From 979877f0487e61730d73a1613c80db469b9c167a Mon Sep 17 00:00:00 2001 From: kralverde <80051564+kralverde@users.noreply.github.com> Date: Mon, 2 Dec 2024 13:01:37 -0500 Subject: [PATCH] "populate noise" step of chunk generation (#319) * implement populate noise step of chunk generation * fix gitignore * pass thru seed * add counter for edge case * add entire chunk test case * remove eclipse file * remove packet timing * precompute float divisions * unsafe speed up * slight aquifer optimization * tweak block pos packing * optimize perlin map * precompute aquifer random positions * fix aquifer regression * refactor samplers, add tests to aquifer, and move chunk extractor to the extractors * fix base density function error and add a bunch of test cases * ignore expensive tests by default * remove un-needed lifetimes * remove minecraft prefix from block lookups * fix populate noise bench * slight optimizations * read files at runtime to speed up test compilation speed and remove ignores * remove new lines from test data so people stop freaking out about line count * make extractor the same * leverage branch prediction --------- Co-authored-by: Alexander Medvedev --- .gitignore | 4 + Cargo.toml | 3 + extractor/build.gradle.kts | 3 + .../kotlin/de/snowii/extractor/Extractor.kt | 2 + .../de/snowii/extractor/extractors/Tests.kt | 142 + pumpkin-core/Cargo.toml | 1 + pumpkin-core/src/lib.rs | 9 + pumpkin-core/src/math/mod.rs | 59 + pumpkin-core/src/math/vector2.rs | 5 +- pumpkin-core/src/math/vector3.rs | 9 +- pumpkin-core/src/random/legacy_rand.rs | 38 +- pumpkin-core/src/random/mod.rs | 33 +- pumpkin-core/src/random/xoroshiro128.rs | 9 +- pumpkin-world/Cargo.toml | 13 + .../assets/converted_3d_overworld_7_4.json | 1 + pumpkin-world/assets/converted_cave_7_4.json | 1 + ...onverted_cave_entrances_overworld_7_4.json | 1 + .../assets/converted_cave_noodle_7_4.json | 1 + .../assets/converted_cave_pillar_7_4.json | 1 + .../converted_cave_spaghetti_2d_7_4.json | 1 + ...converted_cave_spaghetti_2d_thicc_7_4.json | 1 + ...ed_cave_spaghetti_rough_overworld_7_4.json | 1 + pumpkin-world/assets/converted_depth_7_4.json | 1 + .../assets/converted_factor_7_4.json | 1 + .../assets/converted_offset_7_4.json | 1 + .../assets/converted_sloped_cheese_7_4.json | 1 + .../assets/final_density_dump_7_4.json | 1 + .../assets/no_blend_no_beard_0_0.chunk | 1 + .../assets/no_blend_no_beard_7_4.chunk | 1 + pumpkin-world/assets/perlin2_7_4.json | 1 + pumpkin-world/assets/perlin_7_4.json | 1 + pumpkin-world/assets/perlin_map.json | 1 + pumpkin-world/assets/y_clamp.json | 1 + pumpkin-world/benches/chunk_noise.rs | 11 + pumpkin-world/benches/chunk_noise_populate.rs | 11 + pumpkin-world/src/block/block_state.rs | 27 +- pumpkin-world/src/lib.rs | 54 + .../src/world_gen/aquifer_sampler.rs | 2100 ++ pumpkin-world/src/world_gen/blender/mod.rs | 41 +- pumpkin-world/src/world_gen/chunk_noise.rs | 1864 ++ .../src/world_gen/generation_shapes.rs | 92 + pumpkin-world/src/world_gen/generator.rs | 11 +- pumpkin-world/src/world_gen/height_limit.rs | 57 +- .../src/world_gen/implementation/mod.rs | 1 + .../src/world_gen/implementation/superflat.rs | 15 +- .../src/world_gen/implementation/test.rs | 156 + pumpkin-world/src/world_gen/mod.rs | 37 +- pumpkin-world/src/world_gen/noise/config.rs | 808 + .../src/world_gen/noise/density/basic.rs | 441 + .../src/world_gen/noise/density/blend.rs | 167 +- .../noise/density/component_functions.rs | 1082 + .../src/world_gen/noise/density/end.rs | 30 +- .../src/world_gen/noise/density/math.rs | 477 +- .../src/world_gen/noise/density/mod.rs | 2551 ++- .../src/world_gen/noise/density/noise.rs | 365 +- .../src/world_gen/noise/density/offset.rs | 91 +- .../src/world_gen/noise/density/spline.rs | 1754 +- .../noise/density/terrain_helpers.rs | 17432 +++++++++++++++- .../src/world_gen/noise/density/unary.rs | 264 +- .../src/world_gen/noise/density/weird.rs | 137 +- pumpkin-world/src/world_gen/noise/mod.rs | 486 +- pumpkin-world/src/world_gen/noise/perlin.rs | 502 +- pumpkin-world/src/world_gen/noise/router.rs | 884 +- pumpkin-world/src/world_gen/noise/simplex.rs | 35 +- pumpkin-world/src/world_gen/ore_sampler.rs | 113 + pumpkin-world/src/world_gen/positions.rs | 118 +- pumpkin-world/src/world_gen/proto_chunk.rs | 253 +- pumpkin-world/src/world_gen/sampler.rs | 28 - pumpkin/src/command/commands/cmd_transfer.rs | 1 + pumpkin/src/entity/player.rs | 4 - 70 files changed, 29693 insertions(+), 3156 deletions(-) create mode 100644 extractor/src/main/kotlin/de/snowii/extractor/extractors/Tests.kt create mode 100644 pumpkin-world/assets/converted_3d_overworld_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_entrances_overworld_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_noodle_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_pillar_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_spaghetti_2d_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_spaghetti_2d_thicc_7_4.json create mode 100644 pumpkin-world/assets/converted_cave_spaghetti_rough_overworld_7_4.json create mode 100644 pumpkin-world/assets/converted_depth_7_4.json create mode 100644 pumpkin-world/assets/converted_factor_7_4.json create mode 100644 pumpkin-world/assets/converted_offset_7_4.json create mode 100644 pumpkin-world/assets/converted_sloped_cheese_7_4.json create mode 100644 pumpkin-world/assets/final_density_dump_7_4.json create mode 100644 pumpkin-world/assets/no_blend_no_beard_0_0.chunk create mode 100644 pumpkin-world/assets/no_blend_no_beard_7_4.chunk create mode 100644 pumpkin-world/assets/perlin2_7_4.json create mode 100644 pumpkin-world/assets/perlin_7_4.json create mode 100644 pumpkin-world/assets/perlin_map.json create mode 100644 pumpkin-world/assets/y_clamp.json create mode 100644 pumpkin-world/benches/chunk_noise.rs create mode 100644 pumpkin-world/benches/chunk_noise_populate.rs create mode 100644 pumpkin-world/src/world_gen/aquifer_sampler.rs create mode 100644 pumpkin-world/src/world_gen/chunk_noise.rs create mode 100644 pumpkin-world/src/world_gen/generation_shapes.rs create mode 100644 pumpkin-world/src/world_gen/implementation/test.rs create mode 100644 pumpkin-world/src/world_gen/noise/config.rs create mode 100644 pumpkin-world/src/world_gen/noise/density/basic.rs create mode 100644 pumpkin-world/src/world_gen/noise/density/component_functions.rs create mode 100644 pumpkin-world/src/world_gen/ore_sampler.rs delete mode 100644 pumpkin-world/src/world_gen/sampler.rs diff --git a/.gitignore b/.gitignore index 6dd323573..9016d3545 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,7 @@ node_modules run/ +# Benchmarking +*perf.data* +*flamegraph.svg + diff --git a/Cargo.toml b/Cargo.toml index d8cf627c2..8ad56ae1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,9 @@ opt-level = 1 lto = true codegen-units = 1 +[profile.bench] +debug = true + [profile.profiling] inherits = "release" debug = true diff --git a/extractor/build.gradle.kts b/extractor/build.gradle.kts index 3162d2c3a..0fccb5cc8 100644 --- a/extractor/build.gradle.kts +++ b/extractor/build.gradle.kts @@ -49,6 +49,9 @@ dependencies { modImplementation("net.fabricmc:fabric-language-kotlin:${project.property("kotlin_loader_version")}") modImplementation("net.fabricmc.fabric-api:fabric-api:${project.property("fabric_version")}") + + // To allow for reflection + implementation(kotlin("reflect")) } tasks.processResources { diff --git a/extractor/src/main/kotlin/de/snowii/extractor/Extractor.kt b/extractor/src/main/kotlin/de/snowii/extractor/Extractor.kt index d8e67013b..d16e89b6d 100644 --- a/extractor/src/main/kotlin/de/snowii/extractor/Extractor.kt +++ b/extractor/src/main/kotlin/de/snowii/extractor/Extractor.kt @@ -1,5 +1,6 @@ package de.snowii.extractor +import com.google.gson.Gson import com.google.gson.GsonBuilder import com.google.gson.JsonElement import de.snowii.extractor.extractors.* @@ -32,6 +33,7 @@ class Extractor : ModInitializer { Tags(), Items(), Blocks(), + Tests(), ) val outputDirectory: Path diff --git a/extractor/src/main/kotlin/de/snowii/extractor/extractors/Tests.kt b/extractor/src/main/kotlin/de/snowii/extractor/extractors/Tests.kt new file mode 100644 index 000000000..ac81ec76c --- /dev/null +++ b/extractor/src/main/kotlin/de/snowii/extractor/extractors/Tests.kt @@ -0,0 +1,142 @@ + +package de.snowii.extractor.extractors + +import com.google.gson.Gson +import com.google.gson.GsonBuilder +import com.google.gson.JsonArray +import com.google.gson.JsonElement +import de.snowii.extractor.Extractor +import net.minecraft.block.Block +import net.minecraft.block.BlockState +import net.minecraft.block.Blocks +import net.minecraft.registry.BuiltinRegistries +import net.minecraft.registry.RegistryKeys +import net.minecraft.registry.RegistryWrapper +import net.minecraft.registry.RegistryWrapper.WrapperLookup +import net.minecraft.registry.entry.RegistryEntry.Reference +import net.minecraft.server.MinecraftServer +import net.minecraft.util.math.noise.DoublePerlinNoiseSampler.NoiseParameters +import net.minecraft.util.math.ChunkPos +import net.minecraft.world.gen.chunk.AquiferSampler +import net.minecraft.world.gen.chunk.Blender +import net.minecraft.world.gen.chunk.ChunkGeneratorSettings +import net.minecraft.world.gen.chunk.ChunkNoiseSampler +import net.minecraft.world.gen.chunk.GenerationShapeConfig +import net.minecraft.world.gen.densityfunction.DensityFunction.NoisePos; +import net.minecraft.world.gen.densityfunction.DensityFunction.EachApplier; +import net.minecraft.world.gen.densityfunction.DensityFunctionTypes +import net.minecraft.world.gen.noise.NoiseConfig + +import java.lang.reflect.Method +import java.util.Arrays +import kotlin.reflect.full.createType +import kotlin.reflect.full.declaredFunctions +import kotlin.reflect.jvm.javaMethod +import kotlin.reflect.KFunction + +class Tests : Extractor.Extractor { + override fun fileName(): String = "chunk.json" + + private fun createFluidLevelSampler(settings: ChunkGeneratorSettings): AquiferSampler.FluidLevelSampler { + val fluidLevel = AquiferSampler.FluidLevel(-54, Blocks.LAVA.getDefaultState()); + val i = settings.seaLevel(); + val fluidLevel2 = AquiferSampler.FluidLevel(i, settings.defaultFluid()); + return AquiferSampler.FluidLevelSampler {_, y, _ -> if (y < Math.min(-54, i)) fluidLevel else fluidLevel2}; + } + + private fun get_index(config: GenerationShapeConfig, x: Int, y: Int, z: Int): Int { + if (x < 0 || y < 0 || z < 0) { + System.err.println("Bad local pos"); + System.exit(1); + } + return config.height() * 16 * x + 16 * y + z + } + + // This is basically just what NoiseChunkGenerator is doing + private fun populate_noise(start_x: Int, start_z: Int, sampler: ChunkNoiseSampler, config: GenerationShapeConfig, settings: ChunkGeneratorSettings): IntArray? { + val result = IntArray(16 * 16 * config.height()) + + for (method: KFunction<*> in sampler::class.declaredFunctions) { + if (method.name.equals("sampleBlockState")) { + sampler.sampleStartDensity() + val k = config.horizontalCellBlockCount() + val l = config.verticalCellBlockCount() + + val m = 16 / k + val n = 16 / k + + val cellHeight = config.height() / l + val minimumCellY = config.minimumY() / l + + for (o in 0.. + topLevelJson.add(state) + } + + return topLevelJson + } +} diff --git a/pumpkin-core/Cargo.toml b/pumpkin-core/Cargo.toml index aed316d65..84248ab3e 100644 --- a/pumpkin-core/Cargo.toml +++ b/pumpkin-core/Cargo.toml @@ -13,3 +13,4 @@ num-derive.workspace = true colored = "2" md5 = "0.7.0" +enum_dispatch = "0.3.13" diff --git a/pumpkin-core/src/lib.rs b/pumpkin-core/src/lib.rs index f566404df..09f36f9bb 100644 --- a/pumpkin-core/src/lib.rs +++ b/pumpkin-core/src/lib.rs @@ -21,3 +21,12 @@ pub enum ProfileAction { ForcedNameChange, UsingBannedSkin, } + +#[macro_export] +macro_rules! assert_eq_delta { + ($x:expr, $y:expr, $d:expr) => { + if !(2f64 * ($x - $y).abs() <= $d * ($x.abs() + $y.abs())) { + panic!("{} vs {} ({} vs {})", $x, $y, ($x - $y).abs(), $d); + } + }; +} diff --git a/pumpkin-core/src/math/mod.rs b/pumpkin-core/src/math/mod.rs index e1f7149f0..777bf987f 100644 --- a/pumpkin-core/src/math/mod.rs +++ b/pumpkin-core/src/math/mod.rs @@ -1,3 +1,5 @@ +use num_traits::PrimInt; + pub mod boundingbox; pub mod position; pub mod vector2; @@ -30,3 +32,60 @@ pub fn magnitude(a: f64, b: f64, c: f64) -> f64 { pub const fn get_section_cord(coord: i32) -> i32 { coord >> 4 } + +const MULTIPLY_DE_BRUIJN_BIT_POSITION: [u8; 32] = [ + 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, + 12, 18, 6, 11, 5, 10, 9, +]; + +/// Maximum return value: 31 +pub const fn ceil_log2(value: u32) -> u8 { + let value = if value.is_power_of_two() { + value + } else { + smallest_encompassing_power_of_two(value) + }; + + MULTIPLY_DE_BRUIJN_BIT_POSITION[(((value as usize) * 125613361) >> 27) & 31] +} + +/// Maximum return value: 30 +pub const fn floor_log2(value: u32) -> u8 { + ceil_log2(value) - if value.is_power_of_two() { 0 } else { 1 } +} + +pub const fn smallest_encompassing_power_of_two(value: u32) -> u32 { + let mut i = value - 1; + i |= i >> 1; + i |= i >> 2; + i |= i >> 4; + i |= i >> 8; + i |= i >> 16; + i + 1 +} + +#[inline] +pub fn floor_div(x: T, y: T) -> T +where + T: PrimInt + From, +{ + let div = x / y; + if (x ^ y) < 0.into() && div * y != x { + div - 1.into() + } else { + div + } +} + +#[inline] +pub fn floor_mod(x: T, y: T) -> T +where + T: PrimInt + From, +{ + let rem = x % y; + if (x ^ y) < 0.into() && rem != 0.into() { + rem + y + } else { + rem + } +} diff --git a/pumpkin-core/src/math/vector2.rs b/pumpkin-core/src/math/vector2.rs index be74a5eca..62ab639fc 100644 --- a/pumpkin-core/src/math/vector2.rs +++ b/pumpkin-core/src/math/vector2.rs @@ -4,14 +4,14 @@ use num_traits::Float; use super::vector3::Vector3; -#[derive(Clone, Copy, Debug, PartialEq, Hash, Eq)] +#[derive(Clone, Copy, Debug, PartialEq, Hash, Eq, Default)] pub struct Vector2 { pub x: T, pub z: T, } impl Vector2 { - pub fn new(x: T, z: T) -> Self { + pub const fn new(x: T, z: T) -> Self { Vector2 { x, z } } @@ -114,3 +114,4 @@ impl Math for f64 {} impl Math for f32 {} impl Math for i32 {} impl Math for i64 {} +impl Math for i8 {} diff --git a/pumpkin-core/src/math/vector3.rs b/pumpkin-core/src/math/vector3.rs index 04b9d4092..1f2bf0032 100644 --- a/pumpkin-core/src/math/vector3.rs +++ b/pumpkin-core/src/math/vector3.rs @@ -1,8 +1,8 @@ -use std::ops::{Add, Div, Mul, Neg, Sub}; +use std::ops::{Add, Div, Mul, Sub}; use num_traits::Float; -#[derive(Clone, Copy, Debug, PartialEq)] +#[derive(Clone, Copy, Debug, PartialEq, Hash, Eq, Default)] pub struct Vector3 { pub x: T, pub y: T, @@ -80,6 +80,7 @@ impl Add for Vector3 { } } +/* impl Neg for Vector3 { type Output = Self; @@ -91,6 +92,7 @@ impl Neg for Vector3 { } } } +*/ impl From<(T, T, T)> for Vector3 { #[inline(always)] @@ -108,7 +110,7 @@ impl From> for (T, T, T) { pub trait Math: Mul - + Neg + //+ Neg + Add + Div + Sub @@ -119,3 +121,4 @@ impl Math for f64 {} impl Math for f32 {} impl Math for i32 {} impl Math for i64 {} +impl Math for u8 {} diff --git a/pumpkin-core/src/random/legacy_rand.rs b/pumpkin-core/src/random/legacy_rand.rs index 4a2cb1b98..3574bb0de 100644 --- a/pumpkin-core/src/random/legacy_rand.rs +++ b/pumpkin-core/src/random/legacy_rand.rs @@ -8,12 +8,16 @@ pub struct LegacyRand { } impl LegacyRand { - fn next_random(&mut self) -> u64 { - let l = self.seed; + fn next_random(&mut self) -> i64 { + let l = self.seed as i64; let m = l.wrapping_mul(0x5DEECE66D).wrapping_add(11) & 0xFFFFFFFFFFFF; - self.seed = m; + self.seed = m as u64; m } + + fn next(&mut self, bits: u64) -> i32 { + (self.next_random() >> (48 - bits)) as i32 + } } impl GaussianGenerator for LegacyRand { @@ -34,16 +38,12 @@ impl RandomImpl for LegacyRand { } } - fn next(&mut self, bits: u64) -> u64 { - self.next_random() >> (48 - bits) - } - fn split(&mut self) -> Self { LegacyRand::from_seed(self.next_i64() as u64) } fn next_i32(&mut self) -> i32 { - self.next(32) as i32 + self.next(32) } fn next_i64(&mut self) -> i64 { @@ -59,7 +59,7 @@ impl RandomImpl for LegacyRand { fn next_f64(&mut self) -> f64 { let i = self.next(26); let j = self.next(27); - let l = (i << 27).wrapping_add(j); + let l = ((i as i64) << 27).wrapping_add(j as i64); l as f64 * 1.110223E-16f32 as f64 } @@ -78,10 +78,10 @@ impl RandomImpl for LegacyRand { fn next_bounded_i32(&mut self, bound: i32) -> i32 { if (bound & bound.wrapping_sub(1)) == 0 { - ((bound as u64).wrapping_mul(self.next(31)) >> 31) as i32 + ((bound as i64).wrapping_mul(self.next(31) as i64) >> 31) as i32 } else { loop { - let i = self.next(31) as i32; + let i = self.next(31); let j = i % bound; if (i.wrapping_sub(j).wrapping_add(bound.wrapping_sub(1))) >= 0 { return j; @@ -91,6 +91,7 @@ impl RandomImpl for LegacyRand { } } +#[derive(Clone)] pub struct LegacySplitter { seed: u64, } @@ -120,7 +121,7 @@ impl RandomDeriverImpl for LegacySplitter { #[cfg(test)] mod test { - use crate::random::{RandomDeriverImpl, RandomImpl}; + use crate::random::{legacy_rand::LegacySplitter, RandomDeriverImpl, RandomImpl}; use super::LegacyRand; @@ -308,8 +309,19 @@ mod test { #[test] fn test_split() { let mut original_rand = LegacyRand::from_seed(0); - let mut new_rand = original_rand.split(); + assert_eq!(original_rand.next_i64(), -4962768465676381896i64); + + let mut original_rand = LegacyRand::from_seed(0); + { + let splitter: LegacySplitter = original_rand.next_splitter(); + assert_eq!(splitter.seed, (-4962768465676381896i64) as u64); + + let mut rand = splitter.split_string("minecraft:offset"); + assert_eq!(rand.next_i32(), 103436829); + } + let mut original_rand = LegacyRand::from_seed(0); + let mut new_rand = original_rand.split(); { let splitter = new_rand.next_splitter(); diff --git a/pumpkin-core/src/random/mod.rs b/pumpkin-core/src/random/mod.rs index 2c3d41125..546e082ef 100644 --- a/pumpkin-core/src/random/mod.rs +++ b/pumpkin-core/src/random/mod.rs @@ -8,7 +8,6 @@ pub mod xoroshiro128; pub enum RandomGenerator { Xoroshiro(Xoroshiro), Legacy(LegacyRand), - LegacyXoroshiro(Xoroshiro), } impl RandomGenerator { @@ -16,7 +15,6 @@ impl RandomGenerator { pub fn split(&mut self) -> Self { match self { Self::Xoroshiro(rand) => Self::Xoroshiro(rand.split()), - Self::LegacyXoroshiro(rand) => Self::LegacyXoroshiro(rand.split()), Self::Legacy(rand) => Self::Legacy(rand.split()), } } @@ -25,25 +23,14 @@ impl RandomGenerator { pub fn next_splitter(&mut self) -> RandomDeriver { match self { Self::Xoroshiro(rand) => RandomDeriver::Xoroshiro(rand.next_splitter()), - Self::LegacyXoroshiro(rand) => RandomDeriver::Xoroshiro(rand.next_splitter()), Self::Legacy(rand) => RandomDeriver::Legacy(rand.next_splitter()), } } - #[inline] - pub fn next(&mut self, bits: u64) -> u64 { - match self { - Self::Xoroshiro(rand) => rand.next(bits), - Self::LegacyXoroshiro(rand) => rand.next(bits), - Self::Legacy(rand) => rand.next(bits), - } - } - #[inline] pub fn next_i32(&mut self) -> i32 { match self { Self::Xoroshiro(rand) => rand.next_i32(), - Self::LegacyXoroshiro(rand) => rand.next_i32(), Self::Legacy(rand) => rand.next_i32(), } } @@ -52,7 +39,6 @@ impl RandomGenerator { pub fn next_bounded_i32(&mut self, bound: i32) -> i32 { match self { Self::Xoroshiro(rand) => rand.next_bounded_i32(bound), - Self::LegacyXoroshiro(rand) => rand.next_bounded_i32(bound), Self::Legacy(rand) => rand.next_bounded_i32(bound), } } @@ -66,7 +52,6 @@ impl RandomGenerator { pub fn next_i64(&mut self) -> i64 { match self { Self::Xoroshiro(rand) => rand.next_i64(), - Self::LegacyXoroshiro(rand) => rand.next_i64(), Self::Legacy(rand) => rand.next_i64(), } } @@ -75,7 +60,6 @@ impl RandomGenerator { pub fn next_bool(&mut self) -> bool { match self { Self::Xoroshiro(rand) => rand.next_bool(), - Self::LegacyXoroshiro(rand) => rand.next_bool(), Self::Legacy(rand) => rand.next_bool(), } } @@ -84,7 +68,6 @@ impl RandomGenerator { pub fn next_f32(&mut self) -> f32 { match self { Self::Xoroshiro(rand) => rand.next_f32(), - Self::LegacyXoroshiro(rand) => rand.next_f32(), Self::Legacy(rand) => rand.next_f32(), } } @@ -93,7 +76,6 @@ impl RandomGenerator { pub fn next_f64(&mut self) -> f64 { match self { Self::Xoroshiro(rand) => rand.next_f64(), - Self::LegacyXoroshiro(rand) => rand.next_f64(), Self::Legacy(rand) => rand.next_f64(), } } @@ -102,7 +84,6 @@ impl RandomGenerator { pub fn next_gaussian(&mut self) -> f64 { match self { Self::Xoroshiro(rand) => rand.next_gaussian(), - Self::LegacyXoroshiro(rand) => rand.next_gaussian(), Self::Legacy(rand) => rand.next_gaussian(), } } @@ -125,6 +106,7 @@ impl RandomGenerator { } } +#[derive(Clone)] pub enum RandomDeriver { Xoroshiro(XoroshiroSplitter), Legacy(LegacySplitter), @@ -163,8 +145,6 @@ pub trait RandomImpl { fn next_splitter(&mut self) -> impl RandomDeriverImpl; - fn next(&mut self, bits: u64) -> u64; - fn next_i32(&mut self) -> i32; fn next_bounded_i32(&mut self, bound: i32) -> i32; @@ -215,17 +195,17 @@ fn hash_block_pos(x: i32, y: i32, z: i32) -> i64 { l >> 16 } -fn java_string_hash(string: &str) -> u32 { +fn java_string_hash(string: &str) -> i32 { // All byte values of latin1 align with // the values of U+0000 - U+00FF making this code // equivalent to both java hash implementations - let mut result = 0u32; + let mut result = 0i32; for char_encoding in string.encode_utf16() { - result = 31u32 + result = 31i32 .wrapping_mul(result) - .wrapping_add(char_encoding as u32); + .wrapping_add(char_encoding as i32); } result } @@ -271,12 +251,13 @@ mod tests { ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄ\ ÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞ\ ßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþ", - (-1992287231i32) as u32, + -1992287231i32, ), ("求同存异", 847053876), // This might look wierd because hebrew is text is right to left ("אבְּרֵאשִׁ֖ית בָּרָ֣א אֱלֹהִ֑ים אֵ֥ת הַשָּׁמַ֖יִם וְאֵ֥ת הָאָֽרֶץ:", 1372570871), ("संस्कृत-", 1748614838), + ("minecraft:offset", -920384768i32), ]; for (string, value) in values { diff --git a/pumpkin-core/src/random/xoroshiro128.rs b/pumpkin-core/src/random/xoroshiro128.rs index a82fcf75c..65d92533c 100644 --- a/pumpkin-core/src/random/xoroshiro128.rs +++ b/pumpkin-core/src/random/xoroshiro128.rs @@ -31,6 +31,10 @@ impl Xoroshiro { Self::new(lo, hi) } + fn next(&mut self, bits: u64) -> u64 { + self.next_random() >> (64 - bits) + } + fn next_random(&mut self) -> u64 { let l = self.lo; let m = self.hi; @@ -70,10 +74,6 @@ impl RandomImpl for Xoroshiro { Self::new(self.next_random(), self.next_random()) } - fn next(&mut self, bits: u64) -> u64 { - self.next_random() >> (64 - bits) - } - #[allow(refining_impl_trait)] fn next_splitter(&mut self) -> XoroshiroSplitter { XoroshiroSplitter { @@ -123,6 +123,7 @@ impl RandomImpl for Xoroshiro { } } +#[derive(Clone)] pub struct XoroshiroSplitter { lo: u64, hi: u64, diff --git a/pumpkin-world/Cargo.toml b/pumpkin-world/Cargo.toml index 85537ec3e..36f798e61 100644 --- a/pumpkin-world/Cargo.toml +++ b/pumpkin-world/Cargo.toml @@ -22,6 +22,7 @@ num-traits.workspace = true num-derive.workspace = true futures = "0.3" dashmap = "6.1.0" +lazy_static = "1.5.0" # Compression flate2 = "1.0" @@ -35,3 +36,15 @@ fastnbt = { git = "https://github.com/owengage/fastnbt.git" } noise = "0.9.0" rand = "0.8.5" + +[dev-dependencies] +criterion = { version = "0.5.1", features = ["html_reports"] } + + +[[bench]] +name = "chunk_noise" +harness = false + +[[bench]] +name = "chunk_noise_populate" +harness = false diff --git a/pumpkin-world/assets/converted_3d_overworld_7_4.json b/pumpkin-world/assets/converted_3d_overworld_7_4.json new file mode 100644 index 000000000..6648d5ba7 --- /dev/null +++ b/pumpkin-world/assets/converted_3d_overworld_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.4752642837546577],[112,-64,65,-0.4815145022783912],[112,-64,66,-0.48256971491057843],[112,-64,67,-0.479217512022849],[112,-64,68,-0.47150158692985555],[112,-64,69,-0.4605917612830322],[112,-64,70,-0.45093142825320526],[112,-64,71,-0.4432063959798198],[112,-64,72,-0.43416568671453526],[112,-64,73,-0.42801794526501635],[112,-64,74,-0.4228617455941214],[112,-64,75,-0.41982834770296656],[112,-64,76,-0.4135365347037997],[112,-64,77,-0.411388446251606],[112,-64,78,-0.4070579217159146],[112,-64,79,-0.39873017361038793],[112,-63,64,-0.4710951961895504],[112,-63,65,-0.4808367812370865],[112,-63,66,-0.48511884393363436],[112,-63,67,-0.4805975468244983],[112,-63,68,-0.47694975561697445],[112,-63,69,-0.466250983526111],[112,-63,70,-0.45514020744786743],[112,-63,71,-0.4484025631807663],[112,-63,72,-0.4380705416066964],[112,-63,73,-0.4312331452118997],[112,-63,74,-0.4262991957378463],[112,-63,75,-0.42370266342718066],[112,-63,76,-0.4171843243552964],[112,-63,77,-0.41254662433528544],[112,-63,78,-0.4024479320141157],[112,-63,79,-0.39084269283135137],[112,-62,64,-0.4701471007417891],[112,-62,65,-0.4783721134527664],[112,-62,66,-0.48412861840751936],[112,-62,67,-0.4813414638633905],[112,-62,68,-0.4779111028414742],[112,-62,69,-0.465898814638786],[112,-62,70,-0.455610185652828],[112,-62,71,-0.4489267367334878],[112,-62,72,-0.4378451932919171],[112,-62,73,-0.4275391416632811],[112,-62,74,-0.42416451042158543],[112,-62,75,-0.4197581715765732],[112,-62,76,-0.41682445732880974],[112,-62,77,-0.41044467874219603],[112,-62,78,-0.4006471107728302],[112,-62,79,-0.3881123173722913],[112,-61,64,-0.47202743087585575],[112,-61,65,-0.48063865994949473],[112,-61,66,-0.48852205185651054],[112,-61,67,-0.48615783828766435],[112,-61,68,-0.48111410680273975],[112,-61,69,-0.47087311317917385],[112,-61,70,-0.4617417583901518],[112,-61,71,-0.4509925783024379],[112,-61,72,-0.4413786653385876],[112,-61,73,-0.43016081697613123],[112,-61,74,-0.42724861244273843],[112,-61,75,-0.421221521366952],[112,-61,76,-0.4184619741167328],[112,-61,77,-0.41124194775874007],[112,-61,78,-0.40321250670354625],[112,-61,79,-0.39045034289027436],[112,-60,64,-0.47619947043814437],[112,-60,65,-0.48341796562909983],[112,-60,66,-0.4919961824434691],[112,-60,67,-0.4931804826100062],[112,-60,68,-0.4842400559888087],[112,-60,69,-0.4740730183213616],[112,-60,70,-0.464423017041915],[112,-60,71,-0.45250721004355965],[112,-60,72,-0.44364891081014646],[112,-60,73,-0.43545667984605796],[112,-60,74,-0.43201846182045855],[112,-60,75,-0.4250183517192804],[112,-60,76,-0.41858645239955794],[112,-60,77,-0.4133218706327441],[112,-60,78,-0.40370796908812884],[112,-60,79,-0.39176634275796934],[112,-59,64,-0.47287850041552904],[112,-59,65,-0.47657222782042463],[112,-59,66,-0.4821143412532586],[112,-59,67,-0.4838876783198523],[112,-59,68,-0.47696826797753367],[112,-59,69,-0.465521603826733],[112,-59,70,-0.4581145993941314],[112,-59,71,-0.44659292088157665],[112,-59,72,-0.4379899971457406],[112,-59,73,-0.43020508004031255],[112,-59,74,-0.4274987309238884],[112,-59,75,-0.42142339950113417],[112,-59,76,-0.41505269460842487],[112,-59,77,-0.41269276966787266],[112,-59,78,-0.4044576895886004],[112,-59,79,-0.39676510379816293],[112,-58,64,-0.4736277191209643],[112,-58,65,-0.47749106096083616],[112,-58,66,-0.4801881875542183],[112,-58,67,-0.4816044640704259],[112,-58,68,-0.47627973152725733],[112,-58,69,-0.4645887087972631],[112,-58,70,-0.45594727633383336],[112,-58,71,-0.44409824209355625],[112,-58,72,-0.4363397235785167],[112,-58,73,-0.4296874035935241],[112,-58,74,-0.42531687741627633],[112,-58,75,-0.42015879598998934],[112,-58,76,-0.4160769455966201],[112,-58,77,-0.4135916549868739],[112,-58,78,-0.4055578252975556],[112,-58,79,-0.39770704745390373],[112,-57,64,-0.48001501222588727],[112,-57,65,-0.483778692664405],[112,-57,66,-0.48799755896618263],[112,-57,67,-0.4878775350249337],[112,-57,68,-0.48001594162456973],[112,-57,69,-0.4714115747381782],[112,-57,70,-0.46319979710783443],[112,-57,71,-0.44884923293237355],[112,-57,72,-0.43837607534140144],[112,-57,73,-0.4342683475851349],[112,-57,74,-0.42746617373910734],[112,-57,75,-0.4238362840721688],[112,-57,76,-0.42047613227635655],[112,-57,77,-0.4163596875056394],[112,-57,78,-0.4085666581105376],[112,-57,79,-0.4018396105525612],[112,-56,64,-0.4774150245179592],[112,-56,65,-0.48281508362691405],[112,-56,66,-0.48709866736010954],[112,-56,67,-0.48902171236397984],[112,-56,68,-0.4769886795591508],[112,-56,69,-0.47132186444623614],[112,-56,70,-0.46098680394667296],[112,-56,71,-0.4485868558220584],[112,-56,72,-0.4377727544548412],[112,-56,73,-0.4333820719687197],[112,-56,74,-0.42665510298905873],[112,-56,75,-0.42332170072520636],[112,-56,76,-0.41828119520269424],[112,-56,77,-0.4137900964023177],[112,-56,78,-0.4079043671817451],[112,-56,79,-0.4010163525127146],[112,-55,64,-0.4774863465720939],[112,-55,65,-0.48241497272837064],[112,-55,66,-0.48601168492032715],[112,-55,67,-0.48774561196584265],[112,-55,68,-0.4776962511905918],[112,-55,69,-0.4722880968982228],[112,-55,70,-0.4605895696084761],[112,-55,71,-0.4474959135565773],[112,-55,72,-0.43775013126203594],[112,-55,73,-0.4322057616741969],[112,-55,74,-0.4250417834685843],[112,-55,75,-0.4220495718705277],[112,-55,76,-0.41689505482049166],[112,-55,77,-0.41365107068834867],[112,-55,78,-0.40725687663843185],[112,-55,79,-0.3989983033537323],[112,-54,64,-0.47794853997247033],[112,-54,65,-0.4836978470304695],[112,-54,66,-0.48470906582754825],[112,-54,67,-0.48499369205882703],[112,-54,68,-0.47811713179473453],[112,-54,69,-0.4701930480679709],[112,-54,70,-0.45750991263199525],[112,-54,71,-0.4467054207580388],[112,-54,72,-0.4392528535449002],[112,-54,73,-0.4322611818916705],[112,-54,74,-0.4230166705762066],[112,-54,75,-0.41931281853315355],[112,-54,76,-0.4144009844487846],[112,-54,77,-0.40960335365228484],[112,-54,78,-0.4050367267701674],[112,-54,79,-0.3984361952838077],[112,-53,64,-0.48273140399652736],[112,-53,65,-0.4856361640799705],[112,-53,66,-0.4905800504023897],[112,-53,67,-0.4873878394025528],[112,-53,68,-0.4808759974317338],[112,-53,69,-0.4722807054784095],[112,-53,70,-0.4623086030993837],[112,-53,71,-0.44978346216797827],[112,-53,72,-0.4427834637773509],[112,-53,73,-0.4363621851123777],[112,-53,74,-0.4279914464966042],[112,-53,75,-0.4227919062790341],[112,-53,76,-0.4174067561712535],[112,-53,77,-0.41041054292005075],[112,-53,78,-0.40427265249792976],[112,-53,79,-0.3972738716754875],[112,-52,64,-0.49174895360461984],[112,-52,65,-0.4931081351574411],[112,-52,66,-0.4982379582015101],[112,-52,67,-0.49358966848806307],[112,-52,68,-0.48775957764729305],[112,-52,69,-0.4782038414521363],[112,-52,70,-0.4685927246364203],[112,-52,71,-0.45774587693715924],[112,-52,72,-0.44849094785176624],[112,-52,73,-0.44202651495887035],[112,-52,74,-0.43702109842433334],[112,-52,75,-0.42895827791475233],[112,-52,76,-0.4237411161576899],[112,-52,77,-0.4151043405968585],[112,-52,78,-0.4068095791520042],[112,-52,79,-0.3990776617983129],[112,-51,64,-0.5025009201170734],[112,-51,65,-0.5012202144784262],[112,-51,66,-0.5062157748479936],[112,-51,67,-0.5010432789601786],[112,-51,68,-0.4953459733190761],[112,-51,69,-0.48290919026659024],[112,-51,70,-0.4690406572743868],[112,-51,71,-0.4589884183971],[112,-51,72,-0.44723973303385955],[112,-51,73,-0.44047444004992364],[112,-51,74,-0.4356064227193833],[112,-51,75,-0.4267733729167217],[112,-51,76,-0.4209080268474905],[112,-51,77,-0.41203797127594377],[112,-51,78,-0.3975228238546421],[112,-51,79,-0.3871904385634591],[112,-50,64,-0.5005113362350443],[112,-50,65,-0.5003369654474159],[112,-50,66,-0.5047017080765073],[112,-50,67,-0.4991157353944058],[112,-50,68,-0.4911994214909068],[112,-50,69,-0.4796188355688963],[112,-50,70,-0.46536038331111285],[112,-50,71,-0.4563672006696593],[112,-50,72,-0.44650781950440194],[112,-50,73,-0.4403987807446118],[112,-50,74,-0.43497255526890055],[112,-50,75,-0.42721782480659876],[112,-50,76,-0.41762003114138113],[112,-50,77,-0.4097415848860404],[112,-50,78,-0.3979481198050102],[112,-50,79,-0.3849949682305863],[112,-49,64,-0.5043518473319901],[112,-49,65,-0.5059329983106661],[112,-49,66,-0.508087712467509],[112,-49,67,-0.5029633706637733],[112,-49,68,-0.49331076362659354],[112,-49,69,-0.48229842618634466],[112,-49,70,-0.46953894613341896],[112,-49,71,-0.458339193503031],[112,-49,72,-0.45199362967021073],[112,-49,73,-0.44440965016667144],[112,-49,74,-0.4396332971939694],[112,-49,75,-0.4321362411657841],[112,-49,76,-0.4211745786274649],[112,-49,77,-0.4120315486278603],[112,-49,78,-0.39915083985923727],[112,-49,79,-0.38695148445474803],[112,-48,64,-0.5012129002125543],[112,-48,65,-0.5049364857251081],[112,-48,66,-0.5070370971308134],[112,-48,67,-0.5001719347900639],[112,-48,68,-0.48838685457483644],[112,-48,69,-0.4776976677059649],[112,-48,70,-0.46478718307857186],[112,-48,71,-0.45350430958816246],[112,-48,72,-0.44925341663781315],[112,-48,73,-0.44535360089721066],[112,-48,74,-0.4392790863986784],[112,-48,75,-0.4291587423815446],[112,-48,76,-0.4196952198983745],[112,-48,77,-0.40700337914162016],[112,-48,78,-0.3967772876991088],[112,-48,79,-0.3857203568774741],[112,-47,64,-0.5072475356524755],[112,-47,65,-0.5051138073720463],[112,-47,66,-0.5005094685788476],[112,-47,67,-0.49147792179671945],[112,-47,68,-0.47897958273623004],[112,-47,69,-0.46565355567976696],[112,-47,70,-0.45350011605874246],[112,-47,71,-0.4437884668181461],[112,-47,72,-0.44138297009666233],[112,-47,73,-0.44043661936821626],[112,-47,74,-0.43217995269693876],[112,-47,75,-0.4226066731490671],[112,-47,76,-0.4155123533706286],[112,-47,77,-0.40534012685575405],[112,-47,78,-0.39718170851915635],[112,-47,79,-0.3874085851187453],[112,-46,64,-0.3983100702361194],[112,-46,65,-0.4765661380754934],[112,-46,66,-0.49583150509049645],[112,-46,67,-0.4870604165602407],[112,-46,68,-0.47477775876657924],[112,-46,69,-0.46126599327016765],[112,-46,70,-0.4513944820677415],[112,-46,71,-0.44138815831884665],[112,-46,72,-0.43557685731365836],[112,-46,73,-0.43527469142102926],[112,-46,74,-0.4286928684138691],[112,-46,75,-0.4197966226436306],[112,-46,76,-0.4131424786267134],[112,-46,77,-0.4050092810351925],[112,-46,78,-0.39409875632399777],[112,-46,79,-0.38477116703788317],[112,-45,64,-0.3788350374061465],[112,-45,65,-0.4485607333655767],[112,-45,66,-0.4958170280551117],[112,-45,67,-0.4873054924170893],[112,-45,68,-0.4739076289058382],[112,-45,69,-0.46276350080112216],[112,-45,70,-0.45369354917706506],[112,-45,71,-0.44536009558724887],[112,-45,72,-0.43604260343987766],[112,-45,73,-0.43411374557769145],[112,-45,74,-0.43070261207178817],[112,-45,75,-0.422016966525801],[112,-45,76,-0.4128698880817112],[112,-45,77,-0.40440589037413754],[112,-45,78,-0.3942148213483827],[112,-45,79,-0.38364944071571705],[112,-44,64,-0.2283490013863156],[112,-44,65,-0.3020139228943955],[112,-44,66,-0.4502819732318818],[112,-44,67,-0.44151090524960757],[112,-44,68,-0.4287156763697536],[112,-44,69,-0.41951185795257323],[112,-44,70,-0.4125985815537645],[112,-44,71,-0.40371847097539276],[112,-44,72,-0.39346877268179087],[112,-44,73,-0.39039384142282035],[112,-44,74,-0.3872148416664748],[112,-44,75,-0.3798707450242552],[112,-44,76,-0.3694713527837695],[112,-44,77,-0.36120112328378723],[112,-44,78,-0.35480248508488477],[112,-44,79,-0.3422897219764739],[112,-43,64,-0.25807035495470637],[112,-43,65,-0.29765961053726414],[112,-43,66,-0.4340318737666068],[112,-43,67,-0.4280337348127775],[112,-43,68,-0.41861832558530565],[112,-43,69,-0.41282332256412746],[112,-43,70,-0.40818734908217],[112,-43,71,-0.399473668058255],[112,-43,72,-0.38914451979520404],[112,-43,73,-0.3842924835398075],[112,-43,74,-0.37978710155933226],[112,-43,75,-0.3710150858036594],[112,-43,76,-0.36257039983543854],[112,-43,77,-0.35254915152875516],[112,-43,78,-0.34979988036651677],[112,-43,79,-0.3369625579997647],[112,-42,64,-0.2124036428295578],[112,-42,65,-0.24778325647307617],[112,-42,66,-0.42511883838233866],[112,-42,67,-0.42230786283442306],[112,-42,68,-0.41440295436803526],[112,-42,69,-0.4105608320104028],[112,-42,70,-0.4072506806161533],[112,-42,71,-0.39630498533086],[112,-42,72,-0.38548888224548766],[112,-42,73,-0.37915616740526825],[112,-42,74,-0.3742144724618265],[112,-42,75,-0.3649630572441592],[112,-42,76,-0.3562500875281484],[112,-42,77,-0.34987499549460965],[112,-42,78,-0.34581021285998503],[112,-42,79,-0.3340265290087821],[112,-41,64,-0.14966081136178033],[112,-41,65,-0.24509393795975112],[112,-41,66,-0.4261493145485622],[112,-41,67,-0.42261241513129666],[112,-41,68,-0.4183400051159749],[112,-41,69,-0.41502903903824573],[112,-41,70,-0.4096213944731201],[112,-41,71,-0.3985646647502393],[112,-41,72,-0.3878802504065509],[112,-41,73,-0.3805012057525131],[112,-41,74,-0.3737065921492638],[112,-41,75,-0.3652472749868998],[112,-41,76,-0.3576166373690469],[112,-41,77,-0.3499420684558988],[112,-41,78,-0.3444024566604788],[112,-41,79,-0.3322752874658318],[112,-40,64,-0.12299878042801393],[112,-40,65,-0.2361111640055655],[112,-40,66,-0.4208150105196946],[112,-40,67,-0.4161482184022819],[112,-40,68,-0.41179766443691546],[112,-40,69,-0.4122922895446961],[112,-40,70,-0.40777798988627056],[112,-40,71,-0.39701133628116436],[112,-40,72,-0.38598443279899275],[112,-40,73,-0.3775683494938912],[112,-40,74,-0.3687743508106621],[112,-40,75,-0.3616019956088808],[112,-40,76,-0.35728874448363196],[112,-40,77,-0.34632712890152667],[112,-40,78,-0.3399522932136498],[112,-40,79,-0.32764111481788843],[112,-39,64,-0.09152894811305734],[112,-39,65,-0.23644817968675924],[112,-39,66,-0.41480472399015444],[112,-39,67,-0.41387476634662357],[112,-39,68,-0.41247785259833847],[112,-39,69,-0.41648985880172806],[112,-39,70,-0.40909590738953927],[112,-39,71,-0.39461097551805935],[112,-39,72,-0.37877077143618065],[112,-39,73,-0.367861724278878],[112,-39,74,-0.35682392341101715],[112,-39,75,-0.3508661437265203],[112,-39,76,-0.34639547157596673],[112,-39,77,-0.33539926143706333],[112,-39,78,-0.32946394151540825],[112,-39,79,-0.3225461349478675],[112,-38,64,-0.17281569329938493],[112,-38,65,-0.30420738457674934],[112,-38,66,-0.40908770934806227],[112,-38,67,-0.4099436177065775],[112,-38,68,-0.4090927830536795],[112,-38,69,-0.41128245647263983],[112,-38,70,-0.4046767053403474],[112,-38,71,-0.3920751816875452],[112,-38,72,-0.37646072500894906],[112,-38,73,-0.36224042713599724],[112,-38,74,-0.3526334959336166],[112,-38,75,-0.3482546316008932],[112,-38,76,-0.3413219519962964],[112,-38,77,-0.33163349802517084],[112,-38,78,-0.32423132751309197],[112,-38,79,-0.31734333020514305],[112,-37,64,-0.1346896000370793],[112,-37,65,-0.28467762547674375],[112,-37,66,-0.40982562971705283],[112,-37,67,-0.412298243747365],[112,-37,68,-0.41225081147628984],[112,-37,69,-0.41243328551643155],[112,-37,70,-0.40601796389306055],[112,-37,71,-0.39283787745411936],[112,-37,72,-0.37812321357858064],[112,-37,73,-0.3612748837489043],[112,-37,74,-0.35556316430651663],[112,-37,75,-0.3493376852008678],[112,-37,76,-0.34147017890436987],[112,-37,77,-0.33407791494065425],[112,-37,78,-0.32333231399316165],[112,-37,79,-0.31740359956349096],[112,-36,64,-0.12440512925439151],[112,-36,65,-0.2809358577809582],[112,-36,66,-0.413027987145552],[112,-36,67,-0.41644082568647955],[112,-36,68,-0.4192679339630361],[112,-36,69,-0.416712115822341],[112,-36,70,-0.40952346460545025],[112,-36,71,-0.3989660061281267],[112,-36,72,-0.3837232578806976],[112,-36,73,-0.3672387314302055],[112,-36,74,-0.3605906348986393],[112,-36,75,-0.3530115661453676],[112,-36,76,-0.34520476286949325],[112,-36,77,-0.33736389041440806],[112,-36,78,-0.32808969307551394],[112,-36,79,-0.3215560202826909],[112,-35,64,-0.1909371633993891],[112,-35,65,-0.16780514183850792],[112,-35,66,-0.2052910305128963],[112,-35,67,-0.24033514166384612],[112,-35,68,-0.3211134416374966],[112,-35,69,-0.40902877587634756],[112,-35,70,-0.40470779501308507],[112,-35,71,-0.398360839366456],[112,-35,72,-0.3883447876618687],[112,-35,73,-0.37690250796312835],[112,-35,74,-0.37043570378635143],[112,-35,75,-0.3607018972424735],[112,-35,76,-0.35266076478614805],[112,-35,77,-0.34026934618098703],[112,-35,78,-0.32905870161069245],[112,-35,79,-0.3160309189241338],[112,-34,64,-0.1972292651670309],[112,-34,65,-0.12817220275779623],[112,-34,66,-0.17097455449781523],[112,-34,67,-0.22805611308678883],[112,-34,68,-0.27565316488451097],[112,-34,69,-0.40483310304310294],[112,-34,70,-0.4002008704045089],[112,-34,71,-0.39468733254518057],[112,-34,72,-0.3860692875364878],[112,-34,73,-0.3763123967082326],[112,-34,74,-0.3709588490569517],[112,-34,75,-0.36310112848752024],[112,-34,76,-0.35269981791927113],[112,-34,77,-0.3397395241923032],[112,-34,78,-0.32706938636551475],[112,-34,79,-0.31294276264472065],[112,-33,64,-0.13742860757296407],[112,-33,65,-0.053564964684018196],[112,-33,66,-0.06707730191848041],[112,-33,67,-0.144516799200262],[112,-33,68,-0.1963295563786813],[112,-33,69,-0.3239061666530895],[112,-33,70,-0.3260126060328511],[112,-33,71,-0.32353666229702777],[112,-33,72,-0.3199893108360994],[112,-33,73,-0.3172520501058267],[112,-33,74,-0.31526354736472856],[112,-33,75,-0.3147607883528428],[112,-33,76,-0.30815161414122694],[112,-33,77,-0.2987909629268509],[112,-33,78,-0.29041552480598276],[112,-33,79,-0.27798819293150606],[112,-32,64,-0.14142017102035953],[112,-32,65,-0.04892120938249081],[112,-32,66,-0.04362924971372695],[112,-32,67,-0.12681337549607655],[112,-32,68,-0.18542151305370033],[112,-32,69,-0.31705702633007804],[112,-32,70,-0.3222930488359754],[112,-32,71,-0.32051033402984447],[112,-32,72,-0.3164348966244848],[112,-32,73,-0.31275713319597587],[112,-32,74,-0.31148305856492964],[112,-32,75,-0.31197524077566263],[112,-32,76,-0.3067379546945664],[112,-32,77,-0.29502630416286085],[112,-32,78,-0.28765654753978953],[112,-32,79,-0.2757721700970004],[112,-31,64,-0.05095351142581922],[112,-31,65,0.02468567937547278],[112,-31,66,-0.0299968322077106],[112,-31,67,-0.18290925144148334],[112,-31,68,-0.2622523774858412],[112,-31,69,-0.3114194273986668],[112,-31,70,-0.3176062755395679],[112,-31,71,-0.3171871520426234],[112,-31,72,-0.3130500272356266],[112,-31,73,-0.30815275113404067],[112,-31,74,-0.30800166401381135],[112,-31,75,-0.3073081258978984],[112,-31,76,-0.3040746925630297],[112,-31,77,-0.2934517183605714],[112,-31,78,-0.2866268859434891],[112,-31,79,-0.27390630407607813],[112,-30,64,-0.02381561515770822],[112,-30,65,0.04413940256593346],[112,-30,66,-0.020582866624296703],[112,-30,67,-0.1777243917054959],[112,-30,68,-0.256361337620566],[112,-30,69,-0.30630150860621264],[112,-30,70,-0.312809731382741],[112,-30,71,-0.31278259387790813],[112,-30,72,-0.30855609200146955],[112,-30,73,-0.30375606515782055],[112,-30,74,-0.3057496295394427],[112,-30,75,-0.3038519181938697],[112,-30,76,-0.29981834663201723],[112,-30,77,-0.2921392065985439],[112,-30,78,-0.28213113589160727],[112,-30,79,-0.27269590305756497],[112,-29,64,0.01347142549513397],[112,-29,65,0.05140783617849565],[112,-29,66,1.552071069751415E-4],[112,-29,67,-0.16275495425773628],[112,-29,68,-0.2449415816539468],[112,-29,69,-0.30491137031041327],[112,-29,70,-0.3117007592085399],[112,-29,71,-0.31300188482687175],[112,-29,72,-0.30805313762912534],[112,-29,73,-0.30337804292914267],[112,-29,74,-0.30613317270590873],[112,-29,75,-0.3066195326236514],[112,-29,76,-0.30241488756748464],[112,-29,77,-0.2945722152952508],[112,-29,78,-0.2825432579055777],[112,-29,79,-0.2744660038048776],[112,-28,64,0.020522268169819724],[112,-28,65,0.03279259249479366],[112,-28,66,-0.00680971295860322],[112,-28,67,-0.16716744092818245],[112,-28,68,-0.2582661784617166],[112,-28,69,-0.3066451295092568],[112,-28,70,-0.3129321628884068],[112,-28,71,-0.31614326669128945],[112,-28,72,-0.3112598557462334],[112,-28,73,-0.3079826273967182],[112,-28,74,-0.30954243439247153],[112,-28,75,-0.31040385515315494],[112,-28,76,-0.30763805577723036],[112,-28,77,-0.2991114616773101],[112,-28,78,-0.28680454784533665],[112,-28,79,-0.27811818094110174],[112,-27,64,0.06921584522225105],[112,-27,65,0.04425420080279718],[112,-27,66,-0.04417361471469669],[112,-27,67,-0.2384085151384614],[112,-27,68,-0.2896265538042001],[112,-27,69,-0.294215629889947],[112,-27,70,-0.2985361209000865],[112,-27,71,-0.2958694863888252],[112,-27,72,-0.289818899320297],[112,-27,73,-0.2861647861694554],[112,-27,74,-0.28596147893971946],[112,-27,75,-0.28897187266901525],[112,-27,76,-0.28725525789377626],[112,-27,77,-0.28351435742228054],[112,-27,78,-0.2780191750276221],[112,-27,79,-0.2737612480197694],[112,-26,64,0.13805323380524037],[112,-26,65,0.12484154332907116],[112,-26,66,0.0028602822836057418],[112,-26,67,-0.23084154387078665],[112,-26,68,-0.28606570552108607],[112,-26,69,-0.2892574455409698],[112,-26,70,-0.29258503535637653],[112,-26,71,-0.28920658329715754],[112,-26,72,-0.285337690243917],[112,-26,73,-0.2826498103175127],[112,-26,74,-0.28428199421935396],[112,-26,75,-0.2863969664119846],[112,-26,76,-0.28466356086381156],[112,-26,77,-0.28083250713635444],[112,-26,78,-0.27625265769258944],[112,-26,79,-0.27197619971187625],[112,-25,64,0.1510605221208392],[112,-25,65,0.15264888857897596],[112,-25,66,-0.016831694279857867],[112,-25,67,-0.23808101263026638],[112,-25,68,-0.28910088832930864],[112,-25,69,-0.2896178138397015],[112,-25,70,-0.29014518344291723],[112,-25,71,-0.28975141807520516],[112,-25,72,-0.2849841084900143],[112,-25,73,-0.28346203712845397],[112,-25,74,-0.2878045150924531],[112,-25,75,-0.28730694919885097],[112,-25,76,-0.28424740410010757],[112,-25,77,-0.2790836810978233],[112,-25,78,-0.2750281338058955],[112,-25,79,-0.2720617421582153],[112,-24,64,0.14467070329699983],[112,-24,65,0.14397954799483392],[112,-24,66,-0.04847698842483045],[112,-24,67,-0.2707504191546645],[112,-24,68,-0.2826851757204144],[112,-24,69,-0.28213750771067764],[112,-24,70,-0.2831672661502864],[112,-24,71,-0.2846026833585189],[112,-24,72,-0.27884871744449047],[112,-24,73,-0.28035332357360254],[112,-24,74,-0.2841959093595034],[112,-24,75,-0.2846484752952114],[112,-24,76,-0.28145908083194227],[112,-24,77,-0.276365133321377],[112,-24,78,-0.27317514381450664],[112,-24,79,-0.27085953383474515],[112,-23,64,0.17324573558431258],[112,-23,65,0.15570422466091455],[112,-23,66,-0.020604587438841776],[112,-23,67,-0.2582403448829122],[112,-23,68,-0.27310421068069385],[112,-23,69,-0.27528385045144343],[112,-23,70,-0.27339319721111527],[112,-23,71,-0.2752849995737775],[112,-23,72,-0.2741897143540133],[112,-23,73,-0.28096737118992743],[112,-23,74,-0.28425879159514156],[112,-23,75,-0.2832210999142079],[112,-23,76,-0.2803040082090423],[112,-23,77,-0.2741170706061792],[112,-23,78,-0.2698481843098079],[112,-23,79,-0.26776894798702416],[112,-22,64,0.1850811077570897],[112,-22,65,0.15243305937981028],[112,-22,66,-0.037170249481792844],[112,-22,67,-0.2668839032028406],[112,-22,68,-0.26842788667655043],[112,-22,69,-0.2710458360243716],[112,-22,70,-0.26706508408047613],[112,-22,71,-0.26749459711189705],[112,-22,72,-0.27064297387073427],[112,-22,73,-0.2762056852527083],[112,-22,74,-0.2798480273827071],[112,-22,75,-0.27931261203834684],[112,-22,76,-0.27544892133693766],[112,-22,77,-0.2706775936389288],[112,-22,78,-0.26650598456725183],[112,-22,79,-0.26430024442084005],[112,-21,64,0.19494128119457085],[112,-21,65,0.19024603581933192],[112,-21,66,-0.026721839399664826],[112,-21,67,-0.26803325912446513],[112,-21,68,-0.2692507394931234],[112,-21,69,-0.27071212085640595],[112,-21,70,-0.27000585964587404],[112,-21,71,-0.26765057292005423],[112,-21,72,-0.2688646405458147],[112,-21,73,-0.2744494771216413],[112,-21,74,-0.27757385272599483],[112,-21,75,-0.27629334031918795],[112,-21,76,-0.27543160967117614],[112,-21,77,-0.2715204765066886],[112,-21,78,-0.2656002970759649],[112,-21,79,-0.26429324786392716],[112,-20,64,0.18470560666416994],[112,-20,65,0.15199071923795093],[112,-20,66,-0.06877759673190878],[112,-20,67,-0.26618657052311046],[112,-20,68,-0.27037328206009864],[112,-20,69,-0.2724006273214123],[112,-20,70,-0.2515815782820841],[112,-20,71,-0.27160465481050977],[112,-20,72,-0.2734081742870825],[112,-20,73,-0.2769481383494442],[112,-20,74,-0.28063223373857354],[112,-20,75,-0.28106237299848924],[112,-20,76,-0.2793923557691079],[112,-20,77,-0.27564690264373504],[112,-20,78,-0.2701328862235391],[112,-20,79,-0.26755200365993814],[112,-19,64,0.16307762004505555],[112,-19,65,0.11843315521522671],[112,-19,66,-0.11763583115846327],[112,-19,67,-0.25255733408221837],[112,-19,68,-0.2583531156991176],[112,-19,69,-0.2619173646383901],[112,-19,70,-0.26417369429674353],[112,-19,71,-0.2667029914851385],[112,-19,72,-0.26808101261422956],[112,-19,73,-0.2572708587831676],[112,-19,74,-0.20932752192454768],[112,-19,75,-0.21015263124516992],[112,-19,76,-0.2716313343952462],[112,-19,77,-0.2677126880158452],[112,-19,78,-0.26104657644189655],[112,-19,79,-0.2565964642393001],[112,-18,64,0.15155566975968704],[112,-18,65,0.07284599239793321],[112,-18,66,-0.14279865681891843],[112,-18,67,-0.2459393053233187],[112,-18,68,-0.2514850181512172],[112,-18,69,-0.25652516779277384],[112,-18,70,-0.2593849896922965],[112,-18,71,-0.2656583847680259],[112,-18,72,-0.26619771680834314],[112,-18,73,-0.23433047431634463],[112,-18,74,-0.18953667770617766],[112,-18,75,-0.17047759340258978],[112,-18,76,-0.26401544842861596],[112,-18,77,-0.26019630324144977],[112,-18,78,-0.2575921708447251],[112,-18,79,-0.25248536810266164],[112,-17,64,0.13558938503218892],[112,-17,65,0.017971199785189407],[112,-17,66,-0.16833175505448333],[112,-17,67,-0.24493070339097378],[112,-17,68,-0.2509186340675062],[112,-17,69,-0.25721267308350143],[112,-17,70,-0.260107481215873],[112,-17,71,-0.2667037789587523],[112,-17,72,-0.2655055449996473],[112,-17,73,-0.2454279969522889],[112,-17,74,-0.18897361434285473],[112,-17,75,-0.1507346424143569],[112,-17,76,-0.2288755680249247],[112,-17,77,-0.25928346493352317],[112,-17,78,-0.256894262282628],[112,-17,79,-0.24851991712029486],[112,-16,64,0.016103219102656302],[112,-16,65,-0.09521494971841915],[112,-16,66,-0.23617209098243874],[112,-16,67,-0.23751325419423489],[112,-16,68,-0.2459984379465969],[112,-16,69,-0.25051669174715685],[112,-16,70,-0.25412730964799596],[112,-16,71,-0.25900369441863935],[112,-16,72,-0.2604272647775768],[112,-16,73,-0.2545004851120283],[112,-16,74,-0.25430751765317516],[112,-16,75,-0.2569784196186832],[112,-16,76,-0.2558667236615284],[112,-16,77,-0.25657389047958246],[112,-16,78,-0.2528942876461417],[112,-16,79,-0.24459717253981916],[112,-15,64,-0.006496483729990454],[112,-15,65,-0.11169742147529145],[112,-15,66,-0.2188081522380691],[112,-15,67,-0.22186906882805996],[112,-15,68,-0.23173207010003175],[112,-15,69,-0.23738646488422843],[112,-15,70,-0.24203468165337821],[112,-15,71,-0.24952366510995355],[112,-15,72,-0.25448204510371],[112,-15,73,-0.2520430223526047],[112,-15,74,-0.25205161049183533],[112,-15,75,-0.254580692443517],[112,-15,76,-0.25166843643628956],[112,-15,77,-0.2503617636461539],[112,-15,78,-0.2434714236374655],[112,-15,79,-0.23548258334741476],[112,-14,64,-0.09664361941101166],[112,-14,65,-0.15916143023026552],[112,-14,66,-0.2100999203293529],[112,-14,67,-0.21571348524461847],[112,-14,68,-0.22378696737064438],[112,-14,69,-0.22769169594128458],[112,-14,70,-0.2351914566648404],[112,-14,71,-0.24302177076596215],[112,-14,72,-0.24754255048482993],[112,-14,73,-0.24682115163215818],[112,-14,74,-0.24735014398406918],[112,-14,75,-0.24965251320059842],[112,-14,76,-0.24510156496813773],[112,-14,77,-0.2438576158223551],[112,-14,78,-0.23631372321716293],[112,-14,79,-0.23288619368965743],[112,-13,64,-0.09975964810902128],[112,-13,65,-0.159889554512416],[112,-13,66,-0.21050754432274704],[112,-13,67,-0.21544623318735673],[112,-13,68,-0.22090246098793265],[112,-13,69,-0.22584473607293742],[112,-13,70,-0.23143987248815093],[112,-13,71,-0.24099187383744758],[112,-13,72,-0.24695434035727837],[112,-13,73,-0.24761965785150283],[112,-13,74,-0.22155285696887608],[112,-13,75,-0.22101936612545403],[112,-13,76,-0.245442468860535],[112,-13,77,-0.2437186135342299],[112,-13,78,-0.23660511387339578],[112,-13,79,-0.23389266167309888],[112,-12,64,-0.12051603383327004],[112,-12,65,-0.17654988305471722],[112,-12,66,-0.20965815280322006],[112,-12,67,-0.21456144619573958],[112,-12,68,-0.22132741585345203],[112,-12,69,-0.22659806347300768],[112,-12,70,-0.2316840322802885],[112,-12,71,-0.2402960312075872],[112,-12,72,-0.24860317615826974],[112,-12,73,-0.2518504385028215],[112,-12,74,-0.2091868072733739],[112,-12,75,-0.22073329372521214],[112,-12,76,-0.2477996935476811],[112,-12,77,-0.2479332586224879],[112,-12,78,-0.24327331897377602],[112,-12,79,-0.2394943257046551],[112,-11,64,-0.07095371821010374],[112,-11,65,-0.15316492687497923],[112,-11,66,-0.20535150190279328],[112,-11,67,-0.21219643444882513],[112,-11,68,-0.2227029642084801],[112,-11,69,-0.22829995908857195],[112,-11,70,-0.22917015399214885],[112,-11,71,-0.23365101667868352],[112,-11,72,-0.23404809781792515],[112,-11,73,-0.18011442345652387],[112,-11,74,-0.07773431301817668],[112,-11,75,-0.09318854782227481],[112,-11,76,-0.21157529398537217],[112,-11,77,-0.23925828514795855],[112,-11,78,-0.24436158554226106],[112,-11,79,-0.24380786167942214],[112,-10,64,-0.07208025985632127],[112,-10,65,-0.159909711869685],[112,-10,66,-0.19757001701689886],[112,-10,67,-0.2063923808191722],[112,-10,68,-0.21480982773515755],[112,-10,69,-0.22494665824697588],[112,-10,70,-0.22616576105712238],[112,-10,71,-0.22989273309856678],[112,-10,72,-0.22867301253736994],[112,-10,73,-0.16995521109167328],[112,-10,74,-0.06334173878700461],[112,-10,75,-0.09108416771786085],[112,-10,76,-0.2018290530634527],[112,-10,77,-0.23459387931336198],[112,-10,78,-0.23942491554511658],[112,-10,79,-0.23966494899757373],[112,-9,64,-0.07675740981892389],[112,-9,65,-0.15913804281454025],[112,-9,66,-0.1976190415157021],[112,-9,67,-0.20458983071912973],[112,-9,68,-0.21298066916583502],[112,-9,69,-0.22547950021639174],[112,-9,70,-0.22890504142876877],[112,-9,71,-0.23015545728284015],[112,-9,72,-0.22803717540697688],[112,-9,73,-0.1758621398902292],[112,-9,74,-0.06399984080760973],[112,-9,75,-0.10070520725033233],[112,-9,76,-0.19630580618381435],[112,-9,77,-0.23243762835804768],[112,-9,78,-0.2366488043494347],[112,-9,79,-0.236684879235875],[112,-8,64,-0.0446474895674894],[112,-8,65,-0.1353505208033887],[112,-8,66,-0.1912209152053487],[112,-8,67,-0.1965124532795486],[112,-8,68,-0.20765563323316624],[112,-8,69,-0.21851806127905976],[112,-8,70,-0.2250575820859662],[112,-8,71,-0.2247177469500366],[112,-8,72,-0.22533287052105508],[112,-8,73,-0.20110247240761242],[112,-8,74,-0.05248512592372798],[112,-8,75,-0.06732316777052003],[112,-8,76,-0.16419601785619287],[112,-8,77,-0.21492447433037137],[112,-8,78,-0.22996877702850035],[112,-8,79,-0.23204612915101716],[112,-7,64,-0.04429837309684179],[112,-7,65,-0.138025081539857],[112,-7,66,-0.18547650275249503],[112,-7,67,-0.19215030045812545],[112,-7,68,-0.20159553089770577],[112,-7,69,-0.2128131981734948],[112,-7,70,-0.2204355562406725],[112,-7,71,-0.22011274278521906],[112,-7,72,-0.21930761791120282],[112,-7,73,-0.2059787769449946],[112,-7,74,-0.05956823987134277],[112,-7,75,-0.06595809757304505],[112,-7,76,-0.16785972476814262],[112,-7,77,-0.2189363927301709],[112,-7,78,-0.22433054506964384],[112,-7,79,-0.22801100694808657],[112,-6,64,-0.0440353464826751],[112,-6,65,-0.13217366040545908],[112,-6,66,-0.17946908201138273],[112,-6,67,-0.18680381080984806],[112,-6,68,-0.19517153256312256],[112,-6,69,-0.20642598533834466],[112,-6,70,-0.2150268558214774],[112,-6,71,-0.2154577442825838],[112,-6,72,-0.21518367792673243],[112,-6,73,-0.21263785826469173],[112,-6,74,-0.07335616258086577],[112,-6,75,-0.07745594601713371],[112,-6,76,-0.17980165873942955],[112,-6,77,-0.2153111492689538],[112,-6,78,-0.21971842547570986],[112,-6,79,-0.22482345657189823],[112,-5,64,-0.057976881829236646],[112,-5,65,-0.07402032808614638],[112,-5,66,-0.14409497904712806],[112,-5,67,-0.18518413307034232],[112,-5,68,-0.1943747518309784],[112,-5,69,-0.2050495355851215],[112,-5,70,-0.21302045370967],[112,-5,71,-0.21482890178054498],[112,-5,72,-0.2145706795979523],[112,-5,73,-0.21594223717195937],[112,-5,74,-0.1943958505405997],[112,-5,75,-0.21231872846093747],[112,-5,76,-0.21309655488092838],[112,-5,77,-0.21556018125822093],[112,-5,78,-0.2185441902287738],[112,-5,79,-0.22209787053604504],[112,-4,64,-0.07151140129943657],[112,-4,65,-0.08997417511017203],[112,-4,66,-0.1505158935903461],[112,-4,67,-0.18348705115770397],[112,-4,68,-0.19049428185327266],[112,-4,69,-0.20227980864124304],[112,-4,70,-0.21310578628551285],[112,-4,71,-0.21755640894386333],[112,-4,72,-0.21897659619318466],[112,-4,73,-0.221273881060218],[112,-4,74,-0.21717765968915237],[112,-4,75,-0.21827125861000302],[112,-4,76,-0.21979944916212285],[112,-4,77,-0.2186185224575794],[112,-4,78,-0.22212491574494853],[112,-4,79,-0.2251605384330868],[112,-3,64,-0.03017070256689118],[112,-3,65,-0.050717842018554504],[112,-3,66,-0.0919187248064437],[112,-3,67,-0.1550455446661048],[112,-3,68,-0.1640225698805773],[112,-3,69,-0.17306671363560855],[112,-3,70,-0.18548851687715456],[112,-3,71,-0.1975183312563438],[112,-3,72,-0.20246580745516202],[112,-3,73,-0.20428937905448827],[112,-3,74,-0.169512679503043],[112,-3,75,-0.20663457531020435],[112,-3,76,-0.20484520426421993],[112,-3,77,-0.20158971281967308],[112,-3,78,-0.20107845925114232],[112,-3,79,-0.19914918345579039],[112,-2,64,-0.046185439192035535],[112,-2,65,-0.07131454945449685],[112,-2,66,-0.10011589163855633],[112,-2,67,-0.149669921195601],[112,-2,68,-0.15894669916822388],[112,-2,69,-0.16606265394324815],[112,-2,70,-0.178233265538441],[112,-2,71,-0.1896032725423085],[112,-2,72,-0.1940172818434604],[112,-2,73,-0.19624463576235274],[112,-2,74,-0.18380912799954854],[112,-2,75,-0.20072828111379104],[112,-2,76,-0.19905070361470967],[112,-2,77,-0.19545203401700711],[112,-2,78,-0.19566253356724878],[112,-2,79,-0.19440934157274015],[112,-1,64,-0.09346869363732485],[112,-1,65,-0.10872467011575089],[112,-1,66,-0.10768931865758304],[112,-1,67,-0.12116821597184282],[112,-1,68,-0.13652400945121954],[112,-1,69,-0.16345531903013147],[112,-1,70,-0.17511075837059356],[112,-1,71,-0.18387116175066393],[112,-1,72,-0.19056399720614758],[112,-1,73,-0.1841692421994829],[112,-1,74,-0.19284509728488386],[112,-1,75,-0.1950949826626422],[112,-1,76,-0.19274912117094478],[112,-1,77,-0.18873684420306575],[112,-1,78,-0.18739397923995263],[112,-1,79,-0.18827733252785675],[112,0,64,-0.023097408038891237],[112,0,65,-0.02367107062917012],[112,0,66,-0.02101969140591456],[112,0,67,-0.02028321474947939],[112,0,68,-0.023902366861360727],[112,0,69,-0.029228894626312812],[112,0,70,-0.038195094837136],[112,0,71,-0.04642270589564218],[112,0,72,-0.05310445139154624],[112,0,73,-0.05272944146378117],[112,0,74,-0.056583273160558376],[112,0,75,-0.06353732060616339],[112,0,76,-0.06201586851304269],[112,0,77,-0.06474825424967717],[112,0,78,-0.06934611314883854],[112,0,79,-0.07747770152649225],[112,1,64,-0.022524258075114892],[112,1,65,-0.022683871327614014],[112,1,66,-0.020489403152926147],[112,1,67,-0.020157500712808613],[112,1,68,-0.022869127963978136],[112,1,69,-0.02646446477544545],[112,1,70,-0.035426273994039595],[112,1,71,-0.04368783242189182],[112,1,72,-0.04956616146339701],[112,1,73,-0.04833550643194601],[112,1,74,-0.05166270834943289],[112,1,75,-0.05556616521062105],[112,1,76,-0.054292081160789055],[112,1,77,-0.05892947205901103],[112,1,78,-0.06656660496800479],[112,1,79,-0.07731491738251502],[112,2,64,-0.024119962570161926],[112,2,65,-0.020871207711135348],[112,2,66,-0.01888978758918458],[112,2,67,-0.018190867979953854],[112,2,68,-0.022291907127309066],[112,2,69,-0.02634211718547122],[112,2,70,-0.03213024115229182],[112,2,71,-0.039462623235060876],[112,2,72,-0.04425858484383163],[112,2,73,-0.042271506328733416],[112,2,74,-0.046758465420938075],[112,2,75,-0.04900496758718163],[112,2,76,-0.04808966843400184],[112,2,77,-0.05333441455265414],[112,2,78,-0.062245128028747265],[112,2,79,-0.07399908504700417],[112,3,64,-0.025332461272815382],[112,3,65,-0.01761850883873918],[112,3,66,-0.016096350790024805],[112,3,67,-0.015850551769548887],[112,3,68,-0.021981221360107273],[112,3,69,-0.025191122600549495],[112,3,70,-0.02971192335715274],[112,3,71,-0.0340914278153481],[112,3,72,-0.04040189841271559],[112,3,73,-0.037924650555753794],[112,3,74,-0.04132713780514921],[112,3,75,-0.043970522543874554],[112,3,76,-0.0440441960385838],[112,3,77,-0.048007512645712014],[112,3,78,-0.058321391472520204],[112,3,79,-0.06852185471765462],[112,4,64,-0.022493272061583525],[112,4,65,-0.01646137538158199],[112,4,66,-0.013199346584980176],[112,4,67,-0.013144083504350507],[112,4,68,-0.019396476628439324],[112,4,69,-0.020986598169038223],[112,4,70,-0.02539086941558308],[112,4,71,-0.030984278644636168],[112,4,72,-0.0346291293774916],[112,4,73,-0.036592792537206154],[112,4,74,-0.03794456795119189],[112,4,75,-0.039708398750258334],[112,4,76,-0.0393636118916392],[112,4,77,-0.044858335301163926],[112,4,78,-0.05313625291569393],[112,4,79,-0.060156734007392146],[112,5,64,-0.01973228622221157],[112,5,65,-0.014679286288009893],[112,5,66,-0.01222985332195324],[112,5,67,-0.011460377320658272],[112,5,68,-0.014379882642853253],[112,5,69,-0.016486019999988805],[112,5,70,-0.021810377061427078],[112,5,71,-0.029630628411719095],[112,5,72,-0.03161844999129773],[112,5,73,-0.0338976297959368],[112,5,74,-0.03479799754476032],[112,5,75,-0.03723840864321745],[112,5,76,-0.03654767942708115],[112,5,77,-0.04265891167169464],[112,5,78,-0.04787247348966936],[112,5,79,-0.051973419645856],[112,6,64,-0.01717584953921769],[112,6,65,-0.01644015857046069],[112,6,66,-0.011713544913129384],[112,6,67,-0.00860718421983074],[112,6,68,-0.011231578412048332],[112,6,69,-0.012042005749845264],[112,6,70,-0.018635366093311234],[112,6,71,-0.026443984862815406],[112,6,72,-0.027930803904709006],[112,6,73,-0.029044435437113894],[112,6,74,-0.03202217215209596],[112,6,75,-0.033194035376850006],[112,6,76,-0.0322693939703603],[112,6,77,-0.03591371481622832],[112,6,78,-0.04242318075138923],[112,6,79,-0.043647155612006217],[112,7,64,-0.01683437806392192],[112,7,65,-0.016872301771891918],[112,7,66,-0.007998627137412617],[112,7,67,-0.004425470328511746],[112,7,68,-0.007154986958790452],[112,7,69,-0.008217924429915355],[112,7,70,-0.015697663426815417],[112,7,71,-0.02250148765143331],[112,7,72,-0.026644726850868855],[112,7,73,-0.02775964371105802],[112,7,74,-0.028312602531690684],[112,7,75,-0.027011539658366585],[112,7,76,-0.029164621338736943],[112,7,77,-0.02931083520315586],[112,7,78,-0.03266080319550829],[112,7,79,-0.03568002800179308],[112,8,64,-0.01885586168196121],[112,8,65,-0.015857752586002832],[112,8,66,-0.00774667451247156],[112,8,67,-0.002918777677657719],[112,8,68,-0.0038744917929066924],[112,8,69,-0.006543199117196641],[112,8,70,-0.011894623905995341],[112,8,71,-0.019410771982637062],[112,8,72,-0.02495107317293395],[112,8,73,-0.02477097501056094],[112,8,74,-0.023774375997060226],[112,8,75,-0.020165083039022855],[112,8,76,-0.021363935995539637],[112,8,77,-0.020851230160717327],[112,8,78,-0.02241414083388979],[112,8,79,-0.024571567883922618],[112,9,64,-0.0175916955953328],[112,9,65,-0.01471230525477063],[112,9,66,-0.006902564352789117],[112,9,67,0.002798272159979992],[112,9,68,0.003086248662002522],[112,9,69,7.417551520197407E-4],[112,9,70,-0.0022358175756365395],[112,9,71,-0.012193653355996134],[112,9,72,-0.02214871344420427],[112,9,73,-0.02539685923706282],[112,9,74,-0.023633035300764993],[112,9,75,-0.01871827647103151],[112,9,76,-0.018013228985674812],[112,9,77,-0.015577316775253397],[112,9,78,-0.013633976145860996],[112,9,79,-0.01343732546245835],[112,10,64,-0.015946836535539258],[112,10,65,-0.014243042983574733],[112,10,66,-0.006685804164233755],[112,10,67,0.00354238717821026],[112,10,68,0.003388171009610752],[112,10,69,0.002160719933620908],[112,10,70,0.0024921762753498944],[112,10,71,-0.006229542735620541],[112,10,72,-0.019021980770813685],[112,10,73,-0.019977935210739664],[112,10,74,-0.018913853571034353],[112,10,75,-0.014837798688674186],[112,10,76,-0.012149615338778993],[112,10,77,-0.010754042130348307],[112,10,78,-0.007516536362301401],[112,10,79,-0.007939689913303877],[112,11,64,-0.014162406304623398],[112,11,65,-0.011036236654730497],[112,11,66,-0.004596555559122459],[112,11,67,0.005094653487681178],[112,11,68,0.0038805952287706835],[112,11,69,0.004622666060523667],[112,11,70,0.007053684011868566],[112,11,71,-0.002618884532477328],[112,11,72,-0.015375331850607132],[112,11,73,-0.014659684763531716],[112,11,74,-0.013619255727738755],[112,11,75,-0.010363767138612867],[112,11,76,-0.008108310841343641],[112,11,77,-0.005046007876590458],[112,11,78,-0.004408215349332167],[112,11,79,-0.00451758712630751],[112,12,64,-0.013182990911190878],[112,12,65,-0.00950963988386766],[112,12,66,-0.006264632900914308],[112,12,67,-8.72399273593033E-4],[112,12,68,-9.309545198084579E-4],[112,12,69,1.9097826306602173E-4],[112,12,70,0.0036071106635523487],[112,12,71,-0.007699623336555328],[112,12,72,-0.017892388596291914],[112,12,73,-0.019902994284641665],[112,12,74,-0.016934229544280394],[112,12,75,-0.014818193547959102],[112,12,76,-0.012558140839683096],[112,12,77,-0.00932115403728459],[112,12,78,-0.009596592457233571],[112,12,79,-0.009885875773765068],[112,13,64,-0.008492655204254435],[112,13,65,-0.007020328243909246],[112,13,66,-0.0050905959260327815],[112,13,67,-0.0035894471966460006],[112,13,68,-0.002840680351164304],[112,13,69,0.0012078530276041777],[112,13,70,0.0058586099786912815],[112,13,71,-0.0015162879042925903],[112,13,72,-0.010215035823601823],[112,13,73,-0.013429369754684145],[112,13,74,-0.008443115353861178],[112,13,75,-0.006920457913764666],[112,13,76,-0.005279123727716245],[112,13,77,-0.004502399694933379],[112,13,78,-0.0058709095198682115],[112,13,79,-0.0052498364686627275],[112,14,64,-0.007271354795380991],[112,14,65,-0.0036983111253981182],[112,14,66,-0.0013663699772314686],[112,14,67,-0.002043376554060644],[112,14,68,-0.0011097159281504287],[112,14,69,0.002837237777033791],[112,14,70,0.007403176033949577],[112,14,71,0.001945651941236054],[112,14,72,-0.00426482961941993],[112,14,73,-0.007984181468486048],[112,14,74,-0.005371073185114261],[112,14,75,-0.0035470874614006165],[112,14,76,-7.617581810245022E-4],[112,14,77,1.2390227030364964E-4],[112,14,78,0.001817555190132325],[112,14,79,0.0022983269512623083],[112,15,64,-0.007414904863942293],[112,15,65,-0.0022610204183981797],[112,15,66,2.8848297824318747E-4],[112,15,67,5.92805330716234E-4],[112,15,68,0.0023431636410894685],[112,15,69,0.004184446073688758],[112,15,70,0.008673232188695673],[112,15,71,0.004415768030584549],[112,15,72,-0.0018034847132762377],[112,15,73,-0.0011520812654154944],[112,15,74,-6.337959713291486E-4],[112,15,75,5.591048279389998E-4],[112,15,76,0.004345600874169603],[112,15,77,0.004221744756483015],[112,15,78,0.00703666188265456],[112,15,79,0.0059844489590129835],[112,16,64,-0.007437063837892166],[112,16,65,-0.0030415080227250146],[112,16,66,-2.3141339880189404E-4],[112,16,67,0.002481988314975897],[112,16,68,0.0033137291920659617],[112,16,69,0.007218747779029866],[112,16,70,0.011118974320349306],[112,16,71,0.006154383376842432],[112,16,72,0.0014980955351180103],[112,16,73,0.005491802482039926],[112,16,74,0.008399229470513747],[112,16,75,0.008299137881847912],[112,16,76,0.009896447337053554],[112,16,77,0.0112879066339725],[112,16,78,0.014041525290111545],[112,16,79,0.01149371281611758],[112,17,64,-0.0076311245339251155],[112,17,65,-0.004061739048634244],[112,17,66,-2.1867321006022178E-4],[112,17,67,0.003678659765868869],[112,17,68,0.00728685010536842],[112,17,69,0.010802003182771358],[112,17,70,0.013243836325156494],[112,17,71,0.007836528613793026],[112,17,72,0.004377664432997391],[112,17,73,0.010283267766181159],[112,17,74,0.01301111255061363],[112,17,75,0.01108210080153979],[112,17,76,0.015228348834371325],[112,17,77,0.017149644157212568],[112,17,78,0.017817817848322176],[112,17,79,0.013026704134491862],[112,18,64,-0.00991958380720609],[112,18,65,-0.004848853624179944],[112,18,66,9.51389032518124E-4],[112,18,67,0.005590293305632821],[112,18,68,0.009680695364150005],[112,18,69,0.014304666787510578],[112,18,70,0.014800883177993523],[112,18,71,0.010034204809987901],[112,18,72,0.008755895298686672],[112,18,73,0.013800302547364973],[112,18,74,0.01619049949635537],[112,18,75,0.01703805009659501],[112,18,76,0.020386131682649383],[112,18,77,0.022100841665348425],[112,18,78,0.018931648618527586],[112,18,79,0.012871285348314332],[112,19,64,-0.012155687163414766],[112,19,65,-0.005384964401993167],[112,19,66,0.002736226526812824],[112,19,67,0.00913897801988739],[112,19,68,0.012506665737851641],[112,19,69,0.01853504198750086],[112,19,70,0.01543243094406288],[112,19,71,0.012411362490295424],[112,19,72,0.011947297621271974],[112,19,73,0.016092153034935025],[112,19,74,0.019385527883870046],[112,19,75,0.018291626915596992],[112,19,76,0.023713505176703786],[112,19,77,0.024804508967050415],[112,19,78,0.02186444142255453],[112,19,79,0.014687879188890057],[112,20,64,-0.011873199306761062],[112,20,65,-0.004938957935976998],[112,20,66,0.001397671760317326],[112,20,67,0.006162346982186123],[112,20,68,0.010276792893591513],[112,20,69,0.015045365081104767],[112,20,70,0.011706358568467301],[112,20,71,0.010686837779041808],[112,20,72,0.011468532442678397],[112,20,73,0.014533904073206566],[112,20,74,0.015185983402324327],[112,20,75,0.012486590467445546],[112,20,76,0.01651203404400456],[112,20,77,0.01798684829531197],[112,20,78,0.01578408202870407],[112,20,79,0.011106651118097804],[112,21,64,-0.0067148567769681755],[112,21,65,-0.0012414581564433869],[112,21,66,0.007856098585120014],[112,21,67,0.01189234747533871],[112,21,68,0.018341414774642628],[112,21,69,0.02194864791415896],[112,21,70,0.02120213156132389],[112,21,71,0.0224332534478896],[112,21,72,0.020347185043731786],[112,21,73,0.021528045514911803],[112,21,74,0.02191071143007972],[112,21,75,0.016240049830509612],[112,21,76,0.019807759741027747],[112,21,77,0.024296248629743417],[112,21,78,0.02298825593569115],[112,21,79,0.020344678485688716],[112,22,64,-0.004210980701776612],[112,22,65,0.0024154112743475786],[112,22,66,0.010948131803498962],[112,22,67,0.012199019314800302],[112,22,68,0.01806104363110511],[112,22,69,0.023025628517688967],[112,22,70,0.0244083760553796],[112,22,71,0.024288888213127247],[112,22,72,0.023855745256562505],[112,22,73,0.02395370925614801],[112,22,74,0.025847706458237363],[112,22,75,0.019537875853220366],[112,22,76,0.021563499386125312],[112,22,77,0.02460264839330112],[112,22,78,0.024594291262248935],[112,22,79,0.020549610974038734],[112,23,64,-0.001725284459468207],[112,23,65,0.008594437401424224],[112,23,66,0.01285758368138204],[112,23,67,0.014153126626062551],[112,23,68,0.02035785169153073],[112,23,69,0.025220402100309236],[112,23,70,0.0281676031597623],[112,23,71,0.027411715497270256],[112,23,72,0.026613796297515008],[112,23,73,0.028439889036286914],[112,23,74,0.029056748881776562],[112,23,75,0.023777353418700298],[112,23,76,0.023431160774084775],[112,23,77,0.02337826841994331],[112,23,78,0.025536332697647185],[112,23,79,0.023170654655771394],[112,24,64,0.010813826065986798],[112,24,65,0.02108970824956563],[112,24,66,0.025891539549769527],[112,24,67,0.024419762480884483],[112,24,68,0.03091697353644343],[112,24,69,0.03675577362517177],[112,24,70,0.040755126655177054],[112,24,71,0.03964513726460822],[112,24,72,0.03971136129136105],[112,24,73,0.0438576337379272],[112,24,74,0.04143323392603804],[112,24,75,0.038421314814638285],[112,24,76,0.035200901505048204],[112,24,77,0.03409440322021523],[112,24,78,0.038392057276458225],[112,24,79,0.03570174956504302],[112,25,64,0.026415326451025456],[112,25,65,0.034227727811489694],[112,25,66,0.03780000379667259],[112,25,67,0.037410349746762384],[112,25,68,0.041816090637542574],[112,25,69,0.045751211503418765],[112,25,70,0.05062750971834992],[112,25,71,0.05298683613810756],[112,25,72,0.05378445864250797],[112,25,73,0.05678550922990394],[112,25,74,0.05521020692222811],[112,25,75,0.05291086638184353],[112,25,76,0.04253452881174388],[112,25,77,0.04016859605380663],[112,25,78,0.03897998214110221],[112,25,79,0.034759799618554355],[112,26,64,0.0280528956249744],[112,26,65,0.036222914299660514],[112,26,66,0.042312932526342356],[112,26,67,0.04336846341645084],[112,26,68,0.04468715547684812],[112,26,69,0.046039516880568426],[112,26,70,0.05284329862185755],[112,26,71,0.05609540818578354],[112,26,72,0.05766546436338904],[112,26,73,0.057676447758733956],[112,26,74,0.057359838267588004],[112,26,75,0.054873198829319014],[112,26,76,0.04508384096811535],[112,26,77,0.04315158560364016],[112,26,78,0.03929801320379789],[112,26,79,0.032840203343240004],[112,27,64,0.030174340678746303],[112,27,65,0.037730865922104756],[112,27,66,0.04692027926182166],[112,27,67,0.04663284651222252],[112,27,68,0.04669112254525734],[112,27,69,0.04551684411401674],[112,27,70,0.05255961352979477],[112,27,71,0.05687176542674868],[112,27,72,0.057887028452107026],[112,27,73,0.05982268388663828],[112,27,74,0.057580582842262945],[112,27,75,0.053861374826486064],[112,27,76,0.045760114273364655],[112,27,77,0.0428044803531602],[112,27,78,0.03769304416673172],[112,27,79,0.031379908099628595],[112,28,64,0.03476123775166756],[112,28,65,0.03920690059674081],[112,28,66,0.04753335979024034],[112,28,67,0.04567906490178453],[112,28,68,0.04353866719389288],[112,28,69,0.03998520120848564],[112,28,70,0.04630935615122775],[112,28,71,0.0516683580251443],[112,28,72,0.05095063621738313],[112,28,73,0.0524850363765933],[112,28,74,0.05268794104312355],[112,28,75,0.04663808210353787],[112,28,76,0.04021549790255946],[112,28,77,0.03835376311757227],[112,28,78,0.032414990382957115],[112,28,79,0.025540818122178205],[112,29,64,0.03664747669902167],[112,29,65,0.03803303360088214],[112,29,66,0.04345302457904715],[112,29,67,0.0382695416209935],[112,29,68,0.035028425666186136],[112,29,69,0.03187874822156289],[112,29,70,0.038483102012923376],[112,29,71,0.04445530000850595],[112,29,72,0.04154771474268448],[112,29,73,0.04300965309814697],[112,29,74,0.04235071561576462],[112,29,75,0.03813458630727018],[112,29,76,0.036108121199778964],[112,29,77,0.03309772785501941],[112,29,78,0.027522095419057507],[112,29,79,0.01992448996076507],[112,30,64,0.0394802870762376],[112,30,65,0.041311528622241106],[112,30,66,0.04360545692003581],[112,30,67,0.037709893710509146],[112,30,68,0.033643281736979724],[112,30,69,0.03012102624696733],[112,30,70,0.03598257714782699],[112,30,71,0.03923950813382007],[112,30,72,0.04079031285096918],[112,30,73,0.040314262321088895],[112,30,74,0.040607858154747656],[112,30,75,0.03756286862211189],[112,30,76,0.03356105226373088],[112,30,77,0.030629715411003178],[112,30,78,0.02769574885701609],[112,30,79,0.02067806487400725],[112,31,64,0.042660938351697084],[112,31,65,0.04632025385235028],[112,31,66,0.04383654658699465],[112,31,67,0.03959769712015554],[112,31,68,0.03485577789067615],[112,31,69,0.03159736331630711],[112,31,70,0.03424684904524561],[112,31,71,0.03539603819214107],[112,31,72,0.04021068525310176],[112,31,73,0.039534668369110904],[112,31,74,0.04134481889070846],[112,31,75,0.03362385445122992],[112,31,76,0.027715112711072548],[112,31,77,0.026007330617770136],[112,31,78,0.025064056328828715],[112,31,79,0.018175813693542237],[112,32,64,0.05856787680154241],[112,32,65,0.061151096741705435],[112,32,66,0.05648708671157518],[112,32,67,0.051256859539265065],[112,32,68,0.04640927197740702],[112,32,69,0.04236975595108669],[112,32,70,0.04298850057349529],[112,32,71,0.04544386783667256],[112,32,72,0.049011346328315164],[112,32,73,0.05163823164849307],[112,32,74,0.05036637422166962],[112,32,75,0.044740626743498324],[112,32,76,0.03781914833657418],[112,32,77,0.035247128008077805],[112,32,78,0.03441900943231435],[112,32,79,0.030125365921104097],[112,33,64,0.05346705729914128],[112,33,65,0.05677094241724501],[112,33,66,0.05274306502564849],[112,33,67,0.04731251434979],[112,33,68,0.04245495138714883],[112,33,69,0.039942081097569526],[112,33,70,0.037542998827395424],[112,33,71,0.03881485442098323],[112,33,72,0.04096421690017657],[112,33,73,0.04435479910015186],[112,33,74,0.042942042257328006],[112,33,75,0.035555844364890066],[112,33,76,0.03221560251858377],[112,33,77,0.026285794485525565],[112,33,78,0.029232572129000406],[112,33,79,0.02680521183124157],[112,34,64,0.05763362662621957],[112,34,65,0.05781730755153844],[112,34,66,0.055700979674425055],[112,34,67,0.050304201863702214],[112,34,68,0.043302859823365625],[112,34,69,0.040693170355112024],[112,34,70,0.03690592420704408],[112,34,71,0.03622400429608888],[112,34,72,0.037394493160722686],[112,34,73,0.044230339155160836],[112,34,74,0.04145405737594851],[112,34,75,0.03370080852333046],[112,34,76,0.030591862878112663],[112,34,77,0.025485854798791563],[112,34,78,0.027556059577005132],[112,34,79,0.024411941116843694],[112,35,64,0.05945804259990953],[112,35,65,0.060019851872431695],[112,35,66,0.0587820810356095],[112,35,67,0.05383015402536423],[112,35,68,0.04528566097928588],[112,35,69,0.0410272448247945],[112,35,70,0.035132146998210434],[112,35,71,0.03424854102406477],[112,35,72,0.03443709226922645],[112,35,73,0.03984848272939123],[112,35,74,0.03609624674387776],[112,35,75,0.03204751813374698],[112,35,76,0.03112857184536741],[112,35,77,0.026956397709731905],[112,35,78,0.025938454264876676],[112,35,79,0.020439757857661472],[112,36,64,0.060527790811398],[112,36,65,0.05938582380793783],[112,36,66,0.05863040749765072],[112,36,67,0.0542035337929376],[112,36,68,0.047714476978535925],[112,36,69,0.03836136051711611],[112,36,70,0.03135822362572871],[112,36,71,0.02797671119108508],[112,36,72,0.029356764676253394],[112,36,73,0.03315121354634362],[112,36,74,0.028346809169795095],[112,36,75,0.02828801235897377],[112,36,76,0.02839170875248559],[112,36,77,0.02331089461489591],[112,36,78,0.021596589332985833],[112,36,79,0.016234957115382476],[112,37,64,0.07096246640763319],[112,37,65,0.06603582726329585],[112,37,66,0.06158162966138689],[112,37,67,0.05495252341097262],[112,37,68,0.046146587891164687],[112,37,69,0.03600095426204861],[112,37,70,0.02656776999535959],[112,37,71,0.024296257174963393],[112,37,72,0.022271125136342662],[112,37,73,0.024228999027873954],[112,37,74,0.021557077389742357],[112,37,75,0.022099901789354504],[112,37,76,0.020967237520215842],[112,37,77,0.01595607439401156],[112,37,78,0.01448754885458009],[112,37,79,0.013058468748204322],[112,38,64,0.07426920564669967],[112,38,65,0.0671236229944093],[112,38,66,0.06026654042249316],[112,38,67,0.052524668051751766],[112,38,68,0.04638808971333802],[112,38,69,0.035817951924631886],[112,38,70,0.026938509975161867],[112,38,71,0.02648542321907338],[112,38,72,0.022900922070870522],[112,38,73,0.02360042403412871],[112,38,74,0.020788027137492254],[112,38,75,0.018118803834656166],[112,38,76,0.017929283649185057],[112,38,77,0.01489420215255935],[112,38,78,0.014215025950927968],[112,38,79,0.015061132103386637],[112,39,64,0.07706178682571797],[112,39,65,0.06958687579793792],[112,39,66,0.06001974161211526],[112,39,67,0.050837209904006336],[112,39,68,0.04449129438870772],[112,39,69,0.03625072347898878],[112,39,70,0.026625113832545372],[112,39,71,0.029588127555708305],[112,39,72,0.026252595441721843],[112,39,73,0.024765134198994926],[112,39,74,0.02316432008804653],[112,39,75,0.018135424120198057],[112,39,76,0.015008483946795131],[112,39,77,0.012436854304834821],[112,39,78,0.015270319522727699],[112,39,79,0.01640178180462787],[112,40,64,0.0911265135583445],[112,40,65,0.08388445246154566],[112,40,66,0.07473522456473017],[112,40,67,0.06357257800508537],[112,40,68,0.05722954282436771],[112,40,69,0.051725777759041],[112,40,70,0.04352274317945393],[112,40,71,0.04379197803859225],[112,40,72,0.04150447294307097],[112,40,73,0.04132979242134152],[112,40,74,0.03568272377593068],[112,40,75,0.030756224768279466],[112,40,76,0.026802658547023933],[112,40,77,0.025475930765162663],[112,40,78,0.028003279294664063],[112,40,79,0.02959985625036307],[112,41,64,0.09264776279053766],[112,41,65,0.08358626091598781],[112,41,66,0.07485557913375027],[112,41,67,0.06525214792316869],[112,41,68,0.057818334742463035],[112,41,69,0.05467710658171346],[112,41,70,0.047882997649449865],[112,41,71,0.04443418574403518],[112,41,72,0.04148166347725979],[112,41,73,0.03927751777072386],[112,41,74,0.03551246380194967],[112,41,75,0.030077089018681752],[112,41,76,0.024806651006772595],[112,41,77,0.023052316636403974],[112,41,78,0.0273636041065915],[112,41,79,0.028334349258867575],[112,42,64,0.09426387185845553],[112,42,65,0.08654738882988428],[112,42,66,0.07630958313922037],[112,42,67,0.06609176969769884],[112,42,68,0.058099128869844724],[112,42,69,0.055439146121005534],[112,42,70,0.05126739335514302],[112,42,71,0.044461662579062255],[112,42,72,0.04161231066854937],[112,42,73,0.03919432912290974],[112,42,74,0.03571638711368266],[112,42,75,0.02854608703530631],[112,42,76,0.02284820486247513],[112,42,77,0.02152882613566015],[112,42,78,0.023775271029173872],[112,42,79,0.02746576211093138],[112,43,64,0.09589182944318239],[112,43,65,0.08874447438338598],[112,43,66,0.07765259173141437],[112,43,67,0.0660981602691289],[112,43,68,0.05917742715745289],[112,43,69,0.05316601395648385],[112,43,70,0.049219685383396966],[112,43,71,0.044984557795002184],[112,43,72,0.042478345892443536],[112,43,73,0.03920165349603233],[112,43,74,0.03732618185482048],[112,43,75,0.029499509003365038],[112,43,76,0.023009597593882658],[112,43,77,0.0198446149316997],[112,43,78,0.023257509734384785],[112,43,79,0.025838956021301374],[112,44,64,0.09549641901568137],[112,44,65,0.08697759054044782],[112,44,66,0.077377080686441],[112,44,67,0.06762299671831337],[112,44,68,0.0597620351959241],[112,44,69,0.05282812217380517],[112,44,70,0.04588103348486236],[112,44,71,0.041974125703832244],[112,44,72,0.03981886373580984],[112,44,73,0.035393059794446846],[112,44,74,0.032567563641433955],[112,44,75,0.02764312583451342],[112,44,76,0.021214682676109264],[112,44,77,0.01844167796542928],[112,44,78,0.022549386872564248],[112,44,79,0.024967102378598283],[112,45,64,0.08718081719667957],[112,45,65,0.08276622251815877],[112,45,66,0.0799451811192278],[112,45,67,0.07584301508333538],[112,45,68,0.06968248833177898],[112,45,69,0.06712808565097536],[112,45,70,0.06314801675210857],[112,45,71,0.06353358565659609],[112,45,72,0.05842232993713656],[112,45,73,0.05380347938801666],[112,45,74,0.053726268691791534],[112,45,75,0.050876106519838316],[112,45,76,0.04413541910691349],[112,45,77,0.03929736305598286],[112,45,78,0.04257676235436186],[112,45,79,0.04126660236103874],[112,46,64,0.08559435698863588],[112,46,65,0.0829477688163876],[112,46,66,0.07866894134148816],[112,46,67,0.0759338144844926],[112,46,68,0.07040816879169057],[112,46,69,0.06904321320147025],[112,46,70,0.06715194210520975],[112,46,71,0.06653836660506984],[112,46,72,0.06056481517412479],[112,46,73,0.05273865950960788],[112,46,74,0.054427798654098136],[112,46,75,0.04984229702983922],[112,46,76,0.04286415140877911],[112,46,77,0.03855477013508682],[112,46,78,0.04177809085599066],[112,46,79,0.038356389925082085],[112,47,64,0.08382728817594758],[112,47,65,0.08071174930719696],[112,47,66,0.07626420823686886],[112,47,67,0.07288748830048736],[112,47,68,0.07126912779789096],[112,47,69,0.07176705854096566],[112,47,70,0.06830130641403973],[112,47,71,0.06699665490428816],[112,47,72,0.060871419096145324],[112,47,73,0.05308471918924382],[112,47,74,0.052387224104047],[112,47,75,0.05017841561673286],[112,47,76,0.041185104823016766],[112,47,77,0.0400344349208156],[112,47,78,0.04195758246277631],[112,47,79,0.03695000706176957],[112,48,64,0.09692163073696752],[112,48,65,0.0949409219962975],[112,48,66,0.08971370441208298],[112,48,67,0.08798251221631001],[112,48,68,0.08875047765315505],[112,48,69,0.08701787181933607],[112,48,70,0.0834979305551285],[112,48,71,0.08212000699823502],[112,48,72,0.07704073655061419],[112,48,73,0.06829328513177357],[112,48,74,0.0655611001138342],[112,48,75,0.06397953481156915],[112,48,76,0.058466343190163195],[112,48,77,0.055954197547953555],[112,48,78,0.05599734531945058],[112,48,79,0.05194703221148289],[112,49,64,0.09435236857828327],[112,49,65,0.0949958151899247],[112,49,66,0.09190129335512903],[112,49,67,0.08995743896397224],[112,49,68,0.09076934911009493],[112,49,69,0.09091128870004658],[112,49,70,0.08753227709412234],[112,49,71,0.08348871954840603],[112,49,72,0.07493635324595424],[112,49,73,0.0653156051239138],[112,49,74,0.061984654286558],[112,49,75,0.0595905334097564],[112,49,76,0.057439878259119115],[112,49,77,0.05426965502474104],[112,49,78,0.054944256137325426],[112,49,79,0.05074603787668558],[112,50,64,0.09329405308368136],[112,50,65,0.09267542609173335],[112,50,66,0.09195315138219318],[112,50,67,0.08927025018879883],[112,50,68,0.08842935536516502],[112,50,69,0.09096629228551362],[112,50,70,0.08875875832583954],[112,50,71,0.083268541597668],[112,50,72,0.07372630005398517],[112,50,73,0.06537258337736812],[112,50,74,0.06274752671889597],[112,50,75,0.06006940455428483],[112,50,76,0.05685410757878606],[112,50,77,0.05497431472024639],[112,50,78,0.05637336056091535],[112,50,79,0.05241154244884855],[112,51,64,0.08943755088071498],[112,51,65,0.08855537637098837],[112,51,66,0.08739181873050955],[112,51,67,0.08622827129196001],[112,51,68,0.08363296803490372],[112,51,69,0.08957155404788492],[112,51,70,0.08844118689934785],[112,51,71,0.08315721211006813],[112,51,72,0.07175651301924599],[112,51,73,0.06708114134933388],[112,51,74,0.06317702362313046],[112,51,75,0.057660690437926626],[112,51,76,0.05389548755516302],[112,51,77,0.053043343543195814],[112,51,78,0.054136087118348164],[112,51,79,0.05100774226076696],[112,52,64,0.09315471490952029],[112,52,65,0.09235310728008048],[112,52,66,0.09084719571968128],[112,52,67,0.08960612749132338],[112,52,68,0.09078386106030478],[112,52,69,0.0963191440866327],[112,52,70,0.09589397927433743],[112,52,71,0.08881018574310609],[112,52,72,0.08002390215509278],[112,52,73,0.07595490537356392],[112,52,74,0.06973911458006901],[112,52,75,0.062305406605805386],[112,52,76,0.060027291020724266],[112,52,77,0.05906944259771438],[112,52,78,0.05760397400268796],[112,52,79,0.05589887261069884],[112,53,64,0.08979206810054456],[112,53,65,0.08793559295731512],[112,53,66,0.08532353679628502],[112,53,67,0.0835410453728008],[112,53,68,0.08543316673206933],[112,53,69,0.08762564254992422],[112,53,70,0.08535755915095258],[112,53,71,0.07816215161356099],[112,53,72,0.07038619633128246],[112,53,73,0.06930789750640973],[112,53,74,0.06281073064841955],[112,53,75,0.055766906128309174],[112,53,76,0.050444281031621435],[112,53,77,0.05036371917966856],[112,53,78,0.05014776642639382],[112,53,79,0.04779179963360314],[112,54,64,0.08390384811989665],[112,54,65,0.0833463711600739],[112,54,66,0.08190549679749409],[112,54,67,0.08254782932127824],[112,54,68,0.08336502816166375],[112,54,69,0.08166532503237572],[112,54,70,0.08162849305540676],[112,54,71,0.07660874441211216],[112,54,72,0.07130830428321891],[112,54,73,0.06837994677893638],[112,54,74,0.0645836919526051],[112,54,75,0.05606008927659237],[112,54,76,0.04975282904526401],[112,54,77,0.04814683628559241],[112,54,78,0.048351525198779],[112,54,79,0.04722090982811894],[112,55,64,0.07817895835295315],[112,55,65,0.07678318582563859],[112,55,66,0.0781462805952449],[112,55,67,0.08003277054715274],[112,55,68,0.08031278817691659],[112,55,69,0.07766312290761529],[112,55,70,0.07892067966543775],[112,55,71,0.07689711818888181],[112,55,72,0.07323668746434475],[112,55,73,0.06675285640356801],[112,55,74,0.06276505801373514],[112,55,75,0.055365875563814476],[112,55,76,0.0501787537657242],[112,55,77,0.04932205585873581],[112,55,78,0.04732971726310589],[112,55,79,0.043746997884722805],[112,56,64,0.09095234726387921],[112,56,65,0.08814981655887294],[112,56,66,0.08719442038545461],[112,56,67,0.09109434122622026],[112,56,68,0.0897184863026016],[112,56,69,0.0875257734781146],[112,56,70,0.09067744477912343],[112,56,71,0.09049305271648977],[112,56,72,0.08787967890295392],[112,56,73,0.07998586621828835],[112,56,74,0.0748957872870539],[112,56,75,0.07024229043589086],[112,56,76,0.06645975141401794],[112,56,77,0.06565852774733183],[112,56,78,0.06236363893514013],[112,56,79,0.05853847111243271],[112,57,64,0.09008337580053821],[112,57,65,0.08686191921521452],[112,57,66,0.08476054907096892],[112,57,67,0.08890395044725019],[112,57,68,0.08532933551951286],[112,57,69,0.08521438578587806],[112,57,70,0.08772066778732637],[112,57,71,0.08940124505857458],[112,57,72,0.08513291547813659],[112,57,73,0.07542805894409449],[112,57,74,0.06954163478087313],[112,57,75,0.06825633774252732],[112,57,76,0.06566580546987721],[112,57,77,0.061673185188849955],[112,57,78,0.05702631444293424],[112,57,79,0.05308742846323036],[112,58,64,0.1254725012997206],[112,58,65,0.12137317419995018],[112,58,66,0.12136490831522427],[112,58,67,0.12214964688087357],[112,58,68,0.11959800429112934],[112,58,69,0.11672785082750338],[112,58,70,0.12176185714116276],[112,58,71,0.12213712656446675],[112,58,72,0.11488097689229818],[112,58,73,0.10699137233463331],[112,58,74,0.10248449583024428],[112,58,75,0.09683523071463444],[112,58,76,0.09603757979873377],[112,58,77,0.09062673212127248],[112,58,78,0.08837920634516627],[112,58,79,0.08492658131001218],[112,59,64,0.12208465240414859],[112,59,65,0.11823943210503883],[112,59,66,0.11767336297041092],[112,59,67,0.11692923208856945],[112,59,68,0.11754633936863186],[112,59,69,0.11420442133602453],[112,59,70,0.11872283280204213],[112,59,71,0.11584582638511091],[112,59,72,0.11168536657164067],[112,59,73,0.10425433601811149],[112,59,74,0.09817230136472174],[112,59,75,0.09228488404630542],[112,59,76,0.0906880081270917],[112,59,77,0.08901400745541074],[112,59,78,0.08864172532491597],[112,59,79,0.08713702835756426],[112,60,64,0.11485523007813266],[112,60,65,0.11047560565188505],[112,60,66,0.11027135087884526],[112,60,67,0.11034084540820774],[112,60,68,0.11137838486436091],[112,60,69,0.10977894915501532],[112,60,70,0.11223854168185195],[112,60,71,0.1087872106140053],[112,60,72,0.10658344080931684],[112,60,73,0.09958644248569738],[112,60,74,0.09294398043235058],[112,60,75,0.0857583167647075],[112,60,76,0.0853279539573622],[112,60,77,0.08490350904932864],[112,60,78,0.08496643493415061],[112,60,79,0.08635667866692537],[112,61,64,0.10428324058168885],[112,61,65,0.10397405452464735],[112,61,66,0.10263865346282602],[112,61,67,0.10180675576649596],[112,61,68,0.1016949450597928],[112,61,69,0.10115792046222775],[112,61,70,0.10196582214345275],[112,61,71,0.10422620610647178],[112,61,72,0.10447084570495078],[112,61,73,0.09604085112553422],[112,61,74,0.09224866280636798],[112,61,75,0.08514599846308157],[112,61,76,0.08554093841864979],[112,61,77,0.0875902317231213],[112,61,78,0.08858095939618998],[112,61,79,0.09269921327195609],[112,62,64,0.09872485685599566],[112,62,65,0.0970677941142444],[112,62,66,0.09682928958745735],[112,62,67,0.09500525509055166],[112,62,68,0.09554898961876883],[112,62,69,0.09585962972636257],[112,62,70,0.09590246183116907],[112,62,71,0.10056144383025264],[112,62,72,0.10223590697661568],[112,62,73,0.09403267851129424],[112,62,74,0.08924982697403061],[112,62,75,0.0834971204085241],[112,62,76,0.08426210441964177],[112,62,77,0.08475586101481908],[112,62,78,0.0856443202125696],[112,62,79,0.09004694430795664],[112,63,64,0.024577719309082827],[112,63,65,0.0197921967298694],[112,63,66,0.020389431525834056],[112,63,67,0.020422914690987504],[112,63,68,0.01810512577511661],[112,63,69,0.016622013725098236],[112,63,70,0.01838007107710829],[112,63,71,0.026907526756864225],[112,63,72,0.025535052198766173],[112,63,73,0.021390639994922536],[112,63,74,0.014516228226203284],[112,63,75,0.01162843999607098],[112,63,76,0.012492768915096375],[112,63,77,0.010321898318295164],[112,63,78,0.0132506705012808],[112,63,79,0.013308884570070886],[112,64,64,0.031078023495626203],[112,64,65,0.02742166321111049],[112,64,66,0.027597649575446706],[112,64,67,0.02806568758472633],[112,64,68,0.025187789252178946],[112,64,69,0.022628222533449954],[112,64,70,0.025765556731639494],[112,64,71,0.032565427000996655],[112,64,72,0.03185758017552799],[112,64,73,0.02788587302132106],[112,64,74,0.02354130733119325],[112,64,75,0.018489353274732515],[112,64,76,0.019440033727730843],[112,64,77,0.020121448417308563],[112,64,78,0.021988135162391995],[112,64,79,0.02140639798577551],[112,65,64,0.028892795299803625],[112,65,65,0.028081992892909538],[112,65,66,0.024203590196951286],[112,65,67,0.023645900959079563],[112,65,68,0.020643597000438108],[112,65,69,0.019111291344988207],[112,65,70,0.02416514641149177],[112,65,71,0.028679421834167773],[112,65,72,0.029109054263983303],[112,65,73,0.026253453865433304],[112,65,74,0.019707521361769592],[112,65,75,0.016151628618057357],[112,65,76,0.015130309083470947],[112,65,77,0.015132878916048434],[112,65,78,0.017830781021996367],[112,65,79,0.017950643565139035],[112,66,64,0.022669943788696814],[112,66,65,0.02009609977280627],[112,66,66,0.015952284433990077],[112,66,67,0.014810544569871478],[112,66,68,0.013241753835938855],[112,66,69,0.01083955256316363],[112,66,70,0.01824614714995257],[112,66,71,0.019760986975994613],[112,66,72,0.021812757540696892],[112,66,73,0.018220359903888428],[112,66,74,0.013329077254999475],[112,66,75,0.009244740538698962],[112,66,76,0.006852358471237427],[112,66,77,0.006495267798564144],[112,66,78,0.008825358953720275],[112,66,79,0.009539651398567384],[112,67,64,0.022484363910230995],[112,67,65,0.019431736540707706],[112,67,66,0.012956347293330964],[112,67,67,0.012192532237849593],[112,67,68,0.011366567166464975],[112,67,69,0.008914364647257256],[112,67,70,0.015541546203513876],[112,67,71,0.0159276142331881],[112,67,72,0.017934746875631194],[112,67,73,0.017804748031724743],[112,67,74,0.011850429150687583],[112,67,75,0.0077146462995246745],[112,67,76,0.0071674304092819024],[112,67,77,0.004031649005183213],[112,67,78,0.0032480487508854683],[112,67,79,0.005727559587474812],[112,68,64,-0.06509275610564194],[112,68,65,-0.07034293054595384],[112,68,66,-0.07534254163082506],[112,68,67,-0.07773294801772523],[112,68,68,-0.07873620219934066],[112,68,69,-0.07841928010354653],[112,68,70,-0.07576504271653912],[112,68,71,-0.07123298980073466],[112,68,72,-0.07047551180326905],[112,68,73,-0.07058457052570927],[112,68,74,-0.07576514628400624],[112,68,75,-0.08050533529077564],[112,68,76,-0.08191441362202001],[112,68,77,-0.08453080593967474],[112,68,78,-0.08744089046417813],[112,68,79,-0.08595015917870064],[112,69,64,-0.062140311268793075],[112,69,65,-0.06797840349585438],[112,69,66,-0.07905216584642569],[112,69,67,-0.08346361743614214],[112,69,68,-0.08339989089737221],[112,69,69,-0.08210594226980619],[112,69,70,-0.07995391549509093],[112,69,71,-0.07374125351766192],[112,69,72,-0.0689768176571857],[112,69,73,-0.06929677122283723],[112,69,74,-0.07187575502631502],[112,69,75,-0.07594312393167651],[112,69,76,-0.08317456106835605],[112,69,77,-0.08530209308587147],[112,69,78,-0.09576949438308914],[112,69,79,-0.09951037689922712],[112,70,64,-0.06585948791170287],[112,70,65,-0.07180622443130025],[112,70,66,-0.07982922895941326],[112,70,67,-0.0857538194892078],[112,70,68,-0.08565151871894115],[112,70,69,-0.08347129454580023],[112,70,70,-0.08162224605373576],[112,70,71,-0.07684553987640734],[112,70,72,-0.07258859459508929],[112,70,73,-0.07344286244696525],[112,70,74,-0.07754934320849992],[112,70,75,-0.07905466691053992],[112,70,76,-0.08475477037738398],[112,70,77,-0.0903774099759335],[112,70,78,-0.09891436832527362],[112,70,79,-0.10399877549191688],[112,71,64,-0.05749866225562775],[112,71,65,-0.06701750383216751],[112,71,66,-0.07311103749775857],[112,71,67,-0.07751018560703389],[112,71,68,-0.0759047608903395],[112,71,69,-0.07481751127522984],[112,71,70,-0.07475132557407599],[112,71,71,-0.06977876524974534],[112,71,72,-0.06461940760362785],[112,71,73,-0.0679346210562731],[112,71,74,-0.07179118019536265],[112,71,75,-0.07242667507994185],[112,71,76,-0.07691003992492385],[112,71,77,-0.08313386570359599],[112,71,78,-0.09142243052008939],[112,71,79,-0.09645730592277277],[112,72,64,-0.06233259177598726],[112,72,65,-0.0711945623566519],[112,72,66,-0.07469975765156374],[112,72,67,-0.07952432884738324],[112,72,68,-0.07659248143521041],[112,72,69,-0.07545676059062612],[112,72,70,-0.0768179210680435],[112,72,71,-0.07223489143952322],[112,72,72,-0.070781839450674],[112,72,73,-0.0706926988248705],[112,72,74,-0.07628473483272469],[112,72,75,-0.07532529004758927],[112,72,76,-0.07995704594284445],[112,72,77,-0.08618220678626065],[112,72,78,-0.0959580648977693],[112,72,79,-0.10031159086782429],[112,73,64,-0.07387268423598346],[112,73,65,-0.07774842336732393],[112,73,66,-0.07697321338872487],[112,73,67,-0.07625356461224059],[112,73,68,-0.0741921543893643],[112,73,69,-0.07533494569984536],[112,73,70,-0.0774686581025078],[112,73,71,-0.0778196766328679],[112,73,72,-0.08317838933475137],[112,73,73,-0.08402005143827858],[112,73,74,-0.08882873913397517],[112,73,75,-0.08842395935511868],[112,73,76,-0.09241807070354835],[112,73,77,-0.09483516078516024],[112,73,78,-0.09948385637990342],[112,73,79,-0.10163970264965919],[112,74,64,-0.08576432522483791],[112,74,65,-0.08254906720556125],[112,74,66,-0.08270322587755431],[112,74,67,-0.08329351869069956],[112,74,68,-0.08261770373088698],[112,74,69,-0.08472940610033129],[112,74,70,-0.08648850870521939],[112,74,71,-0.08918368315461626],[112,74,72,-0.09371340592540807],[112,74,73,-0.09441522915494979],[112,74,74,-0.09907884043991491],[112,74,75,-0.09775588508213262],[112,74,76,-0.10232586759566782],[112,74,77,-0.10378552486759063],[112,74,78,-0.10667352989721526],[112,74,79,-0.10878824732352613],[112,75,64,-0.08849321021384471],[112,75,65,-0.08647256008364922],[112,75,66,-0.08455645102760895],[112,75,67,-0.08720527576123936],[112,75,68,-0.08592320973166394],[112,75,69,-0.08833449591374976],[112,75,70,-0.08725105493826699],[112,75,71,-0.09318543408730436],[112,75,72,-0.09904192461284227],[112,75,73,-0.09944873147639438],[112,75,74,-0.10257969117106365],[112,75,75,-0.10369693130152019],[112,75,76,-0.1052759973951907],[112,75,77,-0.10835379552428322],[112,75,78,-0.1110264713191488],[112,75,79,-0.11088314157850315],[112,76,64,-0.08543704338823624],[112,76,65,-0.08568268528310281],[112,76,66,-0.08428043095100943],[112,76,67,-0.08502143592040141],[112,76,68,-0.08503614588554913],[112,76,69,-0.08663660073433502],[112,76,70,-0.08428517650603483],[112,76,71,-0.08931991870619795],[112,76,72,-0.09690242494575307],[112,76,73,-0.09670481813907979],[112,76,74,-0.1003531650498216],[112,76,75,-0.10412311107606002],[112,76,76,-0.1062839687808525],[112,76,77,-0.10893942372066023],[112,76,78,-0.11138350365066052],[112,76,79,-0.11327257161696105],[112,77,64,-0.08720315898914437],[112,77,65,-0.08595994552370008],[112,77,66,-0.08416551008161365],[112,77,67,-0.08752620665538761],[112,77,68,-0.08839301750020676],[112,77,69,-0.0896201005264136],[112,77,70,-0.08745483131011803],[112,77,71,-0.08942661821532451],[112,77,72,-0.09887109229474053],[112,77,73,-0.09976789661507446],[112,77,74,-0.10171250438291367],[112,77,75,-0.10715254006025918],[112,77,76,-0.10995523836372707],[112,77,77,-0.11294229962086241],[112,77,78,-0.11587969627662953],[112,77,79,-0.11489883135184058],[112,78,64,-0.08894809136235554],[112,78,65,-0.08676379039950786],[112,78,66,-0.08538110129664955],[112,78,67,-0.08933651320740277],[112,78,68,-0.09206839951381807],[112,78,69,-0.09243488586951525],[112,78,70,-0.090088760150098],[112,78,71,-0.09167719665926197],[112,78,72,-0.10137730540607778],[112,78,73,-0.1049214696116864],[112,78,74,-0.10609176680091721],[112,78,75,-0.1108794400948361],[112,78,76,-0.11273759056655352],[112,78,77,-0.11554646311831664],[112,78,78,-0.119582626900194],[112,78,79,-0.12013689708400385],[112,79,64,-0.08146248860248186],[112,79,65,-0.08031982896857713],[112,79,66,-0.07836987561777632],[112,79,67,-0.08232012165743675],[112,79,68,-0.08401398432193813],[112,79,69,-0.08605466844069751],[112,79,70,-0.08433427156518182],[112,79,71,-0.08512745202375213],[112,79,72,-0.09348404951106035],[112,79,73,-0.09726485338468284],[112,79,74,-0.10066882435171151],[112,79,75,-0.10150640468826116],[112,79,76,-0.10597508094858595],[112,79,77,-0.10855416615563804],[112,79,78,-0.11149949018403138],[112,79,79,-0.11325792960819075],[112,80,64,-0.08717311537805682],[112,80,65,-0.08458752673251434],[112,80,66,-0.0819678783943976],[112,80,67,-0.08496526456716236],[112,80,68,-0.08829967410299888],[112,80,69,-0.08908783476133456],[112,80,70,-0.08806644201303608],[112,80,71,-0.08972056585220849],[112,80,72,-0.09508030156986254],[112,80,73,-0.09765822263749244],[112,80,74,-0.1015634748041633],[112,80,75,-0.1040576178819373],[112,80,76,-0.10901652450439941],[112,80,77,-0.1112922824594931],[112,80,78,-0.11584549517332338],[112,80,79,-0.11779512664500728],[112,81,64,-0.08987400029575049],[112,81,65,-0.0884551155810766],[112,81,66,-0.08735659435823986],[112,81,67,-0.08518694369465353],[112,81,68,-0.09005005256167989],[112,81,69,-0.09080072267870525],[112,81,70,-0.08893504015957748],[112,81,71,-0.08901341043529001],[112,81,72,-0.08950060986261338],[112,81,73,-0.09029662864939943],[112,81,74,-0.09287769615492356],[112,81,75,-0.09537073951660813],[112,81,76,-0.10259785378685915],[112,81,77,-0.11106939680883529],[112,81,78,-0.12174568826126181],[112,81,79,-0.12723300712190255],[112,82,64,-0.099562906920136],[112,82,65,-0.09662360923783941],[112,82,66,-0.09685250833446607],[112,82,67,-0.09365953112314149],[112,82,68,-0.09782611859775049],[112,82,69,-0.1006351351548491],[112,82,70,-0.09918931807023722],[112,82,71,-0.09874100992533526],[112,82,72,-0.09683678953657082],[112,82,73,-0.0976503128184624],[112,82,74,-0.10014106409361563],[112,82,75,-0.1008506082728127],[112,82,76,-0.1085672959939249],[112,82,77,-0.11796517086324557],[112,82,78,-0.12884900954767833],[112,82,79,-0.13132661210267282],[112,83,64,-0.10384016497312493],[112,83,65,-0.101099138920286],[112,83,66,-0.10128093253685516],[112,83,67,-0.09584168880793442],[112,83,68,-0.10192409923163105],[112,83,69,-0.10286812756257331],[112,83,70,-0.1029024220187158],[112,83,71,-0.1033439923805306],[112,83,72,-0.09915370655066401],[112,83,73,-0.09818963914204333],[112,83,74,-0.10061255704164085],[112,83,75,-0.10313846551505901],[112,83,76,-0.11146304580294925],[112,83,77,-0.12197612865423177],[112,83,78,-0.1325766162132112],[112,83,79,-0.13499267240534435],[112,84,64,-0.10361758383537942],[112,84,65,-0.10168064191659955],[112,84,66,-0.10062495528764172],[112,84,67,-0.09825950277300162],[112,84,68,-0.1008828791551018],[112,84,69,-0.1045499012754752],[112,84,70,-0.10298875044294029],[112,84,71,-0.10428770573006121],[112,84,72,-0.100422897531152],[112,84,73,-0.09783119123511388],[112,84,74,-0.10300491975540423],[112,84,75,-0.1049307842873381],[112,84,76,-0.11474518702480853],[112,84,77,-0.12384751295247334],[112,84,78,-0.13359248124442175],[112,84,79,-0.13825563176265462],[112,85,64,-0.10049107825636595],[112,85,65,-0.10005624481078568],[112,85,66,-0.10008913076239259],[112,85,67,-0.10332103812801127],[112,85,68,-0.10397278719821797],[112,85,69,-0.10893504328989617],[112,85,70,-0.10772819421962182],[112,85,71,-0.1123001714160847],[112,85,72,-0.1126596199609109],[112,85,73,-0.10999615945682062],[112,85,74,-0.11775549886949321],[112,85,75,-0.12053959974451395],[112,85,76,-0.12479612915099153],[112,85,77,-0.12663158210635364],[112,85,78,-0.1294399865149454],[112,85,79,-0.12899095865259233],[112,86,64,-0.09891917056148598],[112,86,65,-0.09842711851700091],[112,86,66,-0.10001998180986832],[112,86,67,-0.10518600437188373],[112,86,68,-0.10744904889510232],[112,86,69,-0.10982138266983502],[112,86,70,-0.11080258493096505],[112,86,71,-0.11639865031281882],[112,86,72,-0.11513560531478198],[112,86,73,-0.1148006106911317],[112,86,74,-0.11923073590487046],[112,86,75,-0.1251307420019361],[112,86,76,-0.12984459495728348],[112,86,77,-0.12966846182051248],[112,86,78,-0.13066601980538078],[112,86,79,-0.13189335209685815],[112,87,64,-0.08819808985369208],[112,87,65,-0.08888642206443523],[112,87,66,-0.0932005590079329],[112,87,67,-0.09664730442353944],[112,87,68,-0.09876203753813631],[112,87,69,-0.1009141326677761],[112,87,70,-0.10346534404353847],[112,87,71,-0.10843708160058747],[112,87,72,-0.10790569383917682],[112,87,73,-0.10875545121164346],[112,87,74,-0.112929601571269],[112,87,75,-0.118916359133025],[112,87,76,-0.12425265907892674],[112,87,77,-0.12332739960757971],[112,87,78,-0.12387774914955266],[112,87,79,-0.12597966102773983],[112,88,64,-0.08915216844835787],[112,88,65,-0.09147529323960853],[112,88,66,-0.09510975121167357],[112,88,67,-0.09930793581276856],[112,88,68,-0.10014879338781817],[112,88,69,-0.0996006313596168],[112,88,70,-0.10383478572861854],[112,88,71,-0.10829359979567191],[112,88,72,-0.10950672652568036],[112,88,73,-0.10840822211593254],[112,88,74,-0.11627106730200548],[112,88,75,-0.12329952133418726],[112,88,76,-0.12892943707078247],[112,88,77,-0.12644480123898427],[112,88,78,-0.12790518477569174],[112,88,79,-0.1301277660517045],[112,89,64,-0.0927752852386109],[112,89,65,-0.09412319180340586],[112,89,66,-0.09550157572981463],[112,89,67,-0.09921413662933025],[112,89,68,-0.10122805801605773],[112,89,69,-0.10142906153338076],[112,89,70,-0.10599496925537785],[112,89,71,-0.10625439843006339],[112,89,72,-0.10924498891621204],[112,89,73,-0.11030144044433934],[112,89,74,-0.1189645230936029],[112,89,75,-0.12467755592413027],[112,89,76,-0.13040496463495155],[112,89,77,-0.13210749511831296],[112,89,78,-0.13105958539858234],[112,89,79,-0.13330532016203608],[112,90,64,-0.10015344976555417],[112,90,65,-0.09967902963242796],[112,90,66,-0.10197403085211126],[112,90,67,-0.10413598306476018],[112,90,68,-0.10767060279951626],[112,90,69,-0.1084067554196933],[112,90,70,-0.11054698267688828],[112,90,71,-0.11317897499216051],[112,90,72,-0.1153856575258206],[112,90,73,-0.11627425862657545],[112,90,74,-0.12857368482935586],[112,90,75,-0.13247927224851844],[112,90,76,-0.13766319012733544],[112,90,77,-0.14300510176470227],[112,90,78,-0.1416955506263492],[112,90,79,-0.14379172628095532],[112,91,64,-0.09907333220852466],[112,91,65,-0.10114923441068634],[112,91,66,-0.10331938627076742],[112,91,67,-0.1039764560941043],[112,91,68,-0.10766844211417405],[112,91,69,-0.10843303091545171],[112,91,70,-0.11006614549888125],[112,91,71,-0.1154473785274292],[112,91,72,-0.11941759242804284],[112,91,73,-0.12324712667154912],[112,91,74,-0.13024617304582564],[112,91,75,-0.136696120513489],[112,91,76,-0.14053818955597938],[112,91,77,-0.14742997613839956],[112,91,78,-0.14907311816963487],[112,91,79,-0.15213764443296865],[112,92,64,-0.09861407457905194],[112,92,65,-0.10091120779905942],[112,92,66,-0.10124226980255381],[112,92,67,-0.10336820642400074],[112,92,68,-0.10814758553487834],[112,92,69,-0.11173614276923642],[112,92,70,-0.1154059848532946],[112,92,71,-0.11684567191019951],[112,92,72,-0.12397166908845075],[112,92,73,-0.12959766930424624],[112,92,74,-0.13176673032997116],[112,92,75,-0.14065836935735004],[112,92,76,-0.14335813954930296],[112,92,77,-0.15362911667091772],[112,92,78,-0.16069009434763787],[112,92,79,-0.16309848718841394],[112,93,64,-0.10219835036114822],[112,93,65,-0.10392918614521202],[112,93,66,-0.10231988716635496],[112,93,67,-0.10478571815080606],[112,93,68,-0.11001907656431631],[112,93,69,-0.11491940635483404],[112,93,70,-0.11696371806635836],[112,93,71,-0.11616987396057771],[112,93,72,-0.11746967500349081],[112,93,73,-0.11991351516603221],[112,93,74,-0.12302172927593748],[112,93,75,-0.13092274638496137],[112,93,76,-0.13928386596527104],[112,93,77,-0.15316907026359441],[112,93,78,-0.1686373407027241],[112,93,79,-0.1778102655778127],[112,94,64,-0.10009758665293822],[112,94,65,-0.10199191251418012],[112,94,66,-0.1031047815982067],[112,94,67,-0.1081851410031539],[112,94,68,-0.11383340950972873],[112,94,69,-0.11542072366910425],[112,94,70,-0.1146254690186088],[112,94,71,-0.11530615110542496],[112,94,72,-0.11841058582718196],[112,94,73,-0.1206801411474106],[112,94,74,-0.12572237003671743],[112,94,75,-0.1302812903375858],[112,94,76,-0.14057284137840637],[112,94,77,-0.15579097981766732],[112,94,78,-0.1694005210113838],[112,94,79,-0.179199323418322],[112,95,64,-0.08838820688957529],[112,95,65,-0.09013430540819778],[112,95,66,-0.09304874991157708],[112,95,67,-0.10123329623220696],[112,95,68,-0.10757078944650236],[112,95,69,-0.10920368362317849],[112,95,70,-0.1057044751927361],[112,95,71,-0.10702672114794509],[112,95,72,-0.11043407594053355],[112,95,73,-0.11302205123594913],[112,95,74,-0.12066629763969414],[112,95,75,-0.1249996556789393],[112,95,76,-0.13754817933270702],[112,95,77,-0.1515333881908172],[112,95,78,-0.16388260575099037],[112,95,79,-0.17374291744958498],[112,96,64,-0.08633085985732229],[112,96,65,-0.08842320336968211],[112,96,66,-0.09420836758039934],[112,96,67,-0.10288809871978732],[112,96,68,-0.10565891696086677],[112,96,69,-0.10765640094472045],[112,96,70,-0.10695635107472368],[112,96,71,-0.1080155991531283],[112,96,72,-0.11094133680434153],[112,96,73,-0.11636749575618574],[112,96,74,-0.12201943155303176],[112,96,75,-0.1289022295373397],[112,96,76,-0.14099919778957193],[112,96,77,-0.15568679893218187],[112,96,78,-0.16655539271291098],[112,96,79,-0.17501790883028992],[112,97,64,-0.08333594455744901],[112,97,65,-0.08703849926017737],[112,97,66,-0.09203906731019623],[112,97,67,-0.09966861747971077],[112,97,68,-0.10149305868561405],[112,97,69,-0.10488371685932285],[112,97,70,-0.11007957379664524],[112,97,71,-0.11479139133408547],[112,97,72,-0.11980088216786791],[112,97,73,-0.12704525080124168],[112,97,74,-0.13409904403665057],[112,97,75,-0.1436686025854823],[112,97,76,-0.1512672557685576],[112,97,77,-0.15830185171234218],[112,97,78,-0.162479865736182],[112,97,79,-0.16769088449787364],[112,98,64,-0.09211328032220059],[112,98,65,-0.09556793589622825],[112,98,66,-0.09934156127719931],[112,98,67,-0.10421750727035739],[112,98,68,-0.10734785428675364],[112,98,69,-0.1112023909353816],[112,98,70,-0.11932583348669507],[112,98,71,-0.12509944067829923],[112,98,72,-0.12798100517969863],[112,98,73,-0.13396456388733669],[112,98,74,-0.1410525709591835],[112,98,75,-0.1524481774519734],[112,98,76,-0.15858087018050324],[112,98,77,-0.1649061676191166],[112,98,78,-0.16581773443816145],[112,98,79,-0.1719072092578207],[112,99,64,-0.09293409574415107],[112,99,65,-0.09487323214968224],[112,99,66,-0.09906804973192249],[112,99,67,-0.10359635268676895],[112,99,68,-0.11070866790027661],[112,99,69,-0.11373424819775213],[112,99,70,-0.12177330164304358],[112,99,71,-0.12609915826093435],[112,99,72,-0.13005835359921755],[112,99,73,-0.13710723628132937],[112,99,74,-0.14663663107258196],[112,99,75,-0.15688068291976892],[112,99,76,-0.16355321412790763],[112,99,77,-0.1656529835799358],[112,99,78,-0.16689706602987042],[112,99,79,-0.16939173698749466],[112,100,64,-0.034823070975870896],[112,100,65,-0.038129771003106216],[112,100,66,-0.03985343271073481],[112,100,67,-0.045955747419248925],[112,100,68,-0.0514373677844948],[112,100,69,-0.054574755098087915],[112,100,70,-0.058582081291381705],[112,100,71,-0.06338110941426478],[112,100,72,-0.07134171685441434],[112,100,73,-0.07735865024280487],[112,100,74,-0.08952423760910419],[112,100,75,-0.09652489764201433],[112,100,76,-0.10441139806177577],[112,100,77,-0.10570405710145431],[112,100,78,-0.10716805343494812],[112,100,79,-0.10750525374524003],[112,101,64,-0.03490917765284547],[112,101,65,-0.03972340261071243],[112,101,66,-0.04295581323096617],[112,101,67,-0.04994364355296402],[112,101,68,-0.05288174072980116],[112,101,69,-0.05452783565190218],[112,101,70,-0.05725740850664077],[112,101,71,-0.06435232075613624],[112,101,72,-0.07450293326834297],[112,101,73,-0.0814919248870754],[112,101,74,-0.09014460545518288],[112,101,75,-0.09802506966203153],[112,101,76,-0.10465143315461663],[112,101,77,-0.10789407950745439],[112,101,78,-0.10819204210056872],[112,101,79,-0.10654098134915943],[112,102,64,-0.03456997483574716],[112,102,65,-0.04045096927727112],[112,102,66,-0.0470380684748912],[112,102,67,-0.052579905345793015],[112,102,68,-0.0530895691378669],[112,102,69,-0.05576504630010425],[112,102,70,-0.056993208498544536],[112,102,71,-0.06627481936525532],[112,102,72,-0.07474183999821954],[112,102,73,-0.08403925827313818],[112,102,74,-0.09402466026303646],[112,102,75,-0.09949534842679031],[112,102,76,-0.10623164794717355],[112,102,77,-0.10807232209206184],[112,102,78,-0.110173468604643],[112,102,79,-0.10963433647309516],[112,103,64,-0.027685186103988513],[112,103,65,-0.03387711265635542],[112,103,66,-0.040641155727747645],[112,103,67,-0.046873203856794346],[112,103,68,-0.047481368413461046],[112,103,69,-0.05278009183775231],[112,103,70,-0.051453817742695],[112,103,71,-0.06057189033079617],[112,103,72,-0.06590952112204752],[112,103,73,-0.07975747922891252],[112,103,74,-0.08888008315392479],[112,103,75,-0.09504137294800062],[112,103,76,-0.09957375062535456],[112,103,77,-0.10289474616624938],[112,103,78,-0.10605050995011364],[112,103,79,-0.10939236011206571],[112,104,64,-0.033022559094048304],[112,104,65,-0.039582778288061976],[112,104,66,-0.04389186579627371],[112,104,67,-0.04758171831492056],[112,104,68,-0.052115929072642536],[112,104,69,-0.05655625577576251],[112,104,70,-0.057921265921905773],[112,104,71,-0.06095397400053172],[112,104,72,-0.0692366760691121],[112,104,73,-0.08243764664728966],[112,104,74,-0.09047678193711362],[112,104,75,-0.09453474037653345],[112,104,76,-0.09996362996419235],[112,104,77,-0.10605813113543328],[112,104,78,-0.10922877963583025],[112,104,79,-0.11121473162624321],[112,105,64,-0.03682024855902223],[112,105,65,-0.040945160699435885],[112,105,66,-0.042717516588062436],[112,105,67,-0.04500939457448477],[112,105,68,-0.05169521141016836],[112,105,69,-0.05538584586863719],[112,105,70,-0.05676460416151789],[112,105,71,-0.05833279475348429],[112,105,72,-0.06589171107241344],[112,105,73,-0.0772913578972646],[112,105,74,-0.08287164106319608],[112,105,75,-0.08807033613760407],[112,105,76,-0.09661045723206171],[112,105,77,-0.10451587034309641],[112,105,78,-0.11045369424682339],[112,105,79,-0.11508660234338294],[112,106,64,-0.045871025992962326],[112,106,65,-0.048790673464945235],[112,106,66,-0.053958696833500436],[112,106,67,-0.05383365210190738],[112,106,68,-0.058696672966190674],[112,106,69,-0.06268626230243464],[112,106,70,-0.06317188832792894],[112,106,71,-0.0674869885310617],[112,106,72,-0.07083800652032649],[112,106,73,-0.08358309472447527],[112,106,74,-0.09070561836275953],[112,106,75,-0.09610034368905002],[112,106,76,-0.1029799155541701],[112,106,77,-0.10736667602357719],[112,106,78,-0.11461520313185253],[112,106,79,-0.12016246211454487],[112,107,64,-0.046466458495710176],[112,107,65,-0.052800509074332175],[112,107,66,-0.057673892273387595],[112,107,67,-0.05794242715818331],[112,107,68,-0.06106983262331829],[112,107,69,-0.06660194725574095],[112,107,70,-0.0680081595413623],[112,107,71,-0.06961262743842869],[112,107,72,-0.07197947772956186],[112,107,73,-0.08518502731096564],[112,107,74,-0.09446396569257201],[112,107,75,-0.09783795678849741],[112,107,76,-0.10209445325129243],[112,107,77,-0.11186244170629349],[112,107,78,-0.11618580391158279],[112,107,79,-0.12211912324016455],[112,108,64,-0.04777673803168058],[112,108,65,-0.05359440051881647],[112,108,66,-0.060706362290876704],[112,108,67,-0.06502691714314174],[112,108,68,-0.06729982850321053],[112,108,69,-0.07182787616976496],[112,108,70,-0.07410419313103372],[112,108,71,-0.0763860210376137],[112,108,72,-0.08257912055701977],[112,108,73,-0.09330789092918162],[112,108,74,-0.10298484774870287],[112,108,75,-0.10507928059597135],[112,108,76,-0.10707329521884122],[112,108,77,-0.11651102349489997],[112,108,78,-0.12326603780289072],[112,108,79,-0.1260941377534109],[112,109,64,-0.051373581282526275],[112,109,65,-0.059572255596340044],[112,109,66,-0.06665298347753941],[112,109,67,-0.07384518604732243],[112,109,68,-0.07685292813167814],[112,109,69,-0.08172992666128516],[112,109,70,-0.0824026217085753],[112,109,71,-0.08759931958108969],[112,109,72,-0.09681939598581929],[112,109,73,-0.10519666208858412],[112,109,74,-0.11107585436103287],[112,109,75,-0.11640526568438896],[112,109,76,-0.11445705878051585],[112,109,77,-0.11835558425413885],[112,109,78,-0.12163170548951556],[112,109,79,-0.12315756209775672],[112,110,64,-0.05180591282738133],[112,110,65,-0.06015491743163822],[112,110,66,-0.06698229700798006],[112,110,67,-0.07548184170770349],[112,110,68,-0.08065562592757906],[112,110,69,-0.08202922239953506],[112,110,70,-0.0851472476911482],[112,110,71,-0.08990193567617079],[112,110,72,-0.09934555635494946],[112,110,73,-0.10800906040861516],[112,110,74,-0.11411237557722392],[112,110,75,-0.1196244125275005],[112,110,76,-0.11914942741850754],[112,110,77,-0.1187779276511511],[112,110,78,-0.12233867816012703],[112,110,79,-0.12279852366850627],[112,111,64,-0.04541375352184415],[112,111,65,-0.05571845169687],[112,111,66,-0.06100984604602887],[112,111,67,-0.07022705861782788],[112,111,68,-0.07374841906665636],[112,111,69,-0.07736007127923307],[112,111,70,-0.08277972766401148],[112,111,71,-0.0881078449883211],[112,111,72,-0.09783013625154918],[112,111,73,-0.1048727463630266],[112,111,74,-0.11000224868266449],[112,111,75,-0.1157318703562801],[112,111,76,-0.1184547847561031],[112,111,77,-0.11586414514733787],[112,111,78,-0.12029169328653051],[112,111,79,-0.12136851774903609],[112,112,64,-0.04924865156635927],[112,112,65,-0.055624149680958634],[112,112,66,-0.0638738059288442],[112,112,67,-0.0741999934641405],[112,112,68,-0.07544899735164863],[112,112,69,-0.07707788407404478],[112,112,70,-0.0860117132824978],[112,112,71,-0.09426998277166168],[112,112,72,-0.09999083498980038],[112,112,73,-0.1070237771710332],[112,112,74,-0.11034394281277116],[112,112,75,-0.11499783128872634],[112,112,76,-0.12096772488184633],[112,112,77,-0.12098399504114049],[112,112,78,-0.11958787967608145],[112,112,79,-0.1229451462252521],[112,113,64,-0.04762419967671488],[112,113,65,-0.05489582676405264],[112,113,66,-0.06593449752442514],[112,113,67,-0.07593788764249472],[112,113,68,-0.07803278984416645],[112,113,69,-0.07971604494127499],[112,113,70,-0.08708263766700414],[112,113,71,-0.09599433666384553],[112,113,72,-0.1009121795384604],[112,113,73,-0.10584267132721183],[112,113,74,-0.1119293009354005],[112,113,75,-0.11652508139993956],[112,113,76,-0.12436670131340585],[112,113,77,-0.12325267611901602],[112,113,78,-0.12037423756986446],[112,113,79,-0.12275600230918532],[112,114,64,-0.05282993402071211],[112,114,65,-0.06306693387327535],[112,114,66,-0.07136216550858968],[112,114,67,-0.08284896915781703],[112,114,68,-0.0866990941764559],[112,114,69,-0.08554537048147075],[112,114,70,-0.09276237279865021],[112,114,71,-0.10113164961364834],[112,114,72,-0.10713270935726191],[112,114,73,-0.1130033022211624],[112,114,74,-0.11850849621643672],[112,114,75,-0.12295370134633937],[112,114,76,-0.12858920619803854],[112,114,77,-0.13074210925282445],[112,114,78,-0.12695420942077393],[112,114,79,-0.1255961156557424],[112,115,64,-0.05237288985895634],[112,115,65,-0.061444835401481795],[112,115,66,-0.07109266913103504],[112,115,67,-0.0832287361864053],[112,115,68,-0.08661437068734083],[112,115,69,-0.08867463194817742],[112,115,70,-0.09493827042845353],[112,115,71,-0.10177389131123356],[112,115,72,-0.10878608244230793],[112,115,73,-0.11398899687831862],[112,115,74,-0.11732313020215196],[112,115,75,-0.12553189078861363],[112,115,76,-0.12690770765846332],[112,115,77,-0.1306102679469765],[112,115,78,-0.1314030076169365],[112,115,79,-0.12638232010223382],[112,116,64,-0.0496437741768841],[112,116,65,-0.05679653059105519],[112,116,66,-0.06383700689339503],[112,116,67,-0.07341145442016252],[112,116,68,-0.07946570172303072],[112,116,69,-0.07895285427234125],[112,116,70,-0.08506860456795327],[112,116,71,-0.09108808457751635],[112,116,72,-0.09764076492488573],[112,116,73,-0.10387267571122524],[112,116,74,-0.10887055189523004],[112,116,75,-0.11548535622410225],[112,116,76,-0.11668516833053183],[112,116,77,-0.11989127472048894],[112,116,78,-0.12383524943159212],[112,116,79,-0.12087302045237439],[112,117,64,-0.05517234621200866],[112,117,65,-0.059218686255072386],[112,117,66,-0.06697913897805197],[112,117,67,-0.07523241410962869],[112,117,68,-0.07889089940838334],[112,117,69,-0.08323992196242262],[112,117,70,-0.08838629831314337],[112,117,71,-0.09415390128543401],[112,117,72,-0.09880498575363693],[112,117,73,-0.10114866638620015],[112,117,74,-0.1075427828159378],[112,117,75,-0.1099453202124259],[112,117,76,-0.11042813417546479],[112,117,77,-0.11294908363909197],[112,117,78,-0.11783267750678458],[112,117,79,-0.11607364116570938],[112,118,64,-0.05637722537299527],[112,118,65,-0.06100873432426244],[112,118,66,-0.06888163783453448],[112,118,67,-0.0759557444772169],[112,118,68,-0.08114946291439168],[112,118,69,-0.08546191638771852],[112,118,70,-0.08911527115756676],[112,118,71,-0.09537438221046174],[112,118,72,-0.10098268370500905],[112,118,73,-0.1033988505643923],[112,118,74,-0.10996074867763045],[112,118,75,-0.11028892520586273],[112,118,76,-0.1114924914753017],[112,118,77,-0.11332020878361058],[112,118,78,-0.11846193583475303],[112,118,79,-0.11801629271624031],[112,119,64,-0.047664882044926755],[112,119,65,-0.05400463652078635],[112,119,66,-0.06163467663835063],[112,119,67,-0.06855709095904719],[112,119,68,-0.07429696183498136],[112,119,69,-0.07977572952831834],[112,119,70,-0.08390364025609758],[112,119,71,-0.09078631626333539],[112,119,72,-0.09802410936862106],[112,119,73,-0.10053064321520684],[112,119,74,-0.10713402139444916],[112,119,75,-0.10942363463631147],[112,119,76,-0.11109483534002038],[112,119,77,-0.11269496178458005],[112,119,78,-0.11888112319337557],[112,119,79,-0.11900817225363056],[112,120,64,-0.046966634373018804],[112,120,65,-0.056027671216481695],[112,120,66,-0.06223251477537053],[112,120,67,-0.06794982187331658],[112,120,68,-0.07482126182236362],[112,120,69,-0.07982110844335641],[112,120,70,-0.08378722193200963],[112,120,71,-0.09085458636197784],[112,120,72,-0.09848193246886236],[112,120,73,-0.10324039441345893],[112,120,74,-0.10895969591524549],[112,120,75,-0.10983487359444098],[112,120,76,-0.11154794871425366],[112,120,77,-0.1132226495777614],[112,120,78,-0.12020579957410399],[112,120,79,-0.12226185809087498],[112,121,64,-0.043789705013998],[112,121,65,-0.05417941250980421],[112,121,66,-0.061721780761169506],[112,121,67,-0.06470582152833185],[112,121,68,-0.07165782646175671],[112,121,69,-0.07682675829986765],[112,121,70,-0.0833888199113301],[112,121,71,-0.09316124815478988],[112,121,72,-0.10089089080576848],[112,121,73,-0.11131775495023434],[112,121,74,-0.11463273430272099],[112,121,75,-0.1133422820126765],[112,121,76,-0.11671010143227392],[112,121,77,-0.12036607111122072],[112,121,78,-0.1296597764689693],[112,121,79,-0.1426257970046275],[112,122,64,-0.049586678760948674],[112,122,65,-0.05816291089547679],[112,122,66,-0.06919564160766527],[112,122,67,-0.07310877243338681],[112,122,68,-0.07661260188413188],[112,122,69,-0.08484513283122969],[112,122,70,-0.09232939125162964],[112,122,71,-0.1005005200770463],[112,122,72,-0.10824435020106186],[112,122,73,-0.11934365936324165],[112,122,74,-0.11954662276774491],[112,122,75,-0.11736806429349292],[112,122,76,-0.12081677198579821],[112,122,77,-0.12794023727285345],[112,122,78,-0.13735738759560212],[112,122,79,-0.1448932550326825],[112,123,64,-0.04961196471308002],[112,123,65,-0.05995314304533633],[112,123,66,-0.07083913344581183],[112,123,67,-0.07446797374334045],[112,123,68,-0.07974945746863925],[112,123,69,-0.08753471497499253],[112,123,70,-0.09694570601333849],[112,123,71,-0.10461679954660677],[112,123,72,-0.11152022004735035],[112,123,73,-0.11968025628991208],[112,123,74,-0.11708130777837827],[112,123,75,-0.11965811290128114],[112,123,76,-0.12355410599999568],[112,123,77,-0.1320844845981926],[112,123,78,-0.14145148883394998],[112,123,79,-0.15950241750663577],[112,124,64,-0.04359936803453125],[112,124,65,-0.06013319795908451],[112,124,66,-0.0735591254365268],[112,124,67,-0.08021453577095256],[112,124,68,-0.0872156799715232],[112,124,69,-0.09455275182675865],[112,124,70,-0.10534692003290563],[112,124,71,-0.11281962036282984],[112,124,72,-0.11853674911144696],[112,124,73,-0.12734918923799715],[112,124,74,-0.1271453499550923],[112,124,75,-0.12789805441420604],[112,124,76,-0.13352437242986354],[112,124,77,-0.14187581920308578],[112,124,78,-0.14809997496682403],[112,124,79,-0.16859243733541873],[112,125,64,-0.045464540749993315],[112,125,65,-0.06287605422955697],[112,125,66,-0.07817476143596994],[112,125,67,-0.08542056440889276],[112,125,68,-0.08967685652743068],[112,125,69,-0.09818809384108984],[112,125,70,-0.10753006250518252],[112,125,71,-0.11559600804447924],[112,125,72,-0.1213089631680549],[112,125,73,-0.12855213884072358],[112,125,74,-0.12775077252903627],[112,125,75,-0.1279771802577803],[112,125,76,-0.13425791767758513],[112,125,77,-0.1415738026699517],[112,125,78,-0.1548072822157063],[112,125,79,-0.17531300284394205],[112,126,64,-0.04672747001842367],[112,126,65,-0.0651683735215678],[112,126,66,-0.08002483284043282],[112,126,67,-0.0895845529126583],[112,126,68,-0.0924728386131149],[112,126,69,-0.10098534227498447],[112,126,70,-0.11203025345732176],[112,126,71,-0.11851927584756786],[112,126,72,-0.12449946285827837],[112,126,73,-0.128735394158629],[112,126,74,-0.12901509262663235],[112,126,75,-0.13091750218525716],[112,126,76,-0.1367512021513418],[112,126,77,-0.14309364250818812],[112,126,78,-0.19023641015308837],[112,126,79,-0.22053090781727497],[112,127,64,-0.041226323289946715],[112,127,65,-0.05695884991593585],[112,127,66,-0.07234912753725314],[112,127,67,-0.08313000211840194],[112,127,68,-0.09152989996187462],[112,127,69,-0.10025828345233448],[112,127,70,-0.11291921720411466],[112,127,71,-0.11872484977984404],[112,127,72,-0.12483032853206384],[112,127,73,-0.1262605310231139],[112,127,74,-0.12808616135124856],[112,127,75,-0.1329751957284812],[112,127,76,-0.14023351678757776],[112,127,77,-0.14451741126810358],[112,127,78,-0.16674507675807296],[112,127,79,-0.20287094979158454],[112,128,64,-0.0432328798109307],[112,128,65,-0.0574290749681085],[112,128,66,-0.07022963801278902],[112,128,67,-0.08324069222310726],[112,128,68,-0.09545654885471977],[112,128,69,-0.10443732124307642],[112,128,70,-0.11647483367889094],[112,128,71,-0.12356054441457784],[112,128,72,-0.1273456938475324],[112,128,73,-0.12597831950342242],[112,128,74,-0.1301293378292198],[112,128,75,-0.13470731872212305],[112,128,76,-0.14109469275469633],[112,128,77,-0.144509082713469],[112,128,78,-0.16909462256818342],[112,128,79,-0.22097996992255906],[112,129,64,-0.04251039684563861],[112,129,65,-0.05814563297694972],[112,129,66,-0.07129127584598471],[112,129,67,-0.08913815702868765],[112,129,68,-0.10342433851878963],[112,129,69,-0.11419543205840349],[112,129,70,-0.12259226135657034],[112,129,71,-0.12803867412373965],[112,129,72,-0.1268346952571684],[112,129,73,-0.12553094840817805],[112,129,74,-0.13117180037820986],[112,129,75,-0.131965074179224],[112,129,76,-0.13584103739930184],[112,129,77,-0.13770422283441824],[112,129,78,-0.14168613097543814],[112,129,79,-0.1891517654181929],[112,130,64,-0.05039805420567686],[112,130,65,-0.06577022984530281],[112,130,66,-0.07905319808172315],[112,130,67,-0.09702079948734359],[112,130,68,-0.11021927006047184],[112,130,69,-0.12214577010598354],[112,130,70,-0.1300510911455866],[112,130,71,-0.13307827883185575],[112,130,72,-0.14626679981296373],[112,130,73,-0.17593020454573138],[112,130,74,-0.19216297451041664],[112,130,75,-0.21637834220835997],[112,130,76,-0.2573579334000821],[112,130,77,-0.27403875708402303],[112,130,78,-0.2812191729262351],[112,130,79,-0.287234862631906],[112,131,64,-0.05509276481684824],[112,131,65,-0.06897114683353614],[112,131,66,-0.08229423731220642],[112,131,67,-0.09883809099021304],[112,131,68,-0.11147952456369334],[112,131,69,-0.12337086338217342],[112,131,70,-0.13000908712473408],[112,131,71,-0.1407532656957706],[112,131,72,-0.1629005225650395],[112,131,73,-0.1949792945154285],[112,131,74,-0.2256938117108035],[112,131,75,-0.24006501891140317],[112,131,76,-0.2694348306024248],[112,131,77,-0.27024872472023775],[112,131,78,-0.27772737274853565],[112,131,79,-0.28293697391011097],[112,132,64,-0.04448316791464226],[112,132,65,-0.06209451146072177],[112,132,66,-0.0791713138584349],[112,132,67,-0.09532871208871357],[112,132,68,-0.11119127688420508],[112,132,69,-0.12286699278093188],[112,132,70,-0.13221360178765534],[112,132,71,-0.14693390887364144],[112,132,72,-0.16760636674499824],[112,132,73,-0.19947736263790405],[112,132,74,-0.2310448723269829],[112,132,75,-0.2473569035291751],[112,132,76,-0.26620419787228633],[112,132,77,-0.2675301903038766],[112,132,78,-0.27120523599404667],[112,132,79,-0.2778122058891114],[112,133,64,-0.05590967740991914],[112,133,65,-0.06008300101809293],[112,133,66,-0.07872608685846888],[112,133,67,-0.08983583156391464],[112,133,68,-0.10470044809914274],[112,133,69,-0.11651072568850741],[112,133,70,-0.1281372557529522],[112,133,71,-0.13510918130715613],[112,133,72,-0.15146136134307878],[112,133,73,-0.17914750094863408],[112,133,74,-0.20727538025889825],[112,133,75,-0.22524887559338957],[112,133,76,-0.25941320284408925],[112,133,77,-0.26096109980855753],[112,133,78,-0.26196822257237584],[112,133,79,-0.26900741883702134],[112,134,64,-0.05771774561518189],[112,134,65,-0.06109445302234697],[112,134,66,-0.08104392333305176],[112,134,67,-0.09185155405030204],[112,134,68,-0.10701384798162816],[112,134,69,-0.11715082177336243],[112,134,70,-0.12815802491934786],[112,134,71,-0.13249860694983992],[112,134,72,-0.15798379003221885],[112,134,73,-0.18216349252822683],[112,134,74,-0.2061081330933423],[112,134,75,-0.2192245136491728],[112,134,76,-0.2462624086906468],[112,134,77,-0.247487362390544],[112,134,78,-0.249677987675117],[112,134,79,-0.2582257061297698],[112,135,64,-0.03593280787721287],[112,135,65,-0.056768624300329876],[112,135,66,-0.07684754642000588],[112,135,67,-0.08895622998146102],[112,135,68,-0.10285463807741418],[112,135,69,-0.11296928013868851],[112,135,70,-0.12394243303556236],[112,135,71,-0.12886240564908774],[112,135,72,-0.14182817296546263],[112,135,73,-0.16522195028496434],[112,135,74,-0.1830640258522399],[112,135,75,-0.1975560610725855],[112,135,76,-0.23157408625786755],[112,135,77,-0.24168876491887095],[112,135,78,-0.24449745127255942],[112,135,79,-0.2524626694883258],[112,136,64,-0.037837814937679244],[112,136,65,-0.05897453889315486],[112,136,66,-0.07801449691505342],[112,136,67,-0.08793994698549305],[112,136,68,-0.10182581001379294],[112,136,69,-0.11221944231472433],[112,136,70,-0.11982645520389058],[112,136,71,-0.12804096545106916],[112,136,72,-0.14482889608565297],[112,136,73,-0.16960396449741383],[112,136,74,-0.18842599495398288],[112,136,75,-0.2019639208196855],[112,136,76,-0.23517311092006038],[112,136,77,-0.2523769368986213],[112,136,78,-0.2561091569580376],[112,136,79,-0.26171081694771753],[112,137,64,-0.05650194113422299],[112,137,65,-0.0603244275017068],[112,137,66,-0.07832737852563505],[112,137,67,-0.08929979140643976],[112,137,68,-0.10065373472425174],[112,137,69,-0.1100345523754443],[112,137,70,-0.11564143442034819],[112,137,71,-0.12565125454120152],[112,137,72,-0.14060632114273355],[112,137,73,-0.164855464858263],[112,137,74,-0.1791260521860204],[112,137,75,-0.18394080714254346],[112,137,76,-0.20796161265580088],[112,137,77,-0.23789440634768155],[112,137,78,-0.24456826340390286],[112,137,79,-0.25227133486922926],[112,138,64,-0.0476393772371357],[112,138,65,-0.06540689680108568],[112,138,66,-0.08288193192364596],[112,138,67,-0.09636084407148401],[112,138,68,-0.10704607719075586],[112,138,69,-0.11481798853576469],[112,138,70,-0.11807639581191295],[112,138,71,-0.12708284598123848],[112,138,72,-0.1436370635351897],[112,138,73,-0.1571367140902187],[112,138,74,-0.16982028649110234],[112,138,75,-0.1765308302385583],[112,138,76,-0.20239298158348343],[112,138,77,-0.2356470936728539],[112,138,78,-0.251968630550662],[112,138,79,-0.2598251587037349],[112,139,64,-0.046987025361463514],[112,139,65,-0.06546936914929766],[112,139,66,-0.082697835251102],[112,139,67,-0.0953389818778435],[112,139,68,-0.10653665320116129],[112,139,69,-0.11337980747106355],[112,139,70,-0.11780844031690274],[112,139,71,-0.12664539825911858],[112,139,72,-0.1419365982102447],[112,139,73,-0.16171224861548433],[112,139,74,-0.1767555641938723],[112,139,75,-0.18893454625259323],[112,139,76,-0.21637332623129366],[112,139,77,-0.24801809569434977],[112,139,78,-0.25047171125128187],[112,139,79,-0.25733712812850873],[112,140,64,-0.05986294174333716],[112,140,65,-0.07245520404843397],[112,140,66,-0.08608907760907868],[112,140,67,-0.09251526031266115],[112,140,68,-0.10172669279694507],[112,140,69,-0.10465402930319194],[112,140,70,-0.10574374468367843],[112,140,71,-0.1154051414638947],[112,140,72,-0.13009490807817725],[112,140,73,-0.15295398538027008],[112,140,74,-0.1659372055069998],[112,140,75,-0.18827233578990246],[112,140,76,-0.21797094313167903],[112,140,77,-0.24957314862324698],[112,140,78,-0.25148962285940074],[112,140,79,-0.25811771706942693],[112,141,64,-0.06680395781490325],[112,141,65,-0.07814374129321118],[112,141,66,-0.08596060994288383],[112,141,67,-0.08999885622952211],[112,141,68,-0.09830233335713151],[112,141,69,-0.10065215501824211],[112,141,70,-0.10399657267037055],[112,141,71,-0.1290068206055234],[112,141,72,-0.15103427224056248],[112,141,73,-0.1661401332474484],[112,141,74,-0.17446652037594224],[112,141,75,-0.1931064622685724],[112,141,76,-0.21449017377120622],[112,141,77,-0.2410198026835622],[112,141,78,-0.24597511887713566],[112,141,79,-0.2502538347564227],[112,142,64,-0.0673059857925816],[112,142,65,-0.08125232968868303],[112,142,66,-0.087384371267941],[112,142,67,-0.09203671271905459],[112,142,68,-0.09553471073969097],[112,142,69,-0.09893767804842775],[112,142,70,-0.10308209761719737],[112,142,71,-0.12687836758279722],[112,142,72,-0.1512979061182794],[112,142,73,-0.16724136647892598],[112,142,74,-0.17467348484417786],[112,142,75,-0.19415476780133506],[112,142,76,-0.21394132517555375],[112,142,77,-0.23928173924953416],[112,142,78,-0.24568052829384848],[112,142,79,-0.2506571569254675],[112,143,64,-0.062413065597471236],[112,143,65,-0.07724516196120737],[112,143,66,-0.08298141659763429],[112,143,67,-0.0874335944109772],[112,143,68,-0.0883061228188553],[112,143,69,-0.09587062569624145],[112,143,70,-0.0999213880165358],[112,143,71,-0.11369208836656772],[112,143,72,-0.13538226048850416],[112,143,73,-0.1513325783453689],[112,143,74,-0.16102533023941223],[112,143,75,-0.1812390191133855],[112,143,76,-0.19757035023534242],[112,143,77,-0.23344860125760877],[112,143,78,-0.24038917645670357],[112,143,79,-0.2421532976218488],[112,144,64,-0.06450990119198789],[112,144,65,-0.07723709221856655],[112,144,66,-0.08413118854582038],[112,144,67,-0.08820610127852667],[112,144,68,-0.09013587138049048],[112,144,69,-0.0954479444100541],[112,144,70,-0.10265407540242183],[112,144,71,-0.11376927538821249],[112,144,72,-0.1364654620745282],[112,144,73,-0.15145152901948722],[112,144,74,-0.16508910822501888],[112,144,75,-0.18489823617878487],[112,144,76,-0.20239819789467708],[112,144,77,-0.2430551730061854],[112,144,78,-0.24815147085404757],[112,144,79,-0.25087461467226224],[112,145,64,-0.05668260776473923],[112,145,65,-0.07258335483089734],[112,145,66,-0.08310202273579279],[112,145,67,-0.08877179679500058],[112,145,68,-0.09424147396057207],[112,145,69,-0.10036991753565751],[112,145,70,-0.10567808786529007],[112,145,71,-0.1134618663584944],[112,145,72,-0.12588829827039305],[112,145,73,-0.1319258011692731],[112,145,74,-0.13645303265772532],[112,145,75,-0.1402915109978772],[112,145,76,-0.15005404941113967],[112,145,77,-0.1891997201641205],[112,145,78,-0.2167248376268791],[112,145,79,-0.21919030335927786],[112,146,64,-0.059743770153881395],[112,146,65,-0.07779624286686049],[112,146,66,-0.0880918295019863],[112,146,67,-0.0950312558336823],[112,146,68,-0.10089942389600624],[112,146,69,-0.10488594498633252],[112,146,70,-0.10956226613493006],[112,146,71,-0.11697691396050969],[112,146,72,-0.12772724779271344],[112,146,73,-0.13490248143006556],[112,146,74,-0.13718577572756574],[112,146,75,-0.14267356958250188],[112,146,76,-0.14870281964108123],[112,146,77,-0.1838321813960891],[112,146,78,-0.20670809339935375],[112,146,79,-0.21315518685954665],[112,147,64,-0.062221808238639514],[112,147,65,-0.07911357620422846],[112,147,66,-0.0885208456867396],[112,147,67,-0.09635761678137725],[112,147,68,-0.10091826008986396],[112,147,69,-0.10610971292663848],[112,147,70,-0.11202479930442663],[112,147,71,-0.11866460680433408],[112,147,72,-0.12774180714772243],[112,147,73,-0.13445467177521064],[112,147,74,-0.13780336655287345],[112,147,75,-0.14152018929254273],[112,147,76,-0.14203012005179],[112,147,77,-0.10814857923134429],[112,147,78,-0.08357871719050974],[112,147,79,-0.08759952694721736],[112,148,64,-0.04516170989828314],[112,148,65,-0.054525436783335164],[112,148,66,-0.0614153085766635],[112,148,67,-0.0650517795903392],[112,148,68,-0.0663674011789853],[112,148,69,-0.06773283817369874],[112,148,70,-0.07116850664760316],[112,148,71,-0.07344161557001178],[112,148,72,-0.0821260730511582],[112,148,73,-0.08809098958723448],[112,148,74,-0.08886881347368408],[112,148,75,-0.09186059162937088],[112,148,76,-0.08202718445334686],[112,148,77,-0.07051669479924066],[112,148,78,-0.06077178646040987],[112,148,79,-0.07049658000109854],[112,149,64,-0.04632065695586869],[112,149,65,-0.056828962988490744],[112,149,66,-0.06338620064913551],[112,149,67,-0.06720114540402325],[112,149,68,-0.06918415406421946],[112,149,69,-0.0684735456420189],[112,149,70,-0.07101439308182275],[112,149,71,-0.07279911551333404],[112,149,72,-0.080129818933798],[112,149,73,-0.0859256106403269],[112,149,74,-0.08976319730813738],[112,149,75,-0.08917924863444557],[112,149,76,-0.0858470707755886],[112,149,77,-0.07862461043028776],[112,149,78,-0.07519255559112566],[112,149,79,-0.08371912913812839],[112,150,64,-0.0498380050954388],[112,150,65,-0.05807910650164212],[112,150,66,-0.06599316369331643],[112,150,67,-0.0678464780240881],[112,150,68,-0.071321320474985],[112,150,69,-0.07049614088035003],[112,150,70,-0.0702620691511621],[112,150,71,-0.07135242558557477],[112,150,72,-0.07770141138317106],[112,150,73,-0.08558058544478223],[112,150,74,-0.08826766358480648],[112,150,75,-0.08942978828810039],[112,150,76,-0.08583938848073637],[112,150,77,-0.07475981429932332],[112,150,78,-0.07536544419164477],[112,150,79,-0.08295695266382123],[112,151,64,-0.046222346420038314],[112,151,65,-0.05745671604304317],[112,151,66,-0.06410663270936968],[112,151,67,-0.06330680609413573],[112,151,68,-0.06533443331803387],[112,151,69,-0.06781610482910536],[112,151,70,-0.06708726597142192],[112,151,71,-0.0683154858915187],[112,151,72,-0.07733647563802704],[112,151,73,-0.08362158272425456],[112,151,74,-0.0888601229604839],[112,151,75,-0.09115212680070517],[112,151,76,-0.09428518720237726],[112,151,77,-0.08244181962908717],[112,151,78,-0.07866238050661331],[112,151,79,-0.08905363769478969],[112,152,64,-0.05220521706431362],[112,152,65,-0.06098655408982742],[112,152,66,-0.06575632134504182],[112,152,67,-0.06446130768454661],[112,152,68,-0.06545127212603409],[112,152,69,-0.06638036779888751],[112,152,70,-0.0651955718871473],[112,152,71,-0.06916664061360515],[112,152,72,-0.07598117918274004],[112,152,73,-0.08284324496069563],[112,152,74,-0.08804740992776805],[112,152,75,-0.08947583685534244],[112,152,76,-0.09438848134063196],[112,152,77,-0.08596916605809765],[112,152,78,-0.07944212771561511],[112,152,79,-0.08646630867137517],[112,153,64,-0.05867604759013377],[112,153,65,-0.06199592505693538],[112,153,66,-0.06415995933534721],[112,153,67,-0.05699009864365652],[112,153,68,-0.0570310396834309],[112,153,69,-0.05912447762592344],[112,153,70,-0.05955114681711659],[112,153,71,-0.06439784617931486],[112,153,72,-0.07103609888606537],[112,153,73,-0.08300481975492267],[112,153,74,-0.08691721795301936],[112,153,75,-0.09092078843865099],[112,153,76,-0.09236497203550319],[112,153,77,-0.08485863938843283],[112,153,78,-0.07903467063919228],[112,153,79,-0.08100274205582075],[112,154,64,-0.06445868057940107],[112,154,65,-0.06955735954664638],[112,154,66,-0.07011949095305059],[112,154,67,-0.06397297777148922],[112,154,68,-0.06280264478926537],[112,154,69,-0.06539863542443079],[112,154,70,-0.06543648387835438],[112,154,71,-0.06810629920997881],[112,154,72,-0.07490826619418198],[112,154,73,-0.08773936700133761],[112,154,74,-0.09268205902689061],[112,154,75,-0.09812365374229591],[112,154,76,-0.0984068254659233],[112,154,77,-0.09196800130482513],[112,154,78,-0.08862493847390346],[112,154,79,-0.08229707210044418],[112,155,64,-0.06320599872121231],[112,155,65,-0.07036614560625737],[112,155,66,-0.07097626705067597],[112,155,67,-0.06586238784477395],[112,155,68,-0.06200453586964165],[112,155,69,-0.06668089055831257],[112,155,70,-0.06622033039240503],[112,155,71,-0.06799402850444711],[112,155,72,-0.07726272093060912],[112,155,73,-0.09020051244672364],[112,155,74,-0.09328128288379954],[112,155,75,-0.09806298125056331],[112,155,76,-0.09868621781876587],[112,155,77,-0.09452356362305143],[112,155,78,-0.09302194209595493],[112,155,79,-0.08841907258555345],[112,156,64,-0.06499131687777834],[112,156,65,-0.07264765691462255],[112,156,66,-0.0737772536707884],[112,156,67,-0.07026043069818025],[112,156,68,-0.06661987916393233],[112,156,69,-0.06850670642354315],[112,156,70,-0.06823939323226187],[112,156,71,-0.07389242875211971],[112,156,72,-0.08064757712758315],[112,156,73,-0.09148158701792825],[112,156,74,-0.09777632386769977],[112,156,75,-0.10064772553373308],[112,156,76,-0.10114219044482817],[112,156,77,-0.09879818313896374],[112,156,78,-0.09177569855519106],[112,156,79,-0.08629431658119452],[112,157,64,-0.06559729935754946],[112,157,65,-0.07542254605646946],[112,157,66,-0.0805221286414904],[112,157,67,-0.08182511772716422],[112,157,68,-0.08091027771971067],[112,157,69,-0.0807939994910607],[112,157,70,-0.08108003706145657],[112,157,71,-0.08258279733801932],[112,157,72,-0.08436045661853611],[112,157,73,-0.09047594493661819],[112,157,74,-0.0967684635966856],[112,157,75,-0.1016573151029148],[112,157,76,-0.10406990462144888],[112,157,77,-0.10316078674881694],[112,157,78,-0.09289543316395521],[112,157,79,-0.08879702766910011],[112,158,64,-0.06649256536324287],[112,158,65,-0.07570278738964276],[112,158,66,-0.08148418204669716],[112,158,67,-0.08272400579902511],[112,158,68,-0.0847875973494552],[112,158,69,-0.08326182305222801],[112,158,70,-0.08303737170994462],[112,158,71,-0.08632136233353774],[112,158,72,-0.08604568679703231],[112,158,73,-0.09130053562890338],[112,158,74,-0.09737358574631134],[112,158,75,-0.10465142426902002],[112,158,76,-0.10617640899578037],[112,158,77,-0.10626337979128829],[112,158,78,-0.08542937227478649],[112,158,79,-0.08331594820421903],[112,159,64,-0.14395249175691505],[112,159,65,-0.14620891478095985],[112,159,66,-0.14656033387149023],[112,159,67,-0.14288895455216252],[112,159,68,-0.13710117335873673],[112,159,69,-0.12776363781276845],[112,159,70,-0.1210054116085626],[112,159,71,-0.11525276372155055],[112,159,72,-0.10547946503892058],[112,159,73,-0.1010328045623983],[112,159,74,-0.0992434959649304],[112,159,75,-0.09646114536084648],[112,159,76,-0.09060515075120577],[112,159,77,-0.08608338640009974],[112,159,78,-0.06994026008887566],[112,159,79,-0.07061468852887565],[112,160,64,-0.1476305522816737],[112,160,65,-0.14788432465652585],[112,160,66,-0.1459155198068332],[112,160,67,-0.1411412761296896],[112,160,68,-0.13560685251815097],[112,160,69,-0.12906454748667515],[112,160,70,-0.12372872898432558],[112,160,71,-0.11609314683087892],[112,160,72,-0.10835954150400072],[112,160,73,-0.10176966584347968],[112,160,74,-0.10100092233931848],[112,160,75,-0.09593443522268291],[112,160,76,-0.09459629573395921],[112,160,77,-0.08621180364546427],[112,160,78,-0.06846711928832469],[112,160,79,-0.06879536368997574],[112,161,64,-0.14632545458256807],[112,161,65,-0.15039916709612489],[112,161,66,-0.14513646437798833],[112,161,67,-0.14045309974976863],[112,161,68,-0.13499314982310018],[112,161,69,-0.1292682027730526],[112,161,70,-0.12577478511695506],[112,161,71,-0.11696378849075349],[112,161,72,-0.11186967000314228],[112,161,73,-0.10394686968300991],[112,161,74,-0.10120082768868527],[112,161,75,-0.09867186334539754],[112,161,76,-0.09516150405960024],[112,161,77,-0.08883928410877329],[112,161,78,-0.06674657198803312],[112,161,79,-0.06534276191937437],[112,162,64,-0.14970402731165117],[112,162,65,-0.15366216087165754],[112,162,66,-0.15103142364221178],[112,162,67,-0.1460831018647562],[112,162,68,-0.13998630563506176],[112,162,69,-0.13453590079004646],[112,162,70,-0.13308645834502197],[112,162,71,-0.1235891341372683],[112,162,72,-0.11792031592016144],[112,162,73,-0.10956186896838532],[112,162,74,-0.10768559715805567],[112,162,75,-0.10440085918338857],[112,162,76,-0.09710577010361514],[112,162,77,-0.09385296772719642],[112,162,78,-0.07670018781081545],[112,162,79,-0.07217955399738826],[112,163,64,-0.14899922464066184],[112,163,65,-0.15235054127294073],[112,163,66,-0.15324930538259168],[112,163,67,-0.14602545806024578],[112,163,68,-0.14118845747898437],[112,163,69,-0.13673444198456147],[112,163,70,-0.13490472838233242],[112,163,71,-0.12842973165541746],[112,163,72,-0.12086460036436547],[112,163,73,-0.11166934411059914],[112,163,74,-0.10845074041243392],[112,163,75,-0.1055658880736779],[112,163,76,-0.09733580023467565],[112,163,77,-0.09272731242217247],[112,163,78,-0.08403933971185122],[112,163,79,-0.07949234598501581],[112,164,64,-0.12530291312596406],[112,164,65,-0.1339817754126042],[112,164,66,-0.13763880960993397],[112,164,67,-0.13672544333245812],[112,164,68,-0.13752092877233496],[112,164,69,-0.13780312800693978],[112,164,70,-0.13884893022576797],[112,164,71,-0.13407180031698782],[112,164,72,-0.12550702638403577],[112,164,73,-0.11577317932751388],[112,164,74,-0.1140395208703031],[112,164,75,-0.11218969301917109],[112,164,76,-0.10268258389418768],[112,164,77,-0.09487893574690397],[112,164,78,-0.08645083763697024],[112,164,79,-0.08071165047246381],[112,165,64,-0.12008887065165727],[112,165,65,-0.12700354829817895],[112,165,66,-0.13012724712975546],[112,165,67,-0.1330733212136753],[112,165,68,-0.13446660086191053],[112,165,69,-0.13621798515760414],[112,165,70,-0.13532997822469628],[112,165,71,-0.1319822468508397],[112,165,72,-0.12421422841105564],[112,165,73,-0.11818197759515248],[112,165,74,-0.11717141953697091],[112,165,75,-0.11323665596993887],[112,165,76,-0.10415604781260332],[112,165,77,-0.0933483972465703],[112,165,78,-0.084502892205418],[112,165,79,-0.0796469388996165],[112,166,64,-0.11862755200559202],[112,166,65,-0.124919508064885],[112,166,66,-0.12912544306860074],[112,166,67,-0.13725237949073593],[112,166,68,-0.13691137828159414],[112,166,69,-0.13762162059353084],[112,166,70,-0.13396582029030318],[112,166,71,-0.13066340020210349],[112,166,72,-0.12510114248747298],[112,166,73,-0.12217302186028121],[112,166,74,-0.1177860338662835],[112,166,75,-0.1143437631478243],[112,166,76,-0.10586900925461343],[112,166,77,-0.09420342597802572],[112,166,78,-0.08369859268858569],[112,166,79,-0.07979365011717594],[112,167,64,-0.11057217494828477],[112,167,65,-0.11834398437758867],[112,167,66,-0.1253442452297667],[112,167,67,-0.13282493065737727],[112,167,68,-0.13361951226073746],[112,167,69,-0.13369113934038623],[112,167,70,-0.12952579436474088],[112,167,71,-0.12735737540408554],[112,167,72,-0.12556036312304253],[112,167,73,-0.12435185716938615],[112,167,74,-0.11962832768177933],[112,167,75,-0.11749643978045439],[112,167,76,-0.10864963367404074],[112,167,77,-0.09702747547879138],[112,167,78,-0.08758752164880801],[112,167,79,-0.07893072615682291],[112,168,64,-0.10992284018787137],[112,168,65,-0.11706461314002789],[112,168,66,-0.12512943593069398],[112,168,67,-0.13259015350391185],[112,168,68,-0.1348962492103853],[112,168,69,-0.13400622967648762],[112,168,70,-0.1293536666649795],[112,168,71,-0.12692835151564993],[112,168,72,-0.1261388570400067],[112,168,73,-0.1266903983123812],[112,168,74,-0.12187025471660663],[112,168,75,-0.11856385723554437],[112,168,76,-0.10962680604102575],[112,168,77,-0.09547201061587485],[112,168,78,-0.0883949172568588],[112,168,79,-0.07924625158774458],[112,169,64,-0.11163923550362638],[112,169,65,-0.11864617361783017],[112,169,66,-0.1275356073028995],[112,169,67,-0.13539185323682335],[112,169,68,-0.1360168762939681],[112,169,69,-0.1360263965470531],[112,169,70,-0.133604355375017],[112,169,71,-0.1307282538865048],[112,169,72,-0.12659939757954955],[112,169,73,-0.12693202295426212],[112,169,74,-0.1251261723786295],[112,169,75,-0.11824774237708208],[112,169,76,-0.1097683923037095],[112,169,77,-0.10081591992017017],[112,169,78,-0.09073736424287354],[112,169,79,-0.08019035391348053],[112,170,64,-0.11706482437555711],[112,170,65,-0.12391130574878081],[112,170,66,-0.13293852739666664],[112,170,67,-0.14150868662257243],[112,170,68,-0.1392715228795092],[112,170,69,-0.13808252202455548],[112,170,70,-0.13822721658977188],[112,170,71,-0.13668229421137917],[112,170,72,-0.13189965714870533],[112,170,73,-0.13245358898536286],[112,170,74,-0.1315822600755923],[112,170,75,-0.1224135526464421],[112,170,76,-0.11382544970767638],[112,170,77,-0.10889202744424872],[112,170,78,-0.09457060316721791],[112,170,79,-0.08114552631478755],[112,171,64,-0.11782667029558404],[112,171,65,-0.12555669400358138],[112,171,66,-0.13674688825604148],[112,171,67,-0.1425593577363241],[112,171,68,-0.13925370794652148],[112,171,69,-0.13793325776954452],[112,171,70,-0.1400813256840917],[112,171,71,-0.13806587852429453],[112,171,72,-0.13507234210154087],[112,171,73,-0.13499029013081734],[112,171,74,-0.1315920409878421],[112,171,75,-0.12348338729940295],[112,171,76,-0.11671571915129783],[112,171,77,-0.10550498327044093],[112,171,78,-0.08965854520856814],[112,171,79,-0.07747163631122793],[112,172,64,-0.12335362923557924],[112,172,65,-0.13189609990568038],[112,172,66,-0.143299711862876],[112,172,67,-0.14653444031432572],[112,172,68,-0.14619989748210618],[112,172,69,-0.14306874912781942],[112,172,70,-0.14359112428620271],[112,172,71,-0.14238720527838955],[112,172,72,-0.1394910054810335],[112,172,73,-0.14014939762973003],[112,172,74,-0.13770373544812625],[112,172,75,-0.12908267582626057],[112,172,76,-0.1219964910584341],[112,172,77,-0.10491052746849365],[112,172,78,-0.08248919706294083],[112,172,79,-0.06694308571954663],[112,173,64,-0.12683795595373176],[112,173,65,-0.13341228266288976],[112,173,66,-0.1440369771509089],[112,173,67,-0.14752622878904229],[112,173,68,-0.14964224146054636],[112,173,69,-0.1456253971839788],[112,173,70,-0.14327264296252612],[112,173,71,-0.14256883970671452],[112,173,72,-0.14100673576936223],[112,173,73,-0.1407706645444461],[112,173,74,-0.14151774857241584],[112,173,75,-0.1325041123364462],[112,173,76,-0.12177053437695846],[112,173,77,-0.10780619149395532],[112,173,78,-0.08597272850040105],[112,173,79,-0.0678970537965158],[112,174,64,-0.12818756419617142],[112,174,65,-0.1348786149135324],[112,174,66,-0.14320045960065966],[112,174,67,-0.15011354878278504],[112,174,68,-0.15060962312106438],[112,174,69,-0.1477584599399801],[112,174,70,-0.14286894202520095],[112,174,71,-0.1421390714603582],[112,174,72,-0.143704576515208],[112,174,73,-0.1436196703445865],[112,174,74,-0.14249576659864907],[112,174,75,-0.13435495057871477],[112,174,76,-0.12420440883283526],[112,174,77,-0.10924583420808083],[112,174,78,-0.09093793517051565],[112,174,79,-0.0708350267088567],[112,175,64,-0.11908611854312828],[112,175,65,-0.12753951429403274],[112,175,66,-0.13421581225535711],[112,175,67,-0.1441760574217587],[112,175,68,-0.14590120924180963],[112,175,69,-0.14587853271362228],[112,175,70,-0.14204720510742325],[112,175,71,-0.140497422658602],[112,175,72,-0.14499449583332516],[112,175,73,-0.14578649974741614],[112,175,74,-0.14284675696918933],[112,175,75,-0.13546319882234417],[112,175,76,-0.13466127807392134],[112,175,77,-0.13281923641542562],[112,175,78,-0.12858204718812105],[112,175,79,-0.12302440800906074],[112,176,64,-0.11675451784509475],[112,176,65,-0.1259938389584272],[112,176,66,-0.1330591666636174],[112,176,67,-0.14061496792610165],[112,176,68,-0.14431546112994373],[112,176,69,-0.14580989245336412],[112,176,70,-0.14500162643507156],[112,176,71,-0.14531058892393273],[112,176,72,-0.14820593626336914],[112,176,73,-0.14612850728799842],[112,176,74,-0.1428319807799626],[112,176,75,-0.1368032411379541],[112,176,76,-0.1358924836611236],[112,176,77,-0.13587661550583555],[112,176,78,-0.13081176306571113],[112,176,79,-0.12363947458496094],[112,177,64,-0.11711426894735062],[112,177,65,-0.12687562803839295],[112,177,66,-0.1379054259558768],[112,177,67,-0.1443278048448053],[112,177,68,-0.15157961265719844],[112,177,69,-0.15484527519111657],[112,177,70,-0.15363127360244594],[112,177,71,-0.1534698877424493],[112,177,72,-0.15113168920624537],[112,177,73,-0.14930124024349972],[112,177,74,-0.1451508562972138],[112,177,75,-0.14115320044081311],[112,177,76,-0.13751280500580762],[112,177,77,-0.13857314901518572],[112,177,78,-0.13507042954884835],[112,177,79,-0.13039854573095364],[112,178,64,-0.12192573603955426],[112,178,65,-0.1308707280888996],[112,178,66,-0.1425613809990105],[112,178,67,-0.1487273782836981],[112,178,68,-0.15585733828851872],[112,178,69,-0.15948112535978687],[112,178,70,-0.15934506983625807],[112,178,71,-0.15783087395221163],[112,178,72,-0.15672325469453185],[112,178,73,-0.15642930566291485],[112,178,74,-0.15072632081378284],[112,178,75,-0.14699022012972215],[112,178,76,-0.143205274411893],[112,178,77,-0.14289132989840816],[112,178,78,-0.13838360719019038],[112,178,79,-0.1351737758515644],[112,179,64,-0.12271821345782517],[112,179,65,-0.13145982896046854],[112,179,66,-0.14194337895071538],[112,179,67,-0.14714411184127518],[112,179,68,-0.15110530229988814],[112,179,69,-0.15736946863792453],[112,179,70,-0.16135894316088384],[112,179,71,-0.15724164038945687],[112,179,72,-0.15931834243504284],[112,179,73,-0.15672772804201507],[112,179,74,-0.15119790406670594],[112,179,75,-0.14805928813471314],[112,179,76,-0.14473383592891287],[112,179,77,-0.14465668185287267],[112,179,78,-0.13948676205681285],[112,179,79,-0.13361622556099362],[112,180,64,-0.12556100121261848],[112,180,65,-0.13221713011185116],[112,180,66,-0.14143262974431087],[112,180,67,-0.14942709138821286],[112,180,68,-0.15359242146945515],[112,180,69,-0.16029816618765982],[112,180,70,-0.16474875923426674],[112,180,71,-0.1646088607577246],[112,180,72,-0.16672960649208685],[112,180,73,-0.16337632817784603],[112,180,74,-0.1576686446445955],[112,180,75,-0.15583238191448653],[112,180,76,-0.15481956212164372],[112,180,77,-0.15475117826459175],[112,180,78,-0.14982423665425493],[112,180,79,-0.14193109168762028],[112,181,64,-0.12149044487194016],[112,181,65,-0.12718427048527187],[112,181,66,-0.13088156177529442],[112,181,67,-0.13779486282199654],[112,181,68,-0.14219124633265742],[112,181,69,-0.1459528386669938],[112,181,70,-0.15138943040615727],[112,181,71,-0.15606650234821487],[112,181,72,-0.16093003268739814],[112,181,73,-0.16046905698279273],[112,181,74,-0.1568415778727525],[112,181,75,-0.15672158501213096],[112,181,76,-0.155734098772468],[112,181,77,-0.14908741120809002],[112,181,78,-0.14020501956657944],[112,181,79,-0.13162152668525612],[112,182,64,-0.12237974379805111],[112,182,65,-0.1282878293903874],[112,182,66,-0.13158234057865553],[112,182,67,-0.13554600052889204],[112,182,68,-0.1411697872383108],[112,182,69,-0.14271053431159217],[112,182,70,-0.14833641698292352],[112,182,71,-0.15224268508736022],[112,182,72,-0.15896823979788172],[112,182,73,-0.15903872705134092],[112,182,74,-0.15675627654395896],[112,182,75,-0.15759712341849189],[112,182,76,-0.1555548713748792],[112,182,77,-0.1441063229023116],[112,182,78,-0.1340746981274629],[112,182,79,-0.12640870977168564],[112,183,64,-0.11590143201002777],[112,183,65,-0.12245754687575139],[112,183,66,-0.12868874629830285],[112,183,67,-0.13194657706378535],[112,183,68,-0.13764563453655443],[112,183,69,-0.1375241409847817],[112,183,70,-0.1452316117832219],[112,183,71,-0.15020321923572155],[112,183,72,-0.1574397352440965],[112,183,73,-0.15798964216702446],[112,183,74,-0.1560965794929038],[112,183,75,-0.1551667111108468],[112,183,76,-0.15519650024272785],[112,183,77,-0.14560843923946687],[112,183,78,-0.13394885948495888],[112,183,79,-0.12478171558283248],[112,184,64,-0.1128558814049436],[112,184,65,-0.1196651845052147],[112,184,66,-0.12776194406803396],[112,184,67,-0.13403086418363275],[112,184,68,-0.1377810366168386],[112,184,69,-0.13881762028366462],[112,184,70,-0.14607930132689567],[112,184,71,-0.15147888800115425],[112,184,72,-0.1602401080312334],[112,184,73,-0.15757774847936595],[112,184,74,-0.15635172006205966],[112,184,75,-0.1540747822237219],[112,184,76,-0.1530586521583361],[112,184,77,-0.14433198771470268],[112,184,78,-0.13210723545342087],[112,184,79,-0.12329846144722435],[112,185,64,-0.11112998894677115],[112,185,65,-0.1170386198161983],[112,185,66,-0.12722838695536384],[112,185,67,-0.13215943497205035],[112,185,68,-0.13628065702720205],[112,185,69,-0.13877145095797214],[112,185,70,-0.14605117976243198],[112,185,71,-0.15222162861671418],[112,185,72,-0.15914958505105156],[112,185,73,-0.1563946818779692],[112,185,74,-0.15459148431065634],[112,185,75,-0.152647562093294],[112,185,76,-0.14778140598996817],[112,185,77,-0.1408641642755709],[112,185,78,-0.12686641853602415],[112,185,79,-0.11821313383556832],[112,186,64,-0.11605147798127612],[112,186,65,-0.12226703067615492],[112,186,66,-0.13055903412279238],[112,186,67,-0.1340513581067923],[112,186,68,-0.13915033182977068],[112,186,69,-0.14360650451602452],[112,186,70,-0.15204528787897348],[112,186,71,-0.15557030989889556],[112,186,72,-0.16196096500007115],[112,186,73,-0.1592958580111254],[112,186,74,-0.15760396341520264],[112,186,75,-0.15473642262976287],[112,186,76,-0.14766973236076247],[112,186,77,-0.1408326266071358],[112,186,78,-0.13341261179604796],[112,186,79,-0.12405704445150924],[112,187,64,-0.11725684835909894],[112,187,65,-0.12316107702950634],[112,187,66,-0.13559563494612129],[112,187,67,-0.13568084428400176],[112,187,68,-0.13843587993137915],[112,187,69,-0.1396768417317088],[112,187,70,-0.14950559322193951],[112,187,71,-0.1543130952216197],[112,187,72,-0.16006938102948937],[112,187,73,-0.15734813011874912],[112,187,74,-0.15729781356072303],[112,187,75,-0.1522864996572716],[112,187,76,-0.14619263216379194],[112,187,77,-0.14004595854130233],[112,187,78,-0.13378946357457494],[112,187,79,-0.12839289251804578],[112,188,64,-0.11045908292813891],[112,188,65,-0.11923384131039014],[112,188,66,-0.12988389857017762],[112,188,67,-0.1295424854536288],[112,188,68,-0.13002604272781412],[112,188,69,-0.13049408328010648],[112,188,70,-0.1379580292147246],[112,188,71,-0.14537454804247152],[112,188,72,-0.14810454674411982],[112,188,73,-0.14697516849152867],[112,188,74,-0.14677952550925577],[112,188,75,-0.1436869369576228],[112,188,76,-0.13946821069377766],[112,188,77,-0.13301684698149355],[112,188,78,-0.12466527415091035],[112,188,79,-0.12529584545782915],[112,189,64,-0.10529088869001176],[112,189,65,-0.11859908031209185],[112,189,66,-0.1312499254071772],[112,189,67,-0.1315717377522574],[112,189,68,-0.1344636115215958],[112,189,69,-0.13519458162526055],[112,189,70,-0.1390817720472842],[112,189,71,-0.14747712013219627],[112,189,72,-0.14809962903554771],[112,189,73,-0.14609577995596945],[112,189,74,-0.14528959429074706],[112,189,75,-0.13949247386775881],[112,189,76,-0.1321458129769738],[112,189,77,-0.12439254300788058],[112,189,78,-0.11727028524779427],[112,189,79,-0.11420272549476401],[112,190,64,-0.10599554584983574],[112,190,65,-0.11853647645727687],[112,190,66,-0.13138526779463572],[112,190,67,-0.13241307071593542],[112,190,68,-0.13557853669070646],[112,190,69,-0.1373527031954344],[112,190,70,-0.1372841727469595],[112,190,71,-0.14410723459910302],[112,190,72,-0.14500887435970083],[112,190,73,-0.14552560823464084],[112,190,74,-0.14240326174672305],[112,190,75,-0.13665546651331723],[112,190,76,-0.13020339363744807],[112,190,77,-0.12033857090205335],[112,190,78,-0.11452778223542345],[112,190,79,-0.11237605135260309],[112,191,64,-0.10598108971262613],[112,191,65,-0.11391042541533128],[112,191,66,-0.12929339282118774],[112,191,67,-0.13331606837171753],[112,191,68,-0.13446481636010313],[112,191,69,-0.13505378886073263],[112,191,70,-0.13739048284949668],[112,191,71,-0.1395493539786846],[112,191,72,-0.14179205055112218],[112,191,73,-0.14071796276601045],[112,191,74,-0.14103551112511373],[112,191,75,-0.13191461074165328],[112,191,76,-0.12096180423254067],[112,191,77,-0.11282720851863962],[112,191,78,-0.10808268133429068],[112,191,79,-0.10377919504385696],[112,192,64,-0.10736009419416565],[112,192,65,-0.11686565825512679],[112,192,66,-0.12822616966736988],[112,192,67,-0.13572825027235924],[112,192,68,-0.13447033922711701],[112,192,69,-0.13473758818562656],[112,192,70,-0.13795086895223882],[112,192,71,-0.13774859159275699],[112,192,72,-0.137429122815606],[112,192,73,-0.14029751274721347],[112,192,74,-0.13832413562479448],[112,192,75,-0.12645608676986747],[112,192,76,-0.11850064609772853],[112,192,77,-0.11071203572337537],[112,192,78,-0.1041707065566688],[112,192,79,-0.09959242521556748],[112,193,64,-0.11950137386914654],[112,193,65,-0.12500930928284992],[112,193,66,-0.13124732301022335],[112,193,67,-0.132936764692833],[112,193,68,-0.1297721155943971],[112,193,69,-0.13115215078262882],[112,193,70,-0.13534345372676804],[112,193,71,-0.13531129324555655],[112,193,72,-0.13354352537473962],[112,193,73,-0.13700859947345234],[112,193,74,-0.13372124496089866],[112,193,75,-0.1236911157985025],[112,193,76,-0.11749231682106401],[112,193,77,-0.11061561405217303],[112,193,78,-0.1074111151010103],[112,193,79,-0.10514668536958803],[112,194,64,-0.1290168467809019],[112,194,65,-0.13233925323067905],[112,194,66,-0.13523028443893295],[112,194,67,-0.13662966707980476],[112,194,68,-0.13398413643558735],[112,194,69,-0.1332402424334317],[112,194,70,-0.13749573923960945],[112,194,71,-0.13838027761863972],[112,194,72,-0.13606291970801002],[112,194,73,-0.13878687326426534],[112,194,74,-0.13434889615616882],[112,194,75,-0.12648281504401623],[112,194,76,-0.11993650877417067],[112,194,77,-0.11145614976485134],[112,194,78,-0.10576867985611142],[112,194,79,-0.09970150319179692],[112,195,64,-0.13219653392774222],[112,195,65,-0.13368598911886975],[112,195,66,-0.13626218597229484],[112,195,67,-0.13192056641181663],[112,195,68,-0.1312470186849597],[112,195,69,-0.13250397182263732],[112,195,70,-0.1363259808576494],[112,195,71,-0.13568405564893837],[112,195,72,-0.13266232220187882],[112,195,73,-0.1357475444391429],[112,195,74,-0.1312038793466332],[112,195,75,-0.12537717538678966],[112,195,76,-0.11707986126578976],[112,195,77,-0.11134402244217036],[112,195,78,-0.10893392228258594],[112,195,79,-0.10152039279674971],[112,196,64,-0.12725856115824385],[112,196,65,-0.12330306002229859],[112,196,66,-0.11999529128052808],[112,196,67,-0.11034879739842246],[112,196,68,-0.10223162477193261],[112,196,69,-0.1007136812436624],[112,196,70,-0.10083690473424105],[112,196,71,-0.09989619199338785],[112,196,72,-0.09519652056424274],[112,196,73,-0.09680311004342022],[112,196,74,-0.09226937134023461],[112,196,75,-0.088068956989862],[112,196,76,-0.07738482499150551],[112,196,77,-0.07466380796936382],[112,196,78,-0.08216602429411958],[112,196,79,-0.07389392319640813],[112,197,64,-0.12726994544449197],[112,197,65,-0.12399796181401726],[112,197,66,-0.1221386219059516],[112,197,67,-0.10864332268130839],[112,197,68,-0.10011400759024022],[112,197,69,-0.09738627891724772],[112,197,70,-0.096165525507366],[112,197,71,-0.09777174852011458],[112,197,72,-0.09303679779325524],[112,197,73,-0.09513127214212617],[112,197,74,-0.09169693738997954],[112,197,75,-0.08682987997832906],[112,197,76,-0.07567072937334646],[112,197,77,-0.07089164779191562],[112,197,78,-0.07721112858924149],[112,197,79,-0.07081133996351008],[112,198,64,-0.12873657852488743],[112,198,65,-0.12546160251377353],[112,198,66,-0.12379827265040265],[112,198,67,-0.10836654017765035],[112,198,68,-0.0970343312161761],[112,198,69,-0.09450201188888174],[112,198,70,-0.09329976816922317],[112,198,71,-0.09508491635767521],[112,198,72,-0.09056303847378536],[112,198,73,-0.09003042979378939],[112,198,74,-0.08631520367710704],[112,198,75,-0.08230500385882716],[112,198,76,-0.07510316007681217],[112,198,77,-0.07174080653474857],[112,198,78,-0.08086353156154545],[112,198,79,-0.0767862674814449],[112,199,64,-0.13250385408096352],[112,199,65,-0.12791473693204725],[112,199,66,-0.12246391134788107],[112,199,67,-0.10588086621747322],[112,199,68,-0.09568934720257605],[112,199,69,-0.09142308904457412],[112,199,70,-0.08973852641855351],[112,199,71,-0.08961410645547117],[112,199,72,-0.08653825570990484],[112,199,73,-0.08257365752292938],[112,199,74,-0.08035064196214871],[112,199,75,-0.07576040320495399],[112,199,76,-0.07106336847655034],[112,199,77,-0.06593683911189417],[112,199,78,-0.07183024032659283],[112,199,79,-0.06997482208969344],[112,200,64,-0.13663603388898182],[112,200,65,-0.1312362338699431],[112,200,66,-0.12308326849864941],[112,200,67,-0.10555618566611348],[112,200,68,-0.09711002921089674],[112,200,69,-0.09188401091696487],[112,200,70,-0.08874313894386904],[112,200,71,-0.0835920989104478],[112,200,72,-0.0822954124795916],[112,200,73,-0.0784796206015693],[112,200,74,-0.07628117159184268],[112,200,75,-0.07025750478241716],[112,200,76,-0.06560457720338135],[112,200,77,-0.06866682328307343],[112,200,78,-0.07563859512391696],[112,200,79,-0.07379123435213805],[112,201,64,-0.1342528326029961],[112,201,65,-0.1292147438705632],[112,201,66,-0.1191522640796275],[112,201,67,-0.09895854721854838],[112,201,68,-0.0884035178729353],[112,201,69,-0.08223810764608933],[112,201,70,-0.07797428249906788],[112,201,71,-0.07776467593187619],[112,201,72,-0.07999144355831553],[112,201,73,-0.07644757461342491],[112,201,74,-0.0769783925258288],[112,201,75,-0.07889710244294044],[112,201,76,-0.07372482090961432],[112,201,77,-0.07602299506596381],[112,201,78,-0.08076385061044741],[112,201,79,-0.07657650159241883],[112,202,64,-0.14038308078796977],[112,202,65,-0.134095329187379],[112,202,66,-0.12472697077309661],[112,202,67,-0.10701787842301341],[112,202,68,-0.09460323510354074],[112,202,69,-0.08568759719458055],[112,202,70,-0.07751510297929537],[112,202,71,-0.07779662165173229],[112,202,72,-0.082183722297496],[112,202,73,-0.07927005152044253],[112,202,74,-0.07573282844503411],[112,202,75,-0.07854841470386825],[112,202,76,-0.07127281287287589],[112,202,77,-0.07388597283892095],[112,202,78,-0.08113187791963741],[112,202,79,-0.08188097870555061],[112,203,64,-0.14440917252320068],[112,203,65,-0.13471818318097162],[112,203,66,-0.1275584127834024],[112,203,67,-0.11173213626408207],[112,203,68,-0.09790950614944857],[112,203,69,-0.08646614308534899],[112,203,70,-0.07394686491963454],[112,203,71,-0.0743153480663024],[112,203,72,-0.08040996882649043],[112,203,73,-0.0784717078399255],[112,203,74,-0.07412268213378179],[112,203,75,-0.07790049924432542],[112,203,76,-0.07158362486396065],[112,203,77,-0.07922389466395688],[112,203,78,-0.09038375243358399],[112,203,79,-0.09176188594628687],[112,204,64,-0.14775384700420335],[112,204,65,-0.13653028548274004],[112,204,66,-0.12866311531818617],[112,204,67,-0.11737343378647541],[112,204,68,-0.10374746878362337],[112,204,69,-0.08799225900162311],[112,204,70,-0.0772038705988526],[112,204,71,-0.0729026194862668],[112,204,72,-0.07689836583836475],[112,204,73,-0.08110206798237528],[112,204,74,-0.07863687268376976],[112,204,75,-0.0816112604204492],[112,204,76,-0.07618130157610684],[112,204,77,-0.08174391596726831],[112,204,78,-0.09471041833162719],[112,204,79,-0.09841909679512698],[112,205,64,-0.15348382131896787],[112,205,65,-0.14583581416611407],[112,205,66,-0.13802421011730837],[112,205,67,-0.12855545371975777],[112,205,68,-0.11609794862420486],[112,205,69,-0.10025880636910428],[112,205,70,-0.08944442061713556],[112,205,71,-0.08039245680546853],[112,205,72,-0.07412181901755696],[112,205,73,-0.07565382676183197],[112,205,74,-0.08196795589944988],[112,205,75,-0.08222466118961692],[112,205,76,-0.07797727443999904],[112,205,77,-0.08779920178737746],[112,205,78,-0.09940811005085423],[112,205,79,-0.10329143177636592],[112,206,64,-0.15816827689554824],[112,206,65,-0.15115777784697765],[112,206,66,-0.1390650376616644],[112,206,67,-0.13030392327791523],[112,206,68,-0.1141782700479705],[112,206,69,-0.10142642247886619],[112,206,70,-0.08991054189955819],[112,206,71,-0.08063099609488575],[112,206,72,-0.07044564525035668],[112,206,73,-0.07385809274786481],[112,206,74,-0.08730025445316356],[112,206,75,-0.08518041479387106],[112,206,76,-0.08237573254827363],[112,206,77,-0.09565120847049673],[112,206,78,-0.10423969620345094],[112,206,79,-0.10942785605977057],[112,207,64,-0.16025357952700442],[112,207,65,-0.1521007141513657],[112,207,66,-0.13950004264015115],[112,207,67,-0.13072603183112833],[112,207,68,-0.11428424575592752],[112,207,69,-0.10323004320951223],[112,207,70,-0.08986474433222842],[112,207,71,-0.08004779516843903],[112,207,72,-0.069488452483036],[112,207,73,-0.06650444216450217],[112,207,74,-0.07898619891263782],[112,207,75,-0.07801512905539669],[112,207,76,-0.07753424874263977],[112,207,77,-0.08455036687063341],[112,207,78,-0.09086974269443834],[112,207,79,-0.10115676580182806],[112,208,64,-0.1629330285481774],[112,208,65,-0.15210608087113475],[112,208,66,-0.14023854795219104],[112,208,67,-0.13001991757874726],[112,208,68,-0.11396507818471174],[112,208,69,-0.10109867023248154],[112,208,70,-0.08717628828859977],[112,208,71,-0.07751950260845926],[112,208,72,-0.06907563936131846],[112,208,73,-0.06756301603452958],[112,208,74,-0.06861663604104143],[112,208,75,-0.06791338117256954],[112,208,76,-0.07013291429524779],[112,208,77,-0.07612504440374133],[112,208,78,-0.07993757605698668],[112,208,79,-0.0892227469602003],[112,209,64,-0.16687962057073913],[112,209,65,-0.15229335884587578],[112,209,66,-0.14042349367925216],[112,209,67,-0.12865390652718472],[112,209,68,-0.11228633229081722],[112,209,69,-0.10090107899956725],[112,209,70,-0.08788922370950045],[112,209,71,-0.07614170155672187],[112,209,72,-0.06989533746025416],[112,209,73,-0.06960646601650863],[112,209,74,-0.07112485583846367],[112,209,75,-0.06952110458322265],[112,209,76,-0.07141745668117623],[112,209,77,-0.0785926718039984],[112,209,78,-0.08226011636340838],[112,209,79,-0.08787883691250514],[112,210,64,-0.17078024409038567],[112,210,65,-0.1579951010365315],[112,210,66,-0.14524130801367863],[112,210,67,-0.13149242329277125],[112,210,68,-0.11732818999562863],[112,210,69,-0.1030549671829479],[112,210,70,-0.08755665325017367],[112,210,71,-0.07936301660613576],[112,210,72,-0.07354046849915971],[112,210,73,-0.07274270092437024],[112,210,74,-0.06882481913259635],[112,210,75,-0.06817908531276676],[112,210,76,-0.06860169496464436],[112,210,77,-0.07395566749856995],[112,210,78,-0.07676043607569477],[112,210,79,-0.08111311687135367],[112,211,64,-0.17427516941858046],[112,211,65,-0.15878321220978714],[112,211,66,-0.1447362742713577],[112,211,67,-0.13267957530008184],[112,211,68,-0.11747480663834431],[112,211,69,-0.10121079292561283],[112,211,70,-0.08716220245448755],[112,211,71,-0.0781138141379304],[112,211,72,-0.07442370388976213],[112,211,73,-0.0712364520030025],[112,211,74,-0.06735675403609359],[112,211,75,-0.06745767048399325],[112,211,76,-0.0693073858969209],[112,211,77,-0.07698859937286923],[112,211,78,-0.08256136222717425],[112,211,79,-0.09307190039088786],[112,212,64,-0.16785326947851753],[112,212,65,-0.15516358601595154],[112,212,66,-0.14247443056219172],[112,212,67,-0.13196127000212626],[112,212,68,-0.11851344167130835],[112,212,69,-0.10922586399313779],[112,212,70,-0.09516361525069159],[112,212,71,-0.087084879645793],[112,212,72,-0.08541794365401129],[112,212,73,-0.08280511179602854],[112,212,74,-0.07585818307057435],[112,212,75,-0.0751100889865425],[112,212,76,-0.07480529742150589],[112,212,77,-0.07761962031382844],[112,212,78,-0.07988029432473567],[112,212,79,-0.08804663003181785],[112,213,64,-0.1752371272826112],[112,213,65,-0.15912214309909808],[112,213,66,-0.14184401598769886],[112,213,67,-0.12225228229457628],[112,213,68,-0.1080198762435893],[112,213,69,-0.10052744542281546],[112,213,70,-0.08984870701165412],[112,213,71,-0.08674805791553976],[112,213,72,-0.08876772212352092],[112,213,73,-0.08938602085837527],[112,213,74,-0.08497840914183089],[112,213,75,-0.08279456869889842],[112,213,76,-0.08060017340327613],[112,213,77,-0.07985328471649897],[112,213,78,-0.08021374242870818],[112,213,79,-0.08662266801983615],[112,214,64,-0.17247939256947986],[112,214,65,-0.15871451134959447],[112,214,66,-0.1414518593209908],[112,214,67,-0.12178652625553923],[112,214,68,-0.10667260110318076],[112,214,69,-0.09979453935009322],[112,214,70,-0.08861950069174146],[112,214,71,-0.08382937178568445],[112,214,72,-0.08786267731668404],[112,214,73,-0.08982187046453416],[112,214,74,-0.08480030981799605],[112,214,75,-0.08485642011956057],[112,214,76,-0.08596753059098083],[112,214,77,-0.08281397418191423],[112,214,78,-0.08752413940451152],[112,214,79,-0.09309741451551203],[112,215,64,-0.17401900762406097],[112,215,65,-0.15956328477144394],[112,215,66,-0.1420556121488256],[112,215,67,-0.12070248689092611],[112,215,68,-0.10848572842879922],[112,215,69,-0.09863303028809091],[112,215,70,-0.08807521300024035],[112,215,71,-0.08310150018840132],[112,215,72,-0.08703268589825601],[112,215,73,-0.08970800385260125],[112,215,74,-0.08334232531833285],[112,215,75,-0.08152065287738108],[112,215,76,-0.08205633164359225],[112,215,77,-0.07992202734155276],[112,215,78,-0.08482227700157013],[112,215,79,-0.08889573128498765],[112,216,64,-0.1706976238529067],[112,216,65,-0.15833198892271655],[112,216,66,-0.13868529957147288],[112,216,67,-0.12069647250239138],[112,216,68,-0.10859441291426314],[112,216,69,-0.09868990980557074],[112,216,70,-0.08765850939873443],[112,216,71,-0.08360922352764305],[112,216,72,-0.08592024794384054],[112,216,73,-0.08619001377935355],[112,216,74,-0.07937546740551502],[112,216,75,-0.07772936719136267],[112,216,76,-0.08364094669366438],[112,216,77,-0.08665115136483911],[112,216,78,-0.09312330659804269],[112,216,79,-0.08928065461190479],[112,217,64,-0.16060862946279228],[112,217,65,-0.15030891711833638],[112,217,66,-0.14030213443306214],[112,217,67,-0.12720433311001175],[112,217,68,-0.11556556527280076],[112,217,69,-0.10427664974198977],[112,217,70,-0.09137008250889009],[112,217,71,-0.0843919878613218],[112,217,72,-0.0789285805823554],[112,217,73,-0.071121484207579],[112,217,74,-0.06384401284168051],[112,217,75,-0.06599843355464222],[112,217,76,-0.0756907435760882],[112,217,77,-0.08615621971742882],[112,217,78,-0.09393305506666023],[112,217,79,-0.08835179411321523],[112,218,64,-0.1628577634337697],[112,218,65,-0.1511940991154841],[112,218,66,-0.14214486323263192],[112,218,67,-0.1318982745907914],[112,218,68,-0.11827357830428267],[112,218,69,-0.10459507415708322],[112,218,70,-0.092463461426651],[112,218,71,-0.08770561952612144],[112,218,72,-0.07935196928388329],[112,218,73,-0.06995762502068444],[112,218,74,-0.06111506559541702],[112,218,75,-0.058978505291269724],[112,218,76,-0.07892928613935757],[112,218,77,-0.09582448731954005],[112,218,78,-0.1055158228154466],[112,218,79,-0.09877303462677983],[112,219,64,-0.16188105314731727],[112,219,65,-0.1493025057987946],[112,219,66,-0.14046396789774845],[112,219,67,-0.13136490676386536],[112,219,68,-0.11827371725106309],[112,219,69,-0.1016405165492427],[112,219,70,-0.0915406053097311],[112,219,71,-0.08421405787812003],[112,219,72,-0.07558724829393348],[112,219,73,-0.0671931522080434],[112,219,74,-0.05845495749744119],[112,219,75,-0.060069145676904745],[112,219,76,-0.08099795299869668],[112,219,77,-0.11043868920310367],[112,219,78,-0.11516270536020376],[112,219,79,-0.10798535435433414],[112,220,64,-0.15919171671013452],[112,220,65,-0.1464038864652567],[112,220,66,-0.13575618048281096],[112,220,67,-0.12546775731640772],[112,220,68,-0.10812240606115742],[112,220,69,-0.09062486176589715],[112,220,70,-0.07958190757317442],[112,220,71,-0.0691871518180982],[112,220,72,-0.06241167219721032],[112,220,73,-0.05665453809559855],[112,220,74,-0.04648893701536299],[112,220,75,-0.05851543853819831],[112,220,76,-0.08782683364500526],[112,220,77,-0.1285116080264577],[112,220,78,-0.13697974644089062],[112,220,79,-0.12859826370182492],[112,221,64,-0.15840026826598394],[112,221,65,-0.14654698075611383],[112,221,66,-0.13419552824638187],[112,221,67,-0.12221792796124924],[112,221,68,-0.10506303070835747],[112,221,69,-0.0866546162946315],[112,221,70,-0.07657991349636477],[112,221,71,-0.06421609053938021],[112,221,72,-0.05738419619596628],[112,221,73,-0.05092845269674129],[112,221,74,-0.04976479959856514],[112,221,75,-0.08915369085225237],[112,221,76,-0.1214248999676941],[112,221,77,-0.14084094522734886],[112,221,78,-0.13666704525110185],[112,221,79,-0.127838435146821],[112,222,64,-0.1534430021265642],[112,222,65,-0.1448651688899626],[112,222,66,-0.13177133764123367],[112,222,67,-0.11822357496528005],[112,222,68,-0.10303722695341475],[112,222,69,-0.08647260600413846],[112,222,70,-0.07332342295890482],[112,222,71,-0.060765082506255945],[112,222,72,-0.04933683690679941],[112,222,73,-0.04322356838688275],[112,222,74,-0.06100667938365632],[112,222,75,-0.09880748895459512],[112,222,76,-0.12011464247704276],[112,222,77,-0.13132882679227748],[112,222,78,-0.124463795465446],[112,222,79,-0.11756911814288681],[112,223,64,-0.15548295860011646],[112,223,65,-0.14782534449099433],[112,223,66,-0.13467451201637468],[112,223,67,-0.11957340202035735],[112,223,68,-0.1023859700875224],[112,223,69,-0.08622644710725844],[112,223,70,-0.07155366952055561],[112,223,71,-0.05618436532652452],[112,223,72,-0.044761652114149855],[112,223,73,-0.04580202836874202],[112,223,74,-0.08115642450518884],[112,223,75,-0.11954224898106403],[112,223,76,-0.1301512503902141],[112,223,77,-0.13101285415341574],[112,223,78,-0.12147712894935131],[112,223,79,-0.11219097745622104],[112,224,64,-0.1543015775209916],[112,224,65,-0.14543173092657055],[112,224,66,-0.13517728555312683],[112,224,67,-0.12035056114257933],[112,224,68,-0.0999550030431173],[112,224,69,-0.08432391899005628],[112,224,70,-0.06753260739604278],[112,224,71,-0.05164019769844758],[112,224,72,-0.040195339029234195],[112,224,73,-0.05347310000542414],[112,224,74,-0.08766959595649049],[112,224,75,-0.12910513958107442],[112,224,76,-0.13850200011959138],[112,224,77,-0.13225847316745037],[112,224,78,-0.12255998114825757],[112,224,79,-0.11213500900602077],[112,225,64,-0.16040793514290086],[112,225,65,-0.14625898425474698],[112,225,66,-0.13244658702094397],[112,225,67,-0.11594655072062973],[112,225,68,-0.09349368707483974],[112,225,69,-0.0792876872320015],[112,225,70,-0.06249196362991072],[112,225,71,-0.04765304115921011],[112,225,72,-0.03728535977218052],[112,225,73,-0.05723330615545577],[112,225,74,-0.09589521354783406],[112,225,75,-0.14161391745128774],[112,225,76,-0.14160639109316492],[112,225,77,-0.1318421764164327],[112,225,78,-0.12253448760117663],[112,225,79,-0.11367805332964157],[112,226,64,-0.15940088550875345],[112,226,65,-0.1479226094009159],[112,226,66,-0.13345097782738524],[112,226,67,-0.11892644081071183],[112,226,68,-0.09798279706619387],[112,226,69,-0.08023287094285689],[112,226,70,-0.06314911853458688],[112,226,71,-0.047909424402827944],[112,226,72,-0.036605014402482615],[112,226,73,-0.03971389550200941],[112,226,74,-0.08636151537779968],[112,226,75,-0.1391020457065366],[112,226,76,-0.14273241685016355],[112,226,77,-0.13267651209398781],[112,226,78,-0.12218374418762996],[112,226,79,-0.11338892961850495],[112,227,64,-0.15625227208378945],[112,227,65,-0.14514208343783097],[112,227,66,-0.13239447946238808],[112,227,67,-0.11660007579369525],[112,227,68,-0.09747805910375962],[112,227,69,-0.07884441069397008],[112,227,70,-0.061957442420151956],[112,227,71,-0.04693381609431614],[112,227,72,-0.03550921469742174],[112,227,73,-0.03550922374130581],[112,227,74,-0.09133654310300414],[112,227,75,-0.1512530320791966],[112,227,76,-0.15418020248739586],[112,227,77,-0.1415762116252932],[112,227,78,-0.1323421374168906],[112,227,79,-0.12373958593525533],[112,228,64,-0.14324976794026106],[112,228,65,-0.13144161160561751],[112,228,66,-0.11661304805027911],[112,228,67,-0.10176307451700675],[112,228,68,-0.08347565704997867],[112,228,69,-0.06485158004167324],[112,228,70,-0.04545975144985116],[112,228,71,-0.03095076424305248],[112,228,72,-0.01887285047298834],[112,228,73,-0.013924954341206164],[112,228,74,-0.08849227328525465],[112,228,75,-0.14757985833246617],[112,228,76,-0.14800418977738838],[112,228,77,-0.13839962470136524],[112,228,78,-0.13027844400028604],[112,228,79,-0.12296111958148692],[112,229,64,-0.1338721694387639],[112,229,65,-0.12383228252043774],[112,229,66,-0.11334380826556786],[112,229,67,-0.10131440760594963],[112,229,68,-0.08707623712715977],[112,229,69,-0.06859247886814665],[112,229,70,-0.047239734823670956],[112,229,71,-0.02936738822194418],[112,229,72,-0.016966849745830695],[112,229,73,-0.057890872216844386],[112,229,74,-0.15801899288990784],[112,229,75,-0.15710704320037439],[112,229,76,-0.15228776622572648],[112,229,77,-0.14095612910189115],[112,229,78,-0.13622488768874158],[112,229,79,-0.12806984165643456],[112,230,64,-0.13454440941856832],[112,230,65,-0.12318691316883945],[112,230,66,-0.11069549030363052],[112,230,67,-0.10116784569828358],[112,230,68,-0.08760426426980444],[112,230,69,-0.06804397554886439],[112,230,70,-0.04514071813427787],[112,230,71,-0.027068039639392742],[112,230,72,-0.011934761256726586],[112,230,73,-0.05101804588954316],[112,230,74,-0.16216974603805953],[112,230,75,-0.1551344640474589],[112,230,76,-0.14847078967068203],[112,230,77,-0.1365523889943802],[112,230,78,-0.13070204779165012],[112,230,79,-0.12363604813887615],[112,231,64,-0.1383396204166342],[112,231,65,-0.12630487236299762],[112,231,66,-0.1135891478903131],[112,231,67,-0.1053625549975584],[112,231,68,-0.08915714046851894],[112,231,69,-0.07164145160832508],[112,231,70,-0.048913657410698565],[112,231,71,-0.028801477841883652],[112,231,72,-0.01097561263064964],[112,231,73,-0.017058711067878665],[112,231,74,-0.14076208301505827],[112,231,75,-0.15423056135868557],[112,231,76,-0.14707265125941685],[112,231,77,-0.13704288570645193],[112,231,78,-0.1319780874048052],[112,231,79,-0.1237332468653416],[112,232,64,-0.13712311469501792],[112,232,65,-0.12720909106647785],[112,232,66,-0.11306839117044196],[112,232,67,-0.1024506182478415],[112,232,68,-0.08769979511876175],[112,232,69,-0.0711620836983764],[112,232,70,-0.050415806400873904],[112,232,71,-0.029573978069524005],[112,232,72,-0.010309822125672233],[112,232,73,-0.010500931414305819],[112,232,74,-0.13721274795699762],[112,232,75,-0.15630604162036316],[112,232,76,-0.1482253501262409],[112,232,77,-0.13992727395896834],[112,232,78,-0.13395634380039256],[112,232,79,-0.12499942281488771],[112,233,64,-0.13630696342347057],[112,233,65,-0.12628854884939894],[112,233,66,-0.11108873446900148],[112,233,67,-0.1003141242794966],[112,233,68,-0.08574658393242779],[112,233,69,-0.07160801571714441],[112,233,70,-0.05161388133174509],[112,233,71,-0.03271594324197296],[112,233,72,-0.01315949314619911],[112,233,73,-0.0028941406415815977],[112,233,74,-0.13261816347705824],[112,233,75,-0.16008889292615716],[112,233,76,-0.14998545030103586],[112,233,77,-0.1451224839389518],[112,233,78,-0.13808164893102365],[112,233,79,-0.12976672225678954],[112,234,64,-0.13928875023306336],[112,234,65,-0.12757388647729714],[112,234,66,-0.11265719653376227],[112,234,67,-0.10266480417601398],[112,234,68,-0.08895232356235615],[112,234,69,-0.07286681348150263],[112,234,70,-0.0559832635285545],[112,234,71,-0.037115892099118156],[112,234,72,-0.01779214109449518],[112,234,73,-0.0017319122273296017],[112,234,74,-0.09969430170740604],[112,234,75,-0.1644659463588059],[112,234,76,-0.15848736895989549],[112,234,77,-0.15520915906613048],[112,234,78,-0.15045263281227456],[112,234,79,-0.1424601823053546],[112,235,64,-0.14026071607972773],[112,235,65,-0.12810838526798762],[112,235,66,-0.11256532402250752],[112,235,67,-0.1017048475309074],[112,235,68,-0.0860477483060515],[112,235,69,-0.07006325688009597],[112,235,70,-0.055183898883456706],[112,235,71,-0.03869596731953222],[112,235,72,-0.019096624580252887],[112,235,73,-0.004084054585226912],[112,235,74,0.0046840853126900285],[112,235,75,-0.07579980109727277],[112,235,76,-0.12803069044434534],[112,235,77,-0.13083064434949634],[112,235,78,-0.10613220638211156],[112,235,79,-0.1530295515937391],[112,236,64,-0.1612682208301544],[112,236,65,-0.14626197699453705],[112,236,66,-0.12891997015627768],[112,236,67,-0.1181382962232912],[112,236,68,-0.10127128150708498],[112,236,69,-0.08565548244280646],[112,236,70,-0.0693283341255353],[112,236,71,-0.05021525323129667],[112,236,72,-0.03220915667075175],[112,236,73,-0.019014719427481654],[112,236,74,-0.007303468251682904],[112,236,75,-0.08013614949874195],[112,236,76,-0.11907522202200146],[112,236,77,-0.119623547600908],[112,236,78,-0.09923886378675009],[112,236,79,-0.15969461365204243],[112,237,64,-0.16450524150582785],[112,237,65,-0.1465650650834342],[112,237,66,-0.12448899844471845],[112,237,67,-0.11030027835734996],[112,237,68,-0.09371185638359177],[112,237,69,-0.07696876408976183],[112,237,70,-0.05699977305014088],[112,237,71,-0.04059154398804833],[112,237,72,-0.024771805049526217],[112,237,73,-0.013409022942955581],[112,237,74,-0.032435660746635724],[112,237,75,-0.10454543249460319],[112,237,76,-0.14740457241932228],[112,237,77,-0.13893229971678467],[112,237,78,-0.13762857443843024],[112,237,79,-0.16158180724890314],[112,238,64,-0.1646141975825151],[112,238,65,-0.146748778136092],[112,238,66,-0.1250674400783685],[112,238,67,-0.10946228638802206],[112,238,68,-0.0946541430135884],[112,238,69,-0.07840030077752416],[112,238,70,-0.057437876866957636],[112,238,71,-0.04185856687215071],[112,238,72,-0.026795480073471142],[112,238,73,-0.01623258363006523],[112,238,74,-0.007843076322697647],[112,238,75,-0.05251270156726873],[112,238,76,-0.0982000667213663],[112,238,77,-0.10664970614411226],[112,238,78,-0.167682959640121],[112,238,79,-0.16004956669959758],[112,239,64,-0.17308602274549895],[112,239,65,-0.15518615391875737],[112,239,66,-0.13337184131693358],[112,239,67,-0.11627083615308777],[112,239,68,-0.09933460779098607],[112,239,69,-0.08364060843297233],[112,239,70,-0.06272704257128425],[112,239,71,-0.047336599238383056],[112,239,72,-0.03267125671087815],[112,239,73,-0.02130947316421821],[112,239,74,-0.0049427877453087354],[112,239,75,-0.021538905451213477],[112,239,76,-0.05981974237559773],[112,239,77,-0.0723933421640713],[112,239,78,-0.1440688241320165],[112,239,79,-0.15712255507838913],[112,240,64,-0.1714561025587274],[112,240,65,-0.15478015193020234],[112,240,66,-0.13707175001797178],[112,240,67,-0.11970283379115806],[112,240,68,-0.10058582976500152],[112,240,69,-0.08819248441323024],[112,240,70,-0.06674606592365474],[112,240,71,-0.047438926778234906],[112,240,72,-0.03417282489425481],[112,240,73,-0.023043678810880715],[112,240,74,-0.007497987489887142],[112,240,75,-0.01521445499231594],[112,240,76,-0.04483094803456053],[112,240,77,-0.06371165071985564],[112,240,78,-0.13424183860774308],[112,240,79,-0.1514013165578139],[112,241,64,-0.17137159338090982],[112,241,65,-0.15716964887482415],[112,241,66,-0.14595265922645145],[112,241,67,-0.13303195260329043],[112,241,68,-0.1147344127114191],[112,241,69,-0.09902433283708546],[112,241,70,-0.0795436110478568],[112,241,71,-0.06236707720343541],[112,241,72,-0.044141210844441045],[112,241,73,-0.03320480245312244],[112,241,74,-0.02226916173149071],[112,241,75,-0.012550545003191839],[112,241,76,0.00466869195136238],[112,241,77,0.021312092850557324],[112,241,78,0.037970229458879415],[112,241,79,0.05340526721808303],[112,242,64,-0.17439765270687724],[112,242,65,-0.1596748385927828],[112,242,66,-0.14780559147873118],[112,242,67,-0.1344451745423854],[112,242,68,-0.12028768363958442],[112,242,69,-0.10298297154317419],[112,242,70,-0.08265099951696414],[112,242,71,-0.06837294139392722],[112,242,72,-0.04943325228682744],[112,242,73,-0.03632594926497882],[112,242,74,-0.02774230186986231],[112,242,75,-0.01777060890568035],[112,242,76,-7.665563804423875E-4],[112,242,77,0.014606107507818877],[112,242,78,0.03393414314824676],[112,242,79,0.05024393859168576],[112,243,64,-0.17116684212069855],[112,243,65,-0.1585899333115177],[112,243,66,-0.14683338852492217],[112,243,67,-0.1333529302076562],[112,243,68,-0.12015059127102502],[112,243,69,-0.10242736854188897],[112,243,70,-0.08454582416929143],[112,243,71,-0.07098496989348921],[112,243,72,-0.05212703948788883],[112,243,73,-0.03832572914378559],[112,243,74,-0.029173766256411333],[112,243,75,-0.017201487793775054],[112,243,76,-0.003163222149658959],[112,243,77,0.010962327532701488],[112,243,78,0.0276338971226546],[112,243,79,0.04589015543820278],[112,244,64,-0.16545667812465253],[112,244,65,-0.1565981152253212],[112,244,66,-0.15209459601496675],[112,244,67,-0.14373896663235824],[112,244,68,-0.13438742132498616],[112,244,69,-0.1204525379524502],[112,244,70,-0.10718888427375778],[112,244,71,-0.09193220638686866],[112,244,72,-0.07744013559366539],[112,244,73,-0.06377651696504356],[112,244,74,-0.05446824181815507],[112,244,75,-0.04535941770200476],[112,244,76,-0.03318468397667477],[112,244,77,-0.020595508957302985],[112,244,78,-0.007349377764306081],[112,244,79,0.010301718220874612],[112,245,64,-0.1656588818590377],[112,245,65,-0.15720425387116577],[112,245,66,-0.15198303795629262],[112,245,67,-0.14403563397185962],[112,245,68,-0.13387799945605516],[112,245,69,-0.12162402168869192],[112,245,70,-0.10734911443724057],[112,245,71,-0.0916354486461626],[112,245,72,-0.07583110164411136],[112,245,73,-0.063245375394943],[112,245,74,-0.05600429518727425],[112,245,75,-0.04709965046034744],[112,245,76,-0.03636779743330947],[112,245,77,-0.022425927904140844],[112,245,78,-0.008339934393759803],[112,245,79,0.009964683478419278],[112,246,64,-0.16567585260688086],[112,246,65,-0.15647582598515017],[112,246,66,-0.1495424673101145],[112,246,67,-0.1421910991573489],[112,246,68,-0.1330725900704558],[112,246,69,-0.12020282055113385],[112,246,70,-0.10792240494166155],[112,246,71,-0.09279622729424336],[112,246,72,-0.07800116443296189],[112,246,73,-0.0661827227811476],[112,246,74,-0.05639663017869304],[112,246,75,-0.046194705258906725],[112,246,76,-0.03676883097116276],[112,246,77,-0.025922593162076304],[112,246,78,-0.011892936222504188],[112,246,79,0.0061880222014381175],[112,247,64,-0.1747572910720731],[112,247,65,-0.16394976737782524],[112,247,66,-0.15453226504071227],[112,247,67,-0.1464465890887691],[112,247,68,-0.13283047580949153],[112,247,69,-0.12168974043361333],[112,247,70,-0.10763126778281623],[112,247,71,-0.09490471339788815],[112,247,72,-0.08048461710718044],[112,247,73,-0.06713931704379683],[112,247,74,-0.056024622526645966],[112,247,75,-0.044901862180215246],[112,247,76,-0.03707407785385101],[112,247,77,-0.02554821064998585],[112,247,78,-0.011600854904501252],[112,247,79,0.005325787508509067],[112,248,64,-0.17437761376763583],[112,248,65,-0.1628695713396962],[112,248,66,-0.15509547746379707],[112,248,67,-0.1461779517278653],[112,248,68,-0.13229924365230017],[112,248,69,-0.11863143933536521],[112,248,70,-0.10499948544687396],[112,248,71,-0.09410128564597164],[112,248,72,-0.08105153077000612],[112,248,73,-0.06619822777469905],[112,248,74,-0.054978089186333796],[112,248,75,-0.04676211921159849],[112,248,76,-0.037237763228422725],[112,248,77,-0.027862477715874814],[112,248,78,-0.015037468193779949],[112,248,79,-0.0012553479994865113],[112,249,64,-0.16347694995373427],[112,249,65,-0.15488376432220052],[112,249,66,-0.1480062118839432],[112,249,67,-0.13925818565791365],[112,249,68,-0.12799466830159187],[112,249,69,-0.11454952289145226],[112,249,70,-0.09939392668732147],[112,249,71,-0.08582492055426111],[112,249,72,-0.07196075404575719],[112,249,73,-0.05857491833408328],[112,249,74,-0.04697725921221223],[112,249,75,-0.03741013736750911],[112,249,76,-0.02716620787134523],[112,249,77,-0.024411261511939585],[112,249,78,-0.019298891194292234],[112,249,79,-0.013453152317476985],[112,250,64,-0.16615394079765652],[112,250,65,-0.1562579468116675],[112,250,66,-0.15036519809158688],[112,250,67,-0.1417940987212314],[112,250,68,-0.1290690153604177],[112,250,69,-0.11502344991134303],[112,250,70,-0.10080733326995814],[112,250,71,-0.08773869123413583],[112,250,72,-0.07697535818250636],[112,250,73,-0.06377218930266865],[112,250,74,-0.05089562437899175],[112,250,75,-0.04172963420656077],[112,250,76,-0.031883215551876266],[112,250,77,-0.026389997014668556],[112,250,78,-0.03548526203924851],[112,250,79,-0.041555467965686044],[112,251,64,-0.16651379238559175],[112,251,65,-0.1552798111673684],[112,251,66,-0.14961458194279947],[112,251,67,-0.14101379612171078],[112,251,68,-0.1273678139155451],[112,251,69,-0.11575366768216529],[112,251,70,-0.1011167055390095],[112,251,71,-0.08948362456684009],[112,251,72,-0.07985753879659946],[112,251,73,-0.06803419893300211],[112,251,74,-0.05444214414336033],[112,251,75,-0.04326062627797627],[112,251,76,-0.03420771335336652],[112,251,77,-0.02845258159495828],[112,251,78,-0.046630300909596856],[112,251,79,-0.05414334757455288],[112,252,64,-0.1646006061475094],[112,252,65,-0.1491017496820924],[112,252,66,-0.13956731822552548],[112,252,67,-0.13095626854469622],[112,252,68,-0.11486625783728274],[112,252,69,-0.09974191898225986],[112,252,70,-0.08487112397489005],[112,252,71,-0.07281702664056278],[112,252,72,-0.06175725197672149],[112,252,73,-0.050144260636644955],[112,252,74,-0.040066536564781915],[112,252,75,-0.0289444582483718],[112,252,76,-0.019278381620239878],[112,252,77,-0.014078611104163558],[112,252,78,-0.041087238104763175],[112,252,79,-0.05356482420438748],[112,253,64,-0.17323615839654521],[112,253,65,-0.15681603758473167],[112,253,66,-0.1428005275641983],[112,253,67,-0.1335478364940228],[112,253,68,-0.11589170316166784],[112,253,69,-0.10344607160124564],[112,253,70,-0.092238060942493],[112,253,71,-0.07990600342496375],[112,253,72,-0.0690957091109645],[112,253,73,-0.06029309085148636],[112,253,74,-0.051858118298087855],[112,253,75,-0.039505076682217206],[112,253,76,-0.02686195838557434],[112,253,77,-0.026184867935225474],[112,253,78,-0.06610729703923347],[112,253,79,-0.07813186293832405],[112,254,64,-0.09139608550135804],[112,254,65,-0.08366027549831609],[112,254,66,-0.07404125237237426],[112,254,67,-0.0687620822682443],[112,254,68,-0.06073016320660609],[112,254,69,-0.05790286167609378],[112,254,70,-0.05708581497103064],[112,254,71,-0.05352712655689234],[112,254,72,-0.05079151564229772],[112,254,73,-0.04798301405254866],[112,254,74,-0.050090261966940094],[112,254,75,-0.04545045013769678],[112,254,76,-0.043475183956435515],[112,254,77,-0.049049926739852964],[112,254,78,-0.08635204166885402],[112,254,79,-0.1011300998963269],[112,255,64,-0.08851557969344323],[112,255,65,-0.08063348581183837],[112,255,66,-0.0718701358932385],[112,255,67,-0.06458184933065643],[112,255,68,-0.058665121454250416],[112,255,69,-0.05607815508284682],[112,255,70,-0.05527691841294953],[112,255,71,-0.05403475512694239],[112,255,72,-0.05019210142632324],[112,255,73,-0.04750010929213762],[112,255,74,-0.04812124812403199],[112,255,75,-0.04740535704423728],[112,255,76,-0.04445041908834839],[112,255,77,-0.047206284144770835],[112,255,78,-0.08385695334807824],[112,255,79,-0.10103883191941515],[112,256,64,-0.08715720261453541],[112,256,65,-0.07592451906566713],[112,256,66,-0.0695771012815366],[112,256,67,-0.061940897302315535],[112,256,68,-0.05431533142598106],[112,256,69,-0.05380270998352977],[112,256,70,-0.05156830534290086],[112,256,71,-0.05121310156778812],[112,256,72,-0.04934853891343541],[112,256,73,-0.046181764349413165],[112,256,74,-0.04757911871356053],[112,256,75,-0.04846618418096809],[112,256,76,-0.04619973155729529],[112,256,77,-0.046571751039758885],[112,256,78,-0.08426325715603943],[112,256,79,-0.10943658557092201],[112,257,64,-0.08359131011698345],[112,257,65,-0.07383969273752117],[112,257,66,-0.06789762257350146],[112,257,67,-0.05892164695248634],[112,257,68,-0.05129263427434551],[112,257,69,-0.05097523170400011],[112,257,70,-0.047853222908160534],[112,257,71,-0.045708951038858324],[112,257,72,-0.04471077061883254],[112,257,73,-0.04512780390901584],[112,257,74,-0.04475175160343924],[112,257,75,-0.04500989089559296],[112,257,76,-0.044749323093514023],[112,257,77,-0.0660805684995987],[112,257,78,-0.10761531419431541],[112,257,79,-0.13746930208186142],[112,258,64,-0.084145573697092],[112,258,65,-0.07284764109175182],[112,258,66,-0.06634102902653607],[112,258,67,-0.05911024897012686],[112,258,68,-0.055115575292254096],[112,258,69,-0.0533128051546711],[112,258,70,-0.047435183871746535],[112,258,71,-0.04425492017398751],[112,258,72,-0.04360851961413277],[112,258,73,-0.043960052612263975],[112,258,74,-0.044501584511612916],[112,258,75,-0.04312544544231564],[112,258,76,-0.04603858890898996],[112,258,77,-0.06485907073770046],[112,258,78,-0.1112117207503033],[112,258,79,-0.13853602370405058],[112,259,64,-0.0814561857934675],[112,259,65,-0.07160517479346964],[112,259,66,-0.06323268357441178],[112,259,67,-0.0553760177661319],[112,259,68,-0.051883136374983325],[112,259,69,-0.04997107522399391],[112,259,70,-0.042999049634157474],[112,259,71,-0.04085115787053541],[112,259,72,-0.042612465567424734],[112,259,73,-0.042371191231496984],[112,259,74,-0.042602858718711965],[112,259,75,-0.04147393020470434],[112,259,76,-0.04407727062558717],[112,259,77,-0.05154533950188753],[112,259,78,-0.10521911170255555],[112,259,79,-0.14558116617120398],[112,260,64,-0.10371257549478967],[112,260,65,-0.09775727712644425],[112,260,66,-0.09095470366044743],[112,260,67,-0.08769662415655952],[112,260,68,-0.08737761389327382],[112,260,69,-0.09111641555838128],[112,260,70,-0.087204255062125],[112,260,71,-0.08674420040045887],[112,260,72,-0.08824314412492056],[112,260,73,-0.08941268078300636],[112,260,74,-0.08840295695164334],[112,260,75,-0.08526408184191771],[112,260,76,-0.08840826237937555],[112,260,77,-0.09016992866821663],[112,260,78,-0.12671737267415756],[112,260,79,-0.16013914420968922],[112,261,64,-0.09779187392971372],[112,261,65,-0.09258180845202649],[112,261,66,-0.08672844484881656],[112,261,67,-0.0882313478154244],[112,261,68,-0.08800172285642621],[112,261,69,-0.09014668586603881],[112,261,70,-0.08615576961629842],[112,261,71,-0.08370787717836072],[112,261,72,-0.0823157567409922],[112,261,73,-0.08139825161623666],[112,261,74,-0.0803253185533205],[112,261,75,-0.07603737525751735],[112,261,76,-0.08195806748149653],[112,261,77,-0.08586021247391955],[112,261,78,-0.11508134899712066],[112,261,79,-0.15099275758290923],[112,262,64,-0.10362314181554516],[112,262,65,-0.09763941311670327],[112,262,66,-0.09151931518838627],[112,262,67,-0.09159094971771337],[112,262,68,-0.08827377905900205],[112,262,69,-0.09132040012312585],[112,262,70,-0.08855730382244154],[112,262,71,-0.08571650735201093],[112,262,72,-0.08286426347419426],[112,262,73,-0.08080353720315976],[112,262,74,-0.08160506475755874],[112,262,75,-0.07585117060244179],[112,262,76,-0.08107990930307975],[112,262,77,-0.08292443498484021],[112,262,78,-0.11943506664154743],[112,262,79,-0.1671030289189535],[112,263,64,-0.09807336597690508],[112,263,65,-0.09562291450020091],[112,263,66,-0.08849640772927239],[112,263,67,-0.08619680630268262],[112,263,68,-0.0835439209645935],[112,263,69,-0.08812228339264053],[112,263,70,-0.08642134886291583],[112,263,71,-0.08411822437342509],[112,263,72,-0.08201045857498195],[112,263,73,-0.08203391321535035],[112,263,74,-0.08116810705642168],[112,263,75,-0.07771598578418373],[112,263,76,-0.08279081143160613],[112,263,77,-0.08098505362724603],[112,263,78,-0.11157343050628868],[112,263,79,-0.15842319328101923],[112,264,64,-0.09335883955488865],[112,264,65,-0.09083718850491254],[112,264,66,-0.0833704216245856],[112,264,67,-0.08134406508999915],[112,264,68,-0.08001557877028434],[112,264,69,-0.08257143914905762],[112,264,70,-0.08547653956615381],[112,264,71,-0.08321822990824868],[112,264,72,-0.08181808535950733],[112,264,73,-0.08277676068386997],[112,264,74,-0.0831822830533984],[112,264,75,-0.08209423815227296],[112,264,76,-0.08186706942340065],[112,264,77,-0.08108028797230717],[112,264,78,-0.1131684981788054],[112,264,79,-0.1587164435419909],[112,265,64,-0.09093414904667703],[112,265,65,-0.08623014217607078],[112,265,66,-0.07877294836956303],[112,265,67,-0.07682925674898157],[112,265,68,-0.07551633760119372],[112,265,69,-0.07713025462606653],[112,265,70,-0.08296635636738005],[112,265,71,-0.08577652545675474],[112,265,72,-0.08597231613708677],[112,265,73,-0.08914423468135685],[112,265,74,-0.09045308259476814],[112,265,75,-0.10904912338640463],[112,265,76,-0.1329479819147896],[112,265,77,-0.16089485478278684],[112,265,78,-0.18470521295978115],[112,265,79,-0.17853716561148736],[112,266,64,-0.09017996293264735],[112,266,65,-0.08434410464208053],[112,266,66,-0.0768805620686654],[112,266,67,-0.0771047562922114],[112,266,68,-0.07584772806960385],[112,266,69,-0.07619593608156097],[112,266,70,-0.08338660362830579],[112,266,71,-0.08766818626852466],[112,266,72,-0.09051291787775824],[112,266,73,-0.09114003974123955],[112,266,74,-0.09292542047572935],[112,266,75,-0.10615758917832753],[112,266,76,-0.13634305818202275],[112,266,77,-0.15705977242564356],[112,266,78,-0.18699025580444995],[112,266,79,-0.17559187879365443],[112,267,64,-0.08714542792925062],[112,267,65,-0.08214502884399648],[112,267,66,-0.07477620211636456],[112,267,67,-0.07543311576523741],[112,267,68,-0.0749533653295493],[112,267,69,-0.07692964161107559],[112,267,70,-0.07822910570742023],[112,267,71,-0.08370084809277363],[112,267,72,-0.09076731629643743],[112,267,73,-0.09074268688259633],[112,267,74,-0.09344173333632573],[112,267,75,-0.1174012159527951],[112,267,76,-0.15129323205554018],[112,267,77,-0.17762489210679178],[112,267,78,-0.19680619149901413],[112,267,79,-0.1797273018663863],[112,268,64,-0.08038002530216481],[112,268,65,-0.07388632222941179],[112,268,66,-0.06662216725919848],[112,268,67,-0.06443870171472076],[112,268,68,-0.06366168770955301],[112,268,69,-0.06304576049925838],[112,268,70,-0.06057304234510311],[112,268,71,-0.06609462432603677],[112,268,72,-0.07272755301523295],[112,268,73,-0.07255766383422607],[112,268,74,-0.11489011635144702],[112,268,75,-0.13852593286518222],[112,268,76,-0.16663655443139497],[112,268,77,-0.18869833050642373],[112,268,78,-0.17470260904490587],[112,268,79,-0.1556361399871339],[112,269,64,-0.07691692785633569],[112,269,65,-0.06771605990065811],[112,269,66,-0.06425358615880242],[112,269,67,-0.06251079371735732],[112,269,68,-0.06233840869376193],[112,269,69,-0.06419555779077825],[112,269,70,-0.06046279938210672],[112,269,71,-0.0649484167825405],[112,269,72,-0.07017804040366166],[112,269,73,-0.07037714575748638],[112,269,74,-0.12553967789608972],[112,269,75,-0.15061307003326707],[112,269,76,-0.17304388552888825],[112,269,77,-0.18619047268457112],[112,269,78,-0.17236386995326697],[112,269,79,-0.15498967191597396],[112,270,64,-0.08207794963109642],[112,270,65,-0.07065885953984863],[112,270,66,-0.0678626842114751],[112,270,67,-0.06463768583707853],[112,270,68,-0.06533251910272593],[112,270,69,-0.06587594110291213],[112,270,70,-0.062065930361712526],[112,270,71,-0.06336748245935958],[112,270,72,-0.06740207094042969],[112,270,73,-0.07047431795617239],[112,270,74,-0.13241482675091898],[112,270,75,-0.15182704884474701],[112,270,76,-0.16780429872553343],[112,270,77,-0.1776122314221566],[112,270,78,-0.16558898479213335],[112,270,79,-0.1509175891119565],[112,271,64,-0.0780786748078846],[112,271,65,-0.06907014066931964],[112,271,66,-0.06475950339822512],[112,271,67,-0.062454811217805856],[112,271,68,-0.06503137903883889],[112,271,69,-0.06200930158585978],[112,271,70,-0.05866028704485961],[112,271,71,-0.059833352499914186],[112,271,72,-0.06276474394887192],[112,271,73,-0.06737164745200569],[112,271,74,-0.13024280202443106],[112,271,75,-0.1469272208870167],[112,271,76,-0.16891190717022875],[112,271,77,-0.1707483218166467],[112,271,78,-0.1592682146088425],[112,271,79,-0.14621562561922608],[112,272,64,-0.07402697774762931],[112,272,65,-0.06880258965524212],[112,272,66,-0.06283351837552388],[112,272,67,-0.059159085874117195],[112,272,68,-0.06423963606582925],[112,272,69,-0.05956349192033155],[112,272,70,-0.0557948103598823],[112,272,71,-0.056672704850574726],[112,272,72,-0.05873497357802536],[112,272,73,-0.060996727746726556],[112,272,74,-0.12460275641329582],[112,272,75,-0.14933049942355298],[112,272,76,-0.1756367213080728],[112,272,77,-0.1681506732000712],[112,272,78,-0.1571379106340645],[112,272,79,-0.14372504719304222],[112,273,64,-0.07610296809163442],[112,273,65,-0.07015139283976901],[112,273,66,-0.059337061307542224],[112,273,67,-0.055507447236767],[112,273,68,-0.05884089088241696],[112,273,69,-0.05603824829220338],[112,273,70,-0.05104590142982862],[112,273,71,-0.05614457060433209],[112,273,72,-0.05594794846466655],[112,273,73,-0.057753300520228194],[112,273,74,-0.07664812549912528],[112,273,75,-0.07494998096525265],[112,273,76,-0.06946990577528231],[112,273,77,-0.062358005771962766],[112,273,78,-0.053410219863394504],[112,273,79,-0.044078374522746586],[112,274,64,-0.07688492775565141],[112,274,65,-0.06736614931381976],[112,274,66,-0.05952514806999906],[112,274,67,-0.05522676222153252],[112,274,68,-0.05706364813866187],[112,274,69,-0.0558451654852901],[112,274,70,-0.05278428664243032],[112,274,71,-0.05483240445859695],[112,274,72,-0.05652730785183882],[112,274,73,-0.0581772203724264],[112,274,74,-0.07224098407968312],[112,274,75,-0.07371869316539315],[112,274,76,-0.06692155172938574],[112,274,77,-0.0588097909326373],[112,274,78,-0.051331341656943585],[112,274,79,-0.04227016238788532],[112,275,64,-0.07295048827259357],[112,275,65,-0.062472312939438716],[112,275,66,-0.05771855276636738],[112,275,67,-0.05318823482033831],[112,275,68,-0.05156039522108696],[112,275,69,-0.05396925710648998],[112,275,70,-0.05126642466440631],[112,275,71,-0.05231884592790229],[112,275,72,-0.05262694619019766],[112,275,73,-0.05569079879072959],[112,275,74,-0.0729596325228522],[112,275,75,-0.07534898129615324],[112,275,76,-0.07218408505769464],[112,275,77,-0.06370312682782309],[112,275,78,-0.056744480940707],[112,275,79,-0.048969776023121275],[112,276,64,-0.0581384910176074],[112,276,65,-0.05059478814130116],[112,276,66,-0.04542702564533106],[112,276,67,-0.040755430916437504],[112,276,68,-0.03862130716534208],[112,276,69,-0.039266021961077466],[112,276,70,-0.04293434892899886],[112,276,71,-0.0394477925519792],[112,276,72,-0.041095449567849926],[112,276,73,-0.04078300610868522],[112,276,74,-0.056631743835590685],[112,276,75,-0.06793354987288713],[112,276,76,-0.07471604859706593],[112,276,77,-0.07237430144918064],[112,276,78,-0.06380661422855308],[112,276,79,-0.056784034737447614],[112,277,64,-0.04292412656814236],[112,277,65,-0.04233706014395041],[112,277,66,-0.04054643891696713],[112,277,67,-0.039708107109964356],[112,277,68,-0.040042861064357546],[112,277,69,-0.04010253891670495],[112,277,70,-0.043016361422256975],[112,277,71,-0.0394690165678585],[112,277,72,-0.038102114686160496],[112,277,73,-0.036643878844745514],[112,277,74,-0.05195292475562116],[112,277,75,-0.06519304645886154],[112,277,76,-0.0734809548794194],[112,277,77,-0.0701950453235888],[112,277,78,-0.06397965428525643],[112,277,79,-0.05224616769993351],[112,278,64,-0.04216910773011457],[112,278,65,-0.04125470948296571],[112,278,66,-0.042969235420839955],[112,278,67,-0.04153144335751968],[112,278,68,-0.041582077005351624],[112,278,69,-0.039893300224177364],[112,278,70,-0.041829951640220235],[112,278,71,-0.03826078564789339],[112,278,72,-0.03563472964828955],[112,278,73,-0.03476041905032412],[112,278,74,-0.04674043785166956],[112,278,75,-0.0634052383318235],[112,278,76,-0.06833233544128665],[112,278,77,-0.06421527422704867],[112,278,78,-0.05846500522535991],[112,278,79,-0.046468896321828435],[112,279,64,-0.03722279384200448],[112,279,65,-0.03600449189691615],[112,279,66,-0.036863078041362796],[112,279,67,-0.03954505067133131],[112,279,68,-0.03682271419690181],[112,279,69,-0.03578762984252462],[112,279,70,-0.037030442172488694],[112,279,71,-0.03365473380376901],[112,279,72,-0.032847811294603346],[112,279,73,-0.032351704888542485],[112,279,74,-0.041849255688619066],[112,279,75,-0.06094650240788899],[112,279,76,-0.06795084310481678],[112,279,77,-0.05953158422063781],[112,279,78,-0.05479099234797036],[112,279,79,-0.04197930870454594],[112,280,64,-0.02965479208440866],[112,280,65,-0.028960968821276384],[112,280,66,-0.03169656738253839],[112,280,67,-0.03541808320145411],[112,280,68,-0.03205469562771203],[112,280,69,-0.03247887500330888],[112,280,70,-0.031080336544222063],[112,280,71,-0.028945227210173605],[112,280,72,-0.029616367570588713],[112,280,73,-0.029611715463316278],[112,280,74,-0.042188075124521274],[112,280,75,-0.05964960919990664],[112,280,76,-0.06673072051407528],[112,280,77,-0.057891603855128065],[112,280,78,-0.05017795601227326],[112,280,79,-0.04076681703967011],[112,281,64,-0.02455594228458989],[112,281,65,-0.02134027190532506],[112,281,66,-0.024360908759156398],[112,281,67,-0.029493544040944987],[112,281,68,-0.028130172566200345],[112,281,69,-0.03125997554892906],[112,281,70,-0.029046971552397854],[112,281,71,-0.026417764105998165],[112,281,72,-0.02518324028371538],[112,281,73,-0.02634272668413664],[112,281,74,-0.06224128354614142],[112,281,75,-0.0770494304852474],[112,281,76,-0.07439051101879973],[112,281,77,-0.06549276718684721],[112,281,78,-0.056732199455165555],[112,281,79,-0.04695769477543668],[112,282,64,-0.023242399638887037],[112,282,65,-0.020362687813823027],[112,282,66,-0.022495675362666265],[112,282,67,-0.026040065082566136],[112,282,68,-0.02830854979084367],[112,282,69,-0.029786535483546803],[112,282,70,-0.02601880099383437],[112,282,71,-0.026188157977271795],[112,282,72,-0.024359735230878837],[112,282,73,-0.026290517443494865],[112,282,74,-0.05413960766626133],[112,282,75,-0.06999002307729203],[112,282,76,-0.07256468358379384],[112,282,77,-0.06286038304574892],[112,282,78,-0.05461862172613155],[112,282,79,-0.046259521756043975],[112,283,64,-0.019798998525209333],[112,283,65,-0.017482848529397396],[112,283,66,-0.020170660753004672],[112,283,67,-0.021840256407596605],[112,283,68,-0.02295783655668026],[112,283,69,-0.024736425499992942],[112,283,70,-0.021024802848939435],[112,283,71,-0.021893804630459687],[112,283,72,-0.021149552756120578],[112,283,73,-0.03145663346826589],[112,283,74,-0.07104952917205465],[112,283,75,-0.08599451175312897],[112,283,76,-0.07717335220015714],[112,283,77,-0.06842701971792167],[112,283,78,-0.06053991755378069],[112,283,79,-0.047710454635747135],[112,284,64,-0.033454139985131935],[112,284,65,-0.026434077569527648],[112,284,66,-0.02225432827258563],[112,284,67,-0.021140544781270518],[112,284,68,-0.016189496996206004],[112,284,69,-0.013012807486257091],[112,284,70,-0.008373185890324583],[112,284,71,-0.007477795845266429],[112,284,72,-0.006231958082225819],[112,284,73,-0.018564680906600503],[112,284,74,-0.06588723453458038],[112,284,75,-0.08719673086565768],[112,284,76,-0.0785562085644404],[112,284,77,-0.07034126870775873],[112,284,78,-0.06038715617988283],[112,284,79,-0.04674406908346346],[112,285,64,-0.038821225446030984],[112,285,65,-0.030329758582885773],[112,285,66,-0.02581707475568145],[112,285,67,-0.026395070411633713],[112,285,68,-0.020041522648856128],[112,285,69,-0.01618470112879046],[112,285,70,-0.01609011506687106],[112,285,71,-0.012355371633479266],[112,285,72,-0.008570260819352471],[112,285,73,-0.02040602758161349],[112,285,74,-0.06692046658696432],[112,285,75,-0.08606553667295362],[112,285,76,-0.07772948744253622],[112,285,77,-0.07033511592980507],[112,285,78,-0.058689641141616095],[112,285,79,-0.043323727965503406],[112,286,64,-0.039740551264413795],[112,286,65,-0.029544090658497363],[112,286,66,-0.024281737058645496],[112,286,67,-0.02399190077837031],[112,286,68,-0.017588106128315732],[112,286,69,-0.01464967774838083],[112,286,70,-0.015188561875534697],[112,286,71,-0.011764368464215302],[112,286,72,-0.007328557048895956],[112,286,73,-0.016778950882041562],[112,286,74,-0.06383034898941196],[112,286,75,-0.08625350371138352],[112,286,76,-0.0767879394800684],[112,286,77,-0.06974185013506692],[112,286,78,-0.0592042429283213],[112,286,79,-0.046295565365266744],[112,287,64,-0.03703678698115879],[112,287,65,-0.02833327598021937],[112,287,66,-0.019555739139184743],[112,287,67,-0.017772308459486505],[112,287,68,-0.011610179507153692],[112,287,69,-0.010937288295271942],[112,287,70,-0.012748284653498976],[112,287,71,-0.010552709944853557],[112,287,72,-0.008424853022450655],[112,287,73,-0.011159701861428055],[112,287,74,-0.0492325304656169],[112,287,75,-0.0786953307915057],[112,287,76,-0.07497217409605014],[112,287,77,-0.06769582619075884],[112,287,78,-0.05621277967508331],[112,287,79,-0.04297769927318762],[112,288,64,-0.03233332396973508],[112,288,65,-0.025565659731294425],[112,288,66,-0.01734988129477919],[112,288,67,-0.012904242852371552],[112,288,68,-0.008191745291553434],[112,288,69,-0.00721585528599572],[112,288,70,-0.01130302657951461],[112,288,71,-0.009392118228373103],[112,288,72,-0.006035572509283028],[112,288,73,-0.010226906250786927],[112,288,74,-0.04134888952048121],[112,288,75,-0.07475956642383061],[112,288,76,-0.07503032284184341],[112,288,77,-0.06573490483458516],[112,288,78,-0.052341325811724404],[112,288,79,-0.03719073979090473],[112,289,64,-0.022822035851650033],[112,289,65,-0.014506585198440988],[112,289,66,-0.006622454783632742],[112,289,67,-7.945715078107596E-4],[112,289,68,0.0034854305709790395],[112,289,69,0.004950860757069589],[112,289,70,5.350882925366507E-4],[112,289,71,0.0022297665002734973],[112,289,72,0.0027253780993600624],[112,289,73,-0.016187675563757824],[112,289,74,-0.06332373748638473],[112,289,75,-0.09359373040161595],[112,289,76,-0.08048675309717068],[112,289,77,-0.06999664184026475],[112,289,78,-0.057718314107778834],[112,289,79,-0.04087668711981837],[112,290,64,-0.024446118667533753],[112,290,65,-0.014180888553902996],[112,290,66,-0.0079591348812902],[112,290,67,-0.004275114607261474],[112,290,68,8.296196924903604E-4],[112,290,69,0.002704455478987247],[112,290,70,0.002292450990809658],[112,290,71,0.00524290202972344],[112,290,72,0.0031985107639998234],[112,290,73,-0.004897331000041763],[112,290,74,-0.044281737780545935],[112,290,75,-0.08552486583310376],[112,290,76,-0.07895139031602105],[112,290,77,-0.06650928817511134],[112,290,78,-0.05406208129303483],[112,290,79,-0.03626767312660334],[112,291,64,-0.023735261456932083],[112,291,65,-0.011848565716089263],[112,291,66,-0.007477550877550906],[112,291,67,-0.005971701567416998],[112,291,68,2.4423723967673117E-4],[112,291,69,0.004654656299393642],[112,291,70,0.006995914839679776],[112,291,71,0.007619825325605817],[112,291,72,0.0061404173289068276],[112,291,73,-0.003293077038021626],[112,291,74,-0.02492795899140442],[112,291,75,-0.07165281604741688],[112,291,76,-0.08125703837247969],[112,291,77,-0.07038909975573743],[112,291,78,-0.05597880130374408],[112,291,79,-0.03626510113005371],[112,292,64,-0.021506500019871887],[112,292,65,-0.01705943788146333],[112,292,66,-0.01876965445806191],[112,292,67,-0.020662968110855454],[112,292,68,-0.020713928671719117],[112,292,69,-0.022353282013299884],[112,292,70,-0.02103812476577241],[112,292,71,-0.023381948492145276],[112,292,72,-0.026253988661618335],[112,292,73,-0.03463854102525646],[112,292,74,-0.04860341869338084],[112,292,75,-0.07625500893443228],[112,292,76,-0.07748206507299679],[112,292,77,-0.06432645175250892],[112,292,78,-0.04764831603285749],[112,292,79,-0.03245493344773953],[112,293,64,-0.024072259749844865],[112,293,65,-0.022412785773787802],[112,293,66,-0.02018469740099365],[112,293,67,-0.02269328679789545],[112,293,68,-0.02133189398073703],[112,293,69,-0.02306517777662427],[112,293,70,-0.02043146418298767],[112,293,71,-0.01859577174519217],[112,293,72,-0.02267758565279033],[112,293,73,-0.0306392821304138],[112,293,74,-0.04398306492543396],[112,293,75,-0.07142669928679118],[112,293,76,-0.07354895657365881],[112,293,77,-0.05879519623010146],[112,293,78,-0.043427157118487464],[112,293,79,-0.02751128299903985],[112,294,64,-0.025229775586716414],[112,294,65,-0.025053555673704],[112,294,66,-0.022856252200385993],[112,294,67,-0.023035878364432348],[112,294,68,-0.0207597153149177],[112,294,69,-0.019418877867559116],[112,294,70,-0.018992923797348342],[112,294,71,-0.01457755000104144],[112,294,72,-0.017633188312923508],[112,294,73,-0.023228667376796422],[112,294,74,-0.03712590073623834],[112,294,75,-0.07365813984248439],[112,294,76,-0.07636264255509301],[112,294,77,-0.05854460759275626],[112,294,78,-0.04760052213842597],[112,294,79,-0.03122201859579324],[112,295,64,-0.026362107059583896],[112,295,65,-0.023807583062528018],[112,295,66,-0.021736449649707577],[112,295,67,-0.0232429375979425],[112,295,68,-0.020845813624130217],[112,295,69,-0.018731090756562166],[112,295,70,-0.020237443936553627],[112,295,71,-0.01548550893236899],[112,295,72,-0.01591430435554001],[112,295,73,-0.019442887840960557],[112,295,74,-0.02229725595990297],[112,295,75,-0.023396757808779173],[112,295,76,-0.058036631476773064],[112,295,77,-0.05705201461027676],[112,295,78,-0.04231374650976996],[112,295,79,-0.029316384408715812],[112,296,64,-0.024910722881174324],[112,296,65,-0.024899957772222633],[112,296,66,-0.02265161715831067],[112,296,67,-0.020132866747166855],[112,296,68,-0.01769801657395826],[112,296,69,-0.016791974753470162],[112,296,70,-0.020875332030040744],[112,296,71,-0.01675058845771773],[112,296,72,-0.013555229755737148],[112,296,73,-0.01723876073792019],[112,296,74,-0.01863414298482185],[112,296,75,-0.019203364391009087],[112,296,76,-0.05341864130497532],[112,296,77,-0.05541938395271839],[112,296,78,-0.041872359461169906],[112,296,79,-0.028461179835188977],[112,297,64,-0.026457952641659892],[112,297,65,-0.030516944527100222],[112,297,66,-0.029280004209067033],[112,297,67,-0.02585627729296955],[112,297,68,-0.0240714284949732],[112,297,69,-0.022532656560672285],[112,297,70,-0.024886445695149903],[112,297,71,-0.01959912585116213],[112,297,72,-0.01154369538927108],[112,297,73,-0.009472010917205197],[112,297,74,-0.007581878094148162],[112,297,75,-0.01924355886070949],[112,297,76,-0.06416271204255702],[112,297,77,-0.060779800428356345],[112,297,78,-0.047138729627846904],[112,297,79,-0.03170349531713787],[112,298,64,-0.02619142457185014],[112,298,65,-0.029226583020493267],[112,298,66,-0.029926000640757143],[112,298,67,-0.02819354955475912],[112,298,68,-0.026313786288712025],[112,298,69,-0.024777492831794076],[112,298,70,-0.027270684095095074],[112,298,71,-0.018269007443598682],[112,298,72,-0.010218585127801778],[112,298,73,-0.007208818117811544],[112,298,74,-0.004900165297919701],[112,298,75,-0.021282438974651516],[112,298,76,-0.06432689977904074],[112,298,77,-0.05796770831853196],[112,298,78,-0.04382975953381579],[112,298,79,-0.028324947040240356],[112,299,64,-0.024804572835143632],[112,299,65,-0.025548098362509236],[112,299,66,-0.028013475097857364],[112,299,67,-0.027228988794680567],[112,299,68,-0.023826346636324734],[112,299,69,-0.023592066956525923],[112,299,70,-0.025270712272287055],[112,299,71,-0.01665868452692812],[112,299,72,-0.007945019588501148],[112,299,73,-0.004625388394782097],[112,299,74,-0.0022380097461519102],[112,299,75,-0.018643255432533885],[112,299,76,-0.06060958040199837],[112,299,77,-0.059009324608745084],[112,299,78,-0.04272295591130176],[112,299,79,-0.0297133157886168],[112,300,64,-0.02101985074812393],[112,300,65,-0.019517798119675307],[112,300,66,-0.020988418417714108],[112,300,67,-0.017888985738932855],[112,300,68,-0.01193555967811874],[112,300,69,-0.013004507479632138],[112,300,70,-0.01495983800884676],[112,300,71,-0.012979733771489664],[112,300,72,-0.006944818841916868],[112,300,73,-0.0057205120532363915],[112,300,74,-0.0053004984511533446],[112,300,75,-0.00572995867042797],[112,300,76,-0.007232876651016858],[112,300,77,-0.014232194128170972],[112,300,78,-0.024125565105847697],[112,300,79,-0.021874248445555685],[112,301,64,-0.020583685972558108],[112,301,65,-0.019678130088492618],[112,301,66,-0.020164918386540796],[112,301,67,-0.014214759556893414],[112,301,68,-0.009767144278713988],[112,301,69,-0.007919342582891231],[112,301,70,-0.01099939073503415],[112,301,71,-0.009154078533889734],[112,301,72,-0.0069657915038779245],[112,301,73,-0.007995392850925084],[112,301,74,-0.006739800950237809],[112,301,75,-0.0064660942355561635],[112,301,76,-0.003922993645563019],[112,301,77,-0.009851118814840215],[112,301,78,-0.020426025518873323],[112,301,79,-0.017300542644872626],[112,302,64,-0.018134977849148665],[112,302,65,-0.018233204001024253],[112,302,66,-0.017976842666696455],[112,302,67,-0.010058507664590682],[112,302,68,-0.007796874361661085],[112,302,69,-0.0018270638018799273],[112,302,70,-8.097336414810558E-4],[112,302,71,-0.002283383248605733],[112,302,72,-0.002117042666355373],[112,302,73,-0.0028677896039046163],[112,302,74,-0.003678348110583901],[112,302,75,-4.073079122831613E-4],[112,302,76,0.004978809109022431],[112,302,77,4.5213463239530353E-4],[112,302,78,-0.016215403696170187],[112,302,79,-0.0182571032905007],[112,303,64,-0.015110258704289933],[112,303,65,-0.017240680648864255],[112,303,66,-0.01738447073355387],[112,303,67,-0.00998343837695212],[112,303,68,-0.005165027297570415],[112,303,69,0.0018148995826060138],[112,303,70,8.966334791697256E-4],[112,303,71,-8.944468760337942E-4],[112,303,72,-0.001382362357532689],[112,303,73,-0.0035873856127579262],[112,303,74,-0.004646817288463223],[112,303,75,-9.127548359727095E-4],[112,303,76,0.00478982851960498],[112,303,77,-0.006128092058539725],[112,303,78,-0.019059876920013236],[112,303,79,-0.01927903770442192],[112,304,64,-0.013540618687378658],[112,304,65,-0.016004437193115104],[112,304,66,-0.014925705385343102],[112,304,67,-0.008200656213722221],[112,304,68,-0.0013008259297276892],[112,304,69,0.0032363442465957043],[112,304,70,6.344915743055346E-4],[112,304,71,-0.0020066624213118944],[112,304,72,-8.979591414196159E-4],[112,304,73,-0.0037422761460769727],[112,304,74,-0.004572465142623147],[112,304,75,5.96906246990582E-4],[112,304,76,0.006042540547805474],[112,304,77,-0.0011616707831605087],[112,304,78,-0.01388180287081673],[112,304,79,-0.017465463497314128],[112,305,64,-0.014077903130430752],[112,305,65,-0.01595427613199371],[112,305,66,-0.013589955430553635],[112,305,67,-0.008153171856185054],[112,305,68,-8.925549880950262E-4],[112,305,69,0.0030143743656769195],[112,305,70,0.0010851474379562354],[112,305,71,-0.0035362834653742126],[112,305,72,-0.0023937890701725487],[112,305,73,-0.0027966563120603305],[112,305,74,-0.002083132975730123],[112,305,75,7.946487725929291E-4],[112,305,76,0.006435828383127437],[112,305,77,-0.001569796037037021],[112,305,78,-0.01378868516505305],[112,305,79,-0.01767551431985894],[112,306,64,-0.016915463014854165],[112,306,65,-0.018846900584454443],[112,306,66,-0.015524881369812456],[112,306,67,-0.008476417213858903],[112,306,68,-0.002455360089374539],[112,306,69,0.002098170877522898],[112,306,70,8.101829356773754E-4],[112,306,71,-0.0025059723506049847],[112,306,72,-0.0030925647635701298],[112,306,73,-3.8201625960869456E-4],[112,306,74,-0.002326306699712441],[112,306,75,0.003080750550073383],[112,306,76,0.007998375944032132],[112,306,77,0.002942679166125707],[112,306,78,-0.013403206621215774],[112,306,79,-0.017096387941554145],[112,307,64,-0.017317931695970346],[112,307,65,-0.01757347504133437],[112,307,66,-0.013352397563788587],[112,307,67,-0.0074158816885669665],[112,307,68,-9.972794092846793E-4],[112,307,69,0.002355935265334938],[112,307,70,-4.2906496170627695E-5],[112,307,71,-0.001352081767467303],[112,307,72,-5.915697376370002E-4],[112,307,73,0.0023686091050409697],[112,307,74,7.156885481674896E-4],[112,307,75,0.004912534662939096],[112,307,76,0.008915431040573463],[112,307,77,0.0055299195499680966],[112,307,78,-0.013660591452688393],[112,307,79,-0.015766984652806418],[112,308,64,-0.017610126445116725],[112,308,65,-0.012846518237224117],[112,308,66,-0.003338603876863036],[112,308,67,0.00499117008640193],[112,308,68,0.011058398772652606],[112,308,69,0.014385695239664778],[112,308,70,0.016088128332393425],[112,308,71,0.016854951811775473],[112,308,72,0.018914975987312704],[112,308,73,0.019900325637732044],[112,308,74,0.014550032157395892],[112,308,75,0.018988207807128135],[112,308,76,0.021176719324684914],[112,308,77,2.2484175310013427E-4],[112,308,78,-0.025813181792289343],[112,308,79,-0.027090001227566857],[112,309,64,-0.014738134504356667],[112,309,65,-0.010692387126719716],[112,309,66,-0.0010477743352103053],[112,309,67,0.004774283116569494],[112,309,68,0.009686454129694669],[112,309,69,0.012209729086151089],[112,309,70,0.01713316631781006],[112,309,71,0.019975369352713115],[112,309,72,0.0205580383191437],[112,309,73,0.020604938367467407],[112,309,74,0.015416502982446206],[112,309,75,0.019461770896443978],[112,309,76,0.02476257962819435],[112,309,77,0.01750416251783614],[112,309,78,0.00843186467894795],[112,309,79,0.013485639454526133],[112,310,64,-0.00788578359665873],[112,310,65,-0.005050237859094614],[112,310,66,0.003033330906800677],[112,310,67,0.009430667084669428],[112,310,68,0.01495570919131882],[112,310,69,0.018642164344489426],[112,310,70,0.023885964890533767],[112,310,71,0.026391721036359297],[112,310,72,0.027277976479753538],[112,310,73,0.029289160283634902],[112,310,74,0.026041425327830686],[112,310,75,0.029262534651871508],[112,310,76,0.03593104773192492],[112,310,77,0.026048760458358248],[112,310,78,0.01499859756863716],[112,310,79,0.017606183849861234],[112,311,64,-0.006382527156327061],[112,311,65,-0.0036605440658834393],[112,311,66,0.0036286233263727874],[112,311,67,0.008889233911099942],[112,311,68,0.016282494413651885],[112,311,69,0.020085560144027223],[112,311,70,0.025644724633228477],[112,311,71,0.028790165898050557],[112,311,72,0.027402873068596553],[112,311,73,0.030254578889979594],[112,311,74,0.030533813775648663],[112,311,75,0.033023743168802716],[112,311,76,0.03152319520592924],[112,311,77,0.022732101233915194],[112,311,78,0.012647106540333047],[112,311,79,0.023602979271959673],[112,312,64,0.0028387464189386785],[112,312,65,0.005789156213494087],[112,312,66,0.010399751945669403],[112,312,67,0.015412714465853614],[112,312,68,0.024574599035380534],[112,312,69,0.03058679771873718],[112,312,70,0.03464273400032669],[112,312,71,0.03650920571502374],[112,312,72,0.034906671730942515],[112,312,73,0.035453422469035406],[112,312,74,0.036933777406272406],[112,312,75,0.038677666245967926],[112,312,76,0.03662396974532206],[112,312,77,0.02654422247604006],[112,312,78,0.016907264240027406],[112,312,79,0.027807055523607266],[112,313,64,0.005794391641612537],[112,313,65,0.00751350363859124],[112,313,66,0.012202432814703387],[112,313,67,0.016939821631977603],[112,313,68,0.028230812741614736],[112,313,69,0.03334107575058737],[112,313,70,0.03552988237692806],[112,313,71,0.040058682473858756],[112,313,72,0.03728120550805748],[112,313,73,0.03674020331022283],[112,313,74,0.03688823486641253],[112,313,75,0.04091077894517653],[112,313,76,0.0435556613012732],[112,313,77,0.034673992702803885],[112,313,78,0.027376137689070032],[112,313,79,0.030476308520853257],[112,314,64,0.005816378938627784],[112,314,65,0.0063003827076542895],[112,314,66,0.009432920443598988],[112,314,67,0.017427423941213757],[112,314,68,0.028109084730146824],[112,314,69,0.03476313834637165],[112,314,70,0.038310772324809825],[112,314,71,0.040686215271225235],[112,314,72,0.03998054417906531],[112,314,73,0.03869135937797877],[112,314,74,0.037445585224504835],[112,314,75,0.044084860910445445],[112,314,76,0.05338615479833449],[112,314,77,0.042786295797670126],[112,314,78,0.036444684777318964],[112,314,79,0.03761855911739261],[112,315,64,0.005720060191120951],[112,315,65,0.0075151609273772235],[112,315,66,0.008799615906916816],[112,315,67,0.017679089359621147],[112,315,68,0.02731965743385925],[112,315,69,0.036372330273640355],[112,315,70,0.03984463773187358],[112,315,71,0.042695726586731444],[112,315,72,0.044759722062891694],[112,315,73,0.04064371937142],[112,315,74,0.042786888892813665],[112,315,75,0.047180011610277656],[112,315,76,0.05566544186042015],[112,315,77,0.045728064096525675],[112,315,78,0.03743192305135349],[112,315,79,0.03679698581933424],[112,316,64,-0.0027128240217464267],[112,316,65,0.0025601412874902],[112,316,66,0.006101886669815523],[112,316,67,0.016506266447210052],[112,316,68,0.02693486906848777],[112,316,69,0.03722875002805176],[112,316,70,0.04070777310920777],[112,316,71,0.047870463567302166],[112,316,72,0.0496425014463199],[112,316,73,0.045286070647234195],[112,316,74,0.04867256017694724],[112,316,75,0.05352553815817604],[112,316,76,0.05751457795071625],[112,316,77,0.048587084076951365],[112,316,78,0.048847680653282204],[112,316,79,0.060563265440813585],[112,317,64,-0.006576265239140525],[112,317,65,0.0014925413297889184],[112,317,66,0.0061391734943065795],[112,317,67,0.01630078616953587],[112,317,68,0.026518704099851187],[112,317,69,0.03517767957889639],[112,317,70,0.040092254412714856],[112,317,71,0.04959560134145076],[112,317,72,0.05301177455710138],[112,317,73,0.050133745629485346],[112,317,74,0.052880121066569655],[112,317,75,0.058313966442539125],[112,317,76,0.06175808244501097],[112,317,77,0.04993582508909196],[112,317,78,0.048455701093371537],[112,317,79,0.060586759762971204],[112,318,64,-0.0038071227796552948],[112,318,65,0.0069763445214386655],[112,318,66,0.015847841690263542],[112,318,67,0.020395998785966013],[112,318,68,0.03276980961985049],[112,318,69,0.04300138409562698],[112,318,70,0.047190602944010396],[112,318,71,0.05620640260568331],[112,318,72,0.062315044172753534],[112,318,73,0.0643751920715027],[112,318,74,0.0665676360947835],[112,318,75,0.07132091113659278],[112,318,76,0.07173126847249923],[112,318,77,0.057825381934371006],[112,318,78,0.054819485757339026],[112,318,79,0.06544273594338776],[112,319,64,-0.008947290736178157],[112,319,65,0.0022043060207243004],[112,319,66,0.015425646732637716],[112,319,67,0.019437009756999066],[112,319,68,0.03235071252544143],[112,319,69,0.04352034326191312],[112,319,70,0.04681658846519164],[112,319,71,0.054850319599990455],[112,319,72,0.06368380913536725],[112,319,73,0.06957766428760148],[112,319,74,0.07210923449055688],[112,319,75,0.07586164048263948],[112,319,76,0.07011493222329913],[112,319,77,0.05907193266651549],[112,319,78,0.05764612368956869],[112,319,79,0.07156977951506704],[113,-64,64,-0.47905235311284733],[113,-64,65,-0.48215766618448597],[113,-64,66,-0.4815257727310107],[113,-64,67,-0.4780337333472723],[113,-64,68,-0.470169872237098],[113,-64,69,-0.46144729502942183],[113,-64,70,-0.44864567869516714],[113,-64,71,-0.43899123162137765],[113,-64,72,-0.4296526169776216],[113,-64,73,-0.42460502872679484],[113,-64,74,-0.4224063489738202],[113,-64,75,-0.41888107362214777],[113,-64,76,-0.41168567612698825],[113,-64,77,-0.4096710630720711],[113,-64,78,-0.40564616174747326],[113,-64,79,-0.397909822653785],[113,-63,64,-0.4784989218059783],[113,-63,65,-0.4848002001821371],[113,-63,66,-0.48244612589968705],[113,-63,67,-0.4799383395446345],[113,-63,68,-0.473924898967829],[113,-63,69,-0.4622072617612318],[113,-63,70,-0.4505906450329499],[113,-63,71,-0.4421405114180893],[113,-63,72,-0.43169390473371166],[113,-63,73,-0.42564465797550277],[113,-63,74,-0.42406515352653734],[113,-63,75,-0.41921042507898376],[113,-63,76,-0.41180639841569583],[113,-63,77,-0.40691782681783306],[113,-63,78,-0.39761002925635636],[113,-63,79,-0.38959330266415987],[113,-62,64,-0.4748757958382659],[113,-62,65,-0.4820090128920171],[113,-62,66,-0.4819160111166332],[113,-62,67,-0.4783622484824152],[113,-62,68,-0.47369998762031773],[113,-62,69,-0.4622170061949933],[113,-62,70,-0.44876201381325054],[113,-62,71,-0.43937789982236114],[113,-62,72,-0.4292742760266584],[113,-62,73,-0.4223622089685498],[113,-62,74,-0.4227921463271123],[113,-62,75,-0.4171550093927554],[113,-62,76,-0.41173807278878727],[113,-62,77,-0.405306972599008],[113,-62,78,-0.3969907981175155],[113,-62,79,-0.3856692574590699],[113,-61,64,-0.4774917877361563],[113,-61,65,-0.48091258253366664],[113,-61,66,-0.48506006336104496],[113,-61,67,-0.4822274326062543],[113,-61,68,-0.4783851857879343],[113,-61,69,-0.465373246441934],[113,-61,70,-0.4526272090453547],[113,-61,71,-0.44146107492336073],[113,-61,72,-0.4317767210129011],[113,-61,73,-0.42361214426586913],[113,-61,74,-0.4249032424518938],[113,-61,75,-0.41668253400125727],[113,-61,76,-0.41273244159377476],[113,-61,77,-0.40697917982982346],[113,-61,78,-0.39692103856750854],[113,-61,79,-0.38766279163220785],[113,-60,64,-0.48017244199401193],[113,-60,65,-0.4838367310955645],[113,-60,66,-0.48886800340938674],[113,-60,67,-0.4887012189231835],[113,-60,68,-0.48171876891493237],[113,-60,69,-0.46782136777555045],[113,-60,70,-0.45418220478839605],[113,-60,71,-0.44302309674656704],[113,-60,72,-0.4339572682402041],[113,-60,73,-0.4273364878686707],[113,-60,74,-0.4266064368145555],[113,-60,75,-0.41825492404965536],[113,-60,76,-0.4119053267775662],[113,-60,77,-0.4075828434648189],[113,-60,78,-0.39830374197779106],[113,-60,79,-0.3896410666131622],[113,-59,64,-0.47304161320843574],[113,-59,65,-0.47730565894795074],[113,-59,66,-0.4812813392425516],[113,-59,67,-0.4823201786975413],[113,-59,68,-0.47377639508023917],[113,-59,69,-0.4610394917350964],[113,-59,70,-0.45046997575081527],[113,-59,71,-0.4352960428346858],[113,-59,72,-0.430203164707046],[113,-59,73,-0.42509839762856455],[113,-59,74,-0.4201199578478272],[113,-59,75,-0.4142825279173226],[113,-59,76,-0.4098521586640982],[113,-59,77,-0.41027077038099774],[113,-59,78,-0.40012767247490594],[113,-59,79,-0.3955337747878282],[113,-58,64,-0.47587617257301307],[113,-58,65,-0.47781262326850016],[113,-58,66,-0.4812461941845017],[113,-58,67,-0.47898845236327126],[113,-58,68,-0.4706765815446099],[113,-58,69,-0.45778263643112016],[113,-58,70,-0.4475205110686988],[113,-58,71,-0.4330633291001583],[113,-58,72,-0.42882003830049],[113,-58,73,-0.4249032957521701],[113,-58,74,-0.4175489105449147],[113,-58,75,-0.41060640595960635],[113,-58,76,-0.4099473115584519],[113,-58,77,-0.4103974521864066],[113,-58,78,-0.4014257052424856],[113,-58,79,-0.39586673924198934],[113,-57,64,-0.483264182772006],[113,-57,65,-0.48461551449266976],[113,-57,66,-0.4866585747303228],[113,-57,67,-0.48372069434483395],[113,-57,68,-0.47438832279097976],[113,-57,69,-0.46280071768263203],[113,-57,70,-0.45316607838948386],[113,-57,71,-0.4378974142281251],[113,-57,72,-0.434096403311391],[113,-57,73,-0.4287976113554654],[113,-57,74,-0.41980224052671167],[113,-57,75,-0.41380304072730234],[113,-57,76,-0.4110966473624648],[113,-57,77,-0.40968655790013436],[113,-57,78,-0.40353226824371213],[113,-57,79,-0.3997345535235287],[113,-56,64,-0.48250883163952474],[113,-56,65,-0.48544301885686514],[113,-56,66,-0.4871895704939154],[113,-56,67,-0.48313964592581404],[113,-56,68,-0.4746522333687456],[113,-56,69,-0.4634837244828891],[113,-56,70,-0.45223370240231575],[113,-56,71,-0.44024000266815166],[113,-56,72,-0.4314126438371517],[113,-56,73,-0.42601202083073825],[113,-56,74,-0.4191299461249827],[113,-56,75,-0.4144946975151657],[113,-56,76,-0.40883442948204596],[113,-56,77,-0.4060054919438274],[113,-56,78,-0.4054101214455395],[113,-56,79,-0.40021559839358023],[113,-55,64,-0.4841302100741416],[113,-55,65,-0.4860378843706416],[113,-55,66,-0.4869270812082733],[113,-55,67,-0.4821541146815771],[113,-55,68,-0.47589084160732176],[113,-55,69,-0.46513679433437916],[113,-55,70,-0.45214812757248596],[113,-55,71,-0.4400741592036629],[113,-55,72,-0.430935922217039],[113,-55,73,-0.4233323472917199],[113,-55,74,-0.41696107241673597],[113,-55,75,-0.41357812267763877],[113,-55,76,-0.4081243850719495],[113,-55,77,-0.4045611551178664],[113,-55,78,-0.40421446768897934],[113,-55,79,-0.39831120943828635],[113,-54,64,-0.48423863083412516],[113,-54,65,-0.48554109865150075],[113,-54,66,-0.4867826371850168],[113,-54,67,-0.4821993399296509],[113,-54,68,-0.47576520691673574],[113,-54,69,-0.465333869363191],[113,-54,70,-0.4523594414920094],[113,-54,71,-0.43877853272257616],[113,-54,72,-0.4319154257390655],[113,-54,73,-0.4235648243059409],[113,-54,74,-0.4146290835078258],[113,-54,75,-0.411297885845744],[113,-54,76,-0.40644157941237286],[113,-54,77,-0.4016992495791648],[113,-54,78,-0.40070306139156764],[113,-54,79,-0.3971520312258113],[113,-53,64,-0.4867915867748037],[113,-53,65,-0.48957468765681067],[113,-53,66,-0.49138248202463264],[113,-53,67,-0.4863436592362776],[113,-53,68,-0.4759105218726143],[113,-53,69,-0.46603585914103435],[113,-53,70,-0.45669782386083174],[113,-53,71,-0.4447941494207044],[113,-53,72,-0.4337431512648466],[113,-53,73,-0.42504952174460947],[113,-53,74,-0.4179128868019588],[113,-53,75,-0.41194792671831726],[113,-53,76,-0.4065065800011146],[113,-53,77,-0.40235312312658195],[113,-53,78,-0.39883787756511924],[113,-53,79,-0.3946103016165995],[113,-52,64,-0.495281646335509],[113,-52,65,-0.4974124108274133],[113,-52,66,-0.4962473196717574],[113,-52,67,-0.4921767553081054],[113,-52,68,-0.4790094816625178],[113,-52,69,-0.4685416585860304],[113,-52,70,-0.46237304497708176],[113,-52,71,-0.4487486657184845],[113,-52,72,-0.4384623338681086],[113,-52,73,-0.4300265903536682],[113,-52,74,-0.4215924522291829],[113,-52,75,-0.41722788132448063],[113,-52,76,-0.4119470375007916],[113,-52,77,-0.40701671159436964],[113,-52,78,-0.3994967028044555],[113,-52,79,-0.3940811897776465],[113,-51,64,-0.5059490510471754],[113,-51,65,-0.508326575241874],[113,-51,66,-0.5085791036440808],[113,-51,67,-0.5050262528127366],[113,-51,68,-0.4919211928056819],[113,-51,69,-0.47920674263380314],[113,-51,70,-0.4701930637096046],[113,-51,71,-0.4585012944761119],[113,-51,72,-0.44733756218078313],[113,-51,73,-0.4408881454767343],[113,-51,74,-0.43284803647601666],[113,-51,75,-0.42503229381805147],[113,-51,76,-0.41782226141355455],[113,-51,77,-0.41019729648575975],[113,-51,78,-0.3954628035797802],[113,-51,79,-0.38415152602946945],[113,-50,64,-0.5044945601898712],[113,-50,65,-0.5050563036812312],[113,-50,66,-0.5063612166948497],[113,-50,67,-0.5014025283078741],[113,-50,68,-0.49073640593988876],[113,-50,69,-0.47857278298969397],[113,-50,70,-0.4671617286853229],[113,-50,71,-0.45722993132055345],[113,-50,72,-0.44771833158648255],[113,-50,73,-0.4396024778774281],[113,-50,74,-0.43404180812965654],[113,-50,75,-0.4269510170242739],[113,-50,76,-0.41682735041358115],[113,-50,77,-0.40995215230888316],[113,-50,78,-0.3953754590394989],[113,-50,79,-0.38182305576914494],[113,-49,64,-0.5087467990141956],[113,-49,65,-0.5085059170090805],[113,-49,66,-0.5117171780981922],[113,-49,67,-0.5051137789448222],[113,-49,68,-0.49397394567619135],[113,-49,69,-0.4826370255737684],[113,-49,70,-0.47048525905368366],[113,-49,71,-0.4608867466756151],[113,-49,72,-0.45132123484924846],[113,-49,73,-0.44502840871104066],[113,-49,74,-0.4368156740963114],[113,-49,75,-0.4304075579581481],[113,-49,76,-0.4193008444731314],[113,-49,77,-0.4102070404805497],[113,-49,78,-0.39729225210249597],[113,-49,79,-0.3820425405128013],[113,-48,64,-0.48381869707960334],[113,-48,65,-0.5066760142758224],[113,-48,66,-0.5102892457256956],[113,-48,67,-0.503374305182879],[113,-48,68,-0.4917055933458388],[113,-48,69,-0.47768532698492516],[113,-48,70,-0.466226762679238],[113,-48,71,-0.45526038465705954],[113,-48,72,-0.4477123020216338],[113,-48,73,-0.4440854221995564],[113,-48,74,-0.43645961821727586],[113,-48,75,-0.4312837075602982],[113,-48,76,-0.41935605017247607],[113,-48,77,-0.4072066031068094],[113,-48,78,-0.3938247657644648],[113,-48,79,-0.3781904368047459],[113,-47,64,-0.4598358629725322],[113,-47,65,-0.509154659064384],[113,-47,66,-0.5032434554063001],[113,-47,67,-0.4930305114509873],[113,-47,68,-0.48057494712974297],[113,-47,69,-0.4663621564163583],[113,-47,70,-0.45344309039138364],[113,-47,71,-0.44026247118305095],[113,-47,72,-0.4345935301584615],[113,-47,73,-0.43308898658729456],[113,-47,74,-0.42784926164305415],[113,-47,75,-0.4198579138057291],[113,-47,76,-0.41200596197563744],[113,-47,77,-0.39894163127429894],[113,-47,78,-0.3888535044534207],[113,-47,79,-0.37678398044143335],[113,-46,64,-0.4020387114390819],[113,-46,65,-0.505610419273534],[113,-46,66,-0.4994592974254851],[113,-46,67,-0.48946859244718127],[113,-46,68,-0.4764808290587097],[113,-46,69,-0.4617207249925852],[113,-46,70,-0.4506813597457489],[113,-46,71,-0.436764346203139],[113,-46,72,-0.42936664057428453],[113,-46,73,-0.42888596606274854],[113,-46,74,-0.424324635195764],[113,-46,75,-0.4150157160187222],[113,-46,76,-0.4068029134116211],[113,-46,77,-0.39688859415075284],[113,-46,78,-0.3853952235972787],[113,-46,79,-0.37437919331159303],[113,-45,64,-0.3602341339741537],[113,-45,65,-0.48092177275596665],[113,-45,66,-0.500644978284716],[113,-45,67,-0.49091866085642777],[113,-45,68,-0.47646278720056295],[113,-45,69,-0.46344779193711805],[113,-45,70,-0.45201830222398925],[113,-45,71,-0.4397094532098797],[113,-45,72,-0.4293528056956038],[113,-45,73,-0.4255059578917856],[113,-45,74,-0.4237695674845492],[113,-45,75,-0.413449616176352],[113,-45,76,-0.4038465102154082],[113,-45,77,-0.3962830969148031],[113,-45,78,-0.3853535155669071],[113,-45,79,-0.37314852517296043],[113,-44,64,-0.17751214026213696],[113,-44,65,-0.3755114644475056],[113,-44,66,-0.4561470821460273],[113,-44,67,-0.4479316896673298],[113,-44,68,-0.4360093593050259],[113,-44,69,-0.42631811657754803],[113,-44,70,-0.41558009015234504],[113,-44,71,-0.4040928676922313],[113,-44,72,-0.39166861236151224],[113,-44,73,-0.38935809083397],[113,-44,74,-0.3847307436828004],[113,-44,75,-0.3755275742378243],[113,-44,76,-0.36667544958882053],[113,-44,77,-0.35868601593457233],[113,-44,78,-0.3500858777633742],[113,-44,79,-0.33859127720446164],[113,-43,64,-0.20559988946575447],[113,-43,65,-0.4241585595775846],[113,-43,66,-0.4371746559229425],[113,-43,67,-0.4311310808545893],[113,-43,68,-0.42208730900257546],[113,-43,69,-0.41592077507730546],[113,-43,70,-0.4104654797080302],[113,-43,71,-0.39743365238581474],[113,-43,72,-0.38635622322390695],[113,-43,73,-0.3820820096912875],[113,-43,74,-0.37366208317589733],[113,-43,75,-0.36622003932450203],[113,-43,76,-0.35693457938301787],[113,-43,77,-0.3492010859914386],[113,-43,78,-0.34436272467383644],[113,-43,79,-0.33275996811618097],[113,-42,64,-0.1605267431541582],[113,-42,65,-0.3563989892388628],[113,-42,66,-0.4264100686243052],[113,-42,67,-0.42201229601119156],[113,-42,68,-0.4162504065522473],[113,-42,69,-0.41089091311454795],[113,-42,70,-0.40613859590158524],[113,-42,71,-0.39596746592877763],[113,-42,72,-0.3840593714002744],[113,-42,73,-0.3774715567110886],[113,-42,74,-0.3711915579903574],[113,-42,75,-0.3626573705579168],[113,-42,76,-0.3524219429003326],[113,-42,77,-0.34751134310674264],[113,-42,78,-0.34082383578269915],[113,-42,79,-0.3293826600888115],[113,-41,64,-0.09078370169739308],[113,-41,65,-0.31376015318550377],[113,-41,66,-0.4264569696704166],[113,-41,67,-0.42244113976911296],[113,-41,68,-0.41792463839688243],[113,-41,69,-0.4121343631221877],[113,-41,70,-0.4064219801682269],[113,-41,71,-0.40067975789691096],[113,-41,72,-0.387756839451679],[113,-41,73,-0.3795895920241236],[113,-41,74,-0.3730817809165999],[113,-41,75,-0.3644911971832212],[113,-41,76,-0.35511361576907746],[113,-41,77,-0.34909604317302795],[113,-41,78,-0.3384531554447474],[113,-41,79,-0.32598415974233824],[113,-40,64,-0.03161233860623053],[113,-40,65,-0.28366033775402044],[113,-40,66,-0.42111224121803215],[113,-40,67,-0.4157493777885541],[113,-40,68,-0.4144838866775539],[113,-40,69,-0.40973498654051427],[113,-40,70,-0.40473741249394185],[113,-40,71,-0.3969179500754537],[113,-40,72,-0.38621810731168194],[113,-40,73,-0.37996385080105827],[113,-40,74,-0.3709212438702554],[113,-40,75,-0.3634704295789599],[113,-40,76,-0.35535500367188283],[113,-40,77,-0.3464568386929469],[113,-40,78,-0.3347424071227149],[113,-40,79,-0.32126922515666695],[113,-39,64,-0.006952562248428551],[113,-39,65,-0.24440037330478373],[113,-39,66,-0.4142547975297138],[113,-39,67,-0.41245058490756503],[113,-39,68,-0.4136090366586238],[113,-39,69,-0.41187957170146205],[113,-39,70,-0.4042441602304856],[113,-39,71,-0.395128595514969],[113,-39,72,-0.38210421297893754],[113,-39,73,-0.372730521899987],[113,-39,74,-0.361565668192136],[113,-39,75,-0.3556337080747118],[113,-39,76,-0.34854183076851514],[113,-39,77,-0.3365771680467703],[113,-39,78,-0.3243626650245541],[113,-39,79,-0.31167491941637787],[113,-38,64,-0.02642777408932534],[113,-38,65,-0.26426509581532065],[113,-38,66,-0.4083208084889583],[113,-38,67,-0.4110031612340371],[113,-38,68,-0.4132473395348403],[113,-38,69,-0.40965033874679085],[113,-38,70,-0.4032579138610538],[113,-38,71,-0.39331695374238035],[113,-38,72,-0.3828078864833872],[113,-38,73,-0.36806554293479393],[113,-38,74,-0.3593989122211414],[113,-38,75,-0.35268526457412286],[113,-38,76,-0.34246296364045686],[113,-38,77,-0.3308773419720416],[113,-38,78,-0.3188144215856143],[113,-38,79,-0.3076428695171497],[113,-37,64,0.005098585126244615],[113,-37,65,-0.21780434039761984],[113,-37,66,-0.40785409714340337],[113,-37,67,-0.4117388515740864],[113,-37,68,-0.4159106190306445],[113,-37,69,-0.4118487583936098],[113,-37,70,-0.4043551535581887],[113,-37,71,-0.3955946676264094],[113,-37,72,-0.38279499283395435],[113,-37,73,-0.3692126815181087],[113,-37,74,-0.35928124638325704],[113,-37,75,-0.35192755420966093],[113,-37,76,-0.3417740519223443],[113,-37,77,-0.3317292702363426],[113,-37,78,-0.31953627152824937],[113,-37,79,-0.30853715879492105],[113,-36,64,0.009191963258008695],[113,-36,65,-0.19794207903776337],[113,-36,66,-0.39600020601637625],[113,-36,67,-0.41303846466245164],[113,-36,68,-0.4183465391900555],[113,-36,69,-0.4167316274848951],[113,-36,70,-0.4091708811674095],[113,-36,71,-0.3975482528893457],[113,-36,72,-0.3862026470536904],[113,-36,73,-0.37137220582288577],[113,-36,74,-0.36376327748241394],[113,-36,75,-0.3547834356505083],[113,-36,76,-0.34427540314707383],[113,-36,77,-0.3347852551014334],[113,-36,78,-0.32155002882272077],[113,-36,79,-0.3113972688351578],[113,-35,64,-0.08495436411473323],[113,-35,65,-0.11774277497718222],[113,-35,66,-0.17804186743884803],[113,-35,67,-0.26730817227587145],[113,-35,68,-0.4006913310902743],[113,-35,69,-0.4110744467978198],[113,-35,70,-0.4052098312585062],[113,-35,71,-0.39855945179664737],[113,-35,72,-0.38910957579050764],[113,-35,73,-0.3823543116945184],[113,-35,74,-0.37265990835662344],[113,-35,75,-0.36173195365746647],[113,-35,76,-0.35161318959011684],[113,-35,77,-0.34109783254818093],[113,-35,78,-0.3257705963419811],[113,-35,79,-0.3104327293607554],[113,-34,64,-0.09618863932479382],[113,-34,65,-0.09475974789421165],[113,-34,66,-0.14366369228310738],[113,-34,67,-0.25911950491908425],[113,-34,68,-0.38059696230472456],[113,-34,69,-0.4047918089744019],[113,-34,70,-0.40036803410098654],[113,-34,71,-0.39588460766038536],[113,-34,72,-0.3867476340803427],[113,-34,73,-0.38260247737727376],[113,-34,74,-0.3718605052334694],[113,-34,75,-0.3635400579311853],[113,-34,76,-0.35179210409813677],[113,-34,77,-0.3409230838029269],[113,-34,78,-0.32439266875237716],[113,-34,79,-0.30784861384483286],[113,-33,64,-0.050788320612713905],[113,-33,65,-0.01963696985183927],[113,-33,66,-0.06208280077980083],[113,-33,67,-0.17805601691656683],[113,-33,68,-0.2938699231050012],[113,-33,69,-0.325675911928862],[113,-33,70,-0.3275220910248266],[113,-33,71,-0.32479140536855095],[113,-33,72,-0.32088280863064156],[113,-33,73,-0.32122365727524627],[113,-33,74,-0.318395722117797],[113,-33,75,-0.31512281547695636],[113,-33,76,-0.30944005317368745],[113,-33,77,-0.30090750655965587],[113,-33,78,-0.2892056209550347],[113,-33,79,-0.2776362259464393],[113,-32,64,-0.03937164125980319],[113,-32,65,0.010057812584666759],[113,-32,66,-0.023520858390263577],[113,-32,67,-0.14958141159623584],[113,-32,68,-0.3032109470031622],[113,-32,69,-0.3192817248880747],[113,-32,70,-0.32316033618226964],[113,-32,71,-0.3201069641894112],[113,-32,72,-0.3166993759666315],[113,-32,73,-0.3155430747407712],[113,-32,74,-0.31456981538158907],[113,-32,75,-0.3122959794029373],[113,-32,76,-0.3091091979876493],[113,-32,77,-0.29841912701827533],[113,-32,78,-0.28929112286914827],[113,-32,79,-0.27964489074377985],[113,-31,64,0.051941134117273746],[113,-31,65,0.08977168342914416],[113,-31,66,0.011307109867383758],[113,-31,67,-0.1861557080992055],[113,-31,68,-0.3067823906002236],[113,-31,69,-0.31497274740154535],[113,-31,70,-0.3189669952440029],[113,-31,71,-0.3151234173034803],[113,-31,72,-0.3125076573300148],[113,-31,73,-0.3112494114043759],[113,-31,74,-0.3097488555178815],[113,-31,75,-0.30960582773265344],[113,-31,76,-0.3056757014222006],[113,-31,77,-0.2975337656039122],[113,-31,78,-0.2877184847296278],[113,-31,79,-0.2788893554341552],[113,-30,64,0.08183258335374344],[113,-30,65,0.11224222854160609],[113,-30,66,0.030820547805964105],[113,-30,67,-0.1813054796745942],[113,-30,68,-0.30026482589992953],[113,-30,69,-0.30992431844017554],[113,-30,70,-0.3135052678205862],[113,-30,71,-0.30993522567481124],[113,-30,72,-0.3080059337816425],[113,-30,73,-0.3060591410308474],[113,-30,74,-0.3051559874102236],[113,-30,75,-0.3049981649670574],[113,-30,76,-0.3025694537564747],[113,-30,77,-0.29616179598854825],[113,-30,78,-0.285822919610385],[113,-30,79,-0.276671555341564],[113,-29,64,0.11430142507647817],[113,-29,65,0.11964128862013629],[113,-29,66,0.03634729334693304],[113,-29,67,-0.18079708120681143],[113,-29,68,-0.30266431833310103],[113,-29,69,-0.3106217235437892],[113,-29,70,-0.31199146895249574],[113,-29,71,-0.30986837170856474],[113,-29,72,-0.3087105014177145],[113,-29,73,-0.3051023644055182],[113,-29,74,-0.30443268977742843],[113,-29,75,-0.30670698156246157],[113,-29,76,-0.30441236482985484],[113,-29,77,-0.2965661148212003],[113,-29,78,-0.28686512954637755],[113,-29,79,-0.27771906944198166],[113,-28,64,0.10621924806257117],[113,-28,65,0.10682023395527396],[113,-28,66,0.0012435365245632157],[113,-28,67,-0.18809554117762467],[113,-28,68,-0.3051455063442081],[113,-28,69,-0.3103756056805026],[113,-28,70,-0.31474865284104087],[113,-28,71,-0.3135273214176864],[113,-28,72,-0.31085311961532097],[113,-28,73,-0.3072836045923687],[113,-28,74,-0.3075187711859293],[113,-28,75,-0.31105518554419204],[113,-28,76,-0.3073796658574032],[113,-28,77,-0.29884478294327355],[113,-28,78,-0.29070464182216904],[113,-28,79,-0.28263725519798877],[113,-27,64,0.1145847586061943],[113,-27,65,0.11394744776339788],[113,-27,66,-0.05511307144470237],[113,-27,67,-0.26891155382163023],[113,-27,68,-0.3013485308832635],[113,-27,69,-0.30386576457551884],[113,-27,70,-0.3032723605193901],[113,-27,71,-0.29763816722631364],[113,-27,72,-0.29031999185126217],[113,-27,73,-0.28374420645939913],[113,-27,74,-0.2826708260195822],[113,-27,75,-0.288768603494796],[113,-27,76,-0.2881865391069628],[113,-27,77,-0.2864161168346942],[113,-27,78,-0.285914898414689],[113,-27,79,-0.282990162809281],[113,-26,64,0.16549517416449536],[113,-26,65,0.16845285395390736],[113,-26,66,-0.008846908230701833],[113,-26,67,-0.2660181101502911],[113,-26,68,-0.2958268798730888],[113,-26,69,-0.29959277814430113],[113,-26,70,-0.2964978405735096],[113,-26,71,-0.2931363894011979],[113,-26,72,-0.2841382599566244],[113,-26,73,-0.28198456405283023],[113,-26,74,-0.27982133138411824],[113,-26,75,-0.2851788433895199],[113,-26,76,-0.2854401271577245],[113,-26,77,-0.28592767230234933],[113,-26,78,-0.28298196130871445],[113,-26,79,-0.2803995895992917],[113,-25,64,0.17039511249830422],[113,-25,65,0.17242948988151324],[113,-25,66,0.009266905659323699],[113,-25,67,-0.26994474038156907],[113,-25,68,-0.2985566806190498],[113,-25,69,-0.29919438935529985],[113,-25,70,-0.29577559068058223],[113,-25,71,-0.2917745092250682],[113,-25,72,-0.2834235892292385],[113,-25,73,-0.28356571655479873],[113,-25,74,-0.28419341377545887],[113,-25,75,-0.28633665366216693],[113,-25,76,-0.28499160438375576],[113,-25,77,-0.28865416299293295],[113,-25,78,-0.2844922553102708],[113,-25,79,-0.2815816585565248],[113,-24,64,0.17568824861722426],[113,-24,65,0.13101535895130084],[113,-24,66,0.0014839095052498474],[113,-24,67,-0.2802847500607585],[113,-24,68,-0.2940308254765001],[113,-24,69,-0.29229472813321383],[113,-24,70,-0.2874529148358169],[113,-24,71,-0.28524001996750215],[113,-24,72,-0.27962299157311676],[113,-24,73,-0.28052361546737536],[113,-24,74,-0.28287045497727925],[113,-24,75,-0.2858994287053157],[113,-24,76,-0.2844052288223389],[113,-24,77,-0.2852548097985533],[113,-24,78,-0.2825878961260194],[113,-24,79,-0.27963338087597217],[113,-23,64,0.15685040150192875],[113,-23,65,0.08700402759356568],[113,-23,66,-0.01929733709576492],[113,-23,67,-0.2652101140870179],[113,-23,68,-0.2793491556019936],[113,-23,69,-0.2794648639848317],[113,-23,70,-0.2758621303818759],[113,-23,71,-0.2767825231785953],[113,-23,72,-0.2803360727181341],[113,-23,73,-0.2859495920704034],[113,-23,74,-0.2866392393195246],[113,-23,75,-0.2913086261474658],[113,-23,76,-0.28817418540647655],[113,-23,77,-0.28419013543698024],[113,-23,78,-0.2770834275578477],[113,-23,79,-0.27241926291838464],[113,-22,64,0.14340907515735096],[113,-22,65,0.06986388004803201],[113,-22,66,-0.05832786248150729],[113,-22,67,-0.27056527316193435],[113,-22,68,-0.27161777194975073],[113,-22,69,-0.27452825788361546],[113,-22,70,-0.2711883375289276],[113,-22,71,-0.2719302493911633],[113,-22,72,-0.2766117212318518],[113,-22,73,-0.2803479133934124],[113,-22,74,-0.28207150012769455],[113,-22,75,-0.2865339878660396],[113,-22,76,-0.28403483342280345],[113,-22,77,-0.2801244941238401],[113,-22,78,-0.2757949788280156],[113,-22,79,-0.2703143654994382],[113,-21,64,0.1777120666007505],[113,-21,65,0.07961952995156185],[113,-21,66,-0.05465343281490612],[113,-21,67,-0.25683613085915175],[113,-21,68,-0.2697313406987391],[113,-21,69,-0.27138444140826073],[113,-21,70,-0.27132607482902693],[113,-21,71,-0.2730354965916032],[113,-21,72,-0.27667445246928807],[113,-21,73,-0.2814291522969591],[113,-21,74,-0.2669562655772202],[113,-21,75,-0.27383047362137647],[113,-21,76,-0.28483829718932174],[113,-21,77,-0.2787484514219169],[113,-21,78,-0.2744507904437803],[113,-21,79,-0.27028983510227],[113,-20,64,0.1329642419357347],[113,-20,65,0.03184216290240116],[113,-20,66,-0.10866526307277469],[113,-20,67,-0.26718229297075735],[113,-20,68,-0.26959440972213244],[113,-20,69,-0.2723414099733683],[113,-20,70,-0.27616000477020175],[113,-20,71,-0.27568576254316773],[113,-20,72,-0.278638013418929],[113,-20,73,-0.28364454926259935],[113,-20,74,-0.2606949385258343],[113,-20,75,-0.21842039594557194],[113,-20,76,-0.2877571529239064],[113,-20,77,-0.2819183429265126],[113,-20,78,-0.2775540363368188],[113,-20,79,-0.27157821563559026],[113,-19,64,0.143462209703333],[113,-19,65,0.016776851907132517],[113,-19,66,-0.14198689125890834],[113,-19,67,-0.25190337243072763],[113,-19,68,-0.25668473084079424],[113,-19,69,-0.2620319218264128],[113,-19,70,-0.2667672346646132],[113,-19,71,-0.2692663143279244],[113,-19,72,-0.2701731310307349],[113,-19,73,-0.25509073259366666],[113,-19,74,-0.1894807313005359],[113,-19,75,-0.11926828852339227],[113,-19,76,-0.19955589962545262],[113,-19,77,-0.27120183073513526],[113,-19,78,-0.2669203729671476],[113,-19,79,-0.2583312664728815],[113,-18,64,0.10763746327717477],[113,-18,65,-0.018627604115564356],[113,-18,66,-0.1613623979241245],[113,-18,67,-0.2450551697521674],[113,-18,68,-0.24952914413677457],[113,-18,69,-0.2551510885165267],[113,-18,70,-0.26028720770726255],[113,-18,71,-0.2639784089970665],[113,-18,72,-0.2677158760615983],[113,-18,73,-0.23802000647403712],[113,-18,74,-0.16442102831014144],[113,-18,75,-0.08634877757556075],[113,-18,76,-0.1531603577069663],[113,-18,77,-0.24414112571564087],[113,-18,78,-0.25912441291148947],[113,-18,79,-0.25127943673851333],[113,-17,64,0.09486549866908647],[113,-17,65,-0.045463995748865754],[113,-17,66,-0.17420016050485176],[113,-17,67,-0.2451121487797855],[113,-17,68,-0.24978494720425853],[113,-17,69,-0.255760912702636],[113,-17,70,-0.26062426403253036],[113,-17,71,-0.2641620274052463],[113,-17,72,-0.26881476661145376],[113,-17,73,-0.25120273396409426],[113,-17,74,-0.14764006075522929],[113,-17,75,-0.07223169707339583],[113,-17,76,-0.15751278117475814],[113,-17,77,-0.2316887595983719],[113,-17,78,-0.25569959283928556],[113,-17,79,-0.24755934748294317],[113,-16,64,0.043418999372734135],[113,-16,65,-0.08911683581450819],[113,-16,66,-0.19752613396740623],[113,-16,67,-0.23678854828122947],[113,-16,68,-0.24172467030793351],[113,-16,69,-0.2496713929400894],[113,-16,70,-0.2548519233581702],[113,-16,71,-0.2599764781200362],[113,-16,72,-0.2638854010281305],[113,-16,73,-0.2608840855161911],[113,-16,74,-0.20185290270527567],[113,-16,75,-0.1502665855855726],[113,-16,76,-0.23509696963729446],[113,-16,77,-0.25936553935859186],[113,-16,78,-0.25177855648294534],[113,-16,79,-0.24271825155664112],[113,-15,64,0.016926781283048975],[113,-15,65,-0.08446297833833488],[113,-15,66,-0.20063548166582149],[113,-15,67,-0.2218036275045523],[113,-15,68,-0.2287259273151655],[113,-15,69,-0.23596666985511633],[113,-15,70,-0.24253981424759533],[113,-15,71,-0.2518958331027575],[113,-15,72,-0.25955521756469857],[113,-15,73,-0.2586198067560005],[113,-15,74,-0.19099221830073287],[113,-15,75,-0.1600227561649062],[113,-15,76,-0.2423803021640867],[113,-15,77,-0.25348448166566595],[113,-15,78,-0.24257188099251406],[113,-15,79,-0.23457191038994035],[113,-14,64,-0.06937478589797161],[113,-14,65,-0.1317453239155298],[113,-14,66,-0.210073199738544],[113,-14,67,-0.21258834259383314],[113,-14,68,-0.2211437400898268],[113,-14,69,-0.22729879254329277],[113,-14,70,-0.2338723967674709],[113,-14,71,-0.24462023789901294],[113,-14,72,-0.2520016370697232],[113,-14,73,-0.2458175801287729],[113,-14,74,-0.19596650470110705],[113,-14,75,-0.17050886249497416],[113,-14,76,-0.24547359432481625],[113,-14,77,-0.24587572970063387],[113,-14,78,-0.23912782430023394],[113,-14,79,-0.23128283264850047],[113,-13,64,-0.04199819765252588],[113,-13,65,-0.105878178976416],[113,-13,66,-0.20349818665474717],[113,-13,67,-0.2122939676509617],[113,-13,68,-0.21894982512353003],[113,-13,69,-0.22347027753574122],[113,-13,70,-0.23060520694995665],[113,-13,71,-0.24355601854704043],[113,-13,72,-0.25233391739011407],[113,-13,73,-0.21799468022124738],[113,-13,74,-0.1583868734078558],[113,-13,75,-0.13155695220969543],[113,-13,76,-0.2328252954217248],[113,-13,77,-0.24422626455260707],[113,-13,78,-0.23852497387322188],[113,-13,79,-0.23363889936376464],[113,-12,64,-0.052413025374641625],[113,-12,65,-0.114523445359866],[113,-12,66,-0.20489918026286966],[113,-12,67,-0.21071542466186174],[113,-12,68,-0.21947475309068792],[113,-12,69,-0.22516302513087408],[113,-12,70,-0.23014346377832837],[113,-12,71,-0.24212424852464687],[113,-12,72,-0.250140199017982],[113,-12,73,-0.20947506551960873],[113,-12,74,-0.1542135950699967],[113,-12,75,-0.14579000732107683],[113,-12,76,-0.23562778699258283],[113,-12,77,-0.24823164844456586],[113,-12,78,-0.2444768242576669],[113,-12,79,-0.24035776622576221],[113,-11,64,0.018921917293154678],[113,-11,65,-0.08109896049613642],[113,-11,66,-0.19973588493872255],[113,-11,67,-0.20690317972124472],[113,-11,68,-0.21500953639438486],[113,-11,69,-0.22335711055844232],[113,-11,70,-0.22436473055602024],[113,-11,71,-0.22858388002486343],[113,-11,72,-0.19687293142487627],[113,-11,73,-0.10619886482837437],[113,-11,74,-0.02884223579928713],[113,-11,75,-0.02762430855678949],[113,-11,76,-0.09988072741796505],[113,-11,77,-0.12132768446802873],[113,-11,78,-0.22495403499092903],[113,-11,79,-0.23966557849456432],[113,-10,64,0.004287632759102128],[113,-10,65,-0.09846842056375912],[113,-10,66,-0.19282218344486768],[113,-10,67,-0.20124575637225595],[113,-10,68,-0.2102601282118656],[113,-10,69,-0.2211821805089777],[113,-10,70,-0.2206427280492646],[113,-10,71,-0.22287516365419827],[113,-10,72,-0.19649455495880608],[113,-10,73,-0.10793784331620684],[113,-10,74,-0.031123391481330587],[113,-10,75,-0.03595714496287014],[113,-10,76,-0.08346075026684613],[113,-10,77,-0.1142776591749674],[113,-10,78,-0.23108394898334716],[113,-10,79,-0.23511926185184973],[113,-9,64,-0.009510249406596338],[113,-9,65,-0.11195522411376957],[113,-9,66,-0.19329770482193975],[113,-9,67,-0.2016758893523553],[113,-9,68,-0.20991543158745807],[113,-9,69,-0.22266694784543328],[113,-9,70,-0.22178846581270578],[113,-9,71,-0.22240342748860004],[113,-9,72,-0.2114329472592217],[113,-9,73,-0.10619197357560987],[113,-9,74,-0.05583089426950116],[113,-9,75,-0.04966767996995561],[113,-9,76,-0.07129625500556219],[113,-9,77,-0.12967595798114262],[113,-9,78,-0.22898373885450451],[113,-9,79,-0.2315580473317307],[113,-8,64,-0.01583043452843308],[113,-8,65,-0.12419284175774505],[113,-8,66,-0.18556591708510223],[113,-8,67,-0.1922692010095056],[113,-8,68,-0.20517643070075675],[113,-8,69,-0.21413087086900418],[113,-8,70,-0.21784195739286952],[113,-8,71,-0.21690949443923246],[113,-8,72,-0.21762720604442423],[113,-8,73,-0.14736750557775669],[113,-8,74,-0.05234028139711602],[113,-8,75,-0.014809285008945433],[113,-8,76,-0.039976209931949724],[113,-8,77,-0.11231510086379175],[113,-8,78,-0.2219204767953648],[113,-8,79,-0.22597243420551327],[113,-7,64,-0.013813247043175214],[113,-7,65,-0.12911459514791107],[113,-7,66,-0.18076607062930766],[113,-7,67,-0.1872114555982427],[113,-7,68,-0.19826279776186256],[113,-7,69,-0.20799319937187963],[113,-7,70,-0.2131121527919338],[113,-7,71,-0.21373451039090552],[113,-7,72,-0.21277091952265606],[113,-7,73,-0.15613631431968597],[113,-7,74,-0.04652212267626629],[113,-7,75,-0.018743773662961233],[113,-7,76,-0.060038638675191186],[113,-7,77,-0.13025143346278573],[113,-7,78,-0.21771502495957012],[113,-7,79,-0.22193022125059675],[113,-6,64,-0.005301971242195835],[113,-6,65,-0.11528649672673863],[113,-6,66,-0.1751722274031533],[113,-6,67,-0.18187951901073052],[113,-6,68,-0.19166793606812124],[113,-6,69,-0.20261069200062437],[113,-6,70,-0.20848193447943805],[113,-6,71,-0.21004390811127666],[113,-6,72,-0.21019266419278199],[113,-6,73,-0.17363702504603656],[113,-6,74,-0.042447121078532796],[113,-6,75,-0.012794500054886498],[113,-6,76,-0.07040959023238835],[113,-6,77,-0.14947617200517796],[113,-6,78,-0.21233975086077467],[113,-6,79,-0.21569406317179635],[113,-5,64,-0.02163373113475381],[113,-5,65,-0.05290476495223358],[113,-5,66,-0.11551713220138404],[113,-5,67,-0.16484900521137202],[113,-5,68,-0.19090793274578188],[113,-5,69,-0.20106552800504418],[113,-5,70,-0.20809170914275993],[113,-5,71,-0.21092408141351904],[113,-5,72,-0.21173895357388423],[113,-5,73,-0.21195740781062156],[113,-5,74,-0.16281093979713135],[113,-5,75,-0.19323250937302616],[113,-5,76,-0.21076316206499116],[113,-5,77,-0.2128666905068155],[113,-5,78,-0.2119017002227786],[113,-5,79,-0.21408052751297013],[113,-4,64,-0.03788387162603313],[113,-4,65,-0.06120539239059092],[113,-4,66,-0.12825799241124772],[113,-4,67,-0.16884972512711172],[113,-4,68,-0.1888952364153696],[113,-4,69,-0.19946663304431125],[113,-4,70,-0.20710352897815212],[113,-4,71,-0.2142150281269709],[113,-4,72,-0.21455639527272394],[113,-4,73,-0.21512674311742258],[113,-4,74,-0.17824264559900824],[113,-4,75,-0.21794268175017714],[113,-4,76,-0.21679810285854786],[113,-4,77,-0.21621940531868136],[113,-4,78,-0.21631399031395934],[113,-4,79,-0.21783912403652939],[113,-3,64,0.0030164701813777395],[113,-3,65,-0.025288760334597593],[113,-3,66,-0.08878228395246332],[113,-3,67,-0.11061070916116689],[113,-3,68,-0.1586777330486315],[113,-3,69,-0.17903592910953692],[113,-3,70,-0.18835880929441073],[113,-3,71,-0.20168166221350076],[113,-3,72,-0.2060860728284089],[113,-3,73,-0.18676139571488848],[113,-3,74,-0.12747333832394467],[113,-3,75,-0.19586039565365104],[113,-3,76,-0.20654596689395105],[113,-3,77,-0.20295553405053718],[113,-3,78,-0.1985690830032452],[113,-3,79,-0.19655149801656274],[113,-2,64,-0.015668872198261283],[113,-2,65,-0.04276949057656736],[113,-2,66,-0.0909436279880915],[113,-2,67,-0.12100620943980246],[113,-2,68,-0.15385175886545366],[113,-2,69,-0.1704934765352337],[113,-2,70,-0.18095297573745767],[113,-2,71,-0.19248024885935994],[113,-2,72,-0.19801670255857431],[113,-2,73,-0.1973142291906558],[113,-2,74,-0.15587285014208213],[113,-2,75,-0.20381885667561872],[113,-2,76,-0.19870145504902922],[113,-2,77,-0.1964185770905726],[113,-2,78,-0.19523061830260358],[113,-2,79,-0.19187328062118839],[113,-1,64,-0.042717600480457266],[113,-1,65,-0.06804940031247039],[113,-1,66,-0.07879154808465803],[113,-1,67,-0.10262757729531694],[113,-1,68,-0.11131691287999253],[113,-1,69,-0.11396970740731627],[113,-1,70,-0.17951230545451952],[113,-1,71,-0.1855359108263297],[113,-1,72,-0.18582919718827634],[113,-1,73,-0.18084951500586918],[113,-1,74,-0.19880848040857269],[113,-1,75,-0.19808295478687746],[113,-1,76,-0.19471932754940996],[113,-1,77,-0.19143291121824818],[113,-1,78,-0.1890453169351295],[113,-1,79,-0.1858043410180594],[113,0,64,-0.022613666403909882],[113,0,65,-0.02107290899548267],[113,0,66,-0.02021861593464208],[113,0,67,-0.022425705595088344],[113,0,68,-0.02392415558140487],[113,0,69,-0.03390174682891814],[113,0,70,-0.044804709174418894],[113,0,71,-0.04830684485887571],[113,0,72,-0.05615349248830308],[113,0,73,-0.057475561101565834],[113,0,74,-0.06087071986377261],[113,0,75,-0.06540168909440315],[113,0,76,-0.06577701721107578],[113,0,77,-0.06922067028672271],[113,0,78,-0.07481514644967148],[113,0,79,-0.0803600225031133],[113,1,64,-0.024026331080247307],[113,1,65,-0.022637542205410074],[113,1,66,-0.019354580519584164],[113,1,67,-0.020560462385501424],[113,1,68,-0.026760886336035253],[113,1,69,-0.03162899378129491],[113,1,70,-0.04031188083690217],[113,1,71,-0.04625551024333084],[113,1,72,-0.05296766651329585],[113,1,73,-0.053061356067665266],[113,1,74,-0.05733288901865713],[113,1,75,-0.05975224972800594],[113,1,76,-0.06152399126912002],[113,1,77,-0.06509191198196695],[113,1,78,-0.06869062021040731],[113,1,79,-0.07730949508936598],[113,2,64,-0.024798258493776162],[113,2,65,-0.020258448526100342],[113,2,66,-0.01751935897004525],[113,2,67,-0.019847572479260334],[113,2,68,-0.023588467231307808],[113,2,69,-0.027587303493524562],[113,2,70,-0.03770645392351493],[113,2,71,-0.04521823023332108],[113,2,72,-0.05124208058658751],[113,2,73,-0.05042199984814483],[113,2,74,-0.05518269845534261],[113,2,75,-0.05488513295811252],[113,2,76,-0.056268487393868694],[113,2,77,-0.061806268167586956],[113,2,78,-0.06676236705569505],[113,2,79,-0.07417324281855513],[113,3,64,-0.023347779427265153],[113,3,65,-0.016318494947149875],[113,3,66,-0.017013035906655774],[113,3,67,-0.019799555554928377],[113,3,68,-0.02266763617604249],[113,3,69,-0.02730018066866788],[113,3,70,-0.0359122710766389],[113,3,71,-0.04427640990440607],[113,3,72,-0.04738028984197659],[113,3,73,-0.04641086214431367],[113,3,74,-0.04916832203969217],[113,3,75,-0.05291767120734854],[113,3,76,-0.051228969481167674],[113,3,77,-0.05798488504115765],[113,3,78,-0.06443396117108778],[113,3,79,-0.06722780138523898],[113,4,64,-0.02257255617341669],[113,4,65,-0.016328840031148775],[113,4,66,-0.01656963243300416],[113,4,67,-0.018609013917642164],[113,4,68,-0.01985297434264144],[113,4,69,-0.02324242605537702],[113,4,70,-0.03217468211966504],[113,4,71,-0.04137933738411409],[113,4,72,-0.041882949505671785],[113,4,73,-0.04246991065968876],[113,4,74,-0.044433124876257196],[113,4,75,-0.04703635256084465],[113,4,76,-0.047549981531151295],[113,4,77,-0.053266111491507034],[113,4,78,-0.05976449341859787],[113,4,79,-0.06162677427995347],[113,5,64,-0.020802234889319066],[113,5,65,-0.016540967190958766],[113,5,66,-0.01494453717578853],[113,5,67,-0.01564011309976822],[113,5,68,-0.014676856816985079],[113,5,69,-0.01943299936960728],[113,5,70,-0.0285924291384482],[113,5,71,-0.038061981672951634],[113,5,72,-0.03800771658406721],[113,5,73,-0.03965795060525282],[113,5,74,-0.04183221172983834],[113,5,75,-0.043084836557831976],[113,5,76,-0.041429075814070904],[113,5,77,-0.049426196031005815],[113,5,78,-0.05344219435083196],[113,5,79,-0.05282311623819866],[113,6,64,-0.021306407011964484],[113,6,65,-0.01693824456980743],[113,6,66,-0.014484035078547161],[113,6,67,-0.010586093741585048],[113,6,68,-0.00980406091505781],[113,6,69,-0.015436701209132736],[113,6,70,-0.025407915659137026],[113,6,71,-0.03332404824046137],[113,6,72,-0.034283238962473386],[113,6,73,-0.0354296054848794],[113,6,74,-0.036797926384400464],[113,6,75,-0.03632691242995814],[113,6,76,-0.03644208155077977],[113,6,77,-0.042833269196027965],[113,6,78,-0.04604880830316674],[113,6,79,-0.046704152378940364],[113,7,64,-0.022340284910291885],[113,7,65,-0.01686549729721243],[113,7,66,-0.012195184193590045],[113,7,67,-0.008406287314539851],[113,7,68,-0.006956936935153507],[113,7,69,-0.011949550400951109],[113,7,70,-0.02193945304963678],[113,7,71,-0.02641179174374597],[113,7,72,-0.02966273938530596],[113,7,73,-0.030878947958142597],[113,7,74,-0.030210855419634294],[113,7,75,-0.02832015070782748],[113,7,76,-0.03320563058100978],[113,7,77,-0.03539708165115807],[113,7,78,-0.035981851701815545],[113,7,79,-0.04005417792502086],[113,8,64,-0.021000209672706813],[113,8,65,-0.017664668237548434],[113,8,66,-0.012734169876967807],[113,8,67,-0.006526874222439499],[113,8,68,-0.004217528410312754],[113,8,69,-0.006058161190299671],[113,8,70,-0.013880903936048475],[113,8,71,-0.019571242915162754],[113,8,72,-0.02317795107903864],[113,8,73,-0.023395335648011342],[113,8,74,-0.02285301433010864],[113,8,75,-0.017534031901704134],[113,8,76,-0.02125162680327694],[113,8,77,-0.02468398914971756],[113,8,78,-0.024899505738849873],[113,8,79,-0.029612910510790985],[113,9,64,-0.01812781421745939],[113,9,65,-0.014208613132821957],[113,9,66,-0.0067236052342269925],[113,9,67,0.001651595571372011],[113,9,68,0.006011855477338651],[113,9,69,0.004786759104155436],[113,9,70,-0.00226422294604689],[113,9,71,-0.010872758295037449],[113,9,72,-0.01711502422746189],[113,9,73,-0.018547893545156097],[113,9,74,-0.018600807514800338],[113,9,75,-0.012520711891888692],[113,9,76,-0.015815619451216956],[113,9,77,-0.01817627555478589],[113,9,78,-0.01706034735227753],[113,9,79,-0.018593319862911392],[113,10,64,-0.018785303947244703],[113,10,65,-0.01289014806313947],[113,10,66,-0.0064094413761435765],[113,10,67,0.0036473522134835568],[113,10,68,0.007845632865715657],[113,10,69,0.006398734269822515],[113,10,70,0.0019714803486574617],[113,10,71,-0.005100355613085389],[113,10,72,-0.014413071929040455],[113,10,73,-0.014718912749951268],[113,10,74,-0.011577627301921883],[113,10,75,-0.008360447047809166],[113,10,76,-0.00784993627887337],[113,10,77,-0.01194778557601378],[113,10,78,-0.013942045824102495],[113,10,79,-0.013514296814155127],[113,11,64,-0.016948834751212755],[113,11,65,-0.014012030143938842],[113,11,66,-0.004480264065165579],[113,11,67,0.005433432627350188],[113,11,68,0.00730916639024265],[113,11,69,0.006604512212205177],[113,11,70,0.006672056823190525],[113,11,71,-0.0011762385196470437],[113,11,72,-0.010277109083750291],[113,11,73,-0.01139900662450602],[113,11,74,-0.0063340480241707575],[113,11,75,-0.0031562067129908],[113,11,76,-0.0035281219052590296],[113,11,77,-0.007549563009131954],[113,11,78,-0.0080943764036433],[113,11,79,-0.00902214309635374],[113,12,64,-0.016782084430627398],[113,12,65,-0.012766726993249239],[113,12,66,-0.0072626027421782285],[113,12,67,-0.0013962060829915968],[113,12,68,-6.523107475528422E-4],[113,12,69,0.00337685149737596],[113,12,70,0.004547214461501636],[113,12,71,-0.004378524915125803],[113,12,72,-0.013083960354688895],[113,12,73,-0.01599130449563123],[113,12,74,-0.01032140834635191],[113,12,75,-0.010414162853653652],[113,12,76,-0.0094822353780592],[113,12,77,-0.011512442778538065],[113,12,78,-0.010871355675802802],[113,12,79,-0.013271884674810053],[113,13,64,-0.016722315655993983],[113,13,65,-0.012720261416456519],[113,13,66,-0.013335202820837944],[113,13,67,-0.011465837614976437],[113,13,68,-0.009334112225206581],[113,13,69,-0.0015127483062699898],[113,13,70,0.0018260581103839713],[113,13,71,-0.0048197449113640545],[113,13,72,-0.010523456221297314],[113,13,73,-0.010705922109481347],[113,13,74,-0.005245733805214897],[113,13,75,-0.008185251338493432],[113,13,76,-0.007349730581862862],[113,13,77,-0.004871058491757674],[113,13,78,-0.008317195223840834],[113,13,79,-0.008109966476621766],[113,14,64,-0.015728530913444533],[113,14,65,-0.011696536019855083],[113,14,66,-0.011148976657366014],[113,14,67,-0.00924190536823212],[113,14,68,-0.0055569149343725754],[113,14,69,-4.5806975771850444E-4],[113,14,70,0.00289334409565567],[113,14,71,-0.002681364154257293],[113,14,72,-0.00818217270396171],[113,14,73,-0.006486977130209959],[113,14,74,-0.0019381322574525128],[113,14,75,-0.0029790195637297567],[113,14,76,-0.0035168475380358],[113,14,77,-2.3329540488500888E-4],[113,14,78,-0.0013710978432857346],[113,14,79,-0.0037747965753781865],[113,15,64,-0.017909078903241143],[113,15,65,-0.011967828410713366],[113,15,66,-0.010340947352408994],[113,15,67,-0.005507158353188393],[113,15,68,-0.002244621427982374],[113,15,69,1.599289727226283E-4],[113,15,70,0.0017368652568498788],[113,15,71,-4.899310275355562E-4],[113,15,72,-0.004448720536844003],[113,15,73,-0.003432195859641496],[113,15,74,0.00337647489717971],[113,15,75,0.0016324736865586942],[113,15,76,0.0015740499355214044],[113,15,77,0.004110455519004935],[113,15,78,0.004866079183207861],[113,15,79,0.0012531515338058408],[113,16,64,-0.020802981528400738],[113,16,65,-0.014661880535347144],[113,16,66,-0.00999293175647617],[113,16,67,-0.004162374887647091],[113,16,68,1.1664673931471858E-4],[113,16,69,0.0018335362290486379],[113,16,70,0.003981869446888803],[113,16,71,0.0034788099342286105],[113,16,72,0.0024545503505093436],[113,16,73,0.005243650799141186],[113,16,74,0.009995319764507404],[113,16,75,0.010066136743297205],[113,16,76,0.010536799369748912],[113,16,77,0.013113243807379465],[113,16,78,0.015244503570304435],[113,16,79,0.01277531029494372],[113,17,64,-0.020982263833922543],[113,17,65,-0.014702104653465622],[113,17,66,-0.011327598589526644],[113,17,67,-0.002640664218124311],[113,17,68,0.0026700710601075817],[113,17,69,0.0032910924742469982],[113,17,70,0.006462335013394688],[113,17,71,0.005424144854840718],[113,17,72,0.0051674297931061375],[113,17,73,0.009685746853217186],[113,17,74,0.013117411913306343],[113,17,75,0.014657694388655107],[113,17,76,0.015879591608640914],[113,17,77,0.019702347612214538],[113,17,78,0.01747978188034474],[113,17,79,0.013137027123163558],[113,18,64,-0.023323192708404605],[113,18,65,-0.016336889281655595],[113,18,66,-0.01031585452549394],[113,18,67,-9.966564175972747E-4],[113,18,68,0.003869165265065533],[113,18,69,0.0072111682521494025],[113,18,70,0.007463932104137205],[113,18,71,0.009083869423520075],[113,18,72,0.00741669825261701],[113,18,73,0.012858376875586885],[113,18,74,0.01605928805236642],[113,18,75,0.018979398311011475],[113,18,76,0.020676401690725182],[113,18,77,0.02151258632446626],[113,18,78,0.019080734082978446],[113,18,79,0.013894350015421358],[113,19,64,-0.02201468766237359],[113,19,65,-0.01770565663751089],[113,19,66,-0.009332610698000052],[113,19,67,4.96575118294651E-4],[113,19,68,0.00636144666072333],[113,19,69,0.011643910118337014],[113,19,70,0.010278345430186436],[113,19,71,0.009749316977811867],[113,19,72,0.010267194677441083],[113,19,73,0.016029538065732846],[113,19,74,0.016683456920723566],[113,19,75,0.019173166329145674],[113,19,76,0.023448891999487992],[113,19,77,0.02346819733966571],[113,19,78,0.020092571529838454],[113,19,79,0.013958253387839403],[113,20,64,-0.020031984743207762],[113,20,65,-0.016885175197862673],[113,20,66,-0.010560557354459307],[113,20,67,-0.003671021042155581],[113,20,68,0.004876731274883861],[113,20,69,0.009447649416233245],[113,20,70,0.008507043815713988],[113,20,71,0.008286517694713114],[113,20,72,0.008451465264616598],[113,20,73,0.013377451393949968],[113,20,74,0.011844300755379289],[113,20,75,0.012995746216503262],[113,20,76,0.016549336925160196],[113,20,77,0.019465050930326577],[113,20,78,0.015306034242087901],[113,20,79,0.009419535061586826],[113,21,64,-0.012619327941503652],[113,21,65,-0.008492125326556646],[113,21,66,-0.004239132910054483],[113,21,67,-1.1198175995918991E-4],[113,21,68,0.011169019939867575],[113,21,69,0.015246277386433221],[113,21,70,0.015347043055361498],[113,21,71,0.013944001321232136],[113,21,72,0.014464165000689505],[113,21,73,0.01671619918924544],[113,21,74,0.014649661092322463],[113,21,75,0.011100861716002358],[113,21,76,0.015412458696362596],[113,21,77,0.0226967970071702],[113,21,78,0.02226307502690994],[113,21,79,0.018177461081325674],[113,22,64,-0.01148766216082836],[113,22,65,-0.00554014605826364],[113,22,66,3.0326544147279977E-5],[113,22,67,0.0012728656312300801],[113,22,68,0.009730052644799259],[113,22,69,0.016995444964756662],[113,22,70,0.017028258686803383],[113,22,71,0.01725264391252415],[113,22,72,0.01864276695379738],[113,22,73,0.019148672512305814],[113,22,74,0.01960757019675327],[113,22,75,0.01429238142228939],[113,22,76,0.016718646908487872],[113,22,77,0.02304052921117672],[113,22,78,0.021097395666618834],[113,22,79,0.01789607624972131],[113,23,64,-0.008161276640636289],[113,23,65,-0.0018943195401824875],[113,23,66,0.0029981173894880753],[113,23,67,0.002485156121021237],[113,23,68,0.010853528303040982],[113,23,69,0.017636672666653835],[113,23,70,0.020102672265529142],[113,23,71,0.019935568516949165],[113,23,72,0.023168472031445675],[113,23,73,0.02364865636547836],[113,23,74,0.021696831396434302],[113,23,75,0.017502890889466743],[113,23,76,0.017564163062765786],[113,23,77,0.021782849024878953],[113,23,78,0.020880854455511383],[113,23,79,0.018507730097966274],[113,24,64,0.006421871018344016],[113,24,65,0.010961931518145979],[113,24,66,0.014347287166692507],[113,24,67,0.01521554084879087],[113,24,68,0.02090550970590771],[113,24,69,0.025531583059607565],[113,24,70,0.02997273481480353],[113,24,71,0.032505176081960185],[113,24,72,0.03496983688544772],[113,24,73,0.03850141381603625],[113,24,74,0.035864460653020264],[113,24,75,0.030203276888590397],[113,24,76,0.028389652892516742],[113,24,77,0.0298387036828405],[113,24,78,0.03087169519551891],[113,24,79,0.030184810408875773],[113,25,64,0.02107433954118737],[113,25,65,0.02674993338684828],[113,25,66,0.02833916924185928],[113,25,67,0.03015081932859867],[113,25,68,0.03343359680905353],[113,25,69,0.03607811216549933],[113,25,70,0.04020068802400825],[113,25,71,0.04580552209550809],[113,25,72,0.048457451589506845],[113,25,73,0.0498717690255652],[113,25,74,0.04972624268643949],[113,25,75,0.04429869364801198],[113,25,76,0.03658162940471299],[113,25,77,0.03302191567765719],[113,25,78,0.03127055426812966],[113,25,79,0.027174183406735164],[113,26,64,0.023489829167504944],[113,26,65,0.030234638242925133],[113,26,66,0.033217033653478334],[113,26,67,0.03548918288771699],[113,26,68,0.035633929326672836],[113,26,69,0.03640145196704886],[113,26,70,0.04221693854809985],[113,26,71,0.04773618596084553],[113,26,72,0.04878443874637545],[113,26,73,0.05092650095662199],[113,26,74,0.049834408540460284],[113,26,75,0.044078864797989115],[113,26,76,0.03567026305682203],[113,26,77,0.03429898259398104],[113,26,78,0.032101295159327525],[113,26,79,0.02754131557484682],[113,27,64,0.026834019314409346],[113,27,65,0.03312938619698241],[113,27,66,0.0383182236170074],[113,27,67,0.040101300541103196],[113,27,68,0.03833159470277253],[113,27,69,0.03932938058007457],[113,27,70,0.04180016680549328],[113,27,71,0.04715866532087243],[113,27,72,0.04908209272638553],[113,27,73,0.05137615494977402],[113,27,74,0.04877176510019848],[113,27,75,0.04387932543279341],[113,27,76,0.037181656046892025],[113,27,77,0.03420683726239748],[113,27,78,0.030691995338452682],[113,27,79,0.02597251478465215],[113,28,64,0.029109419410574655],[113,28,65,0.03498888626362193],[113,28,66,0.040902179271860045],[113,28,67,0.03976116303665464],[113,28,68,0.03571824133952081],[113,28,69,0.03501790329792759],[113,28,70,0.039349048383665375],[113,28,71,0.041543437974679576],[113,28,72,0.04200897471394818],[113,28,73,0.04385692144141967],[113,28,74,0.0419445390569507],[113,28,75,0.03751429412408397],[113,28,76,0.033586244480429045],[113,28,77,0.028996560757155315],[113,28,78,0.025109887830944255],[113,28,79,0.017396723285740157],[113,29,64,0.030426391404749564],[113,29,65,0.03696827439354666],[113,29,66,0.03873737354608825],[113,29,67,0.0346259310522366],[113,29,68,0.030345400590953364],[113,29,69,0.026089883298516525],[113,29,70,0.03072932365237349],[113,29,71,0.03482874680787357],[113,29,72,0.033350143461170295],[113,29,73,0.034180188836561154],[113,29,74,0.0334686752963253],[113,29,75,0.030338886726431452],[113,29,76,0.027106396820085976],[113,29,77,0.022961231572769858],[113,29,78,0.019822493870064878],[113,29,79,0.011764319813067164],[113,30,64,0.03610897711548136],[113,30,65,0.04044187655974621],[113,30,66,0.0400444351236397],[113,30,67,0.03326934617454383],[113,30,68,0.029260096534248464],[113,30,69,0.026803522441886413],[113,30,70,0.029410325871195853],[113,30,71,0.02986510662848993],[113,30,72,0.029399773217819253],[113,30,73,0.031171662017155377],[113,30,74,0.030596464390868383],[113,30,75,0.02704893151359991],[113,30,76,0.02404009212380634],[113,30,77,0.020534331295210345],[113,30,78,0.016484848342801145],[113,30,79,0.008756571596354207],[113,31,64,0.03988229166718113],[113,31,65,0.04358432294763154],[113,31,66,0.04172934398670769],[113,31,67,0.033406848580763066],[113,31,68,0.030081216179622533],[113,31,69,0.02693915489482046],[113,31,70,0.026874839029825043],[113,31,71,0.02508493926324673],[113,31,72,0.02700855491387877],[113,31,73,0.027652745419766617],[113,31,74,0.027058169599756265],[113,31,75,0.024632596972103765],[113,31,76,0.020234617693646983],[113,31,77,0.01614760850228153],[113,31,78,0.011264481209903782],[113,31,79,0.005156899106121354],[113,32,64,0.055270671000230226],[113,32,65,0.060407282423947606],[113,32,66,0.05550925294259129],[113,32,67,0.04590465502689023],[113,32,68,0.04072803978913189],[113,32,69,0.03892962874627859],[113,32,70,0.03763815534004922],[113,32,71,0.034107007007199236],[113,32,72,0.03679545027021891],[113,32,73,0.03599999832244741],[113,32,74,0.034324907755123535],[113,32,75,0.03317312421869548],[113,32,76,0.026503503378787402],[113,32,77,0.021771671453819058],[113,32,78,0.020315097406659238],[113,32,79,0.01602997132341763],[113,33,64,0.048201673776452875],[113,33,65,0.05436143253196271],[113,33,66,0.05123275441154326],[113,33,67,0.044612233620268976],[113,33,68,0.04138670010756501],[113,33,69,0.03621738301060046],[113,33,70,0.03353064464558403],[113,33,71,0.02876978270461314],[113,33,72,0.02640439456529234],[113,33,73,0.026407213346492986],[113,33,74,0.0221765510225454],[113,33,75,0.02027301614397095],[113,33,76,0.015754528969237486],[113,33,77,0.010386381133408618],[113,33,78,0.012267591231415936],[113,33,79,0.01011437122724268],[113,34,64,0.051212838612383293],[113,34,65,0.05595541267028731],[113,34,66,0.05561474536701949],[113,34,67,0.04699920764123208],[113,34,68,0.04294658537618526],[113,34,69,0.03892277612693881],[113,34,70,0.03502753257474164],[113,34,71,0.02944921037809406],[113,34,72,0.023814417300890123],[113,34,73,0.023698575796414906],[113,34,74,0.020187091782799343],[113,34,75,0.01638365018066265],[113,34,76,0.012468433878743385],[113,34,77,0.009874978574684307],[113,34,78,0.010443161838370685],[113,34,79,0.00777880407167858],[113,35,64,0.05310670533366654],[113,35,65,0.05996807076626692],[113,35,66,0.05847913955356657],[113,35,67,0.050305638613021564],[113,35,68,0.045918764796438666],[113,35,69,0.03953174600643797],[113,35,70,0.03214703974184854],[113,35,71,0.026732562154182543],[113,35,72,0.020324460230443375],[113,35,73,0.01999092228842403],[113,35,74,0.016471950921573192],[113,35,75,0.014360187861007984],[113,35,76,0.013259350990601798],[113,35,77,0.009364065429264296],[113,35,78,0.008460571091330804],[113,35,79,0.006338618070407531],[113,36,64,0.05219093491150803],[113,36,65,0.059014865621190626],[113,36,66,0.05746809478733517],[113,36,67,0.05050668042269657],[113,36,68,0.04426228304808416],[113,36,69,0.03653753977288535],[113,36,70,0.028032168310745592],[113,36,71,0.021788128830482256],[113,36,72,0.016494234393000295],[113,36,73,0.014667404808347134],[113,36,74,0.008544069032915491],[113,36,75,0.008871140932755567],[113,36,76,0.0118539662191946],[113,36,77,0.00781618576365456],[113,36,78,0.005936377620368777],[113,36,79,0.004648770646569461],[113,37,64,0.06625053943302911],[113,37,65,0.06565305308706079],[113,37,66,0.05994106821023468],[113,37,67,0.04998968337603665],[113,37,68,0.0405298946025259],[113,37,69,0.031072420124418798],[113,37,70,0.021368217388893745],[113,37,71,0.01438661632111915],[113,37,72,0.011544886128723342],[113,37,73,0.014101974645769344],[113,37,74,0.006478518628871138],[113,37,75,0.00681506830848988],[113,37,76,0.010209170758786884],[113,37,77,0.010379790011374374],[113,37,78,0.007903959004777028],[113,37,79,0.00687447347145223],[113,38,64,0.07153051430785051],[113,38,65,0.06893348364219676],[113,38,66,0.05959760891413235],[113,38,67,0.04991384286455633],[113,38,68,0.04099762088026898],[113,38,69,0.028753981294818154],[113,38,70,0.020124920418179454],[113,38,71,0.01641632896301712],[113,38,72,0.013385905295152933],[113,38,73,0.012720664157361505],[113,38,74,0.009595722834252363],[113,38,75,0.006731013997988672],[113,38,76,0.007623094942587505],[113,38,77,0.00793159016422687],[113,38,78,0.006874957322202002],[113,38,79,0.006328336127985529],[113,39,64,0.07578711112354666],[113,39,65,0.07188491793327556],[113,39,66,0.05970340964979756],[113,39,67,0.04918972613746983],[113,39,68,0.03945783485036494],[113,39,69,0.02656293339320437],[113,39,70,0.017935661544874082],[113,39,71,0.016976520699443776],[113,39,72,0.01415688802510412],[113,39,73,0.015686660203701408],[113,39,74,0.01221350369933799],[113,39,75,0.008403132493362137],[113,39,76,0.0076859318218626405],[113,39,77,0.005814715083699296],[113,39,78,0.0074760544319358024],[113,39,79,0.006544660992964524],[113,40,64,0.08884033910369427],[113,40,65,0.0868947852777075],[113,40,66,0.07372861570485675],[113,40,67,0.06110464025591736],[113,40,68,0.05464968628817507],[113,40,69,0.04278330875679093],[113,40,70,0.032633816306712526],[113,40,71,0.030901698008990813],[113,40,72,0.029834528966122847],[113,40,73,0.03110162866961233],[113,40,74,0.026735604813254793],[113,40,75,0.024129802859744753],[113,40,76,0.020991307442070395],[113,40,77,0.018825117644116124],[113,40,78,0.020201135842499912],[113,40,79,0.01989628600644694],[113,41,64,0.0888369368813717],[113,41,65,0.08569408892467303],[113,41,66,0.07414249912237239],[113,41,67,0.061153890126998955],[113,41,68,0.054625336179086326],[113,41,69,0.04434466628198866],[113,41,70,0.03457279406496189],[113,41,71,0.0321923747394508],[113,41,72,0.03076377045667711],[113,41,73,0.032712865308155814],[113,41,74,0.029957223800586158],[113,41,75,0.02476417208612497],[113,41,76,0.018927523509437355],[113,41,77,0.018012221964488317],[113,41,78,0.019854644107061226],[113,41,79,0.019361305043260224],[113,42,64,0.09041375773232913],[113,42,65,0.08660447344494929],[113,42,66,0.07472391650447283],[113,42,67,0.06229930476300263],[113,42,68,0.05371365592480551],[113,42,69,0.045989631038060585],[113,42,70,0.037474352084365475],[113,42,71,0.034586463168188586],[113,42,72,0.03341404363432296],[113,42,73,0.03422411561939953],[113,42,74,0.029952042978434623],[113,42,75,0.023559580589092466],[113,42,76,0.01669896494896672],[113,42,77,0.017044465239119677],[113,42,78,0.018443435518162132],[113,42,79,0.02047258696158777],[113,43,64,0.09407579083153489],[113,43,65,0.08687362877899016],[113,43,66,0.0750912250223929],[113,43,67,0.06307934274840951],[113,43,68,0.0530532243821811],[113,43,69,0.045706436127692984],[113,43,70,0.03994068966810721],[113,43,71,0.03461629555280188],[113,43,72,0.033455836188143656],[113,43,73,0.03267835836612498],[113,43,74,0.029325640648622392],[113,43,75,0.02440096769538877],[113,43,76,0.015834368464000936],[113,43,77,0.017101554688083914],[113,43,78,0.018989511959596334],[113,43,79,0.023331761929235584],[113,44,64,0.09074770399943372],[113,44,65,0.08405603511205065],[113,44,66,0.07217285443156096],[113,44,67,0.06448423082877824],[113,44,68,0.051358430443590425],[113,44,69,0.04390922808230582],[113,44,70,0.037361181026808216],[113,44,71,0.03197771767701446],[113,44,72,0.03124745388284278],[113,44,73,0.029324372010078953],[113,44,74,0.026062734162579898],[113,44,75,0.022008612155540952],[113,44,76,0.016436611163674425],[113,44,77,0.01405395293525094],[113,44,78,0.015561092657574216],[113,44,79,0.020583798512380208],[113,45,64,0.07711328750375235],[113,45,65,0.07418953791697364],[113,45,66,0.06947567690207809],[113,45,67,0.06581984729814155],[113,45,68,0.05731163613664178],[113,45,69,0.05330009440679115],[113,45,70,0.05122412574259827],[113,45,71,0.05172716120541471],[113,45,72,0.050240879112462195],[113,45,73,0.05057591039956166],[113,45,74,0.048975735836016054],[113,45,75,0.04782895827606065],[113,45,76,0.0414076215939565],[113,45,77,0.037405068731883484],[113,45,78,0.03715096151969943],[113,45,79,0.036453679654477794],[113,46,64,0.0751742866028205],[113,46,65,0.07263377366309062],[113,46,66,0.06870620481307571],[113,46,67,0.06373751557352517],[113,46,68,0.05642611949101542],[113,46,69,0.053346162686916304],[113,46,70,0.0538210901262306],[113,46,71,0.05254924739733047],[113,46,72,0.0508425759174399],[113,46,73,0.04915781834020774],[113,46,74,0.04655381606484893],[113,46,75,0.048264090171561524],[113,46,76,0.041686328500732395],[113,46,77,0.03978061332242999],[113,46,78,0.03862696646767108],[113,46,79,0.03623344549048538],[113,47,64,0.07447440827414598],[113,47,65,0.07163331931827577],[113,47,66,0.06762385588596792],[113,47,67,0.06547772992139869],[113,47,68,0.05602017891543648],[113,47,69,0.05437292014736961],[113,47,70,0.054092124823845816],[113,47,71,0.053400641635249796],[113,47,72,0.050586957141314004],[113,47,73,0.047290737569067626],[113,47,74,0.044509736586070714],[113,47,75,0.048088344451945514],[113,47,76,0.04309324414641019],[113,47,77,0.040577041482421694],[113,47,78,0.03734844052586275],[113,47,79,0.03379301316765412],[113,48,64,0.08676129185894846],[113,48,65,0.08342548290250984],[113,48,66,0.07947367120779944],[113,48,67,0.07736898813445117],[113,48,68,0.07138597693665547],[113,48,69,0.07060260074185543],[113,48,70,0.07045139882352297],[113,48,71,0.06741533510833009],[113,48,72,0.06478988899473401],[113,48,73,0.06081728881712367],[113,48,74,0.05853537304463943],[113,48,75,0.06140170755803634],[113,48,76,0.05769191872261714],[113,48,77,0.05426814232721103],[113,48,78,0.05265609582557104],[113,48,79,0.04792405760076121],[113,49,64,0.08638415438535507],[113,49,65,0.08495831816004468],[113,49,66,0.08380502878010429],[113,49,67,0.08099869293045711],[113,49,68,0.08111761767756126],[113,49,69,0.08344844662618486],[113,49,70,0.07826832852330506],[113,49,71,0.06974021462405969],[113,49,72,0.05983734424664067],[113,49,73,0.053862869143294245],[113,49,74,0.04928370590039888],[113,49,75,0.048636024496459374],[113,49,76,0.04803239738610546],[113,49,77,0.04493033199566954],[113,49,78,0.04367645255523192],[113,49,79,0.03855012573672678],[113,50,64,0.08372211627318474],[113,50,65,0.08347120582327341],[113,50,66,0.0824909427424442],[113,50,67,0.08002378400938695],[113,50,68,0.08100338650988853],[113,50,69,0.08212449924046025],[113,50,70,0.07562124807308926],[113,50,71,0.06950684905668875],[113,50,72,0.059157104007219796],[113,50,73,0.05179142754268001],[113,50,74,0.04732644522179974],[113,50,75,0.04781626011101328],[113,50,76,0.04482508775310362],[113,50,77,0.04412145379197943],[113,50,78,0.04279499077833282],[113,50,79,0.03966843078435614],[113,51,64,0.07981290494705207],[113,51,65,0.0814150892978622],[113,51,66,0.08021702349678222],[113,51,67,0.07804845221252624],[113,51,68,0.07955754839406859],[113,51,69,0.08295376952582906],[113,51,70,0.07626677327931242],[113,51,71,0.06764706881555471],[113,51,72,0.05703900679812496],[113,51,73,0.050224041509513845],[113,51,74,0.046057611832927725],[113,51,75,0.04456188185086854],[113,51,76,0.042478110880091874],[113,51,77,0.040380284394227584],[113,51,78,0.04211060009058845],[113,51,79,0.03815406408945632],[113,52,64,0.08696637746997349],[113,52,65,0.08858843514789616],[113,52,66,0.08903117300027075],[113,52,67,0.08741583749426049],[113,52,68,0.08791605604193664],[113,52,69,0.09121724401083076],[113,52,70,0.0866119110123274],[113,52,71,0.07701473871484427],[113,52,72,0.06688691451045575],[113,52,73,0.06000346599313591],[113,52,74,0.05528342172199274],[113,52,75,0.05207651200486807],[113,52,76,0.04992741793834177],[113,52,77,0.04728354577763916],[113,52,78,0.04988026256308342],[113,52,79,0.04674599706193097],[113,53,64,0.08510020659720885],[113,53,65,0.0851910371794819],[113,53,66,0.0846341270451263],[113,53,67,0.08529157703198167],[113,53,68,0.08118885665889072],[113,53,69,0.08197700800967167],[113,53,70,0.0755636768024544],[113,53,71,0.0674088950197983],[113,53,72,0.05546706836625162],[113,53,73,0.049982945648860605],[113,53,74,0.04769863623938364],[113,53,75,0.04189587517697149],[113,53,76,0.04025198211390291],[113,53,77,0.03927494337505405],[113,53,78,0.04045936078457643],[113,53,79,0.03925370561873784],[113,54,64,0.07911075063298117],[113,54,65,0.07875508545510893],[113,54,66,0.07944194682866854],[113,54,67,0.08132841762174892],[113,54,68,0.07963283018052236],[113,54,69,0.07792309044881282],[113,54,70,0.0727285021272703],[113,54,71,0.06395981182299465],[113,54,72,0.05604739284804755],[113,54,73,0.05172968629683003],[113,54,74,0.04998690116746432],[113,54,75,0.04260681585205911],[113,54,76,0.038357345664006004],[113,54,77,0.038292202496457706],[113,54,78,0.04052344367855115],[113,54,79,0.037005505462711086],[113,55,64,0.07198464110730168],[113,55,65,0.07234963076775114],[113,55,66,0.07348395056988885],[113,55,67,0.0759979899572171],[113,55,68,0.07385225204220916],[113,55,69,0.07315793861586645],[113,55,70,0.07052839596105742],[113,55,71,0.06246309513041032],[113,55,72,0.05689825340942681],[113,55,73,0.051309227492480514],[113,55,74,0.048618169969139674],[113,55,75,0.04369460134027964],[113,55,76,0.03875686503981446],[113,55,77,0.03715166379438925],[113,55,78,0.038907562382386296],[113,55,79,0.03492368015461861],[113,56,64,0.08516134808596126],[113,56,65,0.0828928265795549],[113,56,66,0.08418069037858913],[113,56,67,0.08451184018035804],[113,56,68,0.08183575277184843],[113,56,69,0.08036749404060861],[113,56,70,0.08174004628922457],[113,56,71,0.07794977352380297],[113,56,72,0.07332029654619077],[113,56,73,0.06494513673470281],[113,56,74,0.0608667427717316],[113,56,75,0.057003282814049455],[113,56,76,0.05315952562431503],[113,56,77,0.053994737921672475],[113,56,78,0.05478120475102663],[113,56,79,0.04874642897841819],[113,57,64,0.08611282855321795],[113,57,65,0.08327786325359507],[113,57,66,0.08431588445525137],[113,57,67,0.08499914438224512],[113,57,68,0.08177183850317482],[113,57,69,0.07935221524022273],[113,57,70,0.08153061070656514],[113,57,71,0.07797206200496276],[113,57,72,0.06825827726004693],[113,57,73,0.05797589458546781],[113,57,74,0.052418137707066326],[113,57,75,0.04919864926303155],[113,57,76,0.04751601541686595],[113,57,77,0.04688628714573556],[113,57,78,0.04733126436012472],[113,57,79,0.042704072520837855],[113,58,64,0.1232310883186926],[113,58,65,0.1207856383052147],[113,58,66,0.11956493073556552],[113,58,67,0.1182168986249653],[113,58,68,0.11688187875245959],[113,58,69,0.11394242131912634],[113,58,70,0.11465935706438718],[113,58,71,0.11292925953797417],[113,58,72,0.10196641022699267],[113,58,73,0.09144163174738339],[113,58,74,0.08581056111526968],[113,58,75,0.07860223848928083],[113,58,76,0.07973339688387424],[113,58,77,0.07857659169156248],[113,58,78,0.0793731592705707],[113,58,79,0.07634479235972225],[113,59,64,0.11966668821923003],[113,59,65,0.11624654611769372],[113,59,66,0.11452092323417867],[113,59,67,0.11359704754138722],[113,59,68,0.11320768413231036],[113,59,69,0.1086250209178497],[113,59,70,0.10970560173060012],[113,59,71,0.10687794689196632],[113,59,72,0.09857365267898499],[113,59,73,0.088452056804274],[113,59,74,0.0828276090959647],[113,59,75,0.07589625475152367],[113,59,76,0.07617180719931668],[113,59,77,0.07696943947950642],[113,59,78,0.07897222592759419],[113,59,79,0.0779371504219673],[113,60,64,0.11431332196844193],[113,60,65,0.11194977657206617],[113,60,66,0.11061101582244293],[113,60,67,0.10814042636432394],[113,60,68,0.10451769435685421],[113,60,69,0.10206796130616025],[113,60,70,0.10276408266712393],[113,60,71,0.0997954152045386],[113,60,72,0.09470292722850658],[113,60,73,0.0835143732348932],[113,60,74,0.07767074400661508],[113,60,75,0.07093182494528158],[113,60,76,0.06981551041543589],[113,60,77,0.07349530412779391],[113,60,78,0.07739881833086804],[113,60,79,0.07935399680612512],[113,61,64,0.10965954853516507],[113,61,65,0.10602728890276246],[113,61,66,0.10321857022240162],[113,61,67,0.09638544823897034],[113,61,68,0.08862894818854933],[113,61,69,0.08745623384856785],[113,61,70,0.09029139441110298],[113,61,71,0.091681020144475],[113,61,72,0.09140698209662217],[113,61,73,0.08603102376506176],[113,61,74,0.07957162871109649],[113,61,75,0.07419428614186425],[113,61,76,0.07392093042592117],[113,61,77,0.07677208328788099],[113,61,78,0.08312911017283245],[113,61,79,0.0888778259623229],[113,62,64,0.10488417066197582],[113,62,65,0.1004984868523331],[113,62,66,0.09723880926082062],[113,62,67,0.09117512053541191],[113,62,68,0.084271090872948],[113,62,69,0.08311646042676855],[113,62,70,0.08644152335316323],[113,62,71,0.08960912982796944],[113,62,72,0.09007915161057815],[113,62,73,0.08448384619117888],[113,62,74,0.07837374657225829],[113,62,75,0.07557543106496334],[113,62,76,0.07430308834651178],[113,62,77,0.07619397475745529],[113,62,78,0.0845595002538549],[113,62,79,0.08901691593884598],[113,63,64,0.030191846989974958],[113,63,65,0.02261524657464531],[113,63,66,0.0198228987534749],[113,63,67,0.013701352303330624],[113,63,68,0.009202185142602376],[113,63,69,0.00599004247788594],[113,63,70,0.010872142482010919],[113,63,71,0.014858048864468842],[113,63,72,0.01620639401655556],[113,63,73,0.012470731566464194],[113,63,74,0.0077913481853462835],[113,63,75,0.0037055385271338587],[113,63,76,0.0033774191032750756],[113,63,77,0.005930846890174493],[113,63,78,0.012491637941868278],[113,63,79,0.012259011260623856],[113,64,64,0.036544772619218166],[113,64,65,0.029350014118059264],[113,64,66,0.025208539025033908],[113,64,67,0.020644552327352864],[113,64,68,0.01658680369249961],[113,64,69,0.010693621524860475],[113,64,70,0.016095547190130358],[113,64,71,0.020065875607886655],[113,64,72,0.022139427699878006],[113,64,73,0.01996546875155654],[113,64,74,0.015700184331174732],[113,64,75,0.013036648816558069],[113,64,76,0.013008342604163753],[113,64,77,0.015422409011723828],[113,64,78,0.0193972813074315],[113,64,79,0.0160018050622404],[113,65,64,0.03107444874227691],[113,65,65,0.025097761025299314],[113,65,66,0.02023693670933037],[113,65,67,0.015793633600370865],[113,65,68,0.010764420996349805],[113,65,69,0.006427136937451172],[113,65,70,0.012607269799926435],[113,65,71,0.017308812667474027],[113,65,72,0.020244565881871332],[113,65,73,0.01713463721035706],[113,65,74,0.013138031515522258],[113,65,75,0.011253671473673149],[113,65,76,0.010795344530514575],[113,65,77,0.01230075386176567],[113,65,78,0.01710799108250298],[113,65,79,0.01390316389508163],[113,66,64,0.02297619257231287],[113,66,65,0.017485255306821143],[113,66,66,0.011488628068707554],[113,66,67,0.006197989294176212],[113,66,68,-5.825662475831689E-4],[113,66,69,-0.0030203871427054024],[113,66,70,0.0031223249873229553],[113,66,71,0.00764849198208474],[113,66,72,0.012302713690761913],[113,66,73,0.009899463661192306],[113,66,74,0.006480995861634933],[113,66,75,0.0030732189322692366],[113,66,76,0.0014714220939393424],[113,66,77,0.002977527096274399],[113,66,78,0.007622545694003252],[113,66,79,0.005559910238188401],[113,67,64,0.023065612884496864],[113,67,65,0.015149012110059423],[113,67,66,0.00525517867301889],[113,67,67,0.001584613882304256],[113,67,68,-0.0029266556790066844],[113,67,69,-0.004356970796767376],[113,67,70,3.368269562452897E-4],[113,67,71,0.003835687142456967],[113,67,72,0.00953364786948939],[113,67,73,0.008060098374235353],[113,67,74,0.004957225343447183],[113,67,75,-6.618546195427955E-4],[113,67,76,-0.0017738660470169032],[113,67,77,-4.2620021824364696E-4],[113,67,78,6.792824354220767E-4],[113,67,79,-8.43941355906444E-4],[113,68,64,-0.06400047269994127],[113,68,65,-0.07745427199647054],[113,68,66,-0.08665226696474325],[113,68,67,-0.08879394033846034],[113,68,68,-0.09171746156458643],[113,68,69,-0.09367575084825303],[113,68,70,-0.0887259348150978],[113,68,71,-0.08437008602164814],[113,68,72,-0.07898450041841168],[113,68,73,-0.08095565982811942],[113,68,74,-0.08539741683748357],[113,68,75,-0.09015452575456075],[113,68,76,-0.09165606577134905],[113,68,77,-0.09205246541384421],[113,68,78,-0.09133676288251212],[113,68,79,-0.09084186063472682],[113,69,64,-0.06645270026765168],[113,69,65,-0.08181117208256027],[113,69,66,-0.09148113873502124],[113,69,67,-0.09694920185493618],[113,69,68,-0.09581340828554238],[113,69,69,-0.09479043057443616],[113,69,70,-0.0893145299415426],[113,69,71,-0.08086936210391502],[113,69,72,-0.07383083715086919],[113,69,73,-0.07234602644362462],[113,69,74,-0.07725496008436084],[113,69,75,-0.0819526462874767],[113,69,76,-0.08523018837197667],[113,69,77,-0.09160883737892947],[113,69,78,-0.09711339104448677],[113,69,79,-0.09867897064864983],[113,70,64,-0.07442822529818105],[113,70,65,-0.08666201697808107],[113,70,66,-0.09323799081153451],[113,70,67,-0.0976271730120035],[113,70,68,-0.09742686005411087],[113,70,69,-0.09603948010056673],[113,70,70,-0.091137942575674],[113,70,71,-0.08044548410179189],[113,70,72,-0.074261895982905],[113,70,73,-0.07492857676505034],[113,70,74,-0.07904805869377596],[113,70,75,-0.08573634358183715],[113,70,76,-0.08729817537278145],[113,70,77,-0.09155036171930973],[113,70,78,-0.0989161831743964],[113,70,79,-0.10037997115083389],[113,71,64,-0.0675746060564584],[113,71,65,-0.08104706130239395],[113,71,66,-0.0854244725755904],[113,71,67,-0.08814542116974973],[113,71,68,-0.08961059927716186],[113,71,69,-0.08709346277089296],[113,71,70,-0.08185558945871818],[113,71,71,-0.07190607852699007],[113,71,72,-0.06716704888356362],[113,71,73,-0.06643136366212833],[113,71,74,-0.07508820043114661],[113,71,75,-0.07905462447034128],[113,71,76,-0.08037514540689038],[113,71,77,-0.08352199875148453],[113,71,78,-0.09150553718325913],[113,71,79,-0.09254800809535049],[113,72,64,-0.0726696256868539],[113,72,65,-0.08662366319952997],[113,72,66,-0.08892989510538235],[113,72,67,-0.0895882496928937],[113,72,68,-0.09038630115796656],[113,72,69,-0.08883512381713915],[113,72,70,-0.08541628777074212],[113,72,71,-0.0750607185724272],[113,72,72,-0.0726516416559558],[113,72,73,-0.07157192501314673],[113,72,74,-0.07750475381238399],[113,72,75,-0.08123904364880148],[113,72,76,-0.08206328901757196],[113,72,77,-0.08543670665348332],[113,72,78,-0.09484590954519945],[113,72,79,-0.09507279745110234],[113,73,64,-0.08729540892568431],[113,73,65,-0.09127283332353005],[113,73,66,-0.08925466123196467],[113,73,67,-0.08466850939032372],[113,73,68,-0.08291444033586509],[113,73,69,-0.07942923454575904],[113,73,70,-0.08054104079370927],[113,73,71,-0.0811677302898496],[113,73,72,-0.08312526412642789],[113,73,73,-0.08598854998918595],[113,73,74,-0.0892797439490114],[113,73,75,-0.09180248117487363],[113,73,76,-0.09458175528769165],[113,73,77,-0.09537632491515857],[113,73,78,-0.09904968853942236],[113,73,79,-0.09804944577175836],[113,74,64,-0.09647334733985176],[113,74,65,-0.09814992199838991],[113,74,66,-0.09563017107779258],[113,74,67,-0.09410986240358002],[113,74,68,-0.09186165519187214],[113,74,69,-0.08727902500709389],[113,74,70,-0.08753029477594763],[113,74,71,-0.09196472995680198],[113,74,72,-0.09406079388502045],[113,74,73,-0.09395105194265271],[113,74,74,-0.09910985414516899],[113,74,75,-0.0994480538603571],[113,74,76,-0.10704445176762858],[113,74,77,-0.10542519321267002],[113,74,78,-0.10806078350051222],[113,74,79,-0.10676517893789061],[113,75,64,-0.09795805443418854],[113,75,65,-0.0988473327693064],[113,75,66,-0.09803182427960286],[113,75,67,-0.09753652028651492],[113,75,68,-0.09492830903428945],[113,75,69,-0.08919161400640972],[113,75,70,-0.08972113056428045],[113,75,71,-0.09393721245152038],[113,75,72,-0.09863171903578731],[113,75,73,-0.09856457192851643],[113,75,74,-0.10508274211750361],[113,75,75,-0.10582683810048665],[113,75,76,-0.11046812914353726],[113,75,77,-0.11365136050758695],[113,75,78,-0.1132885782993893],[113,75,79,-0.11244828517452207],[113,76,64,-0.094541920283039],[113,76,65,-0.09540269256744588],[113,76,66,-0.09482728994830038],[113,76,67,-0.09493475544445526],[113,76,68,-0.0931517621735633],[113,76,69,-0.08943879012796509],[113,76,70,-0.08645913612389469],[113,76,71,-0.08996179693399418],[113,76,72,-0.09810887260357487],[113,76,73,-0.09988685227240995],[113,76,74,-0.10521239638226469],[113,76,75,-0.10602075338319586],[113,76,76,-0.11044756721070462],[113,76,77,-0.11632019899399323],[113,76,78,-0.11778200135202588],[113,76,79,-0.11460179370184873],[113,77,64,-0.0955467842642157],[113,77,65,-0.09635625496545121],[113,77,66,-0.09706047786262816],[113,77,67,-0.09886044227185038],[113,77,68,-0.09569183955230787],[113,77,69,-0.09253617361839002],[113,77,70,-0.09176216502142591],[113,77,71,-0.09506143234027736],[113,77,72,-0.10263420754872835],[113,77,73,-0.10660575110498424],[113,77,74,-0.11009943296487117],[113,77,75,-0.11393925025764245],[113,77,76,-0.11637674486515678],[113,77,77,-0.12302257922672333],[113,77,78,-0.12390170729503866],[113,77,79,-0.12109630785092154],[113,78,64,-0.09694364463227965],[113,78,65,-0.0959390556806378],[113,78,66,-0.09665653687734588],[113,78,67,-0.09939341143787497],[113,78,68,-0.09734760628994116],[113,78,69,-0.0962197794774231],[113,78,70,-0.09377724850626656],[113,78,71,-0.09679888737622641],[113,78,72,-0.1045620989964467],[113,78,73,-0.11166782921466328],[113,78,74,-0.11530893588889593],[113,78,75,-0.116164419239875],[113,78,76,-0.12200809339542797],[113,78,77,-0.12614523405838657],[113,78,78,-0.12918627091041718],[113,78,79,-0.1254936558879909],[113,79,64,-0.09015454780183417],[113,79,65,-0.08676929363654602],[113,79,66,-0.08905246926467972],[113,79,67,-0.09246192365031658],[113,79,68,-0.08995816575492496],[113,79,69,-0.08814192377385444],[113,79,70,-0.08618430037261611],[113,79,71,-0.08930580801120039],[113,79,72,-0.09739006810766912],[113,79,73,-0.10302848042713894],[113,79,74,-0.10914635118359443],[113,79,75,-0.10824315015584149],[113,79,76,-0.11458381477589098],[113,79,77,-0.11737536940525038],[113,79,78,-0.1197847144584625],[113,79,79,-0.117457057493367],[113,80,64,-0.09129612962071222],[113,80,65,-0.08991671058755987],[113,80,66,-0.09116767565243933],[113,80,67,-0.09127016874035605],[113,80,68,-0.0934321742046954],[113,80,69,-0.09300323122789687],[113,80,70,-0.09014613449909906],[113,80,71,-0.09150475964233791],[113,80,72,-0.09881042653810998],[113,80,73,-0.10303443662045347],[113,80,74,-0.10958701072551322],[113,80,75,-0.11119061509916349],[113,80,76,-0.11732352866278889],[113,80,77,-0.1224964058571464],[113,80,78,-0.1241416290183022],[113,80,79,-0.12263278473904587],[113,81,64,-0.0914576113512856],[113,81,65,-0.09208366100673605],[113,81,66,-0.0905697201357328],[113,81,67,-0.08807830646631423],[113,81,68,-0.09171848941893801],[113,81,69,-0.09095733077852654],[113,81,70,-0.0889461836158782],[113,81,71,-0.08833256287521819],[113,81,72,-0.09047518087943913],[113,81,73,-0.09286223975106675],[113,81,74,-0.09858865409520233],[113,81,75,-0.10210723741446169],[113,81,76,-0.11333839381035193],[113,81,77,-0.12288590618425219],[113,81,78,-0.12959644529551662],[113,81,79,-0.1334588806374964],[113,82,64,-0.10115527600493433],[113,82,65,-0.1021251045082568],[113,82,66,-0.09925473319941745],[113,82,67,-0.09598096392248474],[113,82,68,-0.10201591131714241],[113,82,69,-0.10054547732134501],[113,82,70,-0.09955220141286863],[113,82,71,-0.09900519677637769],[113,82,72,-0.10022766350774528],[113,82,73,-0.1024103345375945],[113,82,74,-0.10439322413562273],[113,82,75,-0.10810222369254184],[113,82,76,-0.12025421553161635],[113,82,77,-0.12829971560703388],[113,82,78,-0.13731794861162],[113,82,79,-0.14240903002492522],[113,83,64,-0.10491071316201944],[113,83,65,-0.1042030739025091],[113,83,66,-0.1041705923980115],[113,83,67,-0.10073032501842809],[113,83,68,-0.10354459753588197],[113,83,69,-0.10588719129392901],[113,83,70,-0.10392510192465158],[113,83,71,-0.10461950411851739],[113,83,72,-0.10337374455354673],[113,83,73,-0.10469220006195228],[113,83,74,-0.1059034401915174],[113,83,75,-0.11047755770049679],[113,83,76,-0.12217717672295438],[113,83,77,-0.13319233294980998],[113,83,78,-0.14257800502956922],[113,83,79,-0.1455656290861993],[113,84,64,-0.10488983611106498],[113,84,65,-0.10410156164075611],[113,84,66,-0.10218090968235277],[113,84,67,-0.10197427120970996],[113,84,68,-0.10410054151813782],[113,84,69,-0.10703036855002593],[113,84,70,-0.10802967127464815],[113,84,71,-0.1082130048098437],[113,84,72,-0.10519016443549303],[113,84,73,-0.10548120279092515],[113,84,74,-0.10733328633459788],[113,84,75,-0.11601648146509391],[113,84,76,-0.12705666712789887],[113,84,77,-0.13624271688720827],[113,84,78,-0.1451000299899867],[113,84,79,-0.14754018580689104],[113,85,64,-0.10571555935753862],[113,85,65,-0.10953305498747473],[113,85,66,-0.11206541903966848],[113,85,67,-0.11366902177360849],[113,85,68,-0.11719121291716676],[113,85,69,-0.12016970500178367],[113,85,70,-0.12129163902546115],[113,85,71,-0.12333229793861922],[113,85,72,-0.12124250038640993],[113,85,73,-0.12164760394915632],[113,85,74,-0.1275143536651871],[113,85,75,-0.13612253444755476],[113,85,76,-0.14327071120015983],[113,85,77,-0.14446717033302658],[113,85,78,-0.1448610854602592],[113,85,79,-0.14443303904733495],[113,86,64,-0.10715856266565096],[113,86,65,-0.11084583400992461],[113,86,66,-0.11428165844922952],[113,86,67,-0.11755075875268428],[113,86,68,-0.11661119710939047],[113,86,69,-0.11927414238650123],[113,86,70,-0.12339533749387921],[113,86,71,-0.1265722630105085],[113,86,72,-0.12561592261806107],[113,86,73,-0.12705849178870002],[113,86,74,-0.1308655535885379],[113,86,75,-0.14153347885721204],[113,86,76,-0.14680350606894207],[113,86,77,-0.14761646883333487],[113,86,78,-0.14901482138263783],[113,86,79,-0.14896681785547541],[113,87,64,-0.09775813366272855],[113,87,65,-0.10260873766498155],[113,87,66,-0.10763913312500752],[113,87,67,-0.10931295655833372],[113,87,68,-0.10920781851985047],[113,87,69,-0.10838582781256254],[113,87,70,-0.113909477954905],[113,87,71,-0.11790431120074073],[113,87,72,-0.11840985370291422],[113,87,73,-0.11918549076238144],[113,87,74,-0.12652798161025805],[113,87,75,-0.1367885359491322],[113,87,76,-0.14116486944411344],[113,87,77,-0.1426003963169537],[113,87,78,-0.1427384360908555],[113,87,79,-0.14430844630907022],[113,88,64,-0.10020669091749848],[113,88,65,-0.10389960695842551],[113,88,66,-0.10809773586467578],[113,88,67,-0.11092978264032982],[113,88,68,-0.11194646092763536],[113,88,69,-0.11079218007065098],[113,88,70,-0.11730646231919817],[113,88,71,-0.1187347362812502],[113,88,72,-0.12072729169127756],[113,88,73,-0.1203991250215474],[113,88,74,-0.13024121978495562],[113,88,75,-0.13922379627734305],[113,88,76,-0.14492479513489356],[113,88,77,-0.14501595370161852],[113,88,78,-0.14446801363241313],[113,88,79,-0.1462082810657649],[113,89,64,-0.10304745872424934],[113,89,65,-0.10727289412833602],[113,89,66,-0.10904240140704322],[113,89,67,-0.11233157103105294],[113,89,68,-0.11270208680792768],[113,89,69,-0.11282998221507712],[113,89,70,-0.11872523179807659],[113,89,71,-0.12146805741675729],[113,89,72,-0.12099915960890946],[113,89,73,-0.12021759314745216],[113,89,74,-0.13266405530656222],[113,89,75,-0.14188596138473425],[113,89,76,-0.1471769864835064],[113,89,77,-0.14638552851366363],[113,89,78,-0.14813637839940128],[113,89,79,-0.14825708051538608],[113,90,64,-0.11181218031207377],[113,90,65,-0.11385421122563422],[113,90,66,-0.11383847071187918],[113,90,67,-0.11722824004519834],[113,90,68,-0.11991272575774223],[113,90,69,-0.12043359847929477],[113,90,70,-0.12828237676868495],[113,90,71,-0.12797621257141284],[113,90,72,-0.12756157016003936],[113,90,73,-0.12787005736045287],[113,90,74,-0.14059246150784327],[113,90,75,-0.1481813502362328],[113,90,76,-0.15355967347504057],[113,90,77,-0.15729087404450753],[113,90,78,-0.15720930252276422],[113,90,79,-0.15774809427742603],[113,91,64,-0.11365254938509486],[113,91,65,-0.11468691090328065],[113,91,66,-0.11482537039375237],[113,91,67,-0.11685626099832334],[113,91,68,-0.1197176613481178],[113,91,69,-0.12411649797636153],[113,91,70,-0.12866839859168758],[113,91,71,-0.12910305918420256],[113,91,72,-0.12869950109274747],[113,91,73,-0.1309334331855431],[113,91,74,-0.14317624456312264],[113,91,75,-0.14687406970016342],[113,91,76,-0.15249462994058838],[113,91,77,-0.16137271488706229],[113,91,78,-0.16494846140779507],[113,91,79,-0.16360044754389758],[113,92,64,-0.10696361270196617],[113,92,65,-0.10661562021854379],[113,92,66,-0.10753869559931374],[113,92,67,-0.10890636736307832],[113,92,68,-0.1154654181517844],[113,92,69,-0.1217016728332839],[113,92,70,-0.1257664165294972],[113,92,71,-0.1268198295435749],[113,92,72,-0.12750144843446862],[113,92,73,-0.12898484049830705],[113,92,74,-0.13831732048764644],[113,92,75,-0.14268533724481036],[113,92,76,-0.14999929474288654],[113,92,77,-0.15769848985568594],[113,92,78,-0.16492614639997794],[113,92,79,-0.16429307582214076],[113,93,64,-0.10944984391258104],[113,93,65,-0.1120259876613284],[113,93,66,-0.11227890660493965],[113,93,67,-0.11412373443182014],[113,93,68,-0.12081516295838607],[113,93,69,-0.12676010161954335],[113,93,70,-0.1306813764932629],[113,93,71,-0.12817760144936527],[113,93,72,-0.12286085849517349],[113,93,73,-0.12093947018581133],[113,93,74,-0.12574263360014304],[113,93,75,-0.13282247664594612],[113,93,76,-0.14341247270861296],[113,93,77,-0.15626300174674201],[113,93,78,-0.17069377078970005],[113,93,79,-0.17741851324468882],[113,94,64,-0.10871811513240698],[113,94,65,-0.11059188659901723],[113,94,66,-0.11090957424153755],[113,94,67,-0.11585267518572058],[113,94,68,-0.12070817583302743],[113,94,69,-0.12868785976052965],[113,94,70,-0.1292304102468007],[113,94,71,-0.12686386495831253],[113,94,72,-0.1235242548139168],[113,94,73,-0.12152737689449555],[113,94,74,-0.12724220989508733],[113,94,75,-0.1317922877555694],[113,94,76,-0.1423268968193338],[113,94,77,-0.15515189616296568],[113,94,78,-0.17123316591851812],[113,94,79,-0.17800158680581857],[113,95,64,-0.09712078388727337],[113,95,65,-0.09809564919962928],[113,95,66,-0.1025485022971952],[113,95,67,-0.10761859284192565],[113,95,68,-0.11408298586300608],[113,95,69,-0.11907675801377023],[113,95,70,-0.12028493742136076],[113,95,71,-0.11841060667404334],[113,95,72,-0.11760205493227595],[113,95,73,-0.11537910343824745],[113,95,74,-0.11998325044980337],[113,95,75,-0.1254646015538983],[113,95,76,-0.1337895526978276],[113,95,77,-0.14870374235582726],[113,95,78,-0.1647086591581579],[113,95,79,-0.17302285963471314],[113,96,64,-0.09708390062738466],[113,96,65,-0.0992007398059988],[113,96,66,-0.10188584908073835],[113,96,67,-0.10753257455153542],[113,96,68,-0.11523153811155298],[113,96,69,-0.11855650732480327],[113,96,70,-0.11945811262417408],[113,96,71,-0.11963075842846675],[113,96,72,-0.11876834896550668],[113,96,73,-0.11636613252646819],[113,96,74,-0.12224963525091818],[113,96,75,-0.1274985137604394],[113,96,76,-0.13539721988190306],[113,96,77,-0.15119117735012955],[113,96,78,-0.16702383864742215],[113,96,79,-0.17345818251361883],[113,97,64,-0.0911867741726409],[113,97,65,-0.09285177712879138],[113,97,66,-0.09520652664242409],[113,97,67,-0.09670003719185812],[113,97,68,-0.1045243281514941],[113,97,69,-0.1096841294160331],[113,97,70,-0.11518213422684122],[113,97,71,-0.12183376225503809],[113,97,72,-0.12453524727004721],[113,97,73,-0.1282937064632848],[113,97,74,-0.13616934029767574],[113,97,75,-0.14239159639965976],[113,97,76,-0.14596571918117468],[113,97,77,-0.15574343083482584],[113,97,78,-0.16145809130119687],[113,97,79,-0.16326574718927406],[113,98,64,-0.097676385028062],[113,98,65,-0.09920163801492946],[113,98,66,-0.09892743329289226],[113,98,67,-0.10245003889881073],[113,98,68,-0.11062730760174333],[113,98,69,-0.11291659773585673],[113,98,70,-0.12141650937801216],[113,98,71,-0.12980933056512173],[113,98,72,-0.13185358502418404],[113,98,73,-0.1361573367360259],[113,98,74,-0.14549254980105536],[113,98,75,-0.15237960542047707],[113,98,76,-0.15431283351993946],[113,98,77,-0.163058840671038],[113,98,78,-0.1645390747187229],[113,98,79,-0.16770441415931833],[113,99,64,-0.09637483662163039],[113,99,65,-0.09814124255300066],[113,99,66,-0.09980987334205527],[113,99,67,-0.10336335029566188],[113,99,68,-0.10981037807230845],[113,99,69,-0.11492202937366632],[113,99,70,-0.12310836574740282],[113,99,71,-0.12876945438373866],[113,99,72,-0.1325016430888542],[113,99,73,-0.13759295324041868],[113,99,74,-0.14787667894760526],[113,99,75,-0.15442440711005112],[113,99,76,-0.15927109371815923],[113,99,77,-0.16208671835610966],[113,99,78,-0.16486191886476148],[113,99,79,-0.16739530171556663],[113,100,64,-0.04339396154991069],[113,100,65,-0.0453360504340203],[113,100,66,-0.04609902543139974],[113,100,67,-0.04907235375539705],[113,100,68,-0.05501628593524001],[113,100,69,-0.058712334876543204],[113,100,70,-0.06249423848108286],[113,100,71,-0.06930122030692623],[113,100,72,-0.07473681621341641],[113,100,73,-0.08043802469101277],[113,100,74,-0.08961063043457118],[113,100,75,-0.09498071274037628],[113,100,76,-0.10017838659572341],[113,100,77,-0.10151048615420286],[113,100,78,-0.10797431736863161],[113,100,79,-0.10754359691354455],[113,101,64,-0.04271715242933593],[113,101,65,-0.042532386521231993],[113,101,66,-0.04762972192944665],[113,101,67,-0.05218916720183046],[113,101,68,-0.05685914962117971],[113,101,69,-0.05886023716653757],[113,101,70,-0.060322788642349134],[113,101,71,-0.0678424071589927],[113,101,72,-0.07415502730486542],[113,101,73,-0.08130429481379568],[113,101,74,-0.09019862367290372],[113,101,75,-0.09649443616376391],[113,101,76,-0.09941726652649699],[113,101,77,-0.1012583217108722],[113,101,78,-0.10709222519739353],[113,101,79,-0.10741375716773764],[113,102,64,-0.04025960038089193],[113,102,65,-0.04385670804751293],[113,102,66,-0.048475174039316116],[113,102,67,-0.05575226381656993],[113,102,68,-0.05817256198613032],[113,102,69,-0.059232435631417064],[113,102,70,-0.059798329406438595],[113,102,71,-0.06660268512862992],[113,102,72,-0.07449670396493407],[113,102,73,-0.0824578200388706],[113,102,74,-0.09234113087154784],[113,102,75,-0.0975874394691554],[113,102,76,-0.10133018294428708],[113,102,77,-0.10355337085178871],[113,102,78,-0.10812925130378798],[113,102,79,-0.10963313789441129],[113,103,64,-0.03291580812384237],[113,103,65,-0.03756122581704287],[113,103,66,-0.042939928336376096],[113,103,67,-0.04869361667946856],[113,103,68,-0.051631439554157735],[113,103,69,-0.05299626319327226],[113,103,70,-0.05260221303916102],[113,103,71,-0.05936630384502706],[113,103,72,-0.0666123443648399],[113,103,73,-0.07650031644258858],[113,103,74,-0.08629918022425959],[113,103,75,-0.09281514926248405],[113,103,76,-0.09652621239708126],[113,103,77,-0.10229090735965136],[113,103,78,-0.10454494898660562],[113,103,79,-0.10943279019794877],[113,104,64,-0.037241574772003426],[113,104,65,-0.04290128499704519],[113,104,66,-0.04964199523679665],[113,104,67,-0.05119508926765063],[113,104,68,-0.054735940121469345],[113,104,69,-0.05702575311159085],[113,104,70,-0.05699516877069645],[113,104,71,-0.05930945194552764],[113,104,72,-0.06735616945582762],[113,104,73,-0.0775707988444393],[113,104,74,-0.08643950554671828],[113,104,75,-0.09248147159071424],[113,104,76,-0.0976349349953764],[113,104,77,-0.10499571769991486],[113,104,78,-0.10847565520006038],[113,104,79,-0.11150138352972276],[113,105,64,-0.03872952692486499],[113,105,65,-0.04520898066648542],[113,105,66,-0.04756156311956674],[113,105,67,-0.04840174297308954],[113,105,68,-0.0519594187363036],[113,105,69,-0.055459601910094275],[113,105,70,-0.05616378857224645],[113,105,71,-0.05396474846834155],[113,105,72,-0.0591066810121649],[113,105,73,-0.06818263522786018],[113,105,74,-0.07686858080168643],[113,105,75,-0.08477442830643787],[113,105,76,-0.0923460525137159],[113,105,77,-0.1044791360198071],[113,105,78,-0.11304973444452181],[113,105,79,-0.119401136076105],[113,106,64,-0.04706796462136863],[113,106,65,-0.05509920228160192],[113,106,66,-0.055600903926915184],[113,106,67,-0.0579067877731756],[113,106,68,-0.05932033483100247],[113,106,69,-0.06342619922933662],[113,106,70,-0.06438563203722539],[113,106,71,-0.06086394164693633],[113,106,72,-0.06528184817839477],[113,106,73,-0.0749084993196233],[113,106,74,-0.08277749751286334],[113,106,75,-0.08971828511436757],[113,106,76,-0.09966052695825434],[113,106,77,-0.10902371898003255],[113,106,78,-0.11765704207647115],[113,106,79,-0.12386764341493009],[113,107,64,-0.04939628430553405],[113,107,65,-0.058449550893840255],[113,107,66,-0.06186776826363784],[113,107,67,-0.06254690383093076],[113,107,68,-0.060630448146257156],[113,107,69,-0.06618576807050629],[113,107,70,-0.06577588043154861],[113,107,71,-0.06424451409375062],[113,107,72,-0.06780413443861842],[113,107,73,-0.07536848090252354],[113,107,74,-0.08635569120993776],[113,107,75,-0.09020690137724638],[113,107,76,-0.09882825103092821],[113,107,77,-0.1094222278570856],[113,107,78,-0.11774303417847395],[113,107,79,-0.12378439727240417],[113,108,64,-0.053464578650286254],[113,108,65,-0.06104943988460541],[113,108,66,-0.06647770329292976],[113,108,67,-0.06948565118680708],[113,108,68,-0.06639879039528492],[113,108,69,-0.07197333405302268],[113,108,70,-0.07145259725665187],[113,108,71,-0.07177729820379786],[113,108,72,-0.07677562256689172],[113,108,73,-0.08580985813009359],[113,108,74,-0.09336389836803337],[113,108,75,-0.09760789486306115],[113,108,76,-0.10297687473613978],[113,108,77,-0.11437416837988545],[113,108,78,-0.12301547546681453],[113,108,79,-0.12912932751843756],[113,109,64,-0.06447018656413268],[113,109,65,-0.06949092486252391],[113,109,66,-0.07634008030068727],[113,109,67,-0.08293139396438297],[113,109,68,-0.0806086203875469],[113,109,69,-0.08202990567061595],[113,109,70,-0.08162805055697313],[113,109,71,-0.08634319367733827],[113,109,72,-0.09249026290207496],[113,109,73,-0.10064892603596179],[113,109,74,-0.10578945271781653],[113,109,75,-0.11010874715285314],[113,109,76,-0.11093188820208678],[113,109,77,-0.11729241130568319],[113,109,78,-0.11935780523722453],[113,109,79,-0.11998132141553584],[113,110,64,-0.06512751321953637],[113,110,65,-0.0703430657988916],[113,110,66,-0.07734038955516015],[113,110,67,-0.08475143886848734],[113,110,68,-0.08415441253383894],[113,110,69,-0.08286631679379587],[113,110,70,-0.08423512904772851],[113,110,71,-0.08823801368982545],[113,110,72,-0.09759183823595946],[113,110,73,-0.10499924924631979],[113,110,74,-0.10752681952331047],[113,110,75,-0.1121172450328245],[113,110,76,-0.1151562363492599],[113,110,77,-0.11937400047104377],[113,110,78,-0.118723708054672],[113,110,79,-0.12036873542834894],[113,111,64,-0.05851794059460795],[113,111,65,-0.06494126226193338],[113,111,66,-0.0703677838651233],[113,111,67,-0.07805901123356501],[113,111,68,-0.07979920906354493],[113,111,69,-0.07854960623975937],[113,111,70,-0.08287004939274543],[113,111,71,-0.0844460104032877],[113,111,72,-0.09486267147287995],[113,111,73,-0.10146694812143216],[113,111,74,-0.10517249178453764],[113,111,75,-0.11229810883804353],[113,111,76,-0.11745934211076856],[113,111,77,-0.1156184542566388],[113,111,78,-0.11717884899099668],[113,111,79,-0.1210931784557116],[113,112,64,-0.06261541798226522],[113,112,65,-0.06745174321368744],[113,112,66,-0.07333262676092878],[113,112,67,-0.08005108083393818],[113,112,68,-0.08172797508414756],[113,112,69,-0.08202813943364756],[113,112,70,-0.08734922268284012],[113,112,71,-0.08844464363283597],[113,112,72,-0.09801633355807027],[113,112,73,-0.10399141420621953],[113,112,74,-0.1085510799138513],[113,112,75,-0.11446810278416454],[113,112,76,-0.12075853225928926],[113,112,77,-0.11849304769481259],[113,112,78,-0.11692161509393689],[113,112,79,-0.1221931907000071],[113,113,64,-0.06526698648163264],[113,113,65,-0.06927901503845685],[113,113,66,-0.07382856209033896],[113,113,67,-0.08070743285892235],[113,113,68,-0.08378125047363853],[113,113,69,-0.08377828817553694],[113,113,70,-0.08819011804088182],[113,113,71,-0.09300148334209897],[113,113,72,-0.10205983213955075],[113,113,73,-0.10611045436923236],[113,113,74,-0.10871002413618223],[113,113,75,-0.11583574131341129],[113,113,76,-0.12251080875782724],[113,113,77,-0.12267649765458757],[113,113,78,-0.11806487164307536],[113,113,79,-0.12146615691440907],[113,114,64,-0.06956795971477053],[113,114,65,-0.07543422680252808],[113,114,66,-0.08053096743825643],[113,114,67,-0.08807841688048343],[113,114,68,-0.09062077345844502],[113,114,69,-0.09002543430159636],[113,114,70,-0.09598910969118855],[113,114,71,-0.10186499640043588],[113,114,72,-0.10681212876878698],[113,114,73,-0.1099184264176722],[113,114,74,-0.11293236066135251],[113,114,75,-0.12050832860212884],[113,114,76,-0.12735609272260218],[113,114,77,-0.12762271466403224],[113,114,78,-0.12390005632001092],[113,114,79,-0.12518781723505862],[113,115,64,-0.06789430602817884],[113,115,65,-0.07230594492831861],[113,115,66,-0.08112456663864477],[113,115,67,-0.08778246906462729],[113,115,68,-0.08994527778869282],[113,115,69,-0.09321964297158283],[113,115,70,-0.09669607263296763],[113,115,71,-0.10341035485285373],[113,115,72,-0.10703617699302417],[113,115,73,-0.11026630204741317],[113,115,74,-0.11422965995828574],[113,115,75,-0.12229766971642433],[113,115,76,-0.12425383261965547],[113,115,77,-0.1258705584899338],[113,115,78,-0.12424648168924704],[113,115,79,-0.12441785335809408],[113,116,64,-0.05817421648425814],[113,116,65,-0.0625974508457586],[113,116,66,-0.07014442819799445],[113,116,67,-0.07833341485546176],[113,116,68,-0.08057482966644385],[113,116,69,-0.0843274646083374],[113,116,70,-0.08828387696043552],[113,116,71,-0.09640335034666725],[113,116,72,-0.10035732252882806],[113,116,73,-0.10404996490420074],[113,116,74,-0.10881654896654988],[113,116,75,-0.11585517155719186],[113,116,76,-0.11384662650032426],[113,116,77,-0.11644130987069706],[113,116,78,-0.11749607735741915],[113,116,79,-0.11678425524229621],[113,117,64,-0.06134639981703448],[113,117,65,-0.06682456055430772],[113,117,66,-0.0728827073497156],[113,117,67,-0.07747392680690991],[113,117,68,-0.08098116309069679],[113,117,69,-0.08272898481346365],[113,117,70,-0.0869796409137508],[113,117,71,-0.09509072549595872],[113,117,72,-0.09984014438232174],[113,117,73,-0.10296142170945465],[113,117,74,-0.10822491814906945],[113,117,75,-0.11379661017332979],[113,117,76,-0.10976261890916642],[113,117,77,-0.11056460837595819],[113,117,78,-0.11409824675279863],[113,117,79,-0.11220001677662206],[113,118,64,-0.062022686616130585],[113,118,65,-0.0714798899144012],[113,118,66,-0.07265534089980126],[113,118,67,-0.07765718130930883],[113,118,68,-0.08297613105800507],[113,118,69,-0.08319400676124195],[113,118,70,-0.0868456812768408],[113,118,71,-0.09691872766800921],[113,118,72,-0.10159784605370165],[113,118,73,-0.10596869002472994],[113,118,74,-0.11131992779235106],[113,118,75,-0.113329108373738],[113,118,76,-0.11175539445019801],[113,118,77,-0.11176951034822474],[113,118,78,-0.11539326279898929],[113,118,79,-0.11629903156709037],[113,119,64,-0.053611998305486006],[113,119,65,-0.06419860673421197],[113,119,66,-0.06606956313660575],[113,119,67,-0.06926330842927411],[113,119,68,-0.07682908109826952],[113,119,69,-0.07947428474257141],[113,119,70,-0.08423939912114496],[113,119,71,-0.09592135724727166],[113,119,72,-0.09983415216895786],[113,119,73,-0.10460936689502631],[113,119,74,-0.10971984919831673],[113,119,75,-0.11185541268315305],[113,119,76,-0.10963716340682932],[113,119,77,-0.11112154620188555],[113,119,78,-0.11697967787727502],[113,119,79,-0.11844132593386167],[113,120,64,-0.05416379643188346],[113,120,65,-0.06382356981651703],[113,120,66,-0.06748613322841301],[113,120,67,-0.07061684816587202],[113,120,68,-0.07763451175004223],[113,120,69,-0.08107440324808236],[113,120,70,-0.08680887513304619],[113,120,71,-0.09621367171445565],[113,120,72,-0.10055862021687828],[113,120,73,-0.10749720000687087],[113,120,74,-0.11197565279416787],[113,120,75,-0.11452857493369696],[113,120,76,-0.11037097224927728],[113,120,77,-0.11124881177557272],[113,120,78,-0.11843965788421587],[113,120,79,-0.12213408201772705],[113,121,64,-0.046279890334550586],[113,121,65,-0.05749052548332684],[113,121,66,-0.0651795451289269],[113,121,67,-0.07155364966866987],[113,121,68,-0.07506172180363978],[113,121,69,-0.08178982883574025],[113,121,70,-0.09126270517403158],[113,121,71,-0.09742135888988084],[113,121,72,-0.1037894188260915],[113,121,73,-0.11118576525078219],[113,121,74,-0.11506614614906625],[113,121,75,-0.11463661033837771],[113,121,76,-0.11500915898882619],[113,121,77,-0.11809569631106044],[113,121,78,-0.12680210450115514],[113,121,79,-0.132712752332781],[113,122,64,-0.051245426872727484],[113,122,65,-0.06159115666133784],[113,122,66,-0.07355059266612023],[113,122,67,-0.07894106807355143],[113,122,68,-0.08254550393312593],[113,122,69,-0.08853873291063145],[113,122,70,-0.0978091404153449],[113,122,71,-0.1010625659929385],[113,122,72,-0.11042538787790564],[113,122,73,-0.1195191372992358],[113,122,74,-0.11973489397971242],[113,122,75,-0.11878869313353616],[113,122,76,-0.12108595702015423],[113,122,77,-0.12617233143785161],[113,122,78,-0.13367904598243546],[113,122,79,-0.13773859831939594],[113,123,64,-0.04736621123743473],[113,123,65,-0.0611665653415851],[113,123,66,-0.07610938843759649],[113,123,67,-0.08218462101871436],[113,123,68,-0.08654034456429605],[113,123,69,-0.09196487434344938],[113,123,70,-0.10045466615029577],[113,123,71,-0.10452496424121577],[113,123,72,-0.11345431615376889],[113,123,73,-0.119718722872562],[113,123,74,-0.1215094764096854],[113,123,75,-0.1185019157923474],[113,123,76,-0.12136090370554499],[113,123,77,-0.12957706443738023],[113,123,78,-0.137206929011439],[113,123,79,-0.1360531978501458],[113,124,64,-0.044473914262337086],[113,124,65,-0.059891104623549046],[113,124,66,-0.07925815743285856],[113,124,67,-0.08692467661611016],[113,124,68,-0.09379188063822888],[113,124,69,-0.09987597588745518],[113,124,70,-0.10844911962170467],[113,124,71,-0.11201620469837802],[113,124,72,-0.11884444259749313],[113,124,73,-0.12356598139269515],[113,124,74,-0.12625728919435808],[113,124,75,-0.12416824061383173],[113,124,76,-0.12809989916156228],[113,124,77,-0.13609339754204502],[113,124,78,-0.14351365514446207],[113,124,79,-0.14190881154305673],[113,125,64,-0.044136829040706274],[113,125,65,-0.06179909439116045],[113,125,66,-0.08130437590850345],[113,125,67,-0.08896157765603593],[113,125,68,-0.09659468604399288],[113,125,69,-0.10314525302749568],[113,125,70,-0.11242875367317275],[113,125,71,-0.11575120375876916],[113,125,72,-0.12148581864404975],[113,125,73,-0.124904292017857],[113,125,74,-0.12715569791245213],[113,125,75,-0.12462476033811268],[113,125,76,-0.12895716590442022],[113,125,77,-0.13679941577231094],[113,125,78,-0.1450846492753703],[113,125,79,-0.154666237580121],[113,126,64,-0.045991262646964716],[113,126,65,-0.062357639793895026],[113,126,66,-0.07905566641921688],[113,126,67,-0.08949549151144885],[113,126,68,-0.09878705792657673],[113,126,69,-0.10584825165429829],[113,126,70,-0.11399543430099099],[113,126,71,-0.11838311484704306],[113,126,72,-0.12331719440694425],[113,126,73,-0.1275324470751361],[113,126,74,-0.1258441528072842],[113,126,75,-0.12690438115257419],[113,126,76,-0.13276930191666672],[113,126,77,-0.13968315315459862],[113,126,78,-0.15977217902052387],[113,126,79,-0.19923881638300203],[113,127,64,-0.04119902903638369],[113,127,65,-0.05471142539792438],[113,127,66,-0.0704054980142913],[113,127,67,-0.08361243017437758],[113,127,68,-0.09620390014160382],[113,127,69,-0.10400488090014672],[113,127,70,-0.11028293451466398],[113,127,71,-0.11673423101593686],[113,127,72,-0.12484378965079089],[113,127,73,-0.128129390005853],[113,127,74,-0.12431325435951096],[113,127,75,-0.12836364151957452],[113,127,76,-0.13512923595117632],[113,127,77,-0.14007844921132329],[113,127,78,-0.1512722570336083],[113,127,79,-0.18425869216752577],[113,128,64,-0.04273342561843108],[113,128,65,-0.054499377346144275],[113,128,66,-0.06752658376137419],[113,128,67,-0.08430684764405699],[113,128,68,-0.0990131935891504],[113,128,69,-0.10372140980623329],[113,128,70,-0.11117144378821928],[113,128,71,-0.11871637827771317],[113,128,72,-0.12658381538279126],[113,128,73,-0.12814725406212674],[113,128,74,-0.1278761230613426],[113,128,75,-0.1315238263132686],[113,128,76,-0.1377160053160412],[113,128,77,-0.13881219139091383],[113,128,78,-0.16635748478803655],[113,128,79,-0.1986756219429067],[113,129,64,-0.04052485132067074],[113,129,65,-0.05765091267016887],[113,129,66,-0.0707165165837503],[113,129,67,-0.0918269608553683],[113,129,68,-0.10737417563266233],[113,129,69,-0.11473635858595299],[113,129,70,-0.11892745018252238],[113,129,71,-0.12263518993422505],[113,129,72,-0.12369986956255478],[113,129,73,-0.12246730491963481],[113,129,74,-0.12194551806723757],[113,129,75,-0.12552874086624816],[113,129,76,-0.1286729577200168],[113,129,77,-0.12838044103211937],[113,129,78,-0.13800533407743767],[113,129,79,-0.16194036650335827],[113,130,64,-0.04723499056458565],[113,130,65,-0.06452720824331688],[113,130,66,-0.07866122751413811],[113,130,67,-0.09707036849861542],[113,130,68,-0.112181848764935],[113,130,69,-0.12167412398360843],[113,130,70,-0.12451290086356424],[113,130,71,-0.12846341548137008],[113,130,72,-0.12916951688879508],[113,130,73,-0.15824466889509667],[113,130,74,-0.17586265666595985],[113,130,75,-0.20786333668634205],[113,130,76,-0.24859538288065308],[113,130,77,-0.2786604590897665],[113,130,78,-0.2824970584778791],[113,130,79,-0.2883568083155505],[113,131,64,-0.04833126787914246],[113,131,65,-0.06520063557542836],[113,131,66,-0.08172886910856089],[113,131,67,-0.09840870331252267],[113,131,68,-0.11116189426177944],[113,131,69,-0.12022147617778661],[113,131,70,-0.1253768498983345],[113,131,71,-0.13081362406354657],[113,131,72,-0.135850522438172],[113,131,73,-0.1854525633806297],[113,131,74,-0.21047787377623078],[113,131,75,-0.24090180090648972],[113,131,76,-0.27214650785003547],[113,131,77,-0.2740506492180498],[113,131,78,-0.2779260449987466],[113,131,79,-0.283128351806837],[113,132,64,-0.03681221357369738],[113,132,65,-0.054929057446976126],[113,132,66,-0.07547189600037975],[113,132,67,-0.09458683436840969],[113,132,68,-0.10865584727073963],[113,132,69,-0.11979196723600626],[113,132,70,-0.12874404196235167],[113,132,71,-0.13592596691189002],[113,132,72,-0.14911079164216617],[113,132,73,-0.18500625193912348],[113,132,74,-0.2212181462047763],[113,132,75,-0.23929067110890334],[113,132,76,-0.2673867917632132],[113,132,77,-0.2679503331005937],[113,132,78,-0.27156594885367197],[113,132,79,-0.27808282310416765],[113,133,64,-0.042343871047182825],[113,133,65,-0.05802884081021767],[113,133,66,-0.0734899805359008],[113,133,67,-0.0852533969824736],[113,133,68,-0.09809553809218424],[113,133,69,-0.11058390471772145],[113,133,70,-0.12320699923719695],[113,133,71,-0.13363961402016633],[113,133,72,-0.1526922396895557],[113,133,73,-0.18003974189144767],[113,133,74,-0.20481506018652273],[113,133,75,-0.21168200707828638],[113,133,76,-0.2555402601021377],[113,133,77,-0.26049788856158906],[113,133,78,-0.26189686261619743],[113,133,79,-0.2705401829570749],[113,134,64,-0.042434122983339276],[113,134,65,-0.05955201248558467],[113,134,66,-0.07635848053762662],[113,134,67,-0.08354904838057198],[113,134,68,-0.09804754456083581],[113,134,69,-0.11063398526256484],[113,134,70,-0.12259652800453227],[113,134,71,-0.13357667663196668],[113,134,72,-0.15966682891859274],[113,134,73,-0.1828531178023903],[113,134,74,-0.20607600382022673],[113,134,75,-0.20645328374322802],[113,134,76,-0.24933223655623574],[113,134,77,-0.24674551399842767],[113,134,78,-0.24951415318063486],[113,134,79,-0.25894214090137785],[113,135,64,-0.037547549239345376],[113,135,65,-0.05358753208037016],[113,135,66,-0.07002188412496702],[113,135,67,-0.08104812597898733],[113,135,68,-0.09339106814949365],[113,135,69,-0.10803917844154663],[113,135,70,-0.11814863595320245],[113,135,71,-0.1255186947309439],[113,135,72,-0.14524600571373963],[113,135,73,-0.16858404381852962],[113,135,74,-0.18119243740736432],[113,135,75,-0.18654354052887426],[113,135,76,-0.22718833345055045],[113,135,77,-0.23806757341526757],[113,135,78,-0.24175578800705502],[113,135,79,-0.25213422919961126],[113,136,64,-0.03960858539769644],[113,136,65,-0.05450569964573794],[113,136,66,-0.07121724425644062],[113,136,67,-0.08101626703080668],[113,136,68,-0.09146949139673352],[113,136,69,-0.10687411155474669],[113,136,70,-0.11774398224040189],[113,136,71,-0.12497030447447395],[113,136,72,-0.15167127093371877],[113,136,73,-0.1709476946155848],[113,136,74,-0.18413579488121778],[113,136,75,-0.19489869899328824],[113,136,76,-0.23654426225025343],[113,136,77,-0.24856787931156857],[113,136,78,-0.2512357790364813],[113,136,79,-0.2614007495292544],[113,137,64,-0.04076394513617136],[113,137,65,-0.05615840063859452],[113,137,66,-0.07162278524132179],[113,137,67,-0.08215370179851132],[113,137,68,-0.09080734885895514],[113,137,69,-0.106065709379389],[113,137,70,-0.11696616775473952],[113,137,71,-0.12371068231521705],[113,137,72,-0.15503446380690944],[113,137,73,-0.16457858116849605],[113,137,74,-0.17084713815543023],[113,137,75,-0.18143584340199534],[113,137,76,-0.21369644082272216],[113,137,77,-0.23804841542489763],[113,137,78,-0.24020762539262983],[113,137,79,-0.24922808758583365],[113,138,64,-0.04689796468312726],[113,138,65,-0.06395155381404843],[113,138,66,-0.08014506821771752],[113,138,67,-0.0893876868217221],[113,138,68,-0.0981538134496224],[113,138,69,-0.11068512940946258],[113,138,70,-0.1190401073607536],[113,138,71,-0.12831446477328542],[113,138,72,-0.14181653006009698],[113,138,73,-0.15554876638573928],[113,138,74,-0.16355781599413138],[113,138,75,-0.17812483803390566],[113,138,76,-0.20742018818777416],[113,138,77,-0.24425586159035856],[113,138,78,-0.24882415895142238],[113,138,79,-0.2568926868369742],[113,139,64,-0.04734879761965319],[113,139,65,-0.06485660435857454],[113,139,66,-0.08204448222413166],[113,139,67,-0.09050862176647659],[113,139,68,-0.10030516433948965],[113,139,69,-0.11042072794822312],[113,139,70,-0.11715571038798814],[113,139,71,-0.12855456238564741],[113,139,72,-0.14796857596488103],[113,139,73,-0.16507061225529499],[113,139,74,-0.18224714443374113],[113,139,75,-0.1998099212338295],[113,139,76,-0.2243523518175119],[113,139,77,-0.24141264102976792],[113,139,78,-0.24900086834145943],[113,139,79,-0.25767527923094274],[113,140,64,-0.0590239108273672],[113,140,65,-0.07384557791055217],[113,140,66,-0.0860362531070759],[113,140,67,-0.09209892355244048],[113,140,68,-0.09706136329371948],[113,140,69,-0.10371494023932433],[113,140,70,-0.11026010476268529],[113,140,71,-0.11912919248521744],[113,140,72,-0.1364022743126416],[113,140,73,-0.1558666137796237],[113,140,74,-0.18002428798914202],[113,140,75,-0.20760372542281014],[113,140,76,-0.2303743670686528],[113,140,77,-0.24251285262072586],[113,140,78,-0.2476493470291205],[113,140,79,-0.25890207779668617],[113,141,64,-0.06737886233261577],[113,141,65,-0.07762635479678773],[113,141,66,-0.08717379334259308],[113,141,67,-0.09091011410110945],[113,141,68,-0.09710093015338257],[113,141,69,-0.10548385432128521],[113,141,70,-0.11232965790639202],[113,141,71,-0.12144972904877113],[113,141,72,-0.1382684458398751],[113,141,73,-0.1598635042104074],[113,141,74,-0.18848715941531002],[113,141,75,-0.21328130853061966],[113,141,76,-0.22937631614386994],[113,141,77,-0.23484381346292976],[113,141,78,-0.2392975934616981],[113,141,79,-0.2507152891194492],[113,142,64,-0.06996747215104582],[113,142,65,-0.07996693463915219],[113,142,66,-0.08644096093044906],[113,142,67,-0.0897572116398086],[113,142,68,-0.09599333978837789],[113,142,69,-0.10271414300892345],[113,142,70,-0.11158455253091148],[113,142,71,-0.12251382759435833],[113,142,72,-0.13799333082334844],[113,142,73,-0.15869693871358528],[113,142,74,-0.18776058653369188],[113,142,75,-0.21311290779632203],[113,142,76,-0.22819726764327258],[113,142,77,-0.23659877774164584],[113,142,78,-0.23956429355391323],[113,142,79,-0.24947619357411396],[113,143,64,-0.06323732913125008],[113,143,65,-0.07483795712159708],[113,143,66,-0.08200460010345328],[113,143,67,-0.08488497267430128],[113,143,68,-0.08990342664032011],[113,143,69,-0.099132649574796],[113,143,70,-0.1084017342915303],[113,143,71,-0.11965957658789592],[113,143,72,-0.13297461806630512],[113,143,73,-0.1457448776371057],[113,143,74,-0.1735786035717677],[113,143,75,-0.19730498245823022],[113,143,76,-0.22469787229549332],[113,143,77,-0.23072933057504835],[113,143,78,-0.2349952627451689],[113,143,79,-0.24106207565880838],[113,144,64,-0.06546510419034973],[113,144,65,-0.0760188251257034],[113,144,66,-0.08246282798251067],[113,144,67,-0.08688960862530139],[113,144,68,-0.09141348529489991],[113,144,69,-0.09815597460739926],[113,144,70,-0.10654362387789809],[113,144,71,-0.11820704332193534],[113,144,72,-0.1318919734128272],[113,144,73,-0.14154988544453834],[113,144,74,-0.17488010120026642],[113,144,75,-0.2066587523065044],[113,144,76,-0.23239114958102006],[113,144,77,-0.23820390737513214],[113,144,78,-0.2424043993266536],[113,144,79,-0.24749514608989703],[113,145,64,-0.05539591994639603],[113,145,65,-0.06940550045433069],[113,145,66,-0.08061694585455267],[113,145,67,-0.08554473881594878],[113,145,68,-0.0943301607330262],[113,145,69,-0.09818609732663985],[113,145,70,-0.10466245671771386],[113,145,71,-0.11443184911532023],[113,145,72,-0.1243982827664761],[113,145,73,-0.12821459354970446],[113,145,74,-0.13090344416895439],[113,145,75,-0.14487281206098193],[113,145,76,-0.16834412548762928],[113,145,77,-0.20147179929177006],[113,145,78,-0.21317753496315006],[113,145,79,-0.21074542954706788],[113,146,64,-0.0606610348702598],[113,146,65,-0.07347514807631045],[113,146,66,-0.08538405353281507],[113,146,67,-0.09129113291866388],[113,146,68,-0.100874435540284],[113,146,69,-0.10524826934192394],[113,146,70,-0.1097481009224398],[113,146,71,-0.11730699914028418],[113,146,72,-0.12806708102972786],[113,146,73,-0.13124431753166038],[113,146,74,-0.13466381396852597],[113,146,75,-0.13915452169011838],[113,146,76,-0.16269904484415776],[113,146,77,-0.1893907237234286],[113,146,78,-0.20644640575965262],[113,146,79,-0.20596865562231254],[113,147,64,-0.06220460195239949],[113,147,65,-0.07464688033630285],[113,147,66,-0.08662129867668111],[113,147,67,-0.09351851314395773],[113,147,68,-0.10205003807035334],[113,147,69,-0.10677814708351092],[113,147,70,-0.11137968774688571],[113,147,71,-0.1175286064594518],[113,147,72,-0.12633908832401164],[113,147,73,-0.13268427949765707],[113,147,74,-0.13538535820130487],[113,147,75,-0.13953369975477145],[113,147,76,-0.11297948148237191],[113,147,77,-0.09106679291738637],[113,147,78,-0.08327082864249416],[113,147,79,-0.09093130367514625],[113,148,64,-0.04059805760802433],[113,148,65,-0.05145598512938328],[113,148,66,-0.05708430321496244],[113,148,67,-0.060205469774430045],[113,148,68,-0.06732350407550602],[113,148,69,-0.06855908665372887],[113,148,70,-0.07184159012430422],[113,148,71,-0.07473746223636782],[113,148,72,-0.08263598826643434],[113,148,73,-0.08789279827429786],[113,148,74,-0.09076646948994382],[113,148,75,-0.09395420733735832],[113,148,76,-0.07472189936437935],[113,148,77,-0.06378133836545924],[113,148,78,-0.06232286801102867],[113,148,79,-0.0648020928896519],[113,149,64,-0.04530463280746155],[113,149,65,-0.05614718043297662],[113,149,66,-0.06268237234623203],[113,149,67,-0.06252221998505705],[113,149,68,-0.0693294963846276],[113,149,69,-0.06868729189055543],[113,149,70,-0.07130252770448692],[113,149,71,-0.07550894526643565],[113,149,72,-0.08198864159307144],[113,149,73,-0.0866627716370687],[113,149,74,-0.09305821239293696],[113,149,75,-0.09299229045700956],[113,149,76,-0.08105783072724089],[113,149,77,-0.07590785617604823],[113,149,78,-0.0795276658614826],[113,149,79,-0.08165758789246993],[113,150,64,-0.04941659381286703],[113,150,65,-0.05954144117749659],[113,150,66,-0.06717502028248057],[113,150,67,-0.06661553823441611],[113,150,68,-0.06899646150013669],[113,150,69,-0.07178896756334566],[113,150,70,-0.07187968892416363],[113,150,71,-0.07617715996293818],[113,150,72,-0.08314554880453316],[113,150,73,-0.08829204862489604],[113,150,74,-0.0934993025573019],[113,150,75,-0.09247500397565517],[113,150,76,-0.08275680437783335],[113,150,77,-0.07650495360046845],[113,150,78,-0.0780659277836111],[113,150,79,-0.08199512471808279],[113,151,64,-0.047645847025990784],[113,151,65,-0.058372600908378966],[113,151,66,-0.06507686695674081],[113,151,67,-0.06268895092663634],[113,151,68,-0.06705343203267797],[113,151,69,-0.06935596343920188],[113,151,70,-0.06790023541989264],[113,151,71,-0.07322184883477471],[113,151,72,-0.07978572094605588],[113,151,73,-0.08761212257132311],[113,151,74,-0.09297226022895277],[113,151,75,-0.09325731861083902],[113,151,76,-0.09518552626006041],[113,151,77,-0.08682350036458528],[113,151,78,-0.08260921162360403],[113,151,79,-0.08610024197110056],[113,152,64,-0.05251160549927718],[113,152,65,-0.0620644419441603],[113,152,66,-0.06922665951984801],[113,152,67,-0.06718164637991428],[113,152,68,-0.06899331173878452],[113,152,69,-0.07117980373855709],[113,152,70,-0.07155581919376477],[113,152,71,-0.07371402869361438],[113,152,72,-0.07810826148745195],[113,152,73,-0.08815076605295252],[113,152,74,-0.09199733354013659],[113,152,75,-0.09272782163673182],[113,152,76,-0.09559982429237193],[113,152,77,-0.08902435889720045],[113,152,78,-0.08034134393870218],[113,152,79,-0.0867936379307763],[113,153,64,-0.06148896518186639],[113,153,65,-0.0662047047754362],[113,153,66,-0.06785841513632662],[113,153,67,-0.06210805042138648],[113,153,68,-0.06091975564466344],[113,153,69,-0.06542831572164731],[113,153,70,-0.06663001518842551],[113,153,71,-0.06977505943619239],[113,153,72,-0.07705628920163018],[113,153,73,-0.08950874985458553],[113,153,74,-0.09333360214543132],[113,153,75,-0.09444917471126099],[113,153,76,-0.09676672713724964],[113,153,77,-0.08839409879203085],[113,153,78,-0.07723917969229313],[113,153,79,-0.08209673647357416],[113,154,64,-0.06882265544447963],[113,154,65,-0.07382992321565215],[113,154,66,-0.0736163142734218],[113,154,67,-0.06850527223580137],[113,154,68,-0.0661710362615065],[113,154,69,-0.06841223715566372],[113,154,70,-0.0735885269760748],[113,154,71,-0.07360680245648259],[113,154,72,-0.08270553937764266],[113,154,73,-0.09505454661643761],[113,154,74,-0.10010132436267119],[113,154,75,-0.10332022460104347],[113,154,76,-0.10922555508244876],[113,154,77,-0.09879452189219422],[113,154,78,-0.08342299203585324],[113,154,79,-0.0863874560545854],[113,155,64,-0.07052775036364822],[113,155,65,-0.07743489444612758],[113,155,66,-0.07495800726655241],[113,155,67,-0.06963782021230526],[113,155,68,-0.0684598120379756],[113,155,69,-0.0700712891645687],[113,155,70,-0.07297658358724209],[113,155,71,-0.07379359410416649],[113,155,72,-0.08272233077131287],[113,155,73,-0.09593762761448539],[113,155,74,-0.10048179031436341],[113,155,75,-0.10506006266261379],[113,155,76,-0.11039940305980603],[113,155,77,-0.09911380800262623],[113,155,78,-0.08976256973632668],[113,155,79,-0.08987076972058099],[113,156,64,-0.07287340046566078],[113,156,65,-0.07785703287118045],[113,156,66,-0.07820439822478728],[113,156,67,-0.07457585217738336],[113,156,68,-0.07429997930563992],[113,156,69,-0.0760173655782283],[113,156,70,-0.07945556779143094],[113,156,71,-0.08025563545393247],[113,156,72,-0.08689624265818054],[113,156,73,-0.09799691680292485],[113,156,74,-0.1034583581159561],[113,156,75,-0.109275147190122],[113,156,76,-0.11421153298222973],[113,156,77,-0.09943552809159487],[113,156,78,-0.08679100885619487],[113,156,79,-0.0852363068974358],[113,157,64,-0.06828386866040415],[113,157,65,-0.07518697593378318],[113,157,66,-0.08443734534882903],[113,157,67,-0.08734569052205494],[113,157,68,-0.08740576869519502],[113,157,69,-0.09054523108222995],[113,157,70,-0.08930518167173465],[113,157,71,-0.09053434849112996],[113,157,72,-0.09132866762709721],[113,157,73,-0.09754834385300214],[113,157,74,-0.1038224650437915],[113,157,75,-0.11182927296617587],[113,157,76,-0.1124239513322206],[113,157,77,-0.09522429877184374],[113,157,78,-0.08662051316095778],[113,157,79,-0.08184866286369377],[113,158,64,-0.06659372188283957],[113,158,65,-0.07437148390722853],[113,158,66,-0.08564751760548983],[113,158,67,-0.08968561623408675],[113,158,68,-0.09112372030121285],[113,158,69,-0.09023216745051418],[113,158,70,-0.0894953477450165],[113,158,71,-0.09402882045451891],[113,158,72,-0.09478020802699222],[113,158,73,-0.09923844751420996],[113,158,74,-0.10739837559825907],[113,158,75,-0.11587759114949248],[113,158,76,-0.11329503783158161],[113,158,77,-0.09087148321003008],[113,158,78,-0.0756477171535534],[113,158,79,-0.07195571082373375],[113,159,64,-0.14180610402498017],[113,159,65,-0.1428955952449226],[113,159,66,-0.14874682283513982],[113,159,67,-0.14775285391304172],[113,159,68,-0.14252844381069546],[113,159,69,-0.1323511227877692],[113,159,70,-0.12269103622774014],[113,159,71,-0.12167191726765272],[113,159,72,-0.11235151678818374],[113,159,73,-0.10852802421849755],[113,159,74,-0.10980398019928246],[113,159,75,-0.10827788683752233],[113,159,76,-0.10028479036943416],[113,159,77,-0.08635486403552095],[113,159,78,-0.06767960778319787],[113,159,79,-0.06382491115529276],[113,160,64,-0.14255900074312677],[113,160,65,-0.14666903130997472],[113,160,66,-0.14888618990323582],[113,160,67,-0.14580488437779487],[113,160,68,-0.14271894764867002],[113,160,69,-0.13193334673131174],[113,160,70,-0.1238858270285077],[113,160,71,-0.12068186597382277],[113,160,72,-0.11459784670949692],[113,160,73,-0.11025928815991552],[113,160,74,-0.11264789730816657],[113,160,75,-0.10789112351293162],[113,160,76,-0.10125131550093236],[113,160,77,-0.08448411891170465],[113,160,78,-0.06567241810214973],[113,160,79,-0.0597772617736214],[113,161,64,-0.14292703117143135],[113,161,65,-0.14767434817548683],[113,161,66,-0.14753534915895483],[113,161,67,-0.14237743583712048],[113,161,68,-0.1392901097195161],[113,161,69,-0.13183667726636608],[113,161,70,-0.12553570729786073],[113,161,71,-0.12154752270735955],[113,161,72,-0.11553367045067806],[113,161,73,-0.11217229026264311],[113,161,74,-0.11476760659135765],[113,161,75,-0.1088287747799957],[113,161,76,-0.10243853983819133],[113,161,77,-0.08188577893306757],[113,161,78,-0.05981294225496921],[113,161,79,-0.05265261584362131],[113,162,64,-0.14632949468926054],[113,162,65,-0.15306600554189798],[113,162,66,-0.15084672473253846],[113,162,67,-0.1436233294655525],[113,162,68,-0.1407169603739138],[113,162,69,-0.13618314639051193],[113,162,70,-0.13167312549024232],[113,162,71,-0.12702257362011202],[113,162,72,-0.12250812266624829],[113,162,73,-0.1180538178111884],[113,162,74,-0.11797022762097484],[113,162,75,-0.11577850300393361],[113,162,76,-0.10710520380116732],[113,162,77,-0.09572617550389241],[113,162,78,-0.07145661889360616],[113,162,79,-0.06290682697941426],[113,163,64,-0.1467961870406345],[113,163,65,-0.149622186837085],[113,163,66,-0.14966669165357557],[113,163,67,-0.14262233609789957],[113,163,68,-0.13880626909545568],[113,163,69,-0.1349458288207553],[113,163,70,-0.1304239220608729],[113,163,71,-0.1289269118412974],[113,163,72,-0.1243192424486373],[113,163,73,-0.11929002377781729],[113,163,74,-0.11585775144017005],[113,163,75,-0.11664825575274246],[113,163,76,-0.10874413728629154],[113,163,77,-0.09662320997399092],[113,163,78,-0.08315523424168689],[113,163,79,-0.07431169895093895],[113,164,64,-0.12276908022044937],[113,164,65,-0.1281594044548119],[113,164,66,-0.13305186649982736],[113,164,67,-0.13052520343367874],[113,164,68,-0.12965878400227435],[113,164,69,-0.12648908136705256],[113,164,70,-0.12640806235656057],[113,164,71,-0.123368564821699],[113,164,72,-0.12382836892352984],[113,164,73,-0.11766694144739548],[113,164,74,-0.11201166844670835],[113,164,75,-0.11298799577004817],[113,164,76,-0.10592980251594766],[113,164,77,-0.09173865650966401],[113,164,78,-0.08025770903864747],[113,164,79,-0.07563452022778452],[113,165,64,-0.11333755399875911],[113,165,65,-0.11958778478807539],[113,165,66,-0.12195764762374188],[113,165,67,-0.12209276805217792],[113,165,68,-0.1223761891997615],[113,165,69,-0.12004285121784966],[113,165,70,-0.11821802914349117],[113,165,71,-0.11843903617713822],[113,165,72,-0.12075906619098656],[113,165,73,-0.11926880666499018],[113,165,74,-0.11503745639965118],[113,165,75,-0.11369075155964481],[113,165,76,-0.1023652747316737],[113,165,77,-0.08550532465921991],[113,165,78,-0.07623792943968198],[113,165,79,-0.07676611860206733],[113,166,64,-0.1113799769934031],[113,166,65,-0.11753975028614654],[113,166,66,-0.12201691178064544],[113,166,67,-0.12442062662956584],[113,166,68,-0.12209064084022064],[113,166,69,-0.1205863787986677],[113,166,70,-0.11807365312670495],[113,166,71,-0.12019212659491924],[113,166,72,-0.11831552511805471],[113,166,73,-0.12001229262401444],[113,166,74,-0.11862642770872639],[113,166,75,-0.11530764605217789],[113,166,76,-0.10291578677313154],[113,166,77,-0.08717225003652096],[113,166,78,-0.07752182189928869],[113,166,79,-0.07883483926143248],[113,167,64,-0.1018206064502617],[113,167,65,-0.11126960273810946],[113,167,66,-0.11613021421712187],[113,167,67,-0.12217651429087611],[113,167,68,-0.11836591633235327],[113,167,69,-0.1169928910377192],[113,167,70,-0.11574456451341225],[113,167,71,-0.11790158796853209],[113,167,72,-0.11802059325866662],[113,167,73,-0.12165819535714842],[113,167,74,-0.12061997933198884],[113,167,75,-0.11798926906118187],[113,167,76,-0.1055271804394419],[113,167,77,-0.09117504205586563],[113,167,78,-0.07842463681114449],[113,167,79,-0.07574076552299576],[113,168,64,-0.10227892713783453],[113,168,65,-0.11049768639056845],[113,168,66,-0.11535604792175033],[113,168,67,-0.12216193169914494],[113,168,68,-0.12078471956579198],[113,168,69,-0.11881221872128722],[113,168,70,-0.11711952196952558],[113,168,71,-0.11962302346952706],[113,168,72,-0.11896428155963312],[113,168,73,-0.12188963744827147],[113,168,74,-0.12045869754796225],[113,168,75,-0.1171037629096156],[113,168,76,-0.10616193535260662],[113,168,77,-0.09095141132669537],[113,168,78,-0.07558685381722437],[113,168,79,-0.07387399091471984],[113,169,64,-0.11148977108523113],[113,169,65,-0.11752346534460653],[113,169,66,-0.1228453546846143],[113,169,67,-0.1313705334634363],[113,169,68,-0.12859076199552047],[113,169,69,-0.12752468185618426],[113,169,70,-0.12641439777259333],[113,169,71,-0.12694078647460258],[113,169,72,-0.12248364354885756],[113,169,73,-0.12296292847145848],[113,169,74,-0.12104075121890587],[113,169,75,-0.11584510618625332],[113,169,76,-0.10674819062206738],[113,169,77,-0.09138236650403514],[113,169,78,-0.07496400633606616],[113,169,79,-0.07350823755943543],[113,170,64,-0.11685352809647512],[113,170,65,-0.1218957092719834],[113,170,66,-0.13010304097418224],[113,170,67,-0.1374853347864155],[113,170,68,-0.13192852396366667],[113,170,69,-0.13290564894628293],[113,170,70,-0.13293964821105106],[113,170,71,-0.13343666342937505],[113,170,72,-0.13016924101684482],[113,170,73,-0.12736901969814468],[113,170,74,-0.12412029913463103],[113,170,75,-0.11893450775574739],[113,170,76,-0.11168003390100349],[113,170,77,-0.10227517704319962],[113,170,78,-0.0753814039914543],[113,170,79,-0.07089989415152448],[113,171,64,-0.11847120110674925],[113,171,65,-0.12276154782323913],[113,171,66,-0.13114724098308148],[113,171,67,-0.13699669734814696],[113,171,68,-0.13410440480528346],[113,171,69,-0.13298452436499464],[113,171,70,-0.13418071553854533],[113,171,71,-0.13436749978688128],[113,171,72,-0.13179421669688868],[113,171,73,-0.1274000138075916],[113,171,74,-0.12585850924234382],[113,171,75,-0.11931479607415203],[113,171,76,-0.11225084530915663],[113,171,77,-0.09847784666910271],[113,171,78,-0.07149358933297414],[113,171,79,-0.06659629044832675],[113,172,64,-0.12545205084225422],[113,172,65,-0.12974103174412108],[113,172,66,-0.1355856989235107],[113,172,67,-0.1406081393446811],[113,172,68,-0.1395795430040852],[113,172,69,-0.13765021793422336],[113,172,70,-0.13878892287053235],[113,172,71,-0.1357691379152726],[113,172,72,-0.13545729336299053],[113,172,73,-0.1326601374353138],[113,172,74,-0.13146632154741839],[113,172,75,-0.12477595099189168],[113,172,76,-0.11914468991673582],[113,172,77,-0.09513490586186975],[113,172,78,-0.05899183516678179],[113,172,79,-0.04700920451977434],[113,173,64,-0.12654491399630335],[113,173,65,-0.13190964142224193],[113,173,66,-0.1385349716323199],[113,173,67,-0.14142726959511415],[113,173,68,-0.14081652356816488],[113,173,69,-0.1411642603766238],[113,173,70,-0.13925041150735495],[113,173,71,-0.13515258178003753],[113,173,72,-0.13425172845938993],[113,173,73,-0.13331199825518375],[113,173,74,-0.13270914408981702],[113,173,75,-0.1252655181152879],[113,173,76,-0.12068456356120326],[113,173,77,-0.09417747752315411],[113,173,78,-0.06264894792810038],[113,173,79,-0.04575695747045591],[113,174,64,-0.12614707464821578],[113,174,65,-0.13243905269816003],[113,174,66,-0.13986752045823664],[113,174,67,-0.14227636028357346],[113,174,68,-0.14290877769411942],[113,174,69,-0.1407799283376409],[113,174,70,-0.13854824244093117],[113,174,71,-0.1365398332095431],[113,174,72,-0.1345764146983722],[113,174,73,-0.13399034620680594],[113,174,74,-0.13206620481556616],[113,174,75,-0.12748936871133137],[113,174,76,-0.12375065712940453],[113,174,77,-0.09518060567267647],[113,174,78,-0.06912404674745257],[113,174,79,-0.05292270680924622],[113,175,64,-0.11739734759141329],[113,175,65,-0.12743518588877778],[113,175,66,-0.13235680012687587],[113,175,67,-0.1362065226693144],[113,175,68,-0.13828501346531852],[113,175,69,-0.1397240747170912],[113,175,70,-0.13432606638816677],[113,175,71,-0.13611347787321254],[113,175,72,-0.13575658469214777],[113,175,73,-0.1342493028983291],[113,175,74,-0.1318232303418848],[113,175,75,-0.1274626504389007],[113,175,76,-0.12831759331032655],[113,175,77,-0.12895086801154015],[113,175,78,-0.12830957963269612],[113,175,79,-0.11386454775458493],[113,176,64,-0.11417074982701336],[113,176,65,-0.12334394543329774],[113,176,66,-0.12797231860852756],[113,176,67,-0.13185547046298962],[113,176,68,-0.1369778683875683],[113,176,69,-0.13813914082291784],[113,176,70,-0.1341770459772222],[113,176,71,-0.13692445821125265],[113,176,72,-0.13619202675836084],[113,176,73,-0.13659039902119677],[113,176,74,-0.1314977512197927],[113,176,75,-0.12902526464326644],[113,176,76,-0.1305772279067338],[113,176,77,-0.13132312800332677],[113,176,78,-0.12691422228037744],[113,176,79,-0.11467676397551538],[113,177,64,-0.11553905712638221],[113,177,65,-0.1249718210120887],[113,177,66,-0.13127814277722594],[113,177,67,-0.13227301130506486],[113,177,68,-0.14029127553617649],[113,177,69,-0.1424039548394163],[113,177,70,-0.13867266411974555],[113,177,71,-0.14134540998384867],[113,177,72,-0.13950102001941014],[113,177,73,-0.13530624383606704],[113,177,74,-0.13323938957958276],[113,177,75,-0.1310816474755544],[113,177,76,-0.13341949183510965],[113,177,77,-0.13403645084750368],[113,177,78,-0.13042037155610509],[113,177,79,-0.1241883712770343],[113,178,64,-0.11974071499784339],[113,178,65,-0.12650466266629865],[113,178,66,-0.13200375871767908],[113,178,67,-0.13522796432357947],[113,178,68,-0.1418545118990887],[113,178,69,-0.14581170077442485],[113,178,70,-0.14471273526392697],[113,178,71,-0.14687591437146713],[113,178,72,-0.14483030033036984],[113,178,73,-0.13985804741062197],[113,178,74,-0.1372084935002126],[113,178,75,-0.1354060076280672],[113,178,76,-0.13649803596361262],[113,178,77,-0.13887961500089607],[113,178,78,-0.1359804845944682],[113,178,79,-0.12830856256923098],[113,179,64,-0.11922514705567172],[113,179,65,-0.12402144309743646],[113,179,66,-0.12939392274335526],[113,179,67,-0.13280415586506256],[113,179,68,-0.13812920519547048],[113,179,69,-0.14251707641747632],[113,179,70,-0.14479476250406106],[113,179,71,-0.14782447978068958],[113,179,72,-0.14402859201978516],[113,179,73,-0.14063124591464352],[113,179,74,-0.1349643333213301],[113,179,75,-0.13465891735618102],[113,179,76,-0.1373991244223325],[113,179,77,-0.13914166901451785],[113,179,78,-0.1345388277609993],[113,179,79,-0.12775294046123736],[113,180,64,-0.11641106476380111],[113,180,65,-0.12258258520279655],[113,180,66,-0.12784763215902967],[113,180,67,-0.13280675476260473],[113,180,68,-0.13763685670755632],[113,180,69,-0.1431414610832623],[113,180,70,-0.1480989576200033],[113,180,71,-0.15008255847086724],[113,180,72,-0.14852452571965058],[113,180,73,-0.1466013363642216],[113,180,74,-0.1427310955895331],[113,180,75,-0.14191680192585013],[113,180,76,-0.14449272817267467],[113,180,77,-0.1461228180116961],[113,180,78,-0.1423504532304933],[113,180,79,-0.1358356054637875],[113,181,64,-0.10781062731858576],[113,181,65,-0.1146759370251662],[113,181,66,-0.11801830793879409],[113,181,67,-0.12294552762824337],[113,181,68,-0.12510823430742687],[113,181,69,-0.13002659182902315],[113,181,70,-0.1374181057643114],[113,181,71,-0.14147150459993468],[113,181,72,-0.14558685687479211],[113,181,73,-0.14586100264000243],[113,181,74,-0.14504048697147265],[113,181,75,-0.14319690039934505],[113,181,76,-0.1440020405488574],[113,181,77,-0.1370522652394195],[113,181,78,-0.13014723107838452],[113,181,79,-0.12401526584205735],[113,182,64,-0.10642107340478937],[113,182,65,-0.11527077561321639],[113,182,66,-0.11825132600506275],[113,182,67,-0.12258114435936654],[113,182,68,-0.12624927719879322],[113,182,69,-0.12780360511931038],[113,182,70,-0.13500833006641666],[113,182,71,-0.13990826416962193],[113,182,72,-0.14514988714016885],[113,182,73,-0.14369109401266067],[113,182,74,-0.1441512226574258],[113,182,75,-0.1452631205511004],[113,182,76,-0.14211853141736822],[113,182,77,-0.13192301241835966],[113,182,78,-0.12206969870447461],[113,182,79,-0.11798331470049467],[113,183,64,-0.10048149647690807],[113,183,65,-0.10947014719842714],[113,183,66,-0.11442239329979295],[113,183,67,-0.11805285369997458],[113,183,68,-0.12347437896216841],[113,183,69,-0.12618069361650086],[113,183,70,-0.13238869232560485],[113,183,71,-0.13909204399033506],[113,183,72,-0.1452881633416351],[113,183,73,-0.144800807047702],[113,183,74,-0.14549486153185687],[113,183,75,-0.14651279572166714],[113,183,76,-0.14164704788266505],[113,183,77,-0.1299946576138801],[113,183,78,-0.12005390450614109],[113,183,79,-0.11628292166829954],[113,184,64,-0.09924522901644714],[113,184,65,-0.10756802953842842],[113,184,66,-0.11423694488257147],[113,184,67,-0.11904793050519799],[113,184,68,-0.1233309764562073],[113,184,69,-0.1271180440902523],[113,184,70,-0.13371387173972593],[113,184,71,-0.14156077035256784],[113,184,72,-0.14704093886721714],[113,184,73,-0.14671479883144803],[113,184,74,-0.14558343387664724],[113,184,75,-0.14498683686016345],[113,184,76,-0.13848678262768166],[113,184,77,-0.12888635648403884],[113,184,78,-0.12012492697355383],[113,184,79,-0.11452684496014814],[113,185,64,-0.09930631171508061],[113,185,65,-0.10743575677607546],[113,185,66,-0.11291064994451408],[113,185,67,-0.12010183828643528],[113,185,68,-0.12316826858197477],[113,185,69,-0.12704387080730767],[113,185,70,-0.1353845573236464],[113,185,71,-0.1428809978267914],[113,185,72,-0.14889721488286184],[113,185,73,-0.14711073558376692],[113,185,74,-0.14331029042423996],[113,185,75,-0.1416353499244048],[113,185,76,-0.13367391684368532],[113,185,77,-0.12401966250146798],[113,185,78,-0.11621244835014394],[113,185,79,-0.10732593605854816],[113,186,64,-0.10619958307540858],[113,186,65,-0.11150273622739124],[113,186,66,-0.12029377283997136],[113,186,67,-0.1257024272365606],[113,186,68,-0.12711545852350967],[113,186,69,-0.13232610291733252],[113,186,70,-0.14173814652295058],[113,186,71,-0.14629362944941654],[113,186,72,-0.1515605211494797],[113,186,73,-0.14918803098934152],[113,186,74,-0.1429799365469388],[113,186,75,-0.14290449956855378],[113,186,76,-0.13808426530775328],[113,186,77,-0.12782421643007474],[113,186,78,-0.12314819703549564],[113,186,79,-0.11441988303115952],[113,187,64,-0.10641995604722926],[113,187,65,-0.11503514060752401],[113,187,66,-0.12182854609135006],[113,187,67,-0.12598316515118568],[113,187,68,-0.12827381497498497],[113,187,69,-0.1315224933078158],[113,187,70,-0.13961061744052417],[113,187,71,-0.14462136491224992],[113,187,72,-0.1488682827357639],[113,187,73,-0.14772843489415216],[113,187,74,-0.14240048220826068],[113,187,75,-0.14202285793391],[113,187,76,-0.14018999085974784],[113,187,77,-0.13034360890399654],[113,187,78,-0.12680762388102698],[113,187,79,-0.12214539178935409],[113,188,64,-0.10699275181027612],[113,188,65,-0.11676178037385837],[113,188,66,-0.12261510385238228],[113,188,67,-0.12303339756824813],[113,188,68,-0.12434290361209219],[113,188,69,-0.12618431794778862],[113,188,70,-0.13349351970972428],[113,188,71,-0.1400474522851898],[113,188,72,-0.1412153276889359],[113,188,73,-0.1370643964693595],[113,188,74,-0.1345325488135783],[113,188,75,-0.13549808167927552],[113,188,76,-0.13426211587825473],[113,188,77,-0.12673399044119804],[113,188,78,-0.12069620753735855],[113,188,79,-0.11826292462097016],[113,189,64,-0.10373747148077786],[113,189,65,-0.11766424053667546],[113,189,66,-0.12738364979398198],[113,189,67,-0.13176071386921878],[113,189,68,-0.1332134263471363],[113,189,69,-0.13422342732888692],[113,189,70,-0.1401278273246121],[113,189,71,-0.14500632139475553],[113,189,72,-0.14268949420502072],[113,189,73,-0.13670652328876748],[113,189,74,-0.13292249293916747],[113,189,75,-0.1282586988016196],[113,189,76,-0.12477270281900975],[113,189,77,-0.12032876329141114],[113,189,78,-0.11241237096907834],[113,189,79,-0.11048709172610419],[113,190,64,-0.10582539169603312],[113,190,65,-0.11667415525077757],[113,190,66,-0.12868542017222612],[113,190,67,-0.13413602430916827],[113,190,68,-0.1352316659446564],[113,190,69,-0.13731445122851826],[113,190,70,-0.138457517213937],[113,190,71,-0.1444804501238754],[113,190,72,-0.14226976430211313],[113,190,73,-0.13563336005295287],[113,190,74,-0.129879572432179],[113,190,75,-0.12477871725283046],[113,190,76,-0.11944784557424869],[113,190,77,-0.11821016106634503],[113,190,78,-0.10923039901327046],[113,190,79,-0.10663310716140599],[113,191,64,-0.10371956418025048],[113,191,65,-0.113358953831527],[113,191,66,-0.12767639094658345],[113,191,67,-0.13462322748865035],[113,191,68,-0.13444644721875848],[113,191,69,-0.13487873725113714],[113,191,70,-0.1359431998875698],[113,191,71,-0.14007372270333568],[113,191,72,-0.13728217357297706],[113,191,73,-0.13353203947483233],[113,191,74,-0.12858243114492324],[113,191,75,-0.12280640651553504],[113,191,76,-0.1150435451082146],[113,191,77,-0.11381637142513437],[113,191,78,-0.10626131894361807],[113,191,79,-0.0996833254555856],[113,192,64,-0.10517153372884394],[113,192,65,-0.11660573660554185],[113,192,66,-0.1285156924866641],[113,192,67,-0.13469603612175027],[113,192,68,-0.1357835007458198],[113,192,69,-0.13452814872616337],[113,192,70,-0.13531176420331417],[113,192,71,-0.13643385668206226],[113,192,72,-0.13214029546865141],[113,192,73,-0.12797848327798883],[113,192,74,-0.12531574984652538],[113,192,75,-0.12011935374786711],[113,192,76,-0.11086198335985853],[113,192,77,-0.1089588020245324],[113,192,78,-0.10005119763101354],[113,192,79,-0.09474632646961338],[113,193,64,-0.11744914195709327],[113,193,65,-0.12317923288260951],[113,193,66,-0.12459587697124794],[113,193,67,-0.12891409651611788],[113,193,68,-0.12684226989168057],[113,193,69,-0.1269378434246129],[113,193,70,-0.1288941534456242],[113,193,71,-0.13100085083228083],[113,193,72,-0.12476107367232392],[113,193,73,-0.12374676525441843],[113,193,74,-0.12307619894713406],[113,193,75,-0.1153032736328665],[113,193,76,-0.10836092492769708],[113,193,77,-0.10385013888060933],[113,193,78,-0.10152820095949307],[113,193,79,-0.10053244678964497],[113,194,64,-0.1267249979534963],[113,194,65,-0.13023330717400355],[113,194,66,-0.1289378521252771],[113,194,67,-0.12981814825496346],[113,194,68,-0.12821380600358323],[113,194,69,-0.12815151133570302],[113,194,70,-0.13112027370554868],[113,194,71,-0.13191716797818587],[113,194,72,-0.12686983599825072],[113,194,73,-0.1251882383419876],[113,194,74,-0.12457248862252573],[113,194,75,-0.11656497809396735],[113,194,76,-0.10892288874050546],[113,194,77,-0.10354308001696078],[113,194,78,-0.09950436179961386],[113,194,79,-0.09530161224328391],[113,195,64,-0.127844566931746],[113,195,65,-0.13106550112415846],[113,195,66,-0.13061929156197544],[113,195,67,-0.12787199623919698],[113,195,68,-0.12534508965359825],[113,195,69,-0.12484651077388786],[113,195,70,-0.12703441493918163],[113,195,71,-0.12799662559925107],[113,195,72,-0.12393353226607506],[113,195,73,-0.12572982485782874],[113,195,74,-0.12204156656489078],[113,195,75,-0.1173644445924717],[113,195,76,-0.1080724912865168],[113,195,77,-0.1069663577779968],[113,195,78,-0.10175222491023264],[113,195,79,-0.09836991677555462],[113,196,64,-0.1216974803557272],[113,196,65,-0.12053504618951356],[113,196,66,-0.11523044229472434],[113,196,67,-0.10539265062689507],[113,196,68,-0.0959965440576783],[113,196,69,-0.09360889659296057],[113,196,70,-0.09397898437174593],[113,196,71,-0.093758253226605],[113,196,72,-0.08939124141794474],[113,196,73,-0.09229842667807242],[113,196,74,-0.08821063805853585],[113,196,75,-0.08404961715569828],[113,196,76,-0.07645136379331521],[113,196,77,-0.07680773628146298],[113,196,78,-0.07452432936459116],[113,196,79,-0.0748741600849464],[113,197,64,-0.12247003678123836],[113,197,65,-0.12030546202536868],[113,197,66,-0.11678117878951931],[113,197,67,-0.10515342073301331],[113,197,68,-0.09413475863548539],[113,197,69,-0.09043137601146539],[113,197,70,-0.08999964209433324],[113,197,71,-0.09010917976258251],[113,197,72,-0.08778562395415541],[113,197,73,-0.08920904616730471],[113,197,74,-0.0868491204946164],[113,197,75,-0.08217959102865635],[113,197,76,-0.07258226782248925],[113,197,77,-0.07240547517967293],[113,197,78,-0.06799904245378599],[113,197,79,-0.06929777788283076],[113,198,64,-0.12476375929025313],[113,198,65,-0.12275844158397031],[113,198,66,-0.11646598154745372],[113,198,67,-0.10239193671851846],[113,198,68,-0.09370694675164323],[113,198,69,-0.08808126915208436],[113,198,70,-0.087439642851854],[113,198,71,-0.08853069055875452],[113,198,72,-0.08465922072396578],[113,198,73,-0.08605200834563832],[113,198,74,-0.08380541210575887],[113,198,75,-0.07761570730840527],[113,198,76,-0.07123896699711187],[113,198,77,-0.07355171659769502],[113,198,78,-0.07191368954815487],[113,198,79,-0.07536114908313912],[113,199,64,-0.12630624518295186],[113,199,65,-0.12405235165941816],[113,199,66,-0.11492874080182425],[113,199,67,-0.10035567606713103],[113,199,68,-0.09182771814399657],[113,199,69,-0.08881675637181027],[113,199,70,-0.08497378659359263],[113,199,71,-0.08692880729237862],[113,199,72,-0.08464339267875418],[113,199,73,-0.08183618257310965],[113,199,74,-0.07673762144998592],[113,199,75,-0.07487274009763667],[113,199,76,-0.06830337365187777],[113,199,77,-0.06959035615889653],[113,199,78,-0.06704135441506431],[113,199,79,-0.06977978289406873],[113,200,64,-0.13020541006023806],[113,200,65,-0.12662691616235894],[113,200,66,-0.1181609415538693],[113,200,67,-0.10310485463276718],[113,200,68,-0.09151962442129],[113,200,69,-0.08756455919776487],[113,200,70,-0.0832785570616412],[113,200,71,-0.08465966876415443],[113,200,72,-0.0825092282929413],[113,200,73,-0.08004559099372044],[113,200,74,-0.07272424079677461],[113,200,75,-0.06924022010058234],[113,200,76,-0.06774863448830218],[113,200,77,-0.071703111399825],[113,200,78,-0.07089588034871155],[113,200,79,-0.07597170065796549],[113,201,64,-0.12496606447880369],[113,201,65,-0.12005491340249333],[113,201,66,-0.11349483756463302],[113,201,67,-0.10071351428751528],[113,201,68,-0.08503871851146216],[113,201,69,-0.08018692019052495],[113,201,70,-0.07672571049658483],[113,201,71,-0.07697370984588628],[113,201,72,-0.07717535449741314],[113,201,73,-0.07659369768643284],[113,201,74,-0.07440572067843736],[113,201,75,-0.07267657955463463],[113,201,76,-0.07430527135651377],[113,201,77,-0.0714282096542895],[113,201,78,-0.0689831281836431],[113,201,79,-0.07092316432815846],[113,202,64,-0.130622895581106],[113,202,65,-0.12665800943168776],[113,202,66,-0.12193822609004706],[113,202,67,-0.10742951074808144],[113,202,68,-0.0916151039695059],[113,202,69,-0.08251647851331934],[113,202,70,-0.07644335290526136],[113,202,71,-0.0768776920711638],[113,202,72,-0.07720009396706728],[113,202,73,-0.07840983098163361],[113,202,74,-0.07559675411032458],[113,202,75,-0.07131270176406958],[113,202,76,-0.06987899646338215],[113,202,77,-0.07152074345607763],[113,202,78,-0.0701258971418322],[113,202,79,-0.07624707440942075],[113,203,64,-0.13474543931820057],[113,203,65,-0.12868803866393652],[113,203,66,-0.12253037614401863],[113,203,67,-0.11075568898655556],[113,203,68,-0.09586191659667993],[113,203,69,-0.08314987007005936],[113,203,70,-0.07524748828155012],[113,203,71,-0.07534233973291686],[113,203,72,-0.07615294100352168],[113,203,73,-0.07658325362366168],[113,203,74,-0.0743323463031643],[113,203,75,-0.0713925522360774],[113,203,76,-0.07042306688536694],[113,203,77,-0.07909974489008276],[113,203,78,-0.07694539596325894],[113,203,79,-0.08780257516337836],[113,204,64,-0.1395089887032941],[113,204,65,-0.1308193989782314],[113,204,66,-0.12307245231891306],[113,204,67,-0.11126634691012494],[113,204,68,-0.09904409267362577],[113,204,69,-0.08356739516673481],[113,204,70,-0.07202390350379248],[113,204,71,-0.07277250498953919],[113,204,72,-0.07321651895165643],[113,204,73,-0.07511330308607839],[113,204,74,-0.07134722015515924],[113,204,75,-0.06996258171016866],[113,204,76,-0.07029846539735171],[113,204,77,-0.08390108954470696],[113,204,78,-0.08227131199249635],[113,204,79,-0.09174568552211403],[113,205,64,-0.15236212784416928],[113,205,65,-0.1436438950633432],[113,205,66,-0.1357979333264363],[113,205,67,-0.12349715538123923],[113,205,68,-0.11100966324075609],[113,205,69,-0.09659808944930576],[113,205,70,-0.08477037317792924],[113,205,71,-0.07806658659680926],[113,205,72,-0.07148770309652577],[113,205,73,-0.07077715505095916],[113,205,74,-0.06779188505734471],[113,205,75,-0.06814596571928525],[113,205,76,-0.06596624750243668],[113,205,77,-0.08285480348887628],[113,205,78,-0.08460060003507468],[113,205,79,-0.09055192661504091],[113,206,64,-0.1555348947948392],[113,206,65,-0.14700215616819676],[113,206,66,-0.1359694401916372],[113,206,67,-0.12471681569097476],[113,206,68,-0.11045101650111655],[113,206,69,-0.09824895268635217],[113,206,70,-0.08594843126474246],[113,206,71,-0.0768255287906858],[113,206,72,-0.06834781566947096],[113,206,73,-0.06645638242420192],[113,206,74,-0.06838245531360324],[113,206,75,-0.07056765646676785],[113,206,76,-0.07029606135381176],[113,206,77,-0.08941131876803185],[113,206,78,-0.0946800799019725],[113,206,79,-0.09867395195752167],[113,207,64,-0.15960869615513862],[113,207,65,-0.1501004436629476],[113,207,66,-0.13710264241068745],[113,207,67,-0.12321679416782987],[113,207,68,-0.11000236751160672],[113,207,69,-0.09714043754178064],[113,207,70,-0.08578133752918182],[113,207,71,-0.07781211962695311],[113,207,72,-0.06703559241529355],[113,207,73,-0.06249900868448253],[113,207,74,-0.062452965927400635],[113,207,75,-0.06510685212413089],[113,207,76,-0.06538411869180483],[113,207,77,-0.08049202210570407],[113,207,78,-0.0868081967487428],[113,207,79,-0.08794626454011228],[113,208,64,-0.16197764285437016],[113,208,65,-0.15075406874014627],[113,208,66,-0.13633222397902994],[113,208,67,-0.12235859951375472],[113,208,68,-0.10827368129351704],[113,208,69,-0.09686786994767975],[113,208,70,-0.08196092390015039],[113,208,71,-0.07518969253310631],[113,208,72,-0.06616735012919117],[113,208,73,-0.063691905898104],[113,208,74,-0.06252131893397714],[113,208,75,-0.0632655695206167],[113,208,76,-0.06344535385456064],[113,208,77,-0.07849234090026738],[113,208,78,-0.08653996963360577],[113,208,79,-0.08845207773416627],[113,209,64,-0.16515856424883993],[113,209,65,-0.15121780643756422],[113,209,66,-0.1351707237598913],[113,209,67,-0.12207747609847719],[113,209,68,-0.10674481720689194],[113,209,69,-0.09357578300642186],[113,209,70,-0.08069084336364862],[113,209,71,-0.07364003193778113],[113,209,72,-0.06555325476274995],[113,209,73,-0.06203780067532999],[113,209,74,-0.06144661279828192],[113,209,75,-0.0667827924445956],[113,209,76,-0.0682838231052101],[113,209,77,-0.07972094529403445],[113,209,78,-0.0857201645222633],[113,209,79,-0.08442137133407598],[113,210,64,-0.1677997433891934],[113,210,65,-0.15570286128888927],[113,210,66,-0.14017455564050083],[113,210,67,-0.12340258110598949],[113,210,68,-0.10912412167148469],[113,210,69,-0.09629015602507769],[113,210,70,-0.08394873624489733],[113,210,71,-0.07542586656319489],[113,210,72,-0.06904736939368003],[113,210,73,-0.0646798184064604],[113,210,74,-0.0625832726068479],[113,210,75,-0.06607845302261747],[113,210,76,-0.06506025373520954],[113,210,77,-0.07380073852250267],[113,210,78,-0.07695777894981154],[113,210,79,-0.07872652024920301],[113,211,64,-0.1683805261781825],[113,211,65,-0.1557677025056568],[113,211,66,-0.14048747587606375],[113,211,67,-0.12447061256264894],[113,211,68,-0.10946372426889038],[113,211,69,-0.0955508761790547],[113,211,70,-0.08272239108494152],[113,211,71,-0.07462546276704288],[113,211,72,-0.06966537312594945],[113,211,73,-0.06537417554157371],[113,211,74,-0.06119272959511943],[113,211,75,-0.06840271104145575],[113,211,76,-0.0660050822288825],[113,211,77,-0.07439661965207124],[113,211,78,-0.08103784692830684],[113,211,79,-0.09009432336214401],[113,212,64,-0.16045354820558513],[113,212,65,-0.14985767413067813],[113,212,66,-0.1369281435134285],[113,212,67,-0.12417321702396857],[113,212,68,-0.11312267212258012],[113,212,69,-0.10623608341752819],[113,212,70,-0.09500352113307751],[113,212,71,-0.08883574524769289],[113,212,72,-0.08519309540328132],[113,212,73,-0.07917916404818609],[113,212,74,-0.07320596318676005],[113,212,75,-0.07410014791604869],[113,212,76,-0.07401502814467247],[113,212,77,-0.07391659299788743],[113,212,78,-0.07854372373979258],[113,212,79,-0.0842264338585412],[113,213,64,-0.16724773407788973],[113,213,65,-0.14957018782208814],[113,213,66,-0.13240002772522141],[113,213,67,-0.11733832170995306],[113,213,68,-0.10214790772584523],[113,213,69,-0.09523943238119323],[113,213,70,-0.08839626383814271],[113,213,71,-0.08669381918927734],[113,213,72,-0.0870171132667227],[113,213,73,-0.08734339159539609],[113,213,74,-0.08375301904539909],[113,213,75,-0.0814586134775402],[113,213,76,-0.08044734034791746],[113,213,77,-0.07915570891822636],[113,213,78,-0.08018293787368128],[113,213,79,-0.0849068666411175],[113,214,64,-0.16625087178198233],[113,214,65,-0.1479706292149448],[113,214,66,-0.1314578363867933],[113,214,67,-0.11575289492072965],[113,214,68,-0.10089658236484149],[113,214,69,-0.09544967065465956],[113,214,70,-0.08842807731898189],[113,214,71,-0.08516982602370826],[113,214,72,-0.0850030956611306],[113,214,73,-0.08702872992138173],[113,214,74,-0.08481980461811565],[113,214,75,-0.0817186264614872],[113,214,76,-0.0816475536897307],[113,214,77,-0.08376769997600533],[113,214,78,-0.08383505979243827],[113,214,79,-0.0880568391249983],[113,215,64,-0.16556036165175037],[113,215,65,-0.15095888220840586],[113,215,66,-0.13302142696667288],[113,215,67,-0.11721467866237222],[113,215,68,-0.10269827301756695],[113,215,69,-0.09708591467475844],[113,215,70,-0.08830183223381782],[113,215,71,-0.08428632894640894],[113,215,72,-0.08493755969735536],[113,215,73,-0.08663092524475993],[113,215,74,-0.08361463237325033],[113,215,75,-0.0779645791503201],[113,215,76,-0.07703184148213069],[113,215,77,-0.08001542815898736],[113,215,78,-0.07881778838423095],[113,215,79,-0.08184320306947553],[113,216,64,-0.16299653451199098],[113,216,65,-0.14907672671398212],[113,216,66,-0.13405206146312468],[113,216,67,-0.11876901215860218],[113,216,68,-0.10348747213404833],[113,216,69,-0.09599244766897444],[113,216,70,-0.08814275161741032],[113,216,71,-0.08248691387333733],[113,216,72,-0.08483705793328897],[113,216,73,-0.0845911682175754],[113,216,74,-0.07892619099524498],[113,216,75,-0.07308291275816244],[113,216,76,-0.07586744687867253],[113,216,77,-0.08207906577407595],[113,216,78,-0.08464270293036777],[113,216,79,-0.08323908026218693],[113,217,64,-0.1535008531455504],[113,217,65,-0.1457168683456622],[113,217,66,-0.13717290707564855],[113,217,67,-0.1270497589226231],[113,217,68,-0.11175376882775709],[113,217,69,-0.10297239967223074],[113,217,70,-0.0938999772929363],[113,217,71,-0.08446126647462607],[113,217,72,-0.08035855153664705],[113,217,73,-0.07135274059430591],[113,217,74,-0.0638482623982359],[113,217,75,-0.05999126930468982],[113,217,76,-0.06306656750424204],[113,217,77,-0.07843604811423024],[113,217,78,-0.09012432883024288],[113,217,79,-0.08067997592367795],[113,218,64,-0.1576880669260213],[113,218,65,-0.14722737413424253],[113,218,66,-0.14059985347751536],[113,218,67,-0.1330381942034259],[113,218,68,-0.11536055431628792],[113,218,69,-0.1060253501462806],[113,218,70,-0.09647678063215422],[113,218,71,-0.08631526483278634],[113,218,72,-0.07997077193336205],[113,218,73,-0.07080369980364178],[113,218,74,-0.06130774200896117],[113,218,75,-0.05569276355458707],[113,218,76,-0.06153112337459293],[113,218,77,-0.08418422394800257],[113,218,78,-0.09987592942274018],[113,218,79,-0.0897911481213292],[113,219,64,-0.1586856499580762],[113,219,65,-0.14744190557419323],[113,219,66,-0.13972360585368634],[113,219,67,-0.13107130699409128],[113,219,68,-0.11481784648163407],[113,219,69,-0.10267489751090642],[113,219,70,-0.09272247495600683],[113,219,71,-0.08651488590284404],[113,219,72,-0.07754875695198038],[113,219,73,-0.06607559138330601],[113,219,74,-0.05537595896705858],[113,219,75,-0.05506277146744668],[113,219,76,-0.06638045587455563],[113,219,77,-0.08937146409824459],[113,219,78,-0.10957421917354555],[113,219,79,-0.09949378534532718],[113,220,64,-0.15759971619528618],[113,220,65,-0.14382973079294928],[113,220,66,-0.13273015208313904],[113,220,67,-0.1215891109028445],[113,220,68,-0.10550441034931254],[113,220,69,-0.09187694329969809],[113,220,70,-0.07888342547614616],[113,220,71,-0.07266980237920055],[113,220,72,-0.06423471518145245],[113,220,73,-0.052932378812563165],[113,220,74,-0.0412742497751567],[113,220,75,-0.05341385958009688],[113,220,76,-0.06723557319094708],[113,220,77,-0.10842056809299798],[113,220,78,-0.13085825928891182],[113,220,79,-0.12185871008691676],[113,221,64,-0.15614066544753558],[113,221,65,-0.14335374196448972],[113,221,66,-0.13229702553148573],[113,221,67,-0.11930863705077077],[113,221,68,-0.101708297980335],[113,221,69,-0.08741734737057871],[113,221,70,-0.07610710941495405],[113,221,71,-0.06812452399057556],[113,221,72,-0.059896693689374135],[113,221,73,-0.05036874187230519],[113,221,74,-0.0637723596691483],[113,221,75,-0.09434430757102305],[113,221,76,-0.10034395893912941],[113,221,77,-0.1384069944814648],[113,221,78,-0.13139466793929916],[113,221,79,-0.12402578527354483],[113,222,64,-0.15137078862758158],[113,222,65,-0.14247554594317985],[113,222,66,-0.12915799611481277],[113,222,67,-0.11648863655871516],[113,222,68,-0.09936823821027319],[113,222,69,-0.08556214248721902],[113,222,70,-0.07230261414755226],[113,222,71,-0.06115432893526008],[113,222,72,-0.052829284770827656],[113,222,73,-0.04400803742494851],[113,222,74,-0.07553634882107349],[113,222,75,-0.1056826537702269],[113,222,76,-0.10725399224980564],[113,222,77,-0.1299674120409529],[113,222,78,-0.121315693423279],[113,222,79,-0.11346166259891227],[113,223,64,-0.15324552471195213],[113,223,65,-0.14344859717179537],[113,223,66,-0.13339861528083485],[113,223,67,-0.1192134867127867],[113,223,68,-0.10080063045062092],[113,223,69,-0.08573889239778859],[113,223,70,-0.07080037557647004],[113,223,71,-0.05786325140012852],[113,223,72,-0.045841243245101936],[113,223,73,-0.04103011721441487],[113,223,74,-0.09423738709644294],[113,223,75,-0.13221704862971875],[113,223,76,-0.1289401437987418],[113,223,77,-0.12958712215935678],[113,223,78,-0.11817473925223723],[113,223,79,-0.1111969605773522],[113,224,64,-0.1489020157494833],[113,224,65,-0.14100175852242794],[113,224,66,-0.13205371931339455],[113,224,67,-0.11812015321940164],[113,224,68,-0.09848351557268692],[113,224,69,-0.08278791203186153],[113,224,70,-0.06842042228136519],[113,224,71,-0.05277289380307707],[113,224,72,-0.04103710503648721],[113,224,73,-0.03847280919175623],[113,224,74,-0.09623220743540341],[113,224,75,-0.13892651012166746],[113,224,76,-0.13785893866263432],[113,224,77,-0.1302186824833539],[113,224,78,-0.11964900201180728],[113,224,79,-0.11143448482792769],[113,225,64,-0.15337540765220412],[113,225,65,-0.1437579135363644],[113,225,66,-0.13286262329148324],[113,225,67,-0.11451691188407528],[113,225,68,-0.09296197648798125],[113,225,69,-0.07832414901922989],[113,225,70,-0.06717128720981852],[113,225,71,-0.05138016144382267],[113,225,72,-0.041924388453602676],[113,225,73,-0.045140944485309066],[113,225,74,-0.10317911766006865],[113,225,75,-0.13991224727938154],[113,225,76,-0.14030086959830762],[113,225,77,-0.1321194034261226],[113,225,78,-0.12255562144459461],[113,225,79,-0.11324856952580042],[113,226,64,-0.15502641899772665],[113,226,65,-0.1458019973309001],[113,226,66,-0.13348562309718187],[113,226,67,-0.117195277404239],[113,226,68,-0.09677118495647005],[113,226,69,-0.08105671360577635],[113,226,70,-0.06934011509318662],[113,226,71,-0.05282363464925497],[113,226,72,-0.04197712434314974],[113,226,73,-0.040539815232046306],[113,226,74,-0.08913131801599669],[113,226,75,-0.1286344665928561],[113,226,76,-0.13914756950447188],[113,226,77,-0.13307082747249785],[113,226,78,-0.1223329480229253],[113,226,79,-0.11154044265340479],[113,227,64,-0.15299535819304697],[113,227,65,-0.145936287741516],[113,227,66,-0.13174645486136674],[113,227,67,-0.11725260192978643],[113,227,68,-0.0963507624397178],[113,227,69,-0.07918017014840747],[113,227,70,-0.06536412315155092],[113,227,71,-0.050343726703488426],[113,227,72,-0.040566446439391536],[113,227,73,-0.03867369053548111],[113,227,74,-0.09479280638184559],[113,227,75,-0.14025880887331335],[113,227,76,-0.1479713978295822],[113,227,77,-0.139996094898815],[113,227,78,-0.1314511000034993],[113,227,79,-0.12311859925548396],[113,228,64,-0.14021651221764322],[113,228,65,-0.13044557242494229],[113,228,66,-0.11552078882082323],[113,228,67,-0.09990432551214345],[113,228,68,-0.08127944411177285],[113,228,69,-0.06540034842252743],[113,228,70,-0.0477085378999751],[113,228,71,-0.03271110698908481],[113,228,72,-0.022473404809274927],[113,228,73,-0.02007460947914058],[113,228,74,-0.08633310597052933],[113,228,75,-0.13540801560098387],[113,228,76,-0.14261414420169097],[113,228,77,-0.13407338259077142],[113,228,78,-0.12877474687471718],[113,228,79,-0.120939169643557],[113,229,64,-0.12886816368920181],[113,229,65,-0.12072929437051066],[113,229,66,-0.10937406916620195],[113,229,67,-0.09886197573108961],[113,229,68,-0.08312006286619969],[113,229,69,-0.06722679290773852],[113,229,70,-0.04524103054275587],[113,229,71,-0.025796898103397588],[113,229,72,-0.01434143811262592],[113,229,73,-0.05145194390993793],[113,229,74,-0.14568179957540206],[113,229,75,-0.15262534225406407],[113,229,76,-0.14541052126770007],[113,229,77,-0.13766060517114512],[113,229,78,-0.1340668807093378],[113,229,79,-0.12638657618999938],[113,230,64,-0.12572757505367665],[113,230,65,-0.11819202509081514],[113,230,66,-0.10947644321511857],[113,230,67,-0.09668156348249798],[113,230,68,-0.08221267291339102],[113,230,69,-0.06797849168100822],[113,230,70,-0.045125294306710056],[113,230,71,-0.02347821766981261],[113,230,72,-0.011716236655275117],[113,230,73,-0.051452223415494255],[113,230,74,-0.14700925286469402],[113,230,75,-0.1515260231373631],[113,230,76,-0.14159909186041586],[113,230,77,-0.13507683031414044],[113,230,78,-0.12882309019833538],[113,230,79,-0.12252194851563845],[113,231,64,-0.13385727504266187],[113,231,65,-0.12478295655172528],[113,231,66,-0.11117716975584296],[113,231,67,-0.09995119741726818],[113,231,68,-0.08410681576210617],[113,231,69,-0.06901038511956886],[113,231,70,-0.045802432031399797],[113,231,71,-0.026795261446639226],[113,231,72,-0.01137691783066816],[113,231,73,-0.012162566751282678],[113,231,74,-0.10683083745590571],[113,231,75,-0.14849818553515648],[113,231,76,-0.1406535552550015],[113,231,77,-0.13503075228620007],[113,231,78,-0.12884801645225183],[113,231,79,-0.12331034925000287],[113,232,64,-0.13610487304561913],[113,232,65,-0.12648462589217302],[113,232,66,-0.10998901179777373],[113,232,67,-0.096944086120052],[113,232,68,-0.08223297277746158],[113,232,69,-0.06732210856981412],[113,232,70,-0.046513586076527495],[113,232,71,-0.027495074200325056],[113,232,72,-0.010334131830696841],[113,232,73,-0.007521005308768511],[113,232,74,-0.1088173123835858],[113,232,75,-0.15117531604967616],[113,232,76,-0.14134911531347363],[113,232,77,-0.1340537661718938],[113,232,78,-0.12883114907934184],[113,232,79,-0.12203381629141088],[113,233,64,-0.13494235292067533],[113,233,65,-0.12808479769293601],[113,233,66,-0.1101844699343533],[113,233,67,-0.09449599783779679],[113,233,68,-0.08211489767047772],[113,233,69,-0.06622648907935413],[113,233,70,-0.04619779273314173],[113,233,71,-0.028413785100055315],[113,233,72,-0.010289883329016564],[113,233,73,0.00253898746814879],[113,233,74,-0.10327002975186587],[113,233,75,-0.15579679956327389],[113,233,76,-0.1453742801575645],[113,233,77,-0.13867506531815227],[113,233,78,-0.1317705982028129],[113,233,79,-0.1250058838308714],[113,234,64,-0.14066546330588925],[113,234,65,-0.13128167565350987],[113,234,66,-0.11163516923954449],[113,234,67,-0.09753448397458564],[113,234,68,-0.0865448206936992],[113,234,69,-0.07091468709911224],[113,234,70,-0.05142166416247928],[113,234,71,-0.03137044508461698],[113,234,72,-0.015107349143743343],[113,234,73,-0.0013583139822979096],[113,234,74,-0.07874528943834053],[113,234,75,-0.15800469633686645],[113,234,76,-0.15459632614897917],[113,234,77,-0.15034409441589705],[113,234,78,-0.1432608446084592],[113,234,79,-0.1351188691017293],[113,235,64,-0.14106634159799183],[113,235,65,-0.13129289922090917],[113,235,66,-0.11236744611876776],[113,235,67,-0.09856603897553441],[113,235,68,-0.08652372883400829],[113,235,69,-0.07099016438916683],[113,235,70,-0.05110330614386932],[113,235,71,-0.03195565857414033],[113,235,72,-0.017827011349130367],[113,235,73,-0.002981242515811916],[113,235,74,0.008990357995556877],[113,235,75,-0.04618652573978843],[113,235,76,-0.08783893931633016],[113,235,77,-0.10383888611071909],[113,235,78,-0.09047625447086713],[113,235,79,-0.14370308604936502],[113,236,64,-0.16262963214390538],[113,236,65,-0.14736620483074941],[113,236,66,-0.1286049047311078],[113,236,67,-0.1145493824348848],[113,236,68,-0.09987665589808911],[113,236,69,-0.08493670005048463],[113,236,70,-0.06454505425234944],[113,236,71,-0.0449038030349605],[113,236,72,-0.03166078950678179],[113,236,73,-0.019027412974089317],[113,236,74,-0.006545484268416973],[113,236,75,-0.049686194028198113],[113,236,76,-0.09334599759217538],[113,236,77,-0.09801716901350875],[113,236,78,-0.09178238788569033],[113,236,79,-0.15091474471721683],[113,237,64,-0.16966045620345027],[113,237,65,-0.1483079713380729],[113,237,66,-0.12682670435338264],[113,237,67,-0.10882377859661643],[113,237,68,-0.09193650876893567],[113,237,69,-0.0759454270211532],[113,237,70,-0.05420338092233659],[113,237,71,-0.0375998686699457],[113,237,72,-0.02425802267551322],[113,237,73,-0.013792175884119892],[113,237,74,-0.022888750031649724],[113,237,75,-0.0870102718123514],[113,237,76,-0.1272258920604116],[113,237,77,-0.12318662152314774],[113,237,78,-0.13874474843099793],[113,237,79,-0.15401365550376225],[113,238,64,-0.17051421805300798],[113,238,65,-0.1491152312405777],[113,238,66,-0.12922283249871686],[113,238,67,-0.10984613346501496],[113,238,68,-0.09425078854548705],[113,238,69,-0.0762018957499902],[113,238,70,-0.05539767636826502],[113,238,71,-0.03749857818368446],[113,238,72,-0.026123078976214728],[113,238,73,-0.016267613978366874],[113,238,74,-0.018338233448518843],[113,238,75,-0.07495200560590756],[113,238,76,-0.11738046058707394],[113,238,77,-0.1240449819388868],[113,238,78,-0.1576161434265003],[113,238,79,-0.15033702350648648],[113,239,64,-0.17890966393415692],[113,239,65,-0.15798553756704795],[113,239,66,-0.1356619477397375],[113,239,67,-0.11683673591399663],[113,239,68,-0.09827437230994619],[113,239,69,-0.08217710711472953],[113,239,70,-0.05921708910836605],[113,239,71,-0.04152972338773854],[113,239,72,-0.03183256517382698],[113,239,73,-0.019891187699178622],[113,239,74,-0.007423290871988231],[113,239,75,-0.04300675625652494],[113,239,76,-0.08465322667436527],[113,239,77,-0.09698953362773317],[113,239,78,-0.15457453424654297],[113,239,79,-0.1460390844999307],[113,240,64,-0.17888032691948647],[113,240,65,-0.16117861638645598],[113,240,66,-0.13896389606218087],[113,240,67,-0.1190553187348782],[113,240,68,-0.10097998470501537],[113,240,69,-0.08269221922287391],[113,240,70,-0.061339875848699384],[113,240,71,-0.04466451889968365],[113,240,72,-0.032933141587083346],[113,240,73,-0.023632571057718793],[113,240,74,-0.007183483538705127],[113,240,75,-0.03300045956019001],[113,240,76,-0.07179042707174174],[113,240,77,-0.09555385919346313],[113,240,78,-0.1519840322199084],[113,240,79,-0.14503496027678023],[113,241,64,-0.17138678812093777],[113,241,65,-0.16103906521835948],[113,241,66,-0.14541477921254514],[113,241,67,-0.13107894686607688],[113,241,68,-0.11262495579666668],[113,241,69,-0.09533539198940802],[113,241,70,-0.07432205209703925],[113,241,71,-0.05769752525092815],[113,241,72,-0.043780580716265755],[113,241,73,-0.03429654062809528],[113,241,74,-0.02278919497848895],[113,241,75,-0.010564770000068266],[113,241,76,0.006775369161274039],[113,241,77,0.01984762637589639],[113,241,78,0.03600513532256962],[113,241,79,0.03459554431502711],[113,242,64,-0.1733998812153109],[113,242,65,-0.16304625895834404],[113,242,66,-0.14863512658230527],[113,242,67,-0.13376676901921258],[113,242,68,-0.11765883826048493],[113,242,69,-0.09925758334058629],[113,242,70,-0.08016369079993511],[113,242,71,-0.06488847217684522],[113,242,72,-0.047601592722230975],[113,242,73,-0.036199543906998026],[113,242,74,-0.028330138924426172],[113,242,75,-0.016594226818562978],[113,242,76,5.22547264437484E-4],[113,242,77,0.014120336407686299],[113,242,78,0.029824827898566275],[113,242,79,0.0332317601257085],[113,243,64,-0.1734094561618151],[113,243,65,-0.16252540556918535],[113,243,66,-0.14729958237999968],[113,243,67,-0.13230836671092983],[113,243,68,-0.11619078068275815],[113,243,69,-0.09980835994653167],[113,243,70,-0.07973683740425636],[113,243,71,-0.0649351684186547],[113,243,72,-0.04869249441064263],[113,243,73,-0.03578505248947012],[113,243,74,-0.02798780413753519],[113,243,75,-0.01675693826947089],[113,243,76,-0.0018164087630041237],[113,243,77,0.011535150535589275],[113,243,78,0.025922131598039563],[113,243,79,0.03352128786696115],[113,244,64,-0.16548012020889968],[113,244,65,-0.1589891328043086],[113,244,66,-0.14927941040045462],[113,244,67,-0.13726952621201932],[113,244,68,-0.12357625165958092],[113,244,69,-0.11160799054280393],[113,244,70,-0.09433079406031078],[113,244,71,-0.08116756865429792],[113,244,72,-0.06617677242112338],[113,244,73,-0.05466780919271179],[113,244,74,-0.04666458793762955],[113,244,75,-0.037342853247045185],[113,244,76,-0.026506475550798783],[113,244,77,-0.015044197104699064],[113,244,78,-5.889637666053882E-5],[113,244,79,0.014192982023926277],[113,245,64,-0.16266279788141744],[113,245,65,-0.15652179595876783],[113,245,66,-0.14639116353057074],[113,245,67,-0.13632793023147805],[113,245,68,-0.12050092462086243],[113,245,69,-0.10984449042674596],[113,245,70,-0.09419586458497461],[113,245,71,-0.0799357430990308],[113,245,72,-0.064315815023114],[113,245,73,-0.054167317994086715],[113,245,74,-0.047054350340735955],[113,245,75,-0.038211904129858934],[113,245,76,-0.02892465538201487],[113,245,77,-0.018563742975880065],[113,245,78,-0.003148343312224744],[113,245,79,0.005436557117981085],[113,246,64,-0.16091671490893017],[113,246,65,-0.15202204735688177],[113,246,66,-0.14249805156347178],[113,246,67,-0.13249929364064633],[113,246,68,-0.11825461864782202],[113,246,69,-0.10765073155330555],[113,246,70,-0.09552803973830773],[113,246,71,-0.08042459083592063],[113,246,72,-0.06635774091700777],[113,246,73,-0.056976258669716416],[113,246,74,-0.046259590554371455],[113,246,75,-0.03929121458562462],[113,246,76,-0.031030947624191854],[113,246,77,-0.019016116443743673],[113,246,78,-0.003116048860107301],[113,246,79,0.011845856713600403],[113,247,64,-0.16865800495300354],[113,247,65,-0.15822887265030103],[113,247,66,-0.14664170571072901],[113,247,67,-0.1358750496172129],[113,247,68,-0.11964742876613042],[113,247,69,-0.10850370680391372],[113,247,70,-0.09999829957040852],[113,247,71,-0.08493863400182103],[113,247,72,-0.07069753160781889],[113,247,73,-0.05827521949786835],[113,247,74,-0.04625288251141836],[113,247,75,-0.03793334279169066],[113,247,76,-0.030607583394974484],[113,247,77,-0.019288941306613364],[113,247,78,-0.0018688098858021113],[113,247,79,0.012915760622803127],[113,248,64,-0.1693084336412382],[113,248,65,-0.15720480017114857],[113,248,66,-0.14533782057606554],[113,248,67,-0.1341713178067613],[113,248,68,-0.11800087479901623],[113,248,69,-0.10911948002060975],[113,248,70,-0.0994710055179987],[113,248,71,-0.08601188284658362],[113,248,72,-0.07209547119113596],[113,248,73,-0.05943230916569644],[113,248,74,-0.04583944812040314],[113,248,75,-0.0367731132140966],[113,248,76,-0.029957654406496448],[113,248,77,-0.01995273223723234],[113,248,78,-0.0037926906733590643],[113,248,79,0.008742990021715122],[113,249,64,-0.15845836600836177],[113,249,65,-0.1475438705771337],[113,249,66,-0.13673097236505505],[113,249,67,-0.12358636226979558],[113,249,68,-0.11121672662335845],[113,249,69,-0.09951350697620394],[113,249,70,-0.08999275140368529],[113,249,71,-0.07625944556154429],[113,249,72,-0.06153696225805785],[113,249,73,-0.04958930068324814],[113,249,74,-0.0369573628662202],[113,249,75,-0.026199039274483943],[113,249,76,-0.021088850610396656],[113,249,77,-0.01678753645011588],[113,249,78,-0.010487066814024101],[113,249,79,-0.033054748567638854],[113,250,64,-0.15962965820518993],[113,250,65,-0.14787981250471022],[113,250,66,-0.13908585103257487],[113,250,67,-0.12713261302570944],[113,250,68,-0.1144621360932202],[113,250,69,-0.10255485848711143],[113,250,70,-0.09296644113733118],[113,250,71,-0.07747010972326325],[113,250,72,-0.06381227049990157],[113,250,73,-0.05243813546639927],[113,250,74,-0.04181489627701865],[113,250,75,-0.0304523512960978],[113,250,76,-0.02617460480606451],[113,250,77,-0.02026064180003733],[113,250,78,-0.0226292745138855],[113,250,79,-0.0596528377717746],[113,251,64,-0.15829552337937433],[113,251,65,-0.14654177166476795],[113,251,66,-0.13827399522234676],[113,251,67,-0.12789228612423825],[113,251,68,-0.1154350960511325],[113,251,69,-0.10344650469664024],[113,251,70,-0.09032891585173675],[113,251,71,-0.07656159933972269],[113,251,72,-0.06625823716217648],[113,251,73,-0.05545331328640768],[113,251,74,-0.044591712147528884],[113,251,75,-0.03376584750021123],[113,251,76,-0.028119161867821242],[113,251,77,-0.02235582632791023],[113,251,78,-0.024500817037077183],[113,251,79,-0.06548723530305836],[113,252,64,-0.155391822005582],[113,252,65,-0.1391271947601305],[113,252,66,-0.12788559388449516],[113,252,67,-0.11813708428597003],[113,252,68,-0.10220798624814106],[113,252,69,-0.0876417811368661],[113,252,70,-0.07368808541000857],[113,252,71,-0.06174230732142627],[113,252,72,-0.050274082944297416],[113,252,73,-0.04173453746801227],[113,252,74,-0.026940571474592848],[113,252,75,-0.01813575079386299],[113,252,76,-0.012564466417580036],[113,252,77,-0.00853551417193573],[113,252,78,-0.015025253361358806],[113,252,79,-0.06267715527988149],[113,253,64,-0.16758276204571482],[113,253,65,-0.15018356745691447],[113,253,66,-0.1350844237133435],[113,253,67,-0.12459442729404524],[113,253,68,-0.11102461489169574],[113,253,69,-0.09688759072834385],[113,253,70,-0.08266464175800484],[113,253,71,-0.07157546359645126],[113,253,72,-0.06130783301133004],[113,253,73,-0.05224650205016283],[113,253,74,-0.03924314420778443],[113,253,75,-0.029837515269934903],[113,253,76,-0.021317785205452848],[113,253,77,-0.012869004561200811],[113,253,78,-0.02297549069700138],[113,253,79,-0.06346943437550798],[113,254,64,-0.0853772532539045],[113,254,65,-0.07699098861141987],[113,254,66,-0.06614450556136424],[113,254,67,-0.06037700649573771],[113,254,68,-0.05593008403904086],[113,254,69,-0.0522403005480336],[113,254,70,-0.046947655766353215],[113,254,71,-0.04222568876404541],[113,254,72,-0.03891897780443334],[113,254,73,-0.03902937576765965],[113,254,74,-0.03697603924755076],[113,254,75,-0.03936946632562699],[113,254,76,-0.040090162262242615],[113,254,77,-0.041139339940875375],[113,254,78,-0.051848739407765326],[113,254,79,-0.08757009869651788],[113,255,64,-0.08333438527583648],[113,255,65,-0.07533608875336667],[113,255,66,-0.0632059884751699],[113,255,67,-0.057423381929344444],[113,255,68,-0.05517776648164362],[113,255,69,-0.05118411289668171],[113,255,70,-0.04650945220987826],[113,255,71,-0.04279212337430192],[113,255,72,-0.04034413741501002],[113,255,73,-0.03773066490748225],[113,255,74,-0.03601470790142931],[113,255,75,-0.03866861329855121],[113,255,76,-0.03994833868931119],[113,255,77,-0.0390370418352151],[113,255,78,-0.04568141619638051],[113,255,79,-0.08794728963863238],[113,256,64,-0.08186708853422844],[113,256,65,-0.07137484715284365],[113,256,66,-0.061183138881138854],[113,256,67,-0.05429235679345261],[113,256,68,-0.052522540013239985],[113,256,69,-0.04931289813329941],[113,256,70,-0.046354484017120993],[113,256,71,-0.04285320624765758],[113,256,72,-0.03754931733365519],[113,256,73,-0.035795329349488675],[113,256,74,-0.03608391989310136],[113,256,75,-0.03709848193544738],[113,256,76,-0.03881676476638874],[113,256,77,-0.038325092394693325],[113,256,78,-0.04423496295741901],[113,256,79,-0.09745293863762863],[113,257,64,-0.07847252505372358],[113,257,65,-0.06883507150197204],[113,257,66,-0.05915039405873284],[113,257,67,-0.05337999102331977],[113,257,68,-0.04957237939364829],[113,257,69,-0.04678900843112274],[113,257,70,-0.043554780889420594],[113,257,71,-0.039093112856804876],[113,257,72,-0.0347904335293885],[113,257,73,-0.03378861087344014],[113,257,74,-0.03514436121167983],[113,257,75,-0.034670168025315244],[113,257,76,-0.03638492758257621],[113,257,77,-0.03825506967266194],[113,257,78,-0.07040801972976163],[113,257,79,-0.13295534559637745],[113,258,64,-0.07422182801843713],[113,258,65,-0.06715246404231598],[113,258,66,-0.06003818399498068],[113,258,67,-0.05522278155558044],[113,258,68,-0.0515100163166674],[113,258,69,-0.04689736531242125],[113,258,70,-0.04220256885751763],[113,258,71,-0.037790816083917406],[113,258,72,-0.035817113066942866],[113,258,73,-0.035199712638946556],[113,258,74,-0.0339330360485784],[113,258,75,-0.03305452050797262],[113,258,76,-0.03435801741952975],[113,258,77,-0.037383711421122554],[113,258,78,-0.07366099323939805],[113,258,79,-0.13307215153172125],[113,259,64,-0.07187453696746536],[113,259,65,-0.06278758294785299],[113,259,66,-0.058344927760772824],[113,259,67,-0.055013421590481906],[113,259,68,-0.05008509639444313],[113,259,69,-0.04545429117220229],[113,259,70,-0.040398583564703994],[113,259,71,-0.03263077094804342],[113,259,72,-0.0342965907054732],[113,259,73,-0.03593348144110409],[113,259,74,-0.03407088965173513],[113,259,75,-0.030083056608177262],[113,259,76,-0.03378107599782422],[113,259,77,-0.03632118536697276],[113,259,78,-0.06189180860771071],[113,259,79,-0.13409297764277767],[113,260,64,-0.106587137822861],[113,260,65,-0.09946099871025905],[113,260,66,-0.09917887514331261],[113,260,67,-0.10094632692192396],[113,260,68,-0.09851995007972161],[113,260,69,-0.09856610975225881],[113,260,70,-0.09575168626214306],[113,260,71,-0.08936904183270628],[113,260,72,-0.090455743043419],[113,260,73,-0.09326875761446797],[113,260,74,-0.09134487990880366],[113,260,75,-0.08723004016864608],[113,260,76,-0.08874896207029803],[113,260,77,-0.08861845612457325],[113,260,78,-0.1047284989516798],[113,260,79,-0.14987376321238932],[113,261,64,-0.09919507815921376],[113,261,65,-0.09430228848330786],[113,261,66,-0.09786736632534229],[113,261,67,-0.10094379564426595],[113,261,68,-0.10127374549952715],[113,261,69,-0.103374356043049],[113,261,70,-0.10137753405414002],[113,261,71,-0.0922147123302577],[113,261,72,-0.08600268789340595],[113,261,73,-0.08456801665736323],[113,261,74,-0.08044967329062687],[113,261,75,-0.07585725765192207],[113,261,76,-0.08031318510852122],[113,261,77,-0.08869779446983139],[113,261,78,-0.1062068458935172],[113,261,79,-0.15197813832830637],[113,262,64,-0.10568029729620074],[113,262,65,-0.10094203977924915],[113,262,66,-0.10165023311927622],[113,262,67,-0.1030820302829337],[113,262,68,-0.10076300289316838],[113,262,69,-0.10428634794042407],[113,262,70,-0.10325998004116507],[113,262,71,-0.0946591224266879],[113,262,72,-0.0871354075501383],[113,262,73,-0.08502347328660488],[113,262,74,-0.08043529139720401],[113,262,75,-0.07572525206850311],[113,262,76,-0.07937754323078053],[113,262,77,-0.08530657681388668],[113,262,78,-0.11794324147591105],[113,262,79,-0.17358636390646676],[113,263,64,-0.10227884905640067],[113,263,65,-0.10093926949803733],[113,263,66,-0.0982621573362678],[113,263,67,-0.09729139425150543],[113,263,68,-0.09591352471683892],[113,263,69,-0.10108769288781583],[113,263,70,-0.10086541968188656],[113,263,71,-0.09179900169742203],[113,263,72,-0.08734608132397692],[113,263,73,-0.08405407319614502],[113,263,74,-0.08154184795315993],[113,263,75,-0.07909408571717629],[113,263,76,-0.08106139990676117],[113,263,77,-0.08447212610910808],[113,263,78,-0.1136411805299315],[113,263,79,-0.17333525027418312],[113,264,64,-0.09906015962535145],[113,264,65,-0.09625462845052193],[113,264,66,-0.09234790379117867],[113,264,67,-0.09071849263069137],[113,264,68,-0.09147690386667343],[113,264,69,-0.0944576665522514],[113,264,70,-0.09754365805594423],[113,264,71,-0.09065107757068955],[113,264,72,-0.08483186967539552],[113,264,73,-0.08365396814323804],[113,264,74,-0.0802688586494121],[113,264,75,-0.08055090784955377],[113,264,76,-0.0818701321455505],[113,264,77,-0.08222364934287253],[113,264,78,-0.11945614292295997],[113,264,79,-0.17962064959286667],[113,265,64,-0.10120195736135673],[113,265,65,-0.09438986805372633],[113,265,66,-0.08471481940283575],[113,265,67,-0.08015496975858644],[113,265,68,-0.08119180012200475],[113,265,69,-0.08116174191370477],[113,265,70,-0.08662728863140788],[113,265,71,-0.08846255467058747],[113,265,72,-0.0899556463124205],[113,265,73,-0.09094045005509037],[113,265,74,-0.08951816746655455],[113,265,75,-0.12700358081524374],[113,265,76,-0.15674658995641466],[113,265,77,-0.18162874218965847],[113,265,78,-0.2042957654282957],[113,265,79,-0.1877719854151828],[113,266,64,-0.10060677724841251],[113,266,65,-0.095382774643587],[113,266,66,-0.08469654470273602],[113,266,67,-0.07900680963673416],[113,266,68,-0.08136519414646964],[113,266,69,-0.08064063802297841],[113,266,70,-0.08444785929736391],[113,266,71,-0.08917797120037098],[113,266,72,-0.09152520230360606],[113,266,73,-0.09296608225340855],[113,266,74,-0.0921584255671486],[113,266,75,-0.1172821561617528],[113,266,76,-0.14710029129673233],[113,266,77,-0.18413322187871323],[113,266,78,-0.20176883467164958],[113,266,79,-0.18455401093794738],[113,267,64,-0.09812267489528687],[113,267,65,-0.0915252131745513],[113,267,66,-0.08109499997318617],[113,267,67,-0.07596078800137904],[113,267,68,-0.0780825907330982],[113,267,69,-0.07703144155975654],[113,267,70,-0.07787570499227953],[113,267,71,-0.08545024385555279],[113,267,72,-0.09125007183600753],[113,267,73,-0.09027048274685404],[113,267,74,-0.09175767347686378],[113,267,75,-0.12150564084583027],[113,267,76,-0.15391234425254094],[113,267,77,-0.19517181862103486],[113,267,78,-0.20673878945596608],[113,267,79,-0.1882824925639015],[113,268,64,-0.09180821488473448],[113,268,65,-0.08249187738112623],[113,268,66,-0.06820361081083016],[113,268,67,-0.06216672827718898],[113,268,68,-0.06356096871800268],[113,268,69,-0.061601146469492524],[113,268,70,-0.05978036236314168],[113,268,71,-0.06516201312805528],[113,268,72,-0.07316916095030702],[113,268,73,-0.07009246366181002],[113,268,74,-0.07627165212111313],[113,268,75,-0.1283693035445853],[113,268,76,-0.16043790311503642],[113,268,77,-0.19867178471082889],[113,268,78,-0.18444500146359616],[113,268,79,-0.16719830124139745],[113,269,64,-0.08761352775116665],[113,269,65,-0.0762752772201709],[113,269,66,-0.06534443697278014],[113,269,67,-0.06203857653132584],[113,269,68,-0.06284953278767727],[113,269,69,-0.061216912653865224],[113,269,70,-0.057008371348510195],[113,269,71,-0.061655541749728635],[113,269,72,-0.06852650948486745],[113,269,73,-0.07125716089222589],[113,269,74,-0.07799690003627474],[113,269,75,-0.13436403270162955],[113,269,76,-0.16791741179861702],[113,269,77,-0.19625235186149342],[113,269,78,-0.18257064777039442],[113,269,79,-0.16479505699751287],[113,270,64,-0.0885077628907858],[113,270,65,-0.07543073377879916],[113,270,66,-0.06794521924642935],[113,270,67,-0.06458227805800497],[113,270,68,-0.06606073931923181],[113,270,69,-0.06304311227823758],[113,270,70,-0.05549902038222572],[113,270,71,-0.058594766589802866],[113,270,72,-0.06741946551566896],[113,270,73,-0.07070689649819306],[113,270,74,-0.08573890995826358],[113,270,75,-0.1383351295020497],[113,270,76,-0.1674758956843648],[113,270,77,-0.1861783994464523],[113,270,78,-0.1742194728901627],[113,270,79,-0.15951422596487239],[113,271,64,-0.08260691196643681],[113,271,65,-0.0720447162469393],[113,271,66,-0.06455132745519768],[113,271,67,-0.06439826387033896],[113,271,68,-0.06390237071538503],[113,271,69,-0.0605289599244014],[113,271,70,-0.05219007512663443],[113,271,71,-0.054763669339342465],[113,271,72,-0.06324584309507453],[113,271,73,-0.06715097899853695],[113,271,74,-0.08303173130899703],[113,271,75,-0.13794056574109548],[113,271,76,-0.1625138415098371],[113,271,77,-0.17984727415876467],[113,271,78,-0.16797649227086708],[113,271,79,-0.15434642845833868],[113,272,64,-0.07740283925256981],[113,272,65,-0.06894978612762018],[113,272,66,-0.06181924322825775],[113,272,67,-0.06209276002269177],[113,272,68,-0.061000139758863585],[113,272,69,-0.05827960059531432],[113,272,70,-0.05090169132966153],[113,272,71,-0.053014824259545526],[113,272,72,-0.05856264969924],[113,272,73,-0.062243499397180706],[113,272,74,-0.08419561976289075],[113,272,75,-0.14261173090882379],[113,272,76,-0.17007426748771165],[113,272,77,-0.17931110517149895],[113,272,78,-0.1645653185773807],[113,272,79,-0.15211222115144918],[113,273,64,-0.08027895791720238],[113,273,65,-0.06880929621307671],[113,273,66,-0.05634834065742496],[113,273,67,-0.05355557658979307],[113,273,68,-0.05123221876401918],[113,273,69,-0.047896005777183025],[113,273,70,-0.04437126623723535],[113,273,71,-0.049705437075674666],[113,273,72,-0.05195141484094262],[113,273,73,-0.054385012879165764],[113,273,74,-0.06608290752360414],[113,273,75,-0.07939561280216809],[113,273,76,-0.07687161311903568],[113,273,77,-0.0707799076284184],[113,273,78,-0.0631045282130773],[113,273,79,-0.05368222275944132],[113,274,64,-0.08102709614692408],[113,274,65,-0.06834534289533516],[113,274,66,-0.05699869709969823],[113,274,67,-0.05238206017723863],[113,274,68,-0.04831573233948462],[113,274,69,-0.04855299376071856],[113,274,70,-0.04608692144396551],[113,274,71,-0.049681353978176426],[113,274,72,-0.05253173147772565],[113,274,73,-0.05207252625415881],[113,274,74,-0.05942942097537123],[113,274,75,-0.07641127631824117],[113,274,76,-0.07190503560909331],[113,274,77,-0.06685585659934859],[113,274,78,-0.06143592072394061],[113,274,79,-0.051901154360455254],[113,275,64,-0.07598596379188453],[113,275,65,-0.06436009776256923],[113,275,66,-0.05522802912628338],[113,275,67,-0.05062043673355454],[113,275,68,-0.04568966977487675],[113,275,69,-0.04598197451928075],[113,275,70,-0.04569641255511025],[113,275,71,-0.04841395123393348],[113,275,72,-0.04905990730524473],[113,275,73,-0.04908731231119007],[113,275,74,-0.058764787916879085],[113,275,75,-0.07822036529562901],[113,275,76,-0.07653418582283464],[113,275,77,-0.071222041878196],[113,275,78,-0.06434911397547327],[113,275,79,-0.05623938417920432],[113,276,64,-0.061982079737894595],[113,276,65,-0.052078692796904136],[113,276,66,-0.0455647704150825],[113,276,67,-0.03844272518896671],[113,276,68,-0.03246236104180263],[113,276,69,-0.03221968595953906],[113,276,70,-0.031348151283460426],[113,276,71,-0.03509402792838154],[113,276,72,-0.03412343208765618],[113,276,73,-0.036703664897463094],[113,276,74,-0.0441243151576442],[113,276,75,-0.07317587419009688],[113,276,76,-0.08139815325220341],[113,276,77,-0.07890698994981005],[113,276,78,-0.06931061633442959],[113,276,79,-0.06074736855306481],[113,277,64,-0.04901840862218533],[113,277,65,-0.04828360538010984],[113,277,66,-0.04658106327896265],[113,277,67,-0.04124647100614057],[113,277,68,-0.039572782255790424],[113,277,69,-0.0371809900373796],[113,277,70,-0.037476375130825246],[113,277,71,-0.03505384030233619],[113,277,72,-0.033740189372777826],[113,277,73,-0.0343086886041586],[113,277,74,-0.04169004213351376],[113,277,75,-0.07198746178990138],[113,277,76,-0.08038513587913615],[113,277,77,-0.07526938222012947],[113,277,78,-0.06626630231390243],[113,277,79,-0.054676505298185796],[113,278,64,-0.04936212334510635],[113,278,65,-0.04941967761276153],[113,278,66,-0.04707765822647738],[113,278,67,-0.043438022803070075],[113,278,68,-0.04114746838964002],[113,278,69,-0.03737363605855999],[113,278,70,-0.03778884598555758],[113,278,71,-0.03213771491126235],[113,278,72,-0.03200835370901595],[113,278,73,-0.03375238901983098],[113,278,74,-0.040005274960035794],[113,278,75,-0.06922575636929013],[113,278,76,-0.07459050186944965],[113,278,77,-0.06794669579506069],[113,278,78,-0.06070861862119026],[113,278,79,-0.0477632203919941],[113,279,64,-0.04256844568636894],[113,279,65,-0.04337954910435658],[113,279,66,-0.04292723627048304],[113,279,67,-0.04358031676480627],[113,279,68,-0.03812206879111196],[113,279,69,-0.03396169278213905],[113,279,70,-0.03403220870065855],[113,279,71,-0.028338324035012824],[113,279,72,-0.02966695627830581],[113,279,73,-0.03214581330706556],[113,279,74,-0.03695939509944401],[113,279,75,-0.06744760270928403],[113,279,76,-0.07103626061607654],[113,279,77,-0.06305905494393121],[113,279,78,-0.05737333318195628],[113,279,79,-0.041868505264090805],[113,280,64,-0.03546932428611348],[113,280,65,-0.03849485770291637],[113,280,66,-0.03749867866246749],[113,280,67,-0.04035354443442471],[113,280,68,-0.035621527671290606],[113,280,69,-0.030692195849526455],[113,280,70,-0.02986763809662306],[113,280,71,-0.027962611373579707],[113,280,72,-0.025278402709694316],[113,280,73,-0.029019110604227086],[113,280,74,-0.03861840955493502],[113,280,75,-0.06586827882470785],[113,280,76,-0.06725951885551185],[113,280,77,-0.05897907561972501],[113,280,78,-0.055778000958170204],[113,280,79,-0.04093872873206794],[113,281,64,-0.03221810726182249],[113,281,65,-0.03410251520284362],[113,281,66,-0.033678875616395085],[113,281,67,-0.036020810946870825],[113,281,68,-0.03276854616595944],[113,281,69,-0.027759677859757963],[113,281,70,-0.02768746556300712],[113,281,71,-0.02485951189927863],[113,281,72,-0.02328863642924986],[113,281,73,-0.025225535331753583],[113,281,74,-0.05187457956444726],[113,281,75,-0.0785654173600542],[113,281,76,-0.07432468618971674],[113,281,77,-0.06600830670842381],[113,281,78,-0.05868925275650211],[113,281,79,-0.047780096041955655],[113,282,64,-0.03182165607879615],[113,282,65,-0.030406135157358072],[113,282,66,-0.03227108453929319],[113,282,67,-0.034314389871054646],[113,282,68,-0.031889587355176295],[113,282,69,-0.02926282372426734],[113,282,70,-0.02660357989206682],[113,282,71,-0.022870734055025287],[113,282,72,-0.022588597297990676],[113,282,73,-0.02432660303579586],[113,282,74,-0.04599025490982636],[113,282,75,-0.0763313730134329],[113,282,76,-0.07496462820249122],[113,282,77,-0.06422436900108533],[113,282,78,-0.05560702913331386],[113,282,79,-0.046425459441443606],[113,283,64,-0.030601579031143432],[113,283,65,-0.024875105436449677],[113,283,66,-0.02850816449472847],[113,283,67,-0.03092120401967767],[113,283,68,-0.029413701042671138],[113,283,69,-0.027818856502603316],[113,283,70,-0.02260649514131117],[113,283,71,-0.020193572595379787],[113,283,72,-0.020498632387700826],[113,283,73,-0.024402812543593333],[113,283,74,-0.058668895634023915],[113,283,75,-0.09172324530848394],[113,283,76,-0.07877591836853254],[113,283,77,-0.07074924436777591],[113,283,78,-0.05942379634582856],[113,283,79,-0.04937143827898499],[113,284,64,-0.04427357233169659],[113,284,65,-0.03496235416289067],[113,284,66,-0.03594435167483804],[113,284,67,-0.034952706306972996],[113,284,68,-0.02841632924099268],[113,284,69,-0.02281245028474907],[113,284,70,-0.018577569999529316],[113,284,71,-0.014766886912476955],[113,284,72,-0.0171551462048653],[113,284,73,-0.020682891971358974],[113,284,74,-0.05447415043533871],[113,284,75,-0.09293156781674308],[113,284,76,-0.0775319464759267],[113,284,77,-0.07192616497150933],[113,284,78,-0.06071711898353477],[113,284,79,-0.04974436221405096],[113,285,64,-0.050881100197080344],[113,285,65,-0.041870358794578164],[113,285,66,-0.040102573806349656],[113,285,67,-0.03860592568325478],[113,285,68,-0.032729142718263694],[113,285,69,-0.02738605614831039],[113,285,70,-0.02542102576591665],[113,285,71,-0.022652284561409206],[113,285,72,-0.0232104529648978],[113,285,73,-0.028731696629882286],[113,285,74,-0.05503093100576686],[113,285,75,-0.08724927992510845],[113,285,76,-0.07699651659022017],[113,285,77,-0.06983369709155549],[113,285,78,-0.05879993398753569],[113,285,79,-0.04546660350679338],[113,286,64,-0.05232896786181136],[113,286,65,-0.04371611261584838],[113,286,66,-0.03842363746430673],[113,286,67,-0.03415428002552059],[113,286,68,-0.03167252341779349],[113,286,69,-0.024628869274946834],[113,286,70,-0.02406586777007523],[113,286,71,-0.022288085117922768],[113,286,72,-0.021895613155931394],[113,286,73,-0.02428421450454523],[113,286,74,-0.048496185284932436],[113,286,75,-0.08377822527599985],[113,286,76,-0.07773749894602666],[113,286,77,-0.06993271484648816],[113,286,78,-0.06063280642457275],[113,286,79,-0.04693628199198713],[113,287,64,-0.04901702873406532],[113,287,65,-0.041184774726468205],[113,287,66,-0.03223456368155824],[113,287,67,-0.027846839507138788],[113,287,68,-0.02592484095521195],[113,287,69,-0.023019675011206914],[113,287,70,-0.025076284279133894],[113,287,71,-0.02280668817453088],[113,287,72,-0.020106268701501],[113,287,73,-0.02262245275519599],[113,287,74,-0.0391067170999031],[113,287,75,-0.07413696571711834],[113,287,76,-0.07675618457356692],[113,287,77,-0.06577723468594368],[113,287,78,-0.05689036418437343],[113,287,79,-0.044217739416702734],[113,288,64,-0.04360100402676675],[113,288,65,-0.03734827991404635],[113,288,66,-0.029937631062952455],[113,288,67,-0.025185004582687943],[113,288,68,-0.019653920001792877],[113,288,69,-0.019681749133546006],[113,288,70,-0.023654048302297066],[113,288,71,-0.02200253981118897],[113,288,72,-0.01963526729260079],[113,288,73,-0.021873582050803336],[113,288,74,-0.03290242951537503],[113,288,75,-0.06639873850565],[113,288,76,-0.0742769250366381],[113,288,77,-0.06361026956003976],[113,288,78,-0.05323870088264088],[113,288,79,-0.040876316073189145],[113,289,64,-0.029518314705047052],[113,289,65,-0.02267724038518637],[113,289,66,-0.016740792268236118],[113,289,67,-0.013587394295979174],[113,289,68,-0.006476515791560486],[113,289,69,-0.006570272140559552],[113,289,70,-0.010202595139567228],[113,289,71,-0.008925086530543268],[113,289,72,-0.0070936283645332485],[113,289,73,-0.0115373726727485],[113,289,74,-0.04983932505673865],[113,289,75,-0.09145311532130501],[113,289,76,-0.08153406785298764],[113,289,77,-0.06857850903527368],[113,289,78,-0.05857744044180846],[113,289,79,-0.04407456869830889],[113,290,64,-0.03111653879765721],[113,290,65,-0.02347157558619279],[113,290,66,-0.019869676771237466],[113,290,67,-0.01527660971945441],[113,290,68,-0.006540134181119706],[113,290,69,-0.005542985602337791],[113,290,70,-0.006064386216645179],[113,290,71,-0.0056323511094624745],[113,290,72,-0.005329196053190169],[113,290,73,-0.009149563898032106],[113,290,74,-0.032155681129539676],[113,290,75,-0.08118425556825995],[113,290,76,-0.07734930890420935],[113,290,77,-0.06325159291064725],[113,290,78,-0.053142583922598186],[113,290,79,-0.038199056058002695],[113,291,64,-0.031993815928313594],[113,291,65,-0.022245679225129246],[113,291,66,-0.01804935146540569],[113,291,67,-0.015583518336104302],[113,291,68,-0.006723184725421258],[113,291,69,-0.004975983398614783],[113,291,70,-4.190752290056665E-4],[113,291,71,-4.189006691918129E-5],[113,291,72,9.637897165061388E-4],[113,291,73,-0.004869555277593654],[113,291,74,-0.02387719037389036],[113,291,75,-0.0804302505549139],[113,291,76,-0.0792048484688091],[113,291,77,-0.06638650270725782],[113,291,78,-0.0527543436796469],[113,291,79,-0.03633973237466606],[113,292,64,-0.025511104935776796],[113,292,65,-0.021304305936232254],[113,292,66,-0.021954634572872368],[113,292,67,-0.02418125708410418],[113,292,68,-0.024513241866591463],[113,292,69,-0.023311637787134076],[113,292,70,-0.021368120340638244],[113,292,71,-0.022229751232936606],[113,292,72,-0.022157389177919706],[113,292,73,-0.026996905472078406],[113,292,74,-0.044470328107375154],[113,292,75,-0.07769909567630397],[113,292,76,-0.07484976292180312],[113,292,77,-0.05989116987855961],[113,292,78,-0.04687122718216111],[113,292,79,-0.030861501133908842],[113,293,64,-0.02743344377876425],[113,293,65,-0.023767748435842347],[113,293,66,-0.02352222816268086],[113,293,67,-0.025806490388997502],[113,293,68,-0.02667802456783222],[113,293,69,-0.022901040727187794],[113,293,70,-0.021084724283172547],[113,293,71,-0.020347303756392973],[113,293,72,-0.01794141686663219],[113,293,73,-0.023175793939266755],[113,293,74,-0.040231639703933196],[113,293,75,-0.07566842505208851],[113,293,76,-0.07242289491314535],[113,293,77,-0.05716066883340565],[113,293,78,-0.041787315297909966],[113,293,79,-0.02890428865531286],[113,294,64,-0.028934726103625727],[113,294,65,-0.02782738536679563],[113,294,66,-0.02789974759174988],[113,294,67,-0.026847612236660552],[113,294,68,-0.02543641247509751],[113,294,69,-0.020365353350012938],[113,294,70,-0.018847804692150763],[113,294,71,-0.015375880828745067],[113,294,72,-0.01425161305199503],[113,294,73,-0.01932755550719202],[113,294,74,-0.03550380930110209],[113,294,75,-0.07824841742560235],[113,294,76,-0.07697575674883347],[113,294,77,-0.06185174865866733],[113,294,78,-0.04658017120620153],[113,294,79,-0.031185683862511415],[113,295,64,-0.027815218067293944],[113,295,65,-0.02858861209812369],[113,295,66,-0.029079580102195274],[113,295,67,-0.02746635011769402],[113,295,68,-0.02406671167351386],[113,295,69,-0.019555875485772027],[113,295,70,-0.018604007528188977],[113,295,71,-0.015293809541573056],[113,295,72,-0.014939905830497383],[113,295,73,-0.017934982964239142],[113,295,74,-0.020009076876770754],[113,295,75,-0.028144488179318167],[113,295,76,-0.06565271686533006],[113,295,77,-0.0597497985704388],[113,295,78,-0.042852414351112755],[113,295,79,-0.02848303645306738],[113,296,64,-0.025623530002481847],[113,296,65,-0.02614090950548833],[113,296,66,-0.027113617169529952],[113,296,67,-0.024996977932648594],[113,296,68,-0.021223024749310385],[113,296,69,-0.020164239248235113],[113,296,70,-0.020448130098580257],[113,296,71,-0.017613015543509622],[113,296,72,-0.014556721378746237],[113,296,73,-0.018110794964641984],[113,296,74,-0.01784320423625986],[113,296,75,-0.021874607885089214],[113,296,76,-0.061365615828368796],[113,296,77,-0.056640072074563036],[113,296,78,-0.04148534981164778],[113,296,79,-0.029235374786048457],[113,297,64,-0.028482276933519866],[113,297,65,-0.028295509204555633],[113,297,66,-0.03127280079739161],[113,297,67,-0.032860248095171754],[113,297,68,-0.030570412986199745],[113,297,69,-0.029458451931497376],[113,297,70,-0.027960665066729694],[113,297,71,-0.0215606134736984],[113,297,72,-0.01271067219208899],[113,297,73,-0.009645332520830316],[113,297,74,-0.008520298795619663],[113,297,75,-0.027363511170228293],[113,297,76,-0.07233206683205098],[113,297,77,-0.06192210844469609],[113,297,78,-0.04787781824713297],[113,297,79,-0.03497770389915089],[113,298,64,-0.029012214998292055],[113,298,65,-0.027179944104253707],[113,298,66,-0.030588930806769353],[113,298,67,-0.033486045465449796],[113,298,68,-0.03314897800050184],[113,298,69,-0.02946091331075107],[113,298,70,-0.029875205696409772],[113,298,71,-0.020040345637208842],[113,298,72,-0.010502555190406763],[113,298,73,-0.005094077669798143],[113,298,74,-0.006872188970274182],[113,298,75,-0.02083513389509438],[113,298,76,-0.06195946516152411],[113,298,77,-0.05912229197793595],[113,298,78,-0.04634153830672183],[113,298,79,-0.03157089256181356],[113,299,64,-0.026342510238769143],[113,299,65,-0.024321137561599537],[113,299,66,-0.028145742659958624],[113,299,67,-0.028952925651191383],[113,299,68,-0.027604762721568574],[113,299,69,-0.02668288297861926],[113,299,70,-0.027944796295244503],[113,299,71,-0.017432441119649145],[113,299,72,-0.0073702215842666174],[113,299,73,-0.001348008667221054],[113,299,74,-0.0041740226295096244],[113,299,75,-0.015395706715690209],[113,299,76,-0.06068459872912048],[113,299,77,-0.061393226127015865],[113,299,78,-0.04693846543312438],[113,299,79,-0.031201031661149098],[113,300,64,-0.022320793401571212],[113,300,65,-0.020098098109487775],[113,300,66,-0.019156115610769492],[113,300,67,-0.01511887686389353],[113,300,68,-0.010595166715255885],[113,300,69,-0.008958507185978903],[113,300,70,-0.010827718127344385],[113,300,71,-0.009198220595082608],[113,300,72,-0.005319582721708432],[113,300,73,-0.0039039281647126195],[113,300,74,-0.0063836008639791345],[113,300,75,-0.004725937197913338],[113,300,76,-0.004037195611200486],[113,300,77,-0.006257579650882868],[113,300,78,-0.0183650021487736],[113,300,79,-0.01906670457012814],[113,301,64,-0.022569364930794936],[113,301,65,-0.01963803497690632],[113,301,66,-0.01757892488567621],[113,301,67,-0.011207806117678354],[113,301,68,-0.006573112411974585],[113,301,69,-0.004727479261797271],[113,301,70,-0.0039718098150070685],[113,301,71,-0.0051801481882380596],[113,301,72,-0.00426532055570511],[113,301,73,-0.003548599178896217],[113,301,74,-0.00408801280795551],[113,301,75,-0.004943348296248831],[113,301,76,-0.0026698936155469394],[113,301,77,-0.003424154518962934],[113,301,78,-0.013485929973329626],[113,301,79,-0.01705693099125174],[113,302,64,-0.019030427380416354],[113,302,65,-0.016113525463774217],[113,302,66,-0.014916586885532448],[113,302,67,-0.007046135345908394],[113,302,68,-0.0013005332633546224],[113,302,69,0.0023695238140824665],[113,302,70,0.004024462380979699],[113,302,71,0.002030942211811715],[113,302,72,5.991707605890878E-4],[113,302,73,-1.1446560222647117E-4],[113,302,74,5.646878823760276E-4],[113,302,75,3.1302553990511517E-4],[113,302,76,0.004362746130984224],[113,302,77,0.0038504336482320656],[113,302,78,-0.007981235635478943],[113,302,79,-0.01966880133498594],[113,303,64,-0.01562521274316747],[113,303,65,-0.015636622787308263],[113,303,66,-0.014079369289611524],[113,303,67,-0.006437572096301081],[113,303,68,-0.0011340231056884281],[113,303,69,0.004756316047823908],[113,303,70,0.004112390833709109],[113,303,71,0.0037103894436361223],[113,303,72,0.0019526788416535379],[113,303,73,8.677782079398039E-4],[113,303,74,4.888149035526118E-4],[113,303,75,0.004293624494423401],[113,303,76,0.007633998679079004],[113,303,77,0.005932924152314071],[113,303,78,-0.010400906247466393],[113,303,79,-0.01906258707242222],[113,304,64,-0.014914810570994141],[113,304,65,-0.013333423933589897],[113,304,66,-0.014435913247382665],[113,304,67,-0.005334031874807743],[113,304,68,-7.953996077108422E-4],[113,304,69,0.0063842569997803605],[113,304,70,0.006599807982586622],[113,304,71,0.0039001302660794934],[113,304,72,0.0033703069857032447],[113,304,73,8.387889779015445E-4],[113,304,74,0.0034486291107464068],[113,304,75,0.005671884031344734],[113,304,76,0.010235079416971382],[113,304,77,0.008241639457735546],[113,304,78,-0.006256576700439186],[113,304,79,-0.011454614014559751],[113,305,64,-0.01384480068219178],[113,305,65,-0.012529944974691884],[113,305,66,-0.013010271788171601],[113,305,67,-0.003976308556603733],[113,305,68,-4.3354046279567293E-4],[113,305,69,0.006403801028686831],[113,305,70,0.007713266579920192],[113,305,71,0.004511646055836108],[113,305,72,0.0032729990135903636],[113,305,73,0.00310323803289142],[113,305,74,0.005516632895365706],[113,305,75,0.0076903056424377225],[113,305,76,0.00996603051866296],[113,305,77,0.011369225379880582],[113,305,78,-0.0027118331269155617],[113,305,79,-0.005875701773820116],[113,306,64,-0.015501655392782712],[113,306,65,-0.015623047778091037],[113,306,66,-0.013725498074886044],[113,306,67,-0.005619045253603253],[113,306,68,0.002279387303533012],[113,306,69,0.005669450129717826],[113,306,70,0.005720516776664034],[113,306,71,0.004883759363390208],[113,306,72,0.002711654471916805],[113,306,73,0.0033633878811360762],[113,306,74,0.005006724228950529],[113,306,75,0.007005087402182225],[113,306,76,0.009956137376016777],[113,306,77,0.015620897148111074],[113,306,78,0.0039009614251795596],[113,306,79,-9.333031813296942E-4],[113,307,64,-0.018038881801928572],[113,307,65,-0.014862368628241418],[113,307,66,-0.011044656420771362],[113,307,67,-0.00419985493943055],[113,307,68,0.004398139686502198],[113,307,69,0.005911881516787398],[113,307,70,0.005327209033672051],[113,307,71,0.008711806938092134],[113,307,72,0.006929785357426346],[113,307,73,0.0032936645831950634],[113,307,74,0.004128604258204327],[113,307,75,0.0069342913530166805],[113,307,76,0.011901027485550789],[113,307,77,0.018619263351365198],[113,307,78,0.008969156817165225],[113,307,79,0.0035684801447567263],[113,308,64,-0.014022489959266013],[113,308,65,-0.008003715627571809],[113,308,66,6.450945562198329E-4],[113,308,67,0.008382274073450185],[113,308,68,0.013916386575898276],[113,308,69,0.017239006393676634],[113,308,70,0.019231055067012434],[113,308,71,0.025433308432460097],[113,308,72,0.02329705996727928],[113,308,73,0.019685589707063564],[113,308,74,0.018673006028165046],[113,308,75,0.021674373780879747],[113,308,76,0.026106588077872847],[113,308,77,0.027691829904846782],[113,308,78,0.00669231649692327],[113,308,79,-0.008463832600485402],[113,309,64,-0.01526287551057709],[113,309,65,-0.007703181123562358],[113,309,66,2.0935335497956897E-4],[113,309,67,0.008070807705913605],[113,309,68,0.016802844481609194],[113,309,69,0.019276836729468103],[113,309,70,0.022450803749476764],[113,309,71,0.027536744254400808],[113,309,72,0.026165065998022582],[113,309,73,0.021940309680121256],[113,309,74,0.019425954184463995],[113,309,75,0.022023441863565474],[113,309,76,0.028212570903406745],[113,309,77,0.03453632426808314],[113,309,78,0.025836607385531413],[113,309,79,0.023497889169872922],[113,310,64,-0.0072124202790434105],[113,310,65,-0.002857214137884409],[113,310,66,0.0042900462501920394],[113,310,67,0.012863677209169339],[113,310,68,0.02192757604634009],[113,310,69,0.026482311283157423],[113,310,70,0.0304800799383802],[113,310,71,0.032598375216672915],[113,310,72,0.03281874135982796],[113,310,73,0.031439061556044534],[113,310,74,0.02900461747858854],[113,310,75,0.031154579469079985],[113,310,76,0.03753939699966517],[113,310,77,0.042601789614900624],[113,310,78,0.03308798892217396],[113,310,79,0.028149397166764983],[113,311,64,-0.005221303209314465],[113,311,65,-0.0022254000720742517],[113,311,66,0.0052649000075062485],[113,311,67,0.01371332006357226],[113,311,68,0.024124965968606554],[113,311,69,0.029128032090167122],[113,311,70,0.0335065506594512],[113,311,71,0.03383580245641976],[113,311,72,0.03378739215314615],[113,311,73,0.033524574018947026],[113,311,74,0.03139209096140036],[113,311,75,0.03356566524275936],[113,311,76,0.03957679292410172],[113,311,77,0.03241210790790327],[113,311,78,0.028266156894826554],[113,311,79,0.029735588280345768],[113,312,64,0.0029792077290058117],[113,312,65,0.004934210137793424],[113,312,66,0.009672770520113463],[113,312,67,0.017394199603018287],[113,312,68,0.027852509447064494],[113,312,69,0.034900768266105],[113,312,70,0.038154705125253194],[113,312,71,0.03768957418512549],[113,312,72,0.03743302014282758],[113,312,73,0.0360590195540314],[113,312,74,0.035367296156700354],[113,312,75,0.03721898507770503],[113,312,76,0.043499899597074954],[113,312,77,0.03057210934461797],[113,312,78,0.027065677935344423],[113,312,79,0.03354584966308196],[113,313,64,0.002858205383999099],[113,313,65,0.00452931600094468],[113,313,66,0.00878657909236559],[113,313,67,0.017652998541490952],[113,313,68,0.028320250596604257],[113,313,69,0.037940977149432675],[113,313,70,0.0397442194718277],[113,313,71,0.03951643893921172],[113,313,72,0.0410286456276414],[113,313,73,0.03896354782366082],[113,313,74,0.03650862033047528],[113,313,75,0.04168067763696266],[113,313,76,0.04592468376226368],[113,313,77,0.03696355979770816],[113,313,78,0.033569065100483055],[113,313,79,0.03712798234644102],[113,314,64,0.0030786763559868535],[113,314,65,0.004303292220441915],[113,314,66,0.006999774904280456],[113,314,67,0.016472376091677995],[113,314,68,0.02916769467279473],[113,314,69,0.03518110979088218],[113,314,70,0.037700537380365495],[113,314,71,0.04004102722756843],[113,314,72,0.04238069190280627],[113,314,73,0.04204007980025658],[113,314,74,0.041009479374291835],[113,314,75,0.04404800712561001],[113,314,76,0.04774533838755694],[113,314,77,0.045605527621262146],[113,314,78,0.03960947391615753],[113,314,79,0.041285456879800585],[113,315,64,0.003837220955857326],[113,315,65,0.005010716298999296],[113,315,66,0.005934960635397821],[113,315,67,0.01730161515832411],[113,315,68,0.030032302362354463],[113,315,69,0.03554739121926749],[113,315,70,0.03715670891991399],[113,315,71,0.04266486657840374],[113,315,72,0.044227284099652486],[113,315,73,0.04582547239608582],[113,315,74,0.045897758638193106],[113,315,75,0.04919964127927061],[113,315,76,0.0515840851623955],[113,315,77,0.047067656711522986],[113,315,78,0.041588266400473466],[113,315,79,0.04213093743424035],[113,316,64,-0.003972569657400324],[113,316,65,-7.66959056792832E-5],[113,316,66,0.002260307489946517],[113,316,67,0.014529169980636122],[113,316,68,0.02871022389375545],[113,316,69,0.03672483075393941],[113,316,70,0.03959316479949904],[113,316,71,0.04517641169808716],[113,316,72,0.04924695201983595],[113,316,73,0.04937285932198027],[113,316,74,0.05204962666871299],[113,316,75,0.055237208133976895],[113,316,76,0.059380985333018846],[113,316,77,0.051016136825365474],[113,316,78,0.051671928491524265],[113,316,79,0.059365581258492464],[113,317,64,-0.007573817104531005],[113,317,65,-3.426166676775977E-4],[113,317,66,0.0034164664119937654],[113,317,67,0.014940192870999153],[113,317,68,0.026634514996684122],[113,317,69,0.03514728099203683],[113,317,70,0.04069253659181926],[113,317,71,0.04671320726672404],[113,317,72,0.05139798623496933],[113,317,73,0.051485248401883066],[113,317,74,0.05643557363281901],[113,317,75,0.059532409108564624],[113,317,76,0.06147144881277579],[113,317,77,0.050782472494092054],[113,317,78,0.05097518150360432],[113,317,79,0.05774437130564105],[113,318,64,-0.003853475938323761],[113,318,65,0.005907926671132838],[113,318,66,0.014202540965942048],[113,318,67,0.022334885025100393],[113,318,68,0.03182153446600809],[113,318,69,0.04285114997210829],[113,318,70,0.04795781369243772],[113,318,71,0.05519080118170086],[113,318,72,0.0625359664347741],[113,318,73,0.06373800306037876],[113,318,74,0.06769894176751148],[113,318,75,0.07106364620445628],[113,318,76,0.06893489131805065],[113,318,77,0.058679187351091906],[113,318,78,0.058909808269142834],[113,318,79,0.06532506736075591],[113,319,64,-0.006643942602210837],[113,319,65,0.0036694816687467408],[113,319,66,0.014421261870407862],[113,319,67,0.020835322895557506],[113,319,68,0.03318298105723923],[113,319,69,0.042197363849619265],[113,319,70,0.049114790709222575],[113,319,71,0.054828197794691766],[113,319,72,0.06486927810853017],[113,319,73,0.06901088947197209],[113,319,74,0.07044016478127728],[113,319,75,0.07233424083540096],[113,319,76,0.07095115836652063],[113,319,77,0.05832723986602378],[113,319,78,0.06142622014958668],[113,319,79,0.07124839974416215],[114,-64,64,-0.47575706273829277],[114,-64,65,-0.4759683797668832],[114,-64,66,-0.47759297950892105],[114,-64,67,-0.47561144832096935],[114,-64,68,-0.4645229262271445],[114,-64,69,-0.4537869700622284],[114,-64,70,-0.44286063042380197],[114,-64,71,-0.434501999153201],[114,-64,72,-0.4272747926020646],[114,-64,73,-0.422506843345752],[114,-64,74,-0.4170592747225915],[114,-64,75,-0.4120033108575456],[114,-64,76,-0.40740080534128736],[114,-64,77,-0.40667028818320505],[114,-64,78,-0.4019403889405767],[114,-64,79,-0.39433736008852494],[114,-63,64,-0.4789407374871374],[114,-63,65,-0.48072468712423344],[114,-63,66,-0.47954318034016075],[114,-63,67,-0.47761368038098684],[114,-63,68,-0.4673911643650327],[114,-63,69,-0.45607794879236496],[114,-63,70,-0.4441332934002811],[114,-63,71,-0.43749283446695675],[114,-63,72,-0.42658344264521003],[114,-63,73,-0.4208165505643839],[114,-63,74,-0.41724946665070417],[114,-63,75,-0.4123526325881809],[114,-63,76,-0.40710770709053246],[114,-63,77,-0.4021108388240553],[114,-63,78,-0.39432542883485056],[114,-63,79,-0.3861183426843964],[114,-62,64,-0.477571626424582],[114,-62,65,-0.4793363609485636],[114,-62,66,-0.4775552628040804],[114,-62,67,-0.4755561957536818],[114,-62,68,-0.4669524332659575],[114,-62,69,-0.4567646918921653],[114,-62,70,-0.4426053337780199],[114,-62,71,-0.4351087823899734],[114,-62,72,-0.42605548298738266],[114,-62,73,-0.41983351698725174],[114,-62,74,-0.41598805408536377],[114,-62,75,-0.4109433187585156],[114,-62,76,-0.40525223155647494],[114,-62,77,-0.39965329572132624],[114,-62,78,-0.39232627790873376],[114,-62,79,-0.38617820119083324],[114,-61,64,-0.47952830348329883],[114,-61,65,-0.48018143361145194],[114,-61,66,-0.48032055006929775],[114,-61,67,-0.4814954556415093],[114,-61,68,-0.47198050669058056],[114,-61,69,-0.46237983874698607],[114,-61,70,-0.4460106970605261],[114,-61,71,-0.43688947042989945],[114,-61,72,-0.42834728997791394],[114,-61,73,-0.42281570401150503],[114,-61,74,-0.41822112719496696],[114,-61,75,-0.41165891418926054],[114,-61,76,-0.4057789344944337],[114,-61,77,-0.39959388322048023],[114,-61,78,-0.3919800256857204],[114,-61,79,-0.38655374814329263],[114,-60,64,-0.48118122419677634],[114,-60,65,-0.48234179159113355],[114,-60,66,-0.4854332813869364],[114,-60,67,-0.48463699918784164],[114,-60,68,-0.4765065930578647],[114,-60,69,-0.464246007004813],[114,-60,70,-0.44759470682769353],[114,-60,71,-0.4386934750181727],[114,-60,72,-0.42985757472727226],[114,-60,73,-0.4224880719596211],[114,-60,74,-0.41856729029668927],[114,-60,75,-0.4131609455137014],[114,-60,76,-0.40524009252356624],[114,-60,77,-0.40046995645546385],[114,-60,78,-0.3929221716594218],[114,-60,79,-0.3871494257457927],[114,-59,64,-0.4729790375265859],[114,-59,65,-0.4765338058907025],[114,-59,66,-0.4782097135195279],[114,-59,67,-0.4768952577770697],[114,-59,68,-0.4674760815272344],[114,-59,69,-0.45606563946825474],[114,-59,70,-0.4439230410686962],[114,-59,71,-0.43138868509474293],[114,-59,72,-0.42120937804663805],[114,-59,73,-0.4154433804052418],[114,-59,74,-0.41350879716803635],[114,-59,75,-0.4080309242241921],[114,-59,76,-0.40300964573452847],[114,-59,77,-0.4017446921787329],[114,-59,78,-0.39888209331169433],[114,-59,79,-0.3981293342512464],[114,-58,64,-0.47451785510737865],[114,-58,65,-0.4767330915639097],[114,-58,66,-0.47555357269936444],[114,-58,67,-0.4718294026987526],[114,-58,68,-0.46132937199887397],[114,-58,69,-0.4523265210075379],[114,-58,70,-0.4410464674443029],[114,-58,71,-0.43006283988793115],[114,-58,72,-0.4197042533407306],[114,-58,73,-0.4137216933761214],[114,-58,74,-0.40829116881961386],[114,-58,75,-0.40395124363871676],[114,-58,76,-0.4015761388598746],[114,-58,77,-0.40031262820766617],[114,-58,78,-0.39789767592410824],[114,-58,79,-0.3973761364709583],[114,-57,64,-0.4815353346767373],[114,-57,65,-0.4809549146245268],[114,-57,66,-0.48233479508095967],[114,-57,67,-0.47314961426474644],[114,-57,68,-0.4635827692428895],[114,-57,69,-0.4555727439745441],[114,-57,70,-0.4435415255874815],[114,-57,71,-0.4351971652362327],[114,-57,72,-0.4256927239076871],[114,-57,73,-0.4177987979738907],[114,-57,74,-0.4108512456764029],[114,-57,75,-0.40406249906906866],[114,-57,76,-0.4007388518305059],[114,-57,77,-0.39932321001234516],[114,-57,78,-0.4001093762054211],[114,-57,79,-0.3978460164167349],[114,-56,64,-0.4809736880559744],[114,-56,65,-0.4806007558758305],[114,-56,66,-0.4818264992028982],[114,-56,67,-0.47438474559023264],[114,-56,68,-0.4637391801373612],[114,-56,69,-0.4552985180578195],[114,-56,70,-0.44392007890273855],[114,-56,71,-0.43409479104214344],[114,-56,72,-0.4245432628162975],[114,-56,73,-0.4139292985942532],[114,-56,74,-0.40775142556711064],[114,-56,75,-0.40314693745663843],[114,-56,76,-0.3979299074762479],[114,-56,77,-0.39778228291176054],[114,-56,78,-0.3992306657708165],[114,-56,79,-0.3955771150150782],[114,-55,64,-0.4811575938209103],[114,-55,65,-0.48045406961551795],[114,-55,66,-0.48246958434138154],[114,-55,67,-0.4735311583322038],[114,-55,68,-0.46410247790143566],[114,-55,69,-0.45649745580203915],[114,-55,70,-0.44510503941810514],[114,-55,71,-0.43161734008605884],[114,-55,72,-0.42402622397669537],[114,-55,73,-0.4126204870943895],[114,-55,74,-0.40676443951076213],[114,-55,75,-0.4020327488688078],[114,-55,76,-0.39588577213768894],[114,-55,77,-0.39598125064161444],[114,-55,78,-0.3968513244982812],[114,-55,79,-0.3929743878723765],[114,-54,64,-0.48132518712909345],[114,-54,65,-0.48268446472294924],[114,-54,66,-0.4831730455994332],[114,-54,67,-0.47379906667906996],[114,-54,68,-0.4657269933009648],[114,-54,69,-0.45704789460051076],[114,-54,70,-0.44730407947034156],[114,-54,71,-0.4322358534696499],[114,-54,72,-0.4238176313574702],[114,-54,73,-0.41306347413214123],[114,-54,74,-0.4046431977659582],[114,-54,75,-0.39823082502635077],[114,-54,76,-0.3926465827956502],[114,-54,77,-0.39065065569770896],[114,-54,78,-0.39318380280268506],[114,-54,79,-0.3881381164471999],[114,-53,64,-0.462532673043268],[114,-53,65,-0.4867754552908551],[114,-53,66,-0.4857994173093252],[114,-53,67,-0.4795175267898032],[114,-53,68,-0.46948905012316683],[114,-53,69,-0.4600810530554671],[114,-53,70,-0.4509071467210315],[114,-53,71,-0.4367168330848921],[114,-53,72,-0.4255435216829648],[114,-53,73,-0.4170007532836094],[114,-53,74,-0.4072743512877699],[114,-53,75,-0.4029687799992688],[114,-53,76,-0.3952308024779858],[114,-53,77,-0.391334584334566],[114,-53,78,-0.39093195015824767],[114,-53,79,-0.3895881193296814],[114,-52,64,-0.4278698545578319],[114,-52,65,-0.4845513634783413],[114,-52,66,-0.49173974572239215],[114,-52,67,-0.4861283065113235],[114,-52,68,-0.47301244228515393],[114,-52,69,-0.46167863585045793],[114,-52,70,-0.45305438700103856],[114,-52,71,-0.4404243587754876],[114,-52,72,-0.4288076079166373],[114,-52,73,-0.4210739146407035],[114,-52,74,-0.4126997370151889],[114,-52,75,-0.4068598079792114],[114,-52,76,-0.3976453206802034],[114,-52,77,-0.39393507226873853],[114,-52,78,-0.39189224013186086],[114,-52,79,-0.3896895051469133],[114,-51,64,-0.47073216447408117],[114,-51,65,-0.5115198369498921],[114,-51,66,-0.5094423394014622],[114,-51,67,-0.5032754948017474],[114,-51,68,-0.4900570188683204],[114,-51,69,-0.4765303606139005],[114,-51,70,-0.4669213256059265],[114,-51,71,-0.45510964102886275],[114,-51,72,-0.44380321314391313],[114,-51,73,-0.4388985975468873],[114,-51,74,-0.42981039257375636],[114,-51,75,-0.4206396799742149],[114,-51,76,-0.40894381924262446],[114,-51,77,-0.40140330441557864],[114,-51,78,-0.39041028383273574],[114,-51,79,-0.38058627791850036],[114,-50,64,-0.42404623171563977],[114,-50,65,-0.5077064915503867],[114,-50,66,-0.5073119423891711],[114,-50,67,-0.5007070105699825],[114,-50,68,-0.4892924624624466],[114,-50,69,-0.47828210710592717],[114,-50,70,-0.464628201543657],[114,-50,71,-0.45222158142255675],[114,-50,72,-0.44271197618950764],[114,-50,73,-0.4378848967062985],[114,-50,74,-0.43120355002419797],[114,-50,75,-0.42133224703532124],[114,-50,76,-0.4085328212044366],[114,-50,77,-0.3983907268310426],[114,-50,78,-0.38977305266681517],[114,-50,79,-0.37542312848910087],[114,-49,64,-0.4223160940059819],[114,-49,65,-0.5103392747993556],[114,-49,66,-0.512457072646059],[114,-49,67,-0.5055215600255161],[114,-49,68,-0.49158716074232744],[114,-49,69,-0.48248262524952507],[114,-49,70,-0.4691203097682253],[114,-49,71,-0.45651684235991985],[114,-49,72,-0.4465337012162668],[114,-49,73,-0.4416276954154199],[114,-49,74,-0.4330313742595875],[114,-49,75,-0.42411706217329226],[114,-49,76,-0.41099800988262863],[114,-49,77,-0.40304997985412033],[114,-49,78,-0.39063297070323577],[114,-49,79,-0.37487789085883555],[114,-48,64,-0.40967338127366076],[114,-48,65,-0.508065464256062],[114,-48,66,-0.5073511625366385],[114,-48,67,-0.5017940906095618],[114,-48,68,-0.48747434663272027],[114,-48,69,-0.4783475811078425],[114,-48,70,-0.4661210502835848],[114,-48,71,-0.4526954174027952],[114,-48,72,-0.4449276648981049],[114,-48,73,-0.43979950281005775],[114,-48,74,-0.4300993490509515],[114,-48,75,-0.42159465698530807],[114,-48,76,-0.41007402589686504],[114,-48,77,-0.39975695691750546],[114,-48,78,-0.3870799386144351],[114,-48,79,-0.3713743919023881],[114,-47,64,-0.3982890845788558],[114,-47,65,-0.4837175830948448],[114,-47,66,-0.5011798287085195],[114,-47,67,-0.48899705933639626],[114,-47,68,-0.47518804957147054],[114,-47,69,-0.46106076706891497],[114,-47,70,-0.44961824561465485],[114,-47,71,-0.43715491483462365],[114,-47,72,-0.43065830763048674],[114,-47,73,-0.4243558511516857],[114,-47,74,-0.4176061182389951],[114,-47,75,-0.40888921312363424],[114,-47,76,-0.3979825565396763],[114,-47,77,-0.38945655097902077],[114,-47,78,-0.37959569432786294],[114,-47,79,-0.36707518786095883],[114,-46,64,-0.4225547480511183],[114,-46,65,-0.5060083963544713],[114,-46,66,-0.49822153241363587],[114,-46,67,-0.4860873195083261],[114,-46,68,-0.47085848676020514],[114,-46,69,-0.45627828868932124],[114,-46,70,-0.4451754891879788],[114,-46,71,-0.4335550202677179],[114,-46,72,-0.42606293008264673],[114,-46,73,-0.4182038770273776],[114,-46,74,-0.41270950849513516],[114,-46,75,-0.4032966766824027],[114,-46,76,-0.3923088472939761],[114,-46,77,-0.38515596707581434],[114,-46,78,-0.37718155811370874],[114,-46,79,-0.36498003213724656],[114,-45,64,-0.4037850311227759],[114,-45,65,-0.4942633220640082],[114,-45,66,-0.4984751199362797],[114,-45,67,-0.48650942458665786],[114,-45,68,-0.47290141903826777],[114,-45,69,-0.4580645896075678],[114,-45,70,-0.44556636562602925],[114,-45,71,-0.43432001514918284],[114,-45,72,-0.4240935458244256],[114,-45,73,-0.41846719938686416],[114,-45,74,-0.4118961652491627],[114,-45,75,-0.40083572148308644],[114,-45,76,-0.39248480256359286],[114,-45,77,-0.38422424023745094],[114,-45,78,-0.3770464149241717],[114,-45,79,-0.36558390825240206],[114,-44,64,-0.23664568188470644],[114,-44,65,-0.43826515240164154],[114,-44,66,-0.4605322798599299],[114,-44,67,-0.45201752307414483],[114,-44,68,-0.43858749332475633],[114,-44,69,-0.425974977533254],[114,-44,70,-0.4177748561036646],[114,-44,71,-0.405752659024292],[114,-44,72,-0.39564620757558444],[114,-44,73,-0.39159103723405486],[114,-44,74,-0.3844739790428264],[114,-44,75,-0.3731125314644281],[114,-44,76,-0.3637580799724914],[114,-44,77,-0.3548604395184336],[114,-44,78,-0.3474597167798295],[114,-44,79,-0.33673811254919006],[114,-43,64,-0.2717612257901691],[114,-43,65,-0.44698284721329284],[114,-43,66,-0.4423398856472788],[114,-43,67,-0.4351755870614853],[114,-43,68,-0.42400873401811123],[114,-43,69,-0.41531462479769893],[114,-43,70,-0.40687517532737927],[114,-43,71,-0.3993726252932337],[114,-43,72,-0.3885129238917283],[114,-43,73,-0.38353713323732863],[114,-43,74,-0.37507794150903684],[114,-43,75,-0.36340766181853157],[114,-43,76,-0.3546373971512109],[114,-43,77,-0.34732096411255814],[114,-43,78,-0.3394325276140478],[114,-43,79,-0.3292670733784056],[114,-42,64,-0.22095950104075282],[114,-42,65,-0.40074774748051545],[114,-42,66,-0.4319062345388569],[114,-42,67,-0.42745621308692405],[114,-42,68,-0.41686744518359786],[114,-42,69,-0.4091572707786572],[114,-42,70,-0.40476374228845846],[114,-42,71,-0.398676882929291],[114,-42,72,-0.3888230415151669],[114,-42,73,-0.37995665900886527],[114,-42,74,-0.3740254048732829],[114,-42,75,-0.3610848440571164],[114,-42,76,-0.35263312575749606],[114,-42,77,-0.34283092909943524],[114,-42,78,-0.334398107994486],[114,-42,79,-0.328322970758255],[114,-41,64,-0.1295343920702709],[114,-41,65,-0.36087798043566],[114,-41,66,-0.43152645139849255],[114,-41,67,-0.42838622716854824],[114,-41,68,-0.4219892572078753],[114,-41,69,-0.41559984166503655],[114,-41,70,-0.40945205150812813],[114,-41,71,-0.40124746111531673],[114,-41,72,-0.39153314169948644],[114,-41,73,-0.3828033366125445],[114,-41,74,-0.376543538893639],[114,-41,75,-0.36403765029382257],[114,-41,76,-0.35326171890738384],[114,-41,77,-0.34537439805999637],[114,-41,78,-0.3366462591106068],[114,-41,79,-0.32600640809323467],[114,-40,64,-0.10930112987956059],[114,-40,65,-0.3067272145645624],[114,-40,66,-0.4237303382282101],[114,-40,67,-0.42329477561665196],[114,-40,68,-0.419076606789093],[114,-40,69,-0.4130128496452292],[114,-40,70,-0.40770955112595963],[114,-40,71,-0.39770091934900675],[114,-40,72,-0.39069324599148697],[114,-40,73,-0.38188747414826013],[114,-40,74,-0.3734545511919902],[114,-40,75,-0.3634354752352375],[114,-40,76,-0.3541419788569875],[114,-40,77,-0.3440742016575398],[114,-40,78,-0.33198549639484],[114,-40,79,-0.3215132273614123],[114,-39,64,-0.07308698560975763],[114,-39,65,-0.23643763769780124],[114,-39,66,-0.41590303756357005],[114,-39,67,-0.4196896329634863],[114,-39,68,-0.41598754203523697],[114,-39,69,-0.41387183392423416],[114,-39,70,-0.40612892607057655],[114,-39,71,-0.3952473484609807],[114,-39,72,-0.3868415510752248],[114,-39,73,-0.37590288174086356],[114,-39,74,-0.36623579058818895],[114,-39,75,-0.35814911557779217],[114,-39,76,-0.3482912686475599],[114,-39,77,-0.33506957905615686],[114,-39,78,-0.3215864228772052],[114,-39,79,-0.3063730064294857],[114,-38,64,-0.025055382805215243],[114,-38,65,-0.17632165461116855],[114,-38,66,-0.397137575140608],[114,-38,67,-0.41288895592792857],[114,-38,68,-0.41355004776448545],[114,-38,69,-0.40872179523516206],[114,-38,70,-0.40151472647889974],[114,-38,71,-0.39172284066130436],[114,-38,72,-0.3848209249192636],[114,-38,73,-0.3720303278025321],[114,-38,74,-0.36262414188933734],[114,-38,75,-0.3555239960317948],[114,-38,76,-0.34395752141681424],[114,-38,77,-0.3341187720410057],[114,-38,78,-0.31699648047819945],[114,-38,79,-0.30283967989552685],[114,-37,64,0.01962416415025381],[114,-37,65,-0.13297566270604622],[114,-37,66,-0.3412224927028432],[114,-37,67,-0.4106666123535164],[114,-37,68,-0.41444236169833437],[114,-37,69,-0.41030864992761995],[114,-37,70,-0.4037976492381446],[114,-37,71,-0.3938581417420761],[114,-37,72,-0.3852569148454382],[114,-37,73,-0.37170844738803177],[114,-37,74,-0.3627310975609352],[114,-37,75,-0.3562833407270104],[114,-37,76,-0.3450341897396995],[114,-37,77,-0.33540346056502623],[114,-37,78,-0.31811573552124445],[114,-37,79,-0.3043523208182677],[114,-36,64,0.05527725191175159],[114,-36,65,-0.11406027167444721],[114,-36,66,-0.3264384095197743],[114,-36,67,-0.41130577621355896],[114,-36,68,-0.4161777629454329],[114,-36,69,-0.41306950740488146],[114,-36,70,-0.4074167047072128],[114,-36,71,-0.39515517859620863],[114,-36,72,-0.38626595739666963],[114,-36,73,-0.37309781457108515],[114,-36,74,-0.36487355750730627],[114,-36,75,-0.35729150724880865],[114,-36,76,-0.3469006255508139],[114,-36,77,-0.33554145414336667],[114,-36,78,-0.3220224577325322],[114,-36,79,-0.30697951929494754],[114,-35,64,-0.0340138646492702],[114,-35,65,-0.05101516564413794],[114,-35,66,-0.1183095371816914],[114,-35,67,-0.23518105069513215],[114,-35,68,-0.3748130161282567],[114,-35,69,-0.4056186891507238],[114,-35,70,-0.4008248618667092],[114,-35,71,-0.39381497597179943],[114,-35,72,-0.38558722797425654],[114,-35,73,-0.3801608846091378],[114,-35,74,-0.37097723507764685],[114,-35,75,-0.36564050138234605],[114,-35,76,-0.3538670419441038],[114,-35,77,-0.3403392500272151],[114,-35,78,-0.3241254434173909],[114,-35,79,-0.3089412767758043],[114,-34,64,-0.02296999483739176],[114,-34,65,-0.023494712788047323],[114,-34,66,-0.0877354923635455],[114,-34,67,-0.21398001206173592],[114,-34,68,-0.3351146043929599],[114,-34,69,-0.4006378144233901],[114,-34,70,-0.39656897032743527],[114,-34,71,-0.3906466650702297],[114,-34,72,-0.38338646843786495],[114,-34,73,-0.38001201703852105],[114,-34,74,-0.371669055282147],[114,-34,75,-0.36597488324085237],[114,-34,76,-0.35466534403978145],[114,-34,77,-0.3407110435074314],[114,-34,78,-0.3243867066264038],[114,-34,79,-0.3071408785275501],[114,-33,64,0.007581003721303103],[114,-33,65,0.026297756457103694],[114,-33,66,-0.02048917394600125],[114,-33,67,-0.15396567823315113],[114,-33,68,-0.23059898283490496],[114,-33,69,-0.3250487628754425],[114,-33,70,-0.32376372165195044],[114,-33,71,-0.32340031684335974],[114,-33,72,-0.31890039428234584],[114,-33,73,-0.3220376598711629],[114,-33,74,-0.32068484972162337],[114,-33,75,-0.31833448175451295],[114,-33,76,-0.31286643706419903],[114,-33,77,-0.3055453842127608],[114,-33,78,-0.29333013635431776],[114,-33,79,-0.27913640418665653],[114,-32,64,0.02042371726656017],[114,-32,65,0.026186663138327793],[114,-32,66,-0.009202815231663053],[114,-32,67,-0.14084152527081045],[114,-32,68,-0.23121413362017892],[114,-32,69,-0.3204402387360027],[114,-32,70,-0.3213491255341699],[114,-32,71,-0.31742811001568594],[114,-32,72,-0.31657545037136176],[114,-32,73,-0.3184501407520054],[114,-32,74,-0.316379254132063],[114,-32,75,-0.31330057338744305],[114,-32,76,-0.31187910362218874],[114,-32,77,-0.3027883538505396],[114,-32,78,-0.2919436466832884],[114,-32,79,-0.281102212030124],[114,-31,64,0.05451948799762624],[114,-31,65,0.05637734787914134],[114,-31,66,-0.032910461951020376],[114,-31,67,-0.20563304051683662],[114,-31,68,-0.31104268315292133],[114,-31,69,-0.31694244689350415],[114,-31,70,-0.31707925592524466],[114,-31,71,-0.3124540835037203],[114,-31,72,-0.3134979896973723],[114,-31,73,-0.3138768535013172],[114,-31,74,-0.3131803511191251],[114,-31,75,-0.30991049508750346],[114,-31,76,-0.30955866906293605],[114,-31,77,-0.3028247242767836],[114,-31,78,-0.290480681029054],[114,-31,79,-0.28008281865438456],[114,-30,64,0.06749449728345902],[114,-30,65,0.11005699331493318],[114,-30,66,0.0020817238150804274],[114,-30,67,-0.19962261102248652],[114,-30,68,-0.2811911834213312],[114,-30,69,-0.3113163032074517],[114,-30,70,-0.31251758163520615],[114,-30,71,-0.31017181207079764],[114,-30,72,-0.30904879392739193],[114,-30,73,-0.3075054147826992],[114,-30,74,-0.30726362297119925],[114,-30,75,-0.30637725983738107],[114,-30,76,-0.3064483996027433],[114,-30,77,-0.30253528075693514],[114,-30,78,-0.2880074494095891],[114,-30,79,-0.27571400505354465],[114,-29,64,0.10632867830601495],[114,-29,65,0.12677437968960567],[114,-29,66,0.0524940756174298],[114,-29,67,-0.16658118525372081],[114,-29,68,-0.24591097169517556],[114,-29,69,-0.3138342513460882],[114,-29,70,-0.31307861208634186],[114,-29,71,-0.3111224893926806],[114,-29,72,-0.3110755087856747],[114,-29,73,-0.3057890436013271],[114,-29,74,-0.3059329724662939],[114,-29,75,-0.3070747696835084],[114,-29,76,-0.3077112889350746],[114,-29,77,-0.3034901949929856],[114,-29,78,-0.29042061468496205],[114,-29,79,-0.2787663108689229],[114,-28,64,0.0877293310702415],[114,-28,65,0.11919045135991885],[114,-28,66,0.05106854059938415],[114,-28,67,-0.1518863885138576],[114,-28,68,-0.26424819383067855],[114,-28,69,-0.3133942492570185],[114,-28,70,-0.3137047794460027],[114,-28,71,-0.3133931570713056],[114,-28,72,-0.31131988451404596],[114,-28,73,-0.30516727471973054],[114,-28,74,-0.30711651632344905],[114,-28,75,-0.3092070103471233],[114,-28,76,-0.3089731455253069],[114,-28,77,-0.3066278909187681],[114,-28,78,-0.29444634267991904],[114,-28,79,-0.28235877504287293],[114,-27,64,0.1252992169340405],[114,-27,65,0.12791606466630553],[114,-27,66,0.008740387927321847],[114,-27,67,-0.20669567736577316],[114,-27,68,-0.3080169395377764],[114,-27,69,-0.30987830858467713],[114,-27,70,-0.30612182473476296],[114,-27,71,-0.30145816657660635],[114,-27,72,-0.290876553481224],[114,-27,73,-0.28342246104455837],[114,-27,74,-0.2831431429752873],[114,-27,75,-0.2882429152164512],[114,-27,76,-0.29192353186812253],[114,-27,77,-0.2955589361231841],[114,-27,78,-0.294403928966733],[114,-27,79,-0.2877495968732177],[114,-26,64,0.17718433679933668],[114,-26,65,0.17864728622450823],[114,-26,66,0.04530423262437988],[114,-26,67,-0.17876854182735158],[114,-26,68,-0.3052196869084237],[114,-26,69,-0.3054070412000974],[114,-26,70,-0.29982479913479],[114,-26,71,-0.2949247883649923],[114,-26,72,-0.2848708833233791],[114,-26,73,-0.2808222106791976],[114,-26,74,-0.2782435075043341],[114,-26,75,-0.2849891565344527],[114,-26,76,-0.28876950686691466],[114,-26,77,-0.29150324365593394],[114,-26,78,-0.29204822280970494],[114,-26,79,-0.28782058520013865],[114,-25,64,0.17753302224209158],[114,-25,65,0.15214356635655318],[114,-25,66,0.04312430045019583],[114,-25,67,-0.16347834166929218],[114,-25,68,-0.30742642611512794],[114,-25,69,-0.3072680145956793],[114,-25,70,-0.3009273826685164],[114,-25,71,-0.29301749345607225],[114,-25,72,-0.2840444749542726],[114,-25,73,-0.28185543231589305],[114,-25,74,-0.28131145582694556],[114,-25,75,-0.28658513519817774],[114,-25,76,-0.2899635311208752],[114,-25,77,-0.2933574753997103],[114,-25,78,-0.2927485139650316],[114,-25,79,-0.2868228627953426],[114,-24,64,0.17753875801490526],[114,-24,65,0.09032051957676734],[114,-24,66,0.0035734570220307127],[114,-24,67,-0.19186495881969126],[114,-24,68,-0.30175503798007225],[114,-24,69,-0.3010286948036372],[114,-24,70,-0.2941434017476702],[114,-24,71,-0.28400646084312614],[114,-24,72,-0.27882782110153403],[114,-24,73,-0.2788301397919446],[114,-24,74,-0.2788412139747771],[114,-24,75,-0.28451722792586875],[114,-24,76,-0.28647293723662415],[114,-24,77,-0.29172342342350943],[114,-24,78,-0.29063941108821734],[114,-24,79,-0.2853890316619892],[114,-23,64,0.09779523223385861],[114,-23,65,0.016485082779460203],[114,-23,66,-0.05996632017841158],[114,-23,67,-0.2057739427081854],[114,-23,68,-0.28369793842521474],[114,-23,69,-0.28623314498910757],[114,-23,70,-0.2815053820164196],[114,-23,71,-0.27812537214290556],[114,-23,72,-0.27976911813464794],[114,-23,73,-0.28281298675387745],[114,-23,74,-0.2867691805586525],[114,-23,75,-0.29133351321080625],[114,-23,76,-0.2907924136073537],[114,-23,77,-0.2916566858350739],[114,-23,78,-0.2826727247415051],[114,-23,79,-0.2730654615306878],[114,-22,64,0.07669395856496353],[114,-22,65,-0.0071438135196471575],[114,-22,66,-0.08882811799299623],[114,-22,67,-0.2182905136385101],[114,-22,68,-0.2755544317611526],[114,-22,69,-0.27850228238765606],[114,-22,70,-0.2752406480787627],[114,-22,71,-0.27333772986300275],[114,-22,72,-0.275703105124754],[114,-22,73,-0.2790353141637296],[114,-22,74,-0.28322561435825133],[114,-22,75,-0.2883005119633092],[114,-22,76,-0.288046936467778],[114,-22,77,-0.2860445595981188],[114,-22,78,-0.27992648992500574],[114,-22,79,-0.2710034393351819],[114,-21,64,0.13784567921873142],[114,-21,65,0.010798648493949958],[114,-21,66,-0.0463766971803076],[114,-21,67,-0.1822484864011425],[114,-21,68,-0.2729749876167217],[114,-21,69,-0.2765924751538531],[114,-21,70,-0.2752174298385526],[114,-21,71,-0.27450618068812493],[114,-21,72,-0.27846140660957663],[114,-21,73,-0.28034022442008627],[114,-21,74,-0.2853321171523138],[114,-21,75,-0.27184976267046185],[114,-21,76,-0.28713467873747217],[114,-21,77,-0.28653634751773205],[114,-21,78,-0.2829214923177656],[114,-21,79,-0.27222316076215014],[114,-20,64,0.12002196142652088],[114,-20,65,-0.033574247113246164],[114,-20,66,-0.07000496131874312],[114,-20,67,-0.1988479354006782],[114,-20,68,-0.2709307539247157],[114,-20,69,-0.2721040921481974],[114,-20,70,-0.27521983387203314],[114,-20,71,-0.2768838309781582],[114,-20,72,-0.2780856040178215],[114,-20,73,-0.2842161889333612],[114,-20,74,-0.2884953797073969],[114,-20,75,-0.2586200838358329],[114,-20,76,-0.26962770818848947],[114,-20,77,-0.2896767234642849],[114,-20,78,-0.283367008794768],[114,-20,79,-0.27171999676556075],[114,-19,64,0.14787591012449847],[114,-19,65,-0.013586481225846159],[114,-19,66,-0.10954395679291537],[114,-19,67,-0.23657663750152108],[114,-19,68,-0.25512678015479434],[114,-19,69,-0.2594865735745563],[114,-19,70,-0.26448717886353346],[114,-19,71,-0.2660518730420431],[114,-19,72,-0.26857732639675413],[114,-19,73,-0.2732047435323067],[114,-19,74,-0.20882549176190524],[114,-19,75,-0.1641941871506417],[114,-19,76,-0.16922936326292815],[114,-19,77,-0.27802585696287996],[114,-19,78,-0.26964227137654534],[114,-19,79,-0.2562151635525251],[114,-18,64,0.11251396712283412],[114,-18,65,-0.03252982056217665],[114,-18,66,-0.13640853220205953],[114,-18,67,-0.23797203481882132],[114,-18,68,-0.24600854371344247],[114,-18,69,-0.25403632464952497],[114,-18,70,-0.25974244773221367],[114,-18,71,-0.2602081100727307],[114,-18,72,-0.2644657281180974],[114,-18,73,-0.26296081443077973],[114,-18,74,-0.17230138534403894],[114,-18,75,-0.13241120938840142],[114,-18,76,-0.14249808613973813],[114,-18,77,-0.2536120646396565],[114,-18,78,-0.2640349121123439],[114,-18,79,-0.2516313476478291],[114,-17,64,0.09343892391562258],[114,-17,65,-0.056499333325102374],[114,-17,66,-0.1506958733408693],[114,-17,67,-0.2365770471249138],[114,-17,68,-0.24512641397750023],[114,-17,69,-0.25140741812261636],[114,-17,70,-0.2561217874658388],[114,-17,71,-0.26129162220538527],[114,-17,72,-0.2660385337202128],[114,-17,73,-0.24996862691470945],[114,-17,74,-0.1362388899437658],[114,-17,75,-0.08658070532908438],[114,-17,76,-0.1293833970157728],[114,-17,77,-0.2045078275811137],[114,-17,78,-0.2603670010412657],[114,-17,79,-0.2502023473633122],[114,-16,64,0.10544281579348258],[114,-16,65,-0.03315527448693206],[114,-16,66,-0.11474317404374967],[114,-16,67,-0.20998001490802948],[114,-16,68,-0.23828717446761163],[114,-16,69,-0.24409154989493478],[114,-16,70,-0.2487444185565294],[114,-16,71,-0.2568814859175206],[114,-16,72,-0.22847051624426623],[114,-16,73,-0.19870419435701558],[114,-16,74,-0.1268263199587037],[114,-16,75,-0.09289272948862298],[114,-16,76,-0.14791512516946004],[114,-16,77,-0.18723727414819735],[114,-16,78,-0.25562679174544267],[114,-16,79,-0.24613869903625338],[114,-15,64,0.09331460949344444],[114,-15,65,-0.024964024017437025],[114,-15,66,-0.1260861850051075],[114,-15,67,-0.22052150176347568],[114,-15,68,-0.2240733218477478],[114,-15,69,-0.23252892565423586],[114,-15,70,-0.23943663561030118],[114,-15,71,-0.25184427718283386],[114,-15,72,-0.21062625104800214],[114,-15,73,-0.17171461311167907],[114,-15,74,-0.11431151982150226],[114,-15,75,-0.08509633921840845],[114,-15,76,-0.14809965134279002],[114,-15,77,-0.19611303934565366],[114,-15,78,-0.2458684345024824],[114,-15,79,-0.23590115627233355],[114,-14,64,-0.017975516574252948],[114,-14,65,-0.08357816756127406],[114,-14,66,-0.1649149193922413],[114,-14,67,-0.21147134033049683],[114,-14,68,-0.2166678980861664],[114,-14,69,-0.22390630061066796],[114,-14,70,-0.2326301534979232],[114,-14,71,-0.24418298777803935],[114,-14,72,-0.20383375623528932],[114,-14,73,-0.1843865426289047],[114,-14,74,-0.13539716174306682],[114,-14,75,-0.1099926131452689],[114,-14,76,-0.1681814776105257],[114,-14,77,-0.20956191145160263],[114,-14,78,-0.24052062691503473],[114,-14,79,-0.2283795836932808],[114,-13,64,0.004695975734055308],[114,-13,65,-0.05866836830903174],[114,-13,66,-0.14451917575488113],[114,-13,67,-0.19863233839668734],[114,-13,68,-0.21433476010027597],[114,-13,69,-0.22265012563295006],[114,-13,70,-0.23157552760659617],[114,-13,71,-0.24351109292560394],[114,-13,72,-0.17690502285227638],[114,-13,73,-0.1359386779313574],[114,-13,74,-0.11178090799631268],[114,-13,75,-0.07872745536150158],[114,-13,76,-0.12052781663717152],[114,-13,77,-0.18426989144734182],[114,-13,78,-0.22741269067383194],[114,-13,79,-0.23038915812257899],[114,-12,64,1.2490346514371087E-4],[114,-12,65,-0.07186998434603692],[114,-12,66,-0.15418451634637614],[114,-12,67,-0.20431646188765232],[114,-12,68,-0.21278467914029475],[114,-12,69,-0.22301762231506825],[114,-12,70,-0.2314169130876575],[114,-12,71,-0.2436999710463701],[114,-12,72,-0.18720391598671168],[114,-12,73,-0.14480986757313952],[114,-12,74,-0.12710559200846172],[114,-12,75,-0.09311734855151102],[114,-12,76,-0.1218265871633937],[114,-12,77,-0.19531161078130688],[114,-12,78,-0.2446728310272197],[114,-12,79,-0.23599924525311772],[114,-11,64,0.031464639957120843],[114,-11,65,-0.0474046056204471],[114,-11,66,-0.15007605222821685],[114,-11,67,-0.19855892464739985],[114,-11,68,-0.20642595576481404],[114,-11,69,-0.21805762082201338],[114,-11,70,-0.2217864061595736],[114,-11,71,-0.22933314992559653],[114,-11,72,-0.12975061110836786],[114,-11,73,-0.050062669449474184],[114,-11,74,0.002519487539099252],[114,-11,75,0.03150181777208916],[114,-11,76,8.998853890437031E-4],[114,-11,77,-0.06800024365882407],[114,-11,78,-0.1412113991466528],[114,-11,79,-0.18996794876544063],[114,-10,64,0.02488967658651256],[114,-10,65,-0.06444879927291512],[114,-10,66,-0.15303989463327236],[114,-10,67,-0.1957313692269038],[114,-10,68,-0.20263214114177402],[114,-10,69,-0.2157769858454932],[114,-10,70,-0.21903451564315998],[114,-10,71,-0.22203137206186677],[114,-10,72,-0.14169241581313025],[114,-10,73,-0.07068825377848498],[114,-10,74,-0.013718230677933485],[114,-10,75,0.012199042972064172],[114,-10,76,-0.004455984680036884],[114,-10,77,-0.07720981836746543],[114,-10,78,-0.15439091049924517],[114,-10,79,-0.196048871983676],[114,-9,64,0.02682342906386183],[114,-9,65,-0.07017664074478197],[114,-9,66,-0.15675656711606498],[114,-9,67,-0.19514308224886473],[114,-9,68,-0.20427397162184172],[114,-9,69,-0.21568852429068894],[114,-9,70,-0.2171215968864946],[114,-9,71,-0.2189594492723668],[114,-9,72,-0.1651437097234308],[114,-9,73,-0.0875629525204667],[114,-9,74,-0.030305864131507654],[114,-9,75,-2.0417041501566424E-4],[114,-9,76,-0.005734334850360373],[114,-9,77,-0.08093534004115638],[114,-9,78,-0.1678581008693631],[114,-9,79,-0.22122613053607568],[114,-8,64,-0.032853671129055156],[114,-8,65,-0.11895784086701122],[114,-8,66,-0.18196270666642544],[114,-8,67,-0.1870847216891467],[114,-8,68,-0.19767106385215835],[114,-8,69,-0.21041439337385417],[114,-8,70,-0.2128645048322399],[114,-8,71,-0.2147389797656416],[114,-8,72,-0.21232984034498298],[114,-8,73,-0.14333749098924406],[114,-8,74,-0.04818909376604147],[114,-8,75,0.00655858514203278],[114,-8,76,8.646845856672136E-4],[114,-8,77,-0.07408426796852877],[114,-8,78,-0.17986415814460818],[114,-8,79,-0.2208519097047914],[114,-7,64,-0.052030470437357326],[114,-7,65,-0.12032332231872311],[114,-7,66,-0.1752704135200725],[114,-7,67,-0.1813236986315453],[114,-7,68,-0.1917061260699112],[114,-7,69,-0.2046243949844881],[114,-7,70,-0.2083805508867924],[114,-7,71,-0.20896549823467536],[114,-7,72,-0.2081174583449964],[114,-7,73,-0.16618100939149916],[114,-7,74,-0.06189663237271251],[114,-7,75,-0.006824596307649339],[114,-7,76,-0.02472740648377883],[114,-7,77,-0.08259676719517284],[114,-7,78,-0.1865881381111267],[114,-7,79,-0.21677170071537433],[114,-6,64,-0.06531402513913737],[114,-6,65,-0.12646152663109067],[114,-6,66,-0.17084070894771294],[114,-6,67,-0.17808859529363444],[114,-6,68,-0.18664587983953923],[114,-6,69,-0.19853435020386245],[114,-6,70,-0.2013952079837707],[114,-6,71,-0.20479713976457753],[114,-6,72,-0.20495046620327237],[114,-6,73,-0.1839554842112979],[114,-6,74,-0.05982279682993577],[114,-6,75,0.0033821211957824615],[114,-6,76,-0.026390162474178774],[114,-6,77,-0.09651583597284671],[114,-6,78,-0.20868772431771893],[114,-6,79,-0.21170135643000493],[114,-5,64,-0.08262565828088021],[114,-5,65,-0.0887133088153998],[114,-5,66,-0.09102769385499747],[114,-5,67,-0.1439480101061889],[114,-5,68,-0.16699051458977124],[114,-5,69,-0.194466968565618],[114,-5,70,-0.1998881846518052],[114,-5,71,-0.20415698923841696],[114,-5,72,-0.20668809798681975],[114,-5,73,-0.20740583942118776],[114,-5,74,-0.1996566116580933],[114,-5,75,-0.18329004389394865],[114,-5,76,-0.20954924663596522],[114,-5,77,-0.21036029244501936],[114,-5,78,-0.2090526992629794],[114,-5,79,-0.21234515441990387],[114,-4,64,-0.0819692007060727],[114,-4,65,-0.10011543920639118],[114,-4,66,-0.10517388468107317],[114,-4,67,-0.1588262397041708],[114,-4,68,-0.17862245409723146],[114,-4,69,-0.1928941209857558],[114,-4,70,-0.19980758380335667],[114,-4,71,-0.20592877509449709],[114,-4,72,-0.20997921452910917],[114,-4,73,-0.21020747638831397],[114,-4,74,-0.21170665906767366],[114,-4,75,-0.21484675525626898],[114,-4,76,-0.21219393699208464],[114,-4,77,-0.21277179098101331],[114,-4,78,-0.21402257299966182],[114,-4,79,-0.2161243407913469],[114,-3,64,-0.03755289973798792],[114,-3,65,-0.05307318417679817],[114,-3,66,-0.07428116454972158],[114,-3,67,-0.1116483750990111],[114,-3,68,-0.13154010010724002],[114,-3,69,-0.17841986234444013],[114,-3,70,-0.18745710638479318],[114,-3,71,-0.19924194040931653],[114,-3,72,-0.20305993024534094],[114,-3,73,-0.2105760446813592],[114,-3,74,-0.18454617710765636],[114,-3,75,-0.1878279278347837],[114,-3,76,-0.20483013525750762],[114,-3,77,-0.20454022325098586],[114,-3,78,-0.20243527833695923],[114,-3,79,-0.1977052510746932],[114,-2,64,-0.04674341997543942],[114,-2,65,-0.06517191633291619],[114,-2,66,-0.09684121559114531],[114,-2,67,-0.12027207423618666],[114,-2,68,-0.14931705141561644],[114,-2,69,-0.1615314894260821],[114,-2,70,-0.18037493715651365],[114,-2,71,-0.19356105586217773],[114,-2,72,-0.20165303193751943],[114,-2,73,-0.2032017136426309],[114,-2,74,-0.20794753525408755],[114,-2,75,-0.20675922279936695],[114,-2,76,-0.20278922425991752],[114,-2,77,-0.19829076827601824],[114,-2,78,-0.19776694459937294],[114,-2,79,-0.1916066275914145],[114,-1,64,-0.033177037072184334],[114,-1,65,-0.04538317672000594],[114,-1,66,-0.06946226653801872],[114,-1,67,-0.09994228899959076],[114,-1,68,-0.10498484363148221],[114,-1,69,-0.10336006625498557],[114,-1,70,-0.16475751413651907],[114,-1,71,-0.16347515665409137],[114,-1,72,-0.15454384307590835],[114,-1,73,-0.1807895310624063],[114,-1,74,-0.20143824342516192],[114,-1,75,-0.20210198479352298],[114,-1,76,-0.19885974097735484],[114,-1,77,-0.19316892107114347],[114,-1,78,-0.1930674307797493],[114,-1,79,-0.1865665497730218],[114,0,64,-0.02529885779430463],[114,0,65,-0.022755416197522],[114,0,66,-0.02259039185362563],[114,0,67,-0.026762299641477888],[114,0,68,-0.03150123575169844],[114,0,69,-0.037816214196005976],[114,0,70,-0.04452964904862078],[114,0,71,-0.05021828695015686],[114,0,72,-0.05830756468658997],[114,0,73,-0.061046253031428674],[114,0,74,-0.063440708865532],[114,0,75,-0.06788683049218873],[114,0,76,-0.07134180247128691],[114,0,77,-0.07017054003070185],[114,0,78,-0.07925431131561413],[114,0,79,-0.08258973307927493],[114,1,64,-0.025679885505245748],[114,1,65,-0.02156867555460676],[114,1,66,-0.02208586747528199],[114,1,67,-0.02598515095040281],[114,1,68,-0.03140001337578584],[114,1,69,-0.03644290950687051],[114,1,70,-0.04387684034473452],[114,1,71,-0.04926347452286617],[114,1,72,-0.05653678852783385],[114,1,73,-0.055939101285049295],[114,1,74,-0.05940005718079623],[114,1,75,-0.06146742769487337],[114,1,76,-0.06434228750326591],[114,1,77,-0.06879038744125007],[114,1,78,-0.07355928767125355],[114,1,79,-0.08007710286771032],[114,2,64,-0.0253074888002027],[114,2,65,-0.02137830559707571],[114,2,66,-0.02008424347730854],[114,2,67,-0.022667923688179367],[114,2,68,-0.02802405160146909],[114,2,69,-0.03283876254305673],[114,2,70,-0.04442723295153092],[114,2,71,-0.05113653566539422],[114,2,72,-0.05645079292893054],[114,2,73,-0.05298686976590446],[114,2,74,-0.05819588711723392],[114,2,75,-0.05810370113295445],[114,2,76,-0.06044666431608525],[114,2,77,-0.06509344663655309],[114,2,78,-0.07075716339566238],[114,2,79,-0.07624013820545433],[114,3,64,-0.024100808745507074],[114,3,65,-0.018107585323350606],[114,3,66,-0.017783349974622553],[114,3,67,-0.022445986667748927],[114,3,68,-0.027664349388711873],[114,3,69,-0.03122020606306372],[114,3,70,-0.04183554691441313],[114,3,71,-0.05160839983557068],[114,3,72,-0.05455986418920383],[114,3,73,-0.05020922889315947],[114,3,74,-0.05434840457284154],[114,3,75,-0.05764099441142605],[114,3,76,-0.05788274924658539],[114,3,77,-0.06243040876734619],[114,3,78,-0.06904237527566177],[114,3,79,-0.06991089784858162],[114,4,64,-0.02379751237775353],[114,4,65,-0.018266786712886535],[114,4,66,-0.01867164092303686],[114,4,67,-0.02148690843202597],[114,4,68,-0.025289790186398764],[114,4,69,-0.028139952974354426],[114,4,70,-0.03698487940452387],[114,4,71,-0.04766609124972647],[114,4,72,-0.046964379302906534],[114,4,73,-0.04705757047456968],[114,4,74,-0.05035331643086685],[114,4,75,-0.052949607542902705],[114,4,76,-0.05228084030408334],[114,4,77,-0.05794652406684142],[114,4,78,-0.0623208501991922],[114,4,79,-0.06339392165182105],[114,5,64,-0.02278762072437314],[114,5,65,-0.019602666301239496],[114,5,66,-0.01730193557532403],[114,5,67,-0.019017906994832717],[114,5,68,-0.020134046147691306],[114,5,69,-0.026226361511096946],[114,5,70,-0.03565080527728838],[114,5,71,-0.04200092286536128],[114,5,72,-0.04344155402217023],[114,5,73,-0.04345678080914102],[114,5,74,-0.045725672062420064],[114,5,75,-0.0462474935970168],[114,5,76,-0.047285969252710724],[114,5,77,-0.051783681652594046],[114,5,78,-0.05495299244056186],[114,5,79,-0.056329183167910996],[114,6,64,-0.022948357156828997],[114,6,65,-0.021795788994674686],[114,6,66,-0.016570944384058567],[114,6,67,-0.012897597276472383],[114,6,68,-0.01683432990964498],[114,6,69,-0.020853495444686274],[114,6,70,-0.03119121328294855],[114,6,71,-0.03762539086970207],[114,6,72,-0.03888749182585746],[114,6,73,-0.040317614952845526],[114,6,74,-0.041558046515961816],[114,6,75,-0.03974252151143014],[114,6,76,-0.03920253891032158],[114,6,77,-0.04366746133454934],[114,6,78,-0.04638243980651448],[114,6,79,-0.04730540589960232],[114,7,64,-0.024907361481223383],[114,7,65,-0.021223015167964737],[114,7,66,-0.014933864192398602],[114,7,67,-0.012301007277135997],[114,7,68,-0.015055079817284336],[114,7,69,-0.016695821127035923],[114,7,70,-0.02721303926367101],[114,7,71,-0.033406639769771374],[114,7,72,-0.035074335246303795],[114,7,73,-0.03594310834685316],[114,7,74,-0.034235491369916604],[114,7,75,-0.032898121587748186],[114,7,76,-0.03538408147079966],[114,7,77,-0.03689940201133249],[114,7,78,-0.03948263836255833],[114,7,79,-0.044235799063439454],[114,8,64,-0.023533519296293437],[114,8,65,-0.019829844617047454],[114,8,66,-0.01455026948484904],[114,8,67,-0.007743164646240502],[114,8,68,-0.008996334818038215],[114,8,69,-0.008815485124832378],[114,8,70,-0.017236121475198526],[114,8,71,-0.024207345319686532],[114,8,72,-0.025127322354955822],[114,8,73,-0.025389513160459246],[114,8,74,-0.023741120248231384],[114,8,75,-0.019764104312523414],[114,8,76,-0.02179870830782256],[114,8,77,-0.024048973607311452],[114,8,78,-0.02722843261082572],[114,8,79,-0.031941814055212056],[114,9,64,-0.022406491391836814],[114,9,65,-0.01559001431311978],[114,9,66,-0.009072125195266817],[114,9,67,0.0013326485137619415],[114,9,68,0.0036153657773279613],[114,9,69,0.003625633014240681],[114,9,70,-0.004289196350818425],[114,9,71,-0.014310910450984093],[114,9,72,-0.016631473435926497],[114,9,73,-0.0179371485610966],[114,9,74,-0.019826921427702315],[114,9,75,-0.016347681388776736],[114,9,76,-0.01677034552929975],[114,9,77,-0.016545297644346285],[114,9,78,-0.02225940376338839],[114,9,79,-0.025601283354156595],[114,10,64,-0.023932928443898827],[114,10,65,-0.01615082781474858],[114,10,66,-0.007456977549325533],[114,10,67,5.711645362322104E-4],[114,10,68,0.005432858677627994],[114,10,69,0.006877344464868956],[114,10,70,2.199647697763707E-4],[114,10,71,-0.010141056485225924],[114,10,72,-0.0133515856193204],[114,10,73,-0.012055205641304856],[114,10,74,-0.013854957612328134],[114,10,75,-0.012292062398536197],[114,10,76,-0.013970197643745519],[114,10,77,-0.012560372965482014],[114,10,78,-0.018781176679642422],[114,10,79,-0.020912621454568056],[114,11,64,-0.023745656083784455],[114,11,65,-0.018620066289633336],[114,11,66,-0.006707161680764184],[114,11,67,0.0015554265571341153],[114,11,68,0.004758328674731721],[114,11,69,0.008083589308068628],[114,11,70,0.0023351789251520594],[114,11,71,-0.005520527569050804],[114,11,72,-0.010307176006240065],[114,11,73,-0.009421268713790176],[114,11,74,-0.009268356360568553],[114,11,75,-0.007676708811930999],[114,11,76,-0.008751196915332743],[114,11,77,-0.008071796527581915],[114,11,78,-0.012832873022743524],[114,11,79,-0.01601500613358224],[114,12,64,-0.023846613965841285],[114,12,65,-0.020594482914064738],[114,12,66,-0.010805334535243516],[114,12,67,-0.0034131915860033113],[114,12,68,-0.0028486846411821254],[114,12,69,0.0017560569909307044],[114,12,70,0.0010226583854793247],[114,12,71,-0.006791732556411356],[114,12,72,-0.014172927871890256],[114,12,73,-0.01443016959332255],[114,12,74,-0.013597537562949069],[114,12,75,-0.012162627390512881],[114,12,76,-0.012437472761424345],[114,12,77,-0.012949823823944995],[114,12,78,-0.016321125783592377],[114,12,79,-0.019258092255803577],[114,13,64,-0.027480986420503936],[114,13,65,-0.02425943124278994],[114,13,66,-0.017135942039955512],[114,13,67,-0.011662424363498583],[114,13,68,-0.012610047606274793],[114,13,69,-0.006556375956286109],[114,13,70,-0.005825086585082712],[114,13,71,-0.009525813761807223],[114,13,72,-0.014695178880274953],[114,13,73,-0.011378978826390801],[114,13,74,-0.010621299421104458],[114,13,75,-0.008697813830434276],[114,13,76,-0.010069041895715808],[114,13,77,-0.01035520438884907],[114,13,78,-0.01260774740169153],[114,13,79,-0.014257514876019547],[114,14,64,-0.026469369421617525],[114,14,65,-0.024084094031048192],[114,14,66,-0.016152236504144032],[114,14,67,-0.009113412032755147],[114,14,68,-0.008772466209414825],[114,14,69,-0.006089114670950219],[114,14,70,-0.006506496432127196],[114,14,71,-0.00724961429669288],[114,14,72,-0.012074408086352462],[114,14,73,-0.008177978917622064],[114,14,74,-0.006242345798046001],[114,14,75,-0.00503436519094852],[114,14,76,-0.0046478393093163095],[114,14,77,-0.0064020463008196415],[114,14,78,-0.006670504816985917],[114,14,79,-0.008931259833591387],[114,15,64,-0.028000383076258448],[114,15,65,-0.023559312825103138],[114,15,66,-0.015296516627651163],[114,15,67,-0.007163329112130246],[114,15,68,-0.006029720619034007],[114,15,69,-0.005043918410771703],[114,15,70,-0.005794533332464158],[114,15,71,-0.0069099173127390445],[114,15,72,-0.008953846089641726],[114,15,73,-0.005629233428870811],[114,15,74,-1.521082770317428E-4],[114,15,75,-0.0014776113619091868],[114,15,76,2.4470526078843036E-4],[114,15,77,-8.110470460969688E-4],[114,15,78,0.0010875972518298027],[114,15,79,-0.0026618723798182142],[114,16,64,-0.031822798517721906],[114,16,65,-0.026459530882858517],[114,16,66,-0.01583690192870192],[114,16,67,-0.004270301319602682],[114,16,68,-0.00390570054304909],[114,16,69,-0.002800879450549021],[114,16,70,-6.140700492971995E-4],[114,16,71,-0.004017952270626984],[114,16,72,-0.0032923845700720544],[114,16,73,0.0022308676568037478],[114,16,74,0.008495733539223033],[114,16,75,0.009061923795929544],[114,16,76,0.007963859808961443],[114,16,77,0.01022366390264759],[114,16,78,0.010817340493318284],[114,16,79,0.007692687203532084],[114,17,64,-0.030556555758126075],[114,17,65,-0.026120114116186643],[114,17,66,-0.016162695425220308],[114,17,67,-0.004953833909136174],[114,17,68,-0.0034346694614274254],[114,17,69,-8.51101757795375E-4],[114,17,70,0.002056928656026774],[114,17,71,-0.002468240224606455],[114,17,72,0.0010735624071573913],[114,17,73,0.004855495651748226],[114,17,74,0.009985834161363005],[114,17,75,0.012628272784469624],[114,17,76,0.012796579398906549],[114,17,77,0.015249207610546045],[114,17,78,0.014405240071551723],[114,17,79,0.009341451924561955],[114,18,64,-0.02993636987589987],[114,18,65,-0.023270763713155618],[114,18,66,-0.016192837171329688],[114,18,67,-0.005386210976485728],[114,18,68,-9.458000151350288E-4],[114,18,69,0.0010717697514996127],[114,18,70,0.002324730736997155],[114,18,71,0.0016774499714513613],[114,18,72,0.0051098493788872545],[114,18,73,0.009220157940702023],[114,18,74,0.01274778942750543],[114,18,75,0.01558023784028617],[114,18,76,0.01814359490954512],[114,18,77,0.0186874772527309],[114,18,78,0.01615107682795991],[114,18,79,0.009880288900634665],[114,19,64,-0.026534831633171135],[114,19,65,-0.021841117473937396],[114,19,66,-0.012956633149798641],[114,19,67,-0.004974826180173114],[114,19,68,0.0012165202309651346],[114,19,69,0.003438125073328663],[114,19,70,0.006170920229988774],[114,19,71,0.006983188742692936],[114,19,72,0.008355181461017908],[114,19,73,0.014123232975194133],[114,19,74,0.0163054565364682],[114,19,75,0.015467917662237624],[114,19,76,0.019726862315944643],[114,19,77,0.02109107155858911],[114,19,78,0.01917892520753192],[114,19,79,0.0119966264287506],[114,20,64,-0.022731484561926044],[114,20,65,-0.019522184333071138],[114,20,66,-0.013877373099948145],[114,20,67,-0.00883453218616162],[114,20,68,-0.0011844567267911554],[114,20,69,0.0018438509504968281],[114,20,70,0.0048886151777575715],[114,20,71,0.006078990477206864],[114,20,72,0.0061877114369496555],[114,20,73,0.011264145785342489],[114,20,74,0.01206052527014434],[114,20,75,0.008747116312439018],[114,20,76,0.01259264615263439],[114,20,77,0.015704071020851473],[114,20,78,0.015248853195180878],[114,20,79,0.008999735675774473],[114,21,64,-0.013391931641134974],[114,21,65,-0.010622021230054055],[114,21,66,-0.0070780119868738],[114,21,67,-0.0035772812250280117],[114,21,68,0.0028206426619624414],[114,21,69,0.00783078166512352],[114,21,70,0.008547990255626886],[114,21,71,0.005790001456354499],[114,21,72,0.006256687659584342],[114,21,73,0.010570887005306923],[114,21,74,0.01093435041843116],[114,21,75,0.005873057583749619],[114,21,76,0.009496297402738385],[114,21,77,0.017324370195617583],[114,21,78,0.017402871190492164],[114,21,79,0.01359258406575431],[114,22,64,-0.011238409607796818],[114,22,65,-0.006420798967702035],[114,22,66,-0.0049586521340716505],[114,22,67,-0.0038071422317455528],[114,22,68,3.5612041243143766E-4],[114,22,69,0.008076145245722033],[114,22,70,0.00752643440121481],[114,22,71,0.008040789147302857],[114,22,72,0.011964613873916174],[114,22,73,0.011343776182675042],[114,22,74,0.013680595808100465],[114,22,75,0.0048874478818067],[114,22,76,0.00840326666545907],[114,22,77,0.015482059475199789],[114,22,78,0.016084953704824823],[114,22,79,0.014633898896832809],[114,23,64,-0.006052672607556972],[114,23,65,-0.005597151465683625],[114,23,66,-0.0038340560182876515],[114,23,67,-0.004562979422708002],[114,23,68,-2.850195454297544E-4],[114,23,69,0.008890845912169931],[114,23,70,0.00888349259673743],[114,23,71,0.010915435517288907],[114,23,72,0.015566142981929598],[114,23,73,0.015412605740832808],[114,23,74,0.014585485690457672],[114,23,75,0.00848316681709263],[114,23,76,0.009832500461062071],[114,23,77,0.014139506803001134],[114,23,78,0.014556306440599215],[114,23,79,0.014020457876812165],[114,24,64,0.007991729203630393],[114,24,65,0.006987688230387895],[114,24,66,0.0074807288404419026],[114,24,67,0.008746080837624515],[114,24,68,0.011415001631965294],[114,24,69,0.017426825528702783],[114,24,70,0.020454050929886475],[114,24,71,0.023032562741593016],[114,24,72,0.026884450445204877],[114,24,73,0.029222784219817832],[114,24,74,0.02757357531173138],[114,24,75,0.021275315015799767],[114,24,76,0.019348209324700855],[114,24,77,0.023172535137808398],[114,24,78,0.024225055170623705],[114,24,79,0.024201237744037735],[114,25,64,0.021843534702284534],[114,25,65,0.022278878138106972],[114,25,66,0.022518959191536153],[114,25,67,0.025077644619653727],[114,25,68,0.028066182674281515],[114,25,69,0.03063500331102667],[114,25,70,0.03347872180288375],[114,25,71,0.034952936088703784],[114,25,72,0.036163664850664495],[114,25,73,0.03865965255172432],[114,25,74,0.039337134459233536],[114,25,75,0.03374375574634561],[114,25,76,0.02734109625502787],[114,25,77,0.024620872356719503],[114,25,78,0.018834688765886898],[114,25,79,0.012931221219911193],[114,26,64,0.02586850431820384],[114,26,65,0.02639532336012318],[114,26,66,0.028253713055298946],[114,26,67,0.030399712537860446],[114,26,68,0.031011888803308046],[114,26,69,0.0315060550090715],[114,26,70,0.03552909772178517],[114,26,71,0.03488963033410644],[114,26,72,0.0379566622309602],[114,26,73,0.040012482289316476],[114,26,74,0.037950672376566796],[114,26,75,0.032792412224955214],[114,26,76,0.02616496620818426],[114,26,77,0.02277205018413378],[114,26,78,0.01945206840741215],[114,26,79,0.013432440396626527],[114,27,64,0.029602770709326015],[114,27,65,0.029419307811145046],[114,27,66,0.031138930477938365],[114,27,67,0.03421528194617249],[114,27,68,0.03265567370852318],[114,27,69,0.03254666769712539],[114,27,70,0.0357285910268228],[114,27,71,0.035884780471506894],[114,27,72,0.036701885799182266],[114,27,73,0.038201503864611686],[114,27,74,0.03670186217839494],[114,27,75,0.03218535399432834],[114,27,76,0.02722719403205076],[114,27,77,0.022728437870378926],[114,27,78,0.020812259477275274],[114,27,79,0.014752185997279649],[114,28,64,0.03358757889491534],[114,28,65,0.032364439540621015],[114,28,66,0.034578853484227706],[114,28,67,0.034631478431801865],[114,28,68,0.03104978942229325],[114,28,69,0.02909125331573051],[114,28,70,0.03010030795883703],[114,28,71,0.029647066434080493],[114,28,72,0.028980229440739996],[114,28,73,0.030282880829000047],[114,28,74,0.02962647167484514],[114,28,75,0.02601621835424961],[114,28,76,0.020121583268468468],[114,28,77,0.015498653399689144],[114,28,78,0.013510661880748287],[114,28,79,0.006751774313789594],[114,29,64,0.03291349847173461],[114,29,65,0.0337234492457858],[114,29,66,0.03215642210747868],[114,29,67,0.03230909416780012],[114,29,68,0.026992524067635526],[114,29,69,0.023288160192052126],[114,29,70,0.022552119382318714],[114,29,71,0.024273437172067175],[114,29,72,0.02162465811131642],[114,29,73,0.023222857210741354],[114,29,74,0.02316385307085972],[114,29,75,0.019221563148009185],[114,29,76,0.014679654655588542],[114,29,77,0.01201286020338882],[114,29,78,0.008941802392807369],[114,29,79,0.0026145057210500977],[114,30,64,0.03365778010575382],[114,30,65,0.038091052540646514],[114,30,66,0.037698858441094135],[114,30,67,0.032942988296514125],[114,30,68,0.02572559328160226],[114,30,69,0.02221421009039451],[114,30,70,0.02103825513522234],[114,30,71,0.022554908346573282],[114,30,72,0.02018798092111468],[114,30,73,0.019318833715979505],[114,30,74,0.020096348381460766],[114,30,75,0.015755266852089306],[114,30,76,0.011570929489441578],[114,30,77,0.011245453546350481],[114,30,78,0.0060723379492767515],[114,30,79,-0.002152125484633005],[114,31,64,0.03484060807767597],[114,31,65,0.03883575300920161],[114,31,66,0.03967657801751623],[114,31,67,0.031041662703818973],[114,31,68,0.026630004085083675],[114,31,69,0.024507418276693504],[114,31,70,0.020553754864906237],[114,31,71,0.02168579480800381],[114,31,72,0.01713494060364998],[114,31,73,0.014989043756584858],[114,31,74,0.01595117614282135],[114,31,75,0.011843639840062231],[114,31,76,0.00555468536049214],[114,31,77,0.006440154035516926],[114,31,78,0.002208977883771418],[114,31,79,-0.004296312737158636],[114,32,64,0.04817683339317416],[114,32,65,0.051345666670105816],[114,32,66,0.053508373049371144],[114,32,67,0.04284416852171502],[114,32,68,0.038570578458810234],[114,32,69,0.03502884027453623],[114,32,70,0.030979778221224885],[114,32,71,0.03093777800083522],[114,32,72,0.028186128561064117],[114,32,73,0.025308462178739333],[114,32,74,0.021166622631405507],[114,32,75,0.01906630813347973],[114,32,76,0.014647695670316097],[114,32,77,0.014411248438614244],[114,32,78,0.01102205942559209],[114,32,79,0.006336961094422278],[114,33,64,0.04150116566064688],[114,33,65,0.045748944860560886],[114,33,66,0.05001913445873071],[114,33,67,0.03969682785900033],[114,33,68,0.03496623540201796],[114,33,69,0.03222116079649223],[114,33,70,0.027201405149956337],[114,33,71,0.02435970925528813],[114,33,72,0.017395394098767003],[114,33,73,0.012636453574086687],[114,33,74,0.007317551999715066],[114,33,75,0.004810814034448968],[114,33,76,0.0018396236720767678],[114,33,77,1.3707500162057906E-4],[114,33,78,8.814120556736582E-4],[114,33,79,-0.0028146844196649257],[114,34,64,0.044703330063815244],[114,34,65,0.048721036627583814],[114,34,66,0.05063483117949502],[114,34,67,0.04286690459629283],[114,34,68,0.03643828558187817],[114,34,69,0.031923752941857036],[114,34,70,0.026295332044512176],[114,34,71,0.023525628964533474],[114,34,72,0.0126413702923443],[114,34,73,0.008065034231908269],[114,34,74,0.004208369825536823],[114,34,75,0.00224482176530863],[114,34,76,-4.266799848557379E-4],[114,34,77,-4.5540222030190924E-4],[114,34,78,-0.0027680376485027525],[114,34,79,-0.005074785847484609],[114,35,64,0.04494514381183265],[114,35,65,0.05096300244581639],[114,35,66,0.054584161658720015],[114,35,67,0.04548884826265154],[114,35,68,0.03747012094162505],[114,35,69,0.030937834688473886],[114,35,70,0.02552846040344639],[114,35,71,0.019528719256426824],[114,35,72,0.010224909028922341],[114,35,73,0.006803184887943875],[114,35,74,8.313814291401878E-4],[114,35,75,-1.6953929734284112E-4],[114,35,76,-0.001177849556408317],[114,35,77,-4.524612509112236E-4],[114,35,78,-0.0028500566834581686],[114,35,79,-0.005984292791509804],[114,36,64,0.044581694075532974],[114,36,65,0.05151157379275487],[114,36,66,0.052165336633037684],[114,36,67,0.044732734670598656],[114,36,68,0.036947455478491875],[114,36,69,0.02697845666364182],[114,36,70,0.01959575053266413],[114,36,71,0.011629317955801716],[114,36,72,0.0048915054493321175],[114,36,73,6.1012607741300906E-5],[114,36,74,-0.007365944725313378],[114,36,75,-0.003424222263936766],[114,36,76,-0.002776974672210497],[114,36,77,-0.002337176370279692],[114,36,78,-0.004674201377712572],[114,36,79,-0.010762995723414659],[114,37,64,0.06387591593315925],[114,37,65,0.060715019170019036],[114,37,66,0.05385161345071621],[114,37,67,0.04496206077648149],[114,37,68,0.03551936441212544],[114,37,69,0.0219858287790487],[114,37,70,0.014295036985921716],[114,37,71,0.005580655380068661],[114,37,72,0.0029551073418692952],[114,37,73,0.0015572454071038633],[114,37,74,-0.005696087770089425],[114,37,75,-0.004232714840036261],[114,37,76,0.0015185252626971901],[114,37,77,-3.0403493662095604E-4],[114,37,78,-0.0030445507010075645],[114,37,79,-0.004460698615565584],[114,38,64,0.06872743452907512],[114,38,65,0.06485192170425552],[114,38,66,0.05553809735418955],[114,38,67,0.04646576069020855],[114,38,68,0.03693864852147655],[114,38,69,0.02130160847845483],[114,38,70,0.011391901095643808],[114,38,71,0.006852327430592747],[114,38,72,0.00300626004564411],[114,38,73,0.00347495302210149],[114,38,74,-0.0030481839168678138],[114,38,75,-0.0036233090666125956],[114,38,76,-9.147634114767267E-4],[114,38,77,-0.0014415743461915487],[114,38,78,-0.0033757537457599074],[114,38,79,-0.005917123400893537],[114,39,64,0.07137998826183492],[114,39,65,0.06532392891920963],[114,39,66,0.05654413935187244],[114,39,67,0.045810136717917754],[114,39,68,0.03524045106061699],[114,39,69,0.02138683845604894],[114,39,70,0.010465401384455952],[114,39,71,0.005207295986739718],[114,39,72,0.0027000629842153234],[114,39,73,0.004497927628492382],[114,39,74,-8.850962705106991E-4],[114,39,75,-0.003748037453070119],[114,39,76,-0.0027446480986401123],[114,39,77,-0.0033813096053794955],[114,39,78,-0.0028469679888536437],[114,39,79,-0.0037445846525999693],[114,40,64,0.08320920515794364],[114,40,65,0.07862034963441025],[114,40,66,0.0699893149785745],[114,40,67,0.0572532272076009],[114,40,68,0.04688216802747733],[114,40,69,0.036439247930911633],[114,40,70,0.023540252886456337],[114,40,71,0.01866885083165054],[114,40,72,0.01921766622913909],[114,40,73,0.02061772304986742],[114,40,74,0.016290038863951917],[114,40,75,0.013918059463955829],[114,40,76,0.010301290290574056],[114,40,77,0.009909043240997839],[114,40,78,0.012147046944609663],[114,40,79,0.012912094977131028],[114,41,64,0.08347523411296387],[114,41,65,0.07768382824901504],[114,41,66,0.0678629837049427],[114,41,67,0.05519548962081405],[114,41,68,0.04345154836439907],[114,41,69,0.03579393573632042],[114,41,70,0.025185914096068573],[114,41,71,0.019886192842968442],[114,41,72,0.021223210875402798],[114,41,73,0.022607285911678404],[114,41,74,0.020164590745823746],[114,41,75,0.014847941541800358],[114,41,76,0.010040288994294877],[114,41,77,0.007739463131323315],[114,41,78,0.011530760802493073],[114,41,79,0.012328775712387885],[114,42,64,0.0825728164956396],[114,42,65,0.07909811419709886],[114,42,66,0.06662705374085326],[114,42,67,0.054318338221489015],[114,42,68,0.042325959823247716],[114,42,69,0.03383300788054991],[114,42,70,0.023950450274890595],[114,42,71,0.021816868467472966],[114,42,72,0.021596533394176998],[114,42,73,0.023033664657344466],[114,42,74,0.02035234950308576],[114,42,75,0.013944305345540448],[114,42,76,0.007944235170999542],[114,42,77,0.007189245928893556],[114,42,78,0.009850280361221736],[114,42,79,0.012657184225406182],[114,43,64,0.08434640329751736],[114,43,65,0.07904796145958123],[114,43,66,0.06578763420172626],[114,43,67,0.05450832230849059],[114,43,68,0.04253246211869452],[114,43,69,0.0333889777037393],[114,43,70,0.025676885321438137],[114,43,71,0.02295770527093738],[114,43,72,0.021798273691115228],[114,43,73,0.021997291147901832],[114,43,74,0.020312798141050914],[114,43,75,0.016708568845783006],[114,43,76,0.007765623742452876],[114,43,77,0.008124115583943076],[114,43,78,0.009473566152561091],[114,43,79,0.01510717359307312],[114,44,64,0.080017069268805],[114,44,65,0.07306536266609001],[114,44,66,0.06150509689268771],[114,44,67,0.051980393982978795],[114,44,68,0.039867693519480135],[114,44,69,0.03054979762496665],[114,44,70,0.024271419675790884],[114,44,71,0.020722614928040978],[114,44,72,0.01920469274098685],[114,44,73,0.018062294638153065],[114,44,74,0.018241500882830053],[114,44,75,0.014319655592632097],[114,44,76,0.004874226040017415],[114,44,77,0.0033430879628463805],[114,44,78,0.005104349436037214],[114,44,79,0.011019882421028887],[114,45,64,0.06427226556880147],[114,45,65,0.059083220694866295],[114,45,66,0.05316698743628023],[114,45,67,0.04867346900781472],[114,45,68,0.04444148907159551],[114,45,69,0.03826335827751362],[114,45,70,0.040145410747313925],[114,45,71,0.041446636836932754],[114,45,72,0.04239196687244387],[114,45,73,0.04265221582330295],[114,45,74,0.042122250949522294],[114,45,75,0.04052066530963433],[114,45,76,0.03235788736431741],[114,45,77,0.027967989547336092],[114,45,78,0.026235273298459705],[114,45,79,0.0256128826443002],[114,46,64,0.062410543698294824],[114,46,65,0.05770750925605056],[114,46,66,0.05432305690144146],[114,46,67,0.048408386149899396],[114,46,68,0.04370257619128534],[114,46,69,0.03887240676311879],[114,46,70,0.04143166428686579],[114,46,71,0.04154468987999205],[114,46,72,0.042756873149900176],[114,46,73,0.04316829892173599],[114,46,74,0.0414561815994095],[114,46,75,0.03963628486043794],[114,46,76,0.03253008178992625],[114,46,77,0.02975602986710782],[114,46,78,0.02664232181487508],[114,46,79,0.025966253437505527],[114,47,64,0.06157303861708244],[114,47,65,0.057278139989291404],[114,47,66,0.05372665239156035],[114,47,67,0.04953225807245462],[114,47,68,0.04214423685820251],[114,47,69,0.03820358410863378],[114,47,70,0.04311085618071728],[114,47,71,0.04323277806693121],[114,47,72,0.04216510010017574],[114,47,73,0.041642415443246095],[114,47,74,0.042699049890922325],[114,47,75,0.04081630973730502],[114,47,76,0.0341044245943366],[114,47,77,0.03033856230125298],[114,47,78,0.028090918868164977],[114,47,79,0.026683175330946496],[114,48,64,0.0754652872787911],[114,48,65,0.07195918850338487],[114,48,66,0.06785458677118178],[114,48,67,0.0630171646107752],[114,48,68,0.055847625643333065],[114,48,69,0.05493572587120543],[114,48,70,0.056866684691617014],[114,48,71,0.05534692876176961],[114,48,72,0.05375698786874489],[114,48,73,0.053687889712934284],[114,48,74,0.05570845073645797],[114,48,75,0.05387901565984829],[114,48,76,0.049719143021605156],[114,48,77,0.04615713831584106],[114,48,78,0.04298210261823859],[114,48,79,0.04043931942837822],[114,49,64,0.07525718278416699],[114,49,65,0.07481257410470374],[114,49,66,0.07576664127451374],[114,49,67,0.07019610992932376],[114,49,68,0.06799983087484635],[114,49,69,0.0667512710261054],[114,49,70,0.06326782186624638],[114,49,71,0.05585727951250796],[114,49,72,0.046779557371156716],[114,49,73,0.04157899524435135],[114,49,74,0.039099605426003825],[114,49,75,0.04061182772314664],[114,49,76,0.03827519509458166],[114,49,77,0.03560336745417311],[114,49,78,0.031705376563326504],[114,49,79,0.027598761926100557],[114,50,64,0.0722919836639519],[114,50,65,0.07557292381134012],[114,50,66,0.0753060702720344],[114,50,67,0.0714747276262026],[114,50,68,0.06894246916944446],[114,50,69,0.0675217124851483],[114,50,70,0.06064259539170752],[114,50,71,0.053018928227310164],[114,50,72,0.044733190293650055],[114,50,73,0.040014174781582396],[114,50,74,0.03503531538496549],[114,50,75,0.03606441575824307],[114,50,76,0.03408759606728731],[114,50,77,0.03365985299029395],[114,50,78,0.03058752570709447],[114,50,79,0.02681405919693916],[114,51,64,0.068702080540581],[114,51,65,0.0737835808491212],[114,51,66,0.07143211915988448],[114,51,67,0.06949292165660265],[114,51,68,0.06971791091561386],[114,51,69,0.06840072817773074],[114,51,70,0.059313040971370024],[114,51,71,0.05123574228996369],[114,51,72,0.04422496297613204],[114,51,73,0.038839795145943046],[114,51,74,0.03081712497326869],[114,51,75,0.03174831563726585],[114,51,76,0.031152015574927333],[114,51,77,0.02767228239756936],[114,51,78,0.026847898421961974],[114,51,79,0.026819810551004047],[114,52,64,0.0774646786623086],[114,52,65,0.08407490860609199],[114,52,66,0.08166431033171873],[114,52,67,0.0814819122592624],[114,52,68,0.08140119787716096],[114,52,69,0.08036697533995857],[114,52,70,0.07211155119221252],[114,52,71,0.06235904611291476],[114,52,72,0.05442793978306604],[114,52,73,0.05041333137399087],[114,52,74,0.043895515358123915],[114,52,75,0.04214733658294392],[114,52,76,0.043875164808923284],[114,52,77,0.03811263044294794],[114,52,78,0.03823525382798196],[114,52,79,0.03750394011691768],[114,53,64,0.08052310297719145],[114,53,65,0.08195109629195357],[114,53,66,0.07870491373438554],[114,53,67,0.07710450573275687],[114,53,68,0.07607881749966458],[114,53,69,0.07191956252872139],[114,53,70,0.06066295333763558],[114,53,71,0.052967498947266045],[114,53,72,0.044446090218383055],[114,53,73,0.039428871271592364],[114,53,74,0.03391795638971004],[114,53,75,0.030454018232532742],[114,53,76,0.031267165018595194],[114,53,77,0.028763082523635186],[114,53,78,0.028740962957843896],[114,53,79,0.02947109127163411],[114,54,64,0.07636727768479692],[114,54,65,0.07500494269429434],[114,54,66,0.07559305979076447],[114,54,67,0.07352429362937599],[114,54,68,0.07381325218344126],[114,54,69,0.06904976006562918],[114,54,70,0.05797760787194417],[114,54,71,0.05086761893765568],[114,54,72,0.04470145498362971],[114,54,73,0.04019813217691612],[114,54,74,0.03518376187602082],[114,54,75,0.031311182726274756],[114,54,76,0.02859012040788661],[114,54,77,0.02950550862673884],[114,54,78,0.028518216654709605],[114,54,79,0.025650143169636958],[114,55,64,0.0731599708479761],[114,55,65,0.07004273536755323],[114,55,66,0.07069215843904797],[114,55,67,0.06888972396112675],[114,55,68,0.06758619420219861],[114,55,69,0.062432957701158864],[114,55,70,0.0579002754577595],[114,55,71,0.05057532285069288],[114,55,72,0.04372390466862322],[114,55,73,0.0402789447661],[114,55,74,0.03381694472800645],[114,55,75,0.02965579935353324],[114,55,76,0.027158824433500206],[114,55,77,0.029450039514158838],[114,55,78,0.028657321216536025],[114,55,79,0.02310202446860299],[114,56,64,0.08569275556920802],[114,56,65,0.08305900923690265],[114,56,66,0.0817367381786506],[114,56,67,0.07693966654372364],[114,56,68,0.07631620466850775],[114,56,69,0.07211637116397981],[114,56,70,0.07024324096733273],[114,56,71,0.06615268880936179],[114,56,72,0.05826130223763368],[114,56,73,0.05259082825693295],[114,56,74,0.04659381731437834],[114,56,75,0.04394108140383429],[114,56,76,0.04093623636232935],[114,56,77,0.04392949535544122],[114,56,78,0.04471948486065136],[114,56,79,0.038349507425990914],[114,57,64,0.084030523339159],[114,57,65,0.08281806292407998],[114,57,66,0.0811669935810714],[114,57,67,0.07742281979478052],[114,57,68,0.07512495767442229],[114,57,69,0.07385563325814154],[114,57,70,0.07120891602297189],[114,57,71,0.06540000839417356],[114,57,72,0.05284534609504271],[114,57,73,0.04236257817058958],[114,57,74,0.0356389212574067],[114,57,75,0.034556338440606627],[114,57,76,0.034349687233417525],[114,57,77,0.03536853788329061],[114,57,78,0.03613940532813892],[114,57,79,0.030414804401441148],[114,58,64,0.12230677543753034],[114,58,65,0.11906246343022787],[114,58,66,0.11723797878290589],[114,58,67,0.11267129738185162],[114,58,68,0.11124569841990013],[114,58,69,0.10903150100780001],[114,58,70,0.10429647191822938],[114,58,71,0.09985823921084673],[114,58,72,0.08967195208662294],[114,58,73,0.07600472718398801],[114,58,74,0.06812747461832314],[114,58,75,0.06509951544428642],[114,58,76,0.0680097371165982],[114,58,77,0.06731524927328608],[114,58,78,0.07011756527295832],[114,58,79,0.06534318197588657],[114,59,64,0.11690961829011587],[114,59,65,0.113987515688624],[114,59,66,0.11301146916956922],[114,59,67,0.10926353074698691],[114,59,68,0.10438157509150381],[114,59,69,0.10388363160408448],[114,59,70,0.10015550831016452],[114,59,71,0.09487366541740898],[114,59,72,0.08571106448671587],[114,59,73,0.07404447565187264],[114,59,74,0.06690837292893635],[114,59,75,0.06358229055149389],[114,59,76,0.06621608985593358],[114,59,77,0.06708333085964417],[114,59,78,0.07023070094685448],[114,59,79,0.06694537813393146],[114,60,64,0.11071889875455496],[114,60,65,0.10960463666782212],[114,60,66,0.10775891408098345],[114,60,67,0.10225092300880283],[114,60,68,0.09547878598196183],[114,60,69,0.09389895484224478],[114,60,70,0.09109782046345177],[114,60,71,0.08673579061225728],[114,60,72,0.08053059614301057],[114,60,73,0.07135235967206692],[114,60,74,0.06304292628097756],[114,60,75,0.05984351078846031],[114,60,76,0.06103887301024934],[114,60,77,0.06474108275737045],[114,60,78,0.06756505010183636],[114,60,79,0.0671350476636847],[114,61,64,0.10938322042753289],[114,61,65,0.10438145203777002],[114,61,66,0.09589991681742237],[114,61,67,0.08516154571209048],[114,61,68,0.07845488950771566],[114,61,69,0.07638049095175832],[114,61,70,0.07688826609287883],[114,61,71,0.07837022147224264],[114,61,72,0.07662701850675431],[114,61,73,0.07566953141719675],[114,61,74,0.06797014261895828],[114,61,75,0.06507056047096775],[114,61,76,0.06420798441934902],[114,61,77,0.07145446844552229],[114,61,78,0.07561067132843984],[114,61,79,0.07791050838685866],[114,62,64,0.10801662741134957],[114,62,65,0.09918620092814236],[114,62,66,0.0910050402245443],[114,62,67,0.07920407265284939],[114,62,68,0.07514166024793253],[114,62,69,0.07273087992822433],[114,62,70,0.07571524108893675],[114,62,71,0.07653903082371341],[114,62,72,0.07626389158745495],[114,62,73,0.07577583791455993],[114,62,74,0.07023167724058244],[114,62,75,0.06662785646044826],[114,62,76,0.0646959109464403],[114,62,77,0.07106565961683207],[114,62,78,0.07569146033144876],[114,62,79,0.07854399672971332],[114,63,64,0.03180759685903417],[114,63,65,0.02315878448567034],[114,63,66,0.011569687818300187],[114,63,67,0.0018654305664844995],[114,63,68,-4.920005466498706E-4],[114,63,69,-0.0033374614204697006],[114,63,70,0.0011492309519680055],[114,63,71,0.00375266974947365],[114,63,72,0.0026828874329268143],[114,63,73,0.002311449614377778],[114,63,74,2.0670110711967782E-4],[114,63,75,-0.0026218584385844096],[114,63,76,-0.004747934885487512],[114,63,77,0.0011682460394072391],[114,63,78,0.004801663731686431],[114,63,79,0.00618120999991216],[114,64,64,0.040271459236204205],[114,64,65,0.030100049273791438],[114,64,66,0.01844569144992951],[114,64,67,0.008514032290118462],[114,64,68,0.0027925333592125068],[114,64,69,0.0017154963341040746],[114,64,70,0.008653893564413942],[114,64,71,0.01074841158936106],[114,64,72,0.012508315667005873],[114,64,73,0.010890272612653837],[114,64,74,0.008176128981683184],[114,64,75,0.0047916587164960195],[114,64,76,0.004369115868202947],[114,64,77,0.009872461331839444],[114,64,78,0.014308547307253602],[114,64,79,0.012574619913451726],[114,65,64,0.035142620253209786],[114,65,65,0.025122694362018222],[114,65,66,0.014035616891144242],[114,65,67,0.005267335261939551],[114,65,68,-0.0019095139941511935],[114,65,69,-0.003844932619914837],[114,65,70,0.0032459937553118434],[114,65,71,0.007604481365880045],[114,65,72,0.00903947963984214],[114,65,73,0.007908772628981],[114,65,74,0.006895374359455239],[114,65,75,0.004794738984745334],[114,65,76,0.0044048481255093],[114,65,77,0.008214760912716154],[114,65,78,0.011372944546183636],[114,65,79,0.010530277394962498],[114,66,64,0.02315637026528751],[114,66,65,0.014215573214432689],[114,66,66,0.004763085778254059],[114,66,67,-0.0018239675682950457],[114,66,68,-0.012017431651896796],[114,66,69,-0.012721850906499951],[114,66,70,-0.007695338322340303],[114,66,71,-0.0013711875504938686],[114,66,72,0.002261234246570723],[114,66,73,0.0010243835709389526],[114,66,74,0.0026696109296060894],[114,66,75,-9.222575601828542E-4],[114,66,76,-0.003479899268578404],[114,66,77,-0.0010660071681494743],[114,66,78,0.0033134161606317575],[114,66,79,0.001906292377424873],[114,67,64,0.018853931505249485],[114,67,65,0.009722647709734314],[114,67,66,3.3141734928174293E-5],[114,67,67,-0.005313136233603688],[114,67,68,-0.011933088109644344],[114,67,69,-0.014639485027646754],[114,67,70,-0.0114318409167138],[114,67,71,-0.00377789963018392],[114,67,72,0.0017956196360020132],[114,67,73,4.935020478837732E-4],[114,67,74,-0.0015234019849731245],[114,67,75,-0.005205351367905245],[114,67,76,-0.00824285285745753],[114,67,77,-0.005519562265145661],[114,67,78,-0.0019162758472477115],[114,67,79,-0.0031042030998447018],[114,68,64,-0.07215450941110663],[114,68,65,-0.08375337478083537],[114,68,66,-0.0936581968935179],[114,68,67,-0.09642705668372142],[114,68,68,-0.09903793317026459],[114,68,69,-0.1019832097527614],[114,68,70,-0.10016228991462686],[114,68,71,-0.09394177864160724],[114,68,72,-0.08648891047084463],[114,68,73,-0.08965878447591913],[114,68,74,-0.0912809476484287],[114,68,75,-0.09537222127329745],[114,68,76,-0.09743613679950767],[114,68,77,-0.0979532076958081],[114,68,78,-0.09568928655939013],[114,68,79,-0.09515114930568701],[114,69,64,-0.07790713334565039],[114,69,65,-0.09040330429114535],[114,69,66,-0.101094097251228],[114,69,67,-0.1035741673047266],[114,69,68,-0.10073935297276632],[114,69,69,-0.10076903555910759],[114,69,70,-0.09589996512109042],[114,69,71,-0.0867025594866748],[114,69,72,-0.07752047641203538],[114,69,73,-0.07585841619649204],[114,69,74,-0.07896058441715689],[114,69,75,-0.08286338591705962],[114,69,76,-0.08550899103792543],[114,69,77,-0.09552532984128978],[114,69,78,-0.0980695787254108],[114,69,79,-0.09799718039654673],[114,70,64,-0.08122954340294282],[114,70,65,-0.0948128628560442],[114,70,66,-0.10439882488548809],[114,70,67,-0.1058153676524034],[114,70,68,-0.10406254133733067],[114,70,69,-0.10294778999880662],[114,70,70,-0.09700511500655883],[114,70,71,-0.08973379168211965],[114,70,72,-0.08117376750284121],[114,70,73,-0.07989515119087261],[114,70,74,-0.08185250012376563],[114,70,75,-0.08520299353842778],[114,70,76,-0.08773970382198769],[114,70,77,-0.09772100302813141],[114,70,78,-0.0997908477385928],[114,70,79,-0.09685889123745725],[114,71,64,-0.07565681352254797],[114,71,65,-0.08944906974680666],[114,71,66,-0.09582187258021668],[114,71,67,-0.09801210904660626],[114,71,68,-0.09506255424671485],[114,71,69,-0.09325151390993341],[114,71,70,-0.08726287738802617],[114,71,71,-0.08021055979564873],[114,71,72,-0.07349125195866636],[114,71,73,-0.07215899074410237],[114,71,74,-0.07534395982070953],[114,71,75,-0.08104097016194056],[114,71,76,-0.08326393161959213],[114,71,77,-0.08826960957356367],[114,71,78,-0.09262167640856679],[114,71,79,-0.09029443215281399],[114,72,64,-0.08152192861046208],[114,72,65,-0.09650208798753246],[114,72,66,-0.0983191215865297],[114,72,67,-0.09795737509977367],[114,72,68,-0.09550785174587273],[114,72,69,-0.09537113510768869],[114,72,70,-0.09064017536503485],[114,72,71,-0.08204773217173911],[114,72,72,-0.07736973416252366],[114,72,73,-0.07539273480140847],[114,72,74,-0.07808496913445281],[114,72,75,-0.08286835277869162],[114,72,76,-0.08562061317222495],[114,72,77,-0.09116883291140385],[114,72,78,-0.0957852630953083],[114,72,79,-0.09446600048746312],[114,73,64,-0.09557577888829265],[114,73,65,-0.10099518472492408],[114,73,66,-0.09664936741332145],[114,73,67,-0.09306276572091829],[114,73,68,-0.08814829059898083],[114,73,69,-0.0870168771639736],[114,73,70,-0.08652010579115205],[114,73,71,-0.08230705251633708],[114,73,72,-0.08412086174030241],[114,73,73,-0.08985434770710105],[114,73,74,-0.09147180995835999],[114,73,75,-0.0931474553016319],[114,73,76,-0.09958446464346488],[114,73,77,-0.10166539887186264],[114,73,78,-0.10358458958745553],[114,73,79,-0.10063987734712858],[114,74,64,-0.1041487027925014],[114,74,65,-0.10663607146865153],[114,74,66,-0.10302698907730859],[114,74,67,-0.10161284499326258],[114,74,68,-0.09878202582823363],[114,74,69,-0.09308391305415509],[114,74,70,-0.09333098624224946],[114,74,71,-0.09064304470552487],[114,74,72,-0.09221670153152557],[114,74,73,-0.09777364960179633],[114,74,74,-0.10063001211067689],[114,74,75,-0.10324203494570927],[114,74,76,-0.11030002178050766],[114,74,77,-0.111872580955897],[114,74,78,-0.11214920293534399],[114,74,79,-0.10879152622263205],[114,75,64,-0.10511348047042454],[114,75,65,-0.10739085435859794],[114,75,66,-0.10576654694730028],[114,75,67,-0.10570616659241039],[114,75,68,-0.10211042695862974],[114,75,69,-0.09368473275606333],[114,75,70,-0.0907954515280287],[114,75,71,-0.09148509211888298],[114,75,72,-0.09588630550992693],[114,75,73,-0.10069916521707863],[114,75,74,-0.10689959983270704],[114,75,75,-0.10890997838284011],[114,75,76,-0.1136652247526596],[114,75,77,-0.11695336909836342],[114,75,78,-0.11577648482625252],[114,75,79,-0.11286594828763359],[114,76,64,-0.10104491971165247],[114,76,65,-0.10307708125745307],[114,76,66,-0.10132349748966232],[114,76,67,-0.10285907497902663],[114,76,68,-0.09871565284140665],[114,76,69,-0.09197937571503953],[114,76,70,-0.09013756359118916],[114,76,71,-0.09022196543982744],[114,76,72,-0.09496662414910469],[114,76,73,-0.1012842867532689],[114,76,74,-0.1048669890347173],[114,76,75,-0.1094176430847296],[114,76,76,-0.1129354545143997],[114,76,77,-0.11759200280028104],[114,76,78,-0.11899206539015686],[114,76,79,-0.11597198663841717],[114,77,64,-0.10288295278485786],[114,77,65,-0.10260003213854176],[114,77,66,-0.10297630678659857],[114,77,67,-0.10567699452581131],[114,77,68,-0.1031424547232758],[114,77,69,-0.09807770316024317],[114,77,70,-0.09750479238132079],[114,77,71,-0.09887288867012647],[114,77,72,-0.103780373797705],[114,77,73,-0.10918132719492202],[114,77,74,-0.11287981975772447],[114,77,75,-0.11985665390236624],[114,77,76,-0.12299695148437273],[114,77,77,-0.12545584782271518],[114,77,78,-0.12860819929438222],[114,77,79,-0.1251692347743082],[114,78,64,-0.10506059386065522],[114,78,65,-0.10441317650215645],[114,78,66,-0.10424759648877148],[114,78,67,-0.1075058384177484],[114,78,68,-0.1041938702270318],[114,78,69,-0.10174167233939597],[114,78,70,-0.09914502984266722],[114,78,71,-0.1012153715563131],[114,78,72,-0.10685957780737895],[114,78,73,-0.11235819662401571],[114,78,74,-0.11719128099525947],[114,78,75,-0.12392347867977124],[114,78,76,-0.127864160252072],[114,78,77,-0.12943814760028322],[114,78,78,-0.1351238789114325],[114,78,79,-0.13250339969492883],[114,79,64,-0.09309972740109236],[114,79,65,-0.09596612655746585],[114,79,66,-0.09615414395081454],[114,79,67,-0.09746252316041842],[114,79,68,-0.09764987758077219],[114,79,69,-0.09566423463740825],[114,79,70,-0.09112958960826939],[114,79,71,-0.09374070170315948],[114,79,72,-0.09952215043216245],[114,79,73,-0.1050033636932049],[114,79,74,-0.1109352786686933],[114,79,75,-0.11419609529014299],[114,79,76,-0.1206641539612],[114,79,77,-0.12542741575238003],[114,79,78,-0.1302645581135477],[114,79,79,-0.12803386741578268],[114,80,64,-0.09452607617465465],[114,80,65,-0.09585761555033387],[114,80,66,-0.09731873615554111],[114,80,67,-0.09861751099636432],[114,80,68,-0.10072718278722351],[114,80,69,-0.09912086357341475],[114,80,70,-0.09370638527125413],[114,80,71,-0.09721197632880132],[114,80,72,-0.10128122399267071],[114,80,73,-0.10530941244024775],[114,80,74,-0.11050853681736189],[114,80,75,-0.11655041649328196],[114,80,76,-0.12426826347576439],[114,80,77,-0.129356555837685],[114,80,78,-0.13496068437667597],[114,80,79,-0.13265684938591982],[114,81,64,-0.09322603243530372],[114,81,65,-0.09589453721955692],[114,81,66,-0.09498766406744817],[114,81,67,-0.0943286390938085],[114,81,68,-0.0992013600363391],[114,81,69,-0.09624004924161014],[114,81,70,-0.09103198199329955],[114,81,71,-0.09318477218202445],[114,81,72,-0.09384550340042605],[114,81,73,-0.09532422942223709],[114,81,74,-0.10277835531498569],[114,81,75,-0.10960465456979392],[114,81,76,-0.12006196415521538],[114,81,77,-0.1301080691329267],[114,81,78,-0.14068045919723027],[114,81,79,-0.1429679759791022],[114,82,64,-0.10371957667076132],[114,82,65,-0.10470162904729542],[114,82,66,-0.10296973658705404],[114,82,67,-0.10190478621059423],[114,82,68,-0.10480366851768799],[114,82,69,-0.10456145315651981],[114,82,70,-0.10266126335882844],[114,82,71,-0.10392988679804224],[114,82,72,-0.10193604249167805],[114,82,73,-0.10458098848053547],[114,82,74,-0.11148487955832952],[114,82,75,-0.11644015961486827],[114,82,76,-0.12822280557149315],[114,82,77,-0.1396128741134654],[114,82,78,-0.1467847738754982],[114,82,79,-0.1541971803992539],[114,83,64,-0.10593906638899771],[114,83,65,-0.10395926869322777],[114,83,66,-0.10582535612760326],[114,83,67,-0.10500017609755906],[114,83,68,-0.10617732226444206],[114,83,69,-0.10818545800569145],[114,83,70,-0.10892018154908968],[114,83,71,-0.11051388548692333],[114,83,72,-0.10756160156864868],[114,83,73,-0.10810197681743733],[114,83,74,-0.114416548041605],[114,83,75,-0.11971127201515806],[114,83,76,-0.13239086873838957],[114,83,77,-0.1438662242335505],[114,83,78,-0.15212950892368468],[114,83,79,-0.15812654540426996],[114,84,64,-0.10383419159076851],[114,84,65,-0.10135929591117154],[114,84,66,-0.10372770588406932],[114,84,67,-0.10301013021058686],[114,84,68,-0.10590679919708074],[114,84,69,-0.109363273518545],[114,84,70,-0.11145377300602582],[114,84,71,-0.11454976781624421],[114,84,72,-0.10987530300486714],[114,84,73,-0.11172124030567958],[114,84,74,-0.1160607862729354],[114,84,75,-0.12418766189264605],[114,84,76,-0.13534617056483278],[114,84,77,-0.1459102578643258],[114,84,78,-0.15523008243396938],[114,84,79,-0.15994070454557419],[114,85,64,-0.11043989705534571],[114,85,65,-0.11383855305792007],[114,85,66,-0.1177655444697325],[114,85,67,-0.11984055878001196],[114,85,68,-0.12318198179599897],[114,85,69,-0.12329667348048161],[114,85,70,-0.1290898226957556],[114,85,71,-0.13128113303137698],[114,85,72,-0.13017595553178032],[114,85,73,-0.13120258616032154],[114,85,74,-0.13808029049811965],[114,85,75,-0.14608610580215628],[114,85,76,-0.15236079246798467],[114,85,77,-0.15744204565695233],[114,85,78,-0.1578605361891285],[114,85,79,-0.15626162133799343],[114,86,64,-0.112586421201232],[114,86,65,-0.11677447807897692],[114,86,66,-0.12108114334214831],[114,86,67,-0.12130840300388404],[114,86,68,-0.12260348736875154],[114,86,69,-0.1237820996453805],[114,86,70,-0.1289110357766846],[114,86,71,-0.13224985186523774],[114,86,72,-0.13218533231762292],[114,86,73,-0.13739060660688637],[114,86,74,-0.14558358325873108],[114,86,75,-0.15259908837196795],[114,86,76,-0.15552888597541126],[114,86,77,-0.15863496747125547],[114,86,78,-0.1617963877729567],[114,86,79,-0.1602853376892857],[114,87,64,-0.10584217642138304],[114,87,65,-0.11035152784462757],[114,87,66,-0.11470322295597274],[114,87,67,-0.11432889024659018],[114,87,68,-0.11417504587256833],[114,87,69,-0.11474393574267094],[114,87,70,-0.11930429359070557],[114,87,71,-0.1224271260889665],[114,87,72,-0.12618164750093377],[114,87,73,-0.13252933683073403],[114,87,74,-0.13927140872701765],[114,87,75,-0.1468850615651906],[114,87,76,-0.1504131454222466],[114,87,77,-0.15369621547886522],[114,87,78,-0.15605762920884078],[114,87,79,-0.15669146786272758],[114,88,64,-0.11067253678479473],[114,88,65,-0.11143536070071192],[114,88,66,-0.11759148088827054],[114,88,67,-0.11767538241947226],[114,88,68,-0.1176710993709931],[114,88,69,-0.11583800142758173],[114,88,70,-0.12355480040409003],[114,88,71,-0.12426070529694407],[114,88,72,-0.12876400943128996],[114,88,73,-0.1320779014004037],[114,88,74,-0.13884186281781496],[114,88,75,-0.14884309216336025],[114,88,76,-0.15584268596657275],[114,88,77,-0.1555043373131012],[114,88,78,-0.15874852487007068],[114,88,79,-0.15682488483933793],[114,89,64,-0.11297738548558656],[114,89,65,-0.11393417261076674],[114,89,66,-0.1168343106817599],[114,89,67,-0.1181587654892202],[114,89,68,-0.12068732686892225],[114,89,69,-0.11923479470265012],[114,89,70,-0.12531995252289427],[114,89,71,-0.12908751805818497],[114,89,72,-0.1307571980040912],[114,89,73,-0.13300425840219243],[114,89,74,-0.14287334191933793],[114,89,75,-0.15163112271585316],[114,89,76,-0.1582807769476488],[114,89,77,-0.15606582076488204],[114,89,78,-0.16091433897740248],[114,89,79,-0.16037489730362786],[114,90,64,-0.12105894966618348],[114,90,65,-0.12183657061927904],[114,90,66,-0.12335083018005166],[114,90,67,-0.12331858519134994],[114,90,68,-0.12730641247234897],[114,90,69,-0.12918805962413027],[114,90,70,-0.1338008890974228],[114,90,71,-0.13694924779445605],[114,90,72,-0.13806403253397329],[114,90,73,-0.13968002127718346],[114,90,74,-0.1505641372957731],[114,90,75,-0.15690050214813986],[114,90,76,-0.16198043925106603],[114,90,77,-0.16354174980008843],[114,90,78,-0.16839743208815808],[114,90,79,-0.16922536140144595],[114,91,64,-0.12265558005583638],[114,91,65,-0.1264241596154066],[114,91,66,-0.12285435724189311],[114,91,67,-0.12382763995245961],[114,91,68,-0.1273281380512018],[114,91,69,-0.13263254781563372],[114,91,70,-0.13744586773145787],[114,91,71,-0.14037313794435052],[114,91,72,-0.13928274698829626],[114,91,73,-0.1429208692115871],[114,91,74,-0.14901280459597382],[114,91,75,-0.15429346435075647],[114,91,76,-0.16251549199039425],[114,91,77,-0.16684861851951832],[114,91,78,-0.17125089743880897],[114,91,79,-0.17290409425741077],[114,92,64,-0.1117753376288746],[114,92,65,-0.11431224871689366],[114,92,66,-0.11108933324158882],[114,92,67,-0.11320434543483712],[114,92,68,-0.11603109711568724],[114,92,69,-0.12251676554778512],[114,92,70,-0.12717756459608265],[114,92,71,-0.13148618906026965],[114,92,72,-0.1314076614604927],[114,92,73,-0.13360075544316638],[114,92,74,-0.1363104499548226],[114,92,75,-0.1434016352746275],[114,92,76,-0.15126141219046355],[114,92,77,-0.15524156124379718],[114,92,78,-0.16239136703202134],[114,92,79,-0.16383222758318605],[114,93,64,-0.11835720526524326],[114,93,65,-0.12068325861464332],[114,93,66,-0.11826853369580972],[114,93,67,-0.117318685133815],[114,93,68,-0.12232622751357249],[114,93,69,-0.12872287489667958],[114,93,70,-0.13236308221494814],[114,93,71,-0.13231903706303913],[114,93,72,-0.12661267821236705],[114,93,73,-0.1245764238963441],[114,93,74,-0.1248155992992112],[114,93,75,-0.1332165200615793],[114,93,76,-0.14357976505870346],[114,93,77,-0.15552815380788404],[114,93,78,-0.16926089884528184],[114,93,79,-0.17451332048392365],[114,94,64,-0.11834198809562578],[114,94,65,-0.1201792184866991],[114,94,66,-0.11996395920622788],[114,94,67,-0.1164206668416167],[114,94,68,-0.12210175346511168],[114,94,69,-0.129411551424159],[114,94,70,-0.1325703685429426],[114,94,71,-0.13334118172300452],[114,94,72,-0.12870713485261046],[114,94,73,-0.12294289403510066],[114,94,74,-0.12626773864034907],[114,94,75,-0.13518775657161222],[114,94,76,-0.14263411725544622],[114,94,77,-0.15648679669996682],[114,94,78,-0.17058973604056007],[114,94,79,-0.176730089761096],[114,95,64,-0.10779783909850765],[114,95,65,-0.10804408507586506],[114,95,66,-0.11063874105207795],[114,95,67,-0.10963715980920304],[114,95,68,-0.11565906806551601],[114,95,69,-0.12233967797568569],[114,95,70,-0.12488118622563661],[114,95,71,-0.12308258878483819],[114,95,72,-0.11980374324585662],[114,95,73,-0.11526737978526023],[114,95,74,-0.11926401103217794],[114,95,75,-0.12640498367747632],[114,95,76,-0.13359748923924392],[114,95,77,-0.148711249639741],[114,95,78,-0.16530457871014545],[114,95,79,-0.1703058714258707],[114,96,64,-0.10736278317914544],[114,96,65,-0.10829888841452473],[114,96,66,-0.11107359552899809],[114,96,67,-0.11088204605052734],[114,96,68,-0.1169606148462041],[114,96,69,-0.12295714520228114],[114,96,70,-0.1254545683996488],[114,96,71,-0.12191007274170146],[114,96,72,-0.11838307291685704],[114,96,73,-0.11480617792272832],[114,96,74,-0.11951805821805095],[114,96,75,-0.12640023786629836],[114,96,76,-0.1353302450149188],[114,96,77,-0.14884958900634812],[114,96,78,-0.16519880143756632],[114,96,79,-0.17142664983127506],[114,97,64,-0.09621815489304458],[114,97,65,-0.09777241809244887],[114,97,66,-0.09891237107675438],[114,97,67,-0.10004560187267642],[114,97,68,-0.10603555716627439],[114,97,69,-0.11155291370052711],[114,97,70,-0.11816710317917961],[114,97,71,-0.1221394548285054],[114,97,72,-0.12169198048379475],[114,97,73,-0.12525384107317838],[114,97,74,-0.12937686436476864],[114,97,75,-0.13971989249009092],[114,97,76,-0.14467138553743006],[114,97,77,-0.15136698572672797],[114,97,78,-0.1576503388620163],[114,97,79,-0.15991067692444322],[114,98,64,-0.10218050441893142],[114,98,65,-0.10211330591346118],[114,98,66,-0.10386453800011133],[114,98,67,-0.10339008270392185],[114,98,68,-0.10725355068072046],[114,98,69,-0.11550015711512522],[114,98,70,-0.12214071476265585],[114,98,71,-0.1269954688835142],[114,98,72,-0.12925569632294512],[114,98,73,-0.1336016038893666],[114,98,74,-0.1382812859129841],[114,98,75,-0.14768826761019416],[114,98,76,-0.15179076244578557],[114,98,77,-0.1578218638704253],[114,98,78,-0.1623139088823488],[114,98,79,-0.16222944381544224],[114,99,64,-0.10069838359686605],[114,99,65,-0.1027461658309012],[114,99,66,-0.10425520810452595],[114,99,67,-0.10537324821473205],[114,99,68,-0.10824834196224703],[114,99,69,-0.11509616391406018],[114,99,70,-0.12159380820356283],[114,99,71,-0.1265021099913364],[114,99,72,-0.13229464429354465],[114,99,73,-0.13569363521884917],[114,99,74,-0.14334392422704387],[114,99,75,-0.15062547921316885],[114,99,76,-0.1547390627930355],[114,99,77,-0.15941428395458448],[114,99,78,-0.15952819592341422],[114,99,79,-0.16077559158892626],[114,100,64,-0.050969216190748165],[114,100,65,-0.05488690040006522],[114,100,66,-0.05552474463836714],[114,100,67,-0.05673897903119769],[114,100,68,-0.05654532452297788],[114,100,69,-0.06248552486987464],[114,100,70,-0.06617877300847286],[114,100,71,-0.06963879228421839],[114,100,72,-0.07417437721686375],[114,100,73,-0.0803195402738398],[114,100,74,-0.08669304688428689],[114,100,75,-0.0927572091341809],[114,100,76,-0.09854999118480487],[114,100,77,-0.10155739929880395],[114,100,78,-0.10299134428497873],[114,100,79,-0.10436432325005683],[114,101,64,-0.05105098851700843],[114,101,65,-0.05281006766556101],[114,101,66,-0.05508673981367863],[114,101,67,-0.057486884618791326],[114,101,68,-0.05849425484864326],[114,101,69,-0.06146366294957889],[114,101,70,-0.06386101749378381],[114,101,71,-0.06950383335652843],[114,101,72,-0.07383248847172118],[114,101,73,-0.08001812170891384],[114,101,74,-0.08679574584354717],[114,101,75,-0.09457998038953341],[114,101,76,-0.09781502171034906],[114,101,77,-0.09842170865424467],[114,101,78,-0.10267602656795974],[114,101,79,-0.10540155890861783],[114,102,64,-0.05147783326805942],[114,102,65,-0.05247228147870354],[114,102,66,-0.05499150833130558],[114,102,67,-0.0587168635469519],[114,102,68,-0.06137078716179424],[114,102,69,-0.06303800242440502],[114,102,70,-0.06389624555461373],[114,102,71,-0.06750155049774219],[114,102,72,-0.07234748111428761],[114,102,73,-0.07963327398261791],[114,102,74,-0.08698213066786466],[114,102,75,-0.09355237628107918],[114,102,76,-0.09731169111846225],[114,102,77,-0.10109706002030126],[114,102,78,-0.10322135102833693],[114,102,79,-0.10819159788985834],[114,103,64,-0.04327911670816282],[114,103,65,-0.04612807315208854],[114,103,66,-0.049688735178742824],[114,103,67,-0.05311890282908035],[114,103,68,-0.05413554854026961],[114,103,69,-0.05814233511623154],[114,103,70,-0.05874718797649306],[114,103,71,-0.061293115988329414],[114,103,72,-0.06637973956958043],[114,103,73,-0.0726619034868703],[114,103,74,-0.08135793021784667],[114,103,75,-0.08843900853459677],[114,103,76,-0.09206474286511952],[114,103,77,-0.09695342516525429],[114,103,78,-0.10176014487562847],[114,103,79,-0.108856537518467],[114,104,64,-0.04732159675577671],[114,104,65,-0.05138157932971022],[114,104,66,-0.05500161644121236],[114,104,67,-0.0588615078709279],[114,104,68,-0.056855659222252594],[114,104,69,-0.06073403348635892],[114,104,70,-0.062272737643252],[114,104,71,-0.06343224715173015],[114,104,72,-0.06606260715494114],[114,104,73,-0.07155009334337012],[114,104,74,-0.0821391346719138],[114,104,75,-0.08662008232139251],[114,104,76,-0.09040383271638576],[114,104,77,-0.09792115555659227],[114,104,78,-0.10480157903614387],[114,104,79,-0.11175071207209081],[114,105,64,-0.046670738393323835],[114,105,65,-0.049509980317027996],[114,105,66,-0.05344916568205103],[114,105,67,-0.05642976433316499],[114,105,68,-0.05503908584454227],[114,105,69,-0.05867323441272984],[114,105,70,-0.05786349051462292],[114,105,71,-0.0589883161350902],[114,105,72,-0.056776494583179515],[114,105,73,-0.06221168026908394],[114,105,74,-0.07205581526547047],[114,105,75,-0.07697022379007229],[114,105,76,-0.08543159952376421],[114,105,77,-0.09740943036526961],[114,105,78,-0.11105107391607284],[114,105,79,-0.12086384370679831],[114,106,64,-0.054739023094463886],[114,106,65,-0.05672956918560114],[114,106,66,-0.061505745201634834],[114,106,67,-0.0630828689474451],[114,106,68,-0.06262710765344823],[114,106,69,-0.06521037386096343],[114,106,70,-0.06325749416038376],[114,106,71,-0.06451632711401387],[114,106,72,-0.06490942416654705],[114,106,73,-0.06826560971333615],[114,106,74,-0.07589929360766555],[114,106,75,-0.08363469144187446],[114,106,76,-0.09294332976336908],[114,106,77,-0.10542315399008292],[114,106,78,-0.11648266287216752],[114,106,79,-0.1260462975893607],[114,107,64,-0.056220980135204796],[114,107,65,-0.05962325302458625],[114,107,66,-0.0622231519665995],[114,107,67,-0.06546431172874323],[114,107,68,-0.06604190993890036],[114,107,69,-0.06673949735672069],[114,107,70,-0.06450802133522689],[114,107,71,-0.06559309389982446],[114,107,72,-0.06583855046178469],[114,107,73,-0.06946582014382566],[114,107,74,-0.07816434830279734],[114,107,75,-0.08499268037115315],[114,107,76,-0.09268015747548183],[114,107,77,-0.10392205742526406],[114,107,78,-0.11660424961027721],[114,107,79,-0.12517540303361038],[114,108,64,-0.06055319419595802],[114,108,65,-0.06511563065781582],[114,108,66,-0.06833511303655083],[114,108,67,-0.07162256583509591],[114,108,68,-0.07124747498191883],[114,108,69,-0.07158427463543017],[114,108,70,-0.07233883353096449],[114,108,71,-0.07204176538544073],[114,108,72,-0.0728208710300375],[114,108,73,-0.0794104784984622],[114,108,74,-0.08631823153357276],[114,108,75,-0.0927219442243],[114,108,76,-0.09895203104524056],[114,108,77,-0.10941348285568206],[114,108,78,-0.12219781870550508],[114,108,79,-0.1301843639282362],[114,109,64,-0.07081946980005865],[114,109,65,-0.0752056944486101],[114,109,66,-0.0803056619843247],[114,109,67,-0.08440496078097737],[114,109,68,-0.08610188869504011],[114,109,69,-0.08565585349361313],[114,109,70,-0.08518606798372344],[114,109,71,-0.08636276986113198],[114,109,72,-0.08816680726499802],[114,109,73,-0.09501800688408073],[114,109,74,-0.1013508160040606],[114,109,75,-0.10523992975654992],[114,109,76,-0.11109117511628117],[114,109,77,-0.11311262824887494],[114,109,78,-0.1185492283032644],[114,109,79,-0.11922866919709815],[114,110,64,-0.07065251116514731],[114,110,65,-0.07521376726965215],[114,110,66,-0.08121577454254741],[114,110,67,-0.08747970853273665],[114,110,68,-0.08929230719180664],[114,110,69,-0.08670718695843531],[114,110,70,-0.08695060200320516],[114,110,71,-0.08732747085122335],[114,110,72,-0.0924844204780124],[114,110,73,-0.09911470147534479],[114,110,74,-0.10576327472192251],[114,110,75,-0.10902653629979862],[114,110,76,-0.1122994495690788],[114,110,77,-0.11619843207429548],[114,110,78,-0.1205762421957437],[114,110,79,-0.12180414589347323],[114,111,64,-0.0631238481579728],[114,111,65,-0.06853379126580464],[114,111,66,-0.07714310940290844],[114,111,67,-0.08391295775791459],[114,111,68,-0.0846024385121589],[114,111,69,-0.08291570973710956],[114,111,70,-0.0840239234043347],[114,111,71,-0.08447229941987837],[114,111,72,-0.09064427732533911],[114,111,73,-0.09748682439585243],[114,111,74,-0.1033653448493532],[114,111,75,-0.10796725353794004],[114,111,76,-0.11240682649330777],[114,111,77,-0.1146607523278135],[114,111,78,-0.11509999688538765],[114,111,79,-0.1193650084585198],[114,112,64,-0.06584718642874932],[114,112,65,-0.0728083578147754],[114,112,66,-0.08040187937507155],[114,112,67,-0.08490894629446587],[114,112,68,-0.08766713477955168],[114,112,69,-0.08549714925740573],[114,112,70,-0.08632392448622021],[114,112,71,-0.0889054769718191],[114,112,72,-0.09832389722558006],[114,112,73,-0.10124147861453843],[114,112,74,-0.10504629913323675],[114,112,75,-0.10942648976046579],[114,112,76,-0.11435802801453387],[114,112,77,-0.11679816069176681],[114,112,78,-0.11411639794009243],[114,112,79,-0.12002110204782174],[114,113,64,-0.07063507704143973],[114,113,65,-0.07743209552930545],[114,113,66,-0.08235928446917248],[114,113,67,-0.0864100169843591],[114,113,68,-0.08653240548881701],[114,113,69,-0.08745536555219349],[114,113,70,-0.08937874339638968],[114,113,71,-0.09362934375060994],[114,113,72,-0.10009447063568114],[114,113,73,-0.10381124758817363],[114,113,74,-0.10446643431664444],[114,113,75,-0.11080330409200853],[114,113,76,-0.11687820412555192],[114,113,77,-0.11955632362358569],[114,113,78,-0.11413506071837178],[114,113,79,-0.11804967307216338],[114,114,64,-0.07771743670297013],[114,114,65,-0.08405720885907338],[114,114,66,-0.0897032561090233],[114,114,67,-0.09226887464513989],[114,114,68,-0.09429552925050237],[114,114,69,-0.09401219707790189],[114,114,70,-0.09589582727855392],[114,114,71,-0.10149169601075275],[114,114,72,-0.10538401132746657],[114,114,73,-0.10842380720496034],[114,114,74,-0.11044366973766048],[114,114,75,-0.11630140312035044],[114,114,76,-0.12211185045578181],[114,114,77,-0.12515393215327164],[114,114,78,-0.1210308106481357],[114,114,79,-0.122292076920058],[114,115,64,-0.0765740643674836],[114,115,65,-0.08349969649403662],[114,115,66,-0.08898930575516624],[114,115,67,-0.09289560602487477],[114,115,68,-0.09514937331252842],[114,115,69,-0.0955153773363516],[114,115,70,-0.09568634786129518],[114,115,71,-0.10149214460414206],[114,115,72,-0.10609407894400505],[114,115,73,-0.10907347216862462],[114,115,74,-0.11264694848921529],[114,115,75,-0.1198740628891138],[114,115,76,-0.12254858558710627],[114,115,77,-0.1241135687608483],[114,115,78,-0.1238587469463205],[114,115,79,-0.12437414596573473],[114,116,64,-0.06327004134566713],[114,116,65,-0.07235139866788703],[114,116,66,-0.07707659514973322],[114,116,67,-0.0827975145783715],[114,116,68,-0.08671263811607571],[114,116,69,-0.08714955392028667],[114,116,70,-0.0889584123137872],[114,116,71,-0.09635496377863303],[114,116,72,-0.10132248418388597],[114,116,73,-0.10735628196245428],[114,116,74,-0.10973483417416433],[114,116,75,-0.11552631873250241],[114,116,76,-0.11374930112893991],[114,116,77,-0.11555713857008793],[114,116,78,-0.11523571730837313],[114,116,79,-0.11539874129344005],[114,117,64,-0.07030024084222215],[114,117,65,-0.07561967635408914],[114,117,66,-0.07889052889812985],[114,117,67,-0.08189944279118307],[114,117,68,-0.08357700727115222],[114,117,69,-0.08622648555012458],[114,117,70,-0.08843373570641269],[114,117,71,-0.09642664353783315],[114,117,72,-0.101500640771722],[114,117,73,-0.10583192821150482],[114,117,74,-0.10961276728096442],[114,117,75,-0.1122415514361624],[114,117,76,-0.10947691950358918],[114,117,77,-0.10999240518081342],[114,117,78,-0.11259858509333263],[114,117,79,-0.11062911418134619],[114,118,64,-0.07284617375930795],[114,118,65,-0.07568939230372237],[114,118,66,-0.08051187407991822],[114,118,67,-0.08393420784994857],[114,118,68,-0.08550803579694632],[114,118,69,-0.09044859842034163],[114,118,70,-0.09475300786461886],[114,118,71,-0.10130872844078516],[114,118,72,-0.10437022222436768],[114,118,73,-0.10701422252276879],[114,118,74,-0.10935766230548416],[114,118,75,-0.11354944922092944],[114,118,76,-0.1097044336694792],[114,118,77,-0.11087429208772004],[114,118,78,-0.11357821739854182],[114,118,79,-0.11398327694780223],[114,119,64,-0.06364609006330466],[114,119,65,-0.0692750128752126],[114,119,66,-0.07369984510874117],[114,119,67,-0.07707030701242693],[114,119,68,-0.08071359622239838],[114,119,69,-0.08578538089446236],[114,119,70,-0.09196293782760219],[114,119,71,-0.10149509800436349],[114,119,72,-0.10416776174349449],[114,119,73,-0.1055066131852353],[114,119,74,-0.10952390347462801],[114,119,75,-0.11265134750520733],[114,119,76,-0.10922341167265129],[114,119,77,-0.11070628660988027],[114,119,78,-0.11664101984761008],[114,119,79,-0.11663715620266564],[114,120,64,-0.06374028539699216],[114,120,65,-0.06876486667612486],[114,120,66,-0.07382457955085818],[114,120,67,-0.07745118441775357],[114,120,68,-0.08408698935266971],[114,120,69,-0.08631298909008363],[114,120,70,-0.09438038982797747],[114,120,71,-0.10492895916936193],[114,120,72,-0.1080850584833052],[114,120,73,-0.10987606582609752],[114,120,74,-0.11152812690154162],[114,120,75,-0.11188641780248228],[114,120,76,-0.11039290820292236],[114,120,77,-0.11251705661095227],[114,120,78,-0.11869340798801878],[114,120,79,-0.1204936021854019],[114,121,64,-0.05364275772197271],[114,121,65,-0.06193920607033481],[114,121,66,-0.07181998534464915],[114,121,67,-0.07804827598020396],[114,121,68,-0.08377852846116698],[114,121,69,-0.08682042939866218],[114,121,70,-0.09497462226691715],[114,121,71,-0.10313214690919997],[114,121,72,-0.10858051756581716],[114,121,73,-0.11352306680396532],[114,121,74,-0.11454113633582497],[114,121,75,-0.11189593123923505],[114,121,76,-0.11196279045737684],[114,121,77,-0.1193191468152695],[114,121,78,-0.12758484772161705],[114,121,79,-0.13243928926151666],[114,122,64,-0.05590272000325373],[114,122,65,-0.06875796303426594],[114,122,66,-0.07766134998902186],[114,122,67,-0.08343664675255058],[114,122,68,-0.08944017969919851],[114,122,69,-0.09263161808008433],[114,122,70,-0.10283176157803797],[114,122,71,-0.10750960899200379],[114,122,72,-0.11550813295158745],[114,122,73,-0.12169329690065733],[114,122,74,-0.12220499282897146],[114,122,75,-0.1173688310534536],[114,122,76,-0.12099847199043486],[114,122,77,-0.12649475944459465],[114,122,78,-0.1339272341406532],[114,122,79,-0.13516516338317586],[114,123,64,-0.0533923722695529],[114,123,65,-0.06907154754263509],[114,123,66,-0.07995001305509804],[114,123,67,-0.08585468691194989],[114,123,68,-0.09056376624696583],[114,123,69,-0.09660128415278467],[114,123,70,-0.10415780496817666],[114,123,71,-0.10754648866417776],[114,123,72,-0.11666797905312101],[114,123,73,-0.12273383581501993],[114,123,74,-0.12111796279023682],[114,123,75,-0.11862734679125059],[114,123,76,-0.12172242695309997],[114,123,77,-0.1298306442383832],[114,123,78,-0.13632932305258993],[114,123,79,-0.13480076136221236],[114,124,64,-0.050693493403893376],[114,124,65,-0.06838869439857348],[114,124,66,-0.08169121685556933],[114,124,67,-0.08854245955160359],[114,124,68,-0.09520729659261222],[114,124,69,-0.09937798399062334],[114,124,70,-0.10667987395319259],[114,124,71,-0.11194294625077639],[114,124,72,-0.12155944995009427],[114,124,73,-0.12540761479606916],[114,124,74,-0.12402985360873864],[114,124,75,-0.12336231014415773],[114,124,76,-0.12603453273597515],[114,124,77,-0.1338544730364235],[114,124,78,-0.1404285847292902],[114,124,79,-0.1426238280397976],[114,125,64,-0.04911157294159501],[114,125,65,-0.06772422530377964],[114,125,66,-0.0812652829485092],[114,125,67,-0.08837083883610332],[114,125,68,-0.09691986852312419],[114,125,69,-0.1036473483216882],[114,125,70,-0.11047960387167013],[114,125,71,-0.11561164849774676],[114,125,72,-0.12280030098810824],[114,125,73,-0.12540829559451971],[114,125,74,-0.12424804922145616],[114,125,75,-0.12511001709267983],[114,125,76,-0.12983185898708777],[114,125,77,-0.13374005862796917],[114,125,78,-0.1424841088483156],[114,125,79,-0.15413090768934762],[114,126,64,-0.04814901211588651],[114,126,65,-0.06445348113450873],[114,126,66,-0.0789572417492454],[114,126,67,-0.08863232004421226],[114,126,68,-0.09942245213068113],[114,126,69,-0.10796895781890993],[114,126,70,-0.11492040989679142],[114,126,71,-0.11782166790503891],[114,126,72,-0.1240511836419958],[114,126,73,-0.12485872723180497],[114,126,74,-0.12628102054636844],[114,126,75,-0.12659855253295835],[114,126,76,-0.13141999912216248],[114,126,77,-0.13577406721113996],[114,126,78,-0.1681037572032421],[114,126,79,-0.20275488821017576],[114,127,64,-0.039072907194957394],[114,127,65,-0.05658408944486966],[114,127,66,-0.0708381027246977],[114,127,67,-0.08498169160488986],[114,127,68,-0.09422228968823948],[114,127,69,-0.1042572955823275],[114,127,70,-0.11071538928244112],[114,127,71,-0.11686368802275898],[114,127,72,-0.12048604215657543],[114,127,73,-0.12517884193478127],[114,127,74,-0.12583285850881082],[114,127,75,-0.12702971430425217],[114,127,76,-0.129571665647368],[114,127,77,-0.13458036836574505],[114,127,78,-0.16312995736969937],[114,127,79,-0.18445161734539822],[114,128,64,-0.03977585823268615],[114,128,65,-0.05788229934777052],[114,128,66,-0.0714867338389579],[114,128,67,-0.0855710287494703],[114,128,68,-0.09542575073715276],[114,128,69,-0.10582064922410521],[114,128,70,-0.11223565460850539],[114,128,71,-0.11733958755045851],[114,128,72,-0.12333692783246988],[114,128,73,-0.1255495492287516],[114,128,74,-0.12828722916283608],[114,128,75,-0.1298355376772381],[114,128,76,-0.13235293316330754],[114,128,77,-0.13211260678846476],[114,128,78,-0.17891231748364095],[114,128,79,-0.1994889078314669],[114,129,64,-0.039142863943146845],[114,129,65,-0.05790519561954552],[114,129,66,-0.0747444353654164],[114,129,67,-0.09227004628834937],[114,129,68,-0.10598777437976284],[114,129,69,-0.11582641959389008],[114,129,70,-0.11761919933044393],[114,129,71,-0.11979618009684087],[114,129,72,-0.12031853234559993],[114,129,73,-0.11985078304956504],[114,129,74,-0.11835271217165327],[114,129,75,-0.1227178702516376],[114,129,76,-0.1254363015129768],[114,129,77,-0.12223259882460878],[114,129,78,-0.1545102551611897],[114,129,79,-0.16411712228356995],[114,130,64,-0.043785083247123206],[114,130,65,-0.06285582405874507],[114,130,66,-0.07881733442175733],[114,130,67,-0.09656426404142987],[114,130,68,-0.11167423402382345],[114,130,69,-0.12084043253730085],[114,130,70,-0.12467170577621181],[114,130,71,-0.12619698833752468],[114,130,72,-0.12552513690142245],[114,130,73,-0.12436001149401868],[114,130,74,-0.1628392977302648],[114,130,75,-0.20795514085817773],[114,130,76,-0.2650229417019666],[114,130,77,-0.2798142611109262],[114,130,78,-0.2842687358485682],[114,130,79,-0.28697707374117365],[114,131,64,-0.04368374513353766],[114,131,65,-0.06335918630998491],[114,131,66,-0.08107432763446995],[114,131,67,-0.09756434693244342],[114,131,68,-0.11015294817123962],[114,131,69,-0.11936266755656093],[114,131,70,-0.12411345201335061],[114,131,71,-0.12960560592756915],[114,131,72,-0.12583653364939837],[114,131,73,-0.1495661940549018],[114,131,74,-0.19235276044194294],[114,131,75,-0.23944823383946262],[114,131,76,-0.2726045982408417],[114,131,77,-0.2748223905712679],[114,131,78,-0.27913871909023946],[114,131,79,-0.2833528901515675],[114,132,64,-0.033745532470709536],[114,132,65,-0.0534358766433608],[114,132,66,-0.07472551083982942],[114,132,67,-0.08986741217324559],[114,132,68,-0.10320123290149005],[114,132,69,-0.11601550058956714],[114,132,70,-0.12555226792073615],[114,132,71,-0.12986775602668119],[114,132,72,-0.12917458579165567],[114,132,73,-0.14931730158952472],[114,132,74,-0.1944879997891979],[114,132,75,-0.23806206543342706],[114,132,76,-0.26492088233698774],[114,132,77,-0.2696756207555831],[114,132,78,-0.27178392435967197],[114,132,79,-0.2784742632177961],[114,133,64,-0.04261699511531797],[114,133,65,-0.055054376637289314],[114,133,66,-0.06896027482740269],[114,133,67,-0.07815460105893984],[114,133,68,-0.0904047330158846],[114,133,69,-0.10616868474232598],[114,133,70,-0.11893417002380738],[114,133,71,-0.12723133051735716],[114,133,72,-0.15218243544332305],[114,133,73,-0.16815819754791386],[114,133,74,-0.18779308032893696],[114,133,75,-0.21554951944721512],[114,133,76,-0.25507389764294763],[114,133,77,-0.2629683283160661],[114,133,78,-0.2647123869550482],[114,133,79,-0.2705984416029884],[114,134,64,-0.04259399224588628],[114,134,65,-0.05559260206272054],[114,134,66,-0.06946690677675095],[114,134,67,-0.07583286046580706],[114,134,68,-0.0887406013566544],[114,134,69,-0.10481101078741942],[114,134,70,-0.12042420540162],[114,134,71,-0.1286595348016637],[114,134,72,-0.1628872178963251],[114,134,73,-0.17675428164121185],[114,134,74,-0.1894814207452153],[114,134,75,-0.20913483466766225],[114,134,76,-0.2517646691360112],[114,134,77,-0.254257905360941],[114,134,78,-0.25819333279047385],[114,134,79,-0.26530951152318927],[114,135,64,-0.036743574714951314],[114,135,65,-0.051333532620848055],[114,135,66,-0.06411734394438828],[114,135,67,-0.07326916161894964],[114,135,68,-0.08512114959401403],[114,135,69,-0.10104382835034058],[114,135,70,-0.11601455125723331],[114,135,71,-0.12506434422969703],[114,135,72,-0.1500096594164898],[114,135,73,-0.16111793777206496],[114,135,74,-0.17455882853183144],[114,135,75,-0.18794501616051515],[114,135,76,-0.2348229863688896],[114,135,77,-0.2476223291946719],[114,135,78,-0.24987454673655846],[114,135,79,-0.25986692907081066],[114,136,64,-0.036650580411516434],[114,136,65,-0.05150204701122538],[114,136,66,-0.06377921642484806],[114,136,67,-0.07489852482346009],[114,136,68,-0.08464351581785294],[114,136,69,-0.10072668574445581],[114,136,70,-0.11456138831305537],[114,136,71,-0.1265637387155334],[114,136,72,-0.15996351484805083],[114,136,73,-0.17295007622568073],[114,136,74,-0.17830368548955727],[114,136,75,-0.19794656929139123],[114,136,76,-0.24986480110365056],[114,136,77,-0.2541460422964646],[114,136,78,-0.2574794536313649],[114,136,79,-0.26688591116724314],[114,137,64,-0.03863588323573466],[114,137,65,-0.054801911035605416],[114,137,66,-0.06593932622648607],[114,137,67,-0.07478628105629608],[114,137,68,-0.0849410741259638],[114,137,69,-0.10171745133317017],[114,137,70,-0.11593138729886267],[114,137,71,-0.1272771144501028],[114,137,72,-0.15535536921984663],[114,137,73,-0.165275649108541],[114,137,74,-0.16685358725592842],[114,137,75,-0.18653263879742785],[114,137,76,-0.22587007960598038],[114,137,77,-0.24104103412023142],[114,137,78,-0.24574786281692668],[114,137,79,-0.25496107199839024],[114,138,64,-0.044009909759381086],[114,138,65,-0.060470612750572555],[114,138,66,-0.07339285618849489],[114,138,67,-0.08013648688286525],[114,138,68,-0.09231794285030821],[114,138,69,-0.10592426758778789],[114,138,70,-0.11932874969223979],[114,138,71,-0.13206564799308146],[114,138,72,-0.14293919357149681],[114,138,73,-0.15418545802094025],[114,138,74,-0.16118654746449002],[114,138,75,-0.1839820697000552],[114,138,76,-0.22145764848781696],[114,138,77,-0.24161265581652283],[114,138,78,-0.24885258343796687],[114,138,79,-0.2576924104167091],[114,139,64,-0.04655372367002415],[114,139,65,-0.06266223990439872],[114,139,66,-0.07781817391333909],[114,139,67,-0.08345595246808166],[114,139,68,-0.09538147430046492],[114,139,69,-0.1043048927572377],[114,139,70,-0.11815002962456295],[114,139,71,-0.13053528373545772],[114,139,72,-0.1483015468725967],[114,139,73,-0.1670176269716098],[114,139,74,-0.17953676916802364],[114,139,75,-0.20762750435656704],[114,139,76,-0.23255106319306879],[114,139,77,-0.23774764046621388],[114,139,78,-0.24762177176649391],[114,139,79,-0.25584340933546385],[114,140,64,-0.05843537641095395],[114,140,65,-0.07325276444560222],[114,140,66,-0.08541867485568475],[114,140,67,-0.08861094751434435],[114,140,68,-0.0958214269311366],[114,140,69,-0.1041613675010904],[114,140,70,-0.11364882516664539],[114,140,71,-0.12485750539759567],[114,140,72,-0.13766592313604742],[114,140,73,-0.16208501646480802],[114,140,74,-0.1828864374657949],[114,140,75,-0.21276337119889852],[114,140,76,-0.23316734656513383],[114,140,77,-0.23559257074290085],[114,140,78,-0.2458129613708168],[114,140,79,-0.25673029367951805],[114,141,64,-0.06849177568145012],[114,141,65,-0.07948780292447852],[114,141,66,-0.08959524867504504],[114,141,67,-0.09292566745539596],[114,141,68,-0.09649561255950156],[114,141,69,-0.10613065675276706],[114,141,70,-0.11734544509643954],[114,141,71,-0.1291489707328086],[114,141,72,-0.13921753846455287],[114,141,73,-0.1601266511786024],[114,141,74,-0.19273527771776494],[114,141,75,-0.21766857685212962],[114,141,76,-0.22438940140774827],[114,141,77,-0.22714282376128908],[114,141,78,-0.2375941711610704],[114,141,79,-0.24803075733439717],[114,142,64,-0.07090702569860312],[114,142,65,-0.08133777170295853],[114,142,66,-0.09042274656042787],[114,142,67,-0.09472432738596763],[114,142,68,-0.09716339083404998],[114,142,69,-0.106095174110161],[114,142,70,-0.11562006481541008],[114,142,71,-0.12947654295785882],[114,142,72,-0.13967586924791936],[114,142,73,-0.15685355976673734],[114,142,74,-0.19256604457610674],[114,142,75,-0.21352303994377203],[114,142,76,-0.2212966399423244],[114,142,77,-0.22588195855416293],[114,142,78,-0.2363640463074682],[114,142,79,-0.24695368822447109],[114,143,64,-0.06477796511118211],[114,143,65,-0.07985264934769234],[114,143,66,-0.08515701490159597],[114,143,67,-0.08872803171290082],[114,143,68,-0.0929096396820301],[114,143,69,-0.10076819669307922],[114,143,70,-0.11268454593357645],[114,143,71,-0.12488164277855837],[114,143,72,-0.13431288569726657],[114,143,73,-0.14357904835280605],[114,143,74,-0.17716728497118653],[114,143,75,-0.2044262803868507],[114,143,76,-0.2143230257625035],[114,143,77,-0.21872095807270625],[114,143,78,-0.2286885511090353],[114,143,79,-0.23789336983071388],[114,144,64,-0.06620801360952733],[114,144,65,-0.0799023833819142],[114,144,66,-0.08652716900091462],[114,144,67,-0.08884823409394466],[114,144,68,-0.09377475996372106],[114,144,69,-0.09919004661457104],[114,144,70,-0.11124191099697242],[114,144,71,-0.12246206758822818],[114,144,72,-0.13297653386804348],[114,144,73,-0.14202855809263412],[114,144,74,-0.18090627762184966],[114,144,75,-0.21471733729257775],[114,144,76,-0.223079954007139],[114,144,77,-0.22929232143160883],[114,144,78,-0.23622729728145125],[114,144,79,-0.2437748713787039],[114,145,64,-0.05607764343759302],[114,145,65,-0.07230362312668964],[114,145,66,-0.08277021777725942],[114,145,67,-0.08754373174632551],[114,145,68,-0.09411539286564377],[114,145,69,-0.09979769253455233],[114,145,70,-0.10878580556526504],[114,145,71,-0.11534186725020654],[114,145,72,-0.12625257272230198],[114,145,73,-0.12875399538430515],[114,145,74,-0.13248290188453588],[114,145,75,-0.1532284527418451],[114,145,76,-0.17923195174978981],[114,145,77,-0.18304580637373533],[114,145,78,-0.18824171723424668],[114,145,79,-0.19563069859560855],[114,146,64,-0.06060719084942691],[114,146,65,-0.0779740970922277],[114,146,66,-0.08774280274439032],[114,146,67,-0.09205306631627619],[114,146,68,-0.09708756671861846],[114,146,69,-0.10509961267330109],[114,146,70,-0.11269544872319778],[114,146,71,-0.11890489122644385],[114,146,72,-0.12996381525420508],[114,146,73,-0.13258262263703732],[114,146,74,-0.13488813821449364],[114,146,75,-0.14542951840390606],[114,146,76,-0.16780407553012122],[114,146,77,-0.17219140518973958],[114,146,78,-0.17764456719718516],[114,146,79,-0.187264103385367],[114,147,64,-0.06346972228791921],[114,147,65,-0.0787443903765093],[114,147,66,-0.08796279238284502],[114,147,67,-0.09176265666021924],[114,147,68,-0.0998707131996103],[114,147,69,-0.10446946714158756],[114,147,70,-0.11296493054319472],[114,147,71,-0.11645272633673259],[114,147,72,-0.12864181373445616],[114,147,73,-0.13300958447000588],[114,147,74,-0.13425152023223913],[114,147,75,-0.12894186981899047],[114,147,76,-0.10158193843752215],[114,147,77,-0.10435256844524698],[114,147,78,-0.11152576969616831],[114,147,79,-0.11855207856503375],[114,148,64,-0.043640948613690056],[114,148,65,-0.05476186677188122],[114,148,66,-0.06179171241936385],[114,148,67,-0.05923796826677173],[114,148,68,-0.06481587350538184],[114,148,69,-0.0674216379130366],[114,148,70,-0.07201436450471928],[114,148,71,-0.07548841225482497],[114,148,72,-0.08455835253376363],[114,148,73,-0.09019848640406536],[114,148,74,-0.09238635879603443],[114,148,75,-0.096618095210323],[114,148,76,-0.0860848009404873],[114,148,77,-0.07435907307353698],[114,148,78,-0.06882247247971379],[114,148,79,-0.07633854146709794],[114,149,64,-0.047084193415646104],[114,149,65,-0.057492903893980055],[114,149,66,-0.06527647502134384],[114,149,67,-0.06364477949520547],[114,149,68,-0.06655472050228375],[114,149,69,-0.0671864236170662],[114,149,70,-0.07243148762656641],[114,149,71,-0.07752482698749726],[114,149,72,-0.08744299799486652],[114,149,73,-0.09155176405497022],[114,149,74,-0.09603219693777607],[114,149,75,-0.09863118637974524],[114,149,76,-0.08959626976406203],[114,149,77,-0.08178596599375619],[114,149,78,-0.07849135706223441],[114,149,79,-0.08630406026559634],[114,150,64,-0.050296620309266626],[114,150,65,-0.06111375078447068],[114,150,66,-0.06781149845387925],[114,150,67,-0.06692584857031707],[114,150,68,-0.06859616673654806],[114,150,69,-0.07129102709015547],[114,150,70,-0.07225719626240806],[114,150,71,-0.08039042569789237],[114,150,72,-0.08829487681346793],[114,150,73,-0.09486494744074045],[114,150,74,-0.09711818967166033],[114,150,75,-0.09904032909895016],[114,150,76,-0.09291130990674776],[114,150,77,-0.08380800482540261],[114,150,78,-0.0795723814697321],[114,150,79,-0.0846196907208419],[114,151,64,-0.04810111969838335],[114,151,65,-0.058174098361493495],[114,151,66,-0.06594594269892115],[114,151,67,-0.06401394327438603],[114,151,68,-0.06871598140939639],[114,151,69,-0.07350696788795151],[114,151,70,-0.07310345040987297],[114,151,71,-0.07848522002937694],[114,151,72,-0.08680541123164137],[114,151,73,-0.09389704408539125],[114,151,74,-0.09834113908964098],[114,151,75,-0.10155758664024561],[114,151,76,-0.10547482584428541],[114,151,77,-0.09118580643547171],[114,151,78,-0.08538606588831632],[114,151,79,-0.09024683012734111],[114,152,64,-0.053222503308214056],[114,152,65,-0.060527726748826505],[114,152,66,-0.06896979569837842],[114,152,67,-0.06993961727588775],[114,152,68,-0.07322219558270314],[114,152,69,-0.078027600071504],[114,152,70,-0.07772247169781657],[114,152,71,-0.07994241695607196],[114,152,72,-0.0863954128433481],[114,152,73,-0.09342399317111633],[114,152,74,-0.0992124433463896],[114,152,75,-0.10139025163291851],[114,152,76,-0.10714360231013503],[114,152,77,-0.09112220733036822],[114,152,78,-0.08478194536959138],[114,152,79,-0.08738767734051867],[114,153,64,-0.06431772729894888],[114,153,65,-0.0687259322990384],[114,153,66,-0.06717098297333764],[114,153,67,-0.06590314197251963],[114,153,68,-0.06757266262428124],[114,153,69,-0.07112615107400433],[114,153,70,-0.0745447934281355],[114,153,71,-0.0780370183134915],[114,153,72,-0.08359301687333894],[114,153,73,-0.09480017892361683],[114,153,74,-0.10113444926899551],[114,153,75,-0.10416830605435572],[114,153,76,-0.10716076516574635],[114,153,77,-0.08653756504254374],[114,153,78,-0.07597812778716584],[114,153,79,-0.07864984644152145],[114,154,64,-0.07205938911340368],[114,154,65,-0.07735892335360679],[114,154,66,-0.07420826893831778],[114,154,67,-0.07295380195483858],[114,154,68,-0.07392391259282897],[114,154,69,-0.0772514867664734],[114,154,70,-0.08124977715209017],[114,154,71,-0.08405996176809157],[114,154,72,-0.08862260670407562],[114,154,73,-0.09902853750904467],[114,154,74,-0.1062021049354025],[114,154,75,-0.10956437592960111],[114,154,76,-0.11905662126723301],[114,154,77,-0.0966796942070012],[114,154,78,-0.07938755630790156],[114,154,79,-0.07825977721582787],[114,155,64,-0.07538592211501563],[114,155,65,-0.0800982600079146],[114,155,66,-0.07533051983163348],[114,155,67,-0.07412438306108257],[114,155,68,-0.07738506610443267],[114,155,69,-0.07692152205770111],[114,155,70,-0.08212529615858999],[114,155,71,-0.08564624981901145],[114,155,72,-0.0898244445382444],[114,155,73,-0.10008474233046816],[114,155,74,-0.10760493445757532],[114,155,75,-0.11198008633150744],[114,155,76,-0.12139170596808771],[114,155,77,-0.10283071846818308],[114,155,78,-0.0850546206829488],[114,155,79,-0.08170480917379325],[114,156,64,-0.07648426769764952],[114,156,65,-0.08216067459810154],[114,156,66,-0.08063538678580501],[114,156,67,-0.07866754511055567],[114,156,68,-0.08296491822010922],[114,156,69,-0.08358358205920988],[114,156,70,-0.08561092747706033],[114,156,71,-0.08998640251073066],[114,156,72,-0.09477587637994436],[114,156,73,-0.10625731519926634],[114,156,74,-0.11363131440488615],[114,156,75,-0.12053606495407208],[114,156,76,-0.10950221912424365],[114,156,77,-0.09815620493022861],[114,156,78,-0.08323523668638563],[114,156,79,-0.07840209106346369],[114,157,64,-0.06788866974324403],[114,157,65,-0.07903474129456459],[114,157,66,-0.08642471978485142],[114,157,67,-0.08930791568145252],[114,157,68,-0.09423018844932113],[114,157,69,-0.09493939912614788],[114,157,70,-0.09419430916169931],[114,157,71,-0.09697364858542831],[114,157,72,-0.09838573044738622],[114,157,73,-0.10884912455274812],[114,157,74,-0.11635309672054464],[114,157,75,-0.12342408585620417],[114,157,76,-0.10720942263225587],[114,157,77,-0.09242553722018484],[114,157,78,-0.0786577797899421],[114,157,79,-0.0705773887568592],[114,158,64,-0.06564038881518788],[114,158,65,-0.07697366653112579],[114,158,66,-0.08894269935873579],[114,158,67,-0.09217605302416618],[114,158,68,-0.09677415801580413],[114,158,69,-0.09492897634408612],[114,158,70,-0.09185149170922347],[114,158,71,-0.09733790282804308],[114,158,72,-0.1009264463628048],[114,158,73,-0.1105758364583065],[114,158,74,-0.11934673238822421],[114,158,75,-0.11977435608319463],[114,158,76,-0.10728964210303567],[114,158,77,-0.08475050525044403],[114,158,78,-0.06869082974878715],[114,158,79,-0.06158298209231845],[114,159,64,-0.13736820746483028],[114,159,65,-0.14358318617476074],[114,159,66,-0.15001534238526576],[114,159,67,-0.1484851321363464],[114,159,68,-0.1450989894021656],[114,159,69,-0.1340444120586931],[114,159,70,-0.12318525398684006],[114,159,71,-0.12324573059487426],[114,159,72,-0.11911770676450076],[114,159,73,-0.11961325372384929],[114,159,74,-0.11928985822828989],[114,159,75,-0.11839997151897577],[114,159,76,-0.1078039365944728],[114,159,77,-0.07729321285869575],[114,159,78,-0.06364621438270684],[114,159,79,-0.05750767716905833],[114,160,64,-0.13800002505194275],[114,160,65,-0.14334345864850603],[114,160,66,-0.14867457116163932],[114,160,67,-0.1471066695062723],[114,160,68,-0.14266089990284808],[114,160,69,-0.13511696402511],[114,160,70,-0.12396971347030769],[114,160,71,-0.12305331440918657],[114,160,72,-0.12083625160774034],[114,160,73,-0.11808615455404678],[114,160,74,-0.11924245324025584],[114,160,75,-0.119200923197228],[114,160,76,-0.10884446306302811],[114,160,77,-0.074915125153766],[114,160,78,-0.0612499498147026],[114,160,79,-0.054885819022731784],[114,161,64,-0.13663546608361474],[114,161,65,-0.1431664962201991],[114,161,66,-0.1466333914095851],[114,161,67,-0.14420833525231086],[114,161,68,-0.1393864051805987],[114,161,69,-0.1349742276626021],[114,161,70,-0.12493941255107557],[114,161,71,-0.12323229245406359],[114,161,72,-0.12070391788754517],[114,161,73,-0.12068982994813202],[114,161,74,-0.11965712004271184],[114,161,75,-0.11801027438541575],[114,161,76,-0.10551945672666291],[114,161,77,-0.06756728012012975],[114,161,78,-0.05193768953706355],[114,161,79,-0.049858407034597305],[114,162,64,-0.14263932363256202],[114,162,65,-0.14950485146551534],[114,162,66,-0.15020200802552167],[114,162,67,-0.14451233399631802],[114,162,68,-0.141510236170964],[114,162,69,-0.13917893281030297],[114,162,70,-0.13105837876180837],[114,162,71,-0.12885617009619882],[114,162,72,-0.12645114704379257],[114,162,73,-0.12416194443865468],[114,162,74,-0.12677624290135087],[114,162,75,-0.1229404703629398],[114,162,76,-0.11311856251347441],[114,162,77,-0.0777311149365721],[114,162,78,-0.061732108717792375],[114,162,79,-0.05995267098082156],[114,163,64,-0.14257733857939897],[114,163,65,-0.14847597072151691],[114,163,66,-0.14732514061249813],[114,163,67,-0.14317604967248754],[114,163,68,-0.1401095726501641],[114,163,69,-0.1365730036632449],[114,163,70,-0.1293915870507251],[114,163,71,-0.12926503179893975],[114,163,72,-0.1296842579665769],[114,163,73,-0.12481315767969284],[114,163,74,-0.12633141752386148],[114,163,75,-0.12232427866479928],[114,163,76,-0.11543667772995243],[114,163,77,-0.09176343343864307],[114,163,78,-0.07464469081268155],[114,163,79,-0.07314369558126232],[114,164,64,-0.11952169304086113],[114,164,65,-0.12467013270854926],[114,164,66,-0.1277296184008875],[114,164,67,-0.12486055305529808],[114,164,68,-0.1265534744741011],[114,164,69,-0.12298620703366761],[114,164,70,-0.11762849207058668],[114,164,71,-0.11703539670638996],[114,164,72,-0.11922576739103732],[114,164,73,-0.11686507932453713],[114,164,74,-0.11368588750465028],[114,164,75,-0.1109408131057932],[114,164,76,-0.10309394490653306],[114,164,77,-0.08318733152579431],[114,164,78,-0.0695639825057293],[114,164,79,-0.0696825658835668],[114,165,64,-0.1114936561977353],[114,165,65,-0.11340500784831357],[114,165,66,-0.11414492423500719],[114,165,67,-0.11605631373336862],[114,165,68,-0.1162389614429602],[114,165,69,-0.11108388380923709],[114,165,70,-0.10714172922407267],[114,165,71,-0.10937563923933408],[114,165,72,-0.11518991157060446],[114,165,73,-0.11705374892988728],[114,165,74,-0.11336652983168989],[114,165,75,-0.11006593035902362],[114,165,76,-0.09945533745229551],[114,165,77,-0.07832529668790898],[114,165,78,-0.06697673159899867],[114,165,79,-0.07017285760742321],[114,166,64,-0.10902364064383438],[114,166,65,-0.114932282340118],[114,166,66,-0.11308913834677164],[114,166,67,-0.11553955489201942],[114,166,68,-0.11520379760965165],[114,166,69,-0.11002224411509778],[114,166,70,-0.10877635865928909],[114,166,71,-0.10990769918976137],[114,166,72,-0.11398035931527215],[114,166,73,-0.11827078442745784],[114,166,74,-0.11559036284850295],[114,166,75,-0.1102906989538055],[114,166,76,-0.09800362357988224],[114,166,77,-0.08120505993268892],[114,166,78,-0.07150113070880433],[114,166,79,-0.0714523197435514],[114,167,64,-0.10209828431153851],[114,167,65,-0.10786526235377496],[114,167,66,-0.10865947122205397],[114,167,67,-0.11229131936834794],[114,167,68,-0.11006627518396495],[114,167,69,-0.1075700876178648],[114,167,70,-0.10718958612192162],[114,167,71,-0.10834158845278744],[114,167,72,-0.1121889187895127],[114,167,73,-0.11819036918232169],[114,167,74,-0.11626193597286642],[114,167,75,-0.11048126257523852],[114,167,76,-0.0969426034651436],[114,167,77,-0.08623905228938551],[114,167,78,-0.07156696687865952],[114,167,79,-0.07073833494108653],[114,168,64,-0.10224172933390341],[114,168,65,-0.10932887744653107],[114,168,66,-0.1084544524579933],[114,168,67,-0.11182914848591258],[114,168,68,-0.11050580674456473],[114,168,69,-0.10789632917553965],[114,168,70,-0.1064972092094773],[114,168,71,-0.11067208899356362],[114,168,72,-0.11142838658841112],[114,168,73,-0.1148428826500146],[114,168,74,-0.11465425453159542],[114,168,75,-0.10816541487302135],[114,168,76,-0.09782293463657618],[114,168,77,-0.08381321128834733],[114,168,78,-0.06988877037782926],[114,168,79,-0.06852655272777015],[114,169,64,-0.11273163872808276],[114,169,65,-0.11781647178640411],[114,169,66,-0.11894563785906959],[114,169,67,-0.1214139335573988],[114,169,68,-0.12145027768332294],[114,169,69,-0.11807290263197184],[114,169,70,-0.11540312216458434],[114,169,71,-0.11826259872550587],[114,169,72,-0.1174186657309361],[114,169,73,-0.11636151743515624],[114,169,74,-0.1111575875608808],[114,169,75,-0.10629581762130258],[114,169,76,-0.09941732256679701],[114,169,77,-0.08892076622358279],[114,169,78,-0.07096204002645339],[114,169,79,-0.06716776157222396],[114,170,64,-0.11902352238943531],[114,170,65,-0.12294313954747838],[114,170,66,-0.1252932596753843],[114,170,67,-0.12806606301048937],[114,170,68,-0.12615668179717],[114,170,69,-0.12534532353555125],[114,170,70,-0.12489193250366348],[114,170,71,-0.12552130911553572],[114,170,72,-0.12218209072886643],[114,170,73,-0.11880979958423349],[114,170,74,-0.11556734170614943],[114,170,75,-0.11033355009577744],[114,170,76,-0.1044174736314492],[114,170,77,-0.09986303725011578],[114,170,78,-0.07380203955124728],[114,170,79,-0.06860321263808408],[114,171,64,-0.1197188739732818],[114,171,65,-0.12340322144248608],[114,171,66,-0.12668491475576416],[114,171,67,-0.1295920552063006],[114,171,68,-0.1262312024638695],[114,171,69,-0.12713355420005612],[114,171,70,-0.12612731404752978],[114,171,71,-0.1286341348238955],[114,171,72,-0.1233697879678017],[114,171,73,-0.11732286996719567],[114,171,74,-0.11520129508569464],[114,171,75,-0.1119924327780748],[114,171,76,-0.10723807154500585],[114,171,77,-0.09650689790813724],[114,171,78,-0.06583238960789034],[114,171,79,-0.06270113581791474],[114,172,64,-0.12137017773207102],[114,172,65,-0.127565079281451],[114,172,66,-0.13011727828839864],[114,172,67,-0.13408932363721687],[114,172,68,-0.1324259825224497],[114,172,69,-0.1324532411717232],[114,172,70,-0.13165876233307386],[114,172,71,-0.13386364102797568],[114,172,72,-0.1281383607373255],[114,172,73,-0.12013439867312975],[114,172,74,-0.11983536257980362],[114,172,75,-0.1176402577248643],[114,172,76,-0.11302800518766598],[114,172,77,-0.09665332066587057],[114,172,78,-0.053664142107084076],[114,172,79,-0.04401684556498431],[114,173,64,-0.12360110870716629],[114,173,65,-0.1281271433594209],[114,173,66,-0.13135115740627698],[114,173,67,-0.13360068114091472],[114,173,68,-0.13314234862835367],[114,173,69,-0.13463157251187394],[114,173,70,-0.13267322284070582],[114,173,71,-0.13162473617574733],[114,173,72,-0.12707699430614688],[114,173,73,-0.12073830273451482],[114,173,74,-0.11853824304219066],[114,173,75,-0.11689256210457868],[114,173,76,-0.11334650354263243],[114,173,77,-0.0926169863153811],[114,173,78,-0.051088582406232506],[114,173,79,-0.0382004417879887],[114,174,64,-0.12171769506564348],[114,174,65,-0.12687122539798518],[114,174,66,-0.13135084616688694],[114,174,67,-0.13269557670602786],[114,174,68,-0.1319498019073459],[114,174,69,-0.13307260285219816],[114,174,70,-0.13015442912952305],[114,174,71,-0.12796617828146079],[114,174,72,-0.12450763968630602],[114,174,73,-0.12113452780208335],[114,174,74,-0.12104662564474095],[114,174,75,-0.11578133336142568],[114,174,76,-0.11400460239412807],[114,174,77,-0.09261873977545501],[114,174,78,-0.05362324238442301],[114,174,79,-0.03705554378793906],[114,175,64,-0.1114129962204577],[114,175,65,-0.11787256641242302],[114,175,66,-0.1227311311249182],[114,175,67,-0.12517310916324043],[114,175,68,-0.1288562329343329],[114,175,69,-0.13023804325359062],[114,175,70,-0.12398793753237418],[114,175,71,-0.12248651266171867],[114,175,72,-0.12090634717183574],[114,175,73,-0.11995742314304453],[114,175,74,-0.12212560188130069],[114,175,75,-0.1192328523538729],[114,175,76,-0.11904963829293855],[114,175,77,-0.11827322028483966],[114,175,78,-0.11786224682328245],[114,175,79,-0.09236272240724924],[114,176,64,-0.10846487869809013],[114,176,65,-0.11455281006483505],[114,176,66,-0.11981883382113687],[114,176,67,-0.12083562660215603],[114,176,68,-0.126377808066104],[114,176,69,-0.1269465826677595],[114,176,70,-0.12158408098229508],[114,176,71,-0.11937955956567753],[114,176,72,-0.12241216133823035],[114,176,73,-0.12250490971522068],[114,176,74,-0.12148938376600794],[114,176,75,-0.11911823160121565],[114,176,76,-0.12108322505767592],[114,176,77,-0.11982339819124399],[114,176,78,-0.12046936502853933],[114,176,79,-0.09185638178150822],[114,177,64,-0.11123273099883457],[114,177,65,-0.11802727845552624],[114,177,66,-0.12108744668516766],[114,177,67,-0.12329509321988476],[114,177,68,-0.12923924240160345],[114,177,69,-0.13336085695579372],[114,177,70,-0.12676962384107743],[114,177,71,-0.1233848226850564],[114,177,72,-0.12439036618582744],[114,177,73,-0.12368580730786341],[114,177,74,-0.12280608811467184],[114,177,75,-0.12038230539017483],[114,177,76,-0.12468394239037625],[114,177,77,-0.12572887165851593],[114,177,78,-0.1252711586696535],[114,177,79,-0.117170006513808],[114,178,64,-0.11328931783116987],[114,178,65,-0.12186402442068142],[114,178,66,-0.12423266349289247],[114,178,67,-0.12850944460470717],[114,178,68,-0.13086310115509686],[114,178,69,-0.13863870545640927],[114,178,70,-0.13321919066739848],[114,178,71,-0.12952477159514927],[114,178,72,-0.1271786805969522],[114,178,73,-0.1280403709929083],[114,178,74,-0.12666919214773364],[114,178,75,-0.12425462211619819],[114,178,76,-0.12655343596903104],[114,178,77,-0.12965231671728408],[114,178,78,-0.12965779089776897],[114,178,79,-0.12266732685065511],[114,179,64,-0.11261432136601966],[114,179,65,-0.1172380775009763],[114,179,66,-0.12091919735217262],[114,179,67,-0.12540548268163645],[114,179,68,-0.1295056310035024],[114,179,69,-0.13542274411313157],[114,179,70,-0.1342024843553562],[114,179,71,-0.13097432203314932],[114,179,72,-0.12825629784123949],[114,179,73,-0.12697744287166124],[114,179,74,-0.1252843781599925],[114,179,75,-0.12357822403451682],[114,179,76,-0.12669061300818205],[114,179,77,-0.13074713059339318],[114,179,78,-0.12963406430231902],[114,179,79,-0.12086197861187484],[114,180,64,-0.10751908513837562],[114,180,65,-0.1107215901342806],[114,180,66,-0.11555883759897159],[114,180,67,-0.12259454532865136],[114,180,68,-0.12738561227949585],[114,180,69,-0.13253758215897954],[114,180,70,-0.13491352523430433],[114,180,71,-0.13457470284719011],[114,180,72,-0.13134101662603495],[114,180,73,-0.13012465872745882],[114,180,74,-0.12811915648629466],[114,180,75,-0.12886014738477022],[114,180,76,-0.1320873093720644],[114,180,77,-0.13611338630123776],[114,180,78,-0.13321727340429412],[114,180,79,-0.1235448046259369],[114,181,64,-0.09685243987628203],[114,181,65,-0.10123975413904276],[114,181,66,-0.10566539867866845],[114,181,67,-0.10997961131166474],[114,181,68,-0.1127794778610024],[114,181,69,-0.11816626404986105],[114,181,70,-0.12218851801262703],[114,181,71,-0.12756349693642],[114,181,72,-0.1285250831042697],[114,181,73,-0.12969980961238453],[114,181,74,-0.12727926745298726],[114,181,75,-0.13120362169546107],[114,181,76,-0.13360651021260977],[114,181,77,-0.13042012508657574],[114,181,78,-0.12181038083182184],[114,181,79,-0.11860466344157289],[114,182,64,-0.09742032272391311],[114,182,65,-0.101565999947308],[114,182,66,-0.10554229898547277],[114,182,67,-0.11038741040492839],[114,182,68,-0.11258479477952205],[114,182,69,-0.11664527828459198],[114,182,70,-0.12360184687431913],[114,182,71,-0.12705866487692558],[114,182,72,-0.12850338781683449],[114,182,73,-0.13068688887774427],[114,182,74,-0.12868542467284017],[114,182,75,-0.1337359218698847],[114,182,76,-0.13015739386149203],[114,182,77,-0.12468041589034333],[114,182,78,-0.11530332821718618],[114,182,79,-0.11168416043443945],[114,183,64,-0.0904672708792496],[114,183,65,-0.09581506310025317],[114,183,66,-0.10199426636827175],[114,183,67,-0.1059207271313454],[114,183,68,-0.11131257418041952],[114,183,69,-0.11491845141280407],[114,183,70,-0.12046738280283228],[114,183,71,-0.12495329097467103],[114,183,72,-0.1273840250138447],[114,183,73,-0.1297492158403824],[114,183,74,-0.13050190845861878],[114,183,75,-0.13388035574787863],[114,183,76,-0.1305247318921429],[114,183,77,-0.12186638157417638],[114,183,78,-0.11268600923512322],[114,183,79,-0.10792916472063259],[114,184,64,-0.08807057229772258],[114,184,65,-0.09538013631500614],[114,184,66,-0.10283951611659589],[114,184,67,-0.10640645242794866],[114,184,68,-0.11007609178889693],[114,184,69,-0.11555335919355739],[114,184,70,-0.12019355866698533],[114,184,71,-0.12563959268280503],[114,184,72,-0.1299058694427332],[114,184,73,-0.13093185906556093],[114,184,74,-0.13008945495632585],[114,184,75,-0.13319528881637427],[114,184,76,-0.12815553015150885],[114,184,77,-0.12140538422168044],[114,184,78,-0.11163629539997831],[114,184,79,-0.10889339080491939],[114,185,64,-0.09055810937484107],[114,185,65,-0.09676306500390112],[114,185,66,-0.10372337372722001],[114,185,67,-0.10818987173310415],[114,185,68,-0.11012740673986399],[114,185,69,-0.11435091032374425],[114,185,70,-0.12062017386518659],[114,185,71,-0.1267065989580312],[114,185,72,-0.1313666241242581],[114,185,73,-0.1322240938658512],[114,185,74,-0.12847873765738504],[114,185,75,-0.12935775594920806],[114,185,76,-0.12314410354303976],[114,185,77,-0.11654501719615558],[114,185,78,-0.10842919867251395],[114,185,79,-0.1040649457893709],[114,186,64,-0.09667083741000193],[114,186,65,-0.10312295420900534],[114,186,66,-0.10978076051357677],[114,186,67,-0.11395030678507093],[114,186,68,-0.11401768862126],[114,186,69,-0.12094826800926714],[114,186,70,-0.1298622617571579],[114,186,71,-0.13229910480156248],[114,186,72,-0.1372710812487927],[114,186,73,-0.13572257623302675],[114,186,74,-0.13225431877085098],[114,186,75,-0.12966136728400451],[114,186,76,-0.1278053375877942],[114,186,77,-0.12125938105330011],[114,186,78,-0.11334119962455896],[114,186,79,-0.10788697314211924],[114,187,64,-0.09783119678510172],[114,187,65,-0.1051386642765503],[114,187,66,-0.1106639136311203],[114,187,67,-0.11744318326882999],[114,187,68,-0.1162999060415833],[114,187,69,-0.12244835236508134],[114,187,70,-0.13321736913215435],[114,187,71,-0.13637556615442797],[114,187,72,-0.13571373108132495],[114,187,73,-0.13294868434808488],[114,187,74,-0.13070498623677906],[114,187,75,-0.12722113337911323],[114,187,76,-0.13035022888466313],[114,187,77,-0.12604716492098997],[114,187,78,-0.1201677579668348],[114,187,79,-0.11622192036396109],[114,188,64,-0.10205467893972445],[114,188,65,-0.11076946915635803],[114,188,66,-0.11476936460570299],[114,188,67,-0.11745845585631617],[114,188,68,-0.11786582553488727],[114,188,69,-0.12218124793417616],[114,188,70,-0.1294246995676163],[114,188,71,-0.13419243598363859],[114,188,72,-0.13061934793839797],[114,188,73,-0.12492638393752373],[114,188,74,-0.12456693661329818],[114,188,75,-0.1203249231668259],[114,188,76,-0.12932943929926108],[114,188,77,-0.12391804979807981],[114,188,78,-0.12230274556923573],[114,188,79,-0.11625413936570636],[114,189,64,-0.09874849080283307],[114,189,65,-0.11251220322994748],[114,189,66,-0.12079206291352457],[114,189,67,-0.12709380483304403],[114,189,68,-0.1288460262044876],[114,189,69,-0.13331475185644368],[114,189,70,-0.13910917792136945],[114,189,71,-0.14202527097499631],[114,189,72,-0.13354197296068937],[114,189,73,-0.12454582102484918],[114,189,74,-0.12205908037682395],[114,189,75,-0.11891198619436906],[114,189,76,-0.1205640382629559],[114,189,77,-0.11796163831618404],[114,189,78,-0.11607400671117804],[114,189,79,-0.10866175975675683],[114,190,64,-0.10109407533827902],[114,190,65,-0.11164403278046],[114,190,66,-0.12194228884510294],[114,190,67,-0.1302204116583705],[114,190,68,-0.13060220009413537],[114,190,69,-0.13437332639278862],[114,190,70,-0.13847721796483925],[114,190,71,-0.1385383601216381],[114,190,72,-0.13347001787040905],[114,190,73,-0.1249262794531045],[114,190,74,-0.11987034722536954],[114,190,75,-0.11882536220646876],[114,190,76,-0.11670631439876943],[114,190,77,-0.11457893519440879],[114,190,78,-0.11114616659848087],[114,190,79,-0.10568079734554689],[114,191,64,-0.09982718647314437],[114,191,65,-0.11089559186014081],[114,191,66,-0.12165403315485511],[114,191,67,-0.12885618522002668],[114,191,68,-0.13071637694490235],[114,191,69,-0.13042889823350456],[114,191,70,-0.13260400143726353],[114,191,71,-0.13497718903771252],[114,191,72,-0.12934882883556081],[114,191,73,-0.1208157537681582],[114,191,74,-0.11961209717171672],[114,191,75,-0.11786519556569341],[114,191,76,-0.11322132110639044],[114,191,77,-0.11039612651584611],[114,191,78,-0.10430981140400997],[114,191,79,-0.09960530836265323],[114,192,64,-0.10412203071895332],[114,192,65,-0.11339833760722057],[114,192,66,-0.12227179744622618],[114,192,67,-0.13067916358829773],[114,192,68,-0.1291982728179524],[114,192,69,-0.12921800007534823],[114,192,70,-0.13187450282139584],[114,192,71,-0.13229388909320647],[114,192,72,-0.1260925937316923],[114,192,73,-0.11807120583056872],[114,192,74,-0.11752359191469511],[114,192,75,-0.11482000217847135],[114,192,76,-0.10777951465410476],[114,192,77,-0.1072583908448417],[114,192,78,-0.10065054261393279],[114,192,79,-0.09542304470705885],[114,193,64,-0.11430953411746461],[114,193,65,-0.11836836182214654],[114,193,66,-0.12000479182322948],[114,193,67,-0.11970966927454513],[114,193,68,-0.11675030029955571],[114,193,69,-0.11902696265409629],[114,193,70,-0.12067397283701131],[114,193,71,-0.12446429824534672],[114,193,72,-0.12036149758556938],[114,193,73,-0.11703874326401209],[114,193,74,-0.11405841770459013],[114,193,75,-0.1100757069255072],[114,193,76,-0.10341118785918171],[114,193,77,-0.10266063083950175],[114,193,78,-0.10291363628885218],[114,193,79,-0.09909774264954802],[114,194,64,-0.12197337519033805],[114,194,65,-0.12582263472696917],[114,194,66,-0.12305522467526321],[114,194,67,-0.12245205459634673],[114,194,68,-0.11940503359448656],[114,194,69,-0.12140573896548268],[114,194,70,-0.12337622585469193],[114,194,71,-0.12455929021291756],[114,194,72,-0.12166140565806126],[114,194,73,-0.11937233544224501],[114,194,74,-0.11507375424284338],[114,194,75,-0.11077953773018678],[114,194,76,-0.10470113583700341],[114,194,77,-0.10151519528108201],[114,194,78,-0.09932492865778024],[114,194,79,-0.09649802339927721],[114,195,64,-0.12434929265657937],[114,195,65,-0.12700554111051882],[114,195,66,-0.12289438867380581],[114,195,67,-0.11972548231395319],[114,195,68,-0.11849936298185822],[114,195,69,-0.11845470064574867],[114,195,70,-0.11982938928756455],[114,195,71,-0.12053612160120156],[114,195,72,-0.11925879048272228],[114,195,73,-0.11842436641607151],[114,195,74,-0.11341989624693948],[114,195,75,-0.1079578302519436],[114,195,76,-0.10155890827510819],[114,195,77,-0.09991147682893155],[114,195,78,-0.10372889241593056],[114,195,79,-0.10184930677742833],[114,196,64,-0.11646756713265262],[114,196,65,-0.11523445331592366],[114,196,66,-0.10774050296328497],[114,196,67,-0.10047399756310708],[114,196,68,-0.09584368431855814],[114,196,69,-0.09173975514186432],[114,196,70,-0.09198989228090965],[114,196,71,-0.09103468865403264],[114,196,72,-0.08821991065898649],[114,196,73,-0.0891488245407889],[114,196,74,-0.08537404966820042],[114,196,75,-0.07877534312947722],[114,196,76,-0.07259390638561233],[114,196,77,-0.0730939875826946],[114,196,78,-0.0787400397258288],[114,196,79,-0.08101683532152724],[114,197,64,-0.12117913722255574],[114,197,65,-0.1166066865493825],[114,197,66,-0.1091104031541201],[114,197,67,-0.10089379246266461],[114,197,68,-0.09079032465189092],[114,197,69,-0.08791160138530565],[114,197,70,-0.08865802066746512],[114,197,71,-0.08518512317228678],[114,197,72,-0.08455045167022236],[114,197,73,-0.08677878355509872],[114,197,74,-0.08352127939833912],[114,197,75,-0.07587391849535036],[114,197,76,-0.0676676518670225],[114,197,77,-0.06488409066311043],[114,197,78,-0.0694051372772841],[114,197,79,-0.07117673038976072],[114,198,64,-0.12461062128195559],[114,198,65,-0.11895837890496366],[114,198,66,-0.10988621129611074],[114,198,67,-0.09958590499066627],[114,198,68,-0.08974004579888384],[114,198,69,-0.08662174375039255],[114,198,70,-0.0841663467584956],[114,198,71,-0.0828908414023828],[114,198,72,-0.08099921465144472],[114,198,73,-0.08346133233427899],[114,198,74,-0.08193062281388236],[114,198,75,-0.07340062596035463],[114,198,76,-0.06732760881698874],[114,198,77,-0.06645565342155577],[114,198,78,-0.07006530999590899],[114,198,79,-0.07385148141121743],[114,199,64,-0.12475732876896221],[114,199,65,-0.11828576844839234],[114,199,66,-0.11076215852565446],[114,199,67,-0.09769832427163921],[114,199,68,-0.08822728543506295],[114,199,69,-0.08473902528464936],[114,199,70,-0.081821403518745],[114,199,71,-0.08122477370422013],[114,199,72,-0.07914406273919956],[114,199,73,-0.08137242676359119],[114,199,74,-0.0788593231868633],[114,199,75,-0.07165621653898925],[114,199,76,-0.06758242400461978],[114,199,77,-0.06627906319924876],[114,199,78,-0.06366817458533167],[114,199,79,-0.06709131429897727],[114,200,64,-0.1269506867779624],[114,200,65,-0.12010126527223033],[114,200,66,-0.11269033627198416],[114,200,67,-0.09977753914121194],[114,200,68,-0.0887213392758314],[114,200,69,-0.08322062094180269],[114,200,70,-0.08050988996685231],[114,200,71,-0.08070386869159896],[114,200,72,-0.07833124472355107],[114,200,73,-0.0795633659469131],[114,200,74,-0.07207286004351271],[114,200,75,-0.06883363587355326],[114,200,76,-0.0672227005250483],[114,200,77,-0.0664053445739926],[114,200,78,-0.06303161937388535],[114,200,79,-0.06618225787867743],[114,201,64,-0.11678266339489689],[114,201,65,-0.11216089062038517],[114,201,66,-0.10662488717680606],[114,201,67,-0.09544874758049789],[114,201,68,-0.08220683100805953],[114,201,69,-0.0773071904368834],[114,201,70,-0.07363621727129777],[114,201,71,-0.07381284985459091],[114,201,72,-0.07637689514764276],[114,201,73,-0.07764195156324014],[114,201,74,-0.06878358853836194],[114,201,75,-0.06572287373034212],[114,201,76,-0.061967051102704035],[114,201,77,-0.06308177122493139],[114,201,78,-0.05239368334974442],[114,201,79,-0.05150496651760606],[114,202,64,-0.1234250347497376],[114,202,65,-0.11847453109255873],[114,202,66,-0.11430368047460697],[114,202,67,-0.10104919460418665],[114,202,68,-0.08938624163975786],[114,202,69,-0.08071619487119969],[114,202,70,-0.07464038572979935],[114,202,71,-0.07436978911722461],[114,202,72,-0.07854955894498453],[114,202,73,-0.0785546041332639],[114,202,74,-0.07062992274157125],[114,202,75,-0.06673928268837301],[114,202,76,-0.05986503345116358],[114,202,77,-0.062061110984270085],[114,202,78,-0.05388344690137601],[114,202,79,-0.055695394906662324],[114,203,64,-0.1269752635615779],[114,203,65,-0.12329436907045083],[114,203,66,-0.11519535089715921],[114,203,67,-0.10425250437182856],[114,203,68,-0.09316705640561979],[114,203,69,-0.08093028756706748],[114,203,70,-0.07373935779728726],[114,203,71,-0.07468366751415334],[114,203,72,-0.0748075913713433],[114,203,73,-0.07535172566163437],[114,203,74,-0.0698857915627159],[114,203,75,-0.0628805126437055],[114,203,76,-0.059075311758457795],[114,203,77,-0.06543014751076326],[114,203,78,-0.056719466758260347],[114,203,79,-0.06033876133772873],[114,204,64,-0.13242720659894866],[114,204,65,-0.12596463737496016],[114,204,66,-0.11607688100109667],[114,204,67,-0.10198264181346206],[114,204,68,-0.08925142329660535],[114,204,69,-0.07581001877427561],[114,204,70,-0.06840384509470843],[114,204,71,-0.0690219418572485],[114,204,72,-0.06748901387187109],[114,204,73,-0.0683505152900685],[114,204,74,-0.06344250604824025],[114,204,75,-0.055278788722521954],[114,204,76,-0.054404170985916454],[114,204,77,-0.06493973971737912],[114,204,78,-0.05727174215721398],[114,204,79,-0.0644549819430087],[114,205,64,-0.14916296324333161],[114,205,65,-0.13956485824223752],[114,205,66,-0.12914720835663418],[114,205,67,-0.11348370096662452],[114,205,68,-0.09961009581574276],[114,205,69,-0.08824902643731036],[114,205,70,-0.07977525139949723],[114,205,71,-0.07103958221791278],[114,205,72,-0.06811928449781525],[114,205,73,-0.06461759976721715],[114,205,74,-0.05935449163207138],[114,205,75,-0.053408131525335814],[114,205,76,-0.05453205738152254],[114,205,77,-0.06791819642338186],[114,205,78,-0.06137421603279182],[114,205,79,-0.06365034277515325],[114,206,64,-0.15247221920094367],[114,206,65,-0.1433331614064846],[114,206,66,-0.13084022815921248],[114,206,67,-0.11387834806152292],[114,206,68,-0.1004590250293244],[114,206,69,-0.08925382715393354],[114,206,70,-0.08016589738330568],[114,206,71,-0.06882547512787804],[114,206,72,-0.06486340838201174],[114,206,73,-0.061764630872543275],[114,206,74,-0.05873702101991806],[114,206,75,-0.05169401247719603],[114,206,76,-0.057105335256967704],[114,206,77,-0.07040194776077964],[114,206,78,-0.06775861911307197],[114,206,79,-0.06823821178375095],[114,207,64,-0.1550931099968219],[114,207,65,-0.14482520541487248],[114,207,66,-0.1308768270141387],[114,207,67,-0.11519091640304949],[114,207,68,-0.10025615652308689],[114,207,69,-0.08895008896779788],[114,207,70,-0.07825925985739969],[114,207,71,-0.06807301054524581],[114,207,72,-0.06411829016417302],[114,207,73,-0.06040269655237524],[114,207,74,-0.05734601885347765],[114,207,75,-0.05061043693648487],[114,207,76,-0.051810383334321614],[114,207,77,-0.0631456808251464],[114,207,78,-0.06147836935207354],[114,207,79,-0.06436576415195502],[114,208,64,-0.15688210632666907],[114,208,65,-0.14654024824092568],[114,208,66,-0.13152844685795442],[114,208,67,-0.11568934683345539],[114,208,68,-0.0983244273318276],[114,208,69,-0.0882952892851745],[114,208,70,-0.07620037401000793],[114,208,71,-0.06741564776436534],[114,208,72,-0.06257221674811421],[114,208,73,-0.0598550719594126],[114,208,74,-0.05707814954253815],[114,208,75,-0.05104085169378712],[114,208,76,-0.05731960327773892],[114,208,77,-0.06855966485265767],[114,208,78,-0.07498928732392568],[114,208,79,-0.07701092302448073],[114,209,64,-0.15895466492044846],[114,209,65,-0.14861724952269245],[114,209,66,-0.1316820672497351],[114,209,67,-0.11486571546009883],[114,209,68,-0.0977181491209417],[114,209,69,-0.08538231259986964],[114,209,70,-0.07450191551661305],[114,209,71,-0.06505632843991459],[114,209,72,-0.061500829484527814],[114,209,73,-0.06026889456562511],[114,209,74,-0.05534298165500964],[114,209,75,-0.05199882051571319],[114,209,76,-0.0617556286748674],[114,209,77,-0.07563574195264294],[114,209,78,-0.08074636005797407],[114,209,79,-0.07750647789277998],[114,210,64,-0.16417917552174743],[114,210,65,-0.15149846519356444],[114,210,66,-0.13653925742216846],[114,210,67,-0.119505569774561],[114,210,68,-0.1039347140770685],[114,210,69,-0.09138039774102102],[114,210,70,-0.0782191882625541],[114,210,71,-0.07035408573306863],[114,210,72,-0.064864855236444],[114,210,73,-0.06336809551742177],[114,210,74,-0.05939839374063792],[114,210,75,-0.0551276208209905],[114,210,76,-0.061735968734047256],[114,210,77,-0.07359801633225906],[114,210,78,-0.07665868183709824],[114,210,79,-0.07498619232587989],[114,211,64,-0.16486000502851378],[114,211,65,-0.15222388910778137],[114,211,66,-0.13826187669754164],[114,211,67,-0.12033588029005327],[114,211,68,-0.10677322594010505],[114,211,69,-0.09518077659827114],[114,211,70,-0.08123262283905494],[114,211,71,-0.0736855732897492],[114,211,72,-0.06890077620503178],[114,211,73,-0.06232169756951639],[114,211,74,-0.05927639803315792],[114,211,75,-0.05795206928474831],[114,211,76,-0.06437744393739146],[114,211,77,-0.07727101756880514],[114,211,78,-0.08371767455062154],[114,211,79,-0.08790766506054279],[114,212,64,-0.15344163812321693],[114,212,65,-0.1429052485914353],[114,212,66,-0.13347234526603394],[114,212,67,-0.12426756634345723],[114,212,68,-0.1118916864813223],[114,212,69,-0.10380425625229639],[114,212,70,-0.09497498278760078],[114,212,71,-0.09121302761465216],[114,212,72,-0.08645855658223006],[114,212,73,-0.08074993418337419],[114,212,74,-0.07445597532310477],[114,212,75,-0.0703623940120366],[114,212,76,-0.07516375264704378],[114,212,77,-0.07814483706990741],[114,212,78,-0.07859238891727739],[114,212,79,-0.08575229440213952],[114,213,64,-0.15955115564072264],[114,213,65,-0.1419520742108268],[114,213,66,-0.125030273612997],[114,213,67,-0.11404043149558193],[114,213,68,-0.10251051426023877],[114,213,69,-0.09253299813141772],[114,213,70,-0.08593008882498904],[114,213,71,-0.08932061789776624],[114,213,72,-0.09135762397972894],[114,213,73,-0.08960286460507748],[114,213,74,-0.08210381813681579],[114,213,75,-0.08123202098150051],[114,213,76,-0.08326619851032833],[114,213,77,-0.08235821167151601],[114,213,78,-0.08141886830417379],[114,213,79,-0.08383568027814547],[114,214,64,-0.15867613096969646],[114,214,65,-0.14206867995585984],[114,214,66,-0.12232469771199905],[114,214,67,-0.11210131219662726],[114,214,68,-0.10176537085711235],[114,214,69,-0.09044501810283229],[114,214,70,-0.08769397148158059],[114,214,71,-0.08655395545911998],[114,214,72,-0.0894689206979675],[114,214,73,-0.0886459638156355],[114,214,74,-0.08071501206579018],[114,214,75,-0.08121372150768308],[114,214,76,-0.08516706863209281],[114,214,77,-0.08587082840873098],[114,214,78,-0.08343765690768834],[114,214,79,-0.0837730146529484],[114,215,64,-0.15955095175402279],[114,215,65,-0.14485388522328174],[114,215,66,-0.1245895526627752],[114,215,67,-0.11240816824492766],[114,215,68,-0.10333440578759123],[114,215,69,-0.09414635175351373],[114,215,70,-0.08801278362503322],[114,215,71,-0.08583796255689538],[114,215,72,-0.08761395327083904],[114,215,73,-0.0853027111743607],[114,215,74,-0.07840004103485125],[114,215,75,-0.07667047173170201],[114,215,76,-0.07889611621698266],[114,215,77,-0.07891142948431407],[114,215,78,-0.07585691599690628],[114,215,79,-0.07927315627803762],[114,216,64,-0.15593963717834083],[114,216,65,-0.1423447597309325],[114,216,66,-0.12420144434230064],[114,216,67,-0.11024167492657935],[114,216,68,-0.10280153312151319],[114,216,69,-0.09338418391359538],[114,216,70,-0.08740155788777601],[114,216,71,-0.0868037490328826],[114,216,72,-0.0856420081912801],[114,216,73,-0.08184636074096854],[114,216,74,-0.07400420250994946],[114,216,75,-0.06938853890598433],[114,216,76,-0.07232086635759208],[114,216,77,-0.07334206572340765],[114,216,78,-0.07016550308468761],[114,216,79,-0.07608044039879082],[114,217,64,-0.14596231043222835],[114,217,65,-0.1373421231694469],[114,217,66,-0.1282913782259696],[114,217,67,-0.12031969182724135],[114,217,68,-0.11090483026987552],[114,217,69,-0.10233208378809884],[114,217,70,-0.0940052514304596],[114,217,71,-0.08930457443206638],[114,217,72,-0.08024810706877253],[114,217,73,-0.06973153836798972],[114,217,74,-0.06029535493153737],[114,217,75,-0.05577781942858053],[114,217,76,-0.06067557689311359],[114,217,77,-0.0658057192837651],[114,217,78,-0.06712423551160784],[114,217,79,-0.07695331074737471],[114,218,64,-0.15011092621556876],[114,218,65,-0.14118359186667753],[114,218,66,-0.13288616418957214],[114,218,67,-0.12555296768187754],[114,218,68,-0.11329489066528944],[114,218,69,-0.10649540336608604],[114,218,70,-0.09661838494495492],[114,218,71,-0.08946372424989002],[114,218,72,-0.08088945734684158],[114,218,73,-0.06821765817581105],[114,218,74,-0.058068734352349716],[114,218,75,-0.05218087175423336],[114,218,76,-0.058071720981381546],[114,218,77,-0.06674958986696003],[114,218,78,-0.07695231254130919],[114,218,79,-0.08421928165819739],[114,219,64,-0.1496259267141281],[114,219,65,-0.13876603789768427],[114,219,66,-0.13295175132987574],[114,219,67,-0.12399324653084001],[114,219,68,-0.11428988266554983],[114,219,69,-0.10420945647546279],[114,219,70,-0.09425413596538129],[114,219,71,-0.0861900731992407],[114,219,72,-0.07685448817308445],[114,219,73,-0.06453820627178335],[114,219,74,-0.05616756661024538],[114,219,75,-0.04952590929433575],[114,219,76,-0.059961369001043596],[114,219,77,-0.0752377785956358],[114,219,78,-0.09071713573921847],[114,219,79,-0.09230059528784726],[114,220,64,-0.1481284017876858],[114,220,65,-0.13638022323379195],[114,220,66,-0.1286489002515689],[114,220,67,-0.11575341791373751],[114,220,68,-0.10379920615827895],[114,220,69,-0.09289599514002542],[114,220,70,-0.07955945720006555],[114,220,71,-0.0714037627051284],[114,220,72,-0.06324921501388438],[114,220,73,-0.0505180963783729],[114,220,74,-0.04620081361777849],[114,220,75,-0.04794372324168923],[114,220,76,-0.054574919305184974],[114,220,77,-0.08769094764529686],[114,220,78,-0.11525206251356229],[114,220,79,-0.11566283172209012],[114,221,64,-0.14529257074221902],[114,221,65,-0.1356432568486982],[114,221,66,-0.12508622013113652],[114,221,67,-0.11446593980804134],[114,221,68,-0.10196636479609142],[114,221,69,-0.08827050745820103],[114,221,70,-0.07545374914199181],[114,221,71,-0.06681091907049219],[114,221,72,-0.05807696471947578],[114,221,73,-0.04859733068686381],[114,221,74,-0.07760239673977014],[114,221,75,-0.08783401137775233],[114,221,76,-0.09405150718065182],[114,221,77,-0.12749380016850076],[114,221,78,-0.1296041798768416],[114,221,79,-0.11871193059367373],[114,222,64,-0.1445682945540688],[114,222,65,-0.13276424881213106],[114,222,66,-0.1230449127009974],[114,222,67,-0.11241808507753734],[114,222,68,-0.09799550148870927],[114,222,69,-0.08630875418110356],[114,222,70,-0.07338648631019687],[114,222,71,-0.0638129019954159],[114,222,72,-0.05290141716533301],[114,222,73,-0.044184925655113436],[114,222,74,-0.0818439031765561],[114,222,75,-0.09343111170287922],[114,222,76,-0.10041368808561821],[114,222,77,-0.12982247488275916],[114,222,78,-0.1212795693873267],[114,222,79,-0.11209419922152572],[114,223,64,-0.14807975534913817],[114,223,65,-0.13562433848393063],[114,223,66,-0.1270811724295366],[114,223,67,-0.11440947194095963],[114,223,68,-0.09807679243589656],[114,223,69,-0.08609493404918939],[114,223,70,-0.07332989279439056],[114,223,71,-0.060386732141060336],[114,223,72,-0.048542532889109],[114,223,73,-0.05947487471098374],[114,223,74,-0.09611810522798471],[114,223,75,-0.11217417759113672],[114,223,76,-0.12212089882567395],[114,223,77,-0.1296836382490814],[114,223,78,-0.11856169915210807],[114,223,79,-0.11044440571331032],[114,224,64,-0.1432220808635885],[114,224,65,-0.13573395494940926],[114,224,66,-0.12607712932331533],[114,224,67,-0.11324957757433726],[114,224,68,-0.09325126879241238],[114,224,69,-0.08135339753331214],[114,224,70,-0.07126405975051933],[114,224,71,-0.05692244529648942],[114,224,72,-0.04394226881891805],[114,224,73,-0.06354903975621926],[114,224,74,-0.0986768556860671],[114,224,75,-0.11965009886241007],[114,224,76,-0.13088091827688747],[114,224,77,-0.1308699577560858],[114,224,78,-0.12054758326887235],[114,224,79,-0.11267332281401321],[114,225,64,-0.14844030832923616],[114,225,65,-0.1391912062390299],[114,225,66,-0.12664860596492994],[114,225,67,-0.11027286259177542],[114,225,68,-0.08880931057975607],[114,225,69,-0.07724073263446976],[114,225,70,-0.06933124178873297],[114,225,71,-0.054508960020151584],[114,225,72,-0.04479972352609289],[114,225,73,-0.07200799272976023],[114,225,74,-0.10117849713480664],[114,225,75,-0.12954321361404159],[114,225,76,-0.13859343273636737],[114,225,77,-0.13144982660408167],[114,225,78,-0.12185793923543008],[114,225,79,-0.11450414362812104],[114,226,64,-0.1495191422334262],[114,226,65,-0.14236178285495957],[114,226,66,-0.13043905028740063],[114,226,67,-0.11317856574565766],[114,226,68,-0.09443521006008093],[114,226,69,-0.07934701639843308],[114,226,70,-0.07092260348483112],[114,226,71,-0.0566789489757496],[114,226,72,-0.0454524690400559],[114,226,73,-0.05159412053309038],[114,226,74,-0.08720208705576804],[114,226,75,-0.12171243178298381],[114,226,76,-0.13873483408029724],[114,226,77,-0.13265000846454889],[114,226,78,-0.12151316434310225],[114,226,79,-0.1135688569258978],[114,227,64,-0.15097906436635783],[114,227,65,-0.1409773813119979],[114,227,66,-0.12998286281384966],[114,227,67,-0.11348184115343643],[114,227,68,-0.09438093476099996],[114,227,69,-0.07647384835414522],[114,227,70,-0.06729850279964898],[114,227,71,-0.054521900068747714],[114,227,72,-0.04370560868804671],[114,227,73,-0.04347349857063907],[114,227,74,-0.08540665767013311],[114,227,75,-0.13297415843311022],[114,227,76,-0.1491819150996561],[114,227,77,-0.14097180499560633],[114,227,78,-0.13161917208514912],[114,227,79,-0.1226481887636578],[114,228,64,-0.13970435917712065],[114,228,65,-0.12879276367940307],[114,228,66,-0.11431176763416917],[114,228,67,-0.09682497372980153],[114,228,68,-0.07795406770535473],[114,228,69,-0.06269784921449402],[114,228,70,-0.04651028957713135],[114,228,71,-0.03417780976410343],[114,228,72,-0.02730826477553356],[114,228,73,-0.023251964165794725],[114,228,74,-0.07469569873129818],[114,228,75,-0.1258733104262476],[114,228,76,-0.142776560932546],[114,228,77,-0.13560491717169337],[114,228,78,-0.129408628062284],[114,228,79,-0.12046951834909445],[114,229,64,-0.12696334436298173],[114,229,65,-0.11932862913683025],[114,229,66,-0.1075301090480707],[114,229,67,-0.0925057146042569],[114,229,68,-0.0766558687390272],[114,229,69,-0.06228843073479927],[114,229,70,-0.04189018514044165],[114,229,71,-0.025975420256129346],[114,229,72,-0.01815149526168383],[114,229,73,-0.05203492506022336],[114,229,74,-0.12636561627672072],[114,229,75,-0.1517393216634925],[114,229,76,-0.14557441153197564],[114,229,77,-0.13749841267274074],[114,229,78,-0.13154772517698135],[114,229,79,-0.12439525732560622],[114,230,64,-0.12399544582391589],[114,230,65,-0.1154172514929354],[114,230,66,-0.1053125661095685],[114,230,67,-0.09259366376487836],[114,230,68,-0.07623804372791931],[114,230,69,-0.06389887154912374],[114,230,70,-0.04246226867527093],[114,230,71,-0.026007801190963527],[114,230,72,-0.01657239240061209],[114,230,73,-0.0395129343638741],[114,230,74,-0.13298444026441308],[114,230,75,-0.15098820127036475],[114,230,76,-0.14226271609092245],[114,230,77,-0.13473702267823873],[114,230,78,-0.12661023608698088],[114,230,79,-0.12187538472949051],[114,231,64,-0.1309970985552161],[114,231,65,-0.11996669599523757],[114,231,66,-0.11105799706244424],[114,231,67,-0.09479001495364367],[114,231,68,-0.07893027629016816],[114,231,69,-0.06662991171897154],[114,231,70,-0.04578715890867727],[114,231,71,-0.027894838417976964],[114,231,72,-0.015757385650894004],[114,231,73,-0.005661455382323349],[114,231,74,-0.0883334303378049],[114,231,75,-0.11858154413613688],[114,231,76,-0.13082157763756885],[114,231,77,-0.13170893439225445],[114,231,78,-0.12577907578327602],[114,231,79,-0.11969276078729342],[114,232,64,-0.1340159401181391],[114,232,65,-0.12294216384715274],[114,232,66,-0.11141992377104834],[114,232,67,-0.09253842356459366],[114,232,68,-0.07824879943603236],[114,232,69,-0.06420154124483957],[114,232,70,-0.045711489491943466],[114,232,71,-0.025032863497144626],[114,232,72,-0.014301103179235775],[114,232,73,-0.004171487031502899],[114,232,74,-0.08705456072422395],[114,232,75,-0.11030540175293573],[114,232,76,-0.13318499299687434],[114,232,77,-0.13240296002279753],[114,232,78,-0.12510078413174106],[114,232,79,-0.1206076223276904],[114,233,64,-0.13512546677625364],[114,233,65,-0.12616228627821563],[114,233,66,-0.11237584989184006],[114,233,67,-0.09296950874674187],[114,233,68,-0.07846195937053024],[114,233,69,-0.06270039279150497],[114,233,70,-0.04498506189328407],[114,233,71,-0.026805928127462963],[114,233,72,-0.012059894110759667],[114,233,73,-0.0010313432248954396],[114,233,74,-0.08397743197592013],[114,233,75,-0.11670261115074301],[114,233,76,-0.13832743808239112],[114,233,77,-0.13555169864122005],[114,233,78,-0.12921395695431098],[114,233,79,-0.12412885949261318],[114,234,64,-0.13945340497082975],[114,234,65,-0.13083908808587763],[114,234,66,-0.11408430299007599],[114,234,67,-0.09527296446876792],[114,234,68,-0.08312251682940992],[114,234,69,-0.06621409797474465],[114,234,70,-0.047746535358716494],[114,234,71,-0.031206179752180298],[114,234,72,-0.014581614849979968],[114,234,73,-0.0011046142278263726],[114,234,74,-0.052588391771073446],[114,234,75,-0.11340774558365757],[114,234,76,-0.13476511761389734],[114,234,77,-0.14230555827005315],[114,234,78,-0.13568120837648814],[114,234,79,-0.12989141566952445],[114,235,64,-0.14252077263835028],[114,235,65,-0.13001758397364885],[114,235,66,-0.11352062000526005],[114,235,67,-0.09547852396344117],[114,235,68,-0.0812272960023015],[114,235,69,-0.06743612049878171],[114,235,70,-0.04764955723517194],[114,235,71,-0.031875458826413544],[114,235,72,-0.015288465325260042],[114,235,73,-0.0018544854270403088],[114,235,74,0.008358297920367103],[114,235,75,-0.008028249463163724],[114,235,76,-0.02232631875727447],[114,235,77,-0.049623671460130456],[114,235,78,-0.09300546163043201],[114,235,79,-0.1378901972952813],[114,236,64,-0.16013387688575484],[114,236,65,-0.14579253633997413],[114,236,66,-0.12993539701434545],[114,236,67,-0.11487548279861598],[114,236,68,-0.09648367463990286],[114,236,69,-0.08055322394732814],[114,236,70,-0.06112561926435827],[114,236,71,-0.043715657894582434],[114,236,72,-0.030881431156414924],[114,236,73,-0.018159722152245233],[114,236,74,-0.0076601345406612925],[114,236,75,-0.021264722856862234],[114,236,76,-0.031105845230951577],[114,236,77,-0.05634977736239863],[114,236,78,-0.1116137458371407],[114,236,79,-0.144619933334602],[114,237,64,-0.16832133227454119],[114,237,65,-0.15081845737966398],[114,237,66,-0.12909891956068759],[114,237,67,-0.10826089862961115],[114,237,68,-0.0875291530700155],[114,237,69,-0.07048653497421889],[114,237,70,-0.05120135095547062],[114,237,71,-0.03397506185074109],[114,237,72,-0.023195899756430383],[114,237,73,-0.013671196979567465],[114,237,74,-0.004402322267969522],[114,237,75,-0.05178720537295258],[114,237,76,-0.06551589234068755],[114,237,77,-0.10005155175480213],[114,237,78,-0.15482557871138117],[114,237,79,-0.1455137194553084],[114,238,64,-0.1700087696791714],[114,238,65,-0.15374707781040686],[114,238,66,-0.13030353082046284],[114,238,67,-0.1085107360796245],[114,238,68,-0.09002146456973809],[114,238,69,-0.07069295367067106],[114,238,70,-0.05234948465633702],[114,238,71,-0.03544057025966185],[114,238,72,-0.026669239853175764],[114,238,73,-0.016582768828435013],[114,238,74,-0.03643867704528571],[114,238,75,-0.07174145002673268],[114,238,76,-0.08505462243446651],[114,238,77,-0.13563005462678968],[114,238,78,-0.15101374065245743],[114,238,79,-0.142312783844225],[114,239,64,-0.17778453541936667],[114,239,65,-0.16247360640374406],[114,239,66,-0.13677629115315182],[114,239,67,-0.11413927919449093],[114,239,68,-0.09806237021156401],[114,239,69,-0.07840251774259613],[114,239,70,-0.05689653375137191],[114,239,71,-0.03938298259787439],[114,239,72,-0.029740686461476845],[114,239,73,-0.021200670773949618],[114,239,74,-0.02346086561233414],[114,239,75,-0.047864515415663285],[114,239,76,-0.0638689361345375],[114,239,77,-0.12009036426461014],[114,239,78,-0.14683901504473912],[114,239,79,-0.13671654967807867],[114,240,64,-0.17820932459395716],[114,240,65,-0.16340104784874732],[114,240,66,-0.1389991254060005],[114,240,67,-0.11771361992686352],[114,240,68,-0.1005929217643018],[114,240,69,-0.0794608946742735],[114,240,70,-0.0573941877112642],[114,240,71,-0.04017138040214806],[114,240,72,-0.03228566516917099],[114,240,73,-0.02505641275091121],[114,240,74,-0.026793113791510295],[114,240,75,-0.03564649502533587],[114,240,76,-0.05698582351475465],[114,240,77,-0.1172381958266933],[114,240,78,-0.14654096385175894],[114,240,79,-0.1379063383293226],[114,241,64,-0.169115598702653],[114,241,65,-0.1607377038569442],[114,241,66,-0.14369537849254263],[114,241,67,-0.13032435060843692],[114,241,68,-0.11097559381796081],[114,241,69,-0.09124139696924664],[114,241,70,-0.06898314531550304],[114,241,71,-0.05272505050087443],[114,241,72,-0.043780594629927595],[114,241,73,-0.036545928157776464],[114,241,74,-0.0264613922371969],[114,241,75,-0.014958475122117516],[114,241,76,0.0027217150079092145],[114,241,77,0.0165835283032552],[114,241,78,0.03190819502370082],[114,241,79,0.025657961093839523],[114,242,64,-0.17281911325169272],[114,242,65,-0.1617070183402427],[114,242,66,-0.1465618012321263],[114,242,67,-0.1319994665794571],[114,242,68,-0.11475923965945421],[114,242,69,-0.09631580343559722],[114,242,70,-0.07537829494313197],[114,242,71,-0.05866331090694118],[114,242,72,-0.0478721209857854],[114,242,73,-0.0395964013746755],[114,242,74,-0.03198606502404545],[114,242,75,-0.01959463455502468],[114,242,76,-0.0021945834463761027],[114,242,77,0.011944182072157111],[114,242,78,0.02544706377563255],[114,242,79,0.02331741091275735],[114,243,64,-0.16938550611041114],[114,243,65,-0.15781520881344963],[114,243,66,-0.14436879828178945],[114,243,67,-0.12964736581835773],[114,243,68,-0.11524018548206647],[114,243,69,-0.09766136282520946],[114,243,70,-0.07647937781643412],[114,243,71,-0.060682223451592784],[114,243,72,-0.04854766206452161],[114,243,73,-0.039290318679220046],[114,243,74,-0.03247076697873485],[114,243,75,-0.019415417269245436],[114,243,76,-0.0058930142717599915],[114,243,77,0.00970311157091433],[114,243,78,0.02358812301790776],[114,243,79,0.005887602188087475],[114,244,64,-0.15852047396383795],[114,244,65,-0.15183525534610745],[114,244,66,-0.14170367745341417],[114,244,67,-0.12975844805170067],[114,244,68,-0.11552286616305572],[114,244,69,-0.10315426386971129],[114,244,70,-0.08382853864034856],[114,244,71,-0.0694347790646064],[114,244,72,-0.05978232625111862],[114,244,73,-0.048780431931825435],[114,244,74,-0.04319205398556526],[114,244,75,-0.030871481052319807],[114,244,76,-0.022582930794645087],[114,244,77,-0.009249096958523259],[114,244,78,0.00494268931581926],[114,244,79,-0.011230805516244766],[114,245,64,-0.15487964071122112],[114,245,65,-0.14736342958140852],[114,245,66,-0.13882537199773698],[114,245,67,-0.12907691185425998],[114,245,68,-0.11234736607164879],[114,245,69,-0.0987471987920654],[114,245,70,-0.08321496725870614],[114,245,71,-0.06839713187957715],[114,245,72,-0.05706949826912404],[114,245,73,-0.0480992265538021],[114,245,74,-0.04146692216712888],[114,245,75,-0.03413216901385294],[114,245,76,-0.024885459338817],[114,245,77,-0.01318619819463044],[114,245,78,0.0020012106260832163],[114,245,79,-0.02414801541844224],[114,246,64,-0.15479956371598447],[114,246,65,-0.14570461632479362],[114,246,66,-0.13653657771758154],[114,246,67,-0.12563773917645926],[114,246,68,-0.10967830244468837],[114,246,69,-0.09711425035166317],[114,246,70,-0.08596243058052716],[114,246,71,-0.0704901481589284],[114,246,72,-0.05723659960655806],[114,246,73,-0.048046016744622486],[114,246,74,-0.039620323749939027],[114,246,75,-0.03239369484233297],[114,246,76,-0.026431201394569094],[114,246,77,-0.013999872288942825],[114,246,78,0.0018908137682142612],[114,246,79,-0.033449410369902],[114,247,64,-0.16101650581408716],[114,247,65,-0.15095608138500444],[114,247,66,-0.13928846086790966],[114,247,67,-0.12747400061646694],[114,247,68,-0.11376685681672409],[114,247,69,-0.09980027372958115],[114,247,70,-0.09246696924409743],[114,247,71,-0.07751975475153647],[114,247,72,-0.05972057733469713],[114,247,73,-0.051350246470102154],[114,247,74,-0.039300838989806526],[114,247,75,-0.029769813230224165],[114,247,76,-0.02238482060532554],[114,247,77,-0.011655634374063154],[114,247,78,0.0052752147538004945],[114,247,79,-0.01934055376692042],[114,248,64,-0.16263543993893032],[114,248,65,-0.1506667887340266],[114,248,66,-0.1352854708169483],[114,248,67,-0.12313023157259942],[114,248,68,-0.11182175323804043],[114,248,69,-0.10080244405249841],[114,248,70,-0.09204359874201432],[114,248,71,-0.07922300788830439],[114,248,72,-0.06294058713420733],[114,248,73,-0.05139669831577642],[114,248,74,-0.03872008781418525],[114,248,75,-0.029506361893936947],[114,248,76,-0.02132815627331411],[114,248,77,-0.01339632913182208],[114,248,78,0.0034524894245857862],[114,248,79,-0.019313382295703778],[114,249,64,-0.1518504948470667],[114,249,65,-0.13899362370342636],[114,249,66,-0.12424555175394668],[114,249,67,-0.10981512869646744],[114,249,68,-0.0982390141936573],[114,249,69,-0.08898442736997092],[114,249,70,-0.082128523047276],[114,249,71,-0.07108103647536998],[114,249,72,-0.053866108588874625],[114,249,73,-0.04111736178622516],[114,249,74,-0.026895090870654226],[114,249,75,-0.019773724679938307],[114,249,76,-0.014554733241101334],[114,249,77,-0.008833847673076281],[114,249,78,-2.947476759914691E-4],[114,249,79,-0.054565111348380185],[114,250,64,-0.15201281983957832],[114,250,65,-0.13797392975036404],[114,250,66,-0.12471901325727275],[114,250,67,-0.11342233231474334],[114,250,68,-0.1025648621461879],[114,250,69,-0.09129969002003349],[114,250,70,-0.08410554454142789],[114,250,71,-0.07067256725166421],[114,250,72,-0.05570872038479062],[114,250,73,-0.0438163421378467],[114,250,74,-0.030429514875897484],[114,250,75,-0.023797613066768447],[114,250,76,-0.018822847388194577],[114,250,77,-0.011288788669597857],[114,250,78,-0.03371158276596023],[114,250,79,-0.06313119981323169],[114,251,64,-0.1506315532600939],[114,251,65,-0.1367058181260577],[114,251,66,-0.1255855529642219],[114,251,67,-0.11374071932478258],[114,251,68,-0.10327086387129039],[114,251,69,-0.09201914793673974],[114,251,70,-0.08378543831100727],[114,251,71,-0.07082073592004834],[114,251,72,-0.05737557079555448],[114,251,73,-0.04592794188454001],[114,251,74,-0.03138260228742435],[114,251,75,-0.024013715238377212],[114,251,76,-0.017783955084185413],[114,251,77,-0.014114615420130192],[114,251,78,-0.03415496328822969],[114,251,79,-0.06794513977069103],[114,252,64,-0.14767884496844125],[114,252,65,-0.12897005523855598],[114,252,66,-0.11573113244011167],[114,252,67,-0.10314360003256998],[114,252,68,-0.09277468883154326],[114,252,69,-0.07873247918280396],[114,252,70,-0.06590564994606499],[114,252,71,-0.054091722460044844],[114,252,72,-0.04048952951635207],[114,252,73,-0.030373559419917484],[114,252,74,-0.017049071817118344],[114,252,75,-0.008821625933480834],[114,252,76,-0.0011493886357467203],[114,252,77,0.0013928428655287234],[114,252,78,-0.029134118591746624],[114,252,79,-0.07590176937442814],[114,253,64,-0.15949926295396766],[114,253,65,-0.14172489034366215],[114,253,66,-0.12490613483370573],[114,253,67,-0.11245651995559128],[114,253,68,-0.10146107112886787],[114,253,69,-0.08965468390296755],[114,253,70,-0.07438432079813966],[114,253,71,-0.06465025965374743],[114,253,72,-0.04951809324869748],[114,253,73,-0.040429074304623405],[114,253,74,-0.028702148566772515],[114,253,75,-0.019681191904287805],[114,253,76,-0.012038658813675607],[114,253,77,-0.0024069179008119473],[114,253,78,-0.006762709290018255],[114,253,79,-0.054590085929088095],[114,254,64,-0.07945505522579697],[114,254,65,-0.06744057160842698],[114,254,66,-0.056655875471553103],[114,254,67,-0.05052186149818458],[114,254,68,-0.04708046894092127],[114,254,69,-0.04286601276457647],[114,254,70,-0.03769443739001484],[114,254,71,-0.03417079932319857],[114,254,72,-0.030006851130489516],[114,254,73,-0.02916734898133609],[114,254,74,-0.027689210402223483],[114,254,75,-0.029528755857439283],[114,254,76,-0.029508826079560985],[114,254,77,-0.029030231092739972],[114,254,78,-0.0374594882235275],[114,254,79,-0.07586601658469391],[114,255,64,-0.07504748559417043],[114,255,65,-0.06698509773137423],[114,255,66,-0.05608956288355132],[114,255,67,-0.051226604740424786],[114,255,68,-0.04693048433332782],[114,255,69,-0.042468184361950365],[114,255,70,-0.03722733987960146],[114,255,71,-0.033059328576039645],[114,255,72,-0.03043209007040501],[114,255,73,-0.029972747514161943],[114,255,74,-0.026817325389620103],[114,255,75,-0.029067896739650503],[114,255,76,-0.030467273439971528],[114,255,77,-0.02930512073773263],[114,255,78,-0.028276214931141654],[114,255,79,-0.0702176737671183],[114,256,64,-0.0717673570454018],[114,256,65,-0.06355678944466117],[114,256,66,-0.05418484379282786],[114,256,67,-0.05021675402607287],[114,256,68,-0.04639885765076058],[114,256,69,-0.039742311750966326],[114,256,70,-0.03591229966773116],[114,256,71,-0.03281914053913539],[114,256,72,-0.030164289570780267],[114,256,73,-0.028343175915552327],[114,256,74,-0.02602856645432241],[114,256,75,-0.026848806241354037],[114,256,76,-0.030426259716640897],[114,256,77,-0.028908660954612406],[114,256,78,-0.03260470827885144],[114,256,79,-0.0761090245866009],[114,257,64,-0.07078911976629584],[114,257,65,-0.0618461392381076],[114,257,66,-0.05263845775661047],[114,257,67,-0.047589381785533735],[114,257,68,-0.04478243702766245],[114,257,69,-0.039285913269247866],[114,257,70,-0.035878267947753326],[114,257,71,-0.03156063359631847],[114,257,72,-0.028119847989690847],[114,257,73,-0.02754670343904011],[114,257,74,-0.02480130550555372],[114,257,75,-0.024908971943263886],[114,257,76,-0.028746916238929193],[114,257,77,-0.02770564343066506],[114,257,78,-0.06444106140070399],[114,257,79,-0.11655607402800251],[114,258,64,-0.06999708684999797],[114,258,65,-0.062038814205130736],[114,258,66,-0.05479121809445293],[114,258,67,-0.05006515809275193],[114,258,68,-0.047011031893643536],[114,258,69,-0.04023143335752303],[114,258,70,-0.03694059917476165],[114,258,71,-0.034477900144389985],[114,258,72,-0.03014212669538214],[114,258,73,-0.029481921016947528],[114,258,74,-0.02769563933885573],[114,258,75,-0.025312536402677235],[114,258,76,-0.026680738757012094],[114,258,77,-0.02790142812482043],[114,258,78,-0.06886252656237349],[114,258,79,-0.12486810620961021],[114,259,64,-0.06583702714785769],[114,259,65,-0.05876424918489167],[114,259,66,-0.0539585655189674],[114,259,67,-0.05161990514196194],[114,259,68,-0.0489372325645184],[114,259,69,-0.04189254898702745],[114,259,70,-0.03696858186629738],[114,259,71,-0.031140537078000005],[114,259,72,-0.028749627821749446],[114,259,73,-0.028804623940824538],[114,259,74,-0.028850903183457927],[114,259,75,-0.02663659921849105],[114,259,76,-0.026386488732796823],[114,259,77,-0.026766295137099064],[114,259,78,-0.05487429930893877],[114,259,79,-0.13185742659995375],[114,260,64,-0.11474981614935673],[114,260,65,-0.10692084900005194],[114,260,66,-0.10757487731123877],[114,260,67,-0.10841428498998279],[114,260,68,-0.10882197539499691],[114,260,69,-0.10501128543253133],[114,260,70,-0.10326221605574812],[114,260,71,-0.09794656154391133],[114,260,72,-0.09553944343221255],[114,260,73,-0.09747859418122301],[114,260,74,-0.0958128465600056],[114,260,75,-0.09325446855578913],[114,260,76,-0.09194018430008707],[114,260,77,-0.0917912901692795],[114,260,78,-0.10338966397597718],[114,260,79,-0.15375472753428987],[114,261,64,-0.10320394929081901],[114,261,65,-0.1020686746025067],[114,261,66,-0.10663039057450552],[114,261,67,-0.11187453025781233],[114,261,68,-0.11166270910591027],[114,261,69,-0.11170449135323218],[114,261,70,-0.10727499192532268],[114,261,71,-0.0980525928152648],[114,261,72,-0.09082846269151149],[114,261,73,-0.08872490385528335],[114,261,74,-0.0856411322529431],[114,261,75,-0.0830263090554507],[114,261,76,-0.08342282926339022],[114,261,77,-0.08830608237483435],[114,261,78,-0.12405777321256928],[114,261,79,-0.16949673741349386],[114,262,64,-0.1097181879208003],[114,262,65,-0.10795187392216636],[114,262,66,-0.11074314926786769],[114,262,67,-0.11338736575343264],[114,262,68,-0.11241446187941495],[114,262,69,-0.11229378728104385],[114,262,70,-0.10745770717310635],[114,262,71,-0.0982335170739334],[114,262,72,-0.09318007260825409],[114,262,73,-0.09033231988379974],[114,262,74,-0.08583674395335661],[114,262,75,-0.08303494682142734],[114,262,76,-0.08195819915559015],[114,262,77,-0.0859598572242476],[114,262,78,-0.1407456167811923],[114,262,79,-0.19315181856259972],[114,263,64,-0.10622968454682459],[114,263,65,-0.10644546830556986],[114,263,66,-0.10540496122628756],[114,263,67,-0.10642351431327612],[114,263,68,-0.10983363122184542],[114,263,69,-0.10833977756024057],[114,263,70,-0.1034325827461218],[114,263,71,-0.09543786830300695],[114,263,72,-0.08974372466121196],[114,263,73,-0.08921768203683728],[114,263,74,-0.08475362894605437],[114,263,75,-0.08182967303371788],[114,263,76,-0.08157982688705187],[114,263,77,-0.0847153681814529],[114,263,78,-0.14277313368721473],[114,263,79,-0.1891793851666554],[114,264,64,-0.10301396311723779],[114,264,65,-0.1039943660274511],[114,264,66,-0.10349918330870958],[114,264,67,-0.10233948697233926],[114,264,68,-0.10505508620299196],[114,264,69,-0.1043762098197472],[114,264,70,-0.10143179244341682],[114,264,71,-0.09453071804077656],[114,264,72,-0.08826021275365778],[114,264,73,-0.08702632674110194],[114,264,74,-0.08448053608955686],[114,264,75,-0.08075964591169822],[114,264,76,-0.08068774933293266],[114,264,77,-0.0834064305798956],[114,264,78,-0.14340585307984705],[114,264,79,-0.18781161067001834],[114,265,64,-0.10753355777550642],[114,265,65,-0.10351884286466567],[114,265,66,-0.09509205921014166],[114,265,67,-0.08875891228422926],[114,265,68,-0.08770715666770743],[114,265,69,-0.08951885038374979],[114,265,70,-0.09054190020315042],[114,265,71,-0.09105513646442497],[114,265,72,-0.09095885974657482],[114,265,73,-0.09425941400005845],[114,265,74,-0.0924638535990079],[114,265,75,-0.12930425880678584],[114,265,76,-0.17682312880350534],[114,265,77,-0.19110934083323733],[114,265,78,-0.21032228091853683],[114,265,79,-0.19648940230391032],[114,266,64,-0.11081356534922206],[114,266,65,-0.10305058389149767],[114,266,66,-0.09545340725113029],[114,266,67,-0.0887500890295919],[114,266,68,-0.08644168742233214],[114,266,69,-0.08737627526582638],[114,266,70,-0.08931863026120779],[114,266,71,-0.09192587229905443],[114,266,72,-0.09336366598096954],[114,266,73,-0.09428176275747915],[114,266,74,-0.0943960686342335],[114,266,75,-0.11915931085125164],[114,266,76,-0.17199250833839802],[114,266,77,-0.19339506421676722],[114,266,78,-0.2101873830058545],[114,266,79,-0.19502922757139235],[114,267,64,-0.10560515325733737],[114,267,65,-0.10073092565352618],[114,267,66,-0.09185139305237204],[114,267,67,-0.08600359857837586],[114,267,68,-0.0832055775158086],[114,267,69,-0.08415794267389784],[114,267,70,-0.08484354985595408],[114,267,71,-0.08911881922631068],[114,267,72,-0.09237523690151246],[114,267,73,-0.09307478964438835],[114,267,74,-0.09321539868109316],[114,267,75,-0.12038651946378379],[114,267,76,-0.17429119949432714],[114,267,77,-0.20600142188918386],[114,267,78,-0.2136752018300554],[114,267,79,-0.1987396985144635],[114,268,64,-0.09787446791097668],[114,268,65,-0.08976706659355825],[114,268,66,-0.08015984067024422],[114,268,67,-0.07161882614273515],[114,268,68,-0.06849339854055998],[114,268,69,-0.06696742153606591],[114,268,70,-0.06493716227893984],[114,268,71,-0.0676474844752786],[114,268,72,-0.07315250561868301],[114,268,73,-0.07362598458185834],[114,268,74,-0.0769573305218893],[114,268,75,-0.10784388701622519],[114,268,76,-0.1621155962148853],[114,268,77,-0.18832419683160612],[114,268,78,-0.19463862174965296],[114,268,79,-0.17781371853206318],[114,269,64,-0.09421907540901547],[114,269,65,-0.08381007515343564],[114,269,66,-0.07332748803622656],[114,269,67,-0.06822768421726011],[114,269,68,-0.06608384757894645],[114,269,69,-0.06149115795137166],[114,269,70,-0.05915941266234472],[114,269,71,-0.06292717617481375],[114,269,72,-0.07051087528092667],[114,269,73,-0.07314153304377372],[114,269,74,-0.0783130258348389],[114,269,75,-0.10360217679951342],[114,269,76,-0.1635988240873039],[114,269,77,-0.19487890022398566],[114,269,78,-0.19539368096461068],[114,269,79,-0.17686169150379485],[114,270,64,-0.09425118548751736],[114,270,65,-0.08375927027065258],[114,270,66,-0.0724847766373597],[114,270,67,-0.06946968783901546],[114,270,68,-0.06674093652241425],[114,270,69,-0.06331432574444759],[114,270,70,-0.056275020449198646],[114,270,71,-0.058771036734966725],[114,270,72,-0.0664910441999686],[114,270,73,-0.07013493982068712],[114,270,74,-0.07676379241611532],[114,270,75,-0.10323435568359549],[114,270,76,-0.1615025111519352],[114,270,77,-0.19110106734152107],[114,270,78,-0.18469083542422265],[114,270,79,-0.1664567266422729],[114,271,64,-0.08834488405882861],[114,271,65,-0.0797083825780572],[114,271,66,-0.06890885316695267],[114,271,67,-0.06681166216251821],[114,271,68,-0.06313840207129941],[114,271,69,-0.06077993668731745],[114,271,70,-0.054209964834299726],[114,271,71,-0.05680578469139082],[114,271,72,-0.0632228279112805],[114,271,73,-0.06729298557304947],[114,271,74,-0.07089520229606897],[114,271,75,-0.10315521166268588],[114,271,76,-0.15357483279431478],[114,271,77,-0.19042618673100797],[114,271,78,-0.17781747344092594],[114,271,79,-0.1624538068820959],[114,272,64,-0.08235502364289458],[114,272,65,-0.07534617708263402],[114,272,66,-0.06592778092436327],[114,272,67,-0.06157408243680601],[114,272,68,-0.05893442783852272],[114,272,69,-0.05854498394853698],[114,272,70,-0.051533912893612054],[114,272,71,-0.05429532047493371],[114,272,72,-0.05922617527984404],[114,272,73,-0.06366820909316928],[114,272,74,-0.06685873731712799],[114,272,75,-0.10687178244064577],[114,272,76,-0.1552335832192272],[114,272,77,-0.18569050501478102],[114,272,78,-0.1749061194148192],[114,272,79,-0.16013263968931032],[114,273,64,-0.08318536211871576],[114,273,65,-0.07258203117080181],[114,273,66,-0.05805228969467691],[114,273,67,-0.05162783691571309],[114,273,68,-0.04612472182039387],[114,273,69,-0.0443319840809629],[114,273,70,-0.042221669821912965],[114,273,71,-0.04510161383313662],[114,273,72,-0.05161144718557457],[114,273,73,-0.05523287474026946],[114,273,74,-0.060101168344004446],[114,273,75,-0.07736005219321657],[114,273,76,-0.08469319555746624],[114,273,77,-0.07867503982412885],[114,273,78,-0.0704219205765455],[114,273,79,-0.05785989590273316],[114,274,64,-0.08184801615692745],[114,274,65,-0.07133036255882678],[114,274,66,-0.05767153108896443],[114,274,67,-0.05068206745483843],[114,274,68,-0.04636593730088796],[114,274,69,-0.04195691938029777],[114,274,70,-0.04238854472670471],[114,274,71,-0.044982980833890455],[114,274,72,-0.048922632693460505],[114,274,73,-0.052150159294526],[114,274,74,-0.05979850309757028],[114,274,75,-0.0746195545542594],[114,274,76,-0.0813960651779424],[114,274,77,-0.07501634501039361],[114,274,78,-0.06626648606166649],[114,274,79,-0.054918490830370925],[114,275,64,-0.07709912753100172],[114,275,65,-0.06648699412552353],[114,275,66,-0.05562900771021696],[114,275,67,-0.048217525839417706],[114,275,68,-0.04575709559411812],[114,275,69,-0.042414889944967],[114,275,70,-0.04267824693803069],[114,275,71,-0.04371526100902687],[114,275,72,-0.047410667692001765],[114,275,73,-0.05032168117963877],[114,275,74,-0.058534860173634025],[114,275,75,-0.07689848417538367],[114,275,76,-0.08459325044104274],[114,275,77,-0.07804512517249201],[114,275,78,-0.0679789255028461],[114,275,79,-0.055726968222027606],[114,276,64,-0.0634266344235002],[114,276,65,-0.05563176921784126],[114,276,66,-0.047578910374639405],[114,276,67,-0.03568932203480248],[114,276,68,-0.03144765672977707],[114,276,69,-0.027980742165444883],[114,276,70,-0.028546231864464283],[114,276,71,-0.029901338784289702],[114,276,72,-0.029346773105734796],[114,276,73,-0.03506776549555575],[114,276,74,-0.04156013130002055],[114,276,75,-0.07435589589331952],[114,276,76,-0.09009976089094851],[114,276,77,-0.08302179158741568],[114,276,78,-0.0708057451542855],[114,276,79,-0.05919700006088499],[114,277,64,-0.052455235228422416],[114,277,65,-0.05253619108565336],[114,277,66,-0.05130894077916488],[114,277,67,-0.04328234549243776],[114,277,68,-0.04025655914424997],[114,277,69,-0.03587261215970854],[114,277,70,-0.0351282181081361],[114,277,71,-0.032080367936240375],[114,277,72,-0.030150905988245373],[114,277,73,-0.03586847134769393],[114,277,74,-0.03917334494491462],[114,277,75,-0.07313066197313853],[114,277,76,-0.08610314978650005],[114,277,77,-0.07895885180785656],[114,277,78,-0.06654873129944808],[114,277,79,-0.054162949648987574],[114,278,64,-0.05491099030558568],[114,278,65,-0.05468695505049595],[114,278,66,-0.05266001295223482],[114,278,67,-0.04660865715714584],[114,278,68,-0.04185022719354619],[114,278,69,-0.03697416873704035],[114,278,70,-0.033601346942626203],[114,278,71,-0.02657207072117488],[114,278,72,-0.028143649512203703],[114,278,73,-0.034023222470815156],[114,278,74,-0.03845073727625483],[114,278,75,-0.06848463150435334],[114,278,76,-0.07792835720129643],[114,278,77,-0.0720630532630411],[114,278,78,-0.059391906820822155],[114,278,79,-0.04529302129173454],[114,279,64,-0.05051583717629145],[114,279,65,-0.049009645953850926],[114,279,66,-0.048011542373975126],[114,279,67,-0.045277259517760064],[114,279,68,-0.042087152624402824],[114,279,69,-0.035122176322500046],[114,279,70,-0.031067412972173455],[114,279,71,-0.023440274902440814],[114,279,72,-0.026203483349601694],[114,279,73,-0.03198960750033005],[114,279,74,-0.03891261155231924],[114,279,75,-0.06610709131231624],[114,279,76,-0.07436763622823658],[114,279,77,-0.06786650923063836],[114,279,78,-0.05577814044458987],[114,279,79,-0.04067913631045067],[114,280,64,-0.045386363521648806],[114,280,65,-0.044607539019398255],[114,280,66,-0.04426328723052349],[114,280,67,-0.04416554137945969],[114,280,68,-0.039668724226329326],[114,280,69,-0.03014571158902786],[114,280,70,-0.028948952249863706],[114,280,71,-0.02389387709010804],[114,280,72,-0.023937857970719192],[114,280,73,-0.0293252346801878],[114,280,74,-0.03469840312253886],[114,280,75,-0.06495031027482864],[114,280,76,-0.07142463802116783],[114,280,77,-0.06242251493159656],[114,280,78,-0.05394505604955596],[114,280,79,-0.03816040863047018],[114,281,64,-0.042656725394218026],[114,281,65,-0.04341025318541555],[114,281,66,-0.04019517217994357],[114,281,67,-0.04174880705620855],[114,281,68,-0.03548220808405128],[114,281,69,-0.02901711945600679],[114,281,70,-0.02558501217508985],[114,281,71,-0.023470292098414516],[114,281,72,-0.020495709360901407],[114,281,73,-0.025644210089302136],[114,281,74,-0.032159695902540156],[114,281,75,-0.07765325261696235],[114,281,76,-0.077580507175421],[114,281,77,-0.06857777783819172],[114,281,78,-0.05692589843356949],[114,281,79,-0.04617845546658472],[114,282,64,-0.042277035953868836],[114,282,65,-0.04243577925876743],[114,282,66,-0.0413619858018595],[114,282,67,-0.038758384858660046],[114,282,68,-0.03607939816010973],[114,282,69,-0.0298764426845846],[114,282,70,-0.028363818086621043],[114,282,71,-0.0253733848672347],[114,282,72,-0.023065251245521085],[114,282,73,-0.02461097189855404],[114,282,74,-0.03197885453731216],[114,282,75,-0.07180663523631636],[114,282,76,-0.07708812868006798],[114,282,77,-0.06746984287245067],[114,282,78,-0.05450952769715631],[114,282,79,-0.04628170853140351],[114,283,64,-0.03938662720097544],[114,283,65,-0.03860721923004932],[114,283,66,-0.037721511140983155],[114,283,67,-0.03556784385383274],[114,283,68,-0.03405302152756116],[114,283,69,-0.028741358896533488],[114,283,70,-0.027317265785092165],[114,283,71,-0.02564550352979643],[114,283,72,-0.023327275433028954],[114,283,73,-0.026059831366255115],[114,283,74,-0.036077156990023326],[114,283,75,-0.07516287040028302],[114,283,76,-0.07987683885671004],[114,283,77,-0.07077274356223326],[114,283,78,-0.05708577546773913],[114,283,79,-0.05058846606275569],[114,284,64,-0.05414745158812375],[114,284,65,-0.04998616692552739],[114,284,66,-0.04829825697386026],[114,284,67,-0.04177507732978174],[114,284,68,-0.03893313269375375],[114,284,69,-0.03438814663727232],[114,284,70,-0.032764233983196514],[114,284,71,-0.02806901993524981],[114,284,72,-0.02797192442210221],[114,284,73,-0.03255406714679996],[114,284,74,-0.04265052056498704],[114,284,75,-0.07574828885884716],[114,284,76,-0.07911424326412761],[114,284,77,-0.06871438121657969],[114,284,78,-0.06057679233105301],[114,284,79,-0.0492907634778218],[114,285,64,-0.06220342162434079],[114,285,65,-0.05707016306558725],[114,285,66,-0.05291399159609381],[114,285,67,-0.04754739246496762],[114,285,68,-0.04487482014721206],[114,285,69,-0.03930380859491677],[114,285,70,-0.039629170466069744],[114,285,71,-0.035824986686699783],[114,285,72,-0.035414827057784905],[114,285,73,-0.04018642840227572],[114,285,74,-0.05151394653252252],[114,285,75,-0.07524054744418261],[114,285,76,-0.07631362882344439],[114,285,77,-0.06752133049403111],[114,285,78,-0.059154374731233306],[114,285,79,-0.046938290119033915],[114,286,64,-0.06375245259689338],[114,286,65,-0.057730123350479445],[114,286,66,-0.05195226431446912],[114,286,67,-0.04686373452017262],[114,286,68,-0.043248879780036095],[114,286,69,-0.03823775035664358],[114,286,70,-0.039511018146628524],[114,286,71,-0.03444278530861971],[114,286,72,-0.03180861385216037],[114,286,73,-0.034999423147197166],[114,286,74,-0.04339494075833353],[114,286,75,-0.07462738405243372],[114,286,76,-0.07686726819886247],[114,286,77,-0.06684685821986106],[114,286,78,-0.059364444422927376],[114,286,79,-0.04854471955516709],[114,287,64,-0.06123941390566304],[114,287,65,-0.05556779226805432],[114,287,66,-0.04709953958946764],[114,287,67,-0.039464947920662824],[114,287,68,-0.037790031768751356],[114,287,69,-0.035877039655797506],[114,287,70,-0.036563286268432874],[114,287,71,-0.034546897892204956],[114,287,72,-0.030251264951361156],[114,287,73,-0.033251758691195274],[114,287,74,-0.03735742705241021],[114,287,75,-0.07204388277002716],[114,287,76,-0.07318999124897513],[114,287,77,-0.061306539598328186],[114,287,78,-0.054693532674743084],[114,287,79,-0.04538558247531305],[114,288,64,-0.05887450701508564],[114,288,65,-0.048958090013021184],[114,288,66,-0.04206229095249328],[114,288,67,-0.03595582471134405],[114,288,68,-0.03145046131692486],[114,288,69,-0.03214014070822654],[114,288,70,-0.03398358314939808],[114,288,71,-0.03165097732874923],[114,288,72,-0.02700948793033668],[114,288,73,-0.02995955725590553],[114,288,74,-0.03237308640197206],[114,288,75,-0.06740820913451266],[114,288,76,-0.07174894071961452],[114,288,77,-0.058980809445898286],[114,288,78,-0.052584742784989924],[114,288,79,-0.04193292293497103],[114,289,64,-0.0433164962983919],[114,289,65,-0.036815818628314144],[114,289,66,-0.029365955742992944],[114,289,67,-0.02517262690745023],[114,289,68,-0.01892036612386809],[114,289,69,-0.01863436994362827],[114,289,70,-0.018398889997343404],[114,289,71,-0.014924508472386716],[114,289,72,-0.011476178967097378],[114,289,73,-0.016088766956900778],[114,289,74,-0.04543489586717616],[114,289,75,-0.08746218551879535],[114,289,76,-0.07808526656690573],[114,289,77,-0.06555130917086835],[114,289,78,-0.05508126077850231],[114,289,79,-0.0440269438265255],[114,290,64,-0.0452732743128469],[114,290,65,-0.03704577743114161],[114,290,66,-0.0315650499612617],[114,290,67,-0.024664336392238626],[114,290,68,-0.018706457293689957],[114,290,69,-0.015160678743469713],[114,290,70,-0.014037990408055784],[114,290,71,-0.011274847968334487],[114,290,72,-0.008227695483705125],[114,290,73,-0.013410093655605887],[114,290,74,-0.033107039397609186],[114,290,75,-0.07369796355317576],[114,290,76,-0.07328157408792152],[114,290,77,-0.05973259189350108],[114,290,78,-0.0482232490775881],[114,290,79,-0.03599795059201552],[114,291,64,-0.04253419586672471],[114,291,65,-0.035399529917189455],[114,291,66,-0.030544453054580138],[114,291,67,-0.02276551980331555],[114,291,68,-0.016167989840494626],[114,291,69,-0.01353593005294959],[114,291,70,-0.010176705278895096],[114,291,71,-0.0063136114939248145],[114,291,72,-0.0067270909220936564],[114,291,73,-0.010243018757598199],[114,291,74,-0.03067224503972829],[114,291,75,-0.08518464865416689],[114,291,76,-0.07494609089618984],[114,291,77,-0.06096301412293498],[114,291,78,-0.04972665771175783],[114,291,79,-0.03642244424924179],[114,292,64,-0.03039965985675744],[114,292,65,-0.02945997917832187],[114,292,66,-0.028793508145069154],[114,292,67,-0.025143768471082205],[114,292,68,-0.025169930231852183],[114,292,69,-0.02604786916140265],[114,292,70,-0.02386291134552794],[114,292,71,-0.020732170401684104],[114,292,72,-0.021823395152107482],[114,292,73,-0.02361875009816536],[114,292,74,-0.043502603099481035],[114,292,75,-0.08157931121915463],[114,292,76,-0.0692537565423004],[114,292,77,-0.05540363646351057],[114,292,78,-0.0460398660706387],[114,292,79,-0.032331527418421685],[114,293,64,-0.02854422509710925],[114,293,65,-0.029761191526075044],[114,293,66,-0.026883761629889417],[114,293,67,-0.025639642104899288],[114,293,68,-0.026691418767081185],[114,293,69,-0.024436911882505595],[114,293,70,-0.022088382863957444],[114,293,71,-0.019201251869971868],[114,293,72,-0.018772159227463676],[114,293,73,-0.021502556196133164],[114,293,74,-0.03903029548833954],[114,293,75,-0.07986924259800335],[114,293,76,-0.06783406436933356],[114,293,77,-0.05438471022670807],[114,293,78,-0.04380248888019794],[114,293,79,-0.030086477303080006],[114,294,64,-0.031160512444693853],[114,294,65,-0.02931253944967859],[114,294,66,-0.03022585002087086],[114,294,67,-0.028103021973111444],[114,294,68,-0.027366320628179903],[114,294,69,-0.02209012352939086],[114,294,70,-0.019523594844053832],[114,294,71,-0.015105391965082073],[114,294,72,-0.013710288565147721],[114,294,73,-0.016013559710643936],[114,294,74,-0.037113800804177394],[114,294,75,-0.08624590895003809],[114,294,76,-0.07669821666164542],[114,294,77,-0.06356903115867193],[114,294,78,-0.05127609482043491],[114,294,79,-0.034616144175788816],[114,295,64,-0.028836804599449532],[114,295,65,-0.026564702462064084],[114,295,66,-0.02970571522095996],[114,295,67,-0.027343616864747906],[114,295,68,-0.02573544310039351],[114,295,69,-0.021615239134198848],[114,295,70,-0.018555994201646976],[114,295,71,-0.01381502062519993],[114,295,72,-0.013027274692996992],[114,295,73,-0.016906720287008396],[114,295,74,-0.020095385447329715],[114,295,75,-0.034206146228253666],[114,295,76,-0.06142561507122537],[114,295,77,-0.060711991868261345],[114,295,78,-0.046446763098715815],[114,295,79,-0.0288191921966591],[114,296,64,-0.026399347231437206],[114,296,65,-0.02435798273812427],[114,296,66,-0.027129851249309472],[114,296,67,-0.02624029659591704],[114,296,68,-0.023642272454693622],[114,296,69,-0.02109598293791077],[114,296,70,-0.02013696271913585],[114,296,71,-0.01638346220244908],[114,296,72,-0.015484784446014255],[114,296,73,-0.01781904039174482],[114,296,74,-0.019971851373594217],[114,296,75,-0.028314806008886598],[114,296,76,-0.05703605845351027],[114,296,77,-0.06048175273069645],[114,296,78,-0.04531909425661512],[114,296,79,-0.0274222319064005],[114,297,64,-0.026486074423833314],[114,297,65,-0.027993408381157367],[114,297,66,-0.03361831820297489],[114,297,67,-0.035252388570255234],[114,297,68,-0.032133173305733426],[114,297,69,-0.028555637699044366],[114,297,70,-0.026166456605744216],[114,297,71,-0.018712710955414297],[114,297,72,-0.013061966406789804],[114,297,73,-0.010394792127331555],[114,297,74,-0.009996457627782243],[114,297,75,-0.026154567630944363],[114,297,76,-0.07048916695705293],[114,297,77,-0.06606662135702174],[114,297,78,-0.05240884449536892],[114,297,79,-0.0336082260505588],[114,298,64,-0.02707114068011532],[114,298,65,-0.027792524787438377],[114,298,66,-0.03150480038288125],[114,298,67,-0.034104128537004105],[114,298,68,-0.030238051223225454],[114,298,69,-0.028374443029666796],[114,298,70,-0.026334398031458865],[114,298,71,-0.01621685361581386],[114,298,72,-0.011823570843427715],[114,298,73,-0.007964184637411387],[114,298,74,-0.008098376675548066],[114,298,75,-0.006534284562338559],[114,298,76,-0.046119677126504256],[114,298,77,-0.06130473004113207],[114,298,78,-0.04944611542244026],[114,298,79,-0.03304133136167253],[114,299,64,-0.025218336662190685],[114,299,65,-0.02640146837354855],[114,299,66,-0.02905807850758027],[114,299,67,-0.030158706705073868],[114,299,68,-0.02547916115592639],[114,299,69,-0.025332767818142275],[114,299,70,-0.023251935661609997],[114,299,71,-0.013326841060576702],[114,299,72,-0.007322334503666789],[114,299,73,-0.004267169510958249],[114,299,74,-0.006962503612703168],[114,299,75,-0.004682824095201078],[114,299,76,-0.04344189148995176],[114,299,77,-0.06510059350802128],[114,299,78,-0.049069257755267465],[114,299,79,-0.035277621878237214],[114,300,64,-0.024878135460262768],[114,300,65,-0.022421397303017426],[114,300,66,-0.019033467677910892],[114,300,67,-0.01334383054048166],[114,300,68,-0.008538736715020034],[114,300,69,-0.0067826521131495315],[114,300,70,-0.006931232533087556],[114,300,71,-0.006632337699567545],[114,300,72,-0.003876932816170825],[114,300,73,-0.003871258475703493],[114,300,74,-0.008167952435416313],[114,300,75,-0.008044211176257351],[114,300,76,-0.002392312152913148],[114,300,77,-0.0016524225984170665],[114,300,78,-0.0068775505505704795],[114,300,79,-0.01760058020908025],[114,301,64,-0.024415542120436576],[114,301,65,-0.020978611013087095],[114,301,66,-0.017238336304814583],[114,301,67,-0.01013912902373712],[114,301,68,-0.005149848993665454],[114,301,69,-0.0027016177516277357],[114,301,70,-0.003066772642962373],[114,301,71,-0.0029717613077272637],[114,301,72,-0.002325782884375266],[114,301,73,-0.001260177322751313],[114,301,74,-0.005449593884568921],[114,301,75,-0.006416275399832687],[114,301,76,-0.0028905326865522885],[114,301,77,-9.974976333955304E-4],[114,301,78,-0.0032518304873264863],[114,301,79,-0.012029019076846097],[114,302,64,-0.023282663562643163],[114,302,65,-0.016202314301099155],[114,302,66,-0.013942479499856789],[114,302,67,-0.0042539311140689096],[114,302,68,0.0024672373425580624],[114,302,69,0.00206350235492149],[114,302,70,0.002906969708640142],[114,302,71,0.0034096440822633106],[114,302,72,0.0024272495819092493],[114,302,73,0.003945428736935611],[114,302,74,0.00143701628770454],[114,302,75,0.0017591366422747279],[114,302,76,0.005594938462700219],[114,302,77,0.005847738414640771],[114,302,78,0.0067111095334726895],[114,302,79,-0.005834269625926813],[114,303,64,-0.01874213801462586],[114,303,65,-0.013405459695942354],[114,303,66,-0.011613548562913037],[114,303,67,-0.0021347197097305315],[114,303,68,0.005413267475252892],[114,303,69,0.006238379672713262],[114,303,70,0.00612923263483639],[114,303,71,0.00531389721659889],[114,303,72,0.005621679471563293],[114,303,73,0.00551941876247683],[114,303,74,0.0035033431798148496],[114,303,75,0.004891961804998693],[114,303,76,0.00819997175542217],[114,303,77,0.009419011684573417],[114,303,78,5.64534162163963E-4],[114,303,79,-0.0029866670792286186],[114,304,64,-0.017850004125245247],[114,304,65,-0.012188419152269175],[114,304,66,-0.01030164336733097],[114,304,67,-6.543187462570016E-4],[114,304,68,0.004957459491622032],[114,304,69,0.008837679586725475],[114,304,70,0.00893366076406002],[114,304,71,0.006873884597917976],[114,304,72,0.00782356827802981],[114,304,73,0.008305504991803145],[114,304,74,0.005741799616113513],[114,304,75,0.006158673265350814],[114,304,76,0.010070588675844178],[114,304,77,0.012051249361829885],[114,304,78,0.005661484444335822],[114,304,79,0.0022571048051073725],[114,305,64,-0.018253959220848354],[114,305,65,-0.011958704164076128],[114,305,66,-0.007772257735268948],[114,305,67,-5.429689585588204E-4],[114,305,68,0.005451033784964365],[114,305,69,0.012203479795267591],[114,305,70,0.013277160370261984],[114,305,71,0.00955644845152434],[114,305,72,0.012239525574877036],[114,305,73,0.00959743204535704],[114,305,74,0.008021009198956527],[114,305,75,0.008474718156099445],[114,305,76,0.010077597669208432],[114,305,77,0.014203948402079891],[114,305,78,0.013707457461479892],[114,305,79,0.0060186790311088055],[114,306,64,-0.019123793956106444],[114,306,65,-0.01470780978113731],[114,306,66,-0.009090888688513876],[114,306,67,-0.0011105747037143399],[114,306,68,0.005950111985139908],[114,306,69,0.011960140693278554],[114,306,70,0.014310181065143021],[114,306,71,0.010353595117038691],[114,306,72,0.012445174236977885],[114,306,73,0.009531311260739986],[114,306,74,0.0070710752575557645],[114,306,75,0.008228212601583934],[114,306,76,0.010144512115853904],[114,306,77,0.015618353553379385],[114,306,78,0.022265782790716136],[114,306,79,0.014383505691770089],[114,307,64,-0.01958065760891578],[114,307,65,-0.013481181153609995],[114,307,66,-0.006832886581638886],[114,307,67,0.0015467755180615383],[114,307,68,0.008718006373479109],[114,307,69,0.0121706371252535],[114,307,70,0.014882632966252182],[114,307,71,0.013199596667625088],[114,307,72,0.014164043987722155],[114,307,73,0.00888345621813763],[114,307,74,0.007070824191989372],[114,307,75,0.009259242326661143],[114,307,76,0.013353682373969541],[114,307,77,0.019516585589835253],[114,307,78,0.02766528959520448],[114,307,79,0.019389474988991642],[114,308,64,-0.011454876745051398],[114,308,65,-0.003882799539052892],[114,308,66,0.004920131024497565],[114,308,67,0.011528148591736703],[114,308,68,0.018857147561695986],[114,308,69,0.02109939905581018],[114,308,70,0.023363988743301797],[114,308,71,0.024276453874058468],[114,308,72,0.025013725119229405],[114,308,73,0.0220624822078537],[114,308,74,0.017578137009693406],[114,308,75,0.021364529848887467],[114,308,76,0.025887536182788703],[114,308,77,0.02989868687244157],[114,308,78,0.029967058905556454],[114,308,79,0.018142782085449744],[114,309,64,-0.010270374680546035],[114,309,65,-0.0022949109097922527],[114,309,66,0.003407564581650424],[114,309,67,0.012372897792113022],[114,309,68,0.019601973015551957],[114,309,69,0.023855230298217858],[114,309,70,0.025374621630660676],[114,309,71,0.02839215578365059],[114,309,72,0.025940118547912297],[114,309,73,0.02129205129871893],[114,309,74,0.019011501728375874],[114,309,75,0.022571678777491194],[114,309,76,0.03013113340979437],[114,309,77,0.03296949732955222],[114,309,78,0.03754123452261132],[114,309,79,0.0354358302720714],[114,310,64,-0.002866556471275955],[114,310,65,0.001913571814763454],[114,310,66,0.009133275997339152],[114,310,67,0.019199836081688695],[114,310,68,0.02750456968545688],[114,310,69,0.03220483571536917],[114,310,70,0.03263341420759877],[114,310,71,0.034483344633768676],[114,310,72,0.03297494232858096],[114,310,73,0.02984391138883631],[114,310,74,0.02899603319979445],[114,310,75,0.030882847425129353],[114,310,76,0.03914393581956725],[114,310,77,0.04317377151993984],[114,310,78,0.044542089974678734],[114,310,79,0.04267613158314693],[114,311,64,-0.003057138297232073],[114,311,65,0.0015058024780334467],[114,311,66,0.010248903476097429],[114,311,67,0.01986590757699197],[114,311,68,0.02930028826197259],[114,311,69,0.0341786573425404],[114,311,70,0.033527402307713006],[114,311,71,0.03580375324916091],[114,311,72,0.03430002380748022],[114,311,73,0.032366925979092215],[114,311,74,0.03371967493616325],[114,311,75,0.03292926325495657],[114,311,76,0.038938216610201734],[114,311,77,0.03975994592557602],[114,311,78,0.038484709024085004],[114,311,79,0.04100874306453495],[114,312,64,0.004621717140862833],[114,312,65,0.007182434108062949],[114,312,66,0.013594134843928449],[114,312,67,0.02219234973156914],[114,312,68,0.031114482387707643],[114,312,69,0.03659017068573195],[114,312,70,0.037164697280908585],[114,312,71,0.03869756455039193],[114,312,72,0.035651191227895285],[114,312,73,0.034852501768214666],[114,312,74,0.03527248172468507],[114,312,75,0.03790595385653034],[114,312,76,0.04127641321283314],[114,312,77,0.03774349006225782],[114,312,78,0.03501357441669499],[114,312,79,0.03880551528095091],[114,313,64,0.003014797761723448],[114,313,65,0.0070268019962784894],[114,313,66,0.012533367761825162],[114,313,67,0.02255926893136967],[114,313,68,0.031127084845658015],[114,313,69,0.036854744111040255],[114,313,70,0.037780155531245335],[114,313,71,0.03966654124183479],[114,313,72,0.0388898055112713],[114,313,73,0.03841487702960321],[114,313,74,0.03891731073912827],[114,313,75,0.042655261852443796],[114,313,76,0.04300785437960229],[114,313,77,0.04206013312390541],[114,313,78,0.03783564260646377],[114,313,79,0.04040986515531514],[114,314,64,-7.23537749597658E-4],[114,314,65,0.0029694743326393047],[114,314,66,0.008226668808726079],[114,314,67,0.0193153107582779],[114,314,68,0.02983628348153515],[114,314,69,0.03440631571186897],[114,314,70,0.036696786910560025],[114,314,71,0.039013625561174395],[114,314,72,0.03920004781556778],[114,314,73,0.04016964034175802],[114,314,74,0.04329969743776753],[114,314,75,0.04502261380029671],[114,314,76,0.04461258682034615],[114,314,77,0.043109262702953455],[114,314,78,0.04243888725699796],[114,314,79,0.043351109070606644],[114,315,64,0.001053683454332363],[114,315,65,0.0032357528095134785],[114,315,66,0.007690214996813882],[114,315,67,0.018016754181375466],[114,315,68,0.02909826881842277],[114,315,69,0.03445552207071993],[114,315,70,0.036572979671361874],[114,315,71,0.041202958868722245],[114,315,72,0.041780031368057385],[114,315,73,0.044348380439328455],[114,315,74,0.046344373936974034],[114,315,75,0.045100639536012066],[114,315,76,0.04482774169224228],[114,315,77,0.043553207294977775],[114,315,78,0.04338350399454514],[114,315,79,0.04448979048888716],[114,316,64,-0.008163592929336896],[114,316,65,-0.003446820987873578],[114,316,66,0.005074751414242282],[114,316,67,0.015298259852087145],[114,316,68,0.028523592840348513],[114,316,69,0.03725384951784741],[114,316,70,0.04055573649547875],[114,316,71,0.04285488429327283],[114,316,72,0.04637574958475302],[114,316,73,0.04938098368414996],[114,316,74,0.05096868534282524],[114,316,75,0.050887976131831464],[114,316,76,0.05112590073545649],[114,316,77,0.05105365330891075],[114,316,78,0.05066205715668534],[114,316,79,0.058163078517050784],[114,317,64,-0.010605560897142222],[114,317,65,-0.0029180756272432634],[114,317,66,0.005716687371345189],[114,317,67,0.018383172048504107],[114,317,68,0.027833445774596982],[114,317,69,0.03705310539294043],[114,317,70,0.043451062731242815],[114,317,71,0.045001358659186086],[114,317,72,0.047187829842601905],[114,317,73,0.050737027366227566],[114,317,74,0.05329333625556318],[114,317,75,0.05417921968616722],[114,317,76,0.05339201922871972],[114,317,77,0.05237501003283608],[114,317,78,0.049999622628433424],[114,317,79,0.056057512784132395],[114,318,64,-0.004524862439281838],[114,318,65,0.004668385145500789],[114,318,66,0.014369986298081075],[114,318,67,0.025427492841605212],[114,318,68,0.03594823721496439],[114,318,69,0.04562515744689387],[114,318,70,0.050443699997726424],[114,318,71,0.0554534518523936],[114,318,72,0.059240271376880926],[114,318,73,0.061586080205730254],[114,318,74,0.06566166060287576],[114,318,75,0.06733862859568916],[114,318,76,0.06481060150673686],[114,318,77,0.06299276511169376],[114,318,78,0.05927570770618328],[114,318,79,0.06498112425111333],[114,319,64,-0.005176110994961972],[114,319,65,0.007303167013832101],[114,319,66,0.016132136178535955],[114,319,67,0.026622327715987687],[114,319,68,0.036779318890230644],[114,319,69,0.04621399355008081],[114,319,70,0.05097961215615511],[114,319,71,0.0568795615723281],[114,319,72,0.06278174961493002],[114,319,73,0.0641738537467522],[114,319,74,0.06796372836465696],[114,319,75,0.0687561543433591],[114,319,76,0.06599595268665402],[114,319,77,0.06621138778907905],[114,319,78,0.060344986640315346],[114,319,79,0.07105548927593032],[115,-64,64,-0.4775103839046153],[115,-64,65,-0.47358068337966397],[115,-64,66,-0.4734819966348311],[115,-64,67,-0.4667740058968195],[115,-64,68,-0.4589775496628561],[115,-64,69,-0.44566084123020094],[115,-64,70,-0.4335891717079401],[115,-64,71,-0.42750346940572925],[115,-64,72,-0.4216345764308055],[115,-64,73,-0.41373101224071057],[115,-64,74,-0.41078389933976234],[115,-64,75,-0.40674486709551094],[115,-64,76,-0.403251328902139],[115,-64,77,-0.4013130064489809],[115,-64,78,-0.3975927840926086],[115,-64,79,-0.3902789090590112],[115,-63,64,-0.48128769930187365],[115,-63,65,-0.47355349964501875],[115,-63,66,-0.4718965559556356],[115,-63,67,-0.46753358060427175],[115,-63,68,-0.45981694190666667],[115,-63,69,-0.44693539912665503],[115,-63,70,-0.4360042562923133],[115,-63,71,-0.4285037880072534],[115,-63,72,-0.4194628819659395],[115,-63,73,-0.41383721799149864],[115,-63,74,-0.4129756784004724],[115,-63,75,-0.40715824944161383],[115,-63,76,-0.401461053212151],[115,-63,77,-0.3961921839153589],[115,-63,78,-0.38875807640876664],[115,-63,79,-0.3828436073968793],[115,-62,64,-0.4790409693790719],[115,-62,65,-0.47281439435680234],[115,-62,66,-0.46982854400027974],[115,-62,67,-0.46722192057338024],[115,-62,68,-0.459615428143894],[115,-62,69,-0.44517433902361603],[115,-62,70,-0.43559177556269607],[115,-62,71,-0.4260391494213589],[115,-62,72,-0.41704077847356386],[115,-62,73,-0.41147301795436525],[115,-62,74,-0.4105735409820847],[115,-62,75,-0.407547682513068],[115,-62,76,-0.398182736873096],[115,-62,77,-0.3929994699761009],[115,-62,78,-0.38553540923234425],[115,-62,79,-0.3812861072188651],[115,-61,64,-0.48162758961409724],[115,-61,65,-0.4765031169113285],[115,-61,66,-0.4749863570772471],[115,-61,67,-0.47133912641390674],[115,-61,68,-0.46393499383710024],[115,-61,69,-0.44917729201278656],[115,-61,70,-0.4367093568879414],[115,-61,71,-0.4281438033161015],[115,-61,72,-0.4194289402617746],[115,-61,73,-0.4147972591453484],[115,-61,74,-0.4107381735658778],[115,-61,75,-0.4084712822177406],[115,-61,76,-0.3985391175954742],[115,-61,77,-0.39282769585207417],[115,-61,78,-0.3863727317050879],[115,-61,79,-0.3838226394358202],[115,-60,64,-0.48446364315997176],[115,-60,65,-0.48015796084427537],[115,-60,66,-0.4768469496762673],[115,-60,67,-0.47443305643711353],[115,-60,68,-0.4652519382730128],[115,-60,69,-0.45166667342223554],[115,-60,70,-0.4386637237185671],[115,-60,71,-0.4296427186263704],[115,-60,72,-0.42169044472648415],[115,-60,73,-0.41430451484212627],[115,-60,74,-0.41026279297560436],[115,-60,75,-0.4053577326143916],[115,-60,76,-0.39853061298513287],[115,-60,77,-0.3955138295632074],[115,-60,78,-0.3896294377558256],[115,-60,79,-0.3862670203267946],[115,-59,64,-0.47440376451609056],[115,-59,65,-0.4700651819159263],[115,-59,66,-0.46822511406416234],[115,-59,67,-0.4645358708585803],[115,-59,68,-0.45508941180897616],[115,-59,69,-0.4450332344300635],[115,-59,70,-0.4318273291291067],[115,-59,71,-0.42392329277627716],[115,-59,72,-0.4138168111070308],[115,-59,73,-0.40692029531498825],[115,-59,74,-0.402535087788377],[115,-59,75,-0.3969402120706298],[115,-59,76,-0.39556483438489765],[115,-59,77,-0.3964559536519966],[115,-59,78,-0.39652359391276215],[115,-59,79,-0.39483611225222853],[115,-58,64,-0.4729041459650118],[115,-58,65,-0.469699377207938],[115,-58,66,-0.4660204847773801],[115,-58,67,-0.4593807295329996],[115,-58,68,-0.45188945271617154],[115,-58,69,-0.44310911630033084],[115,-58,70,-0.42866759877469957],[115,-58,71,-0.42131827850464926],[115,-58,72,-0.4113433528030491],[115,-58,73,-0.4044019930658051],[115,-58,74,-0.39809663838305115],[115,-58,75,-0.3932620424040524],[115,-58,76,-0.39558432260789356],[115,-58,77,-0.39461925460873304],[115,-58,78,-0.394741736556713],[115,-58,79,-0.3946615313997282],[115,-57,64,-0.479917397867503],[115,-57,65,-0.47734886014621486],[115,-57,66,-0.4729070689904207],[115,-57,67,-0.4653845334165299],[115,-57,68,-0.45819683803204597],[115,-57,69,-0.4474669982463707],[115,-57,70,-0.43226512043981846],[115,-57,71,-0.4236107881766339],[115,-57,72,-0.41331281997778596],[115,-57,73,-0.4064461843480846],[115,-57,74,-0.3985117665378719],[115,-57,75,-0.39637928423303703],[115,-57,76,-0.3987652838138709],[115,-57,77,-0.3954971417416696],[115,-57,78,-0.39640545602913635],[115,-57,79,-0.3972786519469511],[115,-56,64,-0.47604036332659466],[115,-56,65,-0.47675326889242287],[115,-56,66,-0.472429175493404],[115,-56,67,-0.4641983861933979],[115,-56,68,-0.45645907729545104],[115,-56,69,-0.44444342660788055],[115,-56,70,-0.4325710400902318],[115,-56,71,-0.4242055974723714],[115,-56,72,-0.4131806433490873],[115,-56,73,-0.4048764017164374],[115,-56,74,-0.3993473570319738],[115,-56,75,-0.39441016722407024],[115,-56,76,-0.39477259424849453],[115,-56,77,-0.3921973075217254],[115,-56,78,-0.3942691423309889],[115,-56,79,-0.3936379505697225],[115,-55,64,-0.476539296632433],[115,-55,65,-0.47518407379093064],[115,-55,66,-0.47129773719598156],[115,-55,67,-0.46274116569493096],[115,-55,68,-0.4552381120818313],[115,-55,69,-0.4438129995778959],[115,-55,70,-0.43260001083126726],[115,-55,71,-0.4235025659434608],[115,-55,72,-0.4124122453087147],[115,-55,73,-0.40461674042649864],[115,-55,74,-0.3989933353579376],[115,-55,75,-0.39067769510852934],[115,-55,76,-0.3902521215895461],[115,-55,77,-0.38815644533712595],[115,-55,78,-0.38960716223651437],[115,-55,79,-0.3895267122720446],[115,-54,64,-0.47874181516183867],[115,-54,65,-0.47621319477209867],[115,-54,66,-0.4733406833091673],[115,-54,67,-0.46509899267709187],[115,-54,68,-0.4561721128631291],[115,-54,69,-0.4440323462385372],[115,-54,70,-0.43102033229171505],[115,-54,71,-0.42166124532980304],[115,-54,72,-0.41278939119769575],[115,-54,73,-0.4066441673660157],[115,-54,74,-0.39802860756887143],[115,-54,75,-0.3900229128479489],[115,-54,76,-0.38527734147560766],[115,-54,77,-0.38299725275501717],[115,-54,78,-0.3831329783512017],[115,-54,79,-0.3842802955475734],[115,-53,64,-0.4259774531774718],[115,-53,65,-0.48279892657640067],[115,-53,66,-0.477977621222634],[115,-53,67,-0.47216437069408623],[115,-53,68,-0.4613047043469889],[115,-53,69,-0.44882906136522116],[115,-53,70,-0.43455009067264067],[115,-53,71,-0.4245350181043698],[115,-53,72,-0.4151943222342813],[115,-53,73,-0.41192512920938074],[115,-53,74,-0.4014980518417496],[115,-53,75,-0.3940865660486614],[115,-53,76,-0.38620887313245933],[115,-53,77,-0.3833094346324391],[115,-53,78,-0.3830681559510237],[115,-53,79,-0.3833453995437004],[115,-52,64,-0.39242128820612426],[115,-52,65,-0.48636474631294224],[115,-52,66,-0.483860147672227],[115,-52,67,-0.4792279792963441],[115,-52,68,-0.46549529286030966],[115,-52,69,-0.4526152780036423],[115,-52,70,-0.43913979939268055],[115,-52,71,-0.42573608114435546],[115,-52,72,-0.4166381775171487],[115,-52,73,-0.4139734276075925],[115,-52,74,-0.40468870836422627],[115,-52,75,-0.3958940212659787],[115,-52,76,-0.38782181140975414],[115,-52,77,-0.3843600534215614],[115,-52,78,-0.384046234707204],[115,-52,79,-0.38338780550823326],[115,-51,64,-0.42220914498420314],[115,-51,65,-0.50150986814404],[115,-51,66,-0.5043000200262266],[115,-51,67,-0.5004103067621128],[115,-51,68,-0.486835635970875],[115,-51,69,-0.47623654367543666],[115,-51,70,-0.46207982011365945],[115,-51,71,-0.44494398866137264],[115,-51,72,-0.4365945565349491],[115,-51,73,-0.4340370276794572],[115,-51,74,-0.42482589550145544],[115,-51,75,-0.41323211501387747],[115,-51,76,-0.4018367835699146],[115,-51,77,-0.3937774810175362],[115,-51,78,-0.3856202295257733],[115,-51,79,-0.375093867906241],[115,-50,64,-0.3695397783480391],[115,-50,65,-0.49640951602711775],[115,-50,66,-0.505178861805341],[115,-50,67,-0.4984401784685487],[115,-50,68,-0.48566433274579646],[115,-50,69,-0.47621619624984324],[115,-50,70,-0.4626787918954865],[115,-50,71,-0.4472299237881554],[115,-50,72,-0.43633661060084905],[115,-50,73,-0.4313921180358552],[115,-50,74,-0.42377025655762324],[115,-50,75,-0.40986036594939357],[115,-50,76,-0.3991790547935906],[115,-50,77,-0.3905076117959867],[115,-50,78,-0.38376853692313445],[115,-50,79,-0.3722215396538667],[115,-49,64,-0.3731118243474617],[115,-49,65,-0.4991905617062553],[115,-49,66,-0.5092722877540571],[115,-49,67,-0.5004746131833776],[115,-49,68,-0.4904809268917677],[115,-49,69,-0.4781459931483104],[115,-49,70,-0.46734615619245035],[115,-49,71,-0.45064993228818145],[115,-49,72,-0.4389943592958002],[115,-49,73,-0.4321207380977894],[115,-49,74,-0.424150397858586],[115,-49,75,-0.413368984680925],[115,-49,76,-0.4032377146412581],[115,-49,77,-0.3925181929151767],[115,-49,78,-0.3822536289867141],[115,-49,79,-0.3691490524464115],[115,-48,64,-0.35863039612490444],[115,-48,65,-0.4621002805461658],[115,-48,66,-0.5055628459880974],[115,-48,67,-0.4968469207700358],[115,-48,68,-0.48711624318018243],[115,-48,69,-0.4742888629706481],[115,-48,70,-0.46150373790081767],[115,-48,71,-0.44705572414251527],[115,-48,72,-0.4363091976743046],[115,-48,73,-0.43008709679958584],[115,-48,74,-0.4195447494510717],[115,-48,75,-0.4099385712872656],[115,-48,76,-0.4017840484981145],[115,-48,77,-0.38950310106905894],[115,-48,78,-0.37827831613963747],[115,-48,79,-0.36324205869024007],[115,-47,64,-0.34915432284949754],[115,-47,65,-0.4447474412589364],[115,-47,66,-0.49827947025926567],[115,-47,67,-0.48354800099165496],[115,-47,68,-0.4709854966035427],[115,-47,69,-0.4580675278640686],[115,-47,70,-0.4460195839861567],[115,-47,71,-0.43152217688912686],[115,-47,72,-0.4255121679475288],[115,-47,73,-0.416189811257043],[115,-47,74,-0.4058998174508007],[115,-47,75,-0.39354246757214756],[115,-47,76,-0.3880813433994029],[115,-47,77,-0.3785066820412689],[115,-47,78,-0.3720215047778596],[115,-47,79,-0.3599841549330256],[115,-46,64,-0.39255700788774867],[115,-46,65,-0.49977341450643614],[115,-46,66,-0.49270893858331466],[115,-46,67,-0.48061856597310193],[115,-46,68,-0.4673745343168505],[115,-46,69,-0.4524498912818369],[115,-46,70,-0.43967874795587475],[115,-46,71,-0.4292405328945212],[115,-46,72,-0.4217045985522536],[115,-46,73,-0.41091348982609055],[115,-46,74,-0.40074466535994413],[115,-46,75,-0.3875819760829947],[115,-46,76,-0.38316825172851254],[115,-46,77,-0.37420943154000874],[115,-46,78,-0.3660564138254537],[115,-46,79,-0.35641310870610315],[115,-45,64,-0.3725804112793563],[115,-45,65,-0.4991516680483],[115,-45,66,-0.4937248990220123],[115,-45,67,-0.4812653124990789],[115,-45,68,-0.4682191462552944],[115,-45,69,-0.45240085087533355],[115,-45,70,-0.4394949404222715],[115,-45,71,-0.4324462648044889],[115,-45,72,-0.4233664532924637],[115,-45,73,-0.4114932708715569],[115,-45,74,-0.4003668979386811],[115,-45,75,-0.3892874394597572],[115,-45,76,-0.3822708217246386],[115,-45,77,-0.37470424938992575],[115,-45,78,-0.36675625900314257],[115,-45,79,-0.3566070814650534],[115,-44,64,-0.22970477671773393],[115,-44,65,-0.44994243226433334],[115,-44,66,-0.46190399514711555],[115,-44,67,-0.4524088731064614],[115,-44,68,-0.4404847251610179],[115,-44,69,-0.42871680671334067],[115,-44,70,-0.41737857634799425],[115,-44,71,-0.4119525090391189],[115,-44,72,-0.40107747601422783],[115,-44,73,-0.39306605326256505],[115,-44,74,-0.3806722401454066],[115,-44,75,-0.37079322298262857],[115,-44,76,-0.3607083278695843],[115,-44,77,-0.35364555303107814],[115,-44,78,-0.34532367435115446],[115,-44,79,-0.3366676821575279],[115,-43,64,-0.30940792866567607],[115,-43,65,-0.4497029265359196],[115,-43,66,-0.44725112105633735],[115,-43,67,-0.43768228115161134],[115,-43,68,-0.427321554027145],[115,-43,69,-0.4170666083720438],[115,-43,70,-0.4075380257807622],[115,-43,71,-0.401117663703061],[115,-43,72,-0.3927367716389675],[115,-43,73,-0.3850348538152725],[115,-43,74,-0.37227941657552216],[115,-43,75,-0.3626445855668016],[115,-43,76,-0.352638781976715],[115,-43,77,-0.3458452033639562],[115,-43,78,-0.33826237353749156],[115,-43,79,-0.33177657981009634],[115,-42,64,-0.2848675623871528],[115,-42,65,-0.44267469479302046],[115,-42,66,-0.4412969276626886],[115,-42,67,-0.4322330375161605],[115,-42,68,-0.42364731740176276],[115,-42,69,-0.41421206652640985],[115,-42,70,-0.4050401685897244],[115,-42,71,-0.4007125384371385],[115,-42,72,-0.39287286835364155],[115,-42,73,-0.384763520862664],[115,-42,74,-0.37269405140097556],[115,-42,75,-0.361164289742466],[115,-42,76,-0.35093683537853904],[115,-42,77,-0.34363087941518144],[115,-42,78,-0.337082328645647],[115,-42,79,-0.3288723960825156],[115,-41,64,-0.22974775324784116],[115,-41,65,-0.44193524813422574],[115,-41,66,-0.4394995379574528],[115,-41,67,-0.43668531699630225],[115,-41,68,-0.4280179188983274],[115,-41,69,-0.4173337161140919],[115,-41,70,-0.41211153714318977],[115,-41,71,-0.40606586313872295],[115,-41,72,-0.3960355961991125],[115,-41,73,-0.38779590167817163],[115,-41,74,-0.3754086196394864],[115,-41,75,-0.3639956572057072],[115,-41,76,-0.35335557327739553],[115,-41,77,-0.3444863877373969],[115,-41,78,-0.3355946805505274],[115,-41,79,-0.3287196888853785],[115,-40,64,-0.1764233064716953],[115,-40,65,-0.41391828781798023],[115,-40,66,-0.43133670886628084],[115,-40,67,-0.4290641873271479],[115,-40,68,-0.4242058605116451],[115,-40,69,-0.41556577044221193],[115,-40,70,-0.4119869958488967],[115,-40,71,-0.4033424755368045],[115,-40,72,-0.3933369306085568],[115,-40,73,-0.38616989811165303],[115,-40,74,-0.37518832997418705],[115,-40,75,-0.3626945630763625],[115,-40,76,-0.3519649944663535],[115,-40,77,-0.3415587990303992],[115,-40,78,-0.3329090005675343],[115,-40,79,-0.3246322979866491],[115,-39,64,-0.12400325008848773],[115,-39,65,-0.3458676613008533],[115,-39,66,-0.4213163459391798],[115,-39,67,-0.4232573675095187],[115,-39,68,-0.42508570553202873],[115,-39,69,-0.4159651887140008],[115,-39,70,-0.41038139286569286],[115,-39,71,-0.4009697187322555],[115,-39,72,-0.38961784207134753],[115,-39,73,-0.3789450742659861],[115,-39,74,-0.36647743817563544],[115,-39,75,-0.3534889908351879],[115,-39,76,-0.3434965815179725],[115,-39,77,-0.33104964245718804],[115,-39,78,-0.3225990370843115],[115,-39,79,-0.31043945140594753],[115,-38,64,-0.0475283845552229],[115,-38,65,-0.23557276764986737],[115,-38,66,-0.4126163378627647],[115,-38,67,-0.4179651000825292],[115,-38,68,-0.41811408226856256],[115,-38,69,-0.41064553723318203],[115,-38,70,-0.4063514684327595],[115,-38,71,-0.3976260627621593],[115,-38,72,-0.3884947223374686],[115,-38,73,-0.37463926846650325],[115,-38,74,-0.36027752193678],[115,-38,75,-0.351286234479924],[115,-38,76,-0.34391164852810946],[115,-38,77,-0.3308918374458786],[115,-38,78,-0.3192328281041798],[115,-38,79,-0.30619555414648464],[115,-37,64,0.00477933873995251],[115,-37,65,-0.16848653284706722],[115,-37,66,-0.3854476730331117],[115,-37,67,-0.4159277547573326],[115,-37,68,-0.41607552756075944],[115,-37,69,-0.4096113205692709],[115,-37,70,-0.40405261058719977],[115,-37,71,-0.3975404296397722],[115,-37,72,-0.3885325692057886],[115,-37,73,-0.3730826300157459],[115,-37,74,-0.3624263907862433],[115,-37,75,-0.35565611476458336],[115,-37,76,-0.34831531335275845],[115,-37,77,-0.333662032567852],[115,-37,78,-0.32024549563130716],[115,-37,79,-0.30534117248265535],[115,-36,64,0.008193669787254942],[115,-36,65,-0.13740521864808214],[115,-36,66,-0.3542013440711898],[115,-36,67,-0.4130637286646621],[115,-36,68,-0.41367954587686484],[115,-36,69,-0.4070810249883621],[115,-36,70,-0.4027327821628609],[115,-36,71,-0.3963513854204676],[115,-36,72,-0.38509212226797834],[115,-36,73,-0.3734866505000897],[115,-36,74,-0.3640417610429481],[115,-36,75,-0.35684393440331125],[115,-36,76,-0.3491894742752101],[115,-36,77,-0.3366667931033719],[115,-36,78,-0.3199143764489116],[115,-36,79,-0.303873281107132],[115,-35,64,-0.116705127425769],[115,-35,65,-0.07394531272693339],[115,-35,66,-0.145265165052346],[115,-35,67,-0.21471376573749357],[115,-35,68,-0.36289491767983834],[115,-35,69,-0.3988258908227739],[115,-35,70,-0.3962230739771869],[115,-35,71,-0.39174520141264246],[115,-35,72,-0.38459306605219],[115,-35,73,-0.3784666356595105],[115,-35,74,-0.3684197048781802],[115,-35,75,-0.3623996440925812],[115,-35,76,-0.35349262048921204],[115,-35,77,-0.340823941792572],[115,-35,78,-0.3233448344353632],[115,-35,79,-0.30553889000658296],[115,-34,64,-0.11125876769742554],[115,-34,65,-0.04828197376737198],[115,-34,66,-0.11083537845358638],[115,-34,67,-0.21494197257848402],[115,-34,68,-0.309682343170309],[115,-34,69,-0.396496676811743],[115,-34,70,-0.3942211628078093],[115,-34,71,-0.3872959868492386],[115,-34,72,-0.38035864913243944],[115,-34,73,-0.37598009311308234],[115,-34,74,-0.36610835221965243],[115,-34,75,-0.36104500768041004],[115,-34,76,-0.3514705916265749],[115,-34,77,-0.3406130424660244],[115,-34,78,-0.3243822684082599],[115,-34,79,-0.307341716951115],[115,-33,64,-0.07105158144762425],[115,-33,65,-0.01680923819584884],[115,-33,66,-0.04438208324860693],[115,-33,67,-0.14579388756982972],[115,-33,68,-0.2125840799342722],[115,-33,69,-0.3254781524710791],[115,-33,70,-0.3276133117434665],[115,-33,71,-0.32159502152487085],[115,-33,72,-0.32004871775928345],[115,-33,73,-0.32098839646111427],[115,-33,74,-0.3152686832721615],[115,-33,75,-0.31508584646301413],[115,-33,76,-0.31184102021199184],[115,-33,77,-0.3038059025745793],[115,-33,78,-0.2929509018878882],[115,-33,79,-0.28179735339405254],[115,-32,64,-0.04313877094401597],[115,-32,65,0.001547049519258159],[115,-32,66,-0.027394797867502152],[115,-32,67,-0.13653076189921542],[115,-32,68,-0.19436595403200377],[115,-32,69,-0.32404224055885156],[115,-32,70,-0.3237694087481532],[115,-32,71,-0.31877534007056085],[115,-32,72,-0.31671553669408614],[115,-32,73,-0.31844861297937055],[115,-32,74,-0.3142106478839164],[115,-32,75,-0.31363395480652884],[115,-32,76,-0.31078214252191116],[115,-32,77,-0.30485586489951133],[115,-32,78,-0.2923528509328989],[115,-32,79,-0.2795206636827856],[115,-31,64,-0.010688678670254081],[115,-31,65,0.042829072450043915],[115,-31,66,-0.0679576236807875],[115,-31,67,-0.18354211687400515],[115,-31,68,-0.2610507531072903],[115,-31,69,-0.3205440589202522],[115,-31,70,-0.32162197944229576],[115,-31,71,-0.31811957909742455],[115,-31,72,-0.31294003615839394],[115,-31,73,-0.3147503023410836],[115,-31,74,-0.3121537439563835],[115,-31,75,-0.3104274685449473],[115,-31,76,-0.3088212993650395],[115,-31,77,-0.30152741731119403],[115,-31,78,-0.29052133170710603],[115,-31,79,-0.27623310038328397],[115,-30,64,-0.00485446041999954],[115,-30,65,0.07608000469349568],[115,-30,66,-0.03965938743965003],[115,-30,67,-0.1720238717218417],[115,-30,68,-0.25486351429798004],[115,-30,69,-0.31755600354284497],[115,-30,70,-0.317706750201275],[115,-30,71,-0.31603249855493076],[115,-30,72,-0.31088573606292147],[115,-30,73,-0.31164261019874123],[115,-30,74,-0.30889008120414335],[115,-30,75,-0.3090640130548082],[115,-30,76,-0.30977083847870845],[115,-30,77,-0.3006601448897648],[115,-30,78,-0.2888855729844027],[115,-30,79,-0.2715131332810572],[115,-29,64,0.03976257681740236],[115,-29,65,0.12084217585299234],[115,-29,66,0.024014877217155006],[115,-29,67,-0.13529634144349478],[115,-29,68,-0.22008059268981334],[115,-29,69,-0.31970092428541325],[115,-29,70,-0.3212242982726563],[115,-29,71,-0.31707073352668663],[115,-29,72,-0.31564002103085287],[115,-29,73,-0.31133466831702344],[115,-29,74,-0.3090990556007094],[115,-29,75,-0.30947329811576324],[115,-29,76,-0.3099461096387967],[115,-29,77,-0.3023747844615725],[115,-29,78,-0.2920893065695233],[115,-29,79,-0.27333600106890266],[115,-28,64,0.04941606621710698],[115,-28,65,0.10586234723654614],[115,-28,66,0.02811657473189999],[115,-28,67,-0.12866886110671857],[115,-28,68,-0.21584003081418848],[115,-28,69,-0.3178905617543347],[115,-28,70,-0.3190148126600992],[115,-28,71,-0.3154805229498806],[115,-28,72,-0.31334236995768],[115,-28,73,-0.3096455062674275],[115,-28,74,-0.3078643663482795],[115,-28,75,-0.3060196732432413],[115,-28,76,-0.3080635555126994],[115,-28,77,-0.30547664287856025],[115,-28,78,-0.2944695146212942],[115,-28,79,-0.2776433237625075],[115,-27,64,0.09775953511514107],[115,-27,65,0.07966468606609445],[115,-27,66,-0.006198273502959151],[115,-27,67,-0.187651888342785],[115,-27,68,-0.3150373186707852],[115,-27,69,-0.3155298872291237],[115,-27,70,-0.3135668811050522],[115,-27,71,-0.30192761613447716],[115,-27,72,-0.2954147763889301],[115,-27,73,-0.28639002360357146],[115,-27,74,-0.2846388481588898],[115,-27,75,-0.28418405566707017],[115,-27,76,-0.2923261629085549],[115,-27,77,-0.2960088775053054],[115,-27,78,-0.29437500262389404],[115,-27,79,-0.28900285608596255],[115,-26,64,0.13082840938187373],[115,-26,65,0.11381406056483956],[115,-26,66,0.020465816223855682],[115,-26,67,-0.1499787581265735],[115,-26,68,-0.3097715448775729],[115,-26,69,-0.31100317404038647],[115,-26,70,-0.3081639183435443],[115,-26,71,-0.2962697395018995],[115,-26,72,-0.2864357741882847],[115,-26,73,-0.2823488970869523],[115,-26,74,-0.27851315987030245],[115,-26,75,-0.28105323949634553],[115,-26,76,-0.2896130005622923],[115,-26,77,-0.2947094898707159],[115,-26,78,-0.2931477747883169],[115,-26,79,-0.288304702932512],[115,-25,64,0.1026047023289191],[115,-25,65,0.10500553289832998],[115,-25,66,0.01713085017927024],[115,-25,67,-0.11594750781583632],[115,-25,68,-0.3107393552211525],[115,-25,69,-0.3100444602940935],[115,-25,70,-0.3070311253541238],[115,-25,71,-0.29686734897488903],[115,-25,72,-0.28725686615722956],[115,-25,73,-0.28414650366479305],[115,-25,74,-0.2803447859191094],[115,-25,75,-0.2819008964748142],[115,-25,76,-0.28781929467473544],[115,-25,77,-0.2966867070178832],[115,-25,78,-0.2937939777455296],[115,-25,79,-0.29091747511730526],[115,-24,64,0.0763326965287276],[115,-24,65,0.07113864230510236],[115,-24,66,-0.012878731407256871],[115,-24,67,-0.12740759454607906],[115,-24,68,-0.3055728332973259],[115,-24,69,-0.30554434809892433],[115,-24,70,-0.30086705296728067],[115,-24,71,-0.29215046197185046],[115,-24,72,-0.2822800829224833],[115,-24,73,-0.2789126373821627],[115,-24,74,-0.2760482795841744],[115,-24,75,-0.2767040437676358],[115,-24,76,-0.28398227620456584],[115,-24,77,-0.29384227767861354],[115,-24,78,-0.2933253676371909],[115,-24,79,-0.28737805629876667],[115,-23,64,0.007166131681267618],[115,-23,65,-0.0062407421277271835],[115,-23,66,-0.08694859411905712],[115,-23,67,-0.1797290830734647],[115,-23,68,-0.28997148207943024],[115,-23,69,-0.28990032409955685],[115,-23,70,-0.2884859676050298],[115,-23,71,-0.28345045497844884],[115,-23,72,-0.2811890464075627],[115,-23,73,-0.2809866062956861],[115,-23,74,-0.2821336783239789],[115,-23,75,-0.2582192766447903],[115,-23,76,-0.2896759454050041],[115,-23,77,-0.2929403988618682],[115,-23,78,-0.28720733522478875],[115,-23,79,-0.273357857700762],[115,-22,64,0.02567569376713269],[115,-22,65,-0.03883774904636475],[115,-22,66,-0.09155249346800032],[115,-22,67,-0.22182710371296457],[115,-22,68,-0.2842134023023456],[115,-22,69,-0.284310671607403],[115,-22,70,-0.2823255709304506],[115,-22,71,-0.27853070056626184],[115,-22,72,-0.2766650311270725],[115,-22,73,-0.2767515940178807],[115,-22,74,-0.28040648823941466],[115,-22,75,-0.2535712191589392],[115,-22,76,-0.28852168753613044],[115,-22,77,-0.2887962689146716],[115,-22,78,-0.28494059915835834],[115,-22,79,-0.2691680117322134],[115,-21,64,0.08701432114326402],[115,-21,65,0.02070283327145972],[115,-21,66,-0.025156996323131897],[115,-21,67,-0.18459022704456746],[115,-21,68,-0.2809738932226818],[115,-21,69,-0.28151954812403457],[115,-21,70,-0.28135500287256104],[115,-21,71,-0.2787289178509301],[115,-21,72,-0.2785762031219916],[115,-21,73,-0.2788770643986966],[115,-21,74,-0.25369287560145554],[115,-21,75,-0.20122529680954326],[115,-21,76,-0.27120192502467716],[115,-21,77,-0.2887840392292218],[115,-21,78,-0.2864847714160386],[115,-21,79,-0.2712816147181182],[115,-20,64,0.07024853257343544],[115,-20,65,0.013435495857855029],[115,-20,66,-0.07928468254633567],[115,-20,67,-0.20180014224963422],[115,-20,68,-0.2761521017086528],[115,-20,69,-0.27802847377334894],[115,-20,70,-0.2803826253833733],[115,-20,71,-0.27801937260934534],[115,-20,72,-0.27906461787557174],[115,-20,73,-0.2824911706708589],[115,-20,74,-0.2654933500658069],[115,-20,75,-0.19933523759368288],[115,-20,76,-0.2507020996888587],[115,-20,77,-0.2909147002017346],[115,-20,78,-0.28612841600805683],[115,-20,79,-0.273203807333289],[115,-19,64,0.1473985301712305],[115,-19,65,0.028780054543541267],[115,-19,66,-0.11967754016221666],[115,-19,67,-0.22057001882300004],[115,-19,68,-0.25741665256971585],[115,-19,69,-0.2605140661344689],[115,-19,70,-0.26483797678099635],[115,-19,71,-0.26490034776014254],[115,-19,72,-0.2692885136321038],[115,-19,73,-0.2567061820154495],[115,-19,74,-0.19921923738708236],[115,-19,75,-0.12285632348494763],[115,-19,76,-0.1450143625357284],[115,-19,77,-0.22699468076999127],[115,-19,78,-0.27142232444545805],[115,-19,79,-0.2579754095178114],[115,-18,64,0.13139459269728476],[115,-18,65,0.018991574353576957],[115,-18,66,-0.12400262756244816],[115,-18,67,-0.19628494590921544],[115,-18,68,-0.24708763816080676],[115,-18,69,-0.2517923024308573],[115,-18,70,-0.2550446804658649],[115,-18,71,-0.2581331271227171],[115,-18,72,-0.26368806857975774],[115,-18,73,-0.24214356459688038],[115,-18,74,-0.1894714449092339],[115,-18,75,-0.09713018018695926],[115,-18,76,-0.12538867064380088],[115,-18,77,-0.195198176631769],[115,-18,78,-0.2662472097869359],[115,-18,79,-0.2527764481557065],[115,-17,64,0.09898198729416224],[115,-17,65,-0.016302317574358127],[115,-17,66,-0.11826941160352368],[115,-17,67,-0.18917391956044144],[115,-17,68,-0.24560114029877353],[115,-17,69,-0.25068622379859434],[115,-17,70,-0.25371152296417476],[115,-17,71,-0.2578202942331017],[115,-17,72,-0.2643690885744127],[115,-17,73,-0.22962440558889163],[115,-17,74,-0.16456398575682468],[115,-17,75,-0.061056465489528255],[115,-17,76,-0.10614828096943507],[115,-17,77,-0.1667747672202058],[115,-17,78,-0.26268159909406796],[115,-17,79,-0.2533737287951027],[115,-16,64,0.1476993629830935],[115,-16,65,0.020999932807182153],[115,-16,66,-0.04452191752551801],[115,-16,67,-0.11201995393904168],[115,-16,68,-0.19200538871970535],[115,-16,69,-0.2418629522422757],[115,-16,70,-0.2474300647382166],[115,-16,71,-0.25259978961278967],[115,-16,72,-0.19260955426391724],[115,-16,73,-0.18098023099054605],[115,-16,74,-0.1400747774878519],[115,-16,75,-0.07345316554344139],[115,-16,76,-0.11190932103499515],[115,-16,77,-0.1451070249226009],[115,-16,78,-0.2228583022040941],[115,-16,79,-0.2467509287826939],[115,-15,64,0.14621376062962294],[115,-15,65,0.017772131299237798],[115,-15,66,-0.06017482331509047],[115,-15,67,-0.10472946180867236],[115,-15,68,-0.19585340793872932],[115,-15,69,-0.22848587810909132],[115,-15,70,-0.2374290175652785],[115,-15,71,-0.23264129647584858],[115,-15,72,-0.1637233481304215],[115,-15,73,-0.16872683455603932],[115,-15,74,-0.13818412218140885],[115,-15,75,-0.05685919034009998],[115,-15,76,-0.08310771425972224],[115,-15,77,-0.14689532609978484],[115,-15,78,-0.21678339299135593],[115,-15,79,-0.23482436653190739],[115,-14,64,0.021163400824763534],[115,-14,65,-0.06446747059109512],[115,-14,66,-0.1119097919188788],[115,-14,67,-0.14904556183674256],[115,-14,68,-0.21107000855651992],[115,-14,69,-0.22150406297643868],[115,-14,70,-0.2319633085486047],[115,-14,71,-0.21617802964732213],[115,-14,72,-0.1757269787020389],[115,-14,73,-0.1846379944426113],[115,-14,74,-0.1543050784800771],[115,-14,75,-0.1111707379286219],[115,-14,76,-0.12174495713873665],[115,-14,77,-0.15823742451390652],[115,-14,78,-0.2304019378015447],[115,-14,79,-0.23061433450776847],[115,-13,64,0.032995697324387833],[115,-13,65,-0.0322153516171966],[115,-13,66,-0.09023134917117856],[115,-13,67,-0.13033680265219527],[115,-13,68,-0.18239902965107183],[115,-13,69,-0.22040323603422543],[115,-13,70,-0.23224595385577437],[115,-13,71,-0.17688157529703707],[115,-13,72,-0.12020174661301178],[115,-13,73,-0.14579888900641302],[115,-13,74,-0.10876961119995032],[115,-13,75,-0.06197485598413044],[115,-13,76,-0.11046872453983089],[115,-13,77,-0.11063108134998725],[115,-13,78,-0.2271530105721878],[115,-13,79,-0.23110476942630864],[115,-12,64,0.023658963062835763],[115,-12,65,-0.03816516546798743],[115,-12,66,-0.1057681439178517],[115,-12,67,-0.1469177979093308],[115,-12,68,-0.18178314264440895],[115,-12,69,-0.21919597928376608],[115,-12,70,-0.23507581998634483],[115,-12,71,-0.18275011377135095],[115,-12,72,-0.13270363425842063],[115,-12,73,-0.1452370095168199],[115,-12,74,-0.10935573410191657],[115,-12,75,-0.07037769327050641],[115,-12,76,-0.1190864853564059],[115,-12,77,-0.12695470913404547],[115,-12,78,-0.23116813551247167],[115,-12,79,-0.23183906448772165],[115,-11,64,0.03545012679400643],[115,-11,65,0.004579278007617954],[115,-11,66,-0.09597873930740874],[115,-11,67,-0.15411021644655828],[115,-11,68,-0.19704809400632253],[115,-11,69,-0.21157142381218025],[115,-11,70,-0.22441781114502396],[115,-11,71,-0.1444365006348421],[115,-11,72,-0.07641857235129151],[115,-11,73,-0.041999115673429815],[115,-11,74,0.013555775917626633],[115,-11,75,0.051383572489495016],[115,-11,76,0.02108760462365733],[115,-11,77,-0.014809656296437962],[115,-11,78,-0.10152704122327771],[115,-11,79,-0.1471271871387147],[115,-10,64,0.028395693435538334],[115,-10,65,-0.024476066098463728],[115,-10,66,-0.08980989708367303],[115,-10,67,-0.1674162715316928],[115,-10,68,-0.19594195251322924],[115,-10,69,-0.20660173936780268],[115,-10,70,-0.2203292998876024],[115,-10,71,-0.15908582560337348],[115,-10,72,-0.0889096800304402],[115,-10,73,-0.04885389077171581],[115,-10,74,0.014274971420880966],[115,-10,75,0.04645334061032286],[115,-10,76,0.02777367827622354],[115,-10,77,-0.040910400515260764],[115,-10,78,-0.08562096697172605],[115,-10,79,-0.14478170031038679],[115,-9,64,0.03300157821932362],[115,-9,65,-0.04822346717235709],[115,-9,66,-0.09471346673063052],[115,-9,67,-0.18977024523211364],[115,-9,68,-0.1961007514324919],[115,-9,69,-0.20767306126084312],[115,-9,70,-0.21855319232631287],[115,-9,71,-0.18190837329753584],[115,-9,72,-0.11136881652857715],[115,-9,73,-0.05109521784298726],[115,-9,74,0.014582272040126326],[115,-9,75,0.035776187087480454],[115,-9,76,0.01773093285085431],[115,-9,77,-0.057099683695601505],[115,-9,78,-0.08096657487766065],[115,-9,79,-0.14371103329107038],[115,-8,64,-0.04560750329569693],[115,-8,65,-0.11962182532239715],[115,-8,66,-0.1675665307461672],[115,-8,67,-0.18578339090759952],[115,-8,68,-0.1902745382197517],[115,-8,69,-0.20337544388211748],[115,-8,70,-0.2100036064561278],[115,-8,71,-0.21146427170352014],[115,-8,72,-0.19646898258137982],[115,-8,73,-0.10735122474959477],[115,-8,74,-0.004982544068271366],[115,-8,75,0.04019724753714729],[115,-8,76,0.034998497359847586],[115,-8,77,-0.06109987044798271],[115,-8,78,-0.09324530665365519],[115,-8,79,-0.15364622421605895],[115,-7,64,-0.06915641252047543],[115,-7,65,-0.13066156510457122],[115,-7,66,-0.16932487886801414],[115,-7,67,-0.18027731935378408],[115,-7,68,-0.18630360997986462],[115,-7,69,-0.1980820411363133],[115,-7,70,-0.20074165820387296],[115,-7,71,-0.20470999799066963],[115,-7,72,-0.20369698168940148],[115,-7,73,-0.12193682056229763],[115,-7,74,-0.018286053801047336],[115,-7,75,0.032250577735469965],[115,-7,76,0.020010136564928033],[115,-7,77,-0.08091710017513101],[115,-7,78,-0.1084917948359463],[115,-7,79,-0.1764450401856034],[115,-6,64,-0.0847450628570994],[115,-6,65,-0.13211760081608515],[115,-6,66,-0.16427289217987595],[115,-6,67,-0.17291958918366468],[115,-6,68,-0.18187645707349206],[115,-6,69,-0.19014140622498116],[115,-6,70,-0.1942965539028581],[115,-6,71,-0.19745217672143434],[115,-6,72,-0.20123637665770522],[115,-6,73,-0.13914096681940807],[115,-6,74,-0.03064037734321831],[115,-6,75,0.009929512575410943],[115,-6,76,0.002110963770392743],[115,-6,77,-0.0864723067603965],[115,-6,78,-0.1349249966903678],[115,-6,79,-0.20110614365758891],[115,-5,64,-0.10030152449384944],[115,-5,65,-0.08238099483082588],[115,-5,66,-0.08614508775690562],[115,-5,67,-0.13255190395258612],[115,-5,68,-0.13728485257844011],[115,-5,69,-0.1730928674688162],[115,-5,70,-0.19451177124189464],[115,-5,71,-0.1804008385021378],[115,-5,72,-0.16556135182882503],[115,-5,73,-0.2009121977524211],[115,-5,74,-0.18732433073305016],[115,-5,75,-0.18059359721446755],[115,-5,76,-0.20657344975425498],[115,-5,77,-0.20735520213779424],[115,-5,78,-0.21057911680146335],[115,-5,79,-0.21541873797436856],[115,-4,64,-0.10420001508775667],[115,-4,65,-0.10457405588285326],[115,-4,66,-0.09500334736974451],[115,-4,67,-0.13088151111793195],[115,-4,68,-0.1636776617205199],[115,-4,69,-0.18950999832309556],[115,-4,70,-0.19685248614464365],[115,-4,71,-0.20217793616589397],[115,-4,72,-0.18885991690149084],[115,-4,73,-0.20613332336626797],[115,-4,74,-0.20622341434578315],[115,-4,75,-0.20573395422594948],[115,-4,76,-0.21190809640413089],[115,-4,77,-0.2118325653513845],[115,-4,78,-0.2134619831235314],[115,-4,79,-0.2161381177099001],[115,-3,64,-0.05654543182319921],[115,-3,65,-0.07072590999755092],[115,-3,66,-0.0595393635888645],[115,-3,67,-0.08460894011087694],[115,-3,68,-0.12282496586971214],[115,-3,69,-0.13277613200144844],[115,-3,70,-0.1787359157735275],[115,-3,71,-0.16806989927694727],[115,-3,72,-0.15302449912520663],[115,-3,73,-0.1893651661077796],[115,-3,74,-0.18552817591775103],[115,-3,75,-0.17039625552713517],[115,-3,76,-0.20309193635071493],[115,-3,77,-0.20836356347952473],[115,-3,78,-0.20363111600535436],[115,-3,79,-0.19883851494538374],[115,-2,64,-0.05182465684413971],[115,-2,65,-0.07910167278284927],[115,-2,66,-0.06583804113797052],[115,-2,67,-0.0875409783499663],[115,-2,68,-0.1340514803266232],[115,-2,69,-0.13150212591065155],[115,-2,70,-0.169023193143343],[115,-2,71,-0.17591631165280397],[115,-2,72,-0.16329337844508257],[115,-2,73,-0.20247098282811074],[115,-2,74,-0.1936091033457182],[115,-2,75,-0.1793461413130887],[115,-2,76,-0.20347587880670537],[115,-2,77,-0.20147466905297307],[115,-2,78,-0.19779702081678918],[115,-2,79,-0.19126294388895076],[115,-1,64,-0.02285429356714319],[115,-1,65,-0.0477099332634071],[115,-1,66,-0.030925181219535136],[115,-1,67,-0.04647445061776467],[115,-1,68,-0.08749032760540745],[115,-1,69,-0.08594518138344925],[115,-1,70,-0.09513570989106158],[115,-1,71,-0.11730911555895304],[115,-1,72,-0.11888813319478549],[115,-1,73,-0.18840563516602601],[115,-1,74,-0.19999706041987014],[115,-1,75,-0.19904495701773572],[115,-1,76,-0.1985937895941313],[115,-1,77,-0.19439923688345107],[115,-1,78,-0.19253118074299166],[115,-1,79,-0.18578708847952308],[115,0,64,-0.02479225376667163],[115,0,65,-0.023515095413368353],[115,0,66,-0.02428874241307523],[115,0,67,-0.026754477579196065],[115,0,68,-0.03328075315798673],[115,0,69,-0.04285898911997396],[115,0,70,-0.045732368085349945],[115,0,71,-0.053772416268445325],[115,0,72,-0.06236421912311971],[115,0,73,-0.06500052407092943],[115,0,74,-0.06611324380490638],[115,0,75,-0.06690491713177263],[115,0,76,-0.07197495641970714],[115,0,77,-0.07321274117237776],[115,0,78,-0.07955151833485899],[115,0,79,-0.08221431546092775],[115,1,64,-0.02639010568834639],[115,1,65,-0.022293652759992913],[115,1,66,-0.022823530198938097],[115,1,67,-0.024997083930382857],[115,1,68,-0.032637208983469806],[115,1,69,-0.03974210590190719],[115,1,70,-0.045908262487389676],[115,1,71,-0.05365862244218164],[115,1,72,-0.059341458600061125],[115,1,73,-0.06021556876148039],[115,1,74,-0.060809021614557215],[115,1,75,-0.06264634394805699],[115,1,76,-0.06928884442796725],[115,1,77,-0.07247785224568291],[115,1,78,-0.07547672104669255],[115,1,79,-0.07902032519760696],[115,2,64,-0.027172759115147632],[115,2,65,-0.021367311452431162],[115,2,66,-0.023974097353084048],[115,2,67,-0.026585361967356946],[115,2,68,-0.03207828820666567],[115,2,69,-0.03896233975956161],[115,2,70,-0.048402343998223435],[115,2,71,-0.05528810804669476],[115,2,72,-0.05747304008817945],[115,2,73,-0.05767856853332845],[115,2,74,-0.05883432046951541],[115,2,75,-0.0609944876798415],[115,2,76,-0.06803390551381436],[115,2,77,-0.07189337570059562],[115,2,78,-0.07289061746403033],[115,2,79,-0.07490174353737894],[115,3,64,-0.02554240649845807],[115,3,65,-0.022197029206136296],[115,3,66,-0.026898150705395377],[115,3,67,-0.027496111701418052],[115,3,68,-0.03059076972752975],[115,3,69,-0.03754800532232681],[115,3,70,-0.04780259307268356],[115,3,71,-0.05502948428893786],[115,3,72,-0.053440129561670116],[115,3,73,-0.05322186019837405],[115,3,74,-0.058617117042799066],[115,3,75,-0.06058747055067476],[115,3,76,-0.06371134644805494],[115,3,77,-0.06759989346766775],[115,3,78,-0.0702750301798169],[115,3,79,-0.07075983713914555],[115,4,64,-0.02737887300538],[115,4,65,-0.024705405157230742],[115,4,66,-0.02621841404858008],[115,4,67,-0.027726961140676576],[115,4,68,-0.029009549266676204],[115,4,69,-0.033766472346347914],[115,4,70,-0.0419557308387557],[115,4,71,-0.052043537594416545],[115,4,72,-0.04823502802674985],[115,4,73,-0.04924750847098654],[115,4,74,-0.053714161268237276],[115,4,75,-0.05672653051491712],[115,4,76,-0.05846119751243599],[115,4,77,-0.06063773039653861],[115,4,78,-0.06464460649953807],[115,4,79,-0.06564322912086276],[115,5,64,-0.029913715516720327],[115,5,65,-0.02633059531863713],[115,5,66,-0.025802590215356427],[115,5,67,-0.026031809673747797],[115,5,68,-0.02840803693055423],[115,5,69,-0.0327318249388525],[115,5,70,-0.03874006844502183],[115,5,71,-0.04457512381202229],[115,5,72,-0.044260516043656106],[115,5,73,-0.04553466279708707],[115,5,74,-0.04722777625445909],[115,5,75,-0.049955473930826166],[115,5,76,-0.051009399456391144],[115,5,77,-0.05447992516243026],[115,5,78,-0.060449207987675085],[115,5,79,-0.061671296935545544],[115,6,64,-0.031871651466927414],[115,6,65,-0.02675445104500751],[115,6,66,-0.024509886446514334],[115,6,67,-0.02395679578170884],[115,6,68,-0.02622694424655697],[115,6,69,-0.028895740373573342],[115,6,70,-0.03244215973488215],[115,6,71,-0.03779221919146658],[115,6,72,-0.039110957004385744],[115,6,73,-0.042091851216059864],[115,6,74,-0.04354573977787762],[115,6,75,-0.04296412778724483],[115,6,76,-0.04478741910480262],[115,6,77,-0.04770345479007049],[115,6,78,-0.05367475598361343],[115,6,79,-0.05700908840299017],[115,7,64,-0.030988743785642994],[115,7,65,-0.025922018494195675],[115,7,66,-0.023914880925443638],[115,7,67,-0.021698661199421126],[115,7,68,-0.022498783844491776],[115,7,69,-0.023444798125510757],[115,7,70,-0.02894496207075002],[115,7,71,-0.03418075454606899],[115,7,72,-0.034505116798119795],[115,7,73,-0.03690432063662612],[115,7,74,-0.03873248604241519],[115,7,75,-0.03742335309696149],[115,7,76,-0.038595937034138716],[115,7,77,-0.04158481699857114],[115,7,78,-0.04666103570242694],[115,7,79,-0.05109842793257467],[115,8,64,-0.02892994457424089],[115,8,65,-0.023856502560191395],[115,8,66,-0.019283889884453592],[115,8,67,-0.013802534985451281],[115,8,68,-0.013307212544968972],[115,8,69,-0.014570385167215288],[115,8,70,-0.01851243872096056],[115,8,71,-0.02222738132948686],[115,8,72,-0.02507527228259998],[115,8,73,-0.027681890669110976],[115,8,74,-0.026172859518090674],[115,8,75,-0.02607850534904725],[115,8,76,-0.025922119316901165],[115,8,77,-0.026043362781044785],[115,8,78,-0.0332146474277048],[115,8,79,-0.03600235434627991],[115,9,64,-0.027637726022497477],[115,9,65,-0.01980106548143057],[115,9,66,-0.010335955839725686],[115,9,67,-0.0019632747339762835],[115,9,68,0.0013081552858323908],[115,9,69,-7.861312171327794E-4],[115,9,70,-0.007430516501303108],[115,9,71,-0.015011763514853033],[115,9,72,-0.020812651252268916],[115,9,73,-0.022183044536059543],[115,9,74,-0.020323244197804277],[115,9,75,-0.02215693421048326],[115,9,76,-0.02049382389899032],[115,9,77,-0.018956879928542822],[115,9,78,-0.026265614798711423],[115,9,79,-0.030753411358584865],[115,10,64,-0.028190692618549715],[115,10,65,-0.021344203043586307],[115,10,66,-0.010665974675306666],[115,10,67,-0.0017453222729625906],[115,10,68,0.003162484954542716],[115,10,69,0.00228823969486458],[115,10,70,-0.005462549734725097],[115,10,71,-0.013099466824276151],[115,10,72,-0.01656174214729933],[115,10,73,-0.017737077253866418],[115,10,74,-0.017281876309611532],[115,10,75,-0.020021015081848198],[115,10,76,-0.016729602592215675],[115,10,77,-0.015726391198836343],[115,10,78,-0.02092185714479619],[115,10,79,-0.027336038718133712],[115,11,64,-0.029148460445219515],[115,11,65,-0.022790074523756004],[115,11,66,-0.01141685107627613],[115,11,67,-0.003261329833945198],[115,11,68,0.0031131733916172633],[115,11,69,0.00481699230921126],[115,11,70,-0.0017675073306163969],[115,11,71,-0.01121078369172307],[115,11,72,-0.012717514301058275],[115,11,73,-0.012051528467613426],[115,11,74,-0.014430019552019557],[115,11,75,-0.015088949708402022],[115,11,76,-0.012513666841758003],[115,11,77,-0.013583590583860938],[115,11,78,-0.01664517327003691],[115,11,79,-0.023365397683963465],[115,12,64,-0.02990541135175484],[115,12,65,-0.025866800483170457],[115,12,66,-0.01589056695464887],[115,12,67,-0.007451883992110081],[115,12,68,-0.00303004078554861],[115,12,69,3.5182617620718726E-4],[115,12,70,-0.003161683093664186],[115,12,71,-0.013759362217441062],[115,12,72,-0.017523849034627226],[115,12,73,-0.01640865467231631],[115,12,74,-0.017485492893557775],[115,12,75,-0.017378971602059173],[115,12,76,-0.015952611663184874],[115,12,77,-0.01669154292994457],[115,12,78,-0.021068242828103684],[115,12,79,-0.027701439738626654],[115,13,64,-0.031744014163106016],[115,13,65,-0.029653834792481168],[115,13,66,-0.022645412799282144],[115,13,67,-0.013372302256317414],[115,13,68,-0.012851815561661095],[115,13,69,-0.008980539798002174],[115,13,70,-0.010509554640707047],[115,13,71,-0.015906131202064785],[115,13,72,-0.01793322522137175],[115,13,73,-0.013234787440091239],[115,13,74,-0.013976673989362226],[115,13,75,-0.013414738112800223],[115,13,76,-0.012526327382934549],[115,13,77,-0.012328692046539996],[115,13,78,-0.017499188229952195],[115,13,79,-0.02380978834178643],[115,14,64,-0.03269279427537597],[115,14,65,-0.028778202571784345],[115,14,66,-0.021703727287756824],[115,14,67,-0.013356542114301595],[115,14,68,-0.011147288625666607],[115,14,69,-0.010325945813434961],[115,14,70,-0.009866992660222451],[115,14,71,-0.014197539258260505],[115,14,72,-0.015422242148257492],[115,14,73,-0.009702930342719879],[115,14,74,-0.011186555583067498],[115,14,75,-0.010929162350980376],[115,14,76,-0.011089045726234648],[115,14,77,-0.009668582590155489],[115,14,78,-0.01291685038297169],[115,14,79,-0.01895194640502952],[115,15,64,-0.032573157426196334],[115,15,65,-0.029950734508589913],[115,15,66,-0.019766651242400582],[115,15,67,-0.011899782382962576],[115,15,68,-0.010219763342487587],[115,15,69,-0.009984191221236671],[115,15,70,-0.010808807522349695],[115,15,71,-0.011917608242327266],[115,15,72,-0.011505461639074649],[115,15,73,-0.007131637397310847],[115,15,74,-0.007664905288261914],[115,15,75,-0.009167077014924169],[115,15,76,-0.007727487365951052],[115,15,77,-0.0035615208762069805],[115,15,78,-0.009236303320829031],[115,15,79,-0.015849094771296007],[115,16,64,-0.03251574590512894],[115,16,65,-0.029586729897666683],[115,16,66,-0.01840824004219535],[115,16,67,-0.011380456235521558],[115,16,68,-0.00990761168278198],[115,16,69,-0.005413285237238719],[115,16,70,-0.006221642542274836],[115,16,71,-0.00533584333286008],[115,16,72,-0.0036739499628598016],[115,16,73,0.0024741930500983833],[115,16,74,0.002721925209575732],[115,16,75,8.119204300026939E-4],[115,16,76,0.004515722651187576],[115,16,77,0.009211785673016892],[115,16,78,0.005447536268459452],[115,16,79,-0.0014157727416606591],[115,17,64,-0.029826966623435106],[115,17,65,-0.0262542218024176],[115,17,66,-0.01741554860953981],[115,17,67,-0.012380819722929481],[115,17,68,-0.00806467063833985],[115,17,69,-0.003808168317933014],[115,17,70,-0.007251495323012891],[115,17,71,-0.005475765130523114],[115,17,72,-0.002808499685088922],[115,17,73,0.005310956347787027],[115,17,74,0.004519549870716483],[115,17,75,0.0041890280983716],[115,17,76,0.007681094114055986],[115,17,77,0.011445126058020422],[115,17,78,0.008656997953751328],[115,17,79,0.002002052845367863],[115,18,64,-0.02518613239341802],[115,18,65,-0.020964673725594962],[115,18,66,-0.01502431667754378],[115,18,67,-0.012095399107598742],[115,18,68,-0.006357970692632636],[115,18,69,-0.004026157584247042],[115,18,70,-0.004616936308929398],[115,18,71,-0.0034021667994272864],[115,18,72,0.0012180208760092515],[115,18,73,0.006688911875369685],[115,18,74,0.0051485363945297236],[115,18,75,0.004878478726717955],[115,18,76,0.01034872615088131],[115,18,77,0.01355046115698516],[115,18,78,0.01245348176241709],[115,18,79,0.006696007530549886],[115,19,64,-0.023220669973593483],[115,19,65,-0.019212607108475638],[115,19,66,-0.014125600148039208],[115,19,67,-0.01255635101877528],[115,19,68,-0.005865068761663511],[115,19,69,-0.0012146468151880419],[115,19,70,0.0016785800750807878],[115,19,71,0.0019890761514661515],[115,19,72,0.005970826076196839],[115,19,73,0.006831072382414455],[115,19,74,0.007106544937521442],[115,19,75,0.007570460441506638],[115,19,76,0.011225553756491674],[115,19,77,0.016102131608766418],[115,19,78,0.016231102873294545],[115,19,79,0.007948617201488761],[115,20,64,-0.01850223384321842],[115,20,65,-0.021092946109343216],[115,20,66,-0.01558879740598794],[115,20,67,-0.015022336668372438],[115,20,68,-0.00800135420965073],[115,20,69,-0.00543505906999292],[115,20,70,-0.00221181970532483],[115,20,71,-2.0465322708088096E-4],[115,20,72,0.001155324596045143],[115,20,73,0.0031558143072771827],[115,20,74,0.0029317196143847646],[115,20,75,0.0014004428392804247],[115,20,76,0.005567781073121281],[115,20,77,0.008976975640399176],[115,20,78,0.00941382072494154],[115,20,79,0.002217690575570419],[115,21,64,-0.00782980745355695],[115,21,65,-0.012346780106145622],[115,21,66,-0.011522495607813432],[115,21,67,-0.010347823759115943],[115,21,68,-0.006410130342959702],[115,21,69,-0.005318215036938689],[115,21,70,-0.0036152286677632595],[115,21,71,-0.0017842135481693222],[115,21,72,-6.188400853989751E-4],[115,21,73,-0.002890977411551393],[115,21,74,-3.128909737033503E-4],[115,21,75,-0.00308437645740664],[115,21,76,1.8779152195014248E-4],[115,21,77,0.005941318389628358],[115,21,78,0.006162125176818634],[115,21,79,0.0033334286083861187],[115,22,64,-0.007588120642987695],[115,22,65,-0.011352040358900084],[115,22,66,-0.010161413955467866],[115,22,67,-0.010637113544493343],[115,22,68,-0.0055643823895029365],[115,22,69,-0.004934849112234463],[115,22,70,-0.003917889634689087],[115,22,71,8.548978112209449E-4],[115,22,72,0.0014786456150546745],[115,22,73,-2.919803784038333E-4],[115,22,74,1.3295554529560438E-4],[115,22,75,-0.003985560455857046],[115,22,76,-0.00256665101372347],[115,22,77,0.004083019132105653],[115,22,78,0.004819707530406614],[115,22,79,0.004018846586223118],[115,23,64,-0.005846802774998078],[115,23,65,-0.009355817048222248],[115,23,66,-0.008884670393874777],[115,23,67,-0.007621212455147797],[115,23,68,-0.005260504260271165],[115,23,69,-0.0018637599996395304],[115,23,70,-0.0017893313503629105],[115,23,71,8.40248551978312E-4],[115,23,72,0.004887804967054349],[115,23,73,0.004584319794986524],[115,23,74,0.00143230279301651],[115,23,75,-0.0016384688071866549],[115,23,76,-0.0015924347337179512],[115,23,77,0.0036646164218945565],[115,23,78,0.00563655876379876],[115,23,79,0.00545436544728134],[115,24,64,0.003218677702819861],[115,24,65,-2.0506423243429883E-4],[115,24,66,0.0011221327715138785],[115,24,67,0.0040532359811700225],[115,24,68,0.006821572782158947],[115,24,69,0.008644855071036323],[115,24,70,0.010094227842609493],[115,24,71,0.009976212025208209],[115,24,72,0.014975583177319118],[115,24,73,0.01509534470625784],[115,24,74,0.012672395184348512],[115,24,75,0.008043611598031242],[115,24,76,0.005107389957947128],[115,24,77,0.011864173574500925],[115,24,78,0.014724679757114889],[115,24,79,0.013709837096227279],[115,25,64,0.017936098908441223],[115,25,65,0.015276501604023579],[115,25,66,0.01680791863680975],[115,25,67,0.01830166005794301],[115,25,68,0.020913653311370906],[115,25,69,0.021605545129324277],[115,25,70,0.02639807337444386],[115,25,71,0.022870484341755093],[115,25,72,0.02408861107520774],[115,25,73,0.02584379552405769],[115,25,74,0.02412525233134008],[115,25,75,0.017433111174456034],[115,25,76,0.01018523685929884],[115,25,77,0.010779738582724241],[115,25,78,0.008109729744286809],[115,25,79,0.0029394065799949187],[115,26,64,0.02368457280735295],[115,26,65,0.021489515869502457],[115,26,66,0.02272562817818327],[115,26,67,0.020395524769925705],[115,26,68,0.022297834906633396],[115,26,69,0.02401519740951863],[115,26,70,0.026846359756296595],[115,26,71,0.025656613640835935],[115,26,72,0.02502820992024707],[115,26,73,0.023977102114021015],[115,26,74,0.022201897140277788],[115,26,75,0.018211117582039832],[115,26,76,0.012448909098549149],[115,26,77,0.010631542139008798],[115,26,78,0.009286358164509317],[115,26,79,0.0020648291529335727],[115,27,64,0.029888923292658104],[115,27,65,0.0277224807955751],[115,27,66,0.026413501411108264],[115,27,67,0.024380849325394888],[115,27,68,0.02456187728480999],[115,27,69,0.02432561028179242],[115,27,70,0.02805335686384461],[115,27,71,0.026180302815282913],[115,27,72,0.02412672610948155],[115,27,73,0.023947807538204108],[115,27,74,0.021244570373552846],[115,27,75,0.018505959809442557],[115,27,76,0.012292382770700633],[115,27,77,0.00909626725137705],[115,27,78,0.00957801419509427],[115,27,79,6.251643453845934E-4],[115,28,64,0.030147717653168343],[115,28,65,0.029230836726331477],[115,28,66,0.027569056940159542],[115,28,67,0.026495094689343773],[115,28,68,0.02300117442925359],[115,28,69,0.0230093984257152],[115,28,70,0.021346126956162198],[115,28,71,0.0190746015078449],[115,28,72,0.018340124849947848],[115,28,73,0.018063302061537945],[115,28,74,0.016866018477643407],[115,28,75,0.014326870431067479],[115,28,76,0.006412708299983083],[115,28,77,0.0019845653643631167],[115,28,78,0.0016061598934792864],[115,28,79,-0.0073952203400982075],[115,29,64,0.028688000657832946],[115,29,65,0.02857427258950279],[115,29,66,0.028420595919666947],[115,29,67,0.027212452810407267],[115,29,68,0.024020340345614705],[115,29,69,0.020707221001478898],[115,29,70,0.016727698653981576],[115,29,71,0.012812681653901675],[115,29,72,0.01091285587118579],[115,29,73,0.012749317428495305],[115,29,74,0.011779624249498688],[115,29,75,0.00963709091166845],[115,29,76,0.0034049058585954306],[115,29,77,-6.624476313344674E-4],[115,29,78,-0.0010865207310135627],[115,29,79,-0.008033469417391415],[115,30,64,0.030038810623418816],[115,30,65,0.03332988975989004],[115,30,66,0.03174137133864521],[115,30,67,0.03041313398157708],[115,30,68,0.025661531981583552],[115,30,69,0.021855183619704066],[115,30,70,0.017215413940429802],[115,30,71,0.011074520227344425],[115,30,72,0.008534957339240978],[115,30,73,0.009003199722220773],[115,30,74,0.00934706801053331],[115,30,75,0.004592730903776182],[115,30,76,0.002241090743437757],[115,30,77,-0.0014421663301239784],[115,30,78,-0.0040964270223383115],[115,30,79,-0.009587252321553552],[115,31,64,0.02920870646596474],[115,31,65,0.03379345619910884],[115,31,66,0.03427130781514948],[115,31,67,0.03379440918656054],[115,31,68,0.02432401781621149],[115,31,69,0.018576215843567945],[115,31,70,0.014638054744176648],[115,31,71,0.009101964769506393],[115,31,72,0.005501625399928628],[115,31,73,0.007001846904819614],[115,31,74,0.004116961559471527],[115,31,75,-8.834326772059198E-4],[115,31,76,-0.00362304629750429],[115,31,77,-0.0073081934953654615],[115,31,78,-0.01079599597727679],[115,31,79,-0.011354595338930323],[115,32,64,0.04156172643706357],[115,32,65,0.045047903229296526],[115,32,66,0.04665623737392549],[115,32,67,0.044738494602726525],[115,32,68,0.03400339466825056],[115,32,69,0.025395841664111435],[115,32,70,0.02467758416189675],[115,32,71,0.01965089181871535],[115,32,72,0.014791901191611445],[115,32,73,0.013834318851923821],[115,32,74,0.009946531700443628],[115,32,75,0.0062966589395064],[115,32,76,0.004644141333415452],[115,32,77,7.019511550764301E-4],[115,32,78,-0.003220948133603768],[115,32,79,-0.0030215179431848926],[115,33,64,0.03484315107072383],[115,33,65,0.04071024236710294],[115,33,66,0.04416677176591802],[115,33,67,0.04096697762261575],[115,33,68,0.031217494043356914],[115,33,69,0.021143645569459746],[115,33,70,0.015885759340603267],[115,33,71,0.014522806361325552],[115,33,72,0.006759102199865807],[115,33,73,-7.80073728101488E-4],[115,33,74,-0.0034549040579634205],[115,33,75,-0.007550640435714073],[115,33,76,-0.008221260871418279],[115,33,77,-0.010700732431699278],[115,33,78,-0.013680956232904884],[115,33,79,-0.012269417616498107],[115,34,64,0.03895289781129688],[115,34,65,0.04339342707715926],[115,34,66,0.048443635870696194],[115,34,67,0.03951807807581739],[115,34,68,0.030529902945097748],[115,34,69,0.021552821249923665],[115,34,70,0.014517944608976319],[115,34,71,0.01185309174603999],[115,34,72,0.0038874692261918753],[115,34,73,-0.0037826421383189146],[115,34,74,-0.0061555892757935715],[115,34,75,-0.01083140841303562],[115,34,76,-0.01088846289935999],[115,34,77,-0.01192138899054812],[115,34,78,-0.013658882832347646],[115,34,79,-0.0174166355876737],[115,35,64,0.040264487686741596],[115,35,65,0.04447380374698531],[115,35,66,0.050328244188359156],[115,35,67,0.03983833719750471],[115,35,68,0.03161248015012133],[115,35,69,0.021163156667761],[115,35,70,0.012531001878386044],[115,35,71,0.009802515669109751],[115,35,72,0.0018404588358206242],[115,35,73,-0.00610356459635733],[115,35,74,-0.008790250292546126],[115,35,75,-0.012388477245825064],[115,35,76,-0.01043161796255132],[115,35,77,-0.014656163190309268],[115,35,78,-0.015401747748362338],[115,35,79,-0.01794013959332799],[115,36,64,0.03805495351039234],[115,36,65,0.04227549774977027],[115,36,66,0.04669883309360731],[115,36,67,0.038389189402847634],[115,36,68,0.028263972495437578],[115,36,69,0.01812625465086526],[115,36,70,0.01097854673845347],[115,36,71,0.00448088292115989],[115,36,72,-0.0036324259444865947],[115,36,73,-0.011957892651333762],[115,36,74,-0.01610542279658453],[115,36,75,-0.016172955047792148],[115,36,76,-0.01314510953865855],[115,36,77,-0.017779998094684155],[115,36,78,-0.021179939034215695],[115,36,79,-0.022448935086497285],[115,37,64,0.054053472795596136],[115,37,65,0.05403733400791702],[115,37,66,0.05061560627201092],[115,37,67,0.038341123559438056],[115,37,68,0.0233479692449311],[115,37,69,0.011443944448370408],[115,37,70,0.005097926424745353],[115,37,71,-8.163179797890385E-4],[115,37,72,-0.004628646800119651],[115,37,73,-0.011836335307529977],[115,37,74,-0.014609168488470117],[115,37,75,-0.01417352979027782],[115,37,76,-0.01097724821203111],[115,37,77,-0.013377842218347369],[115,37,78,-0.016140040674513953],[115,37,79,-0.013229192139154106],[115,38,64,0.059741250629070125],[115,38,65,0.056985079704305636],[115,38,66,0.04987378491259434],[115,38,67,0.03769134920801823],[115,38,68,0.026295047345526595],[115,38,69,0.013156695869675467],[115,38,70,0.006505867168118906],[115,38,71,-0.0025509700584918638],[115,38,72,-0.0067442645688354785],[115,38,73,-0.011398096397888413],[115,38,74,-0.014622752759853946],[115,38,75,-0.01617316753928269],[115,38,76,-0.01319753533151552],[115,38,77,-0.015320087060056942],[115,38,78,-0.01594481342173039],[115,38,79,-0.010710696462070818],[115,39,64,0.060372438314928445],[115,39,65,0.058266399164923544],[115,39,66,0.05041817194357223],[115,39,67,0.037485407099277085],[115,39,68,0.028523755688634883],[115,39,69,0.01565324036136645],[115,39,70,0.00658375258114155],[115,39,71,-0.0024035704313574435],[115,39,72,-0.007786998986714366],[115,39,73,-0.009893851431119205],[115,39,74,-0.013290726197763017],[115,39,75,-0.016113356806326487],[115,39,76,-0.015275188215477228],[115,39,77,-0.01601156199534469],[115,39,78,-0.014369625176025982],[115,39,79,-0.00825502694367758],[115,40,64,0.07097369433955572],[115,40,65,0.07009651720791168],[115,40,66,0.06249300459482626],[115,40,67,0.0493365962248945],[115,40,68,0.03931454916956176],[115,40,69,0.030424162778365765],[115,40,70,0.018429934948952814],[115,40,71,0.010130687284699846],[115,40,72,0.0056908913601178],[115,40,73,0.005888247275110503],[115,40,74,0.0011227913577690762],[115,40,75,-6.896757906384166E-4],[115,40,76,-0.0022078397126036875],[115,40,77,-0.002411532879040612],[115,40,78,-8.446673425404061E-4],[115,40,79,0.003936635516334053],[115,41,64,0.07169742515935063],[115,41,65,0.06945480301573037],[115,41,66,0.06155602371441238],[115,41,67,0.04809993142530483],[115,41,68,0.037830774709151416],[115,41,69,0.027954695283964326],[115,41,70,0.012849497161763451],[115,41,71,0.00774083255778113],[115,41,72,0.00792596882294716],[115,41,73,0.011169761657631894],[115,41,74,0.003485584106346945],[115,41,75,0.002198563753805255],[115,41,76,-0.0013351804759973718],[115,41,77,-0.004213527122195387],[115,41,78,-6.072863117897731E-4],[115,41,79,0.0021182366725315815],[115,42,64,0.07209101933709389],[115,42,65,0.06719336690721522],[115,42,66,0.05791648998474874],[115,42,67,0.043830957991376485],[115,42,68,0.034692295482524504],[115,42,69,0.022772215015973124],[115,42,70,0.010881400731544949],[115,42,71,0.008464807091277948],[115,42,72,0.00809389588922868],[115,42,73,0.012197227630006108],[115,42,74,0.00852383906953219],[115,42,75,0.005182244205868242],[115,42,76,-7.676661354331649E-4],[115,42,77,-0.00404751969096992],[115,42,78,-0.002427245769041936],[115,42,79,0.0016458305318640676],[115,43,64,0.07219404697036502],[115,43,65,0.0657297134031285],[115,43,66,0.05684055265819643],[115,43,67,0.04227937412716737],[115,43,68,0.031485444448383665],[115,43,69,0.02101440897049467],[115,43,70,0.013023236043835096],[115,43,71,0.009752785134836323],[115,43,72,0.009147782772192192],[115,43,73,0.009491610478012863],[115,43,74,0.008203556579952226],[115,43,75,0.0059001361904068295],[115,43,76,-0.0013463306607597592],[115,43,77,-0.003948707406242924],[115,43,78,-0.002659828732987285],[115,43,79,2.830768940944306E-4],[115,44,64,0.06656760823231225],[115,44,65,0.062088497316066416],[115,44,66,0.05315059425754379],[115,44,67,0.038422946184044904],[115,44,68,0.027524571174577406],[115,44,69,0.017159581979510674],[115,44,70,0.010889049993095479],[115,44,71,0.007136472171709735],[115,44,72,0.0052625858072944676],[115,44,73,0.0024334803951011064],[115,44,74,0.004328074353087963],[115,44,75,0.00322497112219014],[115,44,76,-0.005501796019424521],[115,44,77,-0.007647149587562463],[115,44,78,-0.004977877637804218],[115,44,79,-0.0031290090305056972],[115,45,64,0.05066882069382275],[115,45,65,0.048499752073297875],[115,45,66,0.0441306290793487],[115,45,67,0.03600942707219801],[115,45,68,0.026930298692591753],[115,45,69,0.024160771222624333],[115,45,70,0.024643972487212895],[115,45,71,0.0255176856441216],[115,45,72,0.029373228945809515],[115,45,73,0.029625444155154335],[115,45,74,0.030490518673620765],[115,45,75,0.0276456896949748],[115,45,76,0.021538154440038065],[115,45,77,0.015467999468527532],[115,45,78,0.015296469675826707],[115,45,79,0.01385457374845786],[115,46,64,0.04879400242434784],[115,46,65,0.04468142454334301],[115,46,66,0.04124840398273397],[115,46,67,0.03333040526628922],[115,46,68,0.02644208228492667],[115,46,69,0.02416915213898496],[115,46,70,0.02642549863365873],[115,46,71,0.02857343799110354],[115,46,72,0.030055141739100927],[115,46,73,0.03278986764258218],[115,46,74,0.0317135269872329],[115,46,75,0.028832089555286017],[115,46,76,0.021523230000093235],[115,46,77,0.018462810487616277],[115,46,78,0.015665615754653778],[115,46,79,0.016198304235880895],[115,47,64,0.04676439880585437],[115,47,65,0.041806046189128476],[115,47,66,0.039823050348409716],[115,47,67,0.03158254002150382],[115,47,68,0.028001585418534397],[115,47,69,0.024378613759965057],[115,47,70,0.02708967442551835],[115,47,71,0.030640837340498717],[115,47,72,0.029903272980732448],[115,47,73,0.03378131972181905],[115,47,74,0.03241350301359758],[115,47,75,0.028908273549147934],[115,47,76,0.022106613594071428],[115,47,77,0.019027907444282732],[115,47,78,0.017974036519959574],[115,47,79,0.017543090922797322],[115,48,64,0.059248765889740956],[115,48,65,0.056187599523055104],[115,48,66,0.05189762410225718],[115,48,67,0.04324592759908777],[115,48,68,0.04132005140305073],[115,48,69,0.0400455528825355],[115,48,70,0.04236757955013032],[115,48,71,0.04527929667331321],[115,48,72,0.04292057761452997],[115,48,73,0.04496029686351988],[115,48,74,0.045161490918961544],[115,48,75,0.04205659649967661],[115,48,76,0.03816123587298448],[115,48,77,0.033822890571737485],[115,48,78,0.03358216009500839],[115,48,79,0.03376336649554096],[115,49,64,0.06011082540701651],[115,49,65,0.06052735290740216],[115,49,66,0.057304013555420086],[115,49,67,0.054116613536399544],[115,49,68,0.05128887053994907],[115,49,69,0.05134167175145701],[115,49,70,0.04954003540762569],[115,49,71,0.04629446284244282],[115,49,72,0.036120686016396564],[115,49,73,0.033627652552501136],[115,49,74,0.03030514943233703],[115,49,75,0.02971417152954678],[115,49,76,0.028438219583284963],[115,49,77,0.024426659803772288],[115,49,78,0.020255777764869892],[115,49,79,0.01988133667968639],[115,50,64,0.05590787835679689],[115,50,65,0.05986704928469988],[115,50,66,0.05825898404993804],[115,50,67,0.05504855657522767],[115,50,68,0.05255689896468499],[115,50,69,0.05161057828084403],[115,50,70,0.046778164936064404],[115,50,71,0.04400673061138022],[115,50,72,0.03491415681860688],[115,50,73,0.03241649593254997],[115,50,74,0.02830371991298597],[115,50,75,0.02773218826556234],[115,50,76,0.02741184511325767],[115,50,77,0.021801234465310154],[115,50,78,0.0182666708472716],[115,50,79,0.014987033724115806],[115,51,64,0.05185591731336314],[115,51,65,0.06006099442934826],[115,51,66,0.0578518309606518],[115,51,67,0.05374328287304053],[115,51,68,0.052586245429194794],[115,51,69,0.04922270541591009],[115,51,70,0.04365886257945353],[115,51,71,0.04235200737174066],[115,51,72,0.035092307578298204],[115,51,73,0.02936756762804757],[115,51,74,0.02607260730418348],[115,51,75,0.02669563429273683],[115,51,76,0.02601879105263824],[115,51,77,0.02051286590502374],[115,51,78,0.01641107578614659],[115,51,79,0.011265264466106373],[115,52,64,0.06737071398173292],[115,52,65,0.07427675897251862],[115,52,66,0.07246921686396729],[115,52,67,0.07140795664781652],[115,52,68,0.07040210782725353],[115,52,69,0.06733295161015779],[115,52,70,0.0613038373092783],[115,52,71,0.056967912811051596],[115,52,72,0.050357798356576194],[115,52,73,0.04318651638021298],[115,52,74,0.04067873520803103],[115,52,75,0.0394251229062646],[115,52,76,0.038888033583880766],[115,52,77,0.03250189187875438],[115,52,78,0.03011884072648871],[115,52,79,0.028483359407876552],[115,53,64,0.07209800329828472],[115,53,65,0.07316599990256303],[115,53,66,0.06957417776398658],[115,53,67,0.06694269727443591],[115,53,68,0.06613465238360533],[115,53,69,0.06136277944265972],[115,53,70,0.05055558089137613],[115,53,71,0.044369821753760585],[115,53,72,0.03970713772742754],[115,53,73,0.03193085112992636],[115,53,74,0.027755702718063102],[115,53,75,0.027591212987702507],[115,53,76,0.02669721999352473],[115,53,77,0.02205683481400328],[115,53,78,0.020720376535453694],[115,53,79,0.02120664524220839],[115,54,64,0.06936002119548115],[115,54,65,0.06729214346248219],[115,54,66,0.0677063901810318],[115,54,67,0.06471715973960357],[115,54,68,0.06286470252381304],[115,54,69,0.059445283759603784],[115,54,70,0.05022898810304477],[115,54,71,0.042304953166967],[115,54,72,0.03753162765791254],[115,54,73,0.03133061810227736],[115,54,74,0.027035007559569807],[115,54,75,0.026321864888677438],[115,54,76,0.02400525889146468],[115,54,77,0.022179316190022613],[115,54,78,0.01914947467051159],[115,54,79,0.017979036310116242],[115,55,64,0.06572624564805851],[115,55,65,0.06515320897453608],[115,55,66,0.06620228885324647],[115,55,67,0.06240596451993985],[115,55,68,0.058068595793751204],[115,55,69,0.05625516540880249],[115,55,70,0.04851079327410218],[115,55,71,0.042624329471257855],[115,55,72,0.036683208116579796],[115,55,73,0.031022313155935427],[115,55,74,0.027657312600984224],[115,55,75,0.02667693054689288],[115,55,76,0.02065831981858579],[115,55,77,0.02195374949237086],[115,55,78,0.020354519559020984],[115,55,79,0.017404473186225372],[115,56,64,0.07859813730978721],[115,56,65,0.07748661728814643],[115,56,66,0.07637350478635385],[115,56,67,0.07029616091178686],[115,56,68,0.06765743764662158],[115,56,69,0.06777469147540471],[115,56,70,0.06390307603851489],[115,56,71,0.05690139953181414],[115,56,72,0.04887193577313026],[115,56,73,0.042135353309997736],[115,56,74,0.04110757784477892],[115,56,75,0.03768306042921696],[115,56,76,0.03464454445626686],[115,56,77,0.036914230956358235],[115,56,78,0.03858830423723161],[115,56,79,0.03503070198288061],[115,57,64,0.07655200656939917],[115,57,65,0.07781182742895204],[115,57,66,0.07511065630433711],[115,57,67,0.07173431269658662],[115,57,68,0.06884738658042996],[115,57,69,0.06909847969324634],[115,57,70,0.06538453270249811],[115,57,71,0.05664731606526946],[115,57,72,0.04213532763544897],[115,57,73,0.03396170476953103],[115,57,74,0.028934285804576798],[115,57,75,0.02795547798996159],[115,57,76,0.02906110099553566],[115,57,77,0.031502897452134415],[115,57,78,0.03316115576416906],[115,57,79,0.029235389926865807],[115,58,64,0.11704287205781856],[115,58,65,0.11597111939567416],[115,58,66,0.11234045367860279],[115,58,67,0.10880010744341768],[115,58,68,0.10527109298319622],[115,58,69,0.10231714399222683],[115,58,70,0.1010264046763887],[115,58,71,0.09102341677666476],[115,58,72,0.07574968567190316],[115,58,73,0.07017878129023691],[115,58,74,0.06135410908231122],[115,58,75,0.061241206264740236],[115,58,76,0.06347088675202552],[115,58,77,0.06734763557412987],[115,58,78,0.0668457112501307],[115,58,79,0.06404755079413489],[115,59,64,0.1151478305305784],[115,59,65,0.1135466617735694],[115,59,66,0.10875739176016455],[115,59,67,0.1050943823814435],[115,59,68,0.09975607626068687],[115,59,69,0.09791097524194227],[115,59,70,0.09604938153537673],[115,59,71,0.08626963752344814],[115,59,72,0.07279643375305032],[115,59,73,0.06710888495156117],[115,59,74,0.06079803034325246],[115,59,75,0.05835362633855194],[115,59,76,0.0591685023996613],[115,59,77,0.06481436954333726],[115,59,78,0.06565491693525999],[115,59,79,0.06243809351730613],[115,60,64,0.10905067861997593],[115,60,65,0.10524947035461454],[115,60,66,0.09909774364282517],[115,60,67,0.09509541196687661],[115,60,68,0.09299464971254187],[115,60,69,0.08782295187945253],[115,60,70,0.08781341375719273],[115,60,71,0.07667591548488172],[115,60,72,0.06638545277882221],[115,60,73,0.060841917124002554],[115,60,74,0.056424175229376844],[115,60,75,0.053382083104447045],[115,60,76,0.05535749225494001],[115,60,77,0.06017216157473235],[115,60,78,0.061341490193946135],[115,60,79,0.05844839721839795],[115,61,64,0.11084369793536239],[115,61,65,0.10058890157946966],[115,61,66,0.08899071058656499],[115,61,67,0.07818065689711494],[115,61,68,0.07152414176211093],[115,61,69,0.06766904209969643],[115,61,70,0.06965882762216083],[115,61,71,0.06430410363143411],[115,61,72,0.06414344218621101],[115,61,73,0.06110498107788766],[115,61,74,0.058999052620058653],[115,61,75,0.05439956586034565],[115,61,76,0.05779976126860657],[115,61,77,0.06211533114823173],[115,61,78,0.06705201032806862],[115,61,79,0.06981757548923374],[115,62,64,0.1082921432834101],[115,62,65,0.0972217306303364],[115,62,66,0.0831948660535331],[115,62,67,0.07262939349516563],[115,62,68,0.06394675531582217],[115,62,69,0.062380614721947544],[115,62,70,0.06642743043413522],[115,62,71,0.06542215716759194],[115,62,72,0.0672032942657088],[115,62,73,0.06203579697053317],[115,62,74,0.059021162570437574],[115,62,75,0.055279288320170705],[115,62,76,0.05792324470655022],[115,62,77,0.060116718219774934],[115,62,78,0.06731463247779525],[115,62,79,0.07257439869195877],[115,63,64,0.032145038588278524],[115,63,65,0.019412358746414837],[115,63,66,0.0064287198995797434],[115,63,67,-0.003937036049943082],[115,63,68,-0.013273056099931457],[115,63,69,-0.013775362173811825],[115,63,70,-0.009476228963921501],[115,63,71,-0.007622921772590552],[115,63,72,-0.005520824589943643],[115,63,73,-0.0054895559536880245],[115,63,74,-0.009806636037126212],[115,63,75,-0.015933062521742605],[115,63,76,-0.013131602833560477],[115,63,77,-0.01070406180185883],[115,63,78,-0.001988368674283092],[115,63,79,0.0042031920960155095],[115,64,64,0.039537324015926675],[115,64,65,0.02349087064473243],[115,64,66,0.011026081355603193],[115,64,67,5.49943439278458E-4],[115,64,68,-0.0066915033556855935],[115,64,69,-0.008519688979287357],[115,64,70,-0.00222193204178385],[115,64,71,-0.001851707653433482],[115,64,72,-5.222542674676173E-4],[115,64,73,0.003784298398460978],[115,64,74,-6.575988623613443E-4],[115,64,75,-0.005293348809516346],[115,64,76,-0.0016801526867629285],[115,64,77,5.487402761401583E-4],[115,64,78,0.006101199904817778],[115,64,79,0.008616852062641178],[115,65,64,0.034260101796152964],[115,65,65,0.01861301861904248],[115,65,66,0.005085384509340055],[115,65,67,-0.003468346243739512],[115,65,68,-0.008574161987123866],[115,65,69,-0.010728352576864317],[115,65,70,-0.00562695238251984],[115,65,71,-0.006157203651513787],[115,65,72,-0.003331685003993487],[115,65,73,0.0011132034423233517],[115,65,74,-0.002608620498810471],[115,65,75,-0.005916032116117659],[115,65,76,-8.605855177371141E-4],[115,65,77,6.00496676447182E-4],[115,65,78,0.0033515497535435423],[115,65,79,0.004592845892875189],[115,66,64,0.022619980267609113],[115,66,65,0.006956020309167796],[115,66,66,-0.005552578897002086],[115,66,67,-0.011209180660954068],[115,66,68,-0.016835630277762442],[115,66,69,-0.016867029855525836],[115,66,70,-0.01398767402391532],[115,66,71,-0.014987425005668922],[115,66,72,-0.009677216288951546],[115,66,73,-0.006460128179181679],[115,66,74,-0.009624123088542241],[115,66,75,-0.011765715914222],[115,66,76,-0.005067128766852072],[115,66,77,-0.003965451988371366],[115,66,78,-0.00612499722884062],[115,66,79,-0.004878588228867428],[115,67,64,0.015891673054969954],[115,67,65,0.0033184031835195027],[115,67,66,-0.007193114705705592],[115,67,67,-0.013175460010569462],[115,67,68,-0.019833493117476383],[115,67,69,-0.01839691322575661],[115,67,70,-0.018466906911692185],[115,67,71,-0.016272257443569388],[115,67,72,-0.009645031042020191],[115,67,73,-0.007957899626014828],[115,67,74,-0.009224866110866176],[115,67,75,-0.011263393261891422],[115,67,76,-0.006234201279220308],[115,67,77,-0.00646586927232197],[115,67,78,-0.009182465193293618],[115,67,79,-0.007974359229455025],[115,68,64,-0.07563757261351418],[115,68,65,-0.087317665841716],[115,68,66,-0.0971375889943201],[115,68,67,-0.1044490022156287],[115,68,68,-0.10738904139474678],[115,68,69,-0.10753273415252226],[115,68,70,-0.10995349843428262],[115,68,71,-0.10226835362483247],[115,68,72,-0.09725128215655059],[115,68,73,-0.09524779351508958],[115,68,74,-0.09971988666064088],[115,68,75,-0.10282768067200525],[115,68,76,-0.09771911833913717],[115,68,77,-0.10050189116837778],[115,68,78,-0.10051471341050472],[115,68,79,-0.09786495922095693],[115,69,64,-0.08547054772222756],[115,69,65,-0.09724987246083308],[115,69,66,-0.10412356418836409],[115,69,67,-0.1107625752053073],[115,69,68,-0.10726380781605194],[115,69,69,-0.10543784728178418],[115,69,70,-0.1029449330814862],[115,69,71,-0.09055456255032944],[115,69,72,-0.08113481089388068],[115,69,73,-0.07653310595722068],[115,69,74,-0.07937879492264541],[115,69,75,-0.0844313456190744],[115,69,76,-0.0846050153562308],[115,69,77,-0.091305566212602],[115,69,78,-0.0964064315497499],[115,69,79,-0.09792509936455285],[115,70,64,-0.08948946611435048],[115,70,65,-0.1021881555236395],[115,70,66,-0.10828351894439925],[115,70,67,-0.11312379775742784],[115,70,68,-0.11026596131779573],[115,70,69,-0.10840460044133021],[115,70,70,-0.10290680566666],[115,70,71,-0.09362283134224775],[115,70,72,-0.08579753169954087],[115,70,73,-0.08036520031466135],[115,70,74,-0.08292877692612166],[115,70,75,-0.08701621157424456],[115,70,76,-0.08753507674620487],[115,70,77,-0.0955451966044743],[115,70,78,-0.09898873664570423],[115,70,79,-0.10116277828155465],[115,71,64,-0.08518329110435162],[115,71,65,-0.0944661738478493],[115,71,66,-0.10140656075437603],[115,71,67,-0.10676376524633228],[115,71,68,-0.10211506962248978],[115,71,69,-0.09974190883371839],[115,71,70,-0.09415639708258798],[115,71,71,-0.0870428913177561],[115,71,72,-0.0775723195268051],[115,71,73,-0.07463153596483696],[115,71,74,-0.07639811265569936],[115,71,75,-0.07998809230244583],[115,71,76,-0.08131907816842684],[115,71,77,-0.08952340952501485],[115,71,78,-0.09390568503486636],[115,71,79,-0.09216163523282875],[115,72,64,-0.08983544030554183],[115,72,65,-0.09722118737700385],[115,72,66,-0.1049921445719367],[115,72,67,-0.10956953880986267],[115,72,68,-0.10350314582122458],[115,72,69,-0.1010310803240949],[115,72,70,-0.09690948523171457],[115,72,71,-0.08975319734504611],[115,72,72,-0.08115603400855047],[115,72,73,-0.07698505026992014],[115,72,74,-0.07998542256244325],[115,72,75,-0.08214326664294212],[115,72,76,-0.08674003766291738],[115,72,77,-0.09682059300865059],[115,72,78,-0.09769261965022794],[115,72,79,-0.09390596705787857],[115,73,64,-0.09907797889023742],[115,73,65,-0.10363994081531747],[115,73,66,-0.1034313301350626],[115,73,67,-0.10148524032421609],[115,73,68,-0.09376739867074825],[115,73,69,-0.0914158713000177],[115,73,70,-0.09017217209708053],[115,73,71,-0.0874843652853552],[115,73,72,-0.08554355985393647],[115,73,73,-0.08878511371316214],[115,73,74,-0.09285640686378932],[115,73,75,-0.09660611749840957],[115,73,76,-0.1034968637082345],[115,73,77,-0.10648880475444629],[115,73,78,-0.1052423899689114],[115,73,79,-0.09829603750925486],[115,74,64,-0.11004778030622987],[115,74,65,-0.11336561737673448],[115,74,66,-0.11237293629297962],[115,74,67,-0.10749141851761944],[115,74,68,-0.10258747721833535],[115,74,69,-0.09756117133426176],[115,74,70,-0.09512434159582768],[115,74,71,-0.09336439244517238],[115,74,72,-0.0921477261219282],[115,74,73,-0.09692141014069222],[115,74,74,-0.1016525985692156],[115,74,75,-0.10591793158168361],[115,74,76,-0.11425793563011467],[115,74,77,-0.11446994132556973],[115,74,78,-0.11439510351753744],[115,74,79,-0.11013107284315497],[115,75,64,-0.11251846665720891],[115,75,65,-0.11413747633805689],[115,75,66,-0.11121887940330577],[115,75,67,-0.10710920175127368],[115,75,68,-0.10258478847203492],[115,75,69,-0.10035256532847842],[115,75,70,-0.09486844182618076],[115,75,71,-0.09602640821578495],[115,75,72,-0.0941478020819108],[115,75,73,-0.09770092609559634],[115,75,74,-0.10655589084960604],[115,75,75,-0.11182254871581736],[115,75,76,-0.11684442225504107],[115,75,77,-0.11714852390214539],[115,75,78,-0.12021914145522314],[115,75,79,-0.11838550709530997],[115,76,64,-0.10799496999334418],[115,76,65,-0.10980671178036037],[115,76,66,-0.10819984277882698],[115,76,67,-0.10726325293508956],[115,76,68,-0.10040307403945573],[115,76,69,-0.0979830142261028],[115,76,70,-0.09146996123363231],[115,76,71,-0.09203575915840029],[115,76,72,-0.0937286027660923],[115,76,73,-0.09798707991039371],[115,76,74,-0.10723666486892038],[115,76,75,-0.11396316646187127],[115,76,76,-0.11753250001995215],[115,76,77,-0.11710943169385292],[115,76,78,-0.12113019233666235],[115,76,79,-0.12171289902823784],[115,77,64,-0.10709620386910484],[115,77,65,-0.11071929923840403],[115,77,66,-0.11109787424924988],[115,77,67,-0.11257762469951055],[115,77,68,-0.10843044576076796],[115,77,69,-0.10723374122371782],[115,77,70,-0.1008794663865431],[115,77,71,-0.10136970361457356],[115,77,72,-0.10613382470395502],[115,77,73,-0.11134872267034168],[115,77,74,-0.1189818905216978],[115,77,75,-0.12439149400050956],[115,77,76,-0.12706343275835608],[115,77,77,-0.12702797680694017],[115,77,78,-0.1287403971068864],[115,77,79,-0.13070419888570323],[115,78,64,-0.1094310310680156],[115,78,65,-0.11197642213856643],[115,78,66,-0.11464359327965601],[115,78,67,-0.11417017009980922],[115,78,68,-0.11320781798566429],[115,78,69,-0.11020545852585631],[115,78,70,-0.1040390826080308],[115,78,71,-0.10324539474838934],[115,78,72,-0.1072205956992889],[115,78,73,-0.11609041101605308],[115,78,74,-0.12257741126496718],[115,78,75,-0.12790694387710935],[115,78,76,-0.12993743724301796],[115,78,77,-0.13124006411268108],[115,78,78,-0.13426399067950984],[115,78,79,-0.13664632880399513],[115,79,64,-0.10087567817963082],[115,79,65,-0.10331314431687319],[115,79,66,-0.10510831511860591],[115,79,67,-0.10449692580931783],[115,79,68,-0.10644675098726009],[115,79,69,-0.10214128323044688],[115,79,70,-0.09579757544433112],[115,79,71,-0.09728947738070486],[115,79,72,-0.09782200303310412],[115,79,73,-0.10761125277270639],[115,79,74,-0.11417265156199828],[115,79,75,-0.12260787811908011],[115,79,76,-0.12511515625855577],[115,79,77,-0.1269996120094271],[115,79,78,-0.13111747569810692],[115,79,79,-0.1344352731659989],[115,80,64,-0.10307167402354248],[115,80,65,-0.10429539318353476],[115,80,66,-0.10676343065790772],[115,80,67,-0.1064870810759501],[115,80,68,-0.10909875240091212],[115,80,69,-0.10789079146674789],[115,80,70,-0.10199435632179508],[115,80,71,-0.10166524538872633],[115,80,72,-0.10239026109061979],[115,80,73,-0.11096366761506408],[115,80,74,-0.11744230638559505],[115,80,75,-0.12474405027891192],[115,80,76,-0.1273771419064078],[115,80,77,-0.1311623438689267],[115,80,78,-0.1369398906641895],[115,80,79,-0.14087507892722356],[115,81,64,-0.10176646723958355],[115,81,65,-0.10136493078006414],[115,81,66,-0.10187690175348935],[115,81,67,-0.10246997151617548],[115,81,68,-0.10485800705329491],[115,81,69,-0.1031756073779859],[115,81,70,-0.09962490599053786],[115,81,71,-0.09847152457592388],[115,81,72,-0.09809943921962218],[115,81,73,-0.10043571569907553],[115,81,74,-0.10792841892629094],[115,81,75,-0.1161878710605767],[115,81,76,-0.1229256356255227],[115,81,77,-0.13474840999884008],[115,81,78,-0.14575031178909698],[115,81,79,-0.15222203385927213],[115,82,64,-0.1080668775479441],[115,82,65,-0.10927719646722084],[115,82,66,-0.10685629205289171],[115,82,67,-0.1083109683906101],[115,82,68,-0.11055090192397274],[115,82,69,-0.110042648184903],[115,82,70,-0.10953901745291124],[115,82,71,-0.10780715702052356],[115,82,72,-0.10843321681033034],[115,82,73,-0.10708716225948117],[115,82,74,-0.11722424439080337],[115,82,75,-0.1263151424128438],[115,82,76,-0.13077479546601842],[115,82,77,-0.14369470759577924],[115,82,78,-0.15353555504119265],[115,82,79,-0.1619422909480986],[115,83,64,-0.10802980186039216],[115,83,65,-0.10838480349851617],[115,83,66,-0.10696863825950698],[115,83,67,-0.10901470610901014],[115,83,68,-0.11047715358998263],[115,83,69,-0.11239941565245262],[115,83,70,-0.11437155199126484],[115,83,71,-0.11497535284948499],[115,83,72,-0.11330296168470612],[115,83,73,-0.11311500761538293],[115,83,74,-0.12148207757092638],[115,83,75,-0.12980727095941297],[115,83,76,-0.13257307159635018],[115,83,77,-0.1454536037105364],[115,83,78,-0.15691325434580922],[115,83,79,-0.1675383613018266],[115,84,64,-0.10643853545560517],[115,84,65,-0.106304536968264],[115,84,66,-0.10342047061376416],[115,84,67,-0.10434385802021709],[115,84,68,-0.10752414230336013],[115,84,69,-0.11194088294669549],[115,84,70,-0.11484496806476438],[115,84,71,-0.11859835188909679],[115,84,72,-0.11563220111046874],[115,84,73,-0.11631904272768898],[115,84,74,-0.12551207706072365],[115,84,75,-0.13253571734690792],[115,84,76,-0.13464208739842412],[115,84,77,-0.14901446247606404],[115,84,78,-0.16187154315493651],[115,84,79,-0.16897264049293878],[115,85,64,-0.11549615174499439],[115,85,65,-0.1196531890040724],[115,85,66,-0.12087950478200116],[115,85,67,-0.12278617906767123],[115,85,68,-0.12603910449228536],[115,85,69,-0.131837449502184],[115,85,70,-0.13540651640584586],[115,85,71,-0.13824650402052213],[115,85,72,-0.1355320464404753],[115,85,73,-0.1375879483432527],[115,85,74,-0.14811248011176634],[115,85,75,-0.15291624579083407],[115,85,76,-0.15771049143094498],[115,85,77,-0.16443501218122075],[115,85,78,-0.16795729776256357],[115,85,79,-0.16676651714337193],[115,86,64,-0.1178985183289517],[115,86,65,-0.12078513236583854],[115,86,66,-0.12396750709382737],[115,86,67,-0.12702490409489037],[115,86,68,-0.12803914290648208],[115,86,69,-0.13394433627682786],[115,86,70,-0.13762505891500262],[115,86,71,-0.13703656228065111],[115,86,72,-0.13928569507009764],[115,86,73,-0.1420296575557833],[115,86,74,-0.15068087450933887],[115,86,75,-0.1598300284574343],[115,86,76,-0.16437775543030067],[115,86,77,-0.16849778721831557],[115,86,78,-0.1722532940174305],[115,86,79,-0.16973237347918507],[115,87,64,-0.10915450617140121],[115,87,65,-0.1148051001589876],[115,87,66,-0.11940859816787616],[115,87,67,-0.12206389405609719],[115,87,68,-0.12284941894300744],[115,87,69,-0.12607610875982508],[115,87,70,-0.13017351036685937],[115,87,71,-0.1283794190194479],[115,87,72,-0.13349408706495886],[115,87,73,-0.1361707857204153],[115,87,74,-0.14412791751370024],[115,87,75,-0.15560703539874426],[115,87,76,-0.1598830983445625],[115,87,77,-0.16263375516132825],[115,87,78,-0.16399311675686135],[115,87,79,-0.16209362476491088],[115,88,64,-0.11320638194395903],[115,88,65,-0.1185783259178668],[115,88,66,-0.12350649839437411],[115,88,67,-0.12664120269944126],[115,88,68,-0.12817344601100872],[115,88,69,-0.12828982179417578],[115,88,70,-0.13193340506181353],[115,88,71,-0.1306314210282933],[115,88,72,-0.13459124503868974],[115,88,73,-0.14050177335558567],[115,88,74,-0.14790912866336786],[115,88,75,-0.15660771025164563],[115,88,76,-0.16190660412453234],[115,88,77,-0.16397060989482923],[115,88,78,-0.16510995104110504],[115,88,79,-0.1654844459372038],[115,89,64,-0.11609944882550527],[115,89,65,-0.11980594741621495],[115,89,66,-0.12353980825210792],[115,89,67,-0.12712082827421714],[115,89,68,-0.12979281311455818],[115,89,69,-0.12879703608914223],[115,89,70,-0.1333470552686033],[115,89,71,-0.13391443544116505],[115,89,72,-0.1393612886032135],[115,89,73,-0.14284392063436402],[115,89,74,-0.15193764318974842],[115,89,75,-0.1592083319274391],[115,89,76,-0.16142500391031372],[115,89,77,-0.16340875842493158],[115,89,78,-0.1662746929464461],[115,89,79,-0.1681102906332272],[115,90,64,-0.12379683483051522],[115,90,65,-0.1282898208019423],[115,90,66,-0.13298525715802517],[115,90,67,-0.1341586310855618],[115,90,68,-0.13689749542143015],[115,90,69,-0.1353420112203812],[115,90,70,-0.13876521333669445],[115,90,71,-0.14246068863463146],[115,90,72,-0.14591349847341636],[115,90,73,-0.1508124113915103],[115,90,74,-0.15868530828236616],[115,90,75,-0.16455668923338213],[115,90,76,-0.1645010095095339],[115,90,77,-0.1690480987959459],[115,90,78,-0.17405321238696483],[115,90,79,-0.17678094036913589],[115,91,64,-0.12594597526375298],[115,91,65,-0.13121519948710192],[115,91,66,-0.1339467902101063],[115,91,67,-0.13387738726421963],[115,91,68,-0.13630230985365943],[115,91,69,-0.1378240457372617],[115,91,70,-0.1433201024663924],[115,91,71,-0.1450381420955117],[115,91,72,-0.14639967077134924],[115,91,73,-0.15246943168989702],[115,91,74,-0.15795783159365345],[115,91,75,-0.1624967759568675],[115,91,76,-0.16301860697119827],[115,91,77,-0.17026659424527335],[115,91,78,-0.17657267091289958],[115,91,79,-0.1789766030419892],[115,92,64,-0.11056951623923389],[115,92,65,-0.11564531844694069],[115,92,66,-0.11583749775100564],[115,92,67,-0.11476198164142636],[115,92,68,-0.1172083000002442],[115,92,69,-0.12332125571560212],[115,92,70,-0.12978879666489235],[115,92,71,-0.1310224462682664],[115,92,72,-0.13320359518101133],[115,92,73,-0.13774845865882726],[115,92,74,-0.14248868999778302],[115,92,75,-0.14589271255592037],[115,92,76,-0.14828763248928842],[115,92,77,-0.1545050347755634],[115,92,78,-0.16139124455898446],[115,92,79,-0.16444458262710318],[115,93,64,-0.12084930836670146],[115,93,65,-0.12409741149945411],[115,93,66,-0.12183419850766354],[115,93,67,-0.11909179398440327],[115,93,68,-0.12207214869917976],[115,93,69,-0.12854523903235715],[115,93,70,-0.13407626066274458],[115,93,71,-0.12847277012657912],[115,93,72,-0.12882218608349222],[115,93,73,-0.12984493988228707],[115,93,74,-0.1302686083842802],[115,93,75,-0.13440091867835002],[115,93,76,-0.1417070192053803],[115,93,77,-0.15305741199570078],[115,93,78,-0.16496695963537697],[115,93,79,-0.17582534369648178],[115,94,64,-0.11972077678060197],[115,94,65,-0.12260247173331751],[115,94,66,-0.12279151325381696],[115,94,67,-0.12109050150427458],[115,94,68,-0.12434922694595894],[115,94,69,-0.1285406440089229],[115,94,70,-0.13371173447774076],[115,94,71,-0.12872794175755653],[115,94,72,-0.12632718370965237],[115,94,73,-0.12815758415782472],[115,94,74,-0.12857324646692547],[115,94,75,-0.13306533978923618],[115,94,76,-0.14392200730149665],[115,94,77,-0.15517954967620387],[115,94,78,-0.1665540843473674],[115,94,79,-0.1760750972082044],[115,95,64,-0.10895268079720949],[115,95,65,-0.11117214648729727],[115,95,66,-0.11410077260402504],[115,95,67,-0.11341909206298739],[115,95,68,-0.1163420504447852],[115,95,69,-0.11897103962548361],[115,95,70,-0.1245390721679143],[115,95,71,-0.12178262670072369],[115,95,72,-0.11708279836189912],[115,95,73,-0.11708201950470244],[115,95,74,-0.11909061518782409],[115,95,75,-0.12584231966893858],[115,95,76,-0.13853047226462273],[115,95,77,-0.14981551918888072],[115,95,78,-0.16088198328438003],[115,95,79,-0.16974088805612605],[115,96,64,-0.10852927705924735],[115,96,65,-0.11161780489184445],[115,96,66,-0.11426281701946367],[115,96,67,-0.11403780959156544],[115,96,68,-0.11566421344817909],[115,96,69,-0.11870256467730289],[115,96,70,-0.12426568305021471],[115,96,71,-0.12131120328563588],[115,96,72,-0.11484198195040429],[115,96,73,-0.11498805453738982],[115,96,74,-0.11938667368495713],[115,96,75,-0.12911141821586147],[115,96,76,-0.14104668821001537],[115,96,77,-0.15111872991713643],[115,96,78,-0.1630644582876469],[115,96,79,-0.16932655300625687],[115,97,64,-0.0995073184382466],[115,97,65,-0.10036424490989299],[115,97,66,-0.10058878512606725],[115,97,67,-0.10073220081711995],[115,97,68,-0.1033002081655744],[115,97,69,-0.10762858103495754],[115,97,70,-0.11672305112358879],[115,97,71,-0.11876762953834188],[115,97,72,-0.11864888801070131],[115,97,73,-0.12450533271146506],[115,97,74,-0.1300951768533851],[115,97,75,-0.14003124570218844],[115,97,76,-0.14838738758793368],[115,97,77,-0.15346835854374655],[115,97,78,-0.15503528299974945],[115,97,79,-0.1578046911869845],[115,98,64,-0.10317614253642761],[115,98,65,-0.10604080218417215],[115,98,66,-0.10537087831254985],[115,98,67,-0.1048577095897523],[115,98,68,-0.10874898508846473],[115,98,69,-0.11430197835936978],[115,98,70,-0.1218982005722419],[115,98,71,-0.12398795329701592],[115,98,72,-0.12745921074567193],[115,98,73,-0.13110659115041484],[115,98,74,-0.13670578334739664],[115,98,75,-0.14607857113711542],[115,98,76,-0.1538592542585907],[115,98,77,-0.15637362641658217],[115,98,78,-0.15716342365632585],[115,98,79,-0.16017362432185356],[115,99,64,-0.10251133737382165],[115,99,65,-0.1053168494238892],[115,99,66,-0.10597015661979059],[115,99,67,-0.10772768990944073],[115,99,68,-0.10998112701163125],[115,99,69,-0.11370178352491232],[115,99,70,-0.12030190661304302],[115,99,71,-0.12352939147463084],[115,99,72,-0.12766051416734067],[115,99,73,-0.13377799252773914],[115,99,74,-0.1383259273739864],[115,99,75,-0.1475355913592745],[115,99,76,-0.15382060985638613],[115,99,77,-0.1540643097025448],[115,99,78,-0.15597691910828573],[115,99,79,-0.15944666115958311],[115,100,64,-0.06186967536471158],[115,100,65,-0.06123822612036255],[115,100,66,-0.06168288348817577],[115,100,67,-0.062229809643244254],[115,100,68,-0.05980340794084144],[115,100,69,-0.06052071256756649],[115,100,70,-0.06540639612268707],[115,100,71,-0.06911998598987423],[115,100,72,-0.07381731746049387],[115,100,73,-0.07717181815909609],[115,100,74,-0.08426671808035932],[115,100,75,-0.09232328143634638],[115,100,76,-0.09841753533809049],[115,100,77,-0.09843976753808432],[115,100,78,-0.09980497056966862],[115,100,79,-0.10399285469703506],[115,101,64,-0.05952785692615924],[115,101,65,-0.05882594047719192],[115,101,66,-0.060245573257636006],[115,101,67,-0.06196639372124878],[115,101,68,-0.05935832156484356],[115,101,69,-0.062016403356665084],[115,101,70,-0.06570814700929062],[115,101,71,-0.07070380358721962],[115,101,72,-0.074041159656874],[115,101,73,-0.07824645180634596],[115,101,74,-0.08619546690851468],[115,101,75,-0.09163121076957437],[115,101,76,-0.09526062720873578],[115,101,77,-0.09737322378597792],[115,101,78,-0.09912952685773327],[115,101,79,-0.1039468066986649],[115,102,64,-0.06058097541874814],[115,102,65,-0.059883857073697366],[115,102,66,-0.06222124398213658],[115,102,67,-0.06256993863504316],[115,102,68,-0.06200859758307774],[115,102,69,-0.06640377185545163],[115,102,70,-0.06679143799992233],[115,102,71,-0.07076925535444631],[115,102,72,-0.07421645794372526],[115,102,73,-0.0813461066982015],[115,102,74,-0.08582929016934471],[115,102,75,-0.0902255593417908],[115,102,76,-0.09397199379724176],[115,102,77,-0.09802885540322903],[115,102,78,-0.10010002067710683],[115,102,79,-0.1057441017006922],[115,103,64,-0.0554110413048707],[115,103,65,-0.05449304986848187],[115,103,66,-0.05888156947546822],[115,103,67,-0.05768709303084121],[115,103,68,-0.05867658232057031],[115,103,69,-0.06015017230090014],[115,103,70,-0.060347993809149666],[115,103,71,-0.06237561417053615],[115,103,72,-0.06847377788290394],[115,103,73,-0.07695901826021982],[115,103,74,-0.07955644084233582],[115,103,75,-0.0834329439644435],[115,103,76,-0.08882189487585235],[115,103,77,-0.09335018657156542],[115,103,78,-0.09824812473994352],[115,103,79,-0.10407900477733747],[115,104,64,-0.0572097557372998],[115,104,65,-0.05747256292324224],[115,104,66,-0.062054316686466174],[115,104,67,-0.06373764370467588],[115,104,68,-0.06255143863646667],[115,104,69,-0.0627710989130604],[115,104,70,-0.06061254862851281],[115,104,71,-0.06445986592112175],[115,104,72,-0.06828974392343581],[115,104,73,-0.07663467202100882],[115,104,74,-0.0807872260912023],[115,104,75,-0.0835673218641014],[115,104,76,-0.08901278827263472],[115,104,77,-0.09342959138297387],[115,104,78,-0.10246284051032757],[115,104,79,-0.10801295344544823],[115,105,64,-0.05068397395885523],[115,105,65,-0.05403090217755991],[115,105,66,-0.05813310897046411],[115,105,67,-0.05947392967695059],[115,105,68,-0.060069077062329196],[115,105,69,-0.05918717798015619],[115,105,70,-0.05546650229687902],[115,105,71,-0.05467594859897516],[115,105,72,-0.05990445487602317],[115,105,73,-0.06515133037193599],[115,105,74,-0.06981544363275875],[115,105,75,-0.07319559386982716],[115,105,76,-0.08108113019903213],[115,105,77,-0.09546583696643515],[115,105,78,-0.10959806163353605],[115,105,79,-0.12014590623392477],[115,106,64,-0.05800938917620139],[115,106,65,-0.061226450461517756],[115,106,66,-0.06296926334766834],[115,106,67,-0.06546388069382625],[115,106,68,-0.06674313753295237],[115,106,69,-0.06619300389407638],[115,106,70,-0.06330293653607186],[115,106,71,-0.062415007551842386],[115,106,72,-0.06605481682868689],[115,106,73,-0.06932992643856388],[115,106,74,-0.07477370170796305],[115,106,75,-0.07997852300572081],[115,106,76,-0.09000166386180011],[115,106,77,-0.10424895277594741],[115,106,78,-0.11506874696836404],[115,106,79,-0.12489909998479534],[115,107,64,-0.05918075877067766],[115,107,65,-0.06257344377960265],[115,107,66,-0.06610156897540787],[115,107,67,-0.06898692880368433],[115,107,68,-0.06688808583319084],[115,107,69,-0.06587080484227839],[115,107,70,-0.061768580547490695],[115,107,71,-0.06638802047004125],[115,107,72,-0.06882343392077389],[115,107,73,-0.07104146402365656],[115,107,74,-0.0769752594841823],[115,107,75,-0.08373731086223823],[115,107,76,-0.09317421757427616],[115,107,77,-0.1036433792034407],[115,107,78,-0.11265646513095146],[115,107,79,-0.12239698602524779],[115,108,64,-0.06403134657340334],[115,108,65,-0.06818348795316907],[115,108,66,-0.07188791966635741],[115,108,67,-0.07375585293531414],[115,108,68,-0.07077474291222292],[115,108,69,-0.06963877481610681],[115,108,70,-0.06946591202352495],[115,108,71,-0.07209081491658985],[115,108,72,-0.07461516550961919],[115,108,73,-0.07937287773526555],[115,108,74,-0.08267211896981819],[115,108,75,-0.09128028476936068],[115,108,76,-0.09929258771255507],[115,108,77,-0.1096386483012992],[115,108,78,-0.12093078882817646],[115,108,79,-0.1283535694834094],[115,109,64,-0.07717782152584303],[115,109,65,-0.08167029581454],[115,109,66,-0.08475692379508873],[115,109,67,-0.08388617640331544],[115,109,68,-0.08421204398843105],[115,109,69,-0.08287365351267775],[115,109,70,-0.08548678635587671],[115,109,71,-0.08582386519348865],[115,109,72,-0.08824458886323233],[115,109,73,-0.09427380125392079],[115,109,74,-0.0977627119789301],[115,109,75,-0.10431949475350646],[115,109,76,-0.10738529924201343],[115,109,77,-0.11323724694418816],[115,109,78,-0.1194134689686023],[115,109,79,-0.12113165350042027],[115,110,64,-0.07720601705063376],[115,110,65,-0.08366125045081993],[115,110,66,-0.08794235854536014],[115,110,67,-0.0892767664300148],[115,110,68,-0.0889458876265716],[115,110,69,-0.0881692268004975],[115,110,70,-0.09088501708736955],[115,110,71,-0.08809812249545113],[115,110,72,-0.08953402158733612],[115,110,73,-0.0972539083917765],[115,110,74,-0.10436429573691644],[115,110,75,-0.10686967900207588],[115,110,76,-0.10815109362694804],[115,110,77,-0.11700863084685341],[115,110,78,-0.12168973687007797],[115,110,79,-0.12131936356353096],[115,111,64,-0.06931349780075259],[115,111,65,-0.07978481996675854],[115,111,66,-0.08432050816790002],[115,111,67,-0.08440714676249628],[115,111,68,-0.08541352507031044],[115,111,69,-0.08862501420749558],[115,111,70,-0.08828497271608002],[115,111,71,-0.0845895373536516],[115,111,72,-0.0893201376088579],[115,111,73,-0.09600893539357082],[115,111,74,-0.10163062101905414],[115,111,75,-0.10306552899730194],[115,111,76,-0.10540762897746728],[115,111,77,-0.11365770656922934],[115,111,78,-0.11965258468525097],[115,111,79,-0.12002042336451851],[115,112,64,-0.07255735702934926],[115,112,65,-0.07998520168967385],[115,112,66,-0.0862863998390701],[115,112,67,-0.08651394338595408],[115,112,68,-0.08951791784949033],[115,112,69,-0.09188017091334105],[115,112,70,-0.09114591620553826],[115,112,71,-0.08869120498692422],[115,112,72,-0.09303557332894305],[115,112,73,-0.09835592854717154],[115,112,74,-0.10187508958299156],[115,112,75,-0.10638930613377734],[115,112,76,-0.1082572433978891],[115,112,77,-0.11472348149126854],[115,112,78,-0.11701039227823093],[115,112,79,-0.11728239682584797],[115,113,64,-0.07504401609141462],[115,113,65,-0.08246458405736048],[115,113,66,-0.08994349281658626],[115,113,67,-0.09037353189639238],[115,113,68,-0.0929842507947943],[115,113,69,-0.09339332958265058],[115,113,70,-0.08987550844173625],[115,113,71,-0.09169144485871107],[115,113,72,-0.0950713293976291],[115,113,73,-0.09926017142429631],[115,113,74,-0.10582454079362595],[115,113,75,-0.10806567743566756],[115,113,76,-0.11197710339036543],[115,113,77,-0.1172058024181277],[115,113,78,-0.11767471333547463],[115,113,79,-0.11371666417209961],[115,114,64,-0.08319726492049447],[115,114,65,-0.09088878456257339],[115,114,66,-0.09617901642236515],[115,114,67,-0.09712449288778041],[115,114,68,-0.09938195222599659],[115,114,69,-0.09716749843614955],[115,114,70,-0.09358175125615585],[115,114,71,-0.0996458110264198],[115,114,72,-0.10346807273921145],[115,114,73,-0.10536485081445544],[115,114,74,-0.11317333565388171],[115,114,75,-0.11516158495068965],[115,114,76,-0.1172937192956264],[115,114,77,-0.12402710313342413],[115,114,78,-0.1206530512148068],[115,114,79,-0.11675973323448513],[115,115,64,-0.08292070301507418],[115,115,65,-0.09010814534417085],[115,115,66,-0.09452545154077072],[115,115,67,-0.09610851913634436],[115,115,68,-0.09883218668444177],[115,115,69,-0.09791318828692575],[115,115,70,-0.09480287683271849],[115,115,71,-0.09956594096630512],[115,115,72,-0.1049979711107338],[115,115,73,-0.10872748239240436],[115,115,74,-0.11330431458208193],[115,115,75,-0.11521557941569732],[115,115,76,-0.11674479197809594],[115,115,77,-0.1228307020009921],[115,115,78,-0.12255149879323651],[115,115,79,-0.11978658147859475],[115,116,64,-0.06681840323553649],[115,116,65,-0.07451152355942482],[115,116,66,-0.08270677750845247],[115,116,67,-0.08670596012953381],[115,116,68,-0.09180724390658854],[115,116,69,-0.09323587091061453],[115,116,70,-0.09348531651192063],[115,116,71,-0.09734334739428302],[115,116,72,-0.10580492679996986],[115,116,73,-0.10897630792422305],[115,116,74,-0.11112045796638914],[115,116,75,-0.11271868786289037],[115,116,76,-0.11115826081806275],[115,116,77,-0.11240297297943483],[115,116,78,-0.11628802199110533],[115,116,79,-0.11327034099030077],[115,117,64,-0.07532613714741715],[115,117,65,-0.08016765737996802],[115,117,66,-0.08415505672160488],[115,117,67,-0.08688526307387874],[115,117,68,-0.09136613624038556],[115,117,69,-0.09203274734892758],[115,117,70,-0.09494957703542316],[115,117,71,-0.09959528007261728],[115,117,72,-0.10752319029967594],[115,117,73,-0.1098143263143006],[115,117,74,-0.10939240832845101],[115,117,75,-0.11056563937376818],[115,117,76,-0.11053359837569042],[115,117,77,-0.10920805251097887],[115,117,78,-0.11397609269381512],[115,117,79,-0.11243482846240327],[115,118,64,-0.07746228549812878],[115,118,65,-0.08339875756945081],[115,118,66,-0.08441258525997211],[115,118,67,-0.08841738508087801],[115,118,68,-0.09272967752090429],[115,118,69,-0.0936672013065053],[115,118,70,-0.09958269497837227],[115,118,71,-0.10482822943523074],[115,118,72,-0.11074262244095308],[115,118,73,-0.11142856267920367],[115,118,74,-0.1119694171269803],[115,118,75,-0.11118442870085593],[115,118,76,-0.11242797477464764],[115,118,77,-0.11169629395471994],[115,118,78,-0.11494069686144397],[115,118,79,-0.11673900394528455],[115,119,64,-0.06966802841880605],[115,119,65,-0.07654412952521399],[115,119,66,-0.07833339776146346],[115,119,67,-0.08523686039369802],[115,119,68,-0.08976710642541638],[115,119,69,-0.09068389646707367],[115,119,70,-0.09800944644735665],[115,119,71,-0.10392892118050427],[115,119,72,-0.10773150762820859],[115,119,73,-0.10898483154422126],[115,119,74,-0.1113671067316693],[115,119,75,-0.10991492803740509],[115,119,76,-0.11123662279562677],[115,119,77,-0.1133453594133236],[115,119,78,-0.11596022401415448],[115,119,79,-0.11876733384708578],[115,120,64,-0.06871867300808757],[115,120,65,-0.07754350651547873],[115,120,66,-0.07975646257617512],[115,120,67,-0.08697303474283732],[115,120,68,-0.08973553615502462],[115,120,69,-0.09304737244430497],[115,120,70,-0.10013612497538019],[115,120,71,-0.10679738702131032],[115,120,72,-0.11012977014754383],[115,120,73,-0.10974022434715361],[115,120,74,-0.11160843307932018],[115,120,75,-0.10963835705293026],[115,120,76,-0.11430459519074712],[115,120,77,-0.11570163885345255],[115,120,78,-0.11958172392716429],[115,120,79,-0.12040720230930778],[115,121,64,-0.059293374765902976],[115,121,65,-0.06942726278562088],[115,121,66,-0.0771053626020146],[115,121,67,-0.08553207826011386],[115,121,68,-0.08775526892239555],[115,121,69,-0.09430782064340168],[115,121,70,-0.10080262026606096],[115,121,71,-0.10738393960581305],[115,121,72,-0.11413508863162546],[115,121,73,-0.11242276573464824],[115,121,74,-0.1119124306959105],[115,121,75,-0.11101419194017112],[115,121,76,-0.11597616605033212],[115,121,77,-0.12035348417411082],[115,121,78,-0.12866763023428873],[115,121,79,-0.13169934133013714],[115,122,64,-0.06314365595345695],[115,122,65,-0.07192377801549715],[115,122,66,-0.07913688564213357],[115,122,67,-0.08793028804761138],[115,122,68,-0.0947930842790104],[115,122,69,-0.10242283692418239],[115,122,70,-0.1082323467094295],[115,122,71,-0.11332862547818255],[115,122,72,-0.12218654552922598],[115,122,73,-0.12033698878193957],[115,122,74,-0.12085286718128525],[115,122,75,-0.11631730093142989],[115,122,76,-0.12132083748619893],[115,122,77,-0.1261829496371214],[115,122,78,-0.13323035242782727],[115,122,79,-0.13492453690229272],[115,123,64,-0.06228239095975251],[115,123,65,-0.0709504102999558],[115,123,66,-0.07855571621195116],[115,123,67,-0.088161684015676],[115,123,68,-0.09640033073644727],[115,123,69,-0.10290862522194508],[115,123,70,-0.10819281738934933],[115,123,71,-0.11351594473087187],[115,123,72,-0.12272191812982039],[115,123,73,-0.1232920796379466],[115,123,74,-0.12461146147074427],[115,123,75,-0.11982551996187826],[115,123,76,-0.12052665332194218],[115,123,77,-0.12742777046312379],[115,123,78,-0.13330209592067738],[115,123,79,-0.13548056148814894],[115,124,64,-0.05764821129284759],[115,124,65,-0.0697400707535866],[115,124,66,-0.07892991886674841],[115,124,67,-0.08779890078063761],[115,124,68,-0.09873781907191703],[115,124,69,-0.10553040415869892],[115,124,70,-0.1073002096321176],[115,124,71,-0.11435834022006561],[115,124,72,-0.12314458526145731],[115,124,73,-0.12550856736185395],[115,124,74,-0.12478085937479003],[115,124,75,-0.12165365061849706],[115,124,76,-0.12370647698257305],[115,124,77,-0.13156291572098858],[115,124,78,-0.13802190359757474],[115,124,79,-0.14269318594283886],[115,125,64,-0.055527440194813954],[115,125,65,-0.066523151810211],[115,125,66,-0.07608582102461504],[115,125,67,-0.0868521245581847],[115,125,68,-0.09815549958443147],[115,125,69,-0.10687500507367767],[115,125,70,-0.1085673666262712],[115,125,71,-0.11292379237976569],[115,125,72,-0.12344067977371799],[115,125,73,-0.1266369351674262],[115,125,74,-0.1260117155567561],[115,125,75,-0.12434135564688761],[115,125,76,-0.12589781875250233],[115,125,77,-0.13260634706399121],[115,125,78,-0.14040826432198478],[115,125,79,-0.1530467671896381],[115,126,64,-0.05218451574567698],[115,126,65,-0.06480732891038206],[115,126,66,-0.07638993271353037],[115,126,67,-0.08877467189666396],[115,126,68,-0.09819710687556016],[115,126,69,-0.10791935496971748],[115,126,70,-0.11138202982127421],[115,126,71,-0.1152072630041536],[115,126,72,-0.12399253713450718],[115,126,73,-0.1294814793740685],[115,126,74,-0.12659057741967153],[115,126,75,-0.12531481924063378],[115,126,76,-0.12773922335073074],[115,126,77,-0.13257401451948736],[115,126,78,-0.147779373777478],[115,126,79,-0.20222711185289338],[115,127,64,-0.042476658274546164],[115,127,65,-0.05647842169895047],[115,127,66,-0.06851510777888081],[115,127,67,-0.08320207838363886],[115,127,68,-0.09282086523611621],[115,127,69,-0.10115313361695875],[115,127,70,-0.1102847444380987],[115,127,71,-0.11385381032471911],[115,127,72,-0.1222272205100835],[115,127,73,-0.1265350118911121],[115,127,74,-0.12540487934705127],[115,127,75,-0.12391266450142951],[115,127,76,-0.12801014534476288],[115,127,77,-0.13103498773101913],[115,127,78,-0.13891601632165462],[115,127,79,-0.18681672869588264],[115,128,64,-0.04386084817783154],[115,128,65,-0.05732241253470514],[115,128,66,-0.06925347081697075],[115,128,67,-0.08364043033063093],[115,128,68,-0.09079628411298947],[115,128,69,-0.1012750520102735],[115,128,70,-0.11330683135212505],[115,128,71,-0.11561748877296468],[115,128,72,-0.12112976532120272],[115,128,73,-0.12405990447069543],[115,128,74,-0.12394151908062599],[115,128,75,-0.12694858635914158],[115,128,76,-0.1300640562569801],[115,128,77,-0.1301392183812373],[115,128,78,-0.14886401993259052],[115,128,79,-0.20045885119733628],[115,129,64,-0.03935976702667851],[115,129,65,-0.05515639763131888],[115,129,66,-0.07450106449482546],[115,129,67,-0.08806298514395518],[115,129,68,-0.09935329662145233],[115,129,69,-0.10973159486632342],[115,129,70,-0.12053789979804201],[115,129,71,-0.11937261094277885],[115,129,72,-0.1166797034617453],[115,129,73,-0.11578028169437307],[115,129,74,-0.11615148975176712],[115,129,75,-0.1187380644149303],[115,129,76,-0.12246076857583997],[115,129,77,-0.12107498317038382],[115,129,78,-0.12381497661958404],[115,129,79,-0.162009129706777],[115,130,64,-0.04463849191578719],[115,130,65,-0.061889468216413175],[115,130,66,-0.08146935360521139],[115,130,67,-0.09360695633588993],[115,130,68,-0.10422695569842068],[115,130,69,-0.11503071174456718],[115,130,70,-0.1248166781776876],[115,130,71,-0.126777569226803],[115,130,72,-0.12263743743768749],[115,130,73,-0.12190919018986826],[115,130,74,-0.14624573748887265],[115,130,75,-0.1964228843540305],[115,130,76,-0.27495307758109355],[115,130,77,-0.281078333259156],[115,130,78,-0.2884788811092589],[115,130,79,-0.29170639506640295],[115,131,64,-0.04890008949912884],[115,131,65,-0.06535518613894999],[115,131,66,-0.08336035223665197],[115,131,67,-0.09363131639790134],[115,131,68,-0.1043203581111305],[115,131,69,-0.11582581248159052],[115,131,70,-0.1248105825476089],[115,131,71,-0.12779889287517593],[115,131,72,-0.12188068877599559],[115,131,73,-0.12128259026390659],[115,131,74,-0.18249910267262717],[115,131,75,-0.23066284397534476],[115,131,76,-0.2743988760558571],[115,131,77,-0.27789808167873153],[115,131,78,-0.28478876628006317],[115,131,79,-0.29089456896726484],[115,132,64,-0.03990920716759115],[115,132,65,-0.05864387866681861],[115,132,66,-0.07655726960823177],[115,132,67,-0.08771430991519034],[115,132,68,-0.09790142821101917],[115,132,69,-0.11303447778380371],[115,132,70,-0.12264696637057376],[115,132,71,-0.12478431044370367],[115,132,72,-0.12274839163768556],[115,132,73,-0.12170070010154643],[115,132,74,-0.18798021014096694],[115,132,75,-0.23046210260426478],[115,132,76,-0.2675477824168194],[115,132,77,-0.27397363968163213],[115,132,78,-0.28062832630574885],[115,132,79,-0.28461035210708185],[115,133,64,-0.045715117213871156],[115,133,65,-0.058168439804337654],[115,133,66,-0.06762309616108042],[115,133,67,-0.07811757055798313],[115,133,68,-0.08629678110848588],[115,133,69,-0.10381456648468512],[115,133,70,-0.11628169106934524],[115,133,71,-0.12326337610741422],[115,133,72,-0.12829482718155608],[115,133,73,-0.1494140595928669],[115,133,74,-0.18338302052907035],[115,133,75,-0.21319008863020644],[115,133,76,-0.26060221990798565],[115,133,77,-0.2663959720916492],[115,133,78,-0.2722277771801287],[115,133,79,-0.27563856536659775],[115,134,64,-0.043728335726886225],[115,134,65,-0.055397566139423406],[115,134,66,-0.0654451698571911],[115,134,67,-0.07540215420078966],[115,134,68,-0.08728419618513511],[115,134,69,-0.10285916313618797],[115,134,70,-0.11592192863479552],[115,134,71,-0.12517521802164064],[115,134,72,-0.1310844192575646],[115,134,73,-0.15738449550987746],[115,134,74,-0.18663222561938947],[115,134,75,-0.21446925127397093],[115,134,76,-0.2534411711770703],[115,134,77,-0.26245134572611084],[115,134,78,-0.26668946434957763],[115,134,79,-0.2711667861042104],[115,135,64,-0.035095572322377186],[115,135,65,-0.048427488870906726],[115,135,66,-0.0595119853363029],[115,135,67,-0.06936442573702666],[115,135,68,-0.08328808072017536],[115,135,69,-0.09773300161566655],[115,135,70,-0.11304591022695268],[115,135,71,-0.12461047402457304],[115,135,72,-0.13150482807390473],[115,135,73,-0.15098003766238471],[115,135,74,-0.17151388037033374],[115,135,75,-0.1998373271201549],[115,135,76,-0.24588284305474165],[115,135,77,-0.2536115542920232],[115,135,78,-0.26023501973276864],[115,135,79,-0.2628889625794152],[115,136,64,-0.03687596413996172],[115,136,65,-0.04978452385237693],[115,136,66,-0.0617695299737495],[115,136,67,-0.07132087450377027],[115,136,68,-0.08279781709478844],[115,136,69,-0.09602586033111427],[115,136,70,-0.11109749187019297],[115,136,71,-0.1228905737793028],[115,136,72,-0.1336047249905164],[115,136,73,-0.16267374265384993],[115,136,74,-0.18514502041503111],[115,136,75,-0.21718983138787587],[115,136,76,-0.253258503744616],[115,136,77,-0.26334285639462895],[115,136,78,-0.26829000062412856],[115,136,79,-0.27055026634910806],[115,137,64,-0.040256272184278324],[115,137,65,-0.05152197531835421],[115,137,66,-0.061892020438401044],[115,137,67,-0.07186963786147046],[115,137,68,-0.08133189386190562],[115,137,69,-0.09654725718558253],[115,137,70,-0.11451460410492274],[115,137,71,-0.12255603625269379],[115,137,72,-0.13342647987351924],[115,137,73,-0.1581132474392523],[115,137,74,-0.17940394895267953],[115,137,75,-0.20228201288901967],[115,137,76,-0.23370067168441488],[115,137,77,-0.24909515706349888],[115,137,78,-0.2552103446433087],[115,137,79,-0.25797314063525395],[115,138,64,-0.04916698184445574],[115,138,65,-0.05799707808437348],[115,138,66,-0.0700981840310235],[115,138,67,-0.07909244056591402],[115,138,68,-0.08814707353664729],[115,138,69,-0.10209809532305346],[115,138,70,-0.1187104422623548],[115,138,71,-0.12760970014788622],[115,138,72,-0.13576576847024044],[115,138,73,-0.15103327931663743],[115,138,74,-0.17814582254856526],[115,138,75,-0.19444414217271794],[115,138,76,-0.22725856722478638],[115,138,77,-0.2435729452093816],[115,138,78,-0.24947898133136087],[115,138,79,-0.25173268522512254],[115,139,64,-0.05071499732231839],[115,139,65,-0.06207306459857689],[115,139,66,-0.07379228597786319],[115,139,67,-0.08275078788451425],[115,139,68,-0.09228079694922964],[115,139,69,-0.10359046447030085],[115,139,70,-0.11683438551669559],[115,139,71,-0.12798366974345554],[115,139,72,-0.13714450758556004],[115,139,73,-0.16729495972466354],[115,139,74,-0.1941269184515824],[115,139,75,-0.21289170619845538],[115,139,76,-0.2359164793356085],[115,139,77,-0.23906675246878567],[115,139,78,-0.24293452454901535],[115,139,79,-0.2540310397909449],[115,140,64,-0.0636397571544419],[115,140,65,-0.07571467651803707],[115,140,66,-0.08333063897600772],[115,140,67,-0.08876425103944058],[115,140,68,-0.09602842121091831],[115,140,69,-0.10585788774480141],[115,140,70,-0.1154446297439105],[115,140,71,-0.12414141136791088],[115,140,72,-0.13384335748992182],[115,140,73,-0.1647921416409029],[115,140,74,-0.18893625496535704],[115,140,75,-0.21171749172777665],[115,140,76,-0.2322388036634066],[115,140,77,-0.23448061059469003],[115,140,78,-0.24212441035900514],[115,140,79,-0.25154887780059265],[115,141,64,-0.07138770399987031],[115,141,65,-0.08474879330116687],[115,141,66,-0.09045063348459202],[115,141,67,-0.09429342472269348],[115,141,68,-0.10015329303075887],[115,141,69,-0.11006069241691352],[115,141,70,-0.11874845423567056],[115,141,71,-0.12902551551539715],[115,141,72,-0.13827492644549877],[115,141,73,-0.15884381991341767],[115,141,74,-0.18929072593710383],[115,141,75,-0.21274006520287395],[115,141,76,-0.22305566952116368],[115,141,77,-0.2234383981374637],[115,141,78,-0.2321313553232886],[115,141,79,-0.2417413319137929],[115,142,64,-0.07251875367208772],[115,142,65,-0.08589902558795154],[115,142,66,-0.09178424415733112],[115,142,67,-0.09823368118483457],[115,142,68,-0.10157324646501673],[115,142,69,-0.11020331734514119],[115,142,70,-0.11825071541993917],[115,142,71,-0.13013179461808075],[115,142,72,-0.13620081093465386],[115,142,73,-0.15859616514452002],[115,142,74,-0.18677400933088043],[115,142,75,-0.21001009642952778],[115,142,76,-0.21805765210987785],[115,142,77,-0.21999964224520693],[115,142,78,-0.23173037295607019],[115,142,79,-0.24206539695519114],[115,143,64,-0.06730573042477117],[115,143,65,-0.08020286119366712],[115,143,66,-0.08820844881942326],[115,143,67,-0.09513003520355125],[115,143,68,-0.10041477548806481],[115,143,69,-0.10795254578386754],[115,143,70,-0.11595763058097913],[115,143,71,-0.12499076146366513],[115,143,72,-0.1359278407871297],[115,143,73,-0.14822768157861288],[115,143,74,-0.17770096357008272],[115,143,75,-0.2024793596962602],[115,143,76,-0.2109382976331586],[115,143,77,-0.2131978599357843],[115,143,78,-0.2226292907670473],[115,143,79,-0.23298819239894192],[115,144,64,-0.06743772161653443],[115,144,65,-0.07865369954813381],[115,144,66,-0.08916479940490875],[115,144,67,-0.0959070605776296],[115,144,68,-0.10103894668079261],[115,144,69,-0.10745299631117342],[115,144,70,-0.115227578572264],[115,144,71,-0.12368102313898649],[115,144,72,-0.13430659044741328],[115,144,73,-0.15051035108340016],[115,144,74,-0.1847144887444752],[115,144,75,-0.21158528734023127],[115,144,76,-0.21991368051387516],[115,144,77,-0.22239772650344666],[115,144,78,-0.2287668567907366],[115,144,79,-0.23860386243454532],[115,145,64,-0.0589295540039315],[115,145,65,-0.074819876691369],[115,145,66,-0.08662001182020733],[115,145,67,-0.095531021514392],[115,145,68,-0.09968061902041889],[115,145,69,-0.10500754045667542],[115,145,70,-0.11520445298182641],[115,145,71,-0.11997585172651173],[115,145,72,-0.12583195080101317],[115,145,73,-0.1305138607940273],[115,145,74,-0.13399967901858192],[115,145,75,-0.14785359000905313],[115,145,76,-0.16512504244752296],[115,145,77,-0.16828907253329337],[115,145,78,-0.17810454531752706],[115,145,79,-0.19558793580533795],[115,146,64,-0.06685164964857061],[115,146,65,-0.08223399945217737],[115,146,66,-0.09386184370227628],[115,146,67,-0.10081670356129935],[115,146,68,-0.1060220051677988],[115,146,69,-0.10911193305341177],[115,146,70,-0.1205579468384321],[115,146,71,-0.12549823167385102],[115,146,72,-0.1287344878364925],[115,146,73,-0.1327938020068157],[115,146,74,-0.13475009334381638],[115,146,75,-0.14078815845383216],[115,146,76,-0.15403793302725838],[115,146,77,-0.16064425927783857],[115,146,78,-0.16726304835110048],[115,146,79,-0.1908371774486911],[115,147,64,-0.06910288102927614],[115,147,65,-0.08240883346617389],[115,147,66,-0.09425839885672305],[115,147,67,-0.0987785324305161],[115,147,68,-0.10497771940390926],[115,147,69,-0.1092365378154796],[115,147,70,-0.11746008620117132],[115,147,71,-0.12268131279617998],[115,147,72,-0.12763264291984786],[115,147,73,-0.13203331234404977],[115,147,74,-0.1373730222908684],[115,147,75,-0.13934002098590598],[115,147,76,-0.12234628832396416],[115,147,77,-0.12327558238344224],[115,147,78,-0.13247799292024798],[115,147,79,-0.10917917940816994],[115,148,64,-0.04483143222185494],[115,148,65,-0.05442828194074626],[115,148,66,-0.06311615574173426],[115,148,67,-0.06757891758082585],[115,148,68,-0.06921125399194776],[115,148,69,-0.07240544340218238],[115,148,70,-0.07650381637110068],[115,148,71,-0.08235871218165833],[115,148,72,-0.091107977902703],[115,148,73,-0.09466257305210471],[115,148,74,-0.09900231843458818],[115,148,75,-0.10049724940304802],[115,148,76,-0.10543534623641504],[115,148,77,-0.09289733638526143],[115,148,78,-0.08887994211068588],[115,148,79,-0.06536816797056508],[115,149,64,-0.04564681557653487],[115,149,65,-0.05784293613336182],[115,149,66,-0.06568154837260734],[115,149,67,-0.069172701849404],[115,149,68,-0.06853957770876638],[115,149,69,-0.07080553279135965],[115,149,70,-0.07566603512631348],[115,149,71,-0.08195915449826728],[115,149,72,-0.09047373374599366],[115,149,73,-0.0969794058728142],[115,149,74,-0.10054606116099646],[115,149,75,-0.10143844984519174],[115,149,76,-0.10524771054789482],[115,149,77,-0.09662870377090435],[115,149,78,-0.09023622466217585],[115,149,79,-0.07564186505794221],[115,150,64,-0.04818595907735054],[115,150,65,-0.05956647536409211],[115,150,66,-0.06824782343633432],[115,150,67,-0.07060561151998072],[115,150,68,-0.06948841192080349],[115,150,69,-0.07331639551878219],[115,150,70,-0.07540088269349676],[115,150,71,-0.0839570117946713],[115,150,72,-0.09088636909732391],[115,150,73,-0.09817067724044302],[115,150,74,-0.10570063695496368],[115,150,75,-0.10510084155342117],[115,150,76,-0.10765139189842471],[115,150,77,-0.09633389175825866],[115,150,78,-0.0898016099750409],[115,150,79,-0.07711586232326281],[115,151,64,-0.04675090065980933],[115,151,65,-0.05466145562851256],[115,151,66,-0.06281323973323857],[115,151,67,-0.06674109806818523],[115,151,68,-0.06835071566395787],[115,151,69,-0.0734861532376072],[115,151,70,-0.07518655687904122],[115,151,71,-0.0838950493562849],[115,151,72,-0.09119979204932563],[115,151,73,-0.10024499860040909],[115,151,74,-0.10969207099944808],[115,151,75,-0.10956435085611343],[115,151,76,-0.11393790672218934],[115,151,77,-0.10534364645285682],[115,151,78,-0.09532575403151182],[115,151,79,-0.08313645192128766],[115,152,64,-0.05411187477932554],[115,152,65,-0.06030753852403549],[115,152,66,-0.0650280851059975],[115,152,67,-0.06760162226000828],[115,152,68,-0.0733196181180252],[115,152,69,-0.0779653226472583],[115,152,70,-0.07889602201871984],[115,152,71,-0.08609835667524071],[115,152,72,-0.09386301607453354],[115,152,73,-0.1019430007297693],[115,152,74,-0.11008234925388063],[115,152,75,-0.11215382415227984],[115,152,76,-0.11637046970974746],[115,152,77,-0.10678200885219981],[115,152,78,-0.0867391854500005],[115,152,79,-0.07722004165512518],[115,153,64,-0.0665382992629948],[115,153,65,-0.06753497077060847],[115,153,66,-0.06221831303890445],[115,153,67,-0.06205540425615382],[115,153,68,-0.06929673000743908],[115,153,69,-0.07256816659852058],[115,153,70,-0.07378372732574692],[115,153,71,-0.08317644841538434],[115,153,72,-0.0936456683470423],[115,153,73,-0.1034104902359335],[115,153,74,-0.1120279950102098],[115,153,75,-0.11691625215960152],[115,153,76,-0.12114898126705217],[115,153,77,-0.09966354836834111],[115,153,78,-0.07418809275082525],[115,153,79,-0.06944341773327563],[115,154,64,-0.07487829121975857],[115,154,65,-0.07611559706094354],[115,154,66,-0.07333457679869043],[115,154,67,-0.07087589462681364],[115,154,68,-0.0753205358991264],[115,154,69,-0.07771776452269194],[115,154,70,-0.08113685582364435],[115,154,71,-0.09057716203545202],[115,154,72,-0.09714536231291662],[115,154,73,-0.10641381418109248],[115,154,74,-0.11648402188019522],[115,154,75,-0.12502068417210896],[115,154,76,-0.12963030910681822],[115,154,77,-0.10928471087845398],[115,154,78,-0.07709249921244424],[115,154,79,-0.07488750890056611],[115,155,64,-0.07606153723090045],[115,155,65,-0.07763572642588659],[115,155,66,-0.07752263865846348],[115,155,67,-0.0747960185655755],[115,155,68,-0.0770083150307608],[115,155,69,-0.08070300748321456],[115,155,70,-0.08310158467733918],[115,155,71,-0.09021796440224536],[115,155,72,-0.09573822827159933],[115,155,73,-0.10663655525720639],[115,155,74,-0.11741792069394119],[115,155,75,-0.124913120630714],[115,155,76,-0.13051859647281],[115,155,77,-0.11184410527326201],[115,155,78,-0.07893303045859645],[115,155,79,-0.08124312427424779],[115,156,64,-0.07848217465768964],[115,156,65,-0.08157580315032009],[115,156,66,-0.08121722648237148],[115,156,67,-0.08151169823943974],[115,156,68,-0.08072447810303064],[115,156,69,-0.08769563508222225],[115,156,70,-0.08870033763510485],[115,156,71,-0.09690207605279087],[115,156,72,-0.1037710392015207],[115,156,73,-0.11378451690216307],[115,156,74,-0.12457655120574238],[115,156,75,-0.12830947380511148],[115,156,76,-0.12573903058421124],[115,156,77,-0.09816149469504076],[115,156,78,-0.07310923266427106],[115,156,79,-0.07972090751506508],[115,157,64,-0.07102662607036873],[115,157,65,-0.08018128843086336],[115,157,66,-0.08611957280147345],[115,157,67,-0.09136218356016534],[115,157,68,-0.09418297890420713],[115,157,69,-0.0978969517943721],[115,157,70,-0.0973945738010932],[115,157,71,-0.10338297783034908],[115,157,72,-0.10889427932966739],[115,157,73,-0.11489587145956419],[115,157,74,-0.12661861305045075],[115,157,75,-0.12753363988023822],[115,157,76,-0.11528708447084149],[115,157,77,-0.0885554345526467],[115,157,78,-0.0709047410361452],[115,157,79,-0.07299903387789666],[115,158,64,-0.06834592590008427],[115,158,65,-0.08236590155518395],[115,158,66,-0.0859635779811177],[115,158,67,-0.09027964673674534],[115,158,68,-0.09570602766620553],[115,158,69,-0.09647394100360517],[115,158,70,-0.098230189577526],[115,158,71,-0.10194710591190512],[115,158,72,-0.1080079289063757],[115,158,73,-0.11683598296435252],[115,158,74,-0.128510848889883],[115,158,75,-0.118334253064068],[115,158,76,-0.10634157320372549],[115,158,77,-0.0756791089030989],[115,158,78,-0.061171514991217216],[115,158,79,-0.06320703835999181],[115,159,64,-0.13903216526076592],[115,159,65,-0.14599193217777975],[115,159,66,-0.14676308334838917],[115,159,67,-0.144872073169159],[115,159,68,-0.14135773954527067],[115,159,69,-0.13468903417782704],[115,159,70,-0.127842697333999],[115,159,71,-0.1248238385834943],[115,159,72,-0.12250277427328762],[115,159,73,-0.1245563085648092],[115,159,74,-0.12542235567004367],[115,159,75,-0.11849687439203972],[115,159,76,-0.1058996196659259],[115,159,77,-0.07667483720992901],[115,159,78,-0.05545493973532345],[115,159,79,-0.058554184340006005],[115,160,64,-0.1352907046649139],[115,160,65,-0.14218377270286184],[115,160,66,-0.14560038879422477],[115,160,67,-0.1472353687523919],[115,160,68,-0.1418895331731816],[115,160,69,-0.13338451726974854],[115,160,70,-0.12761012995888277],[115,160,71,-0.12498744910469944],[115,160,72,-0.12236560997940318],[115,160,73,-0.1250600889316307],[115,160,74,-0.1254886371431632],[115,160,75,-0.11660349585589994],[115,160,76,-0.09924338971899499],[115,160,77,-0.07738320017887712],[115,160,78,-0.0531409189027902],[115,160,79,-0.05456736331729427],[115,161,64,-0.1314050669516591],[115,161,65,-0.1394815843487377],[115,161,66,-0.1447872172568222],[115,161,67,-0.14678318252059552],[115,161,68,-0.1419613164502656],[115,161,69,-0.13210453567693892],[115,161,70,-0.12724115313136408],[115,161,71,-0.12457478691487722],[115,161,72,-0.12212792238337175],[115,161,73,-0.12427473341237025],[115,161,74,-0.1259019810692335],[115,161,75,-0.11715853138639191],[115,161,76,-0.09441683701693022],[115,161,77,-0.06878612495367381],[115,161,78,-0.04863475428560014],[115,161,79,-0.04648178131307937],[115,162,64,-0.13491302594945817],[115,162,65,-0.14321056648763036],[115,162,66,-0.14723664478301562],[115,162,67,-0.15232212553342722],[115,162,68,-0.14864460962157466],[115,162,69,-0.1370812169300803],[115,162,70,-0.1310192047411768],[115,162,71,-0.12904575597900517],[115,162,72,-0.1302585640110897],[115,162,73,-0.12974111152600679],[115,162,74,-0.12997002568341326],[115,162,75,-0.12357311213183408],[115,162,76,-0.10768851017730441],[115,162,77,-0.08203462714301185],[115,162,78,-0.05892096006241436],[115,162,79,-0.052125443078608634],[115,163,64,-0.13586247148122207],[115,163,65,-0.14288132041753565],[115,163,66,-0.14593429999489105],[115,163,67,-0.14786681433572665],[115,163,68,-0.14654533902757777],[115,163,69,-0.13757893576545538],[115,163,70,-0.13216552606984747],[115,163,71,-0.12928485167600956],[115,163,72,-0.1307440480315206],[115,163,73,-0.12939216982510945],[115,163,74,-0.12638194554504767],[115,163,75,-0.12206749039606277],[115,163,76,-0.11499308695074834],[115,163,77,-0.09758262104048643],[115,163,78,-0.07648005009893008],[115,163,79,-0.06581601905097884],[115,164,64,-0.11481586351554304],[115,164,65,-0.1178122402308246],[115,164,66,-0.12171386007771558],[115,164,67,-0.12462822504632026],[115,164,68,-0.1245067761368458],[115,164,69,-0.11908351082212834],[115,164,70,-0.11570823531281696],[115,164,71,-0.11454793537966926],[115,164,72,-0.11584116682834004],[115,164,73,-0.11361072738143471],[115,164,74,-0.10802541613680026],[115,164,75,-0.10439421908102012],[115,164,76,-0.0975528827341534],[115,164,77,-0.0818545554840185],[115,164,78,-0.06787252318225967],[115,164,79,-0.06201749850595614],[115,165,64,-0.10964591549569429],[115,165,65,-0.11167948460059204],[115,165,66,-0.11098651751223867],[115,165,67,-0.11288958378091551],[115,165,68,-0.11033946893917636],[115,165,69,-0.10921481601719599],[115,165,70,-0.10540404276121129],[115,165,71,-0.10853568941928271],[115,165,72,-0.11371541724248156],[115,165,73,-0.11178642471938843],[115,165,74,-0.10633123170597243],[115,165,75,-0.10024479727711921],[115,165,76,-0.09234429518985454],[115,165,77,-0.07458284016092166],[115,165,78,-0.062184796782400104],[115,165,79,-0.060866114554582414],[115,166,64,-0.10925967436057155],[115,166,65,-0.11152111987960159],[115,166,66,-0.11193373687562778],[115,166,67,-0.11003701342939975],[115,166,68,-0.10800481362849927],[115,166,69,-0.10578722944346786],[115,166,70,-0.10146363764090932],[115,166,71,-0.10476753703575037],[115,166,72,-0.11248259338048872],[115,166,73,-0.11112068806582326],[115,166,74,-0.10504091204477875],[115,166,75,-0.0977608732121098],[115,166,76,-0.08956645866368171],[115,166,77,-0.07646157666969138],[115,166,78,-0.06485566789667799],[115,166,79,-0.06069572752425036],[115,167,64,-0.10065731828638554],[115,167,65,-0.10522840858131766],[115,167,66,-0.10386154808644213],[115,167,67,-0.10390103275557125],[115,167,68,-0.10295439273011872],[115,167,69,-0.09908519078801314],[115,167,70,-0.09634424824258281],[115,167,71,-0.10041314986469703],[115,167,72,-0.10784224541716045],[115,167,73,-0.10806066899611978],[115,167,74,-0.10425270477459267],[115,167,75,-0.09772376775183148],[115,167,76,-0.0912292551139993],[115,167,77,-0.08155252025727891],[115,167,78,-0.06836360912900048],[115,167,79,-0.06242595900744851],[115,168,64,-0.1007867936211494],[115,168,65,-0.10745492121114505],[115,168,66,-0.10358397265100425],[115,168,67,-0.10122055516322365],[115,168,68,-0.10425138202302785],[115,168,69,-0.09883533786194959],[115,168,70,-0.09267644591579373],[115,168,71,-0.09760479811702479],[115,168,72,-0.10485568409164883],[115,168,73,-0.1057305539948412],[115,168,74,-0.10238528461564037],[115,168,75,-0.09778347948549093],[115,168,76,-0.09112178508397203],[115,168,77,-0.08090657606898137],[115,168,78,-0.06868419949775517],[115,168,79,-0.06215437941094326],[115,169,64,-0.1123947983057075],[115,169,65,-0.11762027061356403],[115,169,66,-0.115991446530363],[115,169,67,-0.11217502620427094],[115,169,68,-0.113528089829357],[115,169,69,-0.1099373931487598],[115,169,70,-0.10449362951174909],[115,169,71,-0.10507729385823271],[115,169,72,-0.10495063234658543],[115,169,73,-0.10399358680002344],[115,169,74,-0.10112236911331303],[115,169,75,-0.09696365896775846],[115,169,76,-0.09251807862696015],[115,169,77,-0.08637462046346847],[115,169,78,-0.07050782686460304],[115,169,79,-0.06222526606169223],[115,170,64,-0.1192455089975083],[115,170,65,-0.12133522102340694],[115,170,66,-0.11951801421970241],[115,170,67,-0.11692762747535776],[115,170,68,-0.11833535516994789],[115,170,69,-0.1164028621853936],[115,170,70,-0.11257547454544761],[115,170,71,-0.11517146487923159],[115,170,72,-0.1114886092917583],[115,170,73,-0.1081863660483317],[115,170,74,-0.10313531234390905],[115,170,75,-0.10023585096261398],[115,170,76,-0.0969957403353455],[115,170,77,-0.09201887742858732],[115,170,78,-0.07341922137757095],[115,170,79,-0.062477447946928714],[115,171,64,-0.11769586004851158],[115,171,65,-0.11957894887974652],[115,171,66,-0.1209369530791446],[115,171,67,-0.11866004544347697],[115,171,68,-0.12095623994054422],[115,171,69,-0.11872654460552541],[115,171,70,-0.11638048125339143],[115,171,71,-0.11803542940076409],[115,171,72,-0.11194409560181942],[115,171,73,-0.1080984159632062],[115,171,74,-0.10228040587243718],[115,171,75,-0.10114123254232933],[115,171,76,-0.09875661593831578],[115,171,77,-0.09523346138941233],[115,171,78,-0.06269622547590456],[115,171,79,-0.054640175483370156],[115,172,64,-0.1189234059439094],[115,172,65,-0.12258807240519802],[115,172,66,-0.12390752398827945],[115,172,67,-0.12430700955632429],[115,172,68,-0.12722114681206104],[115,172,69,-0.12492752467284232],[115,172,70,-0.12285866504799337],[115,172,71,-0.12359073010628863],[115,172,72,-0.11621493016987555],[115,172,73,-0.11361930989194502],[115,172,74,-0.10989624710790266],[115,172,75,-0.10821574662673512],[115,172,76,-0.10418385099223208],[115,172,77,-0.10048649622413831],[115,172,78,-0.04937180507748516],[115,172,79,-0.03343813656668318],[115,173,64,-0.11699743645428781],[115,173,65,-0.12240077121648188],[115,173,66,-0.12553706298540468],[115,173,67,-0.12489377258726028],[115,173,68,-0.12604396680060212],[115,173,69,-0.12482259311121491],[115,173,70,-0.12255836792761765],[115,173,71,-0.12121191588476551],[115,173,72,-0.11593412563906418],[115,173,73,-0.11463403716144338],[115,173,74,-0.11174763926454225],[115,173,75,-0.10728704907394623],[115,173,76,-0.10332137893958873],[115,173,77,-0.09328031280245441],[115,173,78,-0.047053391664868514],[115,173,79,-0.02950847032766401],[115,174,64,-0.11301432673310055],[115,174,65,-0.1207536260433327],[115,174,66,-0.12304828832881817],[115,174,67,-0.1257616270778212],[115,174,68,-0.12515327325217737],[115,174,69,-0.12451209681669262],[115,174,70,-0.121885316859263],[115,174,71,-0.11772953042923398],[115,174,72,-0.11633456268380837],[115,174,73,-0.1134595250510453],[115,174,74,-0.11179953063168169],[115,174,75,-0.10617695805173324],[115,174,76,-0.102057191614594],[115,174,77,-0.09161416840125505],[115,174,78,-0.04991346903217373],[115,174,79,-0.028427049581139327],[115,175,64,-0.10415797138881006],[115,175,65,-0.10961425540731512],[115,175,66,-0.11303375085409381],[115,175,67,-0.11824670087019384],[115,175,68,-0.11961606068659922],[115,175,69,-0.11974516391406292],[115,175,70,-0.11761685144908654],[115,175,71,-0.11423622932960797],[115,175,72,-0.11462059354495338],[115,175,73,-0.11132303558655683],[115,175,74,-0.11237515199287826],[115,175,75,-0.10767590015396883],[115,175,76,-0.1047047097249416],[115,175,77,-0.10532345123739956],[115,175,78,-0.10557120161782858],[115,175,79,-0.08231168603402425],[115,176,64,-0.09975511327109515],[115,176,65,-0.10398453253188772],[115,176,66,-0.10826436025996163],[115,176,67,-0.11330766566474464],[115,176,68,-0.11909195396785333],[115,176,69,-0.11844947245013732],[115,176,70,-0.11695485877525984],[115,176,71,-0.11292178968777149],[115,176,72,-0.11149654277949667],[115,176,73,-0.11189523236732257],[115,176,74,-0.11164475458097639],[115,176,75,-0.1075876946561474],[115,176,76,-0.10707745286126646],[115,176,77,-0.1058253269586347],[115,176,78,-0.10739661068953306],[115,176,79,-0.08048357916464446],[115,177,64,-0.10091145866543988],[115,177,65,-0.10583610075383418],[115,177,66,-0.11018241800104106],[115,177,67,-0.11533016522838996],[115,177,68,-0.12234947943017571],[115,177,69,-0.12559498924952256],[115,177,70,-0.12284757331244764],[115,177,71,-0.11640475856662187],[115,177,72,-0.11021601983897246],[115,177,73,-0.10917366928136077],[115,177,74,-0.1128885312268948],[115,177,75,-0.10749583545455066],[115,177,76,-0.1095169003611188],[115,177,77,-0.11068625221640133],[115,177,78,-0.11405882820137768],[115,177,79,-0.10766598538714295],[115,178,64,-0.10325780055564213],[115,178,65,-0.10836870576657362],[115,178,66,-0.11107079398227146],[115,178,67,-0.11930830626887984],[115,178,68,-0.12621186318349956],[115,178,69,-0.12941392110346328],[115,178,70,-0.12642192492315452],[115,178,71,-0.11995967353865754],[115,178,72,-0.11481026113159551],[115,178,73,-0.11244145803878144],[115,178,74,-0.11474717844187954],[115,178,75,-0.11139896456491599],[115,178,76,-0.11452579885133168],[115,178,77,-0.11753727663586974],[115,178,78,-0.11900143094096537],[115,178,79,-0.11124395988693793],[115,179,64,-0.10095283519409917],[115,179,65,-0.10638591863557596],[115,179,66,-0.11023452022835548],[115,179,67,-0.11848820216276751],[115,179,68,-0.12657889586879909],[115,179,69,-0.12949631414296334],[115,179,70,-0.1264272388422501],[115,179,71,-0.1205640576047349],[115,179,72,-0.1150243753914617],[115,179,73,-0.11331836032899079],[115,179,74,-0.1117545118906742],[115,179,75,-0.11236500542154197],[115,179,76,-0.11664321132195278],[115,179,77,-0.11886647070218767],[115,179,78,-0.11643982681391146],[115,179,79,-0.10681119724746278],[115,180,64,-0.09157751309002168],[115,180,65,-0.0987400140425103],[115,180,66,-0.1043870485393481],[115,180,67,-0.11359875470935324],[115,180,68,-0.12201905096108352],[115,180,69,-0.1255666056789342],[115,180,70,-0.1257455202545038],[115,180,71,-0.12377375155271375],[115,180,72,-0.11787860083448691],[115,180,73,-0.11373326932160227],[115,180,74,-0.11313280663117115],[115,180,75,-0.11599090376130841],[115,180,76,-0.12070984840396477],[115,180,77,-0.12220876865277754],[115,180,78,-0.1187035187016596],[115,180,79,-0.10642169286468907],[115,181,64,-0.08092719534368978],[115,181,65,-0.0865873677361435],[115,181,66,-0.09468225181284193],[115,181,67,-0.10039759682570597],[115,181,68,-0.10808824738273581],[115,181,69,-0.11341788011137002],[115,181,70,-0.1155878486583713],[115,181,71,-0.11458255947026752],[115,181,72,-0.11607877370299391],[115,181,73,-0.11307158392891489],[115,181,74,-0.11410770577472563],[115,181,75,-0.11947247450684566],[115,181,76,-0.12197242362937612],[115,181,77,-0.12251710034130678],[115,181,78,-0.11586758173676084],[115,181,79,-0.11407926550557516],[115,182,64,-0.08276803439518447],[115,182,65,-0.08513482784266663],[115,182,66,-0.09458142332048673],[115,182,67,-0.1002490812796234],[115,182,68,-0.10751040269047206],[115,182,69,-0.11256635999915313],[115,182,70,-0.11639160957429043],[115,182,71,-0.1123226691727578],[115,182,72,-0.11656764825019794],[115,182,73,-0.11485704118403478],[115,182,74,-0.11594066317732672],[115,182,75,-0.11930398979256378],[115,182,76,-0.12007278697826844],[115,182,77,-0.119777037555338],[115,182,78,-0.11477176597353891],[115,182,79,-0.11272908173473052],[115,183,64,-0.07951668931659706],[115,183,65,-0.08197739543405035],[115,183,66,-0.09150184502649698],[115,183,67,-0.09585393726175748],[115,183,68,-0.10324753920182153],[115,183,69,-0.10825135596279753],[115,183,70,-0.11178201840048838],[115,183,71,-0.11225902278649813],[115,183,72,-0.11356693290630242],[115,183,73,-0.11450727159758829],[115,183,74,-0.11668280283520643],[115,183,75,-0.1183531346426777],[115,183,76,-0.12022207082631975],[115,183,77,-0.11825854077279871],[115,183,78,-0.11464231881673982],[115,183,79,-0.10987223768192127],[115,184,64,-0.0798263097249927],[115,184,65,-0.08463843748229974],[115,184,66,-0.09116651316051608],[115,184,67,-0.09376894827994436],[115,184,68,-0.1014717400057967],[115,184,69,-0.10479367412843674],[115,184,70,-0.10837151542838372],[115,184,71,-0.11211795781729139],[115,184,72,-0.11430900512734053],[115,184,73,-0.11488273334148914],[115,184,74,-0.11578228089074508],[115,184,75,-0.11633997495691886],[115,184,76,-0.11915346611103535],[115,184,77,-0.11827613148709594],[115,184,78,-0.1144603336283369],[115,184,79,-0.11217030297281189],[115,185,64,-0.08134788951372118],[115,185,65,-0.08490644125232166],[115,185,66,-0.09121441480005174],[115,185,67,-0.0930809927779554],[115,185,68,-0.0999587729713397],[115,185,69,-0.10490878259858549],[115,185,70,-0.10866067393858075],[115,185,71,-0.11164418488597139],[115,185,72,-0.11434478802630048],[115,185,73,-0.11571288641435981],[115,185,74,-0.11597158538713097],[115,185,75,-0.11469920228263811],[115,185,76,-0.11560488568258048],[115,185,77,-0.11381394378947307],[115,185,78,-0.10849304407139314],[115,185,79,-0.10616999025600134],[115,186,64,-0.08585165684717377],[115,186,65,-0.09049549624815717],[115,186,66,-0.09667140815770779],[115,186,67,-0.10010170554557958],[115,186,68,-0.10390820334345285],[115,186,69,-0.11109564753183622],[115,186,70,-0.11647927705303185],[115,186,71,-0.11654879669791357],[115,186,72,-0.12031067711194324],[115,186,73,-0.1187533362768849],[115,186,74,-0.1173751517302474],[115,186,75,-0.11630498649908491],[115,186,76,-0.11687597237633267],[115,186,77,-0.11332222679087613],[115,186,78,-0.10822871909506859],[115,186,79,-0.10443794496178743],[115,187,64,-0.08582524823511398],[115,187,65,-0.09162654809943126],[115,187,66,-0.09691792484519948],[115,187,67,-0.10238076600914967],[115,187,68,-0.10702375116944124],[115,187,69,-0.11389010197990362],[115,187,70,-0.11995185069915319],[115,187,71,-0.12309890168389208],[115,187,72,-0.12116115728197044],[115,187,73,-0.11538606086811859],[115,187,74,-0.11582694374855317],[115,187,75,-0.11408094978237501],[115,187,76,-0.11924900441855169],[115,187,77,-0.1159046099061732],[115,187,78,-0.11284120527537347],[115,187,79,-0.11054313600469105],[115,188,64,-0.09797374116411461],[115,188,65,-0.09913583752776285],[115,188,66,-0.10449190062805927],[115,188,67,-0.1069776847950106],[115,188,68,-0.10921413034675373],[115,188,69,-0.11291789609594563],[115,188,70,-0.11959387618146426],[115,188,71,-0.12417893768879204],[115,188,72,-0.11865551239464475],[115,188,73,-0.11246692142953707],[115,188,74,-0.11115344992788022],[115,188,75,-0.11108890227521521],[115,188,76,-0.11705414037206661],[115,188,77,-0.11266662820192645],[115,188,78,-0.1118492830648658],[115,188,79,-0.11136572665961846],[115,189,64,-0.09530988227294715],[115,189,65,-0.10027236079309515],[115,189,66,-0.11092281150284564],[115,189,67,-0.11913456186670351],[115,189,68,-0.12361180137093425],[115,189,69,-0.12558391265968152],[115,189,70,-0.12933610443469176],[115,189,71,-0.12941883966183168],[115,189,72,-0.12236433974453541],[115,189,73,-0.1157034472105965],[115,189,74,-0.11273964404043935],[115,189,75,-0.10843381285665857],[115,189,76,-0.11160443346511158],[115,189,77,-0.10617418546095823],[115,189,78,-0.10405294389251561],[115,189,79,-0.10271340320238065],[115,190,64,-0.09628123391281991],[115,190,65,-0.10551525498269168],[115,190,66,-0.11376600532202849],[115,190,67,-0.12301771676610546],[115,190,68,-0.12477025065414919],[115,190,69,-0.12707257213447484],[115,190,70,-0.12809065150048354],[115,190,71,-0.1270855219900982],[115,190,72,-0.12237741374785847],[115,190,73,-0.11567156882571462],[115,190,74,-0.11292791144272629],[115,190,75,-0.10959951293099324],[115,190,76,-0.11037556185715054],[115,190,77,-0.10487940551599813],[115,190,78,-0.09987929519887763],[115,190,79,-0.09954070552102609],[115,191,64,-0.09727809559995215],[115,191,65,-0.10622522836783167],[115,191,66,-0.11639247117357218],[115,191,67,-0.12235033306930929],[115,191,68,-0.12151644932451076],[115,191,69,-0.12376891448669158],[115,191,70,-0.12526496142156668],[115,191,71,-0.12623275774047515],[115,191,72,-0.12252731380567287],[115,191,73,-0.11439471451268816],[115,191,74,-0.11237157737226419],[115,191,75,-0.10831414546281529],[115,191,76,-0.10639392520611754],[115,191,77,-0.10191315778472762],[115,191,78,-0.09652002201137543],[115,191,79,-0.09260610278610444],[115,192,64,-0.1013648026646623],[115,192,65,-0.10853819461110298],[115,192,66,-0.1159546299262691],[115,192,67,-0.12253099658820853],[115,192,68,-0.12119715817913998],[115,192,69,-0.12350636313895376],[115,192,70,-0.12420829589059815],[115,192,71,-0.1252409759412801],[115,192,72,-0.11984716280193898],[115,192,73,-0.11428996556024942],[115,192,74,-0.1128959284458414],[115,192,75,-0.10820060545600681],[115,192,76,-0.10523602486586316],[115,192,77,-0.10298525645866861],[115,192,78,-0.09201573387244597],[115,192,79,-0.08841507423809461],[115,193,64,-0.11144444184626656],[115,193,65,-0.11404465175079145],[115,193,66,-0.11247125881168193],[115,193,67,-0.11193259872978512],[115,193,68,-0.10925740974423247],[115,193,69,-0.11247999252117408],[115,193,70,-0.11406278753401171],[115,193,71,-0.11649528814882218],[115,193,72,-0.11506449592599008],[115,193,73,-0.11200216363742237],[115,193,74,-0.10897048762979383],[115,193,75,-0.10396630074165523],[115,193,76,-0.09755002739290258],[115,193,77,-0.0966354665870588],[115,193,78,-0.09253533874384601],[115,193,79,-0.09368524752492205],[115,194,64,-0.11688552836198579],[115,194,65,-0.12023992200050415],[115,194,66,-0.11640469650950741],[115,194,67,-0.11240605470457471],[115,194,68,-0.1103766638422399],[115,194,69,-0.1134147003515603],[115,194,70,-0.11713408394363034],[115,194,71,-0.11843665902089925],[115,194,72,-0.1167240322987904],[115,194,73,-0.11227487842065627],[115,194,74,-0.10897152118251273],[115,194,75,-0.10376812036384567],[115,194,76,-0.0967716672824497],[115,194,77,-0.09635696404685991],[115,194,78,-0.09408550630294006],[115,194,79,-0.09223218163546136],[115,195,64,-0.12165926396656224],[115,195,65,-0.12257673969684271],[115,195,66,-0.11496921887201876],[115,195,67,-0.11139113489227448],[115,195,68,-0.10871836012241104],[115,195,69,-0.11238100689932817],[115,195,70,-0.11552164783624094],[115,195,71,-0.11539658529294712],[115,195,72,-0.11317937913367661],[115,195,73,-0.10972404612877662],[115,195,74,-0.10648204211611428],[115,195,75,-0.09986079163896218],[115,195,76,-0.09418620790437732],[115,195,77,-0.09523138607650726],[115,195,78,-0.09589052259387092],[115,195,79,-0.09457867916868362],[115,196,64,-0.11429887600655966],[115,196,65,-0.11140055632228621],[115,196,66,-0.10373856899373625],[115,196,67,-0.09632875555897548],[115,196,68,-0.09095828909644618],[115,196,69,-0.09099353151066818],[115,196,70,-0.09083352320210683],[115,196,71,-0.09128268638177381],[115,196,72,-0.08745733433451601],[115,196,73,-0.08596901504183228],[115,196,74,-0.08113619650620198],[115,196,75,-0.07521409626992447],[115,196,76,-0.0690564236013158],[115,196,77,-0.07662422412162272],[115,196,78,-0.07725514959806258],[115,196,79,-0.07801456515704246],[115,197,64,-0.11593708421563745],[115,197,65,-0.1119304393922015],[115,197,66,-0.10386441476212466],[115,197,67,-0.09653014534024629],[115,197,68,-0.09156501718605457],[115,197,69,-0.08711882267754292],[115,197,70,-0.08521999549294076],[115,197,71,-0.08476862628466955],[115,197,72,-0.08207584334830928],[115,197,73,-0.08181919492189817],[115,197,74,-0.07798736638056988],[115,197,75,-0.07115342142561051],[115,197,76,-0.06416633243862888],[115,197,77,-0.07075481352343274],[115,197,78,-0.0713009326987967],[115,197,79,-0.07166118679205458],[115,198,64,-0.11752645153388751],[115,198,65,-0.11183165375152891],[115,198,66,-0.1056587347371003],[115,198,67,-0.09463932046069717],[115,198,68,-0.09128017924972438],[115,198,69,-0.08383662501754394],[115,198,70,-0.0793104675473149],[115,198,71,-0.07798795837723144],[115,198,72,-0.07829264955262438],[115,198,73,-0.07776782349007896],[115,198,74,-0.07580556295179108],[115,198,75,-0.06911449681666201],[115,198,76,-0.06252937170854785],[115,198,77,-0.06814293024215211],[115,198,78,-0.06893181491523138],[115,198,79,-0.07150923768326126],[115,199,64,-0.11833341267619388],[115,199,65,-0.11249141137644128],[115,199,66,-0.10471398658402635],[115,199,67,-0.09270097325429247],[115,199,68,-0.08607427094827444],[115,199,69,-0.08034051587024454],[115,199,70,-0.07664320347952838],[115,199,71,-0.07538232594305186],[115,199,72,-0.07785275323385005],[115,199,73,-0.07566883470571958],[115,199,74,-0.07358486297537453],[115,199,75,-0.06783210270531598],[115,199,76,-0.06268205680967906],[115,199,77,-0.06361908082337675],[115,199,78,-0.060031004240105025],[115,199,79,-0.06601638561963201],[115,200,64,-0.12154367610491583],[115,200,65,-0.11459971677709316],[115,200,66,-0.10464144945788488],[115,200,67,-0.09283351902573841],[115,200,68,-0.08437097819722995],[115,200,69,-0.07751271197140433],[115,200,70,-0.07342822212783487],[115,200,71,-0.07419227416144418],[115,200,72,-0.07671706057417713],[115,200,73,-0.07557069513850688],[115,200,74,-0.0685118617986194],[115,200,75,-0.06289295184662158],[115,200,76,-0.05983250751128113],[115,200,77,-0.06207855154738172],[115,200,78,-0.06267636450680066],[115,200,79,-0.06611646219971298],[115,201,64,-0.1142568301368901],[115,201,65,-0.10841672452782107],[115,201,66,-0.10051756885184338],[115,201,67,-0.08837312417929988],[115,201,68,-0.07925664990978848],[115,201,69,-0.0716043805247493],[115,201,70,-0.0675548286910977],[115,201,71,-0.07015115198577543],[115,201,72,-0.07221614090762837],[115,201,73,-0.07268781553590227],[115,201,74,-0.06604643543246644],[115,201,75,-0.06066182667554824],[115,201,76,-0.05482555868632917],[115,201,77,-0.05707915592265621],[115,201,78,-0.048276468160401376],[115,201,79,-0.045379663892161755],[115,202,64,-0.12158406120881626],[115,202,65,-0.11396528140036787],[115,202,66,-0.10810703393974211],[115,202,67,-0.09645696879188295],[115,202,68,-0.08397049811748963],[115,202,69,-0.07542250020448359],[115,202,70,-0.07081966341202417],[115,202,71,-0.07177119935962166],[115,202,72,-0.07309885424783803],[115,202,73,-0.07473757857020213],[115,202,74,-0.06874501425163076],[115,202,75,-0.062019165886375766],[115,202,76,-0.05446389693379841],[115,202,77,-0.05689610151860852],[115,202,78,-0.04673298256582948],[115,202,79,-0.04902095199619517],[115,203,64,-0.12350367931818337],[115,203,65,-0.11646494791388434],[115,203,66,-0.10947481595026987],[115,203,67,-0.09663232112446497],[115,203,68,-0.08603727092816321],[115,203,69,-0.07564417485985736],[115,203,70,-0.06890533836164545],[115,203,71,-0.06955260496090328],[115,203,72,-0.07156865563076154],[115,203,73,-0.07182218726653505],[115,203,74,-0.06718518833505824],[115,203,75,-0.060079302902611376],[115,203,76,-0.05352607296625177],[115,203,77,-0.05799705150386617],[115,203,78,-0.049318472605511005],[115,203,79,-0.053972942031347074],[115,204,64,-0.1261972227733683],[115,204,65,-0.11904860753155264],[115,204,66,-0.10901256280068773],[115,204,67,-0.09588845673144777],[115,204,68,-0.07989291958728141],[115,204,69,-0.06975986435600953],[115,204,70,-0.06392863450634578],[115,204,71,-0.06061486103036571],[115,204,72,-0.061348379341228026],[115,204,73,-0.06211336189980148],[115,204,74,-0.056985280205211694],[115,204,75,-0.05156431505063713],[115,204,76,-0.05009748814636225],[115,204,77,-0.052098074543356146],[115,204,78,-0.05039176613157611],[115,204,79,-0.05667231803603995],[115,205,64,-0.13744020635566234],[115,205,65,-0.13074951269483734],[115,205,66,-0.11965429143783779],[115,205,67,-0.1070279206776648],[115,205,68,-0.09222274103360896],[115,205,69,-0.08192647870861054],[115,205,70,-0.07326531260423677],[115,205,71,-0.06720190742802988],[115,205,72,-0.06368676679349677],[115,205,73,-0.061406337416680265],[115,205,74,-0.05528985614952305],[115,205,75,-0.05089422049287305],[115,205,76,-0.04809963356405058],[115,205,77,-0.053664199370146264],[115,205,78,-0.05582195149917657],[115,205,79,-0.0593883363871595],[115,206,64,-0.1393016998389453],[115,206,65,-0.13269171545239855],[115,206,66,-0.11967729686005232],[115,206,67,-0.10561215880637946],[115,206,68,-0.09378759315412794],[115,206,69,-0.08003385050580043],[115,206,70,-0.07052998600498428],[115,206,71,-0.06705047920646681],[115,206,72,-0.06297688640452526],[115,206,73,-0.05963840300985418],[115,206,74,-0.054903739008033886],[115,206,75,-0.05070663131022182],[115,206,76,-0.04774722421388092],[115,206,77,-0.0552002515725508],[115,206,78,-0.05587499223256477],[115,206,79,-0.06585653391484272],[115,207,64,-0.1450776000054812],[115,207,65,-0.1340887174990925],[115,207,66,-0.12089295802621203],[115,207,67,-0.1076953692665282],[115,207,68,-0.0942285920251964],[115,207,69,-0.08025873753962148],[115,207,70,-0.0716744096437215],[115,207,71,-0.06684953810024973],[115,207,72,-0.062041141957893474],[115,207,73,-0.05787972985824913],[115,207,74,-0.05467677776623569],[115,207,75,-0.04931095972326767],[115,207,76,-0.04612749690538132],[115,207,77,-0.0506299119272594],[115,207,78,-0.04913305528775289],[115,207,79,-0.05750622203102402],[115,208,64,-0.1505308951782688],[115,208,65,-0.13740045967872408],[115,208,66,-0.1232539868589561],[115,208,67,-0.10753740357243571],[115,208,68,-0.09341743706760407],[115,208,69,-0.0792273718341884],[115,208,70,-0.07110951796010319],[115,208,71,-0.06293626561164113],[115,208,72,-0.06065044437655892],[115,208,73,-0.05876113537216202],[115,208,74,-0.05444545073963522],[115,208,75,-0.047821329185503],[115,208,76,-0.0450480330988923],[115,208,77,-0.057534624352391345],[115,208,78,-0.06401179802490323],[115,208,79,-0.07201253144038776],[115,209,64,-0.15324040714147902],[115,209,65,-0.1415723334547827],[115,209,66,-0.12439683478757153],[115,209,67,-0.10883059137983539],[115,209,68,-0.09311382755190485],[115,209,69,-0.0794151580302833],[115,209,70,-0.0699159467328104],[115,209,71,-0.059912869648840864],[115,209,72,-0.06082954041531752],[115,209,73,-0.05859523605902746],[115,209,74,-0.05345230998507855],[115,209,75,-0.04709952769728904],[115,209,76,-0.04469800889498159],[115,209,77,-0.05573414098011957],[115,209,78,-0.0648671564274823],[115,209,79,-0.0702351408188455],[115,210,64,-0.16018988943254084],[115,210,65,-0.14783473339639672],[115,210,66,-0.13124516503893352],[115,210,67,-0.11303637019236219],[115,210,68,-0.09894008966119643],[115,210,69,-0.0840576669462697],[115,210,70,-0.07222224515483276],[115,210,71,-0.06420296621888137],[115,210,72,-0.06515611153058451],[115,210,73,-0.061880703623362954],[115,210,74,-0.05669444011693871],[115,210,75,-0.050221467723734016],[115,210,76,-0.04391305960220807],[115,210,77,-0.054696648273021634],[115,210,78,-0.06705955553277727],[115,210,79,-0.06806414770673905],[115,211,64,-0.1620118705508819],[115,211,65,-0.14772111161823254],[115,211,66,-0.13136683655077763],[115,211,67,-0.11318147526552719],[115,211,68,-0.10081220288461772],[115,211,69,-0.08504619015024226],[115,211,70,-0.07432781696508323],[115,211,71,-0.06856024794373282],[115,211,72,-0.06647941816858496],[115,211,73,-0.06032205499645554],[115,211,74,-0.057463560094379154],[115,211,75,-0.05055056974966596],[115,211,76,-0.04890118342375026],[115,211,77,-0.062277621155976515],[115,211,78,-0.07711832862065832],[115,211,79,-0.08049280186571103],[115,212,64,-0.14656632731552785],[115,212,65,-0.13653603294971822],[115,212,66,-0.12364237908046295],[115,212,67,-0.11272611661115065],[115,212,68,-0.10439193876816011],[115,212,69,-0.09624597902079395],[115,212,70,-0.0891828125880011],[115,212,71,-0.08571250973759079],[115,212,72,-0.08435253539600979],[115,212,73,-0.07591807574762727],[115,212,74,-0.07026424949852705],[115,212,75,-0.06616979837685649],[115,212,76,-0.0634171343942559],[115,212,77,-0.068618632111721],[115,212,78,-0.07816340018506997],[115,212,79,-0.08500046097917777],[115,213,64,-0.14919544155362247],[115,213,65,-0.13655687791348448],[115,213,66,-0.1158797834938053],[115,213,67,-0.1004310235677941],[115,213,68,-0.09307965126781775],[115,213,69,-0.08535602601077698],[115,213,70,-0.08165720409340116],[115,213,71,-0.08374568940818257],[115,213,72,-0.08661567882765174],[115,213,73,-0.08362555251563539],[115,213,74,-0.07888642843129363],[115,213,75,-0.07325062078012398],[115,213,76,-0.07551425466567732],[115,213,77,-0.07903952793977792],[115,213,78,-0.08127493855958419],[115,213,79,-0.08627920821509868],[115,214,64,-0.1486481475323025],[115,214,65,-0.13430129604911267],[115,214,66,-0.11549345800864894],[115,214,67,-0.10151964297075936],[115,214,68,-0.09351823442626925],[115,214,69,-0.08621795167992999],[115,214,70,-0.07944569852132241],[115,214,71,-0.08148313087013355],[115,214,72,-0.0847784340485459],[115,214,73,-0.08556233241659876],[115,214,74,-0.07869960186312053],[115,214,75,-0.07345536618534883],[115,214,76,-0.07900427303261652],[115,214,77,-0.08213083497228017],[115,214,78,-0.0833996251005613],[115,214,79,-0.08417470348556708],[115,215,64,-0.14915123464126745],[115,215,65,-0.13637897491847523],[115,215,66,-0.11843188927387996],[115,215,67,-0.10420584466445573],[115,215,68,-0.09635594972054563],[115,215,69,-0.08773821137530606],[115,215,70,-0.08037563519521512],[115,215,71,-0.08142182163190277],[115,215,72,-0.08396854261977131],[115,215,73,-0.08366684875842074],[115,215,74,-0.07670028313678369],[115,215,75,-0.07195992621433583],[115,215,76,-0.07471682796390204],[115,215,77,-0.07362059483133677],[115,215,78,-0.07472944973515822],[115,215,79,-0.07868235963704814],[115,216,64,-0.14750137597812202],[115,216,65,-0.1348565479971729],[115,216,66,-0.11525232539411322],[115,216,67,-0.10312593177953212],[115,216,68,-0.09604837728953958],[115,216,69,-0.08924072514929547],[115,216,70,-0.08295717288902543],[115,216,71,-0.08165597993268658],[115,216,72,-0.08078670945443854],[115,216,73,-0.08006918910092184],[115,216,74,-0.07402956235594052],[115,216,75,-0.06997573243999484],[115,216,76,-0.06851084976745832],[115,216,77,-0.06398625446663775],[115,216,78,-0.0668241895778804],[115,216,79,-0.0733417112642801],[115,217,64,-0.13685586189768534],[115,217,65,-0.12904627539560826],[115,217,66,-0.11929660674280787],[115,217,67,-0.11099997844367261],[115,217,68,-0.10367594635245211],[115,217,69,-0.09953048391883586],[115,217,70,-0.09177050319225225],[115,217,71,-0.0834624708827009],[115,217,72,-0.07478369705134451],[115,217,73,-0.06690065649256144],[115,217,74,-0.059347322520686654],[115,217,75,-0.05492073668566947],[115,217,76,-0.057605872951471224],[115,217,77,-0.05796235835133294],[115,217,78,-0.06535392916107244],[115,217,79,-0.07358157439208779],[115,218,64,-0.1386486369625387],[115,218,65,-0.1313524417935944],[115,218,66,-0.12195895111041863],[115,218,67,-0.1172115452583099],[115,218,68,-0.1063230209055493],[115,218,69,-0.1017640505059036],[115,218,70,-0.0943133204257072],[115,218,71,-0.08713897711897269],[115,218,72,-0.07495566365832802],[115,218,73,-0.06427896279765764],[115,218,74,-0.05867307944852438],[115,218,75,-0.049072374122954614],[115,218,76,-0.05345264817217933],[115,218,77,-0.06218498012201386],[115,218,78,-0.07157413637830339],[115,218,79,-0.08044519318721267],[115,219,64,-0.13705966441135098],[115,219,65,-0.12888006068252014],[115,219,66,-0.12254329907328651],[115,219,67,-0.11676911119177297],[115,219,68,-0.10757174152658966],[115,219,69,-0.10049187542860626],[115,219,70,-0.09223564196634512],[115,219,71,-0.08473916728283622],[115,219,72,-0.07383288347589054],[115,219,73,-0.06350270106087208],[115,219,74,-0.05556510617795401],[115,219,75,-0.04745720062258965],[115,219,76,-0.05391529716743637],[115,219,77,-0.06994515199397999],[115,219,78,-0.08281507691019327],[115,219,79,-0.0890354245412634],[115,220,64,-0.13788853030646428],[115,220,65,-0.12818065667757939],[115,220,66,-0.11981443218962863],[115,220,67,-0.10976640951651678],[115,220,68,-0.10096987487727382],[115,220,69,-0.0903258052469604],[115,220,70,-0.07967319826180838],[115,220,71,-0.06756620936038973],[115,220,72,-0.05917337361639683],[115,220,73,-0.048989248566695356],[115,220,74,-0.04148038883588924],[115,220,75,-0.04181211326619559],[115,220,76,-0.056497561851219034],[115,220,77,-0.07948740840513949],[115,220,78,-0.1016422012292153],[115,220,79,-0.1094171079026644],[115,221,64,-0.1363825632294155],[115,221,65,-0.12755759919677145],[115,221,66,-0.12010768594357699],[115,221,67,-0.10978026338334752],[115,221,68,-0.10132577101210385],[115,221,69,-0.08740858107465964],[115,221,70,-0.07505512477199594],[115,221,71,-0.06301271205059267],[115,221,72,-0.055298350541672356],[115,221,73,-0.04600413416189288],[115,221,74,-0.06284247375830444],[115,221,75,-0.08223222951396095],[115,221,76,-0.09397738220523846],[115,221,77,-0.11707123544023018],[115,221,78,-0.12154025003256949],[115,221,79,-0.11169500054635537],[115,222,64,-0.13434893070533732],[115,222,65,-0.1255693047978685],[115,222,66,-0.1179662653052268],[115,222,67,-0.1098537983831014],[115,222,68,-0.09862418895638599],[115,222,69,-0.08443317547101487],[115,222,70,-0.07080763610963053],[115,222,71,-0.06008108813263311],[115,222,72,-0.05021917780905333],[115,222,73,-0.041997081015860874],[115,222,74,-0.07337071922652952],[115,222,75,-0.0919257312427238],[115,222,76,-0.10037826170351162],[115,222,77,-0.12851090990709974],[115,222,78,-0.11907681740084891],[115,222,79,-0.10872824336782935],[115,223,64,-0.13502406945617332],[115,223,65,-0.12754049209138604],[115,223,66,-0.12089876280470246],[115,223,67,-0.11154053507660164],[115,223,68,-0.09493644299665649],[115,223,69,-0.08375783991614758],[115,223,70,-0.06993053811296293],[115,223,71,-0.0596694782472652],[115,223,72,-0.049235541864122406],[115,223,73,-0.03750692537232869],[115,223,74,-0.09177781299147902],[115,223,75,-0.11774484732743443],[115,223,76,-0.11671009401730531],[115,223,77,-0.12701991381482788],[115,223,78,-0.1175983443983245],[115,223,79,-0.106319029117299],[115,224,64,-0.13217036813968155],[115,224,65,-0.12719070826544127],[115,224,66,-0.11908831610666043],[115,224,67,-0.10785192419367125],[115,224,68,-0.09179777502742421],[115,224,69,-0.0781934752978123],[115,224,70,-0.06819440251298256],[115,224,71,-0.05757244336374617],[115,224,72,-0.045801677582522876],[115,224,73,-0.04686433490811446],[115,224,74,-0.10033000264563276],[115,224,75,-0.1288802328677125],[115,224,76,-0.12489086057171331],[115,224,77,-0.1259933462691854],[115,224,78,-0.11530522911309504],[115,224,79,-0.10818130240282571],[115,225,64,-0.14010182637052992],[115,225,65,-0.1320814758253309],[115,225,66,-0.12344179528562761],[115,225,67,-0.1054045338237118],[115,225,68,-0.09018323955444955],[115,225,69,-0.07335477180710845],[115,225,70,-0.06508196124306942],[115,225,71,-0.057543786375077996],[115,225,72,-0.048100197086508076],[115,225,73,-0.0643100955926697],[115,225,74,-0.10739123659829114],[115,225,75,-0.13617944944968965],[115,225,76,-0.136483085196009],[115,225,77,-0.1268585638087359],[115,225,78,-0.11568633056188836],[115,225,79,-0.11020592009105132],[115,226,64,-0.14318673355584272],[115,226,65,-0.137030471686849],[115,226,66,-0.12937185882089447],[115,226,67,-0.11009149802513353],[115,226,68,-0.09334301521860616],[115,226,69,-0.07727738341301113],[115,226,70,-0.06452483691983646],[115,226,71,-0.05604242871024916],[115,226,72,-0.049648527472668826],[115,226,73,-0.061507064040997275],[115,226,74,-0.09125442264222983],[115,226,75,-0.1281764134860191],[115,226,76,-0.13413803884611197],[115,226,77,-0.1289800884845948],[115,226,78,-0.11868916783825778],[115,226,79,-0.1102235854057176],[115,227,64,-0.14350565358104259],[115,227,65,-0.13595490690527745],[115,227,66,-0.12909941855892818],[115,227,67,-0.11177625959270072],[115,227,68,-0.09226899763418149],[115,227,69,-0.07573681409939555],[115,227,70,-0.061567352492817085],[115,227,71,-0.0524831414798894],[115,227,72,-0.04698209994710599],[115,227,73,-0.062368605500862706],[115,227,74,-0.09641479704141417],[115,227,75,-0.1358898591528823],[115,227,76,-0.13771962164428814],[115,227,77,-0.13872846143795747],[115,227,78,-0.1295428125860288],[115,227,79,-0.12074226214717036],[115,228,64,-0.1330957708013149],[115,228,65,-0.1226856855030078],[115,228,66,-0.11439506238191367],[115,228,67,-0.09867249269845861],[115,228,68,-0.08079823692691275],[115,228,69,-0.061966353249605435],[115,228,70,-0.04508181402534444],[115,228,71,-0.03547299117817094],[115,228,72,-0.030415938334334064],[115,228,73,-0.04089096046951449],[115,228,74,-0.0818275099965401],[115,228,75,-0.12175458200667068],[115,228,76,-0.13017259571635995],[115,228,77,-0.13367182841231917],[115,228,78,-0.1293374709421305],[115,228,79,-0.11965546945953025],[115,229,64,-0.12136221355684433],[115,229,65,-0.11436851939065516],[115,229,66,-0.10642120518881912],[115,229,67,-0.09572209683729109],[115,229,68,-0.08064463164366553],[115,229,69,-0.05866591185500833],[115,229,70,-0.0420253300285187],[115,229,71,-0.027643823608635286],[115,229,72,-0.019768680589505386],[115,229,73,-0.06724420110212918],[115,229,74,-0.12504423636363465],[115,229,75,-0.14889828424502202],[115,229,76,-0.14401445115034092],[115,229,77,-0.13468932422932386],[115,229,78,-0.13126089947180136],[115,229,79,-0.1231237588070628],[115,230,64,-0.11946142657486128],[115,230,65,-0.11541654045468301],[115,230,66,-0.10568869467005303],[115,230,67,-0.09159416218233933],[115,230,68,-0.07933328545384476],[115,230,69,-0.059086348543526776],[115,230,70,-0.03853192719091613],[115,230,71,-0.024154992808191528],[115,230,72,-0.016974529305948532],[115,230,73,-0.04786697482620877],[115,230,74,-0.12289722843404609],[115,230,75,-0.15285863648541864],[115,230,76,-0.1447618032236609],[115,230,77,-0.13654868027913],[115,230,78,-0.13091854783660445],[115,230,79,-0.12474558021432634],[115,231,64,-0.1264220638739441],[115,231,65,-0.12122161452960308],[115,231,66,-0.11101000014289403],[115,231,67,-0.09486197407583831],[115,231,68,-0.07994425629930497],[115,231,69,-0.059137810794197804],[115,231,70,-0.0421005552419276],[115,231,71,-0.02715943572637624],[115,231,72,-0.018608068099634584],[115,231,73,-0.005586911853498397],[115,231,74,-0.07136139373868694],[115,231,75,-0.11257042614575427],[115,231,76,-0.1398946642477456],[115,231,77,-0.13253143785040442],[115,231,78,-0.1279782057563159],[115,231,79,-0.12147557756499586],[115,232,64,-0.12694154560512694],[115,232,65,-0.12118550097845604],[115,232,66,-0.11116303433609283],[115,232,67,-0.09480652937833516],[115,232,68,-0.07733673613033885],[115,232,69,-0.05937326805712219],[115,232,70,-0.04351223209076529],[115,232,71,-0.028593114682412643],[115,232,72,-0.019113950384596817],[115,232,73,-0.004765198013685232],[115,232,74,-0.0723587171658817],[115,232,75,-0.11814096050356608],[115,232,76,-0.1322348641218874],[115,232,77,-0.1345660722103087],[115,232,78,-0.12700666229057656],[115,232,79,-0.1188932923806458],[115,233,64,-0.13050972625726132],[115,233,65,-0.1230026351061387],[115,233,66,-0.11052595356049127],[115,233,67,-0.09274793290776459],[115,233,68,-0.07602383194327059],[115,233,69,-0.061153505671415705],[115,233,70,-0.04683526148332316],[115,233,71,-0.029798909049273063],[115,233,72,-0.019081445084324758],[115,233,73,-0.0037549571076910954],[115,233,74,-0.07255993339305193],[115,233,75,-0.12053857229427295],[115,233,76,-0.1315637889823604],[115,233,77,-0.13860159600126792],[115,233,78,-0.1313330047369648],[115,233,79,-0.12430183495936314],[115,234,64,-0.13820778718005272],[115,234,65,-0.12841770556997542],[115,234,66,-0.11422467832831759],[115,234,67,-0.0944171488979796],[115,234,68,-0.08124959876815471],[115,234,69,-0.06490098983934783],[115,234,70,-0.05276066048545596],[115,234,71,-0.034935304341248016],[115,234,72,-0.021308834529484066],[115,234,73,-0.004237573417564353],[115,234,74,-0.05175618230698143],[115,234,75,-0.09771732571054646],[115,234,76,-0.12125237577429637],[115,234,77,-0.13797288818170808],[115,234,78,-0.13348476556044991],[115,234,79,-0.1273396680135277],[115,235,64,-0.14016165562475263],[115,235,65,-0.13063519898196746],[115,235,66,-0.11725496966877566],[115,235,67,-0.09534764394951574],[115,235,68,-0.08241120772900859],[115,235,69,-0.06605999597418191],[115,235,70,-0.05114344651672828],[115,235,71,-0.03425993248311998],[115,235,72,-0.02017405476657126],[115,235,73,-0.005519596976429064],[115,235,74,0.0028722463441145374],[115,235,75,0.013202836179389511],[115,235,76,-0.01750018328495815],[115,235,77,-0.03897943365472316],[115,235,78,-0.09979188802078608],[115,235,79,-0.1349379520254172],[115,236,64,-0.15649646651998292],[115,236,65,-0.1481410074264849],[115,236,66,-0.13451677298934744],[115,236,67,-0.11452268601428921],[115,236,68,-0.09907118811696031],[115,236,69,-0.08150646939844783],[115,236,70,-0.06511120749059775],[115,236,71,-0.049229035174597244],[115,236,72,-0.033514991502790456],[115,236,73,-0.02185419210938025],[115,236,74,-0.014686192326086187],[115,236,75,-0.005348568051906541],[115,236,76,-0.0390862672004406],[115,236,77,-0.06158375107418433],[115,236,78,-0.11328203060268234],[115,236,79,-0.14155797808871082],[115,237,64,-0.16614101356205885],[115,237,65,-0.15077449523393366],[115,237,66,-0.1320094018935928],[115,237,67,-0.10825147222826231],[115,237,68,-0.0902103182435874],[115,237,69,-0.07465091998812673],[115,237,70,-0.054767391414039496],[115,237,71,-0.041922081828840704],[115,237,72,-0.026914661697567857],[115,237,73,-0.017616318999150865],[115,237,74,-0.010435346297039474],[115,237,75,-0.03039057091103269],[115,237,76,-0.07147212875576635],[115,237,77,-0.1024537319168462],[115,237,78,-0.14832973455187257],[115,237,79,-0.14011333660635547],[115,238,64,-0.16897935555043028],[115,238,65,-0.15069216124840415],[115,238,66,-0.13344499843579577],[115,238,67,-0.1084847487492129],[115,238,68,-0.093512453834691],[115,238,69,-0.07807084642531721],[115,238,70,-0.05474662714815019],[115,238,71,-0.03938624592928078],[115,238,72,-0.026417115724603812],[115,238,73,-0.019285020918170304],[115,238,74,-0.035249598175696555],[115,238,75,-0.049631769495329575],[115,238,76,-0.10158624766024953],[115,238,77,-0.14220297927023515],[115,238,78,-0.14505642458351803],[115,238,79,-0.1384862993271782],[115,239,64,-0.17418499131534715],[115,239,65,-0.15784932861290726],[115,239,66,-0.13908616540234636],[115,239,67,-0.11633542774862085],[115,239,68,-0.10035032642770907],[115,239,69,-0.08175066493896829],[115,239,70,-0.05972262059363958],[115,239,71,-0.041598755358203655],[115,239,72,-0.02873495236790055],[115,239,73,-0.021999377899109843],[115,239,74,-0.02109525478158926],[115,239,75,-0.02860554832366126],[115,239,76,-0.07457918253456011],[115,239,77,-0.12308108162927968],[115,239,78,-0.14110904400977436],[115,239,79,-0.1350862843351711],[115,240,64,-0.17413721097372414],[115,240,65,-0.15666231456277607],[115,240,66,-0.1366936356786433],[115,240,67,-0.11696953952150077],[115,240,68,-0.09872600878318194],[115,240,69,-0.08241461547884626],[115,240,70,-0.06147328646639011],[115,240,71,-0.041231633313165504],[115,240,72,-0.0304114854191503],[115,240,73,-0.02728373669518913],[115,240,74,-0.019625140247370484],[115,240,75,-0.023018436870987025],[115,240,76,-0.06096953429082934],[115,240,77,-0.11656872122374909],[115,240,78,-0.14125425101352765],[115,240,79,-0.1333947675023348],[115,241,64,-0.16633017407851036],[115,241,65,-0.15527924835551982],[115,241,66,-0.13995127828021697],[115,241,67,-0.12689724043313189],[115,241,68,-0.10999669398070379],[115,241,69,-0.091249650020825],[115,241,70,-0.07259121332044173],[115,241,71,-0.054851155614869446],[115,241,72,-0.0441223592264427],[115,241,73,-0.0401142681124398],[115,241,74,-0.030610568225431317],[115,241,75,-0.014154941103077412],[115,241,76,-6.930304714310859E-4],[115,241,77,0.0152437832431489],[115,241,78,0.029950857541605508],[115,241,79,-0.018602464335799145],[115,242,64,-0.17114450351317173],[115,242,65,-0.1572136521622102],[115,242,66,-0.14399570872771336],[115,242,67,-0.13215600284117374],[115,242,68,-0.11413834300721591],[115,242,69,-0.09364207583591617],[115,242,70,-0.0768843524532329],[115,242,71,-0.06074801680387989],[115,242,72,-0.04779052068700303],[115,242,73,-0.04311677763827425],[115,242,74,-0.03345429065245796],[115,242,75,-0.01993083017885855],[115,242,76,-0.007563749940572975],[115,242,77,0.007758461992331364],[115,242,78,0.02383758243552532],[115,242,79,-0.029162122184943115],[115,243,64,-0.16861119303721167],[115,243,65,-0.1548754738334865],[115,243,66,-0.14289979310854223],[115,243,67,-0.12949013505396717],[115,243,68,-0.11447591298269463],[115,243,69,-0.09674987527566928],[115,243,70,-0.07848003632634794],[115,243,71,-0.06165061975779133],[115,243,72,-0.04647304003311057],[115,243,73,-0.04176923525618923],[115,243,74,-0.03142112973746449],[115,243,75,-0.02172039901815108],[115,243,76,-0.008119068108346866],[115,243,77,0.005379170387804277],[115,243,78,0.02052197186615358],[115,243,79,-0.049071679069171745],[115,244,64,-0.15498451256345885],[115,244,65,-0.14572484658920692],[115,244,66,-0.13865237282493809],[115,244,67,-0.12536979132683637],[115,244,68,-0.11224331707525875],[115,244,69,-0.0978578226345157],[115,244,70,-0.0807888948449077],[115,244,71,-0.06545352127484225],[115,244,72,-0.05151249593402102],[115,244,73,-0.043530577597923385],[115,244,74,-0.03546984434051689],[115,244,75,-0.028390380628466244],[115,244,76,-0.013502888424285209],[115,244,77,-0.0021985034976515078],[115,244,78,0.01000986782390996],[115,244,79,-0.05253371654119422],[115,245,64,-0.14917293169129375],[115,245,65,-0.1413853931470907],[115,245,66,-0.13568563628969008],[115,245,67,-0.12439165675517115],[115,245,68,-0.10989001670486655],[115,245,69,-0.0982950590723279],[115,245,70,-0.08094533253193181],[115,245,71,-0.06869723252150843],[115,245,72,-0.05454690091749936],[115,245,73,-0.04483306752483576],[115,245,74,-0.0355428838778729],[115,245,75,-0.029350183042825634],[115,245,76,-0.017538480333674875],[115,245,77,-0.004538365381729997],[115,245,78,0.007757049473738925],[115,245,79,-0.05410961018308169],[115,246,64,-0.14590929551159804],[115,246,65,-0.13699427692245242],[115,246,66,-0.13079681503124216],[115,246,67,-0.12142595811191449],[115,246,68,-0.10872970505077292],[115,246,69,-0.09612111169752084],[115,246,70,-0.07955206565014934],[115,246,71,-0.07023016255563602],[115,246,72,-0.055322216762842324],[115,246,73,-0.043855275862434574],[115,246,74,-0.03498934651530258],[115,246,75,-0.028454350989169618],[115,246,76,-0.01988095626542874],[115,246,77,-0.0065860787802667214],[115,246,78,0.006133427721998236],[115,246,79,-0.06430391577256245],[115,247,64,-0.1529879817780173],[115,247,65,-0.1408441203380783],[115,247,66,-0.1315127483659312],[115,247,67,-0.11848264554576304],[115,247,68,-0.10796355832356207],[115,247,69,-0.09847623949225405],[115,247,70,-0.0859916898502168],[115,247,71,-0.07023953406461493],[115,247,72,-0.05502653623822869],[115,247,73,-0.043343150477012156],[115,247,74,-0.03460672147473953],[115,247,75,-0.02706385904158158],[115,247,76,-0.015084700997948744],[115,247,77,-0.006420657313234018],[115,247,78,0.008310919215533286],[115,247,79,-0.04994904948070519],[115,248,64,-0.15260606648488861],[115,248,65,-0.14066213678385808],[115,248,66,-0.12921462414498586],[115,248,67,-0.11420305677007828],[115,248,68,-0.10324370873818861],[115,248,69,-0.09771293284072398],[115,248,70,-0.08546804659687751],[115,248,71,-0.06918598209075995],[115,248,72,-0.05201679278806875],[115,248,73,-0.041371420086699445],[115,248,74,-0.0351483675574139],[115,248,75,-0.0249590818723133],[115,248,76,-0.013789153534301463],[115,248,77,-0.005599477303973102],[115,248,78,0.008939992400465488],[115,248,79,-0.05526910889117202],[115,249,64,-0.14399953876789434],[115,249,65,-0.13055176688942752],[115,249,66,-0.11558295010901203],[115,249,67,-0.10103661171927823],[115,249,68,-0.09011651783335903],[115,249,69,-0.08719847315449752],[115,249,70,-0.0742610092738098],[115,249,71,-0.05882423714179619],[115,249,72,-0.04308467762745355],[115,249,73,-0.02959906901353325],[115,249,74,-0.024385118879992965],[115,249,75,-0.014273542984535259],[115,249,76,-0.005441230598526331],[115,249,77,-8.650065839484744E-4],[115,249,78,2.7271633180021154E-5],[115,249,79,-0.08992818116790895],[115,250,64,-0.14806964180486745],[115,250,65,-0.12973965185887776],[115,250,66,-0.11748101220512955],[115,250,67,-0.10270069390504798],[115,250,68,-0.0940823569122599],[115,250,69,-0.08963897334359987],[115,250,70,-0.07634667804408894],[115,250,71,-0.06285423511624225],[115,250,72,-0.047118355770118],[115,250,73,-0.03205524664230414],[115,250,74,-0.024672018733759897],[115,250,75,-0.014530335696434832],[115,250,76,-0.0066576943216397205],[115,250,77,-0.003021808830144357],[115,250,78,-0.040912198936602875],[115,250,79,-0.08751073826068174],[115,251,64,-0.1474414979563825],[115,251,65,-0.12846009337237954],[115,251,66,-0.11478795953860255],[115,251,67,-0.10411046119443207],[115,251,68,-0.09576019301727472],[115,251,69,-0.08661194335991203],[115,251,70,-0.07421797796301279],[115,251,71,-0.06048826607594643],[115,251,72,-0.0482442553226672],[115,251,73,-0.03262371290728218],[115,251,74,-0.02161725899020331],[115,251,75,-0.014337711249434434],[115,251,76,-0.005746676206076232],[115,251,77,-0.004233014346942218],[115,251,78,-0.03324112985901615],[115,251,79,-0.08820773482935915],[115,252,64,-0.13960209916366917],[115,252,65,-0.12115723787594494],[115,252,66,-0.10379912370134946],[115,252,67,-0.09259441422044172],[115,252,68,-0.08297649075366226],[115,252,69,-0.07119678280658698],[115,252,70,-0.05745762325713295],[115,252,71,-0.04557836290316956],[115,252,72,-0.031139774511439178],[115,252,73,-0.019063259307561614],[115,252,74,-0.005595469095567018],[115,252,75,-7.071505994146743E-6],[115,252,76,0.00822629871700653],[115,252,77,0.009975308514330386],[115,252,78,-0.025112952597451513],[115,252,79,-0.08051646628122626],[115,253,64,-0.14992900691127947],[115,253,65,-0.13329493791353111],[115,253,66,-0.11442031312220893],[115,253,67,-0.10215578987990002],[115,253,68,-0.09125960990165653],[115,253,69,-0.08070907575298228],[115,253,70,-0.06973452641815933],[115,253,71,-0.05800284537396931],[115,253,72,-0.042594553646197034],[115,253,73,-0.030725355094960785],[115,253,74,-0.0167871371002163],[115,253,75,-0.011337739327646992],[115,253,76,-0.001522277039315234],[115,253,77,0.0082433925727627],[115,253,78,0.005054634433243638],[115,253,79,-0.03447396138195798],[115,254,64,-0.06621691738926626],[115,254,65,-0.059250176357669083],[115,254,66,-0.04606504673428298],[115,254,67,-0.04133582731237262],[115,254,68,-0.03709131748836273],[115,254,69,-0.0367459254954727],[115,254,70,-0.0330421404291425],[115,254,71,-0.030766383612526704],[115,254,72,-0.023711181819387334],[115,254,73,-0.020564156862850208],[115,254,74,-0.01775495352046158],[115,254,75,-0.01962638410409813],[115,254,76,-0.020382029022410597],[115,254,77,-0.017213421830271115],[115,254,78,-0.024271033606151272],[115,254,79,-0.06256723022561697],[115,255,64,-0.06413043614211256],[115,255,65,-0.055948444796476496],[115,255,66,-0.04451575073406599],[115,255,67,-0.04059481826157428],[115,255,68,-0.036892140431408954],[115,255,69,-0.0354867518353305],[115,255,70,-0.03088750110543264],[115,255,71,-0.029492364662467005],[115,255,72,-0.025357719866313036],[115,255,73,-0.021199477950468032],[115,255,74,-0.01990309205836635],[115,255,75,-0.01990093567821763],[115,255,76,-0.021373208152574125],[115,255,77,-0.016598739800719235],[115,255,78,-0.013487553770475561],[115,255,79,-0.06088052758356396],[115,256,64,-0.06251010193316145],[115,256,65,-0.0530302012348332],[115,256,66,-0.042685622843509505],[115,256,67,-0.04023968686890441],[115,256,68,-0.03729307575868835],[115,256,69,-0.03575520112571591],[115,256,70,-0.030126676516919818],[115,256,71,-0.02829884674787214],[115,256,72,-0.026107806711080955],[115,256,73,-0.022298728942126464],[115,256,74,-0.02006935539841024],[115,256,75,-0.02009704194547779],[115,256,76,-0.02229928728865417],[115,256,77,-0.017562595106960656],[115,256,78,-0.013593019183245165],[115,256,79,-0.06326655249517849],[115,257,64,-0.06127150900849705],[115,257,65,-0.05046478549322456],[115,257,66,-0.04284997583504762],[115,257,67,-0.04035715141300357],[115,257,68,-0.036594517950450454],[115,257,69,-0.035930830071071077],[115,257,70,-0.029446616469203185],[115,257,71,-0.026249595971723425],[115,257,72,-0.028320245478127754],[115,257,73,-0.024719043406125712],[115,257,74,-0.02211418528072652],[115,257,75,-0.021168060231178593],[115,257,76,-0.021340370770255065],[115,257,77,-0.023190652899188334],[115,257,78,-0.049923973061901376],[115,257,79,-0.10098006197231939],[115,258,64,-0.061656564151477855],[115,258,65,-0.05242327108600903],[115,258,66,-0.04687592887933458],[115,258,67,-0.04449155462657789],[115,258,68,-0.04407467456946456],[115,258,69,-0.03877299429134641],[115,258,70,-0.030890649868524293],[115,258,71,-0.03002218690774139],[115,258,72,-0.02959706186657953],[115,258,73,-0.026841352142043244],[115,258,74,-0.025906227498014113],[115,258,75,-0.024328457228693645],[115,258,76,-0.023248925641287416],[115,258,77,-0.021064126456286678],[115,258,78,-0.060156401528351895],[115,258,79,-0.11966143522217915],[115,259,64,-0.05991947360392127],[115,259,65,-0.051514282716260885],[115,259,66,-0.046402697384786105],[115,259,67,-0.04566900710122267],[115,259,68,-0.042904740601006755],[115,259,69,-0.038340180210845204],[115,259,70,-0.03195955492358826],[115,259,71,-0.028231768650599585],[115,259,72,-0.0274443362504459],[115,259,73,-0.022781084138628407],[115,259,74,-0.024331354673044044],[115,259,75,-0.021707122040938748],[115,259,76,-0.02129876487186269],[115,259,77,-0.020118793264643525],[115,259,78,-0.048555657830910245],[115,259,79,-0.12616383099208972],[115,260,64,-0.1193522788143295],[115,260,65,-0.11277011459775516],[115,260,66,-0.11107688114422029],[115,260,67,-0.11519818171140045],[115,260,68,-0.11235218126499114],[115,260,69,-0.111387171095541],[115,260,70,-0.10822537542671602],[115,260,71,-0.10393214994970693],[115,260,72,-0.10200774166533993],[115,260,73,-0.10047923808359935],[115,260,74,-0.10201367097901651],[115,260,75,-0.10035703428417],[115,260,76,-0.09624972977601906],[115,260,77,-0.09398749990674646],[115,260,78,-0.11311074026045485],[115,260,79,-0.1551079831689768],[115,261,64,-0.10693321206482234],[115,261,65,-0.1079688817721879],[115,261,66,-0.1131503213261963],[115,261,67,-0.11632614737436725],[115,261,68,-0.11612981502385095],[115,261,69,-0.11713418049536503],[115,261,70,-0.1110560999838146],[115,261,71,-0.10499112861685023],[115,261,72,-0.09573135606639244],[115,261,73,-0.08987702705181166],[115,261,74,-0.09021746931668359],[115,261,75,-0.08844623247377113],[115,261,76,-0.08804448320629106],[115,261,77,-0.09178376033628308],[115,261,78,-0.13515596867952745],[115,261,79,-0.1717094247929956],[115,262,64,-0.11066454105066997],[115,262,65,-0.11132346928248762],[115,262,66,-0.11828691880761709],[115,262,67,-0.11784451115554319],[115,262,68,-0.1188851013169809],[115,262,69,-0.11854098960465338],[115,262,70,-0.11151051937941889],[115,262,71,-0.10588096065037003],[115,262,72,-0.09603142165847836],[115,262,73,-0.09333902132915617],[115,262,74,-0.09095413557761658],[115,262,75,-0.08801916534184037],[115,262,76,-0.08677028714512958],[115,262,77,-0.0888331764127562],[115,262,78,-0.15628877810189706],[115,262,79,-0.19985278976827428],[115,263,64,-0.10747424412210196],[115,263,65,-0.10887721617947978],[115,263,66,-0.11250717501807361],[115,263,67,-0.11236729262128799],[115,263,68,-0.11531552142788357],[115,263,69,-0.11473795394828788],[115,263,70,-0.10619848785954913],[115,263,71,-0.10244384146029736],[115,263,72,-0.0954147455319333],[115,263,73,-0.09240705708154107],[115,263,74,-0.09174694996529176],[115,263,75,-0.08988457189939034],[115,263,76,-0.08731269350802165],[115,263,77,-0.08855312463319542],[115,263,78,-0.15154789964748333],[115,263,79,-0.19748008065888628],[115,264,64,-0.10324670511375464],[115,264,65,-0.10763534308878533],[115,264,66,-0.10742914200207532],[115,264,67,-0.10665416470398406],[115,264,68,-0.10957477644631619],[115,264,69,-0.11000602573729276],[115,264,70,-0.10340786439041112],[115,264,71,-0.0986572408516545],[115,264,72,-0.09429564343534064],[115,264,73,-0.09328654070548414],[115,264,74,-0.0904568054682178],[115,264,75,-0.09010155825636382],[115,264,76,-0.0875234090297626],[115,264,77,-0.09304493715406285],[115,264,78,-0.15716432077534617],[115,264,79,-0.19572749570240144],[115,265,64,-0.10983821380081493],[115,265,65,-0.10761030448325523],[115,265,66,-0.09987259997805081],[115,265,67,-0.09528315625160935],[115,265,68,-0.09532180352002097],[115,265,69,-0.09552465417868],[115,265,70,-0.09359223312554946],[115,265,71,-0.09468730154931383],[115,265,72,-0.09535738604088019],[115,265,73,-0.09824743958258444],[115,265,74,-0.10763305443084076],[115,265,75,-0.14852697857664995],[115,265,76,-0.19769553333005108],[115,265,77,-0.2131486052770166],[115,265,78,-0.21448957054858891],[115,265,79,-0.2029407317813437],[115,266,64,-0.11194621567132096],[115,266,65,-0.1081727522681698],[115,266,66,-0.10261582944714985],[115,266,67,-0.09497588614741442],[115,266,68,-0.0937245690101503],[115,266,69,-0.09463837496775973],[115,266,70,-0.09451201931252436],[115,266,71,-0.09690637191772539],[115,266,72,-0.0964369810241263],[115,266,73,-0.09887142920149468],[115,266,74,-0.10085546004592738],[115,266,75,-0.14342619871714768],[115,266,76,-0.1950554797288978],[115,266,77,-0.21195146283434108],[115,266,78,-0.2150100835089221],[115,266,79,-0.2028157464411356],[115,267,64,-0.10931489203275317],[115,267,65,-0.10406819194107617],[115,267,66,-0.09842765991640202],[115,267,67,-0.09297979235063522],[115,267,68,-0.09175211931390877],[115,267,69,-0.0909547940644319],[115,267,70,-0.09092714338087503],[115,267,71,-0.09297679495602569],[115,267,72,-0.09342433342718776],[115,267,73,-0.09771968556342937],[115,267,74,-0.10201356809629752],[115,267,75,-0.14654298155092146],[115,267,76,-0.1984840228040011],[115,267,77,-0.22599311872434272],[115,267,78,-0.22027256093188596],[115,267,79,-0.20702308261540595],[115,268,64,-0.10110823121812983],[115,268,65,-0.09643926763194481],[115,268,66,-0.08707655259877697],[115,268,67,-0.08105074203469165],[115,268,68,-0.07517808048954178],[115,268,69,-0.07403093968014832],[115,268,70,-0.07316424123774594],[115,268,71,-0.07315950024852444],[115,268,72,-0.07589987683544173],[115,268,73,-0.08156231135074428],[115,268,74,-0.084872200329621],[115,268,75,-0.12871459822664424],[115,268,76,-0.17544848005219305],[115,268,77,-0.20553029417015795],[115,268,78,-0.20164470072389187],[115,268,79,-0.18543097320623192],[115,269,64,-0.09653975090886684],[115,269,65,-0.09127919915373164],[115,269,66,-0.08337329171049583],[115,269,67,-0.07761928882679428],[115,269,68,-0.071807290009219],[115,269,69,-0.07030240163138278],[115,269,70,-0.07069640985686815],[115,269,71,-0.06892222473752359],[115,269,72,-0.07234918198039741],[115,269,73,-0.0773932281498906],[115,269,74,-0.08162108862352695],[115,269,75,-0.12551693847687012],[115,269,76,-0.17922906412521955],[115,269,77,-0.20524221957244593],[115,269,78,-0.1994435060612142],[115,269,79,-0.1818737584196507],[115,270,64,-0.09532698007424438],[115,270,65,-0.08970284358970775],[115,270,66,-0.08200781710781342],[115,270,67,-0.07671908611831936],[115,270,68,-0.0733850434946539],[115,270,69,-0.07211278735038061],[115,270,70,-0.0680134660156233],[115,270,71,-0.06695129706621782],[115,270,72,-0.06866218275301053],[115,270,73,-0.07449750495396647],[115,270,74,-0.0797428545860214],[115,270,75,-0.11829498816355362],[115,270,76,-0.17319209159140286],[115,270,77,-0.19380339107310296],[115,270,78,-0.187088945152466],[115,270,79,-0.16922912984239588],[115,271,64,-0.08984682472769866],[115,271,65,-0.08423585372456482],[115,271,66,-0.0759869459258683],[115,271,67,-0.07134593340234663],[115,271,68,-0.06892141974769729],[115,271,69,-0.06573765351028775],[115,271,70,-0.060493827144495964],[115,271,71,-0.06155020074353316],[115,271,72,-0.06497349440544582],[115,271,73,-0.07114242744190165],[115,271,74,-0.07585459787240106],[115,271,75,-0.11503313145653309],[115,271,76,-0.16886502265382525],[115,271,77,-0.19420808848413024],[115,271,78,-0.18146445171684766],[115,271,79,-0.16588627147186868],[115,272,64,-0.08645228614408433],[115,272,65,-0.07868053390579687],[115,272,66,-0.07171221521707691],[115,272,67,-0.06678603490314503],[115,272,68,-0.062371104443112765],[115,272,69,-0.059907650534274555],[115,272,70,-0.05708801848119026],[115,272,71,-0.055607811852450575],[115,272,72,-0.06015627798620725],[115,272,73,-0.06957062696841503],[115,272,74,-0.06904690938694916],[115,272,75,-0.11724391699960399],[115,272,76,-0.1714631377783836],[115,272,77,-0.1932451737003183],[115,272,78,-0.1777379553130251],[115,272,79,-0.16183266251135453],[115,273,64,-0.08564993446054965],[115,273,65,-0.0749336701434318],[115,273,66,-0.06219311103653705],[115,273,67,-0.05480926662176862],[115,273,68,-0.049430281187652594],[115,273,69,-0.0486448617180858],[115,273,70,-0.04880757160283519],[115,273,71,-0.04689446449944518],[115,273,72,-0.05320191860619049],[115,273,73,-0.06240658407430754],[115,273,74,-0.0625403378764377],[115,273,75,-0.07988068271329923],[115,273,76,-0.09171709110779616],[115,273,77,-0.0873607114473953],[115,273,78,-0.07334131345363212],[115,273,79,-0.05951513645510692],[115,274,64,-0.08350731413523056],[115,274,65,-0.07493610984169807],[115,274,66,-0.061221415750398744],[115,274,67,-0.05453747645047649],[115,274,68,-0.04929037309856172],[115,274,69,-0.04784115732697268],[115,274,70,-0.04624815739175911],[115,274,71,-0.04677867806455539],[115,274,72,-0.05158893531850935],[115,274,73,-0.05808757223175669],[115,274,74,-0.06318618630598258],[115,274,75,-0.07907652446407386],[115,274,76,-0.08908338159244783],[115,274,77,-0.08172228734748144],[115,274,78,-0.06724777741913948],[115,274,79,-0.0541721734297706],[115,275,64,-0.08091963738179371],[115,275,65,-0.07423522488427187],[115,275,66,-0.06005401133002001],[115,275,67,-0.05141240231445771],[115,275,68,-0.04703463693149745],[115,275,69,-0.04428122169189534],[115,275,70,-0.044304971476500116],[115,275,71,-0.0468057342892686],[115,275,72,-0.048521679816946245],[115,275,73,-0.055284989338654014],[115,275,74,-0.06033096284272957],[115,275,75,-0.08034305028990116],[115,275,76,-0.09178470739731658],[115,275,77,-0.0819131355907545],[115,275,78,-0.06851173826549867],[115,275,79,-0.056105696983649395],[115,276,64,-0.068161086112051],[115,276,65,-0.061138823952905846],[115,276,66,-0.048535526984380226],[115,276,67,-0.03743309359618181],[115,276,68,-0.031223484771873547],[115,276,69,-0.03179479232633067],[115,276,70,-0.029997681856447245],[115,276,71,-0.032023736881581694],[115,276,72,-0.03442734493993744],[115,276,73,-0.03961628194851872],[115,276,74,-0.04414002960689577],[115,276,75,-0.07611844265749994],[115,276,76,-0.09207792484750209],[115,276,77,-0.08393370341548773],[115,276,78,-0.0708541353035265],[115,276,79,-0.061308535122992114],[115,277,64,-0.057819753908272924],[115,277,65,-0.05622387299207522],[115,277,66,-0.053198204325971624],[115,277,67,-0.04959705409822049],[115,277,68,-0.04254529470131725],[115,277,69,-0.038967521165338304],[115,277,70,-0.03551132372832938],[115,277,71,-0.03365209591359473],[115,277,72,-0.03388796268517586],[115,277,73,-0.0377979162266489],[115,277,74,-0.044436987225987726],[115,277,75,-0.07583985522449811],[115,277,76,-0.08835429605187675],[115,277,77,-0.07893556154270695],[115,277,78,-0.06727389475331824],[115,277,79,-0.05605404863711083],[115,278,64,-0.05835280102294631],[115,278,65,-0.056823778938157626],[115,278,66,-0.055419812149915586],[115,278,67,-0.052885751639881705],[115,278,68,-0.046680035747558905],[115,278,69,-0.04049992725466067],[115,278,70,-0.03315016217563947],[115,278,71,-0.02938051829185727],[115,278,72,-0.029214295269418114],[115,278,73,-0.035069747791756894],[115,278,74,-0.04301171828372772],[115,278,75,-0.07040655934371734],[115,278,76,-0.0800669408843562],[115,278,77,-0.07010016815802794],[115,278,78,-0.059159288570095475],[115,278,79,-0.04618202179314884],[115,279,64,-0.05383492237274583],[115,279,65,-0.053656813943006254],[115,279,66,-0.051842892559514894],[115,279,67,-0.050645089237909266],[115,279,68,-0.04658454885941425],[115,279,69,-0.0393547115316499],[115,279,70,-0.030720896714642454],[115,279,71,-0.02686511214972244],[115,279,72,-0.025309438597521237],[115,279,73,-0.03249837883386657],[115,279,74,-0.043232968296811294],[115,279,75,-0.06741227461726415],[115,279,76,-0.07636132650487948],[115,279,77,-0.06770430230008373],[115,279,78,-0.05348471520656917],[115,279,79,-0.03979117430846557],[115,280,64,-0.04896371335308847],[115,280,65,-0.04947131908205834],[115,280,66,-0.04652970320715937],[115,280,67,-0.04778097494430961],[115,280,68,-0.04158585776785197],[115,280,69,-0.03642515289147785],[115,280,70,-0.030082136825672345],[115,280,71,-0.02666407724599973],[115,280,72,-0.026121716416095148],[115,280,73,-0.03176431966552038],[115,280,74,-0.04049149122640764],[115,280,75,-0.06720482325312434],[115,280,76,-0.07659402930006792],[115,280,77,-0.06498924960459421],[115,280,78,-0.053137513036558115],[115,280,79,-0.03840410392108354],[115,281,64,-0.047216948566578855],[115,281,65,-0.0457273662693517],[115,281,66,-0.04367735005810469],[115,281,67,-0.04532137715199258],[115,281,68,-0.040306190446412246],[115,281,69,-0.03454166532558286],[115,281,70,-0.029379570112426874],[115,281,71,-0.026181460411502155],[115,281,72,-0.025917783329765152],[115,281,73,-0.030764956252269687],[115,281,74,-0.03863025976753552],[115,281,75,-0.07844377671029107],[115,281,76,-0.08340814200952754],[115,281,77,-0.0718477062715148],[115,281,78,-0.059579581965996053],[115,281,79,-0.04530133872584305],[115,282,64,-0.04580091117682027],[115,282,65,-0.046505228692661424],[115,282,66,-0.044188636736702466],[115,282,67,-0.045218417411830775],[115,282,68,-0.040598896310636304],[115,282,69,-0.03372966159986429],[115,282,70,-0.031840014143048614],[115,282,71,-0.028132588321787465],[115,282,72,-0.026687895014651276],[115,282,73,-0.032314241412343014],[115,282,74,-0.0369302075109444],[115,282,75,-0.07373810419459337],[115,282,76,-0.08751104375289542],[115,282,77,-0.07495092286480534],[115,282,78,-0.06151510184712897],[115,282,79,-0.04896291848438175],[115,283,64,-0.044462152939309496],[115,283,65,-0.045749594935600366],[115,283,66,-0.04474886827153303],[115,283,67,-0.04152227561200464],[115,283,68,-0.03531920230654574],[115,283,69,-0.03290238453054986],[115,283,70,-0.031836174902650484],[115,283,71,-0.028432905137901317],[115,283,72,-0.026104345580095216],[115,283,73,-0.030509820971597372],[115,283,74,-0.03416148963485531],[115,283,75,-0.07413568976178465],[115,283,76,-0.08928101857417328],[115,283,77,-0.07676947267067374],[115,283,78,-0.06256854106616574],[115,283,79,-0.05405128606044507],[115,284,64,-0.0635842404783077],[115,284,65,-0.06102149184728701],[115,284,66,-0.05755310181929213],[115,284,67,-0.05353067364879045],[115,284,68,-0.04573693492422972],[115,284,69,-0.04251562073660147],[115,284,70,-0.04304458795723765],[115,284,71,-0.038270351554032654],[115,284,72,-0.03591452571500839],[115,284,73,-0.04080998375882676],[115,284,74,-0.044850511968638145],[115,284,75,-0.07709633079213368],[115,284,76,-0.08757207002089276],[115,284,77,-0.07518033037352143],[115,284,78,-0.06353284525201561],[115,284,79,-0.05280431177912115],[115,285,64,-0.07311281844497948],[115,285,65,-0.06698066027312047],[115,285,66,-0.06267687014317315],[115,285,67,-0.057838915805608584],[115,285,68,-0.05191873840894776],[115,285,69,-0.04988005105132107],[115,285,70,-0.0483227435100379],[115,285,71,-0.041981476205122464],[115,285,72,-0.04128301495255179],[115,285,73,-0.048733080606581394],[115,285,74,-0.05096719016071396],[115,285,75,-0.07722736213297751],[115,285,76,-0.08502764923757541],[115,285,77,-0.07078668190240964],[115,285,78,-0.059925393884126044],[115,285,79,-0.049742490392838984],[115,286,64,-0.07241637430359016],[115,286,65,-0.06798434155368402],[115,286,66,-0.06212144704090782],[115,286,67,-0.05712506518517154],[115,286,68,-0.05082297691271427],[115,286,69,-0.04940482977884793],[115,286,70,-0.0450766660626816],[115,286,71,-0.04162142808245137],[115,286,72,-0.03993341289260609],[115,286,73,-0.04724419921260978],[115,286,74,-0.04693146362137113],[115,286,75,-0.07330912500652746],[115,286,76,-0.08138342284785946],[115,286,77,-0.070713238302053],[115,286,78,-0.06069762656297695],[115,286,79,-0.04956194199072514],[115,287,64,-0.06853667935878767],[115,287,65,-0.06349583644586364],[115,287,66,-0.05926296684110663],[115,287,67,-0.052745453563087644],[115,287,68,-0.04718152032336943],[115,287,69,-0.04737135514221734],[115,287,70,-0.04126662012772601],[115,287,71,-0.03897734208617506],[115,287,72,-0.03777338644697819],[115,287,73,-0.045990154369480424],[115,287,74,-0.04426845890660561],[115,287,75,-0.0700461914998112],[115,287,76,-0.07563906781835833],[115,287,77,-0.06493003231412012],[115,287,78,-0.05636264821720538],[115,287,79,-0.04558810472743238],[115,288,64,-0.06618595482101117],[115,288,65,-0.06024445124067522],[115,288,66,-0.05883944819332412],[115,288,67,-0.05158079511487539],[115,288,68,-0.04239922093424991],[115,288,69,-0.04406274037353362],[115,288,70,-0.04023322522127315],[115,288,71,-0.037072839533350097],[115,288,72,-0.0352361968758751],[115,288,73,-0.04070843890089563],[115,288,74,-0.04098372383256224],[115,288,75,-0.06804122685142955],[115,288,76,-0.0742868492347486],[115,288,77,-0.06213962718927332],[115,288,78,-0.05489005864054908],[115,288,79,-0.04474011662372249],[115,289,64,-0.05429707135625166],[115,289,65,-0.048903504931110585],[115,289,66,-0.04576828398564772],[115,289,67,-0.040002106133386145],[115,289,68,-0.032912951342602303],[115,289,69,-0.030996916597872605],[115,289,70,-0.027314433298150254],[115,289,71,-0.023708387553491764],[115,289,72,-0.020736677983947502],[115,289,73,-0.024358494454305928],[115,289,74,-0.038191368991767206],[115,289,75,-0.08403357089093726],[115,289,76,-0.08081603897967216],[115,289,77,-0.06975234951389839],[115,289,78,-0.05974836255735941],[115,289,79,-0.04706239813643881],[115,290,64,-0.05385867021728468],[115,290,65,-0.049734349891185886],[115,290,66,-0.04444748878316834],[115,290,67,-0.03574042108493172],[115,290,68,-0.03247353963494844],[115,290,69,-0.03025606891293961],[115,290,70,-0.02690736149046548],[115,290,71,-0.023397098845446565],[115,290,72,-0.020630857595996713],[115,290,73,-0.023090455942846477],[115,290,74,-0.029325127957763392],[115,290,75,-0.07254480381497902],[115,290,76,-0.07287300905704686],[115,290,77,-0.06066025734208205],[115,290,78,-0.051909851703619087],[115,290,79,-0.037746920176570636],[115,291,64,-0.05083804833114969],[115,291,65,-0.04688989072734694],[115,291,66,-0.04096049368230423],[115,291,67,-0.031196086957405736],[115,291,68,-0.028048810547827673],[115,291,69,-0.0250839145599178],[115,291,70,-0.022437785934695073],[115,291,71,-0.019932519467352597],[115,291,72,-0.018285038234277566],[115,291,73,-0.02088643596835564],[115,291,74,-0.02979656678389716],[115,291,75,-0.08643705052395526],[115,291,76,-0.07469637289211459],[115,291,77,-0.061523124546357943],[115,291,78,-0.05545266126157897],[115,291,79,-0.039598737301944104],[115,292,64,-0.03342576029442169],[115,292,65,-0.03397120571993747],[115,292,66,-0.03270725024399942],[115,292,67,-0.027131157019348748],[115,292,68,-0.026570370098523283],[115,292,69,-0.026797795930070728],[115,292,70,-0.025091140209008267],[115,292,71,-0.02247517567661613],[115,292,72,-0.023181078768521456],[115,292,73,-0.02606448299660788],[115,292,74,-0.03455152667507789],[115,292,75,-0.07932224637409699],[115,292,76,-0.06913145594390113],[115,292,77,-0.055964747184371055],[115,292,78,-0.047692419954279114],[115,292,79,-0.035610382839574406],[115,293,64,-0.03209768164515805],[115,293,65,-0.0308237272680019],[115,293,66,-0.030029686118827885],[115,293,67,-0.02778510675348589],[115,293,68,-0.02637939163628407],[115,293,69,-0.02659570230799177],[115,293,70,-0.022913090416844327],[115,293,71,-0.018256494630457677],[115,293,72,-0.019577821305133823],[115,293,73,-0.02415232522983144],[115,293,74,-0.0348693412360872],[115,293,75,-0.07457453159013516],[115,293,76,-0.06706287213602749],[115,293,77,-0.0532834137422242],[115,293,78,-0.04202186682124759],[115,293,79,-0.03080837090499694],[115,294,64,-0.03045858278350444],[115,294,65,-0.027852344441337287],[115,294,66,-0.028193525853157778],[115,294,67,-0.027012663107270386],[115,294,68,-0.026496970253052504],[115,294,69,-0.02560054850983033],[115,294,70,-0.02028806207278698],[115,294,71,-0.015228410414720256],[115,294,72,-0.01481971054300539],[115,294,73,-0.02099877849156888],[115,294,74,-0.032265088328773533],[115,294,75,-0.07484111414635895],[115,294,76,-0.07677247589354666],[115,294,77,-0.06433194669296274],[115,294,78,-0.050715845715574415],[115,294,79,-0.039226710598094516],[115,295,64,-0.03039512232982776],[115,295,65,-0.024608344099601845],[115,295,66,-0.025870768930042837],[115,295,67,-0.027303528082298634],[115,295,68,-0.024554593871385158],[115,295,69,-0.021153900559122925],[115,295,70,-0.01666170473898569],[115,295,71,-0.013172290553265492],[115,295,72,-0.013706200849272585],[115,295,73,-0.018730967278047364],[115,295,74,-0.02219356629968095],[115,295,75,-0.025411764637684124],[115,295,76,-0.058298403159730124],[115,295,77,-0.06292620063717988],[115,295,78,-0.047900612450770375],[115,295,79,-0.03176714622328691],[115,296,64,-0.029666338711484802],[115,296,65,-0.024092152363000288],[115,296,66,-0.023077844624267096],[115,296,67,-0.027510179517795164],[115,296,68,-0.021059969631776643],[115,296,69,-0.020641877615147353],[115,296,70,-0.014927565821920313],[115,296,71,-0.012129393160202506],[115,296,72,-0.01056218681934011],[115,296,73,-0.015185640463906164],[115,296,74,-0.021598491859396357],[115,296,75,-0.021240283168477626],[115,296,76,-0.05375031982154494],[115,296,77,-0.06078918568275257],[115,296,78,-0.04832671377582032],[115,296,79,-0.02916468600482891],[115,297,64,-0.027662060307796763],[115,297,65,-0.024308391678963426],[115,297,66,-0.029107546914695165],[115,297,67,-0.03148604753519096],[115,297,68,-0.02776990555803644],[115,297,69,-0.02793394659697855],[115,297,70,-0.023091970212479114],[115,297,71,-0.016190987046286534],[115,297,72,-0.007905232523544331],[115,297,73,-0.006818447205845762],[115,297,74,-0.01272878491157367],[115,297,75,-0.019052595480209662],[115,297,76,-0.06251718728475705],[115,297,77,-0.06744479693165259],[115,297,78,-0.05452870179661479],[115,297,79,-0.034979994076853316],[115,298,64,-0.02653281592790213],[115,298,65,-0.025246447761088142],[115,298,66,-0.028225353143283463],[115,298,67,-0.029846087498594652],[115,298,68,-0.026362372502760627],[115,298,69,-0.02580442045836774],[115,298,70,-0.02233805893742287],[115,298,71,-0.016814078698219076],[115,298,72,-0.008522235570213227],[115,298,73,-0.007913352139397256],[115,298,74,-0.00957415786044541],[115,298,75,-0.010849592100106824],[115,298,76,-0.03492555583236248],[115,298,77,-0.06677275202141852],[115,298,78,-0.05172628794732054],[115,298,79,-0.03465678057069005],[115,299,64,-0.02640949137297459],[115,299,65,-0.023810444388023322],[115,299,66,-0.02547356012673177],[115,299,67,-0.024366833873735227],[115,299,68,-0.0196958969982539],[115,299,69,-0.02237543114083769],[115,299,70,-0.020872934286351258],[115,299,71,-0.014231120692308585],[115,299,72,-0.008676388842932647],[115,299,73,-0.007243590451919149],[115,299,74,-0.007861474837450894],[115,299,75,-0.008801163629188799],[115,299,76,-0.028389350052280427],[115,299,77,-0.06775050720548492],[115,299,78,-0.053977872225174944],[115,299,79,-0.0390711705027294],[115,300,64,-0.027132611965453357],[115,300,65,-0.020859746875977817],[115,300,66,-0.013322088179494346],[115,300,67,-0.010532343748911446],[115,300,68,-0.003997964778795132],[115,300,69,-0.0036720609552328143],[115,300,70,-0.006811296672976447],[115,300,71,-0.006411417558116597],[115,300,72,-0.005669322901585186],[115,300,73,-0.008163629594508587],[115,300,74,-0.01109633852696841],[115,300,75,-0.008195861582964009],[115,300,76,-0.003564001573031203],[115,300,77,0.003017702125843638],[115,300,78,0.0035059144962855116],[115,300,79,-0.006608337299214678],[115,301,64,-0.026659536364758513],[115,301,65,-0.017950639118950812],[115,301,66,-0.010873885427237662],[115,301,67,-0.007956512861031648],[115,301,68,-0.001154347809027928],[115,301,69,-0.0012767922837181173],[115,301,70,-0.0031124206906559815],[115,301,71,-0.0026606271033413897],[115,301,72,-0.0015801775114614863],[115,301,73,-0.004829671399674995],[115,301,74,-0.00771479757054408],[115,301,75,-0.004090024139231929],[115,301,76,-5.714071483036015E-4],[115,301,77,0.0027972410932826652],[115,301,78,0.005426602190806262],[115,301,79,-0.003024643108092759],[115,302,64,-0.022018073385034226],[115,302,65,-0.01760944916087058],[115,302,66,-0.006247858125085506],[115,302,67,3.0099172101533123E-5],[115,302,68,0.002937046094691545],[115,302,69,0.0036761734804768853],[115,302,70,0.004641220309394067],[115,302,71,0.005484481239883196],[115,302,72,0.005811478415461618],[115,302,73,0.0017141341308951757],[115,302,74,7.253927109217712E-4],[115,302,75,0.004291175124883792],[115,302,76,0.008550216043934064],[115,302,77,0.008712450779184644],[115,302,78,0.011880424636104489],[115,302,79,0.002822909742975853],[115,303,64,-0.020265782330492713],[115,303,65,-0.013628817372560095],[115,303,66,-0.004431527228598298],[115,303,67,0.002897588731793882],[115,303,68,0.004863645514866635],[115,303,69,0.00565655594027549],[115,303,70,0.009659378514834074],[115,303,71,0.008954689245406142],[115,303,72,0.00899625722002624],[115,303,73,0.0072815762488925295],[115,303,74,0.003941955578949663],[115,303,75,0.005207166896046736],[115,303,76,0.010290119873091516],[115,303,77,0.011356933522174636],[115,303,78,0.01415535686207009],[115,303,79,0.006294785234515082],[115,304,64,-0.018515427774472543],[115,304,65,-0.012086724375491312],[115,304,66,-0.003973776383057501],[115,304,67,0.0032150444782111653],[115,304,68,0.00816082011589385],[115,304,69,0.007896333602043795],[115,304,70,0.014376020679074078],[115,304,71,0.014791701466565416],[115,304,72,0.01188112231557871],[115,304,73,0.008201106373452824],[115,304,74,0.005952526173936767],[115,304,75,0.0061940952722498305],[115,304,76,0.011016706097330978],[115,304,77,0.01243284522390721],[115,304,78,0.01730065019411875],[115,304,79,0.01396437662477737],[115,305,64,-0.019970860218684536],[115,305,65,-0.009960017922911096],[115,305,66,-0.004784052957467755],[115,305,67,0.0034114190617471896],[115,305,68,0.009543930060762568],[115,305,69,0.010919079189139147],[115,305,70,0.017535924601148403],[115,305,71,0.01728964617656578],[115,305,72,0.01492666100245027],[115,305,73,0.011471910326612975],[115,305,74,0.009076649598703343],[115,305,75,0.009797961407089897],[115,305,76,0.012359920233048605],[115,305,77,0.01388932094042157],[115,305,78,0.02096621269059379],[115,305,79,0.020050309600438087],[115,306,64,-0.02064859056939297],[115,306,65,-0.013184765032285925],[115,306,66,-0.0064462287844739286],[115,306,67,0.0017138698742051872],[115,306,68,0.00674986968237401],[115,306,69,0.010087561614591456],[115,306,70,0.018145141793877412],[115,306,71,0.016293265272184707],[115,306,72,0.015017005747217496],[115,306,73,0.012527641104656859],[115,306,74,0.011503563867489172],[115,306,75,0.010917144014422703],[115,306,76,0.011949499309587719],[115,306,77,0.016858528153731817],[115,306,78,0.02437592926477354],[115,306,79,0.029586258105286034],[115,307,64,-0.02174665629855814],[115,307,65,-0.014251597556146009],[115,307,66,-0.0077926813517854715],[115,307,67,0.003184696481576682],[115,307,68,0.00765410277543721],[115,307,69,0.013073269076479252],[115,307,70,0.019819260486759832],[115,307,71,0.017037302073595967],[115,307,72,0.013745235253732058],[115,307,73,0.012945832906947105],[115,307,74,0.00993286968305894],[115,307,75,0.012592985234651966],[115,307,76,0.01590192711563017],[115,307,77,0.0230909947924981],[115,307,78,0.028556959434343193],[115,307,79,0.03194758094193718],[115,308,64,-0.010404196425081266],[115,308,65,-0.004669594317410181],[115,308,66,0.002878673984800406],[115,308,67,0.012332390131883197],[115,308,68,0.01772451904000781],[115,308,69,0.02169036604900529],[115,308,70,0.027160661186251184],[115,308,71,0.02311780044292988],[115,308,72,0.02119677792119075],[115,308,73,0.021668825439691758],[115,308,74,0.01910542510162802],[115,308,75,0.02305802193060348],[115,308,76,0.026345152073743036],[115,308,77,0.03205253142008399],[115,308,78,0.035034584883324296],[115,308,79,0.02062178259002807],[115,309,64,-0.010727546409958225],[115,309,65,-0.004736081828319014],[115,309,66,0.004878432778582895],[115,309,67,0.013737185046474837],[115,309,68,0.01854095109639413],[115,309,69,0.024243904771913224],[115,309,70,0.02793507833150269],[115,309,71,0.024724562476817563],[115,309,72,0.024153263621297327],[115,309,73,0.023504484704218537],[115,309,74,0.020334863516385332],[115,309,75,0.024643855449998142],[115,309,76,0.028828147314643823],[115,309,77,0.033233021896877726],[115,309,78,0.035827114270939237],[115,309,79,0.03328015316158268],[115,310,64,-0.0061364064029432175],[115,310,65,0.001274740328131574],[115,310,66,0.01014324830431644],[115,310,67,0.01847558988608962],[115,310,68,0.026563942106023503],[115,310,69,0.033162429665731616],[115,310,70,0.03750344819444432],[115,310,71,0.03402766152319768],[115,310,72,0.03275243030557913],[115,310,73,0.03198807303220977],[115,310,74,0.029832224631928667],[115,310,75,0.034338323619498096],[115,310,76,0.03751618061379884],[115,310,77,0.042667106695378376],[115,310,78,0.045881031858638746],[115,310,79,0.041550778106915744],[115,311,64,-0.003984604616461315],[115,311,65,0.001859782181540398],[115,311,66,0.01182070740263716],[115,311,67,0.02052550047314003],[115,311,68,0.031102458440593117],[115,311,69,0.03727896388099726],[115,311,70,0.03802499090929935],[115,311,71,0.03631141728493607],[115,311,72,0.03476229963625971],[115,311,73,0.03414187034903442],[115,311,74,0.03117496709391665],[115,311,75,0.03444018428512011],[115,311,76,0.038263263257292415],[115,311,77,0.04269110012415088],[115,311,78,0.045518611961650524],[115,311,79,0.042119893569173054],[115,312,64,0.007663120294187281],[115,312,65,0.009705211117737852],[115,312,66,0.015913057745709183],[115,312,67,0.023578952265463526],[115,312,68,0.03359416608223839],[115,312,69,0.04208335528456687],[115,312,70,0.03917279173305058],[115,312,71,0.03868156296043522],[115,312,72,0.038940682053475395],[115,312,73,0.037624918043587544],[115,312,74,0.03499426584327493],[115,312,75,0.036073493186974906],[115,312,76,0.03846710646689687],[115,312,77,0.036958499823272775],[115,312,78,0.03836946047786673],[115,312,79,0.0397871920405265],[115,313,64,0.0076486429109172555],[115,313,65,0.009869183115689184],[115,313,66,0.01564473201168487],[115,313,67,0.02240299421804197],[115,313,68,0.03315919783541664],[115,313,69,0.04193249109897018],[115,313,70,0.04031570525372864],[115,313,71,0.039453771601020315],[115,313,72,0.03991160085381269],[115,313,73,0.03915914767459486],[115,313,74,0.04061114452584663],[115,313,75,0.040761678315953676],[115,313,76,0.04118849739663924],[115,313,77,0.0400538965255957],[115,313,78,0.03987001667228099],[115,313,79,0.041127490802175086],[115,314,64,7.012032851301253E-4],[115,314,65,0.0055236040879014375],[115,314,66,0.011418575116434834],[115,314,67,0.01900402781943404],[115,314,68,0.03140227687877363],[115,314,69,0.04046250486688291],[115,314,70,0.04108040289640193],[115,314,71,0.03934890301647373],[115,314,72,0.03799836552697604],[115,314,73,0.0385030751831168],[115,314,74,0.04164096606623653],[115,314,75,0.04274675598101642],[115,314,76,0.043697748289100946],[115,314,77,0.04186365738006806],[115,314,78,0.04207501987928068],[115,314,79,0.04179477868885155],[115,315,64,-0.0013971663338876034],[115,315,65,0.004078610268591812],[115,315,66,0.010903265015466665],[115,315,67,0.021768813836482978],[115,315,68,0.032447173655184264],[115,315,69,0.039660795057460535],[115,315,70,0.04283755179968381],[115,315,71,0.041607537605963696],[115,315,72,0.038038790197189254],[115,315,73,0.03942820947506254],[115,315,74,0.04217355921694513],[115,315,75,0.045735455512693174],[115,315,76,0.044113302862545445],[115,315,77,0.04224361124198475],[115,315,78,0.044529279341484915],[115,315,79,0.041561607247815845],[115,316,64,-0.008381039023298661],[115,316,65,-0.00171168381176795],[115,316,66,0.006052902034286892],[115,316,67,0.017819918945017887],[115,316,68,0.031669312203132],[115,316,69,0.040533743971574],[115,316,70,0.04642443312719745],[115,316,71,0.04389081229218428],[115,316,72,0.04159081482208207],[115,316,73,0.04616895307883315],[115,316,74,0.04602294903830757],[115,316,75,0.04940519893382231],[115,316,76,0.04856628356421887],[115,316,77,0.05096737764665342],[115,316,78,0.05251665077169026],[115,316,79,0.05245254850202531],[115,317,64,-0.01020262031937133],[115,317,65,7.541362628862014E-4],[115,317,66,0.006355285273425118],[115,317,67,0.018940242560336468],[115,317,68,0.03298387528312283],[115,317,69,0.03967104415571365],[115,317,70,0.04579016650006433],[115,317,71,0.04435501342459677],[115,317,72,0.04266981456623477],[115,317,73,0.04763063035645013],[115,317,74,0.04918127761042301],[115,317,75,0.049819740052833],[115,317,76,0.050412006980868784],[115,317,77,0.053883174958049465],[115,317,78,0.05412151875317084],[115,317,79,0.051712053390296706],[115,318,64,-0.004107044195061138],[115,318,65,0.008495196081066692],[115,318,66,0.015940421569796207],[115,318,67,0.030210223209718168],[115,318,68,0.042469129653789156],[115,318,69,0.050075774967638834],[115,318,70,0.05463993053490766],[115,318,71,0.05449784195440084],[115,318,72,0.05431554942249987],[115,318,73,0.05622660871449456],[115,318,74,0.05858460869390773],[115,318,75,0.05897554528332498],[115,318,76,0.06220270161567522],[115,318,77,0.06362436842418201],[115,318,78,0.06294583995993418],[115,318,79,0.06183313570054922],[115,319,64,-0.005709003673636068],[115,319,65,0.007481143046569785],[115,319,66,0.019262267935341942],[115,319,67,0.034257343861814546],[115,319,68,0.04240731716779085],[115,319,69,0.05094108153184464],[115,319,70,0.05673061037573224],[115,319,71,0.05682892167677671],[115,319,72,0.0573283284303476],[115,319,73,0.057528136626762566],[115,319,74,0.05937556994419892],[115,319,75,0.06014722892346708],[115,319,76,0.06439615954663512],[115,319,77,0.06522412707650545],[115,319,78,0.06305491589580804],[115,319,79,0.06948904531593449],[116,-64,64,-0.4750946422386041],[116,-64,65,-0.4725785192195429],[116,-64,66,-0.46604841303473654],[116,-64,67,-0.45584471327422615],[116,-64,68,-0.4498537856437502],[116,-64,69,-0.4397414123429857],[116,-64,70,-0.42815767828890705],[116,-64,71,-0.41822977141065565],[116,-64,72,-0.4166336244909381],[116,-64,73,-0.4084558204425491],[116,-64,74,-0.4032965698996296],[116,-64,75,-0.403174943013006],[116,-64,76,-0.4022156458469856],[116,-64,77,-0.3978780575133256],[116,-64,78,-0.3916025858820512],[116,-64,79,-0.3860396436235161],[116,-63,64,-0.4797563037632087],[116,-63,65,-0.47382249197281845],[116,-63,66,-0.46717118375777045],[116,-63,67,-0.45764807912463223],[116,-63,68,-0.44881790837317465],[116,-63,69,-0.43848563251823947],[116,-63,70,-0.4264039410662986],[116,-63,71,-0.4192605769676424],[116,-63,72,-0.41357580862872384],[116,-63,73,-0.40656971353034],[116,-63,74,-0.403832246066863],[116,-63,75,-0.4040005314330428],[116,-63,76,-0.40033353218387147],[116,-63,77,-0.3941999515688101],[116,-63,78,-0.3850620269263227],[116,-63,79,-0.3796455660165085],[116,-62,64,-0.4777931517124761],[116,-62,65,-0.47202965013624976],[116,-62,66,-0.4622610498840718],[116,-62,67,-0.4554626900042682],[116,-62,68,-0.4447799572157078],[116,-62,69,-0.4341129926710442],[116,-62,70,-0.42248599866521264],[116,-62,71,-0.41776202878288005],[116,-62,72,-0.4102097624567329],[116,-62,73,-0.4051691857505808],[116,-62,74,-0.40236469074031045],[116,-62,75,-0.4020809561955242],[116,-62,76,-0.39519507339029825],[116,-62,77,-0.39219412361065736],[116,-62,78,-0.38318057148855705],[116,-62,79,-0.37893268318745554],[116,-61,64,-0.4817500829705304],[116,-61,65,-0.4747172930238698],[116,-61,66,-0.4652936170670325],[116,-61,67,-0.45876518029706204],[116,-61,68,-0.4484486497812019],[116,-61,69,-0.4369214659195966],[116,-61,70,-0.4258059229724108],[116,-61,71,-0.4194003398218644],[116,-61,72,-0.41077025555893965],[116,-61,73,-0.4074016460331573],[116,-61,74,-0.40541145159401426],[116,-61,75,-0.4020358472440575],[116,-61,76,-0.39459890479909554],[116,-61,77,-0.392926230912691],[116,-61,78,-0.3861579374147226],[116,-61,79,-0.38108232509706463],[116,-60,64,-0.4852952889941769],[116,-60,65,-0.47588667040696275],[116,-60,66,-0.4662111397493229],[116,-60,67,-0.4590867432600989],[116,-60,68,-0.4500011763124955],[116,-60,69,-0.4405600343665928],[116,-60,70,-0.42766071967043434],[116,-60,71,-0.4200301535916568],[116,-60,72,-0.4117382387212921],[116,-60,73,-0.40642635183821973],[116,-60,74,-0.4037185449017936],[116,-60,75,-0.3993975562967541],[116,-60,76,-0.3923307403465038],[116,-60,77,-0.39269907555319394],[116,-60,78,-0.3845259110782245],[116,-60,79,-0.38159379765028645],[116,-59,64,-0.4715108486107674],[116,-59,65,-0.46511393138609125],[116,-59,66,-0.4572248753956315],[116,-59,67,-0.4510568237532911],[116,-59,68,-0.44467458807038507],[116,-59,69,-0.43465750370022593],[116,-59,70,-0.41885000923152316],[116,-59,71,-0.41330481532458996],[116,-59,72,-0.40737330532474914],[116,-59,73,-0.3987564274431701],[116,-59,74,-0.39500844087324],[116,-59,75,-0.3931715695546917],[116,-59,76,-0.3900118911073329],[116,-59,77,-0.3909198050517356],[116,-59,78,-0.3895062266439853],[116,-59,79,-0.39011651338647696],[116,-58,64,-0.46876784756090784],[116,-58,65,-0.46418753359992543],[116,-58,66,-0.4579792858030482],[116,-58,67,-0.4501225912316595],[116,-58,68,-0.4427820405669535],[116,-58,69,-0.43160631717327436],[116,-58,70,-0.4164081573285602],[116,-58,71,-0.4107710186882847],[116,-58,72,-0.40527797788598424],[116,-58,73,-0.396071692869957],[116,-58,74,-0.39028744005403565],[116,-58,75,-0.39161215539022465],[116,-58,76,-0.3896733835804284],[116,-58,77,-0.38875714681349244],[116,-58,78,-0.3889219990115825],[116,-58,79,-0.3874135547633828],[116,-57,64,-0.4754819215327632],[116,-57,65,-0.4706275067585782],[116,-57,66,-0.46291278639537625],[116,-57,67,-0.45449767851290773],[116,-57,68,-0.44772197069163566],[116,-57,69,-0.4342883969851068],[116,-57,70,-0.41836446649371534],[116,-57,71,-0.41326403547791546],[116,-57,72,-0.4070948728519267],[116,-57,73,-0.39920039345996194],[116,-57,74,-0.3921608588211745],[116,-57,75,-0.39051502245949476],[116,-57,76,-0.39096640352278816],[116,-57,77,-0.3892797472880695],[116,-57,78,-0.38889649791226494],[116,-57,79,-0.38861243882330926],[116,-56,64,-0.47546133158147386],[116,-56,65,-0.4707665199852437],[116,-56,66,-0.46157220008366084],[116,-56,67,-0.45372433269766793],[116,-56,68,-0.4484392270076889],[116,-56,69,-0.4353427302238335],[116,-56,70,-0.41977910266987417],[116,-56,71,-0.4130583628627919],[116,-56,72,-0.4072300929046755],[116,-56,73,-0.39898873888934633],[116,-56,74,-0.3900791667769956],[116,-56,75,-0.388174633785373],[116,-56,76,-0.38683625454042136],[116,-56,77,-0.38548392122810754],[116,-56,78,-0.3843515663152859],[116,-56,79,-0.38362818148689415],[116,-55,64,-0.4763256386501177],[116,-55,65,-0.4706671113982752],[116,-55,66,-0.4619153748446068],[116,-55,67,-0.45279302921486586],[116,-55,68,-0.4482780304990948],[116,-55,69,-0.43485078549678435],[116,-55,70,-0.42036161338387845],[116,-55,71,-0.41146317688766487],[116,-55,72,-0.4051717664876717],[116,-55,73,-0.39876455897865015],[116,-55,74,-0.38818403489056696],[116,-55,75,-0.38669198101381586],[116,-55,76,-0.3819608777426729],[116,-55,77,-0.3795912949186584],[116,-55,78,-0.3793004463586374],[116,-55,79,-0.37928381335016803],[116,-54,64,-0.4735213250499711],[116,-54,65,-0.471429464712123],[116,-54,66,-0.46192049300283344],[116,-54,67,-0.4565107492209661],[116,-54,68,-0.4485984411464037],[116,-54,69,-0.4373256208879098],[116,-54,70,-0.42106142148974635],[116,-54,71,-0.4097355115021016],[116,-54,72,-0.40481990186460315],[116,-54,73,-0.3979088620852388],[116,-54,74,-0.3885579684488649],[116,-54,75,-0.38509324216708235],[116,-54,76,-0.37957290381974895],[116,-54,77,-0.37484349577775933],[116,-54,78,-0.3745458664419272],[116,-54,79,-0.37455083690558344],[116,-53,64,-0.42066296366208916],[116,-53,65,-0.47508293330689116],[116,-53,66,-0.4684799050206796],[116,-53,67,-0.46252371249334834],[116,-53,68,-0.4569474328515164],[116,-53,69,-0.44335676349066894],[116,-53,70,-0.42502543768242423],[116,-53,71,-0.4126519443868675],[116,-53,72,-0.4064745793145115],[116,-53,73,-0.4025477371690569],[116,-53,74,-0.392824838316818],[116,-53,75,-0.3876787453530576],[116,-53,76,-0.37910318373721935],[116,-53,77,-0.37508120866844363],[116,-53,78,-0.3745082245951351],[116,-53,79,-0.3750017632942361],[116,-52,64,-0.3927592939849126],[116,-52,65,-0.4783327002870089],[116,-52,66,-0.472538163367891],[116,-52,67,-0.4677410999720827],[116,-52,68,-0.45854702548478565],[116,-52,69,-0.4453042318592722],[116,-52,70,-0.4280290118838636],[116,-52,71,-0.41557786688138476],[116,-52,72,-0.406912816209946],[116,-52,73,-0.401403200964169],[116,-52,74,-0.3938975676358986],[116,-52,75,-0.385657863981757],[116,-52,76,-0.3758940507881884],[116,-52,77,-0.3747163726663849],[116,-52,78,-0.374991894224843],[116,-52,79,-0.3738238594985455],[116,-51,64,-0.4217171239768652],[116,-51,65,-0.49301132703614536],[116,-51,66,-0.49471472188558063],[116,-51,67,-0.49242641247507574],[116,-51,68,-0.4826419733724411],[116,-51,69,-0.4714796993059568],[116,-51,70,-0.4560438811350892],[116,-51,71,-0.4390822880813826],[116,-51,72,-0.428918147561816],[116,-51,73,-0.4223383013219069],[116,-51,74,-0.4134849532522926],[116,-51,75,-0.40288485175824645],[116,-51,76,-0.39145244170339155],[116,-51,77,-0.38339531338298716],[116,-51,78,-0.3754348894495888],[116,-51,79,-0.36628553507881084],[116,-50,64,-0.3723072485554967],[116,-50,65,-0.49113968356857374],[116,-50,66,-0.4940035337439931],[116,-50,67,-0.4888439566111956],[116,-50,68,-0.4789953110680155],[116,-50,69,-0.468869775855133],[116,-50,70,-0.45545401104008887],[116,-50,71,-0.4395644596426983],[116,-50,72,-0.4267102629506232],[116,-50,73,-0.41912109196861447],[116,-50,74,-0.4097129181812659],[116,-50,75,-0.3966338104594306],[116,-50,76,-0.38838785607784604],[116,-50,77,-0.3817050367951288],[116,-50,78,-0.3739712394875343],[116,-50,79,-0.3640494400631553],[116,-49,64,-0.3602832328190192],[116,-49,65,-0.48560451750778416],[116,-49,66,-0.4979970916941223],[116,-49,67,-0.4918991608462364],[116,-49,68,-0.4814019159928423],[116,-49,69,-0.4712352104279978],[116,-49,70,-0.4572792290514012],[116,-49,71,-0.4445675731978822],[116,-49,72,-0.42926838227308295],[116,-49,73,-0.42017677923797503],[116,-49,74,-0.40989463868281567],[116,-49,75,-0.3978439985985279],[116,-49,76,-0.39098112575721156],[116,-49,77,-0.38196051088990635],[116,-49,78,-0.3747797897311306],[116,-49,79,-0.36203056894097424],[116,-48,64,-0.331742861996504],[116,-48,65,-0.4498792557161578],[116,-48,66,-0.4952946405789165],[116,-48,67,-0.4879617158339197],[116,-48,68,-0.4770675273885654],[116,-48,69,-0.467581386068312],[116,-48,70,-0.453990848639957],[116,-48,71,-0.4419097487328335],[116,-48,72,-0.4280451864462482],[116,-48,73,-0.41647837874288035],[116,-48,74,-0.40446905290387886],[116,-48,75,-0.39534832760559674],[116,-48,76,-0.38922260810491105],[116,-48,77,-0.379355375378364],[116,-48,78,-0.37101138163864866],[116,-48,79,-0.3594910059170127],[116,-47,64,-0.32966087414142714],[116,-47,65,-0.4273933181700983],[116,-47,66,-0.4864678316349829],[116,-47,67,-0.4780347639013552],[116,-47,68,-0.46433675154224474],[116,-47,69,-0.4514338748423356],[116,-47,70,-0.4380716944079621],[116,-47,71,-0.4266032262740538],[116,-47,72,-0.4155683304536586],[116,-47,73,-0.40219663135291933],[116,-47,74,-0.39174570427211974],[116,-47,75,-0.38471407278778513],[116,-47,76,-0.37980606485333657],[116,-47,77,-0.3699893420986754],[116,-47,78,-0.36481455491901393],[116,-47,79,-0.3555826313670117],[116,-46,64,-0.40429469058213807],[116,-46,65,-0.4838927699634884],[116,-46,66,-0.4836237937660386],[116,-46,67,-0.47524117396342824],[116,-46,68,-0.46138366965749433],[116,-46,69,-0.4480360219394277],[116,-46,70,-0.433864853201745],[116,-46,71,-0.42306909551292854],[116,-46,72,-0.4144410063740137],[116,-46,73,-0.4000403289725153],[116,-46,74,-0.388372337059666],[116,-46,75,-0.3810771302814464],[116,-46,76,-0.37674682090595984],[116,-46,77,-0.3658291649677705],[116,-46,78,-0.35974449460451724],[116,-46,79,-0.3506827439692245],[116,-45,64,-0.3881963939200662],[116,-45,65,-0.47324978257276784],[116,-45,66,-0.484419302259179],[116,-45,67,-0.4750381708565312],[116,-45,68,-0.4636241362740359],[116,-45,69,-0.44838603874466415],[116,-45,70,-0.4334487755660163],[116,-45,71,-0.42287416162931546],[116,-45,72,-0.41713989730554],[116,-45,73,-0.4034015103648152],[116,-45,74,-0.3910833422819888],[116,-45,75,-0.38509129168202394],[116,-45,76,-0.37803683652162207],[116,-45,77,-0.3669756509061158],[116,-45,78,-0.35879704787572564],[116,-45,79,-0.3491634897449296],[116,-44,64,-0.27039908114753],[116,-44,65,-0.41157412441693636],[116,-44,66,-0.4601523592739576],[116,-44,67,-0.450885128868173],[116,-44,68,-0.442232220591783],[116,-44,69,-0.4306252137406068],[116,-44,70,-0.41939278347278747],[116,-44,71,-0.4106221316595777],[116,-44,72,-0.40349326826734516],[116,-44,73,-0.3930353801065163],[116,-44,74,-0.38057854387079576],[116,-44,75,-0.37383734440073046],[116,-44,76,-0.3645079909748781],[116,-44,77,-0.35311129082278736],[116,-44,78,-0.3455287791081785],[116,-44,79,-0.33700061059184994],[116,-43,64,-0.3358938221673757],[116,-43,65,-0.4443435828957015],[116,-43,66,-0.4427434619714332],[116,-43,67,-0.43606111012228155],[116,-43,68,-0.42904404934902696],[116,-43,69,-0.41849914724472914],[116,-43,70,-0.4089797007790258],[116,-43,71,-0.40090019989197545],[116,-43,72,-0.39377609071836256],[116,-43,73,-0.38365321207114533],[116,-43,74,-0.3703910150835083],[116,-43,75,-0.36341918558722336],[116,-43,76,-0.3552077719295105],[116,-43,77,-0.3449534019996247],[116,-43,78,-0.3399086025089302],[116,-43,79,-0.3321173630611166],[116,-42,64,-0.30987497187835683],[116,-42,65,-0.4418748531476201],[116,-42,66,-0.43987142404996005],[116,-42,67,-0.4328648532192638],[116,-42,68,-0.4260637060222512],[116,-42,69,-0.4168511989059585],[116,-42,70,-0.40814817722584007],[116,-42,71,-0.4006479423564688],[116,-42,72,-0.39354234458998577],[116,-42,73,-0.38329210616963694],[116,-42,74,-0.37016106150131695],[116,-42,75,-0.36296649347194176],[116,-42,76,-0.3540414370219012],[116,-42,77,-0.3433827332600711],[116,-42,78,-0.33669089390604984],[116,-42,79,-0.32972238061275766],[116,-41,64,-0.2677822904089522],[116,-41,65,-0.4454562366916499],[116,-41,66,-0.4413440118652996],[116,-41,67,-0.43444024046823204],[116,-41,68,-0.42850502213929026],[116,-41,69,-0.42052359824646857],[116,-41,70,-0.414354866688318],[116,-41,71,-0.4076059801413826],[116,-41,72,-0.39947997133170554],[116,-41,73,-0.38728660724515784],[116,-41,74,-0.3756397565690135],[116,-41,75,-0.36562694469482293],[116,-41,76,-0.35609849704432167],[116,-41,77,-0.34658042161509534],[116,-41,78,-0.3351609490585731],[116,-41,79,-0.3298119904314737],[116,-40,64,-0.2573790899456084],[116,-40,65,-0.4382134387430426],[116,-40,66,-0.4340060382059673],[116,-40,67,-0.4308617628798441],[116,-40,68,-0.4257149585823594],[116,-40,69,-0.41904564011765644],[116,-40,70,-0.41329063112514386],[116,-40,71,-0.40605504636768586],[116,-40,72,-0.39881707061421523],[116,-40,73,-0.38652617238251985],[116,-40,74,-0.37574374515077763],[116,-40,75,-0.36477016819023267],[116,-40,76,-0.353148906585551],[116,-40,77,-0.34273178347230715],[116,-40,78,-0.33146106203302683],[116,-40,79,-0.32499870476884263],[116,-39,64,-0.2069016735516979],[116,-39,65,-0.40671447926596294],[116,-39,66,-0.4240152605784936],[116,-39,67,-0.42383669559585346],[116,-39,68,-0.4218731134988592],[116,-39,69,-0.4165450543308224],[116,-39,70,-0.41172980035675744],[116,-39,71,-0.40277770030731574],[116,-39,72,-0.3935189602628846],[116,-39,73,-0.3779594860153456],[116,-39,74,-0.36638874490044127],[116,-39,75,-0.3570049034224751],[116,-39,76,-0.3432340162508859],[116,-39,77,-0.3340109648598965],[116,-39,78,-0.3227768540843722],[116,-39,79,-0.3139067223691217],[116,-38,64,-0.11285586062143138],[116,-38,65,-0.31203010116220475],[116,-38,66,-0.41554568606657083],[116,-38,67,-0.41672845802268715],[116,-38,68,-0.4148009876161084],[116,-38,69,-0.4102832938608383],[116,-38,70,-0.4062106093357054],[116,-38,71,-0.39783350068378365],[116,-38,72,-0.389391092872094],[116,-38,73,-0.373387252383143],[116,-38,74,-0.3621702358668869],[116,-38,75,-0.35255875771980905],[116,-38,76,-0.3435158156183115],[116,-38,77,-0.3322220193554647],[116,-38,78,-0.3201621112631487],[116,-38,79,-0.30775366244356356],[116,-37,64,-0.06679185144839622],[116,-37,65,-0.23407989276941776],[116,-37,66,-0.341730400308307],[116,-37,67,-0.4161148549175834],[116,-37,68,-0.41251608653194444],[116,-37,69,-0.4098262174792476],[116,-37,70,-0.4066814085766479],[116,-37,71,-0.3967580973741297],[116,-37,72,-0.390008120437184],[116,-37,73,-0.37521024303770284],[116,-37,74,-0.3608007066060841],[116,-37,75,-0.35556287032606143],[116,-37,76,-0.34791189568193104],[116,-37,77,-0.33695024195635936],[116,-37,78,-0.3219031423514024],[116,-37,79,-0.30775275199005875],[116,-36,64,-0.033376965882898235],[116,-36,65,-0.20712724313747163],[116,-36,66,-0.2988333282263812],[116,-36,67,-0.4117281060896664],[116,-36,68,-0.40999159219098424],[116,-36,69,-0.4082128613283081],[116,-36,70,-0.40261114166141415],[116,-36,71,-0.39433194242055675],[116,-36,72,-0.3861667712320521],[116,-36,73,-0.37285832752197573],[116,-36,74,-0.36057506691839447],[116,-36,75,-0.3549795059101298],[116,-36,76,-0.34824815633432094],[116,-36,77,-0.3373324877500603],[116,-36,78,-0.3230848595207366],[116,-36,79,-0.3064266474231321],[116,-35,64,-0.11893920632436988],[116,-35,65,-0.1612424416054524],[116,-35,66,-0.1295875605646507],[116,-35,67,-0.1697200404983619],[116,-35,68,-0.2941365237414404],[116,-35,69,-0.39685480238298937],[116,-35,70,-0.3967245482532806],[116,-35,71,-0.39073272306190937],[116,-35,72,-0.3841423130581622],[116,-35,73,-0.3743674762960222],[116,-35,74,-0.36737043356123356],[116,-35,75,-0.35964635430563313],[116,-35,76,-0.3513472792672624],[116,-35,77,-0.3413713905500612],[116,-35,78,-0.32386859617473596],[116,-35,79,-0.3083390035982163],[116,-34,64,-0.09642090394090791],[116,-34,65,-0.11546512136890097],[116,-34,66,-0.12465684506699398],[116,-34,67,-0.1497747148693427],[116,-34,68,-0.2286255866522418],[116,-34,69,-0.3742920556302063],[116,-34,70,-0.3940549251544477],[116,-34,71,-0.3873507031471746],[116,-34,72,-0.3803040864876208],[116,-34,73,-0.37284818829511795],[116,-34,74,-0.36772265549532746],[116,-34,75,-0.35992691078130595],[116,-34,76,-0.35107586296937726],[116,-34,77,-0.33863713776888393],[116,-34,78,-0.32309275155515227],[116,-34,79,-0.30834988999152063],[116,-33,64,-0.06322464281999929],[116,-33,65,-0.045592440416329205],[116,-33,66,-0.07695540302589965],[116,-33,67,-0.11850529323765097],[116,-33,68,-0.1444704283433856],[116,-33,69,-0.26308192736141545],[116,-33,70,-0.3282182498514414],[116,-33,71,-0.3261752844067287],[116,-33,72,-0.32316119596500403],[116,-33,73,-0.32031209676303246],[116,-33,74,-0.3195983416906787],[116,-33,75,-0.3166150293025396],[116,-33,76,-0.31182754656395817],[116,-33,77,-0.30373934422151383],[116,-33,78,-0.29451228365507576],[116,-33,79,-0.2837177103742824],[116,-32,64,-0.06480513057001622],[116,-32,65,-0.044321795271873354],[116,-32,66,-0.052685085966430956],[116,-32,67,-0.12750563747653879],[116,-32,68,-0.1326585536719807],[116,-32,69,-0.2501421720025717],[116,-32,70,-0.32782389007692003],[116,-32,71,-0.32444352204251664],[116,-32,72,-0.3181247007698394],[116,-32,73,-0.3199763974538516],[116,-32,74,-0.3178642800037449],[116,-32,75,-0.31410777931901035],[116,-32,76,-0.3093262537193809],[116,-32,77,-0.30452608082236265],[116,-32,78,-0.2938906157248902],[116,-32,79,-0.28331689804060883],[116,-31,64,-0.06375723158441662],[116,-31,65,-0.0551354925989076],[116,-31,66,-0.05886224604671958],[116,-31,67,-0.16655990318637295],[116,-31,68,-0.18947428912113504],[116,-31,69,-0.28889206320107735],[116,-31,70,-0.3253470285709427],[116,-31,71,-0.32140116079667236],[116,-31,72,-0.3167390201034222],[116,-31,73,-0.31755099885973465],[116,-31,74,-0.3150724213991317],[116,-31,75,-0.3102413743151994],[116,-31,76,-0.30578198273390367],[116,-31,77,-0.30130414953543494],[116,-31,78,-0.2934164259447445],[116,-31,79,-0.2795774026493641],[116,-30,64,-0.0524819561580932],[116,-30,65,-0.030063899653125226],[116,-30,66,-0.03361544180452869],[116,-30,67,-0.12620008315554032],[116,-30,68,-0.184006104448874],[116,-30,69,-0.2794572491703499],[116,-30,70,-0.32269732569669607],[116,-30,71,-0.31796619123003755],[116,-30,72,-0.3139133104919008],[116,-30,73,-0.31475869944288937],[116,-30,74,-0.31233629106896815],[116,-30,75,-0.3067036929786718],[116,-30,76,-0.3032435785581086],[116,-30,77,-0.30017904948705915],[116,-30,78,-0.28870015615867994],[116,-30,79,-0.2756247057032664],[116,-29,64,0.01578567867123354],[116,-29,65,0.04152106570185404],[116,-29,66,0.033209397712527844],[116,-29,67,-0.04178881967893455],[116,-29,68,-0.1346354806818223],[116,-29,69,-0.21980711409147696],[116,-29,70,-0.2780690475175228],[116,-29,71,-0.28719573344752275],[116,-29,72,-0.3147805928307591],[116,-29,73,-0.2796925481090913],[116,-29,74,-0.3117258691512137],[116,-29,75,-0.3077848621080298],[116,-29,76,-0.30677978249822013],[116,-29,77,-0.30195332936243535],[116,-29,78,-0.290486505066309],[116,-29,79,-0.2762653385052672],[116,-28,64,0.009027299644299991],[116,-28,65,0.04258580833650838],[116,-28,66,0.04095956056383038],[116,-28,67,-0.040834545021589896],[116,-28,68,-0.1282280398146351],[116,-28,69,-0.215485171244984],[116,-28,70,-0.2503965178739601],[116,-28,71,-0.25359973392144264],[116,-28,72,-0.3107912365843925],[116,-28,73,-0.2573587500812769],[116,-28,74,-0.3075542798366293],[116,-28,75,-0.3041436740918593],[116,-28,76,-0.30434283904409554],[116,-28,77,-0.3033371020757117],[116,-28,78,-0.291328239708668],[116,-28,79,-0.2784568824739729],[116,-27,64,0.047322007084808715],[116,-27,65,0.05066007725540028],[116,-27,66,0.002480882916772842],[116,-27,67,-0.12391666436501275],[116,-27,68,-0.21585102679730303],[116,-27,69,-0.3167929608346261],[116,-27,70,-0.3089011697441393],[116,-27,71,-0.2741996720680246],[116,-27,72,-0.2946311104353254],[116,-27,73,-0.2742906245586044],[116,-27,74,-0.28652247792979013],[116,-27,75,-0.2837016992000505],[116,-27,76,-0.2887727184081224],[116,-27,77,-0.29488886346676346],[116,-27,78,-0.2935355880464753],[116,-27,79,-0.28833640631988516],[116,-26,64,0.10355470000964945],[116,-26,65,0.08369802262221887],[116,-26,66,0.037682830836435866],[116,-26,67,-0.10709073530319527],[116,-26,68,-0.2272493650917044],[116,-26,69,-0.31088770438457997],[116,-26,70,-0.30891023412695273],[116,-26,71,-0.25848339256572767],[116,-26,72,-0.28851191229647677],[116,-26,73,-0.26577214853489606],[116,-26,74,-0.28115752950166506],[116,-26,75,-0.28035477237575007],[116,-26,76,-0.2848421528614741],[116,-26,77,-0.29243132275057915],[116,-26,78,-0.2916752147687468],[116,-26,79,-0.28565605739199157],[116,-25,64,0.10924795120875014],[116,-25,65,0.07490504402411702],[116,-25,66,0.014360057369716739],[116,-25,67,-0.10938934066821113],[116,-25,68,-0.23747194863214072],[116,-25,69,-0.31173544769422085],[116,-25,70,-0.3073682388691185],[116,-25,71,-0.2542348248555738],[116,-25,72,-0.27226332953997584],[116,-25,73,-0.2653200351389845],[116,-25,74,-0.2792547092080482],[116,-25,75,-0.2785915614065022],[116,-25,76,-0.28405821007599674],[116,-25,77,-0.2918370088038417],[116,-25,78,-0.2911190234279602],[116,-25,79,-0.28606296695053496],[116,-24,64,0.09443092605786346],[116,-24,65,0.05313606761958495],[116,-24,66,-0.02149525383411216],[116,-24,67,-0.1402070599909899],[116,-24,68,-0.2678257426114337],[116,-24,69,-0.3052100091459398],[116,-24,70,-0.30129453046213417],[116,-24,71,-0.27750067201647866],[116,-24,72,-0.24620401656803828],[116,-24,73,-0.2697887581220806],[116,-24,74,-0.274716762881739],[116,-24,75,-0.27546737870940097],[116,-24,76,-0.2813742256377234],[116,-24,77,-0.289046973308876],[116,-24,78,-0.29054802758434145],[116,-24,79,-0.2848645673301301],[116,-23,64,0.04602286173418729],[116,-23,65,-0.023943315890662453],[116,-23,66,-0.06729283540155762],[116,-23,67,-0.18311164996167956],[116,-23,68,-0.29413500236829776],[116,-23,69,-0.2933846588626274],[116,-23,70,-0.29123339482533717],[116,-23,71,-0.2861865722362685],[116,-23,72,-0.28377439765287954],[116,-23,73,-0.28242463821005026],[116,-23,74,-0.2730653765398622],[116,-23,75,-0.2568422040290383],[116,-23,76,-0.26147962171869593],[116,-23,77,-0.2864684858780079],[116,-23,78,-0.2866660173921448],[116,-23,79,-0.27613689568545585],[116,-22,64,0.05896713072704596],[116,-22,65,-0.031306863224033255],[116,-22,66,-0.07093065076112168],[116,-22,67,-0.18920063539503984],[116,-22,68,-0.28651129324017816],[116,-22,69,-0.28905642513156476],[116,-22,70,-0.28654170506212223],[116,-22,71,-0.2841626562343335],[116,-22,72,-0.2794776726560835],[116,-22,73,-0.27910998272888543],[116,-22,74,-0.24627852635467734],[116,-22,75,-0.24051388668107565],[116,-22,76,-0.2596102599301299],[116,-22,77,-0.28403430580980493],[116,-22,78,-0.2837732053414791],[116,-22,79,-0.27287171213658046],[116,-21,64,0.1273553820190319],[116,-21,65,0.0516072486943952],[116,-21,66,-0.0028747859263710263],[116,-21,67,-0.11343153634666767],[116,-21,68,-0.2823243465200436],[116,-21,69,-0.2869518007308224],[116,-21,70,-0.2868890480953402],[116,-21,71,-0.2831783993346867],[116,-21,72,-0.24059572638862486],[116,-21,73,-0.25073379914939775],[116,-21,74,-0.19577840135867372],[116,-21,75,-0.18911032917123793],[116,-21,76,-0.20252334760552376],[116,-21,77,-0.2854432599016104],[116,-21,78,-0.2844106987904914],[116,-21,79,-0.27370483956652036],[116,-20,64,0.10718854079965956],[116,-20,65,0.055673987735481045],[116,-20,66,-0.018972309393371856],[116,-20,67,-0.12210470578995747],[116,-20,68,-0.27949237072659594],[116,-20,69,-0.28206559692685707],[116,-20,70,-0.2813760478027661],[116,-20,71,-0.2780857332882919],[116,-20,72,-0.25075166185693065],[116,-20,73,-0.22088823530319576],[116,-20,74,-0.20337453201013583],[116,-20,75,-0.1825114346495312],[116,-20,76,-0.1935821235319356],[116,-20,77,-0.2866529941321505],[116,-20,78,-0.2851958621071434],[116,-20,79,-0.2745421378119257],[116,-19,64,0.18152136364093543],[116,-19,65,0.09077458066413285],[116,-19,66,-0.02128139212291605],[116,-19,67,-0.1577948487745361],[116,-19,68,-0.26122125541026653],[116,-19,69,-0.26398764541373043],[116,-19,70,-0.2656234895241167],[116,-19,71,-0.2632988620656802],[116,-19,72,-0.21556142977621917],[116,-19,73,-0.15978518587696006],[116,-19,74,-0.10382130815898266],[116,-19,75,-0.07430977335817401],[116,-19,76,-0.10573853210279474],[116,-19,77,-0.22979223041605262],[116,-19,78,-0.27266975562964024],[116,-19,79,-0.2604091332750581],[116,-18,64,0.17079366796624995],[116,-18,65,0.06111554248190662],[116,-18,66,-0.03179710197931279],[116,-18,67,-0.1606556637564464],[116,-18,68,-0.2522183171988388],[116,-18,69,-0.25540587879290405],[116,-18,70,-0.25464964176203825],[116,-18,71,-0.25471531428165484],[116,-18,72,-0.19904083600794148],[116,-18,73,-0.146631087029025],[116,-18,74,-0.07874602986254095],[116,-18,75,-0.034838142548965695],[116,-18,76,-0.09427868679001764],[116,-18,77,-0.18878539076547873],[116,-18,78,-0.26760840518360385],[116,-18,79,-0.2571499683645265],[116,-17,64,0.14218570922511486],[116,-17,65,0.03728590968366202],[116,-17,66,-0.0634425951739499],[116,-17,67,-0.16021636282478557],[116,-17,68,-0.2510594279484366],[116,-17,69,-0.2517935727258571],[116,-17,70,-0.25245218757114585],[116,-17,71,-0.2438398853566],[116,-17,72,-0.1836182759193995],[116,-17,73,-0.12805711822421964],[116,-17,74,-0.05478639374148453],[116,-17,75,-0.024435021435484927],[116,-17,76,-0.07919563881424779],[116,-17,77,-0.17892811414709905],[116,-17,78,-0.2630385808285215],[116,-17,79,-0.25453763143525665],[116,-16,64,0.15610421492855586],[116,-16,65,0.07966659854319535],[116,-16,66,-0.003339062507523166],[116,-16,67,-0.0820948440234294],[116,-16,68,-0.18290935737923875],[116,-16,69,-0.24495235732369802],[116,-16,70,-0.2305809310916226],[116,-16,71,-0.14582645129230673],[116,-16,72,-0.0707574859021059],[116,-16,73,-0.05830415568984801],[116,-16,74,-0.02145469200696612],[116,-16,75,-0.033996672926392635],[116,-16,76,-0.08902668152823687],[116,-16,77,-0.13997077851961953],[116,-16,78,-0.25595311630475753],[116,-16,79,-0.2492326775211929],[116,-15,64,0.15454126101428944],[116,-15,65,0.07145678990270188],[116,-15,66,-0.009368146196560678],[116,-15,67,-0.08604568739463522],[116,-15,68,-0.1649457342416913],[116,-15,69,-0.22588860274831865],[116,-15,70,-0.22780790869458753],[116,-15,71,-0.14732003161031956],[116,-15,72,-0.06170661866812732],[116,-15,73,-0.05278572486932781],[116,-15,74,-0.03220695455164868],[116,-15,75,-0.03662975530802129],[116,-15,76,-0.09062942339728156],[116,-15,77,-0.10755920552717518],[116,-15,78,-0.24148468226050784],[116,-15,79,-0.2391808941773605],[116,-14,64,0.03866726363326527],[116,-14,65,-0.029501146115429616],[116,-14,66,-0.07782441252345237],[116,-14,67,-0.13180767141243038],[116,-14,68,-0.1909126208711581],[116,-14,69,-0.2207592581415799],[116,-14,70,-0.22631111422414027],[116,-14,71,-0.16540600546447826],[116,-14,72,-0.10516910269632379],[116,-14,73,-0.0965294982351361],[116,-14,74,-0.08899874213308667],[116,-14,75,-0.10592447152580761],[116,-14,76,-0.12157946070845249],[116,-14,77,-0.12300045447475387],[116,-14,78,-0.22844826642856814],[116,-14,79,-0.23472939253130998],[116,-13,64,0.039517466059583554],[116,-13,65,-0.006230503479645044],[116,-13,66,-0.04849227642907408],[116,-13,67,-0.09609734918990194],[116,-13,68,-0.15211068690971163],[116,-13,69,-0.19326698850587362],[116,-13,70,-0.19126814966548467],[116,-13,71,-0.12615453585301864],[116,-13,72,-0.058028475755898645],[116,-13,73,-0.06180416254272711],[116,-13,74,-0.06505042734293101],[116,-13,75,-0.07217022857307909],[116,-13,76,-0.08679850724904142],[116,-13,77,-0.10799652852886776],[116,-13,78,-0.20945091671969773],[116,-13,79,-0.2341045630685839],[116,-12,64,0.030021740913749144],[116,-12,65,-0.03724958462474376],[116,-12,66,-0.0754739456962821],[116,-12,67,-0.10150940862265487],[116,-12,68,-0.1579046698296891],[116,-12,69,-0.21001651465460003],[116,-12,70,-0.21490822874476184],[116,-12,71,-0.14408369821416026],[116,-12,72,-0.06825904046232217],[116,-12,73,-0.07081689113128625],[116,-12,74,-0.08164496532000143],[116,-12,75,-0.08122398290470159],[116,-12,76,-0.09542347553249556],[116,-12,77,-0.13838575723288715],[116,-12,78,-0.2094220677588461],[116,-12,79,-0.23335095897335256],[116,-11,64,0.03962015724444841],[116,-11,65,-0.004665009915116675],[116,-11,66,-0.061270961365757604],[116,-11,67,-0.10086693326510483],[116,-11,68,-0.1505953446931401],[116,-11,69,-0.20920508118412273],[116,-11,70,-0.22088119627295516],[116,-11,71,-0.128577531430571],[116,-11,72,-0.02470708510436384],[116,-11,73,0.010947280429357858],[116,-11,74,0.040205410741077724],[116,-11,75,0.03649947140070753],[116,-11,76,0.02039148861934295],[116,-11,77,-0.03304408878099341],[116,-11,78,-0.09605666900468876],[116,-11,79,-0.1962499283804472],[116,-10,64,0.03115214000284565],[116,-10,65,-0.02461396490833495],[116,-10,66,-0.06538314713481938],[116,-10,67,-0.12629596571664026],[116,-10,68,-0.1488655395926039],[116,-10,69,-0.20493163001985384],[116,-10,70,-0.2156452507862841],[116,-10,71,-0.15834798856237753],[116,-10,72,-0.04613461853732523],[116,-10,73,-0.018245598598305518],[116,-10,74,0.018233157748924506],[116,-10,75,0.02103265763045728],[116,-10,76,0.008113686011924859],[116,-10,77,-0.049034677785961656],[116,-10,78,-0.1113583350102636],[116,-10,79,-0.18753386845341488],[116,-9,64,0.03866423195427546],[116,-9,65,-0.034761817402109485],[116,-9,66,-0.07663879678544391],[116,-9,67,-0.1424525950108728],[116,-9,68,-0.15870962047866913],[116,-9,69,-0.20403549237686597],[116,-9,70,-0.21192767883028768],[116,-9,71,-0.17677168937553478],[116,-9,72,-0.07310553776604664],[116,-9,73,-0.043263865584622196],[116,-9,74,5.631149302915417E-4],[116,-9,75,0.01119996433688425],[116,-9,76,0.006609455983911772],[116,-9,77,-0.05117807368942934],[116,-9,78,-0.14496036925680178],[116,-9,79,-0.20747142968328794],[116,-8,64,-0.021284195082233726],[116,-8,65,-0.10748097956788061],[116,-8,66,-0.16064290780922316],[116,-8,67,-0.18155849523667986],[116,-8,68,-0.1897669488631068],[116,-8,69,-0.19899353844173415],[116,-8,70,-0.20307796595484245],[116,-8,71,-0.20578898070670426],[116,-8,72,-0.1654032857144658],[116,-8,73,-0.11646701162560395],[116,-8,74,-0.021176193127306953],[116,-8,75,0.017193095760839633],[116,-8,76,0.007358772656303525],[116,-8,77,-0.052310186756826776],[116,-8,78,-0.17974595902152507],[116,-8,79,-0.21530935689393751],[116,-7,64,-0.04118698343130875],[116,-7,65,-0.11232152869526613],[116,-7,66,-0.1682986162591484],[116,-7,67,-0.17574163907991008],[116,-7,68,-0.18556333598040572],[116,-7,69,-0.19294564991361254],[116,-7,70,-0.19593806720201254],[116,-7,71,-0.19923887870717902],[116,-7,72,-0.18427127214683842],[116,-7,73,-0.13301625244152804],[116,-7,74,-0.03178336564675971],[116,-7,75,0.004286988590638585],[116,-7,76,-0.007336097252206242],[116,-7,77,-0.07083323444082784],[116,-7,78,-0.2056236361521374],[116,-7,79,-0.21267693820470973],[116,-6,64,-0.06536540413707866],[116,-6,65,-0.12469934707441543],[116,-6,66,-0.16236432869061196],[116,-6,67,-0.17166422431576228],[116,-6,68,-0.18002485385829795],[116,-6,69,-0.18582861534370068],[116,-6,70,-0.19148949106591504],[116,-6,71,-0.19377891679273776],[116,-6,72,-0.19380620793384695],[116,-6,73,-0.1493484005953295],[116,-6,74,-0.06255713265667479],[116,-6,75,-0.014959790525071404],[116,-6,76,-0.017344211503887708],[116,-6,77,-0.08684082026435035],[116,-6,78,-0.2074580899058337],[116,-6,79,-0.2120692547676877],[116,-5,64,-0.0908946039714044],[116,-5,65,-0.08747885101240707],[116,-5,66,-0.06801921033707148],[116,-5,67,-0.09187876086503224],[116,-5,68,-0.0712141850918198],[116,-5,69,-0.09096438241825112],[116,-5,70,-0.13638393201122068],[116,-5,71,-0.1540387762320186],[116,-5,72,-0.17295796245153905],[116,-5,73,-0.19326068463678184],[116,-5,74,-0.19030482907914],[116,-5,75,-0.17644201045150548],[116,-5,76,-0.19424912198426214],[116,-5,77,-0.20575078686315798],[116,-5,78,-0.20853489934940886],[116,-5,79,-0.21551365309870302],[116,-4,64,-0.10466597594505744],[116,-4,65,-0.1039273866337246],[116,-4,66,-0.08545903586751082],[116,-4,67,-0.09836291563081152],[116,-4,68,-0.08116596518012749],[116,-4,69,-0.10250730933268545],[116,-4,70,-0.1418868920873735],[116,-4,71,-0.16405523041017495],[116,-4,72,-0.1874532958739312],[116,-4,73,-0.2027914918744012],[116,-4,74,-0.2019845916057117],[116,-4,75,-0.20065216094464916],[116,-4,76,-0.20511720114628407],[116,-4,77,-0.20736046585031742],[116,-4,78,-0.21085005352910247],[116,-4,79,-0.21463137666355347],[116,-3,64,-0.07740786902615172],[116,-3,65,-0.06850501113685328],[116,-3,66,-0.048577446724092616],[116,-3,67,-0.04094022531962331],[116,-3,68,-0.03226141649908454],[116,-3,69,-0.05360959554806807],[116,-3,70,-0.08407051093813796],[116,-3,71,-0.11385217822347209],[116,-3,72,-0.1506073599470867],[116,-3,73,-0.1729687620344274],[116,-3,74,-0.17618367450534686],[116,-3,75,-0.1733864347664381],[116,-3,76,-0.2084053242725777],[116,-3,77,-0.20778049891142097],[116,-3,78,-0.2038396168564212],[116,-3,79,-0.2022129288753249],[116,-2,64,-0.08084291259232414],[116,-2,65,-0.07897607153220251],[116,-2,66,-0.04950702465859819],[116,-2,67,-0.036436496066418564],[116,-2,68,-0.04207322804421501],[116,-2,69,-0.06439301177581047],[116,-2,70,-0.08867807127252389],[116,-2,71,-0.10966623812078731],[116,-2,72,-0.16526248854835926],[116,-2,73,-0.17478535622296637],[116,-2,74,-0.18233504462676967],[116,-2,75,-0.1978354066167752],[116,-2,76,-0.20188079692420588],[116,-2,77,-0.203367863907197],[116,-2,78,-0.19969120984194785],[116,-2,79,-0.1956545647645781],[116,-1,64,-0.058869238516154346],[116,-1,65,-0.05066536081475821],[116,-1,66,-0.009188198363472677],[116,-1,67,0.002928040310361507],[116,-1,68,-0.008852519816203608],[116,-1,69,-0.014216934471943776],[116,-1,70,-0.044181702893019814],[116,-1,71,-0.06643492786156291],[116,-1,72,-0.1163098382750512],[116,-1,73,-0.14247756099637543],[116,-1,74,-0.19967839301824375],[116,-1,75,-0.19740280997756915],[116,-1,76,-0.19620096059145814],[116,-1,77,-0.19738141398291575],[116,-1,78,-0.19484886163559229],[116,-1,79,-0.18919903561590237],[116,0,64,-0.02469129536370729],[116,0,65,-0.01966872766569107],[116,0,66,-0.02049593333212138],[116,0,67,-0.026577311712906712],[116,0,68,-0.036745724468042],[116,0,69,-0.044294220665949804],[116,0,70,-0.05037899140856221],[116,0,71,-0.059804108267647524],[116,0,72,-0.06642657788765169],[116,0,73,-0.06619017760716316],[116,0,74,-0.06695409966998463],[116,0,75,-0.06651814183508736],[116,0,76,-0.07037174577639882],[116,0,77,-0.0785398559764843],[116,0,78,-0.08226871418343484],[116,0,79,-0.08243395115195654],[116,1,64,-0.02453686646530956],[116,1,65,-0.020270579427322452],[116,1,66,-0.020844598537254122],[116,1,67,-0.02523466510290727],[116,1,68,-0.03588004486938867],[116,1,69,-0.04302890079292694],[116,1,70,-0.04814110929252627],[116,1,71,-0.057060598231420706],[116,1,72,-0.06082610536593991],[116,1,73,-0.06253847617725392],[116,1,74,-0.06374364704182173],[116,1,75,-0.0655367022443769],[116,1,76,-0.06877275273840976],[116,1,77,-0.07404745747379514],[116,1,78,-0.07603036404099393],[116,1,79,-0.07821615871872678],[116,2,64,-0.02492178135654982],[116,2,65,-0.02206554512873958],[116,2,66,-0.022456656774558575],[116,2,67,-0.024847546126036874],[116,2,68,-0.034544296951116535],[116,2,69,-0.04198244703755116],[116,2,70,-0.04834910265692216],[116,2,71,-0.05544817653610347],[116,2,72,-0.05868623644863186],[116,2,73,-0.058633242424089405],[116,2,74,-0.062322591092473345],[116,2,75,-0.06465899993328938],[116,2,76,-0.06851048671706464],[116,2,77,-0.07178871018099633],[116,2,78,-0.07301161854193844],[116,2,79,-0.07532017933227947],[116,3,64,-0.026412293602068593],[116,3,65,-0.022774783312702773],[116,3,66,-0.023121436606799606],[116,3,67,-0.024660715288801982],[116,3,68,-0.031845344180594634],[116,3,69,-0.04092331814517211],[116,3,70,-0.04866580968113225],[116,3,71,-0.05284671333036864],[116,3,72,-0.056795180048961544],[116,3,73,-0.05661870267161388],[116,3,74,-0.06028973790092998],[116,3,75,-0.06361078910842503],[116,3,76,-0.06453233946504433],[116,3,77,-0.06975970865817373],[116,3,78,-0.07235879048622636],[116,3,79,-0.07345748700633034],[116,4,64,-0.027228855426227827],[116,4,65,-0.023610342253017766],[116,4,66,-0.02354676817144835],[116,4,67,-0.025133223763020116],[116,4,68,-0.030923408040106404],[116,4,69,-0.037390100016957],[116,4,70,-0.0458907274210103],[116,4,71,-0.05018808061690164],[116,4,72,-0.051804737483056224],[116,4,73,-0.054016636002306356],[116,4,74,-0.05534264472848052],[116,4,75,-0.05807049760810275],[116,4,76,-0.05941287592683986],[116,4,77,-0.06421454571429994],[116,4,78,-0.06861140652064618],[116,4,79,-0.07034584743566666],[116,5,64,-0.030507540488538487],[116,5,65,-0.02707915927981913],[116,5,66,-0.02463620384765991],[116,5,67,-0.02532887650155627],[116,5,68,-0.030348012633972965],[116,5,69,-0.03461321030420472],[116,5,70,-0.04282930976300005],[116,5,71,-0.04328016181332166],[116,5,72,-0.04762301679243028],[116,5,73,-0.05057636877794375],[116,5,74,-0.05087298232108327],[116,5,75,-0.05230087767023972],[116,5,76,-0.05436592817267123],[116,5,77,-0.05846363485864246],[116,5,78,-0.06369479007152143],[116,5,79,-0.06867839951323426],[116,6,64,-0.03097392964719943],[116,6,65,-0.027230437879786448],[116,6,66,-0.02461979852103019],[116,6,67,-0.025485658745579426],[116,6,68,-0.028906414263723076],[116,6,69,-0.03172234194448635],[116,6,70,-0.035947261824207086],[116,6,71,-0.03960813042590322],[116,6,72,-0.041859823692784154],[116,6,73,-0.0463821484851739],[116,6,74,-0.04939885412496822],[116,6,75,-0.04768891604473929],[116,6,76,-0.048383534156650324],[116,6,77,-0.05117290817744083],[116,6,78,-0.05749701006668065],[116,6,79,-0.06230667939530818],[116,7,64,-0.030974638580283667],[116,7,65,-0.026461081488139512],[116,7,66,-0.024961562025438783],[116,7,67,-0.023529542256778307],[116,7,68,-0.026932575225707023],[116,7,69,-0.025422299504717943],[116,7,70,-0.029151864388060195],[116,7,71,-0.03679423980807918],[116,7,72,-0.03673715554521177],[116,7,73,-0.04060770116769169],[116,7,74,-0.045834853806982545],[116,7,75,-0.04277092466886842],[116,7,76,-0.04228001222495664],[116,7,77,-0.0452365187407273],[116,7,78,-0.05187168787050303],[116,7,79,-0.05512199664321464],[116,8,64,-0.03103195965706476],[116,8,65,-0.025724439025370166],[116,8,66,-0.02262959139650174],[116,8,67,-0.017141118351408136],[116,8,68,-0.016411706749750316],[116,8,69,-0.016426260415403127],[116,8,70,-0.018421644076026783],[116,8,71,-0.0275091346335819],[116,8,72,-0.026540137694305743],[116,8,73,-0.0283374968656306],[116,8,74,-0.03190281002868771],[116,8,75,-0.02804044682170835],[116,8,76,-0.027894593734861764],[116,8,77,-0.030282484438599086],[116,8,78,-0.03720644312756616],[116,8,79,-0.040436026147223095],[116,9,64,-0.03003490181120247],[116,9,65,-0.02297401617446973],[116,9,66,-0.017035533142264123],[116,9,67,-0.008838780764185594],[116,9,68,-0.0054246754767775796],[116,9,69,-0.005544907584378839],[116,9,70,-0.010258992938778771],[116,9,71,-0.01977747776427838],[116,9,72,-0.022828235406807756],[116,9,73,-0.02398467891305503],[116,9,74,-0.027914113283841746],[116,9,75,-0.02438491283022938],[116,9,76,-0.02203873318019378],[116,9,77,-0.023917848312293377],[116,9,78,-0.03183877909157827],[116,9,79,-0.037117145187322384],[116,10,64,-0.03387396467768397],[116,10,65,-0.024669243418743297],[116,10,66,-0.015267334510777858],[116,10,67,-0.009473103682054979],[116,10,68,-0.004732441771239271],[116,10,69,-0.005870442755606109],[116,10,70,-0.009927966088644324],[116,10,71,-0.018533176045108568],[116,10,72,-0.021788241566921843],[116,10,73,-0.01985295188415631],[116,10,74,-0.022336557250379085],[116,10,75,-0.021346048718848695],[116,10,76,-0.02040113270542329],[116,10,77,-0.019917736660079163],[116,10,78,-0.02697229353951361],[116,10,79,-0.03384758636879516],[116,11,64,-0.03377049515240893],[116,11,65,-0.026242407825149527],[116,11,66,-0.01799532897006023],[116,11,67,-0.009682166372210754],[116,11,68,-0.005267292022141101],[116,11,69,-0.004888458511641769],[116,11,70,-0.00980296818190693],[116,11,71,-0.016701360099849932],[116,11,72,-0.019426521444852213],[116,11,73,-0.017608684663035695],[116,11,74,-0.01747028248261076],[116,11,75,-0.017212778676341273],[116,11,76,-0.016896584916578805],[116,11,77,-0.01809636443679813],[116,11,78,-0.024130923877289823],[116,11,79,-0.029823781994633106],[116,12,64,-0.03279722763597338],[116,12,65,-0.029356520849218803],[116,12,66,-0.019615316031428548],[116,12,67,-0.012632509864757169],[116,12,68,-0.009776797223031042],[116,12,69,-0.008063079439152854],[116,12,70,-0.011652577058876734],[116,12,71,-0.01977440583989172],[116,12,72,-0.023289533206367175],[116,12,73,-0.02147646114735252],[116,12,74,-0.019162849313473285],[116,12,75,-0.01873701331320854],[116,12,76,-0.019833941577164144],[116,12,77,-0.022132904297660128],[116,12,78,-0.026023302505347568],[116,12,79,-0.033346436243791355],[116,13,64,-0.03475158454243828],[116,13,65,-0.03409453494273412],[116,13,66,-0.026430348144687282],[116,13,67,-0.018444385246519257],[116,13,68,-0.0180051371772917],[116,13,69,-0.01648961938193727],[116,13,70,-0.016874414111129526],[116,13,71,-0.020872822981607475],[116,13,72,-0.0221770162945861],[116,13,73,-0.017318022841230768],[116,13,74,-0.01409760348914682],[116,13,75,-0.015775592818543904],[116,13,76,-0.015915076029483555],[116,13,77,-0.020303269228940365],[116,13,78,-0.023502183798041087],[116,13,79,-0.029214884111419676],[116,14,64,-0.03541960693640833],[116,14,65,-0.033043273043922086],[116,14,66,-0.02451682621228904],[116,14,67,-0.018332547915157177],[116,14,68,-0.01667455701691188],[116,14,69,-0.015336266575424334],[116,14,70,-0.017103578431131028],[116,14,71,-0.01682122193588706],[116,14,72,-0.017251399370796783],[116,14,73,-0.013227395266860259],[116,14,74,-0.013100676278739648],[116,14,75,-0.012887223725126268],[116,14,76,-0.013724538607248843],[116,14,77,-0.016026636135265088],[116,14,78,-0.018408557435385164],[116,14,79,-0.02554814709891523],[116,15,64,-0.03430830715205967],[116,15,65,-0.028742519045500375],[116,15,66,-0.021385269028934728],[116,15,67,-0.01726254101748885],[116,15,68,-0.01789307492886094],[116,15,69,-0.015789157267454113],[116,15,70,-0.013327030489522579],[116,15,71,-0.01576315729330817],[116,15,72,-0.014727191499449455],[116,15,73,-0.009430352111871848],[116,15,74,-0.009861764857174715],[116,15,75,-0.010237903071829174],[116,15,76,-0.009643353401123073],[116,15,77,-0.013042121739778784],[116,15,78,-0.013953440233790665],[116,15,79,-0.021157424381956585],[116,16,64,-0.03476363387614931],[116,16,65,-0.026582319120770193],[116,16,66,-0.019121170698191095],[116,16,67,-0.01579127940997796],[116,16,68,-0.015315773966066648],[116,16,69,-0.01011355240666481],[116,16,70,-0.007750652060220048],[116,16,71,-0.008502187149434265],[116,16,72,-0.00518807715277364],[116,16,73,-0.0017204270450773274],[116,16,74,-9.385594008098908E-4],[116,16,75,-0.002273252946888349],[116,16,76,0.0015837668219805812],[116,16,77,0.001979968809238869],[116,16,78,5.617569047456361E-4],[116,16,79,-0.004999194482499192],[116,17,64,-0.02860392325389896],[116,17,65,-0.02518182260926055],[116,17,66,-0.01874375493783148],[116,17,67,-0.01407744954880541],[116,17,68,-0.013489065599692401],[116,17,69,-0.009200455646632688],[116,17,70,-0.007877570384654614],[116,17,71,-0.006776660109163474],[116,17,72,-0.005284555949373132],[116,17,73,-5.085358278674734E-4],[116,17,74,0.0017413742472499882],[116,17,75,-0.001765794282246047],[116,17,76,0.003754975506111896],[116,17,77,0.005907456723137916],[116,17,78,0.002593575140491855],[116,17,79,-0.0019129243527415962],[116,18,64,-0.02593643384733818],[116,18,65,-0.02327222121073952],[116,18,66,-0.016926372141175372],[116,18,67,-0.014886696775073038],[116,18,68,-0.011419292085195237],[116,18,69,-0.00977920275747296],[116,18,70,-0.006391292349019889],[116,18,71,-0.006324243538201296],[116,18,72,-0.0044546172662074945],[116,18,73,0.0018314438897329421],[116,18,74,0.002148055733210308],[116,18,75,-4.886745293216366E-4],[116,18,76,0.0043734485717736304],[116,18,77,0.009243485345686475],[116,18,78,0.0054274895605055384],[116,18,79,-0.0014079773374987004],[116,19,64,-0.024330616259852056],[116,19,65,-0.02057814198453685],[116,19,66,-0.015270208414688985],[116,19,67,-0.014545481953740502],[116,19,68,-0.00940740918030114],[116,19,69,-0.006627103205704865],[116,19,70,-0.00444510301990228],[116,19,71,-0.003086574664971947],[116,19,72,-0.002279145969602242],[116,19,73,0.0017196315241652382],[116,19,74,0.001062677157169345],[116,19,75,0.0017372748982469322],[116,19,76,0.005782233788340779],[116,19,77,0.010840197687278369],[116,19,78,0.007643813494088436],[116,19,79,1.6909169530948676E-4],[116,20,64,-0.020522065122879116],[116,20,65,-0.02053164119005002],[116,20,66,-0.017456321047263468],[116,20,67,-0.01702700896537393],[116,20,68,-0.011723790274579066],[116,20,69,-0.009165974435222768],[116,20,70,-0.006873370937285683],[116,20,71,-0.004507071031950749],[116,20,72,-0.006594582314494696],[116,20,73,-0.0072987167363677274],[116,20,74,-0.005452800946732228],[116,20,75,-0.005545971852557063],[116,20,76,-0.0017244497432716277],[116,20,77,0.0042988263117933745],[116,20,78,0.0034666686225290344],[116,20,79,-0.004944211590119985],[116,21,64,-0.008911087940302265],[116,21,65,-0.011634861222358739],[116,21,66,-0.011818184266398246],[116,21,67,-0.01027551719151859],[116,21,68,-0.006782901507766781],[116,21,69,-0.007134759001036606],[116,21,70,-0.008556632174630624],[116,21,71,-0.007010790058802591],[116,21,72,-0.011009548309798917],[116,21,73,-0.015423608679472733],[116,21,74,-0.013358172388692219],[116,21,75,-0.01466370152162233],[116,21,76,-0.012920045114264617],[116,21,77,-0.004924596892135535],[116,21,78,-0.003589938321691466],[116,21,79,-0.008412780420830185],[116,22,64,-0.005196167894878062],[116,22,65,-0.009416785620916857],[116,22,66,-0.013582446590011052],[116,22,67,-0.011675248085523476],[116,22,68,-0.005217940294753004],[116,22,69,-0.005889160829334689],[116,22,70,-0.00789474931027706],[116,22,71,-0.006797692708903236],[116,22,72,-0.010570211315911349],[116,22,73,-0.014055677880871142],[116,22,74,-0.011903635522521272],[116,22,75,-0.014729855642941658],[116,22,76,-0.013714905646713266],[116,22,77,-0.008651302312202985],[116,22,78,-0.004183904831330576],[116,22,79,-0.00827771558541196],[116,23,64,-0.0041377683192987125],[116,23,65,-0.009796724338786894],[116,23,66,-0.011516951006444565],[116,23,67,-0.010512130348229065],[116,23,68,-0.005663664159388682],[116,23,69,-0.004539685412401434],[116,23,70,-0.008314063529193672],[116,23,71,-0.007800237862483794],[116,23,72,-0.008274111112204718],[116,23,73,-0.010518168767853775],[116,23,74,-0.010481627936948817],[116,23,75,-0.014944322074827543],[116,23,76,-0.01352748996970643],[116,23,77,-0.008192570856062398],[116,23,78,-0.004649831196415322],[116,23,79,-0.007050974207753691],[116,24,64,0.004244892492358848],[116,24,65,3.7109715750061056E-4],[116,24,66,3.4584416035265964E-5],[116,24,67,4.8520130750637214E-4],[116,24,68,0.0033837495381302263],[116,24,69,0.0028558916399116507],[116,24,70,0.0014244691304319268],[116,24,71,7.567187395040864E-4],[116,24,72,9.365652078324738E-4],[116,24,73,-4.642335016361854E-4],[116,24,74,-6.731397411593731E-4],[116,24,75,-0.006391637431026442],[116,24,76,-0.005041793798321259],[116,24,77,4.918645979088421E-4],[116,24,78,0.003495686090672301],[116,24,79,0.003454132401624316],[116,25,64,0.016293598435602324],[116,25,65,0.013642780441360275],[116,25,66,0.012752431519742508],[116,25,67,0.011955701614717651],[116,25,68,0.01339498289817026],[116,25,69,0.01292164106134605],[116,25,70,0.014131910006976667],[116,25,71,0.012544211680043854],[116,25,72,0.009062183511124117],[116,25,73,0.009240737588498554],[116,25,74,0.007728895009277259],[116,25,75,0.005355894833108249],[116,25,76,0.0012053970633354172],[116,25,77,0.001923636584622107],[116,25,78,-0.0014318068441117604],[116,25,79,-0.007155761523437831],[116,26,64,0.022481421210876457],[116,26,65,0.017573883290010694],[116,26,66,0.015892102151130627],[116,26,67,0.014910701232974666],[116,26,68,0.01565498726057024],[116,26,69,0.016281294467775487],[116,26,70,0.01699753132774362],[116,26,71,0.013982822545302226],[116,26,72,0.00908148269476991],[116,26,73,0.00795255846169754],[116,26,74,0.008656299537037754],[116,26,75,0.0074632811362941864],[116,26,76,0.0022369320858782737],[116,26,77,-4.619875618967484E-4],[116,26,78,-0.001256042621249065],[116,26,79,-0.006593469046143108],[116,27,64,0.028644074893178523],[116,27,65,0.01986685635156804],[116,27,66,0.018171218073362277],[116,27,67,0.017044265090228106],[116,27,68,0.017673822448930232],[116,27,69,0.019012312271354803],[116,27,70,0.01920587954305797],[116,27,71,0.013042605408134622],[116,27,72,0.009083490810892436],[116,27,73,0.008571056734058669],[116,27,74,0.007122672769143079],[116,27,75,0.006407981178223832],[116,27,76,0.0032040830974803813],[116,27,77,0.0013661523711173684],[116,27,78,-0.002014727980493042],[116,27,79,-0.010264940445493337],[116,28,64,0.027933826401762313],[116,28,65,0.020410543922279506],[116,28,66,0.018246604543919465],[116,28,67,0.016669306051348837],[116,28,68,0.016856026395946022],[116,28,69,0.014303459064395757],[116,28,70,0.0114387892039165],[116,28,71,0.006107116642947691],[116,28,72,0.004873353265913871],[116,28,73,0.004545039366776499],[116,28,74,0.001049629548075387],[116,28,75,-1.434929912100813E-4],[116,28,76,-0.003960581095743987],[116,28,77,-0.0039321652543996555],[116,28,78,-0.009311718559071092],[116,28,79,-0.018971803089479225],[116,29,64,0.02395553021137009],[116,29,65,0.01916698036066125],[116,29,66,0.017389399334220235],[116,29,67,0.018174903664634423],[116,29,68,0.01631872071846671],[116,29,69,0.011002809741575775],[116,29,70,0.00800585912887411],[116,29,71,0.0012573417766005013],[116,29,72,-9.8011907777798E-4],[116,29,73,-0.0012380295090112792],[116,29,74,-0.0040711879871847545],[116,29,75,-0.004067668688466863],[116,29,76,-0.0061627071237662645],[116,29,77,-0.007236883735261157],[116,29,78,-0.010352451575565164],[116,29,79,-0.016860319125238526],[116,30,64,0.025481815842965827],[116,30,65,0.024804010961839013],[116,30,66,0.021656769688691346],[116,30,67,0.022769767048338357],[116,30,68,0.017897494315801343],[116,30,69,0.010499929379759243],[116,30,70,0.005088112164284009],[116,30,71,-0.0013698099549557252],[116,30,72,-0.003720162872663385],[116,30,73,-0.004154752515650534],[116,30,74,-0.004711481224510317],[116,30,75,-0.005702173019203366],[116,30,76,-0.00978720355617907],[116,30,77,-0.010323988485766628],[116,30,78,-0.013028759635724058],[116,30,79,-0.0179321931417937],[116,31,64,0.028370838962535477],[116,31,65,0.029356403246446894],[116,31,66,0.02769234656003955],[116,31,67,0.0247653132093065],[116,31,68,0.01841462912526301],[116,31,69,0.009482479055175325],[116,31,70,0.00360568773667555],[116,31,71,-0.0024037368551718674],[116,31,72,-0.006261170866416005],[116,31,73,-0.006522266938241844],[116,31,74,-0.005940012109865639],[116,31,75,-0.009097932994058422],[116,31,76,-0.015618617903844528],[116,31,77,-0.017377375668361117],[116,31,78,-0.01760650789603828],[116,31,79,-0.018521869134391064],[116,32,64,0.0403780066342215],[116,32,65,0.04177674985362412],[116,32,66,0.039292925389270233],[116,32,67,0.03600182966799492],[116,32,68,0.0286420879323942],[116,32,69,0.017000615175705086],[116,32,70,0.011670006972568453],[116,32,71,0.009153300152333732],[116,32,72,0.00431690572987653],[116,32,73,0.0022048948738263574],[116,32,74,7.308402656376334E-4],[116,32,75,-0.0016408420110022859],[116,32,76,-0.008326252213509688],[116,32,77,-0.011778334511100302],[116,32,78,-0.011765744495797814],[116,32,79,-0.01132320546283866],[116,33,64,0.03412738105739899],[116,33,65,0.03843985172355183],[116,33,66,0.03859192951977039],[116,33,67,0.034642035461062454],[116,33,68,0.024980090152767392],[116,33,69,0.011688445585967489],[116,33,70,0.007287116542564365],[116,33,71,0.003098991712555371],[116,33,72,-0.004886125011669629],[116,33,73,-0.011346770693505731],[116,33,74,-0.014492948397971522],[116,33,75,-0.01755420114716444],[116,33,76,-0.021447580518388104],[116,33,77,-0.025745651440962136],[116,33,78,-0.023755361924080842],[116,33,79,-0.021380927270115466],[116,34,64,0.034431585277165416],[116,34,65,0.039835447971410004],[116,34,66,0.04337539402351717],[116,34,67,0.03464293987227185],[116,34,68,0.022118594101040334],[116,34,69,0.011780901036502311],[116,34,70,0.0041527357653161345],[116,34,71,-4.7232392947413326E-4],[116,34,72,-0.0061387692593609655],[116,34,73,-0.01342457769940636],[116,34,74,-0.017215731690765124],[116,34,75,-0.020936979577788506],[116,34,76,-0.022215935656560992],[116,34,77,-0.02475120142051336],[116,34,78,-0.02815955298341609],[116,34,79,-0.026949048288816585],[116,35,64,0.03673400423242046],[116,35,65,0.04034572680594442],[116,35,66,0.04306907598857576],[116,35,67,0.03526550314899757],[116,35,68,0.02079044468452984],[116,35,69,0.009702952452884883],[116,35,70,0.00320387281507159],[116,35,71,-8.890401705064499E-4],[116,35,72,-0.008925971371255642],[116,35,73,-0.015853887862729565],[116,35,74,-0.018517371592484122],[116,35,75,-0.022534635298860795],[116,35,76,-0.02398245430560976],[116,35,77,-0.026038303863550827],[116,35,78,-0.028303803946343145],[116,35,79,-0.028936116368025455],[116,36,64,0.03502791951233475],[116,36,65,0.038668200060530095],[116,36,66,0.039453363508506645],[116,36,67,0.02905512634496843],[116,36,68,0.016028187446676306],[116,36,69,0.007395003766722447],[116,36,70,2.4843350494022087E-4],[116,36,71,-0.005861159331705085],[116,36,72,-0.013692812370917046],[116,36,73,-0.020642992548797298],[116,36,74,-0.02588962216024243],[116,36,75,-0.028234748115551225],[116,36,76,-0.027007252069082846],[116,36,77,-0.027589768258825142],[116,36,78,-0.03203053701478993],[116,36,79,-0.03128201560015838],[116,37,64,0.04751658589305052],[116,37,65,0.04788764483776298],[116,37,66,0.041523918193992454],[116,37,67,0.025966554960215688],[116,37,68,0.012573392250492893],[116,37,69,0.0023745392187597136],[116,37,70,-0.004990104392224054],[116,37,71,-0.013586752952215814],[116,37,72,-0.01627650470101337],[116,37,73,-0.020400904923079763],[116,37,74,-0.025410676350985567],[116,37,75,-0.02339766106507192],[116,37,76,-0.025405955246116108],[116,37,77,-0.02409325400634546],[116,37,78,-0.026569984371295874],[116,37,79,-0.02162770356542859],[116,38,64,0.04980821882794326],[116,38,65,0.0494229121166983],[116,38,66,0.040723699344650366],[116,38,67,0.02426552211834615],[116,38,68,0.014803955984929451],[116,38,69,0.006280390327856433],[116,38,70,-0.003168275764425854],[116,38,71,-0.014829241791155398],[116,38,72,-0.016317658047513867],[116,38,73,-0.019941273266745274],[116,38,74,-0.026164002090862448],[116,38,75,-0.02550632146217406],[116,38,76,-0.026062875143703937],[116,38,77,-0.0271701472329942],[116,38,78,-0.02475243930591363],[116,38,79,-0.018793109131865632],[116,39,64,0.051597274701971674],[116,39,65,0.04987506762942759],[116,39,66,0.04014371841483211],[116,39,67,0.02487075617586884],[116,39,68,0.015885773132021802],[116,39,69,0.006535957393016545],[116,39,70,-0.003161295530982766],[116,39,71,-0.014248595699185393],[116,39,72,-0.01630342112021646],[116,39,73,-0.021344648071273287],[116,39,74,-0.024724778786167467],[116,39,75,-0.025405551733285764],[116,39,76,-0.02616306883419621],[116,39,77,-0.029524192008649072],[116,39,78,-0.025594107120702814],[116,39,79,-0.01827434104755772],[116,40,64,0.06369404886002483],[116,40,65,0.05928645829163118],[116,40,66,0.05266581287351013],[116,40,67,0.037332323817047264],[116,40,68,0.02710607847524993],[116,40,69,0.019887782368066736],[116,40,70,0.008874220840930813],[116,40,71,-3.099882568502188E-4],[116,40,72,-0.004976384571136971],[116,40,73,-0.00630012969839247],[116,40,74,-0.008734869577111476],[116,40,75,-0.010952564361015299],[116,40,76,-0.01095176109436019],[116,40,77,-0.015503870397590241],[116,40,78,-0.012287090838571407],[116,40,79,-0.006162294644290772],[116,41,64,0.06256640686843051],[116,41,65,0.060099266355457676],[116,41,66,0.05055686110737459],[116,41,67,0.03571802126353299],[116,41,68,0.0257250752874926],[116,41,69,0.01794121619493147],[116,41,70,0.004937954951224149],[116,41,71,-8.291991579592595E-4],[116,41,72,-0.004780979820082909],[116,41,73,-0.0033248840222049603],[116,41,74,-0.004993746308644964],[116,41,75,-0.008717757315214097],[116,41,76,-0.011008420233248245],[116,41,77,-0.015400616472011047],[116,41,78,-0.014787539946793687],[116,41,79,-0.007708889865276153],[116,42,64,0.060380778433058724],[116,42,65,0.0580027957450181],[116,42,66,0.048929905543005775],[116,42,67,0.03351657140115755],[116,42,68,0.025021139794775993],[116,42,69,0.013490458666956279],[116,42,70,9.469140016745148E-4],[116,42,71,-0.004634008797918893],[116,42,72,-0.005348355260154786],[116,42,73,-0.002519235472288439],[116,42,74,-0.0035527787208563255],[116,42,75,-0.007156524129062647],[116,42,76,-0.010425120655363829],[116,42,77,-0.01512083557764815],[116,42,78,-0.01433976364425854],[116,42,79,-0.008156914313943553],[116,43,64,0.0561902549372173],[116,43,65,0.056074173622760876],[116,43,66,0.04617733424765097],[116,43,67,0.0316475350113328],[116,43,68,0.0237148578374608],[116,43,69,0.010312422794604703],[116,43,70,-9.123708756109405E-4],[116,43,71,-0.0051821775948678594],[116,43,72,-0.005180220940088964],[116,43,73,-0.005176747256358444],[116,43,74,-0.006693715228353714],[116,43,75,-0.007513814037035327],[116,43,76,-0.012540529730329736],[116,43,77,-0.015534779853938196],[116,43,78,-0.011702585293606349],[116,43,79,-0.00677493736360682],[116,44,64,0.0523088482474752],[116,44,65,0.04809426671875364],[116,44,66,0.03993981366128699],[116,44,67,0.027834773880143243],[116,44,68,0.018444137945801214],[116,44,69,0.005124989265646945],[116,44,70,-0.0025107363395877047],[116,44,71,-0.00860309176601931],[116,44,72,-0.010152182124958553],[116,44,73,-0.00989305639916735],[116,44,74,-0.010464286264004058],[116,44,75,-0.010973790738262823],[116,44,76,-0.01803429346531231],[116,44,77,-0.017757990835809326],[116,44,78,-0.015799178353966575],[116,44,79,-0.01069304127533871],[116,45,64,0.03564869243250862],[116,45,65,0.03485123620519351],[116,45,66,0.031242828984795995],[116,45,67,0.02594508439356255],[116,45,68,0.019002754607950173],[116,45,69,0.012618306073511554],[116,45,70,0.012639273282275987],[116,45,71,0.012714328603127406],[116,45,72,0.014597425123709956],[116,45,73,0.015592005958130012],[116,45,74,0.015234940868729674],[116,45,75,0.01417835774888182],[116,45,76,0.007288724215398917],[116,45,77,0.004555920541541414],[116,45,78,0.004662312008528291],[116,45,79,0.005059607380965558],[116,46,64,0.03363897279603065],[116,46,65,0.0295820458338521],[116,46,66,0.028716214594391276],[116,46,67,0.02349064655386246],[116,46,68,0.018412069760973204],[116,46,69,0.011821359810006232],[116,46,70,0.012070245131763968],[116,46,71,0.013921585382267981],[116,46,72,0.016425668581307146],[116,46,73,0.016910237391493388],[116,46,74,0.01809412230912233],[116,46,75,0.01839791786038994],[116,46,76,0.010732228313441755],[116,46,77,0.00914450352680865],[116,46,78,0.005111695131535393],[116,46,79,0.0042951428045736595],[116,47,64,0.03195429340501038],[116,47,65,0.027498350328218374],[116,47,66,0.025990845069119473],[116,47,67,0.022458371501140273],[116,47,68,0.01774763416397046],[116,47,69,0.011001571387462494],[116,47,70,0.012007413064509587],[116,47,71,0.015212191559474453],[116,47,72,0.01781771551479322],[116,47,73,0.01903593989504712],[116,47,74,0.019779658325833088],[116,47,75,0.02002423416311791],[116,47,76,0.014739381797372442],[116,47,77,0.011433846627608962],[116,47,78,0.006098679836154947],[116,47,79,0.00499202789378872],[116,48,64,0.04258362555713069],[116,48,65,0.04266058015797461],[116,48,66,0.03911601373186935],[116,48,67,0.03567718927652985],[116,48,68,0.03200634394472829],[116,48,69,0.02649420254555243],[116,48,70,0.026608254818348498],[116,48,71,0.03033351741021234],[116,48,72,0.03196691924562026],[116,48,73,0.03300357799445458],[116,48,74,0.03620089153561587],[116,48,75,0.03342093538016583],[116,48,76,0.027889247067316658],[116,48,77,0.025421126065272692],[116,48,78,0.021388224505236614],[116,48,79,0.019958850535432004],[116,49,64,0.04172721979765692],[116,49,65,0.045713406802066536],[116,49,66,0.04436019268129748],[116,49,67,0.04148584470079064],[116,49,68,0.03753814329936936],[116,49,69,0.03682817256199264],[116,49,70,0.03480163001586403],[116,49,71,0.032814277335009884],[116,49,72,0.02934341337370497],[116,49,73,0.02606212886518694],[116,49,74,0.02585326118944145],[116,49,75,0.022173200913594954],[116,49,76,0.017793417690779995],[116,49,77,0.013012340345104983],[116,49,78,0.010324791595239718],[116,49,79,0.010306510068439967],[116,50,64,0.03893331453505866],[116,50,65,0.04450926418058648],[116,50,66,0.04255918274741019],[116,50,67,0.04031978708578349],[116,50,68,0.03825745188369725],[116,50,69,0.03786754537305412],[116,50,70,0.03566998392101306],[116,50,71,0.03393796493217571],[116,50,72,0.02650384770384276],[116,50,73,0.023588198356837953],[116,50,74,0.023387913698240337],[116,50,75,0.01995666098091714],[116,50,76,0.018117513518972866],[116,50,77,0.01293458104914244],[116,50,78,0.006214874387214436],[116,50,79,0.0066069237314355655],[116,51,64,0.037481738224903305],[116,51,65,0.041114083552504815],[116,51,66,0.03994242134948775],[116,51,67,0.037599245893510075],[116,51,68,0.03804307690641609],[116,51,69,0.03772353826922936],[116,51,70,0.03374723773880778],[116,51,71,0.032545274734217255],[116,51,72,0.027502162263164764],[116,51,73,0.021546713992542432],[116,51,74,0.020985932922693157],[116,51,75,0.019192844540406206],[116,51,76,0.016587025555503426],[116,51,77,0.010051205489770954],[116,51,78,0.0035233169604057257],[116,51,79,0.003969952880366917],[116,52,64,0.05731341795095482],[116,52,65,0.05867989741528365],[116,52,66,0.05818016070609827],[116,52,67,0.05600154555319736],[116,52,68,0.05970211485633717],[116,52,69,0.06006576050863979],[116,52,70,0.05377517766380002],[116,52,71,0.05209676044606856],[116,52,72,0.04727416386174815],[116,52,73,0.04272575285015057],[116,52,74,0.03972702982735629],[116,52,75,0.037256976120924795],[116,52,76,0.03210738937345259],[116,52,77,0.028275384756626415],[116,52,78,0.021867217707941533],[116,52,79,0.025117457461980935],[116,53,64,0.062184990837620885],[116,53,65,0.061770676356772],[116,53,66,0.05841871714602648],[116,53,67,0.05354401056144084],[116,53,68,0.054990906579392124],[116,53,69,0.051429806393178956],[116,53,70,0.04205716800439652],[116,53,71,0.03687682478446519],[116,53,72,0.035860364281156715],[116,53,73,0.03203175042411313],[116,53,74,0.026056790801205182],[116,53,75,0.02373398075648181],[116,53,76,0.01972807482855571],[116,53,77,0.017145755783790073],[116,53,78,0.015338687142200269],[116,53,79,0.01879823855652854],[116,54,64,0.05953167932583486],[116,54,65,0.059104138434138975],[116,54,66,0.05762456718790529],[116,54,67,0.051555442633427234],[116,54,68,0.05130735785203824],[116,54,69,0.04835074545807694],[116,54,70,0.03988489646683854],[116,54,71,0.036261221655020076],[116,54,72,0.035580847319937325],[116,54,73,0.03153002549270645],[116,54,74,0.02331482171354954],[116,54,75,0.020902145367650338],[116,54,76,0.016959386022258632],[116,54,77,0.013765071939047885],[116,54,78,0.0142402205179544],[116,54,79,0.015590339382169638],[116,55,64,0.05908782042337499],[116,55,65,0.05751130585648534],[116,55,66,0.05425137048340872],[116,55,67,0.04877770279099122],[116,55,68,0.046902678056443076],[116,55,69,0.04389867160011102],[116,55,70,0.03974680607505357],[116,55,71,0.03710577155945896],[116,55,72,0.03303472034339758],[116,55,73,0.02841422442176622],[116,55,74,0.02066892624326716],[116,55,75,0.020007363834487757],[116,55,76,0.014187129475268873],[116,55,77,0.013671221675085915],[116,55,78,0.013960896608054274],[116,55,79,0.015807415717555062],[116,56,64,0.06997142565246733],[116,56,65,0.071033114161208],[116,56,66,0.06589846981178155],[116,56,67,0.055691667785597365],[116,56,68,0.05531994574921559],[116,56,69,0.056067475393171806],[116,56,70,0.054023114446997145],[116,56,71,0.048582887373449124],[116,56,72,0.04461575070926782],[116,56,73,0.040540009631020696],[116,56,74,0.03410052985597767],[116,56,75,0.033624744633642234],[116,56,76,0.02931249210088349],[116,56,77,0.029439057799495127],[116,56,78,0.031528691031813605],[116,56,79,0.032390097872407986],[116,57,64,0.067189462312536],[116,57,65,0.06957656763980527],[116,57,66,0.06459394311072136],[116,57,67,0.05766921784407117],[116,57,68,0.05639679039620385],[116,57,69,0.056670827099313786],[116,57,70,0.054766745414650375],[116,57,71,0.047256865123534414],[116,57,72,0.03872148187527427],[116,57,73,0.030422980960334384],[116,57,74,0.026162353732315263],[116,57,75,0.02337178815148014],[116,57,76,0.020908302986188176],[116,57,77,0.024679555009342158],[116,57,78,0.027615390936713058],[116,57,79,0.02777553184467607],[116,58,64,0.10738159026983513],[116,58,65,0.10666966802387641],[116,58,66,0.10111008781181095],[116,58,67,0.09834295551761589],[116,58,68,0.09442848050765373],[116,58,69,0.09426067302096784],[116,58,70,0.09037181011979123],[116,58,71,0.0812779854781561],[116,58,72,0.07185402539957447],[116,58,73,0.06622316952907355],[116,58,74,0.06116722480243779],[116,58,75,0.0553625909109345],[116,58,76,0.05777240562323836],[116,58,77,0.05905289377781242],[116,58,78,0.060278521825483655],[116,58,79,0.06273474291050377],[116,59,64,0.10312696790106546],[116,59,65,0.10420724778194354],[116,59,66,0.0966167738095706],[116,59,67,0.09451146397207805],[116,59,68,0.09138745067104234],[116,59,69,0.08688466782838299],[116,59,70,0.08446896005464223],[116,59,71,0.07799020537237852],[116,59,72,0.06613685763152191],[116,59,73,0.06333332213331885],[116,59,74,0.056523913149512245],[116,59,75,0.053433706892651714],[116,59,76,0.05625884511173811],[116,59,77,0.05876953514838336],[116,59,78,0.059213279752076825],[116,59,79,0.06062276116469527],[116,60,64,0.09833966158641701],[116,60,65,0.0953986894115735],[116,60,66,0.08654535798127648],[116,60,67,0.08238471678989058],[116,60,68,0.07867285723258273],[116,60,69,0.07762927397280132],[116,60,70,0.07700924891996073],[116,60,71,0.06823657494217832],[116,60,72,0.059297595051596555],[116,60,73,0.05607960327851669],[116,60,74,0.05177575255341013],[116,60,75,0.047760571581582326],[116,60,76,0.05126710208102414],[116,60,77,0.05508437910037754],[116,60,78,0.05339020506713754],[116,60,79,0.05554162592181454],[116,61,64,0.10370329114263294],[116,61,65,0.09345003557392574],[116,61,66,0.07827634077579984],[116,61,67,0.06899057576253965],[116,61,68,0.06021445709561361],[116,61,69,0.05886350950789533],[116,61,70,0.059713727311330456],[116,61,71,0.05538678932193086],[116,61,72,0.055252648542814406],[116,61,73,0.05406811711591156],[116,61,74,0.0529828741997984],[116,61,75,0.048748324041607574],[116,61,76,0.05259481563581864],[116,61,77,0.0576199246400176],[116,61,78,0.05844280686175059],[116,61,79,0.06440119375833822],[116,62,64,0.10219186955272139],[116,62,65,0.0895647806121229],[116,62,66,0.07572752063064199],[116,62,67,0.06376228734806325],[116,62,68,0.05437811953132961],[116,62,69,0.054491330551400916],[116,62,70,0.05804849071336607],[116,62,71,0.05330572085442248],[116,62,72,0.05384995927857604],[116,62,73,0.05360182480210314],[116,62,74,0.05163859528971525],[116,62,75,0.0476194933183272],[116,62,76,0.05250656492212226],[116,62,77,0.0549813911341578],[116,62,78,0.05977097110830985],[116,62,79,0.06537382822128356],[116,63,64,0.026781002654548733],[116,63,65,0.014602199645178435],[116,63,66,-0.0021015651387781137],[116,63,67,-0.011486570405618693],[116,63,68,-0.020874727178751343],[116,63,69,-0.02109515959437093],[116,63,70,-0.017027729642364625],[116,63,71,-0.016468828213956524],[116,63,72,-0.01598047944142121],[116,63,73,-0.016169432073161988],[116,63,74,-0.019409831483939002],[116,63,75,-0.02077916144580362],[116,63,76,-0.015539851033795585],[116,63,77,-0.014758495103653194],[116,63,78,-0.009021104469043292],[116,63,79,-0.003696687993734196],[116,64,64,0.036038747092580106],[116,64,65,0.021177704329365513],[116,64,66,0.004271846728128359],[116,64,67,-0.005799706853505157],[116,64,68,-0.012479340820949328],[116,64,69,-0.015267224561354098],[116,64,70,-0.010087825558166438],[116,64,71,-0.009511622142721388],[116,64,72,-0.007998687650842037],[116,64,73,-0.004685530950696445],[116,64,74,-0.010061736110256167],[116,64,75,-0.00803418699226846],[116,64,76,-0.0038895389342625264],[116,64,77,-3.2565177344973106E-4],[116,64,78,0.001170652643499831],[116,64,79,0.0030860066923487917],[116,65,64,0.0317063041092913],[116,65,65,0.016263836987082142],[116,65,66,5.235883595325896E-4],[116,65,67,-0.007073945477410831],[116,65,68,-0.013675914149634483],[116,65,69,-0.017150354668264547],[116,65,70,-0.014032118053668594],[116,65,71,-0.013245102567397374],[116,65,72,-0.008790490854152538],[116,65,73,-0.0055351578620685266],[116,65,74,-0.011175314473649653],[116,65,75,-0.010007968957716995],[116,65,76,-0.0030577007143234025],[116,65,77,0.0010018988702450438],[116,65,78,-3.3765103131153107E-4],[116,65,79,-0.001169142118126243],[116,66,64,0.021788348182478073],[116,66,65,0.0049811306803311944],[116,66,66,-0.007903351820224544],[116,66,67,-0.016521704446545923],[116,66,68,-0.02116284436884623],[116,66,69,-0.023239157010441103],[116,66,70,-0.02119312694415143],[116,66,71,-0.019667046802163343],[116,66,72,-0.015903700070728388],[116,66,73,-0.013840031350184398],[116,66,74,-0.018267028570869648],[116,66,75,-0.014952966948403937],[116,66,76,-0.008006007322290398],[116,66,77,-0.0073307635843329055],[116,66,78,-0.008326976132064942],[116,66,79,-0.010884974629462155],[116,67,64,0.016901815605785547],[116,67,65,3.196232431109114E-4],[116,67,66,-0.010555225164407642],[116,67,67,-0.0204483792851735],[116,67,68,-0.023894868201414482],[116,67,69,-0.023578773208798226],[116,67,70,-0.02362274905994985],[116,67,71,-0.020059133283309077],[116,67,72,-0.015560952438441217],[116,67,73,-0.01473743561680782],[116,67,74,-0.017070812503890614],[116,67,75,-0.017306465241033075],[116,67,76,-0.011363212162925851],[116,67,77,-0.01314130621352376],[116,67,78,-0.013440372387846233],[116,67,79,-0.014341532633227655],[116,68,64,-0.07595718708930517],[116,68,65,-0.09116094882938695],[116,68,66,-0.10444762861868129],[116,68,67,-0.11373010224510419],[116,68,68,-0.1135841746405033],[116,68,69,-0.11435663572415718],[116,68,70,-0.11152658843347109],[116,68,71,-0.1077797631811005],[116,68,72,-0.10406110944510519],[116,68,73,-0.103589416470796],[116,68,74,-0.10595561711906017],[116,68,75,-0.10690064708665872],[116,68,76,-0.10348245075277823],[116,68,77,-0.10483838796734701],[116,68,78,-0.1039946496186209],[116,68,79,-0.10529536534898931],[116,69,64,-0.08747740630837575],[116,69,65,-0.10050160317975965],[116,69,66,-0.11141326368242344],[116,69,67,-0.11841617224754371],[116,69,68,-0.11212087121061484],[116,69,69,-0.1088843611570921],[116,69,70,-0.10231400285706944],[116,69,71,-0.09246260006543144],[116,69,72,-0.08436496115180803],[116,69,73,-0.08303015609631559],[116,69,74,-0.08585179171140486],[116,69,75,-0.08829021202605683],[116,69,76,-0.08748695665052188],[116,69,77,-0.09445541720210646],[116,69,78,-0.09821348459863209],[116,69,79,-0.10039022606380243],[116,70,64,-0.09199106049899694],[116,70,65,-0.10407190765116835],[116,70,66,-0.11277878515766089],[116,70,67,-0.1215230172947493],[116,70,68,-0.11494974816904376],[116,70,69,-0.11180752034011107],[116,70,70,-0.1041854444978976],[116,70,71,-0.09541364379279958],[116,70,72,-0.0880610763045311],[116,70,73,-0.08580701549669227],[116,70,74,-0.08828397629120105],[116,70,75,-0.0889914354572283],[116,70,76,-0.09070075258123841],[116,70,77,-0.0986908237735939],[116,70,78,-0.10236954864786085],[116,70,79,-0.10490905464048147],[116,71,64,-0.08681192072862576],[116,71,65,-0.09614745014235175],[116,71,66,-0.10584922623910129],[116,71,67,-0.11299644775480544],[116,71,68,-0.10605484908537205],[116,71,69,-0.10256160439420797],[116,71,70,-0.09615175271267987],[116,71,71,-0.0878940168490417],[116,71,72,-0.08085064341629973],[116,71,73,-0.079056715471376],[116,71,74,-0.08194973679574112],[116,71,75,-0.08312979242479732],[116,71,76,-0.08559044218398587],[116,71,77,-0.09262384438383642],[116,71,78,-0.09689708354071372],[116,71,79,-0.0978112746641383],[116,72,64,-0.09220862259733506],[116,72,65,-0.10231593978709248],[116,72,66,-0.11077446907099152],[116,72,67,-0.11433438761725492],[116,72,68,-0.10686730827734868],[116,72,69,-0.10448406841433572],[116,72,70,-0.09937863403140665],[116,72,71,-0.09135358919933022],[116,72,72,-0.0840693903605685],[116,72,73,-0.08110870352637739],[116,72,74,-0.08533020674130773],[116,72,75,-0.08805271161602034],[116,72,76,-0.0916165600878475],[116,72,77,-0.09770119936134615],[116,72,78,-0.10013154401635144],[116,72,79,-0.09857235539527116],[116,73,64,-0.1071785979656591],[116,73,65,-0.11111806649915415],[116,73,66,-0.11102329491306365],[116,73,67,-0.10937486476961573],[116,73,68,-0.10133490051932438],[116,73,69,-0.09972176878483363],[116,73,70,-0.09744073898668114],[116,73,71,-0.09215394477770891],[116,73,72,-0.09073141591635667],[116,73,73,-0.09292405608559579],[116,73,74,-0.09620540213983697],[116,73,75,-0.09870303143826499],[116,73,76,-0.10320768876466198],[116,73,77,-0.10632832580119854],[116,73,78,-0.1070463779198609],[116,73,79,-0.10191306569743958],[116,74,64,-0.11596088529594129],[116,74,65,-0.12155448522094392],[116,74,66,-0.12066981051726067],[116,74,67,-0.1160233530929016],[116,74,68,-0.10890906849028077],[116,74,69,-0.10481382242910275],[116,74,70,-0.10329718646411781],[116,74,71,-0.09873858331140531],[116,74,72,-0.09556371474495157],[116,74,73,-0.09966514586540134],[116,74,74,-0.10455928887516004],[116,74,75,-0.10799699025984796],[116,74,76,-0.11221325848812068],[116,74,77,-0.11595925470303048],[116,74,78,-0.11709794848278954],[116,74,79,-0.11369241703027658],[116,75,64,-0.11863215473915172],[116,75,65,-0.12271005272508592],[116,75,66,-0.12121549195458863],[116,75,67,-0.1172345574265229],[116,75,68,-0.11097448854465639],[116,75,69,-0.1064966326538533],[116,75,70,-0.10385268074529518],[116,75,71,-0.09879351302388993],[116,75,72,-0.09657872992483371],[116,75,73,-0.09992075159200084],[116,75,74,-0.10888343252415705],[116,75,75,-0.11235715989804879],[116,75,76,-0.1169713155415],[116,75,77,-0.11740881535878449],[116,75,78,-0.12069222247790448],[116,75,79,-0.12072242193176805],[116,76,64,-0.11465661200839733],[116,76,65,-0.1180292372100945],[116,76,66,-0.11683960059726653],[116,76,67,-0.11308467027010086],[116,76,68,-0.10806201703198644],[116,76,69,-0.10428188789227284],[116,76,70,-0.10046455159308113],[116,76,71,-0.09740925168645788],[116,76,72,-0.09725173617541329],[116,76,73,-0.101303748062628],[116,76,74,-0.11161757432399956],[116,76,75,-0.1162554998575874],[116,76,76,-0.11718597291567052],[116,76,77,-0.11739296084810434],[116,76,78,-0.12133582138296058],[116,76,79,-0.12568657436810687],[116,77,64,-0.1148369288386045],[116,77,65,-0.11814707129968599],[116,77,66,-0.11875665514397338],[116,77,67,-0.11893535100595383],[116,77,68,-0.11507082014160235],[116,77,69,-0.11468069699716793],[116,77,70,-0.1117553799817938],[116,77,71,-0.10884954580727094],[116,77,72,-0.1112308599260941],[116,77,73,-0.11621838869925445],[116,77,74,-0.12414414224723792],[116,77,75,-0.12777217026447488],[116,77,76,-0.12794774264250267],[116,77,77,-0.12936164660040583],[116,77,78,-0.13206616567557566],[116,77,79,-0.13766770935140835],[116,78,64,-0.11776896645285842],[116,78,65,-0.11962423750037482],[116,78,66,-0.12284488235581059],[116,78,67,-0.12166093973054862],[116,78,68,-0.11786354792683204],[116,78,69,-0.11638913591784802],[116,78,70,-0.11225884931720609],[116,78,71,-0.11341374359888391],[116,78,72,-0.11370665109848191],[116,78,73,-0.12005236958376131],[116,78,74,-0.12630521489202498],[116,78,75,-0.13094216666914615],[116,78,76,-0.13091844355501192],[116,78,77,-0.1340553805109345],[116,78,78,-0.1386751617681204],[116,78,79,-0.1441562768544522],[116,79,64,-0.10806359818774591],[116,79,65,-0.11002997607230687],[116,79,66,-0.1136295803349512],[116,79,67,-0.11253053431278472],[116,79,68,-0.10997988631490159],[116,79,69,-0.10887802542635622],[116,79,70,-0.10367223285951781],[116,79,71,-0.10493112226949165],[116,79,72,-0.10485304516014506],[116,79,73,-0.11295544963853991],[116,79,74,-0.12003839990104168],[116,79,75,-0.1258857174248449],[116,79,76,-0.12566317476035493],[116,79,77,-0.13070899847094186],[116,79,78,-0.13485856205285845],[116,79,79,-0.13995060203244067],[116,80,64,-0.10994731958346164],[116,80,65,-0.11064286728923456],[116,80,66,-0.11334516158102939],[116,80,67,-0.11355000179361756],[116,80,68,-0.11108805690558425],[116,80,69,-0.11096492457701583],[116,80,70,-0.10579868110173572],[116,80,71,-0.10846750262893884],[116,80,72,-0.10878011372539857],[116,80,73,-0.11691127299442594],[116,80,74,-0.12308588441101656],[116,80,75,-0.12826455431367206],[116,80,76,-0.12908712078251797],[116,80,77,-0.1357576168995087],[116,80,78,-0.14125655679718133],[116,80,79,-0.14449441727171963],[116,81,64,-0.10819375992108429],[116,81,65,-0.10629227975299207],[116,81,66,-0.10851932345493676],[116,81,67,-0.10556745762359161],[116,81,68,-0.10483937361837656],[116,81,69,-0.10399432288770384],[116,81,70,-0.10157760652235014],[116,81,71,-0.10160297684224251],[116,81,72,-0.1024954180132086],[116,81,73,-0.11050741101023413],[116,81,74,-0.1183223184644625],[116,81,75,-0.1225942560077822],[116,81,76,-0.12720529191748742],[116,81,77,-0.1383129410008169],[116,81,78,-0.14854747224919249],[116,81,79,-0.15480538800078256],[116,82,64,-0.1144285284795503],[116,82,65,-0.11417150698751602],[116,82,66,-0.11522064880104324],[116,82,67,-0.11301153695123539],[116,82,68,-0.1104441784178643],[116,82,69,-0.10848649014456897],[116,82,70,-0.10851759961953715],[116,82,71,-0.10831718860781255],[116,82,72,-0.11070893246307581],[116,82,73,-0.11696381955102075],[116,82,74,-0.1276669516305822],[116,82,75,-0.13368720589675875],[116,82,76,-0.1358797599402706],[116,82,77,-0.14696853581940222],[116,82,78,-0.15802574612500075],[116,82,79,-0.1646426435452068],[116,83,64,-0.11310709409021084],[116,83,65,-0.11458431631988217],[116,83,66,-0.11256998296509273],[116,83,67,-0.1117648801558484],[116,83,68,-0.1115343376680358],[116,83,69,-0.11276501830197738],[116,83,70,-0.11235066264412137],[116,83,71,-0.11386665228146124],[116,83,72,-0.11798711361184608],[116,83,73,-0.12174304829009333],[116,83,74,-0.13063967409991878],[116,83,75,-0.13771529875500255],[116,83,76,-0.139989423014047],[116,83,77,-0.14957045036678127],[116,83,78,-0.16487887449790367],[116,83,79,-0.16925780564150883],[116,84,64,-0.11322563300471561],[116,84,65,-0.1112805092533564],[116,84,66,-0.1103431755493322],[116,84,67,-0.11033329587965768],[116,84,68,-0.11045384851843588],[116,84,69,-0.11352814447851109],[116,84,70,-0.11797052358517626],[116,84,71,-0.11968322725434782],[116,84,72,-0.12155325249146434],[116,84,73,-0.12454199525665678],[116,84,74,-0.13356671315915392],[116,84,75,-0.13929145341374222],[116,84,76,-0.14408303455378552],[116,84,77,-0.1529414403855179],[116,84,78,-0.16750895660980333],[116,84,79,-0.1726150613740045],[116,85,64,-0.12405692160242791],[116,85,65,-0.1259412731904791],[116,85,66,-0.12770758645697716],[116,85,67,-0.13098532964774473],[116,85,68,-0.13260369980463288],[116,85,69,-0.1361850405852293],[116,85,70,-0.1417486801083489],[116,85,71,-0.1434941991587938],[116,85,72,-0.14246898765705604],[116,85,73,-0.14518685107266946],[116,85,74,-0.1549376933186506],[116,85,75,-0.1626965282861516],[116,85,76,-0.16778057175652336],[116,85,77,-0.16799777172138847],[116,85,78,-0.17441917714572114],[116,85,79,-0.17425203616140722],[116,86,64,-0.1254676370279614],[116,86,65,-0.12983092140337676],[116,86,66,-0.1332016655009256],[116,86,67,-0.13325654753579164],[116,86,68,-0.13610152660182961],[116,86,69,-0.13945728942537539],[116,86,70,-0.14580035366892152],[116,86,71,-0.14498120436926404],[116,86,72,-0.14662121296989977],[116,86,73,-0.1482245247039911],[116,86,74,-0.15725024292613593],[116,86,75,-0.16540133288722494],[116,86,76,-0.1725609162312371],[116,86,77,-0.17238789008411118],[116,86,78,-0.1777045986218097],[116,86,79,-0.17609997462094323],[116,87,64,-0.11885015315609329],[116,87,65,-0.12204639808334777],[116,87,66,-0.127835078228716],[116,87,67,-0.12992947890353543],[116,87,68,-0.1318051484083283],[116,87,69,-0.13416474910714873],[116,87,70,-0.1381051203688054],[116,87,71,-0.13657266208638036],[116,87,72,-0.13889231165721536],[116,87,73,-0.1420897432232838],[116,87,74,-0.1497424941198428],[116,87,75,-0.1586270147910845],[116,87,76,-0.16498329250931337],[116,87,77,-0.16801257075131987],[116,87,78,-0.1716188262655035],[116,87,79,-0.1697917538900786],[116,88,64,-0.12142303660714175],[116,88,65,-0.12441457658383658],[116,88,66,-0.13125780712892765],[116,88,67,-0.13310518774809504],[116,88,68,-0.135649173502883],[116,88,69,-0.13705229470589658],[116,88,70,-0.14081705767657027],[116,88,71,-0.138625294461802],[116,88,72,-0.14165909921550596],[116,88,73,-0.14445260471719495],[116,88,74,-0.15431861023882154],[116,88,75,-0.16042817954647576],[116,88,76,-0.164771841267213],[116,88,77,-0.1692509953160265],[116,88,78,-0.17258879563219387],[116,88,79,-0.17160668905632012],[116,89,64,-0.12469250237921156],[116,89,65,-0.12702804698210673],[116,89,66,-0.13240273580244996],[116,89,67,-0.13468578794134656],[116,89,68,-0.13775488623311027],[116,89,69,-0.13785566754242198],[116,89,70,-0.14156669248683956],[116,89,71,-0.14261551867679662],[116,89,72,-0.14391590610441576],[116,89,73,-0.1473054356457499],[116,89,74,-0.1562311631238865],[116,89,75,-0.16229129424811214],[116,89,76,-0.16395932856833367],[116,89,77,-0.16825990440910168],[116,89,78,-0.17443921425573838],[116,89,79,-0.17306347627156482],[116,90,64,-0.1303474444781017],[116,90,65,-0.13302994307972812],[116,90,66,-0.137634453887782],[116,90,67,-0.1403799202672468],[116,90,68,-0.14574295725492784],[116,90,69,-0.14476818782098508],[116,90,70,-0.1471112509880625],[116,90,71,-0.14854806118654074],[116,90,72,-0.1519224489582019],[116,90,73,-0.15508747237516288],[116,90,74,-0.16221835782760485],[116,90,75,-0.16765088937663386],[116,90,76,-0.16749059280242348],[116,90,77,-0.17202783552480125],[116,90,78,-0.17906455382124564],[116,90,79,-0.17991637392017998],[116,91,64,-0.1301680236653722],[116,91,65,-0.1343413741815071],[116,91,66,-0.13764513644479495],[116,91,67,-0.14042813700876772],[116,91,68,-0.1468898376789476],[116,91,69,-0.146309585297502],[116,91,70,-0.1480597169827332],[116,91,71,-0.1482575497246142],[116,91,72,-0.15226312511424275],[116,91,73,-0.15681742479997623],[116,91,74,-0.16187856347021073],[116,91,75,-0.16461835714007567],[116,91,76,-0.16660093029773315],[116,91,77,-0.17201531641998408],[116,91,78,-0.1761350981663816],[116,91,79,-0.17885887212511903],[116,92,64,-0.11035547232939223],[116,92,65,-0.11439613466153073],[116,92,66,-0.11665504114064645],[116,92,67,-0.11739919662407101],[116,92,68,-0.12423692346884674],[116,92,69,-0.12535748544547842],[116,92,70,-0.12862593596836325],[116,92,71,-0.1307985649897272],[116,92,72,-0.13330594923795405],[116,92,73,-0.13736631839038677],[116,92,74,-0.13979702963007073],[116,92,75,-0.14472649484642194],[116,92,76,-0.1468839078626113],[116,92,77,-0.14972396379919034],[116,92,78,-0.15672514666486098],[116,92,79,-0.1604799534699478],[116,93,64,-0.11730622022058457],[116,93,65,-0.12186654287127102],[116,93,66,-0.12082297947699022],[116,93,67,-0.12121469527382811],[116,93,68,-0.12772632838786524],[116,93,69,-0.13187599070850028],[116,93,70,-0.1336530958623065],[116,93,71,-0.13099714885594418],[116,93,72,-0.1292838797947358],[116,93,73,-0.1274957756713399],[116,93,74,-0.1310568498019119],[116,93,75,-0.13438068450803214],[116,93,76,-0.140101336754346],[116,93,77,-0.14957544234864467],[116,93,78,-0.16054777474731485],[116,93,79,-0.16777968925319636],[116,94,64,-0.11885770477831137],[116,94,65,-0.12091636676729293],[116,94,66,-0.1223523362627035],[116,94,67,-0.12447941418095919],[116,94,68,-0.1294435546102827],[116,94,69,-0.13301065995269076],[116,94,70,-0.1346827652640878],[116,94,71,-0.1317008259476447],[116,94,72,-0.1254542955795499],[116,94,73,-0.12624813506456306],[116,94,74,-0.1302324375499509],[116,94,75,-0.13145226649561093],[116,94,76,-0.14176728701237068],[116,94,77,-0.1502434379470384],[116,94,78,-0.16202872576384886],[116,94,79,-0.16902622599481193],[116,95,64,-0.10820218593748551],[116,95,65,-0.10965161921040292],[116,95,66,-0.11405721603147265],[116,95,67,-0.11557418981547332],[116,95,68,-0.11976847541561397],[116,95,69,-0.12284595550836466],[116,95,70,-0.12324264113193169],[116,95,71,-0.12318125118666556],[116,95,72,-0.11659439000773333],[116,95,73,-0.1164779257956089],[116,95,74,-0.12080861939920588],[116,95,75,-0.12509016546797272],[116,95,76,-0.13603532345276395],[116,95,77,-0.14475070428965],[116,95,78,-0.1551629582258058],[116,95,79,-0.16172709258156842],[116,96,64,-0.10865610218089695],[116,96,65,-0.10920284641246453],[116,96,66,-0.1140717807278243],[116,96,67,-0.11752650592687901],[116,96,68,-0.11768308540896391],[116,96,69,-0.12016736098356127],[116,96,70,-0.1218180615696336],[116,96,71,-0.122649037381616],[116,96,72,-0.11668295934464398],[116,96,73,-0.11642104923567215],[116,96,74,-0.12116949091121253],[116,96,75,-0.12748224121473953],[116,96,76,-0.1379652385161782],[116,96,77,-0.1474311076602511],[116,96,78,-0.15579466737238343],[116,96,79,-0.16401999446785281],[116,97,64,-0.10138356130328396],[116,97,65,-0.10112694938004196],[116,97,66,-0.10493095271529747],[116,97,67,-0.1066042752460847],[116,97,68,-0.10799646783903821],[116,97,69,-0.10912419949896879],[116,97,70,-0.11542482536087971],[116,97,71,-0.12137235688006207],[116,97,72,-0.12149628225490858],[116,97,73,-0.12508101073339745],[116,97,74,-0.12849229917936597],[116,97,75,-0.13684450113768384],[116,97,76,-0.14610732369581234],[116,97,77,-0.15069284165982577],[116,97,78,-0.1532294365283582],[116,97,79,-0.15773057512086744],[116,98,64,-0.10800482040619427],[116,98,65,-0.10667241756570231],[116,98,66,-0.10951108710665824],[116,98,67,-0.11018774105709514],[116,98,68,-0.11243343463624476],[116,98,69,-0.11357093709593939],[116,98,70,-0.12202912380819089],[116,98,71,-0.12677726355198138],[116,98,72,-0.1273310211260312],[116,98,73,-0.13131644299459383],[116,98,74,-0.13603570551638616],[116,98,75,-0.14397269976794846],[116,98,76,-0.15085246422318727],[116,98,77,-0.15334611000326637],[116,98,78,-0.15535697790279263],[116,98,79,-0.1605523071140409],[116,99,64,-0.10639755331879452],[116,99,65,-0.10629406636798297],[116,99,66,-0.1081879359601661],[116,99,67,-0.11060658452582475],[116,99,68,-0.11159016341429462],[116,99,69,-0.1149199550575212],[116,99,70,-0.1210912561166872],[116,99,71,-0.1243577091898056],[116,99,72,-0.12955851993851306],[116,99,73,-0.13219181779944433],[116,99,74,-0.13931303717615529],[116,99,75,-0.14645598159772466],[116,99,76,-0.15107686847469143],[116,99,77,-0.15275175448753997],[116,99,78,-0.15325528890619006],[116,99,79,-0.15843365556099115],[116,100,64,-0.06866271292587062],[116,100,65,-0.06532476555774391],[116,100,66,-0.06504198721488719],[116,100,67,-0.06512801828141365],[116,100,68,-0.061848403604559093],[116,100,69,-0.06715187205004511],[116,100,70,-0.0686146440649276],[116,100,71,-0.06862459178862604],[116,100,72,-0.0750236932823368],[116,100,73,-0.08055089967296261],[116,100,74,-0.08577109953544163],[116,100,75,-0.09041708017853736],[116,100,76,-0.09489739951720627],[116,100,77,-0.09839183248139052],[116,100,78,-0.09829820572430176],[116,100,79,-0.10273822731640823],[116,101,64,-0.06661960899541236],[116,101,65,-0.06326178023040283],[116,101,66,-0.06536176178291991],[116,101,67,-0.06581749697869044],[116,101,68,-0.0632244930251386],[116,101,69,-0.06787694625151389],[116,101,70,-0.06809475662825033],[116,101,71,-0.06935737911820898],[116,101,72,-0.07431875393817085],[116,101,73,-0.08137190180467879],[116,101,74,-0.08633217333865341],[116,101,75,-0.0892888447463206],[116,101,76,-0.09329396491243876],[116,101,77,-0.09830762534340509],[116,101,78,-0.09799821577528262],[116,101,79,-0.10237625572613024],[116,102,64,-0.06637596227503348],[116,102,65,-0.06534553719393935],[116,102,66,-0.06789749251633254],[116,102,67,-0.06801511684491812],[116,102,68,-0.06797143873961471],[116,102,69,-0.07019256401904175],[116,102,70,-0.06902885830376745],[116,102,71,-0.06955554353559713],[116,102,72,-0.07573623397022594],[116,102,73,-0.08158585437002767],[116,102,74,-0.08614352655308763],[116,102,75,-0.08967617226708371],[116,102,76,-0.09107668357295245],[116,102,77,-0.09625174630368018],[116,102,78,-0.0977775793187877],[116,102,79,-0.10450420883241324],[116,103,64,-0.05931306418979334],[116,103,65,-0.06106390827535113],[116,103,66,-0.0633202941977619],[116,103,67,-0.06233920399412439],[116,103,68,-0.06322893379220115],[116,103,69,-0.062131941015949814],[116,103,70,-0.06290762568327686],[116,103,71,-0.06339774882923366],[116,103,72,-0.06893246551665173],[116,103,73,-0.07719131730167317],[116,103,74,-0.08203950947251282],[116,103,75,-0.08439424058080114],[116,103,76,-0.08674101888836128],[116,103,77,-0.0919266276651267],[116,103,78,-0.09406119970181161],[116,103,79,-0.10403544486245142],[116,104,64,-0.062451112465952835],[116,104,65,-0.06445965328991735],[116,104,66,-0.06699932561821598],[116,104,67,-0.06668544627517362],[116,104,68,-0.0653045723317575],[116,104,69,-0.0643918303221676],[116,104,70,-0.06382426701568787],[116,104,71,-0.06364937691405653],[116,104,72,-0.07035035722979349],[116,104,73,-0.07801621147186644],[116,104,74,-0.08183608132792916],[116,104,75,-0.08367882140713895],[116,104,76,-0.08794898096882586],[116,104,77,-0.09320829213030843],[116,104,78,-0.09734090549465461],[116,104,79,-0.10802492590761287],[116,105,64,-0.05924946708220481],[116,105,65,-0.06019069972163363],[116,105,66,-0.06131413812520739],[116,105,67,-0.05995397849200798],[116,105,68,-0.060153500545830255],[116,105,69,-0.05952712586189157],[116,105,70,-0.05680975422309491],[116,105,71,-0.055643325844104724],[116,105,72,-0.06133435613800052],[116,105,73,-0.06782220409011483],[116,105,74,-0.06872770872352846],[116,105,75,-0.07361799416580454],[116,105,76,-0.08262861817458739],[116,105,77,-0.09505381049662541],[116,105,78,-0.10641296747807549],[116,105,79,-0.1184012470700055],[116,106,64,-0.0663757708003979],[116,106,65,-0.06696359352631724],[116,106,66,-0.065778485814383],[116,106,67,-0.06651262393640678],[116,106,68,-0.06677699336918314],[116,106,69,-0.06387928589533964],[116,106,70,-0.062093099463392115],[116,106,71,-0.05921178255897505],[116,106,72,-0.06705584954708917],[116,106,73,-0.07092616089692552],[116,106,74,-0.07254295607397035],[116,106,75,-0.08067639998130338],[116,106,76,-0.08997102027629712],[116,106,77,-0.10389418704252615],[116,106,78,-0.11300802226004056],[116,106,79,-0.12299052198615434],[116,107,64,-0.06535694857854404],[116,107,65,-0.06792460690450894],[116,107,66,-0.06745328372619645],[116,107,67,-0.06659061220994011],[116,107,68,-0.06760685430742794],[116,107,69,-0.06574404074249436],[116,107,70,-0.06333350213933343],[116,107,71,-0.06019337297077926],[116,107,72,-0.06652998210801957],[116,107,73,-0.07150518780856968],[116,107,74,-0.07272714092014351],[116,107,75,-0.0828375188041846],[116,107,76,-0.09235513761758098],[116,107,77,-0.10435782626879242],[116,107,78,-0.11385806648300778],[116,107,79,-0.12101273778007471],[116,108,64,-0.07191525630921808],[116,108,65,-0.07392528202196832],[116,108,66,-0.07503710271303415],[116,108,67,-0.07310899801529656],[116,108,68,-0.07319057177442492],[116,108,69,-0.07099467057691705],[116,108,70,-0.06729062773446677],[116,108,71,-0.06731699481863736],[116,108,72,-0.07148157449493768],[116,108,73,-0.0767402505441945],[116,108,74,-0.07920270772749419],[116,108,75,-0.08813576122640891],[116,108,76,-0.09786080603060368],[116,108,77,-0.10986584040761663],[116,108,78,-0.11967407698894361],[116,108,79,-0.1286091809029436],[116,109,64,-0.08321846278604902],[116,109,65,-0.0855860180938667],[116,109,66,-0.08987958918873792],[116,109,67,-0.08776183582079566],[116,109,68,-0.08675330151596145],[116,109,69,-0.08366399767030462],[116,109,70,-0.08376457700569888],[116,109,71,-0.08177436693094187],[116,109,72,-0.08521371745899275],[116,109,73,-0.08973225262896972],[116,109,74,-0.09291466077868653],[116,109,75,-0.09835706267710315],[116,109,76,-0.10656193014422086],[116,109,77,-0.11320007237392421],[116,109,78,-0.11987033377889526],[116,109,79,-0.12183463025564734],[116,110,64,-0.08412498809022508],[116,110,65,-0.08946750841734334],[116,110,66,-0.09371825210796897],[116,110,67,-0.09168311794810523],[116,110,68,-0.09091736270703396],[116,110,69,-0.08940184549603256],[116,110,70,-0.08764319365866297],[116,110,71,-0.08660746416535123],[116,110,72,-0.08759347533196322],[116,110,73,-0.09251556733898492],[116,110,74,-0.09763598428253882],[116,110,75,-0.1006262511641115],[116,110,76,-0.10579442389033869],[116,110,77,-0.11384288052564277],[116,110,78,-0.12000590996116256],[116,110,79,-0.12264192606401127],[116,111,64,-0.07788043046634774],[116,111,65,-0.08420483674612025],[116,111,66,-0.0892670215908822],[116,111,67,-0.08695832083169495],[116,111,68,-0.08979060986026982],[116,111,69,-0.08802548362326604],[116,111,70,-0.08608930989400111],[116,111,71,-0.08474420681332],[116,111,72,-0.08706862661933427],[116,111,73,-0.08957548044571016],[116,111,74,-0.09735713349411756],[116,111,75,-0.09952109425212634],[116,111,76,-0.10360534732898995],[116,111,77,-0.11221934300344247],[116,111,78,-0.11787443842107659],[116,111,79,-0.12075664270800641],[116,112,64,-0.08018289193537818],[116,112,65,-0.08924531601402219],[116,112,66,-0.09318978077058512],[116,112,67,-0.09022544255761476],[116,112,68,-0.09488552733344369],[116,112,69,-0.09184058408907553],[116,112,70,-0.08856511583618765],[116,112,71,-0.08823281072993874],[116,112,72,-0.0893038814271927],[116,112,73,-0.09120561200836531],[116,112,74,-0.09780890425344932],[116,112,75,-0.10184557068777514],[116,112,76,-0.10688163183821892],[116,112,77,-0.11528527474019838],[116,112,78,-0.11936941108039509],[116,112,79,-0.11974658424986952],[116,113,64,-0.08129722648419078],[116,113,65,-0.09072154662043064],[116,113,66,-0.0970712780108921],[116,113,67,-0.09410111435286568],[116,113,68,-0.09622768957241501],[116,113,69,-0.09348467840387334],[116,113,70,-0.08901682819273037],[116,113,71,-0.0902918766510023],[116,113,72,-0.09235674456686739],[116,113,73,-0.09434322241846478],[116,113,74,-0.10164546751033195],[116,113,75,-0.10407399379764304],[116,113,76,-0.10762089805212216],[116,113,77,-0.1155998393549155],[116,113,78,-0.11940424779027178],[116,113,79,-0.1182073821321563],[116,114,64,-0.08804068089165763],[116,114,65,-0.09685822347769571],[116,114,66,-0.10122544263013852],[116,114,67,-0.10016519089501137],[116,114,68,-0.10146728582380946],[116,114,69,-0.09975725558897518],[116,114,70,-0.09392577285960306],[116,114,71,-0.09919399616966168],[116,114,72,-0.1015119428301716],[116,114,73,-0.10504904685716064],[116,114,74,-0.11151433540007039],[116,114,75,-0.11075975975372304],[116,114,76,-0.11481334937169019],[116,114,77,-0.12279241518653021],[116,114,78,-0.12314781112480595],[116,114,79,-0.1203382191324858],[116,115,64,-0.08884214923370709],[116,115,65,-0.09869391214217987],[116,115,66,-0.10082386030666408],[116,115,67,-0.09799815115576592],[116,115,68,-0.10037623491431935],[116,115,69,-0.10109546562877386],[116,115,70,-0.09600787508915007],[116,115,71,-0.10296361665737498],[116,115,72,-0.10714719480843753],[116,115,73,-0.1097698047123685],[116,115,74,-0.11569778545547321],[116,115,75,-0.11206878457040106],[116,115,76,-0.11447724302551662],[116,115,77,-0.12090852796839585],[116,115,78,-0.12310623208186763],[116,115,79,-0.1231198505785305],[116,116,64,-0.06887560016221125],[116,116,65,-0.07990739059227414],[116,116,66,-0.08676103223761375],[116,116,67,-0.08959208043538815],[116,116,68,-0.09499554823259941],[116,116,69,-0.09865079862125781],[116,116,70,-0.09579679189900565],[116,116,71,-0.10158716481244293],[116,116,72,-0.10709554339347901],[116,116,73,-0.11228430612978615],[116,116,74,-0.11631753228690031],[116,116,75,-0.11117305440948314],[116,116,76,-0.11023188558916197],[116,116,77,-0.11497946405246842],[116,116,78,-0.11697716366361852],[116,116,79,-0.1143618308341427],[116,117,64,-0.07643504992906383],[116,117,65,-0.08369749825640989],[116,117,66,-0.08609610825046121],[116,117,67,-0.09065747686430982],[116,117,68,-0.09481657549492667],[116,117,69,-0.09686128927664768],[116,117,70,-0.09825548570385434],[116,117,71,-0.10207734841699223],[116,117,72,-0.1087799082377178],[116,117,73,-0.11338262221433254],[116,117,74,-0.11640764820013985],[116,117,75,-0.11133363379833636],[116,117,76,-0.11111884487615412],[116,117,77,-0.11297356360079291],[116,117,78,-0.11417653756189446],[116,117,79,-0.11286552463004183],[116,118,64,-0.07867099486882134],[116,118,65,-0.08400272952677884],[116,118,66,-0.08613637897776176],[116,118,67,-0.09317835615696873],[116,118,68,-0.09629241785263071],[116,118,69,-0.09713227731802226],[116,118,70,-0.10245538458384908],[116,118,71,-0.10581986130582685],[116,118,72,-0.11021246297619504],[116,118,73,-0.11686098353822207],[116,118,74,-0.11587891020997403],[116,118,75,-0.11452990762190071],[116,118,76,-0.11545877279586014],[116,118,77,-0.11524719271210418],[116,118,78,-0.11604120960276022],[116,118,79,-0.1160646653842291],[116,119,64,-0.07288795589368949],[116,119,65,-0.07864908876827892],[116,119,66,-0.07926683235458627],[116,119,67,-0.08853482099470841],[116,119,68,-0.09210690578805314],[116,119,69,-0.09392289365681764],[116,119,70,-0.09940707617130637],[116,119,71,-0.10479655086660654],[116,119,72,-0.10916521858415022],[116,119,73,-0.11437263648977872],[116,119,74,-0.1142714897367087],[116,119,75,-0.11343965279123411],[116,119,76,-0.11645553183841362],[116,119,77,-0.11680730346903247],[116,119,78,-0.11867167454947247],[116,119,79,-0.1170317992502907],[116,120,64,-0.07226873558319338],[116,120,65,-0.07818386831123224],[116,120,66,-0.082174668583119],[116,120,67,-0.08879466370015746],[116,120,68,-0.0955734251901793],[116,120,69,-0.09907813776256197],[116,120,70,-0.10269952432498616],[116,120,71,-0.10822466292909795],[116,120,72,-0.11142219636540379],[116,120,73,-0.11108898239801668],[116,120,74,-0.1139314059284639],[116,120,75,-0.11318234515013822],[116,120,76,-0.1156940277874278],[116,120,77,-0.1175950268337422],[116,120,78,-0.11996673502403424],[116,120,79,-0.11881367516139837],[116,121,64,-0.06175323446084621],[116,121,65,-0.06966988962555007],[116,121,66,-0.07823396335567243],[116,121,67,-0.08740565901794327],[116,121,68,-0.0952004462657225],[116,121,69,-0.10167649660946994],[116,121,70,-0.10410662497665711],[116,121,71,-0.10891717939476572],[116,121,72,-0.11199020206625317],[116,121,73,-0.11260261825173587],[116,121,74,-0.11132357988923791],[116,121,75,-0.113443264941552],[116,121,76,-0.1161746979040154],[116,121,77,-0.12096443464608742],[116,121,78,-0.13004993285595073],[116,121,79,-0.12933831105721127],[116,122,64,-0.06490930714460247],[116,122,65,-0.07247805000743221],[116,122,66,-0.08160178891672962],[116,122,67,-0.0911406351685882],[116,122,68,-0.09982958831644013],[116,122,69,-0.10638707532738385],[116,122,70,-0.1107950934682548],[116,122,71,-0.11696025816305818],[116,122,72,-0.11963857751507243],[116,122,73,-0.12011682196160131],[116,122,74,-0.11898771502724055],[116,122,75,-0.12034679633631351],[116,122,76,-0.12316603224203823],[116,122,77,-0.12568783935858366],[116,122,78,-0.13490447414979762],[116,122,79,-0.13492455874828607],[116,123,64,-0.060308229788198935],[116,123,65,-0.07066367360594074],[116,123,66,-0.08114576030003477],[116,123,67,-0.09210109428452667],[116,123,68,-0.10129118431876938],[116,123,69,-0.10651300606362499],[116,123,70,-0.10911861550283784],[116,123,71,-0.1161361534505915],[116,123,72,-0.12166824217922226],[116,123,73,-0.12287624406992548],[116,123,74,-0.1242189054391268],[116,123,75,-0.12170020872431048],[116,123,76,-0.12296768949511759],[116,123,77,-0.12740209528870297],[116,123,78,-0.13573209082022028],[116,123,79,-0.13707825866173445],[116,124,64,-0.056785536835724154],[116,124,65,-0.06983883552541104],[116,124,66,-0.08029173361707789],[116,124,67,-0.090831214943114],[116,124,68,-0.09971701596137673],[116,124,69,-0.10696837427333653],[116,124,70,-0.10972399136108825],[116,124,71,-0.11464770328070484],[116,124,72,-0.12140155002141942],[116,124,73,-0.12214856582335053],[116,124,74,-0.12643878040854498],[116,124,75,-0.12283771410924328],[116,124,76,-0.12418497214357097],[116,124,77,-0.1298511512546845],[116,124,78,-0.1389143504232044],[116,124,79,-0.14269667964754706],[116,125,64,-0.0544939402671069],[116,125,65,-0.06722824855544937],[116,125,66,-0.07853268375909828],[116,125,67,-0.08978275760699905],[116,125,68,-0.09837530605330341],[116,125,69,-0.10812708003584122],[116,125,70,-0.11029216553468912],[116,125,71,-0.11381593778554208],[116,125,72,-0.12085102698246394],[116,125,73,-0.12396213279203133],[116,125,74,-0.12820918068717632],[116,125,75,-0.12375195377625353],[116,125,76,-0.12516798518847916],[116,125,77,-0.1315447662315729],[116,125,78,-0.13977467579666875],[116,125,79,-0.1417923182337416],[116,126,64,-0.05249071510674928],[116,126,65,-0.0643068213245991],[116,126,66,-0.07695809295096283],[116,126,67,-0.08740744446819504],[116,126,68,-0.09824753531187966],[116,126,69,-0.10889464573305971],[116,126,70,-0.11038216956082784],[116,126,71,-0.11492826183556741],[116,126,72,-0.12203853550334909],[116,126,73,-0.12495721535125946],[116,126,74,-0.12742800519025932],[116,126,75,-0.12458069454818094],[116,126,76,-0.12554056035411332],[116,126,77,-0.13202892957450496],[116,126,78,-0.13913567913963798],[116,126,79,-0.1680836709010995],[116,127,64,-0.043733169158526874],[116,127,65,-0.05482240987520107],[116,127,66,-0.069495577136931],[116,127,67,-0.08340007990055055],[116,127,68,-0.09146317404887853],[116,127,69,-0.10168540476703851],[116,127,70,-0.10505898086687643],[116,127,71,-0.11189504977261941],[116,127,72,-0.11939434262736603],[116,127,73,-0.12433524404400154],[116,127,74,-0.1252145204287688],[116,127,75,-0.12594910658393593],[116,127,76,-0.12706105148259322],[116,127,77,-0.13134811513324046],[116,127,78,-0.1365615790727992],[116,127,79,-0.15688415647006232],[116,128,64,-0.043682285413259095],[116,128,65,-0.053501758181950694],[116,128,66,-0.06921635708911074],[116,128,67,-0.0828149633926501],[116,128,68,-0.09197332644009383],[116,128,69,-0.10039642803194555],[116,128,70,-0.10622499586680495],[116,128,71,-0.11152395229893788],[116,128,72,-0.11928624350753621],[116,128,73,-0.12464030480837579],[116,128,74,-0.12595501768582856],[116,128,75,-0.12632536961230678],[116,128,76,-0.1266920002042894],[116,128,77,-0.13031395256243328],[116,128,78,-0.1348740389932283],[116,128,79,-0.1737329358914817],[116,129,64,-0.0380877301455671],[116,129,65,-0.0517156599420216],[116,129,66,-0.07346361349583816],[116,129,67,-0.08931020774455989],[116,129,68,-0.10006415999997262],[116,129,69,-0.10736212950698808],[116,129,70,-0.11374056057678757],[116,129,71,-0.11342997046713164],[116,129,72,-0.11511535334947123],[116,129,73,-0.11931192676309271],[116,129,74,-0.11610504978205875],[116,129,75,-0.12069532917498216],[116,129,76,-0.12082966368639314],[116,129,77,-0.12302343168407355],[116,129,78,-0.12315439666546585],[116,129,79,-0.14149085631636862],[116,130,64,-0.041627748213738866],[116,130,65,-0.058432323082373915],[116,130,66,-0.0801927313663196],[116,130,67,-0.09344370819288894],[116,130,68,-0.10486608379716342],[116,130,69,-0.11353947974790113],[116,130,70,-0.12013974490459661],[116,130,71,-0.12063152404854853],[116,130,72,-0.11942007043462122],[116,130,73,-0.1231927152504228],[116,130,74,-0.1493362717253174],[116,130,75,-0.2012031164026325],[116,130,76,-0.26406649573974283],[116,130,77,-0.28415904595963104],[116,130,78,-0.28603646647359515],[116,130,79,-0.29061978589156917],[116,131,64,-0.04362476165604619],[116,131,65,-0.06115178009435517],[116,131,66,-0.07961573684326054],[116,131,67,-0.09330572018753988],[116,131,68,-0.10076268563601884],[116,131,69,-0.11254110886233618],[116,131,70,-0.12120132982824557],[116,131,71,-0.12136508120066429],[116,131,72,-0.11949504435355328],[116,131,73,-0.12092173089380132],[116,131,74,-0.18312398186044865],[116,131,75,-0.23383641563703317],[116,131,76,-0.2775961048126879],[116,131,77,-0.2827777469794537],[116,131,78,-0.28443105772062627],[116,131,79,-0.2887972741665724],[116,132,64,-0.03757128254164056],[116,132,65,-0.056146094556603895],[116,132,66,-0.07343668592721056],[116,132,67,-0.08766390764078706],[116,132,68,-0.09567041443938643],[116,132,69,-0.10856834592530774],[116,132,70,-0.11854268610799318],[116,132,71,-0.12030613357116085],[116,132,72,-0.1180785219619794],[116,132,73,-0.11843833943002938],[116,132,74,-0.18781116773083995],[116,132,75,-0.23983764306876337],[116,132,76,-0.2724971005225081],[116,132,77,-0.2788078729922057],[116,132,78,-0.28258540198940074],[116,132,79,-0.28807761382580765],[116,133,64,-0.04526453836417065],[116,133,65,-0.057978170605467484],[116,133,66,-0.06801003504737978],[116,133,67,-0.07821192131656324],[116,133,68,-0.08582173343162217],[116,133,69,-0.09865009850029224],[116,133,70,-0.11104512080984068],[116,133,71,-0.1177168897282386],[116,133,72,-0.12356697429772931],[116,133,73,-0.14631083504731845],[116,133,74,-0.1896520004138248],[116,133,75,-0.22473774471923938],[116,133,76,-0.2630337661801481],[116,133,77,-0.2711232134226643],[116,133,78,-0.2738525286768986],[116,133,79,-0.28077195655491305],[116,134,64,-0.04593731069712545],[116,134,65,-0.05651073079985014],[116,134,66,-0.06685762179797065],[116,134,67,-0.07809687460271059],[116,134,68,-0.08379626526558301],[116,134,69,-0.09968653679156941],[116,134,70,-0.11165861663967874],[116,134,71,-0.1187135385033379],[116,134,72,-0.12351448376311183],[116,134,73,-0.14880748961991627],[116,134,74,-0.19267937334769933],[116,134,75,-0.22875415207329053],[116,134,76,-0.2592625342988947],[116,134,77,-0.27201953305121274],[116,134,78,-0.2751702049693847],[116,134,79,-0.2822471212390459],[116,135,64,-0.03816540259629472],[116,135,65,-0.04820702179938981],[116,135,66,-0.06228054422817255],[116,135,67,-0.0725836836667128],[116,135,68,-0.081221038163834],[116,135,69,-0.09505129955914267],[116,135,70,-0.10651572516187546],[116,135,71,-0.1173839360441816],[116,135,72,-0.12690533257436282],[116,135,73,-0.13639049243879744],[116,135,74,-0.18328294412352492],[116,135,75,-0.21286082186971517],[116,135,76,-0.2509761154521125],[116,135,77,-0.26293528031592117],[116,135,78,-0.26966757082128856],[116,135,79,-0.2741588125947484],[116,136,64,-0.039779696556998666],[116,136,65,-0.04802653243754794],[116,136,66,-0.06164836866754875],[116,136,67,-0.07411533642983542],[116,136,68,-0.08293148242605088],[116,136,69,-0.09500636477229135],[116,136,70,-0.1059997286057599],[116,136,71,-0.11817521648746343],[116,136,72,-0.12830834986465006],[116,136,73,-0.1422445090112867],[116,136,74,-0.19281258483464225],[116,136,75,-0.22378803846370826],[116,136,76,-0.2591826851259146],[116,136,77,-0.2701213212198641],[116,136,78,-0.27640163403762374],[116,136,79,-0.28131541009731065],[116,137,64,-0.043121438161929274],[116,137,65,-0.04959326485692922],[116,137,66,-0.06257491454684587],[116,137,67,-0.07452535145155492],[116,137,68,-0.08389438542704575],[116,137,69,-0.09640340596658861],[116,137,70,-0.10798457381236154],[116,137,71,-0.1184416382963351],[116,137,72,-0.12830044145422395],[116,137,73,-0.14262960170849906],[116,137,74,-0.1792509639823495],[116,137,75,-0.2035036646550871],[116,137,76,-0.24585495928093337],[116,137,77,-0.2558590599069613],[116,137,78,-0.26330633663151826],[116,137,79,-0.2661618456646797],[116,138,64,-0.05002964825491818],[116,138,65,-0.05836402337944229],[116,138,66,-0.07212826972964893],[116,138,67,-0.08146890300603689],[116,138,68,-0.08957384023487135],[116,138,69,-0.10279975411787959],[116,138,70,-0.11492109979332163],[116,138,71,-0.12526749726747824],[116,138,72,-0.13237364943631336],[116,138,73,-0.1403723602609092],[116,138,74,-0.1716663806841093],[116,138,75,-0.1903072625532791],[116,138,76,-0.2272652999843891],[116,138,77,-0.24399118806103326],[116,138,78,-0.2511315341046156],[116,138,79,-0.25427821364353553],[116,139,64,-0.04825262962322699],[116,139,65,-0.06145762838854987],[116,139,66,-0.07637491616976763],[116,139,67,-0.08311449873093447],[116,139,68,-0.09068566809723291],[116,139,69,-0.10697283886352801],[116,139,70,-0.11765754140583973],[116,139,71,-0.1271642940654782],[116,139,72,-0.1318381263569579],[116,139,73,-0.15119223960233522],[116,139,74,-0.18887785155151376],[116,139,75,-0.2088999111065959],[116,139,76,-0.23632508242682443],[116,139,77,-0.24108386649589358],[116,139,78,-0.24536530980481155],[116,139,79,-0.25150195315675705],[116,140,64,-0.06061289951282957],[116,140,65,-0.07566942655094154],[116,140,66,-0.08673674866935926],[116,140,67,-0.089784416559798],[116,140,68,-0.09523466402953801],[116,140,69,-0.10839910591774413],[116,140,70,-0.11704596731939357],[116,140,71,-0.12339954558285471],[116,140,72,-0.12969341497735032],[116,140,73,-0.15408891418239176],[116,140,74,-0.18972242102732814],[116,140,75,-0.21203722073942327],[116,140,76,-0.23210992865553834],[116,140,77,-0.23670789658538482],[116,140,78,-0.24224415746503614],[116,140,79,-0.24768413340216996],[116,141,64,-0.06602401587122492],[116,141,65,-0.0812327850313928],[116,141,66,-0.09006989793122579],[116,141,67,-0.09541820092730526],[116,141,68,-0.10197055085912746],[116,141,69,-0.11206778692326591],[116,141,70,-0.12015371166716203],[116,141,71,-0.12790685048066658],[116,141,72,-0.1335429406286484],[116,141,73,-0.1531774940423786],[116,141,74,-0.1887885695787878],[116,141,75,-0.21212336770616033],[116,141,76,-0.21871373663010374],[116,141,77,-0.22411074702379052],[116,141,78,-0.2306981902027967],[116,141,79,-0.23865661902941274],[116,142,64,-0.06858241861841209],[116,142,65,-0.08021864929858555],[116,142,66,-0.09166778952281113],[116,142,67,-0.09837115064060764],[116,142,68,-0.10590135810794393],[116,142,69,-0.11398256773893461],[116,142,70,-0.1189080907188013],[116,142,71,-0.12675969913681673],[116,142,72,-0.13128248490368663],[116,142,73,-0.14987555871946942],[116,142,74,-0.1854968740998576],[116,142,75,-0.20504160762927992],[116,142,76,-0.21097016062502702],[116,142,77,-0.21943194742369287],[116,142,78,-0.22725529616598447],[116,142,79,-0.23682452482180322],[116,143,64,-0.06349865841268582],[116,143,65,-0.07588924800352428],[116,143,66,-0.08796533277001614],[116,143,67,-0.09608599988057506],[116,143,68,-0.10459984249134294],[116,143,69,-0.11081308879272751],[116,143,70,-0.11708083601167907],[116,143,71,-0.12670679415434455],[116,143,72,-0.12992654743158977],[116,143,73,-0.14021340819493364],[116,143,74,-0.17090329376978428],[116,143,75,-0.19281405907455013],[116,143,76,-0.2059367524360715],[116,143,77,-0.2100732812368663],[116,143,78,-0.2162881452769385],[116,143,79,-0.22777777890858802],[116,144,64,-0.06597363467476422],[116,144,65,-0.07860941042157987],[116,144,66,-0.09002073935335667],[116,144,67,-0.09855393619382986],[116,144,68,-0.10439632995634603],[116,144,69,-0.11127459950753629],[116,144,70,-0.11719342751717003],[116,144,71,-0.12621296038603835],[116,144,72,-0.13070744641195617],[116,144,73,-0.141608286913698],[116,144,74,-0.17559204775127232],[116,144,75,-0.2004462808237418],[116,144,76,-0.21279863683043268],[116,144,77,-0.21883503823596376],[116,144,78,-0.22236816504272516],[116,144,79,-0.23414065415016638],[116,145,64,-0.060704762359262365],[116,145,65,-0.0769673747615067],[116,145,66,-0.08866238253445358],[116,145,67,-0.09910282393144249],[116,145,68,-0.10445499614796393],[116,145,69,-0.10820444317162617],[116,145,70,-0.11634257302185161],[116,145,71,-0.12203701833518],[116,145,72,-0.12490649618189469],[116,145,73,-0.1311865831672559],[116,145,74,-0.13695237168699637],[116,145,75,-0.14496172700214172],[116,145,76,-0.1551641708598],[116,145,77,-0.16539166265446928],[116,145,78,-0.16774033795404025],[116,145,79,-0.19033983131212087],[116,146,64,-0.06836190256040171],[116,146,65,-0.08350172060490056],[116,146,66,-0.09672218083714296],[116,146,67,-0.10485431993715752],[116,146,68,-0.1107808501878344],[116,146,69,-0.11473009386425961],[116,146,70,-0.12325903149699174],[116,146,71,-0.12716405562030866],[116,146,72,-0.13045129216079393],[116,146,73,-0.1351473629382808],[116,146,74,-0.14027625585802456],[116,146,75,-0.1425986638985974],[116,146,76,-0.15001702028371733],[116,146,77,-0.1583581267662219],[116,146,78,-0.1644841141507781],[116,146,79,-0.18501999112000872],[116,147,64,-0.06993996426814589],[116,147,65,-0.08266189051914277],[116,147,66,-0.09751060451144372],[116,147,67,-0.10394705568727264],[116,147,68,-0.11187176510372296],[116,147,69,-0.11565820136074698],[116,147,70,-0.12448168779956079],[116,147,71,-0.12735026789036405],[116,147,72,-0.1310622362625102],[116,147,73,-0.1338947338164568],[116,147,74,-0.14063034435302668],[116,147,75,-0.14240096392187507],[116,147,76,-0.13239742214057057],[116,147,77,-0.13390634323056347],[116,147,78,-0.14616188422362958],[116,147,79,-0.11567146694167083],[116,148,64,-0.04367504865606778],[116,148,65,-0.05623085698075142],[116,148,66,-0.06724081366294503],[116,148,67,-0.07377742419182562],[116,148,68,-0.0767535509906634],[116,148,69,-0.08038873942763401],[116,148,70,-0.08702555940415904],[116,148,71,-0.09290550439622235],[116,148,72,-0.09594814866495657],[116,148,73,-0.10050797078538212],[116,148,74,-0.10492113501181347],[116,148,75,-0.10722540273929532],[116,148,76,-0.10846665815108471],[116,148,77,-0.1041108836425758],[116,148,78,-0.09517395745320123],[116,148,79,-0.06578279393665648],[116,149,64,-0.04622617767131587],[116,149,65,-0.05903339079096441],[116,149,66,-0.069566332530251],[116,149,67,-0.075217667203238],[116,149,68,-0.07653023475902414],[116,149,69,-0.0805717547609518],[116,149,70,-0.08547186896996495],[116,149,71,-0.08954590246821771],[116,149,72,-0.09797240293876948],[116,149,73,-0.10352954746832353],[116,149,74,-0.10636179539577878],[116,149,75,-0.10923066623923385],[116,149,76,-0.11173314825806564],[116,149,77,-0.11035045671083933],[116,149,78,-0.09179301088658737],[116,149,79,-0.07661953949639312],[116,150,64,-0.049900898521196196],[116,150,65,-0.059468770386012955],[116,150,66,-0.07030849533747549],[116,150,67,-0.07527757711312352],[116,150,68,-0.07626941558338063],[116,150,69,-0.07892789749339925],[116,150,70,-0.08184635050060009],[116,150,71,-0.08909287998554076],[116,150,72,-0.09891474764819916],[116,150,73,-0.10646171174771928],[116,150,74,-0.11008882013842453],[116,150,75,-0.11237478782815347],[116,150,76,-0.11631593116547845],[116,150,77,-0.11413407652544104],[116,150,78,-0.08967230751309496],[116,150,79,-0.08065037941011821],[116,151,64,-0.0462890304818261],[116,151,65,-0.05484094997624363],[116,151,66,-0.06210124309127116],[116,151,67,-0.07047329597113114],[116,151,68,-0.07510605000513253],[116,151,69,-0.07678289703958968],[116,151,70,-0.07993587864361472],[116,151,71,-0.08753511615866705],[116,151,72,-0.09774183045801656],[116,151,73,-0.1081577227763803],[116,151,74,-0.11459244596799217],[116,151,75,-0.11880224867708855],[116,151,76,-0.12221298441225037],[116,151,77,-0.12443983661224],[116,151,78,-0.10274592890643158],[116,151,79,-0.08445689476319956],[116,152,64,-0.05116615273118251],[116,152,65,-0.05965393038427046],[116,152,66,-0.0640313891577129],[116,152,67,-0.07044577601016026],[116,152,68,-0.0787243147620873],[116,152,69,-0.07951069736806796],[116,152,70,-0.08081445636280019],[116,152,71,-0.09031380342620982],[116,152,72,-0.09789425692432403],[116,152,73,-0.10833439957171628],[116,152,74,-0.11724435759804205],[116,152,75,-0.12178292270690393],[116,152,76,-0.1273009258052572],[116,152,77,-0.12267390686250682],[116,152,78,-0.10482507102703333],[116,152,79,-0.08007998638804828],[116,153,64,-0.06527797305358678],[116,153,65,-0.06753418172267173],[116,153,66,-0.06421047945428504],[116,153,67,-0.06626824267661223],[116,153,68,-0.07420982229231717],[116,153,69,-0.07631552898324517],[116,153,70,-0.0778549694450495],[116,153,71,-0.0891506545238252],[116,153,72,-0.09822326098833682],[116,153,73,-0.10910867126057047],[116,153,74,-0.11889911420425484],[116,153,75,-0.12684120072714739],[116,153,76,-0.13093950577771554],[116,153,77,-0.11855582670969952],[116,153,78,-0.09618007570840496],[116,153,79,-0.07541752446663605],[116,154,64,-0.07645245379034062],[116,154,65,-0.07564138132364688],[116,154,66,-0.07379308685811117],[116,154,67,-0.07561487843125013],[116,154,68,-0.07950218779069806],[116,154,69,-0.08433654431501439],[116,154,70,-0.08366855604130757],[116,154,71,-0.09466801531914004],[116,154,72,-0.10528042898021561],[116,154,73,-0.11509438851840012],[116,154,74,-0.12429643545540181],[116,154,75,-0.13367521665011867],[116,154,76,-0.13925902403538415],[116,154,77,-0.13385239825445983],[116,154,78,-0.10098476023911457],[116,154,79,-0.07897189977389638],[116,155,64,-0.0772488812150035],[116,155,65,-0.07922490012126093],[116,155,66,-0.07862125471276646],[116,155,67,-0.07903820841383633],[116,155,68,-0.08204549633004274],[116,155,69,-0.08427378339886246],[116,155,70,-0.08456233224200257],[116,155,71,-0.09563558412078133],[116,155,72,-0.10260456115352967],[116,155,73,-0.11343309070440091],[116,155,74,-0.12606100127239403],[116,155,75,-0.1345501430778962],[116,155,76,-0.14016575319377012],[116,155,77,-0.13200565489414068],[116,155,78,-0.09889392039906889],[116,155,79,-0.08128975319843534],[116,156,64,-0.08005210228815815],[116,156,65,-0.08343078103588583],[116,156,66,-0.08351875874088577],[116,156,67,-0.0862624037688956],[116,156,68,-0.0862635745515384],[116,156,69,-0.0901039946755872],[116,156,70,-0.09235045631548647],[116,156,71,-0.10003162739263513],[116,156,72,-0.10884858152352186],[116,156,73,-0.11743967209840375],[116,156,74,-0.1310844794213616],[116,156,75,-0.1413053965043931],[116,156,76,-0.1440524724738753],[116,156,77,-0.11613484407504884],[116,156,78,-0.08959869932949747],[116,156,79,-0.07732440239732669],[116,157,64,-0.07272897368071064],[116,157,65,-0.08144176671493794],[116,157,66,-0.0875023763031422],[116,157,67,-0.09428725765926543],[116,157,68,-0.095885896070495],[116,157,69,-0.09925744234354655],[116,157,70,-0.10142642684040579],[116,157,71,-0.10843061358248743],[116,157,72,-0.1123181607542302],[116,157,73,-0.12028696336736414],[116,157,74,-0.1315416312852074],[116,157,75,-0.14104363606431622],[116,157,76,-0.13552028885668302],[116,157,77,-0.10507249831878741],[116,157,78,-0.07706622987220874],[116,157,79,-0.07033923144444816],[116,158,64,-0.07061530054612429],[116,158,65,-0.08343726654164549],[116,158,66,-0.08834247357979604],[116,158,67,-0.09422528152850806],[116,158,68,-0.09754632988764966],[116,158,69,-0.09975166721671734],[116,158,70,-0.10182541797892708],[116,158,71,-0.10943485806166509],[116,158,72,-0.11420796057563198],[116,158,73,-0.11994359132844074],[116,158,74,-0.1321774092323451],[116,158,75,-0.1418833407279802],[116,158,76,-0.12423429426343718],[116,158,77,-0.08905734356496842],[116,158,78,-0.06402730335337263],[116,158,79,-0.06181338362970541],[116,159,64,-0.13900474783488784],[116,159,65,-0.14554866559144103],[116,159,66,-0.14685906077940636],[116,159,67,-0.14480089796661647],[116,159,68,-0.1415163277988624],[116,159,69,-0.13611726864045975],[116,159,70,-0.13218822859375257],[116,159,71,-0.130355302439775],[116,159,72,-0.12655140371439091],[116,159,73,-0.12491952072659838],[116,159,74,-0.12585080687637734],[116,159,75,-0.12737884373107408],[116,159,76,-0.12026496993305431],[116,159,77,-0.07717504172629111],[116,159,78,-0.05382942828620748],[116,159,79,-0.05790108712439339],[116,160,64,-0.13643551772872303],[116,160,65,-0.14347177728519023],[116,160,66,-0.14726176593653492],[116,160,67,-0.14704261204592828],[116,160,68,-0.1417850196982992],[116,160,69,-0.13355755920832285],[116,160,70,-0.13110187606588236],[116,160,71,-0.12829820031897257],[116,160,72,-0.1234939201873578],[116,160,73,-0.12386924786470618],[116,160,74,-0.12518490206689692],[116,160,75,-0.12749455048398126],[116,160,76,-0.12206770996149799],[116,160,77,-0.06856793557902621],[116,160,78,-0.046929224702243394],[116,160,79,-0.05236954786572469],[116,161,64,-0.13254097284387267],[116,161,65,-0.13975237954449182],[116,161,66,-0.14383994797186547],[116,161,67,-0.14754190702609823],[116,161,68,-0.1420739650857102],[116,161,69,-0.13368393132827516],[116,161,70,-0.12923431502169996],[116,161,71,-0.12721447907916816],[116,161,72,-0.12352938272839584],[116,161,73,-0.12272790563722226],[116,161,74,-0.12394081764679118],[116,161,75,-0.12443612106044313],[116,161,76,-0.11700180911505591],[116,161,77,-0.061942291806368226],[116,161,78,-0.04038989055638509],[116,161,79,-0.04863616927657779],[116,162,64,-0.1361272353838248],[116,162,65,-0.14209759508324607],[116,162,66,-0.14608397932957104],[116,162,67,-0.14962917815985421],[116,162,68,-0.14640181599023425],[116,162,69,-0.13822175604838421],[116,162,70,-0.13187626810236744],[116,162,71,-0.1305327988190538],[116,162,72,-0.12864363486726912],[116,162,73,-0.1267496822422833],[116,162,74,-0.12495041943544274],[116,162,75,-0.12429212338010182],[116,162,76,-0.1200270860588507],[116,162,77,-0.07962947124919834],[116,162,78,-0.0525483288096211],[116,162,79,-0.05316668656024847],[116,163,64,-0.13343720567029027],[116,163,65,-0.14025513667522677],[116,163,66,-0.14257407454634025],[116,163,67,-0.1462544860287241],[116,163,68,-0.14519835515167165],[116,163,69,-0.13891087607199262],[116,163,70,-0.13060885104572448],[116,163,71,-0.1324743168686388],[116,163,72,-0.12801612964397818],[116,163,73,-0.12448743299667178],[116,163,74,-0.12140203326870017],[116,163,75,-0.11850062732053007],[116,163,76,-0.11477983786423021],[116,163,77,-0.09737513143813256],[116,163,78,-0.07398618193581206],[116,163,79,-0.06443103855405907],[116,164,64,-0.10840760032506289],[116,164,65,-0.11526957547045875],[116,164,66,-0.1155071986553384],[116,164,67,-0.11900269166397179],[116,164,68,-0.11770920944223325],[116,164,69,-0.1138056902275142],[116,164,70,-0.1083485021913305],[116,164,71,-0.11071610787954284],[116,164,72,-0.1062782011365124],[116,164,73,-0.10314269886662111],[116,164,74,-0.09587046443712297],[116,164,75,-0.09600733632815758],[116,164,76,-0.0942211407691097],[116,164,77,-0.07512728447317525],[116,164,78,-0.06355566321358821],[116,164,79,-0.05713019153642174],[116,165,64,-0.10258772921419804],[116,165,65,-0.10756631353213629],[116,165,66,-0.10702089033536151],[116,165,67,-0.10879315829546304],[116,165,68,-0.1050658000555784],[116,165,69,-0.1024394794946234],[116,165,70,-0.09998052803644117],[116,165,71,-0.10157362098562117],[116,165,72,-0.1027702671150191],[116,165,73,-0.10004744993795806],[116,165,74,-0.09147593419894678],[116,165,75,-0.09104078242901037],[116,165,76,-0.08687884578156636],[116,165,77,-0.06810439665839407],[116,165,78,-0.05940843555787465],[116,165,79,-0.054119016072359194],[116,166,64,-0.10305812048685115],[116,166,65,-0.10812332686346263],[116,166,66,-0.10539125861064337],[116,166,67,-0.10719460630562097],[116,166,68,-0.10520988499241148],[116,166,69,-0.10084055119240823],[116,166,70,-0.09522052360040437],[116,166,71,-0.09772774843935639],[116,166,72,-0.10124552631565505],[116,166,73,-0.09770576336024464],[116,166,74,-0.09142343388005983],[116,166,75,-0.08889188402253209],[116,166,76,-0.08172678987217119],[116,166,77,-0.06991259545672276],[116,166,78,-0.06287774946645985],[116,166,79,-0.055015211992902296],[116,167,64,-0.09633861073837496],[116,167,65,-0.10322606958795653],[116,167,66,-0.10002940430571362],[116,167,67,-0.09895645203075179],[116,167,68,-0.0981784319205666],[116,167,69,-0.09305189524925195],[116,167,70,-0.08793149758160848],[116,167,71,-0.09411413266648685],[116,167,72,-0.09733602911391318],[116,167,73,-0.09371719607318774],[116,167,74,-0.09081367562745124],[116,167,75,-0.08715199843450161],[116,167,76,-0.08190966367589268],[116,167,77,-0.07398013479061062],[116,167,78,-0.06477565753260145],[116,167,79,-0.05637204584410423],[116,168,64,-0.09607015066377786],[116,168,65,-0.10133339565669455],[116,168,66,-0.098526895862599],[116,168,67,-0.0959253774900761],[116,168,68,-0.09763384752485238],[116,168,69,-0.09018987983719058],[116,168,70,-0.08683979626612665],[116,168,71,-0.09277483741383234],[116,168,72,-0.09356633723876215],[116,168,73,-0.09383218560887575],[116,168,74,-0.09045774261217669],[116,168,75,-0.08549014050363968],[116,168,76,-0.0807838799627674],[116,168,77,-0.07342546104181527],[116,168,78,-0.0625243257699936],[116,168,79,-0.054559695551058524],[116,169,64,-0.10645004907365863],[116,169,65,-0.10758522471530169],[116,169,66,-0.10788083123001659],[116,169,67,-0.10374426664956272],[116,169,68,-0.10489885021289473],[116,169,69,-0.09757100681908992],[116,169,70,-0.09527989328944628],[116,169,71,-0.09705003038585708],[116,169,72,-0.09498934636436368],[116,169,73,-0.09413875706422874],[116,169,74,-0.08969551549983967],[116,169,75,-0.08530438687839556],[116,169,76,-0.08358812957435717],[116,169,77,-0.0794477859671169],[116,169,78,-0.062037523958865054],[116,169,79,-0.05398536803837288],[116,170,64,-0.11120898600388979],[116,170,65,-0.11143079412437643],[116,170,66,-0.11171581826778654],[116,170,67,-0.11159878726228703],[116,170,68,-0.11221198351454374],[116,170,69,-0.10521959358756999],[116,170,70,-0.10138505532412906],[116,170,71,-0.10325063877499496],[116,170,72,-0.09998879905605676],[116,170,73,-0.09721388747512122],[116,170,74,-0.09540400820496173],[116,170,75,-0.09037699613717615],[116,170,76,-0.08632192920431744],[116,170,77,-0.08199193410320504],[116,170,78,-0.0646625178394214],[116,170,79,-0.05298526325047391],[116,171,64,-0.10883507193775765],[116,171,65,-0.1096105143708557],[116,171,66,-0.11077728174979816],[116,171,67,-0.11205186500086606],[116,171,68,-0.11533037302416695],[116,171,69,-0.10899583926373999],[116,171,70,-0.10309227723083222],[116,171,71,-0.10521274729913732],[116,171,72,-0.09996967961491973],[116,171,73,-0.09780238440894806],[116,171,74,-0.09545148621306115],[116,171,75,-0.09131038334674263],[116,171,76,-0.08551746744838744],[116,171,77,-0.08238670617759547],[116,171,78,-0.05664554072887581],[116,171,79,-0.046777845525984706],[116,172,64,-0.10944731197509511],[116,172,65,-0.11139571873522941],[116,172,66,-0.11395049053289216],[116,172,67,-0.11494054639030574],[116,172,68,-0.11919626702664295],[116,172,69,-0.11416713695015415],[116,172,70,-0.10823826435035427],[116,172,71,-0.10987113875820628],[116,172,72,-0.1049005075495035],[116,172,73,-0.10046504702100692],[116,172,74,-0.10130388372625204],[116,172,75,-0.09641340201520396],[116,172,76,-0.08930795756135464],[116,172,77,-0.0866000198333326],[116,172,78,-0.05040857204381636],[116,172,79,-0.033137622797821724],[116,173,64,-0.106803071520395],[116,173,65,-0.10989515661362192],[116,173,66,-0.11214883613994722],[116,173,67,-0.11552837716109399],[116,173,68,-0.11716255379339616],[116,173,69,-0.11357576555400054],[116,173,70,-0.10897114628499194],[116,173,71,-0.10887610202515716],[116,173,72,-0.10393133649558027],[116,173,73,-0.10157183446279436],[116,173,74,-0.10163050287260894],[116,173,75,-0.09483169128747296],[116,173,76,-0.08904425357511644],[116,173,77,-0.08628429745770277],[116,173,78,-0.05015141828107381],[116,173,79,-0.031787786450786844],[116,174,64,-0.10578853956872458],[116,174,65,-0.10969858248297745],[116,174,66,-0.11033183582303177],[116,174,67,-0.11181026962310911],[116,174,68,-0.11553993693228537],[116,174,69,-0.11191079955230762],[116,174,70,-0.10797972842438035],[116,174,71,-0.10744290761536382],[116,174,72,-0.10365601519466262],[116,174,73,-0.10145441911560157],[116,174,74,-0.0998668267247389],[116,174,75,-0.09285788460579988],[116,174,76,-0.08621093135356525],[116,174,77,-0.08519386518646793],[116,174,78,-0.048946375701148064],[116,174,79,-0.026414406264922287],[116,175,64,-0.09572826104612991],[116,175,65,-0.1003997283036116],[116,175,66,-0.1023354568933452],[116,175,67,-0.10314869102878942],[116,175,68,-0.1091754381523542],[116,175,69,-0.10857003755715644],[116,175,70,-0.10599200224444041],[116,175,71,-0.10272266548027992],[116,175,72,-0.1014471305671866],[116,175,73,-0.09912156305570016],[116,175,74,-0.09874119699032721],[116,175,75,-0.09300684674408155],[116,175,76,-0.08764717935564185],[116,175,77,-0.08793844511623175],[116,175,78,-0.09200762638602947],[116,175,79,-0.07208489203665913],[116,176,64,-0.09319763022641317],[116,176,65,-0.09718669321831783],[116,176,66,-0.09795633292691927],[116,176,67,-0.09913265858805748],[116,176,68,-0.10645209733868585],[116,176,69,-0.10667340525416738],[116,176,70,-0.105012161918885],[116,176,71,-0.10187325139147921],[116,176,72,-0.09974660855767942],[116,176,73,-0.09714216209923661],[116,176,74,-0.09712084412934834],[116,176,75,-0.0927103339114327],[116,176,76,-0.09036222242771752],[116,176,77,-0.08809309909742412],[116,176,78,-0.09431366796416715],[116,176,79,-0.07406682195226594],[116,177,64,-0.09463672145856007],[116,177,65,-0.10044551943096715],[116,177,66,-0.10011444257467406],[116,177,67,-0.1045373408038956],[116,177,68,-0.10939795333786165],[116,177,69,-0.11208434864490929],[116,177,70,-0.11144389912402666],[116,177,71,-0.10627625076423583],[116,177,72,-0.10090177105745303],[116,177,73,-0.09707909478091283],[116,177,74,-0.09602301107597394],[116,177,75,-0.09374869483697726],[116,177,76,-0.09302827552750471],[116,177,77,-0.09513033116399207],[116,177,78,-0.0978626384060167],[116,177,79,-0.09476715016290851],[116,178,64,-0.09750463027725793],[116,178,65,-0.10146246393135346],[116,178,66,-0.1017350648382575],[116,178,67,-0.10937417441308853],[116,178,68,-0.11321418580250286],[116,178,69,-0.11828674465782837],[116,178,70,-0.11721273218913583],[116,178,71,-0.11005922593778049],[116,178,72,-0.1038327882532554],[116,178,73,-0.09880989119397364],[116,178,74,-0.09842345401145669],[116,178,75,-0.09533163134768131],[116,178,76,-0.09806357487996878],[116,178,77,-0.10037030452041949],[116,178,78,-0.10285643120595772],[116,178,79,-0.09678381546416895],[116,179,64,-0.09322866348195151],[116,179,65,-0.0978921635505224],[116,179,66,-0.10081100600911069],[116,179,67,-0.10848057060660068],[116,179,68,-0.11366226658057632],[116,179,69,-0.11824942668194399],[116,179,70,-0.11709048860183482],[116,179,71,-0.11106238403746785],[116,179,72,-0.10433708328851757],[116,179,73,-0.09636570674113075],[116,179,74,-0.09512893864458925],[116,179,75,-0.0960992040174451],[116,179,76,-0.09983551618708306],[116,179,77,-0.10287188758936469],[116,179,78,-0.10149860640230104],[116,179,79,-0.09337370157561503],[116,180,64,-0.08093858297265903],[116,180,65,-0.08694991672470498],[116,180,66,-0.09284658044261224],[116,180,67,-0.10199786684675141],[116,180,68,-0.10993777244191666],[116,180,69,-0.11433748726415743],[116,180,70,-0.11615608779861955],[116,180,71,-0.11239795140663417],[116,180,72,-0.10197424916273609],[116,180,73,-0.09433246183502803],[116,180,74,-0.09554943319440921],[116,180,75,-0.0983961486373832],[116,180,76,-0.1011821865050594],[116,180,77,-0.10442677086836384],[116,180,78,-0.10148242365459523],[116,180,79,-0.09426038633862004],[116,181,64,-0.0680336635222088],[116,181,65,-0.07279122989861106],[116,181,66,-0.08275900522359184],[116,181,67,-0.09150446554901959],[116,181,68,-0.09607623333372659],[116,181,69,-0.10499348762468254],[116,181,70,-0.10602406122670222],[116,181,71,-0.10459246569354366],[116,181,72,-0.09898903711701464],[116,181,73,-0.093074823004143],[116,181,74,-0.09669783280822021],[116,181,75,-0.0991530904968175],[116,181,76,-0.10340852550426428],[116,181,77,-0.10943706463909293],[116,181,78,-0.11078695948951536],[116,181,79,-0.11291596384596189],[116,182,64,-0.06800903264207467],[116,182,65,-0.07094266634241173],[116,182,66,-0.08377782313072825],[116,182,67,-0.09116341606430275],[116,182,68,-0.09489179080948365],[116,182,69,-0.10344449020065777],[116,182,70,-0.10557944840628329],[116,182,71,-0.10284452378756367],[116,182,72,-0.09879361368819939],[116,182,73,-0.0955662681483234],[116,182,74,-0.09555763513117457],[116,182,75,-0.09803387452881122],[116,182,76,-0.10480696367439529],[116,182,77,-0.1095248875828736],[116,182,78,-0.11637408800360435],[116,182,79,-0.1138863634717151],[116,183,64,-0.06645174632355634],[116,183,65,-0.06898965954706768],[116,183,66,-0.07826322904667568],[116,183,67,-0.08535083831462933],[116,183,68,-0.09201021115852327],[116,183,69,-0.10052491061161756],[116,183,70,-0.10153057777859996],[116,183,71,-0.10019702155881433],[116,183,72,-0.09694006994569765],[116,183,73,-0.09324620073767866],[116,183,74,-0.093754644794132],[116,183,75,-0.09675078566217435],[116,183,76,-0.10689287036371167],[116,183,77,-0.1106240400391898],[116,183,78,-0.11229112983456514],[116,183,79,-0.11188802438908084],[116,184,64,-0.06795599084877142],[116,184,65,-0.07064020589102783],[116,184,66,-0.07719824824611562],[116,184,67,-0.08188404543181374],[116,184,68,-0.09092211676130432],[116,184,69,-0.09821425492192384],[116,184,70,-0.10039880030975012],[116,184,71,-0.10022892219183599],[116,184,72,-0.09707704058386785],[116,184,73,-0.09322672075360927],[116,184,74,-0.09281181522356746],[116,184,75,-0.09658732302480871],[116,184,76,-0.10888958642421845],[116,184,77,-0.11094734186343047],[116,184,78,-0.1099716873021504],[116,184,79,-0.1116477105626077],[116,185,64,-0.06968248818418762],[116,185,65,-0.07292371085855359],[116,185,66,-0.07928510973593565],[116,185,67,-0.08180750252825579],[116,185,68,-0.0885931699098847],[116,185,69,-0.09825304413609931],[116,185,70,-0.1008383631023006],[116,185,71,-0.10067341721426591],[116,185,72,-0.09842900537833374],[116,185,73,-0.09448128444549184],[116,185,74,-0.09257765269414372],[116,185,75,-0.0958344201404047],[116,185,76,-0.10563860538261902],[116,185,77,-0.10532707347075024],[116,185,78,-0.10249734296458055],[116,185,79,-0.10546313866992348],[116,186,64,-0.07640309219268404],[116,186,65,-0.0801502194174197],[116,186,66,-0.08423889612913549],[116,186,67,-0.09005589913026191],[116,186,68,-0.09510714629253561],[116,186,69,-0.10160840132355052],[116,186,70,-0.10750246184379453],[116,186,71,-0.10760735362410731],[116,186,72,-0.10378447983973549],[116,186,73,-0.09843763386822926],[116,186,74,-0.09667656855060983],[116,186,75,-0.09597725392256655],[116,186,76,-0.10188243181593062],[116,186,77,-0.10072165124977794],[116,186,78,-0.09756880833322117],[116,186,79,-0.09923159383156867],[116,187,64,-0.07774157035212875],[116,187,65,-0.0831895816189138],[116,187,66,-0.08778641583395934],[116,187,67,-0.09372846345451924],[116,187,68,-0.09675381862261313],[116,187,69,-0.10228251178551341],[116,187,70,-0.1083747835515402],[116,187,71,-0.11145185689108894],[116,187,72,-0.10615245568521278],[116,187,73,-0.10026833385267472],[116,187,74,-0.0964132634840002],[116,187,75,-0.09607662439968846],[116,187,76,-0.10602096309859972],[116,187,77,-0.10503857881998128],[116,187,78,-0.0993476589688832],[116,187,79,-0.10451496282799225],[116,188,64,-0.09236192212969092],[116,188,65,-0.09477047864961399],[116,188,66,-0.09692370157994827],[116,188,67,-0.10068200087520421],[116,188,68,-0.09916451408498067],[116,188,69,-0.10294398727965104],[116,188,70,-0.10737254989505382],[116,188,71,-0.10840124633524566],[116,188,72,-0.10385168281639384],[116,188,73,-0.09942837982716786],[116,188,74,-0.09660107108632608],[116,188,75,-0.09097232875842183],[116,188,76,-0.10235072002726361],[116,188,77,-0.10351652015999345],[116,188,78,-0.09622551139457902],[116,188,79,-0.10423790408837688],[116,189,64,-0.09265445498293899],[116,189,65,-0.09708863310215177],[116,189,66,-0.10440840228228486],[116,189,67,-0.1109296418724516],[116,189,68,-0.11111072603784684],[116,189,69,-0.1131904695104165],[116,189,70,-0.11645746297169429],[116,189,71,-0.11463750024180583],[116,189,72,-0.10665470112681726],[116,189,73,-0.1012523694529114],[116,189,74,-0.09874966049166228],[116,189,75,-0.09278948254569433],[116,189,76,-0.0910936689284252],[116,189,77,-0.09598135655629712],[116,189,78,-0.09035273878312687],[116,189,79,-0.09405549146683595],[116,190,64,-0.09609076983863155],[116,190,65,-0.0999905254041726],[116,190,66,-0.10703221432632753],[116,190,67,-0.11528195149405965],[116,190,68,-0.1140794347516779],[116,190,69,-0.1116877262525801],[116,190,70,-0.11444062225107478],[116,190,71,-0.11303768481530205],[116,190,72,-0.10688801393290784],[116,190,73,-0.10349999161029644],[116,190,74,-0.09944301723770334],[116,190,75,-0.09231639107586691],[116,190,76,-0.08845056103978242],[116,190,77,-0.09450032223483712],[116,190,78,-0.08911111741320794],[116,190,79,-0.09140297409333752],[116,191,64,-0.09639156228702335],[116,191,65,-0.10218233840242646],[116,191,66,-0.10763483964213572],[116,191,67,-0.11479468800737501],[116,191,68,-0.11309742287254289],[116,191,69,-0.11049852139827905],[116,191,70,-0.11316192844922975],[116,191,71,-0.11202762606540713],[116,191,72,-0.10620057462254814],[116,191,73,-0.10274323930252104],[116,191,74,-0.10002394182540918],[116,191,75,-0.09198680313624115],[116,191,76,-0.08657129262020498],[116,191,77,-0.09191345823810279],[116,191,78,-0.08819931112462376],[116,191,79,-0.08617404995670476],[116,192,64,-0.09994972580021343],[116,192,65,-0.10355512175598394],[116,192,66,-0.10960110967673861],[116,192,67,-0.11242755383657502],[116,192,68,-0.1117337808680857],[116,192,69,-0.11101204804912634],[116,192,70,-0.11169343241683485],[116,192,71,-0.111555395908839],[116,192,72,-0.10735547120958691],[116,192,73,-0.10275539512289103],[116,192,74,-0.09996050965545254],[116,192,75,-0.09247283989671101],[116,192,76,-0.08854349257891979],[116,192,77,-0.09247010099339484],[116,192,78,-0.08771137663759554],[116,192,79,-0.08534583183724444],[116,193,64,-0.10677298536488938],[116,193,65,-0.1065301787898717],[116,193,66,-0.10294552045741939],[116,193,67,-0.10116874611760061],[116,193,68,-0.10412275555198862],[116,193,69,-0.10251571371555104],[116,193,70,-0.10194441339423264],[116,193,71,-0.10515769173466528],[116,193,72,-0.10346576027664658],[116,193,73,-0.09890284585701703],[116,193,74,-0.09753120071158064],[116,193,75,-0.09201988949893439],[116,193,76,-0.08551242551108648],[116,193,77,-0.0886424058512929],[116,193,78,-0.08794733614405605],[116,193,79,-0.09127159442633682],[116,194,64,-0.11369683245614987],[116,194,65,-0.11202251496812454],[116,194,66,-0.10808801107699943],[116,194,67,-0.10447571367336804],[116,194,68,-0.10615318598835995],[116,194,69,-0.10677429396612602],[116,194,70,-0.10583159762731756],[116,194,71,-0.1086310145284358],[116,194,72,-0.10438243758553115],[116,194,73,-0.10037382421657526],[116,194,74,-0.09739702000363779],[116,194,75,-0.09284543818704674],[116,194,76,-0.08657926841494333],[116,194,77,-0.0878667137054693],[116,194,78,-0.09125271517492],[116,194,79,-0.09259917055601033],[116,195,64,-0.11545360491573516],[116,195,65,-0.1140726886050661],[116,195,66,-0.1090225694902808],[116,195,67,-0.10369758628090765],[116,195,68,-0.1032030946441933],[116,195,69,-0.10456854116798334],[116,195,70,-0.10326300718592438],[116,195,71,-0.10631307520802938],[116,195,72,-0.10319828230102539],[116,195,73,-0.09815686966885209],[116,195,74,-0.09612614551093167],[116,195,75,-0.09042623909714606],[116,195,76,-0.08166596411026605],[116,195,77,-0.08706369266851435],[116,195,78,-0.09636293005168306],[116,195,79,-0.0967531545098469],[116,196,64,-0.10704473422130444],[116,196,65,-0.10516567309223139],[116,196,66,-0.09667563916208301],[116,196,67,-0.09000586606061944],[116,196,68,-0.08853479877114366],[116,196,69,-0.08794753248105132],[116,196,70,-0.08424063057140471],[116,196,71,-0.08546509183478224],[116,196,72,-0.08213384341367648],[116,196,73,-0.08019969066587393],[116,196,74,-0.08122261939595612],[116,196,75,-0.07222764078390001],[116,196,76,-0.064753274656441],[116,196,77,-0.07209156410147914],[116,196,78,-0.08323870566811195],[116,196,79,-0.08391614362656699],[116,197,64,-0.11030270042723729],[116,197,65,-0.1073879108332508],[116,197,66,-0.09822904681071135],[116,197,67,-0.09037056733154179],[116,197,68,-0.087740584966399],[116,197,69,-0.08298011831670718],[116,197,70,-0.07791901560060471],[116,197,71,-0.07997673314009478],[116,197,72,-0.0773959614492121],[116,197,73,-0.07745774245674392],[116,197,74,-0.07755769113254289],[116,197,75,-0.06815669723872497],[116,197,76,-0.060917248130202904],[116,197,77,-0.06180165737873868],[116,197,78,-0.07291193860767893],[116,197,79,-0.07373801293700233],[116,198,64,-0.1104301899485407],[116,198,65,-0.10747426841973531],[116,198,66,-0.0987096632960183],[116,198,67,-0.09048298607786437],[116,198,68,-0.08649075277920343],[116,198,69,-0.07927645321896169],[116,198,70,-0.07286537244546605],[116,198,71,-0.07495273320874708],[116,198,72,-0.07608193022530468],[116,198,73,-0.07601574567943693],[116,198,74,-0.07476061022995814],[116,198,75,-0.06533974289229394],[116,198,76,-0.05799408189241649],[116,198,77,-0.058370251165579055],[116,198,78,-0.06816943573441626],[116,198,79,-0.07068951541972393],[116,199,64,-0.11006342834603984],[116,199,65,-0.10601704981344275],[116,199,66,-0.09674567573020386],[116,199,67,-0.08925719257337077],[116,199,68,-0.0825663704634826],[116,199,69,-0.07707345708612054],[116,199,70,-0.06932443147916784],[116,199,71,-0.07079067761287877],[116,199,72,-0.07488889965909815],[116,199,73,-0.07844567289772496],[116,199,74,-0.0715677732170412],[116,199,75,-0.06049271083787617],[116,199,76,-0.055023046349881886],[116,199,77,-0.05092111541544836],[116,199,78,-0.05883026926654863],[116,199,79,-0.06475211262429237],[116,200,64,-0.11136044331628409],[116,200,65,-0.1061047038270149],[116,200,66,-0.09811848269171038],[116,200,67,-0.08961632075170822],[116,200,68,-0.08227626184147858],[116,200,69,-0.07416629508721763],[116,200,70,-0.0696455246726313],[116,200,71,-0.06868832910005919],[116,200,72,-0.07644660971777706],[116,200,73,-0.07633083805408458],[116,200,74,-0.06858064454676518],[116,200,75,-0.05730333779463834],[116,200,76,-0.052278334943350956],[116,200,77,-0.05039855350201013],[116,200,78,-0.05419788425622949],[116,200,79,-0.06429707728514464],[116,201,64,-0.1028478428495144],[116,201,65,-0.09869039758172433],[116,201,66,-0.092988605982176],[116,201,67,-0.0844381774460383],[116,201,68,-0.07526034347036158],[116,201,69,-0.06685182846223117],[116,201,70,-0.062475688606620346],[116,201,71,-0.06442991551508691],[116,201,72,-0.07144401894560443],[116,201,73,-0.07247471223663098],[116,201,74,-0.0625500005715093],[116,201,75,-0.05469774957083415],[116,201,76,-0.0490988700636427],[116,201,77,-0.04815428641197249],[116,201,78,-0.04377478612192312],[116,201,79,-0.048575255447031014],[116,202,64,-0.10981172873581596],[116,202,65,-0.10532273969359021],[116,202,66,-0.09943599047061924],[116,202,67,-0.09077027048916483],[116,202,68,-0.08092412867436614],[116,202,69,-0.0705397548389494],[116,202,70,-0.06737707488264341],[116,202,71,-0.06876018721740822],[116,202,72,-0.07370775956857234],[116,202,73,-0.07237157290195123],[116,202,74,-0.06436781317516137],[116,202,75,-0.059351210159207246],[116,202,76,-0.051484291238018065],[116,202,77,-0.05036702931617364],[116,202,78,-0.04563002713489032],[116,202,79,-0.04850867863530495],[116,203,64,-0.1127861985367172],[116,203,65,-0.10772699513720337],[116,203,66,-0.10047680001238829],[116,203,67,-0.09223661248162449],[116,203,68,-0.08268269901830318],[116,203,69,-0.07217448689498136],[116,203,70,-0.06992134055030806],[116,203,71,-0.06886710896244069],[116,203,72,-0.07269935715159642],[116,203,73,-0.07228044797101038],[116,203,74,-0.06364344869643257],[116,203,75,-0.05815250407712111],[116,203,76,-0.050944169931051594],[116,203,77,-0.0549546647451158],[116,203,78,-0.0476973388314157],[116,203,79,-0.05117133155529949],[116,204,64,-0.11785878301475024],[116,204,65,-0.10771221365343392],[116,204,66,-0.1004958876388907],[116,204,67,-0.090916398083648],[116,204,68,-0.0770837462895334],[116,204,69,-0.06638051085675567],[116,204,70,-0.05974925136459368],[116,204,71,-0.05972508301672663],[116,204,72,-0.06018932681973228],[116,204,73,-0.05794660428482079],[116,204,74,-0.05056758825123188],[116,204,75,-0.045356575682494266],[116,204,76,-0.041833131183825784],[116,204,77,-0.04913694545237461],[116,204,78,-0.04500773133735435],[116,204,79,-0.04658140021195902],[116,205,64,-0.13054030136648115],[116,205,65,-0.11997840389332037],[116,205,66,-0.11303227821543062],[116,205,67,-0.10296514258259842],[116,205,68,-0.08639755273300855],[116,205,69,-0.07901879763021527],[116,205,70,-0.06972113411615481],[116,205,71,-0.06819687073354916],[116,205,72,-0.06267275963243461],[116,205,73,-0.05580735914978623],[116,205,74,-0.047893364848665146],[116,205,75,-0.04565237441570135],[116,205,76,-0.04195389183991631],[116,205,77,-0.04909156292736855],[116,205,78,-0.04484353247285985],[116,205,79,-0.045916609194130154],[116,206,64,-0.1343237842526968],[116,206,65,-0.12199091697413178],[116,206,66,-0.11371172503873271],[116,206,67,-0.10178189714425294],[116,206,68,-0.08724009837177704],[116,206,69,-0.07787069483517517],[116,206,70,-0.07031646490850031],[116,206,71,-0.06778846544041568],[116,206,72,-0.06117617836825571],[116,206,73,-0.05384453280521079],[116,206,74,-0.04805683456956131],[116,206,75,-0.045735650970526266],[116,206,76,-0.041753410939915026],[116,206,77,-0.05374433421590481],[116,206,78,-0.04773327738099567],[116,206,79,-0.047954234692661406],[116,207,64,-0.13895999955374572],[116,207,65,-0.12798236807479607],[116,207,66,-0.11496532061685714],[116,207,67,-0.10368799077104705],[116,207,68,-0.08974483354797395],[116,207,69,-0.07906143854534792],[116,207,70,-0.0705288945084989],[116,207,71,-0.06587051798361324],[116,207,72,-0.0621685598353734],[116,207,73,-0.05437224021526799],[116,207,74,-0.05014109063809531],[116,207,75,-0.04402026143940498],[116,207,76,-0.04165843748813143],[116,207,77,-0.0490420154432602],[116,207,78,-0.039714324576222856],[116,207,79,-0.04004513556185625],[116,208,64,-0.14417997986443645],[116,208,65,-0.13299456401214066],[116,208,66,-0.11928839553836777],[116,208,67,-0.10609081461856011],[116,208,68,-0.09021110996332635],[116,208,69,-0.07666120111597993],[116,208,70,-0.06807737660085118],[116,208,71,-0.06450585418985733],[116,208,72,-0.061989664423921856],[116,208,73,-0.0557487629463895],[116,208,74,-0.04987629811447347],[116,208,75,-0.042304182749506106],[116,208,76,-0.03965485931726083],[116,208,77,-0.055249401279105465],[116,208,78,-0.05200407628313396],[116,208,79,-0.05620055268533784],[116,209,64,-0.14585074479094043],[116,209,65,-0.1364377211863925],[116,209,66,-0.12090116512301195],[116,209,67,-0.10594360258673137],[116,209,68,-0.09076017658499072],[116,209,69,-0.07713837714428523],[116,209,70,-0.06467885929265758],[116,209,71,-0.06055026378781143],[116,209,72,-0.05925053497944862],[116,209,73,-0.05478138233381612],[116,209,74,-0.04870049466436932],[116,209,75,-0.041381460283738375],[116,209,76,-0.03947852414191232],[116,209,77,-0.05388556760911549],[116,209,78,-0.05492282305691255],[116,209,79,-0.061046679720264715],[116,210,64,-0.15361963393823727],[116,210,65,-0.14046107358926754],[116,210,66,-0.12554633240835406],[116,210,67,-0.11112838280955767],[116,210,68,-0.09272615086802423],[116,210,69,-0.07732940721865247],[116,210,70,-0.06776516827937974],[116,210,71,-0.062388131964884],[116,210,72,-0.06158541118256946],[116,210,73,-0.058091260389034116],[116,210,74,-0.0517077386263677],[116,210,75,-0.0446589532796398],[116,210,76,-0.04123241841944824],[116,210,77,-0.0541556752326655],[116,210,78,-0.05746662955605873],[116,210,79,-0.06414349971581515],[116,211,64,-0.1546518115180948],[116,211,65,-0.14009745905533916],[116,211,66,-0.1243922604548253],[116,211,67,-0.10729065213880529],[116,211,68,-0.09008276576503493],[116,211,69,-0.07803611356946943],[116,211,70,-0.06911639848681056],[116,211,71,-0.0637356288516838],[116,211,72,-0.06082884825596963],[116,211,73,-0.05579670219697065],[116,211,74,-0.04897304428501504],[116,211,75,-0.046505305704580835],[116,211,76,-0.03862101150421116],[116,211,77,-0.056663836304483045],[116,211,78,-0.06449606706396757],[116,211,79,-0.07179287006929619],[116,212,64,-0.13638166473768004],[116,212,65,-0.1273598004885611],[116,212,66,-0.1132013908662616],[116,212,67,-0.10233620276628272],[116,212,68,-0.09382010988589301],[116,212,69,-0.08644984399595268],[116,212,70,-0.08244417606720501],[116,212,71,-0.0805274132215362],[116,212,72,-0.0758131391298763],[116,212,73,-0.07024755522718498],[116,212,74,-0.0633156263609448],[116,212,75,-0.05962001044103164],[116,212,76,-0.053675647357695075],[116,212,77,-0.06225133675439768],[116,212,78,-0.06689507136112494],[116,212,79,-0.07403078014105899],[116,213,64,-0.13841469137611231],[116,213,65,-0.12625108060216922],[116,213,66,-0.10715861933737535],[116,213,67,-0.09100379872074757],[116,213,68,-0.0818476713408603],[116,213,69,-0.07867361891862464],[116,213,70,-0.07640585630351705],[116,213,71,-0.07664350005257374],[116,213,72,-0.0760638931031865],[116,213,73,-0.07549383622662197],[116,213,74,-0.07099562066886085],[116,213,75,-0.06573443877421895],[116,213,76,-0.06538946149609262],[116,213,77,-0.0728966833851131],[116,213,78,-0.07666444328986957],[116,213,79,-0.08040853029869238],[116,214,64,-0.13860318064520918],[116,214,65,-0.12451187032847637],[116,214,66,-0.10781881102607545],[116,214,67,-0.09184396660811878],[116,214,68,-0.08288208191058694],[116,214,69,-0.07984877680222088],[116,214,70,-0.07694497504885132],[116,214,71,-0.07620976268703232],[116,214,72,-0.07503204239253247],[116,214,73,-0.07356797793933388],[116,214,74,-0.07104673193104104],[116,214,75,-0.06498382976549107],[116,214,76,-0.06910971218253645],[116,214,77,-0.07420654361562397],[116,214,78,-0.07977496753041965],[116,214,79,-0.08546152243736382],[116,215,64,-0.1384284157345721],[116,215,65,-0.12638061117693478],[116,215,66,-0.11008269928566475],[116,215,67,-0.09539293779658689],[116,215,68,-0.086277417175273],[116,215,69,-0.08206644687118447],[116,215,70,-0.07851375258213447],[116,215,71,-0.07588406776177312],[116,215,72,-0.07522573087300238],[116,215,73,-0.0735980058737371],[116,215,74,-0.07033928956939646],[116,215,75,-0.06437559586541552],[116,215,76,-0.06553099170420784],[116,215,77,-0.06777535907602492],[116,215,78,-0.07141878755642472],[116,215,79,-0.07911391343026523],[116,216,64,-0.1360903401468056],[116,216,65,-0.12412576137720012],[116,216,66,-0.10958766205102285],[116,216,67,-0.09541267166084134],[116,216,68,-0.08902012409973449],[116,216,69,-0.0846738116346329],[116,216,70,-0.07795846606836604],[116,216,71,-0.07780820183174167],[116,216,72,-0.07574386289971945],[116,216,73,-0.07355335613601753],[116,216,74,-0.06723938385482717],[116,216,75,-0.06174550614508588],[116,216,76,-0.06024868830056754],[116,216,77,-0.06037016753739623],[116,216,78,-0.06411825377438315],[116,216,79,-0.07638145478689327],[116,217,64,-0.12769719802854795],[116,217,65,-0.12032085729856486],[116,217,66,-0.11102899869300727],[116,217,67,-0.10407900857119842],[116,217,68,-0.09846402197583168],[116,217,69,-0.09519442888106942],[116,217,70,-0.08772642028571984],[116,217,71,-0.0815038288994796],[116,217,72,-0.06913273728909672],[116,217,73,-0.06339750753265408],[116,217,74,-0.054639437445539445],[116,217,75,-0.04849824585076746],[116,217,76,-0.05420800401432732],[116,217,77,-0.058766954522456956],[116,217,78,-0.061441546919107616],[116,217,79,-0.07774442120398667],[116,218,64,-0.133211335439039],[116,218,65,-0.12455051877388099],[116,218,66,-0.11539097978902496],[116,218,67,-0.10896174871871309],[116,218,68,-0.10102943103034523],[116,218,69,-0.09880840356807741],[116,218,70,-0.09140842423343716],[116,218,71,-0.08191850469479621],[116,218,72,-0.069638760693267],[116,218,73,-0.06338175397389867],[116,218,74,-0.0554550120002897],[116,218,75,-0.04930935718031872],[116,218,76,-0.05117580833675568],[116,218,77,-0.06116490974663756],[116,218,78,-0.06553593138068442],[116,218,79,-0.07937766075470266],[116,219,64,-0.1321142949567502],[116,219,65,-0.12655289513579704],[116,219,66,-0.11514339158225768],[116,219,67,-0.10712914247970728],[116,219,68,-0.10259324954547104],[116,219,69,-0.0992816091779623],[116,219,70,-0.08978583805164182],[116,219,71,-0.07888239556745195],[116,219,72,-0.06733211856221619],[116,219,73,-0.05970541087652216],[116,219,74,-0.05487180534089403],[116,219,75,-0.045548809953983194],[116,219,76,-0.0579840044729474],[116,219,77,-0.06709058518851273],[116,219,78,-0.07226061670808896],[116,219,79,-0.08667224012982057],[116,220,64,-0.13267442262337042],[116,220,65,-0.12384418262154707],[116,220,66,-0.11063299979925167],[116,220,67,-0.10073288093762343],[116,220,68,-0.09459757341321351],[116,220,69,-0.08604616148098904],[116,220,70,-0.07765028969189353],[116,220,71,-0.06336642581425671],[116,220,72,-0.05102384163866129],[116,220,73,-0.04508169701934004],[116,220,74,-0.04188297333779939],[116,220,75,-0.03759697412044254],[116,220,76,-0.05655869861518503],[116,220,77,-0.07618816351879601],[116,220,78,-0.08757114305360253],[116,220,79,-0.10489744987636929],[116,221,64,-0.130380688741897],[116,221,65,-0.1219273813437521],[116,221,66,-0.10935588992711948],[116,221,67,-0.1007032801826301],[116,221,68,-0.0944876453063444],[116,221,69,-0.08386684527247958],[116,221,70,-0.07378587122706291],[116,221,71,-0.06077625881881765],[116,221,72,-0.04827165495215326],[116,221,73,-0.041772756215462156],[116,221,74,-0.04225899173043174],[116,221,75,-0.07845945745461697],[116,221,76,-0.0947203085189875],[116,221,77,-0.11358136766057599],[116,221,78,-0.11998686907021386],[116,221,79,-0.10719048454249244],[116,222,64,-0.12476695678858099],[116,222,65,-0.11956175657786364],[116,222,66,-0.10977337187061845],[116,222,67,-0.10056517221923819],[116,222,68,-0.09226155437106139],[116,222,69,-0.08092880530577516],[116,222,70,-0.06875493503234234],[116,222,71,-0.05911690018565256],[116,222,72,-0.04904754535911322],[116,222,73,-0.04069348854214362],[116,222,74,-0.04989015957202846],[116,222,75,-0.08241552335103587],[116,222,76,-0.10435339148545084],[116,222,77,-0.11808783655406441],[116,222,78,-0.11935996602919374],[116,222,79,-0.10588225596622561],[116,223,64,-0.12486851698080931],[116,223,65,-0.1212422527466633],[116,223,66,-0.11464232517496366],[116,223,67,-0.1034617481489917],[116,223,68,-0.092522581804299],[116,223,69,-0.07945063768488421],[116,223,70,-0.06905987447895313],[116,223,71,-0.05770040653664868],[116,223,72,-0.04817234592089503],[116,223,73,-0.04020670964716819],[116,223,74,-0.06779565790940026],[116,223,75,-0.103212621608743],[116,223,76,-0.12901601165343285],[116,223,77,-0.12925764406667506],[116,223,78,-0.11448907538903697],[116,223,79,-0.10418608646364044],[116,224,64,-0.12246983314186517],[116,224,65,-0.11987933489013695],[116,224,66,-0.11311647772836586],[116,224,67,-0.10354777075929358],[116,224,68,-0.09114631160598201],[116,224,69,-0.07621586757644049],[116,224,70,-0.0670472774674776],[116,224,71,-0.05766058228245352],[116,224,72,-0.042906836857876884],[116,224,73,-0.03491594380658343],[116,224,74,-0.08015901189553917],[116,224,75,-0.1146187744216352],[116,224,76,-0.1373560492782576],[116,224,77,-0.12785076569767295],[116,224,78,-0.11589348712043823],[116,224,79,-0.10523253362940879],[116,225,64,-0.1301672577800614],[116,225,65,-0.12324072514349611],[116,225,66,-0.117942094755432],[116,225,67,-0.10158320199584607],[116,225,68,-0.08435796797862559],[116,225,69,-0.07203515383834981],[116,225,70,-0.06255851181509511],[116,225,71,-0.05685321287835488],[116,225,72,-0.04734097213953013],[116,225,73,-0.04023367906872428],[116,225,74,-0.09520192797988453],[116,225,75,-0.12589262566291554],[116,225,76,-0.14072811503460025],[116,225,77,-0.12896438799298923],[116,225,78,-0.11829555921877921],[116,225,79,-0.11029284066960598],[116,226,64,-0.13552257167339923],[116,226,65,-0.12769665538609887],[116,226,66,-0.12168406040990544],[116,226,67,-0.10529793136069868],[116,226,68,-0.08975168784140829],[116,226,69,-0.07438615382568758],[116,226,70,-0.06339771540087517],[116,226,71,-0.05775122154728414],[116,226,72,-0.04790246252445714],[116,226,73,-0.04336397260503776],[116,226,74,-0.09178526648571793],[116,226,75,-0.11599889940659891],[116,226,76,-0.1424594969255377],[116,226,77,-0.13162805466052618],[116,226,78,-0.12107677633478711],[116,226,79,-0.1136227631187694],[116,227,64,-0.13538995942381105],[116,227,65,-0.12905343451186507],[116,227,66,-0.12214219247110754],[116,227,67,-0.10618111992836399],[116,227,68,-0.09129792066931425],[116,227,69,-0.07175181113821519],[116,227,70,-0.059784070588785036],[116,227,71,-0.05261072061006872],[116,227,72,-0.04517868116251829],[116,227,73,-0.042336891466324675],[116,227,74,-0.10402917685557243],[116,227,75,-0.12383636265928709],[116,227,76,-0.15319816785200138],[116,227,77,-0.14303177902535533],[116,227,78,-0.13280132945848316],[116,227,79,-0.12416846576025185],[116,228,64,-0.12328265897111802],[116,228,65,-0.11684571704345155],[116,228,66,-0.11063934179431024],[116,228,67,-0.09570075466060025],[116,228,68,-0.07979843967738168],[116,228,69,-0.05845091961348585],[116,228,70,-0.04246237197847616],[116,228,71,-0.03396438058343361],[116,228,72,-0.028320668605982993],[116,228,73,-0.023221645347682868],[116,228,74,-0.09640899571550615],[116,228,75,-0.11724903184135192],[116,228,76,-0.14851642275352905],[116,228,77,-0.1397256123162113],[116,228,78,-0.1319264213743733],[116,228,79,-0.12252934008871186],[116,229,64,-0.11331817765606692],[116,229,65,-0.10883202395473518],[116,229,66,-0.10542534285359331],[116,229,67,-0.09605414581279705],[116,229,68,-0.07935835745073795],[116,229,69,-0.05905708784239496],[116,229,70,-0.040495673821307185],[116,229,71,-0.030222094237122174],[116,229,72,-0.020668420620095426],[116,229,73,-0.0594004117516304],[116,229,74,-0.15041026801018556],[116,229,75,-0.15561025456729063],[116,229,76,-0.15064713094811905],[116,229,77,-0.1404838854688646],[116,229,78,-0.13443400274087383],[116,229,79,-0.1246582461000861],[116,230,64,-0.1115780343492643],[116,230,65,-0.10961180833304986],[116,230,66,-0.10258285130972675],[116,230,67,-0.09300469341003224],[116,230,68,-0.07850476120122363],[116,230,69,-0.05732561009150416],[116,230,70,-0.04103600121261605],[116,230,71,-0.0295985919786455],[116,230,72,-0.019905454091878327],[116,230,73,-0.05322713951708813],[116,230,74,-0.15008112606676427],[116,230,75,-0.16289246328134183],[116,230,76,-0.15326038464136257],[116,230,77,-0.14862958020550174],[116,230,78,-0.13871965672102635],[116,230,79,-0.12899307486447623],[116,231,64,-0.1190589882059053],[116,231,65,-0.11623529328686907],[116,231,66,-0.10821914908153575],[116,231,67,-0.09522432056505731],[116,231,68,-0.0815555468204247],[116,231,69,-0.061549357421246724],[116,231,70,-0.04478678074193522],[116,231,71,-0.03263826647391766],[116,231,72,-0.023217144205964213],[116,231,73,-0.01079894801252565],[116,231,74,-0.08166251195119957],[116,231,75,-0.12388610878554712],[116,231,76,-0.13052349148799766],[116,231,77,-0.14739317502197227],[116,231,78,-0.13468294531997876],[116,231,79,-0.12598178828022893],[116,232,64,-0.11975904794718233],[116,232,65,-0.11840679335657114],[116,232,66,-0.10803666406422904],[116,232,67,-0.09319052547743853],[116,232,68,-0.08085335581357128],[116,232,69,-0.06180705815794142],[116,232,70,-0.04587530332562896],[116,232,71,-0.03252938153302877],[116,232,72,-0.025529894922893814],[116,232,73,-0.008815122278735599],[116,232,74,-0.07687956470035345],[116,232,75,-0.11723790454250003],[116,232,76,-0.12371083404754481],[116,232,77,-0.14483045695304692],[116,232,78,-0.1346408860779757],[116,232,79,-0.12733823959789203],[116,233,64,-0.12498526237322276],[116,233,65,-0.12002243119700802],[116,233,66,-0.10789823013496944],[116,233,67,-0.09275730692325801],[116,233,68,-0.07912765500835944],[116,233,69,-0.06066224374149444],[116,233,70,-0.046758369536300276],[116,233,71,-0.03430682251585555],[116,233,72,-0.024319592086070208],[116,233,73,-0.010063420789627894],[116,233,74,-0.08077140510338611],[116,233,75,-0.10876004279415567],[116,233,76,-0.1287549419722667],[116,233,77,-0.14757875033361573],[116,233,78,-0.1388646736914644],[116,233,79,-0.13510850185096282],[116,234,64,-0.13447437363613046],[116,234,65,-0.1263856568214331],[116,234,66,-0.11308173196301965],[116,234,67,-0.09566452780539694],[116,234,68,-0.08321474268365465],[116,234,69,-0.0681247033359875],[116,234,70,-0.05272101422815155],[116,234,71,-0.03721782631803685],[116,234,72,-0.026630216624857123],[116,234,73,-0.010939866702981166],[116,234,74,-0.05742387023566071],[116,234,75,-0.08861858350821421],[116,234,76,-0.11360316341611328],[116,234,77,-0.14374448126576306],[116,234,78,-0.13597729512911955],[116,234,79,-0.13033381397733904],[116,235,64,-0.13690269517294923],[116,235,65,-0.13009339368855338],[116,235,66,-0.1148365634318589],[116,235,67,-0.09946668898921937],[116,235,68,-0.08501161289485804],[116,235,69,-0.07004455233823402],[116,235,70,-0.05557274958131152],[116,235,71,-0.038410209118507746],[116,235,72,-0.026840226067583295],[116,235,73,-0.011102762719010978],[116,235,74,-0.0037574313794029313],[116,235,75,0.007347328469638578],[116,235,76,-0.013921073968118695],[116,235,77,-0.07287550194712356],[116,235,78,-0.14526962375994196],[116,235,79,-0.13770430830393612],[116,236,64,-0.15627365306117294],[116,236,65,-0.14977980410995415],[116,236,66,-0.13379800634286948],[116,236,67,-0.11831016894799151],[116,236,68,-0.1037998449865087],[116,236,69,-0.08927890845177726],[116,236,70,-0.07209331803606334],[116,236,71,-0.055567369834437774],[116,236,72,-0.0421500926557339],[116,236,73,-0.027158977596836796],[116,236,74,-0.021131833145157625],[116,236,75,-0.01285651282815871],[116,236,76,-0.0331916276617622],[116,236,77,-0.0833006867122534],[116,236,78,-0.1505200125394529],[116,236,79,-0.14286981774514873],[116,237,64,-0.16541811224325348],[116,237,65,-0.15055187617933583],[116,237,66,-0.13081457160579632],[116,237,67,-0.11140361964323586],[116,237,68,-0.09580568453168362],[116,237,69,-0.08247107843925099],[116,237,70,-0.06455982585852069],[116,237,71,-0.04896361958009391],[116,237,72,-0.03767569190833041],[116,237,73,-0.024568542448006936],[116,237,74,-0.01527614302165306],[116,237,75,-0.050870834700674196],[116,237,76,-0.06474302289944826],[116,237,77,-0.11658932647777208],[116,237,78,-0.14978380745219225],[116,237,79,-0.14312760362960114],[116,238,64,-0.16400952194811663],[116,238,65,-0.14968787278495782],[116,238,66,-0.1313637736255033],[116,238,67,-0.11374071111924158],[116,238,68,-0.09713728252761795],[116,238,69,-0.08349565626451666],[116,238,70,-0.06417347775286805],[116,238,71,-0.0495458933079509],[116,238,72,-0.03714026119643494],[116,238,73,-0.027478406793911336],[116,238,74,-0.04583267861466345],[116,238,75,-0.08211204156213492],[116,238,76,-0.0958632546926551],[116,238,77,-0.14208046305509658],[116,238,78,-0.14594434952370858],[116,238,79,-0.13811931895289709],[116,239,64,-0.1692462215891915],[116,239,65,-0.15545011729506358],[116,239,66,-0.13918601856382562],[116,239,67,-0.12094622925548468],[116,239,68,-0.10437087574969933],[116,239,69,-0.08863342796802404],[116,239,70,-0.06866384874383342],[116,239,71,-0.05212468929619078],[116,239,72,-0.03915379361222319],[116,239,73,-0.030477153778415686],[116,239,74,-0.031724782012383095],[116,239,75,-0.05749035219576096],[116,239,76,-0.07456198508742908],[116,239,77,-0.11443908086480445],[116,239,78,-0.14367030668475322],[116,239,79,-0.1359479693587588],[116,240,64,-0.16845409132769468],[116,240,65,-0.1540866561124533],[116,240,66,-0.13834092350213084],[116,240,67,-0.12080915662500996],[116,240,68,-0.10508738984768765],[116,240,69,-0.08770303169204259],[116,240,70,-0.06920306150084944],[116,240,71,-0.05227182354756855],[116,240,72,-0.039570160865565605],[116,240,73,-0.03326564354716447],[116,240,74,-0.030212632355674594],[116,240,75,-0.046388651798439866],[116,240,76,-0.0601711042170647],[116,240,77,-0.10514815197814006],[116,240,78,-0.1453701188521992],[116,240,79,-0.1380799166127253],[116,241,64,-0.16321493370644902],[116,241,65,-0.15472807163709668],[116,241,66,-0.14113498739679436],[116,241,67,-0.12617315200157492],[116,241,68,-0.11354748362586331],[116,241,69,-0.09578924366241576],[116,241,70,-0.0786675326311968],[116,241,71,-0.06336845963075138],[116,241,72,-0.049955459363820086],[116,241,73,-0.044460069125577276],[116,241,74,-0.036130981418995574],[116,241,75,-0.020751055839076216],[116,241,76,-0.003885662481362809],[116,241,77,0.012360635026747502],[116,241,78,0.026893870144401616],[116,241,79,-0.05477045488024898],[116,242,64,-0.16685542524927421],[116,242,65,-0.15851643272435406],[116,242,66,-0.14284521076984616],[116,242,67,-0.13039462976285593],[116,242,68,-0.11763367293584635],[116,242,69,-0.10006480946067339],[116,242,70,-0.08400656756163542],[116,242,71,-0.06629452589603413],[116,242,72,-0.05330246940488273],[116,242,73,-0.04896072214757696],[116,242,74,-0.038388999733177435],[116,242,75,-0.024749485822476255],[116,242,76,-0.01006462939430966],[116,242,77,0.008212122957937773],[116,242,78,0.02329052234323664],[116,242,79,-0.061852190932296935],[116,243,64,-0.1659370994508421],[116,243,65,-0.15385527846766878],[116,243,66,-0.14227274176992177],[116,243,67,-0.1302457663357759],[116,243,68,-0.11888140119513434],[116,243,69,-0.10077068688817822],[116,243,70,-0.08668784547636353],[116,243,71,-0.06789526644039462],[116,243,72,-0.053616890556446486],[116,243,73,-0.0481159135647465],[116,243,74,-0.03620135484736483],[116,243,75,-0.02447861912338037],[116,243,76,-0.011659421438671394],[116,243,77,0.0033562179418262367],[116,243,78,0.019345854747621655],[116,243,79,-0.0783107492450863],[116,244,64,-0.15161123579390198],[116,244,65,-0.1422861068861383],[116,244,66,-0.13192696888302902],[116,244,67,-0.1238286815291222],[116,244,68,-0.11103300984921706],[116,244,69,-0.09430057902168278],[116,244,70,-0.07969004525609537],[116,244,71,-0.06445626327136378],[116,244,72,-0.048985181900705166],[116,244,73,-0.04025752168263428],[116,244,74,-0.029392794095762113],[116,244,75,-0.020920130236102633],[116,244,76,-0.008089929614893882],[116,244,77,0.004599172526810566],[116,244,78,0.01979554295378179],[116,244,79,-0.06409616061305855],[116,245,64,-0.146854572008233],[116,245,65,-0.1385396759505731],[116,245,66,-0.12928762697795515],[116,245,67,-0.1218693887838079],[116,245,68,-0.10790524860198158],[116,245,69,-0.09206744366128489],[116,245,70,-0.07960602259209618],[116,245,71,-0.06671228842758524],[116,245,72,-0.05055608182577818],[116,245,73,-0.038417348326506603],[116,245,74,-0.029412314449883056],[116,245,75,-0.021834331273331252],[116,245,76,-0.011531545311140728],[116,245,77,0.0036788577695512914],[116,245,78,0.016054344608501803],[116,245,79,-0.05548872566663372],[116,246,64,-0.1437244216332465],[116,246,65,-0.1320489124468362],[116,246,66,-0.12513172017110366],[116,246,67,-0.11682945011572093],[116,246,68,-0.10244710040847049],[116,246,69,-0.09013318080940559],[116,246,70,-0.07884416986822693],[116,246,71,-0.06513406980710164],[116,246,72,-0.0496552621842118],[116,246,73,-0.037520478556872947],[116,246,74,-0.027917547045751223],[116,246,75,-0.02192352586744961],[116,246,76,-0.011491048443554155],[116,246,77,0.002287553419531671],[116,246,78,0.014209780327146787],[116,246,79,-0.06341508799331766],[116,247,64,-0.14850160766278434],[116,247,65,-0.13323276467976425],[116,247,66,-0.12491035712772189],[116,247,67,-0.1149194897497454],[116,247,68,-0.10348956006364429],[116,247,69,-0.09416386454239443],[116,247,70,-0.08103556790736162],[116,247,71,-0.06482490069446051],[116,247,72,-0.0504691841216835],[116,247,73,-0.037281422099112935],[116,247,74,-0.02860633091885717],[116,247,75,-0.019622001799875763],[116,247,76,-0.007263791050834939],[116,247,77,0.0019304626942687059],[116,247,78,0.01556601121222019],[116,247,79,-0.048238215317962546],[116,248,64,-0.14644549040249916],[116,248,65,-0.12949427176309614],[116,248,66,-0.12016622242522829],[116,248,67,-0.1103735172308214],[116,248,68,-0.09813700491250647],[116,248,69,-0.08949498539058409],[116,248,70,-0.07827986606318546],[116,248,71,-0.06168606502565706],[116,248,72,-0.04715605145101752],[116,248,73,-0.03640027216970668],[116,248,74,-0.029983135897639027],[116,248,75,-0.018075219441826704],[116,248,76,-0.006181181972179525],[116,248,77,0.0017004576829067614],[116,248,78,0.014096759393877403],[116,248,79,-0.05380107346962816],[116,249,64,-0.13782352560827987],[116,249,65,-0.12153602952745042],[116,249,66,-0.10922342221011355],[116,249,67,-0.09627208516188472],[116,249,68,-0.08451536719155886],[116,249,69,-0.07788787245495796],[116,249,70,-0.06659627932615787],[116,249,71,-0.05164083192679186],[116,249,72,-0.03765288587984579],[116,249,73,-0.026963510165882998],[116,249,74,-0.02077181958248111],[116,249,75,-0.00873274328941992],[116,249,76,0.0018227352748385744],[116,249,77,0.007630857795087792],[116,249,78,0.004932909328036377],[116,249,79,-0.1024537401569508],[116,250,64,-0.14073734924244063],[116,250,65,-0.12387441561179302],[116,250,66,-0.1096852497939042],[116,250,67,-0.09802118679513508],[116,250,68,-0.08838874712997617],[116,250,69,-0.07950805623981715],[116,250,70,-0.06616548686525907],[116,250,71,-0.052873623004356586],[116,250,72,-0.03885020235576802],[116,250,73,-0.02748938555378677],[116,250,74,-0.0220693205335893],[116,250,75,-0.011444264228873291],[116,250,76,-1.3092291118430022E-4],[116,250,77,0.00948844448377878],[116,250,78,-0.03313130602462374],[116,250,79,-0.0875306889758362],[116,251,64,-0.1394010095667252],[116,251,65,-0.12207499653907247],[116,251,66,-0.10795264970075716],[116,251,67,-0.09776380709305375],[116,251,68,-0.08700204598747475],[116,251,69,-0.07951533263895226],[116,251,70,-0.0659153206036957],[116,251,71,-0.05435230534132525],[116,251,72,-0.03913584592140468],[116,251,73,-0.02761284806226466],[116,251,74,-0.01862146204365553],[116,251,75,-0.010777484852201646],[116,251,76,-0.001230033977441175],[116,251,77,0.008968235517152215],[116,251,78,-0.025997834239522323],[116,251,79,-0.08052598945987734],[116,252,64,-0.1333269995954204],[116,252,65,-0.11342001883080695],[116,252,66,-0.09748453447069334],[116,252,67,-0.08599705923934714],[116,252,68,-0.07546507772814759],[116,252,69,-0.0661861823600634],[116,252,70,-0.05341305772240637],[116,252,71,-0.040985084065485886],[116,252,72,-0.024600011846857173],[116,252,73,-0.012611882546485681],[116,252,74,-0.0013774093742224686],[116,252,75,0.004082920898221168],[116,252,76,0.011476913174674794],[116,252,77,0.01917697171628434],[116,252,78,-0.019382891145192753],[116,252,79,-0.07527841138908764],[116,253,64,-0.13883569204688467],[116,253,65,-0.12163061255147956],[116,253,66,-0.10512096783614579],[116,253,67,-0.09562908090347781],[116,253,68,-0.08584760663042301],[116,253,69,-0.0758710780817188],[116,253,70,-0.06564082515821854],[116,253,71,-0.053384417846323806],[116,253,72,-0.038242854535769435],[116,253,73,-0.02458100360891352],[116,253,74,-0.012041569024295568],[116,253,75,-0.004550631168979968],[116,253,76,0.004297614561247373],[116,253,77,0.01604955609966882],[116,253,78,0.020323081633744078],[116,253,79,-0.02725707408081833],[116,254,64,-0.05537800837572944],[116,254,65,-0.04714118029221813],[116,254,66,-0.03708637887581652],[116,254,67,-0.03533098570757631],[116,254,68,-0.03227307845694943],[116,254,69,-0.030446900276213426],[116,254,70,-0.027635398551411325],[116,254,71,-0.025768401420352],[116,254,72,-0.021700663366895204],[116,254,73,-0.01649778093547205],[116,254,74,-0.014143244610610992],[116,254,75,-0.012362812467910586],[116,254,76,-0.013902194798938575],[116,254,77,-0.00893462578130269],[116,254,78,-0.005047983109743309],[116,254,79,-0.043890573230539846],[116,255,64,-0.05397925764969916],[116,255,65,-0.04486901496028572],[116,255,66,-0.0353280500862357],[116,255,67,-0.03164930656264564],[116,255,68,-0.032258619856789336],[116,255,69,-0.02859232433336248],[116,255,70,-0.023747833130872226],[116,255,71,-0.025101693057094768],[116,255,72,-0.02294094084576785],[116,255,73,-0.016864808598790915],[116,255,74,-0.01581419645910731],[116,255,75,-0.012583203980077784],[116,255,76,-0.013690138663226714],[116,255,77,-0.008336180371100177],[116,255,78,-0.0019515860886531178],[116,255,79,-0.03533986352888541],[116,256,64,-0.05157061900619654],[116,256,65,-0.04137273510572546],[116,256,66,-0.03340128063126533],[116,256,67,-0.03019218508347521],[116,256,68,-0.03262421954306137],[116,256,69,-0.029091296305419526],[116,256,70,-0.022808929490444593],[116,256,71,-0.024621902072798255],[116,256,72,-0.023230679292725702],[116,256,73,-0.019316350271128144],[116,256,74,-0.01597284928087074],[116,256,75,-0.01164389715311924],[116,256,76,-0.013822643285146152],[116,256,77,-0.01041905244384192],[116,256,78,-0.002586830403220927],[116,256,79,-0.044633005947443904],[116,257,64,-0.04938098564097687],[116,257,65,-0.04092250847169342],[116,257,66,-0.03336874923115271],[116,257,67,-0.03215421205611609],[116,257,68,-0.03300452792218531],[116,257,69,-0.02887077740093609],[116,257,70,-0.022480643873488235],[116,257,71,-0.02389442275427084],[116,257,72,-0.02274050377966383],[116,257,73,-0.01874770850439242],[116,257,74,-0.01704285982832708],[116,257,75,-0.01490760886000568],[116,257,76,-0.013141496856626814],[116,257,77,-0.012188889361339938],[116,257,78,-0.040836273132207584],[116,257,79,-0.08263304233355911],[116,258,64,-0.05103855210585763],[116,258,65,-0.045893322340459994],[116,258,66,-0.038334636505408595],[116,258,67,-0.03629245072645754],[116,258,68,-0.03423645098231205],[116,258,69,-0.03124729023783293],[116,258,70,-0.027507283193912505],[116,258,71,-0.025554463169258038],[116,258,72,-0.02435407302865114],[116,258,73,-0.02021721446041304],[116,258,74,-0.021733355393686607],[116,258,75,-0.019026094534182303],[116,258,76,-0.01856746886166346],[116,258,77,-0.014829897335568207],[116,258,78,-0.04520809947786876],[116,258,79,-0.09480227657754568],[116,259,64,-0.04986130482124208],[116,259,65,-0.04649278217793882],[116,259,66,-0.03924384153489981],[116,259,67,-0.036252158960667656],[116,259,68,-0.03179681314598015],[116,259,69,-0.030200153375739093],[116,259,70,-0.02694861638173869],[116,259,71,-0.027543798463232086],[116,259,72,-0.023279991190271798],[116,259,73,-0.02024351406406573],[116,259,74,-0.01927226147510412],[116,259,75,-0.01992088690666663],[116,259,76,-0.019215258085636816],[116,259,77,-0.014256857262301567],[116,259,78,-0.026451082295398793],[116,259,79,-0.09847148635603412],[116,260,64,-0.12010838428917157],[116,260,65,-0.11847741762426692],[116,260,66,-0.11358575951692938],[116,260,67,-0.11352587614638707],[116,260,68,-0.11134838227137484],[116,260,69,-0.11492676331106216],[116,260,70,-0.11395933003142335],[116,260,71,-0.11493261569513083],[116,260,72,-0.10923261852354614],[116,260,73,-0.10701499515421431],[116,260,74,-0.1095498539276134],[116,260,75,-0.10862404771621507],[116,260,76,-0.10659145281389706],[116,260,77,-0.10032093620789105],[116,260,78,-0.10470468405410194],[116,260,79,-0.14039619710949203],[116,261,64,-0.11310333667323438],[116,261,65,-0.11182925273718364],[116,261,66,-0.1141088384961297],[116,261,67,-0.11530080946794967],[116,261,68,-0.11675906212164085],[116,261,69,-0.11753499264657537],[116,261,70,-0.11628451231740808],[116,261,71,-0.11291539953409488],[116,261,72,-0.10395740230441355],[116,261,73,-0.09757206000367412],[116,261,74,-0.09890688585111021],[116,261,75,-0.09854186371807527],[116,261,76,-0.09679413087174828],[116,261,77,-0.0982207889763918],[116,261,78,-0.12366339244974087],[116,261,79,-0.1644659827147485],[116,262,64,-0.11781488072201281],[116,262,65,-0.11381898136005938],[116,262,66,-0.11637771187860492],[116,262,67,-0.11799965369565002],[116,262,68,-0.12092714987812714],[116,262,69,-0.11936631820153396],[116,262,70,-0.11643312241499688],[116,262,71,-0.11208007607034284],[116,262,72,-0.10343020822093425],[116,262,73,-0.09746878353672314],[116,262,74,-0.1000794412733695],[116,262,75,-0.09971779501414756],[116,262,76,-0.09585600452478672],[116,262,77,-0.09599775130610419],[116,262,78,-0.13581298768865696],[116,262,79,-0.19651524877389298],[116,263,64,-0.11453435434027291],[116,263,65,-0.11090908884021256],[116,263,66,-0.11367199124302252],[116,263,67,-0.11255724470980824],[116,263,68,-0.11579804556544412],[116,263,69,-0.11508513744624987],[116,263,70,-0.11260637829368683],[116,263,71,-0.10767146811276701],[116,263,72,-0.10262039991236566],[116,263,73,-0.098415595754553],[116,263,74,-0.10165173420834077],[116,263,75,-0.09915333575432092],[116,263,76,-0.09381864929282577],[116,263,77,-0.09538232869282023],[116,263,78,-0.13626575854873768],[116,263,79,-0.19589090023411126],[116,264,64,-0.1086049490068227],[116,264,65,-0.1100083068226965],[116,264,66,-0.11086688395394649],[116,264,67,-0.1087577176647869],[116,264,68,-0.10958429903273413],[116,264,69,-0.11259187678747888],[116,264,70,-0.11030830967428559],[116,264,71,-0.10360426248932322],[116,264,72,-0.0995805038769237],[116,264,73,-0.09757791646559857],[116,264,74,-0.10061014331114056],[116,264,75,-0.09900880712792576],[116,264,76,-0.09249997404663976],[116,264,77,-0.09414311235776385],[116,264,78,-0.1409908231157373],[116,264,79,-0.19889411829951492],[116,265,64,-0.11067826781496025],[116,265,65,-0.10907801324542754],[116,265,66,-0.10449220339978929],[116,265,67,-0.09714381403854327],[116,265,68,-0.09438925285834147],[116,265,69,-0.10021545932950275],[116,265,70,-0.10026923316979176],[116,265,71,-0.09967421005599486],[116,265,72,-0.10302228220300666],[116,265,73,-0.10604643524287834],[116,265,74,-0.11123233248032761],[116,265,75,-0.17384943511972512],[116,265,76,-0.2054443416300028],[116,265,77,-0.21105181267771783],[116,265,78,-0.21581982237486722],[116,265,79,-0.2060645574642204],[116,266,64,-0.11139348988260571],[116,266,65,-0.10922979660241676],[116,266,66,-0.10626854431375436],[116,266,67,-0.09924042701787195],[116,266,68,-0.09548238267981203],[116,266,69,-0.09989428513929222],[116,266,70,-0.0998358067783709],[116,266,71,-0.09988436667555661],[116,266,72,-0.10354680485948912],[116,266,73,-0.1084766548948441],[116,266,74,-0.11112314708897189],[116,266,75,-0.1631458497765257],[116,266,76,-0.202749683246576],[116,266,77,-0.2210227831461196],[116,266,78,-0.22095914667636296],[116,266,79,-0.2082028689993481],[116,267,64,-0.10942026649120416],[116,267,65,-0.10732490817902658],[116,267,66,-0.1030142177001459],[116,267,67,-0.09409542875811322],[116,267,68,-0.09207064500637013],[116,267,69,-0.09614840320912733],[116,267,70,-0.09683510679016728],[116,267,71,-0.09946502557745644],[116,267,72,-0.10172264858388971],[116,267,73,-0.10789750579892946],[116,267,74,-0.11006486608041824],[116,267,75,-0.1620708196099332],[116,267,76,-0.2152516361326281],[116,267,77,-0.23744747860689625],[116,267,78,-0.22685068474745398],[116,267,79,-0.21310485619871683],[116,268,64,-0.10010472721137187],[116,268,65,-0.0971003870684716],[116,268,66,-0.0912276521098072],[116,268,67,-0.08098379980767667],[116,268,68,-0.07853460436016102],[116,268,69,-0.07828149777427244],[116,268,70,-0.07825804711919868],[116,268,71,-0.0820173967508298],[116,268,72,-0.08302121242194008],[116,268,73,-0.09028689297987604],[116,268,74,-0.09328607643034267],[116,268,75,-0.13707471116801834],[116,268,76,-0.2015470152810877],[116,268,77,-0.21639904250887904],[116,268,78,-0.20931968664995043],[116,268,79,-0.1956372308828471],[116,269,64,-0.0963729483622704],[116,269,65,-0.09206018412157244],[116,269,66,-0.08683309283795487],[116,269,67,-0.07863478278573313],[116,269,68,-0.07651750424012545],[116,269,69,-0.07483908038526753],[116,269,70,-0.07320824502971668],[116,269,71,-0.07626026297721468],[116,269,72,-0.07877157998193579],[116,269,73,-0.08524771399096875],[116,269,74,-0.08929285646238883],[116,269,75,-0.135772700053029],[116,269,76,-0.2002123224355178],[116,269,77,-0.21470841665849472],[116,269,78,-0.20440498737389376],[116,269,79,-0.19280244569622967],[116,270,64,-0.09647187675059758],[116,270,65,-0.09178919918042067],[116,270,66,-0.08848519211483376],[116,270,67,-0.08204648835607517],[116,270,68,-0.07802198582772643],[116,270,69,-0.07495467502355231],[116,270,70,-0.07185402468872354],[116,270,71,-0.0709303568541436],[116,270,72,-0.07497378022366144],[116,270,73,-0.08495470786636652],[116,270,74,-0.08699479403093578],[116,270,75,-0.1274295507662618],[116,270,76,-0.17961919172978658],[116,270,77,-0.1978862607922292],[116,270,78,-0.18808886907773611],[116,270,79,-0.1763000614118256],[116,271,64,-0.09033115460375045],[116,271,65,-0.08498232117434598],[116,271,66,-0.08096693702150952],[116,271,67,-0.07972598994200003],[116,271,68,-0.07304290813759916],[116,271,69,-0.07141173139879797],[116,271,70,-0.0669516164351242],[116,271,71,-0.06438401595303496],[116,271,72,-0.07148229527640386],[116,271,73,-0.08112666868747043],[116,271,74,-0.08262118239530919],[116,271,75,-0.11732677803021001],[116,271,76,-0.16679865010131045],[116,271,77,-0.19523215737989405],[116,271,78,-0.18310790656759907],[116,271,79,-0.17081163737285832],[116,272,64,-0.08745980441787495],[116,272,65,-0.08007872053490937],[116,272,66,-0.07637326882442876],[116,272,67,-0.07423657072056702],[116,272,68,-0.0681329784966063],[116,272,69,-0.06659238386092714],[116,272,70,-0.06301468710418295],[116,272,71,-0.05980145924941693],[116,272,72,-0.06810572063300785],[116,272,73,-0.07841878204158186],[116,272,74,-0.0779269246442823],[116,272,75,-0.11177465974608128],[116,272,76,-0.162331041924767],[116,272,77,-0.19424439101226376],[116,272,78,-0.17976753571089693],[116,272,79,-0.1672762890594075],[116,273,64,-0.09036105197677025],[116,273,65,-0.07691914417395584],[116,273,66,-0.07090658316663973],[116,273,67,-0.06596400203275882],[116,273,68,-0.05674603236782162],[116,273,69,-0.05449072487529798],[116,273,70,-0.05299188553435638],[116,273,71,-0.05137475094911399],[116,273,72,-0.060862102419107805],[116,273,73,-0.07184822958746533],[116,273,74,-0.07489974267303631],[116,273,75,-0.08338767026616804],[116,273,76,-0.09380153807327543],[116,273,77,-0.08796285452109837],[116,273,78,-0.0740152590647147],[116,273,79,-0.06597901240472379],[116,274,64,-0.08837501040653606],[116,274,65,-0.07901489726556454],[116,274,66,-0.06990966488476874],[116,274,67,-0.06264609000660652],[116,274,68,-0.055919239847644055],[116,274,69,-0.054410424868084874],[116,274,70,-0.05255634548108364],[116,274,71,-0.05312548391360809],[116,274,72,-0.058525689854229256],[116,274,73,-0.06948985312447756],[116,274,74,-0.07436037556782008],[116,274,75,-0.08395740888223889],[116,274,76,-0.09172060388534878],[116,274,77,-0.08163614309570111],[116,274,78,-0.06853432752804348],[116,274,79,-0.060162170758123634],[116,275,64,-0.0857703416478214],[116,275,65,-0.07820863079032975],[116,275,66,-0.0681002317734601],[116,275,67,-0.05892040400351767],[116,275,68,-0.05144213859224665],[116,275,69,-0.050045721066199846],[116,275,70,-0.05053813832691678],[116,275,71,-0.05195498669939633],[116,275,72,-0.05664901881041638],[116,275,73,-0.06501970496455955],[116,275,74,-0.07082712035298726],[116,275,75,-0.08623276838278211],[116,275,76,-0.09495110540632622],[116,275,77,-0.08507690974766427],[116,275,78,-0.0728906224446551],[116,275,79,-0.05988248686927353],[116,276,64,-0.07067073952916406],[116,276,65,-0.06633725365653642],[116,276,66,-0.05284035346484357],[116,276,67,-0.04245917576754865],[116,276,68,-0.03615062350688451],[116,276,69,-0.033643539917915626],[116,276,70,-0.03314254398718147],[116,276,71,-0.03657684905796008],[116,276,72,-0.03990326725703059],[116,276,73,-0.04697651013069758],[116,276,74,-0.05143197945269085],[116,276,75,-0.08104165105400976],[116,276,76,-0.1000148982273105],[116,276,77,-0.08900329419848418],[116,276,78,-0.07747982423239128],[116,276,79,-0.0640100251028955],[116,277,64,-0.059899260118043966],[116,277,65,-0.06057467916666085],[116,277,66,-0.05460996832439908],[116,277,67,-0.05072644027058905],[116,277,68,-0.045545150488352726],[116,277,69,-0.04143795439132143],[116,277,70,-0.038675518946388716],[116,277,71,-0.03976466721920309],[116,277,72,-0.039545277118710156],[116,277,73,-0.04271959810024817],[116,277,74,-0.049341895582042564],[116,277,75,-0.08001676069003805],[116,277,76,-0.09657254537586304],[116,277,77,-0.08543710196549995],[116,277,78,-0.07499469020682256],[116,277,79,-0.05955166372374615],[116,278,64,-0.06126493476919696],[116,278,65,-0.06036686255511238],[116,278,66,-0.05838298349213128],[116,278,67,-0.05417446042198065],[116,278,68,-0.047464799863583096],[116,278,69,-0.041896918182927935],[116,278,70,-0.03819620942122343],[116,278,71,-0.03586576361028761],[116,278,72,-0.034798402563410595],[116,278,73,-0.03887124052474941],[116,278,74,-0.046039544986600955],[116,278,75,-0.0731585234097288],[116,278,76,-0.08392348616190767],[116,278,77,-0.07336759190663061],[116,278,78,-0.06326433397226672],[116,278,79,-0.048665344709209746],[116,279,64,-0.05513793189874155],[116,279,65,-0.055122115193342806],[116,279,66,-0.05558185164615963],[116,279,67,-0.05393752680640052],[116,279,68,-0.04488323925582895],[116,279,69,-0.04075738902454462],[116,279,70,-0.035486170973082924],[116,279,71,-0.03262605360284303],[116,279,72,-0.033830104274100326],[116,279,73,-0.0356680982701407],[116,279,74,-0.04520852782979199],[116,279,75,-0.07161434718396102],[116,279,76,-0.0823491260293226],[116,279,77,-0.07033321956621758],[116,279,78,-0.05876537156529704],[116,279,79,-0.04507563000158571],[116,280,64,-0.05116861323418376],[116,280,65,-0.0536034886595408],[116,280,66,-0.05200825704783797],[116,280,67,-0.04989935067122332],[116,280,68,-0.041642452484703614],[116,280,69,-0.03856954297891647],[116,280,70,-0.03399999867009832],[116,280,71,-0.03229330509102702],[116,280,72,-0.0333278770649702],[116,280,73,-0.037091793254142004],[116,280,74,-0.04443672925930881],[116,280,75,-0.06998279172869885],[116,280,76,-0.08202957124136859],[116,280,77,-0.07124589998412803],[116,280,78,-0.0571204648128949],[116,280,79,-0.04236970919696603],[116,281,64,-0.051352620074957556],[116,281,65,-0.052870591288031135],[116,281,66,-0.05011600931642407],[116,281,67,-0.04510020036663624],[116,281,68,-0.04059653746909832],[116,281,69,-0.035686781868226713],[116,281,70,-0.033269085888086816],[116,281,71,-0.03304377581080345],[116,281,72,-0.03248776633150996],[116,281,73,-0.03712767699800439],[116,281,74,-0.04194982784871328],[116,281,75,-0.08162096090801804],[116,281,76,-0.0911206094974712],[116,281,77,-0.07849228481407261],[116,281,78,-0.06302665648453162],[116,281,79,-0.04938576174666168],[116,282,64,-0.05465219550496719],[116,282,65,-0.05614771054448424],[116,282,66,-0.05073671824193218],[116,282,67,-0.045185767408289355],[116,282,68,-0.04234816857410342],[116,282,69,-0.037787117311081114],[116,282,70,-0.03776706953095634],[116,282,71,-0.0339840696931811],[116,282,72,-0.03220597345644564],[116,282,73,-0.03782604159841374],[116,282,74,-0.04092153905548983],[116,282,75,-0.08038560428948065],[116,282,76,-0.09522951855897066],[116,282,77,-0.08375516397536312],[116,282,78,-0.06898673838774996],[116,282,79,-0.05565981501610834],[116,283,64,-0.055188314239759485],[116,283,65,-0.05524757481104291],[116,283,66,-0.05135119736903116],[116,283,67,-0.04629660197947852],[116,283,68,-0.04215438285903074],[116,283,69,-0.0385885238961525],[116,283,70,-0.03837898221613915],[116,283,71,-0.03214125334716002],[116,283,72,-0.03201277689080302],[116,283,73,-0.0359475035414146],[116,283,74,-0.039866109326067475],[116,283,75,-0.080662050261608],[116,283,76,-0.09774662889387511],[116,283,77,-0.08631049265040555],[116,283,78,-0.0726026560169091],[116,283,79,-0.06002092563046785],[116,284,64,-0.07508580041316452],[116,284,65,-0.07213335756543934],[116,284,66,-0.06823162154807734],[116,284,67,-0.06253686755657853],[116,284,68,-0.05710830520252269],[116,284,69,-0.05487226623340907],[116,284,70,-0.05263567714880196],[116,284,71,-0.046154835059005056],[116,284,72,-0.04433079570919435],[116,284,73,-0.04864096820742251],[116,284,74,-0.05325717512839642],[116,284,75,-0.08511928356711448],[116,284,76,-0.09726854896837384],[116,284,77,-0.08685315043764505],[116,284,78,-0.07343769971081321],[116,284,79,-0.06135962919887347],[116,285,64,-0.08331104637042369],[116,285,65,-0.07833841829173532],[116,285,66,-0.07515748203142725],[116,285,67,-0.0692493591427975],[116,285,68,-0.06037903711568764],[116,285,69,-0.057709188752218823],[116,285,70,-0.054837749106243845],[116,285,71,-0.05039790717474827],[116,285,72,-0.0502593058926112],[116,285,73,-0.05477438432573468],[116,285,74,-0.05916070488478634],[116,285,75,-0.08646150091627508],[116,285,76,-0.0943904043967973],[116,285,77,-0.08081110166025762],[116,285,78,-0.06864767049678064],[116,285,79,-0.05777475861258119],[116,286,64,-0.0835690854629115],[116,286,65,-0.07675668824084421],[116,286,66,-0.07465961219431011],[116,286,67,-0.06842174689988949],[116,286,68,-0.05829464936442301],[116,286,69,-0.05778217308708829],[116,286,70,-0.053183162213286936],[116,286,71,-0.04854868083527447],[116,286,72,-0.0479700433787336],[116,286,73,-0.05422105532306995],[116,286,74,-0.05531167383809156],[116,286,75,-0.08343307244655417],[116,286,76,-0.09109597805342862],[116,286,77,-0.07951110648527018],[116,286,78,-0.06701210611514177],[116,286,79,-0.05539498964367873],[116,287,64,-0.08143588525392045],[116,287,65,-0.07221895700737914],[116,287,66,-0.07106896441138454],[116,287,67,-0.06567391938303029],[116,287,68,-0.05619430613053875],[116,287,69,-0.05448506817767686],[116,287,70,-0.05115320003492751],[116,287,71,-0.04673279508789914],[116,287,72,-0.04675156322057153],[116,287,73,-0.05239043688247619],[116,287,74,-0.05292813969590844],[116,287,75,-0.07726788549668179],[116,287,76,-0.08605145462542285],[116,287,77,-0.0740603118098796],[116,287,78,-0.06239457079283095],[116,287,79,-0.051809314006897755],[116,288,64,-0.0774572495508218],[116,288,65,-0.07087625868569823],[116,288,66,-0.06805711538030569],[116,288,67,-0.06066421535720258],[116,288,68,-0.05543034773444152],[116,288,69,-0.0549397324983041],[116,288,70,-0.05001363072642139],[116,288,71,-0.04314219094724918],[116,288,72,-0.04417608504070704],[116,288,73,-0.048610150455127274],[116,288,74,-0.04901703816764861],[116,288,75,-0.07246188777938822],[116,288,76,-0.08175156512129406],[116,288,77,-0.07001049630297393],[116,288,78,-0.06090688827398036],[116,288,79,-0.04962926293855485],[116,289,64,-0.06390643087054874],[116,289,65,-0.06150790137279527],[116,289,66,-0.05705586526143934],[116,289,67,-0.04897482493116648],[116,289,68,-0.046827218210175485],[116,289,69,-0.044290487239113996],[116,289,70,-0.03782407470929481],[116,289,71,-0.03368764626995557],[116,289,72,-0.031834234127378416],[116,289,73,-0.0361687442440737],[116,289,74,-0.04606394021364391],[116,289,75,-0.08685007190996881],[116,289,76,-0.08495257256378688],[116,289,77,-0.07586899360479007],[116,289,78,-0.06837887082259866],[116,289,79,-0.05342331582358792],[116,290,64,-0.06477323715908777],[116,290,65,-0.06262029957052156],[116,290,66,-0.055190555008594586],[116,290,67,-0.048058803358013505],[116,290,68,-0.04804569989641384],[116,290,69,-0.04159164394023753],[116,290,70,-0.03625250059124701],[116,290,71,-0.03480958841714807],[116,290,72,-0.03200090267662496],[116,290,73,-0.03592658066815751],[116,290,74,-0.03661396358680759],[116,290,75,-0.0740075781664759],[116,290,76,-0.07409697929784959],[116,290,77,-0.06432968993597729],[116,290,78,-0.05651252093744011],[116,290,79,-0.04320883814438964],[116,291,64,-0.06279432944370647],[116,291,65,-0.05869924170792647],[116,291,66,-0.05279032960380115],[116,291,67,-0.045402643287804634],[116,291,68,-0.04091886700124905],[116,291,69,-0.038723628653458006],[116,291,70,-0.033935242007703315],[116,291,71,-0.029594054019867012],[116,291,72,-0.03053096637542376],[116,291,73,-0.032748129642762046],[116,291,74,-0.03506039157033901],[116,291,75,-0.0811430043069771],[116,291,76,-0.07608976587723226],[116,291,77,-0.06583330572592261],[116,291,78,-0.05669334097322787],[116,291,79,-0.04276221456567739],[116,292,64,-0.044207501539114055],[116,292,65,-0.04051557505934626],[116,292,66,-0.03684408314874406],[116,292,67,-0.03322047737768593],[116,292,68,-0.03051255052191386],[116,292,69,-0.030434605377041582],[116,292,70,-0.028410180757419704],[116,292,71,-0.02286017910658039],[116,292,72,-0.026246961301574875],[116,292,73,-0.030228544525949398],[116,292,74,-0.03037357836834385],[116,292,75,-0.0706432550852645],[116,292,76,-0.06848951504314188],[116,292,77,-0.057219773130927715],[116,292,78,-0.04586885871874424],[116,292,79,-0.0338950718346864],[116,293,64,-0.03960958252938056],[116,293,65,-0.03504339182697814],[116,293,66,-0.033131830011174375],[116,293,67,-0.029757338923374815],[116,293,68,-0.02920289117539198],[116,293,69,-0.02802383352228574],[116,293,70,-0.02468893472600829],[116,293,71,-0.018291490231647667],[116,293,72,-0.0224741371132475],[116,293,73,-0.028576520223231254],[116,293,74,-0.029759344067460725],[116,293,75,-0.06604391447047428],[116,293,76,-0.06512678165580596],[116,293,77,-0.055037572160067105],[116,293,78,-0.04309725921697241],[116,293,79,-0.030273412248174203],[116,294,64,-0.03690838922147315],[116,294,65,-0.03276517762349618],[116,294,66,-0.030087876778601114],[116,294,67,-0.029314921195089577],[116,294,68,-0.024370433187036827],[116,294,69,-0.02256197818928904],[116,294,70,-0.021252681806015444],[116,294,71,-0.013703576156577801],[116,294,72,-0.019088370551062418],[116,294,73,-0.02449582501807468],[116,294,74,-0.023869992545580816],[116,294,75,-0.06429931297097792],[116,294,76,-0.07651290778156361],[116,294,77,-0.06781049130070993],[116,294,78,-0.05611023131078782],[116,294,79,-0.04234614932000624],[116,295,64,-0.03458885833441451],[116,295,65,-0.03010963096295309],[116,295,66,-0.028982439794628723],[116,295,67,-0.02718448623213407],[116,295,68,-0.02277280589310232],[116,295,69,-0.01775301044682527],[116,295,70,-0.01673040711275342],[116,295,71,-0.011180924836905679],[116,295,72,-0.01432723328426963],[116,295,73,-0.01966878999802947],[116,295,74,-0.02236144572034726],[116,295,75,-0.024114814130051607],[116,295,76,-0.049863114443874805],[116,295,77,-0.06561426969288736],[116,295,78,-0.054194938206126364],[116,295,79,-0.0399430245917288],[116,296,64,-0.03382299222760672],[116,296,65,-0.026133247408828525],[116,296,66,-0.026122523431626257],[116,296,67,-0.025125508791782686],[116,296,68,-0.02047855807990176],[116,296,69,-0.015925254882952364],[116,296,70,-0.014844310528848645],[116,296,71,-0.011177280288302144],[116,296,72,-0.013423913150001188],[116,296,73,-0.01683957836516431],[116,296,74,-0.020886115354977863],[116,296,75,-0.023533064072470244],[116,296,76,-0.04184305721642463],[116,296,77,-0.06342017406260775],[116,296,78,-0.05192264994643994],[116,296,79,-0.038872061604836305],[116,297,64,-0.03291224240279668],[116,297,65,-0.029959000261688906],[116,297,66,-0.03017978154751831],[116,297,67,-0.031930624783177236],[116,297,68,-0.024373504057454032],[116,297,69,-0.02274550615937014],[116,297,70,-0.020129241876754633],[116,297,71,-0.016141371609169147],[116,297,72,-0.009644861770947089],[116,297,73,-0.009269354111035272],[116,297,74,-0.013112044337249697],[116,297,75,-0.016540010128097804],[116,297,76,-0.04261784009044388],[116,297,77,-0.07040520552634436],[116,297,78,-0.05550264916087455],[116,297,79,-0.04303319759999069],[116,298,64,-0.0314828731061971],[116,298,65,-0.029372271538576286],[116,298,66,-0.028206936220549914],[116,298,67,-0.02881254850928215],[116,298,68,-0.02424243665539977],[116,298,69,-0.02013178381736043],[116,298,70,-0.020391085466851255],[116,298,71,-0.016318166487379146],[116,298,72,-0.01068057887543708],[116,298,73,-0.010239444168519393],[116,298,74,-0.011926141305455842],[116,298,75,-0.013837578692218425],[116,298,76,-0.0167985317748298],[116,298,77,-0.05103504047796244],[116,298,78,-0.052760502724508745],[116,298,79,-0.0399186389649345],[116,299,64,-0.030252294983115824],[116,299,65,-0.0267206953226221],[116,299,66,-0.025199652322426214],[116,299,67,-0.022816480048238205],[116,299,68,-0.01746611260186709],[116,299,69,-0.015619167322973901],[116,299,70,-0.01746222288258026],[116,299,71,-0.015239057459581748],[116,299,72,-0.009940995046091763],[116,299,73,-0.00762317130229033],[116,299,74,-0.010587588950377202],[116,299,75,-0.009398945498170053],[116,299,76,-0.005668698539182843],[116,299,77,-0.04505128358334708],[116,299,78,-0.057312844782109434],[116,299,79,-0.04099068225225497],[116,300,64,-0.03284040891094231],[116,300,65,-0.021077793195642736],[116,300,66,-0.0151864102769039],[116,300,67,-0.007974585933579081],[116,300,68,-0.0029496919805501176],[116,300,69,-0.001430875756401384],[116,300,70,-0.005697110757561616],[116,300,71,-0.005282166737680144],[116,300,72,-0.007921552032396764],[116,300,73,-0.009629203653020738],[116,300,74,-0.011687536445296173],[116,300,75,-0.010888988392233262],[116,300,76,-0.0037936584536421986],[116,300,77,0.0014252838361884096],[116,300,78,0.00455409280478461],[116,300,79,0.004958307298791337],[116,301,64,-0.028396652209278936],[116,301,65,-0.019121599310935863],[116,301,66,-0.011095087813298973],[116,301,67,-0.0033203833120796777],[116,301,68,-9.487044120619487E-4],[116,301,69,9.143597671748827E-4],[116,301,70,-0.0026098589214699625],[116,301,71,-0.0036012121601578656],[116,301,72,-0.006008318015570571],[116,301,73,-0.009171347775309757],[116,301,74,-0.010074827502058958],[116,301,75,-0.009185745784047461],[116,301,76,-0.002306184613082754],[116,301,77,0.0028114365813260017],[116,301,78,0.006497931043508917],[116,301,79,0.007370763009780048],[116,302,64,-0.02403325225192182],[116,302,65,-0.016269524471931904],[116,302,66,-0.004121091226935228],[116,302,67,0.0024767640282625514],[116,302,68,0.004926982921234155],[116,302,69,0.00548416527610561],[116,302,70,0.005663706242377803],[116,302,71,0.006039045665191742],[116,302,72,0.002336134818240493],[116,302,73,-0.003014318125036178],[116,302,74,-0.004081836932323751],[116,302,75,4.701026769160094E-4],[116,302,76,0.0058253510825895805],[116,302,77,0.01157612385292317],[116,302,78,0.014346863702487098],[116,302,79,0.016518845943789],[116,303,64,-0.019994681726303032],[116,303,65,-0.012675538607908154],[116,303,66,-0.0021171323560617433],[116,303,67,0.005446120233442611],[116,303,68,0.004355556931105259],[116,303,69,0.008215415650243932],[116,303,70,0.011629315070496846],[116,303,71,0.007291752212880684],[116,303,72,0.00532766441746238],[116,303,73,9.832924136164573E-4],[116,303,74,-0.0017561680548056485],[116,303,75,0.00136057517031557],[116,303,76,0.008701741503583021],[116,303,77,0.011856782917310349],[116,303,78,0.015077708164950104],[116,303,79,0.01748162675563784],[116,304,64,-0.019099564167140218],[116,304,65,-0.012055985988183623],[116,304,66,-0.0024907190865421924],[116,304,67,0.005507809448804177],[116,304,68,0.006879288409996909],[116,304,69,0.010996792698867552],[116,304,70,0.016137816912763753],[116,304,71,0.011772486209348898],[116,304,72,0.010308751384060011],[116,304,73,0.004408344168268963],[116,304,74,0.0031377340969550443],[116,304,75,0.004025869341638871],[116,304,76,0.008976042421907415],[116,304,77,0.012706469679969315],[116,304,78,0.015406276412461534],[116,304,79,0.020941279293636168],[116,305,64,-0.020647179805783414],[116,305,65,-0.011500470757010037],[116,305,66,-0.004782965513780421],[116,305,67,0.004994472354523785],[116,305,68,0.009119636902670855],[116,305,69,0.013506150919839116],[116,305,70,0.02032986505618685],[116,305,71,0.016592537589193795],[116,305,72,0.013552051124237921],[116,305,73,0.007362045206048967],[116,305,74,0.006448553628794096],[116,305,75,0.007055668587843178],[116,305,76,0.012234623249110496],[116,305,77,0.012846319973553608],[116,305,78,0.01786922147810395],[116,305,79,0.023651948434644965],[116,306,64,-0.02272328039323275],[116,306,65,-0.013722605859222053],[116,306,66,-0.005360649041016366],[116,306,67,8.036438851206223E-4],[116,306,68,0.007601309729995245],[116,306,69,0.015288735201710368],[116,306,70,0.022040567489711033],[116,306,71,0.01834711809070616],[116,306,72,0.014027364639676146],[116,306,73,0.00964805896848385],[116,306,74,0.007731147422038287],[116,306,75,0.012315176201288039],[116,306,76,0.01564180900812391],[116,306,77,0.014729185070665854],[116,306,78,0.020829859177118756],[116,306,79,0.027527967465031458],[116,307,64,-0.02193939852461968],[116,307,65,-0.015313905677676293],[116,307,66,-0.006865956068557305],[116,307,67,0.0022490314738370376],[116,307,68,0.010232198725802624],[116,307,69,0.0175358967051419],[116,307,70,0.024090113428811538],[116,307,71,0.01990883922046581],[116,307,72,0.015658884682299423],[116,307,73,0.01275730971185167],[116,307,74,0.0091400735744806],[116,307,75,0.015360616552331785],[116,307,76,0.01857667620386652],[116,307,77,0.022498098724103216],[116,307,78,0.024882706785145647],[116,307,79,0.02974428675186594],[116,308,64,-0.011428416083144002],[116,308,65,-0.005156953298406847],[116,308,66,0.00412080038123204],[116,308,67,0.014766633387821013],[116,308,68,0.019837961291064243],[116,308,69,0.02475989925446366],[116,308,70,0.028645981252722094],[116,308,71,0.023973666542760536],[116,308,72,0.01975332688996259],[116,308,73,0.018445390148715476],[116,308,74,0.016378668350348846],[116,308,75,0.021485317055147793],[116,308,76,0.0259858678507056],[116,308,77,0.02824216972928674],[116,308,78,0.0302181014948672],[116,308,79,0.02127305987778208],[116,309,64,-0.01361451369564208],[116,309,65,-0.004595545864358938],[116,309,66,0.0049146249033291955],[116,309,67,0.01614799493883115],[116,309,68,0.02364671306684729],[116,309,69,0.02783392337680521],[116,309,70,0.03056230437976687],[116,309,71,0.026433447846685],[116,309,72,0.022570389925833684],[116,309,73,0.022581355922580038],[116,309,74,0.020762838266541878],[116,309,75,0.023600284114945566],[116,309,76,0.027911515004165555],[116,309,77,0.028837034181493568],[116,309,78,0.03179963834882911],[116,309,79,0.031122047963396515],[116,310,64,-0.007904957893135917],[116,310,65,-0.0010801978413483848],[116,310,66,0.010803273753191983],[116,310,67,0.022127239901909818],[116,310,68,0.03253371118084167],[116,310,69,0.03718224379887025],[116,310,70,0.03889326943547236],[116,310,71,0.03481284367102824],[116,310,72,0.03111028282676337],[116,310,73,0.032069486614512505],[116,310,74,0.02999002420771424],[116,310,75,0.03329717944677378],[116,310,76,0.036320255542530516],[116,310,77,0.038488641958666414],[116,310,78,0.04094818008517867],[116,310,79,0.03827354207432682],[116,311,64,-0.0061264570993330575],[116,311,65,0.001984573935491063],[116,311,66,0.01222061770877099],[116,311,67,0.025521960503102445],[116,311,68,0.036129680734316716],[116,311,69,0.0417657267134809],[116,311,70,0.04038116473360216],[116,311,71,0.035254515181960835],[116,311,72,0.033563164454016775],[116,311,73,0.03501121379580269],[116,311,74,0.03414737089141544],[116,311,75,0.03432338267113014],[116,311,76,0.03695696464832589],[116,311,77,0.03847044988490686],[116,311,78,0.04175594341352351],[116,311,79,0.037688003328625576],[116,312,64,0.006544589951185231],[116,312,65,0.0099339309196768],[116,312,66,0.015792729487019444],[116,312,67,0.027548515209497873],[116,312,68,0.037495214560833726],[116,312,69,0.042332604273531],[116,312,70,0.039861667366538095],[116,312,71,0.03851240484263729],[116,312,72,0.03561198074062266],[116,312,73,0.039678496787542955],[116,312,74,0.03787096844410433],[116,312,75,0.035566003594717205],[116,312,76,0.03773137453765464],[116,312,77,0.0344119410206874],[116,312,78,0.03518289424928521],[116,312,79,0.035301455049750755],[116,313,64,0.0076247332812837965],[116,313,65,0.010010034989057268],[116,313,66,0.01761301328261075],[116,313,67,0.028748664723124942],[116,313,68,0.036364721674522746],[116,313,69,0.0433914790301278],[116,313,70,0.039955103936035755],[116,313,71,0.03929540734374194],[116,313,72,0.0381474810254767],[116,313,73,0.04082038794108149],[116,313,74,0.04229766165059985],[116,313,75,0.03847679476650005],[116,313,76,0.039732936397581436],[116,313,77,0.03743941607349331],[116,313,78,0.03646667258636829],[116,313,79,0.03810579985217813],[116,314,64,0.004497591277196664],[116,314,65,0.0063172232242901805],[116,314,66,0.016094985148118662],[116,314,67,0.024359322742951786],[116,314,68,0.03394460487355548],[116,314,69,0.043032457736726384],[116,314,70,0.040899698622418976],[116,314,71,0.03912646946847029],[116,314,72,0.0363709491753359],[116,314,73,0.039027728118028626],[116,314,74,0.041717412734049455],[116,314,75,0.0405502453794203],[116,314,76,0.03953978087793879],[116,314,77,0.0381716258139263],[116,314,78,0.038858946441725495],[116,314,79,0.037592297325802985],[116,315,64,0.0023978518581623115],[116,315,65,0.007344390091091793],[116,315,66,0.014411221121297585],[116,315,67,0.025076507080281987],[116,315,68,0.03573557200260831],[116,315,69,0.042398056796007375],[116,315,70,0.043609225053704626],[116,315,71,0.03983653623207983],[116,315,72,0.036959457642436105],[116,315,73,0.041754961226642406],[116,315,74,0.04045811498274121],[116,315,75,0.04246550678303018],[116,315,76,0.04027613349959877],[116,315,77,0.0398620339291485],[116,315,78,0.04148748292884924],[116,315,79,0.03782131124217317],[116,316,64,-0.008275447142643846],[116,316,65,0.0011045261586399985],[116,316,66,0.008622238665979859],[116,316,67,0.024381011925382154],[116,316,68,0.03435554780030309],[116,316,69,0.04265740686826852],[116,316,70,0.047697755928760924],[116,316,71,0.04418456203773673],[116,316,72,0.04097032240634815],[116,316,73,0.04573030791521632],[116,316,74,0.04602088149006002],[116,316,75,0.04689586883404141],[116,316,76,0.04710436410852256],[116,316,77,0.046993262720657555],[116,316,78,0.047840241313401394],[116,316,79,0.047007850653146416],[116,317,64,-0.009406843675471621],[116,317,65,0.002753986644357456],[116,317,66,0.010573175484582656],[116,317,67,0.024336066197113287],[116,317,68,0.03483194321508408],[116,317,69,0.04303584799609028],[116,317,70,0.04754789258216137],[116,317,71,0.04579477826693243],[116,317,72,0.04131872263073612],[116,317,73,0.04504423512856122],[116,317,74,0.04603512938905721],[116,317,75,0.046752680193863375],[116,317,76,0.04964834793451871],[116,317,77,0.05038362509435196],[116,317,78,0.048120800977002706],[116,317,79,0.046907295686496646],[116,318,64,-0.00330388486933951],[116,318,65,0.010379029451385302],[116,318,66,0.01999260296591729],[116,318,67,0.03317530684768692],[116,318,68,0.04414283265209108],[116,318,69,0.05121406937136161],[116,318,70,0.05663170239020206],[116,318,71,0.05760066877642063],[116,318,72,0.050191304346434595],[116,318,73,0.04961323882953671],[116,318,74,0.05455941268598724],[116,318,75,0.055802281519240576],[116,318,76,0.059874650820587294],[116,318,77,0.06071138226256735],[116,318,78,0.05930288947723793],[116,318,79,0.05822486255361785],[116,319,64,-0.004353830522990515],[116,319,65,0.01035962252071694],[116,319,66,0.021326722682001892],[116,319,67,0.03547479574353381],[116,319,68,0.04626870479074774],[116,319,69,0.051728156262065283],[116,319,70,0.05776987148329958],[116,319,71,0.06066450718764059],[116,319,72,0.05370223847623161],[116,319,73,0.05066270208564523],[116,319,74,0.05462105343450742],[116,319,75,0.05417080050010392],[116,319,76,0.058644964253663764],[116,319,77,0.06078750791805092],[116,319,78,0.058835355747964155],[116,319,79,0.06391781902776678],[117,-64,64,-0.4777232942009921],[117,-64,65,-0.46889270979772163],[117,-64,66,-0.4610502892242142],[117,-64,67,-0.4464094716768421],[117,-64,68,-0.43630064655886097],[117,-64,69,-0.4295101499712376],[117,-64,70,-0.4195109887609951],[117,-64,71,-0.412973296957295],[117,-64,72,-0.4072753628408194],[117,-64,73,-0.3976912560671403],[117,-64,74,-0.39615452536396334],[117,-64,75,-0.3934657435190091],[117,-64,76,-0.393118244911074],[117,-64,77,-0.392970557874806],[117,-64,78,-0.3882118612081501],[117,-64,79,-0.3845385698647954],[117,-63,64,-0.48046654016283574],[117,-63,65,-0.4704256758611216],[117,-63,66,-0.46161858456339366],[117,-63,67,-0.44595320049146636],[117,-63,68,-0.4373446808992601],[117,-63,69,-0.42824985173781405],[117,-63,70,-0.4194442888003192],[117,-63,71,-0.41388220098783624],[117,-63,72,-0.40421917470841257],[117,-63,73,-0.3953722902843123],[117,-63,74,-0.3914198285723512],[117,-63,75,-0.3940352110526454],[117,-63,76,-0.3923333082742909],[117,-63,77,-0.38956496323875955],[117,-63,78,-0.38553032171056795],[117,-63,79,-0.3823781970421269],[117,-62,64,-0.47993386681556016],[117,-62,65,-0.4697399065166943],[117,-62,66,-0.45665056175078855],[117,-62,67,-0.4457677214791277],[117,-62,68,-0.43452873825681315],[117,-62,69,-0.42680463760749887],[117,-62,70,-0.4163704504775738],[117,-62,71,-0.4106851345726396],[117,-62,72,-0.40003688724406394],[117,-62,73,-0.395009013971101],[117,-62,74,-0.389152844717337],[117,-62,75,-0.3914090318803317],[117,-62,76,-0.3885283573192368],[117,-62,77,-0.384726968941826],[117,-62,78,-0.3847409577956804],[117,-62,79,-0.38204777904735604],[117,-61,64,-0.48272832572114033],[117,-61,65,-0.47147389514602145],[117,-61,66,-0.45776968115293726],[117,-61,67,-0.44689024721464304],[117,-61,68,-0.4377151756913228],[117,-61,69,-0.43137454812983966],[117,-61,70,-0.42006212409266347],[117,-61,71,-0.41176570673256424],[117,-61,72,-0.4005821879953822],[117,-61,73,-0.3968736790348002],[117,-61,74,-0.39393031178883064],[117,-61,75,-0.39347077925078655],[117,-61,76,-0.38963322935109257],[117,-61,77,-0.38690803179441347],[117,-61,78,-0.38440796267741484],[117,-61,79,-0.38065691344481256],[117,-60,64,-0.48257582754975925],[117,-60,65,-0.47010442594986307],[117,-60,66,-0.45895179782570933],[117,-60,67,-0.4484615035028242],[117,-60,68,-0.440121202990176],[117,-60,69,-0.4311694563058208],[117,-60,70,-0.4187423395955144],[117,-60,71,-0.4096721724788011],[117,-60,72,-0.4002504000486523],[117,-60,73,-0.39369895218970097],[117,-60,74,-0.3925812670800666],[117,-60,75,-0.39257858046821853],[117,-60,76,-0.38620732628989535],[117,-60,77,-0.3868106159322121],[117,-60,78,-0.3827982611610454],[117,-60,79,-0.37805093869680423],[117,-59,64,-0.46863677474637544],[117,-59,65,-0.4579516206500436],[117,-59,66,-0.44922739357158786],[117,-59,67,-0.43989498719721504],[117,-59,68,-0.4334707376599714],[117,-59,69,-0.4250915547741926],[117,-59,70,-0.41086947565937426],[117,-59,71,-0.40170299277434107],[117,-59,72,-0.39681101731751917],[117,-59,73,-0.39099767021867726],[117,-59,74,-0.38788306378996146],[117,-59,75,-0.38856276729940264],[117,-59,76,-0.3850001351128534],[117,-59,77,-0.3854145816039547],[117,-59,78,-0.38169848298062514],[117,-59,79,-0.3783278547533825],[117,-58,64,-0.46398504155939685],[117,-58,65,-0.4563531494711083],[117,-58,66,-0.4491342614014424],[117,-58,67,-0.4388637355861063],[117,-58,68,-0.43244931878477366],[117,-58,69,-0.42180990651419187],[117,-58,70,-0.4064788228049448],[117,-58,71,-0.3986097509499216],[117,-58,72,-0.3952430761381217],[117,-58,73,-0.38916480893225625],[117,-58,74,-0.3861936364390603],[117,-58,75,-0.3852442147035099],[117,-58,76,-0.38171453405342914],[117,-58,77,-0.38328621350861786],[117,-58,78,-0.3792174905370151],[117,-58,79,-0.37663771003073526],[117,-57,64,-0.4695349359572223],[117,-57,65,-0.4594760010215867],[117,-57,66,-0.45346943503947096],[117,-57,67,-0.44508378982712304],[117,-57,68,-0.4359312894325518],[117,-57,69,-0.42419694785102297],[117,-57,70,-0.4090375263850542],[117,-57,71,-0.4026820184945918],[117,-57,72,-0.3986642344771952],[117,-57,73,-0.3912387578129839],[117,-57,74,-0.38819705796358017],[117,-57,75,-0.38538687701787644],[117,-57,76,-0.38285019444598034],[117,-57,77,-0.381199959976582],[117,-57,78,-0.37839982905825126],[117,-57,79,-0.3767224331143007],[117,-56,64,-0.46776045265409094],[117,-56,65,-0.46139323709031443],[117,-56,66,-0.4519592034849552],[117,-56,67,-0.44384573574100883],[117,-56,68,-0.43672054367484514],[117,-56,69,-0.422436135446795],[117,-56,70,-0.4085513385056102],[117,-56,71,-0.40160404892436163],[117,-56,72,-0.398194580192763],[117,-56,73,-0.39181454805124827],[117,-56,74,-0.3861743004182236],[117,-56,75,-0.383017938757683],[117,-56,76,-0.3795472911718988],[117,-56,77,-0.37932764403118535],[117,-56,78,-0.3763638512993549],[117,-56,79,-0.37187934539070727],[117,-55,64,-0.46664452277669416],[117,-55,65,-0.46120901598093883],[117,-55,66,-0.4540794556074216],[117,-55,67,-0.44499804254028863],[117,-55,68,-0.4372733195840056],[117,-55,69,-0.4235125651809084],[117,-55,70,-0.41175576253364804],[117,-55,71,-0.40164462152178226],[117,-55,72,-0.3968525315404299],[117,-55,73,-0.3912095595826603],[117,-55,74,-0.38419816917872657],[117,-55,75,-0.3823148342846444],[117,-55,76,-0.3763637540189872],[117,-55,77,-0.37581072594573955],[117,-55,78,-0.3718108826091494],[117,-55,79,-0.3668098874229569],[117,-54,64,-0.4621213400751513],[117,-54,65,-0.46061274602575053],[117,-54,66,-0.45318851417094436],[117,-54,67,-0.44773312311913327],[117,-54,68,-0.4370934194855506],[117,-54,69,-0.4273674133773995],[117,-54,70,-0.4123402066135544],[117,-54,71,-0.4005451200770097],[117,-54,72,-0.3963222767621214],[117,-54,73,-0.38942365358601777],[117,-54,74,-0.3832177260266769],[117,-54,75,-0.3783226231544027],[117,-54,76,-0.37277103479032286],[117,-54,77,-0.37006172618671085],[117,-54,78,-0.36662598122867557],[117,-54,79,-0.3642712135066792],[117,-53,64,-0.4656740887805142],[117,-53,65,-0.4636991384941646],[117,-53,66,-0.456580993897286],[117,-53,67,-0.4528249525624958],[117,-53,68,-0.4428066550332127],[117,-53,69,-0.4314973775477553],[117,-53,70,-0.415696755990568],[117,-53,71,-0.40627159328965634],[117,-53,72,-0.40042140787196195],[117,-53,73,-0.39353839606338487],[117,-53,74,-0.3859275675432717],[117,-53,75,-0.3796600097024931],[117,-53,76,-0.37137715630284884],[117,-53,77,-0.36947838366034325],[117,-53,78,-0.3683406002435347],[117,-53,79,-0.36782356912748937],[117,-52,64,-0.4284815086848694],[117,-52,65,-0.46441562918683066],[117,-52,66,-0.4605634281977682],[117,-52,67,-0.45489118973290266],[117,-52,68,-0.44436788195743104],[117,-52,69,-0.43336764063075106],[117,-52,70,-0.4186401394540942],[117,-52,71,-0.4081519242695628],[117,-52,72,-0.39899596521976544],[117,-52,73,-0.39106494820578674],[117,-52,74,-0.38312327183603867],[117,-52,75,-0.3748443310406936],[117,-52,76,-0.36766760893743755],[117,-52,77,-0.36615134667819804],[117,-52,78,-0.3656651823914926],[117,-52,79,-0.3669556356619876],[117,-51,64,-0.4576600287887967],[117,-51,65,-0.48017644791031977],[117,-51,66,-0.48431935873612453],[117,-51,67,-0.48356246821560067],[117,-51,68,-0.4733914963026895],[117,-51,69,-0.46276979027188786],[117,-51,70,-0.4465204174921572],[117,-51,71,-0.4341230592621253],[117,-51,72,-0.42261251346590795],[117,-51,73,-0.4108063366217105],[117,-51,74,-0.40291612763131796],[117,-51,75,-0.3921325821394307],[117,-51,76,-0.38225298707888666],[117,-51,77,-0.37476820752372825],[117,-51,78,-0.3642116263257399],[117,-51,79,-0.3560721002011019],[117,-50,64,-0.42562934246864004],[117,-50,65,-0.47986073247590444],[117,-50,66,-0.4840140654610862],[117,-50,67,-0.482699150687398],[117,-50,68,-0.4736800187374285],[117,-50,69,-0.46254529507959313],[117,-50,70,-0.44795724632983247],[117,-50,71,-0.433610104269352],[117,-50,72,-0.4218496630863026],[117,-50,73,-0.41017117670414827],[117,-50,74,-0.39849397712455015],[117,-50,75,-0.38683468688613676],[117,-50,76,-0.38219382322038314],[117,-50,77,-0.37346952969687375],[117,-50,78,-0.36354928722073715],[117,-50,79,-0.3521978696983348],[117,-49,64,-0.4205343707661401],[117,-49,65,-0.48603572596147127],[117,-49,66,-0.4883291192676359],[117,-49,67,-0.4860520316544691],[117,-49,68,-0.4780169142604128],[117,-49,69,-0.46671762680957934],[117,-49,70,-0.4537218335297757],[117,-49,71,-0.4390449957306945],[117,-49,72,-0.42448056343517726],[117,-49,73,-0.4105334053232381],[117,-49,74,-0.3992286870070351],[117,-49,75,-0.38821205581323015],[117,-49,76,-0.38440167387371144],[117,-49,77,-0.37352108407833384],[117,-49,78,-0.3636636120644438],[117,-49,79,-0.3524453473795616],[117,-48,64,-0.40075052509505815],[117,-48,65,-0.44697958122535114],[117,-48,66,-0.4856373699212533],[117,-48,67,-0.481681606013027],[117,-48,68,-0.4732582235553676],[117,-48,69,-0.46297760945573385],[117,-48,70,-0.44885597063560356],[117,-48,71,-0.43715666777614703],[117,-48,72,-0.4209441510657331],[117,-48,73,-0.40506439147615264],[117,-48,74,-0.39672377327659125],[117,-48,75,-0.38506090213656585],[117,-48,76,-0.3812022545698256],[117,-48,77,-0.3703273617957471],[117,-48,78,-0.3621187759650899],[117,-48,79,-0.35055710276820135],[117,-47,64,-0.37113545603118797],[117,-47,65,-0.41514255048511306],[117,-47,66,-0.47546207908970295],[117,-47,67,-0.4686404563418913],[117,-47,68,-0.45701313859914977],[117,-47,69,-0.44740739423602854],[117,-47,70,-0.4344113820072397],[117,-47,71,-0.4242468613937007],[117,-47,72,-0.41184848381588546],[117,-47,73,-0.39490131585544075],[117,-47,74,-0.3849814852728307],[117,-47,75,-0.37737533564882175],[117,-47,76,-0.3710136643026155],[117,-47,77,-0.3640688764233817],[117,-47,78,-0.356381965736253],[117,-47,79,-0.34876147114934664],[117,-46,64,-0.40204010673145407],[117,-46,65,-0.4564982193545226],[117,-46,66,-0.4729864149264481],[117,-46,67,-0.466836827057472],[117,-46,68,-0.4545118364353053],[117,-46,69,-0.4436215430150436],[117,-46,70,-0.4309666851776871],[117,-46,71,-0.42155532103925375],[117,-46,72,-0.41005934041351877],[117,-46,73,-0.3945661609062478],[117,-46,74,-0.3850530257494706],[117,-46,75,-0.3749737918703434],[117,-46,76,-0.3664853607575416],[117,-46,77,-0.3611892603831035],[117,-46,78,-0.350983029132676],[117,-46,79,-0.3405968116275248],[117,-45,64,-0.37889116648981724],[117,-45,65,-0.4518748023349627],[117,-45,66,-0.4747383156164162],[117,-45,67,-0.4669644238459485],[117,-45,68,-0.45409322508518196],[117,-45,69,-0.44341365424959234],[117,-45,70,-0.4321969504535624],[117,-45,71,-0.4216750900054402],[117,-45,72,-0.4140622699065611],[117,-45,73,-0.3989080079495267],[117,-45,74,-0.3869213956368956],[117,-45,75,-0.3768901099129247],[117,-45,76,-0.37005493250340826],[117,-45,77,-0.36196973503500596],[117,-45,78,-0.3493901547526095],[117,-45,79,-0.3403191860823181],[117,-44,64,-0.2779511557389902],[117,-44,65,-0.38764008427031915],[117,-44,66,-0.456908797777842],[117,-44,67,-0.45010828103290335],[117,-44,68,-0.4399058198295824],[117,-44,69,-0.43124873060822183],[117,-44,70,-0.4227469666769756],[117,-44,71,-0.4146504229612976],[117,-44,72,-0.4048831114498337],[117,-44,73,-0.3960635360740624],[117,-44,74,-0.384705734630549],[117,-44,75,-0.3755580875178043],[117,-44,76,-0.36662558027391123],[117,-44,77,-0.3574496402642343],[117,-44,78,-0.3446007843879621],[117,-44,79,-0.3351153357417577],[117,-43,64,-0.31339763965886247],[117,-43,65,-0.41595354530590783],[117,-43,66,-0.44270338832204814],[117,-43,67,-0.43447055523281336],[117,-43,68,-0.4236152989344929],[117,-43,69,-0.4193980281142171],[117,-43,70,-0.41051184605120916],[117,-43,71,-0.40279665685619276],[117,-43,72,-0.3938872301830202],[117,-43,73,-0.38545941501525327],[117,-43,74,-0.37165523134577777],[117,-43,75,-0.364906461243841],[117,-43,76,-0.35722599829616325],[117,-43,77,-0.3516136013682987],[117,-43,78,-0.34053240450765454],[117,-43,79,-0.33132270480845244],[117,-42,64,-0.2904072815799319],[117,-42,65,-0.3793445849610023],[117,-42,66,-0.4379818110261942],[117,-42,67,-0.4308435004004694],[117,-42,68,-0.42259066349161567],[117,-42,69,-0.41475398103245475],[117,-42,70,-0.4091410797629773],[117,-42,71,-0.40059579398825224],[117,-42,72,-0.39233119061657373],[117,-42,73,-0.38309001964017275],[117,-42,74,-0.37203527807586634],[117,-42,75,-0.3632821461129375],[117,-42,76,-0.35690050127548884],[117,-42,77,-0.3495925704484138],[117,-42,78,-0.3388461594894431],[117,-42,79,-0.33053134258636063],[117,-41,64,-0.2638365479267887],[117,-41,65,-0.3741892969413071],[117,-41,66,-0.440031629174536],[117,-41,67,-0.4337951426187331],[117,-41,68,-0.42502802785651844],[117,-41,69,-0.41825272211220166],[117,-41,70,-0.41219008522608414],[117,-41,71,-0.4036803387157245],[117,-41,72,-0.3972682219620316],[117,-41,73,-0.38460320916385377],[117,-41,74,-0.37353658223005853],[117,-41,75,-0.3678250216647425],[117,-41,76,-0.3573160134948297],[117,-41,77,-0.3486988981369448],[117,-41,78,-0.33748671983899986],[117,-41,79,-0.32840977025461554],[117,-40,64,-0.2443933115999186],[117,-40,65,-0.33362487522781686],[117,-40,66,-0.4327314496643587],[117,-40,67,-0.42736468729275096],[117,-40,68,-0.42011688083472176],[117,-40,69,-0.4153643501885646],[117,-40,70,-0.40980196778933586],[117,-40,71,-0.40366364151363854],[117,-40,72,-0.39693977416399584],[117,-40,73,-0.3831327363319409],[117,-40,74,-0.3725006577016292],[117,-40,75,-0.3652016217866232],[117,-40,76,-0.3534341918545509],[117,-40,77,-0.3452143935598763],[117,-40,78,-0.33465518513711306],[117,-40,79,-0.3269026753693531],[117,-39,64,-0.19238985363774555],[117,-39,65,-0.28761393491685944],[117,-39,66,-0.3955293150348548],[117,-39,67,-0.4170845585677374],[117,-39,68,-0.41433883824655277],[117,-39,69,-0.41103147353469177],[117,-39,70,-0.4069292175752235],[117,-39,71,-0.40041502711640864],[117,-39,72,-0.3905441601621336],[117,-39,73,-0.37550374375577505],[117,-39,74,-0.3645631189905007],[117,-39,75,-0.35614928435707466],[117,-39,76,-0.34306770895009464],[117,-39,77,-0.3346573273178875],[117,-39,78,-0.3281567780805246],[117,-39,79,-0.3151421717743335],[117,-38,64,-0.043055830666887174],[117,-38,65,-0.17441651993972176],[117,-38,66,-0.36340849580891293],[117,-38,67,-0.4102643121903278],[117,-38,68,-0.41030196434728017],[117,-38,69,-0.40523819664751715],[117,-38,70,-0.40142147111638854],[117,-38,71,-0.3969332072715953],[117,-38,72,-0.38548931357829597],[117,-38,73,-0.37090927368705817],[117,-38,74,-0.3621679904584268],[117,-38,75,-0.35235783825043654],[117,-38,76,-0.34336220073257395],[117,-38,77,-0.3323619073479884],[117,-38,78,-0.32482059436809174],[117,-38,79,-0.3100007687831651],[117,-37,64,0.04832954240694182],[117,-37,65,-0.09856928551751454],[117,-37,66,-0.3096245126411964],[117,-37,67,-0.4102737523524234],[117,-37,68,-0.4085276901333051],[117,-37,69,-0.40616165143126187],[117,-37,70,-0.4030630089459172],[117,-37,71,-0.39745071567076845],[117,-37,72,-0.3866649940545378],[117,-37,73,-0.3729940678004545],[117,-37,74,-0.3620925250055774],[117,-37,75,-0.3548551733944968],[117,-37,76,-0.34741574339651],[117,-37,77,-0.33574007765823305],[117,-37,78,-0.3263252812553835],[117,-37,79,-0.31079553510131647],[117,-36,64,0.08924902329901219],[117,-36,65,-0.06863914120000147],[117,-36,66,-0.2917356072775932],[117,-36,67,-0.4090858875753165],[117,-36,68,-0.40658425130253506],[117,-36,69,-0.40407738335660726],[117,-36,70,-0.3999227426573228],[117,-36,71,-0.39088299294963824],[117,-36,72,-0.3834588945404406],[117,-36,73,-0.36985565813674404],[117,-36,74,-0.3586200450553466],[117,-36,75,-0.35398715186577656],[117,-36,76,-0.34515489847932507],[117,-36,77,-0.33367458656391985],[117,-36,78,-0.32227340054164416],[117,-36,79,-0.30781301599816574],[117,-35,64,-0.0072418899848338825],[117,-35,65,-0.06222512939308872],[117,-35,66,-0.18549565119673464],[117,-35,67,-0.30004618721029497],[117,-35,68,-0.3987972430880232],[117,-35,69,-0.39860779035215405],[117,-35,70,-0.39721722547764804],[117,-35,71,-0.39001111134767286],[117,-35,72,-0.38541735281455003],[117,-35,73,-0.3723186287118147],[117,-35,74,-0.3623759983514794],[117,-35,75,-0.35616476552202764],[117,-35,76,-0.3480096855913567],[117,-35,77,-0.3346394742564512],[117,-35,78,-0.3212625155824916],[117,-35,79,-0.3059827411680039],[117,-34,64,0.016507893344342828],[117,-34,65,-0.03388145737806503],[117,-34,66,-0.15351386438822068],[117,-34,67,-0.2847034667590767],[117,-34,68,-0.37864465281796],[117,-34,69,-0.39612367567306783],[117,-34,70,-0.39458687576089624],[117,-34,71,-0.3880601064384101],[117,-34,72,-0.3844804636574608],[117,-34,73,-0.3723336037533302],[117,-34,74,-0.3643139794881232],[117,-34,75,-0.35636505446434763],[117,-34,76,-0.3457763819644834],[117,-34,77,-0.3327926242592555],[117,-34,78,-0.31883954757776256],[117,-34,79,-0.3060683327829131],[117,-33,64,0.03231698855678394],[117,-33,65,0.009540500079334158],[117,-33,66,-0.11049811271613841],[117,-33,67,-0.1944718380432782],[117,-33,68,-0.28127134682391797],[117,-33,69,-0.3259060859489541],[117,-33,70,-0.3282547010907957],[117,-33,71,-0.32899115727486883],[117,-33,72,-0.32861937642034084],[117,-33,73,-0.3252179609236208],[117,-33,74,-0.3215605722536641],[117,-33,75,-0.317513633259207],[117,-33,76,-0.3087928524775678],[117,-33,77,-0.3005867956459317],[117,-33,78,-0.2928475770057434],[117,-33,79,-0.2819563974206653],[117,-32,64,0.024431732752686952],[117,-32,65,0.022490419983807075],[117,-32,66,-0.08286087250627844],[117,-32,67,-0.1709927455402742],[117,-32,68,-0.2685839801518034],[117,-32,69,-0.32399389166978293],[117,-32,70,-0.32633693162751815],[117,-32,71,-0.32566998820237525],[117,-32,72,-0.32246996837115244],[117,-32,73,-0.3209344557765712],[117,-32,74,-0.3194394785334733],[117,-32,75,-0.3162033947555605],[117,-32,76,-0.30753929731068996],[117,-32,77,-0.29865082872519694],[117,-32,78,-0.28968210295402114],[117,-32,79,-0.27990190777072443],[117,-31,64,-0.018852962793997396],[117,-31,65,-0.013693331803914355],[117,-31,66,-0.06446426441229283],[117,-31,67,-0.132699955836274],[117,-31,68,-0.23189740803559333],[117,-31,69,-0.29963095335395956],[117,-31,70,-0.3238360189835732],[117,-31,71,-0.3207775549193724],[117,-31,72,-0.3188317330789198],[117,-31,73,-0.31974995731072464],[117,-31,74,-0.31634386571854467],[117,-31,75,-0.3131380491617858],[117,-31,76,-0.3029462983840857],[117,-31,77,-0.29478111633644366],[117,-31,78,-0.28716518539244734],[117,-31,79,-0.2776466019616082],[117,-30,64,-0.01636274917094538],[117,-30,65,-0.00728571749931034],[117,-30,66,-0.02735775578846339],[117,-30,67,-0.09830532813218315],[117,-30,68,-0.1967929050304752],[117,-30,69,-0.293084877773947],[117,-30,70,-0.320885820120717],[117,-30,71,-0.31693075536480786],[117,-30,72,-0.3143230386511391],[117,-30,73,-0.3150828982467065],[117,-30,74,-0.3139967379493437],[117,-30,75,-0.30646575630794526],[117,-30,76,-0.299555967675087],[117,-30,77,-0.29316734084649043],[117,-30,78,-0.28302136940048894],[117,-30,79,-0.27419098499816885],[117,-29,64,0.05791736157232713],[117,-29,65,0.059122261469997994],[117,-29,66,0.06156352838090162],[117,-29,67,-0.03383587750487216],[117,-29,68,-0.13844591853683957],[117,-29,69,-0.233615644422166],[117,-29,70,-0.3179559324519886],[117,-29,71,-0.31822242626280944],[117,-29,72,-0.31514197676243066],[117,-29,73,-0.28250472560296597],[117,-29,74,-0.2741859497787074],[117,-29,75,-0.3047040105719852],[117,-29,76,-0.30064851524722513],[117,-29,77,-0.2944411321529255],[117,-29,78,-0.284388141985353],[117,-29,79,-0.2776035590912614],[117,-28,64,0.06561450532685686],[117,-28,65,0.06571386615174424],[117,-28,66,0.05496135575432648],[117,-28,67,-0.03589639790120425],[117,-28,68,-0.14367982670680662],[117,-28,69,-0.22922719763209248],[117,-28,70,-0.28363155294709597],[117,-28,71,-0.3065525638135298],[117,-28,72,-0.3102695724645741],[117,-28,73,-0.27445626794858996],[117,-28,74,-0.2507205177716216],[117,-28,75,-0.29877008741090005],[117,-28,76,-0.298045291208368],[117,-28,77,-0.29327224717361683],[117,-28,78,-0.2846895556331871],[117,-28,79,-0.278540996658171],[117,-27,64,0.12510764828395998],[117,-27,65,0.07929739746395598],[117,-27,66,0.036725572514746896],[117,-27,67,-0.06111194273398057],[117,-27,68,-0.18670174084377275],[117,-27,69,-0.2694864946157173],[117,-27,70,-0.29482690837957376],[117,-27,71,-0.3032695602792336],[117,-27,72,-0.29110472657558684],[117,-27,73,-0.2591374204053079],[117,-27,74,-0.25905717131159584],[117,-27,75,-0.27836877328881465],[117,-27,76,-0.2862862570874836],[117,-27,77,-0.2871145677620617],[117,-27,78,-0.28771396882102307],[117,-27,79,-0.286006187458322],[117,-26,64,0.17301408173064053],[117,-26,65,0.1282248048198361],[117,-26,66,0.0735114788268314],[117,-26,67,-0.03183712105549763],[117,-26,68,-0.1537415398433586],[117,-26,69,-0.2674526222342739],[117,-26,70,-0.27955018789959635],[117,-26,71,-0.28174800925808946],[117,-26,72,-0.28714814533111166],[117,-26,73,-0.24677764469757507],[117,-26,74,-0.24676356543269887],[117,-26,75,-0.251199262645815],[117,-26,76,-0.25663848710822507],[117,-26,77,-0.2858437437796212],[117,-26,78,-0.28692685620134517],[117,-26,79,-0.2847624736533706],[117,-25,64,0.12851082459780078],[117,-25,65,0.1342767196507254],[117,-25,66,0.06029840893771776],[117,-25,67,-0.05611242005143441],[117,-25,68,-0.1214827347568799],[117,-25,69,-0.24727210731734117],[117,-25,70,-0.28129506674993665],[117,-25,71,-0.2823465240900934],[117,-25,72,-0.28615652482451726],[117,-25,73,-0.2413300899381126],[117,-25,74,-0.24459550242792175],[117,-25,75,-0.22916711977774182],[117,-25,76,-0.2072736744460091],[117,-25,77,-0.2850716683491875],[117,-25,78,-0.28648931540958034],[117,-25,79,-0.2839801143618623],[117,-24,64,0.0924298947809804],[117,-24,65,0.11323433452510595],[117,-24,66,0.028223471027887193],[117,-24,67,-0.08679780253018732],[117,-24,68,-0.11676190535937539],[117,-24,69,-0.21316978733148478],[117,-24,70,-0.2733598277349855],[117,-24,71,-0.2903689850363665],[117,-24,72,-0.2848646030168964],[117,-24,73,-0.25035207251824537],[117,-24,74,-0.23950629776498006],[117,-24,75,-0.20435930112793882],[117,-24,76,-0.19915192739999224],[117,-24,77,-0.28082801195711526],[117,-24,78,-0.28376652208318326],[117,-24,79,-0.28152705775279907],[117,-23,64,0.05323334296243204],[117,-23,65,0.03640464497011431],[117,-23,66,-0.05218777519689777],[117,-23,67,-0.1644900930148211],[117,-23,68,-0.1982373369948634],[117,-23,69,-0.26652257494193504],[117,-23,70,-0.2938316034706643],[117,-23,71,-0.2882027919281708],[117,-23,72,-0.28736162178824665],[117,-23,73,-0.2847534642447841],[117,-23,74,-0.2613100391092861],[117,-23,75,-0.22221209442253023],[117,-23,76,-0.24293113242315745],[117,-23,77,-0.2840128145923173],[117,-23,78,-0.28258578995893946],[117,-23,79,-0.2743002559510662],[117,-22,64,0.05005239813812651],[117,-22,65,0.015914192100164315],[117,-22,66,-0.06634721813583735],[117,-22,67,-0.1611546499254393],[117,-22,68,-0.2352909505285194],[117,-22,69,-0.28359751720118553],[117,-22,70,-0.29051330999274755],[117,-22,71,-0.2855551886921146],[117,-22,72,-0.284611167910965],[117,-22,73,-0.28380988583946665],[117,-22,74,-0.24041264521619843],[117,-22,75,-0.23553480244785446],[117,-22,76,-0.24916136036394898],[117,-22,77,-0.2825272463154905],[117,-22,78,-0.27878378907780954],[117,-22,79,-0.27070805303106904],[117,-21,64,0.13840661226621176],[117,-21,65,0.09154949491354614],[117,-21,66,-0.01228774615659911],[117,-21,67,-0.08677424146961357],[117,-21,68,-0.19677517833266495],[117,-21,69,-0.26708725485712553],[117,-21,70,-0.2846062506282945],[117,-21,71,-0.2670130961407065],[117,-21,72,-0.25461957687442216],[117,-21,73,-0.24219105953492903],[117,-21,74,-0.15942217784720006],[117,-21,75,-0.18219719708955678],[117,-21,76,-0.21239044560094378],[117,-21,77,-0.2834976519790047],[117,-21,78,-0.2792114870332963],[117,-21,79,-0.27188147445383126],[117,-20,64,0.13919294046407515],[117,-20,65,0.09453482892295167],[117,-20,66,-0.014016430436988414],[117,-20,67,-0.09980079422923374],[117,-20,68,-0.21889335145334857],[117,-20,69,-0.2873819301110942],[117,-20,70,-0.2788998857466619],[117,-20,71,-0.2286687966912509],[117,-20,72,-0.24852454232323146],[117,-20,73,-0.1984899307780809],[117,-20,74,-0.12989838972007525],[117,-20,75,-0.17375289567907876],[117,-20,76,-0.2323125955551202],[117,-20,77,-0.2823179174095975],[117,-20,78,-0.27985488877705017],[117,-20,79,-0.27279567490987017],[117,-19,64,0.18780777708457827],[117,-19,65,0.14342534450113703],[117,-19,66,0.018024779213071496],[117,-19,67,-0.08938482439572634],[117,-19,68,-0.20220653978190406],[117,-19,69,-0.2566506069228719],[117,-19,70,-0.24697791215621687],[117,-19,71,-0.17943463494924417],[117,-19,72,-0.2075318399596821],[117,-19,73,-0.11594466527070199],[117,-19,74,-0.053552299988038066],[117,-19,75,-0.08294572388041399],[117,-19,76,-0.1495376433919356],[117,-19,77,-0.20562396990106385],[117,-19,78,-0.2671908999570226],[117,-19,79,-0.2618350687523629],[117,-18,64,0.17656255373344773],[117,-18,65,0.12293489477598923],[117,-18,66,0.016253591857018634],[117,-18,67,-0.07568245224010267],[117,-18,68,-0.17836371415640123],[117,-18,69,-0.2278853769502353],[117,-18,70,-0.23094241887318812],[117,-18,71,-0.16568184905264233],[117,-18,72,-0.18260154973628795],[117,-18,73,-0.10704542155748231],[117,-18,74,-0.028249266103330756],[117,-18,75,-0.07200765023534694],[117,-18,76,-0.14611981769405352],[117,-18,77,-0.22300430260209692],[117,-18,78,-0.2637477156209237],[117,-18,79,-0.2614844783542518],[117,-17,64,0.16603545480423632],[117,-17,65,0.09735459254186124],[117,-17,66,-0.011041806411563326],[117,-17,67,-0.07234378781185571],[117,-17,68,-0.16579003795746522],[117,-17,69,-0.22653379684907737],[117,-17,70,-0.22813876143367814],[117,-17,71,-0.15491197595777617],[117,-17,72,-0.1569848535739068],[117,-17,73,-0.09263797527581424],[117,-17,74,0.0023267277724782764],[117,-17,75,-0.06365200994959694],[117,-17,76,-0.1258156908113342],[117,-17,77,-0.2456354673477528],[117,-17,78,-0.262292373649584],[117,-17,79,-0.25932642334284706],[117,-16,64,0.1676785172993358],[117,-16,65,0.14038825287944637],[117,-16,66,0.04383527888042901],[117,-16,67,-0.009175159410546613],[117,-16,68,-0.07901456169956045],[117,-16,69,-0.1303443561253116],[117,-16,70,-0.15244758981141263],[117,-16,71,-0.06333545509173905],[117,-16,72,-0.056795052448883554],[117,-16,73,-0.019722933734099807],[117,-16,74,0.04902466785180559],[117,-16,75,-0.017467335134792705],[117,-16,76,-0.08260407877788017],[117,-16,77,-0.2404635090641724],[117,-16,78,-0.25518598183876967],[117,-16,79,-0.25279326409491215],[117,-15,64,0.1662631817310524],[117,-15,65,0.12475776225985846],[117,-15,66,0.04433795542167285],[117,-15,67,-0.023522661669790945],[117,-15,68,-0.07856476301530649],[117,-15,69,-0.09902505134647843],[117,-15,70,-0.14850667193363573],[117,-15,71,-0.05901702931061312],[117,-15,72,-0.043525769234196154],[117,-15,73,-0.020177197087948795],[117,-15,74,0.016918743660526092],[117,-15,75,-0.02992055791737147],[117,-15,76,-0.08451808788460247],[117,-15,77,-0.24133611887183656],[117,-15,78,-0.2502015766963449],[117,-15,79,-0.24782269186933603],[117,-14,64,0.048851950141491365],[117,-14,65,0.028259087279882966],[117,-14,66,-0.02344668271172795],[117,-14,67,-0.07882714253126366],[117,-14,68,-0.12005353696566862],[117,-14,69,-0.13979683399224851],[117,-14,70,-0.17663179028469397],[117,-14,71,-0.11670216055844491],[117,-14,72,-0.08200161710213769],[117,-14,73,-0.09020084732017716],[117,-14,74,-0.0807196093073895],[117,-14,75,-0.09070221495596131],[117,-14,76,-0.14802437976723604],[117,-14,77,-0.23771130523985576],[117,-14,78,-0.24626193758652493],[117,-14,79,-0.24230467603996053],[117,-13,64,0.04969268158071789],[117,-13,65,0.05138558767964657],[117,-13,66,0.0178444810166469],[117,-13,67,-0.029229419753353886],[117,-13,68,-0.08169631720108272],[117,-13,69,-0.09626276611881407],[117,-13,70,-0.13967285147322278],[117,-13,71,-0.07421771386719409],[117,-13,72,-0.03293662593853522],[117,-13,73,-0.05221535907111011],[117,-13,74,-0.059668428706966314],[117,-13,75,-0.062271847072128156],[117,-13,76,-0.11774111024711698],[117,-13,77,-0.21403480370682712],[117,-13,78,-0.2467489459024601],[117,-13,79,-0.24351602891516205],[117,-12,64,0.04041914525938081],[117,-12,65,0.016133525513328223],[117,-12,66,-0.017686944076264116],[117,-12,67,-0.031008271349671185],[117,-12,68,-0.09044951543747644],[117,-12,69,-0.11126485941881095],[117,-12,70,-0.16528198750792755],[117,-12,71,-0.10523111160055756],[117,-12,72,-0.060948051026254696],[117,-12,73,-0.06478780072190363],[117,-12,74,-0.0767252566353468],[117,-12,75,-0.08665348791983585],[117,-12,76,-0.1249371553209285],[117,-12,77,-0.21590487633200559],[117,-12,78,-0.24580017340429422],[117,-12,79,-0.24301027340371995],[117,-11,64,0.04700835733160151],[117,-11,65,0.043332388840911534],[117,-11,66,-0.008548456171365099],[117,-11,67,-0.015603468331015696],[117,-11,68,-0.07105013757568777],[117,-11,69,-0.08658827292677282],[117,-11,70,-0.15002898545978255],[117,-11,71,-0.08623609311372787],[117,-11,72,-0.012261114286815727],[117,-11,73,0.0029173516836081548],[117,-11,74,0.006024676409167651],[117,-11,75,0.009268930211414117],[117,-11,76,-0.037731585384673305],[117,-11,77,-0.11243644922589056],[117,-11,78,-0.22639265185262614],[117,-11,79,-0.23042231785066328],[117,-10,64,0.036505087909794086],[117,-10,65,0.006891486959621329],[117,-10,66,-0.03212302638989345],[117,-10,67,-0.04003235799529217],[117,-10,68,-0.07253338077531124],[117,-10,69,-0.09128515542564283],[117,-10,70,-0.1494521074126139],[117,-10,71,-0.10000328952162946],[117,-10,72,-0.03191627071063641],[117,-10,73,-0.01978348742814079],[117,-10,74,-0.01595034095580855],[117,-10,75,-0.026676051194779365],[117,-10,76,-0.06719672790734368],[117,-10,77,-0.1398330846738537],[117,-10,78,-0.2200583415134041],[117,-10,79,-0.22250396772812248],[117,-9,64,0.0441287362826696],[117,-9,65,-0.021140329184259565],[117,-9,66,-0.045970204759904015],[117,-9,67,-0.05922690586691787],[117,-9,68,-0.07175974232894028],[117,-9,69,-0.1036218572613988],[117,-9,70,-0.14489033878822064],[117,-9,71,-0.1042686949880297],[117,-9,72,-0.055012936129081313],[117,-9,73,-0.04910333124716648],[117,-9,74,-0.046328546342936344],[117,-9,75,-0.06250153381156862],[117,-9,76,-0.09347181337058147],[117,-9,77,-0.17391317315584706],[117,-9,78,-0.21653163872359615],[117,-9,79,-0.21603357078867536],[117,-8,64,0.002656598670705612],[117,-8,65,-0.10571242245664747],[117,-8,66,-0.11641333660165763],[117,-8,67,-0.12948359196718776],[117,-8,68,-0.12090759525053422],[117,-8,69,-0.1544116698713914],[117,-8,70,-0.19693781673001534],[117,-8,71,-0.16649688848652758],[117,-8,72,-0.12923683371050054],[117,-8,73,-0.13811342192900128],[117,-8,74,-0.1075302346043006],[117,-8,75,-0.12206927914651595],[117,-8,76,-0.1588399175592854],[117,-8,77,-0.212754896511213],[117,-8,78,-0.2119569441877813],[117,-8,79,-0.21331856108721012],[117,-7,64,-0.016572967589007448],[117,-7,65,-0.12049655243305088],[117,-7,66,-0.12723269651568875],[117,-7,67,-0.1463218808361743],[117,-7,68,-0.12604617062298312],[117,-7,69,-0.15386030898169212],[117,-7,70,-0.18778605269031876],[117,-7,71,-0.16773849868815768],[117,-7,72,-0.1457126972365462],[117,-7,73,-0.16164181493706772],[117,-7,74,-0.12632247577068162],[117,-7,75,-0.15123005376918947],[117,-7,76,-0.18387552262625392],[117,-7,77,-0.2068534888032596],[117,-7,78,-0.20957128985787565],[117,-7,79,-0.21045203600146398],[117,-6,64,-0.03242747739894283],[117,-6,65,-0.13274616261844838],[117,-6,66,-0.14426965546004297],[117,-6,67,-0.1567715931041227],[117,-6,68,-0.13961560595162897],[117,-6,69,-0.15445303799338655],[117,-6,70,-0.17401899912551422],[117,-6,71,-0.186526431559211],[117,-6,72,-0.17102260868951102],[117,-6,73,-0.17779527658496938],[117,-6,74,-0.1453212890923557],[117,-6,75,-0.1861253833365129],[117,-6,76,-0.20193875381740023],[117,-6,77,-0.20187764079366147],[117,-6,78,-0.20466610086541015],[117,-6,79,-0.20741473146754935],[117,-5,64,-0.05879283484541929],[117,-5,65,-0.09801442851813244],[117,-5,66,-0.06399500555878145],[117,-5,67,-0.026249150835308488],[117,-5,68,0.00636526275265456],[117,-5,69,0.0038204247074430098],[117,-5,70,-0.012985917967083899],[117,-5,71,-0.07060755054384676],[117,-5,72,-0.11931962255494359],[117,-5,73,-0.1853473178085195],[117,-5,74,-0.19475849181244378],[117,-5,75,-0.19775520874777652],[117,-5,76,-0.20269564925190525],[117,-5,77,-0.20249648150499747],[117,-5,78,-0.2071660103751812],[117,-5,79,-0.209460261758495],[117,-4,64,-0.07919850310786519],[117,-4,65,-0.1017252539515985],[117,-4,66,-0.0783311559774248],[117,-4,67,-0.05130205035727599],[117,-4,68,-0.021482531833593693],[117,-4,69,-0.015155000671860208],[117,-4,70,-0.03383177871679105],[117,-4,71,-0.08026083252897433],[117,-4,72,-0.1419228234215097],[117,-4,73,-0.19714702821029773],[117,-4,74,-0.19674810896727618],[117,-4,75,-0.19788201161513103],[117,-4,76,-0.20397443173903348],[117,-4,77,-0.20494117687011254],[117,-4,78,-0.20750575589461748],[117,-4,79,-0.210481525652602],[117,-3,64,-0.055007473560443776],[117,-3,65,-0.06551129981978594],[117,-3,66,-0.044132369193660606],[117,-3,67,-0.01656609261337383],[117,-3,68,0.01938477568777175],[117,-3,69,0.03038096332465015],[117,-3,70,0.01113658394016373],[117,-3,71,-0.030559696314847146],[117,-3,72,-0.10431939310874408],[117,-3,73,-0.17714176671913245],[117,-3,74,-0.2050286880501332],[117,-3,75,-0.2048835527142745],[117,-3,76,-0.20645064904840357],[117,-3,77,-0.20631235559157407],[117,-3,78,-0.20508159965460637],[117,-3,79,-0.20271575208139303],[117,-2,64,-0.07510786544626258],[117,-2,65,-0.07089704789643347],[117,-2,66,-0.04583777448729087],[117,-2,67,-0.024703778468690762],[117,-2,68,0.009903307108602877],[117,-2,69,0.012778041998716905],[117,-2,70,-0.001965935060206564],[117,-2,71,-0.04839613312409649],[117,-2,72,-0.11879442396875436],[117,-2,73,-0.181774743218847],[117,-2,74,-0.19860526888559404],[117,-2,75,-0.19910485263717537],[117,-2,76,-0.20236253784140515],[117,-2,77,-0.19934630069238596],[117,-2,78,-0.2003258793199853],[117,-2,79,-0.19818704778776125],[117,-1,64,-0.04651509211008986],[117,-1,65,-0.04476360284122148],[117,-1,66,-0.019729167809416942],[117,-1,67,-0.002468360820498977],[117,-1,68,0.018499141596053398],[117,-1,69,0.04446580576961445],[117,-1,70,0.011787234034183552],[117,-1,71,-0.04672099812588626],[117,-1,72,-0.11054776897784635],[117,-1,73,-0.1528184449720241],[117,-1,74,-0.19571648004813186],[117,-1,75,-0.1945583662158722],[117,-1,76,-0.19759556120645044],[117,-1,77,-0.19535079233851402],[117,-1,78,-0.1948573733105438],[117,-1,79,-0.19201928664184725],[117,0,64,-0.024131026665777905],[117,0,65,-0.022400740582723178],[117,0,66,-0.021518718264426737],[117,0,67,-0.02806917168769546],[117,0,68,-0.038191125653006114],[117,0,69,-0.045380772327454785],[117,0,70,-0.05375624011507597],[117,0,71,-0.061434702260016044],[117,0,72,-0.06600249138222154],[117,0,73,-0.0650276725286719],[117,0,74,-0.06806086162918314],[117,0,75,-0.07090559054064834],[117,0,76,-0.07651474499729741],[117,0,77,-0.0815218148548421],[117,0,78,-0.08466862971643073],[117,0,79,-0.08543875146652677],[117,1,64,-0.02207447911815319],[117,1,65,-0.02159979734120282],[117,1,66,-0.022021590774922314],[117,1,67,-0.025769334080752243],[117,1,68,-0.03342172916365055],[117,1,69,-0.04371511745235754],[117,1,70,-0.049093737959985395],[117,1,71,-0.05852027058500181],[117,1,72,-0.06214936788334649],[117,1,73,-0.06225620822034776],[117,1,74,-0.06776339575302924],[117,1,75,-0.07135089114522104],[117,1,76,-0.07348057876704436],[117,1,77,-0.07939975395440903],[117,1,78,-0.08365774185898146],[117,1,79,-0.08357435427946402],[117,2,64,-0.021791787402695453],[117,2,65,-0.022104845204739987],[117,2,66,-0.02238100717264939],[117,2,67,-0.02521787476269219],[117,2,68,-0.031999741112672994],[117,2,69,-0.042065338712711994],[117,2,70,-0.04603973049879162],[117,2,71,-0.05389958254259833],[117,2,72,-0.05871294196700598],[117,2,73,-0.06049524062433495],[117,2,74,-0.06624080900931296],[117,2,75,-0.07100727175663797],[117,2,76,-0.07298081709881149],[117,2,77,-0.0786263397891094],[117,2,78,-0.08292873604460263],[117,2,79,-0.08135776926589605],[117,3,64,-0.021655145924070723],[117,3,65,-0.02113511648534233],[117,3,66,-0.021992312206521702],[117,3,67,-0.024793575534926296],[117,3,68,-0.03126676734179859],[117,3,69,-0.04001605354914836],[117,3,70,-0.04615591465428383],[117,3,71,-0.05114426050128121],[117,3,72,-0.05524192745107989],[117,3,73,-0.058391545769565845],[117,3,74,-0.06487596298292407],[117,3,75,-0.06962791298519581],[117,3,76,-0.07065593899148023],[117,3,77,-0.07644583344573243],[117,3,78,-0.0788825637793742],[117,3,79,-0.07936289452176157],[117,4,64,-0.02526670402232785],[117,4,65,-0.023997863150086604],[117,4,66,-0.022674106648397058],[117,4,67,-0.025625655516965037],[117,4,68,-0.03293975624139171],[117,4,69,-0.03682754618712859],[117,4,70,-0.04308935359017421],[117,4,71,-0.048141129086790524],[117,4,72,-0.05319516489107705],[117,4,73,-0.05629564825966654],[117,4,74,-0.062060212640243376],[117,4,75,-0.06312648974407736],[117,4,76,-0.06554717706963502],[117,4,77,-0.07020443707982907],[117,4,78,-0.07344413680256279],[117,4,79,-0.07457827456221347],[117,5,64,-0.027181796095330113],[117,5,65,-0.025934576516161184],[117,5,66,-0.0239052535609017],[117,5,67,-0.028365484463159105],[117,5,68,-0.03240524370483362],[117,5,69,-0.03433986285996417],[117,5,70,-0.04047615267434439],[117,5,71,-0.04483525955670313],[117,5,72,-0.048356172648864965],[117,5,73,-0.05036698983845084],[117,5,74,-0.05695125738998222],[117,5,75,-0.05926335283227377],[117,5,76,-0.06210068246911685],[117,5,77,-0.06407781117314446],[117,5,78,-0.0676603391285211],[117,5,79,-0.07242934064436843],[117,6,64,-0.028613437763599675],[117,6,65,-0.025225753364327252],[117,6,66,-0.02527375560181358],[117,6,67,-0.027128984355506786],[117,6,68,-0.03234504534002208],[117,6,69,-0.033273270379652845],[117,6,70,-0.036919685590429144],[117,6,71,-0.03959234313257688],[117,6,72,-0.04435559002133041],[117,6,73,-0.04669164742403015],[117,6,74,-0.051839583228113606],[117,6,75,-0.053091261819688346],[117,6,76,-0.05608763143555791],[117,6,77,-0.058300995339508666],[117,6,78,-0.0626674984656748],[117,6,79,-0.06831505229632717],[117,7,64,-0.02969751854257431],[117,7,65,-0.02483065184517147],[117,7,66,-0.02773498925910456],[117,7,67,-0.027041126592170603],[117,7,68,-0.03061182204121414],[117,7,69,-0.03174591781831396],[117,7,70,-0.03341754619462867],[117,7,71,-0.036761804874580445],[117,7,72,-0.040059900389975395],[117,7,73,-0.044516800865735895],[117,7,74,-0.046080797584276106],[117,7,75,-0.047768819013778885],[117,7,76,-0.04903284787583287],[117,7,77,-0.0510373775965479],[117,7,78,-0.058143322030066655],[117,7,79,-0.06139906987211846],[117,8,64,-0.03076419018583834],[117,8,65,-0.023361845971225037],[117,8,66,-0.025340496115329153],[117,8,67,-0.022199787166464188],[117,8,68,-0.023730382200706168],[117,8,69,-0.02164811636946601],[117,8,70,-0.023633444366887663],[117,8,71,-0.024459884611607086],[117,8,72,-0.027361152713478193],[117,8,73,-0.0293724089112566],[117,8,74,-0.029963208462662885],[117,8,75,-0.031063010885091252],[117,8,76,-0.032830037279878044],[117,8,77,-0.03541408388366249],[117,8,78,-0.04361236017663285],[117,8,79,-0.04798095432661696],[117,9,64,-0.02925525461482581],[117,9,65,-0.025204738740950666],[117,9,66,-0.022927255355549986],[117,9,67,-0.01855434944360068],[117,9,68,-0.01730181464284475],[117,9,69,-0.015922742096859926],[117,9,70,-0.018696282038960538],[117,9,71,-0.020978817595103255],[117,9,72,-0.024744199308728648],[117,9,73,-0.027174105797924467],[117,9,74,-0.0272339436126003],[117,9,75,-0.027174743722977762],[117,9,76,-0.02891616287141327],[117,9,77,-0.029122707540820164],[117,9,78,-0.038294395442071694],[117,9,79,-0.04301477280367501],[117,10,64,-0.030417989008647728],[117,10,65,-0.02596326934347247],[117,10,66,-0.024254977213831436],[117,10,67,-0.019786396986487292],[117,10,68,-0.01592201075228941],[117,10,69,-0.015608198861577993],[117,10,70,-0.015961883253369474],[117,10,71,-0.020673751589735806],[117,10,72,-0.022624652381730948],[117,10,73,-0.02145143956313958],[117,10,74,-0.02415549032973606],[117,10,75,-0.02654829049143778],[117,10,76,-0.025698035026929758],[117,10,77,-0.026240362647274],[117,10,78,-0.03375059920405579],[117,10,79,-0.04030812245105729],[117,11,64,-0.030478510993930133],[117,11,65,-0.027168326977362364],[117,11,66,-0.022974700960527034],[117,11,67,-0.019599219875287344],[117,11,68,-0.01677960617340296],[117,11,69,-0.015834172108065203],[117,11,70,-0.016680620716096634],[117,11,71,-0.020949184633765036],[117,11,72,-0.021741871066849286],[117,11,73,-0.017630694598743724],[117,11,74,-0.020027987900878036],[117,11,75,-0.021265741162763474],[117,11,76,-0.02288994856873501],[117,11,77,-0.023880332805091886],[117,11,78,-0.030070969270090495],[117,11,79,-0.03610464329139382],[117,12,64,-0.02934918880045044],[117,12,65,-0.026606805830543062],[117,12,66,-0.02378878724004381],[117,12,67,-0.02179549212541282],[117,12,68,-0.021530381317074854],[117,12,69,-0.019757299143734683],[117,12,70,-0.019804476483734387],[117,12,71,-0.025819779312064695],[117,12,72,-0.027344093232070765],[117,12,73,-0.02251093553375369],[117,12,74,-0.021927614474119256],[117,12,75,-0.02326745438256589],[117,12,76,-0.02648520167731551],[117,12,77,-0.026232229877477573],[117,12,78,-0.032227142342651144],[117,12,79,-0.04010167263452648],[117,13,64,-0.033235858908765945],[117,13,65,-0.03099712987692807],[117,13,66,-0.025429207154563274],[117,13,67,-0.023304424344095437],[117,13,68,-0.023746402727033794],[117,13,69,-0.022212413586517862],[117,13,70,-0.021921732154072907],[117,13,71,-0.024271901504779647],[117,13,72,-0.02322712616377548],[117,13,73,-0.017267042842202346],[117,13,74,-0.01867219837374129],[117,13,75,-0.019679081318784236],[117,13,76,-0.021622506552890983],[117,13,77,-0.02328725388427967],[117,13,78,-0.031156383158044323],[117,13,79,-0.0395941449504157],[117,14,64,-0.0334745858639208],[117,14,65,-0.029960673430931506],[117,14,66,-0.0229390760059463],[117,14,67,-0.020757580290707844],[117,14,68,-0.022108847772284057],[117,14,69,-0.02015523554964334],[117,14,70,-0.02065956051506855],[117,14,71,-0.02071057389170171],[117,14,72,-0.019756722753045936],[117,14,73,-0.015797908276989292],[117,14,74,-0.017290260816713143],[117,14,75,-0.017341079939054482],[117,14,76,-0.02062261975238039],[117,14,77,-0.021069243479212435],[117,14,78,-0.028091552235750494],[117,14,79,-0.0366605048439779],[117,15,64,-0.0330002479534451],[117,15,65,-0.0256111380566406],[117,15,66,-0.022192642983111882],[117,15,67,-0.01902836475330752],[117,15,68,-0.02070807595684046],[117,15,69,-0.021597049411016048],[117,15,70,-0.019367985491222844],[117,15,71,-0.019091585800387112],[117,15,72,-0.016730217132309072],[117,15,73,-0.01079945115516473],[117,15,74,-0.01512475924620113],[117,15,75,-0.015526792503863601],[117,15,76,-0.01691479759015696],[117,15,77,-0.020094856885233756],[117,15,78,-0.023796255917516634],[117,15,79,-0.03052165039465317],[117,16,64,-0.03544269825490336],[117,16,65,-0.027173168098288333],[117,16,66,-0.02122190375462729],[117,16,67,-0.018281134369889845],[117,16,68,-0.0181462991297629],[117,16,69,-0.014250076029737851],[117,16,70,-0.011865774034873877],[117,16,71,-0.010972948978275221],[117,16,72,-0.008085982395939828],[117,16,73,-0.00463058269277411],[117,16,74,-0.006412202933360367],[117,16,75,-0.006325264188847601],[117,16,76,-0.004166352976526039],[117,16,77,-0.0063790289246222764],[117,16,78,-0.011038266521489232],[117,16,79,-0.015592518601753314],[117,17,64,-0.031548108355907156],[117,17,65,-0.026072557799616827],[117,17,66,-0.019754596431898905],[117,17,67,-0.016384550968851164],[117,17,68,-0.015524297030997142],[117,17,69,-0.01388861201570471],[117,17,70,-0.011700126868623956],[117,17,71,-0.010839597059406375],[117,17,72,-0.008623620667376042],[117,17,73,-0.0048893357725741105],[117,17,74,-0.00551420933487376],[117,17,75,-0.006141961853816352],[117,17,76,-0.0031705846497586676],[117,17,77,-0.004103441669943031],[117,17,78,-0.008500665148417574],[117,17,79,-0.014685984320052886],[117,18,64,-0.027552099872640068],[117,18,65,-0.025345504895378873],[117,18,66,-0.019155202093396453],[117,18,67,-0.015283548786115264],[117,18,68,-0.011607015100133788],[117,18,69,-0.013364752352707565],[117,18,70,-0.012445774897207218],[117,18,71,-0.011079804684766437],[117,18,72,-0.007187536122052474],[117,18,73,-0.0051249006650222195],[117,18,74,-0.0037980455275713754],[117,18,75,-0.005796177341147013],[117,18,76,-0.002163920417220022],[117,18,77,-1.2656736618227304E-4],[117,18,78,-0.006202622575870481],[117,18,79,-0.014725772921368452],[117,19,64,-0.027003473300126646],[117,19,65,-0.02310127172071605],[117,19,66,-0.015789789494429385],[117,19,67,-0.014835970290246192],[117,19,68,-0.01004062597656566],[117,19,69,-0.010791449258793023],[117,19,70,-0.008832836190998561],[117,19,71,-0.00891302390703752],[117,19,72,-0.007198060223319064],[117,19,73,-0.004556782491232092],[117,19,74,-0.0032938151531464177],[117,19,75,-0.003671303118145758],[117,19,76,-0.0022588815804334417],[117,19,77,7.365225641917106E-5],[117,19,78,-0.005032698987541273],[117,19,79,-0.014254498313191921],[117,20,64,-0.023421071028375845],[117,20,65,-0.021562445774040706],[117,20,66,-0.017311885648752925],[117,20,67,-0.015571160295801467],[117,20,68,-0.011724551640367509],[117,20,69,-0.013044765919610263],[117,20,70,-0.012824291009293165],[117,20,71,-0.011515976872716216],[117,20,72,-0.011938161315064005],[117,20,73,-0.012562604360168206],[117,20,74,-0.01280769559317016],[117,20,75,-0.011016163454658223],[117,20,76,-0.009093423735543227],[117,20,77,-0.007317346810492009],[117,20,78,-0.009676847447804837],[117,20,79,-0.0198419445381591],[117,21,64,-0.010428168583103303],[117,21,65,-0.01057092661781145],[117,21,66,-0.008040936619592709],[117,21,67,-0.00603904558660151],[117,21,68,-0.005306505136720596],[117,21,69,-0.00835557495134115],[117,21,70,-0.011929955518323265],[117,21,71,-0.013979224635691068],[117,21,72,-0.017947319543335033],[117,21,73,-0.02158617715061334],[117,21,74,-0.024451226672248957],[117,21,75,-0.02265647845078933],[117,21,76,-0.022252392674223034],[117,21,77,-0.018797853573648077],[117,21,78,-0.017350115000463018],[117,21,79,-0.023692174468553873],[117,22,64,-0.011620240635431434],[117,22,65,-0.010752484206140778],[117,22,66,-0.007826252194959832],[117,22,67,-0.004624530949557948],[117,22,68,-0.00368021386313816],[117,22,69,-0.006164403128588791],[117,22,70,-0.01332448926355348],[117,22,71,-0.014875109297994321],[117,22,72,-0.017643446084576853],[117,22,73,-0.021522063638002867],[117,22,74,-0.024346741150839055],[117,22,75,-0.02458626275348348],[117,22,76,-0.02186031834969715],[117,22,77,-0.01964434289006356],[117,22,78,-0.0194362508365577],[117,22,79,-0.023543768164249523],[117,23,64,-0.011727639167825099],[117,23,65,-0.010793071865396603],[117,23,66,-0.007612788708122736],[117,23,67,-0.004208577262905078],[117,23,68,-0.003993737487435145],[117,23,69,-0.007494101175828244],[117,23,70,-0.01616037782514443],[117,23,71,-0.015981519253830845],[117,23,72,-0.01658201487298877],[117,23,73,-0.020201316376083328],[117,23,74,-0.02136239090914105],[117,23,75,-0.023096103473163265],[117,23,76,-0.021412198922777098],[117,23,77,-0.02095618542427491],[117,23,78,-0.018258904813750337],[117,23,79,-0.02220657588680236],[117,24,64,-0.0034290191734820674],[117,24,65,-0.0014920156076722313],[117,24,66,0.0012166304479311607],[117,24,67,0.005489585434210409],[117,24,68,0.003418228873474788],[117,24,69,7.309972428298506E-4],[117,24,70,-0.006255583627423317],[117,24,71,-0.00657339757707831],[117,24,72,-0.005364396371263236],[117,24,73,-0.008158959572087982],[117,24,74,-0.009303177761416592],[117,24,75,-0.013528244694656522],[117,24,76,-0.01521012868965449],[117,24,77,-0.011374352826688694],[117,24,78,-0.008931457241697915],[117,24,79,-0.011484843505155329],[117,25,64,0.007937402858015113],[117,25,65,0.006655415260242936],[117,25,66,0.007975783747293574],[117,25,67,0.008093659973575279],[117,25,68,0.006200650787802631],[117,25,69,0.00415573694288085],[117,25,70,3.457036036745298E-4],[117,25,71,0.001052751343212005],[117,25,72,-4.8131808500584405E-4],[117,25,73,6.269767877780941E-4],[117,25,74,-0.0012214986612986978],[117,25,75,-0.0029484390010604267],[117,25,76,-0.007917822717855849],[117,25,77,-0.006944269561142885],[117,25,78,-0.012509637717653066],[117,25,79,-0.015766737866265423],[117,26,64,0.01183147988055111],[117,26,65,0.008453117707474173],[117,26,66,0.007194186938182495],[117,26,67,0.007954819127024004],[117,26,68,0.007380471110691678],[117,26,69,0.007313652884396782],[117,26,70,0.005028124331333539],[117,26,71,0.0016742451270444492],[117,26,72,-0.0028527003515474436],[117,26,73,-6.925767161492236E-4],[117,26,74,-0.0013972494295070859],[117,26,75,-0.0012089082102389181],[117,26,76,-0.007390534248530756],[117,26,77,-0.008797133253686584],[117,26,78,-0.013438064860630844],[117,26,79,-0.016226979151899135],[117,27,64,0.01598847413617613],[117,27,65,0.012286371181783162],[117,27,66,0.00952075038439304],[117,27,67,0.00733816601802606],[117,27,68,0.008788367533805436],[117,27,69,0.008768419681231238],[117,27,70,0.006439773565393991],[117,27,71,0.0018093510864276574],[117,27,72,-0.0035454630007743515],[117,27,73,-0.0020472133909285872],[117,27,74,-0.002235767221217433],[117,27,75,-0.0013452149531957835],[117,27,76,-0.007100145130049307],[117,27,77,-0.00924356039944313],[117,27,78,-0.012140101463421926],[117,27,79,-0.017727099687805337],[117,28,64,0.01883987569352913],[117,28,65,0.013713450571263552],[117,28,66,0.007676978172608956],[117,28,67,0.007325663840081265],[117,28,68,0.006289086676470934],[117,28,69,0.002883456946300461],[117,28,70,0.0010624099085296546],[117,28,71,-0.004320809211284304],[117,28,72,-0.008895193024705705],[117,28,73,-0.009861891919358073],[117,28,74,-0.011248858514933513],[117,28,75,-0.009817584502385679],[117,28,76,-0.01262701954883666],[117,28,77,-0.015079203567251509],[117,28,78,-0.01964089775282729],[117,28,79,-0.02655127795423376],[117,29,64,0.01439659547374067],[117,29,65,0.010110746304286211],[117,29,66,0.006842990725688808],[117,29,67,0.007060294007885992],[117,29,68,0.0019530443350575521],[117,29,69,-0.002797791347039641],[117,29,70,-0.0037793300179176648],[117,29,71,-0.00952277232348156],[117,29,72,-0.014149433491277952],[117,29,73,-0.013950595827726509],[117,29,74,-0.014740824808042813],[117,29,75,-0.012418302221976901],[117,29,76,-0.01607103179036415],[117,29,77,-0.0174548787263393],[117,29,78,-0.019616962152169765],[117,29,79,-0.02533562577644921],[117,30,64,0.014917351906889309],[117,30,65,0.013888790909006243],[117,30,66,0.012915281883540297],[117,30,67,0.010639292424912045],[117,30,68,0.0033919325599513217],[117,30,69,-0.0031561604778354846],[117,30,70,-0.008052596092317565],[117,30,71,-0.011889929318669251],[117,30,72,-0.01660627843157489],[117,30,73,-0.019072429096322993],[117,30,74,-0.01538419766409757],[117,30,75,-0.016052846737683563],[117,30,76,-0.02184433887386436],[117,30,77,-0.023143169191641513],[117,30,78,-0.0214389965952851],[117,30,79,-0.024186552982845402],[117,31,64,0.018558321193022254],[117,31,65,0.017641247652397718],[117,31,66,0.015269753935181152],[117,31,67,0.014167650422027916],[117,31,68,0.004869743812217969],[117,31,69,-0.00376623892356176],[117,31,70,-0.010250843739406157],[117,31,71,-0.013986335058444432],[117,31,72,-0.01761204560646945],[117,31,73,-0.021982347010959413],[117,31,74,-0.019833157727156908],[117,31,75,-0.023361539424409078],[117,31,76,-0.02876384394711698],[117,31,77,-0.02840548426621954],[117,31,78,-0.025858175560698332],[117,31,79,-0.028252763861357458],[117,32,64,0.032141561184465456],[117,32,65,0.03165054372010359],[117,32,66,0.029087197174253565],[117,32,67,0.025586930512344175],[117,32,68,0.01730907545604482],[117,32,69,0.004472568211947969],[117,32,70,-0.002016323246724655],[117,32,71,-0.0036799717212496474],[117,32,72,-0.005906831516782479],[117,32,73,-0.011912665456812438],[117,32,74,-0.013260449012118591],[117,32,75,-0.016332980002766645],[117,32,76,-0.02219668167828523],[117,32,77,-0.02385267269458821],[117,32,78,-0.01981009026460262],[117,32,79,-0.01987810769960896],[117,33,64,0.030795545314541012],[117,33,65,0.03246195435788035],[117,33,66,0.02953098830512832],[117,33,67,0.027051464759098448],[117,33,68,0.020116737009172492],[117,33,69,0.006166075077653627],[117,33,70,-0.003133801638931788],[117,33,71,-0.007314968701422453],[117,33,72,-0.015349433259724099],[117,33,73,-0.02471077823919532],[117,33,74,-0.027301635534765722],[117,33,75,-0.030084709129405585],[117,33,76,-0.03457814783064583],[117,33,77,-0.037999315860452326],[117,33,78,-0.031140602966506045],[117,33,79,-0.026986693917998794],[117,34,64,0.03124873425050753],[117,34,65,0.03432391472048235],[117,34,66,0.03351245905971867],[117,34,67,0.026026603850016594],[117,34,68,0.018048610326567932],[117,34,69,0.004236187661051549],[117,34,70,-0.001804822223384711],[117,34,71,-0.010458991194645662],[117,34,72,-0.018713800163762395],[117,34,73,-0.025454499159112548],[117,34,74,-0.027726705579791164],[117,34,75,-0.032549686492143376],[117,34,76,-0.0358884381541032],[117,34,77,-0.039909859966477224],[117,34,78,-0.034135362832096755],[117,34,79,-0.027250009360965013],[117,35,64,0.033128333314014824],[117,35,65,0.03351473782702913],[117,35,66,0.034206460292717566],[117,35,67,0.02616820556288388],[117,35,68,0.01701746326714293],[117,35,69,0.003914686870681777],[117,35,70,-0.0018340871327402197],[117,35,71,-0.012584748339339424],[117,35,72,-0.019700098223085064],[117,35,73,-0.02705182301142431],[117,35,74,-0.029580310762514828],[117,35,75,-0.03553929875557156],[117,35,76,-0.03806139171075343],[117,35,77,-0.038485455331712326],[117,35,78,-0.03498492261906766],[117,35,79,-0.02849431518359423],[117,36,64,0.029285230280855334],[117,36,65,0.027968148410065424],[117,36,66,0.029807273795942363],[117,36,67,0.022394915789493763],[117,36,68,0.010847170469151568],[117,36,69,-0.0012050267369090872],[117,36,70,-0.0086673061503946],[117,36,71,-0.01726963828919914],[117,36,72,-0.024539473052693495],[117,36,73,-0.03418684284847051],[117,36,74,-0.035269080619789075],[117,36,75,-0.04004865200598076],[117,36,76,-0.04226181160094959],[117,36,77,-0.04002523666920352],[117,36,78,-0.03848304690019018],[117,36,79,-0.03362541377573633],[117,37,64,0.03496288258577265],[117,37,65,0.03344614885644215],[117,37,66,0.027855089351944307],[117,37,67,0.013669783756535991],[117,37,68,0.0034641702813846265],[117,37,69,-0.010244649080404233],[117,37,70,-0.020299205472710136],[117,37,71,-0.024475012603830892],[117,37,72,-0.028781648255939526],[117,37,73,-0.03276874758631115],[117,37,74,-0.03314674652810895],[117,37,75,-0.03435569782076092],[117,37,76,-0.03851159548403013],[117,37,77,-0.036838529452111204],[117,37,78,-0.034789761710145695],[117,37,79,-0.031227705424956967],[117,38,64,0.03725395859935826],[117,38,65,0.03525384138695897],[117,38,66,0.027809439416699305],[117,38,67,0.010897947771403238],[117,38,68,0.0013075369164468609],[117,38,69,-0.008445253177249895],[117,38,70,-0.019460104810655438],[117,38,71,-0.025255060716156963],[117,38,72,-0.029089216456278905],[117,38,73,-0.032764603571837206],[117,38,74,-0.03519511764158276],[117,38,75,-0.034602719520354985],[117,38,76,-0.038520745782119836],[117,38,77,-0.036790105199726836],[117,38,78,-0.034216643387792706],[117,38,79,-0.02996304204879091],[117,39,64,0.03950707297913866],[117,39,65,0.036669468420208434],[117,39,66,0.02656893903643473],[117,39,67,0.010548770055807066],[117,39,68,1.0181537624853743E-4],[117,39,69,-0.006352540658988298],[117,39,70,-0.019994610266453702],[117,39,71,-0.026400693160993027],[117,39,72,-0.03011699805289539],[117,39,73,-0.030297146969605657],[117,39,74,-0.03475364469548879],[117,39,75,-0.03448201276252602],[117,39,76,-0.03578137698644568],[117,39,77,-0.038451429557146935],[117,39,78,-0.03361272158262618],[117,39,79,-0.027315067816080035],[117,40,64,0.051238281534833424],[117,40,65,0.04760880177014204],[117,40,66,0.037747696644813145],[117,40,67,0.023636617184877806],[117,40,68,0.013555091482786774],[117,40,69,0.006020301250345167],[117,40,70,-0.007242351712231726],[117,40,71,-0.014743643772010956],[117,40,72,-0.015048492762999549],[117,40,73,-0.015287259699184819],[117,40,74,-0.01933583382593773],[117,40,75,-0.020259732824392834],[117,40,76,-0.021531276565771695],[117,40,77,-0.022505889847738172],[117,40,78,-0.021026049456018103],[117,40,79,-0.013345661802255854],[117,41,64,0.050312671321032454],[117,41,65,0.04800878074173001],[117,41,66,0.038614781289169425],[117,41,67,0.024344545404884066],[117,41,68,0.013078245494042323],[117,41,69,0.003598517305240856],[117,41,70,-0.010129866968546786],[117,41,71,-0.015347510046178403],[117,41,72,-0.014709406013831583],[117,41,73,-0.012494302671276492],[117,41,74,-0.015449622666639712],[117,41,75,-0.019601736960295768],[117,41,76,-0.0206899643661356],[117,41,77,-0.02256639150707858],[117,41,78,-0.021910628418826156],[117,41,79,-0.01482124652562225],[117,42,64,0.048449710745636004],[117,42,65,0.04585117908099645],[117,42,66,0.03744758051681987],[117,42,67,0.02427002809104012],[117,42,68,0.011884597160344124],[117,42,69,9.327374278974843E-4],[117,42,70,-0.01145612825749115],[117,42,71,-0.01685283486415562],[117,42,72,-0.015195772328094187],[117,42,73,-0.010174045837373302],[117,42,74,-0.014405303391101548],[117,42,75,-0.016524430891512315],[117,42,76,-0.01983284812632874],[117,42,77,-0.022132243692478626],[117,42,78,-0.02176436720379679],[117,42,79,-0.01524834659172683],[117,43,64,0.04709716865802477],[117,43,65,0.04123043000464319],[117,43,66,0.03453204165688484],[117,43,67,0.023412968874048645],[117,43,68,0.010294734839787933],[117,43,69,-0.0020209790015046636],[117,43,70,-0.011457016175136142],[117,43,71,-0.015965856270843903],[117,43,72,-0.017328990564651647],[117,43,73,-0.012797919420054954],[117,43,74,-0.01538725515167691],[117,43,75,-0.015947226901404182],[117,43,76,-0.019484331570424868],[117,43,77,-0.02032690293390399],[117,43,78,-0.022301797820831762],[117,43,79,-0.01380386917618337],[117,44,64,0.040263165588947936],[117,44,65,0.03466780447351531],[117,44,66,0.02865194916431016],[117,44,67,0.018981655776755285],[117,44,68,0.005084150754248146],[117,44,69,-0.0066895534038551585],[117,44,70,-0.013607023017848663],[117,44,71,-0.020097412509873194],[117,44,72,-0.02076665432947658],[117,44,73,-0.0196997110110311],[117,44,74,-0.02044846734247048],[117,44,75,-0.020655340730703242],[117,44,76,-0.02474899379809463],[117,44,77,-0.024560105105074934],[117,44,78,-0.026415220786909444],[117,44,79,-0.0181657221013512],[117,45,64,0.02519514338458953],[117,45,65,0.022319116535956585],[117,45,66,0.021397713392864837],[117,45,67,0.018228836140299187],[117,45,68,0.012756146961031778],[117,45,69,0.006233187830601866],[117,45,70,0.0038439612165940273],[117,45,71,0.003266517900455429],[117,45,72,0.001356573342328582],[117,45,73,4.5255051243831E-4],[117,45,74,4.845002901207596E-5],[117,45,75,-6.116778826279756E-4],[117,45,76,-0.00630403890816883],[117,45,77,-0.007651265851217254],[117,45,78,-0.009359107331747496],[117,45,79,-0.009197965369650146],[117,46,64,0.022938646774697813],[117,46,65,0.019402329258324885],[117,46,66,0.016950927884424954],[117,46,67,0.016852283155509018],[117,46,68,0.011260525236211905],[117,46,69,0.004584049022108738],[117,46,70,0.0043716324507536986],[117,46,71,0.004105815390948175],[117,46,72,0.0038500214534148147],[117,46,73,5.877766281056074E-4],[117,46,74,-6.392264167456585E-4],[117,46,75,0.0010943255979848354],[117,46,76,-0.0025073454313721544],[117,46,77,-0.004537102616090138],[117,46,78,-0.007324245736650942],[117,46,79,-0.007751290140420253],[117,47,64,0.019459451873066663],[117,47,65,0.018546605135285027],[117,47,66,0.016458990846499627],[117,47,67,0.014260353661772363],[117,47,68,0.010409905109298678],[117,47,69,0.004894035251672951],[117,47,70,0.0042831433656088935],[117,47,71,0.00247176901002763],[117,47,72,0.0034880680031477984],[117,47,73,1.3418866878278646E-5],[117,47,74,0.0020014345649251863],[117,47,75,0.0030201764839847267],[117,47,76,-7.482512122410911E-4],[117,47,77,-0.002982208187709723],[117,47,78,-0.006578058542204557],[117,47,79,-0.008728596881428768],[117,48,64,0.03258875310399234],[117,48,65,0.03470399729657955],[117,48,66,0.030805792407007954],[117,48,67,0.028077206756838197],[117,48,68,0.022919996642677548],[117,48,69,0.02017821026540556],[117,48,70,0.01882222025581262],[117,48,71,0.019050811149811414],[117,48,72,0.01909176664879264],[117,48,73,0.015352405738808389],[117,48,74,0.017053144250091024],[117,48,75,0.0166079943604506],[117,48,76,0.014887192409571398],[117,48,77,0.010071597426545786],[117,48,78,0.007369557637486507],[117,48,79,0.007435500407035056],[117,49,64,0.029819055238515968],[117,49,65,0.03149103476486473],[117,49,66,0.028171036760860357],[117,49,67,0.028129173708700023],[117,49,68,0.024263570589755756],[117,49,69,0.024838072960164187],[117,49,70,0.02376910827144016],[117,49,71,0.02169432941044125],[117,49,72,0.019534158961136944],[117,49,73,0.013645100655256398],[117,49,74,0.012610772665901798],[117,49,75,0.013020894233371771],[117,49,76,0.011144357277131173],[117,49,77,0.007923219486390937],[117,49,78,0.0029562391337587257],[117,49,79,0.005036145399659325],[117,50,64,0.027074696725609665],[117,50,65,0.02882479683141015],[117,50,66,0.025343086301746864],[117,50,67,0.02462191365583724],[117,50,68,0.02566868087622176],[117,50,69,0.026871333170244954],[117,50,70,0.02643374371865767],[117,50,71,0.02307529374967951],[117,50,72,0.019270585057596046],[117,50,73,0.011975596939720029],[117,50,74,0.010402438171132261],[117,50,75,0.01233043929728378],[117,50,76,0.008356490186247373],[117,50,77,0.00715684300677813],[117,50,78,-3.2142653052652514E-5],[117,50,79,0.0032275634779994344],[117,51,64,0.02403480587897544],[117,51,65,0.02409579727146935],[117,51,66,0.02225939954114106],[117,51,67,0.0202859209777303],[117,51,68,0.025429758036125516],[117,51,69,0.02840156851313355],[117,51,70,0.02459302385230458],[117,51,71,0.02233530301416453],[117,51,72,0.016315788027495642],[117,51,73,0.0132640488141606],[117,51,74,0.010200722024293868],[117,51,75,0.012444333976900562],[117,51,76,0.007672146467417873],[117,51,77,0.004219217310684059],[117,51,78,-0.0022544110966351283],[117,51,79,7.612825535733558E-4],[117,52,64,0.04539961661794381],[117,52,65,0.047776056942795575],[117,52,66,0.04631411668415719],[117,52,67,0.045737598118560374],[117,52,68,0.04887398008113608],[117,52,69,0.05111668821272705],[117,52,70,0.04696474197937031],[117,52,71,0.04536310057914203],[117,52,72,0.039730506550674866],[117,52,73,0.03783505200447662],[117,52,74,0.035675653287757264],[117,52,75,0.03418236906952066],[117,52,76,0.028841260817172698],[117,52,77,0.026286726562623708],[117,52,78,0.021237084723715022],[117,52,79,0.022337571348639423],[117,53,64,0.0482898564693533],[117,53,65,0.05031958760362376],[117,53,66,0.047682992599863055],[117,53,67,0.042494106493378425],[117,53,68,0.039926721282248556],[117,53,69,0.042060237155774866],[117,53,70,0.036260659831662684],[117,53,71,0.03082693367973699],[117,53,72,0.026864192419810112],[117,53,73,0.026116121430998646],[117,53,74,0.023848362279106666],[117,53,75,0.02159688714733138],[117,53,76,0.017324726849976713],[117,53,77,0.017422714911113912],[117,53,78,0.013891753153549208],[117,53,79,0.0170858789387969],[117,54,64,0.04587563591671731],[117,54,65,0.046076734769662536],[117,54,66,0.04575176367951392],[117,54,67,0.04187145342897983],[117,54,68,0.03684897957222172],[117,54,69,0.03725663605564375],[117,54,70,0.03124467346912152],[117,54,71,0.028008625804257198],[117,54,72,0.025869345417783685],[117,54,73,0.02528817991383464],[117,54,74,0.02093053332711986],[117,54,75,0.019957892691484236],[117,54,76,0.013973583785347021],[117,54,77,0.01570003294108202],[117,54,78,0.012731813069509712],[117,54,79,0.015295047038767717],[117,55,64,0.046117062857475855],[117,55,65,0.0423166226689477],[117,55,66,0.041787899137075285],[117,55,67,0.035519350748561884],[117,55,68,0.0329541726464756],[117,55,69,0.031864256622375076],[117,55,70,0.03006896318951105],[117,55,71,0.02704537344611091],[117,55,72,0.024533742374645978],[117,55,73,0.021092490212321707],[117,55,74,0.01947585716279543],[117,55,75,0.016927281079316625],[117,55,76,0.012521548922083486],[117,55,77,0.014500835513643145],[117,55,78,0.01578301444322905],[117,55,79,0.01710647724118905],[117,56,64,0.0582430505083002],[117,56,65,0.05617396668410926],[117,56,66,0.05252853617013331],[117,56,67,0.04595990010746984],[117,56,68,0.04035748940459688],[117,56,69,0.042046487825408374],[117,56,70,0.04280265486246468],[117,56,71,0.03888443845844708],[117,56,72,0.035071533142278344],[117,56,73,0.03203848265106771],[117,56,74,0.03278843676460785],[117,56,75,0.028832887539404717],[117,56,76,0.024846958030608268],[117,56,77,0.028888954539080414],[117,56,78,0.03191171551630753],[117,56,79,0.034771199376003176],[117,57,64,0.054986247197891164],[117,57,65,0.051828147797648216],[117,57,66,0.05078263104398004],[117,57,67,0.04467387305282311],[117,57,68,0.038116600644814286],[117,57,69,0.03912861456829203],[117,57,70,0.04067350382099924],[117,57,71,0.03127563707438735],[117,57,72,0.025678951624117374],[117,57,73,0.02271750228506142],[117,57,74,0.022468347222041746],[117,57,75,0.017958884474639836],[117,57,76,0.013819749955840233],[117,57,77,0.01969798752875679],[117,57,78,0.022997407825671334],[117,57,79,0.028515702451992087],[117,58,64,0.09568338361576395],[117,58,65,0.09282263489676902],[117,58,66,0.08688803205137952],[117,58,67,0.08242073344659492],[117,58,68,0.07675548057648607],[117,58,69,0.07638234838123095],[117,58,70,0.07385452081932865],[117,58,71,0.06684041088110954],[117,58,72,0.06101339595006647],[117,58,73,0.05756109898077358],[117,58,74,0.05489877894765581],[117,58,75,0.04926558454688246],[117,58,76,0.05044234768242581],[117,58,77,0.05328693100979551],[117,58,78,0.056701462777275405],[117,58,79,0.060801583166093354],[117,59,64,0.09369831275211833],[117,59,65,0.09071125056906083],[117,59,66,0.08237558370783447],[117,59,67,0.07875063836429162],[117,59,68,0.07321736256089866],[117,59,69,0.07116786012142555],[117,59,70,0.06881525179388488],[117,59,71,0.06383866982669399],[117,59,72,0.05759965424929714],[117,59,73,0.05373680416449561],[117,59,74,0.05182596392831189],[117,59,75,0.04835803483318707],[117,59,76,0.05127208043370421],[117,59,77,0.05380547915451456],[117,59,78,0.0551031521643993],[117,59,79,0.059509671919620644],[117,60,64,0.08849305934329997],[117,60,65,0.08334464749818936],[117,60,66,0.07239732886942137],[117,60,67,0.06591237040079523],[117,60,68,0.06212040295259477],[117,60,69,0.06065047083789364],[117,60,70,0.05874709018628346],[117,60,71,0.05826041361324971],[117,60,72,0.050728646404880395],[117,60,73,0.04784433980669592],[117,60,74,0.045825517207931404],[117,60,75,0.043454498015969456],[117,60,76,0.04804555702605401],[117,60,77,0.04889387484250081],[117,60,78,0.04874554142631571],[117,60,79,0.052760265140269075],[117,61,64,0.09692641596709492],[117,61,65,0.08444865084719733],[117,61,66,0.07032599839174486],[117,61,67,0.05942835442713294],[117,61,68,0.051410374665342234],[117,61,69,0.04854196499325539],[117,61,70,0.046690863119150675],[117,61,71,0.046347889753453],[117,61,72,0.04594918894381489],[117,61,73,0.047402857370905715],[117,61,74,0.04729016362319571],[117,61,75,0.04627446072123936],[117,61,76,0.050893491003740854],[117,61,77,0.05331279799522884],[117,61,78,0.05404361048654731],[117,61,79,0.05841425345134471],[117,62,64,0.09442635397803585],[117,62,65,0.08231464658757018],[117,62,66,0.06586931060636049],[117,62,67,0.057176015107041095],[117,62,68,0.049462043169947775],[117,62,69,0.045957887437456005],[117,62,70,0.044343133096943155],[117,62,71,0.04508939393514297],[117,62,72,0.04471273221343035],[117,62,73,0.04421562144787705],[117,62,74,0.04491535503443615],[117,62,75,0.04565208357265495],[117,62,76,0.051101479098124805],[117,62,77,0.05248627103350699],[117,62,78,0.05431781059681534],[117,62,79,0.06026278855105216],[117,63,64,0.021206328750540404],[117,63,65,0.006639098445734723],[117,63,66,-0.010087755333076265],[117,63,67,-0.018103648246468027],[117,63,68,-0.024201556492148085],[117,63,69,-0.02777023924159809],[117,63,70,-0.029496079386350474],[117,63,71,-0.027207574719222916],[117,63,72,-0.026596605040381513],[117,63,73,-0.0267812165587209],[117,63,74,-0.025394524944649596],[117,63,75,-0.02385394607220004],[117,63,76,-0.01809752097260775],[117,63,77,-0.01529570012540414],[117,63,78,-0.013278460228072303],[117,63,79,-0.008593779791236017],[117,64,64,0.02984825798771329],[117,64,65,0.011875321906020544],[117,64,66,-0.0026100856608860107],[117,64,67,-0.011362109790067854],[117,64,68,-0.01540263919750226],[117,64,69,-0.020827195255894618],[117,64,70,-0.021371224415228707],[117,64,71,-0.0214957249096224],[117,64,72,-0.01948477697883584],[117,64,73,-0.01566153180118668],[117,64,74,-0.01454456466652225],[117,64,75,-0.011149472903012284],[117,64,76,-0.008510220054036455],[117,64,77,-0.005301032955534177],[117,64,78,-0.0031323872609840264],[117,64,79,-7.678852154757027E-4],[117,65,64,0.02634250043601978],[117,65,65,0.009206383517523592],[117,65,66,-0.005248272447039126],[117,65,67,-0.01302663502878415],[117,65,68,-0.01784540689300418],[117,65,69,-0.022631382804612132],[117,65,70,-0.02407747563104043],[117,65,71,-0.02438452427345099],[117,65,72,-0.020276136093053537],[117,65,73,-0.017862113974946955],[117,65,74,-0.01574949086627439],[117,65,75,-0.011931690825118454],[117,65,76,-0.00881186616065445],[117,65,77,-0.0037784955558862604],[117,65,78,-0.005300939410904343],[117,65,79,-0.004336246454305276],[117,66,64,0.016812372168143158],[117,66,65,0.0017387690244168724],[117,66,66,-0.010853254858494352],[117,66,67,-0.01999789318780726],[117,66,68,-0.025107147792364948],[117,66,69,-0.029115209710095763],[117,66,70,-0.030151734384557385],[117,66,71,-0.029725427163029172],[117,66,72,-0.02705007189169284],[117,66,73,-0.022656211135787405],[117,66,74,-0.02251596601893391],[117,66,75,-0.019036079492690608],[117,66,76,-0.013982054434196617],[117,66,77,-0.01116793424132781],[117,66,78,-0.013148628995929723],[117,66,79,-0.014570991163161864],[117,67,64,0.01382043175422104],[117,67,65,-7.846574937299677E-4],[117,67,66,-0.013949870442576229],[117,67,67,-0.023938001576740045],[117,67,68,-0.027768251148294412],[117,67,69,-0.031172161220519315],[117,67,70,-0.030166996545862954],[117,67,71,-0.0283171014052047],[117,67,72,-0.024546093801164598],[117,67,73,-0.022872050514220574],[117,67,74,-0.02346235772276066],[117,67,75,-0.019049180182504427],[117,67,76,-0.013302529025090673],[117,67,77,-0.011900677801178441],[117,67,78,-0.014122348564531706],[117,67,79,-0.019183609458208878],[117,68,64,-0.07882383336532298],[117,68,65,-0.09162095981727646],[117,68,66,-0.10503359143397467],[117,68,67,-0.11746050797702631],[117,68,68,-0.11889594186558103],[117,68,69,-0.12135007065970445],[117,68,70,-0.117385689084428],[117,68,71,-0.1149298460451435],[117,68,72,-0.11183004066756204],[117,68,73,-0.11267557581324682],[117,68,74,-0.11408301897595156],[117,68,75,-0.11005169626318262],[117,68,76,-0.1057729811618745],[117,68,77,-0.10311546153961962],[117,68,78,-0.10656110109745806],[117,68,79,-0.11082724265121727],[117,69,64,-0.0913058743196398],[117,69,65,-0.0997602754830531],[117,69,66,-0.11006065704151634],[117,69,67,-0.11856311574992157],[117,69,68,-0.11454396584306392],[117,69,69,-0.10890641784255706],[117,69,70,-0.10185367400315203],[117,69,71,-0.09651373901305968],[117,69,72,-0.09288112159680725],[117,69,73,-0.092808024510012],[117,69,74,-0.09599509813491136],[117,69,75,-0.09248057894519779],[117,69,76,-0.09200620495361683],[117,69,77,-0.0937112436492882],[117,69,78,-0.09688696290828457],[117,69,79,-0.10357599997385258],[117,70,64,-0.09686093127418904],[117,70,65,-0.10198186194199327],[117,70,66,-0.1117418870875612],[117,70,67,-0.11884335401374835],[117,70,68,-0.11757273911592894],[117,70,69,-0.11135253658882277],[117,70,70,-0.10325345862050647],[117,70,71,-0.09789543920688705],[117,70,72,-0.09511216548257062],[117,70,73,-0.0954528538982081],[117,70,74,-0.09765247676977477],[117,70,75,-0.09652508351217842],[117,70,76,-0.09479967007227427],[117,70,77,-0.09770921286502529],[117,70,78,-0.09953797564514497],[117,70,79,-0.10405076576535634],[117,71,64,-0.08991605576418224],[117,71,65,-0.0963669746998123],[117,71,66,-0.10407381908210211],[117,71,67,-0.11024482996184198],[117,71,68,-0.10762902783193383],[117,71,69,-0.1016018384915861],[117,71,70,-0.09510627997742015],[117,71,71,-0.09014954282722047],[117,71,72,-0.08690836561142819],[117,71,73,-0.08762546422258528],[117,71,74,-0.08838557388736165],[117,71,75,-0.08794850135558743],[117,71,76,-0.08856167967011182],[117,71,77,-0.09145910899991938],[117,71,78,-0.09446078826632118],[117,71,79,-0.09867497834212507],[117,72,64,-0.09485819011401092],[117,72,65,-0.10284485386916353],[117,72,66,-0.10708608986983256],[117,72,67,-0.11122401256922994],[117,72,68,-0.1058930692521048],[117,72,69,-0.10268075113409432],[117,72,70,-0.09840493454033987],[117,72,71,-0.09320045502841846],[117,72,72,-0.08971760380768298],[117,72,73,-0.0901391494772481],[117,72,74,-0.09212730712979712],[117,72,75,-0.09264785289422642],[117,72,76,-0.09520738441052701],[117,72,77,-0.09379210659439575],[117,72,78,-0.09972341858528957],[117,72,79,-0.0999787108178318],[117,73,64,-0.10932474115596993],[117,73,65,-0.1117184929082734],[117,73,66,-0.11152060129580069],[117,73,67,-0.11212064701456659],[117,73,68,-0.10409770482850897],[117,73,69,-0.10174085766635456],[117,73,70,-0.10187773789402478],[117,73,71,-0.09603103250504157],[117,73,72,-0.0931853269200911],[117,73,73,-0.09573960684474639],[117,73,74,-0.09967603502670462],[117,73,75,-0.10174798998840175],[117,73,76,-0.10255845866838954],[117,73,77,-0.10344287826545334],[117,73,78,-0.10685148825681234],[117,73,79,-0.10504952241201071],[117,74,64,-0.117557593912743],[117,74,65,-0.1201653304180482],[117,74,66,-0.12053664221098369],[117,74,67,-0.11840530437713052],[117,74,68,-0.11279317352479781],[117,74,69,-0.10925106531536127],[117,74,70,-0.10845576063164764],[117,74,71,-0.10203762839907862],[117,74,72,-0.1001741355805369],[117,74,73,-0.10353541633803232],[117,74,74,-0.1061538740394114],[117,74,75,-0.10774622507111398],[117,74,76,-0.11030160363057705],[117,74,77,-0.11259837354551006],[117,74,78,-0.11719192457082965],[117,74,79,-0.11579683525054996],[117,75,64,-0.1191788804428383],[117,75,65,-0.12323676153126194],[117,75,66,-0.1252139191605139],[117,75,67,-0.12088012922630209],[117,75,68,-0.11539384464844986],[117,75,69,-0.11139420399595026],[117,75,70,-0.10833748122780844],[117,75,71,-0.10359512976646253],[117,75,72,-0.10271986451628726],[117,75,73,-0.10449393632418613],[117,75,74,-0.1096645163725746],[117,75,75,-0.11284002016028329],[117,75,76,-0.11332950484198315],[117,75,77,-0.11478458176007975],[117,75,78,-0.12031829944975098],[117,75,79,-0.1220802705733107],[117,76,64,-0.11953651250946935],[117,76,65,-0.12208313663284363],[117,76,66,-0.12190023362942148],[117,76,67,-0.11871600964314495],[117,76,68,-0.11313292572590379],[117,76,69,-0.11073578657296468],[117,76,70,-0.10703832791097104],[117,76,71,-0.10402026763538066],[117,76,72,-0.10312644721512344],[117,76,73,-0.10597456297675767],[117,76,74,-0.1111960589019346],[117,76,75,-0.11182659311018911],[117,76,76,-0.11266211876915684],[117,76,77,-0.11355790665646323],[117,76,78,-0.11755392241444534],[117,76,79,-0.1265036148565364],[117,77,64,-0.12002479419485595],[117,77,65,-0.12366397179206401],[117,77,66,-0.12537892552283803],[117,77,67,-0.12170769069450418],[117,77,68,-0.11899779131474665],[117,77,69,-0.1182246750613836],[117,77,70,-0.11544843425375449],[117,77,71,-0.11642072728864071],[117,77,72,-0.11763784356369007],[117,77,73,-0.12125067606900577],[117,77,74,-0.12348155837044703],[117,77,75,-0.12480298588989308],[117,77,76,-0.12403946226993942],[117,77,77,-0.12747332683968016],[117,77,78,-0.13099918147428544],[117,77,79,-0.1379878729244949],[117,78,64,-0.1239466372963834],[117,78,65,-0.12627493965230846],[117,78,66,-0.12826833912154414],[117,78,67,-0.12464050909240207],[117,78,68,-0.1212935012722593],[117,78,69,-0.11981489617131345],[117,78,70,-0.1174424604145573],[117,78,71,-0.11729495965839598],[117,78,72,-0.11903355202262793],[117,78,73,-0.12300867476427779],[117,78,74,-0.1268238535578078],[117,78,75,-0.1297009374131634],[117,78,76,-0.12786253676051287],[117,78,77,-0.13385760221500087],[117,78,78,-0.13849999167583052],[117,78,79,-0.14465424196668253],[117,79,64,-0.11431194453739371],[117,79,65,-0.11876933058485639],[117,79,66,-0.11972318243539849],[117,79,67,-0.11705908933392759],[117,79,68,-0.1155734954510072],[117,79,69,-0.11335394821517526],[117,79,70,-0.10895203707062474],[117,79,71,-0.10860207852514901],[117,79,72,-0.11093440426398732],[117,79,73,-0.11861377225813599],[117,79,74,-0.1228790779462906],[117,79,75,-0.12749261337678428],[117,79,76,-0.12631181900025873],[117,79,77,-0.13029346839696165],[117,79,78,-0.13626790728302396],[117,79,79,-0.1427157954117366],[117,80,64,-0.115631159091147],[117,80,65,-0.12048728653139698],[117,80,66,-0.1191999701678986],[117,80,67,-0.11636700129745112],[117,80,68,-0.11649483986709297],[117,80,69,-0.11368531717002477],[117,80,70,-0.10907973273862562],[117,80,71,-0.11006505040038622],[117,80,72,-0.11377754428880364],[117,80,73,-0.12230048942400684],[117,80,74,-0.1274419035104991],[117,80,75,-0.13245727182211775],[117,80,76,-0.1318253342529608],[117,80,77,-0.13748837313495813],[117,80,78,-0.14304832433373915],[117,80,79,-0.145182469476215],[117,81,64,-0.11169669487397083],[117,81,65,-0.11434749385603815],[117,81,66,-0.11358838506267131],[117,81,67,-0.11007740383141831],[117,81,68,-0.1090654416961],[117,81,69,-0.10643204036310573],[117,81,70,-0.10230374860832406],[117,81,71,-0.1059107446257338],[117,81,72,-0.11038912747402796],[117,81,73,-0.12106339071447392],[117,81,74,-0.12413842031877154],[117,81,75,-0.12985277967465506],[117,81,76,-0.1315401435444408],[117,81,77,-0.14292554115714282],[117,81,78,-0.1503202321298453],[117,81,79,-0.1544338900619569],[117,82,64,-0.1199690540582871],[117,82,65,-0.11985424576407337],[117,82,66,-0.12090751282719397],[117,82,67,-0.11808440606411316],[117,82,68,-0.11711271813259796],[117,82,69,-0.11574359724022702],[117,82,70,-0.11355980705683565],[117,82,71,-0.11700358528129362],[117,82,72,-0.12020461434139615],[117,82,73,-0.12993054544289118],[117,82,74,-0.13316798802359558],[117,82,75,-0.14031764519762657],[117,82,76,-0.14035290434609599],[117,82,77,-0.15112159482781132],[117,82,78,-0.16197606504808876],[117,82,79,-0.1633647265176598],[117,83,64,-0.11942328545210562],[117,83,65,-0.11987637925858484],[117,83,66,-0.12063848379363232],[117,83,67,-0.11905958671321555],[117,83,68,-0.11922879889860764],[117,83,69,-0.11833595403131718],[117,83,70,-0.11721904048074892],[117,83,71,-0.12279646306985785],[117,83,72,-0.12595641268712],[117,83,73,-0.13416497107795516],[117,83,74,-0.13892837688423498],[117,83,75,-0.1436434742295858],[117,83,76,-0.1441753535559709],[117,83,77,-0.15556400538016696],[117,83,78,-0.16563692789445641],[117,83,79,-0.16820275080586447],[117,84,64,-0.11680903576425114],[117,84,65,-0.1184552214182461],[117,84,66,-0.11787419364259094],[117,84,67,-0.11938561790563279],[117,84,68,-0.11987696205017226],[117,84,69,-0.11919010584630639],[117,84,70,-0.12168889459537947],[117,84,71,-0.1287374447275368],[117,84,72,-0.12988359662317317],[117,84,73,-0.1356732415406448],[117,84,74,-0.14190943967773756],[117,84,75,-0.14622246854826662],[117,84,76,-0.14980365076732785],[117,84,77,-0.15861826243391666],[117,84,78,-0.16996376845475586],[117,84,79,-0.17124265481084427],[117,85,64,-0.1308969556657883],[117,85,65,-0.13539487271681858],[117,85,66,-0.1391141120799477],[117,85,67,-0.1409448614897116],[117,85,68,-0.1412760919932854],[117,85,69,-0.14261569659443493],[117,85,70,-0.1473281030010734],[117,85,71,-0.1530545008327447],[117,85,72,-0.1530501286913778],[117,85,73,-0.15596058983788624],[117,85,74,-0.16342206163971817],[117,85,75,-0.16495505315252199],[117,85,76,-0.16786947924327952],[117,85,77,-0.1726317300084212],[117,85,78,-0.17540440931107487],[117,85,79,-0.17653774739030342],[117,86,64,-0.13421621704330916],[117,86,65,-0.13979868353224703],[117,86,66,-0.1425726770360174],[117,86,67,-0.144967567435593],[117,86,68,-0.14459799044501787],[117,86,69,-0.14624428562880468],[117,86,70,-0.15217862275546912],[117,86,71,-0.15437089289346068],[117,86,72,-0.15683899958373218],[117,86,73,-0.15872482899491946],[117,86,74,-0.16511299636448243],[117,86,75,-0.16708301205676274],[117,86,76,-0.17136994808729863],[117,86,77,-0.17586781903054477],[117,86,78,-0.17831358991867025],[117,86,79,-0.1786739733156681],[117,87,64,-0.12569132388742152],[117,87,65,-0.13275175127218397],[117,87,66,-0.1381652497267582],[117,87,67,-0.13860804195178805],[117,87,68,-0.1405067992398766],[117,87,69,-0.13994531714236894],[117,87,70,-0.14389839239749094],[117,87,71,-0.14566001671933165],[117,87,72,-0.14928440511252683],[117,87,73,-0.15214355773944355],[117,87,74,-0.15626548902736587],[117,87,75,-0.16235087261455552],[117,87,76,-0.16608461797130866],[117,87,77,-0.17121710699126072],[117,87,78,-0.17250113952141305],[117,87,79,-0.17047038187960079],[117,88,64,-0.12699891512014103],[117,88,65,-0.1337595910035933],[117,88,66,-0.14048786626917942],[117,88,67,-0.1415893203886601],[117,88,68,-0.14339364585311173],[117,88,69,-0.1439858870363343],[117,88,70,-0.14587737224111638],[117,88,71,-0.14618421208479865],[117,88,72,-0.1509419425643785],[117,88,73,-0.1528434783083843],[117,88,74,-0.15780188474530646],[117,88,75,-0.16472141667724421],[117,88,76,-0.1661931829716245],[117,88,77,-0.17090482143994762],[117,88,78,-0.174978893731757],[117,88,79,-0.17140290958071278],[117,89,64,-0.12874512877709832],[117,89,65,-0.13627048213425635],[117,89,66,-0.14258277733507596],[117,89,67,-0.14390813043705555],[117,89,68,-0.14481409671438888],[117,89,69,-0.14482559101344944],[117,89,70,-0.1478333451403511],[117,89,71,-0.14921545553377588],[117,89,72,-0.15196693432564543],[117,89,73,-0.15374522767035065],[117,89,74,-0.1591905227184738],[117,89,75,-0.16615506837587665],[117,89,76,-0.16645153642973443],[117,89,77,-0.17031390792644102],[117,89,78,-0.1754487101134602],[117,89,79,-0.17367392091107298],[117,90,64,-0.1361376849883078],[117,90,65,-0.14215650106407512],[117,90,66,-0.14578925550141245],[117,90,67,-0.14912085609609052],[117,90,68,-0.15091917937265564],[117,90,69,-0.15360715581046835],[117,90,70,-0.15323319104863692],[117,90,71,-0.15617561544252417],[117,90,72,-0.15708179579555426],[117,90,73,-0.16051920635737119],[117,90,74,-0.1656393819165321],[117,90,75,-0.16931861574682577],[117,90,76,-0.16920096518170666],[117,90,77,-0.17249272685783812],[117,90,78,-0.18009108271995578],[117,90,79,-0.18087528429838312],[117,91,64,-0.13577760144643533],[117,91,65,-0.14144434195132013],[117,91,66,-0.14623035426808656],[117,91,67,-0.14816650643262252],[117,91,68,-0.15023231546620788],[117,91,69,-0.15310014001468514],[117,91,70,-0.15391504804843448],[117,91,71,-0.15671961326568293],[117,91,72,-0.15699238424543677],[117,91,73,-0.1611739506681975],[117,91,74,-0.1657399336688415],[117,91,75,-0.16756658611137723],[117,91,76,-0.16781926247156745],[117,91,77,-0.17130360198839442],[117,91,78,-0.179581109604965],[117,91,79,-0.1801409836175844],[117,92,64,-0.1127766357373566],[117,92,65,-0.11870047045397009],[117,92,66,-0.12147457451326284],[117,92,67,-0.12321323295478864],[117,92,68,-0.12574184093987706],[117,92,69,-0.1309237443249527],[117,92,70,-0.13165119768117506],[117,92,71,-0.1355266513685337],[117,92,72,-0.13624865174519243],[117,92,73,-0.13915354231286955],[117,92,74,-0.1436051527268698],[117,92,75,-0.1448363095693404],[117,92,76,-0.1463418067596746],[117,92,77,-0.1484064401968435],[117,92,78,-0.15714172287387568],[117,92,79,-0.158837752075495],[117,93,64,-0.1158593520136661],[117,93,65,-0.12107016173157537],[117,93,66,-0.12319767210841975],[117,93,67,-0.1257549869934258],[117,93,68,-0.13078200956535405],[117,93,69,-0.13401879794024243],[117,93,70,-0.13343043318020645],[117,93,71,-0.13458152160893536],[117,93,72,-0.13363668678788185],[117,93,73,-0.13449943939775844],[117,93,74,-0.136238711705807],[117,93,75,-0.14053306595082682],[117,93,76,-0.1434454641570782],[117,93,77,-0.1469692719557853],[117,93,78,-0.15884165325696945],[117,93,79,-0.1638214453855301],[117,94,64,-0.11489812572434446],[117,94,65,-0.11998345866476415],[117,94,66,-0.12218352722971286],[117,94,67,-0.12692560894869465],[117,94,68,-0.1320041649441105],[117,94,69,-0.1346891044601688],[117,94,70,-0.13489176968273603],[117,94,71,-0.1340132636515909],[117,94,72,-0.1318887299096143],[117,94,73,-0.13267683917058984],[117,94,74,-0.13378987438783096],[117,94,75,-0.13815925170434123],[117,94,76,-0.14485269739545814],[117,94,77,-0.14938292393922664],[117,94,78,-0.1587186417500209],[117,94,79,-0.1650678934200781],[117,95,64,-0.10390894266905135],[117,95,65,-0.1094162333610272],[117,95,66,-0.11386580100388399],[117,95,67,-0.11851731794935522],[117,95,68,-0.12244527386609448],[117,95,69,-0.1249120107311325],[117,95,70,-0.12403670252484195],[117,95,71,-0.12781498697086963],[117,95,72,-0.12409675161455504],[117,95,73,-0.12393904161984028],[117,95,74,-0.1267109721251143],[117,95,75,-0.13153768305220617],[117,95,76,-0.13672042584983132],[117,95,77,-0.14389999468656134],[117,95,78,-0.15295270170128608],[117,95,79,-0.15846179696501256],[117,96,64,-0.10227918583039343],[117,96,65,-0.10642867646929685],[117,96,66,-0.11205871976834651],[117,96,67,-0.11631399689131086],[117,96,68,-0.1180446854616517],[117,96,69,-0.12153934302556989],[117,96,70,-0.12206556485138345],[117,96,71,-0.1245442920714204],[117,96,72,-0.12307879309476961],[117,96,73,-0.12343196111309818],[117,96,74,-0.12537522058655792],[117,96,75,-0.13257690001414418],[117,96,76,-0.14021551554679298],[117,96,77,-0.1459771407864414],[117,96,78,-0.1525270693167499],[117,96,79,-0.15815722034066687],[117,97,64,-0.10056555082418431],[117,97,65,-0.10246664913618782],[117,97,66,-0.10638365467085267],[117,97,67,-0.10738384360428192],[117,97,68,-0.11019587994590142],[117,97,69,-0.11370836261703811],[117,97,70,-0.11906889612066998],[117,97,71,-0.12051617209217952],[117,97,72,-0.12406794068146543],[117,97,73,-0.12530173511203094],[117,97,74,-0.1291116537122138],[117,97,75,-0.13506492578830984],[117,97,76,-0.1441518270997114],[117,97,77,-0.14595849130034066],[117,97,78,-0.1518464202655693],[117,97,79,-0.1566843800152723],[117,98,64,-0.10643107716842636],[117,98,65,-0.10894329468746027],[117,98,66,-0.11142384494217888],[117,98,67,-0.11109805547329221],[117,98,68,-0.11352596218178078],[117,98,69,-0.11769213397254422],[117,98,70,-0.12383494044676907],[117,98,71,-0.12578246397851528],[117,98,72,-0.12755342306047068],[117,98,73,-0.13020772317273877],[117,98,74,-0.13654586284836828],[117,98,75,-0.14218452887993377],[117,98,76,-0.1478707717430977],[117,98,77,-0.1509177238927027],[117,98,78,-0.15341791933084678],[117,98,79,-0.159824753097087],[117,99,64,-0.10640367131205633],[117,99,65,-0.1080679470539956],[117,99,66,-0.11079287546552453],[117,99,67,-0.11220896476940262],[117,99,68,-0.11514982614968346],[117,99,69,-0.11691045986366878],[117,99,70,-0.12116434199766637],[117,99,71,-0.12470594332573536],[117,99,72,-0.12845918798338235],[117,99,73,-0.13268370576815453],[117,99,74,-0.13895944038033792],[117,99,75,-0.1430426782177782],[117,99,76,-0.14910048722332547],[117,99,77,-0.14964243706610497],[117,99,78,-0.15340095632013467],[117,99,79,-0.15987368213011313],[117,100,64,-0.07483475705919299],[117,100,65,-0.07348650201049987],[117,100,66,-0.07064194313039894],[117,100,67,-0.07005365411539838],[117,100,68,-0.06892139402211614],[117,100,69,-0.06998012523320657],[117,100,70,-0.07110876960958731],[117,100,71,-0.07484355381994164],[117,100,72,-0.07805350992132429],[117,100,73,-0.07870334180083771],[117,100,74,-0.08392974808398954],[117,100,75,-0.08850258934782262],[117,100,76,-0.09461473120632684],[117,100,77,-0.09605818845200234],[117,100,78,-0.09894671597243332],[117,100,79,-0.10663426317081615],[117,101,64,-0.07282719904777807],[117,101,65,-0.07243515349731837],[117,101,66,-0.07091782116153363],[117,101,67,-0.07022339454558987],[117,101,68,-0.06874382643520838],[117,101,69,-0.06924790136414352],[117,101,70,-0.07140826390084569],[117,101,71,-0.07422012428794465],[117,101,72,-0.07655226259099351],[117,101,73,-0.0773113030094455],[117,101,74,-0.08430375808527293],[117,101,75,-0.08742748481367912],[117,101,76,-0.09247904613904498],[117,101,77,-0.09512845319315553],[117,101,78,-0.09888009624807716],[117,101,79,-0.10617383086585186],[117,102,64,-0.07238045999485936],[117,102,65,-0.07285780951370383],[117,102,66,-0.07364241676721006],[117,102,67,-0.07197268513812687],[117,102,68,-0.06953341302686035],[117,102,69,-0.06998530335203079],[117,102,70,-0.06984994807277331],[117,102,71,-0.07376007634678494],[117,102,72,-0.07489067686749097],[117,102,73,-0.07655044353997911],[117,102,74,-0.08306955764368486],[117,102,75,-0.08763957409121487],[117,102,76,-0.09167581713353339],[117,102,77,-0.09467053661200651],[117,102,78,-0.09931950493540452],[117,102,79,-0.10848578773661836],[117,103,64,-0.06718924385675475],[117,103,65,-0.0673046875592373],[117,103,66,-0.06831516101564876],[117,103,67,-0.06409766369447123],[117,103,68,-0.06333398800853375],[117,103,69,-0.06138229025172875],[117,103,70,-0.06214126559379958],[117,103,71,-0.06374420727605723],[117,103,72,-0.06885754717581404],[117,103,73,-0.07415036474679086],[117,103,74,-0.07611688413919582],[117,103,75,-0.08149818091380677],[117,103,76,-0.08346600517354055],[117,103,77,-0.09018441940682805],[117,103,78,-0.09527015965976612],[117,103,79,-0.10610469614594079],[117,104,64,-0.06851943053143533],[117,104,65,-0.0706842077584766],[117,104,66,-0.07159708464036656],[117,104,67,-0.06713131028815714],[117,104,68,-0.06534635092784685],[117,104,69,-0.06451952271120764],[117,104,70,-0.0633427509155115],[117,104,71,-0.0640440162817218],[117,104,72,-0.0685174225041896],[117,104,73,-0.07520234006222992],[117,104,74,-0.07675621662085502],[117,104,75,-0.0825078687927551],[117,104,76,-0.08628661085427702],[117,104,77,-0.09291756008396551],[117,104,78,-0.09739132181546926],[117,104,79,-0.1073155886563357],[117,105,64,-0.06801865345497476],[117,105,65,-0.06989571448018733],[117,105,66,-0.06843273748751877],[117,105,67,-0.06375446771194705],[117,105,68,-0.05926683746486186],[117,105,69,-0.05769141992539878],[117,105,70,-0.057173149494628664],[117,105,71,-0.057564117395201723],[117,105,72,-0.060838225113111516],[117,105,73,-0.0675812892093206],[117,105,74,-0.06798328688756033],[117,105,75,-0.0758400105299766],[117,105,76,-0.08269392115975299],[117,105,77,-0.09476487798500752],[117,105,78,-0.10263944766526646],[117,105,79,-0.11171433687174137],[117,106,64,-0.07722092840920675],[117,106,65,-0.07619564104846246],[117,106,66,-0.07525841465713799],[117,106,67,-0.07084857686062396],[117,106,68,-0.0669391210257189],[117,106,69,-0.06444808590987766],[117,106,70,-0.06372447054112404],[117,106,71,-0.06330998928879839],[117,106,72,-0.06598454428393534],[117,106,73,-0.07016446336305497],[117,106,74,-0.07330468021011244],[117,106,75,-0.07880391681167342],[117,106,76,-0.08962891566349387],[117,106,77,-0.10030228202013128],[117,106,78,-0.11113947357360217],[117,106,79,-0.1163851563521497],[117,107,64,-0.07613015010539294],[117,107,65,-0.0799388547321268],[117,107,66,-0.07663658810714938],[117,107,67,-0.07257617805174715],[117,107,68,-0.06802474478975103],[117,107,69,-0.06576727795321519],[117,107,70,-0.06469353123290371],[117,107,71,-0.06475711867533625],[117,107,72,-0.06706013132000499],[117,107,73,-0.07050525793991552],[117,107,74,-0.07468899764761286],[117,107,75,-0.08073281518160408],[117,107,76,-0.09141799168395137],[117,107,77,-0.10235478016232172],[117,107,78,-0.1102612170922036],[117,107,79,-0.11597006277384882],[117,108,64,-0.08472187951512554],[117,108,65,-0.08871063653089668],[117,108,66,-0.08323601790940534],[117,108,67,-0.07798588361149617],[117,108,68,-0.07427209376413012],[117,108,69,-0.07046813117035775],[117,108,70,-0.07022830688243648],[117,108,71,-0.06849833324945263],[117,108,72,-0.07230689908315276],[117,108,73,-0.07457408194675724],[117,108,74,-0.07956836061246628],[117,108,75,-0.08587231897262243],[117,108,76,-0.09600122069132469],[117,108,77,-0.10801136961139195],[117,108,78,-0.11778563439566825],[117,108,79,-0.12496434819627625],[117,109,64,-0.0906499348122663],[117,109,65,-0.0946236881708205],[117,109,66,-0.09518148704763549],[117,109,67,-0.09022501084248818],[117,109,68,-0.08831833968225763],[117,109,69,-0.08524874477386897],[117,109,70,-0.08513758897673873],[117,109,71,-0.08396228750319373],[117,109,72,-0.08776620215399719],[117,109,73,-0.08838332759241228],[117,109,74,-0.09199274958689477],[117,109,75,-0.09913260937807968],[117,109,76,-0.10554764810479203],[117,109,77,-0.111693735495711],[117,109,78,-0.11780463139025249],[117,109,79,-0.12335128442363345],[117,110,64,-0.09152239341215376],[117,110,65,-0.0976749997194968],[117,110,66,-0.09763715028999086],[117,110,67,-0.09321370021664079],[117,110,68,-0.09304089157478229],[117,110,69,-0.09067124380887862],[117,110,70,-0.09018471043019811],[117,110,71,-0.08711724149294799],[117,110,72,-0.09058248880407845],[117,110,73,-0.09129934412816833],[117,110,74,-0.09723404811825104],[117,110,75,-0.10074315398828612],[117,110,76,-0.10653292616571379],[117,110,77,-0.1129594885540005],[117,110,78,-0.11757374429300896],[117,110,79,-0.12387042945663385],[117,111,64,-0.08624270737924379],[117,111,65,-0.09148386172871262],[117,111,66,-0.09441669763621834],[117,111,67,-0.09052712091779999],[117,111,68,-0.09083073151991086],[117,111,69,-0.08936450726324816],[117,111,70,-0.08870170481681265],[117,111,71,-0.0836469272945273],[117,111,72,-0.08655675298399129],[117,111,73,-0.09037381340985765],[117,111,74,-0.09457837685596676],[117,111,75,-0.09952166611626878],[117,111,76,-0.10681431179163076],[117,111,77,-0.10926417096285185],[117,111,78,-0.11605349744095972],[117,111,79,-0.12230166672187254],[117,112,64,-0.08994367941447122],[117,112,65,-0.09536612954791227],[117,112,66,-0.09818790702981534],[117,112,67,-0.09457738048535347],[117,112,68,-0.09370663587982586],[117,112,69,-0.09086976126621585],[117,112,70,-0.08879424171330022],[117,112,71,-0.08563720272842595],[117,112,72,-0.09033063944227906],[117,112,73,-0.09157266190660328],[117,112,74,-0.09650323918978626],[117,112,75,-0.10454529559471379],[117,112,76,-0.10932559195923522],[117,112,77,-0.11193288323965837],[117,112,78,-0.1202201631299048],[117,112,79,-0.12374243672349818],[117,113,64,-0.08968695327185348],[117,113,65,-0.09725416046906198],[117,113,66,-0.10120587265138872],[117,113,67,-0.09841149280555943],[117,113,68,-0.0975081872242152],[117,113,69,-0.09310624010779302],[117,113,70,-0.08942567348841315],[117,113,71,-0.08802138484371233],[117,113,72,-0.0923873233545294],[117,113,73,-0.0950380309911886],[117,113,74,-0.10150328824265542],[117,113,75,-0.10632741962559057],[117,113,76,-0.1100680504772289],[117,113,77,-0.11457732308617144],[117,113,78,-0.12017631768716547],[117,113,79,-0.12282595322836592],[117,114,64,-0.09432528689971109],[117,114,65,-0.10078874024822126],[117,114,66,-0.10735888495062511],[117,114,67,-0.10509703198059402],[117,114,68,-0.1038913620906925],[117,114,69,-0.10056597782800669],[117,114,70,-0.09504786369750959],[117,114,71,-0.09678245976865014],[117,114,72,-0.10213750583776215],[117,114,73,-0.10753036349690867],[117,114,74,-0.10954289576067759],[117,114,75,-0.11292563309789319],[117,114,76,-0.11763068145537033],[117,114,77,-0.12153929245252279],[117,114,78,-0.1270122673949108],[117,114,79,-0.12755139567233137],[117,115,64,-0.09465536369402545],[117,115,65,-0.09818905392983504],[117,115,66,-0.10426608303021513],[117,115,67,-0.10436908178658016],[117,115,68,-0.10699344472567135],[117,115,69,-0.10218310809554232],[117,115,70,-0.09422454259144229],[117,115,71,-0.09790026054160246],[117,115,72,-0.10549899895472514],[117,115,73,-0.11195703655526607],[117,115,74,-0.11421118431186239],[117,115,75,-0.11673780418489177],[117,115,76,-0.11733274071999428],[117,115,77,-0.1218918250093027],[117,115,78,-0.1277128630640112],[117,115,79,-0.1285435292464515],[117,116,64,-0.07209146367816868],[117,116,65,-0.0777296638989208],[117,116,66,-0.08837094482844576],[117,116,67,-0.09350616777104888],[117,116,68,-0.098369235737741],[117,116,69,-0.09932219867714696],[117,116,70,-0.09543424488781166],[117,116,71,-0.09815406097087505],[117,116,72,-0.10726962890369098],[117,116,73,-0.11551257850818988],[117,116,74,-0.1161243972214697],[117,116,75,-0.11451855409596998],[117,116,76,-0.11392539592601361],[117,116,77,-0.1164204031091711],[117,116,78,-0.12173669803939718],[117,116,79,-0.1200922605530528],[117,117,64,-0.07588965267690198],[117,117,65,-0.08236387820075874],[117,117,66,-0.08975820321398385],[117,117,67,-0.09590767547843941],[117,117,68,-0.10021373292206871],[117,117,69,-0.10097635553459616],[117,117,70,-0.10082394150996626],[117,117,71,-0.10466717123511021],[117,117,72,-0.11036948659302358],[117,117,73,-0.11838864776303062],[117,117,74,-0.11902926179450163],[117,117,75,-0.11501998162302042],[117,117,76,-0.11471832206134353],[117,117,77,-0.11603967570690413],[117,117,78,-0.11776467375799517],[117,117,79,-0.11618437881125598],[117,118,64,-0.07733886154657285],[117,118,65,-0.08397114936210022],[117,118,66,-0.08802557379600003],[117,118,67,-0.09717912281541963],[117,118,68,-0.10046069579165111],[117,118,69,-0.10121454620139148],[117,118,70,-0.10419320699038105],[117,118,71,-0.10767928981396646],[117,118,72,-0.11388064277782062],[117,118,73,-0.11837536360204112],[117,118,74,-0.11962888722321974],[117,118,75,-0.11861596137580438],[117,118,76,-0.12081926517872817],[117,118,77,-0.11806724336321545],[117,118,78,-0.1189245335786769],[117,118,79,-0.11883679382923298],[117,119,64,-0.06960184785118659],[117,119,65,-0.0785099114931922],[117,119,66,-0.0821716600362941],[117,119,67,-0.09018261857511549],[117,119,68,-0.09628740476844218],[117,119,69,-0.09747475025220292],[117,119,70,-0.09957863839604957],[117,119,71,-0.10665207894936957],[117,119,72,-0.11044035754434262],[117,119,73,-0.11529263425798383],[117,119,74,-0.1184832585668156],[117,119,75,-0.1168110522185545],[117,119,76,-0.12051616597402046],[117,119,77,-0.12001028917013387],[117,119,78,-0.11937585583700103],[117,119,79,-0.11821356743362207],[117,120,64,-0.06976103300055615],[117,120,65,-0.07708695148855393],[117,120,66,-0.08247345585083823],[117,120,67,-0.08957835518920862],[117,120,68,-0.09800161046910674],[117,120,69,-0.10088451035181346],[117,120,70,-0.1021917651175077],[117,120,71,-0.10941532706777406],[117,120,72,-0.11124253130853116],[117,120,73,-0.11565486348812873],[117,120,74,-0.1160473400960052],[117,120,75,-0.11825422363967913],[117,120,76,-0.11984857493333326],[117,120,77,-0.12263759856233587],[117,120,78,-0.12237538622025873],[117,120,79,-0.11939334528938061],[117,121,64,-0.0611305346793416],[117,121,65,-0.06947782638562963],[117,121,66,-0.07829930225220466],[117,121,67,-0.08514197148438774],[117,121,68,-0.09628873127142876],[117,121,69,-0.09952444858039172],[117,121,70,-0.10048844334583396],[117,121,71,-0.10610812956370638],[117,121,72,-0.1075972784882916],[117,121,73,-0.11116012702817646],[117,121,74,-0.11334633591173951],[117,121,75,-0.11525201981333455],[117,121,76,-0.11745695991008294],[117,121,77,-0.124671783541911],[117,121,78,-0.13241967211039873],[117,121,79,-0.1291775871108017],[117,122,64,-0.06261156030580975],[117,122,65,-0.07456785705053832],[117,122,66,-0.08256698858735431],[117,122,67,-0.09051027997933021],[117,122,68,-0.10087755958109233],[117,122,69,-0.10509613996917713],[117,122,70,-0.10798420951030616],[117,122,71,-0.11334249761924732],[117,122,72,-0.11506549030805129],[117,122,73,-0.1192536248241412],[117,122,74,-0.120260315523964],[117,122,75,-0.12254257072571928],[117,122,76,-0.12434182537646399],[117,122,77,-0.13242952769872707],[117,122,78,-0.13930770120538413],[117,122,79,-0.1389003199243686],[117,123,64,-0.05943148022372638],[117,123,65,-0.0694625351878968],[117,123,66,-0.08054534296490828],[117,123,67,-0.09123186625008733],[117,123,68,-0.10083605520894132],[117,123,69,-0.10621129658568955],[117,123,70,-0.10753408548784679],[117,123,71,-0.11573464738426739],[117,123,72,-0.11803242676745397],[117,123,73,-0.1213146644591176],[117,123,74,-0.12361045863731354],[117,123,75,-0.1254061046226426],[117,123,76,-0.12759322256373484],[117,123,77,-0.13234964759418286],[117,123,78,-0.14039674369928865],[117,123,79,-0.1411019723573752],[117,124,64,-0.05678322122311547],[117,124,65,-0.06637136709785366],[117,124,66,-0.07953694054951382],[117,124,67,-0.08832409114288302],[117,124,68,-0.09927494892724525],[117,124,69,-0.10730568660255443],[117,124,70,-0.10696568142919702],[117,124,71,-0.11357939189829494],[117,124,72,-0.11673909112940571],[117,124,73,-0.12234617577826137],[117,124,74,-0.12238058230202792],[117,124,75,-0.12420674815406628],[117,124,76,-0.12987381334764533],[117,124,77,-0.13517070166594958],[117,124,78,-0.14434347875005776],[117,124,79,-0.14619341280498516],[117,125,64,-0.05648389702071961],[117,125,65,-0.06631034185006202],[117,125,66,-0.076397374205807],[117,125,67,-0.08654769876861658],[117,125,68,-0.09797660351200255],[117,125,69,-0.10675086397500602],[117,125,70,-0.10765594339339064],[117,125,71,-0.11231754043921433],[117,125,72,-0.11777620715146567],[117,125,73,-0.12207682305333575],[117,125,74,-0.12387570196834358],[117,125,75,-0.1252852129995973],[117,125,76,-0.1287838652723031],[117,125,77,-0.13655553206158605],[117,125,78,-0.14262060101246768],[117,125,79,-0.1449178694624184],[117,126,64,-0.052554499124909296],[117,126,65,-0.06547806713271663],[117,126,66,-0.0741168183260314],[117,126,67,-0.0837249056249424],[117,126,68,-0.09545311196077412],[117,126,69,-0.10594894625414114],[117,126,70,-0.10826087616364342],[117,126,71,-0.11269622664869922],[117,126,72,-0.11911753315570991],[117,126,73,-0.123045883487923],[117,126,74,-0.12779292170608472],[117,126,75,-0.1280433318852813],[117,126,76,-0.12938575260894336],[117,126,77,-0.13542011956437378],[117,126,78,-0.14219615960671184],[117,126,79,-0.14452578605433553],[117,127,64,-0.04427121771390952],[117,127,65,-0.05521350013094979],[117,127,66,-0.06693240153140155],[117,127,67,-0.07693188144471534],[117,127,68,-0.08932426721608938],[117,127,69,-0.10117018951231846],[117,127,70,-0.10343698941867366],[117,127,71,-0.11053423190899078],[117,127,72,-0.11708152612459004],[117,127,73,-0.12253716534826273],[117,127,74,-0.1284567610229016],[117,127,75,-0.12933166741641428],[117,127,76,-0.12893180795057535],[117,127,77,-0.13317060199101502],[117,127,78,-0.14092853354132825],[117,127,79,-0.14622564331635457],[117,128,64,-0.04489629379695501],[117,128,65,-0.05229707393912981],[117,128,66,-0.06818970308868821],[117,128,67,-0.0770780805676009],[117,128,68,-0.08831212405346814],[117,128,69,-0.0974607050293413],[117,128,70,-0.10330760894719332],[117,128,71,-0.11035918419024193],[117,128,72,-0.11994433307361593],[117,128,73,-0.12496422232617779],[117,128,74,-0.1277591751831743],[117,128,75,-0.12999934534137333],[117,128,76,-0.13025009145001218],[117,128,77,-0.13175831807585686],[117,128,78,-0.1376429972916774],[117,128,79,-0.14969135674046347],[117,129,64,-0.0387397238385765],[117,129,65,-0.04949214635440956],[117,129,66,-0.06888179151065221],[117,129,67,-0.08332571437414035],[117,129,68,-0.0947491055111222],[117,129,69,-0.10220259609581876],[117,129,70,-0.1087899148996489],[117,129,71,-0.11230412383978958],[117,129,72,-0.11701666494426727],[117,129,73,-0.12275806076791146],[117,129,74,-0.12205025867290392],[117,129,75,-0.12589875080106727],[117,129,76,-0.12552494038974485],[117,129,77,-0.12482103731586187],[117,129,78,-0.12592129542938213],[117,129,79,-0.12911550140562753],[117,130,64,-0.04247972732072364],[117,130,65,-0.056319153613575465],[117,130,66,-0.07230152018307945],[117,130,67,-0.08877797149689164],[117,130,68,-0.09876196884729771],[117,130,69,-0.1085881659046979],[117,130,70,-0.1156968600503008],[117,130,71,-0.1192973008530153],[117,130,72,-0.1208467399911489],[117,130,73,-0.12745790717382147],[117,130,74,-0.1582203314724807],[117,130,75,-0.18117947104288323],[117,130,76,-0.22418676685235733],[117,130,77,-0.26540838122682275],[117,130,78,-0.2841250660823551],[117,130,79,-0.2868654913072507],[117,131,64,-0.044098206956188615],[117,131,65,-0.05943605694632342],[117,131,66,-0.07407848046772116],[117,131,67,-0.08865806234594482],[117,131,68,-0.09886549014247935],[117,131,69,-0.10928681446713567],[117,131,70,-0.11785610293800047],[117,131,71,-0.12115692227421287],[117,131,72,-0.11999166651490423],[117,131,73,-0.1269172772301893],[117,131,74,-0.19041817409192882],[117,131,75,-0.20897599085481405],[117,131,76,-0.2525130387997131],[117,131,77,-0.2811307238476331],[117,131,78,-0.28673758831336704],[117,131,79,-0.2875878758995155],[117,132,64,-0.03517445460646943],[117,132,65,-0.052859287479966835],[117,132,66,-0.06725293467038147],[117,132,67,-0.08307159465739425],[117,132,68,-0.09411811975283702],[117,132,69,-0.10525268578512453],[117,132,70,-0.11387716142031074],[117,132,71,-0.11885200625398024],[117,132,72,-0.11913199855617676],[117,132,73,-0.12757764527902996],[117,132,74,-0.19274728319980114],[117,132,75,-0.21041913117180125],[117,132,76,-0.2549341976003404],[117,132,77,-0.278031401313668],[117,132,78,-0.286089265308362],[117,132,79,-0.28643699892942787],[117,133,64,-0.04568235054822209],[117,133,65,-0.05629057029859094],[117,133,66,-0.06410874011892213],[117,133,67,-0.07631551373276069],[117,133,68,-0.08703148088879407],[117,133,69,-0.09797942190391964],[117,133,70,-0.10626552943490443],[117,133,71,-0.11684016721453773],[117,133,72,-0.12218914462953676],[117,133,73,-0.1569515373118316],[117,133,74,-0.19727538479281964],[117,133,75,-0.1999812466166047],[117,133,76,-0.243967781522156],[117,133,77,-0.2683050023009827],[117,133,78,-0.2781253246043911],[117,133,79,-0.2807976717159715],[117,134,64,-0.04699758506892802],[117,134,65,-0.05561289907404465],[117,134,66,-0.06495340738493639],[117,134,67,-0.07557249574736333],[117,134,68,-0.08565372821677214],[117,134,69,-0.09849067773999226],[117,134,70,-0.10621363665473614],[117,134,71,-0.11703546871308149],[117,134,72,-0.12534087738386657],[117,134,73,-0.15880103039677557],[117,134,74,-0.19333964589764313],[117,134,75,-0.208545797958831],[117,134,76,-0.25065552463636004],[117,134,77,-0.27167392145890135],[117,134,78,-0.28082254315914046],[117,134,79,-0.28589008569757035],[117,135,64,-0.03944345874008486],[117,135,65,-0.049933404686652916],[117,135,66,-0.05978564220397415],[117,135,67,-0.07014655273170044],[117,135,68,-0.08086555429617062],[117,135,69,-0.09334119230719473],[117,135,70,-0.10180523388027996],[117,135,71,-0.11597316083179292],[117,135,72,-0.12426706117959588],[117,135,73,-0.147985835985879],[117,135,74,-0.17647066546760698],[117,135,75,-0.19507297291273887],[117,135,76,-0.2334254852124593],[117,135,77,-0.2640521145120419],[117,135,78,-0.2748314253788854],[117,135,79,-0.2789771069511925],[117,136,64,-0.03944979121122952],[117,136,65,-0.051564430010913785],[117,136,66,-0.060771775007643566],[117,136,67,-0.07207658679755129],[117,136,68,-0.0824757148230881],[117,136,69,-0.09553765018777181],[117,136,70,-0.10229386397440904],[117,136,71,-0.1150850432590742],[117,136,72,-0.12373948909091598],[117,136,73,-0.1564011767684468],[117,136,74,-0.1811842013918408],[117,136,75,-0.2013011105050505],[117,136,76,-0.24480940138695717],[117,136,77,-0.272124216517495],[117,136,78,-0.2812720983777082],[117,136,79,-0.28413892142621877],[117,137,64,-0.04074529661114076],[117,137,65,-0.05259882819813476],[117,137,66,-0.06216794797894212],[117,137,67,-0.07339093027213446],[117,137,68,-0.0836418982206704],[117,137,69,-0.09656909726141455],[117,137,70,-0.10459618841715883],[117,137,71,-0.11472205994320146],[117,137,72,-0.12329799377037316],[117,137,73,-0.15145383918068916],[117,137,74,-0.16792350208816137],[117,137,75,-0.18472137192153343],[117,137,76,-0.21940144442966283],[117,137,77,-0.2563808132004356],[117,137,78,-0.26571718606887895],[117,137,79,-0.2691570087198436],[117,138,64,-0.048911606683505304],[117,138,65,-0.057989630886388005],[117,138,66,-0.07007980545273995],[117,138,67,-0.07794358126318508],[117,138,68,-0.0886431514832225],[117,138,69,-0.10251532411683774],[117,138,70,-0.11075177881994722],[117,138,71,-0.12141962253127964],[117,138,72,-0.1267436227270219],[117,138,73,-0.14466871462236133],[117,138,74,-0.16257927377552492],[117,138,75,-0.17718065916262363],[117,138,76,-0.2039730597687891],[117,138,77,-0.23074739499355088],[117,138,78,-0.23750450061980835],[117,138,79,-0.2489269850178153],[117,139,64,-0.04841467673246586],[117,139,65,-0.06066180481900886],[117,139,66,-0.07235802713754788],[117,139,67,-0.07968747033068442],[117,139,68,-0.09093442263206875],[117,139,69,-0.10423592574312616],[117,139,70,-0.11055666192516181],[117,139,71,-0.12047479331005777],[117,139,72,-0.1280879127680035],[117,139,73,-0.15456176077625264],[117,139,74,-0.17913564445142077],[117,139,75,-0.1954086492628614],[117,139,76,-0.22542026495742945],[117,139,77,-0.2409983159953014],[117,139,78,-0.24252478918864853],[117,139,79,-0.2470383084388113],[117,140,64,-0.06070278347857981],[117,140,65,-0.07193027859783613],[117,140,66,-0.08219337160461729],[117,140,67,-0.08695522615074171],[117,140,68,-0.09704281575284827],[117,140,69,-0.1058635808316658],[117,140,70,-0.11074546257791937],[117,140,71,-0.11710312375055212],[117,140,72,-0.1230113285490739],[117,140,73,-0.15511418525938098],[117,140,74,-0.17535967086785362],[117,140,75,-0.19710873909383297],[117,140,76,-0.2252222904747967],[117,140,77,-0.23589950060636689],[117,140,78,-0.2411405833345148],[117,140,79,-0.24272722911679756],[117,141,64,-0.06489846048773584],[117,141,65,-0.07910296238745285],[117,141,66,-0.08901505118403466],[117,141,67,-0.09536499416782837],[117,141,68,-0.10394544585123043],[117,141,69,-0.113233219967696],[117,141,70,-0.11567143656314702],[117,141,71,-0.11921839282785729],[117,141,72,-0.1277927168385157],[117,141,73,-0.15647173706095333],[117,141,74,-0.17075735439478695],[117,141,75,-0.19383121216052868],[117,141,76,-0.21580364524455403],[117,141,77,-0.225013829755697],[117,141,78,-0.22929111211846082],[117,141,79,-0.2340825553072941],[117,142,64,-0.0669982633658966],[117,142,65,-0.08112257816516935],[117,142,66,-0.090717553245779],[117,142,67,-0.09812728903114726],[117,142,68,-0.1049580697473592],[117,142,69,-0.1143964000429841],[117,142,70,-0.11750732765934745],[117,142,71,-0.11959149065231159],[117,142,72,-0.12778475396044792],[117,142,73,-0.15461349644511674],[117,142,74,-0.1655110548461668],[117,142,75,-0.18602203573371517],[117,142,76,-0.20843793974336974],[117,142,77,-0.2161236147304778],[117,142,78,-0.22640702581386168],[117,142,79,-0.23266988207457895],[117,143,64,-0.06268936952893488],[117,143,65,-0.07632279852117291],[117,143,66,-0.08890960314180757],[117,143,67,-0.09708984592885],[117,143,68,-0.10311432041438956],[117,143,69,-0.11123153164823214],[117,143,70,-0.11559393316153316],[117,143,71,-0.11863605969094002],[117,143,72,-0.12592153746831708],[117,143,73,-0.14204496352915688],[117,143,74,-0.15224991731031007],[117,143,75,-0.16971080260559115],[117,143,76,-0.18999422223971682],[117,143,77,-0.20425170274834353],[117,143,78,-0.21104356247306874],[117,143,79,-0.22625082218634437],[117,144,64,-0.06557064809911997],[117,144,65,-0.07612415036229489],[117,144,66,-0.08903719437831312],[117,144,67,-0.09964413315745282],[117,144,68,-0.10465769506485342],[117,144,69,-0.11016173823273798],[117,144,70,-0.11559633225239097],[117,144,71,-0.12179859637264231],[117,144,72,-0.12579047866716112],[117,144,73,-0.14157834253538373],[117,144,74,-0.15233161438165768],[117,144,75,-0.172089231870116],[117,144,76,-0.19561448960447528],[117,144,77,-0.21008314996821986],[117,144,78,-0.2136538255456729],[117,144,79,-0.23395689499707295],[117,145,64,-0.06172289926564069],[117,145,65,-0.07390485831490493],[117,145,66,-0.08644535111180439],[117,145,67,-0.09865509675556214],[117,145,68,-0.10277382177189284],[117,145,69,-0.1063182399257247],[117,145,70,-0.11267056871620693],[117,145,71,-0.1188252062436939],[117,145,72,-0.12107959094075832],[117,145,73,-0.12734736945329486],[117,145,74,-0.13246696304696945],[117,145,75,-0.13660920234939172],[117,145,76,-0.14019535536402458],[117,145,77,-0.15597350552989864],[117,145,78,-0.1590944793361234],[117,145,79,-0.17892343668386537],[117,146,64,-0.06861595379298527],[117,146,65,-0.08120294731089048],[117,146,66,-0.0957210167764303],[117,146,67,-0.10457238946905367],[117,146,68,-0.10698594632880713],[117,146,69,-0.11181846343948668],[117,146,70,-0.11855898283381168],[117,146,71,-0.12591413137563168],[117,146,72,-0.12780730599418338],[117,146,73,-0.1316027208103693],[117,146,74,-0.1345764598661805],[117,146,75,-0.14331411466634295],[117,146,76,-0.14838604922889181],[117,146,77,-0.15542460584840048],[117,146,78,-0.16156924205256576],[117,146,79,-0.17759728154287097],[117,147,64,-0.06652191199102152],[117,147,65,-0.08085808007747342],[117,147,66,-0.09640865592531914],[117,147,67,-0.10477388845409151],[117,147,68,-0.10691969481859806],[117,147,69,-0.11372805191685692],[117,147,70,-0.11966214218431621],[117,147,71,-0.12354749217466625],[117,147,72,-0.12728205163669137],[117,147,73,-0.13199364951073697],[117,147,74,-0.13722447272914695],[117,147,75,-0.1446692940492012],[117,147,76,-0.14913691409015384],[117,147,77,-0.15559050574193967],[117,147,78,-0.1560498213431648],[117,147,79,-0.1271775845438241],[117,148,64,-0.04125618666731052],[117,148,65,-0.052175215618679466],[117,148,66,-0.06710122796701473],[117,148,67,-0.07441973091990402],[117,148,68,-0.07793651155031121],[117,148,69,-0.08051519436905981],[117,148,70,-0.08683447991046636],[117,148,71,-0.09176496160422604],[117,148,72,-0.09586299586110444],[117,148,73,-0.1028345484763895],[117,148,74,-0.10777215460887354],[117,148,75,-0.11413444678927691],[117,148,76,-0.11393425796194603],[117,148,77,-0.11686504251164755],[117,148,78,-0.09482137185220152],[117,148,79,-0.07192327140501595],[117,149,64,-0.04365002596751763],[117,149,65,-0.05573413155293372],[117,149,66,-0.06978608745082834],[117,149,67,-0.07650300534393305],[117,149,68,-0.07862827394311969],[117,149,69,-0.08176815582525412],[117,149,70,-0.08597748503042335],[117,149,71,-0.09153195461997898],[117,149,72,-0.0987288980910089],[117,149,73,-0.1063705934876707],[117,149,74,-0.10992251820890947],[117,149,75,-0.11505812636260096],[117,149,76,-0.11689204689506928],[117,149,77,-0.12003857692681934],[117,149,78,-0.09311713175144094],[117,149,79,-0.07670320287021434],[117,150,64,-0.04720046667172581],[117,150,65,-0.056980916001506336],[117,150,66,-0.07048078607275284],[117,150,67,-0.07670915342039497],[117,150,68,-0.07797373803826355],[117,150,69,-0.08270749760982052],[117,150,70,-0.08595860468533188],[117,150,71,-0.09052456033683577],[117,150,72,-0.09972285070558724],[117,150,73,-0.1098686132847759],[117,150,74,-0.11420290795440369],[117,150,75,-0.11729293812300566],[117,150,76,-0.1214750745473143],[117,150,77,-0.12023149571268316],[117,150,78,-0.09367567234692648],[117,150,79,-0.08221410717901981],[117,151,64,-0.04367364214884194],[117,151,65,-0.0546769599838214],[117,151,66,-0.06398934081117603],[117,151,67,-0.07434062905244923],[117,151,68,-0.07598038113152325],[117,151,69,-0.08117025622982565],[117,151,70,-0.08680953494569861],[117,151,71,-0.09026874930193424],[117,151,72,-0.10083782810619074],[117,151,73,-0.11243426599144683],[117,151,74,-0.12004068572791794],[117,151,75,-0.12448395134028059],[117,151,76,-0.13010095907649097],[117,151,77,-0.13448221390726212],[117,151,78,-0.10650272582812045],[117,151,79,-0.0927392475780778],[117,152,64,-0.04731212401456773],[117,152,65,-0.05973606501028623],[117,152,66,-0.06533825658268158],[117,152,67,-0.07443316958240809],[117,152,68,-0.07919505381544391],[117,152,69,-0.08261608061541369],[117,152,70,-0.08668369390886427],[117,152,71,-0.09202115838996165],[117,152,72,-0.1019157105432501],[117,152,73,-0.11279777925970502],[117,152,74,-0.12217146192605091],[117,152,75,-0.12740196168969894],[117,152,76,-0.13433478667997614],[117,152,77,-0.14032590973927894],[117,152,78,-0.10825187775786353],[117,152,79,-0.08839848547079088],[117,153,64,-0.05347555653947983],[117,153,65,-0.06500200709222917],[117,153,66,-0.067117730991371],[117,153,67,-0.07360416844752797],[117,153,68,-0.07768885186639789],[117,153,69,-0.08336530481277549],[117,153,70,-0.08685808574865389],[117,153,71,-0.09377476881380065],[117,153,72,-0.10254312613960383],[117,153,73,-0.1139282321821512],[117,153,74,-0.12396655963151523],[117,153,75,-0.13135882050529865],[117,153,76,-0.13811649939572604],[117,153,77,-0.14035227192073593],[117,153,78,-0.10233346790600738],[117,153,79,-0.08141685903289655],[117,154,64,-0.06381735336370607],[117,154,65,-0.07214736773536475],[117,154,66,-0.07495959897674709],[117,154,67,-0.08126638109060691],[117,154,68,-0.08507219336089969],[117,154,69,-0.08947491245923812],[117,154,70,-0.09226329715400991],[117,154,71,-0.09780443756686984],[117,154,72,-0.10662350554974162],[117,154,73,-0.11761489856406968],[117,154,74,-0.12728629650789602],[117,154,75,-0.13835801808000286],[117,154,76,-0.14633051459807714],[117,154,77,-0.14589893787805674],[117,154,78,-0.11518488194379332],[117,154,79,-0.08438471578539146],[117,155,64,-0.0662751431040619],[117,155,65,-0.0738706977671002],[117,155,66,-0.0779981112505174],[117,155,67,-0.08423538627549203],[117,155,68,-0.0882333912526731],[117,155,69,-0.09142469129303607],[117,155,70,-0.09099312192843809],[117,155,71,-0.09776498675307913],[117,155,72,-0.10644197779409956],[117,155,73,-0.1155143161937624],[117,155,74,-0.12824824806515042],[117,155,75,-0.14122210245146993],[117,155,76,-0.14833223366544981],[117,155,77,-0.1435019565270016],[117,155,78,-0.11034896258837412],[117,155,79,-0.08426812828039335],[117,156,64,-0.07086622510949672],[117,156,65,-0.08009765970825138],[117,156,66,-0.08445585285105804],[117,156,67,-0.09154115258927306],[117,156,68,-0.09370659339609669],[117,156,69,-0.09557183865843352],[117,156,70,-0.09676177404819922],[117,156,71,-0.10386525328928967],[117,156,72,-0.11079765542186484],[117,156,73,-0.12076772174054162],[117,156,74,-0.13346214232074036],[117,156,75,-0.14632014319868375],[117,156,76,-0.15171757902795044],[117,156,77,-0.14017845971294512],[117,156,78,-0.10506075807418946],[117,156,79,-0.07998910559715812],[117,157,64,-0.07040730558856163],[117,157,65,-0.0832259979366443],[117,157,66,-0.08787045321568757],[117,157,67,-0.095977678902721],[117,157,68,-0.09818677037699494],[117,157,69,-0.10072606081641716],[117,157,70,-0.10038614457687547],[117,157,71,-0.10924228649060186],[117,157,72,-0.11384452608487225],[117,157,73,-0.12214595397852279],[117,157,74,-0.13204172171685544],[117,157,75,-0.14415506485170212],[117,157,76,-0.1515526488374817],[117,157,77,-0.13327683356537487],[117,157,78,-0.09972727702608392],[117,157,79,-0.06706375538211637],[117,158,64,-0.06968741477420648],[117,158,65,-0.08168465777303996],[117,158,66,-0.08764793169119876],[117,158,67,-0.0962231655911408],[117,158,68,-0.09773499070754321],[117,158,69,-0.10106450463303998],[117,158,70,-0.10239602783231957],[117,158,71,-0.108903387365305],[117,158,72,-0.11534406686125032],[117,158,73,-0.12291043163400087],[117,158,74,-0.13155297855346776],[117,158,75,-0.14381415852068222],[117,158,76,-0.14877998093013894],[117,158,77,-0.11977906900177471],[117,158,78,-0.0844235375529225],[117,158,79,-0.059772811380880767],[117,159,64,-0.13421921791763136],[117,159,65,-0.142428364755797],[117,159,66,-0.14374961115816728],[117,159,67,-0.14568372521995374],[117,159,68,-0.1404636962842506],[117,159,69,-0.13634861648079866],[117,159,70,-0.13078979913068534],[117,159,71,-0.1280155067874486],[117,159,72,-0.12490161877726569],[117,159,73,-0.12486570341436136],[117,159,74,-0.12493305868167608],[117,159,75,-0.12756974302681695],[117,159,76,-0.125382756215692],[117,159,77,-0.09800216809873198],[117,159,78,-0.06922651529194383],[117,159,79,-0.05452218465297555],[117,160,64,-0.13220948448372868],[117,160,65,-0.14003104243977596],[117,160,66,-0.14258467036853173],[117,160,67,-0.14446576845432435],[117,160,68,-0.1413435787257628],[117,160,69,-0.13375752443836586],[117,160,70,-0.12972419762322734],[117,160,71,-0.12522288027610112],[117,160,72,-0.12427893377406538],[117,160,73,-0.12343193889782764],[117,160,74,-0.12302182713106669],[117,160,75,-0.12474223031431933],[117,160,76,-0.12269796253314516],[117,160,77,-0.09120389787957922],[117,160,78,-0.05853026008861684],[117,160,79,-0.05163611209552607],[117,161,64,-0.1312800864154072],[117,161,65,-0.13718218653301786],[117,161,66,-0.141372879812497],[117,161,67,-0.1440258929913857],[117,161,68,-0.14112305403935566],[117,161,69,-0.13263021731611094],[117,161,70,-0.12723535465125937],[117,161,71,-0.12272646629743969],[117,161,72,-0.12118853088269138],[117,161,73,-0.12219134453214787],[117,161,74,-0.12117343166964564],[117,161,75,-0.12209996188270832],[117,161,76,-0.118221241282668],[117,161,77,-0.08907117798170401],[117,161,78,-0.04804349228339739],[117,161,79,-0.04832445447036719],[117,162,64,-0.13487467012913454],[117,162,65,-0.1388310645275232],[117,162,66,-0.14520441301080098],[117,162,67,-0.14880803011109334],[117,162,68,-0.14469925096961606],[117,162,69,-0.13814311959321832],[117,162,70,-0.1301940009470905],[117,162,71,-0.12618038440740592],[117,162,72,-0.12261847487299704],[117,162,73,-0.1233742044896306],[117,162,74,-0.12404776162114481],[117,162,75,-0.12153304940406953],[117,162,76,-0.11928489915866769],[117,162,77,-0.1006962569652411],[117,162,78,-0.051982613573246426],[117,162,79,-0.056140646839226274],[117,163,64,-0.13342544839552667],[117,163,65,-0.1357220187019867],[117,163,66,-0.14067492878341228],[117,163,67,-0.14388782776964015],[117,163,68,-0.14027519717133513],[117,163,69,-0.13659207088412056],[117,163,70,-0.12834755446655602],[117,163,71,-0.12577895830393065],[117,163,72,-0.12050474432977404],[117,163,73,-0.121012274107171],[117,163,74,-0.11954350652457392],[117,163,75,-0.11700736965085123],[117,163,76,-0.11633180039990598],[117,163,77,-0.09810016099540839],[117,163,78,-0.06075111037438278],[117,163,79,-0.06343078719090643],[117,164,64,-0.10596708709768854],[117,164,65,-0.10949710696024995],[117,164,66,-0.1122048478644185],[117,164,67,-0.11576685423127514],[117,164,68,-0.11143242154639615],[117,164,69,-0.10888552419670094],[117,164,70,-0.10175050362502047],[117,164,71,-0.10116436238319267],[117,164,72,-0.09651964032327601],[117,164,73,-0.0958693085890793],[117,164,74,-0.09077137654634289],[117,164,75,-0.0894743500426886],[117,164,76,-0.08971451499209541],[117,164,77,-0.07504060248289067],[117,164,78,-0.05330406517205241],[117,164,79,-0.0527349017946424],[117,165,64,-0.09637451130800151],[117,165,65,-0.10201286255073566],[117,165,66,-0.1053396049458325],[117,165,67,-0.10845755010914468],[117,165,68,-0.10478744516251076],[117,165,69,-0.10281412795806157],[117,165,70,-0.09578024031676519],[117,165,71,-0.09429074136899544],[117,165,72,-0.09173949195563134],[117,165,73,-0.09025961765127395],[117,165,74,-0.0817663922585356],[117,165,75,-0.08060324599171172],[117,165,76,-0.0797025159969386],[117,165,77,-0.06551080726316473],[117,165,78,-0.051278224286480795],[117,165,79,-0.04863438121915341],[117,166,64,-0.09414802116757023],[117,166,65,-0.09990719868329531],[117,166,66,-0.10491176477684677],[117,166,67,-0.1042292712538265],[117,166,68,-0.10436187141593377],[117,166,69,-0.10030924047837259],[117,166,70,-0.09365866853523525],[117,166,71,-0.09003500255748867],[117,166,72,-0.08964315950984708],[117,166,73,-0.0853700985128242],[117,166,74,-0.0795748028246917],[117,166,75,-0.07529480178202261],[117,166,76,-0.07304806433749408],[117,166,77,-0.06299711893559873],[117,166,78,-0.055476750311164245],[117,166,79,-0.04948446318431237],[117,167,64,-0.08773252239531534],[117,167,65,-0.09527812326153084],[117,167,66,-0.09672635550486447],[117,167,67,-0.09656451328246557],[117,167,68,-0.0974729438403986],[117,167,69,-0.09241059395415019],[117,167,70,-0.0868946639118266],[117,167,71,-0.0884039986553135],[117,167,72,-0.0851017831767495],[117,167,73,-0.08166437015827813],[117,167,74,-0.0771850058115154],[117,167,75,-0.07426559089438092],[117,167,76,-0.06968547210481557],[117,167,77,-0.06819878412751906],[117,167,78,-0.05846100027323635],[117,167,79,-0.051858671531320955],[117,168,64,-0.08921685572888689],[117,168,65,-0.09559463188079631],[117,168,66,-0.09502862236420587],[117,168,67,-0.09312356635285454],[117,168,68,-0.09240797905305007],[117,168,69,-0.08794748445470821],[117,168,70,-0.0849945689798044],[117,168,71,-0.08569594245607923],[117,168,72,-0.08319019631632409],[117,168,73,-0.07903697755346625],[117,168,74,-0.07585746758103007],[117,168,75,-0.07153351824212054],[117,168,76,-0.0678555832821244],[117,168,77,-0.06680759451368172],[117,168,78,-0.05612612680080286],[117,168,79,-0.05257024328920157],[117,169,64,-0.10022984277203824],[117,169,65,-0.10280162173384375],[117,169,66,-0.10085732582134678],[117,169,67,-0.09580499069180354],[117,169,68,-0.09472490176809133],[117,169,69,-0.09235440652735397],[117,169,70,-0.0881693746346204],[117,169,71,-0.0856700817753541],[117,169,72,-0.0850763106619652],[117,169,73,-0.08090160318440129],[117,169,74,-0.07711045600113367],[117,169,75,-0.0731087660535509],[117,169,76,-0.07240578544532392],[117,169,77,-0.06982300438502653],[117,169,78,-0.058575494484547436],[117,169,79,-0.05049993246105519],[117,170,64,-0.10420648393329385],[117,170,65,-0.10628670461123152],[117,170,66,-0.10480600830033661],[117,170,67,-0.10069016018711943],[117,170,68,-0.09934016124249677],[117,170,69,-0.09765608381651558],[117,170,70,-0.09395474369613943],[117,170,71,-0.08901205590766546],[117,170,72,-0.08848359221525239],[117,170,73,-0.08338689876923774],[117,170,74,-0.0826456307052638],[117,170,75,-0.07940772727171627],[117,170,76,-0.07493706551531838],[117,170,77,-0.07058043789687245],[117,170,78,-0.06113268512212976],[117,170,79,-0.054072278550477554],[117,171,64,-0.10291688949018574],[117,171,65,-0.1050779454597697],[117,171,66,-0.10356970215668238],[117,171,67,-0.10219968981428204],[117,171,68,-0.1019991430563805],[117,171,69,-0.09947791298763492],[117,171,70,-0.09589847393932249],[117,171,71,-0.09188433566938686],[117,171,72,-0.08963106942847598],[117,171,73,-0.08554698941660852],[117,171,74,-0.08162884689518422],[117,171,75,-0.07849278450500793],[117,171,76,-0.07232390350900995],[117,171,77,-0.06721517575381394],[117,171,78,-0.0570575076729481],[117,171,79,-0.05144969404265111],[117,172,64,-0.1016909985055701],[117,172,65,-0.1067465402603151],[117,172,66,-0.1040008941475882],[117,172,67,-0.10385939216165897],[117,172,68,-0.10477414939806846],[117,172,69,-0.10248925007882626],[117,172,70,-0.09948837074276715],[117,172,71,-0.09839077690734126],[117,172,72,-0.0937843258821475],[117,172,73,-0.08879474972201717],[117,172,74,-0.08600306669891461],[117,172,75,-0.08004561166976146],[117,172,76,-0.07420099661621465],[117,172,77,-0.06998394987365515],[117,172,78,-0.05427411749251927],[117,172,79,-0.0456373704143188],[117,173,64,-0.10040189151799114],[117,173,65,-0.10272350293635256],[117,173,66,-0.10191645807178594],[117,173,67,-0.10433584993399521],[117,173,68,-0.10234807594319302],[117,173,69,-0.10348281982445139],[117,173,70,-0.09734496266634318],[117,173,71,-0.0960231229094838],[117,173,72,-0.09360518592655069],[117,173,73,-0.08763900758276796],[117,173,74,-0.0842761594860195],[117,173,75,-0.08088823678850846],[117,173,76,-0.07497009608053169],[117,173,77,-0.07080174248935053],[117,173,78,-0.05599588662048899],[117,173,79,-0.04388238699299245],[117,174,64,-0.09724517154655118],[117,174,65,-0.09944814592266984],[117,174,66,-0.10035420991170453],[117,174,67,-0.10062428955511439],[117,174,68,-0.10200983177876183],[117,174,69,-0.10334603736955073],[117,174,70,-0.09816896265935991],[117,174,71,-0.09675744189055263],[117,174,72,-0.09087167165693331],[117,174,73,-0.08560492066834516],[117,174,74,-0.08390697842745395],[117,174,75,-0.07941136838977828],[117,174,76,-0.07256313072765727],[117,174,77,-0.07125456246650659],[117,174,78,-0.05810045308615222],[117,174,79,-0.04260515025514527],[117,175,64,-0.0887889067886919],[117,175,65,-0.09286167472051339],[117,175,66,-0.09318759989597594],[117,175,67,-0.09328971579891557],[117,175,68,-0.09640298361501053],[117,175,69,-0.09971915777949136],[117,175,70,-0.09679266648834853],[117,175,71,-0.09510545363437461],[117,175,72,-0.08829334805883499],[117,175,73,-0.08285397867378978],[117,175,74,-0.08263669390742653],[117,175,75,-0.07941808912645498],[117,175,76,-0.07296567819446662],[117,175,77,-0.07576539965744797],[117,175,78,-0.08043541800325471],[117,175,79,-0.07371859787152092],[117,176,64,-0.086309063628188],[117,176,65,-0.09023705365929192],[117,176,66,-0.09020308176004194],[117,176,67,-0.0889303412962762],[117,176,68,-0.09158395447215043],[117,176,69,-0.09683946932377553],[117,176,70,-0.09628770909335697],[117,176,71,-0.09256458114317613],[117,176,72,-0.08735217833791656],[117,176,73,-0.08152639134556688],[117,176,74,-0.07906204643269374],[117,176,75,-0.07889954991061318],[117,176,76,-0.0761253309123494],[117,176,77,-0.07682169585901512],[117,176,78,-0.0796009356180878],[117,176,79,-0.07115024943333748],[117,177,64,-0.09172455367984489],[117,177,65,-0.09215729772960558],[117,177,66,-0.0907035555456201],[117,177,67,-0.09158492664763139],[117,177,68,-0.09402205643103832],[117,177,69,-0.09931527070732225],[117,177,70,-0.09854808142283146],[117,177,71,-0.0979584506969746],[117,177,72,-0.08996415542848427],[117,177,73,-0.08261902469624086],[117,177,74,-0.07931552947823142],[117,177,75,-0.08086803197959262],[117,177,76,-0.08109619572094365],[117,177,77,-0.08117199413631791],[117,177,78,-0.081814810461976],[117,177,79,-0.07506722482753492],[117,178,64,-0.09303759316395108],[117,178,65,-0.09443204274457101],[117,178,66,-0.09084389157578798],[117,178,67,-0.09251376090981792],[117,178,68,-0.09779759170026077],[117,178,69,-0.102773014867061],[117,178,70,-0.10441006911454352],[117,178,71,-0.10218214320869826],[117,178,72,-0.09286522395600652],[117,178,73,-0.08401466819355712],[117,178,74,-0.08267731261670587],[117,178,75,-0.08280098390863645],[117,178,76,-0.08452897618186062],[117,178,77,-0.08594667867582054],[117,178,78,-0.08384171732949232],[117,178,79,-0.0798878066686622],[117,179,64,-0.08912974916465169],[117,179,65,-0.09244643995003332],[117,179,66,-0.08865405216293167],[117,179,67,-0.0908121050112488],[117,179,68,-0.09699951169964366],[117,179,69,-0.10218317219935],[117,179,70,-0.1052489645986061],[117,179,71,-0.10089705343045524],[117,179,72,-0.08946148474527886],[117,179,73,-0.08060060150850454],[117,179,74,-0.07861127493761097],[117,179,75,-0.0822975801228305],[117,179,76,-0.08450129225947459],[117,179,77,-0.08630812722514475],[117,179,78,-0.08540591685885159],[117,179,79,-0.07842580908876419],[117,180,64,-0.07490620721244401],[117,180,65,-0.07890633663743549],[117,180,66,-0.07903070814594232],[117,180,67,-0.08248630043839966],[117,180,68,-0.09289696781373666],[117,180,69,-0.09861216451774955],[117,180,70,-0.10179916155163944],[117,180,71,-0.09972198364331752],[117,180,72,-0.0874177609093464],[117,180,73,-0.07739554680828631],[117,180,74,-0.07522963181699938],[117,180,75,-0.08060947163992317],[117,180,76,-0.08271348651525301],[117,180,77,-0.08391500039891817],[117,180,78,-0.08373761403340033],[117,180,79,-0.07908804632502524],[117,181,64,-0.06395685510752563],[117,181,65,-0.0658748887937519],[117,181,66,-0.06957243079559532],[117,181,67,-0.07611957838830569],[117,181,68,-0.08305045905183683],[117,181,69,-0.09106359896681726],[117,181,70,-0.09210177895870551],[117,181,71,-0.09334668042042531],[117,181,72,-0.08396611975106788],[117,181,73,-0.07612914868825627],[117,181,74,-0.07184034010121447],[117,181,75,-0.07771659223494262],[117,181,76,-0.09048047075219257],[117,181,77,-0.0949029862470861],[117,181,78,-0.10794946713622493],[117,181,79,-0.10913719447680334],[117,182,64,-0.06492931873666856],[117,182,65,-0.0639520628459652],[117,182,66,-0.07135406577806183],[117,182,67,-0.07771665337590032],[117,182,68,-0.08204050035820892],[117,182,69,-0.08993451375579736],[117,182,70,-0.09175337335430489],[117,182,71,-0.09098185815572118],[117,182,72,-0.0842709892679886],[117,182,73,-0.07630225189708646],[117,182,74,-0.07283333802534009],[117,182,75,-0.07798101436954505],[117,182,76,-0.09013914171338029],[117,182,77,-0.10023065618481411],[117,182,78,-0.11462052906011352],[117,182,79,-0.11599152475945074],[117,183,64,-0.05945537900885796],[117,183,65,-0.061320019694978],[117,183,66,-0.06768198384215031],[117,183,67,-0.07453822063974466],[117,183,68,-0.07987539588166898],[117,183,69,-0.08687425576478626],[117,183,70,-0.0882349464911571],[117,183,71,-0.08764649794691153],[117,183,72,-0.08133319459571799],[117,183,73,-0.07401671714083934],[117,183,74,-0.07434710628102584],[117,183,75,-0.07499136043335823],[117,183,76,-0.08839749913265112],[117,183,77,-0.10081926918289624],[117,183,78,-0.11102671287701332],[117,183,79,-0.11311366702946615],[117,184,64,-0.061579733847776916],[117,184,65,-0.0626310861800715],[117,184,66,-0.06934733639372502],[117,184,67,-0.07466830413093418],[117,184,68,-0.07935121657588953],[117,184,69,-0.08519911645637798],[117,184,70,-0.08858357741685811],[117,184,71,-0.08742095519523496],[117,184,72,-0.07978769531871278],[117,184,73,-0.07516186225937715],[117,184,74,-0.07367938460080078],[117,184,75,-0.07340452164530394],[117,184,76,-0.0889918554392061],[117,184,77,-0.10249431815881539],[117,184,78,-0.10961274929039716],[117,184,79,-0.11285764576318875],[117,185,64,-0.06236417206214477],[117,185,65,-0.06320291274218452],[117,185,66,-0.06913556429020898],[117,185,67,-0.07404717064953785],[117,185,68,-0.07982092032538027],[117,185,69,-0.08619305724346402],[117,185,70,-0.08700522954701675],[117,185,71,-0.08706236300934055],[117,185,72,-0.08206461029652998],[117,185,73,-0.07545910775763848],[117,185,74,-0.07550038895372757],[117,185,75,-0.07227470282249604],[117,185,76,-0.08431817687797111],[117,185,77,-0.09709895966957163],[117,185,78,-0.10304599285139592],[117,185,79,-0.10654872679904323],[117,186,64,-0.07100570124668755],[117,186,65,-0.07096333790239748],[117,186,66,-0.07405120155543195],[117,186,67,-0.08073571255457546],[117,186,68,-0.0847120572181465],[117,186,69,-0.09231886783834653],[117,186,70,-0.09349030193048721],[117,186,71,-0.09311531975160361],[117,186,72,-0.08641915356926502],[117,186,73,-0.08037371675285462],[117,186,74,-0.07824504735674212],[117,186,75,-0.07535022887025954],[117,186,76,-0.07911476732833683],[117,186,77,-0.09108026393300339],[117,186,78,-0.09191227729996279],[117,186,79,-0.09518649764024817],[117,187,64,-0.07492067389098969],[117,187,65,-0.07482271465294989],[117,187,66,-0.07664064623140127],[117,187,67,-0.08434493096392325],[117,187,68,-0.08666963781191446],[117,187,69,-0.09298900712625768],[117,187,70,-0.09562581880295633],[117,187,71,-0.09486559112416372],[117,187,72,-0.08871089225672413],[117,187,73,-0.08104255174936499],[117,187,74,-0.07981673728074831],[117,187,75,-0.07480040172572272],[117,187,76,-0.07716771805724591],[117,187,77,-0.09516811548378783],[117,187,78,-0.09866716804160479],[117,187,79,-0.1010879935809881],[117,188,64,-0.09058077901436735],[117,188,65,-0.08964356893391871],[117,188,66,-0.08885863413046324],[117,188,67,-0.0919227655229149],[117,188,68,-0.08863503508959061],[117,188,69,-0.0917618823929627],[117,188,70,-0.09268100065655617],[117,188,71,-0.08913774478520449],[117,188,72,-0.08433110195198033],[117,188,73,-0.08015360098221694],[117,188,74,-0.07676817503404867],[117,188,75,-0.07118820555073309],[117,188,76,-0.06967121205846605],[117,188,77,-0.08911469880477407],[117,188,78,-0.09951325313211926],[117,188,79,-0.10406022237710963],[117,189,64,-0.09363857035316808],[117,189,65,-0.09320572367597132],[117,189,66,-0.09707011516862907],[117,189,67,-0.10094911508391904],[117,189,68,-0.09892339619443796],[117,189,69,-0.09952363089573578],[117,189,70,-0.1008139717931892],[117,189,71,-0.0938269810742185],[117,189,72,-0.0847994146150349],[117,189,73,-0.07909064920764507],[117,189,74,-0.07620408341584756],[117,189,75,-0.07123080339077009],[117,189,76,-0.06707635532968415],[117,189,77,-0.08096471795234841],[117,189,78,-0.09243178121478549],[117,189,79,-0.0953604289403692],[117,190,64,-0.0956216145652416],[117,190,65,-0.09743168851008036],[117,190,66,-0.10011942626018792],[117,190,67,-0.1050702779517597],[117,190,68,-0.10366644424725621],[117,190,69,-0.1016041193336744],[117,190,70,-0.10051769571441978],[117,190,71,-0.09473537137573232],[117,190,72,-0.0855077851182938],[117,190,73,-0.08138669045412725],[117,190,74,-0.07557668463679715],[117,190,75,-0.07197967238126755],[117,190,76,-0.06412959710737755],[117,190,77,-0.0835356115372551],[117,190,78,-0.0923494279965054],[117,190,79,-0.09787018355364631],[117,191,64,-0.09636907388039813],[117,191,65,-0.09905943648788078],[117,191,66,-0.10051443019369706],[117,191,67,-0.10414569889423061],[117,191,68,-0.10352956983145586],[117,191,69,-0.09870064557856217],[117,191,70,-0.09973856246270144],[117,191,71,-0.09478931648608822],[117,191,72,-0.08536222936063267],[117,191,73,-0.0812140388937329],[117,191,74,-0.0743318012332219],[117,191,75,-0.07134046496795064],[117,191,76,-0.06531030746754289],[117,191,77,-0.08155168243241871],[117,191,78,-0.08790000951945565],[117,191,79,-0.09398819449556352],[117,192,64,-0.09925254008872719],[117,192,65,-0.1011500811050168],[117,192,66,-0.10051697636244827],[117,192,67,-0.10218170053766452],[117,192,68,-0.10128494739090146],[117,192,69,-0.100812577996148],[117,192,70,-0.09657730936507379],[117,192,71,-0.09346110383396453],[117,192,72,-0.08833488068021524],[117,192,73,-0.08010186497414527],[117,192,74,-0.07544246300579244],[117,192,75,-0.0700403129130285],[117,192,76,-0.06518083387520612],[117,192,77,-0.08338082562773406],[117,192,78,-0.08952742024938065],[117,192,79,-0.09661537286053865],[117,193,64,-0.10201918162696068],[117,193,65,-0.10002552890571298],[117,193,66,-0.09498865049149834],[117,193,67,-0.09349559321225256],[117,193,68,-0.09316540671537925],[117,193,69,-0.09268601511574376],[117,193,70,-0.09006378343091254],[117,193,71,-0.09081189311311078],[117,193,72,-0.0884995077573228],[117,193,73,-0.08233475679218724],[117,193,74,-0.07916050400360015],[117,193,75,-0.0720533997931942],[117,193,76,-0.07031676615466247],[117,193,77,-0.0788325564876343],[117,193,78,-0.08482501762414557],[117,193,79,-0.09075494693791877],[117,194,64,-0.10631837001507254],[117,194,65,-0.10362600757460716],[117,194,66,-0.1018572426790925],[117,194,67,-0.097073659230381],[117,194,68,-0.0980472793264201],[117,194,69,-0.0993009889020195],[117,194,70,-0.09443327164004046],[117,194,71,-0.09365333280498722],[117,194,72,-0.09153299736182587],[117,194,73,-0.0835635274473497],[117,194,74,-0.07986471450810617],[117,194,75,-0.07545102099956506],[117,194,76,-0.07042451876285168],[117,194,77,-0.0815837427238234],[117,194,78,-0.08785555743151666],[117,194,79,-0.09441552371710496],[117,195,64,-0.10932845593212889],[117,195,65,-0.10401158061298127],[117,195,66,-0.10215205330957701],[117,195,67,-0.09711022512889823],[117,195,68,-0.09652781502618306],[117,195,69,-0.09624857384119523],[117,195,70,-0.09328348345605016],[117,195,71,-0.0907060163785454],[117,195,72,-0.08915343324117553],[117,195,73,-0.08333301868452829],[117,195,74,-0.07970203285129643],[117,195,75,-0.07477614231721422],[117,195,76,-0.06847017399722849],[117,195,77,-0.08589461614877811],[117,195,78,-0.09088574146245995],[117,195,79,-0.09762964175013489],[117,196,64,-0.10132922622834996],[117,196,65,-0.09813799618002635],[117,196,66,-0.09350266698961031],[117,196,67,-0.08624516439724728],[117,196,68,-0.0864765063299637],[117,196,69,-0.08311410879088885],[117,196,70,-0.07892967874223925],[117,196,71,-0.07864117511198365],[117,196,72,-0.07959150422152583],[117,196,73,-0.07629790494989443],[117,196,74,-0.07148187639406761],[117,196,75,-0.06531788529401925],[117,196,76,-0.05808200666374537],[117,196,77,-0.08009589804263549],[117,196,78,-0.08110480885247093],[117,196,79,-0.08899089407821212],[117,197,64,-0.10205758028934751],[117,197,65,-0.09918716787173756],[117,197,66,-0.09343186191508503],[117,197,67,-0.08704175057463116],[117,197,68,-0.085624188885307],[117,197,69,-0.08026242079676087],[117,197,70,-0.07384479203314895],[117,197,71,-0.07311441986249334],[117,197,72,-0.073284991064339],[117,197,73,-0.07338467424802729],[117,197,74,-0.07129287749122787],[117,197,75,-0.062587639315006],[117,197,76,-0.05467920124891285],[117,197,77,-0.07182868086085265],[117,197,78,-0.07187623650451162],[117,197,79,-0.07885264134123493],[117,198,64,-0.10230097384937023],[117,198,65,-0.09767211851072052],[117,198,66,-0.09188883785299592],[117,198,67,-0.08497513047839934],[117,198,68,-0.08505494304325978],[117,198,69,-0.07557756581337319],[117,198,70,-0.06801557672250892],[117,198,71,-0.07164770555109637],[117,198,72,-0.07064600041168928],[117,198,73,-0.07076917064450625],[117,198,74,-0.0674367706976843],[117,198,75,-0.060281708916388066],[117,198,76,-0.054766285534687306],[117,198,77,-0.06540839874940228],[117,198,78,-0.06653803464811439],[117,198,79,-0.07432739308562862],[117,199,64,-0.10070953690869153],[117,199,65,-0.09370606419531416],[117,199,66,-0.09015358043695977],[117,199,67,-0.08455073792338806],[117,199,68,-0.0807600385411814],[117,199,69,-0.07351432410482467],[117,199,70,-0.06740930379302204],[117,199,71,-0.06911868005937141],[117,199,72,-0.069801202485932],[117,199,73,-0.0705780808525971],[117,199,74,-0.06485438309592531],[117,199,75,-0.05737427250105058],[117,199,76,-0.05318040975191637],[117,199,77,-0.060023592680594165],[117,199,78,-0.06202379640062389],[117,199,79,-0.07025595886866176],[117,200,64,-0.10283876219294244],[117,200,65,-0.09310211806085186],[117,200,66,-0.08963473921126415],[117,200,67,-0.08594632475637828],[117,200,68,-0.07712065230653925],[117,200,69,-0.07359572733279322],[117,200,70,-0.06865866096105003],[117,200,71,-0.06723908960481537],[117,200,72,-0.07070725539460454],[117,200,73,-0.06944245548951894],[117,200,74,-0.06394808504594356],[117,200,75,-0.05556155289416533],[117,200,76,-0.04979641321913436],[117,200,77,-0.05804103962716095],[117,200,78,-0.06307863000282314],[117,200,79,-0.06882203336383116],[117,201,64,-0.09341758023523701],[117,201,65,-0.08559235316332343],[117,201,66,-0.08316354135229308],[117,201,67,-0.07917987029458012],[117,201,68,-0.06785449279531611],[117,201,69,-0.0634863456424658],[117,201,70,-0.06096879670704654],[117,201,71,-0.06132067568796365],[117,201,72,-0.06568247301901346],[117,201,73,-0.06430245651819663],[117,201,74,-0.059029471082349856],[117,201,75,-0.0504247676491584],[117,201,76,-0.04749419043025793],[117,201,77,-0.05504688805613142],[117,201,78,-0.06103948316061057],[117,201,79,-0.06439969662531539],[117,202,64,-0.10087923786829048],[117,202,65,-0.09504898925034447],[117,202,66,-0.08936873810685116],[117,202,67,-0.08226106654547327],[117,202,68,-0.07516222246053894],[117,202,69,-0.06796767541607573],[117,202,70,-0.06777160780421068],[117,202,71,-0.06608823112407489],[117,202,72,-0.07005436002627105],[117,202,73,-0.06784215703909806],[117,202,74,-0.0622807530791152],[117,202,75,-0.05433364881720333],[117,202,76,-0.04955837125334304],[117,202,77,-0.05842087108705603],[117,202,78,-0.06108326402871935],[117,202,79,-0.06366433997110169],[117,203,64,-0.10404775888918566],[117,203,65,-0.09816412767771247],[117,203,66,-0.09043210801897586],[117,203,67,-0.08317123003284461],[117,203,68,-0.07821943981954539],[117,203,69,-0.06895275020152736],[117,203,70,-0.06775755752696727],[117,203,71,-0.067822259543597],[117,203,72,-0.0717022392057957],[117,203,73,-0.06653210119793251],[117,203,74,-0.062009920041352494],[117,203,75,-0.054677808587369627],[117,203,76,-0.05530954503929136],[117,203,77,-0.06596287598250311],[117,203,78,-0.06660531770254158],[117,203,79,-0.07102829689610149],[117,204,64,-0.10668147325692019],[117,204,65,-0.10099223268936763],[117,204,66,-0.08885964092178192],[117,204,67,-0.08075671490702478],[117,204,68,-0.07207929493738005],[117,204,69,-0.06121369263346138],[117,204,70,-0.05691542789956491],[117,204,71,-0.05559174228223561],[117,204,72,-0.05879764219287019],[117,204,73,-0.05453458126547327],[117,204,74,-0.045996193766277976],[117,204,75,-0.041319078810458695],[117,204,76,-0.05423855758743652],[117,204,77,-0.06536829795617392],[117,204,78,-0.06464324154037521],[117,204,79,-0.07209705667529323],[117,205,64,-0.11844395500286303],[117,205,65,-0.11264436257261505],[117,205,66,-0.10185957001407557],[117,205,67,-0.09377121358752874],[117,205,68,-0.08312989296504653],[117,205,69,-0.07467587102556054],[117,205,70,-0.06773645491785829],[117,205,71,-0.06496726852184317],[117,205,72,-0.060971356919287505],[117,205,73,-0.054275980922019205],[117,205,74,-0.04828188316350677],[117,205,75,-0.042999909347477876],[117,205,76,-0.04630129459415269],[117,205,77,-0.05851961212750184],[117,205,78,-0.05826622828868927],[117,205,79,-0.06474029907308099],[117,206,64,-0.12194568578077862],[117,206,65,-0.11562464601167316],[117,206,66,-0.10474595062777388],[117,206,67,-0.09527072547153127],[117,206,68,-0.08342788975255051],[117,206,69,-0.07451681694975826],[117,206,70,-0.06756967346249401],[117,206,71,-0.06524437665311209],[117,206,72,-0.05976629622392944],[117,206,73,-0.051028539684169705],[117,206,74,-0.04884682937299525],[117,206,75,-0.0445717786098376],[117,206,76,-0.0491797539852185],[117,206,77,-0.06119337646397093],[117,206,78,-0.061826634917010286],[117,206,79,-0.06821419696219855],[117,207,64,-0.12764353155110392],[117,207,65,-0.11863602148447858],[117,207,66,-0.10704809601322497],[117,207,67,-0.09623709825889881],[117,207,68,-0.08545465263030298],[117,207,69,-0.07685896382161923],[117,207,70,-0.0683268002229668],[117,207,71,-0.06336242249828879],[117,207,72,-0.058980366094279355],[117,207,73,-0.05079963637318509],[117,207,74,-0.04797475149932869],[117,207,75,-0.04157154450926135],[117,207,76,-0.038460521992417646],[117,207,77,-0.04773837263499391],[117,207,78,-0.051833245966667794],[117,207,79,-0.0577167458781429],[117,208,64,-0.13289719131909225],[117,208,65,-0.12281115895080805],[117,208,66,-0.1101872565184098],[117,208,67,-0.09759437478481586],[117,208,68,-0.08507219978582133],[117,208,69,-0.07623758966339866],[117,208,70,-0.06751825597918312],[117,208,71,-0.061959922897273506],[117,208,72,-0.057113338583439546],[117,208,73,-0.04963199819406609],[117,208,74,-0.045994962476768396],[117,208,75,-0.03971901871108369],[117,208,76,-0.03689287401300476],[117,208,77,-0.04292464098136278],[117,208,78,-0.04698355129801307],[117,208,79,-0.06267603906736366],[117,209,64,-0.13579734878127836],[117,209,65,-0.12554060178091989],[117,209,66,-0.113926028451492],[117,209,67,-0.0995394341361356],[117,209,68,-0.0846813031273246],[117,209,69,-0.07359450655877567],[117,209,70,-0.06236608308363319],[117,209,71,-0.05799128222489764],[117,209,72,-0.05393634215031936],[117,209,73,-0.04687070840327805],[117,209,74,-0.044020868280863754],[117,209,75,-0.038429892946358006],[117,209,76,-0.03463708652156659],[117,209,77,-0.04344173239165424],[117,209,78,-0.04686840438905031],[117,209,79,-0.06372466944036606],[117,210,64,-0.14322287132884348],[117,210,65,-0.1327122978134795],[117,210,66,-0.11795486556835072],[117,210,67,-0.10407487972222869],[117,210,68,-0.08986717172828336],[117,210,69,-0.07480079949327424],[117,210,70,-0.0654209162416263],[117,210,71,-0.05907047875746914],[117,210,72,-0.05275890003301617],[117,210,73,-0.049023006196064214],[117,210,74,-0.043469168503343654],[117,210,75,-0.040420200519243096],[117,210,76,-0.03484122099840097],[117,210,77,-0.04436046794433886],[117,210,78,-0.0483947289695037],[117,210,79,-0.06617579713243299],[117,211,64,-0.1460059078802391],[117,211,65,-0.13345722330093007],[117,211,66,-0.11705928288524811],[117,211,67,-0.10276353837120233],[117,211,68,-0.08863931287192581],[117,211,69,-0.07336531000620526],[117,211,70,-0.06437892425434008],[117,211,71,-0.058228915032184955],[117,211,72,-0.05077017098719211],[117,211,73,-0.04730707531830765],[117,211,74,-0.040960953440815386],[117,211,75,-0.037601050180342474],[117,211,76,-0.03241585408129845],[117,211,77,-0.04988655443629688],[117,211,78,-0.05521188414086383],[117,211,79,-0.07374913521944437],[117,212,64,-0.12564947019816425],[117,212,65,-0.11858042206832047],[117,212,66,-0.1053341771191982],[117,212,67,-0.0980054045626429],[117,212,68,-0.09232796340517617],[117,212,69,-0.0830466523893227],[117,212,70,-0.0776443849806007],[117,212,71,-0.07337162836099383],[117,212,72,-0.06732276421223582],[117,212,73,-0.06252834985543924],[117,212,74,-0.05490249529451978],[117,212,75,-0.05015441309395368],[117,212,76,-0.044759054467430455],[117,212,77,-0.05779666304974849],[117,212,78,-0.05890276629842447],[117,212,79,-0.0736705196153761],[117,213,64,-0.12963568322897506],[117,213,65,-0.11667003919910646],[117,213,66,-0.10053232467143591],[117,213,67,-0.08808782379247915],[117,213,68,-0.08339867244905771],[117,213,69,-0.07475047170783107],[117,213,70,-0.0716158336304554],[117,213,71,-0.07260703165102533],[117,213,72,-0.06721771192793054],[117,213,73,-0.06269004325203113],[117,213,74,-0.05591962838204914],[117,213,75,-0.0530700355988383],[117,213,76,-0.0544678189797591],[117,213,77,-0.06612938822037749],[117,213,78,-0.0692014758827996],[117,213,79,-0.08309614801425494],[117,214,64,-0.12801780872071195],[117,214,65,-0.1153617992430282],[117,214,66,-0.10233062828608595],[117,214,67,-0.0890554331245764],[117,214,68,-0.08444482484241486],[117,214,69,-0.07573518302594641],[117,214,70,-0.07212899432206454],[117,214,71,-0.07121880839505115],[117,214,72,-0.06701997041540064],[117,214,73,-0.06321058717536249],[117,214,74,-0.055797510060442035],[117,214,75,-0.05334336041515801],[117,214,76,-0.057216609037598266],[117,214,77,-0.06834475641447404],[117,214,78,-0.07165660191118833],[117,214,79,-0.08864940708837253],[117,215,64,-0.12829828383728892],[117,215,65,-0.11741756751982929],[117,215,66,-0.10288829279434822],[117,215,67,-0.09286644090404264],[117,215,68,-0.08753248729799545],[117,215,69,-0.07997896170392912],[117,215,70,-0.07416692502562822],[117,215,71,-0.07092912236024304],[117,215,72,-0.06691602342536696],[117,215,73,-0.0625187282694614],[117,215,74,-0.0576149968749143],[117,215,75,-0.053191890441880794],[117,215,76,-0.05376252944799453],[117,215,77,-0.0617266971482172],[117,215,78,-0.06896127314652344],[117,215,79,-0.08490416547145628],[117,216,64,-0.12761243697709712],[117,216,65,-0.11619976208663423],[117,216,66,-0.10241541063758834],[117,216,67,-0.09292043732883534],[117,216,68,-0.08858968259532075],[117,216,69,-0.08175921204591144],[117,216,70,-0.07508152626687525],[117,216,71,-0.07442974688301901],[117,216,72,-0.06833980625318126],[117,216,73,-0.06345880617229342],[117,216,74,-0.05672903484530559],[117,216,75,-0.05142096416485926],[117,216,76,-0.04594031310245269],[117,216,77,-0.06340795946889595],[117,216,78,-0.07194180410699871],[117,216,79,-0.08659924539466848],[117,217,64,-0.12250495204120881],[117,217,65,-0.11480555332887224],[117,217,66,-0.10387673861408415],[117,217,67,-0.0970449285315259],[117,217,68,-0.09331415728145703],[117,217,69,-0.08977684613530619],[117,217,70,-0.0820200882496876],[117,217,71,-0.07810682040301492],[117,217,72,-0.06872276062605556],[117,217,73,-0.06000539065018844],[117,217,74,-0.05391842200079757],[117,217,75,-0.04619832706942458],[117,217,76,-0.039695049977280315],[117,217,77,-0.0670485258754033],[117,217,78,-0.07517371465739456],[117,217,79,-0.08374408242642944],[117,218,64,-0.12673693768051758],[117,218,65,-0.1210489535437788],[117,218,66,-0.10915915509692586],[117,218,67,-0.10254320005693522],[117,218,68,-0.09824960101428487],[117,218,69,-0.09618341150282286],[117,218,70,-0.08628375570424333],[117,218,71,-0.07979441388112622],[117,218,72,-0.06937918008475462],[117,218,73,-0.06287359076407316],[117,218,74,-0.0558828698589684],[117,218,75,-0.0480875318707736],[117,218,76,-0.03808678194325332],[117,218,77,-0.06555625117485858],[117,218,78,-0.07726722395953955],[117,218,79,-0.08030363549868347],[117,219,64,-0.12369245841195256],[117,219,65,-0.12065301311739994],[117,219,66,-0.10994209582582361],[117,219,67,-0.10470604131859243],[117,219,68,-0.10184979722721675],[117,219,69,-0.09499402593941705],[117,219,70,-0.08719974660663005],[117,219,71,-0.07687143229938216],[117,219,72,-0.06873429540638755],[117,219,73,-0.062266638117644664],[117,219,74,-0.05514467204393389],[117,219,75,-0.046303869055611804],[117,219,76,-0.04506875723758459],[117,219,77,-0.07192560125898177],[117,219,78,-0.09029756285417645],[117,219,79,-0.08803418367645201],[117,220,64,-0.12093552443428078],[117,220,65,-0.11629357678231532],[117,220,66,-0.10501401960551557],[117,220,67,-0.09866476828015129],[117,220,68,-0.0932565319512147],[117,220,69,-0.08199262874343101],[117,220,70,-0.07294784199909878],[117,220,71,-0.06059288444705229],[117,220,72,-0.053418443234230645],[117,220,73,-0.047947726476541164],[117,220,74,-0.03908710196622674],[117,220,75,-0.029870067184735484],[117,220,76,-0.04209044775680434],[117,220,77,-0.07126549236981043],[117,220,78,-0.10035357048385385],[117,220,79,-0.10347070973252502],[117,221,64,-0.12052040273879497],[117,221,65,-0.11335694614500251],[117,221,66,-0.10422956860390058],[117,221,67,-0.0963082583665529],[117,221,68,-0.09149159828685395],[117,221,69,-0.07887590578610255],[117,221,70,-0.0685876590703108],[117,221,71,-0.06072324138472627],[117,221,72,-0.051052718471520195],[117,221,73,-0.04557933757560423],[117,221,74,-0.03731183192361452],[117,221,75,-0.056807901870425545],[117,221,76,-0.08533781408749411],[117,221,77,-0.10600025762810932],[117,221,78,-0.11778330546297258],[117,221,79,-0.1062476853302448],[117,222,64,-0.11522431949002437],[117,222,65,-0.11142539277846053],[117,222,66,-0.10255412588228026],[117,222,67,-0.095653670547528],[117,222,68,-0.0878370807024762],[117,222,69,-0.07609677845987474],[117,222,70,-0.06656393568314424],[117,222,71,-0.06003464749032024],[117,222,72,-0.04936799818891282],[117,222,73,-0.043064417054821016],[117,222,74,-0.04239299585431125],[117,222,75,-0.07049880772346512],[117,222,76,-0.09233831656487085],[117,222,77,-0.11909237523121481],[117,222,78,-0.11684678197397182],[117,222,79,-0.10788672848528283],[117,223,64,-0.11777025873993394],[117,223,65,-0.11162712716025698],[117,223,66,-0.10506281429180711],[117,223,67,-0.0997662433003121],[117,223,68,-0.09142504730914353],[117,223,69,-0.07539217213071252],[117,223,70,-0.06753675096501158],[117,223,71,-0.05847896257150092],[117,223,72,-0.047550549673862436],[117,223,73,-0.040679876669106815],[117,223,74,-0.05824713520142942],[117,223,75,-0.09720253093812725],[117,223,76,-0.1211974486309719],[117,223,77,-0.12774021884442288],[117,223,78,-0.11483776233146553],[117,223,79,-0.10484719794284006],[117,224,64,-0.11477868124901938],[117,224,65,-0.10963268883290381],[117,224,66,-0.10763000790818827],[117,224,67,-0.09888205094062795],[117,224,68,-0.0890049849708991],[117,224,69,-0.07570842917138822],[117,224,70,-0.06609924080029476],[117,224,71,-0.05721507604701294],[117,224,72,-0.04628643650898141],[117,224,73,-0.03665507620085061],[117,224,74,-0.07420135393864534],[117,224,75,-0.10472614370113176],[117,224,76,-0.13030709486477537],[117,224,77,-0.1287970658120886],[117,224,78,-0.11901910707612827],[117,224,79,-0.10765373790179329],[117,225,64,-0.12418695748687028],[117,225,65,-0.11407240758585316],[117,225,66,-0.10764676039405494],[117,225,67,-0.09625429147683533],[117,225,68,-0.0818804030070648],[117,225,69,-0.07031435753521066],[117,225,70,-0.061662424511399444],[117,225,71,-0.05396605890140137],[117,225,72,-0.04517148646219838],[117,225,73,-0.04258908100631847],[117,225,74,-0.09136573282302093],[117,225,75,-0.11395216288094531],[117,225,76,-0.13829839492281207],[117,225,77,-0.13225264951647103],[117,225,78,-0.12381633799810732],[117,225,79,-0.1113145971284168],[117,226,64,-0.1290424024761709],[117,226,65,-0.12106259488691694],[117,226,66,-0.11104111147536788],[117,226,67,-0.09814328583218143],[117,226,68,-0.08604484682927321],[117,226,69,-0.07219003744033287],[117,226,70,-0.0616663930752639],[117,226,71,-0.05347155731474107],[117,226,72,-0.047359207859131114],[117,226,73,-0.040362224545482744],[117,226,74,-0.08551142645434605],[117,226,75,-0.1139152260806175],[117,226,76,-0.13544325731094115],[117,226,77,-0.13469524071269337],[117,226,78,-0.12618386448982183],[117,226,79,-0.1164015252421011],[117,227,64,-0.12981534335364467],[117,227,65,-0.12248057211339494],[117,227,66,-0.1121875836205794],[117,227,67,-0.09958097898856476],[117,227,68,-0.08715912895698168],[117,227,69,-0.07120409751578519],[117,227,70,-0.05822205138919907],[117,227,71,-0.05117819829968333],[117,227,72,-0.043567700227790065],[117,227,73,-0.03814948491909312],[117,227,74,-0.09267468443373772],[117,227,75,-0.12834637657906597],[117,227,76,-0.14960816225023993],[117,227,77,-0.14729343408243598],[117,227,78,-0.13717043232510673],[117,227,79,-0.12847828878924722],[117,228,64,-0.1178104912442369],[117,228,65,-0.10958165122088498],[117,228,66,-0.10265493519672932],[117,228,67,-0.09028802080297801],[117,228,68,-0.07625664134678307],[117,228,69,-0.05930531156537396],[117,228,70,-0.04481396501215443],[117,228,71,-0.03471547476676279],[117,228,72,-0.028161213962386897],[117,228,73,-0.022081017575639864],[117,228,74,-0.08755749779667045],[117,228,75,-0.12495585019128835],[117,228,76,-0.1436778961569441],[117,228,77,-0.14835472394738666],[117,228,78,-0.1367304125712164],[117,228,79,-0.12827904810507526],[117,229,64,-0.10740172714879165],[117,229,65,-0.10451130467296849],[117,229,66,-0.10066925403491032],[117,229,67,-0.09159215973661816],[117,229,68,-0.07914961675056763],[117,229,69,-0.06237852108039525],[117,229,70,-0.0483622669143568],[117,229,71,-0.03630869491631739],[117,229,72,-0.0268685575983601],[117,229,73,-0.0631387431061406],[117,229,74,-0.15067817574954634],[117,229,75,-0.16863943105218282],[117,229,76,-0.16114896591653702],[117,229,77,-0.1495266372999755],[117,229,78,-0.14004475600887137],[117,229,79,-0.1305188018295171],[117,230,64,-0.10654897451949868],[117,230,65,-0.10354332051233699],[117,230,66,-0.10110301567425103],[117,230,67,-0.0925723751729784],[117,230,68,-0.07728398518587584],[117,230,69,-0.06376252003791298],[117,230,70,-0.05095107716314447],[117,230,71,-0.03918945678094526],[117,230,72,-0.02897008284221579],[117,230,73,-0.062020361408494006],[117,230,74,-0.1569254157646372],[117,230,75,-0.17533487018523455],[117,230,76,-0.1665622411200222],[117,230,77,-0.15894549555512527],[117,230,78,-0.14779584183344316],[117,230,79,-0.13789581326293476],[117,231,64,-0.11320119293731024],[117,231,65,-0.1102145330507094],[117,231,66,-0.10562655515154926],[117,231,67,-0.09712259003825638],[117,231,68,-0.08175822541543183],[117,231,69,-0.06725194070484866],[117,231,70,-0.053967240504284315],[117,231,71,-0.04162196076816968],[117,231,72,-0.03268528547977953],[117,231,73,-0.03632470681051529],[117,231,74,-0.10554161715859701],[117,231,75,-0.14166147823289077],[117,231,76,-0.16133194949870622],[117,231,77,-0.1580162767094739],[117,231,78,-0.14620433543866712],[117,231,79,-0.1347004752486044],[117,232,64,-0.1142614496661319],[117,232,65,-0.11022683558666856],[117,232,66,-0.10505419718766676],[117,232,67,-0.09635909968901302],[117,232,68,-0.08111375079535117],[117,232,69,-0.0662325454295108],[117,232,70,-0.0530493143471205],[117,232,71,-0.04239337432146245],[117,232,72,-0.03364783814937046],[117,232,73,-0.031960897126722954],[117,232,74,-0.09284987545472835],[117,232,75,-0.13438220380044283],[117,232,76,-0.1608870556056484],[117,232,77,-0.15935429891982503],[117,232,78,-0.14516188458798204],[117,232,79,-0.13521820512843175],[117,233,64,-0.118764512361384],[117,233,65,-0.11095251755079819],[117,233,66,-0.10586969174190561],[117,233,67,-0.09487756822677636],[117,233,68,-0.08212797018797462],[117,233,69,-0.06713952082451545],[117,233,70,-0.05393407587474976],[117,233,71,-0.04188829136394466],[117,233,72,-0.03331343186002578],[117,233,73,-0.035713286053486275],[117,233,74,-0.08214631463912675],[117,233,75,-0.12316856600313128],[117,233,76,-0.16862272854609744],[117,233,77,-0.16121744097791635],[117,233,78,-0.15065274640985157],[117,233,79,-0.14014018018147573],[117,234,64,-0.1266408672910296],[117,234,65,-0.11909443100058555],[117,234,66,-0.10912099151536259],[117,234,67,-0.09755436838804162],[117,234,68,-0.08469554436921406],[117,234,69,-0.07311941837602112],[117,234,70,-0.057574589288908753],[117,234,71,-0.04512667337347275],[117,234,72,-0.03533797965177681],[117,234,73,-0.018997933835758596],[117,234,74,-0.05527507007373009],[117,234,75,-0.09424959228614603],[117,234,76,-0.14959133931418594],[117,234,77,-0.15225084097875646],[117,234,78,-0.14326345570713275],[117,234,79,-0.13459417974090074],[117,235,64,-0.1306266148679282],[117,235,65,-0.12400847078491453],[117,235,66,-0.11179353660135066],[117,235,67,-0.09958446303888009],[117,235,68,-0.0872653119238153],[117,235,69,-0.07694978017116853],[117,235,70,-0.059435089542875526],[117,235,71,-0.04650185380973261],[117,235,72,-0.03496438120277319],[117,235,73,-0.01806723535137078],[117,235,74,-0.007918257222996009],[117,235,75,8.374357319214515E-4],[117,235,76,-0.0413847402830049],[117,235,77,-0.1186625456069267],[117,235,78,-0.1515633041780286],[117,235,79,-0.1446391142711582],[117,236,64,-0.15152404949954978],[117,236,65,-0.1454836591145201],[117,236,66,-0.13046601051501355],[117,236,67,-0.11895645023926221],[117,236,68,-0.10585087400075721],[117,236,69,-0.0957625273200544],[117,236,70,-0.07873487680685885],[117,236,71,-0.0661352256763545],[117,236,72,-0.05249371650762323],[117,236,73,-0.038497130153295034],[117,236,74,-0.026511436626326407],[117,236,75,-0.017992445270387708],[117,236,76,-0.05549228742618831],[117,236,77,-0.1223969553355458],[117,236,78,-0.1605551442965565],[117,236,79,-0.15125888924661118],[117,237,64,-0.15543180065420653],[117,237,65,-0.14549457388917023],[117,237,66,-0.1279893214380553],[117,237,67,-0.11502588339065244],[117,237,68,-0.1003232639716545],[117,237,69,-0.08901763656139994],[117,237,70,-0.0738226343586651],[117,237,71,-0.06000392796005524],[117,237,72,-0.04901277509935281],[117,237,73,-0.036735838929802776],[117,237,74,-0.0263271809183014],[117,237,75,-0.05059668030854659],[117,237,76,-0.08551669136556653],[117,237,77,-0.15138423649428606],[117,237,78,-0.15779756787126126],[117,237,79,-0.15129548475225446],[117,238,64,-0.15564953619312705],[117,238,65,-0.14468555159085927],[117,238,66,-0.12845486653119972],[117,238,67,-0.11543431784148746],[117,238,68,-0.1017795953117429],[117,238,69,-0.08953877974266268],[117,238,70,-0.07347995867026887],[117,238,71,-0.06059980038725769],[117,238,72,-0.05015393194442661],[117,238,73,-0.03841735684853302],[117,238,74,-0.04242617720689597],[117,238,75,-0.07621430890716124],[117,238,76,-0.1159931574478083],[117,238,77,-0.16129849254160247],[117,238,78,-0.15293680288542813],[117,238,79,-0.14745606292734614],[117,239,64,-0.15930960638551872],[117,239,65,-0.14995607655534615],[117,239,66,-0.13539806305504862],[117,239,67,-0.1227061001558351],[117,239,68,-0.10963524419526656],[117,239,69,-0.0940229411916167],[117,239,70,-0.07732563690697136],[117,239,71,-0.0646189881066901],[117,239,72,-0.052705924498173365],[117,239,73,-0.04281946217755546],[117,239,74,-0.03480431316950757],[117,239,75,-0.059546557144470116],[117,239,76,-0.0961450295169252],[117,239,77,-0.13659018676913617],[117,239,78,-0.1485572663821601],[117,239,79,-0.14117811810741462],[117,240,64,-0.15922319427225035],[117,240,65,-0.14671872510658807],[117,240,66,-0.13576298493334887],[117,240,67,-0.12133798113220116],[117,240,68,-0.10976121498198657],[117,240,69,-0.09359084614103617],[117,240,70,-0.0780546095384834],[117,240,71,-0.06610785876060389],[117,240,72,-0.05282229565291113],[117,240,73,-0.04504158185853752],[117,240,74,-0.03455358565249816],[117,240,75,-0.05046996295560198],[117,240,76,-0.08629296037511437],[117,240,77,-0.12977486393845594],[117,240,78,-0.14857269964011893],[117,240,79,-0.14209012490691483],[117,241,64,-0.15723599725095402],[117,241,65,-0.14846597009935875],[117,241,66,-0.13925558119595177],[117,241,67,-0.12653083678838897],[117,241,68,-0.1142413820428094],[117,241,69,-0.09857099232551028],[117,241,70,-0.08530158314842741],[117,241,71,-0.0719660929884706],[117,241,72,-0.057769494569956656],[117,241,73,-0.05006971163389593],[117,241,74,-0.03777770738328055],[117,241,75,-0.022586614850259076],[117,241,76,-0.006118125469786559],[117,241,77,0.00811568279811177],[117,241,78,0.0230044832487981],[117,241,79,-0.06520670025239232],[117,242,64,-0.16250825305487854],[117,242,65,-0.15196287987534585],[117,242,66,-0.1420433283094207],[117,242,67,-0.12668100795958398],[117,242,68,-0.11485234866069996],[117,242,69,-0.10319897338959999],[117,242,70,-0.09081293951349466],[117,242,71,-0.07368309743309918],[117,242,72,-0.06327853390641826],[117,242,73,-0.05481924586190928],[117,242,74,-0.040225266493031306],[117,242,75,-0.026481759710715383],[117,242,76,-0.010655466239987435],[117,242,77,0.0027260597079073606],[117,242,78,0.01845796746097976],[117,242,79,-0.06846284641433388],[117,243,64,-0.1622842353822634],[117,243,65,-0.15077502037282864],[117,243,66,-0.1366984819929264],[117,243,67,-0.1270378936295049],[117,243,68,-0.11569525322448526],[117,243,69,-0.10112317693004572],[117,243,70,-0.09148632007472679],[117,243,71,-0.0743238235926044],[117,243,72,-0.06428220197029634],[117,243,73,-0.0539201553861732],[117,243,74,-0.03944483343985938],[117,243,75,-0.02574637830729906],[117,243,76,-0.013197039712050038],[117,243,77,-8.675307921277853E-4],[117,243,78,0.01753768055917207],[117,243,79,-0.08274713665224102],[117,244,64,-0.14854862996008927],[117,244,65,-0.13601991884466863],[117,244,66,-0.1208168513504651],[117,244,67,-0.11474030010743781],[117,244,68,-0.10106278338142918],[117,244,69,-0.08650372405020341],[117,244,70,-0.07788331348037596],[117,244,71,-0.06394998057194305],[117,244,72,-0.05058874617348314],[117,244,73,-0.03774989550360321],[117,244,74,-0.02639667459746506],[117,244,75,-0.010863058888275115],[117,244,76,-7.361439368967493E-4],[117,244,77,0.012834867017498836],[117,244,78,0.02759619402147516],[117,244,79,-0.059903585201187756],[117,245,64,-0.14566122148202448],[117,245,65,-0.13374076432757545],[117,245,66,-0.11998167341475556],[117,245,67,-0.11074642249056395],[117,245,68,-0.09819877826046007],[117,245,69,-0.08396008442415835],[117,245,70,-0.07567632820635854],[117,245,71,-0.063924086538243],[117,245,72,-0.05059799550127708],[117,245,73,-0.03691293207247994],[117,245,74,-0.024007442379671437],[117,245,75,-0.013252190057057203],[117,245,76,-0.001692162190617949],[117,245,77,0.012021944951708857],[117,245,78,0.025790285849719985],[117,245,79,-0.04957885709775513],[117,246,64,-0.14253605501805033],[117,246,65,-0.13100769836562184],[117,246,66,-0.11692393078768408],[117,246,67,-0.10607295363164264],[117,246,68,-0.09613231165646073],[117,246,69,-0.08203952632665186],[117,246,70,-0.07477411939694766],[117,246,71,-0.061022163820514064],[117,246,72,-0.0474675445487678],[117,246,73,-0.03457934203897894],[117,246,74,-0.025221847937477684],[117,246,75,-0.014387944585206314],[117,246,76,-0.0027359487216988415],[117,246,77,0.01077451594243653],[117,246,78,0.018051598089904527],[117,246,79,-0.07243410253711328],[117,247,64,-0.14499119326073404],[117,247,65,-0.13255204391705505],[117,247,66,-0.11946621040941001],[117,247,67,-0.10566532063000368],[117,247,68,-0.09656508631993509],[117,247,69,-0.08182109536428754],[117,247,70,-0.07320878263435093],[117,247,71,-0.0599931186568166],[117,247,72,-0.04709197047088576],[117,247,73,-0.03531752399855836],[117,247,74,-0.025653381607692635],[117,247,75,-0.014159831401310899],[117,247,76,-5.986955571628677E-4],[117,247,77,0.01173688565010332],[117,247,78,0.02531926223646873],[117,247,79,-0.05872326456966838],[117,248,64,-0.14002533163898437],[117,248,65,-0.12578132046915702],[117,248,66,-0.11548615388679996],[117,248,67,-0.1041763541386538],[117,248,68,-0.09310107776799408],[117,248,69,-0.07959447275908492],[117,248,70,-0.06961094886146495],[117,248,71,-0.05582060460381952],[117,248,72,-0.045221801913091206],[117,248,73,-0.03450157227585984],[117,248,74,-0.02788896150130154],[117,248,75,-0.01454455932991186],[117,248,76,-1.3349953057729957E-4],[117,248,77,0.011382578062500898],[117,248,78,0.025115968471057168],[117,248,79,-0.061436793833612474],[117,249,64,-0.13428050848260714],[117,249,65,-0.11866631804148638],[117,249,66,-0.10554234804980285],[117,249,67,-0.09289618344274238],[117,249,68,-0.08162486126681447],[117,249,69,-0.06871780798886475],[117,249,70,-0.057936486147646155],[117,249,71,-0.045081297552333977],[117,249,72,-0.03442872191135827],[117,249,73,-0.028016798809657975],[117,249,74,-0.01918667921555646],[117,249,75,-0.005053496003827623],[117,249,76,0.006439441807998325],[117,249,77,0.013128474065417575],[117,249,78,0.0038158127376651495],[117,249,79,-0.10826396408826294],[117,250,64,-0.13602585183168306],[117,250,65,-0.12189633724499074],[117,250,66,-0.10663731413975311],[117,250,67,-0.09426689499351838],[117,250,68,-0.08470574397802681],[117,250,69,-0.07011811288243261],[117,250,70,-0.06098248516767042],[117,250,71,-0.046746974526383434],[117,250,72,-0.034762741955863874],[117,250,73,-0.028706646770443683],[117,250,74,-0.018934148717862517],[117,250,75,-0.0076962211603210234],[117,250,76,0.00398897733591376],[117,250,77,0.008933954741382031],[117,250,78,-0.033665908599522884],[117,250,79,-0.08934069261244125],[117,251,64,-0.13507157595887564],[117,251,65,-0.11938516277855811],[117,251,66,-0.1048130520373856],[117,251,67,-0.09021318760297542],[117,251,68,-0.08239390829232493],[117,251,69,-0.07125798001802718],[117,251,70,-0.05911411614236304],[117,251,71,-0.047550468533098286],[117,251,72,-0.03461392492544597],[117,251,73,-0.02403649573913967],[117,251,74,-0.014877525598194621],[117,251,75,-0.006953372236857561],[117,251,76,0.001327422102542608],[117,251,77,0.011423335711897853],[117,251,78,-0.03221830884601764],[117,251,79,-0.0934327270797126],[117,252,64,-0.12559639160478697],[117,252,65,-0.10860883832744112],[117,252,66,-0.09182257205242109],[117,252,67,-0.07955660098556532],[117,252,68,-0.06973613856447969],[117,252,69,-0.057596764186032046],[117,252,70,-0.0470562880634743],[117,252,71,-0.036150562981665524],[117,252,72,-0.021640352729506776],[117,252,73,-0.009843073989552087],[117,252,74,1.9219164729827876E-4],[117,252,75,0.00675469260281418],[117,252,76,0.011718633630325201],[117,252,77,0.020987917633135428],[117,252,78,-0.02987977622540522],[117,252,79,-0.09224167364031795],[117,253,64,-0.12793201775920626],[117,253,65,-0.10989190923443895],[117,253,66,-0.09753212652246843],[117,253,67,-0.08896806169612397],[117,253,68,-0.08106729466310653],[117,253,69,-0.06928140895000512],[117,253,70,-0.055459620728850606],[117,253,71,-0.045997018549733384],[117,253,72,-0.032577417805318906],[117,253,73,-0.02026815213338143],[117,253,74,-0.008274211114815896],[117,253,75,0.001260786936021413],[117,253,76,0.005391728202773449],[117,253,77,0.02075107461630346],[117,253,78,0.004793245058160027],[117,253,79,-0.03515796442721153],[117,254,64,-0.04276943840331797],[117,254,65,-0.0344971789431025],[117,254,66,-0.02834272946042095],[117,254,67,-0.027654181128784594],[117,254,68,-0.02788357574982038],[117,254,69,-0.022171455398696027],[117,254,70,-0.019399376635987786],[117,254,71,-0.01767085168959899],[117,254,72,-0.016315784330084182],[117,254,73,-0.011792577162819826],[117,254,74,-0.00847991421721371],[117,254,75,-0.007697837379093783],[117,254,76,-0.010866533212844295],[117,254,77,-0.003960521378663373],[117,254,78,-0.013982817608391422],[117,254,79,-0.042104261941323454],[117,255,64,-0.040999406181847546],[117,255,65,-0.03357015020948757],[117,255,66,-0.02813290057397809],[117,255,67,-0.027009186166968777],[117,255,68,-0.026599505062789797],[117,255,69,-0.02243741170326742],[117,255,70,-0.017169416249887492],[117,255,71,-0.016704228734138626],[117,255,72,-0.019130080711049074],[117,255,73,-0.01407924664615684],[117,255,74,-0.010116295514379717],[117,255,75,-0.008624627030861254],[117,255,76,-0.0101735036738025],[117,255,77,-0.002916816994146726],[117,255,78,-0.004595577197542729],[117,255,79,-0.032968525054541876],[117,256,64,-0.039166738217395275],[117,256,65,-0.03262859290101021],[117,256,66,-0.026569718670362383],[117,256,67,-0.024944052904983957],[117,256,68,-0.026627964644451607],[117,256,69,-0.0238961657508127],[117,256,70,-0.016429832937212382],[117,256,71,-0.017628231975097525],[117,256,72,-0.01927227895003568],[117,256,73,-0.01359208049779348],[117,256,74,-0.010037048773855181],[117,256,75,-0.009981218509684711],[117,256,76,-0.010541076522799273],[117,256,77,-0.005126963903449883],[117,256,78,-0.007652004971855702],[117,256,79,-0.0375287737377749],[117,257,64,-0.03609155136096266],[117,257,65,-0.03196099142993197],[117,257,66,-0.027909949553641247],[117,257,67,-0.025851751151518276],[117,257,68,-0.026429776249163234],[117,257,69,-0.021583975252341084],[117,257,70,-0.017280952844780123],[117,257,71,-0.01703439311618371],[117,257,72,-0.017417945351432915],[117,257,73,-0.01395033518809359],[117,257,74,-0.009344004578322976],[117,257,75,-0.008667289021047686],[117,257,76,-0.009944619644231378],[117,257,77,-0.007613530079635414],[117,257,78,-0.036170049504527554],[117,257,79,-0.07500353394073835],[117,258,64,-0.04110877320743583],[117,258,65,-0.03724508740932256],[117,258,66,-0.032279014381516105],[117,258,67,-0.030046187998590046],[117,258,68,-0.029019605023172454],[117,258,69,-0.02303313102433019],[117,258,70,-0.018666800812705733],[117,258,71,-0.01924942201186021],[117,258,72,-0.017941845795616224],[117,258,73,-0.014835514618132845],[117,258,74,-0.013366915255103737],[117,258,75,-0.011989358609046277],[117,258,76,-0.01131188175998267],[117,258,77,-0.008964068939147665],[117,258,78,-0.037657302396261916],[117,258,79,-0.08438632737729247],[117,259,64,-0.04193805793494252],[117,259,65,-0.035427983173585684],[117,259,66,-0.03221543725853471],[117,259,67,-0.02835167257967476],[117,259,68,-0.02652879560458099],[117,259,69,-0.020509447806748404],[117,259,70,-0.020791995660727952],[117,259,71,-0.01868131896912123],[117,259,72,-0.017435355162371366],[117,259,73,-0.014988861060929004],[117,259,74,-0.014651683123255405],[117,259,75,-0.011650928497226709],[117,259,76,-0.010968556266013452],[117,259,77,-0.00838942434020605],[117,259,78,-0.015932633472835904],[117,259,79,-0.08338242157605366],[117,260,64,-0.12303651586567788],[117,260,65,-0.11914274904799564],[117,260,66,-0.11784798929045097],[117,260,67,-0.11429144520783435],[117,260,68,-0.11408280765204507],[117,260,69,-0.1140771661417285],[117,260,70,-0.1166902543247298],[117,260,71,-0.11903222907977698],[117,260,72,-0.1180702410872702],[117,260,73,-0.11411844176844739],[117,260,74,-0.11429297469019634],[117,260,75,-0.11083256225749458],[117,260,76,-0.1078282318756618],[117,260,77,-0.10481219810605891],[117,260,78,-0.10722603404509044],[117,260,79,-0.13853168433433283],[117,261,64,-0.11925307871792815],[117,261,65,-0.11848616003873319],[117,261,66,-0.11902426441084786],[117,261,67,-0.11763078011555123],[117,261,68,-0.11643252065945965],[117,261,69,-0.11402703077197775],[117,261,70,-0.11541702967035332],[117,261,71,-0.11476095561295568],[117,261,72,-0.1102309099955787],[117,261,73,-0.10481079086943579],[117,261,74,-0.10251544841495103],[117,261,75,-0.1021620627569931],[117,261,76,-0.10066986755847644],[117,261,77,-0.10227286084061205],[117,261,78,-0.1253262002015555],[117,261,79,-0.15398586062564085],[117,262,64,-0.1250225706245946],[117,262,65,-0.12358777876620812],[117,262,66,-0.12297048986780684],[117,262,67,-0.12150632027722832],[117,262,68,-0.1182302647562459],[117,262,69,-0.11541873719650084],[117,262,70,-0.11590501357591781],[117,262,71,-0.11394149135370113],[117,262,72,-0.10901388337824197],[117,262,73,-0.10453941464727921],[117,262,74,-0.103139284202819],[117,262,75,-0.10313378812123092],[117,262,76,-0.10059031370075712],[117,262,77,-0.10155902087603078],[117,262,78,-0.14096541614297398],[117,262,79,-0.17832177267246568],[117,263,64,-0.12290399140511654],[117,263,65,-0.12037019666345052],[117,263,66,-0.12082128484979278],[117,263,67,-0.11729182604091182],[117,263,68,-0.11500225556623833],[117,263,69,-0.11307740154176295],[117,263,70,-0.11343294272110184],[117,263,71,-0.10957688815907393],[117,263,72,-0.106900443858341],[117,263,73,-0.10211597311493877],[117,263,74,-0.10371408310804976],[117,263,75,-0.1037747724786092],[117,263,76,-0.0988611015404907],[117,263,77,-0.1020674778662279],[117,263,78,-0.1415488334774166],[117,263,79,-0.17979814786957626],[117,264,64,-0.1171984374495713],[117,264,65,-0.11858219272941348],[117,264,66,-0.11731386774725869],[117,264,67,-0.11220287145841538],[117,264,68,-0.11166884845050126],[117,264,69,-0.1103413154725258],[117,264,70,-0.1100011906078889],[117,264,71,-0.10886767656751598],[117,264,72,-0.10410464356399324],[117,264,73,-0.10063641132955575],[117,264,74,-0.10496424291519983],[117,264,75,-0.10433627984719618],[117,264,76,-0.09991345891886613],[117,264,77,-0.10029653747289742],[117,264,78,-0.1447729375945608],[117,264,79,-0.18713759457184298],[117,265,64,-0.11609441738429993],[117,265,65,-0.11379152097007814],[117,265,66,-0.108930162784603],[117,265,67,-0.10170994891858257],[117,265,68,-0.09932437402211039],[117,265,69,-0.10114901993416445],[117,265,70,-0.1027009580958329],[117,265,71,-0.10582540413096535],[117,265,72,-0.10860683260185762],[117,265,73,-0.1112076701347753],[117,265,74,-0.12601611426875223],[117,265,75,-0.18623105182092356],[117,265,76,-0.20658089102889376],[117,265,77,-0.20718581751169418],[117,265,78,-0.2173336587835209],[117,265,79,-0.2065437340022302],[117,266,64,-0.11478869272198886],[117,266,65,-0.11201632026093605],[117,266,66,-0.11006739891714257],[117,266,67,-0.10058944669788618],[117,266,68,-0.09888528067819775],[117,266,69,-0.10369740359250036],[117,266,70,-0.10501370741693576],[117,266,71,-0.10479877526859405],[117,266,72,-0.11035325179635878],[117,266,73,-0.11354024143671257],[117,266,74,-0.11834621456136288],[117,266,75,-0.1835047399648189],[117,266,76,-0.20670403568473766],[117,266,77,-0.21438485041562033],[117,266,78,-0.22442778306284245],[117,266,79,-0.21149308661457838],[117,267,64,-0.11034955212135703],[117,267,65,-0.10783424531766822],[117,267,66,-0.10597044090013927],[117,267,67,-0.09758633071462033],[117,267,68,-0.0943420185038352],[117,267,69,-0.09977928309103465],[117,267,70,-0.10222169266064782],[117,267,71,-0.10434996283612992],[117,267,72,-0.10838004333546968],[117,267,73,-0.11320628136863956],[117,267,74,-0.1223274165862088],[117,267,75,-0.19075782865405425],[117,267,76,-0.213796704920943],[117,267,77,-0.22816926376984326],[117,267,78,-0.22951800058169744],[117,267,79,-0.21630249942972485],[117,268,64,-0.10095949858312608],[117,268,65,-0.0965505855574931],[117,268,66,-0.09457264160723881],[117,268,67,-0.08422715299087397],[117,268,68,-0.07940730922139493],[117,268,69,-0.08237752281344991],[117,268,70,-0.0848366930269196],[117,268,71,-0.08723498456855719],[117,268,72,-0.08929031048928092],[117,268,73,-0.09673334394352186],[117,268,74,-0.10835192662403072],[117,268,75,-0.15189576892622417],[117,268,76,-0.1875602935262048],[117,268,77,-0.20824815536794822],[117,268,78,-0.21262393560432885],[117,268,79,-0.2009664665435059],[117,269,64,-0.0972505946863747],[117,269,65,-0.09381694077087703],[117,269,66,-0.0886588123864394],[117,269,67,-0.0806538316303098],[117,269,68,-0.07840752778003907],[117,269,69,-0.07901075108921701],[117,269,70,-0.07825228173147492],[117,269,71,-0.08108439232118808],[117,269,72,-0.08496616780998557],[117,269,73,-0.09300042811384217],[117,269,74,-0.11200765256052353],[117,269,75,-0.14342700253142032],[117,269,76,-0.1914420134713311],[117,269,77,-0.207714549069628],[117,269,78,-0.21026800201315474],[117,269,79,-0.20002433220710333],[117,270,64,-0.09868025370158234],[117,270,65,-0.0955956245793386],[117,270,66,-0.08992408141878448],[117,270,67,-0.084440606813518],[117,270,68,-0.07969577582764782],[117,270,69,-0.07901031165090633],[117,270,70,-0.0756370542848301],[117,270,71,-0.07889958613200135],[117,270,72,-0.08239632014831913],[117,270,73,-0.0930881921770816],[117,270,74,-0.10621715719786004],[117,270,75,-0.13258387331593308],[117,270,76,-0.1785383687787503],[117,270,77,-0.19866810245506755],[117,270,78,-0.19081558233674845],[117,270,79,-0.18298899726942458],[117,271,64,-0.09482209611978956],[117,271,65,-0.08957898053393175],[117,271,66,-0.08421487051356445],[117,271,67,-0.08190766078638685],[117,271,68,-0.0781027983042332],[117,271,69,-0.07695010994968418],[117,271,70,-0.07241371341892396],[117,271,71,-0.07577784861595943],[117,271,72,-0.07960595691489843],[117,271,73,-0.0912994534391586],[117,271,74,-0.09521860851198405],[117,271,75,-0.12172179624451025],[117,271,76,-0.16872430419082252],[117,271,77,-0.19659495528691648],[117,271,78,-0.18629586916356464],[117,271,79,-0.17794313348972038],[117,272,64,-0.09379933325258835],[117,272,65,-0.08505812359168188],[117,272,66,-0.08032737327754913],[117,272,67,-0.07878193900022978],[117,272,68,-0.07652238200394608],[117,272,69,-0.07321071711369954],[117,272,70,-0.06990135409570988],[117,272,71,-0.07031943276455105],[117,272,72,-0.07476380919882793],[117,272,73,-0.08696928003146928],[117,272,74,-0.09213865174330965],[117,272,75,-0.12282175505360457],[117,272,76,-0.1682101296298889],[117,272,77,-0.19536023749024112],[117,272,78,-0.1852078974198262],[117,272,79,-0.17323040977416723],[117,273,64,-0.09182280491411432],[117,273,65,-0.08087632008080199],[117,273,66,-0.07481591361674021],[117,273,67,-0.07048853664893716],[117,273,68,-0.06760714930591574],[117,273,69,-0.06483994391999827],[117,273,70,-0.06325848268344261],[117,273,71,-0.0608961556052452],[117,273,72,-0.06982215807702181],[117,273,73,-0.08158958326688949],[117,273,74,-0.08785509360122298],[117,273,75,-0.0947839611595182],[117,273,76,-0.09803873191067962],[117,273,77,-0.09055545970090798],[117,273,78,-0.07993123294794938],[117,273,79,-0.07145776476128507],[117,274,64,-0.08896890115039288],[117,274,65,-0.08350360589785805],[117,274,66,-0.07641915161041084],[117,274,67,-0.07051787484926672],[117,274,68,-0.0656036194709585],[117,274,69,-0.061868252358195784],[117,274,70,-0.06291303503244977],[117,274,71,-0.061032436151730596],[117,274,72,-0.06891728112352269],[117,274,73,-0.08056484412268224],[117,274,74,-0.08626059656885254],[117,274,75,-0.09288743040636407],[117,274,76,-0.09436435942306488],[117,274,77,-0.0839175774546509],[117,274,78,-0.07452559753976112],[117,274,79,-0.06650936544060615],[117,275,64,-0.08700986765837465],[117,275,65,-0.08175813538743223],[117,275,66,-0.07268100024404481],[117,275,67,-0.06410563134784723],[117,275,68,-0.06037875755912405],[117,275,69,-0.06005644023984133],[117,275,70,-0.05952640403367172],[117,275,71,-0.06022747544855299],[117,275,72,-0.06826769324755709],[117,275,73,-0.07584805011719177],[117,275,74,-0.08223643713170069],[117,275,75,-0.0948133747369641],[117,275,76,-0.0977034486582558],[117,275,77,-0.08638680417502989],[117,275,78,-0.07680597205315837],[117,275,79,-0.0668469375677451],[117,276,64,-0.07407582829511843],[117,276,65,-0.06728721653673281],[117,276,66,-0.05917249923208634],[117,276,67,-0.05079733815366477],[117,276,68,-0.044865754835305444],[117,276,69,-0.04353818313414408],[117,276,70,-0.04377572252487488],[117,276,71,-0.045018525146892696],[117,276,72,-0.0513536476650002],[117,276,73,-0.05831153584465994],[117,276,74,-0.06352330628250621],[117,276,75,-0.09336440246869535],[117,276,76,-0.10074344622680864],[117,276,77,-0.09369541420666469],[117,276,78,-0.0808293873202035],[117,276,79,-0.06932071449833432],[117,277,64,-0.06592237050351074],[117,277,65,-0.06319296040221684],[117,277,66,-0.05933262670843757],[117,277,67,-0.05556032068286598],[117,277,68,-0.051094355397981475],[117,277,69,-0.04808584208667307],[117,277,70,-0.0470575482330068],[117,277,71,-0.04550035716582884],[117,277,72,-0.049224967148625606],[117,277,73,-0.05288800642980212],[117,277,74,-0.06175040570418716],[117,277,75,-0.09281314476674452],[117,277,76,-0.09942236611563049],[117,277,77,-0.09230337142821682],[117,277,78,-0.07865344804584773],[117,277,79,-0.06536728562210992],[117,278,64,-0.06569468071301737],[117,278,65,-0.06475463091282657],[117,278,66,-0.06304431810848027],[117,278,67,-0.05813833839153788],[117,278,68,-0.051850878430069275],[117,278,69,-0.05003997390857355],[117,278,70,-0.047854245057485166],[117,278,71,-0.045281941014805226],[117,278,72,-0.04605944268895569],[117,278,73,-0.0484541920230976],[117,278,74,-0.05908413807053756],[117,278,75,-0.08337297071458208],[117,278,76,-0.08900812547198565],[117,278,77,-0.08011403270145243],[117,278,78,-0.06589497142858394],[117,278,79,-0.053472750768617155],[117,279,64,-0.06076970766420095],[117,279,65,-0.061914556072590846],[117,279,66,-0.0602916315665918],[117,279,67,-0.0559891997275228],[117,279,68,-0.0499661268344057],[117,279,69,-0.04747518074441293],[117,279,70,-0.04379579662106526],[117,279,71,-0.04229333723011388],[117,279,72,-0.041333651211294946],[117,279,73,-0.043258189530426316],[117,279,74,-0.05252253037718172],[117,279,75,-0.07979048812824051],[117,279,76,-0.08645446021963649],[117,279,77,-0.07612117626184198],[117,279,78,-0.062138308162036304],[117,279,79,-0.04765322547290299],[117,280,64,-0.06035760368993572],[117,280,65,-0.06050042523880088],[117,280,66,-0.058355161033053236],[117,280,67,-0.05132998331161406],[117,280,68,-0.04791155867429506],[117,280,69,-0.04450461205124641],[117,280,70,-0.041259912279626304],[117,280,71,-0.04132536193924098],[117,280,72,-0.03989491305420281],[117,280,73,-0.04208408077119182],[117,280,74,-0.052330508597117034],[117,280,75,-0.07795977427669715],[117,280,76,-0.08460582024148564],[117,280,77,-0.07432605703390008],[117,280,78,-0.05957165272677811],[117,280,79,-0.04509752359208952],[117,281,64,-0.06145843599410651],[117,281,65,-0.06051004734683683],[117,281,66,-0.05549960001590898],[117,281,67,-0.04882282115642214],[117,281,68,-0.04405642776470693],[117,281,69,-0.04047116363508467],[117,281,70,-0.03949113829018233],[117,281,71,-0.039520687746346324],[117,281,72,-0.04010562626617107],[117,281,73,-0.04294169026094821],[117,281,74,-0.05801349909310939],[117,281,75,-0.08802555519019033],[117,281,76,-0.0932246686150312],[117,281,77,-0.08221743089676745],[117,281,78,-0.06764615172851532],[117,281,79,-0.053406745450756354],[117,282,64,-0.06684588633345791],[117,282,65,-0.06501951036930337],[117,282,66,-0.05784327187720651],[117,282,67,-0.04822150983250252],[117,282,68,-0.04363305771371226],[117,282,69,-0.04109346018789154],[117,282,70,-0.04091641674000954],[117,282,71,-0.039794091519407444],[117,282,72,-0.04145307604593723],[117,282,73,-0.044716593432414256],[117,282,74,-0.04866969622504463],[117,282,75,-0.0895623753283634],[117,282,76,-0.1010898187465388],[117,282,77,-0.08896073597714788],[117,282,78,-0.07627676674817813],[117,282,79,-0.062113234411234175],[117,283,64,-0.0686306742978017],[117,283,65,-0.06441772022586133],[117,283,66,-0.05833356811968307],[117,283,67,-0.04902412163310816],[117,283,68,-0.043697454992460937],[117,283,69,-0.04133219979713994],[117,283,70,-0.04160083409782482],[117,283,71,-0.03931094211050244],[117,283,72,-0.04070162604550092],[117,283,73,-0.045523873263834454],[117,283,74,-0.045267427662435064],[117,283,75,-0.0865449016300753],[117,283,76,-0.10361732365449257],[117,283,77,-0.09275847768498305],[117,283,78,-0.07823008573950554],[117,283,79,-0.06595191614007784],[117,284,64,-0.08748002457059496],[117,284,65,-0.08255640689174419],[117,284,66,-0.07580641642412182],[117,284,67,-0.06691624656673742],[117,284,68,-0.061827266285616064],[117,284,69,-0.058805600739693105],[117,284,70,-0.05869175455379014],[117,284,71,-0.0560853478897034],[117,284,72,-0.05612336532398772],[117,284,73,-0.060405797001837166],[117,284,74,-0.06263166244489769],[117,284,75,-0.09223532717621576],[117,284,76,-0.10429501345357074],[117,284,77,-0.09241918042997971],[117,284,78,-0.07840207006125532],[117,284,79,-0.06807561917338428],[117,285,64,-0.09258863005519533],[117,285,65,-0.088343667484452],[117,285,66,-0.07911219120077767],[117,285,67,-0.06933536055969976],[117,285,68,-0.06452890372442265],[117,285,69,-0.059942813964442565],[117,285,70,-0.05608308721994336],[117,285,71,-0.055808318731883466],[117,285,72,-0.05789718964250964],[117,285,73,-0.06205070373502802],[117,285,74,-0.06609335628479526],[117,285,75,-0.09074260461468527],[117,285,76,-0.10145428184534765],[117,285,77,-0.08826327253791486],[117,285,78,-0.0755710873904413],[117,285,79,-0.06346876114671474],[117,286,64,-0.09526506902546605],[117,286,65,-0.0888025217356524],[117,286,66,-0.07986081765267462],[117,286,67,-0.06991060564837148],[117,286,68,-0.0626578717280658],[117,286,69,-0.05945291258068922],[117,286,70,-0.05492617078983432],[117,286,71,-0.05297858724759056],[117,286,72,-0.057079978332306214],[117,286,73,-0.0609274641843698],[117,286,74,-0.06157094679072703],[117,286,75,-0.08648178767075616],[117,286,76,-0.09941899375235069],[117,286,77,-0.08799647758386125],[117,286,78,-0.07449192809915262],[117,286,79,-0.06109365279066803],[117,287,64,-0.09295740260342256],[117,287,65,-0.08372427107625222],[117,287,66,-0.07795855585691663],[117,287,67,-0.06694813597185577],[117,287,68,-0.061342445868513194],[117,287,69,-0.058782588958449455],[117,287,70,-0.05337036057195307],[117,287,71,-0.052115096373210094],[117,287,72,-0.057226230826032905],[117,287,73,-0.06215899206161608],[117,287,74,-0.0607836880288799],[117,287,75,-0.08045716933591104],[117,287,76,-0.0938375783149512],[117,287,77,-0.08276146070664361],[117,287,78,-0.0706693702221042],[117,287,79,-0.056086182471831836],[117,288,64,-0.09116903486070044],[117,288,65,-0.08152146378106531],[117,288,66,-0.07440616874989263],[117,288,67,-0.06655024182062877],[117,288,68,-0.05989183295875904],[117,288,69,-0.0571911297312723],[117,288,70,-0.05143183280947584],[117,288,71,-0.0502863356003671],[117,288,72,-0.05283797499610225],[117,288,73,-0.059985608923040015],[117,288,74,-0.05933669715698449],[117,288,75,-0.07526973675454113],[117,288,76,-0.09018026686983581],[117,288,77,-0.07949541360607959],[117,288,78,-0.06978655450403451],[117,288,79,-0.054393563984411614],[117,289,64,-0.07835305330681175],[117,289,65,-0.07340833886015452],[117,289,66,-0.06851038736875537],[117,289,67,-0.06039943031830334],[117,289,68,-0.05621221191996879],[117,289,69,-0.051833023659060146],[117,289,70,-0.04531367702070457],[117,289,71,-0.045934738060067065],[117,289,72,-0.04693263957857741],[117,289,73,-0.05335043935929738],[117,289,74,-0.0567281889812798],[117,289,75,-0.08961333801798266],[117,289,76,-0.09511791233922207],[117,289,77,-0.08316035928332804],[117,289,78,-0.07328447542764205],[117,289,79,-0.058646673448824765],[117,290,64,-0.07603042042962488],[117,290,65,-0.07277352778945276],[117,290,66,-0.06708596279006585],[117,290,67,-0.06030832424803208],[117,290,68,-0.057036477783554966],[117,290,69,-0.05181586896663365],[117,290,70,-0.045981718064984724],[117,290,71,-0.04527352410730422],[117,290,72,-0.046543903627951855],[117,290,73,-0.05303980244380098],[117,290,74,-0.054158316484638244],[117,290,75,-0.08041285226265428],[117,290,76,-0.08104615461026651],[117,290,77,-0.07137325753383325],[117,290,78,-0.058581354621619536],[117,290,79,-0.04806196878446489],[117,291,64,-0.07200203241401328],[117,291,65,-0.07104891911996501],[117,291,66,-0.06345177524955393],[117,291,67,-0.058250255017075044],[117,291,68,-0.05149377395523286],[117,291,69,-0.04834850445364023],[117,291,70,-0.044885148453332184],[117,291,71,-0.04236616831843264],[117,291,72,-0.04566681849877551],[117,291,73,-0.0501613656635959],[117,291,74,-0.050945297980010254],[117,291,75,-0.08051353933134378],[117,291,76,-0.08356729868382948],[117,291,77,-0.07292104773991182],[117,291,78,-0.0592710874117397],[117,291,79,-0.04988429146051035],[117,292,64,-0.04827736850394955],[117,292,65,-0.04699356538557707],[117,292,66,-0.042521297761228274],[117,292,67,-0.039211765129261035],[117,292,68,-0.033896722358182384],[117,292,69,-0.03191421217968279],[117,292,70,-0.03151250061855907],[117,292,71,-0.029866557550543994],[117,292,72,-0.033334288292485637],[117,292,73,-0.03748827821088948],[117,292,74,-0.03904158954536484],[117,292,75,-0.06318267642728267],[117,292,76,-0.07110892934389704],[117,292,77,-0.06029031963940584],[117,292,78,-0.04836964161953275],[117,292,79,-0.03742806419507963],[117,293,64,-0.04553234654441338],[117,293,65,-0.04287180571974176],[117,293,66,-0.03959534389082094],[117,293,67,-0.036161777775312764],[117,293,68,-0.03173451749839172],[117,293,69,-0.030454836627997292],[117,293,70,-0.029204453679374534],[117,293,71,-0.027322901565256526],[117,293,72,-0.030085558782117786],[117,293,73,-0.0354314320718415],[117,293,74,-0.035929368578715495],[117,293,75,-0.05724351595854514],[117,293,76,-0.06793998462484102],[117,293,77,-0.056505555423996934],[117,293,78,-0.044678319110209946],[117,293,79,-0.03465133707494322],[117,294,64,-0.04317815851648136],[117,294,65,-0.03983382704086317],[117,294,66,-0.036562374712088216],[117,294,67,-0.0342102704382992],[117,294,68,-0.027765379653734934],[117,294,69,-0.024054494477983426],[117,294,70,-0.02420479578081816],[117,294,71,-0.022223613058905287],[117,294,72,-0.026149780606015034],[117,294,73,-0.02961130591471945],[117,294,74,-0.03232187808001388],[117,294,75,-0.057058857867016075],[117,294,76,-0.07963319175091238],[117,294,77,-0.06947733177582849],[117,294,78,-0.05892590330335398],[117,294,79,-0.048747239469524695],[117,295,64,-0.042492959051217444],[117,295,65,-0.037398937203660776],[117,295,66,-0.03391557454611362],[117,295,67,-0.0327570820682261],[117,295,68,-0.025482140165824244],[117,295,69,-0.01951657086149368],[117,295,70,-0.019787790915200054],[117,295,71,-0.01985681393740897],[117,295,72,-0.023513482825759505],[117,295,73,-0.024590508530267632],[117,295,74,-0.02879260921178768],[117,295,75,-0.02848189535795658],[117,295,76,-0.042959854501321906],[117,295,77,-0.06409223863754898],[117,295,78,-0.05646981781080018],[117,295,79,-0.04434158027482207],[117,296,64,-0.038885284996507355],[117,296,65,-0.03268981596759139],[117,296,66,-0.0308633054413245],[117,296,67,-0.03058841013600877],[117,296,68,-0.02267124382808751],[117,296,69,-0.015942768446265562],[117,296,70,-0.01602869228383183],[117,296,71,-0.018621817055450643],[117,296,72,-0.01961139733217178],[117,296,73,-0.02154913322774033],[117,296,74,-0.02684182943656723],[117,296,75,-0.028680858002022247],[117,296,76,-0.0382444135446123],[117,296,77,-0.05675851291607271],[117,296,78,-0.05333061020121288],[117,296,79,-0.04219910595169871],[117,297,64,-0.042229309671818115],[117,297,65,-0.03303828990785107],[117,297,66,-0.030274697169563783],[117,297,67,-0.02886130932530763],[117,297,68,-0.02136260663950519],[117,297,69,-0.01618189902444983],[117,297,70,-0.01780755359972705],[117,297,71,-0.016039835478067824],[117,297,72,-0.01509779910898458],[117,297,73,-0.01776245451564025],[117,297,74,-0.021821142082385614],[117,297,75,-0.022973607871751553],[117,297,76,-0.04167007482175987],[117,297,77,-0.06537490714184097],[117,297,78,-0.056897121569448095],[117,297,79,-0.04590258595860075],[117,298,64,-0.04126212719386911],[117,298,65,-0.03143493963742318],[117,298,66,-0.02829372682518845],[117,298,67,-0.02481717464626633],[117,298,68,-0.019319269084745988],[117,298,69,-0.014105103407257347],[117,298,70,-0.01654755522452113],[117,298,71,-0.014495574637586148],[117,298,72,-0.012780192084292583],[117,298,73,-0.016245883471741843],[117,298,74,-0.020170037816493777],[117,298,75,-0.019239436816241795],[117,298,76,-0.027930952452230345],[117,298,77,-0.05097979323994705],[117,298,78,-0.05378012799095033],[117,298,79,-0.04085279266438896],[117,299,64,-0.036373318846104175],[117,299,65,-0.02861623381585225],[117,299,66,-0.02276478284993859],[117,299,67,-0.01864993124705379],[117,299,68,-0.015596278400666103],[117,299,69,-0.012328217077407666],[117,299,70,-0.013828635505543696],[117,299,71,-0.013327414344937213],[117,299,72,-0.01214296060741385],[117,299,73,-0.012290614279897943],[117,299,74,-0.018375738952438367],[117,299,75,-0.017236674999836395],[117,299,76,-0.022349757630239823],[117,299,77,-0.047562729775926946],[117,299,78,-0.05436081315382091],[117,299,79,-0.04133542539677204],[117,300,64,-0.03455759827917734],[117,300,65,-0.026204545752990735],[117,300,66,-0.01931644088654831],[117,300,67,-0.010538329233212046],[117,300,68,-0.006284886621164429],[117,300,69,-0.003190994149446319],[117,300,70,-0.005764157280741047],[117,300,71,-0.007181316281110614],[117,300,72,-0.009037954686935093],[117,300,73,-0.011116659375366461],[117,300,74,-0.0149301269138616],[117,300,75,-0.013597434965438526],[117,300,76,-0.004809743545299769],[117,300,77,-0.003054215429070639],[117,300,78,0.0015716767320273911],[117,300,79,0.0034541751991737026],[117,301,64,-0.030200065414250493],[117,301,65,-0.022950261766242278],[117,301,66,-0.013680030389946016],[117,301,67,-0.004987385954517712],[117,301,68,-0.002884491062986008],[117,301,69,-3.2496119846354976E-4],[117,301,70,-0.0026317572286941454],[117,301,71,-0.005489537963164107],[117,301,72,-0.009196684091736976],[117,301,73,-0.013855944367024822],[117,301,74,-0.017055710058318824],[117,301,75,-0.013377360646566278],[117,301,76,-0.0031628582118853193],[117,301,77,-0.0012707494106253964],[117,301,78,0.002143743639712023],[117,301,79,0.005440880384592173],[117,302,64,-0.022954527420145296],[117,302,65,-0.01621933057654193],[117,302,66,-0.00839124162441375],[117,302,67,4.164495994804507E-5],[117,302,68,0.0028133763480037433],[117,302,69,0.004397355188028085],[117,302,70,0.004121233819004352],[117,302,71,0.004168353497159744],[117,302,72,-0.0047748813471576584],[117,302,73,-0.00904436507243743],[117,302,74,-0.012836954706443582],[117,302,75,-0.004809174002870578],[117,302,76,0.003956311986306735],[117,302,77,0.006702086341523195],[117,302,78,0.010263686886566578],[117,302,79,0.013969206104189988],[117,303,64,-0.019224746630178202],[117,303,65,-0.010617346094598412],[117,303,66,-0.0046279378749930905],[117,303,67,0.002592971647181294],[117,303,68,0.004010106336473737],[117,303,69,0.005424872800756264],[117,303,70,0.008053999688515251],[117,303,71,0.00937345785929207],[117,303,72,7.309811316591891E-4],[117,303,73,-0.007489489675460856],[117,303,74,-0.008077689867114282],[117,303,75,-0.0034390894439526726],[117,303,76,0.004725539019013181],[117,303,77,0.007848852464334685],[117,303,78,0.012374157077091177],[117,303,79,0.017300397235414905],[117,304,64,-0.01865161431672216],[117,304,65,-0.009860813336430047],[117,304,66,-0.003916112215441664],[117,304,67,0.003273707619003946],[117,304,68,0.00545437426009604],[117,304,69,0.008355217696024736],[117,304,70,0.011986892889261094],[117,304,71,0.011963266293311126],[117,304,72,0.0050320982850873275],[117,304,73,-0.002433318347006108],[117,304,74,-0.0030456257851819574],[117,304,75,3.563454842482605E-5],[117,304,76,0.0057842862380913795],[117,304,77,0.008597876322661333],[117,304,78,0.01324544897255954],[117,304,79,0.019507935703982224],[117,305,64,-0.01927992153688189],[117,305,65,-0.011759372401277252],[117,305,66,-0.005115628615655413],[117,305,67,0.0026567412209891894],[117,305,68,0.009700935377074268],[117,305,69,0.012712554679284851],[117,305,70,0.018028838651011445],[117,305,71,0.015713499823553106],[117,305,72,0.011362169075347525],[117,305,73,0.0022857100045843015],[117,305,74,0.003075340940094734],[117,305,75,0.0042116637448026545],[117,305,76,0.008439043497975057],[117,305,77,0.010576613546440017],[117,305,78,0.014564844151677997],[117,305,79,0.020184964808742295],[117,306,64,-0.023810327649316843],[117,306,65,-0.013564007802297481],[117,306,66,-0.006229841239152337],[117,306,67,-1.7079146148187008E-4],[117,306,68,0.00926033371184734],[117,306,69,0.014133242936368182],[117,306,70,0.01935600582266911],[117,306,71,0.01774525997074687],[117,306,72,0.013173055879993859],[117,306,73,0.007789760665167678],[117,306,74,0.004883382414031273],[117,306,75,0.007839398261975022],[117,306,76,0.010177994502488644],[117,306,77,0.013229170092955947],[117,306,78,0.01634436543340538],[117,306,79,0.023451867756801664],[117,307,64,-0.025488424708828616],[117,307,65,-0.01438684320852969],[117,307,66,-0.005035707458992289],[117,307,67,0.002383212481642208],[117,307,68,0.011078423118788913],[117,307,69,0.016713685255246163],[117,307,70,0.02194458127141022],[117,307,71,0.019112298335137307],[117,307,72,0.01441527668949684],[117,307,73,0.010572796003172388],[117,307,74,0.008176923401163966],[117,307,75,0.009721549620730116],[117,307,76,0.01282263472222471],[117,307,77,0.0174747315613393],[117,307,78,0.02180269397277329],[117,307,79,0.027530187867463418],[117,308,64,-0.009978443235644507],[117,308,65,-0.002522965455969084],[117,308,66,0.007667977198612924],[117,308,67,0.019904325386494448],[117,308,68,0.023897527197742158],[117,308,69,0.024312067887825695],[117,308,70,0.026895891512730766],[117,308,71,0.021744543976662437],[117,308,72,0.01761703103234613],[117,308,73,0.015254825190951948],[117,308,74,0.01182674556259214],[117,308,75,0.01130898348035575],[117,308,76,0.013864618824186117],[117,308,77,0.01715027438695982],[117,308,78,0.020233743516284347],[117,308,79,0.023448151070722137],[117,309,64,-0.011904588977074998],[117,309,65,-0.004203562940957237],[117,309,66,0.008626293945515479],[117,309,67,0.022071547074402467],[117,309,68,0.02664963265857684],[117,309,69,0.02871063097436599],[117,309,70,0.027723429190777],[117,309,71,0.023141884567408594],[117,309,72,0.018915674458181764],[117,309,73,0.01682318927435507],[117,309,74,0.01268739004396495],[117,309,75,0.01248502025910185],[117,309,76,0.016226069510835467],[117,309,77,0.01968260320223192],[117,309,78,0.022019925992317835],[117,309,79,0.021133264963148907],[117,310,64,-0.005545411395136257],[117,310,65,5.513155279227577E-4],[117,310,66,0.012116855275808205],[117,310,67,0.02823181776988294],[117,310,68,0.033400955730614676],[117,310,69,0.037319966327795356],[117,310,70,0.036916103644258014],[117,310,71,0.031332282128454375],[117,310,72,0.025902878502391327],[117,310,73,0.025403486259461608],[117,310,74,0.02207614505182086],[117,310,75,0.022025864806742304],[117,310,76,0.024066691083683853],[117,310,77,0.02861031630919035],[117,310,78,0.031427092811167456],[117,310,79,0.028357505073744474],[117,311,64,-0.0034592470173250983],[117,311,65,0.004903116628294277],[117,311,66,0.015193250623567328],[117,311,67,0.02745750039377401],[117,311,68,0.03552900218999809],[117,311,69,0.03933770841545883],[117,311,70,0.03889773774436861],[117,311,71,0.033829234654160115],[117,311,72,0.028819638159725075],[117,311,73,0.02821654266233649],[117,311,74,0.027698427742864976],[117,311,75,0.023455124206990904],[117,311,76,0.026356819914413424],[117,311,77,0.030378664704435954],[117,311,78,0.03039767359076992],[117,311,79,0.030030166833131307],[117,312,64,0.0016965507705639232],[117,312,65,0.008891144979900983],[117,312,66,0.016185122802323496],[117,312,67,0.028091456384050306],[117,312,68,0.03385584788494907],[117,312,69,0.04020065890124491],[117,312,70,0.03981675784433539],[117,312,71,0.03561854305838168],[117,312,72,0.03309966157955101],[117,312,73,0.03469673591841302],[117,312,74,0.03299609147538887],[117,312,75,0.03067339466402416],[117,312,76,0.03246066689055399],[117,312,77,0.031155981246861753],[117,312,78,0.02770057178256881],[117,312,79,0.025740875371914843],[117,313,64,0.004472025933159693],[117,313,65,0.012069774003394734],[117,313,66,0.017791996961780854],[117,313,67,0.028052142394323867],[117,313,68,0.0354336446658937],[117,313,69,0.040407630593541646],[117,313,70,0.03945521168228602],[117,313,71,0.038641441579195024],[117,313,72,0.03478986540896466],[117,313,73,0.035920178624867904],[117,313,74,0.03575147610787702],[117,313,75,0.03279862163246414],[117,313,76,0.03532575115166697],[117,313,77,0.03329453496912424],[117,313,78,0.029264943560852602],[117,313,79,0.028672465340321033],[117,314,64,0.0024203296099804955],[117,314,65,0.008807808067316653],[117,314,66,0.016003202436265976],[117,314,67,0.025707596964870696],[117,314,68,0.033987818530814146],[117,314,69,0.04013167243826864],[117,314,70,0.03908040616797266],[117,314,71,0.03815712004586978],[117,314,72,0.03514954226737314],[117,314,73,0.03666113003698783],[117,314,74,0.03520867299399991],[117,314,75,0.03394036994278861],[117,314,76,0.03683595050577558],[117,314,77,0.03574853116912788],[117,314,78,0.030842106010230366],[117,314,79,0.026038511644213988],[117,315,64,0.0019983478682269046],[117,315,65,0.00874177659726913],[117,315,66,0.015250226595255961],[117,315,67,0.025601265293241693],[117,315,68,0.03398976014103523],[117,315,69,0.03920830562232834],[117,315,70,0.04044686496882788],[117,315,71,0.04161282987205717],[117,315,72,0.037524292303042106],[117,315,73,0.0373799124294585],[117,315,74,0.03553541393548948],[117,315,75,0.03779568652524341],[117,315,76,0.0379414773998087],[117,315,77,0.036596752149660794],[117,315,78,0.03339373359178545],[117,315,79,0.02797380215023873],[117,316,64,-0.008609565553896775],[117,316,65,0.0024731978090826584],[117,316,66,0.010885933842803494],[117,316,67,0.02460692759707303],[117,316,68,0.034563934986531236],[117,316,69,0.04050793510650365],[117,316,70,0.0443649084727302],[117,316,71,0.044711061929342655],[117,316,72,0.042014351141909476],[117,316,73,0.042148570271157676],[117,316,74,0.04149985134010842],[117,316,75,0.045940270709224906],[117,316,76,0.04727608195618026],[117,316,77,0.04469451451562716],[117,316,78,0.03890324975335209],[117,316,79,0.03551599417342115],[117,317,64,-0.009529606317216208],[117,317,65,0.0021842701379864576],[117,317,66,0.012808174561162983],[117,317,67,0.025531859873997795],[117,317,68,0.03366542565446551],[117,317,69,0.041728703061217204],[117,317,70,0.04752760230878497],[117,317,71,0.046915901523465656],[117,317,72,0.042307486047638815],[117,317,73,0.04160229542079391],[117,317,74,0.044445276275008425],[117,317,75,0.04562414194110204],[117,317,76,0.048672923612242236],[117,317,77,0.04743819569116099],[117,317,78,0.04212300930247331],[117,317,79,0.03543629643291242],[117,318,64,-0.004672054796962352],[117,318,65,0.008518133976932574],[117,318,66,0.019752756025589555],[117,318,67,0.03434055397851184],[117,318,68,0.04151234832091988],[117,318,69,0.049758474781253254],[117,318,70,0.05808862679323433],[117,318,71,0.057498286247298025],[117,318,72,0.052083999560109145],[117,318,73,0.05004067797078608],[117,318,74,0.04986309736532457],[117,318,75,0.05365329376713429],[117,318,76,0.05784215947053678],[117,318,77,0.057615062180289875],[117,318,78,0.05125066144086857],[117,318,79,0.04862426759568224],[117,319,64,-0.007560292373593638],[117,319,65,0.008423639779428976],[117,319,66,0.019627941619191083],[117,319,67,0.03344307848993994],[117,319,68,0.04211441277914316],[117,319,69,0.05030715218711085],[117,319,70,0.05872973930247091],[117,319,71,0.05940070312076913],[117,319,72,0.05420347283122781],[117,319,73,0.05078420689071263],[117,319,74,0.0488650723430582],[117,319,75,0.05340768049547501],[117,319,76,0.057286350542147785],[117,319,77,0.05678740996270337],[117,319,78,0.05457339409079097],[117,319,79,0.05674348174622247],[118,-64,64,-0.4736464822274641],[118,-64,65,-0.46450437268992406],[118,-64,66,-0.45230362469932794],[118,-64,67,-0.4400310370264109],[118,-64,68,-0.4294610205565339],[118,-64,69,-0.4243350698252525],[118,-64,70,-0.4151169315528109],[118,-64,71,-0.407641549026183],[118,-64,72,-0.3973255604621322],[118,-64,73,-0.38927245871222604],[118,-64,74,-0.38838734582536405],[118,-64,75,-0.3873561498308665],[118,-64,76,-0.38333523841278505],[118,-64,77,-0.3825580211751527],[118,-64,78,-0.38353936403432887],[118,-64,79,-0.3851605919427806],[118,-63,64,-0.4766510528442059],[118,-63,65,-0.4661443151969915],[118,-63,66,-0.45231053483913597],[118,-63,67,-0.439095091881409],[118,-63,68,-0.4291279659030001],[118,-63,69,-0.42366278844073985],[118,-63,70,-0.41409843740798447],[118,-63,71,-0.40607966791844863],[118,-63,72,-0.3927839403201783],[118,-63,73,-0.3834083484205255],[118,-63,74,-0.3821629514032036],[118,-63,75,-0.3829245001088952],[118,-63,76,-0.3800113543399229],[118,-63,77,-0.37617237455145425],[118,-63,78,-0.3794246007682593],[118,-63,79,-0.38272761923533377],[118,-62,64,-0.4755280655207057],[118,-62,65,-0.46260260074443804],[118,-62,66,-0.4482953465942727],[118,-62,67,-0.43726044614397597],[118,-62,68,-0.42636569388929735],[118,-62,69,-0.4208912364146272],[118,-62,70,-0.41467763685992626],[118,-62,71,-0.4046669194453452],[118,-62,72,-0.3882477125642237],[118,-62,73,-0.38269511694166036],[118,-62,74,-0.37754065938265635],[118,-62,75,-0.382397773484953],[118,-62,76,-0.3762467186805732],[118,-62,77,-0.3743859906795258],[118,-62,78,-0.379737471265008],[118,-62,79,-0.3796270225264451],[118,-61,64,-0.47523970089112677],[118,-61,65,-0.4634271295255682],[118,-61,66,-0.45065127638457375],[118,-61,67,-0.4404229931082403],[118,-61,68,-0.43219277166045517],[118,-61,69,-0.42436959044761624],[118,-61,70,-0.418158448591852],[118,-61,71,-0.40324060103914483],[118,-61,72,-0.38992740854031027],[118,-61,73,-0.38503764572494015],[118,-61,74,-0.38110603014586714],[118,-61,75,-0.38284062252525847],[118,-61,76,-0.3770000360008759],[118,-61,77,-0.3780169200990332],[118,-61,78,-0.381372907428355],[118,-61,79,-0.3808219173665489],[118,-60,64,-0.47291555496501875],[118,-60,65,-0.4636685487814179],[118,-60,66,-0.4510004158864066],[118,-60,67,-0.439714703495038],[118,-60,68,-0.43305154059376055],[118,-60,69,-0.423270104156029],[118,-60,70,-0.41521878291756975],[118,-60,71,-0.4004709233215151],[118,-60,72,-0.38807613884011605],[118,-60,73,-0.3831289913878622],[118,-60,74,-0.3797386066690905],[118,-60,75,-0.37864158604826453],[118,-60,76,-0.37375072001691667],[118,-60,77,-0.3764249149117048],[118,-60,78,-0.3775255123382055],[118,-60,79,-0.37630900690524915],[118,-59,64,-0.4563928627261884],[118,-59,65,-0.44747454735025755],[118,-59,66,-0.44010722370769195],[118,-59,67,-0.4290033751471852],[118,-59,68,-0.42399861707932357],[118,-59,69,-0.4173364535292001],[118,-59,70,-0.4075120882158555],[118,-59,71,-0.39502173008544833],[118,-59,72,-0.3889663805169626],[118,-59,73,-0.38238662565257453],[118,-59,74,-0.3800867324243037],[118,-59,75,-0.3788508663763499],[118,-59,76,-0.37450992394291044],[118,-59,77,-0.3756086253337335],[118,-59,78,-0.3729543336994332],[118,-59,79,-0.3700293987884952],[118,-58,64,-0.45251561724903216],[118,-58,65,-0.44473374399367105],[118,-58,66,-0.4378080070619566],[118,-58,67,-0.4267266437232384],[118,-58,68,-0.42211073735658644],[118,-58,69,-0.41414571592571786],[118,-58,70,-0.4017870411011178],[118,-58,71,-0.39183200396904627],[118,-58,72,-0.38754524191734074],[118,-58,73,-0.38085145565189815],[118,-58,74,-0.3783395493471803],[118,-58,75,-0.3765785704717764],[118,-58,76,-0.3737341683150958],[118,-58,77,-0.37318233393386285],[118,-58,78,-0.3684400494525765],[118,-58,79,-0.36380492410986165],[118,-57,64,-0.4580141070411255],[118,-57,65,-0.4491384802033468],[118,-57,66,-0.44253264544017085],[118,-57,67,-0.4318163739623965],[118,-57,68,-0.42648464971257427],[118,-57,69,-0.416279661536342],[118,-57,70,-0.4031404987989763],[118,-57,71,-0.3950451344639949],[118,-57,72,-0.3902758337298845],[118,-57,73,-0.3822309088670702],[118,-57,74,-0.379683246642307],[118,-57,75,-0.37613037235766267],[118,-57,76,-0.37361432669771444],[118,-57,77,-0.37399635029889106],[118,-57,78,-0.3649464521343097],[118,-57,79,-0.35926195138317585],[118,-56,64,-0.4560172186633387],[118,-56,65,-0.4497086355728659],[118,-56,66,-0.440344034136403],[118,-56,67,-0.4304199736266889],[118,-56,68,-0.4253760327597234],[118,-56,69,-0.4155564713863828],[118,-56,70,-0.4020402190524558],[118,-56,71,-0.3966454611994703],[118,-56,72,-0.39097053746693566],[118,-56,73,-0.3819684321929011],[118,-56,74,-0.37590744839672],[118,-56,75,-0.3725220496989494],[118,-56,76,-0.36927054646641355],[118,-56,77,-0.368296021498766],[118,-56,78,-0.36125472805903275],[118,-56,79,-0.3553702607203575],[118,-55,64,-0.45333099162758383],[118,-55,65,-0.44643524313846633],[118,-55,66,-0.4408570284531921],[118,-55,67,-0.43232593705515737],[118,-55,68,-0.4273247565756624],[118,-55,69,-0.4179801436426645],[118,-55,70,-0.40579901150782915],[118,-55,71,-0.3977622565198652],[118,-55,72,-0.39111936033483247],[118,-55,73,-0.3802725808464481],[118,-55,74,-0.37358700643711773],[118,-55,75,-0.36856593212498784],[118,-55,76,-0.3655073707583985],[118,-55,77,-0.3628474218575276],[118,-55,78,-0.35816144083672474],[118,-55,79,-0.35519243784788124],[118,-54,64,-0.4524802999317279],[118,-54,65,-0.44589124840887284],[118,-54,66,-0.44123650351820654],[118,-54,67,-0.435160701882383],[118,-54,68,-0.4287356495316178],[118,-54,69,-0.4189731421365948],[118,-54,70,-0.4083918787692612],[118,-54,71,-0.39847518612330374],[118,-54,72,-0.39236852444484327],[118,-54,73,-0.38095962454609655],[118,-54,74,-0.3703492297097875],[118,-54,75,-0.3668592475703856],[118,-54,76,-0.361665226074938],[118,-54,77,-0.3572546647077573],[118,-54,78,-0.3557703540927509],[118,-54,79,-0.35402678749279864],[118,-53,64,-0.455453262473974],[118,-53,65,-0.4512048590042105],[118,-53,66,-0.445295535597115],[118,-53,67,-0.44134749939442897],[118,-53,68,-0.4350145485293635],[118,-53,69,-0.42287773384978666],[118,-53,70,-0.41556230738161876],[118,-53,71,-0.40610482699023853],[118,-53,72,-0.3971821324866568],[118,-53,73,-0.3864623188025973],[118,-53,74,-0.3737639432479517],[118,-53,75,-0.3668556498951856],[118,-53,76,-0.36308761740117923],[118,-53,77,-0.35765851838026286],[118,-53,78,-0.3545118500588105],[118,-53,79,-0.3566412945816168],[118,-52,64,-0.4570762173150137],[118,-52,65,-0.45203061042846737],[118,-52,66,-0.4467223527114096],[118,-52,67,-0.44408806629151376],[118,-52,68,-0.43584198002992375],[118,-52,69,-0.4244853149205119],[118,-52,70,-0.4157324895426584],[118,-52,71,-0.40616889379795057],[118,-52,72,-0.3951536795929453],[118,-52,73,-0.38414298234391725],[118,-52,74,-0.37249240167704134],[118,-52,75,-0.36234565335386887],[118,-52,76,-0.3590657450060537],[118,-52,77,-0.3545264547619021],[118,-52,78,-0.35014029124321905],[118,-52,79,-0.35300977685029344],[118,-51,64,-0.469627124562228],[118,-51,65,-0.47161256112652294],[118,-51,66,-0.47207223425087697],[118,-51,67,-0.47358147498886083],[118,-51,68,-0.4654374245368136],[118,-51,69,-0.4529498824509759],[118,-51,70,-0.442974681227237],[118,-51,71,-0.4303328393287866],[118,-51,72,-0.41706185227143805],[118,-51,73,-0.40332057725108217],[118,-51,74,-0.3905631950762395],[118,-51,75,-0.37870842938539295],[118,-51,76,-0.3724937264407065],[118,-51,77,-0.3596418692656677],[118,-51,78,-0.34943495101315186],[118,-51,79,-0.34182097104760356],[118,-50,64,-0.4677146657902053],[118,-50,65,-0.47035478485999427],[118,-50,66,-0.47315008547136816],[118,-50,67,-0.47431550731848415],[118,-50,68,-0.4656554371495135],[118,-50,69,-0.4536410843302727],[118,-50,70,-0.44088043310243663],[118,-50,71,-0.42708700384060855],[118,-50,72,-0.4173891309190942],[118,-50,73,-0.40201277384448475],[118,-50,74,-0.3878339501131941],[118,-50,75,-0.37735352430058705],[118,-50,76,-0.37077924000543006],[118,-50,77,-0.35780350251790016],[118,-50,78,-0.3485187684805376],[118,-50,79,-0.3403740843887221],[118,-49,64,-0.4733656373022864],[118,-49,65,-0.47558833591268335],[118,-49,66,-0.4784331481563896],[118,-49,67,-0.4777942959091145],[118,-49,68,-0.47000422324467916],[118,-49,69,-0.4582909602556216],[118,-49,70,-0.4441322961521927],[118,-49,71,-0.43059831904935736],[118,-49,72,-0.4219212507737097],[118,-49,73,-0.40192243184006404],[118,-49,74,-0.3875195842556005],[118,-49,75,-0.37760609124523326],[118,-49,76,-0.3707373990574378],[118,-49,77,-0.3591500540271801],[118,-49,78,-0.34642380429878944],[118,-49,79,-0.3389450141027164],[118,-48,64,-0.4555999525808343],[118,-48,65,-0.4731137587503337],[118,-48,66,-0.47528783540062547],[118,-48,67,-0.47649464129315344],[118,-48,68,-0.4678040143316538],[118,-48,69,-0.45635143455166804],[118,-48,70,-0.44258370813691594],[118,-48,71,-0.4297693414827613],[118,-48,72,-0.41756908699573747],[118,-48,73,-0.3992235822279813],[118,-48,74,-0.3883655775858634],[118,-48,75,-0.3750946802133424],[118,-48,76,-0.36687451998506215],[118,-48,77,-0.35557332769250344],[118,-48,78,-0.3426973194958292],[118,-48,79,-0.33430084884681344],[118,-47,64,-0.4316299317783059],[118,-47,65,-0.4658578788056286],[118,-47,66,-0.4695658042135523],[118,-47,67,-0.46392308496107565],[118,-47,68,-0.4536229779926677],[118,-47,69,-0.4423880809252775],[118,-47,70,-0.42812546476868313],[118,-47,71,-0.41900728570487955],[118,-47,72,-0.40915522247165936],[118,-47,73,-0.39475795358219784],[118,-47,74,-0.38296987356931295],[118,-47,75,-0.37272703037491306],[118,-47,76,-0.35915366677175925],[118,-47,77,-0.35253264381275334],[118,-47,78,-0.34254986082119876],[118,-47,79,-0.3372875314170136],[118,-46,64,-0.473962615717309],[118,-46,65,-0.47071129407412393],[118,-46,66,-0.4671499646183179],[118,-46,67,-0.45872187535986764],[118,-46,68,-0.4483303897011965],[118,-46,69,-0.4395686289913453],[118,-46,70,-0.42726359849199536],[118,-46,71,-0.41358238562135663],[118,-46,72,-0.40522923121307186],[118,-46,73,-0.39122612736820245],[118,-46,74,-0.3803796495771904],[118,-46,75,-0.3734058382316622],[118,-46,76,-0.3581056273616397],[118,-46,77,-0.350334994540261],[118,-46,78,-0.3397685562793761],[118,-46,79,-0.33276555915981715],[118,-45,64,-0.4598258472235175],[118,-45,65,-0.4718406251892906],[118,-45,66,-0.46791751422380135],[118,-45,67,-0.45874228140807616],[118,-45,68,-0.44706602413839913],[118,-45,69,-0.43836199891663313],[118,-45,70,-0.42753970115595363],[118,-45,71,-0.4143047531603231],[118,-45,72,-0.40487717399551865],[118,-45,73,-0.3939345876730907],[118,-45,74,-0.3837075534966212],[118,-45,75,-0.37500432348135926],[118,-45,76,-0.36093958557584854],[118,-45,77,-0.35168073637547936],[118,-45,78,-0.3409944706881706],[118,-45,79,-0.3342473433638208],[118,-44,64,-0.4027238166599503],[118,-44,65,-0.4206663998281873],[118,-44,66,-0.45330430121690873],[118,-44,67,-0.4498148002027421],[118,-44,68,-0.4406198808944537],[118,-44,69,-0.4336795167418679],[118,-44,70,-0.4275902935123229],[118,-44,71,-0.4166637880233821],[118,-44,72,-0.40679540850843476],[118,-44,73,-0.3965621859849941],[118,-44,74,-0.38767874559229853],[118,-44,75,-0.37913211103235067],[118,-44,76,-0.3676367795654232],[118,-44,77,-0.3566808334866436],[118,-44,78,-0.3440501696994775],[118,-44,79,-0.3359276992818745],[118,-43,64,-0.40835497762028866],[118,-43,65,-0.41921864096335404],[118,-43,66,-0.44012833744958035],[118,-43,67,-0.4348576673810253],[118,-43,68,-0.42532586614394896],[118,-43,69,-0.41861424278094705],[118,-43,70,-0.4131591514102817],[118,-43,71,-0.4028342787270312],[118,-43,72,-0.39310247052988617],[118,-43,73,-0.38280657092589043],[118,-43,74,-0.375007363289181],[118,-43,75,-0.36643841813014033],[118,-43,76,-0.35836667001731737],[118,-43,77,-0.3507055051474579],[118,-43,78,-0.33918375901504805],[118,-43,79,-0.331294299214485],[118,-42,64,-0.3462935448031667],[118,-42,65,-0.355565545721861],[118,-42,66,-0.4168666372519401],[118,-42,67,-0.42967491126418156],[118,-42,68,-0.42229738083030616],[118,-42,69,-0.4136270419915112],[118,-42,70,-0.4089193690082462],[118,-42,71,-0.3976629863289282],[118,-42,72,-0.38925666226615374],[118,-42,73,-0.38038371443098923],[118,-42,74,-0.3718943333628312],[118,-42,75,-0.3657952292722749],[118,-42,76,-0.35929268745118703],[118,-42,77,-0.3495231985029267],[118,-42,78,-0.33896784146529596],[118,-42,79,-0.3290080804558176],[118,-41,64,-0.2836810176442972],[118,-41,65,-0.29456749306837104],[118,-41,66,-0.36156134610790963],[118,-41,67,-0.43004498280830716],[118,-41,68,-0.4244116293464918],[118,-41,69,-0.41647261527913104],[118,-41,70,-0.40971123022165523],[118,-41,71,-0.3994316634417123],[118,-41,72,-0.39202111990419286],[118,-41,73,-0.38372296847508264],[118,-41,74,-0.37354284325496734],[118,-41,75,-0.36673318957855483],[118,-41,76,-0.3604594844195013],[118,-41,77,-0.3484700951076704],[118,-41,78,-0.3386971127591873],[118,-41,79,-0.32657696822515747],[118,-40,64,-0.21755178082711984],[118,-40,65,-0.25588511808750525],[118,-40,66,-0.32762794334793316],[118,-40,67,-0.42438178096597623],[118,-40,68,-0.418923280569451],[118,-40,69,-0.41434454942953586],[118,-40,70,-0.4066957634309335],[118,-40,71,-0.39897568868247424],[118,-40,72,-0.38954801422866586],[118,-40,73,-0.3815189234592781],[118,-40,74,-0.372233021404035],[118,-40,75,-0.36212791795428323],[118,-40,76,-0.3567833719502978],[118,-40,77,-0.34731026297669615],[118,-40,78,-0.338067927577594],[118,-40,79,-0.3256274035265262],[118,-39,64,-0.14236448853819866],[118,-39,65,-0.2298784514960114],[118,-39,66,-0.2985816150484202],[118,-39,67,-0.41572764806036633],[118,-39,68,-0.4102623713652441],[118,-39,69,-0.40704546209475645],[118,-39,70,-0.4004483098619641],[118,-39,71,-0.3922851723851796],[118,-39,72,-0.38101975331046756],[118,-39,73,-0.3725019099746655],[118,-39,74,-0.36347338316746236],[118,-39,75,-0.35150736280645467],[118,-39,76,-0.34577570747333725],[118,-39,77,-0.33738802978715376],[118,-39,78,-0.3303258269807058],[118,-39,79,-0.3187419904361888],[118,-38,64,-2.7086905506457093E-4],[118,-38,65,-0.10226707988051137],[118,-38,66,-0.26203670372996263],[118,-38,67,-0.4077454083085536],[118,-38,68,-0.40373347478753213],[118,-38,69,-0.40335572207698017],[118,-38,70,-0.3970999794579796],[118,-38,71,-0.3887826240978025],[118,-38,72,-0.3796946226529551],[118,-38,73,-0.3683639951841926],[118,-38,74,-0.35870048027889745],[118,-38,75,-0.34914004093838796],[118,-38,76,-0.34196808890784935],[118,-38,77,-0.33196221498065803],[118,-38,78,-0.3274511131641309],[118,-38,79,-0.31424487851785177],[118,-37,64,0.06630533456932425],[118,-37,65,-0.02287403480769784],[118,-37,66,-0.19642395634995383],[118,-37,67,-0.403751544868963],[118,-37,68,-0.4031693116777414],[118,-37,69,-0.40500293665955867],[118,-37,70,-0.3995498810557182],[118,-37,71,-0.3918817133148103],[118,-37,72,-0.382402135546314],[118,-37,73,-0.3700936659453412],[118,-37,74,-0.35857992217270657],[118,-37,75,-0.34975038185479596],[118,-37,76,-0.34416584373739434],[118,-37,77,-0.33529050537214894],[118,-37,78,-0.32636433837716194],[118,-37,79,-0.3131228322629945],[118,-36,64,0.08870306624372393],[118,-36,65,0.013684129728217698],[118,-36,66,-0.18582510176413067],[118,-36,67,-0.4009919820909861],[118,-36,68,-0.401047814068344],[118,-36,69,-0.4017890001063592],[118,-36,70,-0.3968882339314047],[118,-36,71,-0.3914237729494851],[118,-36,72,-0.37976453158083157],[118,-36,73,-0.3657538786100716],[118,-36,74,-0.3543193732737043],[118,-36,75,-0.3467922407517691],[118,-36,76,-0.34086094856027677],[118,-36,77,-0.3314743752150314],[118,-36,78,-0.3214546520105237],[118,-36,79,-0.3077431928344171],[118,-35,64,0.00602589900738193],[118,-35,65,-0.037584639614060444],[118,-35,66,-0.21293043842387727],[118,-35,67,-0.40007034284605303],[118,-35,68,-0.398401544784556],[118,-35,69,-0.3970842598613323],[118,-35,70,-0.39850276173015264],[118,-35,71,-0.39273931752589003],[118,-35,72,-0.3845739778085135],[118,-35,73,-0.37290412092317465],[118,-35,74,-0.359876630820807],[118,-35,75,-0.3512361659243809],[118,-35,76,-0.3449687962997426],[118,-35,77,-0.3309999200477493],[118,-35,78,-0.31742403666051344],[118,-35,79,-0.3020301587596361],[118,-34,64,0.03697221535703915],[118,-34,65,-0.02231927584141713],[118,-34,66,-0.18043260699212865],[118,-34,67,-0.39805998070899173],[118,-34,68,-0.39567656676748986],[118,-34,69,-0.3953352713609277],[118,-34,70,-0.3950421649555975],[118,-34,71,-0.38868930787070666],[118,-34,72,-0.38199923052804535],[118,-34,73,-0.3710279352778929],[118,-34,74,-0.36444674150904927],[118,-34,75,-0.35229067092386945],[118,-34,76,-0.34432696328724616],[118,-34,77,-0.3313524218097475],[118,-34,78,-0.3148540072226387],[118,-34,79,-0.2988298151076658],[118,-33,64,0.06916112584751044],[118,-33,65,0.012759889750972087],[118,-33,66,-0.09912718072127458],[118,-33,67,-0.29622272784303627],[118,-33,68,-0.32625115442242103],[118,-33,69,-0.32869280504633136],[118,-33,70,-0.33191226905095417],[118,-33,71,-0.3302656241853556],[118,-33,72,-0.328948307559926],[118,-33,73,-0.32366627353291555],[118,-33,74,-0.323880973532028],[118,-33,75,-0.3170697213930799],[118,-33,76,-0.31011809837827115],[118,-33,77,-0.30199471650278953],[118,-33,78,-0.2886544398293557],[118,-33,79,-0.2762531788958428],[118,-32,64,0.09961898814799108],[118,-32,65,0.03421336144136933],[118,-32,66,-0.08922213279209815],[118,-32,67,-0.24499711983836675],[118,-32,68,-0.32389134435482114],[118,-32,69,-0.32232096914492936],[118,-32,70,-0.32491703786466253],[118,-32,71,-0.32565917195115],[118,-32,72,-0.32594135882906455],[118,-32,73,-0.32068677515307564],[118,-32,74,-0.3200839256707369],[118,-32,75,-0.31527055504061147],[118,-32,76,-0.3060442625579577],[118,-32,77,-0.2991557563133297],[118,-32,78,-0.2855180579623891],[118,-32,79,-0.27507928689315325],[118,-31,64,0.019675777554039875],[118,-31,65,-0.01741014756545295],[118,-31,66,-0.10711844304184173],[118,-31,67,-0.156640484334843],[118,-31,68,-0.2409380483698011],[118,-31,69,-0.318177841418229],[118,-31,70,-0.32080755281462364],[118,-31,71,-0.3214439155794193],[118,-31,72,-0.3206770249706117],[118,-31,73,-0.31892164305212806],[118,-31,74,-0.3146957056247043],[118,-31,75,-0.31020703712288067],[118,-31,76,-0.3007285798157538],[118,-31,77,-0.29390875783169673],[118,-31,78,-0.28477457073807066],[118,-31,79,-0.2738813798935879],[118,-30,64,0.003004553794995979],[118,-30,65,-0.0017166834339945036],[118,-30,66,-0.0838415779658869],[118,-30,67,-0.13377603181032585],[118,-30,68,-0.2178443020685259],[118,-30,69,-0.30479090925143487],[118,-30,70,-0.3154671536911681],[118,-30,71,-0.31614791271551834],[118,-30,72,-0.31464372129092333],[118,-30,73,-0.312882336261475],[118,-30,74,-0.30751071029367094],[118,-30,75,-0.30543703369304076],[118,-30,76,-0.29747080965755235],[118,-30,77,-0.28748123367314066],[118,-30,78,-0.2812585782196206],[118,-30,79,-0.2768010303353687],[118,-29,64,0.03854063189911894],[118,-29,65,0.0531259200191086],[118,-29,66,0.0013726715972547932],[118,-29,67,-0.06494970507827777],[118,-29,68,-0.16321950785055214],[118,-29,69,-0.24417410568284142],[118,-29,70,-0.3012657046330088],[118,-29,71,-0.3164508352618443],[118,-29,72,-0.31421539693296713],[118,-29,73,-0.31040035164729607],[118,-29,74,-0.30687520194853857],[118,-29,75,-0.3035396112918077],[118,-29,76,-0.2979275634103705],[118,-29,77,-0.28925383416341777],[118,-29,78,-0.2825088059694761],[118,-29,79,-0.28032714947802734],[118,-28,64,0.03235407778728283],[118,-28,65,0.03856980787082709],[118,-28,66,-2.0134283198441905E-4],[118,-28,67,-0.05452945329015946],[118,-28,68,-0.1683333326501539],[118,-28,69,-0.23684560707384766],[118,-28,70,-0.2927142194535417],[118,-28,71,-0.3100208975791377],[118,-28,72,-0.30882089326046624],[118,-28,73,-0.30456622895971175],[118,-28,74,-0.304677421894023],[118,-28,75,-0.29927962276589276],[118,-28,76,-0.2958450845436015],[118,-28,77,-0.2881299220443276],[118,-28,78,-0.28016269233401253],[118,-28,79,-0.2782271251604264],[118,-27,64,0.0915028807481777],[118,-27,65,0.0757413876902841],[118,-27,66,-0.001781536334891698],[118,-27,67,-0.058518487735612246],[118,-27,68,-0.15082685353351338],[118,-27,69,-0.22524075681655292],[118,-27,70,-0.27126456194632165],[118,-27,71,-0.29556814937015846],[118,-27,72,-0.2917750529524295],[118,-27,73,-0.2881280157638271],[118,-27,74,-0.2860878909357885],[118,-27,75,-0.284277649889323],[118,-27,76,-0.28401646416035764],[118,-27,77,-0.2818257960791442],[118,-27,78,-0.2816230214845567],[118,-27,79,-0.2809639795230756],[118,-26,64,0.12790597884693344],[118,-26,65,0.10618876456278153],[118,-26,66,0.0016306304645425929],[118,-26,67,-0.06229125480554368],[118,-26,68,-0.12539132798426217],[118,-26,69,-0.20397199474156996],[118,-26,70,-0.27728364045565124],[118,-26,71,-0.290920981465873],[118,-26,72,-0.28644118970829385],[118,-26,73,-0.2833697709816483],[118,-26,74,-0.2808390581049337],[118,-26,75,-0.28032000569771826],[118,-26,76,-0.2795717695001272],[118,-26,77,-0.28034831892775897],[118,-26,78,-0.2790394825503014],[118,-26,79,-0.2780876078582526],[118,-25,64,0.13406544467870873],[118,-25,65,0.07408086655686025],[118,-25,66,-0.03664399932015522],[118,-25,67,-0.08805842013219006],[118,-25,68,-0.11640890526762218],[118,-25,69,-0.22655664312013069],[118,-25,70,-0.2832963954510548],[118,-25,71,-0.29399782261384283],[118,-25,72,-0.2868664656187895],[118,-25,73,-0.28115375927296815],[118,-25,74,-0.2792841086502784],[118,-25,75,-0.2800907358775548],[118,-25,76,-0.2797709490570002],[118,-25,77,-0.2802208053507061],[118,-25,78,-0.2771994896695503],[118,-25,79,-0.2773215795701301],[118,-24,64,0.11699643202646054],[118,-24,65,0.04544518498158168],[118,-24,66,-0.05599203044536494],[118,-24,67,-0.09817418480698042],[118,-24,68,-0.13274154756100123],[118,-24,69,-0.22669800296392914],[118,-24,70,-0.28181011221070973],[118,-24,71,-0.2922771178526185],[118,-24,72,-0.28222401033127215],[118,-24,73,-0.27769657496061345],[118,-24,74,-0.27636796853570283],[118,-24,75,-0.2785299508908506],[118,-24,76,-0.2785447538518224],[118,-24,77,-0.2769809630641068],[118,-24,78,-0.27524888214182497],[118,-24,79,-0.2723311492539879],[118,-23,64,0.07975079136492802],[118,-23,65,0.00206244740998629],[118,-23,66,-0.11127127766221115],[118,-23,67,-0.19019487842612953],[118,-23,68,-0.2507279732936088],[118,-23,69,-0.2974117453524467],[118,-23,70,-0.295965555857595],[118,-23,71,-0.29366271351087025],[118,-23,72,-0.2902001338481067],[118,-23,73,-0.28586615635093304],[118,-23,74,-0.2883057122939219],[118,-23,75,-0.28801987417428293],[118,-23,76,-0.28653243485021357],[118,-23,77,-0.2813339130891797],[118,-23,78,-0.27969710750436105],[118,-23,79,-0.27111016467151755],[118,-22,64,0.09107385526869421],[118,-22,65,-0.011236798376612511],[118,-22,66,-0.09511383590120365],[118,-22,67,-0.1717606479343935],[118,-22,68,-0.2505460515946386],[118,-22,69,-0.29081938632003335],[118,-22,70,-0.2913438996431471],[118,-22,71,-0.2895416852513015],[118,-22,72,-0.28936403398772315],[118,-22,73,-0.285987464502362],[118,-22,74,-0.2869709479682348],[118,-22,75,-0.28433567151719286],[118,-22,76,-0.2831065645830127],[118,-22,77,-0.2787820331693041],[118,-22,78,-0.27583473737065684],[118,-22,79,-0.2694321023026468],[118,-21,64,0.15026061784791134],[118,-21,65,0.04609064285284897],[118,-21,66,-0.011905935157877356],[118,-21,67,-0.08285658321485098],[118,-21,68,-0.16217471844192716],[118,-21,69,-0.20681095381273568],[118,-21,70,-0.27365097900487473],[118,-21,71,-0.2906158019855516],[118,-21,72,-0.29204954327830923],[118,-21,73,-0.2882172267660573],[118,-21,74,-0.2902416431011714],[118,-21,75,-0.2868541762328765],[118,-21,76,-0.284129733176568],[118,-21,77,-0.28025668955619],[118,-21,78,-0.27733182724268934],[118,-21,79,-0.27447434643655083],[118,-20,64,0.11218753185293728],[118,-20,65,0.0296532576318837],[118,-20,66,-0.03353921513057534],[118,-20,67,-0.08179654499091107],[118,-20,68,-0.1272717082131948],[118,-20,69,-0.18962842492735466],[118,-20,70,-0.25858952821455433],[118,-20,71,-0.2879292783034689],[118,-20,72,-0.2874033389786447],[118,-20,73,-0.27086023114202834],[118,-20,74,-0.28919043058953564],[118,-20,75,-0.2849994048522332],[118,-20,76,-0.2842301530537566],[118,-20,77,-0.2782845685101356],[118,-20,78,-0.2765240796989828],[118,-20,79,-0.2771399912376049],[118,-19,64,0.19312837765098229],[118,-19,65,0.10025851752951065],[118,-19,66,0.0010021079787172482],[118,-19,67,-0.027768345811132744],[118,-19,68,-0.06203908961277918],[118,-19,69,-0.15906317697699873],[118,-19,70,-0.20135558327110373],[118,-19,71,-0.2696552293995162],[118,-19,72,-0.2661621477846797],[118,-19,73,-0.1881716827127093],[118,-19,74,-0.21967881850455506],[118,-19,75,-0.27159657075430105],[118,-19,76,-0.2719022072933067],[118,-19,77,-0.2673775866534797],[118,-19,78,-0.26613808220637003],[118,-19,79,-0.2669075476578256],[118,-18,64,0.1840146593901961],[118,-18,65,0.08032648299354608],[118,-18,66,-0.02057697872019651],[118,-18,67,-0.0333747141233611],[118,-18,68,-0.07518060685125616],[118,-18,69,-0.17908607705497442],[118,-18,70,-0.18429514131536745],[118,-18,71,-0.23194386902959713],[118,-18,72,-0.2307690355585077],[118,-18,73,-0.16335996153713067],[118,-18,74,-0.2024910353449896],[118,-18,75,-0.26592797796861417],[118,-18,76,-0.2692864162907572],[118,-18,77,-0.2638834983031072],[118,-18,78,-0.2614110828502845],[118,-18,79,-0.2639191425474348],[118,-17,64,0.17455923936589188],[118,-17,65,0.06745725094316951],[118,-17,66,-0.04311069795405564],[118,-17,67,-0.03753106495940958],[118,-17,68,-0.10083041136804566],[118,-17,69,-0.19291829819898698],[118,-17,70,-0.16189604860985446],[118,-17,71,-0.2266570825626442],[118,-17,72,-0.2164385531382756],[118,-17,73,-0.14783482202455583],[118,-17,74,-0.2095064218107736],[118,-17,75,-0.26345773617056295],[118,-17,76,-0.26823597599892857],[118,-17,77,-0.2607242821465471],[118,-17,78,-0.25908912623038594],[118,-17,79,-0.26194582651759946],[118,-16,64,0.17538215990060427],[118,-16,65,0.12843538816036837],[118,-16,66,0.02878246305988741],[118,-16,67,0.03665917934611529],[118,-16,68,-0.023850367515167253],[118,-16,69,-0.11407452819457528],[118,-16,70,-0.10396930759275527],[118,-16,71,-0.15694378202304],[118,-16,72,-0.10136341404463903],[118,-16,73,-0.04422036900042431],[118,-16,74,-0.13570433413548005],[118,-16,75,-0.18526729365361036],[118,-16,76,-0.26248789051146626],[118,-16,77,-0.25775657605150526],[118,-16,78,-0.2563549075907029],[118,-16,79,-0.2601878950048529],[118,-15,64,0.17305410169168614],[118,-15,65,0.10979236189904087],[118,-15,66,0.026753629948432972],[118,-15,67,0.02418530853985451],[118,-15,68,-0.007475478278996528],[118,-15,69,-0.08749136244738859],[118,-15,70,-0.1034217885625186],[118,-15,71,-0.14602707514520152],[118,-15,72,-0.07612830330650269],[118,-15,73,-0.03768690527292373],[118,-15,74,-0.14723916455519132],[118,-15,75,-0.2024426253803867],[118,-15,76,-0.2597402423339826],[118,-15,77,-0.25834319628462366],[118,-15,78,-0.2560751813180686],[118,-15,79,-0.2586318569344629],[118,-14,64,0.058742008547304284],[118,-14,65,-0.0056889690176151475],[118,-14,66,-0.04400562025933438],[118,-14,67,-0.05938181058208061],[118,-14,68,-0.05698618099665487],[118,-14,69,-0.1145825664123492],[118,-14,70,-0.1280034753788165],[118,-14,71,-0.1673510636357658],[118,-14,72,-0.10860480448724105],[118,-14,73,-0.09029694713067124],[118,-14,74,-0.15654243057572897],[118,-14,75,-0.21418240480372874],[118,-14,76,-0.25332795008984155],[118,-14,77,-0.2529034683169368],[118,-14,78,-0.2531236719926092],[118,-14,79,-0.2529542357635749],[118,-13,64,0.061742510683801766],[118,-13,65,0.03054756774800757],[118,-13,66,0.0046535637399025],[118,-13,67,-0.016339434644887407],[118,-13,68,-0.008032898056038129],[118,-13,69,-0.05072878313158555],[118,-13,70,-0.07282621840974893],[118,-13,71,-0.11643793598228794],[118,-13,72,-0.046303975969397004],[118,-13,73,-0.048085881811817666],[118,-13,74,-0.09249521549172454],[118,-13,75,-0.16861791025925907],[118,-13,76,-0.2553122936283758],[118,-13,77,-0.2511273922519966],[118,-13,78,-0.2535867612363769],[118,-13,79,-0.25376606942837576],[118,-12,64,0.05099906426451406],[118,-12,65,-0.0024582183579685557],[118,-12,66,-0.018442961782490108],[118,-12,67,-0.02801902346424634],[118,-12,68,-0.024850936809475838],[118,-12,69,-0.055885244092715086],[118,-12,70,-0.0674377420789348],[118,-12,71,-0.11183914432106598],[118,-12,72,-0.04379095871133215],[118,-12,73,-0.054740742080341465],[118,-12,74,-0.12533176930599355],[118,-12,75,-0.18719482585197128],[118,-12,76,-0.2538848854681609],[118,-12,77,-0.24831016146165202],[118,-12,78,-0.25182073920874615],[118,-12,79,-0.25171568249982473],[118,-11,64,0.05461833054317006],[118,-11,65,0.04075339888359991],[118,-11,66,0.009813647568282347],[118,-11,67,-3.81959118987224E-4],[118,-11,68,-0.001172997103506379],[118,-11,69,-0.04045540306579526],[118,-11,70,-0.03551690956230122],[118,-11,71,-0.05697094073768255],[118,-11,72,0.0017457866772133124],[118,-11,73,-0.008856971958962512],[118,-11,74,-0.08181328826265882],[118,-11,75,-0.1341163992871266],[118,-11,76,-0.22200781577821294],[118,-11,77,-0.22350551297409604],[118,-11,78,-0.2287213425108527],[118,-11,79,-0.23223651598389317],[118,-10,64,0.044422579294678355],[118,-10,65,0.015521538889145675],[118,-10,66,-0.015238751253413896],[118,-10,67,-0.002280532409566993],[118,-10,68,-0.023923086847350172],[118,-10,69,-0.06115071871927494],[118,-10,70,-0.038061672628339094],[118,-10,71,-0.06582093958510701],[118,-10,72,-0.009394016077536094],[118,-10,73,-0.04555066375807662],[118,-10,74,-0.12576487080952986],[118,-10,75,-0.16323827472909735],[118,-10,76,-0.2192215333363849],[118,-10,77,-0.22079308516369273],[118,-10,78,-0.22335113787888078],[118,-10,79,-0.22563632967991418],[118,-9,64,0.052716175498740525],[118,-9,65,0.006614626075909152],[118,-9,66,-0.02440828047540708],[118,-9,67,-0.017642934109169228],[118,-9,68,-0.038510826347346705],[118,-9,69,-0.05953033464930155],[118,-9,70,-0.04172679222909259],[118,-9,71,-0.07835332612213658],[118,-9,72,-0.0333259750529461],[118,-9,73,-0.08537706339295867],[118,-9,74,-0.1646869843360935],[118,-9,75,-0.1753358679476556],[118,-9,76,-0.21453317221159518],[118,-9,77,-0.2177882577068348],[118,-9,78,-0.22069328000250568],[118,-9,79,-0.21768587257758704],[118,-8,64,0.038531757804745576],[118,-8,65,-0.06042032955645554],[118,-8,66,-0.08242734439587471],[118,-8,67,-0.08729094867480598],[118,-8,68,-0.07927060542301087],[118,-8,69,-0.09317158843338928],[118,-8,70,-0.07388250044534868],[118,-8,71,-0.1148944009517631],[118,-8,72,-0.0807443324391485],[118,-8,73,-0.1626522607317033],[118,-8,74,-0.20829401956206336],[118,-8,75,-0.2085555717066356],[118,-8,76,-0.2067830968488611],[118,-8,77,-0.21293010101437077],[118,-8,78,-0.21799505679024783],[118,-8,79,-0.21445536309539348],[118,-7,64,0.018537871014463136],[118,-7,65,-0.0654969376224571],[118,-7,66,-0.09600394828606575],[118,-7,67,-0.11516944098640669],[118,-7,68,-0.09454594799410357],[118,-7,69,-0.09912914115388174],[118,-7,70,-0.07804882346164317],[118,-7,71,-0.11978510527822536],[118,-7,72,-0.10168778327359672],[118,-7,73,-0.19136098825565012],[118,-7,74,-0.1993830868332923],[118,-7,75,-0.20185008436452107],[118,-7,76,-0.2024221690565003],[118,-7,77,-0.2083638327663427],[118,-7,78,-0.21392811114857482],[118,-7,79,-0.2115869257934731],[118,-6,64,0.008475151803287923],[118,-6,65,-0.07852554760230857],[118,-6,66,-0.10565326349764204],[118,-6,67,-0.14426117574910088],[118,-6,68,-0.10454079578619681],[118,-6,69,-0.08656223408366705],[118,-6,70,-0.07703642823336637],[118,-6,71,-0.11739866026229501],[118,-6,72,-0.13478975069008778],[118,-6,73,-0.19033418255573278],[118,-6,74,-0.1937714876907316],[118,-6,75,-0.19662991366772248],[118,-6,76,-0.19805711317618588],[118,-6,77,-0.20310794112417263],[118,-6,78,-0.20906721986677737],[118,-6,79,-0.20830090189771328],[118,-5,64,-0.028795768220386403],[118,-5,65,-0.06426563564221666],[118,-5,66,-0.0535557003117918],[118,-5,67,-0.044887634412906],[118,-5,68,0.011420212204862334],[118,-5,69,0.04013636665110715],[118,-5,70,0.038381404309312916],[118,-5,71,-0.009388364746520966],[118,-5,72,-0.07145426781031515],[118,-5,73,-0.1648615902188698],[118,-5,74,-0.19602581715478853],[118,-5,75,-0.19558963907156465],[118,-5,76,-0.19918380714473627],[118,-5,77,-0.20287618982408404],[118,-5,78,-0.20870118277349287],[118,-5,79,-0.20791302995276484],[118,-4,64,-0.050515919005916204],[118,-4,65,-0.07505798477750761],[118,-4,66,-0.0796481750560693],[118,-4,67,-0.058813643663402804],[118,-4,68,-0.0015261867831306564],[118,-4,69,0.010911968081797868],[118,-4,70,0.021124678087542786],[118,-4,71,-0.02509120531940548],[118,-4,72,-0.09232652436503053],[118,-4,73,-0.1755749354894791],[118,-4,74,-0.19541214101492688],[118,-4,75,-0.19557646021055938],[118,-4,76,-0.200944961598124],[118,-4,77,-0.2049980889595183],[118,-4,78,-0.20995568684973764],[118,-4,79,-0.20698213756843292],[118,-3,64,-0.031612327412868846],[118,-3,65,-0.05738223392806367],[118,-3,66,-0.06030859136390815],[118,-3,67,-0.014529703848428666],[118,-3,68,0.04440788813239596],[118,-3,69,0.051937875753235885],[118,-3,70,0.07134509698150981],[118,-3,71,0.02936173250268659],[118,-3,72,-0.045715403324070925],[118,-3,73,-0.11743383776043774],[118,-3,74,-0.2002921097466268],[118,-3,75,-0.2044353562139769],[118,-3,76,-0.2091578594079781],[118,-3,77,-0.21001448966085864],[118,-3,78,-0.21090173539591908],[118,-3,79,-0.20489418582622188],[118,-2,64,-0.04145911179797321],[118,-2,65,-0.07323837494924515],[118,-2,66,-0.07742713671631239],[118,-2,67,-0.025336289872707696],[118,-2,68,0.03059693912756173],[118,-2,69,0.03335276043191901],[118,-2,70,0.04786622603245538],[118,-2,71,0.008932907128536532],[118,-2,72,-0.04524579335631396],[118,-2,73,-0.1274255011077809],[118,-2,74,-0.19747284469003348],[118,-2,75,-0.1996179696125181],[118,-2,76,-0.2060785596115216],[118,-2,77,-0.205385341403478],[118,-2,78,-0.20551169849317774],[118,-2,79,-0.2041956462867657],[118,-1,64,-0.011432019115602154],[118,-1,65,-0.04803348177425264],[118,-1,66,-0.05863959328849354],[118,-1,67,-0.022848575996107928],[118,-1,68,0.018175152188608712],[118,-1,69,0.02633803442399346],[118,-1,70,0.03311325219115194],[118,-1,71,-0.00897722496654585],[118,-1,72,-0.042438544700149045],[118,-1,73,-0.1185148786445817],[118,-1,74,-0.1873354332827091],[118,-1,75,-0.19497649105867168],[118,-1,76,-0.20217869028410404],[118,-1,77,-0.2015898859532219],[118,-1,78,-0.20323992485039516],[118,-1,79,-0.20082148502957914],[118,0,64,-0.027923133241566866],[118,0,65,-0.024238597208924823],[118,0,66,-0.02345987302430247],[118,0,67,-0.024848261711364353],[118,0,68,-0.034150528279697306],[118,0,69,-0.04412104601872724],[118,0,70,-0.052334632719103186],[118,0,71,-0.06028182390535111],[118,0,72,-0.0644418748310673],[118,0,73,-0.06951677276328141],[118,0,74,-0.06969688194856088],[118,0,75,-0.07720081399230946],[118,0,76,-0.08742476334447338],[118,0,77,-0.09177202322751232],[118,0,78,-0.09559572854154039],[118,0,79,-0.09554304519904366],[118,1,64,-0.025629800776503744],[118,1,65,-0.024046008735328098],[118,1,66,-0.024917204338087542],[118,1,67,-0.024211944262303275],[118,1,68,-0.033899372076220555],[118,1,69,-0.042198672384944944],[118,1,70,-0.04852010036626639],[118,1,71,-0.055456137599095054],[118,1,72,-0.059650846372015176],[118,1,73,-0.06729470587863476],[118,1,74,-0.06979588323030828],[118,1,75,-0.07903805907563499],[118,1,76,-0.0875383525538368],[118,1,77,-0.09170374888368787],[118,1,78,-0.0936167374196347],[118,1,79,-0.09117000212922932],[118,2,64,-0.02433462245046665],[118,2,65,-0.024309850895523635],[118,2,66,-0.024610713405866028],[118,2,67,-0.02609444022489006],[118,2,68,-0.03286551469708329],[118,2,69,-0.0405244322908537],[118,2,70,-0.045520106701558344],[118,2,71,-0.05246560141010681],[118,2,72,-0.05881040648097102],[118,2,73,-0.06776212948758031],[118,2,74,-0.07046648285376088],[118,2,75,-0.07643596013977835],[118,2,76,-0.08523168306161286],[118,2,77,-0.08963486447743771],[118,2,78,-0.09151877689595547],[118,2,79,-0.08851843544358447],[118,3,64,-0.025640650532802373],[118,3,65,-0.025506235475651548],[118,3,66,-0.026142311475808255],[118,3,67,-0.02938567838335092],[118,3,68,-0.03136029604175304],[118,3,69,-0.03770770102652171],[118,3,70,-0.04493441239359544],[118,3,71,-0.04889387163009032],[118,3,72,-0.05772320939041821],[118,3,73,-0.06351578920550126],[118,3,74,-0.06786020375850815],[118,3,75,-0.07192217683169265],[118,3,76,-0.07914927839708913],[118,3,77,-0.08542982737797444],[118,3,78,-0.08916971284410702],[118,3,79,-0.08473400822039914],[118,4,64,-0.023877321639920013],[118,4,65,-0.025563382230337717],[118,4,66,-0.026847551016609905],[118,4,67,-0.02936188406142079],[118,4,68,-0.0339674744182929],[118,4,69,-0.039657852122443396],[118,4,70,-0.045920834039221106],[118,4,71,-0.04925083817871087],[118,4,72,-0.05513671415316404],[118,4,73,-0.059637019546235126],[118,4,74,-0.06462339094861275],[118,4,75,-0.06898607119331217],[118,4,76,-0.07684352967727884],[118,4,77,-0.08168777893691201],[118,4,78,-0.0835265622693617],[118,4,79,-0.0808251403373841],[118,5,64,-0.026092445228184213],[118,5,65,-0.025298535749261802],[118,5,66,-0.024926473765353604],[118,5,67,-0.0276364800435267],[118,5,68,-0.034606241041143265],[118,5,69,-0.03958572358325532],[118,5,70,-0.04486765330406274],[118,5,71,-0.04890592234228963],[118,5,72,-0.05333635461817504],[118,5,73,-0.05513541172784539],[118,5,74,-0.06182035359158937],[118,5,75,-0.06572720381281118],[118,5,76,-0.07318617860859788],[118,5,77,-0.07498884029415674],[118,5,78,-0.0784341012909055],[118,5,79,-0.07842027185537456],[118,6,64,-0.027955656097355633],[118,6,65,-0.024840764865422124],[118,6,66,-0.023663535268379637],[118,6,67,-0.02682797194892865],[118,6,68,-0.034288296018726655],[118,6,69,-0.039164226418010706],[118,6,70,-0.045214103687641366],[118,6,71,-0.047687238821454994],[118,6,72,-0.047555465637522276],[118,6,73,-0.051402997743870124],[118,6,74,-0.05746654352749883],[118,6,75,-0.06092824086770071],[118,6,76,-0.06725787347327664],[118,6,77,-0.06844979704274357],[118,6,78,-0.07295737135524795],[118,6,79,-0.07649703278234112],[118,7,64,-0.027863349825823447],[118,7,65,-0.026870307149673714],[118,7,66,-0.023718664903600542],[118,7,67,-0.026310618051035697],[118,7,68,-0.03132375263043752],[118,7,69,-0.0382001477352919],[118,7,70,-0.04145465252565389],[118,7,71,-0.043804679987688916],[118,7,72,-0.043969236356137184],[118,7,73,-0.046317452404844334],[118,7,74,-0.052832635263010005],[118,7,75,-0.054840896769057346],[118,7,76,-0.061463353457789624],[118,7,77,-0.06308839811993738],[118,7,78,-0.06650072221872073],[118,7,79,-0.07154947936598977],[118,8,64,-0.028098691625004918],[118,8,65,-0.023882521841628118],[118,8,66,-0.01970089908323855],[118,8,67,-0.02444004724516552],[118,8,68,-0.025387181525527602],[118,8,69,-0.028073093130041887],[118,8,70,-0.02808809758107833],[118,8,71,-0.031550619678778466],[118,8,72,-0.031296565510812474],[118,8,73,-0.03371648521130366],[118,8,74,-0.03617850240160736],[118,8,75,-0.04031436150492482],[118,8,76,-0.04636222105526458],[118,8,77,-0.04671892690320828],[118,8,78,-0.04896042287986417],[118,8,79,-0.054614071198692826],[118,9,64,-0.02552402493584459],[118,9,65,-0.02267413664305927],[118,9,66,-0.022077489003305625],[118,9,67,-0.024166297021126215],[118,9,68,-0.026812308196322646],[118,9,69,-0.02707998462898359],[118,9,70,-0.02765384419814182],[118,9,71,-0.03216463185738039],[118,9,72,-0.03296799748133333],[118,9,73,-0.03554238034818746],[118,9,74,-0.035523599551783275],[118,9,75,-0.04285711718438159],[118,9,76,-0.044340666355178304],[118,9,77,-0.04186790290518999],[118,9,78,-0.03952541366053948],[118,9,79,-0.04199115222384672],[118,10,64,-0.02550584597215734],[118,10,65,-0.023456052301038324],[118,10,66,-0.02588029866061417],[118,10,67,-0.024897268495336314],[118,10,68,-0.025586874489732472],[118,10,69,-0.026468325629507378],[118,10,70,-0.02800115874089998],[118,10,71,-0.03047297317295522],[118,10,72,-0.034189421541612114],[118,10,73,-0.03125607877836871],[118,10,74,-0.034104483183373197],[118,10,75,-0.04107987113237471],[118,10,76,-0.03949974040328161],[118,10,77,-0.03690007374017924],[118,10,78,-0.03679402314012728],[118,10,79,-0.039040480735480027],[118,11,64,-0.027200444126519854],[118,11,65,-0.022693803125159076],[118,11,66,-0.026244086218409984],[118,11,67,-0.02693229193862351],[118,11,68,-0.027605749827746592],[118,11,69,-0.02735438670214216],[118,11,70,-0.029205597364010794],[118,11,71,-0.029519948477532115],[118,11,72,-0.032752199345154845],[118,11,73,-0.030703605227242747],[118,11,74,-0.03307680081070771],[118,11,75,-0.037164519489507636],[118,11,76,-0.033267087580042626],[118,11,77,-0.03244869058668279],[118,11,78,-0.03566342545055311],[118,11,79,-0.037213036437431596],[118,12,64,-0.026984777870917062],[118,12,65,-0.024292305237028355],[118,12,66,-0.02718650841243425],[118,12,67,-0.0289594119762364],[118,12,68,-0.03296029727334937],[118,12,69,-0.03350409530629056],[118,12,70,-0.0339355507537378],[118,12,71,-0.03271769497613916],[118,12,72,-0.034096408174263515],[118,12,73,-0.03310418580525154],[118,12,74,-0.03397265173114346],[118,12,75,-0.03585528892211304],[118,12,76,-0.03446213586985365],[118,12,77,-0.03394703657549364],[118,12,78,-0.03861248790992565],[118,12,79,-0.03866900230314288],[118,13,64,-0.03307987677275695],[118,13,65,-0.030420278931820546],[118,13,66,-0.027742964142267956],[118,13,67,-0.02479438401551108],[118,13,68,-0.029647428572332768],[118,13,69,-0.030144834498908757],[118,13,70,-0.02819747534151254],[118,13,71,-0.028401698456017824],[118,13,72,-0.02531059582365351],[118,13,73,-0.02442713111983108],[118,13,74,-0.023419411206795998],[118,13,75,-0.026719309524514873],[118,13,76,-0.027808267992042446],[118,13,77,-0.03139777056914769],[118,13,78,-0.03972117905463854],[118,13,79,-0.042830273273045505],[118,14,64,-0.034071962013410825],[118,14,65,-0.029264512718933752],[118,14,66,-0.025331015557498573],[118,14,67,-0.022613238301753685],[118,14,68,-0.025364854466822295],[118,14,69,-0.02702827851255267],[118,14,70,-0.02662986879290695],[118,14,71,-0.024400947619768215],[118,14,72,-0.024761576063104473],[118,14,73,-0.021781583749014455],[118,14,74,-0.020015462856680655],[118,14,75,-0.024140468483234118],[118,14,76,-0.027252490318970216],[118,14,77,-0.030648264147041554],[118,14,78,-0.037510369649768074],[118,14,79,-0.04073041237615749],[118,15,64,-0.03250250953150037],[118,15,65,-0.027236041427424737],[118,15,66,-0.02245956892023207],[118,15,67,-0.020962937234431225],[118,15,68,-0.022577762536118],[118,15,69,-0.024307898039402198],[118,15,70,-0.02307327624681027],[118,15,71,-0.018516048010859848],[118,15,72,-0.020803672704199472],[118,15,73,-0.02132007411937442],[118,15,74,-0.020258507531840858],[118,15,75,-0.021574616613908304],[118,15,76,-0.024850981312566092],[118,15,77,-0.03009866255340754],[118,15,78,-0.03523297561223057],[118,15,79,-0.03830133631894138],[118,16,64,-0.032343769970742786],[118,16,65,-0.02941288473127912],[118,16,66,-0.021151379656873665],[118,16,67,-0.016752861867298074],[118,16,68,-0.01730940200454631],[118,16,69,-0.019677663972088366],[118,16,70,-0.016086284010990465],[118,16,71,-0.011435509940643906],[118,16,72,-0.011879153760916444],[118,16,73,-0.012166616155008109],[118,16,74,-0.010766814904662358],[118,16,75,-0.010962289601284092],[118,16,76,-0.014145707098559224],[118,16,77,-0.01716581920322721],[118,16,78,-0.02365960092513067],[118,16,79,-0.02458850656476],[118,17,64,-0.031604829848241436],[118,17,65,-0.026067903161293704],[118,17,66,-0.018440518297735964],[118,17,67,-0.013062503327542552],[118,17,68,-0.015190552544701086],[118,17,69,-0.01756404082590035],[118,17,70,-0.013252393382111732],[118,17,71,-0.01121785267894615],[118,17,72,-0.010844204056321194],[118,17,73,-0.011220288573145915],[118,17,74,-0.010686537703705062],[118,17,75,-0.010727945174641956],[118,17,76,-0.012199467805712794],[118,17,77,-0.012236651377398655],[118,17,78,-0.02094107672168033],[118,17,79,-0.025616682119243714],[118,18,64,-0.03048063645855298],[118,18,65,-0.022785904550901404],[118,18,66,-0.01513736929500592],[118,18,67,-0.010950272776146908],[118,18,68,-0.014473089273264794],[118,18,69,-0.013175093529039256],[118,18,70,-0.01142577921366611],[118,18,71,-0.010048710051587917],[118,18,72,-0.010931466777446719],[118,18,73,-0.013588398829766007],[118,18,74,-0.010266551605245339],[118,18,75,-0.010617453889550793],[118,18,76,-0.011454328446340895],[118,18,77,-0.010334040642577508],[118,18,78,-0.017478335681452878],[118,18,79,-0.026794362973889596],[118,19,64,-0.029747657876192865],[118,19,65,-0.023203181825323757],[118,19,66,-0.014204723451257062],[118,19,67,-0.010852174516188695],[118,19,68,-0.012048650637084851],[118,19,69,-0.013655437285671035],[118,19,70,-0.011188506326178488],[118,19,71,-0.008846964507832289],[118,19,72,-0.01121309510476945],[118,19,73,-0.015095992362545746],[118,19,74,-0.009582972060049322],[118,19,75,-0.010198394690852847],[118,19,76,-0.010658791156348046],[118,19,77,-0.01133878082278833],[118,19,78,-0.01718985068675835],[118,19,79,-0.02617059624256983],[118,20,64,-0.02789738998973354],[118,20,65,-0.026775856398922326],[118,20,66,-0.018035249060480596],[118,20,67,-0.01327665478285045],[118,20,68,-0.013286392174503947],[118,20,69,-0.017144945526821165],[118,20,70,-0.015336553709688117],[118,20,71,-0.017068897771211622],[118,20,72,-0.01753034557157304],[118,20,73,-0.019554563225405552],[118,20,74,-0.016220751048453774],[118,20,75,-0.014661828998704635],[118,20,76,-0.014290834599884311],[118,20,77,-0.016284695444464287],[118,20,78,-0.02186930890840358],[118,20,79,-0.029261834300060657],[118,21,64,-0.016415251937338143],[118,21,65,-0.014273634590657863],[118,21,66,-0.008071571373834852],[118,21,67,-0.0032231318045658486],[118,21,68,-0.005012646325913056],[118,21,69,-0.013927471961061644],[118,21,70,-0.016523564723799566],[118,21,71,-0.0199053193628915],[118,21,72,-0.02382175442523532],[118,21,73,-0.027657642860029114],[118,21,74,-0.027818575654359162],[118,21,75,-0.02717791378028092],[118,21,76,-0.0275131715102703],[118,21,77,-0.028953068093080764],[118,21,78,-0.029674984805615118],[118,21,79,-0.03458152828331498],[118,22,64,-0.018255780153666995],[118,22,65,-0.01388224190224141],[118,22,66,-0.006679074652491346],[118,22,67,-0.0022540893056907374],[118,22,68,-0.004238526581545443],[118,22,69,-0.01343646729658482],[118,22,70,-0.018253599706942042],[118,22,71,-0.020662406522245255],[118,22,72,-0.024874959768356228],[118,22,73,-0.027883622320838478],[118,22,74,-0.027209184289300026],[118,22,75,-0.026337744410725422],[118,22,76,-0.029259130516352705],[118,22,77,-0.03044781676495678],[118,22,78,-0.031620300709420235],[118,22,79,-0.0328432117260673],[118,23,64,-0.015212663786662486],[118,23,65,-0.011537294199406078],[118,23,66,-0.002946669422707382],[118,23,67,-0.0013991719184160145],[118,23,68,-0.00558303780795627],[118,23,69,-0.012542682166118035],[118,23,70,-0.01823830195155071],[118,23,71,-0.019058463837656858],[118,23,72,-0.024982962237834028],[118,23,73,-0.02712646213929415],[118,23,74,-0.025787613066896836],[118,23,75,-0.02686263383287303],[118,23,76,-0.031502755290399156],[118,23,77,-0.03154361356670564],[118,23,78,-0.031068921695722923],[118,23,79,-0.03158949151271881],[118,24,64,-0.005101795434862222],[118,24,65,-0.0027163820828440544],[118,24,66,0.0054233951370488975],[118,24,67,0.008191638332547824],[118,24,68,0.00433105412327342],[118,24,69,-0.002827041303457428],[118,24,70,-0.009772101269670846],[118,24,71,-0.011313164110423268],[118,24,72,-0.0165162206645674],[118,24,73,-0.017661300952048598],[118,24,74,-0.015994642522997954],[118,24,75,-0.0162882775228384],[118,24,76,-0.021614919174051145],[118,24,77,-0.021793600042491784],[118,24,78,-0.02286856867360329],[118,24,79,-0.020645755152495004],[118,25,64,0.004820581315718775],[118,25,65,0.002410514453353163],[118,25,66,0.004332101592764981],[118,25,67,0.003345171385625234],[118,25,68,0.0017335017331539804],[118,25,69,-0.005784896288612229],[118,25,70,-0.010481646149066326],[118,25,71,-0.008718792564714223],[118,25,72,-0.007983998028190026],[118,25,73,-0.008013238774570608],[118,25,74,-0.004796862158996662],[118,25,75,-0.007461938044558303],[118,25,76,-0.015360344945693383],[118,25,77,-0.018285584220841727],[118,25,78,-0.021774789605833844],[118,25,79,-0.021148067562022338],[118,26,64,0.006092626090136388],[118,26,65,0.0035948916085729588],[118,26,66,0.0037032870472992196],[118,26,67,0.002200591309482275],[118,26,68,1.8796257744482792E-4],[118,26,69,-0.004296481581853445],[118,26,70,-0.008700216145470036],[118,26,71,-0.0073183236821345865],[118,26,72,-0.008176537083820268],[118,26,73,-0.007604014987035779],[118,26,74,-0.004494578529143672],[118,26,75,-0.007194848262530695],[118,26,76,-0.014669992623530026],[118,26,77,-0.021501655000234182],[118,26,78,-0.02322335052006158],[118,26,79,-0.021220491030997907],[118,27,64,0.009801635420884747],[118,27,65,0.007781315039681075],[118,27,66,0.0038050289429792106],[118,27,67,0.0014665113590394963],[118,27,68,-0.001612811222976157],[118,27,69,-0.005064294777294864],[118,27,70,-0.009719021755714263],[118,27,71,-0.006003921144113189],[118,27,72,-0.007584854796303164],[118,27,73,-0.00853192374490161],[118,27,74,-0.008497273605088895],[118,27,75,-0.00791172432598028],[118,27,76,-0.015258988366665338],[118,27,77,-0.019688645206109467],[118,27,78,-0.023085552871350223],[118,27,79,-0.02609869982025137],[118,28,64,0.010242292281037263],[118,28,65,0.008286473763043034],[118,28,66,0.001267555364401679],[118,28,67,1.716935948695153E-4],[118,28,68,-0.006286318353462467],[118,28,69,-0.010732921463392109],[118,28,70,-0.016622345542235323],[118,28,71,-0.013768538116991857],[118,28,72,-0.016261376743346656],[118,28,73,-0.016927736140114946],[118,28,74,-0.01649871556482793],[118,28,75,-0.018779000447949667],[118,28,76,-0.022737777591540886],[118,28,77,-0.025518137626974913],[118,28,78,-0.026797130754585105],[118,28,79,-0.03309205192090593],[118,29,64,0.00615607002282037],[118,29,65,0.004532212849305994],[118,29,66,2.167360663486162E-4],[118,29,67,-0.0016259704364871286],[118,29,68,-0.008005842275989106],[118,29,69,-0.013001291345706822],[118,29,70,-0.019697412448624607],[118,29,71,-0.021036707702104557],[118,29,72,-0.023554130226906722],[118,29,73,-0.023346587959049134],[118,29,74,-0.022705135296509596],[118,29,75,-0.022264425457720116],[118,29,76,-0.025987424215865224],[118,29,77,-0.02772842894865038],[118,29,78,-0.027582584538261512],[118,29,79,-0.03466325704445958],[118,30,64,0.00910420939337206],[118,30,65,0.006848537278236422],[118,30,66,0.0030000890572348116],[118,30,67,-0.001719949084443284],[118,30,68,-0.00623295228853854],[118,30,69,-0.016644417369844233],[118,30,70,-0.023257853128407002],[118,30,71,-0.02753868962341853],[118,30,72,-0.02729614533091701],[118,30,73,-0.02808349190326101],[118,30,74,-0.026731186932257733],[118,30,75,-0.02604646056064902],[118,30,76,-0.029413306891049096],[118,30,77,-0.03298460536190105],[118,30,78,-0.031288706863843774],[118,30,79,-0.03669638864720323],[118,31,64,0.013808480679568746],[118,31,65,0.012145667121041509],[118,31,66,0.0020052598176508174],[118,31,67,-0.002601253764350775],[118,31,68,-0.007838722672765697],[118,31,69,-0.018610960987134523],[118,31,70,-0.026271543601453035],[118,31,71,-0.030197905296236643],[118,31,72,-0.029872384047994943],[118,31,73,-0.0323212686661023],[118,31,74,-0.03221374604488783],[118,31,75,-0.035327426885724295],[118,31,76,-0.03379750688991204],[118,31,77,-0.037121203601718375],[118,31,78,-0.03687216596632768],[118,31,79,-0.03765634030963706],[118,32,64,0.02693946307261541],[118,32,65,0.02208904123967781],[118,32,66,0.01530922775342844],[118,32,67,0.009595359441192886],[118,32,68,0.0027308154321766254],[118,32,69,-0.008391772123439334],[118,32,70,-0.015290144878167655],[118,32,71,-0.018863892522282044],[118,32,72,-0.019975521240484517],[118,32,73,-0.026333040022222642],[118,32,74,-0.026648112610641816],[118,32,75,-0.029694967787588344],[118,32,76,-0.027709685382161287],[118,32,77,-0.030517048170655314],[118,32,78,-0.027770657242699004],[118,32,79,-0.027673071778562652],[118,33,64,0.029031287644926573],[118,33,65,0.02411115404212974],[118,33,66,0.01820723179042097],[118,33,67,0.017340017940227104],[118,33,68,0.01031719963086275],[118,33,69,-0.0014683879054560867],[118,33,70,-0.00989660380417376],[118,33,71,-0.01680319229770022],[118,33,72,-0.025617329629371854],[118,33,73,-0.037967661233175104],[118,33,74,-0.04110792058451371],[118,33,75,-0.04353554654944308],[118,33,76,-0.04026786674625968],[118,33,77,-0.03893199479931028],[118,33,78,-0.03517644186159258],[118,33,79,-0.030025398913964663],[118,34,64,0.02808517549106898],[118,34,65,0.024139506427705515],[118,34,66,0.018799077178730833],[118,34,67,0.016325064909288756],[118,34,68,0.010013407035935812],[118,34,69,-3.2888140576586844E-4],[118,34,70,-0.008987548580278254],[118,34,71,-0.018049513641513804],[118,34,72,-0.025494627164193623],[118,34,73,-0.037270299157472694],[118,34,74,-0.041070132402101486],[118,34,75,-0.04510201586351836],[118,34,76,-0.04277829978784034],[118,34,77,-0.04050207249911156],[118,34,78,-0.036673209485710345],[118,34,79,-0.03118241185287221],[118,35,64,0.027706565914346698],[118,35,65,0.023896198993949014],[118,35,66,0.020522008408216164],[118,35,67,0.017279977858158546],[118,35,68,0.009111294102764622],[118,35,69,-9.122579447420898E-5],[118,35,70,-0.009264197333531787],[118,35,71,-0.01947485690821099],[118,35,72,-0.027391111219577186],[118,35,73,-0.03896468967186474],[118,35,74,-0.04211184071067006],[118,35,75,-0.04623670591657604],[118,35,76,-0.043298237239964565],[118,35,77,-0.04260178850649203],[118,35,78,-0.03734126839242419],[118,35,79,-0.031237392275412612],[118,36,64,0.020631493628419262],[118,36,65,0.01738942787483344],[118,36,66,0.015278994401399126],[118,36,67,0.012698544551066865],[118,36,68,0.0023879990131622786],[118,36,69,-0.00679939097679072],[118,36,70,-0.017631845331765622],[118,36,71,-0.028611717957543234],[118,36,72,-0.03556397411502517],[118,36,73,-0.04549451833806163],[118,36,74,-0.04775187909886103],[118,36,75,-0.051387258601396715],[118,36,76,-0.04913204492006194],[118,36,77,-0.0471171862389379],[118,36,78,-0.04473072867790624],[118,36,79,-0.037478497148767165],[118,37,64,0.019181690334940465],[118,37,65,0.016299392381771305],[118,37,66,0.009447926015638236],[118,37,67,6.053471191580506E-4],[118,37,68,-0.008987705674470714],[118,37,69,-0.02014769194984828],[118,37,70,-0.0321599467423474],[118,37,71,-0.0373356444717433],[118,37,72,-0.03841629046565574],[118,37,73,-0.04201204808153147],[118,37,74,-0.04642246318011721],[118,37,75,-0.04532229965633229],[118,37,76,-0.04604124912787551],[118,37,77,-0.043150288459543065],[118,37,78,-0.04156952326305821],[118,37,79,-0.03710974262888975],[118,38,64,0.020116300416384292],[118,38,65,0.016722787209197232],[118,38,66,0.008127472575337497],[118,38,67,-4.504031755483695E-4],[118,38,68,-0.009600098776242239],[118,38,69,-0.02105121558836566],[118,38,70,-0.03436522023406384],[118,38,71,-0.03735436126138905],[118,38,72,-0.0409532630790619],[118,38,73,-0.043895371089347074],[118,38,74,-0.04565544237497743],[118,38,75,-0.04530367084086756],[118,38,76,-0.045694359821925545],[118,38,77,-0.044396710813783075],[118,38,78,-0.04114729424832082],[118,38,79,-0.03702949912875818],[118,39,64,0.02144466456321406],[118,39,65,0.018482876914005825],[118,39,66,0.008384770061059976],[118,39,67,-0.0018978153161305356],[118,39,68,-0.010967658603508568],[118,39,69,-0.020802314223174176],[118,39,70,-0.03398267709329608],[118,39,71,-0.0389577937419662],[118,39,72,-0.041277533694494134],[118,39,73,-0.04336203385476742],[118,39,74,-0.04408779328262054],[118,39,75,-0.044085058490048123],[118,39,76,-0.04504239941340041],[118,39,77,-0.04426714589835151],[118,39,78,-0.04220754469731797],[118,39,79,-0.03624396392721985],[118,40,64,0.03559222483671645],[118,40,65,0.031144829268891894],[118,40,66,0.019371021029598312],[118,40,67,0.010020424055027816],[118,40,68,-1.7215071132267723E-4],[118,40,69,-0.008764193086378907],[118,40,70,-0.020402006353632623],[118,40,71,-0.025630418969396232],[118,40,72,-0.027748508487559803],[118,40,73,-0.02655401876572097],[118,40,74,-0.030907013244616408],[118,40,75,-0.03053299673277031],[118,40,76,-0.029906382251720112],[118,40,77,-0.03214180127427749],[118,40,78,-0.02991747156465334],[118,40,79,-0.02054156718929878],[118,41,64,0.036205026252730976],[118,41,65,0.03206874262832926],[118,41,66,0.020435377624657886],[118,41,67,0.012314472329678167],[118,41,68,0.0028446454604451055],[118,41,69,-0.007047747909392693],[118,41,70,-0.019890719603537943],[118,41,71,-0.02463872831702424],[118,41,72,-0.027322484487932272],[118,41,73,-0.0244743031498416],[118,41,74,-0.029579628144471917],[118,41,75,-0.030761928193790353],[118,41,76,-0.030745684442638532],[118,41,77,-0.0293316425441969],[118,41,78,-0.028774774476160322],[118,41,79,-0.018855886858230198],[118,42,64,0.03593458809882072],[118,42,65,0.030785633370077004],[118,42,66,0.02394439202646384],[118,42,67,0.015585561255889668],[118,42,68,0.003168164225175879],[118,42,69,-0.007765149196578919],[118,42,70,-0.01964023503216908],[118,42,71,-0.024395980125631947],[118,42,72,-0.0253569905401025],[118,42,73,-0.024844258514216122],[118,42,74,-0.02749796458716583],[118,42,75,-0.029177956564760923],[118,42,76,-0.030896206074607496],[118,42,77,-0.03028194982254931],[118,42,78,-0.028857926443822346],[118,42,79,-0.01856637095080288],[118,43,64,0.03328831159676132],[118,43,65,0.03146794137095099],[118,43,66,0.024130254504290072],[118,43,67,0.014979828596391798],[118,43,68,0.003396612746544375],[118,43,69,-0.009093647685965989],[118,43,70,-0.018043972007049436],[118,43,71,-0.022822376559856278],[118,43,72,-0.022771834893622403],[118,43,73,-0.026158993037896386],[118,43,74,-0.026825594708699635],[118,43,75,-0.02659461847964839],[118,43,76,-0.030095676627431275],[118,43,77,-0.030715945443678824],[118,43,78,-0.02874607019410383],[118,43,79,-0.018014296946976732],[118,44,64,0.02583480643990904],[118,44,65,0.022733511965561226],[118,44,66,0.018546603597522054],[118,44,67,0.007744409010602887],[118,44,68,-0.003620693062979352],[118,44,69,-0.014381130696645816],[118,44,70,-0.022052027107686778],[118,44,71,-0.02675391679115903],[118,44,72,-0.029696452782232985],[118,44,73,-0.03355022846373468],[118,44,74,-0.03257093670474222],[118,44,75,-0.031982823993122814],[118,44,76,-0.03537915546154691],[118,44,77,-0.034613748821400725],[118,44,78,-0.03298320667061022],[118,44,79,-0.023981782836846613],[118,45,64,0.0148563929758104],[118,45,65,0.014658345750610646],[118,45,66,0.01762880070659356],[118,45,67,0.012444952981374463],[118,45,68,0.007321322182432477],[118,45,69,0.0015107974266355961],[118,45,70,-0.001588882848419293],[118,45,71,-0.00497016094649852],[118,45,72,-0.009725684390453654],[118,45,73,-0.017064530079771212],[118,45,74,-0.01819053156006714],[118,45,75,-0.01914657721530147],[118,45,76,-0.021952968014624832],[118,45,77,-0.021259056135974397],[118,45,78,-0.023322200542080493],[118,45,79,-0.0191416249440039],[118,46,64,0.012409815978952382],[118,46,65,0.013483105908585702],[118,46,66,0.016706317956141137],[118,46,67,0.011130224702476127],[118,46,68,0.006277869474097003],[118,46,69,9.663587674172414E-4],[118,46,70,-0.0015674236348389159],[118,46,71,-0.0024327902113734368],[118,46,72,-0.009012379140343446],[118,46,73,-0.017969065066242962],[118,46,74,-0.018862478814760997],[118,46,75,-0.018045676067144995],[118,46,76,-0.02021612063372291],[118,46,77,-0.021136955355065254],[118,46,78,-0.02283764392323359],[118,46,79,-0.021346279532530488],[118,47,64,0.012032123725465665],[118,47,65,0.013426168916492232],[118,47,66,0.013027294839315973],[118,47,67,0.007380430887771211],[118,47,68,0.006448717383884167],[118,47,69,5.545052459418887E-4],[118,47,70,0.001973352068300377],[118,47,71,-0.0012784685151663866],[118,47,72,-0.008067078211760503],[118,47,73,-0.017798354806262462],[118,47,74,-0.020905298162132824],[118,47,75,-0.016853478243324893],[118,47,76,-0.018360626844977607],[118,47,77,-0.021081616994920838],[118,47,78,-0.021481454000721226],[118,47,79,-0.01995226764990507],[118,48,64,0.024560684982102843],[118,48,65,0.02848798158524632],[118,48,66,0.022901151371864187],[118,48,67,0.019310629438924864],[118,48,68,0.021355046754536894],[118,48,69,0.01617305955955775],[118,48,70,0.016780772620155815],[118,48,71,0.012001266799294752],[118,48,72,0.004672949289997896],[118,48,73,-0.004515256705924869],[118,48,74,-0.004287003699810027],[118,48,75,-0.002765193960318879],[118,48,76,-0.004487086411689073],[118,48,77,-0.0076781935429815484],[118,48,78,-0.008285322969929676],[118,48,79,-0.005306820686695218],[118,49,64,0.015367552045005978],[118,49,65,0.018786057771091685],[118,49,66,0.015829432852746766],[118,49,67,0.015198179406124557],[118,49,68,0.014911107766643339],[118,49,69,0.015386692350820186],[118,49,70,0.013301702926584447],[118,49,71,0.010668444563043972],[118,49,72,0.005058618346390292],[118,49,73,-8.375625143331733E-4],[118,49,74,-3.513706705719766E-4],[118,49,75,6.378234390786441E-4],[118,49,76,-0.0038565975714741907],[118,49,77,-0.004867167425502056],[118,49,78,-0.004597218647945517],[118,49,79,-0.0034635926920560944],[118,50,64,0.01139025192458304],[118,50,65,0.014514153953610387],[118,50,66,0.010347606893780975],[118,50,67,0.01324649053226748],[118,50,68,0.013260900377054186],[118,50,69,0.01548715302294254],[118,50,70,0.01222328724176383],[118,50,71,0.010235240301574938],[118,50,72,0.004230033558067364],[118,50,73,0.0010544993120585877],[118,50,74,-7.930001263423136E-7],[118,50,75,-8.643725204393604E-5],[118,50,76,-0.004137798873384779],[118,50,77,-0.002631153201404196],[118,50,78,-0.002119699938444214],[118,50,79,8.267323597377363E-4],[118,51,64,0.005703022685486975],[118,51,65,0.01080106800830466],[118,51,66,0.005604248686507052],[118,51,67,0.007771108464049797],[118,51,68,0.009815034000713374],[118,51,69,0.01270832469846997],[118,51,70,0.01182608557366227],[118,51,71,0.009105030170450695],[118,51,72,0.0034741743024888916],[118,51,73,0.001984322139439415],[118,51,74,-1.6916965628174796E-4],[118,51,75,2.996117402696008E-4],[118,51,76,-0.0033813234537121983],[118,51,77,-0.0028802485274864176],[118,51,78,-0.0014858532614817066],[118,51,79,-1.3268436192834243E-4],[118,52,64,0.034000524781460095],[118,52,65,0.03632613150385314],[118,52,66,0.033893765379613416],[118,52,67,0.033487650001091246],[118,52,68,0.03723151181505277],[118,52,69,0.03927513759515783],[118,52,70,0.03926402988237265],[118,52,71,0.03748491423515965],[118,52,72,0.03165825889465965],[118,52,73,0.030089241180699583],[118,52,74,0.029752060429567795],[118,52,75,0.028198822842827376],[118,52,76,0.024188935610482742],[118,52,77,0.026546805065916057],[118,52,78,0.025592701579248894],[118,52,79,0.02656527530697561],[118,53,64,0.036925775619920304],[118,53,65,0.036342204379788134],[118,53,66,0.032120231936636934],[118,53,67,0.029790015509376627],[118,53,68,0.028126450425168037],[118,53,69,0.026753302997605338],[118,53,70,0.026983422282780334],[118,53,71,0.02406924393980836],[118,53,72,0.0198878460355493],[118,53,73,0.019188310523787416],[118,53,74,0.019193785118676865],[118,53,75,0.01924125633893997],[118,53,76,0.015067513288475887],[118,53,77,0.01849369744678006],[118,53,78,0.019585060144645117],[118,53,79,0.021069348987406783],[118,54,64,0.034680293672112616],[118,54,65,0.03382575200348417],[118,54,66,0.02985804909621742],[118,54,67,0.027930370311968877],[118,54,68,0.025005717526723314],[118,54,69,0.02419309587383761],[118,54,70,0.02381543352949439],[118,54,71,0.020152984500945992],[118,54,72,0.019599651105047078],[118,54,73,0.01620327040440281],[118,54,74,0.017218699667985393],[118,54,75,0.017844400744342737],[118,54,76,0.01582179158995961],[118,54,77,0.016748716085265486],[118,54,78,0.019642728129238812],[118,54,79,0.01744703050583013],[118,55,64,0.0342800273032868],[118,55,65,0.030817413467449595],[118,55,66,0.02509949051175822],[118,55,67,0.02448844699044564],[118,55,68,0.01881923485371373],[118,55,69,0.019751299171680392],[118,55,70,0.019642872473909723],[118,55,71,0.01870552073800097],[118,55,72,0.016036924023936833],[118,55,73,0.011952827266092203],[118,55,74,0.013078639109933093],[118,55,75,0.012015230351342915],[118,55,76,0.016281471816578075],[118,55,77,0.01747094601261895],[118,55,78,0.019487154676064905],[118,55,79,0.01686599244772613],[118,56,64,0.048980317828147074],[118,56,65,0.042716871007327656],[118,56,66,0.03725770431192463],[118,56,67,0.03613720450067509],[118,56,68,0.0323393272847072],[118,56,69,0.02841252261679314],[118,56,70,0.02890451311308906],[118,56,71,0.029493417740789174],[118,56,72,0.02609618906443195],[118,56,73,0.021359875898290887],[118,56,74,0.02476792843843767],[118,56,75,0.02471493951168921],[118,56,76,0.0284404012896049],[118,56,77,0.03116964008490805],[118,56,78,0.03461942125925088],[118,56,79,0.03179184499019913],[118,57,64,0.04437231985207876],[118,57,65,0.03865557517362192],[118,57,66,0.035287301698659373],[118,57,67,0.030244585348114583],[118,57,68,0.027811193283722946],[118,57,69,0.020782277612445915],[118,57,70,0.01970402473632818],[118,57,71,0.019984878549205498],[118,57,72,0.013136238692570773],[118,57,73,0.009921022126160112],[118,57,74,0.013743770521936899],[118,57,75,0.013362925746324389],[118,57,76,0.015713047904237054],[118,57,77,0.017442158176094347],[118,57,78,0.021364254853739245],[118,57,79,0.023280689053079173],[118,58,64,0.0839748766919293],[118,58,65,0.08016052872672784],[118,58,66,0.07498639187994881],[118,58,67,0.06843245329106819],[118,58,68,0.06143747416723899],[118,58,69,0.05748365669864537],[118,58,70,0.05720724513002824],[118,58,71,0.055410934532412165],[118,58,72,0.04980096071161526],[118,58,73,0.04497767530935805],[118,58,74,0.04940764667702359],[118,58,75,0.04903864384225365],[118,58,76,0.05092522381582505],[118,58,77,0.051195226031007166],[118,58,78,0.05292519034181595],[118,58,79,0.05604075323868711],[118,59,64,0.08323395652131364],[118,59,65,0.07705437291444024],[118,59,66,0.07337313140034633],[118,59,67,0.06354397752372488],[118,59,68,0.05677563767521765],[118,59,69,0.054386257934482124],[118,59,70,0.05355727434876405],[118,59,71,0.05318001841748038],[118,59,72,0.04957507819849963],[118,59,73,0.04573723679681596],[118,59,74,0.04812130756987759],[118,59,75,0.04898885329886643],[118,59,76,0.049608224454501984],[118,59,77,0.051920044870861284],[118,59,78,0.05334882565913973],[118,59,79,0.055522370293905096],[118,60,64,0.07625383784433586],[118,60,65,0.06797713764216663],[118,60,66,0.06217689661724836],[118,60,67,0.053245548032753345],[118,60,68,0.046522566648761435],[118,60,69,0.04637817933746627],[118,60,70,0.04718323640579136],[118,60,71,0.04678293961203363],[118,60,72,0.041438478066682674],[118,60,73,0.03944387577526408],[118,60,74,0.04141767482698305],[118,60,75,0.0422876036744593],[118,60,76,0.04407038446754796],[118,60,77,0.04768934158631492],[118,60,78,0.04677866128806092],[118,60,79,0.04793006842200481],[118,61,64,0.08914548889271356],[118,61,65,0.07535430432612134],[118,61,66,0.06128120485154383],[118,61,67,0.04903457567287385],[118,61,68,0.04265133738251356],[118,61,69,0.04102094056794414],[118,61,70,0.039476959292599076],[118,61,71,0.03902077756471503],[118,61,72,0.035985397463337954],[118,61,73,0.0387805804240615],[118,61,74,0.040355494585291],[118,61,75,0.04547166537102812],[118,61,76,0.04755475399783747],[118,61,77,0.0499527956685753],[118,61,78,0.05176182313422309],[118,61,79,0.05392528513692879],[118,62,64,0.08675226422072348],[118,62,65,0.07317131849709803],[118,62,66,0.05713612195448685],[118,62,67,0.04775073617659786],[118,62,68,0.04236022275760745],[118,62,69,0.03876115045588853],[118,62,70,0.03545656139779958],[118,62,71,0.034785771616327746],[118,62,72,0.0330517530296342],[118,62,73,0.03711212158373173],[118,62,74,0.040359100945138476],[118,62,75,0.04710273228592303],[118,62,76,0.04912888941710314],[118,62,77,0.05090010578054317],[118,62,78,0.05170453061236106],[118,62,79,0.053695958195957585],[118,63,64,0.013209880412027059],[118,63,65,-0.0012842525712575131],[118,63,66,-0.01642221276810453],[118,63,67,-0.022949412737103866],[118,63,68,-0.03040346091552333],[118,63,69,-0.03421347420106528],[118,63,70,-0.03851137590287182],[118,63,71,-0.035754456707410565],[118,63,72,-0.03698424364491548],[118,63,73,-0.03268465605384946],[118,63,74,-0.026301225817217902],[118,63,75,-0.02133636588013614],[118,63,76,-0.01654678148930483],[118,63,77,-0.014329679701182416],[118,63,78,-0.014247535609995032],[118,63,79,-0.01194362535839151],[118,64,64,0.02307986484657426],[118,64,65,0.006699397158818468],[118,64,66,-0.008951185135784537],[118,64,67,-0.015294341250338031],[118,64,68,-0.021387429535404387],[118,64,69,-0.023710180785115137],[118,64,70,-0.02972008288309161],[118,64,71,-0.02775083094725876],[118,64,72,-0.027491609696675495],[118,64,73,-0.023687905871066242],[118,64,74,-0.0191516350839792],[118,64,75,-0.013603468706905625],[118,64,76,-0.007315465037594615],[118,64,77,-0.005080028133149436],[118,64,78,-0.005912941617290932],[118,64,79,-0.003794277345507427],[118,65,64,0.02052004782291801],[118,65,65,0.005637521519095995],[118,65,66,-0.01196225543704156],[118,65,67,-0.0179479653348662],[118,65,68,-0.02192328015836574],[118,65,69,-0.023986378846625966],[118,65,70,-0.030219601067058594],[118,65,71,-0.031151452098154606],[118,65,72,-0.03045939642114831],[118,65,73,-0.024783817998134186],[118,65,74,-0.02153405331500466],[118,65,75,-0.0141833518854491],[118,65,76,-0.009251908871263564],[118,65,77,-0.008939563192802757],[118,65,78,-0.007304315821936538],[118,65,79,-0.004953506291112811],[118,66,64,0.013955033752481916],[118,66,65,-0.001693146128430717],[118,66,66,-0.018514706881112897],[118,66,67,-0.02430038946269683],[118,66,68,-0.02965124217080206],[118,66,69,-0.03097104257712671],[118,66,70,-0.03412386919120687],[118,66,71,-0.037430007927883646],[118,66,72,-0.036702456767598396],[118,66,73,-0.03299832618105729],[118,66,74,-0.030035779733269846],[118,66,75,-0.021337477915142677],[118,66,76,-0.015865957440896597],[118,66,77,-0.015681614404660663],[118,66,78,-0.013586654090798705],[118,66,79,-0.01224397586366388],[118,67,64,0.01112777715941625],[118,67,65,-0.0022167946591455795],[118,67,66,-0.018324623092595152],[118,67,67,-0.025750385644479415],[118,67,68,-0.03054744822758078],[118,67,69,-0.03508874602071688],[118,67,70,-0.03523853621774925],[118,67,71,-0.035183788877694244],[118,67,72,-0.03592407745358199],[118,67,73,-0.0357876606337474],[118,67,74,-0.03125167908299298],[118,67,75,-0.02266090560343806],[118,67,76,-0.017255260190254307],[118,67,77,-0.016018992482927152],[118,67,78,-0.014966420333516223],[118,67,79,-0.01456020245429937],[118,68,64,-0.0827330617612759],[118,68,65,-0.09357406683263174],[118,68,66,-0.10946932323692299],[118,68,67,-0.1160996589553781],[118,68,68,-0.12323405984924733],[118,68,69,-0.12740728694536768],[118,68,70,-0.12384862918552929],[118,68,71,-0.12208823944708136],[118,68,72,-0.12283673283524808],[118,68,73,-0.1256447869247368],[118,68,74,-0.12248847288323363],[118,68,75,-0.11485620637966076],[118,68,76,-0.10970486480524301],[118,68,77,-0.10520270162539072],[118,68,78,-0.10572344361826735],[118,68,79,-0.10352626976726705],[118,69,64,-0.0952131924074731],[118,69,65,-0.10157641514201438],[118,69,66,-0.10915598486273972],[118,69,67,-0.1152214498814808],[118,69,68,-0.11271146127459872],[118,69,69,-0.11083136278152184],[118,69,70,-0.10777287216860137],[118,69,71,-0.10168356444815685],[118,69,72,-0.10337595057148044],[118,69,73,-0.1104457498239454],[118,69,74,-0.10764140520626563],[118,69,75,-0.10117890482731864],[118,69,76,-0.09815506372249436],[118,69,77,-0.09459546777786507],[118,69,78,-0.09343624902361061],[118,69,79,-0.095359496353625],[118,70,64,-0.0999316382162372],[118,70,65,-0.10475931199875936],[118,70,66,-0.10895985369023913],[118,70,67,-0.11643709719181969],[118,70,68,-0.11161815694707798],[118,70,69,-0.10913683515683444],[118,70,70,-0.10807540208569857],[118,70,71,-0.10249533478317586],[118,70,72,-0.10501693581566751],[118,70,73,-0.11278869811185678],[118,70,74,-0.10892958483200421],[118,70,75,-0.10161110801321416],[118,70,76,-0.10403733240935167],[118,70,77,-0.0999771028480983],[118,70,78,-0.09765310034704017],[118,70,79,-0.09809934805641707],[118,71,64,-0.09460573482101646],[118,71,65,-0.09891842671147077],[118,71,66,-0.10199746522417953],[118,71,67,-0.10736560805917304],[118,71,68,-0.10460577548088026],[118,71,69,-0.0990579294570132],[118,71,70,-0.09828581542245957],[118,71,71,-0.09550757400442668],[118,71,72,-0.09652027320414137],[118,71,73,-0.10198428241769296],[118,71,74,-0.09974839752396375],[118,71,75,-0.09584839030337997],[118,71,76,-0.09895811481002133],[118,71,77,-0.09448712512836273],[118,71,78,-0.09067221119710275],[118,71,79,-0.09213628483064235],[118,72,64,-0.10011361329024235],[118,72,65,-0.10330547155485992],[118,72,66,-0.10500436828403165],[118,72,67,-0.10752867322322879],[118,72,68,-0.10706506101080435],[118,72,69,-0.10368716684504996],[118,72,70,-0.09983470095467006],[118,72,71,-0.0971238895803966],[118,72,72,-0.09768496623344995],[118,72,73,-0.10263361824197728],[118,72,74,-0.09923044838145734],[118,72,75,-0.09999412131543353],[118,72,76,-0.10036360651387788],[118,72,77,-0.09853861946025008],[118,72,78,-0.0953849508281888],[118,72,79,-0.09533113191890027],[118,73,64,-0.11129219176907411],[118,73,65,-0.11286806519260914],[118,73,66,-0.11506090978441261],[118,73,67,-0.11249204791562699],[118,73,68,-0.112445269052278],[118,73,69,-0.10818318750533575],[118,73,70,-0.10365519907293518],[118,73,71,-0.10088839885730208],[118,73,72,-0.09804174411070184],[118,73,73,-0.10162492554870917],[118,73,74,-0.0998149569810399],[118,73,75,-0.10145980014621704],[118,73,76,-0.09972684500889913],[118,73,77,-0.10142659774244782],[118,73,78,-0.10605422873775772],[118,73,79,-0.1066458209451418],[118,74,64,-0.12082671275192475],[118,74,65,-0.12223414228766318],[118,74,66,-0.1272191225152558],[118,74,67,-0.12226774837174237],[118,74,68,-0.119983884207917],[118,74,69,-0.11592750490430792],[118,74,70,-0.1115296825981917],[118,74,71,-0.11064801893749629],[118,74,72,-0.10861955441395785],[118,74,73,-0.11188082032581424],[118,74,74,-0.110110218410439],[118,74,75,-0.1112129286817577],[118,74,76,-0.1082990328626212],[118,74,77,-0.11014079143821229],[118,74,78,-0.11633535259517289],[118,74,79,-0.11726343938328636],[118,75,64,-0.12163561211573364],[118,75,65,-0.12488870015348168],[118,75,66,-0.13051861618522],[118,75,67,-0.12688749323546625],[118,75,68,-0.1255975700944647],[118,75,69,-0.11836638594458192],[118,75,70,-0.11055045154993501],[118,75,71,-0.1140666101391119],[118,75,72,-0.11224657911183666],[118,75,73,-0.11313488154156608],[118,75,74,-0.11484844317927263],[118,75,75,-0.1148818441381789],[118,75,76,-0.11063835021275774],[118,75,77,-0.11168039299528591],[118,75,78,-0.12085442537000768],[118,75,79,-0.1227693018332337],[118,76,64,-0.1200710038424981],[118,76,65,-0.12534884099070825],[118,76,66,-0.12734955339160586],[118,76,67,-0.12423374187468261],[118,76,68,-0.12296123436410057],[118,76,69,-0.11886706954825998],[118,76,70,-0.1110307241260696],[118,76,71,-0.11143930846969487],[118,76,72,-0.11116961009600486],[118,76,73,-0.11055423753727019],[118,76,74,-0.11427797135891574],[118,76,75,-0.11378544098106874],[118,76,76,-0.11007914155234745],[118,76,77,-0.11281297567117224],[118,76,78,-0.11983977340440943],[118,76,79,-0.12532891446837222],[118,77,64,-0.12374822182496178],[118,77,65,-0.1300522604858917],[118,77,66,-0.13159467369819403],[118,77,67,-0.12844434814268763],[118,77,68,-0.1284818812261408],[118,77,69,-0.12872330931630868],[118,77,70,-0.12259013367014612],[118,77,71,-0.12237743054056706],[118,77,72,-0.12164491460253603],[118,77,73,-0.1224129799863923],[118,77,74,-0.12639445974432845],[118,77,75,-0.12464121298379811],[118,77,76,-0.12147084368860545],[118,77,77,-0.12560328793520023],[118,77,78,-0.1315016418855392],[118,77,79,-0.13436951045879286],[118,78,64,-0.12894284000838954],[118,78,65,-0.13509734941759555],[118,78,66,-0.13315451664279898],[118,78,67,-0.12836345077794978],[118,78,68,-0.12906708219175161],[118,78,69,-0.12942689947980324],[118,78,70,-0.12435560363178315],[118,78,71,-0.12483828548634049],[118,78,72,-0.12519011681053638],[118,78,73,-0.12351658787322209],[118,78,74,-0.1281378350220913],[118,78,75,-0.12702380796652984],[118,78,76,-0.12633648723642787],[118,78,77,-0.13062075231706183],[118,78,78,-0.13810564666367886],[118,78,79,-0.14031260084070935],[118,79,64,-0.12205609459334449],[118,79,65,-0.1254818810437996],[118,79,66,-0.1263206654098981],[118,79,67,-0.12261723863242302],[118,79,68,-0.12240111652308805],[118,79,69,-0.12200158333163691],[118,79,70,-0.1161024411413815],[118,79,71,-0.11762608003791335],[118,79,72,-0.12070361502553043],[118,79,73,-0.11935002784171012],[118,79,74,-0.12115781208697082],[118,79,75,-0.12381740318219432],[118,79,76,-0.12475352166810727],[118,79,77,-0.12813266461146786],[118,79,78,-0.13594524709412262],[118,79,79,-0.13895403784195098],[118,80,64,-0.12376917245590818],[118,80,65,-0.1262056928331458],[118,80,66,-0.12877694749978197],[118,80,67,-0.12528128396921712],[118,80,68,-0.12611326086906516],[118,80,69,-0.1233074298808165],[118,80,70,-0.11506062827559155],[118,80,71,-0.11904800141866535],[118,80,72,-0.12516012072212856],[118,80,73,-0.12483945377683899],[118,80,74,-0.12501692202181913],[118,80,75,-0.12780217124704346],[118,80,76,-0.13121908834451051],[118,80,77,-0.13523205925946893],[118,80,78,-0.14006693834359965],[118,80,79,-0.14445387319853242],[118,81,64,-0.11589865236009836],[118,81,65,-0.1173898127248635],[118,81,66,-0.11910043255625824],[118,81,67,-0.11898476076743925],[118,81,68,-0.12091303000496643],[118,81,69,-0.11392911377858643],[118,81,70,-0.10982324112015887],[118,81,71,-0.11481867762466628],[118,81,72,-0.12447192151905905],[118,81,73,-0.12886535764997437],[118,81,74,-0.12692815322156104],[118,81,75,-0.13105406476064585],[118,81,76,-0.1333639011017123],[118,81,77,-0.1428500373593679],[118,81,78,-0.14760464026375475],[118,81,79,-0.15436318745703692],[118,82,64,-0.12223650258559321],[118,82,65,-0.125024513978952],[118,82,66,-0.12512123919364707],[118,82,67,-0.12697055751541683],[118,82,68,-0.12811864116260502],[118,82,69,-0.12251687010545938],[118,82,70,-0.11946783238832866],[118,82,71,-0.12541654687193565],[118,82,72,-0.13204261724642744],[118,82,73,-0.14066915047001663],[118,82,74,-0.13904323177490432],[118,82,75,-0.1431130413882583],[118,82,76,-0.14306791119005507],[118,82,77,-0.15063799629819669],[118,82,78,-0.1576395068328324],[118,82,79,-0.16381001715537646],[118,83,64,-0.12260991952956256],[118,83,65,-0.12737592133760403],[118,83,66,-0.12651801079995145],[118,83,67,-0.12914899356991463],[118,83,68,-0.12682260422962674],[118,83,69,-0.1263939610901618],[118,83,70,-0.12660246618582116],[118,83,71,-0.13085207269592145],[118,83,72,-0.1361692768217823],[118,83,73,-0.14242427398459173],[118,83,74,-0.14548916328763853],[118,83,75,-0.14612022779329464],[118,83,76,-0.1451177554703349],[118,83,77,-0.15389338869998273],[118,83,78,-0.16078494070154442],[118,83,79,-0.16887074059180548],[118,84,64,-0.11968824122920951],[118,84,65,-0.1278579696573556],[118,84,66,-0.1262304783919784],[118,84,67,-0.12976180021472955],[118,84,68,-0.127728834751853],[118,84,69,-0.128477309550189],[118,84,70,-0.12884388047330197],[118,84,71,-0.13453957423541513],[118,84,72,-0.13970482948107574],[118,84,73,-0.14576118911725583],[118,84,74,-0.14953518639720315],[118,84,75,-0.14855329283856863],[118,84,76,-0.14854603460414878],[118,84,77,-0.15334188829753687],[118,84,78,-0.16124696726978432],[118,84,79,-0.16949889660528167],[118,85,64,-0.1403782750996937],[118,85,65,-0.14521258801425635],[118,85,66,-0.14819485445573377],[118,85,67,-0.1508623317670818],[118,85,68,-0.1498128681498676],[118,85,69,-0.15211417052500462],[118,85,70,-0.15271199644354447],[118,85,71,-0.15747476314166423],[118,85,72,-0.16003528929868027],[118,85,73,-0.1629926344681406],[118,85,74,-0.16771954804559733],[118,85,75,-0.16647620958900164],[118,85,76,-0.16533438990438634],[118,85,77,-0.1664875216855662],[118,85,78,-0.1659141313590005],[118,85,79,-0.17211224666980945],[118,86,64,-0.14333747105880945],[118,86,65,-0.14874338051579822],[118,86,66,-0.15030675217826503],[118,86,67,-0.15339886318460313],[118,86,68,-0.1512353100957599],[118,86,69,-0.15571409101087413],[118,86,70,-0.15808390738916497],[118,86,71,-0.1598404806750328],[118,86,72,-0.1626741795389418],[118,86,73,-0.16588850525035348],[118,86,74,-0.17068203579042146],[118,86,75,-0.16748201077873973],[118,86,76,-0.16862281134727156],[118,86,77,-0.17039089658285142],[118,86,78,-0.17031564274550104],[118,86,79,-0.17548616367451686],[118,87,64,-0.13558557382370623],[118,87,65,-0.13908544859797617],[118,87,66,-0.1436334999122337],[118,87,67,-0.14678528762443133],[118,87,68,-0.1471379820346519],[118,87,69,-0.14987564637963535],[118,87,70,-0.14900676159071813],[118,87,71,-0.1530875294762264],[118,87,72,-0.15562250653261825],[118,87,73,-0.15901869018294204],[118,87,74,-0.16411532591694034],[118,87,75,-0.1635494892013823],[118,87,76,-0.16473670592738954],[118,87,77,-0.16630805106593835],[118,87,78,-0.16648582804076217],[118,87,79,-0.1694147715884855],[118,88,64,-0.1354311554559014],[118,88,65,-0.14051281721978157],[118,88,66,-0.1459450810055587],[118,88,67,-0.14995988635191015],[118,88,68,-0.1507556005003026],[118,88,69,-0.15087640731507915],[118,88,70,-0.149753654466674],[118,88,71,-0.1533666776328107],[118,88,72,-0.15728514825682044],[118,88,73,-0.15951671527240352],[118,88,74,-0.16436137509962032],[118,88,75,-0.16455840428320764],[118,88,76,-0.16437195380893332],[118,88,77,-0.16781408727208402],[118,88,78,-0.1681415468435728],[118,88,79,-0.1697523340256456],[118,89,64,-0.1371685721368705],[118,89,65,-0.14056884552238952],[118,89,66,-0.1457182207307171],[118,89,67,-0.15285067123422275],[118,89,68,-0.15008918225967816],[118,89,69,-0.1519345339917606],[118,89,70,-0.1499982909333315],[118,89,71,-0.15105472773569245],[118,89,72,-0.15686499916750396],[118,89,73,-0.1597292189758821],[118,89,74,-0.163893010151581],[118,89,75,-0.16397816102083596],[118,89,76,-0.16416658026978537],[118,89,77,-0.16780324443928546],[118,89,78,-0.1676499845390022],[118,89,79,-0.17003176566439837],[118,90,64,-0.142215196911084],[118,90,65,-0.14620888691803485],[118,90,66,-0.15226377638197722],[118,90,67,-0.15698822860538092],[118,90,68,-0.15448084772988724],[118,90,69,-0.15667356945901284],[118,90,70,-0.1549373884019532],[118,90,71,-0.15659820452646867],[118,90,72,-0.16165979472658445],[118,90,73,-0.16356611919953157],[118,90,74,-0.16897212069106757],[118,90,75,-0.16808053179418875],[118,90,76,-0.16949311088128555],[118,90,77,-0.1733766700084387],[118,90,78,-0.17534199270704365],[118,90,79,-0.1771035697568663],[118,91,64,-0.14161759380211314],[118,91,65,-0.1484991960198433],[118,91,66,-0.15295249956367712],[118,91,67,-0.15341329317363295],[118,91,68,-0.15377655786796918],[118,91,69,-0.15621450813211712],[118,91,70,-0.1528795796974361],[118,91,71,-0.15640758953336292],[118,91,72,-0.16065916086995624],[118,91,73,-0.1653240840815689],[118,91,74,-0.16913617291916452],[118,91,75,-0.16924896854214116],[118,91,76,-0.17016129826343626],[118,91,77,-0.17339171912592888],[118,91,78,-0.17927501186782194],[118,91,79,-0.17859898557833245],[118,92,64,-0.1156552804124038],[118,92,65,-0.12274053817582262],[118,92,66,-0.1280004319989938],[118,92,67,-0.12533131288929686],[118,92,68,-0.1299494596027273],[118,92,69,-0.1321210794128302],[118,92,70,-0.1293592080723913],[118,92,71,-0.1340982254258833],[118,92,72,-0.13989833110794078],[118,92,73,-0.14503119261637465],[118,92,74,-0.14944940913140947],[118,92,75,-0.14992305538232448],[118,92,76,-0.15023975758488234],[118,92,77,-0.15313157292504115],[118,92,78,-0.15882781803832438],[118,92,79,-0.1597509534051506],[118,93,64,-0.11313777411994502],[118,93,65,-0.12097831166688869],[118,93,66,-0.1233437836447554],[118,93,67,-0.12390795318631767],[118,93,68,-0.12936222037801726],[118,93,69,-0.1340700209542983],[118,93,70,-0.1299089206917436],[118,93,71,-0.13433904779529987],[118,93,72,-0.1420799854079094],[118,93,73,-0.14784537080301283],[118,93,74,-0.1504497654571638],[118,93,75,-0.15211577190142872],[118,93,76,-0.1535175404199185],[118,93,77,-0.15442737292348224],[118,93,78,-0.158824043883883],[118,93,79,-0.15956832289598555],[118,94,64,-0.11270194410597509],[118,94,65,-0.11815521976423113],[118,94,66,-0.12113631619474594],[118,94,67,-0.12392200239630649],[118,94,68,-0.13061981309106577],[118,94,69,-0.1333365381825045],[118,94,70,-0.1314862762666147],[118,94,71,-0.13646364598741367],[118,94,72,-0.14115219769847803],[118,94,73,-0.14482643267380263],[118,94,74,-0.14954456153581436],[118,94,75,-0.15217100401907052],[118,94,76,-0.15338891584665781],[118,94,77,-0.15514079018854426],[118,94,78,-0.15848142486269956],[118,94,79,-0.16041747825125927],[118,95,64,-0.10332209472158115],[118,95,65,-0.1065692783442607],[118,95,66,-0.1117131784938979],[118,95,67,-0.11598682663206109],[118,95,68,-0.12365280841552954],[118,95,69,-0.12437644991779846],[118,95,70,-0.12267395083167491],[118,95,71,-0.12904838446430972],[118,95,72,-0.1324085712219423],[118,95,73,-0.13463314264659662],[118,95,74,-0.13857173816694685],[118,95,75,-0.14241015804014895],[118,95,76,-0.14579335491317946],[118,95,77,-0.14795644885038994],[118,95,78,-0.15292854787296456],[118,95,79,-0.15504654608456042],[118,96,64,-0.10152907599898628],[118,96,65,-0.10394780980265757],[118,96,66,-0.10991175882330524],[118,96,67,-0.11933589219845962],[118,96,68,-0.12266109824826694],[118,96,69,-0.12200307537738232],[118,96,70,-0.12290467228337233],[118,96,71,-0.12794733028165625],[118,96,72,-0.132267364901251],[118,96,73,-0.1329638501837626],[118,96,74,-0.13858625825991713],[118,96,75,-0.14163618320273347],[118,96,76,-0.14491273723657289],[118,96,77,-0.14912020013664348],[118,96,78,-0.15509450294228697],[118,96,79,-0.1571571796219526],[118,97,64,-0.1018921435738615],[118,97,65,-0.10342290826118548],[118,97,66,-0.10790433139501406],[118,97,67,-0.11633571816339285],[118,97,68,-0.11915798008227017],[118,97,69,-0.11635780760599339],[118,97,70,-0.11757639755032565],[118,97,71,-0.12181318461053028],[118,97,72,-0.12706618615069235],[118,97,73,-0.13159289531599994],[118,97,74,-0.13501805331250358],[118,97,75,-0.1394946344060196],[118,97,76,-0.14316417621383848],[118,97,77,-0.14844225019205431],[118,97,78,-0.15632758422906246],[118,97,79,-0.16034459826568997],[118,98,64,-0.10890911812350217],[118,98,65,-0.11029745754922736],[118,98,66,-0.11537278707051082],[118,98,67,-0.12082759802140315],[118,98,68,-0.12116668027558272],[118,98,69,-0.12111590170751604],[118,98,70,-0.12247540521618969],[118,98,71,-0.12701288491367435],[118,98,72,-0.1317523358923316],[118,98,73,-0.13685366857047773],[118,98,74,-0.13921377565781895],[118,98,75,-0.14520772663590653],[118,98,76,-0.14818295096849798],[118,98,77,-0.1516409434466449],[118,98,78,-0.15949682449301683],[118,98,79,-0.16381951709467155],[118,99,64,-0.10904674946250872],[118,99,65,-0.1115024422247092],[118,99,66,-0.11464836197216884],[118,99,67,-0.11781931194151415],[118,99,68,-0.12138116940438667],[118,99,69,-0.12181450353887903],[118,99,70,-0.12315667428633044],[118,99,71,-0.12628891587931845],[118,99,72,-0.12917994107236408],[118,99,73,-0.1347205242651879],[118,99,74,-0.13841822693351552],[118,99,75,-0.14711530359304925],[118,99,76,-0.14762274627795624],[118,99,77,-0.1509168055499851],[118,99,78,-0.1606027595581095],[118,99,79,-0.16453995971855012],[118,100,64,-0.08391912299309734],[118,100,65,-0.08303881673598622],[118,100,66,-0.07907789641477841],[118,100,67,-0.07513090041848104],[118,100,68,-0.07558303381017575],[118,100,69,-0.07398222016857642],[118,100,70,-0.07523990397376994],[118,100,71,-0.07556977629434325],[118,100,72,-0.07662004125306641],[118,100,73,-0.08004686961577115],[118,100,74,-0.08249465167618311],[118,100,75,-0.08988485873794863],[118,100,76,-0.09221072675401229],[118,100,77,-0.09700001129588659],[118,100,78,-0.1073534660248743],[118,100,79,-0.11290940291210726],[118,101,64,-0.08715784042856252],[118,101,65,-0.08590687372981469],[118,101,66,-0.08147426838589775],[118,101,67,-0.07636372758759813],[118,101,68,-0.0728890189277854],[118,101,69,-0.07142111455136056],[118,101,70,-0.07224706727102555],[118,101,71,-0.07577419802324348],[118,101,72,-0.07648642517263216],[118,101,73,-0.07842723076429915],[118,101,74,-0.07969059374070209],[118,101,75,-0.087199283969747],[118,101,76,-0.0902188449659665],[118,101,77,-0.09528772765149321],[118,101,78,-0.10564088839772387],[118,101,79,-0.11033286157484318],[118,102,64,-0.09021814268388595],[118,102,65,-0.08705766464824014],[118,102,66,-0.0834104506672039],[118,102,67,-0.07874438265738697],[118,102,68,-0.07251318061536897],[118,102,69,-0.0712707277661795],[118,102,70,-0.07307023041525004],[118,102,71,-0.07452140871170379],[118,102,72,-0.07562289684319629],[118,102,73,-0.07849714370270991],[118,102,74,-0.07757297956325868],[118,102,75,-0.08436086888476149],[118,102,76,-0.08947545522576288],[118,102,77,-0.0945919813931409],[118,102,78,-0.10339519104892507],[118,102,79,-0.11074692685392498],[118,103,64,-0.0813868777866018],[118,103,65,-0.07992671152363474],[118,103,66,-0.07566893297526403],[118,103,67,-0.073419186854289],[118,103,68,-0.06838749248412404],[118,103,69,-0.06673792368687397],[118,103,70,-0.06589047102504192],[118,103,71,-0.06622669812683019],[118,103,72,-0.06942102592785823],[118,103,73,-0.07316798103234112],[118,103,74,-0.07426546387512284],[118,103,75,-0.07815543584914539],[118,103,76,-0.08658614647466484],[118,103,77,-0.0897302100568234],[118,103,78,-0.09765474955990103],[118,103,79,-0.10682912971231903],[118,104,64,-0.08251704220639818],[118,104,65,-0.08309344513902109],[118,104,66,-0.08009207155024801],[118,104,67,-0.0766786272743963],[118,104,68,-0.07240517226323391],[118,104,69,-0.06942240308338063],[118,104,70,-0.06654536972032352],[118,104,71,-0.06733412658719076],[118,104,72,-0.06939408404399125],[118,104,73,-0.07350793901157611],[118,104,74,-0.07831235625866231],[118,104,75,-0.08022842821934445],[118,104,76,-0.08679788544918654],[118,104,77,-0.09086461963693984],[118,104,78,-0.09900629066052653],[118,104,79,-0.10741449626449603],[118,105,64,-0.08281095864483667],[118,105,65,-0.08550975516736878],[118,105,66,-0.07722506607030291],[118,105,67,-0.07106871698203975],[118,105,68,-0.06652774507657848],[118,105,69,-0.06539564248667235],[118,105,70,-0.06294667132043165],[118,105,71,-0.06230236533254295],[118,105,72,-0.06271780443294635],[118,105,73,-0.06791223685283597],[118,105,74,-0.07179863219386012],[118,105,75,-0.07417259196355475],[118,105,76,-0.08132177158216083],[118,105,77,-0.08897589471996178],[118,105,78,-0.10254863596834293],[118,105,79,-0.11045593596790776],[118,106,64,-0.09400998986215114],[118,106,65,-0.09375177904369371],[118,106,66,-0.08729942878030467],[118,106,67,-0.0789791327286812],[118,106,68,-0.07242594523329203],[118,106,69,-0.07348449589062632],[118,106,70,-0.06959543939171688],[118,106,71,-0.06992641768135968],[118,106,72,-0.07025194978326708],[118,106,73,-0.07244580918974285],[118,106,74,-0.07522725370465863],[118,106,75,-0.0798790166617308],[118,106,76,-0.08682246587932926],[118,106,77,-0.09652644593446838],[118,106,78,-0.10677222765789532],[118,106,79,-0.11570482294065879],[118,107,64,-0.09738082004110649],[118,107,65,-0.0958159771717865],[118,107,66,-0.08892531568379433],[118,107,67,-0.0808661724124312],[118,107,68,-0.07428302326886824],[118,107,69,-0.07387988773260172],[118,107,70,-0.0733236663773147],[118,107,71,-0.07169080798179127],[118,107,72,-0.07072396957836372],[118,107,73,-0.0726288147250867],[118,107,74,-0.07622840456133001],[118,107,75,-0.083004963940985],[118,107,76,-0.09039393523396029],[118,107,77,-0.09788825437384784],[118,107,78,-0.10735514207101389],[118,107,79,-0.11571892770941003],[118,108,64,-0.1028030390362368],[118,108,65,-0.10221468537357085],[118,108,66,-0.09477307023513729],[118,108,67,-0.0880671234824611],[118,108,68,-0.08004219423759276],[118,108,69,-0.07919059300222497],[118,108,70,-0.07816046075410416],[118,108,71,-0.07598986561557775],[118,108,72,-0.07465449704369305],[118,108,73,-0.07662475106859577],[118,108,74,-0.0799850259856473],[118,108,75,-0.08883023964936333],[118,108,76,-0.09728963000450377],[118,108,77,-0.103813210790263],[118,108,78,-0.11345492157235454],[118,108,79,-0.12219221350257098],[118,109,64,-0.09944712871983542],[118,109,65,-0.10322235517587756],[118,109,66,-0.10162774988397374],[118,109,67,-0.1008265464423335],[118,109,68,-0.0912369621669184],[118,109,69,-0.09338415406747917],[118,109,70,-0.09337154597022919],[118,109,71,-0.0909050533302651],[118,109,72,-0.08623578395642544],[118,109,73,-0.0887809726635724],[118,109,74,-0.09302684717082764],[118,109,75,-0.10030153081655106],[118,109,76,-0.1063659343934981],[118,109,77,-0.10983134201934797],[118,109,78,-0.11611216464622073],[118,109,79,-0.12119125188550212],[118,110,64,-0.09965236568466372],[118,110,65,-0.1027020235786405],[118,110,66,-0.10159804047671783],[118,110,67,-0.10384117264006229],[118,110,68,-0.09694336605078543],[118,110,69,-0.09583317203091078],[118,110,70,-0.09471275109794547],[118,110,71,-0.09425358740532704],[118,110,72,-0.09128663008783633],[118,110,73,-0.0914201856953774],[118,110,74,-0.09604069871368942],[118,110,75,-0.1024186016112201],[118,110,76,-0.10620570912923405],[118,110,77,-0.11052514542468167],[118,110,78,-0.11542922952601614],[118,110,79,-0.12277703501890884],[118,111,64,-0.09093065352184714],[118,111,65,-0.09588342422348378],[118,111,66,-0.09726719442515858],[118,111,67,-0.09953770579994548],[118,111,68,-0.09508887827797459],[118,111,69,-0.09080805583003372],[118,111,70,-0.09165560440931787],[118,111,71,-0.09019639840936104],[118,111,72,-0.08913513282872694],[118,111,73,-0.09195850311200035],[118,111,74,-0.0950975193049839],[118,111,75,-0.10303391736586634],[118,111,76,-0.105550087794547],[118,111,77,-0.10944726055475096],[118,111,78,-0.11606223750895021],[118,111,79,-0.12340363766285734],[118,112,64,-0.09211353915471285],[118,112,65,-0.09710083428905959],[118,112,66,-0.0994298184165465],[118,112,67,-0.10286149297286584],[118,112,68,-0.09812933115420647],[118,112,69,-0.0919040669226451],[118,112,70,-0.09251012352696171],[118,112,71,-0.09192596088921623],[118,112,72,-0.09043503756314739],[118,112,73,-0.09491374160660339],[118,112,74,-0.10015660001147694],[118,112,75,-0.1070393655652081],[118,112,76,-0.10971553889267087],[118,112,77,-0.1109042166162773],[118,112,78,-0.11711377157286106],[118,112,79,-0.12275562298213724],[118,113,64,-0.0945652587719001],[118,113,65,-0.09848571425122195],[118,113,66,-0.10105341943790923],[118,113,67,-0.10422480273609092],[118,113,68,-0.10080431238828615],[118,113,69,-0.09620834655288182],[118,113,70,-0.09435346553299052],[118,113,71,-0.09193690783073152],[118,113,72,-0.09179205307093749],[118,113,73,-0.09916477943581938],[118,113,74,-0.10528842209278355],[118,113,75,-0.10911965277245375],[118,113,76,-0.11212294774167739],[118,113,77,-0.11179659385416224],[118,113,78,-0.11806584886957419],[118,113,79,-0.1228327816832231],[118,114,64,-0.10261071592336972],[118,114,65,-0.10369326709092402],[118,114,66,-0.10792770121457171],[118,114,67,-0.11350221620336742],[118,114,68,-0.10992757015147088],[118,114,69,-0.10498465338283192],[118,114,70,-0.09960940022895265],[118,114,71,-0.09819043317325071],[118,114,72,-0.09979600486954286],[118,114,73,-0.10919943900555742],[118,114,74,-0.11521798119005952],[118,114,75,-0.11667495250074333],[118,114,76,-0.11626490754131202],[118,114,77,-0.11903803683241405],[118,114,78,-0.12398264627043096],[118,114,79,-0.1302566402248074],[118,115,64,-0.09926795004764453],[118,115,65,-0.10147203077238802],[118,115,66,-0.10708357988509543],[118,115,67,-0.11109651470483148],[118,115,68,-0.1119921017933819],[118,115,69,-0.10576837685486944],[118,115,70,-0.09758127370099012],[118,115,71,-0.09994548969008077],[118,115,72,-0.10247756226327276],[118,115,73,-0.11273700457847663],[118,115,74,-0.11572661947874661],[118,115,75,-0.116918777930998],[118,115,76,-0.11945435325427647],[118,115,77,-0.12264808180764222],[118,115,78,-0.125175829723413],[118,115,79,-0.13264561247640821],[118,116,64,-0.07387208472905835],[118,116,65,-0.08112697466136612],[118,116,66,-0.08834380571096787],[118,116,67,-0.09663745212770644],[118,116,68,-0.10213913427882973],[118,116,69,-0.1010365988457703],[118,116,70,-0.09757790602896282],[118,116,71,-0.10180651639813111],[118,116,72,-0.10686838857997855],[118,116,73,-0.11452488075287348],[118,116,74,-0.1153180101470818],[118,116,75,-0.11618396335119703],[118,116,76,-0.11768899723222842],[118,116,77,-0.12017250167980473],[118,116,78,-0.11800937380043974],[118,116,79,-0.12078029369609057],[118,117,64,-0.07421357244690645],[118,117,65,-0.08336227367485735],[118,117,66,-0.09191806248618199],[118,117,67,-0.09940633623650483],[118,117,68,-0.10102693054425807],[118,117,69,-0.10594379777489746],[118,117,70,-0.1025742688487628],[118,117,71,-0.10719416408335719],[118,117,72,-0.1137198411240046],[118,117,73,-0.11902464677576506],[118,117,74,-0.11903082847994981],[118,117,75,-0.12046901729251977],[118,117,76,-0.12142040878116589],[118,117,77,-0.12196313512263147],[118,117,78,-0.11654728802997939],[118,117,79,-0.11578569092412214],[118,118,64,-0.07589882644976212],[118,118,65,-0.08222251937378244],[118,118,66,-0.0926693155999703],[118,118,67,-0.09968525281635465],[118,118,68,-0.10215953846203948],[118,118,69,-0.10502554180705431],[118,118,70,-0.1047882271332987],[118,118,71,-0.1082259892604282],[118,118,72,-0.11443884640741792],[118,118,73,-0.11753413569234442],[118,118,74,-0.12102491294412357],[118,118,75,-0.12238442936495454],[118,118,76,-0.12196440088225377],[118,118,77,-0.12234555413654186],[118,118,78,-0.1183286829548254],[118,118,79,-0.11487401390534226],[118,119,64,-0.06863497301083102],[118,119,65,-0.07654143486207014],[118,119,66,-0.08503770307523709],[118,119,67,-0.0915232602282842],[118,119,68,-0.09682109654239365],[118,119,69,-0.09832819211262221],[118,119,70,-0.09946124382429088],[118,119,71,-0.10514551816731357],[118,119,72,-0.10968070069423491],[118,119,73,-0.11403972415248827],[118,119,74,-0.11896245039445041],[118,119,75,-0.12127160832471098],[118,119,76,-0.12040338858187906],[118,119,77,-0.12238737141574396],[118,119,78,-0.12026488378491146],[118,119,79,-0.11680784503659425],[118,120,64,-0.06877743018747975],[118,120,65,-0.07856776622435799],[118,120,66,-0.08384789539337274],[118,120,67,-0.08775045011361543],[118,120,68,-0.09600951978591642],[118,120,69,-0.09745085473755702],[118,120,70,-0.099933661296658],[118,120,71,-0.10697981069853574],[118,120,72,-0.10943964558927607],[118,120,73,-0.11282600159435355],[118,120,74,-0.11930861460397486],[118,120,75,-0.12124776362767511],[118,120,76,-0.12224321825463932],[118,120,77,-0.1234123378507274],[118,120,78,-0.12404000571473586],[118,120,79,-0.11933050666720191],[118,121,64,-0.06455648289814328],[118,121,65,-0.07133170852351002],[118,121,66,-0.07575100997680069],[118,121,67,-0.07839126509558869],[118,121,68,-0.08822104362987193],[118,121,69,-0.09255987224524477],[118,121,70,-0.09464581357053974],[118,121,71,-0.10052958142273163],[118,121,72,-0.102461193896637],[118,121,73,-0.1065198878587644],[118,121,74,-0.11084270328150014],[118,121,75,-0.1137553170899013],[118,121,76,-0.12000320937788418],[118,121,77,-0.12617521948721544],[118,121,78,-0.1314825359882677],[118,121,79,-0.12872319710584046],[118,122,64,-0.06816193907444408],[118,122,65,-0.07447838628230387],[118,122,66,-0.08023018194630871],[118,122,67,-0.08494465515624068],[118,122,68,-0.09520954256294514],[118,122,69,-0.10113148639566982],[118,122,70,-0.10266485692259775],[118,122,71,-0.1052099955500282],[118,122,72,-0.10684654230514],[118,122,73,-0.11104550696789842],[118,122,74,-0.11701600536697894],[118,122,75,-0.12151265090614989],[118,122,76,-0.12685384522032703],[118,122,77,-0.13274406403040048],[118,122,78,-0.13790603693602704],[118,122,79,-0.1357214699821574],[118,123,64,-0.06423896635360653],[118,123,65,-0.07038193299487767],[118,123,66,-0.07755393016625922],[118,123,67,-0.08526873403615538],[118,123,68,-0.09727681413781389],[118,123,69,-0.10478933969673962],[118,123,70,-0.1040690949909956],[118,123,71,-0.10573209129221073],[118,123,72,-0.10708763050178208],[118,123,73,-0.1132171603195192],[118,123,74,-0.12027438927933544],[118,123,75,-0.12199183443503375],[118,123,76,-0.12807495093406196],[118,123,77,-0.13166861500513125],[118,123,78,-0.13912596380513226],[118,123,79,-0.13820973683806692],[118,124,64,-0.06158838396530173],[118,124,65,-0.06754030130558143],[118,124,66,-0.07521163473347384],[118,124,67,-0.08453262848246541],[118,124,68,-0.09592480729426085],[118,124,69,-0.10340940720172526],[118,124,70,-0.10358147373139034],[118,124,71,-0.10516654852935571],[118,124,72,-0.10834725858236538],[118,124,73,-0.11431149566878605],[118,124,74,-0.12068329204111691],[118,124,75,-0.12365669448282973],[118,124,76,-0.12736537489153762],[118,124,77,-0.13443960246279255],[118,124,78,-0.14304919990316325],[118,124,79,-0.1423109193393897],[118,125,64,-0.05803742260497102],[118,125,65,-0.06364684259167017],[118,125,66,-0.07288094248825416],[118,125,67,-0.08391329596616148],[118,125,68,-0.09559837993034553],[118,125,69,-0.10249932905078671],[118,125,70,-0.10387651379163888],[118,125,71,-0.10447464180265773],[118,125,72,-0.1085826110168776],[118,125,73,-0.11465373578603408],[118,125,74,-0.12116446197919524],[118,125,75,-0.12593434005760015],[118,125,76,-0.128286166522934],[118,125,77,-0.13747503622976506],[118,125,78,-0.14396149513210424],[118,125,79,-0.14363140932401458],[118,126,64,-0.052462974238665194],[118,126,65,-0.06218431354682003],[118,126,66,-0.07144067390454403],[118,126,67,-0.08197867735159597],[118,126,68,-0.09293809993702967],[118,126,69,-0.101574621475164],[118,126,70,-0.10281024456063101],[118,126,71,-0.1085635445108162],[118,126,72,-0.11065892438558554],[118,126,73,-0.11549488525642759],[118,126,74,-0.12352031669840705],[118,126,75,-0.12683174311198236],[118,126,76,-0.12992367047623593],[118,126,77,-0.136481143383837],[118,126,78,-0.14416146958621257],[118,126,79,-0.1447252443612583],[118,127,64,-0.04388169481839173],[118,127,65,-0.05572129284108058],[118,127,66,-0.06537642986805701],[118,127,67,-0.07323633433581621],[118,127,68,-0.08483783146429158],[118,127,69,-0.0964232187468997],[118,127,70,-0.10229348624677216],[118,127,71,-0.10843863259414019],[118,127,72,-0.11049993048118045],[118,127,73,-0.11711747411593221],[118,127,74,-0.124650008264717],[118,127,75,-0.12892004773628762],[118,127,76,-0.13144985081682853],[118,127,77,-0.13453485713501817],[118,127,78,-0.14200913495472745],[118,127,79,-0.14316499208455263],[118,128,64,-0.04484547059458914],[118,128,65,-0.056482244951017155],[118,128,66,-0.06628954023305798],[118,128,67,-0.07317486366192132],[118,128,68,-0.08133797418668234],[118,128,69,-0.0961454845992154],[118,128,70,-0.10378223387754865],[118,128,71,-0.11192949491289236],[118,128,72,-0.11584501858786168],[118,128,73,-0.11818117054154667],[118,128,74,-0.12462324750020858],[118,128,75,-0.13163172535263407],[118,128,76,-0.13476241929922805],[118,128,77,-0.13594031396565964],[118,128,78,-0.14005795550405847],[118,128,79,-0.1415462773089461],[118,129,64,-0.039424563541918506],[118,129,65,-0.05320443747940497],[118,129,66,-0.0675702825546614],[118,129,67,-0.07785892094938146],[118,129,68,-0.08525926592485984],[118,129,69,-0.09776675678893156],[118,129,70,-0.1076696438167151],[118,129,71,-0.11602398908415887],[118,129,72,-0.118182509907638],[118,129,73,-0.12079020535565377],[118,129,74,-0.12616497541766697],[118,129,75,-0.1334463421828515],[118,129,76,-0.13301862191811387],[118,129,77,-0.12881206273197515],[118,129,78,-0.128497703919652],[118,129,79,-0.12890152640782537],[118,130,64,-0.04440600799659447],[118,130,65,-0.05774577777316994],[118,130,66,-0.07106501680361321],[118,130,67,-0.08397456005987529],[118,130,68,-0.09189604110412081],[118,130,69,-0.10262215284319089],[118,130,70,-0.1145805385255646],[118,130,71,-0.12210661338464265],[118,130,72,-0.12388000694443133],[118,130,73,-0.1271423635936984],[118,130,74,-0.13928032876402752],[118,130,75,-0.1801903069442914],[118,130,76,-0.20071602356724166],[118,130,77,-0.22054349242878707],[118,130,78,-0.2362962580852414],[118,130,79,-0.2846951828395996],[118,131,64,-0.04438316467005772],[118,131,65,-0.060052147802267045],[118,131,66,-0.0713152920174775],[118,131,67,-0.08555085998059163],[118,131,68,-0.09373689238677427],[118,131,69,-0.10474300440594424],[118,131,70,-0.11522249800826057],[118,131,71,-0.1205256030000239],[118,131,72,-0.12283398505978778],[118,131,73,-0.12750442187518957],[118,131,74,-0.16356568142316164],[118,131,75,-0.20667137757143725],[118,131,76,-0.22458201646602333],[118,131,77,-0.23709210113730517],[118,131,78,-0.2612895941081924],[118,131,79,-0.28251023981232154],[118,132,64,-0.03360424643589617],[118,132,65,-0.05119623428077514],[118,132,66,-0.06343491358883686],[118,132,67,-0.07656394249463733],[118,132,68,-0.09022179474724037],[118,132,69,-0.10236060791385473],[118,132,70,-0.11129019148749618],[118,132,71,-0.11678393101653815],[118,132,72,-0.12057374716798601],[118,132,73,-0.1268324780760593],[118,132,74,-0.17376382685305894],[118,132,75,-0.2102859643596901],[118,132,76,-0.2305708289078306],[118,132,77,-0.2327305180087555],[118,132,78,-0.2628110725578384],[118,132,79,-0.2813513796900047],[118,133,64,-0.041391875037190426],[118,133,65,-0.053691182026654974],[118,133,66,-0.06408484892652062],[118,133,67,-0.0731082145228632],[118,133,68,-0.0880049591297752],[118,133,69,-0.09984224744535075],[118,133,70,-0.10764649683621566],[118,133,71,-0.11594252940181893],[118,133,72,-0.1253345497750155],[118,133,73,-0.15482562229332353],[118,133,74,-0.1867042795204466],[118,133,75,-0.20555917847175179],[118,133,76,-0.23059508321389405],[118,133,77,-0.23426039811776528],[118,133,78,-0.26227236799515075],[118,133,79,-0.2730142225509615],[118,134,64,-0.043604094220494855],[118,134,65,-0.05314610686370504],[118,134,66,-0.06414340585939216],[118,134,67,-0.07427859622103258],[118,134,68,-0.08653177257248273],[118,134,69,-0.10024658062617536],[118,134,70,-0.1089578451165226],[118,134,71,-0.11592086789790612],[118,134,72,-0.12702473145545345],[118,134,73,-0.16119431060623718],[118,134,74,-0.18974652355355837],[118,134,75,-0.20916350494581026],[118,134,76,-0.236250999082603],[118,134,77,-0.2518750677248362],[118,134,78,-0.2796820518679113],[118,134,79,-0.2814011867372661],[118,135,64,-0.038986652951635274],[118,135,65,-0.047294867700648856],[118,135,66,-0.05883396734485753],[118,135,67,-0.06824377629923759],[118,135,68,-0.083560410450378],[118,135,69,-0.09773911596694904],[118,135,70,-0.1053832317605948],[118,135,71,-0.1142534602210383],[118,135,72,-0.1247978077523808],[118,135,73,-0.1534969918409317],[118,135,74,-0.17621832313737837],[118,135,75,-0.19175295538335901],[118,135,76,-0.2158084213158995],[118,135,77,-0.23416126704545034],[118,135,78,-0.2649332045010471],[118,135,79,-0.2753996500723882],[118,136,64,-0.04077595305032582],[118,136,65,-0.05115902099081687],[118,136,66,-0.05881839996312248],[118,136,67,-0.06822772483255779],[118,136,68,-0.08314508355078447],[118,136,69,-0.09771526151577838],[118,136,70,-0.1049581939823955],[118,136,71,-0.11545816202185818],[118,136,72,-0.12573135025070956],[118,136,73,-0.16326283716869466],[118,136,74,-0.18318317602684925],[118,136,75,-0.19895418670803014],[118,136,76,-0.22096925466233172],[118,136,77,-0.24414030205022452],[118,136,78,-0.27786377735973866],[118,136,79,-0.2832710927708223],[118,137,64,-0.04074771963447434],[118,137,65,-0.05327708443883473],[118,137,66,-0.06076598332961036],[118,137,67,-0.06941525940972838],[118,137,68,-0.08318918699114991],[118,137,69,-0.09923530385769341],[118,137,70,-0.10570194441158326],[118,137,71,-0.11470412477363984],[118,137,72,-0.12990273194227886],[118,137,73,-0.15980968205734014],[118,137,74,-0.16985102201122085],[118,137,75,-0.18043821648288194],[118,137,76,-0.2004511347676105],[118,137,77,-0.2182354599056479],[118,137,78,-0.24491006554741598],[118,137,79,-0.2709934290236991],[118,138,64,-0.048137762631478495],[118,138,65,-0.059626018617171435],[118,138,66,-0.06780239216071408],[118,138,67,-0.0770506039486333],[118,138,68,-0.09030613673130117],[118,138,69,-0.105117993033853],[118,138,70,-0.11155398083432189],[118,138,71,-0.12139325274817894],[118,138,72,-0.12893059513148894],[118,138,73,-0.1538594361157097],[118,138,74,-0.15842466512099657],[118,138,75,-0.16406420155054147],[118,138,76,-0.18795254658553037],[118,138,77,-0.20097007328531138],[118,138,78,-0.2234724202403809],[118,138,79,-0.25019083295714345],[118,139,64,-0.05010669482792416],[118,139,65,-0.060291192975476714],[118,139,66,-0.06758322878994612],[118,139,67,-0.08076575603630261],[118,139,68,-0.09449736134114961],[118,139,69,-0.10553463420617207],[118,139,70,-0.11336773973403122],[118,139,71,-0.12118449609634871],[118,139,72,-0.13152166107432187],[118,139,73,-0.16238591908698383],[118,139,74,-0.16928439776161805],[118,139,75,-0.18183352961951876],[118,139,76,-0.20842814624170514],[118,139,77,-0.22012082630376478],[118,139,78,-0.24009181901263515],[118,139,79,-0.2467405585625526],[118,140,64,-0.06301249785643642],[118,140,65,-0.07216311375881113],[118,140,66,-0.07962503359638454],[118,140,67,-0.08986250009214691],[118,140,68,-0.09705896712492112],[118,140,69,-0.10378166264533706],[118,140,70,-0.11213107461243854],[118,140,71,-0.11754792447320286],[118,140,72,-0.13104561431983663],[118,140,73,-0.1567138320542799],[118,140,74,-0.16556884586957174],[118,140,75,-0.18154852270055916],[118,140,76,-0.20697198344426554],[118,140,77,-0.22251553056278067],[118,140,78,-0.23486913333982315],[118,140,79,-0.24079627220784716],[118,141,64,-0.06453253744226391],[118,141,65,-0.07612116704229879],[118,141,66,-0.08725144643439417],[118,141,67,-0.09957901696366138],[118,141,68,-0.10360840833701453],[118,141,69,-0.1107452808381437],[118,141,70,-0.1173463454821487],[118,141,71,-0.11990634981018569],[118,141,72,-0.13300330223249193],[118,141,73,-0.14947881124090928],[118,141,74,-0.15801769225321516],[118,141,75,-0.1727345866524061],[118,141,76,-0.1920289039763553],[118,141,77,-0.20748255390983095],[118,141,78,-0.21785244118904334],[118,141,79,-0.23014085287228703],[118,142,64,-0.06424191594953411],[118,142,65,-0.07673982957009884],[118,142,66,-0.0894312309632508],[118,142,67,-0.10343558212986152],[118,142,68,-0.10822520160738305],[118,142,69,-0.11010123869681762],[118,142,70,-0.11760688716865082],[118,142,71,-0.11962754699351863],[118,142,72,-0.13313906084869448],[118,142,73,-0.14600634298209048],[118,142,74,-0.15222774311606585],[118,142,75,-0.16595518605584436],[118,142,76,-0.1855425349120548],[118,142,77,-0.1999450442211654],[118,142,78,-0.21416001231529735],[118,142,79,-0.23010964143127394],[118,143,64,-0.061782806755964495],[118,143,65,-0.07401952785044646],[118,143,66,-0.08695901834829912],[118,143,67,-0.10099508313011832],[118,143,68,-0.1060075170576174],[118,143,69,-0.10769750567489553],[118,143,70,-0.11492671037956773],[118,143,71,-0.11771571739975623],[118,143,72,-0.12543440715265441],[118,143,73,-0.1391119372526594],[118,143,74,-0.14525185002158386],[118,143,75,-0.15414554265839098],[118,143,76,-0.17421823609561365],[118,143,77,-0.1838660588535091],[118,143,78,-0.20354737536531126],[118,143,79,-0.2247748861225798],[118,144,64,-0.06476065754478007],[118,144,65,-0.07633270732914105],[118,144,66,-0.0889832572544837],[118,144,67,-0.10007286631280184],[118,144,68,-0.10674977055912319],[118,144,69,-0.10869165100180592],[118,144,70,-0.11116995636801735],[118,144,71,-0.11664387138493554],[118,144,72,-0.12525301581165174],[118,144,73,-0.13946118695635307],[118,144,74,-0.1509086641845291],[118,144,75,-0.1577665976516604],[118,144,76,-0.17818575174984452],[118,144,77,-0.19116498861826647],[118,144,78,-0.20994133378001717],[118,144,79,-0.23375749470347545],[118,145,64,-0.06070068698840176],[118,145,65,-0.07253215044124256],[118,145,66,-0.08368014231977991],[118,145,67,-0.09074552660662522],[118,145,68,-0.09859474225747927],[118,145,69,-0.10247715118336459],[118,145,70,-0.10496873409536814],[118,145,71,-0.11099661019730933],[118,145,72,-0.11882234658761714],[118,145,73,-0.12193767436723127],[118,145,74,-0.13035148707994973],[118,145,75,-0.13489659103808493],[118,145,76,-0.14448647835566672],[118,145,77,-0.15054322363198494],[118,145,78,-0.16069260962682563],[118,145,79,-0.1848895937455693],[118,146,64,-0.0644181192747038],[118,146,65,-0.07818368279215421],[118,146,66,-0.0900754621989483],[118,146,67,-0.09780372634852363],[118,146,68,-0.10366599462808125],[118,146,69,-0.1095978620240296],[118,146,70,-0.11134902187763572],[118,146,71,-0.1170350290882042],[118,146,72,-0.12258463720842108],[118,146,73,-0.12476978652992511],[118,146,74,-0.13372060306517902],[118,146,75,-0.14194109311695127],[118,146,76,-0.1500377299601353],[118,146,77,-0.15668736421895743],[118,146,78,-0.16426525523708377],[118,146,79,-0.18282133145253654],[118,147,64,-0.06693088360955551],[118,147,65,-0.07637610570194145],[118,147,66,-0.09084749890659465],[118,147,67,-0.09851715751107104],[118,147,68,-0.10388110557863323],[118,147,69,-0.10921723354674528],[118,147,70,-0.11251231680127617],[118,147,71,-0.11790536992437703],[118,147,72,-0.1238472068309345],[118,147,73,-0.12664551347923478],[118,147,74,-0.1329198441479148],[118,147,75,-0.14142198199509873],[118,147,76,-0.14755898788005317],[118,147,77,-0.15438133622566527],[118,147,78,-0.14355598544213555],[118,147,79,-0.13078163064937245],[118,148,64,-0.04029268018418182],[118,148,65,-0.05093672945463547],[118,148,66,-0.0627731830135311],[118,148,67,-0.06832634713578023],[118,148,68,-0.07630783109825853],[118,148,69,-0.08191473994013532],[118,148,70,-0.08404991198514389],[118,148,71,-0.09193775516281874],[118,148,72,-0.09652399687532309],[118,148,73,-0.09929754453936465],[118,148,74,-0.10651829869016181],[118,148,75,-0.11201238346165238],[118,148,76,-0.11674289035963602],[118,148,77,-0.12084116458146257],[118,148,78,-0.09278105905668371],[118,148,79,-0.08361142665553917],[118,149,64,-0.04126560128148545],[118,149,65,-0.05368580263136552],[118,149,66,-0.06505045339009324],[118,149,67,-0.07207634310676234],[118,149,68,-0.07966623388476338],[118,149,69,-0.08204085661294727],[118,149,70,-0.08443997877068163],[118,149,71,-0.09224306793004733],[118,149,72,-0.09689852327305717],[118,149,73,-0.10235291433994029],[118,149,74,-0.11195487531676707],[118,149,75,-0.11585679865126644],[118,149,76,-0.11987433137417458],[118,149,77,-0.12378301924661853],[118,149,78,-0.09875284397393244],[118,149,79,-0.08973693873801457],[118,150,64,-0.042477089346313335],[118,150,65,-0.05710923802003544],[118,150,66,-0.06794405487205502],[118,150,67,-0.07444649946564635],[118,150,68,-0.08197050250612647],[118,150,69,-0.08390674844034164],[118,150,70,-0.0855467513818767],[118,150,71,-0.09401965001665129],[118,150,72,-0.09751379636339208],[118,150,73,-0.10595494837224415],[118,150,74,-0.11555061216261618],[118,150,75,-0.12006901375834778],[118,150,76,-0.12468582460581834],[118,150,77,-0.12661738743682902],[118,150,78,-0.1004074906271758],[118,150,79,-0.09012830908509259],[118,151,64,-0.03984883606169259],[118,151,65,-0.05396906088175141],[118,151,66,-0.06486921117148328],[118,151,67,-0.07353252652059251],[118,151,68,-0.07838227129895226],[118,151,69,-0.08264731771812739],[118,151,70,-0.08721230530234134],[118,151,71,-0.09161479340072612],[118,151,72,-0.10014749843948761],[118,151,73,-0.11073479369962125],[118,151,74,-0.11931531227307388],[118,151,75,-0.12542293680490568],[118,151,76,-0.13127323687242098],[118,151,77,-0.1380302905521387],[118,151,78,-0.11177525533832627],[118,151,79,-0.10092200468299956],[118,152,64,-0.04497271016429982],[118,152,65,-0.05671166674111179],[118,152,66,-0.06852459390839005],[118,152,67,-0.07563630401637521],[118,152,68,-0.07862863607157398],[118,152,69,-0.08578667434314963],[118,152,70,-0.08958790292018165],[118,152,71,-0.092454376699307],[118,152,72,-0.10250631139013952],[118,152,73,-0.11338323638177142],[118,152,74,-0.12050516716711399],[118,152,75,-0.12642173700576323],[118,152,76,-0.1337540666113527],[118,152,77,-0.1399617738991866],[118,152,78,-0.11157508563098584],[118,152,79,-0.0965701211001648],[118,153,64,-0.045279931542431366],[118,153,65,-0.05988670544763458],[118,153,66,-0.0747847436776151],[118,153,67,-0.08102591515126781],[118,153,68,-0.0839239080960866],[118,153,69,-0.08898861200391578],[118,153,70,-0.09577794079823596],[118,153,71,-0.09598005383488706],[118,153,72,-0.10477324015341122],[118,153,73,-0.11433045039261586],[118,153,74,-0.12155305213589436],[118,153,75,-0.12955559262892832],[118,153,76,-0.13550568108565092],[118,153,77,-0.13662726386932705],[118,153,78,-0.10544818019945086],[118,153,79,-0.08578543881524225],[118,154,64,-0.05267013068670899],[118,154,65,-0.06732300488095015],[118,154,66,-0.08188591094616182],[118,154,67,-0.08805709218730756],[118,154,68,-0.09314678165552678],[118,154,69,-0.09670036648899642],[118,154,70,-0.10293105006199327],[118,154,71,-0.10393339640924602],[118,154,72,-0.11060092292461471],[118,154,73,-0.11862636003505021],[118,154,74,-0.12665240120315419],[118,154,75,-0.13838823651142074],[118,154,76,-0.14240387024852053],[118,154,77,-0.14351348872345618],[118,154,78,-0.1256749635502566],[118,154,79,-0.09237239798777142],[118,155,64,-0.056382460115832214],[118,155,65,-0.06988657036927814],[118,155,66,-0.08194522651708741],[118,155,67,-0.08957135906034928],[118,155,68,-0.09491248657095813],[118,155,69,-0.09789678952704706],[118,155,70,-0.10323606482583453],[118,155,71,-0.10577045627883128],[118,155,72,-0.11295434158361801],[118,155,73,-0.11700434384762136],[118,155,74,-0.12519096181032302],[118,155,75,-0.13693060534241216],[118,155,76,-0.14235149293538982],[118,155,77,-0.14443620939273402],[118,155,78,-0.12336017747870653],[118,155,79,-0.09164050342738095],[118,156,64,-0.06038922376792175],[118,156,65,-0.07533506223635601],[118,156,66,-0.08775274295643272],[118,156,67,-0.09540748897295509],[118,156,68,-0.09959001287403196],[118,156,69,-0.10315513100787499],[118,156,70,-0.10588552671552579],[118,156,71,-0.1100290254245463],[118,156,72,-0.1160040994963063],[118,156,73,-0.12155053629032554],[118,156,74,-0.1286033970376036],[118,156,75,-0.13774735392383708],[118,156,76,-0.14333400021451492],[118,156,77,-0.1453733251933786],[118,156,78,-0.12485589796057743],[118,156,79,-0.09509228697804537],[118,157,64,-0.06498041076577143],[118,157,65,-0.07731255252331852],[118,157,66,-0.08663674257145915],[118,157,67,-0.0945156567587018],[118,157,68,-0.09432971174882679],[118,157,69,-0.09869676321515689],[118,157,70,-0.10214297915115556],[118,157,71,-0.10687497198102987],[118,157,72,-0.11309755787367998],[118,157,73,-0.12066305401394069],[118,157,74,-0.1283632629102971],[118,157,75,-0.1375804664639078],[118,157,76,-0.14200474683726444],[118,157,77,-0.14839208099583623],[118,157,78,-0.11669204828875307],[118,157,79,-0.09133620638005138],[118,158,64,-0.06489725582955144],[118,158,65,-0.07645988742105145],[118,158,66,-0.08440338110087972],[118,158,67,-0.09246415578254885],[118,158,68,-0.0942231969619925],[118,158,69,-0.09826617814749085],[118,158,70,-0.10205677631721635],[118,158,71,-0.10642615154409266],[118,158,72,-0.1104110184764854],[118,158,73,-0.11809102957962203],[118,158,74,-0.1307157548392241],[118,158,75,-0.1390360174020674],[118,158,76,-0.14185820462960808],[118,158,77,-0.14734484112306206],[118,158,78,-0.10379072742430395],[118,158,79,-0.07619893361347128],[118,159,64,-0.1326174922806473],[118,159,65,-0.13628655012666235],[118,159,66,-0.1373537149350848],[118,159,67,-0.13904660384497947],[118,159,68,-0.13384926031916677],[118,159,69,-0.1321590695941552],[118,159,70,-0.1248861525312244],[118,159,71,-0.12116046458349294],[118,159,72,-0.12072627240789867],[118,159,73,-0.12025144213597874],[118,159,74,-0.12254333249198478],[118,159,75,-0.12030533836732481],[118,159,76,-0.11731190146445564],[118,159,77,-0.1125618805351571],[118,159,78,-0.08041284863754343],[118,159,79,-0.05847184321866082],[118,160,64,-0.12889040779544103],[118,160,65,-0.13388379818360055],[118,160,66,-0.13593357310190451],[118,160,67,-0.1377488413919829],[118,160,68,-0.1326988616918557],[118,160,69,-0.12834150297166227],[118,160,70,-0.12229807229094737],[118,160,71,-0.11869274611607819],[118,160,72,-0.11817458711434435],[118,160,73,-0.11795395619651637],[118,160,74,-0.11955844878025047],[118,160,75,-0.11582310959186456],[118,160,76,-0.11566799987640645],[118,160,77,-0.11275063417206278],[118,160,78,-0.07028804308958742],[118,160,79,-0.055159115692603566],[118,161,64,-0.12637679214095368],[118,161,65,-0.1303399008782654],[118,161,66,-0.13598365496787712],[118,161,67,-0.13725630138087816],[118,161,68,-0.12950181004778105],[118,161,69,-0.12666575691508028],[118,161,70,-0.11852736897155901],[118,161,71,-0.11451744380624905],[118,161,72,-0.11325762106792543],[118,161,73,-0.1152105027385802],[118,161,74,-0.1156522277836637],[118,161,75,-0.11449767350447365],[118,161,76,-0.1138464748636125],[118,161,77,-0.11109693038736836],[118,161,78,-0.061497308754898686],[118,161,79,-0.05033165923306508],[118,162,64,-0.12972920896854942],[118,162,65,-0.13190728376990282],[118,162,66,-0.1389129210289211],[118,162,67,-0.14236373308290728],[118,162,68,-0.13411496870112474],[118,162,69,-0.1282064687050302],[118,162,70,-0.12382812281245417],[118,162,71,-0.1164257600194093],[118,162,72,-0.11412116845624051],[118,162,73,-0.11782031434561584],[118,162,74,-0.11772894590902008],[118,162,75,-0.11666881684538172],[118,162,76,-0.11428281549419646],[118,162,77,-0.11180235982305299],[118,162,78,-0.06784035263760535],[118,162,79,-0.057729656187945386],[118,163,64,-0.12986243686185878],[118,163,65,-0.13134462936861602],[118,163,66,-0.1369381935213155],[118,163,67,-0.14099135778072255],[118,163,68,-0.13258048927929567],[118,163,69,-0.1253073734611073],[118,163,70,-0.12142765658640442],[118,163,71,-0.11402226510781895],[118,163,72,-0.11186163712332625],[118,163,73,-0.116571952200331],[118,163,74,-0.11585865099582339],[118,163,75,-0.1115625474445095],[118,163,76,-0.10893663739425032],[118,163,77,-0.10544721563581776],[118,163,78,-0.06524698976109064],[118,163,79,-0.059582452921318044],[118,164,64,-0.1019931134793978],[118,164,65,-0.10602006499811523],[118,164,66,-0.10870844841957938],[118,164,67,-0.11123620432652664],[118,164,68,-0.10439050510506585],[118,164,69,-0.0976593893059162],[118,164,70,-0.09504828391597843],[118,164,71,-0.08773132438522466],[118,164,72,-0.08458265816234531],[118,164,73,-0.0877785465531822],[118,164,74,-0.0867793421453954],[118,164,75,-0.08208347124114557],[118,164,76,-0.07971685007543311],[118,164,77,-0.0811246858668362],[118,164,78,-0.055523438500190966],[118,164,79,-0.05150890357326411],[118,165,64,-0.09242529851611576],[118,165,65,-0.09896853013704807],[118,165,66,-0.10463842752022062],[118,165,67,-0.10812352032714657],[118,165,68,-0.10422493242506108],[118,165,69,-0.09865775802226778],[118,165,70,-0.09560220611051386],[118,165,71,-0.08704218485980408],[118,165,72,-0.07835084693319908],[118,165,73,-0.07753337068969794],[118,165,74,-0.0744401601782135],[118,165,75,-0.068535611629548],[118,165,76,-0.06834451820289056],[118,165,77,-0.06905966152119004],[118,165,78,-0.05479740488550946],[118,165,79,-0.051364190617725444],[118,166,64,-0.08771350444634518],[118,166,65,-0.09548862180683926],[118,166,66,-0.10443381213302744],[118,166,67,-0.10461879206874806],[118,166,68,-0.09976339478881803],[118,166,69,-0.09583097739147263],[118,166,70,-0.09361658870714396],[118,166,71,-0.0840123526600402],[118,166,72,-0.0761156170807916],[118,166,73,-0.07341340290048],[118,166,74,-0.07061238166168152],[118,166,75,-0.06466906906679462],[118,166,76,-0.06393801419664656],[118,166,77,-0.06365031115074818],[118,166,78,-0.0575926708471662],[118,166,79,-0.05117414283757217],[118,167,64,-0.08144525883344697],[118,167,65,-0.08866699697453605],[118,167,66,-0.09633889814763774],[118,167,67,-0.09843258471902291],[118,167,68,-0.0940552474458691],[118,167,69,-0.09059390723939845],[118,167,70,-0.09026151525372025],[118,167,71,-0.08117980876249596],[118,167,72,-0.07254067987153173],[118,167,73,-0.06925371081438228],[118,167,74,-0.06687702901910367],[118,167,75,-0.06197904335672752],[118,167,76,-0.06175098845240216],[118,167,77,-0.06533194756986004],[118,167,78,-0.06038455942136062],[118,167,79,-0.05483856295089358],[118,168,64,-0.0794671007968116],[118,168,65,-0.08501341494957615],[118,168,66,-0.09455086160009275],[118,168,67,-0.09616798773254315],[118,168,68,-0.0913844533190173],[118,168,69,-0.08961514039096341],[118,168,70,-0.08550032148808115],[118,168,71,-0.07922317905789766],[118,168,72,-0.07259059500185494],[118,168,73,-0.06963183272653557],[118,168,74,-0.0660865846379459],[118,168,75,-0.060221761347458984],[118,168,76,-0.05801165690286829],[118,168,77,-0.06133214319381861],[118,168,78,-0.058348530442196],[118,168,79,-0.05320678399074469],[118,169,64,-0.08840096465207589],[118,169,65,-0.0918639149723289],[118,169,66,-0.09293732993633796],[118,169,67,-0.08876195793434666],[118,169,68,-0.08533493712659924],[118,169,69,-0.08334529476212794],[118,169,70,-0.07989199542275727],[118,169,71,-0.07753368282191822],[118,169,72,-0.07526634323308966],[118,169,73,-0.07428548224287486],[118,169,74,-0.07176035273509807],[118,169,75,-0.06829917602713398],[118,169,76,-0.06152976419243447],[118,169,77,-0.06250812367615777],[118,169,78,-0.06150451727040193],[118,169,79,-0.05202889074962358],[118,170,64,-0.09452895550155835],[118,170,65,-0.09853922361762985],[118,170,66,-0.09607586033050236],[118,170,67,-0.09230128454315562],[118,170,68,-0.0881849626815934],[118,170,69,-0.08770759219755295],[118,170,70,-0.08347136159023597],[118,170,71,-0.0794037529769333],[118,170,72,-0.07790194228328354],[118,170,73,-0.07827980654974144],[118,170,74,-0.07597834410882773],[118,170,75,-0.07263819868618471],[118,170,76,-0.06754154689048303],[118,170,77,-0.06543070478101379],[118,170,78,-0.06430178676068368],[118,170,79,-0.05573021003202206],[118,171,64,-0.09447890925788578],[118,171,65,-0.0987230135379639],[118,171,66,-0.09451490201878238],[118,171,67,-0.09002619050375407],[118,171,68,-0.08892598242967728],[118,171,69,-0.08562801084779705],[118,171,70,-0.08362980318680012],[118,171,71,-0.07959239588228656],[118,171,72,-0.07894072523643526],[118,171,73,-0.07820127977507405],[118,171,74,-0.0746649649231288],[118,171,75,-0.07066605056848546],[118,171,76,-0.06642334000309949],[118,171,77,-0.06260645538672807],[118,171,78,-0.061069635908227345],[118,171,79,-0.053646707173083515],[118,172,64,-0.0951209841332473],[118,172,65,-0.09863515530501915],[118,172,66,-0.09465575841850324],[118,172,67,-0.0909823378224348],[118,172,68,-0.09084933193023409],[118,172,69,-0.08746613360180619],[118,172,70,-0.08763680051261358],[118,172,71,-0.08454867277037463],[118,172,72,-0.08048922464652036],[118,172,73,-0.07895093242931268],[118,172,74,-0.0754334669571303],[118,172,75,-0.06999864727864792],[118,172,76,-0.06648306957829583],[118,172,77,-0.06313724382741714],[118,172,78,-0.05964425391865584],[118,172,79,-0.05131583910361596],[118,173,64,-0.09319695685782041],[118,173,65,-0.09610949318346533],[118,173,66,-0.09251382544258598],[118,173,67,-0.08934774454659845],[118,173,68,-0.08883612058545329],[118,173,69,-0.0869432315173735],[118,173,70,-0.08781122393101817],[118,173,71,-0.0860405288182372],[118,173,72,-0.07990570559421395],[118,173,73,-0.0769856232632992],[118,173,74,-0.0725376286707845],[118,173,75,-0.06902987515202018],[118,173,76,-0.06361132913772355],[118,173,77,-0.061792768533353255],[118,173,78,-0.05813112613881524],[118,173,79,-0.04818827254898381],[118,174,64,-0.09111309678876953],[118,174,65,-0.09304761887597925],[118,174,66,-0.08897343253593176],[118,174,67,-0.08456734269741911],[118,174,68,-0.08635560831576114],[118,174,69,-0.08558272779770516],[118,174,70,-0.0870767403068698],[118,174,71,-0.0857367637943087],[118,174,72,-0.07927075024902104],[118,174,73,-0.07519430233262564],[118,174,74,-0.07131514430119297],[118,174,75,-0.06763568283837401],[118,174,76,-0.06220172799132337],[118,174,77,-0.06015927748872925],[118,174,78,-0.057470081020203],[118,174,79,-0.043556412175316944],[118,175,64,-0.08185548769549655],[118,175,65,-0.08408731115980156],[118,175,66,-0.08175851465109282],[118,175,67,-0.07972713514548149],[118,175,68,-0.08210872895819193],[118,175,69,-0.08218955417040137],[118,175,70,-0.08307984868606685],[118,175,71,-0.08071445098434142],[118,175,72,-0.07541326245705554],[118,175,73,-0.07270261780830971],[118,175,74,-0.07018806106659226],[118,175,75,-0.06785139102300564],[118,175,76,-0.06665727307734133],[118,175,77,-0.06167590423942247],[118,175,78,-0.06391464732844038],[118,175,79,-0.055439525873985214],[118,176,64,-0.07776841228884615],[118,176,65,-0.07847022427502923],[118,176,66,-0.07889086256875708],[118,176,67,-0.07667220362268147],[118,176,68,-0.08083698034842712],[118,176,69,-0.08241394535886601],[118,176,70,-0.08200177276309119],[118,176,71,-0.07893779020349376],[118,176,72,-0.07231652936233933],[118,176,73,-0.06945295355568651],[118,176,74,-0.06827629986249212],[118,176,75,-0.0677402202844911],[118,176,76,-0.06828582252864186],[118,176,77,-0.06528055504911989],[118,176,78,-0.06471888654977959],[118,176,79,-0.053984209411326416],[118,177,64,-0.08055340307675875],[118,177,65,-0.07969372259732302],[118,177,66,-0.07945473867322378],[118,177,67,-0.07676070805073482],[118,177,68,-0.0775471411153275],[118,177,69,-0.08562821511250374],[118,177,70,-0.08638588220199102],[118,177,71,-0.08177362956987236],[118,177,72,-0.07543700628801817],[118,177,73,-0.07289048395239743],[118,177,74,-0.07004310204820008],[118,177,75,-0.07121277963749835],[118,177,76,-0.07039307316255546],[118,177,77,-0.06728643364938752],[118,177,78,-0.06372323107713627],[118,177,79,-0.057802507466888496],[118,178,64,-0.08274537438354777],[118,178,65,-0.08288918574665571],[118,178,66,-0.08039877030798995],[118,178,67,-0.07681097431742866],[118,178,68,-0.08053098571363028],[118,178,69,-0.08887888209085057],[118,178,70,-0.08864464462573324],[118,178,71,-0.08696902474330347],[118,178,72,-0.07844480363486417],[118,178,73,-0.07565896290731175],[118,178,74,-0.07257191860089911],[118,178,75,-0.07452871131499587],[118,178,76,-0.07340862705245729],[118,178,77,-0.07140877992469433],[118,178,78,-0.06780594293778569],[118,178,79,-0.060884262111270834],[118,179,64,-0.08076120013413793],[118,179,65,-0.0804461440556342],[118,179,66,-0.07661767693577318],[118,179,67,-0.07288316172346397],[118,179,68,-0.07988798451273746],[118,179,69,-0.086452313056466],[118,179,70,-0.08754667099048707],[118,179,71,-0.083913877941075],[118,179,72,-0.07600545354312258],[118,179,73,-0.0733095358029074],[118,179,74,-0.0710152015523185],[118,179,75,-0.07222418060839647],[118,179,76,-0.07128656378385088],[118,179,77,-0.0682123219326802],[118,179,78,-0.06765755063375746],[118,179,79,-0.0624533594674542],[118,180,64,-0.06917904754105583],[118,180,65,-0.06891329749128859],[118,180,66,-0.06674734911666835],[118,180,67,-0.06460975975911061],[118,180,68,-0.0712768859299244],[118,180,69,-0.07745407889152399],[118,180,70,-0.08250644704475951],[118,180,71,-0.07910558502320378],[118,180,72,-0.07110987685057228],[118,180,73,-0.06585622850210274],[118,180,74,-0.06487828213462418],[118,180,75,-0.06683105887057153],[118,180,76,-0.06793419899225223],[118,180,77,-0.06422226429981477],[118,180,78,-0.06298739136325873],[118,180,79,-0.06085433764597875],[118,181,64,-0.05975858614636383],[118,181,65,-0.060725974688747575],[118,181,66,-0.05879950860117847],[118,181,67,-0.060004957203232304],[118,181,68,-0.06365076264575348],[118,181,69,-0.07188098874699422],[118,181,70,-0.07763313955614864],[118,181,71,-0.0748254249037239],[118,181,72,-0.06582147576730918],[118,181,73,-0.05770465821162708],[118,181,74,-0.05683485260597696],[118,181,75,-0.058330337447636785],[118,181,76,-0.060847106603989495],[118,181,77,-0.07326643563254426],[118,181,78,-0.09889617085775686],[118,181,79,-0.10467223133873188],[118,182,64,-0.060605127136391115],[118,182,65,-0.06075836373404889],[118,182,66,-0.06031827692353284],[118,182,67,-0.05986830285618672],[118,182,68,-0.06275076211704506],[118,182,69,-0.06924790120145846],[118,182,70,-0.07561569231993338],[118,182,71,-0.0762226637444474],[118,182,72,-0.06710594010911797],[118,182,73,-0.05999823759962287],[118,182,74,-0.057618498428398605],[118,182,75,-0.05912963168903512],[118,182,76,-0.059700923210023384],[118,182,77,-0.0729734844836484],[118,182,78,-0.10551655197084775],[118,182,79,-0.1139644994306344],[118,183,64,-0.05516072801177832],[118,183,65,-0.057689407463867234],[118,183,66,-0.0584614646431524],[118,183,67,-0.05853965433325474],[118,183,68,-0.06153787071535436],[118,183,69,-0.06595209206662792],[118,183,70,-0.0729178329425332],[118,183,71,-0.07460003031888912],[118,183,72,-0.0654801865463867],[118,183,73,-0.05943803976435168],[118,183,74,-0.05670034337459945],[118,183,75,-0.05910459399798804],[118,183,76,-0.05922340555386531],[118,183,77,-0.07205517480614246],[118,183,78,-0.09928648801405526],[118,183,79,-0.108566551449001],[118,184,64,-0.05587098604613524],[118,184,65,-0.056063170654559125],[118,184,66,-0.05846597541842091],[118,184,67,-0.06109820664583812],[118,184,68,-0.06437875026006963],[118,184,69,-0.06744386208959038],[118,184,70,-0.07268143222666835],[118,184,71,-0.07221076436955737],[118,184,72,-0.06628311054726566],[118,184,73,-0.058163429829166065],[118,184,74,-0.057953904196165376],[118,184,75,-0.05768882993926131],[118,184,76,-0.057128958244293745],[118,184,77,-0.07601419966512746],[118,184,78,-0.0989137713854771],[118,184,79,-0.10811087683534146],[118,185,64,-0.05624022948992477],[118,185,65,-0.05546845941041924],[118,185,66,-0.05809186799206437],[118,185,67,-0.062401054627336056],[118,185,68,-0.06684329655402674],[118,185,69,-0.06788861800317819],[118,185,70,-0.07116712292086602],[118,185,71,-0.06879760664304774],[118,185,72,-0.06506476889825627],[118,185,73,-0.05772221987610261],[118,185,74,-0.060797731781224454],[118,185,75,-0.058699544841389915],[118,185,76,-0.057492720212018955],[118,185,77,-0.07677420924807823],[118,185,78,-0.09366891271804098],[118,185,79,-0.09848296677799408],[118,186,64,-0.06483661482562889],[118,186,65,-0.06274331033881851],[118,186,66,-0.0641827925127842],[118,186,67,-0.06910735416475224],[118,186,68,-0.07349897807486251],[118,186,69,-0.07560338107339674],[118,186,70,-0.07440487742913046],[118,186,71,-0.07279911714944322],[118,186,72,-0.06858226482838914],[118,186,73,-0.06275156080112615],[118,186,74,-0.06621637461845947],[118,186,75,-0.06371955043552838],[118,186,76,-0.06095637528676798],[118,186,77,-0.07196445346426225],[118,186,78,-0.08769456148811808],[118,186,79,-0.0881990943112235],[118,187,64,-0.0660122456307729],[118,187,65,-0.06728351726046354],[118,187,66,-0.06867545478535715],[118,187,67,-0.07101956063688902],[118,187,68,-0.074482901434855],[118,187,69,-0.07912230908031709],[118,187,70,-0.0764472421933961],[118,187,71,-0.07438610546072719],[118,187,72,-0.07136170632679857],[118,187,73,-0.0649837550687046],[118,187,74,-0.06561588053433728],[118,187,75,-0.06362013787105802],[118,187,76,-0.05902520093640515],[118,187,77,-0.07688834825849289],[118,187,78,-0.0969988419645322],[118,187,79,-0.095969026393294],[118,188,64,-0.0831379865979995],[118,188,65,-0.08333026651371261],[118,188,66,-0.08038433817318294],[118,188,67,-0.07872528577772149],[118,188,68,-0.07626675875072428],[118,188,69,-0.07967811834331344],[118,188,70,-0.07494945340845903],[118,188,71,-0.07117846326648011],[118,188,72,-0.06682102766749382],[118,188,73,-0.05942201329826047],[118,188,74,-0.055738945264700364],[118,188,75,-0.05209375829367046],[118,188,76,-0.048369895577890065],[118,188,77,-0.06963651044091115],[118,188,78,-0.0973359043615104],[118,188,79,-0.09534930790837468],[118,189,64,-0.09276982182119835],[118,189,65,-0.09148330672436787],[118,189,66,-0.08653827064559175],[118,189,67,-0.08587274566789788],[118,189,68,-0.08207615806726833],[118,189,69,-0.08437661158142726],[118,189,70,-0.08119702248213605],[118,189,71,-0.07380297277380028],[118,189,72,-0.06487015725351052],[118,189,73,-0.05589638790407484],[118,189,74,-0.0495419794428702],[118,189,75,-0.04734028647917608],[118,189,76,-0.044658513588635165],[118,189,77,-0.06507339782578014],[118,189,78,-0.09250943290499512],[118,189,79,-0.09427224381544551],[118,190,64,-0.09463620427368732],[118,190,65,-0.09302154545450934],[118,190,66,-0.08956938835862711],[118,190,67,-0.0879792059549266],[118,190,68,-0.08473989392547784],[118,190,69,-0.08485428178978635],[118,190,70,-0.08281131637372574],[118,190,71,-0.07468320423976911],[118,190,72,-0.06404409407233375],[118,190,73,-0.054688236635025866],[118,190,74,-0.047608937276981296],[118,190,75,-0.047459200901534694],[118,190,76,-0.04456308449370602],[118,190,77,-0.06554118761496794],[118,190,78,-0.08995266429583292],[118,190,79,-0.09224520182205409],[118,191,64,-0.0924402820336909],[118,191,65,-0.09017887376000815],[118,191,66,-0.08946270125297032],[118,191,67,-0.08813671136270088],[118,191,68,-0.08711383114860458],[118,191,69,-0.08670589621874758],[118,191,70,-0.08486838446732604],[118,191,71,-0.0775286187772088],[118,191,72,-0.0657497980661646],[118,191,73,-0.05465726306246453],[118,191,74,-0.04909302812660393],[118,191,75,-0.04653322770564916],[118,191,76,-0.04335800819374452],[118,191,77,-0.06518457561003174],[118,191,78,-0.08749273261995613],[118,191,79,-0.08873272112642742],[118,192,64,-0.09109600232175025],[118,192,65,-0.08971360801847127],[118,192,66,-0.08973551922703663],[118,192,67,-0.0882600725585793],[118,192,68,-0.08843104944841192],[118,192,69,-0.08702811710908565],[118,192,70,-0.08422873957931354],[118,192,71,-0.07973777405735345],[118,192,72,-0.06466998419161382],[118,192,73,-0.053377143242111444],[118,192,74,-0.0497025782177001],[118,192,75,-0.04533100638022129],[118,192,76,-0.04187132216091308],[118,192,77,-0.06677357460287617],[118,192,78,-0.08996500592485103],[118,192,79,-0.08978307007788033],[118,193,64,-0.08959027036240547],[118,193,65,-0.08836847793853678],[118,193,66,-0.08807069218578839],[118,193,67,-0.08285546875874848],[118,193,68,-0.08295468494679131],[118,193,69,-0.08190589218926836],[118,193,70,-0.08039573126583424],[118,193,71,-0.07817819233488259],[118,193,72,-0.06767706418160603],[118,193,73,-0.05959406014939256],[118,193,74,-0.05476536039332685],[118,193,75,-0.05085838864522876],[118,193,76,-0.04764662434353625],[118,193,77,-0.0650321491581038],[118,193,78,-0.0784654973685079],[118,193,79,-0.07210139527910195],[118,194,64,-0.09804262615195462],[118,194,65,-0.09468761163423724],[118,194,66,-0.09054675699514093],[118,194,67,-0.08381780122836005],[118,194,68,-0.08451075659371628],[118,194,69,-0.08396292035844818],[118,194,70,-0.0827956516080863],[118,194,71,-0.08013922565499594],[118,194,72,-0.07297177587265083],[118,194,73,-0.06644778865437029],[118,194,74,-0.058581050950729005],[118,194,75,-0.05405487177280864],[118,194,76,-0.04955688101014902],[118,194,77,-0.06839882880862255],[118,194,78,-0.07992426081026092],[118,194,79,-0.07861836746782805],[118,195,64,-0.09965507503082373],[118,195,65,-0.09395602205456666],[118,195,66,-0.08861835831685877],[118,195,67,-0.08462954996345774],[118,195,68,-0.08494736231156054],[118,195,69,-0.08176260094807215],[118,195,70,-0.08019269477242993],[118,195,71,-0.07553896701663348],[118,195,72,-0.07251489731501283],[118,195,73,-0.06725921552627431],[118,195,74,-0.05960900330172584],[118,195,75,-0.05279252677961437],[118,195,76,-0.04982226296826221],[118,195,77,-0.07596909177724102],[118,195,78,-0.08566788782004205],[118,195,79,-0.08914887201475633],[118,196,64,-0.08884702632586564],[118,196,65,-0.08697685017063493],[118,196,66,-0.08117567783779743],[118,196,67,-0.08103251049989688],[118,196,68,-0.08071869807766488],[118,196,69,-0.07555851448247779],[118,196,70,-0.07308811881806734],[118,196,71,-0.07255247403052453],[118,196,72,-0.06835008835636128],[118,196,73,-0.06390812456267043],[118,196,74,-0.05948722631666604],[118,196,75,-0.052773931120398465],[118,196,76,-0.05267513391351243],[118,196,77,-0.07406295865525064],[118,196,78,-0.08545672741286162],[118,196,79,-0.09130170053324939],[118,197,64,-0.09126581872529532],[118,197,65,-0.08934042566564845],[118,197,66,-0.08266849683009372],[118,197,67,-0.07990072460154125],[118,197,68,-0.07771384757298416],[118,197,69,-0.0721541828709407],[118,197,70,-0.06887391621515673],[118,197,71,-0.06994557539529427],[118,197,72,-0.06564895142986776],[118,197,73,-0.06132675973217323],[118,197,74,-0.05687406565554172],[118,197,75,-0.05026295328899248],[118,197,76,-0.04766540735745646],[118,197,77,-0.06427208277348254],[118,197,78,-0.07785045081893656],[118,197,79,-0.08663239531894587],[118,198,64,-0.0942441610417171],[118,198,65,-0.09047742146993494],[118,198,66,-0.08268757079415333],[118,198,67,-0.0776818039089862],[118,198,68,-0.07535888228695942],[118,198,69,-0.06987429485815919],[118,198,70,-0.06650864519627765],[118,198,71,-0.0653297141147503],[118,198,72,-0.062248654044244],[118,198,73,-0.05850608549935752],[118,198,74,-0.054716955163399375],[118,198,75,-0.04997494175089118],[118,198,76,-0.05430626796360517],[118,198,77,-0.06238644608760363],[118,198,78,-0.07476039640830592],[118,198,79,-0.08231756670373402],[118,199,64,-0.09339304719514355],[118,199,65,-0.08690088786172058],[118,199,66,-0.07939529412418188],[118,199,67,-0.0734021328572496],[118,199,68,-0.0716999102465847],[118,199,69,-0.06882702178822213],[118,199,70,-0.06505433517117794],[118,199,71,-0.06052162211314492],[118,199,72,-0.061258696210862364],[118,199,73,-0.05808671131668146],[118,199,74,-0.054388432791417946],[118,199,75,-0.05050481799310329],[118,199,76,-0.058399297513244006],[118,199,77,-0.065317477023275],[118,199,78,-0.07259171426632285],[118,199,79,-0.07899630192264015],[118,200,64,-0.09336648453526382],[118,200,65,-0.08443184523246501],[118,200,66,-0.07909153170281927],[118,200,67,-0.07382840173835103],[118,200,68,-0.07077881128088949],[118,200,69,-0.06751267472043482],[118,200,70,-0.06470344047016241],[118,200,71,-0.060549646175095104],[118,200,72,-0.06195957592541484],[118,200,73,-0.05967282741883282],[118,200,74,-0.0539206572001093],[118,200,75,-0.05273441692514146],[118,200,76,-0.061409240053228856],[118,200,77,-0.06765266349733623],[118,200,78,-0.07163817540096229],[118,200,79,-0.08078709395638436],[118,201,64,-0.08629761660775585],[118,201,65,-0.07804836298233966],[118,201,66,-0.07094074626928816],[118,201,67,-0.06450360530129051],[118,201,68,-0.06231214899476645],[118,201,69,-0.05809774176125951],[118,201,70,-0.056051130387392845],[118,201,71,-0.051842453468096864],[118,201,72,-0.05442045217875145],[118,201,73,-0.05462941930165409],[118,201,74,-0.04783794013775],[118,201,75,-0.04857200761591761],[118,201,76,-0.059785234489640605],[118,201,77,-0.06703993685572182],[118,201,78,-0.07754040899207712],[118,201,79,-0.08419924101244507],[118,202,64,-0.09339941278799523],[118,202,65,-0.08503483206504153],[118,202,66,-0.0780035593341103],[118,202,67,-0.0706726331041762],[118,202,68,-0.06762822007592549],[118,202,69,-0.06380449055109098],[118,202,70,-0.0626279920587017],[118,202,71,-0.05686078220128027],[118,202,72,-0.05753570699929751],[118,202,73,-0.05850651813067494],[118,202,74,-0.0519388246077704],[118,202,75,-0.04962140404040164],[118,202,76,-0.062447792822361944],[118,202,77,-0.06929595665488755],[118,202,78,-0.07954570529109119],[118,202,79,-0.08648887999825053],[118,203,64,-0.09755092134996042],[118,203,65,-0.08821701982812877],[118,203,66,-0.0790541744520439],[118,203,67,-0.07191394491868139],[118,203,68,-0.06574638134776889],[118,203,69,-0.06494628925680326],[118,203,70,-0.06441553203883459],[118,203,71,-0.06090623687932939],[118,203,72,-0.05882543247713022],[118,203,73,-0.05748810807109055],[118,203,74,-0.05101118514694506],[118,203,75,-0.05717464724760439],[118,203,76,-0.07179760033818877],[118,203,77,-0.07655456917012618],[118,203,78,-0.0945524657605867],[118,203,79,-0.09885304940554454],[118,204,64,-0.09829316264799584],[118,204,65,-0.0888499844280299],[118,204,66,-0.07694207082627748],[118,204,67,-0.0675804277739196],[118,204,68,-0.05929727158844135],[118,204,69,-0.05532351922772267],[118,204,70,-0.05329540600922664],[118,204,71,-0.049913149926277156],[118,204,72,-0.04487528525098955],[118,204,73,-0.04353081700546259],[118,204,74,-0.03537390164460888],[118,204,75,-0.04848733785364712],[118,204,76,-0.07105563887955349],[118,204,77,-0.07823955249482414],[118,204,78,-0.09746458764114176],[118,204,79,-0.1006994027709396],[118,205,64,-0.1093130526047826],[118,205,65,-0.10199569897064702],[118,205,66,-0.0925410429608732],[118,205,67,-0.08293388635901412],[118,205,68,-0.0730000855431062],[118,205,69,-0.06713545750245326],[118,205,70,-0.06414030550174746],[118,205,71,-0.05889093057464704],[118,205,72,-0.0533592536559524],[118,205,73,-0.051196885198646375],[118,205,74,-0.04336332903037626],[118,205,75,-0.04039266556039269],[118,205,76,-0.05352437388664448],[118,205,77,-0.05445850493947317],[118,205,78,-0.07332853403052722],[118,205,79,-0.10027765212712592],[118,206,64,-0.11123389495507419],[118,206,65,-0.1046994125324721],[118,206,66,-0.09661694898652816],[118,206,67,-0.08654684613285152],[118,206,68,-0.07531692844486744],[118,206,69,-0.0657847273675911],[118,206,70,-0.062319062279713774],[118,206,71,-0.0571827363096155],[118,206,72,-0.052470523557712256],[118,206,73,-0.04893081467897775],[118,206,74,-0.04524471642848374],[118,206,75,-0.04119455263875642],[118,206,76,-0.051535729381994445],[118,206,77,-0.06093427485377439],[118,206,78,-0.07550228632963521],[118,206,79,-0.10217578684209482],[118,207,64,-0.11825704164349439],[118,207,65,-0.1090532894699028],[118,207,66,-0.10188891745365267],[118,207,67,-0.08814542318205798],[118,207,68,-0.0755232168821736],[118,207,69,-0.0660586963600368],[118,207,70,-0.060389658746653446],[118,207,71,-0.05695222289652359],[118,207,72,-0.052370958503027316],[118,207,73,-0.04713676197412486],[118,207,74,-0.04418871565973874],[118,207,75,-0.03947772019297932],[118,207,76,-0.046434373162477005],[118,207,77,-0.05825746995691875],[118,207,78,-0.06362102395857155],[118,207,79,-0.09795149211287446],[118,208,64,-0.12186806748277398],[118,208,65,-0.11282029288098888],[118,208,66,-0.10320929314224354],[118,208,67,-0.08693501589404311],[118,208,68,-0.07567127975482241],[118,208,69,-0.06790085865798291],[118,208,70,-0.060984653125093685],[118,208,71,-0.05727125229059902],[118,208,72,-0.050643949720477005],[118,208,73,-0.04426592545113234],[118,208,74,-0.040971010950507356],[118,208,75,-0.037415524512091215],[118,208,76,-0.035765617164241634],[118,208,77,-0.044671473392301084],[118,208,78,-0.05344248328744135],[118,208,79,-0.08715040509123936],[118,209,64,-0.12595564992110936],[118,209,65,-0.11694146159499835],[118,209,66,-0.10435382086751692],[118,209,67,-0.08696005308343407],[118,209,68,-0.07696623305831893],[118,209,69,-0.06901602866659111],[118,209,70,-0.061383554064874404],[118,209,71,-0.05596048975421287],[118,209,72,-0.04721785526858219],[118,209,73,-0.03911942570318226],[118,209,74,-0.03757721866365335],[118,209,75,-0.035958259905233374],[118,209,76,-0.03334035451806726],[118,209,77,-0.043040000216783086],[118,209,78,-0.054138720117514444],[118,209,79,-0.08158250400582608],[118,210,64,-0.13510530983589886],[118,210,65,-0.12616965341717257],[118,210,66,-0.11225718702461716],[118,210,67,-0.09371052625541917],[118,210,68,-0.08353474690429606],[118,210,69,-0.07086123455670917],[118,210,70,-0.06447356534991629],[118,210,71,-0.0578269250440249],[118,210,72,-0.04892248569225334],[118,210,73,-0.040811595304407464],[118,210,74,-0.03908097593348231],[118,210,75,-0.036541269680688396],[118,210,76,-0.031211441106445248],[118,210,77,-0.03682852331883144],[118,210,78,-0.05467542045694877],[118,210,79,-0.08139595322882276],[118,211,64,-0.13532570651202244],[118,211,65,-0.12661502383640622],[118,211,66,-0.11244142514955308],[118,211,67,-0.09416265047100604],[118,211,68,-0.08291588823735084],[118,211,69,-0.0714781463416498],[118,211,70,-0.06314491187455464],[118,211,71,-0.05674553971778368],[118,211,72,-0.04878366318384765],[118,211,73,-0.039929457373598584],[118,211,74,-0.03757285574778575],[118,211,75,-0.034004881730096276],[118,211,76,-0.026636189404122518],[118,211,77,-0.03615783627304064],[118,211,78,-0.06051789110488963],[118,211,79,-0.08887706250430615],[118,212,64,-0.11470939318115325],[118,212,65,-0.10910764383711095],[118,212,66,-0.1015645693695071],[118,212,67,-0.09205283891481572],[118,212,68,-0.08855843387511698],[118,212,69,-0.08076271793862168],[118,212,70,-0.07706762458466021],[118,212,71,-0.07336724199376775],[118,212,72,-0.06431902022048587],[118,212,73,-0.05520317990227576],[118,212,74,-0.0515395232164106],[118,212,75,-0.04563054367288635],[118,212,76,-0.03817840345234617],[118,212,77,-0.044304128304005805],[118,212,78,-0.05921022200850961],[118,212,79,-0.0896406585174124],[118,213,64,-0.1202674169066346],[118,213,65,-0.11199668262383487],[118,213,66,-0.10047571991330928],[118,213,67,-0.08984050583764754],[118,213,68,-0.08454937354715811],[118,213,69,-0.0761624151242225],[118,213,70,-0.0728934925652172],[118,213,71,-0.06963314393934664],[118,213,72,-0.06119460501799576],[118,213,73,-0.051112988729262364],[118,213,74,-0.046555934313052036],[118,213,75,-0.04364545332994034],[118,213,76,-0.04476637019842011],[118,213,77,-0.0559361069205748],[118,213,78,-0.06886857717738051],[118,213,79,-0.09328817735975249],[118,214,64,-0.12128759784472627],[118,214,65,-0.11022645856413361],[118,214,66,-0.09839884129369134],[118,214,67,-0.08869101050915346],[118,214,68,-0.08540754063864246],[118,214,69,-0.07789288023821792],[118,214,70,-0.07288884391121048],[118,214,71,-0.06923508080664018],[118,214,72,-0.06023206712194688],[118,214,73,-0.04984966941047285],[118,214,74,-0.04758227003503178],[118,214,75,-0.04502951363031036],[118,214,76,-0.049465400586832985],[118,214,77,-0.06323342090911188],[118,214,78,-0.07284951660722408],[118,214,79,-0.09367302826954883],[118,215,64,-0.12169293489159354],[118,215,65,-0.11173123659884422],[118,215,66,-0.09965141908831637],[118,215,67,-0.08895407459787943],[118,215,68,-0.08575443746978291],[118,215,69,-0.08122705013037321],[118,215,70,-0.07556789682717344],[118,215,71,-0.07016432739384684],[118,215,72,-0.06114424439331172],[118,215,73,-0.050930427384291814],[118,215,74,-0.048987896892853704],[118,215,75,-0.04507011103813363],[118,215,76,-0.04863374856358428],[118,215,77,-0.06319782310504385],[118,215,78,-0.07043941027755563],[118,215,79,-0.09066366014382905],[118,216,64,-0.12002221796788337],[118,216,65,-0.11292859478890066],[118,216,66,-0.1004121544942453],[118,216,67,-0.08863354339699665],[118,216,68,-0.08592380977509684],[118,216,69,-0.0817325752390824],[118,216,70,-0.07735356108401731],[118,216,71,-0.07291186276707086],[118,216,72,-0.062556958411607],[118,216,73,-0.050934505175672176],[118,216,74,-0.0484825348192323],[118,216,75,-0.043748978939538254],[118,216,76,-0.0469093553661184],[118,216,77,-0.06979848383861456],[118,216,78,-0.08720682195981054],[118,216,79,-0.09025745403930281],[118,217,64,-0.11117482014743736],[118,217,65,-0.10850560322775471],[118,217,66,-0.10063174422593528],[118,217,67,-0.09201484452095689],[118,217,68,-0.0906799130235417],[118,217,69,-0.08658552665037558],[118,217,70,-0.08217496705868811],[118,217,71,-0.07807385730079454],[118,217,72,-0.07041985860750459],[118,217,73,-0.05642948733632702],[118,217,74,-0.05117184748546646],[118,217,75,-0.045083240182499394],[118,217,76,-0.05117985500214445],[118,217,77,-0.07769777956679849],[118,217,78,-0.09902695077580893],[118,217,79,-0.09044809711851669],[118,218,64,-0.11479029196523272],[118,218,65,-0.11119790299043168],[118,218,66,-0.10500287298816768],[118,218,67,-0.09446961143895977],[118,218,68,-0.09490859913177319],[118,218,69,-0.09458609091024209],[118,218,70,-0.08753703067114138],[118,218,71,-0.08171905969268495],[118,218,72,-0.07555722771677308],[118,218,73,-0.0636975348558402],[118,218,74,-0.05465688658414092],[118,218,75,-0.04639805784409068],[118,218,76,-0.04828021016628312],[118,218,77,-0.07931962070518433],[118,218,78,-0.10075240044846605],[118,218,79,-0.08878266564177466],[118,219,64,-0.11262892959217656],[118,219,65,-0.11055031596817974],[118,219,66,-0.10583718154747977],[118,219,67,-0.09592217099353847],[118,219,68,-0.09709074216741118],[118,219,69,-0.09358809375418513],[118,219,70,-0.08787070319655127],[118,219,71,-0.07962444780810525],[118,219,72,-0.0754119089206826],[118,219,73,-0.06594077890433576],[118,219,74,-0.05489457306183821],[118,219,75,-0.043500820288143796],[118,219,76,-0.06003222671285204],[118,219,77,-0.09409901056169463],[118,219,78,-0.11010539057451055],[118,219,79,-0.09523462122095679],[118,220,64,-0.11111249057823037],[118,220,65,-0.1065831292924919],[118,220,66,-0.10133506565864113],[118,220,67,-0.09066533421946252],[118,220,68,-0.08844522379051853],[118,220,69,-0.07930793017979358],[118,220,70,-0.07018558105518066],[118,220,71,-0.06242040545611928],[118,220,72,-0.05852377541079215],[118,220,73,-0.04896509458950707],[118,220,74,-0.037464941206831325],[118,220,75,-0.026928471090005013],[118,220,76,-0.06068068619026266],[118,220,77,-0.10744519563203082],[118,220,78,-0.1218781833996222],[118,220,79,-0.1075918574161734],[118,221,64,-0.10766592367078882],[118,221,65,-0.10323097408839309],[118,221,66,-0.09921347159596193],[118,221,67,-0.09146033011742581],[118,221,68,-0.08883122726615367],[118,221,69,-0.0786480475136633],[118,221,70,-0.06551800632826103],[118,221,71,-0.05926300416711573],[118,221,72,-0.05439184828893025],[118,221,73,-0.04944090723363682],[118,221,74,-0.04997258097145969],[118,221,75,-0.06933289696595463],[118,221,76,-0.10480943122862355],[118,221,77,-0.13528273906899888],[118,221,78,-0.12324058893817438],[118,221,79,-0.10990469872222705],[118,222,64,-0.10379275835453516],[118,222,65,-0.10019818068150432],[118,222,66,-0.09739637235542557],[118,222,67,-0.09342921582182317],[118,222,68,-0.08842777523810744],[118,222,69,-0.07692987119491806],[118,222,70,-0.06360581317746954],[118,222,71,-0.05569151208047034],[118,222,72,-0.05031327285546034],[118,222,73,-0.05914102066558525],[118,222,74,-0.06116178572565324],[118,222,75,-0.08058202556412809],[118,222,76,-0.11257729721095178],[118,222,77,-0.13372293129777624],[118,222,78,-0.12413465424301481],[118,222,79,-0.111889362804144],[118,223,64,-0.10780287051635312],[118,223,65,-0.10199775177517563],[118,223,66,-0.0973859225871971],[118,223,67,-0.09657525763246466],[118,223,68,-0.08974451815709734],[118,223,69,-0.0782786304992162],[118,223,70,-0.06626574820499784],[118,223,71,-0.0570716725836698],[118,223,72,-0.0497158630605702],[118,223,73,-0.04650397495943831],[118,223,74,-0.07443417915167369],[118,223,75,-0.10787518093415815],[118,223,76,-0.13398513456900008],[118,223,77,-0.13198963193569857],[118,223,78,-0.12090649747360749],[118,223,79,-0.11061310481790289],[118,224,64,-0.10937782137869057],[118,224,65,-0.10005811822685874],[118,224,66,-0.09621259767116178],[118,224,67,-0.09353748662793544],[118,224,68,-0.08918387655964806],[118,224,69,-0.07727180446975968],[118,224,70,-0.0648813322482845],[118,224,71,-0.055750555409485175],[118,224,72,-0.04799422126092051],[118,224,73,-0.050374097343159965],[118,224,74,-0.07974537684563848],[118,224,75,-0.11207936443578638],[118,224,76,-0.1463806532129367],[118,224,77,-0.13334366187748797],[118,224,78,-0.12343115169208523],[118,224,79,-0.11272878767602872],[118,225,64,-0.11758579830484833],[118,225,65,-0.1048266551718636],[118,225,66,-0.09686969673678233],[118,225,67,-0.08848650725011921],[118,225,68,-0.08089922658022014],[118,225,69,-0.06818538800845166],[118,225,70,-0.0603396545840883],[118,225,71,-0.05009289498372345],[118,225,72,-0.04356167437230238],[118,225,73,-0.052296897341124374],[118,225,74,-0.08389025701999843],[118,225,75,-0.11278026590140007],[118,225,76,-0.15155280161462922],[118,225,77,-0.1348840925322437],[118,225,78,-0.1267150276816862],[118,225,79,-0.11638173499655025],[118,226,64,-0.12240911175222881],[118,226,65,-0.11119573394343488],[118,226,66,-0.10335455685902613],[118,226,67,-0.09182767381310095],[118,226,68,-0.08256604668374272],[118,226,69,-0.06907687083476864],[118,226,70,-0.062015737728798204],[118,226,71,-0.055216783690244714],[118,226,72,-0.04697254418017095],[118,226,73,-0.04310911209382061],[118,226,74,-0.07088951874258423],[118,226,75,-0.10535397341568599],[118,226,76,-0.15205066029167816],[118,226,77,-0.13846787681887468],[118,226,78,-0.1299891716033425],[118,226,79,-0.12081102472847918],[118,227,64,-0.12344279653302558],[118,227,65,-0.11328899775552027],[118,227,66,-0.10238726752049707],[118,227,67,-0.08975312462394384],[118,227,68,-0.08105714273366119],[118,227,69,-0.0686545175707096],[118,227,70,-0.06250993449141896],[118,227,71,-0.05557672541391765],[118,227,72,-0.045695803726364254],[118,227,73,-0.04561991337966009],[118,227,74,-0.07836260100178727],[118,227,75,-0.11993549408822016],[118,227,76,-0.16289841028656993],[118,227,77,-0.14992624783067474],[118,227,78,-0.13970739106899369],[118,227,79,-0.13197069670444414],[118,228,64,-0.11416805120282036],[118,228,65,-0.10564114022914887],[118,228,66,-0.09205773145145267],[118,228,67,-0.07857131193615664],[118,228,68,-0.06677636387974317],[118,228,69,-0.05539508403739779],[118,228,70,-0.04934308222165914],[118,228,71,-0.042051230238419696],[118,228,72,-0.033566433785921085],[118,228,73,-0.03416065127423692],[118,228,74,-0.07596967214882985],[118,228,75,-0.11949807082582473],[118,228,76,-0.16145640243458648],[118,228,77,-0.14943363056344053],[118,228,78,-0.14113642784409697],[118,228,79,-0.13281683993789264],[118,229,64,-0.10671158086942907],[118,229,65,-0.09964106703781378],[118,229,66,-0.09474032550935842],[118,229,67,-0.08479607406434544],[118,229,68,-0.07494364307994057],[118,229,69,-0.0637260860726293],[118,229,70,-0.056470164799406114],[118,229,71,-0.047928127358929595],[118,229,72,-0.035909562527325245],[118,229,73,-0.09115971453889041],[118,229,74,-0.15269807069518868],[118,229,75,-0.1760999757311507],[118,229,76,-0.16615760923039313],[118,229,77,-0.15518941825308183],[118,229,78,-0.14429731224827042],[118,229,79,-0.13555008345438027],[118,230,64,-0.1034731696247059],[118,230,65,-0.09897545056912002],[118,230,66,-0.09464784964084574],[118,230,67,-0.08767109413334614],[118,230,68,-0.07714063511492202],[118,230,69,-0.06489602109616363],[118,230,70,-0.056288588410435034],[118,230,71,-0.04662494621951099],[118,230,72,-0.036412756847460565],[118,230,73,-0.09328445498997114],[118,230,74,-0.16584407025170997],[118,230,75,-0.18485751070491888],[118,230,76,-0.17449503626096835],[118,230,77,-0.16469706307087023],[118,230,78,-0.15178139097233662],[118,230,79,-0.14197914754494398],[118,231,64,-0.10599388401333978],[118,231,65,-0.10333234192087086],[118,231,66,-0.10043087083636926],[118,231,67,-0.09561865916714157],[118,231,68,-0.08377793507110351],[118,231,69,-0.06897255284183665],[118,231,70,-0.05980571774647489],[118,231,71,-0.05022309702212253],[118,231,72,-0.04075108397462906],[118,231,73,-0.09232027812317772],[118,231,74,-0.12382576974783815],[118,231,75,-0.1538491184721011],[118,231,76,-0.17347090906126025],[118,231,77,-0.16238035567723796],[118,231,78,-0.15258174132795477],[118,231,79,-0.1416775770173259],[118,232,64,-0.1052262261407413],[118,232,65,-0.10228408152853184],[118,232,66,-0.10087452436602097],[118,232,67,-0.09707203203477137],[118,232,68,-0.08349034605384704],[118,232,69,-0.07105423748392091],[118,232,70,-0.05997979313463565],[118,232,71,-0.05020385800433272],[118,232,72,-0.03846033972051574],[118,232,73,-0.08576543867794595],[118,232,74,-0.11910057093151138],[118,232,75,-0.1403092528446483],[118,232,76,-0.1751021893414757],[118,232,77,-0.16568743264925945],[118,232,78,-0.15645926689664144],[118,232,79,-0.14318322020642563],[118,233,64,-0.10856100340924663],[118,233,65,-0.10424666535253568],[118,233,66,-0.10045754351906701],[118,233,67,-0.0946390804492186],[118,233,68,-0.08391208236783426],[118,233,69,-0.07023049717900658],[118,233,70,-0.05988792117347272],[118,233,71,-0.05061038781828213],[118,233,72,-0.04151195085233148],[118,233,73,-0.07981320675669606],[118,233,74,-0.11311512244989033],[118,233,75,-0.1393297084459692],[118,233,76,-0.17832059954852522],[118,233,77,-0.17083239761652133],[118,233,78,-0.16085425589880464],[118,233,79,-0.1458268475411883],[118,234,64,-0.11515628179981845],[118,234,65,-0.11176478819175839],[118,234,66,-0.10377953071181789],[118,234,67,-0.09583697575952381],[118,234,68,-0.08726263042674708],[118,234,69,-0.07550507978199693],[118,234,70,-0.06519993595368904],[118,234,71,-0.05339113147626998],[118,234,72,-0.04181925009222741],[118,234,73,-0.054740901036093595],[118,234,74,-0.0736925409103181],[118,234,75,-0.11186361354752376],[118,234,76,-0.1649253137382639],[118,234,77,-0.15992854505329043],[118,234,78,-0.15061059180515163],[118,234,79,-0.13974389097113307],[118,235,64,-0.11758472178724706],[118,235,65,-0.11248251946986941],[118,235,66,-0.10346911994458902],[118,235,67,-0.09470990757735072],[118,235,68,-0.08790808800967413],[118,235,69,-0.07798056037191992],[118,235,70,-0.06684712127905755],[118,235,71,-0.05346105269100591],[118,235,72,-0.03980975563852385],[118,235,73,-0.029221254056418317],[118,235,74,-0.014597306778853819],[118,235,75,-0.005108812983711103],[118,235,76,-0.08031417677095881],[118,235,77,-0.1475014436134206],[118,235,78,-0.15703838594705277],[118,235,79,-0.14787177863896916],[118,236,64,-0.13793283163826892],[118,236,65,-0.13197021600155934],[118,236,66,-0.12322794202341365],[118,236,67,-0.11553789424186856],[118,236,68,-0.10809005663093281],[118,236,69,-0.09760292015620159],[118,236,70,-0.08613479078472368],[118,236,71,-0.07287418855169851],[118,236,72,-0.05878601594171333],[118,236,73,-0.049982902620750155],[118,236,74,-0.036342538924926907],[118,236,75,-0.02467152049748368],[118,236,76,-0.08879544569308007],[118,236,77,-0.151206878851459],[118,236,78,-0.16476291661776976],[118,236,79,-0.15383325286519375],[118,237,64,-0.13957218482471329],[118,237,65,-0.13124381337525892],[118,237,66,-0.12150313548750574],[118,237,67,-0.1122042424371348],[118,237,68,-0.10383465637301893],[118,237,69,-0.09547486234263029],[118,237,70,-0.08189936980952665],[118,237,71,-0.07238526206961021],[118,237,72,-0.0613112801722243],[118,237,73,-0.05332622442819156],[118,237,74,-0.0406524419155528],[118,237,75,-0.047605550200176296],[118,237,76,-0.11671230246148558],[118,237,77,-0.16904472932665096],[118,237,78,-0.1649404620337792],[118,237,79,-0.15465364396924172],[118,238,64,-0.14002891963559752],[118,238,65,-0.13191780085904647],[118,238,66,-0.12362903504629932],[118,238,67,-0.11320523184725707],[118,238,68,-0.10303406379505516],[118,238,69,-0.09642120910492508],[118,238,70,-0.08386967029699849],[118,238,71,-0.07226024905817337],[118,238,72,-0.06439151954550039],[118,238,73,-0.05453492290583033],[118,238,74,-0.04762981926964656],[118,238,75,-0.07681819991013517],[118,238,76,-0.13721393279520444],[118,238,77,-0.16126326223059206],[118,238,78,-0.1584802251979509],[118,238,79,-0.15037907836602332],[118,239,64,-0.14803513203578358],[118,239,65,-0.13659388621004237],[118,239,66,-0.12877623241537617],[118,239,67,-0.11904101805522194],[118,239,68,-0.10935773659553956],[118,239,69,-0.10190926533572439],[118,239,70,-0.08971460222922062],[118,239,71,-0.07734909522337241],[118,239,72,-0.0694977000751309],[118,239,73,-0.057474843172147724],[118,239,74,-0.04097013477428455],[118,239,75,-0.0627326267347175],[118,239,76,-0.11545542280452949],[118,239,77,-0.14964423592436227],[118,239,78,-0.15135450889924176],[118,239,79,-0.14326066654675282],[118,240,64,-0.14896779936917914],[118,240,65,-0.1372119432195041],[118,240,66,-0.1274200482385851],[118,240,67,-0.11953485142151092],[118,240,68,-0.10970294398984147],[118,240,69,-0.1024413520411537],[118,240,70,-0.09000802346131721],[118,240,71,-0.07810609277922598],[118,240,72,-0.06810232151412268],[118,240,73,-0.057941163676631074],[118,240,74,-0.041490927156540736],[118,240,75,-0.06187231752834831],[118,240,76,-0.10933864137350009],[118,240,77,-0.1473390420520717],[118,240,78,-0.14765463521156463],[118,240,79,-0.14161551822934737],[118,241,64,-0.1505043033213983],[118,241,65,-0.13952390807211396],[118,241,66,-0.1309385975773832],[118,241,67,-0.1219136759939785],[118,241,68,-0.11458940910798701],[118,241,69,-0.10298247502464274],[118,241,70,-0.09066172105065161],[118,241,71,-0.07995060308279693],[118,241,72,-0.06566659824452815],[118,241,73,-0.05268541773867284],[118,241,74,-0.03794187194072283],[118,241,75,-0.023705637800530463],[118,241,76,-0.01130846149369212],[118,241,77,8.640462934997872E-4],[118,241,78,0.01914974596073689],[118,241,79,-0.06402159646153979],[118,242,64,-0.15350577750359862],[118,242,65,-0.14351942243392235],[118,242,66,-0.1322008613363646],[118,242,67,-0.12437790708684493],[118,242,68,-0.1156699069802066],[118,242,69,-0.10251343167001391],[118,242,70,-0.09149846089546802],[118,242,71,-0.08234885551932696],[118,242,72,-0.06866799219980475],[118,242,73,-0.05407423877389758],[118,242,74,-0.04031770182648952],[118,242,75,-0.02843671615493304],[118,242,76,-0.015469755499618779],[118,242,77,-0.0032482278165702066],[118,242,78,0.014177342767448128],[118,242,79,-0.06806929414165926],[118,243,64,-0.15338992878878674],[118,243,65,-0.1433642241147228],[118,243,66,-0.13046542400196187],[118,243,67,-0.12240773575659562],[118,243,68,-0.11163679717203948],[118,243,69,-0.09826577461541158],[118,243,70,-0.08963712014599515],[118,243,71,-0.0814337054654782],[118,243,72,-0.07041590772739041],[118,243,73,-0.05589491584470491],[118,243,74,-0.03981428025279876],[118,243,75,-0.027525362502035897],[118,243,76,-0.017501183753356256],[118,243,77,-0.003930664979905546],[118,243,78,0.012438480812959174],[118,243,79,-0.07679675093086775],[118,244,64,-0.13941943733155532],[118,244,65,-0.1263080101114376],[118,244,66,-0.11153555908282549],[118,244,67,-0.10119636581990354],[118,244,68,-0.08890611761091816],[118,244,69,-0.07677836349129347],[118,244,70,-0.0683367389409607],[118,244,71,-0.05911146204317391],[118,244,72,-0.04917585621815333],[118,244,73,-0.03328820388179339],[118,244,74,-0.018195401046443946],[118,244,75,-0.004662944511919301],[118,244,76,0.007288523982230274],[118,244,77,0.019813449114371065],[118,244,78,0.031546042194724365],[118,244,79,-0.05248302577983714],[118,245,64,-0.13933603585389295],[118,245,65,-0.12417255420207414],[118,245,66,-0.10852420047750871],[118,245,67,-0.09695008001523805],[118,245,68,-0.08497592879667416],[118,245,69,-0.07363931429744823],[118,245,70,-0.06854743017729142],[118,245,71,-0.05878619857050714],[118,245,72,-0.04736469265090294],[118,245,73,-0.03171238318033358],[118,245,74,-0.017539847460873878],[118,245,75,-0.0037737643203305943],[118,245,76,0.00875311313363096],[118,245,77,0.022656801679725475],[118,245,78,0.03439852500851523],[118,245,79,-0.05175749072067311],[118,246,64,-0.1359371732289375],[118,246,65,-0.12263551862085159],[118,246,66,-0.10542077184606034],[118,246,67,-0.09210961805063042],[118,246,68,-0.07999195533780121],[118,246,69,-0.07005555687952095],[118,246,70,-0.06779009699912923],[118,246,71,-0.056340277050489065],[118,246,72,-0.047076433736091536],[118,246,73,-0.031639952732965215],[118,246,74,-0.020601424347381367],[118,246,75,-0.004013034520542705],[118,246,76,0.010443434315713013],[118,246,77,0.022053745847938414],[118,246,78,0.006339830572240454],[118,246,79,-0.09967721139328972],[118,247,64,-0.13964677976648388],[118,247,65,-0.12707484602906],[118,247,66,-0.11081493920196775],[118,247,67,-0.0958887990078875],[118,247,68,-0.08271723446930823],[118,247,69,-0.07054077702854986],[118,247,70,-0.06685047336856748],[118,247,71,-0.05613239515554497],[118,247,72,-0.04712647157799171],[118,247,73,-0.03347269855580489],[118,247,74,-0.021204246408359634],[118,247,75,-0.004629290505932082],[118,247,76,0.010759766263107456],[118,247,77,0.024598709163457577],[118,247,78,0.020586605029483784],[118,247,79,-0.0801576562056923],[118,248,64,-0.13746164170603836],[118,248,65,-0.12213032812008837],[118,248,66,-0.1098206647415748],[118,248,67,-0.09599270605632745],[118,248,68,-0.0826600099524247],[118,248,69,-0.06895487180911741],[118,248,70,-0.0625866202680541],[118,248,71,-0.055421087993819965],[118,248,72,-0.04468809394848545],[118,248,73,-0.032595655448535564],[118,248,74,-0.019619137840004602],[118,248,75,-0.0060836755984483015],[118,248,76,0.007359485783221806],[118,248,77,0.02473867909721418],[118,248,78,0.02333963516208747],[118,248,79,-0.07897664679286863],[118,249,64,-0.13242205415466474],[118,249,65,-0.11598562926671001],[118,249,66,-0.103763187197558],[118,249,67,-0.08654782748708532],[118,249,68,-0.07015794515956846],[118,249,69,-0.058999204161529734],[118,249,70,-0.051477843682914234],[118,249,71,-0.04413905393052693],[118,249,72,-0.03781211463089208],[118,249,73,-0.029330220834737873],[118,249,74,-0.016510525715551255],[118,249,75,-0.00433061100977826],[118,249,76,0.009720832066640928],[118,249,77,0.02262302461381721],[118,249,78,-0.012180186808393834],[118,249,79,-0.11940855313001997],[118,250,64,-0.1329941214129258],[118,250,65,-0.11739858018451615],[118,250,66,-0.10269391538964695],[118,250,67,-0.08821582901249189],[118,250,68,-0.0720528850054951],[118,250,69,-0.05967795571294751],[118,250,70,-0.052872162002441145],[118,250,71,-0.044968754352919325],[118,250,72,-0.03702598391595167],[118,250,73,-0.02981250467148716],[118,250,74,-0.016692141943289218],[118,250,75,-0.005814659621763571],[118,250,76,-0.01788672526937939],[118,250,77,-0.031024297589236388],[118,250,78,-0.04636223804333334],[118,250,79,-0.0836371295736083],[118,251,64,-0.12979786527739595],[118,251,65,-0.11343719900044534],[118,251,66,-0.09983943254813343],[118,251,67,-0.08551889328392005],[118,251,68,-0.07281468863553238],[118,251,69,-0.059191149782763824],[118,251,70,-0.05060424972359602],[118,251,71,-0.044309024319924055],[118,251,72,-0.03592509544639961],[118,251,73,-0.024867577476472807],[118,251,74,-0.01362360466595447],[118,251,75,-0.003599985619112109],[118,251,76,-0.004562779704763698],[118,251,77,-0.024199811230331422],[118,251,78,-0.03506170389234631],[118,251,79,-0.07338676600443167],[118,252,64,-0.11991950266338632],[118,252,65,-0.10144548296767215],[118,252,66,-0.08779793066749086],[118,252,67,-0.07368518156217962],[118,252,68,-0.061938399146561865],[118,252,69,-0.04912428700600101],[118,252,70,-0.0396771728844133],[118,252,71,-0.03299085901389462],[118,252,72,-0.023238788143655056],[118,252,73,-0.010426450341200655],[118,252,74,0.004032729331913912],[118,252,75,0.008895038506826436],[118,252,76,0.016683797925794663],[118,252,77,-0.00997445309266548],[118,252,78,-0.019195083665653784],[118,252,79,-0.06961103365645901],[118,253,64,-0.11460364948207906],[118,253,65,-0.10048098914861778],[118,253,66,-0.0908890836996492],[118,253,67,-0.07976782204210002],[118,253,68,-0.0718058984756635],[118,253,69,-0.0612757913959253],[118,253,70,-0.050910095127765925],[118,253,71,-0.041004919862062436],[118,253,72,-0.030888467926573085],[118,253,73,-0.015108797893578649],[118,253,74,-6.129254664642703E-4],[118,253,75,0.005341479111731648],[118,253,76,0.01435598457624511],[118,253,77,0.026641137094808823],[118,253,78,0.027521341362714138],[118,253,79,-0.02458411319533306],[118,254,64,-0.030337506676473724],[118,254,65,-0.023363813427645125],[118,254,66,-0.01918563064322354],[118,254,67,-0.01688996915928956],[118,254,68,-0.01768456443136368],[118,254,69,-0.014961347526044985],[118,254,70,-0.016334694091848304],[118,254,71,-0.013986123377153839],[118,254,72,-0.013830080449169307],[118,254,73,-0.007222216058563755],[118,254,74,-0.0026260058272027514],[118,254,75,-9.844414309037042E-4],[118,254,76,-6.909594069283431E-4],[118,254,77,0.0036331605974014025],[118,254,78,-0.0020869134404970548],[118,254,79,-0.04114116082156575],[118,255,64,-0.028098854332018072],[118,255,65,-0.022086777483206255],[118,255,66,-0.019777600378057425],[118,255,67,-0.014312743485044244],[118,255,68,-0.01766077902935216],[118,255,69,-0.016002597762653697],[118,255,70,-0.01432116225587357],[118,255,71,-0.0140507762987689],[118,255,72,-0.013435980111939833],[118,255,73,-0.008622385750066464],[118,255,74,-0.0031825108399797936],[118,255,75,-4.742012718464139E-4],[118,255,76,7.69121609679943E-4],[118,255,77,0.004104592758456371],[118,255,78,0.0036829969077302495],[118,255,79,-0.027038451178028167],[118,256,64,-0.02885662828762979],[118,256,65,-0.023991545546890605],[118,256,66,-0.020771867092409427],[118,256,67,-0.01568813446585006],[118,256,68,-0.016783796106532523],[118,256,69,-0.014116937295490906],[118,256,70,-0.011758937131187017],[118,256,71,-0.013210963777048348],[118,256,72,-0.011041520907334457],[118,256,73,-0.008293992337048278],[118,256,74,-0.003033634901369431],[118,256,75,-9.204751926400467E-4],[118,256,76,0.0016321892400939925],[118,256,77,0.003110213336351225],[118,256,78,0.008759776507559996],[118,256,79,-0.03229628213026977],[118,257,64,-0.030100957843974083],[118,257,65,-0.025082901746533576],[118,257,66,-0.02241787342882827],[118,257,67,-0.01635980161877873],[118,257,68,-0.014623256174613117],[118,257,69,-0.01228782040846102],[118,257,70,-0.00811560475297994],[118,257,71,-0.009904841842920925],[118,257,72,-0.00895982899040558],[118,257,73,-0.006114519787345077],[118,257,74,-0.003208201114941883],[118,257,75,6.686210332823295E-4],[118,257,76,0.002190683413921729],[118,257,77,0.002463850139722168],[118,257,78,-0.022404529873144716],[118,257,79,-0.07251330556185417],[118,258,64,-0.03452730448146782],[118,258,65,-0.031133954913023246],[118,258,66,-0.025515270672621437],[118,258,67,-0.0204949841703832],[118,258,68,-0.016812776392178208],[118,258,69,-0.01345777392429813],[118,258,70,-0.007164839943338358],[118,258,71,-0.008631569604569567],[118,258,72,-0.010700914058658598],[118,258,73,-0.008988566937578643],[118,258,74,-0.006492266639244126],[118,258,75,-0.002120747535333034],[118,258,76,0.0027716471700868356],[118,258,77,0.0012271916942319383],[118,258,78,-0.027185950885477907],[118,258,79,-0.07869279006554232],[118,259,64,-0.034732668204246364],[118,259,65,-0.029906566912234797],[118,259,66,-0.0234118575614021],[118,259,67,-0.02006826041300347],[118,259,68,-0.013674822860390665],[118,259,69,-0.010064735618564566],[118,259,70,-0.00516048124620809],[118,259,71,-0.0076879561928057255],[118,259,72,-0.009895384088077747],[118,259,73,-0.009372826460946351],[118,259,74,-0.006955576896720245],[118,259,75,-0.0028365238917604507],[118,259,76,0.001835067449237629],[118,259,77,0.002003813989230191],[118,259,78,-0.004611325412288722],[118,259,79,-0.07157084013665359],[118,260,64,-0.12486747301851388],[118,260,65,-0.12223797181908977],[118,260,66,-0.11958357062597874],[118,260,67,-0.11694708471675634],[118,260,68,-0.11530099909452952],[118,260,69,-0.1149898984994672],[118,260,70,-0.1127949626932681],[118,260,71,-0.11606447467294123],[118,260,72,-0.11972402390240852],[118,260,73,-0.1177824650309148],[118,260,74,-0.11641384538589805],[118,260,75,-0.11264947207935244],[118,260,76,-0.10977451986012701],[118,260,77,-0.10385550933730921],[118,260,78,-0.10630179787777946],[118,260,79,-0.1325345509178122],[118,261,64,-0.1284770293859609],[118,261,65,-0.12262892646338],[118,261,66,-0.11934949977082279],[118,261,67,-0.11588958615602274],[118,261,68,-0.11347381812756079],[118,261,69,-0.1128915830307613],[118,261,70,-0.11120459957509851],[118,261,71,-0.11108609079874703],[118,261,72,-0.11068893706968369],[118,261,73,-0.10530925798298715],[118,261,74,-0.10705880686820507],[118,261,75,-0.10541547407823598],[118,261,76,-0.10340234154048014],[118,261,77,-0.10545145188954608],[118,261,78,-0.11642391887931096],[118,261,79,-0.1394430290207308],[118,262,64,-0.13449063982640178],[118,262,65,-0.13032396804551716],[118,262,66,-0.12760538795578205],[118,262,67,-0.12044808499415105],[118,262,68,-0.11778263110177867],[118,262,69,-0.11375076426855964],[118,262,70,-0.11251771796728885],[118,262,71,-0.11215897132722921],[118,262,72,-0.11226441467447064],[118,262,73,-0.10505963641488669],[118,262,74,-0.10376401924938138],[118,262,75,-0.10542645000283049],[118,262,76,-0.10424126758918166],[118,262,77,-0.10379800358499655],[118,262,78,-0.11917888116960008],[118,262,79,-0.1508478330384949],[118,263,64,-0.13086309123483406],[118,263,65,-0.12912329531464878],[118,263,66,-0.12640409863847282],[118,263,67,-0.11877365455018292],[118,263,68,-0.11658656593634076],[118,263,69,-0.11089008208732654],[118,263,70,-0.11100331110330536],[118,263,71,-0.11275627718143913],[118,263,72,-0.11127805628650045],[118,263,73,-0.10353141850872796],[118,263,74,-0.10190301352861807],[118,263,75,-0.10464348650311892],[118,263,76,-0.10512119024152496],[118,263,77,-0.10466752029252496],[118,263,78,-0.11379291327236399],[118,263,79,-0.14784291559979507],[118,264,64,-0.12838524244261346],[118,264,65,-0.1256941380899111],[118,264,66,-0.1229526553849901],[118,264,67,-0.11557655225168824],[118,264,68,-0.11163820392198015],[118,264,69,-0.10891770154755914],[118,264,70,-0.10875261538492632],[118,264,71,-0.11095142361449482],[118,264,72,-0.10946685523144452],[118,264,73,-0.10271721974728447],[118,264,74,-0.10095621740872104],[118,264,75,-0.10375311503731346],[118,264,76,-0.10306928562129233],[118,264,77,-0.10483050114215402],[118,264,78,-0.117154394981369],[118,264,79,-0.14718870515407995],[118,265,64,-0.12051493578959646],[118,265,65,-0.11958935924976655],[118,265,66,-0.11504515328737662],[118,265,67,-0.10589378887522079],[118,265,68,-0.10424931537415338],[118,265,69,-0.10491155419691162],[118,265,70,-0.1078600763899863],[118,265,71,-0.10929219250741909],[118,265,72,-0.11366793325109549],[118,265,73,-0.11301106628143553],[118,265,74,-0.16521575947697906],[118,265,75,-0.20895429254200876],[118,265,76,-0.2145470380446114],[118,265,77,-0.21235996400191987],[118,265,78,-0.19936614534996433],[118,265,79,-0.20287757875997692],[118,266,64,-0.11747964731760077],[118,266,65,-0.12017125399998055],[118,266,66,-0.11425863785071293],[118,266,67,-0.10541321820156292],[118,266,68,-0.10493932212795636],[118,266,69,-0.10718171275354794],[118,266,70,-0.10913148251189338],[118,266,71,-0.11040288843663085],[118,266,72,-0.11387731609068269],[118,266,73,-0.11619834566345594],[118,266,74,-0.1596119236702666],[118,266,75,-0.19776125010412307],[118,266,76,-0.21423669115736504],[118,266,77,-0.21707752731785385],[118,266,78,-0.1977288599305565],[118,266,79,-0.2123380122615015],[118,267,64,-0.11238485350524138],[118,267,65,-0.11556861823063158],[118,267,66,-0.11161995434711314],[118,267,67,-0.10161700358188963],[118,267,68,-0.10159080756263197],[118,267,69,-0.10638744250741085],[118,267,70,-0.10538240494022465],[118,267,71,-0.10668065242768779],[118,267,72,-0.11144961562938491],[118,267,73,-0.11589470767129251],[118,267,74,-0.16759478759207308],[118,267,75,-0.19927493317823086],[118,267,76,-0.21767389113218505],[118,267,77,-0.22967041273329736],[118,267,78,-0.2066913251091531],[118,267,79,-0.21615906074179567],[118,268,64,-0.10243221330960917],[118,268,65,-0.10198010357335133],[118,268,66,-0.09828672953099331],[118,268,67,-0.08908282257667287],[118,268,68,-0.0882065013506812],[118,268,69,-0.09011615818127416],[118,268,70,-0.08757218034627978],[118,268,71,-0.09190548549953578],[118,268,72,-0.09710478668302655],[118,268,73,-0.10317089557781309],[118,268,74,-0.13998380465960006],[118,268,75,-0.15847167470096404],[118,268,76,-0.17645470717226497],[118,268,77,-0.21043061001344093],[118,268,78,-0.2133340910357064],[118,268,79,-0.20357773547759095],[118,269,64,-0.09744397703035641],[118,269,65,-0.09579801469700755],[118,269,66,-0.09216009021128087],[118,269,67,-0.08367407401837827],[118,269,68,-0.08585638794484998],[118,269,69,-0.08625456383610021],[118,269,70,-0.08376996357263194],[118,269,71,-0.08815001807518022],[118,269,72,-0.0944140578189355],[118,269,73,-0.10247035029921336],[118,269,74,-0.13457899777109011],[118,269,75,-0.15613148068654745],[118,269,76,-0.16991477746616596],[118,269,77,-0.20717710554580676],[118,269,78,-0.21169789375165562],[118,269,79,-0.2030144711098876],[118,270,64,-0.09991161757960884],[118,270,65,-0.09753745622599301],[118,270,66,-0.09216456062342068],[118,270,67,-0.086571057339823],[118,270,68,-0.08621674907991544],[118,270,69,-0.08707507977348002],[118,270,70,-0.08144575199455903],[118,270,71,-0.08411871511996752],[118,270,72,-0.09316281903629064],[118,270,73,-0.09946087781364023],[118,270,74,-0.12456320130762626],[118,270,75,-0.1492488968290988],[118,270,76,-0.16263427807933287],[118,270,77,-0.1943040921658747],[118,270,78,-0.19214200529520845],[118,270,79,-0.18387363072467133],[118,271,64,-0.09907523866721954],[118,271,65,-0.09443649162479929],[118,271,66,-0.0915276091120452],[118,271,67,-0.08507438500144315],[118,271,68,-0.08348502766533997],[118,271,69,-0.08518145485249243],[118,271,70,-0.07946242883791],[118,271,71,-0.08090724852861167],[118,271,72,-0.08745263435512192],[118,271,73,-0.09548367582619853],[118,271,74,-0.11617281855213533],[118,271,75,-0.1425438018162912],[118,271,76,-0.16457114241601628],[118,271,77,-0.19096114779766454],[118,271,78,-0.1889283618994941],[118,271,79,-0.17897457218474228],[118,272,64,-0.09752605203730953],[118,272,65,-0.09204779141857256],[118,272,66,-0.08805784783910703],[118,272,67,-0.08401863779815046],[118,272,68,-0.08021846204812896],[118,272,69,-0.08337476560164606],[118,272,70,-0.07693994263616696],[118,272,71,-0.07802889930477797],[118,272,72,-0.08428612745473393],[118,272,73,-0.09105661881275001],[118,272,74,-0.11600096426133921],[118,272,75,-0.14248233126121537],[118,272,76,-0.1681924813758156],[118,272,77,-0.19506041534857504],[118,272,78,-0.18312701122088829],[118,272,79,-0.17538020674232957],[118,273,64,-0.0925405444502471],[118,273,65,-0.08750761788031858],[118,273,66,-0.08389374973136672],[118,273,67,-0.0788137862249539],[118,273,68,-0.07382230735878391],[118,273,69,-0.07488630166842791],[118,273,70,-0.07100921832881868],[118,273,71,-0.07156151868392074],[118,273,72,-0.07767091228558191],[118,273,73,-0.08754027009941565],[118,273,74,-0.09680514739651958],[118,273,75,-0.10389473963153043],[118,273,76,-0.10176050648024335],[118,273,77,-0.09039167125209063],[118,273,78,-0.08038282416890813],[118,273,79,-0.07504940892046147],[118,274,64,-0.09256005649831248],[118,274,65,-0.08691595576030653],[118,274,66,-0.08101731877662285],[118,274,67,-0.07721614397848744],[118,274,68,-0.07460774804583409],[118,274,69,-0.0727883488309636],[118,274,70,-0.07062719039578692],[118,274,71,-0.070905621755283],[118,274,72,-0.0769537240162871],[118,274,73,-0.08669165671882066],[118,274,74,-0.09706788307941239],[118,274,75,-0.10261035856053732],[118,274,76,-0.10046478003374017],[118,274,77,-0.09012747186522352],[118,274,78,-0.07861277484413282],[118,274,79,-0.07163914241722252],[118,275,64,-0.08977056254521792],[118,275,65,-0.08293682182198273],[118,275,66,-0.07775059784175697],[118,275,67,-0.07389143833328299],[118,275,68,-0.07322561628083799],[118,275,69,-0.06931169845789174],[118,275,70,-0.0677913843469424],[118,275,71,-0.0683995293655642],[118,275,72,-0.0732320942380814],[118,275,73,-0.08327836471140963],[118,275,74,-0.0979783200360186],[118,275,75,-0.10694375970072062],[118,275,76,-0.10521857644759572],[118,275,77,-0.09436919822899265],[118,275,78,-0.08424883932025257],[118,275,79,-0.07227089091668826],[118,276,64,-0.07246337209910307],[118,276,65,-0.06761026023998663],[118,276,66,-0.06492175742612902],[118,276,67,-0.0612506881815765],[118,276,68,-0.05990289877582815],[118,276,69,-0.057271975314232865],[118,276,70,-0.050751626046351375],[118,276,71,-0.05255691358839237],[118,276,72,-0.05937140419703016],[118,276,73,-0.06555141989174658],[118,276,74,-0.09657680070138736],[118,276,75,-0.11557290042260468],[118,276,76,-0.11312017309445996],[118,276,77,-0.09835107165351265],[118,276,78,-0.08709884095025933],[118,276,79,-0.07227825780414918],[118,277,64,-0.07122698157130133],[118,277,65,-0.070076997759859],[118,277,66,-0.0674320627250986],[118,277,67,-0.06575345592664168],[118,277,68,-0.060160775774620145],[118,277,69,-0.05750575752738679],[118,277,70,-0.05297174022050796],[118,277,71,-0.05291796914894187],[118,277,72,-0.0574110361405131],[118,277,73,-0.0611894306996128],[118,277,74,-0.09396957040077442],[118,277,75,-0.1158834225072426],[118,277,76,-0.10962689631894484],[118,277,77,-0.09697574243512352],[118,277,78,-0.08263419869483721],[118,277,79,-0.06894988309625427],[118,278,64,-0.07382678420273231],[118,278,65,-0.07524948784245133],[118,278,66,-0.07257104539809439],[118,278,67,-0.06807499968004103],[118,278,68,-0.057671989650709216],[118,278,69,-0.05611631362996279],[118,278,70,-0.05208235674875196],[118,278,71,-0.05308430912535521],[118,278,72,-0.05415067798892214],[118,278,73,-0.05563935097323329],[118,278,74,-0.08631029424838044],[118,278,75,-0.1017080400319289],[118,278,76,-0.09365495343220029],[118,278,77,-0.08385179551887997],[118,278,78,-0.06964490278695817],[118,278,79,-0.05804239030304112],[118,279,64,-0.07387465584498681],[118,279,65,-0.07358610808950695],[118,279,66,-0.07054334287364286],[118,279,67,-0.0649359190490496],[118,279,68,-0.05510748166192107],[118,279,69,-0.05196789874676841],[118,279,70,-0.04907355681910523],[118,279,71,-0.04867635389105264],[118,279,72,-0.049857203684781054],[118,279,73,-0.0548001596475467],[118,279,74,-0.0838089941101237],[118,279,75,-0.09519730928374923],[118,279,76,-0.089799506367026],[118,279,77,-0.07961843751089745],[118,279,78,-0.06455960326449439],[118,279,79,-0.05129553470862899],[118,280,64,-0.07365768160409408],[118,280,65,-0.07053705622067208],[118,280,66,-0.06803056461338289],[118,280,67,-0.05816122455917264],[118,280,68,-0.05264537249861542],[118,280,69,-0.049557597534487574],[118,280,70,-0.04751026656598766],[118,280,71,-0.04674126043545779],[118,280,72,-0.04661444332595882],[118,280,73,-0.052358815121183296],[118,280,74,-0.08223150088031038],[118,280,75,-0.09367429444430082],[118,280,76,-0.08633349232595594],[118,280,77,-0.07743849751459173],[118,280,78,-0.06149212244304045],[118,280,79,-0.048288498323395795],[118,281,64,-0.0728069880472863],[118,281,65,-0.07058688639255596],[118,281,66,-0.06451185164991219],[118,281,67,-0.0548876200048742],[118,281,68,-0.05136525799764212],[118,281,69,-0.04827518694313233],[118,281,70,-0.045996431540694535],[118,281,71,-0.04518646442106843],[118,281,72,-0.04568535419823817],[118,281,73,-0.05133783891441901],[118,281,74,-0.09219108155390876],[118,281,75,-0.10579456555975691],[118,281,76,-0.09371979254308452],[118,281,77,-0.08292755750828873],[118,281,78,-0.06721856321302697],[118,281,79,-0.05360822784969657],[118,282,64,-0.0775678774485046],[118,282,65,-0.07402676413780768],[118,282,66,-0.06432335841186168],[118,282,67,-0.05324960663056137],[118,282,68,-0.04943235686748665],[118,282,69,-0.04708815860027265],[118,282,70,-0.0464047373368872],[118,282,71,-0.04604804104760647],[118,282,72,-0.049424710481637886],[118,282,73,-0.053181668875193835],[118,282,74,-0.08607068811657492],[118,282,75,-0.11296938741165059],[118,282,76,-0.10304815918725002],[118,282,77,-0.09225857270126792],[118,282,78,-0.07545344261405826],[118,282,79,-0.062664592218344],[118,283,64,-0.07888716327853532],[118,283,65,-0.07455515508456428],[118,283,66,-0.06357510181381416],[118,283,67,-0.05111750303891252],[118,283,68,-0.04609170417845821],[118,283,69,-0.043813211013407516],[118,283,70,-0.04360964033401476],[118,283,71,-0.04559777179507202],[118,283,72,-0.05231763151776237],[118,283,73,-0.05158048253298034],[118,283,74,-0.06903258837579118],[118,283,75,-0.10542413106924386],[118,283,76,-0.11045920309904539],[118,283,77,-0.09626705173689978],[118,283,78,-0.08130778985149667],[118,283,79,-0.06663054706936086],[118,284,64,-0.09802238784550152],[118,284,65,-0.09193902003894307],[118,284,66,-0.07916089968596322],[118,284,67,-0.06917610421917515],[118,284,68,-0.0631775799906649],[118,284,69,-0.059383480248064974],[118,284,70,-0.06164446154652796],[118,284,71,-0.06410161558757627],[118,284,72,-0.06929064241002175],[118,284,73,-0.06955670699326631],[118,284,74,-0.08509148496226263],[118,284,75,-0.11128270439898495],[118,284,76,-0.11261010224629195],[118,284,77,-0.0994350731389648],[118,284,78,-0.08406025993337743],[118,284,79,-0.0708907066201985],[118,285,64,-0.10136863293125634],[118,285,65,-0.09187394667624324],[118,285,66,-0.07618170261292807],[118,285,67,-0.06562138544820571],[118,285,68,-0.06217865886018194],[118,285,69,-0.057624068737150806],[118,285,70,-0.056621988858439165],[118,285,71,-0.0605074411755559],[118,285,72,-0.06593274269894316],[118,285,73,-0.06679568356226467],[118,285,74,-0.08362255860351778],[118,285,75,-0.1073651503831663],[118,285,76,-0.10885319621406195],[118,285,77,-0.09758057147983704],[118,285,78,-0.08111901163557408],[118,285,79,-0.06905279885946577],[118,286,64,-0.10372058053161756],[118,286,65,-0.0907163674187135],[118,286,66,-0.07817521629193125],[118,286,67,-0.06835867303818886],[118,286,68,-0.06282784513842635],[118,286,69,-0.05931164348505565],[118,286,70,-0.05708571459650018],[118,286,71,-0.05887094185650809],[118,286,72,-0.06273159016177036],[118,286,73,-0.06524037276130695],[118,286,74,-0.07939710877571068],[118,286,75,-0.10377185111789525],[118,286,76,-0.1082167497767505],[118,286,77,-0.09699699460982855],[118,286,78,-0.08101064706241004],[118,286,79,-0.06913030294313594],[118,287,64,-0.10044631049363602],[118,287,65,-0.08765529585907436],[118,287,66,-0.07604973999266734],[118,287,67,-0.06741717578800935],[118,287,68,-0.061676590581290644],[118,287,69,-0.05726085760829909],[118,287,70,-0.05488594237638074],[118,287,71,-0.05701685227395705],[118,287,72,-0.06266108623951208],[118,287,73,-0.06593230740959688],[118,287,74,-0.07134867213047756],[118,287,75,-0.09498507964295094],[118,287,76,-0.10283425566699886],[118,287,77,-0.09126193519789605],[118,287,78,-0.07600742620242146],[118,287,79,-0.060517382356024385],[118,288,64,-0.09473274214862494],[118,288,65,-0.08436880605241606],[118,288,66,-0.07539437653167658],[118,288,67,-0.06510465532215431],[118,288,68,-0.061019476939029815],[118,288,69,-0.05615026030401764],[118,288,70,-0.05243230523041357],[118,288,71,-0.05431323779247027],[118,288,72,-0.06174748589781672],[118,288,73,-0.06689298469410332],[118,288,74,-0.06805148509499838],[118,288,75,-0.08914082976176436],[118,288,76,-0.0946817163646221],[118,288,77,-0.08479403308847289],[118,288,78,-0.07362034056096697],[118,288,79,-0.05608837628370178],[118,289,64,-0.08165589762123991],[118,289,65,-0.07626637949589282],[118,289,66,-0.07296579391441045],[118,289,67,-0.06479603145490083],[118,289,68,-0.06187538209842399],[118,289,69,-0.057064348991081676],[118,289,70,-0.05366031651546395],[118,289,71,-0.05709079019234802],[118,289,72,-0.06209023364883564],[118,289,73,-0.06900050398438802],[118,289,74,-0.08315260063549883],[118,289,75,-0.10289931658315876],[118,289,76,-0.09970058929593362],[118,289,77,-0.0874063160992336],[118,289,78,-0.07516979803314289],[118,289,79,-0.062377051016394375],[118,290,64,-0.08063690536835419],[118,290,65,-0.077385056323593],[118,290,66,-0.07498182426407088],[118,290,67,-0.06662672197891335],[118,290,68,-0.06163878403837476],[118,290,69,-0.05692063388611408],[118,290,70,-0.05356990547851198],[118,290,71,-0.05828731161569211],[118,290,72,-0.062419382342604024],[118,290,73,-0.06687172132812542],[118,290,74,-0.07468605898661401],[118,290,75,-0.08973975673351231],[118,290,76,-0.0857315360422059],[118,290,77,-0.07215005573209837],[118,290,78,-0.06024884559521704],[118,290,79,-0.052587316045795446],[118,291,64,-0.07985826001651475],[118,291,65,-0.07778005785294681],[118,291,66,-0.07287440909474152],[118,291,67,-0.0642542216906252],[118,291,68,-0.05997817966658113],[118,291,69,-0.05544395390995111],[118,291,70,-0.053133359361486374],[118,291,71,-0.05799418111452868],[118,291,72,-0.062244083882486825],[118,291,73,-0.06404812198075795],[118,291,74,-0.068185947199128],[118,291,75,-0.08666511728328799],[118,291,76,-0.08696475757432792],[118,291,77,-0.07385840451712702],[118,291,78,-0.0612556439473278],[118,291,79,-0.05551478589397865],[118,292,64,-0.05583495972376488],[118,292,65,-0.05248701327215545],[118,292,66,-0.04796114107473902],[118,292,67,-0.04153859459296631],[118,292,68,-0.038527580742305195],[118,292,69,-0.034365575027678716],[118,292,70,-0.031598056434519795],[118,292,71,-0.03703561124520381],[118,292,72,-0.041731408858428395],[118,292,73,-0.04278172421467942],[118,292,74,-0.04561825005362401],[118,292,75,-0.06675177879580381],[118,292,76,-0.07278732212773933],[118,292,77,-0.06020064400241115],[118,292,78,-0.048002046120117936],[118,292,79,-0.04128257272563482],[118,293,64,-0.0525541832065524],[118,293,65,-0.04850301866422257],[118,293,66,-0.04556427551049601],[118,293,67,-0.03905453752850218],[118,293,68,-0.038308959887392],[118,293,69,-0.034134625346194256],[118,293,70,-0.03393657370167938],[118,293,71,-0.03603848814162262],[118,293,72,-0.0395843711884059],[118,293,73,-0.04246221088367917],[118,293,74,-0.043358374729512976],[118,293,75,-0.06110507906938119],[118,293,76,-0.06832750773493046],[118,293,77,-0.05467808925053],[118,293,78,-0.043910980472577105],[118,293,79,-0.0367519813563775],[118,294,64,-0.04934065996639587],[118,294,65,-0.045352899988953886],[118,294,66,-0.04398353339467237],[118,294,67,-0.03939048728221398],[118,294,68,-0.03523814506543638],[118,294,69,-0.030816384466808067],[118,294,70,-0.031074249866029316],[118,294,71,-0.03424302304617506],[118,294,72,-0.03641865074909029],[118,294,73,-0.03731449311134839],[118,294,74,-0.0397263259360559],[118,294,75,-0.055151216880646114],[118,294,76,-0.07655315105968183],[118,294,77,-0.06775002622197115],[118,294,78,-0.05724319666778449],[118,294,79,-0.04883251336631447],[118,295,64,-0.04737458562151471],[118,295,65,-0.042247460850581675],[118,295,66,-0.03967364193597053],[118,295,67,-0.03629151542063447],[118,295,68,-0.03016546728937239],[118,295,69,-0.02311027047954009],[118,295,70,-0.024391693170520826],[118,295,71,-0.029108900388755077],[118,295,72,-0.03363523785549596],[118,295,73,-0.03591814200660045],[118,295,74,-0.039096870094522604],[118,295,75,-0.03717964762431104],[118,295,76,-0.043478532266374804],[118,295,77,-0.059832063124592334],[118,295,78,-0.05330916851242529],[118,295,79,-0.043752301797039594],[118,296,64,-0.04284005084549078],[118,296,65,-0.038649899541604193],[118,296,66,-0.035724224538602536],[118,296,67,-0.030737324316999437],[118,296,68,-0.025251808280263313],[118,296,69,-0.017508775149781303],[118,296,70,-0.019975531347837708],[118,296,71,-0.025142769174912483],[118,296,72,-0.02820476262514625],[118,296,73,-0.03079683131261421],[118,296,74,-0.03770717274221681],[118,296,75,-0.036012983179763786],[118,296,76,-0.036701245984754466],[118,296,77,-0.05665260395651022],[118,296,78,-0.05205800238795491],[118,296,79,-0.04148286187296024],[118,297,64,-0.04586719334522665],[118,297,65,-0.038064304277122346],[118,297,66,-0.03294991053500705],[118,297,67,-0.02520276000967761],[118,297,68,-0.0173557902534571],[118,297,69,-0.009535969473871003],[118,297,70,-0.012156232264232222],[118,297,71,-0.021270001546812523],[118,297,72,-0.025046726686907633],[118,297,73,-0.02874578024315526],[118,297,74,-0.036820233015590224],[118,297,75,-0.034354711613322486],[118,297,76,-0.0420291247011176],[118,297,77,-0.06537170709220273],[118,297,78,-0.05501492425211402],[118,297,79,-0.044288253509875974],[118,298,64,-0.045201239943526886],[118,298,65,-0.038130603618071426],[118,298,66,-0.03279937237457334],[118,298,67,-0.023969576275462826],[118,298,68,-0.01832487923624973],[118,298,69,-0.00917884808294514],[118,298,70,-0.011954204853169087],[118,298,71,-0.01804212126163171],[118,298,72,-0.024992245768054144],[118,298,73,-0.029152046767621946],[118,298,74,-0.031006132060007678],[118,298,75,-0.03276338290181588],[118,298,76,-0.04308330837420556],[118,298,77,-0.05595983224351545],[118,298,78,-0.05278346781345064],[118,298,79,-0.03939734973333367],[118,299,64,-0.0447005634242206],[118,299,65,-0.035185101475254096],[118,299,66,-0.028314599183472802],[118,299,67,-0.020436919443693358],[118,299,68,-0.013217312936906159],[118,299,69,-0.007064844627093253],[118,299,70,-0.010706161609643869],[118,299,71,-0.014157042336534267],[118,299,72,-0.021824015456148704],[118,299,73,-0.026764441193867478],[118,299,74,-0.027651493579014808],[118,299,75,-0.029610425100267145],[118,299,76,-0.04601312787077175],[118,299,77,-0.05649340492560925],[118,299,78,-0.05355739432443499],[118,299,79,-0.03959219351016208],[118,300,64,-0.04378863686503941],[118,300,65,-0.033839544592721524],[118,300,66,-0.026719078999508275],[118,300,67,-0.020448803601017626],[118,300,68,-0.011435988655338597],[118,300,69,-0.006020388704565838],[118,300,70,-0.005156864413581416],[118,300,71,-0.008822314489833394],[118,300,72,-0.01322924893543162],[118,300,73,-0.01787788142318436],[118,300,74,-0.02135331932298757],[118,300,75,-0.01984846651775301],[118,300,76,-0.011942555226184204],[118,300,77,-0.006339749691345764],[118,300,78,-0.0038426123666239625],[118,300,79,-0.0014050761101098677],[118,301,64,-0.04097084145646343],[118,301,65,-0.03200110469631359],[118,301,66,-0.02203742406530361],[118,301,67,-0.016740540821517214],[118,301,68,-0.00988151580357656],[118,301,69,-0.006121061789858273],[118,301,70,-0.00293544940534822],[118,301,71,-0.007307279395253358],[118,301,72,-0.013809716815883888],[118,301,73,-0.018976164476265336],[118,301,74,-0.019005639060822088],[118,301,75,-0.01612740801375366],[118,301,76,-0.009164209807446116],[118,301,77,-0.007634982252593472],[118,301,78,-0.005242747777931184],[118,301,79,0.004967944927388529],[118,302,64,-0.033633080062786785],[118,302,65,-0.027047315872773314],[118,302,66,-0.015370786454358881],[118,302,67,-0.012261746258669423],[118,302,68,-0.005907325668774374],[118,302,69,-0.001851648269892897],[118,302,70,0.0021780326448174736],[118,302,71,-0.0020834396291249946],[118,302,72,-0.007504188424254085],[118,302,73,-0.013258998175649461],[118,302,74,-0.011503900924022967],[118,302,75,-0.005942502892105281],[118,302,76,-9.778251047477399E-4],[118,302,77,-2.880932065850855E-4],[118,302,78,0.003321186555058933],[118,302,79,0.013508307725880506],[118,303,64,-0.030608727719558526],[118,303,65,-0.022537190570438598],[118,303,66,-0.011857452113796865],[118,303,67,-0.008564754876420999],[118,303,68,-0.0024370345407195154],[118,303,69,5.647065622730596E-4],[118,303,70,0.004665487454240294],[118,303,71,6.469943813331019E-4],[118,303,72,-0.005019280711164059],[118,303,73,-0.009655711940710826],[118,303,74,-0.008806216316570886],[118,303,75,-0.0018542652422829375],[118,303,76,0.00190207052734577],[118,303,77,0.002118545997969179],[118,303,78,0.003962760523027603],[118,303,79,0.01468308098452975],[118,304,64,-0.025973594230192312],[118,304,65,-0.016983673200520633],[118,304,66,-0.01001471445433294],[118,304,67,-0.00679944527909708],[118,304,68,-0.0026513561477792408],[118,304,69,0.002345882792793297],[118,304,70,0.007387821033441336],[118,304,71,0.0037867925316255463],[118,304,72,-0.001612948340998191],[118,304,73,-0.004749906141362489],[118,304,74,-0.005003468115185594],[118,304,75,4.2100426152309744E-4],[118,304,76,0.004195608196948947],[118,304,77,0.00755161184637812],[118,304,78,0.008304952503356042],[118,304,79,0.016978367634583172],[118,305,64,-0.024389871730595078],[118,305,65,-0.015396236498023505],[118,305,66,-0.009789498967566534],[118,305,67,-0.006794153050058344],[118,305,68,-0.002165766784696377],[118,305,69,0.003790548536008617],[118,305,70,0.007790652331900558],[118,305,71,0.00792078085577981],[118,305,72,0.00382176125365076],[118,305,73,-1.0071588303482704E-4],[118,305,74,5.222804251855256E-4],[118,305,75,0.0037849120180329376],[118,305,76,0.006130752500410716],[118,305,77,0.009180599632405473],[118,305,78,0.012066055362443387],[118,305,79,0.019916102120299997],[118,306,64,-0.029291982807622893],[118,306,65,-0.020301399724954428],[118,306,66,-0.01000812752906291],[118,306,67,-0.005698312207993758],[118,306,68,-4.288019494732981E-4],[118,306,69,0.006259420629922602],[118,306,70,0.008536609799318737],[118,306,71,0.009208301363104951],[118,306,72,0.005573301231206362],[118,306,73,0.003897272972992097],[118,306,74,0.0021247317207354066],[118,306,75,0.0032282939437827812],[118,306,76,0.004558841142035391],[118,306,77,0.008681140442654098],[118,306,78,0.012019425499266337],[118,306,79,0.01835551780064336],[118,307,64,-0.0284100613370339],[118,307,65,-0.02026853059914817],[118,307,66,-0.0090653614088953],[118,307,67,-0.0011585212126853928],[118,307,68,0.005900920453951325],[118,307,69,0.009917307564588085],[118,307,70,0.012222607987407333],[118,307,71,0.008805819081284083],[118,307,72,0.005063981387861169],[118,307,73,0.006423980375160246],[118,307,74,0.003998361032733183],[118,307,75,0.003324132721495218],[118,307,76,0.005691894756143567],[118,307,77,0.009689292269650665],[118,307,78,0.01597598096874539],[118,307,79,0.019668234558876174],[118,308,64,-0.009916758558465216],[118,308,65,-0.0011367216781932865],[118,308,66,0.010203835560395585],[118,308,67,0.01790969272807047],[118,308,68,0.022994757876714844],[118,308,69,0.02472633334519843],[118,308,70,0.021134823719381732],[118,308,71,0.012042158622155477],[118,308,72,0.00481088634190141],[118,308,73,0.003079460913793547],[118,308,74,1.2843377544759227E-4],[118,308,75,-0.0023978718917810893],[118,308,76,-0.001721282737292107],[118,308,77,0.002870629406539829],[118,308,78,0.006876747597006169],[118,308,79,0.009894115186125],[118,309,64,-0.009095499893658224],[118,309,65,-0.0010614097060727412],[118,309,66,0.011652326013648295],[118,309,67,0.019037629790583807],[118,309,68,0.023483191022314873],[118,309,69,0.023592569610095496],[118,309,70,0.021687857152319898],[118,309,71,0.015257698821507529],[118,309,72,0.009625496580777104],[118,309,73,0.00417369409384688],[118,309,74,0.0012816859925764423],[118,309,75,-0.001818375168468972],[118,309,76,3.458456547923011E-4],[118,309,77,0.004190677854072566],[118,309,78,0.009056042470343834],[118,309,79,0.011118131332682357],[118,310,64,-0.002151297693749235],[118,310,65,0.0043621320666637625],[118,310,66,0.016187688344795753],[118,310,67,0.021817699339350793],[118,310,68,0.02795617950766925],[118,310,69,0.030850271918412317],[118,310,70,0.029567987235830984],[118,310,71,0.022579410315438225],[118,310,72,0.01915007380475585],[118,310,73,0.011081642555919771],[118,310,74,0.008452646431303085],[118,310,75,0.00758803585406688],[118,310,76,0.010028011003049703],[118,310,77,0.014241032860361963],[118,310,78,0.017295168754721715],[118,310,79,0.0214895738167816],[118,311,64,1.3886605449139888E-4],[118,311,65,0.006941825248258426],[118,311,66,0.018404654987882255],[118,311,67,0.02399775208388555],[118,311,68,0.029074473279911417],[118,311,69,0.03443186283460828],[118,311,70,0.03053847415471167],[118,311,71,0.025888562552369473],[118,311,72,0.02009773564689203],[118,311,73,0.013300468243572977],[118,311,74,0.0093637393911504],[118,311,75,0.01080931108592681],[118,311,76,0.012238404316883583],[118,311,77,0.01466995501565889],[118,311,78,0.018928634771526037],[118,311,79,0.021864362168945647],[118,312,64,-0.0020691172843655126],[118,312,65,0.005672671684829447],[118,312,66,0.015276590112418678],[118,312,67,0.020706882314697167],[118,312,68,0.02555205198743246],[118,312,69,0.02897479839433613],[118,312,70,0.02772623490313192],[118,312,71,0.025669522543150067],[118,312,72,0.027026388524545072],[118,312,73,0.022503944810422172],[118,312,74,0.019770408105883056],[118,312,75,0.02035076093589927],[118,312,76,0.02105837926116859],[118,312,77,0.023019100958938374],[118,312,78,0.022867537014270856],[118,312,79,0.02474969592952246],[118,313,64,0.0010893823175806144],[118,313,65,0.007979001752129442],[118,313,66,0.015704155879180406],[118,313,67,0.02172018862703358],[118,313,68,0.027218814308597364],[118,313,69,0.02872519355261606],[118,313,70,0.027663015320172554],[118,313,71,0.028292423269215314],[118,313,72,0.028123754437356693],[118,313,73,0.02467940462757434],[118,313,74,0.02367740334781057],[118,313,75,0.02427068036660142],[118,313,76,0.024298001701578073],[118,313,77,0.023501448204769904],[118,313,78,0.02137961151843623],[118,313,79,0.02269150398005887],[118,314,64,-0.0035195729272866627],[118,314,65,0.005325099236905426],[118,314,66,0.014370610957706198],[118,314,67,0.02011507528246957],[118,314,68,0.025480979883042792],[118,314,69,0.027109951862937756],[118,314,70,0.02569036416051565],[118,314,71,0.02889888173666555],[118,314,72,0.030913181352016525],[118,314,73,0.025953100145847036],[118,314,74,0.02483231180433758],[118,314,75,0.025703392716490872],[118,314,76,0.026801858087854236],[118,314,77,0.025256790664082346],[118,314,78,0.018308367663572786],[118,314,79,0.020418285237048778],[118,315,64,-0.007135101968558155],[118,315,65,0.0017833171799913339],[118,315,66,0.010914999554583693],[118,315,67,0.019878068476788538],[118,315,68,0.025611580408286705],[118,315,69,0.027630050075502316],[118,315,70,0.027648122622489335],[118,315,71,0.03172359290971165],[118,315,72,0.033603371190201306],[118,315,73,0.029526446198954212],[118,315,74,0.028477591285561335],[118,315,75,0.03029546615887957],[118,315,76,0.030358782037211277],[118,315,77,0.02875745173131518],[118,315,78,0.019425262323385553],[118,315,79,0.022441152266453546],[118,316,64,-0.01609146615933567],[118,316,65,-0.0037429998853180935],[118,316,66,0.006993036757283105],[118,316,67,0.016246034674975984],[118,316,68,0.02488184294216332],[118,316,69,0.028050792382945125],[118,316,70,0.030669779124198257],[118,316,71,0.03484665671297493],[118,316,72,0.03943089570522633],[118,316,73,0.03587452214730405],[118,316,74,0.035030208888848446],[118,316,75,0.0382245138979328],[118,316,76,0.03768020064259313],[118,316,77,0.03486083719707821],[118,316,78,0.027416454492269565],[118,316,79,0.030542308520832874],[118,317,64,-0.01760146359754],[118,317,65,-0.0058793045675195055],[118,317,66,0.00763215651054458],[118,317,67,0.017848396688225063],[118,317,68,0.023695160108290994],[118,317,69,0.028928564208945032],[118,317,70,0.032844909952580575],[118,317,71,0.03900202852710287],[118,317,72,0.041663220840844284],[118,317,73,0.03732667390458935],[118,317,74,0.03718331930964007],[118,317,75,0.040980279347868034],[118,317,76,0.042159102196153764],[118,317,77,0.0379699666947296],[118,317,78,0.02984673168597625],[118,317,79,0.03336164865916612],[118,318,64,-0.013757554555124674],[118,318,65,-5.690785481679839E-4],[118,318,66,0.014476718294010205],[118,318,67,0.024843706305380728],[118,318,68,0.03292821461179786],[118,318,69,0.040453470904724745],[118,318,70,0.04557561566100583],[118,318,71,0.049599105087417744],[118,318,72,0.05205093543734296],[118,318,73,0.04808222021942214],[118,318,74,0.04641593866909609],[118,318,75,0.05105821326621526],[118,318,76,0.052537033639240144],[118,318,77,0.04973968002210363],[118,318,78,0.042829515738584],[118,318,79,0.0428094066314489],[118,319,64,-0.014586305999748445],[118,319,65,0.001796831360924303],[118,319,66,0.01575078400727646],[118,319,67,0.024648654497210667],[118,319,68,0.03685378975961011],[118,319,69,0.0449401500934692],[118,319,70,0.05060099097617754],[118,319,71,0.05105094367675783],[118,319,72,0.05173571820025337],[118,319,73,0.049583444399669566],[118,319,74,0.049322863011905096],[118,319,75,0.0531089037455723],[118,319,76,0.05364237998646],[118,319,77,0.05057639777370035],[118,319,78,0.04508596847758753],[118,319,79,0.04568293857610478],[119,-64,64,-0.4676010652986214],[119,-64,65,-0.45456719614616287],[119,-64,66,-0.4435609855474437],[119,-64,67,-0.4307875254314241],[119,-64,68,-0.4250722806357668],[119,-64,69,-0.41985122841685873],[119,-64,70,-0.40947088751794136],[119,-64,71,-0.3981948862835011],[119,-64,72,-0.38736591459907826],[119,-64,73,-0.37798168564295015],[119,-64,74,-0.37792660752089335],[119,-64,75,-0.3774418547107725],[119,-64,76,-0.3736856223066876],[119,-64,77,-0.3725537839744895],[119,-64,78,-0.3772254236100055],[119,-64,79,-0.37915733780339805],[119,-63,64,-0.4690053384726426],[119,-63,65,-0.45569406730290907],[119,-63,66,-0.443372592503269],[119,-63,67,-0.4331854949146234],[119,-63,68,-0.42551668043971147],[119,-63,69,-0.4219110693603014],[119,-63,70,-0.4107420112094682],[119,-63,71,-0.39502819210026713],[119,-63,72,-0.38115934843770816],[119,-63,73,-0.36969454876398244],[119,-63,74,-0.3706016210262748],[119,-63,75,-0.3723205032574151],[119,-63,76,-0.3686495733559381],[119,-63,77,-0.36826487759408993],[119,-63,78,-0.3749429673885877],[119,-63,79,-0.3771719651871579],[119,-62,64,-0.463918770678285],[119,-62,65,-0.450637268500714],[119,-62,66,-0.4387022839031283],[119,-62,67,-0.43199267427298177],[119,-62,68,-0.42421869421229885],[119,-62,69,-0.4183217318063085],[119,-62,70,-0.40942339729945015],[119,-62,71,-0.39176456151940087],[119,-62,72,-0.3763468801128996],[119,-62,73,-0.36923050951664443],[119,-62,74,-0.36504879109676003],[119,-62,75,-0.3682386306830976],[119,-62,76,-0.36457360474117856],[119,-62,77,-0.36572397636417786],[119,-62,78,-0.36963369827814635],[119,-62,79,-0.3726146481889308],[119,-61,64,-0.4648785776228913],[119,-61,65,-0.4524051021422169],[119,-61,66,-0.4395883390003634],[119,-61,67,-0.4357972621245475],[119,-61,68,-0.42771355787202203],[119,-61,69,-0.42013121786682744],[119,-61,70,-0.41123938774685326],[119,-61,71,-0.39442587675995033],[119,-61,72,-0.3783369228742833],[119,-61,73,-0.3737171825695164],[119,-61,74,-0.3686980507783576],[119,-61,75,-0.37006789150419245],[119,-61,76,-0.3675608290733072],[119,-61,77,-0.3687559246067533],[119,-61,78,-0.37215546943001465],[119,-61,79,-0.37347021879587966],[119,-60,64,-0.4640395982927522],[119,-60,65,-0.453954007946769],[119,-60,66,-0.4410004635650825],[119,-60,67,-0.43409307573887324],[119,-60,68,-0.4275161487967408],[119,-60,69,-0.41916735400498356],[119,-60,70,-0.4067185684760876],[119,-60,71,-0.3897127677138226],[119,-60,72,-0.3764985692150331],[119,-60,73,-0.3705094628084802],[119,-60,74,-0.36608914161999007],[119,-60,75,-0.3672403916348474],[119,-60,76,-0.3642919659589646],[119,-60,77,-0.367126762206903],[119,-60,78,-0.36924376945814114],[119,-60,79,-0.3683064661790115],[119,-59,64,-0.44575789293718876],[119,-59,65,-0.43916239793628964],[119,-59,66,-0.43125438803148997],[119,-59,67,-0.4247296155209293],[119,-59,68,-0.42052341379668445],[119,-59,69,-0.41189402899372596],[119,-59,70,-0.3984082700595601],[119,-59,71,-0.3880851979755694],[119,-59,72,-0.3773549532067767],[119,-59,73,-0.3736134058382023],[119,-59,74,-0.36932061647596093],[119,-59,75,-0.36792498922628314],[119,-59,76,-0.3642108252592997],[119,-59,77,-0.36309909265027807],[119,-59,78,-0.3630908049153876],[119,-59,79,-0.3596722183413613],[119,-58,64,-0.4439254834867991],[119,-58,65,-0.43631519018206966],[119,-58,66,-0.4300433554790627],[119,-58,67,-0.422519827196537],[119,-58,68,-0.4179370329658585],[119,-58,69,-0.4093148279368938],[119,-58,70,-0.3934741240543315],[119,-58,71,-0.38746038762538804],[119,-58,72,-0.3777227704486511],[119,-58,73,-0.3716815350560341],[119,-58,74,-0.36680033043956217],[119,-58,75,-0.3648606029959909],[119,-58,76,-0.36155013496311894],[119,-58,77,-0.3602531114812577],[119,-58,78,-0.3574012334110588],[119,-58,79,-0.35288942977176463],[119,-57,64,-0.4473550357759297],[119,-57,65,-0.44239548836075804],[119,-57,66,-0.4337949935195031],[119,-57,67,-0.4263647537616608],[119,-57,68,-0.4205826880732485],[119,-57,69,-0.41054509218740654],[119,-57,70,-0.39945298020940395],[119,-57,71,-0.39197204994280915],[119,-57,72,-0.3825211844440141],[119,-57,73,-0.37191179781271316],[119,-57,74,-0.3660550676184186],[119,-57,75,-0.36345883660740436],[119,-57,76,-0.3599808668010104],[119,-57,77,-0.3579314628122404],[119,-57,78,-0.3540394444123728],[119,-57,79,-0.34737528006904295],[119,-56,64,-0.44658997247912846],[119,-56,65,-0.4419543518099118],[119,-56,66,-0.4331457960621494],[119,-56,67,-0.42641871135821185],[119,-56,68,-0.42215083236311934],[119,-56,69,-0.41158614019865497],[119,-56,70,-0.40028354838613805],[119,-56,71,-0.391263690051007],[119,-56,72,-0.38347084310622254],[119,-56,73,-0.37070884491023626],[119,-56,74,-0.36587000920778606],[119,-56,75,-0.36048849674064454],[119,-56,76,-0.35608866423437796],[119,-56,77,-0.3527485232094129],[119,-56,78,-0.34789395070908397],[119,-56,79,-0.3439217749875585],[119,-55,64,-0.44483735137257496],[119,-55,65,-0.4404810577480567],[119,-55,66,-0.43316313148365354],[119,-55,67,-0.4268446570942856],[119,-55,68,-0.4227816681184391],[119,-55,69,-0.41481325712031064],[119,-55,70,-0.40377054074326135],[119,-55,71,-0.3922368086777563],[119,-55,72,-0.3830190936592133],[119,-55,73,-0.36885842109939104],[119,-55,74,-0.3626660469734767],[119,-55,75,-0.35773242406329],[119,-55,76,-0.35161404457896567],[119,-55,77,-0.34963093160482517],[119,-55,78,-0.34323840921663423],[119,-55,79,-0.342652428605611],[119,-54,64,-0.4413959429972824],[119,-54,65,-0.4383808677421855],[119,-54,66,-0.43432046034151933],[119,-54,67,-0.4292825264771392],[119,-54,68,-0.42190285964866214],[119,-54,69,-0.4145856680921965],[119,-54,70,-0.4067778548690373],[119,-54,71,-0.3950001454994917],[119,-54,72,-0.38330882577009817],[119,-54,73,-0.3688961208367143],[119,-54,74,-0.35893701765216585],[119,-54,75,-0.35328535206392664],[119,-54,76,-0.34832846384000504],[119,-54,77,-0.3438980266549954],[119,-54,78,-0.34060906675043706],[119,-54,79,-0.3403245206258074],[119,-53,64,-0.44626753172487044],[119,-53,65,-0.44564085589473346],[119,-53,66,-0.43829685950184105],[119,-53,67,-0.4336270051229575],[119,-53,68,-0.42641709861513544],[119,-53,69,-0.4183328415252764],[119,-53,70,-0.41071885947540876],[119,-53,71,-0.40092077060053494],[119,-53,72,-0.3879001825639784],[119,-53,73,-0.3732947716999095],[119,-53,74,-0.3602388815581339],[119,-53,75,-0.35451632550255846],[119,-53,76,-0.35033683768313806],[119,-53,77,-0.34346659450044353],[119,-53,78,-0.3404673858495848],[119,-53,79,-0.3414364708668063],[119,-52,64,-0.4483138555804654],[119,-52,65,-0.4457319114024074],[119,-52,66,-0.4379303975524243],[119,-52,67,-0.43212272974309024],[119,-52,68,-0.42697986793343373],[119,-52,69,-0.41702349529534644],[119,-52,70,-0.4091566940543761],[119,-52,71,-0.39716924803329495],[119,-52,72,-0.3860183503849543],[119,-52,73,-0.37179014895333257],[119,-52,74,-0.35836881204594906],[119,-52,75,-0.3483988135654049],[119,-52,76,-0.34640968369645264],[119,-52,77,-0.339466119279741],[119,-52,78,-0.335564523859357],[119,-52,79,-0.3362351876360298],[119,-51,64,-0.4649241506470722],[119,-51,65,-0.466604540457402],[119,-51,66,-0.46322065353931696],[119,-51,67,-0.4596596207313738],[119,-51,68,-0.45546969544212407],[119,-51,69,-0.4454994766561991],[119,-51,70,-0.4338532932252464],[119,-51,71,-0.42205901113220895],[119,-51,72,-0.4092016606794083],[119,-51,73,-0.39170912360319177],[119,-51,74,-0.37650069502649636],[119,-51,75,-0.36487369383489177],[119,-51,76,-0.35626044909598864],[119,-51,77,-0.34474213647321944],[119,-51,78,-0.3320989611783465],[119,-51,79,-0.3257415920677643],[119,-50,64,-0.4609845294281756],[119,-50,65,-0.4658758144538657],[119,-50,66,-0.46260430221624205],[119,-50,67,-0.46137414232480484],[119,-50,68,-0.45869908991264946],[119,-50,69,-0.4442193358005742],[119,-50,70,-0.43074292333620395],[119,-50,71,-0.4204001758990541],[119,-50,72,-0.406837750346122],[119,-50,73,-0.38913731694082715],[119,-50,74,-0.37389938950132073],[119,-50,75,-0.3648101212131634],[119,-50,76,-0.35716777838909264],[119,-50,77,-0.3421849442887091],[119,-50,78,-0.32825652003195094],[119,-50,79,-0.32123226610047956],[119,-49,64,-0.45454643384991644],[119,-49,65,-0.46188170474205315],[119,-49,66,-0.46854477836629443],[119,-49,67,-0.46807219239718056],[119,-49,68,-0.46351021879434445],[119,-49,69,-0.4480392884389137],[119,-49,70,-0.43425467953605795],[119,-49,71,-0.4225004866157255],[119,-49,72,-0.4089732259292908],[119,-49,73,-0.3913006770842995],[119,-49,74,-0.37424097230468334],[119,-49,75,-0.3651695216092984],[119,-49,76,-0.35775144749896215],[119,-49,77,-0.3424515292927622],[119,-49,78,-0.3288383354311693],[119,-49,79,-0.3209223272662118],[119,-48,64,-0.4429066882072162],[119,-48,65,-0.4488436748126554],[119,-48,66,-0.46833096466562607],[119,-48,67,-0.4673952459711448],[119,-48,68,-0.46010959943985796],[119,-48,69,-0.4459683902789982],[119,-48,70,-0.4319606385038287],[119,-48,71,-0.4189052271616825],[119,-48,72,-0.4083268219265387],[119,-48,73,-0.3894942627923896],[119,-48,74,-0.37370906798169806],[119,-48,75,-0.3647070069709063],[119,-48,76,-0.3540942030826853],[119,-48,77,-0.3402791010663682],[119,-48,78,-0.32618777383999786],[119,-48,79,-0.3181479008529473],[119,-47,64,-0.4212144569733735],[119,-47,65,-0.4483839104965343],[119,-47,66,-0.4633048556986893],[119,-47,67,-0.4557409249000278],[119,-47,68,-0.4431805655788961],[119,-47,69,-0.43104739814865567],[119,-47,70,-0.4200808884714644],[119,-47,71,-0.41164550678948],[119,-47,72,-0.4010013571051902],[119,-47,73,-0.3849241834199243],[119,-47,74,-0.3762569224412257],[119,-47,75,-0.3648152374395779],[119,-47,76,-0.3507004211764822],[119,-47,77,-0.33985182495889654],[119,-47,78,-0.3311823962211468],[119,-47,79,-0.3275717168182837],[119,-46,64,-0.4646724381730035],[119,-46,65,-0.4636742441783913],[119,-46,66,-0.45931767185422745],[119,-46,67,-0.4503804441254408],[119,-46,68,-0.4371564428787067],[119,-46,69,-0.42844687373756907],[119,-46,70,-0.4187920533287632],[119,-46,71,-0.4074155882696133],[119,-46,72,-0.3959637328189686],[119,-46,73,-0.3833763869483179],[119,-46,74,-0.3744989493356017],[119,-46,75,-0.36370243307334604],[119,-46,76,-0.34778555650670934],[119,-46,77,-0.3371901222294961],[119,-46,78,-0.33111097825869074],[119,-46,79,-0.32768646444178373],[119,-45,64,-0.4283411626784789],[119,-45,65,-0.4320639510755268],[119,-45,66,-0.44692296287217237],[119,-45,67,-0.4498621477076277],[119,-45,68,-0.4373645200367115],[119,-45,69,-0.42971182346104453],[119,-45,70,-0.4208025699384616],[119,-45,71,-0.4074111451320355],[119,-45,72,-0.3955120176428946],[119,-45,73,-0.38396895922376045],[119,-45,74,-0.37656884248260875],[119,-45,75,-0.36641943690115225],[119,-45,76,-0.3498029135755577],[119,-45,77,-0.3391961274030261],[119,-45,78,-0.33159290290435],[119,-45,79,-0.32909247274697057],[119,-44,64,-0.32924956848638065],[119,-44,65,-0.3453286530060681],[119,-44,66,-0.3989943160417313],[119,-44,67,-0.4449839121191995],[119,-44,68,-0.4390695243438525],[119,-44,69,-0.4326023915535051],[119,-44,70,-0.4265115000339597],[119,-44,71,-0.4153618350730376],[119,-44,72,-0.4043386790220508],[119,-44,73,-0.3959299221460072],[119,-44,74,-0.38845184991730564],[119,-44,75,-0.37762679464743104],[119,-44,76,-0.3637331695008612],[119,-44,77,-0.35479627787561707],[119,-44,78,-0.3443315762111084],[119,-44,79,-0.33818240457826376],[119,-43,64,-0.33372069663515314],[119,-43,65,-0.3277022168226107],[119,-43,66,-0.36238706599305665],[119,-43,67,-0.4317532519668509],[119,-43,68,-0.4246646960341625],[119,-43,69,-0.41716459586588983],[119,-43,70,-0.4113205256638477],[119,-43,71,-0.4023624377831231],[119,-43,72,-0.3899858143240477],[119,-43,73,-0.38226554161402937],[119,-43,74,-0.37484569447628674],[119,-43,75,-0.3653391186869486],[119,-43,76,-0.35530430983741745],[119,-43,77,-0.3491022023386967],[119,-43,78,-0.337717064147587],[119,-43,79,-0.33373749470392655],[119,-42,64,-0.3085226718827819],[119,-42,65,-0.2728476585323911],[119,-42,66,-0.2989928643150527],[119,-42,67,-0.42725779243511897],[119,-42,68,-0.4209015457570465],[119,-42,69,-0.4129761924324158],[119,-42,70,-0.40487603402130756],[119,-42,71,-0.39572669140736383],[119,-42,72,-0.38567749061757783],[119,-42,73,-0.3784562698082354],[119,-42,74,-0.3724496764673007],[119,-42,75,-0.36445066584174635],[119,-42,76,-0.35482344375843067],[119,-42,77,-0.34690722780566763],[119,-42,78,-0.3380442478889524],[119,-42,79,-0.33183190257270384],[119,-41,64,-0.24926544446960255],[119,-41,65,-0.18781304358910836],[119,-41,66,-0.2178503744555844],[119,-41,67,-0.3585837449958623],[119,-41,68,-0.4221465318114793],[119,-41,69,-0.414995349156987],[119,-41,70,-0.40620644237370457],[119,-41,71,-0.39673417813472733],[119,-41,72,-0.38856864716687517],[119,-41,73,-0.38270588438622],[119,-41,74,-0.37223778018329634],[119,-41,75,-0.36317986505425176],[119,-41,76,-0.35740302166208837],[119,-41,77,-0.3451106669150219],[119,-41,78,-0.33855243465811874],[119,-41,79,-0.3302009042847416],[119,-40,64,-0.21164131010343995],[119,-40,65,-0.1319368340148317],[119,-40,66,-0.21198976835186914],[119,-40,67,-0.32697771189025293],[119,-40,68,-0.41867342097815197],[119,-40,69,-0.4120513130645982],[119,-40,70,-0.40386956736558577],[119,-40,71,-0.39510204988188913],[119,-40,72,-0.38820074744416755],[119,-40,73,-0.3811673842900237],[119,-40,74,-0.3690073301056656],[119,-40,75,-0.3605078967907887],[119,-40,76,-0.3535329911790891],[119,-40,77,-0.34237468588606657],[119,-40,78,-0.33740820071711897],[119,-40,79,-0.32551094470241415],[119,-39,64,-0.16271534153394585],[119,-39,65,-0.11661386696167148],[119,-39,66,-0.1954781987462816],[119,-39,67,-0.3343122984705984],[119,-39,68,-0.4076108842679378],[119,-39,69,-0.40244362387552046],[119,-39,70,-0.3968119501642539],[119,-39,71,-0.3866027870716728],[119,-39,72,-0.3796638153975303],[119,-39,73,-0.3713641751902364],[119,-39,74,-0.3588403813362661],[119,-39,75,-0.34926182274891876],[119,-39,76,-0.34101366673219347],[119,-39,77,-0.33374445838251626],[119,-39,78,-0.3278066755912287],[119,-39,79,-0.3191069663135058],[119,-38,64,0.001192679797625551],[119,-38,65,-0.004075485488060138],[119,-38,66,-0.16302046307473236],[119,-38,67,-0.40354241385730305],[119,-38,68,-0.4004042138995682],[119,-38,69,-0.3994567220549101],[119,-38,70,-0.39216223198108724],[119,-38,71,-0.3831826539800711],[119,-38,72,-0.3762242986045356],[119,-38,73,-0.36520913998985743],[119,-38,74,-0.3574362399041985],[119,-38,75,-0.3452867620074943],[119,-38,76,-0.3369838631431492],[119,-38,77,-0.3278519604081749],[119,-38,78,-0.3244099688254303],[119,-38,79,-0.3146213671682091],[119,-37,64,0.09620029231257154],[119,-37,65,0.05110750083203269],[119,-37,66,-0.13018743012500533],[119,-37,67,-0.38653728707931995],[119,-37,68,-0.40071645151433716],[119,-37,69,-0.4003369803628473],[119,-37,70,-0.3948035488603421],[119,-37,71,-0.3865885537024494],[119,-37,72,-0.3789273124220491],[119,-37,73,-0.36668994325265086],[119,-37,74,-0.3577835455866464],[119,-37,75,-0.3466927576756298],[119,-37,76,-0.33771799854490964],[119,-37,77,-0.32896655638224576],[119,-37,78,-0.3255219151619469],[119,-37,79,-0.3151870227520472],[119,-36,64,0.10593323068162211],[119,-36,65,0.06230304199214365],[119,-36,66,-0.11588328413072219],[119,-36,67,-0.38803991438173907],[119,-36,68,-0.39480157369037994],[119,-36,69,-0.39551129427486503],[119,-36,70,-0.3892582363719029],[119,-36,71,-0.38520174912390054],[119,-36,72,-0.37483383830279665],[119,-36,73,-0.36294765142272734],[119,-36,74,-0.352480808408397],[119,-36,75,-0.3423116848624116],[119,-36,76,-0.33437150395853715],[119,-36,77,-0.3239244104432576],[119,-36,78,-0.31915053280241407],[119,-36,79,-0.3077178897358996],[119,-35,64,0.028060514108909584],[119,-35,65,-0.039799557578549916],[119,-35,66,-0.2336771797220556],[119,-35,67,-0.3944596440484138],[119,-35,68,-0.3928839089203262],[119,-35,69,-0.39325279938884433],[119,-35,70,-0.3907599359999402],[119,-35,71,-0.3900467606527492],[119,-35,72,-0.3797570890246582],[119,-35,73,-0.3691365398431349],[119,-35,74,-0.3579582630440579],[119,-35,75,-0.34898121801428894],[119,-35,76,-0.3364468369164946],[119,-35,77,-0.3254503380490312],[119,-35,78,-0.31456006277438964],[119,-35,79,-0.29984232972281255],[119,-34,64,0.04228410818446182],[119,-34,65,-0.035284980619293915],[119,-34,66,-0.2261138565710472],[119,-34,67,-0.3913044672575303],[119,-34,68,-0.3890302870034462],[119,-34,69,-0.38980413776583656],[119,-34,70,-0.3885855658686262],[119,-34,71,-0.38417564779645874],[119,-34,72,-0.3765522130642904],[119,-34,73,-0.3674499882685568],[119,-34,74,-0.3593766059807904],[119,-34,75,-0.3489889935882347],[119,-34,76,-0.3378721747124761],[119,-34,77,-0.3245898853319182],[119,-34,78,-0.3118802520302579],[119,-34,79,-0.2963239036540811],[119,-33,64,0.05430502883833099],[119,-33,65,-0.020363465160560534],[119,-33,66,-0.15930985348235835],[119,-33,67,-0.32097068329718653],[119,-33,68,-0.32187600212897394],[119,-33,69,-0.3268875545632682],[119,-33,70,-0.327981553521413],[119,-33,71,-0.33045673481072496],[119,-33,72,-0.32653943094081095],[119,-33,73,-0.3224541430804631],[119,-33,74,-0.3207794843615085],[119,-33,75,-0.3147079286742312],[119,-33,76,-0.30764113671018545],[119,-33,77,-0.3012291965820325],[119,-33,78,-0.29017017077499074],[119,-33,79,-0.27903974681277094],[119,-32,64,0.04521342031458325],[119,-32,65,-0.008818997810738083],[119,-32,66,-0.1260157387218367],[119,-32,67,-0.3092750668483789],[119,-32,68,-0.3189418302886008],[119,-32,69,-0.32101242188858425],[119,-32,70,-0.32124565181195397],[119,-32,71,-0.3253314834702067],[119,-32,72,-0.32148646459787145],[119,-32,73,-0.3178629723514015],[119,-32,74,-0.31451546571935035],[119,-32,75,-0.31255111417268955],[119,-32,76,-0.3064294451014903],[119,-32,77,-0.29972329218504895],[119,-32,78,-0.2876808905134509],[119,-32,79,-0.2779207650811433],[119,-31,64,-0.047358998384836815],[119,-31,65,-0.07231639085505531],[119,-31,66,-0.12415961135730744],[119,-31,67,-0.18989649963801308],[119,-31,68,-0.29703577141165205],[119,-31,69,-0.3152906006008549],[119,-31,70,-0.31592500740753504],[119,-31,71,-0.3199197832455511],[119,-31,72,-0.3185974801284867],[119,-31,73,-0.31282496084038874],[119,-31,74,-0.30985337562773846],[119,-31,75,-0.30892042820549515],[119,-31,76,-0.30111714187274013],[119,-31,77,-0.29372293217287443],[119,-31,78,-0.2866491619551765],[119,-31,79,-0.2776662558086751],[119,-30,64,-0.052097906206922506],[119,-30,65,-0.053672917030271106],[119,-30,66,-0.1318098390762259],[119,-30,67,-0.1644596974883465],[119,-30,68,-0.2659121686641987],[119,-30,69,-0.3090395248221893],[119,-30,70,-0.3118613211969088],[119,-30,71,-0.3141591001371547],[119,-30,72,-0.3135918268415615],[119,-30,73,-0.3089451807648596],[119,-30,74,-0.30515814039086897],[119,-30,75,-0.3035214911473846],[119,-30,76,-0.29499094613998755],[119,-30,77,-0.2871051836973762],[119,-30,78,-0.282069390393665],[119,-30,79,-0.27724935633487024],[119,-29,64,-0.0013543172764874378],[119,-29,65,0.01444799493057003],[119,-29,66,-0.07189373551939854],[119,-29,67,-0.11425670304094598],[119,-29,68,-0.21603972350035197],[119,-29,69,-0.2879779626489692],[119,-29,70,-0.3117363583730073],[119,-29,71,-0.3138979519835313],[119,-29,72,-0.3133722021063894],[119,-29,73,-0.3104122394325326],[119,-29,74,-0.30558095527577955],[119,-29,75,-0.30212373379236646],[119,-29,76,-0.2932697380541668],[119,-29,77,-0.28563068533553554],[119,-29,78,-0.2823262338899015],[119,-29,79,-0.2794287750197695],[119,-28,64,-0.02162546006178756],[119,-28,65,0.0018216309120109297],[119,-28,66,-0.06455771355281209],[119,-28,67,-0.12129677043146914],[119,-28,68,-0.23408185912715973],[119,-28,69,-0.27883968575973206],[119,-28,70,-0.3079709711824376],[119,-28,71,-0.3065894489050612],[119,-28,72,-0.3061643698562549],[119,-28,73,-0.30462164233052036],[119,-28,74,-0.2999598161201881],[119,-28,75,-0.29794309012750153],[119,-28,76,-0.2896308235926055],[119,-28,77,-0.2798926206491088],[119,-28,78,-0.27686061981946875],[119,-28,79,-0.2753424925901058],[119,-27,64,0.05021406871602441],[119,-27,65,0.030393564164898912],[119,-27,66,-0.017591507018325958],[119,-27,67,-0.06796520525187252],[119,-27,68,-0.16487530292730804],[119,-27,69,-0.2188885591424276],[119,-27,70,-0.2824115007025345],[119,-27,71,-0.28856464381864433],[119,-27,72,-0.28856424679584003],[119,-27,73,-0.28761691826358726],[119,-27,74,-0.28504405972910773],[119,-27,75,-0.28274247149510434],[119,-27,76,-0.27797736221532793],[119,-27,77,-0.2732781321598229],[119,-27,78,-0.27269012798804326],[119,-27,79,-0.2738614133144044],[119,-26,64,0.11016072986515418],[119,-26,65,0.04523462566565811],[119,-26,66,-0.02098461164455545],[119,-26,67,-0.06345189393319647],[119,-26,68,-0.1587746003898558],[119,-26,69,-0.21727632753750326],[119,-26,70,-0.2881340492579635],[119,-26,71,-0.2844761029065058],[119,-26,72,-0.2842969427470884],[119,-26,73,-0.2844435983016622],[119,-26,74,-0.28165135730828683],[119,-26,75,-0.28070310020254285],[119,-26,76,-0.27402382594033925],[119,-26,77,-0.27261963993056443],[119,-26,78,-0.26996218884938783],[119,-26,79,-0.27019654934092235],[119,-25,64,0.13264132656919564],[119,-25,65,0.029940703473287755],[119,-25,66,-0.04387993332974427],[119,-25,67,-0.06762465865518055],[119,-25,68,-0.15576472722320492],[119,-25,69,-0.23035846984659744],[119,-25,70,-0.29078941744608927],[119,-25,71,-0.28634770230686185],[119,-25,72,-0.28428133040857956],[119,-25,73,-0.28339588698336154],[119,-25,74,-0.2803656275454057],[119,-25,75,-0.27965716947803665],[119,-25,76,-0.27412773529189266],[119,-25,77,-0.2743601040992618],[119,-25,78,-0.2686456428587703],[119,-25,79,-0.267527444977725],[119,-24,64,0.13870680405375502],[119,-24,65,0.018818959630286014],[119,-24,66,-0.06365899981064077],[119,-24,67,-0.09024619702654627],[119,-24,68,-0.1613655056381525],[119,-24,69,-0.24286088610162715],[119,-24,70,-0.2877896864768768],[119,-24,71,-0.2860643588330606],[119,-24,72,-0.2817937773608389],[119,-24,73,-0.27996403598129577],[119,-24,74,-0.2785966375097394],[119,-24,75,-0.2766930842478848],[119,-24,76,-0.27300999620710775],[119,-24,77,-0.2720498989641646],[119,-24,78,-0.26575966257103434],[119,-24,79,-0.26355636254223835],[119,-23,64,0.11245747392801275],[119,-23,65,-0.004207344030897342],[119,-23,66,-0.13616330573203136],[119,-23,67,-0.22561448446081397],[119,-23,68,-0.28664684465555457],[119,-23,69,-0.2923753340792952],[119,-23,70,-0.29245376410296947],[119,-23,71,-0.29218105076425843],[119,-23,72,-0.2905790319344759],[119,-23,73,-0.28671176663342385],[119,-23,74,-0.28579853487714435],[119,-23,75,-0.2850674200707589],[119,-23,76,-0.28426709207657],[119,-23,77,-0.2787355095797931],[119,-23,78,-0.2756524949582542],[119,-23,79,-0.271223327350816],[119,-22,64,0.1092597478578371],[119,-22,65,-0.01398716821044571],[119,-22,66,-0.1529991462589897],[119,-22,67,-0.23611116889756784],[119,-22,68,-0.2818380049573774],[119,-22,69,-0.2868134024774598],[119,-22,70,-0.2867654899886835],[119,-22,71,-0.28983544614571427],[119,-22,72,-0.2880519342144239],[119,-22,73,-0.28411241415651245],[119,-22,74,-0.28429372402080666],[119,-22,75,-0.28232084482265285],[119,-22,76,-0.2827038215114992],[119,-22,77,-0.2759537733918118],[119,-22,78,-0.2749133560728807],[119,-22,79,-0.2711238462121981],[119,-21,64,0.19727140634404883],[119,-21,65,0.06649190366686936],[119,-21,66,-0.08567230357438177],[119,-21,67,-0.167578061766399],[119,-21,68,-0.19069773080614055],[119,-21,69,-0.2807724424523561],[119,-21,70,-0.2856343526805618],[119,-21,71,-0.2890370890375954],[119,-21,72,-0.289127908855277],[119,-21,73,-0.2867802943019515],[119,-21,74,-0.2858991447716315],[119,-21,75,-0.28533104918034513],[119,-21,76,-0.28479390385081915],[119,-21,77,-0.2784157507752255],[119,-21,78,-0.27800484418933424],[119,-21,79,-0.27796831503641184],[119,-20,64,0.18494645065769522],[119,-20,65,0.04172453378360286],[119,-20,66,-0.09184374945893181],[119,-20,67,-0.1513424212188244],[119,-20,68,-0.17541122971834702],[119,-20,69,-0.27661471766396106],[119,-20,70,-0.2786528991846452],[119,-20,71,-0.2825840518730481],[119,-20,72,-0.2851163502166374],[119,-20,73,-0.2834964157695735],[119,-20,74,-0.28223176953842066],[119,-20,75,-0.28487359544674634],[119,-20,76,-0.2839272826429651],[119,-20,77,-0.2777868365970148],[119,-20,78,-0.27741060513077426],[119,-20,79,-0.27876895504829524],[119,-19,64,0.2022965421099748],[119,-19,65,0.14481795494510258],[119,-19,66,0.00705061598819251],[119,-19,67,-0.059986767541311575],[119,-19,68,-0.09843528167697899],[119,-19,69,-0.18669383672892087],[119,-19,70,-0.20588295770026896],[119,-19,71,-0.2675220584264632],[119,-19,72,-0.2724382228999483],[119,-19,73,-0.2729474370100007],[119,-19,74,-0.27209435332892334],[119,-19,75,-0.2740940574737234],[119,-19,76,-0.2730922433361947],[119,-19,77,-0.2668110574812243],[119,-19,78,-0.2669274553831785],[119,-19,79,-0.2675113969064332],[119,-18,64,0.19168103958642718],[119,-18,65,0.15250608836380777],[119,-18,66,-0.022844004191566236],[119,-18,67,-0.051853286014089506],[119,-18,68,-0.11071439605012737],[119,-18,69,-0.18339834205663913],[119,-18,70,-0.1875362635370152],[119,-18,71,-0.26070075811105764],[119,-18,72,-0.26456641184595187],[119,-18,73,-0.2665423776220938],[119,-18,74,-0.2653208300098993],[119,-18,75,-0.26887569576352177],[119,-18,76,-0.27107394205143576],[119,-18,77,-0.26438674934585105],[119,-18,78,-0.2626193999371527],[119,-18,79,-0.26489129642860704],[119,-17,64,0.1804326420906342],[119,-17,65,0.132312230920692],[119,-17,66,-0.053350291915230746],[119,-17,67,-0.05931652581841637],[119,-17,68,-0.11866178613880174],[119,-17,69,-0.18839521627455252],[119,-17,70,-0.16700090202697537],[119,-17,71,-0.23749179594292374],[119,-17,72,-0.2372820373630303],[119,-17,73,-0.22904240679709548],[119,-17,74,-0.26242694105833886],[119,-17,75,-0.2686175422947189],[119,-17,76,-0.26887125583642746],[119,-17,77,-0.2623518338597329],[119,-17,78,-0.2619145743464107],[119,-17,79,-0.2641972932428752],[119,-16,64,0.18342214795382197],[119,-16,65,0.19199075558578227],[119,-16,66,0.02530087222635727],[119,-16,67,0.011003409404885867],[119,-16,68,-0.008955205529498883],[119,-16,69,-0.09235571520852306],[119,-16,70,-0.04969376921090535],[119,-16,71,-0.12165250456388621],[119,-16,72,-0.1281553552619642],[119,-16,73,-0.10234059227517325],[119,-16,74,-0.25736869515073146],[119,-16,75,-0.26330292537138683],[119,-16,76,-0.2628539704354737],[119,-16,77,-0.26010191766871504],[119,-16,78,-0.2585325164800909],[119,-16,79,-0.2607771634623176],[119,-15,64,0.18211437220653492],[119,-15,65,0.1804029381082212],[119,-15,66,0.016954479173167725],[119,-15,67,-0.0013685302362432539],[119,-15,68,0.02205951826425076],[119,-15,69,-0.06811924692511337],[119,-15,70,-0.03700942351823169],[119,-15,71,-0.12937894422475882],[119,-15,72,-0.12154370547744683],[119,-15,73,-0.10211234021773669],[119,-15,74,-0.2585888271040706],[119,-15,75,-0.26439570275101165],[119,-15,76,-0.26338279063112846],[119,-15,77,-0.26222774867334225],[119,-15,78,-0.26083684339513535],[119,-15,79,-0.26111256008046846],[119,-14,64,0.06653949270435042],[119,-14,65,0.04906699974990936],[119,-14,66,-0.05217120748892942],[119,-14,67,-0.06485869316232604],[119,-14,68,-0.045952717083135725],[119,-14,69,-0.08455249404848184],[119,-14,70,-0.08182169018160193],[119,-14,71,-0.1530611500846903],[119,-14,72,-0.13755544074435638],[119,-14,73,-0.14111682173895657],[119,-14,74,-0.25304350729400393],[119,-14,75,-0.2619771802177696],[119,-14,76,-0.25819620931679577],[119,-14,77,-0.2578265541425029],[119,-14,78,-0.2570837369393538],[119,-14,79,-0.25645001368276044],[119,-13,64,0.06824138355601253],[119,-13,65,0.07352155525448822],[119,-13,66,-0.016510161415615093],[119,-13,67,-0.009720332083078653],[119,-13,68,-0.009037940068850336],[119,-13,69,-0.024550609532502765],[119,-13,70,-0.03833676093548821],[119,-13,71,-0.09568722337275207],[119,-13,72,-0.07158896193653014],[119,-13,73,-0.09856910327548479],[119,-13,74,-0.1953162522623277],[119,-13,75,-0.2626559284771277],[119,-13,76,-0.2588126686146941],[119,-13,77,-0.2574490267002416],[119,-13,78,-0.2585064792838463],[119,-13,79,-0.2565853664392146],[119,-12,64,0.05854853092312597],[119,-12,65,0.057305676232285746],[119,-12,66,-0.02741515418375759],[119,-12,67,-0.019202523105578462],[119,-12,68,-0.013763780899326644],[119,-12,69,-0.028028125741114074],[119,-12,70,-0.042123976952813086],[119,-12,71,-0.08280337520477177],[119,-12,72,-0.05254144810471223],[119,-12,73,-0.10214983712615938],[119,-12,74,-0.1900676475296771],[119,-12,75,-0.25940010094211063],[119,-12,76,-0.254331980817492],[119,-12,77,-0.2544169387215929],[119,-12,78,-0.25644067191758174],[119,-12,79,-0.2547277236321224],[119,-11,64,0.06083341197795607],[119,-11,65,0.06343378778742742],[119,-11,66,0.027088343046100694],[119,-11,67,0.019860777767477633],[119,-11,68,0.03184938898866904],[119,-11,69,0.016385344715704436],[119,-11,70,0.002428345926821146],[119,-11,71,-0.02950287652821157],[119,-11,72,0.0016318133154417935],[119,-11,73,-0.06401100409312002],[119,-11,74,-0.1433254752136715],[119,-11,75,-0.22596749731676724],[119,-11,76,-0.2242696770520669],[119,-11,77,-0.22948765826239675],[119,-11,78,-0.23211625143431158],[119,-11,79,-0.2310847086494187],[119,-10,64,0.05327636422208806],[119,-10,65,0.05521114282013183],[119,-10,66,0.004664341193872323],[119,-10,67,0.004090809942699336],[119,-10,68,0.011745112134677438],[119,-10,69,0.001191586293289193],[119,-10,70,0.0025211121560286542],[119,-10,71,-0.019467568421298542],[119,-10,72,-0.0016070284681203306],[119,-10,73,-0.08258594022649043],[119,-10,74,-0.16661240475112682],[119,-10,75,-0.2195823231821544],[119,-10,76,-0.21901060189027755],[119,-10,77,-0.22473395378623523],[119,-10,78,-0.2287177802137253],[119,-10,79,-0.2259155845660305],[119,-9,64,0.06262435823064837],[119,-9,65,0.038389571564146935],[119,-9,66,-0.00886666822552154],[119,-9,67,-0.006447568491547595],[119,-9,68,-0.0014011654146955932],[119,-9,69,-0.010540081679000973],[119,-9,70,0.011327741623087695],[119,-9,71,-0.009440615208836212],[119,-9,72,-0.011874352082470535],[119,-9,73,-0.10104259452073003],[119,-9,74,-0.19705125917115193],[119,-9,75,-0.21418341516195702],[119,-9,76,-0.21523315582843602],[119,-9,77,-0.22168897519966313],[119,-9,78,-0.22323112134931988],[119,-9,79,-0.2215454651668553],[119,-8,64,0.06304199295380716],[119,-8,65,-0.03329990806471389],[119,-8,66,-0.06582461835010214],[119,-8,67,-0.059538115910475795],[119,-8,68,-0.03831780421997261],[119,-8,69,-0.05013151772584917],[119,-8,70,-0.018219948403042197],[119,-8,71,-0.04444573222606643],[119,-8,72,-0.04811971434119561],[119,-8,73,-0.1623463728130016],[119,-8,74,-0.20642782443463745],[119,-8,75,-0.20884966783478778],[119,-8,76,-0.20939284121230203],[119,-8,77,-0.2159994242332054],[119,-8,78,-0.21856071911908626],[119,-8,79,-0.2167737925522386],[119,-7,64,0.05479870145336624],[119,-7,65,-0.038104890247284556],[119,-7,66,-0.07566380585524604],[119,-7,67,-0.08889358358757625],[119,-7,68,-0.04413196970686442],[119,-7,69,-0.05262784988365235],[119,-7,70,-0.03013104648099635],[119,-7,71,-0.06193606517945696],[119,-7,72,-0.05969171191961317],[119,-7,73,-0.1729324202283924],[119,-7,74,-0.20021652173111354],[119,-7,75,-0.20345604208399515],[119,-7,76,-0.2051986399411023],[119,-7,77,-0.21089852894034664],[119,-7,78,-0.21505542018277],[119,-7,79,-0.2131594009531938],[119,-6,64,0.03421958235806491],[119,-6,65,-0.05063105166425469],[119,-6,66,-0.08742499012714827],[119,-6,67,-0.12128220628984504],[119,-6,68,-0.04587158117509757],[119,-6,69,-0.05588411623141867],[119,-6,70,-0.031645314620329046],[119,-6,71,-0.06644681654355097],[119,-6,72,-0.06533076048477278],[119,-6,73,-0.1834930596685882],[119,-6,74,-0.1936493737044908],[119,-6,75,-0.19832665903896363],[119,-6,76,-0.20179310345048185],[119,-6,77,-0.20645156303669163],[119,-6,78,-0.21216301956151118],[119,-6,79,-0.20960463336830054],[119,-5,64,-0.017887078110554927],[119,-5,65,-0.05423840947100107],[119,-5,66,-0.06010793963399119],[119,-5,67,-0.0584876409059515],[119,-5,68,0.037253798092004436],[119,-5,69,0.036810147202258114],[119,-5,70,0.0652851458599773],[119,-5,71,0.027916246463567135],[119,-5,72,0.012233888979185648],[119,-5,73,-0.08554954708952651],[119,-5,74,-0.14613456433062205],[119,-5,75,-0.19839999312183673],[119,-5,76,-0.20292367586174828],[119,-5,77,-0.206173775819571],[119,-5,78,-0.21311768756583507],[119,-5,79,-0.21061592303101861],[119,-4,64,-0.037652936385360505],[119,-4,65,-0.07212411876506204],[119,-4,66,-0.09044464473486978],[119,-4,67,-0.07718780793117833],[119,-4,68,0.0022958625131583865],[119,-4,69,0.016098354366177126],[119,-4,70,0.04888654634800188],[119,-4,71,0.0014817311897524221],[119,-4,72,-0.02193183528888773],[119,-4,73,-0.09772966324227923],[119,-4,74,-0.14903265608606547],[119,-4,75,-0.19973897678179386],[119,-4,76,-0.2041610732443101],[119,-4,77,-0.20773373141537174],[119,-4,78,-0.21241701455948184],[119,-4,79,-0.20983944152810124],[119,-3,64,-0.016190998812534524],[119,-3,65,-0.05282457094795204],[119,-3,66,-0.07728601242705328],[119,-3,67,-0.05282546322534443],[119,-3,68,0.026045995612962364],[119,-3,69,0.061530423515762545],[119,-3,70,0.073439345592142],[119,-3,71,0.05470824725406645],[119,-3,72,0.0094230162593813],[119,-3,73,-0.04689885169132052],[119,-3,74,-0.09159894925693512],[119,-3,75,-0.19315883689635002],[119,-3,76,-0.21062713460917892],[119,-3,77,-0.21242873483160907],[119,-3,78,-0.21321889508898978],[119,-3,79,-0.21015690422207833],[119,-2,64,-0.03421312904778989],[119,-2,65,-0.07075394802534689],[119,-2,66,-0.09384220663789265],[119,-2,67,-0.0681352024650047],[119,-2,68,-5.259837596231776E-4],[119,-2,69,0.04125382362407806],[119,-2,70,0.06940002745174913],[119,-2,71,0.05849744999358819],[119,-2,72,-0.00394758266856815],[119,-2,73,-0.049113733055155456],[119,-2,74,-0.10660691113741835],[119,-2,75,-0.19234995326016774],[119,-2,76,-0.20885235936801044],[119,-2,77,-0.20971129440098102],[119,-2,78,-0.20844540086808655],[119,-2,79,-0.20875504102670786],[119,-1,64,-0.013484939701589843],[119,-1,65,-0.052487435131557514],[119,-1,66,-0.07901028188198253],[119,-1,67,-0.06751959695448492],[119,-1,68,-0.014694395624964385],[119,-1,69,0.02353896885474624],[119,-1,70,0.05466986284281994],[119,-1,71,0.052837109863145354],[119,-1,72,-0.010892465892403003],[119,-1,73,-0.037554656873636794],[119,-1,74,-0.07751736599449799],[119,-1,75,-0.1388964692224243],[119,-1,76,-0.20676145028177062],[119,-1,77,-0.20794345123036806],[119,-1,78,-0.2068533146188076],[119,-1,79,-0.2058876961407517],[119,0,64,-0.02848532118286487],[119,0,65,-0.02398493839449753],[119,0,66,-0.02483183004648387],[119,0,67,-0.027772930520057137],[119,0,68,-0.032558136812789684],[119,0,69,-0.042004079189921995],[119,0,70,-0.052311738485974035],[119,0,71,-0.056546405429811514],[119,0,72,-0.0642044711806318],[119,0,73,-0.0734628006937001],[119,0,74,-0.07743624163863015],[119,0,75,-0.08518206683114232],[119,0,76,-0.09527148784132247],[119,0,77,-0.10000905178516514],[119,0,78,-0.10001507780334973],[119,0,79,-0.09865919429185477],[119,1,64,-0.027525113680280933],[119,1,65,-0.024756241545011604],[119,1,66,-0.023453568922081225],[119,1,67,-0.024510678202667946],[119,1,68,-0.032575557572589495],[119,1,69,-0.04089893349729684],[119,1,70,-0.050283035224589656],[119,1,71,-0.05335852409337863],[119,1,72,-0.06180749583123479],[119,1,73,-0.07374939565404694],[119,1,74,-0.07859612428186638],[119,1,75,-0.08473107834255851],[119,1,76,-0.0932256531314242],[119,1,77,-0.09772845317416744],[119,1,78,-0.09689354344613946],[119,1,79,-0.09272411785933274],[119,2,64,-0.02635505029935578],[119,2,65,-0.027075256309422063],[119,2,66,-0.023886509851885396],[119,2,67,-0.02466078853183884],[119,2,68,-0.03235991947080742],[119,2,69,-0.04055310526246653],[119,2,70,-0.04912285601456212],[119,2,71,-0.05243936270581741],[119,2,72,-0.0631969250807003],[119,2,73,-0.07392847753728607],[119,2,74,-0.0760313776521895],[119,2,75,-0.08258904404944314],[119,2,76,-0.08968094442175961],[119,2,77,-0.09371488826951152],[119,2,78,-0.09290391067537357],[119,2,79,-0.08757390172045455],[119,3,64,-0.026673083987932028],[119,3,65,-0.0287957143302153],[119,3,66,-0.025421396146443398],[119,3,67,-0.025440952997147825],[119,3,68,-0.03388329903468282],[119,3,69,-0.039659170551274575],[119,3,70,-0.0477524670991636],[119,3,71,-0.053486870460203464],[119,3,72,-0.061880821290118404],[119,3,73,-0.07075064897481798],[119,3,74,-0.0744293684078138],[119,3,75,-0.08048658923641452],[119,3,76,-0.08502161254864032],[119,3,77,-0.08917732224361054],[119,3,78,-0.09005943284590828],[119,3,79,-0.08562525545688789],[119,4,64,-0.02786294931130237],[119,4,65,-0.02677544111918638],[119,4,66,-0.026160763652430363],[119,4,67,-0.02683239352148506],[119,4,68,-0.034722080458589766],[119,4,69,-0.04172736186844332],[119,4,70,-0.048310630112396336],[119,4,71,-0.05456949861940007],[119,4,72,-0.06252451730601154],[119,4,73,-0.06732754796290662],[119,4,74,-0.0729231862281648],[119,4,75,-0.07854434330619757],[119,4,76,-0.08336186543433191],[119,4,77,-0.08480628464603843],[119,4,78,-0.08725896429202491],[119,4,79,-0.08351305907906026],[119,5,64,-0.02802523140455941],[119,5,65,-0.0267587803652094],[119,5,66,-0.02526310566812029],[119,5,67,-0.028151876529550646],[119,5,68,-0.033936985543195686],[119,5,69,-0.04160992903558333],[119,5,70,-0.04977636880982017],[119,5,71,-0.058116334176059145],[119,5,72,-0.06152484073654649],[119,5,73,-0.0630257239143218],[119,5,74,-0.06961311514926892],[119,5,75,-0.07518472730166444],[119,5,76,-0.07905109182167701],[119,5,77,-0.07892328837636678],[119,5,78,-0.08259869811082929],[119,5,79,-0.08023410395282274],[119,6,64,-0.028009529999576954],[119,6,65,-0.026548970275700315],[119,6,66,-0.024685716094345667],[119,6,67,-0.02570494586668992],[119,6,68,-0.03387253992374138],[119,6,69,-0.042042690386484366],[119,6,70,-0.05063391660416924],[119,6,71,-0.05598111912163137],[119,6,72,-0.05833514699188111],[119,6,73,-0.06050255445412647],[119,6,74,-0.0642351489182081],[119,6,75,-0.0720131537837942],[119,6,76,-0.07532920794725796],[119,6,77,-0.0743434012254083],[119,6,78,-0.07679526583273931],[119,6,79,-0.0763790951321081],[119,7,64,-0.02824529716583686],[119,7,65,-0.02690761957690402],[119,7,66,-0.02532684294336901],[119,7,67,-0.026004461224483924],[119,7,68,-0.03233721875717996],[119,7,69,-0.04062134709993641],[119,7,70,-0.04705462017547106],[119,7,71,-0.05237012187122507],[119,7,72,-0.054249772255516304],[119,7,73,-0.057203186197545206],[119,7,74,-0.0612901277061777],[119,7,75,-0.06682088480791479],[119,7,76,-0.07100328686212327],[119,7,77,-0.07168157763587227],[119,7,78,-0.0722474424536122],[119,7,79,-0.07051403699653569],[119,8,64,-0.026906714639172352],[119,8,65,-0.02226458676456164],[119,8,66,-0.020667521918434267],[119,8,67,-0.022509254695715963],[119,8,68,-0.027190473378576413],[119,8,69,-0.03058652177290619],[119,8,70,-0.03435145412865298],[119,8,71,-0.03952750201149911],[119,8,72,-0.04290778598660963],[119,8,73,-0.04515356510347383],[119,8,74,-0.048672555527765476],[119,8,75,-0.05362743853736204],[119,8,76,-0.058218609654700895],[119,8,77,-0.055579205711209584],[119,8,78,-0.05665212193836805],[119,8,79,-0.056296410774188094],[119,9,64,-0.017636527950010805],[119,9,65,-0.019237547818012707],[119,9,66,-0.02330074981939409],[119,9,67,-0.02947514324245766],[119,9,68,-0.03563929208219162],[119,9,69,-0.03623110589394456],[119,9,70,-0.039990859729597],[119,9,71,-0.0439242417598848],[119,9,72,-0.04621407182374272],[119,9,73,-0.04897229431261749],[119,9,74,-0.05144075414486052],[119,9,75,-0.057104502488777284],[119,9,76,-0.058543768919265465],[119,9,77,-0.05348965870796746],[119,9,78,-0.04800991606051941],[119,9,79,-0.04613161249381639],[119,10,64,-0.01907520625792486],[119,10,65,-0.02145766830711554],[119,10,66,-0.024518018499274236],[119,10,67,-0.03158549100196183],[119,10,68,-0.036306434360926176],[119,10,69,-0.03939022218449424],[119,10,70,-0.040575348759640764],[119,10,71,-0.04497915950418871],[119,10,72,-0.04711031902791307],[119,10,73,-0.04706308778899719],[119,10,74,-0.051305706976267546],[119,10,75,-0.05468292738762147],[119,10,76,-0.055438019603784305],[119,10,77,-0.05027780674442832],[119,10,78,-0.04558980597026639],[119,10,79,-0.04207964375152448],[119,11,64,-0.01906409594037342],[119,11,65,-0.021720322868235192],[119,11,66,-0.02727315688119733],[119,11,67,-0.033211589440878805],[119,11,68,-0.03662191657366751],[119,11,69,-0.0385013247065194],[119,11,70,-0.039943926418896936],[119,11,71,-0.045365187817504926],[119,11,72,-0.04706781169110559],[119,11,73,-0.04621344610592509],[119,11,74,-0.05067509972907859],[119,11,75,-0.05315284052986853],[119,11,76,-0.05042371796945845],[119,11,77,-0.0467270723537805],[119,11,78,-0.041315320698977476],[119,11,79,-0.03932000338897279],[119,12,64,-0.018342419337924937],[119,12,65,-0.0205588271502411],[119,12,66,-0.02826525900934089],[119,12,67,-0.036282099971863185],[119,12,68,-0.03854418785074218],[119,12,69,-0.040108064531389126],[119,12,70,-0.04318973189155659],[119,12,71,-0.047722617437895645],[119,12,72,-0.047927177012193845],[119,12,73,-0.04657476238964013],[119,12,74,-0.04845755387208041],[119,12,75,-0.05266252190268014],[119,12,76,-0.04985025711807853],[119,12,77,-0.04690866299859815],[119,12,78,-0.04521467401281712],[119,12,79,-0.04070914325580588],[119,13,64,-0.029518842906066378],[119,13,65,-0.024609329781358782],[119,13,66,-0.026100751854247678],[119,13,67,-0.028409186324319796],[119,13,68,-0.029014126198062068],[119,13,69,-0.032743383395245046],[119,13,70,-0.035043140615047805],[119,13,71,-0.0346907168601719],[119,13,72,-0.033028067870520844],[119,13,73,-0.03393684745037935],[119,13,74,-0.0330146148188087],[119,13,75,-0.03902506066809103],[119,13,76,-0.041688149322115786],[119,13,77,-0.04334372676903417],[119,13,78,-0.04748837351888738],[119,13,79,-0.04708532352548839],[119,14,64,-0.029655735479253098],[119,14,65,-0.026046163836594194],[119,14,66,-0.023756358972296887],[119,14,67,-0.02523309121637507],[119,14,68,-0.02920794756934625],[119,14,69,-0.030963162716332857],[119,14,70,-0.033524800098214874],[119,14,71,-0.029513926281631173],[119,14,72,-0.027989933714520673],[119,14,73,-0.03010435290880019],[119,14,74,-0.029584454707879917],[119,14,75,-0.03438639358415013],[119,14,76,-0.03661258345247653],[119,14,77,-0.04337769832632854],[119,14,78,-0.04597396783576192],[119,14,79,-0.04581767774654878],[119,15,64,-0.02829296641690343],[119,15,65,-0.024221533496162906],[119,15,66,-0.0227075107930456],[119,15,67,-0.022470560028725953],[119,15,68,-0.024790360653035193],[119,15,69,-0.029375932222719767],[119,15,70,-0.03106508922536988],[119,15,71,-0.025207672835094397],[119,15,72,-0.02625712821614158],[119,15,73,-0.027541204385090612],[119,15,74,-0.025485920006396615],[119,15,75,-0.03046494659996833],[119,15,76,-0.03550295723851976],[119,15,77,-0.0411807789084319],[119,15,78,-0.04414762610327358],[119,15,79,-0.04689976605947649],[119,16,64,-0.028441585003556646],[119,16,65,-0.026709016852690434],[119,16,66,-0.02087055515241812],[119,16,67,-0.016580510779471258],[119,16,68,-0.018406036721557634],[119,16,69,-0.023936221284238585],[119,16,70,-0.022235955800023743],[119,16,71,-0.016765408254748815],[119,16,72,-0.019860381306800845],[119,16,73,-0.021346046269955593],[119,16,74,-0.01733805564624552],[119,16,75,-0.020402713374353593],[119,16,76,-0.025020473662927423],[119,16,77,-0.027992205971827222],[119,16,78,-0.031337421898795445],[119,16,79,-0.031867733905201964],[119,17,64,-0.030033814065325626],[119,17,65,-0.023027741058764525],[119,17,66,-0.02012719227943427],[119,17,67,-0.015319322304366001],[119,17,68,-0.016240585651204814],[119,17,69,-0.02156425209144136],[119,17,70,-0.01968461540846836],[119,17,71,-0.016388978015439037],[119,17,72,-0.01852758139046959],[119,17,73,-0.02221838694187414],[119,17,74,-0.017398100631599994],[119,17,75,-0.020419438930084022],[119,17,76,-0.023365305977583656],[119,17,77,-0.025732026429647226],[119,17,78,-0.02855958859955378],[119,17,79,-0.03036896988377505],[119,18,64,-0.029851671980455283],[119,18,65,-0.023471146493739728],[119,18,66,-0.016880186220628923],[119,18,67,-0.01429099387433208],[119,18,68,-0.014040455578772398],[119,18,69,-0.01825269288958528],[119,18,70,-0.01597197028036046],[119,18,71,-0.015363748324544207],[119,18,72,-0.017667911647163997],[119,18,73,-0.02128813411662131],[119,18,74,-0.019623370616814628],[119,18,75,-0.018875637605659273],[119,18,76,-0.02119258098789778],[119,18,77,-0.023250140666405045],[119,18,78,-0.02698623153576682],[119,18,79,-0.03136326302019746],[119,19,64,-0.030968335132113],[119,19,65,-0.02424167278675729],[119,19,66,-0.015866040719944824],[119,19,67,-0.011719446402310235],[119,19,68,-0.013073657712039277],[119,19,69,-0.017252570335056477],[119,19,70,-0.014986554448319145],[119,19,71,-0.015782489749852163],[119,19,72,-0.018291790768225014],[119,19,73,-0.019322316260096922],[119,19,74,-0.019494785495333122],[119,19,75,-0.01786530327581845],[119,19,76,-0.016432356121948516],[119,19,77,-0.022371029425135414],[119,19,78,-0.02865921368537555],[119,19,79,-0.033437116004689474],[119,20,64,-0.03026476005506859],[119,20,65,-0.02342873025481719],[119,20,66,-0.019945832834661614],[119,20,67,-0.01514399721187526],[119,20,68,-0.01655925422236168],[119,20,69,-0.022490462367694475],[119,20,70,-0.02203388329864392],[119,20,71,-0.019545666192981342],[119,20,72,-0.02370762374051938],[119,20,73,-0.025298847154182874],[119,20,74,-0.025016245820282723],[119,20,75,-0.021293547803528934],[119,20,76,-0.021381220104127713],[119,20,77,-0.02607704860812189],[119,20,78,-0.03311167667161537],[119,20,79,-0.03678409491366329],[119,21,64,-0.018654788022582136],[119,21,65,-0.011910580146568733],[119,21,66,-0.006397786697067864],[119,21,67,-0.004474982468764738],[119,21,68,-0.011661261007967744],[119,21,69,-0.017275023139911833],[119,21,70,-0.020113529993169843],[119,21,71,-0.022326514523734353],[119,21,72,-0.030186124752656363],[119,21,73,-0.03430903988932567],[119,21,74,-0.03551582359501802],[119,21,75,-0.034035739832014744],[119,21,76,-0.03508478382790893],[119,21,77,-0.038037114583829856],[119,21,78,-0.04235869825407279],[119,21,79,-0.04485489690939495],[119,22,64,-0.018290279125497494],[119,22,65,-0.011279259277710035],[119,22,66,-0.0027032861446723566],[119,22,67,-0.005715165857471199],[119,22,68,-0.012724815860575112],[119,22,69,-0.015350510194778122],[119,22,70,-0.02027330217775053],[119,22,71,-0.02493649725747861],[119,22,72,-0.03131963757867756],[119,22,73,-0.037584941305393804],[119,22,74,-0.03598717809874806],[119,22,75,-0.03212095722187694],[119,22,76,-0.03687529642554066],[119,22,77,-0.04089069372104007],[119,22,78,-0.04301590522865903],[119,22,79,-0.04330377826546175],[119,23,64,-0.015965727794031687],[119,23,65,-0.008812058824685665],[119,23,66,-0.0029810776139015116],[119,23,67,-0.006008372904507703],[119,23,68,-0.012265998274188894],[119,23,69,-0.016362259437967513],[119,23,70,-0.02097323472064294],[119,23,71,-0.028093376376393545],[119,23,72,-0.03227707950534242],[119,23,73,-0.035304166316455554],[119,23,74,-0.03649332637240668],[119,23,75,-0.03305710336945454],[119,23,76,-0.03846208946482278],[119,23,77,-0.04245920351355113],[119,23,78,-0.04305530306360224],[119,23,79,-0.04230854324020905],[119,24,64,-0.005424224030653069],[119,24,65,-3.162848400942164E-4],[119,24,66,0.00404219037855108],[119,24,67,0.0012855351438104956],[119,24,68,-0.0028363616326402274],[119,24,69,-0.00837516043188194],[119,24,70,-0.01260145281439673],[119,24,71,-0.0169185654244689],[119,24,72,-0.022486519502778912],[119,24,73,-0.024758325011601995],[119,24,74,-0.026741342712842814],[119,24,75,-0.023515322473078498],[119,24,76,-0.03068303010713898],[119,24,77,-0.03438983179508112],[119,24,78,-0.03435768667216699],[119,24,79,-0.031803497035408995],[119,25,64,0.003212914038628112],[119,25,65,0.002157301971582787],[119,25,66,0.0010567405814067843],[119,25,67,-0.005094312990389593],[119,25,68,-0.009343180139490481],[119,25,69,-0.01711010331362453],[119,25,70,-0.019491430469232546],[119,25,71,-0.017271895243750918],[119,25,72,-0.017726859363618647],[119,25,73,-0.015254194401478516],[119,25,74,-0.014089591682626051],[119,25,75,-0.014712192906762733],[119,25,76,-0.022989161680534248],[119,25,77,-0.030298512012044587],[119,25,78,-0.03246724350297324],[119,25,79,-0.030611193382628646],[119,26,64,0.004219345882832903],[119,26,65,0.004374497797236199],[119,26,66,-7.259050926491095E-4],[119,26,67,-0.007360619149022196],[119,26,68,-0.01080824205396927],[119,26,69,-0.017766601273761784],[119,26,70,-0.020426514895883097],[119,26,71,-0.01899155392596788],[119,26,72,-0.016994417903775427],[119,26,73,-0.01501966477013833],[119,26,74,-0.014078377612429582],[119,26,75,-0.014072279699575918],[119,26,76,-0.021677125187309965],[119,26,77,-0.030574795294554535],[119,26,78,-0.03066841430070645],[119,26,79,-0.029906105202357425],[119,27,64,0.005933148370161956],[119,27,65,0.0057006221528450585],[119,27,66,4.070514420743132E-4],[119,27,67,-0.006444587805569418],[119,27,68,-0.011740938277195967],[119,27,69,-0.01808139453931379],[119,27,70,-0.022400732743026758],[119,27,71,-0.01996445001574887],[119,27,72,-0.019101922329885113],[119,27,73,-0.017679340537475746],[119,27,74,-0.014301945612670314],[119,27,75,-0.014351848303545994],[119,27,76,-0.02252022714554172],[119,27,77,-0.02659647504353818],[119,27,78,-0.030385784625521398],[119,27,79,-0.03267681334430357],[119,28,64,0.006713553324789623],[119,28,65,0.00290892395066511],[119,28,66,-0.004030973542669153],[119,28,67,-0.011439216680542652],[119,28,68,-0.017095699058125025],[119,28,69,-0.022446306152721834],[119,28,70,-0.026441953602563448],[119,28,71,-0.02537907685761684],[119,28,72,-0.026841528242332158],[119,28,73,-0.026279542421031046],[119,28,74,-0.022551226852022488],[119,28,75,-0.023937987242667186],[119,28,76,-0.02631204335758852],[119,28,77,-0.031384992419375646],[119,28,78,-0.03225237780835087],[119,28,79,-0.03749717907474548],[119,29,64,0.00479556433660272],[119,29,65,0.0017352272012913783],[119,29,66,-0.006351009288742465],[119,29,67,-0.01409204837915945],[119,29,68,-0.019424603057461465],[119,29,69,-0.026949391184977578],[119,29,70,-0.030178597992790518],[119,29,71,-0.029848386957146048],[119,29,72,-0.03483603406128756],[119,29,73,-0.03449288640223634],[119,29,74,-0.026623865610198555],[119,29,75,-0.028491040773658327],[119,29,76,-0.029609023607195833],[119,29,77,-0.034876116142697866],[119,29,78,-0.03241624534596582],[119,29,79,-0.036049114774878654],[119,30,64,0.0075443193869584035],[119,30,65,0.0026853481258432843],[119,30,66,-0.0036641261747424603],[119,30,67,-0.012919348072417403],[119,30,68,-0.020483057006633748],[119,30,69,-0.028713493742160687],[119,30,70,-0.035336130017726564],[119,30,71,-0.03536795905640616],[119,30,72,-0.038652960560416255],[119,30,73,-0.038920123652188415],[119,30,74,-0.03383996909540957],[119,30,75,-0.03338289350298734],[119,30,76,-0.03468808225168643],[119,30,77,-0.03749490649074383],[119,30,78,-0.03871872078110841],[119,30,79,-0.041967489189263685],[119,31,64,0.008592654910273584],[119,31,65,0.0037424286581743127],[119,31,66,-0.004062386376599364],[119,31,67,-0.01325326301663779],[119,31,68,-0.01991932438145591],[119,31,69,-0.031177494500028047],[119,31,70,-0.03881680537800146],[119,31,71,-0.03823932319237407],[119,31,72,-0.04085353173310573],[119,31,73,-0.04400191236989931],[119,31,74,-0.041027071368647555],[119,31,75,-0.0414848507731958],[119,31,76,-0.04041121594995056],[119,31,77,-0.04112727046443186],[119,31,78,-0.04196317241701661],[119,31,79,-0.04562802679645406],[119,32,64,0.0195673331464139],[119,32,65,0.013744639388466151],[119,32,66,0.006006302704569005],[119,32,67,-0.0026665974265963344],[119,32,68,-0.009199972601544898],[119,32,69,-0.02030251275613712],[119,32,70,-0.0269158243556971],[119,32,71,-0.027356373896801844],[119,32,72,-0.030260916154900785],[119,32,73,-0.03390118967862915],[119,32,74,-0.03392836112629069],[119,32,75,-0.03588608020407963],[119,32,76,-0.03362583612577559],[119,32,77,-0.03404714146141],[119,32,78,-0.033310554101440515],[119,32,79,-0.036653483280672694],[119,33,64,0.023807977524946955],[119,33,65,0.01869388544749312],[119,33,66,0.01180015230247683],[119,33,67,0.0069886711759987175],[119,33,68,6.794970318586002E-4],[119,33,69,-0.009532572215589008],[119,33,70,-0.018808065471747848],[119,33,71,-0.02598790555838451],[119,33,72,-0.03611266652119416],[119,33,73,-0.044185629588157915],[119,33,74,-0.04636540655112566],[119,33,75,-0.05010955001526171],[119,33,76,-0.04588608881499265],[119,33,77,-0.04217002377747858],[119,33,78,-0.03865123501311353],[119,33,79,-0.03465364616398364],[119,34,64,0.022075663484942776],[119,34,65,0.017063486220459334],[119,34,66,0.010114403698724739],[119,34,67,0.007671713153735243],[119,34,68,0.001366904383515527],[119,34,69,-0.00812236048380896],[119,34,70,-0.018169409174159185],[119,34,71,-0.0280236197117366],[119,34,72,-0.03514274164625153],[119,34,73,-0.044773241466360525],[119,34,74,-0.04780717071963357],[119,34,75,-0.049536229763376544],[119,34,76,-0.04681193773363085],[119,34,77,-0.042046489097939],[119,34,78,-0.03743335865510106],[119,34,79,-0.033446116326672326],[119,35,64,0.020563998392277127],[119,35,65,0.014965349095784175],[119,35,66,0.008597883787326288],[119,35,67,0.007624115422880801],[119,35,68,0.0014920141427896272],[119,35,69,-0.008477593633843539],[119,35,70,-0.017901451303460297],[119,35,71,-0.028916395171457693],[119,35,72,-0.03558994223470535],[119,35,73,-0.04577062055305611],[119,35,74,-0.047709214204137415],[119,35,75,-0.04940858256294471],[119,35,76,-0.04731661814001609],[119,35,77,-0.04244629470360346],[119,35,78,-0.03856543019071307],[119,35,79,-0.03343365441137744],[119,36,64,0.010543508524648776],[119,36,65,0.006184760254529353],[119,36,66,0.0016276765295240858],[119,36,67,8.403071738612988E-4],[119,36,68,-0.006027250150214519],[119,36,69,-0.015040166616031775],[119,36,70,-0.023591030476610056],[119,36,71,-0.03509149645542918],[119,36,72,-0.042664312168800664],[119,36,73,-0.051616069019758015],[119,36,74,-0.05639335396064776],[119,36,75,-0.05703778554701444],[119,36,76,-0.052770492132330274],[119,36,77,-0.048169028311201526],[119,36,78,-0.045852547503303906],[119,36,79,-0.04122699728638146],[119,37,64,0.0035289368925877362],[119,37,65,-0.002709093649626987],[119,37,66,-0.006721133747600944],[119,37,67,-0.01386820551669568],[119,37,68,-0.022011503035286956],[119,37,69,-0.03256503769293265],[119,37,70,-0.03835335422028324],[119,37,71,-0.046838292381149046],[119,37,72,-0.050277975481313714],[119,37,73,-0.052353971518976944],[119,37,74,-0.057268527348152826],[119,37,75,-0.05393283577620141],[119,37,76,-0.05170480055642354],[119,37,77,-0.047900117192803376],[119,37,78,-0.04670576147442099],[119,37,79,-0.041855100065584544],[119,38,64,0.002303252179508136],[119,38,65,-0.0017474000600991857],[119,38,66,-0.007840446753481584],[119,38,67,-0.015734542294468856],[119,38,68,-0.024135804366743813],[119,38,69,-0.03292251680378677],[119,38,70,-0.040600914058593215],[119,38,71,-0.04742733156518404],[119,38,72,-0.05279283532740513],[119,38,73,-0.05523998356120881],[119,38,74,-0.05721194130847987],[119,38,75,-0.05352682165229375],[119,38,76,-0.05106243326621676],[119,38,77,-0.050537636003317565],[119,38,78,-0.04642700402294231],[119,38,79,-0.042359890352209245],[119,39,64,0.005595477884647454],[119,39,65,-5.995303806350105E-4],[119,39,66,-0.008610462297655247],[119,39,67,-0.015027948802318836],[119,39,68,-0.02333247250268737],[119,39,69,-0.03117740035537392],[119,39,70,-0.04137474960571552],[119,39,71,-0.04841143351355477],[119,39,72,-0.054637226139436376],[119,39,73,-0.05540871599006941],[119,39,74,-0.05546782365318015],[119,39,75,-0.05409907469272368],[119,39,76,-0.05132184406767992],[119,39,77,-0.053343811336170305],[119,39,78,-0.04933261277935183],[119,39,79,-0.04120559158907956],[119,40,64,0.019346281134618087],[119,40,65,0.011876393158986837],[119,40,66,0.0032631813368028395],[119,40,67,-0.0038063623047960016],[119,40,68,-0.010316093437379353],[119,40,69,-0.016419292923078532],[119,40,70,-0.028504685053720433],[119,40,71,-0.0322903497927466],[119,40,72,-0.0390525689226119],[119,40,73,-0.03981131966053661],[119,40,74,-0.040306413623600545],[119,40,75,-0.04065318924562182],[119,40,76,-0.04047985471477722],[119,40,77,-0.04016984722146372],[119,40,78,-0.03606236509681872],[119,40,79,-0.028157691071679453],[119,41,64,0.02033555354274369],[119,41,65,0.011874006952902277],[119,41,66,0.004690356739566054],[119,41,67,-5.62752147597545E-4],[119,41,68,-0.00636100525693109],[119,41,69,-0.015123092704533853],[119,41,70,-0.025921283494023367],[119,41,71,-0.0292167009408235],[119,41,72,-0.0369571171515823],[119,41,73,-0.039194533271341106],[119,41,74,-0.0387722110305424],[119,41,75,-0.03969008288834043],[119,41,76,-0.04099941811597052],[119,41,77,-0.04026801399616181],[119,41,78,-0.03467364226603653],[119,41,79,-0.02644271820754393],[119,42,64,0.019859021756956058],[119,42,65,0.013842455841246215],[119,42,66,0.008494107717867072],[119,42,67,0.0018520158616984472],[119,42,68,-0.004129304262345396],[119,42,69,-0.014274935086592028],[119,42,70,-0.025101905248208323],[119,42,71,-0.02861975114595633],[119,42,72,-0.03343089318082393],[119,42,73,-0.03568810869257735],[119,42,74,-0.03835428739473204],[119,42,75,-0.03940101650370817],[119,42,76,-0.04106254182280186],[119,42,77,-0.040690046007566316],[119,42,78,-0.03362974561609483],[119,42,79,-0.023936324415952143],[119,43,64,0.018530580218275416],[119,43,65,0.015628807428373276],[119,43,66,0.010124000465415589],[119,43,67,0.003072255854208089],[119,43,68,-0.003445245361438226],[119,43,69,-0.0150943139926559],[119,43,70,-0.023090790132566624],[119,43,71,-0.029703772540909085],[119,43,72,-0.03355237415000138],[119,43,73,-0.03753705233155867],[119,43,74,-0.03781179813708048],[119,43,75,-0.03891655948907752],[119,43,76,-0.0396422237935251],[119,43,77,-0.038237521411146586],[119,43,78,-0.03278637593520575],[119,43,79,-0.023198953590303967],[119,44,64,0.01246391080447104],[119,44,65,0.007888152746591798],[119,44,66,0.003906273989708414],[119,44,67,-0.002758724136278784],[119,44,68,-0.010822285469240217],[119,44,69,-0.022061826672740537],[119,44,70,-0.029438979010450533],[119,44,71,-0.03442349582299853],[119,44,72,-0.04122105962651995],[119,44,73,-0.04416482139554907],[119,44,74,-0.04475474736711246],[119,44,75,-0.04585980038519247],[119,44,76,-0.046853314014453334],[119,44,77,-0.043814600198035805],[119,44,78,-0.04130393129695133],[119,44,79,-0.030956968159994352],[119,45,64,0.0037931926295151908],[119,45,65,0.003279261258158833],[119,45,66,0.008921375214336863],[119,45,67,0.006916552777115392],[119,45,68,0.00485925543434812],[119,45,69,-0.0011565493528860604],[119,45,70,-0.00571574749357362],[119,45,71,-0.012699105299656066],[119,45,72,-0.02271388170196248],[119,45,73,-0.0316546588053202],[119,45,74,-0.031936803189094504],[119,45,75,-0.03398915997753736],[119,45,76,-0.03843509554681472],[119,45,77,-0.03464777863196322],[119,45,78,-0.03643913488552526],[119,45,79,-0.03129512542335669],[119,46,64,0.001238258911691048],[119,46,65,0.0030259091175115216],[119,46,66,0.00887985209952269],[119,46,67,0.006178229220967196],[119,46,68,0.001720534988825878],[119,46,69,-0.002159046629350181],[119,46,70,-0.0027178131537238526],[119,46,71,-0.009646128488026373],[119,46,72,-0.022609694279196874],[119,46,73,-0.03257074207318203],[119,46,74,-0.03295871695637223],[119,46,75,-0.03499929654620444],[119,46,76,-0.038982921285430364],[119,46,77,-0.037284457437222376],[119,46,78,-0.03675455138375952],[119,46,79,-0.033884534193834054],[119,47,64,0.0012038547954593692],[119,47,65,0.003502285262992455],[119,47,66,0.006358065353995468],[119,47,67,0.003125102119478612],[119,47,68,-9.568469135236568E-4],[119,47,69,-0.0017038560357782728],[119,47,70,-0.0014586092956246355],[119,47,71,-0.00904945607506527],[119,47,72,-0.021600918613483955],[119,47,73,-0.03308611107910761],[119,47,74,-0.035213949395736285],[119,47,75,-0.03488610622072469],[119,47,76,-0.0374033852028314],[119,47,77,-0.03798236982767242],[119,47,78,-0.03655639050210455],[119,47,79,-0.032711549283075125],[119,48,64,0.015483190076204578],[119,48,65,0.01817416828305607],[119,48,66,0.017627468260658086],[119,48,67,0.013820704151166707],[119,48,68,0.014477316568049903],[119,48,69,0.013828199520047962],[119,48,70,0.010197179361768394],[119,48,71,0.004395360586000152],[119,48,72,-0.00991251320547884],[119,48,73,-0.021520608544904812],[119,48,74,-0.021315939801082817],[119,48,75,-0.02206498890865566],[119,48,76,-0.023973788867369505],[119,48,77,-0.02268100695184433],[119,48,78,-0.021238868714952452],[119,48,79,-0.018238955965547254],[119,49,64,0.004498587887857258],[119,49,65,0.0073961348265700055],[119,49,66,0.005351531637327961],[119,49,67,0.0030432419828385626],[119,49,68,0.006315853389714909],[119,49,69,0.00453367727744125],[119,49,70,0.001965373328178699],[119,49,71,0.001882427997371372],[119,49,72,-0.005320184480580525],[119,49,73,-0.01177692500978672],[119,49,74,-0.010837698588668038],[119,49,75,-0.013964023537602344],[119,49,76,-0.015647295840425013],[119,49,77,-0.011234392993370007],[119,49,78,-0.009914376801482744],[119,49,79,-0.007527905741698954],[119,50,64,0.0024074144577069523],[119,50,65,0.001514998140971613],[119,50,66,1.2872582214074058E-4],[119,50,67,0.0012564652057555636],[119,50,68,0.003658787106089245],[119,50,69,0.003431011206114859],[119,50,70,-4.486974770457064E-4],[119,50,71,-7.461868879883871E-4],[119,50,72,-0.006224429703956563],[119,50,73,-0.009667237310680643],[119,50,74,-0.00973693992570382],[119,50,75,-0.014203634970782891],[119,50,76,-0.013715746798303924],[119,50,77,-0.009362126165051998],[119,50,78,-0.00535010947611847],[119,50,79,-0.004283764590798267],[119,51,64,-0.003280523455694545],[119,51,65,-0.0035124431805172995],[119,51,66,-0.003907696017811296],[119,51,67,-0.003920139459438865],[119,51,68,-3.492546724774004E-4],[119,51,69,-2.019873516481696E-5],[119,51,70,-0.002818398542507816],[119,51,71,-0.0017583945586306104],[119,51,72,-0.007190715817748244],[119,51,73,-0.009407469665025647],[119,51,74,-0.01166072797982004],[119,51,75,-0.012445171344411643],[119,51,76,-0.013939279212375089],[119,51,77,-0.007498468147194265],[119,51,78,-0.0033287963010793786],[119,51,79,-0.0023151549413313044],[119,52,64,0.02827606849949829],[119,52,65,0.027192652750561458],[119,52,66,0.026635953373347343],[119,52,67,0.024977060009030078],[119,52,68,0.02714167820517832],[119,52,69,0.03145780334785189],[119,52,70,0.031057781075984725],[119,52,71,0.028320387161446747],[119,52,72,0.023467326953056755],[119,52,73,0.023523076379303398],[119,52,74,0.02081827958961524],[119,52,75,0.02078788138530363],[119,52,76,0.02085426707837329],[119,52,77,0.02531138623796636],[119,52,78,0.028289222602271236],[119,52,79,0.029110022677798414],[119,53,64,0.031180181093193732],[119,53,65,0.025535126603509345],[119,53,66,0.021987308946725792],[119,53,67,0.019654715965714498],[119,53,68,0.019670100955750724],[119,53,69,0.02057314321055892],[119,53,70,0.017932888483432136],[119,53,71,0.015970665960912983],[119,53,72,0.010049995673171358],[119,53,73,0.010949281086288343],[119,53,74,0.010016825571562638],[119,53,75,0.012449788171830345],[119,53,76,0.012722455907507618],[119,53,77,0.01719567249153947],[119,53,78,0.02189122195504753],[119,53,79,0.023190927739749262],[119,54,64,0.02900959326926325],[119,54,65,0.02197442759025628],[119,54,66,0.018174691251462677],[119,54,67,0.015392929645382858],[119,54,68,0.016289018056833304],[119,54,69,0.016754700647741733],[119,54,70,0.016032180333976548],[119,54,71,0.011401109846237295],[119,54,72,0.00956874162563287],[119,54,73,0.009719574852623203],[119,54,74,0.011192796135100519],[119,54,75,0.012127151091810423],[119,54,76,0.014237867252045677],[119,54,77,0.01757138192401711],[119,54,78,0.0211218849920268],[119,54,79,0.019643083361603225],[119,55,64,0.025675650456709748],[119,55,65,0.0194164696509041],[119,55,66,0.015348243747967782],[119,55,67,0.016185162554274185],[119,55,68,0.014099553757920796],[119,55,69,0.010557260139373775],[119,55,70,0.01159294459974089],[119,55,71,0.006595636222887391],[119,55,72,0.006713660882952138],[119,55,73,0.006388156667370332],[119,55,74,0.009881774271488258],[119,55,75,0.012551123443478834],[119,55,76,0.016853923514985047],[119,55,77,0.017961270474730534],[119,55,78,0.019298523484736096],[119,55,79,0.01641088207355129],[119,56,64,0.03704792127719128],[119,56,65,0.030594540251128316],[119,56,66,0.029605005074288898],[119,56,67,0.029970001245910316],[119,56,68,0.024964525933122123],[119,56,69,0.020014355602668177],[119,56,70,0.018741050177320112],[119,56,71,0.01838717586904104],[119,56,72,0.017407204263075127],[119,56,73,0.018101782160948182],[119,56,74,0.022558345270377977],[119,56,75,0.027925040861268124],[119,56,76,0.03146734194919268],[119,56,77,0.030692797995957616],[119,56,78,0.03302454683823869],[119,56,79,0.03143634709167156],[119,57,64,0.03069461247838315],[119,57,65,0.026114293513501502],[119,57,66,0.024724758268913544],[119,57,67,0.022637004777945946],[119,57,68,0.01546057530949288],[119,57,69,0.008872856830168085],[119,57,70,0.00869574709011342],[119,57,71,0.007936993427947237],[119,57,72,0.005413520700542018],[119,57,73,0.005962389411180297],[119,57,74,0.01037390591841511],[119,57,75,0.0158408617634877],[119,57,76,0.0164131866603604],[119,57,77,0.018375339544259572],[119,57,78,0.022731314723305918],[119,57,79,0.02052487786048554],[119,58,64,0.07293050413503474],[119,58,65,0.06769284592973274],[119,58,66,0.06209816323346409],[119,58,67,0.05865039904175687],[119,58,68,0.050704357215655985],[119,58,69,0.04558388218974421],[119,58,70,0.04425872446593454],[119,58,71,0.042001827846251075],[119,58,72,0.04167991446202671],[119,58,73,0.0415277160435209],[119,58,74,0.04580184604507924],[119,58,75,0.052220931116311625],[119,58,76,0.05146436358673229],[119,58,77,0.054870630914585536],[119,58,78,0.05673994508689792],[119,58,79,0.05474095362876456],[119,59,64,0.0735309957552154],[119,59,65,0.06715437643022006],[119,59,66,0.05807156886398675],[119,59,67,0.0531932451628534],[119,59,68,0.047403552407841026],[119,59,69,0.04143472375923271],[119,59,70,0.04060223399267633],[119,59,71,0.04021480135752033],[119,59,72,0.04202731384125698],[119,59,73,0.040542139622965365],[119,59,74,0.04456140499562772],[119,59,75,0.05080939690610271],[119,59,76,0.05172144317369712],[119,59,77,0.052797967527668105],[119,59,78,0.05531221852748128],[119,59,79,0.052568075176005036],[119,60,64,0.06649986426712098],[119,60,65,0.05882481302737104],[119,60,66,0.04907195192206679],[119,60,67,0.041617500793743295],[119,60,68,0.03794685969556265],[119,60,69,0.032506263706592375],[119,60,70,0.03278524621429095],[119,60,71,0.03360453635662693],[119,60,72,0.032236486418720206],[119,60,73,0.03264269183491854],[119,60,74,0.03594879082291541],[119,60,75,0.04306119270603523],[119,60,76,0.04554512775095135],[119,60,77,0.047359140297747376],[119,60,78,0.04576400114457596],[119,60,79,0.044816505652042676],[119,61,64,0.08271268900080886],[119,61,65,0.06969001210386619],[119,61,66,0.05782450368470465],[119,61,67,0.047390989544201664],[119,61,68,0.03939397490875689],[119,61,69,0.03367490404643424],[119,61,70,0.032021962301550785],[119,61,71,0.032722967266054975],[119,61,72,0.030141245714249823],[119,61,73,0.030954109378170072],[119,61,74,0.036309794788191824],[119,61,75,0.044200760408781195],[119,61,76,0.048781382416252086],[119,61,77,0.051750026571846935],[119,61,78,0.04955874624104685],[119,61,79,0.05169401586420071],[119,62,64,0.08158855439499685],[119,62,65,0.06704515745208714],[119,62,66,0.05585403195706502],[119,62,67,0.04760472728925309],[119,62,68,0.038086014537240614],[119,62,69,0.033673628156813004],[119,62,70,0.030126967656636944],[119,62,71,0.032689599406409725],[119,62,72,0.02755063235347381],[119,62,73,0.03187186201006488],[119,62,74,0.035895170696983086],[119,62,75,0.042323595632467945],[119,62,76,0.04870788189086733],[119,62,77,0.053300280695445915],[119,62,78,0.04996977540656242],[119,62,79,0.052983969545697604],[119,63,64,0.007319985303396545],[119,63,65,-0.005251619887803205],[119,63,66,-0.01829940435642885],[119,63,67,-0.026126034858042893],[119,63,68,-0.031155043737556606],[119,63,69,-0.035068454987675426],[119,63,70,-0.03890216904928291],[119,63,71,-0.03715029766160771],[119,63,72,-0.04039223174274889],[119,63,73,-0.037141921808515624],[119,63,74,-0.030721034424684643],[119,63,75,-0.02324505681372413],[119,63,76,-0.016759456635968575],[119,63,77,-0.012419103579275254],[119,63,78,-0.014428214053643293],[119,63,79,-0.011340948150447436],[119,64,64,0.016980149283486942],[119,64,65,0.004200088250472397],[119,64,66,-0.010168314955456573],[119,64,67,-0.01837663839749333],[119,64,68,-0.020597237793587714],[119,64,69,-0.023421422728393593],[119,64,70,-0.030193206018377203],[119,64,71,-0.030085332329906858],[119,64,72,-0.03096927876873802],[119,64,73,-0.028899648788550752],[119,64,74,-0.020667682288566427],[119,64,75,-0.013032833293335669],[119,64,76,-0.008430860051888409],[119,64,77,-0.004079473713545417],[119,64,78,-0.005567395540329492],[119,64,79,-0.0030769472907817286],[119,65,64,0.01668271756689886],[119,65,65,0.003460231926356],[119,65,66,-0.012004905656903958],[119,65,67,-0.019745648236037],[119,65,68,-0.023081747103074382],[119,65,69,-0.023171547320148145],[119,65,70,-0.029733507449094837],[119,65,71,-0.0318480236593032],[119,65,72,-0.033191273639684896],[119,65,73,-0.02911251515458442],[119,65,74,-0.025255220131284534],[119,65,75,-0.01523469009261906],[119,65,76,-0.011409531961881408],[119,65,77,-0.00650850915783957],[119,65,78,-0.007484187523930319],[119,65,79,-0.00146369189130853],[119,66,64,0.009525858571378804],[119,66,65,-0.0020064811347999673],[119,66,66,-0.018859778233720995],[119,66,67,-0.02854365726669207],[119,66,68,-0.03074323164346461],[119,66,69,-0.031671468693549795],[119,66,70,-0.03541270384327627],[119,66,71,-0.03828868778278499],[119,66,72,-0.04093702030406603],[119,66,73,-0.038146658564434596],[119,66,74,-0.03396645771195625],[119,66,75,-0.024688819670662623],[119,66,76,-0.018682360129685757],[119,66,77,-0.015382913425945652],[119,66,78,-0.012478356798022408],[119,66,79,-0.006844051362897008],[119,67,64,0.008011321261425605],[119,67,65,-0.0032900839927633985],[119,67,66,-0.019083755225864668],[119,67,67,-0.028923394273415545],[119,67,68,-0.035116481232528765],[119,67,69,-0.034922862971463436],[119,67,70,-0.03727641645191103],[119,67,71,-0.036097341686332635],[119,67,72,-0.04190659792281823],[119,67,73,-0.0431788081147427],[119,67,74,-0.03524177212311412],[119,67,75,-0.027586141419840143],[119,67,76,-0.021192024116431715],[119,67,77,-0.01692215516610432],[119,67,78,-0.014067938033414579],[119,67,79,-0.00882245071578433],[119,68,64,-0.08883757175376922],[119,68,65,-0.0955922225976888],[119,68,66,-0.11070411697329802],[119,68,67,-0.12213686838109337],[119,68,68,-0.12781260545454878],[119,68,69,-0.12950757341126423],[119,68,70,-0.13126194701854368],[119,68,71,-0.12812597390676064],[119,68,72,-0.1327891470319411],[119,68,73,-0.13424117856541423],[119,68,74,-0.12809896772128165],[119,68,75,-0.1205642175028748],[119,68,76,-0.1125213497517097],[119,68,77,-0.10699026692501222],[119,68,78,-0.10369061244037694],[119,68,79,-0.10186127576913309],[119,69,64,-0.10108062732160489],[119,69,65,-0.10315643115233418],[119,69,66,-0.11143572834735081],[119,69,67,-0.11528551552921429],[119,69,68,-0.11450839350713415],[119,69,69,-0.11279127220030641],[119,69,70,-0.11133201303735196],[119,69,71,-0.1116196282214341],[119,69,72,-0.1170841869607604],[119,69,73,-0.12279995720552835],[119,69,74,-0.11676635283265736],[119,69,75,-0.10985846449707187],[119,69,76,-0.10442734504359882],[119,69,77,-0.09635723103970609],[119,69,78,-0.09249649014615965],[119,69,79,-0.08806470235672953],[119,70,64,-0.10377737339817966],[119,70,65,-0.10750934817177503],[119,70,66,-0.1114690128723138],[119,70,67,-0.11558388476197155],[119,70,68,-0.1133536831931444],[119,70,69,-0.11284815252679557],[119,70,70,-0.11311666710053679],[119,70,71,-0.11331122756859238],[119,70,72,-0.11834713917356685],[119,70,73,-0.12265944282121127],[119,70,74,-0.1178648142431864],[119,70,75,-0.11106491633477411],[119,70,76,-0.1088178622632095],[119,70,77,-0.09802865876535068],[119,70,78,-0.09154927731840112],[119,70,79,-0.08911655294836815],[119,71,64,-0.09882372546353997],[119,71,65,-0.102675796676358],[119,71,66,-0.10472702899864078],[119,71,67,-0.1078061964843594],[119,71,68,-0.10603050595070092],[119,71,69,-0.10305721150284333],[119,71,70,-0.1037308212513362],[119,71,71,-0.10360553474969668],[119,71,72,-0.10860532712072585],[119,71,73,-0.11318530328469477],[119,71,74,-0.1088675494430796],[119,71,75,-0.10470651924813495],[119,71,76,-0.10349401006122186],[119,71,77,-0.09489058060401187],[119,71,78,-0.0868403629294047],[119,71,79,-0.08215835207969678],[119,72,64,-0.10112484967563315],[119,72,65,-0.1078462006192373],[119,72,66,-0.10795872565745257],[119,72,67,-0.10973014608630757],[119,72,68,-0.110545407168696],[119,72,69,-0.10453264202923701],[119,72,70,-0.10347544184902782],[119,72,71,-0.10353044355025005],[119,72,72,-0.10818650728372595],[119,72,73,-0.1127302553624925],[119,72,74,-0.10842418773444215],[119,72,75,-0.10749509762785045],[119,72,76,-0.10743167179772176],[119,72,77,-0.10082780872479451],[119,72,78,-0.09180050866126963],[119,72,79,-0.08674004129136237],[119,73,64,-0.11569338739227775],[119,73,65,-0.1218316053400024],[119,73,66,-0.1214478399130859],[119,73,67,-0.1193691917535123],[119,73,68,-0.12116114682768216],[119,73,69,-0.11769403904429085],[119,73,70,-0.11184823553957654],[119,73,71,-0.10992893638752094],[119,73,72,-0.10739928639528529],[119,73,73,-0.1074833435174411],[119,73,74,-0.10387443475767091],[119,73,75,-0.10335864266353663],[119,73,76,-0.10303365629046725],[119,73,77,-0.10230531562575018],[119,73,78,-0.10413733949855682],[119,73,79,-0.10298787583635269],[119,74,64,-0.12543385521468892],[119,74,65,-0.1313663122866557],[119,74,66,-0.13144767311943867],[119,74,67,-0.13063576120518378],[119,74,68,-0.13080110985824459],[119,74,69,-0.12474593373097921],[119,74,70,-0.11905436772359848],[119,74,71,-0.11942558565096652],[119,74,72,-0.11684651338887242],[119,74,73,-0.11549991193822295],[119,74,74,-0.11276796117678506],[119,74,75,-0.11151920373607982],[119,74,76,-0.10918508419219063],[119,74,77,-0.11045170104959398],[119,74,78,-0.11584880310436727],[119,74,79,-0.11590874937675813],[119,75,64,-0.12892878425212365],[119,75,65,-0.13215717642948843],[119,75,66,-0.1356492228824802],[119,75,67,-0.13393737126298583],[119,75,68,-0.13499379379118057],[119,75,69,-0.12873056008387745],[119,75,70,-0.12269864104684912],[119,75,71,-0.12469269649449449],[119,75,72,-0.11996898955045755],[119,75,73,-0.11740331766647422],[119,75,74,-0.11425185871598192],[119,75,75,-0.11506156124692238],[119,75,76,-0.11236865993544645],[119,75,77,-0.11509993445787653],[119,75,78,-0.12039820250301883],[119,75,79,-0.12314589731481518],[119,76,64,-0.12920330302836444],[119,76,65,-0.13439627549143537],[119,76,66,-0.13567655590592864],[119,76,67,-0.13221017750763722],[119,76,68,-0.13407492951475544],[119,76,69,-0.12839199618377845],[119,76,70,-0.12250635854273892],[119,76,71,-0.12378189708564608],[119,76,72,-0.12044192536651202],[119,76,73,-0.11686453619767455],[119,76,74,-0.11336420129206937],[119,76,75,-0.1145823052506803],[119,76,76,-0.11413686049097907],[119,76,77,-0.11636290028231489],[119,76,78,-0.12289114769675938],[119,76,79,-0.12482549378652177],[119,77,64,-0.13057663786771365],[119,77,65,-0.1385073009417694],[119,77,66,-0.14179308433048898],[119,77,67,-0.1384349104490044],[119,77,68,-0.1400053558477658],[119,77,69,-0.13719369209843513],[119,77,70,-0.1333480046815331],[119,77,71,-0.13580991459810487],[119,77,72,-0.1310802639595013],[119,77,73,-0.12870678099749583],[119,77,74,-0.12649667974164702],[119,77,75,-0.12722314590754616],[119,77,76,-0.12561619014497885],[119,77,77,-0.1275634793938885],[119,77,78,-0.1333590357651294],[119,77,79,-0.13491788452766315],[119,78,64,-0.1347430957523998],[119,78,65,-0.14494929513022536],[119,78,66,-0.1444294634501145],[119,78,67,-0.14089614037515452],[119,78,68,-0.1408933160132052],[119,78,69,-0.1383759453480376],[119,78,70,-0.1339661669288963],[119,78,71,-0.1349888187296201],[119,78,72,-0.13230325111350533],[119,78,73,-0.1294115374368933],[119,78,74,-0.12919907205015765],[119,78,75,-0.12974910819088942],[119,78,76,-0.12814009001412896],[119,78,77,-0.1322983231713153],[119,78,78,-0.13760205709812684],[119,78,79,-0.14071068136484152],[119,79,64,-0.1289267097494916],[119,79,65,-0.13795388472859166],[119,79,66,-0.13730360088670032],[119,79,67,-0.1327080332803569],[119,79,68,-0.13203622418585464],[119,79,69,-0.12994779240424179],[119,79,70,-0.12532418018203073],[119,79,71,-0.12756814683100215],[119,79,72,-0.12537499056771806],[119,79,73,-0.12245766276729676],[119,79,74,-0.12410246967441561],[119,79,75,-0.12486435522109043],[119,79,76,-0.12510421057409785],[119,79,77,-0.1278757104940127],[119,79,78,-0.13423457619927393],[119,79,79,-0.13584681558100983],[119,80,64,-0.1330889672596816],[119,80,65,-0.13838960742808576],[119,80,66,-0.13843759229553337],[119,80,67,-0.1352692501495558],[119,80,68,-0.1352111411337686],[119,80,69,-0.12974772771046264],[119,80,70,-0.12666035078431254],[119,80,71,-0.12755137161897812],[119,80,72,-0.1312648754103585],[119,80,73,-0.12791078630552194],[119,80,74,-0.1287561884691698],[119,80,75,-0.12886821507535698],[119,80,76,-0.1321044516609581],[119,80,77,-0.13173498635951644],[119,80,78,-0.1374222612684429],[119,80,79,-0.14069287640339495],[119,81,64,-0.12364505355307184],[119,81,65,-0.12820540020472398],[119,81,66,-0.1264713947434838],[119,81,67,-0.12572567365488224],[119,81,68,-0.12710950110070018],[119,81,69,-0.12355969619562963],[119,81,70,-0.12174106922587569],[119,81,71,-0.12448230507477644],[119,81,72,-0.1325935212254979],[119,81,73,-0.13491784960999278],[119,81,74,-0.1364112723894368],[119,81,75,-0.13444065196404537],[119,81,76,-0.13568755000143795],[119,81,77,-0.13994626719811365],[119,81,78,-0.14592923346006764],[119,81,79,-0.15266508919714694],[119,82,64,-0.13070259231247125],[119,82,65,-0.13438207016502157],[119,82,66,-0.13336800847150287],[119,82,67,-0.13318029317434296],[119,82,68,-0.13454944980121178],[119,82,69,-0.13287601505255053],[119,82,70,-0.1310505452065188],[119,82,71,-0.1338213747365751],[119,82,72,-0.14026330228821351],[119,82,73,-0.1448529373877815],[119,82,74,-0.1472185562226631],[119,82,75,-0.14522092500162107],[119,82,76,-0.14345643461682292],[119,82,77,-0.1504460429536109],[119,82,78,-0.15526247338700006],[119,82,79,-0.16088039791835118],[119,83,64,-0.13300365146845847],[119,83,65,-0.13778704250379792],[119,83,66,-0.13630262357039818],[119,83,67,-0.13538205803213543],[119,83,68,-0.13552671916967196],[119,83,69,-0.1347127433480399],[119,83,70,-0.1347183802433052],[119,83,71,-0.13892332599550392],[119,83,72,-0.14524928680955304],[119,83,73,-0.1497917146842895],[119,83,74,-0.1526932034536242],[119,83,75,-0.15008263644080666],[119,83,76,-0.14817981331436852],[119,83,77,-0.1525412294072921],[119,83,78,-0.1578468084128854],[119,83,79,-0.165049959921842],[119,84,64,-0.13021390329268923],[119,84,65,-0.13687700004947356],[119,84,66,-0.13467602868894069],[119,84,67,-0.13431421904968224],[119,84,68,-0.13474714197253718],[119,84,69,-0.1349843238270654],[119,84,70,-0.13678996173946942],[119,84,71,-0.14308568211773393],[119,84,72,-0.14974837277838984],[119,84,73,-0.15315026183131755],[119,84,74,-0.15569799700304612],[119,84,75,-0.15237366697925875],[119,84,76,-0.15145200680610466],[119,84,77,-0.1551521186232679],[119,84,78,-0.15883317208864053],[119,84,79,-0.16545301956884334],[119,85,64,-0.15108259168127192],[119,85,65,-0.158793119467528],[119,85,66,-0.15609744653475238],[119,85,67,-0.1547970946297509],[119,85,68,-0.15550701894307634],[119,85,69,-0.15725661636910815],[119,85,70,-0.15992431696219356],[119,85,71,-0.16406525486827153],[119,85,72,-0.1670567933349489],[119,85,73,-0.16810041680812474],[119,85,74,-0.17094547322844916],[119,85,75,-0.16860536548212962],[119,85,76,-0.1635192747230937],[119,85,77,-0.1657807750059636],[119,85,78,-0.16688601790208396],[119,85,79,-0.16743902366878682],[119,86,64,-0.15555258308470807],[119,86,65,-0.1614737972958764],[119,86,66,-0.16090617304896876],[119,86,67,-0.15958165528997437],[119,86,68,-0.15858551206225896],[119,86,69,-0.15968745998383538],[119,86,70,-0.16230507773530717],[119,86,71,-0.1642638998236379],[119,86,72,-0.170637952404673],[119,86,73,-0.17109183735810277],[119,86,74,-0.17359465448820227],[119,86,75,-0.17012858960054245],[119,86,76,-0.16819728880975632],[119,86,77,-0.1699134989235909],[119,86,78,-0.17058417629205394],[119,86,79,-0.17285269999364303],[119,87,64,-0.1446003571347021],[119,87,65,-0.15268990535345067],[119,87,66,-0.15521163391754603],[119,87,67,-0.15260193553350734],[119,87,68,-0.15308913540944458],[119,87,69,-0.15345005690395164],[119,87,70,-0.15443158249967534],[119,87,71,-0.15812758501642105],[119,87,72,-0.1633109625789999],[119,87,73,-0.16339922976844537],[119,87,74,-0.16602218917414116],[119,87,75,-0.16422990871098705],[119,87,76,-0.16336130417546885],[119,87,77,-0.164082016490928],[119,87,78,-0.16634073053049891],[119,87,79,-0.16732869108381096],[119,88,64,-0.14453661484630279],[119,88,65,-0.15434979928129824],[119,88,66,-0.15467919810175734],[119,88,67,-0.15394211497379529],[119,88,68,-0.15448826961879614],[119,88,69,-0.15253064446628536],[119,88,70,-0.15221965086413858],[119,88,71,-0.15823072705889016],[119,88,72,-0.16181608433048122],[119,88,73,-0.16374075527948032],[119,88,74,-0.16732976408871578],[119,88,75,-0.1675946951389497],[119,88,76,-0.1658884314201093],[119,88,77,-0.16670844206372398],[119,88,78,-0.1686671009818585],[119,88,79,-0.16859848013744405],[119,89,64,-0.1429067036490178],[119,89,65,-0.15200193931255773],[119,89,66,-0.15457425114410517],[119,89,67,-0.154686357656239],[119,89,68,-0.15387072573843638],[119,89,69,-0.1530046772090373],[119,89,70,-0.15185791191244138],[119,89,71,-0.15690190500312798],[119,89,72,-0.16215426906307978],[119,89,73,-0.16465116193712165],[119,89,74,-0.16810227393011284],[119,89,75,-0.1683569172036582],[119,89,76,-0.16900813243508436],[119,89,77,-0.17087141295524785],[119,89,78,-0.16974594615656508],[119,89,79,-0.16887960389932902],[119,90,64,-0.14819014584817802],[119,90,65,-0.15486599766897505],[119,90,66,-0.1595561255714632],[119,90,67,-0.1591928062356866],[119,90,68,-0.1600665239077773],[119,90,69,-0.15809157571109442],[119,90,70,-0.1569175285691733],[119,90,71,-0.15946981919794717],[119,90,72,-0.1643603743686118],[119,90,73,-0.171386129061179],[119,90,74,-0.17443303576032265],[119,90,75,-0.17542172014691743],[119,90,76,-0.1758889549045457],[119,90,77,-0.17667844178127312],[119,90,78,-0.1775717078928912],[119,90,79,-0.1746082159709564],[119,91,64,-0.14779140016294956],[119,91,65,-0.15265089173042531],[119,91,66,-0.15621770628046128],[119,91,67,-0.15614756665773463],[119,91,68,-0.16048165790434565],[119,91,69,-0.15724737197553051],[119,91,70,-0.15356493368771973],[119,91,71,-0.15838876955169928],[119,91,72,-0.1646992998459546],[119,91,73,-0.17070024479574478],[119,91,74,-0.17640742868827264],[119,91,75,-0.17484953255532876],[119,91,76,-0.1756784094113335],[119,91,77,-0.17708185216973885],[119,91,78,-0.18019899489382132],[119,91,79,-0.17707555832326854],[119,92,64,-0.12057027179315352],[119,92,65,-0.12413398216029536],[119,92,66,-0.1278217522117998],[119,92,67,-0.1286327196048789],[119,92,68,-0.13674992917127515],[119,92,69,-0.13427476680154662],[119,92,70,-0.1296539058609249],[119,92,71,-0.1368028269663819],[119,92,72,-0.1436303439592902],[119,92,73,-0.1503900637013135],[119,92,74,-0.15721439738809967],[119,92,75,-0.1555299334754028],[119,92,76,-0.15615305652232225],[119,92,77,-0.1565943626052892],[119,92,78,-0.15971163950070819],[119,92,79,-0.1584991495698986],[119,93,64,-0.11020326946285365],[119,93,65,-0.11716284806937924],[119,93,66,-0.12265484097545629],[119,93,67,-0.12599118437175238],[119,93,68,-0.1340825974667088],[119,93,69,-0.1323268366661707],[119,93,70,-0.12999701675529285],[119,93,71,-0.13900153842596966],[119,93,72,-0.14990926753489903],[119,93,73,-0.15605251307504892],[119,93,74,-0.16292914563278546],[119,93,75,-0.16488306348434384],[119,93,76,-0.16498526688381812],[119,93,77,-0.16076831211127712],[119,93,78,-0.15904513294407752],[119,93,79,-0.15523037748315832],[119,94,64,-0.10821314723640237],[119,94,65,-0.11724002681296798],[119,94,66,-0.1230509969800968],[119,94,67,-0.12973787080675278],[119,94,68,-0.134343885380657],[119,94,69,-0.1343450904302969],[119,94,70,-0.13244373643525853],[119,94,71,-0.13978332076456546],[119,94,72,-0.1516440722351478],[119,94,73,-0.1561606130482454],[119,94,74,-0.16134384194276014],[119,94,75,-0.16483258141216822],[119,94,76,-0.16647007043648435],[119,94,77,-0.16465269910394043],[119,94,78,-0.16074437636549105],[119,94,79,-0.15612804655302803],[119,95,64,-0.09628445572385767],[119,95,65,-0.10692641742629481],[119,95,66,-0.11503708818717985],[119,95,67,-0.12249999355184477],[119,95,68,-0.12545938366960777],[119,95,69,-0.1264474063977629],[119,95,70,-0.12633801905266126],[119,95,71,-0.133191770162643],[119,95,72,-0.14167345334687495],[119,95,73,-0.1470159931573711],[119,95,74,-0.15076372291535323],[119,95,75,-0.15591791743910477],[119,95,76,-0.15847449060379132],[119,95,77,-0.15922100690901955],[119,95,78,-0.15588293692234367],[119,95,79,-0.15152415625123053],[119,96,64,-0.09770279939575968],[119,96,65,-0.1053847175577308],[119,96,66,-0.11533943855647642],[119,96,67,-0.12358473565051036],[119,96,68,-0.12569224781027855],[119,96,69,-0.12576256407432165],[119,96,70,-0.12515138912525836],[119,96,71,-0.13218856952702895],[119,96,72,-0.13971919636149],[119,96,73,-0.14494158807968094],[119,96,74,-0.15012045531973017],[119,96,75,-0.15596816745329556],[119,96,76,-0.15991764525261992],[119,96,77,-0.16021117816938565],[119,96,78,-0.15581086105233077],[119,96,79,-0.15225945804950497],[119,97,64,-0.1058694356750612],[119,97,65,-0.11107826484984476],[119,97,66,-0.1172761720725154],[119,97,67,-0.1254076395868189],[119,97,68,-0.12439844755257176],[119,97,69,-0.12379953935764235],[119,97,70,-0.12272994494170085],[119,97,71,-0.12704684019425688],[119,97,72,-0.13353541775225655],[119,97,73,-0.13797879868188526],[119,97,74,-0.1416359278568438],[119,97,75,-0.14882735166413308],[119,97,76,-0.15324476138034007],[119,97,77,-0.15704004717211156],[119,97,78,-0.15849990479971132],[119,97,79,-0.15922261894073583],[119,98,64,-0.11370659974208507],[119,98,65,-0.12000911316382165],[119,98,66,-0.12407848440194094],[119,98,67,-0.1312534647856857],[119,98,68,-0.1292140992112706],[119,98,69,-0.12645771033879882],[119,98,70,-0.126009159779229],[119,98,71,-0.13058937281883268],[119,98,72,-0.1367957180587297],[119,98,73,-0.14197890748595982],[119,98,74,-0.14524169663178793],[119,98,75,-0.15248055471460015],[119,98,76,-0.15722421510433085],[119,98,77,-0.15975729527435722],[119,98,78,-0.16304367678974446],[119,98,79,-0.16405315030455725],[119,99,64,-0.11840002522470386],[119,99,65,-0.12295765557343466],[119,99,66,-0.12607462150134793],[119,99,67,-0.12945616506528365],[119,99,68,-0.12633815738474333],[119,99,69,-0.12648370544470053],[119,99,70,-0.12591013576722798],[119,99,71,-0.13082637809630637],[119,99,72,-0.13747758852885725],[119,99,73,-0.14004827462737307],[119,99,74,-0.14494545208547188],[119,99,75,-0.14991208976201503],[119,99,76,-0.15423591058252129],[119,99,77,-0.1554408674137617],[119,99,78,-0.16044670037166803],[119,99,79,-0.1648212894175584],[119,100,64,-0.09856676888169437],[119,100,65,-0.09655035715334472],[119,100,66,-0.09424515892983659],[119,100,67,-0.08929445663360029],[119,100,68,-0.08340934614030303],[119,100,69,-0.0787110498583486],[119,100,70,-0.0771708717204536],[119,100,71,-0.07882042136686432],[119,100,72,-0.08285348108992521],[119,100,73,-0.08587811382477455],[119,100,74,-0.08966111120473233],[119,100,75,-0.09323583969655214],[119,100,76,-0.09523029839617916],[119,100,77,-0.0999918125279086],[119,100,78,-0.1099719046788806],[119,100,79,-0.11346975386981545],[119,101,64,-0.1024940209585515],[119,101,65,-0.09859160987912374],[119,101,66,-0.09469586545595762],[119,101,67,-0.0903505625767807],[119,101,68,-0.08233665175215586],[119,101,69,-0.07728697838769374],[119,101,70,-0.07604506980577318],[119,101,71,-0.0784989167775264],[119,101,72,-0.08246697325650906],[119,101,73,-0.08341910399196245],[119,101,74,-0.08511423809483422],[119,101,75,-0.08825693687079621],[119,101,76,-0.09300163981832407],[119,101,77,-0.09929572997372271],[119,101,78,-0.10823644381987549],[119,101,79,-0.11341788479438619],[119,102,64,-0.1038123813187435],[119,102,65,-0.09967957952314117],[119,102,66,-0.09671923210137717],[119,102,67,-0.09230029253694574],[119,102,68,-0.08330923403585128],[119,102,69,-0.08050286904754701],[119,102,70,-0.07908081041006337],[119,102,71,-0.07723837506571932],[119,102,72,-0.08032382181949697],[119,102,73,-0.08292857453043379],[119,102,74,-0.08360062497111856],[119,102,75,-0.08730668121702419],[119,102,76,-0.09306578179989874],[119,102,77,-0.09715134272213419],[119,102,78,-0.1068022344409463],[119,102,79,-0.1122526011794732],[119,103,64,-0.09564866888616369],[119,103,65,-0.09353290308626612],[119,103,66,-0.09007247265383013],[119,103,67,-0.08518111900506735],[119,103,68,-0.07762470162500602],[119,103,69,-0.0766013232540883],[119,103,70,-0.0732971665351365],[119,103,71,-0.07088392551366157],[119,103,72,-0.07405098810140262],[119,103,73,-0.07906540865047017],[119,103,74,-0.08192149249673164],[119,103,75,-0.08308001424604936],[119,103,76,-0.08813614174607756],[119,103,77,-0.09151517635977752],[119,103,78,-0.10025481740355754],[119,103,79,-0.1094799039748619],[119,104,64,-0.09521289193396679],[119,104,65,-0.09558447697612252],[119,104,66,-0.0907993013703893],[119,104,67,-0.08642615868861879],[119,104,68,-0.08125860894132127],[119,104,69,-0.07911588484737328],[119,104,70,-0.07458761918589363],[119,104,71,-0.07164929665628363],[119,104,72,-0.07443501329515802],[119,104,73,-0.08068096763114038],[119,104,74,-0.08266998160090555],[119,104,75,-0.08378997723999379],[119,104,76,-0.08707762509167016],[119,104,77,-0.09329091323621022],[119,104,78,-0.10040465075405339],[119,104,79,-0.1105222719632127],[119,105,64,-0.09967807832998542],[119,105,65,-0.09588511349373521],[119,105,66,-0.08800154928869329],[119,105,67,-0.08043672537549931],[119,105,68,-0.075085444909699],[119,105,69,-0.07274602014496004],[119,105,70,-0.06973854314811018],[119,105,71,-0.06725920839018933],[119,105,72,-0.06841280690345641],[119,105,73,-0.07362636057208839],[119,105,74,-0.0749201308710633],[119,105,75,-0.07763680001275712],[119,105,76,-0.08072049698758571],[119,105,77,-0.08733357936536021],[119,105,78,-0.09741112162961382],[119,105,79,-0.10970258690087685],[119,106,64,-0.10867507842997312],[119,106,65,-0.10219776847628169],[119,106,66,-0.09565679256815339],[119,106,67,-0.0877776966840273],[119,106,68,-0.08121027481081558],[119,106,69,-0.08058330952989065],[119,106,70,-0.07600855504340034],[119,106,71,-0.07528800827763378],[119,106,72,-0.07365905739745696],[119,106,73,-0.07766199431897573],[119,106,74,-0.07937100968284864],[119,106,75,-0.08252449577238857],[119,106,76,-0.08510891129700122],[119,106,77,-0.09212312522465056],[119,106,78,-0.1016527945438778],[119,106,79,-0.11309199572369558],[119,107,64,-0.10997600008348214],[119,107,65,-0.10374398290173589],[119,107,66,-0.0976949279114056],[119,107,67,-0.08977617133586015],[119,107,68,-0.08205173715112907],[119,107,69,-0.08166419626616078],[119,107,70,-0.0788034958684441],[119,107,71,-0.0770553700645751],[119,107,72,-0.07502086359026566],[119,107,73,-0.07948395719742223],[119,107,74,-0.0812879354743301],[119,107,75,-0.08505732483689984],[119,107,76,-0.08872489921867016],[119,107,77,-0.09402116100956161],[119,107,78,-0.10242205795060616],[119,107,79,-0.11244120163958855],[119,108,64,-0.11320925779252025],[119,108,65,-0.11064073669756262],[119,108,66,-0.10314858361922287],[119,108,67,-0.09274171537275933],[119,108,68,-0.08428951891774997],[119,108,69,-0.08295278516898806],[119,108,70,-0.08248759094686509],[119,108,71,-0.08114439880666538],[119,108,72,-0.07884475227661118],[119,108,73,-0.08259391805974142],[119,108,74,-0.08397550396483465],[119,108,75,-0.09090697495609462],[119,108,76,-0.09428339989200982],[119,108,77,-0.09969281347368225],[119,108,78,-0.10969046971133387],[119,108,79,-0.11937778581999194],[119,109,64,-0.10599141743395236],[119,109,65,-0.11087877254279863],[119,109,66,-0.10813131818883705],[119,109,67,-0.10416094792571541],[119,109,68,-0.09693742310276882],[119,109,69,-0.09605771030260724],[119,109,70,-0.09518332706674063],[119,109,71,-0.09484457275978252],[119,109,72,-0.09200474376854928],[119,109,73,-0.09326743031083892],[119,109,74,-0.0944580244778256],[119,109,75,-0.10182157042070988],[119,109,76,-0.10441154365890268],[119,109,77,-0.10738977846294898],[119,109,78,-0.11577552620235959],[119,109,79,-0.11978326998281844],[119,110,64,-0.10544195803400407],[119,110,65,-0.11071871254429055],[119,110,66,-0.1076767589537481],[119,110,67,-0.10632610004695259],[119,110,68,-0.0995914769123281],[119,110,69,-0.09803994378006003],[119,110,70,-0.0990879886056062],[119,110,71,-0.09747248414334478],[119,110,72,-0.09523901047121269],[119,110,73,-0.09670743858524199],[119,110,74,-0.09726833084008306],[119,110,75,-0.10352195482201038],[119,110,76,-0.10543989015992761],[119,110,77,-0.10791376453255838],[119,110,78,-0.11533545489892762],[119,110,79,-0.12076962355746686],[119,111,64,-0.09695232416609503],[119,111,65,-0.1015725479162859],[119,111,66,-0.10138359012492174],[119,111,67,-0.10210765599387678],[119,111,68,-0.09837734271495421],[119,111,69,-0.09529964684544656],[119,111,70,-0.09602581820319059],[119,111,71,-0.0933817860214323],[119,111,72,-0.09198992657357784],[119,111,73,-0.09517329265390187],[119,111,74,-0.095999063089974],[119,111,75,-0.10329985636318711],[119,111,76,-0.10371449412832488],[119,111,77,-0.10649347989954963],[119,111,78,-0.11269869783980913],[119,111,79,-0.11977460294054243],[119,112,64,-0.09977694614148085],[119,112,65,-0.10385550290665174],[119,112,66,-0.10382438641194837],[119,112,67,-0.10436755680102601],[119,112,68,-0.10052777889109317],[119,112,69,-0.09851602071561055],[119,112,70,-0.09830918409788815],[119,112,71,-0.09344292286045132],[119,112,72,-0.09250842024528391],[119,112,73,-0.09767678531666726],[119,112,74,-0.10159978886788634],[119,112,75,-0.10465051792941826],[119,112,76,-0.10705083478129321],[119,112,77,-0.10597663901980611],[119,112,78,-0.1134368982693569],[119,112,79,-0.12140363604654325],[119,113,64,-0.09874798622825297],[119,113,65,-0.10398297565931261],[119,113,66,-0.10508862417650429],[119,113,67,-0.10744938028608292],[119,113,68,-0.10364615483182929],[119,113,69,-0.10016427881660185],[119,113,70,-0.09908678427700149],[119,113,71,-0.0927053798135449],[119,113,72,-0.0955282332965548],[119,113,73,-0.10115309512367049],[119,113,74,-0.10409948662828053],[119,113,75,-0.10832277950378572],[119,113,76,-0.1092324282106512],[119,113,77,-0.10988714732775418],[119,113,78,-0.11450473742724489],[119,113,79,-0.12288310719295482],[119,114,64,-0.10283143028368293],[119,114,65,-0.10647401671895028],[119,114,66,-0.1113710834400321],[119,114,67,-0.11467858567052762],[119,114,68,-0.11359431318416298],[119,114,69,-0.10821926193179963],[119,114,70,-0.10600322468341694],[119,114,71,-0.09898453959672959],[119,114,72,-0.10217239504946697],[119,114,73,-0.1093111558169793],[119,114,74,-0.11537822983552799],[119,114,75,-0.11452518168915019],[119,114,76,-0.11336108616535345],[119,114,77,-0.11701005901209718],[119,114,78,-0.12172147270547758],[119,114,79,-0.12830422825822826],[119,115,64,-0.09974277605360918],[119,115,65,-0.10133571977052652],[119,115,66,-0.10962001856474786],[119,115,67,-0.11493467353077587],[119,115,68,-0.11572697031643597],[119,115,69,-0.11054958341984789],[119,115,70,-0.1065075771771671],[119,115,71,-0.10385517546388737],[119,115,72,-0.10627309850860622],[119,115,73,-0.11058570094223806],[119,115,74,-0.1173779567200753],[119,115,75,-0.1177445852554892],[119,115,76,-0.11546422199893752],[119,115,77,-0.12001057474834723],[119,115,78,-0.12511197123240653],[119,115,79,-0.12910307401097673],[119,116,64,-0.07424716504153692],[119,116,65,-0.07877028138234335],[119,116,66,-0.0899010427003321],[119,116,67,-0.09896008207459854],[119,116,68,-0.10317541510780148],[119,116,69,-0.10388928921754267],[119,116,70,-0.103290203395094],[119,116,71,-0.10543892470381266],[119,116,72,-0.10798386681876132],[119,116,73,-0.10906840755233133],[119,116,74,-0.11488062227521985],[119,116,75,-0.11503366015955804],[119,116,76,-0.11382347137383474],[119,116,77,-0.11624798281461804],[119,116,78,-0.11731654409586123],[119,116,79,-0.11660330374934366],[119,117,64,-0.07414604166469843],[119,117,65,-0.08078765636920238],[119,117,66,-0.09083742733763323],[119,117,67,-0.100531319360631],[119,117,68,-0.10524863242172158],[119,117,69,-0.10793065103498566],[119,117,70,-0.10805385662192596],[119,117,71,-0.11095617177236682],[119,117,72,-0.11476153263920452],[119,117,73,-0.11596061934773186],[119,117,74,-0.11632796445255097],[119,117,75,-0.11757136245475176],[119,117,76,-0.11964527111012518],[119,117,77,-0.12044460932357544],[119,117,78,-0.11564817480883455],[119,117,79,-0.11205325443453835],[119,118,64,-0.07264492724717783],[119,118,65,-0.08234930369784475],[119,118,66,-0.08976447236805854],[119,118,67,-0.09787198019762382],[119,118,68,-0.1068138496965235],[119,118,69,-0.10639409572257394],[119,118,70,-0.10618041825565824],[119,118,71,-0.11041547171462006],[119,118,72,-0.11413626404363203],[119,118,73,-0.11642516899538746],[119,118,74,-0.11589385472078875],[119,118,75,-0.11739229951362912],[119,118,76,-0.11966261280367833],[119,118,77,-0.12294845832872885],[119,118,78,-0.11791952956727747],[119,118,79,-0.11261791612841787],[119,119,64,-0.06509617061165154],[119,119,65,-0.07676409533483203],[119,119,66,-0.08216540043219477],[119,119,67,-0.09094347038176108],[119,119,68,-0.099173950381796],[119,119,69,-0.10041184763948455],[119,119,70,-0.10322366182117586],[119,119,71,-0.10823885120624416],[119,119,72,-0.1099699784663842],[119,119,73,-0.11191326774769916],[119,119,74,-0.11173799441419156],[119,119,75,-0.11652239444650886],[119,119,76,-0.12136544169115175],[119,119,77,-0.1211276453339982],[119,119,78,-0.11766154812031271],[119,119,79,-0.11388351280649048],[119,120,64,-0.0680219755185432],[119,120,65,-0.07683757702957411],[119,120,66,-0.08197576339114795],[119,120,67,-0.08694363649132389],[119,120,68,-0.09524032764709192],[119,120,69,-0.10121085035127375],[119,120,70,-0.1026600811829834],[119,120,71,-0.1059583577746253],[119,120,72,-0.10777960362394005],[119,120,73,-0.11008371070179399],[119,120,74,-0.11283833289972595],[119,120,75,-0.11737005748992238],[119,120,76,-0.12203736734351953],[119,120,77,-0.12175266946698204],[119,120,78,-0.11965702911111813],[119,120,79,-0.11415853514782809],[119,121,64,-0.06571421448723291],[119,121,65,-0.07118830808319328],[119,121,66,-0.07444161586374233],[119,121,67,-0.07707377534348228],[119,121,68,-0.08416415374086102],[119,121,69,-0.0940569403591473],[119,121,70,-0.0963706297248228],[119,121,71,-0.09594797756024928],[119,121,72,-0.09482680788334091],[119,121,73,-0.09888401619668474],[119,121,74,-0.10550145373256781],[119,121,75,-0.10866455523328925],[119,121,76,-0.11428227291157694],[119,121,77,-0.12070157114833696],[119,121,78,-0.1250935205719324],[119,121,79,-0.12458847775927517],[119,122,64,-0.06785538579582606],[119,122,65,-0.07295746191691402],[119,122,66,-0.07790937175113485],[119,122,67,-0.08355452562041539],[119,122,68,-0.08838816709778444],[119,122,69,-0.10058282106422546],[119,122,70,-0.10294951412104159],[119,122,71,-0.10163434387595646],[119,122,72,-0.10011568911694521],[119,122,73,-0.10489305812009297],[119,122,74,-0.11320123906113352],[119,122,75,-0.11441595007954626],[119,122,76,-0.1212755133770822],[119,122,77,-0.12775456931149415],[119,122,78,-0.1313319364428654],[119,122,79,-0.1305472735512652],[119,123,64,-0.062282203190931175],[119,123,65,-0.06977749848993318],[119,123,66,-0.07685095074171297],[119,123,67,-0.08392092476747909],[119,123,68,-0.09115887738616732],[119,123,69,-0.10045988454509913],[119,123,70,-0.103674308516305],[119,123,71,-0.10386957288765598],[119,123,72,-0.10339158599201351],[119,123,73,-0.1076800906278864],[119,123,74,-0.11545259445246248],[119,123,75,-0.11627805486929128],[119,123,76,-0.12134553189129543],[119,123,77,-0.12932723888955325],[119,123,78,-0.13397185034532078],[119,123,79,-0.13477369588927732],[119,124,64,-0.0587391115720723],[119,124,65,-0.0658993786879041],[119,124,66,-0.0752359208773366],[119,124,67,-0.08232688763965919],[119,124,68,-0.0908596972424373],[119,124,69,-0.09950629058215607],[119,124,70,-0.10047567477693181],[119,124,71,-0.10227854170632558],[119,124,72,-0.10471326358254515],[119,124,73,-0.11071719792222057],[119,124,74,-0.11509568403354246],[119,124,75,-0.11780262334856693],[119,124,76,-0.12134834373761966],[119,124,77,-0.1302120847169551],[119,124,78,-0.1380084441724769],[119,124,79,-0.1397338604794095],[119,125,64,-0.05626206178611169],[119,125,65,-0.06460935193218167],[119,125,66,-0.07347355032769784],[119,125,67,-0.08290761270996075],[119,125,68,-0.09219570806383927],[119,125,69,-0.09893269972243779],[119,125,70,-0.10122459937049727],[119,125,71,-0.10373807881869249],[119,125,72,-0.10603081008836153],[119,125,73,-0.11162819589388519],[119,125,74,-0.11706537125293628],[119,125,75,-0.1191493978723661],[119,125,76,-0.1221963812236056],[119,125,77,-0.13286992158196195],[119,125,78,-0.13932506482451323],[119,125,79,-0.14083797505060608],[119,126,64,-0.05395437667287971],[119,126,65,-0.0622598069298686],[119,126,66,-0.07252573170023796],[119,126,67,-0.08180838026659591],[119,126,68,-0.092680303999497],[119,126,69,-0.10023503048824431],[119,126,70,-0.10431915445392437],[119,126,71,-0.10538154017970945],[119,126,72,-0.10910741669185461],[119,126,73,-0.11236065738652723],[119,126,74,-0.1197653876652472],[119,126,75,-0.12159359084931387],[119,126,76,-0.12552588040136414],[119,126,77,-0.13321595347483145],[119,126,78,-0.1398885640206974],[119,126,79,-0.14346098816830058],[119,127,64,-0.045462699930087766],[119,127,65,-0.05416039898729653],[119,127,66,-0.06562332104740827],[119,127,67,-0.07619115948579698],[119,127,68,-0.08570786060491362],[119,127,69,-0.09676609940598227],[119,127,70,-0.10260423071623885],[119,127,71,-0.10532645967025664],[119,127,72,-0.10841388621884981],[119,127,73,-0.11098872510640803],[119,127,74,-0.11933588483484373],[119,127,75,-0.12556324756943962],[119,127,76,-0.12885879581463752],[119,127,77,-0.13546053956246634],[119,127,78,-0.1407599181733017],[119,127,79,-0.14373487012262592],[119,128,64,-0.046449457970568],[119,128,65,-0.05414951474739538],[119,128,66,-0.06621445632883301],[119,128,67,-0.0746492173786567],[119,128,68,-0.08447383752965794],[119,128,69,-0.09753497303256976],[119,128,70,-0.10479109490108779],[119,128,71,-0.1093505285691774],[119,128,72,-0.11157359857338295],[119,128,73,-0.11221114745985472],[119,128,74,-0.12036191306717367],[119,128,75,-0.12849945030310156],[119,128,76,-0.13472871953557644],[119,128,77,-0.13722982569587153],[119,128,78,-0.14107614553375608],[119,128,79,-0.142328554271447],[119,129,64,-0.04049142697174233],[119,129,65,-0.05297904069442885],[119,129,66,-0.06571394022448036],[119,129,67,-0.07663277294245818],[119,129,68,-0.08863197616291697],[119,129,69,-0.09855785594896009],[119,129,70,-0.10596485449945364],[119,129,71,-0.11473958921402654],[119,129,72,-0.11400578628148532],[119,129,73,-0.11673028621271278],[119,129,74,-0.12343957108379111],[119,129,75,-0.13409999854259286],[119,129,76,-0.13703481523533198],[119,129,77,-0.1338132994778512],[119,129,78,-0.13155274601887845],[119,129,79,-0.1306063662324368],[119,130,64,-0.04680796144656235],[119,130,65,-0.058319426956745614],[119,130,66,-0.07221303977146698],[119,130,67,-0.08267497295210116],[119,130,68,-0.09521583772716924],[119,130,69,-0.10422057383107723],[119,130,70,-0.11232158387223715],[119,130,71,-0.11908032092089343],[119,130,72,-0.12057847877517727],[119,130,73,-0.12680349506277894],[119,130,74,-0.15501125586738357],[119,130,75,-0.18643150080843077],[119,130,76,-0.18887156638031583],[119,130,77,-0.19985356700574225],[119,130,78,-0.21481064210125506],[119,130,79,-0.2749057796945329],[119,131,64,-0.04598640028076022],[119,131,65,-0.06094007750962213],[119,131,66,-0.07210671342850085],[119,131,67,-0.0835726602975794],[119,131,68,-0.09702149952274232],[119,131,69,-0.10732035058248876],[119,131,70,-0.11251036195048977],[119,131,71,-0.11926399381993173],[119,131,72,-0.12361589511914144],[119,131,73,-0.12977139549645192],[119,131,74,-0.1753586412283269],[119,131,75,-0.2042259287874223],[119,131,76,-0.2161615549436267],[119,131,77,-0.21369393883120744],[119,131,78,-0.23419575543580978],[119,131,79,-0.27844897418678694],[119,132,64,-0.035894454290203215],[119,132,65,-0.05085665547732319],[119,132,66,-0.06464815723339784],[119,132,67,-0.07797786921778854],[119,132,68,-0.09329792195939189],[119,132,69,-0.10383819139108727],[119,132,70,-0.11105007548536416],[119,132,71,-0.11576382196905664],[119,132,72,-0.12210609459581721],[119,132,73,-0.1354196566785079],[119,132,74,-0.18943664216741748],[119,132,75,-0.20605934088455438],[119,132,76,-0.22588747460184314],[119,132,77,-0.21734132335133366],[119,132,78,-0.2417587505413034],[119,132,79,-0.27760858695588453],[119,133,64,-0.0468918182488717],[119,133,65,-0.056934784254033026],[119,133,66,-0.06494056705181593],[119,133,67,-0.07563392458333958],[119,133,68,-0.0936259848478917],[119,133,69,-0.10384869234205549],[119,133,70,-0.11038972684202722],[119,133,71,-0.11868843921675754],[119,133,72,-0.1273696397997351],[119,133,73,-0.16480618325656918],[119,133,74,-0.20211046001469482],[119,133,75,-0.20716002707097134],[119,133,76,-0.22164334829443066],[119,133,77,-0.22309935940762954],[119,133,78,-0.25261235740551713],[119,133,79,-0.2715998123831396],[119,134,64,-0.04897340597910159],[119,134,65,-0.05702690477664303],[119,134,66,-0.06362723134488747],[119,134,67,-0.07447199425928433],[119,134,68,-0.09231094261947285],[119,134,69,-0.10528713404758845],[119,134,70,-0.11322650477214663],[119,134,71,-0.11862007678379896],[119,134,72,-0.12807309312480963],[119,134,73,-0.17140691267325484],[119,134,74,-0.2016312240143197],[119,134,75,-0.21257360293181118],[119,134,76,-0.22870553247525768],[119,134,77,-0.24125002096026305],[119,134,78,-0.2755733570028309],[119,134,79,-0.2803808718092868],[119,135,64,-0.04231793191144335],[119,135,65,-0.053233760036940386],[119,135,66,-0.0613570719384514],[119,135,67,-0.07108229359678622],[119,135,68,-0.08826158304249966],[119,135,69,-0.10081081413867579],[119,135,70,-0.10962961546999626],[119,135,71,-0.11669889918260404],[119,135,72,-0.12605343747399833],[119,135,73,-0.16126161959611623],[119,135,74,-0.18663868624180435],[119,135,75,-0.19860302719063283],[119,135,76,-0.21668466523064822],[119,135,77,-0.23092758099178923],[119,135,78,-0.2643341149748698],[119,135,79,-0.27245897163647836],[119,136,64,-0.04312714404887108],[119,136,65,-0.051822657607103646],[119,136,66,-0.06247055352921723],[119,136,67,-0.07249730590438597],[119,136,68,-0.08729765793146817],[119,136,69,-0.10031378851176362],[119,136,70,-0.10902798923800555],[119,136,71,-0.11664051021410983],[119,136,72,-0.12510041185526677],[119,136,73,-0.1673296478265413],[119,136,74,-0.1914403474774755],[119,136,75,-0.20206714371378443],[119,136,76,-0.22391492526680595],[119,136,77,-0.23763037805338957],[119,136,78,-0.2742629809848676],[119,136,79,-0.27978712118052085],[119,137,64,-0.0427035881117637],[119,137,65,-0.0514465359556229],[119,137,66,-0.06383848763474614],[119,137,67,-0.07323405956619804],[119,137,68,-0.08711868445292378],[119,137,69,-0.10049460263258018],[119,137,70,-0.1096418369204865],[119,137,71,-0.11563063434994318],[119,137,72,-0.12904519364734812],[119,137,73,-0.16214672153372278],[119,137,74,-0.1810412991163694],[119,137,75,-0.1866109084458682],[119,137,76,-0.20354595916762175],[119,137,77,-0.2140361981765589],[119,137,78,-0.24375881862889037],[119,137,79,-0.2660508429071959],[119,138,64,-0.049611797354369824],[119,138,65,-0.05900004960444233],[119,138,66,-0.06839728466271006],[119,138,67,-0.07882230178388022],[119,138,68,-0.09242598654344944],[119,138,69,-0.10743236981334334],[119,138,70,-0.11639476062799013],[119,138,71,-0.12264043945800979],[119,138,72,-0.12818001530273673],[119,138,73,-0.15323095924573193],[119,138,74,-0.1707034709204757],[119,138,75,-0.1753570731169617],[119,138,76,-0.18721541546442644],[119,138,77,-0.19783088990765763],[119,138,78,-0.22115559998987355],[119,138,79,-0.2401645316772711],[119,139,64,-0.050284763768921416],[119,139,65,-0.05918156117517415],[119,139,66,-0.07027334865361407],[119,139,67,-0.08071291553754947],[119,139,68,-0.0940117049004186],[119,139,69,-0.10785011700097591],[119,139,70,-0.11871442185509695],[119,139,71,-0.12368143099937695],[119,139,72,-0.13261100525415268],[119,139,73,-0.15760435944554257],[119,139,74,-0.17973585209236617],[119,139,75,-0.18956526608190025],[119,139,76,-0.19901410548295262],[119,139,77,-0.21229193383191408],[119,139,78,-0.23318184410880566],[119,139,79,-0.24579506798133657],[119,140,64,-0.06113165075289216],[119,140,65,-0.06871578996536919],[119,140,66,-0.07898482208527162],[119,140,67,-0.08980827982218259],[119,140,68,-0.09583020273248768],[119,140,69,-0.1053916919733983],[119,140,70,-0.11454841498373149],[119,140,71,-0.11847173737939738],[119,140,72,-0.1259653975440865],[119,140,73,-0.150227791761049],[119,140,74,-0.1729851534919692],[119,140,75,-0.18607450449589386],[119,140,76,-0.1984495602190294],[119,140,77,-0.20909001844891592],[119,140,78,-0.226468350941997],[119,140,79,-0.24043307291733593],[119,141,64,-0.06047967181023244],[119,141,65,-0.0715242498856403],[119,141,66,-0.08718936848525669],[119,141,67,-0.09826397921329164],[119,141,68,-0.10536403713222174],[119,141,69,-0.11243665955164406],[119,141,70,-0.12017804426267917],[119,141,71,-0.12217454063247196],[119,141,72,-0.1308974174971609],[119,141,73,-0.14661052142736836],[119,141,74,-0.16246531371767325],[119,141,75,-0.17240066827810782],[119,141,76,-0.1852721509718012],[119,141,77,-0.19113853959573815],[119,141,78,-0.20433176876250186],[119,141,79,-0.227869308791121],[119,142,64,-0.0628380030245647],[119,142,65,-0.07327155293894774],[119,142,66,-0.0886100189739902],[119,142,67,-0.10139375534612077],[119,142,68,-0.1100851533537795],[119,142,69,-0.1146811460304992],[119,142,70,-0.11881956028159169],[119,142,71,-0.12053797701249394],[119,142,72,-0.13092389869942664],[119,142,73,-0.14434002485920422],[119,142,74,-0.1599038506823038],[119,142,75,-0.16849900641746732],[119,142,76,-0.1802856651704135],[119,142,77,-0.1861896796526513],[119,142,78,-0.2002919922172154],[119,142,79,-0.22818024439929296],[119,143,64,-0.058370281965906434],[119,143,65,-0.06896551478433766],[119,143,66,-0.0852327418080338],[119,143,67,-0.1000474813803155],[119,143,68,-0.10734795709783906],[119,143,69,-0.11201471716030935],[119,143,70,-0.11479328646475893],[119,143,71,-0.11585691142390661],[119,143,72,-0.1211911151988496],[119,143,73,-0.13573145290545416],[119,143,74,-0.14940471722343046],[119,143,75,-0.15772378420128103],[119,143,76,-0.1681477243406462],[119,143,77,-0.17157678892592954],[119,143,78,-0.18628525092068657],[119,143,79,-0.21548119895631385],[119,144,64,-0.060322381621026704],[119,144,65,-0.07028567881450604],[119,144,66,-0.0856770058336011],[119,144,67,-0.09985926153583113],[119,144,68,-0.10520707380069547],[119,144,69,-0.1103748164127267],[119,144,70,-0.11404458340083357],[119,144,71,-0.11354212433766334],[119,144,72,-0.12107928954263969],[119,144,73,-0.14022227109804408],[119,144,74,-0.15421737923615997],[119,144,75,-0.1622479841508942],[119,144,76,-0.1727689066769556],[119,144,77,-0.17924577658287003],[119,144,78,-0.19483940908364655],[119,144,79,-0.2250418705533519],[119,145,64,-0.059687854890325506],[119,145,65,-0.0658790766233418],[119,145,66,-0.07892727860044081],[119,145,67,-0.09069053550897807],[119,145,68,-0.09347211715755696],[119,145,69,-0.09878038276245735],[119,145,70,-0.10451764097933378],[119,145,71,-0.10639129306191264],[119,145,72,-0.114189175109978],[119,145,73,-0.1237242832121433],[119,145,74,-0.13212008165034123],[119,145,75,-0.13723278820837634],[119,145,76,-0.1460822297204402],[119,145,77,-0.15311902957804557],[119,145,78,-0.15574789050585777],[119,145,79,-0.1749359449626867],[119,146,64,-0.0653285921861376],[119,146,65,-0.0726724405176394],[119,146,66,-0.0856204985586273],[119,146,67,-0.09492620036662382],[119,146,68,-0.0981717668975417],[119,146,69,-0.10398114352003812],[119,146,70,-0.10935042230756786],[119,146,71,-0.11171500007806295],[119,146,72,-0.11946931260135585],[119,146,73,-0.12746278194200727],[119,146,74,-0.13584529735126757],[119,146,75,-0.14209620574884047],[119,146,76,-0.15143398122559223],[119,146,77,-0.1580501026744681],[119,146,78,-0.1633995179497582],[119,146,79,-0.17770300719645762],[119,147,64,-0.06610480475028566],[119,147,65,-0.07274546715143537],[119,147,66,-0.08659604927061071],[119,147,67,-0.09436559866259261],[119,147,68,-0.09888943345674472],[119,147,69,-0.10526002957490538],[119,147,70,-0.10904213714156838],[119,147,71,-0.11333490404093308],[119,147,72,-0.11878685990620841],[119,147,73,-0.12666842296326586],[119,147,74,-0.13423761314913116],[119,147,75,-0.14320014343211324],[119,147,76,-0.14895423337097569],[119,147,77,-0.15692763440407775],[119,147,78,-0.16502350097720084],[119,147,79,-0.14269710786124745],[119,148,64,-0.03748628336188832],[119,148,65,-0.045089827842252905],[119,148,66,-0.0608375385053552],[119,148,67,-0.06867296898197031],[119,148,68,-0.07472073150089176],[119,148,69,-0.08216726545920205],[119,148,70,-0.08607287362918284],[119,148,71,-0.09060211441783114],[119,148,72,-0.09372116594945457],[119,148,73,-0.1024580867436384],[119,148,74,-0.1104535435786152],[119,148,75,-0.118317038994874],[119,148,76,-0.12033575436303778],[119,148,77,-0.12832500278558778],[119,148,78,-0.10907522888067764],[119,148,79,-0.08914995206860543],[119,149,64,-0.037377034434557505],[119,149,65,-0.04768818150030296],[119,149,66,-0.06437380229168856],[119,149,67,-0.0713559874002859],[119,149,68,-0.07767404984853861],[119,149,69,-0.08240952150738556],[119,149,70,-0.08533461640854394],[119,149,71,-0.09159691458309016],[119,149,72,-0.09625095024871702],[119,149,73,-0.10482981163030651],[119,149,74,-0.11351909626153338],[119,149,75,-0.12205003268241296],[119,149,76,-0.12220689565934527],[119,149,77,-0.129360891224374],[119,149,78,-0.11561683511806119],[119,149,79,-0.08613330881318912],[119,150,64,-0.03927825007157741],[119,150,65,-0.05004906907365134],[119,150,66,-0.06815271025902928],[119,150,67,-0.07451430495723516],[119,150,68,-0.08048600583479736],[119,150,69,-0.08482202158569283],[119,150,70,-0.08626032490794325],[119,150,71,-0.09302666729514722],[119,150,72,-0.09880544383466598],[119,150,73,-0.10655850416149948],[119,150,74,-0.11791457025565487],[119,150,75,-0.12277818288728337],[119,150,76,-0.1257853395716673],[119,150,77,-0.12990677527151498],[119,150,78,-0.12164570833493031],[119,150,79,-0.08682328928794578],[119,151,64,-0.036366929173057866],[119,151,65,-0.05080336182494781],[119,151,66,-0.06596618080817673],[119,151,67,-0.07227930473469708],[119,151,68,-0.07802350164140068],[119,151,69,-0.08380075800433451],[119,151,70,-0.0867607010896288],[119,151,71,-0.09230777616866717],[119,151,72,-0.09885068538467925],[119,151,73,-0.10819926156011535],[119,151,74,-0.11932976187223406],[119,151,75,-0.12501615124536736],[119,151,76,-0.13036259886355595],[119,151,77,-0.13546513669042753],[119,151,78,-0.13590587581575442],[119,151,79,-0.09622697608697386],[119,152,64,-0.0425512615616396],[119,152,65,-0.055038345334445384],[119,152,66,-0.06975338052820837],[119,152,67,-0.07397534984757376],[119,152,68,-0.07794152455108505],[119,152,69,-0.08664844384856271],[119,152,70,-0.08926598666317939],[119,152,71,-0.09197026363265083],[119,152,72,-0.09948808402783582],[119,152,73,-0.108457446045777],[119,152,74,-0.11831494411485982],[119,152,75,-0.1257097519961194],[119,152,76,-0.13226679531932284],[119,152,77,-0.1373167856623665],[119,152,78,-0.13583137334060125],[119,152,79,-0.09572699894526546],[119,153,64,-0.04131388057881625],[119,153,65,-0.059333133411681754],[119,153,66,-0.0755775789341209],[119,153,67,-0.08161389516545706],[119,153,68,-0.08676995446367655],[119,153,69,-0.0960284284143011],[119,153,70,-0.09931493886717184],[119,153,71,-0.10004015819411124],[119,153,72,-0.1040206126778267],[119,153,73,-0.11038058677587942],[119,153,74,-0.11832078237779908],[119,153,75,-0.12543519603032172],[119,153,76,-0.13071922264189037],[119,153,77,-0.13571940446599348],[119,153,78,-0.12317143162885433],[119,153,79,-0.08678946293436611],[119,154,64,-0.04907738518924717],[119,154,65,-0.06581578413567007],[119,154,66,-0.08347566755410114],[119,154,67,-0.08860837910887016],[119,154,68,-0.09575427189609581],[119,154,69,-0.10161643416935245],[119,154,70,-0.10552927891256281],[119,154,71,-0.10672748378783285],[119,154,72,-0.11122208241229556],[119,154,73,-0.11531963106394515],[119,154,74,-0.12286478617416871],[119,154,75,-0.13057141795350252],[119,154,76,-0.13505442092415257],[119,154,77,-0.1401114795557215],[119,154,78,-0.13662128894699535],[119,154,79,-0.09922492471154376],[119,155,64,-0.052155564342227075],[119,155,65,-0.06680476002920732],[119,155,66,-0.08436078886240972],[119,155,67,-0.09184373966506737],[119,155,68,-0.09685187261313577],[119,155,69,-0.10273813497078293],[119,155,70,-0.10433772230046293],[119,155,71,-0.10701032612857136],[119,155,72,-0.1120520401886696],[119,155,73,-0.11408164253578647],[119,155,74,-0.12117249039181982],[119,155,75,-0.127982492064958],[119,155,76,-0.13405757952578506],[119,155,77,-0.1384555676984199],[119,155,78,-0.1338249703014707],[119,155,79,-0.10182867168242107],[119,156,64,-0.055939308046373044],[119,156,65,-0.0721266472533961],[119,156,66,-0.08490655658920962],[119,156,67,-0.09422585597738982],[119,156,68,-0.09863408454541259],[119,156,69,-0.10299462891685209],[119,156,70,-0.10733523960586813],[119,156,71,-0.10898639505686139],[119,156,72,-0.11320982534171839],[119,156,73,-0.11801141313050492],[119,156,74,-0.12040882600743137],[119,156,75,-0.1302976274559575],[119,156,76,-0.13432348901471708],[119,156,77,-0.13856519225838873],[119,156,78,-0.13591064398175937],[119,156,79,-0.10538338846001331],[119,157,64,-0.06198661828919715],[119,157,65,-0.07705614540720274],[119,157,66,-0.08279934206450407],[119,157,67,-0.08729335242523241],[119,157,68,-0.08735740725996344],[119,157,69,-0.09402143496103003],[119,157,70,-0.09821199664901357],[119,157,71,-0.1028574395067561],[119,157,72,-0.10719566436153236],[119,157,73,-0.11658952042509803],[119,157,74,-0.12104419128471107],[119,157,75,-0.12944404253725103],[119,157,76,-0.13449606502049433],[119,157,77,-0.14115997578248857],[119,157,78,-0.14051786980845388],[119,157,79,-0.10978438502477561],[119,158,64,-0.06386030594954259],[119,158,65,-0.07639542890038384],[119,158,66,-0.08079761225607843],[119,158,67,-0.08517713834691257],[119,158,68,-0.08580004821074803],[119,158,69,-0.09174126157669941],[119,158,70,-0.09760253936090357],[119,158,71,-0.1020679278375962],[119,158,72,-0.10373662173533046],[119,158,73,-0.11357485660141543],[119,158,74,-0.12281404999732572],[119,158,75,-0.12991382112730016],[119,158,76,-0.13355040432553922],[119,158,77,-0.14046030283170444],[119,158,78,-0.1303918305812961],[119,158,79,-0.10302206914142734],[119,159,64,-0.12837134273105782],[119,159,65,-0.13178377344005393],[119,159,66,-0.1307493315519264],[119,159,67,-0.12815841190319296],[119,159,68,-0.12121511529518204],[119,159,69,-0.12089295782614473],[119,159,70,-0.11788774863866516],[119,159,71,-0.11360832704970572],[119,159,72,-0.10895138575025998],[119,159,73,-0.10939143722986576],[119,159,74,-0.11125524182934125],[119,159,75,-0.11099099127709763],[119,159,76,-0.11017537044671977],[119,159,77,-0.10556834410486403],[119,159,78,-0.09881557252518629],[119,159,79,-0.07007832942699815],[119,160,64,-0.1264348061110595],[119,160,65,-0.1274665008642662],[119,160,66,-0.12876431861244825],[119,160,67,-0.1272509621150781],[119,160,68,-0.1190193828515208],[119,160,69,-0.11968194584948023],[119,160,70,-0.1148719985762262],[119,160,71,-0.10908120392638462],[119,160,72,-0.10685541255559677],[119,160,73,-0.10682990799972904],[119,160,74,-0.1091437174952711],[119,160,75,-0.10747716670783061],[119,160,76,-0.10863285760831808],[119,160,77,-0.10508734032972432],[119,160,78,-0.09154970016097595],[119,160,79,-0.06481053853611395],[119,161,64,-0.12334775828887329],[119,161,65,-0.1241704021489172],[119,161,66,-0.12684337293335546],[119,161,67,-0.12798367420106438],[119,161,68,-0.11828290825272654],[119,161,69,-0.11799791351906495],[119,161,70,-0.11254805016609216],[119,161,71,-0.10671050430666866],[119,161,72,-0.10347471113750686],[119,161,73,-0.10628469450418615],[119,161,74,-0.10807698810845211],[119,161,75,-0.10435040700327936],[119,161,76,-0.1052280938468382],[119,161,77,-0.10563089675997933],[119,161,78,-0.09838574677295392],[119,161,79,-0.06775498983005951],[119,162,64,-0.12626696353879294],[119,162,65,-0.1265387314463574],[119,162,66,-0.13138530608386467],[119,162,67,-0.13352913383029133],[119,162,68,-0.1255682048823919],[119,162,69,-0.12078113138103524],[119,162,70,-0.11358615505828003],[119,162,71,-0.10881789795890816],[119,162,72,-0.10599944184575576],[119,162,73,-0.10979043164321367],[119,162,74,-0.11027619592989556],[119,162,75,-0.10665546513495888],[119,162,76,-0.10607871172552442],[119,162,77,-0.10550146503292106],[119,162,78,-0.1014595902707274],[119,162,79,-0.07813165318086904],[119,163,64,-0.12400154828884749],[119,163,65,-0.1269092393806471],[119,163,66,-0.13180754865888428],[119,163,67,-0.13284400749027087],[119,163,68,-0.12656062642902965],[119,163,69,-0.11830498069477464],[119,163,70,-0.11167307110281541],[119,163,71,-0.1057262447116169],[119,163,72,-0.10433604584938637],[119,163,73,-0.10772056597976087],[119,163,74,-0.10630498456565307],[119,163,75,-0.10298210636067545],[119,163,76,-0.09997867834575247],[119,163,77,-0.10137762400104235],[119,163,78,-0.09874256727607351],[119,163,79,-0.07480329845429523],[119,164,64,-0.09916314291992881],[119,164,65,-0.10106341811232511],[119,164,66,-0.10306098748563483],[119,164,67,-0.10461409599039474],[119,164,68,-0.09811967293810282],[119,164,69,-0.09075907335106356],[119,164,70,-0.08347089294156994],[119,164,71,-0.07694574488396283],[119,164,72,-0.0764049322232956],[119,164,73,-0.07742639808655882],[119,164,74,-0.07642265223099973],[119,164,75,-0.07148438297318643],[119,164,76,-0.06937076694569953],[119,164,77,-0.07433994765659455],[119,164,78,-0.07346161519450581],[119,164,79,-0.06329647011097222],[119,165,64,-0.08598610020199053],[119,165,65,-0.09582521406885995],[119,165,66,-0.10544562052640823],[119,165,67,-0.10663991663223425],[119,165,68,-0.10243430117535077],[119,165,69,-0.09652413446629314],[119,165,70,-0.08877860872205884],[119,165,71,-0.08045830563214],[119,165,72,-0.07141012003029243],[119,165,73,-0.06752521267119437],[119,165,74,-0.0629111767567892],[119,165,75,-0.05799204687804446],[119,165,76,-0.05759484964269424],[119,165,77,-0.06499294552334053],[119,165,78,-0.07241285034164702],[119,165,79,-0.06460462002859677],[119,166,64,-0.08076743360106171],[119,166,65,-0.09155659149156732],[119,166,66,-0.10212438233635007],[119,166,67,-0.10455099762543874],[119,166,68,-0.09957431613320453],[119,166,69,-0.09361612889909784],[119,166,70,-0.08858932791764254],[119,166,71,-0.079229081193917],[119,166,72,-0.0681021495662205],[119,166,73,-0.06289688465240609],[119,166,74,-0.05791540130027813],[119,166,75,-0.055002282800543395],[119,166,76,-0.05543870351494025],[119,166,77,-0.06041802427883633],[119,166,78,-0.07009000299861518],[119,166,79,-0.06165133362188788],[119,167,64,-0.07195264233028273],[119,167,65,-0.08426476031937703],[119,167,66,-0.09491375318297127],[119,167,67,-0.0956043588398052],[119,167,68,-0.09378647332568657],[119,167,69,-0.08939789456230682],[119,167,70,-0.0827547343227474],[119,167,71,-0.07492578025101615],[119,167,72,-0.06669062004423851],[119,167,73,-0.061039374525510164],[119,167,74,-0.0570549529864099],[119,167,75,-0.054600190578897326],[119,167,76,-0.05408338781427072],[119,167,77,-0.05902259380831526],[119,167,78,-0.0696143198929054],[119,167,79,-0.06701795663087277],[119,168,64,-0.07088191492993967],[119,168,65,-0.08074946491165044],[119,168,66,-0.08795351608075475],[119,168,67,-0.09091892394471787],[119,168,68,-0.0892626227371377],[119,168,69,-0.08534404617326503],[119,168,70,-0.07857045865151066],[119,168,71,-0.07240651952010621],[119,168,72,-0.06484942921099623],[119,168,73,-0.06142632308596647],[119,168,74,-0.05603801382075024],[119,168,75,-0.053866881623514655],[119,168,76,-0.05319382456641412],[119,168,77,-0.05660589963530469],[119,168,78,-0.06497675575035383],[119,168,79,-0.06119453229760069],[119,169,64,-0.07926335040410695],[119,169,65,-0.08235128574175708],[119,169,66,-0.08250503118819238],[119,169,67,-0.0788146152144645],[119,169,68,-0.07855769156947182],[119,169,69,-0.07375893565535221],[119,169,70,-0.06750400721106092],[119,169,71,-0.07002491576257815],[119,169,72,-0.06818364697930857],[119,169,73,-0.06831327899008668],[119,169,74,-0.06515440021452912],[119,169,75,-0.06207916858710218],[119,169,76,-0.05872534958979075],[119,169,77,-0.05568139427181618],[119,169,78,-0.05874740767357765],[119,169,79,-0.05539518178665269],[119,170,64,-0.08411818572104865],[119,170,65,-0.0870735610223426],[119,170,66,-0.08522369980669606],[119,170,67,-0.08069145898723043],[119,170,68,-0.08113916759585735],[119,170,69,-0.07634235856908886],[119,170,70,-0.06889301741216095],[119,170,71,-0.0722761229779739],[119,170,72,-0.07005260415288234],[119,170,73,-0.07124105880099696],[119,170,74,-0.06947782614419426],[119,170,75,-0.06651923958428568],[119,170,76,-0.06331393771759757],[119,170,77,-0.05924268726525911],[119,170,78,-0.058708610091944176],[119,170,79,-0.05764608624724716],[119,171,64,-0.08394798710833805],[119,171,65,-0.08550480337039218],[119,171,66,-0.08345775476301823],[119,171,67,-0.08055019714257658],[119,171,68,-0.08096087950051531],[119,171,69,-0.07390840539331683],[119,171,70,-0.06712891309048091],[119,171,71,-0.068762047281441],[119,171,72,-0.06966151111108261],[119,171,73,-0.07234253308570186],[119,171,74,-0.06816956584399343],[119,171,75,-0.06605032883119566],[119,171,76,-0.062488588333773146],[119,171,77,-0.05773402065556438],[119,171,78,-0.056730066301825144],[119,171,79,-0.05168356864756604],[119,172,64,-0.08373565151871773],[119,172,65,-0.08430930157491763],[119,172,66,-0.08296125174001785],[119,172,67,-0.0804067629494056],[119,172,68,-0.07987477734111331],[119,172,69,-0.07514863799614163],[119,172,70,-0.07141081038579244],[119,172,71,-0.0695019545867673],[119,172,72,-0.07172685584021729],[119,172,73,-0.07356603562821401],[119,172,74,-0.06822517375377053],[119,172,75,-0.06523297282876238],[119,172,76,-0.060691817684591934],[119,172,77,-0.056144336759147324],[119,172,78,-0.05260436746963311],[119,172,79,-0.04537381933248237],[119,173,64,-0.08298010876484563],[119,173,65,-0.08216807214934475],[119,173,66,-0.08063076564955815],[119,173,67,-0.07721443809469394],[119,173,68,-0.0776479805988678],[119,173,69,-0.0737577645528707],[119,173,70,-0.07086124617700337],[119,173,71,-0.06951300932546328],[119,173,72,-0.07035000911003375],[119,173,73,-0.06965318242782699],[119,173,74,-0.06674633976703728],[119,173,75,-0.06336869031224396],[119,173,76,-0.0590868503245222],[119,173,77,-0.053303231848931376],[119,173,78,-0.049657696568268],[119,173,79,-0.040940554922468717],[119,174,64,-0.08028446608443957],[119,174,65,-0.08097091737040822],[119,174,66,-0.07698635321713229],[119,174,67,-0.07419932547845597],[119,174,68,-0.07598963098010017],[119,174,69,-0.0735473547553446],[119,174,70,-0.07101446712654641],[119,174,71,-0.0701785711877082],[119,174,72,-0.06918208966892678],[119,174,73,-0.06772849751785476],[119,174,74,-0.06496641260108604],[119,174,75,-0.06264854478569515],[119,174,76,-0.05749730088309956],[119,174,77,-0.05219998678578587],[119,174,78,-0.04965339740819289],[119,174,79,-0.03755686276493469],[119,175,64,-0.07490325860344504],[119,175,65,-0.0750907877974097],[119,175,66,-0.06977761813074049],[119,175,67,-0.06645433623163371],[119,175,68,-0.06959308319958511],[119,175,69,-0.06978716819738079],[119,175,70,-0.06864311680631877],[119,175,71,-0.06629905763699663],[119,175,72,-0.06624906246073906],[119,175,73,-0.0665547946632769],[119,175,74,-0.06405376881033231],[119,175,75,-0.06272631938277828],[119,175,76,-0.058800867189004194],[119,175,77,-0.05461911209320319],[119,175,78,-0.05150063566076787],[119,175,79,-0.041201247676252294],[119,176,64,-0.07189735770410108],[119,176,65,-0.07111489403431828],[119,176,66,-0.06623833333963433],[119,176,67,-0.06390793436604618],[119,176,68,-0.06621532649354478],[119,176,69,-0.06747653692000767],[119,176,70,-0.06736383147165267],[119,176,71,-0.06417406667447181],[119,176,72,-0.06252312809847185],[119,176,73,-0.06391377730278847],[119,176,74,-0.06249775613705001],[119,176,75,-0.06154142776853871],[119,176,76,-0.058937557973897575],[119,176,77,-0.05496693724199637],[119,176,78,-0.05062015139636403],[119,176,79,-0.04211523842985781],[119,177,64,-0.07543288506761406],[119,177,65,-0.07043697730465229],[119,177,66,-0.065191335689979],[119,177,67,-0.06186863554798554],[119,177,68,-0.06459380487954128],[119,177,69,-0.06741647300550085],[119,177,70,-0.06762123121445532],[119,177,71,-0.06424975134626378],[119,177,72,-0.06484667748477155],[119,177,73,-0.06824641758003003],[119,177,74,-0.06383227826969834],[119,177,75,-0.06452034139450868],[119,177,76,-0.06327200267723518],[119,177,77,-0.05710476251206219],[119,177,78,-0.050491656568145665],[119,177,79,-0.04252126410188452],[119,178,64,-0.07836930206227373],[119,178,65,-0.07262172203584329],[119,178,66,-0.0658975238334211],[119,178,67,-0.06115731646972418],[119,178,68,-0.06730072510218608],[119,178,69,-0.07020900814946344],[119,178,70,-0.06971745911710904],[119,178,71,-0.06849357721454721],[119,178,72,-0.06723324356956614],[119,178,73,-0.0688447613134015],[119,178,74,-0.06508823762242458],[119,178,75,-0.06762893713688123],[119,178,76,-0.0680204571904633],[119,178,77,-0.059588467992911565],[119,178,78,-0.05542077428075641],[119,178,79,-0.048000079438639494],[119,179,64,-0.07424754411068492],[119,179,65,-0.07202375902620511],[119,179,66,-0.06341235801091694],[119,179,67,-0.058947968590896314],[119,179,68,-0.0643574747243622],[119,179,69,-0.06778432240077144],[119,179,70,-0.06888881762527277],[119,179,71,-0.06771147731857102],[119,179,72,-0.0648012225824653],[119,179,73,-0.0659415455725902],[119,179,74,-0.0642133964491022],[119,179,75,-0.06647209096882886],[119,179,76,-0.06740742709437021],[119,179,77,-0.058068330553608064],[119,179,78,-0.053359314812721034],[119,179,79,-0.050874814322597675],[119,180,64,-0.06382873390246238],[119,180,65,-0.06054820015593292],[119,180,66,-0.05241302556074882],[119,180,67,-0.048244530299385815],[119,180,68,-0.05308812806090044],[119,180,69,-0.05949770236096719],[119,180,70,-0.06327369812115238],[119,180,71,-0.06275983969383078],[119,180,72,-0.05897173147725345],[119,180,73,-0.057507967881124514],[119,180,74,-0.05315785274877202],[119,180,75,-0.05694472259652267],[119,180,76,-0.05716139817868403],[119,180,77,-0.05537186796810794],[119,180,78,-0.05039721969852009],[119,180,79,-0.04738146491563004],[119,181,64,-0.05500101429974777],[119,181,65,-0.050600726530839205],[119,181,66,-0.048909380833153354],[119,181,67,-0.04732743516539192],[119,181,68,-0.049538949768407115],[119,181,69,-0.05549174761663131],[119,181,70,-0.061418226874583925],[119,181,71,-0.05957742221907702],[119,181,72,-0.05303410612762404],[119,181,73,-0.046379740911292495],[119,181,74,-0.04240327365480967],[119,181,75,-0.04648416538829084],[119,181,76,-0.04779223544882981],[119,181,77,-0.06349915215368683],[119,181,78,-0.08935985051423426],[119,181,79,-0.0957574634016281],[119,182,64,-0.05441880966579157],[119,182,65,-0.051086307450152746],[119,182,66,-0.05061302047736512],[119,182,67,-0.04891680316096305],[119,182,68,-0.049524286290604916],[119,182,69,-0.05410453534577483],[119,182,70,-0.05937937695404555],[119,182,71,-0.05797163198948782],[119,182,72,-0.05107626503755128],[119,182,73,-0.044968670989129496],[119,182,74,-0.04298176726794112],[119,182,75,-0.045070515392240613],[119,182,76,-0.04589732278065098],[119,182,77,-0.06405529269417276],[119,182,78,-0.09521364790437013],[119,182,79,-0.10397707030240377],[119,183,64,-0.049666525169525175],[119,183,65,-0.04521976815044014],[119,183,66,-0.046992007040786314],[119,183,67,-0.048096762437515345],[119,183,68,-0.04826591406712666],[119,183,69,-0.05154703321101396],[119,183,70,-0.056210413081848036],[119,183,71,-0.05532157141104626],[119,183,72,-0.048501692212277965],[119,183,73,-0.04342997346086803],[119,183,74,-0.04336013575462954],[119,183,75,-0.04522662111474456],[119,183,76,-0.04676696437171731],[119,183,77,-0.05343975425643406],[119,183,78,-0.08491829120009838],[119,183,79,-0.0979559979986586],[119,184,64,-0.048787486692531995],[119,184,65,-0.04360762938621274],[119,184,66,-0.0451854245375589],[119,184,67,-0.049123673349645944],[119,184,68,-0.0487424059854582],[119,184,69,-0.05237707521246751],[119,184,70,-0.055625322985892504],[119,184,71,-0.05374010338299098],[119,184,72,-0.048240261582730655],[119,184,73,-0.04146575670121316],[119,184,74,-0.0434347972193464],[119,184,75,-0.04466338393374952],[119,184,76,-0.04403213045171532],[119,184,77,-0.05672500648455607],[119,184,78,-0.08621431419055592],[119,184,79,-0.09948596082178385],[119,185,64,-0.04955185689557251],[119,185,65,-0.04412839541058107],[119,185,66,-0.045143315130285744],[119,185,67,-0.05021794087503124],[119,185,68,-0.0521514696583037],[119,185,69,-0.05402122686451588],[119,185,70,-0.055853245258004634],[119,185,71,-0.051998619966800406],[119,185,72,-0.04718226048638794],[119,185,73,-0.043013831735336634],[119,185,74,-0.04459008712657162],[119,185,75,-0.04228229122133946],[119,185,76,-0.042647836056345916],[119,185,77,-0.05716088383670376],[119,185,78,-0.08480449105135762],[119,185,79,-0.09324199778464401],[119,186,64,-0.057011739530515845],[119,186,65,-0.051144270438656464],[119,186,66,-0.05205635968132877],[119,186,67,-0.05579287789107003],[119,186,68,-0.05713256476364879],[119,186,69,-0.05963116623676744],[119,186,70,-0.058782777554384394],[119,186,71,-0.0567726001453283],[119,186,72,-0.05133445249249102],[119,186,73,-0.04847131590182325],[119,186,74,-0.0467554359353616],[119,186,75,-0.047985382087061663],[119,186,76,-0.04793211784344484],[119,186,77,-0.05466724785422378],[119,186,78,-0.07907220501314978],[119,186,79,-0.08536850876922988],[119,187,64,-0.06040683994087763],[119,187,65,-0.05611469632113797],[119,187,66,-0.05600054570273329],[119,187,67,-0.058321247519399516],[119,187,68,-0.056454148820381855],[119,187,69,-0.059407489928030334],[119,187,70,-0.05979533484318847],[119,187,71,-0.057006961259989455],[119,187,72,-0.05127358278914784],[119,187,73,-0.04923351977988097],[119,187,74,-0.046847752544035906],[119,187,75,-0.04905451563071337],[119,187,76,-0.04605480399616267],[119,187,77,-0.06260295060041031],[119,187,78,-0.08816002433347231],[119,187,79,-0.09303256368739252],[119,188,64,-0.07553611763358728],[119,188,65,-0.07012891947045048],[119,188,66,-0.06335360581935938],[119,188,67,-0.06167429385271134],[119,188,68,-0.05470353892144563],[119,188,69,-0.058071584042856214],[119,188,70,-0.05626453441427365],[119,188,71,-0.05071149317953407],[119,188,72,-0.04363294331557131],[119,188,73,-0.04187238989613684],[119,188,74,-0.03727071607875142],[119,188,75,-0.03612476326269844],[119,188,76,-0.03371706374888375],[119,188,77,-0.056644309429655454],[119,188,78,-0.08593810824035836],[119,188,79,-0.08874846071592331],[119,189,64,-0.08656161334863484],[119,189,65,-0.07962324089475675],[119,189,66,-0.07032709151655492],[119,189,67,-0.0645072938150201],[119,189,68,-0.060056393455506216],[119,189,69,-0.060457742093143994],[119,189,70,-0.05794532106935282],[119,189,71,-0.05066059593531852],[119,189,72,-0.04043694038019649],[119,189,73,-0.03473182625543483],[119,189,74,-0.029693756827820966],[119,189,75,-0.028432857292586683],[119,189,76,-0.02546044239994931],[119,189,77,-0.05200756425248785],[119,189,78,-0.0789857909915199],[119,189,79,-0.08825073708411264],[119,190,64,-0.08689652936659721],[119,190,65,-0.08063881083561024],[119,190,66,-0.07143752291349674],[119,190,67,-0.06625801252189428],[119,190,68,-0.06167181119073411],[119,190,69,-0.0639588920839546],[119,190,70,-0.060291864028983955],[119,190,71,-0.05155030404707128],[119,190,72,-0.04106135385285113],[119,190,73,-0.031797929642547615],[119,190,74,-0.027833167557542532],[119,190,75,-0.028002267124476524],[119,190,76,-0.026025363485923506],[119,190,77,-0.056709472485422824],[119,190,78,-0.08415298808230662],[119,190,79,-0.0880315426688395],[119,191,64,-0.08301435278492944],[119,191,65,-0.07907041643715017],[119,191,66,-0.07073729967799354],[119,191,67,-0.06620345627893429],[119,191,68,-0.06270874560532343],[119,191,69,-0.06478080752833305],[119,191,70,-0.060907556491022787],[119,191,71,-0.05460578536717456],[119,191,72,-0.04106383110626144],[119,191,73,-0.032250722950443095],[119,191,74,-0.028242441043508648],[119,191,75,-0.026553580200159743],[119,191,76,-0.025852650493229573],[119,191,77,-0.05725432533796693],[119,191,78,-0.08522942500551772],[119,191,79,-0.08439083101943898],[119,192,64,-0.0836860592086512],[119,192,65,-0.07792167764491845],[119,192,66,-0.07422986160116395],[119,192,67,-0.06839876256543082],[119,192,68,-0.06292649249799426],[119,192,69,-0.06622130358652255],[119,192,70,-0.06295588939247425],[119,192,71,-0.057863842293872814],[119,192,72,-0.04245353789337655],[119,192,73,-0.03352741836690837],[119,192,74,-0.026515829763663235],[119,192,75,-0.0253112635289221],[119,192,76,-0.023784298736427123],[119,192,77,-0.06127870977790836],[119,192,78,-0.08935364526523866],[119,192,79,-0.0870376282253926],[119,193,64,-0.07902265451482124],[119,193,65,-0.07399733783352758],[119,193,66,-0.07119649955504376],[119,193,67,-0.06547414962115611],[119,193,68,-0.06400686639692466],[119,193,69,-0.06561503216028138],[119,193,70,-0.06274498831752895],[119,193,71,-0.059560915281782284],[119,193,72,-0.049940913050178046],[119,193,73,-0.040316114304579945],[119,193,74,-0.03635701564838814],[119,193,75,-0.03310263367272999],[119,193,76,-0.04129079407749624],[119,193,77,-0.06425405086629404],[119,193,78,-0.07498336186274665],[119,193,79,-0.0762576962000665],[119,194,64,-0.0863932847910241],[119,194,65,-0.08183424796358883],[119,194,66,-0.07415120880477301],[119,194,67,-0.06736725410929495],[119,194,68,-0.06688278705886277],[119,194,69,-0.06711463300677889],[119,194,70,-0.06543265191457233],[119,194,71,-0.06307428182507262],[119,194,72,-0.05517378399679369],[119,194,73,-0.04632220472958384],[119,194,74,-0.04196150151551993],[119,194,75,-0.036570245168400684],[119,194,76,-0.046106576031953],[119,194,77,-0.06821835935943207],[119,194,78,-0.08183809472251946],[119,194,79,-0.08446646995959853],[119,195,64,-0.08858422314190453],[119,195,65,-0.0820866251584993],[119,195,66,-0.07291553532910416],[119,195,67,-0.06701773486715953],[119,195,68,-0.06648525528391903],[119,195,69,-0.06317458437531216],[119,195,70,-0.06316323875403858],[119,195,71,-0.062459002229984864],[119,195,72,-0.0571413516714588],[119,195,73,-0.04835987167900249],[119,195,74,-0.04525433991740372],[119,195,75,-0.03515649018404049],[119,195,76,-0.05374416031409153],[119,195,77,-0.07745839579968278],[119,195,78,-0.09246537507532511],[119,195,79,-0.09776122616779057],[119,196,64,-0.08071584797105426],[119,196,65,-0.07633068532885955],[119,196,66,-0.07056862787182874],[119,196,67,-0.06702185541867817],[119,196,68,-0.06821627202489892],[119,196,69,-0.06456770444958178],[119,196,70,-0.06447870288051745],[119,196,71,-0.06554901745482848],[119,196,72,-0.06351218353033522],[119,196,73,-0.057711928118358735],[119,196,74,-0.052695610302388125],[119,196,75,-0.04299479324845347],[119,196,76,-0.06856519745957171],[119,196,77,-0.08885347946498712],[119,196,78,-0.10197133591597833],[119,196,79,-0.10775018940497845],[119,197,64,-0.082713264906006],[119,197,65,-0.07991571338088514],[119,197,66,-0.07215032067887077],[119,197,67,-0.06717588858279586],[119,197,68,-0.06798101699995597],[119,197,69,-0.06249713360064897],[119,197,70,-0.06059440104693659],[119,197,71,-0.061346857487945404],[119,197,72,-0.06108062904325917],[119,197,73,-0.0549430800024283],[119,197,74,-0.05111891994500506],[119,197,75,-0.04293368203889306],[119,197,76,-0.06417224710820518],[119,197,77,-0.08397309027055369],[119,197,78,-0.0954801858378705],[119,197,79,-0.1075474528691477],[119,198,64,-0.08277602413069371],[119,198,65,-0.0787785217823978],[119,198,66,-0.07091300442722312],[119,198,67,-0.06610598492650627],[119,198,68,-0.06830192539207969],[119,198,69,-0.06375988450463194],[119,198,70,-0.059200940358238016],[119,198,71,-0.05808053414404496],[119,198,72,-0.054930471989888534],[119,198,73,-0.052055398042698924],[119,198,74,-0.04824577349830672],[119,198,75,-0.046497175327885255],[119,198,76,-0.06247867401336038],[119,198,77,-0.07873905273981097],[119,198,78,-0.09091585437118245],[119,198,79,-0.10191782239992238],[119,199,64,-0.08401047195752341],[119,199,65,-0.07622369992147274],[119,199,66,-0.06822442735711488],[119,199,67,-0.0646680567655113],[119,199,68,-0.06685465917204844],[119,199,69,-0.063162920223554],[119,199,70,-0.05596084714360522],[119,199,71,-0.05563951489841924],[119,199,72,-0.05138890727264782],[119,199,73,-0.04917213898565842],[119,199,74,-0.04517962392154844],[119,199,75,-0.05234115967740217],[119,199,76,-0.06493440716599092],[119,199,77,-0.07939846052635649],[119,199,78,-0.09005751745121654],[119,199,79,-0.09520910696233363],[119,200,64,-0.08634806689814746],[119,200,65,-0.07548129651943541],[119,200,66,-0.06947268682551275],[119,200,67,-0.06623389598054244],[119,200,68,-0.06639711297311479],[119,200,69,-0.06251311056061011],[119,200,70,-0.05589013887459926],[119,200,71,-0.0534200105926646],[119,200,72,-0.04911610061005233],[119,200,73,-0.04645113216022985],[119,200,74,-0.041641323862853394],[119,200,75,-0.05502063929282651],[119,200,76,-0.06877627952566398],[119,200,77,-0.07847155006014664],[119,200,78,-0.09109498750273004],[119,200,79,-0.0939893002253745],[119,201,64,-0.07914918816872361],[119,201,65,-0.06878085475676596],[119,201,66,-0.06264873203864439],[119,201,67,-0.058718858512542056],[119,201,68,-0.057356170524321876],[119,201,69,-0.05393848464922697],[119,201,70,-0.04790248864168674],[119,201,71,-0.043259549395932635],[119,201,72,-0.039959011840580386],[119,201,73,-0.036737523747993744],[119,201,74,-0.03287435166509155],[119,201,75,-0.04692442831836244],[119,201,76,-0.06560357924071014],[119,201,77,-0.07731689280265905],[119,201,78,-0.0870303004544448],[119,201,79,-0.08693601645357119],[119,202,64,-0.08662483136274876],[119,202,65,-0.07797861177325986],[119,202,66,-0.06933455606100329],[119,202,67,-0.06277131067948416],[119,202,68,-0.06224451124046369],[119,202,69,-0.06008943985077718],[119,202,70,-0.052989137584234736],[119,202,71,-0.04761166199655266],[119,202,72,-0.046017190023329116],[119,202,73,-0.040769654509717757],[119,202,74,-0.03763889577100077],[119,202,75,-0.04666577614688474],[119,202,76,-0.06653573083075938],[119,202,77,-0.07656066859089272],[119,202,78,-0.08916556344834187],[119,202,79,-0.08830293581658669],[119,203,64,-0.09030337704248037],[119,203,65,-0.08236229601109395],[119,203,66,-0.07236725611525836],[119,203,67,-0.0644781713999963],[119,203,68,-0.063242018482567],[119,203,69,-0.06171370860810606],[119,203,70,-0.056579268963408376],[119,203,71,-0.051187984200475954],[119,203,72,-0.04770731023672861],[119,203,73,-0.04306334057544782],[119,203,74,-0.03751821464416451],[119,203,75,-0.051069786440027284],[119,203,76,-0.07370273755141701],[119,203,77,-0.08882176928885056],[119,203,78,-0.10160400686056217],[119,203,79,-0.09901738697961808],[119,204,64,-0.09048366542953319],[119,204,65,-0.07964474016295395],[119,204,66,-0.06822844842021795],[119,204,67,-0.06164258630720679],[119,204,68,-0.05315626705808524],[119,204,69,-0.049468730080408696],[119,204,70,-0.04432040426271003],[119,204,71,-0.037665837475372235],[119,204,72,-0.033395786299783695],[119,204,73,-0.03037826498933803],[119,204,74,-0.024980308102549587],[119,204,75,-0.04340910885027954],[119,204,76,-0.06670204267971155],[119,204,77,-0.08527476311226295],[119,204,78,-0.09903182706016402],[119,204,79,-0.09750167185425478],[119,205,64,-0.10093644954110767],[119,205,65,-0.09149504474195747],[119,205,66,-0.08215139813167938],[119,205,67,-0.07675711479083001],[119,205,68,-0.06718913254298887],[119,205,69,-0.06032467105342057],[119,205,70,-0.05484111936661911],[119,205,71,-0.047757885811324355],[119,205,72,-0.04128232186601069],[119,205,73,-0.038464930652742424],[119,205,74,-0.03636836699338561],[119,205,75,-0.030247002387350952],[119,205,76,-0.03313916473420758],[119,205,77,-0.05048239668410896],[119,205,78,-0.0858320288358807],[119,205,79,-0.0975384412405052],[119,206,64,-0.10285848234890622],[119,206,65,-0.09564046511201392],[119,206,66,-0.08656165728536319],[119,206,67,-0.07855004441680037],[119,206,68,-0.06803276248388739],[119,206,69,-0.0615747060683806],[119,206,70,-0.054071782104330376],[119,206,71,-0.04805752668972338],[119,206,72,-0.041358848095484],[119,206,73,-0.036358294746931724],[119,206,74,-0.03695526706973841],[119,206,75,-0.03201656405017253],[119,206,76,-0.036204019092168714],[119,206,77,-0.05565942240196205],[119,206,78,-0.09169358089489553],[119,206,79,-0.09780056729305824],[119,207,64,-0.1046185976976274],[119,207,65,-0.10102428759608259],[119,207,66,-0.09178969077848323],[119,207,67,-0.08103458269463343],[119,207,68,-0.06956886547443542],[119,207,69,-0.06216575456812272],[119,207,70,-0.052893533646726915],[119,207,71,-0.04818245237078303],[119,207,72,-0.04137231968083957],[119,207,73,-0.037290346579551686],[119,207,74,-0.036322042630399703],[119,207,75,-0.033129351847613384],[119,207,76,-0.0320863873871648],[119,207,77,-0.05221196122219365],[119,207,78,-0.08361567214089367],[119,207,79,-0.0924849946505185],[119,208,64,-0.1098636685247975],[119,208,65,-0.1038966296888548],[119,208,66,-0.09470491510195955],[119,208,67,-0.08224610004524435],[119,208,68,-0.06975390336359343],[119,208,69,-0.06371587312025917],[119,208,70,-0.05346964529440033],[119,208,71,-0.047361429432291796],[119,208,72,-0.041084439463593844],[119,208,73,-0.03518740144746682],[119,208,74,-0.0348307736847905],[119,208,75,-0.033081823544506936],[119,208,76,-0.02528070108347391],[119,208,77,-0.03633476417413221],[119,208,78,-0.0640750200835066],[119,208,79,-0.08945262963006446],[119,209,64,-0.1143495678877484],[119,209,65,-0.10814663591894197],[119,209,66,-0.09577754822142791],[119,209,67,-0.08267926318308715],[119,209,68,-0.07211564686543191],[119,209,69,-0.06374611776644587],[119,209,70,-0.05511412454159569],[119,209,71,-0.04786213436527472],[119,209,72,-0.03934946720318497],[119,209,73,-0.03429345349066912],[119,209,74,-0.03140229955880333],[119,209,75,-0.030581377582551694],[119,209,76,-0.023478735604320053],[119,209,77,-0.03615226822459788],[119,209,78,-0.06144000736514573],[119,209,79,-0.08961533591841919],[119,210,64,-0.1258536439643279],[119,210,65,-0.11577373841088034],[119,210,66,-0.10215032022180269],[119,210,67,-0.08615038968388583],[119,210,68,-0.07942271274283079],[119,210,69,-0.06960204944020217],[119,210,70,-0.060608528878673365],[119,210,71,-0.05310545579925485],[119,210,72,-0.04289134119788234],[119,210,73,-0.03588578704799912],[119,210,74,-0.03194276323292547],[119,210,75,-0.03170009094571295],[119,210,76,-0.02433544783470977],[119,210,77,-0.036145373102980105],[119,210,78,-0.060506934964855895],[119,210,79,-0.0919607698999503],[119,211,64,-0.12762934013352883],[119,211,65,-0.11680526537375],[119,211,66,-0.10229829405236777],[119,211,67,-0.08714932890430256],[119,211,68,-0.0804896933160167],[119,211,69,-0.06995843139896682],[119,211,70,-0.06166759381931047],[119,211,71,-0.05486015418514892],[119,211,72,-0.045294252160521534],[119,211,73,-0.0340624334836576],[119,211,74,-0.031765937334727865],[119,211,75,-0.027379784557218748],[119,211,76,-0.021036397059967543],[119,211,77,-0.03888621851957161],[119,211,78,-0.06300688827089934],[119,211,79,-0.10168110603810443],[119,212,64,-0.10555140362453562],[119,212,65,-0.09897852477675306],[119,212,66,-0.09175819262070398],[119,212,67,-0.0839268567936187],[119,212,68,-0.08277284227786723],[119,212,69,-0.08013450918197365],[119,212,70,-0.0754091202218801],[119,212,71,-0.06997461187656645],[119,212,72,-0.060336965239249],[119,212,73,-0.05059621035399764],[119,212,74,-0.04621472063341403],[119,212,75,-0.039930681045079734],[119,212,76,-0.033164264830558524],[119,212,77,-0.0478567779854613],[119,212,78,-0.06683161478724386],[119,212,79,-0.09894731336062276],[119,213,64,-0.10911802015379239],[119,213,65,-0.10005078095731428],[119,213,66,-0.09015306950348888],[119,213,67,-0.08438517382957944],[119,213,68,-0.08141751326780938],[119,213,69,-0.07799804281093495],[119,213,70,-0.07103621222245415],[119,213,71,-0.06671171185888239],[119,213,72,-0.05553182474330813],[119,213,73,-0.04308437321807414],[119,213,74,-0.037213853741536115],[119,213,75,-0.031348890987507094],[119,213,76,-0.02615604720332055],[119,213,77,-0.06575802789570989],[119,213,78,-0.0903685850235327],[119,213,79,-0.09796144039359767],[119,214,64,-0.10790006856018856],[119,214,65,-0.10099980483327749],[119,214,66,-0.0900315906177433],[119,214,67,-0.08574417863027162],[119,214,68,-0.08194739843276662],[119,214,69,-0.07591872348055559],[119,214,70,-0.07106548201612768],[119,214,71,-0.06486316784293612],[119,214,72,-0.05499704541664405],[119,214,73,-0.041818470218507584],[119,214,74,-0.038504012328309724],[119,214,75,-0.033778816759889516],[119,214,76,-0.03736130733307633],[119,214,77,-0.07301912619890981],[119,214,78,-0.09990105076925457],[119,214,79,-0.09785704896526548],[119,215,64,-0.10952663973473685],[119,215,65,-0.10320828014012888],[119,215,66,-0.0924346494265462],[119,215,67,-0.08686561111443093],[119,215,68,-0.08264669980933922],[119,215,69,-0.07851959862079837],[119,215,70,-0.07549616519152462],[119,215,71,-0.0672807419878567],[119,215,72,-0.05721892755209351],[119,215,73,-0.04429102569224768],[119,215,74,-0.041748100259271684],[119,215,75,-0.03657742689127427],[119,215,76,-0.04447980553507234],[119,215,77,-0.07145279956057878],[119,215,78,-0.09458663711423257],[119,215,79,-0.09611087598895185],[119,216,64,-0.10830042024042849],[119,216,65,-0.10263488911161649],[119,216,66,-0.09332520137638377],[119,216,67,-0.08650582772067311],[119,216,68,-0.08132341328974806],[119,216,69,-0.07947935652077937],[119,216,70,-0.07872204151035637],[119,216,71,-0.07023587362391552],[119,216,72,-0.059586469607538425],[119,216,73,-0.04692223612001778],[119,216,74,-0.04410102394093329],[119,216,75,-0.0369374779576048],[119,216,76,-0.048723503271918135],[119,216,77,-0.08411671805681774],[119,216,78,-0.1015950092761577],[119,216,79,-0.09721421870823047],[119,217,64,-0.10019228074900094],[119,217,65,-0.09738870565862147],[119,217,66,-0.09224584167066742],[119,217,67,-0.08774155295634248],[119,217,68,-0.08585572084214232],[119,217,69,-0.08298123457119594],[119,217,70,-0.0821449295371055],[119,217,71,-0.07737652860660127],[119,217,72,-0.06704087033748717],[119,217,73,-0.05678071719425648],[119,217,74,-0.05262518012356987],[119,217,75,-0.04346466873808954],[119,217,76,-0.05896459939921825],[119,217,77,-0.09468573224986428],[119,217,78,-0.10150516010304472],[119,217,79,-0.09585191725580475],[119,218,64,-0.105018282095823],[119,218,65,-0.10204154605701177],[119,218,66,-0.09888091512203959],[119,218,67,-0.09290253517468132],[119,218,68,-0.0919491344542384],[119,218,69,-0.08887806246876605],[119,218,70,-0.0855943715279873],[119,218,71,-0.0817225970543697],[119,218,72,-0.0736472350333131],[119,218,73,-0.06286165576295158],[119,218,74,-0.053366612215912754],[119,218,75,-0.04643742869824845],[119,218,76,-0.05678171493452198],[119,218,77,-0.09970288393640345],[119,218,78,-0.10321339642329638],[119,218,79,-0.09398413683612865],[119,219,64,-0.10362418020113336],[119,219,65,-0.10251771142538284],[119,219,66,-0.09861862437971947],[119,219,67,-0.09345909504410013],[119,219,68,-0.09129500761452952],[119,219,69,-0.09188238433159117],[119,219,70,-0.08550435661614814],[119,219,71,-0.07985440405063728],[119,219,72,-0.07387608073779396],[119,219,73,-0.06272175867553369],[119,219,74,-0.05419282253858916],[119,219,75,-0.048647806547559284],[119,219,76,-0.06501744699558601],[119,219,77,-0.11061875402296548],[119,219,78,-0.1158370339963869],[119,219,79,-0.10148747366439584],[119,220,64,-0.10016960162095559],[119,220,65,-0.09657419188069688],[119,220,66,-0.09299978256933565],[119,220,67,-0.08653125083766589],[119,220,68,-0.08262070992707911],[119,220,69,-0.07808331469107885],[119,220,70,-0.06917286853770196],[119,220,71,-0.06413601028309347],[119,220,72,-0.05682630539538924],[119,220,73,-0.045899572099796615],[119,220,74,-0.0378746375467734],[119,220,75,-0.044063675302654245],[119,220,76,-0.07139210977278357],[119,220,77,-0.12445583469975356],[119,220,78,-0.12496657528018296],[119,220,79,-0.10989545998360001],[119,221,64,-0.09721178170346478],[119,221,65,-0.0924591087251391],[119,221,66,-0.09220549413916641],[119,221,67,-0.08681433761888291],[119,221,68,-0.08542044578637953],[119,221,69,-0.07859057930345277],[119,221,70,-0.06659511706582523],[119,221,71,-0.06188989687689071],[119,221,72,-0.053939515947935],[119,221,73,-0.04186568395528939],[119,221,74,-0.07649165552825216],[119,221,75,-0.09780506196978263],[119,221,76,-0.13318432416656628],[119,221,77,-0.14036588510137887],[119,221,78,-0.12539392844998618],[119,221,79,-0.1125930374427357],[119,222,64,-0.09578966804411787],[119,222,65,-0.09169002191684653],[119,222,66,-0.0902491890069237],[119,222,67,-0.0845992583494084],[119,222,68,-0.08277544129857929],[119,222,69,-0.0745821691613677],[119,222,70,-0.06254757591025532],[119,222,71,-0.05889908246890849],[119,222,72,-0.0522769980914219],[119,222,73,-0.05365729918966838],[119,222,74,-0.08085311183345542],[119,222,75,-0.10335149958218033],[119,222,76,-0.14874818042709878],[119,222,77,-0.14080851083863374],[119,222,78,-0.12801468871342386],[119,222,79,-0.11450596258065329],[119,223,64,-0.1020350622292954],[119,223,65,-0.09716953850101408],[119,223,66,-0.09123580299571069],[119,223,67,-0.08679366115305504],[119,223,68,-0.08306656998182751],[119,223,69,-0.07458521027651852],[119,223,70,-0.06412704124020886],[119,223,71,-0.05986536841089099],[119,223,72,-0.05201972167405139],[119,223,73,-0.04256436355470393],[119,223,74,-0.0871843775825],[119,223,75,-0.132320740188334],[119,223,76,-0.15268253122134706],[119,223,77,-0.1403139531803852],[119,223,78,-0.12719167137321602],[119,223,79,-0.11250743388112638],[119,224,64,-0.10384659451353122],[119,224,65,-0.0981834140301728],[119,224,66,-0.09016919723213901],[119,224,67,-0.08401976779750929],[119,224,68,-0.083528645764313],[119,224,69,-0.07295707614811943],[119,224,70,-0.06430843857100993],[119,224,71,-0.05909798154236247],[119,224,72,-0.0509866969209251],[119,224,73,-0.040223258752038395],[119,224,74,-0.09386890737667408],[119,224,75,-0.14597530524220942],[119,224,76,-0.1547916385230466],[119,224,77,-0.14196203617650233],[119,224,78,-0.12887758009138026],[119,224,79,-0.11369700245567348],[119,225,64,-0.11268229015324734],[119,225,65,-0.10414904475125893],[119,225,66,-0.08914224885810373],[119,225,67,-0.07767545676607147],[119,225,68,-0.07263474015905103],[119,225,69,-0.06512997122739113],[119,225,70,-0.05739971044714924],[119,225,71,-0.05038949468218265],[119,225,72,-0.0423391652127653],[119,225,73,-0.032966732950699504],[119,225,74,-0.10059556081413329],[119,225,75,-0.1581894533564553],[119,225,76,-0.15720643510288182],[119,225,77,-0.14329998133375033],[119,225,78,-0.1323149853557571],[119,225,79,-0.11851116145631316],[119,226,64,-0.117309761973688],[119,226,65,-0.10864593830390527],[119,226,66,-0.09511533909484637],[119,226,67,-0.08171079312121345],[119,226,68,-0.07535588963227687],[119,226,69,-0.06869795128312295],[119,226,70,-0.06247740567794413],[119,226,71,-0.05352260481274412],[119,226,72,-0.04759428162510713],[119,226,73,-0.034065781308471585],[119,226,74,-0.0955640819311057],[119,226,75,-0.15052446544149894],[119,226,76,-0.15943924538586884],[119,226,77,-0.14546586450849858],[119,226,78,-0.1347934618076353],[119,226,79,-0.1224097932209476],[119,227,64,-0.11873517657782606],[119,227,65,-0.10919858402100487],[119,227,66,-0.09521294613507353],[119,227,67,-0.0818855577818391],[119,227,68,-0.0731066990618197],[119,227,69,-0.068717770497499],[119,227,70,-0.06347605767929992],[119,227,71,-0.054286061785220704],[119,227,72,-0.047720483565746374],[119,227,73,-0.032384471294749584],[119,227,74,-0.11026179787347447],[119,227,75,-0.15970929451119037],[119,227,76,-0.17016556166879201],[119,227,77,-0.156924371528155],[119,227,78,-0.14466289877019775],[119,227,79,-0.1357669740434479],[119,228,64,-0.10963396862816377],[119,228,65,-0.09874868742740146],[119,228,66,-0.08532483010460633],[119,228,67,-0.07081992380642055],[119,228,68,-0.06039002230985577],[119,228,69,-0.05460626192000595],[119,228,70,-0.051197864625948594],[119,228,71,-0.04215347075538644],[119,228,72,-0.034401949824895486],[119,228,73,-0.018664176699858134],[119,228,74,-0.11394264795140224],[119,228,75,-0.16098608555301142],[119,228,76,-0.169844168022332],[119,228,77,-0.15729121050621306],[119,228,78,-0.14555219102607947],[119,228,79,-0.13756151794614832],[119,229,64,-0.10245633981520469],[119,229,65,-0.096340204302411],[119,229,66,-0.08945484186410535],[119,229,67,-0.08114826118673041],[119,229,68,-0.0740780634964682],[119,229,69,-0.06432754552010297],[119,229,70,-0.059433376312581096],[119,229,71,-0.05258743277249449],[119,229,72,-0.043103558357951405],[119,229,73,-0.09232394364318858],[119,229,74,-0.18541622701254298],[119,229,75,-0.18094698171756818],[119,229,76,-0.17098056498259],[119,229,77,-0.1594486385987145],[119,229,78,-0.14581954189883453],[119,229,79,-0.13669981367861903],[119,230,64,-0.09997710268099906],[119,230,65,-0.09335643702331206],[119,230,66,-0.08961153824337162],[119,230,67,-0.0841567443355892],[119,230,68,-0.07680595132908091],[119,230,69,-0.06681181528091196],[119,230,70,-0.06213138902101639],[119,230,71,-0.051957920702412896],[119,230,72,-0.04957557743982351],[119,230,73,-0.10721192130816196],[119,230,74,-0.19161488714235092],[119,230,75,-0.18744553491743732],[119,230,76,-0.17978686967364688],[119,230,77,-0.16749846707531083],[119,230,78,-0.15525946358497275],[119,230,79,-0.14163509225243248],[119,231,64,-0.10238501170193474],[119,231,65,-0.098418923214923],[119,231,66,-0.09576167882430257],[119,231,67,-0.09308593675793382],[119,231,68,-0.08329015820474381],[119,231,69,-0.07299857050185247],[119,231,70,-0.06491700028360525],[119,231,71,-0.054773036192178326],[119,231,72,-0.06829886945007828],[119,231,73,-0.11572332250665006],[119,231,74,-0.15150068955619747],[119,231,75,-0.166566306513227],[119,231,76,-0.17851729940167535],[119,231,77,-0.16562709455796154],[119,231,78,-0.155813158618733],[119,231,79,-0.1395973217828761],[119,232,64,-0.10202234896631134],[119,232,65,-0.09700814676738481],[119,232,66,-0.09610463446903028],[119,232,67,-0.09447898778371702],[119,232,68,-0.08554135916338697],[119,232,69,-0.07383037288743402],[119,232,70,-0.06539504100345823],[119,232,71,-0.05749430506165738],[119,232,72,-0.06652259163653129],[119,232,73,-0.1100244330486187],[119,232,74,-0.1475982037697965],[119,232,75,-0.15593198932394794],[119,232,76,-0.17930693933556124],[119,232,77,-0.16731307282945293],[119,232,78,-0.15934709698753532],[119,232,79,-0.14297038494666028],[119,233,64,-0.10227058911983808],[119,233,65,-0.09605649948779203],[119,233,66,-0.0951387590841471],[119,233,67,-0.09443264469516892],[119,233,68,-0.0874102526609676],[119,233,69,-0.0747858625683257],[119,233,70,-0.06506759449541825],[119,233,71,-0.05937944493499857],[119,233,72,-0.05656318504655532],[119,233,73,-0.1056354957229155],[119,233,74,-0.1400563968548592],[119,233,75,-0.14937533792299088],[119,233,76,-0.18283985479562287],[119,233,77,-0.17252990745451985],[119,233,78,-0.1642528792491633],[119,233,79,-0.14741333612055826],[119,234,64,-0.10779264802068282],[119,234,65,-0.10244152271600089],[119,234,66,-0.09928889258815685],[119,234,67,-0.09592788055148149],[119,234,68,-0.09238297251866],[119,234,69,-0.08092389737642311],[119,234,70,-0.07030847483445588],[119,234,71,-0.06298213452255867],[119,234,72,-0.049554175345704166],[119,234,73,-0.07372929343903561],[119,234,74,-0.1084034149006544],[119,234,75,-0.1296951114820899],[119,234,76,-0.1720484061282655],[119,234,77,-0.16467345506585424],[119,234,78,-0.15341730477621776],[119,234,79,-0.14087902632210816],[119,235,64,-0.11030652499979064],[119,235,65,-0.10567846919553915],[119,235,66,-0.0988813070445907],[119,235,67,-0.09561290134709578],[119,235,68,-0.08897466359802335],[119,235,69,-0.08270310103141101],[119,235,70,-0.0712894216533465],[119,235,71,-0.06255494039129415],[119,235,72,-0.04997853717026872],[119,235,73,-0.036324405114159186],[119,235,74,-0.01992355879321603],[119,235,75,-0.023275608866390157],[119,235,76,-0.08542881670518257],[119,235,77,-0.16207348957076856],[119,235,78,-0.1606035209640039],[119,235,79,-0.15001783518227887],[119,236,64,-0.1295854864442173],[119,236,65,-0.12464798628272],[119,236,66,-0.11722824540157391],[119,236,67,-0.11435020016801485],[119,236,68,-0.10779396605183168],[119,236,69,-0.10199579084316393],[119,236,70,-0.09009127755391642],[119,236,71,-0.0819143065778224],[119,236,72,-0.07082435776015386],[119,236,73,-0.05771735910171866],[119,236,74,-0.04231193338716743],[119,236,75,-0.03637474753525505],[119,236,76,-0.0997423890062015],[119,236,77,-0.16089457819899095],[119,236,78,-0.1669719316727862],[119,236,79,-0.15871886422801548],[119,237,64,-0.1252640544862049],[119,237,65,-0.12058822386950342],[119,237,66,-0.1144867832683009],[119,237,67,-0.11163110603404566],[119,237,68,-0.10742896898667376],[119,237,69,-0.10091951741728254],[119,237,70,-0.09274595582326463],[119,237,71,-0.08319292402440187],[119,237,72,-0.07329309352774256],[119,237,73,-0.06570127217579591],[119,237,74,-0.059536123583667944],[119,237,75,-0.07023774940641438],[119,237,76,-0.14074770118242794],[119,237,77,-0.1728896443050361],[119,237,78,-0.16769698884246492],[119,237,79,-0.15741737013276155],[119,238,64,-0.12760360473121618],[119,238,65,-0.11983887155946434],[119,238,66,-0.11461554641986028],[119,238,67,-0.11117216467561802],[119,238,68,-0.10977888188087451],[119,238,69,-0.10311115948746599],[119,238,70,-0.0948086780739429],[119,238,71,-0.08506138662627898],[119,238,72,-0.07717272120545811],[119,238,73,-0.06833839502605325],[119,238,74,-0.07682525060056022],[119,238,75,-0.09758325094227435],[119,238,76,-0.16255658788029187],[119,238,77,-0.16677806452116334],[119,238,78,-0.1597136078595173],[119,238,79,-0.15098239455911433],[119,239,64,-0.1352449562613448],[119,239,65,-0.12716074527193094],[119,239,66,-0.12088784047582239],[119,239,67,-0.11738788044126205],[119,239,68,-0.11379224294188875],[119,239,69,-0.10730349927161503],[119,239,70,-0.09950089877894462],[119,239,71,-0.08984268763280348],[119,239,72,-0.07964205656655485],[119,239,73,-0.0712286088474671],[119,239,74,-0.06033014416575997],[119,239,75,-0.08782167714573677],[119,239,76,-0.13976297842818608],[119,239,77,-0.15943072405507455],[119,239,78,-0.15316794673896397],[119,239,79,-0.14400459545432495],[119,240,64,-0.1352601737961062],[119,240,65,-0.12882748526599358],[119,240,66,-0.12221649949322085],[119,240,67,-0.11959531595748624],[119,240,68,-0.1130886985049426],[119,240,69,-0.10627001344729564],[119,240,70,-0.09833311606742688],[119,240,71,-0.0872074912202598],[119,240,72,-0.07947163264347876],[119,240,73,-0.06948307862995531],[119,240,74,-0.05784680275024813],[119,240,75,-0.0885861219963083],[119,240,76,-0.1278412904305931],[119,240,77,-0.15688378273270817],[119,240,78,-0.14829694087841988],[119,240,79,-0.14238032189359706],[119,241,64,-0.14341080650286198],[119,241,65,-0.13494766380685796],[119,241,66,-0.12766536854352536],[119,241,67,-0.12237586565297505],[119,241,68,-0.11446022370619159],[119,241,69,-0.10512176153814762],[119,241,70,-0.09473013451964349],[119,241,71,-0.08284910787596227],[119,241,72,-0.07219810066682114],[119,241,73,-0.05894740404551621],[119,241,74,-0.04367856488014722],[119,241,75,-0.026464208868557465],[119,241,76,-0.013390427452687231],[119,241,77,-5.38356415404187E-4],[119,241,78,0.012316881795935805],[119,241,79,-0.07878004865489034],[119,242,64,-0.14612744470248878],[119,242,65,-0.139154560217074],[119,242,66,-0.12967207005831632],[119,242,67,-0.12436770123171029],[119,242,68,-0.11562550569329615],[119,242,69,-0.10419807697548687],[119,242,70,-0.09530603321423721],[119,242,71,-0.08350947098807736],[119,242,72,-0.07432140402948594],[119,242,73,-0.060168627611260864],[119,242,74,-0.04516261492683707],[119,242,75,-0.029241758509991875],[119,242,76,-0.01482323295799852],[119,242,77,-0.0032528340232279573],[119,242,78,0.010676524051956432],[119,242,79,-0.08185496303093326],[119,243,64,-0.14654555728342233],[119,243,65,-0.13827887601616462],[119,243,66,-0.12870184261683598],[119,243,67,-0.12343368995658723],[119,243,68,-0.11214121634185531],[119,243,69,-0.10189299112559733],[119,243,70,-0.09233584622699165],[119,243,71,-0.08277581231624984],[119,243,72,-0.07275475191351957],[119,243,73,-0.059530400606942174],[119,243,74,-0.04258276438418318],[119,243,75,-0.026754519642457564],[119,243,76,-0.012015166271633002],[119,243,77,-0.001561759271408017],[119,243,78,-0.004634962190673355],[119,243,79,-0.08880937183872446],[119,244,64,-0.13281769229332308],[119,244,65,-0.11994818926096926],[119,244,66,-0.10564812811979385],[119,244,67,-0.09559056078075041],[119,244,68,-0.08236668949708373],[119,244,69,-0.07249062468523099],[119,244,70,-0.062402231205632944],[119,244,71,-0.052771668286465914],[119,244,72,-0.04151590666154538],[119,244,73,-0.02722418760305649],[119,244,74,-0.01229842206813904],[119,244,75,0.004454909025517664],[119,244,76,0.018743532564361787],[119,244,77,0.02877009465781176],[119,244,78,0.021094732632150056],[119,244,79,-0.061556333451368586],[119,245,64,-0.13299200284447277],[119,245,65,-0.11838653867715605],[119,245,66,-0.10215604401348405],[119,245,67,-0.09124578950149007],[119,245,68,-0.0767005781524914],[119,245,69,-0.06934114431080826],[119,245,70,-0.06009933460545597],[119,245,71,-0.05038175274799994],[119,245,72,-0.04116940947771633],[119,245,73,-0.028164163616814772],[119,245,74,-0.012186810834585074],[119,245,75,0.00391385203673722],[119,245,76,0.01912454133671951],[119,245,77,0.030694537712383257],[119,245,78,0.02246962166258066],[119,245,79,-0.06202312081550945],[119,246,64,-0.13076306868252857],[119,246,65,-0.11646132642544219],[119,246,66,-0.10124689055039497],[119,246,67,-0.08518480212087366],[119,246,68,-0.07190222532154411],[119,246,69,-0.06463616929697032],[119,246,70,-0.059518998854235575],[119,246,71,-0.050059894712471284],[119,246,72,-0.04142296498237151],[119,246,73,-0.02866871186775012],[119,246,74,-0.014461963304499906],[119,246,75,0.0048245073948142425],[119,246,76,0.021508599328047842],[119,246,77,0.03285342325951385],[119,246,78,-0.007895793534226134],[119,246,79,-0.10548206258442269],[119,247,64,-0.1337729494714172],[119,247,65,-0.12106562586867198],[119,247,66,-0.10341284910098592],[119,247,67,-0.0889753994704237],[119,247,68,-0.07390592606580781],[119,247,69,-0.06484419037909434],[119,247,70,-0.06317011524801873],[119,247,71,-0.053528929630073246],[119,247,72,-0.042084990431457525],[119,247,73,-0.026788614081824605],[119,247,74,-0.013919480484274133],[119,247,75,0.005440225081551522],[119,247,76,0.02276498708447565],[119,247,77,0.035444740031582336],[119,247,78,0.008933558086958962],[119,247,79,-0.08440118382797515],[119,248,64,-0.12858984520366046],[119,248,65,-0.11470104839766021],[119,248,66,-0.10012948616234675],[119,248,67,-0.08622893164790481],[119,248,68,-0.07157959990584178],[119,248,69,-0.06162063208304143],[119,248,70,-0.06108924708179697],[119,248,71,-0.05166163943860988],[119,248,72,-0.03896080434601494],[119,248,73,-0.02475533956878949],[119,248,74,-0.012347635159464992],[119,248,75,0.0065264808364410565],[119,248,76,0.01972528926349268],[119,248,77,0.03436676471447041],[119,248,78,0.020510950978917055],[119,248,79,-0.08005792862058013],[119,249,64,-0.12865074838704782],[119,249,65,-0.11098227785915454],[119,249,66,-0.09329057905106423],[119,249,67,-0.07649272930240503],[119,249,68,-0.061527845437870904],[119,249,69,-0.051889772092386904],[119,249,70,-0.049808664671213795],[119,249,71,-0.04369282906926218],[119,249,72,-0.033974586945818],[119,249,73,-0.02174705973572219],[119,249,74,-0.010137236189585841],[119,249,75,0.006008878016280875],[119,249,76,0.019808437740103824],[119,249,77,0.030233250644532084],[119,249,78,-0.01955053897564553],[119,249,79,-0.11607956116596056],[119,250,64,-0.12619279239810505],[119,250,65,-0.10950301867755705],[119,250,66,-0.09459004446224267],[119,250,67,-0.07647194678079319],[119,250,68,-0.06470364752825003],[119,250,69,-0.05360304677891739],[119,250,70,-0.04990406464774759],[119,250,71,-0.04179202935579522],[119,250,72,-0.03307828399384494],[119,250,73,-0.022923780758999326],[119,250,74,-0.010127560066137395],[119,250,75,-0.018799644685798443],[119,250,76,-0.03404682322647276],[119,250,77,-0.05452753255052724],[119,250,78,-0.055089869176781714],[119,250,79,-0.07644261432309482],[119,251,64,-0.12277188633518078],[119,251,65,-0.10566720160326229],[119,251,66,-0.09263317886999062],[119,251,67,-0.07588711940755773],[119,251,68,-0.06445140823005627],[119,251,69,-0.05201632790171447],[119,251,70,-0.04806108293380344],[119,251,71,-0.03954270120068233],[119,251,72,-0.029556114718547605],[119,251,73,-0.019308320485997496],[119,251,74,-0.0061729838680627536],[119,251,75,0.004296658138186471],[119,251,76,-0.024094023075487005],[119,251,77,-0.043884413572461284],[119,251,78,-0.04945895494397129],[119,251,79,-0.07123814393508494],[119,252,64,-0.11097311787007871],[119,252,65,-0.09364465591651092],[119,252,66,-0.08067603532938035],[119,252,67,-0.06534985532040129],[119,252,68,-0.054297490253147174],[119,252,69,-0.04334362553204841],[119,252,70,-0.037327542960935434],[119,252,71,-0.029962150341810462],[119,252,72,-0.0184841016697274],[119,252,73,-0.005349359405126292],[119,252,74,0.007061081348314249],[119,252,75,0.015919261205266252],[119,252,76,-0.011105565230510261],[119,252,77,-0.036249134967974994],[119,252,78,-0.04213130719258305],[119,252,79,-0.08391535552338607],[119,253,64,-0.10024447454671807],[119,253,65,-0.09004732473190326],[119,253,66,-0.07960008227296643],[119,253,67,-0.07122849747096939],[119,253,68,-0.062224743850555445],[119,253,69,-0.05352225701465049],[119,253,70,-0.04500906392272917],[119,253,71,-0.03689811009635482],[119,253,72,-0.02370193868397162],[119,253,73,-0.009008694147754084],[119,253,74,0.005940201528888911],[119,253,75,0.0160541457580598],[119,253,76,0.025110569226818785],[119,253,77,0.020129602167555834],[119,253,78,-0.0019449552654643779],[119,253,79,-0.034120267182596364],[119,254,64,-0.017640527137132267],[119,254,65,-0.014347886196024104],[119,254,66,-0.009996850358219678],[119,254,67,-0.0076686487242826895],[119,254,68,-0.00888215664370258],[119,254,69,-0.006910116134100142],[119,254,70,-0.006977872862408571],[119,254,71,-0.007693829487105938],[119,254,72,-0.005346145398377147],[119,254,73,9.996613265300658E-5],[119,254,74,0.004421166650314001],[119,254,75,0.009263505639135056],[119,254,76,0.011628537790443053],[119,254,77,0.007243429676991408],[119,254,78,-0.02312473267527842],[119,254,79,-0.0478211025965002],[119,255,64,-0.015197190226527102],[119,255,65,-0.014269269177810462],[119,255,66,-0.009377691134105637],[119,255,67,-0.0045187048502773886],[119,255,68,-0.007057307209585334],[119,255,69,-0.006752104258135744],[119,255,70,-0.0046017064977031535],[119,255,71,-0.004505024723745615],[119,255,72,-0.0036665236184587613],[119,255,73,-4.5937913838843547E-4],[119,255,74,0.003993986719585937],[119,255,75,0.008709431573832097],[119,255,76,0.010564866598452002],[119,255,77,0.014548529581590142],[119,255,78,-0.01317788276251277],[119,255,79,-0.03454812379906791],[119,256,64,-0.018571586581115282],[119,256,65,-0.015247257028391081],[119,256,66,-0.010483034549821246],[119,256,67,-0.003980056664819612],[119,256,68,-0.003928608828348584],[119,256,69,-0.0033948572321405163],[119,256,70,-0.0031005095770951646],[119,256,71,-0.001343201969124408],[119,256,72,-0.002591773840475653],[119,256,73,-0.0022602538066982814],[119,256,74,0.0055448477060688894],[119,256,75,0.00859563825567751],[119,256,76,0.011513158555596537],[119,256,77,0.01565352301890341],[119,256,78,-0.015417502777003086],[119,256,79,-0.034834163279288434],[119,257,64,-0.019325592835854402],[119,257,65,-0.0177583117670439],[119,257,66,-0.009638348648582457],[119,257,67,-0.003643736424919164],[119,257,68,-0.0016074455504465623],[119,257,69,-0.0010771060028925694],[119,257,70,7.764887131425091E-4],[119,257,71,6.805638788276863E-4],[119,257,72,-0.001964838374871783],[119,257,73,-8.635367087288515E-4],[119,257,74,0.005307469521349681],[119,257,75,0.00862629657485492],[119,257,76,0.01288842394541867],[119,257,77,0.002429986659698192],[119,257,78,-0.04976476473511196],[119,257,79,-0.07522100479320583],[119,258,64,-0.024379936931848173],[119,258,65,-0.0224744231296167],[119,258,66,-0.014243754812591325],[119,258,67,-0.009901456758885305],[119,258,68,-0.0044725356971307],[119,258,69,-0.0015329580753673105],[119,258,70,0.0013474014033456327],[119,258,71,-8.695710464672185E-4],[119,258,72,-0.002999786927765896],[119,258,73,-0.001387161509613391],[119,258,74,0.002777539604318202],[119,258,75,0.008137740021477657],[119,258,76,0.011984918613109477],[119,258,77,0.005864832537196886],[119,258,78,-0.04558707030055689],[119,258,79,-0.07343374468627101],[119,259,64,-0.024017021589557833],[119,259,65,-0.01922784387209528],[119,259,66,-0.013794681777184181],[119,259,67,-0.00856366728512975],[119,259,68,-0.0034996678378798746],[119,259,69,0.0025138519680944077],[119,259,70,0.0029284234104457324],[119,259,71,0.0010440595612044995],[119,259,72,-0.0019762676634594856],[119,259,73,-6.379904217889282E-4],[119,259,74,0.002560731432918087],[119,259,75,0.007323834504734936],[119,259,76,0.010350626471504892],[119,259,77,0.013880751181894399],[119,259,78,-0.01780124643728072],[119,259,79,-0.057346199514910795],[119,260,64,-0.12243732204626316],[119,260,65,-0.12005853824725284],[119,260,66,-0.11938313701286794],[119,260,67,-0.11529285721965893],[119,260,68,-0.11450103702839631],[119,260,69,-0.11078593490602776],[119,260,70,-0.11348769292002772],[119,260,71,-0.1175309675958573],[119,260,72,-0.1198216747963006],[119,260,73,-0.12044068373296088],[119,260,74,-0.11888896434192539],[119,260,75,-0.11516304759456449],[119,260,76,-0.11160646232717968],[119,260,77,-0.1042341898104366],[119,260,78,-0.1137312215816722],[119,260,79,-0.12859983971233818],[119,261,64,-0.13059858065774227],[119,261,65,-0.12368370581216027],[119,261,66,-0.11884173841663442],[119,261,67,-0.11508864668245077],[119,261,68,-0.11275693246286356],[119,261,69,-0.10907232429057093],[119,261,70,-0.11049223671466582],[119,261,71,-0.11374057458785912],[119,261,72,-0.11487654891583308],[119,261,73,-0.10927456624838841],[119,261,74,-0.11123606794419458],[119,261,75,-0.10799502527567648],[119,261,76,-0.1062416612648727],[119,261,77,-0.11091505113165345],[119,261,78,-0.12093620214393251],[119,261,79,-0.13281138369156284],[119,262,64,-0.13558799174441238],[119,262,65,-0.13352353073229586],[119,262,66,-0.12742169143158644],[119,262,67,-0.12160277748953367],[119,262,68,-0.11742942114390677],[119,262,69,-0.11340337252397081],[119,262,70,-0.11203175569236498],[119,262,71,-0.11644123974629073],[119,262,72,-0.11724606398537754],[119,262,73,-0.11155859391235175],[119,262,74,-0.10841104582135021],[119,262,75,-0.1068567401560887],[119,262,76,-0.10590201547357132],[119,262,77,-0.11674616962288024],[119,262,78,-0.12631228222659469],[119,262,79,-0.13616754021785102],[119,263,64,-0.13413847863671297],[119,263,65,-0.1342276409657799],[119,263,66,-0.12855197867691306],[119,263,67,-0.11999942742517469],[119,263,68,-0.11522893845376272],[119,263,69,-0.11165991277460335],[119,263,70,-0.11229392199668795],[119,263,71,-0.1152234130477297],[119,263,72,-0.11541922512784573],[119,263,73,-0.10906991538436445],[119,263,74,-0.10594882800838507],[119,263,75,-0.10685518108298973],[119,263,76,-0.11390286939766404],[119,263,77,-0.11406879351200944],[119,263,78,-0.1199504687471268],[119,263,79,-0.13516282881275904],[119,264,64,-0.13447210890201258],[119,264,65,-0.132423119734865],[119,264,66,-0.12658678841459864],[119,264,67,-0.11764895537050335],[119,264,68,-0.11202839064160794],[119,264,69,-0.11095643372846044],[119,264,70,-0.11149996315027351],[119,264,71,-0.11410707346106963],[119,264,72,-0.11362032097496003],[119,264,73,-0.10760794773555356],[119,264,74,-0.10447071487500105],[119,264,75,-0.1063041440081964],[119,264,76,-0.11921187200062129],[119,264,77,-0.11563350247085293],[119,264,78,-0.11938200012089202],[119,264,79,-0.14225551793253466],[119,265,64,-0.12446260821897616],[119,265,65,-0.12441966420076614],[119,265,66,-0.11937407022812963],[119,265,67,-0.11306148157842649],[119,265,68,-0.11111983436703082],[119,265,69,-0.10948447459364692],[119,265,70,-0.11271317180470597],[119,265,71,-0.11548322995227803],[119,265,72,-0.11865136305937814],[119,265,73,-0.1184143102471896],[119,265,74,-0.1832411512911273],[119,265,75,-0.2219352796809327],[119,265,76,-0.2356689142631819],[119,265,77,-0.22184440715754788],[119,265,78,-0.1984061362718504],[119,265,79,-0.1932268735064972],[119,266,64,-0.1198384797266905],[119,266,65,-0.12207506083830233],[119,266,66,-0.12081237569534342],[119,266,67,-0.1140406612058616],[119,266,68,-0.11430495739208463],[119,266,69,-0.11437481424969714],[119,266,70,-0.11530126390980447],[119,266,71,-0.11615601672270254],[119,266,72,-0.11985446523932873],[119,266,73,-0.12174461223804521],[119,266,74,-0.17582910409895497],[119,266,75,-0.21245477580541577],[119,266,76,-0.2319355842140554],[119,266,77,-0.22681455820064367],[119,266,78,-0.20251291841683486],[119,266,79,-0.19979970930158675],[119,267,64,-0.11165614537354444],[119,267,65,-0.11614103907238928],[119,267,66,-0.11663770396828897],[119,267,67,-0.11062168559515007],[119,267,68,-0.11128534033517547],[119,267,69,-0.11075423278184024],[119,267,70,-0.11322070628666323],[119,267,71,-0.11305365212945999],[119,267,72,-0.11675581452828052],[119,267,73,-0.12156403577544082],[119,267,74,-0.1822428205617341],[119,267,75,-0.2106708071536505],[119,267,76,-0.2381635317964822],[119,267,77,-0.2386946464347846],[119,267,78,-0.21320416785809765],[119,267,79,-0.21274895087679507],[119,268,64,-0.10025521142809372],[119,268,65,-0.10480482565907634],[119,268,66,-0.10374592159074805],[119,268,67,-0.09669107016384781],[119,268,68,-0.09725998197636176],[119,268,69,-0.09731466106337142],[119,268,70,-0.09703758454009462],[119,268,71,-0.09811752090149456],[119,268,72,-0.10256013684909647],[119,268,73,-0.11069913910319984],[119,268,74,-0.1543684878578771],[119,268,75,-0.17207158415699175],[119,268,76,-0.20609015242910603],[119,268,77,-0.22651543989771522],[119,268,78,-0.21471712503322277],[119,268,79,-0.20456897449327385],[119,269,64,-0.09657222823826385],[119,269,65,-0.09794854935249929],[119,269,66,-0.09644982181396057],[119,269,67,-0.0922517860945025],[119,269,68,-0.09408835380787121],[119,269,69,-0.09496202651209175],[119,269,70,-0.09413593331950745],[119,269,71,-0.09308931161101436],[119,269,72,-0.09934032817855316],[119,269,73,-0.10931852811701674],[119,269,74,-0.14237749436641492],[119,269,75,-0.17753351341245324],[119,269,76,-0.2071407888505049],[119,269,77,-0.22405815169805163],[119,269,78,-0.21120653717613902],[119,269,79,-0.20173467277281237],[119,270,64,-0.10038772141684842],[119,270,65,-0.09866281483925403],[119,270,66,-0.0968136908584008],[119,270,67,-0.09330130145043065],[119,270,68,-0.09691839495467339],[119,270,69,-0.09578766637730109],[119,270,70,-0.09266955912393786],[119,270,71,-0.09089918112051072],[119,270,72,-0.0970878825353574],[119,270,73,-0.10394599958199047],[119,270,74,-0.13451269005645963],[119,270,75,-0.16822125370358126],[119,270,76,-0.1918791971160178],[119,270,77,-0.2064285083618597],[119,270,78,-0.19266762273100202],[119,270,79,-0.1830363120649278],[119,271,64,-0.09793890410111795],[119,271,65,-0.0964596985259575],[119,271,66,-0.09444221234438543],[119,271,67,-0.09298033239485522],[119,271,68,-0.09380618901281848],[119,271,69,-0.09105665666927651],[119,271,70,-0.08934410646388143],[119,271,71,-0.08761985644596341],[119,271,72,-0.08903125496353863],[119,271,73,-0.09753214862489287],[119,271,74,-0.12505819051363243],[119,271,75,-0.15708095456025906],[119,271,76,-0.19201502843771603],[119,271,77,-0.2030390664395305],[119,271,78,-0.18796115033114028],[119,271,79,-0.1771766872773438],[119,272,64,-0.09688367992505273],[119,272,65,-0.09635118897979492],[119,272,66,-0.09242978138685237],[119,272,67,-0.09078882573010041],[119,272,68,-0.08858416037311803],[119,272,69,-0.08776781626820768],[119,272,70,-0.08560367267035793],[119,272,71,-0.08336475927640992],[119,272,72,-0.08430862165183481],[119,272,73,-0.09068754064356846],[119,272,74,-0.12888312708317207],[119,272,75,-0.15879952576738657],[119,272,76,-0.19713988347693345],[119,272,77,-0.20033787812191908],[119,272,78,-0.1846021476289789],[119,272,79,-0.17345209495089695],[119,273,64,-0.09035616081763503],[119,273,65,-0.08895831751590946],[119,273,66,-0.08827981453098034],[119,273,67,-0.08703636946236079],[119,273,68,-0.08303835110617755],[119,273,69,-0.08433849490036373],[119,273,70,-0.08126060963020214],[119,273,71,-0.07782024426675674],[119,273,72,-0.0801608815758565],[119,273,73,-0.08724220755319341],[119,273,74,-0.10212151615116197],[119,273,75,-0.11026404079264299],[119,273,76,-0.1049798524555304],[119,273,77,-0.09448538247277799],[119,273,78,-0.0842741585618802],[119,273,79,-0.0765213202990295],[119,274,64,-0.09297174404165083],[119,274,65,-0.08858940293236518],[119,274,66,-0.08808979972353742],[119,274,67,-0.08500646229767853],[119,274,68,-0.08377152142308632],[119,274,69,-0.08294571819041166],[119,274,70,-0.08086072200464729],[119,274,71,-0.0757851549129413],[119,274,72,-0.08023779185102176],[119,274,73,-0.08928864550269633],[119,274,74,-0.10227041873780827],[119,274,75,-0.1100105490568506],[119,274,76,-0.10512603216243577],[119,274,77,-0.09389262015377528],[119,274,78,-0.08312800968286305],[119,274,79,-0.07457263581234774],[119,275,64,-0.0877320249868209],[119,275,65,-0.0840432455779787],[119,275,66,-0.08405574604497268],[119,275,67,-0.08241817570787104],[119,275,68,-0.08216061493941615],[119,275,69,-0.0789073127117943],[119,275,70,-0.07567507650730174],[119,275,71,-0.07313701065215715],[119,275,72,-0.08019995864347375],[119,275,73,-0.08696005976276491],[119,275,74,-0.10713768735138637],[119,275,75,-0.11298961890345927],[119,275,76,-0.1093826409188166],[119,275,77,-0.10121071453924141],[119,275,78,-0.08837177588853484],[119,275,79,-0.07796253238976503],[119,276,64,-0.07155532080177136],[119,276,65,-0.07156775697969228],[119,276,66,-0.07229434571301224],[119,276,67,-0.07069010870800385],[119,276,68,-0.06898964470059288],[119,276,69,-0.0654036314471636],[119,276,70,-0.06120957266238036],[119,276,71,-0.05925515088814525],[119,276,72,-0.06577993315247428],[119,276,73,-0.07381176566980718],[119,276,74,-0.11099341548504199],[119,276,75,-0.11823019046003727],[119,276,76,-0.11282044733180299],[119,276,77,-0.10294326706123202],[119,276,78,-0.09291096618448791],[119,276,79,-0.08022296651511596],[119,277,64,-0.07717069680040921],[119,277,65,-0.07631127556104203],[119,277,66,-0.07483871474721895],[119,277,67,-0.07117837301797851],[119,277,68,-0.06802214704478375],[119,277,69,-0.06371759282064238],[119,277,70,-0.05963380633362439],[119,277,71,-0.05934342310806032],[119,277,72,-0.06283196069003735],[119,277,73,-0.06835552953550453],[119,277,74,-0.10946565109476657],[119,277,75,-0.11893626734183704],[119,277,76,-0.10956912030987531],[119,277,77,-0.0997408446909854],[119,277,78,-0.08927775252046499],[119,277,79,-0.07634403952784588],[119,278,64,-0.08323575311507744],[119,278,65,-0.08206909682557667],[119,278,66,-0.08026796719930049],[119,278,67,-0.07303638467815313],[119,278,68,-0.06571640302910542],[119,278,69,-0.061562444543658494],[119,278,70,-0.05929128691226007],[119,278,71,-0.059660606313067056],[119,278,72,-0.060617120388517555],[119,278,73,-0.06458366238118513],[119,278,74,-0.09751344127072904],[119,278,75,-0.10718198897202376],[119,278,76,-0.09856732070804311],[119,278,77,-0.08931999763102377],[119,278,78,-0.07720022076538408],[119,278,79,-0.06430638936399038],[119,279,64,-0.08354556282284724],[119,279,65,-0.08116422290598188],[119,279,66,-0.07866697494627103],[119,279,67,-0.07100795237744675],[119,279,68,-0.06175135303754779],[119,279,69,-0.057723432204883865],[119,279,70,-0.056658471445123884],[119,279,71,-0.057451757955762545],[119,279,72,-0.058139205101946256],[119,279,73,-0.0658364911060496],[119,279,74,-0.09238955829416505],[119,279,75,-0.10264602141724447],[119,279,76,-0.093773240610759],[119,279,77,-0.08477815604329189],[119,279,78,-0.07172496804620412],[119,279,79,-0.0586435140199702],[119,280,64,-0.08328808144793967],[119,280,65,-0.08140509075091612],[119,280,66,-0.07547984427713182],[119,280,67,-0.06748281539900917],[119,280,68,-0.059203392623551135],[119,280,69,-0.05515349139463732],[119,280,70,-0.052844746597839276],[119,280,71,-0.053887147618234724],[119,280,72,-0.05545621136605808],[119,280,73,-0.06679999095877198],[119,280,74,-0.08998085626461008],[119,280,75,-0.1007368865694799],[119,280,76,-0.08965224014931411],[119,280,77,-0.08243360335765804],[119,280,78,-0.06907114916312132],[119,280,79,-0.05511282155891248],[119,281,64,-0.08362617300903398],[119,281,65,-0.07985885357030356],[119,281,66,-0.0735597216770108],[119,281,67,-0.06321839898201759],[119,281,68,-0.056532689067340866],[119,281,69,-0.050684159672947454],[119,281,70,-0.0484828791070991],[119,281,71,-0.05012378190971399],[119,281,72,-0.05510678714911792],[119,281,73,-0.0696044733273953],[119,281,74,-0.09991250224055093],[119,281,75,-0.10928872894962519],[119,281,76,-0.09819229484213776],[119,281,77,-0.0885036440971862],[119,281,78,-0.07412000918736286],[119,281,79,-0.059724029828888275],[119,282,64,-0.08849674199317958],[119,282,65,-0.0807839543364117],[119,282,66,-0.07434237975114635],[119,282,67,-0.06263245830992772],[119,282,68,-0.05569519702611766],[119,282,69,-0.051025995635322924],[119,282,70,-0.049618554853807395],[119,282,71,-0.05127467857914971],[119,282,72,-0.05642528831010976],[119,282,73,-0.06172825439734468],[119,282,74,-0.09603748719402526],[119,282,75,-0.119214894829194],[119,282,76,-0.10810016280349569],[119,282,77,-0.098150440599472],[119,282,78,-0.08065496081873233],[119,282,79,-0.06708194028621667],[119,283,64,-0.08871322571893275],[119,283,65,-0.07707234574641707],[119,283,66,-0.07064649250327933],[119,283,67,-0.05888852407916763],[119,283,68,-0.05325799252996467],[119,283,69,-0.04880990626713916],[119,283,70,-0.049031146224551486],[119,283,71,-0.05395135487721031],[119,283,72,-0.057344785489808175],[119,283,73,-0.05904445175394293],[119,283,74,-0.08118718010701712],[119,283,75,-0.11813356822862323],[119,283,76,-0.11566689139111161],[119,283,77,-0.1037162752138987],[119,283,78,-0.08545990452119476],[119,283,79,-0.06993365910574723],[119,284,64,-0.10509876650070642],[119,284,65,-0.0947097046232016],[119,284,66,-0.08517359094271915],[119,284,67,-0.0773726467729178],[119,284,68,-0.07426360552213564],[119,284,69,-0.0692601356067502],[119,284,70,-0.07002867967027046],[119,284,71,-0.07514442839020274],[119,284,72,-0.07748714529957992],[119,284,73,-0.07745799836321443],[119,284,74,-0.09655614153846115],[119,284,75,-0.1229032245346497],[119,284,76,-0.12071856615892548],[119,284,77,-0.1064234422735765],[119,284,78,-0.09181689336422824],[119,284,79,-0.07483602262518849],[119,285,64,-0.10789819467763034],[119,285,65,-0.094979081877171],[119,285,66,-0.08126510965479662],[119,285,67,-0.07033281763003352],[119,285,68,-0.06748804498313055],[119,285,69,-0.06056733415057663],[119,285,70,-0.06075103495789308],[119,285,71,-0.06679955606163997],[119,285,72,-0.07065364781008134],[119,285,73,-0.07242636847773656],[119,285,74,-0.09085158794458886],[119,285,75,-0.11882444411968443],[119,285,76,-0.11598929805322253],[119,285,77,-0.10417165268713727],[119,285,78,-0.09025626634133849],[119,285,79,-0.07423492364350134],[119,286,64,-0.10775431886452143],[119,286,65,-0.09515585489237768],[119,286,66,-0.08329551901523685],[119,286,67,-0.07299243390978419],[119,286,68,-0.06703522157325727],[119,286,69,-0.06129129983154337],[119,286,70,-0.05999278983539768],[119,286,71,-0.06335935750166392],[119,286,72,-0.07138177735957899],[119,286,73,-0.0725787785596051],[119,286,74,-0.089826093770658],[119,286,75,-0.1119518919006943],[119,286,76,-0.11371904140163686],[119,286,77,-0.10367904506360426],[119,286,78,-0.08805967824336625],[119,286,79,-0.07292833952911823],[119,287,64,-0.10297550356099344],[119,287,65,-0.09102644750842774],[119,287,66,-0.07909790929908786],[119,287,67,-0.07192922399167431],[119,287,68,-0.06579968808838044],[119,287,69,-0.06095255734547233],[119,287,70,-0.05939164517082038],[119,287,71,-0.06154628856207432],[119,287,72,-0.06974676964462281],[119,287,73,-0.07212430616823137],[119,287,74,-0.08634686034767444],[119,287,75,-0.10485258936611526],[119,287,76,-0.10820704207618648],[119,287,77,-0.09738473962805497],[119,287,78,-0.08296152768374618],[119,287,79,-0.06755060650948855],[119,288,64,-0.10020347529276936],[119,288,65,-0.08729503070834438],[119,288,66,-0.07765133151125883],[119,288,67,-0.07044998561485297],[119,288,68,-0.06800836452346032],[119,288,69,-0.06127804510109988],[119,288,70,-0.059198419563451184],[119,288,71,-0.060202979902824444],[119,288,72,-0.0697563753964599],[119,288,73,-0.07372080624773941],[119,288,74,-0.08282783706539894],[119,288,75,-0.10025630702676454],[119,288,76,-0.10122604435807246],[119,288,77,-0.09038131038975677],[119,288,78,-0.0781511790743033],[119,288,79,-0.06424106691998749],[119,289,64,-0.08832543025779255],[119,289,65,-0.0824876905036864],[119,289,66,-0.07905631272391425],[119,289,67,-0.07481200185052736],[119,289,68,-0.0736592498251536],[119,289,69,-0.06825912023633987],[119,289,70,-0.06578037216990443],[119,289,71,-0.06835245391878347],[119,289,72,-0.0781461234782492],[119,289,73,-0.07985964976175705],[119,289,74,-0.098393975249512],[119,289,75,-0.11250649207808001],[119,289,76,-0.10456832282972092],[119,289,77,-0.09274816101496747],[119,289,78,-0.08084526178186985],[119,289,79,-0.06948288286840268],[119,290,64,-0.08787119535051176],[119,290,65,-0.08645660323455952],[119,290,66,-0.08201961616451837],[119,290,67,-0.07606436443333096],[119,290,68,-0.07407458936690356],[119,290,69,-0.07115907365004398],[119,290,70,-0.06749969084681746],[119,290,71,-0.07022887415367965],[119,290,72,-0.07710766684287229],[119,290,73,-0.07897109270994075],[119,290,74,-0.0907499728623853],[119,290,75,-0.10094602871212087],[119,290,76,-0.09079256175020309],[119,290,77,-0.0787442017836002],[119,290,78,-0.06725072303863208],[119,290,79,-0.058590385166199355],[119,291,64,-0.08747071483267749],[119,291,65,-0.08662969396252591],[119,291,66,-0.08036368943376947],[119,291,67,-0.07440048771747304],[119,291,68,-0.071941734450092],[119,291,69,-0.06891152520048682],[119,291,70,-0.06651286171978242],[119,291,71,-0.07165055377486088],[119,291,72,-0.07611859103068244],[119,291,73,-0.07608048054920859],[119,291,74,-0.08142283131567381],[119,291,75,-0.10092423852088067],[119,291,76,-0.09023039791577767],[119,291,77,-0.07819193889344625],[119,291,78,-0.0665491913764682],[119,291,79,-0.06067801025560687],[119,292,64,-0.060533879244526835],[119,292,65,-0.05820163470325118],[119,292,66,-0.05360276940256252],[119,292,67,-0.04711903021061345],[119,292,68,-0.044330076987103326],[119,292,69,-0.04107840363342799],[119,292,70,-0.039478488749538326],[119,292,71,-0.04278149700325313],[119,292,72,-0.04889332299107774],[119,292,73,-0.049689404157666456],[119,292,74,-0.050457102326629394],[119,292,75,-0.07558687984700233],[119,292,76,-0.0737415405386753],[119,292,77,-0.06174324770652337],[119,292,78,-0.049436835385805206],[119,292,79,-0.043763042449136924],[119,293,64,-0.05929177424795044],[119,293,65,-0.05539964863407758],[119,293,66,-0.05308460189560045],[119,293,67,-0.04568043646659336],[119,293,68,-0.04257977634956378],[119,293,69,-0.038857174719132415],[119,293,70,-0.03910399345674271],[119,293,71,-0.043394747376214626],[119,293,72,-0.04745183444937845],[119,293,73,-0.048456270967616656],[119,293,74,-0.047768573502312915],[119,293,75,-0.06980667549154301],[119,293,76,-0.06923613662348024],[119,293,77,-0.05765927830496939],[119,293,78,-0.04683953534641258],[119,293,79,-0.03948705711743053],[119,294,64,-0.058461482148185175],[119,294,65,-0.05562900306981408],[119,294,66,-0.05012189789100595],[119,294,67,-0.04244488933332355],[119,294,68,-0.03859289541556914],[119,294,69,-0.03414641172437263],[119,294,70,-0.03561342197855659],[119,294,71,-0.040618388700195386],[119,294,72,-0.045362620257207394],[119,294,73,-0.04475545867646165],[119,294,74,-0.04334864206419897],[119,294,75,-0.06454681668769341],[119,294,76,-0.08031814732612619],[119,294,77,-0.06993146681402185],[119,294,78,-0.06179776633819653],[119,294,79,-0.051510677618824385],[119,295,64,-0.0571761473401355],[119,295,65,-0.05142194085869265],[119,295,66,-0.04642587142008718],[119,295,67,-0.0389241659275464],[119,295,68,-0.035442989397626676],[119,295,69,-0.027955539171715213],[119,295,70,-0.02963108392362089],[119,295,71,-0.03834288970441456],[119,295,72,-0.04117993610951834],[119,295,73,-0.0409703527884738],[119,295,74,-0.042858444857420644],[119,295,75,-0.041801644417905015],[119,295,76,-0.0519408712922768],[119,295,77,-0.0636675764232931],[119,295,78,-0.05786571885104208],[119,295,79,-0.04647549835590381],[119,296,64,-0.053894099718227284],[119,296,65,-0.04938610339096394],[119,296,66,-0.043690753962840084],[119,296,67,-0.03523177562638942],[119,296,68,-0.029830665649943897],[119,296,69,-0.023105561493371743],[119,296,70,-0.023449421875931575],[119,296,71,-0.033087914039442],[119,296,72,-0.03683573399813083],[119,296,73,-0.0378782904585862],[119,296,74,-0.039103221673967466],[119,296,75,-0.04062027871686927],[119,296,76,-0.04617285096955654],[119,296,77,-0.059138474326287854],[119,296,78,-0.053462762819977916],[119,296,79,-0.043536387656336634],[119,297,64,-0.05981520044772576],[119,297,65,-0.050238928020311074],[119,297,66,-0.03822768886292095],[119,297,67,-0.025452739069089028],[119,297,68,-0.017298656705908508],[119,297,69,-0.010786009198709007],[119,297,70,-0.014583513253593028],[119,297,71,-0.024820366921771475],[119,297,72,-0.034201817899660564],[119,297,73,-0.040769390101405734],[119,297,74,-0.04196632606252387],[119,297,75,-0.042668526092146476],[119,297,76,-0.052202426145827915],[119,297,77,-0.06330075020397972],[119,297,78,-0.05610038949013141],[119,297,79,-0.046382972976513503],[119,298,64,-0.05975598621290388],[119,298,65,-0.05153380875987411],[119,298,66,-0.03825196597086475],[119,298,67,-0.025087720607234715],[119,298,68,-0.01604420271533598],[119,298,69,-0.011652607699831383],[119,298,70,-0.01572805208553242],[119,298,71,-0.02184944235057118],[119,298,72,-0.033656043788410764],[119,298,73,-0.03945002099465334],[119,298,74,-0.04064228956394528],[119,298,75,-0.04085989156509002],[119,298,76,-0.05207733129291475],[119,298,77,-0.056010588814723226],[119,298,78,-0.051392316617345],[119,298,79,-0.03944320144530167],[119,299,64,-0.06046313975064624],[119,299,65,-0.048352789872817714],[119,299,66,-0.03523698485605667],[119,299,67,-0.023218551688844347],[119,299,68,-0.012998695722975045],[119,299,69,-0.008260055284948706],[119,299,70,-0.013691340047831194],[119,299,71,-0.019234524770970568],[119,299,72,-0.029462866897878498],[119,299,73,-0.03614170337518219],[119,299,74,-0.03639761361044135],[119,299,75,-0.0361732417935011],[119,299,76,-0.049503241091190184],[119,299,77,-0.055950481309841746],[119,299,78,-0.053614335513254036],[119,299,79,-0.03743776082255623],[119,300,64,-0.05685378759816175],[119,300,65,-0.04798230525051475],[119,300,66,-0.03762284143428771],[119,300,67,-0.028551247832361265],[119,300,68,-0.021332385191354483],[119,300,69,-0.014769649560510703],[119,300,70,-0.016409116511759775],[119,300,71,-0.017777356121299395],[119,300,72,-0.021303417572631017],[119,300,73,-0.02239423274711763],[119,300,74,-0.022355728725709706],[119,300,75,-0.021903616383639156],[119,300,76,-0.018057070639379225],[119,300,77,-0.013811446000085562],[119,300,78,-0.008124689545493141],[119,300,79,-0.0063115787402963095],[119,301,64,-0.054017495353395284],[119,301,65,-0.046162600642633875],[119,301,66,-0.03458053070511566],[119,301,67,-0.025770940897951997],[119,301,68,-0.019777598631023144],[119,301,69,-0.014494085335296697],[119,301,70,-0.01566347061030729],[119,301,71,-0.018249944746482047],[119,301,72,-0.019895875810153757],[119,301,73,-0.01991869832447496],[119,301,74,-0.020103974514837752],[119,301,75,-0.01700913061462747],[119,301,76,-0.01482832208151913],[119,301,77,-0.012966673515473412],[119,301,78,-0.008109424810587629],[119,301,79,-0.00262040130329856],[119,302,64,-0.046885653405685526],[119,302,65,-0.04067258478000599],[119,302,66,-0.02894140886020112],[119,302,67,-0.022054059953941843],[119,302,68,-0.01520416311584126],[119,302,69,-0.012348047599267442],[119,302,70,-0.011661556754288815],[119,302,71,-0.014550090710881244],[119,302,72,-0.014905248726822612],[119,302,73,-0.013763798418769999],[119,302,74,-0.010585098806943916],[119,302,75,-0.00885068994651532],[119,302,76,-0.005799521346496861],[119,302,77,-0.00490197750251592],[119,302,78,-6.442440861985088E-4],[119,302,79,0.00783959953732137],[119,303,64,-0.044892087100760994],[119,303,65,-0.038006478276099404],[119,303,66,-0.027653332815131965],[119,303,67,-0.018824132773506544],[119,303,68,-0.01387261754289408],[119,303,69,-0.010570834334227328],[119,303,70,-0.006733319235554605],[119,303,71,-0.010523243454217221],[119,303,72,-0.009904955584790223],[119,303,73,-0.009226390370351015],[119,303,74,-0.006586388254927841],[119,303,75,-0.004609836567173203],[119,303,76,-0.0014800192936241935],[119,303,77,-7.782942093250284E-4],[119,303,78,0.0011562952243378694],[119,303,79,0.00960091943579397],[119,304,64,-0.03907585578615928],[119,304,65,-0.03347169457221698],[119,304,66,-0.023215357493457434],[119,304,67,-0.017556005511282988],[119,304,68,-0.012675469242130644],[119,304,69,-0.0077548164436237466],[119,304,70,-0.00410666612795825],[119,304,71,-0.006752145816529415],[119,304,72,-0.005547846009964483],[119,304,73,-0.0047350960310692525],[119,304,74,-0.003660495069511105],[119,304,75,-0.0012029495985362293],[119,304,76,0.0010814151910243375],[119,304,77,0.003940649672090166],[119,304,78,0.004184192714165091],[119,304,79,0.012509571418007445],[119,305,64,-0.03599451507083305],[119,305,65,-0.02848286588404038],[119,305,66,-0.021920862450868717],[119,305,67,-0.016231579898244364],[119,305,68,-0.012278147513788099],[119,305,69,-0.007432653508100254],[119,305,70,-0.004329611751673512],[119,305,71,-0.0035151149495211975],[119,305,72,-8.562460497372054E-4],[119,305,73,4.767616653555823E-4],[119,305,74,-7.172992101524001E-4],[119,305,75,6.895536729632779E-5],[119,305,76,0.002033923303965207],[119,305,77,0.0050639603582295495],[119,305,78,0.005542933293384664],[119,305,79,0.013572632103504553],[119,306,64,-0.03763852533031384],[119,306,65,-0.029099809586493136],[119,306,66,-0.022219853637600595],[119,306,67,-0.015012777431239244],[119,306,68,-0.008996189315719189],[119,306,69,-0.0067390008132024865],[119,306,70,-0.004626589233415704],[119,306,71,-0.0027787466116547394],[119,306,72,-0.0029958304131066232],[119,306,73,6.903051699877483E-4],[119,306,74,-1.0972374429155107E-4],[119,306,75,2.271601593599043E-4],[119,306,76,0.001410168810704271],[119,306,77,0.004443693121717621],[119,306,78,0.008555304820581297],[119,306,79,0.013419170902614047],[119,307,64,-0.03649389512859248],[119,307,65,-0.028467760655889823],[119,307,66,-0.019907980532877012],[119,307,67,-0.010123689119754128],[119,307,68,-0.00492941512979965],[119,307,69,-0.0034223173727126743],[119,307,70,-0.002478866452069045],[119,307,71,-0.003559834566853673],[119,307,72,-0.0027887869175996644],[119,307,73,4.984004226132877E-7],[119,307,74,-0.0017146717445546272],[119,307,75,-6.262301101332274E-4],[119,307,76,0.003916723568750682],[119,307,77,0.0056565629702227255],[119,307,78,0.01145740123956382],[119,307,79,0.014296108357013754],[119,308,64,-0.012847228852168172],[119,308,65,-0.006506646026423965],[119,308,66,0.0034204217679845994],[119,308,67,0.01112311583445208],[119,308,68,0.013770752965309566],[119,308,69,0.013994701738980528],[119,308,70,0.007915770201359446],[119,308,71,-0.0013067451249773737],[119,308,72,-0.004765337035432166],[119,308,73,-0.008900445639933557],[119,308,74,-0.012586233670996205],[119,308,75,-0.01074773819032443],[119,308,76,-0.007924512657571325],[119,308,77,-0.00642370899458182],[119,308,78,-0.0011498155637001684],[119,308,79,-4.493675740868952E-4],[119,309,64,-0.010265381557138381],[119,309,65,-0.0034675381614333173],[119,309,66,0.005639537693521296],[119,309,67,0.012264648059728572],[119,309,68,0.016923168396827448],[119,309,69,0.016450853223672124],[119,309,70,0.009927702295552204],[119,309,71,0.0038703665619532063],[119,309,72,-9.742660279326298E-4],[119,309,73,-0.008687075500331667],[119,309,74,-0.011155264891566666],[119,309,75,-0.009617764751704214],[119,309,76,-0.006855378262702966],[119,309,77,-0.005106150801035894],[119,309,78,-0.002020973802875789],[119,309,79,9.347227192429558E-4],[119,310,64,-0.002348973804490756],[119,310,65,0.003394788749174968],[119,310,66,0.01246356743459169],[119,310,67,0.017545438896578724],[119,310,68,0.02128348035168054],[119,310,69,0.021557703879373447],[119,310,70,0.01833702101751586],[119,310,71,0.011208616554044995],[119,310,72,0.007189044516407339],[119,310,73,-4.8719298970040237E-4],[119,310,74,-0.0038016401093054902],[119,310,75,-0.0012499068198689872],[119,310,76,0.002530215310743253],[119,310,77,0.004666450486274343],[119,310,78,0.006736019375983934],[119,310,79,0.010913009694187015],[119,311,64,-3.023037617810309E-4],[119,311,65,0.005726108601563279],[119,311,66,0.012940814222114627],[119,311,67,0.017415284150671284],[119,311,68,0.02146126069444411],[119,311,69,0.022455311611888226],[119,311,70,0.021223314751571812],[119,311,71,0.014626360860911472],[119,311,72,0.010922284944885202],[119,311,73,0.0012063227860723419],[119,311,74,-0.003689433408768511],[119,311,75,3.126292193550706E-4],[119,311,76,0.003994878203367261],[119,311,77,0.007125479554070599],[119,311,78,0.010753932929405838],[119,311,79,0.01276709636729148],[119,312,64,-0.009286751987776065],[119,312,65,-6.03890631553583E-4],[119,312,66,0.0036316161982103135],[119,312,67,0.009318213996239846],[119,312,68,0.01350901275165052],[119,312,69,0.015404636830994134],[119,312,70,0.016311234451236764],[119,312,71,0.015945584033415186],[119,312,72,0.01803627045294187],[119,312,73,0.015480684974279554],[119,312,74,0.009945542193569426],[119,312,75,0.01228948817203511],[119,312,76,0.01716035342475908],[119,312,77,0.017772559083283665],[119,312,78,0.017835546427254503],[119,312,79,0.0223485727819471],[119,313,64,-0.008766864809829925],[119,313,65,3.303925100544558E-4],[119,313,66,0.005528823965749122],[119,313,67,0.010558327730740225],[119,313,68,0.016870547429146843],[119,313,69,0.014473469003333822],[119,313,70,0.015787374538127938],[119,313,71,0.017689489633165703],[119,313,72,0.019832308135610696],[119,313,73,0.019600278289793244],[119,313,74,0.015872328988998444],[119,313,75,0.0182366385554506],[119,313,76,0.020054902600570926],[119,313,77,0.019548513874167367],[119,313,78,0.017039976875938487],[119,313,79,0.02118802095683377],[119,314,64,-0.013477386396116842],[119,314,65,-0.0034176571194533822],[119,314,66,0.002346040535217267],[119,314,67,0.01065147786453001],[119,314,68,0.01669497662797491],[119,314,69,0.0128995396877076],[119,314,70,0.012380814097408016],[119,314,71,0.01744224793115806],[119,314,72,0.02147622101581806],[119,314,73,0.020948903604543573],[119,314,74,0.01948309689105132],[119,314,75,0.020096584641453447],[119,314,76,0.020229336080706484],[119,314,77,0.020056530826424016],[119,314,78,0.013788879262536718],[119,314,79,0.016923421475084105],[119,315,64,-0.015959429253275578],[119,315,65,-0.007346953397422487],[119,315,66,0.0035174984799375836],[119,315,67,0.009900920836288588],[119,315,68,0.01470398761599273],[119,315,69,0.013603668416172734],[119,315,70,0.014283432501545998],[119,315,71,0.01831898572088715],[119,315,72,0.02687009359229535],[119,315,73,0.024566825550858346],[119,315,74,0.024088204673776842],[119,315,75,0.023835029451271694],[119,315,76,0.02411825535854309],[119,315,77,0.020597670412442898],[119,315,78,0.015783319466697227],[119,315,79,0.01896325678629042],[119,316,64,-0.025269149327118656],[119,316,65,-0.015375673446006655],[119,316,66,-0.0027219571539395665],[119,316,67,0.007811290808708099],[119,316,68,0.013021118110590077],[119,316,69,0.015117690842474954],[119,316,70,0.018608791017637474],[119,316,71,0.022570325482594328],[119,316,72,0.03330691975243112],[119,316,73,0.03205039477540865],[119,316,74,0.03158153919815382],[119,316,75,0.031964885541400034],[119,316,76,0.031598210545891486],[119,316,77,0.026595086245536054],[119,316,78,0.023785959411985715],[119,316,79,0.028364213676015188],[119,317,64,-0.02744719261935341],[119,317,65,-0.015619203956230995],[119,317,66,-0.003720099144228481],[119,317,67,0.007781626178076387],[119,317,68,0.010674593724730397],[119,317,69,0.016603707326831488],[119,317,70,0.021535607246760666],[119,317,71,0.027053649303761418],[119,317,72,0.034429511844781005],[119,317,73,0.03304856180851122],[119,317,74,0.03529074607201241],[119,317,75,0.033951136955929176],[119,317,76,0.0337938337090659],[119,317,77,0.027558419781480853],[119,317,78,0.024750300578169307],[119,317,79,0.027740302147857845],[119,318,64,-0.024398214904099533],[119,318,65,-0.007273530170979911],[119,318,66,0.005639816595269007],[119,318,67,0.014527637339338761],[119,318,68,0.018838603911371724],[119,318,69,0.028271031733887744],[119,318,70,0.032778920001817397],[119,318,71,0.04038449420613324],[119,318,72,0.04302239147001535],[119,318,73,0.041915689762749286],[119,318,74,0.043769486777593666],[119,318,75,0.045541459372153176],[119,318,76,0.04329576315961679],[119,318,77,0.039783537636147004],[119,318,78,0.03551830980843901],[119,318,79,0.03666894033001974],[119,319,64,-0.024713795719153053],[119,319,65,-0.003728353370948914],[119,319,66,0.007279232922865128],[119,319,67,0.015364897786166287],[119,319,68,0.025304012647050414],[119,319,69,0.033687682104991],[119,319,70,0.039318641153420694],[119,319,71,0.043199218124851835],[119,319,72,0.04265618765365456],[119,319,73,0.04365013235348153],[119,319,74,0.04666574952020061],[119,319,75,0.048378584048528656],[119,319,76,0.04492742445542437],[119,319,77,0.042898534974220984],[119,319,78,0.03836962666312714],[119,319,79,0.035858157773837794],[120,-64,64,-0.45342778620347657],[120,-64,65,-0.44228226271955473],[120,-64,66,-0.4371518062866504],[120,-64,67,-0.42856695738418465],[120,-64,68,-0.4208203485560127],[120,-64,69,-0.41718656118025166],[120,-64,70,-0.4082978222581664],[120,-64,71,-0.39431253443196146],[120,-64,72,-0.38508495461317693],[120,-64,73,-0.3756634063901803],[120,-64,74,-0.3715544898721241],[120,-64,75,-0.3698066746407025],[120,-64,76,-0.3658403647135976],[120,-64,77,-0.3674812955348665],[120,-64,78,-0.3711051948300935],[120,-64,79,-0.3706094673392389],[120,-63,64,-0.45649326403847984],[120,-63,65,-0.44603847838886107],[120,-63,66,-0.437711923225666],[120,-63,67,-0.4278982788022219],[120,-63,68,-0.42241596878415155],[120,-63,69,-0.4193795377632193],[120,-63,70,-0.40836378130246337],[120,-63,71,-0.38898818865760887],[120,-63,72,-0.37513070470815174],[120,-63,73,-0.363920942083129],[120,-63,74,-0.35986493192385277],[120,-63,75,-0.3617980519711006],[120,-63,76,-0.35843282982578656],[120,-63,77,-0.3641231032287042],[120,-63,78,-0.3703655660061669],[120,-63,79,-0.3707024112717099],[120,-62,64,-0.45378975226218454],[120,-62,65,-0.4433029134948022],[120,-62,66,-0.43199079539618745],[120,-62,67,-0.4264926670422049],[120,-62,68,-0.42200008561181046],[120,-62,69,-0.4148071431178315],[120,-62,70,-0.4050796354730819],[120,-62,71,-0.38717080091487677],[120,-62,72,-0.36948982199436353],[120,-62,73,-0.3618522393809006],[120,-62,74,-0.35569177289415976],[120,-62,75,-0.3567280791036634],[120,-62,76,-0.35482137330969205],[120,-62,77,-0.3583944493913097],[120,-62,78,-0.36462324416021935],[120,-62,79,-0.3686445658986211],[120,-61,64,-0.45600047168825414],[120,-61,65,-0.4457810869563177],[120,-61,66,-0.4356962788978519],[120,-61,67,-0.4308434697787423],[120,-61,68,-0.4242415806756757],[120,-61,69,-0.4152081015178637],[120,-61,70,-0.40520113416968556],[120,-61,71,-0.38792415610323805],[120,-61,72,-0.37234826843185087],[120,-61,73,-0.3643537829197552],[120,-61,74,-0.3585812922137657],[120,-61,75,-0.35864212437334303],[120,-61,76,-0.35676239132681464],[120,-61,77,-0.3602513226383915],[120,-61,78,-0.3643442850511057],[120,-61,79,-0.37031410766104444],[120,-60,64,-0.4577172857985968],[120,-60,65,-0.44631138740293114],[120,-60,66,-0.43476722711638527],[120,-60,67,-0.43097281065437343],[120,-60,68,-0.4209801859151377],[120,-60,69,-0.4117972366572503],[120,-60,70,-0.399861762092495],[120,-60,71,-0.38308062595012476],[120,-60,72,-0.3680571406643485],[120,-60,73,-0.36072539799646897],[120,-60,74,-0.3545738650303303],[120,-60,75,-0.35396662430681963],[120,-60,76,-0.3506633680971312],[120,-60,77,-0.3553927436160008],[120,-60,78,-0.36126668991774025],[120,-60,79,-0.36072052914380315],[120,-59,64,-0.4399501823337503],[120,-59,65,-0.43129605730984416],[120,-59,66,-0.42423262755845387],[120,-59,67,-0.42042475050640216],[120,-59,68,-0.415702589122386],[120,-59,69,-0.4065890960423845],[120,-59,70,-0.3918988094824129],[120,-59,71,-0.38132159566125734],[120,-59,72,-0.3693976742188325],[120,-59,73,-0.36387662971450235],[120,-59,74,-0.359994732904858],[120,-59,75,-0.35581563958109663],[120,-59,76,-0.3510427355332119],[120,-59,77,-0.35085225923012114],[120,-59,78,-0.35264509832091034],[120,-59,79,-0.3488639340761426],[120,-58,64,-0.4361716233178653],[120,-58,65,-0.4282754415410744],[120,-58,66,-0.4228097499233271],[120,-58,67,-0.41978654270538535],[120,-58,68,-0.4124717218518152],[120,-58,69,-0.406478583812044],[120,-58,70,-0.3917057667097392],[120,-58,71,-0.3814319314198258],[120,-58,72,-0.36974269802440923],[120,-58,73,-0.36167641988905874],[120,-58,74,-0.35379649752955683],[120,-58,75,-0.3513823970891408],[120,-58,76,-0.3475502688689582],[120,-58,77,-0.34793383538513345],[120,-58,78,-0.3463457346975091],[120,-58,79,-0.3426940635692027],[120,-57,64,-0.4398033869899919],[120,-57,65,-0.43279314231936916],[120,-57,66,-0.4266360532324002],[120,-57,67,-0.42210705855831465],[120,-57,68,-0.414549941797739],[120,-57,69,-0.4063153481895059],[120,-57,70,-0.39475727623033163],[120,-57,71,-0.38551649854215464],[120,-57,72,-0.3732993524014746],[120,-57,73,-0.36132554188498844],[120,-57,74,-0.3513019721785907],[120,-57,75,-0.34885692358249165],[120,-57,76,-0.3454125223453387],[120,-57,77,-0.34415552113699543],[120,-57,78,-0.3427730273527612],[120,-57,79,-0.3392334239394598],[120,-56,64,-0.4383249982623524],[120,-56,65,-0.4304547313736523],[120,-56,66,-0.4245983640052098],[120,-56,67,-0.42015002467442975],[120,-56,68,-0.415537674969846],[120,-56,69,-0.4049884559760699],[120,-56,70,-0.39474216668401],[120,-56,71,-0.384309196428584],[120,-56,72,-0.37326496190094804],[120,-56,73,-0.3586748934732544],[120,-56,74,-0.34899591300688815],[120,-56,75,-0.3450537528498378],[120,-56,76,-0.34239970544613735],[120,-56,77,-0.3397976388276061],[120,-56,78,-0.3374829403312681],[120,-56,79,-0.3345453676047383],[120,-55,64,-0.43463281407825727],[120,-55,65,-0.4290649501848243],[120,-55,66,-0.4232887271344812],[120,-55,67,-0.4205846271025828],[120,-55,68,-0.4145306946193745],[120,-55,69,-0.4046082821298649],[120,-55,70,-0.39645253626525456],[120,-55,71,-0.38600627395901854],[120,-55,72,-0.3729575699135804],[120,-55,73,-0.3551812656498462],[120,-55,74,-0.3462140211501746],[120,-55,75,-0.3396296781230887],[120,-55,76,-0.3364379326597637],[120,-55,77,-0.3349180709341929],[120,-55,78,-0.33457537061501924],[120,-55,79,-0.33247076557584915],[120,-54,64,-0.43145489965512174],[120,-54,65,-0.42802131612772026],[120,-54,66,-0.42401103205231605],[120,-54,67,-0.42104833446770545],[120,-54,68,-0.4148831426882299],[120,-54,69,-0.40594854971504307],[120,-54,70,-0.3970827702592618],[120,-54,71,-0.38657113546667565],[120,-54,72,-0.3710093184791222],[120,-54,73,-0.3537894260008415],[120,-54,74,-0.3435269179555218],[120,-54,75,-0.33765938926333233],[120,-54,76,-0.3346742747347141],[120,-54,77,-0.33315514225963605],[120,-54,78,-0.32961821384265966],[120,-54,79,-0.32837667411883115],[120,-53,64,-0.4368488743099488],[120,-53,65,-0.43305163030422944],[120,-53,66,-0.4284901974906523],[120,-53,67,-0.42486738199877805],[120,-53,68,-0.41774933776082057],[120,-53,69,-0.4101999894577915],[120,-53,70,-0.4014339393412979],[120,-53,71,-0.38997586923587363],[120,-53,72,-0.37557914247308427],[120,-53,73,-0.3597683760506573],[120,-53,74,-0.3495221546000911],[120,-53,75,-0.3397986723791387],[120,-53,76,-0.33642604524134884],[120,-53,77,-0.3341115267932776],[120,-53,78,-0.3295554591971926],[120,-53,79,-0.32818619677931893],[120,-52,64,-0.4406324495956113],[120,-52,65,-0.4325533590144351],[120,-52,66,-0.4256759489850883],[120,-52,67,-0.4225210970477089],[120,-52,68,-0.4142400049370579],[120,-52,69,-0.4060424515756321],[120,-52,70,-0.3954906959255416],[120,-52,71,-0.3849251939277026],[120,-52,72,-0.37384131011489763],[120,-52,73,-0.3595252506710281],[120,-52,74,-0.34688604953341556],[120,-52,75,-0.3340829510962119],[120,-52,76,-0.3314824479234136],[120,-52,77,-0.32622285636552767],[120,-52,78,-0.3225537042737754],[120,-52,79,-0.3216382460289278],[120,-51,64,-0.4556546547122236],[120,-51,65,-0.4512969106163803],[120,-51,66,-0.44986469310579014],[120,-51,67,-0.44813370232539534],[120,-51,68,-0.44428529967200975],[120,-51,69,-0.4323882269297179],[120,-51,70,-0.42240710266210657],[120,-51,71,-0.4107521398336784],[120,-51,72,-0.39543505566019227],[120,-51,73,-0.3792132717919883],[120,-51,74,-0.3641111657710579],[120,-51,75,-0.34986719167650193],[120,-51,76,-0.340218768310778],[120,-51,77,-0.33000576547889326],[120,-51,78,-0.3193887094657517],[120,-51,79,-0.31319465667126406],[120,-50,64,-0.45366596140935334],[120,-50,65,-0.45237730217072614],[120,-50,66,-0.44820614495286565],[120,-50,67,-0.4496736821815664],[120,-50,68,-0.44409049122062927],[120,-50,69,-0.43366984537394837],[120,-50,70,-0.4200536450210698],[120,-50,71,-0.408503263934117],[120,-50,72,-0.3940504398619029],[120,-50,73,-0.3769583365932139],[120,-50,74,-0.36390733736151604],[120,-50,75,-0.3469296344829664],[120,-50,76,-0.33763141707247857],[120,-50,77,-0.3264940652549414],[120,-50,78,-0.31819320227992676],[120,-50,79,-0.311824180188098],[120,-49,64,-0.44401852922859925],[120,-49,65,-0.4329509804251252],[120,-49,66,-0.4546240314458657],[120,-49,67,-0.45450925933955677],[120,-49,68,-0.4476826787570439],[120,-49,69,-0.43757662225799865],[120,-49,70,-0.42317470453052064],[120,-49,71,-0.4093150902260373],[120,-49,72,-0.3956837567858991],[120,-49,73,-0.3785139150068632],[120,-49,74,-0.3639355193962457],[120,-49,75,-0.3487396348421019],[120,-49,76,-0.33772670435043356],[120,-49,77,-0.3260132946365785],[120,-49,78,-0.316320719742018],[120,-49,79,-0.31029411868116086],[120,-48,64,-0.42928807940000396],[120,-48,65,-0.4107946141360267],[120,-48,66,-0.45481500676435027],[120,-48,67,-0.45403094942473227],[120,-48,68,-0.4439949163318664],[120,-48,69,-0.4331418877741351],[120,-48,70,-0.41954852396539527],[120,-48,71,-0.4069556459975662],[120,-48,72,-0.3945673448191357],[120,-48,73,-0.37724251402943343],[120,-48,74,-0.3608527171218322],[120,-48,75,-0.3485472872545885],[120,-48,76,-0.33681293466546186],[120,-48,77,-0.32598237317193224],[120,-48,78,-0.31555590081980034],[120,-48,79,-0.3085695718812674],[120,-47,64,-0.41166514687829714],[120,-47,65,-0.3974317544612189],[120,-47,66,-0.44914922268568647],[120,-47,67,-0.4402381711241311],[120,-47,68,-0.42902289314145076],[120,-47,69,-0.4187397056519597],[120,-47,70,-0.4083734437860186],[120,-47,71,-0.3973620775211504],[120,-47,72,-0.3889927540295878],[120,-47,73,-0.3759705841923423],[120,-47,74,-0.3602129882568446],[120,-47,75,-0.3501510382605677],[120,-47,76,-0.3380621877747419],[120,-47,77,-0.32986685167698077],[120,-47,78,-0.31993195048549306],[120,-47,79,-0.31653944293180525],[120,-46,64,-0.4602545588771333],[120,-46,65,-0.43503838862919636],[120,-46,66,-0.4456920608912722],[120,-46,67,-0.43401987130367486],[120,-46,68,-0.4256076505159172],[120,-46,69,-0.41383150947541186],[120,-46,70,-0.40564005491616895],[120,-46,71,-0.39424264004416243],[120,-46,72,-0.3844193450175475],[120,-46,73,-0.37161967877356616],[120,-46,74,-0.3586087477144534],[120,-46,75,-0.349462862022136],[120,-46,76,-0.33565921071358806],[120,-46,77,-0.32853792090566036],[120,-46,78,-0.32026001301574414],[120,-46,79,-0.31636168964568856],[120,-45,64,-0.44938471636535776],[120,-45,65,-0.4015218815048207],[120,-45,66,-0.4252697077666432],[120,-45,67,-0.4354876051921969],[120,-45,68,-0.42533692798763423],[120,-45,69,-0.4136205205229165],[120,-45,70,-0.4076598210628506],[120,-45,71,-0.3948005188960185],[120,-45,72,-0.3836821752399832],[120,-45,73,-0.37189098178083313],[120,-45,74,-0.35941538943511064],[120,-45,75,-0.3507885047696924],[120,-45,76,-0.3393423435138625],[120,-45,77,-0.32895294772911704],[120,-45,78,-0.3215380904677719],[120,-45,79,-0.32087861501438913],[120,-44,64,-0.40668482622426183],[120,-44,65,-0.309201562328694],[120,-44,66,-0.36303012516062355],[120,-44,67,-0.4277237350726821],[120,-44,68,-0.43209192011048114],[120,-44,69,-0.4237450505482967],[120,-44,70,-0.41811682957028695],[120,-44,71,-0.40921348348672915],[120,-44,72,-0.3986317370817335],[120,-44,73,-0.39208913092035497],[120,-44,74,-0.3790381979415845],[120,-44,75,-0.37124532608234095],[120,-44,76,-0.3604121516942967],[120,-44,77,-0.349444255576738],[120,-44,78,-0.3419591218859785],[120,-44,79,-0.3377401106237326],[120,-43,64,-0.36425387091537004],[120,-43,65,-0.27137139198496363],[120,-43,66,-0.3413942011480918],[120,-43,67,-0.420864518645042],[120,-43,68,-0.4169606429827919],[120,-43,69,-0.4089470137464875],[120,-43,70,-0.4039576031503997],[120,-43,71,-0.3970870145108031],[120,-43,72,-0.3858570596055204],[120,-43,73,-0.38064546338435895],[120,-43,74,-0.36837749232170597],[120,-43,75,-0.3614150345301557],[120,-43,76,-0.3511525869365617],[120,-43,77,-0.3439594094113628],[120,-43,78,-0.3384972841711996],[120,-43,79,-0.3337098001874313],[120,-42,64,-0.32094026554389465],[120,-42,65,-0.2631738259064239],[120,-42,66,-0.27962315215235356],[120,-42,67,-0.39341283800473714],[120,-42,68,-0.413110989375578],[120,-42,69,-0.40626135827393756],[120,-42,70,-0.3976267790767268],[120,-42,71,-0.39254186242540334],[120,-42,72,-0.3819409487417982],[120,-42,73,-0.376232613835944],[120,-42,74,-0.3670988889231659],[120,-42,75,-0.3574957715321494],[120,-42,76,-0.3496243324304653],[120,-42,77,-0.3416388839686999],[120,-42,78,-0.33649604178280945],[120,-42,79,-0.3323782067644168],[120,-41,64,-0.2811204323840024],[120,-41,65,-0.2073815943072295],[120,-41,66,-0.15541810604109746],[120,-41,67,-0.2605320800947423],[120,-41,68,-0.364022294251976],[120,-41,69,-0.40696836120262764],[120,-41,70,-0.3984057732400576],[120,-41,71,-0.3912251905300632],[120,-41,72,-0.3836018637520617],[120,-41,73,-0.3782485599235621],[120,-41,74,-0.3699883123099787],[120,-41,75,-0.35612096272974497],[120,-41,76,-0.34833921895614006],[120,-41,77,-0.3422851526421264],[120,-41,78,-0.33570767573223137],[120,-41,79,-0.3299733906019899],[120,-40,64,-0.2516049596360941],[120,-40,65,-0.186417157665461],[120,-40,66,-0.09859646607842026],[120,-40,67,-0.21924168562859706],[120,-40,68,-0.3551539231222695],[120,-40,69,-0.40370309552431755],[120,-40,70,-0.39610970355006925],[120,-40,71,-0.38819302745815176],[120,-40,72,-0.3837106185637573],[120,-40,73,-0.3788660522545305],[120,-40,74,-0.36883893698450576],[120,-40,75,-0.35399499648356025],[120,-40,76,-0.34625383862235537],[120,-40,77,-0.33853767828059866],[120,-40,78,-0.3307512534199143],[120,-40,79,-0.32505930161383345],[120,-39,64,-0.2009548917245853],[120,-39,65,-0.147879558987692],[120,-39,66,-0.05898412705648742],[120,-39,67,-0.20537741529291087],[120,-39,68,-0.37060427956865044],[120,-39,69,-0.3964971002737989],[120,-39,70,-0.386963540317833],[120,-39,71,-0.379045531746725],[120,-39,72,-0.3758217039911512],[120,-39,73,-0.3688217650436023],[120,-39,74,-0.3598706642745359],[120,-39,75,-0.34417548067379533],[120,-39,76,-0.334686248800069],[120,-39,77,-0.33061108889683977],[120,-39,78,-0.32350733959191036],[120,-39,79,-0.3153102296945691],[120,-38,64,-0.0395689181691935],[120,-38,65,-0.011739782211932781],[120,-38,66,-0.07233152344613103],[120,-38,67,-0.3103457131013579],[120,-38,68,-0.3952337758677179],[120,-38,69,-0.3915572041234054],[120,-38,70,-0.38293321679855064],[120,-38,71,-0.3762466420318351],[120,-38,72,-0.37310212519761055],[120,-38,73,-0.36593421091226375],[120,-38,74,-0.3555996127763206],[120,-38,75,-0.3393178740556246],[120,-38,76,-0.3309636605170806],[120,-38,77,-0.32800548805163077],[120,-38,78,-0.32042829637551584],[120,-38,79,-0.3105041387826511],[120,-37,64,0.05725507249201128],[120,-37,65,0.07928373558493385],[120,-37,66,-0.02184117316605011],[120,-37,67,-0.2897293597586047],[120,-37,68,-0.3956473804176627],[120,-37,69,-0.3945966977355961],[120,-37,70,-0.38580662126343723],[120,-37,71,-0.3801391363932055],[120,-37,72,-0.37511780081377827],[120,-37,73,-0.36568749687563373],[120,-37,74,-0.3557309685325683],[120,-37,75,-0.3427069323356025],[120,-37,76,-0.33423850146306605],[120,-37,77,-0.3296167958524104],[120,-37,78,-0.3232066201212234],[120,-37,79,-0.3130888047363366],[120,-36,64,0.08560690056499004],[120,-36,65,0.09704759437989718],[120,-36,66,-8.557430449472325E-4],[120,-36,67,-0.3078497975222562],[120,-36,68,-0.38449807642094846],[120,-36,69,-0.3877980363374786],[120,-36,70,-0.3793523292335182],[120,-36,71,-0.37605562297567197],[120,-36,72,-0.36793377548717754],[120,-36,73,-0.35896265921259707],[120,-36,74,-0.34741826486880095],[120,-36,75,-0.33669399977190523],[120,-36,76,-0.328584182923591],[120,-36,77,-0.32252642869269377],[120,-36,78,-0.3180738734019325],[120,-36,79,-0.3079270642773914],[120,-35,64,-0.019871799174182747],[120,-35,65,-0.04783875653044578],[120,-35,66,-0.20989759097154703],[120,-35,67,-0.3936666952157159],[120,-35,68,-0.39036277233497346],[120,-35,69,-0.3887941197087358],[120,-35,70,-0.38250157527022643],[120,-35,71,-0.379875224776953],[120,-35,72,-0.37335469962183754],[120,-35,73,-0.3651814338969789],[120,-35,74,-0.3513050177798922],[120,-35,75,-0.34316627457202625],[120,-35,76,-0.3318099733911676],[120,-35,77,-0.32207568677292314],[120,-35,78,-0.31410270319584266],[120,-35,79,-0.30058115550592807],[120,-34,64,-0.017792441457680552],[120,-34,65,-0.028680551965105716],[120,-34,66,-0.22604627076800726],[120,-34,67,-0.38996672448070047],[120,-34,68,-0.3870121676727126],[120,-34,69,-0.38539973775922043],[120,-34,70,-0.38127765988956414],[120,-34,71,-0.377201744732653],[120,-34,72,-0.3689251841380076],[120,-34,73,-0.362357499680124],[120,-34,74,-0.3518354178314339],[120,-34,75,-0.343258497463156],[120,-34,76,-0.3304411282760431],[120,-34,77,-0.3227191231978243],[120,-34,78,-0.3114133662900074],[120,-34,79,-0.29635163026572436],[120,-33,64,0.004338184955993696],[120,-33,65,-0.0039992443225568275],[120,-33,66,-0.19117432857254316],[120,-33,67,-0.32074611750672966],[120,-33,68,-0.32209643455787235],[120,-33,69,-0.325363091252877],[120,-33,70,-0.3255942386496881],[120,-33,71,-0.3237685291929592],[120,-33,72,-0.3239112468589573],[120,-33,73,-0.32094975624856775],[120,-33,74,-0.3142324102511939],[120,-33,75,-0.3115716872723179],[120,-33,76,-0.3058752865121044],[120,-33,77,-0.3002452075502132],[120,-33,78,-0.29252917985372257],[120,-33,79,-0.2831187229410099],[120,-32,64,0.007804314805423651],[120,-32,65,0.005457258925776254],[120,-32,66,-0.19435980995024238],[120,-32,67,-0.3170882023556302],[120,-32,68,-0.31742104898804996],[120,-32,69,-0.3203234500762255],[120,-32,70,-0.3197552940887127],[120,-32,71,-0.3190856277252002],[120,-32,72,-0.32036898631976213],[120,-32,73,-0.31546111099890894],[120,-32,74,-0.31204871157579694],[120,-32,75,-0.3083856847758002],[120,-32,76,-0.3012913675143135],[120,-32,77,-0.29601967280978997],[120,-32,78,-0.28821608191158016],[120,-32,79,-0.28026539981630416],[120,-31,64,-0.045344503405923386],[120,-31,65,-0.05637209201165072],[120,-31,66,-0.16913147515769383],[120,-31,67,-0.2379900579512753],[120,-31,68,-0.31043812444245766],[120,-31,69,-0.3146964385755335],[120,-31,70,-0.31404924579665977],[120,-31,71,-0.3143741594580558],[120,-31,72,-0.3168293920656619],[120,-31,73,-0.31169937308354456],[120,-31,74,-0.3068434739261762],[120,-31,75,-0.3053989951916096],[120,-31,76,-0.29676372718398697],[120,-31,77,-0.2922799275306562],[120,-31,78,-0.28585308100745405],[120,-31,79,-0.279149388613072],[120,-30,64,-0.02989771181442058],[120,-30,65,-0.06600872997264537],[120,-30,66,-0.1480419226235878],[120,-30,67,-0.20251495205616993],[120,-30,68,-0.304511200306264],[120,-30,69,-0.30641713708825025],[120,-30,70,-0.3082922174555748],[120,-30,71,-0.3098593393150574],[120,-30,72,-0.3115202150948485],[120,-30,73,-0.30793412930082953],[120,-30,74,-0.3052519931267104],[120,-30,75,-0.3008227328015939],[120,-30,76,-0.29375037421237055],[120,-30,77,-0.2857609457342894],[120,-30,78,-0.28424090177865996],[120,-30,79,-0.2799857070095883],[120,-29,64,0.0470624921283605],[120,-29,65,0.0033703785377276474],[120,-29,66,-0.06546574015708298],[120,-29,67,-0.12935884748099294],[120,-29,68,-0.23854964671573475],[120,-29,69,-0.30568868651855763],[120,-29,70,-0.3087875417929906],[120,-29,71,-0.308789886513729],[120,-29,72,-0.31194957263137507],[120,-29,73,-0.31048695090782213],[120,-29,74,-0.30673757169312554],[120,-29,75,-0.30217393174844],[120,-29,76,-0.2921277909510054],[120,-29,77,-0.2864040127653861],[120,-29,78,-0.28398045546607686],[120,-29,79,-0.27909609281902403],[120,-28,64,0.07640920638258147],[120,-28,65,0.010047498091163343],[120,-28,66,-0.041015836473946465],[120,-28,67,-0.12066598522120467],[120,-28,68,-0.21295967280011807],[120,-28,69,-0.2987089468659876],[120,-28,70,-0.3015341015554441],[120,-28,71,-0.3002271799735663],[120,-28,72,-0.3016827799923232],[120,-28,73,-0.30305343114458333],[120,-28,74,-0.3018095515885142],[120,-28,75,-0.2965696592527475],[120,-28,76,-0.2851663857126869],[120,-28,77,-0.2802723316594766],[120,-28,78,-0.2754218522976525],[120,-28,79,-0.2724600761534452],[120,-27,64,0.14646208768135188],[120,-27,65,0.1074256503604688],[120,-27,66,0.056539179752947644],[120,-27,67,0.008310878089324514],[120,-27,68,-0.09156183325958497],[120,-27,69,-0.20467616594961208],[120,-27,70,-0.2851111353763057],[120,-27,71,-0.28038770610337066],[120,-27,72,-0.28356309505500626],[120,-27,73,-0.2867608062928076],[120,-27,74,-0.28398980676725044],[120,-27,75,-0.28276133946201115],[120,-27,76,-0.2733072521808495],[120,-27,77,-0.26898145845562005],[120,-27,78,-0.2687971599908449],[120,-27,79,-0.2666725002389396],[120,-26,64,0.1985103124524668],[120,-26,65,0.13310822334797706],[120,-26,66,0.09891769067817346],[120,-26,67,0.0441238736913343],[120,-26,68,-0.06398387741318887],[120,-26,69,-0.17298977966331608],[120,-26,70,-0.2777857045437394],[120,-26,71,-0.2767883144086343],[120,-26,72,-0.28022752253206534],[120,-26,73,-0.28394018715011615],[120,-26,74,-0.2809839927010352],[120,-26,75,-0.2782022736561489],[120,-26,76,-0.27124197903195585],[120,-26,77,-0.2664148153484972],[120,-26,78,-0.26515047920909074],[120,-26,79,-0.2666025001483153],[120,-25,64,0.20233826630138183],[120,-25,65,0.12850327145037094],[120,-25,66,0.11223299780650159],[120,-25,67,0.0468928903908577],[120,-25,68,-0.08029119462486181],[120,-25,69,-0.18879871882513075],[120,-25,70,-0.2790442271001914],[120,-25,71,-0.27911162553593755],[120,-25,72,-0.28059791715848204],[120,-25,73,-0.2830417690915418],[120,-25,74,-0.2813991365208363],[120,-25,75,-0.27745286871997377],[120,-25,76,-0.2711996946862594],[120,-25,77,-0.26846854502234063],[120,-25,78,-0.2645145834683766],[120,-25,79,-0.2664131915114898],[120,-24,64,0.20857950599105293],[120,-24,65,0.13989270628945077],[120,-24,66,0.10213415784514557],[120,-24,67,0.016064956540701503],[120,-24,68,-0.08138908045729382],[120,-24,69,-0.2064125969656686],[120,-24,70,-0.27496175814611873],[120,-24,71,-0.2759017775374334],[120,-24,72,-0.27726068002926935],[120,-24,73,-0.2785178512645132],[120,-24,74,-0.2777698056048433],[120,-24,75,-0.27547934067116786],[120,-24,76,-0.27081680498805694],[120,-24,77,-0.2684924431543035],[120,-24,78,-0.2634476502487595],[120,-24,79,-0.2632735396127915],[120,-23,64,0.2096014062636676],[120,-23,65,0.10187359617408132],[120,-23,66,0.014508269528876128],[120,-23,67,-0.12861361211651515],[120,-23,68,-0.1958497105625451],[120,-23,69,-0.28496208761011843],[120,-23,70,-0.28368535808924566],[120,-23,71,-0.28431490413297494],[120,-23,72,-0.28609364693324624],[120,-23,73,-0.28520012178013066],[120,-23,74,-0.28404619239667117],[120,-23,75,-0.2831069160976986],[120,-23,76,-0.28277844964251453],[120,-23,77,-0.2784764759644629],[120,-23,78,-0.27449054245930854],[120,-23,79,-0.27112873161394263],[120,-22,64,0.22023142919526367],[120,-22,65,0.10704180272774516],[120,-22,66,-0.02021812187380756],[120,-22,67,-0.1638242422479303],[120,-22,68,-0.22056233139375692],[120,-22,69,-0.2805229138856884],[120,-22,70,-0.28019076284863687],[120,-22,71,-0.2816865453287811],[120,-22,72,-0.2837745359630315],[120,-22,73,-0.281833822466522],[120,-22,74,-0.28227645533868156],[120,-22,75,-0.28148513767732],[120,-22,76,-0.28168323047215776],[120,-22,77,-0.2774395546272255],[120,-22,78,-0.274599982772961],[120,-22,79,-0.272344341492656],[120,-21,64,0.2242663769506903],[120,-21,65,0.20693292332521973],[120,-21,66,0.03147548455682542],[120,-21,67,-0.12917928894575817],[120,-21,68,-0.16529529800251408],[120,-21,69,-0.27994975005071193],[120,-21,70,-0.2786084758625583],[120,-21,71,-0.28392280228949685],[120,-21,72,-0.28394357809979276],[120,-21,73,-0.28373851291365304],[120,-21,74,-0.2846931428834458],[120,-21,75,-0.28420490241053364],[120,-21,76,-0.2841683003600214],[120,-21,77,-0.28043326645728117],[120,-21,78,-0.2810858334720232],[120,-21,79,-0.27850410144602783],[120,-20,64,0.2140629864773141],[120,-20,65,0.17706133514972966],[120,-20,66,0.025569541256406092],[120,-20,67,-0.15106362380861407],[120,-20,68,-0.18327133977168458],[120,-20,69,-0.27487273551059443],[120,-20,70,-0.27312583064442936],[120,-20,71,-0.27768503060272376],[120,-20,72,-0.27979127165184203],[120,-20,73,-0.27717354345460676],[120,-20,74,-0.27915612045327143],[120,-20,75,-0.2811639693705942],[120,-20,76,-0.28100737032072287],[120,-20,77,-0.2772666894833111],[120,-20,78,-0.27767374765482655],[120,-20,79,-0.27761472024550937],[120,-19,64,0.20926129599619064],[120,-19,65,0.218053244121935],[120,-19,66,0.1276783126744661],[120,-19,67,-0.018683316993399535],[120,-19,68,-0.07073695822368065],[120,-19,69,-0.1489392459927934],[120,-19,70,-0.20278531948139714],[120,-19,71,-0.23868693974556784],[120,-19,72,-0.26168820182939945],[120,-19,73,-0.2683233969585438],[120,-19,74,-0.26957834788725865],[120,-19,75,-0.27126644677190487],[120,-19,76,-0.27006375217419615],[120,-19,77,-0.26679561720048817],[120,-19,78,-0.2673719817993657],[120,-19,79,-0.26721183371918494],[120,-18,64,0.19992132660648848],[120,-18,65,0.20467622558947257],[120,-18,66,0.09468073454729098],[120,-18,67,0.0028025123077785596],[120,-18,68,-0.05293232588694177],[120,-18,69,-0.11436398126333433],[120,-18,70,-0.17007772637294105],[120,-18,71,-0.19626082457189706],[120,-18,72,-0.20066981147555296],[120,-18,73,-0.2478196377246756],[120,-18,74,-0.26412150695202596],[120,-18,75,-0.26699471344940595],[120,-18,76,-0.26687134899222914],[120,-18,77,-0.26605424820916457],[120,-18,78,-0.2648881236372312],[120,-18,79,-0.2636820642863109],[120,-17,64,0.19080889295197515],[120,-17,65,0.1955959277612579],[120,-17,66,0.08238145400954328],[120,-17,67,0.01526698081058242],[120,-17,68,-0.037388779318688475],[120,-17,69,-0.10085536434803966],[120,-17,70,-0.1495585474100719],[120,-17,71,-0.16883260531071373],[120,-17,72,-0.16866294113538188],[120,-17,73,-0.24483702356105114],[120,-17,74,-0.26109934672018664],[120,-17,75,-0.26638454723202487],[120,-17,76,-0.26670570069485094],[120,-17,77,-0.2646193881401482],[120,-17,78,-0.26317586809832283],[120,-17,79,-0.2630380978142167],[120,-16,64,0.1932833881009679],[120,-16,65,0.19881845495311465],[120,-16,66,0.15106566265571164],[120,-16,67,0.08278924362371251],[120,-16,68,0.02071739419324728],[120,-16,69,0.00139791084955454],[120,-16,70,-0.04196273689331648],[120,-16,71,-0.042832787763805974],[120,-16,72,-0.057507234631145876],[120,-16,73,-0.14776476040162018],[120,-16,74,-0.25679027753708894],[120,-16,75,-0.26186975015190694],[120,-16,76,-0.2632525984505419],[120,-16,77,-0.26206856618987556],[120,-16,78,-0.2612183800879735],[120,-16,79,-0.2606573440714823],[120,-15,64,0.19172208212936914],[120,-15,65,0.19634323598305245],[120,-15,66,0.11255889293596472],[120,-15,67,0.07119360287674617],[120,-15,68,0.02115551220068937],[120,-15,69,0.00852897385727222],[120,-15,70,-0.027564110541352493],[120,-15,71,-0.016323927307032415],[120,-15,72,-0.056207772140264206],[120,-15,73,-0.13944718932954048],[120,-15,74,-0.26057503472163757],[120,-15,75,-0.2650836593546245],[120,-15,76,-0.2644704271246704],[120,-15,77,-0.2652907150954702],[120,-15,78,-0.26310144599015073],[120,-15,79,-0.2622517047479369],[120,-14,64,0.07883065626954673],[120,-14,65,0.08373743893351979],[120,-14,66,0.0045463257273800906],[120,-14,67,-0.029270036219351536],[120,-14,68,-0.044716078986963254],[120,-14,69,-0.05669360999765788],[120,-14,70,-0.07784264188261705],[120,-14,71,-0.06370124565276239],[120,-14,72,-0.09691734014441161],[120,-14,73,-0.1641627845610079],[120,-14,74,-0.25661026284922417],[120,-14,75,-0.26315352630416444],[120,-14,76,-0.26314602629415074],[120,-14,77,-0.2623442511034037],[120,-14,78,-0.25935327703352395],[120,-14,79,-0.2581871745678211],[120,-13,64,0.07845185430941187],[120,-13,65,0.08274890806379048],[120,-13,66,0.03800259451609744],[120,-13,67,0.019951032943613944],[120,-13,68,0.005791351754337565],[120,-13,69,-0.013894300524123382],[120,-13,70,3.5374861547499137E-4],[120,-13,71,-0.011395294661178307],[120,-13,72,-0.03018135078902434],[120,-13,73,-0.11370229145232344],[120,-13,74,-0.23896147523260527],[120,-13,75,-0.26450944929223075],[120,-13,76,-0.26055426062725784],[120,-13,77,-0.2608466040607073],[120,-13,78,-0.2593088924475435],[120,-13,79,-0.258342374708274],[120,-12,64,0.06650104976465326],[120,-12,65,0.07070571093730216],[120,-12,66,0.013020326473219102],[120,-12,67,0.01124365711376632],[120,-12,68,-0.014603464164909319],[120,-12,69,-0.021139361143396013],[120,-12,70,1.3391533553797075E-4],[120,-12,71,-0.02398467997229728],[120,-12,72,-0.024453655820118575],[120,-12,73,-0.14093506212984594],[120,-12,74,-0.2373934152331306],[120,-12,75,-0.25941752421615544],[120,-12,76,-0.25443547528105137],[120,-12,77,-0.2545352922289538],[120,-12,78,-0.2562571352106544],[120,-12,79,-0.2543278047799784],[120,-11,64,0.0659862110993953],[120,-11,65,0.06943897084051592],[120,-11,66,0.061496578934289226],[120,-11,67,0.06568689286584387],[120,-11,68,0.04130524120411491],[120,-11,69,0.043116011453222386],[120,-11,70,0.06288009230755892],[120,-11,71,0.03144319650460256],[120,-11,72,0.016572369062668568],[120,-11,73,-0.10174270111296851],[120,-11,74,-0.21955288400954912],[120,-11,75,-0.22888914138878763],[120,-11,76,-0.22633786837463815],[120,-11,77,-0.22679993049223152],[120,-11,78,-0.2305318837395413],[120,-11,79,-0.22658044040420527],[120,-10,64,0.056062374901971634],[120,-10,65,0.05971974676586268],[120,-10,66,0.030503979096158595],[120,-10,67,0.05033685175342126],[120,-10,68,0.029878557150045643],[120,-10,69,0.026773233226412674],[120,-10,70,0.05386785746628314],[120,-10,71,0.025759891393024426],[120,-10,72,0.0058823239884928935],[120,-10,73,-0.09141991091415477],[120,-10,74,-0.22270252466755203],[120,-10,75,-0.223326999153451],[120,-10,76,-0.22045906998822307],[120,-10,77,-0.22207274992128395],[120,-10,78,-0.22645863149199796],[120,-10,79,-0.22188595444046522],[120,-9,64,0.0647992024302432],[120,-9,65,0.06620792052554553],[120,-9,66,0.019679002249197997],[120,-9,67,0.04626120872321787],[120,-9,68,0.03915520580913162],[120,-9,69,0.022486278679033106],[120,-9,70,0.05835146938380839],[120,-9,71,0.027675843235416553],[120,-9,72,-0.0035316267667651335],[120,-9,73,-0.07543964826684507],[120,-9,74,-0.21604955038894963],[120,-9,75,-0.2145971902405424],[120,-9,76,-0.2156530387871156],[120,-9,77,-0.21810641249289348],[120,-9,78,-0.22127913929912038],[120,-9,79,-0.21672873962852154],[120,-8,64,0.06659007726786342],[120,-8,65,0.06506172336632837],[120,-8,66,-0.01907191779228054],[120,-8,67,0.012852922133187283],[120,-8,68,0.024787625387090007],[120,-8,69,0.008467839424295937],[120,-8,70,0.0398437071383872],[120,-8,71,-0.007185227727419002],[120,-8,72,-0.059294590736670705],[120,-8,73,-0.12027902645073368],[120,-8,74,-0.20693774143262672],[120,-8,75,-0.2090347099099525],[120,-8,76,-0.20847273689351822],[120,-8,77,-0.21409975815774152],[120,-8,78,-0.21639789831703468],[120,-8,79,-0.2133927584329432],[120,-7,64,0.06490935275646692],[120,-7,65,0.04359122768557469],[120,-7,66,-0.026070389448029196],[120,-7,67,-0.01580933671611523],[120,-7,68,0.02384339781724057],[120,-7,69,0.011537413906495264],[120,-7,70,0.03227162053433097],[120,-7,71,-0.01612558803499739],[120,-7,72,-0.07793672690313211],[120,-7,73,-0.13390243182565847],[120,-7,74,-0.20110727399592365],[120,-7,75,-0.20283623757121017],[120,-7,76,-0.20475875608076452],[120,-7,77,-0.21026813272969608],[120,-7,78,-0.21238298191718122],[120,-7,79,-0.21129082887041267],[120,-6,64,0.06167953679796832],[120,-6,65,0.01042307184633312],[120,-6,66,-0.05114592128155221],[120,-6,67,-0.029753173400809574],[120,-6,68,0.01474592745301509],[120,-6,69,0.017621802099713563],[120,-6,70,0.03878607368457351],[120,-6,71,-0.025372274941943024],[120,-6,72,-0.08290873847479138],[120,-6,73,-0.15523592447939938],[120,-6,74,-0.19614075223140542],[120,-6,75,-0.20019402065785816],[120,-6,76,-0.20253953989220194],[120,-6,77,-0.2060864868913298],[120,-6,78,-0.20891389720624332],[120,-6,79,-0.20840821835091786],[120,-5,64,0.03131652859886211],[120,-5,65,-0.016518815774506646],[120,-5,66,-0.043598513718542134],[120,-5,67,0.014418326895329736],[120,-5,68,0.05475065375351412],[120,-5,69,0.07141171926041767],[120,-5,70,0.08786071083241177],[120,-5,71,0.06819830649566694],[120,-5,72,0.04477358248127075],[120,-5,73,-0.01405546095032606],[120,-5,74,-0.11971617756287714],[120,-5,75,-0.20175698007999018],[120,-5,76,-0.2026574543630113],[120,-5,77,-0.20713332581726263],[120,-5,78,-0.2100504262540065],[120,-5,79,-0.20767737636896708],[120,-4,64,-0.006246536615361259],[120,-4,65,-0.04200173370672014],[120,-4,66,-0.06375768487004979],[120,-4,67,-0.012917539871775713],[120,-4,68,0.026344459653997426],[120,-4,69,0.051027877932380034],[120,-4,70,0.06903351909129007],[120,-4,71,0.05201744134432004],[120,-4,72,0.014284555864894771],[120,-4,73,-0.03145379930467268],[120,-4,74,-0.11545149832895352],[120,-4,75,-0.20174042518382457],[120,-4,76,-0.20105121572492513],[120,-4,77,-0.20541689165152013],[120,-4,78,-0.20819951721955243],[120,-4,79,-0.20554704395822562],[120,-3,64,0.011123805154875377],[120,-3,65,-0.023647015716621367],[120,-3,66,-0.0309409772812054],[120,-3,67,0.01506940636243631],[120,-3,68,0.057786291167385866],[120,-3,69,0.06784643936561137],[120,-3,70,0.07881678384309354],[120,-3,71,0.09083730873981595],[120,-3,72,0.060408391000266404],[120,-3,73,0.006082702722884886],[120,-3,74,-0.05425866011233549],[120,-3,75,-0.20626435575328417],[120,-3,76,-0.20691799230544036],[120,-3,77,-0.2087544577594284],[120,-3,78,-0.20962197497359875],[120,-3,79,-0.2093789273341001],[120,-2,64,-0.008291004524587225],[120,-2,65,-0.0436389146792351],[120,-2,66,-0.04619945881220837],[120,-2,67,0.0036497081726383496],[120,-2,68,0.035705199726682735],[120,-2,69,0.060834348215568976],[120,-2,70,0.07361713083353402],[120,-2,71,0.0865745157759264],[120,-2,72,0.051478066723917526],[120,-2,73,-0.017620012824000303],[120,-2,74,-0.06551295452425693],[120,-2,75,-0.200437831196457],[120,-2,76,-0.20573356537728427],[120,-2,77,-0.20680457357229398],[120,-2,78,-0.2067190370219103],[120,-2,79,-0.20693263738840478],[120,-1,64,0.005958823023699128],[120,-1,65,-0.0297889282325087],[120,-1,66,-0.04669734632607184],[120,-1,67,-0.011497950881267038],[120,-1,68,0.0036101942563128986],[120,-1,69,0.03914216352190361],[120,-1,70,0.07197695529134437],[120,-1,71,0.08411427188406441],[120,-1,72,0.06830084253689],[120,-1,73,3.5158629819004306E-4],[120,-1,74,-0.030574626500134455],[120,-1,75,-0.14407213867834268],[120,-1,76,-0.2044933984917424],[120,-1,77,-0.2043472649677334],[120,-1,78,-0.20504262861958547],[120,-1,79,-0.20385597370387126],[120,0,64,-0.02729600578852262],[120,0,65,-0.023485896877654316],[120,0,66,-0.025704788751644614],[120,0,67,-0.029965527022269456],[120,0,68,-0.034997195064268086],[120,0,69,-0.04337439290770259],[120,0,70,-0.05340645813429554],[120,0,71,-0.06213299038075826],[120,0,72,-0.06729288379750897],[120,0,73,-0.0765973991166194],[120,0,74,-0.08410090591928344],[120,0,75,-0.0893174892811171],[120,0,76,-0.09709796750324846],[120,0,77,-0.09707788369686882],[120,0,78,-0.10047368802654094],[120,0,79,-0.10048884231316005],[120,1,64,-0.029563880323635452],[120,1,65,-0.02571408642842296],[120,1,66,-0.025915472451305904],[120,1,67,-0.027994659977314595],[120,1,68,-0.03450571723667102],[120,1,69,-0.04205120524420558],[120,1,70,-0.05134328816153476],[120,1,71,-0.0601355669463762],[120,1,72,-0.06527845418034789],[120,1,73,-0.07507461058898893],[120,1,74,-0.08351721710575018],[120,1,75,-0.08985403959916236],[120,1,76,-0.09500042829361904],[120,1,77,-0.09585363872409643],[120,1,78,-0.09826245073757899],[120,1,79,-0.09635286969541328],[120,2,64,-0.02950249408220229],[120,2,65,-0.027016836171957895],[120,2,66,-0.024533329945168825],[120,2,67,-0.027116228149431792],[120,2,68,-0.03577196911969867],[120,2,69,-0.041364868781994635],[120,2,70,-0.052785260585383104],[120,2,71,-0.059645742382723466],[120,2,72,-0.06633080879415415],[120,2,73,-0.0747935203383382],[120,2,74,-0.08194472432395528],[120,2,75,-0.08809076957199066],[120,2,76,-0.09173794057015287],[120,2,77,-0.09221624975219066],[120,2,78,-0.09257586145963032],[120,2,79,-0.09007079225523097],[120,3,64,-0.031116170552314942],[120,3,65,-0.028838254201176527],[120,3,66,-0.026529151378385074],[120,3,67,-0.027074668359466203],[120,3,68,-0.03685059576099366],[120,3,69,-0.043522116549178785],[120,3,70,-0.052027358508811766],[120,3,71,-0.058245515807469006],[120,3,72,-0.0671387210669143],[120,3,73,-0.0744055518356014],[120,3,74,-0.080592096567171],[120,3,75,-0.08542175557384879],[120,3,76,-0.0875184218940184],[120,3,77,-0.08900381564011996],[120,3,78,-0.09017905308368493],[120,3,79,-0.08546160463809488],[120,4,64,-0.030924384380426065],[120,4,65,-0.029624860208289],[120,4,66,-0.026329759748820056],[120,4,67,-0.027252254035623022],[120,4,68,-0.035937263404879696],[120,4,69,-0.045731441470138884],[120,4,70,-0.05420904361799167],[120,4,71,-0.05928363465934115],[120,4,72,-0.06826101586924814],[120,4,73,-0.07258378281537475],[120,4,74,-0.07942650877181776],[120,4,75,-0.08354733344595779],[120,4,76,-0.08530321376081731],[120,4,77,-0.08716229363395286],[120,4,78,-0.08620358196668229],[120,4,79,-0.08419917249552034],[120,5,64,-0.030297690242149608],[120,5,65,-0.02959904518062123],[120,5,66,-0.026352512835053715],[120,5,67,-0.027610034779367854],[120,5,68,-0.03641104688884861],[120,5,69,-0.046854713847478996],[120,5,70,-0.055424947370082384],[120,5,71,-0.06024444390071228],[120,5,72,-0.06808796093767962],[120,5,73,-0.06961018635242841],[120,5,74,-0.07757731947269125],[120,5,75,-0.07944351257964338],[120,5,76,-0.08104683559983396],[120,5,77,-0.08265891081713994],[120,5,78,-0.08225998597048065],[120,5,79,-0.0791360577995306],[120,6,64,-0.030632012589683733],[120,6,65,-0.028980967840908686],[120,6,66,-0.027348430584676328],[120,6,67,-0.026574104739430907],[120,6,68,-0.03359760072132997],[120,6,69,-0.0471914134888433],[120,6,70,-0.056468242280991704],[120,6,71,-0.0626566211274813],[120,6,72,-0.06614254106107972],[120,6,73,-0.06736372778244272],[120,6,74,-0.07253947580822809],[120,6,75,-0.07676881950060327],[120,6,76,-0.07790632405179101],[120,6,77,-0.0806346035760751],[120,6,78,-0.0769559026458671],[120,6,79,-0.07438484015493228],[120,7,64,-0.028646145230514897],[120,7,65,-0.028871736852016314],[120,7,66,-0.02731534021593271],[120,7,67,-0.026649395425328765],[120,7,68,-0.034928016646620264],[120,7,69,-0.04538211840567556],[120,7,70,-0.053355434579029276],[120,7,71,-0.059952748825147215],[120,7,72,-0.06176955571775676],[120,7,73,-0.0670300175317518],[120,7,74,-0.06865551783317075],[120,7,75,-0.07399818454613002],[120,7,76,-0.07654898222527276],[120,7,77,-0.07647492197042399],[120,7,78,-0.07442286724935747],[120,7,79,-0.07114994664042604],[120,8,64,-0.024970012249955043],[120,8,65,-0.023359642012120346],[120,8,66,-0.02420058305024067],[120,8,67,-0.023738756287960877],[120,8,68,-0.031128979573092325],[120,8,69,-0.03808572804954918],[120,8,70,-0.04279362482872867],[120,8,71,-0.04792279111311165],[120,8,72,-0.05001165074806049],[120,8,73,-0.0565283133876535],[120,8,74,-0.058542193101902354],[120,8,75,-0.062460146860111324],[120,8,76,-0.06475476827290257],[120,8,77,-0.06273407348773614],[120,8,78,-0.05988050848084986],[120,8,79,-0.05812213694919886],[120,9,64,-0.01659171170081461],[120,9,65,-0.018554485967814116],[120,9,66,-0.02578544935755961],[120,9,67,-0.03249722069623645],[120,9,68,-0.04104476562251623],[120,9,69,-0.046753035283387714],[120,9,70,-0.049740472582899126],[120,9,71,-0.05263809091389356],[120,9,72,-0.054231149382861096],[120,9,73,-0.060705575104356826],[120,9,74,-0.06279298619513796],[120,9,75,-0.06494611988491455],[120,9,76,-0.06500923129325781],[120,9,77,-0.060920074542939184],[120,9,78,-0.054793681848416737],[120,9,79,-0.04777487245042816],[120,10,64,-0.017440032184119075],[120,10,65,-0.017862677761657675],[120,10,66,-0.02397637839020686],[120,10,67,-0.033128399260375155],[120,10,68,-0.03897133352630229],[120,10,69,-0.045950528784489464],[120,10,70,-0.0507650597130313],[120,10,71,-0.05211112290924361],[120,10,72,-0.0554240682984638],[120,10,73,-0.056327510831871735],[120,10,74,-0.05991633190848061],[120,10,75,-0.06528780926978983],[120,10,76,-0.06483727064694794],[120,10,77,-0.05939654239168228],[120,10,78,-0.04965910420084657],[120,10,79,-0.04371059318383988],[120,11,64,-0.01833865268690446],[120,11,65,-0.019911510069743038],[120,11,66,-0.025697270360986457],[120,11,67,-0.03528744985323998],[120,11,68,-0.038213625634002296],[120,11,69,-0.0457377276802802],[120,11,70,-0.05009312555573872],[120,11,71,-0.05184104431310366],[120,11,72,-0.053798561998090674],[120,11,73,-0.05398311150495974],[120,11,74,-0.05849878114022765],[120,11,75,-0.06361452740467352],[120,11,76,-0.06325888214316636],[120,11,77,-0.05725356264493707],[120,11,78,-0.04666089143540851],[120,11,79,-0.04033968170007443],[120,12,64,-0.014020291468294699],[120,12,65,-0.019322894882666225],[120,12,66,-0.026781783447125423],[120,12,67,-0.035954523230209895],[120,12,68,-0.04069101091002669],[120,12,69,-0.0451224440443769],[120,12,70,-0.05076904874676966],[120,12,71,-0.054747002073670684],[120,12,72,-0.055111212178845334],[120,12,73,-0.05586405763778152],[120,12,74,-0.056711093246740785],[120,12,75,-0.06401344780824514],[120,12,76,-0.06354861060857595],[120,12,77,-0.05799636753135544],[120,12,78,-0.047607579750409884],[120,12,79,-0.04016503237455328],[120,13,64,-0.023041850576595996],[120,13,65,-0.020468056667240664],[120,13,66,-0.022407167221992097],[120,13,67,-0.02630458210197667],[120,13,68,-0.029742599308732298],[120,13,69,-0.03461941221271134],[120,13,70,-0.04184156725952615],[120,13,71,-0.04355052845397275],[120,13,72,-0.039957162826096695],[120,13,73,-0.04121450534298293],[120,13,74,-0.04197721959782455],[120,13,75,-0.0499767032789145],[120,13,76,-0.052083236383152653],[120,13,77,-0.053024328312114025],[120,13,78,-0.05359282639349845],[120,13,79,-0.04817666178916183],[120,14,64,-0.022677574260992553],[120,14,65,-0.021887114604636854],[120,14,66,-0.022199417459911525],[120,14,67,-0.02705134836479156],[120,14,68,-0.031194627210221287],[120,14,69,-0.033978192796790305],[120,14,70,-0.04026672812069024],[120,14,71,-0.03863670107347242],[120,14,72,-0.03558961308406594],[120,14,73,-0.03774441470427585],[120,14,74,-0.0388227574409966],[120,14,75,-0.04502460696052907],[120,14,76,-0.04751503329653049],[120,14,77,-0.05212255228341936],[120,14,78,-0.053426591165070425],[120,14,79,-0.049251659290802885],[120,15,64,-0.02126420758510747],[120,15,65,-0.021097061171963416],[120,15,66,-0.022702819319534995],[120,15,67,-0.025351196413236257],[120,15,68,-0.03039955143565351],[120,15,69,-0.033368808715603035],[120,15,70,-0.03823674168695712],[120,15,71,-0.033710030397002114],[120,15,72,-0.03307316237059511],[120,15,73,-0.03491069307540945],[120,15,74,-0.037656040268038954],[120,15,75,-0.04152447593047605],[120,15,76,-0.04399435186817935],[120,15,77,-0.050762157488772455],[120,15,78,-0.05213969019614187],[120,15,79,-0.05216411400714081],[120,16,64,-0.026068012866405282],[120,16,65,-0.024110892752527896],[120,16,66,-0.022959385235975988],[120,16,67,-0.019829934605056165],[120,16,68,-0.023937363025694797],[120,16,69,-0.026360074376239384],[120,16,70,-0.027443900416314282],[120,16,71,-0.024875355508207103],[120,16,72,-0.0267274032037029],[120,16,73,-0.028441996282864368],[120,16,74,-0.02851286810596651],[120,16,75,-0.031048354838366876],[120,16,76,-0.03247951026189076],[120,16,77,-0.036438332164445586],[120,16,78,-0.040678025177093555],[120,16,79,-0.040787151992781046],[120,17,64,-0.0274543637343298],[120,17,65,-0.024168619485639448],[120,17,66,-0.02164559123844781],[120,17,67,-0.01962791531774538],[120,17,68,-0.02239427532650004],[120,17,69,-0.02429298068874433],[120,17,70,-0.02343969973309412],[120,17,71,-0.02433766156305056],[120,17,72,-0.025593747847286186],[120,17,73,-0.027473141322871653],[120,17,74,-0.03021062905347585],[120,17,75,-0.031928637894447456],[120,17,76,-0.03295817384657554],[120,17,77,-0.03555031843369354],[120,17,78,-0.03945495170790181],[120,17,79,-0.04056307331561715],[120,18,64,-0.028442027120244157],[120,18,65,-0.02441649634448853],[120,18,66,-0.021852666743248733],[120,18,67,-0.018400071233148435],[120,18,68,-0.02173754905535419],[120,18,69,-0.022311382301118315],[120,18,70,-0.02086091304188345],[120,18,71,-0.023503770129820772],[120,18,72,-0.026170767168734455],[120,18,73,-0.029450995635613625],[120,18,74,-0.03164663900092628],[120,18,75,-0.03143834123685853],[120,18,76,-0.031064071239604793],[120,18,77,-0.03620525151613255],[120,18,78,-0.03828460520632346],[120,18,79,-0.040800507369603195],[120,19,64,-0.02915640650981216],[120,19,65,-0.024727046833070504],[120,19,66,-0.02064755103525326],[120,19,67,-0.01898561258438855],[120,19,68,-0.021639871652168824],[120,19,69,-0.023960458321770794],[120,19,70,-0.020649481175391587],[120,19,71,-0.02403091328662782],[120,19,72,-0.028297892008809264],[120,19,73,-0.0328552648303254],[120,19,74,-0.033273976914910935],[120,19,75,-0.03132796630253554],[120,19,76,-0.030187999445032837],[120,19,77,-0.0365400649195962],[120,19,78,-0.0400345910804331],[120,19,79,-0.038974090327682176],[120,20,64,-0.028572396819179585],[120,20,65,-0.02390619086703169],[120,20,66,-0.022570510109023195],[120,20,67,-0.022381911044851488],[120,20,68,-0.027490051614737082],[120,20,69,-0.028982207143338545],[120,20,70,-0.02684698118146936],[120,20,71,-0.02617127775329764],[120,20,72,-0.034047782756029085],[120,20,73,-0.03850868785905681],[120,20,74,-0.03752350827306519],[120,20,75,-0.03483163160485664],[120,20,76,-0.0344440815430129],[120,20,77,-0.03936701459585944],[120,20,78,-0.043772006144996156],[120,20,79,-0.043175725536995335],[120,21,64,-0.017179394008164872],[120,21,65,-0.011803436166322623],[120,21,66,-0.008876971197569139],[120,21,67,-0.010691324832663524],[120,21,68,-0.017918663716507244],[120,21,69,-0.021553897316509196],[120,21,70,-0.02453402593443285],[120,21,71,-0.026975148231043536],[120,21,72,-0.04142130123063577],[120,21,73,-0.050199669954034784],[120,21,74,-0.04817233502581035],[120,21,75,-0.045723159731810126],[120,21,76,-0.048235884789314246],[120,21,77,-0.050345070517099605],[120,21,78,-0.05426593771357524],[120,21,79,-0.054664557748062004],[120,22,64,-0.01878876363988577],[120,22,65,-0.012367556600732799],[120,22,66,-0.007916954579756275],[120,22,67,-0.011579162578107871],[120,22,68,-0.016085243996848825],[120,22,69,-0.018787443530544012],[120,22,70,-0.023509594371977943],[120,22,71,-0.028271982733584666],[120,22,72,-0.03860336214201379],[120,22,73,-0.047767523550735186],[120,22,74,-0.04686019473591328],[120,22,75,-0.046030550386920055],[120,22,76,-0.04993222836771717],[120,22,77,-0.05349287271555572],[120,22,78,-0.053306221673654314],[120,22,79,-0.052604264331773065],[120,23,64,-0.01865296126654309],[120,23,65,-0.013356207657692465],[120,23,66,-0.006935975816993539],[120,23,67,-0.011150772815422344],[120,23,68,-0.016651275807694516],[120,23,69,-0.020130767455305842],[120,23,70,-0.026081270770324946],[120,23,71,-0.029116543235995607],[120,23,72,-0.039159268189710356],[120,23,73,-0.04671994230316617],[120,23,74,-0.0469069008392574],[120,23,75,-0.04606730711178772],[120,23,76,-0.05168434483547041],[120,23,77,-0.05501656160654078],[120,23,78,-0.053948321319773784],[120,23,79,-0.053312970060631],[120,24,64,-0.009393913104032009],[120,24,65,-0.006468634859106065],[120,24,66,-0.001334984217922608],[120,24,67,-0.005395087646743235],[120,24,68,-0.009457433478584437],[120,24,69,-0.013799532513933371],[120,24,70,-0.017743725156485757],[120,24,71,-0.02125706323714971],[120,24,72,-0.030767309646849775],[120,24,73,-0.036390841884922226],[120,24,74,-0.03634524556206553],[120,24,75,-0.036131666457685924],[120,24,76,-0.042795201036532324],[120,24,77,-0.04703279295135454],[120,24,78,-0.044696059457222145],[120,24,79,-0.043489747070064075],[120,25,64,-7.952085489876526E-4],[120,25,65,-0.004289020600460908],[120,25,66,-0.0058454866365559854],[120,25,67,-0.014302555461976868],[120,25,68,-0.019976362675312],[120,25,69,-0.025867378927813572],[120,25,70,-0.026600258894180634],[120,25,71,-0.02443861935839936],[120,25,72,-0.025410857676632925],[120,25,73,-0.02362749620230689],[120,25,74,-0.02460752375358799],[120,25,75,-0.024848593031745997],[120,25,76,-0.032508552026939794],[120,25,77,-0.03885961090097628],[120,25,78,-0.04254782968785911],[120,25,79,-0.04086554022756114],[120,26,64,-7.648718632847495E-4],[120,26,65,-0.004172774172671867],[120,26,66,-0.00618198443222448],[120,26,67,-0.014930443979733754],[120,26,68,-0.022748806345907924],[120,26,69,-0.027739701760929686],[120,26,70,-0.029880083789069062],[120,26,71,-0.027208869927586837],[120,26,72,-0.026556806925338627],[120,26,73,-0.02321238540529197],[120,26,74,-0.023710561045556328],[120,26,75,-0.023966836887329396],[120,26,76,-0.03288349929534573],[120,26,77,-0.03733001450694233],[120,26,78,-0.040809870971451015],[120,26,79,-0.04154077607025573],[120,27,64,0.0018893008547102852],[120,27,65,-0.001604228930020879],[120,27,66,-0.008568848841464416],[120,27,67,-0.01543867023265838],[120,27,68,-0.02144893191270103],[120,27,69,-0.030599696334276505],[120,27,70,-0.03154369530631959],[120,27,71,-0.031895895913731404],[120,27,72,-0.029062770677219435],[120,27,73,-0.023561061488092894],[120,27,74,-0.025539219422823417],[120,27,75,-0.02461562593498487],[120,27,76,-0.0302428027805432],[120,27,77,-0.03485342050292667],[120,27,78,-0.03826182698007269],[120,27,79,-0.04142286554396345],[120,28,64,0.002493533481598531],[120,28,65,-0.004514894133859443],[120,28,66,-0.012010375577162086],[120,28,67,-0.020027575145009496],[120,28,68,-0.025863944374554054],[120,28,69,-0.034230970187182436],[120,28,70,-0.03550180869200163],[120,28,71,-0.03756709188144891],[120,28,72,-0.03483736985419855],[120,28,73,-0.032498160355201616],[120,28,74,-0.03404631139553546],[120,28,75,-0.03371475988342118],[120,28,76,-0.03449794612664772],[120,28,77,-0.04010747926855711],[120,28,78,-0.04639784355356677],[120,28,79,-0.049370372647634525],[120,29,64,0.0016052218511986849],[120,29,65,-0.006415734431049563],[120,29,66,-0.01397205566472376],[120,29,67,-0.023954283559645767],[120,29,68,-0.029028000138999407],[120,29,69,-0.03922683496851449],[120,29,70,-0.04100062820885128],[120,29,71,-0.04084738736467872],[120,29,72,-0.040852387640438526],[120,29,73,-0.038642724085615754],[120,29,74,-0.03951237949273838],[120,29,75,-0.03883528308357953],[120,29,76,-0.03814542137563097],[120,29,77,-0.042823296056031884],[120,29,78,-0.045833428878080396],[120,29,79,-0.04825053281852834],[120,30,64,0.004492919387606126],[120,30,65,-0.0034518890975622496],[120,30,66,-0.013471266717379665],[120,30,67,-0.024349004390507217],[120,30,68,-0.030061348114081815],[120,30,69,-0.040069778124804695],[120,30,70,-0.04479208438067325],[120,30,71,-0.04465261521194876],[120,30,72,-0.043743848587733794],[120,30,73,-0.04442217523894762],[120,30,74,-0.04379149214936705],[120,30,75,-0.04343191315998789],[120,30,76,-0.04182377442073554],[120,30,77,-0.043499485238697955],[120,30,78,-0.046819295529916455],[120,30,79,-0.049296951681453205],[120,31,64,0.002163229734182426],[120,31,65,-0.005069594737416333],[120,31,66,-0.01242969393474308],[120,31,67,-0.025045040652912187],[120,31,68,-0.031521287728357425],[120,31,69,-0.03868459063567614],[120,31,70,-0.0445894836720753],[120,31,71,-0.04746998180546563],[120,31,72,-0.0481015648123054],[120,31,73,-0.04630609125060357],[120,31,74,-0.046898335804506294],[120,31,75,-0.046091248017144454],[120,31,76,-0.04608237713261348],[120,31,77,-0.045970587357976406],[120,31,78,-0.0463897382719152],[120,31,79,-0.048620756735498746],[120,32,64,0.010187525507422968],[120,32,65,0.0029540120791935187],[120,32,66,-0.0037712519185269244],[120,32,67,-0.013258490306045562],[120,32,68,-0.020205860346716675],[120,32,69,-0.02725634180207942],[120,32,70,-0.03441211838549388],[120,32,71,-0.03723508664996868],[120,32,72,-0.036635643417556096],[120,32,73,-0.03704373937666244],[120,32,74,-0.03833710191080489],[120,32,75,-0.039202835749375275],[120,32,76,-0.038723725750799465],[120,32,77,-0.037503264610165926],[120,32,78,-0.035630346523205236],[120,32,79,-0.038872984431706156],[120,33,64,0.015485195092868276],[120,33,65,0.01006700284561296],[120,33,66,0.003915727818836895],[120,33,67,-0.0010609319442397014],[120,33,68,-0.009117293067588822],[120,33,69,-0.016361745071839934],[120,33,70,-0.025377388852805383],[120,33,71,-0.034300260638286534],[120,33,72,-0.04022442116657386],[120,33,73,-0.04595095005871268],[120,33,74,-0.051285879243599355],[120,33,75,-0.05289683426358577],[120,33,76,-0.0521940920412057],[120,33,77,-0.04272423169509186],[120,33,78,-0.03770659969821211],[120,33,79,-0.03570356140909861],[120,34,64,0.014270512437784266],[120,34,65,0.008906357327958109],[120,34,66,0.0019225734904236291],[120,34,67,2.658780525543192E-4],[120,34,68,-0.008020481302055765],[120,34,69,-0.015970010119030126],[120,34,70,-0.025461923756378763],[120,34,71,-0.033256104552520455],[120,34,72,-0.04098542754795047],[120,34,73,-0.0487831953851111],[120,34,74,-0.05349310160700137],[120,34,75,-0.05435423303530276],[120,34,76,-0.05146823280639656],[120,34,77,-0.041937280516088915],[120,34,78,-0.03879905340973362],[120,34,79,-0.03323104782570048],[120,35,64,0.011140216044587009],[120,35,65,0.0064777657515318054],[120,35,66,-6.933866672385325E-4],[120,35,67,-5.108479759665108E-4],[120,35,68,-0.007841798999496247],[120,35,69,-0.01592510749443496],[120,35,70,-0.02473180372642611],[120,35,71,-0.03263991546399403],[120,35,72,-0.041026913739837495],[120,35,73,-0.04985242877970865],[120,35,74,-0.05274458640543239],[120,35,75,-0.05196768470912816],[120,35,76,-0.04997022780570863],[120,35,77,-0.04223666458858029],[120,35,78,-0.03817738793395391],[120,35,79,-0.03175321207227738],[120,36,64,0.0025145904765385696],[120,36,65,-0.002994062060757585],[120,36,66,-0.008975107497617735],[120,36,67,-0.007934211412942177],[120,36,68,-0.014023372370813136],[120,36,69,-0.0217611361533927],[120,36,70,-0.029151365031917106],[120,36,71,-0.038980635392570934],[120,36,72,-0.0464820011992088],[120,36,73,-0.05581960925542123],[120,36,74,-0.058886125506351986],[120,36,75,-0.058584437568216144],[120,36,76,-0.057012830719823826],[120,36,77,-0.04877511057524639],[120,36,78,-0.04583682170755286],[120,36,79,-0.04190597775421431],[120,37,64,-0.005137735388354492],[120,37,65,-0.013707524925531872],[120,37,66,-0.018362358401024043],[120,37,67,-0.023667134378760224],[120,37,68,-0.030684788907097887],[120,37,69,-0.040282235253555454],[120,37,70,-0.044753663112587064],[120,37,71,-0.05000912594936725],[120,37,72,-0.05487100068926186],[120,37,73,-0.057591909951196604],[120,37,74,-0.06102187341478063],[120,37,75,-0.05829195877319662],[120,37,76,-0.05540111015001656],[120,37,77,-0.04810991475858273],[120,37,78,-0.046586287873613866],[120,37,79,-0.045489058458172874],[120,38,64,-0.004413936586078859],[120,38,65,-0.012800761386435128],[120,38,66,-0.01819462614661435],[120,38,67,-0.024512329686037337],[120,38,68,-0.03161656413737807],[120,38,69,-0.04211852002998767],[120,38,70,-0.045259727651099466],[120,38,71,-0.05261766067890568],[120,38,72,-0.05622915651722486],[120,38,73,-0.05855227135736343],[120,38,74,-0.06196449297272691],[120,38,75,-0.05819017604169335],[120,38,76,-0.056486138352240894],[120,38,77,-0.05173809024551981],[120,38,78,-0.04897979475772324],[120,38,79,-0.04534538617961764],[120,39,64,-0.004713001019090446],[120,39,65,-0.011470025803673622],[120,39,66,-0.016157929435520663],[120,39,67,-0.02462724739627173],[120,39,68,-0.03445989378523159],[120,39,69,-0.04154387532791208],[120,39,70,-0.04648162552999252],[120,39,71,-0.0529341757848345],[120,39,72,-0.05848454922788769],[120,39,73,-0.059629207547826246],[120,39,74,-0.06127631985761406],[120,39,75,-0.05907025092100804],[120,39,76,-0.058148085362636714],[120,39,77,-0.054135478680629026],[120,39,78,-0.049134929214936285],[120,39,79,-0.045722256253242],[120,40,64,0.007812885544489223],[120,40,65,0.001250427047692626],[120,40,66,-0.005807811159243559],[120,40,67,-0.011085976556328536],[120,40,68,-0.019289461418938225],[120,40,69,-0.02543102967508709],[120,40,70,-0.03211701367245874],[120,40,71,-0.037222581301636054],[120,40,72,-0.044245009987993064],[120,40,73,-0.04820854085562609],[120,40,74,-0.04988967499760402],[120,40,75,-0.04799304680569408],[120,40,76,-0.04682949526295782],[120,40,77,-0.041168907203663785],[120,40,78,-0.038640269093447394],[120,40,79,-0.0341870956586752],[120,41,64,0.006665758448658826],[120,41,65,0.001062314441818396],[120,41,66,-0.003964122017114796],[120,41,67,-0.008646262271917698],[120,41,68,-0.016613109484168054],[120,41,69,-0.023600042222490458],[120,41,70,-0.030296554810180454],[120,41,71,-0.03520260130946319],[120,41,72,-0.042493751202934194],[120,41,73,-0.04520780666695874],[120,41,74,-0.0500182767918233],[120,41,75,-0.0477600066824439],[120,41,76,-0.04911221344959529],[120,41,77,-0.04322712652069406],[120,41,78,-0.038778513322658636],[120,41,79,-0.03259571908319493],[120,42,64,0.004412320257599911],[120,42,65,0.0023693505726281594],[120,42,66,-0.0027550384672324624],[120,42,67,-0.007858865844934365],[120,42,68,-0.01394804290301524],[120,42,69,-0.021840595090475118],[120,42,70,-0.028688990676454418],[120,42,71,-0.03323718170501666],[120,42,72,-0.03880297206254271],[120,42,73,-0.0420627574736013],[120,42,74,-0.047908485421607624],[120,42,75,-0.047323360846823564],[120,42,76,-0.04836196548746072],[120,42,77,-0.04592454169535262],[120,42,78,-0.03801582321083377],[120,42,79,-0.030417418924012507],[120,43,64,0.0033565717613842916],[120,43,65,0.0010049406477921907],[120,43,66,-0.003418494319019555],[120,43,67,-0.007856045302017417],[120,43,68,-0.013013065407228769],[120,43,69,-0.020314135295724123],[120,43,70,-0.027951238841069537],[120,43,71,-0.03358716771603097],[120,43,72,-0.03929896319731345],[120,43,73,-0.042876170603766195],[120,43,74,-0.0460160035196152],[120,43,75,-0.04673911217475178],[120,43,76,-0.04704318799134459],[120,43,77,-0.046389123835467116],[120,43,78,-0.03999188617879654],[120,43,79,-0.03137297402254374],[120,44,64,-0.004240638241618827],[120,44,65,-0.007614247511864819],[120,44,66,-0.00995374744909236],[120,44,67,-0.014274386348454432],[120,44,68,-0.02003069679871511],[120,44,69,-0.02880859473682526],[120,44,70,-0.0356145535932926],[120,44,71,-0.04102069557131832],[120,44,72,-0.0475395921230202],[120,44,73,-0.051325823183970234],[120,44,74,-0.05195285722325528],[120,44,75,-0.05428099079890311],[120,44,76,-0.05377384334359235],[120,44,77,-0.052467004814878704],[120,44,78,-0.048541740686021406],[120,44,79,-0.04233499473398007],[120,45,64,-0.011024573813056604],[120,45,65,-0.009226768769806326],[120,45,66,-0.004754481613919559],[120,45,67,-0.0013119766912811914],[120,45,68,-0.0012781168674575738],[120,45,69,-0.004854762907703758],[120,45,70,-0.012701258286239303],[120,45,71,-0.018232567641096042],[120,45,72,-0.032272609088253496],[120,45,73,-0.04107165223976331],[120,45,74,-0.04221569524634909],[120,45,75,-0.045468503107410047],[120,45,76,-0.047110567326204014],[120,45,77,-0.04483744777180916],[120,45,78,-0.04599341899357472],[120,45,79,-0.04350607021858184],[120,46,64,-0.013448272065875927],[120,46,65,-0.009900441276109284],[120,46,66,-0.00592916118776865],[120,46,67,-0.005511381705959856],[120,46,68,-0.00410182466826936],[120,46,69,-0.006441434742048141],[120,46,70,-0.00828897261898559],[120,46,71,-0.017413854167355886],[120,46,72,-0.03088068879287846],[120,46,73,-0.039856825360160775],[120,46,74,-0.04308742684419621],[120,46,75,-0.04338172993469536],[120,46,76,-0.04596030521046372],[120,46,77,-0.045839629746803806],[120,46,78,-0.04477902003968906],[120,46,79,-0.04418076164894533],[120,47,64,-0.013137056504316402],[120,47,65,-0.009748388879178393],[120,47,66,-0.006738638408642861],[120,47,67,-0.00882574700899355],[120,47,68,-0.007131870090949455],[120,47,69,-0.006935037893867652],[120,47,70,-0.006673144590516572],[120,47,71,-0.015374199082240386],[120,47,72,-0.03011460595584095],[120,47,73,-0.042052432484413135],[120,47,74,-0.04476412141254624],[120,47,75,-0.04434440169489555],[120,47,76,-0.04806938088516255],[120,47,77,-0.04641651339098293],[120,47,78,-0.043409602031676764],[120,47,79,-0.04442090659109957],[120,48,64,0.0013716447117365915],[120,48,65,0.0029671732010007057],[120,48,66,0.00502131539866979],[120,48,67,0.004627065054685464],[120,48,68,0.0066665716461570546],[120,48,69,0.00818778427140826],[120,48,70,0.006897444279207909],[120,48,71,-4.5038151858523E-5],[120,48,72,-0.015284768261828452],[120,48,73,-0.029383136040908614],[120,48,74,-0.03309791464342435],[120,48,75,-0.032428025792560905],[120,48,76,-0.03326045980675049],[120,48,77,-0.032773637595423705],[120,48,78,-0.029228957342443546],[120,48,79,-0.027746600905341284],[120,49,64,-0.011514083346045312],[120,49,65,-0.008613979555998547],[120,49,66,-0.0072059842922681805],[120,49,67,-0.007659047263607527],[120,49,68,-0.003248730886490775],[120,49,69,-0.0023885816239897772],[120,49,70,-0.0031216022924439035],[120,49,71,-0.0051701786733533706],[120,49,72,-0.011582550973447236],[120,49,73,-0.01808404405910735],[120,49,74,-0.019986147414646077],[120,49,75,-0.021363691105274946],[120,49,76,-0.02098370382558512],[120,49,77,-0.020938939926094524],[120,49,78,-0.017969956172980417],[120,49,79,-0.015856910151000964],[120,50,64,-0.013320737067604616],[120,50,65,-0.011653545133966159],[120,50,66,-0.01075957510773462],[120,50,67,-0.010419615475982746],[120,50,68,-0.006159594628197901],[120,50,69,-0.00392581382246035],[120,50,70,-0.007368307684303521],[120,50,71,-0.009265236028303009],[120,50,72,-0.011148400759661531],[120,50,73,-0.016060376878801658],[120,50,74,-0.01836800885776302],[120,50,75,-0.01916044557120211],[120,50,76,-0.018217296445080633],[120,50,77,-0.016794346005025246],[120,50,78,-0.013385933008343232],[120,50,79,-0.011422486107251967],[120,51,64,-0.016386410859806716],[120,51,65,-0.01401112061011392],[120,51,66,-0.012920887847688745],[120,51,67,-0.013176252679577616],[120,51,68,-0.009430266923988767],[120,51,69,-0.007511365180909418],[120,51,70,-0.013893782485494804],[120,51,71,-0.013020038237437664],[120,51,72,-0.014050625944438122],[120,51,73,-0.013882994430179207],[120,51,74,-0.016057323804855667],[120,51,75,-0.017897819133679133],[120,51,76,-0.017381332888185358],[120,51,77,-0.014517462131170694],[120,51,78,-0.011489755501059296],[120,51,79,-0.00839424599388977],[120,52,64,0.01750210885081746],[120,52,65,0.018582951972933276],[120,52,66,0.018778301877132003],[120,52,67,0.019628266458106308],[120,52,68,0.02406956159947865],[120,52,69,0.025027337365217228],[120,52,70,0.022756546195218053],[120,52,71,0.02189550388078157],[120,52,72,0.02128471869646481],[120,52,73,0.022256646005692604],[120,52,74,0.019677139855675013],[120,52,75,0.020501993805338015],[120,52,76,0.01912830415903155],[120,52,77,0.02637878823474643],[120,52,78,0.024226243211229626],[120,52,79,0.028051192966927235],[120,53,64,0.022786106895250485],[120,53,65,0.018646215627240503],[120,53,66,0.015499581884648256],[120,53,67,0.013687820938904999],[120,53,68,0.014956798659572418],[120,53,69,0.014381376756646164],[120,53,70,0.011480970018498904],[120,53,71,0.011643128739948522],[120,53,72,0.007316325690173792],[120,53,73,0.008399086849963766],[120,53,74,0.01030852287775047],[120,53,75,0.01235856745366351],[120,53,76,0.012910350461298042],[120,53,77,0.018001508931395765],[120,53,78,0.018420285468047554],[120,53,79,0.02172641266622785],[120,54,64,0.021162872620490325],[120,54,65,0.015533231398772912],[120,54,66,0.010839529731031389],[120,54,67,0.008978590780112122],[120,54,68,0.011280574180168035],[120,54,69,0.011273604031067613],[120,54,70,0.009659533735455195],[120,54,71,0.0070921454382623095],[120,54,72,0.00443969156749896],[120,54,73,0.00709119384091117],[120,54,74,0.00765051303890138],[120,54,75,0.013454587759076514],[120,54,76,0.014899156143299064],[120,54,77,0.01786905574538039],[120,54,78,0.018820007201423516],[120,54,79,0.01905299366529617],[120,55,64,0.01926680490325086],[120,55,65,0.012497507314224304],[120,55,66,0.00869561835776722],[120,55,67,0.007305872386468265],[120,55,68,0.006002922512904324],[120,55,69,0.0042039622565683],[120,55,70,0.004347979499078253],[120,55,71,0.003628181527119051],[120,55,72,7.452374387886262E-4],[120,55,73,0.003063779155601354],[120,55,74,0.004938151316523948],[120,55,75,0.011201426899630051],[120,55,76,0.014327413118832594],[120,55,77,0.018715834993128982],[120,55,78,0.018554793825320437],[120,55,79,0.017985048407497317],[120,56,64,0.029900889641590073],[120,56,65,0.025450224721245168],[120,56,66,0.021052309881079756],[120,56,67,0.020394949141057772],[120,56,68,0.016299407835554808],[120,56,69,0.012840002333722095],[120,56,70,0.014591756008374784],[120,56,71,0.014200995837879538],[120,56,72,0.013022272593727985],[120,56,73,0.012938557685394703],[120,56,74,0.018435491659547776],[120,56,75,0.02582287266528177],[120,56,76,0.027774044436290918],[120,56,77,0.03002227331996965],[120,56,78,0.031539629827940424],[120,56,79,0.030698279521853666],[120,57,64,0.02154376013611689],[120,57,65,0.017181712837941843],[120,57,66,0.015124647651480638],[120,57,67,0.012954483728003008],[120,57,68,0.008145523158815504],[120,57,69,0.0023113431767486925],[120,57,70,6.505890052069807E-4],[120,57,71,0.0014682583940182348],[120,57,72,-0.001238869613390814],[120,57,73,-6.802714724475079E-4],[120,57,74,0.008800355239204471],[120,57,75,0.014190747682619798],[120,57,76,0.014342150798113656],[120,57,77,0.01820237462906696],[120,57,78,0.022314697103654524],[120,57,79,0.018751664797803297],[120,58,64,0.06404581593404006],[120,58,65,0.057662162073532225],[120,58,66,0.052497085953789255],[120,58,67,0.05205744064109133],[120,58,68,0.045498222437123204],[120,58,69,0.03830355367691114],[120,58,70,0.03625638816426105],[120,58,71,0.03616572807070237],[120,58,72,0.038992150931796546],[120,58,73,0.038107623313940214],[120,58,74,0.045860020394115505],[120,58,75,0.05033308263976141],[120,58,76,0.05029587186461043],[120,58,77,0.05499599261229239],[120,58,78,0.05601779697800406],[120,58,79,0.0534778133748435],[120,59,64,0.06432939313292228],[120,59,65,0.05544636241956907],[120,59,66,0.049829511252392295],[120,59,67,0.046499740509805404],[120,59,68,0.0420296844977287],[120,59,69,0.03451099161312246],[120,59,70,0.03225566666695158],[120,59,71,0.03395449294585906],[120,59,72,0.03745982417215381],[120,59,73,0.03752591025040218],[120,59,74,0.04401217628771223],[120,59,75,0.04880477529634164],[120,59,76,0.04933267449876064],[120,59,77,0.05379052088088648],[120,59,78,0.05424333444601226],[120,59,79,0.0508992401184665],[120,60,64,0.05739487208226238],[120,60,65,0.04866620932646755],[120,60,66,0.040572713734136276],[120,60,67,0.035265572888919655],[120,60,68,0.03291822833729781],[120,60,69,0.026036703193796307],[120,60,70,0.02483542258586313],[120,60,71,0.02569610086062886],[120,60,72,0.027582168899572976],[120,60,73,0.029348960344637923],[120,60,74,0.035976109573609444],[120,60,75,0.0416758543125242],[120,60,76,0.04527013816440295],[120,60,77,0.0444826900730923],[120,60,78,0.04568180044212264],[120,60,79,0.044261814944936556],[120,61,64,0.07516903945501043],[120,61,65,0.06451532465800083],[120,61,66,0.050892358426792905],[120,61,67,0.041291165220673845],[120,61,68,0.03643266785565742],[120,61,69,0.03039107495177927],[120,61,70,0.028906309160730864],[120,61,71,0.02666336995364786],[120,61,72,0.02692363018210092],[120,61,73,0.029164872996885888],[120,61,74,0.036678126054063745],[120,61,75,0.04205161377769111],[120,61,76,0.04975437536698174],[120,61,77,0.05068882230415127],[120,61,78,0.05061915034663078],[120,61,79,0.0537108151135669],[120,62,64,0.07584111084536654],[120,62,65,0.06345497403440586],[120,62,66,0.05087568793587903],[120,62,67,0.04162891951915926],[120,62,68,0.03753659212498468],[120,62,69,0.03198701305615993],[120,62,70,0.03073816985044904],[120,62,71,0.027696463874077815],[120,62,72,0.026931439793704617],[120,62,73,0.02886426770421821],[120,62,74,0.035891216008378385],[120,62,75,0.0418853385282596],[120,62,76,0.04799197816053717],[120,62,77,0.05184997380181822],[120,62,78,0.05182420732335882],[120,62,79,0.056622005632661204],[120,63,64,0.004135374361363367],[120,63,65,-0.01021329418772672],[120,63,66,-0.019776858050024257],[120,63,67,-0.030038720753681858],[120,63,68,-0.032203021144115995],[120,63,69,-0.0355769292204646],[120,63,70,-0.03785205149950863],[120,63,71,-0.03863137517709195],[120,63,72,-0.04156523583270971],[120,63,73,-0.03852567734268671],[120,63,74,-0.03072681140251618],[120,63,75,-0.022167705088965872],[120,63,76,-0.01692599067210615],[120,63,77,-0.011927160355025099],[120,63,78,-0.012085634953856325],[120,63,79,-0.0068873808861507485],[120,64,64,0.01324560111320261],[120,64,65,0.001218957198476825],[120,64,66,-0.010263804088477546],[120,64,67,-0.019588825339736063],[120,64,68,-0.022115060244196738],[120,64,69,-0.025626677923111935],[120,64,70,-0.029466606255921596],[120,64,71,-0.029247049700504152],[120,64,72,-0.031471014097185904],[120,64,73,-0.03167918807798624],[120,64,74,-0.024318000011943425],[120,64,75,-0.013550806903410637],[120,64,76,-0.00956329610532386],[120,64,77,-0.004971358555438232],[120,64,78,-0.002993810991819154],[120,64,79,-2.8692336899403814E-4],[120,65,64,0.013260981346139178],[120,65,65,0.002032908030878869],[120,65,66,-0.010550093123256568],[120,65,67,-0.021335744891653644],[120,65,68,-0.025039408014162448],[120,65,69,-0.025949600000127013],[120,65,70,-0.02893062296587376],[120,65,71,-0.03119681092871668],[120,65,72,-0.03225720977775355],[120,65,73,-0.03362173493085488],[120,65,74,-0.027189699911019424],[120,65,75,-0.016591617822291405],[120,65,76,-0.014101143699716531],[120,65,77,-0.009411712785727472],[120,65,78,-0.004792480858597806],[120,65,79,-2.999714816062926E-4],[120,66,64,0.008521996347606961],[120,66,65,-0.00502671403165926],[120,66,66,-0.018325684634688186],[120,66,67,-0.0289314825773197],[120,66,68,-0.034370190150290636],[120,66,69,-0.0331432258329275],[120,66,70,-0.037132355750523593],[120,66,71,-0.03785849697656658],[120,66,72,-0.04040080645056744],[120,66,73,-0.04077721053963766],[120,66,74,-0.03696236264240568],[120,66,75,-0.02547721962664065],[120,66,76,-0.021220906164219733],[120,66,77,-0.016354907145382583],[120,66,78,-0.012428186064562655],[120,66,79,-0.006298553253373654],[120,67,64,0.005259972761407383],[120,67,65,-0.006599825777298396],[120,67,66,-0.019554190544222153],[120,67,67,-0.03285950237143409],[120,67,68,-0.03609984751017842],[120,67,69,-0.035334352521160156],[120,67,70,-0.03864191870934859],[120,67,71,-0.03869344531893135],[120,67,72,-0.04176271852525695],[120,67,73,-0.044255175088352985],[120,67,74,-0.03856704862933956],[120,67,75,-0.03161614100608984],[120,67,76,-0.02037432239432803],[120,67,77,-0.016132435550279017],[120,67,78,-0.012071330759031912],[120,67,79,-0.0059865639726750935],[120,68,64,-0.09116879468830197],[120,68,65,-0.09967460972285365],[120,68,66,-0.11277526630717244],[120,68,67,-0.1247867105350087],[120,68,68,-0.13018903725923325],[120,68,69,-0.13091506092335434],[120,68,70,-0.13440560831876172],[120,68,71,-0.13366889863208078],[120,68,72,-0.13520596147176556],[120,68,73,-0.13538412862005197],[120,68,74,-0.13106875526312634],[120,68,75,-0.12468291745758173],[120,68,76,-0.11506774087421283],[120,68,77,-0.10735779687215344],[120,68,78,-0.10552145408366181],[120,68,79,-0.09867738647774381],[120,69,64,-0.10500454141632677],[120,69,65,-0.10896605804308138],[120,69,66,-0.11255310026618069],[120,69,67,-0.11761999392227608],[120,69,68,-0.11797376991654228],[120,69,69,-0.11548723889936961],[120,69,70,-0.11472736581157017],[120,69,71,-0.11978932119501018],[120,69,72,-0.12223125083992817],[120,69,73,-0.12519315645396462],[120,69,74,-0.12225472359793318],[120,69,75,-0.11605234698779707],[120,69,76,-0.10873851258509047],[120,69,77,-0.09873788957916874],[120,69,78,-0.09479009743965669],[120,69,79,-0.08768142739064484],[120,70,64,-0.10738861159675069],[120,70,65,-0.11155185304263936],[120,70,66,-0.11711371725220376],[120,70,67,-0.1207491576569311],[120,70,68,-0.11866368405102232],[120,70,69,-0.11616014287331619],[120,70,70,-0.11524812414061537],[120,70,71,-0.11891497919141665],[120,70,72,-0.12347346280605281],[120,70,73,-0.1274246190841964],[120,70,74,-0.12409774621170434],[120,70,75,-0.11733897393638087],[120,70,76,-0.11129845765746602],[120,70,77,-0.10158092288736714],[120,70,78,-0.09538315500306492],[120,70,79,-0.08887776981318843],[120,71,64,-0.09962759134374634],[120,71,65,-0.10560937380987521],[120,71,66,-0.10866390395739374],[120,71,67,-0.11101221738560199],[120,71,68,-0.10942584855858824],[120,71,69,-0.10733134753365596],[120,71,70,-0.10618730194021024],[120,71,71,-0.11024968736463361],[120,71,72,-0.11415860445439492],[120,71,73,-0.11714091483534046],[120,71,74,-0.11367594652560924],[120,71,75,-0.10903794818328352],[120,71,76,-0.10569831858549261],[120,71,77,-0.09641996714750802],[120,71,78,-0.09075621936688764],[120,71,79,-0.08392908436842494],[120,72,64,-0.1024318795036671],[120,72,65,-0.10945073254908835],[120,72,66,-0.11312743764710809],[120,72,67,-0.11500533888019872],[120,72,68,-0.11338247215750441],[120,72,69,-0.10896226814978405],[120,72,70,-0.10745331950827772],[120,72,71,-0.10929386399582161],[120,72,72,-0.11387949604610922],[120,72,73,-0.11825063576472294],[120,72,74,-0.11608292803844243],[120,72,75,-0.11264919820518117],[120,72,76,-0.11009646383365762],[120,72,77,-0.10228416762296536],[120,72,78,-0.09525154930313103],[120,72,79,-0.0885402453672474],[120,73,64,-0.12003227438275206],[120,73,65,-0.12606186289320173],[120,73,66,-0.12863935372544805],[120,73,67,-0.12815637767216687],[120,73,68,-0.12756160402976635],[120,73,69,-0.123057623140189],[120,73,70,-0.11843684660972371],[120,73,71,-0.1167440323692879],[120,73,72,-0.11342854472773731],[120,73,73,-0.11139503896214151],[120,73,74,-0.1083771637656829],[120,73,75,-0.10378762878986067],[120,73,76,-0.10293672261482935],[120,73,77,-0.10363982383064756],[120,73,78,-0.10346999617301919],[120,73,79,-0.10560054653733839],[120,74,64,-0.13326823657805825],[120,74,65,-0.13478407567301978],[120,74,66,-0.13907094566638611],[120,74,67,-0.13847191208585122],[120,74,68,-0.1367820567197139],[120,74,69,-0.13366030194619974],[120,74,70,-0.12941210266099734],[120,74,71,-0.12691084270824468],[120,74,72,-0.12200651194154434],[120,74,73,-0.12096956757937549],[120,74,74,-0.11617553597071639],[120,74,75,-0.11176917924006657],[120,74,76,-0.11103107160740522],[120,74,77,-0.11219765236378397],[120,74,78,-0.11486285139213413],[120,74,79,-0.11688544734632739],[120,75,64,-0.13622524189115987],[120,75,65,-0.13926059616908767],[120,75,66,-0.14319615011205483],[120,75,67,-0.1415592734184423],[120,75,68,-0.1418386618147261],[120,75,69,-0.13759352675725045],[120,75,70,-0.13266251925567674],[120,75,71,-0.13133852370251975],[120,75,72,-0.12431106948009535],[120,75,73,-0.12153825050764695],[120,75,74,-0.11765654899931316],[120,75,75,-0.11483410095051896],[120,75,76,-0.11392856662533758],[120,75,77,-0.11540626256489339],[120,75,78,-0.11995162145399399],[120,75,79,-0.12309034203539998],[120,76,64,-0.13410235004011695],[120,76,65,-0.14003402700413334],[120,76,66,-0.14264830394958108],[120,76,67,-0.14166112584308532],[120,76,68,-0.14153259741370078],[120,76,69,-0.13658651822748652],[120,76,70,-0.13081332385295152],[120,76,71,-0.13053357786967223],[120,76,72,-0.12515359994834446],[120,76,73,-0.1202947186319859],[120,76,74,-0.11787075293584938],[120,76,75,-0.1152266454782122],[120,76,76,-0.11461127157910163],[120,76,77,-0.11605755948012693],[120,76,78,-0.12104090760621784],[120,76,79,-0.12308493256080194],[120,77,64,-0.13572425773131602],[120,77,65,-0.1442353984529241],[120,77,66,-0.15004577455094953],[120,77,67,-0.14872244099617332],[120,77,68,-0.14842737748976678],[120,77,69,-0.1444329997801092],[120,77,70,-0.14113374406609802],[120,77,71,-0.1411065433053933],[120,77,72,-0.13737216189313647],[120,77,73,-0.1342042167081027],[120,77,74,-0.13106005675315244],[120,77,75,-0.12720708665679348],[120,77,76,-0.12452580255391964],[120,77,77,-0.1250712081232367],[120,77,78,-0.13289277563600843],[120,77,79,-0.13379844571824298],[120,78,64,-0.14081498585206464],[120,78,65,-0.15143058568678258],[120,78,66,-0.15265304426280293],[120,78,67,-0.15079852369527857],[120,78,68,-0.14762987597604832],[120,78,69,-0.14450371547159974],[120,78,70,-0.14297396431399406],[120,78,71,-0.1413209975529185],[120,78,72,-0.14124265199860958],[120,78,73,-0.13568329792861297],[120,78,74,-0.13374372431355727],[120,78,75,-0.12950212325651755],[120,78,76,-0.12785628019139827],[120,78,77,-0.13038987008586908],[120,78,78,-0.13762715809332193],[120,78,79,-0.13976550063714208],[120,79,64,-0.13500732264104892],[120,79,65,-0.14408243519724828],[120,79,66,-0.14508082517803156],[120,79,67,-0.14074211841618797],[120,79,68,-0.13957410333968018],[120,79,69,-0.1365169692543206],[120,79,70,-0.13544504096758123],[120,79,71,-0.13516725862138135],[120,79,72,-0.13332512550164208],[120,79,73,-0.12825082968475407],[120,79,74,-0.1270906179895222],[120,79,75,-0.12472259897138505],[120,79,76,-0.12435800375788542],[120,79,77,-0.12483338053985063],[120,79,78,-0.13194801450390536],[120,79,79,-0.1345771569356496],[120,80,64,-0.1386449586613233],[120,80,65,-0.14434531526137473],[120,80,66,-0.14328883378845544],[120,80,67,-0.14139108323140073],[120,80,68,-0.1421744015295477],[120,80,69,-0.13626476952302105],[120,80,70,-0.13672820771819397],[120,80,71,-0.13739438757127867],[120,80,72,-0.13799654186807883],[120,80,73,-0.13396135211625826],[120,80,74,-0.13153390090220876],[120,80,75,-0.1311966575688971],[120,80,76,-0.13210267675808918],[120,80,77,-0.12791873166780143],[120,80,78,-0.13511084506411658],[120,80,79,-0.1389417634450794],[120,81,64,-0.1286399584083856],[120,81,65,-0.1351534549830739],[120,81,66,-0.13236342402458873],[120,81,67,-0.12984443075699786],[120,81,68,-0.1308952818620368],[120,81,69,-0.12758364719590323],[120,81,70,-0.13015713511863194],[120,81,71,-0.1346646177432797],[120,81,72,-0.13920339818709762],[120,81,73,-0.1381218688050349],[120,81,74,-0.13991851817448184],[120,81,75,-0.13757416481788498],[120,81,76,-0.13865690472589326],[120,81,77,-0.13716441842847948],[120,81,78,-0.14382537728377087],[120,81,79,-0.14984286512271827],[120,82,64,-0.13581553535501964],[120,82,65,-0.1443080522476025],[120,82,66,-0.14040591395303414],[120,82,67,-0.1382297679415563],[120,82,68,-0.137262623770085],[120,82,69,-0.13860157437982926],[120,82,70,-0.13848947498416064],[120,82,71,-0.1438770978648741],[120,82,72,-0.14744630255612937],[120,82,73,-0.1491781971864474],[120,82,74,-0.14984662500109228],[120,82,75,-0.1466549130780041],[120,82,76,-0.14627686236106724],[120,82,77,-0.14561625603785203],[120,82,78,-0.1520096225977115],[120,82,79,-0.15838238583746936],[120,83,64,-0.13912727466920416],[120,83,65,-0.1472951951737363],[120,83,66,-0.14312792829934992],[120,83,67,-0.14168304360649345],[120,83,68,-0.13939849082739827],[120,83,69,-0.13939310333942806],[120,83,70,-0.14110894558784393],[120,83,71,-0.14722618535889126],[120,83,72,-0.1519924876440693],[120,83,73,-0.15501866978630693],[120,83,74,-0.15235900622256499],[120,83,75,-0.15079292022760127],[120,83,76,-0.15120860466524857],[120,83,77,-0.14878979447988078],[120,83,78,-0.15451684196956023],[120,83,79,-0.1612403532227804],[120,84,64,-0.13609697501137757],[120,84,65,-0.14604199661510764],[120,84,66,-0.14330373098124777],[120,84,67,-0.1388180011346222],[120,84,68,-0.1373100254406119],[120,84,69,-0.13837206702299787],[120,84,70,-0.1430564297223797],[120,84,71,-0.15075647590572322],[120,84,72,-0.15660884555807106],[120,84,73,-0.1566169627307477],[120,84,74,-0.1556956969668463],[120,84,75,-0.1568769711534615],[120,84,76,-0.15650380318587964],[120,84,77,-0.15251261166063496],[120,84,78,-0.158497339067471],[120,84,79,-0.1622938662639799],[120,85,64,-0.15890171834650996],[120,85,65,-0.16608504300755672],[120,85,66,-0.16576271281351856],[120,85,67,-0.15947130382725547],[120,85,68,-0.15764701535247266],[120,85,69,-0.16022838479704532],[120,85,70,-0.16684113917548754],[120,85,71,-0.17029027512708975],[120,85,72,-0.1716205361809046],[120,85,73,-0.16900056035877165],[120,85,74,-0.1716880978573878],[120,85,75,-0.17257696948354465],[120,85,76,-0.16676214575202086],[120,85,77,-0.1648647886298618],[120,85,78,-0.1657495038220098],[120,85,79,-0.1655759067403063],[120,86,64,-0.16284911990463777],[120,86,65,-0.16829858983640186],[120,86,66,-0.17003217781322522],[120,86,67,-0.1627151249945235],[120,86,68,-0.16180249182532308],[120,86,69,-0.16368032149328746],[120,86,70,-0.1688499334838647],[120,86,71,-0.1700845773962038],[120,86,72,-0.1743439620185257],[120,86,73,-0.17346053913863463],[120,86,74,-0.17543360338702332],[120,86,75,-0.17496989125532858],[120,86,76,-0.17038098783682723],[120,86,77,-0.169483999163822],[120,86,78,-0.17050820038340697],[120,86,79,-0.17073199082617127],[120,87,64,-0.1542475605145628],[120,87,65,-0.16081033528693112],[120,87,66,-0.16475685936556564],[120,87,67,-0.15848328785884108],[120,87,68,-0.1555744242194956],[120,87,69,-0.15758962752801584],[120,87,70,-0.16092756786949475],[120,87,71,-0.1619064454373257],[120,87,72,-0.16674568802369524],[120,87,73,-0.16585006421250262],[120,87,74,-0.16911477099029462],[120,87,75,-0.16968526835969475],[120,87,76,-0.16571897539348396],[120,87,77,-0.16446465624983742],[120,87,78,-0.16709248622697137],[120,87,79,-0.16487702237006552],[120,88,64,-0.15477746904777562],[120,88,65,-0.1603517084838968],[120,88,66,-0.16371660806058472],[120,88,67,-0.16018439905779747],[120,88,68,-0.1574539161279986],[120,88,69,-0.16026739913496169],[120,88,70,-0.16154961597814316],[120,88,71,-0.16367825909477202],[120,88,72,-0.16445552203284006],[120,88,73,-0.16745201477499042],[120,88,74,-0.16979285163107893],[120,88,75,-0.17166697104441345],[120,88,76,-0.16858214442714076],[120,88,77,-0.16759429426481465],[120,88,78,-0.16751084641611524],[120,88,79,-0.16708650650176776],[120,89,64,-0.15265503023556962],[120,89,65,-0.1565188307863667],[120,89,66,-0.1623006941930767],[120,89,67,-0.15957617401753232],[120,89,68,-0.15770740956618418],[120,89,69,-0.15799237821399958],[120,89,70,-0.15887879515024164],[120,89,71,-0.1606718686947679],[120,89,72,-0.16569860848931972],[120,89,73,-0.16976638613001432],[120,89,74,-0.17253507554751402],[120,89,75,-0.17606997473447233],[120,89,76,-0.17373433003065247],[120,89,77,-0.17194235363874993],[120,89,78,-0.17005709929199492],[120,89,79,-0.16631180547648303],[120,90,64,-0.15531393605244856],[120,90,65,-0.16092293672470695],[120,90,66,-0.1679823234707104],[120,90,67,-0.16573023610982557],[120,90,68,-0.16313969905377823],[120,90,69,-0.16385291107919564],[120,90,70,-0.16333298957594283],[120,90,71,-0.16312477508636114],[120,90,72,-0.17234527955541037],[120,90,73,-0.17727773012601822],[120,90,74,-0.18094922896793203],[120,90,75,-0.18338101549390612],[120,90,76,-0.1822027906511447],[120,90,77,-0.1797671318276399],[120,90,78,-0.17670937282055674],[120,90,79,-0.1722485740794395],[120,91,64,-0.1507657760018407],[120,91,65,-0.16062918401195156],[120,91,66,-0.1653822043396868],[120,91,67,-0.16612106121368408],[120,91,68,-0.16457191812866243],[120,91,69,-0.1648982383872721],[120,91,70,-0.16279588703919765],[120,91,71,-0.16493494601708364],[120,91,72,-0.1731682313894929],[120,91,73,-0.17870770073781211],[120,91,74,-0.18117475033133065],[120,91,75,-0.18324948084040807],[120,91,76,-0.18466074315705058],[120,91,77,-0.1801127205476596],[120,91,78,-0.1778670669196039],[120,91,79,-0.1748711727401544],[120,92,64,-0.12330094275480255],[120,92,65,-0.13228766698914654],[120,92,66,-0.13777673260068132],[120,92,67,-0.1390758378360692],[120,92,68,-0.14137801849943385],[120,92,69,-0.14202346395578125],[120,92,70,-0.1407763662817993],[120,92,71,-0.14595249388680182],[120,92,72,-0.15206353039011314],[120,92,73,-0.1563907905513374],[120,92,74,-0.16020603258430133],[120,92,75,-0.16369245933904247],[120,92,76,-0.1656624476121085],[120,92,77,-0.1608077348387124],[120,92,78,-0.16012528299739626],[120,92,79,-0.15462179780563726],[120,93,64,-0.11216010119286288],[120,93,65,-0.12139762133101004],[120,93,66,-0.12923057670726915],[120,93,67,-0.13534901227849963],[120,93,68,-0.14080536530231597],[120,93,69,-0.14049090451082885],[120,93,70,-0.13990340974624046],[120,93,71,-0.14940391242411044],[120,93,72,-0.1557485686867308],[120,93,73,-0.16332612040234037],[120,93,74,-0.16621043955464962],[120,93,75,-0.17196201370175201],[120,93,76,-0.17189976941002189],[120,93,77,-0.1665578333758101],[120,93,78,-0.15919863525603448],[120,93,79,-0.1522689102923691],[120,94,64,-0.11045594764385701],[120,94,65,-0.12012132650160112],[120,94,66,-0.12978161647708916],[120,94,67,-0.1370075587361338],[120,94,68,-0.14255319897503976],[120,94,69,-0.14303480095026835],[120,94,70,-0.14199194971647686],[120,94,71,-0.14970781119352028],[120,94,72,-0.1562885933770078],[120,94,73,-0.1616301739741427],[120,94,74,-0.16518510627853283],[120,94,75,-0.17270708738981494],[120,94,76,-0.17191516529747952],[120,94,77,-0.1678819012749254],[120,94,78,-0.1604029403894432],[120,94,79,-0.15399094192290677],[120,95,64,-0.10063464890459672],[120,95,65,-0.11068665930556575],[120,95,66,-0.12127337419921189],[120,95,67,-0.1309058167239553],[120,95,68,-0.13326223319689093],[120,95,69,-0.13471338899028876],[120,95,70,-0.13424884585202773],[120,95,71,-0.14244192997007446],[120,95,72,-0.1474772438013109],[120,95,73,-0.15164405995893596],[120,95,74,-0.1595124429445651],[120,95,75,-0.163868330842067],[120,95,76,-0.16432435640721266],[120,95,77,-0.16020015324474585],[120,95,78,-0.15360915375708625],[120,95,79,-0.1484740037999104],[120,96,64,-0.10142348529385861],[120,96,65,-0.11103545473293715],[120,96,66,-0.12142989195989251],[120,96,67,-0.13400012327702002],[120,96,68,-0.13511670522749028],[120,96,69,-0.1347649926413615],[120,96,70,-0.1336369420826157],[120,96,71,-0.14274801220435132],[120,96,72,-0.14631549568319852],[120,96,73,-0.14962309108069094],[120,96,74,-0.1582284957061756],[120,96,75,-0.16314403518548587],[120,96,76,-0.165277698923603],[120,96,77,-0.1608817042398999],[120,96,78,-0.15355078229611857],[120,96,79,-0.14704845275391912],[120,97,64,-0.11138014445330481],[120,97,65,-0.11697512868622202],[120,97,66,-0.12615418588665683],[120,97,67,-0.13341449971495403],[120,97,68,-0.13687998188159262],[120,97,69,-0.13418649908103408],[120,97,70,-0.13050891287603533],[120,97,71,-0.13726698902473103],[120,97,72,-0.14016197737616992],[120,97,73,-0.14178409921150747],[120,97,74,-0.14703125231457492],[120,97,75,-0.1517565368158365],[120,97,76,-0.15608067929726288],[120,97,77,-0.15902077721858393],[120,97,78,-0.1565887994640764],[120,97,79,-0.15633393543016616],[120,98,64,-0.11931060295125888],[120,98,65,-0.12613630890529923],[120,98,66,-0.13233090792440216],[120,98,67,-0.13883103582690973],[120,98,68,-0.14050460604332127],[120,98,69,-0.13733108225044655],[120,98,70,-0.13480873843329275],[120,98,71,-0.1411429756743773],[120,98,72,-0.1441681240886966],[120,98,73,-0.14663715020046061],[120,98,74,-0.15181741315422054],[120,98,75,-0.1552419489523943],[120,98,76,-0.15817738346467258],[120,98,77,-0.16100026433168557],[120,98,78,-0.16277787867742882],[120,98,79,-0.16266300788911256],[120,99,64,-0.12409914645750293],[120,99,65,-0.1297780264453006],[120,99,66,-0.13410684319338761],[120,99,67,-0.13653583134407032],[120,99,68,-0.13896466930697424],[120,99,69,-0.13539245387610482],[120,99,70,-0.13385215826425528],[120,99,71,-0.1399393699477709],[120,99,72,-0.14370564863845126],[120,99,73,-0.14627295372594804],[120,99,74,-0.14958178165906505],[120,99,75,-0.15472032939380354],[120,99,76,-0.15754893637681375],[120,99,77,-0.1593237866143759],[120,99,78,-0.16240120652700213],[120,99,79,-0.16232895408592046],[120,100,64,-0.10736435703745222],[120,100,65,-0.10590625552326437],[120,100,66,-0.10332385015151213],[120,100,67,-0.10052980420298697],[120,100,68,-0.09531138543449337],[120,100,69,-0.08927725206682696],[120,100,70,-0.08624001558815736],[120,100,71,-0.08681669311287102],[120,100,72,-0.08845583810342415],[120,100,73,-0.09068608455269123],[120,100,74,-0.09318663621828945],[120,100,75,-0.09696537465342064],[120,100,76,-0.10093655145068758],[120,100,77,-0.10397446578628383],[120,100,78,-0.11033200294266528],[120,100,79,-0.10856195890159268],[120,101,64,-0.10929298989158036],[120,101,65,-0.10886052325449719],[120,101,66,-0.10392702051564184],[120,101,67,-0.10124228940587596],[120,101,68,-0.09612493414774363],[120,101,69,-0.08791223240693434],[120,101,70,-0.08520392206962726],[120,101,71,-0.0857033570734969],[120,101,72,-0.0858171330628077],[120,101,73,-0.0877140505510912],[120,101,74,-0.08938827748066157],[120,101,75,-0.0931849487392939],[120,101,76,-0.09800043182357436],[120,101,77,-0.10410740604582128],[120,101,78,-0.11037384195165531],[120,101,79,-0.111584500370876],[120,102,64,-0.11001275387171715],[120,102,65,-0.10837625024581057],[120,102,66,-0.10456773994617193],[120,102,67,-0.1012885873596237],[120,102,68,-0.09608231951879759],[120,102,69,-0.0895717381595211],[120,102,70,-0.08290654895289873],[120,102,71,-0.08213413330633781],[120,102,72,-0.08428779207685318],[120,102,73,-0.08576619952346759],[120,102,74,-0.08862540382106639],[120,102,75,-0.09121882076658214],[120,102,76,-0.09455950401525888],[120,102,77,-0.10090937919207466],[120,102,78,-0.10811465856546221],[120,102,79,-0.11452635983115853],[120,103,64,-0.10201008301145836],[120,103,65,-0.10169071533557732],[120,103,66,-0.09934786730273391],[120,103,67,-0.09241644548950337],[120,103,68,-0.08787611626079732],[120,103,69,-0.08153858117290899],[120,103,70,-0.07626517427341684],[120,103,71,-0.07553205332707111],[120,103,72,-0.07944348681289845],[120,103,73,-0.08257340847401534],[120,103,74,-0.0839417743652694],[120,103,75,-0.08649186034146927],[120,103,76,-0.08998465110362541],[120,103,77,-0.09522065679334799],[120,103,78,-0.10217346319493495],[120,103,79,-0.11215694716723199],[120,104,64,-0.10420718476599575],[120,104,65,-0.10278741741134534],[120,104,66,-0.09734198947651446],[120,104,67,-0.09100242770547841],[120,104,68,-0.0869777075233818],[120,104,69,-0.08257899867194043],[120,104,70,-0.07734794877525022],[120,104,71,-0.07705503633258605],[120,104,72,-0.08100519048673996],[120,104,73,-0.0853473636059211],[120,104,74,-0.08395938468953512],[120,104,75,-0.08482466970977535],[120,104,76,-0.08767443642659604],[120,104,77,-0.0947656156127534],[120,104,78,-0.10183349170369761],[120,104,79,-0.11303460764272565],[120,105,64,-0.11032586441007404],[120,105,65,-0.10450852257319705],[120,105,66,-0.09541270286816063],[120,105,67,-0.085338302862789],[120,105,68,-0.08141695516726538],[120,105,69,-0.07716706258237502],[120,105,70,-0.07187938476042784],[120,105,71,-0.07148668457603025],[120,105,72,-0.07441614804079044],[120,105,73,-0.07948077942004927],[120,105,74,-0.07737595041991212],[120,105,75,-0.08022229345595974],[120,105,76,-0.08057957030687271],[120,105,77,-0.09002083852190816],[120,105,78,-0.0999211150107645],[120,105,79,-0.111767496631426],[120,106,64,-0.11688556630340688],[120,106,65,-0.11311343581139438],[120,106,66,-0.10322891135820841],[120,106,67,-0.09362817901085944],[120,106,68,-0.08787626042764446],[120,106,69,-0.0844410189435214],[120,106,70,-0.08128355225108305],[120,106,71,-0.07769073144020401],[120,106,72,-0.0777589032399469],[120,106,73,-0.0834980105190379],[120,106,74,-0.0835934409290991],[120,106,75,-0.08616424185386148],[120,106,76,-0.08743492467398642],[120,106,77,-0.09565159551557437],[120,106,78,-0.10598804461062193],[120,106,79,-0.11729016969451037],[120,107,64,-0.11793733505206072],[120,107,65,-0.11574158529522759],[120,107,66,-0.10495501314885136],[120,107,67,-0.09297530072660792],[120,107,68,-0.08829992955561178],[120,107,69,-0.0853920361965261],[120,107,70,-0.08260276608511463],[120,107,71,-0.08041283023185723],[120,107,72,-0.08143089203221389],[120,107,73,-0.08528103163619831],[120,107,74,-0.08626132853657531],[120,107,75,-0.08748587402637319],[120,107,76,-0.08801891878576146],[120,107,77,-0.09463198999847817],[120,107,78,-0.10606727873798254],[120,107,79,-0.11849108271732231],[120,108,64,-0.1212130843892165],[120,108,65,-0.11871096485149508],[120,108,66,-0.10926815802010476],[120,108,67,-0.09792882521933688],[120,108,68,-0.08913391867332444],[120,108,69,-0.08875830360193868],[120,108,70,-0.0875341481134422],[120,108,71,-0.084850939995489],[120,108,72,-0.08415146613232381],[120,108,73,-0.08856960655722837],[120,108,74,-0.0888712177587355],[120,108,75,-0.09199409343171562],[120,108,76,-0.09210070196837095],[120,108,77,-0.09963166050058733],[120,108,78,-0.11237724604335485],[120,108,79,-0.12157618998564579],[120,109,64,-0.11494058019734651],[120,109,65,-0.11502912889464012],[120,109,66,-0.11593046219752091],[120,109,67,-0.11041663768207836],[120,109,68,-0.10272494001182968],[120,109,69,-0.10222506427977719],[120,109,70,-0.10241822389147023],[120,109,71,-0.1011639758550341],[120,109,72,-0.09816654045332335],[120,109,73,-0.09903530593673789],[120,109,74,-0.0974660968588019],[120,109,75,-0.10109693460793161],[120,109,76,-0.10133125504220494],[120,109,77,-0.10631634223105435],[120,109,78,-0.11694132793783878],[120,109,79,-0.12258209068372442],[120,110,64,-0.11292718803386091],[120,110,65,-0.11635349077162987],[120,110,66,-0.11604015179500529],[120,110,67,-0.11247632041366415],[120,110,68,-0.10523601168156665],[120,110,69,-0.10399320946739643],[120,110,70,-0.1037289847895653],[120,110,71,-0.1041959188600447],[120,110,72,-0.09875686540146782],[120,110,73,-0.09983642152976535],[120,110,74,-0.09956476268750798],[120,110,75,-0.10438419162654936],[120,110,76,-0.10323391520134746],[120,110,77,-0.1081925428002681],[120,110,78,-0.1170239598651027],[120,110,79,-0.12319378253832566],[120,111,64,-0.10480628222983457],[120,111,65,-0.1071838588074381],[120,111,66,-0.11020989374207617],[120,111,67,-0.10799306537061011],[120,111,68,-0.10452805880949129],[120,111,69,-0.09924030883491648],[120,111,70,-0.09916873009392539],[120,111,71,-0.0996859285920329],[120,111,72,-0.09557257930094121],[120,111,73,-0.09784652444694678],[120,111,74,-0.09901608673600776],[120,111,75,-0.10247035668341332],[120,111,76,-0.1024250454963361],[120,111,77,-0.1070200055257364],[120,111,78,-0.11667395473188888],[120,111,79,-0.12305275386377976],[120,112,64,-0.10604510409886485],[120,112,65,-0.108141820198344],[120,112,66,-0.11041150420638696],[120,112,67,-0.10936140670972129],[120,112,68,-0.10596168893605702],[120,112,69,-0.10054763901513303],[120,112,70,-0.10113149550043812],[120,112,71,-0.1008410077385952],[120,112,72,-0.09756049637264183],[120,112,73,-0.09885151338330542],[120,112,74,-0.10178365997494905],[120,112,75,-0.10244337872151504],[120,112,76,-0.10356552031531216],[120,112,77,-0.10800233943942047],[120,112,78,-0.11567418722783213],[120,112,79,-0.12499444387385927],[120,113,64,-0.10447807953944752],[120,113,65,-0.10842616690087653],[120,113,66,-0.11058484113829235],[120,113,67,-0.11030003802290671],[120,113,68,-0.1066129599025888],[120,113,69,-0.10065497245759407],[120,113,70,-0.10231574593892959],[120,113,71,-0.09964783141309974],[120,113,72,-0.09898912804994538],[120,113,73,-0.10153016168187383],[120,113,74,-0.10515638209737938],[120,113,75,-0.10558870490704499],[120,113,76,-0.10607183202371619],[120,113,77,-0.10903748868691948],[120,113,78,-0.11656616330296357],[120,113,79,-0.12616682652287572],[120,114,64,-0.1069369861716411],[120,114,65,-0.11273586691891388],[120,114,66,-0.11736267426868785],[120,114,67,-0.11737220936499411],[120,114,68,-0.11354197488257872],[120,114,69,-0.10880089819541117],[120,114,70,-0.10643445822946862],[120,114,71,-0.10392805891115277],[120,114,72,-0.10547148372318682],[120,114,73,-0.10756935472028548],[120,114,74,-0.10992116604909505],[120,114,75,-0.11192052601820364],[120,114,76,-0.11220501551774582],[120,114,77,-0.11534757532444942],[120,114,78,-0.12349338308017926],[120,114,79,-0.13041553335365233],[120,115,64,-0.10453092747507464],[120,115,65,-0.10934150829447596],[120,115,66,-0.11483654703597859],[120,115,67,-0.11529606777400317],[120,115,68,-0.11385546154147015],[120,115,69,-0.1080452259211801],[120,115,70,-0.10695374798369894],[120,115,71,-0.10391469247674512],[120,115,72,-0.10792252560579528],[120,115,73,-0.10798752681920143],[120,115,74,-0.10904979769585663],[120,115,75,-0.11260661757527024],[120,115,76,-0.11286110740761177],[120,115,77,-0.11719944056226372],[120,115,78,-0.12490318650928862],[120,115,79,-0.12988728578850595],[120,116,64,-0.07786473771140635],[120,116,65,-0.08575423083980174],[120,116,66,-0.0946213058661966],[120,116,67,-0.10019854112869722],[120,116,68,-0.10360548273722421],[120,116,69,-0.10209365778719297],[120,116,70,-0.10378875497070242],[120,116,71,-0.10418892245728131],[120,116,72,-0.10583422237232216],[120,116,73,-0.10421152957687885],[120,116,74,-0.10656372868638449],[120,116,75,-0.11029983049263323],[120,116,76,-0.11022975170026406],[120,116,77,-0.11116728657932923],[120,116,78,-0.11694753260418142],[120,116,79,-0.11678970660526666],[120,117,64,-0.07736080016983253],[120,117,65,-0.08719775150005583],[120,117,66,-0.09520166263129395],[120,117,67,-0.10337601131250415],[120,117,68,-0.10806330023131668],[120,117,69,-0.10824115831462408],[120,117,70,-0.11047822265103163],[120,117,71,-0.11227413887951213],[120,117,72,-0.11172503309587092],[120,117,73,-0.11025208085315605],[120,117,74,-0.1126133431259008],[120,117,75,-0.11630639052479966],[120,117,76,-0.11587818320732224],[120,117,77,-0.11499010239793762],[120,117,78,-0.11353537709321464],[120,117,79,-0.10841519204504296],[120,118,64,-0.07701774576567935],[120,118,65,-0.08394611633211492],[120,118,66,-0.09413186361831123],[120,118,67,-0.10181506948746194],[120,118,68,-0.10786914084834556],[120,118,69,-0.11057247933503535],[120,118,70,-0.11193489022613579],[120,118,71,-0.11278054092623122],[120,118,72,-0.1109164956961788],[120,118,73,-0.10970216059545312],[120,118,74,-0.11230415539622984],[120,118,75,-0.11476913416636347],[120,118,76,-0.1181892332809312],[120,118,77,-0.11650749811471416],[120,118,78,-0.115792876623072],[120,118,79,-0.1091335999213096],[120,119,64,-0.06827091118001138],[120,119,65,-0.07838243029753063],[120,119,66,-0.08708661017355204],[120,119,67,-0.09493321155407511],[120,119,68,-0.09997710199300078],[120,119,69,-0.10472025588892284],[120,119,70,-0.1069696842202312],[120,119,71,-0.10805196378709397],[120,119,72,-0.10744061295086965],[120,119,73,-0.10603135227773805],[120,119,74,-0.11025536269297417],[120,119,75,-0.11479372010464611],[120,119,76,-0.11952499133877159],[120,119,77,-0.1173413182551951],[120,119,78,-0.1145224952456286],[120,119,79,-0.10824702976465564],[120,120,64,-0.06971533778120678],[120,120,65,-0.0797775820076691],[120,120,66,-0.08375895180462406],[120,120,67,-0.09175959394077364],[120,120,68,-0.0994881327456058],[120,120,69,-0.10410075373070887],[120,120,70,-0.10673790835442086],[120,120,71,-0.10757693499539463],[120,120,72,-0.10566505083489222],[120,120,73,-0.10671833050461099],[120,120,74,-0.10843705590562097],[120,120,75,-0.11551042680342288],[120,120,76,-0.1199411326626368],[120,120,77,-0.11805378365602462],[120,120,78,-0.1156104894034857],[120,120,79,-0.11015840040937741],[120,121,64,-0.06475455261150928],[120,121,65,-0.07199569597106495],[120,121,66,-0.07473135449964807],[120,121,67,-0.08009303479095484],[120,121,68,-0.08887415671895402],[120,121,69,-0.09483642689236052],[120,121,70,-0.09576606180710341],[120,121,71,-0.0976938393484148],[120,121,72,-0.09722118225195961],[120,121,73,-0.0993100472703863],[120,121,74,-0.09936385392882646],[120,121,75,-0.1068703664771016],[120,121,76,-0.11180435741715031],[120,121,77,-0.11786267564174277],[120,121,78,-0.12099674504408317],[120,121,79,-0.12345610538119627],[120,122,64,-0.06699255969985889],[120,122,65,-0.07453223164517131],[120,122,66,-0.07981956714795946],[120,122,67,-0.08547378074271708],[120,122,68,-0.0934145442512006],[120,122,69,-0.10075917924183632],[120,122,70,-0.1021365449283903],[120,122,71,-0.10450636692043101],[120,122,72,-0.10330611228614728],[120,122,73,-0.1066380199521276],[120,122,74,-0.10916565013117643],[120,122,75,-0.11171641349280322],[120,122,76,-0.11651844737501485],[120,122,77,-0.1252855554470274],[120,122,78,-0.12770760380830934],[120,122,79,-0.1287082215576447],[120,123,64,-0.06307626505183442],[120,123,65,-0.069618592872103],[120,123,66,-0.0787293735229071],[120,123,67,-0.08525820615929325],[120,123,68,-0.09281344986641635],[120,123,69,-0.10115365684169722],[120,123,70,-0.10440314977525086],[120,123,71,-0.10451644626514708],[120,123,72,-0.10470513272890163],[120,123,73,-0.10906418881420853],[120,123,74,-0.1123508840018056],[120,123,75,-0.11399558996037175],[120,123,76,-0.11926180134392292],[120,123,77,-0.12559919153562538],[120,123,78,-0.12933650919588416],[120,123,79,-0.13180829097550775],[120,124,64,-0.061737066397137844],[120,124,65,-0.06674316849406878],[120,124,66,-0.07508791268989905],[120,124,67,-0.08140576161357341],[120,124,68,-0.090643351735004],[120,124,69,-0.09816133709752937],[120,124,70,-0.10289285773879166],[120,124,71,-0.10141906090193431],[120,124,72,-0.10381288330844382],[120,124,73,-0.10558384612688282],[120,124,74,-0.11148197433199894],[120,124,75,-0.11546976974612766],[120,124,76,-0.1191842564892674],[120,124,77,-0.12485666952796046],[120,124,78,-0.13187043729623893],[120,124,79,-0.1347715734971397],[120,125,64,-0.05988994626599213],[120,125,65,-0.06601737487380901],[120,125,66,-0.07419721871991114],[120,125,67,-0.08223917731741025],[120,125,68,-0.09316710769629898],[120,125,69,-0.10001798340296925],[120,125,70,-0.10353928427532696],[120,125,71,-0.10183188253924128],[120,125,72,-0.10374747079932398],[120,125,73,-0.10766448868844938],[120,125,74,-0.11498604838401577],[120,125,75,-0.11561293936669478],[120,125,76,-0.12073374112431771],[120,125,77,-0.12678370893944008],[120,125,78,-0.13159074303376045],[120,125,79,-0.13466581208796974],[120,126,64,-0.05691088241186548],[120,126,65,-0.0631345022047619],[120,126,66,-0.0734046648766958],[120,126,67,-0.08368362764949674],[120,126,68,-0.09573685958688907],[120,126,69,-0.10122983542163029],[120,126,70,-0.10358302127813024],[120,126,71,-0.10359373268073144],[120,126,72,-0.10611806642598343],[120,126,73,-0.11025980901685492],[120,126,74,-0.11738585519800003],[120,126,75,-0.11797187646416256],[120,126,76,-0.12412531846554498],[120,126,77,-0.12739405597841788],[120,126,78,-0.13304268893359286],[120,126,79,-0.1361577243693219],[120,127,64,-0.04757391159480562],[120,127,65,-0.055143976242051536],[120,127,66,-0.06631419449386786],[120,127,67,-0.08002565779919202],[120,127,68,-0.09146959506474087],[120,127,69,-0.09741165499977965],[120,127,70,-0.09819884650513062],[120,127,71,-0.10432070699016945],[120,127,72,-0.10744928408002188],[120,127,73,-0.10954090568574493],[120,127,74,-0.1178541330064474],[120,127,75,-0.12298699125605513],[120,127,76,-0.12743489989369572],[120,127,77,-0.12974687898981074],[120,127,78,-0.13293845655493824],[120,127,79,-0.13712265685131242],[120,128,64,-0.04532976332122435],[120,128,65,-0.055504284672356324],[120,128,66,-0.0663257879690489],[120,128,67,-0.08010156890665762],[120,128,68,-0.0900329556682718],[120,128,69,-0.09899351495592415],[120,128,70,-0.10171993770038462],[120,128,71,-0.10720837746080608],[120,128,72,-0.10966479142649135],[120,128,73,-0.11125217584082292],[120,128,74,-0.11814184140377512],[120,128,75,-0.12360929044607656],[120,128,76,-0.13030744518036966],[120,128,77,-0.13232971506558627],[120,128,78,-0.13373586409425497],[120,128,79,-0.1388812302490182],[120,129,64,-0.03820784774877737],[120,129,65,-0.05054428545017917],[120,129,66,-0.06677030348190652],[120,129,67,-0.08016657264449487],[120,129,68,-0.09314709681553496],[120,129,69,-0.10061305614453522],[120,129,70,-0.10457504692432598],[120,129,71,-0.1121964405392482],[120,129,72,-0.11203520757571261],[120,129,73,-0.1147779582986223],[120,129,74,-0.12070190300349508],[120,129,75,-0.12922122477637799],[120,129,76,-0.13174474611933773],[120,129,77,-0.13145128868975753],[120,129,78,-0.12595260838764274],[120,129,79,-0.12930937293971032],[120,130,64,-0.045891666754350066],[120,130,65,-0.056734917282479466],[120,130,66,-0.0735694426352258],[120,130,67,-0.08594297643485302],[120,130,68,-0.09740584589675196],[120,130,69,-0.10529400163999689],[120,130,70,-0.11065466620981979],[120,130,71,-0.11712559337087397],[120,130,72,-0.12021325483368694],[120,130,73,-0.12236770500541444],[120,130,74,-0.1507568484633181],[120,130,75,-0.18688194306139716],[120,130,76,-0.18475685074623613],[120,130,77,-0.19979414009110397],[120,130,78,-0.2372573231930423],[120,130,79,-0.275986982964149],[120,131,64,-0.04548799366840106],[120,131,65,-0.059330921387380775],[120,131,66,-0.0741640472008603],[120,131,67,-0.08541408668064661],[120,131,68,-0.09784485920509094],[120,131,69,-0.10716229344439848],[120,131,70,-0.11309770701483149],[120,131,71,-0.11884323262470077],[120,131,72,-0.12246330774277614],[120,131,73,-0.12684069257176575],[120,131,74,-0.17250734743985746],[120,131,75,-0.20259574297298827],[120,131,76,-0.1985998512547338],[120,131,77,-0.21603856806774702],[120,131,78,-0.25401578444594514],[120,131,79,-0.27854125913024486],[120,132,64,-0.03780317957243677],[120,132,65,-0.04996770604124551],[120,132,66,-0.06666091283442316],[120,132,67,-0.07975910782369754],[120,132,68,-0.09099490297947396],[120,132,69,-0.1031970343011896],[120,132,70,-0.11054202026307665],[120,132,71,-0.11853096178268555],[120,132,72,-0.12183964326953939],[120,132,73,-0.1263888184824365],[120,132,74,-0.17485440348139697],[120,132,75,-0.205687190189552],[120,132,76,-0.21231142845565712],[120,132,77,-0.2289308423946571],[120,132,78,-0.26606121908731767],[120,132,79,-0.2771917667898113],[120,133,64,-0.049971353647095554],[120,133,65,-0.05890868139182036],[120,133,66,-0.06804388103457043],[120,133,67,-0.08026780546615431],[120,133,68,-0.09278517205785397],[120,133,69,-0.10318513000229575],[120,133,70,-0.11262623187769391],[120,133,71,-0.11961037548442055],[120,133,72,-0.12396193401875458],[120,133,73,-0.13896489530822348],[120,133,74,-0.18209080957660329],[120,133,75,-0.2010746564700696],[120,133,76,-0.2171420116643889],[120,133,77,-0.2309023482144733],[120,133,78,-0.2660916575331017],[120,133,79,-0.26970694554361657],[120,134,64,-0.0504165113218322],[120,134,65,-0.06218818452471682],[120,134,66,-0.06771606029767485],[120,134,67,-0.0783361677316692],[120,134,68,-0.09144746079128785],[120,134,69,-0.10279504013489281],[120,134,70,-0.11485767702664021],[120,134,71,-0.12180487836899828],[120,134,72,-0.12426760835655715],[120,134,73,-0.148634764118469],[120,134,74,-0.18795653249154953],[120,134,75,-0.20689381326213624],[120,134,76,-0.21962630499441282],[120,134,77,-0.2355679546170415],[120,134,78,-0.27019995401311386],[120,134,79,-0.2757231199888979],[120,135,64,-0.04626892791403137],[120,135,65,-0.057145573677269156],[120,135,66,-0.06365506073511257],[120,135,67,-0.0732540387627475],[120,135,68,-0.08728586001601217],[120,135,69,-0.0995457072738497],[120,135,70,-0.11294279762781892],[120,135,71,-0.11944962983447759],[120,135,72,-0.12456150568671126],[120,135,73,-0.14152965821130742],[120,135,74,-0.18031260787318867],[120,135,75,-0.19420346519990503],[120,135,76,-0.20578071564780492],[120,135,77,-0.22141100685648968],[120,135,78,-0.2579988880513031],[120,135,79,-0.2691202806112962],[120,136,64,-0.04553805212725254],[120,136,65,-0.055880900761032345],[120,136,66,-0.065606747274082],[120,136,67,-0.07474212806751776],[120,136,68,-0.08782016488227065],[120,136,69,-0.1013529142905816],[120,136,70,-0.11289442932775323],[120,136,71,-0.11944155472883802],[120,136,72,-0.12575246748396904],[120,136,73,-0.1574869610183432],[120,136,74,-0.19050152287965894],[120,136,75,-0.20442223292458778],[120,136,76,-0.21690645071901188],[120,136,77,-0.23213627732573572],[120,136,78,-0.261047725489142],[120,136,79,-0.2763778944264377],[120,137,64,-0.045523769240894386],[120,137,65,-0.05635874883024391],[120,137,66,-0.06414218311495667],[120,137,67,-0.07432291608320102],[120,137,68,-0.08772084183737203],[120,137,69,-0.10143023039402979],[120,137,70,-0.11533687916421745],[120,137,71,-0.11973514378503129],[120,137,72,-0.12542255375003444],[120,137,73,-0.15335187203155082],[120,137,74,-0.18093206425352915],[120,137,75,-0.19622378755027275],[120,137,76,-0.20477370420614768],[120,137,77,-0.2162408277297176],[120,137,78,-0.23100496060667802],[120,137,79,-0.26264413980376694],[120,138,64,-0.05159440987323754],[120,138,65,-0.06129595262525797],[120,138,66,-0.07106401766140472],[120,138,67,-0.07957105706884471],[120,138,68,-0.09480099889669241],[120,138,69,-0.10792164565189238],[120,138,70,-0.11982773855329232],[120,138,71,-0.1231570257221809],[120,138,72,-0.12853484565617218],[120,138,73,-0.14189093688805243],[120,138,74,-0.16747590412359298],[120,138,75,-0.18394757071266343],[120,138,76,-0.19286226952809862],[120,138,77,-0.19507843116942003],[120,138,78,-0.21146088640633792],[120,138,79,-0.23730815450299272],[120,139,64,-0.05253713098637249],[120,139,65,-0.060273645702272574],[120,139,66,-0.07113717810039148],[120,139,67,-0.08024374945707013],[120,139,68,-0.09465572993894716],[120,139,69,-0.10814682091727001],[120,139,70,-0.11856671450938433],[120,139,71,-0.12142413286949348],[120,139,72,-0.12468276818664518],[120,139,73,-0.14830522869206195],[120,139,74,-0.17520578670906645],[120,139,75,-0.19030940050489514],[120,139,76,-0.20276387304144394],[120,139,77,-0.20380134948566833],[120,139,78,-0.22399819701378332],[120,139,79,-0.24637542452448435],[120,140,64,-0.06315014654841214],[120,140,65,-0.06800674451130301],[120,140,66,-0.08012076256380558],[120,140,67,-0.08668362891088889],[120,140,68,-0.09516718432473678],[120,140,69,-0.10412450268133305],[120,140,70,-0.1129710118036535],[120,140,71,-0.11542600653669557],[120,140,72,-0.11975001253477188],[120,140,73,-0.1437536562303692],[120,140,74,-0.17206575813451025],[120,140,75,-0.18393863804531244],[120,140,76,-0.19662566777357338],[120,140,77,-0.19956206093920123],[120,140,78,-0.2149987869054445],[120,140,79,-0.24224255032948044],[120,141,64,-0.06119892561820031],[120,141,65,-0.0690325916633917],[120,141,66,-0.08581362889897501],[120,141,67,-0.09712984065133388],[120,141,68,-0.10438345957617541],[120,141,69,-0.11220932226398325],[120,141,70,-0.11761008357477651],[120,141,71,-0.12032677470490658],[120,141,72,-0.12244930804427837],[120,141,73,-0.14202417372730244],[120,141,74,-0.16159949990296513],[120,141,75,-0.17166324836968652],[120,141,76,-0.1826320032732868],[120,141,77,-0.19052277258988493],[120,141,78,-0.19705892487810328],[120,141,79,-0.22711250369560004],[120,142,64,-0.06256115277624498],[120,142,65,-0.06827128951502526],[120,142,66,-0.08577961947384391],[120,142,67,-0.09880061725131624],[120,142,68,-0.10694264888319727],[120,142,69,-0.11526396069717236],[120,142,70,-0.11657953900043716],[120,142,71,-0.11887222723563079],[120,142,72,-0.12092810231970205],[120,142,73,-0.14156473617624438],[120,142,74,-0.15655792374435468],[120,142,75,-0.17002868008777838],[120,142,76,-0.18043588543070446],[120,142,77,-0.18862072960583295],[120,142,78,-0.19893781829391013],[120,142,79,-0.2213702154116879],[120,143,64,-0.05760610705180219],[120,143,65,-0.06540858507620703],[120,143,66,-0.08326383102176979],[120,143,67,-0.09642394337130639],[120,143,68,-0.10698722429517282],[120,143,69,-0.11392969433669715],[120,143,70,-0.11454743622621624],[120,143,71,-0.11404429921892063],[120,143,72,-0.11711038055784523],[120,143,73,-0.13491443876358866],[120,143,74,-0.1477181078989145],[120,143,75,-0.16184385741254453],[120,143,76,-0.17114055836115077],[120,143,77,-0.18086187915469135],[120,143,78,-0.1874913512803549],[120,143,79,-0.20152029170184527],[120,144,64,-0.058323604782768115],[120,144,65,-0.0677738427944856],[120,144,66,-0.0829219994994345],[120,144,67,-0.09781626687727832],[120,144,68,-0.10548839103747241],[120,144,69,-0.11242464942577271],[120,144,70,-0.11543102289605792],[120,144,71,-0.1138256596149657],[120,144,72,-0.11566165675211068],[120,144,73,-0.13701642452574],[120,144,74,-0.15348328246665144],[120,144,75,-0.16579475534546384],[120,144,76,-0.17664666054116723],[120,144,77,-0.1879033359166992],[120,144,78,-0.19305058328171432],[120,144,79,-0.21168490835462062],[120,145,64,-0.05673162084508278],[120,145,65,-0.06547790906432993],[120,145,66,-0.07363575986714418],[120,145,67,-0.08801534969633293],[120,145,68,-0.09434436614735534],[120,145,69,-0.09797691444122253],[120,145,70,-0.10430656394467408],[120,145,71,-0.10887496196066636],[120,145,72,-0.1114445584657315],[120,145,73,-0.12086569237080247],[120,145,74,-0.12802398024134604],[120,145,75,-0.13428042243783042],[120,145,76,-0.14623810239198887],[120,145,77,-0.15012076660279366],[120,145,78,-0.1539905092491542],[120,145,79,-0.16413167801594886],[120,146,64,-0.0644156819990519],[120,146,65,-0.07331391179911471],[120,146,66,-0.08102562519896377],[120,146,67,-0.09136433108114887],[120,146,68,-0.09837708691589084],[120,146,69,-0.10123440385393646],[120,146,70,-0.10840611028890737],[120,146,71,-0.11499259655822333],[120,146,72,-0.11691791463674818],[120,146,73,-0.12519931562343245],[120,146,74,-0.1332914669583103],[120,146,75,-0.1411862681393793],[120,146,76,-0.15197640437479315],[120,146,77,-0.15654811046217412],[120,146,78,-0.16032210895052298],[120,146,79,-0.16912192348185617],[120,147,64,-0.0649325752729942],[120,147,65,-0.07481951512013751],[120,147,66,-0.08321293688313397],[120,147,67,-0.09046605980301561],[120,147,68,-0.09802268383712318],[120,147,69,-0.10144406683580602],[120,147,70,-0.10730312930572217],[120,147,71,-0.11399883335422276],[120,147,72,-0.11668124481856235],[120,147,73,-0.12398886369117113],[120,147,74,-0.13291461664712334],[120,147,75,-0.1414136879922751],[120,147,76,-0.14940572601721605],[120,147,77,-0.1573692137930091],[120,147,78,-0.16141426978188977],[120,147,79,-0.14970805266840398],[120,148,64,-0.03325429372746383],[120,148,65,-0.045302881663588854],[120,148,66,-0.05750038434826256],[120,148,67,-0.06551944020087615],[120,148,68,-0.07440525740452295],[120,148,69,-0.08008240076221251],[120,148,70,-0.08560513424513044],[120,148,71,-0.092100136242355],[120,148,72,-0.09572726560219703],[120,148,73,-0.10254872294077134],[120,148,74,-0.11253719886550366],[120,148,75,-0.11607106752204628],[120,148,76,-0.10739100171527087],[120,148,77,-0.12651976340199492],[120,148,78,-0.12610555498265394],[120,148,79,-0.10064538900460832],[120,149,64,-0.03452791522851428],[120,149,65,-0.04823203830199373],[120,149,66,-0.060866303067599714],[120,149,67,-0.0692928760622166],[120,149,68,-0.07668468302014761],[120,149,69,-0.08078041339158801],[120,149,70,-0.08619727696166796],[120,149,71,-0.09491394064942021],[120,149,72,-0.09745151082536985],[120,149,73,-0.10668398736880719],[120,149,74,-0.11477214288226778],[120,149,75,-0.1201029149881961],[120,149,76,-0.10375983263924667],[120,149,77,-0.1323369458999293],[120,149,78,-0.12823979847595662],[120,149,79,-0.09472464140639651],[120,150,64,-0.03783040770907867],[120,150,65,-0.05008172797407842],[120,150,66,-0.06568300615843228],[120,150,67,-0.07062601157644899],[120,150,68,-0.07817448530091067],[120,150,69,-0.08165509815186361],[120,150,70,-0.08575992378315644],[120,150,71,-0.0965120739223891],[120,150,72,-0.10140674196238186],[120,150,73,-0.10956466077660207],[120,150,74,-0.11563804014694964],[120,150,75,-0.12192264601941506],[120,150,76,-0.10236282083799315],[120,150,77,-0.13064371396003793],[120,150,78,-0.1271484813341578],[120,150,79,-0.09130810471011441],[120,151,64,-0.036100771626378675],[120,151,65,-0.05091992917954818],[120,151,66,-0.06375324727586269],[120,151,67,-0.06756998948140999],[120,151,68,-0.07392161104591949],[120,151,69,-0.08107030748505903],[120,151,70,-0.08382963410240324],[120,151,71,-0.09344833320452749],[120,151,72,-0.10106992818008947],[120,151,73,-0.10841887757632715],[120,151,74,-0.11759837311429168],[120,151,75,-0.12492674345723463],[120,151,76,-0.12657330625173424],[120,151,77,-0.13501970957170262],[120,151,78,-0.13989352432394325],[120,151,79,-0.10010602229259132],[120,152,64,-0.04156596028439768],[120,152,65,-0.05652824729563649],[120,152,66,-0.06650509913824444],[120,152,67,-0.06915190865299589],[120,152,68,-0.0737702466190259],[120,152,69,-0.0827905978627012],[120,152,70,-0.08649843323549081],[120,152,71,-0.0908630367147752],[120,152,72,-0.09877103461182844],[120,152,73,-0.10818502610261702],[120,152,74,-0.11735734314809175],[120,152,75,-0.12421118310628795],[120,152,76,-0.13040850817739802],[120,152,77,-0.13683714268643787],[120,152,78,-0.13767429227065728],[120,152,79,-0.09656060827854435],[120,153,64,-0.03915641215971004],[120,153,65,-0.06016923114120908],[120,153,66,-0.07419858897258678],[120,153,67,-0.07851517112593295],[120,153,68,-0.08452859169382854],[120,153,69,-0.09520264780960411],[120,153,70,-0.09633572402109844],[120,153,71,-0.09691510944594613],[120,153,72,-0.1004290168046229],[120,153,73,-0.10798027907110731],[120,153,74,-0.11697615401363022],[120,153,75,-0.12404324460793408],[120,153,76,-0.12899674128644306],[120,153,77,-0.13163363727513266],[120,153,78,-0.11757464335110923],[120,153,79,-0.08201546583840649],[120,154,64,-0.047371877534780706],[120,154,65,-0.06669645574774295],[120,154,66,-0.08121385327045227],[120,154,67,-0.0861816643038067],[120,154,68,-0.09207397558200234],[120,154,69,-0.0996279469072642],[120,154,70,-0.10181592131422174],[120,154,71,-0.10051420353868441],[120,154,72,-0.10682668216543474],[120,154,73,-0.11053574880978596],[120,154,74,-0.12023242751773962],[120,154,75,-0.1274995322558296],[120,154,76,-0.13349291281847794],[120,154,77,-0.13334996239256425],[120,154,78,-0.12992826198698154],[120,154,79,-0.10020085584720848],[120,155,64,-0.05023061641624823],[120,155,65,-0.06675802222069184],[120,155,66,-0.08191107137247257],[120,155,67,-0.08776775656778668],[120,155,68,-0.09412457339423827],[120,155,69,-0.09899015601174567],[120,155,70,-0.1006344412158991],[120,155,71,-0.09981762135854111],[120,155,72,-0.1063331192403053],[120,155,73,-0.10899163734847632],[120,155,74,-0.11635222335819533],[120,155,75,-0.12475927789871803],[120,155,76,-0.13163317186236795],[120,155,77,-0.13369651708916577],[120,155,78,-0.12778180297951797],[120,155,79,-0.10543574934777825],[120,156,64,-0.052785605710370845],[120,156,65,-0.06677265325226363],[120,156,66,-0.08116130360356162],[120,156,67,-0.08998280254849407],[120,156,68,-0.09716059960097889],[120,156,69,-0.10054813507324362],[120,156,70,-0.1023490455881006],[120,156,71,-0.10211961513467242],[120,156,72,-0.10529536389474228],[120,156,73,-0.1102945744066676],[120,156,74,-0.11512757570112096],[120,156,75,-0.12592288752268838],[120,156,76,-0.13036948066251808],[120,156,77,-0.13349323546585393],[120,156,78,-0.13193462814772455],[120,156,79,-0.11025246450894946],[120,157,64,-0.06279331211449768],[120,157,65,-0.07101540658951591],[120,157,66,-0.07610395800576379],[120,157,67,-0.08165848235284429],[120,157,68,-0.08417008357341745],[120,157,69,-0.0891228026360375],[120,157,70,-0.09559467390355592],[120,157,71,-0.0967601306392636],[120,157,72,-0.09881661041052897],[120,157,73,-0.1068287322190993],[120,157,74,-0.11415367320386169],[120,157,75,-0.12207709097610722],[120,157,76,-0.13114001601280917],[120,157,77,-0.13718382929244077],[120,157,78,-0.1380838905198066],[120,157,79,-0.11544076937703959],[120,158,64,-0.06399191479210321],[120,158,65,-0.07159643016788371],[120,158,66,-0.07510956979726792],[120,158,67,-0.07847219528471848],[120,158,68,-0.07917174329446304],[120,158,69,-0.08716039985250301],[120,158,70,-0.09451197675537461],[120,158,71,-0.09796092719582909],[120,158,72,-0.09663503310998436],[120,158,73,-0.10398505663898616],[120,158,74,-0.1117433947133169],[120,158,75,-0.1220860900402571],[120,158,76,-0.12963659274683137],[120,158,77,-0.13615349992588072],[120,158,78,-0.13647846264487914],[120,158,79,-0.11194287463740013],[120,159,64,-0.1229603095883099],[120,159,65,-0.12674812524163337],[120,159,66,-0.12260890050540753],[120,159,67,-0.11878910525593941],[120,159,68,-0.11222080988297971],[120,159,69,-0.11404443594772576],[120,159,70,-0.11194315678518653],[120,159,71,-0.10777264532488826],[120,159,72,-0.09982026375004216],[120,159,73,-0.09800625455183178],[120,159,74,-0.09941738438443863],[120,159,75,-0.09960071285591397],[120,159,76,-0.10118237071736394],[120,159,77,-0.09843767327995125],[120,159,78,-0.0936322846686242],[120,159,79,-0.0810067300901407],[120,160,64,-0.12366079425955512],[120,160,65,-0.12445984406164383],[120,160,66,-0.11982635926437221],[120,160,67,-0.1165166279190455],[120,160,68,-0.11179622245470512],[120,160,69,-0.1103067206646675],[120,160,70,-0.10904304388327678],[120,160,71,-0.10548410790863837],[120,160,72,-0.09949782690881587],[120,160,73,-0.09875787696061035],[120,160,74,-0.09704925609243228],[120,160,75,-0.09661848703107481],[120,160,76,-0.09905953577634523],[120,160,77,-0.09857908698956316],[120,160,78,-0.09138496092027468],[120,160,79,-0.08208992282080355],[120,161,64,-0.12072071959819425],[120,161,65,-0.12050090777439958],[120,161,66,-0.11866685806349656],[120,161,67,-0.11522382138150933],[120,161,68,-0.11159408512983389],[120,161,69,-0.11100041539066742],[120,161,70,-0.10646490298013297],[120,161,71,-0.10275077667270364],[120,161,72,-0.09873444796691494],[120,161,73,-0.09700876861307553],[120,161,74,-0.09605683176193125],[120,161,75,-0.0937711377782269],[120,161,76,-0.09594391356502503],[120,161,77,-0.09700353559128885],[120,161,78,-0.09128388883956391],[120,161,79,-0.0842292328008986],[120,162,64,-0.1224565364261575],[120,162,65,-0.12418619927549471],[120,162,66,-0.12439434157950323],[120,162,67,-0.12035576468121764],[120,162,68,-0.11687871406663718],[120,162,69,-0.11246127871054412],[120,162,70,-0.10604067109887698],[120,162,71,-0.10436175937756678],[120,162,72,-0.10171152062732033],[120,162,73,-0.09926451439924924],[120,162,74,-0.10020402109470669],[120,162,75,-0.09738134046628209],[120,162,76,-0.09759632610419579],[120,162,77,-0.09791985160003039],[120,162,78,-0.0943312293847557],[120,162,79,-0.09254006039520261],[120,163,64,-0.11921890418377099],[120,163,65,-0.12354920406383088],[120,163,66,-0.123552875314632],[120,163,67,-0.12182167035758112],[120,163,68,-0.1144245891804758],[120,163,69,-0.1104360687533585],[120,163,70,-0.10356158023040722],[120,163,71,-0.09938081551693392],[120,163,72,-0.09790768462686754],[120,163,73,-0.0963455923187366],[120,163,74,-0.09664968573005431],[120,163,75,-0.09512355600530309],[120,163,76,-0.09218090567093742],[120,163,77,-0.09133372784872104],[120,163,78,-0.0893391645166962],[120,163,79,-0.08706730596891758],[120,164,64,-0.09338742941366064],[120,164,65,-0.09621005932885279],[120,164,66,-0.09724843440248672],[120,164,67,-0.0955189079525282],[120,164,68,-0.08804683314505748],[120,164,69,-0.08151629350327835],[120,164,70,-0.07413142409742371],[120,164,71,-0.06860216239801287],[120,164,72,-0.06679555249045963],[120,164,73,-0.06508113815222097],[120,164,74,-0.06302935792677411],[120,164,75,-0.06219081138871856],[120,164,76,-0.06114970753727374],[120,164,77,-0.06446757043594312],[120,164,78,-0.06656533162652783],[120,164,79,-0.06608384870314568],[120,165,64,-0.08275805125986507],[120,165,65,-0.0920220066189292],[120,165,66,-0.10033978092650304],[120,165,67,-0.10104710427307799],[120,165,68,-0.09390414174758849],[120,165,69,-0.08960862393741988],[120,165,70,-0.07935885211136989],[120,165,71,-0.06978808669242118],[120,165,72,-0.06057482696433161],[120,165,73,-0.05393224341436309],[120,165,74,-0.051992008354137295],[120,165,75,-0.048301145759643865],[120,165,76,-0.04901334944481648],[120,165,77,-0.05631105903493494],[120,165,78,-0.06444876071226557],[120,165,79,-0.06337404201076888],[120,166,64,-0.07997253301922026],[120,166,65,-0.0887239166489913],[120,166,66,-0.09855901724096386],[120,166,67,-0.09822377747239426],[120,166,68,-0.0924312638074896],[120,166,69,-0.08616474963411541],[120,166,70,-0.07772497571407697],[120,166,71,-0.06784840028209058],[120,166,72,-0.05677265692273199],[120,166,73,-0.049834542652213015],[120,166,74,-0.0477894984354532],[120,166,75,-0.04458634231050779],[120,166,76,-0.045650656071795415],[120,166,77,-0.05169862613297151],[120,166,78,-0.06259321958631275],[120,166,79,-0.057412028563455016],[120,167,64,-0.07191123165652273],[120,167,65,-0.08023779287730264],[120,167,66,-0.09020272982855987],[120,167,67,-0.09020548880706192],[120,167,68,-0.08667063364297103],[120,167,69,-0.08144727737744308],[120,167,70,-0.07148401837129835],[120,167,71,-0.06331392546186015],[120,167,72,-0.05457309998054362],[120,167,73,-0.04798988027081756],[120,167,74,-0.04628838437091319],[120,167,75,-0.04458047209867222],[120,167,76,-0.046451551014495454],[120,167,77,-0.05085945079551369],[120,167,78,-0.06269510234023411],[120,167,79,-0.060751678587507706],[120,168,64,-0.06912416728064304],[120,168,65,-0.07991893537891777],[120,168,66,-0.08573357047006208],[120,168,67,-0.0847410007614172],[120,168,68,-0.0822472977005348],[120,168,69,-0.07748523249910172],[120,168,70,-0.06770069134089238],[120,168,71,-0.05937954628507446],[120,168,72,-0.0539899395027025],[120,168,73,-0.049174931042867465],[120,168,74,-0.04577456457272085],[120,168,75,-0.042654774605769274],[120,168,76,-0.04390246313586005],[120,168,77,-0.05049616803586817],[120,168,78,-0.05885651739397651],[120,168,79,-0.05843140491856245],[120,169,64,-0.07541412337363623],[120,169,65,-0.07947933289976979],[120,169,66,-0.07658669864540876],[120,169,67,-0.07244420061042486],[120,169,68,-0.06696482103052356],[120,169,69,-0.06426514570881348],[120,169,70,-0.05563333616842019],[120,169,71,-0.05460418763066641],[120,169,72,-0.055848156779614966],[120,169,73,-0.05775760191567671],[120,169,74,-0.054925317719514],[120,169,75,-0.050713035608365334],[120,169,76,-0.04997442060381344],[120,169,77,-0.05029188959780197],[120,169,78,-0.05012420130073719],[120,169,79,-0.048819180138285984],[120,170,64,-0.07880341472308316],[120,170,65,-0.07967803312942559],[120,170,66,-0.07897115482526204],[120,170,67,-0.07440870127430792],[120,170,68,-0.06858498507280772],[120,170,69,-0.06607408646542504],[120,170,70,-0.05832413834382065],[120,170,71,-0.056397317474808945],[120,170,72,-0.05894059403612559],[120,170,73,-0.06158995963747521],[120,170,74,-0.05884288193745336],[120,170,75,-0.05433000147584855],[120,170,76,-0.05107980998303675],[120,170,77,-0.052108497803141335],[120,170,78,-0.05135529293899887],[120,170,79,-0.05111545178770379],[120,171,64,-0.07721254472465958],[120,171,65,-0.07591315570037764],[120,171,66,-0.07480749869016895],[120,171,67,-0.07114196216070476],[120,171,68,-0.06540128607138013],[120,171,69,-0.06209941630219899],[120,171,70,-0.05568131820130795],[120,171,71,-0.05600646282179629],[120,171,72,-0.05729142745640322],[120,171,73,-0.05965197790255],[120,171,74,-0.05808359756033792],[120,171,75,-0.053836223364591575],[120,171,76,-0.0497360980195113],[120,171,77,-0.049818636041284795],[120,171,78,-0.04824557208711468],[120,171,79,-0.04509504734637601],[120,172,64,-0.0764649444673347],[120,172,65,-0.07455227363208046],[120,172,66,-0.07138107992988736],[120,172,67,-0.06731505319547988],[120,172,68,-0.06416161177629721],[120,172,69,-0.05808948402275915],[120,172,70,-0.05401367285809535],[120,172,71,-0.05530083373101045],[120,172,72,-0.058414718580906626],[120,172,73,-0.059593506111604064],[120,172,74,-0.05702763132312573],[120,172,75,-0.05395375528401666],[120,172,76,-0.048502949451905294],[120,172,77,-0.04735874529675253],[120,172,78,-0.042181827607305974],[120,172,79,-0.035350990390790815],[120,173,64,-0.07595533429347695],[120,173,65,-0.07214123860782043],[120,173,66,-0.06856865580985227],[120,173,67,-0.06483380157257757],[120,173,68,-0.06194198159392599],[120,173,69,-0.058314528620952634],[120,173,70,-0.05337026737534103],[120,173,71,-0.054849064747982804],[120,173,72,-0.05592408743011575],[120,173,73,-0.05855274089551794],[120,173,74,-0.05439569150622636],[120,173,75,-0.054411738529494595],[120,173,76,-0.048137417136377175],[120,173,77,-0.04481329238679013],[120,173,78,-0.03956275980256538],[120,173,79,-0.03178450974285005],[120,174,64,-0.07254095067278152],[120,174,65,-0.06987058611733923],[120,174,66,-0.06548074227482592],[120,174,67,-0.06194905489958738],[120,174,68,-0.06166954533977969],[120,174,69,-0.059287784433666446],[120,174,70,-0.05467324870302364],[120,174,71,-0.05360141960261049],[120,174,72,-0.054368939861541836],[120,174,73,-0.05672747327465279],[120,174,74,-0.054309988427695674],[120,174,75,-0.055540250860681484],[120,174,76,-0.049035044658797496],[120,174,77,-0.04474758977052953],[120,174,78,-0.03803062898427913],[120,174,79,-0.030130193646363424],[120,175,64,-0.06728936113179534],[120,175,65,-0.06419380517725252],[120,175,66,-0.05868503625439492],[120,175,67,-0.0560358693988135],[120,175,68,-0.055820357424634176],[120,175,69,-0.05551392715367549],[120,175,70,-0.052904443868387954],[120,175,71,-0.05203924123295217],[120,175,72,-0.05249488249915056],[120,175,73,-0.05671218464585898],[120,175,74,-0.05486261432287823],[120,175,75,-0.05541377008950685],[120,175,76,-0.050372325725669374],[120,175,77,-0.04625462718667407],[120,175,78,-0.041629487656645425],[120,175,79,-0.031200621127452838],[120,176,64,-0.06663874556087994],[120,176,65,-0.06341969306055441],[120,176,66,-0.057623230284665435],[120,176,67,-0.05400058114095921],[120,176,68,-0.0525339282421241],[120,176,69,-0.053570547475501454],[120,176,70,-0.050633085470813716],[120,176,71,-0.05113025886615796],[120,176,72,-0.05221051477871803],[120,176,73,-0.05557359934196077],[120,176,74,-0.051803735220789515],[120,176,75,-0.052574502582473155],[120,176,76,-0.04860721896387247],[120,176,77,-0.045543837553545234],[120,176,78,-0.03991347391460137],[120,176,79,-0.03222923157253837],[120,177,64,-0.07241917575766954],[120,177,65,-0.06547970499735933],[120,177,66,-0.05651168436933325],[120,177,67,-0.05380405010255049],[120,177,68,-0.05123823255358166],[120,177,69,-0.054929224598727164],[120,177,70,-0.05425955037720103],[120,177,71,-0.05316475396583076],[120,177,72,-0.05635605128809183],[120,177,73,-0.06147394223989244],[120,177,74,-0.056937304496113283],[120,177,75,-0.056164386397797014],[120,177,76,-0.0541247671320702],[120,177,77,-0.04690609628998914],[120,177,78,-0.035816359690698824],[120,177,79,-0.03283410016577359],[120,178,64,-0.07379597902563928],[120,178,65,-0.06673093098689209],[120,178,66,-0.05779117569657753],[120,178,67,-0.05497229630542955],[120,178,68,-0.05578821120633725],[120,178,69,-0.06091492438470217],[120,178,70,-0.058718876811574484],[120,178,71,-0.05782938610942545],[120,178,72,-0.0591340966145567],[120,178,73,-0.06178125756630384],[120,178,74,-0.06124229121377602],[120,178,75,-0.05831208432982079],[120,178,76,-0.06062157015123608],[120,178,77,-0.05261685608407667],[120,178,78,-0.04100342199706386],[120,178,79,-0.03511493847148366],[120,179,64,-0.07010699351603064],[120,179,65,-0.0660745485350891],[120,179,66,-0.05556781765715542],[120,179,67,-0.051973349232023826],[120,179,68,-0.053994662676468935],[120,179,69,-0.05752893608349659],[120,179,70,-0.05756861741086111],[120,179,71,-0.0585492131546705],[120,179,72,-0.05682933751384979],[120,179,73,-0.059307988286133206],[120,179,74,-0.058683839440424664],[120,179,75,-0.05719364654860123],[120,179,76,-0.056049798917353004],[120,179,77,-0.050951186296977063],[120,179,78,-0.04153186200068261],[120,179,79,-0.03874643875664631],[120,180,64,-0.05546031304677329],[120,180,65,-0.052301465560012785],[120,180,66,-0.043290936583340045],[120,180,67,-0.04063478467300778],[120,180,68,-0.041945337216686335],[120,180,69,-0.04769213505886515],[120,180,70,-0.049797296000050256],[120,180,71,-0.050584041462417774],[120,180,72,-0.04825537710268399],[120,180,73,-0.046660151746546044],[120,180,74,-0.04732471594118105],[120,180,75,-0.0480543214967025],[120,180,76,-0.0468059087597821],[120,180,77,-0.04323215997415568],[120,180,78,-0.035930230847064246],[120,180,79,-0.03961301431958083],[120,181,64,-0.04565821761410245],[120,181,65,-0.04225045753380492],[120,181,66,-0.03881297973110048],[120,181,67,-0.038506114159399724],[120,181,68,-0.04171943600780334],[120,181,69,-0.045753939477510254],[120,181,70,-0.04636559923755999],[120,181,71,-0.044315161664312236],[120,181,72,-0.03842395614455872],[120,181,73,-0.03255694983736311],[120,181,74,-0.031852593779268426],[120,181,75,-0.034943171010632657],[120,181,76,-0.03777501177308276],[120,181,77,-0.04615044020657138],[120,181,78,-0.06689045638200009],[120,181,79,-0.08092399325743549],[120,182,64,-0.04536348308215893],[120,182,65,-0.03977654609436783],[120,182,66,-0.03760429233085891],[120,182,67,-0.039028821047174395],[120,182,68,-0.04055649423558501],[120,182,69,-0.042676161613456276],[120,182,70,-0.04385260035374039],[120,182,71,-0.04107451429556912],[120,182,72,-0.03512364803214302],[120,182,73,-0.02865983628473351],[120,182,74,-0.03070051831942419],[120,182,75,-0.033684430326248155],[120,182,76,-0.03396262672309856],[120,182,77,-0.04614404505907511],[120,182,78,-0.07017142130819937],[120,182,79,-0.08766872663526942],[120,183,64,-0.0404804430297214],[120,183,65,-0.03630008253013298],[120,183,66,-0.036266530351908674],[120,183,67,-0.03971488689737464],[120,183,68,-0.03888477702157453],[120,183,69,-0.03933205138392554],[120,183,70,-0.040980289504559675],[120,183,71,-0.038996946851512615],[120,183,72,-0.032896138577178685],[120,183,73,-0.02828008531098125],[120,183,74,-0.028013940395179404],[120,183,75,-0.03323990266463507],[120,183,76,-0.033668465713395795],[120,183,77,-0.03372389269782152],[120,183,78,-0.05771514458336324],[120,183,79,-0.07750989914632808],[120,184,64,-0.03899838930657698],[120,184,65,-0.03822553278756545],[120,184,66,-0.03608027351695127],[120,184,67,-0.03920317170456522],[120,184,68,-0.038412684625175386],[120,184,69,-0.038273218759482225],[120,184,70,-0.03939839250560924],[120,184,71,-0.03876939029443066],[120,184,72,-0.030846456179141155],[120,184,73,-0.027240072518854436],[120,184,74,-0.026159993876597593],[120,184,75,-0.028654221520173384],[120,184,76,-0.028711863217971173],[120,184,77,-0.039078636612277146],[120,184,78,-0.062013010630141606],[120,184,79,-0.07868930147422172],[120,185,64,-0.04159142290454022],[120,185,65,-0.038059919548033616],[120,185,66,-0.0349704297113152],[120,185,67,-0.03963599754315761],[120,185,68,-0.03842195957340974],[120,185,69,-0.03956895575250807],[120,185,70,-0.03734930137696704],[120,185,71,-0.03705108425313565],[120,185,72,-0.033523041638942985],[120,185,73,-0.02956399361232795],[120,185,74,-0.025620231404542268],[120,185,75,-0.027244192151142044],[120,185,76,-0.026986934766913273],[120,185,77,-0.04183488933157459],[120,185,78,-0.061883258687327414],[120,185,79,-0.07659820299092128],[120,186,64,-0.04839213509049025],[120,186,65,-0.043453838026454084],[120,186,66,-0.040210720559729546],[120,186,67,-0.04251499674079873],[120,186,68,-0.043641986961310164],[120,186,69,-0.043968749537268384],[120,186,70,-0.044016902617856415],[120,186,71,-0.041424484190433694],[120,186,72,-0.036680845398188625],[120,186,73,-0.03505688828592024],[120,186,74,-0.02919330206650836],[120,186,75,-0.030070671775487612],[120,186,76,-0.02860148416384073],[120,186,77,-0.04186509247535811],[120,186,78,-0.06315862583601242],[120,186,79,-0.0751395761667435],[120,187,64,-0.05225722264675171],[120,187,65,-0.04821602386863605],[120,187,66,-0.041837888703554635],[120,187,67,-0.041823777425877465],[120,187,68,-0.042777399404678534],[120,187,69,-0.043965213625122526],[120,187,70,-0.046230649493499726],[120,187,71,-0.04073472844047096],[120,187,72,-0.03653297639355653],[120,187,73,-0.03433112466818215],[120,187,74,-0.029713990002959073],[120,187,75,-0.028957981549614056],[120,187,76,-0.02676998148033792],[120,187,77,-0.051386732175329464],[120,187,78,-0.07677124250445819],[120,187,79,-0.08629717083256137],[120,188,64,-0.06635929321115733],[120,188,65,-0.057964245174789646],[120,188,66,-0.04694775774412108],[120,188,67,-0.041434044135647816],[120,188,68,-0.037579410818057726],[120,188,69,-0.03851718777716728],[120,188,70,-0.040071133749413276],[120,188,71,-0.032292941430794156],[120,188,72,-0.027862881073392867],[120,188,73,-0.025617049138558126],[120,188,74,-0.020423483408421497],[120,188,75,-0.015316341691859636],[120,188,76,-0.01838222626563693],[120,188,77,-0.04698323543601918],[120,188,78,-0.07494827888656277],[120,188,79,-0.07920551050681174],[120,189,64,-0.07997508286054557],[120,189,65,-0.06600748065176545],[120,189,66,-0.05320662982908553],[120,189,67,-0.04455218095993173],[120,189,68,-0.039269187196963026],[120,189,69,-0.041621972083943554],[120,189,70,-0.03915647675186007],[120,189,71,-0.032073002975122764],[120,189,72,-0.022359781666468084],[120,189,73,-0.018702872981631674],[120,189,74,-0.014566065146464136],[120,189,75,-0.007753700282798259],[120,189,76,-0.01238155889871223],[120,189,77,-0.04446377200476011],[120,189,78,-0.07432181328230011],[120,189,79,-0.0780278676531187],[120,190,64,-0.07970151343789274],[120,190,65,-0.06657321649529137],[120,190,66,-0.05429053967575179],[120,190,67,-0.04517399939646805],[120,190,68,-0.0414063233794011],[120,190,69,-0.04403059737414205],[120,190,70,-0.040942282244272196],[120,190,71,-0.03206897989441107],[120,190,72,-0.022909445027094466],[120,190,73,-0.01709565939781027],[120,190,74,-0.012536277991450934],[120,190,75,-0.007766083060892964],[120,190,76,-0.016253368734835662],[120,190,77,-0.05081727010895375],[120,190,78,-0.0780700359613993],[120,190,79,-0.07851881996126879],[120,191,64,-0.07682986986520524],[120,191,65,-0.06507834048070785],[120,191,66,-0.05399990530817055],[120,191,67,-0.04556331427386374],[120,191,68,-0.040947886492555874],[120,191,69,-0.043810771531995515],[120,191,70,-0.040272445113476316],[120,191,71,-0.033960567454018376],[120,191,72,-0.023962411787885246],[120,191,73,-0.0187495004071751],[120,191,74,-0.010966025288150563],[120,191,75,-0.010230762117474146],[120,191,76,-0.017286964167342475],[120,191,77,-0.05067346679483005],[120,191,78,-0.07162330359747793],[120,191,79,-0.07661423469434372],[120,192,64,-0.07567260637834806],[120,192,65,-0.06422775376704767],[120,192,66,-0.05540261113512979],[120,192,67,-0.046847310547043566],[120,192,68,-0.042785798362616395],[120,192,69,-0.04421482913795188],[120,192,70,-0.04113151981867064],[120,192,71,-0.03433154833103859],[120,192,72,-0.026473794558802693],[120,192,73,-0.01867285172806249],[120,192,74,-0.009239474407064963],[120,192,75,-0.008533431174247916],[120,192,76,-0.01865424595060073],[120,192,77,-0.053268532251566754],[120,192,78,-0.07734976178010228],[120,192,79,-0.07911710461323741],[120,193,64,-0.06694179186650491],[120,193,65,-0.05886631614969823],[120,193,66,-0.05258688934169816],[120,193,67,-0.04668911315847591],[120,193,68,-0.04442835264304591],[120,193,69,-0.04436794674892658],[120,193,70,-0.04046082292586445],[120,193,71,-0.03905288735651173],[120,193,72,-0.03503247436789564],[120,193,73,-0.029749580387994023],[120,193,74,-0.01994054296688469],[120,193,75,-0.01849910440314535],[120,193,76,-0.03209029370398411],[120,193,77,-0.05204321371476651],[120,193,78,-0.06655188085349861],[120,193,79,-0.06881780911841771],[120,194,64,-0.07485466794265765],[120,194,65,-0.06767883787656714],[120,194,66,-0.05855480256192217],[120,194,67,-0.050825818170220874],[120,194,68,-0.049787991832847364],[120,194,69,-0.04768160234010994],[120,194,70,-0.04293871244425744],[120,194,71,-0.04535588492613876],[120,194,72,-0.04047932287016914],[120,194,73,-0.03349146228730912],[120,194,74,-0.02769724151047398],[120,194,75,-0.02189469752538596],[120,194,76,-0.0356683017364767],[120,194,77,-0.056353758383678704],[120,194,78,-0.07315125597385838],[120,194,79,-0.07412322117421487],[120,195,64,-0.07693676089873389],[120,195,65,-0.07120994950501333],[120,195,66,-0.05900348891079124],[120,195,67,-0.04864775482949762],[120,195,68,-0.048228004915639604],[120,195,69,-0.04500846175515859],[120,195,70,-0.04184577832906072],[120,195,71,-0.044352933784752926],[120,195,72,-0.04041648727877127],[120,195,73,-0.03316749889216755],[120,195,74,-0.028934923009233518],[120,195,75,-0.020266373110349775],[120,195,76,-0.04198650245898704],[120,195,77,-0.06714026154275361],[120,195,78,-0.07830237576905455],[120,195,79,-0.08350386374826328],[120,196,64,-0.07335803801539789],[120,196,65,-0.06832401477039204],[120,196,66,-0.0617543717339583],[120,196,67,-0.05449148678131931],[120,196,68,-0.053456525865149596],[120,196,69,-0.05336082135597861],[120,196,70,-0.0542714021992823],[120,196,71,-0.0534934254782755],[120,196,72,-0.051488740913668694],[120,196,73,-0.047827031189722195],[120,196,74,-0.04048869134069227],[120,196,75,-0.03462490101172658],[120,196,76,-0.06277979440182159],[120,196,77,-0.0847283244815226],[120,196,78,-0.09541133768895867],[120,196,79,-0.10244731095607536],[120,197,64,-0.07382443980334932],[120,197,65,-0.06864842308908421],[120,197,66,-0.06143599350765573],[120,197,67,-0.0551539304045013],[120,197,68,-0.05579068499358617],[120,197,69,-0.05434777247802089],[120,197,70,-0.05160869877131676],[120,197,71,-0.049663319526333766],[120,197,72,-0.04880294241149385],[120,197,73,-0.04431326928774912],[120,197,74,-0.040145897585427054],[120,197,75,-0.034207953588069606],[120,197,76,-0.06302096914392741],[120,197,77,-0.08070837542551158],[120,197,78,-0.09920376708025544],[120,197,79,-0.10468047252228012],[120,198,64,-0.07452661876272089],[120,198,65,-0.06984755156363684],[120,198,66,-0.06097060311902222],[120,198,67,-0.057900017856885345],[120,198,68,-0.056432134641711505],[120,198,69,-0.05567768572189166],[120,198,70,-0.05085974119644979],[120,198,71,-0.04742466278703591],[120,198,72,-0.046303269272838024],[120,198,73,-0.04312330471411487],[120,198,74,-0.038100670420303365],[120,198,75,-0.03289388854882419],[120,198,76,-0.057979032212999],[120,198,77,-0.07786841486784532],[120,198,78,-0.09766943149247774],[120,198,79,-0.09915773196755323],[120,199,64,-0.07384255141551781],[120,199,65,-0.06850619154018645],[120,199,66,-0.06115011227574661],[120,199,67,-0.0591453747744069],[120,199,68,-0.05670183361940191],[120,199,69,-0.054081273712990895],[120,199,70,-0.04784909934076686],[120,199,71,-0.046386360877389315],[120,199,72,-0.04578229924455682],[120,199,73,-0.04070631314365712],[120,199,74,-0.03410470115039049],[120,199,75,-0.039477107155218995],[120,199,76,-0.06146148706300058],[120,199,77,-0.0917924413421066],[120,199,78,-0.09335662660786714],[120,199,79,-0.09508480012259526],[120,200,64,-0.07479089658519511],[120,200,65,-0.06853229340013249],[120,200,66,-0.06284275929539508],[120,200,67,-0.061151623205609656],[120,200,68,-0.057111481613595125],[120,200,69,-0.054110942220400055],[120,200,70,-0.047179779938498506],[120,200,71,-0.04378915756668379],[120,200,72,-0.04049379081846727],[120,200,73,-0.037479594588537446],[120,200,74,-0.030554547994375875],[120,200,75,-0.0409384401988121],[120,200,76,-0.06451619666342301],[120,200,77,-0.09473491938313525],[120,200,78,-0.09118405347025578],[120,200,79,-0.09254927458252797],[120,201,64,-0.07101086582723413],[120,201,65,-0.06063475842782705],[120,201,66,-0.05624472031617967],[120,201,67,-0.0551912765108902],[120,201,68,-0.05145059104410141],[120,201,69,-0.04716059346483472],[120,201,70,-0.04016230386804631],[120,201,71,-0.03639887335372029],[120,201,72,-0.029927986194276723],[120,201,73,-0.02406675924684093],[120,201,74,-0.019948923265080992],[120,201,75,-0.03496753665868495],[120,201,76,-0.06772998961702811],[120,201,77,-0.08901481132972464],[120,201,78,-0.08499899786176282],[120,201,79,-0.08686869784090975],[120,202,64,-0.0785065175678238],[120,202,65,-0.06966233808520716],[120,202,66,-0.0625399097599275],[120,202,67,-0.06150212576453759],[120,202,68,-0.05877799442258912],[120,202,69,-0.05437848904551028],[120,202,70,-0.04584611159365471],[120,202,71,-0.0424719143518293],[120,202,72,-0.03656560110737016],[120,202,73,-0.03058806041853701],[120,202,74,-0.024287536183665165],[120,202,75,-0.03393553060058598],[120,202,76,-0.06839010082266564],[120,202,77,-0.08910922139536512],[120,202,78,-0.08630104691295945],[120,202,79,-0.0864647310583749],[120,203,64,-0.08213088057657196],[120,203,65,-0.07447924222590238],[120,203,66,-0.06808109624240628],[120,203,67,-0.06334827954256492],[120,203,68,-0.05864105171662626],[120,203,69,-0.053854340807845645],[120,203,70,-0.04687126128811582],[120,203,71,-0.043472775655708756],[120,203,72,-0.03812742343120294],[120,203,73,-0.032366037475939816],[120,203,74,-0.02508151915486649],[120,203,75,-0.038893828362526736],[120,203,76,-0.08428784621943164],[120,203,77,-0.1016999585894688],[120,203,78,-0.09681280109965273],[120,203,79,-0.09577185790725987],[120,204,64,-0.08406410727374859],[120,204,65,-0.0729922271190845],[120,204,66,-0.06219472911186963],[120,204,67,-0.05537284487193517],[120,204,68,-0.046964638383283984],[120,204,69,-0.03967873413553839],[120,204,70,-0.03158936910646548],[120,204,71,-0.02841215294531449],[120,204,72,-0.024599879599779065],[120,204,73,-0.017102810794840814],[120,204,74,-0.010266709714676553],[120,204,75,-0.030266768624152143],[120,204,76,-0.08129176629556402],[120,204,77,-0.09700334940812416],[120,204,78,-0.09418676499293199],[120,204,79,-0.09407206727315191],[120,205,64,-0.09581394628268988],[120,205,65,-0.08567215483415673],[120,205,66,-0.07230991311264567],[120,205,67,-0.06774360837171158],[120,205,68,-0.0611044304583189],[120,205,69,-0.04958425993720883],[120,205,70,-0.04380361685826549],[120,205,71,-0.03987874705483822],[120,205,72,-0.033213558062170745],[120,205,73,-0.030065427615518628],[120,205,74,-0.023757109734509535],[120,205,75,-0.021430033115388977],[120,205,76,-0.03491989410127701],[120,205,77,-0.05363349231925114],[120,205,78,-0.07893696222644064],[120,205,79,-0.09510806855240643],[120,206,64,-0.09519883774371682],[120,206,65,-0.08837852825704907],[120,206,66,-0.07669262278935894],[120,206,67,-0.06904943316244351],[120,206,68,-0.06349897870645209],[120,206,69,-0.0537169866861657],[120,206,70,-0.04459685317045062],[120,206,71,-0.03836741257999787],[120,206,72,-0.03319162463350632],[120,206,73,-0.0284172013916264],[120,206,74,-0.02275638239783001],[120,206,75,-0.021127124485976756],[120,206,76,-0.03195166706434302],[120,206,77,-0.05854423891100404],[120,206,78,-0.08255411777286571],[120,206,79,-0.09706559956832744],[120,207,64,-0.09868282160691737],[120,207,65,-0.09254895704431038],[120,207,66,-0.08010396631624764],[120,207,67,-0.07089778764648805],[120,207,68,-0.06686602924613],[120,207,69,-0.05654010204224637],[120,207,70,-0.0459863836265612],[120,207,71,-0.04044298676625005],[120,207,72,-0.032835507681952175],[120,207,73,-0.02762263295428824],[120,207,74,-0.02361350758572167],[120,207,75,-0.02354117946298838],[120,207,76,-0.025875063748318466],[120,207,77,-0.04610807519190222],[120,207,78,-0.07373083550410871],[120,207,79,-0.09379608986325003],[120,208,64,-0.10210643389446816],[120,208,65,-0.0943062137727574],[120,208,66,-0.08361168120174879],[120,208,67,-0.07223035429696129],[120,208,68,-0.06774065113561323],[120,208,69,-0.05756548261742574],[120,208,70,-0.04505201938848889],[120,208,71,-0.04071709048037571],[120,208,72,-0.03428208637514352],[120,208,73,-0.028229132999610343],[120,208,74,-0.023603389931647067],[120,208,75,-0.02339497657597267],[120,208,76,-0.015002441416026469],[120,208,77,-0.0265748442559125],[120,208,78,-0.058538792631192056],[120,208,79,-0.0917799703732199],[120,209,64,-0.10621009661460372],[120,209,65,-0.09590865217957407],[120,209,66,-0.08582075020653239],[120,209,67,-0.0751179815737261],[120,209,68,-0.06677940432282732],[120,209,69,-0.05996032770845512],[120,209,70,-0.047457930061560794],[120,209,71,-0.03905916655577753],[120,209,72,-0.03305505229455846],[120,209,73,-0.028205212341856883],[120,209,74,-0.02276491228454386],[120,209,75,-0.021408116309224554],[120,209,76,-0.013041534142795588],[120,209,77,-0.030442079154164785],[120,209,78,-0.059030556614348154],[120,209,79,-0.08959950808202724],[120,210,64,-0.11314195795168379],[120,210,65,-0.1007332918630722],[120,210,66,-0.09209411559084783],[120,210,67,-0.07951315752549855],[120,210,68,-0.07271058396945212],[120,210,69,-0.06390707477698367],[120,210,70,-0.052466423729504205],[120,210,71,-0.04434935678910984],[120,210,72,-0.03612734065317755],[120,210,73,-0.03022262772720949],[120,210,74,-0.025382354116699424],[120,210,75,-0.023189184413264466],[120,210,76,-0.01810087235905622],[120,210,77,-0.03217097789967678],[120,210,78,-0.06135146450668055],[120,210,79,-0.09131266933809237],[120,211,64,-0.1119692491640227],[120,211,65,-0.10078302084753771],[120,211,66,-0.09142084152815606],[120,211,67,-0.07879785231149283],[120,211,68,-0.07140875731355],[120,211,69,-0.06466574580324602],[120,211,70,-0.05422023579633824],[120,211,71,-0.04703345381896075],[120,211,72,-0.037995784778033406],[120,211,73,-0.029380519336410255],[120,211,74,-0.027228012013654587],[120,211,75,-0.02233203428627728],[120,211,76,-0.018532035971643906],[120,211,77,-0.03710463803249192],[120,211,78,-0.07100146867058521],[120,211,79,-0.10230049029399027],[120,212,64,-0.09198585532439364],[120,212,65,-0.08481642979397315],[120,212,66,-0.07877108228697494],[120,212,67,-0.07432720845489212],[120,212,68,-0.07165021794076756],[120,212,69,-0.0722827694381065],[120,212,70,-0.06752381525877303],[120,212,71,-0.062189038751838496],[120,212,72,-0.054909684462566596],[120,212,73,-0.04407690500420831],[120,212,74,-0.04260669243856483],[120,212,75,-0.0360913623294635],[120,212,76,-0.028673955833179623],[120,212,77,-0.0491689332950535],[120,212,78,-0.08045807750011823],[120,212,79,-0.09965791483692917],[120,213,64,-0.0960673492172365],[120,213,65,-0.08527949881460774],[120,213,66,-0.07734588378313925],[120,213,67,-0.07393922198048962],[120,213,68,-0.06944206815549608],[120,213,69,-0.07141977315655791],[120,213,70,-0.06611331540643828],[120,213,71,-0.06149885686052346],[120,213,72,-0.047855388454682526],[120,213,73,-0.03568059691993565],[120,213,74,-0.03157448523634958],[120,213,75,-0.025811512831944453],[120,213,76,-0.031996297305894685],[120,213,77,-0.08130866858715488],[120,213,78,-0.107463298378947],[120,213,79,-0.10114729780073528],[120,214,64,-0.09545901836076806],[120,214,65,-0.08626114195775322],[120,214,66,-0.07751255011831755],[120,214,67,-0.07566085540898307],[120,214,68,-0.07127639551284444],[120,214,69,-0.07352674232138266],[120,214,70,-0.06954109800053761],[120,214,71,-0.061671886180897556],[120,214,72,-0.04765189829768118],[120,214,73,-0.038078234917535134],[120,214,74,-0.03411486537751071],[120,214,75,-0.02800263261283603],[120,214,76,-0.04414351234934838],[120,214,77,-0.09290037115740177],[120,214,78,-0.10914653012982571],[120,214,79,-0.10216041744882817],[120,215,64,-0.0964654759020708],[120,215,65,-0.08868377539947184],[120,215,66,-0.0801270791240805],[120,215,67,-0.07714039956641759],[120,215,68,-0.07376919189990878],[120,215,69,-0.07485242924667056],[120,215,70,-0.07099946900357454],[120,215,71,-0.06309940279179431],[120,215,72,-0.05204593419032319],[120,215,73,-0.04082380621737472],[120,215,74,-0.038586689154849446],[120,215,75,-0.03174144529841458],[120,215,76,-0.0466941267646769],[120,215,77,-0.09629167188654751],[120,215,78,-0.10991117522385611],[120,215,79,-0.10061089665732126],[120,216,64,-0.09412908363140432],[120,216,65,-0.0891059783079667],[120,216,66,-0.08045646179013403],[120,216,67,-0.07661099424990402],[120,216,68,-0.07410727066932911],[120,216,69,-0.07445520108529144],[120,216,70,-0.07421657140687325],[120,216,71,-0.06270819029678064],[120,216,72,-0.052536840441922736],[120,216,73,-0.04417738669504494],[120,216,74,-0.038794842782657483],[120,216,75,-0.03319521776222101],[120,216,76,-0.06292191320697083],[120,216,77,-0.10937919654672514],[120,216,78,-0.11056426003069889],[120,216,79,-0.10240612937983422],[120,217,64,-0.08340470438759767],[120,217,65,-0.08281438597501237],[120,217,66,-0.07883961178437857],[120,217,67,-0.07755897994759435],[120,217,68,-0.07756419494643878],[120,217,69,-0.07764904922543851],[120,217,70,-0.07783603629499199],[120,217,71,-0.07105227167685417],[120,217,72,-0.06043472978401834],[120,217,73,-0.054286471359966476],[120,217,74,-0.04803894383051957],[120,217,75,-0.04640193976131628],[120,217,76,-0.08327894865069686],[120,217,77,-0.12410176088844647],[120,217,78,-0.1117343629754359],[120,217,79,-0.10154827428809698],[120,218,64,-0.09006075635468075],[120,218,65,-0.09095240828805513],[120,218,66,-0.08706508803434464],[120,218,67,-0.08504478271348113],[120,218,68,-0.08423671704294178],[120,218,69,-0.0817977608926457],[120,218,70,-0.08164626160443421],[120,218,71,-0.07583841908272558],[120,218,72,-0.06746079435615115],[120,218,73,-0.05984171677884548],[120,218,74,-0.050897687643784675],[120,218,75,-0.05260253737601862],[120,218,76,-0.08568154168809339],[120,218,77,-0.13099405416916832],[120,218,78,-0.11736060370051163],[120,218,79,-0.10311825593860866],[120,219,64,-0.09212417253601553],[120,219,65,-0.09022786748611393],[120,219,66,-0.08686443326164037],[120,219,67,-0.08457063880068566],[120,219,68,-0.08519855153542383],[120,219,69,-0.08358731607168854],[120,219,70,-0.07983420571626847],[120,219,71,-0.07324251280114448],[120,219,72,-0.06888926308760655],[120,219,73,-0.05960444905782919],[120,219,74,-0.050781112960532435],[120,219,75,-0.06648179440356339],[120,219,76,-0.09721893487324386],[120,219,77,-0.14172163553108663],[120,219,78,-0.12959551852930895],[120,219,79,-0.1135761279529644],[120,220,64,-0.0902867705439113],[120,220,65,-0.0856244824369043],[120,220,66,-0.07972541415769777],[120,220,67,-0.07605088303116474],[120,220,68,-0.07410651304064768],[120,220,69,-0.07219799750073239],[120,220,70,-0.06381163300475284],[120,220,71,-0.058831678201119356],[120,220,72,-0.05310868777394706],[120,220,73,-0.04245612994694667],[120,220,74,-0.03528302274406979],[120,220,75,-0.06445928705690973],[120,220,76,-0.11124823974816507],[120,220,77,-0.14570033447753264],[120,220,78,-0.1339542795845205],[120,220,79,-0.11784431372385064],[120,221,64,-0.0886157533038665],[120,221,65,-0.08273460281189456],[120,221,66,-0.08097217804857162],[120,221,67,-0.07834282084230937],[120,221,68,-0.07643049321863601],[120,221,69,-0.07185452966914675],[120,221,70,-0.06257363342338253],[120,221,71,-0.05737341064934845],[120,221,72,-0.05269836311246612],[120,221,73,-0.04616344228048509],[120,221,74,-0.08881345335157008],[120,221,75,-0.12551477796671104],[120,221,76,-0.16188927291475222],[120,221,77,-0.14671434754944174],[120,221,78,-0.13207112657025627],[120,221,79,-0.11937974785654666],[120,222,64,-0.08977227007478174],[120,222,65,-0.08264205964712927],[120,222,66,-0.0814542564900433],[120,222,67,-0.07780652594203426],[120,222,68,-0.07587149208040558],[120,222,69,-0.07130214358449222],[120,222,70,-0.06300200584218063],[120,222,71,-0.05535213577666856],[120,222,72,-0.052608904631767386],[120,222,73,-0.052167673011313],[120,222,74,-0.09944733645095351],[120,222,75,-0.1342093246552067],[120,222,76,-0.161556118716381],[120,222,77,-0.1476668800179335],[120,222,78,-0.13088370433506535],[120,222,79,-0.1178817468475702],[120,223,64,-0.09643527294310741],[120,223,65,-0.08827329310060288],[120,223,66,-0.0877048652339446],[120,223,67,-0.08217065626724412],[120,223,68,-0.07673868646095099],[120,223,69,-0.07143948394085425],[120,223,70,-0.06279863600852134],[120,223,71,-0.0563600086596789],[120,223,72,-0.0533848249495326],[120,223,73,-0.04468506883525632],[120,223,74,-0.0989320775821549],[120,223,75,-0.15032580830374687],[120,223,76,-0.16156468244293617],[120,223,77,-0.14766100270599644],[120,223,78,-0.12709429478102485],[120,223,79,-0.11537622400699889],[120,224,64,-0.09777875050479881],[120,224,65,-0.09234806630209115],[120,224,66,-0.08759065302404034],[120,224,67,-0.08153765908905057],[120,224,68,-0.07720952714734212],[120,224,69,-0.07123538549318735],[120,224,70,-0.06322221051824903],[120,224,71,-0.05816624397555108],[120,224,72,-0.0523994930996286],[120,224,73,-0.041701516776867634],[120,224,74,-0.10670276755561149],[120,224,75,-0.1581960401286024],[120,224,76,-0.16310438804660096],[120,224,77,-0.14888768299105978],[120,224,78,-0.13031729649261703],[120,224,79,-0.11464136969238095],[120,225,64,-0.1083249667128792],[120,225,65,-0.09829608353853488],[120,225,66,-0.08497058511019483],[120,225,67,-0.07297363925248214],[120,225,68,-0.06773925975407401],[120,225,69,-0.06069225311814652],[120,225,70,-0.05434936338970438],[120,225,71,-0.052593391905289055],[120,225,72,-0.04249293210894363],[120,225,73,-0.028115842080559325],[120,225,74,-0.1132469043639555],[120,225,75,-0.17058798495327213],[120,225,76,-0.16463933791383065],[120,225,77,-0.15060220943031755],[120,225,78,-0.13398517447611633],[120,225,79,-0.11911744245003184],[120,226,64,-0.117450527507615],[120,226,65,-0.10398132671358849],[120,226,66,-0.09024406472791739],[120,226,67,-0.07867287087450858],[120,226,68,-0.07180341968834754],[120,226,69,-0.06536445887600233],[120,226,70,-0.06213741841968254],[120,226,71,-0.05723972078516491],[120,226,72,-0.046769994189777744],[120,226,73,-0.03192072835437891],[120,226,74,-0.11206449902779114],[120,226,75,-0.1662303918254227],[120,226,76,-0.16544435629438964],[120,226,77,-0.14963981189198086],[120,226,78,-0.13633829315737916],[120,226,79,-0.12346285523309762],[120,227,64,-0.11730496357059997],[120,227,65,-0.10523236808821934],[120,227,66,-0.09173056694331197],[120,227,67,-0.0811123982256956],[120,227,68,-0.07026982470128333],[120,227,69,-0.06646045950871286],[120,227,70,-0.06318647555123322],[120,227,71,-0.05547531425817118],[120,227,72,-0.04605803331346381],[120,227,73,-0.03005819730278568],[120,227,74,-0.12531371369207728],[120,227,75,-0.17912798444945766],[120,227,76,-0.1729489547846307],[120,227,77,-0.15795532205404575],[120,227,78,-0.1459573338817993],[120,227,79,-0.13349684439589873],[120,228,64,-0.10552995335727164],[120,228,65,-0.09549447212257615],[120,228,66,-0.08310212090009546],[120,228,67,-0.07137607595446824],[120,228,68,-0.06069181660588413],[120,228,69,-0.05448357189292369],[120,228,70,-0.05199854708025775],[120,228,71,-0.04309152422890618],[120,228,72,-0.03448694605477069],[120,228,73,-0.01639039186365497],[120,228,74,-0.12110267175240579],[120,228,75,-0.1710133131705684],[120,228,76,-0.17252562145720998],[120,228,77,-0.15853721864833836],[120,228,78,-0.14645304150647032],[120,228,79,-0.13636367208188319],[120,229,64,-0.09703846150242741],[120,229,65,-0.09394940612147391],[120,229,66,-0.08816306834318716],[120,229,67,-0.08183719788674398],[120,229,68,-0.07452830118877901],[120,229,69,-0.0656755858704999],[120,229,70,-0.062111411948030354],[120,229,71,-0.055302378485904316],[120,229,72,-0.04683405396577972],[120,229,73,-0.0874082149933762],[120,229,74,-0.18633903143887287],[120,229,75,-0.18124704308895312],[120,229,76,-0.17422872394406297],[120,229,77,-0.1624379870764658],[120,229,78,-0.1463623878204811],[120,229,79,-0.13899557774400875],[120,230,64,-0.09514518339830133],[120,230,65,-0.09361563022227119],[120,230,66,-0.08841127963858844],[120,230,67,-0.08578550322272915],[120,230,68,-0.07945363957715805],[120,230,69,-0.06937931556882314],[120,230,70,-0.06260566220145956],[120,230,71,-0.055571984663950816],[120,230,72,-0.04658273686740583],[120,230,73,-0.10393704665585161],[120,230,74,-0.18393888445923046],[120,230,75,-0.18696658907522007],[120,230,76,-0.18073421831955908],[120,230,77,-0.16977643596221526],[120,230,78,-0.15423185025034802],[120,230,79,-0.14289863139785794],[120,231,64,-0.09861915338683677],[120,231,65,-0.09860646611229178],[120,231,66,-0.09464324347874886],[120,231,67,-0.0942652030576761],[120,231,68,-0.0882632593516739],[120,231,69,-0.0753176666865846],[120,231,70,-0.0664832512000972],[120,231,71,-0.05816751463010546],[120,231,72,-0.06455670301610038],[120,231,73,-0.11630978559023161],[120,231,74,-0.15478749981144505],[120,231,75,-0.18536210170515346],[120,231,76,-0.17948600640760914],[120,231,77,-0.1674889373296341],[120,231,78,-0.154273264007759],[120,231,79,-0.14144412737880016],[120,232,64,-0.0975414881118086],[120,232,65,-0.09735030795555834],[120,232,66,-0.09409743652704934],[120,232,67,-0.09671950692709964],[120,232,68,-0.08954621949979927],[120,232,69,-0.07787825660215544],[120,232,70,-0.06826183999401214],[120,232,71,-0.059267428381661644],[120,232,72,-0.07717807219440127],[120,232,73,-0.12272900343394334],[120,232,74,-0.16093229407160525],[120,232,75,-0.18497554322173976],[120,232,76,-0.17912296524976867],[120,232,77,-0.1674709230601789],[120,232,78,-0.15678460052528792],[120,232,79,-0.1446050756845186],[120,233,64,-0.09757383229588254],[120,233,65,-0.09525587125013874],[120,233,66,-0.0937495569388708],[120,233,67,-0.0952075562450824],[120,233,68,-0.0901078061801267],[120,233,69,-0.07994608078913226],[120,233,70,-0.0692027353872175],[120,233,71,-0.06402226880965664],[120,233,72,-0.08807931919904682],[120,233,73,-0.12534104060210827],[120,233,74,-0.17598476161195445],[120,233,75,-0.18929505831383492],[120,233,76,-0.18214106067807193],[120,233,77,-0.1730238697365239],[120,233,78,-0.16402326782681415],[120,233,79,-0.1488291160382167],[120,234,64,-0.10218126741828866],[120,234,65,-0.09909781245420747],[120,234,66,-0.09728068052237307],[120,234,67,-0.09826117382110289],[120,234,68,-0.09269195597050288],[120,234,69,-0.08651575720997429],[120,234,70,-0.07553941979269173],[120,234,71,-0.06781243502408724],[120,234,72,-0.07232335930446183],[120,234,73,-0.09913291071749111],[120,234,74,-0.15478984141714267],[120,234,75,-0.16725408494580057],[120,234,76,-0.1775920379109855],[120,234,77,-0.16993574436960887],[120,234,78,-0.15943956337920687],[120,234,79,-0.14462895329630882],[120,235,64,-0.10233036375770668],[120,235,65,-0.0984968333696365],[120,235,66,-0.09677341719264426],[120,235,67,-0.09698810107117926],[120,235,68,-0.09185316838270852],[120,235,69,-0.08529728470575029],[120,235,70,-0.07522616538641677],[120,235,71,-0.06607928957355812],[120,235,72,-0.056210736202121164],[120,235,73,-0.042282886362266445],[120,235,74,-0.052178014948849966],[120,235,75,-0.06742329251509044],[120,235,76,-0.12477907830057401],[120,235,77,-0.1753892595486275],[120,235,78,-0.16734062382849],[120,235,79,-0.15203744430554764],[120,236,64,-0.11800618640392346],[120,236,65,-0.11673822225854447],[120,236,66,-0.11668275317643818],[120,236,67,-0.11466107735243483],[120,236,68,-0.10884450834052518],[120,236,69,-0.10545606983396055],[120,236,70,-0.09463557839316294],[120,236,71,-0.0852978007446788],[120,236,72,-0.07757688744850677],[120,236,73,-0.06294179679259156],[120,236,74,-0.07539763060282051],[120,236,75,-0.09221014813974697],[120,236,76,-0.1294570207220164],[120,236,77,-0.18171787568789227],[120,236,78,-0.17238746429087465],[120,236,79,-0.16093085013862488],[120,237,64,-0.11471497585240648],[120,237,65,-0.11318869701307327],[120,237,66,-0.11308240354400384],[120,237,67,-0.11515527695038057],[120,237,68,-0.10764940995095121],[120,237,69,-0.10281169628857995],[120,237,70,-0.09700970505140569],[120,237,71,-0.08895254303579114],[120,237,72,-0.08115912091326566],[120,237,73,-0.07153682035590875],[120,237,74,-0.10981721758601154],[120,237,75,-0.12327443784705919],[120,237,76,-0.15402718013432906],[120,237,77,-0.18060816697143284],[120,237,78,-0.1728644688399199],[120,237,79,-0.16049504615252858],[120,238,64,-0.11735995017725408],[120,238,65,-0.11587585325898236],[120,238,66,-0.11322705328003074],[120,238,67,-0.1149084414676009],[120,238,68,-0.11067502761459111],[120,238,69,-0.10377308462094292],[120,238,70,-0.09980367412893947],[120,238,71,-0.0904184811946228],[120,238,72,-0.08291118688809539],[120,238,73,-0.07532108236358799],[120,238,74,-0.11547175010589214],[120,238,75,-0.14293139976776337],[120,238,76,-0.17488808680875406],[120,238,77,-0.1758960424118702],[120,238,78,-0.16516797340184045],[120,238,79,-0.15598966645330442],[120,239,64,-0.1258710710331453],[120,239,65,-0.12411341653130908],[120,239,66,-0.1198762936623877],[120,239,67,-0.12142533746142135],[120,239,68,-0.11617040005381436],[120,239,69,-0.10778940455780231],[120,239,70,-0.10328335559159224],[120,239,71,-0.09552168466156351],[120,239,72,-0.08558473611303193],[120,239,73,-0.07637440867795955],[120,239,74,-0.09669723442744271],[120,239,75,-0.12194100836676071],[120,239,76,-0.16447249996125451],[120,239,77,-0.1718695981637631],[120,239,78,-0.1567767447410629],[120,239,79,-0.14911942270191839],[120,240,64,-0.12540942505141361],[120,240,65,-0.12223259025965758],[120,240,66,-0.12067123242439756],[120,240,67,-0.12044644589608124],[120,240,68,-0.11624168171092573],[120,240,69,-0.10839473595321003],[120,240,70,-0.1028872328677719],[120,240,71,-0.09595622343158867],[120,240,72,-0.08619728056876093],[120,240,73,-0.075068523791981],[120,240,74,-0.08865132415214347],[120,240,75,-0.11667887551346874],[120,240,76,-0.1659441426474888],[120,240,77,-0.16663500327484224],[120,240,78,-0.15421637216915415],[120,240,79,-0.1478302505628022],[120,241,64,-0.13456966417917832],[120,241,65,-0.12821041433718058],[120,241,66,-0.12273800875408933],[120,241,67,-0.1195271218394954],[120,241,68,-0.1160095941627649],[120,241,69,-0.10561435230882105],[120,241,70,-0.0976026659045996],[120,241,71,-0.09003070352827797],[120,241,72,-0.07671661843998816],[120,241,73,-0.06241788581231325],[120,241,74,-0.044891502163428756],[120,241,75,-0.029562782534659576],[120,241,76,-0.019087987646122462],[120,241,77,-0.003846696754004564],[120,241,78,0.008834673489094003],[120,241,79,-0.05782436908089529],[120,242,64,-0.13935914997288099],[120,242,65,-0.13065061788798046],[120,242,66,-0.12678767181109046],[120,242,67,-0.12391546734911293],[120,242,68,-0.11744052561727578],[120,242,69,-0.10718772557653905],[120,242,70,-0.0991646911371356],[120,242,71,-0.09066161422034723],[120,242,72,-0.07902502492124655],[120,242,73,-0.06428521658547066],[120,242,74,-0.04608117094277821],[120,242,75,-0.032685131232141604],[120,242,76,-0.018589838908944098],[120,242,77,-0.004728607650815911],[120,242,78,0.007556227942642074],[120,242,79,-0.05326770458977827],[120,243,64,-0.14155788983783324],[120,243,65,-0.13071838909283],[120,243,66,-0.12285292195650732],[120,243,67,-0.12010046348684672],[120,243,68,-0.11522577575167184],[120,243,69,-0.10447111636541832],[120,243,70,-0.09317587550852005],[120,243,71,-0.0886085831523656],[120,243,72,-0.07704972746624476],[120,243,73,-0.06313439347908142],[120,243,74,-0.04512097669054532],[120,243,75,-0.02965436513266781],[120,243,76,-0.013075895029587975],[120,243,77,-0.001822254180302546],[120,243,78,0.008114240198573302],[120,243,79,-0.06317709730016005],[120,244,64,-0.12753925646281736],[120,244,65,-0.11261251794459823],[120,244,66,-0.09599708005304856],[120,244,67,-0.0873725629255886],[120,244,68,-0.07919679493293044],[120,244,69,-0.06735050010107911],[120,244,70,-0.055815162052921516],[120,244,71,-0.051314386105747456],[120,244,72,-0.037592069337307285],[120,244,73,-0.02279810676712664],[120,244,74,-0.006537404416559506],[120,244,75,0.00954579257995028],[120,244,76,0.02647316957663899],[120,244,77,0.03788495733036221],[120,244,78,0.03903322130197654],[120,244,79,-0.032412609312803],[120,245,64,-0.12831500716847957],[120,245,65,-0.11102404221865833],[120,245,66,-0.09493599441992154],[120,245,67,-0.08212655402218473],[120,245,68,-0.07380572716599354],[120,245,69,-0.06446793763414295],[120,245,70,-0.05467560776801185],[120,245,71,-0.04705192571836585],[120,245,72,-0.03400769613233462],[120,245,73,-0.021692570176102294],[120,245,74,-0.006131848273235471],[120,245,75,0.009485291939854881],[120,245,76,0.026776718709491734],[120,245,77,0.03809279596790037],[120,245,78,0.032617269987588744],[120,245,79,-0.03043921301458835],[120,246,64,-0.12192170222535831],[120,246,65,-0.10693220069615239],[120,246,66,-0.09101260693337758],[120,246,67,-0.07951425005591255],[120,246,68,-0.07005886988071605],[120,246,69,-0.059547602803612695],[120,246,70,-0.053489435995689755],[120,246,71,-0.0435856410620265],[120,246,72,-0.03403701570296941],[120,246,73,-0.020537799413467644],[120,246,74,-0.003497809285396808],[120,246,75,0.011241309084857598],[120,246,76,0.026367462853306448],[120,246,77,0.040221682923458846],[120,246,78,0.01498139806811008],[120,246,79,-0.06099104784909577],[120,247,64,-0.12368159307210977],[120,247,65,-0.10857606109135344],[120,247,66,-0.09543943327970053],[120,247,67,-0.08219908736483869],[120,247,68,-0.07139679219930824],[120,247,69,-0.06058402124595583],[120,247,70,-0.05469066031967032],[120,247,71,-0.045026373075316165],[120,247,72,-0.034456218936587846],[120,247,73,-0.02011176683698007],[120,247,74,-0.0029701342748191945],[120,247,75,0.014590839113801796],[120,247,76,0.02974635656113414],[120,247,77,0.043482099792282944],[120,247,78,0.030931075032203336],[120,247,79,-0.04989861934028708],[120,248,64,-0.11867955831417248],[120,248,65,-0.10458633893398073],[120,248,66,-0.09139994163014595],[120,248,67,-0.07891759856586203],[120,248,68,-0.06748616486149164],[120,248,69,-0.05661149475390739],[120,248,70,-0.05324746935128101],[120,248,71,-0.046006858975610715],[120,248,72,-0.031431044762481805],[120,248,73,-0.01875644075792675],[120,248,74,-0.002778246139325466],[120,248,75,0.015795593720641876],[120,248,76,0.029972464930160578],[120,248,77,0.04164148681749169],[120,248,78,0.030881031155137028],[120,248,79,-0.05096327177721634],[120,249,64,-0.11923887721493517],[120,249,65,-0.10229423103249395],[120,249,66,-0.08510335117888103],[120,249,67,-0.0695260205516734],[120,249,68,-0.05606307356427441],[120,249,69,-0.04530218274260156],[120,249,70,-0.04216974495851894],[120,249,71,-0.03809503435169706],[120,249,72,-0.027879461700558883],[120,249,73,-0.01744926849097353],[120,249,74,-0.0027501273836319645],[120,249,75,0.016389018495977667],[120,249,76,0.02999412514750094],[120,249,77,0.04122225147106781],[120,249,78,-0.0072610810923473545],[120,249,79,-0.09178040154160363],[120,250,64,-0.12076368609476429],[120,250,65,-0.10243714915328804],[120,250,66,-0.08691950260545733],[120,250,67,-0.0712948038208873],[120,250,68,-0.057475192837910444],[120,250,69,-0.04692398560463193],[120,250,70,-0.04274648220591626],[120,250,71,-0.037044303846799326],[120,250,72,-0.02781577335369821],[120,250,73,-0.018007434536480446],[120,250,74,-0.002909162556315687],[120,250,75,-0.03545151879030694],[120,250,76,-0.03535458051462147],[120,250,77,-0.030197903325270115],[120,250,78,-0.04332894202075657],[120,250,79,-0.057967867571857234],[120,251,64,-0.11600176254209904],[120,251,65,-0.09791570753397323],[120,251,66,-0.08464203545774264],[120,251,67,-0.07047217175746287],[120,251,68,-0.058308423911819465],[120,251,69,-0.04643099286854718],[120,251,70,-0.04079417030631162],[120,251,71,-0.03377603115444419],[120,251,72,-0.023933284119351333],[120,251,73,-0.01570626903027149],[120,251,74,-0.001263230245627342],[120,251,75,-0.013055638251837753],[120,251,76,-0.027241628567190278],[120,251,77,-0.026443940938008753],[120,251,78,-0.035561930985404985],[120,251,79,-0.046449928893083],[120,252,64,-0.10476310382797],[120,252,65,-0.08632812351221761],[120,252,66,-0.07325612682497315],[120,252,67,-0.05941519346056233],[120,252,68,-0.04724084467843907],[120,252,69,-0.037041425536040104],[120,252,70,-0.02758616284781057],[120,252,71,-0.021525653730309638],[120,252,72,-0.013131819827280733],[120,252,73,-0.0035308037397054626],[120,252,74,0.011625156073197876],[120,252,75,0.016511407520201134],[120,252,76,-0.016938198265831414],[120,252,77,-0.024017944754247095],[120,252,78,-0.037473269244912746],[120,252,79,-0.03873743352670714],[120,253,64,-0.09317261756667293],[120,253,65,-0.0826390136780948],[120,253,66,-0.07267979482024409],[120,253,67,-0.06482126074625473],[120,253,68,-0.055725602771538194],[120,253,69,-0.04434924698300216],[120,253,70,-0.033356245057061334],[120,253,71,-0.025695553201148816],[120,253,72,-0.0161355748914217],[120,253,73,-0.0055156134892114655],[120,253,74,0.011289421399573521],[120,253,75,0.024697307591926357],[120,253,76,0.017832658706420118],[120,253,77,0.007127650342449526],[120,253,78,-0.013249966116297307],[120,253,79,0.002186397042715088],[120,254,64,-0.01075283713600364],[120,254,65,-0.006742429070158873],[120,254,66,-0.0035978643799330495],[120,254,67,0.0010553881968816542],[120,254,68,-0.0010814298762931857],[120,254,69,0.0015265861140321968],[120,254,70,0.004445323756042702],[120,254,71,0.0056320439159997515],[120,254,72,0.003408587225881929],[120,254,73,0.002843978147382825],[120,254,74,0.011394703798812453],[120,254,75,0.017806319326623063],[120,254,76,0.008468856058529772],[120,254,77,-0.019742382543187068],[120,254,78,-0.029294777268505504],[120,254,79,-0.024230934894648795],[120,255,64,-0.007954085447941406],[120,255,65,-0.005486947037222814],[120,255,66,-0.0031865591883923627],[120,255,67,2.567679513230253E-4],[120,255,68,-8.898984480684713E-6],[120,255,69,0.0024119218335926923],[120,255,70,0.004743514880680616],[120,255,71,0.006195026266765269],[120,255,72,0.004762852301240669],[120,255,73,0.004595880363996344],[120,255,74,0.012907514522455824],[120,255,75,0.020017556566462966],[120,255,76,0.021073278232111164],[120,255,77,-0.010227721184193399],[120,255,78,-0.01700976294292613],[120,255,79,-0.012976748569858206],[120,256,64,-0.008999815501330444],[120,256,65,-0.006452191220063935],[120,256,66,-0.003040512125496622],[120,256,67,7.961275267394513E-4],[120,256,68,0.0023361067742810465],[120,256,69,0.0039727362134300975],[120,256,70,0.005047796989218117],[120,256,71,0.0067189104433388325],[120,256,72,0.005529979420859268],[120,256,73,0.005485910299255312],[120,256,74,0.012698358890793404],[120,256,75,0.0217170740580995],[120,256,76,0.022166215960574248],[120,256,77,-0.004779773191818385],[120,256,78,-0.012714606999371221],[120,256,79,-0.012889812510252514],[120,257,64,-0.010633568297580331],[120,257,65,-0.00860811784632759],[120,257,66,-0.0050467599495070264],[120,257,67,0.0032269679665261064],[120,257,68,0.0041804215937455425],[120,257,69,0.00513008945066995],[120,257,70,4.620068610338493E-4],[120,257,71,-0.02602876570450361],[120,257,72,0.004377438788169055],[120,257,73,0.004016047760640476],[120,257,74,0.013810782513945352],[120,257,75,0.01606018023521244],[120,257,76,-0.006842113416077832],[120,257,77,-0.043136666541368794],[120,257,78,-0.04983136467338459],[120,257,79,-0.04424652297614119],[120,258,64,-0.014428339705722854],[120,258,65,-0.01310356553578973],[120,258,66,-0.008249295148501479],[120,258,67,-0.001223250321850597],[120,258,68,0.0022404793077182295],[120,258,69,0.0031128536008754315],[120,258,70,0.00311702618001955],[120,258,71,-0.002419860760254313],[120,258,72,3.003027595846336E-4],[120,258,73,0.0025203190821593974],[120,258,74,0.009334899556279502],[120,258,75,0.01780591696400774],[120,258,76,-0.004642096489233437],[120,258,77,-0.03967921517671304],[120,258,78,-0.045501805681459694],[120,258,79,-0.0407330590383411],[120,259,64,-0.014318799433628168],[120,259,65,-0.011109153691181817],[120,259,66,-0.0070698295869691535],[120,259,67,-0.002015792113996523],[120,259,68,0.0037162450430005267],[120,259,69,0.006463491086857981],[120,259,70,0.006625650139526915],[120,259,71,0.005517897195319588],[120,259,72,0.001098355616428473],[120,259,73,0.0033883501567330138],[120,259,74,0.00794285477313221],[120,259,75,0.015967523505383482],[120,259,76,0.01742156547774415],[120,259,77,-0.008076137491349614],[120,259,78,-0.013765940196539178],[120,259,79,-0.019290864228187418],[120,260,64,-0.1211821364929408],[120,260,65,-0.11956352442176177],[120,260,66,-0.12083277670868929],[120,260,67,-0.11898053640407978],[120,260,68,-0.11634165413169498],[120,260,69,-0.11703335747565413],[120,260,70,-0.11919549087251675],[120,260,71,-0.12184786171272453],[120,260,72,-0.12704340418852147],[120,260,73,-0.12276014154692033],[120,260,74,-0.12374242900841659],[120,260,75,-0.11700491949162954],[120,260,76,-0.11433472670807232],[120,260,77,-0.11925857540652467],[120,260,78,-0.11885985832547681],[120,260,79,-0.12243793135504519],[120,261,64,-0.13087821789787535],[120,261,65,-0.12698557035423222],[120,261,66,-0.12123683413904873],[120,261,67,-0.11674955859571526],[120,261,68,-0.11341550524528439],[120,261,69,-0.11419253277284494],[120,261,70,-0.11453570644054531],[120,261,71,-0.11786820140828463],[120,261,72,-0.11950992025198423],[120,261,73,-0.11409574012563053],[120,261,74,-0.11305746720126868],[120,261,75,-0.11422961985096179],[120,261,76,-0.12093097965545146],[120,261,77,-0.12641624946723162],[120,261,78,-0.1244715271010733],[120,261,79,-0.12700034632517804],[120,262,64,-0.1373949235653129],[120,262,65,-0.136202905157886],[120,262,66,-0.12766529325299814],[120,262,67,-0.12318643616742728],[120,262,68,-0.11767304419625896],[120,262,69,-0.118106898290463],[120,262,70,-0.1191201521059366],[120,262,71,-0.1209184731928275],[120,262,72,-0.12140542166113731],[120,262,73,-0.1161709955016934],[120,262,74,-0.11182918771917724],[120,262,75,-0.11728396605465997],[120,262,76,-0.12314110154414362],[120,262,77,-0.13313676674811864],[120,262,78,-0.12752234517803054],[120,262,79,-0.13124152064489436],[120,263,64,-0.1363359435348493],[120,263,65,-0.1358173663996331],[120,263,66,-0.12936193311751623],[120,263,67,-0.12180268742429781],[120,263,68,-0.11661928015105713],[120,263,69,-0.11855694838092215],[120,263,70,-0.11833255203662524],[120,263,71,-0.12046006920976737],[120,263,72,-0.12184176020849882],[120,263,73,-0.11494814430929762],[120,263,74,-0.11020165670800285],[120,263,75,-0.11386789248748154],[120,263,76,-0.11972791048808425],[120,263,77,-0.1299754421609194],[120,263,78,-0.12908490434590367],[120,263,79,-0.13084733652953723],[120,264,64,-0.133458621888338],[120,264,65,-0.13461682186858706],[120,264,66,-0.12744596887584214],[120,264,67,-0.12135729019772395],[120,264,68,-0.11568452926127049],[120,264,69,-0.11600390333937896],[120,264,70,-0.11657466556411286],[120,264,71,-0.11843199631157136],[120,264,72,-0.12030546874742548],[120,264,73,-0.11514687542698308],[120,264,74,-0.11257224749432516],[120,264,75,-0.12065965377498],[120,264,76,-0.12189001894491047],[120,264,77,-0.12974580256886942],[120,264,78,-0.1321463197915765],[120,264,79,-0.13731629584068836],[120,265,64,-0.12099057729459489],[120,265,65,-0.12295152275371575],[120,265,66,-0.12212205385185429],[120,265,67,-0.11953203824983899],[120,265,68,-0.11645225233815937],[120,265,69,-0.1158656328073582],[120,265,70,-0.11631790404692222],[120,265,71,-0.12025599436510553],[120,265,72,-0.12503476754035028],[120,265,73,-0.16022812874177123],[120,265,74,-0.2028392100823467],[120,265,75,-0.2310892121795874],[120,265,76,-0.2281704480163192],[120,265,77,-0.22501292141762072],[120,265,78,-0.204545572989669],[120,265,79,-0.19459184854241918],[120,266,64,-0.11782450608254366],[120,266,65,-0.12154393848869673],[120,266,66,-0.12253817727402981],[120,266,67,-0.12048371494232876],[120,266,68,-0.11983014779411535],[120,266,69,-0.11777094797195577],[120,266,70,-0.1200739993966828],[120,266,71,-0.12203078143515671],[120,266,72,-0.1250305494730021],[120,266,73,-0.13951718660218837],[120,266,74,-0.18805230816116644],[120,266,75,-0.21919514356714098],[120,266,76,-0.22658753467867418],[120,266,77,-0.22048824097354464],[120,266,78,-0.20473904795716502],[120,266,79,-0.1985685442531958],[120,267,64,-0.11345680525918364],[120,267,65,-0.11799330565364308],[120,267,66,-0.12093229374923486],[120,267,67,-0.11718361115602173],[120,267,68,-0.11800896301251812],[120,267,69,-0.11662610093842288],[120,267,70,-0.1179672471607562],[120,267,71,-0.11955675120869838],[120,267,72,-0.12385689975612857],[120,267,73,-0.14270051433059616],[120,267,74,-0.1916276574620099],[120,267,75,-0.22354053066465995],[120,267,76,-0.23594012211105742],[120,267,77,-0.22965243140790303],[120,267,78,-0.21516712932430604],[120,267,79,-0.20896930343411468],[120,268,64,-0.10433374023356207],[120,268,65,-0.10939896581534264],[120,268,66,-0.11033678548320812],[120,268,67,-0.10343531074633175],[120,268,68,-0.10494756643631395],[120,268,69,-0.10539258034218152],[120,268,70,-0.10580419948743129],[120,268,71,-0.10631417788541982],[120,268,72,-0.13647371154280075],[120,268,73,-0.15998976463888248],[120,268,74,-0.1831997768466831],[120,268,75,-0.2003320449504778],[120,268,76,-0.2143606296596378],[120,268,77,-0.21897441920528668],[120,268,78,-0.21220098191077455],[120,268,79,-0.20019214740857183],[120,269,64,-0.09973736490060695],[120,269,65,-0.10520463458021218],[120,269,66,-0.10515038005509278],[120,269,67,-0.0998559654029973],[120,269,68,-0.09955242994091067],[120,269,69,-0.10236924681286669],[120,269,70,-0.10428388148417342],[120,269,71,-0.10145137108267811],[120,269,72,-0.13821847381666197],[120,269,73,-0.1660399703270254],[120,269,74,-0.18849431357454854],[120,269,75,-0.1998331045446438],[120,269,76,-0.22016224158562991],[120,269,77,-0.22084171364994576],[120,269,78,-0.20924969781270142],[120,269,79,-0.19687892219881303],[120,270,64,-0.1043479277592696],[120,270,65,-0.10630161395389152],[120,270,66,-0.10272535476208572],[120,270,67,-0.10262712970701955],[120,270,68,-0.10216032228208591],[120,270,69,-0.10260353491934493],[120,270,70,-0.1035179328120396],[120,270,71,-0.10007388928179804],[120,270,72,-0.12914405088483277],[120,270,73,-0.1645167865058503],[120,270,74,-0.187992598386101],[120,270,75,-0.19198813035965873],[120,270,76,-0.21876503022555296],[120,270,77,-0.20828753392653532],[120,270,78,-0.19388680650863918],[120,270,79,-0.18245641366840137],[120,271,64,-0.10085721358413233],[120,271,65,-0.10081870395174419],[120,271,66,-0.09832149094291252],[120,271,67,-0.1012738821244056],[120,271,68,-0.09979304677781291],[120,271,69,-0.09711928794520021],[120,271,70,-0.09959429034112924],[120,271,71,-0.09653328428671831],[120,271,72,-0.11793850085761265],[120,271,73,-0.1550568662972467],[120,271,74,-0.18598023965043214],[120,271,75,-0.19491182233158746],[120,271,76,-0.21812713426700645],[120,271,77,-0.20441522694696337],[120,271,78,-0.18832534454507105],[120,271,79,-0.17621704837499758],[120,272,64,-0.10073576855433189],[120,272,65,-0.10044194092308698],[120,272,66,-0.09572002744238463],[120,272,67,-0.0966926916373738],[120,272,68,-0.093887026171142],[120,272,69,-0.09285921293207375],[120,272,70,-0.0937180765818661],[120,272,71,-0.09388451975228057],[120,272,72,-0.1137000287853586],[120,272,73,-0.1496395023186339],[120,272,74,-0.19056217452877075],[120,272,75,-0.20406946788763142],[120,272,76,-0.2172726379202342],[120,272,77,-0.20338209368202342],[120,272,78,-0.18765246788222817],[120,272,79,-0.17507759039709117],[120,273,64,-0.09105203303427652],[120,273,65,-0.09412848518039807],[120,273,66,-0.09192953386871168],[120,273,67,-0.09140722968061732],[120,273,68,-0.0931703662525094],[120,273,69,-0.09061442879113307],[120,273,70,-0.09041464050810777],[120,273,71,-0.08944703976934303],[120,273,72,-0.09136148388686804],[120,273,73,-0.10639347966376336],[120,273,74,-0.11970512405652768],[120,273,75,-0.12164488237167181],[120,273,76,-0.11204369247685156],[120,273,77,-0.10131098285178403],[120,273,78,-0.08918570072571824],[120,273,79,-0.07915603392008111],[120,274,64,-0.09128045346591386],[120,274,65,-0.09304055810213291],[120,274,66,-0.09182005289118841],[120,274,67,-0.09074156174297685],[120,274,68,-0.09251654779916098],[120,274,69,-0.08994256305729405],[120,274,70,-0.09027458857215646],[120,274,71,-0.08831316565641781],[120,274,72,-0.08782371415219228],[120,274,73,-0.09956400468579131],[120,274,74,-0.11500390969231349],[120,274,75,-0.11905021835258403],[120,274,76,-0.11124918012808549],[120,274,77,-0.09933329513230263],[120,274,78,-0.08906383559869341],[120,274,79,-0.07711923144742344],[120,275,64,-0.09006876781950998],[120,275,65,-0.08978537216655634],[120,275,66,-0.09219337282000457],[120,275,67,-0.08974054102984765],[120,275,68,-0.09009801666753975],[120,275,69,-0.08770978032865699],[120,275,70,-0.08737506234520806],[120,275,71,-0.08464553859286877],[120,275,72,-0.08700604676815156],[120,275,73,-0.09779905497231574],[120,275,74,-0.11776287772914107],[120,275,75,-0.12318177841676053],[120,275,76,-0.116123659644911],[120,275,77,-0.10574488078837296],[120,275,78,-0.09449777044314189],[120,275,79,-0.08373970194871547],[120,276,64,-0.07759233286119802],[120,276,65,-0.07989191246941642],[120,276,66,-0.08207605885203756],[120,276,67,-0.08047617749006497],[120,276,68,-0.08022220277477454],[120,276,69,-0.07539679262509949],[120,276,70,-0.07536572568024782],[120,276,71,-0.07189545373879043],[120,276,72,-0.07371061148835856],[120,276,73,-0.08930338597705735],[120,276,74,-0.11882358729064112],[120,276,75,-0.12821564019717258],[120,276,76,-0.11668530098892255],[120,276,77,-0.10836062867757332],[120,276,78,-0.09782735549319443],[120,276,79,-0.08533974038452902],[120,277,64,-0.08662148871298117],[120,277,65,-0.08684170816057984],[120,277,66,-0.08492997631855188],[120,277,67,-0.07970266743345807],[120,277,68,-0.07672823073915706],[120,277,69,-0.07413294049606887],[120,277,70,-0.07408729897499113],[120,277,71,-0.0712871612187265],[120,277,72,-0.07050079095862347],[120,277,73,-0.08786669004642464],[120,277,74,-0.11687577946882777],[120,277,75,-0.12418942215411219],[120,277,76,-0.1156229230596707],[120,277,77,-0.10549209545963523],[120,277,78,-0.09550491711761375],[120,277,79,-0.08393406204095846],[120,278,64,-0.0914870511772254],[120,278,65,-0.09111636889446675],[120,278,66,-0.08783512931253339],[120,278,67,-0.08142868558026228],[120,278,68,-0.07709815857307852],[120,278,69,-0.07558605318149844],[120,278,70,-0.07400517760801217],[120,278,71,-0.06999130301211957],[120,278,72,-0.06834426030909807],[120,278,73,-0.07858169743305701],[120,278,74,-0.1044288187183977],[120,278,75,-0.11706875938437492],[120,278,76,-0.10823425947831739],[120,278,77,-0.09877374966935032],[120,278,78,-0.08729151453204997],[120,278,79,-0.07585911989887786],[120,279,64,-0.09196088881024503],[120,279,65,-0.08996563988925867],[120,279,66,-0.08466187707994441],[120,279,67,-0.0775767686102008],[120,279,68,-0.07415883477563727],[120,279,69,-0.07087287928469975],[120,279,70,-0.0676345953895983],[120,279,71,-0.06721202204674798],[120,279,72,-0.06485388663789338],[120,279,73,-0.07392442845194344],[120,279,74,-0.10106681375647092],[120,279,75,-0.1130114738457497],[120,279,76,-0.10576208232566123],[120,279,77,-0.09632258746774258],[120,279,78,-0.08364283051079147],[120,279,79,-0.07214083169030033],[120,280,64,-0.0913175842844381],[120,280,65,-0.08847444641425813],[120,280,66,-0.08330886767162285],[120,280,67,-0.07651061529374073],[120,280,68,-0.07153550518401482],[120,280,69,-0.06680649231635868],[120,280,70,-0.06344460029065718],[120,280,71,-0.06286223517785271],[120,280,72,-0.061718915162153914],[120,280,73,-0.07269433355098673],[120,280,74,-0.10023691157580276],[120,280,75,-0.11016376345536265],[120,280,76,-0.10507038983615152],[120,280,77,-0.09359845635529498],[120,280,78,-0.08312766640551944],[120,280,79,-0.06921414527609657],[120,281,64,-0.09176705359313225],[120,281,65,-0.08978117790130377],[120,281,66,-0.08086795532532964],[120,281,67,-0.07282165295796456],[120,281,68,-0.0688615561717917],[120,281,69,-0.06352703239336607],[120,281,70,-0.05751594818237572],[120,281,71,-0.05820124277549661],[120,281,72,-0.06209745498240239],[120,281,73,-0.07967186015293848],[120,281,74,-0.11241230050683228],[120,281,75,-0.11915251956302897],[120,281,76,-0.11149967700660296],[120,281,77,-0.09962575550916053],[120,281,78,-0.08951984399705434],[120,281,79,-0.07497065964515526],[120,282,64,-0.09344877028681792],[120,282,65,-0.09041096028714152],[120,282,66,-0.08199348476089127],[120,282,67,-0.07364119373519155],[120,282,68,-0.06710856566271471],[120,282,69,-0.06294363548198541],[120,282,70,-0.05876611788958037],[120,282,71,-0.06070426118964398],[120,282,72,-0.06607661652173255],[120,282,73,-0.07432760721098712],[120,282,74,-0.1108513276033353],[120,282,75,-0.12638869422631177],[120,282,76,-0.11547325118581037],[120,282,77,-0.10428573654075377],[120,282,78,-0.09284514873645458],[120,282,79,-0.07782502641565861],[120,283,64,-0.09032974283570014],[120,283,65,-0.08585662109523896],[120,283,66,-0.07808814160214732],[120,283,67,-0.0711063482010425],[120,283,68,-0.06616453813473125],[120,283,69,-0.0627229573634462],[120,283,70,-0.05904163520475497],[120,283,71,-0.06358186482092516],[120,283,72,-0.06814938163481793],[120,283,73,-0.07026117702978407],[120,283,74,-0.10452044343859708],[120,283,75,-0.12897118479045797],[120,283,76,-0.11835758016001982],[120,283,77,-0.1087985828569136],[120,283,78,-0.09556084465571019],[120,283,79,-0.08095328220086265],[120,284,64,-0.10796775551766875],[120,284,65,-0.10308336632280829],[120,284,66,-0.09589501120452286],[120,284,67,-0.08994613748015906],[120,284,68,-0.08807871976632728],[120,284,69,-0.0816665272292535],[120,284,70,-0.08082423280276829],[120,284,71,-0.08373204151130734],[120,284,72,-0.08699207292266302],[120,284,73,-0.08862042751967336],[120,284,74,-0.1171518008940041],[120,284,75,-0.13319833949949092],[120,284,76,-0.1244902765117194],[120,284,77,-0.1131510178865445],[120,284,78,-0.09955294328612366],[120,284,79,-0.08580228582536173],[120,285,64,-0.11102729708883909],[120,285,65,-0.1006740043996759],[120,285,66,-0.09076188602194302],[120,285,67,-0.08243454283545724],[120,285,68,-0.07943467233493462],[120,285,69,-0.07175904425790752],[120,285,70,-0.07061115735332918],[120,285,71,-0.07298727183576562],[120,285,72,-0.07741942391661821],[120,285,73,-0.07869170840283375],[120,285,74,-0.11082547988340716],[120,285,75,-0.1294523790256932],[120,285,76,-0.1211433017181609],[120,285,77,-0.11209935445202682],[120,285,78,-0.0975339003703086],[120,285,79,-0.08197380100885748],[120,286,64,-0.1109405301062033],[120,286,65,-0.10085542361437054],[120,286,66,-0.09280083810291707],[120,286,67,-0.08432480184230946],[120,286,68,-0.08019058959372621],[120,286,69,-0.07122232802806609],[120,286,70,-0.07075842225176861],[120,286,71,-0.0712894993233675],[120,286,72,-0.07663943742045352],[120,286,73,-0.07878733328515364],[120,286,74,-0.10786289311604498],[120,286,75,-0.12603678955570535],[120,286,76,-0.11984497427652219],[120,286,77,-0.11011097330671701],[120,286,78,-0.09629473764473861],[120,286,79,-0.08181584820120463],[120,287,64,-0.10809499368059793],[120,287,65,-0.09742424102766283],[120,287,66,-0.09029155700356258],[120,287,67,-0.08196627035258414],[120,287,68,-0.07853775736663933],[120,287,69,-0.07238287473195966],[120,287,70,-0.06859355790379822],[120,287,71,-0.07075854211999327],[120,287,72,-0.07756031298029306],[120,287,73,-0.07945668445087602],[120,287,74,-0.10214967152228947],[120,287,75,-0.11612895158609637],[120,287,76,-0.11505547452149156],[120,287,77,-0.1038499459261549],[120,287,78,-0.08972971218595438],[120,287,79,-0.07638044246822592],[120,288,64,-0.10506240352780556],[120,288,65,-0.09627950449881026],[120,288,66,-0.08965206353224467],[120,288,67,-0.08320656171703886],[120,288,68,-0.07709829560715006],[120,288,69,-0.06944373491966228],[120,288,70,-0.06623087609817593],[120,288,71,-0.06972239928697692],[120,288,72,-0.07776773973401863],[120,288,73,-0.07945827159420504],[120,288,74,-0.09687474744220162],[120,288,75,-0.10993708004323913],[120,288,76,-0.10825425244003525],[120,288,77,-0.09846563598259706],[120,288,78,-0.08601178010099908],[120,288,79,-0.07208443681284468],[120,289,64,-0.09388803219327324],[120,289,65,-0.0933240391213889],[120,289,66,-0.09201801107394841],[120,289,67,-0.09059817347694332],[120,289,68,-0.08738965159905457],[120,289,69,-0.0800306819512936],[120,289,70,-0.07680182426488401],[120,289,71,-0.0778024024985621],[120,289,72,-0.08550993071811483],[120,289,73,-0.08844723558984177],[120,289,74,-0.11272456430894376],[120,289,75,-0.12046625108530887],[120,289,76,-0.11127115297689841],[120,289,77,-0.10074494196068867],[120,289,78,-0.08975782337864022],[120,289,79,-0.07776429068644289],[120,290,64,-0.09511379237352037],[120,290,65,-0.09578008945117628],[120,290,66,-0.09501110499489313],[120,290,67,-0.0909269746132253],[120,290,68,-0.08728772114837224],[120,290,69,-0.08350121065049892],[120,290,70,-0.08088021403872661],[120,290,71,-0.08363074818190262],[120,290,72,-0.08814828113413989],[120,290,73,-0.08890022827735784],[120,290,74,-0.10302229400854024],[120,290,75,-0.11160726439107968],[120,290,76,-0.10228364015750985],[120,290,77,-0.08870450291850554],[120,290,78,-0.07742789633077385],[120,290,79,-0.06918357591707586],[120,291,64,-0.09354758284091977],[120,291,65,-0.09632201199676044],[120,291,66,-0.09280631907376595],[120,291,67,-0.08877027235320169],[120,291,68,-0.08801023955635533],[120,291,69,-0.08306436228256349],[120,291,70,-0.08140352657130581],[120,291,71,-0.08527537839738455],[120,291,72,-0.08721497912030551],[120,291,73,-0.08619490611038928],[120,291,74,-0.09780819702790107],[120,291,75,-0.11189541908748987],[120,291,76,-0.10233632737100518],[120,291,77,-0.08918554595171457],[120,291,78,-0.0780995009186563],[120,291,79,-0.07064932033427168],[120,292,64,-0.06476618955580872],[120,292,65,-0.06347896001834269],[120,292,66,-0.06156918696195542],[120,292,67,-0.0550202858200559],[120,292,68,-0.0544585065442868],[120,292,69,-0.05047262162390663],[120,292,70,-0.04664772735447628],[120,292,71,-0.052356997396726355],[120,292,72,-0.053392096137738126],[120,292,73,-0.05161446959368224],[120,292,74,-0.06155659468572888],[120,292,75,-0.08738810075084229],[120,292,76,-0.08287126731203154],[120,292,77,-0.0713795516099125],[120,292,78,-0.05645645763456758],[120,292,79,-0.04952342509803678],[120,293,64,-0.06539706593821779],[120,293,65,-0.06140964188809426],[120,293,66,-0.05888855545053116],[120,293,67,-0.05395471935298073],[120,293,68,-0.05004010591094124],[120,293,69,-0.04799059991619552],[120,293,70,-0.04847227671418451],[120,293,71,-0.05047978300891067],[120,293,72,-0.05492435520122525],[120,293,73,-0.05336876946436802],[120,293,74,-0.058479552091274416],[120,293,75,-0.07900985616726734],[120,293,76,-0.07936827974581087],[120,293,77,-0.06790849075358904],[120,293,78,-0.05408075421020564],[120,293,79,-0.04646230031341336],[120,294,64,-0.06567796102315522],[120,294,65,-0.0602618820598022],[120,294,66,-0.058882716690475505],[120,294,67,-0.049839145212216406],[120,294,68,-0.043294274410842756],[120,294,69,-0.04298588551885159],[120,294,70,-0.04415300304284958],[120,294,71,-0.04714115002379382],[120,294,72,-0.05119582710150136],[120,294,73,-0.049543142583432176],[120,294,74,-0.0521814144966226],[120,294,75,-0.07655923344040357],[120,294,76,-0.08515993728086063],[120,294,77,-0.07499461691857029],[120,294,78,-0.06499282984332158],[120,294,79,-0.05327398124225677],[120,295,64,-0.0664299498236435],[120,295,65,-0.05925241614524826],[120,295,66,-0.057270507410164664],[120,295,67,-0.0462719806642168],[120,295,68,-0.03995518986708872],[120,295,69,-0.03725783459253569],[120,295,70,-0.03877016362694556],[120,295,71,-0.04444407772298054],[120,295,72,-0.047711003703533726],[120,295,73,-0.04756805722683727],[120,295,74,-0.04666680642033463],[120,295,75,-0.049140171933778364],[120,295,76,-0.05928824396953523],[120,295,77,-0.06216736662376979],[120,295,78,-0.06057016141494334],[120,295,79,-0.04920064812834374],[120,296,64,-0.06593399202575481],[120,296,65,-0.05776454703905308],[120,296,66,-0.05329888030967381],[120,296,67,-0.04257293394264919],[120,296,68,-0.03592931976255141],[120,296,69,-0.03010865519504241],[120,296,70,-0.03338670604324359],[120,296,71,-0.04015590083637092],[120,296,72,-0.04202853197457186],[120,296,73,-0.042340689584182016],[120,296,74,-0.043796911964602794],[120,296,75,-0.04668201075706172],[120,296,76,-0.05489089281657786],[120,296,77,-0.05843917597370381],[120,296,78,-0.05476637660572624],[120,296,79,-0.04491398915336123],[120,297,64,-0.07123747321471316],[120,297,65,-0.060294910741262],[120,297,66,-0.04677407327108547],[120,297,67,-0.032421326109367765],[120,297,68,-0.021695778531417784],[120,297,69,-0.015654332275211458],[120,297,70,-0.020439094304024852],[120,297,71,-0.0334641327466758],[120,297,72,-0.04054763768921977],[120,297,73,-0.046179387210083515],[120,297,74,-0.04813586074154846],[120,297,75,-0.05012556134648428],[120,297,76,-0.05963344689447677],[120,297,77,-0.0636983617522364],[120,297,78,-0.06096332124209697],[120,297,79,-0.04544583648205708],[120,298,64,-0.07409742376068006],[120,298,65,-0.061102737360684015],[120,298,66,-0.04480973845934366],[120,298,67,-0.03282279588256422],[120,298,68,-0.02101522319435152],[120,298,69,-0.016711859494589323],[120,298,70,-0.02198404633836891],[120,298,71,-0.03269683327550334],[120,298,72,-0.039433382846244786],[120,298,73,-0.04701562305669951],[120,298,74,-0.04787403752256141],[120,298,75,-0.04678253782813626],[120,298,76,-0.05742569419295989],[120,298,77,-0.057179948932281566],[120,298,78,-0.0471792241767007],[120,298,79,-0.03735695488283666],[120,299,64,-0.07171587738665847],[120,299,65,-0.05798315990131919],[120,299,66,-0.04406011210277504],[120,299,67,-0.029143563485241913],[120,299,68,-0.020917794634547418],[120,299,69,-0.01604120959684187],[120,299,70,-0.021517364415525597],[120,299,71,-0.031093367439433348],[120,299,72,-0.03818512650699142],[120,299,73,-0.04509374799943195],[120,299,74,-0.0465001881767172],[120,299,75,-0.04208582258507956],[120,299,76,-0.05296371620980741],[120,299,77,-0.055461366386284544],[120,299,78,-0.044663239836271434],[120,299,79,-0.03374413879803809],[120,300,64,-0.06693399593524776],[120,300,65,-0.058510495727795084],[120,300,66,-0.049950073909041603],[120,300,67,-0.038501705698483255],[120,300,68,-0.03292281129549404],[120,300,69,-0.025814401916022717],[120,300,70,-0.027099825844249983],[120,300,71,-0.030096352194951256],[120,300,72,-0.03148875897597704],[120,300,73,-0.030522083578962356],[120,300,74,-0.03165695257547313],[120,300,75,-0.027041302724130342],[120,300,76,-0.020566826127695503],[120,300,77,-0.018664195469667688],[120,300,78,-0.012620082170319014],[120,300,79,-0.006911242098327372],[120,301,64,-0.06453610162130251],[120,301,65,-0.05868170001956845],[120,301,66,-0.049110416930546366],[120,301,67,-0.036439206445228994],[120,301,68,-0.03011267760959084],[120,301,69,-0.025467194524351366],[120,301,70,-0.027013521497646617],[120,301,71,-0.029811371684385107],[120,301,72,-0.030498102436435692],[120,301,73,-0.026769434354128485],[120,301,74,-0.025765418491247388],[120,301,75,-0.024067062604738412],[120,301,76,-0.0176178547208002],[120,301,77,-0.01601858849891813],[120,301,78,-0.012677935724975026],[120,301,79,-0.006203664964556196],[120,302,64,-0.05827590729928775],[120,302,65,-0.05382530407974063],[120,302,66,-0.042756862397997336],[120,302,67,-0.03167795026870311],[120,302,68,-0.025634452334949306],[120,302,69,-0.021756690451652752],[120,302,70,-0.023186012201468875],[120,302,71,-0.022699467354102165],[120,302,72,-0.023542729955894195],[120,302,73,-0.020002830982233752],[120,302,74,-0.01628626157270402],[120,302,75,-0.012517521399657325],[120,302,76,-0.007958950716084129],[120,302,77,-0.007180098164180623],[120,302,78,-0.0034297234063347393],[120,302,79,0.0019799551137983096],[120,303,64,-0.05558149214340324],[120,303,65,-0.04972665525834441],[120,303,66,-0.039882781302644735],[120,303,67,-0.029654386287404993],[120,303,68,-0.02444714788663574],[120,303,69,-0.019770110923704898],[120,303,70,-0.019200896932046546],[120,303,71,-0.01963688607107056],[120,303,72,-0.0203006466405051],[120,303,73,-0.017606468966962302],[120,303,74,-0.013326937323322727],[120,303,75,-0.008682756850339007],[120,303,76,-0.0040481118846689285],[120,303,77,-0.003610389186726126],[120,303,78,-3.4101637699872345E-4],[120,303,79,0.005023659934539765],[120,304,64,-0.05101151724179666],[120,304,65,-0.043135741870563835],[120,304,66,-0.03612672894829985],[120,304,67,-0.02768679140682949],[120,304,68,-0.02383995522639941],[120,304,69,-0.018439120311621912],[120,304,70,-0.01676625397267649],[120,304,71,-0.016190611296452162],[120,304,72,-0.017554716132064163],[120,304,73,-0.013520288009067974],[120,304,74,-0.011332626929673878],[120,304,75,-0.00479492136168827],[120,304,76,-7.898174503231103E-4],[120,304,77,-3.258165018204112E-4],[120,304,78,0.001425227977043489],[120,304,79,0.007971076933586965],[120,305,64,-0.04541711101794427],[120,305,65,-0.03942236221880821],[120,305,66,-0.03372569532995065],[120,305,67,-0.027170999829535566],[120,305,68,-0.023974380652229704],[120,305,69,-0.019129771946850158],[120,305,70,-0.015660423813205523],[120,305,71,-0.012532684739888514],[120,305,72,-0.011690419232416455],[120,305,73,-0.009160912261161114],[120,305,74,-0.007688371917602785],[120,305,75,-0.004363853909539667],[120,305,76,-0.0011501674554687535],[120,305,77,0.0018902318391737782],[120,305,78,0.003959249964230152],[120,305,79,0.009642784459613057],[120,306,64,-0.04544706618493671],[120,306,65,-0.03940801266914444],[120,306,66,-0.03452813580284689],[120,306,67,-0.02761089636733953],[120,306,68,-0.02254005194418625],[120,306,69,-0.0190099611604653],[120,306,70,-0.0160384280967336],[120,306,71,-0.01319829789487624],[120,306,72,-0.01136115401126217],[120,306,73,-0.006788495290634744],[120,306,74,-0.007049824909801605],[120,306,75,-0.006037392045825693],[120,306,76,-0.0026600600212899894],[120,306,77,0.0015079499466960217],[120,306,78,0.0048648851407102345],[120,306,79,0.010521087373706106],[120,307,64,-0.045282208013466066],[120,307,65,-0.040272598362502424],[120,307,66,-0.031288423098459056],[120,307,67,-0.024279689245184977],[120,307,68,-0.018093425198862256],[120,307,69,-0.01489191745054727],[120,307,70,-0.013580779823784181],[120,307,71,-0.014294901838908025],[120,307,72,-0.011613418901988096],[120,307,73,-0.005918820680553244],[120,307,74,-0.007352859127443739],[120,307,75,-0.006389247283279664],[120,307,76,-8.999083338998848E-4],[120,307,77,0.0015669192551387018],[120,307,78,0.0059627206979465525],[120,307,79,0.0113470123922845],[120,308,64,-0.020368407711071804],[120,308,65,-0.016918962416294522],[120,308,66,-0.007725756998533881],[120,308,67,-9.906399310276315E-4],[120,308,68,3.740511874991692E-4],[120,308,69,0.0011392280000192129],[120,308,70,-0.002547756460939382],[120,308,71,-0.011423789140417404],[120,308,72,-0.01520239810131871],[120,308,73,-0.017195124230444822],[120,308,74,-0.020038927087051905],[120,308,75,-0.018485268466548577],[120,308,76,-0.013954445978391683],[120,308,77,-0.012598235455847567],[120,308,78,-0.009888283031406736],[120,308,79,-0.007521629066617672],[120,309,64,-0.018514636272473795],[120,309,65,-0.014634489211571997],[120,309,66,-0.00537380959995952],[120,309,67,0.003178828113864149],[120,309,68,0.005154302668615024],[120,309,69,0.004000298387601964],[120,309,70,-0.002057812641495599],[120,309,71,-0.008805707153268033],[120,309,72,-0.012235380279579627],[120,309,73,-0.01834442993361246],[120,309,74,-0.018463218015850574],[120,309,75,-0.017176532179442622],[120,309,76,-0.014294502183567787],[120,309,77,-0.011552011855261793],[120,309,78,-0.00898716412826954],[120,309,79,-0.006670893186810273],[120,310,64,-0.011579047032679382],[120,310,65,-0.004527833369659104],[120,310,66,8.437095977511799E-4],[120,310,67,0.00859165609303457],[120,310,68,0.010990870399137168],[120,310,69,0.009972778607323346],[120,310,70,0.0033580308303809286],[120,310,71,7.764537886374712E-5],[120,310,72,-0.002525174846301159],[120,310,73,-0.01089418595209804],[120,310,74,-0.01101226610098456],[120,310,75,-0.008346318831835245],[120,310,76,-0.006379820180004242],[120,310,77,-0.001078945787194141],[120,310,78,-2.581782777417996E-4],[120,310,79,0.0034660667453652594],[120,311,64,-0.007713405092930031],[120,311,65,-0.0023386251240964384],[120,311,66,0.0037082906925957337],[120,311,67,0.009766782548156522],[120,311,68,0.01066667712513715],[120,311,69,0.010102150644074187],[120,311,70,0.0066361727008352744],[120,311,71,0.0018081752002054863],[120,311,72,-0.0012078497181899073],[120,311,73,-0.006648185404557416],[120,311,74,-0.01137074294692264],[120,311,75,-0.008587854598554753],[120,311,76,-0.0047120119987935916],[120,311,77,8.014279367194177E-4],[120,311,78,0.0016161862645088787],[120,311,79,0.0056373464369072895],[120,312,64,-0.01726778567085238],[120,312,65,-0.012306991471082857],[120,312,66,-0.006207460361262934],[120,312,67,0.0017037771721025996],[120,312,68,0.0011871027396621048],[120,312,69,0.0020638104462780693],[120,312,70,0.0030645810285437752],[120,312,71,0.0037689312817386356],[120,312,72,0.00659157893951301],[120,312,73,0.0075910608744330366],[120,312,74,0.0042496121284121835],[120,312,75,0.004172837847626024],[120,312,76,0.009103160431548726],[120,312,77,0.010275601752331123],[120,312,78,0.0144412294655542],[120,312,79,0.017277496491712105],[120,313,64,-0.018174433937324375],[120,313,65,-0.012293705276369152],[120,313,66,-0.003973705920269091],[120,313,67,0.004242031636887356],[120,313,68,0.005293649218985841],[120,313,69,0.00296936000516676],[120,313,70,0.005045691449767187],[120,313,71,0.004928347895398866],[120,313,72,0.009088079973399388],[120,313,73,0.01174799245161963],[120,313,74,0.01080510144332586],[120,313,75,0.00857119258723453],[120,313,76,0.01120586544921956],[120,313,77,0.011537567719781566],[120,313,78,0.018452989720427568],[120,313,79,0.02293849472501996],[120,314,64,-0.02417159527132981],[120,314,65,-0.014636085471679314],[120,314,66,-0.008836739805566665],[120,314,67,7.408694470290994E-4],[120,314,68,0.004804126949409335],[120,314,69,0.0016528704402153094],[120,314,70,0.0025855807002004016],[120,314,71,0.006027468346472012],[120,314,72,0.009666677943710178],[120,314,73,0.014793345758445126],[120,314,74,0.014672316259205412],[120,314,75,0.012907531604824912],[120,314,76,0.013774273624562294],[120,314,77,0.012753738769201092],[120,314,78,0.013935431700810024],[120,314,79,0.019085876885164874],[120,315,64,-0.026058129355394477],[120,315,65,-0.016523436897593627],[120,315,66,-0.00984684628502891],[120,315,67,-5.849365244648824E-4],[120,315,68,0.004300267223581955],[120,315,69,0.0019199195028838795],[120,315,70,0.0034859244483650548],[120,315,71,0.009708115928902139],[120,315,72,0.01699865481696264],[120,315,73,0.018952357904984535],[120,315,74,0.020239226320314455],[120,315,75,0.018912492552430035],[120,315,76,0.01878406380223363],[120,315,77,0.01618505289995227],[120,315,78,0.014105352441657181],[120,315,79,0.02272986133264479],[120,316,64,-0.0357623080806968],[120,316,65,-0.025228999405190716],[120,316,66,-0.015274328945552598],[120,316,67,-0.004561111185422184],[120,316,68,-6.3829564836692665E-6],[120,316,69,0.0041546524917743105],[120,316,70,0.007739905410066417],[120,316,71,0.013426050083704358],[120,316,72,0.0233814092400971],[120,316,73,0.024506641480892655],[120,316,74,0.025461801539752832],[120,316,75,0.025579058351756473],[120,316,76,0.025282129527165423],[120,316,77,0.022146957359747522],[120,316,78,0.022244286788897956],[120,316,79,0.032723355103290726],[120,317,64,-0.03397427121455214],[120,317,65,-0.02620421686394886],[120,317,66,-0.015499044022146496],[120,317,67,-0.005895262883715613],[120,317,68,2.154148872582362E-4],[120,317,69,0.006271283071951364],[120,317,70,0.012267968362089779],[120,317,71,0.017455365291046396],[120,317,72,0.026556779069978373],[120,317,73,0.026033354516634202],[120,317,74,0.028028229076432917],[120,317,75,0.02735765166342337],[120,317,76,0.027712142724182237],[120,317,77,0.023472686723129865],[120,317,78,0.021186832144813785],[120,317,79,0.027336443524954596],[120,318,64,-0.027629318369723918],[120,318,65,-0.016297038067788275],[120,318,66,-0.005832756958262741],[120,318,67,6.38635747438665E-4],[120,318,68,0.00943625129636215],[120,318,69,0.01630258636605493],[120,318,70,0.021491363556639637],[120,318,71,0.029812143234125385],[120,318,72,0.034639038853940804],[120,318,73,0.037724175180462186],[120,318,74,0.03628747797327486],[120,318,75,0.0391276672283153],[120,318,76,0.03872437509629657],[120,318,77,0.03320135696362331],[120,318,78,0.030198939033784438],[120,318,79,0.032648354531061984],[120,319,64,-0.026474520808122515],[120,319,65,-0.012504870395112874],[120,319,66,-0.002561315747391657],[120,319,67,0.0021676105018107045],[120,319,68,0.013010014711331563],[120,319,69,0.020489470403414742],[120,319,70,0.025760385515154083],[120,319,71,0.03285253651578303],[120,319,72,0.03625180600805622],[120,319,73,0.03848507824169986],[120,319,74,0.03807460088503993],[120,319,75,0.041324681767492405],[120,319,76,0.03899999715808372],[120,319,77,0.03304169148156176],[120,319,78,0.03224551931084312],[120,319,79,0.028511886297072877],[121,-64,64,-0.4415386068988416],[121,-64,65,-0.43329439396771363],[121,-64,66,-0.4294147653889415],[121,-64,67,-0.42394850900978],[121,-64,68,-0.4170178328641027],[121,-64,69,-0.41334699614988474],[121,-64,70,-0.4060257358939255],[121,-64,71,-0.3912662454686106],[121,-64,72,-0.3820572158766238],[121,-64,73,-0.3742003475529565],[121,-64,74,-0.36754570672858045],[121,-64,75,-0.3624565970425738],[121,-64,76,-0.3616855230599827],[121,-64,77,-0.3634886671248648],[121,-64,78,-0.36346440180674383],[121,-64,79,-0.3700677237983747],[121,-63,64,-0.44867780253751716],[121,-63,65,-0.438436711603967],[121,-63,66,-0.43179253956696273],[121,-63,67,-0.4222155405504061],[121,-63,68,-0.4156417054711233],[121,-63,69,-0.41010627888403683],[121,-63,70,-0.401670678794301],[121,-63,71,-0.38687440080426116],[121,-63,72,-0.37050883849955496],[121,-63,73,-0.3620339458097554],[121,-63,74,-0.3582176777883372],[121,-63,75,-0.35424939677831074],[121,-63,76,-0.35418592059516846],[121,-63,77,-0.3606587597837133],[121,-63,78,-0.3639837758910961],[121,-63,79,-0.36979369839487336],[121,-62,64,-0.4469510680185353],[121,-62,65,-0.4379833961256584],[121,-62,66,-0.43016616018680276],[121,-62,67,-0.41997967811481424],[121,-62,68,-0.41377661592908366],[121,-62,69,-0.40675475633868735],[121,-62,70,-0.3977766841207408],[121,-62,71,-0.3827169714584107],[121,-62,72,-0.364657204783538],[121,-62,73,-0.3556062190295328],[121,-62,74,-0.3514556098515118],[121,-62,75,-0.34797620050189565],[121,-62,76,-0.3491540049192902],[121,-62,77,-0.3559210464015415],[121,-62,78,-0.35966797216265856],[121,-62,79,-0.36344288235849315],[121,-61,64,-0.45061281870821535],[121,-61,65,-0.441597440067812],[121,-61,66,-0.4353262288892337],[121,-61,67,-0.42109200104491196],[121,-61,68,-0.4173217704600827],[121,-61,69,-0.40865394180489617],[121,-61,70,-0.4004522098035609],[121,-61,71,-0.3824357112375441],[121,-61,72,-0.3657157379178998],[121,-61,73,-0.35679858921934776],[121,-61,74,-0.35036410262253753],[121,-61,75,-0.3474284096550457],[121,-61,76,-0.3471294781302045],[121,-61,77,-0.3532298825117508],[121,-61,78,-0.3590992560312639],[121,-61,79,-0.3621698258448619],[121,-60,64,-0.4506053386439491],[121,-60,65,-0.44174542277146006],[121,-60,66,-0.4314639460012153],[121,-60,67,-0.4190867678039857],[121,-60,68,-0.4126226629532201],[121,-60,69,-0.40498960599781053],[121,-60,70,-0.3953259080359337],[121,-60,71,-0.37704358389451714],[121,-60,72,-0.3612314004390975],[121,-60,73,-0.3522992698068105],[121,-60,74,-0.34325504140891844],[121,-60,75,-0.3404394354529999],[121,-60,76,-0.34077000500892485],[121,-60,77,-0.34498415552864076],[121,-60,78,-0.3527810907288647],[121,-60,79,-0.3538315465807474],[121,-59,64,-0.4360649415157961],[121,-59,65,-0.42635865533931055],[121,-59,66,-0.41927969943739396],[121,-59,67,-0.41354195766757995],[121,-59,68,-0.4058685182146199],[121,-59,69,-0.3998140060006979],[121,-59,70,-0.3888505870811],[121,-59,71,-0.3753700768189225],[121,-59,72,-0.36095932803909453],[121,-59,73,-0.3542432043359793],[121,-59,74,-0.34813901902599215],[121,-59,75,-0.3442741191954906],[121,-59,76,-0.3393528745476086],[121,-59,77,-0.34107200817933125],[121,-59,78,-0.34402050224487984],[121,-59,79,-0.3433303098392821],[121,-58,64,-0.4323899096167858],[121,-58,65,-0.42353958552184634],[121,-58,66,-0.41752546794916395],[121,-58,67,-0.4146849619004985],[121,-58,68,-0.4056002897156957],[121,-58,69,-0.39729827304749754],[121,-58,70,-0.3858385921894164],[121,-58,71,-0.37598398294745644],[121,-58,72,-0.36173011834285485],[121,-58,73,-0.35253384248765224],[121,-58,74,-0.344391008986907],[121,-58,75,-0.33921296087893715],[121,-58,76,-0.33472415893696295],[121,-58,77,-0.3372824854438852],[121,-58,78,-0.3384944492553642],[121,-58,79,-0.33722331700979113],[121,-57,64,-0.4340861899614078],[121,-57,65,-0.42613365269496956],[121,-57,66,-0.4186425862775462],[121,-57,67,-0.41737774095841507],[121,-57,68,-0.40906546459691323],[121,-57,69,-0.39907569366213963],[121,-57,70,-0.3896584929651],[121,-57,71,-0.37992580287356165],[121,-57,72,-0.36592212286754217],[121,-57,73,-0.3527258421459332],[121,-57,74,-0.34377914541133503],[121,-57,75,-0.33753777441831084],[121,-57,76,-0.33271315095361526],[121,-57,77,-0.336843640831093],[121,-57,78,-0.3366507471505941],[121,-57,79,-0.333857755351712],[121,-56,64,-0.4282909176722541],[121,-56,65,-0.4227586842844277],[121,-56,66,-0.41604398281902727],[121,-56,67,-0.41389026148326546],[121,-56,68,-0.4054670727694058],[121,-56,69,-0.39620996528088004],[121,-56,70,-0.38893449712736294],[121,-56,71,-0.37869999946076804],[121,-56,72,-0.3639990292398284],[121,-56,73,-0.35096406447477047],[121,-56,74,-0.3415282715660839],[121,-56,75,-0.3336143117326999],[121,-56,76,-0.3315906515745133],[121,-56,77,-0.33317830766627216],[121,-56,78,-0.33326522107485673],[121,-56,79,-0.32868696757017174],[121,-55,64,-0.4252321210704844],[121,-55,65,-0.417616460444162],[121,-55,66,-0.4152733547763134],[121,-55,67,-0.4133972177687631],[121,-55,68,-0.404006735909946],[121,-55,69,-0.3961116932724859],[121,-55,70,-0.38691476126251334],[121,-55,71,-0.3755933014456074],[121,-55,72,-0.3609175659057356],[121,-55,73,-0.3476736212116846],[121,-55,74,-0.3381073910547043],[121,-55,75,-0.32992507959165834],[121,-55,76,-0.3302389912224354],[121,-55,77,-0.3269424779458182],[121,-55,78,-0.3273609089522613],[121,-55,79,-0.3217516694099571],[121,-54,64,-0.4237036156144827],[121,-54,65,-0.41650998768541714],[121,-54,66,-0.41444779834725004],[121,-54,67,-0.4138322516371169],[121,-54,68,-0.40420578842833416],[121,-54,69,-0.39638298223701596],[121,-54,70,-0.38653281798301337],[121,-54,71,-0.3732260069903182],[121,-54,72,-0.35817159874149623],[121,-54,73,-0.34346649308981],[121,-54,74,-0.33324763760951176],[121,-54,75,-0.3275658896721634],[121,-54,76,-0.32615911928915675],[121,-54,77,-0.32365508928510556],[121,-54,78,-0.3214392004098323],[121,-54,79,-0.3165093559134956],[121,-53,64,-0.4286354757128148],[121,-53,65,-0.42100474368771956],[121,-53,66,-0.4163718753367536],[121,-53,67,-0.41461355652175486],[121,-53,68,-0.4070549393036239],[121,-53,69,-0.39907819154369517],[121,-53,70,-0.39040330161615105],[121,-53,71,-0.37699205005183617],[121,-53,72,-0.3628686725544375],[121,-53,73,-0.3462531622018527],[121,-53,74,-0.33481901625388755],[121,-53,75,-0.3289516047090688],[121,-53,76,-0.32624762740872715],[121,-53,77,-0.3262152476924451],[121,-53,78,-0.32334250115466384],[121,-53,79,-0.3192394182598053],[121,-52,64,-0.43002398547469917],[121,-52,65,-0.4211665898538376],[121,-52,66,-0.4136083619980327],[121,-52,67,-0.41006518603062375],[121,-52,68,-0.40194705043071105],[121,-52,69,-0.3937124612206344],[121,-52,70,-0.38329148248008776],[121,-52,71,-0.37232393285407034],[121,-52,72,-0.360230117827514],[121,-52,73,-0.3420204629503566],[121,-52,74,-0.330598727903452],[121,-52,75,-0.3206817669127501],[121,-52,76,-0.3175364463350449],[121,-52,77,-0.3153292154202884],[121,-52,78,-0.31375444788789597],[121,-52,79,-0.31164832713460144],[121,-51,64,-0.4472229916216786],[121,-51,65,-0.4393542614916207],[121,-51,66,-0.43660383599043473],[121,-51,67,-0.4361174350952193],[121,-51,68,-0.43004183211842417],[121,-51,69,-0.42274998108938155],[121,-51,70,-0.4088503565423297],[121,-51,71,-0.39513913700673386],[121,-51,72,-0.38002212075887043],[121,-51,73,-0.3625830304544067],[121,-51,74,-0.34708437188777047],[121,-51,75,-0.3335517102822392],[121,-51,76,-0.3248277731186079],[121,-51,77,-0.31843090967236004],[121,-51,78,-0.30966389328025484],[121,-51,79,-0.30188121913750754],[121,-50,64,-0.4463757817789205],[121,-50,65,-0.4400230710820227],[121,-50,66,-0.4339766735309362],[121,-50,67,-0.4367920920438478],[121,-50,68,-0.43115297178239476],[121,-50,69,-0.4216605861545535],[121,-50,70,-0.408350754293609],[121,-50,71,-0.39227067538732824],[121,-50,72,-0.3762585882872867],[121,-50,73,-0.36230674613110647],[121,-50,74,-0.34487167799598406],[121,-50,75,-0.3316823874047059],[121,-50,76,-0.3240177616353926],[121,-50,77,-0.3172589799651864],[121,-50,78,-0.31019459204010424],[121,-50,79,-0.29887116849389816],[121,-49,64,-0.43249118082241905],[121,-49,65,-0.4001224232764155],[121,-49,66,-0.4400245567573056],[121,-49,67,-0.44205169467644767],[121,-49,68,-0.436004514337456],[121,-49,69,-0.4258773463374942],[121,-49,70,-0.410584065078169],[121,-49,71,-0.39487451605653423],[121,-49,72,-0.37727101938635976],[121,-49,73,-0.36613169066192247],[121,-49,74,-0.3487446074766794],[121,-49,75,-0.33297237596601437],[121,-49,76,-0.32436760279983184],[121,-49,77,-0.3151464973593095],[121,-49,78,-0.31049527705839935],[121,-49,79,-0.297494296623242],[121,-48,64,-0.3824011058125054],[121,-48,65,-0.3663194569574781],[121,-48,66,-0.43843160243184387],[121,-48,67,-0.44014083445258195],[121,-48,68,-0.43191713207257676],[121,-48,69,-0.41964651605909076],[121,-48,70,-0.4063912735829712],[121,-48,71,-0.3919970052456318],[121,-48,72,-0.37515624595724933],[121,-48,73,-0.36573854470420314],[121,-48,74,-0.3486008161556604],[121,-48,75,-0.3321937515403922],[121,-48,76,-0.3240514303299085],[121,-48,77,-0.31631340137748604],[121,-48,78,-0.30817980490814034],[121,-48,79,-0.2976016369664088],[121,-47,64,-0.35391873251585304],[121,-47,65,-0.3515844727537445],[121,-47,66,-0.4335096679669527],[121,-47,67,-0.42803334745770144],[121,-47,68,-0.415919387242968],[121,-47,69,-0.40382343889978844],[121,-47,70,-0.39470282585018934],[121,-47,71,-0.38322619202703745],[121,-47,72,-0.37179101142096743],[121,-47,73,-0.3612201449431957],[121,-47,74,-0.34622818856184495],[121,-47,75,-0.3334304144881423],[121,-47,76,-0.3245299740969555],[121,-47,77,-0.31994209818151653],[121,-47,78,-0.3142404439707408],[121,-47,79,-0.30395310542754733],[121,-46,64,-0.40764429008826597],[121,-46,65,-0.3728931952953005],[121,-46,66,-0.4169097240791902],[121,-46,67,-0.42323273935548833],[121,-46,68,-0.4117007044892737],[121,-46,69,-0.39928132705491315],[121,-46,70,-0.3921229669978676],[121,-46,71,-0.3803259096604656],[121,-46,72,-0.3700776284272505],[121,-46,73,-0.3587311057655027],[121,-46,74,-0.34272863158156863],[121,-46,75,-0.331607054978835],[121,-46,76,-0.32565397498408544],[121,-46,77,-0.31667879599943466],[121,-46,78,-0.31150891622998117],[121,-46,79,-0.3035114626852441],[121,-45,64,-0.39427110942816224],[121,-45,65,-0.34225570937993877],[121,-45,66,-0.39146309697318443],[121,-45,67,-0.4262776521389312],[121,-45,68,-0.4118704430638527],[121,-45,69,-0.40043986813712085],[121,-45,70,-0.3924366435010487],[121,-45,71,-0.38153634227307237],[121,-45,72,-0.37223271458225826],[121,-45,73,-0.3591565785235087],[121,-45,74,-0.3459746348730649],[121,-45,75,-0.3344497741201144],[121,-45,76,-0.3289357158243427],[121,-45,77,-0.31877438340450126],[121,-45,78,-0.31535470622418676],[121,-45,79,-0.30598646340327645],[121,-44,64,-0.3197111043357499],[121,-44,65,-0.21699689550011644],[121,-44,66,-0.3061984804143822],[121,-44,67,-0.43345350489169826],[121,-44,68,-0.4228698111733385],[121,-44,69,-0.4145112657721405],[121,-44,70,-0.40927914370503476],[121,-44,71,-0.4029433453556339],[121,-44,72,-0.3944066279438643],[121,-44,73,-0.38702177715075864],[121,-44,74,-0.37229966394094777],[121,-44,75,-0.3605458941135354],[121,-44,76,-0.35495432986496045],[121,-44,77,-0.3447218904795858],[121,-44,78,-0.34208259994345447],[121,-44,79,-0.3317062241544919],[121,-43,64,-0.28716891623260593],[121,-43,65,-0.1845304931000756],[121,-43,66,-0.2657191604579915],[121,-43,67,-0.405526702904389],[121,-43,68,-0.41047535451056627],[121,-43,69,-0.4024112915263441],[121,-43,70,-0.3971053984648636],[121,-43,71,-0.39130208124450605],[121,-43,72,-0.3822097860186484],[121,-43,73,-0.37653375349692464],[121,-43,74,-0.36158198641655237],[121,-43,75,-0.3492403312702657],[121,-43,76,-0.3452483397526803],[121,-43,77,-0.33717580389360624],[121,-43,78,-0.3356701575592708],[121,-43,79,-0.32939455145428836],[121,-42,64,-0.2671445307622704],[121,-42,65,-0.17987818295231717],[121,-42,66,-0.2429639984696416],[121,-42,67,-0.3581172182087261],[121,-42,68,-0.4084014669684238],[121,-42,69,-0.40163964317473627],[121,-42,70,-0.3947436475292654],[121,-42,71,-0.38711045940524336],[121,-42,72,-0.3785185049117172],[121,-42,73,-0.37339379372431086],[121,-42,74,-0.359229236456283],[121,-42,75,-0.34782002527276895],[121,-42,76,-0.3427485834536719],[121,-42,77,-0.33503321986694157],[121,-42,78,-0.33315878808528565],[121,-42,79,-0.3259136655217969],[121,-41,64,-0.2095962651358594],[121,-41,65,-0.10021774622439444],[121,-41,66,-0.12094040224764507],[121,-41,67,-0.21520663998206216],[121,-41,68,-0.34125103762376324],[121,-41,69,-0.403081376846976],[121,-41,70,-0.3951325676027792],[121,-41,71,-0.38654046299061173],[121,-41,72,-0.37944731589551056],[121,-41,73,-0.373726652629006],[121,-41,74,-0.36207226120586633],[121,-41,75,-0.34776564723117104],[121,-41,76,-0.3397543157060025],[121,-41,77,-0.3323283343712359],[121,-41,78,-0.33138019157347276],[121,-41,79,-0.32287233263199955],[121,-40,64,-0.19784926166290115],[121,-40,65,-0.07370152747676584],[121,-40,66,-0.06589382437742142],[121,-40,67,-0.16561257409252883],[121,-40,68,-0.3397950405866543],[121,-40,69,-0.3997733680669204],[121,-40,70,-0.3924878658745745],[121,-40,71,-0.3849667484556111],[121,-40,72,-0.37940378293507354],[121,-40,73,-0.37363599051003554],[121,-40,74,-0.3608779035749776],[121,-40,75,-0.3466393515509016],[121,-40,76,-0.337138283924424],[121,-40,77,-0.33090998544650035],[121,-40,78,-0.3285682663927962],[121,-40,79,-0.318628346890532],[121,-39,64,-0.1543377997730599],[121,-39,65,-0.039426328573756164],[121,-39,66,-0.005115024290518244],[121,-39,67,-0.10606663281462081],[121,-39,68,-0.31193691303111026],[121,-39,69,-0.39181583740281856],[121,-39,70,-0.3848539456845544],[121,-39,71,-0.3782676428181421],[121,-39,72,-0.3726062056376204],[121,-39,73,-0.36596186687498206],[121,-39,74,-0.34877472604034626],[121,-39,75,-0.3360388535365433],[121,-39,76,-0.32843720825723416],[121,-39,77,-0.3239977961869443],[121,-39,78,-0.3224219295086429],[121,-39,79,-0.3126220390557455],[121,-38,64,-0.04269945303631856],[121,-38,65,0.032879582589501355],[121,-38,66,0.023171596029203434],[121,-38,67,-0.1963137551862887],[121,-38,68,-0.39035237211560236],[121,-38,69,-0.3883573383468324],[121,-38,70,-0.38176697138102444],[121,-38,71,-0.37474299619486195],[121,-38,72,-0.3679004739687353],[121,-38,73,-0.3636185934442505],[121,-38,74,-0.34688968397752135],[121,-38,75,-0.33587391412465306],[121,-38,76,-0.32859915417436125],[121,-38,77,-0.3246131076588079],[121,-38,78,-0.3192676676667091],[121,-38,79,-0.31032933248322636],[121,-37,64,0.040664912850700285],[121,-37,65,0.07997418894085317],[121,-37,66,0.09843179342344466],[121,-37,67,-0.17015765665777743],[121,-37,68,-0.34743143418800493],[121,-37,69,-0.3878221414898404],[121,-37,70,-0.38242692560948116],[121,-37,71,-0.3756089894636856],[121,-37,72,-0.3684105716781311],[121,-37,73,-0.36472369606626387],[121,-37,74,-0.3511083778230327],[121,-37,75,-0.3383944961925077],[121,-37,76,-0.33225625260015507],[121,-37,77,-0.3284990647140831],[121,-37,78,-0.32146858102133585],[121,-37,79,-0.3125387697400146],[121,-36,64,0.05164835216199304],[121,-36,65,0.11246492756731907],[121,-36,66,0.11651585962061062],[121,-36,67,-0.17041224678238195],[121,-36,68,-0.3247359569979515],[121,-36,69,-0.38169283386864483],[121,-36,70,-0.37322381859322135],[121,-36,71,-0.36657158583722704],[121,-36,72,-0.3618716212598888],[121,-36,73,-0.35676858575267867],[121,-36,74,-0.34367437372940696],[121,-36,75,-0.33129228316983017],[121,-36,76,-0.3241693850893603],[121,-36,77,-0.3220294557428633],[121,-36,78,-0.3146548637016088],[121,-36,79,-0.3055897066273288],[121,-35,64,-0.022753687490339403],[121,-35,65,-0.026216911894085315],[121,-35,66,-0.14081493148553254],[121,-35,67,-0.39169834611731347],[121,-35,68,-0.38812832564772615],[121,-35,69,-0.38438581448390696],[121,-35,70,-0.3780383833327798],[121,-35,71,-0.3731264645920664],[121,-35,72,-0.3692173947347993],[121,-35,73,-0.3619221145594309],[121,-35,74,-0.3486425209786643],[121,-35,75,-0.3347249884582675],[121,-35,76,-0.3269842391380333],[121,-35,77,-0.3198185972749171],[121,-35,78,-0.3114185844845113],[121,-35,79,-0.30054514269218513],[121,-34,64,-0.013059226748669273],[121,-34,65,-0.030419672571742884],[121,-34,66,-0.1558078070704395],[121,-34,67,-0.38787537258864446],[121,-34,68,-0.38223993165214065],[121,-34,69,-0.37759200508058977],[121,-34,70,-0.37472271220128417],[121,-34,71,-0.3704821280124415],[121,-34,72,-0.3659446185141193],[121,-34,73,-0.35825375876786947],[121,-34,74,-0.34680177761980613],[121,-34,75,-0.3354198973448675],[121,-34,76,-0.3262629641912115],[121,-34,77,-0.3183987021239013],[121,-34,78,-0.3090045722405469],[121,-34,79,-0.2962740954569195],[121,-33,64,0.004395499799233482],[121,-33,65,-0.024528848294363303],[121,-33,66,-0.14159437025615407],[121,-33,67,-0.32526353155673954],[121,-33,68,-0.32115516947861783],[121,-33,69,-0.32110221394318816],[121,-33,70,-0.32330289216634556],[121,-33,71,-0.3236805072466309],[121,-33,72,-0.3227373884810918],[121,-33,73,-0.32170149706522483],[121,-33,74,-0.3156050471250783],[121,-33,75,-0.30756580789948534],[121,-33,76,-0.30344183810393216],[121,-33,77,-0.2978005947445113],[121,-33,78,-0.29363643872847445],[121,-33,79,-0.283306924805863],[121,-32,64,0.01367009938355046],[121,-32,65,-0.02179912511819787],[121,-32,66,-0.14735011483382895],[121,-32,67,-0.32018193216519747],[121,-32,68,-0.3174960803899685],[121,-32,69,-0.3179157440891368],[121,-32,70,-0.32008811537169723],[121,-32,71,-0.3221719286474426],[121,-32,72,-0.3206050910904935],[121,-32,73,-0.3200669182277133],[121,-32,74,-0.3127031144466765],[121,-32,75,-0.3047738383332468],[121,-32,76,-0.300154950537684],[121,-32,77,-0.29622666294529776],[121,-32,78,-0.2923524332848016],[121,-32,79,-0.28336503580231037],[121,-31,64,-0.01784955616175765],[121,-31,65,-0.04598782239868543],[121,-31,66,-0.09806973799776403],[121,-31,67,-0.22526736280566773],[121,-31,68,-0.29563280013403864],[121,-31,69,-0.31570494629145845],[121,-31,70,-0.3167748842877572],[121,-31,71,-0.31770654179747604],[121,-31,72,-0.3169358607972339],[121,-31,73,-0.31603993764012406],[121,-31,74,-0.30935912994082293],[121,-31,75,-0.301484606796066],[121,-31,76,-0.29764296453439737],[121,-31,77,-0.2949322788474919],[121,-31,78,-0.29073206232544574],[121,-31,79,-0.2812485857258114],[121,-30,64,0.019372262311514066],[121,-30,65,-0.035984594541374426],[121,-30,66,-0.07294501947469181],[121,-30,67,-0.16753432671519913],[121,-30,68,-0.27128634473760244],[121,-30,69,-0.30903418192632093],[121,-30,70,-0.3112631982469878],[121,-30,71,-0.31362646907245423],[121,-30,72,-0.3127095795246022],[121,-30,73,-0.3114882712427959],[121,-30,74,-0.3050353918609277],[121,-30,75,-0.2989095624963225],[121,-30,76,-0.29383580698734385],[121,-30,77,-0.291382510566926],[121,-30,78,-0.2886406928824904],[121,-30,79,-0.28057274338229277],[121,-29,64,0.10949508993716234],[121,-29,65,0.04454301834392299],[121,-29,66,0.015541469416077203],[121,-29,67,-0.06729313141446278],[121,-29,68,-0.2092459785639565],[121,-29,69,-0.307070056081827],[121,-29,70,-0.3103819904456133],[121,-29,71,-0.3101741264019383],[121,-29,72,-0.31226037727473743],[121,-29,73,-0.31241848025391505],[121,-29,74,-0.3068753414600918],[121,-29,75,-0.2988091531781563],[121,-29,76,-0.2936775222910761],[121,-29,77,-0.288706688739864],[121,-29,78,-0.28701035968651245],[121,-29,79,-0.2817744590344632],[121,-28,64,0.13232911146794607],[121,-28,65,0.06661319947342192],[121,-28,66,0.032903499672555125],[121,-28,67,-0.047608513173809874],[121,-28,68,-0.18280920555188918],[121,-28,69,-0.298559668143055],[121,-28,70,-0.3025216821962746],[121,-28,71,-0.30179668229901085],[121,-28,72,-0.30361781069890886],[121,-28,73,-0.30389754737896413],[121,-28,74,-0.2986092245117681],[121,-28,75,-0.29248866656589784],[121,-28,76,-0.2860976666981615],[121,-28,77,-0.2806794278744432],[121,-28,78,-0.27531296124325433],[121,-28,79,-0.2729204476050051],[121,-27,64,0.1466751443283021],[121,-27,65,0.14683282987398222],[121,-27,66,0.1436115741623875],[121,-27,67,0.08141392917460166],[121,-27,68,-0.023037401589007633],[121,-27,69,-0.1867690841666821],[121,-27,70,-0.28235062005183353],[121,-27,71,-0.2822797414296482],[121,-27,72,-0.28316023782459004],[121,-27,73,-0.2841854611063511],[121,-27,74,-0.2811419299096748],[121,-27,75,-0.2761278178157143],[121,-27,76,-0.27064635830065065],[121,-27,77,-0.2680504734794912],[121,-27,78,-0.265595540163617],[121,-27,79,-0.26782548442583953],[121,-26,64,0.19831220449663847],[121,-26,65,0.20034484992837745],[121,-26,66,0.1982296295564304],[121,-26,67,0.12935677214285002],[121,-26,68,0.030668933198293613],[121,-26,69,-0.16443125505337725],[121,-26,70,-0.27594599906518413],[121,-26,71,-0.276681457135126],[121,-26,72,-0.2796179934274161],[121,-26,73,-0.278456843709402],[121,-26,74,-0.2774696286683406],[121,-26,75,-0.2736625684786657],[121,-26,76,-0.26884651765572],[121,-26,77,-0.26462954320510024],[121,-26,78,-0.2616098745511548],[121,-26,79,-0.2675149666166343],[121,-25,64,0.20451505065106587],[121,-25,65,0.20411677039587708],[121,-25,66,0.20396238571897587],[121,-25,67,0.11101869798096664],[121,-25,68,0.027303229023569464],[121,-25,69,-0.1829026063030627],[121,-25,70,-0.2745502958998387],[121,-25,71,-0.27408637273219355],[121,-25,72,-0.2786670289252846],[121,-25,73,-0.27889880527806715],[121,-25,74,-0.2755214220595194],[121,-25,75,-0.27365075420009394],[121,-25,76,-0.26954278275153376],[121,-25,77,-0.2666321479778461],[121,-25,78,-0.2629312384421869],[121,-25,79,-0.26642581825342904],[121,-24,64,0.21204306314925112],[121,-24,65,0.21033880281513032],[121,-24,66,0.21259277748949906],[121,-24,67,0.09865738131255697],[121,-24,68,-0.00858542754459013],[121,-24,69,-0.17956071524367329],[121,-24,70,-0.2712550749496618],[121,-24,71,-0.2724374680205236],[121,-24,72,-0.2761333351650061],[121,-24,73,-0.27518743160467013],[121,-24,74,-0.27155749370663806],[121,-24,75,-0.2726128157171578],[121,-24,76,-0.2700019191757468],[121,-24,77,-0.26553070738700757],[121,-24,78,-0.2644431488973377],[121,-24,79,-0.2647264087410647],[121,-23,64,0.21284566626402684],[121,-23,65,0.2121090099028667],[121,-23,66,0.18393516375917618],[121,-23,67,0.02842371689057327],[121,-23,68,-0.10905745376411863],[121,-23,69,-0.23954365368583108],[121,-23,70,-0.27946872935641676],[121,-23,71,-0.2817450871909641],[121,-23,72,-0.28437717138507856],[121,-23,73,-0.28224643721187237],[121,-23,74,-0.2793562234771765],[121,-23,75,-0.28256268070130125],[121,-23,76,-0.2817563660404868],[121,-23,77,-0.27462302885449524],[121,-23,78,-0.2765474512896684],[121,-23,79,-0.2764128310482518],[121,-22,64,0.22148736331887403],[121,-22,65,0.2244282734576511],[121,-22,66,0.168021461486629],[121,-22,67,0.020408399950465728],[121,-22,68,-0.13836099976612629],[121,-22,69,-0.24879348749721897],[121,-22,70,-0.27566047053561077],[121,-22,71,-0.2793632617382759],[121,-22,72,-0.2807819839735522],[121,-22,73,-0.27837680647091745],[121,-22,74,-0.2785980625771227],[121,-22,75,-0.2810723465859168],[121,-22,76,-0.278588194879866],[121,-22,77,-0.2740578791058799],[121,-22,78,-0.2760481946536533],[121,-22,79,-0.27610723606654536],[121,-21,64,0.22541908040870473],[121,-21,65,0.23011502202648287],[121,-21,66,0.2335073914196648],[121,-21,67,0.08388848429446605],[121,-21,68,-0.06408176790047257],[121,-21,69,-0.17520240832429668],[121,-21,70,-0.25043610388822074],[121,-21,71,-0.28095002099600286],[121,-21,72,-0.2817800898751167],[121,-21,73,-0.28171974100275116],[121,-21,74,-0.2833116265207023],[121,-21,75,-0.2810404665984372],[121,-21,76,-0.27796093906561203],[121,-21,77,-0.278307388932419],[121,-21,78,-0.2779910072065826],[121,-21,79,-0.2797459727817808],[121,-20,64,0.217401743915149],[121,-20,65,0.22215270224279443],[121,-20,66,0.21294200281403408],[121,-20,67,0.05612474904805248],[121,-20,68,-0.052496903334312645],[121,-20,69,-0.19262913622753255],[121,-20,70,-0.24005431218491696],[121,-20,71,-0.2740044663782757],[121,-20,72,-0.276707761450395],[121,-20,73,-0.2778436755303752],[121,-20,74,-0.2789992882003194],[121,-20,75,-0.27605892841944635],[121,-20,76,-0.27385335278074374],[121,-20,77,-0.2731297434820449],[121,-20,78,-0.27361322444427516],[121,-20,79,-0.2759913483077875],[121,-19,64,0.21370822225656516],[121,-19,65,0.2195953782459007],[121,-19,66,0.22316196478847125],[121,-19,67,0.15649712771221586],[121,-19,68,0.06873820769636624],[121,-19,69,-0.06357292479866677],[121,-19,70,-0.10798663304869657],[121,-19,71,-0.18657768148870424],[121,-19,72,-0.239540486923407],[121,-19,73,-0.2688457093681689],[121,-19,74,-0.26871337508744675],[121,-19,75,-0.2673307545714838],[121,-19,76,-0.26606076806975004],[121,-19,77,-0.26294071152900494],[121,-19,78,-0.2639451920018312],[121,-19,79,-0.26572114133167424],[121,-18,64,0.2025705607143027],[121,-18,65,0.2079607632817599],[121,-18,66,0.20919126272864652],[121,-18,67,0.15657327478769228],[121,-18,68,0.06511697017281926],[121,-18,69,-0.045071774394309816],[121,-18,70,-0.08606719328881951],[121,-18,71,-0.15099573287909374],[121,-18,72,-0.1891997858511296],[121,-18,73,-0.265343598939603],[121,-18,74,-0.2651020483915892],[121,-18,75,-0.26293631660672406],[121,-18,76,-0.26386332962766607],[121,-18,77,-0.2594294667539124],[121,-18,78,-0.26161602307634185],[121,-18,79,-0.2636911590402785],[121,-17,64,0.19801203336550008],[121,-17,65,0.20078815081220347],[121,-17,66,0.20232337749286142],[121,-17,67,0.16659389059769963],[121,-17,68,0.05334938726224664],[121,-17,69,-0.019669945838571734],[121,-17,70,-0.07552007323756235],[121,-17,71,-0.11113290209347193],[121,-17,72,-0.14783087298153488],[121,-17,73,-0.24891965115430922],[121,-17,74,-0.2633658324758873],[121,-17,75,-0.2629895995175421],[121,-17,76,-0.26275964592733103],[121,-17,77,-0.26130391861617347],[121,-17,78,-0.2606615861058995],[121,-17,79,-0.2608601961903115],[121,-16,64,0.2007549677035152],[121,-16,65,0.2060570803723561],[121,-16,66,0.20685703256744126],[121,-16,67,0.19855250305035443],[121,-16,68,0.08536389114759993],[121,-16,69,0.04602940781316894],[121,-16,70,0.018225168702866112],[121,-16,71,0.010815235681819996],[121,-16,72,-0.0174667910521423],[121,-16,73,-0.13741358031387002],[121,-16,74,-0.2585769324153284],[121,-16,75,-0.25904409441845344],[121,-16,76,-0.2607676483694181],[121,-16,77,-0.2589814424225605],[121,-16,78,-0.2598101413241063],[121,-16,79,-0.2588161077831725],[121,-15,64,0.2022576010142465],[121,-15,65,0.20625384393941906],[121,-15,66,0.20870495578171472],[121,-15,67,0.18045026970877381],[121,-15,68,0.09641233599876084],[121,-15,69,0.06881341252187279],[121,-15,70,0.05603178835035455],[121,-15,71,0.03382069381613784],[121,-15,72,0.004130520970796914],[121,-15,73,-0.14689270705272417],[121,-15,74,-0.259825604289693],[121,-15,75,-0.2618431936881186],[121,-15,76,-0.26518161923349365],[121,-15,77,-0.26262673832736405],[121,-15,78,-0.26192487572374834],[121,-15,79,-0.2592453120754408],[121,-14,64,0.09325599220271918],[121,-14,65,0.09593999097972757],[121,-14,66,0.0994577824824551],[121,-14,67,0.05570527710306539],[121,-14,68,0.018305666411523674],[121,-14,69,-0.01211262455405665],[121,-14,70,-0.009164083302709791],[121,-14,71,-0.03443615321996199],[121,-14,72,-0.05429659251024199],[121,-14,73,-0.17125613925926692],[121,-14,74,-0.25798447692093873],[121,-14,75,-0.26046418428109763],[121,-14,76,-0.2615508422004642],[121,-14,77,-0.259938658188769],[121,-14,78,-0.2576953614492156],[121,-14,79,-0.25426451118999915],[121,-13,64,0.09034958592446457],[121,-13,65,0.09335951637072026],[121,-13,66,0.09966501564170764],[121,-13,67,0.09903053173331514],[121,-13,68,0.07490801471193442],[121,-13,69,0.033277260610036496],[121,-13,70,0.03896856090254819],[121,-13,71,0.02727261401640596],[121,-13,72,-0.0029681814870394507],[121,-13,73,-0.11171031152200853],[121,-13,74,-0.257455749614576],[121,-13,75,-0.2614351390849928],[121,-13,76,-0.2600361568000866],[121,-13,77,-0.2601312221709024],[121,-13,78,-0.25754371053416925],[121,-13,79,-0.2546406156634458],[121,-12,64,0.07765279995599234],[121,-12,65,0.08032561567364221],[121,-12,66,0.08363023123597266],[121,-12,67,0.08900228079408239],[121,-12,68,0.0608098141057323],[121,-12,69,0.0355701822074434],[121,-12,70,0.036845309133518106],[121,-12,71,0.027340662604029148],[121,-12,72,-0.0011913586145506638],[121,-12,73,-0.10770059296566109],[121,-12,74,-0.2570923507466635],[121,-12,75,-0.2581111378149132],[121,-12,76,-0.2576184048975551],[121,-12,77,-0.2543899930710055],[121,-12,78,-0.25164444787395923],[121,-12,79,-0.25035201250288736],[121,-11,64,0.07380001371913725],[121,-11,65,0.07756190059050425],[121,-11,66,0.07844049214909168],[121,-11,67,0.08455574151194295],[121,-11,68,0.08715297687893639],[121,-11,69,0.08668095151486373],[121,-11,70,0.09123942027231696],[121,-11,71,0.08301206465821365],[121,-11,72,0.025697402547950193],[121,-11,73,-0.08576978063572599],[121,-11,74,-0.23088064781253015],[121,-11,75,-0.22957155583239053],[121,-11,76,-0.22889501524728473],[121,-11,77,-0.2273027922631507],[121,-11,78,-0.22570272724486684],[121,-11,79,-0.22241050098822399],[121,-10,64,0.06241539283030392],[121,-10,65,0.0685488221271358],[121,-10,66,0.06642454200596498],[121,-10,67,0.07242663825126038],[121,-10,68,0.0738631747992004],[121,-10,69,0.07464721762336124],[121,-10,70,0.0802511335542282],[121,-10,71,0.06846920474420712],[121,-10,72,0.015974308165517315],[121,-10,73,-0.1016076632176434],[121,-10,74,-0.2229672239617984],[121,-10,75,-0.2206314891742441],[121,-10,76,-0.22002432190392318],[121,-10,77,-0.22070713652769855],[121,-10,78,-0.21710265114944385],[121,-10,79,-0.21548771929826],[121,-9,64,0.06981285278885688],[121,-9,65,0.07438615969898765],[121,-9,66,0.07546806058520597],[121,-9,67,0.07799100667281772],[121,-9,68,0.07749340091008076],[121,-9,69,0.07416674522843046],[121,-9,70,0.07808091494532224],[121,-9,71,0.05086968875492423],[121,-9,72,9.97782507346584E-4],[121,-9,73,-0.10411639169158009],[121,-9,74,-0.21745259898667407],[121,-9,75,-0.21561628565510582],[121,-9,76,-0.21454387503396818],[121,-9,77,-0.21391950004472135],[121,-9,78,-0.2123983512738323],[121,-9,79,-0.20829731323933626],[121,-8,64,0.07185947684982696],[121,-8,65,0.07524033182745099],[121,-8,66,0.07911670651999639],[121,-8,67,0.08061587076036933],[121,-8,68,0.07975496276583272],[121,-8,69,0.07071823697446736],[121,-8,70,0.04266988780209713],[121,-8,71,-0.0010443013591364958],[121,-8,72,-0.06619628586623366],[121,-8,73,-0.152060503418898],[121,-8,74,-0.21084278692536018],[121,-8,75,-0.2105433825224675],[121,-8,76,-0.20895261834281145],[121,-8,77,-0.21193004211175281],[121,-8,78,-0.2099302942669848],[121,-8,79,-0.20507775006591836],[121,-7,64,0.07136322241628879],[121,-7,65,0.07473586380247577],[121,-7,66,0.07782862619757773],[121,-7,67,0.07801519772868143],[121,-7,68,0.07802936958694233],[121,-7,69,0.06778723558386193],[121,-7,70,0.030061553712432243],[121,-7,71,-0.004687808421482198],[121,-7,72,-0.08183728218267106],[121,-7,73,-0.15448047470305215],[121,-7,74,-0.20382219320754685],[121,-7,75,-0.2027673719476881],[121,-7,76,-0.20358690344629302],[121,-7,77,-0.2075953435850836],[121,-7,78,-0.20806084402787908],[121,-7,79,-0.20107853147797006],[121,-6,64,0.06742093369740473],[121,-6,65,0.0713853358761649],[121,-6,66,0.07414521473960037],[121,-6,67,0.07497228477952596],[121,-6,68,0.07709855780193645],[121,-6,69,0.07323856647795046],[121,-6,70,0.022853738916732286],[121,-6,71,-0.029389183399601004],[121,-6,72,-0.09872305582139541],[121,-6,73,-0.17379825506942612],[121,-6,74,-0.19922243209057683],[121,-6,75,-0.19924947647110583],[121,-6,76,-0.19864978997546198],[121,-6,77,-0.20314731190602986],[121,-6,78,-0.2048169111743692],[121,-6,79,-0.19874422875492673],[121,-5,64,0.06399830438791904],[121,-5,65,0.0680200357969972],[121,-5,66,0.07028873428277574],[121,-5,67,0.07207444765421338],[121,-5,68,0.07557278668038932],[121,-5,69,0.08238609024952928],[121,-5,70,0.0763132808244984],[121,-5,71,0.03983279016335195],[121,-5,72,0.02211733833548049],[121,-5,73,-0.0025260473064656896],[121,-5,74,-0.0550506823299034],[121,-5,75,-0.19113930364518458],[121,-5,76,-0.20148041906821287],[121,-5,77,-0.20576660573012684],[121,-5,78,-0.2064274148548252],[121,-5,79,-0.20393787001062832],[121,-4,64,0.05130398634696276],[121,-4,65,0.04343243397387597],[121,-4,66,0.043879856822704205],[121,-4,67,0.05966428914714793],[121,-4,68,0.06353100164993611],[121,-4,69,0.0726389068728616],[121,-4,70,0.067430115176668],[121,-4,71,0.02505193782113946],[121,-4,72,-5.543041073747534E-4],[121,-4,73,-0.023345642462505256],[121,-4,74,-0.06716387486435324],[121,-4,75,-0.20359770634459393],[121,-4,76,-0.20214114205778208],[121,-4,77,-0.20439618078952748],[121,-4,78,-0.2074753769476996],[121,-4,79,-0.2041236247524295],[121,-3,64,0.04285800747709723],[121,-3,65,0.04676747265113045],[121,-3,66,0.0498777181741052],[121,-3,67,0.05103335168246174],[121,-3,68,0.05697083424301205],[121,-3,69,0.06662337454066483],[121,-3,70,0.0793358051751089],[121,-3,71,0.07435484951484048],[121,-3,72,0.0486396035933708],[121,-3,73,0.0271563906543541],[121,-3,74,-0.019416091051077028],[121,-3,75,-0.18211926269962603],[121,-3,76,-0.20479518571379535],[121,-3,77,-0.2086106836578353],[121,-3,78,-0.21205005820830142],[121,-3,79,-0.206537898850773],[121,-2,64,0.03454638607687253],[121,-2,65,0.03518875067892516],[121,-2,66,0.04424831692222968],[121,-2,67,0.045303407639323855],[121,-2,68,0.05123400497319919],[121,-2,69,0.06024427447060386],[121,-2,70,0.07538545059557027],[121,-2,71,0.059124474267171906],[121,-2,72,0.04445322199020005],[121,-2,73,0.016273668062887714],[121,-2,74,-0.02350971723336609],[121,-2,75,-0.1731371587650095],[121,-2,76,-0.20176467587702623],[121,-2,77,-0.20547749500995494],[121,-2,78,-0.2086133672784682],[121,-2,79,-0.20540588685090133],[121,-1,64,0.02938901029651062],[121,-1,65,0.013070989682350764],[121,-1,66,0.016598934521297765],[121,-1,67,0.04476339312347266],[121,-1,68,0.05154389185421362],[121,-1,69,0.0620311494810785],[121,-1,70,0.0748949199833076],[121,-1,71,0.0873306645989686],[121,-1,72,0.09193390355664763],[121,-1,73,0.038684842075248416],[121,-1,74,0.005589679472593506],[121,-1,75,-0.1508174551325197],[121,-1,76,-0.20031402002428925],[121,-1,77,-0.2029138279064346],[121,-1,78,-0.20426677493203094],[121,-1,79,-0.20011886431889012],[121,0,64,-0.03120027080651719],[121,0,65,-0.0273640719799432],[121,0,66,-0.025815138265925353],[121,0,67,-0.03338002911502469],[121,0,68,-0.044193073760164125],[121,0,69,-0.04818389370081179],[121,0,70,-0.055808686047888106],[121,0,71,-0.06377313049386948],[121,0,72,-0.06853172495776533],[121,0,73,-0.07561721455924189],[121,0,74,-0.08002653030403743],[121,0,75,-0.08870725856146626],[121,0,76,-0.09466261901637901],[121,0,77,-0.09566956333975565],[121,0,78,-0.09733009991658473],[121,0,79,-0.09586848553266625],[121,1,64,-0.028972257031071785],[121,1,65,-0.026634498476918456],[121,1,66,-0.02621660863240044],[121,1,67,-0.03336056786859372],[121,1,68,-0.04238611057187634],[121,1,69,-0.04773009503413145],[121,1,70,-0.05452075545368806],[121,1,71,-0.06343969668202852],[121,1,72,-0.06950757989627886],[121,1,73,-0.07516857901204753],[121,1,74,-0.0800165980644969],[121,1,75,-0.08912145277388812],[121,1,76,-0.09450213500587132],[121,1,77,-0.09436022922062184],[121,1,78,-0.09495459860820521],[121,1,79,-0.0937651345189214],[121,2,64,-0.028697824636224584],[121,2,65,-0.025834230994627866],[121,2,66,-0.027051761184389816],[121,2,67,-0.03143787602064223],[121,2,68,-0.04023366560579292],[121,2,69,-0.04541789255104531],[121,2,70,-0.05366565049837943],[121,2,71,-0.06156812321320476],[121,2,72,-0.06791366960303595],[121,2,73,-0.07409004119930737],[121,2,74,-0.08048119849279509],[121,2,75,-0.08698538225125615],[121,2,76,-0.09179615197469285],[121,2,77,-0.09333714824409425],[121,2,78,-0.09239194547834072],[121,2,79,-0.09231458668436848],[121,3,64,-0.02936790371918664],[121,3,65,-0.025108153471542743],[121,3,66,-0.025475287064055996],[121,3,67,-0.03045050680096348],[121,3,68,-0.03838840858559016],[121,3,69,-0.045479395340887935],[121,3,70,-0.05478478068470982],[121,3,71,-0.06158651899479414],[121,3,72,-0.06487538224988403],[121,3,73,-0.0727103244026823],[121,3,74,-0.07901424233583394],[121,3,75,-0.08562767437603572],[121,3,76,-0.08787649081857232],[121,3,77,-0.09000289455510377],[121,3,78,-0.09192547133773966],[121,3,79,-0.08899175681703805],[121,4,64,-0.030255786757621195],[121,4,65,-0.027258309567843392],[121,4,66,-0.028992615266655766],[121,4,67,-0.03154060913093473],[121,4,68,-0.03788007419437195],[121,4,69,-0.04784829924017921],[121,4,70,-0.05395912008090606],[121,4,71,-0.06317924172080419],[121,4,72,-0.06694972831668243],[121,4,73,-0.07164619934592353],[121,4,74,-0.07778456239681411],[121,4,75,-0.08388292719483306],[121,4,76,-0.08721219661635984],[121,4,77,-0.08738290237329871],[121,4,78,-0.08826092465423821],[121,4,79,-0.08364282242342694],[121,5,64,-0.030658968517255497],[121,5,65,-0.028275242396344255],[121,5,66,-0.029049234291131876],[121,5,67,-0.030894079268818708],[121,5,68,-0.03651410448355774],[121,5,69,-0.046429924847078724],[121,5,70,-0.0555669913215162],[121,5,71,-0.06365898659367601],[121,5,72,-0.06789402554447704],[121,5,73,-0.07164353298355691],[121,5,74,-0.07638788795969753],[121,5,75,-0.08418851623365767],[121,5,76,-0.08776324566723165],[121,5,77,-0.08662190813820297],[121,5,78,-0.08582243126181038],[121,5,79,-0.08073628704392506],[121,6,64,-0.030398441830331843],[121,6,65,-0.028865302508333912],[121,6,66,-0.02914838943908661],[121,6,67,-0.03205660790104335],[121,6,68,-0.036157152362078726],[121,6,69,-0.044405268642842485],[121,6,70,-0.05365636315965483],[121,6,71,-0.06275614823179836],[121,6,72,-0.06857414907812748],[121,6,73,-0.0737517213434668],[121,6,74,-0.07750912420515177],[121,6,75,-0.08227245869932884],[121,6,76,-0.08465234753981933],[121,6,77,-0.08214001629317756],[121,6,78,-0.08184177718990704],[121,6,79,-0.07946781344310475],[121,7,64,-0.027044869301451252],[121,7,65,-0.028282535927127123],[121,7,66,-0.03044981703230573],[121,7,67,-0.03423979687079126],[121,7,68,-0.038326297837839335],[121,7,69,-0.04729445533525886],[121,7,70,-0.05492121601343701],[121,7,71,-0.06247308766246906],[121,7,72,-0.06575425646019248],[121,7,73,-0.07161783455867728],[121,7,74,-0.07587535644085747],[121,7,75,-0.07988355996409521],[121,7,76,-0.08081686770741771],[121,7,77,-0.07841197548977075],[121,7,78,-0.07894500633215798],[121,7,79,-0.07484734153985573],[121,8,64,-0.02218882641076378],[121,8,65,-0.024159470599331878],[121,8,66,-0.027851859911326743],[121,8,67,-0.030283581561676154],[121,8,68,-0.0354379616568499],[121,8,69,-0.042731328759680096],[121,8,70,-0.04594478675936514],[121,8,71,-0.05062544919798134],[121,8,72,-0.05401172036206235],[121,8,73,-0.05872988918794832],[121,8,74,-0.06210151467213851],[121,8,75,-0.06771099916399406],[121,8,76,-0.07098254923691609],[121,8,77,-0.06553807533489342],[121,8,78,-0.06332194324738215],[121,8,79,-0.06211720965762864],[121,9,64,-0.012286403176291483],[121,9,65,-0.023034349951063404],[121,9,66,-0.030433161268879877],[121,9,67,-0.03721784164740513],[121,9,68,-0.04480954023669628],[121,9,69,-0.0512440555694795],[121,9,70,-0.05472588707259404],[121,9,71,-0.05544662999943989],[121,9,72,-0.05712420001826046],[121,9,73,-0.061917481664637716],[121,9,74,-0.065378127203573],[121,9,75,-0.07141150484837272],[121,9,76,-0.07375369273690122],[121,9,77,-0.06615563543984848],[121,9,78,-0.05811210015428955],[121,9,79,-0.051084531154588206],[121,10,64,-0.01320428341039867],[121,10,65,-0.022008363871123204],[121,10,66,-0.029429587135603424],[121,10,67,-0.03737140233512634],[121,10,68,-0.04426137889796675],[121,10,69,-0.050194930189064235],[121,10,70,-0.05653226539607667],[121,10,71,-0.055938312669560036],[121,10,72,-0.05479231315330661],[121,10,73,-0.061941180748511224],[121,10,74,-0.06479062467918703],[121,10,75,-0.07080995222812653],[121,10,76,-0.07134257017082928],[121,10,77,-0.06443665686957516],[121,10,78,-0.0571178800931703],[121,10,79,-0.04797363326656223],[121,11,64,-0.015185044823284338],[121,11,65,-0.022080504743057477],[121,11,66,-0.0293196190982761],[121,11,67,-0.03648097935598564],[121,11,68,-0.044501361137529005],[121,11,69,-0.05076646406336338],[121,11,70,-0.056884739593572015],[121,11,71,-0.05684659252485619],[121,11,72,-0.05342779432173912],[121,11,73,-0.05975733651340409],[121,11,74,-0.06191280848759642],[121,11,75,-0.06570345061075367],[121,11,76,-0.06948806500724106],[121,11,77,-0.061686183945894604],[121,11,78,-0.05585140587161942],[121,11,79,-0.04665625537207106],[121,12,64,-0.015535142999516943],[121,12,65,-0.018766693896052927],[121,12,66,-0.02716951331541996],[121,12,67,-0.036877200328855095],[121,12,68,-0.0439720475929658],[121,12,69,-0.051175867834198335],[121,12,70,-0.059154208405752584],[121,12,71,-0.060712254625712544],[121,12,72,-0.05626533800242638],[121,12,73,-0.05975842492957442],[121,12,74,-0.06369330908779697],[121,12,75,-0.06654655231239708],[121,12,76,-0.06890564702577058],[121,12,77,-0.06360826185799473],[121,12,78,-0.057713755605300454],[121,12,79,-0.048030748992147654],[121,13,64,-0.022473239489972957],[121,13,65,-0.019058255278698172],[121,13,66,-0.022882178171140966],[121,13,67,-0.027847890785176146],[121,13,68,-0.0316158231694659],[121,13,69,-0.03805973310978955],[121,13,70,-0.045905023207316514],[121,13,71,-0.048333447248071704],[121,13,72,-0.04300462777221667],[121,13,73,-0.04516742891437117],[121,13,74,-0.047869578307690105],[121,13,75,-0.05248730241987411],[121,13,76,-0.05924282423442967],[121,13,77,-0.061298920366517864],[121,13,78,-0.05912142301332389],[121,13,79,-0.05653475568763523],[121,14,64,-0.021005826365464636],[121,14,65,-0.020402189720250707],[121,14,66,-0.024365345783093684],[121,14,67,-0.028230739426702484],[121,14,68,-0.031245436457225828],[121,14,69,-0.03625363376031669],[121,14,70,-0.04240047836069534],[121,14,71,-0.04439704809616446],[121,14,72,-0.039493290206942186],[121,14,73,-0.04169649062718159],[121,14,74,-0.04446243600616798],[121,14,75,-0.04942759299291058],[121,14,76,-0.05677108061291848],[121,14,77,-0.056930640561883],[121,14,78,-0.05918890798048346],[121,14,79,-0.05733541771883091],[121,15,64,-0.021444259287541595],[121,15,65,-0.021269113267262163],[121,15,66,-0.0244836958282465],[121,15,67,-0.029583149363468036],[121,15,68,-0.03065220014974543],[121,15,69,-0.03556294485334904],[121,15,70,-0.03999048550368335],[121,15,71,-0.04038160486350592],[121,15,72,-0.03876034920554876],[121,15,73,-0.04057219295893996],[121,15,74,-0.046250775744559575],[121,15,75,-0.04887144068219973],[121,15,76,-0.05333728730161931],[121,15,77,-0.054925248060905235],[121,15,78,-0.05787207902925236],[121,15,79,-0.05716736255453783],[121,16,64,-0.026569097911370715],[121,16,65,-0.022736539186814037],[121,16,66,-0.023897795401676553],[121,16,67,-0.025518727421086906],[121,16,68,-0.026804814170311747],[121,16,69,-0.028864797347922827],[121,16,70,-0.03092224872277935],[121,16,71,-0.030855466998137376],[121,16,72,-0.03213687937435997],[121,16,73,-0.03227820256280706],[121,16,74,-0.03794725200599314],[121,16,75,-0.04305521990755065],[121,16,76,-0.04275608045874418],[121,16,77,-0.04475724140700829],[121,16,78,-0.045932619389197626],[121,16,79,-0.04413717198707835],[121,17,64,-0.028472149579132952],[121,17,65,-0.023730260786312574],[121,17,66,-0.024178644433064694],[121,17,67,-0.02590448010851032],[121,17,68,-0.02494364015072434],[121,17,69,-0.02612011746191134],[121,17,70,-0.02852545693478903],[121,17,71,-0.029446021338783462],[121,17,72,-0.03300394623029654],[121,17,73,-0.03517863857496284],[121,17,74,-0.037943423922851355],[121,17,75,-0.043150519190901224],[121,17,76,-0.04258322572958091],[121,17,77,-0.043366070231282416],[121,17,78,-0.04868437737805614],[121,17,79,-0.04619294519501593],[121,18,64,-0.02740791997360638],[121,18,65,-0.02564919089094031],[121,18,66,-0.025299145065646927],[121,18,67,-0.024976109696242532],[121,18,68,-0.026638928077645257],[121,18,69,-0.025755018460060036],[121,18,70,-0.02677586068729984],[121,18,71,-0.029056106500036843],[121,18,72,-0.033504775336001685],[121,18,73,-0.03726836143700882],[121,18,74,-0.040548022134547904],[121,18,75,-0.04294839491737032],[121,18,76,-0.04054740597530722],[121,18,77,-0.04224792532239825],[121,18,78,-0.04927948471408419],[121,18,79,-0.049968420236892575],[121,19,64,-0.028896096650645006],[121,19,65,-0.025465629742108142],[121,19,66,-0.021770479879508392],[121,19,67,-0.02546535837071706],[121,19,68,-0.02819523067332827],[121,19,69,-0.025802276381282768],[121,19,70,-0.0273835992239507],[121,19,71,-0.029701116947154438],[121,19,72,-0.03485184382493066],[121,19,73,-0.03933028474752301],[121,19,74,-0.041459282048133456],[121,19,75,-0.04160972789363793],[121,19,76,-0.04141330636670672],[121,19,77,-0.043144578497021496],[121,19,78,-0.04747010933917416],[121,19,79,-0.049326314390682746],[121,20,64,-0.02843798823950215],[121,20,65,-0.02472255185190969],[121,20,66,-0.022174927587362114],[121,20,67,-0.029036414318979825],[121,20,68,-0.030325873130816333],[121,20,69,-0.030528937313102772],[121,20,70,-0.03134428241880452],[121,20,71,-0.0332450550734574],[121,20,72,-0.04204243507765362],[121,20,73,-0.044345556966690736],[121,20,74,-0.04669912660424139],[121,20,75,-0.04509484312117319],[121,20,76,-0.0449611504285157],[121,20,77,-0.05005419208116593],[121,20,78,-0.05071836835297759],[121,20,79,-0.05195788869848006],[121,21,64,-0.01861947771185543],[121,21,65,-0.01195466280464369],[121,21,66,-0.010039987332129213],[121,21,67,-0.015745842527265047],[121,21,68,-0.019177064244271375],[121,21,69,-0.022308155486317538],[121,21,70,-0.02877017886017097],[121,21,71,-0.03674744996226052],[121,21,72,-0.05105494592400747],[121,21,73,-0.058516032197098444],[121,21,74,-0.05933127751119251],[121,21,75,-0.05878138449026708],[121,21,76,-0.06061245741035319],[121,21,77,-0.06320799787792672],[121,21,78,-0.06160581687342867],[121,21,79,-0.06276794249387405],[121,22,64,-0.01920468391666419],[121,22,65,-0.01300530338337938],[121,22,66,-0.011885930949784212],[121,22,67,-0.013658218812576173],[121,22,68,-0.01962464009161516],[121,22,69,-0.02165476434177835],[121,22,70,-0.030112351481490246],[121,22,71,-0.03937509931117608],[121,22,72,-0.051060805054490316],[121,22,73,-0.0578721003755841],[121,22,74,-0.058774001740539095],[121,22,75,-0.05908500222840532],[121,22,76,-0.06072920359162412],[121,22,77,-0.06400744814112817],[121,22,78,-0.06255724904473084],[121,22,79,-0.06262326441401254],[121,23,64,-0.019011790850820498],[121,23,65,-0.014509027299237476],[121,23,66,-0.01289206888385519],[121,23,67,-0.015037327195834727],[121,23,68,-0.021196282494795465],[121,23,69,-0.02162055897888515],[121,23,70,-0.031760633387418274],[121,23,71,-0.03976967123090601],[121,23,72,-0.051443188952105395],[121,23,73,-0.056546276599307777],[121,23,74,-0.05631672528274109],[121,23,75,-0.05898420721384201],[121,23,76,-0.05848174977442447],[121,23,77,-0.06253121326127045],[121,23,78,-0.06482092404755002],[121,23,79,-0.06337005138293661],[121,24,64,-0.012271966344451019],[121,24,65,-0.011263946034343969],[121,24,66,-0.007183078996079201],[121,24,67,-0.006472464697704461],[121,24,68,-0.013419821366145529],[121,24,69,-0.016830667983281478],[121,24,70,-0.024159334713731356],[121,24,71,-0.034126036288211425],[121,24,72,-0.043285773323734414],[121,24,73,-0.04619093235983379],[121,24,74,-0.045498024912501836],[121,24,75,-0.0458946063278121],[121,24,76,-0.04856564917080117],[121,24,77,-0.05398837785420882],[121,24,78,-0.055429025504572835],[121,24,79,-0.05524858081067836],[121,25,64,-0.00563045616171251],[121,25,65,-0.009792148563983194],[121,25,66,-0.011058175872296128],[121,25,67,-0.013656534529470049],[121,25,68,-0.024810968984817633],[121,25,69,-0.03181819753683901],[121,25,70,-0.035020535526809726],[121,25,71,-0.03806366735524949],[121,25,72,-0.0359140010050617],[121,25,73,-0.035305676876813755],[121,25,74,-0.035532453626614544],[121,25,75,-0.03473914951768839],[121,25,76,-0.04210708467525509],[121,25,77,-0.04867221680586056],[121,25,78,-0.051190763832997754],[121,25,79,-0.053450285900457695],[121,26,64,-0.003746169602785676],[121,26,65,-0.007338609209817187],[121,26,66,-0.01141119140460442],[121,26,67,-0.01474515261285736],[121,26,68,-0.02390006833652647],[121,26,69,-0.03468017719641445],[121,26,70,-0.03759821594730603],[121,26,71,-0.03850552641073626],[121,26,72,-0.03368775752080852],[121,26,73,-0.03235197342812479],[121,26,74,-0.03383140731627747],[121,26,75,-0.0340292755895734],[121,26,76,-0.04123815083328965],[121,26,77,-0.04821989476815995],[121,26,78,-0.049739884814326674],[121,26,79,-0.0519194540145049],[121,27,64,-0.00151427995947076],[121,27,65,-0.005425305701083183],[121,27,66,-0.012530439349947187],[121,27,67,-0.01927293850390649],[121,27,68,-0.0273769261088207],[121,27,69,-0.03844796875522108],[121,27,70,-0.03890648981001442],[121,27,71,-0.03722499790883142],[121,27,72,-0.03285273629164891],[121,27,73,-0.03266987197304401],[121,27,74,-0.03419652567995468],[121,27,75,-0.03424200007600997],[121,27,76,-0.04125994803560219],[121,27,77,-0.046779664838312446],[121,27,78,-0.05048521932342365],[121,27,79,-0.05311092533978004],[121,28,64,-0.002463576781650989],[121,28,65,-0.00802431119733521],[121,28,66,-0.015463792353259759],[121,28,67,-0.02452739322522063],[121,28,68,-0.033673322681563686],[121,28,69,-0.04283307625268329],[121,28,70,-0.046309967994676265],[121,28,71,-0.04249283420012041],[121,28,72,-0.040659129538469146],[121,28,73,-0.04160840627654119],[121,28,74,-0.04250029379913978],[121,28,75,-0.04135850955663348],[121,28,76,-0.04702504510876526],[121,28,77,-0.05333537765236554],[121,28,78,-0.05449794890262841],[121,28,79,-0.05865659336831089],[121,29,64,-0.004282983533337531],[121,29,65,-0.009657055947637577],[121,29,66,-0.016935928214956736],[121,29,67,-0.02748912328965078],[121,29,68,-0.03450615400280424],[121,29,69,-0.04401520867316858],[121,29,70,-0.04780978977349783],[121,29,71,-0.047675802115193205],[121,29,72,-0.04509098197033079],[121,29,73,-0.04671710845351529],[121,29,74,-0.04763796592879699],[121,29,75,-0.04568563213947574],[121,29,76,-0.05035740281648318],[121,29,77,-0.052159517847236936],[121,29,78,-0.054138587923654],[121,29,79,-0.05452374887397066],[121,30,64,-0.0028790024792816893],[121,30,65,-0.008829548006850874],[121,30,66,-0.01462362640805423],[121,30,67,-0.024891183227361516],[121,30,68,-0.03393481403642434],[121,30,69,-0.04346173613661791],[121,30,70,-0.04973160912072361],[121,30,71,-0.051325495314743216],[121,30,72,-0.04841846007020269],[121,30,73,-0.05158232899179627],[121,30,74,-0.052435119119099025],[121,30,75,-0.05112728808875486],[121,30,76,-0.05203463113209983],[121,30,77,-0.0509731040496704],[121,30,78,-0.052226109914566166],[121,30,79,-0.055395028507297966],[121,31,64,-0.0015764028076429293],[121,31,65,-0.010405093776473862],[121,31,66,-0.01686225517701051],[121,31,67,-0.024978468486279715],[121,31,68,-0.0346244531672483],[121,31,69,-0.04338770557673287],[121,31,70,-0.050947242936000225],[121,31,71,-0.051353802738994675],[121,31,72,-0.05006306816776679],[121,31,73,-0.05153764270543655],[121,31,74,-0.05298565136450664],[121,31,75,-0.054883653178780384],[121,31,76,-0.05229091517499673],[121,31,77,-0.053634703774353504],[121,31,78,-0.05168110006383125],[121,31,79,-0.055197957990127444],[121,32,64,0.005930540642548443],[121,32,65,-0.0033880073157057655],[121,32,66,-0.007541588524909326],[121,32,67,-0.01322962635230418],[121,32,68,-0.02278304406569523],[121,32,69,-0.029439220918203807],[121,32,70,-0.03945631822429023],[121,32,71,-0.04107032295524082],[121,32,72,-0.040237685432753634],[121,32,73,-0.04010060091986219],[121,32,74,-0.04322358063846268],[121,32,75,-0.04800379434602545],[121,32,76,-0.04510889206675325],[121,32,77,-0.04333179831581668],[121,32,78,-0.0401350443290244],[121,32,79,-0.043043162007920494],[121,33,64,0.009837983278573686],[121,33,65,0.004017039729043992],[121,33,66,2.1817023579703831E-4],[121,33,67,-0.003578323661527827],[121,33,68,-0.010546887899790858],[121,33,69,-0.017657668658670633],[121,33,70,-0.02999727781267389],[121,33,71,-0.038661413206571404],[121,33,72,-0.042825799408126294],[121,33,73,-0.049499989670156896],[121,33,74,-0.05518936553550707],[121,33,75,-0.06076216050661501],[121,33,76,-0.05612937186067543],[121,33,77,-0.048578976472041124],[121,33,78,-0.04183594991604893],[121,33,79,-0.038381904873921624],[121,34,64,0.006204109930143253],[121,34,65,0.0018177889456369167],[121,34,66,-0.0021132380579840515],[121,34,67,-0.0054771975300905995],[121,34,68,-0.010260175134864769],[121,34,69,-0.017099656594865537],[121,34,70,-0.028236427454980617],[121,34,71,-0.03723447715743272],[121,34,72,-0.04235877069686671],[121,34,73,-0.052477776076075205],[121,34,74,-0.05639975193380534],[121,34,75,-0.05925650004094771],[121,34,76,-0.05552335853644838],[121,34,77,-0.04638391413788953],[121,34,78,-0.03826454154438752],[121,34,79,-0.03552525110686894],[121,35,64,0.004276911211707646],[121,35,65,-0.002320080730889712],[121,35,66,-0.0035363100322838015],[121,35,67,-0.006065381278082704],[121,35,68,-0.011346419390457524],[121,35,69,-0.018255620728793498],[121,35,70,-0.027337344132965652],[121,35,71,-0.03718342878950953],[121,35,72,-0.04457215015227796],[121,35,73,-0.05397658780711187],[121,35,74,-0.058917590694389385],[121,35,75,-0.05997668642419676],[121,35,76,-0.05357588942044124],[121,35,77,-0.044063464743309674],[121,35,78,-0.03750886636903339],[121,35,79,-0.03348262375679323],[121,36,64,-0.002963358787217235],[121,36,65,-0.010326228681577648],[121,36,66,-0.012326915305227226],[121,36,67,-0.013189634345201401],[121,36,68,-0.02184360290180909],[121,36,69,-0.025854361876359144],[121,36,70,-0.03216109297194049],[121,36,71,-0.044097209790017605],[121,36,72,-0.05326964712905062],[121,36,73,-0.0636471719584374],[121,36,74,-0.06701661151702655],[121,36,75,-0.06473839518890961],[121,36,76,-0.058137581407017885],[121,36,77,-0.04821854424953331],[121,36,78,-0.04053910800604531],[121,36,79,-0.038872223494190616],[121,37,64,-0.011349597382463494],[121,37,65,-0.01786108428023589],[121,37,66,-0.022399422269708147],[121,37,67,-0.028365336757991078],[121,37,68,-0.0383399200175739],[121,37,69,-0.045132981557257035],[121,37,70,-0.04754839823828305],[121,37,71,-0.05247097917230184],[121,37,72,-0.05787795574173027],[121,37,73,-0.06359620336895772],[121,37,74,-0.06248940947146034],[121,37,75,-0.06058573728769252],[121,37,76,-0.05613902153664392],[121,37,77,-0.0467816049088339],[121,37,78,-0.04132680369649119],[121,37,79,-0.04217359256145342],[121,38,64,-0.011891210736521662],[121,38,65,-0.01860735678157663],[121,38,66,-0.0232848724195287],[121,38,67,-0.028439834468113698],[121,38,68,-0.03905479947251189],[121,38,69,-0.0455185446562924],[121,38,70,-0.04958568624877005],[121,38,71,-0.054926465427703214],[121,38,72,-0.0587087177874412],[121,38,73,-0.06415397579844956],[121,38,74,-0.06303425631044093],[121,38,75,-0.0601875976616084],[121,38,76,-0.05632004473872876],[121,38,77,-0.049443389166654556],[121,38,78,-0.04266032588266942],[121,38,79,-0.04411845867081565],[121,39,64,-0.01308448437409404],[121,39,65,-0.019868461112458047],[121,39,66,-0.024176903143259806],[121,39,67,-0.028539118207799835],[121,39,68,-0.03779214088292887],[121,39,69,-0.046335352625079235],[121,39,70,-0.050286194186058245],[121,39,71,-0.05650839952971759],[121,39,72,-0.060796173312795576],[121,39,73,-0.0638496562826619],[121,39,74,-0.06254817403976529],[121,39,75,-0.06109047457825523],[121,39,76,-0.05791818237429133],[121,39,77,-0.05099485923667464],[121,39,78,-0.04457772928114043],[121,39,79,-0.04619921619828875],[121,40,64,7.12026629639817E-5],[121,40,65,-0.007963080366994807],[121,40,66,-0.011294378687281503],[121,40,67,-0.017571339725735075],[121,40,68,-0.024248492938818922],[121,40,69,-0.031046364506271684],[121,40,70,-0.036085524463515234],[121,40,71,-0.04201895073225033],[121,40,72,-0.04674596166397442],[121,40,73,-0.0480439657721379],[121,40,74,-0.047913189016550145],[121,40,75,-0.04829248213720341],[121,40,76,-0.04786387642575486],[121,40,77,-0.04057277430928327],[121,40,78,-0.03296180753212978],[121,40,79,-0.03266660612251904],[121,41,64,-0.0033691810352617646],[121,41,65,-0.008710566667713332],[121,41,66,-0.012560496391015724],[121,41,67,-0.01776036460408506],[121,41,68,-0.023687366346706124],[121,41,69,-0.030453189318810456],[121,41,70,-0.03524397385111894],[121,41,71,-0.038953941033152834],[121,41,72,-0.04321976827769507],[121,41,73,-0.04635633743542278],[121,41,74,-0.048224041072624735],[121,41,75,-0.04998072366673141],[121,41,76,-0.048771039066143676],[121,41,77,-0.04238062191549977],[121,41,78,-0.03332840402953402],[121,41,79,-0.03297748514242348],[121,42,64,-0.004718808351683673],[121,42,65,-0.0093529427561172],[121,42,66,-0.014289917645980255],[121,42,67,-0.01703406314557604],[121,42,68,-0.023517442360854734],[121,42,69,-0.03019466116464839],[121,42,70,-0.031838106266563915],[121,42,71,-0.03666613223979867],[121,42,72,-0.04116780754552368],[121,42,73,-0.043785104305104405],[121,42,74,-0.045824585242170035],[121,42,75,-0.04841771409913431],[121,42,76,-0.05049754071693974],[121,42,77,-0.0440176779111601],[121,42,78,-0.036550400135533956],[121,42,79,-0.03501815840006425],[121,43,64,-0.008426763666360165],[121,43,65,-0.008744535211863136],[121,43,66,-0.012711380448861914],[121,43,67,-0.014958360509660568],[121,43,68,-0.02191098009971157],[121,43,69,-0.028124695249963694],[121,43,70,-0.031228723234476077],[121,43,71,-0.03845721320362082],[121,43,72,-0.0424273056845908],[121,43,73,-0.0423661324745349],[121,43,74,-0.0449929783611686],[121,43,75,-0.04385399185781777],[121,43,76,-0.05041687712116669],[121,43,77,-0.04488616335803723],[121,43,78,-0.03942655969373464],[121,43,79,-0.03755589671474541],[121,44,64,-0.017435258959481864],[121,44,65,-0.019345469006628535],[121,44,66,-0.02055404546973308],[121,44,67,-0.0242296248902317],[121,44,68,-0.027346552547476727],[121,44,69,-0.03492591799620538],[121,44,70,-0.039552699158570695],[121,44,71,-0.04570237780378883],[121,44,72,-0.052748082541588096],[121,44,73,-0.05236247626503375],[121,44,74,-0.053787739234555584],[121,44,75,-0.05354118892366169],[121,44,76,-0.05849038856174757],[121,44,77,-0.0532856765767275],[121,44,78,-0.049268848828464676],[121,44,79,-0.04655802972317892],[121,45,64,-0.024769171591784725],[121,45,65,-0.020892567099819848],[121,45,66,-0.01683953754734438],[121,45,67,-0.013688529720592563],[121,45,68,-0.010830713792027907],[121,45,69,-0.011071708415613501],[121,45,70,-0.016555546030889406],[121,45,71,-0.02425078747250392],[121,45,72,-0.03988801515128748],[121,45,73,-0.04780772520934096],[121,45,74,-0.04825025420764174],[121,45,75,-0.04882940896866944],[121,45,76,-0.05079817717271494],[121,45,77,-0.04991440848707196],[121,45,78,-0.04553963007211895],[121,45,79,-0.04631082655051527],[121,46,64,-0.025946758671441847],[121,46,65,-0.022902747237054155],[121,46,66,-0.01938328562146585],[121,46,67,-0.015630425770433803],[121,46,68,-0.013524507372739136],[121,46,69,-0.00943155003742735],[121,46,70,-0.015849235986773652],[121,46,71,-0.023849140255505802],[121,46,72,-0.039682463027944676],[121,46,73,-0.04857150884887247],[121,46,74,-0.04853918273591487],[121,46,75,-0.047453270469509395],[121,46,76,-0.05011069439772736],[121,46,77,-0.049813178047680706],[121,46,78,-0.045316398252018636],[121,46,79,-0.04812308513752578],[121,47,64,-0.028000709442470767],[121,47,65,-0.024395503316000308],[121,47,66,-0.022720802898265002],[121,47,67,-0.019074909024325792],[121,47,68,-0.015777220562616795],[121,47,69,-0.01154866758999043],[121,47,70,-0.014927820086651722],[121,47,71,-0.022998513464855708],[121,47,72,-0.036708135473845355],[121,47,73,-0.047648707327347606],[121,47,74,-0.04975328144268157],[121,47,75,-0.048829297529633636],[121,47,76,-0.04910336302523177],[121,47,77,-0.046726064202055856],[121,47,78,-0.04555126766239617],[121,47,79,-0.04741583896391477],[121,48,64,-0.016861132717985894],[121,48,65,-0.013773874090521943],[121,48,66,-0.01239882786724264],[121,48,67,-0.006487103466166155],[121,48,68,-0.0019432424780927438],[121,48,69,-2.5463379069259884E-4],[121,48,70,-0.0027586380033811086],[121,48,71,-0.009318751150067445],[121,48,72,-0.019482797195811946],[121,48,73,-0.03275283516258223],[121,48,74,-0.03380351304714148],[121,48,75,-0.036282012541217615],[121,48,76,-0.03653383533702026],[121,48,77,-0.034138503368417464],[121,48,78,-0.03210198712867954],[121,48,79,-0.03200544693421847],[121,49,64,-0.0281147874394697],[121,49,65,-0.027123905134074616],[121,49,66,-0.024752477368104736],[121,49,67,-0.01798072213725005],[121,49,68,-0.014224013165219707],[121,49,69,-0.010600036047616668],[121,49,70,-0.009379447829355875],[121,49,71,-0.011509338058137891],[121,49,72,-0.01529428783223652],[121,49,73,-0.022316764564914493],[121,49,74,-0.022190735382479454],[121,49,75,-0.025346553913921932],[121,49,76,-0.02557686605307738],[121,49,77,-0.023305853052198733],[121,49,78,-0.021043541967662144],[121,49,79,-0.01925483437962683],[121,50,64,-0.028618794917264948],[121,50,65,-0.028619380373792053],[121,50,66,-0.02608995995789204],[121,50,67,-0.01986458787962525],[121,50,68,-0.01473806909585229],[121,50,69,-0.013894596656759961],[121,50,70,-0.011369715754003917],[121,50,71,-0.014860314597567065],[121,50,72,-0.0161662504684624],[121,50,73,-0.019378316507380672],[121,50,74,-0.021344291484028305],[121,50,75,-0.02184599919081745],[121,50,76,-0.021837110437478602],[121,50,77,-0.023561032107966312],[121,50,78,-0.020952773472345865],[121,50,79,-0.01711996469059504],[121,51,64,-0.03020625100223351],[121,51,65,-0.031171239972537484],[121,51,66,-0.029798439483653516],[121,51,67,-0.022903441836581134],[121,51,68,-0.018058397826367895],[121,51,69,-0.016798631961857324],[121,51,70,-0.015024481520355903],[121,51,71,-0.01766031640222171],[121,51,72,-0.019416756484049752],[121,51,73,-0.019327996061844405],[121,51,74,-0.021752962504556828],[121,51,75,-0.0200810373038727],[121,51,76,-0.018502057359330554],[121,51,77,-0.01852465676338097],[121,51,78,-0.020406476914278576],[121,51,79,-0.01627902982814705],[121,52,64,0.009462240521553172],[121,52,65,0.00861871611620707],[121,52,66,0.008643013531137278],[121,52,67,0.013868365493268253],[121,52,68,0.01646000028391459],[121,52,69,0.01860081537538999],[121,52,70,0.020539932407257933],[121,52,71,0.02066797831067102],[121,52,72,0.0209392702268624],[121,52,73,0.020369605492916554],[121,52,74,0.018792145324768195],[121,52,75,0.01952793411512349],[121,52,76,0.02196819202858022],[121,52,77,0.021840257238705668],[121,52,78,0.021032159699646558],[121,52,79,0.026223119185151633],[121,53,64,0.016680531508210278],[121,53,65,0.01166051569221152],[121,53,66,0.008687489795598635],[121,53,67,0.00934319578886661],[121,53,68,0.009922684818154809],[121,53,69,0.009251684083598194],[121,53,70,0.010721658451625232],[121,53,71,0.010038456067338414],[121,53,72,0.010112375261485756],[121,53,73,0.011098435492851666],[121,53,74,0.009157697536016918],[121,53,75,0.010667319106530265],[121,53,76,0.014925338358551726],[121,53,77,0.016913889679904537],[121,53,78,0.01689093495407279],[121,53,79,0.02394852126079955],[121,54,64,0.01606613021605849],[121,54,65,0.012995685334345114],[121,54,66,0.006891152057032557],[121,54,67,0.005901150921095472],[121,54,68,0.006256648265152098],[121,54,69,0.007010205893235061],[121,54,70,0.007671469654744023],[121,54,71,0.005834198025343074],[121,54,72,0.0074481072672521464],[121,54,73,0.009056711204443152],[121,54,74,0.008994690931899668],[121,54,75,0.009910207971179391],[121,54,76,0.01429378596683012],[121,54,77,0.013893052241084336],[121,54,78,0.016909622972864108],[121,54,79,0.023760685831151762],[121,55,64,0.01451369521717602],[121,55,65,0.00998557386326554],[121,55,66,0.0029706338856116954],[121,55,67,0.002660678354194146],[121,55,68,0.004179438546005859],[121,55,69,0.005328042443406317],[121,55,70,0.002558836197555897],[121,55,71,0.0019633472116633854],[121,55,72,0.0018025916000218578],[121,55,73,0.002895414520569406],[121,55,74,0.0031303803096077165],[121,55,75,0.00870469217390668],[121,55,76,0.012605895729721955],[121,55,77,0.013715399967845543],[121,55,78,0.01496970953148849],[121,55,79,0.01989534066830953],[121,56,64,0.028990960733794535],[121,56,65,0.02113041375559474],[121,56,66,0.016392783121651794],[121,56,67,0.016559457004340278],[121,56,68,0.01582325369747639],[121,56,69,0.01570151362167374],[121,56,70,0.010944670262012485],[121,56,71,0.012834209757861814],[121,56,72,0.012106709679005873],[121,56,73,0.012219967901061335],[121,56,74,0.013676456925271196],[121,56,75,0.02010946121069293],[121,56,76,0.02231124402929263],[121,56,77,0.02535118725558566],[121,56,78,0.029969107004210627],[121,56,79,0.03237816663833548],[121,57,64,0.02058296028463255],[121,57,65,0.012184764693551176],[121,57,66,0.00796716933760841],[121,57,67,0.008373072130785059],[121,57,68,0.006399797093053217],[121,57,69,0.00456593428882851],[121,57,70,5.990282663249358E-4],[121,57,71,0.00257404976312825],[121,57,72,-0.0010990237972183514],[121,57,73,-0.00184843262664397],[121,57,74,0.002547832734516836],[121,57,75,0.006374913687716671],[121,57,76,0.009627234111289351],[121,57,77,0.017107829551435444],[121,57,78,0.018621179530875415],[121,57,79,0.02095696704318198],[121,58,64,0.061944599174146145],[121,58,65,0.05599719275259962],[121,58,66,0.04918141619247096],[121,58,67,0.04451512485164601],[121,58,68,0.0438483857798264],[121,58,69,0.03957172975329311],[121,58,70,0.03767241836240663],[121,58,71,0.03713063018162978],[121,58,72,0.037699660035195454],[121,58,73,0.035810792430264],[121,58,74,0.041723082956005894],[121,58,75,0.04499535262842065],[121,58,76,0.04686289082300103],[121,58,77,0.05396468804412108],[121,58,78,0.05506891222006405],[121,58,79,0.05414935951046415],[121,59,64,0.06099739201051524],[121,59,65,0.05440283045516216],[121,59,66,0.046393582110139206],[121,59,67,0.04071910927135608],[121,59,68,0.0400892681858699],[121,59,69,0.03522067059203533],[121,59,70,0.03397552963370336],[121,59,71,0.03222918628786969],[121,59,72,0.035607494344547325],[121,59,73,0.03583826996433395],[121,59,74,0.041402257641639156],[121,59,75,0.0460690946112781],[121,59,76,0.04990365897928235],[121,59,77,0.0539705119456554],[121,59,78,0.055736662015638774],[121,59,79,0.053305381279035724],[121,60,64,0.052981513709203454],[121,60,65,0.04415227580582999],[121,60,66,0.035378530892568205],[121,60,67,0.02994320636783336],[121,60,68,0.026142981804495424],[121,60,69,0.022218224465669636],[121,60,70,0.021687387276936712],[121,60,71,0.022690335879851933],[121,60,72,0.026061377476963854],[121,60,73,0.03016123238154425],[121,60,74,0.03426193630031188],[121,60,75,0.03959438949722256],[121,60,76,0.04516534992253736],[121,60,77,0.04807810636628754],[121,60,78,0.049917170269475925],[121,60,79,0.04759031877958528],[121,61,64,0.06894725493486904],[121,61,65,0.05628120926355555],[121,61,66,0.04594554861467315],[121,61,67,0.03795006519421851],[121,61,68,0.03260110570604656],[121,61,69,0.027746307527854064],[121,61,70,0.02518607015177919],[121,61,71,0.02687944432361873],[121,61,72,0.025194155315070618],[121,61,73,0.03128519265034051],[121,61,74,0.036481123964841405],[121,61,75,0.04168196667352811],[121,61,76,0.04858758585564149],[121,61,77,0.05397532635438167],[121,61,78,0.056047018144478725],[121,61,79,0.05581420931711484],[121,62,64,0.06712963978834696],[121,62,65,0.056459774008849245],[121,62,66,0.04619206276845357],[121,62,67,0.03635951567652973],[121,62,68,0.03502005339046721],[121,62,69,0.029418852161444062],[121,62,70,0.026771146697158132],[121,62,71,0.02767449944929569],[121,62,72,0.024440030677320368],[121,62,73,0.02950653307734563],[121,62,74,0.03362803576375728],[121,62,75,0.04194958260852956],[121,62,76,0.04862980886094158],[121,62,77,0.0523540611698331],[121,62,78,0.05591193958476334],[121,62,79,0.05589680288800028],[121,63,64,-0.005276894077739375],[121,63,65,-0.011929104271997254],[121,63,66,-0.023996922280163827],[121,63,67,-0.035761992004715734],[121,63,68,-0.03683307159542995],[121,63,69,-0.03667917554693774],[121,63,70,-0.039378041673322345],[121,63,71,-0.03810049436602678],[121,63,72,-0.039733265506664464],[121,63,73,-0.03829103760662367],[121,63,74,-0.03192394329677037],[121,63,75,-0.023260971607190484],[121,63,76,-0.013925642255041101],[121,63,77,-0.012270844422790084],[121,63,78,-0.006686965039746168],[121,63,79,-0.0039197710201855085],[121,64,64,0.006937269698630635],[121,64,65,-0.0011417852410963575],[121,64,66,-0.015259777582718376],[121,64,67,-0.02351735276220855],[121,64,68,-0.026375636437746014],[121,64,69,-0.026562716035621534],[121,64,70,-0.030652005709617416],[121,64,71,-0.028384940481678944],[121,64,72,-0.030893489702196422],[121,64,73,-0.03163800381481165],[121,64,74,-0.026024021197960434],[121,64,75,-0.016827262943128474],[121,64,76,-0.0076704348842124015],[121,64,77,-0.002086210555918136],[121,64,78,5.80562666931364E-4],[121,64,79,0.006541485195352442],[121,65,64,0.007386899982883041],[121,65,65,-7.212017242026886E-4],[121,65,66,-0.01458647266119295],[121,65,67,-0.02363291557632198],[121,65,68,-0.025952008282043304],[121,65,69,-0.028385032928121792],[121,65,70,-0.03341428238336705],[121,65,71,-0.03111665106815277],[121,65,72,-0.032831029692137415],[121,65,73,-0.033513815350993265],[121,65,74,-0.02961356435653323],[121,65,75,-0.02079189914195677],[121,65,76,-0.011260072902806909],[121,65,77,-0.006402700349482426],[121,65,78,-0.0010155635382264327],[121,65,79,0.006262523737317796],[121,66,64,-0.0023355654057822806],[121,66,65,-0.006220948351841671],[121,66,66,-0.02179999835512081],[121,66,67,-0.03089515922541504],[121,66,68,-0.03267991097101931],[121,66,69,-0.037455397936924276],[121,66,70,-0.03911949323782955],[121,66,71,-0.03906596817690014],[121,66,72,-0.04048138471525149],[121,66,73,-0.04343287310399492],[121,66,74,-0.0388232138219876],[121,66,75,-0.02792079420440058],[121,66,76,-0.02084355233148319],[121,66,77,-0.015757498834820013],[121,66,78,-0.007686000330336215],[121,66,79,-0.002424356525703067],[121,67,64,-0.0025924627756196694],[121,67,65,-0.010704599791441366],[121,67,66,-0.025542193283804193],[121,67,67,-0.03290749214353782],[121,67,68,-0.03568458136480786],[121,67,69,-0.03882209762599319],[121,67,70,-0.0367954686830837],[121,67,71,-0.03804929002181577],[121,67,72,-0.04106777030502207],[121,67,73,-0.04437206383185813],[121,67,74,-0.04044999852562815],[121,67,75,-0.032079835508293075],[121,67,76,-0.02501553026678449],[121,67,77,-0.020165912475175227],[121,67,78,-0.012962010123469814],[121,67,79,-0.0058178711002997985],[121,68,64,-0.09657958099064941],[121,68,65,-0.10709407764898324],[121,68,66,-0.12120880821382839],[121,68,67,-0.12936199748422816],[121,68,68,-0.13166624068159427],[121,68,69,-0.13204012920797453],[121,68,70,-0.13016600121189711],[121,68,71,-0.13039881902605985],[121,68,72,-0.1326058666199734],[121,68,73,-0.1377573418037274],[121,68,74,-0.13539864112528072],[121,68,75,-0.12662392330890174],[121,68,76,-0.12011226090925968],[121,68,77,-0.11221892527897098],[121,68,78,-0.10754865084331022],[121,68,79,-0.10142146212292023],[121,69,64,-0.10757435261794314],[121,69,65,-0.11571470376521589],[121,69,66,-0.12361514308007159],[121,69,67,-0.1258353520357797],[121,69,68,-0.12037423231595115],[121,69,69,-0.11492232562088575],[121,69,70,-0.11380253244041635],[121,69,71,-0.11785229425541911],[121,69,72,-0.12351058639253645],[121,69,73,-0.13050183426153572],[121,69,74,-0.12907303138601672],[121,69,75,-0.1211201328928478],[121,69,76,-0.11430891613036326],[121,69,77,-0.10353154862424835],[121,69,78,-0.09942273041024147],[121,69,79,-0.09307073697648177],[121,70,64,-0.1106339553197256],[121,70,65,-0.11643298245562748],[121,70,66,-0.12411805497345701],[121,70,67,-0.12589982026135096],[121,70,68,-0.12060073713364558],[121,70,69,-0.11733304345252499],[121,70,70,-0.11746049995153275],[121,70,71,-0.12127801390651405],[121,70,72,-0.12476651282928498],[121,70,73,-0.13031170256159247],[121,70,74,-0.1279036612259246],[121,70,75,-0.11960565120599505],[121,70,76,-0.11473073243771018],[121,70,77,-0.10491496807126281],[121,70,78,-0.10116801826583029],[121,70,79,-0.09244943510037466],[121,71,64,-0.09958417750782508],[121,71,65,-0.1084880551230177],[121,71,66,-0.1156738550776892],[121,71,67,-0.11683424893496039],[121,71,68,-0.11403783163607147],[121,71,69,-0.11082396881412657],[121,71,70,-0.11092298652478888],[121,71,71,-0.11348276723424125],[121,71,72,-0.11617763524610575],[121,71,73,-0.12158018628555298],[121,71,74,-0.11907764075374783],[121,71,75,-0.11224337921218565],[121,71,76,-0.10665906338495712],[121,71,77,-0.09944263321204815],[121,71,78,-0.09523895254742368],[121,71,79,-0.08826626953739525],[121,72,64,-0.10494091096019967],[121,72,65,-0.11126839261402575],[121,72,66,-0.11710680185477966],[121,72,67,-0.11628157747482727],[121,72,68,-0.11556424185774027],[121,72,69,-0.11463268686304486],[121,72,70,-0.11670454723236118],[121,72,71,-0.114916238905583],[121,72,72,-0.11915800861865983],[121,72,73,-0.12221870266594212],[121,72,74,-0.12093945322323908],[121,72,75,-0.11575196787022711],[121,72,76,-0.10782062811845869],[121,72,77,-0.10262440430408928],[121,72,78,-0.0992335610772832],[121,72,79,-0.09384865300889819],[121,73,64,-0.12237630692156332],[121,73,65,-0.1280220321577451],[121,73,66,-0.13076255024238512],[121,73,67,-0.1302236357585121],[121,73,68,-0.12863648626000096],[121,73,69,-0.1273626072773034],[121,73,70,-0.12477470680689093],[121,73,71,-0.11974345535435785],[121,73,72,-0.11926469913150112],[121,73,73,-0.1143243102808295],[121,73,74,-0.11140293560523223],[121,73,75,-0.10582332766698242],[121,73,76,-0.10270811011966965],[121,73,77,-0.10255402149363627],[121,73,78,-0.10760296722290714],[121,73,79,-0.10721779681695784],[121,74,64,-0.13506673211619455],[121,74,65,-0.140759825386524],[121,74,66,-0.14285950347615356],[121,74,67,-0.14149069428445654],[121,74,68,-0.14033012780133458],[121,74,69,-0.13671220219123542],[121,74,70,-0.13162099493692747],[121,74,71,-0.12910193089188512],[121,74,72,-0.1263535641349547],[121,74,73,-0.1225750552049337],[121,74,74,-0.12035080574101208],[121,74,75,-0.11223852482691124],[121,74,76,-0.11130804543207484],[121,74,77,-0.11330153942243561],[121,74,78,-0.11683948309634702],[121,74,79,-0.11704193865553746],[121,75,64,-0.13896338821394089],[121,75,65,-0.1458758352598788],[121,75,66,-0.14830962374029716],[121,75,67,-0.1445255414447788],[121,75,68,-0.14373535742175317],[121,75,69,-0.14063184428799844],[121,75,70,-0.13428312069013632],[121,75,71,-0.13399641578183263],[121,75,72,-0.13033004832913986],[121,75,73,-0.12353934982818776],[121,75,74,-0.12331920634627888],[121,75,75,-0.11486640084204866],[121,75,76,-0.11270929788654388],[121,75,77,-0.11699071919849337],[121,75,78,-0.12090125217145575],[121,75,79,-0.1247647722319531],[121,76,64,-0.13765385195143118],[121,76,65,-0.14546069939330605],[121,76,66,-0.1474035846328295],[121,76,67,-0.1445897353617157],[121,76,68,-0.1442137589908789],[121,76,69,-0.14187122942241798],[121,76,70,-0.1381943733760674],[121,76,71,-0.13640519838310464],[121,76,72,-0.13151000877443747],[121,76,73,-0.12392610655953368],[121,76,74,-0.12252093702878177],[121,76,75,-0.11842420080711945],[121,76,76,-0.11508916569054181],[121,76,77,-0.11791264742196654],[121,76,78,-0.12277885225646143],[121,76,79,-0.12692702832748684],[121,77,64,-0.13886334389296429],[121,77,65,-0.14712111006727555],[121,77,66,-0.15097356224252084],[121,77,67,-0.15125115118874022],[121,77,68,-0.15227633751178654],[121,77,69,-0.15100700375525083],[121,77,70,-0.1474916677937145],[121,77,71,-0.14547300684076303],[121,77,72,-0.14330393448621764],[121,77,73,-0.13701683620592783],[121,77,74,-0.13156755379076077],[121,77,75,-0.12910441271717304],[121,77,76,-0.12592634011830578],[121,77,77,-0.1273202921179002],[121,77,78,-0.1303627578355897],[121,77,79,-0.13462321372468644],[121,78,64,-0.1452405254072536],[121,78,65,-0.15306212618407464],[121,78,66,-0.15503179516922283],[121,78,67,-0.1543257590907309],[121,78,68,-0.15496188168979752],[121,78,69,-0.15337899323482357],[121,78,70,-0.15055683001734316],[121,78,71,-0.14876120223941514],[121,78,72,-0.146936377107811],[121,78,73,-0.14025276444612353],[121,78,74,-0.13473920979461212],[121,78,75,-0.13425045950449346],[121,78,76,-0.13120356282599022],[121,78,77,-0.1291304666772495],[121,78,78,-0.13351203355952215],[121,78,79,-0.13801682714414532],[121,79,64,-0.1363770284809214],[121,79,65,-0.14552953106732058],[121,79,66,-0.14656060695066842],[121,79,67,-0.14736993828293843],[121,79,68,-0.14667633688289672],[121,79,69,-0.14699910904464847],[121,79,70,-0.14122240780649392],[121,79,71,-0.1415395580114698],[121,79,72,-0.14023926004353682],[121,79,73,-0.13640120374662507],[121,79,74,-0.1331338001365894],[121,79,75,-0.1316411098434421],[121,79,76,-0.12745890241463426],[121,79,77,-0.12611502119562168],[121,79,78,-0.12910181258567743],[121,79,79,-0.1357433623138169],[121,80,64,-0.13722716910839425],[121,80,65,-0.14582540200593408],[121,80,66,-0.1489141650184441],[121,80,67,-0.14803981705955271],[121,80,68,-0.14848216330674932],[121,80,69,-0.14779800166498613],[121,80,70,-0.1421588158077585],[121,80,71,-0.14174676028841748],[121,80,72,-0.14179852042368987],[121,80,73,-0.14040331663238378],[121,80,74,-0.13932908324893417],[121,80,75,-0.1375692610927966],[121,80,76,-0.13277613915247136],[121,80,77,-0.1308168314736071],[121,80,78,-0.1338608066337259],[121,80,79,-0.1386299436607431],[121,81,64,-0.12728410952386598],[121,81,65,-0.13645788799355696],[121,81,66,-0.14107125929335224],[121,81,67,-0.13792574432396879],[121,81,68,-0.1387034928743033],[121,81,69,-0.1376858819512272],[121,81,70,-0.13639637873046423],[121,81,71,-0.1391692939163647],[121,81,72,-0.14126207657359185],[121,81,73,-0.14477072915727168],[121,81,74,-0.14543546774382102],[121,81,75,-0.14462604365917225],[121,81,76,-0.13998908485186953],[121,81,77,-0.14035681174280856],[121,81,78,-0.1445535450682684],[121,81,79,-0.14864653224379965],[121,82,64,-0.13629444680121924],[121,82,65,-0.14468294258937112],[121,82,66,-0.14775776910704946],[121,82,67,-0.14331521128781183],[121,82,68,-0.1437365420431141],[121,82,69,-0.14486471028552772],[121,82,70,-0.14542911754422816],[121,82,71,-0.1480109278720901],[121,82,72,-0.15082953440051652],[121,82,73,-0.15509474633581186],[121,82,74,-0.1555502658406121],[121,82,75,-0.15437445312545134],[121,82,76,-0.1495789806936999],[121,82,77,-0.14978223787778153],[121,82,78,-0.155083365583347],[121,82,79,-0.16025935453501725],[121,83,64,-0.13754392956058176],[121,83,65,-0.14754321362036374],[121,83,66,-0.14696980985893887],[121,83,67,-0.1426414730052611],[121,83,68,-0.14301676911862315],[121,83,69,-0.14572839870957557],[121,83,70,-0.14694203451064985],[121,83,71,-0.14937644217016222],[121,83,72,-0.15341768306625184],[121,83,73,-0.1572472550409091],[121,83,74,-0.15985771204237204],[121,83,75,-0.1595915359763379],[121,83,76,-0.15399491116945563],[121,83,77,-0.15353182240964014],[121,83,78,-0.1579795725212874],[121,83,79,-0.16360127402425237],[121,84,64,-0.13737993902315757],[121,84,65,-0.1470698966848351],[121,84,66,-0.14591517960358397],[121,84,67,-0.1421832754927791],[121,84,68,-0.14023991408049188],[121,84,69,-0.14328040454135504],[121,84,70,-0.14921405968659024],[121,84,71,-0.15312750242489898],[121,84,72,-0.15779987860007016],[121,84,73,-0.1588707219700353],[121,84,74,-0.16119103741658544],[121,84,75,-0.1624964922640215],[121,84,76,-0.15936847249833183],[121,84,77,-0.15730968997832523],[121,84,78,-0.15908794218040523],[121,84,79,-0.16578052108144553],[121,85,64,-0.15752649700601767],[121,85,65,-0.16618102524953843],[121,85,66,-0.16700924831911157],[121,85,67,-0.1619527228373452],[121,85,68,-0.16117948286887082],[121,85,69,-0.16378567196379848],[121,85,70,-0.16896904676526373],[121,85,71,-0.17292598072116583],[121,85,72,-0.17333418361621877],[121,85,73,-0.17070012030404424],[121,85,74,-0.17327710919968187],[121,85,75,-0.17582826278125976],[121,85,76,-0.17157020787902114],[121,85,77,-0.1666994081456809],[121,85,78,-0.16229562991844496],[121,85,79,-0.1664682983622893],[121,86,64,-0.16132762854998953],[121,86,65,-0.17082383747698432],[121,86,66,-0.1714039717250665],[121,86,67,-0.16554383168210562],[121,86,68,-0.1639693089336406],[121,86,69,-0.1653034876451755],[121,86,70,-0.17107761424088225],[121,86,71,-0.17332162480750707],[121,86,72,-0.17573165806642452],[121,86,73,-0.17440060842612928],[121,86,74,-0.17783405828015947],[121,86,75,-0.17945514123088666],[121,86,76,-0.1751945387105357],[121,86,77,-0.16749536465091944],[121,86,78,-0.16567954857985168],[121,86,79,-0.16771283419834154],[121,87,64,-0.15538255308888393],[121,87,65,-0.16429194391997354],[121,87,66,-0.16386541892915477],[121,87,67,-0.16127673070501497],[121,87,68,-0.15975737389769096],[121,87,69,-0.15861536310665442],[121,87,70,-0.1651441986223066],[121,87,71,-0.16813195027827105],[121,87,72,-0.16994791166624013],[121,87,73,-0.17086010317813866],[121,87,74,-0.1743218835226622],[121,87,75,-0.17195274761195195],[121,87,76,-0.16953931567891534],[121,87,77,-0.16321943010451515],[121,87,78,-0.15973678567172658],[121,87,79,-0.16238160315058975],[121,88,64,-0.15384372492544443],[121,88,65,-0.16391621584699645],[121,88,66,-0.16455389565029366],[121,88,67,-0.1656636705878174],[121,88,68,-0.16174205732029587],[121,88,69,-0.1598689513799749],[121,88,70,-0.16532660105592162],[121,88,71,-0.16921120787264674],[121,88,72,-0.17021694298013357],[121,88,73,-0.17328173417889167],[121,88,74,-0.17622673149687668],[121,88,75,-0.17690645303105024],[121,88,76,-0.17435863664970774],[121,88,77,-0.16760600271217746],[121,88,78,-0.16018756876322618],[121,88,79,-0.16294776784969434],[121,89,64,-0.15160579282282113],[121,89,65,-0.16057899121333927],[121,89,66,-0.1645386992053715],[121,89,67,-0.16667282460206376],[121,89,68,-0.1639566105957695],[121,89,69,-0.16000814986764839],[121,89,70,-0.16378361781325496],[121,89,71,-0.1663870482077589],[121,89,72,-0.17103439026367],[121,89,73,-0.17660939255122993],[121,89,74,-0.17940313146079767],[121,89,75,-0.1810066131919237],[121,89,76,-0.17875964722316218],[121,89,77,-0.1703141339287537],[121,89,78,-0.1616151528471309],[121,89,79,-0.1648642621066152],[121,90,64,-0.15553102134435565],[121,90,65,-0.16191018901455229],[121,90,66,-0.1705238718328479],[121,90,67,-0.1720643965411603],[121,90,68,-0.1707529964720056],[121,90,69,-0.16644944862956618],[121,90,70,-0.16779125482286897],[121,90,71,-0.17248047942444325],[121,90,72,-0.17766257126969506],[121,90,73,-0.18222061903367182],[121,90,74,-0.18783887925513443],[121,90,75,-0.18897443596474112],[121,90,76,-0.18553676244552286],[121,90,77,-0.17897474925172996],[121,90,78,-0.1711499912980377],[121,90,79,-0.17159634510198774],[121,91,64,-0.1547573891002641],[121,91,65,-0.16109777532553252],[121,91,66,-0.17024960577565865],[121,91,67,-0.17062707834103263],[121,91,68,-0.16995924147411595],[121,91,69,-0.1669790599782999],[121,91,70,-0.16756578896115246],[121,91,71,-0.17106649006424884],[121,91,72,-0.17819277376860793],[121,91,73,-0.1818767553937611],[121,91,74,-0.1886065542699757],[121,91,75,-0.1897514034498608],[121,91,76,-0.18581301744793105],[121,91,77,-0.17929036907909424],[121,91,78,-0.17545446723104008],[121,91,79,-0.17362408265575158],[121,92,64,-0.12782880884208953],[121,92,65,-0.1377214295421112],[121,92,66,-0.1467052576176473],[121,92,67,-0.1472437237587704],[121,92,68,-0.14886595227051225],[121,92,69,-0.14906765741420205],[121,92,70,-0.1499394121879828],[121,92,71,-0.1516541238129564],[121,92,72,-0.16036651057944246],[121,92,73,-0.16529197083744043],[121,92,74,-0.16991398843430933],[121,92,75,-0.1720285272293851],[121,92,76,-0.1703489598072448],[121,92,77,-0.16122966947837444],[121,92,78,-0.16109537846585872],[121,92,79,-0.15820607567876285],[121,93,64,-0.11769805141026699],[121,93,65,-0.12836945959367294],[121,93,66,-0.139972545985049],[121,93,67,-0.14455309263719102],[121,93,68,-0.1480145210452362],[121,93,69,-0.14894235087209162],[121,93,70,-0.15237460669246583],[121,93,71,-0.1537931691314957],[121,93,72,-0.1649712345669122],[121,93,73,-0.17142271525602293],[121,93,74,-0.17590282463946583],[121,93,75,-0.1797421877969909],[121,93,76,-0.17630155879163234],[121,93,77,-0.16499225290015085],[121,93,78,-0.15978524440701078],[121,93,79,-0.15298611129013095],[121,94,64,-0.11563006034176633],[121,94,65,-0.12706053537058187],[121,94,66,-0.1392348884060033],[121,94,67,-0.1477924438760922],[121,94,68,-0.1497071671189158],[121,94,69,-0.15011849352436893],[121,94,70,-0.15131852185073458],[121,94,71,-0.15543730585493493],[121,94,72,-0.16213380510869208],[121,94,73,-0.16899667094356258],[121,94,74,-0.17413393360078672],[121,94,75,-0.18097356229320402],[121,94,76,-0.17666260277847187],[121,94,77,-0.16690978017171856],[121,94,78,-0.15961556545884742],[121,94,79,-0.15151264343931917],[121,95,64,-0.10822693655139994],[121,95,65,-0.11824826186940089],[121,95,66,-0.1301884928308469],[121,95,67,-0.1395391615299513],[121,95,68,-0.14136604106579514],[121,95,69,-0.14232525209831381],[121,95,70,-0.1437736221257832],[121,95,71,-0.14815198513643374],[121,95,72,-0.15231754540344822],[121,95,73,-0.15970616313789873],[121,95,74,-0.16655252747103277],[121,95,75,-0.17291358753946484],[121,95,76,-0.1697503125503943],[121,95,77,-0.16188565160520693],[121,95,78,-0.15384643277616494],[121,95,79,-0.14477674446788052],[121,96,64,-0.10873869972222674],[121,96,65,-0.1186273153051914],[121,96,66,-0.1306100175761468],[121,96,67,-0.13907450426110485],[121,96,68,-0.14059947826610514],[121,96,69,-0.14296340865791785],[121,96,70,-0.14426582598341414],[121,96,71,-0.14855163683687295],[121,96,72,-0.15046110092410778],[121,96,73,-0.15615203742945083],[121,96,74,-0.16367353061619955],[121,96,75,-0.1681742838289302],[121,96,76,-0.16808839499150818],[121,96,77,-0.16403363668545368],[121,96,78,-0.15417676940116212],[121,96,79,-0.14322855521691893],[121,97,64,-0.11706241723495588],[121,97,65,-0.12470739470309555],[121,97,66,-0.13441320381471483],[121,97,67,-0.1395375586037204],[121,97,68,-0.1425960643035096],[121,97,69,-0.14495008369727597],[121,97,70,-0.14351423740501956],[121,97,71,-0.14499514560298643],[121,97,72,-0.14349489868940873],[121,97,73,-0.14632600679540259],[121,97,74,-0.15247202936865167],[121,97,75,-0.15454185760901118],[121,97,76,-0.1585991054840126],[121,97,77,-0.16021488963404568],[121,97,78,-0.15749797018634584],[121,97,79,-0.15172745671220525],[121,98,64,-0.12419617532280555],[121,98,65,-0.1331762207925119],[121,98,66,-0.14137195756155535],[121,98,67,-0.14318837987526892],[121,98,68,-0.14890390113757707],[121,98,69,-0.15040962095361934],[121,98,70,-0.1466220810163842],[121,98,71,-0.15024646839404257],[121,98,72,-0.15084417798571048],[121,98,73,-0.15327581810477742],[121,98,74,-0.1547735035372099],[121,98,75,-0.15804529551928148],[121,98,76,-0.16129696254346707],[121,98,77,-0.16442332643238694],[121,98,78,-0.16236940036776898],[121,98,79,-0.15948844634009174],[121,99,64,-0.1272071036647815],[121,99,65,-0.13602490402051706],[121,99,66,-0.1411796218791114],[121,99,67,-0.14211832971995403],[121,99,68,-0.14814488420276695],[121,99,69,-0.14585081419469456],[121,99,70,-0.14336538117097575],[121,99,71,-0.1490593396761189],[121,99,72,-0.15186827298965982],[121,99,73,-0.15423578792986053],[121,99,74,-0.1544012328215894],[121,99,75,-0.1572057022313172],[121,99,76,-0.1583533634715008],[121,99,77,-0.1637478317126848],[121,99,78,-0.16464830859797716],[121,99,79,-0.16174415873994877],[121,100,64,-0.1120429783589679],[121,100,65,-0.1130241531495787],[121,100,66,-0.11192365525913373],[121,100,67,-0.10747729603011097],[121,100,68,-0.10443512655012055],[121,100,69,-0.09703946599945809],[121,100,70,-0.09235645259886735],[121,100,71,-0.09425946504181436],[121,100,72,-0.09568505031997178],[121,100,73,-0.09692991688658237],[121,100,74,-0.0995758821613779],[121,100,75,-0.0984842670152087],[121,100,76,-0.10140278694662722],[121,100,77,-0.10874235977416383],[121,100,78,-0.10909000863290849],[121,100,79,-0.10805495584256172],[121,101,64,-0.1143716000251761],[121,101,65,-0.11544356056320675],[121,101,66,-0.1115534679210099],[121,101,67,-0.10837042855900406],[121,101,68,-0.10273863304792971],[121,101,69,-0.0974507072404317],[121,101,70,-0.09237727080359046],[121,101,71,-0.08926018622501523],[121,101,72,-0.09240334655376353],[121,101,73,-0.09345604933346194],[121,101,74,-0.09584221124008496],[121,101,75,-0.09537832846751033],[121,101,76,-0.09920709610625648],[121,101,77,-0.10485975394629314],[121,101,78,-0.11072466291701274],[121,101,79,-0.11196515382729842],[121,102,64,-0.11460268754012082],[121,102,65,-0.11826775213655587],[121,102,66,-0.11349198595883425],[121,102,67,-0.10770146268174978],[121,102,68,-0.10219793229949407],[121,102,69,-0.09435201246360626],[121,102,70,-0.08948194946787123],[121,102,71,-0.08553769134451006],[121,102,72,-0.08892245525495915],[121,102,73,-0.09118432274897482],[121,102,74,-0.09363296516450328],[121,102,75,-0.09505594024776298],[121,102,76,-0.09747929339642203],[121,102,77,-0.10515948279308893],[121,102,78,-0.1112059386222817],[121,102,79,-0.114680930039778],[121,103,64,-0.11025550546950423],[121,103,65,-0.1104527049221473],[121,103,66,-0.10563048928612034],[121,103,67,-0.0985265828864936],[121,103,68,-0.09365755330306134],[121,103,69,-0.08827095430754432],[121,103,70,-0.08197343018341308],[121,103,71,-0.0783953744367185],[121,103,72,-0.08173769274291275],[121,103,73,-0.08692995239913168],[121,103,74,-0.08656979638510279],[121,103,75,-0.08908910257422684],[121,103,76,-0.09261684385319593],[121,103,77,-0.1002780106735637],[121,103,78,-0.10690020049582274],[121,103,79,-0.11253697193666465],[121,104,64,-0.11192532345217591],[121,104,65,-0.10891610524931028],[121,104,66,-0.10328864247454575],[121,104,67,-0.09728322116360019],[121,104,68,-0.09365889131135213],[121,104,69,-0.08885851037542708],[121,104,70,-0.08434927658896457],[121,104,71,-0.07977664123837351],[121,104,72,-0.08332767932971932],[121,104,73,-0.08824526191883497],[121,104,74,-0.08629443744241154],[121,104,75,-0.08872328566399312],[121,104,76,-0.0914495662829201],[121,104,77,-0.09749552697556929],[121,104,78,-0.10476580340905488],[121,104,79,-0.11284515636515091],[121,105,64,-0.11914828138511849],[121,105,65,-0.11207769092007],[121,105,66,-0.10067620806996548],[121,105,67,-0.08837999420702912],[121,105,68,-0.08400078388319443],[121,105,69,-0.07975495651941455],[121,105,70,-0.07738101363528002],[121,105,71,-0.07496679815070809],[121,105,72,-0.07793751100772708],[121,105,73,-0.08182686611909915],[121,105,74,-0.07813887910330596],[121,105,75,-0.08096630834426288],[121,105,76,-0.08523626548777223],[121,105,77,-0.09056766387001587],[121,105,78,-0.1013842548388541],[121,105,79,-0.1117944735331229],[121,106,64,-0.12647373436269665],[121,106,65,-0.12021186550344759],[121,106,66,-0.10835781289895256],[121,106,67,-0.09657430343511282],[121,106,68,-0.09185048296645736],[121,106,69,-0.08722339052364017],[121,106,70,-0.08641082907125758],[121,106,71,-0.08326580343097982],[121,106,72,-0.08448325494926434],[121,106,73,-0.08753221447111305],[121,106,74,-0.08397620013930662],[121,106,75,-0.08414736901075487],[121,106,76,-0.08946100101742734],[121,106,77,-0.09640214100371733],[121,106,78,-0.1086438319877143],[121,106,79,-0.11782341500191708],[121,107,64,-0.1280315512880723],[121,107,65,-0.12208740016121476],[121,107,66,-0.11083089329332924],[121,107,67,-0.09838696266687333],[121,107,68,-0.09337224602220064],[121,107,69,-0.09110574043484887],[121,107,70,-0.08875321497655714],[121,107,71,-0.0838528386516666],[121,107,72,-0.08697041881593773],[121,107,73,-0.08920761960620044],[121,107,74,-0.08710332438181385],[121,107,75,-0.08420506951055434],[121,107,76,-0.09022435905889578],[121,107,77,-0.09645176094518279],[121,107,78,-0.1066144847634375],[121,107,79,-0.1160659967009916],[121,108,64,-0.12930521019003652],[121,108,65,-0.1255068794563283],[121,108,66,-0.11638564015133672],[121,108,67,-0.10377871037409139],[121,108,68,-0.09808047182812638],[121,108,69,-0.09487017807640641],[121,108,70,-0.09337221675133281],[121,108,71,-0.0896943192467479],[121,108,72,-0.09343537468902557],[121,108,73,-0.09583757795058634],[121,108,74,-0.09170588347202567],[121,108,75,-0.08924194592412509],[121,108,76,-0.09394758691305549],[121,108,77,-0.09983225824192685],[121,108,78,-0.11233532613876523],[121,108,79,-0.12179117570831542],[121,109,64,-0.12040567017227505],[121,109,65,-0.12269835244150987],[121,109,66,-0.12198663709465805],[121,109,67,-0.11471763314255604],[121,109,68,-0.108779070171805],[121,109,69,-0.10831377124515748],[121,109,70,-0.1045531415085061],[121,109,71,-0.10372242191224733],[121,109,72,-0.10398514057805383],[121,109,73,-0.10497670308067036],[121,109,74,-0.10408133568554379],[121,109,75,-0.10123282393375699],[121,109,76,-0.10391441294350574],[121,109,77,-0.10812568082566962],[121,109,78,-0.11760391181848],[121,109,79,-0.12242569770245358],[121,110,64,-0.11909545779498684],[121,110,65,-0.12130620028307706],[121,110,66,-0.12116032906870003],[121,110,67,-0.11625689677454391],[121,110,68,-0.1111114177444616],[121,110,69,-0.10950367490638334],[121,110,70,-0.10655879100745433],[121,110,71,-0.10605001888178514],[121,110,72,-0.10519135066640867],[121,110,73,-0.10288348057328722],[121,110,74,-0.10558626061215967],[121,110,75,-0.10547436225833906],[121,110,76,-0.10712322043096924],[121,110,77,-0.11034782413236421],[121,110,78,-0.12046057264118763],[121,110,79,-0.12355424120501954],[121,111,64,-0.10956584846124495],[121,111,65,-0.11296622601848767],[121,111,66,-0.11596978195913846],[121,111,67,-0.11049021215633106],[121,111,68,-0.10594975017008716],[121,111,69,-0.10395278126494284],[121,111,70,-0.10245219612055922],[121,111,71,-0.10197078519343547],[121,111,72,-0.09947579908993026],[121,111,73,-0.09966048689426583],[121,111,74,-0.10122840059473784],[121,111,75,-0.10557142909287853],[121,111,76,-0.10657067165580277],[121,111,77,-0.10956942877683302],[121,111,78,-0.11834433822674871],[121,111,79,-0.12300252156306059],[121,112,64,-0.10764549571869501],[121,112,65,-0.11488275197325543],[121,112,66,-0.11750840680525867],[121,112,67,-0.1109241766728149],[121,112,68,-0.1066223666100628],[121,112,69,-0.10366877480636837],[121,112,70,-0.1022938218635501],[121,112,71,-0.10352078952238646],[121,112,72,-0.09843402249443117],[121,112,73,-0.10043676683069377],[121,112,74,-0.10201837575063993],[121,112,75,-0.10589168905041998],[121,112,76,-0.1073506396840776],[121,112,77,-0.1101247917946861],[121,112,78,-0.11508957902343181],[121,112,79,-0.12492690103233137],[121,113,64,-0.10613927295564787],[121,113,65,-0.1145603097705967],[121,113,66,-0.11916576490907634],[121,113,67,-0.11314999615312828],[121,113,68,-0.1090577384264699],[121,113,69,-0.10686154809241097],[121,113,70,-0.10242577160762134],[121,113,71,-0.10258181569346095],[121,113,72,-0.09712654149694949],[121,113,73,-0.10048856919562416],[121,113,74,-0.10453168125709647],[121,113,75,-0.10640487967847534],[121,113,76,-0.10710617391686314],[121,113,77,-0.10934363756741991],[121,113,78,-0.11738407882803611],[121,113,79,-0.12711278686308952],[121,114,64,-0.11188234582444144],[121,114,65,-0.12300983003757511],[121,114,66,-0.1259110023207487],[121,114,67,-0.1195778400359854],[121,114,68,-0.11791928528254947],[121,114,69,-0.11299301279791166],[121,114,70,-0.10940872701582259],[121,114,71,-0.10623177866190785],[121,114,72,-0.10336578275213312],[121,114,73,-0.1071770556499024],[121,114,74,-0.10817890506069344],[121,114,75,-0.11031247160492896],[121,114,76,-0.11154455734430582],[121,114,77,-0.11272980312681274],[121,114,78,-0.12443181017873961],[121,114,79,-0.13433954147615862],[121,115,64,-0.11276395109447086],[121,115,65,-0.1207763098276913],[121,115,66,-0.12292259229691542],[121,115,67,-0.11967948811690533],[121,115,68,-0.11956868086202382],[121,115,69,-0.11072062395422008],[121,115,70,-0.10950456111783682],[121,115,71,-0.10555647590603874],[121,115,72,-0.10574601314808021],[121,115,73,-0.10615394177635046],[121,115,74,-0.10822601080501376],[121,115,75,-0.10870916453861008],[121,115,76,-0.11256488847221506],[121,115,77,-0.11597571329746023],[121,115,78,-0.12452770464951635],[121,115,79,-0.1336694497906471],[121,116,64,-0.08929787962943514],[121,116,65,-0.09661128093409697],[121,116,66,-0.10347710753200716],[121,116,67,-0.10690377264679374],[121,116,68,-0.10804188849275821],[121,116,69,-0.10289237142633129],[121,116,70,-0.10333463056606104],[121,116,71,-0.10443256605065288],[121,116,72,-0.10171224450737054],[121,116,73,-0.10188525760738648],[121,116,74,-0.10628826556270887],[121,116,75,-0.10543191960184102],[121,116,76,-0.10917988425762302],[121,116,77,-0.11047930762704977],[121,116,78,-0.11425183030402641],[121,116,79,-0.11795755847430978],[121,117,64,-0.08957358973348815],[121,117,65,-0.09631408543637794],[121,117,66,-0.10448690763802755],[121,117,67,-0.1113874672668948],[121,117,68,-0.11273523631289076],[121,117,69,-0.1109925674410579],[121,117,70,-0.11033164272443999],[121,117,71,-0.11188677108876627],[121,117,72,-0.10895304338282173],[121,117,73,-0.10847759714612146],[121,117,74,-0.11396066855904666],[121,117,75,-0.1151838499537911],[121,117,76,-0.11520366371241486],[121,117,77,-0.11441166826183538],[121,117,78,-0.11048615450829807],[121,117,79,-0.11035009899305809],[121,118,64,-0.08808739861060938],[121,118,65,-0.09282340301980263],[121,118,66,-0.10203691229271984],[121,118,67,-0.10933258372492421],[121,118,68,-0.11243106581365515],[121,118,69,-0.11154145593123496],[121,118,70,-0.11142663148104986],[121,118,71,-0.1107172427015577],[121,118,72,-0.108820908907867],[121,118,73,-0.10853652648050167],[121,118,74,-0.11231711382745486],[121,118,75,-0.11564127520769307],[121,118,76,-0.1177117418139545],[121,118,77,-0.11696280821379457],[121,118,78,-0.11246613760009619],[121,118,79,-0.1091595786600496],[121,119,64,-0.07804036568305334],[121,119,65,-0.08479923252663364],[121,119,66,-0.09163135205982753],[121,119,67,-0.10125862435435407],[121,119,68,-0.10583340201675866],[121,119,69,-0.10577762268614767],[121,119,70,-0.10474816571320361],[121,119,71,-0.10651397796599699],[121,119,72,-0.10541740389893348],[121,119,73,-0.10458154194776229],[121,119,74,-0.10911356432945818],[121,119,75,-0.11470764636821672],[121,119,76,-0.11761239760384185],[121,119,77,-0.1176338258033259],[121,119,78,-0.11459427702048886],[121,119,79,-0.1090990038021271],[121,120,64,-0.07389142438278036],[121,120,65,-0.08278103740877701],[121,120,66,-0.09191949145984599],[121,120,67,-0.0986149626315226],[121,120,68,-0.10445063577166241],[121,120,69,-0.10359619514312324],[121,120,70,-0.10436971670301906],[121,120,71,-0.1046397094494472],[121,120,72,-0.10458508411623973],[121,120,73,-0.10561333103231085],[121,120,74,-0.11045414612834636],[121,120,75,-0.11340165071826752],[121,120,76,-0.11701793721311682],[121,120,77,-0.11925199807721079],[121,120,78,-0.11560240262974107],[121,120,79,-0.11089123878777307],[121,121,64,-0.07113495500528211],[121,121,65,-0.07746761302676568],[121,121,66,-0.08363529529381752],[121,121,67,-0.08458537543488108],[121,121,68,-0.0907420270146908],[121,121,69,-0.0937250123612959],[121,121,70,-0.09575682858302659],[121,121,71,-0.09672292209424885],[121,121,72,-0.09631094257782212],[121,121,73,-0.09855369563611589],[121,121,74,-0.10005994766917238],[121,121,75,-0.1029619344961979],[121,121,76,-0.11012567721489736],[121,121,77,-0.11650362745051085],[121,121,78,-0.12003207331121701],[121,121,79,-0.1199016279004469],[121,122,64,-0.0743034765967088],[121,122,65,-0.07996227826442033],[121,122,66,-0.08714353338777878],[121,122,67,-0.08941640375376686],[121,122,68,-0.09581558955008188],[121,122,69,-0.10005923533335087],[121,122,70,-0.1007490866462428],[121,122,71,-0.10415349895922255],[121,122,72,-0.10399319844630102],[121,122,73,-0.10591048416855714],[121,122,74,-0.10613812858969437],[121,122,75,-0.10849042617117471],[121,122,76,-0.1153800941031926],[121,122,77,-0.12138810847479274],[121,122,78,-0.12503892089750968],[121,122,79,-0.1270680412607333],[121,123,64,-0.07187558130851408],[121,123,65,-0.07710787264533363],[121,123,66,-0.08300505784121727],[121,123,67,-0.0883125771297277],[121,123,68,-0.09568275367021588],[121,123,69,-0.10200277290777926],[121,123,70,-0.10163553239024165],[121,123,71,-0.10233614745427261],[121,123,72,-0.10579031778270162],[121,123,73,-0.10875188757446423],[121,123,74,-0.10769618230759359],[121,123,75,-0.10808212996440869],[121,123,76,-0.11575676049358667],[121,123,77,-0.12214331954025409],[121,123,78,-0.12894025663482567],[121,123,79,-0.12941630324204023],[121,124,64,-0.06971724277020186],[121,124,65,-0.07530750955511023],[121,124,66,-0.0797767046804968],[121,124,67,-0.08536470086707547],[121,124,68,-0.09341658801605045],[121,124,69,-0.09846173510138967],[121,124,70,-0.0966738751069291],[121,124,71,-0.09952820240521544],[121,124,72,-0.10574356118204134],[121,124,73,-0.1050028045813326],[121,124,74,-0.10877473154332735],[121,124,75,-0.10950179659194723],[121,124,76,-0.11582383156105254],[121,124,77,-0.12329676349077323],[121,124,78,-0.13042575028199696],[121,124,79,-0.13122914077472142],[121,125,64,-0.0668495644938231],[121,125,65,-0.07249375788468848],[121,125,66,-0.07837892300934025],[121,125,67,-0.08708132610634209],[121,125,68,-0.09605588840953913],[121,125,69,-0.09993569161006155],[121,125,70,-0.09797089909841696],[121,125,71,-0.10099356196424865],[121,125,72,-0.10448968432412466],[121,125,73,-0.10460413512408862],[121,125,74,-0.10873519101391096],[121,125,75,-0.1100894241666808],[121,125,76,-0.11894664321390155],[121,125,77,-0.1260618870155538],[121,125,78,-0.1326815739600683],[121,125,79,-0.13097629795615162],[121,126,64,-0.06441847968210868],[121,126,65,-0.07024607321021822],[121,126,66,-0.07614320482991166],[121,126,67,-0.08801240888946316],[121,126,68,-0.09579923527265305],[121,126,69,-0.10025040157712549],[121,126,70,-0.09973186457783852],[121,126,71,-0.10248359807753508],[121,126,72,-0.10548827165288358],[121,126,73,-0.10494914695786461],[121,126,74,-0.10982342621025229],[121,126,75,-0.11205560287008258],[121,126,76,-0.11892105209432849],[121,126,77,-0.12782793613687402],[121,126,78,-0.13096872230710183],[121,126,79,-0.1321298716448203],[121,127,64,-0.05405961373008533],[121,127,65,-0.05976058556675162],[121,127,66,-0.06927601704595454],[121,127,67,-0.08385829789434834],[121,127,68,-0.09300363628603213],[121,127,69,-0.09689890425944772],[121,127,70,-0.09856633100286001],[121,127,71,-0.10196747956212722],[121,127,72,-0.10567921870750256],[121,127,73,-0.10739124096592448],[121,127,74,-0.11208672054251059],[121,127,75,-0.11746529810542135],[121,127,76,-0.12111865581197594],[121,127,77,-0.128272565713237],[121,127,78,-0.12849362419434956],[121,127,79,-0.13313836247004804],[121,128,64,-0.05138518899946434],[121,128,65,-0.05842093538333232],[121,128,66,-0.07113083186135383],[121,128,67,-0.08512810325237045],[121,128,68,-0.09261101637551722],[121,128,69,-0.09780812071281109],[121,128,70,-0.09896327759720822],[121,128,71,-0.10399857578469968],[121,128,72,-0.10972112019392646],[121,128,73,-0.11057974585269872],[121,128,74,-0.11390589379694432],[121,128,75,-0.11922821951958594],[121,128,76,-0.12386579500202138],[121,128,77,-0.12831965247149707],[121,128,78,-0.12914920995589624],[121,128,79,-0.13204325902476718],[121,129,64,-0.04525437832699944],[121,129,65,-0.05423171518696018],[121,129,66,-0.06796583757304928],[121,129,67,-0.08398295679656917],[121,129,68,-0.09541258102683187],[121,129,69,-0.09801548624105567],[121,129,70,-0.10234351531329913],[121,129,71,-0.10978732702677549],[121,129,72,-0.11381024675290345],[121,129,73,-0.11378241244548358],[121,129,74,-0.11902878005504237],[121,129,75,-0.12347275190649627],[121,129,76,-0.12621398635534534],[121,129,77,-0.12586212508197736],[121,129,78,-0.12234144903658586],[121,129,79,-0.12290444374593706],[121,130,64,-0.051787641866360624],[121,130,65,-0.06044552764533216],[121,130,66,-0.07516703415377199],[121,130,67,-0.08752284333796928],[121,130,68,-0.09967749097023833],[121,130,69,-0.10648355246455693],[121,130,70,-0.11188425042700642],[121,130,71,-0.11737417644943485],[121,130,72,-0.1195012363763684],[121,130,73,-0.12108032622648232],[121,130,74,-0.1483138075414684],[121,130,75,-0.1792095148651743],[121,130,76,-0.19328232833898187],[121,130,77,-0.20202530243134137],[121,130,78,-0.21635719273894005],[121,130,79,-0.2532448744545215],[121,131,64,-0.052514058363861006],[121,131,65,-0.06233976686693496],[121,131,66,-0.07631775786747963],[121,131,67,-0.08677854909779148],[121,131,68,-0.09956536194836844],[121,131,69,-0.10715039326863106],[121,131,70,-0.1157541546446538],[121,131,71,-0.11948742354714133],[121,131,72,-0.12220386621016446],[121,131,73,-0.12301129305975278],[121,131,74,-0.1596241094437137],[121,131,75,-0.19011873647964522],[121,131,76,-0.19641244904045846],[121,131,77,-0.21281973516352395],[121,131,78,-0.2401183141534335],[121,131,79,-0.2650989356182818],[121,132,64,-0.04552216281556591],[121,132,65,-0.05694258353118753],[121,132,66,-0.06915313930076103],[121,132,67,-0.07876603657264883],[121,132,68,-0.0895480552688269],[121,132,69,-0.10102546805544846],[121,132,70,-0.11194705129797912],[121,132,71,-0.11698493072211341],[121,132,72,-0.11944286819552867],[121,132,73,-0.1193475666518764],[121,132,74,-0.16111655796741225],[121,132,75,-0.19011342661676436],[121,132,76,-0.19675248965648556],[121,132,77,-0.21813920856145771],[121,132,78,-0.25567054346411666],[121,132,79,-0.2629580123834694],[121,133,64,-0.05641017186812146],[121,133,65,-0.06436191808793264],[121,133,66,-0.06954794632108778],[121,133,67,-0.07673529819391377],[121,133,68,-0.08668713827261856],[121,133,69,-0.09953322476596915],[121,133,70,-0.1135458194864723],[121,133,71,-0.1180116718583655],[121,133,72,-0.11971554489039699],[121,133,73,-0.12047791917347445],[121,133,74,-0.1608410681432903],[121,133,75,-0.172115560817726],[121,133,76,-0.18515043912501974],[121,133,77,-0.2109254449039652],[121,133,78,-0.25235374921442105],[121,133,79,-0.2626545965189483],[121,134,64,-0.055833408640485076],[121,134,65,-0.061452668869098975],[121,134,66,-0.06834441708343945],[121,134,67,-0.07737500270181255],[121,134,68,-0.08850815254778069],[121,134,69,-0.10024020233483466],[121,134,70,-0.11460068041992652],[121,134,71,-0.11838782949603607],[121,134,72,-0.11991743119627776],[121,134,73,-0.12289026784951722],[121,134,74,-0.16236870013048643],[121,134,75,-0.1790151300904021],[121,134,76,-0.18937552726126328],[121,134,77,-0.21441740875615045],[121,134,78,-0.253943928648937],[121,134,79,-0.2713114933004003],[121,135,64,-0.04931835556668866],[121,135,65,-0.05610103792311695],[121,135,66,-0.06410861238562529],[121,135,67,-0.07607449165156698],[121,135,68,-0.08604463759096503],[121,135,69,-0.09907915355645847],[121,135,70,-0.11353695252140206],[121,135,71,-0.11910087315194294],[121,135,72,-0.11891442030374601],[121,135,73,-0.1213011644577695],[121,135,74,-0.15213454611878346],[121,135,75,-0.1682305714371365],[121,135,76,-0.17367101415363373],[121,135,77,-0.19684870323127646],[121,135,78,-0.23353070062596593],[121,135,79,-0.2567610859313375],[121,136,64,-0.04771171156656888],[121,136,65,-0.056184698469585036],[121,136,66,-0.06497117452368484],[121,136,67,-0.07890189332870823],[121,136,68,-0.0858251034603],[121,136,69,-0.1000473095564865],[121,136,70,-0.11168945463878094],[121,136,71,-0.11887860196509836],[121,136,72,-0.11959116762686914],[121,136,73,-0.12041854873574873],[121,136,74,-0.16240949886029662],[121,136,75,-0.1754054839949037],[121,136,76,-0.1865921094607775],[121,136,77,-0.20498650066468155],[121,136,78,-0.2393391761432816],[121,136,79,-0.2658165735831155],[121,137,64,-0.048285749454492315],[121,137,65,-0.053943249961163564],[121,137,66,-0.06427702355126813],[121,137,67,-0.07940995265604123],[121,137,68,-0.08991086981005668],[121,137,69,-0.10017275664803837],[121,137,70,-0.11090537247141208],[121,137,71,-0.11677195835415216],[121,137,72,-0.11945766526858204],[121,137,73,-0.1196934760619468],[121,137,74,-0.15545873321702242],[121,137,75,-0.16781858220935783],[121,137,76,-0.1789048681986678],[121,137,77,-0.18998003612070793],[121,137,78,-0.2153156077810321],[121,137,79,-0.24137018203208607],[121,138,64,-0.054608428194001454],[121,138,65,-0.061149293966881846],[121,138,66,-0.06954460639609612],[121,138,67,-0.0834729795176907],[121,138,68,-0.09726766489735302],[121,138,69,-0.10559760429310612],[121,138,70,-0.11486579394773322],[121,138,71,-0.11903093161318512],[121,138,72,-0.12415832793715494],[121,138,73,-0.12596830015703403],[121,138,74,-0.14399353062385334],[121,138,75,-0.15850568074565358],[121,138,76,-0.168787663988534],[121,138,77,-0.1823509537994629],[121,138,78,-0.20034902586727593],[121,138,79,-0.2245165966690441],[121,139,64,-0.05492178724252231],[121,139,65,-0.06056393029171556],[121,139,66,-0.06971372031052253],[121,139,67,-0.08374420943373485],[121,139,68,-0.09753303200581123],[121,139,69,-0.10704878987127935],[121,139,70,-0.11489777358259737],[121,139,71,-0.11657674585482189],[121,139,72,-0.12110254155124425],[121,139,73,-0.12504347338781885],[121,139,74,-0.15475413566604776],[121,139,75,-0.1740530429267147],[121,139,76,-0.1845638629536689],[121,139,77,-0.20024393537470078],[121,139,78,-0.21372058834347363],[121,139,79,-0.24246733173951596],[121,140,64,-0.06685007625338144],[121,140,65,-0.06880801908724721],[121,140,66,-0.07486745331380618],[121,140,67,-0.08611163674813546],[121,140,68,-0.09525740867477953],[121,140,69,-0.10307698268806702],[121,140,70,-0.10897073269348503],[121,140,71,-0.10785721715556382],[121,140,72,-0.11222986385040275],[121,140,73,-0.12609459817454313],[121,140,74,-0.1541982851187394],[121,140,75,-0.17302627259742068],[121,140,76,-0.18466784749790877],[121,140,77,-0.19859352441897046],[121,140,78,-0.20911016146912018],[121,140,79,-0.23991583921761434],[121,141,64,-0.06481430182316485],[121,141,65,-0.07154838769472935],[121,141,66,-0.08273675463789183],[121,141,67,-0.09644798035175345],[121,141,68,-0.10537998120674719],[121,141,69,-0.112460241223441],[121,141,70,-0.1159835350660482],[121,141,71,-0.11464256760283387],[121,141,72,-0.11429774492932615],[121,141,73,-0.1223613874280656],[121,141,74,-0.14652830844631107],[121,141,75,-0.1686536083814525],[121,141,76,-0.18128506838460412],[121,141,77,-0.18718924249738997],[121,141,78,-0.1880444812909908],[121,141,79,-0.21741481117477235],[121,142,64,-0.06523339512117536],[121,142,65,-0.07280142007910226],[121,142,66,-0.08252068044199982],[121,142,67,-0.09646220528309017],[121,142,68,-0.10742450901134268],[121,142,69,-0.11196473629530672],[121,142,70,-0.1152077864824664],[121,142,71,-0.11432712546906104],[121,142,72,-0.1154740848111536],[121,142,73,-0.12410830558344293],[121,142,74,-0.14280931597036967],[121,142,75,-0.16919637913309127],[121,142,76,-0.17878071809985657],[121,142,77,-0.18254343817860805],[121,142,78,-0.1864233592466718],[121,142,79,-0.21766230850628915],[121,143,64,-0.0610443634961679],[121,143,65,-0.06895044488845593],[121,143,66,-0.07821113545873912],[121,143,67,-0.09374768651800733],[121,143,68,-0.10236528354926036],[121,143,69,-0.10998888572943716],[121,143,70,-0.11407220508992758],[121,143,71,-0.11199436392075027],[121,143,72,-0.11355817588238909],[121,143,73,-0.12114270536088162],[121,143,74,-0.1375376988147457],[121,143,75,-0.15921590063951238],[121,143,76,-0.16894023352981183],[121,143,77,-0.17191198235505611],[121,143,78,-0.17602824564360917],[121,143,79,-0.20758226359854332],[121,144,64,-0.061540162106969956],[121,144,65,-0.06851399843039475],[121,144,66,-0.07826926644223262],[121,144,67,-0.09373633103995689],[121,144,68,-0.1012039923839835],[121,144,69,-0.10968419705055085],[121,144,70,-0.11283454068252269],[121,144,71,-0.11006257571464634],[121,144,72,-0.11319775321637865],[121,144,73,-0.11929073192220517],[121,144,74,-0.14215110565337769],[121,144,75,-0.16307737161918356],[121,144,76,-0.1734834530325533],[121,144,77,-0.17812970975228998],[121,144,78,-0.18146790197293738],[121,144,79,-0.21651509395984142],[121,145,64,-0.05852597488194306],[121,145,65,-0.06386135312817771],[121,145,66,-0.07020254031772566],[121,145,67,-0.08455650595162859],[121,145,68,-0.09044179665651739],[121,145,69,-0.09875783641833141],[121,145,70,-0.09938243139921821],[121,145,71,-0.10498443029704993],[121,145,72,-0.11266257974698651],[121,145,73,-0.11688429295490377],[121,145,74,-0.12435910764637617],[121,145,75,-0.13167025800715576],[121,145,76,-0.14417768959218055],[121,145,77,-0.14837170221490564],[121,145,78,-0.14992271673796959],[121,145,79,-0.1603475199169821],[121,146,64,-0.06740408304578299],[121,146,65,-0.07042116344271698],[121,146,66,-0.07483964533366023],[121,146,67,-0.08859816195385853],[121,146,68,-0.09580763070828563],[121,146,69,-0.10141038615165021],[121,146,70,-0.10129381285436251],[121,146,71,-0.1113519305730517],[121,146,72,-0.11732216141960936],[121,146,73,-0.12131005661155088],[121,146,74,-0.12785040303325373],[121,146,75,-0.13785026529286099],[121,146,76,-0.14971651412186399],[121,146,77,-0.15397168114224452],[121,146,78,-0.1568974219705523],[121,146,79,-0.1636487913325041],[121,147,64,-0.06636808867732923],[121,147,65,-0.0714314585554536],[121,147,66,-0.07582690263174496],[121,147,67,-0.08626709466841528],[121,147,68,-0.09291978639200793],[121,147,69,-0.09896946572846732],[121,147,70,-0.10131666290021052],[121,147,71,-0.11007237550741872],[121,147,72,-0.11602600861838311],[121,147,73,-0.11917523656700743],[121,147,74,-0.1298595898484183],[121,147,75,-0.1398110652936378],[121,147,76,-0.14954925918931772],[121,147,77,-0.15265988285925808],[121,147,78,-0.15877706776712053],[121,147,79,-0.16353046779565283],[121,148,64,-0.03421037559653867],[121,148,65,-0.04303025015976428],[121,148,66,-0.04972559266814055],[121,148,67,-0.06216140481162212],[121,148,68,-0.06714738356181914],[121,148,69,-0.076566682459347],[121,148,70,-0.08329021147465718],[121,148,71,-0.0909036279540581],[121,148,72,-0.09662383569766408],[121,148,73,-0.10266260285606545],[121,148,74,-0.11090288859446103],[121,148,75,-0.10786366398352278],[121,148,76,-0.09623253188536593],[121,148,77,-0.1204591644470065],[121,148,78,-0.12134169675979428],[121,148,79,-0.116490026507575],[121,149,64,-0.037828223222655014],[121,149,65,-0.04454876090598242],[121,149,66,-0.05191653557722971],[121,149,67,-0.0628873393719104],[121,149,68,-0.06770840384681258],[121,149,69,-0.07476800240472756],[121,149,70,-0.08336861482243588],[121,149,71,-0.09187244767148368],[121,149,72,-0.09794527394764328],[121,149,73,-0.1050493522932023],[121,149,74,-0.11192621664847074],[121,149,75,-0.1033737902020655],[121,149,76,-0.10194212474073874],[121,149,77,-0.12352325109426784],[121,149,78,-0.11743273073228361],[121,149,79,-0.1111464487763178],[121,150,64,-0.04099732642141475],[121,150,65,-0.04710673461649648],[121,150,66,-0.05341746520946669],[121,150,67,-0.06216528983910624],[121,150,68,-0.0697328031448406],[121,150,69,-0.07561371795569663],[121,150,70,-0.08442988922114629],[121,150,71,-0.09073440886018452],[121,150,72,-0.10131419953954739],[121,150,73,-0.10684479810294867],[121,150,74,-0.11158970019012868],[121,150,75,-0.10363943012396899],[121,150,76,-0.10594442544696771],[121,150,77,-0.11708466178077155],[121,150,78,-0.1068464329589025],[121,150,79,-0.1050901618622804],[121,151,64,-0.038083399554706354],[121,151,65,-0.04739519176718826],[121,151,66,-0.05494828135303247],[121,151,67,-0.06221249599176393],[121,151,68,-0.06799944050159618],[121,151,69,-0.07405936838244455],[121,151,70,-0.08392550987705674],[121,151,71,-0.08885094630695473],[121,151,72,-0.09994890849748855],[121,151,73,-0.10672045297156155],[121,151,74,-0.11444338467858653],[121,151,75,-0.12489921019342427],[121,151,76,-0.12443548276833337],[121,151,77,-0.12946196854186443],[121,151,78,-0.11758725884589302],[121,151,79,-0.11505905789923396],[121,152,64,-0.042116178352979525],[121,152,65,-0.05254278900397052],[121,152,66,-0.059384211062116284],[121,152,67,-0.06715774951098052],[121,152,68,-0.0676562254965084],[121,152,69,-0.07342601191187463],[121,152,70,-0.08347359941928456],[121,152,71,-0.08951037174102291],[121,152,72,-0.09808327879457966],[121,152,73,-0.10398829632062417],[121,152,74,-0.11510133718513636],[121,152,75,-0.12348147676231956],[121,152,76,-0.1243235720014606],[121,152,77,-0.12641603506787202],[121,152,78,-0.11566218207407336],[121,152,79,-0.11085716330074082],[121,153,64,-0.037576653350750305],[121,153,65,-0.054591756437393384],[121,153,66,-0.0696043034310169],[121,153,67,-0.07759540385273078],[121,153,68,-0.07744096847908599],[121,153,69,-0.08367508593524074],[121,153,70,-0.09168427618827092],[121,153,71,-0.09389240655117301],[121,153,72,-0.09690233739755036],[121,153,73,-0.10441017255269548],[121,153,74,-0.11353107782900067],[121,153,75,-0.12085687706095002],[121,153,76,-0.1097303539655848],[121,153,77,-0.11528621001189404],[121,153,78,-0.09292361746504937],[121,153,79,-0.08156839366203078],[121,154,64,-0.04494715127786593],[121,154,65,-0.060629746977949484],[121,154,66,-0.07563848364125289],[121,154,67,-0.08376037676221623],[121,154,68,-0.08637663605845303],[121,154,69,-0.08919835878576446],[121,154,70,-0.0946069139376631],[121,154,71,-0.09747022485864126],[121,154,72,-0.10057874878632295],[121,154,73,-0.11011953594582406],[121,154,74,-0.11626021652378064],[121,154,75,-0.12369210748661445],[121,154,76,-0.1282846743671136],[121,154,77,-0.13272116223333416],[121,154,78,-0.10746268806124232],[121,154,79,-0.08830899296780459],[121,155,64,-0.04671553662817544],[121,155,65,-0.060301464958033436],[121,155,66,-0.07441305510772159],[121,155,67,-0.08279596331851447],[121,155,68,-0.0883522766484007],[121,155,69,-0.08901558693191106],[121,155,70,-0.09256436635608171],[121,155,71,-0.09491564507891732],[121,155,72,-0.09850292809820851],[121,155,73,-0.10597678809068244],[121,155,74,-0.11244657458631077],[121,155,75,-0.12099658442710648],[121,155,76,-0.12869020690098065],[121,155,77,-0.13101541816125337],[121,155,78,-0.11545794961136327],[121,155,79,-0.08756269721303006],[121,156,64,-0.04713358176424184],[121,156,65,-0.05897812763179383],[121,156,66,-0.07517780007095595],[121,156,67,-0.08420520268003934],[121,156,68,-0.09029764463541548],[121,156,69,-0.09088714697228431],[121,156,70,-0.0934688547308301],[121,156,71,-0.09436640193477171],[121,156,72,-0.09883089486577343],[121,156,73,-0.10384807433585097],[121,156,74,-0.10905851336983483],[121,156,75,-0.11975194870826526],[121,156,76,-0.12933563122486375],[121,156,77,-0.12948250500771555],[121,156,78,-0.11166778312761323],[121,156,79,-0.08642001080557804],[121,157,64,-0.05361014954527078],[121,157,65,-0.06200216572914818],[121,157,66,-0.06871628630080374],[121,157,67,-0.07426181482186599],[121,157,68,-0.07619791498035183],[121,157,69,-0.07944795529576673],[121,157,70,-0.08531489646176092],[121,157,71,-0.08896313298253503],[121,157,72,-0.09428105811449203],[121,157,73,-0.09977055635296476],[121,157,74,-0.10686205254396822],[121,157,75,-0.11639540896653582],[121,157,76,-0.1307362194535956],[121,157,77,-0.13111953113714533],[121,157,78,-0.1033780320686799],[121,157,79,-0.09031978005029487],[121,158,64,-0.05473706811221715],[121,158,65,-0.06414950277984859],[121,158,66,-0.06744987937287629],[121,158,67,-0.07105159547299501],[121,158,68,-0.07569888166454797],[121,158,69,-0.0800548877771763],[121,158,70,-0.08643510551186084],[121,158,71,-0.08905082106936843],[121,158,72,-0.09331764252630544],[121,158,73,-0.0969851556814081],[121,158,74,-0.10608417243036179],[121,158,75,-0.11438818245675027],[121,158,76,-0.12960343940350932],[121,158,77,-0.12437529599960326],[121,158,78,-0.08717422231996222],[121,158,79,-0.08667653651325322],[121,159,64,-0.11039589593834358],[121,159,65,-0.11647995436603896],[121,159,66,-0.11184352017846876],[121,159,67,-0.10794955588130878],[121,159,68,-0.10502763256103444],[121,159,69,-0.10672185157567887],[121,159,70,-0.10048658296687206],[121,159,71,-0.09595253682074922],[121,159,72,-0.09447986673424894],[121,159,73,-0.09161245928029488],[121,159,74,-0.09294233100157001],[121,159,75,-0.09316803151349196],[121,159,76,-0.096983363981611],[121,159,77,-0.092315665032657],[121,159,78,-0.06346086347620844],[121,159,79,-0.05675099682447447],[121,160,64,-0.11079752676432726],[121,160,65,-0.11497453887875259],[121,160,66,-0.10989511636224691],[121,160,67,-0.10667550434729003],[121,160,68,-0.10450833597217381],[121,160,69,-0.10407110807316576],[121,160,70,-0.09636375929202268],[121,160,71,-0.09322853316635449],[121,160,72,-0.0932515311616049],[121,160,73,-0.09046744126907612],[121,160,74,-0.0886354211767473],[121,160,75,-0.08984785162689689],[121,160,76,-0.09005672799384472],[121,160,77,-0.08787333256933987],[121,160,78,-0.05938620113127693],[121,160,79,-0.05484544877000105],[121,161,64,-0.10995084409223559],[121,161,65,-0.11316388330185594],[121,161,66,-0.10915502645906786],[121,161,67,-0.10492043133229254],[121,161,68,-0.10603632788296762],[121,161,69,-0.10145309354664821],[121,161,70,-0.09502998748482805],[121,161,71,-0.09194825570093988],[121,161,72,-0.08908710904033701],[121,161,73,-0.08727153318633471],[121,161,74,-0.08559204739340276],[121,161,75,-0.08463267484216075],[121,161,76,-0.08469890993010645],[121,161,77,-0.08464213565634715],[121,161,78,-0.05522345459954359],[121,161,79,-0.049323815012727854],[121,162,64,-0.11292069136816833],[121,162,65,-0.11691128611535363],[121,162,66,-0.11662703169435687],[121,162,67,-0.11163939923546383],[121,162,68,-0.11072997295647859],[121,162,69,-0.10445436018424865],[121,162,70,-0.09670246322859995],[121,162,71,-0.09457078797450222],[121,162,72,-0.09121481521675623],[121,162,73,-0.0906198701827021],[121,162,74,-0.088522637090929],[121,162,75,-0.08371901931227471],[121,162,76,-0.08244007032571607],[121,162,77,-0.08470150656201915],[121,162,78,-0.06651281565510765],[121,162,79,-0.05776282868777313],[121,163,64,-0.11052323489594984],[121,163,65,-0.11283160849932634],[121,163,66,-0.11645789609480295],[121,163,67,-0.11109566910458527],[121,163,68,-0.10745050354300757],[121,163,69,-0.10239989082447308],[121,163,70,-0.09238514881776194],[121,163,71,-0.09019952023169506],[121,163,72,-0.08969471728439646],[121,163,73,-0.0913240247753324],[121,163,74,-0.08583952240979308],[121,163,75,-0.08286918743105037],[121,163,76,-0.08009615757433566],[121,163,77,-0.07829329051393874],[121,163,78,-0.07670770514967981],[121,163,79,-0.06900301264837626],[121,164,64,-0.08591688403200037],[121,164,65,-0.08561832965565007],[121,164,66,-0.08866198770696372],[121,164,67,-0.08447946117599751],[121,164,68,-0.07917482874015616],[121,164,69,-0.07032932848092652],[121,164,70,-0.06157854540173306],[121,164,71,-0.06092168859584713],[121,164,72,-0.057127606566321126],[121,164,73,-0.059618592925825456],[121,164,74,-0.0552265860200141],[121,164,75,-0.05377746888662395],[121,164,76,-0.0512725338405957],[121,164,77,-0.052813400815926795],[121,164,78,-0.05148869728867175],[121,164,79,-0.0439314800990294],[121,165,64,-0.0780539052859032],[121,165,65,-0.08370879482687166],[121,165,66,-0.09173416166358185],[121,165,67,-0.09301985690935846],[121,165,68,-0.085940972609716],[121,165,69,-0.07833471641183809],[121,165,70,-0.06688881225383979],[121,165,71,-0.06147862537803536],[121,165,72,-0.05258877795671043],[121,165,73,-0.04578133758777948],[121,165,74,-0.04285661001229524],[121,165,75,-0.04199653251605605],[121,165,76,-0.04109330866311281],[121,165,77,-0.04680381071236042],[121,165,78,-0.0499382737306892],[121,165,79,-0.038560414414101726],[121,166,64,-0.07472012809845041],[121,166,65,-0.08228840162622453],[121,166,66,-0.09023607763652895],[121,166,67,-0.09340560478559563],[121,166,68,-0.08558407523317574],[121,166,69,-0.07535771407719433],[121,166,70,-0.06461979234504373],[121,166,71,-0.05960482973714618],[121,166,72,-0.05064020392617665],[121,166,73,-0.04177853224430925],[121,166,74,-0.03713890586225997],[121,166,75,-0.036963700872392855],[121,166,76,-0.03710065911110258],[121,166,77,-0.04369213923895267],[121,166,78,-0.049147496813059584],[121,166,79,-0.03945349038412357],[121,167,64,-0.0689096263536952],[121,167,65,-0.07625536763446691],[121,167,66,-0.0839398010166604],[121,167,67,-0.08707918850332072],[121,167,68,-0.08112986858372045],[121,167,69,-0.06914205885556783],[121,167,70,-0.06071327961708285],[121,167,71,-0.054626741121751476],[121,167,72,-0.0470017531794541],[121,167,73,-0.038646296607051475],[121,167,74,-0.03433142366730062],[121,167,75,-0.03531397990226734],[121,167,76,-0.03556575042939232],[121,167,77,-0.043923488958663576],[121,167,78,-0.053752089157967115],[121,167,79,-0.04583697367216659],[121,168,64,-0.06835968981330948],[121,168,65,-0.07488071793046949],[121,168,66,-0.07858885012363748],[121,168,67,-0.0811654869565826],[121,168,68,-0.0750955729015338],[121,168,69,-0.06804100036909602],[121,168,70,-0.05854046344353381],[121,168,71,-0.05006377564688169],[121,168,72,-0.04309241186257781],[121,168,73,-0.03495444016720328],[121,168,74,-0.031179488175655426],[121,168,75,-0.03026833346897323],[121,168,76,-0.034023384993111916],[121,168,77,-0.03847290899322049],[121,168,78,-0.04964023209282124],[121,168,79,-0.04399783636021113],[121,169,64,-0.07668613140428399],[121,169,65,-0.07580105614447531],[121,169,66,-0.07194455221028051],[121,169,67,-0.06764600045512525],[121,169,68,-0.06098573079864506],[121,169,69,-0.05412756863005433],[121,169,70,-0.04892962655539248],[121,169,71,-0.04487324262775522],[121,169,72,-0.041696409366080586],[121,169,73,-0.042029556444327265],[121,169,74,-0.03934688143498842],[121,169,75,-0.03722862948206049],[121,169,76,-0.039374404136781074],[121,169,77,-0.03823844788928685],[121,169,78,-0.03917119268459414],[121,169,79,-0.034359143285277526],[121,170,64,-0.07815089105553574],[121,170,65,-0.07775425984046005],[121,170,66,-0.07267504654909622],[121,170,67,-0.06896252956836152],[121,170,68,-0.06372458215337115],[121,170,69,-0.05729368285292142],[121,170,70,-0.05007754832710664],[121,170,71,-0.04886307763213191],[121,170,72,-0.046299242977373284],[121,170,73,-0.04764868427858725],[121,170,74,-0.04197548301433805],[121,170,75,-0.038463147412223425],[121,170,76,-0.04055591247195085],[121,170,77,-0.04024734093843897],[121,170,78,-0.04001553471987723],[121,170,79,-0.03768499094157023],[121,171,64,-0.07519675302668496],[121,171,65,-0.07471100565333638],[121,171,66,-0.06934045642022868],[121,171,67,-0.06321440201233326],[121,171,68,-0.059526626559358406],[121,171,69,-0.05433959755300508],[121,171,70,-0.045091508310926204],[121,171,71,-0.04704600174115944],[121,171,72,-0.046490997545256915],[121,171,73,-0.04827793358704238],[121,171,74,-0.04191279118700063],[121,171,75,-0.03954142067898106],[121,171,76,-0.04028968292563567],[121,171,77,-0.038252724866568694],[121,171,78,-0.03853768620016709],[121,171,79,-0.035212256571570164],[121,172,64,-0.07256466113847893],[121,172,65,-0.06986249991765475],[121,172,66,-0.06597198696035005],[121,172,67,-0.0571790907836667],[121,172,68,-0.05409230680086595],[121,172,69,-0.05124472375708296],[121,172,70,-0.04405111788155312],[121,172,71,-0.04439674450866282],[121,172,72,-0.04581771645767474],[121,172,73,-0.04475152254840786],[121,172,74,-0.04303133777130798],[121,172,75,-0.03927692922043541],[121,172,76,-0.036110616730786735],[121,172,77,-0.03367057392085662],[121,172,78,-0.03225737419919117],[121,172,79,-0.02793915301509601],[121,173,64,-0.0712426636778897],[121,173,65,-0.06638916005981574],[121,173,66,-0.06203338801699461],[121,173,67,-0.0533907719068809],[121,173,68,-0.04975902876534832],[121,173,69,-0.047433328026314975],[121,173,70,-0.045278481944004106],[121,173,71,-0.04197299437750658],[121,173,72,-0.04401408564184037],[121,173,73,-0.04454410294523893],[121,173,74,-0.04352459888744421],[121,173,75,-0.039985897911257964],[121,173,76,-0.03619154188154847],[121,173,77,-0.0322040662965658],[121,173,78,-0.028191915330781317],[121,173,79,-0.022967424188278542],[121,174,64,-0.06982464665088028],[121,174,65,-0.061301524349661886],[121,174,66,-0.05852641680887202],[121,174,67,-0.049822800834907505],[121,174,68,-0.04879084271266203],[121,174,69,-0.049055817365592246],[121,174,70,-0.045516399383589576],[121,174,71,-0.042025070267544706],[121,174,72,-0.041502730166155286],[121,174,73,-0.04357303493961881],[121,174,74,-0.04328814929551447],[121,174,75,-0.03935641022658207],[121,174,76,-0.0363803170937092],[121,174,77,-0.0298121109256336],[121,174,78,-0.022659081050484683],[121,174,79,-0.018741689074117066],[121,175,64,-0.06339751810269594],[121,175,65,-0.056649158371297005],[121,175,66,-0.04910208196726587],[121,175,67,-0.0452659872242481],[121,175,68,-0.04683010026918095],[121,175,69,-0.04601120229657375],[121,175,70,-0.043120804989718015],[121,175,71,-0.0397518058315907],[121,175,72,-0.03984903995240972],[121,175,73,-0.04317930314494234],[121,175,74,-0.04107208206153394],[121,175,75,-0.04203906162690234],[121,175,76,-0.038070566044117446],[121,175,77,-0.034028502914752415],[121,175,78,-0.025950730280356476],[121,175,79,-0.021023197413973054],[121,176,64,-0.06286061306765728],[121,176,65,-0.05565905781344113],[121,176,66,-0.048547819072258754],[121,176,67,-0.0437242205690708],[121,176,68,-0.04526408005319564],[121,176,69,-0.04515891806753154],[121,176,70,-0.042939429553432606],[121,176,71,-0.038849423749250156],[121,176,72,-0.039203391781746866],[121,176,73,-0.04137551494925115],[121,176,74,-0.03703638269748202],[121,176,75,-0.037636050304501484],[121,176,76,-0.03583699364940543],[121,176,77,-0.032626657864869055],[121,176,78,-0.024757906547288013],[121,176,79,-0.020824441969268387],[121,177,64,-0.06755318315114292],[121,177,65,-0.05776896417724045],[121,177,66,-0.0462178615507715],[121,177,67,-0.044474429260926526],[121,177,68,-0.04498089685370589],[121,177,69,-0.048726226444868716],[121,177,70,-0.04511237034297938],[121,177,71,-0.042283413536034986],[121,177,72,-0.04424016770900384],[121,177,73,-0.04489596719204683],[121,177,74,-0.04295192064036972],[121,177,75,-0.04183732651188177],[121,177,76,-0.04015839203106411],[121,177,77,-0.03467562268741203],[121,177,78,-0.02720428543654675],[121,177,79,-0.029741285470949515],[121,178,64,-0.07048581027460991],[121,178,65,-0.06047619463149929],[121,178,66,-0.0517909919864173],[121,178,67,-0.044876793866574144],[121,178,68,-0.047299180355358836],[121,178,69,-0.052969185844783634],[121,178,70,-0.04842687731191461],[121,178,71,-0.04811450771900182],[121,178,72,-0.046796245324712576],[121,178,73,-0.04913660486415296],[121,178,74,-0.046697441568812253],[121,178,75,-0.044807030525217895],[121,178,76,-0.04586784870995231],[121,178,77,-0.03802048478319678],[121,178,78,-0.036107512993158127],[121,178,79,-0.03861896147935591],[121,179,64,-0.06922368420177853],[121,179,65,-0.06021873380177313],[121,179,66,-0.051711807067428214],[121,179,67,-0.04557396774479383],[121,179,68,-0.04880875515622418],[121,179,69,-0.051682125767600146],[121,179,70,-0.04732932113740876],[121,179,71,-0.04754810984615537],[121,179,72,-0.046370359079283066],[121,179,73,-0.04834333210136904],[121,179,74,-0.045214638545285055],[121,179,75,-0.045365452460846084],[121,179,76,-0.04472505911416168],[121,179,77,-0.03513761790086137],[121,179,78,-0.038679046406010845],[121,179,79,-0.041340036429973484],[121,180,64,-0.05481192210316315],[121,180,65,-0.0476733682945797],[121,180,66,-0.039953654476277536],[121,180,67,-0.03562478008591917],[121,180,68,-0.039835037292869316],[121,180,69,-0.04180967749908471],[121,180,70,-0.0380605835848806],[121,180,71,-0.03861071182670878],[121,180,72,-0.03653422649838817],[121,180,73,-0.036537649882272843],[121,180,74,-0.03358442199268581],[121,180,75,-0.034904021990280615],[121,180,76,-0.03520280891888454],[121,180,77,-0.029282088168187212],[121,180,78,-0.03314284271159195],[121,180,79,-0.03746350278775698],[121,181,64,-0.04095142713303021],[121,181,65,-0.03713076789204321],[121,181,66,-0.03548791365030744],[121,181,67,-0.03338969940573025],[121,181,68,-0.03633532459228225],[121,181,69,-0.037289036930000144],[121,181,70,-0.03663337003217687],[121,181,71,-0.03420528865343585],[121,181,72,-0.025822522784746393],[121,181,73,-0.01984025739693046],[121,181,74,-0.01957099699336734],[121,181,75,-0.02046080953571032],[121,181,76,-0.023362612310692893],[121,181,77,-0.03491740022658878],[121,181,78,-0.05163394952927963],[121,181,79,-0.05805720854182062],[121,182,64,-0.039297374093918175],[121,182,65,-0.03359764643248417],[121,182,66,-0.032851028387897135],[121,182,67,-0.03340308952554262],[121,182,68,-0.03392251869178742],[121,182,69,-0.03310419506222345],[121,182,70,-0.033378117364162185],[121,182,71,-0.03222616284749749],[121,182,72,-0.02302785166453944],[121,182,73,-0.016911147761234854],[121,182,74,-0.015031831454306047],[121,182,75,-0.01529122031110347],[121,182,76,-0.01786204127310452],[121,182,77,-0.03104787392046829],[121,182,78,-0.055098243930795696],[121,182,79,-0.06600769969858925],[121,183,64,-0.035843559220634785],[121,183,65,-0.030893617014219568],[121,183,66,-0.029619541982931652],[121,183,67,-0.03126524272891271],[121,183,68,-0.0306765725036003],[121,183,69,-0.029797993361428035],[121,183,70,-0.0291459872909912],[121,183,71,-0.028505283661925535],[121,183,72,-0.02039859674768371],[121,183,73,-0.016177259264741076],[121,183,74,-0.01213035113155475],[121,183,75,-0.014553117135466018],[121,183,76,-0.0144898673571289],[121,183,77,-0.01708449350313243],[121,183,78,-0.0416505742801721],[121,183,79,-0.059464514242803],[121,184,64,-0.03649801355823995],[121,184,65,-0.032212565482747035],[121,184,66,-0.02987997536247472],[121,184,67,-0.031192605114167063],[121,184,68,-0.029352290070034634],[121,184,69,-0.029974007134193764],[121,184,70,-0.028383282109581798],[121,184,71,-0.026044287616576983],[121,184,72,-0.01846919319402307],[121,184,73,-0.01399026330758879],[121,184,74,-0.011593966860595634],[121,184,75,-0.013041042364775157],[121,184,76,-0.011795884560116751],[121,184,77,-0.02122533820752627],[121,184,78,-0.043608590655435236],[121,184,79,-0.0637805263646305],[121,185,64,-0.039406878338875614],[121,185,65,-0.0340778565147908],[121,185,66,-0.029306676137621973],[121,185,67,-0.02838387921453593],[121,185,68,-0.02597075563904798],[121,185,69,-0.027146593322317197],[121,185,70,-0.027731865834036654],[121,185,71,-0.023689783662763336],[121,185,72,-0.017826637202297824],[121,185,73,-0.013273426068942301],[121,185,74,-0.010630799964958568],[121,185,75,-0.008660760619622704],[121,185,76,-0.0066108502905069255],[121,185,77,-0.022574300573559115],[121,185,78,-0.04201794329796961],[121,185,79,-0.0639890632017231],[121,186,64,-0.04834142197302034],[121,186,65,-0.04225072243848982],[121,186,66,-0.037302617569095683],[121,186,67,-0.03162262329946165],[121,186,68,-0.02805714179586717],[121,186,69,-0.03142118065884712],[121,186,70,-0.032744193519639475],[121,186,71,-0.02927732104910387],[121,186,72,-0.021825034117718245],[121,186,73,-0.01763195676291146],[121,186,74,-0.013976872335934518],[121,186,75,-0.00964105454507884],[121,186,76,-0.007258049314811152],[121,186,77,-0.02855188198508646],[121,186,78,-0.04474644111400614],[121,186,79,-0.06353875672557689],[121,187,64,-0.054235204589404395],[121,187,65,-0.042421804762264384],[121,187,66,-0.03675470660512151],[121,187,67,-0.028981321248660277],[121,187,68,-0.028257106576140348],[121,187,69,-0.029689693857567395],[121,187,70,-0.03297004307025839],[121,187,71,-0.029730363296156193],[121,187,72,-0.023186849732827836],[121,187,73,-0.01761827949083536],[121,187,74,-0.013136518310737644],[121,187,75,-0.007066175826969653],[121,187,76,-0.015592460788163794],[121,187,77,-0.041692658439975674],[121,187,78,-0.05858671029941299],[121,187,79,-0.07372571351637092],[121,188,64,-0.0629269616991584],[121,188,65,-0.047610242632623416],[121,188,66,-0.03873738858872135],[121,188,67,-0.02685278713339205],[121,188,68,-0.02441019659587805],[121,188,69,-0.022058172871353615],[121,188,70,-0.022044960743268102],[121,188,71,-0.017653396523999526],[121,188,72,-0.013228791261164885],[121,188,73,-0.006874858897416597],[121,188,74,3.7682731132365754E-4],[121,188,75,0.0057093625034347895],[121,188,76,-0.00753853304312373],[121,188,77,-0.03960552684262124],[121,188,78,-0.05393862879669412],[121,188,79,-0.06412541575245188],[121,189,64,-0.07271136895847424],[121,189,65,-0.0552064706476384],[121,189,66,-0.04129393612810592],[121,189,67,-0.027879839722188743],[121,189,68,-0.023363306874545478],[121,189,69,-0.022407071327529934],[121,189,70,-0.02049580198640058],[121,189,71,-0.015141815073914225],[121,189,72,-0.01109290118162179],[121,189,73,-0.0013133399427938536],[121,189,74,0.006082678186665066],[121,189,75,0.0134695413961297],[121,189,76,-0.010001467796000026],[121,189,77,-0.04951498335371468],[121,189,78,-0.06135319593491009],[121,189,79,-0.06670333507844893],[121,190,64,-0.07409984375154367],[121,190,65,-0.05674979803908238],[121,190,66,-0.04137482099135892],[121,190,67,-0.02997623843461339],[121,190,68,-0.024035320009450606],[121,190,69,-0.021955035526079275],[121,190,70,-0.01930678820213931],[121,190,71,-0.01398959389802358],[121,190,72,-0.01137991308953161],[121,190,73,-4.100460734448308E-4],[121,190,74,0.006981847155810267],[121,190,75,0.009900074671872424],[121,190,76,-0.015988394933210113],[121,190,77,-0.053289856419193385],[121,190,78,-0.06465834085249259],[121,190,79,-0.07166638763561453],[121,191,64,-0.07063613226633422],[121,191,65,-0.05226656182535169],[121,191,66,-0.03955659637469469],[121,191,67,-0.030774590748259403],[121,191,68,-0.026186101811910847],[121,191,69,-0.02100631282460899],[121,191,70,-0.017173688788799532],[121,191,71,-0.015848883903585576],[121,191,72,-0.010635832835503303],[121,191,73,-0.002649022704831666],[121,191,74,0.0061582375713972876],[121,191,75,0.00984466189197051],[121,191,76,-0.01963108047996236],[121,191,77,-0.04758984085417337],[121,191,78,-0.06521878511432302],[121,191,79,-0.06966437629138315],[121,192,64,-0.06833671462357027],[121,192,65,-0.05202929992040059],[121,192,66,-0.04200211540754553],[121,192,67,-0.031042492839120625],[121,192,68,-0.02598705380060609],[121,192,69,-0.02296227390236398],[121,192,70,-0.01838603298851761],[121,192,71,-0.015564065019562617],[121,192,72,-0.009309665243645737],[121,192,73,-0.003968220066317113],[121,192,74,0.0030149303595656124],[121,192,75,0.0028557124558554114],[121,192,76,-0.02912146631541617],[121,192,77,-0.05304449181916182],[121,192,78,-0.07055327907544508],[121,192,79,-0.0741218508306098],[121,193,64,-0.05873578581784541],[121,193,65,-0.04797294806311459],[121,193,66,-0.03910140291011292],[121,193,67,-0.031216216543318437],[121,193,68,-0.027399952804575384],[121,193,69,-0.022928354722267785],[121,193,70,-0.01776575918280282],[121,193,71,-0.017987939777087597],[121,193,72,-0.0175234742553141],[121,193,73,-0.015540109802155283],[121,193,74,-0.00956880613134839],[121,193,75,-0.007123056005200435],[121,193,76,-0.02589180632481634],[121,193,77,-0.04181357972230512],[121,193,78,-0.052737794371811836],[121,193,79,-0.04773006577734573],[121,194,64,-0.06546027980525616],[121,194,65,-0.05689485074074183],[121,194,66,-0.04692346941908854],[121,194,67,-0.03688390876956896],[121,194,68,-0.034018111321014],[121,194,69,-0.029225128637359016],[121,194,70,-0.0230049427732284],[121,194,71,-0.022201688547465126],[121,194,72,-0.021070752214904398],[121,194,73,-0.01964245184436135],[121,194,74,-0.015073606594292882],[121,194,75,-0.005766419251436214],[121,194,76,-0.025994235019184533],[121,194,77,-0.04713898018880109],[121,194,78,-0.060196030349420115],[121,194,79,-0.04838345452917295],[121,195,64,-0.06618694453503164],[121,195,65,-0.0566666966996564],[121,195,66,-0.048050876248832655],[121,195,67,-0.038486055950739645],[121,195,68,-0.0344265247908845],[121,195,69,-0.027698262056829556],[121,195,70,-0.023032282114018865],[121,195,71,-0.024698300698990955],[121,195,72,-0.021199908792730038],[121,195,73,-0.01885726473639228],[121,195,74,-0.013680089306274651],[121,195,75,-0.004309228787591546],[121,195,76,-0.032380897630328094],[121,195,77,-0.05951876839711297],[121,195,78,-0.07092926466975759],[121,195,79,-0.055683754588990886],[121,196,64,-0.06080000474176976],[121,196,65,-0.057423580587800976],[121,196,66,-0.052268492232633024],[121,196,67,-0.04622279892461156],[121,196,68,-0.04633860362988522],[121,196,69,-0.041726525102092946],[121,196,70,-0.04253431716938537],[121,196,71,-0.04321372291667214],[121,196,72,-0.040377324348453286],[121,196,73,-0.037856433349294435],[121,196,74,-0.03207572328661411],[121,196,75,-0.024174083224291265],[121,196,76,-0.05192128449307301],[121,196,77,-0.08406249166922695],[121,196,78,-0.09607681196240181],[121,196,79,-0.07715827665737032],[121,197,64,-0.0643475421318325],[121,197,65,-0.059379042384997666],[121,197,66,-0.052546304742944624],[121,197,67,-0.047951546163022454],[121,197,68,-0.048146838702876685],[121,197,69,-0.04401094659696907],[121,197,70,-0.044545006010472996],[121,197,71,-0.04111980417643399],[121,197,72,-0.03857894777303686],[121,197,73,-0.035723931467330675],[121,197,74,-0.02907705320482036],[121,197,75,-0.021791514194186137],[121,197,76,-0.05031056321157707],[121,197,77,-0.08912389127375575],[121,197,78,-0.101362745042661],[121,197,79,-0.08853512089420608],[121,198,64,-0.06706038348358648],[121,198,65,-0.061932076865684665],[121,198,66,-0.05354990288681958],[121,198,67,-0.050239248977768936],[121,198,68,-0.04994486569453532],[121,198,69,-0.04326551116186021],[121,198,70,-0.044266524484357556],[121,198,71,-0.04186072353204426],[121,198,72,-0.0381517910436434],[121,198,73,-0.031863208694794115],[121,198,74,-0.027121668332914073],[121,198,75,-0.019895981462761454],[121,198,76,-0.050368500896963785],[121,198,77,-0.07905919532913677],[121,198,78,-0.09710542479006903],[121,198,79,-0.08737832563337712],[121,199,64,-0.06565000612904669],[121,199,65,-0.05985771815419641],[121,199,66,-0.053603499022825504],[121,199,67,-0.05297006088730817],[121,199,68,-0.049303864709097145],[121,199,69,-0.042036836068595734],[121,199,70,-0.04090512084322297],[121,199,71,-0.04110346978768761],[121,199,72,-0.03770574273860701],[121,199,73,-0.03020410913211455],[121,199,74,-0.025010827300598754],[121,199,75,-0.026953625343209414],[121,199,76,-0.05662323354262129],[121,199,77,-0.08700212130215373],[121,199,78,-0.09624540738508477],[121,199,79,-0.09529904974601057],[121,200,64,-0.06621997150140625],[121,200,65,-0.06042360202467563],[121,200,66,-0.05535249743999618],[121,200,67,-0.05452749887011886],[121,200,68,-0.04789597298208921],[121,200,69,-0.041132415664188335],[121,200,70,-0.040058495725360854],[121,200,71,-0.03885223926907956],[121,200,72,-0.033173610006256155],[121,200,73,-0.026215926186203234],[121,200,74,-0.02440503327804884],[121,200,75,-0.027325381353475627],[121,200,76,-0.057051375343427774],[121,200,77,-0.08605182777188933],[121,200,78,-0.09326505235327393],[121,200,79,-0.09194435737419439],[121,201,64,-0.06387321002442616],[121,201,65,-0.05492605862204469],[121,201,66,-0.050501229395274475],[121,201,67,-0.04689883713815997],[121,201,68,-0.040042031680436754],[121,201,69,-0.0319957978294243],[121,201,70,-0.030224426626193956],[121,201,71,-0.02851194864978711],[121,201,72,-0.021757552709686198],[121,201,73,-0.015659281305462985],[121,201,74,-0.012321577098633685],[121,201,75,-0.030818200308961808],[121,201,76,-0.06117319714578883],[121,201,77,-0.09008351036093064],[121,201,78,-0.0854984085964348],[121,201,79,-0.08538501888842209],[121,202,64,-0.07120078231440881],[121,202,65,-0.06299852762920885],[121,202,66,-0.0585673786446058],[121,202,67,-0.05370294895507717],[121,202,68,-0.04614953598347257],[121,202,69,-0.03661899822560191],[121,202,70,-0.03572719806019052],[121,202,71,-0.032848565366489835],[121,202,72,-0.025417987832707392],[121,202,73,-0.018773883161722113],[121,202,74,-0.013609163952790326],[121,202,75,-0.029705091103705943],[121,202,76,-0.05646720280162387],[121,202,77,-0.08865290912075159],[121,202,78,-0.08479206713851184],[121,202,79,-0.08288183246360688],[121,203,64,-0.07513613139395704],[121,203,65,-0.06485166311415912],[121,203,66,-0.063187397384413],[121,203,67,-0.05633621876222547],[121,203,68,-0.04730212437064611],[121,203,69,-0.03956071786345386],[121,203,70,-0.03855103429525637],[121,203,71,-0.032431704491807614],[121,203,72,-0.02627134206519262],[121,203,73,-0.019999013659477774],[121,203,74,-0.012594105498862779],[121,203,75,-0.03482873503928269],[121,203,76,-0.06559162240071152],[121,203,77,-0.10306419591066325],[121,203,78,-0.09682539858861645],[121,203,79,-0.09353191787689734],[121,204,64,-0.07524307233952449],[121,204,65,-0.06249333459786108],[121,204,66,-0.055092839575195104],[121,204,67,-0.045850672474104],[121,204,68,-0.034272080056933496],[121,204,69,-0.02689348143821496],[121,204,70,-0.02369893184065963],[121,204,71,-0.014192529538848364],[121,204,72,-0.007878951746166957],[121,204,73,-0.003957918179007119],[121,204,74,0.002349143618374891],[121,204,75,-0.021347685067712098],[121,204,76,-0.05837260712207418],[121,204,77,-0.09808677232015554],[121,204,78,-0.09298821777968808],[121,204,79,-0.08927709578615192],[121,205,64,-0.087710936587967],[121,205,65,-0.0774115550411766],[121,205,66,-0.06517047957135681],[121,205,67,-0.05518427481775143],[121,205,68,-0.04791764790291063],[121,205,69,-0.041492124332653466],[121,205,70,-0.03413884763215888],[121,205,71,-0.027661879521102453],[121,205,72,-0.02129951689243542],[121,205,73,-0.01644266672403555],[121,205,74,-0.01085258797197236],[121,205,75,-0.006497535962723441],[121,205,76,-0.007535392065782975],[121,205,77,-0.04212153778860624],[121,205,78,-0.07142475087195625],[121,205,79,-0.0937754028600824],[121,206,64,-0.09029004557303182],[121,206,65,-0.08019889101062547],[121,206,66,-0.0661070697820793],[121,206,67,-0.055764885754027924],[121,206,68,-0.05054931677326871],[121,206,69,-0.04319068911531235],[121,206,70,-0.03571348732634057],[121,206,71,-0.03034226736983514],[121,206,72,-0.025457359731129295],[121,206,73,-0.020232179920179713],[121,206,74,-0.01272540343001037],[121,206,75,-0.00904931204074541],[121,206,76,-0.014860309071865536],[121,206,77,-0.04363978794941711],[121,206,78,-0.07281557196040432],[121,206,79,-0.09372747281675177],[121,207,64,-0.09309818066388291],[121,207,65,-0.08080609616131709],[121,207,66,-0.06635344762521524],[121,207,67,-0.059855454942438865],[121,207,68,-0.0543468798491315],[121,207,69,-0.04764906288102125],[121,207,70,-0.039391329509878906],[121,207,71,-0.03404468898619112],[121,207,72,-0.027089644180902955],[121,207,73,-0.020837457466306608],[121,207,74,-0.015258066947329882],[121,207,75,-0.010079426794988106],[121,207,76,-0.011240024077860077],[121,207,77,-0.03872413606022905],[121,207,78,-0.06609586516587511],[121,207,79,-0.09418089258301024],[121,208,64,-0.09315676604643656],[121,208,65,-0.08319102873716089],[121,208,66,-0.07014268408943655],[121,208,67,-0.06556647262026032],[121,208,68,-0.05731393186846795],[121,208,69,-0.051012713207777005],[121,208,70,-0.04064538026356308],[121,208,71,-0.03385627996353607],[121,208,72,-0.02738704537922164],[121,208,73,-0.02115624968260693],[121,208,74,-0.013960900334511028],[121,208,75,-0.009100969488393784],[121,208,76,-0.00384508146852397],[121,208,77,-0.02688904844630933],[121,208,78,-0.06235544066737575],[121,208,79,-0.0944471828037027],[121,209,64,-0.09379307788710134],[121,209,65,-0.08488393592900886],[121,209,66,-0.07247659246981601],[121,209,67,-0.06736543780832915],[121,209,68,-0.06072905074952613],[121,209,69,-0.051561260116645566],[121,209,70,-0.04196180741065218],[121,209,71,-0.03300533006869816],[121,209,72,-0.02694961340608762],[121,209,73,-0.018889861790246543],[121,209,74,-0.01202489934198403],[121,209,75,-0.0073704157124702685],[121,209,76,-0.004514508709752119],[121,209,77,-0.0282601704771892],[121,209,78,-0.06753379796741356],[121,209,79,-0.08854049897725995],[121,210,64,-0.09971148014798396],[121,210,65,-0.09123753960864565],[121,210,66,-0.0783651076056217],[121,210,67,-0.0718354148787004],[121,210,68,-0.06407806877806192],[121,210,69,-0.05820194597064772],[121,210,70,-0.04959976386525346],[121,210,71,-0.03821307627152297],[121,210,72,-0.027898927768019943],[121,210,73,-0.021246247498463683],[121,210,74,-0.01535473082503587],[121,210,75,-0.012561081090000273],[121,210,76,-0.010374544920259576],[121,210,77,-0.030474479378653774],[121,210,78,-0.07548544548778956],[121,210,79,-0.09228581452395967],[121,211,64,-0.09812213268322656],[121,211,65,-0.09013442311201518],[121,211,66,-0.07784621959313233],[121,211,67,-0.07016569289803566],[121,211,68,-0.062278629417060666],[121,211,69,-0.057431447734428806],[121,211,70,-0.051528212381672225],[121,211,71,-0.041472487586079645],[121,211,72,-0.02866947070319939],[121,211,73,-0.021189559627236287],[121,211,74,-0.01650034919321798],[121,211,75,-0.01633968656606545],[121,211,76,-0.012833214194547554],[121,211,77,-0.04557377261131225],[121,211,78,-0.09373362634267418],[121,211,79,-0.1010772626822608],[121,212,64,-0.08069722915428242],[121,212,65,-0.073965896999288],[121,212,66,-0.06673814192772512],[121,212,67,-0.06475293453952587],[121,212,68,-0.06490297973786593],[121,212,69,-0.06460160213040393],[121,212,70,-0.06287348171436709],[121,212,71,-0.05635510871531593],[121,212,72,-0.04356943559926245],[121,212,73,-0.03689837773664503],[121,212,74,-0.03229481683949642],[121,212,75,-0.029686138680358604],[121,212,76,-0.02247077779146206],[121,212,77,-0.057181520163310795],[121,212,78,-0.0972816458889993],[121,212,79,-0.10031874038830248],[121,213,64,-0.08419332880818753],[121,213,65,-0.0764645640355299],[121,213,66,-0.06960097339680948],[121,213,67,-0.06507210563418592],[121,213,68,-0.06441069696229657],[121,213,69,-0.0631695842495418],[121,213,70,-0.06063304312371881],[121,213,71,-0.052093188158169976],[121,213,72,-0.038296147635981326],[121,213,73,-0.02879718413099544],[121,213,74,-0.02385921329311827],[121,213,75,-0.020503982276558447],[121,213,76,-0.03069091715272719],[121,213,77,-0.09544106930182326],[121,213,78,-0.11532097521094808],[121,213,79,-0.10353516471916718],[121,214,64,-0.08084102112550708],[121,214,65,-0.07642044608066441],[121,214,66,-0.0715556390190351],[121,214,67,-0.06624485664592994],[121,214,68,-0.06503112153448327],[121,214,69,-0.06602278618792314],[121,214,70,-0.061714633810347974],[121,214,71,-0.052630921553804985],[121,214,72,-0.04024917238850885],[121,214,73,-0.02902456319716004],[121,214,74,-0.026400549616687752],[121,214,75,-0.023701419486307898],[121,214,76,-0.04236694655026356],[121,214,77,-0.10173435590252271],[121,214,78,-0.11963535183023734],[121,214,79,-0.10482714835939555],[121,215,64,-0.08329905523854356],[121,215,65,-0.07846106521983329],[121,215,66,-0.07310899293411957],[121,215,67,-0.06883954042156923],[121,215,68,-0.07025219239398448],[121,215,69,-0.06719488218907764],[121,215,70,-0.06314568732000365],[121,215,71,-0.05570865421135604],[121,215,72,-0.042058786896760667],[121,215,73,-0.03327251385235126],[121,215,74,-0.03096355992676754],[121,215,75,-0.026552440317395384],[121,215,76,-0.04837565385299375],[121,215,77,-0.09493313093313964],[121,215,78,-0.11794340611807834],[121,215,79,-0.10412694976783658],[121,216,64,-0.08199804482332569],[121,216,65,-0.07976334262436979],[121,216,66,-0.07469223618772773],[121,216,67,-0.07035497146807598],[121,216,68,-0.07043366948692474],[121,216,69,-0.0683170754019543],[121,216,70,-0.06577109706442053],[121,216,71,-0.056166328802238735],[121,216,72,-0.045201997155768656],[121,216,73,-0.0377938928129541],[121,216,74,-0.03395191067086065],[121,216,75,-0.036793131362590166],[121,216,76,-0.08169099568041337],[121,216,77,-0.1197371400409102],[121,216,78,-0.1206686768990672],[121,216,79,-0.10495970654667135],[121,217,64,-0.07457511598905044],[121,217,65,-0.07186808091375951],[121,217,66,-0.07329839836943193],[121,217,67,-0.07206232068359385],[121,217,68,-0.07033008446233877],[121,217,69,-0.0690961310809893],[121,217,70,-0.06995364804115439],[121,217,71,-0.06238857372570507],[121,217,72,-0.0543979343726394],[121,217,73,-0.04927365968569444],[121,217,74,-0.04690450112435586],[121,217,75,-0.06314310973292242],[121,217,76,-0.09656835966292607],[121,217,77,-0.1328718921291518],[121,217,78,-0.11942807305546521],[121,217,79,-0.10390878096416833],[121,218,64,-0.08124859688593745],[121,218,65,-0.07822629552619549],[121,218,66,-0.07923976368987712],[121,218,67,-0.07696802185483304],[121,218,68,-0.07666205997366311],[121,218,69,-0.07600971949134681],[121,218,70,-0.07472228481586578],[121,218,71,-0.06712078346144722],[121,218,72,-0.05890531624321119],[121,218,73,-0.05424127939507034],[121,218,74,-0.05199973455933088],[121,218,75,-0.07331964690347409],[121,218,76,-0.09979715258750725],[121,218,77,-0.13784001908768023],[121,218,78,-0.12492637939609705],[121,218,79,-0.11072754680501422],[121,219,64,-0.08340674195510549],[121,219,65,-0.07972411166828278],[121,219,66,-0.07933349331636215],[121,219,67,-0.07863887280883662],[121,219,68,-0.07609961882728754],[121,219,69,-0.07853922302572634],[121,219,70,-0.07633202477863661],[121,219,71,-0.06745115271647766],[121,219,72,-0.05896368112633378],[121,219,73,-0.054752115250814304],[121,219,74,-0.05144393220930028],[121,219,75,-0.08920825702230595],[121,219,76,-0.11164869485464231],[121,219,77,-0.14994826491742816],[121,219,78,-0.13782839468014055],[121,219,79,-0.12379401000941294],[121,220,64,-0.08036489970469397],[121,220,65,-0.07733697440882942],[121,220,66,-0.07411152291087747],[121,220,67,-0.07005409244237347],[121,220,68,-0.06736340803806878],[121,220,69,-0.0674140487378863],[121,220,70,-0.061740039303513655],[121,220,71,-0.05249134708636216],[121,220,72,-0.04447315781953637],[121,220,73,-0.04082969191489885],[121,220,74,-0.04931491739605418],[121,220,75,-0.08698322464357622],[121,220,76,-0.11953393965371663],[121,220,77,-0.15074701269193452],[121,220,78,-0.140908235784383],[121,220,79,-0.1257607880902309],[121,221,64,-0.08091026526533747],[121,221,65,-0.0791451861108826],[121,221,66,-0.0739120537585089],[121,221,67,-0.0694482931368858],[121,221,68,-0.06982719633686303],[121,221,69,-0.06568445851013265],[121,221,70,-0.059335175110228164],[121,221,71,-0.052852370001481436],[121,221,72,-0.04528910592361188],[121,221,73,-0.056868217761085],[121,221,74,-0.1092098657292285],[121,221,75,-0.14670133054196247],[121,221,76,-0.1625977087924606],[121,221,77,-0.14994851068055623],[121,221,78,-0.139498053178854],[121,221,79,-0.12499473424808924],[121,222,64,-0.08363444011344556],[121,222,65,-0.08124128688531589],[121,222,66,-0.07416605733918287],[121,222,67,-0.07070250494807401],[121,222,68,-0.0698619560155469],[121,222,69,-0.06353835077856873],[121,222,70,-0.05855849951679157],[121,222,71,-0.054815159661974755],[121,222,72,-0.0485039584222718],[121,222,73,-0.06942991734677217],[121,222,74,-0.11372557444776588],[121,222,75,-0.15048531720275696],[121,222,76,-0.1576944905863106],[121,222,77,-0.14586927102302033],[121,222,78,-0.13121054005096688],[121,222,79,-0.11870723483325712],[121,223,64,-0.09224134135953126],[121,223,65,-0.085436446295656],[121,223,66,-0.08020708705728608],[121,223,67,-0.07654209953638616],[121,223,68,-0.07276008633643509],[121,223,69,-0.06696974428013412],[121,223,70,-0.06270925061978094],[121,223,71,-0.056664124086409695],[121,223,72,-0.053427816040470505],[121,223,73,-0.04148837387637847],[121,223,74,-0.09643905916960192],[121,223,75,-0.13573430347663595],[121,223,76,-0.15789007971378102],[121,223,77,-0.14294213515161405],[121,223,78,-0.12648819293368505],[121,223,79,-0.11468248412430392],[121,224,64,-0.09342540301282531],[121,224,65,-0.08596670735361668],[121,224,66,-0.08131039268650961],[121,224,67,-0.07826248754463287],[121,224,68,-0.07223789218318868],[121,224,69,-0.06752542725040477],[121,224,70,-0.06403642909538158],[121,224,71,-0.05822140711843313],[121,224,72,-0.054872726565842245],[121,224,73,-0.04602665087499391],[121,224,74,-0.10902234462785976],[121,224,75,-0.14467050998980152],[121,224,76,-0.16056792200456188],[121,224,77,-0.14420234959712197],[121,224,78,-0.12949947785418395],[121,224,79,-0.11598580315179682],[121,225,64,-0.1038134925874119],[121,225,65,-0.09085409756342792],[121,225,66,-0.07869625430262119],[121,225,67,-0.07192942992384513],[121,225,68,-0.0626031843958385],[121,225,69,-0.05569768725129279],[121,225,70,-0.05564700294683915],[121,225,71,-0.05131181144697679],[121,225,72,-0.04570728585033236],[121,225,73,-0.042899930035650326],[121,225,74,-0.10966126715338681],[121,225,75,-0.15336041421081387],[121,225,76,-0.1633711434254575],[121,225,77,-0.14567315648685084],[121,225,78,-0.13313508721250328],[121,225,79,-0.11923585268576273],[121,226,64,-0.11225380716928135],[121,226,65,-0.09859697496379029],[121,226,66,-0.0841222841451084],[121,226,67,-0.07784756329661885],[121,226,68,-0.06920086069235963],[121,226,69,-0.06188439127048259],[121,226,70,-0.06169316464679106],[121,226,71,-0.05718050159303775],[121,226,72,-0.04799494612608457],[121,226,73,-0.03293654871137151],[121,226,74,-0.09554028405913016],[121,226,75,-0.13803687969890543],[121,226,76,-0.1637766282844098],[121,226,77,-0.14775685829570204],[121,226,78,-0.13569272391478152],[121,226,79,-0.12184001539000641],[121,227,64,-0.11546871594294232],[121,227,65,-0.10117056097819202],[121,227,66,-0.08715735485668817],[121,227,67,-0.08100104382607609],[121,227,68,-0.07243911746956007],[121,227,69,-0.0644536593851684],[121,227,70,-0.06392945941408322],[121,227,71,-0.05675700308080253],[121,227,72,-0.048306654837014976],[121,227,73,-0.03223971601298935],[121,227,74,-0.10565063313523287],[121,227,75,-0.14436820070707382],[121,227,76,-0.17172654121762598],[121,227,77,-0.157422182958034],[121,227,78,-0.14481704267618922],[121,227,79,-0.13421215772430545],[121,228,64,-0.1022843976441783],[121,228,65,-0.09090639725356839],[121,228,66,-0.07911594060606778],[121,228,67,-0.0721715113906319],[121,228,68,-0.06374626875121148],[121,228,69,-0.057627667457666454],[121,228,70,-0.052617042501957825],[121,228,71,-0.045847272519526305],[121,228,72,-0.03539726183509792],[121,228,73,-0.020210222932553548],[121,228,74,-0.11033425601371569],[121,228,75,-0.14580616217088282],[121,228,76,-0.1740677227448432],[121,228,77,-0.1598372551667245],[121,228,78,-0.14562319316466885],[121,228,79,-0.13512966636224658],[121,229,64,-0.09129125997655038],[121,229,65,-0.0883692278061605],[121,229,66,-0.08357623928338923],[121,229,67,-0.08444657998876294],[121,229,68,-0.07744872129968743],[121,229,69,-0.0711361126273518],[121,229,70,-0.061519879805109964],[121,229,71,-0.05659359641149059],[121,229,72,-0.04552071440338577],[121,229,73,-0.09799649407268424],[121,229,74,-0.17850649023942133],[121,229,75,-0.18036295154280915],[121,229,76,-0.17453327123743706],[121,229,77,-0.16406911851198602],[121,229,78,-0.14971308361913208],[121,229,79,-0.13743601655168305],[121,230,64,-0.091631051837852],[121,230,65,-0.08874422924684476],[121,230,66,-0.083667828108863],[121,230,67,-0.08705808738157465],[121,230,68,-0.0827713155621385],[121,230,69,-0.07184801505830836],[121,230,70,-0.06065872632613152],[121,230,71,-0.05510347256789108],[121,230,72,-0.04688200961372467],[121,230,73,-0.09955557560483747],[121,230,74,-0.17729196074512057],[121,230,75,-0.18159975399694475],[121,230,76,-0.17557401156303232],[121,230,77,-0.16241175995446183],[121,230,78,-0.1500349022963074],[121,230,79,-0.14137728374671604],[121,231,64,-0.095883047932659],[121,231,65,-0.09410079503920388],[121,231,66,-0.09164228026873392],[121,231,67,-0.09229051948259875],[121,231,68,-0.08671558363289739],[121,231,69,-0.07682546625983565],[121,231,70,-0.06638433418453114],[121,231,71,-0.05803626744070116],[121,231,72,-0.06478487934409104],[121,231,73,-0.11606231804876566],[121,231,74,-0.16327557547713692],[121,231,75,-0.1780339462929955],[121,231,76,-0.17273288104479267],[121,231,77,-0.1588218397331244],[121,231,78,-0.14679051901388035],[121,231,79,-0.13921604441261443],[121,232,64,-0.09615440561767133],[121,232,65,-0.09418415464041435],[121,232,66,-0.0950796365884516],[121,232,67,-0.09173857098795507],[121,232,68,-0.08713369743684837],[121,232,69,-0.0785721464092651],[121,232,70,-0.07153882503085919],[121,232,71,-0.06254123166392003],[121,232,72,-0.07487100788552709],[121,232,73,-0.11746578175347851],[121,232,74,-0.16127173089034408],[121,232,75,-0.1776902523681805],[121,232,76,-0.17279072556189173],[121,232,77,-0.15890542744238162],[121,232,78,-0.14742639722012144],[121,232,79,-0.13967636096320862],[121,233,64,-0.09838407242529613],[121,233,65,-0.0954831318129816],[121,233,66,-0.09502082587382864],[121,233,67,-0.09251214697382287],[121,233,68,-0.09021670283066029],[121,233,69,-0.08050042074291686],[121,233,70,-0.07452728643731685],[121,233,71,-0.06674057295250495],[121,233,72,-0.08535954254766001],[121,233,73,-0.12788194701031236],[121,233,74,-0.16993973100346121],[121,233,75,-0.18040913382031548],[121,233,76,-0.17681967057005232],[121,233,77,-0.16463473362708447],[121,233,78,-0.15360408693246846],[121,233,79,-0.14515119990332623],[121,234,64,-0.10242890206389335],[121,234,65,-0.10048468910941592],[121,234,66,-0.09967331440567637],[121,234,67,-0.09503832140885221],[121,234,68,-0.09269114676893564],[121,234,69,-0.08524170410217344],[121,234,70,-0.07861454798236168],[121,234,71,-0.07202376319697246],[121,234,72,-0.07343721601536286],[121,234,73,-0.11214605083120446],[121,234,74,-0.15693589477863362],[121,234,75,-0.18202753885557352],[121,234,76,-0.17704877926486443],[121,234,77,-0.1684024417659153],[121,234,78,-0.15863876772863275],[121,234,79,-0.1465253100087173],[121,235,64,-0.10064628089849265],[121,235,65,-0.10100057558179242],[121,235,66,-0.10204663018096759],[121,235,67,-0.09559433160429515],[121,235,68,-0.08957477889480335],[121,235,69,-0.08583709021943553],[121,235,70,-0.07793550851989525],[121,235,71,-0.0689498873194001],[121,235,72,-0.0614761389432911],[121,235,73,-0.04775981136339759],[121,235,74,-0.05455783037540681],[121,235,75,-0.07485069802620027],[121,235,76,-0.14470544430465315],[121,235,77,-0.1788817163710754],[121,235,78,-0.1674259413143759],[121,235,79,-0.1542493771113748],[121,236,64,-0.11416871210091482],[121,236,65,-0.11846477254660945],[121,236,66,-0.12116529429075243],[121,236,67,-0.11431344111082534],[121,236,68,-0.10775247664888371],[121,236,69,-0.10509500355236305],[121,236,70,-0.0983608379342433],[121,236,71,-0.08776034393716176],[121,236,72,-0.082646476810349],[121,236,73,-0.07128499841786308],[121,236,74,-0.07144367278058025],[121,236,75,-0.08901442408970033],[121,236,76,-0.15190340414285156],[121,236,77,-0.18675298011932714],[121,236,78,-0.17634149290599618],[121,236,79,-0.16188107638930696],[121,237,64,-0.1107740686852593],[121,237,65,-0.11422310195092494],[121,237,66,-0.11764923113823303],[121,237,67,-0.11369585571752536],[121,237,68,-0.1077936374342837],[121,237,69,-0.10248434095061057],[121,237,70,-0.09752276976750082],[121,237,71,-0.0906303956125974],[121,237,72,-0.08554081481278976],[121,237,73,-0.07762774069317405],[121,237,74,-0.09735204843568987],[121,237,75,-0.11937675738325523],[121,237,76,-0.1827666390929053],[121,237,77,-0.1874237345119562],[121,237,78,-0.17704275488606938],[121,237,79,-0.16449245355372968],[121,238,64,-0.11292019299428324],[121,238,65,-0.11609306975435743],[121,238,66,-0.11895412837095973],[121,238,67,-0.1162309041113973],[121,238,68,-0.11093269258859767],[121,238,69,-0.10428587783962365],[121,238,70,-0.10107116547535475],[121,238,71,-0.09386228341634757],[121,238,72,-0.08637909801074331],[121,238,73,-0.07716815382440945],[121,238,74,-0.10090212561224655],[121,238,75,-0.14945666825469786],[121,238,76,-0.18665116392402833],[121,238,77,-0.18155481515182306],[121,238,78,-0.1724548132883618],[121,238,79,-0.1622804029508234],[121,239,64,-0.1212825139295196],[121,239,65,-0.1212731141469206],[121,239,66,-0.12573156747143757],[121,239,67,-0.12272035910793963],[121,239,68,-0.11636712858919555],[121,239,69,-0.10900890159235295],[121,239,70,-0.10680079353122014],[121,239,71,-0.09944463802469292],[121,239,72,-0.08890144040807352],[121,239,73,-0.07763818474368764],[121,239,74,-0.09072623166384161],[121,239,75,-0.13641682842137584],[121,239,76,-0.1846090032319927],[121,239,77,-0.17683798936561257],[121,239,78,-0.16699343544800177],[121,239,79,-0.15689400083724978],[121,240,64,-0.12212196942003584],[121,240,65,-0.11992466511988165],[121,240,66,-0.12476144760656888],[121,240,67,-0.12158613999147219],[121,240,68,-0.11671011066431006],[121,240,69,-0.10828459015812769],[121,240,70,-0.10511861802462812],[121,240,71,-0.10164198963997226],[121,240,72,-0.0883801166635596],[121,240,73,-0.07429236869205853],[121,240,74,-0.08612411188784573],[121,240,75,-0.13515277696555683],[121,240,76,-0.18133335632416192],[121,240,77,-0.1745994760347197],[121,240,78,-0.16378416595579437],[121,240,79,-0.15361532501095138],[121,241,64,-0.1310248348983411],[121,241,65,-0.126919640292114],[121,241,66,-0.12401024323896151],[121,241,67,-0.11973997481883254],[121,241,68,-0.11528602360439397],[121,241,69,-0.1077152791073881],[121,241,70,-0.10168155298232598],[121,241,71,-0.09447205956531926],[121,241,72,-0.08069227618428076],[121,241,73,-0.06354243887985388],[121,241,74,-0.047344580293565905],[121,241,75,-0.034176555115949026],[121,241,76,-0.022768350772184684],[121,241,77,-0.009927912219724624],[121,241,78,3.2734383712004766E-4],[121,241,79,-0.06396430707796691],[121,242,64,-0.13732752757354422],[121,242,65,-0.12970961970438957],[121,242,66,-0.12376804817336773],[121,242,67,-0.120785312108576],[121,242,68,-0.11546843700343279],[121,242,69,-0.10881258645737937],[121,242,70,-0.10160928978253865],[121,242,71,-0.09464213460139077],[121,242,72,-0.0813755881705956],[121,242,73,-0.06634300663098874],[121,242,74,-0.049990154276700755],[121,242,75,-0.03472796982969936],[121,242,76,-0.022063055717713123],[121,242,77,-0.008911141877241],[121,242,78,0.0011769016185723263],[121,242,79,-0.05712848234180054],[121,243,64,-0.13749765524234098],[121,243,65,-0.12784307717613047],[121,243,66,-0.11888599888711525],[121,243,67,-0.11586956223578732],[121,243,68,-0.11361017540052155],[121,243,69,-0.10616997622966892],[121,243,70,-0.09806252815662597],[121,243,71,-0.09127842035392396],[121,243,72,-0.07777200985517596],[121,243,73,-0.06281877155915341],[121,243,74,-0.04693768673871487],[121,243,75,-0.03261963617953495],[121,243,76,-0.019633697809781067],[121,243,77,-0.005123371208200236],[121,243,78,0.0010986766090634358],[121,243,79,-0.05062437233354743],[121,244,64,-0.12164294874537698],[121,244,65,-0.10601517689102838],[121,244,66,-0.09074071619663604],[121,244,67,-0.08115246935069664],[121,244,68,-0.07327862022117991],[121,244,69,-0.06489285464659715],[121,244,70,-0.05494249239899798],[121,244,71,-0.046332965793310546],[121,244,72,-0.03096166149077302],[121,244,73,-0.015508393592029962],[121,244,74,0.0016055109174913929],[121,244,75,0.0162568561835809],[121,244,76,0.025884632373717728],[121,244,77,0.04037942060610561],[121,244,78,0.048809831527745595],[121,244,79,-0.016340795712279643],[121,245,64,-0.12133497684359498],[121,245,65,-0.10564950366676204],[121,245,66,-0.08694211325731828],[121,245,67,-0.0742460953207689],[121,245,68,-0.06794827585467175],[121,245,69,-0.06286236338849205],[121,245,70,-0.05220027076635178],[121,245,71,-0.04256793887317947],[121,245,72,-0.02851680617313271],[121,245,73,-0.013284550250936417],[121,245,74,0.005926841748886219],[121,245,75,0.017270139448386887],[121,245,76,0.028071946187338853],[121,245,77,0.04347947650649367],[121,245,78,0.05207536124304776],[121,245,79,-0.01225953569689632],[121,246,64,-0.11626298834081948],[121,246,65,-0.10138198335075337],[121,246,66,-0.08206051545842936],[121,246,67,-0.07136008030737981],[121,246,68,-0.06253600949110238],[121,246,69,-0.0564206725320309],[121,246,70,-0.0494755971919037],[121,246,71,-0.03950685007847489],[121,246,72,-0.027437559884457896],[121,246,73,-0.011211923648835415],[121,246,74,0.007482346103221474],[121,246,75,0.018523940160611513],[121,246,76,0.03019189243496044],[121,246,77,0.04490029144511505],[121,246,78,0.05373792484369233],[121,246,79,-0.01497130763090665],[121,247,64,-0.11583982042950614],[121,247,65,-0.10320596296697945],[121,247,66,-0.08581794170984353],[121,247,67,-0.07681826081393382],[121,247,68,-0.06402914744159414],[121,247,69,-0.05661378152723365],[121,247,70,-0.047807995484228316],[121,247,71,-0.03765207993452181],[121,247,72,-0.025565303759382832],[121,247,73,-0.011045894577429563],[121,247,74,0.005488644425421005],[121,247,75,0.021012404527767564],[121,247,76,0.0325782526708369],[121,247,77,0.04535076075307898],[121,247,78,0.05750601213674904],[121,247,79,0.006875418200724445],[121,248,64,-0.10980750650823656],[121,248,65,-0.09932515661928637],[121,248,66,-0.08410628097471405],[121,248,67,-0.07493511794399935],[121,248,68,-0.06280419469101818],[121,248,69,-0.05447634892165827],[121,248,70,-0.0443488317310438],[121,248,71,-0.034347558197022565],[121,248,72,-0.02394775004024159],[121,248,73,-0.010456721060412386],[121,248,74,0.004745253919574505],[121,248,75,0.02247063853495318],[121,248,76,0.03507226598964856],[121,248,77,0.04446133973270572],[121,248,78,0.05436111683175343],[121,248,79,0.010735103176794075],[121,249,64,-0.11103393104935588],[121,249,65,-0.09503041598800512],[121,249,66,-0.07763210929392002],[121,249,67,-0.06407592401188626],[121,249,68,-0.053685231632408126],[121,249,69,-0.04207902437165098],[121,249,70,-0.03286615340716298],[121,249,71,-0.02715893622853051],[121,249,72,-0.02083637662240903],[121,249,73,-0.00962195245025145],[121,249,74,0.005159491051566198],[121,249,75,0.021953590749248936],[121,249,76,0.034273913032262515],[121,249,77,0.04461308103891852],[121,249,78,0.05201190936365137],[121,249,79,-0.031400522398579114],[121,250,64,-0.1127780033996306],[121,250,65,-0.09640136610900747],[121,250,66,-0.08056978602077365],[121,250,67,-0.06328894083141365],[121,250,68,-0.05331534554181594],[121,250,69,-0.044243772695366224],[121,250,70,-0.03349743445593949],[121,250,71,-0.02759656158301599],[121,250,72,-0.022337761245425802],[121,250,73,-0.010883710202824443],[121,250,74,0.0026328249860726044],[121,250,75,0.02193107662811815],[121,250,76,0.029644782363273885],[121,250,77,0.04168483270077905],[121,250,78,0.018578750197654436],[121,250,79,-0.0072126720538765315],[121,251,64,-0.10810255092970925],[121,251,65,-0.09364437154442662],[121,251,66,-0.0777265267250827],[121,251,67,-0.06282194982404607],[121,251,68,-0.05254670406892256],[121,251,69,-0.04165971011389093],[121,251,70,-0.0309874980873574],[121,251,71,-0.025283807290662264],[121,251,72,-0.02772805449563273],[121,251,73,-0.009319352157908578],[121,251,74,0.004318383198008813],[121,251,75,0.02167581449722436],[121,251,76,0.03433685490382392],[121,251,77,0.040032449036149956],[121,251,78,0.029936330059503108],[121,251,79,0.002062974029003642],[121,252,64,-0.0996784441388456],[121,252,65,-0.08255531302185844],[121,252,66,-0.06857454218029692],[121,252,67,-0.055253145113127],[121,252,68,-0.04443468512066187],[121,252,69,-0.031015848237419014],[121,252,70,-0.022950457866262847],[121,252,71,-0.01909912018419266],[121,252,72,-0.020116109383626964],[121,252,73,0.001255397562080568],[121,252,74,0.014955830357200717],[121,252,75,0.02948899103659941],[121,252,76,0.04287510507914047],[121,252,77,0.04193843944024596],[121,252,78,0.02425005154875913],[121,252,79,0.013786180581784928],[121,253,64,-0.0869765673905505],[121,253,65,-0.07665903994098819],[121,253,66,-0.06870243941731871],[121,253,67,-0.062258970741571065],[121,253,68,-0.05387676394558848],[121,253,69,-0.0399673543484788],[121,253,70,-0.03015843005166506],[121,253,71,-0.02368522617613545],[121,253,72,-0.012710268333752689],[121,253,73,7.264841820256024E-4],[121,253,74,0.015975392072862457],[121,253,75,0.0315351255952927],[121,253,76,0.03860684116882444],[121,253,77,0.014114826596581483],[121,253,78,0.004842700024398822],[121,253,79,0.008791608304225026],[121,254,64,-0.0011434920023499634],[121,254,65,0.0012170400673780501],[121,254,66,0.0020272759340050073],[121,254,67,-7.969512223734432E-4],[121,254,68,0.0022296550323549907],[121,254,69,0.00742241599758503],[121,254,70,0.006491034336345597],[121,254,71,0.002883490557940454],[121,254,72,0.007573947132693562],[121,254,73,0.011782084992203026],[121,254,74,0.015189250392217371],[121,254,75,0.024762241130119725],[121,254,76,0.017650985628111706],[121,254,77,-0.008870229279600864],[121,254,78,-0.014327324056368156],[121,254,79,-0.014978018435780574],[121,255,64,-0.0021831365840066508],[121,255,65,0.003570089722089609],[121,255,66,0.003907467771428003],[121,255,67,0.0023740199264244283],[121,255,68,0.0058778527592238256],[121,255,69,0.007824576030737954],[121,255,70,0.01002160218339504],[121,255,71,0.009628882534613581],[121,255,72,0.009506088212933347],[121,255,73,0.012421617751039865],[121,255,74,0.01626117008877305],[121,255,75,0.025069538274656453],[121,255,76,0.02527072521441758],[121,255,77,-0.010126445951276514],[121,255,78,-0.005608883049130944],[121,255,79,-0.010471148121545731],[121,256,64,-0.002629244930410654],[121,256,65,-8.830579058823895E-4],[121,256,66,0.0025142012251257034],[121,256,67,0.00478819499997378],[121,256,68,0.006257110975298019],[121,256,69,0.006866197304203403],[121,256,70,0.010519680144103732],[121,256,71,0.008541149588052604],[121,256,72,0.008439448908550279],[121,256,73,0.013454192746161137],[121,256,74,0.01814111161391739],[121,256,75,0.025805739865077088],[121,256,76,0.02643069988662612],[121,256,77,-0.014533583619870831],[121,256,78,-0.0031668588753631446],[121,256,79,-0.012245054966032707],[121,257,64,-0.0029298542237781305],[121,257,65,-0.003188238576658703],[121,257,66,0.0022016132149719203],[121,257,67,0.00544853538732136],[121,257,68,0.008532895298934917],[121,257,69,0.0077288496493901765],[121,257,70,-0.013932957037493952],[121,257,71,-0.022357285963823886],[121,257,72,0.008285307016889218],[121,257,73,0.01281418083103543],[121,257,74,0.019809688719823693],[121,257,75,0.010912359062713152],[121,257,76,-0.010629920147490292],[121,257,77,-0.05016810599155429],[121,257,78,-0.05215767066255829],[121,257,79,-0.04944459528411867],[121,258,64,-0.007352053213227738],[121,258,65,-0.006345071314806466],[121,258,66,-5.775245752675795E-4],[121,258,67,0.0022663779844780824],[121,258,68,0.004239676044561325],[121,258,69,0.0037148654699750705],[121,258,70,0.006046243517982344],[121,258,71,0.007889074799292461],[121,258,72,0.0074710477023098715],[121,258,73,0.009624530574838391],[121,258,74,0.017150874365645788],[121,258,75,0.01341670709015935],[121,258,76,-0.01767974613504919],[121,258,77,-0.0559973114784786],[121,258,78,-0.06618826435905162],[121,258,79,-0.0664650492747241],[121,259,64,-0.006626325113724282],[121,259,65,-0.006755019580474128],[121,259,66,-0.0014265312037467504],[121,259,67,0.0027568823758371414],[121,259,68,0.005356999812889604],[121,259,69,0.005166347984573563],[121,259,70,0.007268484079308413],[121,259,71,0.0063774875555489665],[121,259,72,0.010282675700734004],[121,259,73,0.011708785178345338],[121,259,74,0.016263278661303462],[121,259,75,0.020199176150449194],[121,259,76,-0.005065831792841761],[121,259,77,-0.021956054452122252],[121,259,78,-0.04540811508890454],[121,259,79,-0.058615048533197586],[121,260,64,-0.12108184247405607],[121,260,65,-0.1263142703841505],[121,260,66,-0.12391036923606201],[121,260,67,-0.1245404369216922],[121,260,68,-0.12333189310220675],[121,260,69,-0.1256950691838275],[121,260,70,-0.12427405548339293],[121,260,71,-0.13008211647762163],[121,260,72,-0.1264155004703931],[121,260,73,-0.12484517089693344],[121,260,74,-0.12129357573588422],[121,260,75,-0.11563408107267284],[121,260,76,-0.1279266691641825],[121,260,77,-0.13168455760231088],[121,260,78,-0.1371830973289835],[121,260,79,-0.13961344659891267],[121,261,64,-0.13126468507926442],[121,261,65,-0.13247939025015604],[121,261,66,-0.1258515561716667],[121,261,67,-0.12272282363765052],[121,261,68,-0.1201155620918625],[121,261,69,-0.12301201938416265],[121,261,70,-0.11900284849045145],[121,261,71,-0.12254651178242702],[121,261,72,-0.12110253670966961],[121,261,73,-0.11754671018855434],[121,261,74,-0.11352506960138653],[121,261,75,-0.11074319174316918],[121,261,76,-0.12731616174078209],[121,261,77,-0.13643642415655718],[121,261,78,-0.14074504676502914],[121,261,79,-0.1470263184440668],[121,262,64,-0.1389057198959838],[121,262,65,-0.13826972735296028],[121,262,66,-0.1318068394959057],[121,262,67,-0.12737572558855756],[121,262,68,-0.12562993081427418],[121,262,69,-0.12671251762216096],[121,262,70,-0.12383046762570026],[121,262,71,-0.12382078326539729],[121,262,72,-0.1231001143576344],[121,262,73,-0.12114528631885016],[121,262,74,-0.11532391016386764],[121,262,75,-0.11923696447265626],[121,262,76,-0.13341614251510808],[121,262,77,-0.15143869512405464],[121,262,78,-0.15744541131935566],[121,262,79,-0.16509161555757346],[121,263,64,-0.1362868917615067],[121,263,65,-0.1381196933769558],[121,263,66,-0.13382013986810576],[121,263,67,-0.12825821945229052],[121,263,68,-0.12590850793760103],[121,263,69,-0.1274328352988338],[121,263,70,-0.12460453900254209],[121,263,71,-0.12282818878596434],[121,263,72,-0.12253193011579042],[121,263,73,-0.12238252339183761],[121,263,74,-0.11666817927077008],[121,263,75,-0.11616072861050408],[121,263,76,-0.13291741133561247],[121,263,77,-0.15098659981431234],[121,263,78,-0.15476463035883042],[121,263,79,-0.16278152920708305],[121,264,64,-0.13203111443404192],[121,264,65,-0.13466909184257936],[121,264,66,-0.13139008916431374],[121,264,67,-0.12801840048245453],[121,264,68,-0.12614120008015212],[121,264,69,-0.1267469499134018],[121,264,70,-0.1239220549400924],[121,264,71,-0.12203630841295818],[121,264,72,-0.12403459389807964],[121,264,73,-0.12300250518026613],[121,264,74,-0.11798944711052109],[121,264,75,-0.12074432752837755],[121,264,76,-0.1397018855292927],[121,264,77,-0.15592344351015602],[121,264,78,-0.1541751023844063],[121,264,79,-0.16628184370478968],[121,265,64,-0.12080027208230792],[121,265,65,-0.12479064133182886],[121,265,66,-0.1253625937674133],[121,265,67,-0.12233982702752969],[121,265,68,-0.12310598487767535],[121,265,69,-0.12392635709607806],[121,265,70,-0.12365702733952491],[121,265,71,-0.1252202331145304],[121,265,72,-0.15241905892054766],[121,265,73,-0.18015916225316425],[121,265,74,-0.19597199839125018],[121,265,75,-0.22031330646273328],[121,265,76,-0.22468115485565548],[121,265,77,-0.2183061321110795],[121,265,78,-0.20823525774345042],[121,265,79,-0.19851810424915944],[121,266,64,-0.1206623017963559],[121,266,65,-0.12329438493095457],[121,266,66,-0.12451198099441924],[121,266,67,-0.12291950168894696],[121,266,68,-0.12293791475451615],[121,266,69,-0.12214500119661778],[121,266,70,-0.12252615020227338],[121,266,71,-0.12681340651685627],[121,266,72,-0.14171750036129993],[121,266,73,-0.16584762562744274],[121,266,74,-0.1873542027823108],[121,266,75,-0.21087858799119297],[121,266,76,-0.21744148292559423],[121,266,77,-0.2147706858704402],[121,266,78,-0.20570855622348014],[121,266,79,-0.1947073965266148],[121,267,64,-0.11676174781222438],[121,267,65,-0.11949237800494347],[121,267,66,-0.12412116055251786],[121,267,67,-0.1191792524774487],[121,267,68,-0.12027567873300857],[121,267,69,-0.12048003835414167],[121,267,70,-0.11902270516976964],[121,267,71,-0.1251643436756929],[121,267,72,-0.14143368551724017],[121,267,73,-0.17112202726689849],[121,267,74,-0.19825913535258494],[121,267,75,-0.21577444185658642],[121,267,76,-0.22254243908351323],[121,267,77,-0.21859091065064637],[121,267,78,-0.21283472091379826],[121,267,79,-0.19968614365999893],[121,268,64,-0.11074086929859578],[121,268,65,-0.11432967507695932],[121,268,66,-0.1170118344972025],[121,268,67,-0.11041404898164012],[121,268,68,-0.11112838651143413],[121,268,69,-0.11233458819320984],[121,268,70,-0.11111786239614613],[121,268,71,-0.12897151363906406],[121,268,72,-0.16756110356793275],[121,268,73,-0.18960593047748925],[121,268,74,-0.20210523334901753],[121,268,75,-0.20424590266881593],[121,268,76,-0.2165072513021578],[121,268,77,-0.21532758089427426],[121,268,78,-0.20884345674653443],[121,268,79,-0.1948435240379948],[121,269,64,-0.10452222806349348],[121,269,65,-0.112236326583948],[121,269,66,-0.11192414480477061],[121,269,67,-0.10721509152548897],[121,269,68,-0.1092802127620839],[121,269,69,-0.11184087868034595],[121,269,70,-0.11010836626623008],[121,269,71,-0.12763450978724716],[121,269,72,-0.17065646824313208],[121,269,73,-0.19295497280881863],[121,269,74,-0.21271984935909372],[121,269,75,-0.21183479535217448],[121,269,76,-0.22230404181146046],[121,269,77,-0.2137479501218267],[121,269,78,-0.20475055721150734],[121,269,79,-0.1927955139188051],[121,270,64,-0.10618924778855865],[121,270,65,-0.1109819593806095],[121,270,66,-0.11132192212535089],[121,270,67,-0.11115410120109212],[121,270,68,-0.11116334654695118],[121,270,69,-0.11157637615404248],[121,270,70,-0.11217880787395428],[121,270,71,-0.128926101930669],[121,270,72,-0.16722375245404653],[121,270,73,-0.18954216320992973],[121,270,74,-0.21114355375528715],[121,270,75,-0.21385618885883956],[121,270,76,-0.21766514485712765],[121,270,77,-0.20398975739127653],[121,270,78,-0.19359605134764685],[121,270,79,-0.18468032180170144],[121,271,64,-0.10170117550905722],[121,271,65,-0.10683821767472051],[121,271,66,-0.10652371817639257],[121,271,67,-0.11099750786409855],[121,271,68,-0.10748375853011777],[121,271,69,-0.10689427691817584],[121,271,70,-0.1079632412737275],[121,271,71,-0.11439539793304358],[121,271,72,-0.16420415133137883],[121,271,73,-0.17801293863339435],[121,271,74,-0.20742245122287728],[121,271,75,-0.2112947175770816],[121,271,76,-0.21670245463636661],[121,271,77,-0.20138625477167035],[121,271,78,-0.19159009361737464],[121,271,79,-0.18076597002694664],[121,272,64,-0.10334521573459408],[121,272,65,-0.10546598572542816],[121,272,66,-0.1043906022707833],[121,272,67,-0.10838849315193146],[121,272,68,-0.10532014672998402],[121,272,69,-0.10279883612804072],[121,272,70,-0.10264632070956003],[121,272,71,-0.11119968751268311],[121,272,72,-0.16089704258296336],[121,272,73,-0.17484559015288334],[121,272,74,-0.21385927818459294],[121,272,75,-0.21467662036361201],[121,272,76,-0.21806203460527884],[121,272,77,-0.2040585681555424],[121,272,78,-0.1932479712456626],[121,272,79,-0.18125677953912506],[121,273,64,-0.09430903652384175],[121,273,65,-0.09889745278799837],[121,273,66,-0.10019826703216747],[121,273,67,-0.1034590057992096],[121,273,68,-0.1042983225908862],[121,273,69,-0.10210509832345976],[121,273,70,-0.09802727077681472],[121,273,71,-0.09977804412502808],[121,273,72,-0.11518039200487999],[121,273,73,-0.11985808714655932],[121,273,74,-0.1271041694622518],[121,273,75,-0.1231573681633264],[121,273,76,-0.1149918743151852],[121,273,77,-0.10599817788338578],[121,273,78,-0.09550237998023556],[121,273,79,-0.08771379772920268],[121,274,64,-0.09607547355930657],[121,274,65,-0.09930011317882553],[121,274,66,-0.10119415916111368],[121,274,67,-0.10423956759816523],[121,274,68,-0.10254106329758463],[121,274,69,-0.1032055561709032],[121,274,70,-0.0992324611605057],[121,274,71,-0.10122106577174572],[121,274,72,-0.10622343194210564],[121,274,73,-0.11626812032045186],[121,274,74,-0.12460440164188402],[121,274,75,-0.12318655263708432],[121,274,76,-0.11447062776373246],[121,274,77,-0.10445956541229795],[121,274,78,-0.09536255670693461],[121,274,79,-0.08597386140999028],[121,275,64,-0.09593196818265917],[121,275,65,-0.098832037998617],[121,275,66,-0.10081734290937851],[121,275,67,-0.10303336771147378],[121,275,68,-0.09856827729613428],[121,275,69,-0.09933576625241239],[121,275,70,-0.09843844934728561],[121,275,71,-0.09901342636099031],[121,275,72,-0.10604846320321186],[121,275,73,-0.1189379253414716],[121,275,74,-0.1300371815827973],[121,275,75,-0.12932841277871862],[121,275,76,-0.12211959172382017],[121,275,77,-0.1102846901330713],[121,275,78,-0.10007917128026758],[121,275,79,-0.0911291624874816],[121,276,64,-0.08843910524033521],[121,276,65,-0.09177292758191674],[121,276,66,-0.09073122453634465],[121,276,67,-0.09235757906576429],[121,276,68,-0.08982616808870696],[121,276,69,-0.08805281248545649],[121,276,70,-0.08994264809908781],[121,276,71,-0.08881662312025315],[121,276,72,-0.09591386354537489],[121,276,73,-0.10892891302395932],[121,276,74,-0.12696741521777458],[121,276,75,-0.13026052347272984],[121,276,76,-0.1253191847434557],[121,276,77,-0.11226876165102984],[121,276,78,-0.10086971938577788],[121,276,79,-0.0922045716091934],[121,277,64,-0.09527687361952414],[121,277,65,-0.09668475787700123],[121,277,66,-0.09395752767607167],[121,277,67,-0.09274070890410568],[121,277,68,-0.09062042193285383],[121,277,69,-0.08772115765930227],[121,277,70,-0.08974878740934256],[121,277,71,-0.08678818458182302],[121,277,72,-0.09139622995113689],[121,277,73,-0.10489287854903968],[121,277,74,-0.12125606130806418],[121,277,75,-0.12652901455410598],[121,277,76,-0.12125100616086187],[121,277,77,-0.11349226485313735],[121,277,78,-0.09684084870899212],[121,277,79,-0.08936268427900232],[121,278,64,-0.09949083003215566],[121,278,65,-0.09963702763254115],[121,278,66,-0.09760541091835535],[121,278,67,-0.09669859306203571],[121,278,68,-0.09372567221153917],[121,278,69,-0.09080966224612502],[121,278,70,-0.08887579947424784],[121,278,71,-0.08589471648948425],[121,278,72,-0.08599677956455626],[121,278,73,-0.09925508057767106],[121,278,74,-0.11366633184099219],[121,278,75,-0.12440551060927324],[121,278,76,-0.11884445632091087],[121,278,77,-0.11031167114336513],[121,278,78,-0.09468747512989542],[121,278,79,-0.08604418451768212],[121,279,64,-0.09813094433038219],[121,279,65,-0.0976058517957748],[121,279,66,-0.09468839616454687],[121,279,67,-0.09562302316600599],[121,279,68,-0.09149144344656135],[121,279,69,-0.08896469195330735],[121,279,70,-0.08504151643017396],[121,279,71,-0.08159524270859346],[121,279,72,-0.07871635033022727],[121,279,73,-0.09711373766734147],[121,279,74,-0.10896230197401023],[121,279,75,-0.12363602241980345],[121,279,76,-0.12013524513870374],[121,279,77,-0.11070588146488242],[121,279,78,-0.09549357303440664],[121,279,79,-0.0824217614346377],[121,280,64,-0.09741172410813935],[121,280,65,-0.09563026881772371],[121,280,66,-0.09071391859043626],[121,280,67,-0.09255506256635657],[121,280,68,-0.08924470860957681],[121,280,69,-0.084554469722805],[121,280,70,-0.08091695234447224],[121,280,71,-0.07788716692678227],[121,280,72,-0.0775513287200851],[121,280,73,-0.0966708705087782],[121,280,74,-0.10945838530858358],[121,280,75,-0.12212996804401864],[121,280,76,-0.1222770867820197],[121,280,77,-0.1098443562756572],[121,280,78,-0.09622233909047054],[121,280,79,-0.08182789777816746],[121,281,64,-0.0946976355330554],[121,281,65,-0.09140816922439128],[121,281,66,-0.08744443618533973],[121,281,67,-0.08694211588484904],[121,281,68,-0.08483540713846908],[121,281,69,-0.0806493092210748],[121,281,70,-0.07835288963658271],[121,281,71,-0.07889116459265774],[121,281,72,-0.07746068582245152],[121,281,73,-0.10165519114955479],[121,281,74,-0.12012681873694087],[121,281,75,-0.133067700705148],[121,281,76,-0.12963669629430818],[121,281,77,-0.1157974940984827],[121,281,78,-0.10292018332058586],[121,281,79,-0.08963998255285163],[121,282,64,-0.09497162928502834],[121,282,65,-0.09143837808751018],[121,282,66,-0.08626133404209343],[121,282,67,-0.08691546727482302],[121,282,68,-0.08498104289332205],[121,282,69,-0.08089383621639586],[121,282,70,-0.07776240684426225],[121,282,71,-0.07962938609048846],[121,282,72,-0.07861253996800319],[121,282,73,-0.0930388106816317],[121,282,74,-0.11603048597768581],[121,282,75,-0.13069773054381684],[121,282,76,-0.12463687572411897],[121,282,77,-0.11203491256223888],[121,282,78,-0.09946888389903852],[121,282,79,-0.08758843860700599],[121,283,64,-0.09322881729493625],[121,283,65,-0.09108125599634392],[121,283,66,-0.0843750951085221],[121,283,67,-0.08692976608811481],[121,283,68,-0.08199463000613709],[121,283,69,-0.07913648182822003],[121,283,70,-0.07792571918437435],[121,283,71,-0.07702300928729676],[121,283,72,-0.07847913431068936],[121,283,73,-0.09103844141845],[121,283,74,-0.1241969084873539],[121,283,75,-0.1346930532979432],[121,283,76,-0.12488077136934192],[121,283,77,-0.11261265700784698],[121,283,78,-0.10396300086803814],[121,283,79,-0.09064567292109063],[121,284,64,-0.11221034193146852],[121,284,65,-0.10846455117120535],[121,284,66,-0.10508766091127428],[121,284,67,-0.10639237004153895],[121,284,68,-0.09732021896910353],[121,284,69,-0.09412072465083851],[121,284,70,-0.09694788859340714],[121,284,71,-0.09396130213479997],[121,284,72,-0.09893931584292819],[121,284,73,-0.10674836436970928],[121,284,74,-0.13760011126207233],[121,284,75,-0.1422257856953045],[121,284,76,-0.12882911510327785],[121,284,77,-0.11873961470254177],[121,284,78,-0.10665148572743322],[121,284,79,-0.09529750243162799],[121,285,64,-0.11511908345253327],[121,285,65,-0.10926289940323534],[121,285,66,-0.10079252818367015],[121,285,67,-0.09643514162630681],[121,285,68,-0.08804007353106028],[121,285,69,-0.08451236870723003],[121,285,70,-0.08596566385248663],[121,285,71,-0.08482805972922261],[121,285,72,-0.08938770063397398],[121,285,73,-0.09762694684691954],[121,285,74,-0.13735336475322157],[121,285,75,-0.1416566342873471],[121,285,76,-0.12833448578146356],[121,285,77,-0.11754388963227891],[121,285,78,-0.10234133864376832],[121,285,79,-0.08878881101392291],[121,286,64,-0.1181988000949566],[121,286,65,-0.1109325586143765],[121,286,66,-0.10209932616167908],[121,286,67,-0.09682701372585913],[121,286,68,-0.09099098334823341],[121,286,69,-0.08531360740988557],[121,286,70,-0.08319059722725539],[121,286,71,-0.08294744754070828],[121,286,72,-0.08541563781624945],[121,286,73,-0.09321047475859247],[121,286,74,-0.13631082988029758],[121,286,75,-0.1386510095835069],[121,286,76,-0.1250034350388234],[121,286,77,-0.11387979328878303],[121,286,78,-0.10020030348464526],[121,286,79,-0.08897495390341076],[121,287,64,-0.119347240046694],[121,287,65,-0.10874397316013211],[121,287,66,-0.10141712657427804],[121,287,67,-0.09507572386694793],[121,287,68,-0.09217306891744362],[121,287,69,-0.08655585793678364],[121,287,70,-0.08351902183427562],[121,287,71,-0.07901567594300817],[121,287,72,-0.08204971966595609],[121,287,73,-0.09084029646551228],[121,287,74,-0.1297991545476724],[121,287,75,-0.13195103366804278],[121,287,76,-0.11971958259659315],[121,287,77,-0.10732646963612691],[121,287,78,-0.09453532805268713],[121,287,79,-0.0854848159795272],[121,288,64,-0.11712854394505007],[121,288,65,-0.10725479477802896],[121,288,66,-0.10118471677562331],[121,288,67,-0.09537669271483845],[121,288,68,-0.09334909514997532],[121,288,69,-0.08780359890358205],[121,288,70,-0.08317269840656744],[121,288,71,-0.07951242957572033],[121,288,72,-0.08113065808008506],[121,288,73,-0.09026829693345996],[121,288,74,-0.1244037300410348],[121,288,75,-0.12664887978356157],[121,288,76,-0.11562025945116769],[121,288,77,-0.1043529845763281],[121,288,78,-0.09342505345376356],[121,288,79,-0.08231177452825392],[121,289,64,-0.10382535239368099],[121,289,65,-0.1047838327132503],[121,289,66,-0.10558975531595122],[121,289,67,-0.10534660073884604],[121,289,68,-0.10424987167402858],[121,289,69,-0.09795278631069046],[121,289,70,-0.09347391884452586],[121,289,71,-0.09092196931754691],[121,289,72,-0.09262710419458751],[121,289,73,-0.10746878698019001],[121,289,74,-0.13779208501247037],[121,289,75,-0.13148562928247554],[121,289,76,-0.12171358258451884],[121,289,77,-0.10997358125650197],[121,289,78,-0.09842449491234692],[121,289,79,-0.08921727873166707],[121,290,64,-0.1040951812933207],[121,290,65,-0.10598927382673136],[121,290,66,-0.10723271830339387],[121,290,67,-0.10528479388343258],[121,290,68,-0.10393827644406438],[121,290,69,-0.09976335468355238],[121,290,70,-0.09719204662810928],[121,290,71,-0.09688206014073605],[121,290,72,-0.09735165807181283],[121,290,73,-0.10142770721871891],[121,290,74,-0.12961549661349442],[121,290,75,-0.1288415687572338],[121,290,76,-0.11940992534100484],[121,290,77,-0.10612438159065316],[121,290,78,-0.09416216529606539],[121,290,79,-0.08614008985758206],[121,291,64,-0.10083908525137283],[121,291,65,-0.1029230809237319],[121,291,66,-0.10268587874630254],[121,291,67,-0.10240316539143794],[121,291,68,-0.10141697915828413],[121,291,69,-0.10024503482282245],[121,291,70,-0.09850672400485241],[121,291,71,-0.09821891741173448],[121,291,72,-0.09924402197178818],[121,291,73,-0.10051054713873649],[121,291,74,-0.12970313583774057],[121,291,75,-0.1314546172690943],[121,291,76,-0.12277331654187865],[121,291,77,-0.10935424309282477],[121,291,78,-0.09666699081729291],[121,291,79,-0.08566213443439616],[121,292,64,-0.06997531297943635],[121,292,65,-0.06696301336514737],[121,292,66,-0.06541793285783973],[121,292,67,-0.0649592266951518],[121,292,68,-0.05967033405879078],[121,292,69,-0.056902845213840474],[121,292,70,-0.05815753104548112],[121,292,71,-0.05783311661838739],[121,292,72,-0.061213570639207696],[121,292,73,-0.06115195440777975],[121,292,74,-0.09656331203792154],[121,292,75,-0.10489421518862849],[121,292,76,-0.0994594985807914],[121,292,77,-0.08676951927358378],[121,292,78,-0.07246539313435654],[121,292,79,-0.06152159702936666],[121,293,64,-0.07049300388270434],[121,293,65,-0.06741470227796419],[121,293,66,-0.06417426614791219],[121,293,67,-0.06095614879750039],[121,293,68,-0.05597773483638891],[121,293,69,-0.05415017822762016],[121,293,70,-0.055179961391281486],[121,293,71,-0.05626908249712523],[121,293,72,-0.06072757191713777],[121,293,73,-0.061317143130113355],[121,293,74,-0.08959148177406528],[121,293,75,-0.09678846037304309],[121,293,76,-0.09257803498326059],[121,293,77,-0.08035016946782592],[121,293,78,-0.06925208403981134],[121,293,79,-0.05447642684386142],[121,294,64,-0.07185547602646158],[121,294,65,-0.06950089280131391],[121,294,66,-0.06533463944335371],[121,294,67,-0.055632794196418665],[121,294,68,-0.05204370710325009],[121,294,69,-0.04955695765447861],[121,294,70,-0.048877983057947244],[121,294,71,-0.05171275297963831],[121,294,72,-0.057441662162947285],[121,294,73,-0.05544962826684495],[121,294,74,-0.08723854537449477],[121,294,75,-0.0921544068559916],[121,294,76,-0.09115337253712802],[121,294,77,-0.08053058091130019],[121,294,78,-0.07218014056590191],[121,294,79,-0.05568089594999262],[121,295,64,-0.07344383481832925],[121,295,65,-0.06772817512652168],[121,295,66,-0.06373562860041132],[121,295,67,-0.05337676069414394],[121,295,68,-0.04755854058340571],[121,295,69,-0.046272088841666344],[121,295,70,-0.045034430585707004],[121,295,71,-0.0490633937872387],[121,295,72,-0.05566635044565931],[121,295,73,-0.05269390414669657],[121,295,74,-0.050355985608752124],[121,295,75,-0.05619015266129197],[121,295,76,-0.06235835138873038],[121,295,77,-0.059711224191416334],[121,295,78,-0.057556161484777046],[121,295,79,-0.0494599455074943],[121,296,64,-0.07525692955120242],[121,296,65,-0.06597287880858044],[121,296,66,-0.062338283065093876],[121,296,67,-0.05337716880243016],[121,296,68,-0.045131658109895],[121,296,69,-0.04026521088574127],[121,296,70,-0.041219876608032335],[121,296,71,-0.04721768459232895],[121,296,72,-0.053229565979252144],[121,296,73,-0.04986102200965762],[121,296,74,-0.04711857545413346],[121,296,75,-0.05320802919424328],[121,296,76,-0.05664241437918839],[121,296,77,-0.053939555958870566],[121,296,78,-0.051030536125814055],[121,296,79,-0.04662427636582736],[121,297,64,-0.08074698974861554],[121,297,65,-0.06830579140923343],[121,297,66,-0.055477010043038996],[121,297,67,-0.0435372409864445],[121,297,68,-0.03331502867280774],[121,297,69,-0.02804767739900299],[121,297,70,-0.030105148557075703],[121,297,71,-0.04193944270497038],[121,297,72,-0.05182166009500159],[121,297,73,-0.055678119459722016],[121,297,74,-0.051978701919052156],[121,297,75,-0.05767906471569392],[121,297,76,-0.06001074677683263],[121,297,77,-0.059604210535290386],[121,297,78,-0.053742440987800455],[121,297,79,-0.04747361185604121],[121,298,64,-0.08077861110253388],[121,298,65,-0.0681846321903685],[121,298,66,-0.056684652503651366],[121,298,67,-0.044184168551366323],[121,298,68,-0.033950888044134556],[121,298,69,-0.030731495085737],[121,298,70,-0.031305615777110635],[121,298,71,-0.04154437981534519],[121,298,72,-0.05103182535085671],[121,298,73,-0.05558924205079839],[121,298,74,-0.05289662431922088],[121,298,75,-0.05517340182019352],[121,298,76,-0.05489558257110786],[121,298,77,-0.05410452169229336],[121,298,78,-0.04849335848104057],[121,298,79,-0.03899745077179734],[121,299,64,-0.07913636119733881],[121,299,65,-0.06544465253503239],[121,299,66,-0.052768937844261066],[121,299,67,-0.041252051100770015],[121,299,68,-0.034646943840187974],[121,299,69,-0.029571875302388265],[121,299,70,-0.030871503442944273],[121,299,71,-0.04010481951126679],[121,299,72,-0.0488284827127782],[121,299,73,-0.05410398757826726],[121,299,74,-0.051265487915980124],[121,299,75,-0.05023506771506406],[121,299,76,-0.05201955704536477],[121,299,77,-0.051652851473316774],[121,299,78,-0.04468438977411584],[121,299,79,-0.034721317289445996],[121,300,64,-0.07320740371480776],[121,300,65,-0.06610269858884966],[121,300,66,-0.06064557514338649],[121,300,67,-0.051325884994750895],[121,300,68,-0.04602674508298356],[121,300,69,-0.03954888819314356],[121,300,70,-0.03801453618293758],[121,300,71,-0.040021353552557926],[121,300,72,-0.04280287525962245],[121,300,73,-0.040588355726659364],[121,300,74,-0.03665277598677647],[121,300,75,-0.035464563456129694],[121,300,76,-0.02698126315839365],[121,300,77,-0.023018840244009964],[121,300,78,-0.014479051748809299],[121,300,79,-0.014131759240332433],[121,301,64,-0.07037478991646373],[121,301,65,-0.06753957262461796],[121,301,66,-0.06217359852123472],[121,301,67,-0.051108308031633715],[121,301,68,-0.04264057697344474],[121,301,69,-0.03743606210629981],[121,301,70,-0.03417659646355882],[121,301,71,-0.039924300858530146],[121,301,72,-0.041724548552172606],[121,301,73,-0.037241081169283805],[121,301,74,-0.033934120207321096],[121,301,75,-0.03304234996087455],[121,301,76,-0.024115925552141815],[121,301,77,-0.0183561726570948],[121,301,78,-0.016330348480014925],[121,301,79,-0.012492067939390823],[121,302,64,-0.06606853737362244],[121,302,65,-0.06305642663427971],[121,302,66,-0.05845393675203081],[121,302,67,-0.04614506269512915],[121,302,68,-0.03779002138131593],[121,302,69,-0.03216827018340958],[121,302,70,-0.027602645101055603],[121,302,71,-0.03243851289260806],[121,302,72,-0.03298095164787648],[121,302,73,-0.029070846188132438],[121,302,74,-0.027931008004723465],[121,302,75,-0.023901710424035175],[121,302,76,-0.01306131721246194],[121,302,77,-0.008618450818409382],[121,302,78,-0.007791105891149564],[121,302,79,-0.008567857991318931],[121,303,64,-0.06428417194450967],[121,303,65,-0.05847369269552829],[121,303,66,-0.05351782031203965],[121,303,67,-0.043581448041939766],[121,303,68,-0.03633058194345226],[121,303,69,-0.0278162876448661],[121,303,70,-0.027113154655116142],[121,303,71,-0.03066065046263909],[121,303,72,-0.02842743695041644],[121,303,73,-0.025495414775828187],[121,303,74,-0.022997136522906955],[121,303,75,-0.019710464457368432],[121,303,76,-0.008873195631749209],[121,303,77,-0.008725607072004288],[121,303,78,-0.011450469604326084],[121,303,79,-0.003965195121049194],[121,304,64,-0.05904069805138132],[121,304,65,-0.05427729838799371],[121,304,66,-0.04861159472815317],[121,304,67,-0.04341452730132196],[121,304,68,-0.03625133193368492],[121,304,69,-0.025473641919262435],[121,304,70,-0.02616339780128135],[121,304,71,-0.026151236134012434],[121,304,72,-0.024908863750054494],[121,304,73,-0.02193723734138546],[121,304,74,-0.02020185584119709],[121,304,75,-0.017751739501854116],[121,304,76,-0.008330631224161347],[121,304,77,-0.008039246375807907],[121,304,78,-0.008180425739959914],[121,304,79,7.032565380440175E-4],[121,305,64,-0.05364863931379467],[121,305,65,-0.04935894440711193],[121,305,66,-0.044887032810938185],[121,305,67,-0.04006502630190571],[121,305,68,-0.03342879239314131],[121,305,69,-0.0251825293873416],[121,305,70,-0.025783785833133024],[121,305,71,-0.021906613536683966],[121,305,72,-0.02219263966278695],[121,305,73,-0.01928425102755607],[121,305,74,-0.01776794038476842],[121,305,75,-0.015553243400888234],[121,305,76,-0.007393059325835991],[121,305,77,-0.0059811869029652255],[121,305,78,-0.005790155569959582],[121,305,79,0.0017567670450784247],[121,306,64,-0.053418184699590546],[121,306,65,-0.05192568526497736],[121,306,66,-0.04562850187927642],[121,306,67,-0.0406859858030746],[121,306,68,-0.03271345999139509],[121,306,69,-0.026633038664716377],[121,306,70,-0.024028386840942856],[121,306,71,-0.02178163138929068],[121,306,72,-0.022435772234763382],[121,306,73,-0.018748521656904202],[121,306,74,-0.015994705455074684],[121,306,75,-0.01543577749236251],[121,306,76,-0.005906627528637229],[121,306,77,-4.212656024642244E-4],[121,306,78,-0.0016759541909125248],[121,306,79,0.005764758516288605],[121,307,64,-0.054765186699494636],[121,307,65,-0.04852308078097628],[121,307,66,-0.042417104241732034],[121,307,67,-0.037138824202787454],[121,307,68,-0.029081384479825154],[121,307,69,-0.025500334866337335],[121,307,70,-0.02169060066709036],[121,307,71,-0.021506630219961617],[121,307,72,-0.019241148333892982],[121,307,73,-0.014844949459276682],[121,307,74,-0.01471702111396854],[121,307,75,-0.013618300153044896],[121,307,76,-0.006367809114389861],[121,307,77,-0.004128052213384595],[121,307,78,-0.0011211069144805956],[121,307,79,0.00792964196468586],[121,308,64,-0.02987886616378313],[121,308,65,-0.02340339205246242],[121,308,66,-0.01899293142199554],[121,308,67,-0.015791029502198337],[121,308,68,-0.009146754353798192],[121,308,69,-0.010948274731115273],[121,308,70,-0.013159143268414913],[121,308,71,-0.0183158072801215],[121,308,72,-0.02198583864941403],[121,308,73,-0.022876240056008676],[121,308,74,-0.028066613818537284],[121,308,75,-0.023537937978478626],[121,308,76,-0.02042931834830912],[121,308,77,-0.022641020906275136],[121,308,78,-0.014484151520824677],[121,308,79,-0.005004279505724999],[121,309,64,-0.024400763352647528],[121,309,65,-0.017844397456264274],[121,309,66,-0.01628795921071796],[121,309,67,-0.009929097377807616],[121,309,68,-0.005221619073606409],[121,309,69,-0.007579057670049641],[121,309,70,-0.012208547117172952],[121,309,71,-0.017001830504379756],[121,309,72,-0.018945812247392904],[121,309,73,-0.0230171316144043],[121,309,74,-0.026673282437695373],[121,309,75,-0.02258120962493755],[121,309,76,-0.02173951603790926],[121,309,77,-0.014237837127455837],[121,309,78,0.0051131510460384055],[121,309,79,0.01451747492337407],[121,310,64,-0.017577578856956877],[121,310,65,-0.011470763839461079],[121,310,66,-0.007312650336909879],[121,310,67,-2.005733641774199E-4],[121,310,68,0.0038064790096056372],[121,310,69,0.002546278983597647],[121,310,70,-0.0035081678883989026],[121,310,71,-0.009103205910305542],[121,310,72,-0.011428127456709139],[121,310,73,-0.015080435620708946],[121,310,74,-0.01887482257517377],[121,310,75,-0.015509505779796817],[121,310,76,-0.014089196222247982],[121,310,77,-0.006535326051645805],[121,310,78,0.007407314275641959],[121,310,79,0.017796623127806326],[121,311,64,-0.018694493676502805],[121,311,65,-0.01106211113918594],[121,311,66,-0.002275041395767091],[121,311,67,0.0032828269217669848],[121,311,68,0.00819945696104199],[121,311,69,0.00381218717437376],[121,311,70,-4.8817113506305354E-4],[121,311,71,-0.007421156211343843],[121,311,72,-0.008192294200944056],[121,311,73,-0.01081139838968287],[121,311,74,-0.016676126435996544],[121,311,75,-0.013603988446900236],[121,311,76,-0.01377554256028686],[121,311,77,-0.0029825866096726515],[121,311,78,0.00645654613468098],[121,311,79,0.015794703824804638],[121,312,64,-0.02724619723305642],[121,312,65,-0.018918759257576495],[121,312,66,-0.011465010860077812],[121,312,67,-0.004696608422860918],[121,312,68,-7.698215163867705E-5],[121,312,69,-0.004003860795216099],[121,312,70,-0.006073681211319987],[121,312,71,-0.00733756055390046],[121,312,72,-0.0032896709096478793],[121,312,73,0.0031879314176140455],[121,312,74,7.915850769293492E-4],[121,312,75,-0.0010797070841174483],[121,312,76,-0.0017754609662820053],[121,312,77,0.0081332942938911],[121,312,78,0.016785896527980924],[121,312,79,0.025647162174234704],[121,313,64,-0.02608531491417676],[121,313,65,-0.020365647596127745],[121,313,66,-0.012232000792977121],[121,313,67,-0.004935956603092484],[121,313,68,1.4374454249270474E-4],[121,313,69,-0.00342490174297512],[121,313,70,-0.003929997603272978],[121,313,71,-0.0030436295429341065],[121,313,72,-9.417207927698706E-4],[121,313,73,0.006671962134273485],[121,313,74,0.0063611575792404396],[121,313,75,0.0036266449679148854],[121,313,76,0.0033783194449621967],[121,313,77,0.008239828657611258],[121,313,78,0.018464691841114246],[121,313,79,0.024399184882234005],[121,314,64,-0.029917210473416167],[121,314,65,-0.0257280467456876],[121,314,66,-0.017970027091670115],[121,314,67,-0.007548671873617366],[121,314,68,-0.004239572995706237],[121,314,69,-0.006315911751636663],[121,314,70,-0.004534589896126678],[121,314,71,-0.0012547036259394628],[121,314,72,0.0016572811881393756],[121,314,73,0.007592866534558845],[121,314,74,0.008700971838155727],[121,314,75,0.005867148037931355],[121,314,76,0.006274188005332221],[121,314,77,0.007380476811424813],[121,314,78,0.016659782792417623],[121,314,79,0.02245934432546295],[121,315,64,-0.03032571382698264],[121,315,65,-0.025500080124721367],[121,315,66,-0.0184085699393262],[121,315,67,-0.00745410229555761],[121,315,68,-0.005346255776228492],[121,315,69,-0.0047399743911069325],[121,315,70,-0.001957328265677627],[121,315,71,4.957498027200469E-4],[121,315,72,0.008213890221139206],[121,315,73,0.011904238231864109],[121,315,74,0.013125389303912924],[121,315,75,0.010943575808017858],[121,315,76,0.008962023569932517],[121,315,77,0.011782528457218461],[121,315,78,0.017564232270697387],[121,315,79,0.01971081600362562],[121,316,64,-0.03810548131840939],[121,316,65,-0.029553306082115344],[121,316,66,-0.023134864832562788],[121,316,67,-0.012998977258698793],[121,316,68,-0.0076170408615848645],[121,316,69,-0.0026113120242713256],[121,316,70,0.0024172614367647394],[121,316,71,0.005913745260527625],[121,316,72,0.014259744302349317],[121,316,73,0.01561034627760513],[121,316,74,0.01772559242885907],[121,316,75,0.016238600213570695],[121,316,76,0.016095977013742976],[121,316,77,0.0175876942412215],[121,316,78,0.021986014285709957],[121,316,79,0.027880095381738343],[121,317,64,-0.03657620604462329],[121,317,65,-0.029579922805768794],[121,317,66,-0.023193300905975697],[121,317,67,-0.01369998416114658],[121,317,68,-0.008317528029142748],[121,317,69,-0.003468971278397334],[121,317,70,0.003869153988818111],[121,317,71,0.008352957343751535],[121,317,72,0.016009734627888225],[121,317,73,0.01719223822422912],[121,317,74,0.018965376327912342],[121,317,75,0.01962746483617364],[121,317,76,0.019780594041260424],[121,317,77,0.01699580281239264],[121,317,78,0.01917896508061943],[121,317,79,0.024696395431685978],[121,318,64,-0.029539937269625477],[121,318,65,-0.021712854953212096],[121,318,66,-0.014500013730794126],[121,318,67,-0.008763749595387976],[121,318,68,-9.09406874435234E-4],[121,318,69,0.005084345129720558],[121,318,70,0.01347911291287987],[121,318,71,0.01911613218551035],[121,318,72,0.02521056275459284],[121,318,73,0.030505391970564108],[121,318,74,0.029227827757377964],[121,318,75,0.02888160855054228],[121,318,76,0.03056784750006296],[121,318,77,0.025180805619576113],[121,318,78,0.026514033782283997],[121,318,79,0.029159758028480656],[121,319,64,-0.027447835658049716],[121,319,65,-0.019072998297636243],[121,319,66,-0.011189949702587548],[121,319,67,-0.004933707318305003],[121,319,68,0.001777388668500579],[121,319,69,0.006830151573212248],[121,319,70,0.014159945309123914],[121,319,71,0.022111459557332333],[121,319,72,0.02568047378108572],[121,319,73,0.030196416966876347],[121,319,74,0.028165898310543835],[121,319,75,0.028687354817629754],[121,319,76,0.03200374172032186],[121,319,77,0.024723229396783578],[121,319,78,0.025651430130283495],[121,319,79,0.023060375328729968],[122,-64,64,-0.4343673202638547],[122,-64,65,-0.426057194489425],[122,-64,66,-0.4228317268926236],[122,-64,67,-0.41831197951239313],[122,-64,68,-0.4133816375392846],[122,-64,69,-0.40918942070993325],[122,-64,70,-0.4001902687303567],[122,-64,71,-0.38911097390207194],[122,-64,72,-0.3754505265889695],[122,-64,73,-0.36621497616135973],[122,-64,74,-0.3592351278950342],[122,-64,75,-0.35357557806095774],[122,-64,76,-0.3552560594813961],[122,-64,77,-0.35600332399743545],[122,-64,78,-0.35866169109075025],[122,-64,79,-0.3644337703673526],[122,-63,64,-0.44229766249417657],[122,-63,65,-0.43332734173183135],[122,-63,66,-0.4252461521405886],[122,-63,67,-0.41860745769178587],[122,-63,68,-0.4136875868270997],[122,-63,69,-0.4076794823479112],[122,-63,70,-0.3978793482057837],[122,-63,71,-0.38319664798013975],[122,-63,72,-0.3681690441458511],[122,-63,73,-0.35803370140461316],[122,-63,74,-0.3492891851788304],[122,-63,75,-0.3448422971912681],[122,-63,76,-0.34735688261022124],[122,-63,77,-0.352877512798654],[122,-63,78,-0.3579982806307216],[122,-63,79,-0.3639183601614618],[122,-62,64,-0.44173914845470824],[122,-62,65,-0.43278603762326295],[122,-62,66,-0.4252430773993063],[122,-62,67,-0.415951660776928],[122,-62,68,-0.41004389850161516],[122,-62,69,-0.40492953347157284],[122,-62,70,-0.3936966617337624],[122,-62,71,-0.3788592870865025],[122,-62,72,-0.3612318526916418],[122,-62,73,-0.3516941840898383],[122,-62,74,-0.3437444853870498],[122,-62,75,-0.3396099240642759],[122,-62,76,-0.34095904143853834],[122,-62,77,-0.3474484456086668],[122,-62,78,-0.35178776756297586],[122,-62,79,-0.356980106116252],[122,-61,64,-0.4446856958386333],[122,-61,65,-0.4364926617262571],[122,-61,66,-0.42885628030900524],[122,-61,67,-0.41738355386992454],[122,-61,68,-0.41108540818805156],[122,-61,69,-0.4056633504224612],[122,-61,70,-0.39562205352780444],[122,-61,71,-0.37693489215874865],[122,-61,72,-0.36067294236355985],[122,-61,73,-0.35047610710508603],[122,-61,74,-0.34127686345512154],[122,-61,75,-0.3387412885816311],[122,-61,76,-0.34154953149974376],[122,-61,77,-0.3449052605874689],[122,-61,78,-0.35001727910091046],[122,-61,79,-0.35605524129359567],[122,-60,64,-0.4434891615651534],[122,-60,65,-0.43629769124696793],[122,-60,66,-0.4262695592427226],[122,-60,67,-0.41385431146849816],[122,-60,68,-0.4068409164283355],[122,-60,69,-0.3997699011357755],[122,-60,70,-0.3895725586146755],[122,-60,71,-0.369751227805838],[122,-60,72,-0.3536537199852012],[122,-60,73,-0.3426622756277889],[122,-60,74,-0.3346937208808078],[122,-60,75,-0.3313298021290305],[122,-60,76,-0.3322179580993224],[122,-60,77,-0.3369056449852463],[122,-60,78,-0.34345717694346933],[122,-60,79,-0.34872345745602873],[122,-59,64,-0.4285966135851259],[122,-59,65,-0.42200988211729273],[122,-59,66,-0.41527862206000427],[122,-59,67,-0.40666539264482016],[122,-59,68,-0.3999238269170662],[122,-59,69,-0.3938629414358262],[122,-59,70,-0.38332837533434866],[122,-59,71,-0.36740549282143437],[122,-59,72,-0.35572215271502533],[122,-59,73,-0.3450654096444008],[122,-59,74,-0.33891180015975064],[122,-59,75,-0.3345822458397651],[122,-59,76,-0.33067818664065773],[122,-59,77,-0.33259441048725985],[122,-59,78,-0.33676437423089467],[122,-59,79,-0.3355128156414814],[122,-58,64,-0.42549163406514673],[122,-58,65,-0.41953609293215116],[122,-58,66,-0.40982512765856083],[122,-58,67,-0.40456450988081305],[122,-58,68,-0.4004760734567548],[122,-58,69,-0.39216443262823847],[122,-58,70,-0.3807496344782453],[122,-58,71,-0.36619879078166373],[122,-58,72,-0.3530367569651583],[122,-58,73,-0.34375782526536697],[122,-58,74,-0.3357076417581851],[122,-58,75,-0.3323688242171299],[122,-58,76,-0.3286491465766149],[122,-58,77,-0.32886458897486265],[122,-58,78,-0.33163965255301925],[122,-58,79,-0.330684167489433],[122,-57,64,-0.42770803915587796],[122,-57,65,-0.421492316673005],[122,-57,66,-0.412076938590356],[122,-57,67,-0.40887311360215756],[122,-57,68,-0.40227823126476897],[122,-57,69,-0.3926176434670466],[122,-57,70,-0.3816455733655102],[122,-57,71,-0.3672987760647672],[122,-57,72,-0.3549869989792899],[122,-57,73,-0.345178698013309],[122,-57,74,-0.3359866450028218],[122,-57,75,-0.3308446970673021],[122,-57,76,-0.32867784541855877],[122,-57,77,-0.3265567598971221],[122,-57,78,-0.32824281756284085],[122,-57,79,-0.3256827339450835],[122,-56,64,-0.42426100190626315],[122,-56,65,-0.41744812753899313],[122,-56,66,-0.4105106892026612],[122,-56,67,-0.40823349935381265],[122,-56,68,-0.3974906372189622],[122,-56,69,-0.38770799679378215],[122,-56,70,-0.37860849209973607],[122,-56,71,-0.3669605620384887],[122,-56,72,-0.35229941880597476],[122,-56,73,-0.3417709010814122],[122,-56,74,-0.3336296060235781],[122,-56,75,-0.32647079568110243],[122,-56,76,-0.32448081499523834],[122,-56,77,-0.32338536521339295],[122,-56,78,-0.3230540221735342],[122,-56,79,-0.3191657502151342],[122,-55,64,-0.41921364601105354],[122,-55,65,-0.41232236345265716],[122,-55,66,-0.4087349021193548],[122,-55,67,-0.40712641484350187],[122,-55,68,-0.3958713565816927],[122,-55,69,-0.38420833252987696],[122,-55,70,-0.375017244720733],[122,-55,71,-0.36332897466808256],[122,-55,72,-0.34862826195878077],[122,-55,73,-0.3379468836446113],[122,-55,74,-0.3302845604527568],[122,-55,75,-0.3231942271257556],[122,-55,76,-0.32180109365206744],[122,-55,77,-0.3213801047922061],[122,-55,78,-0.317478385096065],[122,-55,79,-0.31400648864422803],[122,-54,64,-0.4157184991205099],[122,-54,65,-0.4104652236531413],[122,-54,66,-0.4078561211454965],[122,-54,67,-0.40466878781780524],[122,-54,68,-0.3936826468898946],[122,-54,69,-0.3831787344882354],[122,-54,70,-0.3738470621134744],[122,-54,71,-0.36036115974581606],[122,-54,72,-0.3478242703639252],[122,-54,73,-0.33610457117624226],[122,-54,74,-0.3277656988193729],[122,-54,75,-0.31935242215847903],[122,-54,76,-0.3184074433661936],[122,-54,77,-0.31683419977306265],[122,-54,78,-0.3131862045913852],[122,-54,79,-0.30707028998501434],[122,-53,64,-0.42250140319660895],[122,-53,65,-0.41421342580809023],[122,-53,66,-0.4088142244717942],[122,-53,67,-0.40568150070070175],[122,-53,68,-0.3971039738005253],[122,-53,69,-0.38795549813533],[122,-53,70,-0.37882428601987467],[122,-53,71,-0.3644447813962959],[122,-53,72,-0.35178070431336933],[122,-53,73,-0.33874162485793285],[122,-53,74,-0.32838968108461936],[122,-53,75,-0.31898872353259067],[122,-53,76,-0.3149931423502342],[122,-53,77,-0.31671484170816905],[122,-53,78,-0.31358464227083654],[122,-53,79,-0.3069223380363966],[122,-52,64,-0.4245493847622462],[122,-52,65,-0.41227127035610767],[122,-52,66,-0.4033821759456431],[122,-52,67,-0.3981197082905608],[122,-52,68,-0.39155110543045246],[122,-52,69,-0.3824397735958456],[122,-52,70,-0.3743364536833815],[122,-52,71,-0.3569411404934185],[122,-52,72,-0.34461679596265987],[122,-52,73,-0.3321165104252561],[122,-52,74,-0.3190314923254303],[122,-52,75,-0.3084659019830079],[122,-52,76,-0.30447149728527717],[122,-52,77,-0.3054828033085586],[122,-52,78,-0.3066326025912417],[122,-52,79,-0.29918614658186626],[122,-51,64,-0.4436107158381552],[122,-51,65,-0.43287417994722494],[122,-51,66,-0.42582742939079904],[122,-51,67,-0.42139923525456857],[122,-51,68,-0.41470676071368934],[122,-51,69,-0.40797444564124885],[122,-51,70,-0.39710570947675367],[122,-51,71,-0.37833641075022834],[122,-51,72,-0.36412611225411784],[122,-51,73,-0.3485612501767629],[122,-51,74,-0.33380276302001],[122,-51,75,-0.32106991404925833],[122,-51,76,-0.31208564754995105],[122,-51,77,-0.30823595884011645],[122,-51,78,-0.3046745320242621],[122,-51,79,-0.28989541151195614],[122,-50,64,-0.44224941907929605],[122,-50,65,-0.4288540821620806],[122,-50,66,-0.4252403188823797],[122,-50,67,-0.42188342843499266],[122,-50,68,-0.41331637542910915],[122,-50,69,-0.40830534164123183],[122,-50,70,-0.3948731753791422],[122,-50,71,-0.37582822645771546],[122,-50,72,-0.3636580044527667],[122,-50,73,-0.35059566940892134],[122,-50,74,-0.3346636677101881],[122,-50,75,-0.3170060124629913],[122,-50,76,-0.3107767650735529],[122,-50,77,-0.30343633284121385],[122,-50,78,-0.30114126594453955],[122,-50,79,-0.28902778956404884],[122,-49,64,-0.3929847767825686],[122,-49,65,-0.3676204045616639],[122,-49,66,-0.429634866236285],[122,-49,67,-0.4270787574535565],[122,-49,68,-0.4182501268538914],[122,-49,69,-0.40968356700572883],[122,-49,70,-0.3930383926475889],[122,-49,71,-0.37618881416437744],[122,-49,72,-0.36470110901070757],[122,-49,73,-0.35083316721507696],[122,-49,74,-0.33515287586672715],[122,-49,75,-0.3195450835221404],[122,-49,76,-0.3105458681221254],[122,-49,77,-0.3032773050627465],[122,-49,78,-0.3006649444380679],[122,-49,79,-0.28693898483593155],[122,-48,64,-0.33089083013165516],[122,-48,65,-0.33025738142649],[122,-48,66,-0.4272818580746587],[122,-48,67,-0.42358141185356885],[122,-48,68,-0.41571661676501614],[122,-48,69,-0.4044358070486564],[122,-48,70,-0.3881645818837895],[122,-48,71,-0.37376344442055315],[122,-48,72,-0.3609303890620839],[122,-48,73,-0.3498085844352334],[122,-48,74,-0.33352738923880054],[122,-48,75,-0.3180792713577973],[122,-48,76,-0.31079150677981987],[122,-48,77,-0.3036251184977474],[122,-48,78,-0.29802300317680575],[122,-48,79,-0.2848803266003112],[122,-47,64,-0.3164057325425921],[122,-47,65,-0.3041185892800964],[122,-47,66,-0.3877610997843576],[122,-47,67,-0.413512680688008],[122,-47,68,-0.40518596133189594],[122,-47,69,-0.3923756422012918],[122,-47,70,-0.37894902000196945],[122,-47,71,-0.36769737643659023],[122,-47,72,-0.3563464717533115],[122,-47,73,-0.3464291188124468],[122,-47,74,-0.3314333113450643],[122,-47,75,-0.3165829508621452],[122,-47,76,-0.31087114452351416],[122,-47,77,-0.3055068542027204],[122,-47,78,-0.3016683840460288],[122,-47,79,-0.2935155690016394],[122,-46,64,-0.3700177927367604],[122,-46,65,-0.33609189987475896],[122,-46,66,-0.350682012513141],[122,-46,67,-0.4106864636468841],[122,-46,68,-0.4005002882627861],[122,-46,69,-0.38834148406284436],[122,-46,70,-0.3784924095529836],[122,-46,71,-0.3663498928229838],[122,-46,72,-0.3548453729217254],[122,-46,73,-0.3455893802736959],[122,-46,74,-0.330255207932822],[122,-46,75,-0.315860981861685],[122,-46,76,-0.30864333137034816],[122,-46,77,-0.30292325456174407],[122,-46,78,-0.2992825657555787],[122,-46,79,-0.29249686218679827],[122,-45,64,-0.33794869028939517],[122,-45,65,-0.3125718425205648],[122,-45,66,-0.3173698184891948],[122,-45,67,-0.39908315392364546],[122,-45,68,-0.3983741269061627],[122,-45,69,-0.3877575333305089],[122,-45,70,-0.3800082250170406],[122,-45,71,-0.37043631896604173],[122,-45,72,-0.35829390914032727],[122,-45,73,-0.34645683420392354],[122,-45,74,-0.33076025561025557],[122,-45,75,-0.31854067011232745],[122,-45,76,-0.31271574165222576],[122,-45,77,-0.3037124699188838],[122,-45,78,-0.3017036302468173],[122,-45,79,-0.29417758127982635],[122,-44,64,-0.22637442223941742],[122,-44,65,-0.21094360125933584],[122,-44,66,-0.20867573482517],[122,-44,67,-0.37423528713709653],[122,-44,68,-0.4160921481371857],[122,-44,69,-0.4089320063515129],[122,-44,70,-0.4053501937002523],[122,-44,71,-0.4002013034013106],[122,-44,72,-0.3894273820346944],[122,-44,73,-0.3797671874223896],[122,-44,74,-0.362686999334969],[122,-44,75,-0.35378633806008736],[122,-44,76,-0.3474777858572011],[122,-44,77,-0.33885043726932534],[122,-44,78,-0.3356703643182433],[122,-44,79,-0.32709556849060273],[122,-43,64,-0.16518669745852416],[122,-43,65,-0.15830433588483078],[122,-43,66,-0.138329600570266],[122,-43,67,-0.31390305494413007],[122,-43,68,-0.3863706740586188],[122,-43,69,-0.3965560274589998],[122,-43,70,-0.39394937608249264],[122,-43,71,-0.38871023697162305],[122,-43,72,-0.3791352356874418],[122,-43,73,-0.3717405672507926],[122,-43,74,-0.3564031837453675],[122,-43,75,-0.3446689651684005],[122,-43,76,-0.3384790075007219],[122,-43,77,-0.3329038221642591],[122,-43,78,-0.331536543180227],[122,-43,79,-0.3258783075319313],[122,-42,64,-0.15762408806301487],[122,-42,65,-0.13525433389060532],[122,-42,66,-0.12547333628281648],[122,-42,67,-0.287520768849112],[122,-42,68,-0.3389372316792013],[122,-42,69,-0.3944639993948165],[122,-42,70,-0.3908384544745941],[122,-42,71,-0.38424827031754005],[122,-42,72,-0.3765689558745509],[122,-42,73,-0.3700435942121354],[122,-42,74,-0.3543704404249759],[122,-42,75,-0.34328777883518957],[122,-42,76,-0.3357290245601122],[122,-42,77,-0.3312796027348558],[122,-42,78,-0.3290490304860957],[122,-42,79,-0.32148263809865335],[122,-41,64,-0.08064228068781792],[122,-41,65,-0.06028109546620475],[122,-41,66,-0.012682390709294056],[122,-41,67,-0.143175657390125],[122,-41,68,-0.2263249281827327],[122,-41,69,-0.3434922421494548],[122,-41,70,-0.3926348677710381],[122,-41,71,-0.3838115719037819],[122,-41,72,-0.3785096544517018],[122,-41,73,-0.36775004580691883],[122,-41,74,-0.3542235194420934],[122,-41,75,-0.34201459065579903],[122,-41,76,-0.33406950645696853],[122,-41,77,-0.32881349466008547],[122,-41,78,-0.326251818896404],[122,-41,79,-0.3177943881713824],[122,-40,64,-0.013011583612057787],[122,-40,65,-0.03143725599014763],[122,-40,66,0.02060631537410479],[122,-40,67,-0.06950813826012398],[122,-40,68,-0.2169885122995504],[122,-40,69,-0.3392358150468942],[122,-40,70,-0.3927971913906797],[122,-40,71,-0.3845904559122253],[122,-40,72,-0.37595083007491226],[122,-40,73,-0.36605250093524705],[122,-40,74,-0.3523708630740179],[122,-40,75,-0.34042225858715547],[122,-40,76,-0.33261272689706595],[122,-40,77,-0.32827934041064943],[122,-40,78,-0.32416738705527026],[122,-40,79,-0.31389217497989014],[122,-39,64,0.035286013242068426],[122,-39,65,-0.004219001437104131],[122,-39,66,0.0710826761347893],[122,-39,67,-0.05609248531317257],[122,-39,68,-0.22850396464424177],[122,-39,69,-0.35052767847859656],[122,-39,70,-0.38651729393336176],[122,-39,71,-0.37817944660718633],[122,-39,72,-0.3675477790394334],[122,-39,73,-0.35838391611020487],[122,-39,74,-0.3457062109599384],[122,-39,75,-0.3321813306957332],[122,-39,76,-0.32692040692830177],[122,-39,77,-0.32284708901829823],[122,-39,78,-0.32004876841112134],[122,-39,79,-0.312768838808575],[122,-38,64,0.10340982058166448],[122,-38,65,0.10737576210025268],[122,-38,66,0.10627157702045625],[122,-38,67,-0.12468232313316369],[122,-38,68,-0.332453386183038],[122,-38,69,-0.38846648547659224],[122,-38,70,-0.38362629312974383],[122,-38,71,-0.3743036298120257],[122,-38,72,-0.36294212868361875],[122,-38,73,-0.3557218481106903],[122,-38,74,-0.34390541701901084],[122,-38,75,-0.3316991835946761],[122,-38,76,-0.3056464536343758],[122,-38,77,-0.32275743926215966],[122,-38,78,-0.3198903702392185],[122,-38,79,-0.3137916337312255],[122,-37,64,0.14489775017444928],[122,-37,65,0.14436618305650603],[122,-37,66,0.14867633396107546],[122,-37,67,-0.026432920644726632],[122,-37,68,-0.2830419751745769],[122,-37,69,-0.3889611623407087],[122,-37,70,-0.3469473113658411],[122,-37,71,-0.37460551216207505],[122,-37,72,-0.3659114893784178],[122,-37,73,-0.35717360892588196],[122,-37,74,-0.3470294240636307],[122,-37,75,-0.3354628520876036],[122,-37,76,-0.29702468985156283],[122,-37,77,-0.30840914295790406],[122,-37,78,-0.3232813975388946],[122,-37,79,-0.316709277745974],[122,-36,64,0.13631670608130644],[122,-36,65,0.13650394448144185],[122,-36,66,0.13733612798123893],[122,-36,67,-0.007711432644650296],[122,-36,68,-0.2432192924123459],[122,-36,69,-0.3798595248445511],[122,-36,70,-0.3234642851444016],[122,-36,71,-0.36498364076126844],[122,-36,72,-0.35840306132767324],[122,-36,73,-0.34976348302301463],[122,-36,74,-0.33733749615840064],[122,-36,75,-0.32663480884620005],[122,-36,76,-0.27689284244976664],[122,-36,77,-0.3125817796562453],[122,-36,78,-0.3154450661486714],[122,-36,79,-0.3076321787732607],[122,-35,64,0.1363334934483223],[122,-35,65,0.08595296359911325],[122,-35,66,-0.011055671058389005],[122,-35,67,-0.29184551610618226],[122,-35,68,-0.3832340676170472],[122,-35,69,-0.3786095294948846],[122,-35,70,-0.37373623344783885],[122,-35,71,-0.3669216089627567],[122,-35,72,-0.36241571564332065],[122,-35,73,-0.3551900721208411],[122,-35,74,-0.3427326061130751],[122,-35,75,-0.330612663294922],[122,-35,76,-0.32351800292336297],[122,-35,77,-0.3194260971896639],[122,-35,78,-0.31200906386141325],[122,-35,79,-0.29859841982062707],[122,-34,64,0.12701737998232848],[122,-34,65,0.11600742190767172],[122,-34,66,-0.015376934609206083],[122,-34,67,-0.2870435322676508],[122,-34,68,-0.37860389043157944],[122,-34,69,-0.3733344234590096],[122,-34,70,-0.369886036231822],[122,-34,71,-0.3618889749108201],[122,-34,72,-0.3614857870703857],[122,-34,73,-0.3528719487353148],[122,-34,74,-0.3428088725118455],[122,-34,75,-0.3286440466738298],[122,-34,76,-0.32031529064401915],[122,-34,77,-0.3158818271069487],[122,-34,78,-0.31083839621453896],[122,-34,79,-0.29618145010998786],[122,-33,64,0.11741998391737053],[122,-33,65,0.11531190143685909],[122,-33,66,0.0017719246080303286],[122,-33,67,-0.2400734552834246],[122,-33,68,-0.32025160611370096],[122,-33,69,-0.31908423482885895],[122,-33,70,-0.32122642061893],[122,-33,71,-0.3201316568148499],[122,-33,72,-0.3232119461759642],[122,-33,73,-0.320157723535794],[122,-33,74,-0.31489296467196903],[122,-33,75,-0.3057810217489343],[122,-33,76,-0.2988561739884323],[122,-33,77,-0.29983598006747425],[122,-33,78,-0.2985876289141473],[122,-33,79,-0.2877015069421957],[122,-32,64,0.12168226642483605],[122,-32,65,0.12015066297964407],[122,-32,66,0.020909598185840428],[122,-32,67,-0.23632509118376785],[122,-32,68,-0.31532431950235285],[122,-32,69,-0.31507005074056893],[122,-32,70,-0.31740700377113223],[122,-32,71,-0.32067119261684013],[122,-32,72,-0.32142913148428914],[122,-32,73,-0.3186952786811253],[122,-32,74,-0.30944138679582633],[122,-32,75,-0.30212336423671177],[122,-32,76,-0.29757320272575394],[122,-32,77,-0.29775864508507754],[122,-32,78,-0.2971890129085892],[122,-32,79,-0.28633773645838156],[122,-31,64,0.12746791024283655],[122,-31,65,0.12325789971018887],[122,-31,66,0.08621150963940943],[122,-31,67,-0.1085539520638194],[122,-31,68,-0.20208117237834605],[122,-31,69,-0.3097306505340725],[122,-31,70,-0.31218946412281284],[122,-31,71,-0.3179777611271295],[122,-31,72,-0.3170980886746653],[122,-31,73,-0.3143395630751215],[122,-31,74,-0.30701976391044744],[122,-31,75,-0.3002517341224831],[122,-31,76,-0.29586359312174876],[122,-31,77,-0.29651629331451],[122,-31,78,-0.2945790655248287],[122,-31,79,-0.28429685492572776],[122,-30,64,0.14245999132919043],[122,-30,65,0.1386951423113716],[122,-30,66,0.13264047157523984],[122,-30,67,-0.06013536404348424],[122,-30,68,-0.17191935406483955],[122,-30,69,-0.30559859293189867],[122,-30,70,-0.3070920594587756],[122,-30,71,-0.3112758475618744],[122,-30,72,-0.31255866159488493],[122,-30,73,-0.31136612268408503],[122,-30,74,-0.3052521060520369],[122,-30,75,-0.29964809789246605],[122,-30,76,-0.2948415344850628],[122,-30,77,-0.2929100113709387],[122,-30,78,-0.2904612083746198],[122,-30,79,-0.28078668356723746],[122,-29,64,0.1564241043440156],[122,-29,65,0.15250019456959588],[122,-29,66,0.15072113237411966],[122,-29,67,0.047061760688675236],[122,-29,68,-0.09258684656139124],[122,-29,69,-0.30801628541389603],[122,-29,70,-0.3094166752055847],[122,-29,71,-0.31112381879356177],[122,-29,72,-0.31438207162531706],[122,-29,73,-0.31211892211674597],[122,-29,74,-0.30694588790824195],[122,-29,75,-0.3014755444677773],[122,-29,76,-0.2958739772252639],[122,-29,77,-0.29113071234831006],[122,-29,78,-0.2885758385811946],[122,-29,79,-0.28155669094286123],[122,-28,64,0.14781430650765306],[122,-28,65,0.1465463494127431],[122,-28,66,0.1440104007485899],[122,-28,67,0.07686588926018967],[122,-28,68,-0.07771473165173873],[122,-28,69,-0.2877154374717697],[122,-28,70,-0.3018357085721528],[122,-28,71,-0.300939418103158],[122,-28,72,-0.3021783061522758],[122,-28,73,-0.3020270871238551],[122,-28,74,-0.29974186764734223],[122,-28,75,-0.2925497687183468],[122,-28,76,-0.28730336265789014],[122,-28,77,-0.27978201650060086],[122,-28,78,-0.2759369449014023],[122,-28,79,-0.2708050903570909],[122,-27,64,0.1516549316978621],[122,-27,65,0.15032883914611367],[122,-27,66,0.1454488085423516],[122,-27,67,0.15142724090067267],[122,-27,68,0.05813150429055974],[122,-27,69,-0.13973699033776274],[122,-27,70,-0.27965549584039817],[122,-27,71,-0.28040515554866685],[122,-27,72,-0.2810826615400023],[122,-27,73,-0.280911500479169],[122,-27,74,-0.2799139303639421],[122,-27,75,-0.27684277850117117],[122,-27,76,-0.2728620478354208],[122,-27,77,-0.26725496004013727],[122,-27,78,-0.2657192397025377],[122,-27,79,-0.26739167627604693],[122,-26,64,0.20394526446941402],[122,-26,65,0.20424334805617445],[122,-26,66,0.19989786314039376],[122,-26,67,0.20403946860204059],[122,-26,68,0.09628759647829876],[122,-26,69,-0.12017762086355724],[122,-26,70,-0.26036284400416276],[122,-26,71,-0.27402901159257137],[122,-26,72,-0.2781436125898057],[122,-26,73,-0.2771692959960578],[122,-26,74,-0.2734988135983065],[122,-26,75,-0.2735291084828134],[122,-26,76,-0.27123125412909316],[122,-26,77,-0.26704384278235804],[122,-26,78,-0.2607358090457452],[122,-26,79,-0.2629626840288055],[122,-25,64,0.2059994813657963],[122,-25,65,0.20573785649878534],[122,-25,66,0.20378321626999735],[122,-25,67,0.2029050827575882],[122,-25,68,0.08660279816969246],[122,-25,69,-0.13335192125664594],[122,-25,70,-0.2672248230043027],[122,-25,71,-0.27282854867631157],[122,-25,72,-0.2761519541918559],[122,-25,73,-0.2768607887797968],[122,-25,74,-0.2717430646092909],[122,-25,75,-0.2730491190344487],[122,-25,76,-0.27244174639543],[122,-25,77,-0.2672096728646144],[122,-25,78,-0.2593346623450437],[122,-25,79,-0.26366596028554706],[122,-24,64,0.21226499776159846],[122,-24,65,0.21339331491599806],[122,-24,66,0.21289266029985374],[122,-24,67,0.20761330345952791],[122,-24,68,0.07624847946640395],[122,-24,69,-0.10931563371125819],[122,-24,70,-0.2576502949070443],[122,-24,71,-0.2694569989385883],[122,-24,72,-0.2734841956888801],[122,-24,73,-0.27425669713571543],[122,-24,74,-0.2701549342915585],[122,-24,75,-0.272663280529225],[122,-24,76,-0.2723785061326065],[122,-24,77,-0.26855353759193124],[122,-24,78,-0.25956023543890927],[122,-24,79,-0.26226059694436565],[122,-23,64,0.21464461111271255],[122,-23,65,0.2192115412011166],[122,-23,66,0.21707498264113864],[122,-23,67,0.18513456313554721],[122,-23,68,0.025274541122280614],[122,-23,69,-0.12132484184148198],[122,-23,70,-0.2792096493346744],[122,-23,71,-0.27623230141849475],[122,-23,72,-0.28223295231030376],[122,-23,73,-0.28011035461132683],[122,-23,74,-0.27768144413009044],[122,-23,75,-0.2792144795386408],[122,-23,76,-0.27849079245990893],[122,-23,77,-0.27678889236596305],[122,-23,78,-0.273499657000252],[122,-23,79,-0.27369080921778693],[122,-22,64,0.2287850431025777],[122,-22,65,0.23117091574162987],[122,-22,66,0.22870569285715356],[122,-22,67,0.19585263117371132],[122,-22,68,0.038241531214763314],[122,-22,69,-0.09165616685909597],[122,-22,70,-0.2739905383555936],[122,-22,71,-0.2732227204098974],[122,-22,72,-0.27753972123993836],[122,-22,73,-0.27837027115649116],[122,-22,74,-0.2765702961039861],[122,-22,75,-0.2766447408287422],[122,-22,76,-0.2762514221918748],[122,-22,77,-0.27506681773048947],[122,-22,78,-0.2731429954876379],[122,-22,79,-0.27409440342869235],[122,-21,64,0.2302122877655356],[122,-21,65,0.2311241261344193],[122,-21,66,0.23079858914252693],[122,-21,67,0.2268821885110546],[122,-21,68,0.12089263973445963],[122,-21,69,-0.01883498258301064],[122,-21,70,-0.206752263316957],[122,-21,71,-0.2750693208432001],[122,-21,72,-0.27953657081510336],[122,-21,73,-0.2798540961083662],[122,-21,74,-0.28099914916677704],[122,-21,75,-0.2794227509313751],[122,-21,76,-0.27689890721883825],[122,-21,77,-0.2776655089299451],[122,-21,78,-0.27700188521339725],[122,-21,79,-0.2771742029220369],[122,-20,64,0.22012137518468256],[122,-20,65,0.22115303630983965],[122,-20,66,0.22343008579714904],[122,-20,67,0.21964249383210271],[122,-20,68,0.13122311049550212],[122,-20,69,-0.032050293942263386],[122,-20,70,-0.14860779881550032],[122,-20,71,-0.2486130212229874],[122,-20,72,-0.27311445886013175],[122,-20,73,-0.2747983195649938],[122,-20,74,-0.27505414604002254],[122,-20,75,-0.27369234364677336],[122,-20,76,-0.27127427573328355],[122,-20,77,-0.27215256919519515],[122,-20,78,-0.2731760285520446],[122,-20,79,-0.27260537262980317],[122,-19,64,0.2173541010007747],[122,-19,65,0.22086327792009494],[122,-19,66,0.22261610799891948],[122,-19,67,0.21619272462137282],[122,-19,68,0.2110641101605437],[122,-19,69,0.10884252236723202],[122,-19,70,0.008084482079047495],[122,-19,71,-0.10281271951855533],[122,-19,72,-0.1847774586201597],[122,-19,73,-0.24018741978506913],[122,-19,74,-0.2670054547396092],[122,-19,75,-0.2649519554903002],[122,-19,76,-0.26342804771072326],[122,-19,77,-0.2637658555286652],[122,-19,78,-0.26261859288361433],[122,-19,79,-0.26089578612529807],[122,-18,64,0.20673189667745262],[122,-18,65,0.21128940821713216],[122,-18,66,0.21196907031903534],[122,-18,67,0.20477809268627845],[122,-18,68,0.19974859577788912],[122,-18,69,0.11995584233071305],[122,-18,70,0.011313837734473364],[122,-18,71,-0.08135826070627872],[122,-18,72,-0.13785218282693237],[122,-18,73,-0.20752741977406955],[122,-18,74,-0.26343599123129086],[122,-18,75,-0.26081533786844],[122,-18,76,-0.26187335218430147],[122,-18,77,-0.26005897926523414],[122,-18,78,-0.2594831049314147],[122,-18,79,-0.25888413674938543],[122,-17,64,0.20470785074377731],[122,-17,65,0.20840669273231208],[122,-17,66,0.20859334840903276],[122,-17,67,0.20363506988338914],[122,-17,68,0.20325841528778],[122,-17,69,0.12690341356741386],[122,-17,70,0.031473156437944905],[122,-17,71,-0.04262094966948371],[122,-17,72,-0.10587538842812094],[122,-17,73,-0.1657035762995554],[122,-17,74,-0.2593620866895116],[122,-17,75,-0.26248096465594795],[122,-17,76,-0.2624762658101582],[122,-17,77,-0.25849665641478237],[122,-17,78,-0.25821306113468956],[122,-17,79,-0.2575956471586045],[122,-16,64,0.20982936759750265],[122,-16,65,0.2124851052608336],[122,-16,66,0.21160688804249006],[122,-16,67,0.20805292462703504],[122,-16,68,0.20923687656647524],[122,-16,69,0.14273362181833804],[122,-16,70,0.10383953557178269],[122,-16,71,0.06263345291112657],[122,-16,72,0.02721247500969093],[122,-16,73,-0.03597082027857515],[122,-16,74,-0.25609496210840443],[122,-16,75,-0.2578970940087166],[122,-16,76,-0.25886610836409335],[122,-16,77,-0.2580562007966536],[122,-16,78,-0.25471946841906],[122,-16,79,-0.25439742852924513],[122,-15,64,0.21080922859447168],[122,-15,65,0.21272268757463328],[122,-15,66,0.2131115649389277],[122,-15,67,0.20963707144460564],[122,-15,68,0.20979439129911193],[122,-15,69,0.1533498984264769],[122,-15,70,0.11064009001874803],[122,-15,71,0.08906419662776746],[122,-15,72,0.029071619269647325],[122,-15,73,-0.034553327436834674],[122,-15,74,-0.25457611767782284],[122,-15,75,-0.25722611297745346],[122,-15,76,-0.2604415551885222],[122,-15,77,-0.2571578567008222],[122,-15,78,-0.25595198164363003],[122,-15,79,-0.2537131356911523],[122,-14,64,0.09982732378967688],[122,-14,65,0.10220324038531979],[122,-14,66,0.10547314482817012],[122,-14,67,0.10285353024091794],[122,-14,68,0.1021739355956938],[122,-14,69,0.0660700997442425],[122,-14,70,0.04733211578112806],[122,-14,71,0.03674875011101089],[122,-14,72,-0.025566346971482523],[122,-14,73,-0.08687762095776524],[122,-14,74,-0.2532521033810604],[122,-14,75,-0.2541207873157012],[122,-14,76,-0.25264553455972033],[122,-14,77,-0.2517379200644632],[122,-14,78,-0.24903739240437361],[122,-14,79,-0.2472258987554662],[122,-13,64,0.09992489707993911],[122,-13,65,0.10185070891788453],[122,-13,66,0.10622489927601722],[122,-13,67,0.10712318635246018],[122,-13,68,0.10475742194720829],[122,-13,69,0.1046941143706276],[122,-13,70,0.10794975826943976],[122,-13,71,0.11524631865639244],[122,-13,72,0.03839675883471824],[122,-13,73,-0.02046645903030528],[122,-13,74,-0.1929502339934705],[122,-13,75,-0.25583733462223557],[122,-13,76,-0.2530285401067682],[122,-13,77,-0.2513468363030845],[122,-13,78,-0.24802053098110674],[122,-13,79,-0.24678133079472692],[122,-12,64,0.08830302268684562],[122,-12,65,0.0900751461396507],[122,-12,66,0.0913110744101955],[122,-12,67,0.09532677017313175],[122,-12,68,0.09308355332126844],[122,-12,69,0.0951850739683469],[122,-12,70,0.09958566588959994],[122,-12,71,0.1057055806820249],[122,-12,72,0.030395036503297612],[122,-12,73,-0.025170460751313545],[122,-12,74,-0.18967602631145286],[122,-12,75,-0.25130341696917824],[122,-12,76,-0.24702338329557955],[122,-12,77,-0.2465094735611667],[122,-12,78,-0.24346515196962124],[122,-12,79,-0.2409609846080244],[122,-11,64,0.08369938006006919],[122,-11,65,0.08597946954347045],[122,-11,66,0.08469469514401759],[122,-11,67,0.08935169686447583],[122,-11,68,0.09055596667408139],[122,-11,69,0.0934191663935319],[122,-11,70,0.09837279359406578],[122,-11,71,0.1065814863917549],[122,-11,72,0.03649370489003964],[122,-11,73,-0.027530248535156593],[122,-11,74,-0.18137808080853168],[122,-11,75,-0.22858960844382514],[122,-11,76,-0.22416820925120148],[122,-11,77,-0.22445583139641254],[122,-11,78,-0.22267253220620323],[122,-11,79,-0.21932511634285412],[122,-10,64,0.07406734253505956],[122,-10,65,0.07629107441014751],[122,-10,66,0.07441186142322068],[122,-10,67,0.0766270028287903],[122,-10,68,0.07916217812535176],[122,-10,69,0.0823029497427716],[122,-10,70,0.08641042120546236],[122,-10,71,0.0962505495532664],[122,-10,72,0.023458274272211893],[122,-10,73,-0.06377676227250795],[122,-10,74,-0.17664728153337902],[122,-10,75,-0.22343041262097899],[122,-10,76,-0.2207698875702838],[122,-10,77,-0.22287988697142888],[122,-10,78,-0.21965299793472556],[122,-10,79,-0.21407664260459186],[122,-9,64,0.08121060708369576],[122,-9,65,0.08239020166606321],[122,-9,66,0.0818386164858182],[122,-9,67,0.08212436145215898],[122,-9,68,0.0841860536212482],[122,-9,69,0.08482823577396709],[122,-9,70,0.08830251831731177],[122,-9,71,0.0977218577854734],[122,-9,72,0.02876985208524152],[122,-9,73,-0.10369654481197418],[122,-9,74,-0.18696914895406713],[122,-9,75,-0.21873760718866816],[122,-9,76,-0.2168368125706796],[122,-9,77,-0.2185858320715948],[122,-9,78,-0.21528681408592887],[122,-9,79,-0.21038942699589472],[122,-8,64,0.08113912271961167],[122,-8,65,0.08353152440903881],[122,-8,66,0.0822747567914929],[122,-8,67,0.08183402937346544],[122,-8,68,0.08397144338142931],[122,-8,69,0.08837693608189205],[122,-8,70,0.09305427980826321],[122,-8,71,0.060032532811479605],[122,-8,72,-0.053847383439002694],[122,-8,73,-0.19498306562697343],[122,-8,74,-0.21200188005239098],[122,-8,75,-0.21220864921012206],[122,-8,76,-0.21460628394619732],[122,-8,77,-0.21211512824662443],[122,-8,78,-0.21118816462975612],[122,-8,79,-0.2047849664937469],[122,-7,64,0.07684900500240244],[122,-7,65,0.0793607238998464],[122,-7,66,0.08138156939397911],[122,-7,67,0.08151426327777088],[122,-7,68,0.08220321040589515],[122,-7,69,0.08725141500854697],[122,-7,70,0.09013100379335379],[122,-7,71,0.03707931045641569],[122,-7,72,-0.06482447047148623],[122,-7,73,-0.19415644034921695],[122,-7,74,-0.204294865762916],[122,-7,75,-0.20644878210807738],[122,-7,76,-0.20892468601389294],[122,-7,77,-0.20746964450355476],[122,-7,78,-0.2073583756710424],[122,-7,79,-0.20066619280364706],[122,-6,64,0.07336695959555257],[122,-6,65,0.07514051718463995],[122,-6,66,0.07928086319187842],[122,-6,67,0.08073422101842055],[122,-6,68,0.08314364614387766],[122,-6,69,0.08688566162069251],[122,-6,70,0.08757935452034471],[122,-6,71,0.03119928279087164],[122,-6,72,-0.07137889881274738],[122,-6,73,-0.19317028550483467],[122,-6,74,-0.19931272895956242],[122,-6,75,-0.2004587798534207],[122,-6,76,-0.2032671043052341],[122,-6,77,-0.20460279006255885],[122,-6,78,-0.2016994813448603],[122,-6,79,-0.1974633301787293],[122,-5,64,0.0696237846796792],[122,-5,65,0.0721011247605666],[122,-5,66,0.07572510706439807],[122,-5,67,0.07834933259527568],[122,-5,68,0.08385799166171387],[122,-5,69,0.08501440113758785],[122,-5,70,0.08995448737256599],[122,-5,71,0.09856805633379885],[122,-5,72,0.06983612796390928],[122,-5,73,-0.0026845017403699933],[122,-5,74,-0.03215948814950598],[122,-5,75,-0.17293420878039556],[122,-5,76,-0.2030415824993994],[122,-5,77,-0.20625393588692503],[122,-5,78,-0.20541827120027334],[122,-5,79,-0.19936894525452403],[122,-4,64,0.056179702917326185],[122,-4,65,0.06000583502777354],[122,-4,66,0.060230802511638475],[122,-4,67,0.06488318080637319],[122,-4,68,0.07200870972379027],[122,-4,69,0.07417790526184714],[122,-4,70,0.08048324860627276],[122,-4,71,0.08760937443978879],[122,-4,72,0.05357677458306512],[122,-4,73,-0.009477085554642523],[122,-4,74,-0.0514239423946842],[122,-4,75,-0.1822355010022199],[122,-4,76,-0.20246765624486945],[122,-4,77,-0.20416741744685354],[122,-4,78,-0.20472417358727224],[122,-4,79,-0.19867554016582287],[122,-3,64,0.04570757274681318],[122,-3,65,0.050231823945756995],[122,-3,66,0.051671739882463784],[122,-3,67,0.05405133781276645],[122,-3,68,0.06063394930067391],[122,-3,69,0.06818883196623482],[122,-3,70,0.07852996230577988],[122,-3,71,0.08823637980917562],[122,-3,72,0.0860374745986574],[122,-3,73,0.02762943059336931],[122,-3,74,-0.016184079571493093],[122,-3,75,-0.15500259231632818],[122,-3,76,-0.20367462512480636],[122,-3,77,-0.20675758308458728],[122,-3,78,-0.20554070666635732],[122,-3,79,-0.19875163400544013],[122,-2,64,0.03813943842210634],[122,-2,65,0.040349968501224145],[122,-2,66,0.04336711203896583],[122,-2,67,0.04791567691821931],[122,-2,68,0.054777432657485234],[122,-2,69,0.06331422711404557],[122,-2,70,0.07590383660743047],[122,-2,71,0.08624007967512043],[122,-2,72,0.0692770831039903],[122,-2,73,0.023204124357635553],[122,-2,74,-0.019167550816625023],[122,-2,75,-0.17255247960771022],[122,-2,76,-0.20335465497505584],[122,-2,77,-0.20703605463867614],[122,-2,78,-0.20409320682341137],[122,-2,79,-0.19512990031812233],[122,-1,64,0.03547701414825326],[122,-1,65,0.038613002791687875],[122,-1,66,0.04449514260764417],[122,-1,67,0.04936449920772118],[122,-1,68,0.05378668165954701],[122,-1,69,0.06239749421378966],[122,-1,70,0.07660923877267511],[122,-1,71,0.08802535801594119],[122,-1,72,0.10247317752916496],[122,-1,73,0.07853091997311015],[122,-1,74,0.02384634523946219],[122,-1,75,-0.18512671077237627],[122,-1,76,-0.20259688485208374],[122,-1,77,-0.20240959516657633],[122,-1,78,-0.1981081176393231],[122,-1,79,-0.1899621102080781],[122,0,64,-0.03183716380132956],[122,0,65,-0.02598580921155111],[122,0,66,-0.028478865326602043],[122,0,67,-0.03500028738119457],[122,0,68,-0.04524406977632965],[122,0,69,-0.049953480176971723],[122,0,70,-0.05503042129163649],[122,0,71,-0.0613160945311486],[122,0,72,-0.06661544174938777],[122,0,73,-0.07146051092728564],[122,0,74,-0.07545721947000326],[122,0,75,-0.08724674864701042],[122,0,76,-0.09679679846718717],[122,0,77,-0.09518566767571335],[122,0,78,-0.093185758167787],[122,0,79,-0.08692250101057607],[122,1,64,-0.029475594754437062],[122,1,65,-0.024664985084022623],[122,1,66,-0.028200732284504954],[122,1,67,-0.03618674236478242],[122,1,68,-0.042308574016532846],[122,1,69,-0.04989942645245936],[122,1,70,-0.05353379730446346],[122,1,71,-0.05915952860406204],[122,1,72,-0.06471767560517641],[122,1,73,-0.07150845667582312],[122,1,74,-0.07794080356762197],[122,1,75,-0.08652471557719149],[122,1,76,-0.09447005961925098],[122,1,77,-0.09271958983694498],[122,1,78,-0.09147637071201561],[122,1,79,-0.08641011930218773],[122,2,64,-0.02906122002166414],[122,2,65,-0.024432580838774587],[122,2,66,-0.029333365332153805],[122,2,67,-0.03560599243646906],[122,2,68,-0.041079173713580885],[122,2,69,-0.04676363446083269],[122,2,70,-0.05156759430409921],[122,2,71,-0.058013913131348654],[122,2,72,-0.06442287474061952],[122,2,73,-0.07181604354357844],[122,2,74,-0.0796211982509792],[122,2,75,-0.08607948158021853],[122,2,76,-0.09112418606936483],[122,2,77,-0.09309606751971858],[122,2,78,-0.08836236985194088],[122,2,79,-0.08441166827331512],[122,3,64,-0.030267559107557296],[122,3,65,-0.026704356278849622],[122,3,66,-0.02904368726795567],[122,3,67,-0.035238055706003746],[122,3,68,-0.03837636283384527],[122,3,69,-0.044961809854243445],[122,3,70,-0.05208896792446421],[122,3,71,-0.05957973674328437],[122,3,72,-0.06641676895924511],[122,3,73,-0.07315541238735199],[122,3,74,-0.07951814831976903],[122,3,75,-0.08570856026127388],[122,3,76,-0.09018136649230146],[122,3,77,-0.09139902378597661],[122,3,78,-0.08754558171733118],[122,3,79,-0.08221552749734158],[122,4,64,-0.0331810949162715],[122,4,65,-0.028959007270001114],[122,4,66,-0.030890172301914542],[122,4,67,-0.03449219258749239],[122,4,68,-0.039535022034674974],[122,4,69,-0.04426476631680738],[122,4,70,-0.051426322802227295],[122,4,71,-0.06156358807130376],[122,4,72,-0.06852664621632115],[122,4,73,-0.07380591304460715],[122,4,74,-0.07880554391664774],[122,4,75,-0.08360288536010171],[122,4,76,-0.08892609582696406],[122,4,77,-0.08850714587453147],[122,4,78,-0.08591578677600362],[122,4,79,-0.08010546081542294],[122,5,64,-0.032307899024584794],[122,5,65,-0.029822404923118995],[122,5,66,-0.031650540632172375],[122,5,67,-0.03500650401166597],[122,5,68,-0.04055167403221062],[122,5,69,-0.04531329714926366],[122,5,70,-0.052610810846243944],[122,5,71,-0.06377079886400411],[122,5,72,-0.0698976870328706],[122,5,73,-0.07375069592644239],[122,5,74,-0.07854137327640898],[122,5,75,-0.08283543073710077],[122,5,76,-0.08939530730100548],[122,5,77,-0.08709328459404916],[122,5,78,-0.08400350974790236],[122,5,79,-0.07817716648599494],[122,6,64,-0.031218613757369826],[122,6,65,-0.029424207830306054],[122,6,66,-0.03350629811309458],[122,6,67,-0.035056096683172416],[122,6,68,-0.039959754552679555],[122,6,69,-0.04638673218941679],[122,6,70,-0.05205767645707979],[122,6,71,-0.06339933014941863],[122,6,72,-0.0697113566363021],[122,6,73,-0.07351110297774965],[122,6,74,-0.08031450618701039],[122,6,75,-0.08214001692948825],[122,6,76,-0.08627513023776522],[122,6,77,-0.08403389847808568],[122,6,78,-0.07996391586991461],[122,6,79,-0.07823889189253598],[122,7,64,-0.025649725309916493],[122,7,65,-0.0257940580026981],[122,7,66,-0.030436536554451624],[122,7,67,-0.03743270761550141],[122,7,68,-0.04107079688444257],[122,7,69,-0.049706489809842644],[122,7,70,-0.05289827103071354],[122,7,71,-0.060158945912965625],[122,7,72,-0.06668013117649421],[122,7,73,-0.07248733595959622],[122,7,74,-0.07689504515929352],[122,7,75,-0.0799758042689401],[122,7,76,-0.08369807049211928],[122,7,77,-0.08199429932207972],[122,7,78,-0.07879972534689711],[122,7,79,-0.07606121131022438],[122,8,64,-0.019214524241347897],[122,8,65,-0.019764757727041143],[122,8,66,-0.025829283904721057],[122,8,67,-0.03268297996631897],[122,8,68,-0.03785930116672531],[122,8,69,-0.04388995866004396],[122,8,70,-0.04622960135846957],[122,8,71,-0.049363926711173706],[122,8,72,-0.054688204785896075],[122,8,73,-0.06073271694724315],[122,8,74,-0.06529345938643165],[122,8,75,-0.06810672114949287],[122,8,76,-0.07210765908889494],[122,8,77,-0.06918412385989728],[122,8,78,-0.06593090285028415],[122,8,79,-0.06337363932577136],[122,9,64,-0.011499458263173584],[122,9,65,-0.01737232594598251],[122,9,66,-0.029512410321021726],[122,9,67,-0.04101125244620618],[122,9,68,-0.04883765805161969],[122,9,69,-0.0536761747869397],[122,9,70,-0.05603028428120685],[122,9,71,-0.057094638348841514],[122,9,72,-0.05739223888088171],[122,9,73,-0.06568656139881703],[122,9,74,-0.06849236267065399],[122,9,75,-0.07450431431552954],[122,9,76,-0.07426960110750287],[122,9,77,-0.0683246071824742],[122,9,78,-0.05991801943093124],[122,9,79,-0.057042667926890334],[122,10,64,-0.012213191074946617],[122,10,65,-0.020481860623506293],[122,10,66,-0.03168697790399594],[122,10,67,-0.04289515035225536],[122,10,68,-0.049198602661112534],[122,10,69,-0.0541498226755099],[122,10,70,-0.05658761623700928],[122,10,71,-0.056792677831765614],[122,10,72,-0.05837285083179081],[122,10,73,-0.06634189336380474],[122,10,74,-0.07001524625428737],[122,10,75,-0.07395632622270841],[122,10,76,-0.07230253914629256],[122,10,77,-0.06609548728195112],[122,10,78,-0.06032410598781707],[122,10,79,-0.055497336372930334],[122,11,64,-0.014115783820145944],[122,11,65,-0.022032176018464023],[122,11,66,-0.03397990182382621],[122,11,67,-0.04268617260191468],[122,11,68,-0.04928155323987146],[122,11,69,-0.0544242318525224],[122,11,70,-0.05858124709239193],[122,11,71,-0.0578945974746074],[122,11,72,-0.05851939089801156],[122,11,73,-0.0631277007972384],[122,11,74,-0.06823493333816877],[122,11,75,-0.0709884382153293],[122,11,76,-0.07028917565970821],[122,11,77,-0.06508226807411893],[122,11,78,-0.05850716092079679],[122,11,79,-0.055510309029332794],[122,12,64,-0.013147520036866728],[122,12,65,-0.019305071416295894],[122,12,66,-0.03196214651973242],[122,12,67,-0.04027732300398318],[122,12,68,-0.046164210128261385],[122,12,69,-0.055842876676387834],[122,12,70,-0.061432118992339524],[122,12,71,-0.060182482373192764],[122,12,72,-0.059206305561619404],[122,12,73,-0.06428550949202838],[122,12,74,-0.06522980445839097],[122,12,75,-0.07058086770265218],[122,12,76,-0.07173025001821007],[122,12,77,-0.06636330743295832],[122,12,78,-0.06196068861210342],[122,12,79,-0.05559329994656387],[122,13,64,-0.020063878300558002],[122,13,65,-0.019576479092528076],[122,13,66,-0.022599294572439588],[122,13,67,-0.027364256655414948],[122,13,68,-0.03527408648992447],[122,13,69,-0.043386070899849916],[122,13,70,-0.050934362373215525],[122,13,71,-0.04840638317309352],[122,13,72,-0.04800206006451305],[122,13,73,-0.04865411265290816],[122,13,74,-0.04841983901449856],[122,13,75,-0.05893959994828575],[122,13,76,-0.06258896574425606],[122,13,77,-0.06105635559495004],[122,13,78,-0.06460127242357804],[122,13,79,-0.06337722254614525],[122,14,64,-0.019853159729630143],[122,14,65,-0.019539463870897944],[122,14,66,-0.02057165537503866],[122,14,67,-0.028508074713034404],[122,14,68,-0.03532746908730307],[122,14,69,-0.04078876628509501],[122,14,70,-0.049183465305545016],[122,14,71,-0.04384297080855934],[122,14,72,-0.044252509977061066],[122,14,73,-0.045432858340626436],[122,14,74,-0.04693662081996926],[122,14,75,-0.05569464235395291],[122,14,76,-0.059657397235288845],[122,14,77,-0.05892532487132676],[122,14,78,-0.06210395881211431],[122,14,79,-0.06204383924030682],[122,15,64,-0.020999275123299882],[122,15,65,-0.019781055053444546],[122,15,66,-0.021475230318063143],[122,15,67,-0.029345009988774096],[122,15,68,-0.03478236112592317],[122,15,69,-0.03831328470871542],[122,15,70,-0.04562153489919395],[122,15,71,-0.04211534856795185],[122,15,72,-0.042260687292059396],[122,15,73,-0.04316857806894875],[122,15,74,-0.04832596216234919],[122,15,75,-0.05437230688869689],[122,15,76,-0.05610321195229913],[122,15,77,-0.057417252024455454],[122,15,78,-0.060862522302612895],[122,15,79,-0.06263694207971929],[122,16,64,-0.024968364148186706],[122,16,65,-0.01978251166610903],[122,16,66,-0.02361807977338698],[122,16,67,-0.027347448189981555],[122,16,68,-0.03040707453965799],[122,16,69,-0.031508190949066234],[122,16,70,-0.03593177942781925],[122,16,71,-0.033436471901237],[122,16,72,-0.035001794619883314],[122,16,73,-0.035055010858907804],[122,16,74,-0.042955123608016316],[122,16,75,-0.042794237856720485],[122,16,76,-0.04357932037505552],[122,16,77,-0.04647821234555102],[122,16,78,-0.04793197936623067],[122,16,79,-0.04903567447166712],[122,17,64,-0.026874469667637513],[122,17,65,-0.019962244067597446],[122,17,66,-0.023388574492432063],[122,17,67,-0.026304673053349797],[122,17,68,-0.02876225240187069],[122,17,69,-0.03090210793438053],[122,17,70,-0.03278446075966007],[122,17,71,-0.0330901395548997],[122,17,72,-0.0351761807308683],[122,17,73,-0.036634358925406146],[122,17,74,-0.04245167930146396],[122,17,75,-0.044629605986119106],[122,17,76,-0.04325680663680283],[122,17,77,-0.04627666297503491],[122,17,78,-0.04962518080499173],[122,17,79,-0.051605465932443834],[122,18,64,-0.025325317342927395],[122,18,65,-0.020592860074670677],[122,18,66,-0.02309296161446925],[122,18,67,-0.02597378308254228],[122,18,68,-0.028382331441996395],[122,18,69,-0.030585935472668163],[122,18,70,-0.03246636490735036],[122,18,71,-0.03294615643821966],[122,18,72,-0.03752834701560323],[122,18,73,-0.04038877382325792],[122,18,74,-0.04513165987019936],[122,18,75,-0.046565388960189955],[122,18,76,-0.04528266810054693],[122,18,77,-0.04706030466226513],[122,18,78,-0.0507066009327688],[122,18,79,-0.05259544135410406],[122,19,64,-0.023642944541853894],[122,19,65,-0.020964353396699914],[122,19,66,-0.02163944283785524],[122,19,67,-0.026126623035295476],[122,19,68,-0.030488676950709004],[122,19,69,-0.028875900917693403],[122,19,70,-0.03304147488022717],[122,19,71,-0.03707816169341277],[122,19,72,-0.04012649369277224],[122,19,73,-0.043897175341154684],[122,19,74,-0.047876329704898496],[122,19,75,-0.04749299135900216],[122,19,76,-0.04532281127337018],[122,19,77,-0.04823909917759295],[122,19,78,-0.050207682700181014],[122,19,79,-0.05075289252860353],[122,20,64,-0.021216318686620078],[122,20,65,-0.02006187084953906],[122,20,66,-0.023819184316496128],[122,20,67,-0.027840670628448166],[122,20,68,-0.033325097168785706],[122,20,69,-0.030763210454812284],[122,20,70,-0.03542721641468913],[122,20,71,-0.043234934080230464],[122,20,72,-0.047712212153075834],[122,20,73,-0.04877918539237282],[122,20,74,-0.052526726410810076],[122,20,75,-0.05037820956163094],[122,20,76,-0.04932899356043008],[122,20,77,-0.05435804134013253],[122,20,78,-0.05360972085971724],[122,20,79,-0.0522548611178002],[122,21,64,-0.010631143341847837],[122,21,65,-0.009691839105144512],[122,21,66,-0.012640796114519043],[122,21,67,-0.015212058514217364],[122,21,68,-0.023443333537515793],[122,21,69,-0.026416728990060367],[122,21,70,-0.03476065556075074],[122,21,71,-0.05174914957376622],[122,21,72,-0.05977715454527223],[122,21,73,-0.062087066045599895],[122,21,74,-0.06656639900536049],[122,21,75,-0.06369493245060696],[122,21,76,-0.06533194441272011],[122,21,77,-0.06907229555847141],[122,21,78,-0.0666578336194199],[122,21,79,-0.06316770121792642],[122,22,64,-0.013096805206675693],[122,22,65,-0.011906844217975998],[122,22,66,-0.012183494247000659],[122,22,67,-0.014149776436512135],[122,22,68,-0.021201345964322882],[122,22,69,-0.027566238419000244],[122,22,70,-0.036798925070869695],[122,22,71,-0.05198816495917834],[122,22,72,-0.06052867444481666],[122,22,73,-0.06176161668411578],[122,22,74,-0.06647761763477666],[122,22,75,-0.0639940906648028],[122,22,76,-0.06482978673430784],[122,22,77,-0.06873261877687618],[122,22,78,-0.06756979251224178],[122,22,79,-0.0656974354491062],[122,23,64,-0.016636807082794774],[122,23,65,-0.016216753152567348],[122,23,66,-0.014200353168337926],[122,23,67,-0.015281738681461182],[122,23,68,-0.022369354677664904],[122,23,69,-0.02975570390335637],[122,23,70,-0.04023359459135631],[122,23,71,-0.05271490898061908],[122,23,72,-0.058344115646642325],[122,23,73,-0.061260658882389296],[122,23,74,-0.06493234056381193],[122,23,75,-0.0626638877089131],[122,23,76,-0.06312247603051516],[122,23,77,-0.06952673477864293],[122,23,78,-0.0676747662020381],[122,23,79,-0.06601625100022851],[122,24,64,-0.009944966938806948],[122,24,65,-0.010536707027535924],[122,24,66,-0.007160484820527585],[122,24,67,-0.006867972054904803],[122,24,68,-0.0150060710933973],[122,24,69,-0.024160490394699058],[122,24,70,-0.03392750274322884],[122,24,71,-0.043570079971901654],[122,24,72,-0.050427715378768695],[122,24,73,-0.05267471128319588],[122,24,74,-0.054206912224124965],[122,24,75,-0.050768158185407294],[122,24,76,-0.05425264489386815],[122,24,77,-0.05992632550973914],[122,24,78,-0.06051315367972969],[122,24,79,-0.05864664613607412],[122,25,64,-0.004468877282913258],[122,25,65,-0.008105655107418425],[122,25,66,-0.011440084149336976],[122,25,67,-0.01790361236588317],[122,25,68,-0.026166751591969545],[122,25,69,-0.036143510185962874],[122,25,70,-0.0442418302233816],[122,25,71,-0.04468447870452977],[122,25,72,-0.04454817833498938],[122,25,73,-0.04444843882878097],[122,25,74,-0.0422586963925618],[122,25,75,-0.0414204944130204],[122,25,76,-0.04859195454823027],[122,25,77,-0.054044276007832126],[122,25,78,-0.057839764099498814],[122,25,79,-0.057754101512267245],[122,26,64,-0.002967946214937345],[122,26,65,-0.006580459468632199],[122,26,66,-0.01251887903159768],[122,26,67,-0.01983714539795986],[122,26,68,-0.029105782165452787],[122,26,69,-0.04000048732241754],[122,26,70,-0.0444369359201916],[122,26,71,-0.04523882239520205],[122,26,72,-0.044088127033046015],[122,26,73,-0.044631408895866254],[122,26,74,-0.04370275946999187],[122,26,75,-0.04386539328365306],[122,26,76,-0.04967114386713345],[122,26,77,-0.05272598477251954],[122,26,78,-0.056675804602712127],[122,26,79,-0.05745703088482118],[122,27,64,-0.0025914272944977668],[122,27,65,-0.005650538055075344],[122,27,66,-0.012502001307337224],[122,27,67,-0.021071957059782043],[122,27,68,-0.03279294190047852],[122,27,69,-0.04276960849621203],[122,27,70,-0.046796992276763705],[122,27,71,-0.045345180310128796],[122,27,72,-0.0421464653291318],[122,27,73,-0.04337325717349555],[122,27,74,-0.04525966982652098],[122,27,75,-0.044034891787577635],[122,27,76,-0.04875444710921392],[122,27,77,-0.05267929351394943],[122,27,78,-0.05744767103022787],[122,27,79,-0.05676841431661943],[122,28,64,-0.004721580293841621],[122,28,65,-0.009330924435903554],[122,28,66,-0.01573833025347221],[122,28,67,-0.027291271996002286],[122,28,68,-0.03972177445010833],[122,28,69,-0.05026500651971093],[122,28,70,-0.051476852218289015],[122,28,71,-0.05199925236946168],[122,28,72,-0.04716060107021669],[122,28,73,-0.048452136309517696],[122,28,74,-0.051941183918537],[122,28,75,-0.05196863417300723],[122,28,76,-0.052173024879477906],[122,28,77,-0.05747560658860189],[122,28,78,-0.06142416150225466],[122,28,79,-0.06056632994297137],[122,29,64,-0.006149304790570076],[122,29,65,-0.011368950545038059],[122,29,66,-0.020136802637580636],[122,29,67,-0.03021741410119963],[122,29,68,-0.041154292383356994],[122,29,69,-0.04933294413808545],[122,29,70,-0.051562147036569875],[122,29,71,-0.0533020146084669],[122,29,72,-0.04912481804676315],[122,29,73,-0.052766935444762686],[122,29,74,-0.055822843167042446],[122,29,75,-0.054049984715139596],[122,29,76,-0.05290860770455624],[122,29,77,-0.055135961028334526],[122,29,78,-0.05887835698011068],[122,29,79,-0.05859188779514225],[122,30,64,-0.004047898230323477],[122,30,65,-0.011282001113519846],[122,30,66,-0.02098906306518128],[122,30,67,-0.031066036325915744],[122,30,68,-0.03944491603443165],[122,30,69,-0.04967873477460086],[122,30,70,-0.05297043014156233],[122,30,71,-0.05559703021123316],[122,30,72,-0.05187530711040471],[122,30,73,-0.05454073197752285],[122,30,74,-0.05671656630473951],[122,30,75,-0.05813980618685688],[122,30,76,-0.05456369593475238],[122,30,77,-0.053998022833423476],[122,30,78,-0.05718635392527767],[122,30,79,-0.058761842017664656],[122,31,64,-0.005602556964875632],[122,31,65,-0.013831775243878824],[122,31,66,-0.0241319828271849],[122,31,67,-0.029775595172950614],[122,31,68,-0.037388048766683835],[122,31,69,-0.04788587658421062],[122,31,70,-0.052320129904608575],[122,31,71,-0.05402115146759681],[122,31,72,-0.053006805270390256],[122,31,73,-0.05392402239623004],[122,31,74,-0.05823194896063641],[122,31,75,-0.05884744071814496],[122,31,76,-0.05605715507971715],[122,31,77,-0.05467983615833741],[122,31,78,-0.05626693563572202],[122,31,79,-0.057735177602844634],[122,32,64,0.001674636308671762],[122,32,65,-0.005963927646485873],[122,32,66,-0.014512584252790367],[122,32,67,-0.01991353645573815],[122,32,68,-0.025468245156586355],[122,32,69,-0.03449025662203417],[122,32,70,-0.040652653593202304],[122,32,71,-0.04258184137332624],[122,32,72,-0.04111418484589428],[122,32,73,-0.04286268601202589],[122,32,74,-0.04700182606596487],[122,32,75,-0.05000032995484105],[122,32,76,-0.04628786294106324],[122,32,77,-0.0439847989614572],[122,32,78,-0.04182746963192316],[122,32,79,-0.04355278521873464],[122,33,64,0.005574264949054247],[122,33,65,-0.0012869557424085298],[122,33,66,-0.008366772997619065],[122,33,67,-0.008096909689767479],[122,33,68,-0.01396416746811574],[122,33,69,-0.02354365330661337],[122,33,70,-0.03098159435844544],[122,33,71,-0.03800728218552624],[122,33,72,-0.04380045796304982],[122,33,73,-0.05062062791923677],[122,33,74,-0.058138585501072926],[122,33,75,-0.06313183394788506],[122,33,76,-0.05686487763371244],[122,33,77,-0.05120887162318753],[122,33,78,-0.04394330953321865],[122,33,79,-0.04332401404153147],[122,34,64,0.0040442914276630215],[122,34,65,-0.002820973458313475],[122,34,66,-0.008520930379526392],[122,34,67,-0.009750177703705759],[122,34,68,-0.015051083604989718],[122,34,69,-0.02281760360462773],[122,34,70,-0.030475617856694642],[122,34,71,-0.03916381756155918],[122,34,72,-0.04529479892031825],[122,34,73,-0.05293204596912192],[122,34,74,-0.05930262856354582],[122,34,75,-0.062362092170957006],[122,34,76,-0.057610067147721766],[122,34,77,-0.05038003396118293],[122,34,78,-0.04339804400645465],[122,34,79,-0.03971206499949659],[122,35,64,0.0014578432207706937],[122,35,65,-0.004327493356894002],[122,35,66,-0.009382424008419876],[122,35,67,-0.013327115815145202],[122,35,68,-0.016630136394498868],[122,35,69,-0.02319328968517878],[122,35,70,-0.02831649102509587],[122,35,71,-0.03877947943763041],[122,35,72,-0.04718210139335677],[122,35,73,-0.054519517273518864],[122,35,74,-0.06032119437514194],[122,35,75,-0.06214400476983398],[122,35,76,-0.05370983575040353],[122,35,77,-0.048602144356516136],[122,35,78,-0.039766280472782495],[122,35,79,-0.03715618113601765],[122,36,64,-0.008552495188386106],[122,36,65,-0.013004601740376792],[122,36,66,-0.018847376179615905],[122,36,67,-0.022855743601694706],[122,36,68,-0.028481673788784606],[122,36,69,-0.0302575044986432],[122,36,70,-0.03364547161295307],[122,36,71,-0.04489029978861672],[122,36,72,-0.0557794821317652],[122,36,73,-0.06571899343996626],[122,36,74,-0.06816058060900729],[122,36,75,-0.06826664190564496],[122,36,76,-0.05942421753306726],[122,36,77,-0.0524153872789843],[122,36,78,-0.041991368942244534],[122,36,79,-0.04219061276496627],[122,37,64,-0.016143597558452127],[122,37,65,-0.021939870860677918],[122,37,66,-0.02903043235979738],[122,37,67,-0.034716672560381884],[122,37,68,-0.04326901980225911],[122,37,69,-0.04754327769479237],[122,37,70,-0.049507385897644474],[122,37,71,-0.05405598512675644],[122,37,72,-0.05753563174550107],[122,37,73,-0.06268538022631975],[122,37,74,-0.06193689799931881],[122,37,75,-0.061161903298250136],[122,37,76,-0.05460014974352177],[122,37,77,-0.04683114050382367],[122,37,78,-0.04012333359204956],[122,37,79,-0.043202968671026465],[122,38,64,-0.020673828230166308],[122,38,65,-0.026359032242825847],[122,38,66,-0.031154353020183267],[122,38,67,-0.035432311820788126],[122,38,68,-0.04336837797178303],[122,38,69,-0.049465249085590274],[122,38,70,-0.05317427602012284],[122,38,71,-0.05814347692425931],[122,38,72,-0.059233389271638875],[122,38,73,-0.062265407140446816],[122,38,74,-0.06087823961578301],[122,38,75,-0.059038050686638754],[122,38,76,-0.05397877156082065],[122,38,77,-0.047140319464487934],[122,38,78,-0.04145314605421942],[122,38,79,-0.04526985472585096],[122,39,64,-0.021977383652943355],[122,39,65,-0.02884815024267713],[122,39,66,-0.03119625695555517],[122,39,67,-0.03623234365568967],[122,39,68,-0.04060088130693304],[122,39,69,-0.049708134150319036],[122,39,70,-0.054486396176807866],[122,39,71,-0.058002031347726524],[122,39,72,-0.05808512799155896],[122,39,73,-0.059986432036426285],[122,39,74,-0.05883211582706488],[122,39,75,-0.058497803278747956],[122,39,76,-0.05338454205127155],[122,39,77,-0.04821384913492241],[122,39,78,-0.04182667838522694],[122,39,79,-0.04645488372904391],[122,40,64,-0.011350788745165152],[122,40,65,-0.016430677746318123],[122,40,66,-0.01878787599709736],[122,40,67,-0.023153616540002697],[122,40,68,-0.02900575836311367],[122,40,69,-0.0382397701356217],[122,40,70,-0.042194950309275836],[122,40,71,-0.04308507255933386],[122,40,72,-0.04525597743816212],[122,40,73,-0.04432611967183804],[122,40,74,-0.044062795176994046],[122,40,75,-0.04473344926343925],[122,40,76,-0.04488821774476662],[122,40,77,-0.03868187803453689],[122,40,78,-0.03039614063198809],[122,40,79,-0.032186766840654774],[122,41,64,-0.014760416672921772],[122,41,65,-0.017455280485708047],[122,41,66,-0.019375367157774714],[122,41,67,-0.022727666673812624],[122,41,68,-0.026291315505416857],[122,41,69,-0.0372058387802211],[122,41,70,-0.04040793086458172],[122,41,71,-0.041243785735079724],[122,41,72,-0.043571317096779194],[122,41,73,-0.04321050316933808],[122,41,74,-0.04275855970684855],[122,41,75,-0.045251210365824496],[122,41,76,-0.04739042262007148],[122,41,77,-0.041916924000624245],[122,41,78,-0.031451674333329516],[122,41,79,-0.03314689799114229],[122,42,64,-0.015997967585828693],[122,42,65,-0.01861625686979365],[122,42,66,-0.020244304770872273],[122,42,67,-0.02325670589682169],[122,42,68,-0.026774296206961645],[122,42,69,-0.03514952901922917],[122,42,70,-0.03943694716975374],[122,42,71,-0.04002130756742975],[122,42,72,-0.04400748267346673],[122,42,73,-0.04380173198676021],[122,42,74,-0.043468463723709286],[122,42,75,-0.046306528784986506],[122,42,76,-0.047417287994355656],[122,42,77,-0.043140524229941093],[122,42,78,-0.036118727597056074],[122,42,79,-0.03615977085133429],[122,43,64,-0.01700537006649161],[122,43,65,-0.01981572789795108],[122,43,66,-0.021390834792481217],[122,43,67,-0.023412785738569836],[122,43,68,-0.026946172496879167],[122,43,69,-0.03261816643559293],[122,43,70,-0.03755324486904926],[122,43,71,-0.041524953938286785],[122,43,72,-0.04529985909550395],[122,43,73,-0.04328408445835444],[122,43,74,-0.04447205902675093],[122,43,75,-0.043913734949190736],[122,43,76,-0.047529920031899986],[122,43,77,-0.04438781533844663],[122,43,78,-0.03767243913442092],[122,43,79,-0.03782278658222957],[122,44,64,-0.02921486705848264],[122,44,65,-0.028219616910934886],[122,44,66,-0.029267648588747613],[122,44,67,-0.0330636183038546],[122,44,68,-0.03491171896066117],[122,44,69,-0.04096925982608483],[122,44,70,-0.04662828771366645],[122,44,71,-0.048442215829872556],[122,44,72,-0.0549950273101945],[122,44,73,-0.052891140287660315],[122,44,74,-0.05401140620339334],[122,44,75,-0.053466891417635054],[122,44,76,-0.05728618104091353],[122,44,77,-0.05394242501185345],[122,44,78,-0.04829192781861266],[122,44,79,-0.04675343556722522],[122,45,64,-0.03779817861335101],[122,45,65,-0.03143924584444267],[122,45,66,-0.030018250690180617],[122,45,67,-0.027917356631177073],[122,45,68,-0.022677462470535426],[122,45,69,-0.024913665317666867],[122,45,70,-0.02775164029991642],[122,45,71,-0.03453698564992318],[122,45,72,-0.04660692040707104],[122,45,73,-0.0505650546207462],[122,45,74,-0.050316934453120576],[122,45,75,-0.05053291628573313],[122,45,76,-0.05293084407249879],[122,45,77,-0.05088345231160943],[122,45,78,-0.047869556785646916],[122,45,79,-0.04831969406669889],[122,46,64,-0.03697642553142222],[122,46,65,-0.03327186805170511],[122,46,66,-0.03398682795995765],[122,46,67,-0.03023438121826555],[122,46,68,-0.02637785228908876],[122,46,69,-0.024179197839053923],[122,46,70,-0.02746306267588508],[122,46,71,-0.03551143618601013],[122,46,72,-0.04474806277219116],[122,46,73,-0.048988822665860396],[122,46,74,-0.05009405836642386],[122,46,75,-0.05062422068937336],[122,46,76,-0.05231467938546355],[122,46,77,-0.05111184410899186],[122,46,78,-0.049761533238618594],[122,46,79,-0.04754961822882142],[122,47,64,-0.03808142074138929],[122,47,65,-0.03533529088617321],[122,47,66,-0.03618819818474153],[122,47,67,-0.033936254686422765],[122,47,68,-0.0292541286836282],[122,47,69,-0.025248591900770334],[122,47,70,-0.02829515611854258],[122,47,71,-0.033453124553459224],[122,47,72,-0.04459980157912766],[122,47,73,-0.05019005413659605],[122,47,74,-0.05028209920979371],[122,47,75,-0.05172025053705713],[122,47,76,-0.05389796159778698],[122,47,77,-0.04950313688154416],[122,47,78,-0.04879018383096265],[122,47,79,-0.04734663566433618],[122,48,64,-0.026755672612663123],[122,48,65,-0.025076192335617392],[122,48,66,-0.023494893386502985],[122,48,67,-0.02040741675980512],[122,48,68,-0.018210670924068723],[122,48,69,-0.014617863847605217],[122,48,70,-0.014057727247080598],[122,48,71,-0.019169430961082395],[122,48,72,-0.030005278276023006],[122,48,73,-0.036336776035437945],[122,48,74,-0.03758746962671064],[122,48,75,-0.039047854027618956],[122,48,76,-0.04152199254869603],[122,48,77,-0.03733531284244726],[122,48,78,-0.03406871102163628],[122,48,79,-0.03242646090489942],[122,49,64,-0.03882739006904176],[122,49,65,-0.037565264327715425],[122,49,66,-0.03449282961542546],[122,49,67,-0.02814599216580116],[122,49,68,-0.027548086347343875],[122,49,69,-0.024356726126892908],[122,49,70,-0.020898123703752353],[122,49,71,-0.02223840846841943],[122,49,72,-0.024419690114067333],[122,49,73,-0.025712085334485213],[122,49,74,-0.02933621748683582],[122,49,75,-0.02947682522741213],[122,49,76,-0.029165956312326324],[122,49,77,-0.02851586450794083],[122,49,78,-0.02397225049966817],[122,49,79,-0.023266729005176373],[122,50,64,-0.04066983108433572],[122,50,65,-0.03934777125632956],[122,50,66,-0.03704991171522756],[122,50,67,-0.03032041863688935],[122,50,68,-0.02910205112019254],[122,50,69,-0.026307746149508926],[122,50,70,-0.022571866407229774],[122,50,71,-0.026199295550106083],[122,50,72,-0.023970209778882395],[122,50,73,-0.024536495498470284],[122,50,74,-0.027572411030766963],[122,50,75,-0.0275960047353567],[122,50,76,-0.02595237256504579],[122,50,77,-0.02602025332765548],[122,50,78,-0.02703014167385337],[122,50,79,-0.023747409577130923],[122,51,64,-0.04258590982401117],[122,51,65,-0.04173437317171448],[122,51,66,-0.041132848853006346],[122,51,67,-0.03523789564101547],[122,51,68,-0.03349481712709071],[122,51,69,-0.02837959870695328],[122,51,70,-0.025997098892650367],[122,51,71,-0.02808066950563834],[122,51,72,-0.02426532348068694],[122,51,73,-0.024976877459244012],[122,51,74,-0.028763858386593844],[122,51,75,-0.026910300883870364],[122,51,76,-0.02228348043593681],[122,51,77,-0.02378332412080647],[122,51,78,-0.026473544679918665],[122,51,79,-0.023656409689430447],[122,52,64,0.0019301462416688453],[122,52,65,6.05058741892095E-4],[122,52,66,0.0027768583562090554],[122,52,67,0.004582848215223867],[122,52,68,0.005629490666682058],[122,52,69,0.01202471736429439],[122,52,70,0.015002420639931374],[122,52,71,0.014187567760192227],[122,52,72,0.01629557394409495],[122,52,73,0.014630211213685657],[122,52,74,0.013769014396178253],[122,52,75,0.016916278056821],[122,52,76,0.02118374980614235],[122,52,77,0.02063126512857441],[122,52,78,0.01602112122945959],[122,52,79,0.018238694313617382],[122,53,64,0.0077385757495239405],[122,53,65,0.0039166996924502595],[122,53,66,0.002457469910819715],[122,53,67,0.0012604602702172285],[122,53,68,-4.470631827518945E-5],[122,53,69,0.005253365953814676],[122,53,70,0.006123358424280301],[122,53,71,0.005021541925498196],[122,53,72,0.006597548380726542],[122,53,73,0.006180276192930101],[122,53,74,0.007252079657829175],[122,53,75,0.009099985534534422],[122,53,76,0.015791490989452428],[122,53,77,0.015364047333782327],[122,53,78,0.014670428053463025],[122,53,79,0.018401601218798996],[122,54,64,0.009325446352382027],[122,54,65,0.004161413749384307],[122,54,66,-2.813117198363635E-5],[122,54,67,-0.0012225633962321125],[122,54,68,-0.00294553972057629],[122,54,69,-2.985066767320077E-4],[122,54,70,0.0022621065588589173],[122,54,71,0.0011621700580748962],[122,54,72,0.003801263258913723],[122,54,73,0.005169455439508003],[122,54,74,0.004519399938116592],[122,54,75,0.00755544585506257],[122,54,76,0.0137948018330796],[122,54,77,0.014189060888928545],[122,54,78,0.014971949723726091],[122,54,79,0.019817611582555406],[122,55,64,0.007784027821989781],[122,55,65,0.002477487656220745],[122,55,66,-0.001998156325860534],[122,55,67,-0.0020268093466600245],[122,55,68,-0.003003239610430364],[122,55,69,-0.0013213611417694504],[122,55,70,-0.002369433590577341],[122,55,71,-0.0015796871442781413],[122,55,72,0.0016671296440593786],[122,55,73,2.7469796579024375E-4],[122,55,74,0.003754450390603209],[122,55,75,0.0048126115366856625],[122,55,76,0.010986400513848166],[122,55,77,0.014242348855488224],[122,55,78,0.01699594528635809],[122,55,79,0.021583912286247925],[122,56,64,0.0207385840180819],[122,56,65,0.013821271584661815],[122,56,66,0.011276970078778786],[122,56,67,0.011569716029772525],[122,56,68,0.011323848681179388],[122,56,69,0.011956924210028308],[122,56,70,0.007651535440933249],[122,56,71,0.00952153986277507],[122,56,72,0.009734111639222887],[122,56,73,0.010977144761004864],[122,56,74,0.015338798097085438],[122,56,75,0.018160670213798802],[122,56,76,0.024917796810603243],[122,56,77,0.027604705295689647],[122,56,78,0.028454572161763947],[122,56,79,0.03435353782213493],[122,57,64,0.012899784183351914],[122,57,65,0.007228925920521517],[122,57,66,0.0037695482059248164],[122,57,67,0.0020888505815807035],[122,57,68,0.003267791079945903],[122,57,69,0.001488679554059652],[122,57,70,-6.974952571036086E-4],[122,57,71,4.750219324400895E-4],[122,57,72,-0.0015900563158957048],[122,57,73,-0.0025865731746473053],[122,57,74,0.005230039159851291],[122,57,75,0.008084830052567132],[122,57,76,0.013524949071528986],[122,57,77,0.017897919181294186],[122,57,78,0.018217537750925772],[122,57,79,0.02182108862526086],[122,58,64,0.05669529789372141],[122,58,65,0.04942092052631161],[122,58,66,0.04511425563150771],[122,58,67,0.04101632848731569],[122,58,68,0.04180041681449746],[122,58,69,0.03961142422129464],[122,58,70,0.03801919146518244],[122,58,71,0.038149914144512215],[122,58,72,0.03691410906984656],[122,58,73,0.03672418615371427],[122,58,74,0.045458243227366774],[122,58,75,0.04916086550195024],[122,58,76,0.051689741313090926],[122,58,77,0.056763884411587556],[122,58,78,0.05587383211136149],[122,58,79,0.053786984458068926],[122,59,64,0.058147537192819426],[122,59,65,0.048989112197524706],[122,59,66,0.04121608053453077],[122,59,67,0.03829247431719633],[122,59,68,0.03727704899074363],[122,59,69,0.03644327295630749],[122,59,70,0.034459119211396605],[122,59,71,0.0339261314523526],[122,59,72,0.03638938461533073],[122,59,73,0.03570799231081129],[122,59,74,0.04555745287413672],[122,59,75,0.05000869346218474],[122,59,76,0.052485659820676045],[122,59,77,0.05758002910193237],[122,59,78,0.05535828290326414],[122,59,79,0.05320058602313288],[122,60,64,0.04722964864901437],[122,60,65,0.03795658725478178],[122,60,66,0.030974305503753463],[122,60,67,0.02622756135317264],[122,60,68,0.02531633680015473],[122,60,69,0.025184138769802814],[122,60,70,0.022380590012132967],[122,60,71,0.019751347790670004],[122,60,72,0.024840776068068463],[122,60,73,0.029177786977447606],[122,60,74,0.03586629772916548],[122,60,75,0.04253086503882822],[122,60,76,0.045272329096958955],[122,60,77,0.048464697657726874],[122,60,78,0.04748677241780197],[122,60,79,0.045472007029764644],[122,61,64,0.05927323287734981],[122,61,65,0.05039409345239759],[122,61,66,0.04302036833989442],[122,61,67,0.0339245265097468],[122,61,68,0.03276323374905786],[122,61,69,0.029453379504195715],[122,61,70,0.025741221462682623],[122,61,71,0.02253164907991964],[122,61,72,0.025481203114269893],[122,61,73,0.03280743195011726],[122,61,74,0.037773053570664544],[122,61,75,0.045733068129448565],[122,61,76,0.0530633054540576],[122,61,77,0.055110358651268135],[122,61,78,0.056428216781049756],[122,61,79,0.05676595712616821],[122,62,64,0.05733019928124844],[122,62,65,0.05016660532048062],[122,62,66,0.04039453496203145],[122,62,67,0.03313860970099082],[122,62,68,0.031809599535309346],[122,62,69,0.030332161375883335],[122,62,70,0.026849884997796294],[122,62,71,0.024104994405450872],[122,62,72,0.02723771067726992],[122,62,73,0.0312768024667887],[122,62,74,0.03703320100340356],[122,62,75,0.04492953448927074],[122,62,76,0.052242702170489735],[122,62,77,0.054141909641416186],[122,62,78,0.05714502612174885],[122,62,79,0.057880211212844035],[122,63,64,-0.012971896044477071],[122,63,65,-0.01954040806232328],[122,63,66,-0.02952174354499508],[122,63,67,-0.03457220779279578],[122,63,68,-0.03541713720985984],[122,63,69,-0.0380213853655087],[122,63,70,-0.04005361661782712],[122,63,71,-0.039383521951058265],[122,63,72,-0.0357775717397132],[122,63,73,-0.031882993437711296],[122,63,74,-0.028738352277271992],[122,63,75,-0.01973188798528465],[122,63,76,-0.011847343701369847],[122,63,77,-0.00855874809623168],[122,63,78,-0.003377626440333681],[122,63,79,-8.876358456530731E-4],[122,64,64,5.751513823415433E-5],[122,64,65,-0.007952717823496519],[122,64,66,-0.0175347882359701],[122,64,67,-0.02336922313903339],[122,64,68,-0.0261144768015366],[122,64,69,-0.02891941181100642],[122,64,70,-0.031993109457458535],[122,64,71,-0.03017323425185424],[122,64,72,-0.025172049983992098],[122,64,73,-0.024204932215403985],[122,64,74,-0.02108391093960224],[122,64,75,-0.011429639667290062],[122,64,76,-0.004523863204362724],[122,64,77,-8.663429526177824E-4],[122,64,78,0.0030065629737937305],[122,64,79,0.007365926310634763],[122,65,64,6.084819522464424E-5],[122,65,65,-0.00826596279867324],[122,65,66,-0.01755444882393231],[122,65,67,-0.024135612925293093],[122,65,68,-0.02877061664537739],[122,65,69,-0.02949779652548251],[122,65,70,-0.03356349276371268],[122,65,71,-0.03152975592463238],[122,65,72,-0.028244872544443828],[122,65,73,-0.028058700613304524],[122,65,74,-0.023983137851245367],[122,65,75,-0.014516814853839266],[122,65,76,-0.005217359326232837],[122,65,77,-0.003400792956624904],[122,65,78,0.0013233469288091854],[122,65,79,0.006406143924069935],[122,66,64,-0.006668029381565382],[122,66,65,-0.01459066090098493],[122,66,66,-0.02670850279244065],[122,66,67,-0.03380360496394309],[122,66,68,-0.03610138158571935],[122,66,69,-0.03795089796423584],[122,66,70,-0.0410622709111962],[122,66,71,-0.03889066736912443],[122,66,72,-0.03625575578754907],[122,66,73,-0.03775083498741852],[122,66,74,-0.03458641646609803],[122,66,75,-0.025264511887617164],[122,66,76,-0.017681225722872812],[122,66,77,-0.013001565177873667],[122,66,78,-0.006488250436876453],[122,66,79,-0.0013803769137293587],[122,67,64,-0.009060736334869965],[122,67,65,-0.0186536686136083],[122,67,66,-0.031025662145618887],[122,67,67,-0.037341223762651296],[122,67,68,-0.039498561981202954],[122,67,69,-0.03842323594905114],[122,67,70,-0.041141042975176],[122,67,71,-0.039556973456220196],[122,67,72,-0.03891775754257472],[122,67,73,-0.04146664247718987],[122,67,74,-0.036963542071741184],[122,67,75,-0.029542909641309872],[122,67,76,-0.023276255457088446],[122,67,77,-0.016953924337013898],[122,67,78,-0.01114180012180975],[122,67,79,-0.006955524234465285],[122,68,64,-0.10433900916153244],[122,68,65,-0.11494176887770259],[122,68,66,-0.1260028683588004],[122,68,67,-0.1348878160239892],[122,68,68,-0.13332042025234478],[122,68,69,-0.13313344481113412],[122,68,70,-0.1336807367796089],[122,68,71,-0.13217235864670482],[122,68,72,-0.13160523242421052],[122,68,73,-0.13571520099037981],[122,68,74,-0.13258975120534647],[122,68,75,-0.1258533404791925],[122,68,76,-0.11695019473745971],[122,68,77,-0.11103134632725267],[122,68,78,-0.10581027456638849],[122,68,79,-0.10136504434174914],[122,69,64,-0.1150705180970242],[122,69,65,-0.12175362908301034],[122,69,66,-0.12868383343821438],[122,69,67,-0.13166055324072368],[122,69,68,-0.12820313477704795],[122,69,69,-0.12329694973235247],[122,69,70,-0.12125185374382673],[122,69,71,-0.12275003243309127],[122,69,72,-0.12541890195596933],[122,69,73,-0.13170017079129867],[122,69,74,-0.1307488676737861],[122,69,75,-0.12252645752338812],[122,69,76,-0.11355295358387367],[122,69,77,-0.10692343541744706],[122,69,78,-0.1025738421314451],[122,69,79,-0.09541939636467467],[122,70,64,-0.11537094130750866],[122,70,65,-0.12253867621737913],[122,70,66,-0.12921230741941359],[122,70,67,-0.1318515699138556],[122,70,68,-0.13027117736483032],[122,70,69,-0.12620685243909413],[122,70,70,-0.12388995229305985],[122,70,71,-0.12461960216335213],[122,70,72,-0.12606038013719198],[122,70,73,-0.1310444134730857],[122,70,74,-0.13001613264033435],[122,70,75,-0.12132721137768676],[122,70,76,-0.11383961544401947],[122,70,77,-0.1092265598265896],[122,70,78,-0.10375602671954176],[122,70,79,-0.09888151046907062],[122,71,64,-0.10625540321496021],[122,71,65,-0.11513688333925563],[122,71,66,-0.12068524278915933],[122,71,67,-0.12285960246135515],[122,71,68,-0.12179435456917782],[122,71,69,-0.11882916358047556],[122,71,70,-0.11916784195775604],[122,71,71,-0.11781973089627217],[122,71,72,-0.11838542677573842],[122,71,73,-0.12305656680160756],[122,71,74,-0.1222967639229186],[122,71,75,-0.11423598325225873],[122,71,76,-0.10557830811482109],[122,71,77,-0.10288342007236836],[122,71,78,-0.09794627742025488],[122,71,79,-0.0942977921918293],[122,72,64,-0.10824968004058241],[122,72,65,-0.11532734291732603],[122,72,66,-0.12334500046187366],[122,72,67,-0.12463795847433003],[122,72,68,-0.11936472060826445],[122,72,69,-0.1220064056305919],[122,72,70,-0.12140817616919929],[122,72,71,-0.12161843182732604],[122,72,72,-0.12142254277612477],[122,72,73,-0.12466598718695085],[122,72,74,-0.12272912209042044],[122,72,75,-0.11785744058320967],[122,72,76,-0.11062410907653805],[122,72,77,-0.10523745104547952],[122,72,78,-0.10102773330241514],[122,72,79,-0.09853140798642514],[122,73,64,-0.12286887963376586],[122,73,65,-0.1287843022115958],[122,73,66,-0.1374293070218769],[122,73,67,-0.13657951636363935],[122,73,68,-0.13179133983035352],[122,73,69,-0.1323009007453279],[122,73,70,-0.12838171798581893],[122,73,71,-0.12517255640515096],[122,73,72,-0.12031541730791048],[122,73,73,-0.11911153469336472],[122,73,74,-0.11534154834212207],[122,73,75,-0.1116197776460311],[122,73,76,-0.10715617718326732],[122,73,77,-0.10365260610225646],[122,73,78,-0.10772562118530138],[122,73,79,-0.11022448679392002],[122,74,64,-0.13482271800760637],[122,74,65,-0.14005062777373972],[122,74,66,-0.14531242718373968],[122,74,67,-0.1447283757844499],[122,74,68,-0.14339084373249875],[122,74,69,-0.13962176369293378],[122,74,70,-0.13437122206945143],[122,74,71,-0.1338418734574824],[122,74,72,-0.12884893221332136],[122,74,73,-0.12622035874250082],[122,74,74,-0.12491494134063269],[122,74,75,-0.12104707119683408],[122,74,76,-0.11488634916331117],[122,74,77,-0.1142031165523012],[122,74,78,-0.11679284432592993],[122,74,79,-0.11891341809504585],[122,75,64,-0.13857597760467316],[122,75,65,-0.14533918853374228],[122,75,66,-0.14727296152934138],[122,75,67,-0.14682882939564756],[122,75,68,-0.14842494141083],[122,75,69,-0.1417007720539058],[122,75,70,-0.13509479247365036],[122,75,71,-0.13697030391601706],[122,75,72,-0.13281851681677864],[122,75,73,-0.12960504606366424],[122,75,74,-0.12912989007140768],[122,75,75,-0.12213725333899293],[122,75,76,-0.11852661341782383],[122,75,77,-0.11792083873770765],[122,75,78,-0.12270863406260937],[122,75,79,-0.12316179752633633],[122,76,64,-0.13593745553932074],[122,76,65,-0.14363480721377703],[122,76,66,-0.14752335400825123],[122,76,67,-0.14671681511399223],[122,76,68,-0.1506886810634339],[122,76,69,-0.14450317043456745],[122,76,70,-0.1381079368927316],[122,76,71,-0.13697822067217524],[122,76,72,-0.13588117488105536],[122,76,73,-0.13226640466692116],[122,76,74,-0.12953066077612388],[122,76,75,-0.1230794183216041],[122,76,76,-0.11903725943664395],[122,76,77,-0.12147864166317172],[122,76,78,-0.12623792139192003],[122,76,79,-0.12741613240582197],[122,77,64,-0.13722533233604045],[122,77,65,-0.14461838619027811],[122,77,66,-0.1507061118972837],[122,77,67,-0.15391158340870909],[122,77,68,-0.15718956991206678],[122,77,69,-0.15177689612224132],[122,77,70,-0.14660631825005715],[122,77,71,-0.14508635003552114],[122,77,72,-0.14485386254625388],[122,77,73,-0.14142347909443123],[122,77,74,-0.1385567243153796],[122,77,75,-0.13331804439683348],[122,77,76,-0.12826152745659467],[122,77,77,-0.1281743849195128],[122,77,78,-0.13194236677458865],[122,77,79,-0.13414997871947634],[122,78,64,-0.14179385266778655],[122,78,65,-0.1500521016021926],[122,78,66,-0.15614853817519905],[122,78,67,-0.1564466638786829],[122,78,68,-0.1597747500140408],[122,78,69,-0.15642257819627658],[122,78,70,-0.15035790917479452],[122,78,71,-0.14842119347750338],[122,78,72,-0.14751102677580108],[122,78,73,-0.14624407377395626],[122,78,74,-0.14356426389339905],[122,78,75,-0.138280445663523],[122,78,76,-0.1332921394831499],[122,78,77,-0.13158754853213436],[122,78,78,-0.13527456050702766],[122,78,79,-0.13667236719890494],[122,79,64,-0.13583528583898125],[122,79,65,-0.14434520268121812],[122,79,66,-0.1486671779673806],[122,79,67,-0.1497441024343582],[122,79,68,-0.14974827384537118],[122,79,69,-0.1498450597931583],[122,79,70,-0.14445269964748708],[122,79,71,-0.14294328834689635],[122,79,72,-0.14134051385148672],[122,79,73,-0.14117471490675151],[122,79,74,-0.1414012439330526],[122,79,75,-0.13573611800737706],[122,79,76,-0.13169391760656113],[122,79,77,-0.13146754304362324],[122,79,78,-0.1332642851845001],[122,79,79,-0.1335184814055438],[122,80,64,-0.1379665156698851],[122,80,65,-0.14676460411901363],[122,80,66,-0.1506532044852287],[122,80,67,-0.15030947932332528],[122,80,68,-0.14980618039827015],[122,80,69,-0.1493761661333981],[122,80,70,-0.14289243994155],[122,80,71,-0.14376670926387217],[122,80,72,-0.14329580403171455],[122,80,73,-0.1448173917736783],[122,80,74,-0.14777105782915487],[122,80,75,-0.143087961867248],[122,80,76,-0.13904790557885677],[122,80,77,-0.13751409863368314],[122,80,78,-0.13845900072958833],[122,80,79,-0.13734032292966009],[122,81,64,-0.12976184284902764],[122,81,65,-0.1379118410352955],[122,81,66,-0.14109427850413894],[122,81,67,-0.1398232924410625],[122,81,68,-0.14017414310448906],[122,81,69,-0.13825185717749552],[122,81,70,-0.1344750090031134],[122,81,71,-0.13809430049650095],[122,81,72,-0.1446198791842967],[122,81,73,-0.1509327974184976],[122,81,74,-0.15150592382887723],[122,81,75,-0.1521207424029301],[122,81,76,-0.1466211507126868],[122,81,77,-0.1471818318262989],[122,81,78,-0.1475838259838143],[122,81,79,-0.14945079636124303],[122,82,64,-0.13757830980182836],[122,82,65,-0.14494016838934115],[122,82,66,-0.1476825964654045],[122,82,67,-0.14535780902379458],[122,82,68,-0.14522645626393657],[122,82,69,-0.14397003496339708],[122,82,70,-0.1424208505161866],[122,82,71,-0.14609531494266845],[122,82,72,-0.153421639249116],[122,82,73,-0.15971005713641107],[122,82,74,-0.15970942314080602],[122,82,75,-0.16119334220123538],[122,82,76,-0.15552769692012375],[122,82,77,-0.15527452958131405],[122,82,78,-0.15688170358566011],[122,82,79,-0.1590325522271022],[122,83,64,-0.14086420560547125],[122,83,65,-0.14715885983505608],[122,83,66,-0.14932664156363776],[122,83,67,-0.14527553129445808],[122,83,68,-0.14370705490602081],[122,83,69,-0.1444514980631752],[122,83,70,-0.1450763679353228],[122,83,71,-0.1491801537774627],[122,83,72,-0.1570180657496711],[122,83,73,-0.16288153856750642],[122,83,74,-0.16287122391713774],[122,83,75,-0.16516013528914053],[122,83,76,-0.16109179034895507],[122,83,77,-0.1584023013196048],[122,83,78,-0.16043988425800237],[122,83,79,-0.16227951361580753],[122,84,64,-0.138701961607809],[122,84,65,-0.14407341291506903],[122,84,66,-0.14668578554857403],[122,84,67,-0.14326945287046544],[122,84,68,-0.1407456511082771],[122,84,69,-0.14355062622555828],[122,84,70,-0.1477289988847958],[122,84,71,-0.15407303619600554],[122,84,72,-0.15853624023925045],[122,84,73,-0.16342745970829295],[122,84,74,-0.1630966579924905],[122,84,75,-0.16806320310619463],[122,84,76,-0.16617409873442301],[122,84,77,-0.15978309799271712],[122,84,78,-0.16194252254865998],[122,84,79,-0.16422006565423866],[122,85,64,-0.1564078364746943],[122,85,65,-0.16067005085677574],[122,85,66,-0.1657916377061927],[122,85,67,-0.16308862245345684],[122,85,68,-0.15816212199405377],[122,85,69,-0.1622268774002024],[122,85,70,-0.16825086731039685],[122,85,71,-0.17039645567005185],[122,85,72,-0.17010471699337046],[122,85,73,-0.17079073042402154],[122,85,74,-0.17318129645163582],[122,85,75,-0.17517899799969],[122,85,76,-0.1726521668325997],[122,85,77,-0.16581023533710226],[122,85,78,-0.16158351740643406],[122,85,79,-0.16240983650531168],[122,86,64,-0.15749896397812269],[122,86,65,-0.16629718460412235],[122,86,66,-0.1681724511993981],[122,86,67,-0.1685044951364041],[122,86,68,-0.160270658511276],[122,86,69,-0.16499009078079727],[122,86,70,-0.17011806801690102],[122,86,71,-0.1717760548462548],[122,86,72,-0.1728375895909629],[122,86,73,-0.17174242199344536],[122,86,74,-0.17820910711228036],[122,86,75,-0.1785295721890518],[122,86,76,-0.1751968919786174],[122,86,77,-0.16835896290701624],[122,86,78,-0.16418423627212625],[122,86,79,-0.1648053676219866],[122,87,64,-0.14901685881976678],[122,87,65,-0.15698930876411044],[122,87,66,-0.1603183359183611],[122,87,67,-0.1623657565759366],[122,87,68,-0.15719780513464165],[122,87,69,-0.15886532819532523],[122,87,70,-0.1627765489432288],[122,87,71,-0.1641839298585247],[122,87,72,-0.1651053815853621],[122,87,73,-0.16728149155035935],[122,87,74,-0.1748504740742782],[122,87,75,-0.17534374417060375],[122,87,76,-0.17049601016338176],[122,87,77,-0.16644752503261123],[122,87,78,-0.15836441583883215],[122,87,79,-0.1595896949464728],[122,88,64,-0.1497503285850842],[122,88,65,-0.15531876176519988],[122,88,66,-0.1631412578080484],[122,88,67,-0.16613277244473548],[122,88,68,-0.15921892145800914],[122,88,69,-0.1592182784851166],[122,88,70,-0.16241809412661914],[122,88,71,-0.165256939972511],[122,88,72,-0.16864933268976165],[122,88,73,-0.1720591664523976],[122,88,74,-0.1792170880736532],[122,88,75,-0.18028247662079322],[122,88,76,-0.17414551445292467],[122,88,77,-0.16874903067310498],[122,88,78,-0.1611509910766155],[122,88,79,-0.1588211538376735],[122,89,64,-0.14766990365426597],[122,89,65,-0.15328402408261624],[122,89,66,-0.16429812950087821],[122,89,67,-0.16862151718719132],[122,89,68,-0.1601298269131518],[122,89,69,-0.16163949739470915],[122,89,70,-0.1624006523675835],[122,89,71,-0.1651221539136531],[122,89,72,-0.17030597684114365],[122,89,73,-0.17527548299037793],[122,89,74,-0.18395216498354672],[122,89,75,-0.1843940133887766],[122,89,76,-0.17843395313523946],[122,89,77,-0.17157208474528193],[122,89,78,-0.16224977009839864],[122,89,79,-0.16112662233657882],[122,90,64,-0.15325303524749131],[122,90,65,-0.1596450369641337],[122,90,66,-0.16920875988764186],[122,90,67,-0.1743100956921778],[122,90,68,-0.17014992059559314],[122,90,69,-0.17056057041608558],[122,90,70,-0.1689211233267391],[122,90,71,-0.17079819148968087],[122,90,72,-0.1760994307171898],[122,90,73,-0.1839134809109883],[122,90,74,-0.19181634319408464],[122,90,75,-0.1929950773660118],[122,90,76,-0.18781515510366792],[122,90,77,-0.17849732479134167],[122,90,78,-0.17047140162890814],[122,90,79,-0.16749380981220183],[122,91,64,-0.1521638398701905],[122,91,65,-0.16060592330706566],[122,91,66,-0.16757374911225337],[122,91,67,-0.16963243213039159],[122,91,68,-0.17200157391535664],[122,91,69,-0.17104425414545596],[122,91,70,-0.17076528600718316],[122,91,71,-0.17193422888262125],[122,91,72,-0.17937155868501323],[122,91,73,-0.18587990381300712],[122,91,74,-0.1925293144200636],[122,91,75,-0.1932626936785083],[122,91,76,-0.19056452434960697],[122,91,77,-0.18047384402301891],[122,91,78,-0.17204119205208002],[122,91,79,-0.16938906165445455],[122,92,64,-0.13027056123146136],[122,92,65,-0.1423145211831532],[122,92,66,-0.15011722983511533],[122,92,67,-0.1511868186659373],[122,92,68,-0.15479909890023277],[122,92,69,-0.15680460449207342],[122,92,70,-0.15745116920389995],[122,92,71,-0.15936166117398265],[122,92,72,-0.16583813281731913],[122,92,73,-0.17461803331774917],[122,92,74,-0.1776261932282356],[122,92,75,-0.18106518651968515],[122,92,76,-0.17851222382007942],[122,92,77,-0.1674523255649088],[122,92,78,-0.16147586739250816],[122,92,79,-0.15710740984242333],[122,93,64,-0.1183011615414384],[122,93,65,-0.13325766490190621],[122,93,66,-0.14460587862733632],[122,93,67,-0.1494089403250586],[122,93,68,-0.15254630222545193],[122,93,69,-0.15571498833240385],[122,93,70,-0.15745399321580772],[122,93,71,-0.16284892591327277],[122,93,72,-0.17160900713148686],[122,93,73,-0.18121333231118586],[122,93,74,-0.18484326638338894],[122,93,75,-0.18679653812629493],[122,93,76,-0.18476073725198802],[122,93,77,-0.17152316295288383],[122,93,78,-0.16209249102180193],[122,93,79,-0.15396016839514126],[122,94,64,-0.11774862234702826],[122,94,65,-0.13077673649662463],[122,94,66,-0.14300741177603848],[122,94,67,-0.15274648384228962],[122,94,68,-0.15605186462958712],[122,94,69,-0.15651703909873743],[122,94,70,-0.15807171220217384],[122,94,71,-0.16401989794882216],[122,94,72,-0.1700941589085034],[122,94,73,-0.18012055135922944],[122,94,74,-0.18440784407647545],[122,94,75,-0.18785581061496565],[122,94,76,-0.18414448060444394],[122,94,77,-0.1728157654821926],[122,94,78,-0.16220408517423754],[122,94,79,-0.15301204241281557],[122,95,64,-0.10933167840116995],[122,95,65,-0.12272990061866688],[122,95,66,-0.13603053793747547],[122,95,67,-0.1459933123014561],[122,95,68,-0.1485998435523993],[122,95,69,-0.15015712206748216],[122,95,70,-0.15026138755441698],[122,95,71,-0.15696357956911353],[122,95,72,-0.16244382381977104],[122,95,73,-0.17050184661709938],[122,95,74,-0.176173026451578],[122,95,75,-0.17931489663378558],[122,95,76,-0.17931811381621038],[122,95,77,-0.16566494527310915],[122,95,78,-0.15350063275946116],[122,95,79,-0.1447495886363621],[122,96,64,-0.10859751951929861],[122,96,65,-0.12414247721522664],[122,96,66,-0.13801453910431058],[122,96,67,-0.14603410021821425],[122,96,68,-0.14725279143020265],[122,96,69,-0.15071947372242728],[122,96,70,-0.1511753130916803],[122,96,71,-0.1568719171966056],[122,96,72,-0.1609566416179733],[122,96,73,-0.16732505104179407],[122,96,74,-0.1745862516181687],[122,96,75,-0.17785495899156997],[122,96,76,-0.17616933858005618],[122,96,77,-0.168605177299727],[122,96,78,-0.15438412386114633],[122,96,79,-0.14513855400525189],[122,97,64,-0.12003044632597376],[122,97,65,-0.1302216057163859],[122,97,66,-0.14030319133335178],[122,97,67,-0.14549222763308076],[122,97,68,-0.14727317584134927],[122,97,69,-0.1496379740510429],[122,97,70,-0.14997195762905147],[122,97,71,-0.15204135545534517],[122,97,72,-0.15259622618167612],[122,97,73,-0.15641759514617048],[122,97,74,-0.16109763480256334],[122,97,75,-0.16343020460304916],[122,97,76,-0.164830324218372],[122,97,77,-0.16495012816340748],[122,97,78,-0.16059280199673023],[122,97,79,-0.1525473945698143],[122,98,64,-0.12867841040073025],[122,98,65,-0.1393046738969141],[122,98,66,-0.14651602600241906],[122,98,67,-0.15106805090017195],[122,98,68,-0.15398629753050072],[122,98,69,-0.1544222342099693],[122,98,70,-0.1550292404455946],[122,98,71,-0.15813320814784504],[122,98,72,-0.15882296022499087],[122,98,73,-0.161842885540878],[122,98,74,-0.1645864536406043],[122,98,75,-0.16596991374724934],[122,98,76,-0.16903405484427764],[122,98,77,-0.16959424476645166],[122,98,78,-0.1665111711065536],[122,98,79,-0.1610214466835132],[122,99,64,-0.13304519817060154],[122,99,65,-0.14423910329455628],[122,99,66,-0.14777880347345973],[122,99,67,-0.15045107106081415],[122,99,68,-0.154261462453333],[122,99,69,-0.15226827484070785],[122,99,70,-0.1521350255467476],[122,99,71,-0.15576895098424198],[122,99,72,-0.16102024261852638],[122,99,73,-0.16237104333055988],[122,99,74,-0.1623588853683595],[122,99,75,-0.16491856906494645],[122,99,76,-0.16697759070327928],[122,99,77,-0.1678518685203968],[122,99,78,-0.1657872106388087],[122,99,79,-0.16327346343739974],[122,100,64,-0.11876409639932806],[122,100,65,-0.12231108936803932],[122,100,66,-0.11782909965211114],[122,100,67,-0.11250929991834482],[122,100,68,-0.11175812520283251],[122,100,69,-0.10556760604506113],[122,100,70,-0.09851838339860666],[122,100,71,-0.09879705729452948],[122,100,72,-0.10378807063459276],[122,100,73,-0.10274912662783124],[122,100,74,-0.10488756804871673],[122,100,75,-0.10467110100707933],[122,100,76,-0.10988597015655302],[122,100,77,-0.11056402454675465],[122,100,78,-0.10777000912225024],[122,100,79,-0.10860663644116711],[122,101,64,-0.1212026710438062],[122,101,65,-0.12311361564602008],[122,101,66,-0.12057004930863399],[122,101,67,-0.11427757660032509],[122,101,68,-0.11031863937523632],[122,101,69,-0.10474801552361222],[122,101,70,-0.09762073142053662],[122,101,71,-0.0973352343473666],[122,101,72,-0.10159886439300383],[122,101,73,-0.10147326233102763],[122,101,74,-0.10248960280685912],[122,101,75,-0.1025888379195386],[122,101,76,-0.10682423010633077],[122,101,77,-0.10820518083527035],[122,101,78,-0.10895524954366427],[122,101,79,-0.11114715340716415],[122,102,64,-0.12504364196036422],[122,102,65,-0.12306375430150343],[122,102,66,-0.12048695993960928],[122,102,67,-0.11452462540839088],[122,102,68,-0.10875735241218486],[122,102,69,-0.10481648937984533],[122,102,70,-0.09593585937826604],[122,102,71,-0.09503795854050662],[122,102,72,-0.09813267671836214],[122,102,73,-0.09885342958711635],[122,102,74,-0.09790403415010698],[122,102,75,-0.10227569313545787],[122,102,76,-0.10338198988488113],[122,102,77,-0.10585901744634632],[122,102,78,-0.110853958247433],[122,102,79,-0.11325910494843908],[122,103,64,-0.12005266316435162],[122,103,65,-0.11569897391336001],[122,103,66,-0.11095672462475306],[122,103,67,-0.10388065290640944],[122,103,68,-0.10057962941833594],[122,103,69,-0.09535141633343788],[122,103,70,-0.08711869022774252],[122,103,71,-0.08941174495026592],[122,103,72,-0.0902573465518458],[122,103,73,-0.09180775546583553],[122,103,74,-0.09067217168283882],[122,103,75,-0.09442833075521503],[122,103,76,-0.09654934356892315],[122,103,77,-0.10055419906983361],[122,103,78,-0.10720256125243748],[122,103,79,-0.11234252177773105],[122,104,64,-0.1216575082031418],[122,104,65,-0.11673776282359985],[122,104,66,-0.11084300414586376],[122,104,67,-0.10421599551438282],[122,104,68,-0.1021350988775778],[122,104,69,-0.09702118106339659],[122,104,70,-0.08972525091176425],[122,104,71,-0.0893514587485705],[122,104,72,-0.08893995692498204],[122,104,73,-0.09282047935166735],[122,104,74,-0.0907331494234141],[122,104,75,-0.09337400721920025],[122,104,76,-0.09576987700168335],[122,104,77,-0.1015034820057441],[122,104,78,-0.10786802635902096],[122,104,79,-0.113820611433884],[122,105,64,-0.12761021467245848],[122,105,65,-0.11940463737098149],[122,105,66,-0.10798926289609523],[122,105,67,-0.09765719185274953],[122,105,68,-0.09536567426948389],[122,105,69,-0.0901638936964519],[122,105,70,-0.08397606426504943],[122,105,71,-0.08481177868612502],[122,105,72,-0.08485628108540709],[122,105,73,-0.08795425592178119],[122,105,74,-0.0853574702222456],[122,105,75,-0.08685194859969236],[122,105,76,-0.09219451474653913],[122,105,77,-0.09603078070785889],[122,105,78,-0.10436088690275508],[122,105,79,-0.1130664835235284],[122,106,64,-0.13555255580895095],[122,106,65,-0.12732392398590037],[122,106,66,-0.11630295410557435],[122,106,67,-0.10551932714212284],[122,106,68,-0.10193566650857586],[122,106,69,-0.09701883041687606],[122,106,70,-0.09304991913186705],[122,106,71,-0.08946105395785839],[122,106,72,-0.09222982434123353],[122,106,73,-0.09560337263488912],[122,106,74,-0.0921079626918581],[122,106,75,-0.09046048155822084],[122,106,76,-0.09638441768082526],[122,106,77,-0.10030777239565539],[122,106,78,-0.10838008904673327],[122,106,79,-0.11860973151588752],[122,107,64,-0.13598012627103065],[122,107,65,-0.12918324058076772],[122,107,66,-0.11786467096574173],[122,107,67,-0.10842679935350243],[122,107,68,-0.10348815468641971],[122,107,69,-0.10000812627571397],[122,107,70,-0.09595206248927851],[122,107,71,-0.09155745479759554],[122,107,72,-0.09505661575065175],[122,107,73,-0.09848293523689403],[122,107,74,-0.09477110228657297],[122,107,75,-0.08953693648033234],[122,107,76,-0.0936327993668539],[122,107,77,-0.0996233891787059],[122,107,78,-0.10713975347672991],[122,107,79,-0.116588408754281],[122,108,64,-0.13379127554041667],[122,108,65,-0.12893972351120406],[122,108,66,-0.1217203941960293],[122,108,67,-0.1137249850826966],[122,108,68,-0.10674626443952111],[122,108,69,-0.10356573534967965],[122,108,70,-0.10032581262561498],[122,108,71,-0.09694905822017254],[122,108,72,-0.09983456871934843],[122,108,73,-0.10148872906795339],[122,108,74,-0.09958126491430502],[122,108,75,-0.09487028289835805],[122,108,76,-0.09737156129017883],[122,108,77,-0.10379276705507509],[122,108,78,-0.11374039046554577],[122,108,79,-0.1228172840694754],[122,109,64,-0.12603759510280552],[122,109,65,-0.1265865249567956],[122,109,66,-0.12623420854008124],[122,109,67,-0.12278119684603589],[122,109,68,-0.11805744025777005],[122,109,69,-0.11357042865732693],[122,109,70,-0.10990666988868326],[122,109,71,-0.10851099276933669],[122,109,72,-0.1085523264056967],[122,109,73,-0.10781622049526549],[122,109,74,-0.10719174243705097],[122,109,75,-0.10751995873395563],[122,109,76,-0.10628667120228974],[122,109,77,-0.10981957986983729],[122,109,78,-0.12105515970831347],[122,109,79,-0.12555706453541657],[122,110,64,-0.12444044070914301],[122,110,65,-0.12676319111544382],[122,110,66,-0.12795060159471855],[122,110,67,-0.12294134653832861],[122,110,68,-0.12092315649038443],[122,110,69,-0.1146803450411352],[122,110,70,-0.11024018552897144],[122,110,71,-0.10989243560095538],[122,110,72,-0.10807325424192378],[122,110,73,-0.10759261053778321],[122,110,74,-0.1079382985135199],[122,110,75,-0.10971536588597258],[122,110,76,-0.10999310536121593],[122,110,77,-0.11334289747667342],[122,110,78,-0.12094343383890097],[122,110,79,-0.12758301709768954],[122,111,64,-0.11832620912760397],[122,111,65,-0.11998637250354563],[122,111,66,-0.12163381165465902],[122,111,67,-0.11790556632878663],[122,111,68,-0.11431316992536453],[122,111,69,-0.10876020602476817],[122,111,70,-0.10406172193903046],[122,111,71,-0.10386724761561306],[122,111,72,-0.1032787399407229],[122,111,73,-0.10241268800234524],[122,111,74,-0.10327802558172222],[122,111,75,-0.10877664767968279],[122,111,76,-0.1082449855735867],[122,111,77,-0.11415986197417277],[122,111,78,-0.11894707380591746],[122,111,79,-0.12657518488208258],[122,112,64,-0.11740935937949758],[122,112,65,-0.12114893105535357],[122,112,66,-0.12385325044571581],[122,112,67,-0.11953518230861404],[122,112,68,-0.11385026597001338],[122,112,69,-0.10695821658302582],[122,112,70,-0.10194065967053073],[122,112,71,-0.10226668839450666],[122,112,72,-0.10083655649032701],[122,112,73,-0.10134685108250205],[122,112,74,-0.10282222795959624],[122,112,75,-0.10878057083111045],[122,112,76,-0.10899127095475139],[122,112,77,-0.11173678492733431],[122,112,78,-0.1189441476709124],[122,112,79,-0.1262327276259974],[122,113,64,-0.11665889374457093],[122,113,65,-0.12124561180617016],[122,113,66,-0.12303145460137564],[122,113,67,-0.11885712990584794],[122,113,68,-0.11355453837323126],[122,113,69,-0.10894865436615714],[122,113,70,-0.10265073928856527],[122,113,71,-0.10185401871980096],[122,113,72,-0.10076562123888921],[122,113,73,-0.10104445193999999],[122,113,74,-0.1037783225699819],[122,113,75,-0.10876133852523717],[122,113,76,-0.10917063741367584],[122,113,77,-0.11053011913475391],[122,113,78,-0.11927335691218383],[122,113,79,-0.12968860072451355],[122,114,64,-0.12285148213325874],[122,114,65,-0.1287320427763626],[122,114,66,-0.12877231483799445],[122,114,67,-0.1250557047352996],[122,114,68,-0.122640721773846],[122,114,69,-0.11677469292704393],[122,114,70,-0.11103105875041169],[122,114,71,-0.10867753381057363],[122,114,72,-0.1068864218634196],[122,114,73,-0.10791367841269026],[122,114,74,-0.10964822003160071],[122,114,75,-0.1129366025253149],[122,114,76,-0.11436777082031606],[122,114,77,-0.11412089406645144],[122,114,78,-0.1257191622034617],[122,114,79,-0.13618835578341032],[122,115,64,-0.1232532983424123],[122,115,65,-0.1280925889546815],[122,115,66,-0.1274533861919284],[122,115,67,-0.12604251544616452],[122,115,68,-0.12263141410150963],[122,115,69,-0.11760587540977085],[122,115,70,-0.11211464769047728],[122,115,71,-0.11024173469066376],[122,115,72,-0.10764241483735387],[122,115,73,-0.10721206321411941],[122,115,74,-0.10926569245155787],[122,115,75,-0.11003365970027013],[122,115,76,-0.11445420882468758],[122,115,77,-0.11584746130454063],[122,115,78,-0.12535495615048314],[122,115,79,-0.1324093408246746],[122,116,64,-0.098934667970208],[122,116,65,-0.10469006053931207],[122,116,66,-0.10937602027852564],[122,116,67,-0.1105728990827283],[122,116,68,-0.10922965224548473],[122,116,69,-0.10674008276703408],[122,116,70,-0.10338793469063523],[122,116,71,-0.10521201570011311],[122,116,72,-0.10239621910147244],[122,116,73,-0.10190511116954099],[122,116,74,-0.10398155474422972],[122,116,75,-0.1062753751049508],[122,116,76,-0.10896156865664024],[122,116,77,-0.10936209919599019],[122,116,78,-0.11465959549981991],[122,116,79,-0.11689483724071126],[122,117,64,-0.10156131214134453],[122,117,65,-0.10223767231877799],[122,117,66,-0.11003783644118814],[122,117,67,-0.11574947499917886],[122,117,68,-0.1136120712042146],[122,117,69,-0.11160781368110753],[122,117,70,-0.11131927142092618],[122,117,71,-0.11152801816481313],[122,117,72,-0.1068727015719923],[122,117,73,-0.10761537030700294],[122,117,74,-0.11378972167877288],[122,117,75,-0.11407785932701875],[122,117,76,-0.11606677267121712],[122,117,77,-0.1133827057310226],[122,117,78,-0.10915167740629539],[122,117,79,-0.10444589043462678],[122,118,64,-0.09989317983635576],[122,118,65,-0.09893397109758395],[122,118,66,-0.1065634974021866],[122,118,67,-0.11308863475943157],[122,118,68,-0.1125514745884533],[122,118,69,-0.10993603676909794],[122,118,70,-0.11203672378226467],[122,118,71,-0.11258872291475731],[122,118,72,-0.10680809993620971],[122,118,73,-0.10963061218255965],[122,118,74,-0.1159918752825663],[122,118,75,-0.11579811657454248],[122,118,76,-0.11552436215284143],[122,118,77,-0.11468684555182268],[122,118,78,-0.10849536469965859],[122,118,79,-0.10354798812494614],[122,119,64,-0.09032277329597438],[122,119,65,-0.08957103033825248],[122,119,66,-0.09859154680810756],[122,119,67,-0.10449997750736562],[122,119,68,-0.10495066130759502],[122,119,69,-0.10512207663093937],[122,119,70,-0.10749022887546869],[122,119,71,-0.1061130025855292],[122,119,72,-0.10371468225360668],[122,119,73,-0.10551488719229252],[122,119,74,-0.11309784274013224],[122,119,75,-0.11375593693500743],[122,119,76,-0.11587877443349556],[122,119,77,-0.11457975933681339],[122,119,78,-0.10943604575196389],[122,119,79,-0.10407996602722044],[122,120,64,-0.08747456738516987],[122,120,65,-0.09072118700525648],[122,120,66,-0.09518590166800633],[122,120,67,-0.09916869473769685],[122,120,68,-0.10065891493735354],[122,120,69,-0.10415712846725175],[122,120,70,-0.10684131001563726],[122,120,71,-0.10713546691716894],[122,120,72,-0.1039892280968224],[122,120,73,-0.10446274600727115],[122,120,74,-0.11202880925684905],[122,120,75,-0.11365193671490051],[122,120,76,-0.11501873497851979],[122,120,77,-0.11604517942354167],[122,120,78,-0.11159041683379221],[122,120,79,-0.10497009017216552],[122,121,64,-0.08326101135700423],[122,121,65,-0.08644039415798396],[122,121,66,-0.08493587093027327],[122,121,67,-0.08520272356842476],[122,121,68,-0.08925698112009908],[122,121,69,-0.09223650613507876],[122,121,70,-0.09677204635037098],[122,121,71,-0.0963633587374497],[122,121,72,-0.09419197906523573],[122,121,73,-0.09590372088273634],[122,121,74,-0.10074182191812062],[122,121,75,-0.10223332933516958],[122,121,76,-0.1086064107111014],[122,121,77,-0.11306942398418239],[122,121,78,-0.1187684863072668],[122,121,79,-0.11703567046000879],[122,122,64,-0.0876360186994197],[122,122,65,-0.09063198313650517],[122,122,66,-0.09075899524932453],[122,122,67,-0.09016434336497112],[122,122,68,-0.09445844553110203],[122,122,69,-0.09946885177886838],[122,122,70,-0.10086278504858509],[122,122,71,-0.10071460404885829],[122,122,72,-0.10047954404679896],[122,122,73,-0.10234478820483553],[122,122,74,-0.10529089566244446],[122,122,75,-0.10460416468377345],[122,122,76,-0.11380898906337415],[122,122,77,-0.11883558584917611],[122,122,78,-0.12572078975319964],[122,122,79,-0.12594270430147347],[122,123,64,-0.08246365742853692],[122,123,65,-0.08745457342514323],[122,123,66,-0.08980720059402753],[122,123,67,-0.08987179246471796],[122,123,68,-0.09522749386687615],[122,123,69,-0.10047092298765233],[122,123,70,-0.10061814547653036],[122,123,71,-0.1009434132981787],[122,123,72,-0.102794330922076],[122,123,73,-0.10239170358680848],[122,123,74,-0.10401246113919554],[122,123,75,-0.10521001484379855],[122,123,76,-0.11275794946981543],[122,123,77,-0.11935470401246084],[122,123,78,-0.12814917222547456],[122,123,79,-0.12765992119627764],[122,124,64,-0.07872423089788894],[122,124,65,-0.08232411754643461],[122,124,66,-0.08562017634174625],[122,124,67,-0.08923481909547078],[122,124,68,-0.09284115094189849],[122,124,69,-0.09789528738297883],[122,124,70,-0.09503854293496061],[122,124,71,-0.09845726401721638],[122,124,72,-0.10078144393084831],[122,124,73,-0.10178352560545004],[122,124,74,-0.10197295007974405],[122,124,75,-0.10298444791270676],[122,124,76,-0.11271422255972557],[122,124,77,-0.12016610356325808],[122,124,78,-0.12883174132063857],[122,124,79,-0.12978877725901383],[122,125,64,-0.0752139937168757],[122,125,65,-0.07927601183411549],[122,125,66,-0.08343687531206342],[122,125,67,-0.08726038162288416],[122,125,68,-0.09407130625868872],[122,125,69,-0.09753600102328416],[122,125,70,-0.09557813777260504],[122,125,71,-0.09663973547907152],[122,125,72,-0.09939263176565734],[122,125,73,-0.10059927252378287],[122,125,74,-0.10196177838200449],[122,125,75,-0.10576800655353348],[122,125,76,-0.11441131669896867],[122,125,77,-0.12291657732345097],[122,125,78,-0.13021403310456392],[122,125,79,-0.12892760794900984],[122,126,64,-0.07076460410308047],[122,126,65,-0.07630529447384067],[122,126,66,-0.08023049133198135],[122,126,67,-0.08973702858330568],[122,126,68,-0.09596720669877147],[122,126,69,-0.09695335404103664],[122,126,70,-0.09649567486880034],[122,126,71,-0.0964365054755075],[122,126,72,-0.10100401890483786],[122,126,73,-0.10234548483171514],[122,126,74,-0.10460370838492954],[122,126,75,-0.10927274124894956],[122,126,76,-0.11799163144810162],[122,126,77,-0.12531082510168384],[122,126,78,-0.12856211233558734],[122,126,79,-0.12749762020508815],[122,127,64,-0.06267583993759268],[122,127,65,-0.06851618566739867],[122,127,66,-0.07194174287345265],[122,127,67,-0.08312400475388355],[122,127,68,-0.09334022928290292],[122,127,69,-0.0946930362948157],[122,127,70,-0.09471486942585283],[122,127,71,-0.09550425177083421],[122,127,72,-0.1007762468543916],[122,127,73,-0.10312666911040164],[122,127,74,-0.10896315381603132],[122,127,75,-0.1130448396323588],[122,127,76,-0.11969599014720242],[122,127,77,-0.1278381481681792],[122,127,78,-0.12625372378506838],[122,127,79,-0.129015118645461],[122,128,64,-0.06241655596198238],[122,128,65,-0.06589116996310648],[122,128,66,-0.07209024079221546],[122,128,67,-0.08235184858838554],[122,128,68,-0.09101913618942827],[122,128,69,-0.0945381319718002],[122,128,70,-0.09828050806740096],[122,128,71,-0.09919138786968312],[122,128,72,-0.10564045755428997],[122,128,73,-0.1067672891944276],[122,128,74,-0.10913884357245796],[122,128,75,-0.1149099266568607],[122,128,76,-0.12122367185888966],[122,128,77,-0.12885952209409257],[122,128,78,-0.1257091536504086],[122,128,79,-0.12831670926219682],[122,129,64,-0.05597858689043766],[122,129,65,-0.0640533627604361],[122,129,66,-0.07252185832401785],[122,129,67,-0.08191124730710518],[122,129,68,-0.09042996635120724],[122,129,69,-0.09486964646149622],[122,129,70,-0.10158495403033939],[122,129,71,-0.10783151485404589],[122,129,72,-0.10976985691142027],[122,129,73,-0.1113476948882258],[122,129,74,-0.11348906181584566],[122,129,75,-0.11738972615694888],[122,129,76,-0.1227351488822843],[122,129,77,-0.12408558629641409],[122,129,78,-0.12100772959963857],[122,129,79,-0.12047210480063064],[122,130,64,-0.06186661034335389],[122,130,65,-0.06946650156143447],[122,130,66,-0.08035822525497206],[122,130,67,-0.08635861573447447],[122,130,68,-0.09573821595167482],[122,130,69,-0.10302863461666042],[122,130,70,-0.11127140914041492],[122,130,71,-0.11512124724489707],[122,130,72,-0.11800748379181306],[122,130,73,-0.1187592085423718],[122,130,74,-0.12324368467300746],[122,130,75,-0.17302305598122078],[122,130,76,-0.1874083910064513],[122,130,77,-0.196243502645354],[122,130,78,-0.20531181961110145],[122,130,79,-0.1999495204657092],[122,131,64,-0.06228981412603934],[122,131,65,-0.0702440387208442],[122,131,66,-0.08012632868657188],[122,131,67,-0.08555788710449652],[122,131,68,-0.09634037410483554],[122,131,69,-0.10410228159862524],[122,131,70,-0.11395048418448925],[122,131,71,-0.1172242140947464],[122,131,72,-0.11906425757508154],[122,131,73,-0.11958233023878273],[122,131,74,-0.13158570085404134],[122,131,75,-0.18544975886438636],[122,131,76,-0.19756583705381392],[122,131,77,-0.20566201296161163],[122,131,78,-0.21964162593871062],[122,131,79,-0.22790449240589739],[122,132,64,-0.05425940059945436],[122,132,65,-0.06104643118062536],[122,132,66,-0.07058858625449627],[122,132,67,-0.07720124163320258],[122,132,68,-0.08685437713653803],[122,132,69,-0.09937872826110004],[122,132,70,-0.11100283330040245],[122,132,71,-0.11523524965338518],[122,132,72,-0.1158709867080427],[122,132,73,-0.1142222461789903],[122,132,74,-0.13679590981757675],[122,132,75,-0.19325971885464374],[122,132,76,-0.20134459044593384],[122,132,77,-0.21297004029217007],[122,132,78,-0.2212898368957922],[122,132,79,-0.2330182904505898],[122,133,64,-0.05999546478367038],[122,133,65,-0.06355421139036099],[122,133,66,-0.06862845350248234],[122,133,67,-0.07625415477044915],[122,133,68,-0.0839338566429994],[122,133,69,-0.096739109336511],[122,133,70,-0.1093777007464865],[122,133,71,-0.11600304022746452],[122,133,72,-0.11377101269229933],[122,133,73,-0.11511152601468935],[122,133,74,-0.1324332329950136],[122,133,75,-0.16718275145025277],[122,133,76,-0.17939944820416098],[122,133,77,-0.20104330985025276],[122,133,78,-0.21926546363359015],[122,133,79,-0.23419746016605664],[122,134,64,-0.059265129361223995],[122,134,65,-0.06148253174008257],[122,134,66,-0.06846681387757866],[122,134,67,-0.07655116586486689],[122,134,68,-0.08725372665511652],[122,134,69,-0.097239869097303],[122,134,70,-0.10911401397616198],[122,134,71,-0.11500621776979161],[122,134,72,-0.11370365878655037],[122,134,73,-0.12684708082902435],[122,134,74,-0.13934668448090146],[122,134,75,-0.17462479451198604],[122,134,76,-0.18366975762341553],[122,134,77,-0.20894106369592158],[122,134,78,-0.2285270020165512],[122,134,79,-0.23376310641337283],[122,135,64,-0.05191820527498492],[122,135,65,-0.055424867396401734],[122,135,66,-0.06352228165744069],[122,135,67,-0.07461051011385558],[122,135,68,-0.08474589731371071],[122,135,69,-0.09461218021254794],[122,135,70,-0.10535055174133338],[122,135,71,-0.11004249477945705],[122,135,72,-0.11145748856849916],[122,135,73,-0.11853229726056494],[122,135,74,-0.13539270162206052],[122,135,75,-0.1623820101270076],[122,135,76,-0.164580604323028],[122,135,77,-0.1971038958781141],[122,135,78,-0.22092121367906964],[122,135,79,-0.22263497039694008],[122,136,64,-0.0490115810297509],[122,136,65,-0.0541350588390303],[122,136,66,-0.06327241762100032],[122,136,67,-0.07629333371456828],[122,136,68,-0.0855001935090553],[122,136,69,-0.09450533487549315],[122,136,70,-0.10532942816130877],[122,136,71,-0.11105961178182736],[122,136,72,-0.11271116602789467],[122,136,73,-0.12017797142482854],[122,136,74,-0.14276061730154357],[122,136,75,-0.16836033717261828],[122,136,76,-0.16830830733368723],[122,136,77,-0.20735863140923186],[122,136,78,-0.23390976135611646],[122,136,79,-0.23485262907058835],[122,137,64,-0.04791459544561995],[122,137,65,-0.053420575632521776],[122,137,66,-0.06351622169786533],[122,137,67,-0.07742618697834242],[122,137,68,-0.08644296965618087],[122,137,69,-0.0947692303847899],[122,137,70,-0.10433697328363642],[122,137,71,-0.10884143859240998],[122,137,72,-0.11395026092759322],[122,137,73,-0.11629731200010453],[122,137,74,-0.13956515093890584],[122,137,75,-0.16208286661388857],[122,137,76,-0.16270629409634463],[122,137,77,-0.19485081383882175],[122,137,78,-0.22299272811894855],[122,137,79,-0.22729305695273863],[122,138,64,-0.054573755529314164],[122,138,65,-0.061568412313948835],[122,138,66,-0.0687268895153513],[122,138,67,-0.08241751603968112],[122,138,68,-0.09501781980857098],[122,138,69,-0.10216052521348053],[122,138,70,-0.10753850380031492],[122,138,71,-0.11495990478491983],[122,138,72,-0.11736790738504779],[122,138,73,-0.11873856919840267],[122,138,74,-0.125407099827619],[122,138,75,-0.14877017606101595],[122,138,76,-0.156023896880499],[122,138,77,-0.18012953429051898],[122,138,78,-0.2066134027764094],[122,138,79,-0.221386632476314],[122,139,64,-0.054779329528238524],[122,139,65,-0.06176602058645549],[122,139,66,-0.06982628368217439],[122,139,67,-0.08349459353879601],[122,139,68,-0.09470486294784469],[122,139,69,-0.10104180196165458],[122,139,70,-0.1069660158280176],[122,139,71,-0.11326593535184604],[122,139,72,-0.11501876605276504],[122,139,73,-0.1172284119931914],[122,139,74,-0.13284489686285092],[122,139,75,-0.16361844544996768],[122,139,76,-0.17940692723575893],[122,139,77,-0.19625441727452367],[122,139,78,-0.22048958951334469],[122,139,79,-0.24949137194169874],[122,140,64,-0.06511666803830943],[122,140,65,-0.06842841374687325],[122,140,66,-0.07242171015312128],[122,140,67,-0.08163409008802693],[122,140,68,-0.09211261871350385],[122,140,69,-0.09754500851177439],[122,140,70,-0.10016789300443676],[122,140,71,-0.10406698855871883],[122,140,72,-0.10821184113762608],[122,140,73,-0.11195084660805225],[122,140,74,-0.1261463124374161],[122,140,75,-0.16030951023962603],[122,140,76,-0.17909309545056276],[122,140,77,-0.18966251898535683],[122,140,78,-0.21338202643173032],[122,140,79,-0.2472954188175584],[122,141,64,-0.0626923368675801],[122,141,65,-0.06888362577897734],[122,141,66,-0.0754164991421451],[122,141,67,-0.0889240512134375],[122,141,68,-0.09925843889483886],[122,141,69,-0.10616506651571433],[122,141,70,-0.10653166074923189],[122,141,71,-0.10611277248968769],[122,141,72,-0.10970649944399723],[122,141,73,-0.11435317887394685],[122,141,74,-0.1307327104810848],[122,141,75,-0.15991831001508017],[122,141,76,-0.1746460135249149],[122,141,77,-0.1815728155402733],[122,141,78,-0.19263145121746758],[122,141,79,-0.22468026333221844],[122,142,64,-0.061135503734079145],[122,142,65,-0.06775156362793303],[122,142,66,-0.07644232450356625],[122,142,67,-0.09052526225728502],[122,142,68,-0.09966696282374321],[122,142,69,-0.10960907408507872],[122,142,70,-0.10761982322994651],[122,142,71,-0.10665687331633902],[122,142,72,-0.11139278523681334],[122,142,73,-0.11743986558086288],[122,142,74,-0.1337608258108667],[122,142,75,-0.1583519407308974],[122,142,76,-0.16996502999614216],[122,142,77,-0.1758144990212072],[122,142,78,-0.1920828065295115],[122,142,79,-0.21572063784992607],[122,143,64,-0.05742409004548877],[122,143,65,-0.06406161898201615],[122,143,66,-0.07369308071248624],[122,143,67,-0.08784241823530807],[122,143,68,-0.0979500207644151],[122,143,69,-0.10642341646260164],[122,143,70,-0.10783125943522898],[122,143,71,-0.10700406043437971],[122,143,72,-0.11155267976327346],[122,143,73,-0.11713595440168965],[122,143,74,-0.1292000571682335],[122,143,75,-0.14941533238162485],[122,143,76,-0.1592106041963495],[122,143,77,-0.16616737296573308],[122,143,78,-0.17973359367083283],[122,143,79,-0.19719507913976822],[122,144,64,-0.058549448631674855],[122,144,65,-0.06432567606872243],[122,144,66,-0.07307820508128711],[122,144,67,-0.0890296830714207],[122,144,68,-0.0965137590238033],[122,144,69,-0.10508091116388546],[122,144,70,-0.1071558978248508],[122,144,71,-0.10583661317520195],[122,144,72,-0.11273271931992337],[122,144,73,-0.11643775607397445],[122,144,74,-0.13149403705696205],[122,144,75,-0.15341874180854592],[122,144,76,-0.16369698055161375],[122,144,77,-0.17423469448363357],[122,144,78,-0.18170862214123715],[122,144,79,-0.2013382297763835],[122,145,64,-0.058650744159712206],[122,145,65,-0.06110285896990096],[122,145,66,-0.06782459280275471],[122,145,67,-0.08161565502572532],[122,145,68,-0.08790703898875289],[122,145,69,-0.09314648083943927],[122,145,70,-0.09577047600805204],[122,145,71,-0.10044903759943122],[122,145,72,-0.10778564045593665],[122,145,73,-0.1127470026043353],[122,145,74,-0.11881610580150052],[122,145,75,-0.1281519722506343],[122,145,76,-0.13647208548238393],[122,145,77,-0.14272470508233118],[122,145,78,-0.14645768695275513],[122,145,79,-0.15676367435504707],[122,146,64,-0.06528639065773799],[122,146,65,-0.06577853198088757],[122,146,66,-0.07225920111739038],[122,146,67,-0.08471485221058726],[122,146,68,-0.09248612005201712],[122,146,69,-0.09523341416496921],[122,146,70,-0.09781892557766636],[122,146,71,-0.10552816493793746],[122,146,72,-0.11316415410148893],[122,146,73,-0.11605022420555838],[122,146,74,-0.12467457235174631],[122,146,75,-0.1329359428562608],[122,146,76,-0.14105800940369306],[122,146,77,-0.14656145542352572],[122,146,78,-0.1533643147460339],[122,146,79,-0.16177240778469396],[122,147,64,-0.06530037569319525],[122,147,65,-0.06866575441147081],[122,147,66,-0.0751569130713121],[122,147,67,-0.08274521671808245],[122,147,68,-0.09067724197274923],[122,147,69,-0.09194516819259177],[122,147,70,-0.09582346895627925],[122,147,71,-0.10454449024603828],[122,147,72,-0.10924238603844255],[122,147,73,-0.11616568377618465],[122,147,74,-0.1247549235778182],[122,147,75,-0.13425821536621524],[122,147,76,-0.14007780688732566],[122,147,77,-0.14536957405002277],[122,147,78,-0.15303876192334212],[122,147,79,-0.16134854836897017],[122,148,64,-0.034836396938905556],[122,148,65,-0.04174699994072002],[122,148,66,-0.04805701513393147],[122,148,67,-0.05808478878897089],[122,148,68,-0.06680145851913014],[122,148,69,-0.07077782816743264],[122,148,70,-0.07777336663443309],[122,148,71,-0.08445115777824738],[122,148,72,-0.09190149763448383],[122,148,73,-0.10155054605664722],[122,148,74,-0.10989790888729971],[122,148,75,-0.11883118757099864],[122,148,76,-0.11645522839169065],[122,148,77,-0.1265422968484856],[122,148,78,-0.12191330026229277],[122,148,79,-0.12369489150682048],[122,149,64,-0.03908395118245013],[122,149,65,-0.045026452323772614],[122,149,66,-0.05055016821378177],[122,149,67,-0.05736501859953598],[122,149,68,-0.06459277039165649],[122,149,69,-0.07186538473034265],[122,149,70,-0.07949280282220597],[122,149,71,-0.08406018189070359],[122,149,72,-0.09370310681666563],[122,149,73,-0.10371363657116],[122,149,74,-0.11040993947532936],[122,149,75,-0.11630791809419297],[122,149,76,-0.11102550724920197],[122,149,77,-0.1253267879281434],[122,149,78,-0.1169740933303313],[122,149,79,-0.11545205094358588],[122,150,64,-0.039602249216308325],[122,150,65,-0.047716654341231464],[122,150,66,-0.050321573710795924],[122,150,67,-0.05781891190718951],[122,150,68,-0.06498064477041593],[122,150,69,-0.0714260226894339],[122,150,70,-0.0799978130208576],[122,150,71,-0.08564276556362738],[122,150,72,-0.09436673365684506],[122,150,73,-0.10451317846406316],[122,150,74,-0.10939628869371883],[122,150,75,-0.10635483315529318],[122,150,76,-0.10937759250443607],[122,150,77,-0.1221819919862804],[122,150,78,-0.11003135662762105],[122,150,79,-0.11030062708733052],[122,151,64,-0.03411753145026787],[122,151,65,-0.04572661819605118],[122,151,66,-0.049447391193577495],[122,151,67,-0.05709503758041973],[122,151,68,-0.06292739962748765],[122,151,69,-0.06919121987350671],[122,151,70,-0.07990997063688951],[122,151,71,-0.08612191140694556],[122,151,72,-0.09369453186644197],[122,151,73,-0.1015749149923241],[122,151,74,-0.10958805466983279],[122,151,75,-0.11497561695620137],[122,151,76,-0.11941992878564543],[122,151,77,-0.12455903943685036],[122,151,78,-0.12080666903365087],[122,151,79,-0.11135759501032],[122,152,64,-0.03482234092077073],[122,152,65,-0.04703601049745054],[122,152,66,-0.054179805322773],[122,152,67,-0.05969107065586469],[122,152,68,-0.06303797414637333],[122,152,69,-0.06798497886391347],[122,152,70,-0.08077019040938364],[122,152,71,-0.08706194169731218],[122,152,72,-0.09231650840920326],[122,152,73,-0.09781465208435454],[122,152,74,-0.10589526451522366],[122,152,75,-0.1066506260775197],[122,152,76,-0.11375434014118052],[122,152,77,-0.12180613291370836],[122,152,78,-0.11179868143386405],[122,152,79,-0.10415974111856938],[122,153,64,-0.031655782690613365],[122,153,65,-0.04586062005423763],[122,153,66,-0.06152439425169592],[122,153,67,-0.06997616866854725],[122,153,68,-0.07170261352539595],[122,153,69,-0.0771205028603415],[122,153,70,-0.08719039345407836],[122,153,71,-0.08967434055399688],[122,153,72,-0.09032436911015435],[122,153,73,-0.09306153661522526],[122,153,74,-0.09530071086270107],[122,153,75,-0.07962814595746158],[122,153,76,-0.09090136493354896],[122,153,77,-0.10035553459228784],[122,153,78,-0.08420594961162567],[122,153,79,-0.07570569878775552],[122,154,64,-0.03994978037326852],[122,154,65,-0.05053294263247015],[122,154,66,-0.06841126614371933],[122,154,67,-0.07449722802290834],[122,154,68,-0.07703121117175718],[122,154,69,-0.08356230793160449],[122,154,70,-0.09050861874201398],[122,154,71,-0.0909041717750063],[122,154,72,-0.0930244417153244],[122,154,73,-0.09738797959776406],[122,154,74,-0.10357327400055069],[122,154,75,-0.10346253627896418],[122,154,76,-0.11452223644598147],[122,154,77,-0.11853383292197724],[122,154,78,-0.09544015127238434],[122,154,79,-0.07949436646659913],[122,155,64,-0.04005757290874136],[122,155,65,-0.050156150402374734],[122,155,66,-0.06702805978999257],[122,155,67,-0.07477968136362681],[122,155,68,-0.07747433578335128],[122,155,69,-0.08227970065789612],[122,155,70,-0.08929673486714168],[122,155,71,-0.08771319572254627],[122,155,72,-0.08969958453409575],[122,155,73,-0.09359410800848762],[122,155,74,-0.10143556075288171],[122,155,75,-0.11198411315269245],[122,155,76,-0.1161208588931282],[122,155,77,-0.1153669553917401],[122,155,78,-0.09189899719354531],[122,155,79,-0.07752751360604934],[122,156,64,-0.03794021088800856],[122,156,65,-0.05024607247403519],[122,156,66,-0.06615093510218072],[122,156,67,-0.07339311505412119],[122,156,68,-0.07811728985864867],[122,156,69,-0.08221959530728266],[122,156,70,-0.08550271228224979],[122,156,71,-0.08723388483010147],[122,156,72,-0.09262143673551049],[122,156,73,-0.09492588790042614],[122,156,74,-0.1000846452391682],[122,156,75,-0.10991093662965869],[122,156,76,-0.11522724170836861],[122,156,77,-0.10662558345834347],[122,156,78,-0.07965298086438227],[122,156,79,-0.06205138282218188],[122,157,64,-0.0447139083884356],[122,157,65,-0.05305326358490421],[122,157,66,-0.060793511916211476],[122,157,67,-0.06479474051249036],[122,157,68,-0.06841571721108274],[122,157,69,-0.07215662537400183],[122,157,70,-0.07684087074478167],[122,157,71,-0.08169712378937166],[122,157,72,-0.08926986321295854],[122,157,73,-0.09452134095835457],[122,157,74,-0.09916387725535061],[122,157,75,-0.10896400487521184],[122,157,76,-0.11032099871100788],[122,157,77,-0.09358103950614566],[122,157,78,-0.06119115231721907],[122,157,79,-0.054568406890681556],[122,158,64,-0.04665212800076718],[122,158,65,-0.054122531384670075],[122,158,66,-0.059812826231545276],[122,158,67,-0.0606036352445893],[122,158,68,-0.06623302982300602],[122,158,69,-0.07164453342206874],[122,158,70,-0.0763969217564137],[122,158,71,-0.08189630192859773],[122,158,72,-0.08785018065595376],[122,158,73,-0.09327501184285433],[122,158,74,-0.09759191124889567],[122,158,75,-0.1083201868465174],[122,158,76,-0.10467347107187423],[122,158,77,-0.07738333596791289],[122,158,78,-0.04839589652217122],[122,158,79,-0.04905989704678658],[122,159,64,-0.10020476780152192],[122,159,65,-0.10342477435798857],[122,159,66,-0.09999074404496561],[122,159,67,-0.09526555130874409],[122,159,68,-0.09240472792855406],[122,159,69,-0.09373117897605575],[122,159,70,-0.0909522180036941],[122,159,71,-0.08854982570238934],[122,159,72,-0.0864430240269787],[122,159,73,-0.08533758745211178],[122,159,74,-0.08069673100570912],[122,159,75,-0.08314898469505104],[122,159,76,-0.08139848861527435],[122,159,77,-0.0535837727463404],[122,159,78,-0.028485164424810333],[122,159,79,-0.0338193143670219],[122,160,64,-0.10047232697381597],[122,160,65,-0.1038626471830882],[122,160,66,-0.1006821245171286],[122,160,67,-0.09495552659643537],[122,160,68,-0.0922493298859848],[122,160,69,-0.09400953833710807],[122,160,70,-0.08681096886712888],[122,160,71,-0.08419591345171729],[122,160,72,-0.08416777627865964],[122,160,73,-0.0830391956035591],[122,160,74,-0.07861609806979294],[122,160,75,-0.07924735215498785],[122,160,76,-0.07272207365577223],[122,160,77,-0.04497039639878247],[122,160,78,-0.02354021209058583],[122,160,79,-0.02753586733676456],[122,161,64,-0.09971060360004709],[122,161,65,-0.10245369567201959],[122,161,66,-0.10097247500517748],[122,161,67,-0.09592289620230761],[122,161,68,-0.09213899972883902],[122,161,69,-0.09061747226861033],[122,161,70,-0.08393787242792317],[122,161,71,-0.08074127855830834],[122,161,72,-0.08119482967959821],[122,161,73,-0.08289693896795174],[122,161,74,-0.07753618902486124],[122,161,75,-0.07365209279845447],[122,161,76,-0.07106514975335926],[122,161,77,-0.03536416784179724],[122,161,78,-0.01415682561363625],[122,161,79,-0.008160071472479657],[122,162,64,-0.10326640923932176],[122,162,65,-0.10563457973622907],[122,162,66,-0.10537640748284162],[122,162,67,-0.10264706079376582],[122,162,68,-0.09653289766296394],[122,162,69,-0.09352118048982344],[122,162,70,-0.08511779593697337],[122,162,71,-0.08276617905012734],[122,162,72,-0.08371001849044035],[122,162,73,-0.08502890427818138],[122,162,74,-0.08118618519782302],[122,162,75,-0.07580223706334827],[122,162,76,-0.0714032812779691],[122,162,77,-0.04587636511190277],[122,162,78,-0.015939578380543613],[122,162,79,-0.005603573993107944],[122,163,64,-0.10156336001966398],[122,163,65,-0.10199869517767833],[122,163,66,-0.10520050515545593],[122,163,67,-0.10013235967592114],[122,163,68,-0.09481031391874216],[122,163,69,-0.08963168596953203],[122,163,70,-0.08400724214505885],[122,163,71,-0.08347211148853474],[122,163,72,-0.08300950478288757],[122,163,73,-0.08211872366675392],[122,163,74,-0.077522471628547],[122,163,75,-0.07219891589739078],[122,163,76,-0.065543581565407],[122,163,77,-0.06691330105319315],[122,163,78,-0.039499849130541886],[122,163,79,-0.026034461296293616],[122,164,64,-0.08069954833507478],[122,164,65,-0.07819662710130452],[122,164,66,-0.08073324627648244],[122,164,67,-0.07586334631926978],[122,164,68,-0.06811144812457454],[122,164,69,-0.06103694893554083],[122,164,70,-0.055691900832841534],[122,164,71,-0.05260099249206911],[122,164,72,-0.05157624312575826],[122,164,73,-0.049322714506363566],[122,164,74,-0.04602578358367258],[122,164,75,-0.041945707433507756],[122,164,76,-0.03979442043104785],[122,164,77,-0.03918659722338752],[122,164,78,-0.02344784062722211],[122,164,79,-0.020101637038447938],[122,165,64,-0.07219328225775849],[122,165,65,-0.07483785891540462],[122,165,66,-0.08164605460688212],[122,165,67,-0.0811757113893409],[122,165,68,-0.07450316812618962],[122,165,69,-0.06568429330675546],[122,165,70,-0.05886285170501086],[122,165,71,-0.053283771341522866],[122,165,72,-0.04385010332846381],[122,165,73,-0.03684945608742836],[122,165,74,-0.03367341510918474],[122,165,75,-0.032181854951376945],[122,165,76,-0.03195862878543368],[122,165,77,-0.030430376670000054],[122,165,78,-0.020925363336443167],[122,165,79,-0.017715512013694486],[122,166,64,-0.07117052775506964],[122,166,65,-0.07582062872992744],[122,166,66,-0.08149534178417966],[122,166,67,-0.08028345626715444],[122,166,68,-0.0708291574368966],[122,166,69,-0.06272208126889761],[122,166,70,-0.05725736321819839],[122,166,71,-0.04897302499415776],[122,166,72,-0.043721545668085116],[122,166,73,-0.03293483316534633],[122,166,74,-0.028713241584821192],[122,166,75,-0.029513924837608785],[122,166,76,-0.027761406272001646],[122,166,77,-0.02974289274354461],[122,166,78,-0.02437956629799493],[122,166,79,-0.020354216036894357],[122,167,64,-0.06382796403719102],[122,167,65,-0.07103910358552633],[122,167,66,-0.07588323621566306],[122,167,67,-0.07464328777148477],[122,167,68,-0.0665951828851507],[122,167,69,-0.05993969773165534],[122,167,70,-0.053120185660999096],[122,167,71,-0.04619227308250355],[122,167,72,-0.04078868610474598],[122,167,73,-0.03225089660865996],[122,167,74,-0.02499320922103697],[122,167,75,-0.027108659074896985],[122,167,76,-0.027676038088167224],[122,167,77,-0.032592287972172534],[122,167,78,-0.030408905072989913],[122,167,79,-0.02495401057527314],[122,168,64,-0.0659324310081951],[122,168,65,-0.07044490066558709],[122,168,66,-0.07255332014772482],[122,168,67,-0.07263403688883323],[122,168,68,-0.06511547689830151],[122,168,69,-0.05697964640590384],[122,168,70,-0.05166545274948488],[122,168,71,-0.04358723559724942],[122,168,72,-0.03668879048936369],[122,168,73,-0.02697568123535396],[122,168,74,-0.020048135020133556],[122,168,75,-0.02236647987905785],[122,168,76,-0.024034567278010968],[122,168,77,-0.028894092442357897],[122,168,78,-0.03087764381007379],[122,168,79,-0.018552688533842995],[122,169,64,-0.07375418797616945],[122,169,65,-0.07130951567080049],[122,169,66,-0.0680118583142354],[122,169,67,-0.06214733787311501],[122,169,68,-0.05617447529103983],[122,169,69,-0.049072576634895115],[122,169,70,-0.04392144848163086],[122,169,71,-0.037879781870092874],[122,169,72,-0.03493378847545238],[122,169,73,-0.03248384710490518],[122,169,74,-0.028945171472539735],[122,169,75,-0.028904868898033315],[122,169,76,-0.028192383239538862],[122,169,77,-0.027921673008822437],[122,169,78,-0.03226803579045393],[122,169,79,-0.00761075938966322],[122,170,64,-0.07634172384954924],[122,170,65,-0.0751034393269823],[122,170,66,-0.06869253514297843],[122,170,67,-0.06286023827791189],[122,170,68,-0.05888527990866269],[122,170,69,-0.05319121811136511],[122,170,70,-0.04589329660659554],[122,170,71,-0.040987753232640506],[122,170,72,-0.0388170590074734],[122,170,73,-0.03471081201769741],[122,170,74,-0.03403866275584859],[122,170,75,-0.031185261306120482],[122,170,76,-0.030644305419595466],[122,170,77,-0.031738138122915996],[122,170,78,-0.03525531729888423],[122,170,79,-0.013213230843694374],[122,171,64,-0.07188017211860635],[122,171,65,-0.07282485647780435],[122,171,66,-0.06642128957405619],[122,171,67,-0.05736101890226316],[122,171,68,-0.05619548057641686],[122,171,69,-0.05046840889765741],[122,171,70,-0.04329594392929756],[122,171,71,-0.03748066607946414],[122,171,72,-0.037518297170333254],[122,171,73,-0.03573603162507902],[122,171,74,-0.03202355507842222],[122,171,75,-0.030977615513203813],[122,171,76,-0.027302295779379662],[122,171,77,-0.02999377832448223],[122,171,78,-0.031069569068009603],[122,171,79,-0.016974294903642207],[122,172,64,-0.06776195567441151],[122,172,65,-0.0668983039630444],[122,172,66,-0.06198176689766215],[122,172,67,-0.0512490928529144],[122,172,68,-0.050162269099765844],[122,172,69,-0.04558250324958624],[122,172,70,-0.038601636327506836],[122,172,71,-0.03481009782687504],[122,172,72,-0.035176706462961393],[122,172,73,-0.03377950091838887],[122,172,74,-0.02854413013509255],[122,172,75,-0.02758310656708006],[122,172,76,-0.023851507647338344],[122,172,77,-0.025002894138089815],[122,172,78,-0.02124290926675601],[122,172,79,-0.018222910680394014],[122,173,64,-0.0654952161512464],[122,173,65,-0.061272850381367545],[122,173,66,-0.05696811195716922],[122,173,67,-0.04915210345078176],[122,173,68,-0.04501568198858737],[122,173,69,-0.04295070942059695],[122,173,70,-0.036708596561232],[122,173,71,-0.03231986186027504],[122,173,72,-0.03469684367222714],[122,173,73,-0.03314487473222784],[122,173,74,-0.030125793414261998],[122,173,75,-0.02618728427259248],[122,173,76,-0.023924801392542133],[122,173,77,-0.02243684803625201],[122,173,78,-0.018450758184850924],[122,173,79,-0.0159744132184144],[122,174,64,-0.06268178018344711],[122,174,65,-0.056832081379102735],[122,174,66,-0.051237805428041745],[122,174,67,-0.04492899695388712],[122,174,68,-0.042592105588038345],[122,174,69,-0.040276039019353685],[122,174,70,-0.034665002918272014],[122,174,71,-0.03011632031404518],[122,174,72,-0.032524203350216],[122,174,73,-0.031873661985547516],[122,174,74,-0.028679526483656875],[122,174,75,-0.02617435787385408],[122,174,76,-0.02248285349374267],[122,174,77,-0.022060358855922335],[122,174,78,-0.01487609576826962],[122,174,79,-0.010070673377977324],[122,175,64,-0.05704166959955652],[122,175,65,-0.05042465575630416],[122,175,66,-0.04266295332668406],[122,175,67,-0.03731557980873655],[122,175,68,-0.03816120264423768],[122,175,69,-0.03537752728289932],[122,175,70,-0.03163059182388153],[122,175,71,-0.0277560602538897],[122,175,72,-0.028606498318536774],[122,175,73,-0.02830541263077968],[122,175,74,-0.025257914196772757],[122,175,75,-0.024793028469712958],[122,175,76,-0.024017046154794816],[122,175,77,-0.02105699677099772],[122,175,78,-0.011754896138093954],[122,175,79,-0.008277518694345362],[122,176,64,-0.05587866948645974],[122,176,65,-0.0492871157199661],[122,176,66,-0.04086524611779459],[122,176,67,-0.03519472027267011],[122,176,68,-0.0361861262504202],[122,176,69,-0.03332749265853194],[122,176,70,-0.028564304570976792],[122,176,71,-0.02610303397391689],[122,176,72,-0.02535176755664291],[122,176,73,-0.025770281673443654],[122,176,74,-0.02046597461949129],[122,176,75,-0.021806445522219026],[122,176,76,-0.02219473055018041],[122,176,77,-0.01983099475909288],[122,176,78,-0.008563063547827411],[122,176,79,-0.006656222468598309],[122,177,64,-0.05892569556638516],[122,177,65,-0.05023058810096488],[122,177,66,-0.040481650257959065],[122,177,67,-0.03509864179409239],[122,177,68,-0.03462864385352939],[122,177,69,-0.03482582234252388],[122,177,70,-0.03012936071168798],[122,177,71,-0.02802056892792397],[122,177,72,-0.025199182404957665],[122,177,73,-0.02851310910498453],[122,177,74,-0.023731345073344776],[122,177,75,-0.023496151995598194],[122,177,76,-0.024678528976443598],[122,177,77,-0.026231537324193477],[122,177,78,-0.037384637868238375],[122,177,79,-0.03647909515401063],[122,178,64,-0.06290509651366724],[122,178,65,-0.050978639555633476],[122,178,66,-0.04301089966714336],[122,178,67,-0.03909173710669024],[122,178,68,-0.03805571375273922],[122,178,69,-0.04000480158418425],[122,178,70,-0.035980773944871466],[122,178,71,-0.031829749729237786],[122,178,72,-0.030737519968587423],[122,178,73,-0.033158122711644256],[122,178,74,-0.02950458725024528],[122,178,75,-0.02819302067336632],[122,178,76,-0.028520441729170565],[122,178,77,-0.02865141649045109],[122,178,78,-0.04675768871765546],[122,178,79,-0.04963962859323991],[122,179,64,-0.060975424954874305],[122,179,65,-0.05012492417423013],[122,179,66,-0.04147782550176213],[122,179,67,-0.037116348076196334],[122,179,68,-0.038493915130639086],[122,179,69,-0.040920380991136915],[122,179,70,-0.035922590036921095],[122,179,71,-0.03152770607635802],[122,179,72,-0.029692807731617227],[122,179,73,-0.0314307859534972],[122,179,74,-0.028178764129965936],[122,179,75,-0.02668591032637721],[122,179,76,-0.02624087478775336],[122,179,77,-0.034729111860478334],[122,179,78,-0.05373084680110694],[122,179,79,-0.06086946582516462],[122,180,64,-0.04935019494521693],[122,180,65,-0.038326208027441175],[122,180,66,-0.031294210490224836],[122,180,67,-0.0267032736454607],[122,180,68,-0.02767430996238253],[122,180,69,-0.0271228951320132],[122,180,70,-0.02591671646934575],[122,180,71,-0.020834422988079748],[122,180,72,-0.017417037579556288],[122,180,73,-0.018061299478654605],[122,180,74,-0.01635327763287249],[122,180,75,-0.015302036933704119],[122,180,76,-0.01575473211116913],[122,180,77,-0.030826075008531933],[122,180,78,-0.04509096867087897],[122,180,79,-0.06117578031300351],[122,181,64,-0.03792254949066398],[122,181,65,-0.03210296990983516],[122,181,66,-0.029505848538733365],[122,181,67,-0.026905946744392617],[122,181,68,-0.026377905465555213],[122,181,69,-0.024336835902108542],[122,181,70,-0.023603799239798745],[122,181,71,-0.01825769653540267],[122,181,72,-0.011358783949815154],[122,181,73,-0.005885824907301732],[122,181,74,-0.004349571051548831],[122,181,75,-0.0038673138331529883],[122,181,76,-0.00707347557469216],[122,181,77,-0.02189491525161019],[122,181,78,-0.03836843765458629],[122,181,79,-0.05215543270132922],[122,182,64,-0.03595604696429057],[122,182,65,-0.030970053637663073],[122,182,66,-0.029063259929007684],[122,182,67,-0.02639778085593983],[122,182,68,-0.022834515342637376],[122,182,69,-0.02143292220584829],[122,182,70,-0.020587293601170273],[122,182,71,-0.016719535483046916],[122,182,72,-0.008436058083638565],[122,182,73,-0.002061354266636742],[122,182,74,6.636711157783914E-4],[122,182,75,-0.001308595977904753],[122,182,76,-0.008196997418749385],[122,182,77,-0.023018191570734814],[122,182,78,-0.04669337666169947],[122,182,79,-0.052901083401711256],[122,183,64,-0.034826276949464816],[122,183,65,-0.030523698184710193],[122,183,66,-0.025794696540942047],[122,183,67,-0.021616938067677866],[122,183,68,-0.02027779973527849],[122,183,69,-0.016964973790224797],[122,183,70,-0.01704359037564518],[122,183,71,-0.014978612482603168],[122,183,72,-0.006014573491215897],[122,183,73,-3.434076869577585E-4],[122,183,74,0.001507596041444459],[122,183,75,-0.0021610624091459446],[122,183,76,-0.004941219654123405],[122,183,77,-0.009171819557599728],[122,183,78,-0.03346638512451837],[122,183,79,-0.04816717506800594],[122,184,64,-0.03625112606719899],[122,184,65,-0.03106272864853732],[122,184,66,-0.027029121994091576],[122,184,67,-0.021072052452446907],[122,184,68,-0.020088881608479214],[122,184,69,-0.016935750196119245],[122,184,70,-0.015369115447207524],[122,184,71,-0.012224162847392181],[122,184,72,-0.0033582744664705094],[122,184,73,0.0012839644929822092],[122,184,74,0.0018347461557817746],[122,184,75,-1.9464634053713292E-4],[122,184,76,-0.0014837809210423991],[122,184,77,-0.017212375556844326],[122,184,78,-0.03612619409124454],[122,184,79,-0.051333166361050904],[122,185,64,-0.03765761075507271],[122,185,65,-0.03359720104957582],[122,185,66,-0.02559197004502045],[122,185,67,-0.01984661831945063],[122,185,68,-0.016360846744373186],[122,185,69,-0.014188066502347038],[122,185,70,-0.014603526842422762],[122,185,71,-0.011128746674304496],[122,185,72,-0.0015760177931053304],[122,185,73,0.004015637569501046],[122,185,74,0.004480049899247426],[122,185,75,0.004359494796542851],[122,185,76,6.915177271098871E-4],[122,185,77,-0.018009750868882672],[122,185,78,-0.03944167078307838],[122,185,79,-0.04848797270847056],[122,186,64,-0.04565792603363138],[122,186,65,-0.039156619880059876],[122,186,66,-0.03179956887184274],[122,186,67,-0.021819616955308443],[122,186,68,-0.01825593370849543],[122,186,69,-0.018717640093761687],[122,186,70,-0.01768358817017586],[122,186,71,-0.013851003369488163],[122,186,72,-0.006427338428184742],[122,186,73,3.1994331712846547E-4],[122,186,74,0.0025390324984607693],[122,186,75,0.004347152998341014],[122,186,76,-0.00814389312662519],[122,186,77,-0.023061154704257982],[122,186,78,-0.04128160582540387],[122,186,79,-0.0469774327717613],[122,187,64,-0.04963834034338241],[122,187,65,-0.03991943404579523],[122,187,66,-0.030032362362610907],[122,187,67,-0.020788088760587187],[122,187,68,-0.016344858681009974],[122,187,69,-0.017083121467677848],[122,187,70,-0.017166611728693576],[122,187,71,-0.015165240869846774],[122,187,72,-0.009344175559924311],[122,187,73,8.781972491048173E-5],[122,187,74,0.003576402073271742],[122,187,75,0.009315505482566072],[122,187,76,-0.016797343104109054],[122,187,77,-0.036453162360231633],[122,187,78,-0.05142018047983479],[122,187,79,-0.060408572699614124],[122,188,64,-0.054627772927724014],[122,188,65,-0.0420491425843513],[122,188,66,-0.027982672080775886],[122,188,67,-0.017750788620509744],[122,188,68,-0.009826973161494168],[122,188,69,-0.0061688888927534935],[122,188,70,-0.00409796612994133],[122,188,71,-0.0029413409543466162],[122,188,72,0.002546480178167901],[122,188,73,0.011749261454620852],[122,188,74,0.019069127704726963],[122,188,75,0.02414968183680835],[122,188,76,-0.009438418241429186],[122,188,77,-0.03182405270440217],[122,188,78,-0.04572983592727091],[122,188,79,-0.05289150353894817],[122,189,64,-0.06046104166976844],[122,189,65,-0.04658269005199604],[122,189,66,-0.02924798117269653],[122,189,67,-0.01921042547275778],[122,189,68,-0.013823112078153788],[122,189,69,-0.005651858475375374],[122,189,70,-0.0035795140211436066],[122,189,71,0.0016021601252790563],[122,189,72,0.0076640702706751995],[122,189,73,0.016858249756408733],[122,189,74,0.02578602524521703],[122,189,75,0.03148315947630051],[122,189,76,-0.010853175069692245],[122,189,77,-0.042805741128536176],[122,189,78,-0.05805221335689548],[122,189,79,-0.05602158096148295],[122,190,64,-0.06048627691039801],[122,190,65,-0.04508278527386243],[122,190,66,-0.030711575958892665],[122,190,67,-0.021466720402056133],[122,190,68,-0.015567446203490182],[122,190,69,-0.006705150275500504],[122,190,70,-0.00199640603011747],[122,190,71,0.002623025640568419],[122,190,72,0.008333753298981478],[122,190,73,0.01685138703735231],[122,190,74,0.023813660260588787],[122,190,75,0.030896311064140286],[122,190,76,-0.014254227795744215],[122,190,77,-0.050357699250819815],[122,190,78,-0.06117982864835711],[122,190,79,-0.055743816931854775],[122,191,64,-0.056588236168879175],[122,191,65,-0.039590159915710924],[122,191,66,-0.030459772641526203],[122,191,67,-0.02170032329585471],[122,191,68,-0.018515251337847344],[122,191,69,-0.007531246127525898],[122,191,70,-8.912163128586975E-4],[122,191,71,0.0020838726211191705],[122,191,72,0.007707728965281019],[122,191,73,0.015871760258066414],[122,191,74,0.021031075509173144],[122,191,75,0.0256942540180313],[122,191,76,-0.014378360372941636],[122,191,77,-0.050933144475214395],[122,191,78,-0.055275534398270335],[122,191,79,-0.051624557465119486],[122,192,64,-0.053334983038928314],[122,192,65,-0.0392443221857673],[122,192,66,-0.030119375174396154],[122,192,67,-0.021853195558271782],[122,192,68,-0.01756667322269706],[122,192,69,-0.008081126165219249],[122,192,70,2.654764034648871E-4],[122,192,71,0.0021374206073937335],[122,192,72,0.008135365027480107],[122,192,73,0.013655916712345922],[122,192,74,0.020136823919957053],[122,192,75,0.0199974275722029],[122,192,76,-0.014336068555087962],[122,192,77,-0.055343824311112275],[122,192,78,-0.05649786050594416],[122,192,79,-0.052253824767920634],[122,193,64,-0.046837405470128504],[122,193,65,-0.035742403428092026],[122,193,66,-0.02620736555351555],[122,193,67,-0.018220841634328785],[122,193,68,-0.013352106912556436],[122,193,69,-0.007881030227952585],[122,193,70,0.0017431298276224666],[122,193,71,0.0011180883742947512],[122,193,72,0.0017936798970166062],[122,193,73,0.002962797290830474],[122,193,74,0.008055909442000894],[122,193,75,0.013854173368796949],[122,193,76,0.002127931036053677],[122,193,77,-0.032013453672244147],[122,193,78,-0.03339596520988747],[122,193,79,-0.026191127839190448],[122,194,64,-0.05306763740237028],[122,194,65,-0.04162755763821645],[122,194,66,-0.03428740191744371],[122,194,67,-0.02348429896157117],[122,194,68,-0.017803876309315958],[122,194,69,-0.011292360484672026],[122,194,70,-0.004089835794970853],[122,194,71,-0.006572432784029622],[122,194,72,-0.004569318490738369],[122,194,73,-5.434530192540699E-4],[122,194,74,0.004950449889947348],[122,194,75,0.009773412891008665],[122,194,76,0.0060596084768475365],[122,194,77,-0.03217312673223577],[122,194,78,-0.03715275522598667],[122,194,79,-0.02616904784797766],[122,195,64,-0.0552820089039132],[122,195,65,-0.04506851548275875],[122,195,66,-0.03521337633486751],[122,195,67,-0.024332265305830478],[122,195,68,-0.01792266138492138],[122,195,69,-0.012943531236406111],[122,195,70,-0.007336605480525421],[122,195,71,-0.007230371291812782],[122,195,72,-0.004204751030482484],[122,195,73,-8.861398528790532E-4],[122,195,74,0.007207149408411953],[122,195,75,0.011830083948879772],[122,195,76,-0.001646189638982009],[122,195,77,-0.03678420228530881],[122,195,78,-0.04963383809514038],[122,195,79,-0.027963944031362223],[122,196,64,-0.05269728259079163],[122,196,65,-0.04876822994017077],[122,196,66,-0.04344004778577816],[122,196,67,-0.03498867114775506],[122,196,68,-0.03567070559812385],[122,196,69,-0.03314157699364581],[122,196,70,-0.030680589911608797],[122,196,71,-0.03212515862983714],[122,196,72,-0.029039982396544706],[122,196,73,-0.025979924539263496],[122,196,74,-0.018567242513936086],[122,196,75,-0.015297651284208416],[122,196,76,-0.03426414200119962],[122,196,77,-0.06434828855657976],[122,196,78,-0.07076531392503362],[122,196,79,-0.05481122861770578],[122,197,64,-0.055216431201766225],[122,197,65,-0.04996614233387969],[122,197,66,-0.04291949254114116],[122,197,67,-0.03786873645757918],[122,197,68,-0.03808617967781831],[122,197,69,-0.033039442629303],[122,197,70,-0.032005033396591456],[122,197,71,-0.03316946063322222],[122,197,72,-0.028629384845455477],[122,197,73,-0.022988890421715244],[122,197,74,-0.01693766647376517],[122,197,75,-0.012161408989437267],[122,197,76,-0.04323391787760137],[122,197,77,-0.07392595459366813],[122,197,78,-0.07877334147028528],[122,197,79,-0.06894326950433144],[122,198,64,-0.058152130566001076],[122,198,65,-0.05249246020267592],[122,198,66,-0.04480791007349488],[122,198,67,-0.04016792463663235],[122,198,68,-0.03876306265562564],[122,198,69,-0.03287377051010808],[122,198,70,-0.032001762165663764],[122,198,71,-0.03254104223913476],[122,198,72,-0.02921925771087136],[122,198,73,-0.02163937375059566],[122,198,74,-0.015620657736693425],[122,198,75,-0.012824454644825775],[122,198,76,-0.04077518255494846],[122,198,77,-0.0697222388394019],[122,198,78,-0.07601928711524629],[122,198,79,-0.07373083211243381],[122,199,64,-0.060809424004629936],[122,199,65,-0.051937794300121104],[122,199,66,-0.04539515837444055],[122,199,67,-0.04171748896330113],[122,199,68,-0.03639087347667497],[122,199,69,-0.032219569545278354],[122,199,70,-0.03282748859002815],[122,199,71,-0.033004232083486434],[122,199,72,-0.03132221842842037],[122,199,73,-0.02273806384586205],[122,199,74,-0.015128096713141068],[122,199,75,-0.014613573187618379],[122,199,76,-0.05116441613299735],[122,199,77,-0.07972051260188034],[122,199,78,-0.08807008150497173],[122,199,79,-0.0833896553219201],[122,200,64,-0.06278831941616075],[122,200,65,-0.051321687713626996],[122,200,66,-0.047609027137938104],[122,200,67,-0.04363617293771367],[122,200,68,-0.03572380146557777],[122,200,69,-0.031924155955100494],[122,200,70,-0.03136229232306814],[122,200,71,-0.031644909023705314],[122,200,72,-0.02729715058150456],[122,200,73,-0.01949435685111807],[122,200,74,-0.013592581684308463],[122,200,75,-0.019245896795518157],[122,200,76,-0.05435470875244637],[122,200,77,-0.0770196364417309],[122,200,78,-0.08778430584259074],[122,200,79,-0.08515364941448302],[122,201,64,-0.05654292194567183],[122,201,65,-0.048559491956850234],[122,201,66,-0.0400670102645032],[122,201,67,-0.03492412727855186],[122,201,68,-0.02718513807665915],[122,201,69,-0.021813481701361395],[122,201,70,-0.022806444708837262],[122,201,71,-0.021119282432224537],[122,201,72,-0.015306365510784695],[122,201,73,-0.007050351141739936],[122,201,74,-0.006547626608408408],[122,201,75,-0.0332049247759451],[122,201,76,-0.06811886900156396],[122,201,77,-0.08418817391468843],[122,201,78,-0.08744191954359137],[122,201,79,-0.08625159036614742],[122,202,64,-0.06465840778391345],[122,202,65,-0.056548284381555944],[122,202,66,-0.048324044208962844],[122,202,67,-0.0405123085027443],[122,202,68,-0.03434389992063129],[122,202,69,-0.025162041351368264],[122,202,70,-0.02772354573166244],[122,202,71,-0.024790860789139585],[122,202,72,-0.01906541784897553],[122,202,73,-0.01003918342795071],[122,202,74,-0.00892925716814831],[122,202,75,-0.02984801280886638],[122,202,76,-0.06334032390533556],[122,202,77,-0.08070752467274163],[122,202,78,-0.08544130967395847],[122,202,79,-0.08505761840403989],[122,203,64,-0.06790925899459178],[122,203,65,-0.05910168060873579],[122,203,66,-0.05253204637237381],[122,203,67,-0.043654830679868084],[122,203,68,-0.03777072773750964],[122,203,69,-0.029140389120088372],[122,203,70,-0.02912411017374679],[122,203,71,-0.024260414869873084],[122,203,72,-0.019092152192386053],[122,203,73,-0.010044753060965333],[122,203,74,-0.008250308668577566],[122,203,75,-0.03551966087552527],[122,203,76,-0.07096583627788043],[122,203,77,-0.09436631292855996],[122,203,78,-0.09732514345526175],[122,203,79,-0.09704949407503921],[122,204,64,-0.06773102402091306],[122,204,65,-0.05749570446555588],[122,204,66,-0.046418377555656004],[122,204,67,-0.033664936801683434],[122,204,68,-0.024433401999355703],[122,204,69,-0.015230215529398822],[122,204,70,-0.013638486026813473],[122,204,71,-0.008985914980628576],[122,204,72,-9.941144596624651E-4],[122,204,73,0.006285726245000373],[122,204,74,0.011511732615599193],[122,204,75,-0.023068781042682396],[122,204,76,-0.06027435245203211],[122,204,77,-0.09102032536091503],[122,204,78,-0.09394379870833092],[122,204,79,-0.09078620864500779],[122,205,64,-0.08034598472635991],[122,205,65,-0.07177251291799386],[122,205,66,-0.05738524317531282],[122,205,67,-0.04603999596959446],[122,205,68,-0.036840606471910856],[122,205,69,-0.030642779594064515],[122,205,70,-0.027581814839788873],[122,205,71,-0.023259864776830896],[122,205,72,-0.014143510499375747],[122,205,73,-0.005467370627882301],[122,205,74,4.3750020368325815E-4],[122,205,75,0.005423724431550911],[122,205,76,0.004355364234682926],[122,205,77,-0.027399718804853868],[122,205,78,-0.055666550478784466],[122,205,79,-0.07862668475296392],[122,206,64,-0.0825824724728855],[122,206,65,-0.0713428366056997],[122,206,66,-0.05903473868202547],[122,206,67,-0.04805030942989409],[122,206,68,-0.03994184153205735],[122,206,69,-0.03422973958382426],[122,206,70,-0.03106688745717974],[122,206,71,-0.027508311759953802],[122,206,72,-0.015163860592433659],[122,206,73,-0.0060781391676755225],[122,206,74,-9.301981125840464E-4],[122,206,75,0.0051337868183413266],[122,206,76,-0.0018628741435295793],[122,206,77,-0.030016995252409993],[122,206,78,-0.0592704853206311],[122,206,79,-0.08652830251044466],[122,207,64,-0.08423578576102309],[122,207,65,-0.07357712314884252],[122,207,66,-0.06155190104154683],[122,207,67,-0.050760395288554874],[122,207,68,-0.04495353446428531],[122,207,69,-0.040744381588169176],[122,207,70,-0.034523417644667403],[122,207,71,-0.028878003521658577],[122,207,72,-0.019039735363983984],[122,207,73,-0.006971295288579343],[122,207,74,-0.0014889868436069181],[122,207,75,0.00321392780739424],[122,207,76,-0.0029918044946768765],[122,207,77,-0.019015942510228864],[122,207,78,-0.04773463683869354],[122,207,79,-0.08209255242857871],[122,208,64,-0.08340121355201546],[122,208,65,-0.07290808860356897],[122,208,66,-0.06318652920683165],[122,208,67,-0.0546799889870038],[122,208,68,-0.048316486870423336],[122,208,69,-0.0434879543259907],[122,208,70,-0.03700165137057468],[122,208,71,-0.02937344330180089],[122,208,72,-0.019305048784073034],[122,208,73,-0.007830230828449553],[122,208,74,-0.003035081540719478],[122,208,75,0.002184505165112899],[122,208,76,0.008219648625724121],[122,208,77,-0.007357785428737718],[122,208,78,-0.046831010859198566],[122,208,79,-0.08606022157264605],[122,209,64,-0.0830865377881848],[122,209,65,-0.07408582853508093],[122,209,66,-0.06354700369977537],[122,209,67,-0.057306002634018915],[122,209,68,-0.05210788866135266],[122,209,69,-0.04550606836073974],[122,209,70,-0.03665002283099564],[122,209,71,-0.028125489300711057],[122,209,72,-0.020441705141209035],[122,209,73,-0.009287633727375066],[122,209,74,-0.003157556666273903],[122,209,75,0.0034215959223533182],[122,209,76,0.0071357404421305],[122,209,77,-0.014634289278258293],[122,209,78,-0.04787364579137862],[122,209,79,-0.0834242752998434],[122,210,64,-0.08736837270571295],[122,210,65,-0.07983762518801138],[122,210,66,-0.0695685689997383],[122,210,67,-0.06277359830603912],[122,210,68,-0.057787836104176926],[122,210,69,-0.051300803374582815],[122,210,70,-0.04502029554597747],[122,210,71,-0.03487644147137842],[122,210,72,-0.02360594072446251],[122,210,73,-0.01344043879857229],[122,210,74,-0.007445762440079828],[122,210,75,-0.005114123146396754],[122,210,76,6.918509655051003E-4],[122,210,77,-0.019396874032903803],[122,210,78,-0.05962560324365186],[122,210,79,-0.09225189950366199],[122,211,64,-0.08869805737288973],[122,211,65,-0.08092716766418769],[122,211,66,-0.07159357462393239],[122,211,67,-0.06353373172655741],[122,211,68,-0.05779391295838794],[122,211,69,-0.0519507076056525],[122,211,70,-0.04581887554244607],[122,211,71,-0.03676200414569797],[122,211,72,-0.02365263280315226],[122,211,73,-0.014898097106818123],[122,211,74,-0.00914702389466518],[122,211,75,-0.008556359643491981],[122,211,76,-0.002309317357368293],[122,211,77,-0.03120460412141885],[122,211,78,-0.07449954255000141],[122,211,79,-0.10623118584780346],[122,212,64,-0.07468369801579537],[122,212,65,-0.07018666705685353],[122,212,66,-0.06518069294003857],[122,212,67,-0.06166943244762234],[122,212,68,-0.05979899748636815],[122,212,69,-0.057934803043154876],[122,212,70,-0.056208699175599786],[122,212,71,-0.05105462164926096],[122,212,72,-0.03755503398765955],[122,212,73,-0.027359097314283],[122,212,74,-0.02261898169526408],[122,212,75,-0.021386931135388434],[122,212,76,-0.013580931361880433],[122,212,77,-0.040668154249045754],[122,212,78,-0.0786458426405272],[122,212,79,-0.10496909121108303],[122,213,64,-0.07830100165501938],[122,213,65,-0.07254543875834774],[122,213,66,-0.06704963854546009],[122,213,67,-0.06242547220190571],[122,213,68,-0.059774777264897785],[122,213,69,-0.060175707333729955],[122,213,70,-0.05669056016426441],[122,213,71,-0.04662263279270931],[122,213,72,-0.032979212665801075],[122,213,73,-0.02266304174541002],[122,213,74,-0.01831560384181108],[122,213,75,-0.013712996901582036],[122,213,76,-0.0359063801540698],[122,213,77,-0.08606146165315523],[122,213,78,-0.11899989542469408],[122,213,79,-0.10547844535324491],[122,214,64,-0.07673255066073124],[122,214,65,-0.07095499324447967],[122,214,66,-0.06736755342084279],[122,214,67,-0.06537664089888764],[122,214,68,-0.06160119762117587],[122,214,69,-0.06482124374902593],[122,214,70,-0.05774002554172815],[122,214,71,-0.04935723883537481],[122,214,72,-0.03766114768771002],[122,214,73,-0.027650456376279012],[122,214,74,-0.023498229955269012],[122,214,75,-0.016211592293900318],[122,214,76,-0.04680370638987822],[122,214,77,-0.09550259767712771],[122,214,78,-0.12026371367352637],[122,214,79,-0.10672367874126029],[122,215,64,-0.07607859390315333],[122,215,65,-0.07295930093627699],[122,215,66,-0.06833360283509674],[122,215,67,-0.06789144140145059],[122,215,68,-0.0669502545146379],[122,215,69,-0.068501586576342],[122,215,70,-0.06161981900222188],[122,215,71,-0.051514587945122814],[122,215,72,-0.04211671502442989],[122,215,73,-0.03288566608246106],[122,215,74,-0.027742798347113184],[122,215,75,-0.020876889141841964],[122,215,76,-0.04957985643674172],[122,215,77,-0.0911076075010924],[122,215,78,-0.12011374844720787],[122,215,79,-0.10423315537953329],[122,216,64,-0.07523659752380538],[122,216,65,-0.07011533675635181],[122,216,66,-0.06879850249192364],[122,216,67,-0.0681411294047745],[122,216,68,-0.07017910291097473],[122,216,69,-0.0687885147312301],[122,216,70,-0.06294318469369316],[122,216,71,-0.05240639757506828],[122,216,72,-0.04225278136458985],[122,216,73,-0.03314348615220919],[122,216,74,-0.03192210858937127],[122,216,75,-0.06351293308503614],[122,216,76,-0.0975949408927671],[122,216,77,-0.11480709075250783],[122,216,78,-0.12215172521294775],[122,216,79,-0.10497087150651277],[122,217,64,-0.06838885898673529],[122,217,65,-0.06364766300555018],[122,217,66,-0.06495437263320616],[122,217,67,-0.06622483468534812],[122,217,68,-0.07016792971896577],[122,217,69,-0.06823638915606063],[122,217,70,-0.06427342392697682],[122,217,71,-0.05594119668507372],[122,217,72,-0.047884320642220424],[122,217,73,-0.042769916980218994],[122,217,74,-0.053571103367075226],[122,217,75,-0.07981410270917497],[122,217,76,-0.11129149613650614],[122,217,77,-0.11765647610413246],[122,217,78,-0.12029314107570613],[122,217,79,-0.10495023020499604],[122,218,64,-0.07312464742888469],[122,218,65,-0.07112768601239436],[122,218,66,-0.07331083352045865],[122,218,67,-0.07252443046377569],[122,218,68,-0.07589870187696927],[122,218,69,-0.07458870506385264],[122,218,70,-0.06967288774454847],[122,218,71,-0.06273300763973663],[122,218,72,-0.0548356954532154],[122,218,73,-0.04742298195133171],[122,218,74,-0.0551287511717443],[122,218,75,-0.08366197650717033],[122,218,76,-0.11708135027043627],[122,218,77,-0.11673618432037522],[122,218,78,-0.12623873021277365],[122,218,79,-0.11140764345546174],[122,219,64,-0.07736398992661081],[122,219,65,-0.07355262926980762],[122,219,66,-0.07521533894041126],[122,219,67,-0.07419927266407757],[122,219,68,-0.0749312508608897],[122,219,69,-0.07597730122486586],[122,219,70,-0.0725178907322779],[122,219,71,-0.06624621381381461],[122,219,72,-0.055599296540666504],[122,219,73,-0.049321551871024535],[122,219,74,-0.06455013569252627],[122,219,75,-0.09389685268557214],[122,219,76,-0.1313788338771279],[122,219,77,-0.12777358567752645],[122,219,78,-0.13750449009235086],[122,219,79,-0.12398971458866356],[122,220,64,-0.07504078479169822],[122,220,65,-0.07163841547018412],[122,220,66,-0.06923386858639842],[122,220,67,-0.06755834194612724],[122,220,68,-0.06557895627333686],[122,220,69,-0.0650561641272384],[122,220,70,-0.06035790302658883],[122,220,71,-0.05095814054351808],[122,220,72,-0.0421150015049494],[122,220,73,-0.03351933863574236],[122,220,74,-0.06819369806196621],[122,220,75,-0.09419605495458845],[122,220,76,-0.12701590017828485],[122,220,77,-0.1333736438558903],[122,220,78,-0.14159038109385758],[122,220,79,-0.1276816821910965],[122,221,64,-0.07740919272617969],[122,221,65,-0.07402490774144038],[122,221,66,-0.07158704144684497],[122,221,67,-0.0687740004423111],[122,221,68,-0.0682369616982749],[122,221,69,-0.06466569037596437],[122,221,70,-0.05913771086417979],[122,221,71,-0.05027589538723409],[122,221,72,-0.042947355811394486],[122,221,73,-0.06663647233099708],[122,221,74,-0.13292283481292655],[122,221,75,-0.16358301419330915],[122,221,76,-0.16319935548419554],[122,221,77,-0.14781122651515788],[122,221,78,-0.13912226227077762],[122,221,79,-0.12608478503142256],[122,222,64,-0.07836515481700125],[122,222,65,-0.07703458212191337],[122,222,66,-0.07313869162945291],[122,222,67,-0.07052814114950409],[122,222,68,-0.06941342912461534],[122,222,69,-0.06518623676751004],[122,222,70,-0.05932100775543703],[122,222,71,-0.051695622626539386],[122,222,72,-0.045551265220449305],[122,222,73,-0.07705436951121],[122,222,74,-0.13785287937757562],[122,222,75,-0.16284358255667822],[122,222,76,-0.15471958525573512],[122,222,77,-0.1415115929416726],[122,222,78,-0.1287556780038605],[122,222,79,-0.117598810889708],[122,223,64,-0.08741567313282175],[122,223,65,-0.08150004328552118],[122,223,66,-0.07812583285591022],[122,223,67,-0.07503836597031596],[122,223,68,-0.07382455986086317],[122,223,69,-0.0674189424438605],[122,223,70,-0.0621554933141229],[122,223,71,-0.054294923144884225],[122,223,72,-0.04996716597263326],[122,223,73,-0.0465532737551565],[122,223,74,-0.10769901714115394],[122,223,75,-0.12421428474326747],[122,223,76,-0.148502495923853],[122,223,77,-0.14038153276827187],[122,223,78,-0.125576326912898],[122,223,79,-0.11232040305635207],[122,224,64,-0.08829056387127579],[122,224,65,-0.08224159993590725],[122,224,66,-0.07909666306647052],[122,224,67,-0.07634674957723993],[122,224,68,-0.07493051370124452],[122,224,69,-0.0667763870731884],[122,224,70,-0.06195364703684299],[122,224,71,-0.0567846575980039],[122,224,72,-0.052914690104867754],[122,224,73,-0.04786341762876991],[122,224,74,-0.1068671471282013],[122,224,75,-0.1266714986262338],[122,224,76,-0.15416034900432737],[122,224,77,-0.14103117431509524],[122,224,78,-0.1271051091797354],[122,224,79,-0.11450547683794285],[122,225,64,-0.10009186737019381],[122,225,65,-0.08710919246420458],[122,225,66,-0.07845427592189058],[122,225,67,-0.07092740142597412],[122,225,68,-0.06443988300950382],[122,225,69,-0.05850144832526703],[122,225,70,-0.052755643712903325],[122,225,71,-0.04959226036674061],[122,225,72,-0.0448946571208346],[122,225,73,-0.044064708304460264],[122,225,74,-0.09604606267331027],[122,225,75,-0.13277649694051682],[122,225,76,-0.15462683041072317],[122,225,77,-0.1413688381277184],[122,225,78,-0.12731162229173268],[122,225,79,-0.11694678772859673],[122,226,64,-0.10875331622903635],[122,226,65,-0.09611375804565854],[122,226,66,-0.08710874001822227],[122,226,67,-0.07887630792571225],[122,226,68,-0.06855601877003656],[122,226,69,-0.06340848477051425],[122,226,70,-0.058701468102610066],[122,226,71,-0.053629963224074956],[122,226,72,-0.05097234079516538],[122,226,73,-0.03677429210645235],[122,226,74,-0.07563248126298952],[122,226,75,-0.12346096358221052],[122,226,76,-0.15528753761806788],[122,226,77,-0.1436283637140295],[122,226,78,-0.12888161529808376],[122,226,79,-0.11881414603106918],[122,227,64,-0.1111404834986697],[122,227,65,-0.09891926025885375],[122,227,66,-0.08926485404754064],[122,227,67,-0.08288890722722524],[122,227,68,-0.07126792902236799],[122,227,69,-0.06504852631861593],[122,227,70,-0.06191147285636055],[122,227,71,-0.055343637169484844],[122,227,72,-0.04990538232726349],[122,227,73,-0.044295609956980946],[122,227,74,-0.07906161129289249],[122,227,75,-0.1278886480976015],[122,227,76,-0.16522283592635392],[122,227,77,-0.15272745824181513],[122,227,78,-0.13884229314236493],[122,227,79,-0.12785981805891442],[122,228,64,-0.10022731736774104],[122,228,65,-0.08971195800201252],[122,228,66,-0.07971844636653107],[122,228,67,-0.07358951205022637],[122,228,68,-0.06358276111035965],[122,228,69,-0.056405971330414945],[122,228,70,-0.05175631419497431],[122,228,71,-0.046228733899365285],[122,228,72,-0.03657074718182901],[122,228,73,-0.04176103484513716],[122,228,74,-0.0831213316324636],[122,228,75,-0.12593604334924688],[122,228,76,-0.16590669529877058],[122,228,77,-0.1532488995546342],[122,228,78,-0.13824609338599086],[122,228,79,-0.1292642655431599],[122,229,64,-0.09119379026204227],[122,229,65,-0.08496316407598678],[122,229,66,-0.08277825086858485],[122,229,67,-0.08177070851087612],[122,229,68,-0.07768791514325613],[122,229,69,-0.06839374397640965],[122,229,70,-0.061469126416746844],[122,229,71,-0.05648885330863747],[122,229,72,-0.046641465589809486],[122,229,73,-0.11169058488379474],[122,229,74,-0.16332257282925422],[122,229,75,-0.17729628593001595],[122,229,76,-0.16712395546833225],[122,229,77,-0.15180100380852452],[122,229,78,-0.1384014320110239],[122,229,79,-0.13219553355432856],[122,230,64,-0.09045935419651821],[122,230,65,-0.08477378237189313],[122,230,66,-0.0837907327969291],[122,230,67,-0.08304148785762888],[122,230,68,-0.08034290903131543],[122,230,69,-0.07055732195836445],[122,230,70,-0.06298593159888188],[122,230,71,-0.058569990287108964],[122,230,72,-0.048494696760192746],[122,230,73,-0.11023441720968614],[122,230,74,-0.16199949406018244],[122,230,75,-0.17329691858761762],[122,230,76,-0.16123567567583957],[122,230,77,-0.1485417109713422],[122,230,78,-0.13508487408932043],[122,230,79,-0.13306993208520596],[122,231,64,-0.09572358192652658],[122,231,65,-0.09129931514409602],[122,231,66,-0.08867279057036669],[122,231,67,-0.08852413945468066],[122,231,68,-0.08513001279884219],[122,231,69,-0.07485089204157402],[122,231,70,-0.06685095199406971],[122,231,71,-0.06267919839787632],[122,231,72,-0.0602245266916125],[122,231,73,-0.11906084030387631],[122,231,74,-0.15245195147970958],[122,231,75,-0.1690343048067374],[122,231,76,-0.15837964780361666],[122,231,77,-0.14774733923377864],[122,231,78,-0.13604135461696173],[122,231,79,-0.13078540800532662],[122,232,64,-0.09495407880152859],[122,232,65,-0.09654740120665917],[122,232,66,-0.09267546238726129],[122,232,67,-0.09095199530458489],[122,232,68,-0.08446130333677365],[122,232,69,-0.0780298352133971],[122,232,70,-0.07057776072903098],[122,232,71,-0.06680093311410855],[122,232,72,-0.058103489991051374],[122,232,73,-0.11775211353030168],[122,232,74,-0.15036291704705063],[122,232,75,-0.1697082790167291],[122,232,76,-0.15903641988424794],[122,232,77,-0.14929947058492712],[122,232,78,-0.1386617410971893],[122,232,79,-0.1311531096741342],[122,233,64,-0.09825287322562334],[122,233,65,-0.09898013321019344],[122,233,66,-0.09544010337927455],[122,233,67,-0.09079199260033974],[122,233,68,-0.08319990443333858],[122,233,69,-0.07931068165949536],[122,233,70,-0.07248358418848046],[122,233,71,-0.0680510730640467],[122,233,72,-0.06452998212918853],[122,233,73,-0.11436925328182437],[122,233,74,-0.15871427785976033],[122,233,75,-0.16557383000407175],[122,233,76,-0.16469467502850585],[122,233,77,-0.15355505263073777],[122,233,78,-0.14558518467732973],[122,233,79,-0.13521464269965894],[122,234,64,-0.10300831134790023],[122,234,65,-0.10292759738974205],[122,234,66,-0.10033021865181793],[122,234,67,-0.09515475431823725],[122,234,68,-0.08873887269899752],[122,234,69,-0.08422816084198999],[122,234,70,-0.0782893462478674],[122,234,71,-0.07192135249188808],[122,234,72,-0.060685059209283826],[122,234,73,-0.10211668259605321],[122,234,74,-0.14345594339763695],[122,234,75,-0.1505714836522754],[122,234,76,-0.1722120104711682],[122,234,77,-0.16424030416989616],[122,234,78,-0.15496244410872773],[122,234,79,-0.14372690524939363],[122,235,64,-0.10139241246162795],[122,235,65,-0.10218606610082598],[122,235,66,-0.10162746608195349],[122,235,67,-0.09467977530787097],[122,235,68,-0.0887350386041665],[122,235,69,-0.08360154560321047],[122,235,70,-0.07934599978488285],[122,235,71,-0.07087417302094048],[122,235,72,-0.06152182746494124],[122,235,73,-0.04811724907250034],[122,235,74,-0.03712727296825852],[122,235,75,-0.04772800774583379],[122,235,76,-0.11757476095602241],[122,235,77,-0.17428892572156307],[122,235,78,-0.1661211276463885],[122,235,79,-0.1534767279002722],[122,236,64,-0.10936106499647397],[122,236,65,-0.11470576715190563],[122,236,66,-0.11777302758369464],[122,236,67,-0.1133997699535958],[122,236,68,-0.10935654379116153],[122,236,69,-0.10432027644063385],[122,236,70,-0.10150766818163928],[122,236,71,-0.09030082905029255],[122,236,72,-0.08133386717032551],[122,236,73,-0.06949961419438144],[122,236,74,-0.057450523753067986],[122,236,75,-0.06720435962719103],[122,236,76,-0.13918782189752515],[122,236,77,-0.18299933866309245],[122,236,78,-0.175909309695486],[122,236,79,-0.16330405391188077],[122,237,64,-0.10573272953311519],[122,237,65,-0.11394616303336368],[122,237,66,-0.11677468033332897],[122,237,67,-0.11159335203716625],[122,237,68,-0.1082331789604388],[122,237,69,-0.10450495491890369],[122,237,70,-0.10062881951552645],[122,237,71,-0.09129490715442204],[122,237,72,-0.08478308670351829],[122,237,73,-0.0752000203473363],[122,237,74,-0.07451461888996526],[122,237,75,-0.10931175965747134],[122,237,76,-0.17600873827430508],[122,237,77,-0.18573222431813344],[122,237,78,-0.1784067880928211],[122,237,79,-0.1652019285237145],[122,238,64,-0.10836022777627233],[122,238,65,-0.11596885653795141],[122,238,66,-0.1203821272754836],[122,238,67,-0.1132049218138048],[122,238,68,-0.10918951618753872],[122,238,69,-0.10634671172033719],[122,238,70,-0.10138289980161631],[122,238,71,-0.09311608613101814],[122,238,72,-0.0862900100329318],[122,238,73,-0.07502992234790824],[122,238,74,-0.08710108382812534],[122,238,75,-0.14161104520365064],[122,238,76,-0.1867683661176704],[122,238,77,-0.18097765598836071],[122,238,78,-0.173917814442826],[122,238,79,-0.16333537258707986],[122,239,64,-0.11716943722996895],[122,239,65,-0.12352902761734541],[122,239,66,-0.12492395074227347],[122,239,67,-0.12097940793586545],[122,239,68,-0.11424283977049877],[122,239,69,-0.1108890050275062],[122,239,70,-0.10583578763352505],[122,239,71,-0.09577177363622247],[122,239,72,-0.08719146156225141],[122,239,73,-0.07404250411263348],[122,239,74,-0.07560967955855838],[122,239,75,-0.12370893974952689],[122,239,76,-0.17969573633894462],[122,239,77,-0.1774504802502413],[122,239,78,-0.16998067492142463],[122,239,79,-0.15841763445928972],[122,240,64,-0.116951572480745],[122,240,65,-0.12155969392780855],[122,240,66,-0.12256581679619544],[122,240,67,-0.11876428383152274],[122,240,68,-0.11590874206272109],[122,240,69,-0.1111353777712818],[122,240,70,-0.10601958150845742],[122,240,71,-0.09709287575471476],[122,240,72,-0.08682362657338671],[122,240,73,-0.07241241044947845],[122,240,74,-0.07193223579870142],[122,240,75,-0.11404841233362367],[122,240,76,-0.1710725568757901],[122,240,77,-0.17742956366029725],[122,240,78,-0.16810418237144792],[122,240,79,-0.15759268211364086],[122,241,64,-0.1261535997937717],[122,241,65,-0.12375519837770596],[122,241,66,-0.12133142851367697],[122,241,67,-0.11765562620172278],[122,241,68,-0.11643196894014884],[122,241,69,-0.11106619936329297],[122,241,70,-0.10483498677488332],[122,241,71,-0.0934484596925],[122,241,72,-0.0801280452054573],[122,241,73,-0.06548479518350613],[122,241,74,-0.04782839825173674],[122,241,75,-0.03538868312101487],[122,241,76,-0.027207147335047893],[122,241,77,-0.014850194211523074],[122,241,78,-0.0030127226304434984],[122,241,79,-0.07174695481704024],[122,242,64,-0.13144633032294753],[122,242,65,-0.12460727061864614],[122,242,66,-0.12082651531109179],[122,242,67,-0.11895383149821945],[122,242,68,-0.11720463672880291],[122,242,69,-0.11286494824571153],[122,242,70,-0.10523125956975785],[122,242,71,-0.09469858403872305],[122,242,72,-0.08135743453105784],[122,242,73,-0.06728633560343734],[122,242,74,-0.0493733517571419],[122,242,75,-0.03877980318558723],[122,242,76,-0.02851832012906265],[122,242,77,-0.01497384672682281],[122,242,78,-1.1484278966356065E-4],[122,242,79,-0.06341007225799788],[122,243,64,-0.13271772505913332],[122,243,65,-0.12355136372548436],[122,243,66,-0.11770489163817667],[122,243,67,-0.1144660098905638],[122,243,68,-0.11323505080475388],[122,243,69,-0.10882247157662636],[122,243,70,-0.10053591413560661],[122,243,71,-0.09245019190348994],[122,243,72,-0.07981407457630235],[122,243,73,-0.06407001765400964],[122,243,74,-0.04687924019007916],[122,243,75,-0.03453900287346037],[122,243,76,-0.023686218564152622],[122,243,77,-0.010986858415857226],[122,243,78,6.553792607548454E-4],[122,243,79,-0.06275526676046336],[122,244,64,-0.11496742214661376],[122,244,65,-0.10168605832662554],[122,244,66,-0.08698895297535872],[122,244,67,-0.07674548104297656],[122,244,68,-0.07131340580019409],[122,244,69,-0.06013380365245824],[122,244,70,-0.04941815252035686],[122,244,71,-0.04245303062232894],[122,244,72,-0.027170762202227236],[122,244,73,-0.009678017988888996],[122,244,74,0.005785096404279308],[122,244,75,0.019066470296243906],[122,244,76,0.0318813227576627],[122,244,77,0.04036032085827948],[122,244,78,0.0543289723265471],[122,244,79,-0.016331259899529257],[122,245,64,-0.1135092084465352],[122,245,65,-0.09882813456390241],[122,245,66,-0.08523582902756226],[122,245,67,-0.07223458941259092],[122,245,68,-0.06557525261189337],[122,245,69,-0.05635599496306776],[122,245,70,-0.04578018310483081],[122,245,71,-0.0379455249474487],[122,245,72,-0.023592341135227513],[122,245,73,-0.007068637367660169],[122,245,74,0.007980675855667738],[122,245,75,0.021158246261426997],[122,245,76,0.03343226676525221],[122,245,77,0.04401720984187231],[122,245,78,0.05503935713879701],[122,245,79,-0.003023699805303273],[122,246,64,-0.11033132781714622],[122,246,65,-0.09417558308840598],[122,246,66,-0.08032889761728604],[122,246,67,-0.06951605815959613],[122,246,68,-0.06020425602257935],[122,246,69,-0.05197208492265254],[122,246,70,-0.04360373210725932],[122,246,71,-0.03505440964332783],[122,246,72,-0.020160361171368532],[122,246,73,-0.005069612992613173],[122,246,74,0.011720631820833022],[122,246,75,0.022762808585994096],[122,246,76,0.03517727552268721],[122,246,77,0.04313317314604917],[122,246,78,0.055949691401044194],[122,246,79,0.02393578148719995],[122,247,64,-0.11083642072979133],[122,247,65,-0.09668330690374922],[122,247,66,-0.08044214430571679],[122,247,67,-0.07024219066630542],[122,247,68,-0.0626184923825058],[122,247,69,-0.05256430856645175],[122,247,70,-0.045288386550039486],[122,247,71,-0.03322522265915119],[122,247,72,-0.019865645338542487],[122,247,73,-0.003464609068433433],[122,247,74,0.013323387733813835],[122,247,75,0.025708282750141073],[122,247,76,0.03759977962136969],[122,247,77,0.04609132029635915],[122,247,78,0.05827791253925091],[122,247,79,0.050564005174773885],[122,248,64,-0.10533861879171665],[122,248,65,-0.09205714802854223],[122,248,66,-0.07856823694845311],[122,248,67,-0.06584846456923232],[122,248,68,-0.05918307411689],[122,248,69,-0.04979891260367328],[122,248,70,-0.042396848871275886],[122,248,71,-0.02982615721207056],[122,248,72,-0.017449334556174895],[122,248,73,-0.0010825261508086853],[122,248,74,0.0132550033966531],[122,248,75,0.026279031994874996],[122,248,76,0.037802092043548355],[122,248,77,0.045442324824779876],[122,248,78,0.05764313259347004],[122,248,79,0.05938512796598892],[122,249,64,-0.10690899928174272],[122,249,65,-0.08972820646099544],[122,249,66,-0.07381877318078968],[122,249,67,-0.056887172843331335],[122,249,68,-0.047902680038735004],[122,249,69,-0.03965978269305469],[122,249,70,-0.03336072331582976],[122,249,71,-0.022166525249921673],[122,249,72,-0.015538286093687112],[122,249,73,-0.0019868420243599194],[122,249,74,0.015434731194864826],[122,249,75,0.028889555261346997],[122,249,76,0.03998138340599269],[122,249,77,0.04743205602603846],[122,249,78,0.05690214938135006],[122,249,79,0.012111963434772284],[122,250,64,-0.10854052208079573],[122,250,65,-0.09202954812125225],[122,250,66,-0.07620752366033381],[122,250,67,-0.058071244335068856],[122,250,68,-0.048767486804082744],[122,250,69,-0.05808603711633133],[122,250,70,-0.08109228385070216],[122,250,71,-0.07035310238619455],[122,250,72,-0.05935829166410705],[122,250,73,-0.012129330688886775],[122,250,74,0.012164889996477288],[122,250,75,0.02825280025024514],[122,250,76,0.037182425518909254],[122,250,77,0.04270237760691805],[122,250,78,0.050095618624195565],[122,250,79,0.043154744402536215],[122,251,64,-0.10603744790529115],[122,251,65,-0.08950492427514145],[122,251,66,-0.07486891127045349],[122,251,67,-0.056820723393005715],[122,251,68,-0.046519766588200964],[122,251,69,-0.06470639819823258],[122,251,70,-0.09270927033960977],[122,251,71,-0.08574835650040938],[122,251,72,-0.05916094606362304],[122,251,73,-0.012774980372273717],[122,251,74,0.012497275438357616],[122,251,75,0.02955201177769705],[122,251,76,0.04025102118710891],[122,251,77,0.04763470886078883],[122,251,78,0.05464435093026489],[122,251,79,0.05361054428110119],[122,252,64,-0.09545715347360148],[122,252,65,-0.07923099460135696],[122,252,66,-0.06574574879799883],[122,252,67,-0.04962900464738096],[122,252,68,-0.04026223301571888],[122,252,69,-0.06384375104365164],[122,252,70,-0.07746323812239617],[122,252,71,-0.08106874894708789],[122,252,72,-0.05319487223965916],[122,252,73,0.005206119074395426],[122,252,74,0.021063270509617232],[122,252,75,0.037601307039503984],[122,252,76,0.04834798380344975],[122,252,77,0.04450105553291068],[122,252,78,0.058822232914694815],[122,252,79,0.03985200332639824],[122,253,64,-0.08189466049129793],[122,253,65,-0.07202255460308947],[122,253,66,-0.06528429801519002],[122,253,67,-0.05609560477341265],[122,253,68,-0.0470657960470004],[122,253,69,-0.03847810700106158],[122,253,70,-0.04054446654267658],[122,253,71,-0.04301700923982968],[122,253,72,-0.013789881221491801],[122,253,73,0.008183514441003362],[122,253,74,0.02048946743993009],[122,253,75,0.01823434867460208],[122,253,76,0.01619537572774872],[122,253,77,-0.009200616896363353],[122,253,78,0.003579295425501769],[122,253,79,-0.024369781772299134],[122,254,64,0.00311371109203204],[122,254,65,0.004393561577286972],[122,254,66,0.004334613329758763],[122,254,67,0.006586625551719877],[122,254,68,0.0072384247495393406],[122,254,69,0.008253007002527313],[122,254,70,-0.01505668706444982],[122,254,71,-0.01913540180576548],[122,254,72,0.012277865630197338],[122,254,73,0.016344961139143216],[122,254,74,0.023192017692453798],[122,254,75,0.018709297467391105],[122,254,76,0.004764071023188682],[122,254,77,-0.02456455489133518],[122,254,78,-0.036273193337463525],[122,254,79,-0.040209396888587434],[122,255,64,0.0014348717149021417],[122,255,65,0.005871639231637388],[122,255,66,0.007851603876840973],[122,255,67,0.007181036719048378],[122,255,68,0.00932849334848189],[122,255,69,0.01192714842240096],[122,255,70,-0.0030197258049028397],[122,255,71,-0.01128250641717304],[122,255,72,0.012720983095715663],[122,255,73,0.01730917255240008],[122,255,74,0.023382934481848347],[122,255,75,0.029976637015067767],[122,255,76,0.0056749244713089585],[122,255,77,-0.021026061694320676],[122,255,78,-0.03769924318392064],[122,255,79,-0.030202611677086315],[122,256,64,0.0010066072908218732],[122,256,65,0.0037554235972324934],[122,256,66,0.007865651851773792],[122,256,67,0.0075267851308367245],[122,256,68,0.010770129791567523],[122,256,69,0.011305337678196817],[122,256,70,0.0013015663184432185],[122,256,71,-0.009080581305746047],[122,256,72,0.012354592335471537],[122,256,73,0.016932539033252494],[122,256,74,0.02359875569995218],[122,256,75,0.03010412238189482],[122,256,76,0.006932260073800312],[122,256,77,-0.023155214126253737],[122,256,78,-0.04585523849772821],[122,256,79,-0.043210855863844974],[122,257,64,0.0015484583680270836],[122,257,65,0.002604913420728369],[122,257,66,0.0062414570876430375],[122,257,67,0.008468646186785084],[122,257,68,0.010793165906577196],[122,257,69,0.013115374201071978],[122,257,70,-0.016380804101737416],[122,257,71,-0.027487293284568462],[122,257,72,0.011021913791268947],[122,257,73,0.016552955311127965],[122,257,74,0.024255903536829854],[122,257,75,-5.603129721822551E-4],[122,257,76,-0.026228750606022068],[122,257,77,-0.06523925815748835],[122,257,78,-0.08449071842562433],[122,257,79,-0.08820083169189476],[122,258,64,-0.0010746870824613064],[122,258,65,-5.652471007794174E-4],[122,258,66,0.003104646010792217],[122,258,67,0.006772470154018773],[122,258,68,0.009043754734142775],[122,258,69,0.008827705360776358],[122,258,70,0.009271832308633376],[122,258,71,0.008473399228616826],[122,258,72,0.00897173989289654],[122,258,73,0.013725252567922716],[122,258,74,0.021656386781510314],[122,258,75,0.003151231190130218],[122,258,76,-0.029533142926061594],[122,258,77,-0.07077031384738633],[122,258,78,-0.09373304497956975],[122,258,79,-0.10473289308387099],[122,259,64,1.0885931438829599E-4],[122,259,65,-4.0192596686487725E-4],[122,259,66,0.002662515236854235],[122,259,67,0.005689162259382555],[122,259,68,0.009644333681061351],[122,259,69,0.00956846466820245],[122,259,70,0.010500500383864977],[122,259,71,0.00986793425430832],[122,259,72,0.010225817122606812],[122,259,73,0.014930781828215348],[122,259,74,0.020926370479329548],[122,259,75,0.02453975470681123],[122,259,76,-0.002543852258364912],[122,259,77,-0.04499613683760059],[122,259,78,-0.0736085639515861],[122,259,79,-0.09587052208376995],[122,260,64,-0.12055345170435834],[122,260,65,-0.12457823130921886],[122,260,66,-0.12580495524801866],[122,260,67,-0.12562190705964016],[122,260,68,-0.12619361351576916],[122,260,69,-0.12863192552411698],[122,260,70,-0.12625587452688866],[122,260,71,-0.12903267950875563],[122,260,72,-0.1290264131480162],[122,260,73,-0.12760456928997874],[122,260,74,-0.12121379736829781],[122,260,75,-0.1227479978219672],[122,260,76,-0.12877102097218812],[122,260,77,-0.14090157883585172],[122,260,78,-0.14699554643720222],[122,260,79,-0.15097434087162134],[122,261,64,-0.13015954641914354],[122,261,65,-0.13228783150669596],[122,261,66,-0.129316211251391],[122,261,67,-0.1262567515444367],[122,261,68,-0.12626719456703156],[122,261,69,-0.1271809962442636],[122,261,70,-0.12483420570962458],[122,261,71,-0.12543982658587652],[122,261,72,-0.12437932565404107],[122,261,73,-0.12162841930512777],[122,261,74,-0.11596726004841756],[122,261,75,-0.11881319356839577],[122,261,76,-0.12356941670840307],[122,261,77,-0.13818588088546366],[122,261,78,-0.1498835281952524],[122,261,79,-0.155654547115947],[122,262,64,-0.137860533370976],[122,262,65,-0.13801210606287695],[122,262,66,-0.1362470064144199],[122,262,67,-0.13128536823056294],[122,262,68,-0.13042367938563326],[122,262,69,-0.13063191584354708],[122,262,70,-0.12704478670817973],[122,262,71,-0.12795043738078246],[122,262,72,-0.1296092120134746],[122,262,73,-0.12544158835725774],[122,262,74,-0.11858254901275586],[122,262,75,-0.1314067094047142],[122,262,76,-0.1355604742619358],[122,262,77,-0.1492072897360138],[122,262,78,-0.16680028430492222],[122,262,79,-0.17876399298165924],[122,263,64,-0.13583820047206244],[122,263,65,-0.1372633687441533],[122,263,66,-0.13555467294078086],[122,263,67,-0.13196902085860274],[122,263,68,-0.1307307120870484],[122,263,69,-0.13098468940175073],[122,263,70,-0.12918919014744992],[122,263,71,-0.1286303387760848],[122,263,72,-0.1316861086745813],[122,263,73,-0.12875597943593528],[122,263,74,-0.12167307664338475],[122,263,75,-0.13374746651385128],[122,263,76,-0.13549217023696455],[122,263,77,-0.14495373148943164],[122,263,78,-0.15823809947915973],[122,263,79,-0.17265694171064952],[122,264,64,-0.13256235301580133],[122,264,65,-0.13644538087227143],[122,264,66,-0.13470872457432445],[122,264,67,-0.13108796666330583],[122,264,68,-0.13072915514231587],[122,264,69,-0.13253983944829448],[122,264,70,-0.13166019951933447],[122,264,71,-0.12846899003914075],[122,264,72,-0.12863698905374907],[122,264,73,-0.1282344549778471],[122,264,74,-0.12340603600756092],[122,264,75,-0.13872168664936416],[122,264,76,-0.13642469655428724],[122,264,77,-0.14602814921866691],[122,264,78,-0.16094895936694445],[122,264,79,-0.16987783709401247],[122,265,64,-0.12236952258905959],[122,265,65,-0.12779874780964628],[122,265,66,-0.13133755385340845],[122,265,67,-0.13059318451085145],[122,265,68,-0.13030895818592392],[122,265,69,-0.1319153009421966],[122,265,70,-0.13283575671232473],[122,265,71,-0.1324861308477228],[122,265,72,-0.1398222714683834],[122,265,73,-0.17602036791898787],[122,265,74,-0.19926226624443283],[122,265,75,-0.22159163148863104],[122,265,76,-0.2117803648992131],[122,265,77,-0.21009693622752326],[122,265,78,-0.20538532321967273],[122,265,79,-0.19226483999309577],[122,266,64,-0.1218256614842945],[122,266,65,-0.12846980009265888],[122,266,66,-0.13164060951559728],[122,266,67,-0.13312127819019556],[122,266,68,-0.1307588951727191],[122,266,69,-0.13227585685704077],[122,266,70,-0.13287008944332687],[122,266,71,-0.13488040580862187],[122,266,72,-0.13566911723586733],[122,266,73,-0.16112554523861275],[122,266,74,-0.18852094344507775],[122,266,75,-0.20817101459316653],[122,266,76,-0.2056639686117503],[122,266,77,-0.20260798714443537],[122,266,78,-0.19703548530129092],[122,266,79,-0.1848561563041685],[122,267,64,-0.11811896984915835],[122,267,65,-0.12382403283615756],[122,267,66,-0.12873581841215193],[122,267,67,-0.1281401139622492],[122,267,68,-0.12742929559253335],[122,267,69,-0.1287244534862373],[122,267,70,-0.13061205038659715],[122,267,71,-0.13291731464281945],[122,267,72,-0.13412742150186577],[122,267,73,-0.16007337855828715],[122,267,74,-0.19869932499081613],[122,267,75,-0.21589635970697887],[122,267,76,-0.21649917423518653],[122,267,77,-0.20920799406508064],[122,267,78,-0.20278545711112128],[122,267,79,-0.18818318896819608],[122,268,64,-0.10961897230117741],[122,268,65,-0.11777664209634109],[122,268,66,-0.12160106577705489],[122,268,67,-0.12184174546139816],[122,268,68,-0.12026791283101848],[122,268,69,-0.12240637827884096],[122,268,70,-0.1255626839391044],[122,268,71,-0.13900743149380262],[122,268,72,-0.154515103386836],[122,268,73,-0.18212177466445756],[122,268,74,-0.20968431353549483],[122,268,75,-0.21522179867325925],[122,268,76,-0.21647735825546177],[122,268,77,-0.20805261578706166],[122,268,78,-0.20084173549585171],[122,268,79,-0.18492885822949776],[122,269,64,-0.10581099520763117],[122,269,65,-0.11399866131307457],[122,269,66,-0.1193874556116975],[122,269,67,-0.1195414814670605],[122,269,68,-0.1180107594414673],[122,269,69,-0.12140905231026328],[122,269,70,-0.12298251274314105],[122,269,71,-0.14625032242737437],[122,269,72,-0.16092665962784386],[122,269,73,-0.19187080945627638],[122,269,74,-0.2191669741892663],[122,269,75,-0.22018425761990135],[122,269,76,-0.21580050423732586],[122,269,77,-0.20625230825137647],[122,269,78,-0.19984829482554983],[122,269,79,-0.18552750633883253],[122,270,64,-0.1092650004011769],[122,270,65,-0.11644375963801601],[122,270,66,-0.12074677771216075],[122,270,67,-0.12335474570029449],[122,270,68,-0.12240624476331383],[122,270,69,-0.12279262970850909],[122,270,70,-0.12226634082851003],[122,270,71,-0.1483835311440985],[122,270,72,-0.16522609633670235],[122,270,73,-0.1951903597309954],[122,270,74,-0.21549556442913087],[122,270,75,-0.22375512809912274],[122,270,76,-0.21536523735218005],[122,270,77,-0.20667097038408272],[122,270,78,-0.1959544756721687],[122,270,79,-0.18458575032639474],[122,271,64,-0.10811360403342374],[122,271,65,-0.11159874178948029],[122,271,66,-0.11634269070737238],[122,271,67,-0.12077900039394139],[122,271,68,-0.12233055973637534],[122,271,69,-0.11913646576870211],[122,271,70,-0.11825029945029814],[122,271,71,-0.1329044996279795],[122,271,72,-0.16568971751571576],[122,271,73,-0.19576080132475426],[122,271,74,-0.21787692894918947],[122,271,75,-0.2207216530077183],[122,271,76,-0.21534065431515695],[122,271,77,-0.20430332214679078],[122,271,78,-0.19456730199567873],[122,271,79,-0.18229833608419854],[122,272,64,-0.10506265596761019],[122,272,65,-0.10886280365203391],[122,272,66,-0.11312198664798721],[122,272,67,-0.11994003067561576],[122,272,68,-0.12032850931344241],[122,272,69,-0.11749825180677805],[122,272,70,-0.11676642422722584],[122,272,71,-0.13043111222203355],[122,272,72,-0.17004463876537487],[122,272,73,-0.19433338215050838],[122,272,74,-0.22220992610026047],[122,272,75,-0.22294220338404871],[122,272,76,-0.21837090045258778],[122,272,77,-0.20578337547152242],[122,272,78,-0.19791302025855834],[122,272,79,-0.18498247176425658],[122,273,64,-0.09921134290721978],[122,273,65,-0.10507167791546783],[122,273,66,-0.10806681052761175],[122,273,67,-0.11515436157651059],[122,273,68,-0.11766338655525438],[122,273,69,-0.11325795056263943],[122,273,70,-0.11033542167216337],[122,273,71,-0.11243509578039793],[122,273,72,-0.12226494988104397],[122,273,73,-0.12384298161154073],[122,273,74,-0.1256161376415156],[122,273,75,-0.1232392241922091],[122,273,76,-0.11909488637457999],[122,273,77,-0.10927460643161935],[122,273,78,-0.10275652117971495],[122,273,79,-0.09266433668888144],[122,274,64,-0.10154140009227869],[122,274,65,-0.10793531683211065],[122,274,66,-0.10957358536038836],[122,274,67,-0.11547719096795743],[122,274,68,-0.11693387062420012],[122,274,69,-0.114800500979307],[122,274,70,-0.11012810632188007],[122,274,71,-0.1116005153250864],[122,274,72,-0.12072334564006951],[122,274,73,-0.12445988458891359],[122,274,74,-0.1262789211165344],[122,274,75,-0.12569056185857272],[122,274,76,-0.11896980001595961],[122,274,77,-0.10972597900685963],[122,274,78,-0.10499699623753597],[122,274,79,-0.09391656809567664],[122,275,64,-0.10134925810084014],[122,275,65,-0.10613185773150176],[122,275,66,-0.10830242210738815],[122,275,67,-0.11239219065098714],[122,275,68,-0.11230493081085507],[122,275,69,-0.11033322985331326],[122,275,70,-0.10743747344257884],[122,275,71,-0.11236167930074198],[122,275,72,-0.12331021955087171],[122,275,73,-0.12879724661847328],[122,275,74,-0.13258877125207275],[122,275,75,-0.13268610046031565],[122,275,76,-0.1253369958839567],[122,275,77,-0.11481224925996109],[122,275,78,-0.10849821335200668],[122,275,79,-0.10053140182039816],[122,276,64,-0.0913316718654845],[122,276,65,-0.09873713505981191],[122,276,66,-0.10055113711392813],[122,276,67,-0.10262936039971629],[122,276,68,-0.10268576968874206],[122,276,69,-0.10254088794832907],[122,276,70,-0.10259914179435806],[122,276,71,-0.10530601882202069],[122,276,72,-0.11447808325647195],[122,276,73,-0.12412763142288727],[122,276,74,-0.13169854453500804],[122,276,75,-0.1361868488815593],[122,276,76,-0.1268194570561688],[122,276,77,-0.11606704561621192],[122,276,78,-0.10737628959921738],[122,276,79,-0.10133714347031864],[122,277,64,-0.09949221570389147],[122,277,65,-0.10181944340881058],[122,277,66,-0.1024734470386718],[122,277,67,-0.10416725877192369],[122,277,68,-0.10316680535604093],[122,277,69,-0.10157799670545921],[122,277,70,-0.10314238032071413],[122,277,71,-0.10271058046772169],[122,277,72,-0.11214346482169266],[122,277,73,-0.12166638925473015],[122,277,74,-0.13073428221648858],[122,277,75,-0.13576208139550736],[122,277,76,-0.12600675573738032],[122,277,77,-0.11727454540663784],[122,277,78,-0.10406743853055056],[122,277,79,-0.0975622999196529],[122,278,64,-0.10227008827554473],[122,278,65,-0.10314436830176388],[122,278,66,-0.1062994443916879],[122,278,67,-0.10681844555394371],[122,278,68,-0.10516883990066916],[122,278,69,-0.1029000814772918],[122,278,70,-0.1024874155504148],[122,278,71,-0.10138877732837387],[122,278,72,-0.10610120271471027],[122,278,73,-0.12160177038214035],[122,278,74,-0.12774831104427248],[122,278,75,-0.13539720139664546],[122,278,76,-0.1279541766226868],[122,278,77,-0.12103405276365903],[122,278,78,-0.1056728744150208],[122,278,79,-0.09831171554638252],[122,279,64,-0.1027608024094256],[122,279,65,-0.1011123652883703],[122,279,66,-0.10292810856401033],[122,279,67,-0.10635415298412708],[122,279,68,-0.10427102509670087],[122,279,69,-0.1022244866954763],[122,279,70,-0.10085934029096254],[122,279,71,-0.09831111347847472],[122,279,72,-0.09963141041541772],[122,279,73,-0.11836774003765357],[122,279,74,-0.12550750536438637],[122,279,75,-0.13433288341074473],[122,279,76,-0.1292327626347724],[122,279,77,-0.12118379808600438],[122,279,78,-0.10514431807816499],[122,279,79,-0.09536816371111606],[122,280,64,-0.10141224279439802],[122,280,65,-0.09951822904566374],[122,280,66,-0.10047313627590682],[122,280,67,-0.10489881787192036],[122,280,68,-0.10080065690315292],[122,280,69,-0.09914613390253857],[122,280,70,-0.09599848341911699],[122,280,71,-0.0966585531857761],[122,280,72,-0.09706820491228646],[122,280,73,-0.11689385824002535],[122,280,74,-0.12541579539560824],[122,280,75,-0.1351930202663775],[122,280,76,-0.13073137293958006],[122,280,77,-0.11977001705775386],[122,280,78,-0.1050398368843323],[122,280,79,-0.09282618228682793],[122,281,64,-0.09824710637704806],[122,281,65,-0.0944737469583554],[122,281,66,-0.09558560788618647],[122,281,67,-0.10188279133216979],[122,281,68,-0.09859889219883798],[122,281,69,-0.0961584490960161],[122,281,70,-0.09333930611925773],[122,281,71,-0.09376790462806668],[122,281,72,-0.0931777876795452],[122,281,73,-0.12267736973869073],[122,281,74,-0.13671618164181448],[122,281,75,-0.14332211903188477],[122,281,76,-0.13951311893758386],[122,281,77,-0.1264050961200364],[122,281,78,-0.11369634494737851],[122,281,79,-0.10226519063023395],[122,282,64,-0.09743510629702742],[122,282,65,-0.09549685630698435],[122,282,66,-0.09663635169268622],[122,282,67,-0.10074884524954988],[122,282,68,-0.09893590620558956],[122,282,69,-0.09964370885869388],[122,282,70,-0.09618077336169613],[122,282,71,-0.09560699032405306],[122,282,72,-0.09357505137273296],[122,282,73,-0.11539574569367622],[122,282,74,-0.13068985073044379],[122,282,75,-0.13399123947291633],[122,282,76,-0.1289014513125522],[122,282,77,-0.1173466352937623],[122,282,78,-0.10519417115809213],[122,282,79,-0.09465944163847198],[122,283,64,-0.09563705433845573],[122,283,65,-0.09331124916038902],[122,283,66,-0.09447836610560491],[122,283,67,-0.09891277944973387],[122,283,68,-0.09699093841986686],[122,283,69,-0.0993399750005955],[122,283,70,-0.09840392613858556],[122,283,71,-0.09529025321680284],[122,283,72,-0.09281733780165032],[122,283,73,-0.12154734494546554],[122,283,74,-0.14276484226441544],[122,283,75,-0.13895197991252065],[122,283,76,-0.13156653904134005],[122,283,77,-0.1205521604566753],[122,283,78,-0.10829978772752161],[122,283,79,-0.09808013214510941],[122,284,64,-0.1161927075909784],[122,284,65,-0.11154133276030842],[122,284,66,-0.11151193770677703],[122,284,67,-0.11503016469414398],[122,284,68,-0.10964238392436904],[122,284,69,-0.1118631553413141],[122,284,70,-0.11272383000623372],[122,284,71,-0.11025909285823854],[122,284,72,-0.10689495187971858],[122,284,73,-0.13168755275141872],[122,284,74,-0.15097331886935497],[122,284,75,-0.14698289075943297],[122,284,76,-0.13969449994123576],[122,284,77,-0.12712918570786766],[122,284,78,-0.11255238227914277],[122,284,79,-0.10207830081131755],[122,285,64,-0.12007092417757201],[122,285,65,-0.11307866275971282],[122,285,66,-0.1077415861862436],[122,285,67,-0.10549965685467363],[122,285,68,-0.097805904042712],[122,285,69,-0.09891893850231154],[122,285,70,-0.10253772339026536],[122,285,71,-0.09943076303952875],[122,285,72,-0.09791453386124752],[122,285,73,-0.1273880205180201],[122,285,74,-0.15075928238615707],[122,285,75,-0.14673884430539239],[122,285,76,-0.1376569514535543],[122,285,77,-0.1251367010383284],[122,285,78,-0.10952415193477003],[122,285,79,-0.09764592222905144],[122,286,64,-0.12221563124103804],[122,286,65,-0.11612008015089416],[122,286,66,-0.10794328926496181],[122,286,67,-0.10485694233564265],[122,286,68,-0.10036082997019316],[122,286,69,-0.09923611652950304],[122,286,70,-0.09947011577379203],[122,286,71,-0.09749970149869913],[122,286,72,-0.09546255464536875],[122,286,73,-0.12372378395975628],[122,286,74,-0.14837924262171648],[122,286,75,-0.1440582444257623],[122,286,76,-0.13656027199840035],[122,286,77,-0.12211263691089091],[122,286,78,-0.10809664165746355],[122,286,79,-0.09688172576894938],[122,287,64,-0.12095118854529716],[122,287,65,-0.11505419738670762],[122,287,66,-0.10906141923244352],[122,287,67,-0.10492278917597847],[122,287,68,-0.10314179468587203],[122,287,69,-0.09935673833547434],[122,287,70,-0.09975012990895692],[122,287,71,-0.09565271004119101],[122,287,72,-0.09454350479397951],[122,287,73,-0.11969300235696423],[122,287,74,-0.14246737644144558],[122,287,75,-0.1376038572434149],[122,287,76,-0.1303731412728952],[122,287,77,-0.11607159432492561],[122,287,78,-0.10385520906019158],[122,287,79,-0.0947552571504037],[122,288,64,-0.11997509599320624],[122,288,65,-0.11477445475880563],[122,288,66,-0.10987426411350626],[122,288,67,-0.1084836683941175],[122,288,68,-0.10522560154456835],[122,288,69,-0.1002930614882024],[122,288,70,-0.09576612484303595],[122,288,71,-0.0938221471902965],[122,288,72,-0.09308179072190699],[122,288,73,-0.11867959650847858],[122,288,74,-0.13698197012586233],[122,288,75,-0.135090352389782],[122,288,76,-0.12766737879256626],[122,288,77,-0.11069867780754142],[122,288,78,-0.10248435216176022],[122,288,79,-0.09247287661996281],[122,289,64,-0.11196336004186683],[122,289,65,-0.11316782943040292],[122,289,66,-0.11550762334380875],[122,289,67,-0.11940091681868736],[122,289,68,-0.11443529871119891],[122,289,69,-0.10904963814125616],[122,289,70,-0.10246696851785839],[122,289,71,-0.10382033747192865],[122,289,72,-0.10296125189637649],[122,289,73,-0.13532112889234324],[122,289,74,-0.14686643942155256],[122,289,75,-0.13941894559015755],[122,289,76,-0.13245135394076532],[122,289,77,-0.1176081580495604],[122,289,78,-0.10868107355912629],[122,289,79,-0.09751126519355535],[122,290,64,-0.11303640356401026],[122,290,65,-0.11546734998820467],[122,290,66,-0.11685252405305421],[122,290,67,-0.11902678088627203],[122,290,68,-0.11475799941227402],[122,290,69,-0.11043766381027119],[122,290,70,-0.10517131390616202],[122,290,71,-0.10701239234570753],[122,290,72,-0.10524948882688143],[122,290,73,-0.13149689986315152],[122,290,74,-0.14930180162911502],[122,290,75,-0.14138359161212655],[122,290,76,-0.13305091778004532],[122,290,77,-0.1227894378894927],[122,290,78,-0.1116719407991642],[122,290,79,-0.09868677716336735],[122,291,64,-0.1115502050832324],[122,291,65,-0.11194790221141175],[122,291,66,-0.11396161075346692],[122,291,67,-0.1123160181033947],[122,291,68,-0.11093766012104271],[122,291,69,-0.108775753466064],[122,291,70,-0.1058664645953124],[122,291,71,-0.1078487332009131],[122,291,72,-0.10801390263454366],[122,291,73,-0.13955138507630135],[122,291,74,-0.15266149674543075],[122,291,75,-0.14358409195506677],[122,291,76,-0.1351616083845057],[122,291,77,-0.12423328063535244],[122,291,78,-0.11182866822130991],[122,291,79,-0.09876281213914861],[122,292,64,-0.07742623326563412],[122,292,65,-0.07473693984601565],[122,292,66,-0.07268880062538113],[122,292,67,-0.07064974307789992],[122,292,68,-0.06680178340173992],[122,292,69,-0.06451321275213126],[122,292,70,-0.06316625166092976],[122,292,71,-0.06366386974402605],[122,292,72,-0.06188556284611936],[122,292,73,-0.10997677869387734],[122,292,74,-0.12654054896461336],[122,292,75,-0.11680093148858131],[122,292,76,-0.11022595270789107],[122,292,77,-0.0972040700988133],[122,292,78,-0.08485774911279739],[122,292,79,-0.073442342948461],[122,293,64,-0.07900161489632895],[122,293,65,-0.07583272977625663],[122,293,66,-0.07152443485676827],[122,293,67,-0.0666693486281157],[122,293,68,-0.06206798584894458],[122,293,69,-0.06062308506261087],[122,293,70,-0.06254088309106608],[122,293,71,-0.06118498189074125],[122,293,72,-0.06350024814365535],[122,293,73,-0.10632173509802331],[122,293,74,-0.11900901353529784],[122,293,75,-0.11073812394548346],[122,293,76,-0.10227708570838667],[122,293,77,-0.09038377062957803],[122,293,78,-0.07948501362333116],[122,293,79,-0.06678071453683238],[122,294,64,-0.08217753986006868],[122,294,65,-0.07692413701203321],[122,294,66,-0.07189911387472563],[122,294,67,-0.06458147500185027],[122,294,68,-0.05783915721818997],[122,294,69,-0.05721149534920223],[122,294,70,-0.05757266823424566],[122,294,71,-0.058097520286347404],[122,294,72,-0.060649909450785834],[122,294,73,-0.0988111666644017],[122,294,74,-0.11343859873272835],[122,294,75,-0.10705892548118576],[122,294,76,-0.09615831934588936],[122,294,77,-0.0845221161862284],[122,294,78,-0.07540874013844948],[122,294,79,-0.06468913014031777],[122,295,64,-0.0837027798672649],[122,295,65,-0.07827101460749418],[122,295,66,-0.07202117241978051],[122,295,67,-0.06202556597331994],[122,295,68,-0.05478192368137444],[122,295,69,-0.0520622977092837],[122,295,70,-0.0522265304408934],[122,295,71,-0.05584925056427496],[122,295,72,-0.060188731769436316],[122,295,73,-0.05965771816518485],[122,295,74,-0.0702691434921746],[122,295,75,-0.07213259164701773],[122,295,76,-0.07427562214091576],[122,295,77,-0.06431160038321775],[122,295,78,-0.058158622848577646],[122,295,79,-0.052436707669022725],[122,296,64,-0.08278685048066166],[122,296,65,-0.07625657223678901],[122,296,66,-0.07197166694315027],[122,296,67,-0.06270753397138307],[122,296,68,-0.05597372462901657],[122,296,69,-0.04933236100854828],[122,296,70,-0.04803007250029033],[122,296,71,-0.05222310130662785],[122,296,72,-0.05886233527373929],[122,296,73,-0.055766394353594],[122,296,74,-0.06494610930670859],[122,296,75,-0.06690312637576357],[122,296,76,-0.07127406079231408],[122,296,77,-0.0582890848955785],[122,296,78,-0.05380638266070754],[122,296,79,-0.04754617729902144],[122,297,64,-0.08817947899427253],[122,297,65,-0.07828688985413859],[122,297,66,-0.06791904145193789],[122,297,67,-0.055380509403968714],[122,297,68,-0.04737013686226005],[122,297,69,-0.0389522136788748],[122,297,70,-0.04000422139969777],[122,297,71,-0.0474411848184493],[122,297,72,-0.05858023465032372],[122,297,73,-0.061269192830032654],[122,297,74,-0.06850755768909086],[122,297,75,-0.07114745252182465],[122,297,76,-0.07395818597270061],[122,297,77,-0.06071021283328683],[122,297,78,-0.05642268915887366],[122,297,79,-0.05028916228576776],[122,298,64,-0.09055625735112693],[122,298,65,-0.07846822234893877],[122,298,66,-0.06876492676705373],[122,298,67,-0.05754573419550998],[122,298,68,-0.04893794661678341],[122,298,69,-0.041381563836468585],[122,298,70,-0.042382208410605915],[122,298,71,-0.050068683950748455],[122,298,72,-0.05979166081278625],[122,298,73,-0.061102053867105155],[122,298,74,-0.05844918011811638],[122,298,75,-0.06395074491639463],[122,298,76,-0.06455273086934106],[122,298,77,-0.05669276450877446],[122,298,78,-0.052333915341170226],[122,298,79,-0.04621901791625909],[122,299,64,-0.09010424720174523],[122,299,65,-0.07720996770768494],[122,299,66,-0.06615838421690645],[122,299,67,-0.05673170220820564],[122,299,68,-0.04634882842181731],[122,299,69,-0.04020673471755061],[122,299,70,-0.04092969091325317],[122,299,71,-0.04943388038120648],[122,299,72,-0.05760957404012184],[122,299,73,-0.059916290378675394],[122,299,74,-0.056694851973555525],[122,299,75,-0.05983627251481174],[122,299,76,-0.061686635886759884],[122,299,77,-0.05351386223902846],[122,299,78,-0.04849422175184274],[122,299,79,-0.04282922924100571],[122,300,64,-0.08391024777381098],[122,300,65,-0.07801150773683711],[122,300,66,-0.07277582735877265],[122,300,67,-0.06520017855998547],[122,300,68,-0.05517161396644883],[122,300,69,-0.05073173913819566],[122,300,70,-0.04947979481683794],[122,300,71,-0.051133479883957084],[122,300,72,-0.0526766012082414],[122,300,73,-0.05055066383135462],[122,300,74,-0.045863269744454614],[122,300,75,-0.041612627155552],[122,300,76,-0.035060153591559555],[122,300,77,-0.027875306390116032],[122,300,78,-0.02371808977890582],[122,300,79,-0.02448154026837307],[122,301,64,-0.07979197865372742],[122,301,65,-0.07802923100044326],[122,301,66,-0.0719780528725],[122,301,67,-0.06339525124585871],[122,301,68,-0.05272986045041052],[122,301,69,-0.0485880803534048],[122,301,70,-0.04767975928397768],[122,301,71,-0.05023381665024395],[122,301,72,-0.04928142130295726],[122,301,73,-0.04534668161379452],[122,301,74,-0.043585558129546634],[122,301,75,-0.03992537929723227],[122,301,76,-0.03279258330489705],[122,301,77,-0.02461069772802195],[122,301,78,-0.022742251459630703],[122,301,79,-0.021070814547668668],[122,302,64,-0.07632033075768682],[122,302,65,-0.0735276299264789],[122,302,66,-0.06835069101183142],[122,302,67,-0.06005304907074316],[122,302,68,-0.04710033066639516],[122,302,69,-0.043172431928223176],[122,302,70,-0.042608741790683774],[122,302,71,-0.04344920874980494],[122,302,72,-0.04101121692237826],[122,302,73,-0.03573821749354207],[122,302,74,-0.03444398070244217],[122,302,75,-0.032954119872012196],[122,302,76,-0.025785094022774083],[122,302,77,-0.017108625965700577],[122,302,78,-0.02144855632558091],[122,302,79,-0.023167065293080085],[122,303,64,-0.07122608948020152],[122,303,65,-0.06826709970282129],[122,303,66,-0.06699664662040844],[122,303,67,-0.0584446861688491],[122,303,68,-0.04722494234537143],[122,303,69,-0.041063941341944965],[122,303,70,-0.03982906851809043],[122,303,71,-0.038798486241105365],[122,303,72,-0.036324952353929255],[122,303,73,-0.03308985856305456],[122,303,74,-0.03245572180958364],[122,303,75,-0.030349059864588527],[122,303,76,-0.022315692126908704],[122,303,77,-0.02389363477589434],[122,303,78,-0.027772248124321032],[122,303,79,-0.017622743988826375],[122,304,64,-0.06713179949582279],[122,304,65,-0.06366643564445713],[122,304,66,-0.06311497733921761],[122,304,67,-0.05561424651742763],[122,304,68,-0.045628530119549454],[122,304,69,-0.037734738232539214],[122,304,70,-0.03805940314374874],[122,304,71,-0.036499180080776794],[122,304,72,-0.03209103890191606],[122,304,73,-0.030335995264412552],[122,304,74,-0.030549839867879194],[122,304,75,-0.02578637414829052],[122,304,76,-0.019353102599998007],[122,304,77,-0.019666697513312056],[122,304,78,-0.02299550538240179],[122,304,79,-0.01293331760818927],[122,305,64,-0.06342912119999061],[122,305,65,-0.06048564377191156],[122,305,66,-0.05834041047266862],[122,305,67,-0.05332053915807769],[122,305,68,-0.041333630461739934],[122,305,69,-0.035774785198837866],[122,305,70,-0.03611285898136356],[122,305,71,-0.0341413838079033],[122,305,72,-0.029612395410853976],[122,305,73,-0.025259425841668223],[122,305,74,-0.02615382577401852],[122,305,75,-0.021937917336873378],[122,305,76,-0.01614862578692655],[122,305,77,-0.01960131892028137],[122,305,78,-0.02025511057498983],[122,305,79,-0.007783909686200557],[122,306,64,-0.06418587131752776],[122,306,65,-0.05930131482968548],[122,306,66,-0.05865779016240209],[122,306,67,-0.05153610327487851],[122,306,68,-0.042007973463078455],[122,306,69,-0.036785645239003906],[122,306,70,-0.033633572649314825],[122,306,71,-0.033780471150572436],[122,306,72,-0.02915136031205913],[122,306,73,-0.02480382463339756],[122,306,74,-0.02516547192000923],[122,306,75,-0.02063430457407195],[122,306,76,-0.013516902399263661],[122,306,77,-0.011945348592910222],[122,306,78,-0.011562019694644937],[122,306,79,-5.911569202336504E-4],[122,307,64,-0.062436119456093966],[122,307,65,-0.0572953939644915],[122,307,66,-0.054482297130286614],[122,307,67,-0.04852870386234624],[122,307,68,-0.03969902993838441],[122,307,69,-0.03261705129679357],[122,307,70,-0.029592781997417772],[122,307,71,-0.030502231521041465],[122,307,72,-0.026732317852016046],[122,307,73,-0.023243241634956682],[122,307,74,-0.02347102739373612],[122,307,75,-0.019601108105604198],[122,307,76,-0.010485857559987807],[122,307,77,-0.013811992003805815],[122,307,78,-0.011205305899859632],[122,307,79,0.0010329070434106765],[122,308,64,-0.03925546545692986],[122,308,65,-0.034626963214994394],[122,308,66,-0.0320409093063337],[122,308,67,-0.02694667576644602],[122,308,68,-0.022678001810038872],[122,308,69,-0.019184785034608687],[122,308,70,-0.02383372356896836],[122,308,71,-0.029524453093258074],[122,308,72,-0.029495732065708505],[122,308,73,-0.029546544563105168],[122,308,74,-0.0340261719543275],[122,308,75,-0.029625971863500106],[122,308,76,-0.024938438016384915],[122,308,77,-0.027557474980995898],[122,308,78,-0.018413433012442998],[122,308,79,-0.004765182045862183],[122,309,64,-0.03599255368628898],[122,309,65,-0.03176797672422302],[122,309,66,-0.028355852330448003],[122,309,67,-0.0231222085230256],[122,309,68,-0.018804574317086986],[122,309,69,-0.01848714774501943],[122,309,70,-0.023966118438733475],[122,309,71,-0.02502445814488108],[122,309,72,-0.027146079148770402],[122,309,73,-0.029274192240857616],[122,309,74,-0.032833722688628705],[122,309,75,-0.031977133868088925],[122,309,76,-0.027390780177003804],[122,309,77,-0.020645854411782693],[122,309,78,0.014044170667116038],[122,309,79,0.027322150194320723],[122,310,64,-0.027897963952671606],[122,310,65,-0.023805149885543705],[122,310,66,-0.021143722109354335],[122,310,67,-0.014039490181828734],[122,310,68,-0.011603647529465286],[122,310,69,-0.011687059844689526],[122,310,70,-0.016615393059008082],[122,310,71,-0.016980924896930316],[122,310,72,-0.018034927055881445],[122,310,73,-0.019479086241719276],[122,310,74,-0.024742761946679057],[122,310,75,-0.02546740030422577],[122,310,76,-0.02157318216289371],[122,310,77,-0.010735571596992814],[122,310,78,0.014728814303749609],[122,310,79,0.031180365856806114],[122,311,64,-0.026044652898132292],[122,311,65,-0.023398555889632133],[122,311,66,-0.016831132149780284],[122,311,67,-0.009396922805662969],[122,311,68,-0.007038708299686974],[122,311,69,-0.010413429495284302],[122,311,70,-0.014667166677507018],[122,311,71,-0.017209401666042706],[122,311,72,-0.01661242308124901],[122,311,73,-0.016734360525189784],[122,311,74,-0.021753031803445025],[122,311,75,-0.021365344865710997],[122,311,76,-0.021188833631499843],[122,311,77,-0.00676203422755127],[122,311,78,0.014769639513469702],[122,311,79,0.027341596287252162],[122,312,64,-0.03340791980268466],[122,312,65,-0.030139728003208327],[122,312,66,-0.022639623097001252],[122,312,67,-0.016868882712898034],[122,312,68,-0.010532241295071812],[122,312,69,-0.013506519407503359],[122,312,70,-0.01732434154091736],[122,312,71,-0.016700168394572404],[122,312,72,-0.00955069112182827],[122,312,73,-0.00663624772916846],[122,312,74,-0.00712417423153433],[122,312,75,-0.007599275397173963],[122,312,76,-0.006736701482712687],[122,312,77,0.005491762464084714],[122,312,78,0.024490673134692924],[122,312,79,0.0314580964552555],[122,313,64,-0.03369276269791313],[122,313,65,-0.029889558806549824],[122,313,66,-0.021221790948509622],[122,313,67,-0.014642693298392795],[122,313,68,-0.008777781436058424],[122,313,69,-0.012478348158334429],[122,313,70,-0.01508593504019154],[122,313,71,-0.014693360664588692],[122,313,72,-0.008180789686120668],[122,313,73,-0.004385235804386434],[122,313,74,-0.0012506523165015937],[122,313,75,-0.0024099618528235778],[122,313,76,-0.0022100982154567433],[122,313,77,0.005197290452753547],[122,313,78,0.01788928047811789],[122,313,79,0.02028835560564863],[122,314,64,-0.03649440013299815],[122,314,65,-0.032927971670459494],[122,314,66,-0.025219683814287283],[122,314,67,-0.01873617906611179],[122,314,68,-0.013147860005079781],[122,314,69,-0.012517780394926625],[122,314,70,-0.015089721548816395],[122,314,71,-0.01410090528636071],[122,314,72,-0.008481668033782933],[122,314,73,-0.003208872115232936],[122,314,74,3.104825383956622E-5],[122,314,75,-0.0013101534498862338],[122,314,76,-0.001893733419017496],[122,314,77,0.003081684891861911],[122,314,78,0.01694827143847079],[122,314,79,0.018812643776496368],[122,315,64,-0.03581971873532391],[122,315,65,-0.03216762034894588],[122,315,66,-0.025971309371820017],[122,315,67,-0.01795184770408309],[122,315,68,-0.01540296751932553],[122,315,69,-0.011854225546197125],[122,315,70,-0.012385505522280654],[122,315,71,-0.011792522055735999],[122,315,72,-0.005042408537292667],[122,315,73,-8.571714234866662E-4],[122,315,74,0.0025891413827360127],[122,315,75,1.5128464862843027E-4],[122,315,76,3.3283628166347334E-5],[122,315,77,0.006566736670238166],[122,315,78,0.01948747188171003],[122,315,79,0.02224329346672238],[122,316,64,-0.04164684463263822],[122,316,65,-0.03651425331594342],[122,316,66,-0.03073657539261554],[122,316,67,-0.02077529859762918],[122,316,68,-0.015107695658569884],[122,316,69,-0.010671909781966554],[122,316,70,-0.009682850538171889],[122,316,71,-0.007314260206048515],[122,316,72,-8.816774758647894E-5],[122,316,73,0.0013823769323794005],[122,316,74,0.0044246853211628995],[122,316,75,0.005056996350411722],[122,316,76,0.006483652111719904],[122,316,77,0.009952897906855177],[122,316,78,0.023327168285809597],[122,316,79,0.027047426751567804],[122,317,64,-0.041029976204813134],[122,317,65,-0.03281052021805218],[122,317,66,-0.029292467519806104],[122,317,67,-0.022406642159274986],[122,317,68,-0.01508574066566691],[122,317,69,-0.010793169374018668],[122,317,70,-0.00822132064304687],[122,317,71,-0.0032990614418680064],[122,317,72,0.005366438752729491],[122,317,73,0.003963114150107763],[122,317,74,0.005819566555901004],[122,317,75,0.007489015993943388],[122,317,76,0.009257157645853623],[122,317,77,0.009428352583310845],[122,317,78,0.02084295129846713],[122,317,79,0.022681107619125767],[122,318,64,-0.03287312460354823],[122,318,65,-0.025407300408204145],[122,318,66,-0.021652321458989],[122,318,67,-0.016734658061542035],[122,318,68,-0.007218137285216447],[122,318,69,-0.002424382279414397],[122,318,70,0.002543445726188434],[122,318,71,0.008519250173966916],[122,318,72,0.01553987524453504],[122,318,73,0.016017597019002322],[122,318,74,0.0168755360945958],[122,318,75,0.018143658772198867],[122,318,76,0.019138401782475375],[122,318,77,0.016269542814397582],[122,318,78,0.024966467456872546],[122,318,79,0.02465249328931769],[122,319,64,-0.03284958055242468],[122,319,65,-0.023014341075085945],[122,319,66,-0.01880792722367859],[122,319,67,-0.012934661562122543],[122,319,68,-0.00378774864400791],[122,319,69,-0.0011554552736894874],[122,319,70,0.004284039516681992],[122,319,71,0.011763622188023029],[122,319,72,0.017077206810998613],[122,319,73,0.018344499174260967],[122,319,74,0.01773131048074368],[122,319,75,0.017275923343469807],[122,319,76,0.016505992345991025],[122,319,77,0.01648947670525356],[122,319,78,0.024865185099686618],[122,319,79,0.02135426313868869],[123,-64,64,-0.4288972525813521],[123,-64,65,-0.42428178266085004],[123,-64,66,-0.4221607907100646],[123,-64,67,-0.4173892462975999],[123,-64,68,-0.41001445035416656],[123,-64,69,-0.4042491140851329],[123,-64,70,-0.39416225027419227],[123,-64,71,-0.3829763779964518],[123,-64,72,-0.372812790267076],[123,-64,73,-0.363225703268992],[123,-64,74,-0.35581490315247427],[123,-64,75,-0.35033120414621216],[123,-64,76,-0.34951551166298306],[123,-64,77,-0.34964192547213774],[123,-64,78,-0.3524470112116168],[123,-64,79,-0.35559415817639317],[123,-63,64,-0.43761851667945006],[123,-63,65,-0.4291853406032051],[123,-63,66,-0.42431746642308515],[123,-63,67,-0.4180155912099307],[123,-63,68,-0.41341465107352937],[123,-63,69,-0.40684261459335724],[123,-63,70,-0.394927262378462],[123,-63,71,-0.3791666482860414],[123,-63,72,-0.3662591019626187],[123,-63,73,-0.356642929197477],[123,-63,74,-0.34674565379947286],[123,-63,75,-0.3437458041358749],[123,-63,76,-0.34466161327466777],[123,-63,77,-0.34517237182505267],[123,-63,78,-0.3487502068905062],[123,-63,79,-0.3548586346318387],[123,-62,64,-0.43538596612091846],[123,-62,65,-0.42821731469028274],[123,-62,66,-0.42241770018255853],[123,-62,67,-0.4140737403634962],[123,-62,68,-0.4090095580744551],[123,-62,69,-0.40191641256819394],[123,-62,70,-0.3900073809740878],[123,-62,71,-0.3753292907068399],[123,-62,72,-0.35923293888469804],[123,-62,73,-0.35084824066037285],[123,-62,74,-0.3413105348520356],[123,-62,75,-0.33790654872821985],[123,-62,76,-0.33857132208086177],[123,-62,77,-0.33889484789728663],[123,-62,78,-0.3421927032204415],[123,-62,79,-0.34907489028372235],[123,-61,64,-0.4384297033987176],[123,-61,65,-0.43108524901283757],[123,-61,66,-0.4251125995771441],[123,-61,67,-0.41615460751997746],[123,-61,68,-0.4093464580068935],[123,-61,69,-0.4033379354200301],[123,-61,70,-0.3914347610046284],[123,-61,71,-0.3753724450833387],[123,-61,72,-0.3571141750652243],[123,-61,73,-0.3489063841130158],[123,-61,74,-0.3416147175215608],[123,-61,75,-0.33683789496791905],[123,-61,76,-0.3378730272756501],[123,-61,77,-0.33743608976530287],[123,-61,78,-0.34164306890286666],[123,-61,79,-0.348818348649836],[123,-60,64,-0.4385796931873898],[123,-60,65,-0.4306981140965982],[123,-60,66,-0.4243105907317043],[123,-60,67,-0.4134802975413891],[123,-60,68,-0.40199702439639257],[123,-60,69,-0.39786730921906815],[123,-60,70,-0.3842292327630015],[123,-60,71,-0.36766962757399924],[123,-60,72,-0.35166600959449795],[123,-60,73,-0.3427789135684449],[123,-60,74,-0.3331273565921935],[123,-60,75,-0.327680192922592],[123,-60,76,-0.32518744990078285],[123,-60,77,-0.32871294384112126],[123,-60,78,-0.33283019105970146],[123,-60,79,-0.3392314218352536],[123,-59,64,-0.4207057701348793],[123,-59,65,-0.41495247984926525],[123,-59,66,-0.4102917833507368],[123,-59,67,-0.40495012152054977],[123,-59,68,-0.3933384961871154],[123,-59,69,-0.3867121263825925],[123,-59,70,-0.3735197118862876],[123,-59,71,-0.36243813003174163],[123,-59,72,-0.3498470367437475],[123,-59,73,-0.34106154497881275],[123,-59,74,-0.33163110040982824],[123,-59,75,-0.3266850319073317],[123,-59,76,-0.32117392880286294],[123,-59,77,-0.32282778653270544],[123,-59,78,-0.3248924175787652],[123,-59,79,-0.32574267213979846],[123,-58,64,-0.4189965752877999],[123,-58,65,-0.4121741197018442],[123,-58,66,-0.406789518358946],[123,-58,67,-0.4024367367039299],[123,-58,68,-0.39148291015600906],[123,-58,69,-0.3822120379475471],[123,-58,70,-0.3706985152046017],[123,-58,71,-0.3605709735967445],[123,-58,72,-0.34699083883009535],[123,-58,73,-0.33798676829343477],[123,-58,74,-0.3283092973119193],[123,-58,75,-0.3240324768080266],[123,-58,76,-0.3176438521636475],[123,-58,77,-0.31910479446659856],[123,-58,78,-0.3204980372143496],[123,-58,79,-0.32030340857510453],[123,-57,64,-0.4211274179298584],[123,-57,65,-0.4143035623787646],[123,-57,66,-0.40697160929201825],[123,-57,67,-0.40165314324226475],[123,-57,68,-0.393279197692172],[123,-57,69,-0.38268961666483214],[123,-57,70,-0.3700229124010876],[123,-57,71,-0.35820984335879485],[123,-57,72,-0.347344214183053],[123,-57,73,-0.3381544212080896],[123,-57,74,-0.3269065281419537],[123,-57,75,-0.32328206632102147],[123,-57,76,-0.31765199591104787],[123,-57,77,-0.3157499006800005],[123,-57,78,-0.3166807944503053],[123,-57,79,-0.315616576056561],[123,-56,64,-0.4183322589940896],[123,-56,65,-0.41175921448191133],[123,-56,66,-0.4048237077464737],[123,-56,67,-0.39949615292080254],[123,-56,68,-0.38956504074215303],[123,-56,69,-0.3792636048680478],[123,-56,70,-0.370541547372344],[123,-56,71,-0.3560147744916851],[123,-56,72,-0.34510343625505047],[123,-56,73,-0.33513890982334665],[123,-56,74,-0.3249594015299838],[123,-56,75,-0.31560992114738057],[123,-56,76,-0.31186413127712775],[123,-56,77,-0.31124565941934856],[123,-56,78,-0.3122729067573947],[123,-56,79,-0.3127458393806637],[123,-55,64,-0.4153811510073426],[123,-55,65,-0.40653909059688187],[123,-55,66,-0.40072747135961106],[123,-55,67,-0.39606734394846765],[123,-55,68,-0.38712791429037857],[123,-55,69,-0.3749274609902932],[123,-55,70,-0.36790815303722846],[123,-55,71,-0.3541676808772106],[123,-55,72,-0.34147364230799254],[123,-55,73,-0.3319100064042823],[123,-55,74,-0.3214533601512114],[123,-55,75,-0.3132136031907149],[123,-55,76,-0.3094692677800311],[123,-55,77,-0.30726885629229644],[123,-55,78,-0.30707658970009355],[123,-55,79,-0.3054931103044713],[123,-54,64,-0.41246184024589017],[123,-54,65,-0.40519204935834824],[123,-54,66,-0.39778995615235996],[123,-54,67,-0.3939471807212933],[123,-54,68,-0.3849762443270742],[123,-54,69,-0.37294152764741473],[123,-54,70,-0.3639217663438474],[123,-54,71,-0.35167557988506454],[123,-54,72,-0.33779492616190454],[123,-54,73,-0.32736762831508315],[123,-54,74,-0.31830120745238083],[123,-54,75,-0.30958393469514095],[123,-54,76,-0.30613409113905515],[123,-54,77,-0.30380421359990345],[123,-54,78,-0.3023500381380813],[123,-54,79,-0.29900877541798904],[123,-53,64,-0.41625016422979744],[123,-53,65,-0.4103199075917383],[123,-53,66,-0.3998225877933089],[123,-53,67,-0.3934859939317302],[123,-53,68,-0.38536322375436494],[123,-53,69,-0.37506656429776286],[123,-53,70,-0.36721584920418354],[123,-53,71,-0.35474558063704853],[123,-53,72,-0.3422312887976808],[123,-53,73,-0.32902581649558194],[123,-53,74,-0.31893411892937673],[123,-53,75,-0.3101811975059383],[123,-53,76,-0.3043962189590479],[123,-53,77,-0.3044624828954597],[123,-53,78,-0.3035331690389318],[123,-53,79,-0.2974071184757194],[123,-52,64,-0.4180592509252808],[123,-52,65,-0.4088323154868192],[123,-52,66,-0.3948762015161327],[123,-52,67,-0.38667072574766287],[123,-52,68,-0.37687299381403055],[123,-52,69,-0.36938678272129616],[123,-52,70,-0.3614095297550491],[123,-52,71,-0.3468072151697203],[123,-52,72,-0.33218308124797474],[123,-52,73,-0.3180769717868933],[123,-52,74,-0.3073868035501754],[123,-52,75,-0.2989804803866957],[123,-52,76,-0.2940013219082578],[123,-52,77,-0.29372118618339854],[123,-52,78,-0.2948796212595125],[123,-52,79,-0.2875425176133242],[123,-51,64,-0.42795353153699983],[123,-51,65,-0.4295888418025016],[123,-51,66,-0.415811546532727],[123,-51,67,-0.4054970305500885],[123,-51,68,-0.39693994522855147],[123,-51,69,-0.3884936559278962],[123,-51,70,-0.3788834149453939],[123,-51,71,-0.3656923572482011],[123,-51,72,-0.34895025883268616],[123,-51,73,-0.33360223651676957],[123,-51,74,-0.32050852888295694],[123,-51,75,-0.3123760568771654],[123,-51,76,-0.3034028690400872],[123,-51,77,-0.29766662334975075],[123,-51,78,-0.29372538087017186],[123,-51,79,-0.27993355668398257],[123,-50,64,-0.3936668301243665],[123,-50,65,-0.38230993872195884],[123,-50,66,-0.41722689311516703],[123,-50,67,-0.4060755099654343],[123,-50,68,-0.3979042563014879],[123,-50,69,-0.3880467480633472],[123,-50,70,-0.37482221443207603],[123,-50,71,-0.36107883797564366],[123,-50,72,-0.34736047894283417],[123,-50,73,-0.3334347890322561],[123,-50,74,-0.32104366469197576],[123,-50,75,-0.30884485979005405],[123,-50,76,-0.30074921261634413],[123,-50,77,-0.2937891595899256],[123,-50,78,-0.2908081535099749],[123,-50,79,-0.2785105015393699],[123,-49,64,-0.34020902638427875],[123,-49,65,-0.3265495437515127],[123,-49,66,-0.4042888688797472],[123,-49,67,-0.40943548130539764],[123,-49,68,-0.4009174309921377],[123,-49,69,-0.3898043188664593],[123,-49,70,-0.374066086694538],[123,-49,71,-0.3598859285975078],[123,-49,72,-0.34782818039397106],[123,-49,73,-0.3353290057087148],[123,-49,74,-0.32051999897167327],[123,-49,75,-0.30895300266003894],[123,-49,76,-0.30084364904329386],[123,-49,77,-0.2937432650589852],[123,-49,78,-0.2883999989258465],[123,-49,79,-0.2768777613915602],[123,-48,64,-0.28596194950136244],[123,-48,65,-0.27384886931600305],[123,-48,66,-0.35577667806825664],[123,-48,67,-0.40631848227847944],[123,-48,68,-0.39964228042821365],[123,-48,69,-0.38648230222848284],[123,-48,70,-0.36851071446427314],[123,-48,71,-0.35756844836758556],[123,-48,72,-0.34554941354817703],[123,-48,73,-0.33427729502644354],[123,-48,74,-0.3215116749106869],[123,-48,75,-0.3083193250333711],[123,-48,76,-0.29949667417527015],[123,-48,77,-0.2924841969743066],[123,-48,78,-0.28738450968264295],[123,-48,79,-0.27458102232010556],[123,-47,64,-0.2640347663916103],[123,-47,65,-0.24413069028597234],[123,-47,66,-0.3288112143870979],[123,-47,67,-0.4034175776770036],[123,-47,68,-0.3926669589679664],[123,-47,69,-0.37918184843805647],[123,-47,70,-0.3655808019590479],[123,-47,71,-0.35242076108739046],[123,-47,72,-0.33922951247157485],[123,-47,73,-0.33111253188731665],[123,-47,74,-0.3201068948508205],[123,-47,75,-0.30527580801586285],[123,-47,76,-0.29676283973101264],[123,-47,77,-0.2931010419991057],[123,-47,78,-0.289247633861838],[123,-47,79,-0.2826061962820691],[123,-46,64,-0.3135564624842928],[123,-46,65,-0.29028701393794654],[123,-46,66,-0.28916926718506586],[123,-46,67,-0.35332525710827567],[123,-46,68,-0.38711275468608775],[123,-46,69,-0.3770428820035626],[123,-46,70,-0.3649302547995214],[123,-46,71,-0.3529316049119824],[123,-46,72,-0.34077189606558744],[123,-46,73,-0.3312327138474539],[123,-46,74,-0.31869662256777137],[123,-46,75,-0.30317177572823184],[123,-46,76,-0.29577515200885474],[123,-46,77,-0.2917347895990586],[123,-46,78,-0.2878313469256909],[123,-46,79,-0.28273951310882456],[123,-45,64,-0.2931146669906231],[123,-45,65,-0.27170604343120386],[123,-45,66,-0.25175074744350856],[123,-45,67,-0.33583375726444],[123,-45,68,-0.3879429140389391],[123,-45,69,-0.37816779795198396],[123,-45,70,-0.369452605965872],[123,-45,71,-0.35904491678609013],[123,-45,72,-0.34533277505350973],[123,-45,73,-0.3353646387446303],[123,-45,74,-0.31866243918621484],[123,-45,75,-0.30430360258029393],[123,-45,76,-0.29925121410886235],[123,-45,77,-0.29357705933726674],[123,-45,78,-0.2917946624308967],[123,-45,79,-0.2856960097344777],[123,-44,64,-0.1440048900384352],[123,-44,65,-0.13444178474753798],[123,-44,66,-0.10657354385634987],[123,-44,67,-0.2806923379023414],[123,-44,68,-0.4118676000214096],[123,-44,69,-0.40571012943627766],[123,-44,70,-0.4011241383759589],[123,-44,71,-0.39279384460832995],[123,-44,72,-0.3818880350625651],[123,-44,73,-0.3734212222557578],[123,-44,74,-0.357299932710286],[123,-44,75,-0.34627848984646353],[123,-44,76,-0.33926653791808603],[123,-44,77,-0.3330864273410724],[123,-44,78,-0.33110139681707157],[123,-44,79,-0.32294238196609076],[123,-43,64,-0.035131806247342245],[123,-43,65,-0.04297326621570269],[123,-43,66,-0.02033243969648446],[123,-43,67,-0.1895458142259276],[123,-43,68,-0.34762205700030635],[123,-43,69,-0.39499542617439076],[123,-43,70,-0.38985692701327046],[123,-43,71,-0.38243497610868943],[123,-43,72,-0.3751592213105105],[123,-43,73,-0.3664058004467481],[123,-43,74,-0.35261211774165957],[123,-43,75,-0.3409695308431863],[123,-43,76,-0.3331003792177166],[123,-43,77,-0.3264704622868366],[123,-43,78,-0.32904271724193246],[123,-43,79,-0.323076083331836],[123,-42,64,-0.01937893953810882],[123,-42,65,-0.01836623748200461],[123,-42,66,-0.012190762914239706],[123,-42,67,-0.16832260203285873],[123,-42,68,-0.31130895494415806],[123,-42,69,-0.38930474972091295],[123,-42,70,-0.38488094173139453],[123,-42,71,-0.37835670615896827],[123,-42,72,-0.3720277895353053],[123,-42,73,-0.36482818947555257],[123,-42,74,-0.349728119999859],[123,-42,75,-0.3367486338105982],[123,-42,76,-0.3292567332889751],[123,-42,77,-0.32563136426583017],[123,-42,78,-0.32740623385636286],[123,-42,79,-0.3222629847356557],[123,-41,64,0.055897413126468065],[123,-41,65,0.052902130618878496],[123,-41,66,0.09623990557086559],[123,-41,67,-0.05461291710305527],[123,-41,68,-0.19638617802845956],[123,-41,69,-0.29868885960187863],[123,-41,70,-0.38778020875334046],[123,-41,71,-0.3780668762872984],[123,-41,72,-0.3726736933463061],[123,-41,73,-0.36277923440990434],[123,-41,74,-0.3489697839602498],[123,-41,75,-0.33797265432190715],[123,-41,76,-0.33128328384701633],[123,-41,77,-0.3247279511776297],[123,-41,78,-0.3254805954642451],[123,-41,79,-0.31907173344301926],[123,-40,64,0.13608022821620958],[123,-40,65,0.10475635080827855],[123,-40,66,0.13495759843810695],[123,-40,67,-0.024153238995286874],[123,-40,68,-0.13933059578619267],[123,-40,69,-0.2703563537481495],[123,-40,70,-0.3866035625678339],[123,-40,71,-0.37873858664227916],[123,-40,72,-0.3713954767893995],[123,-40,73,-0.3599549835014187],[123,-40,74,-0.34792592108345244],[123,-40,75,-0.337353421880785],[123,-40,76,-0.3310146319069331],[123,-40,77,-0.3244061446090635],[123,-40,78,-0.3227707157744304],[123,-40,79,-0.3170177890840458],[123,-39,64,0.13732698420417883],[123,-39,65,0.1387847413917858],[123,-39,66,0.14451579527654707],[123,-39,67,-0.010652917035551102],[123,-39,68,-0.1069919210587218],[123,-39,69,-0.27828865283950693],[123,-39,70,-0.38438034688878575],[123,-39,71,-0.3754374582040121],[123,-39,72,-0.36769173814170547],[123,-39,73,-0.356728340642842],[123,-39,74,-0.3461135872175426],[123,-39,75,-0.33411463991036705],[123,-39,76,-0.328343916541196],[123,-39,77,-0.321916537050306],[123,-39,78,-0.31948518075804155],[123,-39,79,-0.3152181413240693],[123,-38,64,0.1468857131629278],[123,-38,65,0.1480518999082545],[123,-38,66,0.15469921168908973],[123,-38,67,-0.08795211504846556],[123,-38,68,-0.2142685402682157],[123,-38,69,-0.3627719955901946],[123,-38,70,-0.38109128908747597],[123,-38,71,-0.37391860937682475],[123,-38,72,-0.3641200239233636],[123,-38,73,-0.35441959803899903],[123,-38,74,-0.3451260244522884],[123,-38,75,-0.332405925988255],[123,-38,76,-0.3282942556852918],[123,-38,77,-0.32193326515658915],[123,-38,78,-0.31775682115984616],[123,-38,79,-0.31223509463642124],[123,-37,64,0.1474520996814323],[123,-37,65,0.14913399565229093],[123,-37,66,0.15299128999898956],[123,-37,67,-0.016833315383415204],[123,-37,68,-0.1720429885532734],[123,-37,69,-0.3179979618429368],[123,-37,70,-0.3651378603710769],[123,-37,71,-0.3378315149958281],[123,-37,72,-0.34583130797530365],[123,-37,73,-0.3579930519157544],[123,-37,74,-0.34655307077925895],[123,-37,75,-0.33638121358232564],[123,-37,76,-0.3313918435904197],[123,-37,77,-0.3238692464341697],[123,-37,78,-0.3194005854732155],[123,-37,79,-0.31366295512257947],[123,-36,64,0.136877080588257],[123,-36,65,0.13832306870839384],[123,-36,66,0.14220345422693134],[123,-36,67,0.004005912568854575],[123,-36,68,-0.14738001699769554],[123,-36,69,-0.28778803876242576],[123,-36,70,-0.3472519038334832],[123,-36,71,-0.31872153857779345],[123,-36,72,-0.3232682224080544],[123,-36,73,-0.3487836653565222],[123,-36,74,-0.3358132061572635],[123,-36,75,-0.32827203349589124],[123,-36,76,-0.3241914996502034],[123,-36,77,-0.3140601630431779],[123,-36,78,-0.30992581995442586],[123,-36,79,-0.3027862437875077],[123,-35,64,0.1386243170729285],[123,-35,65,0.13968922909197407],[123,-35,66,0.0972614595683885],[123,-35,67,-0.21599121614674974],[123,-35,68,-0.37791157266801534],[123,-35,69,-0.3722436295253495],[123,-35,70,-0.369298839355823],[123,-35,71,-0.36565804174390804],[123,-35,72,-0.35946745163924965],[123,-35,73,-0.34932086379722244],[123,-35,74,-0.33770177782410116],[123,-35,75,-0.32976812991838395],[123,-35,76,-0.31978585808639015],[123,-35,77,-0.3109991347470852],[123,-35,78,-0.30456065793127163],[123,-35,79,-0.29400268702022664],[123,-34,64,0.1307021942151118],[123,-34,65,0.13237660705437843],[123,-34,66,0.12317224651065795],[123,-34,67,-0.18546866381311475],[123,-34,68,-0.34640268045586464],[123,-34,69,-0.3679500231886035],[123,-34,70,-0.36544494508536385],[123,-34,71,-0.3617312668533024],[123,-34,72,-0.35762470353652764],[123,-34,73,-0.348358272837187],[123,-34,74,-0.3377832365287332],[123,-34,75,-0.32710715452701605],[123,-34,76,-0.3150408214704894],[123,-34,77,-0.3090621624385462],[123,-34,78,-0.30497359141897706],[123,-34,79,-0.29166480513745774],[123,-33,64,0.1216073705818593],[123,-33,65,0.12127014440354239],[123,-33,66,0.1212206404811198],[123,-33,67,-0.13682753369520434],[123,-33,68,-0.281096454748776],[123,-33,69,-0.31924364189977483],[123,-33,70,-0.3227569631774303],[123,-33,71,-0.32160618745777003],[123,-33,72,-0.32398675434976815],[123,-33,73,-0.31816250022308185],[123,-33,74,-0.31329993977678056],[123,-33,75,-0.3049745283774107],[123,-33,76,-0.2990961209562935],[123,-33,77,-0.2964494256776333],[123,-33,78,-0.29705978929639243],[123,-33,79,-0.2895273575114235],[123,-32,64,0.12687893730077382],[123,-32,65,0.12634434724548654],[123,-32,66,0.128275816929029],[123,-32,67,-0.12593210950742578],[123,-32,68,-0.2650708163918308],[123,-32,69,-0.3152492041704022],[123,-32,70,-0.3178198930608604],[123,-32,71,-0.3169722292223373],[123,-32,72,-0.3171926280572577],[123,-32,73,-0.31472011611405276],[123,-32,74,-0.3082411250682207],[123,-32,75,-0.30243581088560756],[123,-32,76,-0.29695937219067475],[123,-32,77,-0.2964452852059153],[123,-32,78,-0.29662782038420576],[123,-32,79,-0.28530240399091555],[123,-31,64,0.13175788377495845],[123,-31,65,0.13100831825250076],[123,-31,66,0.13344641837983356],[123,-31,67,-0.012819015567361147],[123,-31,68,-0.15517367198805873],[123,-31,69,-0.30880598801121867],[123,-31,70,-0.31258277191821293],[123,-31,71,-0.3127244638537469],[123,-31,72,-0.3136337168392626],[123,-31,73,-0.3104572911456637],[123,-31,74,-0.3040743971634758],[123,-31,75,-0.30012394304546536],[123,-31,76,-0.29712005272998127],[123,-31,77,-0.29606706333690513],[123,-31,78,-0.29243350122475037],[123,-31,79,-0.280823969099522],[123,-30,64,0.1467723547757277],[123,-30,65,0.14356997901234847],[123,-30,66,0.14726360558293175],[123,-30,67,0.026831951678188137],[123,-30,68,-0.13405290105903972],[123,-30,69,-0.306704405020645],[123,-30,70,-0.3085694421556576],[123,-30,71,-0.30789732919598156],[123,-30,72,-0.31047134309858576],[123,-30,73,-0.3087072413667165],[123,-30,74,-0.30272082768698805],[123,-30,75,-0.29887651315757247],[123,-30,76,-0.2956741172260401],[123,-30,77,-0.2929202501180707],[123,-30,78,-0.28881961275165524],[123,-30,79,-0.2752478984705589],[123,-29,64,0.16035595757314136],[123,-29,65,0.15893460038973395],[123,-29,66,0.1604409180695866],[123,-29,67,0.12776692332374578],[123,-29,68,-0.07124861397049653],[123,-29,69,-0.24492046488080077],[123,-29,70,-0.31161356608927254],[123,-29,71,-0.3101357567483945],[123,-29,72,-0.31330313957508715],[123,-29,73,-0.3111317191267283],[123,-29,74,-0.305970291463973],[123,-29,75,-0.30150300098368654],[123,-29,76,-0.2977696317903643],[123,-29,77,-0.29378999317681986],[123,-29,78,-0.28740704331046285],[123,-29,79,-0.27619384624047616],[123,-28,64,0.15434562309961392],[123,-28,65,0.15194508227394202],[123,-28,66,0.1514814976388919],[123,-28,67,0.14653676112034802],[123,-28,68,-0.04772757306309594],[123,-28,69,-0.22146282884430346],[123,-28,70,-0.30293707141047127],[123,-28,71,-0.3026217206888607],[123,-28,72,-0.30249904398466804],[123,-28,73,-0.3012755537800568],[123,-28,74,-0.29747686674562773],[123,-28,75,-0.29206649123507933],[123,-28,76,-0.28854491508080515],[123,-28,77,-0.2825108419693289],[123,-28,78,-0.2753408932971102],[123,-28,79,-0.26638339671441214],[123,-27,64,0.1581467964597291],[123,-27,65,0.15321254268170587],[123,-27,66,0.15253371487749234],[123,-27,67,0.15706141865419243],[123,-27,68,0.13258256216434583],[123,-27,69,-0.04403152226533219],[123,-27,70,-0.2051924436446364],[123,-27,71,-0.2838483353750665],[123,-27,72,-0.2852688623555329],[123,-27,73,-0.2846256527135423],[123,-27,74,-0.28212268886317715],[123,-27,75,-0.2791562467428029],[123,-27,76,-0.2776479977990337],[123,-27,77,-0.2708918234816236],[123,-27,78,-0.26769191306871243],[123,-27,79,-0.2637551205061416],[123,-26,64,0.2102155312548685],[123,-26,65,0.20627013047211357],[123,-26,66,0.20518855573364098],[123,-26,67,0.20757476362566163],[123,-26,68,0.1894420013389238],[123,-26,69,-0.009966166321360881],[123,-26,70,-0.18491921928968816],[123,-26,71,-0.27950321157713054],[123,-26,72,-0.2796004271487359],[123,-26,73,-0.2800520347644367],[123,-26,74,-0.2773957143460546],[123,-26,75,-0.2761605736935736],[123,-26,76,-0.2739497931501167],[123,-26,77,-0.2702514373430586],[123,-26,78,-0.26332710663144543],[123,-26,79,-0.2630225162049862],[123,-25,64,0.21162401893758176],[123,-25,65,0.20770420485670943],[123,-25,66,0.2060999022544652],[123,-25,67,0.20570067240790782],[123,-25,68,0.20678623101990198],[123,-25,69,0.003310233488485803],[123,-25,70,-0.16066072691606612],[123,-25,71,-0.2783653052725735],[123,-25,72,-0.2777961967392597],[123,-25,73,-0.2771266132256476],[123,-25,74,-0.2758375647496248],[123,-25,75,-0.2752513441002574],[123,-25,76,-0.27250523092263135],[123,-25,77,-0.26949001083171625],[123,-25,78,-0.26184567151963617],[123,-25,79,-0.26072350956776913],[123,-24,64,0.21654246038919298],[123,-24,65,0.21695512446532103],[123,-24,66,0.214278349841249],[123,-24,67,0.20776921716763003],[123,-24,68,0.208717925097128],[123,-24,69,0.049396942208111194],[123,-24,70,-0.13758131618740096],[123,-24,71,-0.2755198926194569],[123,-24,72,-0.2730351722129111],[123,-24,73,-0.2736830602430512],[123,-24,74,-0.27466468616172524],[123,-24,75,-0.272967738097336],[123,-24,76,-0.27166569303810256],[123,-24,77,-0.2695163212463263],[123,-24,78,-0.26248933938230323],[123,-24,79,-0.2593794140212568],[123,-23,64,0.21950256666300838],[123,-23,65,0.22101231799208865],[123,-23,66,0.21720771303218336],[123,-23,67,0.21025504539104173],[123,-23,68,0.19868485362810834],[123,-23,69,0.04982096169749767],[123,-23,70,-0.14412709689752254],[123,-23,71,-0.27401104076351745],[123,-23,72,-0.2749734272856116],[123,-23,73,-0.2745538967936339],[123,-23,74,-0.2739918175150204],[123,-23,75,-0.2747484049304716],[123,-23,76,-0.2756300315102405],[123,-23,77,-0.2744695441746992],[123,-23,78,-0.271423195162913],[123,-23,79,-0.2703910115179739],[123,-22,64,0.22932148390970009],[123,-22,65,0.23126703862794493],[123,-22,66,0.22745343159083026],[123,-22,67,0.21986868674159427],[123,-22,68,0.21649840604203938],[123,-22,69,0.09800462850237401],[123,-22,70,-0.11963296611065113],[123,-22,71,-0.27082962127271915],[123,-22,72,-0.2721563229829498],[123,-22,73,-0.2700220962904072],[123,-22,74,-0.27078207124184156],[123,-22,75,-0.27159180056759163],[123,-22,76,-0.2717183236958828],[123,-22,77,-0.2725558688964861],[123,-22,78,-0.27194862114278684],[123,-22,79,-0.2725615069497348],[123,-21,64,0.2275893110683056],[123,-21,65,0.22977121890536945],[123,-21,66,0.22763211235096417],[123,-21,67,0.2202328982052112],[123,-21,68,0.2120900837881783],[123,-21,69,0.18907540643125814],[123,-21,70,-0.018019553176599756],[123,-21,71,-0.18853569862424474],[123,-21,72,-0.2721429690425561],[123,-21,73,-0.2699045967320298],[123,-21,74,-0.27197358991989706],[123,-21,75,-0.2736966020516517],[123,-21,76,-0.2732788049972347],[123,-21,77,-0.2745337699639937],[123,-21,78,-0.27696730148030824],[123,-21,79,-0.2754705294282922],[123,-20,64,0.21696733477143648],[123,-20,65,0.21905866399141122],[123,-20,66,0.21792742950974656],[123,-20,67,0.21031627394705305],[123,-20,68,0.20311184570224017],[123,-20,69,0.18043844971325512],[123,-20,70,-8.186549230775886E-4],[123,-20,71,-0.15765548890323383],[123,-20,72,-0.26629116816509424],[123,-20,73,-0.2641173489061678],[123,-20,74,-0.2657420330727293],[123,-20,75,-0.2686023041614038],[123,-20,76,-0.27000027167593466],[123,-20,77,-0.26925994344530135],[123,-20,78,-0.27259194338998577],[123,-20,79,-0.2713507843670907],[123,-19,64,0.21459636830905626],[123,-19,65,0.2175261816998964],[123,-19,66,0.2157969929450211],[123,-19,67,0.20962644787995457],[123,-19,68,0.20494379803649956],[123,-19,69,0.20362365275874073],[123,-19,70,0.11401741975213597],[123,-19,71,-0.01973557393317532],[123,-19,72,-0.1358451303459542],[123,-19,73,-0.2441691827337842],[123,-19,74,-0.2598640520850517],[123,-19,75,-0.26010758405093054],[123,-19,76,-0.2619435798805266],[123,-19,77,-0.26283559914996263],[123,-19,78,-0.2643872978362591],[123,-19,79,-0.26104789496971925],[123,-18,64,0.2030046447791913],[123,-18,65,0.207588333305781],[123,-18,66,0.20551078747715557],[123,-18,67,0.19908818614549698],[123,-18,68,0.19577048348882692],[123,-18,69,0.1948895954790198],[123,-18,70,0.11522880489011367],[123,-18,71,0.006129546845974776],[123,-18,72,-0.1017917968188635],[123,-18,73,-0.2317108628119623],[123,-18,74,-0.2541552999282974],[123,-18,75,-0.25620745545642776],[123,-18,76,-0.2578694763644631],[123,-18,77,-0.26016714284114795],[123,-18,78,-0.26271323155027576],[123,-18,79,-0.2584330157190798],[123,-17,64,0.203897127550271],[123,-17,65,0.20714398845851317],[123,-17,66,0.20498633805788155],[123,-17,67,0.20179308230383167],[123,-17,68,0.20231176895821815],[123,-17,69,0.20296633441639386],[123,-17,70,0.13569958267965748],[123,-17,71,0.03759892389455258],[123,-17,72,-0.10633976696094324],[123,-17,73,-0.2074206394989098],[123,-17,74,-0.24970174700589423],[123,-17,75,-0.25291213689596115],[123,-17,76,-0.2559759973967165],[123,-17,77,-0.25569804812890556],[123,-17,78,-0.2551505409883203],[123,-17,79,-0.2548391259159858],[123,-16,64,0.20983817098854354],[123,-16,65,0.21035572727600935],[123,-16,66,0.21094123031409773],[123,-16,67,0.20852042960775216],[123,-16,68,0.20694128361667968],[123,-16,69,0.20806620244205584],[123,-16,70,0.21360687602012454],[123,-16,71,0.16100131626743683],[123,-16,72,-5.583431802045069E-4],[123,-16,73,-0.07940431837507561],[123,-16,74,-0.24510905667028404],[123,-16,75,-0.24750843229528152],[123,-16,76,-0.2519376878504217],[123,-16,77,-0.25245777000968606],[123,-16,78,-0.24931616998890552],[123,-16,79,-0.24914820244500316],[123,-15,64,0.2115510788590851],[123,-15,65,0.21089063355295548],[123,-15,66,0.21240391355307026],[123,-15,67,0.20994111286591627],[123,-15,68,0.20969258056914353],[123,-15,69,0.20881748911540676],[123,-15,70,0.21565883344478642],[123,-15,71,0.19162109740547184],[123,-15,72,0.030117207923769707],[123,-15,73,-0.04708192730993063],[123,-15,74,-0.24371389278521766],[123,-15,75,-0.24670580643003182],[123,-15,76,-0.24900748867543415],[123,-15,77,-0.2501659750000581],[123,-15,78,-0.24675456331193646],[123,-15,79,-0.24569136985594311],[123,-14,64,0.10353634227582476],[123,-14,65,0.10497637301004312],[123,-14,66,0.10690471319175558],[123,-14,67,0.10656804814920767],[123,-14,68,0.10494506083052357],[123,-14,69,0.10478504273252975],[123,-14,70,0.11058457972563508],[123,-14,71,0.09686937734813955],[123,-14,72,-0.0033666932526562887],[123,-14,73,-0.057186979828715984],[123,-14,74,-0.24359978516746877],[123,-14,75,-0.24657320663697058],[123,-14,76,-0.24575312875544825],[123,-14,77,-0.24749086396754283],[123,-14,78,-0.24454795378707195],[123,-14,79,-0.24074787093484248],[123,-13,64,0.10309277136640642],[123,-13,65,0.10368966535812901],[123,-13,66,0.10717371586430727],[123,-13,67,0.10885102916629426],[123,-13,68,0.1077017183407788],[123,-13,69,0.10645567581863993],[123,-13,70,0.11009598715774785],[123,-13,71,0.11620638454102267],[123,-13,72,0.08424944492761355],[123,-13,73,-0.0017569722598154147],[123,-13,74,-0.1818432046891562],[123,-13,75,-0.25056843582174726],[123,-13,76,-0.2478180072323807],[123,-13,77,-0.24746424675441359],[123,-13,78,-0.2454533371272848],[123,-13,79,-0.24176146605419674],[123,-12,64,0.09255282658921235],[123,-12,65,0.09127603204578777],[123,-12,66,0.09564426003294176],[123,-12,67,0.09928838333172571],[123,-12,68,0.097907350684272],[123,-12,69,0.097392608651415],[123,-12,70,0.10202948098339952],[123,-12,71,0.1084356284126056],[123,-12,72,0.07519970202618259],[123,-12,73,-0.021923283388004672],[123,-12,74,-0.16668481466577553],[123,-12,75,-0.24540848764232498],[123,-12,76,-0.24119648965513593],[123,-12,77,-0.2426524162250996],[123,-12,78,-0.2411903676147084],[123,-12,79,-0.2360077912348995],[123,-11,64,0.08835625808730807],[123,-11,65,0.08695961608899892],[123,-11,66,0.08960924305255341],[123,-11,67,0.09374693295142472],[123,-11,68,0.09406782280124888],[123,-11,69,0.09593056444813727],[123,-11,70,0.09964570233376552],[123,-11,71,0.10789685654883124],[123,-11,72,0.09327260699701045],[123,-11,73,-0.03263015253584778],[123,-11,74,-0.1607908640844748],[123,-11,75,-0.2296800161201343],[123,-11,76,-0.22570454492362685],[123,-11,77,-0.22635703092728796],[123,-11,78,-0.22532051224020413],[123,-11,79,-0.21872560810435454],[123,-10,64,0.0790197998826842],[123,-10,65,0.07984260591624276],[123,-10,66,0.0802410452962439],[123,-10,67,0.08263329137866549],[123,-10,68,0.08363367428182024],[123,-10,69,0.0849585766060457],[123,-10,70,0.08986382598266379],[123,-10,71,0.0982819813792945],[123,-10,72,0.07981177839940218],[123,-10,73,-0.04521560902756741],[123,-10,74,-0.1585728493458431],[123,-10,75,-0.22610102397732343],[123,-10,76,-0.2250737149317849],[123,-10,77,-0.22368587159632627],[123,-10,78,-0.22313098576362744],[123,-10,79,-0.21522457827724453],[123,-9,64,0.08512566357396807],[123,-9,65,0.08529867833065839],[123,-9,66,0.08675547604329042],[123,-9,67,0.08606395415802329],[123,-9,68,0.08880664639151625],[123,-9,69,0.09069827780450779],[123,-9,70,0.09528600591232486],[123,-9,71,0.1040170642943853],[123,-9,72,0.0835880029278746],[123,-9,73,-0.05585526003444094],[123,-9,74,-0.15357169668302562],[123,-9,75,-0.22149839441251606],[123,-9,76,-0.22250139053438017],[123,-9,77,-0.22252472121034722],[123,-9,78,-0.22057388385969628],[123,-9,79,-0.21276965040014634],[123,-8,64,0.08568016339459716],[123,-8,65,0.08568562937768343],[123,-8,66,0.08739889846859239],[123,-8,67,0.08480798909850329],[123,-8,68,0.08860593425253357],[123,-8,69,0.09257281503853823],[123,-8,70,0.09783932487885869],[123,-8,71,0.10823955411042033],[123,-8,72,0.01248099799492125],[123,-8,73,-0.123632885186414],[123,-8,74,-0.20547599396019228],[123,-8,75,-0.21418334795117158],[123,-8,76,-0.2188547614340875],[123,-8,77,-0.2188508141856676],[123,-8,78,-0.21474879496884278],[123,-8,79,-0.20876475246996742],[123,-7,64,0.0837143154931114],[123,-7,65,0.08339990128994787],[123,-7,66,0.08444881156909662],[123,-7,67,0.08261922443032753],[123,-7,68,0.08565645431134647],[123,-7,69,0.09069466616568009],[123,-7,70,0.09713315620680729],[123,-7,71,0.10678139855450271],[123,-7,72,0.00899294223517269],[123,-7,73,-0.1297851647439345],[123,-7,74,-0.2040520629868257],[123,-7,75,-0.2077294559627223],[123,-7,76,-0.21458019758650043],[123,-7,77,-0.21463425571398437],[123,-7,78,-0.2097995486304183],[123,-7,79,-0.2033136665778108],[123,-6,64,0.0811914359399551],[123,-6,65,0.07823971260863873],[123,-6,66,0.07916730010731575],[123,-6,67,0.07995533407741859],[123,-6,68,0.08390155185661524],[123,-6,69,0.089158763689255],[123,-6,70,0.09369193077219197],[123,-6,71,0.1039213559919144],[123,-6,72,0.020044015085542904],[123,-6,73,-0.1252155969396115],[123,-6,74,-0.1992503155972035],[123,-6,75,-0.20330312957889962],[123,-6,76,-0.2097550671572192],[123,-6,77,-0.21007959867427572],[123,-6,78,-0.20552644028231096],[123,-6,79,-0.19792608219948687],[123,-5,64,0.07518249134781087],[123,-5,65,0.07579222724907778],[123,-5,66,0.07579950020341272],[123,-5,67,0.07813866680967527],[123,-5,68,0.08348042819545762],[123,-5,69,0.08725831213953991],[123,-5,70,0.09180796840500591],[123,-5,71,0.10191396263376568],[123,-5,72,0.11467839955200246],[123,-5,73,0.07664896593668014],[123,-5,74,-0.007395653275254016],[123,-5,75,-0.1513259390482471],[123,-5,76,-0.21203078852668783],[123,-5,77,-0.21180701476164235],[123,-5,78,-0.2075750401145058],[123,-5,79,-0.19711058261902087],[123,-4,64,0.06048618700679647],[123,-4,65,0.06296626977831037],[123,-4,66,0.06409692892364502],[123,-4,67,0.06662815015479231],[123,-4,68,0.0728394604745523],[123,-4,69,0.0752008490884929],[123,-4,70,0.08040156731248783],[123,-4,71,0.09288805566174582],[123,-4,72,0.1062009361069107],[123,-4,73,0.05444249598217435],[123,-4,74,-0.01043067158813829],[123,-4,75,-0.14392984877284917],[123,-4,76,-0.20971541710331565],[123,-4,77,-0.20780437895649093],[123,-4,78,-0.205348328875275],[123,-4,79,-0.19421031183237947],[123,-3,64,0.04999069372981423],[123,-3,65,0.05047219991891756],[123,-3,66,0.05638004600151346],[123,-3,67,0.05798339883245213],[123,-3,68,0.06378017517392337],[123,-3,69,0.06861927386764892],[123,-3,70,0.07820744835894859],[123,-3,71,0.09183896367797603],[123,-3,72,0.10833751521153809],[123,-3,73,0.09257407556485686],[123,-3,74,0.023230759768181675],[123,-3,75,-0.12846538852320782],[123,-3,76,-0.20554628457174853],[123,-3,77,-0.20412125985289575],[123,-3,78,-0.20262780752434473],[123,-3,79,-0.19077463617837404],[123,-2,64,0.042171453725227175],[123,-2,65,0.04345119298855847],[123,-2,66,0.04881165792737589],[123,-2,67,0.051098902434630764],[123,-2,68,0.05729538201333283],[123,-2,69,0.06584841939972058],[123,-2,70,0.07395554582082658],[123,-2,71,0.08962753408827848],[123,-2,72,0.10537429080102088],[123,-2,73,0.09360112402531584],[123,-2,74,0.008153050264176176],[123,-2,75,-0.13953476603135861],[123,-2,76,-0.20424846799420202],[123,-2,77,-0.20150456306145476],[123,-2,78,-0.19721283018297564],[123,-2,79,-0.1864135498392352],[123,-1,64,0.04122929393927059],[123,-1,65,0.0412164601087287],[123,-1,66,0.047877124682917056],[123,-1,67,0.052483213268375385],[123,-1,68,0.057621401004231854],[123,-1,69,0.067037433993442],[123,-1,70,0.07754112723458019],[123,-1,71,0.090404374182994],[123,-1,72,0.10513162147335549],[123,-1,73,0.1220670207399814],[123,-1,74,0.0278764458109009],[123,-1,75,-0.14501124448018918],[123,-1,76,-0.20175777652544516],[123,-1,77,-0.19727929598684096],[123,-1,78,-0.192955926318812],[123,-1,79,-0.1803488440075035],[123,0,64,-0.029107606216823567],[123,0,65,-0.028695471020720842],[123,0,66,-0.02719822417813378],[123,0,67,-0.03344677433560375],[123,0,68,-0.037786865171908574],[123,0,69,-0.04729567606052426],[123,0,70,-0.052278176954106345],[123,0,71,-0.05896261102609554],[123,0,72,-0.06237014125792199],[123,0,73,-0.06925047566227178],[123,0,74,-0.07634457922222761],[123,0,75,-0.08844784692841134],[123,0,76,-0.0967284468903841],[123,0,77,-0.09202127068623568],[123,0,78,-0.08993441787624802],[123,0,79,-0.08338082003566154],[123,1,64,-0.02976285771436593],[123,1,65,-0.027947146856569433],[123,1,66,-0.027378298089846542],[123,1,67,-0.03263259021140455],[123,1,68,-0.03989222046839115],[123,1,69,-0.04720874619906111],[123,1,70,-0.0513775401330714],[123,1,71,-0.057136134486871146],[123,1,72,-0.06258728336898917],[123,1,73,-0.07032199602875838],[123,1,74,-0.07575851365000322],[123,1,75,-0.08878573659967465],[123,1,76,-0.09575234216982001],[123,1,77,-0.09292000629387269],[123,1,78,-0.08944691637179199],[123,1,79,-0.08420440064743487],[123,2,64,-0.03042645097180044],[123,2,65,-0.028360000854014827],[123,2,66,-0.02903190619973145],[123,2,67,-0.034022730635315274],[123,2,68,-0.0403008954424164],[123,2,69,-0.046054896882216964],[123,2,70,-0.050095189292755776],[123,2,71,-0.05599953806982544],[123,2,72,-0.06342019379244743],[123,2,73,-0.07207497549761378],[123,2,74,-0.07899448070700141],[123,2,75,-0.08849201718406322],[123,2,76,-0.09390096012465399],[123,2,77,-0.09155177590466827],[123,2,78,-0.0870899812228113],[123,2,79,-0.08186361928332227],[123,3,64,-0.030959557625758943],[123,3,65,-0.02873128479521392],[123,3,66,-0.031561979274817964],[123,3,67,-0.03417841837805735],[123,3,68,-0.037434454529155434],[123,3,69,-0.044406113315647006],[123,3,70,-0.047499934104122093],[123,3,71,-0.0588045917619472],[123,3,72,-0.06511029131050733],[123,3,73,-0.07299476557613924],[123,3,74,-0.0800082492422598],[123,3,75,-0.08771362743778124],[123,3,76,-0.09127502270878443],[123,3,77,-0.09161672740253207],[123,3,78,-0.08486574362084812],[123,3,79,-0.07979714855984389],[123,4,64,-0.03243036137284264],[123,4,65,-0.029934307321639708],[123,4,66,-0.032785079369389125],[123,4,67,-0.0326996983824889],[123,4,68,-0.03716807332261532],[123,4,69,-0.04316876733242704],[123,4,70,-0.05058041089808549],[123,4,71,-0.05798964420314856],[123,4,72,-0.06498739453988772],[123,4,73,-0.07388064428482888],[123,4,74,-0.08048040208266613],[123,4,75,-0.08910373213467909],[123,4,76,-0.09354412782822658],[123,4,77,-0.0897052396432183],[123,4,78,-0.08400977117036974],[123,4,79,-0.0780838626351523],[123,5,64,-0.03201039183921284],[123,5,65,-0.03160711970920291],[123,5,66,-0.03323074734027193],[123,5,67,-0.03249820611985321],[123,5,68,-0.03904360711833364],[123,5,69,-0.04437483584815742],[123,5,70,-0.052207395132649326],[123,5,71,-0.058305699149726914],[123,5,72,-0.06498132358767636],[123,5,73,-0.07157925299589425],[123,5,74,-0.07991220773061172],[123,5,75,-0.08711679479445553],[123,5,76,-0.09187791087829154],[123,5,77,-0.08824149987911399],[123,5,78,-0.08145320401064558],[123,5,79,-0.07532280268972999],[123,6,64,-0.029455922486561065],[123,6,65,-0.030757214421127],[123,6,66,-0.0337777711968027],[123,6,67,-0.036906908655761766],[123,6,68,-0.042827038339131],[123,6,69,-0.04695522293106924],[123,6,70,-0.05122837417162841],[123,6,71,-0.058554529597914295],[123,6,72,-0.06533116027984763],[123,6,73,-0.07112518571987159],[123,6,74,-0.08067660710437463],[123,6,75,-0.08557683581831327],[123,6,76,-0.08935647787117443],[123,6,77,-0.0847102355957837],[123,6,78,-0.08076930645812375],[123,6,79,-0.07495039204243668],[123,7,64,-0.02515200934538772],[123,7,65,-0.027448825288865913],[123,7,66,-0.0323017678542073],[123,7,67,-0.03918573329265718],[123,7,68,-0.04317533885311181],[123,7,69,-0.04746042096256471],[123,7,70,-0.05199560979048734],[123,7,71,-0.05778742099124631],[123,7,72,-0.06600748631748661],[123,7,73,-0.06988438247566159],[123,7,74,-0.07938378576293607],[123,7,75,-0.0818322283565763],[123,7,76,-0.08559414214177322],[123,7,77,-0.0816057742976523],[123,7,78,-0.07851701168275327],[123,7,79,-0.0751282532537303],[123,8,64,-0.017926448255634914],[123,8,65,-0.02214444777746466],[123,8,66,-0.026858829597143363],[123,8,67,-0.03365392905882231],[123,8,68,-0.037485470025981904],[123,8,69,-0.04210709200513191],[123,8,70,-0.044585670449945214],[123,8,71,-0.04961066357476625],[123,8,72,-0.05444318199923806],[123,8,73,-0.059022671631966714],[123,8,74,-0.06546421666142892],[123,8,75,-0.06863524662553273],[123,8,76,-0.07197374838296788],[123,8,77,-0.06972199537774915],[123,8,78,-0.0665650194666729],[123,8,79,-0.06474038317455369],[123,9,64,-0.013406223431915887],[123,9,65,-0.02158381007264254],[123,9,66,-0.03142723251815274],[123,9,67,-0.039949891091561884],[123,9,68,-0.04619391836089298],[123,9,69,-0.05100215271722386],[123,9,70,-0.05292204643238688],[123,9,71,-0.056193148546542684],[123,9,72,-0.05796184793581062],[123,9,73,-0.06303820974428904],[123,9,74,-0.06950515787945523],[123,9,75,-0.07170191614141383],[123,9,76,-0.07280603921638423],[123,9,77,-0.06809513099585567],[123,9,78,-0.06478713290820116],[123,9,79,-0.06308677332638502],[123,10,64,-0.011129590671795003],[123,10,65,-0.020188056935354137],[123,10,66,-0.032618148197183616],[123,10,67,-0.04087893978550325],[123,10,68,-0.047561316112491314],[123,10,69,-0.05029123690920902],[123,10,70,-0.05148936786144981],[123,10,71,-0.05414956047665305],[123,10,72,-0.057253552256397416],[123,10,73,-0.06354892285411987],[123,10,74,-0.06773508130146383],[123,10,75,-0.07076219019912514],[123,10,76,-0.0685755247503424],[123,10,77,-0.06887412456635167],[123,10,78,-0.06359154928991267],[123,10,79,-0.06538039794409393],[123,11,64,-0.010534791864924536],[123,11,65,-0.020736387014422375],[123,11,66,-0.03269544388967688],[123,11,67,-0.039127750389837485],[123,11,68,-0.046629201724895264],[123,11,69,-0.04973258404255845],[123,11,70,-0.05336846451447018],[123,11,71,-0.05423548987879684],[123,11,72,-0.05798672863534869],[123,11,73,-0.06271836557662183],[123,11,74,-0.06603060775534336],[123,11,75,-0.068482235733081],[123,11,76,-0.06706928418781816],[123,11,77,-0.06640600470705789],[123,11,78,-0.062017363468994335],[123,11,79,-0.06328649134860433],[123,12,64,-0.008062409729980374],[123,12,65,-0.016402814138917282],[123,12,66,-0.02912083910849586],[123,12,67,-0.03910749788085893],[123,12,68,-0.044323436864635024],[123,12,69,-0.05098290085000233],[123,12,70,-0.05558981860165357],[123,12,71,-0.05813902319670451],[123,12,72,-0.0598556763858297],[123,12,73,-0.06327113014308808],[123,12,74,-0.06417238312687482],[123,12,75,-0.06942630600440046],[123,12,76,-0.06664300007156637],[123,12,77,-0.06635032443942207],[123,12,78,-0.06302561987170222],[123,12,79,-0.06116613076166269],[123,13,64,-0.012258783515277621],[123,13,65,-0.013480238489131685],[123,13,66,-0.021117956282553668],[123,13,67,-0.030207893115913403],[123,13,68,-0.032372041677679625],[123,13,69,-0.03757231925568641],[123,13,70,-0.044778751484776974],[123,13,71,-0.048125931069255584],[123,13,72,-0.04774335107398073],[123,13,73,-0.049657179743523364],[123,13,74,-0.0530792629552905],[123,13,75,-0.056039484274881896],[123,13,76,-0.05515696145972833],[123,13,77,-0.05805251134448976],[123,13,78,-0.05945289063367648],[123,13,79,-0.061870450726074167],[123,14,64,-0.01113175237020475],[123,14,65,-0.014648256489947692],[123,14,66,-0.019575085076592835],[123,14,67,-0.029062160741766402],[123,14,68,-0.03070498452301501],[123,14,69,-0.03770402676147776],[123,14,70,-0.04391162490940245],[123,14,71,-0.04711709838551753],[123,14,72,-0.0453224082415518],[123,14,73,-0.04539784731178653],[123,14,74,-0.051605070623921445],[123,14,75,-0.05349058521737214],[123,14,76,-0.05237431480547318],[123,14,77,-0.05493881657637438],[123,14,78,-0.05806851816080129],[123,14,79,-0.05886677164443445],[123,15,64,-0.011976278333184848],[123,15,65,-0.017877645881825915],[123,15,66,-0.020875264041427255],[123,15,67,-0.02772619996849421],[123,15,68,-0.0332174477184187],[123,15,69,-0.035694612858192504],[123,15,70,-0.04128072810284952],[123,15,71,-0.04476077137068693],[123,15,72,-0.0436287415760202],[123,15,73,-0.044693194056206836],[123,15,74,-0.05149516528869291],[123,15,75,-0.05233287544867041],[123,15,76,-0.0495226627657471],[123,15,77,-0.05115145161230146],[123,15,78,-0.05568229970619967],[123,15,79,-0.058315424452103984],[123,16,64,-0.015920263715656857],[123,16,65,-0.01680048159883768],[123,16,66,-0.018675453755773924],[123,16,67,-0.02470703138824573],[123,16,68,-0.027686734829743292],[123,16,69,-0.02964936770624213],[123,16,70,-0.03413317165524554],[123,16,71,-0.03466903379033437],[123,16,72,-0.03641660755542256],[123,16,73,-0.036948924435271174],[123,16,74,-0.0411774331217013],[123,16,75,-0.043460410930504206],[123,16,76,-0.04257288391468618],[123,16,77,-0.040182810638699024],[123,16,78,-0.04402538477008103],[123,16,79,-0.04701447008468766],[123,17,64,-0.016734089570472815],[123,17,65,-0.015953234543426814],[123,17,66,-0.018768027425658973],[123,17,67,-0.022286140140037825],[123,17,68,-0.026489478710033987],[123,17,69,-0.028639741137197944],[123,17,70,-0.033585656938123654],[123,17,71,-0.03505622486745022],[123,17,72,-0.03814171066055415],[123,17,73,-0.03941986117941529],[123,17,74,-0.04421812044447028],[123,17,75,-0.04528464814790567],[123,17,76,-0.04310740626635244],[123,17,77,-0.041996013747596275],[123,17,78,-0.044911929294115485],[123,17,79,-0.04673372475766449],[123,18,64,-0.018218093648091904],[123,18,65,-0.016021150698385306],[123,18,66,-0.01950689954931445],[123,18,67,-0.021022886853689415],[123,18,68,-0.026379150066527607],[123,18,69,-0.029710325720589098],[123,18,70,-0.03357398116633714],[123,18,71,-0.03514324358765447],[123,18,72,-0.03974180188718843],[123,18,73,-0.0413686861033693],[123,18,74,-0.04622294914686177],[123,18,75,-0.047230719772853785],[123,18,76,-0.04405789444811434],[123,18,77,-0.041628029021963914],[123,18,78,-0.04633751753500927],[123,18,79,-0.04915123501585143],[123,19,64,-0.018173427121388697],[123,19,65,-0.01664100121051404],[123,19,66,-0.01963617488717162],[123,19,67,-0.021775657749842053],[123,19,68,-0.02526768123476192],[123,19,69,-0.027958671008328995],[123,19,70,-0.03317419221787296],[123,19,71,-0.036658798863436454],[123,19,72,-0.04308881152097074],[123,19,73,-0.043725752356151906],[123,19,74,-0.047294428014012305],[123,19,75,-0.04816981143286998],[123,19,76,-0.04610330487355527],[123,19,77,-0.04349142498950424],[123,19,78,-0.04945648187903838],[123,19,79,-0.04950639485020225],[123,20,64,-0.015817913827999575],[123,20,65,-0.016752041539128182],[123,20,66,-0.02052971857004246],[123,20,67,-0.022705067744031276],[123,20,68,-0.026074330219745923],[123,20,69,-0.028460914601637827],[123,20,70,-0.03659492476138848],[123,20,71,-0.04240213822398883],[123,20,72,-0.049429048696078406],[123,20,73,-0.04974752054616988],[123,20,74,-0.05345220125995358],[123,20,75,-0.052169355204187084],[123,20,76,-0.047771564272098055],[123,20,77,-0.04776894138808942],[123,20,78,-0.05150601134981693],[123,20,79,-0.052747592629033335],[123,21,64,-0.005908970157003729],[123,21,65,-0.0070118496325935475],[123,21,66,-0.01262787276202132],[123,21,67,-0.013162120277793288],[123,21,68,-0.01952194535796306],[123,21,69,-0.02677307622491973],[123,21,70,-0.03703752046934175],[123,21,71,-0.05221580078254959],[123,21,72,-0.06457996641378634],[123,21,73,-0.06970072840552682],[123,21,74,-0.07317489650076098],[123,21,75,-0.07113975737841477],[123,21,76,-0.06868442130401006],[123,21,77,-0.06838140871762854],[123,21,78,-0.0679944102000486],[123,21,79,-0.06628851303218952],[123,22,64,-0.009585761190159137],[123,22,65,-0.00743537424334359],[123,22,66,-0.011531737274462328],[123,22,67,-0.01230541555318565],[123,22,68,-0.02091219117738391],[123,22,69,-0.02833265885697553],[123,22,70,-0.038737238991466014],[123,22,71,-0.05539877478541985],[123,22,72,-0.06498940688222533],[123,22,73,-0.07050048688081614],[123,22,74,-0.07225467857261933],[123,22,75,-0.07068180718899195],[123,22,76,-0.07004747375007336],[123,22,77,-0.07024536310769397],[123,22,78,-0.07095440209812381],[123,22,79,-0.06729398494856753],[123,23,64,-0.011299724425725632],[123,23,65,-0.01059459145072536],[123,23,66,-0.013872963889098228],[123,23,67,-0.014556639355884637],[123,23,68,-0.023407806626333932],[123,23,69,-0.032955781946098064],[123,23,70,-0.04206013372738465],[123,23,71,-0.05389987984520132],[123,23,72,-0.06556810368411065],[123,23,73,-0.07023228317428318],[123,23,74,-0.07129229516075769],[123,23,75,-0.07108847320814564],[123,23,76,-0.07070886876845842],[123,23,77,-0.07053951797347009],[123,23,78,-0.07150615624325699],[123,23,79,-0.06884386521746103],[123,24,64,-0.004813577423533805],[123,24,65,-0.004521254595039992],[123,24,66,-0.008045456931619954],[123,24,67,-0.011331863693362532],[123,24,68,-0.01869336151286738],[123,24,69,-0.027463458080974112],[123,24,70,-0.03769741420790422],[123,24,71,-0.04714255713471946],[123,24,72,-0.0554190908836823],[123,24,73,-0.06017857886290823],[123,24,74,-0.06278452886365564],[123,24,75,-0.061199662573952235],[123,24,76,-0.05959844212657808],[123,24,77,-0.06105391151858555],[123,24,78,-0.06094973602691217],[123,24,79,-0.05785459605773299],[123,25,64,-0.0026188290038797746],[123,25,65,-0.008299759944124657],[123,25,66,-0.011517881580450196],[123,25,67,-0.022473322602914403],[123,25,68,-0.0322882145996545],[123,25,69,-0.04101841473487325],[123,25,70,-0.0498119984020641],[123,25,71,-0.05408484177120548],[123,25,72,-0.052335948103490224],[123,25,73,-0.051570447672639796],[123,25,74,-0.05173355121341276],[123,25,75,-0.04851332737080705],[123,25,76,-0.053790856460614406],[123,25,77,-0.05574494717423835],[123,25,78,-0.05873218210285222],[123,25,79,-0.0578127145445643],[123,26,64,-0.0039033215826113354],[123,26,65,-0.010231795773322866],[123,26,66,-0.01300716692525175],[123,26,67,-0.025640236916114972],[123,26,68,-0.03720627439655706],[123,26,69,-0.04451270532652554],[123,26,70,-0.05079371915964449],[123,26,71,-0.056270968154258805],[123,26,72,-0.05118606834528122],[123,26,73,-0.0527391032618052],[123,26,74,-0.05273437646297795],[123,26,75,-0.049907719845149356],[123,26,76,-0.05401670930634715],[123,26,77,-0.05535243294026901],[123,26,78,-0.057057683110517995],[123,26,79,-0.05706066011065934],[123,27,64,-0.005259044022817377],[123,27,65,-0.01079830686966951],[123,27,66,-0.015991236905664535],[123,27,67,-0.026900448594428972],[123,27,68,-0.03896607578342437],[123,27,69,-0.04722860619950095],[123,27,70,-0.053816853177383855],[123,27,71,-0.05550834939821461],[123,27,72,-0.050740226026151886],[123,27,73,-0.053498774101286894],[123,27,74,-0.05258574608919095],[123,27,75,-0.051044746133959706],[123,27,76,-0.051897026998797724],[123,27,77,-0.055465907891373414],[123,27,78,-0.057562575163198015],[123,27,79,-0.05695225344652441],[123,28,64,-0.006380059564015356],[123,28,65,-0.015332166575952877],[123,28,66,-0.022407813018920253],[123,28,67,-0.03342662606547972],[123,28,68,-0.04521117074376217],[123,28,69,-0.053878835194413985],[123,28,70,-0.05754204262226492],[123,28,71,-0.060491701873109024],[123,28,72,-0.05701893572902156],[123,28,73,-0.05987042694942185],[123,28,74,-0.05973277964361583],[123,28,75,-0.059888739649541556],[123,28,76,-0.054235338499522875],[123,28,77,-0.05974789469063446],[123,28,78,-0.063747863947305],[123,28,79,-0.06194321171045364],[123,29,64,-0.007774768458225917],[123,29,65,-0.01693138837951208],[123,29,66,-0.025777592778388897],[123,29,67,-0.034807341400097724],[123,29,68,-0.045598432744882206],[123,29,69,-0.053373399064373855],[123,29,70,-0.05653674343428178],[123,29,71,-0.05810043225014547],[123,29,72,-0.05680316360997374],[123,29,73,-0.06078773484691244],[123,29,74,-0.05935102644639628],[123,29,75,-0.059212174647934906],[123,29,76,-0.05277203266127686],[123,29,77,-0.056601995893798884],[123,29,78,-0.06144053192886642],[123,29,79,-0.05839631405280543],[123,30,64,-0.008384929442744632],[123,30,65,-0.017773320801803327],[123,30,66,-0.02689324448418226],[123,30,67,-0.035090510482953224],[123,30,68,-0.04499425752968417],[123,30,69,-0.051213474599583406],[123,30,70,-0.05334498282605549],[123,30,71,-0.06046601756878495],[123,30,72,-0.06065523354767374],[123,30,73,-0.061699718277354196],[123,30,74,-0.06022541093565109],[123,30,75,-0.06078010544482036],[123,30,76,-0.05525457357193472],[123,30,77,-0.05537485623686535],[123,30,78,-0.061514159780110406],[123,30,79,-0.060424150656319967],[123,31,64,-0.01058305170820803],[123,31,65,-0.01744599221884305],[123,31,66,-0.027346261947842704],[123,31,67,-0.03426468184900694],[123,31,68,-0.04436935326756522],[123,31,69,-0.050929246469465506],[123,31,70,-0.05365845280568661],[123,31,71,-0.059117578695537104],[123,31,72,-0.058813046864332974],[123,31,73,-0.06026175773146672],[123,31,74,-0.05927908233517515],[123,31,75,-0.06225043566497866],[123,31,76,-0.05958011524349183],[123,31,77,-0.057807427300561265],[123,31,78,-0.05903817733816659],[123,31,79,-0.060016412168334865],[123,32,64,-0.003628699931736701],[123,32,65,-0.011020628142132394],[123,32,66,-0.019546540499805115],[123,32,67,-0.023722174938061086],[123,32,68,-0.03247101178319767],[123,32,69,-0.03978558238640112],[123,32,70,-0.0400417092359302],[123,32,71,-0.04575148488237861],[123,32,72,-0.046062890364099635],[123,32,73,-0.04637985939312911],[123,32,74,-0.04849253593508068],[123,32,75,-0.0518212121845055],[123,32,76,-0.05043421972155743],[123,32,77,-0.048142111027959816],[123,32,78,-0.04655392159556303],[123,32,79,-0.04713177876643225],[123,33,64,-1.902658454404349E-4],[123,33,65,-0.005989863346082258],[123,33,66,-0.010642081794383446],[123,33,67,-0.012602021832921778],[123,33,68,-0.01969910836920491],[123,33,69,-0.02846716915447381],[123,33,70,-0.031945542368279206],[123,33,71,-0.04226158738140284],[123,33,72,-0.04939563132084904],[123,33,73,-0.05362013362293727],[123,33,74,-0.05961466766557383],[123,33,75,-0.06338990909921402],[123,33,76,-0.060021603952629315],[123,33,77,-0.05433648350772266],[123,33,78,-0.048132402435467875],[123,33,79,-0.04648628834975606],[123,34,64,-0.0024832359951125482],[123,34,65,-0.008191085193712783],[123,34,66,-0.013056926980149652],[123,34,67,-0.015448854030315956],[123,34,68,-0.020793579930014683],[123,34,69,-0.027414853173088838],[123,34,70,-0.03079132572786325],[123,34,71,-0.041279575014966374],[123,34,72,-0.05046875662203583],[123,34,73,-0.05576712949018675],[123,34,74,-0.061723775418545776],[123,34,75,-0.0628103105486629],[123,34,76,-0.05858811391670024],[123,34,77,-0.05019251879977077],[123,34,78,-0.04730532564287568],[123,34,79,-0.046173221371199655],[123,35,64,-0.004918950869919753],[123,35,65,-0.010490221838874186],[123,35,66,-0.015534572934951002],[123,35,67,-0.01866393664529395],[123,35,68,-0.02466981969853113],[123,35,69,-0.028423229535207456],[123,35,70,-0.029647156763201066],[123,35,71,-0.039891983350609894],[123,35,72,-0.05080815665090359],[123,35,73,-0.055606919566030616],[123,35,74,-0.06244430888056687],[123,35,75,-0.06250879498540504],[123,35,76,-0.05568119566214502],[123,35,77,-0.048004676158775836],[123,35,78,-0.04409829577457661],[123,35,79,-0.04309852150922405],[123,36,64,-0.016302128873828897],[123,36,65,-0.01974419350118914],[123,36,66,-0.02495040095385151],[123,36,67,-0.02974084175798103],[123,36,68,-0.036252630519113066],[123,36,69,-0.038637736542634735],[123,36,70,-0.03804639804661458],[123,36,71,-0.04655570765963593],[123,36,72,-0.05895509324696552],[123,36,73,-0.06648783523569693],[123,36,74,-0.06697506495433486],[123,36,75,-0.0673703871813732],[123,36,76,-0.059262890789261696],[123,36,77,-0.052020915759619646],[123,36,78,-0.04766473295452603],[123,36,79,-0.04778811191232227],[123,37,64,-0.02341763148981238],[123,37,65,-0.028678756717270437],[123,37,66,-0.03242511771275572],[123,37,67,-0.04213725901729097],[123,37,68,-0.05039075945315988],[123,37,69,-0.051581013224592964],[123,37,70,-0.05220811177152268],[123,37,71,-0.053677738762286015],[123,37,72,-0.05676346825919387],[123,37,73,-0.06203356411947741],[123,37,74,-0.06038766264987255],[123,37,75,-0.059509337573813215],[123,37,76,-0.05072258083209044],[123,37,77,-0.045819450065055445],[123,37,78,-0.04279132046106812],[123,37,79,-0.046616486205293114],[123,38,64,-0.02809143454385804],[123,38,65,-0.03308404157937109],[123,38,66,-0.03569247970680542],[123,38,67,-0.04275241387704222],[123,38,68,-0.04925184966823322],[123,38,69,-0.05483208265021482],[123,38,70,-0.05612756887301251],[123,38,71,-0.05719863096342882],[123,38,72,-0.057310781978088754],[123,38,73,-0.06074177387998471],[123,38,74,-0.060125277124708],[123,38,75,-0.05673619298597607],[123,38,76,-0.04884133213625996],[123,38,77,-0.0448646753854009],[123,38,78,-0.043436918035763036],[123,38,79,-0.04658679452396666],[123,39,64,-0.031456152808701565],[123,39,65,-0.03786162241812489],[123,39,66,-0.03826847642055188],[123,39,67,-0.04430161473955957],[123,39,68,-0.050700303601375576],[123,39,69,-0.05669299770601463],[123,39,70,-0.05689937729762552],[123,39,71,-0.05865607078395599],[123,39,72,-0.05723911414278987],[123,39,73,-0.05819841925031838],[123,39,74,-0.05735724790396421],[123,39,75,-0.05394285834157071],[123,39,76,-0.0480944545428391],[123,39,77,-0.0446639539019683],[123,39,78,-0.04262635369477345],[123,39,79,-0.04661737165353237],[123,40,64,-0.02236785579621975],[123,40,65,-0.02772773690714736],[123,40,66,-0.02781034165404639],[123,40,67,-0.032835085912912676],[123,40,68,-0.03902063263330975],[123,40,69,-0.04413010240686448],[123,40,70,-0.043739649047839085],[123,40,71,-0.04523811112028428],[123,40,72,-0.04625764696526666],[123,40,73,-0.045173109676745385],[123,40,74,-0.0425339536726],[123,40,75,-0.040989436334566406],[123,40,76,-0.040393041969050955],[123,40,77,-0.03428078421667968],[123,40,78,-0.030514289790497945],[123,40,79,-0.03436251061382534],[123,41,64,-0.02468225047878389],[123,41,65,-0.028237051776955097],[123,41,66,-0.028207315696605617],[123,41,67,-0.032446850114708076],[123,41,68,-0.036902708914807444],[123,41,69,-0.044826402026917386],[123,41,70,-0.04490148811516753],[123,41,71,-0.04636262434510685],[123,41,72,-0.0459247007546606],[123,41,73,-0.04444448943244317],[123,41,74,-0.04267902009324823],[123,41,75,-0.04094369601689013],[123,41,76,-0.042782193964035486],[123,41,77,-0.037635296698385695],[123,41,78,-0.03301657142861236],[123,41,79,-0.035133884732800214],[123,42,64,-0.025451606238527352],[123,42,65,-0.026070306752348837],[123,42,66,-0.027578305123305835],[123,42,67,-0.03340831018976294],[123,42,68,-0.03725651029089688],[123,42,69,-0.04351326822064917],[123,42,70,-0.04507870998384787],[123,42,71,-0.04705495848166458],[123,42,72,-0.046451467416206954],[123,42,73,-0.04395048807715046],[123,42,74,-0.04245320476672115],[123,42,75,-0.04281064930386433],[123,42,76,-0.04502830009870082],[123,42,77,-0.04277124019442846],[123,42,78,-0.03624279214723858],[123,42,79,-0.036718564975369516],[123,43,64,-0.02427080194973874],[123,43,65,-0.027711251371370038],[123,43,66,-0.028881882867520747],[123,43,67,-0.03224890779554153],[123,43,68,-0.03446808587758425],[123,43,69,-0.042015732958938026],[123,43,70,-0.04435672028390841],[123,43,71,-0.047146759677848815],[123,43,72,-0.0478319175198528],[123,43,73,-0.04325497812137802],[123,43,74,-0.04205743769831377],[123,43,75,-0.044161913423695354],[123,43,76,-0.046891400376259246],[123,43,77,-0.043931524809944666],[123,43,78,-0.03972113257190685],[123,43,79,-0.03723254711876656],[123,44,64,-0.03592161941410055],[123,44,65,-0.03785274688954028],[123,44,66,-0.03794558496402911],[123,44,67,-0.041303986174851204],[123,44,68,-0.041934488717047164],[123,44,69,-0.04955778986521843],[123,44,70,-0.05350751224753571],[123,44,71,-0.05611845770178761],[123,44,72,-0.05653880057977595],[123,44,73,-0.051786037429406975],[123,44,74,-0.050985125144026144],[123,44,75,-0.05349221143623589],[123,44,76,-0.05619430005590509],[123,44,77,-0.05302714163517541],[123,44,78,-0.049894564062687524],[123,44,79,-0.0467042108126975],[123,45,64,-0.051876888091912085],[123,45,65,-0.04560633672553191],[123,45,66,-0.0436693134173924],[123,45,67,-0.041897218657133056],[123,45,68,-0.037326672925767995],[123,45,69,-0.041403934426414074],[123,45,70,-0.044037480204812726],[123,45,71,-0.04651700263535288],[123,45,72,-0.048488532592680905],[123,45,73,-0.04894519935135086],[123,45,74,-0.04928009816399226],[123,45,75,-0.04922766262133364],[123,45,76,-0.05197900687873963],[123,45,77,-0.048577300407104756],[123,45,78,-0.045525200017410256],[123,45,79,-0.04473558667737969],[123,46,64,-0.05310348889993988],[123,46,65,-0.0470453733407097],[123,46,66,-0.047452737253818184],[123,46,67,-0.042034977584959235],[123,46,68,-0.03913271621956814],[123,46,69,-0.040474912437467425],[123,46,70,-0.04080035348659834],[123,46,71,-0.04485904701581417],[123,46,72,-0.048345613718593236],[123,46,73,-0.049561356233054604],[123,46,74,-0.05086151973940939],[123,46,75,-0.05092069462820875],[123,46,76,-0.051566403955876],[123,46,77,-0.05048518576762316],[123,46,78,-0.04762288984534836],[123,46,79,-0.041648044873456136],[123,47,64,-0.055509397375267014],[123,47,65,-0.04935701215214566],[123,47,66,-0.04904140952016525],[123,47,67,-0.042712918151191714],[123,47,68,-0.04120856222239244],[123,47,69,-0.041504368013858706],[123,47,70,-0.04079864399594628],[123,47,71,-0.042291508873041894],[123,47,72,-0.0484939010438476],[123,47,73,-0.051073377758383026],[123,47,74,-0.05240506253347792],[123,47,75,-0.05094121312458938],[123,47,76,-0.05290836622000433],[123,47,77,-0.0491801211034994],[123,47,78,-0.04759641354516993],[123,47,79,-0.04248776102541832],[123,48,64,-0.0424058921411906],[123,48,65,-0.04123834221088456],[123,48,66,-0.037618840717955085],[123,48,67,-0.03187184142867441],[123,48,68,-0.03052378091995306],[123,48,69,-0.02892135108422636],[123,48,70,-0.02717942778817517],[123,48,71,-0.02864697467354435],[123,48,72,-0.03639971514903134],[123,48,73,-0.03948663381436063],[123,48,74,-0.03986183430835272],[123,48,75,-0.038165060859058186],[123,48,76,-0.0395779521886557],[123,48,77,-0.037263929628568726],[123,48,78,-0.035039937779564906],[123,48,79,-0.030553833814354503],[123,49,64,-0.04807295667889688],[123,49,65,-0.04690690471688991],[123,49,66,-0.042638447495547876],[123,49,67,-0.03671988435265061],[123,49,68,-0.03387006368958986],[123,49,69,-0.03394367924733846],[123,49,70,-0.03304508927940977],[123,49,71,-0.03275229521429851],[123,49,72,-0.03442546925792028],[123,49,73,-0.03579243941771923],[123,49,74,-0.03557004233999461],[123,49,75,-0.03341961416741637],[123,49,76,-0.033676937709940985],[123,49,77,-0.03608339939671068],[123,49,78,-0.033841685060110926],[123,49,79,-0.029881706763512844],[123,50,64,-0.04828479742692224],[123,50,65,-0.04832236661700684],[123,50,66,-0.04556618817011],[123,50,67,-0.04129641810531744],[123,50,68,-0.03705477091155818],[123,50,69,-0.03714390321153542],[123,50,70,-0.03536222015959638],[123,50,71,-0.0375161233420131],[123,50,72,-0.03548873254922105],[123,50,73,-0.03519901412838039],[123,50,74,-0.03438434634866344],[123,50,75,-0.03259965128733405],[123,50,76,-0.030334712188674312],[123,50,77,-0.034695155865464566],[123,50,78,-0.0358458462657498],[123,50,79,-0.03317342053619696],[123,51,64,-0.05076292313735459],[123,51,65,-0.047717086165721345],[123,51,66,-0.04825510485142326],[123,51,67,-0.044398924609517706],[123,51,68,-0.04108263893680211],[123,51,69,-0.037987730963778193],[123,51,70,-0.0382394228877882],[123,51,71,-0.04133731891806354],[123,51,72,-0.03683409834845228],[123,51,73,-0.034764202718328224],[123,51,74,-0.03603616139088414],[123,51,75,-0.033072376107637025],[123,51,76,-0.02837462537400745],[123,51,77,-0.03453299094921053],[123,51,78,-0.037327418686417146],[123,51,79,-0.03526600273391474],[123,52,64,-0.004829908556203966],[123,52,65,-0.002560093748157216],[123,52,66,-0.002079977839972824],[123,52,67,-0.0032071073812167394],[123,52,68,0.002289554626358492],[123,52,69,0.006986359760237648],[123,52,70,0.0077266874531161656],[123,52,71,0.0033773732842231896],[123,52,72,0.007881221682805112],[123,52,73,0.010577034223986786],[123,52,74,0.009116492948299026],[123,52,75,0.012754186573828236],[123,52,76,0.016720342731234794],[123,52,77,0.012947874089385025],[123,52,78,0.010827379617024846],[123,52,79,0.01375431250545206],[123,53,64,0.0015195637095447023],[123,53,65,4.745235797493086E-4],[123,53,66,-0.00265531571704003],[123,53,67,-0.00542705942770802],[123,53,68,-0.0024667155269662566],[123,53,69,0.0015323485931979797],[123,53,70,7.621920156496154E-4],[123,53,71,-0.0025981497095701467],[123,53,72,0.002530057586173806],[123,53,73,0.004588365072755535],[123,53,74,0.005523271149798392],[123,53,75,0.006428745449901296],[123,53,76,0.012071219296498015],[123,53,77,0.009997528465541666],[123,53,78,0.008828904934574194],[123,53,79,0.013995680267732291],[123,54,64,0.003866707003440689],[123,54,65,-9.512671806808093E-4],[123,54,66,-0.006164313870573396],[123,54,67,-0.007908237043957017],[123,54,68,-0.003988171690653797],[123,54,69,-0.00378536203858329],[123,54,70,-0.0029563716099535453],[123,54,71,-0.0031013910504860687],[123,54,72,-3.384429059433147E-5],[123,54,73,0.0011126549401187513],[123,54,74,0.001550943155617851],[123,54,75,0.004839518784611335],[123,54,76,0.011234694631077985],[123,54,77,0.01142562069100908],[123,54,78,0.010643453356797616],[123,54,79,0.013207802161480514],[123,55,64,0.003537072738224234],[123,55,65,-6.638674842163461E-4],[123,55,66,-0.006469850551556272],[123,55,67,-0.006841502534956662],[123,55,68,-0.005532896521603242],[123,55,69,-0.005323392640275315],[123,55,70,-0.00551797523247477],[123,55,71,-0.005169179135828816],[123,55,72,-0.001367187111354723],[123,55,73,-7.393750959159284E-4],[123,55,74,6.024207919410607E-4],[123,55,75,0.003432264130065532],[123,55,76,0.010553753648390646],[123,55,77,0.010855064020677402],[123,55,78,0.009547082585098232],[123,55,79,0.01521718468706712],[123,56,64,0.015131752336548093],[123,56,65,0.009769776963094862],[123,56,66,0.005608411419440823],[123,56,67,0.005784993138730377],[123,56,68,0.007971630671977259],[123,56,69,0.007720690759442539],[123,56,70,0.0074953775897086405],[123,56,71,0.008120394538989495],[123,56,72,0.00931212580810828],[123,56,73,0.010235098631867473],[123,56,74,0.016578626866648405],[123,56,75,0.018631289773334475],[123,56,76,0.024283312517358074],[123,56,77,0.026425415047997197],[123,56,78,0.025277441126126038],[123,56,79,0.029853241019418608],[123,57,64,0.009391721809109715],[123,57,65,0.002747069868176799],[123,57,66,-0.0033237160616770844],[123,57,67,-0.003673893314022708],[123,57,68,1.4635198926479798E-4],[123,57,69,-0.0024854136972854435],[123,57,70,-0.0045556296889179],[123,57,71,-0.0017306387259662381],[123,57,72,-0.0018565640069270473],[123,57,73,5.062060339486307E-4],[123,57,74,0.008986101303284338],[123,57,75,0.011958617960012768],[123,57,76,0.016171836788010957],[123,57,77,0.01726165888274106],[123,57,78,0.01829959054421751],[123,57,79,0.02142413912039179],[123,58,64,0.05387241015361151],[123,58,65,0.044527572191392584],[123,58,66,0.039542327619779036],[123,58,67,0.03446653951815462],[123,58,68,0.0386559401652697],[123,58,69,0.03360292929708078],[123,58,70,0.031762603560302805],[123,58,71,0.03520610252506862],[123,58,72,0.03838501342654141],[123,58,73,0.03972833977235243],[123,58,74,0.046530832029533856],[123,58,75,0.05312371044670654],[123,58,76,0.054660068420396],[123,58,77,0.05478969188346025],[123,58,78,0.055188775434495435],[123,58,79,0.05482900546305004],[123,59,64,0.053729257534625555],[123,59,65,0.042170762196613226],[123,59,66,0.03647996313373364],[123,59,67,0.032005324737776605],[123,59,68,0.03349114792691138],[123,59,69,0.03176899370871086],[123,59,70,0.031226158596580067],[123,59,71,0.031924769306626466],[123,59,72,0.036994706535943014],[123,59,73,0.039608836543563786],[123,59,74,0.04487066292403569],[123,59,75,0.053110258652224296],[123,59,76,0.05485327771719384],[123,59,77,0.056258282193220724],[123,59,78,0.055027395975097065],[123,59,79,0.05233142658134475],[123,60,64,0.04461828911469319],[123,60,65,0.03069333647221223],[123,60,66,0.025877085863228982],[123,60,67,0.023863310765788792],[123,60,68,0.02322894377779175],[123,60,69,0.021585563925574272],[123,60,70,0.02050607156774896],[123,60,71,0.020854351593806178],[123,60,72,0.027139808859141967],[123,60,73,0.03246593249774932],[123,60,74,0.0372307775380525],[123,60,75,0.04355837533985461],[123,60,76,0.04603354287411644],[123,60,77,0.04690525364652445],[123,60,78,0.04411039678089855],[123,60,79,0.04330358410890367],[123,61,64,0.05064106425707822],[123,61,65,0.04198445810217287],[123,61,66,0.03894757022701088],[123,61,67,0.036210731108651376],[123,61,68,0.03332084368754995],[123,61,69,0.028367792910940978],[123,61,70,0.028109305793587752],[123,61,71,0.02821715652833065],[123,61,72,0.03321070216843397],[123,61,73,0.03963261376448404],[123,61,74,0.04515830945567961],[123,61,75,0.050458874978218465],[123,61,76,0.05469462977544695],[123,61,77,0.056624640121353334],[123,61,78,0.05564753480838443],[123,61,79,0.05481396386515465],[123,62,64,0.049029522646811305],[123,62,65,0.04160646603939537],[123,62,66,0.037329229605549186],[123,62,67,0.035892756954398905],[123,62,68,0.03238245272514599],[123,62,69,0.02902537799804819],[123,62,70,0.028753600729602383],[123,62,71,0.030112943560244715],[123,62,72,0.03453619813800683],[123,62,73,0.040026429008952494],[123,62,74,0.04360156103210899],[123,62,75,0.04877711585631775],[123,62,76,0.0522204221891031],[123,62,77,0.054845998620469016],[123,62,78,0.056958186035319686],[123,62,79,0.05712148187708305],[123,63,64,-0.02216459196205048],[123,63,65,-0.0283418047072891],[123,63,66,-0.031897211282173904],[123,63,67,-0.035383755011678245],[123,63,68,-0.03468143995386723],[123,63,69,-0.03644941593632725],[123,63,70,-0.03800794795309924],[123,63,71,-0.03425233406762418],[123,63,72,-0.028480381164241578],[123,63,73,-0.022833689260185516],[123,63,74,-0.020029751936205112],[123,63,75,-0.015142884730700037],[123,63,76,-0.011275090417638259],[123,63,77,-0.005876281753650195],[123,63,78,-0.0012681071583688641],[123,63,79,6.468205243869013E-4],[123,64,64,-0.009118068373640528],[123,64,65,-0.019964867208437376],[123,64,66,-0.0227446142916565],[123,64,67,-0.025222801221953],[123,64,68,-0.024150492004546983],[123,64,69,-0.028295327910864948],[123,64,70,-0.02861337123222947],[123,64,71,-0.02692827452746284],[123,64,72,-0.021880255925424905],[123,64,73,-0.01698871008450245],[123,64,74,-0.012072507445046468],[123,64,75,-0.007598745348534566],[123,64,76,-0.0023737411179815537],[123,64,77,6.522448663790897E-4],[123,64,78,0.0066110926478927245],[123,64,79,0.00874046973317151],[123,65,64,-0.009386128331082946],[123,65,65,-0.02007614333057231],[123,65,66,-0.022807180553732917],[123,65,67,-0.027745458722080674],[123,65,68,-0.026278559015077765],[123,65,69,-0.029604767263335885],[123,65,70,-0.031698633433356035],[123,65,71,-0.029933853798971344],[123,65,72,-0.025708982963819543],[123,65,73,-0.021926417116323385],[123,65,74,-0.01336240870671472],[123,65,75,-0.009685034069892004],[123,65,76,-0.005727545771366513],[123,65,77,-0.0026490663428294925],[123,65,78,0.003452174859508106],[123,65,79,0.007069811921694008],[123,66,64,-0.01655657717110985],[123,66,65,-0.026528973570830186],[123,66,66,-0.031382009127070745],[123,66,67,-0.036931013174396135],[123,66,68,-0.038279900400751826],[123,66,69,-0.03811092298047068],[123,66,70,-0.039697698438305645],[123,66,71,-0.03825170891380965],[123,66,72,-0.035358546240984084],[123,66,73,-0.031628260655589324],[123,66,74,-0.0232804234647621],[123,66,75,-0.0184429053992458],[123,66,76,-0.014549036559869652],[123,66,77,-0.0128648690853638],[123,66,78,-0.007137583592329702],[123,66,79,-0.002606157195212136],[123,67,64,-0.016329661867457226],[123,67,65,-0.02877663375486908],[123,67,66,-0.035117363498501725],[123,67,67,-0.041347912948315094],[123,67,68,-0.04213653694368755],[123,67,69,-0.04204563213291533],[123,67,70,-0.0423995417783706],[123,67,71,-0.038175903737743],[123,67,72,-0.03554137059926711],[123,67,73,-0.03528482483235651],[123,67,74,-0.028577067924692404],[123,67,75,-0.02393401613661708],[123,67,76,-0.019665915632039094],[123,67,77,-0.017093938243012294],[123,67,78,-0.010006682160369318],[123,67,79,-0.005270293650138966],[123,68,64,-0.11123125952632079],[123,68,65,-0.1230373761728846],[123,68,66,-0.13008886468755648],[123,68,67,-0.13630171787574483],[123,68,68,-0.13854496354861545],[123,68,69,-0.13631799607243927],[123,68,70,-0.13612232931725685],[123,68,71,-0.1319854747039906],[123,68,72,-0.13064762221776488],[123,68,73,-0.13203814822572102],[123,68,74,-0.12635321438893088],[123,68,75,-0.11994128592321021],[123,68,76,-0.11412540182182676],[123,68,77,-0.11066925006328791],[123,68,78,-0.10485266238029013],[123,68,79,-0.09978567247844705],[123,69,64,-0.11914700069271518],[123,69,65,-0.12788285632324786],[123,69,66,-0.13518501360724045],[123,69,67,-0.1398974790168578],[123,69,68,-0.13905516961868974],[123,69,69,-0.13553805399901947],[123,69,70,-0.13404608705959117],[123,69,71,-0.1311252045900257],[123,69,72,-0.13021170031281978],[123,69,73,-0.1353327109745642],[123,69,74,-0.1343054022384313],[123,69,75,-0.12535086685221958],[123,69,76,-0.11673406627755176],[123,69,77,-0.11223732555418861],[123,69,78,-0.10597145898534166],[123,69,79,-0.10254960054513557],[123,70,64,-0.12121543792310234],[123,70,65,-0.128476905695238],[123,70,66,-0.13828631675433883],[123,70,67,-0.14322103842504952],[123,70,68,-0.14049118983374875],[123,70,69,-0.13963765880291068],[123,70,70,-0.1355391731475516],[123,70,71,-0.1334140220099847],[123,70,72,-0.13134412155341713],[123,70,73,-0.13509028845073337],[123,70,74,-0.13584805727722588],[123,70,75,-0.128395041584862],[123,70,76,-0.11927742280564274],[123,70,77,-0.11319274324253749],[123,70,78,-0.10772837520133764],[123,70,79,-0.10645410636489583],[123,71,64,-0.11136080483482112],[123,71,65,-0.12019257677725335],[123,71,66,-0.12996703869025797],[123,71,67,-0.13413585795587268],[123,71,68,-0.13245229400750724],[123,71,69,-0.13267925203054312],[123,71,70,-0.12907671081017247],[123,71,71,-0.1278950526663928],[123,71,72,-0.1258358289031163],[123,71,73,-0.13006606599781842],[123,71,74,-0.12696152280887846],[123,71,75,-0.12142471229234836],[123,71,76,-0.11412096865892198],[123,71,77,-0.10672648479877997],[123,71,78,-0.10170422577512897],[123,71,79,-0.10001785496402073],[123,72,64,-0.11353958689119915],[123,72,65,-0.12238902662268941],[123,72,66,-0.13282512909559688],[123,72,67,-0.13661605775847113],[123,72,68,-0.13399221256939658],[123,72,69,-0.1347934524246585],[123,72,70,-0.1317357035017474],[123,72,71,-0.12874250431898707],[123,72,72,-0.13022369908740886],[123,72,73,-0.13343522240480002],[123,72,74,-0.12648381864906919],[123,72,75,-0.12223570587770918],[123,72,76,-0.11461282787228956],[123,72,77,-0.11074984030924628],[123,72,78,-0.10544725348657366],[123,72,79,-0.10349368195309874],[123,73,64,-0.12434716988798775],[123,73,65,-0.13343483511808496],[123,73,66,-0.14037908749192413],[123,73,67,-0.14298572240659407],[123,73,68,-0.14271893877722414],[123,73,69,-0.13983915692085222],[123,73,70,-0.13378761214285437],[123,73,71,-0.1277759546248284],[123,73,72,-0.12540997690190542],[123,73,73,-0.1254103372016037],[123,73,74,-0.11789921846954532],[123,73,75,-0.11514844681959249],[123,73,76,-0.10869817835673752],[123,73,77,-0.11061662342817102],[123,73,78,-0.11122016510292829],[123,73,79,-0.11213378494513163],[123,74,64,-0.1340447982081377],[123,74,65,-0.14487560410437447],[123,74,66,-0.15008373619222598],[123,74,67,-0.15044816845305747],[123,74,68,-0.15390228298414127],[123,74,69,-0.14936234336746937],[123,74,70,-0.14095070555510159],[123,74,71,-0.13657862295899129],[123,74,72,-0.1343837404854562],[123,74,73,-0.1338780294483632],[123,74,74,-0.12826437853753067],[123,74,75,-0.12298944180481164],[123,74,76,-0.11704240298170387],[123,74,77,-0.11803964356033736],[123,74,78,-0.1194895608685837],[123,74,79,-0.11878445315392473],[123,75,64,-0.14011672810204728],[123,75,65,-0.14877502325081515],[123,75,66,-0.1521918474079499],[123,75,67,-0.1512942857259713],[123,75,68,-0.15537878635529168],[123,75,69,-0.14976495706651763],[123,75,70,-0.14233373356499032],[123,75,71,-0.14077733958895697],[123,75,72,-0.1371261179555356],[123,75,73,-0.13477380346351991],[123,75,74,-0.13064809099188035],[123,75,75,-0.12507648469386531],[123,75,76,-0.1214056957651578],[123,75,77,-0.12247609083556057],[123,75,78,-0.12447030917555581],[123,75,79,-0.12300711273845483],[123,76,64,-0.14039638557129452],[123,76,65,-0.14771413541674755],[123,76,66,-0.15123073206200854],[123,76,67,-0.15162845202083575],[123,76,68,-0.15327677369197817],[123,76,69,-0.15051807435730818],[123,76,70,-0.14530600286503442],[123,76,71,-0.1398398481412361],[123,76,72,-0.13882699498709464],[123,76,73,-0.13666224913600275],[123,76,74,-0.13222242617488758],[123,76,75,-0.12799573628784228],[123,76,76,-0.12588503350252353],[123,76,77,-0.12696239917709362],[123,76,78,-0.12783426669994286],[123,76,79,-0.1252355623546542],[123,77,64,-0.14073472313198476],[123,77,65,-0.14783364711263064],[123,77,66,-0.1526825064796694],[123,77,67,-0.15406980544556143],[123,77,68,-0.15703050308688718],[123,77,69,-0.1552774433184363],[123,77,70,-0.15029127570788936],[123,77,71,-0.14549285803104955],[123,77,72,-0.14430032988195027],[123,77,73,-0.14348032848135553],[123,77,74,-0.13850707475253768],[123,77,75,-0.1360785323073171],[123,77,76,-0.1333376992728365],[123,77,77,-0.13169301462940314],[123,77,78,-0.13281049734803935],[123,77,79,-0.13006945347538487],[123,78,64,-0.1434518586551385],[123,78,65,-0.14970169771890807],[123,78,66,-0.15313170337118429],[123,78,67,-0.15504716651063533],[123,78,68,-0.15909803263746497],[123,78,69,-0.15741967877886764],[123,78,70,-0.15171903435788597],[123,78,71,-0.14745999069756704],[123,78,72,-0.14832725017924211],[123,78,73,-0.1476084575820356],[123,78,74,-0.14405472614919085],[123,78,75,-0.14158151328095014],[123,78,76,-0.13673381419795527],[123,78,77,-0.13502297858706178],[123,78,78,-0.13615611720512116],[123,78,79,-0.13457831195487832],[123,79,64,-0.13484904977912932],[123,79,65,-0.14302248694441122],[123,79,66,-0.14517265749015593],[123,79,67,-0.14583153252001008],[123,79,68,-0.14882474589063113],[123,79,69,-0.1492029287308259],[123,79,70,-0.14294460725243655],[123,79,71,-0.1406593376548095],[123,79,72,-0.14182983883577413],[123,79,73,-0.14369332505556826],[123,79,74,-0.14223666317940248],[123,79,75,-0.1357017822837257],[123,79,76,-0.13301280350108458],[123,79,77,-0.13375091170253775],[123,79,78,-0.13374521319954097],[123,79,79,-0.1323813434341218],[123,80,64,-0.1385593458026486],[123,80,65,-0.1445290625722575],[123,80,66,-0.14525016690891066],[123,80,67,-0.14653253175593783],[123,80,68,-0.14513957072436967],[123,80,69,-0.14663653150028366],[123,80,70,-0.14257010625907404],[123,80,71,-0.14073867130761222],[123,80,72,-0.14299656845639083],[123,80,73,-0.14667323629355478],[123,80,74,-0.14438094727793568],[123,80,75,-0.14328732035095973],[123,80,76,-0.14047720345220976],[123,80,77,-0.1387204060065822],[123,80,78,-0.1423193894957362],[123,80,79,-0.1406823282263267],[123,81,64,-0.13354472044938254],[123,81,65,-0.13980336137418986],[123,81,66,-0.13855877017398063],[123,81,67,-0.13661954092083645],[123,81,68,-0.13624288106959975],[123,81,69,-0.1373804792996474],[123,81,70,-0.13506691922679695],[123,81,71,-0.13758028226799066],[123,81,72,-0.14414202984324787],[123,81,73,-0.14871927560722106],[123,81,74,-0.15241254904619322],[123,81,75,-0.15218031278758415],[123,81,76,-0.1483058318825715],[123,81,77,-0.15001089730902145],[123,81,78,-0.15308707850880432],[123,81,79,-0.15227451822863913],[123,82,64,-0.14175259364088377],[123,82,65,-0.14700553118121384],[123,82,66,-0.1459888247436893],[123,82,67,-0.14335274655844732],[123,82,68,-0.14536906907157054],[123,82,69,-0.14618100259851066],[123,82,70,-0.14374993059866495],[123,82,71,-0.14661592370198467],[123,82,72,-0.1519273551537532],[123,82,73,-0.15907743507913286],[123,82,74,-0.16147765231365616],[123,82,75,-0.16058015031746828],[123,82,76,-0.15900339573022695],[123,82,77,-0.15971084207123376],[123,82,78,-0.16481266750001555],[123,82,79,-0.16279619186300354],[123,83,64,-0.1447295638408233],[123,83,65,-0.14756381434692753],[123,83,66,-0.1481345569994414],[123,83,67,-0.14424195448344787],[123,83,68,-0.14482294486253483],[123,83,69,-0.14624167391723977],[123,83,70,-0.1449605859805162],[123,83,71,-0.14974908942902382],[123,83,72,-0.156074358934185],[123,83,73,-0.16220337365027715],[123,83,74,-0.1643565547552174],[123,83,75,-0.16531911132690502],[123,83,76,-0.16342772955178025],[123,83,77,-0.16310485077574347],[123,83,78,-0.1667916678671798],[123,83,79,-0.1649821322654499],[123,84,64,-0.14232907311218151],[123,84,65,-0.14403022524048356],[123,84,66,-0.14466612740698392],[123,84,67,-0.1433482595268099],[123,84,68,-0.14167812875830793],[123,84,69,-0.14298794815039972],[123,84,70,-0.1448672786201182],[123,84,71,-0.15180845105140583],[123,84,72,-0.15830631651103835],[123,84,73,-0.16413045917260036],[123,84,74,-0.16675920836209393],[123,84,75,-0.17014702743971616],[123,84,76,-0.16831047861992732],[123,84,77,-0.16642701481755048],[123,84,78,-0.16706009957934198],[123,84,79,-0.1657028754645393],[123,85,64,-0.15008778264128408],[123,85,65,-0.1545371428513257],[123,85,66,-0.15608159223591336],[123,85,67,-0.15751167238132943],[123,85,68,-0.15740310897400916],[123,85,69,-0.15687039487451335],[123,85,70,-0.1606681598016938],[123,85,71,-0.16587977627503536],[123,85,72,-0.16741688731050253],[123,85,73,-0.17134820011403767],[123,85,74,-0.17076963043504093],[123,85,75,-0.17464547328561916],[123,85,76,-0.17417562767564948],[123,85,77,-0.17005257958569744],[123,85,78,-0.16484583285916163],[123,85,79,-0.1622015290630877],[123,86,64,-0.153088353716075],[123,86,65,-0.15887332297154128],[123,86,66,-0.16011352029778245],[123,86,67,-0.16102920940029672],[123,86,68,-0.15955274155297583],[123,86,69,-0.15819932785938323],[123,86,70,-0.16278860839209733],[123,86,71,-0.16731863676322783],[123,86,72,-0.16890549430550972],[123,86,73,-0.17100777825793834],[123,86,74,-0.1727638461612809],[123,86,75,-0.1768331169164541],[123,86,76,-0.1766930802502786],[123,86,77,-0.172824160575411],[123,86,78,-0.16654208030580353],[123,86,79,-0.163985236738059],[123,87,64,-0.14294372710095068],[123,87,65,-0.15192227135570668],[123,87,66,-0.1543995371545983],[123,87,67,-0.15510349366683399],[123,87,68,-0.15333343490357462],[123,87,69,-0.15338764918686543],[123,87,70,-0.15586388043639643],[123,87,71,-0.16033993602387464],[123,87,72,-0.16300814582681153],[123,87,73,-0.16408759418900584],[123,87,74,-0.16849842358521439],[123,87,75,-0.17390956715343708],[123,87,76,-0.1718810269971156],[123,87,77,-0.16647271594699775],[123,87,78,-0.16264304497393134],[123,87,79,-0.15923590102207702],[123,88,64,-0.14165222266867591],[123,88,65,-0.1508602621305565],[123,88,66,-0.15671975125895712],[123,88,67,-0.15802815561019648],[123,88,68,-0.15809350119195748],[123,88,69,-0.15600430714016217],[123,88,70,-0.15622641175051644],[123,88,71,-0.1629672734576948],[123,88,72,-0.16521539165923027],[123,88,73,-0.1688895526793347],[123,88,74,-0.17358728192259373],[123,88,75,-0.17881519017020775],[123,88,76,-0.1731940701838431],[123,88,77,-0.16885063060560462],[123,88,78,-0.16288848807193795],[123,88,79,-0.15996150558533834],[123,89,64,-0.14278884493148145],[123,89,65,-0.1497526322052613],[123,89,66,-0.15845234718461007],[123,89,67,-0.16176946520876462],[123,89,68,-0.16010719274488355],[123,89,69,-0.15892527489066754],[123,89,70,-0.1586314188326671],[123,89,71,-0.16423920616883406],[123,89,72,-0.16827123835335722],[123,89,73,-0.17459844526215892],[123,89,74,-0.17744941242609216],[123,89,75,-0.18282108743279413],[123,89,76,-0.17716775965064557],[123,89,77,-0.17057672918760242],[123,89,78,-0.16407535973556772],[123,89,79,-0.15873313583620433],[123,90,64,-0.14768224425553486],[123,90,65,-0.15572598896650408],[123,90,66,-0.1665511200968482],[123,90,67,-0.1697076101796054],[123,90,68,-0.169630769993716],[123,90,69,-0.16845419739643763],[123,90,70,-0.16515514816119398],[123,90,71,-0.16761350912831713],[123,90,72,-0.17560821464477036],[123,90,73,-0.18211776161899498],[123,90,74,-0.18668999516347462],[123,90,75,-0.19004465949746768],[123,90,76,-0.1847153584957301],[123,90,77,-0.1797853937429556],[123,90,78,-0.17143496796624802],[123,90,79,-0.16464500488939043],[123,91,64,-0.14509291328435941],[123,91,65,-0.1545071456244037],[123,91,66,-0.1638824530511014],[123,91,67,-0.1671793584653688],[123,91,68,-0.16953046354641174],[123,91,69,-0.1687807349332818],[123,91,70,-0.16657489112283705],[123,91,71,-0.16938414838943205],[123,91,72,-0.17636495485499742],[123,91,73,-0.1845236713039548],[123,91,74,-0.19007472854219165],[123,91,75,-0.18988458703794633],[123,91,76,-0.18843270124088884],[123,91,77,-0.1822787610294475],[123,91,78,-0.17202905712168992],[123,91,79,-0.16772885020753064],[123,92,64,-0.1294407738069971],[123,92,65,-0.1386770310574117],[123,92,66,-0.15095672369110041],[123,92,67,-0.1552631462461903],[123,92,68,-0.1572384575995858],[123,92,69,-0.16035636250003502],[123,92,70,-0.16039024677742625],[123,92,71,-0.16330226222656047],[123,92,72,-0.1709421416222197],[123,92,73,-0.17822837858354706],[123,92,74,-0.18484423839826075],[123,92,75,-0.18315532608794444],[123,92,76,-0.1822706694623481],[123,92,77,-0.17536273335487768],[123,92,78,-0.16648693546534232],[123,92,79,-0.15999809833276352],[123,93,64,-0.12092047696033249],[123,93,65,-0.13320619244941287],[123,93,66,-0.14542643287941792],[123,93,67,-0.15273704091376222],[123,93,68,-0.15639127822102533],[123,93,69,-0.16061044441265762],[123,93,70,-0.1623536928539614],[123,93,71,-0.16897960360984998],[123,93,72,-0.17727055116966028],[123,93,73,-0.18697329855200695],[123,93,74,-0.19162651981052736],[123,93,75,-0.19119611544975512],[123,93,76,-0.19033678179478142],[123,93,77,-0.18137279861214256],[123,93,78,-0.16940736071514692],[123,93,79,-0.16056730133544742],[123,94,64,-0.12274670292949373],[123,94,65,-0.13580403016551726],[123,94,66,-0.14633626095713564],[123,94,67,-0.1559270746266738],[123,94,68,-0.15886977965468269],[123,94,69,-0.16219445408787117],[123,94,70,-0.16592621046793155],[123,94,71,-0.17010277843539018],[123,94,72,-0.17950687404497068],[123,94,73,-0.18576504242869657],[123,94,74,-0.191227702937111],[123,94,75,-0.1905943082323312],[123,94,76,-0.19086298063589813],[123,94,77,-0.18267899958331388],[123,94,78,-0.16865255649843203],[123,94,79,-0.15931867057561871],[123,95,64,-0.11439002126852471],[123,95,65,-0.12864160162265473],[123,95,66,-0.13955889633929458],[123,95,67,-0.14833910902792533],[123,95,68,-0.15005502688005345],[123,95,69,-0.15666785405714573],[123,95,70,-0.1597843983109981],[123,95,71,-0.16398336185636297],[123,95,72,-0.1717015346486246],[123,95,73,-0.17913991966209852],[123,95,74,-0.18474865991829703],[123,95,75,-0.18460072702925512],[123,95,76,-0.1843325462275573],[123,95,77,-0.1752046838270178],[123,95,78,-0.16252002770377325],[123,95,79,-0.15242132926768343],[123,96,64,-0.11477669438260096],[123,96,65,-0.12844520835252687],[123,96,66,-0.13928773674880718],[123,96,67,-0.14837924663433022],[123,96,68,-0.15079186930163574],[123,96,69,-0.1561672083649007],[123,96,70,-0.16094473185475267],[123,96,71,-0.16390283753913154],[123,96,72,-0.1697355331243085],[123,96,73,-0.17799179909239266],[123,96,74,-0.18282885857315234],[123,96,75,-0.1848807064247493],[123,96,76,-0.18256860824293453],[123,96,77,-0.17544442178703334],[123,96,78,-0.16201676421701564],[123,96,79,-0.1530846356292685],[123,97,64,-0.1248860312645845],[123,97,65,-0.134955774078257],[123,97,66,-0.14472655098265771],[123,97,67,-0.1502943601380839],[123,97,68,-0.15283139271262142],[123,97,69,-0.15508651158890746],[123,97,70,-0.16061379208011678],[123,97,71,-0.15963970516989173],[123,97,72,-0.16099038530770232],[123,97,73,-0.16559282461795424],[123,97,74,-0.1677387532205693],[123,97,75,-0.17190327583255388],[123,97,76,-0.17334436176252888],[123,97,77,-0.17029659993087287],[123,97,78,-0.1639328124606519],[123,97,79,-0.1562513309023516],[123,98,64,-0.13392043976319312],[123,98,65,-0.14368445138193459],[123,98,66,-0.15125446685860877],[123,98,67,-0.15723305241297064],[123,98,68,-0.15967643573701634],[123,98,69,-0.16143697989851008],[123,98,70,-0.16483878800305432],[123,98,71,-0.1660427800948463],[123,98,72,-0.16673084929024384],[123,98,73,-0.1705995884069838],[123,98,74,-0.17091336596888207],[123,98,75,-0.17569909639694847],[123,98,76,-0.17651735784023587],[123,98,77,-0.17210944690088556],[123,98,78,-0.17057698227700113],[123,98,79,-0.16427224654607045],[123,99,64,-0.1374747642020265],[123,99,65,-0.14652609155187318],[123,99,66,-0.15218527612800023],[123,99,67,-0.1556513587381692],[123,99,68,-0.16006035704671207],[123,99,69,-0.16061307682644804],[123,99,70,-0.16043163610736705],[123,99,71,-0.162565528744419],[123,99,72,-0.16773957596267908],[123,99,73,-0.16920363944649344],[123,99,74,-0.17197945571981363],[123,99,75,-0.17337537097231456],[123,99,76,-0.17371517415824905],[123,99,77,-0.17242524389839148],[123,99,78,-0.1692732785827083],[123,99,79,-0.16624240877904028],[123,100,64,-0.12289290769915504],[123,100,65,-0.12282125376857687],[123,100,66,-0.11956410094471535],[123,100,67,-0.11556377053587244],[123,100,68,-0.11516324458695865],[123,100,69,-0.11143264896993983],[123,100,70,-0.10632424051030834],[123,100,71,-0.10588965426122202],[123,100,72,-0.10904972998871368],[123,100,73,-0.1091135176340516],[123,100,74,-0.11286649050859361],[123,100,75,-0.11236142093143581],[123,100,76,-0.11432052720814706],[123,100,77,-0.11417468826290358],[123,100,78,-0.11033222129069602],[123,100,79,-0.10996305828161365],[123,101,64,-0.12600236600432127],[123,101,65,-0.12405477003595895],[123,101,66,-0.12122259075932551],[123,101,67,-0.11755478851089934],[123,101,68,-0.11421365790244106],[123,101,69,-0.11144831856173616],[123,101,70,-0.10403891056811976],[123,101,71,-0.10438130542255097],[123,101,72,-0.10777528327567025],[123,101,73,-0.10753812269365165],[123,101,74,-0.11130473814187249],[123,101,75,-0.11076621959610762],[123,101,76,-0.11222320965963936],[123,101,77,-0.11070659587198597],[123,101,78,-0.10954710907423486],[123,101,79,-0.11145194202085781],[123,102,64,-0.12770549289326386],[123,102,65,-0.12329406886936792],[123,102,66,-0.12195146708498394],[123,102,67,-0.11796082994830367],[123,102,68,-0.1143920275287406],[123,102,69,-0.11171675167011733],[123,102,70,-0.10540183888419494],[123,102,71,-0.10187970740835917],[123,102,72,-0.10511771517398744],[123,102,73,-0.10796763189311552],[123,102,74,-0.10797150025092936],[123,102,75,-0.10909241808754085],[123,102,76,-0.11115337369734994],[123,102,77,-0.10958578284411145],[123,102,78,-0.11010847349035052],[123,102,79,-0.11242062371197531],[123,103,64,-0.12327973253954991],[123,103,65,-0.11814526000094823],[123,103,66,-0.11687906710469426],[123,103,67,-0.10970662084532841],[123,103,68,-0.10617963037914004],[123,103,69,-0.10474911772938976],[123,103,70,-0.09672235832035467],[123,103,71,-0.09538950428497764],[123,103,72,-0.09994862382489804],[123,103,73,-0.1033794429701972],[123,103,74,-0.10252576252183926],[123,103,75,-0.10431577401386696],[123,103,76,-0.1051265512731136],[123,103,77,-0.10599708250051623],[123,103,78,-0.10554247554990935],[123,103,79,-0.11014496457479936],[123,104,64,-0.12346893586527155],[123,104,65,-0.12023987115436793],[123,104,66,-0.11723050513307788],[123,104,67,-0.1115959442251173],[123,104,68,-0.10992758441224965],[123,104,69,-0.10613329385316508],[123,104,70,-0.09804640111916159],[123,104,71,-0.09549385245736451],[123,104,72,-0.09781605953083267],[123,104,73,-0.10153294125130286],[123,104,74,-0.10107809855355553],[123,104,75,-0.10226157847682077],[123,104,76,-0.1043010630333702],[123,104,77,-0.10787595324131202],[123,104,78,-0.10882130668615676],[123,104,79,-0.11231685154107766],[123,105,64,-0.12568806691513718],[123,105,65,-0.12163702483141896],[123,105,66,-0.11392851111160836],[123,105,67,-0.10805440724782277],[123,105,68,-0.10719631972125007],[123,105,69,-0.10178589696995372],[123,105,70,-0.09440625145445605],[123,105,71,-0.09470276025923821],[123,105,72,-0.09611305247107824],[123,105,73,-0.09831684169706446],[123,105,74,-0.0989500129069348],[123,105,75,-0.10102565079463162],[123,105,76,-0.10544228485667537],[123,105,77,-0.1070131543470567],[123,105,78,-0.10620647913203554],[123,105,79,-0.1102821373482901],[123,106,64,-0.13580903546432943],[123,106,65,-0.12909992188066063],[123,106,66,-0.12052524938147353],[123,106,67,-0.11728069564672143],[123,106,68,-0.11382366997216595],[123,106,69,-0.10822655832827321],[123,106,70,-0.10291068235516994],[123,106,71,-0.10377754886364368],[123,106,72,-0.10120543743319771],[123,106,73,-0.1042473057304583],[123,106,74,-0.1017734714872042],[123,106,75,-0.10483366777684847],[123,106,76,-0.10887043794621541],[123,106,77,-0.11002706951588144],[123,106,78,-0.10912170243454404],[123,106,79,-0.11481859850449107],[123,107,64,-0.1381678927500648],[123,107,65,-0.12969162519485405],[123,107,66,-0.12244696789410502],[123,107,67,-0.11791876956684018],[123,107,68,-0.11280868728373566],[123,107,69,-0.11021190608376136],[123,107,70,-0.10499953985754046],[123,107,71,-0.10379285857267524],[123,107,72,-0.10412889530234007],[123,107,73,-0.10508811915471734],[123,107,74,-0.1024977207154268],[123,107,75,-0.10333971507484385],[123,107,76,-0.10589620308467257],[123,107,77,-0.10802237017616377],[123,107,78,-0.10957338222716229],[123,107,79,-0.11424330120796923],[123,108,64,-0.13575953416447673],[123,108,65,-0.13108487628889098],[123,108,66,-0.12625629773045732],[123,108,67,-0.12236467923877004],[123,108,68,-0.11530539021915188],[123,108,69,-0.11116398638228313],[123,108,70,-0.10810886016454294],[123,108,71,-0.10678574030086961],[123,108,72,-0.10901588072746206],[123,108,73,-0.10711022054658886],[123,108,74,-0.10899780356111863],[123,108,75,-0.10787287675062619],[123,108,76,-0.10740270294445645],[123,108,77,-0.11218566203296758],[123,108,78,-0.11599248324890649],[123,108,79,-0.12110990987806405],[123,109,64,-0.13165242680220055],[123,109,65,-0.13297875000637363],[123,109,66,-0.13090550208283275],[123,109,67,-0.12825226357456954],[123,109,68,-0.12389094094822724],[123,109,69,-0.11980498402097974],[123,109,70,-0.11654919243219661],[123,109,71,-0.11315177622269668],[123,109,72,-0.11246755436910706],[123,109,73,-0.11143085025971022],[123,109,74,-0.11249554060445842],[123,109,75,-0.11352192963510294],[123,109,76,-0.11253286980695396],[123,109,77,-0.11788488872596542],[123,109,78,-0.1215836124181415],[123,109,79,-0.1248488440631409],[123,110,64,-0.1320488537060574],[123,110,65,-0.13330388878995497],[123,110,66,-0.13156340907210107],[123,110,67,-0.12873738815572847],[123,110,68,-0.12589435676786356],[123,110,69,-0.11949231755354936],[123,110,70,-0.1181153128325275],[123,110,71,-0.11408301603839756],[123,110,72,-0.11347312893647735],[123,110,73,-0.11110414720659308],[123,110,74,-0.1122873377148998],[123,110,75,-0.11548771976519877],[123,110,76,-0.11338975978647328],[123,110,77,-0.11741700312888802],[123,110,78,-0.12254031356049752],[123,110,79,-0.1262251603791156],[123,111,64,-0.12466021995938951],[123,111,65,-0.1286726112811801],[123,111,66,-0.1266556134995813],[123,111,67,-0.12408945325180107],[123,111,68,-0.1212194142820667],[123,111,69,-0.11497525734147354],[123,111,70,-0.1110662687230375],[123,111,71,-0.10703407730400506],[123,111,72,-0.10830831303977785],[123,111,73,-0.1069896440106668],[123,111,74,-0.1077949200918224],[123,111,75,-0.1112604776738087],[123,111,76,-0.10967466232567406],[123,111,77,-0.11759302375796496],[123,111,78,-0.12117228256075797],[123,111,79,-0.12502904915699228],[123,112,64,-0.12431881488749555],[123,112,65,-0.12937514396951796],[123,112,66,-0.12691682357074732],[123,112,67,-0.12522029928642953],[123,112,68,-0.12049577686564863],[123,112,69,-0.11531759383410056],[123,112,70,-0.10992221058733648],[123,112,71,-0.10639036595065882],[123,112,72,-0.10676890777856263],[123,112,73,-0.10539351377307798],[123,112,74,-0.10797651003440978],[123,112,75,-0.11109783406676953],[123,112,76,-0.1091872175019962],[123,112,77,-0.11528805776585377],[123,112,78,-0.12289927720221526],[123,112,79,-0.1281411608684674],[123,113,64,-0.12459121997180247],[123,113,65,-0.12896197541690954],[123,113,66,-0.12635493172650153],[123,113,67,-0.12552339319122002],[123,113,68,-0.12050762913506544],[123,113,69,-0.11608236979683036],[123,113,70,-0.11117329847849772],[123,113,71,-0.10726256533432224],[123,113,72,-0.10534667070020244],[123,113,73,-0.10486948134078669],[123,113,74,-0.10825225296555793],[123,113,75,-0.11053735806582785],[123,113,76,-0.10896418465428119],[123,113,77,-0.11294044310573531],[123,113,78,-0.12113512010478825],[123,113,79,-0.12842588031902832],[123,114,64,-0.13342150106858022],[123,114,65,-0.1344683965449513],[123,114,66,-0.1315690806708411],[123,114,67,-0.12901353537167015],[123,114,68,-0.12617231139271448],[123,114,69,-0.1233525492762651],[123,114,70,-0.11714502754831572],[123,114,71,-0.11536674818523648],[123,114,72,-0.11068670721245161],[123,114,73,-0.10936561252349773],[123,114,74,-0.11418510364110045],[123,114,75,-0.11481343880524822],[123,114,76,-0.11484753789219684],[123,114,77,-0.11581912110388827],[123,114,78,-0.12576826225616305],[123,114,79,-0.13103325949764602],[123,115,64,-0.13278059788567614],[123,115,65,-0.13276216653894224],[123,115,66,-0.13172328584038556],[123,115,67,-0.12687419624843654],[123,115,68,-0.12233803957478666],[123,115,69,-0.12139976868249894],[123,115,70,-0.11521306187754875],[123,115,71,-0.11369298554179151],[123,115,72,-0.11115514157053162],[123,115,73,-0.10988510705556537],[123,115,74,-0.11222276588827063],[123,115,75,-0.11383894982939488],[123,115,76,-0.11732331592649022],[123,115,77,-0.11850543670046156],[123,115,78,-0.12425794100074292],[123,115,79,-0.12824587171652505],[123,116,64,-0.10969885430660725],[123,116,65,-0.11156924592082444],[123,116,66,-0.11101652131213537],[123,116,67,-0.11044866441544575],[123,116,68,-0.10659421143903856],[123,116,69,-0.108340776904146],[123,116,70,-0.10498149561190599],[123,116,71,-0.10323016251784875],[123,116,72,-0.10366463261393336],[123,116,73,-0.10043355957126417],[123,116,74,-0.10422919004754917],[123,116,75,-0.10524714345103757],[123,116,76,-0.10731095964748633],[123,116,77,-0.10878799901307437],[123,116,78,-0.11033900739936792],[123,116,79,-0.11008150955987714],[123,117,64,-0.11178020655211848],[123,117,65,-0.11334721090968454],[123,117,66,-0.1142854372381317],[123,117,67,-0.11581284934979535],[123,117,68,-0.11244581998966283],[123,117,69,-0.1108055919141253],[123,117,70,-0.11109660876010717],[123,117,71,-0.10852409104566356],[123,117,72,-0.10691587041965067],[123,117,73,-0.10726579926635799],[123,117,74,-0.10936269742929555],[123,117,75,-0.11144389480870498],[123,117,76,-0.11178268373060259],[123,117,77,-0.10952779561687914],[123,117,78,-0.10523109413302666],[123,117,79,-0.10172477151992618],[123,118,64,-0.1098690650725327],[123,118,65,-0.11005552266929125],[123,118,66,-0.11098631739342153],[123,118,67,-0.1123405076548592],[123,118,68,-0.11309828497852846],[123,118,69,-0.1093018899010828],[123,118,70,-0.11103692540813288],[123,118,71,-0.10982793035469435],[123,118,72,-0.10613683566384818],[123,118,73,-0.10771408308192833],[123,118,74,-0.11035581354242688],[123,118,75,-0.11023622740232936],[123,118,76,-0.11182690318617922],[123,118,77,-0.10871603701239059],[123,118,78,-0.10467240306171452],[123,118,79,-0.10002307594744855],[123,119,64,-0.09983150018990136],[123,119,65,-0.10296063810657186],[123,119,66,-0.10147391712957374],[123,119,67,-0.10349002796080231],[123,119,68,-0.10475311996011673],[123,119,69,-0.10200787136917004],[123,119,70,-0.1051951634356133],[123,119,71,-0.1036069822715172],[123,119,72,-0.10337674871812022],[123,119,73,-0.10608677405500919],[123,119,74,-0.1082768230463323],[123,119,75,-0.10909501261063709],[123,119,76,-0.10974035702003257],[123,119,77,-0.10903696135593809],[123,119,78,-0.10516541829852946],[123,119,79,-0.10207599593427798],[123,120,64,-0.09860603230099715],[123,120,65,-0.10160855757291215],[123,120,66,-0.09984790128455807],[123,120,67,-0.1002996793594036],[123,120,68,-0.10179290031730014],[123,120,69,-0.10167419071330067],[123,120,70,-0.10481871194086509],[123,120,71,-0.10424981191746102],[123,120,72,-0.10266310075065965],[123,120,73,-0.10585805056581048],[123,120,74,-0.10641120901622349],[123,120,75,-0.10809434315220201],[123,120,76,-0.11086161435296707],[123,120,77,-0.11148935361466053],[123,120,78,-0.10583078702823201],[123,120,79,-0.10268399026266573],[123,121,64,-0.08973728346362211],[123,121,65,-0.09253713785347546],[123,121,66,-0.08980054846407928],[123,121,67,-0.08824746447641366],[123,121,68,-0.09152930994461297],[123,121,69,-0.08986002709062783],[123,121,70,-0.09266697908136677],[123,121,71,-0.09420435196369059],[123,121,72,-0.09525687480456546],[123,121,73,-0.09625496631750292],[123,121,74,-0.0967393274825523],[123,121,75,-0.10052327303536987],[123,121,76,-0.1068218662176326],[123,121,77,-0.11190610371414644],[123,121,78,-0.11397201451467165],[123,121,79,-0.11405402957513941],[123,122,64,-0.0955090699308605],[123,122,65,-0.09781226703428214],[123,122,66,-0.09714700565947984],[123,122,67,-0.09611913474173167],[123,122,68,-0.09734972085291785],[123,122,69,-0.09685354882809029],[123,122,70,-0.09793388564758643],[123,122,71,-0.09768274962721926],[123,122,72,-0.09804846054666246],[123,122,73,-0.10018273408267023],[123,122,74,-0.1013472124596534],[123,122,75,-0.10535448429131977],[123,122,76,-0.11346270111726825],[123,122,77,-0.11810986971075767],[123,122,78,-0.12096029322760277],[123,122,79,-0.11957010288533214],[123,123,64,-0.09262631924070994],[123,123,65,-0.09378465234484261],[123,123,66,-0.0952746396252315],[123,123,67,-0.09548717006772034],[123,123,68,-0.09921142825120235],[123,123,69,-0.09683359340514087],[123,123,70,-0.09578485476272819],[123,123,71,-0.09688793777064551],[123,123,72,-0.09761064981217038],[123,123,73,-0.0997868512204702],[123,123,74,-0.10107952521603268],[123,123,75,-0.1041186767632512],[123,123,76,-0.11187017769784838],[123,123,77,-0.11861137954760656],[123,123,78,-0.12296399912391408],[123,123,79,-0.12388977899099553],[123,124,64,-0.08727703179824348],[123,124,65,-0.08771666069446853],[123,124,66,-0.08821585227969324],[123,124,67,-0.09143538720974823],[123,124,68,-0.09570698368776387],[123,124,69,-0.0955109524477506],[123,124,70,-0.09209127181663387],[123,124,71,-0.09592686039465889],[123,124,72,-0.09592546108017377],[123,124,73,-0.09836138645910189],[123,124,74,-0.10145510723112688],[123,124,75,-0.1050034611987416],[123,124,76,-0.11078119891055786],[123,124,77,-0.11834767604608436],[123,124,78,-0.12736169786253454],[123,124,79,-0.12878273973946103],[123,125,64,-0.08472699759179592],[123,125,65,-0.08597883914375111],[123,125,66,-0.08516589962104099],[123,125,67,-0.08984139563239701],[123,125,68,-0.09455228485198353],[123,125,69,-0.09512941264882024],[123,125,70,-0.09036098487079422],[123,125,71,-0.0947105114091139],[123,125,72,-0.09450925802180722],[123,125,73,-0.09957769861996293],[123,125,74,-0.10207915719506902],[123,125,75,-0.10724704444873889],[123,125,76,-0.11239685345138876],[123,125,77,-0.1209143621833043],[123,125,78,-0.12577106887764786],[123,125,79,-0.1278297342645262],[123,126,64,-0.08072646894987077],[123,126,65,-0.08323896799999261],[123,126,66,-0.08507216355462273],[123,126,67,-0.08979054454959139],[123,126,68,-0.09530780791238916],[123,126,69,-0.0936265257112405],[123,126,70,-0.09037141407049692],[123,126,71,-0.09271796627711429],[123,126,72,-0.09720654101355695],[123,126,73,-0.10136091294903884],[123,126,74,-0.10382094136829598],[123,126,75,-0.10920961585796436],[123,126,76,-0.11583930361342597],[123,126,77,-0.12038041582928846],[123,126,78,-0.1233442771160051],[123,126,79,-0.12676902565211134],[123,127,64,-0.07092417230687702],[123,127,65,-0.0742153203256278],[123,127,66,-0.07876949827158766],[123,127,67,-0.08561931704561067],[123,127,68,-0.08959736744135909],[123,127,69,-0.09094283692698182],[123,127,70,-0.09210401381741887],[123,127,71,-0.09308535903918377],[123,127,72,-0.09714598861278181],[123,127,73,-0.10216016050608867],[123,127,74,-0.10368831660922116],[123,127,75,-0.11116841620536738],[123,127,76,-0.11827920049946586],[123,127,77,-0.12244288746785484],[123,127,78,-0.12291001393174436],[123,127,79,-0.12901260398912953],[123,128,64,-0.0716967707853016],[123,128,65,-0.0748979761906797],[123,128,66,-0.07790698900641592],[123,128,67,-0.08364335739158346],[123,128,68,-0.0878110376864773],[123,128,69,-0.08996404492140667],[123,128,70,-0.09493724204339773],[123,128,71,-0.09755004134572297],[123,128,72,-0.10035060019035948],[123,128,73,-0.10361344397066496],[123,128,74,-0.10687735128182821],[123,128,75,-0.11139251159229745],[123,128,76,-0.1197805209663591],[123,128,77,-0.12306130416708788],[123,128,78,-0.12324982312096668],[123,128,79,-0.12872384040263346],[123,129,64,-0.0710471297885591],[123,129,65,-0.07640875038652105],[123,129,66,-0.08028957814287359],[123,129,67,-0.08392894229633552],[123,129,68,-0.09186535853678088],[123,129,69,-0.09595858479518565],[123,129,70,-0.10275811915427754],[123,129,71,-0.1083957877258106],[123,129,72,-0.10870756758613936],[123,129,73,-0.11055882156035457],[123,129,74,-0.11168392787107308],[123,129,75,-0.11619494992698803],[123,129,76,-0.12211847395332787],[123,129,77,-0.12394243467078589],[123,129,78,-0.12130648745947552],[123,129,79,-0.12184392925112716],[123,130,64,-0.0767642047967694],[123,130,65,-0.08213620114457007],[123,130,66,-0.08725917116507165],[123,130,67,-0.08904949223417391],[123,130,68,-0.09796882163540602],[123,130,69,-0.10324037631729582],[123,130,70,-0.11091955974280363],[123,130,71,-0.11485527182178135],[123,130,72,-0.11467254323677747],[123,130,73,-0.11687604680683737],[123,130,74,-0.14318467509499305],[123,130,75,-0.19604945345972236],[123,130,76,-0.20495081898469633],[123,130,77,-0.20290661148773992],[123,130,78,-0.19296954051758441],[123,130,79,-0.18612120201604992],[123,131,64,-0.07537552284621057],[123,131,65,-0.08109277349444449],[123,131,66,-0.08534201491514715],[123,131,67,-0.08916207480504502],[123,131,68,-0.0989304289207562],[123,131,69,-0.10409167316464088],[123,131,70,-0.11482399140916748],[123,131,71,-0.11666752879943776],[123,131,72,-0.11546405631183165],[123,131,73,-0.11612538129589327],[123,131,74,-0.1479888862043864],[123,131,75,-0.203021201289259],[123,131,76,-0.2198734947483003],[123,131,77,-0.22073815924478526],[123,131,78,-0.21674212149380054],[123,131,79,-0.19974035790989536],[123,132,64,-0.06513500201651745],[123,132,65,-0.070331691587337],[123,132,66,-0.07659162392809157],[123,132,67,-0.08078850084475174],[123,132,68,-0.08845712139074427],[123,132,69,-0.09977315959610343],[123,132,70,-0.1081627826122492],[123,132,71,-0.11169402824251831],[123,132,72,-0.10972991817092918],[123,132,73,-0.11090849601679256],[123,132,74,-0.1470351388142742],[123,132,75,-0.19749297078438982],[123,132,76,-0.22749065469724922],[123,132,77,-0.22791251981406846],[123,132,78,-0.22686122411925275],[123,132,79,-0.19564063582650928],[123,133,64,-0.06596974417552078],[123,133,65,-0.06893174163940059],[123,133,66,-0.07219307923514244],[123,133,67,-0.07624372896790371],[123,133,68,-0.08348582764716256],[123,133,69,-0.09345685560883774],[123,133,70,-0.10099469638963642],[123,133,71,-0.10672196388834558],[123,133,72,-0.1074297128602818],[123,133,73,-0.11085021033524597],[123,133,74,-0.14061418523993113],[123,133,75,-0.1659324574494243],[123,133,76,-0.2002380549381702],[123,133,77,-0.21092399708904858],[123,133,78,-0.21804477605864292],[123,133,79,-0.20240791605964426],[123,134,64,-0.06204613603013407],[123,134,65,-0.06679933141983867],[123,134,66,-0.06803801205966718],[123,134,67,-0.07381963290205823],[123,134,68,-0.08440174762562017],[123,134,69,-0.09193042159041198],[123,134,70,-0.09847957265480356],[123,134,71,-0.1034286698239555],[123,134,72,-0.10547990400521631],[123,134,73,-0.11664602019534115],[123,134,74,-0.14727246221059048],[123,134,75,-0.17814302438400642],[123,134,76,-0.20169792775908355],[123,134,77,-0.2174204464183852],[123,134,78,-0.22490894215981422],[123,134,79,-0.2074283617337151],[123,135,64,-0.054151031248910506],[123,135,65,-0.057031260820340886],[123,135,66,-0.06359530066407865],[123,135,67,-0.07053711983613431],[123,135,68,-0.08286465949536259],[123,135,69,-0.08974631392919498],[123,135,70,-0.09633982009105099],[123,135,71,-0.09948144501793482],[123,135,72,-0.10419061536912441],[123,135,73,-0.10726473851472787],[123,135,74,-0.13255038836378102],[123,135,75,-0.16898462202342956],[123,135,76,-0.18914343477655327],[123,135,77,-0.2080206812974203],[123,135,78,-0.2175856113489784],[123,135,79,-0.1978307995697018],[123,136,64,-0.0520429661786217],[123,136,65,-0.05560700447613742],[123,136,66,-0.0629031664462294],[123,136,67,-0.07237402333509624],[123,136,68,-0.07982069810751193],[123,136,69,-0.08809952888141162],[123,136,70,-0.09797422423556311],[123,136,71,-0.10155707444031895],[123,136,72,-0.10330096778132962],[123,136,73,-0.10876173840644186],[123,136,74,-0.1326275049044788],[123,136,75,-0.17487212386174136],[123,136,76,-0.19224246818775664],[123,136,77,-0.21961507960774512],[123,136,78,-0.2252118389714821],[123,136,79,-0.20586108720714824],[123,137,64,-0.05204765356610735],[123,137,65,-0.05650081902912038],[123,137,66,-0.06308456954615699],[123,137,67,-0.07120150146408498],[123,137,68,-0.07930229732933385],[123,137,69,-0.08973530080718134],[123,137,70,-0.09902875451632645],[123,137,71,-0.10169958375164767],[123,137,72,-0.1058729239692572],[123,137,73,-0.10721032281350447],[123,137,74,-0.12848616875012586],[123,137,75,-0.1630691622605459],[123,137,76,-0.17704741560460366],[123,137,77,-0.20663766209777681],[123,137,78,-0.21383016336559063],[123,137,79,-0.20425676696195927],[123,138,64,-0.05773193551946819],[123,138,65,-0.06243799613392268],[123,138,66,-0.06874867336568244],[123,138,67,-0.07748043440931165],[123,138,68,-0.08532099909368568],[123,138,69,-0.09585997012442854],[123,138,70,-0.1035994297199899],[123,138,71,-0.10840328033188393],[123,138,72,-0.11264405987758441],[123,138,73,-0.11204078704504054],[123,138,74,-0.11779189306436377],[123,138,75,-0.14662304946084115],[123,138,76,-0.16535563749606166],[123,138,77,-0.19219143247521203],[123,138,78,-0.20781491159231977],[123,138,79,-0.20651034735889698],[123,139,64,-0.05585562797914771],[123,139,65,-0.06094942770046255],[123,139,66,-0.06634750908495043],[123,139,67,-0.07759885729887994],[123,139,68,-0.08542133116398612],[123,139,69,-0.09614110954505242],[123,139,70,-0.10376296350237763],[123,139,71,-0.10548074426364545],[123,139,72,-0.11289220847736214],[123,139,73,-0.11339529592921742],[123,139,74,-0.13940209891731892],[123,139,75,-0.16172242953245183],[123,139,76,-0.1870238819675336],[123,139,77,-0.20597903842168283],[123,139,78,-0.22792695226998108],[123,139,79,-0.2388543364137524],[123,140,64,-0.06288856918850137],[123,140,65,-0.06446131852675319],[123,140,66,-0.06845262924089426],[123,140,67,-0.07680814977411299],[123,140,68,-0.08451012246508267],[123,140,69,-0.09091397708966374],[123,140,70,-0.09504147457610515],[123,140,71,-0.09719580917705428],[123,140,72,-0.1036911094347367],[123,140,73,-0.10685761032755982],[123,140,74,-0.13807056674233625],[123,140,75,-0.15965572278962292],[123,140,76,-0.18716381077798191],[123,140,77,-0.19755725945004632],[123,140,78,-0.22464445373440733],[123,140,79,-0.2454962394803616],[123,141,64,-0.061390292596785793],[123,141,65,-0.06365905007212816],[123,141,66,-0.06988098038786328],[123,141,67,-0.08071043288837415],[123,141,68,-0.09075888750347982],[123,141,69,-0.09683885958496549],[123,141,70,-0.0971836913425498],[123,141,71,-0.09877865452591024],[123,141,72,-0.10530161166389218],[123,141,73,-0.10876146996082812],[123,141,74,-0.13128258762952608],[123,141,75,-0.16153898650567164],[123,141,76,-0.18016871159235],[123,141,77,-0.18510983704668107],[123,141,78,-0.2045097228570823],[123,141,79,-0.2271849832361278],[123,142,64,-0.06055481142787923],[123,142,65,-0.06303989052934625],[123,142,66,-0.06957541264804284],[123,142,67,-0.08207345789118627],[123,142,68,-0.09015398868188797],[123,142,69,-0.09962540426966213],[123,142,70,-0.0969229342036747],[123,142,71,-0.09957354655171403],[123,142,72,-0.10625130800813985],[123,142,73,-0.11065296110467814],[123,142,74,-0.12790376739469772],[123,142,75,-0.15842742629016976],[123,142,76,-0.1747719642473369],[123,142,77,-0.1784874842595907],[123,142,78,-0.1980723775715914],[123,142,79,-0.22202780684830953],[123,143,64,-0.05528721537065999],[123,143,65,-0.059790227954934355],[123,143,66,-0.06690191039557042],[123,143,67,-0.07894066528042319],[123,143,68,-0.08646150244627723],[123,143,69,-0.09629202158689226],[123,143,70,-0.09626942942825356],[123,143,71,-0.10021610742701642],[123,143,72,-0.10581139368490583],[123,143,73,-0.1109021904992851],[123,143,74,-0.12223939226375147],[123,143,75,-0.15031129685977743],[123,143,76,-0.16281549724160102],[123,143,77,-0.16679069145631287],[123,143,78,-0.1840566121975517],[123,143,79,-0.2043443354203896],[123,144,64,-0.055241765732226014],[123,144,65,-0.06170028515198681],[123,144,66,-0.06668514717079987],[123,144,67,-0.07995822505984698],[123,144,68,-0.08576103410974198],[123,144,69,-0.09394313247037028],[123,144,70,-0.09511720453864371],[123,144,71,-0.09756735858169358],[123,144,72,-0.10572648048546462],[123,144,73,-0.108852504266362],[123,144,74,-0.12366776041042239],[123,144,75,-0.15600658307758525],[123,144,76,-0.16483964612708793],[123,144,77,-0.17116581543893575],[123,144,78,-0.1865255804670794],[123,144,79,-0.21116981493129056],[123,145,64,-0.05660567115547975],[123,145,65,-0.057647425380913185],[123,145,66,-0.062233351848973426],[123,145,67,-0.07324539893578855],[123,145,68,-0.07865130927686867],[123,145,69,-0.08246175022432062],[123,145,70,-0.08675907785040168],[123,145,71,-0.09255079797654259],[123,145,72,-0.10097632498331911],[123,145,73,-0.10803238495377933],[123,145,74,-0.11485228399388453],[123,145,75,-0.12173965491295827],[123,145,76,-0.1308847279897222],[123,145,77,-0.13748370008959038],[123,145,78,-0.14465922156196936],[123,145,79,-0.1612419317018948],[123,146,64,-0.06301843324109146],[123,146,65,-0.06411108652200558],[123,146,66,-0.07044305752560114],[123,146,67,-0.0802786770359683],[123,146,68,-0.0843901299639822],[123,146,69,-0.0864631315120799],[123,146,70,-0.09201037155008565],[123,146,71,-0.09797757238024318],[123,146,72,-0.10622450241587039],[123,146,73,-0.11156678481340089],[123,146,74,-0.12072864618406429],[123,146,75,-0.125780454802692],[123,146,76,-0.13168196978420962],[123,146,77,-0.14192604016982488],[123,146,78,-0.14981874175181017],[123,146,79,-0.16175224099690383],[123,147,64,-0.06180264912006192],[123,147,65,-0.06436223399877637],[123,147,66,-0.07189069849191154],[123,147,67,-0.07830820296627636],[123,147,68,-0.08303365988122409],[123,147,69,-0.08487183586501079],[123,147,70,-0.09075295840137819],[123,147,71,-0.09746786097586521],[123,147,72,-0.10436046605067256],[123,147,73,-0.11099020015235322],[123,147,74,-0.11959340261085032],[123,147,75,-0.123476791468304],[123,147,76,-0.12813053862010493],[123,147,77,-0.1387911904296896],[123,147,78,-0.15042459448300843],[123,147,79,-0.1582684186385303],[123,148,64,-0.031277887716244734],[123,148,65,-0.03807094564719077],[123,148,66,-0.04706671552041293],[123,148,67,-0.052793952567140215],[123,148,68,-0.06144429732411542],[123,148,69,-0.06490359448555579],[123,148,70,-0.07349551168730059],[123,148,71,-0.08133672840423153],[123,148,72,-0.0886098287410146],[123,148,73,-0.09967080611277229],[123,148,74,-0.1046841713744828],[123,148,75,-0.11075365297718043],[123,148,76,-0.1022160975480205],[123,148,77,-0.11438921389388657],[123,148,78,-0.12211376021533984],[123,148,79,-0.10754395978950138],[123,149,64,-0.034938485784295564],[123,149,65,-0.039434922058907876],[123,149,66,-0.04671004401396772],[123,149,67,-0.051951600712046984],[123,149,68,-0.059790016168778395],[123,149,69,-0.06638994314044158],[123,149,70,-0.0744775005304594],[123,149,71,-0.08017922391438817],[123,149,72,-0.09042523159324639],[123,149,73,-0.10112837050979837],[123,149,74,-0.10484009080568285],[123,149,75,-0.10217032778946082],[123,149,76,-0.0971557521049786],[123,149,77,-0.10878880068419075],[123,149,78,-0.11145245491775116],[123,149,79,-0.10478423140334384],[123,150,64,-0.038415551297181036],[123,150,65,-0.041120014816202255],[123,150,66,-0.04596395315907614],[123,150,67,-0.05206286313493836],[123,150,68,-0.059459938418891335],[123,150,69,-0.06701836432315049],[123,150,70,-0.076240718577674],[123,150,71,-0.07981372819323454],[123,150,72,-0.09108665772931644],[123,150,73,-0.10246151287107859],[123,150,74,-0.1048443656986325],[123,150,75,-0.08707489390519095],[123,150,76,-0.0894652723748038],[123,150,77,-0.10761162053697476],[123,150,78,-0.1035315675706385],[123,150,79,-0.10294408900774141],[123,151,64,-0.03405068595282647],[123,151,65,-0.03881131214205681],[123,151,66,-0.044479355777540225],[123,151,67,-0.053713403391853834],[123,151,68,-0.05807388654048509],[123,151,69,-0.06453965413301839],[123,151,70,-0.07621775214039667],[123,151,71,-0.08260048282639475],[123,151,72,-0.09113004424778201],[123,151,73,-0.09815687321354066],[123,151,74,-0.10595710265085312],[123,151,75,-0.08833111214601408],[123,151,76,-0.09293618439948269],[123,151,77,-0.1126780587914753],[123,151,78,-0.11021064909728384],[123,151,79,-0.1070110213758525],[123,152,64,-0.033034990982479695],[123,152,65,-0.043429953927096046],[123,152,66,-0.04872563163300435],[123,152,67,-0.05477320327741892],[123,152,68,-0.05717184362031752],[123,152,69,-0.06393700032816838],[123,152,70,-0.07774083381449964],[123,152,71,-0.08365145213170742],[123,152,72,-0.08692011445402115],[123,152,73,-0.09364514130500831],[123,152,74,-0.0920397851982763],[123,152,75,-0.08230568425237003],[123,152,76,-0.08205491079599272],[123,152,77,-0.09940452158286806],[123,152,78,-0.10301366682912888],[123,152,79,-0.09539597007734343],[123,153,64,-0.03169447952613359],[123,153,65,-0.0440450022195808],[123,153,66,-0.05324167882860453],[123,153,67,-0.05834948518476374],[123,153,68,-0.06236375986281354],[123,153,69,-0.0690105529122598],[123,153,70,-0.08092551959818597],[123,153,71,-0.08427460605756311],[123,153,72,-0.0833261801849397],[123,153,73,-0.08599553466774135],[123,153,74,-0.05593741530282466],[123,153,75,-0.04653058234926573],[123,153,76,-0.05118568647534728],[123,153,77,-0.06461970413873702],[123,153,78,-0.06618767840906642],[123,153,79,-0.060710110248829996],[123,154,64,-0.03665547207932629],[123,154,65,-0.04929206487625466],[123,154,66,-0.057954237287404585],[123,154,67,-0.06269801081470658],[123,154,68,-0.06893658501279523],[123,154,69,-0.07541515007100316],[123,154,70,-0.08325597375214538],[123,154,71,-0.08642369404014574],[123,154,72,-0.08703015182161031],[123,154,73,-0.08960902610106562],[123,154,74,-0.07657147416886098],[123,154,75,-0.05897419340375307],[123,154,76,-0.07431638021245313],[123,154,77,-0.07421335019530208],[123,154,78,-0.0738167246102068],[123,154,79,-0.07116600452151943],[123,155,64,-0.03507819333304238],[123,155,65,-0.0489816737696296],[123,155,66,-0.05961323926491639],[123,155,67,-0.062441529716776877],[123,155,68,-0.06733994364587328],[123,155,69,-0.07209405025225549],[123,155,70,-0.07954941754098707],[123,155,71,-0.08297570378850928],[123,155,72,-0.08591110566870777],[123,155,73,-0.08852195882021775],[123,155,74,-0.07545992853270692],[123,155,75,-0.06030882500327439],[123,155,76,-0.07168888049080528],[123,155,77,-0.07241805183764737],[123,155,78,-0.06959596485081485],[123,155,79,-0.0662308642137528],[123,156,64,-0.03245064930042271],[123,156,65,-0.0453746797078676],[123,156,66,-0.057471546208648194],[123,156,67,-0.06262974943268532],[123,156,68,-0.06802949453665193],[123,156,69,-0.07147933452496574],[123,156,70,-0.07774375837128772],[123,156,71,-0.07916029628450408],[123,156,72,-0.08445046592214096],[123,156,73,-0.08888144785621042],[123,156,74,-0.07443652178807031],[123,156,75,-0.06051700466425287],[123,156,76,-0.057422609836029176],[123,156,77,-0.060241618236405045],[123,156,78,-0.05295558748714038],[123,156,79,-0.0493094289558557],[123,157,64,-0.03682782349713207],[123,157,65,-0.046514673832761394],[123,157,66,-0.05614097400625017],[123,157,67,-0.057389415991686725],[123,157,68,-0.06396569522797853],[123,157,69,-0.0680326394200489],[123,157,70,-0.07450754319824217],[123,157,71,-0.07676597746980263],[123,157,72,-0.08116288642366096],[123,157,73,-0.0895332390746227],[123,157,74,-0.0750749360352513],[123,157,75,-0.058562228387777825],[123,157,76,-0.05032852772330294],[123,157,77,-0.04724754877644417],[123,157,78,-0.03821105294937646],[123,157,79,-0.041872933126691284],[123,158,64,-0.03992851619445667],[123,158,65,-0.04746566837150723],[123,158,66,-0.052812871862451996],[123,158,67,-0.05546916126936079],[123,158,68,-0.06251657022462753],[123,158,69,-0.06673181457915522],[123,158,70,-0.07251504474068401],[123,158,71,-0.07621034238801891],[123,158,72,-0.08014504151539097],[123,158,73,-0.08789879621083946],[123,158,74,-0.06935126597304431],[123,158,75,-0.05425701025865822],[123,158,76,-0.04127219481974738],[123,158,77,-0.03147758975744333],[123,158,78,-0.024830153580695513],[123,158,79,-0.03551739759122467],[123,159,64,-0.0913086737628611],[123,159,65,-0.09328855631300148],[123,159,66,-0.09068170511641208],[123,159,67,-0.08697288883635612],[123,159,68,-0.08667014213790157],[123,159,69,-0.08505434164692863],[123,159,70,-0.08187381199154795],[123,159,71,-0.08036362460050253],[123,159,72,-0.07688259932832049],[123,159,73,-0.07852261297622568],[123,159,74,-0.060727644785817235],[123,159,75,-0.03984700753010092],[123,159,76,-0.026005646728952836],[123,159,77,-0.01615164937234967],[123,159,78,-0.014947130158004106],[123,159,79,-0.02291039716968167],[123,160,64,-0.09040660640647341],[123,160,65,-0.0936706906162126],[123,160,66,-0.09079490530553075],[123,160,67,-0.08671115379680933],[123,160,68,-0.0847276376447948],[123,160,69,-0.08255090219818602],[123,160,70,-0.07736048534717321],[123,160,71,-0.07470534899433057],[123,160,72,-0.07352512196465143],[123,160,73,-0.07527514512377566],[123,160,74,-0.06484332462550467],[123,160,75,-0.03852455676216587],[123,160,76,-0.02296623747098464],[123,160,77,-0.01260453774729478],[123,160,78,-0.01043662437127113],[123,160,79,-0.014345892603604311],[123,161,64,-0.09004182742666833],[123,161,65,-0.09397676239777135],[123,161,66,-0.08997932327302681],[123,161,67,-0.08730456292764095],[123,161,68,-0.0842856081873106],[123,161,69,-0.07937400864148911],[123,161,70,-0.07389418645646342],[123,161,71,-0.07131266605919884],[123,161,72,-0.07162231824282249],[123,161,73,-0.07444280741194931],[123,161,74,-0.07321122393657575],[123,161,75,-0.039059333561049264],[123,161,76,-0.013031191191292667],[123,161,77,-3.7245695302904475E-4],[123,161,78,0.005119891725708883],[123,161,79,0.00585624995442427],[123,162,64,-0.09580043594157586],[123,162,65,-0.09911948819440806],[123,162,66,-0.09584588740090967],[123,162,67,-0.09202377382809437],[123,162,68,-0.08795922538923676],[123,162,69,-0.08189377975982923],[123,162,70,-0.0768187286030659],[123,162,71,-0.07411992812122836],[123,162,72,-0.07608476932332289],[123,162,73,-0.0782114945248879],[123,162,74,-0.07542329504783579],[123,162,75,-0.0681023228439046],[123,162,76,-0.020581557324499823],[123,162,77,-0.002675378300300006],[123,162,78,0.010851688629049713],[123,162,79,0.018507147613845226],[123,163,64,-0.09364487544389258],[123,163,65,-0.09670947675542364],[123,163,66,-0.09606627808392072],[123,163,67,-0.09058851620235933],[123,163,68,-0.08615473275556061],[123,163,69,-0.08308160845612601],[123,163,70,-0.07781234781924094],[123,163,71,-0.07354291051937437],[123,163,72,-0.07515593049814472],[123,163,73,-0.07349161070202259],[123,163,74,-0.07048789657728313],[123,163,75,-0.0647298105036414],[123,163,76,-0.045155910474599874],[123,163,77,-0.02462875291984141],[123,163,78,-0.008676640595091122],[123,163,79,-0.0025057318045112117],[123,164,64,-0.07751553581677993],[123,164,65,-0.07850460851135727],[123,164,66,-0.07363606765471717],[123,164,67,-0.0663924075624158],[123,164,68,-0.06186338342695838],[123,164,69,-0.05366538853406451],[123,164,70,-0.04993825559078362],[123,164,71,-0.046060758998858004],[123,164,72,-0.04317135663763311],[123,164,73,-0.038680342302837775],[123,164,74,-0.035580693694009166],[123,164,75,-0.03138340374820363],[123,164,76,-0.02464238149543752],[123,164,77,-0.007739094867797815],[123,164,78,-0.0025370176142529427],[123,164,79,0.005122164652271659],[123,165,64,-0.07269257087353778],[123,165,65,-0.07626011264383337],[123,165,66,-0.07573732270306305],[123,165,67,-0.06935678852805245],[123,165,68,-0.06441428753786796],[123,165,69,-0.05459740601038319],[123,165,70,-0.048601526449443155],[123,165,71,-0.04176618811060612],[123,165,72,-0.032918737360360814],[123,165,73,-0.02481381323614043],[123,165,74,-0.020643398671347152],[123,165,75,-0.017782846681028544],[123,165,76,-0.01775387970073458],[123,165,77,-0.00303921046366094],[123,165,78,-1.4587505957466829E-5],[123,165,79,0.014735406242185244],[123,166,64,-0.07283249912313683],[123,166,65,-0.072594768243277],[123,166,66,-0.07322813154106031],[123,166,67,-0.06822583663830517],[123,166,68,-0.062473225849460676],[123,166,69,-0.051644290412961175],[123,166,70,-0.046771535205538825],[123,166,71,-0.03761938858731065],[123,166,72,-0.028977315260853037],[123,166,73,-0.02118938227792505],[123,166,74,-0.015869885441391104],[123,166,75,-0.011474172973584718],[123,166,76,-0.014645301911510783],[123,166,77,-0.008464106168554506],[123,166,78,-0.005364321216296323],[123,166,79,0.010143169991478004],[123,167,64,-0.06687209840166866],[123,167,65,-0.06674066596820623],[123,167,66,-0.06937604097515654],[123,167,67,-0.06275060656238976],[123,167,68,-0.05781081487394295],[123,167,69,-0.04833216227653303],[123,167,70,-0.043056928584486454],[123,167,71,-0.03501557394007973],[123,167,72,-0.02721260760205392],[123,167,73,-0.01820784404368779],[123,167,74,-0.012234998193200272],[123,167,75,-0.011317541081549337],[123,167,76,-0.014148349266606852],[123,167,77,-0.011200630675503347],[123,167,78,-0.008159397171727038],[123,167,79,0.010888990005659946],[123,168,64,-0.06675434300584016],[123,168,65,-0.06705544124176303],[123,168,66,-0.06859139154613061],[123,168,67,-0.06406570331960429],[123,168,68,-0.0555454074255196],[123,168,69,-0.0455069989293575],[123,168,70,-0.03920270395945642],[123,168,71,-0.03254672154246556],[123,168,72,-0.02443963478324196],[123,168,73,-0.015241962581171498],[123,168,74,-0.008610211660196362],[123,168,75,-0.007264356001838529],[123,168,76,-0.010218351513912066],[123,168,77,-0.007294400821224411],[123,168,78,-0.007101839591418593],[123,168,79,0.013060935826446046],[123,169,64,-0.06910675347797449],[123,169,65,-0.06812822093211843],[123,169,66,-0.06712424876480488],[123,169,67,-0.060667489114671076],[123,169,68,-0.05026576325461436],[123,169,69,-0.0419686632055809],[123,169,70,-0.034216612303830204],[123,169,71,-0.03035752895411785],[123,169,72,-0.027710824661849376],[123,169,73,-0.02059202566953927],[123,169,74,-0.017457566875935665],[123,169,75,-0.017698647286517447],[123,169,76,-0.014645843605633507],[123,169,77,-0.011429757284666608],[123,169,78,-0.001719857326622061],[123,169,79,0.023539990953416565],[123,170,64,-0.07228986907493777],[123,170,65,-0.07186959386308439],[123,170,66,-0.06917218682818715],[123,170,67,-0.06359492795592164],[123,170,68,-0.05413994867342534],[123,170,69,-0.04698359687612273],[123,170,70,-0.0387910083502829],[123,170,71,-0.033088870359943554],[123,170,72,-0.029622104261223775],[123,170,73,-0.025243631223263438],[123,170,74,-0.02340120700882173],[123,170,75,-0.022045224750646783],[123,170,76,-0.019426722890439133],[123,170,77,-0.01890145548042668],[123,170,78,-0.010617963408114394],[123,170,79,0.011306542972049784],[123,171,64,-0.07018127196597898],[123,171,65,-0.07012450401784867],[123,171,66,-0.06734830886741011],[123,171,67,-0.05898013583257305],[123,171,68,-0.05267746549340803],[123,171,69,-0.044601947822117335],[123,171,70,-0.03660827142014239],[123,171,71,-0.03157384276222963],[123,171,72,-0.027392632396741542],[123,171,73,-0.023471885364775763],[123,171,74,-0.02541576033178307],[123,171,75,-0.022296353529918378],[123,171,76,-0.017998623869031033],[123,171,77,-0.01610185919745112],[123,171,78,-0.01149979189224422],[123,171,79,0.0030232199452402374],[123,172,64,-0.06554502189046109],[123,172,65,-0.06351408961641823],[123,172,66,-0.05890886680895168],[123,172,67,-0.05275984426541967],[123,172,68,-0.04732754159128483],[123,172,69,-0.03835339441356142],[123,172,70,-0.030159504279471616],[123,172,71,-0.027909411036935533],[123,172,72,-0.024967114712845226],[123,172,73,-0.02096886837387718],[123,172,74,-0.02134173373149169],[123,172,75,-0.019949528984388565],[123,172,76,-0.015560044409891394],[123,172,77,-0.012634358850857471],[123,172,78,-0.010526961618610524],[123,172,79,-0.009201647326424678],[123,173,64,-0.06315561590241185],[123,173,65,-0.05917976698623104],[123,173,66,-0.055383403380743546],[123,173,67,-0.04744084476088023],[123,173,68,-0.04381099152705001],[123,173,69,-0.03728725906491573],[123,173,70,-0.02938911852516353],[123,173,71,-0.023745087960042655],[123,173,72,-0.022627065232460247],[123,173,73,-0.0204470421876687],[123,173,74,-0.01932324971332776],[123,173,75,-0.01814194000020536],[123,173,76,-0.012786118768460267],[123,173,77,-0.01201217268766195],[123,173,78,-0.00875392247085469],[123,173,79,-0.0093235659527596],[123,174,64,-0.059518821993652826],[123,174,65,-0.052831610775620076],[123,174,66,-0.049573244800667396],[123,174,67,-0.04342075414758674],[123,174,68,-0.038015946932672615],[123,174,69,-0.034506777786775605],[123,174,70,-0.027456620406891938],[123,174,71,-0.022395419897610624],[123,174,72,-0.019428186153750138],[123,174,73,-0.01688539173206005],[123,174,74,-0.017190853726766417],[123,174,75,-0.01409616609402052],[123,174,76,-0.011170953505966183],[123,174,77,-0.008368781858246153],[123,174,78,-0.004275161435651299],[123,174,79,-0.002208817433005783],[123,175,64,-0.05286418932589185],[123,175,65,-0.04664655655706686],[123,175,66,-0.0430752468047587],[123,175,67,-0.03607169122437147],[123,175,68,-0.03174377514642687],[123,175,69,-0.028287104092389298],[123,175,70,-0.023304498074722388],[123,175,71,-0.019213637232466593],[123,175,72,-0.01568966339339181],[123,175,73,-0.013250671434370559],[123,175,74,-0.012328187925316661],[123,175,75,-0.011616160037074464],[123,175,76,-0.007077036444248933],[123,175,77,-0.0033928188700236162],[123,175,78,-6.842524123791202E-4],[123,175,79,4.2371783085207485E-4],[123,176,64,-0.05329878372109751],[123,176,65,-0.04273565639483902],[123,176,66,-0.03917894075375901],[123,176,67,-0.033219646767004646],[123,176,68,-0.029413937458892245],[123,176,69,-0.024938577213702406],[123,176,70,-0.02074010782066525],[123,176,71,-0.015528376745089098],[123,176,72,-0.01101026005855009],[123,176,73,-0.009107273471890706],[123,176,74,-0.006560489903577125],[123,176,75,-0.008333724109852768],[123,176,76,-0.0051818149157228125],[123,176,77,-0.0019036712281449977],[123,176,78,-8.24313161595978E-4],[123,176,79,4.511026384868863E-4],[123,177,64,-0.05943627976475392],[123,177,65,-0.047171779588351156],[123,177,66,-0.036112098206476345],[123,177,67,-0.029115811639990885],[123,177,68,-0.02435884756178565],[123,177,69,-0.0199579027648681],[123,177,70,-0.014823060814587244],[123,177,71,-0.013524775035485742],[123,177,72,-0.007357374660127425],[123,177,73,-0.006774029751278082],[123,177,74,-0.008939395441159919],[123,177,75,-0.023337910980778583],[123,177,76,-0.05097007416961978],[123,177,77,-0.058891219643327164],[123,177,78,-0.06086649320410921],[123,177,79,-0.07195332516174555],[123,178,64,-0.0632389804735507],[123,178,65,-0.04998749481975463],[123,178,66,-0.037108012828700965],[123,178,67,-0.030439605747479392],[123,178,68,-0.027670234180835793],[123,178,69,-0.023567068642518077],[123,178,70,-0.01928115264226378],[123,178,71,-0.017749923137601084],[123,178,72,-0.012747552269010198],[123,178,73,-0.01303929863671012],[123,178,74,-0.009398616948018329],[123,178,75,-0.022849393502311917],[123,178,76,-0.04713193545001739],[123,178,77,-0.06184372950544957],[123,178,78,-0.07346336979522822],[123,178,79,-0.0765646017167873],[123,179,64,-0.061720349885122726],[123,179,65,-0.04759142917264114],[123,179,66,-0.03568533978812041],[123,179,67,-0.02960843487580725],[123,179,68,-0.026176429627602887],[123,179,69,-0.023246873122416814],[123,179,70,-0.020130474976278706],[123,179,71,-0.016331474967512596],[123,179,72,-0.010783530282680615],[123,179,73,-0.011685117541260559],[123,179,74,-0.010975024644200373],[123,179,75,-0.029312685742529723],[123,179,76,-0.05062677970387843],[123,179,77,-0.07176756617513896],[123,179,78,-0.09056235337672021],[123,179,79,-0.08503161563220601],[123,180,64,-0.050721615689805905],[123,180,65,-0.03381310840450552],[123,180,66,-0.02511271382334719],[123,180,67,-0.017941458755121098],[123,180,68,-0.013109855472498294],[123,180,69,-0.011534718503045924],[123,180,70,-0.0091909062398262],[123,180,71,-0.0040439676826110466],[123,180,72,1.3905575698884565E-4],[123,180,73,0.0017738722070883839],[123,180,74,0.0025607940764346554],[123,180,75,-0.0244593078604277],[123,180,76,-0.04181699530665775],[123,180,77,-0.06439178218810579],[123,180,78,-0.07924785069133879],[123,180,79,-0.07715343070652221],[123,181,64,-0.03699873678533212],[123,181,65,-0.02770477542138927],[123,181,66,-0.02238733831354263],[123,181,67,-0.019180734596158613],[123,181,68,-0.014828129096195408],[123,181,69,-0.011730237614619457],[123,181,70,-0.011771462991939124],[123,181,71,-0.00411675533538583],[123,181,72,0.00258124380097538],[123,181,73,0.008910409564945612],[123,181,74,0.009768113036016324],[123,181,75,-0.004971096613203146],[123,181,76,-0.005187889241518143],[123,181,77,-0.024116846797457014],[123,181,78,-0.049520540107308095],[123,181,79,-0.055333862090040514],[123,182,64,-0.03548526974469482],[123,182,65,-0.0283442811618186],[123,182,66,-0.02272686688982975],[123,182,67,-0.015755195990779],[123,182,68,-0.0121215969151314],[123,182,69,-0.00993058651921147],[123,182,70,-0.010126479585877646],[123,182,71,-0.00450874031901341],[123,182,72,0.004031727091645676],[123,182,73,0.010864594471936107],[123,182,74,0.014317163522994239],[123,182,75,-7.63638399346081E-4],[123,182,76,-0.004215148087079356],[123,182,77,-0.026956830304371023],[123,182,78,-0.050354016183231695],[123,182,79,-0.0629243675579633],[123,183,64,-0.03301291540581171],[123,183,65,-0.026305011848005475],[123,183,66,-0.019356855094225175],[123,183,67,-0.012429315984377659],[123,183,68,-0.008110373241267108],[123,183,69,-0.006496377646765819],[123,183,70,-0.0063468956885330274],[123,183,71,-9.957251975781095E-4],[123,183,72,0.004648063323058255],[123,183,73,0.011766539737915097],[123,183,74,0.014247815204952607],[123,183,75,0.01222036704111766],[123,183,76,0.009153845805829772],[123,183,77,-0.014266162470933218],[123,183,78,-0.03534888993918043],[123,183,79,-0.050137059603524506],[123,184,64,-0.0340544984700506],[123,184,65,-0.025988930486698883],[123,184,66,-0.018436686066315336],[123,184,67,-0.01239353840454821],[123,184,68,-0.008117201806566735],[123,184,69,-0.007335241206732054],[123,184,70,-0.004205663645524743],[123,184,71,0.002316855989660596],[123,184,72,0.008355531473612288],[123,184,73,0.01575070123396366],[123,184,74,0.014659491519488671],[123,184,75,0.014910203118708887],[123,184,76,0.007938869694812497],[123,184,77,-0.016950749496511253],[123,184,78,-0.035275835880890956],[123,184,79,-0.05180145156333525],[123,185,64,-0.03660305921954253],[123,185,65,-0.027571631090695367],[123,185,66,-0.02081048662674194],[123,185,67,-0.011702568149354622],[123,185,68,-0.008328066044525503],[123,185,69,-0.005810875947358754],[123,185,70,-0.004697503540565751],[123,185,71,0.00271720518559411],[123,185,72,0.008383738046209982],[123,185,73,0.0164466211486283],[123,185,74,0.01806787514878322],[123,185,75,0.017158501752966543],[123,185,76,0.011596421180148786],[123,185,77,-0.011782241961477393],[123,185,78,-0.029293547253039696],[123,185,79,-0.046191502362190835],[123,186,64,-0.042694198029743086],[123,186,65,-0.03323724115130326],[123,186,66,-0.02652965102751695],[123,186,67,-0.018303682181222608],[123,186,68,-0.012674481483647845],[123,186,69,-0.01122482833655608],[123,186,70,-0.008340576514647938],[123,186,71,-0.0032274616201806994],[123,186,72,0.0048758304373011235],[123,186,73,0.014149672420489229],[123,186,74,0.015250422849353601],[123,186,75,0.013957704988572475],[123,186,76,0.0033928277222696947],[123,186,77,-0.015879675577277062],[123,186,78,-0.03243779776227233],[123,186,79,-0.045809673641497184],[123,187,64,-0.043890577675722686],[123,187,65,-0.036588679849328995],[123,187,66,-0.027094081354358757],[123,187,67,-0.019149618106375693],[123,187,68,-0.012902245641752519],[123,187,69,-0.010617626435668104],[123,187,70,-0.006313093555321586],[123,187,71,-0.0037553792224348653],[123,187,72,0.0030712623705789893],[123,187,73,0.012525489335573153],[123,187,74,0.016078916821519185],[123,187,75,0.014870904980319372],[123,187,76,-0.005322961477009596],[123,187,77,-0.025458228217754945],[123,187,78,-0.04502351887525393],[123,187,79,-0.05849990891989856],[123,188,64,-0.04482015632936298],[123,188,65,-0.03322707903962789],[123,188,66,-0.01934418461187104],[123,188,67,-0.009841493752759597],[123,188,68,-0.004627532940240514],[123,188,69,0.004585115159708997],[123,188,70,0.007358049569602426],[123,188,71,0.009377161488713287],[123,188,72,0.01445387025350417],[123,188,73,0.024974488842186934],[123,188,74,0.030393763781610322],[123,188,75,0.03312506041839436],[123,188,76,0.004704260171828956],[123,188,77,-0.013491439967034884],[123,188,78,-0.038247888751750364],[123,188,79,-0.04835677926876575],[123,189,64,-0.050325362514267294],[123,189,65,-0.03697555884496524],[123,189,66,-0.021604148200154882],[123,189,67,-0.01244050148434718],[123,189,68,-0.005839091744618302],[123,189,69,0.0032774564732393485],[123,189,70,0.00848303170884629],[123,189,71,0.012611601535199454],[123,189,72,0.020354743509163248],[123,189,73,0.030132323172441994],[123,189,74,0.04009421382612262],[123,189,75,0.044493833923165665],[123,189,76,-0.0018929260623287009],[123,189,77,-0.028229844695648446],[123,189,78,-0.05195097427186818],[123,189,79,-0.0650669776044875],[123,190,64,-0.04798012621272871],[123,190,65,-0.03473370648017142],[123,190,66,-0.02332807555111488],[123,190,67,-0.015012245865003479],[123,190,68,-0.0066195380310759],[123,190,69,0.0027202470732865663],[123,190,70,0.00856801329854566],[123,190,71,0.013133255987180001],[123,190,72,0.02257554421795871],[123,190,73,0.029735938968823317],[123,190,74,0.03977433868004962],[123,190,75,0.044318948272746767],[123,190,76,-0.0031407387817672175],[123,190,77,-0.037105912385860126],[123,190,78,-0.059794089121757835],[123,190,79,-0.06645144089818318],[123,191,64,-0.04541529424312439],[123,191,65,-0.031630927589709146],[123,191,66,-0.021532097620634655],[123,191,67,-0.014948911433479942],[123,191,68,-0.008571230199067845],[123,191,69,0.0015256526055074937],[123,191,70,0.00822678821389336],[123,191,71,0.013832026143185891],[123,191,72,0.022367719056798657],[123,191,73,0.02718222519030733],[123,191,74,0.035592064782964894],[123,191,75,0.039981199880707696],[123,191,76,0.0015040808058663507],[123,191,77,-0.03941731823930955],[123,191,78,-0.05397233453547859],[123,191,79,-0.0538217909513498],[123,192,64,-0.04391815952008252],[123,192,65,-0.031146094817154343],[123,192,66,-0.02228050304291189],[123,192,67,-0.014018820454603148],[123,192,68,-0.010903684598458585],[123,192,69,0.002151385437947448],[123,192,70,0.012569138829744864],[123,192,71,0.016468948229285574],[123,192,72,0.021761248509616304],[123,192,73,0.029406400302384506],[123,192,74,0.033591584236387306],[123,192,75,0.037943289591604784],[123,192,76,-0.002779943760762134],[123,192,77,-0.04632904021893337],[123,192,78,-0.05627894639355929],[123,192,79,-0.04929793159956557],[123,193,64,-0.039547758141512984],[123,193,65,-0.029534602866583687],[123,193,66,-0.018251127567245312],[123,193,67,-0.009355057650076368],[123,193,68,-0.003923780676324429],[123,193,69,0.0037328220344380186],[123,193,70,0.01471331380651221],[123,193,71,0.013440391848441202],[123,193,72,0.013470524136013434],[123,193,73,0.019765296235261492],[123,193,74,0.02424303207273784],[123,193,75,0.026369387656138082],[123,193,76,0.007113094155831515],[123,193,77,-0.02323355971853249],[123,193,78,-0.023834833427931232],[123,193,79,-0.015404564201557808],[123,194,64,-0.047566166740754645],[123,194,65,-0.035104347530403146],[123,194,66,-0.02351459653741486],[123,194,67,-0.011640696259727648],[123,194,68,-0.0069249662184019956],[123,194,69,-8.029648662056382E-4],[123,194,70,0.007485808707064973],[123,194,71,0.007780852117227233],[123,194,72,0.009857332086258302],[123,194,73,0.0147196580447653],[123,194,74,0.020688886516067956],[123,194,75,0.024424348094930645],[123,194,76,0.011028895969928721],[123,194,77,-0.025581081933478855],[123,194,78,-0.028768721142723788],[123,194,79,-0.018054453583175353],[123,195,64,-0.050615658198739366],[123,195,65,-0.03756320406088866],[123,195,66,-0.023599289413088906],[123,195,67,-0.012154700380655345],[123,195,68,-0.005027931609702538],[123,195,69,-0.0018958135532967935],[123,195,70,0.004914443176519151],[123,195,71,0.008315729090554155],[123,195,72,0.01042191623793376],[123,195,73,0.015044333677620758],[123,195,74,0.019547728411586696],[123,195,75,0.02561570666273437],[123,195,76,0.0077766439221360825],[123,195,77,-0.03889224892488015],[123,195,78,-0.03448522757146032],[123,195,79,-0.024105526118790674],[123,196,64,-0.04925351783452463],[123,196,65,-0.04183314395615788],[123,196,66,-0.03415154197539834],[123,196,67,-0.029131839322366737],[123,196,68,-0.02403805992406481],[123,196,69,-0.022741132403228517],[123,196,70,-0.020950113501052997],[123,196,71,-0.022622079668269235],[123,196,72,-0.019310788348383387],[123,196,73,-0.01707369064610903],[123,196,74,-0.011487939139336253],[123,196,75,-0.006617171847176029],[123,196,76,-0.02926466300867022],[123,196,77,-0.06763315155716906],[123,196,78,-0.06195873833329721],[123,196,79,-0.050073962595580265],[123,197,64,-0.048450584956218096],[123,197,65,-0.043648791744294674],[123,197,66,-0.03502719492681748],[123,197,67,-0.028695777695900287],[123,197,68,-0.02704179518215509],[123,197,69,-0.023616240696296767],[123,197,70,-0.02071480282091845],[123,197,71,-0.02239984785939761],[123,197,72,-0.01834822826392296],[123,197,73,-0.015417974274047674],[123,197,74,-0.010223369610207408],[123,197,75,-0.005359314649166405],[123,197,76,-0.04439753596696452],[123,197,77,-0.07738969825618053],[123,197,78,-0.07062543034327327],[123,197,79,-0.06404561409177928],[123,198,64,-0.05129969671661401],[123,198,65,-0.04617804746947449],[123,198,66,-0.036305964400106985],[123,198,67,-0.03021895431212132],[123,198,68,-0.02493762870855988],[123,198,69,-0.0227934328383997],[123,198,70,-0.022641540993815684],[123,198,71,-0.021945070652657522],[123,198,72,-0.019625199889620637],[123,198,73,-0.014862267349212421],[123,198,74,-0.009491470683884465],[123,198,75,-0.004964977458513958],[123,198,76,-0.043166740053239235],[123,198,77,-0.06873929251473802],[123,198,78,-0.061080933108202964],[123,198,79,-0.06358148918368701],[123,199,64,-0.05312794090188146],[123,199,65,-0.04647237012694559],[123,199,66,-0.03750705833072879],[123,199,67,-0.032910347497275796],[123,199,68,-0.02453007814412049],[123,199,69,-0.02329500462975634],[123,199,70,-0.023300748908489516],[123,199,71,-0.02192497822451367],[123,199,72,-0.020123316727891832],[123,199,73,-0.014084972886795097],[123,199,74,-0.00952077036449872],[123,199,75,-0.006127203683004634],[123,199,76,-0.055428698256459095],[123,199,77,-0.07054616346902569],[123,199,78,-0.06453917873884922],[123,199,79,-0.0649851097021848],[123,200,64,-0.05682892518664273],[123,200,65,-0.04947255745887362],[123,200,66,-0.039686491542214986],[123,200,67,-0.03313780293681215],[123,200,68,-0.026198135489695504],[123,200,69,-0.022341954819500978],[123,200,70,-0.021364498935476997],[123,200,71,-0.02187225748593101],[123,200,72,-0.017989342549328324],[123,200,73,-0.01126655126145129],[123,200,74,-0.007375191589372512],[123,200,75,-0.002549369788314517],[123,200,76,-0.0537513867125676],[123,200,77,-0.06263716350959801],[123,200,78,-0.05598271695551807],[123,200,79,-0.06378100828735211],[123,201,64,-0.051112459794876205],[123,201,65,-0.04458409338320213],[123,201,66,-0.03345216844264491],[123,201,67,-0.025666631913095123],[123,201,68,-0.01779991652770624],[123,201,69,-0.01360542495711313],[123,201,70,-0.015166482306479878],[123,201,71,-0.01458600268057815],[123,201,72,-0.013673851720235719],[123,201,73,-0.005896546531416247],[123,201,74,-0.0032296620666257547],[123,201,75,-0.01809959614359654],[123,201,76,-0.0756475192972433],[123,201,77,-0.07741285600837623],[123,201,78,-0.06294998376892584],[123,201,79,-0.0654099245350637],[123,202,64,-0.0607226524556511],[123,202,65,-0.05181194231451006],[123,202,66,-0.04170280958905177],[123,202,67,-0.03245187853075264],[123,202,68,-0.02609046907383955],[123,202,69,-0.019501896423237255],[123,202,70,-0.02093403200434603],[123,202,71,-0.020026246380036375],[123,202,72,-0.01794951108534014],[123,202,73,-0.009680265633024904],[123,202,74,-0.007218586243734046],[123,202,75,-0.011680845185689518],[123,202,76,-0.06680593093445608],[123,202,77,-0.06954316858700264],[123,202,78,-0.057051648192368964],[123,202,79,-0.06357155645282873],[123,203,64,-0.0632019547878397],[123,203,65,-0.053067113959243406],[123,203,66,-0.044468453191945076],[123,203,67,-0.03620082326300127],[123,203,68,-0.02900796156572838],[123,203,69,-0.020839496332428778],[123,203,70,-0.022445998319486418],[123,203,71,-0.02174964896318994],[123,203,72,-0.018838648227046742],[123,203,73,-0.009749849101556615],[123,203,74,-0.007487711550736201],[123,203,75,-0.021147368851566383],[123,203,76,-0.07133116863379822],[123,203,77,-0.08303271524653486],[123,203,78,-0.06401980262827892],[123,203,79,-0.07723012844198145],[123,204,64,-0.0594584062685046],[123,204,65,-0.04527092308432765],[123,204,66,-0.03534834188079819],[123,204,67,-0.023776035186602373],[123,204,68,-0.014473648581781018],[123,204,69,-0.007795248257049206],[123,204,70,-0.005916173922902307],[123,204,71,-0.0037949088246773954],[123,204,72,8.957196063764661E-4],[123,204,73,0.008489091943207419],[123,204,74,0.011953195479888767],[123,204,75,-0.003594180378009227],[123,204,76,-0.05548081332349476],[123,204,77,-0.06920510304573527],[123,204,78,-0.05944861612192083],[123,204,79,-0.0784054185424832],[123,205,64,-0.0700236184077708],[123,205,65,-0.05886715240140826],[123,205,66,-0.0470283661577314],[123,205,67,-0.03630588988954368],[123,205,68,-0.02875846602717083],[123,205,69,-0.023284135880419304],[123,205,70,-0.02081692519381123],[123,205,71,-0.015635638590201187],[123,205,72,-0.006021014044041845],[123,205,73,0.0015342425416864508],[123,205,74,0.0069328127924946775],[123,205,75,0.014688530627479351],[123,205,76,0.008475532252947391],[123,205,77,-0.005480672869251895],[123,205,78,-0.019320564845622466],[123,205,79,-0.050487797742679835],[123,206,64,-0.07224483338540297],[123,206,65,-0.059337117918911234],[123,206,66,-0.04843971869945671],[123,206,67,-0.039191577045106785],[123,206,68,-0.03261624670047884],[123,206,69,-0.02685809128949998],[123,206,70,-0.02428559697011798],[123,206,71,-0.018071646528277724],[123,206,72,-0.008566886481111813],[123,206,73,3.714119549218242E-4],[123,206,74,0.008071348932876796],[123,206,75,0.013929253951082021],[123,206,76,0.006760930469375037],[123,206,77,-0.008670933139462357],[123,206,78,-0.027826937725175145],[123,206,79,-0.0503040925172341],[123,207,64,-0.07275146591589743],[123,207,65,-0.06362575336615733],[123,207,66,-0.052656691572782174],[123,207,67,-0.04323082127975092],[123,207,68,-0.038355976953633464],[123,207,69,-0.033488985525401097],[123,207,70,-0.029761431754007694],[123,207,71,-0.023911976476936825],[123,207,72,-0.012747252087329325],[123,207,73,2.6999825513450426E-4],[123,207,74,0.007404187786070465],[123,207,75,0.012076296137187081],[123,207,76,0.006307953618693966],[123,207,77,-3.8375545545456594E-4],[123,207,78,-0.02137862266831251],[123,207,79,-0.04989655446209529],[123,208,64,-0.07156361002451328],[123,208,65,-0.06361883009931342],[123,208,66,-0.05422275568206206],[123,208,67,-0.04667509298689218],[123,208,68,-0.04244053579057874],[123,208,69,-0.03727997528551896],[123,208,70,-0.03151754278481585],[123,208,71,-0.02497265641407967],[123,208,72,-0.015260681365008702],[123,208,73,-0.003323892877428458],[123,208,74,0.0043195812870850114],[123,208,75,0.009830426049234745],[123,208,76,0.016194352434509923],[123,208,77,0.012684116259730774],[123,208,78,-0.012955991481909061],[123,208,79,-0.06369853149934648],[123,209,64,-0.06978688988564129],[123,209,65,-0.0636609645108969],[123,209,66,-0.05578303136911432],[123,209,67,-0.04958555885157501],[123,209,68,-0.04733995660241702],[123,209,69,-0.03910094143023869],[123,209,70,-0.03288926461266185],[123,209,71,-0.02525727515848096],[123,209,72,-0.01682779545185112],[123,209,73,-0.004354439194271378],[123,209,74,0.0023814407672158866],[123,209,75,0.00893697384080526],[123,209,76,0.015022270437502303],[123,209,77,0.005762150757180387],[123,209,78,-0.017647529698204226],[123,209,79,-0.06444617586383118],[123,210,64,-0.07345216624354983],[123,210,65,-0.06824569671939507],[123,210,66,-0.06170121806769449],[123,210,67,-0.05597244407960203],[123,210,68,-0.052869297158971984],[123,210,69,-0.04713297786353726],[123,210,70,-0.040174848613388436],[123,210,71,-0.030967860978934364],[123,210,72,-0.022735837077146492],[123,210,73,-0.011271668667928947],[123,210,74,-0.004187754544100558],[123,210,75,0.001732969278512908],[123,210,76,0.008565373970276347],[123,210,77,0.004003588002014176],[123,210,78,-0.02485811149211943],[123,210,79,-0.07423853492086077],[123,211,64,-0.07283641754906534],[123,211,65,-0.0686042400314981],[123,211,66,-0.06593937685016382],[123,211,67,-0.056921722433798214],[123,211,68,-0.05302798580287442],[123,211,69,-0.048342363053088144],[123,211,70,-0.04279352700252184],[123,211,71,-0.03229596502540372],[123,211,72,-0.023500822874468377],[123,211,73,-0.013140530968954317],[123,211,74,-0.004689960867981263],[123,211,75,-0.0029963018811835496],[123,211,76,0.003822959962187747],[123,211,77,-0.007093154434992966],[123,211,78,-0.041232742493942584],[123,211,79,-0.08689357880854817],[123,212,64,-0.06439099968786016],[123,212,65,-0.06333628511596498],[123,212,66,-0.062437711467570225],[123,212,67,-0.06045857485126058],[123,212,68,-0.05769919026285972],[123,212,69,-0.05528957803052696],[123,212,70,-0.05283939176792045],[123,212,71,-0.04503434221074358],[123,212,72,-0.03440427197560009],[123,212,73,-0.0236693987858084],[123,212,74,-0.01652604100852606],[123,212,75,-0.014534825840387414],[123,212,76,-0.005081253501897032],[123,212,77,-0.020437853234778793],[123,212,78,-0.05102685544858036],[123,212,79,-0.09888242393489467],[123,213,64,-0.06623328841189234],[123,213,65,-0.06380599058208694],[123,213,66,-0.06364756525388791],[123,213,67,-0.06393467717221818],[123,213,68,-0.05892155741751025],[123,213,69,-0.058383352157605914],[123,213,70,-0.05244050771899536],[123,213,71,-0.04510681867432621],[123,213,72,-0.03272599733179883],[123,213,73,-0.02196474004754269],[123,213,74,-0.015409589413562519],[123,213,75,-0.01028867796367286],[123,213,76,-0.034783768941627304],[123,213,77,-0.07261827680488242],[123,213,78,-0.10322068052893056],[123,213,79,-0.10774475503760722],[123,214,64,-0.06640432279638694],[123,214,65,-0.06209298117863629],[123,214,66,-0.0629049073700312],[123,214,67,-0.06529270874245562],[123,214,68,-0.06451060286151106],[123,214,69,-0.0634612813439064],[123,214,70,-0.056682213401200734],[123,214,71,-0.046953738763289704],[123,214,72,-0.03713503965541182],[123,214,73,-0.02702999594696355],[123,214,74,-0.019984911347035172],[123,214,75,-0.014659150404615323],[123,214,76,-0.05362894610477693],[123,214,77,-0.08290993226815585],[123,214,78,-0.11174580287048258],[123,214,79,-0.10756798285164412],[123,215,64,-0.06822250302777562],[123,215,65,-0.0655917746452625],[123,215,66,-0.06648152836730989],[123,215,67,-0.06822501807560968],[123,215,68,-0.0690958062342975],[123,215,69,-0.0679371040234443],[123,215,70,-0.06131592137506699],[123,215,71,-0.05140351726836283],[123,215,72,-0.04089054600160584],[123,215,73,-0.03190031279518121],[123,215,74,-0.025570662692032148],[123,215,75,-0.028708799688712386],[123,215,76,-0.058735122126031526],[123,215,77,-0.08036492172565952],[123,215,78,-0.11131736606441599],[123,215,79,-0.10370443289201534],[123,216,64,-0.06912467218048009],[123,216,65,-0.06561717146275392],[123,216,66,-0.06679904528767916],[123,216,67,-0.06795601678275616],[123,216,68,-0.06861910836629397],[123,216,69,-0.06987599981275606],[123,216,70,-0.06407848736749586],[123,216,71,-0.052276901864193204],[123,216,72,-0.04223247413655498],[123,216,73,-0.03173336026498061],[123,216,74,-0.02683902832941769],[123,216,75,-0.07162554323079204],[123,216,76,-0.1047569974986377],[123,216,77,-0.10847907496763598],[123,216,78,-0.12213611761403978],[123,216,79,-0.10326880239132612],[123,217,64,-0.06679708937044057],[123,217,65,-0.06611409006602216],[123,217,66,-0.06582258430526328],[123,217,67,-0.06552641891441278],[123,217,68,-0.06562606498815103],[123,217,69,-0.0670379292969433],[123,217,70,-0.0629170605486033],[123,217,71,-0.05624034689677185],[123,217,72,-0.04783538592211295],[123,217,73,-0.03679009460071528],[123,217,74,-0.03895048872827553],[123,217,75,-0.08582492311009438],[123,217,76,-0.12110275271671045],[123,217,77,-0.1208519137467196],[123,217,78,-0.1183002641791795],[123,217,79,-0.10267408877176931],[123,218,64,-0.07257029336517129],[123,218,65,-0.07205366485378685],[123,218,66,-0.07171258405934403],[123,218,67,-0.07184178684654102],[123,218,68,-0.07308653399182119],[123,218,69,-0.07048579602926218],[123,218,70,-0.06843495005635768],[123,218,71,-0.06202797442325092],[123,218,72,-0.05397363057482503],[123,218,73,-0.04359917403127653],[123,218,74,-0.03698529474904254],[123,218,75,-0.08078280688444751],[123,218,76,-0.12420430190950882],[123,218,77,-0.12570369023202754],[123,218,78,-0.12210281291312033],[123,218,79,-0.10812558653463093],[123,219,64,-0.07603078446676241],[123,219,65,-0.0727424576189016],[123,219,66,-0.07354001578445397],[123,219,67,-0.07427511443214962],[123,219,68,-0.07381790988089948],[123,219,69,-0.0701871285288877],[123,219,70,-0.06758349180052924],[123,219,71,-0.06278085384737818],[123,219,72,-0.05448184223509252],[123,219,73,-0.04396383862002237],[123,219,74,-0.0457829310364452],[123,219,75,-0.09216817973529581],[123,219,76,-0.1328473980985396],[123,219,77,-0.1387566517719436],[123,219,78,-0.13309000575084823],[123,219,79,-0.11735322798645607],[123,220,64,-0.07306852227206266],[123,220,65,-0.06967060933096567],[123,220,66,-0.0681673263598144],[123,220,67,-0.06537810521937454],[123,220,68,-0.06362727437630458],[123,220,69,-0.05943574167830591],[123,220,70,-0.05457696602058129],[123,220,71,-0.04591559688148909],[123,220,72,-0.04022797718526465],[123,220,73,-0.027721763724919357],[123,220,74,-0.044173839350217806],[123,220,75,-0.09053991330008733],[123,220,76,-0.1263453250733031],[123,220,77,-0.13831389483352957],[123,220,78,-0.13514055886570045],[123,220,79,-0.12057778367030068],[123,221,64,-0.07543028239335381],[123,221,65,-0.07274269677117101],[123,221,66,-0.07185748190690988],[123,221,67,-0.06935137774015211],[123,221,68,-0.06585727333117203],[123,221,69,-0.0605884849144174],[123,221,70,-0.05525300580927445],[123,221,71,-0.04740753824590689],[123,221,72,-0.041535903099518656],[123,221,73,-0.03293401951056066],[123,221,74,-0.11094718708254993],[123,221,75,-0.14312153052228707],[123,221,76,-0.1591913776493568],[123,221,77,-0.14466816041412714],[123,221,78,-0.13442684926717838],[123,221,79,-0.12098487138859716],[123,222,64,-0.07576104527496655],[123,222,65,-0.07434363239674127],[123,222,66,-0.0733646709745647],[123,222,67,-0.07097159803369767],[123,222,68,-0.0667679021178661],[123,222,69,-0.06199251906704831],[123,222,70,-0.05431750837605297],[123,222,71,-0.047517885573179125],[123,222,72,-0.04353760748865845],[123,222,73,-0.03533044505571342],[123,222,74,-0.11581241003801818],[123,222,75,-0.14186623758655437],[123,222,76,-0.14875899139937526],[123,222,77,-0.13390182033967996],[123,222,78,-0.12332703271008742],[123,222,79,-0.11400854759787134],[123,223,64,-0.08347037617939079],[123,223,65,-0.07971279028692058],[123,223,66,-0.07818115336342651],[123,223,67,-0.07510781546829057],[123,223,68,-0.07037686726055727],[123,223,69,-0.06404777325928881],[123,223,70,-0.05762797061798462],[123,223,71,-0.05133366276008257],[123,223,72,-0.04773462517175084],[123,223,73,-0.039013997602658224],[123,223,74,-0.08495055804006196],[123,223,75,-0.11115048954817798],[123,223,76,-0.13309741299709577],[123,223,77,-0.13170182867510477],[123,223,78,-0.12031853910440247],[123,223,79,-0.11137073795137181],[123,224,64,-0.08777968389321675],[123,224,65,-0.08117919515817178],[123,224,66,-0.07946492507463035],[123,224,67,-0.0746182812896371],[123,224,68,-0.07257298299664923],[123,224,69,-0.06629259925037785],[123,224,70,-0.057579266354781194],[123,224,71,-0.05304144703678537],[123,224,72,-0.050125920483548206],[123,224,73,-0.04160129073669655],[123,224,74,-0.08794832523356563],[123,224,75,-0.1163178513253341],[123,224,76,-0.13613463353897434],[123,224,77,-0.13224302572387653],[123,224,78,-0.12429623465727821],[123,224,79,-0.11361306175385963],[123,225,64,-0.09662074164245911],[123,225,65,-0.08676189994933585],[123,225,66,-0.078527895515024],[123,225,67,-0.06862845587012488],[123,225,68,-0.06528343296396066],[123,225,69,-0.05847263662296914],[123,225,70,-0.05002002382400875],[123,225,71,-0.04563655725573909],[123,225,72,-0.04217421191115396],[123,225,73,-0.03309104265867743],[123,225,74,-0.08244529261087388],[123,225,75,-0.11316022308918745],[123,225,76,-0.13845407079813082],[123,225,77,-0.13310414782111374],[123,225,78,-0.12578558715865795],[123,225,79,-0.1146245676708945],[123,226,64,-0.1033466098779317],[123,226,65,-0.09531674173278987],[123,226,66,-0.08737910787910769],[123,226,67,-0.07666461677370377],[123,226,68,-0.06920413692377167],[123,226,69,-0.06376878874063817],[123,226,70,-0.05597411659011001],[123,226,71,-0.051990079265305425],[123,226,72,-0.0449194365747575],[123,226,73,-0.03571119576577983],[123,226,74,-0.06932600500822489],[123,226,75,-0.10004352962471459],[123,226,76,-0.13352102213569994],[123,226,77,-0.13400527960844505],[123,226,78,-0.12494431483566465],[123,226,79,-0.11396151032821603],[123,227,64,-0.10665952260886588],[123,227,65,-0.0996845305481711],[123,227,66,-0.09061871065913554],[123,227,67,-0.07927468226818551],[123,227,68,-0.07174692225846521],[123,227,69,-0.06706355876792279],[123,227,70,-0.05933328607308691],[123,227,71,-0.0542272963422014],[123,227,72,-0.04564655269679452],[123,227,73,-0.033397425520934845],[123,227,74,-0.07302661791537637],[123,227,75,-0.10558531846943528],[123,227,76,-0.14304769155932817],[123,227,77,-0.1425800760545301],[123,227,78,-0.1338539659013234],[123,227,79,-0.12259455664223409],[123,228,64,-0.09749606005298381],[123,228,65,-0.09160031989313314],[123,228,66,-0.0831417914085592],[123,228,67,-0.07212356199624298],[123,228,68,-0.06416161843202128],[123,228,69,-0.055946635215377766],[123,228,70,-0.05015920405070817],[123,228,71,-0.042529157343674476],[123,228,72,-0.03523511847994035],[123,228,73,-0.022384710029404564],[123,228,74,-0.0712902956891665],[123,228,75,-0.1034878634392796],[123,228,76,-0.14166638208532895],[123,228,77,-0.14342932780567108],[123,228,78,-0.1338023478098987],[123,228,79,-0.12536681195116137],[123,229,64,-0.09019957869082815],[123,229,65,-0.0885091388833186],[123,229,66,-0.08697298452434919],[123,229,67,-0.08128040285311558],[123,229,68,-0.07723652472922433],[123,229,69,-0.06794373699728172],[123,229,70,-0.06156057460788586],[123,229,71,-0.05458727971881669],[123,229,72,-0.04721009521058883],[123,229,73,-0.06602879911861159],[123,229,74,-0.1378109081577289],[123,229,75,-0.16781914765877687],[123,229,76,-0.1602981385013332],[123,229,77,-0.14454446119421574],[123,229,78,-0.13494308995344131],[123,229,79,-0.1275308678036015],[123,230,64,-0.08941305309321393],[123,230,65,-0.087568241159407],[123,230,66,-0.08575393652030873],[123,230,67,-0.08274552548461608],[123,230,68,-0.0815977034036649],[123,230,69,-0.0685534110017131],[123,230,70,-0.06209589639366245],[123,230,71,-0.05630445738369236],[123,230,72,-0.04627211609879851],[123,230,73,-0.06290789134692829],[123,230,74,-0.1305373045613385],[123,230,75,-0.15990177892016688],[123,230,76,-0.15343788334184635],[123,230,77,-0.14070240702727657],[123,230,78,-0.12800554409723908],[123,230,79,-0.12220321198936149],[123,231,64,-0.09452740321612085],[123,231,65,-0.09164686856677823],[123,231,66,-0.09093977765836012],[123,231,67,-0.0888538771980478],[123,231,68,-0.08565357747536026],[123,231,69,-0.0753345266485145],[123,231,70,-0.06557807616931856],[123,231,71,-0.06087230437266171],[123,231,72,-0.05174319404365868],[123,231,73,-0.08212934889793465],[123,231,74,-0.12393261727678616],[123,231,75,-0.13802872666120852],[123,231,76,-0.15143077917849648],[123,231,77,-0.1413159788652549],[123,231,78,-0.1289358213196867],[123,231,79,-0.12222329689542796],[123,232,64,-0.09650180891194225],[123,232,65,-0.09491318631258211],[123,232,66,-0.09373543056719999],[123,232,67,-0.0905831226639407],[123,232,68,-0.08597914190529114],[123,232,69,-0.07703892312011631],[123,232,70,-0.06803587958576511],[123,232,71,-0.061871256843092734],[123,232,72,-0.05410659413227667],[123,232,73,-0.08522635094252479],[123,232,74,-0.11737072679286092],[123,232,75,-0.12913996976320552],[123,232,76,-0.15298468280203714],[123,232,77,-0.14202189848893576],[123,232,78,-0.13115885257746837],[123,232,79,-0.12620209665866233],[123,233,64,-0.09803055450533299],[123,233,65,-0.09903148959476918],[123,233,66,-0.09636712215604976],[123,233,67,-0.0924460425000297],[123,233,68,-0.08460247290994041],[123,233,69,-0.077690999805863],[123,233,70,-0.07133501295586697],[123,233,71,-0.06593062500317153],[123,233,72,-0.05478846193852935],[123,233,73,-0.09137134731291707],[123,233,74,-0.11439350716645176],[123,233,75,-0.12237208403732437],[123,233,76,-0.1578942049818452],[123,233,77,-0.14849238202944737],[123,233,78,-0.13804973168691148],[123,233,79,-0.13273909698752678],[123,234,64,-0.10548260577841405],[123,234,65,-0.1049203505363899],[123,234,66,-0.10251785929558321],[123,234,67,-0.09640165396879458],[123,234,68,-0.08645681633990206],[123,234,69,-0.08185010141042796],[123,234,70,-0.07600074539047885],[123,234,71,-0.06978044659400706],[123,234,72,-0.05905922610748668],[123,234,73,-0.08247072339482892],[123,234,74,-0.093636972221614],[123,234,75,-0.11263868388328485],[123,234,76,-0.17007040534968904],[123,234,77,-0.16264381502255779],[123,234,78,-0.15206281851251277],[123,234,79,-0.1429571138190289],[123,235,64,-0.1047267144540964],[123,235,65,-0.10515617833593283],[123,235,66,-0.10346973603055402],[123,235,67,-0.09728640335213265],[123,235,68,-0.0901409408465354],[123,235,69,-0.08390087368219624],[123,235,70,-0.0757437180474435],[123,235,71,-0.06922895272856613],[123,235,72,-0.05791366977525733],[123,235,73,-0.044869063210111845],[123,235,74,-0.03093630819472977],[123,235,75,-0.015960064611124647],[123,235,76,-0.0755029683673702],[123,235,77,-0.17160292723323112],[123,235,78,-0.16201330786343943],[123,235,79,-0.153637351679819],[123,236,64,-0.10961798893364987],[123,236,65,-0.11199390380175908],[123,236,66,-0.11594255391717077],[123,236,67,-0.11320955846835112],[123,236,68,-0.10981837543440146],[123,236,69,-0.10478049141960741],[123,236,70,-0.09896174651047489],[123,236,71,-0.09032710732893898],[123,236,72,-0.07873754550324635],[123,236,73,-0.0666561783251299],[123,236,74,-0.05225977844912792],[123,236,75,-0.03694411650226395],[123,236,76,-0.09269897000497822],[123,236,77,-0.18085034167172295],[123,236,78,-0.17163696887585758],[123,236,79,-0.16319332529138264],[123,237,64,-0.10845079313756403],[123,237,65,-0.11050907721595313],[123,237,66,-0.11402211610287316],[123,237,67,-0.10943839312648479],[123,237,68,-0.10743823186943703],[123,237,69,-0.10281974860663454],[123,237,70,-0.09615514585750057],[123,237,71,-0.08877373078341223],[123,237,72,-0.07827860947150009],[123,237,73,-0.06649756145131457],[123,237,74,-0.05285377874468729],[123,237,75,-0.0775384028135846],[123,237,76,-0.13508428644136744],[123,237,77,-0.18251213720234907],[123,237,78,-0.17375672097335634],[123,237,79,-0.16559965328812415],[123,238,64,-0.110883641965352],[123,238,65,-0.11419376509187226],[123,238,66,-0.11700559759411121],[123,238,67,-0.11070369931493287],[123,238,68,-0.1075749274101481],[123,238,69,-0.10322727416362082],[123,238,70,-0.09602231967792005],[123,238,71,-0.08878400174650822],[123,238,72,-0.07864613946403312],[123,238,73,-0.06592732453958822],[123,238,74,-0.05970813310592617],[123,238,75,-0.11018393362756917],[123,238,76,-0.1729671152455608],[123,238,77,-0.17827878858208007],[123,238,78,-0.17288326483173724],[123,238,79,-0.1643371198208638],[123,239,64,-0.11805876354801143],[123,239,65,-0.12104576947684398],[123,239,66,-0.12180628545995104],[123,239,67,-0.11748343622987599],[123,239,68,-0.11231549230045473],[123,239,69,-0.10692096505702861],[123,239,70,-0.09952890318091341],[123,239,71,-0.09283733381737795],[123,239,72,-0.08126766228147075],[123,239,73,-0.06718133282508554],[123,239,74,-0.053994008145149056],[123,239,75,-0.10374596942117785],[123,239,76,-0.16345237322128164],[123,239,77,-0.17521282023048862],[123,239,78,-0.16925128371063575],[123,239,79,-0.1599545011353649],[123,240,64,-0.11684879476509062],[123,240,65,-0.12019330752890223],[123,240,66,-0.11953454270375602],[123,240,67,-0.1161089820931279],[123,240,68,-0.11430152119088977],[123,240,69,-0.10671845194847751],[123,240,70,-0.0983366160091658],[123,240,71,-0.09305168573847597],[123,240,72,-0.08147439857398764],[123,240,73,-0.06710267731442832],[123,240,74,-0.055202521362351265],[123,240,75,-0.10242235732128102],[123,240,76,-0.1523994194863389],[123,240,77,-0.1731105404226245],[123,240,78,-0.16659827150320705],[123,240,79,-0.1577420973445417],[123,241,64,-0.1204033772837447],[123,241,65,-0.1193673326028235],[123,241,66,-0.11906646726520156],[123,241,67,-0.11633571033470044],[123,241,68,-0.11660965477675625],[123,241,69,-0.10967032240013025],[123,241,70,-0.10207279787067394],[123,241,71,-0.09143458172628843],[123,241,72,-0.07871048587005391],[123,241,73,-0.06477464535530414],[123,241,74,-0.050676611133820576],[123,241,75,-0.03705379238359453],[123,241,76,-0.027517353686491178],[123,241,77,-0.016690721649032444],[123,241,78,-0.0259509567277333],[123,241,79,-0.06876740856405603],[123,242,64,-0.12488558104293224],[123,242,65,-0.12189905574889905],[123,242,66,-0.12124882984279209],[123,242,67,-0.11943922965373932],[123,242,68,-0.1180745373414962],[123,242,69,-0.11234878508609199],[123,242,70,-0.10300130929737075],[123,242,71,-0.09219268566008855],[123,242,72,-0.07910819545614008],[123,242,73,-0.06587736304171303],[123,242,74,-0.05235016505755123],[123,242,75,-0.03959712519147776],[123,242,76,-0.03170135404634819],[123,242,77,-0.01770678884759802],[123,242,78,-0.013342117270647044],[123,242,79,-0.06298098194378488],[123,243,64,-0.12308150918083563],[123,243,65,-0.12103110903816147],[123,243,66,-0.11887712786267993],[123,243,67,-0.11588119329706337],[123,243,68,-0.1168419419519498],[123,243,69,-0.1109705828524564],[123,243,70,-0.1009549595390068],[123,243,71,-0.08844290521953105],[123,243,72,-0.07994352785561519],[123,243,73,-0.06434410203137966],[123,243,74,-0.05007192628175998],[123,243,75,-0.040192703775656716],[123,243,76,-0.02994358125320752],[123,243,77,-0.013579557674977635],[123,243,78,-0.015814417621848934],[123,243,79,-0.06858307841381873],[123,244,64,-0.10651321980905885],[123,244,65,-0.09823765641475224],[123,244,66,-0.08826750552311943],[123,244,67,-0.07652959205389137],[123,244,68,-0.07252054860123634],[123,244,69,-0.062443762273685366],[123,244,70,-0.04713265273141126],[123,244,71,-0.03343615166013193],[123,244,72,-0.0220973292380649],[123,244,73,-0.007333776258647617],[123,244,74,0.006456498598188379],[123,244,75,0.016798986470124316],[123,244,76,0.028219909221923134],[123,244,77,0.043295602556991414],[123,244,78,0.039173567763791786],[123,244,79,-0.025533668227037468],[123,245,64,-0.10431473919953425],[123,245,65,-0.09520724285243354],[123,245,66,-0.0852837084995901],[123,245,67,-0.07476335299246933],[123,245,68,-0.06664460182801152],[123,245,69,-0.05589925295799221],[123,245,70,-0.041546856378827476],[123,245,71,-0.03031862077778802],[123,245,72,-0.018743612910988763],[123,245,73,-0.0029329214993521757],[123,245,74,0.009471884986622991],[123,245,75,0.019759042223353313],[123,245,76,0.03331018947501602],[123,245,77,0.0443158159997185],[123,245,78,0.049244942252781115],[123,245,79,-0.018955983137946372],[123,246,64,-0.10339593387194453],[123,246,65,-0.09262443997599605],[123,246,66,-0.08248198740197804],[123,246,67,-0.07064420169847482],[123,246,68,-0.06018661463390343],[123,246,69,-0.05036060067999065],[123,246,70,-0.03938979263206149],[123,246,71,-0.027555437424775966],[123,246,72,-0.014050649522474437],[123,246,73,5.21343600246027E-6],[123,246,74,0.012613235989702765],[123,246,75,0.0231286756899374],[123,246,76,0.035927521168928084],[123,246,77,0.04511860062614964],[123,246,78,0.058946870402296875],[123,246,79,0.0070045206085008055],[123,247,64,-0.10788074863576912],[123,247,65,-0.0947362767005602],[123,247,66,-0.08270715057064282],[123,247,67,-0.06988292557768398],[123,247,68,-0.05862062776340998],[123,247,69,-0.050896926381974406],[123,247,70,-0.040495635809947486],[123,247,71,-0.02783639042466529],[123,247,72,-0.012679165986674595],[123,247,73,0.002141404818733178],[123,247,74,0.017317621955578677],[123,247,75,0.025867984340267186],[123,247,76,0.03805051117123859],[123,247,77,0.047885284681821336],[123,247,78,0.061770873925721476],[123,247,79,0.04109956234581501],[123,248,64,-0.10201687680584635],[123,248,65,-0.08905796488694144],[123,248,66,-0.07506087303786271],[123,248,67,-0.06282620306254194],[123,248,68,-0.05499677256052844],[123,248,69,-0.04849162144489294],[123,248,70,-0.038628041456680626],[123,248,71,-0.023655830936566077],[123,248,72,-0.007170896654805414],[123,248,73,0.006351711608768448],[123,248,74,0.020037982535800858],[123,248,75,0.027802797460281692],[123,248,76,0.03711929483202968],[123,248,77,0.04871260211679701],[123,248,78,0.06327803773997444],[123,248,79,0.04692215292714323],[123,249,64,-0.10535622648690043],[123,249,65,-0.08644521928464668],[123,249,66,-0.07045502958276122],[123,249,67,-0.05524232133345522],[123,249,68,-0.04742699896194827],[123,249,69,-0.04000714154382985],[123,249,70,-0.03311687929555236],[123,249,71,-0.019228868211379785],[123,249,72,-0.003090556682552939],[123,249,73,0.010910847421336231],[123,249,74,0.025876546601014405],[123,249,75,0.035254672867604114],[123,249,76,0.04216153217294767],[123,249,77,0.051359164005397404],[123,249,78,0.06399633068425246],[123,249,79,-0.004945693196415066],[123,250,64,-0.10608491900540079],[123,250,65,-0.08811919918084131],[123,250,66,-0.07088128451754111],[123,250,67,-0.05786884142304756],[123,250,68,-0.06107137991433119],[123,250,69,-0.08063130643786831],[123,250,70,-0.09328505351684097],[123,250,71,-0.07680989865015722],[123,250,72,-0.057467885439584886],[123,250,73,-0.01360337667799489],[123,250,74,0.010720042613856229],[123,250,75,0.011591602062352876],[123,250,76,0.012181803897537584],[123,250,77,0.020346201022660264],[123,250,78,0.034174358681032226],[123,250,79,0.026009855832632767],[123,251,64,-0.10419913327518754],[123,251,65,-0.08518046958570236],[123,251,66,-0.06859440651644322],[123,251,67,-0.054280264152904295],[123,251,68,-0.06855161438862366],[123,251,69,-0.09539117469130132],[123,251,70,-0.10288876626402897],[123,251,71,-0.09009957817610664],[123,251,72,-0.05855914642399581],[123,251,73,-0.014755682892886028],[123,251,74,0.014255633710657956],[123,251,75,0.024571034074384747],[123,251,76,0.014599691624695418],[123,251,77,0.028393931671972822],[123,251,78,0.0533376219919932],[123,251,79,0.037480304679770565],[123,252,64,-0.09529740953472206],[123,252,65,-0.07727259630217805],[123,252,66,-0.0627204432253063],[123,252,67,-0.04692930859516817],[123,252,68,-0.062064808849174695],[123,252,69,-0.09455869735528559],[123,252,70,-0.0989701907377782],[123,252,71,-0.08884398062000803],[123,252,72,-0.06508803849440262],[123,252,73,-0.0175017512613485],[123,252,74,0.027505352370594247],[123,252,75,0.02589964259971249],[123,252,76,0.01970509163657713],[123,252,77,0.0288996005600579],[123,252,78,0.05575470106593459],[123,252,79,0.0332975299121618],[123,253,64,-0.08098787599371872],[123,253,65,-0.06973826600688804],[123,253,66,-0.06014487827017469],[123,253,67,-0.04780899984861814],[123,253,68,-0.039318880541865955],[123,253,69,-0.053238318552873795],[123,253,70,-0.050589053177652554],[123,253,71,-0.043520142585201906],[123,253,72,-0.027940203164219347],[123,253,73,0.0014409531873146187],[123,253,74,0.015045837244924377],[123,253,75,-0.014775008490293853],[123,253,76,-0.012440270227643442],[123,253,77,-0.010896962685084],[123,253,78,4.2932115936085424E-4],[123,253,79,-0.01884128186801172],[123,254,64,0.003786603206224204],[123,254,65,0.007017106128887424],[123,254,66,0.010309971935159964],[123,254,67,0.012588628674259209],[123,254,68,0.014937020574831261],[123,254,69,-3.539727172313274E-4],[123,254,70,-0.012562942506150077],[123,254,71,-0.008074088984922671],[123,254,72,0.011216718950939078],[123,254,73,0.020275816973638214],[123,254,74,0.022989916236991113],[123,254,75,-0.006971520098993322],[123,254,76,-0.012007462580229653],[123,254,77,-0.024881851193878618],[123,254,78,-0.024125413026595877],[123,254,79,-0.04608610629223889],[123,255,64,0.003661509075729222],[123,255,65,0.008257290860635633],[123,255,66,0.011823549667415806],[123,255,67,0.013627713912743672],[123,255,68,0.017325135350148888],[123,255,69,0.016099327293814192],[123,255,70,0.0053799189029554405],[123,255,71,-0.0011653682039229757],[123,255,72,0.016447751865937013],[123,255,73,0.020025272334247377],[123,255,74,0.024889003540262036],[123,255,75,0.009688678021561922],[123,255,76,-0.0026115987842080524],[123,255,77,-0.02689744647774899],[123,255,78,-0.024794216634876083],[123,255,79,-0.049628506972968514],[123,256,64,0.006000193882945759],[123,256,65,0.008596506030829926],[123,256,66,0.012245419752664521],[123,256,67,0.0132946527180096],[123,256,68,0.01591764841729862],[123,256,69,0.014993330047956888],[123,256,70,0.012557874795408316],[123,256,71,-0.0025174017604292845],[123,256,72,0.015733940169435245],[123,256,73,0.018431388051883865],[123,256,74,0.023561122757511252],[123,256,75,0.00791577048594426],[123,256,76,-0.00257898314619941],[123,256,77,-0.03400656453230794],[123,256,78,-0.035424682302617916],[123,256,79,-0.048224988956550724],[123,257,64,0.00538203394885034],[123,257,65,0.006098560998723468],[123,257,66,0.01257126323151489],[123,257,67,0.014495371289669642],[123,257,68,0.014582844361924904],[123,257,69,0.014105575255885294],[123,257,70,-0.004504713599203451],[123,257,71,-0.019897422005286474],[123,257,72,0.012394980574024217],[123,257,73,0.017795244052330406],[123,257,74,0.0034553860670559836],[123,257,75,-0.02612414631332958],[123,257,76,-0.044321549889783055],[123,257,77,-0.07146115182933578],[123,257,78,-0.07580017575251785],[123,257,79,-0.09032237020786463],[123,258,64,0.001681391323101189],[123,258,65,4.933493104720271E-4],[123,258,66,0.0074125731088224706],[123,258,67,0.010369122268175435],[123,258,68,0.012039882488457165],[123,258,69,0.012009219138056082],[123,258,70,0.011185867001271055],[123,258,71,0.00861765401732642],[123,258,72,0.01034093388084785],[123,258,73,0.0144875219478824],[123,258,74,0.01859207472316962],[123,258,75,-0.0175972532832639],[123,258,76,-0.04367868307153482],[123,258,77,-0.065140243258424],[123,258,78,-0.08480630440038618],[123,258,79,-0.11569951430072078],[123,259,64,0.0035823586675324537],[123,259,65,0.001401430401959336],[123,259,66,0.006624515929245428],[123,259,67,0.006641120557548799],[123,259,68,0.009510903209164562],[123,259,69,0.010455396269378608],[123,259,70,0.012137366244578354],[123,259,71,0.011613641339398129],[123,259,72,0.013462290650497172],[123,259,73,0.015720514146753614],[123,259,74,0.01803573334688703],[123,259,75,0.005265596700435329],[123,259,76,-0.018291071241313822],[123,259,77,-0.03765896504835782],[123,259,78,-0.056194839539617736],[123,259,79,-0.11472655390322865],[123,260,64,-0.12157924379110666],[123,260,65,-0.1273218904422078],[123,260,66,-0.12840959527506943],[123,260,67,-0.12977310404860176],[123,260,68,-0.12908926024979528],[123,260,69,-0.13191248700223643],[123,260,70,-0.13195612674296295],[123,260,71,-0.13089793998496038],[123,260,72,-0.1315501156421934],[123,260,73,-0.13014539631584007],[123,260,74,-0.12647715799178144],[123,260,75,-0.13414685403184778],[123,260,76,-0.13816617767455422],[123,260,77,-0.14430086655973146],[123,260,78,-0.14453364640905914],[123,260,79,-0.15010440365565636],[123,261,64,-0.12934298561270843],[123,261,65,-0.1315617106410359],[123,261,66,-0.13052758998516642],[123,261,67,-0.13056554595083789],[123,261,68,-0.13181254667288023],[123,261,69,-0.13182774356351015],[123,261,70,-0.13121309649238327],[123,261,71,-0.12895878494128146],[123,261,72,-0.13040742509399617],[123,261,73,-0.12747741319873157],[123,261,74,-0.1256594203656034],[123,261,75,-0.12987850516990523],[123,261,76,-0.13302607819691495],[123,261,77,-0.14146453970610584],[123,261,78,-0.1472001418111016],[123,261,79,-0.15010584185951975],[123,262,64,-0.13589163736772855],[123,262,65,-0.1378393785118549],[123,262,66,-0.1353316365070684],[123,262,67,-0.13363933446766849],[123,262,68,-0.134583248217587],[123,262,69,-0.13925286743730342],[123,262,70,-0.1341040932390319],[123,262,71,-0.13275699213717643],[123,262,72,-0.1351169583494449],[123,262,73,-0.1320580180838966],[123,262,74,-0.1281050927570571],[123,262,75,-0.1360547538047487],[123,262,76,-0.14119293666142535],[123,262,77,-0.14861013421229682],[123,262,78,-0.16817015187138545],[123,262,79,-0.17027848607740848],[123,263,64,-0.13359137319764042],[123,263,65,-0.13503351423539936],[123,263,66,-0.13426636237497788],[123,263,67,-0.1333489667033253],[123,263,68,-0.1322685978759641],[123,263,69,-0.13275891560504774],[123,263,70,-0.13371931836384848],[123,263,71,-0.13326086933838385],[123,263,72,-0.13638179005222892],[123,263,73,-0.13266584105252985],[123,263,74,-0.1297575170820619],[123,263,75,-0.1355999399214082],[123,263,76,-0.1363910493763657],[123,263,77,-0.1432272762803377],[123,263,78,-0.16467329031477135],[123,263,79,-0.16543002148291655],[123,264,64,-0.12951623611078383],[123,264,65,-0.1331844059183598],[123,264,66,-0.1318151763520588],[123,264,67,-0.13379007389475392],[123,264,68,-0.13195480656575337],[123,264,69,-0.13335947700372452],[123,264,70,-0.13429223158108175],[123,264,71,-0.13294616424595893],[123,264,72,-0.13541705184767786],[123,264,73,-0.13435234900848214],[123,264,74,-0.13017484513895292],[123,264,75,-0.13315564973582605],[123,264,76,-0.13649053496847324],[123,264,77,-0.14275562895478386],[123,264,78,-0.16412895302224836],[123,264,79,-0.16580242216356733],[123,265,64,-0.11973014374478738],[123,265,65,-0.12718376503055212],[123,265,66,-0.13011128589987975],[123,265,67,-0.1349968621335187],[123,265,68,-0.1331578826107977],[123,265,69,-0.13356648424969156],[123,265,70,-0.1351207393012188],[123,265,71,-0.1355148279176221],[123,265,72,-0.1366278658419675],[123,265,73,-0.170308804827452],[123,265,74,-0.2016064031060355],[123,265,75,-0.20482006554267845],[123,265,76,-0.20868576979761022],[123,265,77,-0.20414449314817723],[123,265,78,-0.19846770702327796],[123,265,79,-0.188304855477524],[123,266,64,-0.12297381491052393],[123,266,65,-0.1288849993225922],[123,266,66,-0.1355485131784953],[123,266,67,-0.1381855644553358],[123,266,68,-0.13481965869181883],[123,266,69,-0.1354030200869086],[123,266,70,-0.1388687345461118],[123,266,71,-0.13856710143481363],[123,266,72,-0.13811564338349103],[123,266,73,-0.15699675131112512],[123,266,74,-0.19302386425416457],[123,266,75,-0.1981129064590738],[123,266,76,-0.19837646160587286],[123,266,77,-0.19416747173054033],[123,266,78,-0.18801104802642246],[123,266,79,-0.1745686906642291],[123,267,64,-0.11949550101995401],[123,267,65,-0.12704698958345895],[123,267,66,-0.1340808951336819],[123,267,67,-0.13603653692945689],[123,267,68,-0.13285060606878465],[123,267,69,-0.13443799105940754],[123,267,70,-0.13940834205738797],[123,267,71,-0.13855157626057882],[123,267,72,-0.13660789349944438],[123,267,73,-0.1586093760412851],[123,267,74,-0.20393854808298062],[123,267,75,-0.20909204280019572],[123,267,76,-0.2083008655185868],[123,267,77,-0.20010221343619403],[123,267,78,-0.19282732295705707],[123,267,79,-0.17982275225811697],[123,268,64,-0.11321371745997094],[123,268,65,-0.12252521464462238],[123,268,66,-0.12873291735065642],[123,268,67,-0.1309225088049013],[123,268,68,-0.12968197328856257],[123,268,69,-0.13343746343190774],[123,268,70,-0.13736480897477193],[123,268,71,-0.13435383342503499],[123,268,72,-0.1492102127811994],[123,268,73,-0.18038101526472797],[123,268,74,-0.21552256752221421],[123,268,75,-0.21017475763999274],[123,268,76,-0.20784498033413365],[123,268,77,-0.1984629724387318],[123,268,78,-0.19188424469636],[123,268,79,-0.1792989405189991],[123,269,64,-0.11179864713037568],[123,269,65,-0.11918363390398211],[123,269,66,-0.12641920340075383],[123,269,67,-0.12713080675361865],[123,269,68,-0.12774409916588933],[123,269,69,-0.1305708106533194],[123,269,70,-0.13511312969414466],[123,269,71,-0.13274854639461076],[123,269,72,-0.15887107792943675],[123,269,73,-0.1855288001003046],[123,269,74,-0.22022437338144318],[123,269,75,-0.21400635571518842],[123,269,76,-0.20881986230730348],[123,269,77,-0.19958773324365164],[123,269,78,-0.19188160342783286],[123,269,79,-0.1814552637663527],[123,270,64,-0.11553746625711372],[123,270,65,-0.1228523109012821],[123,270,66,-0.1285513646329845],[123,270,67,-0.12915747069341343],[123,270,68,-0.1279166439710969],[123,270,69,-0.13198181003704798],[123,270,70,-0.13365013624090596],[123,270,71,-0.13221191065090795],[123,270,72,-0.16271519936563997],[123,270,73,-0.1850661601271382],[123,270,74,-0.21947989331103634],[123,270,75,-0.21587548953777264],[123,270,76,-0.2120202589005307],[123,270,77,-0.20543472409287578],[123,270,78,-0.19385672909946478],[123,270,79,-0.1872333442298811],[123,271,64,-0.11287672466745913],[123,271,65,-0.11918865380766559],[123,271,66,-0.12403327483153144],[123,271,67,-0.12662739289925415],[123,271,68,-0.12746912488360862],[123,271,69,-0.12914621142150542],[123,271,70,-0.13068782399165507],[123,271,71,-0.13188762580657007],[123,271,72,-0.169555630804958],[123,271,73,-0.1881610495711211],[123,271,74,-0.2191931176587174],[123,271,75,-0.21263326610804262],[123,271,76,-0.2127317691867408],[123,271,77,-0.20363358363447082],[123,271,78,-0.19498098347280451],[123,271,79,-0.18726801184606146],[123,272,64,-0.1100507356909706],[123,272,65,-0.11396431896591128],[123,272,66,-0.11808735188858135],[123,272,67,-0.12345520308434421],[123,272,68,-0.12872315641966606],[123,272,69,-0.1290732387230093],[123,272,70,-0.1284849807903553],[123,272,71,-0.1344219357412687],[123,272,72,-0.1743941556966856],[123,272,73,-0.1970081296668229],[123,272,74,-0.21831618152108218],[123,272,75,-0.21687689250989578],[123,272,76,-0.21675139142286298],[123,272,77,-0.20489699899686548],[123,272,78,-0.19849638850650142],[123,272,79,-0.18726777400825875],[123,273,64,-0.10767976109257046],[123,273,65,-0.11126849711991577],[123,273,66,-0.11410377367590242],[123,273,67,-0.11973168819096633],[123,273,68,-0.12405010307985405],[123,273,69,-0.12442826406766974],[123,273,70,-0.1242320337402863],[123,273,71,-0.1222087077267155],[123,273,72,-0.1293970449330573],[123,273,73,-0.1281193799540467],[123,273,74,-0.12539138999850974],[123,273,75,-0.12398766843246072],[123,273,76,-0.11805090251120329],[123,273,77,-0.10841601704666806],[123,273,78,-0.10549219219165548],[123,273,79,-0.09645220179305225],[123,274,64,-0.1107004449033647],[123,274,65,-0.11216761307875062],[123,274,66,-0.11493754194083382],[123,274,67,-0.1215227184716069],[123,274,68,-0.12288698631023465],[123,274,69,-0.1263548248098575],[123,274,70,-0.12403306889130028],[123,274,71,-0.12321833015486369],[123,274,72,-0.12791975823798798],[123,274,73,-0.1315542764074654],[123,274,74,-0.12781052413608202],[123,274,75,-0.1265230292195372],[123,274,76,-0.11959156803971224],[123,274,77,-0.11188649728037511],[123,274,78,-0.10670571879563914],[123,274,79,-0.09753609962315754],[123,275,64,-0.10980008362157564],[123,275,65,-0.10989168975176766],[123,275,66,-0.11346535249170112],[123,275,67,-0.12013612749259878],[123,275,68,-0.12037301130273075],[123,275,69,-0.1211696349488291],[123,275,70,-0.12312446462786475],[123,275,71,-0.12343847069960265],[123,275,72,-0.13077836516960284],[123,275,73,-0.13695547458912885],[123,275,74,-0.13488029687604192],[123,275,75,-0.13390373571409117],[123,275,76,-0.12555423181019182],[123,275,77,-0.12026001216806345],[123,275,78,-0.11011175600580492],[123,275,79,-0.1031754867839709],[123,276,64,-0.0981735791930989],[123,276,65,-0.10454961792775311],[123,276,66,-0.10578331961143707],[123,276,67,-0.11056534985816344],[123,276,68,-0.1149429539640273],[123,276,69,-0.11838302717989979],[123,276,70,-0.12052576774208042],[123,276,71,-0.1218954528478389],[123,276,72,-0.12853664176845536],[123,276,73,-0.13722813256298058],[123,276,74,-0.13682686776038155],[123,276,75,-0.1370778698751734],[123,276,76,-0.1290222999740849],[123,276,77,-0.12050032700785132],[123,276,78,-0.10930495304924662],[123,276,79,-0.1038109873366537],[123,277,64,-0.09908215162271224],[123,277,65,-0.1057825001474893],[123,277,66,-0.10898360030745162],[123,277,67,-0.11191349062736076],[123,277,68,-0.11740555870505118],[123,277,69,-0.12087046238336527],[123,277,70,-0.12319500910024808],[123,277,71,-0.12323682797094206],[123,277,72,-0.131342857448372],[123,277,73,-0.13979894174027782],[123,277,74,-0.13700043745485876],[123,277,75,-0.13757630493090986],[123,277,76,-0.12841421452888663],[123,277,77,-0.12051825900142826],[123,277,78,-0.10836610346086556],[123,277,79,-0.10228006635921907],[123,278,64,-0.10378804853720103],[123,278,65,-0.10766534296605004],[123,278,66,-0.11058137791061935],[123,278,67,-0.11706192836658329],[123,278,68,-0.12147376723981282],[123,278,69,-0.1209383489131719],[123,278,70,-0.1232212695134165],[123,278,71,-0.12256918009139525],[123,278,72,-0.1321393173382587],[123,278,73,-0.1413973783843282],[123,278,74,-0.14042570361778123],[123,278,75,-0.13955181802786898],[123,278,76,-0.1322975882868509],[123,278,77,-0.1252996864841083],[123,278,78,-0.11404532997342282],[123,278,79,-0.10711775455945047],[123,279,64,-0.10147245201013552],[123,279,65,-0.10474359255731806],[123,279,66,-0.10744844751394632],[123,279,67,-0.11426125537647333],[123,279,68,-0.12081413534743547],[123,279,69,-0.1212881559376549],[123,279,70,-0.12070183553643825],[123,279,71,-0.11910510256600766],[123,279,72,-0.13036001593756658],[123,279,73,-0.14061668431261526],[123,279,74,-0.14077147600266512],[123,279,75,-0.1424652140223323],[123,279,76,-0.13407635847348812],[123,279,77,-0.12683726288236072],[123,279,78,-0.11372643994431864],[123,279,79,-0.1048620935384719],[123,280,64,-0.10075549065969487],[123,280,65,-0.10453844282687957],[123,280,66,-0.10655033316622106],[123,280,67,-0.11326871103682788],[123,280,68,-0.1186767302323965],[123,280,69,-0.11865305662780326],[123,280,70,-0.1173109364215055],[123,280,71,-0.11531681422679732],[123,280,72,-0.13026635227767208],[123,280,73,-0.14019349918064636],[123,280,74,-0.1410767486751474],[123,280,75,-0.14189004372354597],[123,280,76,-0.13554436953301977],[123,280,77,-0.12713763069988251],[123,280,78,-0.11310681334949935],[123,280,79,-0.10162353981247815],[123,281,64,-0.09732605668277391],[123,281,65,-0.10035008028496893],[123,281,66,-0.10460930127754521],[123,281,67,-0.11147685531387823],[123,281,68,-0.11612882669964145],[123,281,69,-0.11646514214466067],[123,281,70,-0.11293818058517241],[123,281,71,-0.11187638288539217],[123,281,72,-0.13038716853445245],[123,281,73,-0.14765115453823213],[123,281,74,-0.15108024210078383],[123,281,75,-0.14832101927609595],[123,281,76,-0.14386329700774406],[123,281,77,-0.13459551778524956],[123,281,78,-0.11951391950626553],[123,281,79,-0.10784436028415692],[123,282,64,-0.0988910219878999],[123,282,65,-0.10160460539847337],[123,282,66,-0.10484663910102215],[123,282,67,-0.11241824942934626],[123,282,68,-0.11407199682565658],[123,282,69,-0.11693121810991727],[123,282,70,-0.11544087246815456],[123,282,71,-0.11611252051339829],[123,282,72,-0.12348256600875099],[123,282,73,-0.13745397996834957],[123,282,74,-0.13838998518839737],[123,282,75,-0.13633053241292414],[123,282,76,-0.131984497567769],[123,282,77,-0.12289986741427147],[123,282,78,-0.10877759721294139],[123,282,79,-0.09662555254987143],[123,283,64,-0.09840854072494576],[123,283,65,-0.0996301899655728],[123,283,66,-0.10367783599682717],[123,283,67,-0.11108786726335097],[123,283,68,-0.11262348482829876],[123,283,69,-0.11515599764194909],[123,283,70,-0.1157652277196892],[123,283,71,-0.11709919518272999],[123,283,72,-0.12377381797928554],[123,283,73,-0.14402779748539155],[123,283,74,-0.14612095575042977],[123,283,75,-0.1408639930259305],[123,283,76,-0.1372972777795183],[123,283,77,-0.1257370824198935],[123,283,78,-0.1116695327327707],[123,283,79,-0.09961411168719919],[123,284,64,-0.1170887493366371],[123,284,65,-0.11492159977115135],[123,284,66,-0.11864898168229629],[123,284,67,-0.12438573585431356],[123,284,68,-0.12459710685881233],[123,284,69,-0.12660857551688307],[123,284,70,-0.12790877090265776],[123,284,71,-0.1266377064541376],[123,284,72,-0.13564152531137283],[123,284,73,-0.15490379307684754],[123,284,74,-0.1540275432032897],[123,284,75,-0.1501508741360433],[123,284,76,-0.14412540804208626],[123,284,77,-0.13074819703062895],[123,284,78,-0.11673031544631332],[123,284,79,-0.10297735431392338],[123,285,64,-0.11729271048830998],[123,285,65,-0.1136881762848419],[123,285,66,-0.11316906382341171],[123,285,67,-0.11603897966876958],[123,285,68,-0.11229793476015837],[123,285,69,-0.1137579636705161],[123,285,70,-0.11822243123714483],[123,285,71,-0.11924359308880343],[123,285,72,-0.1330426467729783],[123,285,73,-0.1554027416132536],[123,285,74,-0.1545055712361174],[123,285,75,-0.14783358716432465],[123,285,76,-0.14246778990704026],[123,285,77,-0.1289948892672953],[123,285,78,-0.11515773285773923],[123,285,79,-0.10032811561075558],[123,286,64,-0.11953338245820934],[123,286,65,-0.11531838392042455],[123,286,66,-0.1139294637178061],[123,286,67,-0.11603539323417002],[123,286,68,-0.11525527269281019],[123,286,69,-0.11430148750767204],[123,286,70,-0.1183923464585454],[123,286,71,-0.11691593770976061],[123,286,72,-0.13224876522355133],[123,286,73,-0.1585827238811269],[123,286,74,-0.1554318007277577],[123,286,75,-0.14801274296155453],[123,286,76,-0.14169231549100497],[123,286,77,-0.1276320995879932],[123,286,78,-0.11412914102552876],[123,286,79,-0.10111935457587767],[123,287,64,-0.11944411017489617],[123,287,65,-0.11504137562179778],[123,287,66,-0.11310815133076799],[123,287,67,-0.11558346480970769],[123,287,68,-0.11531183400572506],[123,287,69,-0.1145444331660916],[123,287,70,-0.11570633015435453],[123,287,71,-0.11535548736217761],[123,287,72,-0.12897580166939368],[123,287,73,-0.15593883653807294],[123,287,74,-0.1545076448714979],[123,287,75,-0.1431873905773869],[123,287,76,-0.1352397012561027],[123,287,77,-0.1218657248769961],[123,287,78,-0.10972226777885363],[123,287,79,-0.09908688123763021],[123,288,64,-0.12080702423098914],[123,288,65,-0.11452654071009898],[123,288,66,-0.11320651940239049],[123,288,67,-0.11488803015724551],[123,288,68,-0.11659340063216242],[123,288,69,-0.11457875336928343],[123,288,70,-0.11319602665526941],[123,288,71,-0.11218711500415127],[123,288,72,-0.12537700678939762],[123,288,73,-0.15125180312386857],[123,288,74,-0.1514199044903009],[123,288,75,-0.13885343394333538],[123,288,76,-0.13185491193786297],[123,288,77,-0.11819674277838532],[123,288,78,-0.11002702871832032],[123,288,79,-0.09952991570865874],[123,289,64,-0.11962612744914808],[123,289,65,-0.11849985204955124],[123,289,66,-0.11998972843074922],[123,289,67,-0.12330962465857995],[123,289,68,-0.12467337149754121],[123,289,69,-0.12254746779700544],[123,289,70,-0.11922468842856121],[123,289,71,-0.1162877011084518],[123,289,72,-0.12709518849853702],[123,289,73,-0.16293389010472337],[123,289,74,-0.15778346572926888],[123,289,75,-0.14685067388365874],[123,289,76,-0.13752271559538004],[123,289,77,-0.1264150905794627],[123,289,78,-0.11692211790102652],[123,289,79,-0.10606179827336401],[123,290,64,-0.12403809028131742],[123,290,65,-0.12405536321833237],[123,290,66,-0.12163328728532283],[123,290,67,-0.12442126720870295],[123,290,68,-0.12426910913226935],[123,290,69,-0.12485162520502276],[123,290,70,-0.11957068979733167],[123,290,71,-0.1170181977956657],[123,290,72,-0.11606641222070574],[123,290,73,-0.1553939946667727],[123,290,74,-0.16029899280568474],[123,290,75,-0.15084763095503315],[123,290,76,-0.14429999251808404],[123,290,77,-0.1332520468577286],[123,290,78,-0.12446327898531662],[123,290,79,-0.11009678131299999],[123,291,64,-0.12167750327481873],[123,291,65,-0.12201205313070843],[123,291,66,-0.1224637891533542],[123,291,67,-0.12105025965175148],[123,291,68,-0.12044095907727023],[123,291,69,-0.12143623412003363],[123,291,70,-0.12007320536282565],[123,291,71,-0.11772692908640564],[123,291,72,-0.12366886532172762],[123,291,73,-0.16464997784945906],[123,291,74,-0.16261216513216448],[123,291,75,-0.15294033698171494],[123,291,76,-0.14496449885737642],[123,291,77,-0.13393539691509163],[123,291,78,-0.12471043570400075],[123,291,79,-0.11147899445177194],[123,292,64,-0.08595640738415385],[123,292,65,-0.08404497805313273],[123,292,66,-0.08033849614868181],[123,292,67,-0.07626082058982159],[123,292,68,-0.07539574790232875],[123,292,69,-0.07318753381621859],[123,292,70,-0.0726522190277564],[123,292,71,-0.06938918264514538],[123,292,72,-0.07830691569267204],[123,292,73,-0.13673798818146005],[123,292,74,-0.13602576321581153],[123,292,75,-0.12766748364693914],[123,292,76,-0.12040986641194798],[123,292,77,-0.10767042735808524],[123,292,78,-0.09658311266403433],[123,292,79,-0.08358281392956435],[123,293,64,-0.08805951849034405],[123,293,65,-0.08569186842469273],[123,293,66,-0.08099138301789367],[123,293,67,-0.07371124945334497],[123,293,68,-0.07312313029259938],[123,293,69,-0.07198825320568053],[123,293,70,-0.07254471937637955],[123,293,71,-0.06680324648178584],[123,293,72,-0.08399343698669409],[123,293,73,-0.1341522166799836],[123,293,74,-0.12808269321623714],[123,293,75,-0.12203671128778143],[123,293,76,-0.1152584283353055],[123,293,77,-0.10243955059946314],[123,293,78,-0.09049818683526167],[123,293,79,-0.07700876719177088],[123,294,64,-0.09040962026933966],[123,294,65,-0.0879785550643565],[123,294,66,-0.07881546356741213],[123,294,67,-0.07268558238874798],[123,294,68,-0.06937287605542285],[123,294,69,-0.06537716449132414],[123,294,70,-0.06653077571584728],[123,294,71,-0.06527747095968517],[123,294,72,-0.08697945129064359],[123,294,73,-0.13113155031311471],[123,294,74,-0.1240907682125151],[123,294,75,-0.11595517090080601],[123,294,76,-0.10541637151304067],[123,294,77,-0.09164897232489655],[123,294,78,-0.08194084945932781],[123,294,79,-0.06699834423255285],[123,295,64,-0.09018292785220461],[123,295,65,-0.08621342197027185],[123,295,66,-0.0779010587765423],[123,295,67,-0.07322233596645349],[123,295,68,-0.06612608207796983],[123,295,69,-0.05993517425975696],[123,295,70,-0.06053400821037452],[123,295,71,-0.06237483249410623],[123,295,72,-0.06326323391913202],[123,295,73,-0.0915468188284052],[123,295,74,-0.09680736197558618],[123,295,75,-0.0943225222802499],[123,295,76,-0.08825739597125634],[123,295,77,-0.07506254522495019],[123,295,78,-0.06259867375460307],[123,295,79,-0.053116176415461264],[123,296,64,-0.08934430557505252],[123,296,65,-0.0851235078671585],[123,296,66,-0.07688095023703995],[123,296,67,-0.07090485916564718],[123,296,68,-0.06554764301966318],[123,296,69,-0.05783437593475117],[123,296,70,-0.056192686185192076],[123,296,71,-0.05829627585720803],[123,296,72,-0.06385097465407853],[123,296,73,-0.0870939861555845],[123,296,74,-0.08994309787831811],[123,296,75,-0.08577473934129212],[123,296,76,-0.08194455572261045],[123,296,77,-0.06718746169999315],[123,296,78,-0.05400789136331611],[123,296,79,-0.04530609984809571],[123,297,64,-0.09349788472859152],[123,297,65,-0.08419842513234414],[123,297,66,-0.07326899446774224],[123,297,67,-0.06280980255218971],[123,297,68,-0.055886718595614754],[123,297,69,-0.04978294757980656],[123,297,70,-0.050806510992244695],[123,297,71,-0.054925276560492356],[123,297,72,-0.06496189119268556],[123,297,73,-0.0816799525665043],[123,297,74,-0.08976585606234913],[123,297,75,-0.08598166935482615],[123,297,76,-0.0815722051017058],[123,297,77,-0.06762721180499975],[123,297,78,-0.05469489860950234],[123,297,79,-0.04780285884299133],[123,298,64,-0.0958304225481397],[123,298,65,-0.08777365235678723],[123,298,66,-0.07629480837244285],[123,298,67,-0.06488259294150599],[123,298,68,-0.056724297126653556],[123,298,69,-0.05141921751744817],[123,298,70,-0.05295752502178243],[123,298,71,-0.05701447452532367],[123,298,72,-0.06663167339390125],[123,298,73,-0.06811776421425464],[123,298,74,-0.0767820609285006],[123,298,75,-0.07684701132796952],[123,298,76,-0.07068471184111619],[123,298,77,-0.060983288938604406],[123,298,78,-0.05242521852478141],[123,298,79,-0.047321177798094444],[123,299,64,-0.09647885077252198],[123,299,65,-0.08612598829934745],[123,299,66,-0.07512153701613664],[123,299,67,-0.06310378831293731],[123,299,68,-0.054266859188592365],[123,299,69,-0.04879432195904154],[123,299,70,-0.051502860494285194],[123,299,71,-0.05797395261675974],[123,299,72,-0.06342253448038042],[123,299,73,-0.06378425661170073],[123,299,74,-0.07183830183049199],[123,299,75,-0.07558222977850013],[123,299,76,-0.0652801558141521],[123,299,77,-0.05843915126885631],[123,299,78,-0.050112436530669706],[123,299,79,-0.04600294435088208],[123,300,64,-0.09479656909925219],[123,300,65,-0.08688510472738906],[123,300,66,-0.08140139425534201],[123,300,67,-0.07392197695538645],[123,300,68,-0.06565477930691455],[123,300,69,-0.05919240004370032],[123,300,70,-0.057983245285744854],[123,300,71,-0.05908290573684047],[123,300,72,-0.06038872070605692],[123,300,73,-0.05753317419276277],[123,300,74,-0.07014969223295986],[123,300,75,-0.062343158536655154],[123,300,76,-0.04715524268989549],[123,300,77,-0.035948817817571053],[123,300,78,-0.02956378951851767],[123,300,79,-0.027036853426964172],[123,301,64,-0.09260439072839353],[123,301,65,-0.08662321440533],[123,301,66,-0.08045316445702912],[123,301,67,-0.07298059498716382],[123,301,68,-0.06553029073975838],[123,301,69,-0.060121009147282564],[123,301,70,-0.05755034983910573],[123,301,71,-0.05799383096126554],[123,301,72,-0.0561833601584955],[123,301,73,-0.05178739598547615],[123,301,74,-0.06308613661000846],[123,301,75,-0.057082916018473775],[123,301,76,-0.045162510645643285],[123,301,77,-0.03299590469619923],[123,301,78,-0.028157326666111815],[123,301,79,-0.022483305533900412],[123,302,64,-0.08537963578248847],[123,302,65,-0.08315922689339064],[123,302,66,-0.07633829326487135],[123,302,67,-0.06884464077409037],[123,302,68,-0.059193356399050476],[123,302,69,-0.05310231325316392],[123,302,70,-0.05178033024320028],[123,302,71,-0.052963141788877566],[123,302,72,-0.04818459252957151],[123,302,73,-0.04453685366891064],[123,302,74,-0.05448361737508032],[123,302,75,-0.04895043880367815],[123,302,76,-0.03977870405134028],[123,302,77,-0.028447977581253534],[123,302,78,-0.029161995203046777],[123,302,79,-0.02311024223115544],[123,303,64,-0.0822895604649222],[123,303,65,-0.07852277046241507],[123,303,66,-0.0750666264827132],[123,303,67,-0.06700056878895397],[123,303,68,-0.05813789484540412],[123,303,69,-0.05170530022688158],[123,303,70,-0.051671223773418797],[123,303,71,-0.05158946447494515],[123,303,72,-0.04527487715374558],[123,303,73,-0.04167150012116956],[123,303,74,-0.05840795403480491],[123,303,75,-0.0562898133870582],[123,303,76,-0.0454885045089597],[123,303,77,-0.03654031063294149],[123,303,78,-0.03216175969392091],[123,303,79,-0.020011834021610476],[123,304,64,-0.07899455240551556],[123,304,65,-0.07609758454283219],[123,304,66,-0.07196700069791867],[123,304,67,-0.06385207476622899],[123,304,68,-0.05645094989155275],[123,304,69,-0.04932245466744821],[123,304,70,-0.04919997146173638],[123,304,71,-0.04823325447370776],[123,304,72,-0.04271251428621961],[123,304,73,-0.03942011665580393],[123,304,74,-0.04968007861188431],[123,304,75,-0.04931054805636545],[123,304,76,-0.038212786546672234],[123,304,77,-0.03582903712956525],[123,304,78,-0.028173548476681565],[123,304,79,-0.017120336516584626],[123,305,64,-0.07655511383324869],[123,305,65,-0.0731283856118197],[123,305,66,-0.06851646567932726],[123,305,67,-0.06155906857704801],[123,305,68,-0.053794140993862274],[123,305,69,-0.04797652788148525],[123,305,70,-0.04804667231838154],[123,305,71,-0.04622230509360695],[123,305,72,-0.039125978847571935],[123,305,73,-0.03414688613005101],[123,305,74,-0.04261763328390523],[123,305,75,-0.047577739417373505],[123,305,76,-0.03696138575208752],[123,305,77,-0.0367978876688894],[123,305,78,-0.02550869629671344],[123,305,79,-0.015130384154989091],[123,306,64,-0.07544779447150238],[123,306,65,-0.0733424433791902],[123,306,66,-0.06986195384682826],[123,306,67,-0.0625470706531518],[123,306,68,-0.05456562531189599],[123,306,69,-0.0493346957484837],[123,306,70,-0.04802234322196766],[123,306,71,-0.04276829898816689],[123,306,72,-0.03717763420791574],[123,306,73,-0.03200607048836247],[123,306,74,-0.0340931133397533],[123,306,75,-0.03546818362421522],[123,306,76,-0.028734641030629983],[123,306,77,-0.026205902141372552],[123,306,78,-0.016593068364382027],[123,306,79,-0.0046306822090859765],[123,307,64,-0.07198847188227603],[123,307,65,-0.07005143950104982],[123,307,66,-0.06575776171202882],[123,307,67,-0.058315494291859976],[123,307,68,-0.05133038040193667],[123,307,69,-0.0464281742552132],[123,307,70,-0.04312572906729692],[123,307,71,-0.036630146985476036],[123,307,72,-0.0332264175541805],[123,307,73,-0.029410580023667185],[123,307,74,-0.029964937272811673],[123,307,75,-0.027320174848803183],[123,307,76,-0.026756250604316065],[123,307,77,-0.024862537280677166],[123,307,78,-0.01825422604689115],[123,307,79,-0.0037998189385696542],[123,308,64,-0.049997311148332696],[123,308,65,-0.04968133622497256],[123,308,66,-0.048680045200108726],[123,308,67,-0.042930752940521344],[123,308,68,-0.0390427500112273],[123,308,69,-0.03634325162312092],[123,308,70,-0.03703389936367113],[123,308,71,-0.0361326506796749],[123,308,72,-0.036809077375317426],[123,308,73,-0.03751829052778062],[123,308,74,-0.039683717603340704],[123,308,75,-0.037424022048364834],[123,308,76,-0.03305509012387031],[123,308,77,-0.03035660058396292],[123,308,78,-0.020256184582108823],[123,308,79,-0.003694340466011142],[123,309,64,-0.04681212632540106],[123,309,65,-0.04477776907216284],[123,309,66,-0.04304046274798942],[123,309,67,-0.03890867084988808],[123,309,68,-0.0331520347046962],[123,309,69,-0.03345030242879242],[123,309,70,-0.03471927127076124],[123,309,71,-0.034180294603572525],[123,309,72,-0.03546093452814171],[123,309,73,-0.03692700191286134],[123,309,74,-0.037388657128125516],[123,309,75,-0.03579292243545987],[123,309,76,-0.026805330099555682],[123,309,77,-0.009788291524904492],[123,309,78,0.012351983469507312],[123,309,79,0.033615567171414826],[123,310,64,-0.03822111039373831],[123,310,65,-0.03723042315642407],[123,310,66,-0.03548807161332114],[123,310,67,-0.03185188098891349],[123,310,68,-0.02569514218488876],[123,310,69,-0.024253108241657786],[123,310,70,-0.02802219931917281],[123,310,71,-0.026118005001118993],[123,310,72,-0.027387272268856303],[123,310,73,-0.02727237603211198],[123,310,74,-0.028962961154018432],[123,310,75,-0.02762458924057276],[123,310,76,-0.018915078012743433],[123,310,77,-0.0025377474397168948],[123,310,78,0.01609716385748912],[123,310,79,0.03765306893762144],[123,311,64,-0.03655882949218553],[123,311,65,-0.03539748533353229],[123,311,66,-0.032807859408097856],[123,311,67,-0.028211370943584585],[123,311,68,-0.022043373547239647],[123,311,69,-0.025059182019774293],[123,311,70,-0.028424537738237374],[123,311,71,-0.027252609201675507],[123,311,72,-0.026096074729418148],[123,311,73,-0.026137891055483475],[123,311,74,-0.026229913291383078],[123,311,75,-0.025457420127024316],[123,311,76,-0.014764816504782695],[123,311,77,5.662860984302839E-4],[123,311,78,0.020906663545191106],[123,311,79,0.0354167792537798],[123,312,64,-0.03776821670573624],[123,312,65,-0.03669286591270063],[123,312,66,-0.03264909195482717],[123,312,67,-0.029302521351493985],[123,312,68,-0.022687620505803432],[123,312,69,-0.026000633581261062],[123,312,70,-0.02915725197954705],[123,312,71,-0.025106690988297875],[123,312,72,-0.01693399756768768],[123,312,73,-0.01452486150115291],[123,312,74,-0.013419603514547657],[123,312,75,-0.013120271060351005],[123,312,76,-0.006678999255785846],[123,312,77,0.00514801307841032],[123,312,78,0.023055729000631346],[123,312,79,0.03691636018699769],[123,313,64,-0.039063126523334726],[123,313,65,-0.035115939162751644],[123,313,66,-0.030190742602533058],[123,313,67,-0.02670893258018013],[123,313,68,-0.023625039018210725],[123,313,69,-0.024462424951476575],[123,313,70,-0.027836166113373292],[123,313,71,-0.024555965628893492],[123,313,72,-0.015973116574127172],[123,313,73,-0.01264523136354824],[123,313,74,-0.009860561139125423],[123,313,75,-0.011126424367476156],[123,313,76,-0.00574769613107334],[123,313,77,0.005162657939749897],[123,313,78,0.01403300347647124],[123,313,79,0.02425952401517903],[123,314,64,-0.04233679911484009],[123,314,65,-0.03639804939419124],[123,314,66,-0.031131708860011528],[123,314,67,-0.02859174918126081],[123,314,68,-0.02738805349384435],[123,314,69,-0.023724746138117245],[123,314,70,-0.02627132342935866],[123,314,71,-0.023886159512903085],[123,314,72,-0.015650142627382346],[123,314,73,-0.013342591296390205],[123,314,74,-0.00840801231357223],[123,314,75,-0.009306866292447008],[123,314,76,-0.009501860498071444],[123,314,77,0.006585208980315404],[123,314,78,0.013117734189798936],[123,314,79,0.015081164538947374],[123,315,64,-0.03882574359202684],[123,315,65,-0.03585049391801756],[123,315,66,-0.0330697202898341],[123,315,67,-0.030261865082451878],[123,315,68,-0.026007594220204808],[123,315,69,-0.022294116036821937],[123,315,70,-0.024098138101610447],[123,315,71,-0.01958339009133131],[123,315,72,-0.013643101593771648],[123,315,73,-0.011805001002926807],[123,315,74,-0.007277375741333261],[123,315,75,-0.0069323609194409525],[123,315,76,-0.0063945426914134434],[123,315,77,0.010512858560208244],[123,315,78,0.016854370049847377],[123,315,79,0.010700226205924201],[123,316,64,-0.0442259672053974],[123,316,65,-0.039036308482023024],[123,316,66,-0.03720487044605547],[123,316,67,-0.03126889864090207],[123,316,68,-0.024750456607818425],[123,316,69,-0.021211957379410368],[123,316,70,-0.020420000500117746],[123,316,71,-0.013652962158672122],[123,316,72,-0.00950648381030271],[123,316,73,-0.008569968680996881],[123,316,74,-0.004129319813711077],[123,316,75,-0.003751992048567576],[123,316,76,-8.159757498029604E-4],[123,316,77,0.009134336068831541],[123,316,78,0.01874532120591306],[123,316,79,0.018623254102038873],[123,317,64,-0.0439081398609303],[123,317,65,-0.03856298793670336],[123,317,66,-0.03285019164924126],[123,317,67,-0.029943378795314654],[123,317,68,-0.02323779473071856],[123,317,69,-0.020060781333828756],[123,317,70,-0.01672782764229125],[123,317,71,-0.011302628347492155],[123,317,72,-0.006741610051569966],[123,317,73,-0.004238930088962076],[123,317,74,-0.0022534744316213967],[123,317,75,-7.073432397158713E-4],[123,317,76,-3.917960163308581E-4],[123,317,77,0.0074638812303519115],[123,317,78,0.0142613046845288],[123,317,79,0.019197857626558408],[123,318,64,-0.04110198051164368],[123,318,65,-0.03246270642495944],[123,318,66,-0.02538017846888209],[123,318,67,-0.0199733301552837],[123,318,68,-0.014514709861740471],[123,318,69,-0.009375681433720015],[123,318,70,-0.005329128554604032],[123,318,71,-5.340226705658757E-4],[123,318,72,0.0034803975186736835],[123,318,73,0.003246374777679223],[123,318,74,0.006308479404183637],[123,318,75,0.008340713930933427],[123,318,76,0.007497123541867515],[123,318,77,0.010480344170873086],[123,318,78,0.018286169718966964],[123,318,79,0.021783683947634396],[123,319,64,-0.04138286716980738],[123,319,65,-0.03306942005377249],[123,319,66,-0.023120466769050538],[123,319,67,-0.015037132091383631],[123,319,68,-0.008810487022336291],[123,319,69,-0.005411105081618142],[123,319,70,-0.0017753167847612689],[123,319,71,3.965450491778544E-4],[123,319,72,0.0036661019124422517],[123,319,73,0.004177456138992244],[123,319,74,0.0047680369977960435],[123,319,75,0.005396087550811293],[123,319,76,0.005435962806356762],[123,319,77,0.01041188580693588],[123,319,78,0.01648185343686162],[123,319,79,0.01687007148334277],[124,-64,64,-0.43333927444217935],[124,-64,65,-0.42488097327981034],[124,-64,66,-0.4192852714576922],[124,-64,67,-0.4106137674172872],[124,-64,68,-0.40238672996022634],[124,-64,69,-0.3963650951851972],[124,-64,70,-0.3897397308430183],[124,-64,71,-0.378177205374151],[124,-64,72,-0.3666563599237891],[124,-64,73,-0.35994509278045117],[124,-64,74,-0.35540345528075096],[124,-64,75,-0.3519042469305974],[124,-64,76,-0.34999272758867106],[124,-64,77,-0.3471954816500219],[124,-64,78,-0.3464372332203631],[124,-64,79,-0.34140965435733395],[124,-63,64,-0.40825192930349513],[124,-63,65,-0.42723900172672546],[124,-63,66,-0.42326303699548024],[124,-63,67,-0.4127476213220045],[124,-63,68,-0.40514710041250257],[124,-63,69,-0.3964356076823413],[124,-63,70,-0.3882698554029813],[124,-63,71,-0.3781275320964864],[124,-63,72,-0.36420717903973887],[124,-63,73,-0.3569731310580736],[124,-63,74,-0.3516324856406396],[124,-63,75,-0.3472856261729978],[124,-63,76,-0.3464518533598105],[124,-63,77,-0.3412564973769553],[124,-63,78,-0.3427741339830783],[124,-63,79,-0.31212279510902063],[124,-62,64,-0.394233225080052],[124,-62,65,-0.4194643130943074],[124,-62,66,-0.4197071521288192],[124,-62,67,-0.4107087653458748],[124,-62,68,-0.40430000375577574],[124,-62,69,-0.3955467596239754],[124,-62,70,-0.3856111021554641],[124,-62,71,-0.3746194376699222],[124,-62,72,-0.36164599669446695],[124,-62,73,-0.352841706461409],[124,-62,74,-0.3488580068115064],[124,-62,75,-0.3431124255717627],[124,-62,76,-0.3402299695666547],[124,-62,77,-0.3335333711118219],[124,-62,78,-0.3381024453481399],[124,-62,79,-0.3180399511667935],[124,-61,64,-0.42598675409661735],[124,-61,65,-0.42675719970801723],[124,-61,66,-0.42193169495544497],[124,-61,67,-0.4153189472841236],[124,-61,68,-0.4051162055817987],[124,-61,69,-0.398133757690878],[124,-61,70,-0.3871708888806635],[124,-61,71,-0.3756436649292214],[124,-61,72,-0.36195775441764544],[124,-61,73,-0.35443203357565817],[124,-61,74,-0.34836428678299514],[124,-61,75,-0.34223839299416925],[124,-61,76,-0.33782105850239896],[124,-61,77,-0.3323982539634457],[124,-61,78,-0.33379189534250414],[124,-61,79,-0.33855171508296433],[124,-60,64,-0.41931738093571835],[124,-60,65,-0.4091441715252419],[124,-60,66,-0.4172968844877011],[124,-60,67,-0.40996348255289733],[124,-60,68,-0.40144068105541864],[124,-60,69,-0.39075156286739987],[124,-60,70,-0.38112542118107867],[124,-60,71,-0.36711014828676086],[124,-60,72,-0.353624239121128],[124,-60,73,-0.3439767680784969],[124,-60,74,-0.33681443963746854],[124,-60,75,-0.33187670576226713],[124,-60,76,-0.32729854506285083],[124,-60,77,-0.32322476355659735],[124,-60,78,-0.3227230108741705],[124,-60,79,-0.3276228842836794],[124,-59,64,-0.41399304387016045],[124,-59,65,-0.4061141970701802],[124,-59,66,-0.40406461258427123],[124,-59,67,-0.3986063480187335],[124,-59,68,-0.3904647985256006],[124,-59,69,-0.3791168355781281],[124,-59,70,-0.3685820201543422],[124,-59,71,-0.3546760454356473],[124,-59,72,-0.3457805766995839],[124,-59,73,-0.3371602161231689],[124,-59,74,-0.3275421791530884],[124,-59,75,-0.3230483309547775],[124,-59,76,-0.31549355366601406],[124,-59,77,-0.3125823069899134],[124,-59,78,-0.3126498274461382],[124,-59,79,-0.3155108126467507],[124,-58,64,-0.4093388820645608],[124,-58,65,-0.40398610685952085],[124,-58,66,-0.40321798863839653],[124,-58,67,-0.39497331644632294],[124,-58,68,-0.38828193111252995],[124,-58,69,-0.3742147845755856],[124,-58,70,-0.3626360749391241],[124,-58,71,-0.3518896202576173],[124,-58,72,-0.3408634301564343],[124,-58,73,-0.33060016499442674],[124,-58,74,-0.3248712088460775],[124,-58,75,-0.3181688234096563],[124,-58,76,-0.30950055639699137],[124,-58,77,-0.3067049148385549],[124,-58,78,-0.3080968830131628],[124,-58,79,-0.3092288349094858],[124,-57,64,-0.4119826121080572],[124,-57,65,-0.406152450008069],[124,-57,66,-0.40266488071412887],[124,-57,67,-0.39508028479765434],[124,-57,68,-0.38445616433351226],[124,-57,69,-0.37311587452466005],[124,-57,70,-0.3601408260632067],[124,-57,71,-0.3533876264570913],[124,-57,72,-0.33946771563506506],[124,-57,73,-0.3271356212379624],[124,-57,74,-0.32027982518769654],[124,-57,75,-0.31274175913038293],[124,-57,76,-0.30534515356533604],[124,-57,77,-0.3028221019374616],[124,-57,78,-0.30270726990767877],[124,-57,79,-0.30197917852380873],[124,-56,64,-0.41093599999003017],[124,-56,65,-0.4035213954837691],[124,-56,66,-0.3985272033382377],[124,-56,67,-0.39202299282057207],[124,-56,68,-0.38044829505551275],[124,-56,69,-0.369048015278424],[124,-56,70,-0.3597428830636497],[124,-56,71,-0.35080157001042717],[124,-56,72,-0.33646739517071944],[124,-56,73,-0.3241818594132971],[124,-56,74,-0.3158045409169446],[124,-56,75,-0.30996738411285457],[124,-56,76,-0.2996845333762348],[124,-56,77,-0.29980704310132933],[124,-56,78,-0.2976614655135171],[124,-56,79,-0.29812594468026565],[124,-55,64,-0.4096396785065507],[124,-55,65,-0.40005392835983994],[124,-55,66,-0.3929808529620234],[124,-55,67,-0.3864848999125212],[124,-55,68,-0.37826564034371324],[124,-55,69,-0.3673737012327362],[124,-55,70,-0.3588309466558437],[124,-55,71,-0.34879094973865465],[124,-55,72,-0.3329219630507144],[124,-55,73,-0.32080049216028594],[124,-55,74,-0.312583457980347],[124,-55,75,-0.30677036429991544],[124,-55,76,-0.2964962707699519],[124,-55,77,-0.2920856417256359],[124,-55,78,-0.29170944092836193],[124,-55,79,-0.2944118042234894],[124,-54,64,-0.40826334915860435],[124,-54,65,-0.3973197712979194],[124,-54,66,-0.39090490865446553],[124,-54,67,-0.3823677073628279],[124,-54,68,-0.3757143838537449],[124,-54,69,-0.36558844849843203],[124,-54,70,-0.3591594954690167],[124,-54,71,-0.34622815810880897],[124,-54,72,-0.33190525195484566],[124,-54,73,-0.3181228454282507],[124,-54,74,-0.30866384294165716],[124,-54,75,-0.303796332000089],[124,-54,76,-0.29280775683760973],[124,-54,77,-0.28795859492759857],[124,-54,78,-0.2862370099184117],[124,-54,79,-0.2891680881561918],[124,-53,64,-0.4122820953780257],[124,-53,65,-0.4004467848932783],[124,-53,66,-0.39488765860460884],[124,-53,67,-0.38455366869125146],[124,-53,68,-0.37723264828257513],[124,-53,69,-0.36850699722484115],[124,-53,70,-0.36188391371224315],[124,-53,71,-0.3491308730765567],[124,-53,72,-0.3353045749150852],[124,-53,73,-0.32152279782987536],[124,-53,74,-0.3085178503034797],[124,-53,75,-0.30344620093252495],[124,-53,76,-0.29433621125609943],[124,-53,77,-0.289666373837401],[124,-53,78,-0.2877477609628045],[124,-53,79,-0.288432256626838],[124,-52,64,-0.4069160892446124],[124,-52,65,-0.40149662275519227],[124,-52,66,-0.39132987426277827],[124,-52,67,-0.37816181808870264],[124,-52,68,-0.3671468070183805],[124,-52,69,-0.3575380688527305],[124,-52,70,-0.35042715253330026],[124,-52,71,-0.3393539870324979],[124,-52,72,-0.3243776037300821],[124,-52,73,-0.3104271530776571],[124,-52,74,-0.29973628198011587],[124,-52,75,-0.2931896865745624],[124,-52,76,-0.2861676959513712],[124,-52,77,-0.28143940060707384],[124,-52,78,-0.279296776965813],[124,-52,79,-0.2796782338524605],[124,-51,64,-0.3715999367251079],[124,-51,65,-0.3900796098871056],[124,-51,66,-0.40997544416825393],[124,-51,67,-0.3922141688699989],[124,-51,68,-0.3800090557977433],[124,-51,69,-0.3680284691066686],[124,-51,70,-0.3612750969387918],[124,-51,71,-0.3502724918644561],[124,-51,72,-0.33564386661717005],[124,-51,73,-0.3265236941928218],[124,-51,74,-0.31887444341672955],[124,-51,75,-0.30881878632193915],[124,-51,76,-0.29843044516257033],[124,-51,77,-0.2889249510167678],[124,-51,78,-0.2791194914244769],[124,-51,79,-0.2708698301109316],[124,-50,64,-0.3496927286936688],[124,-50,65,-0.35817100094256316],[124,-50,66,-0.40861216781042914],[124,-50,67,-0.39181268979144973],[124,-50,68,-0.3797334401462292],[124,-50,69,-0.3661342786050163],[124,-50,70,-0.3566901767219502],[124,-50,71,-0.3484793427014027],[124,-50,72,-0.3340081683061492],[124,-50,73,-0.32380492587957754],[124,-50,74,-0.3159104727411479],[124,-50,75,-0.3049731599108423],[124,-50,76,-0.29331228230159145],[124,-50,77,-0.2860750816615646],[124,-50,78,-0.27592645979589775],[124,-50,79,-0.26823740602019136],[124,-49,64,-0.3134853212171301],[124,-49,65,-0.320130579932013],[124,-49,66,-0.3892423839294915],[124,-49,67,-0.39636782267008663],[124,-49,68,-0.3837044744988325],[124,-49,69,-0.36868219557159904],[124,-49,70,-0.35814793410191514],[124,-49,71,-0.3465153569202554],[124,-49,72,-0.33500504006621],[124,-49,73,-0.3265724095593343],[124,-49,74,-0.3162529665935128],[124,-49,75,-0.3045829615903116],[124,-49,76,-0.2904216907875031],[124,-49,77,-0.2803971435225653],[124,-49,78,-0.27372144566754436],[124,-49,79,-0.26500063064195134],[124,-48,64,-0.28267626325209505],[124,-48,65,-0.27454132776981943],[124,-48,66,-0.32403673448856135],[124,-48,67,-0.3963349605478529],[124,-48,68,-0.38074141913841364],[124,-48,69,-0.36777191337057424],[124,-48,70,-0.35762472637859294],[124,-48,71,-0.34309627893979844],[124,-48,72,-0.3347672610989781],[124,-48,73,-0.3254261987978841],[124,-48,74,-0.31465538604973836],[124,-48,75,-0.3032253378318681],[124,-48,76,-0.2880113325701137],[124,-48,77,-0.27698969351399433],[124,-48,78,-0.2732828556589123],[124,-48,79,-0.2650324629483566],[124,-47,64,-0.26962014188723193],[124,-47,65,-0.24188064437321782],[124,-47,66,-0.2879664301681458],[124,-47,67,-0.3964628334990378],[124,-47,68,-0.38122183298686874],[124,-47,69,-0.36964453559207866],[124,-47,70,-0.35618752603673487],[124,-47,71,-0.34214238227283233],[124,-47,72,-0.3289175055576692],[124,-47,73,-0.3195530613314088],[124,-47,74,-0.3090147703960627],[124,-47,75,-0.294626220957972],[124,-47,76,-0.2803628822487533],[124,-47,77,-0.2756734710601467],[124,-47,78,-0.27799282123806707],[124,-47,79,-0.27332195623496847],[124,-46,64,-0.3056593050342723],[124,-46,65,-0.2746189583806857],[124,-46,66,-0.2649811657641239],[124,-46,67,-0.33340648989046634],[124,-46,68,-0.3795427967081184],[124,-46,69,-0.36828771659067316],[124,-46,70,-0.35584938278448286],[124,-46,71,-0.3413775937821015],[124,-46,72,-0.3283549499834548],[124,-46,73,-0.31878182709254643],[124,-46,74,-0.3071088113530746],[124,-46,75,-0.29421237115498977],[124,-46,76,-0.2804334429715626],[124,-46,77,-0.27566840601329334],[124,-46,78,-0.27603879776591733],[124,-46,79,-0.27296114396062304],[124,-45,64,-0.267449748431368],[124,-45,65,-0.2483484000820025],[124,-45,66,-0.22664559826042335],[124,-45,67,-0.3176587632694916],[124,-45,68,-0.38024706262627045],[124,-45,69,-0.37042033650431144],[124,-45,70,-0.3583752756490959],[124,-45,71,-0.3452369449720998],[124,-45,72,-0.3340221062032007],[124,-45,73,-0.32138197432181753],[124,-45,74,-0.3079647561723934],[124,-45,75,-0.29534095478315076],[124,-45,76,-0.28540328207214816],[124,-45,77,-0.2836353083813981],[124,-45,78,-0.28052858649877516],[124,-45,79,-0.2770824148074528],[124,-44,64,-0.10016985263113354],[124,-44,65,-0.07427060983950357],[124,-44,66,-0.04876593106877669],[124,-44,67,-0.23318493884754718],[124,-44,68,-0.3387723321813287],[124,-44,69,-0.40198717458318],[124,-44,70,-0.39437837717398083],[124,-44,71,-0.38441612134976777],[124,-44,72,-0.37537965845385496],[124,-44,73,-0.36323826304403234],[124,-44,74,-0.350924478388781],[124,-44,75,-0.3384599336736673],[124,-44,76,-0.3319252760791694],[124,-44,77,-0.3284407962490286],[124,-44,78,-0.3263732555468098],[124,-44,79,-0.3196433109281688],[124,-43,64,0.019949248548449927],[124,-43,65,0.05516005223354348],[124,-43,66,0.041167354372754206],[124,-43,67,-0.10643319986148331],[124,-43,68,-0.2199211403064007],[124,-43,69,-0.3654028094162357],[124,-43,70,-0.3872274498526834],[124,-43,71,-0.379106377109938],[124,-43,72,-0.367343796413709],[124,-43,73,-0.3578564537408895],[124,-43,74,-0.34505020842536],[124,-43,75,-0.3355306161499739],[124,-43,76,-0.330821589116967],[124,-43,77,-0.32458891900735326],[124,-43,78,-0.32452577259759674],[124,-43,79,-0.3176974209939425],[124,-42,64,0.04584942671590475],[124,-42,65,0.07509996565186666],[124,-42,66,0.053618210686598056],[124,-42,67,-0.0933562097898128],[124,-42,68,-0.21879129052697707],[124,-42,69,-0.36493494852051483],[124,-42,70,-0.38681593446237317],[124,-42,71,-0.3746642535334861],[124,-42,72,-0.3648952631585702],[124,-42,73,-0.35523623054971154],[124,-42,74,-0.3417585203349563],[124,-42,75,-0.33567874925962526],[124,-42,76,-0.3325283906610018],[124,-42,77,-0.3257999717701778],[124,-42,78,-0.32286398252013127],[124,-42,79,-0.3176627252347678],[124,-41,64,0.11816538830608742],[124,-41,65,0.14253208925385888],[124,-41,66,0.1341109066832174],[124,-41,67,-0.009541420033135573],[124,-41,68,-0.11293653106471552],[124,-41,69,-0.29706699776050466],[124,-41,70,-0.3870286667675308],[124,-41,71,-0.375114746584952],[124,-41,72,-0.3663661481759577],[124,-41,73,-0.3528438421565445],[124,-41,74,-0.34302875777126146],[124,-41,75,-0.338806857971236],[124,-41,76,-0.3331198448926184],[124,-41,77,-0.3280797434355612],[124,-41,78,-0.32190855547787817],[124,-41,79,-0.3158596580006688],[124,-40,64,0.1415444597371277],[124,-40,65,0.14651977573852],[124,-40,66,0.15027837372445677],[124,-40,67,0.01596283372466828],[124,-40,68,-0.10382201849802003],[124,-40,69,-0.307811257788897],[124,-40,70,-0.3725461849773462],[124,-40,71,-0.37401139186155297],[124,-40,72,-0.3671337867172908],[124,-40,73,-0.35546390790935134],[124,-40,74,-0.344253398616602],[124,-40,75,-0.33869926470374895],[124,-40,76,-0.33257983135008334],[124,-40,77,-0.3258430663405927],[124,-40,78,-0.3172539387147646],[124,-40,79,-0.31169126386947166],[124,-39,64,0.1405021165437748],[124,-39,65,0.1490993084745157],[124,-39,66,0.15142074318582624],[124,-39,67,0.03883666072652381],[124,-39,68,-0.12650980570570308],[124,-39,69,-0.32941896489490574],[124,-39,70,-0.38338081593056317],[124,-39,71,-0.3761638219989358],[124,-39,72,-0.36933795744565007],[124,-39,73,-0.3594050218700997],[124,-39,74,-0.3489227043513644],[124,-39,75,-0.34387990740571506],[124,-39,76,-0.3363513022117526],[124,-39,77,-0.32705006450678187],[124,-39,78,-0.3166308300276354],[124,-39,79,-0.31030528200898105],[124,-38,64,0.14840182873204183],[124,-38,65,0.15593312123570588],[124,-38,66,0.1588389782521886],[124,-38,67,-0.03412728993859648],[124,-38,68,-0.22921982955503445],[124,-38,69,-0.3852480518236059],[124,-38,70,-0.38194886545538825],[124,-38,71,-0.3735192587939911],[124,-38,72,-0.3641621339036894],[124,-38,73,-0.3585628167597458],[124,-38,74,-0.348174670765567],[124,-38,75,-0.3417588694152449],[124,-38,76,-0.3343285840068354],[124,-38,77,-0.32420533761632814],[124,-38,78,-0.31528217431851463],[124,-38,79,-0.3064962269763041],[124,-37,64,0.14802173967448506],[124,-37,65,0.15613704640405743],[124,-37,66,0.15956506045315957],[124,-37,67,0.025755293717457217],[124,-37,68,-0.15270921872115328],[124,-37,69,-0.3870073762654686],[124,-37,70,-0.38230725886521943],[124,-37,71,-0.3762712189005596],[124,-37,72,-0.36757120620291395],[124,-37,73,-0.36328142240491124],[124,-37,74,-0.35307550401155174],[124,-37,75,-0.3461698565419529],[124,-37,76,-0.3378297385922676],[124,-37,77,-0.32571700786836255],[124,-37,78,-0.3178318157327717],[124,-37,79,-0.30774192809457684],[124,-36,64,0.13911399597612528],[124,-36,65,0.14391074542476254],[124,-36,66,0.1470666974208099],[124,-36,67,0.046704432357191794],[124,-36,68,-0.12190329116763593],[124,-36,69,-0.3666191281490829],[124,-36,70,-0.37127017823031744],[124,-36,71,-0.3665928775115744],[124,-36,72,-0.3582398007752173],[124,-36,73,-0.35177623644763434],[124,-36,74,-0.3448534729287703],[124,-36,75,-0.334946881479632],[124,-36,76,-0.3255996227459395],[124,-36,77,-0.3150519105259399],[124,-36,78,-0.3065440303136225],[124,-36,79,-0.2962710642301401],[124,-35,64,0.13950968823276344],[124,-35,65,0.14411818224828538],[124,-35,66,0.14528974342734796],[124,-35,67,-0.04512021059623905],[124,-35,68,-0.2645749977802782],[124,-35,69,-0.3701969446081479],[124,-35,70,-0.36764374129369176],[124,-35,71,-0.36221272561219486],[124,-35,72,-0.35570381294116676],[124,-35,73,-0.35007193620090093],[124,-35,74,-0.3419468478309204],[124,-35,75,-0.329581840915895],[124,-35,76,-0.3176390726634504],[124,-35,77,-0.30606028387325096],[124,-35,78,-0.29598429577781066],[124,-35,79,-0.28419438410853914],[124,-34,64,0.13352550571733462],[124,-34,65,0.13680867956851828],[124,-34,66,0.13850319296027125],[124,-34,67,-0.031140087881091016],[124,-34,68,-0.246193956590737],[124,-34,69,-0.3683688140661435],[124,-34,70,-0.3635522842769051],[124,-34,71,-0.36022200946762145],[124,-34,72,-0.35491019408803104],[124,-34,73,-0.34760861133607335],[124,-34,74,-0.33777199160125937],[124,-34,75,-0.32533327600948564],[124,-34,76,-0.31612501620902755],[124,-34,77,-0.3040856650617489],[124,-34,78,-0.2939467073758957],[124,-34,79,-0.28281384491306305],[124,-33,64,0.12922955757243773],[124,-33,65,0.12790630235768422],[124,-33,66,0.12991402245305808],[124,-33,67,-0.0060901296664275795],[124,-33,68,-0.18554111396179673],[124,-33,69,-0.32264927632311524],[124,-33,70,-0.3246732409187469],[124,-33,71,-0.32433314358020804],[124,-33,72,-0.32318933642770975],[124,-33,73,-0.32141218700301244],[124,-33,74,-0.31605186456877593],[124,-33,75,-0.3072730734806759],[124,-33,76,-0.30486089018945794],[124,-33,77,-0.29606838851240036],[124,-33,78,-0.29364869561719964],[124,-33,79,-0.28485687307982355],[124,-32,64,0.1345324876870066],[124,-32,65,0.13292313654433066],[124,-32,66,0.13567293955296789],[124,-32,67,0.02088009931709789],[124,-32,68,-0.13185961143797972],[124,-32,69,-0.31716800502828013],[124,-32,70,-0.31752085996175455],[124,-32,71,-0.31731377497304736],[124,-32,72,-0.317016198262613],[124,-32,73,-0.31779260374591234],[124,-32,74,-0.31238696943674105],[124,-32,75,-0.3050570387438802],[124,-32,76,-0.3024529792304168],[124,-32,77,-0.2954345537935956],[124,-32,78,-0.29071181424995635],[124,-32,79,-0.27989724363219315],[124,-31,64,0.1374414000955747],[124,-31,65,0.13732024225905665],[124,-31,66,0.13852918212731546],[124,-31,67,0.13901282004246857],[124,-31,68,-0.0024450567530127088],[124,-31,69,-0.23312201223429382],[124,-31,70,-0.31310582466776404],[124,-31,71,-0.3124518008965985],[124,-31,72,-0.3122884223445056],[124,-31,73,-0.3138755161979483],[124,-31,74,-0.3078799204979433],[124,-31,75,-0.3009939126849811],[124,-31,76,-0.298887649603932],[124,-31,77,-0.2943056420531197],[124,-31,78,-0.28685280258930007],[124,-31,79,-0.27579700490930165],[124,-30,64,0.14987693812272165],[124,-30,65,0.15009881441944659],[124,-30,66,0.15236795481666682],[124,-30,67,0.15749124204676487],[124,-30,68,0.014337812045137177],[124,-30,69,-0.20650582635926973],[124,-30,70,-0.30965601338385385],[124,-30,71,-0.3100078666541406],[124,-30,72,-0.30913988877643306],[124,-30,73,-0.3096579630680128],[124,-30,74,-0.3046353407507062],[124,-30,75,-0.29777625908399485],[124,-30,76,-0.2974411489356984],[124,-30,77,-0.2927591247973364],[124,-30,78,-0.28346863267643196],[124,-30,79,-0.2708488329872251],[124,-29,64,0.16614861567716005],[124,-29,65,0.1648255261651183],[124,-29,66,0.16684315610227307],[124,-29,67,0.1701174136068026],[124,-29,68,0.09136670129205898],[124,-29,69,-0.12905769419861562],[124,-29,70,-0.27299098992025805],[124,-29,71,-0.3113800332539618],[124,-29,72,-0.31036588823409994],[124,-29,73,-0.31144176610734453],[124,-29,74,-0.308993607515474],[124,-29,75,-0.30331962058143536],[124,-29,76,-0.2988461940443049],[124,-29,77,-0.29350125681802897],[124,-29,78,-0.2862106018578151],[124,-29,79,-0.27467129031532833],[124,-28,64,0.16033336634999454],[124,-28,65,0.15919051651509902],[124,-28,66,0.15820793900977975],[124,-28,67,0.1612839312912426],[124,-28,68,0.10118225251887603],[124,-28,69,-0.11909948445706148],[124,-28,70,-0.25148056905724236],[124,-28,71,-0.3016607268925337],[124,-28,72,-0.2998303248843081],[124,-28,73,-0.3026574661517126],[124,-28,74,-0.29964759611931124],[124,-28,75,-0.2929541203375476],[124,-28,76,-0.28769162103705165],[124,-28,77,-0.28362569631628687],[124,-28,78,-0.2791748349785142],[124,-28,79,-0.26624998631716473],[124,-27,64,0.16330199835065415],[124,-27,65,0.1598091647505442],[124,-27,66,0.1578453345768717],[124,-27,67,0.15944271047703407],[124,-27,68,0.15891153942835956],[124,-27,69,0.04042441507162292],[124,-27,70,-0.09472373341089083],[124,-27,71,-0.2497329853056302],[124,-27,72,-0.28742454573717824],[124,-27,73,-0.2908702069665844],[124,-27,74,-0.28645336906332536],[124,-27,75,-0.283996625921864],[124,-27,76,-0.27984499498691917],[124,-27,77,-0.2787055771742498],[124,-27,78,-0.2754159761000804],[124,-27,79,-0.2652822946700745],[124,-26,64,0.21466134570746664],[124,-26,65,0.21214934352941148],[124,-26,66,0.20990837247712868],[124,-26,67,0.21225913684570888],[124,-26,68,0.20970144511108815],[124,-26,69,0.12281589918253977],[124,-26,70,-0.040966560719023576],[124,-26,71,-0.2297199466339102],[124,-26,72,-0.28205270052341413],[124,-26,73,-0.28424716235610986],[124,-26,74,-0.28198150775306297],[124,-26,75,-0.2800124683747177],[124,-26,76,-0.27839810304987905],[124,-26,77,-0.2778228162610133],[124,-26,78,-0.27080770549111466],[124,-26,79,-0.2628869587102003],[124,-25,64,0.21566328453772507],[124,-25,65,0.21348329942641436],[124,-25,66,0.21308452105496967],[124,-25,67,0.2122146323012876],[124,-25,68,0.2086890985590954],[124,-25,69,0.1870766025103724],[124,-25,70,-0.0018248970281844468],[124,-25,71,-0.17445210991706683],[124,-25,72,-0.27226905110036254],[124,-25,73,-0.2821812443206662],[124,-25,74,-0.2802819103177986],[124,-25,75,-0.2781870307767271],[124,-25,76,-0.2781490584000067],[124,-25,77,-0.27669566976388194],[124,-25,78,-0.26891519073821973],[124,-25,79,-0.25899490989478047],[124,-24,64,0.22166707295583804],[124,-24,65,0.22053858280039018],[124,-24,66,0.22039769713948756],[124,-24,67,0.2166875666643061],[124,-24,68,0.21217271250261602],[124,-24,69,0.20736170814280913],[124,-24,70,0.023306814804064324],[124,-24,71,-0.1317347301350659],[124,-24,72,-0.24825650905033397],[124,-24,73,-0.2771906661111787],[124,-24,74,-0.27664293355805575],[124,-24,75,-0.2743130154578601],[124,-24,76,-0.2752038266783462],[124,-24,77,-0.27506070785312564],[124,-24,78,-0.2665649173106095],[124,-24,79,-0.25742314440510494],[124,-23,64,0.22211852817147232],[124,-23,65,0.2223224013625257],[124,-23,66,0.22253989510733446],[124,-23,67,0.21693011052093594],[124,-23,68,0.2093694287941577],[124,-23,69,0.20798832758151048],[124,-23,70,0.010893837020669095],[124,-23,71,-0.16235200726298737],[124,-23,72,-0.2679450653548062],[124,-23,73,-0.26865567301856796],[124,-23,74,-0.2685691235638671],[124,-23,75,-0.2678446671765704],[124,-23,76,-0.27163844873472964],[124,-23,77,-0.2738905751079992],[124,-23,78,-0.2718499450636116],[124,-23,79,-0.2671635359013358],[124,-22,64,0.23001883599741224],[124,-22,65,0.2309530136190343],[124,-22,66,0.23175902152635083],[124,-22,67,0.22578824221712646],[124,-22,68,0.21658040540715337],[124,-22,69,0.21713427197834476],[124,-22,70,0.03674255324561476],[124,-22,71,-0.16029338638610657],[124,-22,72,-0.26348164566635923],[124,-22,73,-0.2632379373798833],[124,-22,74,-0.2649789600255207],[124,-22,75,-0.26548695961547497],[124,-22,76,-0.2683092888296962],[124,-22,77,-0.2701824369654522],[124,-22,78,-0.2710653766334879],[124,-22,79,-0.2671655056700368],[124,-21,64,0.2259010340227712],[124,-21,65,0.22685153319802276],[124,-21,66,0.22631056165457944],[124,-21,67,0.22313491816127226],[124,-21,68,0.2142917319931494],[124,-21,69,0.21167445540277757],[124,-21,70,0.13042712868742756],[124,-21,71,-0.099038678418363],[124,-21,72,-0.17990604066625027],[124,-21,73,-0.26552704593761106],[124,-21,74,-0.26784694846197693],[124,-21,75,-0.26783036313466707],[124,-21,76,-0.26978212970927723],[124,-21,77,-0.2727469549460218],[124,-21,78,-0.27426177240971966],[124,-21,79,-0.2719355629091186],[124,-20,64,0.21459809044189215],[124,-20,65,0.2177397785901259],[124,-20,66,0.2157243863560102],[124,-20,67,0.21084187360792556],[124,-20,68,0.20320636866451053],[124,-20,69,0.20052908555254986],[124,-20,70,0.14528414601896045],[124,-20,71,-0.0954780543265335],[124,-20,72,-0.1567299895107468],[124,-20,73,-0.2574645078148702],[124,-20,74,-0.259521973422763],[124,-20,75,-0.25895622326744777],[124,-20,76,-0.2624622972788216],[124,-20,77,-0.2661061189638414],[124,-20,78,-0.26770703880346214],[124,-20,79,-0.26739450481661264],[124,-19,64,0.2143572256889813],[124,-19,65,0.2177031098278958],[124,-19,66,0.21375419785922342],[124,-19,67,0.20784748326190897],[124,-19,68,0.20056859199967514],[124,-19,69,0.20008859648607671],[124,-19,70,0.20772100481557887],[124,-19,71,0.05147523528756692],[124,-19,72,-0.05385337208368063],[124,-19,73,-0.25193799909323394],[124,-19,74,-0.251913047552231],[124,-19,75,-0.25254209041355913],[124,-19,76,-0.25717707092263914],[124,-19,77,-0.2601163155999264],[124,-19,78,-0.26293209664100725],[124,-19,79,-0.25821195756981435],[124,-18,64,0.2023034836373261],[124,-18,65,0.20615716207561202],[124,-18,66,0.20398513673301244],[124,-18,67,0.1982040524576435],[124,-18,68,0.1914608122362818],[124,-18,69,0.19231467313158263],[124,-18,70,0.19849880151159904],[124,-18,71,0.10626531999380645],[124,-18,72,-0.03689151999475823],[124,-18,73,-0.22215129607281336],[124,-18,74,-0.2458283246289368],[124,-18,75,-0.24853191469906083],[124,-18,76,-0.25341160909338106],[124,-18,77,-0.2588232301180332],[124,-18,78,-0.2603384547076557],[124,-18,79,-0.2573908972484666],[124,-17,64,0.20484545508923144],[124,-17,65,0.2065931210915963],[124,-17,66,0.20600274563328586],[124,-17,67,0.2021511268199732],[124,-17,68,0.19773173438547823],[124,-17,69,0.20254525061656153],[124,-17,70,0.20836084781542344],[124,-17,71,0.155697336357907],[124,-17,72,-0.018424292192685043],[124,-17,73,-0.16818061719231583],[124,-17,74,-0.24231977056007598],[124,-17,75,-0.24485068769560606],[124,-17,76,-0.2490385918037154],[124,-17,77,-0.25338876781681263],[124,-17,78,-0.2560319631258159],[124,-17,79,-0.251776238066722],[124,-16,64,0.20946547954897074],[124,-16,65,0.20971708483035034],[124,-16,66,0.21096389786283742],[124,-16,67,0.20804226043932816],[124,-16,68,0.20321426095343098],[124,-16,69,0.20596270661576546],[124,-16,70,0.21417539271751818],[124,-16,71,0.21885464938677793],[124,-16,72,0.08298633977138486],[124,-16,73,-0.04587881838510058],[124,-16,74,-0.23997143416831007],[124,-16,75,-0.24144128907325144],[124,-16,76,-0.24514690175171194],[124,-16,77,-0.250293098652168],[124,-16,78,-0.25076420406794014],[124,-16,79,-0.2464651387655516],[124,-15,64,0.20869220973750985],[124,-15,65,0.21060931197972022],[124,-15,66,0.20878267959155714],[124,-15,67,0.2086903206784649],[124,-15,68,0.20486735066733272],[124,-15,69,0.20899614356351862],[124,-15,70,0.2177232433992149],[124,-15,71,0.2193205945819585],[124,-15,72,0.10603665643601629],[124,-15,73,-0.02429284875418594],[124,-15,74,-0.23718923361979233],[124,-15,75,-0.23757980480839302],[124,-15,76,-0.24013881776047308],[124,-15,77,-0.2419127822731695],[124,-15,78,-0.24277548618570086],[124,-15,79,-0.23734077097669296],[124,-14,64,0.1054463025952664],[124,-14,65,0.10615647357466451],[124,-14,66,0.10548277512463855],[124,-14,67,0.10514532948529953],[124,-14,68,0.10439596248028526],[124,-14,69,0.10874453775173534],[124,-14,70,0.113994317630613],[124,-14,71,0.11557027004614803],[124,-14,72,0.04741362995476636],[124,-14,73,-0.06267905482725919],[124,-14,74,-0.23646176506461078],[124,-14,75,-0.2357095054038537],[124,-14,76,-0.2370418303056897],[124,-14,77,-0.23896946289748774],[124,-14,78,-0.23923767390022277],[124,-14,79,-0.2353777123959913],[124,-13,64,0.10913105769042862],[124,-13,65,0.10665299297302323],[124,-13,66,0.10585172235417323],[124,-13,67,0.10600699967013087],[124,-13,68,0.10763622081182436],[124,-13,69,0.11047097498332101],[124,-13,70,0.11390041896544387],[124,-13,71,0.11600633582154199],[124,-13,72,0.10529794899553963],[124,-13,73,-0.006858909320951984],[124,-13,74,-0.19638759403265277],[124,-13,75,-0.23884341416036503],[124,-13,76,-0.24060677063854397],[124,-13,77,-0.24221406431525386],[124,-13,78,-0.2420245709912834],[124,-13,79,-0.23739308015265786],[124,-12,64,0.09660763209948757],[124,-12,65,0.09314459183266019],[124,-12,66,0.09352585729162019],[124,-12,67,0.09656714820685236],[124,-12,68,0.09819354565351375],[124,-12,69,0.10144150625491616],[124,-12,70,0.10255615714892452],[124,-12,71,0.10625646252955784],[124,-12,72,0.10328610206648237],[124,-12,73,-0.009791615368729467],[124,-12,74,-0.16043475006196561],[124,-12,75,-0.2381178865847182],[124,-12,76,-0.2397770282435748],[124,-12,77,-0.23817126853498832],[124,-12,78,-0.23885090045690463],[124,-12,79,-0.23358425576618652],[124,-11,64,0.09216590561228497],[124,-11,65,0.08842931232788921],[124,-11,66,0.09187759387190077],[124,-11,67,0.09406398887033705],[124,-11,68,0.09657490640903914],[124,-11,69,0.09765675504554855],[124,-11,70,0.10116316840658485],[124,-11,71,0.10793678421110121],[124,-11,72,0.119771623210784],[124,-11,73,-8.179542177757793E-4],[124,-11,74,-0.14938817793546255],[124,-11,75,-0.23017131638310184],[124,-11,76,-0.2318756627778284],[124,-11,77,-0.22889722474222432],[124,-11,78,-0.23000846338784242],[124,-11,79,-0.22740330380354862],[124,-10,64,0.08150865195213293],[124,-10,65,0.08043228760864746],[124,-10,66,0.08109299915402739],[124,-10,67,0.08251458755334273],[124,-10,68,0.08807692812780363],[124,-10,69,0.0894065780354017],[124,-10,70,0.09261043763156322],[124,-10,71,0.10045139812118623],[124,-10,72,0.11367478307173699],[124,-10,73,0.002164828705286226],[124,-10,74,-0.13761057573355545],[124,-10,75,-0.22710983729822437],[124,-10,76,-0.22859102697532993],[124,-10,77,-0.22602085737405947],[124,-10,78,-0.22387392248794508],[124,-10,79,-0.22196020647470993],[124,-9,64,0.08729421762342612],[124,-9,65,0.089795780582259],[124,-9,66,0.08707582494121058],[124,-9,67,0.08798880594975225],[124,-9,68,0.091972270443103],[124,-9,69,0.09722620770309331],[124,-9,70,0.09890879465993718],[124,-9,71,0.10918455958836351],[124,-9,72,0.11866443904817953],[124,-9,73,0.0016526071171416301],[124,-9,74,-0.1320564359605202],[124,-9,75,-0.22298040629709662],[124,-9,76,-0.2240656091261698],[124,-9,77,-0.2237666245029135],[124,-9,78,-0.21767308802627777],[124,-9,79,-0.2148441461654324],[124,-8,64,0.08887370706029207],[124,-8,65,0.0905713303046638],[124,-8,66,0.08811249249229283],[124,-8,67,0.08765508762168137],[124,-8,68,0.09222746751340631],[124,-8,69,0.0992895466527568],[124,-8,70,0.10378513990274292],[124,-8,71,0.11413932213747931],[124,-8,72,0.11976464613632234],[124,-8,73,-0.03308016957843618],[124,-8,74,-0.16157511390438706],[124,-8,75,-0.21679244514507076],[124,-8,76,-0.22216857635016038],[124,-8,77,-0.21920832578361824],[124,-8,78,-0.2131849840206127],[124,-8,79,-0.2109014070224247],[124,-7,64,0.08806119439879115],[124,-7,65,0.0872737449934661],[124,-7,66,0.08494478354426975],[124,-7,67,0.08449676551158382],[124,-7,68,0.08895013454028101],[124,-7,69,0.09492374995071735],[124,-7,70,0.10287083622455839],[124,-7,71,0.11346016379148333],[124,-7,72,0.12107660362400602],[124,-7,73,-0.025852682120892284],[124,-7,74,-0.173799279275808],[124,-7,75,-0.2125159469428659],[124,-7,76,-0.21910786420939052],[124,-7,77,-0.2142426899548536],[124,-7,78,-0.2076768580419718],[124,-7,79,-0.20581484196087724],[124,-6,64,0.08500096335337841],[124,-6,65,0.08179676351165568],[124,-6,66,0.08215691982847699],[124,-6,67,0.08167023057151145],[124,-6,68,0.08610580339104917],[124,-6,69,0.09316005817938894],[124,-6,70,0.10099998071662925],[124,-6,71,0.10891494655261988],[124,-6,72,0.12155480235757701],[124,-6,73,-0.023728346676247458],[124,-6,74,-0.18796922021342677],[124,-6,75,-0.2091326824571893],[124,-6,76,-0.2150200223649586],[124,-6,77,-0.21164986608997174],[124,-6,78,-0.2025382751918904],[124,-6,79,-0.19769246052174308],[124,-5,64,0.08129842274229196],[124,-5,65,0.07824063974405866],[124,-5,66,0.07633114507969861],[124,-5,67,0.0780851270628414],[124,-5,68,0.08578291879686455],[124,-5,69,0.09212028572675014],[124,-5,70,0.09738751486303292],[124,-5,71,0.10658098486227519],[124,-5,72,0.12126250213411638],[124,-5,73,0.13668770809303996],[124,-5,74,0.060809335070389936],[124,-5,75,-0.10400916487236145],[124,-5,76,-0.2151605305251376],[124,-5,77,-0.2130289386355826],[124,-5,78,-0.20598622530738897],[124,-5,79,-0.1975550270196515],[124,-4,64,0.0670050629106537],[124,-4,65,0.06764799318173136],[124,-4,66,0.06500733803608291],[124,-4,67,0.06793138890038682],[124,-4,68,0.07410383736935403],[124,-4,69,0.08131071396348219],[124,-4,70,0.08568320446110222],[124,-4,71,0.09582526912206789],[124,-4,72,0.11232572124477908],[124,-4,73,0.12325891980144482],[124,-4,74,0.0589227628772811],[124,-4,75,-0.10335905363989677],[124,-4,76,-0.21133204590056803],[124,-4,77,-0.20894041936494032],[124,-4,78,-0.20254919446479208],[124,-4,79,-0.19446647093899827],[124,-3,64,0.057092648391011545],[124,-3,65,0.0584521498593649],[124,-3,66,0.055845225617019455],[124,-3,67,0.0577905059970088],[124,-3,68,0.06599913681416392],[124,-3,69,0.07524082585061505],[124,-3,70,0.08106252113316156],[124,-3,71,0.09541178026983702],[124,-3,72,0.11175602204509795],[124,-3,73,0.12477293794911522],[124,-3,74,0.09971868664961145],[124,-3,75,-0.06146655341717444],[124,-3,76,-0.2045764712973785],[124,-3,77,-0.19922656313693257],[124,-3,78,-0.19280472744262991],[124,-3,79,-0.18268788384564172],[124,-2,64,0.051726519239417276],[124,-2,65,0.05208053651018668],[124,-2,66,0.05189370870488816],[124,-2,67,0.054019614961931445],[124,-2,68,0.062229998765562344],[124,-2,69,0.0711204933770052],[124,-2,70,0.08055041694652121],[124,-2,71,0.09316980659374996],[124,-2,72,0.10661001549876645],[124,-2,73,0.1196838872670172],[124,-2,74,0.09049110433473212],[124,-2,75,-0.05773907689566882],[124,-2,76,-0.20116611801172557],[124,-2,77,-0.19703042362967188],[124,-2,78,-0.1875683840873039],[124,-2,79,-0.1812456010487347],[124,-1,64,0.05054084187042414],[124,-1,65,0.05115264930881183],[124,-1,66,0.05298215344696662],[124,-1,67,0.055727902660158896],[124,-1,68,0.061132842824071186],[124,-1,69,0.07195023222170034],[124,-1,70,0.08458338498818746],[124,-1,71,0.09576847045645442],[124,-1,72,0.1086675491840038],[124,-1,73,0.12324262243057864],[124,-1,74,0.07933640062583922],[124,-1,75,-0.05704241048156661],[124,-1,76,-0.19612978553563531],[124,-1,77,-0.19189180027342279],[124,-1,78,-0.18390708718018392],[124,-1,79,-0.17897664809635344],[124,0,64,-0.02859077061789167],[124,0,65,-0.027694332484679673],[124,0,66,-0.028970197309256734],[124,0,67,-0.02938446204193998],[124,0,68,-0.031494050535600976],[124,0,69,-0.040470858628731204],[124,0,70,-0.04878083187652267],[124,0,71,-0.053618279677705744],[124,0,72,-0.055911507696219165],[124,0,73,-0.06543173644533136],[124,0,74,-0.07540385471696072],[124,0,75,-0.08636499814554494],[124,0,76,-0.09277330074027772],[124,0,77,-0.08922248828097491],[124,0,78,-0.08741453221058082],[124,0,79,-0.08545546436230139],[124,1,64,-0.028582558120038792],[124,1,65,-0.025572734289232013],[124,1,66,-0.028309123249831897],[124,1,67,-0.027891581305759333],[124,1,68,-0.03172580893629137],[124,1,69,-0.039263220950412625],[124,1,70,-0.0473063292919796],[124,1,71,-0.04993159931420313],[124,1,72,-0.054531607844043206],[124,1,73,-0.0663633526641204],[124,1,74,-0.07605041342026987],[124,1,75,-0.0852975898587473],[124,1,76,-0.08939030215690463],[124,1,77,-0.08707036144713334],[124,1,78,-0.08574388048982705],[124,1,79,-0.08300634626045106],[124,2,64,-0.0304704703191071],[124,2,65,-0.028462649989005606],[124,2,66,-0.02736214541168122],[124,2,67,-0.027463803638751588],[124,2,68,-0.030303319050391103],[124,2,69,-0.03737755645175156],[124,2,70,-0.04742254751783451],[124,2,71,-0.04982866865114825],[124,2,72,-0.05514366820724678],[124,2,73,-0.06595426204652233],[124,2,74,-0.07474990523656067],[124,2,75,-0.083810552038539],[124,2,76,-0.0874722078326344],[124,2,77,-0.0856927098136272],[124,2,78,-0.08304996578664199],[124,2,79,-0.08106152886028335],[124,3,64,-0.03060653334884833],[124,3,65,-0.02837305055704209],[124,3,66,-0.02729959036313681],[124,3,67,-0.027829654088764255],[124,3,68,-0.02942937586206898],[124,3,69,-0.03825551052719678],[124,3,70,-0.046351554002267537],[124,3,71,-0.050058102206232497],[124,3,72,-0.05521053429337089],[124,3,73,-0.0654457116741522],[124,3,74,-0.0758932704418478],[124,3,75,-0.08280394102456362],[124,3,76,-0.08555248332369639],[124,3,77,-0.08506096685452763],[124,3,78,-0.08171532626545833],[124,3,79,-0.07793597294593654],[124,4,64,-0.028613551151070227],[124,4,65,-0.02664222621718404],[124,4,66,-0.02964466424839357],[124,4,67,-0.02914452838097395],[124,4,68,-0.031408188885886645],[124,4,69,-0.03743468524443885],[124,4,70,-0.046119359088411804],[124,4,71,-0.05085049882278889],[124,4,72,-0.057198324428471226],[124,4,73,-0.06514394822997124],[124,4,74,-0.0767868298836932],[124,4,75,-0.08548007795677531],[124,4,76,-0.08666600199828002],[124,4,77,-0.08629395086203484],[124,4,78,-0.08390327037209583],[124,4,79,-0.07644228784886599],[124,5,64,-0.02549017659883346],[124,5,65,-0.02826840428388297],[124,5,66,-0.030379022699141583],[124,5,67,-0.02862973611495656],[124,5,68,-0.034201475521350944],[124,5,69,-0.03938410014974841],[124,5,70,-0.044906155817012974],[124,5,71,-0.05205905551824218],[124,5,72,-0.05731334371207655],[124,5,73,-0.06490251342119145],[124,5,74,-0.07542855540769586],[124,5,75,-0.08341557621540124],[124,5,76,-0.08568192738525346],[124,5,77,-0.08709487989851616],[124,5,78,-0.08486694212973289],[124,5,79,-0.07547686765710707],[124,6,64,-0.024137490444570697],[124,6,65,-0.026951316497329902],[124,6,66,-0.02901082689818199],[124,6,67,-0.03072527366167016],[124,6,68,-0.036099357010742766],[124,6,69,-0.04095269795208942],[124,6,70,-0.047137019635055344],[124,6,71,-0.05350877526364453],[124,6,72,-0.05845926160887667],[124,6,73,-0.0648362355487871],[124,6,74,-0.0744415149384691],[124,6,75,-0.08133462720105664],[124,6,76,-0.08216167149453002],[124,6,77,-0.08605198508967035],[124,6,78,-0.08252337204064705],[124,6,79,-0.07555671953414639],[124,7,64,-0.022258923189897833],[124,7,65,-0.0248903851892556],[124,7,66,-0.028869657463653053],[124,7,67,-0.033215306717644416],[124,7,68,-0.03557189044334938],[124,7,69,-0.042316184390152195],[124,7,70,-0.04943700066976747],[124,7,71,-0.05266979053248534],[124,7,72,-0.056252598667698134],[124,7,73,-0.0619899121300513],[124,7,74,-0.07302546957109599],[124,7,75,-0.07816517536509793],[124,7,76,-0.08087463923471173],[124,7,77,-0.0851494401347437],[124,7,78,-0.07979492542652057],[124,7,79,-0.07357577276736262],[124,8,64,-0.019352414811158875],[124,8,65,-0.024110126165404006],[124,8,66,-0.02630158276519906],[124,8,67,-0.02907253054091688],[124,8,68,-0.03092988220693582],[124,8,69,-0.03422988554007125],[124,8,70,-0.04072958521874223],[124,8,71,-0.04397534592805383],[124,8,72,-0.047418535086359404],[124,8,73,-0.04976722572610642],[124,8,74,-0.05826299667974058],[124,8,75,-0.06440108119417517],[124,8,76,-0.06536780693189632],[124,8,77,-0.06976792354722476],[124,8,78,-0.06813220045906321],[124,8,79,-0.06589138245763904],[124,9,64,-0.01924859938214446],[124,9,65,-0.029184797958579006],[124,9,66,-0.03444848550443794],[124,9,67,-0.03861148058370659],[124,9,68,-0.03996447275449204],[124,9,69,-0.043156854894584346],[124,9,70,-0.04843065502819799],[124,9,71,-0.05114018490501562],[124,9,72,-0.053801705215039936],[124,9,73,-0.056502038081410105],[124,9,74,-0.06279323198186341],[124,9,75,-0.06497992480242322],[124,9,76,-0.0665297786357773],[124,9,77,-0.07040564917262865],[124,9,78,-0.06942577002242978],[124,9,79,-0.06756642785381342],[124,10,64,-0.017240041660864514],[124,10,65,-0.026505845395213112],[124,10,66,-0.03385560661770132],[124,10,67,-0.041510726695004524],[124,10,68,-0.03957864065789907],[124,10,69,-0.04220890743889044],[124,10,70,-0.04790369033594245],[124,10,71,-0.05063780104061952],[124,10,72,-0.05382300874096069],[124,10,73,-0.05891253233262986],[124,10,74,-0.061696989295139115],[124,10,75,-0.06180288260783903],[124,10,76,-0.06361999921307857],[124,10,77,-0.06792662597712844],[124,10,78,-0.06872998913031911],[124,10,79,-0.06854326421162434],[124,11,64,-0.01664328514375582],[124,11,65,-0.023771679646835575],[124,11,66,-0.029869566644236317],[124,11,67,-0.04083461030299347],[124,11,68,-0.04097636081277467],[124,11,69,-0.04145215864002724],[124,11,70,-0.04613904868279675],[124,11,71,-0.049093104988418707],[124,11,72,-0.05268673163992166],[124,11,73,-0.05992692958876841],[124,11,74,-0.061477377383714504],[124,11,75,-0.061085836032334015],[124,11,76,-0.0621656956664791],[124,11,77,-0.06595209113537916],[124,11,78,-0.06635235249265098],[124,11,79,-0.06706001835841746],[124,12,64,-0.01064926439167041],[124,12,65,-0.01786714891650984],[124,12,66,-0.02748142669859857],[124,12,67,-0.037704843109338734],[124,12,68,-0.042709226974765924],[124,12,69,-0.04023420660933552],[124,12,70,-0.04519052887755719],[124,12,71,-0.04882397265469725],[124,12,72,-0.05282124140940904],[124,12,73,-0.06141439515910578],[124,12,74,-0.062223790878232585],[124,12,75,-0.06243732113552347],[124,12,76,-0.06332042249048436],[124,12,77,-0.06374120715214275],[124,12,78,-0.06333213523815005],[124,12,79,-0.06507520278671754],[124,13,64,-0.005174218125855612],[124,13,65,-0.011044226522786221],[124,13,66,-0.01707564217458496],[124,13,67,-0.02508231760627566],[124,13,68,-0.031416972043429414],[124,13,69,-0.03168676321793357],[124,13,70,-0.036854507748528914],[124,13,71,-0.04063715902872672],[124,13,72,-0.04290835322955458],[124,13,73,-0.05010623003424021],[124,13,74,-0.05111945225247512],[124,13,75,-0.05164463101501518],[124,13,76,-0.05024496622707228],[124,13,77,-0.05306040898851269],[124,13,78,-0.05537375743203925],[124,13,79,-0.05843800034116514],[124,14,64,-0.005607748613983526],[124,14,65,-0.008174579344988303],[124,14,66,-0.014236829891598024],[124,14,67,-0.022697096301216108],[124,14,68,-0.030256789864230582],[124,14,69,-0.03314197468166691],[124,14,70,-0.037517389055509054],[124,14,71,-0.04218547201826017],[124,14,72,-0.04244174090331376],[124,14,73,-0.04715181812243634],[124,14,74,-0.05052421290324695],[124,14,75,-0.05082173917172582],[124,14,76,-0.04732339746698061],[124,14,77,-0.05228388485336377],[124,14,78,-0.054273874292165125],[124,14,79,-0.058948957836267635],[124,15,64,-0.00814527104304208],[124,15,65,-0.008739648427442764],[124,15,66,-0.014909085003682265],[124,15,67,-0.022905443399106357],[124,15,68,-0.030820801443649487],[124,15,69,-0.034344867678524627],[124,15,70,-0.038203411653741415],[124,15,71,-0.04300439587077774],[124,15,72,-0.04123139550514858],[124,15,73,-0.043364228128955906],[124,15,74,-0.04741886501268436],[124,15,75,-0.04781319714974838],[124,15,76,-0.04745339004537612],[124,15,77,-0.05070288463979156],[124,15,78,-0.05420237943037204],[124,15,79,-0.0582147737295963],[124,16,64,-0.01013175080346787],[124,16,65,-0.008226025296298844],[124,16,66,-0.010814248577924429],[124,16,67,-0.01832336756773148],[124,16,68,-0.023436729299343734],[124,16,69,-0.027451811496635115],[124,16,70,-0.028567741944881514],[124,16,71,-0.032599887200522176],[124,16,72,-0.031708366930246784],[124,16,73,-0.03393198863953703],[124,16,74,-0.03653063392682976],[124,16,75,-0.03636805539567395],[124,16,76,-0.037168973431729924],[124,16,77,-0.03787683454162116],[124,16,78,-0.04009734857993902],[124,16,79,-0.04044220251491229],[124,17,64,-0.01141882613977882],[124,17,65,-0.00985387559695905],[124,17,66,-0.013116962512518093],[124,17,67,-0.02009674198550726],[124,17,68,-0.025029912493245876],[124,17,69,-0.02626733693972097],[124,17,70,-0.02704291993360941],[124,17,71,-0.03121740808295459],[124,17,72,-0.03381243039146972],[124,17,73,-0.035937691251819004],[124,17,74,-0.03903244688151533],[124,17,75,-0.039934520477383384],[124,17,76,-0.04011876252291899],[124,17,77,-0.0410546868120083],[124,17,78,-0.04200034905802387],[124,17,79,-0.040880655845925346],[124,18,64,-0.013183926978581895],[124,18,65,-0.011517912927186541],[124,18,66,-0.0138811591133077],[124,18,67,-0.019110313917792776],[124,18,68,-0.022344600949842558],[124,18,69,-0.02491927259215329],[124,18,70,-0.025046393562851876],[124,18,71,-0.03304585295443685],[124,18,72,-0.036301912732448344],[124,18,73,-0.039829668114063965],[124,18,74,-0.04286008588974377],[124,18,75,-0.043681435116871406],[124,18,76,-0.04262390610040348],[124,18,77,-0.041730796726259275],[124,18,78,-0.043723291970172745],[124,18,79,-0.04281318578776608],[124,19,64,-0.014779596359272396],[124,19,65,-0.014076318474707611],[124,19,66,-0.01680215194659998],[124,19,67,-0.017575554686319106],[124,19,68,-0.022572005022265945],[124,19,69,-0.02567646332386303],[124,19,70,-0.02661280996514742],[124,19,71,-0.034121413838864856],[124,19,72,-0.038389464143906454],[124,19,73,-0.0418285576324806],[124,19,74,-0.04566593005193029],[124,19,75,-0.0426998737863408],[124,19,76,-0.042446319913109334],[124,19,77,-0.04054919182952238],[124,19,78,-0.04526111470265645],[124,19,79,-0.04640093267733876],[124,20,64,-0.01230645825049298],[124,20,65,-0.0161512867742353],[124,20,66,-0.017687841514187702],[124,20,67,-0.01944132755640618],[124,20,68,-0.02446710037113148],[124,20,69,-0.028357006506109506],[124,20,70,-0.03139356579551106],[124,20,71,-0.03870460929531985],[124,20,72,-0.04287315406929798],[124,20,73,-0.04616496396563026],[124,20,74,-0.0513376803870913],[124,20,75,-0.04902560306375342],[124,20,76,-0.04847194413116736],[124,20,77,-0.046891122958237524],[124,20,78,-0.04909540293842293],[124,20,79,-0.048463816737032164],[124,21,64,-0.006331540653190942],[124,21,65,-0.012321646298959321],[124,21,66,-0.012857812759247772],[124,21,67,-0.015578605404248103],[124,21,68,-0.022799480816558],[124,21,69,-0.030798061824598072],[124,21,70,-0.038456721190668675],[124,21,71,-0.048673230356197805],[124,21,72,-0.05960086015654811],[124,21,73,-0.06871262495581393],[124,21,74,-0.07402519807611309],[124,21,75,-0.07507429553815934],[124,21,76,-0.07191476898866955],[124,21,77,-0.06939916250993858],[124,21,78,-0.06674739781968599],[124,21,79,-0.06681125346435449],[124,22,64,-0.007161795046612296],[124,22,65,-0.01098120244157133],[124,22,66,-0.012868126930286244],[124,22,67,-0.01795962398920109],[124,22,68,-0.02507134099720379],[124,22,69,-0.031245076723934062],[124,22,70,-0.039884256963446274],[124,22,71,-0.05121999820527515],[124,22,72,-0.06165209404158771],[124,22,73,-0.07409417629909014],[124,22,74,-0.0760088200607093],[124,22,75,-0.07740015490998689],[124,22,76,-0.07350514417557737],[124,22,77,-0.07081360459233306],[124,22,78,-0.0687718288763731],[124,22,79,-0.06748295447159453],[124,23,64,-0.010208084317108373],[124,23,65,-0.012645047136075949],[124,23,66,-0.01493415603657594],[124,23,67,-0.020769048537182616],[124,23,68,-0.028869433193541516],[124,23,69,-0.03261181576580732],[124,23,70,-0.0423117066033841],[124,23,71,-0.05465073638433801],[124,23,72,-0.06450887109256156],[124,23,73,-0.07726876050159662],[124,23,74,-0.07991285211453159],[124,23,75,-0.07874202464524206],[124,23,76,-0.07468059467339061],[124,23,77,-0.07338025656288207],[124,23,78,-0.07083053321584414],[124,23,79,-0.06759611179074529],[124,24,64,-0.0045949514193276975],[124,24,65,-0.004421851204573224],[124,24,66,-0.009809249536393061],[124,24,67,-0.0191440910107272],[124,24,68,-0.027003313079594915],[124,24,69,-0.02982178319647233],[124,24,70,-0.03985041284610025],[124,24,71,-0.0515544745674367],[124,24,72,-0.05853589692400282],[124,24,73,-0.07098923891018274],[124,24,74,-0.07360746224108987],[124,24,75,-0.06942918994331668],[124,24,76,-0.0674078280518901],[124,24,77,-0.06472106718839052],[124,24,78,-0.06247418740147641],[124,24,79,-0.05944595721967577],[124,25,64,-0.00535484609469597],[124,25,65,-0.0074536077684472235],[124,25,66,-0.016963644282428803],[124,25,67,-0.03188987479514388],[124,25,68,-0.039029847094862416],[124,25,69,-0.04393851787728012],[124,25,70,-0.04902476849217689],[124,25,71,-0.05545033374967091],[124,25,72,-0.05701629964200519],[124,25,73,-0.06002452587239798],[124,25,74,-0.061843790863488235],[124,25,75,-0.05884881681819153],[124,25,76,-0.05932432399031673],[124,25,77,-0.05984231865429088],[124,25,78,-0.06158972885804215],[124,25,79,-0.061169303842436296],[124,26,64,-0.005845832961918596],[124,26,65,-0.012514530636376059],[124,26,66,-0.02172467112565743],[124,26,67,-0.03437205167242499],[124,26,68,-0.044199447003731795],[124,26,69,-0.04628383500619207],[124,26,70,-0.050349239172594734],[124,26,71,-0.055858568346210544],[124,26,72,-0.057521195238680434],[124,26,73,-0.06000901975636812],[124,26,74,-0.05853949256336598],[124,26,75,-0.05680501112368991],[124,26,76,-0.05831433212622489],[124,26,77,-0.05869369995166812],[124,26,78,-0.060748590339517294],[124,26,79,-0.06104165892401865],[124,27,64,-0.00941569618362964],[124,27,65,-0.015167625330117729],[124,27,66,-0.02503386003845448],[124,27,67,-0.036098382340729235],[124,27,68,-0.04561248239744781],[124,27,69,-0.04960370233999614],[124,27,70,-0.05229283421204503],[124,27,71,-0.0558684351568223],[124,27,72,-0.05982685520230613],[124,27,73,-0.060254132300171626],[124,27,74,-0.05708592882502994],[124,27,75,-0.05559523071688685],[124,27,76,-0.05722142062606596],[124,27,77,-0.05724937524523896],[124,27,78,-0.06063592418185598],[124,27,79,-0.06062576571336771],[124,28,64,-0.015532430696294508],[124,28,65,-0.02000202639738244],[124,28,66,-0.02862266887049167],[124,28,67,-0.03906988259004236],[124,28,68,-0.05058262930956367],[124,28,69,-0.054323456638764464],[124,28,70,-0.05656001651858955],[124,28,71,-0.061352931166150315],[124,28,72,-0.0676122998559987],[124,28,73,-0.06413677661371936],[124,28,74,-0.06391878842861587],[124,28,75,-0.061974056052619464],[124,28,76,-0.05892180195098898],[124,28,77,-0.06090821479610059],[124,28,78,-0.06468523637409858],[124,28,79,-0.0642235361019611],[124,29,64,-0.017846053239811005],[124,29,65,-0.023766109544292563],[124,29,66,-0.030773597352096893],[124,29,67,-0.03807600200621222],[124,29,68,-0.04693013616553669],[124,29,69,-0.049801791356992975],[124,29,70,-0.052644087793601],[124,29,71,-0.058456516563030775],[124,29,72,-0.06496161482375265],[124,29,73,-0.06152697596251691],[124,29,74,-0.05998932996028586],[124,29,75,-0.05760016927860337],[124,29,76,-0.053142445823982726],[124,29,77,-0.05507326611534104],[124,29,78,-0.060269284731303996],[124,29,79,-0.06116992185199391],[124,30,64,-0.018701891157925477],[124,30,65,-0.02669115359954008],[124,30,66,-0.030114462584857143],[124,30,67,-0.03678243030587108],[124,30,68,-0.045644531679352784],[124,30,69,-0.04865032715691468],[124,30,70,-0.05186177731443366],[124,30,71,-0.05917107983970657],[124,30,72,-0.06336021074903575],[124,30,73,-0.061221180247688536],[124,30,74,-0.05922738026488364],[124,30,75,-0.056277384909820094],[124,30,76,-0.0543074781360858],[124,30,77,-0.053833542695779016],[124,30,78,-0.05920489074386523],[124,30,79,-0.061930398964629416],[124,31,64,-0.023475970454436806],[124,31,65,-0.026900766445971974],[124,31,66,-0.028653876845138815],[124,31,67,-0.03775064918277468],[124,31,68,-0.044801970720620254],[124,31,69,-0.04846839647937752],[124,31,70,-0.05352448822249556],[124,31,71,-0.057239224217538465],[124,31,72,-0.06137747763272912],[124,31,73,-0.05879583814172597],[124,31,74,-0.059641398267527956],[124,31,75,-0.05751688339980464],[124,31,76,-0.0572760457790618],[124,31,77,-0.05637191463491707],[124,31,78,-0.058377385708861584],[124,31,79,-0.06209960429913394],[124,32,64,-0.016067667592221335],[124,32,65,-0.01866873554506082],[124,32,66,-0.02022333957037889],[124,32,67,-0.02747374627304658],[124,32,68,-0.03349633302262525],[124,32,69,-0.038158447306999965],[124,32,70,-0.04145497633917128],[124,32,71,-0.04510462487300057],[124,32,72,-0.05028016474500349],[124,32,73,-0.048297691168079915],[124,32,74,-0.04917163049029821],[124,32,75,-0.04872965486140307],[124,32,76,-0.04941766458376695],[124,32,77,-0.04680238457032268],[124,32,78,-0.046877579856492796],[124,32,79,-0.04997260729620971],[124,33,64,-0.009654393567558317],[124,33,65,-0.009423027535474443],[124,33,66,-0.012007975658654635],[124,33,67,-0.019627287912819147],[124,33,68,-0.024071939578683754],[124,33,69,-0.028375076984073183],[124,33,70,-0.03421394010616283],[124,33,71,-0.043469195923741544],[124,33,72,-0.05458906282482695],[124,33,73,-0.05816853502260025],[124,33,74,-0.05990580491811445],[124,33,75,-0.06310784551848113],[124,33,76,-0.060828576800308926],[124,33,77,-0.057824894254488904],[124,33,78,-0.052082222193639255],[124,33,79,-0.05291735042918232],[124,34,64,-0.011077556635832597],[124,34,65,-0.011130132626727324],[124,34,66,-0.012428947415925345],[124,34,67,-0.020821427152595967],[124,34,68,-0.02734878161015078],[124,34,69,-0.028061530559620962],[124,34,70,-0.035790515664154365],[124,34,71,-0.04539532719738901],[124,34,72,-0.05374360510376339],[124,34,73,-0.05880656268287088],[124,34,74,-0.06144663423141636],[124,34,75,-0.06431309456111657],[124,34,76,-0.05885670448599653],[124,34,77,-0.05437138884881265],[124,34,78,-0.049133233755090044],[124,34,79,-0.04917531049123372],[124,35,64,-0.0116682540026187],[124,35,65,-0.015971589154396004],[124,35,66,-0.019079420960082416],[124,35,67,-0.026323015163946722],[124,35,68,-0.03076167972280397],[124,35,69,-0.030413269547334476],[124,35,70,-0.037633768644647944],[124,35,71,-0.04675616614802296],[124,35,72,-0.05366714753322854],[124,35,73,-0.059322416438746944],[124,35,74,-0.06106520319570935],[124,35,75,-0.06173093105048899],[124,35,76,-0.05398106011845276],[124,35,77,-0.05027611247302047],[124,35,78,-0.04804029255193784],[124,35,79,-0.04933168249980441],[124,36,64,-0.023137918177098316],[124,36,65,-0.02797391863866927],[124,36,66,-0.029753988859695046],[124,36,67,-0.03483615717626118],[124,36,68,-0.040721799996050204],[124,36,69,-0.04212641979748856],[124,36,70,-0.04520348504421565],[124,36,71,-0.055205143368803944],[124,36,72,-0.06250183473359036],[124,36,73,-0.06758579825983249],[124,36,74,-0.0704909443832616],[124,36,75,-0.06688218059702612],[124,36,76,-0.05992214047282127],[124,36,77,-0.055328974821023724],[124,36,78,-0.054299460240007744],[124,36,79,-0.05847761698551859],[124,37,64,-0.03092320443659416],[124,37,65,-0.0353190816830473],[124,37,66,-0.04005741800705494],[124,37,67,-0.043588150078267635],[124,37,68,-0.05139138431813085],[124,37,69,-0.055878102078782604],[124,37,70,-0.052627582230783454],[124,37,71,-0.05696016315160762],[124,37,72,-0.05834830636701824],[124,37,73,-0.059811967426529056],[124,37,74,-0.06058041874958808],[124,37,75,-0.05371718818885457],[124,37,76,-0.048462362908838374],[124,37,77,-0.045872810808007175],[124,37,78,-0.04818633218227625],[124,37,79,-0.052628148493620144],[124,38,64,-0.03627879660010598],[124,38,65,-0.039018335281653105],[124,38,66,-0.04284979140312006],[124,38,67,-0.04631124936461123],[124,38,68,-0.052395277811528224],[124,38,69,-0.05618739502460715],[124,38,70,-0.05495827048932092],[124,38,71,-0.055338375450840444],[124,38,72,-0.056759058983570365],[124,38,73,-0.05743562132931418],[124,38,74,-0.058062632489977714],[124,38,75,-0.05185136843893459],[124,38,76,-0.04743875522992809],[124,38,77,-0.04547122629425443],[124,38,78,-0.046609640072252684],[124,38,79,-0.051523988419140326],[124,39,64,-0.039336898086154246],[124,39,65,-0.041240594679786496],[124,39,66,-0.04533264484495117],[124,39,67,-0.04974169106285385],[124,39,68,-0.054703344080723346],[124,39,69,-0.05739215953971913],[124,39,70,-0.05555188473405759],[124,39,71,-0.05435998252379583],[124,39,72,-0.056280660289593054],[124,39,73,-0.05593368405231164],[124,39,74,-0.05454575690192531],[124,39,75,-0.048160907406774756],[124,39,76,-0.04618885787550081],[124,39,77,-0.04574240674012944],[124,39,78,-0.046610950793624206],[124,39,79,-0.04989043365610443],[124,40,64,-0.029218323438017224],[124,40,65,-0.0321210573203512],[124,40,66,-0.033217052014794135],[124,40,67,-0.0386504267979214],[124,40,68,-0.043759417147576335],[124,40,69,-0.04804342725566811],[124,40,70,-0.045985132981093385],[124,40,71,-0.044343567716471216],[124,40,72,-0.04335974798179018],[124,40,73,-0.04306331565030008],[124,40,74,-0.04088263634405637],[124,40,75,-0.034033180928604884],[124,40,76,-0.03483531118328237],[124,40,77,-0.03504640182813004],[124,40,78,-0.03526589645898051],[124,40,79,-0.03795684689800341],[124,41,64,-0.029408517598387224],[124,41,65,-0.0313951405087006],[124,41,66,-0.03440617198014523],[124,41,67,-0.03904427558097193],[124,41,68,-0.044997361456112245],[124,41,69,-0.047889786401754814],[124,41,70,-0.04753058874393032],[124,41,71,-0.047218018162648465],[124,41,72,-0.046236628726420176],[124,41,73,-0.043463003715454473],[124,41,74,-0.04012590586727091],[124,41,75,-0.03490877375356699],[124,41,76,-0.037637194098835786],[124,41,77,-0.03539499992313347],[124,41,78,-0.035843623512222644],[124,41,79,-0.037128902219320165],[124,42,64,-0.030883454746860328],[124,42,65,-0.030642179558472316],[124,42,66,-0.03481164662627646],[124,42,67,-0.04071793241550818],[124,42,68,-0.04554249790611363],[124,42,69,-0.04812494836473245],[124,42,70,-0.05025337526449947],[124,42,71,-0.050897716246675245],[124,42,72,-0.04824652206860118],[124,42,73,-0.04445868308457883],[124,42,74,-0.039000092577132675],[124,42,75,-0.03677852444306423],[124,42,76,-0.03844248183459062],[124,42,77,-0.03727853892261945],[124,42,78,-0.03567464133748663],[124,42,79,-0.03418121960448131],[124,43,64,-0.03183463775656811],[124,43,65,-0.03306257375212317],[124,43,66,-0.035275405679220856],[124,43,67,-0.042279142093642974],[124,43,68,-0.046258840635154494],[124,43,69,-0.050097842248032015],[124,43,70,-0.0516949002469268],[124,43,71,-0.053152268661183694],[124,43,72,-0.048271406358161933],[124,43,73,-0.0442574969996109],[124,43,74,-0.04099111350414758],[124,43,75,-0.04100314417188981],[124,43,76,-0.04044473712945608],[124,43,77,-0.04023275676060126],[124,43,78,-0.0394240945524002],[124,43,79,-0.035293222116326156],[124,44,64,-0.0430023342234071],[124,44,65,-0.0449749943767888],[124,44,66,-0.04726272359183299],[124,44,67,-0.05244687392430139],[124,44,68,-0.05529812018557034],[124,44,69,-0.05688158953883947],[124,44,70,-0.06039084469951678],[124,44,71,-0.05899913013606953],[124,44,72,-0.05539833596003321],[124,44,73,-0.05446514207196218],[124,44,74,-0.05274635551678185],[124,44,75,-0.053451795588680975],[124,44,76,-0.05152841133534297],[124,44,77,-0.05335999635650955],[124,44,78,-0.05004010076275822],[124,44,79,-0.04785819339226405],[124,45,64,-0.06562328071480555],[124,45,65,-0.062173115667875145],[124,45,66,-0.0612008082940947],[124,45,67,-0.06021138435776245],[124,45,68,-0.05848359886584084],[124,45,69,-0.05768736187795062],[124,45,70,-0.05941112627438373],[124,45,71,-0.056538055253042147],[124,45,72,-0.052314829869524654],[124,45,73,-0.05229450844173003],[124,45,74,-0.05011428020291711],[124,45,75,-0.05232564164371398],[124,45,76,-0.05119378053853603],[124,45,77,-0.04955089536521007],[124,45,78,-0.044677612977468806],[124,45,79,-0.0406709594174989],[124,46,64,-0.07119849956791409],[124,46,65,-0.0653876726971648],[124,46,66,-0.06282118198517332],[124,46,67,-0.060236071420212825],[124,46,68,-0.05864440582632752],[124,46,69,-0.0571045902919802],[124,46,70,-0.05806340295746404],[124,46,71,-0.05560462823272026],[124,46,72,-0.05143607141488163],[124,46,73,-0.05165428080551372],[124,46,74,-0.0486424520713607],[124,46,75,-0.04857992247458806],[124,46,76,-0.04883296313000629],[124,46,77,-0.04723352148558929],[124,46,78,-0.043089086898680434],[124,46,79,-0.03958611041014],[124,47,64,-0.07435198667817791],[124,47,65,-0.06910367918262893],[124,47,66,-0.06306491962124212],[124,47,67,-0.059380090505048305],[124,47,68,-0.05882296587083305],[124,47,69,-0.055086737183277557],[124,47,70,-0.057404683173502544],[124,47,71,-0.05609814724678586],[124,47,72,-0.05235762302381086],[124,47,73,-0.054098248072076666],[124,47,74,-0.04891125739294862],[124,47,75,-0.04714774154000498],[124,47,76,-0.04607695226762286],[124,47,77,-0.04554049214303618],[124,47,78,-0.04316824096388423],[124,47,79,-0.03974497433229229],[124,48,64,-0.06124530336440297],[124,48,65,-0.05653576208589668],[124,48,66,-0.05154670819074959],[124,48,67,-0.04415886354335892],[124,48,68,-0.04505685435707868],[124,48,69,-0.041379126651836504],[124,48,70,-0.042063908694954466],[124,48,71,-0.044676273085215226],[124,48,72,-0.039828373365438305],[124,48,73,-0.03893545289272346],[124,48,74,-0.03689500727322237],[124,48,75,-0.03264136189090694],[124,48,76,-0.032469163975895166],[124,48,77,-0.032738552299040435],[124,48,78,-0.030082531320443195],[124,48,79,-0.029888055553100312],[124,49,64,-0.05802422767861733],[124,49,65,-0.052138056485214496],[124,49,66,-0.04815806597458806],[124,49,67,-0.043119717901329555],[124,49,68,-0.04239794177686884],[124,49,69,-0.04108356943825972],[124,49,70,-0.0420902507016028],[124,49,71,-0.04433455194803243],[124,49,72,-0.04114508121476887],[124,49,73,-0.04015327078468972],[124,49,74,-0.03815193551924553],[124,49,75,-0.03495146578068295],[124,49,76,-0.03616090924684065],[124,49,77,-0.037259900021611975],[124,49,78,-0.03675750990660065],[124,49,79,-0.03620086842681439],[124,50,64,-0.05696439984195725],[124,50,65,-0.053789647888332084],[124,50,66,-0.04885919161132192],[124,50,67,-0.04635170271636427],[124,50,68,-0.04215431916881225],[124,50,69,-0.044013520186108934],[124,50,70,-0.045353315549639506],[124,50,71,-0.048430005223422695],[124,50,72,-0.04415143212919394],[124,50,73,-0.04177141638352566],[124,50,74,-0.04011082077082062],[124,50,75,-0.03555025758727237],[124,50,76,-0.03742209839211655],[124,50,77,-0.03962896607003216],[124,50,78,-0.03924089239952605],[124,50,79,-0.04075953612719062],[124,51,64,-0.055296619878851705],[124,51,65,-0.05304770893198933],[124,51,66,-0.050995830671703324],[124,51,67,-0.04888145409703126],[124,51,68,-0.04675704619799059],[124,51,69,-0.0459577939681729],[124,51,70,-0.0489783049232569],[124,51,71,-0.05281764967726206],[124,51,72,-0.04641856628946328],[124,51,73,-0.04546748602857889],[124,51,74,-0.04291787544340832],[124,51,75,-0.03874050550049837],[124,51,76,-0.03802388132527351],[124,51,77,-0.040790419733820554],[124,51,78,-0.040628341127934425],[124,51,79,-0.0405723662905899],[124,52,64,-0.006242257805789991],[124,52,65,-0.005884184906401885],[124,52,66,-0.005209492839442137],[124,52,67,-0.00561562438446736],[124,52,68,-0.002051789466206183],[124,52,69,0.0014448648630087657],[124,52,70,-3.5195334237517195E-4],[124,52,71,-0.0024939986777815226],[124,52,72,5.389530528865372E-4],[124,52,73,0.0037018396664694753],[124,52,74,0.0028056154085276674],[124,52,75,0.007329680780737341],[124,52,76,0.009704120758695367],[124,52,77,0.007305382198504462],[124,52,78,0.006982037473993091],[124,52,79,0.008001877858562156],[124,53,64,-0.002010584505197255],[124,53,65,-0.0024041500807497895],[124,53,66,-0.0037339489497974776],[124,53,67,-0.006839685057254213],[124,53,68,-0.0049778792620114864],[124,53,69,1.2910197621182617E-4],[124,53,70,-0.0028969063917177462],[124,53,71,-0.004817078124953106],[124,53,72,-9.807753301066535E-4],[124,53,73,0.0014043139507012303],[124,53,74,-6.968551301326509E-4],[124,53,75,0.0031665683037769565],[124,53,76,0.006784734960381511],[124,53,77,0.006226816281386605],[124,53,78,0.006655721701980755],[124,53,79,0.005990583916632625],[124,54,64,-0.0019469481748236594],[124,54,65,-0.002909488901763846],[124,54,66,-0.007251813479804775],[124,54,67,-0.010925899279769474],[124,54,68,-0.00810653245950671],[124,54,69,-0.0047150805925119665],[124,54,70,-0.004171727841031592],[124,54,71,-0.003926551491237551],[124,54,72,-2.898602586531851E-4],[124,54,73,-1.4619312061023293E-4],[124,54,74,-0.0015116891078271466],[124,54,75,0.003607873616445545],[124,54,76,0.006400559210572809],[124,54,77,0.006639213261372678],[124,54,78,0.005939536235195275],[124,54,79,0.006444387013575442],[124,55,64,-0.002195688204502333],[124,55,65,-0.004703495965845322],[124,55,66,-0.007945456800180467],[124,55,67,-0.0112740793697986],[124,55,68,-0.010519143175796775],[124,55,69,-0.008841960262700593],[124,55,70,-0.006544660276627284],[124,55,71,-0.0057367539376621535],[124,55,72,-0.005466172336307057],[124,55,73,2.747633910994973E-4],[124,55,74,-6.213873253016478E-4],[124,55,75,0.0050360322265630975],[124,55,76,0.0061838412248626795],[124,55,77,0.006983312093788496],[124,55,78,0.005648816969169107],[124,55,79,0.008005602783993482],[124,56,64,0.009537291704040024],[124,56,65,0.005639217099749683],[124,56,66,0.002899761159552011],[124,56,67,0.00424550012613778],[124,56,68,0.003155142225665153],[124,56,69,1.6670983067793022E-4],[124,56,70,0.0022052298331817766],[124,56,71,0.0045699695957027164],[124,56,72,0.005553274716199846],[124,56,73,0.012204297594587993],[124,56,74,0.013858376940384415],[124,56,75,0.018843483992888044],[124,56,76,0.018131422994351915],[124,56,77,0.01783005497311041],[124,56,78,0.018032103026147273],[124,56,79,0.023529906045319793],[124,57,64,0.010773396525231155],[124,57,65,6.246055009218598E-4],[124,57,66,-0.003514286249649168],[124,57,67,-0.00454626599902308],[124,57,68,-0.007704422152430196],[124,57,69,-0.010250045795113016],[124,57,70,-0.009601208128622474],[124,57,71,-0.005451469613152071],[124,57,72,-0.0032533446310070435],[124,57,73,0.0030341653814500713],[124,57,74,0.007007030611327819],[124,57,75,0.011248811516995638],[124,57,76,0.013883780720194305],[124,57,77,0.011612848537453507],[124,57,78,0.01156203980700432],[124,57,79,0.014006124276270349],[124,58,64,0.05598507365564531],[124,58,65,0.042442940789219494],[124,58,66,0.035228269113660976],[124,58,67,0.03353981517533508],[124,58,68,0.030098789358369155],[124,58,69,0.03189455038155087],[124,58,70,0.0312391128917356],[124,58,71,0.034875177328999724],[124,58,72,0.038567778303925354],[124,58,73,0.04271876792114007],[124,58,74,0.04587123321815666],[124,58,75,0.0520797634040821],[124,58,76,0.05546062502080723],[124,58,77,0.051581104524182214],[124,58,78,0.050470296023764405],[124,58,79,0.048921587744731265],[124,59,64,0.05207323205677808],[124,59,65,0.04124347849067089],[124,59,66,0.03274145917599969],[124,59,67,0.03004402627941699],[124,59,68,0.028484591588156513],[124,59,69,0.029879130408134932],[124,59,70,0.02934663027861216],[124,59,71,0.03275555644447439],[124,59,72,0.038193621984157],[124,59,73,0.04333682908893312],[124,59,74,0.046509273686220584],[124,59,75,0.050393063364123886],[124,59,76,0.053012629417189844],[124,59,77,0.053535592986698244],[124,59,78,0.05079459983287607],[124,59,79,0.04659121778191974],[124,60,64,0.041192507526682354],[124,60,65,0.03022406357584559],[124,60,66,0.020572480264069923],[124,60,67,0.01981687353864285],[124,60,68,0.018423421015085928],[124,60,69,0.017099087852074313],[124,60,70,0.020412469230868813],[124,60,71,0.025578953929223047],[124,60,72,0.030283414014987964],[124,60,73,0.0354349843436738],[124,60,74,0.03875719714978225],[124,60,75,0.041434607332941825],[124,60,76,0.04348586236908497],[124,60,77,0.04530602720813792],[124,60,78,0.04087238034993601],[124,60,79,0.0361391288576578],[124,61,64,0.04401157762914208],[124,61,65,0.036198079513161785],[124,61,66,0.03274119393118484],[124,61,67,0.032825064779200844],[124,61,68,0.030232414469743327],[124,61,69,0.028596760262753596],[124,61,70,0.03321748077416292],[124,61,71,0.036066305601070645],[124,61,72,0.03895038326982583],[124,61,73,0.043678946984525374],[124,61,74,0.04808961680812142],[124,61,75,0.051989653396556895],[124,61,76,0.05482227987841087],[124,61,77,0.0539379217170418],[124,61,78,0.053386797823113036],[124,61,79,0.049090543620835606],[124,62,64,0.042796163262971934],[124,62,65,0.03624582425926505],[124,62,66,0.03350254946874809],[124,62,67,0.03238449947050047],[124,62,68,0.030824267532998995],[124,62,69,0.02901549672634704],[124,62,70,0.031079635465884034],[124,62,71,0.03515423426815861],[124,62,72,0.036575582585262584],[124,62,73,0.0407598335077254],[124,62,74,0.04758484984805536],[124,62,75,0.05309599696433119],[124,62,76,0.05454277665692939],[124,62,77,0.05356348791911145],[124,62,78,0.05462254719699018],[124,62,79,0.05062786437335992],[124,63,64,-0.02916210631166484],[124,63,65,-0.03350299480515076],[124,63,66,-0.03684107420428262],[124,63,67,-0.03643310287321344],[124,63,68,-0.0369161341541282],[124,63,69,-0.03793504786387468],[124,63,70,-0.034724268496311786],[124,63,71,-0.031917368882907235],[124,63,72,-0.0284048378027522],[124,63,73,-0.024193636962462864],[124,63,74,-0.01600216029860141],[124,63,75,-0.006765464746253377],[124,63,76,-0.004975855038854879],[124,63,77,-0.004198332202122762],[124,63,78,-0.003473828919547728],[124,63,79,-0.002995234242947606],[124,64,64,-0.01839422940479553],[124,64,65,-0.025776772648809773],[124,64,66,-0.028540115552573603],[124,64,67,-0.029320925741537024],[124,64,68,-0.028390880689478523],[124,64,69,-0.029936100549960293],[124,64,70,-0.028551234230604808],[124,64,71,-0.022753653353160846],[124,64,72,-0.020156220848630613],[124,64,73,-0.015482843616722239],[124,64,74,-0.007065511237309821],[124,64,75,-4.567967125815031E-4],[124,64,76,0.00474952667503549],[124,64,77,0.004020811403957714],[124,64,78,0.006105880607501599],[124,64,79,0.0085705900895659],[124,65,64,-0.018176607289423233],[124,65,65,-0.0260343786358639],[124,65,66,-0.03127651718136637],[124,65,67,-0.03176940641676204],[124,65,68,-0.0320732710664043],[124,65,69,-0.032550463256796155],[124,65,70,-0.03098426952896033],[124,65,71,-0.026598907611384934],[124,65,72,-0.021800646881430477],[124,65,73,-0.017326773681313426],[124,65,74,-0.006675457378678085],[124,65,75,-0.0029769482665799596],[124,65,76,-3.342153125854841E-4],[124,65,77,-9.953699894301588E-4],[124,65,78,0.003650702789511087],[124,65,79,0.008350046466593541],[124,66,64,-0.024029052653026656],[124,66,65,-0.03291794488294178],[124,66,66,-0.038146228802235185],[124,66,67,-0.04029964321346742],[124,66,68,-0.041457646844105675],[124,66,69,-0.04049481992235987],[124,66,70,-0.04102110453377851],[124,66,71,-0.036836142026878876],[124,66,72,-0.030272657166591777],[124,66,73,-0.023233640604861175],[124,66,74,-0.015409954343699156],[124,66,75,-0.011978697052716397],[124,66,76,-0.010418543261244362],[124,66,77,-0.010664111659597006],[124,66,78,-0.004608149798436337],[124,66,79,9.697625854065972E-6],[124,67,64,-0.023891207889698368],[124,67,65,-0.03312926829463553],[124,67,66,-0.04051891945017794],[124,67,67,-0.043955202515816694],[124,67,68,-0.04322433021812515],[124,67,69,-0.04250317397994072],[124,67,70,-0.04616904505524991],[124,67,71,-0.0402784792179957],[124,67,72,-0.033905779369979794],[124,67,73,-0.026082763273267334],[124,67,74,-0.02012497565646415],[124,67,75,-0.016573422920337103],[124,67,76,-0.015157341429982416],[124,67,77,-0.013150032370885065],[124,67,78,-0.009536874360766362],[124,67,79,-0.0047744161076191255],[124,68,64,-0.11601903603847824],[124,68,65,-0.12698281369840117],[124,68,66,-0.13318979736828196],[124,68,67,-0.13812077086840222],[124,68,68,-0.140391866820972],[124,68,69,-0.13862692977392307],[124,68,70,-0.141011525607389],[124,68,71,-0.13485256011597715],[124,68,72,-0.12986912996433606],[124,68,73,-0.12440503403630454],[124,68,74,-0.11973942805910388],[124,68,75,-0.11470121801883675],[124,68,76,-0.11195988302879128],[124,68,77,-0.10727326638501544],[124,68,78,-0.10414052852852751],[124,68,79,-0.10143660494369554],[124,69,64,-0.11927925347646409],[124,69,65,-0.13239303855967863],[124,69,66,-0.14191115680092892],[124,69,67,-0.14781714376019772],[124,69,68,-0.1505366205497183],[124,69,69,-0.1480428120752897],[124,69,70,-0.14582498202973493],[124,69,71,-0.14239352541517125],[124,69,72,-0.13919009507567176],[124,69,73,-0.13800402919486932],[124,69,74,-0.13405414343409253],[124,69,75,-0.13039602709526535],[124,69,76,-0.12412617024757992],[124,69,77,-0.11623055312016381],[124,69,78,-0.1128049788028041],[124,69,79,-0.11103073873187089],[124,70,64,-0.12285800162208244],[124,70,65,-0.13469020132178808],[124,70,66,-0.1448301231631616],[124,70,67,-0.15402371584652397],[124,70,68,-0.15282745837354103],[124,70,69,-0.1532577657292259],[124,70,70,-0.14597332859274004],[124,70,71,-0.14493200578801346],[124,70,72,-0.14015434678552166],[124,70,73,-0.1416961763815177],[124,70,74,-0.13568105221825064],[124,70,75,-0.1332982669279875],[124,70,76,-0.12741964757896787],[124,70,77,-0.11801132768671233],[124,70,78,-0.11351122968574331],[124,70,79,-0.11226872395012608],[124,71,64,-0.11367532364775416],[124,71,65,-0.1265951278443482],[124,71,66,-0.13891151690697193],[124,71,67,-0.14753660877712116],[124,71,68,-0.1471966778116278],[124,71,69,-0.14624533155605177],[124,71,70,-0.13976298311342625],[124,71,71,-0.13676244515881422],[124,71,72,-0.1346422914349555],[124,71,73,-0.13547636126368243],[124,71,74,-0.13081207475500847],[124,71,75,-0.1263034528116933],[124,71,76,-0.11662463926694884],[124,71,77,-0.11261096622271363],[124,71,78,-0.107810822859307],[124,71,79,-0.1073586086366736],[124,72,64,-0.11802226556820826],[124,72,65,-0.13181422870331877],[124,72,66,-0.14128271241786663],[124,72,67,-0.1520514689475792],[124,72,68,-0.15231926197134954],[124,72,69,-0.14969133402856566],[124,72,70,-0.1429130473069466],[124,72,71,-0.13932263312536172],[124,72,72,-0.1368705370683529],[124,72,73,-0.1355586790677697],[124,72,74,-0.13169669439944634],[124,72,75,-0.12821276518570443],[124,72,76,-0.117965788413022],[124,72,77,-0.11329278726351916],[124,72,78,-0.10623126499576013],[124,72,79,-0.10807810643149329],[124,73,64,-0.13165255882814347],[124,73,65,-0.14173683385619062],[124,73,66,-0.14528584004006487],[124,73,67,-0.15071327060572176],[124,73,68,-0.15123936404608215],[124,73,69,-0.14632987688095722],[124,73,70,-0.13927040387341855],[124,73,71,-0.13456127509147198],[124,73,72,-0.13316683862470852],[124,73,73,-0.12591325675638732],[124,73,74,-0.1230760566432251],[124,73,75,-0.11848558490940088],[124,73,76,-0.11051943157848482],[124,73,77,-0.10877756526132568],[124,73,78,-0.10720543689133537],[124,73,79,-0.11375445309761412],[124,74,64,-0.14272013720330382],[124,74,65,-0.14945057371725134],[124,74,66,-0.1537748678528664],[124,74,67,-0.15746925078088309],[124,74,68,-0.15944316493800886],[124,74,69,-0.15431371574351194],[124,74,70,-0.1467727040269845],[124,74,71,-0.1430424103123437],[124,74,72,-0.14230125227823506],[124,74,73,-0.1361030575318022],[124,74,74,-0.12833626949572274],[124,74,75,-0.12646924175247476],[124,74,76,-0.11890290070712559],[124,74,77,-0.1176956737780039],[124,74,78,-0.11588388051777772],[124,74,79,-0.12334320640925175],[124,75,64,-0.1468454547908621],[124,75,65,-0.15046940501711145],[124,75,66,-0.15620929759519672],[124,75,67,-0.15938665660055124],[124,75,68,-0.1598229322270497],[124,75,69,-0.15475124731648826],[124,75,70,-0.1485006406675211],[124,75,71,-0.14471402378230458],[124,75,72,-0.14352653789065123],[124,75,73,-0.13641669477871468],[124,75,74,-0.13071677717372018],[124,75,75,-0.128976827980543],[124,75,76,-0.12291079808896835],[124,75,77,-0.122773799556642],[124,75,78,-0.12205834025046548],[124,75,79,-0.12824519644153026],[124,76,64,-0.14505477053115712],[124,76,65,-0.14980520561157004],[124,76,66,-0.15260378080387088],[124,76,67,-0.15626617990162084],[124,76,68,-0.15752267744802545],[124,76,69,-0.15290148169688314],[124,76,70,-0.15006165125080034],[124,76,71,-0.14717391931409185],[124,76,72,-0.1440395991088273],[124,76,73,-0.13949058182943475],[124,76,74,-0.13527847423089492],[124,76,75,-0.13334618495321743],[124,76,76,-0.12866055746652916],[124,76,77,-0.125430593330652],[124,76,78,-0.12829803825888286],[124,76,79,-0.12927599754124355],[124,77,64,-0.1424415980741699],[124,77,65,-0.14630716152394085],[124,77,66,-0.15017108204666843],[124,77,67,-0.15180866198789678],[124,77,68,-0.15408822492143423],[124,77,69,-0.1537296587822662],[124,77,70,-0.15187083696975381],[124,77,71,-0.14990940648686982],[124,77,72,-0.1472746211168185],[124,77,73,-0.14527406302917004],[124,77,74,-0.14073998405551855],[124,77,75,-0.13804365255236498],[124,77,76,-0.1340261093088998],[124,77,77,-0.1327721567361015],[124,77,78,-0.1317510924292915],[124,77,79,-0.13221667253675043],[124,78,64,-0.14537728904512903],[124,78,65,-0.14627529254985724],[124,78,66,-0.1473217618434717],[124,78,67,-0.14928004146665583],[124,78,68,-0.15114239931734946],[124,78,69,-0.15414816485614888],[124,78,70,-0.1520482571676537],[124,78,71,-0.1527040270659539],[124,78,72,-0.14934343736565991],[124,78,73,-0.14730333619910307],[124,78,74,-0.14362104245663632],[124,78,75,-0.14022889812912062],[124,78,76,-0.13824667102069227],[124,78,77,-0.13930016564899383],[124,78,78,-0.13530134221289405],[124,78,79,-0.1377945461306502],[124,79,64,-0.13568958861923092],[124,79,65,-0.13743819988675154],[124,79,66,-0.13726426896665003],[124,79,67,-0.13779211889257445],[124,79,68,-0.1428178428772023],[124,79,69,-0.14562281993897389],[124,79,70,-0.1428774737391192],[124,79,71,-0.14396165632984448],[124,79,72,-0.1401618059054675],[124,79,73,-0.1390278732563161],[124,79,74,-0.13892584120683626],[124,79,75,-0.13466981379270856],[124,79,76,-0.13594726633429333],[124,79,77,-0.13631830010966628],[124,79,78,-0.135666308464902],[124,79,79,-0.13794363436512988],[124,80,64,-0.13753796885192027],[124,80,65,-0.14157423824392834],[124,80,66,-0.13880344620735857],[124,80,67,-0.13854259848941644],[124,80,68,-0.14281202379024532],[124,80,69,-0.14480892848487226],[124,80,70,-0.14271504781298133],[124,80,71,-0.14283735342790396],[124,80,72,-0.14145421896086496],[124,80,73,-0.14090347634234582],[124,80,74,-0.1415623257422166],[124,80,75,-0.14068961562376917],[124,80,76,-0.13992770386594683],[124,80,77,-0.14104152967373657],[124,80,78,-0.14315614258703097],[124,80,79,-0.14356833286070778],[124,81,64,-0.1396212583138606],[124,81,65,-0.14150672014816823],[124,81,66,-0.13713960348422943],[124,81,67,-0.1336879374298747],[124,81,68,-0.13455423397972743],[124,81,69,-0.13605161729611437],[124,81,70,-0.13618879457669875],[124,81,71,-0.1406911972256099],[124,81,72,-0.14226002338772398],[124,81,73,-0.14582054554269042],[124,81,74,-0.1485486692267371],[124,81,75,-0.14702686675557666],[124,81,76,-0.1476201043784973],[124,81,77,-0.14925761506855845],[124,81,78,-0.15524171845822385],[124,81,79,-0.15560838021849793],[124,82,64,-0.1492816188770674],[124,82,65,-0.14856122965396684],[124,82,66,-0.14273940667121193],[124,82,67,-0.13984515240941514],[124,82,68,-0.14140742799924105],[124,82,69,-0.14302422898697031],[124,82,70,-0.14270422370828748],[124,82,71,-0.14697528984061162],[124,82,72,-0.15097623530935922],[124,82,73,-0.15423302743298123],[124,82,74,-0.15709157696575285],[124,82,75,-0.15539477971199248],[124,82,76,-0.15908712858418717],[124,82,77,-0.15987561485079702],[124,82,78,-0.16441587929221144],[124,82,79,-0.1610983696122848],[124,83,64,-0.1487612798573109],[124,83,65,-0.14853768453363467],[124,83,66,-0.14123437741722505],[124,83,67,-0.14063444713579032],[124,83,68,-0.14326707187859514],[124,83,69,-0.146489700393306],[124,83,70,-0.1449086385083206],[124,83,71,-0.14641513095714398],[124,83,72,-0.15114215565726694],[124,83,73,-0.15655479174284148],[124,83,74,-0.16324265432032292],[124,83,75,-0.16092241869862878],[124,83,76,-0.16310827661726435],[124,83,77,-0.16653069693448763],[124,83,78,-0.16756947840239134],[124,83,79,-0.16398660832163758],[124,84,64,-0.14203676944099447],[124,84,65,-0.14245575503533273],[124,84,66,-0.13893235215702904],[124,84,67,-0.13809862968720513],[124,84,68,-0.14207722982524304],[124,84,69,-0.14625071168601955],[124,84,70,-0.14704221970403716],[124,84,71,-0.14655493394070282],[124,84,72,-0.15447359124216803],[124,84,73,-0.15957833141660602],[124,84,74,-0.16411887365601652],[124,84,75,-0.16535397347906838],[124,84,76,-0.1679019359225101],[124,84,77,-0.17000826759319382],[124,84,78,-0.1708793822657525],[124,84,79,-0.16495613464985726],[124,85,64,-0.14254834925882842],[124,85,65,-0.147769707496397],[124,85,66,-0.15098458320634955],[124,85,67,-0.15018581611348986],[124,85,68,-0.1532383983336153],[124,85,69,-0.15548984225915868],[124,85,70,-0.1580299247020042],[124,85,71,-0.1587547934175132],[124,85,72,-0.16125865711038118],[124,85,73,-0.16194033644753023],[124,85,74,-0.1660806081409152],[124,85,75,-0.16783744927683103],[124,85,76,-0.16949655708055136],[124,85,77,-0.1689707763204948],[124,85,78,-0.16628401468204368],[124,85,79,-0.157682635644539],[124,86,64,-0.1451016716656663],[124,86,65,-0.1496793906396263],[124,86,66,-0.15448508236595418],[124,86,67,-0.15445536133232624],[124,86,68,-0.15489987065584693],[124,86,69,-0.1553142578212542],[124,86,70,-0.15848328935008854],[124,86,71,-0.16270200648833447],[124,86,72,-0.16421305493340155],[124,86,73,-0.16349172955642716],[124,86,74,-0.16921165005835934],[124,86,75,-0.16960850794936339],[124,86,76,-0.17072420193946228],[124,86,77,-0.17197972741183423],[124,86,78,-0.16964499561541663],[124,86,79,-0.1599638416304146],[124,87,64,-0.13592598843148565],[124,87,65,-0.14251887201106278],[124,87,66,-0.1472199712179169],[124,87,67,-0.14748438951474235],[124,87,68,-0.14790948544525997],[124,87,69,-0.14895502241359576],[124,87,70,-0.153094377348519],[124,87,71,-0.15908573806454787],[124,87,72,-0.15871938162176583],[124,87,73,-0.15816770076443842],[124,87,74,-0.16465231764986027],[124,87,75,-0.16670931772398195],[124,87,76,-0.1659186863132974],[124,87,77,-0.16770417200996982],[124,87,78,-0.16486650454885957],[124,87,79,-0.15552850500857573],[124,88,64,-0.13575384360649684],[124,88,65,-0.1435729569310501],[124,88,66,-0.15036629626890807],[124,88,67,-0.15211607489947496],[124,88,68,-0.15051850672140699],[124,88,69,-0.15119495695747193],[124,88,70,-0.15533954203691047],[124,88,71,-0.16086820933289203],[124,88,72,-0.16026335841800815],[124,88,73,-0.16084363174981403],[124,88,74,-0.16813680766951783],[124,88,75,-0.17133893740431744],[124,88,76,-0.16792350122930638],[124,88,77,-0.1686959694457111],[124,88,78,-0.1653859056471495],[124,88,79,-0.1567491453967922],[124,89,64,-0.1381728659503704],[124,89,65,-0.14614219140851087],[124,89,66,-0.15396891798397822],[124,89,67,-0.15607796208464175],[124,89,68,-0.1550768575277125],[124,89,69,-0.1544485362562873],[124,89,70,-0.1560581255233746],[124,89,71,-0.15951615540388375],[124,89,72,-0.16365654009541125],[124,89,73,-0.16670984044824078],[124,89,74,-0.17117776867458695],[124,89,75,-0.17448095763758875],[124,89,76,-0.16941891457271913],[124,89,77,-0.16912159290287979],[124,89,78,-0.1644082481422406],[124,89,79,-0.156527483989776],[124,90,64,-0.14462998441397845],[124,90,65,-0.15149686333772036],[124,90,66,-0.16102460897829668],[124,90,67,-0.16565011674544616],[124,90,68,-0.16471150584241556],[124,90,69,-0.16285341165943168],[124,90,70,-0.1616449340462478],[124,90,71,-0.16679624827978157],[124,90,72,-0.17314877540114187],[124,90,73,-0.17827199861805784],[124,90,74,-0.179845013977117],[124,90,75,-0.1825725307333731],[124,90,76,-0.179969011700886],[124,90,77,-0.17520457257616523],[124,90,78,-0.17080167942350435],[124,90,79,-0.16152637696851171],[124,91,64,-0.1416953912920355],[124,91,65,-0.1520795841656612],[124,91,66,-0.16115817979008432],[124,91,67,-0.16557266828278122],[124,91,68,-0.16821046685431856],[124,91,69,-0.1651887724004647],[124,91,70,-0.16286141837619192],[124,91,71,-0.1669033526787032],[124,91,72,-0.17445218258015346],[124,91,73,-0.1790957361105671],[124,91,74,-0.1818624733002403],[124,91,75,-0.1846932112921268],[124,91,76,-0.1814631823884856],[124,91,77,-0.1780346033896979],[124,91,78,-0.1718206883784153],[124,91,79,-0.16321971073136976],[124,92,64,-0.13020738906294976],[124,92,65,-0.14228187013201668],[124,92,66,-0.1549140775074059],[124,92,67,-0.16278091993036226],[124,92,68,-0.1656678756083066],[124,92,69,-0.16371416495672195],[124,92,70,-0.16133089114650695],[124,92,71,-0.16510566194991683],[124,92,72,-0.17357406106225237],[124,92,73,-0.17617191641268298],[124,92,74,-0.18039859624610058],[124,92,75,-0.1820591992581409],[124,92,76,-0.1812358144735249],[124,92,77,-0.17819784402208197],[124,92,78,-0.1690047645243171],[124,92,79,-0.16097250057052548],[124,93,64,-0.12272245650582168],[124,93,65,-0.13577118550428524],[124,93,66,-0.15310720107324902],[124,93,67,-0.16072775925327254],[124,93,68,-0.16465694252714191],[124,93,69,-0.16456515573907243],[124,93,70,-0.16545213459019759],[124,93,71,-0.1719347211934572],[124,93,72,-0.1797923575750811],[124,93,73,-0.18473522867680486],[124,93,74,-0.18906132592578948],[124,93,75,-0.19062928116742534],[124,93,76,-0.18992083693804696],[124,93,77,-0.18859746950120657],[124,93,78,-0.17589348125370377],[124,93,79,-0.16555854770385925],[124,94,64,-0.12439672986019283],[124,94,65,-0.13790942285628427],[124,94,66,-0.1525721081191209],[124,94,67,-0.16066540295802173],[124,94,68,-0.16367199370786797],[124,94,69,-0.16622959444499988],[124,94,70,-0.1689280358309685],[124,94,71,-0.17552067194636306],[124,94,72,-0.18363347774056143],[124,94,73,-0.18926859630935333],[124,94,74,-0.18966260843578508],[124,94,75,-0.19112571498049552],[124,94,76,-0.1906852316062219],[124,94,77,-0.18798348146739466],[124,94,78,-0.1786294465288067],[124,94,79,-0.16778210596965867],[124,95,64,-0.11822243596699372],[124,95,65,-0.13273166834138334],[124,95,66,-0.14541615541810787],[124,95,67,-0.15131770487489168],[124,95,68,-0.15364197376690528],[124,95,69,-0.15802928727623364],[124,95,70,-0.16179996794777246],[124,95,71,-0.16974134310550748],[124,95,72,-0.1782989415349606],[124,95,73,-0.18438393399307032],[124,95,74,-0.18595271346269943],[124,95,75,-0.18732967156806427],[124,95,76,-0.18447883361253875],[124,95,77,-0.17952770454971392],[124,95,78,-0.17263982207038214],[124,95,79,-0.1609288296920438],[124,96,64,-0.12263994751135834],[124,96,65,-0.1367652634724028],[124,96,66,-0.14571596321072577],[124,96,67,-0.15117637418077784],[124,96,68,-0.1549694020754397],[124,96,69,-0.15880472657188088],[124,96,70,-0.16424010272582729],[124,96,71,-0.16983219230606256],[124,96,72,-0.1797189095909621],[124,96,73,-0.18252814858041885],[124,96,74,-0.18551843728822595],[124,96,75,-0.18752123755170436],[124,96,76,-0.18387429505324604],[124,96,77,-0.18116127805810342],[124,96,78,-0.17152322400804168],[124,96,79,-0.1641200452027794],[124,97,64,-0.13615762005372262],[124,97,65,-0.14359731691583952],[124,97,66,-0.15122717738489505],[124,97,67,-0.15328644391208085],[124,97,68,-0.15716098524353975],[124,97,69,-0.16003912887848584],[124,97,70,-0.1653051298997648],[124,97,71,-0.1651014954842645],[124,97,72,-0.16844662704410918],[124,97,73,-0.1707257001049135],[124,97,74,-0.17261060885538185],[124,97,75,-0.17585956549069615],[124,97,76,-0.17631718420445863],[124,97,77,-0.17290199590306443],[124,97,78,-0.16591635084276293],[124,97,79,-0.16321800672786743],[124,98,64,-0.14173806763535698],[124,98,65,-0.1510695029200654],[124,98,66,-0.15717793532043753],[124,98,67,-0.15896758774172348],[124,98,68,-0.16597267139484811],[124,98,69,-0.16861332300410337],[124,98,70,-0.1699318717872293],[124,98,71,-0.16955392362987898],[124,98,72,-0.17187750012895497],[124,98,73,-0.1728973595594423],[124,98,74,-0.17831935399253396],[124,98,75,-0.18067493025909195],[124,98,76,-0.1801738088056275],[124,98,77,-0.1770923025752632],[124,98,78,-0.1724124549252556],[124,98,79,-0.1698930812477148],[124,99,64,-0.1437236031261328],[124,99,65,-0.15406379658197505],[124,99,66,-0.15564239228840743],[124,99,67,-0.16057621066694094],[124,99,68,-0.16739134072511186],[124,99,69,-0.1695185340109966],[124,99,70,-0.17022657488050585],[124,99,71,-0.16711945096063888],[124,99,72,-0.16876001671128454],[124,99,73,-0.172096349249037],[124,99,74,-0.17699532182844024],[124,99,75,-0.17858475327109635],[124,99,76,-0.17823879347820237],[124,99,77,-0.1742568934378376],[124,99,78,-0.17209998384630554],[124,99,79,-0.1688470556118087],[124,100,64,-0.12635162822342036],[124,100,65,-0.12791895281775045],[124,100,66,-0.12399283140999087],[124,100,67,-0.1228003186232537],[124,100,68,-0.12270814064108276],[124,100,69,-0.11794066844932934],[124,100,70,-0.11496095275746483],[124,100,71,-0.11024566492470844],[124,100,72,-0.11013432790292324],[124,100,73,-0.11154560541241929],[124,100,74,-0.11477793390899346],[124,100,75,-0.1156497691038625],[124,100,76,-0.11621085837836406],[124,100,77,-0.11202623165847808],[124,100,78,-0.10801171729636705],[124,100,79,-0.10695574189722393],[124,101,64,-0.12719109712986004],[124,101,65,-0.12753882696467111],[124,101,66,-0.12311300493060837],[124,101,67,-0.12452488584017292],[124,101,68,-0.12225774670499698],[124,101,69,-0.11718777968164276],[124,101,70,-0.11263535186464695],[124,101,71,-0.1076666766099947],[124,101,72,-0.10937946892695484],[124,101,73,-0.11141095253038999],[124,101,74,-0.11687439224970796],[124,101,75,-0.11683486310552929],[124,101,76,-0.11505248535838491],[124,101,77,-0.11119536487157373],[124,101,78,-0.10788959003694304],[124,101,79,-0.10829759653978496],[124,102,64,-0.13080521988137628],[124,102,65,-0.12497249878636194],[124,102,66,-0.12532729501529913],[124,102,67,-0.12333532687594122],[124,102,68,-0.12108078536178139],[124,102,69,-0.1160752385053141],[124,102,70,-0.11139289449968823],[124,102,71,-0.10922080752443417],[124,102,72,-0.1077959101729243],[124,102,73,-0.11133695170886122],[124,102,74,-0.11716887504776366],[124,102,75,-0.11542310067956636],[124,102,76,-0.11472743686482398],[124,102,77,-0.11078532071122055],[124,102,78,-0.10797053015577149],[124,102,79,-0.10783664589709761],[124,103,64,-0.12771220457871602],[124,103,65,-0.12002764465618622],[124,103,66,-0.11995781411148862],[124,103,67,-0.11658974641387149],[124,103,68,-0.11512781183891752],[124,103,69,-0.11000951363083747],[124,103,70,-0.10489426559506775],[124,103,71,-0.1039055100522168],[124,103,72,-0.10717182075123562],[124,103,73,-0.10823792670712218],[124,103,74,-0.11228957393126707],[124,103,75,-0.11094791065598623],[124,103,76,-0.10818856874676899],[124,103,77,-0.10646537968570534],[124,103,78,-0.10728354617516861],[124,103,79,-0.10489278045299903],[124,104,64,-0.12946111942216917],[124,104,65,-0.12421736712582208],[124,104,66,-0.12053907931385599],[124,104,67,-0.11547612405568422],[124,104,68,-0.11366997320855046],[124,104,69,-0.11165004837658535],[124,104,70,-0.10796833544341927],[124,104,71,-0.10472931275725708],[124,104,72,-0.10898928709061427],[124,104,73,-0.1087046356856535],[124,104,74,-0.1109315170016747],[124,104,75,-0.11135050549815873],[124,104,76,-0.11136190459485026],[124,104,77,-0.10799519937273233],[124,104,78,-0.10948290812857525],[124,104,79,-0.11030681459851224],[124,105,64,-0.12739592478987516],[124,105,65,-0.12151787379976375],[124,105,66,-0.11785519627481048],[124,105,67,-0.11604437954912426],[124,105,68,-0.11323517624276422],[124,105,69,-0.1110890389260997],[124,105,70,-0.10943679252563562],[124,105,71,-0.10758383161373172],[124,105,72,-0.11242302754467115],[124,105,73,-0.11235462806655269],[124,105,74,-0.11315309691928903],[124,105,75,-0.11580514053397876],[124,105,76,-0.11449890099716323],[124,105,77,-0.10841467870811416],[124,105,78,-0.1087363850818882],[124,105,79,-0.10689050938095813],[124,106,64,-0.13598570740038268],[124,106,65,-0.12994906856507774],[124,106,66,-0.12361628173706868],[124,106,67,-0.12592484219226105],[124,106,68,-0.1220954174790623],[124,106,69,-0.11696468273784472],[124,106,70,-0.11649860487871166],[124,106,71,-0.11606962077031337],[124,106,72,-0.11691742677062378],[124,106,73,-0.11710805375172573],[124,106,74,-0.11678269187518067],[124,106,75,-0.11968032470977594],[124,106,76,-0.11973939699906903],[124,106,77,-0.11593979953042982],[124,106,78,-0.11532042490907406],[124,106,79,-0.11311615135217976],[124,107,64,-0.13714558974761018],[124,107,65,-0.13126086170510812],[124,107,66,-0.12628544547949114],[124,107,67,-0.1262178490913333],[124,107,68,-0.12202454855338433],[124,107,69,-0.11885966234038736],[124,107,70,-0.11594709467834542],[124,107,71,-0.11629826485197617],[124,107,72,-0.11512170226964251],[124,107,73,-0.11397508501819904],[124,107,74,-0.11572041278894483],[124,107,75,-0.11997468102412762],[124,107,76,-0.1188343694234498],[124,107,77,-0.11837470108348339],[124,107,78,-0.11570871202042635],[124,107,79,-0.11170798006142779],[124,108,64,-0.13615891226946128],[124,108,65,-0.1302532776730213],[124,108,66,-0.12703878481026334],[124,108,67,-0.12694147938147068],[124,108,68,-0.12152182026562416],[124,108,69,-0.12198121898558861],[124,108,70,-0.1205876680955601],[124,108,71,-0.11993776319262517],[124,108,72,-0.11691786298567293],[124,108,73,-0.1174697470570184],[124,108,74,-0.12013592752073864],[124,108,75,-0.12274965465156717],[124,108,76,-0.12410324086290916],[124,108,77,-0.1250464988242514],[124,108,78,-0.12236761800351895],[124,108,79,-0.11687788823440906],[124,109,64,-0.13924986601677056],[124,109,65,-0.13367223972477227],[124,109,66,-0.13180696063996494],[124,109,67,-0.12926530626660537],[124,109,68,-0.12706293864926335],[124,109,69,-0.12796023927479633],[124,109,70,-0.12488791687365434],[124,109,71,-0.12383124405942018],[124,109,72,-0.1163462329514012],[124,109,73,-0.11668950774703077],[124,109,74,-0.11733216004420663],[124,109,75,-0.1177022482225061],[124,109,76,-0.12054798520923127],[124,109,77,-0.12455915111330368],[124,109,78,-0.12715625172552358],[124,109,79,-0.12466304294050773],[124,110,64,-0.13951970469170255],[124,110,65,-0.1353543844695848],[124,110,66,-0.13372848992607575],[124,110,67,-0.12895285224051753],[124,110,68,-0.1276186114367553],[124,110,69,-0.12920900193909596],[124,110,70,-0.12458617777201181],[124,110,71,-0.12214227037714115],[124,110,72,-0.11573715234577966],[124,110,73,-0.11810451680335657],[124,110,74,-0.11664996899049215],[124,110,75,-0.11604601705665951],[124,110,76,-0.11944320956944836],[124,110,77,-0.1229744769237354],[124,110,78,-0.12719246103482199],[124,110,79,-0.12661048867566557],[124,111,64,-0.1349148062546381],[124,111,65,-0.13085650739116872],[124,111,66,-0.1269707655434801],[124,111,67,-0.1235985717722502],[124,111,68,-0.12206760565534783],[124,111,69,-0.12202068048787437],[124,111,70,-0.11963167653267211],[124,111,71,-0.11856878078514445],[124,111,72,-0.11198391900469562],[124,111,73,-0.11270516678771286],[124,111,74,-0.1119369804453209],[124,111,75,-0.11295840475580589],[124,111,76,-0.11610083597924933],[124,111,77,-0.1197081748912106],[124,111,78,-0.1253551738711997],[124,111,79,-0.12561246503265272],[124,112,64,-0.13600394496356888],[124,112,65,-0.1312475984698098],[124,112,66,-0.12849687495918077],[124,112,67,-0.12609650469166356],[124,112,68,-0.12223156832837911],[124,112,69,-0.12105981946875234],[124,112,70,-0.11955829428717586],[124,112,71,-0.11586541935379738],[124,112,72,-0.11048785404066917],[124,112,73,-0.10810217585899774],[124,112,74,-0.11091103729824985],[124,112,75,-0.11098385186703477],[124,112,76,-0.11349376903118619],[124,112,77,-0.11925584349158336],[124,112,78,-0.1242713961121098],[124,112,79,-0.12715970553327638],[124,113,64,-0.13654246987245078],[124,113,65,-0.133868724771951],[124,113,66,-0.1287405362575252],[124,113,67,-0.12740087583921622],[124,113,68,-0.12253260703477238],[124,113,69,-0.1228047568919704],[124,113,70,-0.12029476083757293],[124,113,71,-0.11335223939950909],[124,113,72,-0.10834756798660741],[124,113,73,-0.10346812220187858],[124,113,74,-0.10880037361933044],[124,113,75,-0.10874109635008888],[124,113,76,-0.11165620794704831],[124,113,77,-0.11819308567815259],[124,113,78,-0.12429318161708844],[124,113,79,-0.12739190315329466],[124,114,64,-0.14274015560076128],[124,114,65,-0.14040412403570632],[124,114,66,-0.13630023501997252],[124,114,67,-0.13251095294523593],[124,114,68,-0.12694543311480305],[124,114,69,-0.12691865317907053],[124,114,70,-0.12455030410443589],[124,114,71,-0.11845887279519103],[124,114,72,-0.1131195860890053],[124,114,73,-0.10919141242181413],[124,114,74,-0.11226662548243445],[124,114,75,-0.11429615074906438],[124,114,76,-0.11705731151292245],[124,114,77,-0.12331483345024456],[124,114,78,-0.12928725143047523],[124,114,79,-0.13143382187838826],[124,115,64,-0.14320813002536362],[124,115,65,-0.14170608540802782],[124,115,66,-0.1360877564177359],[124,115,67,-0.12952745396884072],[124,115,68,-0.12531498866492496],[124,115,69,-0.12491826630557948],[124,115,70,-0.12347547404181164],[124,115,71,-0.11791903742388134],[124,115,72,-0.11259202992581824],[124,115,73,-0.11179324171739481],[124,115,74,-0.11128415463576082],[124,115,75,-0.11414649942341602],[124,115,76,-0.11871446732919955],[124,115,77,-0.12337960507885394],[124,115,78,-0.12618002626704103],[124,115,79,-0.12826552928890383],[124,116,64,-0.12291296525335857],[124,116,65,-0.12151407960239488],[124,116,66,-0.11684770144434214],[124,116,67,-0.11011578652870721],[124,116,68,-0.10847197856407],[124,116,69,-0.1078564686471721],[124,116,70,-0.10730203288669696],[124,116,71,-0.10473346702407851],[124,116,72,-0.10290784230034873],[124,116,73,-0.10081545814172699],[124,116,74,-0.10132770498988317],[124,116,75,-0.1032355755512343],[124,116,76,-0.10688140997132446],[124,116,77,-0.10875553390135975],[124,116,78,-0.1086970166719399],[124,116,79,-0.10796392704639998],[124,117,64,-0.1280253524064125],[124,117,65,-0.12620807354986238],[124,117,66,-0.12104987271141744],[124,117,67,-0.11451165924254765],[124,117,68,-0.11397746144907477],[124,117,69,-0.11112551313372288],[124,117,70,-0.1105087927441693],[124,117,71,-0.10787743527240401],[124,117,72,-0.10621349669212986],[124,117,73,-0.10409280050315997],[124,117,74,-0.10231120534968166],[124,117,75,-0.10514901201749828],[124,117,76,-0.10878791509085979],[124,117,77,-0.10629014947519431],[124,117,78,-0.10477280261030869],[124,117,79,-0.09940260155704791],[124,118,64,-0.12352750941625022],[124,118,65,-0.12208794676698023],[124,118,66,-0.11897892451378332],[124,118,67,-0.11213895024815801],[124,118,68,-0.11389945745337042],[124,118,69,-0.10902320333898452],[124,118,70,-0.1076602148833719],[124,118,71,-0.1053228523078743],[124,118,72,-0.10383748006006435],[124,118,73,-0.10363167708420226],[124,118,74,-0.10433362280648284],[124,118,75,-0.1051351571298784],[124,118,76,-0.10905241812526256],[124,118,77,-0.10606566667796376],[124,118,78,-0.1050074431372108],[124,118,79,-0.09953732186833661],[124,119,64,-0.11264229711392668],[124,119,65,-0.11239519933812711],[124,119,66,-0.11044082714264156],[124,119,67,-0.10609430951253356],[124,119,68,-0.10739325269529815],[124,119,69,-0.1036484678935941],[124,119,70,-0.10153737873298968],[124,119,71,-0.09866982322145214],[124,119,72,-0.09998615122399326],[124,119,73,-0.10240743136019609],[124,119,74,-0.10472015255375859],[124,119,75,-0.1029070885832037],[124,119,76,-0.10768413563004707],[124,119,77,-0.1070864196105614],[124,119,78,-0.10533642559720652],[124,119,79,-0.09973803853963019],[124,120,64,-0.11049041245049482],[124,120,65,-0.10998870790245452],[124,120,66,-0.10927108057367814],[124,120,67,-0.1063396971353845],[124,120,68,-0.1066508144027177],[124,120,69,-0.10343645887881035],[124,120,70,-0.09871088683247793],[124,120,71,-0.09569078796115718],[124,120,72,-0.10031395840562718],[124,120,73,-0.10279837171897535],[124,120,74,-0.1027966965474689],[124,120,75,-0.10290217918061705],[124,120,76,-0.1061495205301675],[124,120,77,-0.1076855080539624],[124,120,78,-0.10489130884234421],[124,120,79,-0.10147657238694764],[124,121,64,-0.10417071962896446],[124,121,65,-0.09917597781964707],[124,121,66,-0.09687435890695763],[124,121,67,-0.09555771454733943],[124,121,68,-0.09413147827652643],[124,121,69,-0.09288492855633027],[124,121,70,-0.08839095388885423],[124,121,71,-0.08756793187210753],[124,121,72,-0.09173045192701158],[124,121,73,-0.09425382213359104],[124,121,74,-0.09848550552172268],[124,121,75,-0.10121367314176462],[124,121,76,-0.10680915728481552],[124,121,77,-0.11121171968732038],[124,121,78,-0.1137760833548079],[124,121,79,-0.11304797805148056],[124,122,64,-0.10916837496680705],[124,122,65,-0.10157607557705742],[124,122,66,-0.10081395297652075],[124,122,67,-0.09916378976552903],[124,122,68,-0.09937812021376313],[124,122,69,-0.09817632298883083],[124,122,70,-0.09315509210818146],[124,122,71,-0.09395568136164884],[124,122,72,-0.09401768317417378],[124,122,73,-0.0971110470075226],[124,122,74,-0.10423431405664707],[124,122,75,-0.10837719900336151],[124,122,76,-0.11479144352673142],[124,122,77,-0.11904691247839569],[124,122,78,-0.11993561179419643],[124,122,79,-0.11956258559064072],[124,123,64,-0.1045345680963596],[124,123,65,-0.09732932021689543],[124,123,66,-0.09665112704895631],[124,123,67,-0.09532576502196571],[124,123,68,-0.09659082146942782],[124,123,69,-0.09688567226777353],[124,123,70,-0.09225431554667768],[124,123,71,-0.09404995095810532],[124,123,72,-0.09322134855860457],[124,123,73,-0.09686218048170996],[124,123,74,-0.10318155287352782],[124,123,75,-0.10938533337897803],[124,123,76,-0.11655955176851632],[124,123,77,-0.12105738192889734],[124,123,78,-0.12235876902887755],[124,123,79,-0.12131918537500744],[124,124,64,-0.09712148911720471],[124,124,65,-0.09217485903182626],[124,124,66,-0.09360146910532],[124,124,67,-0.09296263935322428],[124,124,68,-0.09249781198178961],[124,124,69,-0.09332872962582722],[124,124,70,-0.0893717082335429],[124,124,71,-0.09206633145625107],[124,124,72,-0.09125483494953299],[124,124,73,-0.09711743845867846],[124,124,74,-0.10343478438189121],[124,124,75,-0.10974475696360776],[124,124,76,-0.11423537987021386],[124,124,77,-0.1195039144596817],[124,124,78,-0.12195467863427427],[124,124,79,-0.12446610307831801],[124,125,64,-0.09089423859292764],[124,125,65,-0.09009597027768541],[124,125,66,-0.09091040507335785],[124,125,67,-0.09041708572855577],[124,125,68,-0.09216991030957711],[124,125,69,-0.09317920663722667],[124,125,70,-0.08844222447573549],[124,125,71,-0.09016354677000925],[124,125,72,-0.09025172047842905],[124,125,73,-0.09769483592815989],[124,125,74,-0.10516600005279253],[124,125,75,-0.10820648768706875],[124,125,76,-0.11280726309974978],[124,125,77,-0.11690660815372686],[124,125,78,-0.12215718258870648],[124,125,79,-0.12768166893486738],[124,126,64,-0.08640836982694763],[124,126,65,-0.08808295811923628],[124,126,66,-0.08824685120816551],[124,126,67,-0.08779651033452726],[124,126,68,-0.09211913893773563],[124,126,69,-0.09045246440480542],[124,126,70,-0.08976940911355981],[124,126,71,-0.09027777753541483],[124,126,72,-0.0918882286784564],[124,126,73,-0.09904840226309825],[124,126,74,-0.10427620920065697],[124,126,75,-0.10765035659981563],[124,126,76,-0.11010888048543865],[124,126,77,-0.1136588314314964],[124,126,78,-0.1213035681200457],[124,126,79,-0.1295323561402297],[124,127,64,-0.08061620373166747],[124,127,65,-0.0813111104639884],[124,127,66,-0.08325334524621003],[124,127,67,-0.08238192174212888],[124,127,68,-0.08684982176599862],[124,127,69,-0.08704921534607885],[124,127,70,-0.09085538444992894],[124,127,71,-0.09015640027080656],[124,127,72,-0.09271268540518017],[124,127,73,-0.10156593058222477],[124,127,74,-0.10524515939541766],[124,127,75,-0.10736895527837875],[124,127,76,-0.11270123613651872],[124,127,77,-0.11667601100312634],[124,127,78,-0.12210827397900596],[124,127,79,-0.12987608752105376],[124,128,64,-0.07938991275434992],[124,128,65,-0.08128880287451887],[124,128,66,-0.08339291945474178],[124,128,67,-0.08235581613773826],[124,128,68,-0.08469935275211388],[124,128,69,-0.08831802686264684],[124,128,70,-0.09296366881929319],[124,128,71,-0.09326316452113695],[124,128,72,-0.09398718604208076],[124,128,73,-0.10257269043082132],[124,128,74,-0.10884057741218972],[124,128,75,-0.11107003495429417],[124,128,76,-0.11677801888591138],[124,128,77,-0.11721016070923243],[124,128,78,-0.1221317498141413],[124,128,79,-0.12861977557070134],[124,129,64,-0.08135803268023795],[124,129,65,-0.0846099481707103],[124,129,66,-0.08881847680101718],[124,129,67,-0.0915636460000432],[124,129,68,-0.09320394590633158],[124,129,69,-0.09990521714772403],[124,129,70,-0.10364471265713177],[124,129,71,-0.10515962185437228],[124,129,72,-0.10492016512875121],[124,129,73,-0.10978315130353761],[124,129,74,-0.11642444337691421],[124,129,75,-0.12152535518328197],[124,129,76,-0.12431607696985797],[124,129,77,-0.12236394987040242],[124,129,78,-0.12321696276192556],[124,129,79,-0.1266107433781148],[124,130,64,-0.08674918487718794],[124,130,65,-0.0910276996257294],[124,130,66,-0.09343205351044676],[124,130,67,-0.09579056985969464],[124,130,68,-0.09984431198934728],[124,130,69,-0.10801479232819731],[124,130,70,-0.11216109278569202],[124,130,71,-0.11348980833295483],[124,130,72,-0.11257565117114336],[124,130,73,-0.11590029515780922],[124,130,74,-0.1326256746921817],[124,130,75,-0.16708660439276787],[124,130,76,-0.17474981724422256],[124,130,77,-0.17472750295511888],[124,130,78,-0.1422658660579175],[124,130,79,-0.13330756302027397],[124,131,64,-0.08360031900080922],[124,131,65,-0.08797038079347838],[124,131,66,-0.09219625559871295],[124,131,67,-0.09594144419275272],[124,131,68,-0.10196310402939344],[124,131,69,-0.10970870894210034],[124,131,70,-0.11151092978128738],[124,131,71,-0.11339137797290583],[124,131,72,-0.11164796765228055],[124,131,73,-0.11637314807291771],[124,131,74,-0.14445591049028245],[124,131,75,-0.18167427221942162],[124,131,76,-0.1822199406598169],[124,131,77,-0.18498119703228172],[124,131,78,-0.1629297668863675],[124,131,79,-0.1542457813601404],[124,132,64,-0.07120736272031723],[124,132,65,-0.07815651344685645],[124,132,66,-0.08285548021716746],[124,132,67,-0.08786879894863728],[124,132,68,-0.09580944977169743],[124,132,69,-0.10104902675431685],[124,132,70,-0.10391569424714203],[124,132,71,-0.10563544544719952],[124,132,72,-0.10579940107536122],[124,132,73,-0.11159618634227368],[124,132,74,-0.1462766524291211],[124,132,75,-0.18397834482681788],[124,132,76,-0.18431897435254255],[124,132,77,-0.19149179095950658],[124,132,78,-0.1681706312816888],[124,132,79,-0.15810149665971418],[124,133,64,-0.06341495585366792],[124,133,65,-0.06790183865232441],[124,133,66,-0.07355483862797255],[124,133,67,-0.07819147578891664],[124,133,68,-0.08623971639352253],[124,133,69,-0.09184227591866567],[124,133,70,-0.09689879001376356],[124,133,71,-0.09672888913380166],[124,133,72,-0.10002029356995187],[124,133,73,-0.10765305124393536],[124,133,74,-0.1356211277645625],[124,133,75,-0.16587290239697244],[124,133,76,-0.17554304780237617],[124,133,77,-0.19127410472226808],[124,133,78,-0.17442544449397607],[124,133,79,-0.1723334486016909],[124,134,64,-0.0616063384041892],[124,134,65,-0.062472520479693705],[124,134,66,-0.06872553800398934],[124,134,67,-0.0745114056716531],[124,134,68,-0.0823823471613146],[124,134,69,-0.09141337897404178],[124,134,70,-0.09528642159616807],[124,134,71,-0.09726203240907481],[124,134,72,-0.1000806648854255],[124,134,73,-0.11149210085504589],[124,134,74,-0.13918695858999686],[124,134,75,-0.17176039903766793],[124,134,76,-0.19130423786791284],[124,134,77,-0.20141643295624534],[124,134,78,-0.19068765702767765],[124,134,79,-0.18981911745413668],[124,135,64,-0.055240984137968095],[124,135,65,-0.05507477560731772],[124,135,66,-0.05999625494889399],[124,135,67,-0.06712162669935394],[124,135,68,-0.0751085319512528],[124,135,69,-0.08758761702238949],[124,135,70,-0.09269329407577384],[124,135,71,-0.09607736742714565],[124,135,72,-0.10049581984762698],[124,135,73,-0.10483738156807218],[124,135,74,-0.13600170119722332],[124,135,75,-0.16068105620807227],[124,135,76,-0.18952814223249792],[124,135,77,-0.19920449958249506],[124,135,78,-0.19473554718043928],[124,135,79,-0.18931091470669495],[124,136,64,-0.05562386437740608],[124,136,65,-0.05471650072541738],[124,136,66,-0.05678877428858459],[124,136,67,-0.06528765509688439],[124,136,68,-0.07416441309149194],[124,136,69,-0.08579450196859979],[124,136,70,-0.09293542886566195],[124,136,71,-0.0962932591150132],[124,136,72,-0.09951233170869905],[124,136,73,-0.11037661507163542],[124,136,74,-0.14558343128817428],[124,136,75,-0.1688435712427116],[124,136,76,-0.1947697115097326],[124,136,77,-0.21456627396303254],[124,136,78,-0.2098257191100067],[124,136,79,-0.20827936238705302],[124,137,64,-0.05683129677170859],[124,137,65,-0.05650774136352675],[124,137,66,-0.05797698998350777],[124,137,67,-0.06448931929867575],[124,137,68,-0.07409137612336503],[124,137,69,-0.08515246154583532],[124,137,70,-0.09313653029849445],[124,137,71,-0.09807225944616427],[124,137,72,-0.10170182005288167],[124,137,73,-0.11386498661637963],[124,137,74,-0.1440992188802536],[124,137,75,-0.1700099668754272],[124,137,76,-0.183829298296327],[124,137,77,-0.20568364919835214],[124,137,78,-0.20975721127861519],[124,137,79,-0.20846711980197313],[124,138,64,-0.06224641890498556],[124,138,65,-0.0645095194345311],[124,138,66,-0.063688142478456],[124,138,67,-0.07040399880389406],[124,138,68,-0.07765677217520313],[124,138,69,-0.09121245866606666],[124,138,70,-0.10157822950390322],[124,138,71,-0.10639743258057535],[124,138,72,-0.10707948624457497],[124,138,73,-0.10555061861341003],[124,138,74,-0.13708068202071844],[124,138,75,-0.1612147050024268],[124,138,76,-0.17266410974342952],[124,138,77,-0.19177041255582436],[124,138,78,-0.2023090943299916],[124,138,79,-0.20451068807251377],[124,139,64,-0.0605651694338917],[124,139,65,-0.06300597338675001],[124,139,66,-0.06404740692507771],[124,139,67,-0.07050117504655452],[124,139,68,-0.07858041645974664],[124,139,69,-0.09006721363780759],[124,139,70,-0.10047979336674293],[124,139,71,-0.10477915766906326],[124,139,72,-0.10678495566005582],[124,139,73,-0.11805050076791337],[124,139,74,-0.15385488695796679],[124,139,75,-0.18211142455677387],[124,139,76,-0.19498960019075803],[124,139,77,-0.20844375861519693],[124,139,78,-0.22740831895919297],[124,139,79,-0.2313227468496999],[124,140,64,-0.06373703612113749],[124,140,65,-0.0650150660346629],[124,140,66,-0.06594827326985336],[124,140,67,-0.07121917852351772],[124,140,68,-0.07681738355686185],[124,140,69,-0.08325521884237724],[124,140,70,-0.0893178836622439],[124,140,71,-0.09448790767217302],[124,140,72,-0.0978449824753915],[124,140,73,-0.11509482372890963],[124,140,74,-0.14871452610559852],[124,140,75,-0.1761442551668287],[124,140,76,-0.19226040045027817],[124,140,77,-0.20732164939674116],[124,140,78,-0.2268238807976781],[124,140,79,-0.2334808769128679],[124,141,64,-0.05857655256206618],[124,141,65,-0.05954911896868077],[124,141,66,-0.06718044114155713],[124,141,67,-0.07481918830504761],[124,141,68,-0.0819062330030243],[124,141,69,-0.08550232215421047],[124,141,70,-0.09077143968181728],[124,141,71,-0.09481920846355563],[124,141,72,-0.09890759865470858],[124,141,73,-0.11000700901265041],[124,141,74,-0.14124371852478068],[124,141,75,-0.16437069733634513],[124,141,76,-0.18271635689594684],[124,141,77,-0.19011886673187184],[124,141,78,-0.20666659917072006],[124,141,79,-0.2251029634151916],[124,142,64,-0.05720680408180371],[124,142,65,-0.05995753008041261],[124,142,66,-0.06609956658134455],[124,142,67,-0.07026287467885935],[124,142,68,-0.07997569499096444],[124,142,69,-0.0860236796376721],[124,142,70,-0.08894698783651594],[124,142,71,-0.09333323854761352],[124,142,72,-0.09522019281440436],[124,142,73,-0.10954341616270573],[124,142,74,-0.13419342182694993],[124,142,75,-0.15549425991083077],[124,142,76,-0.17726400151441118],[124,142,77,-0.1816538483755886],[124,142,78,-0.20272426551342904],[124,142,79,-0.22843943003731915],[124,143,64,-0.05134381283692595],[124,143,65,-0.055825072568205],[124,143,66,-0.06241882909411035],[124,143,67,-0.06844799441172238],[124,143,68,-0.07638545484627791],[124,143,69,-0.0841584937492979],[124,143,70,-0.08917376793318595],[124,143,71,-0.09275866604808364],[124,143,72,-0.0954987714823435],[124,143,73,-0.10433749524208841],[124,143,74,-0.1224111121794803],[124,143,75,-0.1424126378671105],[124,143,76,-0.164220501320651],[124,143,77,-0.16988678840574342],[124,143,78,-0.1981130020179069],[124,143,79,-0.21951970165246426],[124,144,64,-0.0513664635835003],[124,144,65,-0.057329140108952494],[124,144,66,-0.06286255976722281],[124,144,67,-0.06747085528608807],[124,144,68,-0.07343472198518178],[124,144,69,-0.08088828097034542],[124,144,70,-0.08757726748429616],[124,144,71,-0.0915578525216347],[124,144,72,-0.09625152526440764],[124,144,73,-0.1045106885798575],[124,144,74,-0.12074053826372311],[124,144,75,-0.14039631244994305],[124,144,76,-0.16713191429815782],[124,144,77,-0.17143346275283922],[124,144,78,-0.20609484589187316],[124,144,79,-0.22867466738088765],[124,145,64,-0.057130880658425844],[124,145,65,-0.05960721880444351],[124,145,66,-0.060937825633136045],[124,145,67,-0.06267866259547841],[124,145,68,-0.06766555763089357],[124,145,69,-0.07507585414453646],[124,145,70,-0.08484619608011845],[124,145,71,-0.09077179452640469],[124,145,72,-0.09399069146011926],[124,145,73,-0.10027964582849565],[124,145,74,-0.10379358097850339],[124,145,75,-0.10939995009155032],[124,145,76,-0.12090352679322973],[124,145,77,-0.1336500152797817],[124,145,78,-0.1575256070312663],[124,145,79,-0.17859828999747124],[124,146,64,-0.06526423564595188],[124,146,65,-0.06443341313144565],[124,146,66,-0.06645110344751601],[124,146,67,-0.06772229391814885],[124,146,68,-0.0742691808679007],[124,146,69,-0.08205302335620365],[124,146,70,-0.09264146953892713],[124,146,71,-0.09578177770679971],[124,146,72,-0.09939237802457739],[124,146,73,-0.1053667020689286],[124,146,74,-0.10800484628169833],[124,146,75,-0.11250419676887587],[124,146,76,-0.12466714360718179],[124,146,77,-0.13699437675725812],[124,146,78,-0.15425774398563424],[124,146,79,-0.17232259821961451],[124,147,64,-0.06428788674038421],[124,147,65,-0.06589309975661657],[124,147,66,-0.06548959540655902],[124,147,67,-0.06889163240847421],[124,147,68,-0.07283463512313722],[124,147,69,-0.08232318385971496],[124,147,70,-0.0919524809007992],[124,147,71,-0.09577032169368813],[124,147,72,-0.09906489151990866],[124,147,73,-0.10277800767273437],[124,147,74,-0.10803143161248016],[124,147,75,-0.11137331365189534],[124,147,76,-0.12240916463367556],[124,147,77,-0.1356129291557257],[124,147,78,-0.13259941763942037],[124,147,79,-0.1277185140813136],[124,148,64,-0.03149099921217384],[124,148,65,-0.03625912803560534],[124,148,66,-0.040476796665466386],[124,148,67,-0.049008425958911805],[124,148,68,-0.05370996190165003],[124,148,69,-0.06527100409404826],[124,148,70,-0.07406805971285055],[124,148,71,-0.08024872292624446],[124,148,72,-0.0867638820735131],[124,148,73,-0.09301366732251991],[124,148,74,-0.09634403194405754],[124,148,75,-0.10014568342021868],[124,148,76,-0.09886902655446815],[124,148,77,-0.08973402183043527],[124,148,78,-0.09605878720127078],[124,148,79,-0.0947655031378013],[124,149,64,-0.032554886720771115],[124,149,65,-0.03649952610380329],[124,149,66,-0.04021303358173184],[124,149,67,-0.048651352621872285],[124,149,68,-0.05501031336377787],[124,149,69,-0.06365988264334548],[124,149,70,-0.07157521274076134],[124,149,71,-0.07782790948847226],[124,149,72,-0.08663220260679594],[124,149,73,-0.09562417996960522],[124,149,74,-0.09698269986547099],[124,149,75,-0.09711089235543793],[124,149,76,-0.08779796403599964],[124,149,77,-0.07665303463178608],[124,149,78,-0.08856626580557508],[124,149,79,-0.09293776303562093],[124,150,64,-0.03539455672510507],[124,150,65,-0.038417069690756214],[124,150,66,-0.042251348763144986],[124,150,67,-0.0492581387211314],[124,150,68,-0.05752797792688956],[124,150,69,-0.06361237319690571],[124,150,70,-0.07166437581392857],[124,150,71,-0.07685623886031437],[124,150,72,-0.08684874849373689],[124,150,73,-0.09493536518610257],[124,150,74,-0.09683189353180142],[124,150,75,-0.08290201429108947],[124,150,76,-0.07416171935783329],[124,150,77,-0.0682880881477656],[124,150,78,-0.08083011509567681],[124,150,79,-0.09304875674672129],[124,151,64,-0.033883679901839533],[124,151,65,-0.03854387357652511],[124,151,66,-0.043416048745625074],[124,151,67,-0.0489199451572318],[124,151,68,-0.054028984098590034],[124,151,69,-0.06319189764529391],[124,151,70,-0.07310391407084577],[124,151,71,-0.07669593071264555],[124,151,72,-0.0863936736560904],[124,151,73,-0.09269716342429044],[124,151,74,-0.09372053046476288],[124,151,75,-0.07874788191880301],[124,151,76,-0.07219959086599428],[124,151,77,-0.06086632143819693],[124,151,78,-0.07842401234641899],[124,151,79,-0.09617420901381131],[124,152,64,-0.0335060481567951],[124,152,65,-0.0407630362010145],[124,152,66,-0.04793574808060533],[124,152,67,-0.05134036724883154],[124,152,68,-0.054089061874300175],[124,152,69,-0.06288943188948812],[124,152,70,-0.07430282869919078],[124,152,71,-0.07737213515506919],[124,152,72,-0.08349921330684607],[124,152,73,-0.09026019000070737],[124,152,74,-0.08330830782430938],[124,152,75,-0.06788704295800575],[124,152,76,-0.06353222233049907],[124,152,77,-0.04975982092358802],[124,152,78,-0.06618578455641937],[124,152,79,-0.08899105359699627],[124,153,64,-0.03373474395085986],[124,153,65,-0.03980659776459357],[124,153,66,-0.04761310281372111],[124,153,67,-0.05071496411579153],[124,153,68,-0.05395469161015526],[124,153,69,-0.06195920776382103],[124,153,70,-0.06942631239344536],[124,153,71,-0.0735269814164837],[124,153,72,-0.07701155144124022],[124,153,73,-0.07109447358081616],[124,153,74,-0.05334152960021776],[124,153,75,-0.024921298107927398],[124,153,76,-0.022143804957742638],[124,153,77,-0.00847768067660988],[124,153,78,-0.020861110517124012],[124,153,79,-0.051823190835966634],[124,154,64,-0.03987035725391609],[124,154,65,-0.04733400069344132],[124,154,66,-0.0528380743431507],[124,154,67,-0.054898462358287936],[124,154,68,-0.059509112662667306],[124,154,69,-0.06482845683147771],[124,154,70,-0.07302525174092073],[124,154,71,-0.07675220693464191],[124,154,72,-0.07967192242517146],[124,154,73,-0.08800829186065784],[124,154,74,-0.0746716931014547],[124,154,75,-0.033756259892914045],[124,154,76,-0.036791251460132054],[124,154,77,-0.02110625570805917],[124,154,78,-0.02145176978143358],[124,154,79,-0.04999494447198424],[124,155,64,-0.04033748623030592],[124,155,65,-0.046573307695892574],[124,155,66,-0.05194976741118876],[124,155,67,-0.05273917764154282],[124,155,68,-0.05627071756664931],[124,155,69,-0.06317098293148023],[124,155,70,-0.07089159408437004],[124,155,71,-0.07230163266102418],[124,155,72,-0.0784099810003509],[124,155,73,-0.08786666543002915],[124,155,74,-0.06714131521981695],[124,155,75,-0.033879157949299146],[124,155,76,-0.03664745720522378],[124,155,77,-0.02818406530587997],[124,155,78,-0.026490974611746612],[124,155,79,-0.046771811097512675],[124,156,64,-0.03536982082564891],[124,156,65,-0.04388901707695535],[124,156,66,-0.049316107481039984],[124,156,67,-0.05245179227183075],[124,156,68,-0.0540856552984111],[124,156,69,-0.06203847378005582],[124,156,70,-0.06730928857238945],[124,156,71,-0.06789769428108813],[124,156,72,-0.07822556615801617],[124,156,73,-0.07494243682049649],[124,156,74,-0.05665208550568676],[124,156,75,-0.02635880382944368],[124,156,76,-0.02380281817105094],[124,156,77,-0.019815305587346163],[124,156,78,-0.01878359974535275],[124,156,79,-0.031225648615423346],[124,157,64,-0.03387623419286731],[124,157,65,-0.041961190569718865],[124,157,66,-0.0490660297564945],[124,157,67,-0.058969937531842834],[124,157,68,-0.06037071180936618],[124,157,69,-0.0674578395691436],[124,157,70,-0.06883806098328779],[124,157,71,-0.07286991909429003],[124,157,72,-0.0827318812973343],[124,157,73,-0.07514938463100636],[124,157,74,-0.055213094596301804],[124,157,75,-0.014137099645906676],[124,157,76,-0.014866209366019692],[124,157,77,-0.005314074636690119],[124,157,78,-0.004156266163975478],[124,157,79,-0.016160332890700624],[124,158,64,-0.03586514192634255],[124,158,65,-0.041088353739189995],[124,158,66,-0.048531975519041246],[124,158,67,-0.0575074569120344],[124,158,68,-0.06175272479765914],[124,158,69,-0.06498758511776133],[124,158,70,-0.06726189516932296],[124,158,71,-0.07343618246400359],[124,158,72,-0.08026869745746662],[124,158,73,-0.06882272672707129],[124,158,74,-0.04482033876268913],[124,158,75,-0.004701046053201222],[124,158,76,-0.003833790064896675],[124,158,77,-0.002709771369383565],[124,158,78,-0.005155240224442276],[124,158,79,-0.017011421674968594],[124,159,64,-0.08128087912285367],[124,159,65,-0.08395684975137016],[124,159,66,-0.08430526358660156],[124,159,67,-0.08733202803715248],[124,159,68,-0.08373348635804073],[124,159,69,-0.08298135848022654],[124,159,70,-0.07821972842222347],[124,159,71,-0.07437703341755691],[124,159,72,-0.07451874126882213],[124,159,73,-0.06256603594355574],[124,159,74,-0.027884257325021207],[124,159,75,4.915890824470776E-4],[124,159,76,0.008053666033214155],[124,159,77,0.006619959253898536],[124,159,78,1.4054049696482496E-5],[124,159,79,-0.010465515031569186],[124,160,64,-0.08039567107221933],[124,160,65,-0.08437441782717403],[124,160,66,-0.08482470186114438],[124,160,67,-0.08604874144110047],[124,160,68,-0.07994149574076115],[124,160,69,-0.07881391442245081],[124,160,70,-0.0774353013184532],[124,160,71,-0.07279471384658426],[124,160,72,-0.06934449570454576],[124,160,73,-0.06145649819443494],[124,160,74,-0.018070085377706137],[124,160,75,0.00766349148080607],[124,160,76,0.010934022481438571],[124,160,77,0.011704310383150576],[124,160,78,0.0031259875096870254],[124,160,79,-0.005268993429124319],[124,161,64,-0.08076054423203516],[124,161,65,-0.08100009981635785],[124,161,66,-0.08173503572499827],[124,161,67,-0.0828595156530604],[124,161,68,-0.07772176576079226],[124,161,69,-0.07638095446556041],[124,161,70,-0.07571875293749941],[124,161,71,-0.07041726309537734],[124,161,72,-0.0671465753146756],[124,161,73,-0.05640921564118265],[124,161,74,-0.0031252435658100514],[124,161,75,0.027542131896918856],[124,161,76,0.027446795040392782],[124,161,77,0.02586422773605071],[124,161,78,0.012807777858566294],[124,161,79,0.006142347980367946],[124,162,64,-0.08889061942786206],[124,162,65,-0.08905509931039642],[124,162,66,-0.0861600968346801],[124,162,67,-0.08478819021460834],[124,162,68,-0.08094506272478294],[124,162,69,-0.07927554909788562],[124,162,70,-0.07945294803338421],[124,162,71,-0.07407273661404394],[124,162,72,-0.07206010020073544],[124,162,73,-0.0701671939054036],[124,162,74,-0.02159197681247485],[124,162,75,0.025133885039866063],[124,162,76,0.022067531281466157],[124,162,77,0.03159722574961768],[124,162,78,0.028130822753964446],[124,162,79,0.018248045207196556],[124,163,64,-0.0879786730666163],[124,163,65,-0.09087983461435653],[124,163,66,-0.08442330454172589],[124,163,67,-0.08307209982516542],[124,163,68,-0.07960615717576705],[124,163,69,-0.07595448154956697],[124,163,70,-0.07901798065665157],[124,163,71,-0.07120919863546858],[124,163,72,-0.06933027407601207],[124,163,73,-0.06436093096109542],[124,163,74,-0.043583811938328436],[124,163,75,0.003307399141757296],[124,163,76,0.004708472464506966],[124,163,77,0.014471483340443222],[124,163,78,0.023001750360694878],[124,163,79,0.011440418558816653],[124,164,64,-0.08003469451529388],[124,164,65,-0.0780062385898494],[124,164,66,-0.06992175359120088],[124,164,67,-0.06342933239351703],[124,164,68,-0.054248905569537834],[124,164,69,-0.04829805560067557],[124,164,70,-0.04620151001618472],[124,164,71,-0.03833403663372728],[124,164,72,-0.034509406015836144],[124,164,73,-0.027895584508538643],[124,164,74,-0.015562723778752266],[124,164,75,0.014495707666295474],[124,164,76,0.019648823771433864],[124,164,77,0.022279537222302803],[124,164,78,0.024248397853951734],[124,164,79,0.012689621847607316],[124,165,64,-0.08046944786788274],[124,165,65,-0.07915630950223135],[124,165,66,-0.06889982682938592],[124,165,67,-0.060995153410429936],[124,165,68,-0.04904370453632809],[124,165,69,-0.04287463448987812],[124,165,70,-0.035680725826572224],[124,165,71,-0.02716255037909207],[124,165,72,-0.018855840702283827],[124,165,73,-0.013878784234183733],[124,165,74,-0.003780824529285241],[124,165,75,0.024104060502329987],[124,165,76,0.031649095990441765],[124,165,77,0.030353246505122722],[124,165,78,0.033627362713620934],[124,165,79,0.02012950843113849],[124,166,64,-0.07930398326552864],[124,166,65,-0.07426189791975403],[124,166,66,-0.06670867417479885],[124,166,67,-0.05901009100957051],[124,166,68,-0.05051667970860127],[124,166,69,-0.041686525021820825],[124,166,70,-0.031359115866937806],[124,166,71,-0.02310200367617561],[124,166,72,-0.014191051448601721],[124,166,73,-0.011498533044100506],[124,166,74,-0.002872360447207653],[124,166,75,0.012715926001438388],[124,166,76,0.015295336068292541],[124,166,77,0.015002149708504175],[124,166,78,0.018128087639914248],[124,166,79,0.014384405693427985],[124,167,64,-0.07452787667595173],[124,167,65,-0.06884381653248542],[124,167,66,-0.06097744953564914],[124,167,67,-0.054985324622550125],[124,167,68,-0.05007079667196186],[124,167,69,-0.03774982252607792],[124,167,70,-0.027831010264268444],[124,167,71,-0.01894010453436651],[124,167,72,-0.011004414682851182],[124,167,73,-0.008736265267185378],[124,167,74,-0.002378241636168496],[124,167,75,0.013575824862434761],[124,167,76,0.013579163393293058],[124,167,77,0.01600385446499216],[124,167,78,0.02246990782321208],[124,167,79,0.021079161485959286],[124,168,64,-0.07358875626224529],[124,168,65,-0.06541863189020289],[124,168,66,-0.06194067696766811],[124,168,67,-0.055634444717878505],[124,168,68,-0.04834975809901318],[124,168,69,-0.03484006538718168],[124,168,70,-0.024145412087221207],[124,168,71,-0.014703279251320214],[124,168,72,-0.009099886472650101],[124,168,73,-0.005468360733098213],[124,168,74,0.0012893750919745345],[124,168,75,0.014418006739570381],[124,168,76,0.01525764113352533],[124,168,77,0.017692852940781264],[124,168,78,0.022539559839366896],[124,168,79,0.022502397712464275],[124,169,64,-0.06791491696341392],[124,169,65,-0.0638047597877623],[124,169,66,-0.06332229020935054],[124,169,67,-0.05808251209035423],[124,169,68,-0.04955241984620376],[124,169,69,-0.03635029728734253],[124,169,70,-0.024977951693761227],[124,169,71,-0.01860911786451981],[124,169,72,-0.014823894427873185],[124,169,73,-0.011060701503775042],[124,169,74,-0.007795705033557032],[124,169,75,0.007097461223665436],[124,169,76,0.01566163595576371],[124,169,77,0.024777663515011678],[124,169,78,0.02916725015067395],[124,169,79,0.029324640384779582],[124,170,64,-0.06941432839942852],[124,170,65,-0.06981730543658235],[124,170,66,-0.06735887786613867],[124,170,67,-0.061924616595745496],[124,170,68,-0.05160119284018001],[124,170,69,-0.03843885477444056],[124,170,70,-0.031768513709921745],[124,170,71,-0.025447299133772028],[124,170,72,-0.01951022852166749],[124,170,73,-0.016120105805050994],[124,170,74,-0.01433746667580467],[124,170,75,-0.005814926879802887],[124,170,76,0.0017715707304273732],[124,170,77,0.012504474563280958],[124,170,78,0.018448871630050323],[124,170,79,0.0212221782527557],[124,171,64,-0.06699140744607747],[124,171,65,-0.06965809806830517],[124,171,66,-0.06417279609329266],[124,171,67,-0.059265738352448374],[124,171,68,-0.0476950296320775],[124,171,69,-0.037675562381186994],[124,171,70,-0.02662264339037411],[124,171,71,-0.022739431314780165],[124,171,72,-0.01921769996900774],[124,171,73,-0.014666003658404023],[124,171,74,-0.015044945470810603],[124,171,75,-0.009202175770189856],[124,171,76,-0.0018799185344377132],[124,171,77,0.0052349182878607],[124,171,78,0.00820141903650426],[124,171,79,0.011629729650954601],[124,172,64,-0.061250682100745926],[124,172,65,-0.060887970793697406],[124,172,66,-0.05541457583301923],[124,172,67,-0.050928158215461886],[124,172,68,-0.04026190969864518],[124,172,69,-0.031096208186163085],[124,172,70,-0.020459576081151162],[124,172,71,-0.016573845489725944],[124,172,72,-0.01321543585655982],[124,172,73,-0.008515479750732496],[124,172,74,-0.00731328196969222],[124,172,75,-0.0062149506496967325],[124,172,76,-0.00504474096016505],[124,172,77,-0.007977557083013195],[124,172,78,-0.011924863831335588],[124,172,79,-0.006277085152024867],[124,173,64,-0.06060719703757696],[124,173,65,-0.0562276329979469],[124,173,66,-0.05044918835419186],[124,173,67,-0.043985771250733885],[124,173,68,-0.03645105849976009],[124,173,69,-0.026799304734118637],[124,173,70,-0.016988634935454563],[124,173,71,-0.016278337672140403],[124,173,72,-0.01022251402337157],[124,173,73,-0.0034566602591332013],[124,173,74,-0.004166137715153412],[124,173,75,-0.0029265971935303198],[124,173,76,-0.002370471648050391],[124,173,77,-0.007768110396515636],[124,173,78,-0.009316068967910728],[124,173,79,-0.0054216904209792305],[124,174,64,-0.057520818173790955],[124,174,65,-0.05380722735145233],[124,174,66,-0.04898664211548738],[124,174,67,-0.039036685610912336],[124,174,68,-0.03314843551135778],[124,174,69,-0.023213567185017367],[124,174,70,-0.014770690887367821],[124,174,71,-0.014491536461681581],[124,174,72,-0.004982106814759649],[124,174,73,-8.218176051551507E-4],[124,174,74,0.0016527245959340382],[124,174,75,0.0018220746499419585],[124,174,76,0.003938768367391536],[124,174,77,0.0016559465079881454],[124,174,78,0.0014959170944165833],[124,174,79,0.0010927864175530183],[124,175,64,-0.05297841138008399],[124,175,65,-0.047033270143934325],[124,175,66,-0.043185624061103586],[124,175,67,-0.0331036656377304],[124,175,68,-0.026180436410028277],[124,175,69,-0.017893823553578977],[124,175,70,-0.01036599495647561],[124,175,71,-0.009170044486969675],[124,175,72,-0.001934615279403945],[124,175,73,8.008928112465952E-4],[124,175,74,0.003668826209119261],[124,175,75,0.003029929034909325],[124,175,76,0.004056356284443377],[124,175,77,0.003508628173920892],[124,175,78,0.002390366585560272],[124,175,79,0.0030202269034409895],[124,176,64,-0.05473438185599919],[124,176,65,-0.04310997701643901],[124,176,66,-0.0399224904965504],[124,176,67,-0.029425492425287025],[124,176,68,-0.022299959457036278],[124,176,69,-0.014511782072258117],[124,176,70,-0.007571181940091015],[124,176,71,-0.0050722700759887746],[124,176,72,-0.001250345503949965],[124,176,73,0.0025840128302839216],[124,176,74,0.005028942287099421],[124,176,75,0.003792365476383499],[124,176,76,0.003806868799476373],[124,176,77,0.0024213286515220394],[124,176,78,0.0017954860690158475],[124,176,79,0.0014761838943578715],[124,177,64,-0.05996764528140071],[124,177,65,-0.046426835628710916],[124,177,66,-0.03443527246628131],[124,177,67,-0.02320224071028411],[124,177,68,-0.013747073295482332],[124,177,69,-0.006089412761945828],[124,177,70,1.6456316236183877E-4],[124,177,71,0.0015439907867157016],[124,177,72,0.006163237413198588],[124,177,73,0.010843173790290955],[124,177,74,-0.011220528306994156],[124,177,75,-0.04060316206442608],[124,177,76,-0.06729896758427976],[124,177,77,-0.08268227106697855],[124,177,78,-0.0790873686505639],[124,177,79,-0.07436659062872011],[124,178,64,-0.06360703358615984],[124,178,65,-0.051464728141408664],[124,178,66,-0.0370913901003288],[124,178,67,-0.028117291564069807],[124,178,68,-0.017234789046917345],[124,178,69,-0.009919038182787929],[124,178,70,-0.0034668810697558172],[124,178,71,-0.0029184794344691567],[124,178,72,4.917652882125839E-4],[124,178,73,0.00684002821639125],[124,178,74,-2.656662546314751E-4],[124,178,75,-0.04128379759987817],[124,178,76,-0.06413120146807541],[124,178,77,-0.08037029936130484],[124,178,78,-0.07786331948424664],[124,178,79,-0.07410442065843598],[124,179,64,-0.06280639036557903],[124,179,65,-0.047563019435177906],[124,179,66,-0.03554067912658043],[124,179,67,-0.026254177073484875],[124,179,68,-0.01584484724831585],[124,179,69,-0.010289814474445838],[124,179,70,-0.0031100948549261653],[124,179,71,-0.0015789277199569907],[124,179,72,0.0011433833028026696],[124,179,73,0.00595974464981508],[124,179,74,-0.002741232312449571],[124,179,75,-0.05101327665561768],[124,179,76,-0.07639257881471428],[124,179,77,-0.09151287839241719],[124,179,78,-0.08670469788145282],[124,179,79,-0.08467033812694227],[124,180,64,-0.05394085420837978],[124,180,65,-0.03731416957980961],[124,180,66,-0.022188989708996076],[124,180,67,-0.010980039127593155],[124,180,68,-0.002679203848416148],[124,180,69,0.002499596718490038],[124,180,70,0.009089537894453575],[124,180,71,0.011840749995396471],[124,180,72,0.01660017860124796],[124,180,73,0.01937928112456111],[124,180,74,0.002143795642449507],[124,180,75,-0.04300526725928995],[124,180,76,-0.06818478372511182],[124,180,77,-0.07898974468362846],[124,180,78,-0.07422862257499334],[124,180,79,-0.07380012689164477],[124,181,64,-0.044753391640193554],[124,181,65,-0.030523351491713105],[124,181,66,-0.02033059226040196],[124,181,67,-0.014896995666558221],[124,181,68,-0.006505468284962637],[124,181,69,-2.4093767004093603E-4],[124,181,70,0.003497151080136471],[124,181,71,0.008678848871462086],[124,181,72,0.017264163211662742],[124,181,73,0.01769025630967168],[124,181,74,0.020550999128180675],[124,181,75,0.0030772737929262127],[124,181,76,-0.004631420719723608],[124,181,77,-0.021686167771460534],[124,181,78,-0.031070219636631362],[124,181,79,-0.04772711142814341],[124,182,64,-0.04074430360996331],[124,182,65,-0.031618747221263815],[124,182,66,-0.017974995719654108],[124,182,67,-0.013670909201247666],[124,182,68,-0.007476958687634053],[124,182,69,-7.677890907816648E-4],[124,182,70,0.005589023709609675],[124,182,71,0.009526087418123622],[124,182,72,0.01774120505006209],[124,182,73,0.020109663089312058],[124,182,74,0.0250123578101987],[124,182,75,3.765691570355757E-4],[124,182,76,-0.007425759376585999],[124,182,77,-0.02150770519033817],[124,182,78,-0.03802806496820782],[124,182,79,-0.04982974937466317],[124,183,64,-0.03571738545103563],[124,183,65,-0.028744003822457814],[124,183,66,-0.017756065399159998],[124,183,67,-0.01094758400691187],[124,183,68,-0.005915768225872142],[124,183,69,7.624205485887992E-4],[124,183,70,0.0054248560311579985],[124,183,71,0.009460126323795795],[124,183,72,0.017234861436805637],[124,183,73,0.02400607826578345],[124,183,74,0.02695980633223817],[124,183,75,0.01648302453658389],[124,183,76,0.008235855320896508],[124,183,77,-0.007312717064025236],[124,183,78,-0.027829650710833834],[124,183,79,-0.043326343864224126],[124,184,64,-0.03689483935719326],[124,184,65,-0.026322305306538743],[124,184,66,-0.01825065230226705],[124,184,67,-0.011680309668874886],[124,184,68,-0.005906163380070689],[124,184,69,-0.0015726227186560332],[124,184,70,0.004928969224566954],[124,184,71,0.009061567424141992],[124,184,72,0.015537439366163752],[124,184,73,0.02676982857668979],[124,184,74,0.028893565668679178],[124,184,75,0.01568054518599367],[124,184,76,0.006459302188194065],[124,184,77,-0.0071838259921939845],[124,184,78,-0.03052019542205707],[124,184,79,-0.042990882150986856],[124,185,64,-0.03895727697614633],[124,185,65,-0.02643517432226848],[124,185,66,-0.01945335484261787],[124,185,67,-0.012984238960404376],[124,185,68,-0.005771926977327091],[124,185,69,-0.0017091567043840405],[124,185,70,0.002583109067667247],[124,185,71,0.007225362062712612],[124,185,72,0.017033556358960977],[124,185,73,0.02966390995001511],[124,185,74,0.02971343817998756],[124,185,75,0.021428248868943924],[124,185,76,0.008915913974120143],[124,185,77,-0.00418847821680058],[124,185,78,-0.026192155097149852],[124,185,79,-0.0360008500280348],[124,186,64,-0.04781787936139596],[124,186,65,-0.03270863849463526],[124,186,66,-0.02590282237582986],[124,186,67,-0.015574854207294958],[124,186,68,-0.009814490402898557],[124,186,69,-0.00614302902658552],[124,186,70,-0.004637866639763871],[124,186,71,0.0026951404993585115],[124,186,72,0.012886844334437236],[124,186,73,0.02253703518500605],[124,186,74,0.025385820628810743],[124,186,75,0.019655384114362847],[124,186,76,0.00658393104086347],[124,186,77,-0.007214376594216081],[124,186,78,-0.02838846009411431],[124,186,79,-0.03294037571017894],[124,187,64,-0.048128665182368705],[124,187,65,-0.035955588786426934],[124,187,66,-0.027090273703358758],[124,187,67,-0.0175355965548548],[124,187,68,-0.010790760840110325],[124,187,69,-0.0031865401145156624],[124,187,70,-0.001822960283061198],[124,187,71,0.0026409408331262707],[124,187,72,0.013941464509112808],[124,187,73,0.021568662752937576],[124,187,74,0.026897713453591376],[124,187,75,0.019487643046376617],[124,187,76,-0.0028281076215762764],[124,187,77,-0.014384118283130076],[124,187,78,-0.03503218956086647],[124,187,79,-0.041171341165187544],[124,188,64,-0.04261081491404824],[124,188,65,-0.02747847464591195],[124,188,66,-0.016242096647685264],[124,188,67,-0.006134087145041461],[124,188,68,0.0038249428659741652],[124,188,69,0.013235004767311195],[124,188,70,0.016627686661812552],[124,188,71,0.020199454134992717],[124,188,72,0.027590403684945863],[124,188,73,0.03604217815043334],[124,188,74,0.04198542268713458],[124,188,75,0.041568557140785806],[124,188,76,0.010240523095421214],[124,188,77,-0.0010313321818731166],[124,188,78,-0.01962149412876482],[124,188,79,-0.025524814632856205],[124,189,64,-0.04082290543243147],[124,189,65,-0.026830156371021513],[124,189,66,-0.01858996099546356],[124,189,67,-0.008045342048673854],[124,189,68,4.583492127498562E-4],[124,189,69,0.0080487185500812],[124,189,70,0.015713937054704988],[124,189,71,0.02218133075027709],[124,189,72,0.03383436927116906],[124,189,73,0.045529966590879614],[124,189,74,0.05251012539969524],[124,189,75,0.0449604623583866],[124,189,76,0.005782783703746033],[124,189,77,-0.02066994017419385],[124,189,78,-0.039047223658468216],[124,189,79,-0.04463530864256417],[124,190,64,-0.03805663270107315],[124,190,65,-0.025510931042479867],[124,190,66,-0.017045170877410018],[124,190,67,-0.010022431187307224],[124,190,68,-0.0017604699968533921],[124,190,69,0.008277668397874832],[124,190,70,0.018159531822952005],[124,190,71,0.023166483928747428],[124,190,72,0.03478618071458227],[124,190,73,0.04712271816724223],[124,190,74,0.05334414828809361],[124,190,75,0.04519265131144924],[124,190,76,0.006931227231772155],[124,190,77,-0.027217807895440885],[124,190,78,-0.04456390374269076],[124,190,79,-0.04776454413261903],[124,191,64,-0.035527408019312534],[124,191,65,-0.02462561529722601],[124,191,66,-0.018680600192728394],[124,191,67,-0.0112082583275991],[124,191,68,-0.002580572444594059],[124,191,69,0.00901679073008306],[124,191,70,0.019755813901544086],[124,191,71,0.02473749045588236],[124,191,72,0.03479004087468032],[124,191,73,0.043981336623288986],[124,191,74,0.05291452861602776],[124,191,75,0.05223740264765818],[124,191,76,0.015550036020874597],[124,191,77,-0.02613403597683453],[124,191,78,-0.047392840251984134],[124,191,79,-0.043086848368596706],[124,192,64,-0.035957273766753006],[124,192,65,-0.025094016724800272],[124,192,66,-0.01904404561028665],[124,192,67,-0.012006429418480985],[124,192,68,-0.005734473202215248],[124,192,69,0.006983022393433999],[124,192,70,0.018976013061887745],[124,192,71,0.02520129893901217],[124,192,72,0.037179261076918754],[124,192,73,0.04468168433826958],[124,192,74,0.053199933631187524],[124,192,75,0.05452192979716538],[124,192,76,0.01746984050070525],[124,192,77,-0.03726147416290215],[124,192,78,-0.051429991449924634],[124,192,79,-0.040167005350409526],[124,193,64,-0.03795732212622005],[124,193,65,-0.023729288323789816],[124,193,66,-0.013610141675822057],[124,193,67,-0.0035880563175615665],[124,193,68,0.002309468316781721],[124,193,69,0.012570947011217484],[124,193,70,0.022628787056656177],[124,193,71,0.026347444215042495],[124,193,72,0.03360076924788653],[124,193,73,0.03785636748667104],[124,193,74,0.04022601682170229],[124,193,75,0.04479258287590322],[124,193,76,0.037721156483754334],[124,193,77,-0.007267362351939477],[124,193,78,-0.014432665999708147],[124,193,79,-0.010915996079921372],[124,194,64,-0.044811301643328236],[124,194,65,-0.028847102798367913],[124,194,66,-0.01625240197032994],[124,194,67,-0.006707839080299011],[124,194,68,-2.619809167179049E-4],[124,194,69,0.007914156348572579],[124,194,70,0.01647056309232088],[124,194,71,0.021191756347629],[124,194,72,0.02782435489785133],[124,194,73,0.03131958826945802],[124,194,74,0.035766131619422714],[124,194,75,0.041218977517620936],[124,194,76,0.0394156014142978],[124,194,77,-0.0025716345182825798],[124,194,78,-0.006399080840888291],[124,194,79,-0.01305762767308248],[124,195,64,-0.046608995944177514],[124,195,65,-0.03110986735989532],[124,195,66,-0.013919135142618333],[124,195,67,-0.00582366117752732],[124,195,68,0.0016779160324895542],[124,195,69,0.009045920721435521],[124,195,70,0.016722095841682216],[124,195,71,0.019583618759098642],[124,195,72,0.026040256399922815],[124,195,73,0.028920442612093422],[124,195,74,0.0353156530539154],[124,195,75,0.037942203294854704],[124,195,76,0.032936130349586035],[124,195,77,-0.00609511258766552],[124,195,78,-0.0020891007623213415],[124,195,79,-0.019673586108763144],[124,196,64,-0.044414758253153136],[124,196,65,-0.03548801331298235],[124,196,66,-0.024422155744466628],[124,196,67,-0.021670903549364753],[124,196,68,-0.019485699113762217],[124,196,69,-0.017075463418668696],[124,196,70,-0.01358806601046307],[124,196,71,-0.013256551096110805],[124,196,72,-0.010182433404110125],[124,196,73,-0.009392602025787317],[124,196,74,-0.003634059749893351],[124,196,75,8.692096431118651E-4],[124,196,76,-0.0022301407727247646],[124,196,77,-0.033182881104557416],[124,196,78,-0.03045792469804888],[124,196,79,-0.044133838918595986],[124,197,64,-0.04291281402346661],[124,197,65,-0.0337043867456928],[124,197,66,-0.023075008008146713],[124,197,67,-0.02002160631002889],[124,197,68,-0.015889779851741143],[124,197,69,-0.01688040187538495],[124,197,70,-0.015161284832193131],[124,197,71,-0.011786592619682151],[124,197,72,-0.009965489223441606],[124,197,73,-0.008604298756664519],[124,197,74,-0.003931270280679258],[124,197,75,0.0022336053134385386],[124,197,76,-0.015587526819442275],[124,197,77,-0.04909360275740989],[124,197,78,-0.044667319233951286],[124,197,79,-0.05162864035929697],[124,198,64,-0.045768435243500744],[124,198,65,-0.036394345789509064],[124,198,66,-0.02478827749474044],[124,198,67,-0.01977289670761484],[124,198,68,-0.015084935087269852],[124,198,69,-0.015843984947630785],[124,198,70,-0.015470195466093212],[124,198,71,-0.012327433838457594],[124,198,72,-0.00860925005363991],[124,198,73,-0.007697140777151154],[124,198,74,-0.0026921720641924773],[124,198,75,0.0040874559073396655],[124,198,76,-0.017456262269375796],[124,198,77,-0.03806934996083383],[124,198,78,-0.034425696510370814],[124,198,79,-0.0395915970118903],[124,199,64,-0.04888216620772445],[124,199,65,-0.038211231744809476],[124,199,66,-0.028201875492176356],[124,199,67,-0.022527908420865272],[124,199,68,-0.017589299390425986],[124,199,69,-0.01450192938114446],[124,199,70,-0.014139268799382487],[124,199,71,-0.012168013354952684],[124,199,72,-0.009797640448932915],[124,199,73,-0.008518049609720468],[124,199,74,-0.003447019087272088],[124,199,75,0.002134160379037145],[124,199,76,-0.024839059688882833],[124,199,77,-0.03860954425812321],[124,199,78,-0.035689746759760145],[124,199,79,-0.04669099089520272],[124,200,64,-0.0508297573975188],[124,200,65,-0.04127202159093518],[124,200,66,-0.03250724711638271],[124,200,67,-0.02450479399712477],[124,200,68,-0.021672299762068026],[124,200,69,-0.015336889684826646],[124,200,70,-0.011801337252570876],[124,200,71,-0.01151169807728554],[124,200,72,-0.011481722506035935],[124,200,73,-0.010062211915750296],[124,200,74,-0.00284567027227782],[124,200,75,0.003850045030613952],[124,200,76,-0.024021479823648717],[124,200,77,-0.03295294109025467],[124,200,78,-0.03304076123704724],[124,200,79,-0.0493397668417401],[124,201,64,-0.04255231340506957],[124,201,65,-0.03444314449488979],[124,201,66,-0.0272063215005513],[124,201,67,-0.01876468627559358],[124,201,68,-0.01603180376000396],[124,201,69,-0.010057700212034282],[124,201,70,-0.00558244699831445],[124,201,71,-0.006195225757904377],[124,201,72,-0.01115599953893906],[124,201,73,-0.010613862044514658],[124,201,74,-0.00535471208318794],[124,201,75,0.0030957356537143627],[124,201,76,-0.03238142219772977],[124,201,77,-0.04634893417755956],[124,201,78,-0.04705664450137667],[124,201,79,-0.05442695646567389],[124,202,64,-0.04964617780954396],[124,202,65,-0.0419073074973666],[124,202,66,-0.030988668585487017],[124,202,67,-0.0244425300858062],[124,202,68,-0.02093165956737339],[124,202,69,-0.017317673733642985],[124,202,70,-0.012127617016762904],[124,202,71,-0.014913688534779285],[124,202,72,-0.018891415062238556],[124,202,73,-0.01397757852590581],[124,202,74,-0.009667991245867008],[124,202,75,-9.877212216548859E-4],[124,202,76,-0.018649322364796366],[124,202,77,-0.041850277688710046],[124,202,78,-0.0443805432609742],[124,202,79,-0.05491478594268001],[124,203,64,-0.049869484155581956],[124,203,65,-0.04134501929543907],[124,203,66,-0.03233647861797978],[124,203,67,-0.026509246097208033],[124,203,68,-0.023304098830281353],[124,203,69,-0.01871069657240798],[124,203,70,-0.015262259452440585],[124,203,71,-0.01863660773847446],[124,203,72,-0.020110162336618984],[124,203,73,-0.015924787864637427],[124,203,74,-0.0087205374528901],[124,203,75,-2.5137199526974185E-4],[124,203,76,-0.01518636841450964],[124,203,77,-0.04191584662424956],[124,203,78,-0.04671284785137987],[124,203,79,-0.0644498098575915],[124,204,64,-0.04182326281313767],[124,204,65,-0.03158404235837489],[124,204,66,-0.02183512585781902],[124,204,67,-0.014072676484275681],[124,204,68,-0.008561174939941824],[124,204,69,-0.0015608993702540264],[124,204,70,9.570839600905323E-4],[124,204,71,-7.982447759742606E-4],[124,204,72,0.0015894428914527692],[124,204,73,0.005676707760241567],[124,204,74,0.013666439986963597],[124,204,75,0.021810779746570502],[124,204,76,0.008091963797553267],[124,204,77,-0.026623356637139516],[124,204,78,-0.039930939201169816],[124,204,79,-0.05878159362793024],[124,205,64,-0.05356176660398099],[124,205,65,-0.04439241214001252],[124,205,66,-0.03665891381404547],[124,205,67,-0.02728991870588443],[124,205,68,-0.02023710161663947],[124,205,69,-0.015039221419095819],[124,205,70,-0.00990422215179089],[124,205,71,-0.008089553979097025],[124,205,72,-0.0028534597698536557],[124,205,73,0.005848304506987562],[124,205,74,0.015465301046066776],[124,205,75,0.024081886283690998],[124,205,76,0.03550955166374037],[124,205,77,0.01349221872505009],[124,205,78,-0.011499809618398395],[124,205,79,-0.04217204284228823],[124,206,64,-0.05711364817988361],[124,206,65,-0.04730970412866345],[124,206,66,-0.04085200120626206],[124,206,67,-0.03212492646424943],[124,206,68,-0.02581286410921789],[124,206,69,-0.017754487833911287],[124,206,70,-0.011842231770319928],[124,206,71,-0.009151516321346448],[124,206,72,-0.0028634453436432034],[124,206,73,0.0048027794327902],[124,206,74,0.014510222724999244],[124,206,75,0.021615901262901555],[124,206,76,0.03125768221354905],[124,206,77,0.0036095978853413063],[124,206,78,-0.022772737660512722],[124,206,79,-0.0402889254060973],[124,207,64,-0.057881857035103415],[124,207,65,-0.049617891262957944],[124,207,66,-0.0450776948792989],[124,207,67,-0.03949937714044481],[124,207,68,-0.029892959599991636],[124,207,69,-0.019734352311401776],[124,207,70,-0.01846915362374002],[124,207,71,-0.013779718725237922],[124,207,72,-0.007430032991384561],[124,207,73,3.373729670131387E-4],[124,207,74,0.01454571191805179],[124,207,75,0.021805381276030808],[124,207,76,0.025030758373681322],[124,207,77,-3.1809278165699506E-5],[124,207,78,-0.019742685438561572],[124,207,79,-0.0315472687528449],[124,208,64,-0.058795820807627255],[124,208,65,-0.05118611688849835],[124,208,66,-0.04632468524872485],[124,208,67,-0.043195247183649865],[124,208,68,-0.03322486173443032],[124,208,69,-0.024139458657646495],[124,208,70,-0.022859961291791325],[124,208,71,-0.016405576101959682],[124,208,72,-0.008221298076995717],[124,208,73,0.0015246184034281435],[124,208,74,0.012413968588241633],[124,208,75,0.020689228430258763],[124,208,76,0.02459384913739407],[124,208,77,0.005482640034754967],[124,208,78,-0.018541507446919875],[124,208,79,-0.0364598866020055],[124,209,64,-0.058627244525772504],[124,209,65,-0.05254507498456085],[124,209,66,-0.04767608962148703],[124,209,67,-0.045682525845333555],[124,209,68,-0.039695282278313954],[124,209,69,-0.029377557593401646],[124,209,70,-0.02604831588739215],[124,209,71,-0.01806973804292618],[124,209,72,-0.00967929558871658],[124,209,73,-1.052450231221469E-4],[124,209,74,0.00871697600867219],[124,209,75,0.018064359551001233],[124,209,76,0.02274332784968547],[124,209,77,-0.0012394884113683356],[124,209,78,-0.014007106382925606],[124,209,79,-0.03824619768775578],[124,210,64,-0.06294802783718384],[124,210,65,-0.058337828472575404],[124,210,66,-0.053662533851971575],[124,210,67,-0.0533558243194617],[124,210,68,-0.049691029097964315],[124,210,69,-0.03867828144192623],[124,210,70,-0.032118178159584496],[124,210,71,-0.02462736515889405],[124,210,72,-0.017370182873885753],[124,210,73,-0.0073313272434919335],[124,210,74,0.0027429356858344744],[124,210,75,0.012208349424333437],[124,210,76,0.01520927847818554],[124,210,77,-0.011955163430574962],[124,210,78,-0.020323042030070564],[124,210,79,-0.04772604296124987],[124,211,64,-0.060658525576407385],[124,211,65,-0.05677069468882545],[124,211,66,-0.05512078239370086],[124,211,67,-0.05541929519829718],[124,211,68,-0.050722625551513995],[124,211,69,-0.03992735887886828],[124,211,70,-0.035045040635164615],[124,211,71,-0.025577153743128037],[124,211,72,-0.019316421644312312],[124,211,73,-0.010692430469033662],[124,211,74,4.851889486926775E-4],[124,211,75,0.007664862836768427],[124,211,76,0.012002041422111656],[124,211,77,-0.020311431784525928],[124,211,78,-0.034439248286559004],[124,211,79,-0.05986789663540866],[124,212,64,-0.052839125544028406],[124,212,65,-0.052700323098778645],[124,212,66,-0.05320256799669705],[124,212,67,-0.05881662599876067],[124,212,68,-0.05604963573412011],[124,212,69,-0.048365551393726613],[124,212,70,-0.04506864375772192],[124,212,71,-0.038201419748172594],[124,212,72,-0.031922112958041676],[124,212,73,-0.021627306926372977],[124,212,74,-0.014327136802940246],[124,212,75,-0.005723823784403503],[124,212,76,0.0024152297559328073],[124,212,77,-0.02404656210525201],[124,212,78,-0.03897557853851197],[124,212,79,-0.06178493013240624],[124,213,64,-0.05088858467731053],[124,213,65,-0.053046498933730674],[124,213,66,-0.057711493259627336],[124,213,67,-0.06280794084907428],[124,213,68,-0.062035990627210436],[124,213,69,-0.05414948628347546],[124,213,70,-0.05038966122781345],[124,213,71,-0.04285536627218292],[124,213,72,-0.03326181601193069],[124,213,73,-0.022579789714022316],[124,213,74,-0.01533880004538253],[124,213,75,-0.008472474383425854],[124,213,76,-0.03725659177598399],[124,213,77,-0.07159402717293699],[124,213,78,-0.08757933518628067],[124,213,79,-0.10514542266792498],[124,214,64,-0.053803848164357265],[124,214,65,-0.054327278478572924],[124,214,66,-0.06155168459319134],[124,214,67,-0.06485409454647013],[124,214,68,-0.06304784755655186],[124,214,69,-0.057635380247750834],[124,214,70,-0.05533481364722309],[124,214,71,-0.04754877812532088],[124,214,72,-0.03734467272721077],[124,214,73,-0.02830401985558882],[124,214,74,-0.015821638284050504],[124,214,75,-0.01165459510777149],[124,214,76,-0.055561139802423665],[124,214,77,-0.07646174198803576],[124,214,78,-0.09526154688040084],[124,214,79,-0.10635640945886082],[124,215,64,-0.05776908680381078],[124,215,65,-0.0575007819989877],[124,215,66,-0.0663424896638778],[124,215,67,-0.07068417679370126],[124,215,68,-0.06565877313929391],[124,215,69,-0.0624371421251704],[124,215,70,-0.06208604521505075],[124,215,71,-0.05009828049738588],[124,215,72,-0.04177266237366378],[124,215,73,-0.031095195139050957],[124,215,74,-0.018833052650906096],[124,215,75,-0.015757036747791858],[124,215,76,-0.05781534191328741],[124,215,77,-0.07367985571402365],[124,215,78,-0.09442015977249081],[124,215,79,-0.10320137334648433],[124,216,64,-0.06068469462625102],[124,216,65,-0.06101386616700179],[124,216,66,-0.06732171360626225],[124,216,67,-0.07088187086333923],[124,216,68,-0.06516201248125283],[124,216,69,-0.06284222345797005],[124,216,70,-0.06361349838583595],[124,216,71,-0.05227884762511251],[124,216,72,-0.042464623364020126],[124,216,73,-0.032423160050368494],[124,216,74,-0.019866392649281514],[124,216,75,-0.026249319017305654],[124,216,76,-0.07167835136933572],[124,216,77,-0.08536986375999682],[124,216,78,-0.11579011269101419],[124,216,79,-0.10421263133101322],[124,217,64,-0.06636564278289807],[124,217,65,-0.06364407600567787],[124,217,66,-0.06287710950503596],[124,217,67,-0.06207969980079213],[124,217,68,-0.06065762586821136],[124,217,69,-0.057077200581211615],[124,217,70,-0.057350331802611676],[124,217,71,-0.05205037848977567],[124,217,72,-0.04408851839259073],[124,217,73,-0.03655696226967309],[124,217,74,-0.025130562301028073],[124,217,75,-0.03586854420288832],[124,217,76,-0.07646058267142729],[124,217,77,-0.08752544091584527],[124,217,78,-0.11695375614699864],[124,217,79,-0.10167289533771898],[124,218,64,-0.07269127282665772],[124,218,65,-0.0712102687908057],[124,218,66,-0.07004316361650122],[124,218,67,-0.06793268283338302],[124,218,68,-0.06888299294639415],[124,218,69,-0.06355803286754595],[124,218,70,-0.06068119376277449],[124,218,71,-0.05762660280621003],[124,218,72,-0.04998518398047477],[124,218,73,-0.04245673902831476],[124,218,74,-0.031508526951387006],[124,218,75,-0.03732415519208313],[124,218,76,-0.07572107749139062],[124,218,77,-0.08637627078928665],[124,218,78,-0.12193865303177101],[124,218,79,-0.10583582272723696],[124,219,64,-0.07532207134612785],[124,219,65,-0.07140712244627591],[124,219,66,-0.06817888927470808],[124,219,67,-0.07099569482576815],[124,219,68,-0.06996292559205132],[124,219,69,-0.06414855648274287],[124,219,70,-0.06212958299945481],[124,219,71,-0.05781708735762839],[124,219,72,-0.053216177953946495],[124,219,73,-0.04164848572866037],[124,219,74,-0.03309095615657469],[124,219,75,-0.04774014606157445],[124,219,76,-0.09013394144557131],[124,219,77,-0.10155354824194797],[124,219,78,-0.13021792457047882],[124,219,79,-0.11346873602807794],[124,220,64,-0.07076577161081579],[124,220,65,-0.06360175210055234],[124,220,66,-0.05999681808323393],[124,220,67,-0.06428016621699963],[124,220,68,-0.0575225250958703],[124,220,69,-0.04926484918921416],[124,220,70,-0.04583967251352772],[124,220,71,-0.0405811777472294],[124,220,72,-0.03759044469515278],[124,220,73,-0.027805609762670616],[124,220,74,-0.019653039301760586],[124,220,75,-0.04232981637694264],[124,220,76,-0.0853228133905789],[124,220,77,-0.11084967531551815],[124,220,78,-0.13040438572116989],[124,220,79,-0.11401774849773276],[124,221,64,-0.07178229782180187],[124,221,65,-0.06810752607640724],[124,221,66,-0.06476233757076749],[124,221,67,-0.06800357735074275],[124,221,68,-0.060397004136692634],[124,221,69,-0.05184582683668225],[124,221,70,-0.04716493292350797],[124,221,71,-0.04128560273689898],[124,221,72,-0.03775203816924097],[124,221,73,-0.029403364273775823],[124,221,74,-0.04743514904860363],[124,221,75,-0.09061934422176073],[124,221,76,-0.1277407767035477],[124,221,77,-0.14471034305075572],[124,221,78,-0.13240008931091019],[124,221,79,-0.11587703268570448],[124,222,64,-0.07222369868215639],[124,222,65,-0.07158419231853605],[124,222,66,-0.06972757052520538],[124,222,67,-0.06930730955985677],[124,222,68,-0.06227406306656076],[124,222,69,-0.05646960018092867],[124,222,70,-0.050904536654474156],[124,222,71,-0.042070492968819706],[124,222,72,-0.03880377904740624],[124,222,73,-0.032579484228401276],[124,222,74,-0.05869901200835447],[124,222,75,-0.08942246647695856],[124,222,76,-0.11925624116816139],[124,222,77,-0.13217196454135066],[124,222,78,-0.12060711463825602],[124,222,79,-0.11019358204407304],[124,223,64,-0.07961370064541355],[124,223,65,-0.07874685366703123],[124,223,66,-0.07465142126493365],[124,223,67,-0.07332398780631176],[124,223,68,-0.06800026341411022],[124,223,69,-0.06188734088339272],[124,223,70,-0.05755726870453917],[124,223,71,-0.04825079426197565],[124,223,72,-0.04118881666848667],[124,223,73,-0.036961027595578594],[124,223,74,-0.039078929999796876],[124,223,75,-0.06873642932600203],[124,223,76,-0.10346220128570212],[124,223,77,-0.12677329436663198],[124,223,78,-0.11511220492582441],[124,223,79,-0.10920483171290618],[124,224,64,-0.0837956177034393],[124,224,65,-0.08043494685065981],[124,224,66,-0.076451618065257],[124,224,67,-0.07444594652015982],[124,224,68,-0.06978649747059439],[124,224,69,-0.06383153480492144],[124,224,70,-0.059229352791817666],[124,224,71,-0.04972416209524294],[124,224,72,-0.042233385257332695],[124,224,73,-0.03785816765462803],[124,224,74,-0.04154266346608887],[124,224,75,-0.07421292228648024],[124,224,76,-0.11157552605214807],[124,224,77,-0.12693818338005036],[124,224,78,-0.11636548365741345],[124,224,79,-0.10753980063384455],[124,225,64,-0.09107222155670754],[124,225,65,-0.08663595667647074],[124,225,66,-0.07881975276749098],[124,225,67,-0.06792543313055542],[124,225,68,-0.06275258908778975],[124,225,69,-0.057896685180956226],[124,225,70,-0.05121769434756991],[124,225,71,-0.04159570433383318],[124,225,72,-0.034104478926511056],[124,225,73,-0.027395694713701346],[124,225,74,-0.03896253158556284],[124,225,75,-0.07789252736224062],[124,225,76,-0.11671727480630409],[124,225,77,-0.12891030485713464],[124,225,78,-0.11696821569779232],[124,225,79,-0.1085198867983455],[124,226,64,-0.09677148700309524],[124,226,65,-0.0935730148617133],[124,226,66,-0.08630457842298196],[124,226,67,-0.07324964710083795],[124,226,68,-0.06561529673266052],[124,226,69,-0.06259892788261452],[124,226,70,-0.054340157662972635],[124,226,71,-0.04496204030412912],[124,226,72,-0.03734334523805462],[124,226,73,-0.029359652562927177],[124,226,74,-0.035028913933706766],[124,226,75,-0.07097935924944436],[124,226,76,-0.11054094219497518],[124,226,77,-0.13121938283345702],[124,226,78,-0.11811547050897013],[124,226,79,-0.10429992059137055],[124,227,64,-0.09880436620476445],[124,227,65,-0.09559940952566448],[124,227,66,-0.0872660168594405],[124,227,67,-0.07327524068763054],[124,227,68,-0.06641712631165875],[124,227,69,-0.060461894118873524],[124,227,70,-0.05425723581825727],[124,227,71,-0.047082302245766997],[124,227,72,-0.03770927076351832],[124,227,73,-0.028593929576537808],[124,227,74,-0.04212516996868518],[124,227,75,-0.07561640703589717],[124,227,76,-0.1200980779849289],[124,227,77,-0.13981219168338943],[124,227,78,-0.1275949631858432],[124,227,79,-0.11230953944752367],[124,228,64,-0.09283892368474761],[124,228,65,-0.08879438227603074],[124,228,66,-0.08032764458461816],[124,228,67,-0.06856992405224993],[124,228,68,-0.06093777409189663],[124,228,69,-0.05154951226433588],[124,228,70,-0.045892602157172585],[124,228,71,-0.03440088747991557],[124,228,72,-0.027590624781322792],[124,228,73,-0.01803262429334543],[124,228,74,-0.03490510226072677],[124,228,75,-0.07517490566421922],[124,228,76,-0.11912498286970308],[124,228,77,-0.14402713438549822],[124,228,78,-0.1302424771422332],[124,228,79,-0.11681377560312367],[124,229,64,-0.08532925195446042],[124,229,65,-0.08543494200744534],[124,229,66,-0.08662455925673329],[124,229,67,-0.07996387153237224],[124,229,68,-0.07517188006887042],[124,229,69,-0.06318266753159327],[124,229,70,-0.05701898948576041],[124,229,71,-0.04667449973809637],[124,229,72,-0.042816984143698084],[124,229,73,-0.03120244931819896],[124,229,74,-0.10064745479868188],[124,229,75,-0.13463327389529844],[124,229,76,-0.1545374804463872],[124,229,77,-0.146226112380127],[124,229,78,-0.1341482982214441],[124,229,79,-0.12382638841575631],[124,230,64,-0.08640923088686761],[124,230,65,-0.0878695523575202],[124,230,66,-0.08894357836813721],[124,230,67,-0.0831805804420733],[124,230,68,-0.0759708959430807],[124,230,69,-0.06393948098281828],[124,230,70,-0.057219509960335216],[124,230,71,-0.0500483827646922],[124,230,72,-0.045611945001722984],[124,230,73,-0.03257983163142972],[124,230,74,-0.10236647786114643],[124,230,75,-0.1282377477942378],[124,230,76,-0.14816009880446024],[124,230,77,-0.14081144069019622],[124,230,78,-0.1290491004507121],[124,230,79,-0.12150016503717258],[124,231,64,-0.09500667405474361],[124,231,65,-0.09517727602909738],[124,231,66,-0.0951249175179625],[124,231,67,-0.0893865984995183],[124,231,68,-0.08104659876138617],[124,231,69,-0.0706249755715091],[124,231,70,-0.0613156185711103],[124,231,71,-0.055180061747612405],[124,231,72,-0.04893822480875819],[124,231,73,-0.03507530290789147],[124,231,74,-0.09388551567769617],[124,231,75,-0.11153042055936209],[124,231,76,-0.14684939573708727],[124,231,77,-0.13856296100550036],[124,231,78,-0.1294006946543411],[124,231,79,-0.12148850904446135],[124,232,64,-0.0954791340389234],[124,232,65,-0.09653040500619847],[124,232,66,-0.09530425864404717],[124,232,67,-0.09046817956541761],[124,232,68,-0.08224068769418522],[124,232,69,-0.07272443219649406],[124,232,70,-0.06323552438893232],[124,232,71,-0.05705254160869436],[124,232,72,-0.0487475154700823],[124,232,73,-0.036952455581896],[124,232,74,-0.08317845303500616],[124,232,75,-0.0970346573556987],[124,232,76,-0.14671629744459935],[124,232,77,-0.14123507355276446],[124,232,78,-0.13090825710696086],[124,232,79,-0.1281996038529121],[124,233,64,-0.09548754816493221],[124,233,65,-0.09904737143745199],[124,233,66,-0.09659830954973503],[124,233,67,-0.0879562050448915],[124,233,68,-0.0839830576180414],[124,233,69,-0.07235044572651511],[124,233,70,-0.06376264613904739],[124,233,71,-0.05754568014992063],[124,233,72,-0.04798708499556659],[124,233,73,-0.03821713419056921],[124,233,74,-0.07369948583370667],[124,233,75,-0.09492207238997044],[124,233,76,-0.14380093651651893],[124,233,77,-0.1482444933230444],[124,233,78,-0.13734424845887377],[124,233,79,-0.1333984203833247],[124,234,64,-0.1041865324472965],[124,234,65,-0.10742595543128844],[124,234,66,-0.10085932494955502],[124,234,67,-0.09248444626843817],[124,234,68,-0.08727186993515111],[124,234,69,-0.07621616953328247],[124,234,70,-0.06754005836070287],[124,234,71,-0.06159735977529328],[124,234,72,-0.053229222388251535],[124,234,73,-0.03742154841909934],[124,234,74,-0.05656310134023318],[124,234,75,-0.08945195194807125],[124,234,76,-0.14392922093646704],[124,234,77,-0.15906473484067715],[124,234,78,-0.1477798049795703],[124,234,79,-0.1426424239363135],[124,235,64,-0.10545355670458897],[124,235,65,-0.1077539005258123],[124,235,66,-0.10113196158289844],[124,235,67,-0.09366455143158656],[124,235,68,-0.08583464762241572],[124,235,69,-0.08003750321160757],[124,235,70,-0.06995039141300564],[124,235,71,-0.06055200641101069],[124,235,72,-0.051272148523750685],[124,235,73,-0.03618393522112598],[124,235,74,-0.02285267735516587],[124,235,75,-0.015736840627035634],[124,235,76,-0.08112754560414295],[124,235,77,-0.17055261290951987],[124,235,78,-0.1584274549129571],[124,235,79,-0.15220913705883463],[124,236,64,-0.10509044845934451],[124,236,65,-0.10897104719502433],[124,236,66,-0.11127267137375947],[124,236,67,-0.10739928732366799],[124,236,68,-0.10322893418413523],[124,236,69,-0.09972769713706445],[124,236,70,-0.0918338645810424],[124,236,71,-0.08293358278091352],[124,236,72,-0.07319111168167775],[124,236,73,-0.05815183781055529],[124,236,74,-0.04567303714232554],[124,236,75,-0.035460218915125546],[124,236,76,-0.09690908199157117],[124,236,77,-0.1799080524774756],[124,236,78,-0.16838032794943736],[124,236,79,-0.16094908807855268],[124,237,64,-0.10725868575740731],[124,237,65,-0.10943953191071279],[124,237,66,-0.10623819277647217],[124,237,67,-0.10206905407253918],[124,237,68,-0.0966854234788408],[124,237,69,-0.0917135355478774],[124,237,70,-0.08613893028842322],[124,237,71,-0.07662131214945926],[124,237,72,-0.06813907022218803],[124,237,73,-0.05388523793248712],[124,237,74,-0.04229039089231755],[124,237,75,-0.07019322539250113],[124,237,76,-0.13035004916520823],[124,237,77,-0.17804645073993303],[124,237,78,-0.17046663792108097],[124,237,79,-0.16363018331477952],[124,238,64,-0.10926996181437099],[124,238,65,-0.11176867920100392],[124,238,66,-0.10657481684857184],[124,238,67,-0.10128469076737878],[124,238,68,-0.09972375518662781],[124,238,69,-0.09326223205834233],[124,238,70,-0.08819321974205173],[124,238,71,-0.07702580907171791],[124,238,72,-0.0677269821768442],[124,238,73,-0.05536564964928989],[124,238,74,-0.043018767953371034],[124,238,75,-0.0856414760657004],[124,238,76,-0.1399996760777284],[124,238,77,-0.17582720202525695],[124,238,78,-0.16872318329445807],[124,238,79,-0.16051333470824297],[124,239,64,-0.11623071535513824],[124,239,65,-0.11735137054370809],[124,239,66,-0.11178132277074224],[124,239,67,-0.10763888680825819],[124,239,68,-0.10466699757243253],[124,239,69,-0.10013486615834649],[124,239,70,-0.09435577714078375],[124,239,71,-0.08205080939992293],[124,239,72,-0.07050515986000364],[124,239,73,-0.055030291161954195],[124,239,74,-0.04205344187635604],[124,239,75,-0.07564059540846496],[124,239,76,-0.12343276993674852],[124,239,77,-0.1715451763911374],[124,239,78,-0.16400476568235062],[124,239,79,-0.15601179175894925],[124,240,64,-0.11327004441703853],[124,240,65,-0.11317378153997952],[124,240,66,-0.110073036976716],[124,240,67,-0.10693412468327002],[124,240,68,-0.10239287243352496],[124,240,69,-0.10069942404548242],[124,240,70,-0.09367398473531537],[124,240,71,-0.08406451744731577],[124,240,72,-0.06937177622601819],[124,240,73,-0.056248256848345765],[124,240,74,-0.043035851033107295],[124,240,75,-0.06954815703754513],[124,240,76,-0.1192363913253392],[124,240,77,-0.16312557975108566],[124,240,78,-0.1619488131600197],[124,240,79,-0.15351226659550868],[124,241,64,-0.10933128379904941],[124,241,65,-0.11280334786354484],[124,241,66,-0.11050701572244725],[124,241,67,-0.10963535304616517],[124,241,68,-0.10747410014492688],[124,241,69,-0.10641898163151747],[124,241,70,-0.09742453118608257],[124,241,71,-0.08917871049951348],[124,241,72,-0.07387566804847104],[124,241,73,-0.05880381421851427],[124,241,74,-0.04488298844355902],[124,241,75,-0.036667406067375924],[124,241,76,-0.025206649515032375],[124,241,77,-0.015284149029227187],[124,241,78,-7.007040913177728E-4],[124,241,79,-0.08836817351498678],[124,242,64,-0.11234251020637448],[124,242,65,-0.1170194612760038],[124,242,66,-0.11282059261482817],[124,242,67,-0.1133173576377858],[124,242,68,-0.11186220973656932],[124,242,69,-0.10911484586059117],[124,242,70,-0.09836112338603527],[124,242,71,-0.08775653013276863],[124,242,72,-0.07576758516031704],[124,242,73,-0.06128931669778477],[124,242,74,-0.04721171448299419],[124,242,75,-0.041585503167588425],[124,242,76,-0.03140039843935104],[124,242,77,-0.017555251473763148],[124,242,78,-7.868578815360128E-4],[124,242,79,-0.07827989228538597],[124,243,64,-0.10941866790305152],[124,243,65,-0.11427518870687714],[124,243,66,-0.11419866069297219],[124,243,67,-0.11036486062594225],[124,243,68,-0.11011078163734143],[124,243,69,-0.10630736524741008],[124,243,70,-0.09616929949098688],[124,243,71,-0.08385151049551041],[124,243,72,-0.07377079148257516],[124,243,73,-0.061163769916324134],[124,243,74,-0.04839100465795035],[124,243,75,-0.040685262862833346],[124,243,76,-0.0314990804369617],[124,243,77,-0.01655983706775528],[124,243,78,0.0013988699484937528],[124,243,79,-0.07181153679263087],[124,244,64,-0.09693262715601408],[124,244,65,-0.09179991223466027],[124,244,66,-0.0853028261599548],[124,244,67,-0.07156570754480276],[124,244,68,-0.06616164580701302],[124,244,69,-0.05501164838559863],[124,244,70,-0.04254679171266705],[124,244,71,-0.027150275817963046],[124,244,72,-0.01244184579882239],[124,244,73,-3.5743826599883566E-4],[124,244,74,0.011658561634551645],[124,244,75,0.020210452040181917],[124,244,76,0.028504620226265556],[124,244,77,0.04419151512531409],[124,244,78,0.059787665670761506],[124,244,79,-0.022272969320754038],[124,245,64,-0.09698695723810824],[124,245,65,-0.09131286258413898],[124,245,66,-0.08329244381473067],[124,245,67,-0.07080759613299728],[124,245,68,-0.06604606679000427],[124,245,69,-0.055534849926922425],[124,245,70,-0.039203207508698795],[124,245,71,-0.02524506333882276],[124,245,72,-0.009648973170980776],[124,245,73,0.0026699923633175665],[124,245,74,0.01357238307187969],[124,245,75,0.021843685701242926],[124,245,76,0.030560023253758395],[124,245,77,0.04568858658447969],[124,245,78,0.06176495427553977],[124,245,79,-0.007069191941137989],[124,246,64,-0.09863154967670126],[124,246,65,-0.08982452520658962],[124,246,66,-0.08063283925652319],[124,246,67,-0.06750932308098458],[124,246,68,-0.062342685234661646],[124,246,69,-0.05222154266136826],[124,246,70,-0.03440430896997494],[124,246,71,-0.021487666485982923],[124,246,72,-0.007138292828313492],[124,246,73,0.007339141653450232],[124,246,74,0.01576463042727326],[124,246,75,0.025319258227449806],[124,246,76,0.03439275311099098],[124,246,77,0.046654360473432036],[124,246,78,0.06180938081489758],[124,246,79,0.009703960340279955],[124,247,64,-0.10258311839337529],[124,247,65,-0.09398877265719166],[124,247,66,-0.08138732419111866],[124,247,67,-0.06717284792409853],[124,247,68,-0.061579775603471054],[124,247,69,-0.052609227719227714],[124,247,70,-0.03426925182571787],[124,247,71,-0.0181353751481505],[124,247,72,-0.004705633104043247],[124,247,73,0.008773793449141962],[124,247,74,0.017502122512780438],[124,247,75,0.026726758859712957],[124,247,76,0.038457700887230065],[124,247,77,0.05104303903582004],[124,247,78,0.06533936199027009],[124,247,79,0.03323741975830066],[124,248,64,-0.09857530379103427],[124,248,65,-0.08777953160684732],[124,248,66,-0.07646039620935771],[124,248,67,-0.06219496551178601],[124,248,68,-0.05358445953932092],[124,248,69,-0.04699541045843683],[124,248,70,-0.03036428121656111],[124,248,71,-0.014146428211035247],[124,248,72,7.469023551122389E-5],[124,248,73,0.010462508324887057],[124,248,74,0.018717506438516468],[124,248,75,0.02957238960383965],[124,248,76,0.04051044975268256],[124,248,77,0.05317000942891724],[124,248,78,0.065955809163918],[124,248,79,0.03519166481573678],[124,249,64,-0.10448608457663236],[124,249,65,-0.08924489426983402],[124,249,66,-0.07160917219198011],[124,249,67,-0.05888723947096075],[124,249,68,-0.05037092323418192],[124,249,69,-0.04193986484107505],[124,249,70,-0.027173439553870055],[124,249,71,-0.009361590791087768],[124,249,72,0.00629905858416864],[124,249,73,0.017811727157463916],[124,249,74,0.028150302435873964],[124,249,75,0.03968089100234676],[124,249,76,0.04901340731665252],[124,249,77,0.05929848305592739],[124,249,78,0.04955748959889722],[124,249,79,-0.00980116651764222],[124,250,64,-0.10541918033511857],[124,250,65,-0.08828105652067034],[124,250,66,-0.07566570428846497],[124,250,67,-0.10086612197553643],[124,250,68,-0.08602200751887665],[124,250,69,-0.0984246126285866],[124,250,70,-0.09129594945099763],[124,250,71,-0.06367160623415583],[124,250,72,-0.03213626664972498],[124,250,73,-0.0055575474781531],[124,250,74,-0.0180759822873963],[124,250,75,-0.018624899677229197],[124,250,76,0.00414560959049546],[124,250,77,0.00876638922622583],[124,250,78,0.00968354682656166],[124,250,79,0.04206540357385986],[124,251,64,-0.10083160391181309],[124,251,65,-0.08303290829047],[124,251,66,-0.08145421545686553],[124,251,67,-0.1108487449092265],[124,251,68,-0.09997183363201534],[124,251,69,-0.11486887155925107],[124,251,70,-0.1111319589647757],[124,251,71,-0.07587509281791419],[124,251,72,-0.030749344012327817],[124,251,73,-0.004149102801674815],[124,251,74,-0.013788483854913339],[124,251,75,-0.005734532820933107],[124,251,76,0.015900831073686162],[124,251,77,0.012460216844117744],[124,251,78,0.023287838958732064],[124,251,79,0.0514321765166578],[124,252,64,-0.0950771935193716],[124,252,65,-0.07791848234612889],[124,252,66,-0.06937538805060665],[124,252,67,-0.09706190742967102],[124,252,68,-0.09669160598140089],[124,252,69,-0.11435267839478203],[124,252,70,-0.11200717756230814],[124,252,71,-0.07961537932505587],[124,252,72,-0.02889301549489765],[124,252,73,-0.007962250193130321],[124,252,74,-0.012859059252888855],[124,252,75,1.6275659199325304E-4],[124,252,76,0.023379738775687955],[124,252,77,0.0015405546634406075],[124,252,78,0.030726561551587366],[124,252,79,0.04553883566984097],[124,253,64,-0.08578403094659279],[124,253,65,-0.06919317270741093],[124,253,66,-0.05906062666892514],[124,253,67,-0.048503979813722814],[124,253,68,-0.04717224976389296],[124,253,69,-0.0653212480962759],[124,253,70,-0.07750996958860348],[124,253,71,-0.06026333154510747],[124,253,72,-0.013990891098736555],[124,253,73,-0.006275105093615806],[124,253,74,-0.02463316215501153],[124,253,75,-0.021633505827377796],[124,253,76,0.0011519077089972504],[124,253,77,-0.02881930897995162],[124,253,78,-0.017551450747324143],[124,253,79,-0.02253238086683984],[124,254,64,-0.0031402788148339467],[124,254,65,0.005998151025979642],[124,254,66,0.011528283496762576],[124,254,67,0.013931200788539433],[124,254,68,0.003090577765172787],[124,254,69,-0.030014154553162684],[124,254,70,-0.04575922621787923],[124,254,71,-0.038480641389474234],[124,254,72,0.006298813808255416],[124,254,73,0.0037097793123060593],[124,254,74,-0.017782341545822436],[124,254,75,-0.028170360185496353],[124,254,76,-0.019078024504796738],[124,254,77,-0.03838562990563538],[124,254,78,-0.04564343623492792],[124,254,79,-0.052410019282797995],[124,255,64,7.340621308214446E-4],[124,255,65,0.00943747505701148],[124,255,66,0.012294768385316956],[124,255,67,0.01328826248810372],[124,255,68,0.01573829758118158],[124,255,69,-0.024462085733135318],[124,255,70,-0.03130586738982315],[124,255,71,-0.03164176966912493],[124,255,72,0.01558586781503175],[124,255,73,0.015818014627717952],[124,255,74,-0.007970472733361489],[124,255,75,-0.02038000443919647],[124,255,76,-0.02033369534205358],[124,255,77,-0.035511422886292415],[124,255,78,-0.04825698272294743],[124,255,79,-0.053845547208911604],[124,256,64,0.00415521630078769],[124,256,65,0.012046885224772597],[124,256,66,0.013357845096043292],[124,256,67,0.014224352228347642],[124,256,68,0.018079574105823823],[124,256,69,-0.02273963613928623],[124,256,70,-0.019651426432813195],[124,256,71,-0.023884139411881528],[124,256,72,0.016314316929901485],[124,256,73,0.015231323299838975],[124,256,74,-0.0010744454432802357],[124,256,75,-0.01861813270616699],[124,256,76,-0.018613957846654122],[124,256,77,-0.036132201967369965],[124,256,78,-0.04662822650779268],[124,256,79,-0.06676070442103012],[124,257,64,0.006729400989864048],[124,257,65,0.011603153101546304],[124,257,66,0.014486374766785937],[124,257,67,0.015351593782794076],[124,257,68,0.018524137749152902],[124,257,69,-0.02666110160535961],[124,257,70,-0.024185457307871798],[124,257,71,-0.03361068492074058],[124,257,72,-0.008871813550695148],[124,257,73,-0.014007721857615243],[124,257,74,-0.020445911113017218],[124,257,75,-0.04216728875850374],[124,257,76,-0.03738891882179287],[124,257,77,-0.06559649374382506],[124,257,78,-0.08864042810565033],[124,257,79,-0.1142327172977331],[124,258,64,0.0012548773857370132],[124,258,65,0.00656423277383078],[124,258,66,0.011141898439815695],[124,258,67,0.009338466082500385],[124,258,68,0.01266545905276302],[124,258,69,0.01228469625447104],[124,258,70,0.009761564588998656],[124,258,71,0.009546605276027492],[124,258,72,0.009275673326409495],[124,258,73,0.0033219956865522876],[124,258,74,-5.625630682928612E-4],[124,258,75,-0.022506073442373695],[124,258,76,-0.0208860542659541],[124,258,77,-0.06078325643705923],[124,258,78,-0.09233998666974806],[124,258,79,-0.13670545416726637],[124,259,64,0.0030222885029238256],[124,259,65,0.005107355183316481],[124,259,66,0.010194756651246972],[124,259,67,0.006925461171756575],[124,259,68,0.010173698713465684],[124,259,69,0.011816727791942525],[124,259,70,0.0018342861710985113],[124,259,71,0.00795083434426426],[124,259,72,0.008992179189032237],[124,259,73,0.00829436246005713],[124,259,74,0.008549153398258041],[124,259,75,0.008200039815137582],[124,259,76,0.008172991810516518],[124,259,77,-0.02796118580876667],[124,259,78,-0.07005658545175093],[124,259,79,-0.13744936397675864],[124,260,64,-0.12505444856973183],[124,260,65,-0.12949481929508905],[124,260,66,-0.1297443378627301],[124,260,67,-0.13439824831965913],[124,260,68,-0.13466785251221164],[124,260,69,-0.13920881488083175],[124,260,70,-0.13680266750232817],[124,260,71,-0.13570284463850638],[124,260,72,-0.1369644927773529],[124,260,73,-0.13755409528290427],[124,260,74,-0.13928654474698413],[124,260,75,-0.13685919178200961],[124,260,76,-0.1352106577048807],[124,260,77,-0.14052838466405942],[124,260,78,-0.14483690074970806],[124,260,79,-0.15592939972499406],[124,261,64,-0.12745825384339904],[124,261,65,-0.1308386132161798],[124,261,66,-0.13175899608012445],[124,261,67,-0.13344290852632415],[124,261,68,-0.13528996519611491],[124,261,69,-0.1566806745087189],[124,261,70,-0.14529902581948903],[124,261,71,-0.13642757613553455],[124,261,72,-0.13861211407402835],[124,261,73,-0.1377966862922378],[124,261,74,-0.13848134699377782],[124,261,75,-0.13806540346848276],[124,261,76,-0.13890367023172764],[124,261,77,-0.14019879249161796],[124,261,78,-0.14642563226544061],[124,261,79,-0.15422908806728391],[124,262,64,-0.13176558973713284],[124,262,65,-0.13473400779343642],[124,262,66,-0.13557130694719297],[124,262,67,-0.1376374618777253],[124,262,68,-0.1375851118088403],[124,262,69,-0.16899075257295273],[124,262,70,-0.1611272545521315],[124,262,71,-0.14111204271298675],[124,262,72,-0.14184930126127004],[124,262,73,-0.1377674230065128],[124,262,74,-0.13945672839185752],[124,262,75,-0.14369464159139653],[124,262,76,-0.14795100868916763],[124,262,77,-0.14666835233446254],[124,262,78,-0.17025922601180188],[124,262,79,-0.17836285735147575],[124,263,64,-0.12945490617312652],[124,263,65,-0.1327059352359077],[124,263,66,-0.13538855108051884],[124,263,67,-0.13580019479231015],[124,263,68,-0.13498168167591085],[124,263,69,-0.16148571933085684],[124,263,70,-0.1633285368116048],[124,263,71,-0.14034065074639102],[124,263,72,-0.13947109234516533],[124,263,73,-0.13756102423093605],[124,263,74,-0.1387786077461603],[124,263,75,-0.1450526591856451],[124,263,76,-0.14837452886810595],[124,263,77,-0.14824073039000177],[124,263,78,-0.1695471298200582],[124,263,79,-0.1732600386605396],[124,264,64,-0.12670778382815973],[124,264,65,-0.13076252543895295],[124,264,66,-0.13349031163675665],[124,264,67,-0.13548798930318615],[124,264,68,-0.13411991550777128],[124,264,69,-0.1558297199604257],[124,264,70,-0.1671873700564016],[124,264,71,-0.14171490093031053],[124,264,72,-0.13822838638480991],[124,264,73,-0.1363540903329246],[124,264,74,-0.14277103039776107],[124,264,75,-0.15001356956904624],[124,264,76,-0.15106485392060698],[124,264,77,-0.15100572812566768],[124,264,78,-0.1696937257432239],[124,264,79,-0.17409750379120226],[124,265,64,-0.1196200089804321],[124,265,65,-0.1269769294079682],[124,265,66,-0.1320445067112807],[124,265,67,-0.1351880570250335],[124,265,68,-0.13232353353080722],[124,265,69,-0.13940226760736724],[124,265,70,-0.1569203134465991],[124,265,71,-0.1503737818579987],[124,265,72,-0.1604154799924557],[124,265,73,-0.17426961635217647],[124,265,74,-0.207802040155589],[124,265,75,-0.2087547569061638],[124,265,76,-0.2110720154383396],[124,265,77,-0.2035767275587013],[124,265,78,-0.19417797932427994],[124,265,79,-0.18459558832230422],[124,266,64,-0.12002353017208145],[124,266,65,-0.12934929001744888],[124,266,66,-0.13745494063595648],[124,266,67,-0.1400361764061618],[124,266,68,-0.1343606141539385],[124,266,69,-0.13529654381782186],[124,266,70,-0.14148120499889674],[124,266,71,-0.1400846373618474],[124,266,72,-0.14712441824271277],[124,266,73,-0.16665661883974558],[124,266,74,-0.2049747869682626],[124,266,75,-0.19861833410226967],[124,266,76,-0.19895872353209143],[124,266,77,-0.19055164681032155],[124,266,78,-0.18116434621255148],[124,266,79,-0.1710709875501514],[124,267,64,-0.12083407766669393],[124,267,65,-0.1270644075899472],[124,267,66,-0.1349363043266533],[124,267,67,-0.1370108646946162],[124,267,68,-0.1327997928957092],[124,267,69,-0.1352568118469674],[124,267,70,-0.13875133472297366],[124,267,71,-0.13931747730488656],[124,267,72,-0.147256487028268],[124,267,73,-0.16953943141430694],[124,267,74,-0.21274639765196468],[124,267,75,-0.206027969641219],[124,267,76,-0.2050649530357539],[124,267,77,-0.1957067986831551],[124,267,78,-0.1867012361559975],[124,267,79,-0.17631664650078896],[124,268,64,-0.11798517094135277],[124,268,65,-0.1285713007835412],[124,268,66,-0.13232357982556214],[124,268,67,-0.13395914852657254],[124,268,68,-0.13192088284311382],[124,268,69,-0.13756142955174],[124,268,70,-0.14053372460222663],[124,268,71,-0.1488265071733804],[124,268,72,-0.1604551177107997],[124,268,73,-0.17488619805244557],[124,268,74,-0.20552447857349876],[124,268,75,-0.20016364355748353],[124,268,76,-0.19641548932083916],[124,268,77,-0.1950968973924144],[124,268,78,-0.1852236134487525],[124,268,79,-0.1761886530771829],[124,269,64,-0.11524760666765592],[124,269,65,-0.12648638892769765],[124,269,66,-0.12924702274392774],[124,269,67,-0.13200104892970005],[124,269,68,-0.13071544605591034],[124,269,69,-0.13625817964765827],[124,269,70,-0.1415164851375129],[124,269,71,-0.1548063965294088],[124,269,72,-0.16656371406600223],[124,269,73,-0.17565070321289347],[124,269,74,-0.2021955066032033],[124,269,75,-0.20177538980966175],[124,269,76,-0.19673855864982165],[124,269,77,-0.19425686666659278],[124,269,78,-0.18624278484948986],[124,269,79,-0.1770556494461349],[124,270,64,-0.12182896027488248],[124,270,65,-0.1287084580155262],[124,270,66,-0.13107885793191154],[124,270,67,-0.13338639480949901],[124,270,68,-0.1332229605091731],[124,270,69,-0.1400850479642828],[124,270,70,-0.1446779951927551],[124,270,71,-0.1620842157043386],[124,270,72,-0.16819479167691448],[124,270,73,-0.17470802956735987],[124,270,74,-0.19948674644570885],[124,270,75,-0.20353304968178787],[124,270,76,-0.20155277416104792],[124,270,77,-0.1985104736923284],[124,270,78,-0.19266251982575652],[124,270,79,-0.1847586492694876],[124,271,64,-0.11961625461005816],[124,271,65,-0.1261410134932971],[124,271,66,-0.12614134216259282],[124,271,67,-0.13006965705254897],[124,271,68,-0.1336789076077567],[124,271,69,-0.13905709860133503],[124,271,70,-0.14233871750453772],[124,271,71,-0.16956028172914675],[124,271,72,-0.16377657136819765],[124,271,73,-0.17417908651134534],[124,271,74,-0.20125420768256436],[124,271,75,-0.20927738513260852],[124,271,76,-0.2052767769972197],[124,271,77,-0.19771247954886093],[124,271,78,-0.19401368360695215],[124,271,79,-0.18421213655771362],[124,272,64,-0.1160291412945823],[124,272,65,-0.12411502143812227],[124,272,66,-0.12344663172855225],[124,272,67,-0.12688353248317535],[124,272,68,-0.13217171496928248],[124,272,69,-0.13806751698895633],[124,272,70,-0.14159915193185968],[124,272,71,-0.1754984209002885],[124,272,72,-0.16907328034356647],[124,272,73,-0.18127271436869655],[124,272,74,-0.20101121326007565],[124,272,75,-0.2135310508208654],[124,272,76,-0.20903707162396176],[124,272,77,-0.20172580358098124],[124,272,78,-0.1958329986251838],[124,272,79,-0.18360786951010216],[124,273,64,-0.11779210857736369],[124,273,65,-0.1198524109603222],[124,273,66,-0.11667660959096035],[124,273,67,-0.11717452049996915],[124,273,68,-0.12385963545326464],[124,273,69,-0.13162999480737136],[124,273,70,-0.13124869148299295],[124,273,71,-0.13871528168930905],[124,273,72,-0.1351823778437177],[124,273,73,-0.13187110154957862],[124,273,74,-0.13001466267352077],[124,273,75,-0.12445768330911074],[124,273,76,-0.1213969783033651],[124,273,77,-0.10946238410694177],[124,273,78,-0.10508372009921904],[124,273,79,-0.09307617407502403],[124,274,64,-0.11868799853269407],[124,274,65,-0.12059519065562901],[124,274,66,-0.11724306273425891],[124,274,67,-0.12234341774632962],[124,274,68,-0.12807888726818595],[124,274,69,-0.13400345470154726],[124,274,70,-0.13433020690775127],[124,274,71,-0.13554388608899304],[124,274,72,-0.1363039967449358],[124,274,73,-0.13519885343022753],[124,274,74,-0.13276383838648936],[124,274,75,-0.12758285889505805],[124,274,76,-0.12016423489888259],[124,274,77,-0.11134270957496381],[124,274,78,-0.10454359200530833],[124,274,79,-0.0948400866023979],[124,275,64,-0.11427180998134229],[124,275,65,-0.11713885554275505],[124,275,66,-0.11758869251853442],[124,275,67,-0.12212536007800637],[124,275,68,-0.1278656705382349],[124,275,69,-0.13399137266368422],[124,275,70,-0.13319346539156862],[124,275,71,-0.13444739955174032],[124,275,72,-0.13964982569310902],[124,275,73,-0.13993971605090275],[124,275,74,-0.13690353827512936],[124,275,75,-0.13237854847917135],[124,275,76,-0.12472642023011637],[124,275,77,-0.11823448280197107],[124,275,78,-0.10912769408191586],[124,275,79,-0.10021407283580028],[124,276,64,-0.10385696137908289],[124,276,65,-0.10839449209229912],[124,276,66,-0.11110309207760788],[124,276,67,-0.11918478914089645],[124,276,68,-0.12841584364622316],[124,276,69,-0.13301352510745165],[124,276,70,-0.13544110025070477],[124,276,71,-0.13635305777894813],[124,276,72,-0.1430342011903718],[124,276,73,-0.14354080108064826],[124,276,74,-0.13911836769720726],[124,276,75,-0.1359199156010939],[124,276,76,-0.12863703942486707],[124,276,77,-0.11973256855524053],[124,276,78,-0.11074528785367799],[124,276,79,-0.10010088604191467],[124,277,64,-0.10199682881736392],[124,277,65,-0.10608611755400407],[124,277,66,-0.11266044894712685],[124,277,67,-0.12318736703255738],[124,277,68,-0.134656837722636],[124,277,69,-0.13892299974026423],[124,277,70,-0.14081703842473173],[124,277,71,-0.14499248399696046],[124,277,72,-0.1519932106255921],[124,277,73,-0.14820995643499546],[124,277,74,-0.14067470416972913],[124,277,75,-0.13791650753545615],[124,277,76,-0.1285285901304328],[124,277,77,-0.12067306705422384],[124,277,78,-0.10847647156154158],[124,277,79,-0.1000409606843762],[124,278,64,-0.10660743371161818],[124,278,65,-0.10764382294200815],[124,278,66,-0.11540565936755945],[124,278,67,-0.1260692394825172],[124,278,68,-0.13681722641444105],[124,278,69,-0.13899691767770864],[124,278,70,-0.14078262847492207],[124,278,71,-0.1459911363060461],[124,278,72,-0.15632569102554988],[124,278,73,-0.15184062512774293],[124,278,74,-0.1443231094820592],[124,278,75,-0.14138882785324888],[124,278,76,-0.13402773230226137],[124,278,77,-0.12450983668538293],[124,278,78,-0.1140590924807339],[124,278,79,-0.10577762926015055],[124,279,64,-0.10599468749930877],[124,279,65,-0.10598556068043842],[124,279,66,-0.11457289542597303],[124,279,67,-0.12328649562490682],[124,279,68,-0.1344387385650661],[124,279,69,-0.138756955949642],[124,279,70,-0.13869209140201447],[124,279,71,-0.14572413171690038],[124,279,72,-0.1558420792900513],[124,279,73,-0.1543969633766422],[124,279,74,-0.14721467008753383],[124,279,75,-0.14276294639329457],[124,279,76,-0.1348426000311871],[124,279,77,-0.12453902677783879],[124,279,78,-0.11414030601751227],[124,279,79,-0.10454581481054895],[124,280,64,-0.10265605611250164],[124,280,65,-0.10587428763045487],[124,280,66,-0.11390926219070265],[124,280,67,-0.12209149772437058],[124,280,68,-0.1340167212556076],[124,280,69,-0.1369732138182844],[124,280,70,-0.13532856300355683],[124,280,71,-0.14256429082581268],[124,280,72,-0.15435273593677337],[124,280,73,-0.15482732455074252],[124,280,74,-0.14818628703872555],[124,280,75,-0.145069573646078],[124,280,76,-0.13568463224620483],[124,280,77,-0.12652384654192608],[124,280,78,-0.11292581983877001],[124,280,79,-0.1029466698340972],[124,281,64,-0.10018420526300412],[124,281,65,-0.10524188408012977],[124,281,66,-0.11004000565277167],[124,281,67,-0.12043480363140142],[124,281,68,-0.13102776252734435],[124,281,69,-0.13591824949900816],[124,281,70,-0.13366588547778957],[124,281,71,-0.13701916080135035],[124,281,72,-0.15662387560313806],[124,281,73,-0.16226602408640778],[124,281,74,-0.15973810652790255],[124,281,75,-0.15377049403152349],[124,281,76,-0.14524582665566985],[124,281,77,-0.13275953284302403],[124,281,78,-0.11955106994583473],[124,281,79,-0.10846316875500525],[124,282,64,-0.10325354703166634],[124,282,65,-0.10687806503804606],[124,282,66,-0.11026365961974229],[124,282,67,-0.12158688784964963],[124,282,68,-0.13139869757158126],[124,282,69,-0.13458937220146],[124,282,70,-0.1349764880399996],[124,282,71,-0.1349742723577178],[124,282,72,-0.14706277820675173],[124,282,73,-0.1479542074968254],[124,282,74,-0.1456823930346826],[124,282,75,-0.14260502559079194],[124,282,76,-0.13473277548261264],[124,282,77,-0.12194364966321469],[124,282,78,-0.1067042740108641],[124,282,79,-0.09409115657106631],[124,283,64,-0.10318827565143451],[124,283,65,-0.10670967621902522],[124,283,66,-0.10818869324008573],[124,283,67,-0.1207292126587909],[124,283,68,-0.12828992267552128],[124,283,69,-0.1308086644885119],[124,283,70,-0.13383520576632468],[124,283,71,-0.13599531705265022],[124,283,72,-0.15147419912610896],[124,283,73,-0.1534854248319429],[124,283,74,-0.1531205607961828],[124,283,75,-0.14905611899566928],[124,283,76,-0.1399295306782561],[124,283,77,-0.1266760740354832],[124,283,78,-0.10861822901740642],[124,283,79,-0.09549190415740472],[124,284,64,-0.11945194692860135],[124,284,65,-0.1212559057118283],[124,284,66,-0.12240019139245864],[124,284,67,-0.13148826592989366],[124,284,68,-0.13308324110483372],[124,284,69,-0.13588166268704183],[124,284,70,-0.13741750417983045],[124,284,71,-0.1392151029704157],[124,284,72,-0.1582248287887337],[124,284,73,-0.15936417368582936],[124,284,74,-0.1594884292768161],[124,284,75,-0.15358927632362596],[124,284,76,-0.14497122704225696],[124,284,77,-0.13102944157817661],[124,284,78,-0.11645510123701355],[124,284,79,-0.10109544994989467],[124,285,64,-0.11445977230509566],[124,285,65,-0.11422381521953988],[124,285,66,-0.11267839022859097],[124,285,67,-0.11839339939906415],[124,285,68,-0.12340107220546434],[124,285,69,-0.12646608137241047],[124,285,70,-0.12647355162943485],[124,285,71,-0.1313754732531197],[124,285,72,-0.155847067911691],[124,285,73,-0.16006620347834377],[124,285,74,-0.15810349562910653],[124,285,75,-0.1522233566967259],[124,285,76,-0.142964441849176],[124,285,77,-0.1289368445993179],[124,285,78,-0.11608478646470113],[124,285,79,-0.101163216921796],[124,286,64,-0.11345707657029502],[124,286,65,-0.1131173606774083],[124,286,66,-0.11398646791192955],[124,286,67,-0.1190645779490239],[124,286,68,-0.12339090207689513],[124,286,69,-0.1275532231268896],[124,286,70,-0.12682992123201964],[124,286,71,-0.13223079669512067],[124,286,72,-0.1564177378706535],[124,286,73,-0.16351748825159085],[124,286,74,-0.16113055705653453],[124,286,75,-0.15189378987727928],[124,286,76,-0.14260321767401282],[124,286,77,-0.1258427283015325],[124,286,78,-0.11708797394984533],[124,286,79,-0.10391222247753765],[124,287,64,-0.11246768343235682],[124,287,65,-0.11120409701136519],[124,287,66,-0.1131531921400859],[124,287,67,-0.11836437937379256],[124,287,68,-0.12170386752391706],[124,287,69,-0.12637629341007797],[124,287,70,-0.12601785770596888],[124,287,71,-0.1314120851408993],[124,287,72,-0.1562148249908102],[124,287,73,-0.1657457258594426],[124,287,74,-0.15879562668457667],[124,287,75,-0.1509790996065141],[124,287,76,-0.13825586780338162],[124,287,77,-0.12291471515498964],[124,287,78,-0.11330285244066104],[124,287,79,-0.10210177203186202],[124,288,64,-0.11592321816490882],[124,288,65,-0.11314490429174359],[124,288,66,-0.11254107063822363],[124,288,67,-0.11652116470870846],[124,288,68,-0.12141571320044195],[124,288,69,-0.12381862078306902],[124,288,70,-0.12504837738866237],[124,288,71,-0.12763605565614],[124,288,72,-0.15537383814607947],[124,288,73,-0.16618538051356185],[124,288,74,-0.15596111760904136],[124,288,75,-0.14818987409014225],[124,288,76,-0.13585127180466836],[124,288,77,-0.12249989910579945],[124,288,78,-0.11403134031032938],[124,288,79,-0.10199816790395372],[124,289,64,-0.12197697767546196],[124,289,65,-0.12059207240620093],[124,289,66,-0.11959354677751438],[124,289,67,-0.12716208127228087],[124,289,68,-0.13187672435576844],[124,289,69,-0.1340538232117487],[124,289,70,-0.1318611847364265],[124,289,71,-0.1275650137329194],[124,289,72,-0.15666403590066885],[124,289,73,-0.1729590455552957],[124,289,74,-0.16216674898156563],[124,289,75,-0.15360516794830648],[124,289,76,-0.14330325197275368],[124,289,77,-0.127868934600639],[124,289,78,-0.118721809304915],[124,289,79,-0.1064498334489351],[124,290,64,-0.12775931697453188],[124,290,65,-0.12468821203300687],[124,290,66,-0.1252958014702822],[124,290,67,-0.13188082088917233],[124,290,68,-0.1343754576455743],[124,290,69,-0.13670282076123957],[124,290,70,-0.13317139610167353],[124,290,71,-0.1301393786092307],[124,290,72,-0.14326741023881934],[124,290,73,-0.16748042499756619],[124,290,74,-0.1646229569787225],[124,290,75,-0.15755264989858955],[124,290,76,-0.14944480050302356],[124,290,77,-0.13568634764124005],[124,290,78,-0.12597778611614358],[124,290,79,-0.1122779460842095],[124,291,64,-0.12832212073821705],[124,291,65,-0.12790251647937842],[124,291,66,-0.12574163762135654],[124,291,67,-0.13066964952139157],[124,291,68,-0.132276717115281],[124,291,69,-0.13535851536866866],[124,291,70,-0.13247590948418264],[124,291,71,-0.12761683606887486],[124,291,72,-0.14595517815228784],[124,291,73,-0.1711945881297896],[124,291,74,-0.16609611266383562],[124,291,75,-0.1590615768928711],[124,291,76,-0.15166089538801933],[124,291,77,-0.1381691076383752],[124,291,78,-0.12921160265169515],[124,291,79,-0.11444537508773686],[124,292,64,-0.09224010927487941],[124,292,65,-0.08707748876285154],[124,292,66,-0.08134155956467914],[124,292,67,-0.08316664934936574],[124,292,68,-0.08553300936459515],[124,292,69,-0.0859568304772834],[124,292,70,-0.08152653965644166],[124,292,71,-0.07617519190212482],[124,292,72,-0.1067995789192812],[124,292,73,-0.1433742512446446],[124,292,74,-0.13969563595429896],[124,292,75,-0.1322014556913832],[124,292,76,-0.1253296099148235],[124,292,77,-0.11383674782870445],[124,292,78,-0.10072329045976074],[124,292,79,-0.08348010714403199],[124,293,64,-0.0936463864030529],[124,293,65,-0.08669361693382086],[124,293,66,-0.08021944436047533],[124,293,67,-0.08082901843374726],[124,293,68,-0.08192970691284099],[124,293,69,-0.08044594897167501],[124,293,70,-0.07922981034564934],[124,293,71,-0.07665326603222483],[124,293,72,-0.10673834927316482],[124,293,73,-0.13838367673261331],[124,293,74,-0.13292837953951672],[124,293,75,-0.126896473162922],[124,293,76,-0.11765440634279611],[124,293,77,-0.10945857918216975],[124,293,78,-0.09200415865087118],[124,293,79,-0.075792617426203],[124,294,64,-0.09527902822403572],[124,294,65,-0.08825146385469074],[124,294,66,-0.07879009709966006],[124,294,67,-0.07868534779233269],[124,294,68,-0.07790516524779359],[124,294,69,-0.07519922944224092],[124,294,70,-0.07305301948113552],[124,294,71,-0.07233666760170161],[124,294,72,-0.10903917923023587],[124,294,73,-0.13778856789702887],[124,294,74,-0.13197011329654737],[124,294,75,-0.11973480441248563],[124,294,76,-0.10710586404474828],[124,294,77,-0.09776314455919008],[124,294,78,-0.08185853706356998],[124,294,79,-0.0636775645334357],[124,295,64,-0.09477652230774866],[124,295,65,-0.08852028091872491],[124,295,66,-0.0778697813921558],[124,295,67,-0.07863721499137988],[124,295,68,-0.07409287526728842],[124,295,69,-0.07245521471395026],[124,295,70,-0.06971270528665519],[124,295,71,-0.06770211378576318],[124,295,72,-0.08818863349330847],[124,295,73,-0.10505277386836104],[124,295,74,-0.1117888250402786],[124,295,75,-0.10645414016484758],[124,295,76,-0.0993849537300123],[124,295,77,-0.08385698332382088],[124,295,78,-0.0642750606956734],[124,295,79,-0.05303342309020912],[124,296,64,-0.0931637297079162],[124,296,65,-0.09018659691727254],[124,296,66,-0.0804141077431795],[124,296,67,-0.0776955500679902],[124,296,68,-0.07192832455057317],[124,296,69,-0.06945356733221725],[124,296,70,-0.06499310048546017],[124,296,71,-0.06332561749487199],[124,296,72,-0.08127364975788959],[124,296,73,-0.09900271967213757],[124,296,74,-0.1053876412031249],[124,296,75,-0.10092326913536684],[124,296,76,-0.09531708225000855],[124,296,77,-0.07684701911638431],[124,296,78,-0.05782423550760278],[124,296,79,-0.04620664322251829],[124,297,64,-0.09476556182894683],[124,297,65,-0.08964350185470196],[124,297,66,-0.08036431282025976],[124,297,67,-0.07140609818358394],[124,297,68,-0.06537824643819728],[124,297,69,-0.06271869808100361],[124,297,70,-0.059432471623294104],[124,297,71,-0.06059275663748749],[124,297,72,-0.06962694424496223],[124,297,73,-0.09367214676473375],[124,297,74,-0.10374060055409154],[124,297,75,-0.09953180554401929],[124,297,76,-0.09321942506511421],[124,297,77,-0.0770559365354842],[124,297,78,-0.06053977983602321],[124,297,79,-0.049336840095051904],[124,298,64,-0.10016844371183468],[124,298,65,-0.09245258417435695],[124,298,66,-0.08119439557458287],[124,298,67,-0.07322731547541166],[124,298,68,-0.06835776981298092],[124,298,69,-0.06612269795650952],[124,298,70,-0.06212707729431117],[124,298,71,-0.062176008390805074],[124,298,72,-0.06774420255597637],[124,298,73,-0.07202370415792633],[124,298,74,-0.08690204227754475],[124,298,75,-0.08327112462392097],[124,298,76,-0.074972969291799],[124,298,77,-0.06827511557538356],[124,298,78,-0.05762805439648307],[124,298,79,-0.04943713965491896],[124,299,64,-0.10086259182587393],[124,299,65,-0.08930688072762394],[124,299,66,-0.07911383981545811],[124,299,67,-0.07044155009435173],[124,299,68,-0.06804031645527625],[124,299,69,-0.06533254759807741],[124,299,70,-0.06408921417758345],[124,299,71,-0.0599791805963401],[124,299,72,-0.06435721140341744],[124,299,73,-0.06405335368105844],[124,299,74,-0.07991364909861776],[124,299,75,-0.08025576013018959],[124,299,76,-0.07339908121736399],[124,299,77,-0.06481255331975032],[124,299,78,-0.05568323335920197],[124,299,79,-0.04849891760783533],[124,300,64,-0.10319819205507133],[124,300,65,-0.09331601533572849],[124,300,66,-0.08479846789958488],[124,300,67,-0.07746660450699176],[124,300,68,-0.07495902575242552],[124,300,69,-0.07124534259031237],[124,300,70,-0.06945299483800876],[124,300,71,-0.06525915226793998],[124,300,72,-0.08120863275896548],[124,300,73,-0.088431536122507],[124,300,74,-0.08734268801349895],[124,300,75,-0.07642650761655789],[124,300,76,-0.06555385559875879],[124,300,77,-0.05019543970390331],[124,300,78,-0.04090692209613175],[124,300,79,-0.035206628528358735],[124,301,64,-0.0992330682079833],[124,301,65,-0.0936044014474783],[124,301,66,-0.08513587613230382],[124,301,67,-0.07823083280856313],[124,301,68,-0.0722278693249461],[124,301,69,-0.06853524672190775],[124,301,70,-0.06710852635478176],[124,301,71,-0.06324799960306986],[124,301,72,-0.07745569316054632],[124,301,73,-0.081901881678128],[124,301,74,-0.08164644533991311],[124,301,75,-0.07197998815840995],[124,301,76,-0.0625978842443749],[124,301,77,-0.0497212077594062],[124,301,78,-0.035795632253108715],[124,301,79,-0.02940244021776088],[124,302,64,-0.09484897781206633],[124,302,65,-0.09035978421649557],[124,302,66,-0.08237963023794154],[124,302,67,-0.07475979284645662],[124,302,68,-0.0671206707758906],[124,302,69,-0.06272295766906326],[124,302,70,-0.060607945917245123],[124,302,71,-0.05863208278775316],[124,302,72,-0.0695912143455095],[124,302,73,-0.07317230920098873],[124,302,74,-0.07402528553583348],[124,302,75,-0.06968332559824704],[124,302,76,-0.06210665777717908],[124,302,77,-0.050410001372739294],[124,302,78,-0.036505404853384466],[124,302,79,-0.029821656850640837],[124,303,64,-0.09216114300123032],[124,303,65,-0.08668945215605188],[124,303,66,-0.07889765206045773],[124,303,67,-0.0737909241561171],[124,303,68,-0.06647747693359249],[124,303,69,-0.06237706478317726],[124,303,70,-0.058662725787984135],[124,303,71,-0.05626498115368132],[124,303,72,-0.0691950416274967],[124,303,73,-0.07162124486345268],[124,303,74,-0.07159955032631628],[124,303,75,-0.0683931416570027],[124,303,76,-0.0643113203825446],[124,303,77,-0.052472985778850484],[124,303,78,-0.037582656492321155],[124,303,79,-0.024867836949085516],[124,304,64,-0.09171116457013168],[124,304,65,-0.0832769470138357],[124,304,66,-0.07678036541359315],[124,304,67,-0.072779309479395],[124,304,68,-0.06664732970028031],[124,304,69,-0.06202714361384878],[124,304,70,-0.05690295620159668],[124,304,71,-0.05433748394174166],[124,304,72,-0.06336336798339524],[124,304,73,-0.06512936869229546],[124,304,74,-0.0646672863158283],[124,304,75,-0.0618734316683429],[124,304,76,-0.056099018911679066],[124,304,77,-0.0486305975267871],[124,304,78,-0.03595246115707501],[124,304,79,-0.020197321845739045],[124,305,64,-0.08848489125268066],[124,305,65,-0.08293298037201617],[124,305,66,-0.07663244021449397],[124,305,67,-0.07153714132951136],[124,305,68,-0.0642045387777116],[124,305,69,-0.059182111815626263],[124,305,70,-0.05567435037657062],[124,305,71,-0.05109640105053301],[124,305,72,-0.05574578923016435],[124,305,73,-0.06115826363889365],[124,305,74,-0.06017283091144689],[124,305,75,-0.05913405790968188],[124,305,76,-0.05479121145895151],[124,305,77,-0.05226986794925401],[124,305,78,-0.0360430340248977],[124,305,79,-0.01877470385120429],[124,306,64,-0.08513206037687705],[124,306,65,-0.08345906634996565],[124,306,66,-0.08001786592414846],[124,306,67,-0.07130729058124105],[124,306,68,-0.06450382417546684],[124,306,69,-0.06006602860540661],[124,306,70,-0.05388333620840596],[124,306,71,-0.04891205544079166],[124,306,72,-0.047557536570360104],[124,306,73,-0.04909402912086011],[124,306,74,-0.050176684367632306],[124,306,75,-0.05054504590267538],[124,306,76,-0.044798895383734993],[124,306,77,-0.04122547216954306],[124,306,78,-0.025187530632719463],[124,306,79,-0.009114560025899542],[124,307,64,-0.08255166929334096],[124,307,65,-0.07912297951945713],[124,307,66,-0.07705220645706017],[124,307,67,-0.06774682640336886],[124,307,68,-0.0609717669530309],[124,307,69,-0.05803035598781063],[124,307,70,-0.05140943939174088],[124,307,71,-0.04725410621950446],[124,307,72,-0.04418042057047618],[124,307,73,-0.03926498780092447],[124,307,74,-0.0414245097833968],[124,307,75,-0.04755685589856723],[124,307,76,-0.0457760627574196],[124,307,77,-0.0405892862703416],[124,307,78,-0.027078445422055303],[124,307,79,-0.009490646909810215],[124,308,64,-0.06459389039025447],[124,308,65,-0.06314522996610575],[124,308,66,-0.06380827221725184],[124,308,67,-0.058538648489806194],[124,308,68,-0.05445163330718841],[124,308,69,-0.05482969129764255],[124,308,70,-0.05106447178397926],[124,308,71,-0.05241275126105163],[124,308,72,-0.052659799165485036],[124,308,73,-0.048093800578858065],[124,308,74,-0.04459142829372952],[124,308,75,-0.051680364561643787],[124,308,76,-0.048280028449530006],[124,308,77,-0.03921078755608994],[124,308,78,-0.024348795792868836],[124,308,79,-0.01018515849834208],[124,309,64,-0.06033392149380774],[124,309,65,-0.06121737304953656],[124,309,66,-0.06197131122869268],[124,309,67,-0.05641878910726143],[124,309,68,-0.05132071798106065],[124,309,69,-0.05269104872034826],[124,309,70,-0.049695586839928335],[124,309,71,-0.051406412107674326],[124,309,72,-0.049584317427902536],[124,309,73,-0.04814962634999166],[124,309,74,-0.04488964831317996],[124,309,75,-0.03771383684392126],[124,309,76,-0.019331816284879257],[124,309,77,-0.0010036487285877936],[124,309,78,0.011745772974927508],[124,309,79,0.026135986069500232],[124,310,64,-0.05409305571254838],[124,310,65,-0.05467205654381249],[124,310,66,-0.05278101566246092],[124,310,67,-0.04808235850634657],[124,310,68,-0.04444206923616996],[124,310,69,-0.04593296502252406],[124,310,70,-0.0442727284552446],[124,310,71,-0.044257464139481825],[124,310,72,-0.03943957722419181],[124,310,73,-0.04038102161225614],[124,310,74,-0.03796739208550627],[124,310,75,-0.03000854394534716],[124,310,76,-0.011618061012259664],[124,310,77,0.006515018949977695],[124,310,78,0.018987860098333434],[124,310,79,0.03567032960883966],[124,311,64,-0.05089304080265543],[124,311,65,-0.04975364072348522],[124,311,66,-0.049442703922460224],[124,311,67,-0.04333900682472455],[124,311,68,-0.04223028388658749],[124,311,69,-0.04540007549078119],[124,311,70,-0.04317684021895424],[124,311,71,-0.04220149818870235],[124,311,72,-0.03784758129025373],[124,311,73,-0.035299057435527914],[124,311,74,-0.03470044265527786],[124,311,75,-0.026464052666213607],[124,311,76,-0.009226723681802294],[124,311,77,0.0077130213845862175],[124,311,78,0.0238652015852564],[124,311,79,0.03520365648874608],[124,312,64,-0.04355260735347831],[124,312,65,-0.04348399162162189],[124,312,66,-0.04166678113734934],[124,312,67,-0.03637805023456167],[124,312,68,-0.036237298917140795],[124,312,69,-0.039422306962130754],[124,312,70,-0.03764939976802009],[124,312,71,-0.035081928970763274],[124,312,72,-0.02895311874791448],[124,312,73,-0.021968055923124633],[124,312,74,-0.019305400428514724],[124,312,75,-0.017494842953362868],[124,312,76,-0.0052495688692928595],[124,312,77,0.009367984597468463],[124,312,78,0.024733082005423505],[124,312,79,0.03186330893661971],[124,313,64,-0.04134826456438542],[124,313,65,-0.04076010843060829],[124,313,66,-0.0386276296577933],[124,313,67,-0.03588328548136914],[124,313,68,-0.033458584189818424],[124,313,69,-0.03693938295176835],[124,313,70,-0.03408972588086469],[124,313,71,-0.03217482607368784],[124,313,72,-0.0293211264361342],[124,313,73,-0.019914030263216462],[124,313,74,-0.016127703174584326],[124,313,75,-0.016901573859333347],[124,313,76,-0.004752215524652241],[124,313,77,0.009628445265929899],[124,313,78,0.023565898036109298],[124,313,79,0.02491685789624648],[124,314,64,-0.042793788605057365],[124,314,65,-0.04075168526792053],[124,314,66,-0.04047843535052287],[124,314,67,-0.038251434086463434],[124,314,68,-0.03441585380955428],[124,314,69,-0.036367338838798585],[124,314,70,-0.03340425129224789],[124,314,71,-0.031543717217137876],[124,314,72,-0.027592657451756805],[124,314,73,-0.021176284651722638],[124,314,74,-0.016777751994381945],[124,314,75,-0.017076908604364574],[124,314,76,-0.005570116302999336],[124,314,77,0.009316544286641162],[124,314,78,0.02071474325455596],[124,314,79,0.01946070700317773],[124,315,64,-0.044562531215106116],[124,315,65,-0.039419748332081186],[124,315,66,-0.03645646825667703],[124,315,67,-0.035503962064129674],[124,315,68,-0.03378773492848665],[124,315,69,-0.03151285679335643],[124,315,70,-0.028016993589872682],[124,315,71,-0.02738641542519145],[124,315,72,-0.025224088186054525],[124,315,73,-0.018918966710453053],[124,315,74,-0.014023042667514266],[124,315,75,-0.013320792919463392],[124,315,76,-0.0037612224748951213],[124,315,77,0.014717200855543448],[124,315,78,0.017198097383672832],[124,315,79,0.023006527726774084],[124,316,64,-0.0497571069481904],[124,316,65,-0.045978085047286954],[124,316,66,-0.039513779334713436],[124,316,67,-0.03738130170222882],[124,316,68,-0.03391330337214524],[124,316,69,-0.02789524760526718],[124,316,70,-0.02612674326801874],[124,316,71,-0.022633591563774452],[124,316,72,-0.021254505020388254],[124,316,73,-0.01780270436210217],[124,316,74,-0.014683334243598814],[124,316,75,-0.013011694381016459],[124,316,76,-0.006707147730993387],[124,316,77,0.010424764057661594],[124,316,78,0.014738063561353577],[124,316,79,0.022903192070451106],[124,317,64,-0.04973487099932415],[124,317,65,-0.04495817209389172],[124,317,66,-0.03788856978462436],[124,317,67,-0.03473855840043187],[124,317,68,-0.03010801152024302],[124,317,69,-0.024207643960771172],[124,317,70,-0.02072877524612235],[124,317,71,-0.01661235459835969],[124,317,72,-0.01672886631326162],[124,317,73,-0.016700261073171047],[124,317,74,-0.014319447478967282],[124,317,75,-0.015031146451160743],[124,317,76,-0.010664032217159754],[124,317,77,0.006024452689438124],[124,317,78,0.013712664634902484],[124,317,79,0.01896830205113624],[124,318,64,-0.04541590532775544],[124,318,65,-0.038388890821518945],[124,318,66,-0.028546154932896473],[124,318,67,-0.023575739360362905],[124,318,68,-0.02015921646754601],[124,318,69,-0.015790999946947104],[124,318,70,-0.008088455094046557],[124,318,71,-0.007100023705496533],[124,318,72,-0.009000891617718887],[124,318,73,-0.009510579222605162],[124,318,74,-0.00562349655025958],[124,318,75,-0.007759097968060097],[124,318,76,-0.006899148205183531],[124,318,77,0.004697498762841021],[124,318,78,0.014848165107442947],[124,318,79,0.022234923278176014],[124,319,64,-0.047842705465781454],[124,319,65,-0.03576856269443862],[124,319,66,-0.025125217356458715],[124,319,67,-0.021657693427737504],[124,319,68,-0.01621553497870372],[124,319,69,-0.011161007305158288],[124,319,70,-0.006194513064519541],[124,319,71,-0.006997827053712644],[124,319,72,-0.008194797460171696],[124,319,73,-0.009037223417858148],[124,319,74,-0.00854868808275229],[124,319,75,-0.00969543728982633],[124,319,76,-0.006095980013409487],[124,319,77,0.0020382511214119634],[124,319,78,0.014125888230117976],[124,319,79,0.021670781113700348],[125,-64,64,-0.28363079239497874],[125,-64,65,-0.3371728081228682],[125,-64,66,-0.41416889346429947],[125,-64,67,-0.4100764772982289],[125,-64,68,-0.39969146433279246],[125,-64,69,-0.39051256040320803],[125,-64,70,-0.3845827202543688],[125,-64,71,-0.37754016401860174],[125,-64,72,-0.3670418089947653],[125,-64,73,-0.357703561246941],[125,-64,74,-0.3542561560188833],[125,-64,75,-0.3509877305276111],[125,-64,76,-0.34898948315872047],[125,-64,77,-0.345459066756749],[125,-64,78,-0.2844954461408138],[125,-64,79,-0.26419662439422376],[125,-63,64,-0.22824773033573106],[125,-63,65,-0.2840043038610879],[125,-63,66,-0.36932796482178],[125,-63,67,-0.4147697309259331],[125,-63,68,-0.4053893289358697],[125,-63,69,-0.39559467821854416],[125,-63,70,-0.3872748462029891],[125,-63,71,-0.3803629793473221],[125,-63,72,-0.3677451946302019],[125,-63,73,-0.3589059680004573],[125,-63,74,-0.35616890135010904],[125,-63,75,-0.35190931745199827],[125,-63,76,-0.34584133555877977],[125,-63,77,-0.32520150453038615],[125,-63,78,-0.24345920543458272],[125,-63,79,-0.2259212033672996],[125,-62,64,-0.22306214870184646],[125,-62,65,-0.29135384219533306],[125,-62,66,-0.3627213984747364],[125,-62,67,-0.4136021899065712],[125,-62,68,-0.4039340112135157],[125,-62,69,-0.39264265758795514],[125,-62,70,-0.3847157258145571],[125,-62,71,-0.3745902853311225],[125,-62,72,-0.36326378037209217],[125,-62,73,-0.3574716223032635],[125,-62,74,-0.35249026583806153],[125,-62,75,-0.34603238369830386],[125,-62,76,-0.338850253247564],[125,-62,77,-0.3228655302235072],[125,-62,78,-0.24879280868901762],[125,-62,79,-0.24584868067029403],[125,-61,64,-0.30832040188207366],[125,-61,65,-0.35799107642535977],[125,-61,66,-0.3649563953002746],[125,-61,67,-0.4141362379789944],[125,-61,68,-0.4051480539352213],[125,-61,69,-0.3959826614488412],[125,-61,70,-0.38735584068036794],[125,-61,71,-0.3757901778399766],[125,-61,72,-0.36381802755229137],[125,-61,73,-0.3581914487521643],[125,-61,74,-0.35276141700877184],[125,-61,75,-0.34372279348380524],[125,-61,76,-0.33548716950600277],[125,-61,77,-0.32529714616550814],[125,-61,78,-0.3048191616078433],[125,-61,79,-0.33011828355472844],[125,-60,64,-0.31091015454667026],[125,-60,65,-0.330698943767754],[125,-60,66,-0.34001462725971504],[125,-60,67,-0.40191072502421693],[125,-60,68,-0.40110801522438433],[125,-60,69,-0.3893502426484582],[125,-60,70,-0.3797828107909196],[125,-60,71,-0.3675675481533527],[125,-60,72,-0.354642700618303],[125,-60,73,-0.3483648024791409],[125,-60,74,-0.34215941923224263],[125,-60,75,-0.33358914747338425],[125,-60,76,-0.3242278175973463],[125,-60,77,-0.31387650870820394],[125,-60,78,-0.29856924126029133],[125,-60,79,-0.3198376588728534],[125,-59,64,-0.41074985541102504],[125,-59,65,-0.40254944089110234],[125,-59,66,-0.4004475169208703],[125,-59,67,-0.39568153341105883],[125,-59,68,-0.3852233424728998],[125,-59,69,-0.3742815198944549],[125,-59,70,-0.36428150501549866],[125,-59,71,-0.3514963520118476],[125,-59,72,-0.34225069003684505],[125,-59,73,-0.33687516906947496],[125,-59,74,-0.3289056545370567],[125,-59,75,-0.3219411544012692],[125,-59,76,-0.31322252413623414],[125,-59,77,-0.30448012685952214],[125,-59,78,-0.30491490821177253],[125,-59,79,-0.3075305981038125],[125,-58,64,-0.40920902223644023],[125,-58,65,-0.40086457322422153],[125,-58,66,-0.3975416046209136],[125,-58,67,-0.3926910046012027],[125,-58,68,-0.38099885954832285],[125,-58,69,-0.36823353775482615],[125,-58,70,-0.35686387506112016],[125,-58,71,-0.34747037757097066],[125,-58,72,-0.33791837948428205],[125,-58,73,-0.32959914617401603],[125,-58,74,-0.32343397917877864],[125,-58,75,-0.3168886627316946],[125,-58,76,-0.30635197781515805],[125,-58,77,-0.2986356100112279],[125,-58,78,-0.2993453559994959],[125,-58,79,-0.29884139063398807],[125,-57,64,-0.4138200188408163],[125,-57,65,-0.403015955563173],[125,-57,66,-0.39589338047979755],[125,-57,67,-0.3904816681325105],[125,-57,68,-0.3776834799896295],[125,-57,69,-0.36683571253976327],[125,-57,70,-0.3558140606294491],[125,-57,71,-0.34546494482288986],[125,-57,72,-0.3329065628853493],[125,-57,73,-0.32631780248614484],[125,-57,74,-0.31883486681349404],[125,-57,75,-0.3083704131221663],[125,-57,76,-0.29870038304702207],[125,-57,77,-0.2911336235598984],[125,-57,78,-0.29223485782910247],[125,-57,79,-0.2909772868903149],[125,-56,64,-0.41129168496553004],[125,-56,65,-0.40141840373769305],[125,-56,66,-0.3920580472133552],[125,-56,67,-0.3837419861767419],[125,-56,68,-0.37353931912758154],[125,-56,69,-0.36195827203988556],[125,-56,70,-0.35136749734605344],[125,-56,71,-0.3431653037290669],[125,-56,72,-0.33048072122530625],[125,-56,73,-0.3228487252236714],[125,-56,74,-0.3140291134651636],[125,-56,75,-0.3037213841929103],[125,-56,76,-0.29205607009610746],[125,-56,77,-0.2867943953289339],[125,-56,78,-0.28588733689384227],[125,-56,79,-0.28422416224964386],[125,-55,64,-0.40897891129997327],[125,-55,65,-0.398568161382026],[125,-55,66,-0.38848582034298046],[125,-55,67,-0.3776553122840438],[125,-55,68,-0.3678162104337125],[125,-55,69,-0.3607409676736904],[125,-55,70,-0.3513292851668394],[125,-55,71,-0.3403501586427689],[125,-55,72,-0.3293541225080494],[125,-55,73,-0.3197604126493767],[125,-55,74,-0.30939476075817873],[125,-55,75,-0.29996008871698143],[125,-55,76,-0.28869374755158017],[125,-55,77,-0.28226307487391733],[125,-55,78,-0.2805315817257269],[125,-55,79,-0.2791146019559109],[125,-54,64,-0.40640076108391465],[125,-54,65,-0.3966029550520047],[125,-54,66,-0.3852202243637222],[125,-54,67,-0.3745623273497876],[125,-54,68,-0.3643929937881318],[125,-54,69,-0.35817247516185746],[125,-54,70,-0.35031470693090994],[125,-54,71,-0.3410236144770872],[125,-54,72,-0.32790902917608716],[125,-54,73,-0.3160410537700237],[125,-54,74,-0.30559853270224324],[125,-54,75,-0.2976130553163349],[125,-54,76,-0.28693006309140456],[125,-54,77,-0.27930538742563393],[125,-54,78,-0.27601508964264443],[125,-54,79,-0.27592474239824205],[125,-53,64,-0.40852250730919415],[125,-53,65,-0.40028230517935204],[125,-53,66,-0.39058672712057674],[125,-53,67,-0.37719249758237067],[125,-53,68,-0.3659452584506301],[125,-53,69,-0.36154512319349946],[125,-53,70,-0.3546887087850131],[125,-53,71,-0.3450499983252649],[125,-53,72,-0.33030463943762745],[125,-53,73,-0.3142703896745086],[125,-53,74,-0.30598902128819205],[125,-53,75,-0.2997778624920434],[125,-53,76,-0.28976627001686084],[125,-53,77,-0.2833760266466585],[125,-53,78,-0.27974281473190304],[125,-53,79,-0.276356857341431],[125,-52,64,-0.3717085151095015],[125,-52,65,-0.39968247272448626],[125,-52,66,-0.38775536604265415],[125,-52,67,-0.37183002750654287],[125,-52,68,-0.36062113892783226],[125,-52,69,-0.35237994963603836],[125,-52,70,-0.3440422549024838],[125,-52,71,-0.3372989918907784],[125,-52,72,-0.3182429863397077],[125,-52,73,-0.3032213656840584],[125,-52,74,-0.2948628332041215],[125,-52,75,-0.2890137216298355],[125,-52,76,-0.28029490062397855],[125,-52,77,-0.2750109223014966],[125,-52,78,-0.27013125321239934],[125,-52,79,-0.26638246405961613],[125,-51,64,-0.3067054066777648],[125,-51,65,-0.3412588933643454],[125,-51,66,-0.4046765444586491],[125,-51,67,-0.38235225795753136],[125,-51,68,-0.3713329706891972],[125,-51,69,-0.3581574412372623],[125,-51,70,-0.3494892845756532],[125,-51,71,-0.3452718141536574],[125,-51,72,-0.331160896426617],[125,-51,73,-0.3195454406809008],[125,-51,74,-0.3146708815974529],[125,-51,75,-0.30627928836971474],[125,-51,76,-0.2930646025772694],[125,-51,77,-0.28336506648511484],[125,-51,78,-0.2719048782635087],[125,-51,79,-0.26151631338814024],[125,-50,64,-0.28594143501239727],[125,-50,65,-0.3212134713516584],[125,-50,66,-0.40298839822404975],[125,-50,67,-0.3824630186445913],[125,-50,68,-0.3701516086559814],[125,-50,69,-0.3560387391034733],[125,-50,70,-0.3451060670740683],[125,-50,71,-0.3417451186393696],[125,-50,72,-0.33065378589753563],[125,-50,73,-0.3201659929395693],[125,-50,74,-0.3141550214671111],[125,-50,75,-0.30247970715065076],[125,-50,76,-0.2905816055297608],[125,-50,77,-0.2809992404292344],[125,-50,78,-0.27005281188099983],[125,-50,79,-0.2584827824173803],[125,-49,64,-0.25691237799528926],[125,-49,65,-0.2893524482077534],[125,-49,66,-0.40598574434777424],[125,-49,67,-0.38608050071799843],[125,-49,68,-0.37324091514106467],[125,-49,69,-0.3576375460302552],[125,-49,70,-0.3467656996342268],[125,-49,71,-0.33927771986162214],[125,-49,72,-0.3295821261089966],[125,-49,73,-0.32156526528808366],[125,-49,74,-0.3118122060972758],[125,-49,75,-0.3019287201246231],[125,-49,76,-0.28824973147207444],[125,-49,77,-0.2762786733928947],[125,-49,78,-0.2669158966639386],[125,-49,79,-0.25544147921116184],[125,-48,64,-0.21493025158807566],[125,-48,65,-0.25497789057561226],[125,-48,66,-0.37162212584277077],[125,-48,67,-0.3861972760269478],[125,-48,68,-0.3725370836364455],[125,-48,69,-0.35897965167314205],[125,-48,70,-0.34641743392553126],[125,-48,71,-0.33707916073416677],[125,-48,72,-0.3280659777970169],[125,-48,73,-0.3208106481086002],[125,-48,74,-0.3120035129486571],[125,-48,75,-0.3002327226159565],[125,-48,76,-0.2843880097943313],[125,-48,77,-0.27214660034966165],[125,-48,78,-0.2630444195577777],[125,-48,79,-0.2542704338675107],[125,-47,64,-0.19858454611417037],[125,-47,65,-0.22929176881417518],[125,-47,66,-0.3234603097390571],[125,-47,67,-0.3914027857799816],[125,-47,68,-0.3795195470679871],[125,-47,69,-0.3672553636960995],[125,-47,70,-0.3530384269311192],[125,-47,71,-0.33872303097583517],[125,-47,72,-0.32251377584400315],[125,-47,73,-0.3100519825357106],[125,-47,74,-0.3010413894639655],[125,-47,75,-0.28882387606737486],[125,-47,76,-0.27481052990781],[125,-47,77,-0.2678088122385557],[125,-47,78,-0.266528005432316],[125,-47,79,-0.26016718643840386],[125,-46,64,-0.24098776269749883],[125,-46,65,-0.26716158165384274],[125,-46,66,-0.28920679041848263],[125,-46,67,-0.3789255263210038],[125,-46,68,-0.37786298257099055],[125,-46,69,-0.3656985227890806],[125,-46,70,-0.3510206404085748],[125,-46,71,-0.338276291428765],[125,-46,72,-0.3221512856473941],[125,-46,73,-0.3068502679592287],[125,-46,74,-0.2944933813467152],[125,-46,75,-0.28560382097763065],[125,-46,76,-0.2740171290124817],[125,-46,77,-0.26795024304682924],[125,-46,78,-0.2652982603006143],[125,-46,79,-0.2582055215638469],[125,-45,64,-0.2144158248631736],[125,-45,65,-0.2510283220752071],[125,-45,66,-0.26681594806546094],[125,-45,67,-0.36032224563464843],[125,-45,68,-0.37976817087740916],[125,-45,69,-0.3692296971776268],[125,-45,70,-0.3543758588985641],[125,-45,71,-0.3418087175880741],[125,-45,72,-0.32422588921545764],[125,-45,73,-0.3081941069391245],[125,-45,74,-0.29532019047126995],[125,-45,75,-0.28670681990991087],[125,-45,76,-0.27603952520493724],[125,-45,77,-0.27244686553219766],[125,-45,78,-0.27000526629500765],[125,-45,79,-0.2621399631528145],[125,-44,64,-0.03627099541284412],[125,-44,65,-0.11138871367747899],[125,-44,66,-0.15198747635898913],[125,-44,67,-0.3313928337664479],[125,-44,68,-0.4100373045303857],[125,-44,69,-0.40393365104214557],[125,-44,70,-0.3928077970573191],[125,-44,71,-0.3834201227441584],[125,-44,72,-0.36652268383213427],[125,-44,73,-0.35339994263767405],[125,-44,74,-0.34286624571500657],[125,-44,75,-0.3320694360314277],[125,-44,76,-0.3234628931616286],[125,-44,77,-0.3214192994539363],[125,-44,78,-0.31815182309879714],[125,-44,79,-0.3086713097981715],[125,-43,64,0.07354369555195883],[125,-43,65,0.027368953564484877],[125,-43,66,-0.030702255349105145],[125,-43,67,-0.20908685503761165],[125,-43,68,-0.28653332494387107],[125,-43,69,-0.40135997159037207],[125,-43,70,-0.3885145613801398],[125,-43,71,-0.3776775134689309],[125,-43,72,-0.3628734381874641],[125,-43,73,-0.34969201546051887],[125,-43,74,-0.33879536777491004],[125,-43,75,-0.33083339124748606],[125,-43,76,-0.3237410963418875],[125,-43,77,-0.31894390715500537],[125,-43,78,-0.3164415685125318],[125,-43,79,-0.30928684677154505],[125,-42,64,0.10203156432957838],[125,-42,65,0.060474120783589824],[125,-42,66,-0.026820597117820866],[125,-42,67,-0.21164577367463774],[125,-42,68,-0.2797602489480872],[125,-42,69,-0.3971544574092782],[125,-42,70,-0.3864333516177479],[125,-42,71,-0.3751868852559186],[125,-42,72,-0.36298396787671416],[125,-42,73,-0.3496007569627668],[125,-42,74,-0.3384088011191482],[125,-42,75,-0.33347217878498825],[125,-42,76,-0.32826994437263246],[125,-42,77,-0.32034352295079593],[125,-42,78,-0.3175280338499651],[125,-42,79,-0.30848099141352636],[125,-41,64,0.1407968908464655],[125,-41,65,0.10004749896113668],[125,-41,66,0.006446338327956713],[125,-41,67,-0.1842517649696182],[125,-41,68,-0.2420612546709241],[125,-41,69,-0.3979666002591096],[125,-41,70,-0.3894578953943571],[125,-41,71,-0.3765924952956078],[125,-41,72,-0.36461552106137923],[125,-41,73,-0.3504432021558301],[125,-41,74,-0.34184454191656777],[125,-41,75,-0.33440573634573956],[125,-41,76,-0.32852976464609573],[125,-41,77,-0.3202482996704727],[125,-41,78,-0.3149156188734174],[125,-41,79,-0.30647805715402965],[125,-40,64,0.14540472924595021],[125,-40,65,0.13957926730081244],[125,-40,66,0.012963579804079195],[125,-40,67,-0.1445992564603002],[125,-40,68,-0.1890064290289228],[125,-40,69,-0.39345004753927293],[125,-40,70,-0.3869698399707835],[125,-40,71,-0.3749061755780709],[125,-40,72,-0.36356392111864055],[125,-40,73,-0.3528546688916979],[125,-40,74,-0.34368263553633027],[125,-40,75,-0.33494549381205385],[125,-40,76,-0.32725060746709417],[125,-40,77,-0.31915410949744094],[125,-40,78,-0.3128772806931593],[125,-40,79,-0.305097199783124],[125,-39,64,0.14623606375536638],[125,-39,65,0.12354164056603167],[125,-39,66,-0.005014987442499119],[125,-39,67,-0.11785848788044972],[125,-39,68,-0.18167389940274686],[125,-39,69,-0.39285859220947517],[125,-39,70,-0.389673355662051],[125,-39,71,-0.37804812761294626],[125,-39,72,-0.36930588193941194],[125,-39,73,-0.36114612650476147],[125,-39,74,-0.35449354811567024],[125,-39,75,-0.3442410282821138],[125,-39,76,-0.3361425167324939],[125,-39,77,-0.3250378212195833],[125,-39,78,-0.31397516771932776],[125,-39,79,-0.30584570217200696],[125,-38,64,0.15394918942201805],[125,-38,65,0.08189621629019739],[125,-38,66,-0.06827028133454444],[125,-38,67,-0.19747846642232117],[125,-38,68,-0.31685012527760376],[125,-38,69,-0.3908439574077712],[125,-38,70,-0.38478337794444334],[125,-38,71,-0.3759311224338686],[125,-38,72,-0.368342888184795],[125,-38,73,-0.36186443414512803],[125,-38,74,-0.3555316888103936],[125,-38,75,-0.34563663132942396],[125,-38,76,-0.33453939952416845],[125,-38,77,-0.3222957107256307],[125,-38,78,-0.31156228385348367],[125,-38,79,-0.302107194495013],[125,-37,64,0.1537809689142085],[125,-37,65,0.1198820872597477],[125,-37,66,0.007538816631984746],[125,-37,67,-0.1462461321421143],[125,-37,68,-0.2686477347625611],[125,-37,69,-0.3916391905908777],[125,-37,70,-0.38536595414597635],[125,-37,71,-0.37659154904712366],[125,-37,72,-0.37132215329267865],[125,-37,73,-0.3675345093213085],[125,-37,74,-0.36014490119641085],[125,-37,75,-0.3501418078933572],[125,-37,76,-0.3370223167387302],[125,-37,77,-0.32608835499285493],[125,-37,78,-0.3114675891217667],[125,-37,79,-0.30218493810759145],[125,-36,64,0.144606988856524],[125,-36,65,0.1273852291029547],[125,-36,66,0.02278688103332177],[125,-36,67,-0.12688780836371943],[125,-36,68,-0.26851923332493305],[125,-36,69,-0.38146371330685125],[125,-36,70,-0.375080357322829],[125,-36,71,-0.3666616489302109],[125,-36,72,-0.3610963816851285],[125,-36,73,-0.35689379991416736],[125,-36,74,-0.34953504141007147],[125,-36,75,-0.3371296371671493],[125,-36,76,-0.3243639330193689],[125,-36,77,-0.3133903467891108],[125,-36,78,-0.2994103792796543],[125,-36,79,-0.29031123642497975],[125,-35,64,0.14669940930849723],[125,-35,65,0.1529052581020154],[125,-35,66,0.07650699215515333],[125,-35,67,-0.07370566233699366],[125,-35,68,-0.22818030111855367],[125,-35,69,-0.3718326902898946],[125,-35,70,-0.3654992609736571],[125,-35,71,-0.359021845479557],[125,-35,72,-0.3532084596450952],[125,-35,73,-0.34719776908115607],[125,-35,74,-0.340469732479666],[125,-35,75,-0.32847485019099526],[125,-35,76,-0.31575863004296933],[125,-35,77,-0.29991012118734606],[125,-35,78,-0.284374873677297],[125,-35,79,-0.27589183671318296],[125,-34,64,0.14225214071762288],[125,-34,65,0.14566514364530492],[125,-34,66,0.11331586295830337],[125,-34,67,-0.03163453955466777],[125,-34,68,-0.1805502013602249],[125,-34,69,-0.36792116277670595],[125,-34,70,-0.36215392405387753],[125,-34,71,-0.3559021234582864],[125,-34,72,-0.3510963828112526],[125,-34,73,-0.3454633551081535],[125,-34,74,-0.33653367214300994],[125,-34,75,-0.32431664626859846],[125,-34,76,-0.31226102361664965],[125,-34,77,-0.2963812017250368],[125,-34,78,-0.28337672113503726],[125,-34,79,-0.27485196486314356],[125,-33,64,0.13609763045383516],[125,-33,65,0.13788384107628726],[125,-33,66,0.13704250269492496],[125,-33,67,0.03011176155667583],[125,-33,68,-0.09050716700305372],[125,-33,69,-0.3195068629391593],[125,-33,70,-0.3246032999610432],[125,-33,71,-0.32447416718722993],[125,-33,72,-0.3250272459212687],[125,-33,73,-0.32303070033012216],[125,-33,74,-0.3177419136041652],[125,-33,75,-0.30982649531880163],[125,-33,76,-0.3054027371833006],[125,-33,77,-0.29451571729029635],[125,-33,78,-0.2862477986020117],[125,-33,79,-0.2802049327544573],[125,-32,64,0.14320144113522035],[125,-32,65,0.14165381381278438],[125,-32,66,0.1425580250349615],[125,-32,67,0.10071280580809999],[125,-32,68,-0.022212641648399756],[125,-32,69,-0.2473489024254824],[125,-32,70,-0.31696515034599393],[125,-32,71,-0.31806859967231493],[125,-32,72,-0.3182445684223487],[125,-32,73,-0.3177048852274782],[125,-32,74,-0.31407179467754437],[125,-32,75,-0.3066035146891798],[125,-32,76,-0.30374840479770704],[125,-32,77,-0.29430893819407655],[125,-32,78,-0.28495409832309126],[125,-32,79,-0.27690412017493443],[125,-31,64,0.14460709472503],[125,-31,65,0.14451183906642906],[125,-31,66,0.14645789073738172],[125,-31,67,0.15444591897993537],[125,-31,68,0.10434014411609749],[125,-31,69,-0.11548672741364654],[125,-31,70,-0.2729936323429918],[125,-31,71,-0.3129587002534339],[125,-31,72,-0.313926635308053],[125,-31,73,-0.31294376521466627],[125,-31,74,-0.3097577494906196],[125,-31,75,-0.30464966415097994],[125,-31,76,-0.3026581743745934],[125,-31,77,-0.2931772124874254],[125,-31,78,-0.2838000695412391],[125,-31,79,-0.27237192142155964],[125,-30,64,0.15553698137774458],[125,-30,65,0.15653484649684424],[125,-30,66,0.15652922052090845],[125,-30,67,0.16719260139960926],[125,-30,68,0.13141143034851654],[125,-30,69,-0.09619983744936711],[125,-30,70,-0.25282515930421345],[125,-30,71,-0.3055349189418975],[125,-30,72,-0.30970687834218436],[125,-30,73,-0.31156259175375217],[125,-30,74,-0.30771835676712284],[125,-30,75,-0.302190731249614],[125,-30,76,-0.30147717623618436],[125,-30,77,-0.29158746218783554],[125,-30,78,-0.27977831812591103],[125,-30,79,-0.26769596528926787],[125,-29,64,0.1674712625999689],[125,-29,65,0.16799544003544833],[125,-29,66,0.1684327254667563],[125,-29,67,0.17524708911567308],[125,-29,68,0.17534442829293334],[125,-29,69,-0.02025350341910992],[125,-29,70,-0.18626203004150194],[125,-29,71,-0.2794443432790801],[125,-29,72,-0.3093696399023764],[125,-29,73,-0.31294219690120456],[125,-29,74,-0.3112752697460213],[125,-29,75,-0.3070152281416516],[125,-29,76,-0.3032970466468264],[125,-29,77,-0.29727455730060004],[125,-29,78,-0.285700595508466],[125,-29,79,-0.27248449697359134],[125,-28,64,0.1586225771254497],[125,-28,65,0.1601312775871787],[125,-28,66,0.1604236982162154],[125,-28,67,0.16318071555085778],[125,-28,68,0.16150770456118285],[125,-28,69,0.015266917241043287],[125,-28,70,-0.14508841815305495],[125,-28,71,-0.2386838149682396],[125,-28,72,-0.3010619177160043],[125,-28,73,-0.3030561457212251],[125,-28,74,-0.3010697487074955],[125,-28,75,-0.29556278222412957],[125,-28,76,-0.2907000798032421],[125,-28,77,-0.28752469712134243],[125,-28,78,-0.27907009256930193],[125,-28,79,-0.26600176767957706],[125,-27,64,0.16149236285502855],[125,-27,65,0.16181103540962535],[125,-27,66,0.16020580175646326],[125,-27,67,0.16195277140660294],[125,-27,68,0.15881228752896331],[125,-27,69,0.15845095300864848],[125,-27,70,0.005500599964578579],[125,-27,71,-0.11829683904481894],[125,-27,72,-0.21911232451871832],[125,-27,73,-0.2622076552900267],[125,-27,74,-0.28938632096553846],[125,-27,75,-0.28671582346768953],[125,-27,76,-0.2851390045552988],[125,-27,77,-0.28243674950864767],[125,-27,78,-0.27708018969664683],[125,-27,79,-0.2665888523292713],[125,-26,64,0.21391150833623088],[125,-26,65,0.21278116847201856],[125,-26,66,0.21415820010463874],[125,-26,67,0.21387151708866436],[125,-26,68,0.2108073437450434],[125,-26,69,0.20875579295923993],[125,-26,70,0.0939321434866151],[125,-26,71,-0.08568578134115593],[125,-26,72,-0.18188203992981639],[125,-26,73,-0.2551370342557942],[125,-26,74,-0.285926807827906],[125,-26,75,-0.2852636897994682],[125,-26,76,-0.2852490036104531],[125,-26,77,-0.2812120739188831],[125,-26,78,-0.27310396207233184],[125,-26,79,-0.2654287486434057],[125,-25,64,0.21579858153876788],[125,-25,65,0.21447523694615325],[125,-25,66,0.21592308451479272],[125,-25,67,0.21589532155157495],[125,-25,68,0.21031131448579746],[125,-25,69,0.20598729053119927],[125,-25,70,0.14332779588878358],[125,-25,71,-0.057849658200218285],[125,-25,72,-0.1406269588251204],[125,-25,73,-0.27566786946237165],[125,-25,74,-0.2808583419634548],[125,-25,75,-0.28239584586847066],[125,-25,76,-0.283498344061452],[125,-25,77,-0.2800450737554896],[125,-25,78,-0.27192700203411724],[125,-25,79,-0.2614616102214691],[125,-24,64,0.2210161694755775],[125,-24,65,0.21937389113822403],[125,-24,66,0.22081783015225523],[125,-24,67,0.21967119996648157],[125,-24,68,0.21171439890708454],[125,-24,69,0.20798960143622383],[125,-24,70,0.1794100364773492],[125,-24,71,0.002041879159911608],[125,-24,72,-0.1005159570546614],[125,-24,73,-0.2726254689164574],[125,-24,74,-0.2770196410045529],[125,-24,75,-0.2785509060943118],[125,-24,76,-0.2790837187587859],[125,-24,77,-0.2755008424698322],[125,-24,78,-0.2690055868791012],[125,-24,79,-0.26103122780420607],[125,-23,64,0.22161548502728845],[125,-23,65,0.22077235865436418],[125,-23,66,0.22134377059462335],[125,-23,67,0.21737797050336022],[125,-23,68,0.2107027430821594],[125,-23,69,0.20782871986626372],[125,-23,70,0.18181274446716472],[125,-23,71,-0.0026711074173114135],[125,-23,72,-0.1321173230856476],[125,-23,73,-0.2651798246461386],[125,-23,74,-0.26672027061202025],[125,-23,75,-0.2641992190569452],[125,-23,76,-0.2671495204839002],[125,-23,77,-0.27268043234227163],[125,-23,78,-0.27126318290706586],[125,-23,79,-0.2668724754306587],[125,-22,64,0.22947762458349988],[125,-22,65,0.22882673539454504],[125,-22,66,0.22844664241338442],[125,-22,67,0.2238692458006748],[125,-22,68,0.21917258014617816],[125,-22,69,0.21588104624904447],[125,-22,70,0.21758347537476078],[125,-22,71,0.04406932159562432],[125,-22,72,-0.125370789216141],[125,-22,73,-0.2624314366699019],[125,-22,74,-0.2636568728772003],[125,-22,75,-0.2612773791010705],[125,-22,76,-0.2627809331059323],[125,-22,77,-0.2683075516080494],[125,-22,78,-0.26999827268835347],[125,-22,79,-0.26661167512091755],[125,-21,64,0.22581421583648192],[125,-21,65,0.22590397423096878],[125,-21,66,0.2266235898620418],[125,-21,67,0.2210622967954474],[125,-21,68,0.2161502600901314],[125,-21,69,0.21134285690935736],[125,-21,70,0.21172215614086534],[125,-21,71,0.13369156947481076],[125,-21,72,-0.05676076548043632],[125,-21,73,-0.26140913838828284],[125,-21,74,-0.2667451774840321],[125,-21,75,-0.26335407905176145],[125,-21,76,-0.26398385603657354],[125,-21,77,-0.27103295566342456],[125,-21,78,-0.27529157939775245],[125,-21,79,-0.2725052519816258],[125,-20,64,0.2143825361613295],[125,-20,65,0.2134182824824826],[125,-20,66,0.21551215216186945],[125,-20,67,0.2095606947968625],[125,-20,68,0.20489886295780194],[125,-20,69,0.2015778968181126],[125,-20,70,0.20270875442161196],[125,-20,71,0.12453620792846126],[125,-20,72,-0.06135955717722963],[125,-20,73,-0.2531964230869572],[125,-20,74,-0.2556024059184564],[125,-20,75,-0.2525056261337831],[125,-20,76,-0.2558140664896107],[125,-20,77,-0.26355463858591344],[125,-20,78,-0.2685592020481524],[125,-20,79,-0.26749722567010903],[125,-19,64,0.21507039584520468],[125,-19,65,0.2155004679236602],[125,-19,66,0.21537884757240902],[125,-19,67,0.2097064961417745],[125,-19,68,0.20236543755140465],[125,-19,69,0.20142692133063028],[125,-19,70,0.206027371632535],[125,-19,71,0.2102950659343456],[125,-19,72,-0.009764750384909204],[125,-19,73,-0.22360834652293798],[125,-19,74,-0.2486168932919735],[125,-19,75,-0.24780613885152658],[125,-19,76,-0.25224193922538574],[125,-19,77,-0.2572291614648293],[125,-19,78,-0.26251718991344597],[125,-19,79,-0.26026685520588333],[125,-18,64,0.20579263423129912],[125,-18,65,0.2077156640898281],[125,-18,66,0.2037853240338141],[125,-18,67,0.200322771343403],[125,-18,68,0.1929742160101354],[125,-18,69,0.19413128911879549],[125,-18,70,0.19985154281021922],[125,-18,71,0.20478999499463885],[125,-18,72,-0.02074008974348951],[125,-18,73,-0.21332586711251167],[125,-18,74,-0.24312674130766104],[125,-18,75,-0.24412329839087918],[125,-18,76,-0.24703985392958958],[125,-18,77,-0.2530424759741047],[125,-18,78,-0.25884183393045124],[125,-18,79,-0.25643872941840756],[125,-17,64,0.20684125969689957],[125,-17,65,0.2050473133976937],[125,-17,66,0.20374492110592748],[125,-17,67,0.20143239085553638],[125,-17,68,0.20039453633129797],[125,-17,69,0.20316430738656083],[125,-17,70,0.21097504485051272],[125,-17,71,0.21545318235189415],[125,-17,72,0.018433779219564572],[125,-17,73,-0.19595299999533355],[125,-17,74,-0.23755085183384494],[125,-17,75,-0.24027639995456013],[125,-17,76,-0.2440169224344855],[125,-17,77,-0.2490262222717035],[125,-17,78,-0.2559378914510897],[125,-17,79,-0.2519610260773536],[125,-16,64,0.21180743803603508],[125,-16,65,0.20824195075591678],[125,-16,66,0.2091578385804905],[125,-16,67,0.20873142098345884],[125,-16,68,0.20569425864213953],[125,-16,69,0.20738073809866242],[125,-16,70,0.21675752749385116],[125,-16,71,0.21853674346869925],[125,-16,72,0.09822035165796814],[125,-16,73,-0.10265765409064156],[125,-16,74,-0.23488632789466424],[125,-16,75,-0.23817452447446055],[125,-16,76,-0.2409652116154253],[125,-16,77,-0.24717321375848042],[125,-16,78,-0.24976416749941607],[125,-16,79,-0.24442532330506322],[125,-15,64,0.21284346217996983],[125,-15,65,0.2109244421033632],[125,-15,66,0.2120341910636883],[125,-15,67,0.209157474178379],[125,-15,68,0.20673010652198634],[125,-15,69,0.20998114374846852],[125,-15,70,0.21725605524152652],[125,-15,71,0.21880410381208146],[125,-15,72,0.13387608599086934],[125,-15,73,-0.06665784337646119],[125,-15,74,-0.2269464240584717],[125,-15,75,-0.23120263981289113],[125,-15,76,-0.23437366041394778],[125,-15,77,-0.23824063829790504],[125,-15,78,-0.2369635749598751],[125,-15,79,-0.23121624616078068],[125,-14,64,0.11389309521385056],[125,-14,65,0.11125138214240607],[125,-14,66,0.11248379974516043],[125,-14,67,0.11144914711063798],[125,-14,68,0.10974959228535903],[125,-14,69,0.11251777862546886],[125,-14,70,0.1190899899233955],[125,-14,71,0.11977238238058703],[125,-14,72,0.07218449871941199],[125,-14,73,-0.07813324758789844],[125,-14,74,-0.22530059824471071],[125,-14,75,-0.2266437645529814],[125,-14,76,-0.22960219323468997],[125,-14,77,-0.236245761305077],[125,-14,78,-0.23237784997213162],[125,-14,79,-0.22659288356667037],[125,-13,64,0.11232653820156552],[125,-13,65,0.10943380197320338],[125,-13,66,0.11291427073406024],[125,-13,67,0.11148110094756096],[125,-13,68,0.11242754089098207],[125,-13,69,0.11376571975048462],[125,-13,70,0.11785538083346958],[125,-13,71,0.12022840469721967],[125,-13,72,0.13077740479269565],[125,-13,73,-0.010513478107676583],[125,-13,74,-0.17379985657885436],[125,-13,75,-0.23099706323770214],[125,-13,76,-0.23311005371533772],[125,-13,77,-0.23971559868393857],[125,-13,78,-0.23603640185874558],[125,-13,79,-0.23122948710803182],[125,-12,64,0.1012876580497542],[125,-12,65,0.0978500078769152],[125,-12,66,0.10088800887998522],[125,-12,67,0.10051512861751083],[125,-12,68,0.10441765045090193],[125,-12,69,0.10309915882361023],[125,-12,70,0.10698672906722434],[125,-12,71,0.1106868518311821],[125,-12,72,0.12169536681942145],[125,-12,73,-0.014933857059026973],[125,-12,74,-0.14125292917827004],[125,-12,75,-0.22907720955219632],[125,-12,76,-0.23088186056949805],[125,-12,77,-0.2327955472331465],[125,-12,78,-0.23281055661847697],[125,-12,79,-0.22763076290754392],[125,-11,64,0.0982429673710781],[125,-11,65,0.0957309825855371],[125,-11,66,0.09570197412222389],[125,-11,67,0.09551024489014667],[125,-11,68,0.10002344082283682],[125,-11,69,0.10201715669486613],[125,-11,70,0.10752081339555081],[125,-11,71,0.11268094975418544],[125,-11,72,0.12389653147171394],[125,-11,73,-0.011228094731553478],[125,-11,74,-0.15537915054263474],[125,-11,75,-0.2286665606247544],[125,-11,76,-0.23179421149929186],[125,-11,77,-0.23162639593819495],[125,-11,78,-0.2297314423870368],[125,-11,79,-0.22763689053291467],[125,-10,64,0.08913754045510244],[125,-10,65,0.08616587470572064],[125,-10,66,0.08542680056844729],[125,-10,67,0.08574114908437641],[125,-10,68,0.09055250194694162],[125,-10,69,0.09410571205347118],[125,-10,70,0.09916074282096385],[125,-10,71,0.1056508661083123],[125,-10,72,0.11713605947947522],[125,-10,73,4.977382189643165E-4],[125,-10,74,-0.14229079491406832],[125,-10,75,-0.22808398634557947],[125,-10,76,-0.22969984795689816],[125,-10,77,-0.228132799577466],[125,-10,78,-0.22587877921184835],[125,-10,79,-0.22379600812880512],[125,-9,64,0.09334781849248282],[125,-9,65,0.09361623002196208],[125,-9,66,0.09291975868510421],[125,-9,67,0.09286621603926137],[125,-9,68,0.09643555791040342],[125,-9,69,0.10016033049382654],[125,-9,70,0.10676481726021372],[125,-9,71,0.1133240115130328],[125,-9,72,0.12271467071255365],[125,-9,73,0.02988923386940459],[125,-9,74,-0.13339436723733128],[125,-9,75,-0.22649916847636056],[125,-9,76,-0.22817133090675648],[125,-9,77,-0.22476618635582352],[125,-9,78,-0.22141835117782738],[125,-9,79,-0.21899003051659033],[125,-8,64,0.09575922706260606],[125,-8,65,0.09590313963328873],[125,-8,66,0.09424618104446603],[125,-8,67,0.09310042389398566],[125,-8,68,0.09578989582816488],[125,-8,69,0.10326498193926475],[125,-8,70,0.10836967464236356],[125,-8,71,0.1179415048704966],[125,-8,72,0.12581067047468203],[125,-8,73,0.0697813851506848],[125,-8,74,-0.1285397571295984],[125,-8,75,-0.22203195657103217],[125,-8,76,-0.2254317145524194],[125,-8,77,-0.2233637342578993],[125,-8,78,-0.21507205851050798],[125,-8,79,-0.2135444088870066],[125,-7,64,0.09481636488743604],[125,-7,65,0.09305406538356237],[125,-7,66,0.0897183570118877],[125,-7,67,0.09054614773819339],[125,-7,68,0.09364394875851426],[125,-7,69,0.10129935321873329],[125,-7,70,0.10829199481585258],[125,-7,71,0.11685971086488475],[125,-7,72,0.12589670640901132],[125,-7,73,0.07435524509703242],[125,-7,74,-0.12550499633343842],[125,-7,75,-0.22001974471393307],[125,-7,76,-0.22296692038739083],[125,-7,77,-0.22021687602060006],[125,-7,78,-0.21184810985954464],[125,-7,79,-0.20677079774658813],[125,-6,64,0.09054149050185303],[125,-6,65,0.08764661353827101],[125,-6,66,0.08447510018081361],[125,-6,67,0.08729116748628324],[125,-6,68,0.0911684021451392],[125,-6,69,0.0983863031733537],[125,-6,70,0.1051916055750926],[125,-6,71,0.11434678543299129],[125,-6,72,0.12422334760775473],[125,-6,73,0.06449204000936509],[125,-6,74,-0.12089092764385484],[125,-6,75,-0.21474274293275109],[125,-6,76,-0.21753077508087557],[125,-6,77,-0.21603596885231743],[125,-6,78,-0.20638301238075876],[125,-6,79,-0.2020161371216345],[125,-5,64,0.08734331264560663],[125,-5,65,0.08469552261425023],[125,-5,66,0.08059408324593983],[125,-5,67,0.08656577157860701],[125,-5,68,0.08964120867670539],[125,-5,69,0.09593204018433411],[125,-5,70,0.10185737391601773],[125,-5,71,0.11096877767027813],[125,-5,72,0.12255681086582264],[125,-5,73,0.1351225538496192],[125,-5,74,0.13300800093243173],[125,-5,75,-0.05571546088062801],[125,-5,76,-0.21904159931988829],[125,-5,77,-0.21510961566757653],[125,-5,78,-0.20779207091976565],[125,-5,79,-0.20019188036413116],[125,-4,64,0.07382907953483861],[125,-4,65,0.07129231337741629],[125,-4,66,0.06897496103883752],[125,-4,67,0.07335335945625181],[125,-4,68,0.08020620872988005],[125,-4,69,0.0862593351648569],[125,-4,70,0.09270626912048933],[125,-4,71,0.09953385284936499],[125,-4,72,0.11270613593071997],[125,-4,73,0.12512116839617204],[125,-4,74,0.12191615251980292],[125,-4,75,-0.048621639001865335],[125,-4,76,-0.20708276346206653],[125,-4,77,-0.2101806740717261],[125,-4,78,-0.20325066226101166],[125,-4,79,-0.1959589105027516],[125,-3,64,0.06432087239001777],[125,-3,65,0.06297930087453034],[125,-3,66,0.0625203250325098],[125,-3,67,0.06471034594291578],[125,-3,68,0.07337437150600806],[125,-3,69,0.08062707358626962],[125,-3,70,0.08943282713928115],[125,-3,71,0.10211304800614984],[125,-3,72,0.11439039354718548],[125,-3,73,0.12811502328736277],[125,-3,74,0.13779567726878125],[125,-3,75,0.0016449802457696727],[125,-3,76,-0.18313969017182283],[125,-3,77,-0.19501055233710143],[125,-3,78,-0.18752846943891743],[125,-3,79,-0.17888882848491738],[125,-2,64,0.05986503162807892],[125,-2,65,0.06025672187723538],[125,-2,66,0.05936515579241966],[125,-2,67,0.05958822170767384],[125,-2,68,0.06682797534361523],[125,-2,69,0.07538738183643112],[125,-2,70,0.08684658945370985],[125,-2,71,0.09828655915360462],[125,-2,72,0.11169307620102364],[125,-2,73,0.1255768651127596],[125,-2,74,0.1373565038941333],[125,-2,75,0.014698009838328585],[125,-2,76,-0.18614903940029778],[125,-2,77,-0.19050988912662167],[125,-2,78,-0.182968813819837],[125,-2,79,-0.17591985177539254],[125,-1,64,0.058813380087866594],[125,-1,65,0.05969334506571263],[125,-1,66,0.06117586745976393],[125,-1,67,0.06208177202704909],[125,-1,68,0.06589559000396346],[125,-1,69,0.07628645308527815],[125,-1,70,0.08694514770286184],[125,-1,71,0.10039641035304187],[125,-1,72,0.11394799829627288],[125,-1,73,0.12821049827070846],[125,-1,74,0.11034073006183254],[125,-1,75,-0.045119888141493925],[125,-1,76,-0.18927897593793272],[125,-1,77,-0.18405496591000695],[125,-1,78,-0.17792495198345554],[125,-1,79,-0.17095474836693292],[125,0,64,-0.03093787600677128],[125,0,65,-0.02918605332019722],[125,0,66,-0.0295592476341848],[125,0,67,-0.031120131185798983],[125,0,68,-0.02850605552341362],[125,0,69,-0.03640090089148876],[125,0,70,-0.0411082005139608],[125,0,71,-0.041962611759628204],[125,0,72,-0.04616564241644469],[125,0,73,-0.05922887743170213],[125,0,74,-0.07085689598732517],[125,0,75,-0.08012964777968999],[125,0,76,-0.08333337329578636],[125,0,77,-0.0823437724029344],[125,0,78,-0.08104406392170495],[125,0,79,-0.0808371730400002],[125,1,64,-0.02728683434261192],[125,1,65,-0.027877240667116804],[125,1,66,-0.025272232274983597],[125,1,67,-0.024012512070476222],[125,1,68,-0.023365599077072946],[125,1,69,-0.0318672783460969],[125,1,70,-0.040269875707899305],[125,1,71,-0.043567806781750096],[125,1,72,-0.04755476252300864],[125,1,73,-0.05946690873018265],[125,1,74,-0.07285211074559413],[125,1,75,-0.07878390618420189],[125,1,76,-0.08141307675331894],[125,1,77,-0.08140103360572386],[125,1,78,-0.07973577515565655],[125,1,79,-0.08297126631550898],[125,2,64,-0.02428637787013377],[125,2,65,-0.026879118125468032],[125,2,66,-0.02288726009328962],[125,2,67,-0.019744736766546006],[125,2,68,-0.021188630065142017],[125,2,69,-0.02935700631042648],[125,2,70,-0.038143850812573044],[125,2,71,-0.04321783369079435],[125,2,72,-0.04677036700881396],[125,2,73,-0.05909848402708055],[125,2,74,-0.07231137285646057],[125,2,75,-0.07612084656596564],[125,2,76,-0.0787037607584594],[125,2,77,-0.08144593190098078],[125,2,78,-0.08035921701662045],[125,2,79,-0.08286559558761766],[125,3,64,-0.021990043752118243],[125,3,65,-0.026198064734633653],[125,3,66,-0.021805756151916295],[125,3,67,-0.01780387307603548],[125,3,68,-0.0197067643254647],[125,3,69,-0.028485770654200826],[125,3,70,-0.03815696519573408],[125,3,71,-0.042177041801309184],[125,3,72,-0.045825552703016234],[125,3,73,-0.05801080249539446],[125,3,74,-0.07134686382426615],[125,3,75,-0.07596907194587024],[125,3,76,-0.07908160903119243],[125,3,77,-0.08187298304537796],[125,3,78,-0.08019890349329307],[125,3,79,-0.08074708042181919],[125,4,64,-0.018795398865940338],[125,4,65,-0.0238838208685985],[125,4,66,-0.02218644378844256],[125,4,67,-0.020893416156536893],[125,4,68,-0.023459626115346605],[125,4,69,-0.029111296091286015],[125,4,70,-0.03818272962334418],[125,4,71,-0.04090006506264282],[125,4,72,-0.04582902940020944],[125,4,73,-0.05854880132944293],[125,4,74,-0.07118990930852646],[125,4,75,-0.07842112824031436],[125,4,76,-0.0817013396129938],[125,4,77,-0.08073385489351975],[125,4,78,-0.08188392074054437],[125,4,79,-0.07788152570586825],[125,5,64,-0.017277422899183825],[125,5,65,-0.022309784303836205],[125,5,66,-0.02380791619145539],[125,5,67,-0.02181508374596436],[125,5,68,-0.02655868257663635],[125,5,69,-0.030672745088588943],[125,5,70,-0.03827296040925618],[125,5,71,-0.04089937829933962],[125,5,72,-0.04718779397643916],[125,5,73,-0.05944318084102014],[125,5,74,-0.07017075334440973],[125,5,75,-0.07875513718880427],[125,5,76,-0.08176386247778897],[125,5,77,-0.08113906198709298],[125,5,78,-0.08280755731023937],[125,5,79,-0.07817035595109503],[125,6,64,-0.015211690242510595],[125,6,65,-0.020883648239250818],[125,6,66,-0.024904890810052344],[125,6,67,-0.02613607528432682],[125,6,68,-0.028814669555341788],[125,6,69,-0.033406464103023836],[125,6,70,-0.039656773026302106],[125,6,71,-0.042988117204725285],[125,6,72,-0.04858637568513993],[125,6,73,-0.05773563053648326],[125,6,74,-0.06890760923380639],[125,6,75,-0.07607353291482162],[125,6,76,-0.07907688149267544],[125,6,77,-0.08215183611910062],[125,6,78,-0.08188657566546381],[125,6,79,-0.07652213029187739],[125,7,64,-0.014547867023066485],[125,7,65,-0.018709770033814438],[125,7,66,-0.026584020806812297],[125,7,67,-0.02893623591356345],[125,7,68,-0.029790041920861293],[125,7,69,-0.036094721680680814],[125,7,70,-0.04240805346526355],[125,7,71,-0.04596145973032158],[125,7,72,-0.04945145736505631],[125,7,73,-0.05820733868189827],[125,7,74,-0.06617443139482104],[125,7,75,-0.0722921577726488],[125,7,76,-0.07579667659922276],[125,7,77,-0.08157416448241972],[125,7,78,-0.08077351597443724],[125,7,79,-0.07466356277443276],[125,8,64,-0.013605313552379789],[125,8,65,-0.0185386160155957],[125,8,66,-0.02521296654726793],[125,8,67,-0.026731777422489028],[125,8,68,-0.026449721955545763],[125,8,69,-0.02960350873515674],[125,8,70,-0.03437729759699912],[125,8,71,-0.038477315717126814],[125,8,72,-0.04222180728981398],[125,8,73,-0.048611654454800285],[125,8,74,-0.05394065012853329],[125,8,75,-0.058877890535425234],[125,8,76,-0.0616327932668857],[125,8,77,-0.06813301722530145],[125,8,78,-0.06893419604908618],[125,8,79,-0.06447707392537626],[125,9,64,-0.019877954081763766],[125,9,65,-0.02673164338398204],[125,9,66,-0.033526316841243686],[125,9,67,-0.03701679794119378],[125,9,68,-0.037955099054327174],[125,9,69,-0.03892349106598114],[125,9,70,-0.0435949887383405],[125,9,71,-0.04645263090703554],[125,9,72,-0.04901040876299306],[125,9,73,-0.05331800301604603],[125,9,74,-0.06062018204495137],[125,9,75,-0.06182486899893773],[125,9,76,-0.06427476252451832],[125,9,77,-0.07072767722762302],[125,9,78,-0.07180082462919447],[125,9,79,-0.06883917059610489],[125,10,64,-0.018759850626529906],[125,10,65,-0.02595714058554424],[125,10,66,-0.03254581444424848],[125,10,67,-0.036851726763134474],[125,10,68,-0.03760853561297009],[125,10,69,-0.03806266523775467],[125,10,70,-0.04439196439761822],[125,10,71,-0.04616708144164079],[125,10,72,-0.048640002603210775],[125,10,73,-0.05517784540756898],[125,10,74,-0.06123155398050176],[125,10,75,-0.062296146462628044],[125,10,76,-0.06592436839506063],[125,10,77,-0.06997758280990272],[125,10,78,-0.06986349319605972],[125,10,79,-0.0693044451436654],[125,11,64,-0.01682517496381597],[125,11,65,-0.022625632674073276],[125,11,66,-0.030369680164504698],[125,11,67,-0.036682741024064325],[125,11,68,-0.037341845203079094],[125,11,69,-0.037679722264564175],[125,11,70,-0.04350599610502638],[125,11,71,-0.04591932584249085],[125,11,72,-0.04880298308129581],[125,11,73,-0.05599387886301463],[125,11,74,-0.061640347601352785],[125,11,75,-0.06049869282332511],[125,11,76,-0.06335451481444548],[125,11,77,-0.0672427202342995],[125,11,78,-0.06770077129399171],[125,11,79,-0.06785402524930532],[125,12,64,-0.011590166904027421],[125,12,65,-0.01793290494159208],[125,12,66,-0.026136068647509475],[125,12,67,-0.03367700558154946],[125,12,68,-0.037163972283944136],[125,12,69,-0.03680250684411518],[125,12,70,-0.041162076679600784],[125,12,71,-0.04555687476481157],[125,12,72,-0.04993836543391707],[125,12,73,-0.05643151050536163],[125,12,74,-0.06155313357584863],[125,12,75,-0.059292395854861235],[125,12,76,-0.061182809892538825],[125,12,77,-0.06331697018781951],[125,12,78,-0.06466789421866545],[125,12,79,-0.06523577915788073],[125,13,64,-6.926652095958774E-4],[125,13,65,-0.0061128507578934455],[125,13,66,-0.01487020634157607],[125,13,67,-0.021449938134311092],[125,13,68,-0.02494231849832171],[125,13,69,-0.02665126387658115],[125,13,70,-0.029332447352189733],[125,13,71,-0.03409205300541812],[125,13,72,-0.03924837098548928],[125,13,73,-0.0453445545891866],[125,13,74,-0.0471609513067701],[125,13,75,-0.04671902335420855],[125,13,76,-0.04838193771852832],[125,13,77,-0.051024979948432],[125,13,78,-0.05173026946900705],[125,13,79,-0.05562844086570734],[125,14,64,-0.0016301723923779765],[125,14,65,-0.004532290096000535],[125,14,66,-0.010673457305077266],[125,14,67,-0.0191005612222184],[125,14,68,-0.024762412440534454],[125,14,69,-0.026440626554542462],[125,14,70,-0.028516044580482375],[125,14,71,-0.03185115515681147],[125,14,72,-0.03774966392123083],[125,14,73,-0.042586447716579184],[125,14,74,-0.04747808818966276],[125,14,75,-0.046329500247145106],[125,14,76,-0.04643363963455524],[125,14,77,-0.048885134759353105],[125,14,78,-0.051852892329935965],[125,14,79,-0.055111351289331645],[125,15,64,-0.005052319873367295],[125,15,65,-0.004580254767197867],[125,15,66,-0.009102283788074095],[125,15,67,-0.018130237483101913],[125,15,68,-0.02643479418785344],[125,15,69,-0.026938627373002982],[125,15,70,-0.028246330474213238],[125,15,71,-0.03317324062789609],[125,15,72,-0.03689418299154262],[125,15,73,-0.04145568577424717],[125,15,74,-0.04644781336954479],[125,15,75,-0.04679065325470155],[125,15,76,-0.04659841813755293],[125,15,77,-0.04972774189580345],[125,15,78,-0.05161152154560303],[125,15,79,-0.05442064388415292],[125,16,64,-0.003779481587676964],[125,16,65,-0.0017900141068131203],[125,16,66,-0.004353487258576899],[125,16,67,-0.01191493427236906],[125,16,68,-0.020558374104719418],[125,16,69,-0.020113523466097877],[125,16,70,-0.016909166463707437],[125,16,71,-0.023455216682455537],[125,16,72,-0.026745561646077],[125,16,73,-0.02820636686954156],[125,16,74,-0.03450103820486228],[125,16,75,-0.033767527923419],[125,16,76,-0.0346682553964735],[125,16,77,-0.03674680295467775],[125,16,78,-0.036988303737154254],[125,16,79,-0.036261599406515854],[125,17,64,-0.00483874160109915],[125,17,65,-0.004946966427775201],[125,17,66,-0.007418190438590266],[125,17,67,-0.01389574611878347],[125,17,68,-0.019945591786839245],[125,17,69,-0.020989163863466664],[125,17,70,-0.017552279330903142],[125,17,71,-0.024306361154717793],[125,17,72,-0.028478626101076404],[125,17,73,-0.029352583678995542],[125,17,74,-0.03515015450084802],[125,17,75,-0.034790269705347904],[125,17,76,-0.03574157758126856],[125,17,77,-0.03722911587160263],[125,17,78,-0.036386906536426095],[125,17,79,-0.03616461312092148],[125,18,64,-0.009789466397374491],[125,18,65,-0.009171536026948868],[125,18,66,-0.00941839057050009],[125,18,67,-0.015510064906775284],[125,18,68,-0.018198338268870212],[125,18,69,-0.02135900294200621],[125,18,70,-0.020006015163505114],[125,18,71,-0.026793187445240424],[125,18,72,-0.03142362243691563],[125,18,73,-0.03213633633392618],[125,18,74,-0.036052841887105835],[125,18,75,-0.03843512085614509],[125,18,76,-0.03779354356961598],[125,18,77,-0.04044904391038909],[125,18,78,-0.0370976364191542],[125,18,79,-0.038205039973377236],[125,19,64,-0.01274110578350851],[125,19,65,-0.012711234093115503],[125,19,66,-0.011377205538208951],[125,19,67,-0.014709374508585255],[125,19,68,-0.018809593991830797],[125,19,69,-0.02022617332630694],[125,19,70,-0.022943897457948836],[125,19,71,-0.029513847184952258],[125,19,72,-0.03411404586648559],[125,19,73,-0.03438898095894466],[125,19,74,-0.03589619112365755],[125,19,75,-0.04091083704918114],[125,19,76,-0.04042234840421488],[125,19,77,-0.0425628138997855],[125,19,78,-0.04005858091152892],[125,19,79,-0.04300409689139345],[125,20,64,-0.011946726942202113],[125,20,65,-0.014587018162110194],[125,20,66,-0.015672714801504534],[125,20,67,-0.018248589784617297],[125,20,68,-0.021690317734170822],[125,20,69,-0.02528606312390702],[125,20,70,-0.028636459461414715],[125,20,71,-0.03474226626686877],[125,20,72,-0.038519718492963984],[125,20,73,-0.040725912674521664],[125,20,74,-0.04350799895895904],[125,20,75,-0.04602100268442548],[125,20,76,-0.045182988221830506],[125,20,77,-0.04592222607104077],[125,20,78,-0.04304231377197393],[125,20,79,-0.046819691182011985],[125,21,64,-0.008173224940142748],[125,21,65,-0.013200829951622028],[125,21,66,-0.017873427060173946],[125,21,67,-0.020931575820689413],[125,21,68,-0.026405659049382524],[125,21,69,-0.030753139407756952],[125,21,70,-0.03946127403768672],[125,21,71,-0.050331743847846916],[125,21,72,-0.05949884368305802],[125,21,73,-0.06630430185665165],[125,21,74,-0.07140648192688771],[125,21,75,-0.0735726343496208],[125,21,76,-0.07078619130404332],[125,21,77,-0.06873089181188058],[125,21,78,-0.06524729302832924],[125,21,79,-0.06711752238866842],[125,22,64,-0.008718828956896046],[125,22,65,-0.013951364653028625],[125,22,66,-0.020928577379842467],[125,22,67,-0.02378446245481708],[125,22,68,-0.029233697052102964],[125,22,69,-0.03236326456451438],[125,22,70,-0.039550757056153824],[125,22,71,-0.05296217432827782],[125,22,72,-0.06117991810830403],[125,22,73,-0.07030180162077784],[125,22,74,-0.07650917066535776],[125,22,75,-0.0772252568221038],[125,22,76,-0.07372589056853712],[125,22,77,-0.06965248890630463],[125,22,78,-0.0687326944298052],[125,22,79,-0.06707913820146758],[125,23,64,-0.012587701159769565],[125,23,65,-0.016736879213102573],[125,23,66,-0.023037956130931236],[125,23,67,-0.027945155334609062],[125,23,68,-0.03383715969392534],[125,23,69,-0.0355242207514975],[125,23,70,-0.04268007502578733],[125,23,71,-0.056104329005190245],[125,23,72,-0.06442739680854798],[125,23,73,-0.07363667267660867],[125,23,74,-0.0788756127184119],[125,23,75,-0.0791053080320348],[125,23,76,-0.0752251942954821],[125,23,77,-0.07267364261086078],[125,23,78,-0.0698890377376142],[125,23,79,-0.06695505742161584],[125,24,64,-0.009511653039984524],[125,24,65,-0.010476875513230038],[125,24,66,-0.016395384269899227],[125,24,67,-0.025182530110531814],[125,24,68,-0.03253371590553905],[125,24,69,-0.033410745633149386],[125,24,70,-0.039705611017964326],[125,24,71,-0.05090141890964561],[125,24,72,-0.05908305393010377],[125,24,73,-0.06696227816270613],[125,24,74,-0.07053203048027976],[125,24,75,-0.07043183069017857],[125,24,76,-0.07071592741070948],[125,24,77,-0.06646621469945664],[125,24,78,-0.06042786891767804],[125,24,79,-0.05738493975732015],[125,25,64,-0.010039951755310444],[125,25,65,-0.014250515130468294],[125,25,66,-0.023396319809705385],[125,25,67,-0.0381022271760483],[125,25,68,-0.047511842223475736],[125,25,69,-0.04822714794782659],[125,25,70,-0.051725045660862],[125,25,71,-0.054212140069162584],[125,25,72,-0.05635426774949828],[125,25,73,-0.05709332246355875],[125,25,74,-0.056915485881026656],[125,25,75,-0.059468733400094204],[125,25,76,-0.06287237079693447],[125,25,77,-0.06134832673397736],[125,25,78,-0.058551223666525515],[125,25,79,-0.05930833802241517],[125,26,64,-0.011630401283217767],[125,26,65,-0.018603456068645385],[125,26,66,-0.025645091905032946],[125,26,67,-0.040363735547911714],[125,26,68,-0.04741145007527729],[125,26,69,-0.050153532645601684],[125,26,70,-0.053360211847881034],[125,26,71,-0.05586916340727674],[125,26,72,-0.058403790142831286],[125,26,73,-0.05638911822611037],[125,26,74,-0.05508001682119529],[125,26,75,-0.05677312839452897],[125,26,76,-0.06247684001007582],[125,26,77,-0.05821313612830867],[125,26,78,-0.059992652412991426],[125,26,79,-0.062096790069155555],[125,27,64,-0.0161437948453744],[125,27,65,-0.020850457141857542],[125,27,66,-0.028667710742933672],[125,27,67,-0.040778072649255453],[125,27,68,-0.04937983429004947],[125,27,69,-0.05083331717501591],[125,27,70,-0.05434248194875119],[125,27,71,-0.056398929157650934],[125,27,72,-0.05868358027451377],[125,27,73,-0.05676337056533262],[125,27,74,-0.05429397516013332],[125,27,75,-0.05456101932255786],[125,27,76,-0.058771711988348324],[125,27,77,-0.05695340816795075],[125,27,78,-0.060821021795817956],[125,27,79,-0.06274408899393255],[125,28,64,-0.02420834016472867],[125,28,65,-0.024996211909770916],[125,28,66,-0.035411270589260135],[125,28,67,-0.04418732502164943],[125,28,68,-0.05454732456098135],[125,28,69,-0.056165389341477884],[125,28,70,-0.05883597329125384],[125,28,71,-0.060367604235634614],[125,28,72,-0.06457846292242982],[125,28,73,-0.06330039869797954],[125,28,74,-0.0608524428845366],[125,28,75,-0.06053820084623926],[125,28,76,-0.05967979400519188],[125,28,77,-0.0614177183283805],[125,28,78,-0.06622768578035532],[125,28,79,-0.06808832241154589],[125,29,64,-0.025488971909656905],[125,29,65,-0.0269770118215181],[125,29,66,-0.035553715407413145],[125,29,67,-0.039749202285831356],[125,29,68,-0.049614312462809285],[125,29,69,-0.051546680862458005],[125,29,70,-0.053891397116498624],[125,29,71,-0.055660041181917974],[125,29,72,-0.06060358168489449],[125,29,73,-0.058670308526851844],[125,29,74,-0.05735838140354324],[125,29,75,-0.0548164467655705],[125,29,76,-0.05422527632085512],[125,29,77,-0.056600233650618226],[125,29,78,-0.061792310117138885],[125,29,79,-0.06358650125392634],[125,30,64,-0.02571090973911558],[125,30,65,-0.030769917840811678],[125,30,66,-0.03457495685519396],[125,30,67,-0.04010948322066589],[125,30,68,-0.046772492908651805],[125,30,69,-0.04904531743956286],[125,30,70,-0.05188354165864009],[125,30,71,-0.0562906795512389],[125,30,72,-0.06072727234509362],[125,30,73,-0.0599029402581753],[125,30,74,-0.05872847072672041],[125,30,75,-0.056505016681535514],[125,30,76,-0.053741751162058066],[125,30,77,-0.056359758049560324],[125,30,78,-0.06100329191443851],[125,30,79,-0.06374728583289978],[125,31,64,-0.02672965801869079],[125,31,65,-0.033234407829416224],[125,31,66,-0.034481382544663625],[125,31,67,-0.040977699618261434],[125,31,68,-0.047744075409573095],[125,31,69,-0.04767305221886303],[125,31,70,-0.05026680819603649],[125,31,71,-0.057618700410064685],[125,31,72,-0.06171535508069781],[125,31,73,-0.060621482295201756],[125,31,74,-0.06015722804539966],[125,31,75,-0.058881815058889564],[125,31,76,-0.05575082935009762],[125,31,77,-0.055831622332789224],[125,31,78,-0.05634986368872237],[125,31,79,-0.06455500956968035],[125,32,64,-0.018696207668451897],[125,32,65,-0.023355401347395915],[125,32,66,-0.025745794825087154],[125,32,67,-0.03137309689112297],[125,32,68,-0.03747578030283635],[125,32,69,-0.03807048732106441],[125,32,70,-0.04218311586421175],[125,32,71,-0.04888813014045422],[125,32,72,-0.05028568282363187],[125,32,73,-0.05029238415809373],[125,32,74,-0.04995496609201583],[125,32,75,-0.05211020235364386],[125,32,76,-0.04937997725855023],[125,32,77,-0.045736403600177514],[125,32,78,-0.045498067880955104],[125,32,79,-0.05315524756872725],[125,33,64,-0.012365436598926777],[125,33,65,-0.013761804038681075],[125,33,66,-0.017422815065950947],[125,33,67,-0.021724589658652482],[125,33,68,-0.02869894157586289],[125,33,69,-0.03155378779508486],[125,33,70,-0.03815631815235168],[125,33,71,-0.049127791620226235],[125,33,72,-0.05509373755154465],[125,33,73,-0.058434633803363334],[125,33,74,-0.06114403984211822],[125,33,75,-0.06232749515523159],[125,33,76,-0.0608154985765213],[125,33,77,-0.056571309781996704],[125,33,78,-0.05419927597081883],[125,33,79,-0.06131347532562559],[125,34,64,-0.013334613233499687],[125,34,65,-0.015498062921420697],[125,34,66,-0.0176784334345593],[125,34,67,-0.025486398117799403],[125,34,68,-0.030432425057690365],[125,34,69,-0.033065425880190985],[125,34,70,-0.04053980664067158],[125,34,71,-0.05244189722790127],[125,34,72,-0.055469998189869085],[125,34,73,-0.05962909974756388],[125,34,74,-0.06122244221831853],[125,34,75,-0.06129297449632648],[125,34,76,-0.055797736561075756],[125,34,77,-0.05451886011042739],[125,34,78,-0.05452038978307344],[125,34,79,-0.06135139679850443],[125,35,64,-0.014829741856456441],[125,35,65,-0.020163248396005057],[125,35,66,-0.02236519514008628],[125,35,67,-0.030585915217124116],[125,35,68,-0.03415732925721318],[125,35,69,-0.0358965740014319],[125,35,70,-0.04291890905517674],[125,35,71,-0.05067774366618166],[125,35,72,-0.057290267089786615],[125,35,73,-0.06100729664980076],[125,35,74,-0.06269106539901988],[125,35,75,-0.05931419594291715],[125,35,76,-0.05259811268048423],[125,35,77,-0.05085727895454267],[125,35,78,-0.05160559832073895],[125,35,79,-0.05971082821426235],[125,36,64,-0.029328946505153164],[125,36,65,-0.03376597358969252],[125,36,66,-0.03553605445727864],[125,36,67,-0.04119975968624931],[125,36,68,-0.045902468591023066],[125,36,69,-0.04684122359587273],[125,36,70,-0.04903915685565924],[125,36,71,-0.05724595217243987],[125,36,72,-0.06689445161506741],[125,36,73,-0.07054073310042981],[125,36,74,-0.07095778847706088],[125,36,75,-0.06391617772291053],[125,36,76,-0.05842761803491625],[125,36,77,-0.05615333936402994],[125,36,78,-0.05797703442186698],[125,36,79,-0.06517771193402692],[125,37,64,-0.038575805674082975],[125,37,65,-0.04086497863128492],[125,37,66,-0.042876986869919614],[125,37,67,-0.04713895905918347],[125,37,68,-0.052299081932319316],[125,37,69,-0.053140195243511684],[125,37,70,-0.05211557728065372],[125,37,71,-0.054988144648879356],[125,37,72,-0.05903169527567231],[125,37,73,-0.05838870525041143],[125,37,74,-0.05685062212882579],[125,37,75,-0.04989615730765276],[125,37,76,-0.04407140887957363],[125,37,77,-0.04300744611732636],[125,37,78,-0.046873718778647655],[125,37,79,-0.05847248527663729],[125,38,64,-0.04165283857317577],[125,38,65,-0.04452033854267688],[125,38,66,-0.04647040980171406],[125,38,67,-0.04937092681357863],[125,38,68,-0.05624826048531889],[125,38,69,-0.056418119421226015],[125,38,70,-0.05354759205919672],[125,38,71,-0.05574472954598256],[125,38,72,-0.05663777491978243],[125,38,73,-0.056290500959956025],[125,38,74,-0.05290004211931215],[125,38,75,-0.047593702897029175],[125,38,76,-0.04361730483548616],[125,38,77,-0.04254831650970983],[125,38,78,-0.050526464350412886],[125,38,79,-0.05831880648754162],[125,39,64,-0.04572832179024189],[125,39,65,-0.04951276740905798],[125,39,66,-0.05081969638396877],[125,39,67,-0.05121360731367873],[125,39,68,-0.05861407050432445],[125,39,69,-0.05725000696983586],[125,39,70,-0.05740651435043784],[125,39,71,-0.055873110908073884],[125,39,72,-0.05368424052844263],[125,39,73,-0.05077404024763374],[125,39,74,-0.04942289373123461],[125,39,75,-0.04497961115105892],[125,39,76,-0.044349690135475114],[125,39,77,-0.04551778270599918],[125,39,78,-0.0497395146888133],[125,39,79,-0.056286449979633196],[125,40,64,-0.03747591083756936],[125,40,65,-0.04101973280806995],[125,40,66,-0.04044583599375644],[125,40,67,-0.0428937716164914],[125,40,68,-0.04730126752893678],[125,40,69,-0.04868207205386216],[125,40,70,-0.0480889058237097],[125,40,71,-0.045064628904064846],[125,40,72,-0.04349557491522668],[125,40,73,-0.038265526072369244],[125,40,74,-0.036726449276600015],[125,40,75,-0.03336557200051188],[125,40,76,-0.034453136818746066],[125,40,77,-0.03518987022340289],[125,40,78,-0.03929493814935206],[125,40,79,-0.042359484889221116],[125,41,64,-0.03812398157681507],[125,41,65,-0.041391931126984804],[125,41,66,-0.04199768382423659],[125,41,67,-0.0422284381068217],[125,41,68,-0.048132564799158326],[125,41,69,-0.050395216074644256],[125,41,70,-0.051051062287747195],[125,41,71,-0.050712061257773555],[125,41,72,-0.04500450462115177],[125,41,73,-0.038898064021601314],[125,41,74,-0.03763895732364936],[125,41,75,-0.032631059589156436],[125,41,76,-0.03361217033321215],[125,41,77,-0.03450036507287227],[125,41,78,-0.03801612301904414],[125,41,79,-0.0400651459390004],[125,42,64,-0.03902426259687469],[125,42,65,-0.04155289485498581],[125,42,66,-0.04245196183901598],[125,42,67,-0.0465609485334387],[125,42,68,-0.05018923606929987],[125,42,69,-0.05333134693126382],[125,42,70,-0.05604693385317104],[125,42,71,-0.05440892745234038],[125,42,72,-0.048085394721450625],[125,42,73,-0.0391905008850395],[125,42,74,-0.03495971515766233],[125,42,75,-0.033523627934006095],[125,42,76,-0.03447347790225622],[125,42,77,-0.0364544906657448],[125,42,78,-0.03832849591194251],[125,42,79,-0.03786206956847746],[125,43,64,-0.042096341412072205],[125,43,65,-0.041741663854849564],[125,43,66,-0.04480677541981584],[125,43,67,-0.0510213569516553],[125,43,68,-0.05322236272552494],[125,43,69,-0.05543773957016285],[125,43,70,-0.059226913101870865],[125,43,71,-0.05543629084640621],[125,43,72,-0.04966479330032551],[125,43,73,-0.0413416442058533],[125,43,74,-0.035946017971266425],[125,43,75,-0.03642146810856539],[125,43,76,-0.03779053582617453],[125,43,77,-0.03703361801662286],[125,43,78,-0.038642448644697486],[125,43,79,-0.037325169726905055],[125,44,64,-0.05480955091044991],[125,44,65,-0.053283761956404635],[125,44,66,-0.05611750083279243],[125,44,67,-0.060812487791406106],[125,44,68,-0.06330282964388262],[125,44,69,-0.06654088107121432],[125,44,70,-0.06823563009948866],[125,44,71,-0.0648050811670087],[125,44,72,-0.06001922058394933],[125,44,73,-0.052219074730039866],[125,44,74,-0.04993193132292856],[125,44,75,-0.04971613445667605],[125,44,76,-0.04769068821855854],[125,44,77,-0.05095683379849125],[125,44,78,-0.04942689765330742],[125,44,79,-0.04772094981126994],[125,45,64,-0.07803273280107703],[125,45,65,-0.07633867620572517],[125,45,66,-0.07626995139314119],[125,45,67,-0.07619150739444687],[125,45,68,-0.07591027853681696],[125,45,69,-0.07638497406397603],[125,45,70,-0.07677937607393198],[125,45,71,-0.06981054750017099],[125,45,72,-0.0610321399214212],[125,45,73,-0.05244954820473638],[125,45,74,-0.0515928028995625],[125,45,75,-0.0499424093179468],[125,45,76,-0.04493806758082901],[125,45,77,-0.046055642914471825],[125,45,78,-0.044029904555250854],[125,45,79,-0.04100010230919912],[125,46,64,-0.08105529610387968],[125,46,65,-0.07918357366847763],[125,46,66,-0.07883549301153349],[125,46,67,-0.07631237324294014],[125,46,68,-0.07479498950733483],[125,46,69,-0.07539891997927531],[125,46,70,-0.07498552678153032],[125,46,71,-0.07020503483459231],[125,46,72,-0.06002399676799475],[125,46,73,-0.05276474934544566],[125,46,74,-0.048971990316861405],[125,46,75,-0.04876748846370635],[125,46,76,-0.0445310886056655],[125,46,77,-0.0445637727718903],[125,46,78,-0.04374260416706505],[125,46,79,-0.0412098279870802],[125,47,64,-0.08281648629160938],[125,47,65,-0.0809274366124843],[125,47,66,-0.078405426184705],[125,47,67,-0.0759264856179758],[125,47,68,-0.07528967829267579],[125,47,69,-0.07523931944980154],[125,47,70,-0.07483320769299544],[125,47,71,-0.0695423630475311],[125,47,72,-0.06114998814281822],[125,47,73,-0.0534908466243756],[125,47,74,-0.04833285302083319],[125,47,75,-0.04820161033086795],[125,47,76,-0.044039758880904],[125,47,77,-0.04398248148952909],[125,47,78,-0.043396675971930435],[125,47,79,-0.04310234339403096],[125,48,64,-0.0720953416205117],[125,48,65,-0.06782061865930174],[125,48,66,-0.06462259635405919],[125,48,67,-0.061466539021654415],[125,48,68,-0.060427955494320174],[125,48,69,-0.06133527130121068],[125,48,70,-0.060760179636258974],[125,48,71,-0.05536165615756207],[125,48,72,-0.049506617486228005],[125,48,73,-0.04319591250134516],[125,48,74,-0.035409138052475725],[125,48,75,-0.03227250942968929],[125,48,76,-0.03091846476547544],[125,48,77,-0.031013672222903965],[125,48,78,-0.03261142395911579],[125,48,79,-0.03323613485624727],[125,49,64,-0.06401188468475938],[125,49,65,-0.0601342574153203],[125,49,66,-0.05745565326847778],[125,49,67,-0.053633728546072526],[125,49,68,-0.05227529596898356],[125,49,69,-0.05076727579540838],[125,49,70,-0.05398894923041242],[125,49,71,-0.0557608691295091],[125,49,72,-0.0543785949383849],[125,49,73,-0.04925621620014048],[125,49,74,-0.044585602852185935],[125,49,75,-0.04076639178041272],[125,49,76,-0.039033275482787566],[125,49,77,-0.04054605610764869],[125,49,78,-0.03986184742962884],[125,49,79,-0.03928029491266399],[125,50,64,-0.06349107800878132],[125,50,65,-0.05958514878364313],[125,50,66,-0.05745955295613016],[125,50,67,-0.05444373840318417],[125,50,68,-0.053734182404004474],[125,50,69,-0.05186395041770664],[125,50,70,-0.05386127102969919],[125,50,71,-0.05686560621618797],[125,50,72,-0.05311315670878107],[125,50,73,-0.049924477232704045],[125,50,74,-0.04608467921031574],[125,50,75,-0.04352755321788826],[125,50,76,-0.043117743141967896],[125,50,77,-0.04329198134843401],[125,50,78,-0.04347589492854423],[125,50,79,-0.0410985831930869],[125,51,64,-0.06296862745100568],[125,51,65,-0.060087566228680014],[125,51,66,-0.05801165494054249],[125,51,67,-0.05794756337223955],[125,51,68,-0.05427597129870866],[125,51,69,-0.05165804920537634],[125,51,70,-0.05579721429148991],[125,51,71,-0.05692399215366564],[125,51,72,-0.05421356587261558],[125,51,73,-0.053440054591681885],[125,51,74,-0.048334469323758816],[125,51,75,-0.04536212954622193],[125,51,76,-0.04499560322324733],[125,51,77,-0.045756291475810895],[125,51,78,-0.04399627941299532],[125,51,79,-0.04284827768039551],[125,52,64,-0.010866539034144224],[125,52,65,-0.009006034826094855],[125,52,66,-0.007868385232621344],[125,52,67,-0.010038221789424207],[125,52,68,-0.0075415739555664],[125,52,69,-0.004963914091115157],[125,52,70,-0.0071267480395150185],[125,52,71,-0.0067836855996386836],[125,52,72,-0.00574652558994429],[125,52,73,-0.004356435949001258],[125,52,74,-0.0011235630651021677],[125,52,75,0.0016692237857434122],[125,52,76,0.005216299512420447],[125,52,77,0.0031591097406113156],[125,52,78,0.0033593221969696607],[125,52,79,0.004153262756512371],[125,53,64,-0.00584652415503939],[125,53,65,-0.005300967512441523],[125,53,66,-0.004865403590336381],[125,53,67,-0.008446092681755446],[125,53,68,-0.005247323532553555],[125,53,69,-0.0060137550265179085],[125,53,70,-0.0057215375756718145],[125,53,71,-0.004615315471053094],[125,53,72,-0.0036572292557022212],[125,53,73,-0.004179117946259858],[125,53,74,-0.001041420723007086],[125,53,75,0.0016737844031662341],[125,53,76,0.005112467810280574],[125,53,77,0.003194928088445459],[125,53,78,0.00418622028437482],[125,53,79,0.003993955052244619],[125,54,64,-0.0075997376508337156],[125,54,65,-0.006503494743029525],[125,54,66,-0.00962331240891437],[125,54,67,-0.011545364943756908],[125,54,68,-0.009643792897949477],[125,54,69,-0.007462954462411908],[125,54,70,-0.008431518445828734],[125,54,71,-0.005169415871496247],[125,54,72,-0.004384526135438355],[125,54,73,-0.005301852620835407],[125,54,74,-0.005042571870733953],[125,54,75,7.648562543280113E-4],[125,54,76,0.005906795987570684],[125,54,77,0.004682962518069794],[125,54,78,0.004671988906463809],[125,54,79,0.004942740601853707],[125,55,64,-0.008142605746106757],[125,55,65,-0.008770460891902615],[125,55,66,-0.0133282297001934],[125,55,67,-0.012502624439900606],[125,55,68,-0.012071603592000574],[125,55,69,-0.009495144976888525],[125,55,70,-0.00875479394619949],[125,55,71,-0.007077050169297189],[125,55,72,-0.004549814104464561],[125,55,73,-0.0045930312088123815],[125,55,74,-0.0054846931904938],[125,55,75,-4.3791870644971365E-4],[125,55,76,0.0037217444740128003],[125,55,77,0.002964115980237353],[125,55,78,0.003591207237230304],[125,55,79,0.005406193532182496],[125,56,64,0.00476037034051513],[125,56,65,0.0010311048566953862],[125,56,66,3.998232715983485E-4],[125,56,67,3.851098973164935E-5],[125,56,68,-0.0020573205184450383],[125,56,69,6.993282661130196E-5],[125,56,70,0.0012456694825654369],[125,56,71,0.0026622092257894137],[125,56,72,0.006172096332941801],[125,56,73,0.010571714542572608],[125,56,74,0.007233925916272782],[125,56,75,0.012443142101470073],[125,56,76,0.016538441941276377],[125,56,77,0.01508256178415096],[125,56,78,0.01479244436509275],[125,56,79,0.01841819824895935],[125,57,64,0.007043937295837216],[125,57,65,-0.002520558402604317],[125,57,66,-0.00765841288805319],[125,57,67,-0.010930854874144691],[125,57,68,-0.01464828246196423],[125,57,69,-0.011881228903365182],[125,57,70,-0.008425635759107375],[125,57,71,-0.007431311005074187],[125,57,72,-0.0032988149195974925],[125,57,73,0.0015986421222221603],[125,57,74,0.004091752633278517],[125,57,75,0.005560122652915417],[125,57,76,0.00989351041954642],[125,57,77,0.009260187355613486],[125,57,78,0.00875261314799361],[125,57,79,0.011599088622302911],[125,58,64,0.05217088080748039],[125,58,65,0.0404314119232034],[125,58,66,0.03123410459341916],[125,58,67,0.029591651390377005],[125,58,68,0.024624958575824182],[125,58,69,0.029601122505792513],[125,58,70,0.0326765817893144],[125,58,71,0.034387655905156925],[125,58,72,0.04101958773765396],[125,58,73,0.04403266035762146],[125,58,74,0.04352025383033048],[125,58,75,0.04606239496459183],[125,58,76,0.048159470991906594],[125,58,77,0.05060875193677419],[125,58,78,0.04782351610036065],[125,58,79,0.046146213117577495],[125,59,64,0.049992102708242336],[125,59,65,0.03889983430082124],[125,59,66,0.02769789921135757],[125,59,67,0.02612428987136102],[125,59,68,0.022325808735454658],[125,59,69,0.025388288551613014],[125,59,70,0.03117159871282417],[125,59,71,0.0337323290668559],[125,59,72,0.0418686326529014],[125,59,73,0.043813837115562485],[125,59,74,0.04344169522161592],[125,59,75,0.04677502618499274],[125,59,76,0.04942062928146723],[125,59,77,0.05205970394269391],[125,59,78,0.04725322897043335],[125,59,79,0.04394277707068789],[125,60,64,0.039295313327509615],[125,60,65,0.027656315404242862],[125,60,66,0.017938130962452337],[125,60,67,0.01474790502473275],[125,60,68,0.010870067093391458],[125,60,69,0.015232241619419704],[125,60,70,0.021255311955883566],[125,60,71,0.025099802493153744],[125,60,72,0.033420196285355],[125,60,73,0.033477406846486785],[125,60,74,0.0340386646802482],[125,60,75,0.037198701643162135],[125,60,76,0.04059226501275612],[125,60,77,0.042748867041530636],[125,60,78,0.037136997603239824],[125,60,79,0.03344087516338806],[125,61,64,0.038556985098132324],[125,61,65,0.031097428295145405],[125,61,66,0.025938042226361008],[125,61,67,0.027106778032782955],[125,61,68,0.025868420422774666],[125,61,69,0.026818938522754562],[125,61,70,0.0337901802495329],[125,61,71,0.03945973629479911],[125,61,72,0.043991986252196705],[125,61,73,0.046320413336871605],[125,61,74,0.04806474710557275],[125,61,75,0.05346894562544542],[125,61,76,0.058256205783993986],[125,61,77,0.054771901808633394],[125,61,78,0.05372373016303306],[125,61,79,0.05145843398680322],[125,62,64,0.03659958362409749],[125,62,65,0.03072327765044594],[125,62,66,0.02640709490656612],[125,62,67,0.02690142597863751],[125,62,68,0.026542141060304794],[125,62,69,0.027398905937175005],[125,62,70,0.03190497747092988],[125,62,71,0.03667422163096354],[125,62,72,0.04028018157340016],[125,62,73,0.044162819989495214],[125,62,74,0.04465105524917763],[125,62,75,0.05470019465515105],[125,62,76,0.05791686383020998],[125,62,77,0.057164042568504644],[125,62,78,0.055157511826820826],[125,62,79,0.05133674672841526],[125,63,64,-0.033863852053245755],[125,63,65,-0.04025105624681932],[125,63,66,-0.04077892812109364],[125,63,67,-0.03929574903068249],[125,63,68,-0.04136532424141691],[125,63,69,-0.0372348612792497],[125,63,70,-0.03357576705154061],[125,63,71,-0.029422194909425797],[125,63,72,-0.02517622281139821],[125,63,73,-0.020832425423742126],[125,63,74,-0.015235654147581573],[125,63,75,-0.004006746821143908],[125,63,76,-7.47853239641133E-5],[125,63,77,-0.002113805451070566],[125,63,78,-5.769071598278053E-4],[125,63,79,-0.0020589452574171774],[125,64,64,-0.025159608860816376],[125,64,65,-0.031757018067352746],[125,64,66,-0.03161486507307831],[125,64,67,-0.0323806836350935],[125,64,68,-0.03319302307240979],[125,64,69,-0.03070032922459913],[125,64,70,-0.027038343476916776],[125,64,71,-0.02111490890228876],[125,64,72,-0.015227563432157393],[125,64,73,-0.013220827553497391],[125,64,74,-0.006395808973972211],[125,64,75,0.00504176893799263],[125,64,76,0.007734805225130134],[125,64,77,0.0033060332303696954],[125,64,78,0.008142672495935657],[125,64,79,0.00847950153767632],[125,65,64,-0.025822871050990834],[125,65,65,-0.031074337439071162],[125,65,66,-0.03447804100782699],[125,65,67,-0.03561484073961865],[125,65,68,-0.039417427003289665],[125,65,69,-0.035328306903155915],[125,65,70,-0.030660317459443184],[125,65,71,-0.027152493017031293],[125,65,72,-0.01954396176376759],[125,65,73,-0.014027507875173095],[125,65,74,-0.006519041468781572],[125,65,75,3.665829311098323E-4],[125,65,76,0.0028399607099146157],[125,65,77,0.0018488075389849895],[125,65,78,0.006560691573198343],[125,65,79,0.010632456820226524],[125,66,64,-0.03229279891537619],[125,66,65,-0.03776847389004054],[125,66,66,-0.04468981450607991],[125,66,67,-0.04725980349801],[125,66,68,-0.04851312039766166],[125,66,69,-0.04445425906101752],[125,66,70,-0.04289658832026996],[125,66,71,-0.03785723660787815],[125,66,72,-0.028123210821754285],[125,66,73,-0.02049557447898384],[125,66,74,-0.015085104363550664],[125,66,75,-0.008533014611767836],[125,66,76,-0.006879643244718611],[125,66,77,-0.005127392996496893],[125,66,78,1.3039272830869808E-4],[125,66,79,0.0012332465288949768],[125,67,64,-0.033402221770527527],[125,67,65,-0.03907780300699684],[125,67,66,-0.047214517274956846],[125,67,67,-0.050102514690944955],[125,67,68,-0.048382923318449206],[125,67,69,-0.0491135288400362],[125,67,70,-0.04683104035695543],[125,67,71,-0.04117965563652978],[125,67,72,-0.03246427700991175],[125,67,73,-0.021184125274530743],[125,67,74,-0.016761431641346886],[125,67,75,-0.013465970922163215],[125,67,76,-0.008970677691868656],[125,67,77,-0.006281866369116887],[125,67,78,-0.0035587872349447103],[125,67,79,-0.0027181939227822888],[125,68,64,-0.12443744878346297],[125,68,65,-0.13057728299778024],[125,68,66,-0.14195196719522055],[125,68,67,-0.1453418833085929],[125,68,68,-0.1429853791650199],[125,68,69,-0.14612858921048544],[125,68,70,-0.14343134452536888],[125,68,71,-0.13983871785063323],[125,68,72,-0.1287277289688336],[125,68,73,-0.11889704594634784],[125,68,74,-0.11178445096693018],[125,68,75,-0.11161704471172983],[125,68,76,-0.10725888653318028],[125,68,77,-0.10130206358088875],[125,68,78,-0.099825676075751],[125,68,79,-0.10026328128706052],[125,69,64,-0.12819690085822777],[125,69,65,-0.13790080624898476],[125,69,66,-0.1516243794186898],[125,69,67,-0.15935391044899508],[125,69,68,-0.1606600894041379],[125,69,69,-0.16248717844594865],[125,69,70,-0.15931887747373127],[125,69,71,-0.15400254542531053],[125,69,72,-0.14516646281902829],[125,69,73,-0.14006082803539502],[125,69,74,-0.13089494437135682],[125,69,75,-0.129513350473277],[125,69,76,-0.12461098660211431],[125,69,77,-0.11769750377206226],[125,69,78,-0.1156556382303921],[125,69,79,-0.11567073508950401],[125,70,64,-0.12853560068889322],[125,70,65,-0.14109174047936546],[125,70,66,-0.15288407162466666],[125,70,67,-0.16200969455067915],[125,70,68,-0.16556694839916314],[125,70,69,-0.16317738503367346],[125,70,70,-0.1575015211701167],[125,70,71,-0.15325035424060535],[125,70,72,-0.14712112065411548],[125,70,73,-0.14338167494075527],[125,70,74,-0.1362880976742594],[125,70,75,-0.13386932489670067],[125,70,76,-0.12696605199778505],[125,70,77,-0.12162429368863983],[125,70,78,-0.11737815000339158],[125,70,79,-0.11806713010101541],[125,71,64,-0.11997355297907807],[125,71,65,-0.13572231523358283],[125,71,66,-0.14816913314541105],[125,71,67,-0.15596039886036403],[125,71,68,-0.1603376501312752],[125,71,69,-0.15763537767031216],[125,71,70,-0.14917112112118103],[125,71,71,-0.14598974343071222],[125,71,72,-0.14081322505825244],[125,71,73,-0.13951174780250236],[125,71,74,-0.13126820321021743],[125,71,75,-0.1269659708555421],[125,71,76,-0.12068473214439417],[125,71,77,-0.11639049764458008],[125,71,78,-0.11072689087114643],[125,71,79,-0.1109392252444767],[125,72,64,-0.12492117341167285],[125,72,65,-0.13810360496387178],[125,72,66,-0.15013323755454275],[125,72,67,-0.158478571199922],[125,72,68,-0.16384596827739395],[125,72,69,-0.15801294440479177],[125,72,70,-0.1513818252477123],[125,72,71,-0.1478724879804891],[125,72,72,-0.14383012506379542],[125,72,73,-0.14028052816972852],[125,72,74,-0.13465149940807922],[125,72,75,-0.13024137252128723],[125,72,76,-0.12145262500323699],[125,72,77,-0.11644619958044798],[125,72,78,-0.11333813586740796],[125,72,79,-0.11418689069394304],[125,73,64,-0.13844784249365397],[125,73,65,-0.14420145509499832],[125,73,66,-0.14831494203797196],[125,73,67,-0.15281504817890298],[125,73,68,-0.15504234476281678],[125,73,69,-0.14873407200102967],[125,73,70,-0.14318130220259515],[125,73,71,-0.14056108735340245],[125,73,72,-0.13792330817774942],[125,73,73,-0.13144943193006692],[125,73,74,-0.12660723850684075],[125,73,75,-0.12230532867406217],[125,73,76,-0.11594305110197736],[125,73,77,-0.11087830256428988],[125,73,78,-0.11086045306925368],[125,73,79,-0.11791127956473921],[125,74,64,-0.14758983217826283],[125,74,65,-0.14989626431490485],[125,74,66,-0.15366544996030834],[125,74,67,-0.15825505023132683],[125,74,68,-0.16035015347917636],[125,74,69,-0.15564767851550415],[125,74,70,-0.15078584922151145],[125,74,71,-0.14839578263565556],[125,74,72,-0.14502451447550951],[125,74,73,-0.13832418258318957],[125,74,74,-0.1330268838350485],[125,74,75,-0.12860667829025896],[125,74,76,-0.12393040943760453],[125,74,77,-0.12034515882228224],[125,74,78,-0.1195469831958362],[125,74,79,-0.12812145006999692],[125,75,64,-0.14829575151045818],[125,75,65,-0.15038712877582994],[125,75,66,-0.15309550684355366],[125,75,67,-0.15522068307051612],[125,75,68,-0.15938285747888697],[125,75,69,-0.15509324052730278],[125,75,70,-0.15206978239144603],[125,75,71,-0.14983955893778914],[125,75,72,-0.14563684855498177],[125,75,73,-0.13841486827221025],[125,75,74,-0.1335494790546272],[125,75,75,-0.13065858944962724],[125,75,76,-0.1282426338343327],[125,75,77,-0.1251470898799827],[125,75,78,-0.1259651512114162],[125,75,79,-0.13087443745213534],[125,76,64,-0.1434483820629025],[125,76,65,-0.1479830727841742],[125,76,66,-0.15015910418635964],[125,76,67,-0.15078665086947557],[125,76,68,-0.15648226928806203],[125,76,69,-0.15268290313439117],[125,76,70,-0.15084700147096844],[125,76,71,-0.14760208543785186],[125,76,72,-0.1467006319396022],[125,76,73,-0.13985894733583032],[125,76,74,-0.13614428232309736],[125,76,75,-0.1351018065461531],[125,76,76,-0.13265141809152473],[125,76,77,-0.131620388602934],[125,76,78,-0.13096253256817283],[125,76,79,-0.13298805595444937],[125,77,64,-0.1419673885758108],[125,77,65,-0.14393930230680763],[125,77,66,-0.14490677176687206],[125,77,67,-0.1476970008830561],[125,77,68,-0.1523034711731614],[125,77,69,-0.14931246999729048],[125,77,70,-0.14893997410411342],[125,77,71,-0.14587930325365883],[125,77,72,-0.1450549886430722],[125,77,73,-0.14007447864736466],[125,77,74,-0.1364070926440218],[125,77,75,-0.13745837515120057],[125,77,76,-0.13444812435393338],[125,77,77,-0.13507849331166877],[125,77,78,-0.13282714621408576],[125,77,79,-0.13540546330884823],[125,78,64,-0.14463701670718793],[125,78,65,-0.143758321408889],[125,78,66,-0.1457723827202925],[125,78,67,-0.1465060308768563],[125,78,68,-0.14843498449150974],[125,78,69,-0.14909077753568176],[125,78,70,-0.15053005445785173],[125,78,71,-0.14995705139548166],[125,78,72,-0.1479110130161561],[125,78,73,-0.14427047434849133],[125,78,74,-0.14029731930824332],[125,78,75,-0.1424059038804955],[125,78,76,-0.14030216674969054],[125,78,77,-0.13886045095315872],[125,78,78,-0.14035354444891374],[125,78,79,-0.1397632202547574],[125,79,64,-0.13587422915188058],[125,79,65,-0.1377366370616753],[125,79,66,-0.1361544354629985],[125,79,67,-0.13648318218405564],[125,79,68,-0.13924453705652673],[125,79,69,-0.14175444344443588],[125,79,70,-0.14227035276187278],[125,79,71,-0.143050312397332],[125,79,72,-0.14030489704177074],[125,79,73,-0.13799978388113565],[125,79,74,-0.1354845939135282],[125,79,75,-0.13729563583232918],[125,79,76,-0.13645115596291882],[125,79,77,-0.13388315842132847],[125,79,78,-0.1379598564873292],[125,79,79,-0.13893189045705684],[125,80,64,-0.13992867351292523],[125,80,65,-0.13973113057705847],[125,80,66,-0.1369211576177252],[125,80,67,-0.1363819245196457],[125,80,68,-0.14014931744597786],[125,80,69,-0.14228651984953894],[125,80,70,-0.14203292963932077],[125,80,71,-0.14275905766409147],[125,80,72,-0.1402295921627023],[125,80,73,-0.13933797776340334],[125,80,74,-0.13749385861288393],[125,80,75,-0.14000461136238102],[125,80,76,-0.14015907918193976],[125,80,77,-0.13904577841221266],[125,80,78,-0.14339195251497847],[125,80,79,-0.14097836306570663],[125,81,64,-0.1460505068658401],[125,81,65,-0.14063820556127196],[125,81,66,-0.13553975864425494],[125,81,67,-0.13299558390449767],[125,81,68,-0.13390592244893257],[125,81,69,-0.13648350688551678],[125,81,70,-0.1376732543946789],[125,81,71,-0.1400603894877892],[125,81,72,-0.14102438067347844],[125,81,73,-0.1416956491888027],[125,81,74,-0.1436415892076202],[125,81,75,-0.1457674693953157],[125,81,76,-0.14605604181732826],[125,81,77,-0.1496062038241435],[125,81,78,-0.1533270586759244],[125,81,79,-0.1518432325087286],[125,82,64,-0.15402505907167144],[125,82,65,-0.14705600881247524],[125,82,66,-0.14028074159090403],[125,82,67,-0.13991759258186132],[125,82,68,-0.1396713453332567],[125,82,69,-0.1436957864630449],[125,82,70,-0.1436668056345839],[125,82,71,-0.14322093301208924],[125,82,72,-0.14649364641182025],[125,82,73,-0.14869405734427268],[125,82,74,-0.15455891758118182],[125,82,75,-0.15502135920445553],[125,82,76,-0.15652962832553063],[125,82,77,-0.16076503086939556],[125,82,78,-0.1634954026934391],[125,82,79,-0.16094856233815413],[125,83,64,-0.15418209227051025],[125,83,65,-0.14651576152532497],[125,83,66,-0.14170951971092546],[125,83,67,-0.14026875348580045],[125,83,68,-0.14172155080006762],[125,83,69,-0.14473883234476062],[125,83,70,-0.14405068751721556],[125,83,71,-0.14321362931600023],[125,83,72,-0.14765707666581784],[125,83,73,-0.15379007211203172],[125,83,74,-0.1589594103743786],[125,83,75,-0.1583743454414213],[125,83,76,-0.16060321712375722],[125,83,77,-0.16685690372219614],[125,83,78,-0.16626591819398373],[125,83,79,-0.16199353356849291],[125,84,64,-0.1459567673380595],[125,84,65,-0.14093605209711768],[125,84,66,-0.13741967344770728],[125,84,67,-0.1366550843599649],[125,84,68,-0.14074350238402183],[125,84,69,-0.14320742998625213],[125,84,70,-0.14440040202620089],[125,84,71,-0.1461016981275778],[125,84,72,-0.15153958968669254],[125,84,73,-0.1556769166516324],[125,84,74,-0.1623257527768898],[125,84,75,-0.16284034041948175],[125,84,76,-0.16634262110879214],[125,84,77,-0.1685778144835527],[125,84,78,-0.16981841528255504],[125,84,79,-0.16230827977971832],[125,85,64,-0.1348143795974291],[125,85,65,-0.13977320881367938],[125,85,66,-0.14368187516342068],[125,85,67,-0.14548673293352676],[125,85,68,-0.14910854348481103],[125,85,69,-0.1521169991392164],[125,85,70,-0.15201585400416054],[125,85,71,-0.15595204483604885],[125,85,72,-0.1542941246582466],[125,85,73,-0.1560451977397881],[125,85,74,-0.16119463875061074],[125,85,75,-0.1636184560854556],[125,85,76,-0.16511563503294682],[125,85,77,-0.1645376512105774],[125,85,78,-0.16126289775383823],[125,85,79,-0.15253034479842947],[125,86,64,-0.13548254322123102],[125,86,65,-0.14149356479582295],[125,86,66,-0.14636793520234803],[125,86,67,-0.147222051174202],[125,86,68,-0.1513645304350183],[125,86,69,-0.15142327614636464],[125,86,70,-0.15358483823491095],[125,86,71,-0.1610210889875361],[125,86,72,-0.15796904317741545],[125,86,73,-0.15591176396175666],[125,86,74,-0.16371617084155932],[125,86,75,-0.16531734513815013],[125,86,76,-0.16682424490267117],[125,86,77,-0.16801324359065548],[125,86,78,-0.16482241972480563],[125,86,79,-0.15335013779407303],[125,87,64,-0.1283773076816038],[125,87,65,-0.13559690439756733],[125,87,66,-0.14139626893665436],[125,87,67,-0.14268673700622211],[125,87,68,-0.14454838084411342],[125,87,69,-0.1432135571726727],[125,87,70,-0.14693883279917674],[125,87,71,-0.15445994942642888],[125,87,72,-0.15239792432412264],[125,87,73,-0.15213966223259426],[125,87,74,-0.15908134734851204],[125,87,75,-0.15893075505067988],[125,87,76,-0.15945742754408662],[125,87,77,-0.16449620871628978],[125,87,78,-0.16203383020279827],[125,87,79,-0.15147802656155068],[125,88,64,-0.1292871225580975],[125,88,65,-0.137016841022303],[125,88,66,-0.14402914405598116],[125,88,67,-0.1467966472115774],[125,88,68,-0.1473535853161783],[125,88,69,-0.14610937180225975],[125,88,70,-0.14892150040993365],[125,88,71,-0.15502778073521406],[125,88,72,-0.15592495762115405],[125,88,73,-0.15812755805021297],[125,88,74,-0.1633044759007731],[125,88,75,-0.1627638726560255],[125,88,76,-0.16133033462790103],[125,88,77,-0.16319048751234708],[125,88,78,-0.16304735921843055],[125,88,79,-0.15351850017498603],[125,89,64,-0.12812744763031114],[125,89,65,-0.1382589643083057],[125,89,66,-0.14587526041324464],[125,89,67,-0.14981672788346778],[125,89,68,-0.15202124532998507],[125,89,69,-0.15070136388873256],[125,89,70,-0.15198967540523295],[125,89,71,-0.1559055012897237],[125,89,72,-0.15924498798251302],[125,89,73,-0.16207949089522838],[125,89,74,-0.16830413093627758],[125,89,75,-0.16598147204173203],[125,89,76,-0.16333877802697416],[125,89,77,-0.16501837560722457],[125,89,78,-0.16337475913042493],[125,89,79,-0.15395393480780378],[125,90,64,-0.13622960455217858],[125,90,65,-0.1438662229340565],[125,90,66,-0.15423877798444696],[125,90,67,-0.16035164511434138],[125,90,68,-0.16271698172925375],[125,90,69,-0.15955850743085742],[125,90,70,-0.158851203386157],[125,90,71,-0.16190289059225135],[125,90,72,-0.16638426538088308],[125,90,73,-0.17059184958184842],[125,90,74,-0.1774714126092628],[125,90,75,-0.17430441259749174],[125,90,76,-0.17338611479018717],[125,90,77,-0.1731294990940417],[125,90,78,-0.1686315863566955],[125,90,79,-0.15973492042333784],[125,91,64,-0.13379687416793706],[125,91,65,-0.14461564669707555],[125,91,66,-0.15751213490726926],[125,91,67,-0.1628029928474332],[125,91,68,-0.16391367579942492],[125,91,69,-0.16451122285347247],[125,91,70,-0.15946860786391648],[125,91,71,-0.16317248570853932],[125,91,72,-0.16854459149295886],[125,91,73,-0.1710401879229297],[125,91,74,-0.17691400837220828],[125,91,75,-0.1755309134439435],[125,91,76,-0.17588828315045607],[125,91,77,-0.17764293279335275],[125,91,78,-0.16920025466475344],[125,91,79,-0.1601464881256868],[125,92,64,-0.1311423026492015],[125,92,65,-0.14296775862711084],[125,92,66,-0.15763000609407296],[125,92,67,-0.1659050817539489],[125,92,68,-0.1689452449514282],[125,92,69,-0.16766450212061274],[125,92,70,-0.164007608235003],[125,92,71,-0.170032429364612],[125,92,72,-0.17536523440315605],[125,92,73,-0.17626518203598396],[125,92,74,-0.18129337835793063],[125,92,75,-0.1811443934188174],[125,92,76,-0.18220985609786597],[125,92,77,-0.18532041031369156],[125,92,78,-0.17470269941155026],[125,92,79,-0.1651371871370644],[125,93,64,-0.1263261947648929],[125,93,65,-0.13949034466853028],[125,93,66,-0.15408701218473342],[125,93,67,-0.16334907466713702],[125,93,68,-0.16618976725743762],[125,93,69,-0.16701902061754115],[125,93,70,-0.1674950692354848],[125,93,71,-0.17372893370817305],[125,93,72,-0.18473521829423456],[125,93,73,-0.1863084395370293],[125,93,74,-0.19011985844325885],[125,93,75,-0.1910353759242011],[125,93,76,-0.1942314577213985],[125,93,77,-0.19532137169701225],[125,93,78,-0.18485334777675924],[125,93,79,-0.17410029471617028],[125,94,64,-0.1296427800246106],[125,94,65,-0.1406728295875556],[125,94,66,-0.1544003632952945],[125,94,67,-0.1633558981612111],[125,94,68,-0.1665322130323223],[125,94,69,-0.16590206744680877],[125,94,70,-0.17028608589480673],[125,94,71,-0.17910144708921466],[125,94,72,-0.1874772556316426],[125,94,73,-0.1894638919199753],[125,94,74,-0.19153468326340337],[125,94,75,-0.19370814142656795],[125,94,76,-0.1943492993298827],[125,94,77,-0.19738777430816895],[125,94,78,-0.18484397191410826],[125,94,79,-0.1761196936941742],[125,95,64,-0.1241423574094055],[125,95,65,-0.13717485769121063],[125,95,66,-0.1495856179483096],[125,95,67,-0.15512207452536977],[125,95,68,-0.15926359470385631],[125,95,69,-0.16083225260811027],[125,95,70,-0.16551410626252344],[125,95,71,-0.17235967446081005],[125,95,72,-0.18350854189349441],[125,95,73,-0.18615531453038633],[125,95,74,-0.1876178848078059],[125,95,75,-0.1902184249063386],[125,95,76,-0.18976824681700025],[125,95,77,-0.18880290334429628],[125,95,78,-0.178670439623103],[125,95,79,-0.1714024317152163],[125,96,64,-0.1290347624120561],[125,96,65,-0.14208611396611143],[125,96,66,-0.15249178663092605],[125,96,67,-0.15679070577390755],[125,96,68,-0.16051582260760472],[125,96,69,-0.16454453198131097],[125,96,70,-0.16872700986069494],[125,96,71,-0.17463795137756516],[125,96,72,-0.1828079316744071],[125,96,73,-0.18489428594483676],[125,96,74,-0.18873077739884203],[125,96,75,-0.18928511573529133],[125,96,76,-0.1920625237756296],[125,96,77,-0.1892771736073155],[125,96,78,-0.17844398373855724],[125,96,79,-0.17300196282633784],[125,97,64,-0.1429254955496178],[125,97,65,-0.1511489168098154],[125,97,66,-0.15914717442184317],[125,97,67,-0.16082366254471103],[125,97,68,-0.16165872469670467],[125,97,69,-0.16839780916660885],[125,97,70,-0.17148448584673862],[125,97,71,-0.17184211101229932],[125,97,72,-0.17240315802341438],[125,97,73,-0.17140169128559601],[125,97,74,-0.17534718261065033],[125,97,75,-0.17956613394437096],[125,97,76,-0.1816941095554771],[125,97,77,-0.18011865464657578],[125,97,78,-0.17179315049366814],[125,97,79,-0.16562424657532332],[125,98,64,-0.15217181026753104],[125,98,65,-0.15948118340979925],[125,98,66,-0.16452751252735523],[125,98,67,-0.16751502849926103],[125,98,68,-0.17187449593912973],[125,98,69,-0.17671099676492946],[125,98,70,-0.17664127266885155],[125,98,71,-0.17709318616795633],[125,98,72,-0.17441132858018854],[125,98,73,-0.17346413896841273],[125,98,74,-0.1792406316896521],[125,98,75,-0.18406140264014006],[125,98,76,-0.18558031002488062],[125,98,77,-0.18346166752671422],[125,98,78,-0.17779811726434674],[125,98,79,-0.1712667400239094],[125,99,64,-0.1530551146918673],[125,99,65,-0.158242575745354],[125,99,66,-0.16294044881555975],[125,99,67,-0.167418589630395],[125,99,68,-0.17230280103916162],[125,99,69,-0.17660355249783283],[125,99,70,-0.17516246790089318],[125,99,71,-0.17519155315079113],[125,99,72,-0.17428755046816485],[125,99,73,-0.17473412052367637],[125,99,74,-0.1790791659141773],[125,99,75,-0.18346539275845544],[125,99,76,-0.18417249827681303],[125,99,77,-0.18096057007236308],[125,99,78,-0.1760803893958174],[125,99,79,-0.16952117199640845],[125,100,64,-0.13389462217632078],[125,100,65,-0.12884426418730416],[125,100,66,-0.12965859451634384],[125,100,67,-0.12678647690890618],[125,100,68,-0.12509488459186663],[125,100,69,-0.12487420563670447],[125,100,70,-0.11820620388061844],[125,100,71,-0.11368888572679718],[125,100,72,-0.11204525316849574],[125,100,73,-0.11457719859179928],[125,100,74,-0.11682175794153925],[125,100,75,-0.12146724519717048],[125,100,76,-0.12074828792828285],[125,100,77,-0.11860854290221094],[125,100,78,-0.11269143886451155],[125,100,79,-0.10643667027933855],[125,101,64,-0.13532364217909448],[125,101,65,-0.12982642617860835],[125,101,66,-0.13119679007118168],[125,101,67,-0.12850841491574977],[125,101,68,-0.12490091831668369],[125,101,69,-0.12485510606252151],[125,101,70,-0.11969078418485554],[125,101,71,-0.11439647592103579],[125,101,72,-0.11321230833141166],[125,101,73,-0.11566127095502986],[125,101,74,-0.11954078683594954],[125,101,75,-0.12165832176041338],[125,101,76,-0.12024074408149796],[125,101,77,-0.11702595918920033],[125,101,78,-0.1105926882297215],[125,101,79,-0.10656677687358992],[125,102,64,-0.13558932117842137],[125,102,65,-0.13079763479132625],[125,102,66,-0.1327626906974054],[125,102,67,-0.12880329857561762],[125,102,68,-0.12522779187302835],[125,102,69,-0.12308368368337531],[125,102,70,-0.11812223225305302],[125,102,71,-0.11591569070413613],[125,102,72,-0.11586235820960405],[125,102,73,-0.11847610303023079],[125,102,74,-0.12189507958735618],[125,102,75,-0.1216602682565829],[125,102,76,-0.11796074125808527],[125,102,77,-0.11476460512484078],[125,102,78,-0.11018811885778715],[125,102,79,-0.10745314627566183],[125,103,64,-0.12985864077234158],[125,103,65,-0.12615813592786512],[125,103,66,-0.12429222644976723],[125,103,67,-0.12199238605243978],[125,103,68,-0.11972479417583559],[125,103,69,-0.11509243268232236],[125,103,70,-0.1139200533591476],[125,103,71,-0.113959420725397],[125,103,72,-0.11299868698627086],[125,103,73,-0.11690010851993496],[125,103,74,-0.12016005082813654],[125,103,75,-0.11736065379774355],[125,103,76,-0.11348772943052074],[125,103,77,-0.10959817445130073],[125,103,78,-0.10676312268398307],[125,103,79,-0.10437297291481853],[125,104,64,-0.13384329798388728],[125,104,65,-0.12718144130615724],[125,104,66,-0.12519276077487704],[125,104,67,-0.12190596788832556],[125,104,68,-0.11969186061196808],[125,104,69,-0.11704619234230522],[125,104,70,-0.11792328592409468],[125,104,71,-0.11606447776446632],[125,104,72,-0.11566445832799419],[125,104,73,-0.11759515012378947],[125,104,74,-0.1207287062828313],[125,104,75,-0.11718825216918016],[125,104,76,-0.11256439421674437],[125,104,77,-0.11069744246460739],[125,104,78,-0.10937945499089716],[125,104,79,-0.10812222101266364],[125,105,64,-0.12669280816446674],[125,105,65,-0.12445646280112499],[125,105,66,-0.12220835429354862],[125,105,67,-0.12176419243355259],[125,105,68,-0.12179167495788534],[125,105,69,-0.12042432473847177],[125,105,70,-0.11875770291862103],[125,105,71,-0.12237782747296642],[125,105,72,-0.12582083018143597],[125,105,73,-0.12669846421207234],[125,105,74,-0.1286482024658219],[125,105,75,-0.1255051683526543],[125,105,76,-0.11922954181381223],[125,105,77,-0.11421666664139263],[125,105,78,-0.10910197143597725],[125,105,79,-0.10420661759340177],[125,106,64,-0.13445470794956862],[125,106,65,-0.13286221581898877],[125,106,66,-0.13035899149642055],[125,106,67,-0.131691847584462],[125,106,68,-0.13045991602141435],[125,106,69,-0.1280917929532623],[125,106,70,-0.12622284756154406],[125,106,71,-0.12984306180627372],[125,106,72,-0.13214228153654606],[125,106,73,-0.13237356803953262],[125,106,74,-0.13220305338253577],[125,106,75,-0.13175394504567212],[125,106,76,-0.12486699846055864],[125,106,77,-0.1213755955612387],[125,106,78,-0.1121621166781649],[125,106,79,-0.10810330073325777],[125,107,64,-0.1380703782825298],[125,107,65,-0.13431798133478812],[125,107,66,-0.1323509061143913],[125,107,67,-0.1334924575501355],[125,107,68,-0.1306469791783954],[125,107,69,-0.12886432706290665],[125,107,70,-0.1284910966519096],[125,107,71,-0.13052151818269975],[125,107,72,-0.1308078077294833],[125,107,73,-0.12794416242676546],[125,107,74,-0.12857012863230285],[125,107,75,-0.131373083738133],[125,107,76,-0.12667636409284877],[125,107,77,-0.12094946623890131],[125,107,78,-0.11235935192996883],[125,107,79,-0.10577572041459272],[125,108,64,-0.1336601353823445],[125,108,65,-0.13197111035983927],[125,108,66,-0.1305238587939948],[125,108,67,-0.13404882700044984],[125,108,68,-0.1299073654802881],[125,108,69,-0.13200615507542945],[125,108,70,-0.13180862368402002],[125,108,71,-0.13382596392375637],[125,108,72,-0.131308437339137],[125,108,73,-0.12995158113687022],[125,108,74,-0.1324164607527653],[125,108,75,-0.13347945944512157],[125,108,76,-0.13286079873636905],[125,108,77,-0.12865747103542985],[125,108,78,-0.11960628918238826],[125,108,79,-0.11395917167644243],[125,109,64,-0.14197372680760562],[125,109,65,-0.13716032662728228],[125,109,66,-0.13542544293775544],[125,109,67,-0.13210512536999522],[125,109,68,-0.13029456161016215],[125,109,69,-0.13354786952559872],[125,109,70,-0.13232157778919904],[125,109,71,-0.12696802188850417],[125,109,72,-0.12273943898672483],[125,109,73,-0.12341620302512174],[125,109,74,-0.1231701403542298],[125,109,75,-0.12303088861680667],[125,109,76,-0.1269820402705972],[125,109,77,-0.12908817441100628],[125,109,78,-0.12760463677601502],[125,109,79,-0.12720769502527007],[125,110,64,-0.14262807328297278],[125,110,65,-0.1388984585347172],[125,110,66,-0.1337045835325914],[125,110,67,-0.13266053509419445],[125,110,68,-0.132607579672279],[125,110,69,-0.13390911759788496],[125,110,70,-0.13197148230651984],[125,110,71,-0.12485588026831801],[125,110,72,-0.1187846104750215],[125,110,73,-0.11977587631076832],[125,110,74,-0.1204199486945364],[125,110,75,-0.12144917593931097],[125,110,76,-0.12360847787208014],[125,110,77,-0.12733535986091238],[125,110,78,-0.12917498586519227],[125,110,79,-0.12915395323907508],[125,111,64,-0.1369402110292038],[125,111,65,-0.13390458587573473],[125,111,66,-0.1282281712366168],[125,111,67,-0.12611698310877525],[125,111,68,-0.1274759884059432],[125,111,69,-0.12901967250912635],[125,111,70,-0.1265033329203078],[125,111,71,-0.11889175241942526],[125,111,72,-0.11400359107021217],[125,111,73,-0.11430276218947098],[125,111,74,-0.11435945687656955],[125,111,75,-0.1168216079370052],[125,111,76,-0.11985210401114094],[125,111,77,-0.12159080321027067],[125,111,78,-0.1273658500094791],[125,111,79,-0.1277548699413389],[125,112,64,-0.141170745734387],[125,112,65,-0.13691740086461857],[125,112,66,-0.13124107931388662],[125,112,67,-0.12691991963163118],[125,112,68,-0.12860620520127206],[125,112,69,-0.12900418021536839],[125,112,70,-0.12547174015264229],[125,112,71,-0.11575226098052763],[125,112,72,-0.11338092447140347],[125,112,73,-0.11274703171238028],[125,112,74,-0.11129484405901505],[125,112,75,-0.11484655083067438],[125,112,76,-0.11798528235267686],[125,112,77,-0.11992408682046385],[125,112,78,-0.12760421696252539],[125,112,79,-0.127973025241785],[125,113,64,-0.14443768391973563],[125,113,65,-0.14006727671868366],[125,113,66,-0.13342665924243732],[125,113,67,-0.12859465443852652],[125,113,68,-0.12951598426151342],[125,113,69,-0.12683935531156756],[125,113,70,-0.12419450564276611],[125,113,71,-0.11382851365596425],[125,113,72,-0.10935907248785812],[125,113,73,-0.10846192956802037],[125,113,74,-0.11002699700822706],[125,113,75,-0.11167391219091695],[125,113,76,-0.11511562955299105],[125,113,77,-0.1186406327963287],[125,113,78,-0.12839666558066132],[125,113,79,-0.12832690444853823],[125,114,64,-0.15080743334727795],[125,114,65,-0.14712889512400049],[125,114,66,-0.14176425300272974],[125,114,67,-0.13638701880417067],[125,114,68,-0.1337054308606064],[125,114,69,-0.1311540858465056],[125,114,70,-0.1264634310406475],[125,114,71,-0.1208865298191987],[125,114,72,-0.11432530454754083],[125,114,73,-0.11113790894385125],[125,114,74,-0.11248171305776486],[125,114,75,-0.11507207723306363],[125,114,76,-0.12005754130406916],[125,114,77,-0.12316048348160229],[125,114,78,-0.13317483555442688],[125,114,79,-0.13533499134436996],[125,115,64,-0.1495424061652294],[125,115,65,-0.14451690798803352],[125,115,66,-0.1412751696826696],[125,115,67,-0.13643035525407143],[125,115,68,-0.1334948764556056],[125,115,69,-0.131526452247015],[125,115,70,-0.12603770684157445],[125,115,71,-0.12170942063558061],[125,115,72,-0.11503558563083635],[125,115,73,-0.10976016334746533],[125,115,74,-0.11217647805970049],[125,115,75,-0.11684399971451034],[125,115,76,-0.12430559372594392],[125,115,77,-0.12527049922083913],[125,115,78,-0.1312097939200902],[125,115,79,-0.13294479135483578],[125,116,64,-0.13146690409139783],[125,116,65,-0.1260384257955583],[125,116,66,-0.12204906549311177],[125,116,67,-0.1172946186847463],[125,116,68,-0.11457639215911372],[125,116,69,-0.11210855113128346],[125,116,70,-0.10850177948564113],[125,116,71,-0.10585962262848328],[125,116,72,-0.10012134516314067],[125,116,73,-0.09621027317261936],[125,116,74,-0.0946569675482907],[125,116,75,-0.10159793387970774],[125,116,76,-0.10887178990155995],[125,116,77,-0.11143893210172875],[125,116,78,-0.1117856491388762],[125,116,79,-0.11033211670989232],[125,117,64,-0.1360870655147462],[125,117,65,-0.1307364625708722],[125,117,66,-0.12589727725051028],[125,117,67,-0.12138997715757567],[125,117,68,-0.11986102441830984],[125,117,69,-0.11607235068056064],[125,117,70,-0.11188860717791187],[125,117,71,-0.10904637660988795],[125,117,72,-0.10518010895172336],[125,117,73,-0.10183687444051111],[125,117,74,-0.09739081696083465],[125,117,75,-0.10279407456131388],[125,117,76,-0.11048199946147796],[125,117,77,-0.10963869444703053],[125,117,78,-0.10594909575624722],[125,117,79,-0.10159485240609512],[125,118,64,-0.13138419085207695],[125,118,65,-0.12848767624289897],[125,118,66,-0.12478118521006522],[125,118,67,-0.11817409335803472],[125,118,68,-0.11817898638264895],[125,118,69,-0.11234302715300264],[125,118,70,-0.10627765990837716],[125,118,71,-0.1046456245960132],[125,118,72,-0.10362013993068865],[125,118,73,-0.10046463389005424],[125,118,74,-0.09862418245106805],[125,118,75,-0.10120057417783537],[125,118,76,-0.10986251027860815],[125,118,77,-0.11006115969471521],[125,118,78,-0.10665843678769732],[125,118,79,-0.10386523861728784],[125,119,64,-0.1207961490040332],[125,119,65,-0.11902407243178464],[125,119,66,-0.11703724470960483],[125,119,67,-0.1123374311275264],[125,119,68,-0.11048305869748844],[125,119,69,-0.10428706374375445],[125,119,70,-0.09960273015502548],[125,119,71,-0.09982220245739165],[125,119,72,-0.09836460472868336],[125,119,73,-0.09869872923351489],[125,119,74,-0.09984526913973081],[125,119,75,-0.10088710781087185],[125,119,76,-0.105887947422806],[125,119,77,-0.11102502613294397],[125,119,78,-0.10683427056924573],[125,119,79,-0.10464077318063583],[125,120,64,-0.11902338715094957],[125,120,65,-0.11511693724443772],[125,120,66,-0.11449188291647311],[125,120,67,-0.11116105663569692],[125,120,68,-0.10853041523506007],[125,120,69,-0.10351423371601941],[125,120,70,-0.09596937597551762],[125,120,71,-0.09724084057124732],[125,120,72,-0.09683256497432535],[125,120,73,-0.09745903789291069],[125,120,74,-0.10072636964594656],[125,120,75,-0.10110776330894777],[125,120,76,-0.10520837624404883],[125,120,77,-0.11041645262060493],[125,120,78,-0.10727352404969827],[125,120,79,-0.10620561987902588],[125,121,64,-0.10743331307578559],[125,121,65,-0.10363410465124025],[125,121,66,-0.09944956974427166],[125,121,67,-0.09663234258932753],[125,121,68,-0.09636890210972704],[125,121,69,-0.09091374200879282],[125,121,70,-0.0878327414945157],[125,121,71,-0.08946737806746657],[125,121,72,-0.09021780913482398],[125,121,73,-0.09307497068119154],[125,121,74,-0.09834872371312584],[125,121,75,-0.10326747140519661],[125,121,76,-0.10825397290452779],[125,121,77,-0.1144067611880051],[125,121,78,-0.11640435098581028],[125,121,79,-0.11573038846905712],[125,122,64,-0.11338430885818533],[125,122,65,-0.1068331661713155],[125,122,66,-0.10021999371344964],[125,122,67,-0.09971332249933765],[125,122,68,-0.10024360997861778],[125,122,69,-0.09648162241458393],[125,122,70,-0.09371719383658228],[125,122,71,-0.09304850944225976],[125,122,72,-0.09354144967324765],[125,122,73,-0.09657361837835347],[125,122,74,-0.10488575381667198],[125,122,75,-0.1121367784001337],[125,122,76,-0.1162373462894489],[125,122,77,-0.11972807414017345],[125,122,78,-0.12183022439690927],[125,122,79,-0.12072466143335686],[125,123,64,-0.11135050930838647],[125,123,65,-0.10202002047795956],[125,123,66,-0.09782148993462794],[125,123,67,-0.09684695752265735],[125,123,68,-0.09752451875650145],[125,123,69,-0.09570035032001592],[125,123,70,-0.09381393834422407],[125,123,71,-0.09294709240420043],[125,123,72,-0.09314604090820053],[125,123,73,-0.09724417687130277],[125,123,74,-0.10455558959851322],[125,123,75,-0.11413183620421236],[125,123,76,-0.1176473090650092],[125,123,77,-0.1223661027196381],[125,123,78,-0.12035953158118859],[125,123,79,-0.1234311147418678],[125,124,64,-0.10215133298688917],[125,124,65,-0.09656241152061988],[125,124,66,-0.0953307158504502],[125,124,67,-0.09440046603190404],[125,124,68,-0.09188234196645331],[125,124,69,-0.09168322262831324],[125,124,70,-0.09242017645322306],[125,124,71,-0.09072869649562718],[125,124,72,-0.09542342127896197],[125,124,73,-0.10096595630529233],[125,124,74,-0.10719039374426136],[125,124,75,-0.11431080067370461],[125,124,76,-0.11832011316203697],[125,124,77,-0.12131398030166103],[125,124,78,-0.12198748176866392],[125,124,79,-0.12734618442719417],[125,125,64,-0.09786812329524233],[125,125,65,-0.09590662047454629],[125,125,66,-0.09349632599336491],[125,125,67,-0.09089613834454591],[125,125,68,-0.08836809583698191],[125,125,69,-0.08874335726017635],[125,125,70,-0.08946470655609726],[125,125,71,-0.09084580708391218],[125,125,72,-0.09372215709637183],[125,125,73,-0.1000863355367845],[125,125,74,-0.10803738634173035],[125,125,75,-0.11484677771993412],[125,125,76,-0.11689830382048205],[125,125,77,-0.11939308364593713],[125,125,78,-0.12291738332624234],[125,125,79,-0.1307902091023273],[125,126,64,-0.09272103434257446],[125,126,65,-0.0911781386966688],[125,126,66,-0.0905128220731515],[125,126,67,-0.08801749085913979],[125,126,68,-0.08906348130675756],[125,126,69,-0.08819720297016909],[125,126,70,-0.08974988158888823],[125,126,71,-0.08979220369335447],[125,126,72,-0.09309764318451229],[125,126,73,-0.10127982636648841],[125,126,74,-0.11063486077831611],[125,126,75,-0.11170212525434633],[125,126,76,-0.11421545286352043],[125,126,77,-0.11744908264728664],[125,126,78,-0.12407366224803898],[125,126,79,-0.13318593449489036],[125,127,64,-0.08593571090175581],[125,127,65,-0.0853823912596709],[125,127,66,-0.08666768023333546],[125,127,67,-0.08294991815774543],[125,127,68,-0.08395648525189922],[125,127,69,-0.08553696722911573],[125,127,70,-0.08879763560268011],[125,127,71,-0.09122426375759567],[125,127,72,-0.09301702082008842],[125,127,73,-0.10132618398616046],[125,127,74,-0.11002503587031363],[125,127,75,-0.11137520406993293],[125,127,76,-0.11245356259664016],[125,127,77,-0.11722308988587304],[125,127,78,-0.12518383464991864],[125,127,79,-0.13530981600009256],[125,128,64,-0.08314973521871094],[125,128,65,-0.08429179114901644],[125,128,66,-0.08566849363885241],[125,128,67,-0.08434663226318757],[125,128,68,-0.08472035183875552],[125,128,69,-0.08673291871701694],[125,128,70,-0.09172194284825487],[125,128,71,-0.09238110489401423],[125,128,72,-0.09369002191058659],[125,128,73,-0.10182660364865495],[125,128,74,-0.11051552206580313],[125,128,75,-0.1145324040560815],[125,128,76,-0.11476703979575516],[125,128,77,-0.11525859594768142],[125,128,78,-0.12432010283110861],[125,128,79,-0.13368580880648293],[125,129,64,-0.09060558585022462],[125,129,65,-0.08984030217832123],[125,129,66,-0.09471121867855492],[125,129,67,-0.09450195497389219],[125,129,68,-0.093889279765188],[125,129,69,-0.09900842673421688],[125,129,70,-0.10280780887581267],[125,129,71,-0.10413596769512942],[125,129,72,-0.10303778875114622],[125,129,73,-0.11256358041754581],[125,129,74,-0.11945883675757878],[125,129,75,-0.12284031001246401],[125,129,76,-0.123430721643962],[125,129,77,-0.12187133406880166],[125,129,78,-0.12862541223844728],[125,129,79,-0.13635020538862275],[125,130,64,-0.09640367281325593],[125,130,65,-0.09350772576052745],[125,130,66,-0.0976523796931888],[125,130,67,-0.10125212264123551],[125,130,68,-0.10093512208277003],[125,130,69,-0.1066389695144793],[125,130,70,-0.10822972790119743],[125,130,71,-0.11047024738900467],[125,130,72,-0.11014043857959613],[125,130,73,-0.11785381831198305],[125,130,74,-0.12649726431119013],[125,130,75,-0.12950262195332202],[125,130,76,-0.12763009577579276],[125,130,77,-0.13040124129508096],[125,130,78,-0.1339873681920094],[125,130,79,-0.13755236096488374],[125,131,64,-0.09147409726762509],[125,131,65,-0.09110668176742347],[125,131,66,-0.09485372142868245],[125,131,67,-0.1013031332828936],[125,131,68,-0.10224235865835354],[125,131,69,-0.10540394174152862],[125,131,70,-0.10787017083094749],[125,131,71,-0.11168149306400865],[125,131,72,-0.11270888693387385],[125,131,73,-0.11792099252585843],[125,131,74,-0.12704916364836263],[125,131,75,-0.12984541883879927],[125,131,76,-0.13649662362443932],[125,131,77,-0.14033077665171484],[125,131,78,-0.13482499201076],[125,131,79,-0.13801755286462886],[125,132,64,-0.07942422599238826],[125,132,65,-0.08110580104521356],[125,132,66,-0.08432892428483577],[125,132,67,-0.09172245744632414],[125,132,68,-0.0940634774271775],[125,132,69,-0.09855342952142006],[125,132,70,-0.10131820786265139],[125,132,71,-0.10566358865967257],[125,132,72,-0.10690977846801372],[125,132,73,-0.11418910653558528],[125,132,74,-0.11964226423532381],[125,132,75,-0.12750509879117478],[125,132,76,-0.1522222877137279],[125,132,77,-0.14144172503274355],[125,132,78,-0.1334257638785043],[125,132,79,-0.13144795628615363],[125,133,64,-0.06571239868368156],[125,133,65,-0.06643469972580464],[125,133,66,-0.07165575548142955],[125,133,67,-0.07853055460434424],[125,133,68,-0.08318897244535817],[125,133,69,-0.08943564949106879],[125,133,70,-0.09119654436122271],[125,133,71,-0.09536141256689683],[125,133,72,-0.09787374131887781],[125,133,73,-0.10345418836153572],[125,133,74,-0.12209420620395146],[125,133,75,-0.14300540769608958],[125,133,76,-0.17456870162754157],[125,133,77,-0.16808437926490916],[125,133,78,-0.15591385604790117],[125,133,79,-0.1627208545465343],[125,134,64,-0.06323186837573351],[125,134,65,-0.06142974051374485],[125,134,66,-0.06554731709634098],[125,134,67,-0.07522641102139088],[125,134,68,-0.0814231649728284],[125,134,69,-0.0883617254649682],[125,134,70,-0.09020028450031639],[125,134,71,-0.09346034129259657],[125,134,72,-0.09631055930915505],[125,134,73,-0.10146018535830709],[125,134,74,-0.1319125165078341],[125,134,75,-0.15651784714522848],[125,134,76,-0.1841205390873082],[125,134,77,-0.18416957451335284],[125,134,78,-0.16797587886080187],[125,134,79,-0.18191344752519623],[125,135,64,-0.058908600576230666],[125,135,65,-0.05624133462916825],[125,135,66,-0.06041776196776569],[125,135,67,-0.06883028759950906],[125,135,68,-0.07366518279969714],[125,135,69,-0.08273900895678843],[125,135,70,-0.08804673091529061],[125,135,71,-0.09217771906187021],[125,135,72,-0.09637918822880098],[125,135,73,-0.10021894943425771],[125,135,74,-0.13106919251046426],[125,135,75,-0.15589748523635721],[125,135,76,-0.18096212711251958],[125,135,77,-0.18968286120853858],[125,135,78,-0.17143550563802126],[125,135,79,-0.1877252782906265],[125,136,64,-0.05837439290584798],[125,136,65,-0.05732131714165985],[125,136,66,-0.057583940921493035],[125,136,67,-0.06462315595278498],[125,136,68,-0.07111868042562534],[125,136,69,-0.07934174325438902],[125,136,70,-0.08502731278140213],[125,136,71,-0.09054176989535884],[125,136,72,-0.09834460728664149],[125,136,73,-0.09966886653539779],[125,136,74,-0.13945284534058547],[125,136,75,-0.16650416288768793],[125,136,76,-0.19452785171546133],[125,136,77,-0.2022442937277843],[125,136,78,-0.18616395175888056],[125,136,79,-0.20857321614161467],[125,137,64,-0.05583902688602259],[125,137,65,-0.05603557486908299],[125,137,66,-0.05550490464761525],[125,137,67,-0.06280739677318548],[125,137,68,-0.06857743049983606],[125,137,69,-0.07785132627740307],[125,137,70,-0.0856706346857671],[125,137,71,-0.09387840461589746],[125,137,72,-0.09851165489043029],[125,137,73,-0.1061098744989727],[125,137,74,-0.1418172462405627],[125,137,75,-0.16638326241716586],[125,137,76,-0.19577451418386982],[125,137,77,-0.20021368531788858],[125,137,78,-0.1932713182448889],[125,137,79,-0.21471500787155803],[125,138,64,-0.06143378645238197],[125,138,65,-0.060616703138207634],[125,138,66,-0.061453046961812426],[125,138,67,-0.06752754442091524],[125,138,68,-0.07507366060007606],[125,138,69,-0.086012012933539],[125,138,70,-0.09469723950696171],[125,138,71,-0.10135515175733881],[125,138,72,-0.10353333731174871],[125,138,73,-0.10387138663319682],[125,138,74,-0.1316044255960136],[125,138,75,-0.1549161429690266],[125,138,76,-0.18144093326577532],[125,138,77,-0.19942585191593604],[125,138,78,-0.19632676477573643],[125,138,79,-0.21327391095028297],[125,139,64,-0.0601718240565572],[125,139,65,-0.06027205948328313],[125,139,66,-0.061258576471207526],[125,139,67,-0.06895423575183826],[125,139,68,-0.07716547981842453],[125,139,69,-0.08606237999283085],[125,139,70,-0.0966972573475233],[125,139,71,-0.10171274546701198],[125,139,72,-0.1019675814152374],[125,139,73,-0.1109955610414217],[125,139,74,-0.1488030972920668],[125,139,75,-0.18034866975495545],[125,139,76,-0.20192851764001365],[125,139,77,-0.22884737214204587],[125,139,78,-0.23033952257585377],[125,139,79,-0.23912468255253921],[125,140,64,-0.059794326600534804],[125,140,65,-0.05962191646911563],[125,140,66,-0.0596992273222656],[125,140,67,-0.06687025591148203],[125,140,68,-0.0729482860638635],[125,140,69,-0.07878932045941352],[125,140,70,-0.0871039645659647],[125,140,71,-0.09220789128675683],[125,140,72,-0.09361429009673244],[125,140,73,-0.11158465083108457],[125,140,74,-0.14676982252034415],[125,140,75,-0.18023860986110674],[125,140,76,-0.20069404104217264],[125,140,77,-0.2285121967453887],[125,140,78,-0.2353716241794538],[125,140,79,-0.2444451096686353],[125,141,64,-0.05255307518120753],[125,141,65,-0.05460696881448311],[125,141,66,-0.059288754106831515],[125,141,67,-0.06546076564122988],[125,141,68,-0.07224977114047015],[125,141,69,-0.07826365480430883],[125,141,70,-0.08746154979274084],[125,141,71,-0.09444730353571124],[125,141,72,-0.09385746732645224],[125,141,73,-0.12137259823923431],[125,141,74,-0.1395840620227893],[125,141,75,-0.15971833667071564],[125,141,76,-0.18338744271007984],[125,141,77,-0.20849847572336133],[125,141,78,-0.22987447588349888],[125,141,79,-0.2348906578647773],[125,142,64,-0.0508445666733052],[125,142,65,-0.05254461156991434],[125,142,66,-0.056866946062286206],[125,142,67,-0.059691338473848644],[125,142,68,-0.06933480761182097],[125,142,69,-0.07693937060169351],[125,142,70,-0.08524189079009992],[125,142,71,-0.09235004151877815],[125,142,72,-0.0935973215383924],[125,142,73,-0.1202939999405914],[125,142,74,-0.14080162967466686],[125,142,75,-0.15699224634031925],[125,142,76,-0.1800981968041046],[125,142,77,-0.2099942560879115],[125,142,78,-0.22694169210334547],[125,142,79,-0.23491970787285651],[125,143,64,-0.04354482603863438],[125,143,65,-0.0481215721702038],[125,143,66,-0.052963479979102696],[125,143,67,-0.05801793551650356],[125,143,68,-0.06510114996257017],[125,143,69,-0.07252052660722297],[125,143,70,-0.0832859577497148],[125,143,71,-0.09070478437422991],[125,143,72,-0.09351013308763091],[125,143,73,-0.11440958633492734],[125,143,74,-0.13024413023846768],[125,143,75,-0.1517010951756942],[125,143,76,-0.17323797591438186],[125,143,77,-0.20683913402246645],[125,143,78,-0.2201757637492502],[125,143,79,-0.2226422111767565],[125,144,64,-0.04604281609553218],[125,144,65,-0.04926079179394524],[125,144,66,-0.05353502019368174],[125,144,67,-0.0592753553485131],[125,144,68,-0.06491496768594508],[125,144,69,-0.07358970836536655],[125,144,70,-0.08393034634075722],[125,144,71,-0.08790629895099135],[125,144,72,-0.0911741344673738],[125,144,73,-0.11616854211454075],[125,144,74,-0.13157404108546372],[125,144,75,-0.1548029460309483],[125,144,76,-0.18209238434470787],[125,144,77,-0.21213446962796217],[125,144,78,-0.22876186649738758],[125,144,79,-0.23589709915086904],[125,145,64,-0.05784497104290558],[125,145,65,-0.05477131763460502],[125,145,66,-0.05798915863578914],[125,145,67,-0.06111898938860842],[125,145,68,-0.06325351180941985],[125,145,69,-0.07345242140332633],[125,145,70,-0.08431804429138995],[125,145,71,-0.09055606229798499],[125,145,72,-0.09090130783582588],[125,145,73,-0.09651846521757726],[125,145,74,-0.09694874653255703],[125,145,75,-0.09795721187639098],[125,145,76,-0.12356339460304629],[125,145,77,-0.15525142947685724],[125,145,78,-0.18956168151587366],[125,145,79,-0.19597116376922163],[125,146,64,-0.06413476342647924],[125,146,65,-0.06317649999240971],[125,146,66,-0.06216177137668094],[125,146,67,-0.0666562516963782],[125,146,68,-0.07198348121116994],[125,146,69,-0.08053255836245041],[125,146,70,-0.09083507695436388],[125,146,71,-0.09621789890969115],[125,146,72,-0.09600415027266238],[125,146,73,-0.10174980642286748],[125,146,74,-0.10009328940463272],[125,146,75,-0.10018231293398927],[125,146,76,-0.11733482452424399],[125,146,77,-0.1515465684779116],[125,146,78,-0.1748523836305496],[125,146,79,-0.18524957331760317],[125,147,64,-0.06450843318234421],[125,147,65,-0.06589274977108259],[125,147,66,-0.06510378772220608],[125,147,67,-0.06603555263206305],[125,147,68,-0.07349964035057333],[125,147,69,-0.08161561384159186],[125,147,70,-0.0898192482129278],[125,147,71,-0.09411266178982117],[125,147,72,-0.09575139928429949],[125,147,73,-0.10067112413875942],[125,147,74,-0.10125026747988536],[125,147,75,-0.0990949123206778],[125,147,76,-0.10053324756172541],[125,147,77,-0.0729931263017963],[125,147,78,-0.07452784570051417],[125,147,79,-0.0838913783696385],[125,148,64,-0.030839301808098254],[125,148,65,-0.036729929017037005],[125,148,66,-0.040576798017345955],[125,148,67,-0.046833343898242855],[125,148,68,-0.05272034911544041],[125,148,69,-0.06268636511192609],[125,148,70,-0.07327266563510075],[125,148,71,-0.07978247273294514],[125,148,72,-0.08445650414466863],[125,148,73,-0.09075678396725756],[125,148,74,-0.09124042443950942],[125,148,75,-0.08648235476961638],[125,148,76,-0.06510419740168846],[125,148,77,-0.03846023614108182],[125,148,78,-0.05196681676181118],[125,148,79,-0.06637006855478922],[125,149,64,-0.03233815206139502],[125,149,65,-0.03594045603460941],[125,149,66,-0.04156484805237304],[125,149,67,-0.047279942659862684],[125,149,68,-0.05324596550154834],[125,149,69,-0.06121964840044473],[125,149,70,-0.07014350128421153],[125,149,71,-0.07683840378321988],[125,149,72,-0.08484479271404013],[125,149,73,-0.09082808434769742],[125,149,74,-0.0912249953641396],[125,149,75,-0.07768378997256242],[125,149,76,-0.05770367955967876],[125,149,77,-0.03112358067697045],[125,149,78,-0.044128063392345956],[125,149,79,-0.0611422077676857],[125,150,64,-0.03319557887693242],[125,150,65,-0.03882614025961338],[125,150,66,-0.04492005564607866],[125,150,67,-0.05017611860406976],[125,150,68,-0.056357687197851135],[125,150,69,-0.06225093195488052],[125,150,70,-0.07010410923102584],[125,150,71,-0.07645739585512236],[125,150,72,-0.08494258715616393],[125,150,73,-0.09186556902617149],[125,150,74,-0.08154792717480878],[125,150,75,-0.06641467224357267],[125,150,76,-0.048673732015795],[125,150,77,-0.028962637255093376],[125,150,78,-0.04456924384010136],[125,150,79,-0.06400203556999161],[125,151,64,-0.03005428969348764],[125,151,65,-0.0382912709542812],[125,151,66,-0.04562142442408086],[125,151,67,-0.05025821412414655],[125,151,68,-0.05754500149448499],[125,151,69,-0.061611219821446364],[125,151,70,-0.06947781982948902],[125,151,71,-0.07609375859887618],[125,151,72,-0.08424633059645334],[125,151,73,-0.09088616103594067],[125,151,74,-0.0822919299248179],[125,151,75,-0.06187867833582325],[125,151,76,-0.04518568425964811],[125,151,77,-0.02740699189781544],[125,151,78,-0.044726534230424206],[125,151,79,-0.06271493427216528],[125,152,64,-0.031083157471854556],[125,152,65,-0.03941499968080761],[125,152,66,-0.04817801881306644],[125,152,67,-0.05283508114918259],[125,152,68,-0.05845689881342484],[125,152,69,-0.061867348361255986],[125,152,70,-0.0679791055158381],[125,152,71,-0.07499447390419867],[125,152,72,-0.08365544384685228],[125,152,73,-0.08639651305614837],[125,152,74,-0.0682702590270029],[125,152,75,-0.050979753274494166],[125,152,76,-0.03250668851606427],[125,152,77,-0.01534321508007895],[125,152,78,-0.035780538166476916],[125,152,79,-0.05579408543950887],[125,153,64,-0.03630832349866732],[125,153,65,-0.04151220056985305],[125,153,66,-0.04600367137463837],[125,153,67,-0.047146760286819356],[125,153,68,-0.04938328160580721],[125,153,69,-0.05543164718673981],[125,153,70,-0.061458556469627085],[125,153,71,-0.06749947468499018],[125,153,72,-0.07505511360326617],[125,153,73,-0.05275744847542878],[125,153,74,-0.027816250516844526],[125,153,75,-0.006021385452618433],[125,153,76,0.01811041384611585],[125,153,77,0.011123534405134194],[125,153,78,-0.0021236257773851325],[125,153,79,-0.01837099089601249],[125,154,64,-0.0413188162353611],[125,154,65,-0.04739715483591764],[125,154,66,-0.051923633144340745],[125,154,67,-0.05178437829241353],[125,154,68,-0.053142195062091224],[125,154,69,-0.0606166917422007],[125,154,70,-0.06606959604171234],[125,154,71,-0.07240184295662574],[125,154,72,-0.07788528609346479],[125,154,73,-0.0675394390141314],[125,154,74,-0.04509277443918895],[125,154,75,-0.013193171732649209],[125,154,76,0.017201733249000553],[125,154,77,0.015480782257442385],[125,154,78,-4.082396422649126E-4],[125,154,79,-0.014511981463204121],[125,155,64,-0.040888131534210004],[125,155,65,-0.04689857307639213],[125,155,66,-0.05022570686348765],[125,155,67,-0.051405441133805616],[125,155,68,-0.05185432026483368],[125,155,69,-0.05818540690103992],[125,155,70,-0.06268873535272196],[125,155,71,-0.06801957495407973],[125,155,72,-0.07517711367208293],[125,155,73,-0.0635075029469646],[125,155,74,-0.047459787381069034],[125,155,75,-0.008417175095517551],[125,155,76,0.017602622344656885],[125,155,77,0.0063246525449944385],[125,155,78,-0.00830739075582329],[125,155,79,-0.022070363301873258],[125,156,64,-0.03537547198494602],[125,156,65,-0.04091517403632966],[125,156,66,-0.04667765256660657],[125,156,67,-0.04852929053828882],[125,156,68,-0.049726660330701056],[125,156,69,-0.058406985063548696],[125,156,70,-0.060669240188722794],[125,156,71,-0.06401051265199603],[125,156,72,-0.06446888614880406],[125,156,73,-0.04804379737240687],[125,156,74,-0.043043436678887444],[125,156,75,-0.0058943407920914875],[125,156,76,0.015938809086244357],[125,156,77,0.004998652985394203],[125,156,78,-0.00851516198369584],[125,156,79,-0.020432949323801963],[125,157,64,-0.028337855077151766],[125,157,65,-0.03809670404823298],[125,157,66,-0.04731078296260556],[125,157,67,-0.05786540459717099],[125,157,68,-0.06157620558436153],[125,157,69,-0.06889590425294873],[125,157,70,-0.06881773896077872],[125,157,71,-0.07184099156135644],[125,157,72,-0.05762575755415421],[125,157,73,-0.0452521309690943],[125,157,74,-0.03180677080631067],[125,157,75,0.006433488963962453],[125,157,76,0.02447385639332335],[125,157,77,0.008028398126275219],[125,157,78,-0.005990641484736811],[125,157,79,-0.01833899933252657],[125,158,64,-0.03036147016730513],[125,158,65,-0.038097289216604255],[125,158,66,-0.04820033451324085],[125,158,67,-0.05878231215805236],[125,158,68,-0.0615767414102287],[125,158,69,-0.06748178374582793],[125,158,70,-0.06909962022907266],[125,158,71,-0.07220524531727018],[125,158,72,-0.05042256989497036],[125,158,73,-0.03241021102753029],[125,158,74,-0.014254461481691141],[125,158,75,0.020827597894531313],[125,158,76,0.024057471446285658],[125,158,77,0.0074281573344208845],[125,158,78,-0.0072960216542538175],[125,158,79,-0.019313969199217004],[125,159,64,-0.07595075602874432],[125,159,65,-0.07812163285997703],[125,159,66,-0.08083513913040646],[125,159,67,-0.08391497628134931],[125,159,68,-0.08023035465010814],[125,159,69,-0.0787213349863836],[125,159,70,-0.07692580651390839],[125,159,71,-0.07202208086263409],[125,159,72,-0.050003362065222996],[125,159,73,-0.01938544176359331],[125,159,74,0.001624325566106491],[125,159,75,0.027127727025722845],[125,159,76,0.028164775097355307],[125,159,77,0.013678149786265692],[125,159,78,3.32397534816703E-4],[125,159,79,-0.011551902358852367],[125,160,64,-0.0753220759819972],[125,160,65,-0.07952610364243086],[125,160,66,-0.07962453294745175],[125,160,67,-0.08093623091374919],[125,160,68,-0.07918719119931855],[125,160,69,-0.07729126811233464],[125,160,70,-0.07584252905467288],[125,160,71,-0.06958703681066006],[125,160,72,-0.05230148566970692],[125,160,73,-0.008632095923784985],[125,160,74,0.011840630892283599],[125,160,75,0.031137566186205598],[125,160,76,0.028509050419453494],[125,160,77,0.01543195627305724],[125,160,78,0.003178078493169728],[125,160,79,-0.0060370744873895765],[125,161,64,-0.07421131993146635],[125,161,65,-0.07800188227581602],[125,161,66,-0.07734105677997563],[125,161,67,-0.07717737392930832],[125,161,68,-0.07546483139877588],[125,161,69,-0.07458528220822903],[125,161,70,-0.07493582880063138],[125,161,71,-0.06834908235230565],[125,161,72,-0.04802397771951561],[125,161,73,0.007502352193936093],[125,161,74,0.03741305644608343],[125,161,75,0.04720152416728035],[125,161,76,0.03696965069043208],[125,161,77,0.025581722321766948],[125,161,78,0.014423832042641596],[125,161,79,0.004321463371668083],[125,162,64,-0.07923896878392749],[125,162,65,-0.08409102389058654],[125,162,66,-0.08056711741507627],[125,162,67,-0.07969790128392658],[125,162,68,-0.07821781348801438],[125,162,69,-0.07714422278056732],[125,162,70,-0.07642629634614213],[125,162,71,-0.07174377024633444],[125,162,72,-0.06780905610998889],[125,162,73,-0.014482125463773907],[125,162,74,0.029819700615350414],[125,162,75,0.05132266954203382],[125,162,76,0.04805512365766201],[125,162,77,0.03949715848586019],[125,162,78,0.029141403251541062],[125,162,79,0.018344167528028518],[125,163,64,-0.07755620139363159],[125,163,65,-0.08322471227862718],[125,163,66,-0.08010990766149766],[125,163,67,-0.0791319017963151],[125,163,68,-0.07675938076147154],[125,163,69,-0.07391367279953998],[125,163,70,-0.07098979017420108],[125,163,71,-0.06715872883139784],[125,163,72,-0.06546466528159532],[125,163,73,-0.037590475442277636],[125,163,74,0.012380032715648318],[125,163,75,0.03796415062463118],[125,163,76,0.040691504198362066],[125,163,77,0.032505834127844885],[125,163,78,0.022427818684184697],[125,163,79,0.013173815873431485],[125,164,64,-0.07496985454380495],[125,164,65,-0.0751740287434837],[125,164,66,-0.06697868254195193],[125,164,67,-0.06020310919954996],[125,164,68,-0.05073243238593844],[125,164,69,-0.045093208647439986],[125,164,70,-0.038492241386102785],[125,164,71,-0.031040259419805802],[125,164,72,-0.029140979086361873],[125,164,73,-0.006715700653606167],[125,164,74,0.024728850489034268],[125,164,75,0.042494167431438086],[125,164,76,0.043628945138820374],[125,164,77,0.03545633560171896],[125,164,78,0.023805847528341667],[125,164,79,0.013345166390616864],[125,165,64,-0.08181730486784661],[125,165,65,-0.07327563151982502],[125,165,66,-0.06018344982015163],[125,165,67,-0.05024259125720558],[125,165,68,-0.04109280692806859],[125,165,69,-0.03437926806040298],[125,165,70,-0.026088714152228687],[125,165,71,-0.016518120537689612],[125,165,72,-0.011593648939051154],[125,165,73,0.010590024778765101],[125,165,74,0.03486790165092249],[125,165,75,0.0542825293637892],[125,165,76,0.055239982340045846],[125,165,77,0.04799486364945657],[125,165,78,0.03531008321254797],[125,165,79,0.02342299154766528],[125,166,64,-0.08047446406342881],[125,166,65,-0.07018674729526472],[125,166,66,-0.05786671666770504],[125,166,67,-0.046370797827665386],[125,166,68,-0.039933064848159144],[125,166,69,-0.033975859219477086],[125,166,70,-0.023387046396617095],[125,166,71,-0.011927081541140139],[125,166,72,-0.005217741211785795],[125,166,73,0.005832549510010844],[125,166,74,0.016511780610687157],[125,166,75,0.027919272678320763],[125,166,76,0.029038263059591646],[125,166,77,0.02833824578175216],[125,166,78,0.02278738750406202],[125,166,79,0.01745769370064265],[125,167,64,-0.0762091839095587],[125,167,65,-0.06577302321408515],[125,167,66,-0.054828143963679604],[125,167,67,-0.043731275953631715],[125,167,68,-0.03781744554745295],[125,167,69,-0.03027959121074658],[125,167,70,-0.01948606419485556],[125,167,71,-0.007298105603037119],[125,167,72,-0.0014262704327186043],[125,167,73,0.005655819440349369],[125,167,74,0.018354378558100386],[125,167,75,0.02919749250950804],[125,167,76,0.03044143001411325],[125,167,77,0.030164847873842854],[125,167,78,0.024616062451988635],[125,167,79,0.01927132125084638],[125,168,64,-0.07380160768270858],[125,168,65,-0.06492203367155984],[125,168,66,-0.05344390910115991],[125,168,67,-0.04608486658548394],[125,168,68,-0.03844978865138213],[125,168,69,-0.02765642929171827],[125,168,70,-0.01521797740869775],[125,168,71,-0.0048827188950579525],[125,168,72,9.159092312247125E-4],[125,168,73,0.007748648890702428],[125,168,74,0.019001129048628742],[125,168,75,0.027784157749158107],[125,168,76,0.029622125315614686],[125,168,77,0.028324195169866673],[125,168,78,0.022260081339953317],[125,168,79,0.019708844453969115],[125,169,64,-0.06509324322115888],[125,169,65,-0.062238300021158224],[125,169,66,-0.05912260793409582],[125,169,67,-0.054736952177812756],[125,169,68,-0.04419853006210206],[125,169,69,-0.03168284788040343],[125,169,70,-0.01945297510440573],[125,169,71,-0.0113256700374893],[125,169,72,-0.010127904435582799],[125,169,73,0.004123695508596561],[125,169,74,0.015786168511052023],[125,169,75,0.03084758609966564],[125,169,76,0.03495336560970061],[125,169,77,0.033741289286129086],[125,169,78,0.028247592403274055],[125,169,79,0.028343110597696286],[125,170,64,-0.06866082207411466],[125,170,65,-0.06649470161981783],[125,170,66,-0.06300205452429239],[125,170,67,-0.05707524560073078],[125,170,68,-0.04832505142374302],[125,170,69,-0.0345399319464027],[125,170,70,-0.02258963706282316],[125,170,71,-0.014209538271146072],[125,170,72,-0.012863982054048775],[125,170,73,-0.005318527872959354],[125,170,74,0.004286251332724823],[125,170,75,0.01590348190951961],[125,170,76,0.02091064752097321],[125,170,77,0.021546242393173737],[125,170,78,0.018815709620658982],[125,170,79,0.023221102230454205],[125,171,64,-0.06750731494814334],[125,171,65,-0.06704795152646868],[125,171,66,-0.0623156643182851],[125,171,67,-0.054787861844950866],[125,171,68,-0.044711339696011626],[125,171,69,-0.02984735264817802],[125,171,70,-0.02074816935029547],[125,171,71,-0.013446462354212721],[125,171,72,-0.010532395144626228],[125,171,73,-0.0039022957478816542],[125,171,74,0.001677298334560818],[125,171,75,0.006800345838520213],[125,171,76,0.010070090596704419],[125,171,77,0.010414058488852157],[125,171,78,0.009314347576739532],[125,171,79,0.01327474623419718],[125,172,64,-0.06006155859457761],[125,172,65,-0.05909911349660755],[125,172,66,-0.054139272469195504],[125,172,67,-0.04450679521868885],[125,172,68,-0.03281973473144821],[125,172,69,-0.02216470127464243],[125,172,70,-0.013903437845704525],[125,172,71,-0.0066608682928663565],[125,172,72,-0.0012956088929593906],[125,172,73,0.0013259429143613814],[125,172,74,3.6187650569662836E-4],[125,172,75,6.241619972087338E-4],[125,172,76,-0.00407462727660237],[125,172,77,-0.009304554678215268],[125,172,78,-0.00962965188361034],[125,172,79,-0.005280087987849388],[125,173,64,-0.06030623007858159],[125,173,65,-0.05535308982197672],[125,173,66,-0.050095941219424],[125,173,67,-0.03990756131227495],[125,173,68,-0.02865099142653864],[125,173,69,-0.016834741543250403],[125,173,70,-0.009797843126141029],[125,173,71,-0.004521954424155969],[125,173,72,0.0032929569014036736],[125,173,73,0.00769257442782245],[125,173,74,0.0031777539866115643],[125,173,75,0.003122397809488935],[125,173,76,-0.0037085405728240657],[125,173,77,-0.009549887480368918],[125,173,78,-0.008980736637271391],[125,173,79,-0.005469590537618932],[125,174,64,-0.05797335028926848],[125,174,65,-0.052808634510015745],[125,174,66,-0.04651331382358995],[125,174,67,-0.0334179670646807],[125,174,68,-0.022912326320748994],[125,174,69,-0.013941058873048515],[125,174,70,-0.006198291411293688],[125,174,71,-9.742852735023649E-4],[125,174,72,0.006467904428803711],[125,174,73,0.012564655973946622],[125,174,74,0.01123188304591571],[125,174,75,0.010684777620682928],[125,174,76,0.0066000926480008215],[125,174,77,0.002208170480522534],[125,174,78,0.001807749590740343],[125,174,79,0.003832783259629685],[125,175,64,-0.05241126332250601],[125,175,65,-0.047043379668809546],[125,175,66,-0.039646044349374035],[125,175,67,-0.026338121619052482],[125,175,68,-0.01638513141533446],[125,175,69,-0.010072811520585187],[125,175,70,-0.0018421503434978836],[125,175,71,5.891252381852868E-4],[125,175,72,0.00841205074602791],[125,175,73,0.014477219462349283],[125,175,74,0.014791187079887186],[125,175,75,0.01057752388292385],[125,175,76,0.0077945900298753675],[125,175,77,0.006955669993183727],[125,175,78,0.004772636729856519],[125,175,79,0.006361379031525186],[125,176,64,-0.05183798938145122],[125,176,65,-0.044430770042393],[125,176,66,-0.03368700433520398],[125,176,67,-0.024771793184393404],[125,176,68,-0.012841594670620779],[125,176,69,-0.004318846108295665],[125,176,70,1.535741024863979E-4],[125,176,71,0.0029725907123145795],[125,176,72,0.010471403605379986],[125,176,73,0.01644187093104793],[125,176,74,0.017949194222615497],[125,176,75,0.01288494264751764],[125,176,76,0.009512846367159907],[125,176,77,0.006789069353904165],[125,176,78,0.0024408287421263525],[125,176,79,0.005871497412129376],[125,177,64,-0.059347608284862616],[125,177,65,-0.0436004659547435],[125,177,66,-0.030331349365238014],[125,177,67,-0.01613554629314594],[125,177,68,-0.001690729122780732],[125,177,69,0.006678633999304406],[125,177,70,0.01257679083229489],[125,177,71,0.017126096034126126],[125,177,72,0.021287920534203836],[125,177,73,0.02757774196914317],[125,177,74,-0.003191606247442705],[125,177,75,-0.03560136716822271],[125,177,76,-0.06823040883162662],[125,177,77,-0.07920655385833815],[125,177,78,-0.07620199185464095],[125,177,79,-0.06880580191366213],[125,178,64,-0.06727202906579804],[125,178,65,-0.04776745726766608],[125,178,66,-0.03280769237679823],[125,178,67,-0.020523328315356346],[125,178,68,-0.006340331478403738],[125,178,69,0.002952326883354367],[125,178,70,0.006491043417882439],[125,178,71,0.014547977952772434],[125,178,72,0.018063958199260988],[125,178,73,0.0232363647310717],[125,178,74,-0.0011282825909993792],[125,178,75,-0.0432914797468343],[125,178,76,-0.07926388170684937],[125,178,77,-0.08027358319769184],[125,178,78,-0.07535990166133129],[125,178,79,-0.07006957330461644],[125,179,64,-0.06678789079919156],[125,179,65,-0.04641812400912579],[125,179,66,-0.031590229556154675],[125,179,67,-0.01724412715350522],[125,179,68,-0.006192360795586591],[125,179,69,0.002908561100455606],[125,179,70,0.00877003573877197],[125,179,71,0.016051709072610276],[125,179,72,0.020692313977956373],[125,179,73,0.023271130891574413],[125,179,74,-0.005900547079096999],[125,179,75,-0.05810414174024771],[125,179,76,-0.09274192325237793],[125,179,77,-0.09129098040383038],[125,179,78,-0.08424523500903755],[125,179,79,-0.07919396073557947],[125,180,64,-0.05997026230576703],[125,180,65,-0.03793488067459594],[125,180,66,-0.02064633734372094],[125,180,67,-0.006794790517082691],[125,180,68,0.008271792722353455],[125,180,69,0.016886143140842275],[125,180,70,0.02169017138961514],[125,180,71,0.03061704589459839],[125,180,72,0.032798262653132335],[125,180,73,0.03565556228180718],[125,180,74,0.005654613893466991],[125,180,75,-0.056289268655649996],[125,180,76,-0.08456025057017491],[125,180,77,-0.07871616412400798],[125,180,78,-0.07261573413867722],[125,180,79,-0.06963440993227356],[125,181,64,-0.05110903733086804],[125,181,65,-0.033828314447263405],[125,181,66,-0.021771139615534882],[125,181,67,-0.012112388421960316],[125,181,68,-9.233476584097483E-4],[125,181,69,0.00905662392447873],[125,181,70,0.01525016786334947],[125,181,71,0.021466032145662103],[125,181,72,0.026659447612944198],[125,181,73,0.029832415767593462],[125,181,74,0.03393698064067757],[125,181,75,0.020473295969264123],[125,181,76,0.015434235520537475],[125,181,77,-0.010560875866871218],[125,181,78,-0.027971170253230065],[125,181,79,-0.03562347133331467],[125,182,64,-0.047935479768525815],[125,182,65,-0.03227520094761269],[125,182,66,-0.02087921793497595],[125,182,67,-0.011697867359637987],[125,182,68,-0.0038011641285128767],[125,182,69,0.006315548996242079],[125,182,70,0.015295609491440723],[125,182,71,0.02219058062937007],[125,182,72,0.027224777058208624],[125,182,73,0.030579190911860024],[125,182,74,0.0353198660733651],[125,182,75,0.02316014133679717],[125,182,76,0.008907832458836362],[125,182,77,-0.014993406232884698],[125,182,78,-0.0284339324708094],[125,182,79,-0.03125898180167325],[125,183,64,-0.043343815174536865],[125,183,65,-0.031234668715450345],[125,183,66,-0.01767050264420461],[125,183,67,-0.010413278847986776],[125,183,68,-0.004061003517334724],[125,183,69,0.0044677010546580465],[125,183,70,0.012549202610018573],[125,183,71,0.020438857770338534],[125,183,72,0.027559943506007475],[125,183,73,0.03333622656533648],[125,183,74,0.03626474905213865],[125,183,75,0.02896912692480803],[125,183,76,0.01398342264422639],[125,183,77,-0.002774445297932464],[125,183,78,-0.02197080886742022],[125,183,79,-0.022245699847892493],[125,184,64,-0.043629056020565826],[125,184,65,-0.03327874533187228],[125,184,66,-0.01977324211685204],[125,184,67,-0.01265551920336895],[125,184,68,-0.006733949821417173],[125,184,69,0.0029547305493217157],[125,184,70,0.009761261756275591],[125,184,71,0.02125721649898729],[125,184,72,0.02809509711844424],[125,184,73,0.03598544781809224],[125,184,74,0.039075935770025785],[125,184,75,0.022459159475333973],[125,184,76,0.014175413707081648],[125,184,77,0.001847589317658372],[125,184,78,-0.01980881283150964],[125,184,79,-0.02248216270927031],[125,185,64,-0.04346994455209352],[125,185,65,-0.034328909586772954],[125,185,66,-0.021845042992907307],[125,185,67,-0.014172857209120579],[125,185,68,-0.007485002414844608],[125,185,69,0.001220937021922816],[125,185,70,0.007709426302409589],[125,185,71,0.019095503371036437],[125,185,72,0.027506313973967744],[125,185,73,0.037846542252521834],[125,185,74,0.039467567903161804],[125,185,75,0.026244523403903694],[125,185,76,0.01771434410742916],[125,185,77,0.007735989476386419],[125,185,78,-0.009038478074531349],[125,185,79,-0.011189419059681287],[125,186,64,-0.05120255977232879],[125,186,65,-0.0397010088040302],[125,186,66,-0.027999357676420034],[125,186,67,-0.020877649825568154],[125,186,68,-0.01153816574383311],[125,186,69,-0.0024156383431730294],[125,186,70,0.003438851014895994],[125,186,71,0.011864208058546877],[125,186,72,0.021123613228315352],[125,186,73,0.032261020680370636],[125,186,74,0.034847091594988],[125,186,75,0.031994794844657795],[125,186,76,0.015358323381428583],[125,186,77,-5.103037501301214E-4],[125,186,78,-0.019537710155692826],[125,186,79,-0.015597555206319572],[125,187,64,-0.0509807748237974],[125,187,65,-0.03794248027903134],[125,187,66,-0.02872711072713474],[125,187,67,-0.01911021179274003],[125,187,68,-0.009814641087056986],[125,187,69,0.0014446273207608662],[125,187,70,0.004713429625394616],[125,187,71,0.01193567748220084],[125,187,72,0.021812587643042836],[125,187,73,0.030633131269346775],[125,187,74,0.03568279712482453],[125,187,75,0.026536967577624998],[125,187,76,0.009889340377819043],[125,187,77,-0.008631753573108102],[125,187,78,-0.026938710206279387],[125,187,79,-0.018025659535264034],[125,188,64,-0.03960203498984126],[125,188,65,-0.024282356735327845],[125,188,66,-0.01157574374037583],[125,188,67,-0.0040796700473809955],[125,188,68,0.008802625631459324],[125,188,69,0.01948321699372084],[125,188,70,0.024403444554590065],[125,188,71,0.029389061207589162],[125,188,72,0.038493525059213496],[125,188,73,0.04701355359744941],[125,188,74,0.053485044486186156],[125,188,75,0.041521075653844906],[125,188,76,0.02250915557886477],[125,188,77,0.005126703922073608],[125,188,78,-0.012369433245420225],[125,188,79,0.004042055703217834],[125,189,64,-0.03248854655731223],[125,189,65,-0.02216280714860505],[125,189,66,-0.013801741527041556],[125,189,67,-0.006870817875936727],[125,189,68,0.002867983406459912],[125,189,69,0.015345080834373581],[125,189,70,0.02187225679541574],[125,189,71,0.02891694380684559],[125,189,72,0.04349933542779069],[125,189,73,0.05551598474482572],[125,189,74,0.062441055802848866],[125,189,75,0.03967229938247827],[125,189,76,0.011808253291837253],[125,189,77,-0.013057687258688541],[125,189,78,-0.03186022847885463],[125,189,79,-0.014169228301248407],[125,190,64,-0.03089413958027047],[125,190,65,-0.021365360075610115],[125,190,66,-0.014275521847985084],[125,190,67,-0.0076715577008022034],[125,190,68,7.986481699426423E-4],[125,190,69,0.0148628243975788],[125,190,70,0.02297847432640117],[125,190,71,0.02851642728887499],[125,190,72,0.04534630831928417],[125,190,73,0.05792620171229143],[125,190,74,0.06492836315789874],[125,190,75,0.04074419059946381],[125,190,76,0.019424547803071873],[125,190,77,-0.010841175191150076],[125,190,78,-0.0323567313774151],[125,190,79,-0.014844267567114544],[125,191,64,-0.029676796385240733],[125,191,65,-0.019356683342606665],[125,191,66,-0.0131502930315021],[125,191,67,-0.006716944340035488],[125,191,68,9.07213053713482E-4],[125,191,69,0.013390662706451811],[125,191,70,0.023437980557625124],[125,191,71,0.03186041499297319],[125,191,72,0.04587440198300677],[125,191,73,0.0569587366575464],[125,191,74,0.06517694511802788],[125,191,75,0.05165385566555792],[125,191,76,0.035053852977748726],[125,191,77,0.0016514041206751456],[125,191,78,-0.021522211378414785],[125,191,79,-0.015617376433323504],[125,192,64,-0.02976806314152003],[125,192,65,-0.019443421681991924],[125,192,66,-0.012803599404551433],[125,192,67,-0.007758348504007001],[125,192,68,-0.001402062102825688],[125,192,69,0.011161583532273561],[125,192,70,0.022991197404077512],[125,192,71,0.03328773491002873],[125,192,72,0.0469291643808859],[125,192,73,0.05804990058909301],[125,192,74,0.06620839951003328],[125,192,75,0.061483017837185266],[125,192,76,0.04537992193036218],[125,192,77,0.005734500572501383],[125,192,78,-0.0089360787658644],[125,192,79,-0.015860898045215885],[125,193,64,-0.03807257546643522],[125,193,65,-0.021040262465497325],[125,193,66,-0.007895101597229351],[125,193,67,-9.597270571554128E-5],[125,193,68,0.009900196388817062],[125,193,69,0.019781349066719717],[125,193,70,0.027778219843234198],[125,193,71,0.036589909763884515],[125,193,72,0.04373276045809513],[125,193,73,0.04836403605773806],[125,193,74,0.0554142866389343],[125,193,75,0.06020094495936318],[125,193,76,0.06339963165954784],[125,193,77,0.03779501211345464],[125,193,78,0.032508086284579706],[125,193,79,0.020307983799036956],[125,194,64,-0.04428998111063459],[125,194,65,-0.027339926568275816],[125,194,66,-0.011472225473357717],[125,194,67,-0.0015532793559242114],[125,194,68,0.00655023401192939],[125,194,69,0.013061965044655108],[125,194,70,0.02350043801403766],[125,194,71,0.03149932940356838],[125,194,72,0.03674845288522588],[125,194,73,0.04003784892677886],[125,194,74,0.048435380077985424],[125,194,75,0.0543831989658459],[125,194,76,0.05839755791098175],[125,194,77,0.050202379616974796],[125,194,78,0.04659221364817022],[125,194,79,0.024095272165540714],[125,195,64,-0.045799312999552366],[125,195,65,-0.027199547873885413],[125,195,66,-0.011046416899272951],[125,195,67,2.479409291480522E-4],[125,195,68,0.008920519444593197],[125,195,69,0.01404955933906707],[125,195,70,0.02282833952566063],[125,195,71,0.02773858379770265],[125,195,72,0.034808107599141797],[125,195,73,0.03672679591517475],[125,195,74,0.04402574205859619],[125,195,75,0.05117219117118882],[125,195,76,0.05844151772501112],[125,195,77,0.05456225215645711],[125,195,78,0.05581733559816837],[125,195,79,0.021146946534360493],[125,196,64,-0.04332306437745176],[125,196,65,-0.03442363485137982],[125,196,66,-0.02233891152996141],[125,196,67,-0.017562523664769514],[125,196,68,-0.015746751007313],[125,196,69,-0.014624131233344398],[125,196,70,-0.009833125075121171],[125,196,71,-0.008355172603258507],[125,196,72,-0.0032270439086294483],[125,196,73,-0.0015467955561839775],[125,196,74,7.227236738320403E-4],[125,196,75,0.009935170092830597],[125,196,76,0.01712939924402737],[125,196,77,0.017080497652158837],[125,196,78,0.0237986772511163],[125,196,79,-0.010728182146136335],[125,197,64,-0.04182784388354717],[125,197,65,-0.03351617166138017],[125,197,66,-0.020098646539483553],[125,197,67,-0.014225754276206301],[125,197,68,-0.012587524413421883],[125,197,69,-0.012683952282605701],[125,197,70,-0.010071654800226537],[125,197,71,-0.008046420855939679],[125,197,72,-0.0022474068319228158],[125,197,73,-0.0010259339459252614],[125,197,74,9.085221025025708E-4],[125,197,75,0.008755835352905764],[125,197,76,0.016331547139598335],[125,197,77,-0.004285847348337136],[125,197,78,0.005782402491248534],[125,197,79,-0.01984436767898258],[125,198,64,-0.04146594972374047],[125,198,65,-0.03261274429268238],[125,198,66,-0.0201480021614365],[125,198,67,-0.010522847203881386],[125,198,68,-0.008714481298909338],[125,198,69,-0.009547071200716406],[125,198,70,-0.009019537684140905],[125,198,71,-0.005220580904204186],[125,198,72,-0.0021279659170806847],[125,198,73,-0.0010589534731880457],[125,198,74,0.0032986475543071297],[125,198,75,0.009373221454753625],[125,198,76,0.015345416629819211],[125,198,77,-2.6507097973760274E-4],[125,198,78,0.0016829462359132935],[125,198,79,-0.012266159205243175],[125,199,64,-0.04326297891745831],[125,199,65,-0.03467035404353855],[125,199,66,-0.021284171735590315],[125,199,67,-0.01170129502456782],[125,199,68,-0.010657617307406955],[125,199,69,-0.009469009594666927],[125,199,70,-0.007049455565156737],[125,199,71,-0.004490435378606078],[125,199,72,-0.0027712598943514244],[125,199,73,-0.0014621086984941967],[125,199,74,0.003424161019545416],[125,199,75,0.008819505173434217],[125,199,76,0.013687703512933469],[125,199,77,0.0036379838352418835],[125,199,78,-0.007389898105362065],[125,199,79,-0.012713339306311473],[125,200,64,-0.045382704237273086],[125,200,65,-0.035806519373229706],[125,200,66,-0.022773792656056294],[125,200,67,-0.014609569651986662],[125,200,68,-0.014145141971589281],[125,200,69,-0.008547165136748136],[125,200,70,-0.0058751879299408505],[125,200,71,-0.005801553195073722],[125,200,72,-0.0034203367972989313],[125,200,73,-0.001995577146293337],[125,200,74,0.004729096025884574],[125,200,75,0.011316173796564355],[125,200,76,0.01446990443054147],[125,200,77,0.004822679152274023],[125,200,78,-0.013129526623080631],[125,200,79,-0.016185283563153928],[125,201,64,-0.03445647591191668],[125,201,65,-0.02609517166734962],[125,201,66,-0.01704203429206433],[125,201,67,-0.012364655378675121],[125,201,68,-0.009108890224354182],[125,201,69,-0.002594136203732042],[125,201,70,-9.568596521439543E-4],[125,201,71,-0.00620089680990199],[125,201,72,-0.008057734728039986],[125,201,73,-0.005301047363545017],[125,201,74,-0.0012858109250571542],[125,201,75,0.006143317650216459],[125,201,76,0.008310075591450791],[125,201,77,-0.013658105711436316],[125,201,78,-0.02969527758109708],[125,201,79,-0.03893808518109172],[125,202,64,-0.038154183934206],[125,202,65,-0.030408004261737384],[125,202,66,-0.024881466289080903],[125,202,67,-0.019325242649179036],[125,202,68,-0.01521693849653688],[125,202,69,-0.009194087837357673],[125,202,70,-0.005999481575195087],[125,202,71,-0.012021746661800267],[125,202,72,-0.013210095912527517],[125,202,73,-0.009860068312126158],[125,202,74,-0.006421846386657382],[125,202,75,0.001999301675045667],[125,202,76,0.005676829444539261],[125,202,77,-0.011056394488987122],[125,202,78,-0.02667423426727074],[125,202,79,-0.035666649332104096],[125,203,64,-0.03830223843181582],[125,203,65,-0.03193520230206194],[125,203,66,-0.026822233798035708],[125,203,67,-0.021385837310713418],[125,203,68,-0.017863075170042167],[125,203,69,-0.012005375742518906],[125,203,70,-0.009274014800549346],[125,203,71,-0.014550105272627206],[125,203,72,-0.015877853272991974],[125,203,73,-0.011129370330161453],[125,203,74,-0.005535025116075218],[125,203,75,0.0019648574641389915],[125,203,76,0.007758480267257242],[125,203,77,-0.015132963322118703],[125,203,78,-0.034406683074527655],[125,203,79,-0.03784343036989006],[125,204,64,-0.02739605857397695],[125,204,65,-0.02065139616192252],[125,204,66,-0.014776446692538914],[125,204,67,-0.007870608305863391],[125,204,68,-0.0016072816073942064],[125,204,69,0.004916120471314234],[125,204,70,0.01009328541249789],[125,204,71,0.004771276833183513],[125,204,72,0.0054486049921445845],[125,204,73,0.011181577429360684],[125,204,74,0.01844462584023565],[125,204,75,0.02514362932137662],[125,204,76,0.03311937776727952],[125,204,77,0.0017873486476544034],[125,204,78,-0.021167905348865895],[125,204,79,-0.025300295827015276],[125,205,64,-0.04003929094417982],[125,205,65,-0.03469784169514893],[125,205,66,-0.027424690758983503],[125,205,67,-0.01980534198740097],[125,205,68,-0.013023267270153252],[125,205,69,-0.007466478839512181],[125,205,70,-0.0016258511467784897],[125,205,71,0.00106417970744703],[125,205,72,0.005389449487149006],[125,205,73,0.015842861966615607],[125,205,74,0.027935824894932626],[125,205,75,0.0330938714873332],[125,205,76,0.04061818881214088],[125,205,77,0.01616500638490219],[125,205,78,-0.0193028677992078],[125,205,79,-0.03304795833175804],[125,206,64,-0.043119359388933826],[125,206,65,-0.038597731788236764],[125,206,66,-0.032201423459566655],[125,206,67,-0.02511485232403421],[125,206,68,-0.017057041687036617],[125,206,69,-0.0067518288914989455],[125,206,70,-0.0025969480184068056],[125,206,71,6.956395530788029E-4],[125,206,72,0.0051489283070021985],[125,206,73,0.015489122454134682],[125,206,74,0.02715444614778953],[125,206,75,0.032112982537993856],[125,206,76,0.04086541072163773],[125,206,77,0.013087491147621748],[125,206,78,-0.023900516298266797],[125,206,79,-0.03733936824791324],[125,207,64,-0.04647340550745141],[125,207,65,-0.04132795988431934],[125,207,66,-0.03664381784848214],[125,207,67,-0.031230706106084374],[125,207,68,-0.020514564076740835],[125,207,69,-0.011989039103035462],[125,207,70,-0.007166891805608297],[125,207,71,-0.0031535619811512705],[125,207,72,4.601010838799213E-4],[125,207,73,0.01230546566684669],[125,207,74,0.026556954664216995],[125,207,75,0.032877755242781],[125,207,76,0.03814184326174054],[125,207,77,0.017822752340541276],[125,207,78,-0.01686161796145544],[125,207,79,-0.028010818351293168],[125,208,64,-0.048653233972766025],[125,208,65,-0.04222915519956877],[125,208,66,-0.036989073970946154],[125,208,67,-0.0359583487976346],[125,208,68,-0.025326651923547536],[125,208,69,-0.016775736073635875],[125,208,70,-0.014494697744175777],[125,208,71,-0.005195796816136952],[125,208,72,2.2660513979075314E-4],[125,208,73,0.011461809335135825],[125,208,74,0.02406594748484396],[125,208,75,0.03144157333206593],[125,208,76,0.034151016821837465],[125,208,77,-0.001176962828200595],[125,208,78,-0.02484907271398064],[125,208,79,-0.03041872095561965],[125,209,64,-0.049787515733518806],[125,209,65,-0.042529331789551525],[125,209,66,-0.0406449382635527],[125,209,67,-0.039321474188781305],[125,209,68,-0.029409288024828492],[125,209,69,-0.022791857296102946],[125,209,70,-0.01976477899013683],[125,209,71,-0.007867034926795774],[125,209,72,-0.003023906191256198],[125,209,73,0.008670844646979897],[125,209,74,0.021938274285606837],[125,209,75,0.028000164183003523],[125,209,76,0.03212238526371172],[125,209,77,-0.009388850545955944],[125,209,78,-0.022609506553267975],[125,209,79,-0.03189629646998479],[125,210,64,-0.0530813573130752],[125,210,65,-0.045990211970105194],[125,210,66,-0.045909138167493965],[125,210,67,-0.04847663836475383],[125,210,68,-0.03921441645734201],[125,210,69,-0.03157538530947905],[125,210,70,-0.025866695180576035],[125,210,71,-0.015719433147423162],[125,210,72,-0.01108012123814156],[125,210,73,0.001034107011786134],[125,210,74,0.013951565494916343],[125,210,75,0.01927374958300647],[125,210,76,0.024678157269686016],[125,210,77,-0.017836337329237645],[125,210,78,-0.028971252765461933],[125,210,79,-0.04493928461550373],[125,211,64,-0.049287313573063526],[125,211,65,-0.04558994549729342],[125,211,66,-0.04884636527690825],[125,211,67,-0.05138976652410657],[125,211,68,-0.04328877464141906],[125,211,69,-0.03355400115011456],[125,211,70,-0.02777947889501335],[125,211,71,-0.018540622449593813],[125,211,72,-0.01431343454480749],[125,211,73,-0.0029075174510670293],[125,211,74,0.011277719216596982],[125,211,75,0.013402850768877983],[125,211,76,0.021830007015531852],[125,211,77,-0.03131176233767931],[125,211,78,-0.04158735911511964],[125,211,79,-0.05761575410874928],[125,212,64,-0.04824545141490724],[125,212,65,-0.04718663407244532],[125,212,66,-0.05129296845206743],[125,212,67,-0.05786175291870414],[125,212,68,-0.052103643955155474],[125,212,69,-0.04343266312121162],[125,212,70,-0.03872539563275951],[125,212,71,-0.03206871372476523],[125,212,72,-0.02487129591721801],[125,212,73,-0.014908704635912193],[125,212,74,-0.0017167844530793785],[125,212,75,0.004350404569539029],[125,212,76,0.011592205838701825],[125,212,77,-0.035503196143318747],[125,212,78,-0.05084621214468461],[125,212,79,-0.05887526781907035],[125,213,64,-0.04213177679205829],[125,213,65,-0.0469184152729049],[125,213,66,-0.05522382879570703],[125,213,67,-0.062035522991327335],[125,213,68,-0.060486638325849745],[125,213,69,-0.054177562408226715],[125,213,70,-0.04829182607398895],[125,213,71,-0.04234545105520836],[125,213,72,-0.030576659605240225],[125,213,73,-0.018246759695216802],[125,213,74,-0.008129436956948885],[125,213,75,6.54919055722708E-4],[125,213,76,-0.03038232305437323],[125,213,77,-0.08186586191311643],[125,213,78,-0.10395516273619552],[125,213,79,-0.10081174413053946],[125,214,64,-0.045179614618436933],[125,214,65,-0.04981015272936985],[125,214,66,-0.05794524221325556],[125,214,67,-0.06252636807736449],[125,214,68,-0.06310511861129735],[125,214,69,-0.05862375706743944],[125,214,70,-0.053084697483665955],[125,214,71,-0.0461772946043552],[125,214,72,-0.03232188857514218],[125,214,73,-0.019683012442645503],[125,214,74,-0.010869585552591376],[125,214,75,-0.0031704780227946178],[125,214,76,-0.030999197054447473],[125,214,77,-0.08346479011863146],[125,214,78,-0.11399342280668211],[125,214,79,-0.10087613832075633],[125,215,64,-0.05207816237514036],[125,215,65,-0.05557564368816692],[125,215,66,-0.06149749133915808],[125,215,67,-0.06789864919777402],[125,215,68,-0.06534583675900947],[125,215,69,-0.0641195987490609],[125,215,70,-0.05929000508671188],[125,215,71,-0.051158821139606764],[125,215,72,-0.03650891636120293],[125,215,73,-0.021045124079294972],[125,215,74,-0.012854229485446012],[125,215,75,-0.005572342567821159],[125,215,76,-0.023433815931567424],[125,215,77,-0.08011495847247133],[125,215,78,-0.11364774877249419],[125,215,79,-0.09950133966290148],[125,216,64,-0.05693541554712715],[125,216,65,-0.05693641349914369],[125,216,66,-0.06594685128526455],[125,216,67,-0.07040715319218978],[125,216,68,-0.06609751176870801],[125,216,69,-0.06494581235771367],[125,216,70,-0.06286856458535468],[125,216,71,-0.05188369698894428],[125,216,72,-0.0389004767057482],[125,216,73,-0.02494775798573816],[125,216,74,-0.013100323834542807],[125,216,75,-0.006612507218480362],[125,216,76,-0.013047619341208568],[125,216,77,-0.08343086535295977],[125,216,78,-0.11314866941831059],[125,216,79,-0.1008579309390248],[125,217,64,-0.06620924314514624],[125,217,65,-0.06170364126152994],[125,217,66,-0.06263711017004402],[125,217,67,-0.06188252370763839],[125,217,68,-0.05582841633619509],[125,217,69,-0.05434044541569698],[125,217,70,-0.05431363399621106],[125,217,71,-0.04948691339423013],[125,217,72,-0.039997561757388],[125,217,73,-0.028368384351051823],[125,217,74,-0.017444808286783936],[125,217,75,-0.00936787169547959],[125,217,76,-0.01660707363725339],[125,217,77,-0.08334582049326827],[125,217,78,-0.11211067763058201],[125,217,79,-0.0996572384133995],[125,218,64,-0.07202672285977714],[125,218,65,-0.06741297776746324],[125,218,66,-0.06732853414839804],[125,218,67,-0.06875462517786546],[125,218,68,-0.062811216103401],[125,218,69,-0.05950938948070926],[125,218,70,-0.05985837243449052],[125,218,71,-0.05583792025611932],[125,218,72,-0.046101155720966375],[125,218,73,-0.03423578877192425],[125,218,74,-0.024364467617339305],[125,218,75,-0.0160563338130576],[125,218,76,-0.016990224180602292],[125,218,77,-0.0770766096195337],[125,218,78,-0.11641403941748026],[125,218,79,-0.10361190962438288],[125,219,64,-0.0715365080280641],[125,219,65,-0.06759542574249147],[125,219,66,-0.06699384238847725],[125,219,67,-0.06869789415593083],[125,219,68,-0.0653025321160846],[125,219,69,-0.060219486864759295],[125,219,70,-0.05837012685609552],[125,219,71,-0.055987986442698756],[125,219,72,-0.047660192029347126],[125,219,73,-0.037388882773103066],[125,219,74,-0.02634906716657215],[125,219,75,-0.018401259591681235],[125,219,76,-0.016713989518859707],[125,219,77,-0.07900096719575862],[125,219,78,-0.12467867892739157],[125,219,79,-0.10953577532648873],[125,220,64,-0.06369843399362304],[125,220,65,-0.059527323022271886],[125,220,66,-0.05725096587068884],[125,220,67,-0.05755092624381801],[125,220,68,-0.053676047185540976],[125,220,69,-0.04571129147779776],[125,220,70,-0.04108227941212145],[125,220,71,-0.03838954329064592],[125,220,72,-0.030452722455665118],[125,220,73,-0.02046216721554478],[125,220,74,-0.011285994421416978],[125,220,75,-0.005615686590693211],[125,220,76,-0.008173371740401341],[125,220,77,-0.08216995896543235],[125,220,78,-0.12589536702672438],[125,220,79,-0.11021631735015518],[125,221,64,-0.06804888935742733],[125,221,65,-0.06261566161560587],[125,221,66,-0.061567548032522415],[125,221,67,-0.06234875967385725],[125,221,68,-0.05528009510874188],[125,221,69,-0.04639128744502857],[125,221,70,-0.04120773323590833],[125,221,71,-0.038421275874205116],[125,221,72,-0.03030745938467823],[125,221,73,-0.022657558020794902],[125,221,74,-0.013192206106866403],[125,221,75,-0.00829177703775602],[125,221,76,-0.049589583925416944],[125,221,77,-0.1302592046281157],[125,221,78,-0.12618050789004848],[125,221,79,-0.11040085175811097],[125,222,64,-0.07217202494173704],[125,222,65,-0.06627250972091417],[125,222,66,-0.06449397612655763],[125,222,67,-0.06536035766154294],[125,222,68,-0.058695400929467456],[125,222,69,-0.049065890793589514],[125,222,70,-0.04327347837958623],[125,222,71,-0.035874289160785305],[125,222,72,-0.029643812346901],[125,222,73,-0.024073000365243652],[125,222,74,-0.013079060752670221],[125,222,75,-0.008331597076317226],[125,222,76,-0.060126438452074805],[125,222,77,-0.12978061450556966],[125,222,78,-0.1155831596589629],[125,222,79,-0.10391219035280022],[125,223,64,-0.08050005506807065],[125,223,65,-0.07500464834659208],[125,223,66,-0.07008319232796181],[125,223,67,-0.07095788415621207],[125,223,68,-0.06500549356845524],[125,223,69,-0.055840977842064],[125,223,70,-0.05022917738879665],[125,223,71,-0.04144393225827479],[125,223,72,-0.031213304200066808],[125,223,73,-0.025983488853642267],[125,223,74,-0.015838876751891454],[125,223,75,-0.02795224244245144],[125,223,76,-0.08221294028122614],[125,223,77,-0.12498565878605146],[125,223,78,-0.11097893045900814],[125,223,79,-0.09979512509389185],[125,224,64,-0.08231926847554145],[125,224,65,-0.07872987274564752],[125,224,66,-0.07327335736951952],[125,224,67,-0.0692003115188776],[125,224,68,-0.06682677878493834],[125,224,69,-0.05895220980536274],[125,224,70,-0.0508811796623856],[125,224,71,-0.041402473029062525],[125,224,72,-0.032526957667746506],[125,224,73,-0.02818158187041281],[125,224,74,-0.015525042775061407],[125,224,75,-0.038424177201785537],[125,224,76,-0.0879292192758512],[125,224,77,-0.12418569636800258],[125,224,78,-0.11120979279439476],[125,224,79,-0.1006968018614336],[125,225,64,-0.08834496091304958],[125,225,65,-0.08107030057060163],[125,225,66,-0.0744857471726999],[125,225,67,-0.06411012908371516],[125,225,68,-0.0590859746891336],[125,225,69,-0.05271743909954725],[125,225,70,-0.04354762198711326],[125,225,71,-0.03319228051665328],[125,225,72,-0.02317960632876706],[125,225,73,-0.017113345114000866],[125,225,74,-0.007028980069658269],[125,225,75,-0.0362444691515843],[125,225,76,-0.08776716239418449],[125,225,77,-0.12556960754156454],[125,225,78,-0.1137473693791739],[125,225,79,-0.10005052341052409],[125,226,64,-0.0942071759453274],[125,226,65,-0.08785487665939276],[125,226,66,-0.08196024769436697],[125,226,67,-0.06984529249573102],[125,226,68,-0.06114244412366504],[125,226,69,-0.05714319646362509],[125,226,70,-0.04913472927843572],[125,226,71,-0.0371747726621571],[125,226,72,-0.02865172392679427],[125,226,73,-0.021137858870639722],[125,226,74,-0.010440575629770896],[125,226,75,-0.029208188754203144],[125,226,76,-0.08433338401540234],[125,226,77,-0.12351472573798135],[125,226,78,-0.11300105741501482],[125,226,79,-0.09941320225349738],[125,227,64,-0.09560638209343056],[125,227,65,-0.09053341241338692],[125,227,66,-0.082462070656782],[125,227,67,-0.07048191725831501],[125,227,68,-0.06216858519589637],[125,227,69,-0.05680683731509707],[125,227,70,-0.0474779805799547],[125,227,71,-0.03776584623172759],[125,227,72,-0.02814158025777437],[125,227,73,-0.020621828794897767],[125,227,74,-0.01152987489170966],[125,227,75,-0.03328495715546788],[125,227,76,-0.10131812691131017],[125,227,77,-0.13785581055827023],[125,227,78,-0.12032689066700844],[125,227,79,-0.10768590584782431],[125,228,64,-0.08764352703956738],[125,228,65,-0.08496546988984607],[125,228,66,-0.07554927468097751],[125,228,67,-0.06378824861530158],[125,228,68,-0.05568480475447385],[125,228,69,-0.04589955522986432],[125,228,70,-0.03483166154610566],[125,228,71,-0.026404640069484245],[125,228,72,-0.018555679053771965],[125,228,73,-0.011280535183612411],[125,228,74,-0.0031205237312186968],[125,228,75,-0.0316057594222546],[125,228,76,-0.10134399717843218],[125,228,77,-0.1381647818273597],[125,228,78,-0.1247481929955512],[125,228,79,-0.11241043567815923],[125,229,64,-0.0809337132876228],[125,229,65,-0.08219561169189438],[125,229,66,-0.08147844383874828],[125,229,67,-0.07769511014778016],[125,229,68,-0.07036972815945793],[125,229,69,-0.05697350193215282],[125,229,70,-0.046347099253613855],[125,229,71,-0.03742762434219768],[125,229,72,-0.0316330002161271],[125,229,73,-0.02517148083711436],[125,229,74,-0.015496559045616948],[125,229,75,-0.08210588815806222],[125,229,76,-0.1391251805030282],[125,229,77,-0.1405961473372762],[125,229,78,-0.13071148246087508],[125,229,79,-0.1190334685873019],[125,230,64,-0.08171234714418388],[125,230,65,-0.08273991518030294],[125,230,66,-0.08393804648634909],[125,230,67,-0.08043664045393975],[125,230,68,-0.07325700525254533],[125,230,69,-0.05816527938802621],[125,230,70,-0.04808288857185898],[125,230,71,-0.03991234248530631],[125,230,72,-0.035764989286002455],[125,230,73,-0.026470885558216112],[125,230,74,-0.017478658630348115],[125,230,75,-0.08006332711185846],[125,230,76,-0.14113478465227722],[125,230,77,-0.13674071571207863],[125,230,78,-0.12912795225780063],[125,230,79,-0.11827945434301687],[125,231,64,-0.09139254889145812],[125,231,65,-0.08967346975018076],[125,231,66,-0.0915177013989066],[125,231,67,-0.08677587157296604],[125,231,68,-0.0780046896765908],[125,231,69,-0.06395813919695649],[125,231,70,-0.0536546473898719],[125,231,71,-0.04575710473017655],[125,231,72,-0.040808807531589775],[125,231,73,-0.02988127572905032],[125,231,74,-0.019265507201174703],[125,231,75,-0.07228700376393786],[125,231,76,-0.1449434178530002],[125,231,77,-0.1357030925496985],[125,231,78,-0.12686345567839946],[125,231,79,-0.11834900455579668],[125,232,64,-0.09268835429161618],[125,232,65,-0.09066187731496492],[125,232,66,-0.09075664576412269],[125,232,67,-0.08665289565502599],[125,232,68,-0.07646472228318965],[125,232,69,-0.06500796025827828],[125,232,70,-0.05464955539110877],[125,232,71,-0.04767131301615121],[125,232,72,-0.041810091231734625],[125,232,73,-0.029582916490104846],[125,232,74,-0.01718395926082915],[125,232,75,-0.07462555989255577],[125,232,76,-0.1489422535818897],[125,232,77,-0.13897634910907827],[125,232,78,-0.12933326951057506],[125,232,79,-0.12242904932201923],[125,233,64,-0.0948425387204049],[125,233,65,-0.0937526490161475],[125,233,66,-0.09148232828219008],[125,233,67,-0.08311898148179851],[125,233,68,-0.0753431740494099],[125,233,69,-0.06495897906533481],[125,233,70,-0.05404645559249521],[125,233,71,-0.04867006616849055],[125,233,72,-0.04159142519654621],[125,233,73,-0.029806849409307612],[125,233,74,-0.01612572041039645],[125,233,75,-0.07680974780031895],[125,233,76,-0.15323363231773152],[125,233,77,-0.1432724843298502],[125,233,78,-0.13491845005241157],[125,233,79,-0.1290434552986601],[125,234,64,-0.10079611842662564],[125,234,65,-0.10250290139155688],[125,234,66,-0.09602957041697457],[125,234,67,-0.08443395821556957],[125,234,68,-0.07727001134444539],[125,234,69,-0.06609159326493669],[125,234,70,-0.058364344322605385],[125,234,71,-0.04887320708959869],[125,234,72,-0.04411964048619739],[125,234,73,-0.0310944536367075],[125,234,74,-0.018153173527202957],[125,234,75,-0.06684522002128297],[125,234,76,-0.16014348895416353],[125,234,77,-0.15649818821327902],[125,234,78,-0.14452425613166656],[125,234,79,-0.13792821078498527],[125,235,64,-0.09933713763548549],[125,235,65,-0.10317903879751511],[125,235,66,-0.0961640080964399],[125,235,67,-0.08391993761169908],[125,235,68,-0.07758413423359964],[125,235,69,-0.06779987085685499],[125,235,70,-0.05774759824526249],[125,235,71,-0.045100114368669106],[125,235,72,-0.03985049929879325],[125,235,73,-0.02748347401574855],[125,235,74,-0.016806296967459763],[125,235,75,-0.03621160993889419],[125,235,76,-0.1274367063346645],[125,235,77,-0.16479871847973496],[125,235,78,-0.15037396962470778],[125,235,79,-0.1452283173526654],[125,236,64,-0.09392724262456262],[125,236,65,-0.10112675956125924],[125,236,66,-0.10042266661653049],[125,236,67,-0.09333382433740517],[125,236,68,-0.09135499045222911],[125,236,69,-0.08566431715540412],[125,236,70,-0.07920110385371641],[125,236,71,-0.06736525595790245],[125,236,72,-0.061627400029736074],[125,236,73,-0.04975666972841898],[125,236,74,-0.039316380118577327],[125,236,75,-0.05207616469394243],[125,236,76,-0.13002990923079683],[125,236,77,-0.17237001734621618],[125,236,78,-0.16114758269726817],[125,236,79,-0.15352201236260998],[125,237,64,-0.10075188007865332],[125,237,65,-0.10226378988659021],[125,237,66,-0.0958256636632667],[125,237,67,-0.08669250814486543],[125,237,68,-0.081364562364422],[125,237,69,-0.07858444937268219],[125,237,70,-0.0688014667953867],[125,237,71,-0.05875888954874206],[125,237,72,-0.05052698987168229],[125,237,73,-0.04155131474008303],[125,237,74,-0.0303481840914184],[125,237,75,-0.07708084590296113],[125,237,76,-0.1486353619293558],[125,237,77,-0.17440824948472475],[125,237,78,-0.164489118630926],[125,237,79,-0.15535285421986678],[125,238,64,-0.10212898996868497],[125,238,65,-0.10183531957575906],[125,238,66,-0.09550774043845409],[125,238,67,-0.08873895976937614],[125,238,68,-0.08184368478372911],[125,238,69,-0.07922269403843879],[125,238,70,-0.07047766242269465],[125,238,71,-0.05921164892938016],[125,238,72,-0.053553363312687716],[125,238,73,-0.04435330340022095],[125,238,74,-0.031679580674472504],[125,238,75,-0.05095423731436172],[125,238,76,-0.11493096660821324],[125,238,77,-0.17124626215091632],[125,238,78,-0.16343315465537503],[125,238,79,-0.15431925389196427],[125,239,64,-0.10739305443721722],[125,239,65,-0.10828035765558208],[125,239,66,-0.10272333961459545],[125,239,67,-0.09307582979986997],[125,239,68,-0.08694309792677135],[125,239,69,-0.08411987829436231],[125,239,70,-0.07538817128867738],[125,239,71,-0.06412056769403797],[125,239,72,-0.05697786200501449],[125,239,73,-0.04735939504631184],[125,239,74,-0.03310871121265524],[125,239,75,-0.038961452586231696],[125,239,76,-0.09768470991312066],[125,239,77,-0.166823817928615],[125,239,78,-0.1591689874342422],[125,239,79,-0.1498563157183754],[125,240,64,-0.10465898758165762],[125,240,65,-0.10546394487342178],[125,240,66,-0.10147933890143716],[125,240,67,-0.09245578975559632],[125,240,68,-0.08691473790697465],[125,240,69,-0.08695290308936754],[125,240,70,-0.07960767258942675],[125,240,71,-0.06592832710495738],[125,240,72,-0.058302414743997555],[125,240,73,-0.04701959921228516],[125,240,74,-0.035162034671479436],[125,240,75,-0.040858456709479865],[125,240,76,-0.09391059485589992],[125,240,77,-0.1585937456458139],[125,240,78,-0.15635637305791816],[125,240,79,-0.14830878792675167],[125,241,64,-0.09725636424209916],[125,241,65,-0.10138849668163114],[125,241,66,-0.10344316105644971],[125,241,67,-0.1009957076170228],[125,241,68,-0.09668930124308384],[125,241,69,-0.09649897633806528],[125,241,70,-0.08774914563889419],[125,241,71,-0.07452070527551964],[125,241,72,-0.06447306205195197],[125,241,73,-0.05535219267612522],[125,241,74,-0.042907583503094315],[125,241,75,-0.036308118630156525],[125,241,76,-0.022809471980267823],[125,241,77,-0.011022392266245698],[125,241,78,-0.004009332222051308],[125,241,79,-0.06441177530288346],[125,242,64,-0.10002653552462826],[125,242,65,-0.10522221881849325],[125,242,66,-0.104784210916857],[125,242,67,-0.10396548480077833],[125,242,68,-0.10119367326399825],[125,242,69,-0.10012596758828834],[125,242,70,-0.09045239494898613],[125,242,71,-0.07771835732970742],[125,242,72,-0.06621411948673686],[125,242,73,-0.05784658017211357],[125,242,74,-0.04505945170002282],[125,242,75,-0.04151163961622835],[125,242,76,-0.0282635512468188],[125,242,77,-0.01452320254981064],[125,242,78,0.003111468939544367],[125,242,79,-0.06309577812795127],[125,243,64,-0.09967817361744852],[125,243,65,-0.1058781991033087],[125,243,66,-0.10812310675432099],[125,243,67,-0.10364037630847436],[125,243,68,-0.10277945055597745],[125,243,69,-0.09581140305300434],[125,243,70,-0.08839230691441058],[125,243,71,-0.07633983141259547],[125,243,72,-0.06650710739552042],[125,243,73,-0.05451313357262902],[125,243,74,-0.04739817312410238],[125,243,75,-0.03831133989777109],[125,243,76,-0.026806916908037146],[125,243,77,-0.013187470307417848],[125,243,78,0.005369692791303657],[125,243,79,-0.059418286272701556],[125,244,64,-0.08850590441033845],[125,244,65,-0.08619613170983384],[125,244,66,-0.0806920069022756],[125,244,67,-0.067889895534487],[125,244,68,-0.05905439570334056],[125,244,69,-0.04532114922098307],[125,244,70,-0.031559924021696134],[125,244,71,-0.016883251849485956],[125,244,72,-0.005404617974874529],[125,244,73,0.007627337332674691],[125,244,74,0.01317214743923835],[125,244,75,0.023183080072518875],[125,244,76,0.035463130454467556],[125,244,77,0.047952280448771034],[125,244,78,0.06664448962849188],[125,244,79,-0.015378595932930145],[125,245,64,-0.08870748184792862],[125,245,65,-0.0870272864743192],[125,245,66,-0.07891958344413955],[125,245,67,-0.06615468142664598],[125,245,68,-0.061297829263522646],[125,245,69,-0.045112046826495444],[125,245,70,-0.029520773103956177],[125,245,71,-0.014672848460682633],[125,245,72,-0.003195672855893991],[125,245,73,0.006460448588472778],[125,245,74,0.014299463720905264],[125,245,75,0.02329736264364779],[125,245,76,0.036043013010601394],[125,245,77,0.05079716169428586],[125,245,78,0.06734125956246903],[125,245,79,-0.00254246806287034],[125,246,64,-0.0923502598717803],[125,246,65,-0.08432207230966401],[125,246,66,-0.07626173688022275],[125,246,67,-0.06483357939756645],[125,246,68,-0.05947058594267053],[125,246,69,-0.04645135042014331],[125,246,70,-0.02745444435473289],[125,246,71,-0.01442780172401345],[125,246,72,0.0013810714022188808],[125,246,73,0.007827980875220589],[125,246,74,0.01405466497238822],[125,246,75,0.02342695469239907],[125,246,76,0.03674629550345766],[125,246,77,0.05228589761826598],[125,246,78,0.06867842934103432],[125,246,79,0.024699150293525866],[125,247,64,-0.09743699591033175],[125,247,65,-0.08626290228939543],[125,247,66,-0.0782412379218056],[125,247,67,-0.06767878052129152],[125,247,68,-0.061120856244826716],[125,247,69,-0.04891781926924012],[125,247,70,-0.028852920681931904],[125,247,71,-0.015228550948763256],[125,247,72,0.002840822584483052],[125,247,73,0.008178677305921048],[125,247,74,0.01617994847601295],[125,247,75,0.02632669362376068],[125,247,76,0.041595308991237104],[125,247,77,0.056271404079120346],[125,247,78,0.07074817076702128],[125,247,79,0.046152257200394106],[125,248,64,-0.09334328186541269],[125,248,65,-0.0819671667138073],[125,248,66,-0.0711479269153672],[125,248,67,-0.06187783751181525],[125,248,68,-0.05526349172075429],[125,248,69,-0.045486347778177616],[125,248,70,-0.027891137040150296],[125,248,71,-0.01338707792299891],[125,248,72,0.0034676935416891597],[125,248,73,0.012862850396326841],[125,248,74,0.018845765409788925],[125,248,75,0.028270489857879957],[125,248,76,0.042761453632106955],[125,248,77,0.058602816613776254],[125,248,78,0.07364652843603833],[125,248,79,0.051504382542536344],[125,249,64,-0.09900772071280661],[125,249,65,-0.0899969993221176],[125,249,66,-0.07285996523961585],[125,249,67,-0.06244678935465024],[125,249,68,-0.05767565490634935],[125,249,69,-0.04735057407861046],[125,249,70,-0.030697928127107116],[125,249,71,-0.008722355092283543],[125,249,72,0.010434740669009374],[125,249,73,0.02249874332711932],[125,249,74,0.029931751364985576],[125,249,75,0.0405729638048047],[125,249,76,0.05389129342917236],[125,249,77,0.06528517021116707],[125,249,78,0.07732725249993479],[125,249,79,0.003936143765323266],[125,250,64,-0.09979557898813599],[125,250,65,-0.09215780454010876],[125,250,66,-0.093925693341318],[125,250,67,-0.1193123476178747],[125,250,68,-0.10608685740449077],[125,250,69,-0.10032022198280599],[125,250,70,-0.05851764306499992],[125,250,71,-0.011578676200230564],[125,250,72,-0.0015015874492619423],[125,250,73,0.014469128292028257],[125,250,74,-0.05544322327443055],[125,250,75,-0.05183577992046423],[125,250,76,-0.0039990159533854],[125,250,77,0.021836200663141743],[125,250,78,0.0370102566274106],[125,250,79,0.0449467467496224],[125,251,64,-0.09775851426815918],[125,251,65,-0.09270654197919508],[125,251,66,-0.09931078789931694],[125,251,67,-0.13002443720762236],[125,251,68,-0.13064974704769172],[125,251,69,-0.11814389064388973],[125,251,70,-0.07807593184156147],[125,251,71,-0.02001402670604208],[125,251,72,-0.005584331401065044],[125,251,73,0.011776532563027162],[125,251,74,-0.054971485780978116],[125,251,75,-0.04694112131355882],[125,251,76,0.006735862189239633],[125,251,77,0.0292024970096142],[125,251,78,0.036040379105392234],[125,251,79,0.05049265961032614],[125,252,64,-0.09676575979742169],[125,252,65,-0.08559013660985278],[125,252,66,-0.09454061535341997],[125,252,67,-0.13261866133969724],[125,252,68,-0.13859843042286685],[125,252,69,-0.11377327483756451],[125,252,70,-0.08512958273006449],[125,252,71,-0.037085428667417285],[125,252,72,-0.013065061340421964],[125,252,73,-0.01237295995945463],[125,252,74,-0.05425805458200597],[125,252,75,-0.04456903740588131],[125,252,76,-0.0016050701430463526],[125,252,77,0.006551943073420871],[125,252,78,0.022928862558080486],[125,252,79,0.04152261291922639],[125,253,64,-0.09352481734522126],[125,253,65,-0.079814109531514],[125,253,66,-0.06720230569816169],[125,253,67,-0.09149491950075228],[125,253,68,-0.08743887699547034],[125,253,69,-0.07513201053870233],[125,253,70,-0.0840826419371298],[125,253,71,-0.07151291232083175],[125,253,72,-0.04788432790549522],[125,253,73,-0.040858444744721015],[125,253,74,-0.03944136616223925],[125,253,75,-0.024492949058027888],[125,253,76,0.006432163986931437],[125,253,77,-0.009044433640476357],[125,253,78,-0.021694217188933995],[125,253,79,-0.025452904349988356],[125,254,64,-0.0024517680937919117],[125,254,65,-0.0024275241615576756],[125,254,66,0.011587366072854127],[125,254,67,-0.030698662889505415],[125,254,68,-0.04064881219437694],[125,254,69,-0.04420508088236291],[125,254,70,-0.06692979880298376],[125,254,71,-0.05870081128143216],[125,254,72,-0.039656129953328054],[125,254,73,-0.03908466735622835],[125,254,74,-0.03150233827909376],[125,254,75,-0.024681548339065877],[125,254,76,-0.005921123399830638],[125,254,77,-0.02225652953903972],[125,254,78,-0.04269869382500094],[125,254,79,-0.05732517187352325],[125,255,64,-3.485044175889629E-4],[125,255,65,0.009881661395187119],[125,255,66,0.014420712532344754],[125,255,67,-0.006194440696113832],[125,255,68,-0.029079508888168674],[125,255,69,-0.032574735332181345],[125,255,70,-0.06243643894170897],[125,255,71,-0.05497667148541359],[125,255,72,-0.028708228407561376],[125,255,73,-0.03494105221131798],[125,255,74,-0.027750891001687393],[125,255,75,-0.02125144989922413],[125,255,76,-0.002363025720738734],[125,255,77,-0.019434987637805864],[125,255,78,-0.04032523018733604],[125,255,79,-0.06340258911102463],[125,256,64,0.004681545069362025],[125,256,65,0.011391660542933224],[125,256,66,0.015430966689187586],[125,256,67,0.007651205117313207],[125,256,68,-0.024909761696220174],[125,256,69,-0.026308639275869974],[125,256,70,-0.06956159253883758],[125,256,71,-0.06778567781542484],[125,256,72,-0.03220436184203959],[125,256,73,-0.0348309104451903],[125,256,74,-0.03450849506513255],[125,256,75,-0.018975635959680756],[125,256,76,-0.004331895656749737],[125,256,77,-0.014117178942816173],[125,256,78,-0.04735082451887025],[125,256,79,-0.07031774909296047],[125,257,64,0.007273442427871951],[125,257,65,0.012165045389126522],[125,257,66,0.015381404559999923],[125,257,67,0.003624076967533439],[125,257,68,-0.017403882265528102],[125,257,69,-0.033774405539657],[125,257,70,-0.08204585444525249],[125,257,71,-0.0917089188207972],[125,257,72,-0.06278238131726864],[125,257,73,-0.06468444615081054],[125,257,74,-0.05882183287073556],[125,257,75,-0.04193598995095177],[125,257,76,-0.040049803214105666],[125,257,77,-0.04561385537279272],[125,257,78,-0.09043542854722855],[125,257,79,-0.12219322487939989],[125,258,64,0.0020850607027525225],[125,258,65,0.007493750370348468],[125,258,66,0.008867479528599925],[125,258,67,0.00974550908726507],[125,258,68,0.01440834758963036],[125,258,69,0.0027059269251189424],[125,258,70,-0.0391344680254937],[125,258,71,-0.05705729027905965],[125,258,72,-0.050966284191572064],[125,258,73,-0.049726904417255614],[125,258,74,-0.03790679889784763],[125,258,75,-0.035058473491499785],[125,258,76,-0.03382158312860251],[125,258,77,-0.043239202071840024],[125,258,78,-0.09445135238666798],[125,258,79,-0.13530384793371347],[125,259,64,0.0033249473034464294],[125,259,65,0.006095145183558082],[125,259,66,0.008322525685004217],[125,259,67,0.008298973110828112],[125,259,68,0.003417445821521885],[125,259,69,-0.03955085771551027],[125,259,70,-0.057066419189983786],[125,259,71,-0.07983476442635234],[125,259,72,-0.0703284589499689],[125,259,73,-0.04773414144582788],[125,259,74,-0.027429234817033257],[125,259,75,-0.019386278804105664],[125,259,76,-0.005155688767043733],[125,259,77,-0.017962000551466975],[125,259,78,-0.07644074525307305],[125,259,79,-0.12339672865900948],[125,260,64,-0.12901731905657982],[125,260,65,-0.12981022725710342],[125,260,66,-0.13185878165879622],[125,260,67,-0.13230079423152744],[125,260,68,-0.14282292865175486],[125,260,69,-0.15994173421290275],[125,260,70,-0.16318565127435344],[125,260,71,-0.1675467960006622],[125,260,72,-0.16648474725166934],[125,260,73,-0.15651918596626924],[125,260,74,-0.15276776175533863],[125,260,75,-0.1466891991526847],[125,260,76,-0.13916407895326705],[125,260,77,-0.1390695706827515],[125,260,78,-0.14446382196105476],[125,260,79,-0.1484449377642288],[125,261,64,-0.1300318880897714],[125,261,65,-0.1332834488596155],[125,261,66,-0.13289385569613546],[125,261,67,-0.15037786769362985],[125,261,68,-0.16646040743101437],[125,261,69,-0.18253271936962215],[125,261,70,-0.1747241347766565],[125,261,71,-0.17086939760141256],[125,261,72,-0.17085476609634748],[125,261,73,-0.16167435803328573],[125,261,74,-0.15990044970671624],[125,261,75,-0.1527938229304323],[125,261,76,-0.14481896367965927],[125,261,77,-0.1416537516998194],[125,261,78,-0.1449525463839723],[125,261,79,-0.14926449435381214],[125,262,64,-0.1364647593252996],[125,262,65,-0.13779944552080833],[125,262,66,-0.13763045661362408],[125,262,67,-0.16150466580248138],[125,262,68,-0.1817115354848548],[125,262,69,-0.21305819686195887],[125,262,70,-0.20852047276449814],[125,262,71,-0.20300018334302805],[125,262,72,-0.19714822091907871],[125,262,73,-0.18173136956739663],[125,262,74,-0.18204638616912822],[125,262,75,-0.16795971174616503],[125,262,76,-0.15705850101864124],[125,262,77,-0.15610876493859555],[125,262,78,-0.16634048900160492],[125,262,79,-0.17781987433273183],[125,263,64,-0.1331801907507279],[125,263,65,-0.13479825700826986],[125,263,66,-0.1343020868786592],[125,263,67,-0.15754447495284352],[125,263,68,-0.17277061974978664],[125,263,69,-0.20631150749520122],[125,263,70,-0.211393286777588],[125,263,71,-0.1995540744443764],[125,263,72,-0.1905330622309974],[125,263,73,-0.17528704825965485],[125,263,74,-0.18412419762696605],[125,263,75,-0.1699560150061055],[125,263,76,-0.16175092007907083],[125,263,77,-0.15853872063416327],[125,263,78,-0.16551712154001774],[125,263,79,-0.1734461012718401],[125,264,64,-0.12797368737129333],[125,264,65,-0.13330424133711932],[125,264,66,-0.13351243222464498],[125,264,67,-0.154996135991859],[125,264,68,-0.16564816933813784],[125,264,69,-0.20006090134702528],[125,264,70,-0.22074746141783955],[125,264,71,-0.20033565812522008],[125,264,72,-0.1857124210919846],[125,264,73,-0.1747281605168643],[125,264,74,-0.18604941705382902],[125,264,75,-0.17400608241714194],[125,264,76,-0.16650996419771028],[125,264,77,-0.1621433213193943],[125,264,78,-0.1681759277581479],[125,264,79,-0.173542930693351],[125,265,64,-0.12289574380371031],[125,265,65,-0.13068258673388689],[125,265,66,-0.13423263330227192],[125,265,67,-0.1356555876554691],[125,265,68,-0.13132585480097148],[125,265,69,-0.1594296012606091],[125,265,70,-0.19726175467022514],[125,265,71,-0.19753228257844385],[125,265,72,-0.198016567045768],[125,265,73,-0.20996591506782353],[125,265,74,-0.22673153524427417],[125,265,75,-0.21701336186427095],[125,265,76,-0.208149574164768],[125,265,77,-0.20569975001669433],[125,265,78,-0.19532328002758997],[125,265,79,-0.18265346665311177],[125,266,64,-0.12754167864269367],[125,266,65,-0.13446837618514573],[125,266,66,-0.13841583367249155],[125,266,67,-0.13988230048781736],[125,266,68,-0.1353977496919936],[125,266,69,-0.13540610659673016],[125,266,70,-0.16409547273400615],[125,266,71,-0.17961298218554042],[125,266,72,-0.18367879499309672],[125,266,73,-0.1988367007497731],[125,266,74,-0.21830940696188028],[125,266,75,-0.21106199142782311],[125,266,76,-0.19789027730371472],[125,266,77,-0.18996711312049577],[125,266,78,-0.182266590055621],[125,266,79,-0.17058038611641574],[125,267,64,-0.1265099146693655],[125,267,65,-0.13312093536377467],[125,267,66,-0.1380641296895944],[125,267,67,-0.13842988874626094],[125,267,68,-0.1343019278738637],[125,267,69,-0.13556231914371603],[125,267,70,-0.1559249958210807],[125,267,71,-0.1873115214189973],[125,267,72,-0.19190817319382308],[125,267,73,-0.19868328349940795],[125,267,74,-0.2222682685125657],[125,267,75,-0.2145925229293736],[125,267,76,-0.20352454389308733],[125,267,77,-0.19402972060850435],[125,267,78,-0.18516511186779075],[125,267,79,-0.17374318558353558],[125,268,64,-0.1249916115169501],[125,268,65,-0.13117276678098444],[125,268,66,-0.13887199038936493],[125,268,67,-0.13955082664147744],[125,268,68,-0.13914799528771524],[125,268,69,-0.13993696520953686],[125,268,70,-0.14100186372581444],[125,268,71,-0.17647171077278623],[125,268,72,-0.1805323739521832],[125,268,73,-0.18431063548046828],[125,268,74,-0.2021411085344001],[125,268,75,-0.1997205011908463],[125,268,76,-0.19291356897933304],[125,268,77,-0.18525779859432745],[125,268,78,-0.18171348207338317],[125,268,79,-0.1737928139609856],[125,269,64,-0.12374171615337431],[125,269,65,-0.1297543086409192],[125,269,66,-0.1347040172530406],[125,269,67,-0.13700370061457223],[125,269,68,-0.13841498928245877],[125,269,69,-0.13983663826493392],[125,269,70,-0.14130146488579254],[125,269,71,-0.180238264559337],[125,269,72,-0.18546393993356303],[125,269,73,-0.18611273219449603],[125,269,74,-0.20082527687270993],[125,269,75,-0.2010831313355452],[125,269,76,-0.19407774722881466],[125,269,77,-0.18657007069488424],[125,269,78,-0.18455421951150733],[125,269,79,-0.17677191584873225],[125,270,64,-0.12678078376124519],[125,270,65,-0.13227119996346423],[125,270,66,-0.13661770096472345],[125,270,67,-0.1380133742609886],[125,270,68,-0.13940064776306674],[125,270,69,-0.14504333183408705],[125,270,70,-0.14636767911544593],[125,270,71,-0.17996863719944645],[125,270,72,-0.1827325292157451],[125,270,73,-0.18734835225672902],[125,270,74,-0.19703579091367893],[125,270,75,-0.2029598032206504],[125,270,76,-0.19738971349741385],[125,270,77,-0.1906054576714098],[125,270,78,-0.18940842788080048],[125,270,79,-0.18258828810519226],[125,271,64,-0.12409142131635628],[125,271,65,-0.13098784530472707],[125,271,66,-0.13195879748802683],[125,271,67,-0.13336742101512164],[125,271,68,-0.13629720223793462],[125,271,69,-0.1435580117524906],[125,271,70,-0.1452903663337562],[125,271,71,-0.1797077474487296],[125,271,72,-0.18128427286340057],[125,271,73,-0.18499276109709653],[125,271,74,-0.196962282434594],[125,271,75,-0.20374833378266055],[125,271,76,-0.20019992569923628],[125,271,77,-0.19032679649364204],[125,271,78,-0.18812528372749224],[125,271,79,-0.18044943962940174],[125,272,64,-0.12175328969376842],[125,272,65,-0.12598614280161802],[125,272,66,-0.12639637584075172],[125,272,67,-0.13004044021253172],[125,272,68,-0.1349780467782404],[125,272,69,-0.1434323302182562],[125,272,70,-0.14574887328447145],[125,272,71,-0.18361444342556235],[125,272,72,-0.18360976485546004],[125,272,73,-0.18471892600276352],[125,272,74,-0.1987508356633827],[125,272,75,-0.20595556456839184],[125,272,76,-0.203826638896964],[125,272,77,-0.1955570543113323],[125,272,78,-0.19190349284523273],[125,272,79,-0.18154025319478814],[125,273,64,-0.1233058523020967],[125,273,65,-0.12109853016160516],[125,273,66,-0.11900539301294867],[125,273,67,-0.12162563551544987],[125,273,68,-0.1287314700226541],[125,273,69,-0.1350128073761871],[125,273,70,-0.13867534936702738],[125,273,71,-0.14452391943769008],[125,273,72,-0.14207729016739143],[125,273,73,-0.1374328478638319],[125,273,74,-0.13085822937070388],[125,273,75,-0.12754419345116488],[125,273,76,-0.12039207583186946],[125,273,77,-0.1128969089453506],[125,273,78,-0.10152094521336144],[125,273,79,-0.09518677661375055],[125,274,64,-0.12396039312124597],[125,274,65,-0.12240542763210543],[125,274,66,-0.12036229476286112],[125,274,67,-0.12314078817143789],[125,274,68,-0.13322678728274007],[125,274,69,-0.13873146981889994],[125,274,70,-0.14150650821230065],[125,274,71,-0.14359013677490196],[125,274,72,-0.14336521407682576],[125,274,73,-0.14076339760044806],[125,274,74,-0.1339101923232109],[125,274,75,-0.12995617166503046],[125,274,76,-0.12350279712625813],[125,274,77,-0.11258863166781308],[125,274,78,-0.10274553166874459],[125,274,79,-0.09542978490995346],[125,275,64,-0.12054449510445626],[125,275,65,-0.12143355507844097],[125,275,66,-0.11881767774294047],[125,275,67,-0.12445305720917647],[125,275,68,-0.13466643065555267],[125,275,69,-0.1402846354629971],[125,275,70,-0.14228319183397486],[125,275,71,-0.14352169218439403],[125,275,72,-0.14667640313921265],[125,275,73,-0.14455428546156865],[125,275,74,-0.13987472978533907],[125,275,75,-0.13311910924338952],[125,275,76,-0.12808325260990164],[125,275,77,-0.11656585030819591],[125,275,78,-0.10816015490905409],[125,275,79,-0.1015331956199397],[125,276,64,-0.11189951018375455],[125,276,65,-0.11723796276373127],[125,276,66,-0.11580013765596932],[125,276,67,-0.12503421431852038],[125,276,68,-0.13667771640476967],[125,276,69,-0.14316289396016416],[125,276,70,-0.1483532461771202],[125,276,71,-0.15175954119269527],[125,276,72,-0.1541101194859332],[125,276,73,-0.1510555449344289],[125,276,74,-0.1455215544124457],[125,276,75,-0.1395765406950445],[125,276,76,-0.13172884132157647],[125,276,77,-0.11656451951141361],[125,276,78,-0.10827164183920601],[125,276,79,-0.10246409790074631],[125,277,64,-0.10590478938263441],[125,277,65,-0.11413308225568673],[125,277,66,-0.11891557268279983],[125,277,67,-0.13121785538439956],[125,277,68,-0.1434455717867346],[125,277,69,-0.15291537096873337],[125,277,70,-0.15879552562811616],[125,277,71,-0.1646816004386168],[125,277,72,-0.16509472122765684],[125,277,73,-0.15975955262554464],[125,277,74,-0.15051099491356273],[125,277,75,-0.14385320448624583],[125,277,76,-0.13176067651273152],[125,277,77,-0.11617281715522992],[125,277,78,-0.10872979831140947],[125,277,79,-0.10145212935419884],[125,278,64,-0.11033179194230673],[125,278,65,-0.11672057649509249],[125,278,66,-0.12283703847068773],[125,278,67,-0.13386687658794846],[125,278,68,-0.14441730355974586],[125,278,69,-0.1539602263779264],[125,278,70,-0.15943314165522599],[125,278,71,-0.1658821029467903],[125,278,72,-0.16700645713305665],[125,278,73,-0.16287914749633176],[125,278,74,-0.15422199886328047],[125,278,75,-0.14669140580212742],[125,278,76,-0.13508028906993494],[125,278,77,-0.12142820975239435],[125,278,78,-0.11400432965786098],[125,278,79,-0.10539603993763491],[125,279,64,-0.1104746056392584],[125,279,65,-0.11296922624468433],[125,279,66,-0.1207524094044588],[125,279,67,-0.1322964257843537],[125,279,68,-0.14358878634339192],[125,279,69,-0.15151088736261403],[125,279,70,-0.15765089996563914],[125,279,71,-0.16493835571139315],[125,279,72,-0.16796961555363457],[125,279,73,-0.16149546828799288],[125,279,74,-0.1542206826046058],[125,279,75,-0.14702808177395293],[125,279,76,-0.1354775498373253],[125,279,77,-0.12463153182432735],[125,279,78,-0.1116427790169433],[125,279,79,-0.10366297963348425],[125,280,64,-0.10900494269919209],[125,280,65,-0.11067993724268123],[125,280,66,-0.11929257884016786],[125,280,67,-0.13016480002987196],[125,280,68,-0.140640147313597],[125,280,69,-0.14989401978220446],[125,280,70,-0.1563101504979763],[125,280,71,-0.16138744940448763],[125,280,72,-0.1654142659926032],[125,280,73,-0.16022121090679572],[125,280,74,-0.1534037314027073],[125,280,75,-0.14868059101730777],[125,280,76,-0.13696035816425853],[125,280,77,-0.12262702589603933],[125,280,78,-0.10941268640002055],[125,280,79,-0.10266245575878027],[125,281,64,-0.10651139223828628],[125,281,65,-0.11031539786207442],[125,281,66,-0.11732803645550718],[125,281,67,-0.1275065686150639],[125,281,68,-0.13801366464915685],[125,281,69,-0.1480825329646236],[125,281,70,-0.15271941150840607],[125,281,71,-0.15664732248580518],[125,281,72,-0.16623705209157746],[125,281,73,-0.1652860577542442],[125,281,74,-0.15842858958601677],[125,281,75,-0.15545052141841226],[125,281,76,-0.14488946695734628],[125,281,77,-0.13027991876399084],[125,281,78,-0.11659608668222993],[125,281,79,-0.10779703630099319],[125,282,64,-0.10899346079597293],[125,282,65,-0.11290127524771013],[125,282,66,-0.11812341391525454],[125,282,67,-0.12931533371067105],[125,282,68,-0.14061492707823905],[125,282,69,-0.14933278249706577],[125,282,70,-0.1517038269944943],[125,282,71,-0.15409590009472912],[125,282,72,-0.16004989148824333],[125,282,73,-0.1575196436796954],[125,282,74,-0.15013009622007317],[125,282,75,-0.14543196032595165],[125,282,76,-0.13497367873947094],[125,282,77,-0.11835318102125444],[125,282,78,-0.10730302337350528],[125,282,79,-0.09521609214721283],[125,283,64,-0.10886922224838264],[125,283,65,-0.11199075875628065],[125,283,66,-0.11594323717493318],[125,283,67,-0.12698418723927185],[125,283,68,-0.1384163425130415],[125,283,69,-0.1441870978891646],[125,283,70,-0.14927434777380735],[125,283,71,-0.1557782575149139],[125,283,72,-0.16056320957511314],[125,283,73,-0.1575514098989789],[125,283,74,-0.15362827852703465],[125,283,75,-0.14616960689257816],[125,283,76,-0.13778970384323],[125,283,77,-0.12212311528339986],[125,283,78,-0.11054088139512905],[125,283,79,-0.09904995443617559],[125,284,64,-0.12550728310958448],[125,284,65,-0.12614307900164423],[125,284,66,-0.12567727060756176],[125,284,67,-0.13199354013651912],[125,284,68,-0.1391666581403915],[125,284,69,-0.14417869212511303],[125,284,70,-0.14479335266354243],[125,284,71,-0.15688862950287844],[125,284,72,-0.16347086141589484],[125,284,73,-0.16036112833784738],[125,284,74,-0.1589519292497773],[125,284,75,-0.15344998844580565],[125,284,76,-0.14368773924114084],[125,284,77,-0.12872682080547593],[125,284,78,-0.11635496345334906],[125,284,79,-0.10718564822657925],[125,285,64,-0.11762055775294872],[125,285,65,-0.11514346158357783],[125,285,66,-0.11537592473343476],[125,285,67,-0.1202365567415364],[125,285,68,-0.1261725393566327],[125,285,69,-0.13342271084312313],[125,285,70,-0.1347968802410323],[125,285,71,-0.15415845567239558],[125,285,72,-0.16397085009081258],[125,285,73,-0.16124386912595468],[125,285,74,-0.16031065198191147],[125,285,75,-0.15210671495042097],[125,285,76,-0.14255008258205581],[125,285,77,-0.12733315164983044],[125,285,78,-0.11560928551026203],[125,285,79,-0.10607656675398164],[125,286,64,-0.11694605858694408],[125,286,65,-0.11596881275491588],[125,286,66,-0.1175017543024587],[125,286,67,-0.11842931457889878],[125,286,68,-0.12587526355093837],[125,286,69,-0.13389077432408025],[125,286,70,-0.13451079297602578],[125,286,71,-0.15390622854759972],[125,286,72,-0.16589972211698095],[125,286,73,-0.1636832855036785],[125,286,74,-0.1619488180706544],[125,286,75,-0.15165211827190195],[125,286,76,-0.14142589441754017],[125,286,77,-0.127303144476449],[125,286,78,-0.11656768029372694],[125,286,79,-0.10865174195270921],[125,287,64,-0.11439964495434998],[125,287,65,-0.11400155766445849],[125,287,66,-0.11461000257694938],[125,287,67,-0.11847719207108452],[125,287,68,-0.12436093408150842],[125,287,69,-0.13278196634184458],[125,287,70,-0.13326958452349358],[125,287,71,-0.15056180493039065],[125,287,72,-0.16438259422910184],[125,287,73,-0.16435660969630278],[125,287,74,-0.1595479453805047],[125,287,75,-0.1523716913225182],[125,287,76,-0.1378890446887088],[125,287,77,-0.12335466863717123],[125,287,78,-0.11516719931805997],[125,287,79,-0.10656322400927909],[125,288,64,-0.1140772384002172],[125,288,65,-0.11263521648209676],[125,288,66,-0.1119729324412414],[125,288,67,-0.11789044666497432],[125,288,68,-0.12190546880622043],[125,288,69,-0.1278391161500298],[125,288,70,-0.1313033847986074],[125,288,71,-0.14540950012204135],[125,288,72,-0.16570109372062425],[125,288,73,-0.16582050788213631],[125,288,74,-0.15827697481376574],[125,288,75,-0.1507450573277266],[125,288,76,-0.1365969230412063],[125,288,77,-0.12423597984679025],[125,288,78,-0.11611049492694595],[125,288,79,-0.10632724583199937],[125,289,64,-0.12251851040596659],[125,289,65,-0.12182242056555664],[125,289,66,-0.1212740009655303],[125,289,67,-0.1280811777950427],[125,289,68,-0.1314099453868394],[125,289,69,-0.13563408771869687],[125,289,70,-0.13780471315788645],[125,289,71,-0.13940541637717474],[125,289,72,-0.16527211380594592],[125,289,73,-0.17097759809302931],[125,289,74,-0.16495671919775945],[125,289,75,-0.1568302744756018],[125,289,76,-0.14401454714524498],[125,289,77,-0.13208522859469804],[125,289,78,-0.12303456645516109],[125,289,79,-0.11209659547995716],[125,290,64,-0.12879060605270445],[125,290,65,-0.1271884528870888],[125,290,66,-0.12592435894860957],[125,290,67,-0.13064631534725935],[125,290,68,-0.13351019505385733],[125,290,69,-0.13849747411012206],[125,290,70,-0.13851519205978874],[125,290,71,-0.13533456360978002],[125,290,72,-0.15173153887990734],[125,290,73,-0.16470793533075007],[125,290,74,-0.16808506296338194],[125,290,75,-0.16097894461224796],[125,290,76,-0.15017560937595814],[125,290,77,-0.13824345586734338],[125,290,78,-0.129858006664369],[125,290,79,-0.11668547191684987],[125,291,64,-0.13166829806015753],[125,291,65,-0.12967555039711592],[125,291,66,-0.12701636186945175],[125,291,67,-0.13057477464356437],[125,291,68,-0.13446153019925128],[125,291,69,-0.13816350736582111],[125,291,70,-0.13651681664417453],[125,291,71,-0.13182407248577052],[125,291,72,-0.14850091053122128],[125,291,73,-0.1677913881525959],[125,291,74,-0.16841226428728143],[125,291,75,-0.16435952644688434],[125,291,76,-0.15209550825652451],[125,291,77,-0.14004490297789793],[125,291,78,-0.12874604289017696],[125,291,79,-0.11593093309766865],[125,292,64,-0.09439519571259522],[125,292,65,-0.08904396045260707],[125,292,66,-0.08378471852333587],[125,292,67,-0.08366802448567286],[125,292,68,-0.08701059775407008],[125,292,69,-0.08813157736988447],[125,292,70,-0.0857935522507891],[125,292,71,-0.0803723313239094],[125,292,72,-0.1069564074664784],[125,292,73,-0.13710775607821118],[125,292,74,-0.14122907787680572],[125,292,75,-0.13925632571567576],[125,292,76,-0.12819444639205968],[125,292,77,-0.11683894503100228],[125,292,78,-0.09537832616540973],[125,292,79,-0.08126761995059466],[125,293,64,-0.09592680136596216],[125,293,65,-0.08996007335658972],[125,293,66,-0.08239951153127302],[125,293,67,-0.08216752116957537],[125,293,68,-0.08442559348210465],[125,293,69,-0.0860126905017131],[125,293,70,-0.08306426738729453],[125,293,71,-0.0792580151555804],[125,293,72,-0.10658599294740603],[125,293,73,-0.13322283053996054],[125,293,74,-0.1343434194792769],[125,293,75,-0.1318691974822795],[125,293,76,-0.12476426390984252],[125,293,77,-0.11227850642019302],[125,293,78,-0.09049219197833676],[125,293,79,-0.07342090832741292],[125,294,64,-0.09871931711185289],[125,294,65,-0.09076106040777324],[125,294,66,-0.08353913224259851],[125,294,67,-0.08169668598190014],[125,294,68,-0.08113744595647598],[125,294,69,-0.08087000521449332],[125,294,70,-0.07821286312698315],[125,294,71,-0.07472032745435622],[125,294,72,-0.10594728217781924],[125,294,73,-0.13209925368773384],[125,294,74,-0.1341499107852827],[125,294,75,-0.12472460268914026],[125,294,76,-0.1128889381489063],[125,294,77,-0.10115886406544611],[125,294,78,-0.0784478702418659],[125,294,79,-0.06262354840930873],[125,295,64,-0.09635319152331885],[125,295,65,-0.09100687734251107],[125,295,66,-0.08337072082588082],[125,295,67,-0.08147340148145582],[125,295,68,-0.07812248789629181],[125,295,69,-0.07779787516332902],[125,295,70,-0.07579627841723423],[125,295,71,-0.06969769455299007],[125,295,72,-0.09622019304627308],[125,295,73,-0.11623278266072237],[125,295,74,-0.12755053769683755],[125,295,75,-0.11811567929934516],[125,295,76,-0.10374291626439663],[125,295,77,-0.08611245881607808],[125,295,78,-0.06590434485168946],[125,295,79,-0.05616985920737977],[125,296,64,-0.09593060415269734],[125,296,65,-0.09230465334003357],[125,296,66,-0.08509384941815168],[125,296,67,-0.080613508332255],[125,296,68,-0.07752172888445441],[125,296,69,-0.07487378655952161],[125,296,70,-0.07169343096014069],[125,296,71,-0.06566273995539884],[125,296,72,-0.0946675747469174],[125,296,73,-0.11017023218227033],[125,296,74,-0.1219648547924844],[125,296,75,-0.11143029716208855],[125,296,76,-0.09794518367986416],[125,296,77,-0.08073321492699083],[125,296,78,-0.06041086114339994],[125,296,79,-0.05134632873696534],[125,297,64,-0.09739340790321913],[125,297,65,-0.09393349442258271],[125,297,66,-0.08345440688109987],[125,297,67,-0.07955720075369441],[125,297,68,-0.07309472524778196],[125,297,69,-0.07076501481585865],[125,297,70,-0.06758118287751214],[125,297,71,-0.06486282439531633],[125,297,72,-0.08576505513100481],[125,297,73,-0.10348930356142065],[125,297,74,-0.11970895292766674],[125,297,75,-0.11224173138506272],[125,297,76,-0.09894903364457643],[125,297,77,-0.0831981342370188],[125,297,78,-0.061882252238886507],[125,297,79,-0.054289992885327126],[125,298,64,-0.1042623115892615],[125,298,65,-0.09706187525130405],[125,298,66,-0.08728073538656667],[125,298,67,-0.08017135459930265],[125,298,68,-0.07490648805405928],[125,298,69,-0.07422356705872771],[125,298,70,-0.0682377089610363],[125,298,71,-0.06615873269361773],[125,298,72,-0.06926772927661337],[125,298,73,-0.08225815676205714],[125,298,74,-0.09696066064596681],[125,298,75,-0.09126688360942678],[125,298,76,-0.08111994313842177],[125,298,77,-0.0721052805412256],[125,298,78,-0.061034111029130575],[125,298,79,-0.052777275122035575],[125,299,64,-0.10428047023651531],[125,299,65,-0.09538552997069108],[125,299,66,-0.08649085939185923],[125,299,67,-0.07868677739023507],[125,299,68,-0.0733319661626044],[125,299,69,-0.07485755625236903],[125,299,70,-0.06852896101003206],[125,299,71,-0.06550643249004771],[125,299,72,-0.0646628819875931],[125,299,73,-0.07677127698703193],[125,299,74,-0.0925045692703815],[125,299,75,-0.08636282863150636],[125,299,76,-0.0787669224747572],[125,299,77,-0.0690810405445717],[125,299,78,-0.06252890820158571],[125,299,79,-0.05168773607756094],[125,300,64,-0.10535612935996211],[125,300,65,-0.09837354685334557],[125,300,66,-0.09154304594636452],[125,300,67,-0.08397714746366092],[125,300,68,-0.08004380524400176],[125,300,69,-0.07796109081741515],[125,300,70,-0.09777878233736716],[125,300,71,-0.10575852124976848],[125,300,72,-0.11704555998315477],[125,300,73,-0.11021842624909195],[125,300,74,-0.10788986475536723],[125,300,75,-0.09106580516003918],[125,300,76,-0.07855600526764571],[125,300,77,-0.06291208222196859],[125,300,78,-0.054829195512552394],[125,300,79,-0.04506349506855076],[125,301,64,-0.1015939432030673],[125,301,65,-0.09734210054810842],[125,301,66,-0.09184007582604584],[125,301,67,-0.08315857777216201],[125,301,68,-0.08093856665512524],[125,301,69,-0.07740068485169004],[125,301,70,-0.08955250569662127],[125,301,71,-0.10560641244408245],[125,301,72,-0.1109855059805238],[125,301,73,-0.10255844763643485],[125,301,74,-0.09634398097055352],[125,301,75,-0.08400537642384123],[125,301,76,-0.07257430779123739],[125,301,77,-0.05821207600949819],[125,301,78,-0.04867791644001939],[125,301,79,-0.040867801694534245],[125,302,64,-0.09591940581446878],[125,302,65,-0.09434423148193502],[125,302,66,-0.08955396399578064],[125,302,67,-0.07906912940149079],[125,302,68,-0.07942027653028014],[125,302,69,-0.07555416692941107],[125,302,70,-0.08403090967462461],[125,302,71,-0.096941498522258],[125,302,72,-0.1051098624618042],[125,302,73,-0.09659739984651028],[125,302,74,-0.09055023244607555],[125,302,75,-0.08491716347639525],[125,302,76,-0.07365527200372884],[125,302,77,-0.06204150408414414],[125,302,78,-0.05214285348165366],[125,302,79,-0.041719719639934455],[125,303,64,-0.09548197566913766],[125,303,65,-0.09138036937037061],[125,303,66,-0.08416447888226598],[125,303,67,-0.07754881782006123],[125,303,68,-0.08046911299419691],[125,303,69,-0.07513135510622714],[125,303,70,-0.08192886954278729],[125,303,71,-0.08754077894315938],[125,303,72,-0.09998644520971295],[125,303,73,-0.09420592225943178],[125,303,74,-0.08477683764636694],[125,303,75,-0.07918566851455176],[125,303,76,-0.06828165689819074],[125,303,77,-0.061087098175464496],[125,303,78,-0.04914384755595837],[125,303,79,-0.03310894834204853],[125,304,64,-0.09426240165085539],[125,304,65,-0.08981734956772458],[125,304,66,-0.08429667323717395],[125,304,67,-0.07714227732940265],[125,304,68,-0.07823002910671575],[125,304,69,-0.07607018707569957],[125,304,70,-0.077790448434853],[125,304,71,-0.07949648087760658],[125,304,72,-0.09240635125997212],[125,304,73,-0.09218663995019546],[125,304,74,-0.07742454790315648],[125,304,75,-0.07111412717026361],[125,304,76,-0.06577206816308168],[125,304,77,-0.05594459408058845],[125,304,78,-0.04537351530695334],[125,304,79,-0.029080888984925217],[125,305,64,-0.09298525672554867],[125,305,65,-0.08755624898725245],[125,305,66,-0.08418840437438593],[125,305,67,-0.07909707152691686],[125,305,68,-0.0701110873393602],[125,305,69,-0.07609747665730487],[125,305,70,-0.07552412656079932],[125,305,71,-0.07246656962011556],[125,305,72,-0.08982827445034147],[125,305,73,-0.08949437282390355],[125,305,74,-0.07363210760548997],[125,305,75,-0.07162597363191264],[125,305,76,-0.0668527879060944],[125,305,77,-0.05600655876520218],[125,305,78,-0.041987751793823504],[125,305,79,-0.02717645830833549],[125,306,64,-0.09502958146183994],[125,306,65,-0.08981440846999392],[125,306,66,-0.0871742779999875],[125,306,67,-0.0798807389574793],[125,306,68,-0.0723170170131098],[125,306,69,-0.0669587653448796],[125,306,70,-0.06991697035429234],[125,306,71,-0.06985446705189483],[125,306,72,-0.08460192182487293],[125,306,73,-0.08248768621291294],[125,306,74,-0.06627023622861845],[125,306,75,-0.06409329886450867],[125,306,76,-0.05757354932033652],[125,306,77,-0.04478530373528776],[125,306,78,-0.02936700816068183],[125,306,79,-0.014954553038760861],[125,307,64,-0.0926485528703953],[125,307,65,-0.09025403009631847],[125,307,66,-0.08633589373003264],[125,307,67,-0.07851287535295803],[125,307,68,-0.07095801585981425],[125,307,69,-0.06578667132660002],[125,307,70,-0.07255395953561314],[125,307,71,-0.07042118945335375],[125,307,72,-0.07674998595227678],[125,307,73,-0.07815443872236634],[125,307,74,-0.06104284332792121],[125,307,75,-0.06288293959942103],[125,307,76,-0.05483756317804388],[125,307,77,-0.045562363608599686],[125,307,78,-0.03046030700903382],[125,307,79,-0.014484228583070349],[125,308,64,-0.0781185619670227],[125,308,65,-0.07891974591983551],[125,308,66,-0.08095589257433311],[125,308,67,-0.07579222020573534],[125,308,68,-0.0700813442573047],[125,308,69,-0.06824428416480392],[125,308,70,-0.06566184917416927],[125,308,71,-0.06526306260864728],[125,308,72,-0.0695025790396636],[125,308,73,-0.07288236079075117],[125,308,74,-0.061425483185969895],[125,308,75,-0.06308871976437058],[125,308,76,-0.05404676869758036],[125,308,77,-0.04382410180339177],[125,308,78,-0.031318267705575546],[125,308,79,-0.01682011589362822],[125,309,64,-0.07426968738408668],[125,309,65,-0.07825280074281343],[125,309,66,-0.07943186196552704],[125,309,67,-0.07497060031656186],[125,309,68,-0.07022725414765243],[125,309,69,-0.06732805093522222],[125,309,70,-0.0649494028612787],[125,309,71,-0.06454195978049715],[125,309,72,-0.06152850212172514],[125,309,73,-0.057188965905251035],[125,309,74,-0.050487775658181015],[125,309,75,-0.03909620905508208],[125,309,76,-0.024330774282493552],[125,309,77,-0.0057122489985796665],[125,309,78,-0.0019348945152285052],[125,309,79,0.009368163114528254],[125,310,64,-0.0662562565381121],[125,310,65,-0.0694355158229855],[125,310,66,-0.07263128416768677],[125,310,67,-0.06828479597652651],[125,310,68,-0.06406419228407459],[125,310,69,-0.0614316404893529],[125,310,70,-0.06014446966835643],[125,310,71,-0.056052330062546105],[125,310,72,-0.052602223786692645],[125,310,73,-0.05187412573582712],[125,310,74,-0.043421375910745796],[125,310,75,-0.032728457279040626],[125,310,76,-0.014568361237682004],[125,310,77,-9.215289278530214E-4],[125,310,78,0.0032971350370773443],[125,310,79,0.018571422307672038],[125,311,64,-0.06268416873266715],[125,311,65,-0.06379349407159851],[125,311,66,-0.0657289167610293],[125,311,67,-0.06168194948806492],[125,311,68,-0.06061207884242341],[125,311,69,-0.06020373572703745],[125,311,70,-0.0589775959566423],[125,311,71,-0.054507046561366956],[125,311,72,-0.05236231513393763],[125,311,73,-0.04811179650004248],[125,311,74,-0.04008809035967686],[125,311,75,-0.0286614778465547],[125,311,76,-0.009712472982419566],[125,311,77,0.0019244523860300206],[125,311,78,0.003441218405302527],[125,311,79,0.017594052949247055],[125,312,64,-0.05263714487855976],[125,312,65,-0.04990726033458463],[125,312,66,-0.05128001195818818],[125,312,67,-0.04806143668362266],[125,312,68,-0.04649502045287941],[125,312,69,-0.0501208893087583],[125,312,70,-0.050791934460838184],[125,312,71,-0.043705593953506705],[125,312,72,-0.04129890588269443],[125,312,73,-0.0346057067854882],[125,312,74,-0.03016118183134659],[125,312,75,-0.022409568156434467],[125,312,76,-0.00621034587643465],[125,312,77,0.0014992299302677287],[125,312,78,0.0034900337196033457],[125,312,79,0.018783002576812625],[125,313,64,-0.049283959793147716],[125,313,65,-0.04727973486675936],[125,313,66,-0.047641285373420855],[125,313,67,-0.045477261923834375],[125,313,68,-0.04312147554505226],[125,313,69,-0.046277650115269256],[125,313,70,-0.04560516192715276],[125,313,71,-0.04070045773200165],[125,313,72,-0.036874852538267985],[125,313,73,-0.029531966120208017],[125,313,74,-0.027147442815965803],[125,313,75,-0.01948517584020433],[125,313,76,-0.006624764651699609],[125,313,77,0.003871564759058879],[125,313,78,0.013345556813558632],[125,313,79,0.03180267606093977],[125,314,64,-0.05164440304426153],[125,314,65,-0.04850928248878594],[125,314,66,-0.046412369085528565],[125,314,67,-0.04432648164659926],[125,314,68,-0.04111835986601635],[125,314,69,-0.04473830869855179],[125,314,70,-0.04295472225801421],[125,314,71,-0.0402139536092256],[125,314,72,-0.036137336037802295],[125,314,73,-0.028236724137174513],[125,314,74,-0.025381106919292976],[125,314,75,-0.02227426545698632],[125,314,76,-0.011929573623630629],[125,314,77,-0.0012385251003169569],[125,314,78,0.007495673178628051],[125,314,79,0.030053672405953892],[125,315,64,-0.05132373954299134],[125,315,65,-0.04886179550323472],[125,315,66,-0.042602000622384756],[125,315,67,-0.040858353694877336],[125,315,68,-0.03569775486258474],[125,315,69,-0.03847241885987057],[125,315,70,-0.03908698520493813],[125,315,71,-0.036286788021343594],[125,315,72,-0.03371153243433804],[125,315,73,-0.027659644520765025],[125,315,74,-0.026626976965505478],[125,315,75,-0.024369089389540695],[125,315,76,-0.012558180458855213],[125,315,77,0.0015629600627933074],[125,315,78,0.009406809235378469],[125,315,79,0.036652731362777635],[125,316,64,-0.05651413030836],[125,316,65,-0.05425774587642024],[125,316,66,-0.04566362994166931],[125,316,67,-0.0415013123877441],[125,316,68,-0.03391935242969327],[125,316,69,-0.03472904562175694],[125,316,70,-0.03329880087686668],[125,316,71,-0.03055430328460068],[125,316,72,-0.031254089765062776],[125,316,73,-0.028224561235295584],[125,316,74,-0.026955026125652107],[125,316,75,-0.024633072613246],[125,316,76,-0.015422612534569379],[125,316,77,-0.0012094097403656141],[125,316,78,0.00737405460373676],[125,316,79,0.03255321921813962],[125,317,64,-0.05617830513467134],[125,317,65,-0.052054446923239836],[125,317,66,-0.044313955535069685],[125,317,67,-0.03920057353196742],[125,317,68,-0.031790673779334824],[125,317,69,-0.030715085019386884],[125,317,70,-0.027916785612032216],[125,317,71,-0.025526625002721917],[125,317,72,-0.028188112599110013],[125,317,73,-0.027494520101889602],[125,317,74,-0.02719721696537966],[125,317,75,-0.026267037122330653],[125,317,76,-0.019261988900910503],[125,317,77,-0.005843103129513784],[125,317,78,0.007186729110625678],[125,317,79,0.027212919196942867],[125,318,64,-0.04929138514860809],[125,318,65,-0.04188087065472636],[125,318,66,-0.033708349579708086],[125,318,67,-0.02878477271846816],[125,318,68,-0.023986146775748438],[125,318,69,-0.018379096733119216],[125,318,70,-0.015316287993988695],[125,318,71,-0.014740955487321572],[125,318,72,-0.016386682071412098],[125,318,73,-0.01663995321166624],[125,318,74,-0.01798695873199249],[125,318,75,-0.019776312343662172],[125,318,76,-0.017352578001902187],[125,318,77,-0.005987051974454734],[125,318,78,0.00903504454233512],[125,318,79,0.030060950985550353],[125,319,64,-0.048278938727602916],[125,319,65,-0.0400213140154736],[125,319,66,-0.03243233792602182],[125,319,67,-0.0251506459417125],[125,319,68,-0.021844627220188206],[125,319,69,-0.014716505985230582],[125,319,70,-0.011401828877908346],[125,319,71,-0.014176770282003565],[125,319,72,-0.016592374229217083],[125,319,73,-0.015772573325000885],[125,319,74,-0.01758379364924323],[125,319,75,-0.018990959461500853],[125,319,76,-0.019182884004497885],[125,319,77,-0.007774776759049832],[125,319,78,0.00840815397533497],[125,319,79,0.03108569260285636],[126,-64,64,-0.09942215085900166],[126,-64,65,-0.18252191184985692],[126,-64,66,-0.30220223555200215],[126,-64,67,-0.40558867168437224],[126,-64,68,-0.39678584765723635],[126,-64,69,-0.38930070212205337],[126,-64,70,-0.3842502890167767],[126,-64,71,-0.37536898395050317],[126,-64,72,-0.3652637223743017],[126,-64,73,-0.3572279177797289],[126,-64,74,-0.3526203695852566],[126,-64,75,-0.3501291103673673],[126,-64,76,-0.34424406877674957],[126,-64,77,-0.33722561628292125],[126,-64,78,-0.30086207277587945],[126,-64,79,-0.264470904611262],[126,-63,64,-0.09836536148200303],[126,-63,65,-0.12422760751980472],[126,-63,66,-0.26230887495521427],[126,-63,67,-0.3926441117250324],[126,-63,68,-0.40270788615049385],[126,-63,69,-0.3960846504405803],[126,-63,70,-0.3871177279540344],[126,-63,71,-0.3788470180086999],[126,-63,72,-0.3698225150087294],[126,-63,73,-0.3603737341838489],[126,-63,74,-0.35707435466031895],[126,-63,75,-0.35289860557872016],[126,-63,76,-0.3459459557694529],[126,-63,77,-0.3219576637829618],[126,-63,78,-0.23527106387835367],[126,-63,79,-0.21971105099713267],[126,-62,64,-0.09721301984512098],[126,-62,65,-0.12601074276374552],[126,-62,66,-0.26405708139035466],[126,-62,67,-0.3871989600147838],[126,-62,68,-0.3979209763178175],[126,-62,69,-0.39265877388756143],[126,-62,70,-0.3850707887959174],[126,-62,71,-0.37790665497388576],[126,-62,72,-0.36712179598300615],[126,-62,73,-0.358307760553868],[126,-62,74,-0.3511840224618914],[126,-62,75,-0.3477674017458945],[126,-62,76,-0.3374895743509527],[126,-62,77,-0.31857957660641395],[126,-62,78,-0.2370988777681023],[126,-62,79,-0.22927512123819765],[126,-61,64,-0.1442116196422606],[126,-61,65,-0.21938839042614097],[126,-61,66,-0.2738598853125146],[126,-61,67,-0.3247531226376619],[126,-61,68,-0.34977212266036334],[126,-61,69,-0.39372681457653064],[126,-61,70,-0.3866410738512588],[126,-61,71,-0.3794061328183224],[126,-61,72,-0.3689097562654366],[126,-61,73,-0.36027825282913817],[126,-61,74,-0.3515199216968633],[126,-61,75,-0.34606852422302525],[126,-61,76,-0.3334382768048842],[126,-61,77,-0.3256598095571961],[126,-61,78,-0.3171952937574637],[126,-61,79,-0.3090985660124503],[126,-60,64,-0.1656091640525713],[126,-60,65,-0.2112580069530744],[126,-60,66,-0.2636851934210468],[126,-60,67,-0.2981582177961094],[126,-60,68,-0.348783492013125],[126,-60,69,-0.38746345200671684],[126,-60,70,-0.3776571540123608],[126,-60,71,-0.3709589932209232],[126,-60,72,-0.3609046966704708],[126,-60,73,-0.35303564551046757],[126,-60,74,-0.33966097132229955],[126,-60,75,-0.3330779417087914],[126,-60,76,-0.3213568200090723],[126,-60,77,-0.31461315272835255],[126,-60,78,-0.3109436343481069],[126,-60,79,-0.3074176168094676],[126,-59,64,-0.408479043100588],[126,-59,65,-0.4031417541547737],[126,-59,66,-0.39419608839949344],[126,-59,67,-0.39251558856016755],[126,-59,68,-0.3857396871239769],[126,-59,69,-0.37278754917817375],[126,-59,70,-0.3611243279229674],[126,-59,71,-0.3520435404683929],[126,-59,72,-0.34365476644822396],[126,-59,73,-0.3378022799290035],[126,-59,74,-0.32492218165743886],[126,-59,75,-0.31923118326116207],[126,-59,76,-0.30871534792981453],[126,-59,77,-0.3030789000781757],[126,-59,78,-0.29664770869478463],[126,-59,79,-0.2949962645922837],[126,-58,64,-0.4074301200678065],[126,-58,65,-0.4008567470526556],[126,-58,66,-0.3921625055542879],[126,-58,67,-0.3869934762381972],[126,-58,68,-0.37977401953584045],[126,-58,69,-0.3676051564386689],[126,-58,70,-0.3551749831286835],[126,-58,71,-0.34475708027503155],[126,-58,72,-0.337221700182286],[126,-58,73,-0.3301122797521734],[126,-58,74,-0.3217947098744454],[126,-58,75,-0.3129762527793092],[126,-58,76,-0.3034478559362994],[126,-58,77,-0.2961622953910221],[126,-58,78,-0.29034659885707315],[126,-58,79,-0.2868544531336584],[126,-57,64,-0.4107158528305932],[126,-57,65,-0.4020647819886284],[126,-57,66,-0.39080822244738883],[126,-57,67,-0.38646789373776963],[126,-57,68,-0.3757571952214781],[126,-57,69,-0.3640685109804501],[126,-57,70,-0.3521427555955206],[126,-57,71,-0.33961391068124935],[126,-57,72,-0.33204356029565985],[126,-57,73,-0.32468678251609867],[126,-57,74,-0.3161308441139269],[126,-57,75,-0.3070878214487004],[126,-57,76,-0.29661660484402014],[126,-57,77,-0.2894124208609294],[126,-57,78,-0.28141898988754016],[126,-57,79,-0.278184035925209],[126,-56,64,-0.41098390406144414],[126,-56,65,-0.3990523053700457],[126,-56,66,-0.3893589794103797],[126,-56,67,-0.38005883238382693],[126,-56,68,-0.37067227762063526],[126,-56,69,-0.36076277424217174],[126,-56,70,-0.34704715939337116],[126,-56,71,-0.3366195700728515],[126,-56,72,-0.3273317631899367],[126,-56,73,-0.32005305924491795],[126,-56,74,-0.3118369857127652],[126,-56,75,-0.30279839099983524],[126,-56,76,-0.291143421977742],[126,-56,77,-0.284726777172282],[126,-56,78,-0.2779420219776841],[126,-56,79,-0.27436365728647527],[126,-55,64,-0.4083871804873651],[126,-55,65,-0.39639519068907353],[126,-55,66,-0.38541047238811565],[126,-55,67,-0.37516081482138436],[126,-55,68,-0.3661627963726074],[126,-55,69,-0.3584091033981927],[126,-55,70,-0.34526904176517087],[126,-55,71,-0.3360271832222385],[126,-55,72,-0.32568979863688413],[126,-55,73,-0.3178253935043147],[126,-55,74,-0.30693306855639546],[126,-55,75,-0.30025193998798594],[126,-55,76,-0.2900543449729121],[126,-55,77,-0.28039217157635443],[126,-55,78,-0.27246205536591805],[126,-55,79,-0.2697360911229395],[126,-54,64,-0.40586009175113197],[126,-54,65,-0.3953676410541431],[126,-54,66,-0.3825064132436188],[126,-54,67,-0.37005364452453865],[126,-54,68,-0.36096439334787117],[126,-54,69,-0.3550250344515706],[126,-54,70,-0.34561381321837603],[126,-54,71,-0.33686016149125153],[126,-54,72,-0.32533860532543496],[126,-54,73,-0.314821630420173],[126,-54,74,-0.30257605424585976],[126,-54,75,-0.2968121623424677],[126,-54,76,-0.288842464456247],[126,-54,77,-0.27909664162112024],[126,-54,78,-0.27084485588234297],[126,-54,79,-0.26688042456726235],[126,-53,64,-0.37811309070832844],[126,-53,65,-0.39926636371405005],[126,-53,66,-0.3878024987831588],[126,-53,67,-0.3753051962154771],[126,-53,68,-0.36464520853033366],[126,-53,69,-0.3582092288581384],[126,-53,70,-0.3503660219923349],[126,-53,71,-0.3411607120385118],[126,-53,72,-0.3288184977567393],[126,-53,73,-0.3168998068952605],[126,-53,74,-0.303846385313831],[126,-53,75,-0.29869217744052046],[126,-53,76,-0.2884941134916439],[126,-53,77,-0.28255254560915827],[126,-53,78,-0.27499835608240536],[126,-53,79,-0.2701779561170653],[126,-52,64,-0.3626046419204885],[126,-52,65,-0.3982599528246002],[126,-52,66,-0.3843221502140141],[126,-52,67,-0.37056183418477323],[126,-52,68,-0.3590514902778198],[126,-52,69,-0.35055101019767315],[126,-52,70,-0.34222639897307827],[126,-52,71,-0.33261970780460187],[126,-52,72,-0.31820643606825155],[126,-52,73,-0.3051745978474376],[126,-52,74,-0.293901770026683],[126,-52,75,-0.28752131059986796],[126,-52,76,-0.2771314880679139],[126,-52,77,-0.2718389807641021],[126,-52,78,-0.2649741883175674],[126,-52,79,-0.2602718563134683],[126,-51,64,-0.31724202943926755],[126,-51,65,-0.34659379043502003],[126,-51,66,-0.4012079649520187],[126,-51,67,-0.37908158180989326],[126,-51,68,-0.3658059895994743],[126,-51,69,-0.35366130209594276],[126,-51,70,-0.34500131190065736],[126,-51,71,-0.3406143245399441],[126,-51,72,-0.3285878418862556],[126,-51,73,-0.320408618812104],[126,-51,74,-0.31135751055425864],[126,-51,75,-0.30097431580531686],[126,-51,76,-0.28711227956583263],[126,-51,77,-0.27682415829839846],[126,-51,78,-0.2650220873980057],[126,-51,79,-0.25445086045342225],[126,-50,64,-0.3043040646460383],[126,-50,65,-0.34099227454325165],[126,-50,66,-0.39805552605206257],[126,-50,67,-0.37681462127962617],[126,-50,68,-0.36403114679279214],[126,-50,69,-0.35205930166790317],[126,-50,70,-0.3414917534186565],[126,-50,71,-0.336859327313483],[126,-50,72,-0.3267662240329673],[126,-50,73,-0.3170995137979421],[126,-50,74,-0.30870331189662925],[126,-50,75,-0.29881247821781864],[126,-50,76,-0.2855969808264226],[126,-50,77,-0.2752940381189142],[126,-50,78,-0.26418769630134376],[126,-50,79,-0.250968239225827],[126,-49,64,-0.2680882290328644],[126,-49,65,-0.34772568305648355],[126,-49,66,-0.4017239490832084],[126,-49,67,-0.38013866055680984],[126,-49,68,-0.36494075837969947],[126,-49,69,-0.353297765332099],[126,-49,70,-0.3427656207998202],[126,-49,71,-0.3343974119821382],[126,-49,72,-0.32566186852231566],[126,-49,73,-0.31515108489065663],[126,-49,74,-0.30643429512234827],[126,-49,75,-0.297234400255835],[126,-49,76,-0.28418354945965457],[126,-49,77,-0.27012625053641565],[126,-49,78,-0.25996708390547185],[126,-49,79,-0.24687165480508771],[126,-48,64,-0.2246101585263743],[126,-48,65,-0.32350188477152797],[126,-48,66,-0.3941588524315206],[126,-48,67,-0.37997384011569985],[126,-48,68,-0.3660096615001202],[126,-48,69,-0.35387703010883403],[126,-48,70,-0.3417675335254755],[126,-48,71,-0.3300608535544678],[126,-48,72,-0.3212251405390281],[126,-48,73,-0.31294346413610663],[126,-48,74,-0.3040051974945097],[126,-48,75,-0.2935760805971307],[126,-48,76,-0.27981325182225236],[126,-48,77,-0.26492725703271885],[126,-48,78,-0.25462504254027585],[126,-48,79,-0.24366774554651405],[126,-47,64,-0.20516809180004492],[126,-47,65,-0.3128906190165911],[126,-47,66,-0.3906587476578356],[126,-47,67,-0.3866144026593514],[126,-47,68,-0.37317060491647835],[126,-47,69,-0.3612230678711716],[126,-47,70,-0.3478412700578616],[126,-47,71,-0.33152292288947105],[126,-47,72,-0.3172552236115461],[126,-47,73,-0.3026785222405113],[126,-47,74,-0.29072210505343493],[126,-47,75,-0.27848831569634624],[126,-47,76,-0.26658593672662706],[126,-47,77,-0.25986581963905253],[126,-47,78,-0.2565855795164718],[126,-47,79,-0.24961813949472436],[126,-46,64,-0.2666522634161308],[126,-46,65,-0.34526043228525116],[126,-46,66,-0.3673161054785806],[126,-46,67,-0.384973818472355],[126,-46,68,-0.37068803099198605],[126,-46,69,-0.3595326985592825],[126,-46,70,-0.3446145275069341],[126,-46,71,-0.3299318483050936],[126,-46,72,-0.31399981903593877],[126,-46,73,-0.2994815393849469],[126,-46,74,-0.28602310250346574],[126,-46,75,-0.2750919561345714],[126,-46,76,-0.26474295383571045],[126,-46,77,-0.2583931354731926],[126,-46,78,-0.2567866678652946],[126,-46,79,-0.24776548257486458],[126,-45,64,-0.24536971137588198],[126,-45,65,-0.30491796409571487],[126,-45,66,-0.3399332483538792],[126,-45,67,-0.3887146836937291],[126,-45,68,-0.3755260678450401],[126,-45,69,-0.36443664358724354],[126,-45,70,-0.3481214206926624],[126,-45,71,-0.33297451449200394],[126,-45,72,-0.3150084753095514],[126,-45,73,-0.299180404056437],[126,-45,74,-0.2865870004406197],[126,-45,75,-0.278651682534213],[126,-45,76,-0.27047185105579274],[126,-45,77,-0.26434850881579286],[126,-45,78,-0.2611642638088173],[126,-45,79,-0.25135541252911314],[126,-44,64,-0.10417866767587769],[126,-44,65,-0.20647559837884316],[126,-44,66,-0.2835001855997949],[126,-44,67,-0.4165064458755392],[126,-44,68,-0.4104687731851658],[126,-44,69,-0.4026840749606821],[126,-44,70,-0.39307384763284015],[126,-44,71,-0.38008729642127936],[126,-44,72,-0.3621682240487285],[126,-44,73,-0.34601747490229734],[126,-44,74,-0.3367250843738814],[126,-44,75,-0.32752300202149726],[126,-44,76,-0.31858964457420386],[126,-44,77,-0.31472221072626894],[126,-44,78,-0.31123042977009513],[126,-44,79,-0.30078595745667747],[126,-43,64,-0.0038755467454107406],[126,-43,65,-0.09721063290650361],[126,-43,66,-0.1484769298848702],[126,-43,67,-0.3290373667028714],[126,-43,68,-0.40696563811339115],[126,-43,69,-0.40139698115351535],[126,-43,70,-0.3904120368760201],[126,-43,71,-0.3798094999402817],[126,-43,72,-0.36345856926954756],[126,-43,73,-0.34582057801509075],[126,-43,74,-0.3352486180755852],[126,-43,75,-0.3275348428644909],[126,-43,76,-0.31918977873209214],[126,-43,77,-0.3160698036785398],[126,-43,78,-0.3119613207354861],[126,-43,79,-0.2996293083287664],[126,-42,64,0.005437493899575874],[126,-42,65,-0.06754442333661775],[126,-42,66,-0.14898455506547276],[126,-42,67,-0.3318511981047232],[126,-42,68,-0.40486995303941464],[126,-42,69,-0.398939285487927],[126,-42,70,-0.38868856738755886],[126,-42,71,-0.37907416808697736],[126,-42,72,-0.3642404264040001],[126,-42,73,-0.34850508302020694],[126,-42,74,-0.3371687175929175],[126,-42,75,-0.33009005797237834],[126,-42,76,-0.3225300152738314],[126,-42,77,-0.31583084574812237],[126,-42,78,-0.3093405624188501],[126,-42,79,-0.2986598789774046],[126,-41,64,0.012893278520612728],[126,-41,65,-0.05126180742025155],[126,-41,66,-0.17885067616782926],[126,-41,67,-0.3621646126012376],[126,-41,68,-0.40389996897634206],[126,-41,69,-0.39748556898942333],[126,-41,70,-0.38941856657748675],[126,-41,71,-0.3792931279287376],[126,-41,72,-0.36546786919315216],[126,-41,73,-0.3525051827898205],[126,-41,74,-0.33896738000408166],[126,-41,75,-0.3334640462998666],[126,-41,76,-0.3256330587768714],[126,-41,77,-0.3145668926907529],[126,-41,78,-0.30528158429732666],[126,-41,79,-0.2962591600068104],[126,-40,64,0.053105466980590765],[126,-40,65,0.015382117391484151],[126,-40,66,-0.15138769203083147],[126,-40,67,-0.3106355941120186],[126,-40,68,-0.4002447139803195],[126,-40,69,-0.39374606987747035],[126,-40,70,-0.38883698966459807],[126,-40,71,-0.3768567147222297],[126,-40,72,-0.36372070792684746],[126,-40,73,-0.3534026749414314],[126,-40,74,-0.3410378175084416],[126,-40,75,-0.3337416591227103],[126,-40,76,-0.32476120900640415],[126,-40,77,-0.3144171298056475],[126,-40,78,-0.30391928270115154],[126,-40,79,-0.2945708440341731],[126,-39,64,0.06886911896674797],[126,-39,65,0.042672684768361335],[126,-39,66,-0.15936821697806175],[126,-39,67,-0.279613733582904],[126,-39,68,-0.4026372779209544],[126,-39,69,-0.39794778970856326],[126,-39,70,-0.3918360660428378],[126,-39,71,-0.38298920442013507],[126,-39,72,-0.3725766684937865],[126,-39,73,-0.3629510010024155],[126,-39,74,-0.35451000826447276],[126,-39,75,-0.34724376742617935],[126,-39,76,-0.3339416635325473],[126,-39,77,-0.32116516367562276],[126,-39,78,-0.3088265943426357],[126,-39,79,-0.29853229216867067],[126,-38,64,0.0826204622762371],[126,-38,65,0.0160597139645674],[126,-38,66,-0.23104675498594773],[126,-38,67,-0.3543729940691076],[126,-38,68,-0.40132923848969937],[126,-38,69,-0.39449433716184656],[126,-38,70,-0.3885675239891062],[126,-38,71,-0.3804729104513524],[126,-38,72,-0.37069697257764955],[126,-38,73,-0.36281144417880296],[126,-38,74,-0.3540602447953032],[126,-38,75,-0.34701412422368755],[126,-38,76,-0.3317068922444989],[126,-38,77,-0.31838719102297847],[126,-38,78,-0.3059258007355967],[126,-38,79,-0.2964446971865434],[126,-37,64,0.1315942470254856],[126,-37,65,0.051561058036281526],[126,-37,66,-0.16809937031316283],[126,-37,67,-0.29854993237796],[126,-37,68,-0.402153957210284],[126,-37,69,-0.39800649481307093],[126,-37,70,-0.38982686328817395],[126,-37,71,-0.38232803001311416],[126,-37,72,-0.37401480066131104],[126,-37,73,-0.36833165522101885],[126,-37,74,-0.357989992555086],[126,-37,75,-0.35056907483390587],[126,-37,76,-0.33471918539143963],[126,-37,77,-0.31970937505521513],[126,-37,78,-0.3068200145864039],[126,-37,79,-0.2966190053891055],[126,-36,64,0.12070590036950196],[126,-36,65,0.03656779299280427],[126,-36,66,-0.13297688140659525],[126,-36,67,-0.2684904461671388],[126,-36,68,-0.38986330658371926],[126,-36,69,-0.3854426989655121],[126,-36,70,-0.3788502242574758],[126,-36,71,-0.36668837678057803],[126,-36,72,-0.36244699752351517],[126,-36,73,-0.3557670524456844],[126,-36,74,-0.3464643942764471],[126,-36,75,-0.3376464552425884],[126,-36,76,-0.3228061251560606],[126,-36,77,-0.3103167397799289],[126,-36,78,-0.2949852708600835],[126,-36,79,-0.2841699318389127],[126,-35,64,0.15177618578201596],[126,-35,65,0.15412905435033564],[126,-35,66,0.07971712495754602],[126,-35,67,-0.012324389147473247],[126,-35,68,-0.1756869959805133],[126,-35,69,-0.3728698726392835],[126,-35,70,-0.36463139678421536],[126,-35,71,-0.35667853504880065],[126,-35,72,-0.3515329294881607],[126,-35,73,-0.34562508195959885],[126,-35,74,-0.3368324261435166],[126,-35,75,-0.3249594140054122],[126,-35,76,-0.3133040456530538],[126,-35,77,-0.30008891992911435],[126,-35,78,-0.28233354519713394],[126,-35,79,-0.26820116496861857],[126,-34,64,0.14649833891666547],[126,-34,65,0.1504307887772789],[126,-34,66,0.11718892919034968],[126,-34,67,0.03230699498757866],[126,-34,68,-0.16259518225767877],[126,-34,69,-0.36577580504298124],[126,-34,70,-0.3593672327289348],[126,-34,71,-0.35249401154765764],[126,-34,72,-0.34797564051159774],[126,-34,73,-0.3419007412530576],[126,-34,74,-0.33406417062955024],[126,-34,75,-0.31991587788162845],[126,-34,76,-0.31051478915182856],[126,-34,77,-0.29752497815608003],[126,-34,78,-0.2794859695219347],[126,-34,79,-0.26582876557836943],[126,-33,64,0.13979566314877487],[126,-33,65,0.14409891713635076],[126,-33,66,0.14413628582887592],[126,-33,67,0.07279617554816548],[126,-33,68,-0.1400715835144805],[126,-33,69,-0.31988718858428355],[126,-33,70,-0.3265062721481811],[126,-33,71,-0.3247293035939921],[126,-33,72,-0.3245682707999962],[126,-33,73,-0.32400776095302897],[126,-33,74,-0.3187789724354514],[126,-33,75,-0.31067175993194573],[126,-33,76,-0.30813647170587155],[126,-33,77,-0.29986660367723883],[126,-33,78,-0.2870533661380621],[126,-33,79,-0.27478594622602126],[126,-32,64,0.14606151811103812],[126,-32,65,0.14936096816786737],[126,-32,66,0.14769061066092262],[126,-32,67,0.12745981879120855],[126,-32,68,-0.07852678370452396],[126,-32,69,-0.2459632622746139],[126,-32,70,-0.32196005632797964],[126,-32,71,-0.3206479259783916],[126,-32,72,-0.3192783685725915],[126,-32,73,-0.31730513351290046],[126,-32,74,-0.3141867878397191],[126,-32,75,-0.30693264904680323],[126,-32,76,-0.3063542421234191],[126,-32,77,-0.29817464252891773],[126,-32,78,-0.2833459551060858],[126,-32,79,-0.2712485945648747],[126,-31,64,0.14693260158942312],[126,-31,65,0.14947980059256571],[126,-31,66,0.14988570344356109],[126,-31,67,0.15432514587472168],[126,-31,68,0.0732477641903288],[126,-31,69,-0.08392338350310716],[126,-31,70,-0.23058562306243469],[126,-31,71,-0.2859542477288026],[126,-31,72,-0.31540961677148543],[126,-31,73,-0.3137191699578691],[126,-31,74,-0.3113881968406808],[126,-31,75,-0.3049613026588353],[126,-31,76,-0.3066221516769812],[126,-31,77,-0.2976835984248197],[126,-31,78,-0.28139140743655167],[126,-31,79,-0.266860590780874],[126,-30,64,0.153996931041366],[126,-30,65,0.15528252165619713],[126,-30,66,0.15848004615230377],[126,-30,67,0.16429962794177796],[126,-30,68,0.13199654293302765],[126,-30,69,-0.011037406828353968],[126,-30,70,-0.20733522795731713],[126,-30,71,-0.2726594279696853],[126,-30,72,-0.2873706219366484],[126,-30,73,-0.309587625988161],[126,-30,74,-0.30822748444808634],[126,-30,75,-0.305157565030189],[126,-30,76,-0.3044342621745372],[126,-30,77,-0.29625504490033006],[126,-30,78,-0.2805935270672134],[126,-30,79,-0.26427404266604604],[126,-29,64,0.16415981544258654],[126,-29,65,0.16652446310281746],[126,-29,66,0.1682857080676811],[126,-29,67,0.17262171098218262],[126,-29,68,0.17062256366279455],[126,-29,69,0.10861944841816601],[126,-29,70,-0.14154656752239209],[126,-29,71,-0.20223132715525405],[126,-29,72,-0.21028056787956467],[126,-29,73,-0.2880963910153817],[126,-29,74,-0.31126204781663613],[126,-29,75,-0.3090612381164971],[126,-29,76,-0.3060032533339356],[126,-29,77,-0.29834616070878756],[126,-29,78,-0.28415397775797346],[126,-29,79,-0.26878102662425746],[126,-28,64,0.15739519033202076],[126,-28,65,0.15967737940874793],[126,-28,66,0.16095579640411795],[126,-28,67,0.16225352946232413],[126,-28,68,0.16095631930424267],[126,-28,69,0.1369324329450779],[126,-28,70,-0.08935853179567621],[126,-28,71,-0.1694825424662694],[126,-28,72,-0.1886525558574257],[126,-28,73,-0.2844008878272441],[126,-28,74,-0.2935791338724139],[126,-28,75,-0.29906780516799736],[126,-28,76,-0.2949584233517751],[126,-28,77,-0.28842313672402],[126,-28,78,-0.27845788289388795],[126,-28,79,-0.2638379990069557],[126,-27,64,0.16202184792355206],[126,-27,65,0.16234196453788033],[126,-27,66,0.16272129803197544],[126,-27,67,0.16186591443232132],[126,-27,68,0.16011396244847248],[126,-27,69,0.15926533116800506],[126,-27,70,0.033769764652691325],[126,-27,71,-0.057489984546232],[126,-27,72,-0.10039136421912678],[126,-27,73,-0.1840097086655041],[126,-27,74,-0.19657688163202247],[126,-27,75,-0.29113500845108725],[126,-27,76,-0.28763535518224004],[126,-27,77,-0.28219738250449006],[126,-27,78,-0.2752022088977403],[126,-27,79,-0.26227999625152315],[126,-26,64,0.21563746222486876],[126,-26,65,0.2154383189642667],[126,-26,66,0.2144633778198973],[126,-26,67,0.21533846452976962],[126,-26,68,0.21356685737128633],[126,-26,69,0.21107100475479462],[126,-26,70,0.12213957102262712],[126,-26,71,-0.004832038718321774],[126,-26,72,-0.07580881599742231],[126,-26,73,-0.14830866507498372],[126,-26,74,-0.19825067735786722],[126,-26,75,-0.28706915830202967],[126,-26,76,-0.2857701272142953],[126,-26,77,-0.28190254385246694],[126,-26,78,-0.27040345163778456],[126,-26,79,-0.26108099654143524],[126,-25,64,0.2205012556781793],[126,-25,65,0.21746598963455613],[126,-25,66,0.21682720339065015],[126,-25,67,0.21711958867873044],[126,-25,68,0.2134803374348522],[126,-25,69,0.20808001745566923],[126,-25,70,0.1819695452323135],[126,-25,71,0.03734023287562521],[126,-25,72,-0.0509095425473903],[126,-25,73,-0.12781806989573308],[126,-25,74,-0.19390924946386767],[126,-25,75,-0.28397515825872954],[126,-25,76,-0.2848471572766383],[126,-25,77,-0.2800147868762132],[126,-25,78,-0.2686206197397249],[126,-25,79,-0.25939604353657475],[126,-24,64,0.22579588075335907],[126,-24,65,0.22229344126930523],[126,-24,66,0.22158503315627787],[126,-24,67,0.22119841944003704],[126,-24,68,0.21633828195723043],[126,-24,69,0.21086930211035979],[126,-24,70,0.21051154079002954],[126,-24,71,0.0827337674290537],[126,-24,72,-0.00419534011868139],[126,-24,73,-0.07861685450205674],[126,-24,74,-0.19361815198158844],[126,-24,75,-0.2801553891278843],[126,-24,76,-0.2806452673265254],[126,-24,77,-0.27485016141926666],[126,-24,78,-0.2672637453563588],[126,-24,79,-0.25902203189643447],[126,-23,64,0.2245158631181556],[126,-23,65,0.22182811096423827],[126,-23,66,0.2216035949484164],[126,-23,67,0.2206400653099854],[126,-23,68,0.2148377681219218],[126,-23,69,0.20988812539997348],[126,-23,70,0.209262400912137],[126,-23,71,0.08621141625641826],[126,-23,72,-0.03340234209264603],[126,-23,73,-0.13278815206107847],[126,-23,74,-0.2645940340562982],[126,-23,75,-0.2666629629501874],[126,-23,76,-0.2685051944316837],[126,-23,77,-0.2705621326120374],[126,-23,78,-0.2691212460970433],[126,-23,79,-0.2639266345889275],[126,-22,64,0.23181071254018365],[126,-22,65,0.2322368757080712],[126,-22,66,0.23175749842562055],[126,-22,67,0.22776211649134506],[126,-22,68,0.22273753522449966],[126,-22,69,0.2197398611129326],[126,-22,70,0.2191776457338139],[126,-22,71,0.13561344396596758],[126,-22,72,-0.0253526497157171],[126,-22,73,-0.1342200732473123],[126,-22,74,-0.26188328525552784],[126,-22,75,-0.2622149256160682],[126,-22,76,-0.26271870603497777],[126,-22,77,-0.2674244731437451],[126,-22,78,-0.26789926048688595],[126,-22,79,-0.26391974045155725],[126,-21,64,0.22920862307854142],[126,-21,65,0.23018874072002155],[126,-21,66,0.23191846876678673],[126,-21,67,0.227128866426431],[126,-21,68,0.22070635493319626],[126,-21,69,0.2156506405223639],[126,-21,70,0.21565803796524438],[126,-21,71,0.22133667533912693],[126,-21,72,0.027360609375645273],[126,-21,73,-0.07288331991337141],[126,-21,74,-0.2617359957777642],[126,-21,75,-0.26480956215236284],[126,-21,76,-0.2654973819989843],[126,-21,77,-0.27081328688471035],[126,-21,78,-0.2707663331012612],[126,-21,79,-0.269099404869786],[126,-20,64,0.2178001960846546],[126,-20,65,0.2200719098900219],[126,-20,66,0.21936624885042644],[126,-20,67,0.21512177051461706],[126,-20,68,0.2084223589871864],[126,-20,69,0.2054888294341611],[126,-20,70,0.208862250467742],[126,-20,71,0.21317625533407977],[126,-20,72,0.028975576141147513],[126,-20,73,-0.0856688725740112],[126,-20,74,-0.25181134306048014],[126,-20,75,-0.2526360727936027],[126,-20,76,-0.25623334073754556],[126,-20,77,-0.262805957768939],[126,-20,78,-0.2645854186861391],[126,-20,79,-0.2622780672461724],[126,-19,64,0.2184378323372039],[126,-19,65,0.22013233081455125],[126,-19,66,0.21877863095124592],[126,-19,67,0.21546802698173206],[126,-19,68,0.20987514638149307],[126,-19,69,0.20853519718626976],[126,-19,70,0.21052293782798495],[126,-19,71,0.2139337288198986],[126,-19,72,0.09667999669873997],[126,-19,73,-0.08767461494709022],[126,-19,74,-0.2487751389074322],[126,-19,75,-0.24789302158327858],[126,-19,76,-0.2519428614805689],[126,-19,77,-0.25590562642653336],[126,-19,78,-0.2570554182881504],[126,-19,79,-0.2550915415528684],[126,-18,64,0.2114741157931545],[126,-18,65,0.2105683233113144],[126,-18,66,0.2089113162925615],[126,-18,67,0.20706200273578804],[126,-18,68,0.2005302000162613],[126,-18,69,0.19928349404392492],[126,-18,70,0.20327905398810084],[126,-18,71,0.20510239799489577],[126,-18,72,0.09313382901123365],[126,-18,73,-0.1325661320273167],[126,-18,74,-0.2421576112812802],[126,-18,75,-0.24358205037286668],[126,-18,76,-0.24529595102072585],[126,-18,77,-0.24982331742539904],[126,-18,78,-0.2537919288074568],[126,-18,79,-0.2537404980842183],[126,-17,64,0.2111731574034572],[126,-17,65,0.20873729129510749],[126,-17,66,0.2094176407027479],[126,-17,67,0.20784199937347372],[126,-17,68,0.20447485029241064],[126,-17,69,0.2058838744050517],[126,-17,70,0.21100429633707107],[126,-17,71,0.2138067731265228],[126,-17,72,0.10384549128287665],[126,-17,73,-0.14399185088546146],[126,-17,74,-0.24015795692213904],[126,-17,75,-0.23945641462285372],[126,-17,76,-0.2405827566846551],[126,-17,77,-0.24437497463098196],[126,-17,78,-0.2507220125680485],[126,-17,79,-0.24811764878673243],[126,-16,64,0.215397699114502],[126,-16,65,0.21249168319585504],[126,-16,66,0.21204238359662916],[126,-16,67,0.21350614810793964],[126,-16,68,0.21033435958734834],[126,-16,69,0.21123070190908536],[126,-16,70,0.21686299233679907],[126,-16,71,0.217832973752048],[126,-16,72,0.15767292417202464],[126,-16,73,-0.09661168347190402],[126,-16,74,-0.2376933469511547],[126,-16,75,-0.23807161635057583],[126,-16,76,-0.23840134757499157],[126,-16,77,-0.24257776134542836],[126,-16,78,-0.24546281606152542],[126,-16,79,-0.24206781644226216],[126,-15,64,0.21494269084700843],[126,-15,65,0.21260758265549756],[126,-15,66,0.21079006576558984],[126,-15,67,0.21428035961064798],[126,-15,68,0.2115146455127764],[126,-15,69,0.21309058489113472],[126,-15,70,0.21822658492514507],[126,-15,71,0.21910662080675403],[126,-15,72,0.19480512269107514],[126,-15,73,-0.07406329177748211],[126,-15,74,-0.2281110024612594],[126,-15,75,-0.229671355487231],[126,-15,76,-0.2282599099739285],[126,-15,77,-0.23428974269355737],[126,-15,78,-0.23339907418853365],[126,-15,79,-0.22748983527106645],[126,-14,64,0.11769579972744099],[126,-14,65,0.11711340693720607],[126,-14,66,0.11634876941127802],[126,-14,67,0.1194295846352729],[126,-14,68,0.11578619121167127],[126,-14,69,0.11942377235691906],[126,-14,70,0.12362585868991896],[126,-14,71,0.12352220373903253],[126,-14,72,0.13319736958486394],[126,-14,73,-0.0681130274828039],[126,-14,74,-0.20579081132015603],[126,-14,75,-0.2257834833469741],[126,-14,76,-0.2263900263116479],[126,-14,77,-0.23069002509399889],[126,-14,78,-0.23096754784807874],[126,-14,79,-0.22448958192503238],[126,-13,64,0.11612262612328826],[126,-13,65,0.11468035536428067],[126,-13,66,0.11647610416066866],[126,-13,67,0.11781462781308985],[126,-13,68,0.11843567031348312],[126,-13,69,0.12131186809801933],[126,-13,70,0.12457371052265036],[126,-13,71,0.12486699759863298],[126,-13,72,0.1329225541027889],[126,-13,73,0.0031265972513936646],[126,-13,74,-0.13034934534829928],[126,-13,75,-0.2306805036542499],[126,-13,76,-0.22899442970992814],[126,-13,77,-0.23318908444871006],[126,-13,78,-0.23556855014122424],[126,-13,79,-0.2305594244822301],[126,-12,64,0.1062545757567532],[126,-12,65,0.10213600446532481],[126,-12,66,0.10339531480399221],[126,-12,67,0.10508139471752934],[126,-12,68,0.10883473913091682],[126,-12,69,0.11208089383847708],[126,-12,70,0.1146984370906291],[126,-12,71,0.11423981367424571],[126,-12,72,0.1251695877009879],[126,-12,73,0.010671876104788647],[126,-12,74,-0.11819505167702629],[126,-12,75,-0.2262449982676791],[126,-12,76,-0.22730042088196772],[126,-12,77,-0.22750662049210185],[126,-12,78,-0.23065748337822656],[126,-12,79,-0.22675579359313894],[126,-11,64,0.1028613519314299],[126,-11,65,0.09995614903315835],[126,-11,66,0.09705929112956611],[126,-11,67,0.1004426721199092],[126,-11,68,0.10487808171261905],[126,-11,69,0.11033700581361086],[126,-11,70,0.11300028167984905],[126,-11,71,0.11556236120550288],[126,-11,72,0.12507003089233928],[126,-11,73,0.021766373737529682],[126,-11,74,-0.13704484154928726],[126,-11,75,-0.23004180466705618],[126,-11,76,-0.2317431165271109],[126,-11,77,-0.23017042058471968],[126,-11,78,-0.23180935454409607],[126,-11,79,-0.22730855100731914],[126,-10,64,0.09414204797401496],[126,-10,65,0.08978725330239354],[126,-10,66,0.0868498225598141],[126,-10,67,0.09103112785147296],[126,-10,68,0.09553833029999415],[126,-10,69,0.10005046586625924],[126,-10,70,0.1037052232770751],[126,-10,71,0.10881404333739769],[126,-10,72,0.11864383648302966],[126,-10,73,0.030435613048422155],[126,-10,74,-0.12441712744739224],[126,-10,75,-0.2283988422173003],[126,-10,76,-0.2301248675811683],[126,-10,77,-0.22855145549863695],[126,-10,78,-0.2287590735533936],[126,-10,79,-0.22514766316930115],[126,-9,64,0.09847698257539193],[126,-9,65,0.09564504480585106],[126,-9,66,0.09274554494756138],[126,-9,67,0.09531627244435659],[126,-9,68,0.09949706683228124],[126,-9,69,0.10548394546749729],[126,-9,70,0.10970581464986053],[126,-9,71,0.11602526135261661],[126,-9,72,0.12398799678975556],[126,-9,73,0.056488125877093176],[126,-9,74,-0.11106989712741687],[126,-9,75,-0.22674698715760283],[126,-9,76,-0.2284806342624968],[126,-9,77,-0.22413989598915046],[126,-9,78,-0.2224794174715914],[126,-9,79,-0.2203188123277762],[126,-8,64,0.09873061780650516],[126,-8,65,0.09848650327396269],[126,-8,66,0.093656013162885],[126,-8,67,0.09597525090904727],[126,-8,68,0.10115154522435202],[126,-8,69,0.10659576051284976],[126,-8,70,0.11187355032457814],[126,-8,71,0.11941258948394046],[126,-8,72,0.12875921827422812],[126,-8,73,0.10734133588123362],[126,-8,74,-0.07018867208389129],[126,-8,75,-0.22435896702478625],[126,-8,76,-0.223220708284775],[126,-8,77,-0.2210191641447443],[126,-8,78,-0.21883928341067793],[126,-8,79,-0.2167508620056456],[126,-7,64,0.09590913489409225],[126,-7,65,0.09475456944376882],[126,-7,66,0.0938490147350766],[126,-7,67,0.09537454749065266],[126,-7,68,0.10094998991192133],[126,-7,69,0.10710949196994643],[126,-7,70,0.11254647520578735],[126,-7,71,0.11952998389201991],[126,-7,72,0.12923787794273078],[126,-7,73,0.11026066273531507],[126,-7,74,-0.06653306415564217],[126,-7,75,-0.21910696384081316],[126,-7,76,-0.22062733189576528],[126,-7,77,-0.21784075159780694],[126,-7,78,-0.2140183736258598],[126,-7,79,-0.21214426425176452],[126,-6,64,0.09530545180991454],[126,-6,65,0.0926711447974552],[126,-6,66,0.09361774120715165],[126,-6,67,0.09505178115464491],[126,-6,68,0.09986100326566738],[126,-6,69,0.10383905446492883],[126,-6,70,0.1108129364834744],[126,-6,71,0.11832371550183766],[126,-6,72,0.1286754000452568],[126,-6,73,0.11832227734455739],[126,-6,74,-0.06566560047887204],[126,-6,75,-0.215491531923116],[126,-6,76,-0.21622572031693976],[126,-6,77,-0.21464914652461795],[126,-6,78,-0.20980379840919694],[126,-6,79,-0.2055280358403427],[126,-5,64,0.09043531466711938],[126,-5,65,0.08943353293752955],[126,-5,66,0.09150309965137957],[126,-5,67,0.09386607811660103],[126,-5,68,0.09893541823568736],[126,-5,69,0.10288397825271668],[126,-5,70,0.10968875193396577],[126,-5,71,0.11720129205900355],[126,-5,72,0.12711408743840008],[126,-5,73,0.13602092820893058],[126,-5,74,0.1461948714454258],[126,-5,75,0.04619854217255415],[126,-5,76,-0.11348728079000053],[126,-5,77,-0.2147661825886203],[126,-5,78,-0.21061308408298418],[126,-5,79,-0.20418881806469694],[126,-4,64,0.07713103636076982],[126,-4,65,0.07490497648544836],[126,-4,66,0.07920066872775758],[126,-4,67,0.0842774727551221],[126,-4,68,0.08835829529641198],[126,-4,69,0.09188029743393775],[126,-4,70,0.09633413121841806],[126,-4,71,0.1059689729560504],[126,-4,72,0.11625810704969625],[126,-4,73,0.12501268280335898],[126,-4,74,0.1356208777984711],[126,-4,75,0.04281162106030312],[126,-4,76,-0.12241697763865311],[126,-4,77,-0.20974255670153605],[126,-4,78,-0.20446344124942123],[126,-4,79,-0.19817214232258157],[126,-3,64,0.06792839966303277],[126,-3,65,0.06714227766644368],[126,-3,66,0.07041371221320203],[126,-3,67,0.07598344649822594],[126,-3,68,0.08199021548720731],[126,-3,69,0.08578577315005745],[126,-3,70,0.0927118502701286],[126,-3,71,0.10594078578337925],[126,-3,72,0.11742518999145587],[126,-3,73,0.12876341817768844],[126,-3,74,0.14106375779205613],[126,-3,75,0.05468589738352181],[126,-3,76,-0.11775181542133294],[126,-3,77,-0.1918102407620599],[126,-3,78,-0.18683509063603204],[126,-3,79,-0.18159547110207916],[126,-2,64,0.0636277081918895],[126,-2,65,0.062011004862551455],[126,-2,66,0.06731093447824363],[126,-2,67,0.07305276125291109],[126,-2,68,0.07698292252290626],[126,-2,69,0.0809887314311554],[126,-2,70,0.08770749139035912],[126,-2,71,0.10187909140477869],[126,-2,72,0.11357056273957239],[126,-2,73,0.1264319692387529],[126,-2,74,0.13830360368380076],[126,-2,75,0.04680396467570963],[126,-2,76,-0.13279968086233218],[126,-2,77,-0.18813667695354694],[126,-2,78,-0.18509886120231747],[126,-2,79,-0.1805543686971178],[126,-1,64,0.06204079685665903],[126,-1,65,0.06356287958849777],[126,-1,66,0.06766956777807945],[126,-1,67,0.0730212345838091],[126,-1,68,0.07787307069850033],[126,-1,69,0.08168467664557044],[126,-1,70,0.08841020144905842],[126,-1,71,0.09978519512760047],[126,-1,72,0.11434748602771888],[126,-1,73,0.12797328390733637],[126,-1,74,0.10343888106957944],[126,-1,75,-0.018368343733847686],[126,-1,76,-0.18641653478645503],[126,-1,77,-0.1848944075787035],[126,-1,78,-0.17924043668772677],[126,-1,79,-0.17443552264358334],[126,0,64,-0.03187548029826959],[126,0,65,-0.03190258205809457],[126,0,66,-0.028803543549245164],[126,0,67,-0.028574996834041855],[126,0,68,-0.030401126456638145],[126,0,69,-0.03382814221236677],[126,0,70,-0.03684155016923879],[126,0,71,-0.038251665017906084],[126,0,72,-0.04512689841197892],[126,0,73,-0.05897129550742018],[126,0,74,-0.06780622863721858],[126,0,75,-0.07800448831035281],[126,0,76,-0.0832197484589356],[126,0,77,-0.08175234586518243],[126,0,78,-0.08080024702013001],[126,0,79,-0.08311567162029289],[126,1,64,-0.026177069905320927],[126,1,65,-0.02682549981747967],[126,1,66,-0.02586616068474451],[126,1,67,-0.025545412779667626],[126,1,68,-0.026510137576869375],[126,1,69,-0.029672941326664454],[126,1,70,-0.034979971501658325],[126,1,71,-0.03668021038007954],[126,1,72,-0.044553298310426676],[126,1,73,-0.05961430178453421],[126,1,74,-0.0686428597456544],[126,1,75,-0.07758540020744494],[126,1,76,-0.08170743381901104],[126,1,77,-0.08063678482517468],[126,1,78,-0.07891207312437105],[126,1,79,-0.08260150877238717],[126,2,64,-0.022548443603140844],[126,2,65,-0.022878814639531675],[126,2,66,-0.021846726313304476],[126,2,67,-0.019916281872048913],[126,2,68,-0.020894696035517385],[126,2,69,-0.027038128387238514],[126,2,70,-0.03496705508357484],[126,2,71,-0.03740681422924183],[126,2,72,-0.045179125840491496],[126,2,73,-0.05876395891882849],[126,2,74,-0.06685987888238946],[126,2,75,-0.07609456108343815],[126,2,76,-0.08010579409932647],[126,2,77,-0.08278484500382352],[126,2,78,-0.08055628024242689],[126,2,79,-0.08325254444182811],[126,3,64,-0.019505846099044627],[126,3,65,-0.02139418219853531],[126,3,66,-0.01876611276243234],[126,3,67,-0.0156679033250606],[126,3,68,-0.018690896623442088],[126,3,69,-0.023235556511033012],[126,3,70,-0.03321310730458177],[126,3,71,-0.03989332862904357],[126,3,72,-0.04556745009450805],[126,3,73,-0.05765493083504593],[126,3,74,-0.06807576285711077],[126,3,75,-0.07330640133053087],[126,3,76,-0.07996036384577923],[126,3,77,-0.08161903650008889],[126,3,78,-0.08240570684731333],[126,3,79,-0.08348234396526719],[126,4,64,-0.01779776752236631],[126,4,65,-0.020035674600969916],[126,4,66,-0.01861774956695103],[126,4,67,-0.015398622451264637],[126,4,68,-0.018273833014311847],[126,4,69,-0.02504115588919556],[126,4,70,-0.034424730724710056],[126,4,71,-0.04023427887204206],[126,4,72,-0.046185847667213134],[126,4,73,-0.058302634555752686],[126,4,74,-0.06746699665007394],[126,4,75,-0.07375914915703205],[126,4,76,-0.07837196167577827],[126,4,77,-0.08029463608478171],[126,4,78,-0.08124098659249246],[126,4,79,-0.07838987683978046],[126,5,64,-0.0138778374774369],[126,5,65,-0.016169982393018256],[126,5,66,-0.019517481278660098],[126,5,67,-0.018101994221967038],[126,5,68,-0.021348037634473488],[126,5,69,-0.027358051216243018],[126,5,70,-0.03498627778219468],[126,5,71,-0.03974278557981914],[126,5,72,-0.04486741277106443],[126,5,73,-0.05697801714664398],[126,5,74,-0.06689421463783299],[126,5,75,-0.07433166642402673],[126,5,76,-0.07855894508169287],[126,5,77,-0.0817748735646576],[126,5,78,-0.08110850336219984],[126,5,79,-0.0768696636979361],[126,6,64,-0.012353937472542431],[126,6,65,-0.015487084721881955],[126,6,66,-0.020572285445901783],[126,6,67,-0.020442165035790022],[126,6,68,-0.02512868236916757],[126,6,69,-0.03042878021990708],[126,6,70,-0.037846810159836125],[126,6,71,-0.04173185521663994],[126,6,72,-0.04618666368474397],[126,6,73,-0.05613220341515582],[126,6,74,-0.06437771930404435],[126,6,75,-0.07340637996510074],[126,6,76,-0.07801765981647335],[126,6,77,-0.08179935164633724],[126,6,78,-0.0816169059621438],[126,6,79,-0.07400144132752776],[126,7,64,-0.012242084776301843],[126,7,65,-0.01676611733022562],[126,7,66,-0.020577185781955165],[126,7,67,-0.023484751534454423],[126,7,68,-0.02760289357079182],[126,7,69,-0.031167499182305908],[126,7,70,-0.03755531350678623],[126,7,71,-0.04377118035969062],[126,7,72,-0.04823226670648406],[126,7,73,-0.0580313445893724],[126,7,74,-0.06293834471473507],[126,7,75,-0.0687662358674506],[126,7,76,-0.07527500134574727],[126,7,77,-0.08054347750025098],[126,7,78,-0.0785880450981056],[126,7,79,-0.0739646965373877],[126,8,64,-0.011613041797144119],[126,8,65,-0.015939397015824086],[126,8,66,-0.020108509632047772],[126,8,67,-0.022295026688903707],[126,8,68,-0.02378444171732816],[126,8,69,-0.024792345096802032],[126,8,70,-0.030289521407635328],[126,8,71,-0.036114204212474216],[126,8,72,-0.04154958862861158],[126,8,73,-0.04975598192356119],[126,8,74,-0.05317326858569532],[126,8,75,-0.057057784593440755],[126,8,76,-0.06154647083626416],[126,8,77,-0.06683052705971033],[126,8,78,-0.06698653512316467],[126,8,79,-0.06483215839059067],[126,9,64,-0.019500611086727293],[126,9,65,-0.02464771318698139],[126,9,66,-0.03151243701423273],[126,9,67,-0.03369480867005381],[126,9,68,-0.03638411778898254],[126,9,69,-0.03566274208516429],[126,9,70,-0.038778745764530914],[126,9,71,-0.04292186062736836],[126,9,72,-0.04787388244443519],[126,9,73,-0.05435528472601636],[126,9,74,-0.05833416227148405],[126,9,75,-0.0597324926680214],[126,9,76,-0.06299300875737093],[126,9,77,-0.06924559194645427],[126,9,78,-0.07074075053248197],[126,9,79,-0.06947917578392816],[126,10,64,-0.01595022251405387],[126,10,65,-0.02221019369252686],[126,10,66,-0.03173471790230567],[126,10,67,-0.03595836762303667],[126,10,68,-0.03515423729907735],[126,10,69,-0.035408861194295455],[126,10,70,-0.03977959865080713],[126,10,71,-0.04357882632897542],[126,10,72,-0.049189702249129524],[126,10,73,-0.05414158274792148],[126,10,74,-0.057223326816392264],[126,10,75,-0.05694982306203013],[126,10,76,-0.06200347635267156],[126,10,77,-0.06985245236052273],[126,10,78,-0.06981530676870235],[126,10,79,-0.06823930285621232],[126,11,64,-0.01539772384570598],[126,11,65,-0.020307080623229806],[126,11,66,-0.029805311186291594],[126,11,67,-0.034856371076223636],[126,11,68,-0.0339744707589352],[126,11,69,-0.034879830127028943],[126,11,70,-0.03915021494162513],[126,11,71,-0.042647136877533964],[126,11,72,-0.049598413897093324],[126,11,73,-0.055449718837030024],[126,11,74,-0.0563768143900614],[126,11,75,-0.05658780622341231],[126,11,76,-0.06066691986995701],[126,11,77,-0.06931950013052227],[126,11,78,-0.06757315463703523],[126,11,79,-0.06676762999244709],[126,12,64,-0.01093054439742977],[126,12,65,-0.017938850451361232],[126,12,66,-0.02629212499420172],[126,12,67,-0.0304648701531835],[126,12,68,-0.030351512649674006],[126,12,69,-0.032057791181899],[126,12,70,-0.03682972256918282],[126,12,71,-0.042202350257464855],[126,12,72,-0.04957686910036274],[126,12,73,-0.05697233417437782],[126,12,74,-0.05711181475442352],[126,12,75,-0.056492871238609216],[126,12,76,-0.05920068589126139],[126,12,77,-0.06696132230243534],[126,12,78,-0.06595805389369952],[126,12,79,-0.06365625510950097],[126,13,64,-7.751687918454708E-4],[126,13,65,-0.00571062526639321],[126,13,66,-0.014246969322371517],[126,13,67,-0.021209390228039415],[126,13,68,-0.020504740449960784],[126,13,69,-0.022682259699950885],[126,13,70,-0.025555702532454982],[126,13,71,-0.02882440207556003],[126,13,72,-0.03763034712637034],[126,13,73,-0.042854315044305785],[126,13,74,-0.04594292262929857],[126,13,75,-0.044339585764405415],[126,13,76,-0.048884581610566066],[126,13,77,-0.05355902866407858],[126,13,78,-0.0519911430447834],[126,13,79,-0.05203259866538082],[126,14,64,-0.0012170181529519708],[126,14,65,-0.005130266218611096],[126,14,66,-0.011130273825391529],[126,14,67,-0.017949061353986884],[126,14,68,-0.01998299144702209],[126,14,69,-0.020726936273407215],[126,14,70,-0.02368926678953376],[126,14,71,-0.026182463676054174],[126,14,72,-0.03528489415156488],[126,14,73,-0.041286834932579314],[126,14,74,-0.04663255703823457],[126,14,75,-0.04549708011167586],[126,14,76,-0.04678224407384812],[126,14,77,-0.04963814370102819],[126,14,78,-0.05065025021776674],[126,14,79,-0.052711052901125516],[126,15,64,-0.0026434830761381256],[126,15,65,-0.004323960609223632],[126,15,66,-0.008502728362209416],[126,15,67,-0.01719779941470148],[126,15,68,-0.021054511567904444],[126,15,69,-0.021338794781167264],[126,15,70,-0.02144496104861099],[126,15,71,-0.02579122247197918],[126,15,72,-0.03307196966904921],[126,15,73,-0.03752390625349772],[126,15,74,-0.045734183596394334],[126,15,75,-0.04690657693048689],[126,15,76,-0.04943899603283966],[126,15,77,-0.048293751471116475],[126,15,78,-0.05080730783845394],[126,15,79,-0.05309319653938331],[126,16,64,-0.0018958277949952806],[126,16,65,-0.001974297736626468],[126,16,66,-0.0036906603611717437],[126,16,67,-0.00892994600317093],[126,16,68,-0.010624803363712743],[126,16,69,-0.0122851790376457],[126,16,70,-0.008377968259346502],[126,16,71,-0.014078858065867589],[126,16,72,-0.020145071033345396],[126,16,73,-0.023354643595569935],[126,16,74,-0.029429801468283473],[126,16,75,-0.03307449843667823],[126,16,76,-0.034279447077107145],[126,16,77,-0.03236437202172282],[126,16,78,-0.03338487468025633],[126,16,79,-0.036000772118599506],[126,17,64,-0.002826082526601742],[126,17,65,-0.004725763150205453],[126,17,66,-0.005973035079567868],[126,17,67,-0.010519218132971936],[126,17,68,-0.012224167542091574],[126,17,69,-0.014589382052623112],[126,17,70,-0.010910410690602557],[126,17,71,-0.014892468377255719],[126,17,72,-0.022147382075283356],[126,17,73,-0.024724350927024075],[126,17,74,-0.028530237433394445],[126,17,75,-0.0339021426528745],[126,17,76,-0.03494028178033756],[126,17,77,-0.03402444238157182],[126,17,78,-0.03270343511977475],[126,17,79,-0.0343499307774279],[126,18,64,-0.005413878721708787],[126,18,65,-0.00843792790172132],[126,18,66,-0.00784804610022874],[126,18,67,-0.014012115104981793],[126,18,68,-0.012503051429490764],[126,18,69,-0.013310468043039814],[126,18,70,-0.014108203808347847],[126,18,71,-0.019407330502928893],[126,18,72,-0.02425837845985726],[126,18,73,-0.026078116989448563],[126,18,74,-0.028830017760507393],[126,18,75,-0.035847562432424374],[126,18,76,-0.03771631953196622],[126,18,77,-0.03547421225874128],[126,18,78,-0.03341014949002502],[126,18,79,-0.03519698830108264],[126,19,64,-0.008053132955568004],[126,19,65,-0.009644983874080915],[126,19,66,-0.010256860788799144],[126,19,67,-0.014893804542181005],[126,19,68,-0.016088621210006426],[126,19,69,-0.01559202453101724],[126,19,70,-0.016189625831189686],[126,19,71,-0.020984332735903416],[126,19,72,-0.02774995254110063],[126,19,73,-0.028461330043281746],[126,19,74,-0.0316831898324631],[126,19,75,-0.03926151194910166],[126,19,76,-0.03987939195296933],[126,19,77,-0.038288849987081625],[126,19,78,-0.035645761730381836],[126,19,79,-0.038235732471150974],[126,20,64,-0.008586195491534832],[126,20,65,-0.010855874249429909],[126,20,66,-0.01533074521695979],[126,20,67,-0.021197458325063173],[126,20,68,-0.022777539386758833],[126,20,69,-0.020279907811693587],[126,20,70,-0.02330725616944307],[126,20,71,-0.028005546829431682],[126,20,72,-0.03314978856597689],[126,20,73,-0.033710230758930315],[126,20,74,-0.04099611837754666],[126,20,75,-0.04359924816513594],[126,20,76,-0.04089564079054933],[126,20,77,-0.0398164466473091],[126,20,78,-0.03991696064001382],[126,20,79,-0.04351297514934481],[126,21,64,-0.008187348017073381],[126,21,65,-0.011336486843271182],[126,21,66,-0.020849616447617292],[126,21,67,-0.027440708315804474],[126,21,68,-0.03179523681627794],[126,21,69,-0.03137136934504545],[126,21,70,-0.039693009368966664],[126,21,71,-0.05031941007486983],[126,21,72,-0.05856198712112477],[126,21,73,-0.06469474717847276],[126,21,74,-0.07060585665101224],[126,21,75,-0.07246086696646786],[126,21,76,-0.06728781744823403],[126,21,77,-0.06356916285317707],[126,21,78,-0.06403766731722876],[126,21,79,-0.06643555136411837],[126,22,64,-0.012013050689089172],[126,22,65,-0.014871683617043469],[126,22,66,-0.025058871184098747],[126,22,67,-0.02966794584962182],[126,22,68,-0.03450522799435976],[126,22,69,-0.03463588706522375],[126,22,70,-0.041441696386424406],[126,22,71,-0.052848186726817944],[126,22,72,-0.05904591419848053],[126,22,73,-0.0678190187580161],[126,22,74,-0.07184910774072961],[126,22,75,-0.07430114051626474],[126,22,76,-0.07041539703145713],[126,22,77,-0.0663240711921618],[126,22,78,-0.06563380256401538],[126,22,79,-0.0658542512564741],[126,23,64,-0.0156975391197533],[126,23,65,-0.02068047444612864],[126,23,66,-0.027372881272138466],[126,23,67,-0.030860135308342418],[126,23,68,-0.03777757964365408],[126,23,69,-0.03879620404533268],[126,23,70,-0.0448325444337397],[126,23,71,-0.05325667135128502],[126,23,72,-0.06193640476637981],[126,23,73,-0.07293115524294178],[126,23,74,-0.07467622521647163],[126,23,75,-0.07653548296297394],[126,23,76,-0.07215155780653248],[126,23,77,-0.07122999520624998],[126,23,78,-0.06594341692389288],[126,23,79,-0.06569586563507013],[126,24,64,-0.013015203072788806],[126,24,65,-0.014862917184127883],[126,24,66,-0.01961769724611112],[126,24,67,-0.027484424477280778],[126,24,68,-0.033433968360066124],[126,24,69,-0.03564289852617816],[126,24,70,-0.04005489414107838],[126,24,71,-0.04579187685648391],[126,24,72,-0.05755436356972833],[126,24,73,-0.06640574279101141],[126,24,74,-0.0679728492214625],[126,24,75,-0.06719914086909626],[126,24,76,-0.06677854761446672],[126,24,77,-0.06588289835126193],[126,24,78,-0.059138521000029226],[126,24,79,-0.05697218516546146],[126,25,64,-0.015092117872845978],[126,25,65,-0.01853830654489924],[126,25,66,-0.027306425604130324],[126,25,67,-0.04263504596545811],[126,25,68,-0.049706488928421194],[126,25,69,-0.04787161424374037],[126,25,70,-0.05073531023578276],[126,25,71,-0.05205078667877733],[126,25,72,-0.055437675179214774],[126,25,73,-0.055935140812468656],[126,25,74,-0.056532695851013864],[126,25,75,-0.05593627658809576],[126,25,76,-0.05786296551705404],[126,25,77,-0.060143342979121064],[126,25,78,-0.058228086543757177],[126,25,79,-0.058789613514312694],[126,26,64,-0.017816348097516144],[126,26,65,-0.021803179861017485],[126,26,66,-0.03008906633964134],[126,26,67,-0.04613458650236016],[126,26,68,-0.051336391074837506],[126,26,69,-0.049737876056787256],[126,26,70,-0.052637468617114685],[126,26,71,-0.055178491760786],[126,26,72,-0.05624947292774425],[126,26,73,-0.054797283619202275],[126,26,74,-0.05442783404216879],[126,26,75,-0.053399776629565535],[126,26,76,-0.056465320507648964],[126,26,77,-0.05778967965276577],[126,26,78,-0.059770071276814205],[126,26,79,-0.0625093323912509],[126,27,64,-0.020187095872797628],[126,27,65,-0.025986155495094476],[126,27,66,-0.03348044923367596],[126,27,67,-0.04726801853599481],[126,27,68,-0.05201943126335609],[126,27,69,-0.051446047937944994],[126,27,70,-0.05383383073897838],[126,27,71,-0.05643462867256259],[126,27,72,-0.05609562788426489],[126,27,73,-0.05359511617519781],[126,27,74,-0.05112717186966609],[126,27,75,-0.053411451554572775],[126,27,76,-0.05740455452899848],[126,27,77,-0.05575149441554417],[126,27,78,-0.059777408759727896],[126,27,79,-0.06478292640381872],[126,28,64,-0.02519648801814578],[126,28,65,-0.03247723758018109],[126,28,66,-0.040658474668361755],[126,28,67,-0.04933384104655032],[126,28,68,-0.05810784362444636],[126,28,69,-0.05879382165713462],[126,28,70,-0.05894858274198239],[126,28,71,-0.06264436647297617],[126,28,72,-0.06342473263700946],[126,28,73,-0.060537096640882096],[126,28,74,-0.05762004109470979],[126,28,75,-0.05912892511645777],[126,28,76,-0.06091536689450888],[126,28,77,-0.061251199162002154],[126,28,78,-0.06539328806325859],[126,28,79,-0.06869062869349835],[126,29,64,-0.02687686600049266],[126,29,65,-0.03190973815908049],[126,29,66,-0.038579803893831144],[126,29,67,-0.046181328158861126],[126,29,68,-0.052765486616002194],[126,29,69,-0.05085076870933258],[126,29,70,-0.05205861406786649],[126,29,71,-0.05463079448094518],[126,29,72,-0.05855652156122612],[126,29,73,-0.05525037718384673],[126,29,74,-0.054614708241891824],[126,29,75,-0.05352555882610306],[126,29,76,-0.053061533829539265],[126,29,77,-0.05537535429182763],[126,29,78,-0.05959766937074365],[126,29,79,-0.0633301331490937],[126,30,64,-0.02703872064346502],[126,30,65,-0.032233045462557175],[126,30,66,-0.03836200220533624],[126,30,67,-0.04656273431459962],[126,30,68,-0.05275040105959278],[126,30,69,-0.05104112589345461],[126,30,70,-0.051353205834478804],[126,30,71,-0.05300781195272497],[126,30,72,-0.058203514189638594],[126,30,73,-0.05796462158678256],[126,30,74,-0.05714321924961242],[126,30,75,-0.054676022873399566],[126,30,76,-0.05211708688289694],[126,30,77,-0.056316724751711233],[126,30,78,-0.059491899119604966],[126,30,79,-0.06635974211030446],[126,31,64,-0.030140504980581434],[126,31,65,-0.035462794595242986],[126,31,66,-0.040817293301732685],[126,31,67,-0.04635708248678272],[126,31,68,-0.05304817151922153],[126,31,69,-0.05128788875006657],[126,31,70,-0.05371789702448759],[126,31,71,-0.054114072318298026],[126,31,72,-0.05812388523508896],[126,31,73,-0.05923644171366452],[126,31,74,-0.05844589576452833],[126,31,75,-0.05416051040669553],[126,31,76,-0.05281727537141717],[126,31,77,-0.054203064512832994],[126,31,78,-0.057503249104720794],[126,31,79,-0.06582549030515106],[126,32,64,-0.02187135733915138],[126,32,65,-0.02727876119562611],[126,32,66,-0.03162007281481452],[126,32,67,-0.03531100480333574],[126,32,68,-0.04181963935794966],[126,32,69,-0.04270151392435717],[126,32,70,-0.04532201041837622],[126,32,71,-0.04768778546727899],[126,32,72,-0.04770684267176015],[126,32,73,-0.04787379070849028],[126,32,74,-0.047097814088192774],[126,32,75,-0.04667706041521805],[126,32,76,-0.04517357688781737],[126,32,77,-0.043510236611966485],[126,32,78,-0.046953639822503834],[126,32,79,-0.05659068521988525],[126,33,64,-0.016581817859020326],[126,33,65,-0.017978936667311873],[126,33,66,-0.020864356608595674],[126,33,67,-0.024949826803420033],[126,33,68,-0.03101082534253305],[126,33,69,-0.03488870869409469],[126,33,70,-0.040050517154161525],[126,33,71,-0.04899539399128988],[126,33,72,-0.05315611871421576],[126,33,73,-0.05689614169963199],[126,33,74,-0.05773892651576004],[126,33,75,-0.05943583095203356],[126,33,76,-0.05668618921890242],[126,33,77,-0.053513775645672446],[126,33,78,-0.056812593039308634],[126,33,79,-0.06617521581636723],[126,34,64,-0.018726765266990603],[126,34,65,-0.02071152589226971],[126,34,66,-0.021964159282925638],[126,34,67,-0.026859853235783798],[126,34,68,-0.03326993299540787],[126,34,69,-0.03562880425237208],[126,34,70,-0.03980288546682223],[126,34,71,-0.04982816529253363],[126,34,72,-0.053914153920743974],[126,34,73,-0.059547610366381426],[126,34,74,-0.05838523873542581],[126,34,75,-0.05720110681765475],[126,34,76,-0.055368205386423536],[126,34,77,-0.05321623073689716],[126,34,78,-0.05545323187860832],[126,34,79,-0.06533421678142667],[126,35,64,-0.021837371216550466],[126,35,65,-0.024513363665912086],[126,35,66,-0.025589461350905784],[126,35,67,-0.031511824261051535],[126,35,68,-0.037959671343742896],[126,35,69,-0.037369763325428185],[126,35,70,-0.04085792468742874],[126,35,71,-0.048321412665484634],[126,35,72,-0.05496659854848382],[126,35,73,-0.05985522796157722],[126,35,74,-0.06025400710320537],[126,35,75,-0.05658270660016279],[126,35,76,-0.05230223749025051],[126,35,77,-0.049890001752540436],[126,35,78,-0.05329169152895566],[126,35,79,-0.06195918391887306],[126,36,64,-0.03648520871708863],[126,36,65,-0.037006592309489744],[126,36,66,-0.04069746721607638],[126,36,67,-0.04346902142437273],[126,36,68,-0.04747239960990737],[126,36,69,-0.046110874670078086],[126,36,70,-0.04764221939017432],[126,36,71,-0.056180678122512887],[126,36,72,-0.06436767970623472],[126,36,73,-0.0691122210851903],[126,36,74,-0.07038556455211362],[126,36,75,-0.06386139536075158],[126,36,76,-0.0587689180440282],[126,36,77,-0.05673185580103396],[126,36,78,-0.0606002936255583],[126,36,79,-0.06875773496977926],[126,37,64,-0.04370404197898656],[126,37,65,-0.046035894926702736],[126,37,66,-0.047341576545424785],[126,37,67,-0.04943506180640672],[126,37,68,-0.052535564767835635],[126,37,69,-0.054212368202618724],[126,37,70,-0.05268601974006726],[126,37,71,-0.0541976757057229],[126,37,72,-0.056366794443925616],[126,37,73,-0.05411556853249036],[126,37,74,-0.05160198947710912],[126,37,75,-0.04680195731493725],[126,37,76,-0.04380306032363811],[126,37,77,-0.04397193167368084],[126,37,78,-0.049550543139573425],[126,37,79,-0.06152955228323699],[126,38,64,-0.05031832890690728],[126,38,65,-0.0525040329996599],[126,38,66,-0.050497517469617115],[126,38,67,-0.05215596750913076],[126,38,68,-0.056664877669110825],[126,38,69,-0.05698831321778772],[126,38,70,-0.05460164486509089],[126,38,71,-0.05551199408267819],[126,38,72,-0.05657168421847897],[126,38,73,-0.05110468355387321],[126,38,74,-0.049192391636903754],[126,38,75,-0.044933302965891195],[126,38,76,-0.04406343166242871],[126,38,77,-0.044659822850419306],[126,38,78,-0.05286964233643754],[126,38,79,-0.062441164889866535],[126,39,64,-0.05567143845666993],[126,39,65,-0.05737337620730151],[126,39,66,-0.057487529930781614],[126,39,67,-0.05560734337380141],[126,39,68,-0.05977878869250004],[126,39,69,-0.06003969387375624],[126,39,70,-0.05858770154032904],[126,39,71,-0.05838093147657372],[126,39,72,-0.05527613314793578],[126,39,73,-0.047314778108928854],[126,39,74,-0.045844648663575974],[126,39,75,-0.04268855263779382],[126,39,76,-0.043732291333056825],[126,39,77,-0.047942532909923855],[126,39,78,-0.05251381496276855],[126,39,79,-0.06075062735289133],[126,40,64,-0.047154526778253464],[126,40,65,-0.048687283827359804],[126,40,66,-0.048324061752677186],[126,40,67,-0.04609213800921179],[126,40,68,-0.05029890040231545],[126,40,69,-0.04923039156365923],[126,40,70,-0.04974000952633885],[126,40,71,-0.04779980144428464],[126,40,72,-0.042906976065432034],[126,40,73,-0.0354325443748989],[126,40,74,-0.03095295845320603],[126,40,75,-0.029424692825458315],[126,40,76,-0.03150673473292856],[126,40,77,-0.03558264517268181],[126,40,78,-0.041784896819083955],[126,40,79,-0.046675058875656816],[126,41,64,-0.05004492398190759],[126,41,65,-0.050001588655554596],[126,41,66,-0.05001000342716552],[126,41,67,-0.04804884905905671],[126,41,68,-0.05227912399044106],[126,41,69,-0.05237333851814688],[126,41,70,-0.05567745283318544],[126,41,71,-0.052678616203281375],[126,41,72,-0.0465182718072259],[126,41,73,-0.03512351302508129],[126,41,74,-0.0305046191002859],[126,41,75,-0.028421700566343133],[126,41,76,-0.03104296460834663],[126,41,77,-0.0351705969674006],[126,41,78,-0.040703751785646475],[126,41,79,-0.04712131349165628],[126,42,64,-0.051389165144312285],[126,42,65,-0.050854885660610596],[126,42,66,-0.05209296895324314],[126,42,67,-0.051616308225298044],[126,42,68,-0.053532321439670114],[126,42,69,-0.055088172877274105],[126,42,70,-0.058607482290181825],[126,42,71,-0.0575759344905066],[126,42,72,-0.048305901857962824],[126,42,73,-0.03751881786485317],[126,42,74,-0.030058539505879334],[126,42,75,-0.028413087578973983],[126,42,76,-0.03019661246800473],[126,42,77,-0.03475887752055393],[126,42,78,-0.042126976250741216],[126,42,79,-0.045353554051422246],[126,43,64,-0.05182953899100318],[126,43,65,-0.051795123256931225],[126,43,66,-0.05288744167199719],[126,43,67,-0.055692674455933996],[126,43,68,-0.05446567064044264],[126,43,69,-0.05567370227072049],[126,43,70,-0.05922302463082141],[126,43,71,-0.057522907332408946],[126,43,72,-0.050697467437922056],[126,43,73,-0.036856854251201165],[126,43,74,-0.03231236344522123],[126,43,75,-0.03365257510527611],[126,43,76,-0.032913308926421025],[126,43,77,-0.034868229893396635],[126,43,78,-0.04057795693974567],[126,43,79,-0.04507638150671729],[126,44,64,-0.06234921826851819],[126,44,65,-0.06256887107157437],[126,44,66,-0.06448633472049359],[126,44,67,-0.06733515468028717],[126,44,68,-0.06721230722358969],[126,44,69,-0.06764635954442991],[126,44,70,-0.06971114697549721],[126,44,71,-0.06647836572490565],[126,44,72,-0.05961833084328938],[126,44,73,-0.04895840599745441],[126,44,74,-0.04659988116500022],[126,44,75,-0.04515335270181607],[126,44,76,-0.044213274559838936],[126,44,77,-0.047809224535152114],[126,44,78,-0.05248472496641085],[126,44,79,-0.056094805782057],[126,45,64,-0.08805794507925034],[126,45,65,-0.08974848646483694],[126,45,66,-0.08893485877429973],[126,45,67,-0.08866128455083976],[126,45,68,-0.09024041539612684],[126,45,69,-0.08761443941194805],[126,45,70,-0.08473268136117548],[126,45,71,-0.07806952833367174],[126,45,72,-0.06684707504196677],[126,45,73,-0.0555744168020286],[126,45,74,-0.05287240168439469],[126,45,75,-0.05067269995037836],[126,45,76,-0.046498074346080914],[126,45,77,-0.04620140293030389],[126,45,78,-0.04533217427176599],[126,45,79,-0.045785928602448095],[126,46,64,-0.09248035350555055],[126,46,65,-0.09166142195773189],[126,46,66,-0.09071875928589737],[126,46,67,-0.08871305462419052],[126,46,68,-0.09076785212022635],[126,46,69,-0.08955025458629863],[126,46,70,-0.08507250326641697],[126,46,71,-0.07975476269680762],[126,46,72,-0.06718293671381412],[126,46,73,-0.055085324941108946],[126,46,74,-0.05312926483821534],[126,46,75,-0.052496491387827804],[126,46,76,-0.046752747653020954],[126,46,77,-0.044082990943775296],[126,46,78,-0.04268630445791828],[126,46,79,-0.044452948546150325],[126,47,64,-0.09618007499987688],[126,47,65,-0.09328727589953387],[126,47,66,-0.09234874995100271],[126,47,67,-0.089301488313067],[126,47,68,-0.090974647613778],[126,47,69,-0.09033124057203108],[126,47,70,-0.08594303338612223],[126,47,71,-0.07847335374894278],[126,47,72,-0.06960154141462771],[126,47,73,-0.057179687748885655],[126,47,74,-0.05407996740347612],[126,47,75,-0.05356352686351332],[126,47,76,-0.04782084344958931],[126,47,77,-0.04612533986914463],[126,47,78,-0.044029725534665054],[126,47,79,-0.0451927078919416],[126,48,64,-0.0831223628200595],[126,48,65,-0.07791336783645268],[126,48,66,-0.0785011271640206],[126,48,67,-0.07503894189265468],[126,48,68,-0.0753624784021776],[126,48,69,-0.07639275953926147],[126,48,70,-0.07440131332929009],[126,48,71,-0.06679317678653487],[126,48,72,-0.057299754643795525],[126,48,73,-0.047035953292074495],[126,48,74,-0.04420695008121989],[126,48,75,-0.04095004417438433],[126,48,76,-0.035494180864124425],[126,48,77,-0.03546754743689287],[126,48,78,-0.034489836588569994],[126,48,79,-0.03543217289991116],[126,49,64,-0.07230982870055871],[126,49,65,-0.06807049145394901],[126,49,66,-0.06841336464431175],[126,49,67,-0.06294751512745611],[126,49,68,-0.06337361941034389],[126,49,69,-0.0640855941271779],[126,49,70,-0.06584227247299171],[126,49,71,-0.06526714776983648],[126,49,72,-0.06242149465530858],[126,49,73,-0.056984561940556566],[126,49,74,-0.05566185074598032],[126,49,75,-0.05058654323699342],[126,49,76,-0.04708359246318186],[126,49,77,-0.04515653102309991],[126,49,78,-0.048322299665533086],[126,49,79,-0.04630945831924976],[126,50,64,-0.07175256026537641],[126,50,65,-0.06681672611881755],[126,50,66,-0.06688880291657831],[126,50,67,-0.06362852395548022],[126,50,68,-0.06238495303817555],[126,50,69,-0.0621321823036467],[126,50,70,-0.0639924539443272],[126,50,71,-0.06593472025793029],[126,50,72,-0.062074000893190553],[126,50,73,-0.05702690267648952],[126,50,74,-0.056937461938468964],[126,50,75,-0.05362161914432907],[126,50,76,-0.05118551749170852],[126,50,77,-0.04821828984072031],[126,50,78,-0.04992515221999888],[126,50,79,-0.04671795058601021],[126,51,64,-0.07079294825535548],[126,51,65,-0.0664897743201844],[126,51,66,-0.06642907719889315],[126,51,67,-0.06487538120097783],[126,51,68,-0.06442814345169873],[126,51,69,-0.0610665574475992],[126,51,70,-0.061538747612583766],[126,51,71,-0.06404953443662667],[126,51,72,-0.06165721775045811],[126,51,73,-0.05957832277363423],[126,51,74,-0.056736177682264216],[126,51,75,-0.05453751850369115],[126,51,76,-0.05389861877264837],[126,51,77,-0.051533667952871065],[126,51,78,-0.04987733837487987],[126,51,79,-0.047660571904699994],[126,52,64,-0.019105640500375998],[126,52,65,-0.015557837961564458],[126,52,66,-0.01501732979020376],[126,52,67,-0.015554165489891886],[126,52,68,-0.013980490609988405],[126,52,69,-0.011833922251267753],[126,52,70,-0.009072042986598028],[126,52,71,-0.013631885218825773],[126,52,72,-0.01096750721769607],[126,52,73,-0.01244630979813069],[126,52,74,-0.008885110437016008],[126,52,75,-0.0052892257235777895],[126,52,76,-0.0045199353581644175],[126,52,77,-0.0031228885106670823],[126,52,78,0.0011317147002254946],[126,52,79,0.00197874661064093],[126,53,64,-0.011933357587839671],[126,53,65,-0.00817459551213287],[126,53,66,-0.008418492924078702],[126,53,67,-0.010717206326374684],[126,53,68,-0.011540880829913974],[126,53,69,-0.007720098541095427],[126,53,70,-0.0055353816361700114],[126,53,71,-0.00642400559398279],[126,53,72,-0.006411639556576698],[126,53,73,-0.009500141869758644],[126,53,74,-0.007194678111676234],[126,53,75,-0.0011657410025279202],[126,53,76,-0.0010666094866881026],[126,53,77,-1.406409841808176E-4],[126,53,78,0.0031411530028320755],[126,53,79,7.0480155035757E-4],[126,54,64,-0.01290901359683741],[126,54,65,-0.011141616158417689],[126,54,66,-0.011528269870882402],[126,54,67,-0.01370470885010569],[126,54,68,-0.014612050573847263],[126,54,69,-0.01066069953833465],[126,54,70,-0.009258044901762241],[126,54,71,-0.006373002416475593],[126,54,72,-0.00785789238646556],[126,54,73,-0.011352518128478928],[126,54,74,-0.010162749004403115],[126,54,75,-0.0013636916748629158],[126,54,76,9.879582962758482E-4],[126,54,77,3.3572256249780885E-4],[126,54,78,0.0021478496451819984],[126,54,79,0.0016357749663764853],[126,55,64,-0.012220315856600855],[126,55,65,-0.012969153005536194],[126,55,66,-0.0175833190832915],[126,55,67,-0.017390994081974753],[126,55,68,-0.01623980078196932],[126,55,69,-0.012545548054841787],[126,55,70,-0.011822018998857237],[126,55,71,-0.008336709158716427],[126,55,72,-0.00895971135399204],[126,55,73,-0.00964886084495753],[126,55,74,-0.008986611788173116],[126,55,75,-0.004793345163209006],[126,55,76,0.0016235871058884466],[126,55,77,-0.0010617224585994789],[126,55,78,0.001196619416759609],[126,55,79,0.0030883158007612155],[126,56,64,3.17328347805762E-4],[126,56,65,-0.004557491219874393],[126,56,66,-0.006832467296721184],[126,56,67,-0.005228232587687565],[126,56,68,-0.0038414724103910114],[126,56,69,-0.001527243533749223],[126,56,70,-0.0018109395790468774],[126,56,71,9.722683553753941E-4],[126,56,72,0.0023384021726547966],[126,56,73,0.0037298058814441704],[126,56,74,0.005307515567131382],[126,56,75,0.007201420511817547],[126,56,76,0.012255599699406733],[126,56,77,0.010741967819799553],[126,56,78,0.012942668319933431],[126,56,79,0.013248288008618297],[126,57,64,0.0016587632975342548],[126,57,65,-0.008093524454883178],[126,57,66,-0.01398331778167708],[126,57,67,-0.015945440382438197],[126,57,68,-0.015644109517781446],[126,57,69,-0.013765241627666402],[126,57,70,-0.011114556031246697],[126,57,71,-0.008744629671956883],[126,57,72,-0.006849740775692309],[126,57,73,-0.0039438698267623695],[126,57,74,-0.0011456957801670442],[126,57,75,0.002470145824269576],[126,57,76,0.004692746597177944],[126,57,77,0.0042990276467504696],[126,57,78,0.006661420497810405],[126,57,79,0.006865845823999656],[126,58,64,0.045368197805747065],[126,58,65,0.03730836217161687],[126,58,66,0.029452024144015612],[126,58,67,0.02623657629422327],[126,58,68,0.025220512526843486],[126,58,69,0.027614715412937627],[126,58,70,0.03096360769292726],[126,58,71,0.03443055587154978],[126,58,72,0.03523211470038837],[126,58,73,0.03759492537233208],[126,58,74,0.0369676034607222],[126,58,75,0.04174701672509215],[126,58,76,0.04533847560575466],[126,58,77,0.04357039391730019],[126,58,78,0.04402830474269906],[126,58,79,0.04598927656562743],[126,59,64,0.0441293222220579],[126,59,65,0.0355953748070776],[126,59,66,0.02658728001912082],[126,59,67,0.022904507314017844],[126,59,68,0.021599047682865052],[126,59,69,0.02540809536600165],[126,59,70,0.030761641015705457],[126,59,71,0.03487664428155707],[126,59,72,0.03694665615132581],[126,59,73,0.03778631548886335],[126,59,74,0.03746980238264369],[126,59,75,0.04267603170112516],[126,59,76,0.04586236979591085],[126,59,77,0.04557824229404278],[126,59,78,0.04385074618129994],[126,59,79,0.04429109904129791],[126,60,64,0.0370779712531248],[126,60,65,0.02686785551919796],[126,60,66,0.015015994784594144],[126,60,67,0.011914097882380459],[126,60,68,0.009394428295612808],[126,60,69,0.012775272653343925],[126,60,70,0.019592557382885456],[126,60,71,0.02556507252154111],[126,60,72,0.02681663914149604],[126,60,73,0.030821602767215406],[126,60,74,0.029476937052028],[126,60,75,0.032999724793830176],[126,60,76,0.03586717352300914],[126,60,77,0.03600591361288352],[126,60,78,0.03477937197054495],[126,60,79,0.034061595514592785],[126,61,64,0.033659129759868886],[126,61,65,0.0286281007691868],[126,61,66,0.026559474517711623],[126,61,67,0.024619672363154765],[126,61,68,0.02518005920007922],[126,61,69,0.029245273202746835],[126,61,70,0.035522900545672365],[126,61,71,0.0413287929858326],[126,61,72,0.042991406185224484],[126,61,73,0.04546285825545962],[126,61,74,0.04830465292002756],[126,61,75,0.04888662003317881],[126,61,76,0.05258249602485407],[126,61,77,0.05355791026683515],[126,61,78,0.05043795351259517],[126,61,79,0.0489843791436817],[126,62,64,0.03349635494854254],[126,62,65,0.02873983394551277],[126,62,66,0.026772972184035543],[126,62,67,0.024250254396801937],[126,62,68,0.02473245989982259],[126,62,69,0.027345726015223254],[126,62,70,0.03405849140228552],[126,62,71,0.03740662228417825],[126,62,72,0.039827365464005574],[126,62,73,0.04345882555828491],[126,62,74,0.04706142627686216],[126,62,75,0.05040387274746572],[126,62,76,0.054379450268328855],[126,62,77,0.05375800084160959],[126,62,78,0.053177937875942966],[126,62,79,0.0495781056581239],[126,63,64,-0.03713553201877176],[126,63,65,-0.040177233693251144],[126,63,66,-0.042246596647487186],[126,63,67,-0.04218769133338997],[126,63,68,-0.041362929413346114],[126,63,69,-0.03850152737185787],[126,63,70,-0.03257939753988452],[126,63,71,-0.027120840734077847],[126,63,72,-0.022196790877698616],[126,63,73,-0.018714548526994],[126,63,74,-0.010719306482412552],[126,63,75,-0.004525956912546689],[126,63,76,-0.0018403088486449448],[126,63,77,-3.236520831874645E-4],[126,63,78,7.456832941635794E-4],[126,63,79,-0.0013253408540228884],[126,64,64,-0.029326209189616648],[126,64,65,-0.03250063069536725],[126,64,66,-0.03367055589162335],[126,64,67,-0.03430493917292107],[126,64,68,-0.03371963395849806],[126,64,69,-0.030851449251276503],[126,64,70,-0.02574178650824288],[126,64,71,-0.019609496755944936],[126,64,72,-0.014076739132317898],[126,64,73,-0.010756680218921677],[126,64,74,-0.0018311906860472987],[126,64,75,0.005726082774173968],[126,64,76,0.00728164274764137],[126,64,77,0.008574391751149407],[126,64,78,0.009538187949139465],[126,64,79,0.009607996427721727],[126,65,64,-0.03105389997772527],[126,65,65,-0.033776786233190303],[126,65,66,-0.03721937519051248],[126,65,67,-0.03802429643143339],[126,65,68,-0.039160916719567215],[126,65,69,-0.03550031451431941],[126,65,70,-0.032239368657835374],[126,65,71,-0.02512069648396356],[126,65,72,-0.017838398642050668],[126,65,73,-0.015475235827721243],[126,65,74,-0.007166769526229244],[126,65,75,5.576430512187897E-4],[126,65,76,0.0033421101604937525],[126,65,77,0.007447469276615604],[126,65,78,0.008951857882447734],[126,65,79,0.009375262117150368],[126,66,64,-0.03788317420235991],[126,66,65,-0.0432684588784638],[126,66,66,-0.04746483906271892],[126,66,67,-0.046634818920192445],[126,66,68,-0.04858096351258942],[126,66,69,-0.045847453483572276],[126,66,70,-0.04154572137811709],[126,66,71,-0.03658029534667105],[126,66,72,-0.027516158097185342],[126,66,73,-0.02115598492205753],[126,66,74,-0.017025647935609678],[126,66,75,-0.009915013896630798],[126,66,76,-0.007168494592573016],[126,66,77,-7.619191749880239E-5],[126,66,78,0.0025107723481889443],[126,66,79,0.003529102609074103],[126,67,64,-0.041022895635350914],[126,67,65,-0.047063532588302356],[126,67,66,-0.04785698977183275],[126,67,67,-0.048339706236340305],[126,67,68,-0.05106410606280089],[126,67,69,-0.0492585025606109],[126,67,70,-0.04390737178038326],[126,67,71,-0.04030282244398349],[126,67,72,-0.03355601110007188],[126,67,73,-0.02313914129918529],[126,67,74,-0.01917552381523975],[126,67,75,-0.015129668585343634],[126,67,76,-0.010042627305951776],[126,67,77,-0.005075544566596646],[126,67,78,-0.0034710528387053297],[126,67,79,-7.924671387549154E-4],[126,68,64,-0.13453448305500054],[126,68,65,-0.13985104230506948],[126,68,66,-0.14322056806891476],[126,68,67,-0.14402373854523642],[126,68,68,-0.14518880078497118],[126,68,69,-0.14519469073467867],[126,68,70,-0.14151621848222437],[126,68,71,-0.13846119144387606],[126,68,72,-0.13104924674698398],[126,68,73,-0.12084875978625888],[126,68,74,-0.1132529329042412],[126,68,75,-0.1104040962847611],[126,68,76,-0.10506266398594491],[126,68,77,-0.10163511850835849],[126,68,78,-0.09920175435025026],[126,68,79,-0.09791891555284829],[126,69,64,-0.1362212944564248],[126,69,65,-0.14587913417031176],[126,69,66,-0.15853682266261787],[126,69,67,-0.16308871420261883],[126,69,68,-0.16650174734868714],[126,69,69,-0.16763169065305258],[126,69,70,-0.16539209447066638],[126,69,71,-0.16107535601781345],[126,69,72,-0.15373375510982992],[126,69,73,-0.14577300907920715],[126,69,74,-0.13648283654305002],[126,69,75,-0.13311052955617614],[126,69,76,-0.12809219046409376],[126,69,77,-0.12185296754056621],[126,69,78,-0.1191137172618345],[126,69,79,-0.11935372745752154],[126,70,64,-0.1383849642982491],[126,70,65,-0.15048520973046908],[126,70,66,-0.16165050587851004],[126,70,67,-0.1693070712065725],[126,70,68,-0.17076468556807312],[126,70,69,-0.17070633376456507],[126,70,70,-0.16769753854512678],[126,70,71,-0.1627478678366895],[126,70,72,-0.15577587662922193],[126,70,73,-0.15088124536910658],[126,70,74,-0.14401003750422994],[126,70,75,-0.136750680614692],[126,70,76,-0.12857043793183562],[126,70,77,-0.12187088585816946],[126,70,78,-0.11927419916540434],[126,70,79,-0.12114653108521405],[126,71,64,-0.12952244675452967],[126,71,65,-0.14344608786104607],[126,71,66,-0.1549910734996],[126,71,67,-0.16223808098240952],[126,71,68,-0.1656303643847628],[126,71,69,-0.16370854459381196],[126,71,70,-0.15909164330616885],[126,71,71,-0.15639592286860365],[126,71,72,-0.15033773320347282],[126,71,73,-0.14495696530561653],[126,71,74,-0.13819693999007882],[126,71,75,-0.1318705027474812],[126,71,76,-0.12393003554721871],[126,71,77,-0.11737865713419687],[126,71,78,-0.11503927911349522],[126,71,79,-0.11570248589009993],[126,72,64,-0.13221511011062942],[126,72,65,-0.1444643043461073],[126,72,66,-0.15498114468565138],[126,72,67,-0.16458351201321275],[126,72,68,-0.1679921660011346],[126,72,69,-0.16454133850772962],[126,72,70,-0.16026537904506913],[126,72,71,-0.1572621442200604],[126,72,72,-0.15297300580721063],[126,72,73,-0.14661733031311583],[126,72,74,-0.1413304261058566],[126,72,75,-0.13487185286931788],[126,72,76,-0.12746915548681748],[126,72,77,-0.1217685402697983],[126,72,78,-0.11750169463379077],[126,72,79,-0.1169500006396608],[126,73,64,-0.14074216696606734],[126,73,65,-0.14866374228122087],[126,73,66,-0.151822219441408],[126,73,67,-0.15578852428805234],[126,73,68,-0.1556450197293352],[126,73,69,-0.1538913873261699],[126,73,70,-0.15020341244294946],[126,73,71,-0.14533157717636025],[126,73,72,-0.14238219365532356],[126,73,73,-0.13597368392215564],[126,73,74,-0.1321088651005079],[126,73,75,-0.125738873881175],[126,73,76,-0.11917790576118359],[126,73,77,-0.1169736944415408],[126,73,78,-0.11659470907483206],[126,73,79,-0.11882012944339818],[126,74,64,-0.14920793039527927],[126,74,65,-0.155633732359493],[126,74,66,-0.15550498042740202],[126,74,67,-0.15995395258651057],[126,74,68,-0.16136429917687206],[126,74,69,-0.15966141273414533],[126,74,70,-0.15612004489393946],[126,74,71,-0.15282700483205364],[126,74,72,-0.14896129435166383],[126,74,73,-0.1399111592141451],[126,74,74,-0.13689088749580766],[126,74,75,-0.13135839758650927],[126,74,76,-0.12916694749413107],[126,74,77,-0.12593514520549093],[126,74,78,-0.12324082220860466],[126,74,79,-0.12737596324881542],[126,75,64,-0.15095039587740197],[126,75,65,-0.15545014581899297],[126,75,66,-0.15449308932855266],[126,75,67,-0.15697380979363434],[126,75,68,-0.15773430257534454],[126,75,69,-0.15836568365771203],[126,75,70,-0.15611599829136488],[126,75,71,-0.1531102016433144],[126,75,72,-0.14944048616592587],[126,75,73,-0.14079334567796226],[126,75,74,-0.13738378109636162],[126,75,75,-0.13355825434678473],[126,75,76,-0.13248383874057096],[126,75,77,-0.13047368198006343],[126,75,78,-0.12753106417402835],[126,75,79,-0.12969647056089736],[126,76,64,-0.14838548731172962],[126,76,65,-0.15359434616805476],[126,76,66,-0.15145804899785803],[126,76,67,-0.15274631479952983],[126,76,68,-0.15441335411796084],[126,76,69,-0.15318136559163287],[126,76,70,-0.15272220608390574],[126,76,71,-0.15182195516247335],[126,76,72,-0.1514689070687191],[126,76,73,-0.14451861947425226],[126,76,74,-0.14123634921618644],[126,76,75,-0.13796037664375588],[126,76,76,-0.1380061807092664],[126,76,77,-0.13434187967424632],[126,76,78,-0.134454377568388],[126,76,79,-0.1355369196522606],[126,77,64,-0.14670523601586566],[126,77,65,-0.14814901100315642],[126,77,66,-0.14630231088631887],[126,77,67,-0.1476896034567035],[126,77,68,-0.15012493638662852],[126,77,69,-0.14757529710239148],[126,77,70,-0.14685265774558773],[126,77,71,-0.14754570258657065],[126,77,72,-0.14672380241804603],[126,77,73,-0.1392465048609427],[126,77,74,-0.13752626560773454],[126,77,75,-0.13683851804570885],[126,77,76,-0.13689609282144244],[126,77,77,-0.13368930199981957],[126,77,78,-0.13468320664044303],[126,77,79,-0.13534923551536177],[126,78,64,-0.1483920968856946],[126,78,65,-0.14653853092679167],[126,78,66,-0.14624708533097683],[126,78,67,-0.14619580866499732],[126,78,68,-0.14831829349897108],[126,78,69,-0.14723258191391667],[126,78,70,-0.14910065176289258],[126,78,71,-0.14673895424675618],[126,78,72,-0.14690736443227495],[126,78,73,-0.14305863414107142],[126,78,74,-0.1418140661733553],[126,78,75,-0.14175267506277262],[126,78,76,-0.14075589964178437],[126,78,77,-0.1372383081383009],[126,78,78,-0.14160885694322758],[126,78,79,-0.14235765276282925],[126,79,64,-0.140427692595342],[126,79,65,-0.13732835812997793],[126,79,66,-0.1354175756710595],[126,79,67,-0.13562535888086144],[126,79,68,-0.13873450552145566],[126,79,69,-0.1409203381402826],[126,79,70,-0.14029472960614536],[126,79,71,-0.13808489614320005],[126,79,72,-0.13820002830230124],[126,79,73,-0.13726539569860063],[126,79,74,-0.1391508982693183],[126,79,75,-0.13649178321497965],[126,79,76,-0.13516761904710115],[126,79,77,-0.13795236775238778],[126,79,78,-0.13845314433425734],[126,79,79,-0.1388262868163414],[126,80,64,-0.14100284653766945],[126,80,65,-0.13819229758479928],[126,80,66,-0.1356614691901497],[126,80,67,-0.1357125182790346],[126,80,68,-0.1407835471688414],[126,80,69,-0.14298273543656354],[126,80,70,-0.14136220487480733],[126,80,71,-0.14034701288253226],[126,80,72,-0.13716039903712762],[126,80,73,-0.14031497929745193],[126,80,74,-0.1426172183951543],[126,80,75,-0.14015605899842518],[126,80,76,-0.1394096175478906],[126,80,77,-0.14380640631683134],[126,80,78,-0.14345291771727242],[126,80,79,-0.14041421727530645],[126,81,64,-0.14567701240539],[126,81,65,-0.14144984785868253],[126,81,66,-0.1340723483974753],[126,81,67,-0.13058866180437917],[126,81,68,-0.13601151461832625],[126,81,69,-0.13829952946832305],[126,81,70,-0.13844577725709614],[126,81,71,-0.13895138736319929],[126,81,72,-0.1373161789486513],[126,81,73,-0.14228907865251011],[126,81,74,-0.14729162475157193],[126,81,75,-0.14769344959695913],[126,81,76,-0.14718902731770656],[126,81,77,-0.15364838271227815],[126,81,78,-0.1529193259301478],[126,81,79,-0.14976686576835532],[126,82,64,-0.15206943418187596],[126,82,65,-0.14819448243026642],[126,82,66,-0.14116945779442322],[126,82,67,-0.13922076183930557],[126,82,68,-0.14301538558794372],[126,82,69,-0.145972498397833],[126,82,70,-0.14490975601155462],[126,82,71,-0.1460863820659924],[126,82,72,-0.1465216517728983],[126,82,73,-0.14964908979354735],[126,82,74,-0.15578337480828924],[126,82,75,-0.15897282559853226],[126,82,76,-0.1588204914524346],[126,82,77,-0.16436065172877778],[126,82,78,-0.1639323031551478],[126,82,79,-0.15979765769209375],[126,83,64,-0.15014201236675603],[126,83,65,-0.14842218566835527],[126,83,66,-0.14232696771124123],[126,83,67,-0.13983694728167995],[126,83,68,-0.1442604096807429],[126,83,69,-0.14584832595093472],[126,83,70,-0.14463398982666198],[126,83,71,-0.14549822366785062],[126,83,72,-0.14978556482275496],[126,83,73,-0.15341018422389904],[126,83,74,-0.16141559752546036],[126,83,75,-0.16141786024624966],[126,83,76,-0.16190226352403636],[126,83,77,-0.16663518223428997],[126,83,78,-0.1658003131843117],[126,83,79,-0.16096672888729543],[126,84,64,-0.1403037388185414],[126,84,65,-0.1404356120307318],[126,84,66,-0.1378711045535787],[126,84,67,-0.13789526762009569],[126,84,68,-0.14343921063667847],[126,84,69,-0.14596696211840865],[126,84,70,-0.14712243423090327],[126,84,71,-0.14766756331980901],[126,84,72,-0.15275951504915955],[126,84,73,-0.15713119213480378],[126,84,74,-0.16288444532537216],[126,84,75,-0.16465655066002116],[126,84,76,-0.16445953910704353],[126,84,77,-0.16958764405488808],[126,84,78,-0.16709381835733542],[126,84,79,-0.16134302582261614],[126,85,64,-0.12855794705381593],[126,85,65,-0.13528007182327545],[126,85,66,-0.14164170842430587],[126,85,67,-0.1429988533379321],[126,85,68,-0.14869176392195288],[126,85,69,-0.15210908309928975],[126,85,70,-0.15305671306727595],[126,85,71,-0.15167531151533198],[126,85,72,-0.15110685173947733],[126,85,73,-0.15356834819798074],[126,85,74,-0.15811912922435103],[126,85,75,-0.16066312180974646],[126,85,76,-0.1617819555870948],[126,85,77,-0.16127294501934478],[126,85,78,-0.15567207146810336],[126,85,79,-0.1482215155406345],[126,86,64,-0.12935615311352597],[126,86,65,-0.13766021801406214],[126,86,66,-0.14567678518696348],[126,86,67,-0.14665804548036657],[126,86,68,-0.14908844406201413],[126,86,69,-0.15300537123745217],[126,86,70,-0.15504873498391375],[126,86,71,-0.15355823199465857],[126,86,72,-0.15251814271456457],[126,86,73,-0.15422146410107332],[126,86,74,-0.15786253609479536],[126,86,75,-0.1625759683826011],[126,86,76,-0.16224093598856074],[126,86,77,-0.16411567987013082],[126,86,78,-0.15895521942156404],[126,86,79,-0.1516034041084035],[126,87,64,-0.12174575177550032],[126,87,65,-0.13120598043832016],[126,87,66,-0.13911567263961758],[126,87,67,-0.1411627142218498],[126,87,68,-0.1421390937021279],[126,87,69,-0.14521625421311787],[126,87,70,-0.1472851949513082],[126,87,71,-0.14700639128825216],[126,87,72,-0.1463239820278016],[126,87,73,-0.14659014443213483],[126,87,74,-0.1526899895695979],[126,87,75,-0.15496436812753872],[126,87,76,-0.156610214103573],[126,87,77,-0.16061038086082766],[126,87,78,-0.15515521672504654],[126,87,79,-0.14815684279642688],[126,88,64,-0.12267956890776144],[126,88,65,-0.13092681475429413],[126,88,66,-0.1388301879580019],[126,88,67,-0.1442671783162694],[126,88,68,-0.14592356473638696],[126,88,69,-0.15039633343096415],[126,88,70,-0.14896589486378772],[126,88,71,-0.14981039298050378],[126,88,72,-0.15082797326163483],[126,88,73,-0.15215111740905693],[126,88,74,-0.1565806600760306],[126,88,75,-0.1583661573313807],[126,88,76,-0.159556834343983],[126,88,77,-0.1606612417875334],[126,88,78,-0.15643479942707775],[126,88,79,-0.1458670803894013],[126,89,64,-0.12303940984974887],[126,89,65,-0.13055076282929867],[126,89,66,-0.14059933251939116],[126,89,67,-0.14672218597061473],[126,89,68,-0.14951613999121222],[126,89,69,-0.15229584134161217],[126,89,70,-0.1500977482777568],[126,89,71,-0.1531707766561431],[126,89,72,-0.15458278951878984],[126,89,73,-0.15749745635608647],[126,89,74,-0.1602792635357841],[126,89,75,-0.16213422956233742],[126,89,76,-0.16333550900693103],[126,89,77,-0.16238440990263112],[126,89,78,-0.15720628944653903],[126,89,79,-0.14624289313903405],[126,90,64,-0.13045557247619527],[126,90,65,-0.13938445545898695],[126,90,66,-0.1480620245103215],[126,90,67,-0.15488978769388317],[126,90,68,-0.15680512792814383],[126,90,69,-0.16071016222547282],[126,90,70,-0.15939994421683537],[126,90,71,-0.15932290780056957],[126,90,72,-0.16379758566904148],[126,90,73,-0.16561980442475713],[126,90,74,-0.16900154698137815],[126,90,75,-0.17124957376586947],[126,90,76,-0.17280167478470937],[126,90,77,-0.17178389384314946],[126,90,78,-0.16381353046212158],[126,90,79,-0.15482347075767183],[126,91,64,-0.13097369712564969],[126,91,65,-0.14327223135009406],[126,91,66,-0.15270719222480117],[126,91,67,-0.15594994326627262],[126,91,68,-0.1590307882746144],[126,91,69,-0.1604818415402219],[126,91,70,-0.15955476548974076],[126,91,71,-0.16035214991930458],[126,91,72,-0.16449425212219015],[126,91,73,-0.165981229806628],[126,91,74,-0.1719802289747481],[126,91,75,-0.17391758357218207],[126,91,76,-0.17551643629959784],[126,91,77,-0.17560959648626637],[126,91,78,-0.16750207351795388],[126,91,79,-0.1563662136657058],[126,92,64,-0.13512894026628403],[126,92,65,-0.14794447444268463],[126,92,66,-0.15860071259193845],[126,92,67,-0.1657752495775458],[126,92,68,-0.16981334542611135],[126,92,69,-0.17017772251316596],[126,92,70,-0.16992165606634607],[126,92,71,-0.17343900372645626],[126,92,72,-0.1784867729165573],[126,92,73,-0.17992285370956415],[126,92,74,-0.18146375200166937],[126,92,75,-0.18712416697363038],[126,92,76,-0.19014955249857346],[126,92,77,-0.18743367282898368],[126,92,78,-0.17894218758684602],[126,92,79,-0.1702117334172914],[126,93,64,-0.13145061513819561],[126,93,65,-0.14287311053247392],[126,93,66,-0.1562837711811999],[126,93,67,-0.16392726605882754],[126,93,68,-0.16840668502810666],[126,93,69,-0.16678919783487128],[126,93,70,-0.16925949462169487],[126,93,71,-0.17594070530576858],[126,93,72,-0.18511592211869543],[126,93,73,-0.18825424508639532],[126,93,74,-0.1910575883618287],[126,93,75,-0.19687504512450296],[126,93,76,-0.199301619285409],[126,93,77,-0.19956367516654505],[126,93,78,-0.19150348745845622],[126,93,79,-0.18240876948998233],[126,94,64,-0.13405359266058917],[126,94,65,-0.1442200076731361],[126,94,66,-0.1598374113098719],[126,94,67,-0.16632998204855806],[126,94,68,-0.17048931782203647],[126,94,69,-0.16945380702352497],[126,94,70,-0.17261340048719176],[126,94,71,-0.17735088741209715],[126,94,72,-0.18587532025773978],[126,94,73,-0.18951997618066746],[126,94,74,-0.19416752089945405],[126,94,75,-0.19772281660919788],[126,94,76,-0.1979381433866948],[126,94,77,-0.19898293621508478],[126,94,78,-0.19465853986019901],[126,94,79,-0.18615070479511212],[126,95,64,-0.12754732626877083],[126,95,65,-0.13924676436599295],[126,95,66,-0.1528108389855736],[126,95,67,-0.1594315232069074],[126,95,68,-0.1637165172454239],[126,95,69,-0.1647192794364586],[126,95,70,-0.16827679401910106],[126,95,71,-0.1727554516483803],[126,95,72,-0.18224438190939302],[126,95,73,-0.18531471433882651],[126,95,74,-0.19032943810413952],[126,95,75,-0.1933798092186138],[126,95,76,-0.1953176087967305],[126,95,77,-0.1928199101277549],[126,95,78,-0.18909582542009795],[126,95,79,-0.18263596656153808],[126,96,64,-0.12927187333371212],[126,96,65,-0.14353781519297756],[126,96,66,-0.15519043812427474],[126,96,67,-0.16201582727202957],[126,96,68,-0.16428958108364822],[126,96,69,-0.16725423331672792],[126,96,70,-0.17056762474563875],[126,96,71,-0.1739589517500291],[126,96,72,-0.1829561208809169],[126,96,73,-0.18460756075965867],[126,96,74,-0.19266148017115506],[126,96,75,-0.19446974591211272],[126,96,76,-0.19601916202956185],[126,96,77,-0.19415248610899247],[126,96,78,-0.1878179396421657],[126,96,79,-0.18175292604360468],[126,97,64,-0.14178616850435855],[126,97,65,-0.1508516876969192],[126,97,66,-0.15915366765071787],[126,97,67,-0.16244881750369544],[126,97,68,-0.16489751914004075],[126,97,69,-0.17060263984891255],[126,97,70,-0.1691231262341874],[126,97,71,-0.17159713572341317],[126,97,72,-0.17448313020907813],[126,97,73,-0.17579915233912255],[126,97,74,-0.18284757605850605],[126,97,75,-0.18453268272324824],[126,97,76,-0.18661009165924786],[126,97,77,-0.18572149142968175],[126,97,78,-0.17860577917856996],[126,97,79,-0.1728723894500163],[126,98,64,-0.152582566003484],[126,98,65,-0.15717197312674694],[126,98,66,-0.1653759079614396],[126,98,67,-0.1695167958208522],[126,98,68,-0.17544453934600207],[126,98,69,-0.17826403561311208],[126,98,70,-0.17561775195627816],[126,98,71,-0.1794379443055153],[126,98,72,-0.1808662045353315],[126,98,73,-0.18155933735274202],[126,98,74,-0.18700176239832914],[126,98,75,-0.18801718511334076],[126,98,76,-0.19137683815189876],[126,98,77,-0.19061928556672003],[126,98,78,-0.18273115258666378],[126,98,79,-0.17690202933759458],[126,99,64,-0.15353028391175605],[126,99,65,-0.15912754901134943],[126,99,66,-0.16564075532642952],[126,99,67,-0.16817401251596803],[126,99,68,-0.17675079934555693],[126,99,69,-0.1792474587200707],[126,99,70,-0.17764912212888256],[126,99,71,-0.17898027061786398],[126,99,72,-0.18145914346675696],[126,99,73,-0.18226427546822685],[126,99,74,-0.18703827322937722],[126,99,75,-0.18930761874632657],[126,99,76,-0.19109026276199664],[126,99,77,-0.1883590011804328],[126,99,78,-0.18252357464056895],[126,99,79,-0.17409299630974392],[126,100,64,-0.13329751517614644],[126,100,65,-0.13174803650378522],[126,100,66,-0.13107524108265217],[126,100,67,-0.1284643765252769],[126,100,68,-0.12882442129286487],[126,100,69,-0.12717333952411275],[126,100,70,-0.12025219884664803],[126,100,71,-0.11788357814326236],[126,100,72,-0.11715592364438249],[126,100,73,-0.11943979533426567],[126,100,74,-0.1232643129328688],[126,100,75,-0.12779909227984196],[126,100,76,-0.12423949792846507],[126,100,77,-0.12211120584178925],[126,100,78,-0.11437642103347145],[126,100,79,-0.10351067438391397],[126,101,64,-0.13694615605026728],[126,101,65,-0.1341787675523568],[126,101,66,-0.13410505259949823],[126,101,67,-0.1289143443058311],[126,101,68,-0.13068270888617048],[126,101,69,-0.1297065975975297],[126,101,70,-0.12413690791752932],[126,101,71,-0.12141632404191366],[126,101,72,-0.1201767966746097],[126,101,73,-0.12060569351516043],[126,101,74,-0.12505168424049298],[126,101,75,-0.1263710760407649],[126,101,76,-0.1235459156537124],[126,101,77,-0.12201333285704115],[126,101,78,-0.11512030725983469],[126,101,79,-0.10552304419353209],[126,102,64,-0.1398235725360032],[126,102,65,-0.13876808962882714],[126,102,66,-0.1347480789353609],[126,102,67,-0.13091980617394536],[126,102,68,-0.1316479557038139],[126,102,69,-0.13148675428574555],[126,102,70,-0.1259169282019756],[126,102,71,-0.12452236664549933],[126,102,72,-0.1231501340271379],[126,102,73,-0.12382950684035388],[126,102,74,-0.12641953891030946],[126,102,75,-0.1258904899250759],[126,102,76,-0.12331031292592419],[126,102,77,-0.11954959619633701],[126,102,78,-0.11376933725651103],[126,102,79,-0.10642612984779258],[126,103,64,-0.13382481472140936],[126,103,65,-0.13167559136309348],[126,103,66,-0.12934923906786],[126,103,67,-0.1256943605908701],[126,103,68,-0.12540625859618323],[126,103,69,-0.12460446698684924],[126,103,70,-0.12478083859083479],[126,103,71,-0.12137543685470739],[126,103,72,-0.12074050903743366],[126,103,73,-0.12343197012715698],[126,103,74,-0.12374911099966879],[126,103,75,-0.12314119268928364],[126,103,76,-0.11898402440217326],[126,103,77,-0.11404678854485856],[126,103,78,-0.10754173982045613],[126,103,79,-0.1064947523202153],[126,104,64,-0.1368983500758717],[126,104,65,-0.13295653454390646],[126,104,66,-0.13003131110039456],[126,104,67,-0.12791156206263654],[126,104,68,-0.12918738541156027],[126,104,69,-0.12784384910171392],[126,104,70,-0.12699250276078747],[126,104,71,-0.1252317945442444],[126,104,72,-0.12231526193863819],[126,104,73,-0.12420073248200482],[126,104,74,-0.1263240947049613],[126,104,75,-0.12321884054953064],[126,104,76,-0.11797668318021465],[126,104,77,-0.11504943032415048],[126,104,78,-0.10894384515789306],[126,104,79,-0.10948800085766426],[126,105,64,-0.12850166244324787],[126,105,65,-0.12626658178453476],[126,105,66,-0.12653499200541013],[126,105,67,-0.1288873683359602],[126,105,68,-0.13274900885240226],[126,105,69,-0.13061649237588832],[126,105,70,-0.13029868311098342],[126,105,71,-0.13034560482341273],[126,105,72,-0.13269564062496492],[126,105,73,-0.13445510536866973],[126,105,74,-0.1372141891014864],[126,105,75,-0.13382908267853127],[126,105,76,-0.1255611459113748],[126,105,77,-0.12157829850146548],[126,105,78,-0.11134179561721262],[126,105,79,-0.10587399632713507],[126,106,64,-0.13563110787852883],[126,106,65,-0.1359560981486508],[126,106,66,-0.1348635765958268],[126,106,67,-0.13693729487276765],[126,106,68,-0.1388887495383339],[126,106,69,-0.13859959141312597],[126,106,70,-0.137117369808347],[126,106,71,-0.1384787627530745],[126,106,72,-0.1413387947158661],[126,106,73,-0.13878611648314898],[126,106,74,-0.13954126327484379],[126,106,75,-0.13893504266403683],[126,106,76,-0.13059876511579097],[126,106,77,-0.12533460584522216],[126,106,78,-0.11777643601429405],[126,106,79,-0.11147553544390361],[126,107,64,-0.13988371971830174],[126,107,65,-0.13853347949554531],[126,107,66,-0.1370217656497701],[126,107,67,-0.13934188113919238],[126,107,68,-0.13830942236580107],[126,107,69,-0.14032831654118422],[126,107,70,-0.13902778988145592],[126,107,71,-0.13949980269577392],[126,107,72,-0.1392054663311001],[126,107,73,-0.13755370095394873],[126,107,74,-0.13797466849166048],[126,107,75,-0.14052399294965612],[126,107,76,-0.13323267375877149],[126,107,77,-0.12637507688060906],[126,107,78,-0.11766902476185426],[126,107,79,-0.10983607685032237],[126,108,64,-0.13567893885902083],[126,108,65,-0.13596565677744468],[126,108,66,-0.1370352867630311],[126,108,67,-0.1401774371067395],[126,108,68,-0.1394770918320144],[126,108,69,-0.1410461905754846],[126,108,70,-0.14137031310409348],[126,108,71,-0.14322713307534424],[126,108,72,-0.14142448214446549],[126,108,73,-0.14099245680305378],[126,108,74,-0.14167702602523116],[126,108,75,-0.14357377963579054],[126,108,76,-0.13941913039622017],[126,108,77,-0.1312338790672571],[126,108,78,-0.1249348253321971],[126,108,79,-0.11976835969854754],[126,109,64,-0.1462395716125259],[126,109,65,-0.1411488401104371],[126,109,66,-0.1399898924096912],[126,109,67,-0.14124179116756566],[126,109,68,-0.14023389650739188],[126,109,69,-0.13956013371266549],[126,109,70,-0.13680336064669546],[126,109,71,-0.13543415629664807],[126,109,72,-0.13182540979284987],[126,109,73,-0.13003670791690736],[126,109,74,-0.12928300379001448],[126,109,75,-0.12993267858882274],[126,109,76,-0.13128889027031052],[126,109,77,-0.1303466666966612],[126,109,78,-0.13074753133759562],[126,109,79,-0.1325919169480518],[126,110,64,-0.14639250538943144],[126,110,65,-0.14094855244531213],[126,110,66,-0.14012871456951212],[126,110,67,-0.1402529355706072],[126,110,68,-0.13993939685541842],[126,110,69,-0.138633359118511],[126,110,70,-0.13557508920924988],[126,110,71,-0.13180709532790397],[126,110,72,-0.1264270662334732],[126,110,73,-0.12778604378825933],[126,110,74,-0.12549449762188944],[126,110,75,-0.12539419543641253],[126,110,76,-0.1289871413765729],[126,110,77,-0.12820116718377594],[126,110,78,-0.13271713684299286],[126,110,79,-0.13579163863560267],[126,111,64,-0.13993143891440604],[126,111,65,-0.13544458083826805],[126,111,66,-0.1347740862860755],[126,111,67,-0.1343378253526578],[126,111,68,-0.13538522127653718],[126,111,69,-0.13379996776698044],[126,111,70,-0.13003311078243504],[126,111,71,-0.12449036570396352],[126,111,72,-0.12099241523666351],[126,111,73,-0.11979530203061932],[126,111,74,-0.11985574891150594],[126,111,75,-0.12132348617994443],[126,111,76,-0.12521211456696774],[126,111,77,-0.12739280338016856],[126,111,78,-0.13319417214845714],[126,111,79,-0.13507215123418814],[126,112,64,-0.14321984161834472],[126,112,65,-0.1386517249136903],[126,112,66,-0.1387013048601899],[126,112,67,-0.135667608038617],[126,112,68,-0.13511517560348107],[126,112,69,-0.13252324928612402],[126,112,70,-0.12891061528805253],[126,112,71,-0.1226527342395585],[126,112,72,-0.11759284559608925],[126,112,73,-0.11541953272306518],[126,112,74,-0.11785210096812243],[126,112,75,-0.11796529258247886],[126,112,76,-0.12212091090179426],[126,112,77,-0.12575080967176083],[126,112,78,-0.13215598263127673],[126,112,79,-0.13435604351419758],[126,113,64,-0.14520630238639765],[126,113,65,-0.14090407380975875],[126,113,66,-0.13940989446343072],[126,113,67,-0.13651893568515566],[126,113,68,-0.13511630205372227],[126,113,69,-0.13153194449144578],[126,113,70,-0.1258084818301542],[126,113,71,-0.12130236192174335],[126,113,72,-0.11420197113031877],[126,113,73,-0.11178061010082645],[126,113,74,-0.11375108258955056],[126,113,75,-0.11575628575710474],[126,113,76,-0.12115307615940588],[126,113,77,-0.12462886715183702],[126,113,78,-0.13311860989639865],[126,113,79,-0.13419246881766128],[126,114,64,-0.15212268198551065],[126,114,65,-0.1490513209213473],[126,114,66,-0.14550301490321677],[126,114,67,-0.14160795592475917],[126,114,68,-0.14151733622166304],[126,114,69,-0.13612222214284414],[126,114,70,-0.1306422495870175],[126,114,71,-0.12664374082266755],[126,114,72,-0.11982549004783319],[126,114,73,-0.11567890579035167],[126,114,74,-0.1176326086115849],[126,114,75,-0.1182129296003249],[126,114,76,-0.12591179108202208],[126,114,77,-0.12993426875329334],[126,114,78,-0.1376055999356795],[126,114,79,-0.1403128175840585],[126,115,64,-0.15197405693329646],[126,115,65,-0.14758141195628838],[126,115,66,-0.14365669574907913],[126,115,67,-0.14106080743480212],[126,115,68,-0.14192846074927926],[126,115,69,-0.13670044657381927],[126,115,70,-0.1298244850532155],[126,115,71,-0.12627196930002924],[126,115,72,-0.11990021258970293],[126,115,73,-0.1165906647503412],[126,115,74,-0.11606680329797991],[126,115,75,-0.11845305244235631],[126,115,76,-0.12561609555611142],[126,115,77,-0.13052655097734128],[126,115,78,-0.13520761881404325],[126,115,79,-0.13740298761149525],[126,116,64,-0.13611929684258753],[126,116,65,-0.1307786001860364],[126,116,66,-0.12819650529705326],[126,116,67,-0.12444743648425065],[126,116,68,-0.12269779797551875],[126,116,69,-0.1180717098305189],[126,116,70,-0.11177207222383334],[126,116,71,-0.10535379138080392],[126,116,72,-0.10128780943543109],[126,116,73,-0.09758834684562095],[126,116,74,-0.0971550514412371],[126,116,75,-0.10038512778839853],[126,116,76,-0.1092807866990732],[126,116,77,-0.11289317527821288],[126,116,78,-0.1150123761974625],[126,116,79,-0.11437148627681364],[126,117,64,-0.1400762315431061],[126,117,65,-0.13608390427654185],[126,117,66,-0.1337112612998236],[126,117,67,-0.1303575349552282],[126,117,68,-0.12782966141943639],[126,117,69,-0.12393144495258615],[126,117,70,-0.11674412422942329],[126,117,71,-0.10840739764587143],[126,117,72,-0.10409172227557509],[126,117,73,-0.09899601221640311],[126,117,74,-0.09834677593415704],[126,117,75,-0.10262322110706777],[126,117,76,-0.11039200824235848],[126,117,77,-0.10886578553907092],[126,117,78,-0.106891206069067],[126,117,79,-0.10567696561037415],[126,118,64,-0.13745949769528584],[126,118,65,-0.13385659594350535],[126,118,66,-0.13177507875334307],[126,118,67,-0.12876189162064092],[126,118,68,-0.12738002233442247],[126,118,69,-0.12197736075413179],[126,118,70,-0.11357521196287648],[126,118,71,-0.10452534039854275],[126,118,72,-0.1021028794800939],[126,118,73,-0.09803320238277795],[126,118,74,-0.09933872189102919],[126,118,75,-0.10358912833320537],[126,118,76,-0.10722835929841407],[126,118,77,-0.1083656303983786],[126,118,78,-0.1071228439902231],[126,118,79,-0.1067768621682276],[126,119,64,-0.12766621561517438],[126,119,65,-0.12479504009962479],[126,119,66,-0.12476651960509798],[126,119,67,-0.12045550304483985],[126,119,68,-0.11786432962649288],[126,119,69,-0.11259963212825706],[126,119,70,-0.10486132003935195],[126,119,71,-0.09820646357435388],[126,119,72,-0.09720843746488098],[126,119,73,-0.09586925075040982],[126,119,74,-0.09895414571824665],[126,119,75,-0.10100596100304994],[126,119,76,-0.10533906580812574],[126,119,77,-0.10751443021890854],[126,119,78,-0.10784883008213252],[126,119,79,-0.109850387161993],[126,120,64,-0.12629006163341358],[126,120,65,-0.12337954967635716],[126,120,66,-0.12279331076826516],[126,120,67,-0.11893208244884643],[126,120,68,-0.11205490660673319],[126,120,69,-0.10713298444382353],[126,120,70,-0.10038340093917714],[126,120,71,-0.09777659614122695],[126,120,72,-0.09670155330022684],[126,120,73,-0.09479486801115194],[126,120,74,-0.09955029712518232],[126,120,75,-0.10210077854144407],[126,120,76,-0.10519727800354767],[126,120,77,-0.10899650484291626],[126,120,78,-0.10958690876423824],[126,120,79,-0.10893602481484804],[126,121,64,-0.11742103337699525],[126,121,65,-0.1110228794324442],[126,121,66,-0.10773945063360096],[126,121,67,-0.10487997691169063],[126,121,68,-0.09885417219862555],[126,121,69,-0.09429566092801295],[126,121,70,-0.0922646332746201],[126,121,71,-0.0907316732028444],[126,121,72,-0.0903475230641953],[126,121,73,-0.09345446429377482],[126,121,74,-0.09809530769773459],[126,121,75,-0.10374018878812943],[126,121,76,-0.10776597558270581],[126,121,77,-0.11418417885818385],[126,121,78,-0.11390161994115411],[126,121,79,-0.11849242515004602],[126,122,64,-0.12008363295756362],[126,122,65,-0.11292846038289261],[126,122,66,-0.10983422919147764],[126,122,67,-0.10650468875731604],[126,122,68,-0.10176891869585142],[126,122,69,-0.09850291341633476],[126,122,70,-0.09605307015438302],[126,122,71,-0.09392288725254955],[126,122,72,-0.09419547244044836],[126,122,73,-0.09776504125544683],[126,122,74,-0.10442958145550373],[126,122,75,-0.11258632064299595],[126,122,76,-0.11611542056719046],[126,122,77,-0.11932988340700443],[126,122,78,-0.12014440987907637],[126,122,79,-0.12116333591143738],[126,123,64,-0.11695021004401424],[126,123,65,-0.10826019078866725],[126,123,66,-0.10678999759521234],[126,123,67,-0.1026476183840926],[126,123,68,-0.09921453582144343],[126,123,69,-0.09673955984715958],[126,123,70,-0.09567662292347662],[126,123,71,-0.09268589413358459],[126,123,72,-0.09439377150815113],[126,123,73,-0.09596109701423992],[126,123,74,-0.1032707545966764],[126,123,75,-0.11123443715453712],[126,123,76,-0.1163688004627894],[126,123,77,-0.11919823309836117],[126,123,78,-0.11883525385076096],[126,123,79,-0.12252144420752237],[126,124,64,-0.10694852207306257],[126,124,65,-0.10304195447962095],[126,124,66,-0.10054059519722233],[126,124,67,-0.09837238742314777],[126,124,68,-0.09679214404937224],[126,124,69,-0.09334124363496414],[126,124,70,-0.09330412804441124],[126,124,71,-0.09431099170941216],[126,124,72,-0.09556735243457182],[126,124,73,-0.09894135970125244],[126,124,74,-0.10475987197981607],[126,124,75,-0.11164904551736854],[126,124,76,-0.11779974684610628],[126,124,77,-0.12113249543936015],[126,124,78,-0.1217303770997909],[126,124,79,-0.12785120281553536],[126,125,64,-0.10463052559141134],[126,125,65,-0.10037315003851187],[126,125,66,-0.09667117046298547],[126,125,67,-0.09331105441457622],[126,125,68,-0.0932043192240429],[126,125,69,-0.09038325628849711],[126,125,70,-0.09114029696586788],[126,125,71,-0.09357197056097366],[126,125,72,-0.09358554246087478],[126,125,73,-0.09745733702648607],[126,125,74,-0.10502023811783248],[126,125,75,-0.11167955553051291],[126,125,76,-0.11652378702997496],[126,125,77,-0.12166351769796094],[126,125,78,-0.12291097671954282],[126,125,79,-0.12747439667200494],[126,126,64,-0.09955627767772124],[126,126,65,-0.09724334367888872],[126,126,66,-0.09470350498448732],[126,126,67,-0.09019825932372773],[126,126,68,-0.0915520503576901],[126,126,69,-0.08802501816797333],[126,126,70,-0.0888659612987392],[126,126,71,-0.09262289890766678],[126,126,72,-0.09249480962472693],[126,126,73,-0.09964010019245767],[126,126,74,-0.10619846191487252],[126,126,75,-0.11086231396238419],[126,126,76,-0.1134570616324242],[126,126,77,-0.12169630669341922],[126,126,78,-0.12102615746972088],[126,126,79,-0.12730942061029432],[126,127,64,-0.08952814752400429],[126,127,65,-0.08928354582848436],[126,127,66,-0.09072463102639274],[126,127,67,-0.08553308692410486],[126,127,68,-0.08783390366392477],[126,127,69,-0.0866780884046065],[126,127,70,-0.08929624326317248],[126,127,71,-0.0903194502210797],[126,127,72,-0.09292722133087308],[126,127,73,-0.10127981061026231],[126,127,74,-0.10739668639728206],[126,127,75,-0.11290628800066072],[126,127,76,-0.11148264440676989],[126,127,77,-0.1188850125724446],[126,127,78,-0.123176990909945],[126,127,79,-0.1284131282770837],[126,128,64,-0.08614074922457032],[126,128,65,-0.08889206353917974],[126,128,66,-0.0889848830607138],[126,128,67,-0.08554914901232571],[126,128,68,-0.08683519475636839],[126,128,69,-0.08753523740945152],[126,128,70,-0.09112152940942529],[126,128,71,-0.08995938508956594],[126,128,72,-0.09418294392354434],[126,128,73,-0.10292080581327953],[126,128,74,-0.10750125245831153],[126,128,75,-0.11146267641603921],[126,128,76,-0.11173118119986872],[126,128,77,-0.11538535102573422],[126,128,78,-0.12007923503868924],[126,128,79,-0.1278819783757267],[126,129,64,-0.09402029342969861],[126,129,65,-0.09676829924314656],[126,129,66,-0.09515856240280764],[126,129,67,-0.09581672584779082],[126,129,68,-0.09571356112234486],[126,129,69,-0.09951603245678087],[126,129,70,-0.10147631885689912],[126,129,71,-0.10004318233169054],[126,129,72,-0.10238430039384161],[126,129,73,-0.11017050114851965],[126,129,74,-0.11500935654935679],[126,129,75,-0.12086981716075273],[126,129,76,-0.12102343147971427],[126,129,77,-0.12179714117926357],[126,129,78,-0.1277178399124965],[126,129,79,-0.13305074846783088],[126,130,64,-0.09616695696152547],[126,130,65,-0.09907369229208757],[126,130,66,-0.0989775011103132],[126,130,67,-0.10068195821444602],[126,130,68,-0.10163131199478881],[126,130,69,-0.10781807791002382],[126,130,70,-0.10766233517217583],[126,130,71,-0.10842680250664752],[126,130,72,-0.10975349299321574],[126,130,73,-0.11661388161917888],[126,130,74,-0.12184350602542221],[126,130,75,-0.12692797752541995],[126,130,76,-0.12722169963393126],[126,130,77,-0.1299707969256609],[126,130,78,-0.1317783989974484],[126,130,79,-0.13756676509750024],[126,131,64,-0.0925015861952329],[126,131,65,-0.09707985883139145],[126,131,66,-0.09556920642985432],[126,131,67,-0.09915749008933296],[126,131,68,-0.10138075594906967],[126,131,69,-0.10669547222591694],[126,131,70,-0.10788875469420431],[126,131,71,-0.11068252640184251],[126,131,72,-0.11051411351940851],[126,131,73,-0.11788744791954053],[126,131,74,-0.12062851251119487],[126,131,75,-0.12653729580655643],[126,131,76,-0.13827777037388747],[126,131,77,-0.14547368623851012],[126,131,78,-0.13722812298074089],[126,131,79,-0.13947684773165459],[126,132,64,-0.08310114346660591],[126,132,65,-0.08717608528643578],[126,132,66,-0.0868693654356209],[126,132,67,-0.09081461262248626],[126,132,68,-0.09561292342244061],[126,132,69,-0.09840648691488021],[126,132,70,-0.09892301901187948],[126,132,71,-0.10208512771083536],[126,132,72,-0.10551184700831706],[126,132,73,-0.11166006606951931],[126,132,74,-0.1128880808005626],[126,132,75,-0.11878390393872987],[126,132,76,-0.15428396909811704],[126,132,77,-0.15228771230989596],[126,132,78,-0.1500625639532013],[126,132,79,-0.14173614935619228],[126,133,64,-0.06958587995165058],[126,133,65,-0.07209788156989472],[126,133,66,-0.07285164321040907],[126,133,67,-0.07886751040595316],[126,133,68,-0.08186515509955075],[126,133,69,-0.0861267695579373],[126,133,70,-0.08637705906321624],[126,133,71,-0.08840166959927784],[126,133,72,-0.09259718548017096],[126,133,73,-0.09847920872237734],[126,133,74,-0.11692697500039337],[126,133,75,-0.14669986461983614],[126,133,76,-0.1937932222056345],[126,133,77,-0.18267297076484051],[126,133,78,-0.18812534731425584],[126,133,79,-0.1770086181824907],[126,134,64,-0.06631670364675607],[126,134,65,-0.06820216189965135],[126,134,66,-0.07010988372833223],[126,134,67,-0.0789205505771062],[126,134,68,-0.08169492739852849],[126,134,69,-0.08466175583035612],[126,134,70,-0.08491827770558205],[126,134,71,-0.08724110237916949],[126,134,72,-0.09115715601550246],[126,134,73,-0.09740218853286148],[126,134,74,-0.1330203811643027],[126,134,75,-0.15834060154199492],[126,134,76,-0.20365763611853097],[126,134,77,-0.19608859632827985],[126,134,78,-0.2040434762825058],[126,134,79,-0.2009769035015712],[126,135,64,-0.060619433670025244],[126,135,65,-0.060982275482262455],[126,135,66,-0.06441482041772928],[126,135,67,-0.07407908898901419],[126,135,68,-0.07777327872824492],[126,135,69,-0.08207847558630028],[126,135,70,-0.08279486529982891],[126,135,71,-0.08421285508792083],[126,135,72,-0.09092364778364785],[126,135,73,-0.09662727122646134],[126,135,74,-0.13523596145332833],[126,135,75,-0.15392356354941386],[126,135,76,-0.19497511842587323],[126,135,77,-0.19732877327118725],[126,135,78,-0.2069946821336095],[126,135,79,-0.20690109209504565],[126,136,64,-0.057928893252449695],[126,136,65,-0.05898651357270743],[126,136,66,-0.0625270723624037],[126,136,67,-0.06873567242346382],[126,136,68,-0.07327840291337394],[126,136,69,-0.07862403592025177],[126,136,70,-0.08231828562087504],[126,136,71,-0.08542240379691694],[126,136,72,-0.09385138879338395],[126,136,73,-0.09960105510109846],[126,136,74,-0.14863549642701163],[126,136,75,-0.1658946438386948],[126,136,76,-0.2041363109085424],[126,136,77,-0.2176815144750635],[126,136,78,-0.22329035238666733],[126,136,79,-0.22417179387761574],[126,137,64,-0.05663861815631499],[126,137,65,-0.05610381097845303],[126,137,66,-0.05785777162625349],[126,137,67,-0.06365197769046518],[126,137,68,-0.07043125118489785],[126,137,69,-0.07704604495540887],[126,137,70,-0.08255498210814374],[126,137,71,-0.0875349474186293],[126,137,72,-0.09545478291465079],[126,137,73,-0.11032320622033555],[126,137,74,-0.1525883494799622],[126,137,75,-0.17267138444778185],[126,137,76,-0.20537876641406663],[126,137,77,-0.22165034542710016],[126,137,78,-0.23120557375570075],[126,137,79,-0.22299386213328284],[126,138,64,-0.05978442305599464],[126,138,65,-0.05944194347142438],[126,138,66,-0.06125975242410514],[126,138,67,-0.06751911850583459],[126,138,68,-0.07480430678001151],[126,138,69,-0.08245273321791308],[126,138,70,-0.08980031110363455],[126,138,71,-0.09391041780100548],[126,138,72,-0.1001296876250983],[126,138,73,-0.1026003860274126],[126,138,74,-0.14121001213875753],[126,138,75,-0.1626856641954378],[126,138,76,-0.1854537597729043],[126,138,77,-0.21365580652899951],[126,138,78,-0.22683426946250262],[126,138,79,-0.21648472278966102],[126,139,64,-0.058139991035106864],[126,139,65,-0.0583337710895722],[126,139,66,-0.05983241905474618],[126,139,67,-0.06992719012723733],[126,139,68,-0.07380547722740254],[126,139,69,-0.08173062060278012],[126,139,70,-0.09202713730224664],[126,139,71,-0.09528652766872805],[126,139,72,-0.09700240859172271],[126,139,73,-0.11299372518028346],[126,139,74,-0.16068129417432336],[126,139,75,-0.18719295490957372],[126,139,76,-0.2055141006533338],[126,139,77,-0.23043706929030122],[126,139,78,-0.2396963902323187],[126,139,79,-0.2346820634892306],[126,140,64,-0.05581069967417139],[126,140,65,-0.055882690670191915],[126,140,66,-0.05697727195121144],[126,140,67,-0.06303290548230686],[126,140,68,-0.06709893669120497],[126,140,69,-0.07358347425313594],[126,140,70,-0.08205222372816968],[126,140,71,-0.08958903997434242],[126,140,72,-0.08907080517998084],[126,140,73,-0.10906927187813348],[126,140,74,-0.15932814628158193],[126,140,75,-0.18532652383965545],[126,140,76,-0.2094469906884754],[126,140,77,-0.22704171953969804],[126,140,78,-0.2369217022629052],[126,140,79,-0.2353979148514149],[126,141,64,-0.048916631323624726],[126,141,65,-0.05126061353464541],[126,141,66,-0.05431284256917021],[126,141,67,-0.06381015732794884],[126,141,68,-0.06654254204692835],[126,141,69,-0.07324739007823922],[126,141,70,-0.08260394813394492],[126,141,71,-0.09122018799674617],[126,141,72,-0.0885833962924723],[126,141,73,-0.1242176713961764],[126,141,74,-0.15166253817694259],[126,141,75,-0.16220094856461903],[126,141,76,-0.19079022442908836],[126,141,77,-0.2212377413187146],[126,141,78,-0.23293392638256272],[126,141,79,-0.2233384988716811],[126,142,64,-0.0480995633763447],[126,142,65,-0.048900605779903045],[126,142,66,-0.05411015409044606],[126,142,67,-0.0625873928037755],[126,142,68,-0.06674018630812087],[126,142,69,-0.07443596745279296],[126,142,70,-0.0843983851874043],[126,142,71,-0.09079466267317342],[126,142,72,-0.08954028216584294],[126,142,73,-0.12297519692150179],[126,142,74,-0.15060730240431963],[126,142,75,-0.16133094005590892],[126,142,76,-0.1955543932173949],[126,142,77,-0.219087970755285],[126,142,78,-0.2300429520959027],[126,142,79,-0.22562070364419923],[126,143,64,-0.04108649302096554],[126,143,65,-0.04467143411888194],[126,143,66,-0.050152229962978565],[126,143,67,-0.058825350194719336],[126,143,68,-0.06447689297673806],[126,143,69,-0.07311171432970233],[126,143,70,-0.08412569869358337],[126,143,71,-0.08981355418707468],[126,143,72,-0.08888793764548009],[126,143,73,-0.11829721728774842],[126,143,74,-0.14357395442536053],[126,143,75,-0.15362462387003933],[126,143,76,-0.1947838805025831],[126,143,77,-0.21218971962519106],[126,143,78,-0.2191158477911027],[126,143,79,-0.21597775171312428],[126,144,64,-0.043084121925060254],[126,144,65,-0.045937394015761884],[126,144,66,-0.050891125210962174],[126,144,67,-0.05864341437220251],[126,144,68,-0.06425988165292686],[126,144,69,-0.07204634430387592],[126,144,70,-0.08218759251862964],[126,144,71,-0.08814534554621309],[126,144,72,-0.08811238073509506],[126,144,73,-0.12911853906276105],[126,144,74,-0.15076021227641334],[126,144,75,-0.16199471970725862],[126,144,76,-0.20623580968753746],[126,144,77,-0.21819044853269487],[126,144,78,-0.22804283978915535],[126,144,79,-0.22585316017208942],[126,145,64,-0.0546417043794405],[126,145,65,-0.0551986609471638],[126,145,66,-0.0543050480359359],[126,145,67,-0.05620490853004507],[126,145,68,-0.06329824672463434],[126,145,69,-0.07282376531808561],[126,145,70,-0.08338493180065787],[126,145,71,-0.09075862465973586],[126,145,72,-0.08884849610477133],[126,145,73,-0.10681429290290802],[126,145,74,-0.09721205775670495],[126,145,75,-0.10123676526319547],[126,145,76,-0.14147628751127292],[126,145,77,-0.1801017213618307],[126,145,78,-0.19753683404031708],[126,145,79,-0.19642297844459256],[126,146,64,-0.06229245612482809],[126,146,65,-0.0625831527958608],[126,146,66,-0.06230285622850881],[126,146,67,-0.06304925461793678],[126,146,68,-0.07092026602521949],[126,146,69,-0.07850330747719059],[126,146,70,-0.08943578248059791],[126,146,71,-0.09568240138528367],[126,146,72,-0.0947966437430907],[126,146,73,-0.10000077464767466],[126,146,74,-0.09456128398852832],[126,146,75,-0.09581246461897468],[126,146,76,-0.1331760083043214],[126,146,77,-0.17509265340966843],[126,146,78,-0.18868776365564044],[126,146,79,-0.1935032809989391],[126,147,64,-0.06420510419984714],[126,147,65,-0.06364567247354112],[126,147,66,-0.06330374733346013],[126,147,67,-0.06523705098343656],[126,147,68,-0.07159668108633938],[126,147,69,-0.08084074727139312],[126,147,70,-0.08883273711147355],[126,147,71,-0.09337193061810259],[126,147,72,-0.09409073131497873],[126,147,73,-0.08681743330029151],[126,147,74,-0.09337333159938248],[126,147,75,-0.08398242668150493],[126,147,76,-0.06983428310188247],[126,147,77,-0.04156571651506309],[126,147,78,-0.050557287204574794],[126,147,79,-0.06962805521027102],[126,148,64,-0.03438994703091823],[126,148,65,-0.03465702127459941],[126,148,66,-0.03931356054481755],[126,148,67,-0.046257939539384854],[126,148,68,-0.05301086146703285],[126,148,69,-0.06400925252446593],[126,148,70,-0.07469354330780903],[126,148,71,-0.07973935409275065],[126,148,72,-0.08510067454515782],[126,148,73,-0.08728441466530695],[126,148,74,-0.0706029485263362],[126,148,75,-0.04804789519014781],[126,148,76,-0.040033208256691745],[126,148,77,-0.01673626693976188],[126,148,78,-0.038780732481460495],[126,148,79,-0.05940615350696479],[126,149,64,-0.0338029544669972],[126,149,65,-0.03526263610009073],[126,149,66,-0.04004869862751054],[126,149,67,-0.047539647025296825],[126,149,68,-0.05333739205783046],[126,149,69,-0.06244800484429311],[126,149,70,-0.07159542056886233],[126,149,71,-0.0786928639969802],[126,149,72,-0.0840620523712122],[126,149,73,-0.08827596699048532],[126,149,74,-0.06433872374557048],[126,149,75,-0.04230607431015697],[126,149,76,-0.0324987112642366],[126,149,77,-0.005072399610469333],[126,149,78,-0.028068084849430477],[126,149,79,-0.051949730481145345],[126,150,64,-0.03285609834481652],[126,150,65,-0.03874575758673726],[126,150,66,-0.042387702028307425],[126,150,67,-0.04795688929113526],[126,150,68,-0.05345009926443642],[126,150,69,-0.06237250528630708],[126,150,70,-0.07020678384195365],[126,150,71,-0.07776553160555588],[126,150,72,-0.0832878731421823],[126,150,73,-0.08411603641286886],[126,150,74,-0.05735743203008381],[126,150,75,-0.03429956494160949],[126,150,76,-0.018770108531315305],[126,150,77,-0.003956126950501848],[126,150,78,-0.020256173179501555],[126,150,79,-0.051545157081893375],[126,151,64,-0.03089024554586342],[126,151,65,-0.03899015149308038],[126,151,66,-0.04441686058051751],[126,151,67,-0.04762442958944492],[126,151,68,-0.05565034522168834],[126,151,69,-0.06290153443626054],[126,151,70,-0.07055723780673293],[126,151,71,-0.07560217412307463],[126,151,72,-0.08013045487479947],[126,151,73,-0.08385470290617486],[126,151,74,-0.06045491872266068],[126,151,75,-0.03473556329861904],[126,151,76,-0.012384511883114471],[126,151,77,0.005706561058584345],[126,151,78,-0.01851919626815776],[126,151,79,-0.044463168372547476],[126,152,64,-0.03145311849507128],[126,152,65,-0.04035837467924519],[126,152,66,-0.04641592017044516],[126,152,67,-0.05083023938613439],[126,152,68,-0.05653975316470497],[126,152,69,-0.062496838766272954],[126,152,70,-0.06956610146030048],[126,152,71,-0.07320534220882546],[126,152,72,-0.07940367581956392],[126,152,73,-0.07441580163797402],[126,152,74,-0.0550552004158346],[126,152,75,-0.02763889367840667],[126,152,76,-0.009485866120834824],[126,152,77,0.00787575151930657],[126,152,78,-0.014189230722992302],[126,152,79,-0.03361740141191971],[126,153,64,-0.03716724478119082],[126,153,65,-0.042485714700060434],[126,153,66,-0.04306184579475589],[126,153,67,-0.044129915411901754],[126,153,68,-0.05014207986264482],[126,153,69,-0.05552777061212669],[126,153,70,-0.060649044106138306],[126,153,71,-0.06298518333347716],[126,153,72,-0.07119144491724518],[126,153,73,-0.04707480005347284],[126,153,74,-0.011923585540668066],[126,153,75,0.01822896482833708],[126,153,76,0.026420534765241033],[126,153,77,0.016070669155990702],[126,153,78,0.0025905215219415717],[126,153,79,-0.016772606897950584],[126,154,64,-0.042250076816743726],[126,154,65,-0.04883166161623648],[126,154,66,-0.049418280911630086],[126,154,67,-0.049433729746302724],[126,154,68,-0.05586780249759392],[126,154,69,-0.060326317349797584],[126,154,70,-0.06347274728203503],[126,154,71,-0.06715142634169455],[126,154,72,-0.07681536150166021],[126,154,73,-0.06645631909392657],[126,154,74,-0.024058151529359556],[126,154,75,0.006475036156682684],[126,154,76,0.02980751833459022],[126,154,77,0.01750772741770401],[126,154,78,0.0038252659593513705],[126,154,79,-0.01269132799417022],[126,155,64,-0.04064343524202024],[126,155,65,-0.04841478789352399],[126,155,66,-0.05005079414855167],[126,155,67,-0.050057879352389034],[126,155,68,-0.054518389338498854],[126,155,69,-0.05808252379809735],[126,155,70,-0.06136779104119819],[126,155,71,-0.06484702608875659],[126,155,72,-0.07432622161188626],[126,155,73,-0.051374722833327106],[126,155,74,-0.021880481873357602],[126,155,75,0.0033248870162552596],[126,155,76,0.019105566254753015],[126,155,77,0.00717511249875924],[126,155,78,-0.006249768172774076],[126,155,79,-0.019111735713558856],[126,156,64,-0.031112017469080044],[126,156,65,-0.040259804297165525],[126,156,66,-0.04424298949972888],[126,156,67,-0.04698021682963517],[126,156,68,-0.05022020963056863],[126,156,69,-0.055249136081229805],[126,156,70,-0.0589334114204846],[126,156,71,-0.06349184473258654],[126,156,72,-0.06143142757590885],[126,156,73,-0.016914718730487055],[126,156,74,-0.013861262326970172],[126,156,75,0.004458616695637768],[126,156,76,0.01868418722693936],[126,156,77,0.006178837595851458],[126,156,78,-0.006689035761078738],[126,156,79,-0.017551402341972333],[126,157,64,-0.023484585941550465],[126,157,65,-0.037801007328418346],[126,157,66,-0.047613233677185146],[126,157,67,-0.05548730720313132],[126,157,68,-0.059798847380344376],[126,157,69,-0.06448112984812193],[126,157,70,-0.06811208606808744],[126,157,71,-0.07505570265992823],[126,157,72,-0.05418441881826602],[126,157,73,-8.223083372535522E-4],[126,157,74,-7.130319576369587E-4],[126,157,75,0.02070350516759166],[126,157,76,0.02516044577727207],[126,157,77,0.007997410384082984],[126,157,78,-0.004162080563341677],[126,157,79,-0.014011386592909708],[126,158,64,-0.026130373826083256],[126,158,65,-0.03945809530375434],[126,158,66,-0.05003489280568919],[126,158,67,-0.05871399063461037],[126,158,68,-0.06094691709562407],[126,158,69,-0.06454535727427596],[126,158,70,-0.0671247129129674],[126,158,71,-0.075104344589755],[126,158,72,-0.045997801713078615],[126,158,73,0.010089770194016578],[126,158,74,0.009220196769693503],[126,158,75,0.030543974717375244],[126,158,76,0.026241780154115074],[126,158,77,0.01131477443350122],[126,158,78,-0.002106798830522269],[126,158,79,-0.011078657816603499],[126,159,64,-0.0675851860262302],[126,159,65,-0.07285558767053099],[126,159,66,-0.07977011370810502],[126,159,67,-0.08195991098743968],[126,159,68,-0.07719166217483439],[126,159,69,-0.07300420905924218],[126,159,70,-0.07229965767439109],[126,159,71,-0.07073362134778167],[126,159,72,-0.03978151610216769],[126,159,73,0.013685768941853221],[126,159,74,0.021165286243755285],[126,159,75,0.0374825693515788],[126,159,76,0.03127055843745234],[126,159,77,0.018989813152930968],[126,159,78,0.0043552528614597685],[126,159,79,-0.0059477940606416785],[126,160,64,-0.06810448915411088],[126,160,65,-0.07136373001554687],[126,160,66,-0.07796169819153233],[126,160,67,-0.07991873973909018],[126,160,68,-0.07646360155846935],[126,160,69,-0.06972626528430947],[126,160,70,-0.07052224095312228],[126,160,71,-0.06894236791872249],[126,160,72,-0.03568322121172532],[126,160,73,0.014642507774627167],[126,160,74,0.03335963088705543],[126,160,75,0.03893861952975104],[126,160,76,0.030332183697052775],[126,160,77,0.019936168176367786],[126,160,78,0.005644625080693355],[126,160,79,-0.0032149158198001293],[126,161,64,-0.06720992429636466],[126,161,65,-0.07096249361751503],[126,161,66,-0.0745322643077117],[126,161,67,-0.07686139113133765],[126,161,68,-0.07256042762853673],[126,161,69,-0.0685115102424714],[126,161,70,-0.07114330320443227],[126,161,71,-0.06827691621611083],[126,161,72,-0.022583438907639336],[126,161,73,0.04300491775331976],[126,161,74,0.05657791477357635],[126,161,75,0.04794338821541354],[126,161,76,0.03769565538919892],[126,161,77,0.02773620742672983],[126,161,78,0.014021556875089464],[126,161,79,0.006872217614460732],[126,162,64,-0.07296802724642881],[126,162,65,-0.0753806117389017],[126,162,66,-0.07799425147366246],[126,162,67,-0.07854501463199248],[126,162,68,-0.07486548113334024],[126,162,69,-0.07338489223225773],[126,162,70,-0.0732932447065621],[126,162,71,-0.07121768539123678],[126,162,72,-0.047845434075665945],[126,162,73,0.03113781906286972],[126,162,74,0.06556930516048026],[126,162,75,0.05660678238395728],[126,162,76,0.044407921015842455],[126,162,77,0.0365141506569516],[126,162,78,0.024919553216629267],[126,162,79,0.014049703741788946],[126,163,64,-0.072981460456057],[126,163,65,-0.0735365182727478],[126,163,66,-0.07444297504929219],[126,163,67,-0.07543942650153543],[126,163,68,-0.07033984856274952],[126,163,69,-0.07064811974830175],[126,163,70,-0.06839277825281519],[126,163,71,-0.06442373980810441],[126,163,72,-0.06375648614669893],[126,163,73,0.008101806247004434],[126,163,74,0.05372069921950716],[126,163,75,0.04865523486915384],[126,163,76,0.03736703270445732],[126,163,77,0.029348777516611024],[126,163,78,0.01921604218738482],[126,163,79,0.009940923916976735],[126,164,64,-0.07051089279825709],[126,164,65,-0.06838785036973102],[126,164,66,-0.06229032001509256],[126,164,67,-0.05684611639844574],[126,164,68,-0.04789521024837751],[126,164,69,-0.04349301285685378],[126,164,70,-0.03406071240727346],[126,164,71,-0.02740611063672027],[126,164,72,-0.025714186054174318],[126,164,73,0.024649349706091263],[126,164,74,0.05056459697569729],[126,164,75,0.049508948045183854],[126,164,76,0.03856211414359795],[126,164,77,0.03270493755274248],[126,164,78,0.02244491359258549],[126,164,79,0.013777186938539687],[126,165,64,-0.0749691828377073],[126,165,65,-0.06636415643452667],[126,165,66,-0.05637341356909217],[126,165,67,-0.04644613967093279],[126,165,68,-0.035393885378492376],[126,165,69,-0.027927111057167275],[126,165,70,-0.017879060845214692],[126,165,71,-0.012611775437648465],[126,165,72,-0.01022626178800734],[126,165,73,0.03225036832782788],[126,165,74,0.0558551281858124],[126,165,75,0.05786819088224618],[126,165,76,0.04951213847476127],[126,165,77,0.04348830518356259],[126,165,78,0.032994910373259634],[126,165,79,0.023489665545152333],[126,166,64,-0.07411352140165191],[126,166,65,-0.06431304969444729],[126,166,66,-0.05529077368440463],[126,166,67,-0.04424640245359504],[126,166,68,-0.03562938857435563],[126,166,69,-0.025091930511973504],[126,166,70,-0.014510915575384059],[126,166,71,-0.005162786076208417],[126,166,72,-0.004310242641281534],[126,166,73,0.01563593610950509],[126,166,74,0.024985922322655927],[126,166,75,0.027592496337527028],[126,166,76,0.02540927292728072],[126,166,77,0.027827269670964203],[126,166,78,0.021391712812951102],[126,166,79,0.018557523370011514],[126,167,64,-0.06892011859840066],[126,167,65,-0.06202273370942473],[126,167,66,-0.05137214233540821],[126,167,67,-0.040886220735143544],[126,167,68,-0.03288900350319296],[126,167,69,-0.022740119453611984],[126,167,70,-0.011781242689760066],[126,167,71,-5.790238614654386E-4],[126,167,72,3.9961680107748754E-4],[126,167,73,0.01771393518465303],[126,167,74,0.02827095885348465],[126,167,75,0.03119151014530025],[126,167,76,0.02853343051817428],[126,167,77,0.03091331030172298],[126,167,78,0.028926981845895955],[126,167,79,0.024661671383417502],[126,168,64,-0.07041313228976642],[126,168,65,-0.06310321264839792],[126,168,66,-0.05012067871767008],[126,168,67,-0.041105452591777],[126,168,68,-0.030770271704668048],[126,168,69,-0.019569212130952862],[126,168,70,-0.00853481020433261],[126,168,71,0.0016476892684288424],[126,168,72,0.0062625091986942966],[126,168,73,0.020645912678787435],[126,168,74,0.02727549157438756],[126,168,75,0.031020721001285084],[126,168,76,0.028177006970048796],[126,168,77,0.029394447485078037],[126,168,78,0.028038943394143423],[126,168,79,0.02694350267629156],[126,169,64,-0.06167220422224334],[126,169,65,-0.06145703372829242],[126,169,66,-0.05523857910246904],[126,169,67,-0.05038951066917581],[126,169,68,-0.03812426824838028],[126,169,69,-0.026721378886549726],[126,169,70,-0.012438260105679236],[126,169,71,-0.006296609229608646],[126,169,72,-2.8542969830569476E-4],[126,169,73,0.022636075171481737],[126,169,74,0.03798666893398381],[126,169,75,0.0367178452621848],[126,169,76,0.03400929653388318],[126,169,77,0.03502696658788723],[126,169,78,0.03409108899951063],[126,169,79,0.03422445164612803],[126,170,64,-0.06956561244159365],[126,170,65,-0.06922793799511022],[126,170,66,-0.06115293735847531],[126,170,67,-0.05402377034769655],[126,170,68,-0.04261201611650854],[126,170,69,-0.02735405815003418],[126,170,70,-0.015584370502459047],[126,170,71,-0.0078950865188325],[126,170,72,-0.004319603064922531],[126,170,73,0.010206375963581477],[126,170,74,0.023397855202993405],[126,170,75,0.028384704034937647],[126,170,76,0.027138657421812498],[126,170,77,0.026138460735388974],[126,170,78,0.026253570330651954],[126,170,79,0.02988901510863698],[126,171,64,-0.0683330312825783],[126,171,65,-0.06848799854975843],[126,171,66,-0.060175064084888985],[126,171,67,-0.04934915322627477],[126,171,68,-0.039853415902779216],[126,171,69,-0.025927363047499777],[126,171,70,-0.014339228093220524],[126,171,71,-0.0059436589463544715],[126,171,72,-0.0024820244841833178],[126,171,73,0.006872267148342018],[126,171,74,0.012047859881453989],[126,171,75,0.016188372448760223],[126,171,76,0.016524365831578958],[126,171,77,0.014986377186313654],[126,171,78,0.015315142708313481],[126,171,79,0.01979895128538245],[126,172,64,-0.06204627688268445],[126,172,65,-0.058303887336648555],[126,172,66,-0.04957023728012351],[126,172,67,-0.036488560432104286],[126,172,68,-0.028859533447287464],[126,172,69,-0.017608820207899945],[126,172,70,-0.00861747978415564],[126,172,71,7.920372195210912E-5],[126,172,72,0.006083446615941027],[126,172,73,0.0060403976519607565],[126,172,74,0.0010802645137165615],[126,172,75,-0.0013756667787752398],[126,172,76,-0.005419052337762881],[126,172,77,-0.0063850341402059],[126,172,78,-0.005161166613986412],[126,172,79,6.105050101821441E-4],[126,173,64,-0.06412461440786413],[126,173,65,-0.05699494599587224],[126,173,66,-0.04772192731217642],[126,173,67,-0.033161472830150834],[126,173,68,-0.023345651529993086],[126,173,69,-0.011655223094458614],[126,173,70,-0.004223792806528834],[126,173,71,0.003016847239911788],[126,173,72,0.009685332218244191],[126,173,73,0.009938624876798825],[126,173,74,0.00439570624485385],[126,173,75,-0.001757671500502784],[126,173,76,-0.00828871796314401],[126,173,77,-0.005403061858082536],[126,173,78,-0.005667679233608017],[126,173,79,-4.2751751994996035E-4],[126,174,64,-0.0631654133139738],[126,174,65,-0.053150494442215465],[126,174,66,-0.043036862515906826],[126,174,67,-0.03142960730833626],[126,174,68,-0.020824184462260795],[126,174,69,-0.008517419568471574],[126,174,70,1.2322714429256754E-4],[126,174,71,0.00693902569429157],[126,174,72,0.014534652194247918],[126,174,73,0.019295127621663122],[126,174,74,0.015129929919054467],[126,174,75,0.00882742751427476],[126,174,76,0.0021027322201374182],[126,174,77,0.0021726153763335643],[126,174,78,0.0023001302603369855],[126,174,79,0.0028576891568983243],[126,175,64,-0.05634165833386709],[126,175,65,-0.043961544477663914],[126,175,66,-0.03634566077283509],[126,175,67,-0.02636231151468449],[126,175,68,-0.015237985802098411],[126,175,69,-0.005391902058282938],[126,175,70,0.005212253813142553],[126,175,71,0.010177516870591888],[126,175,72,0.016836510377100905],[126,175,73,0.02352851863218619],[126,175,74,0.021776522447175123],[126,175,75,0.015307372115131829],[126,175,76,0.005388300092268438],[126,175,77,0.00557161534738812],[126,175,78,0.00464139388107894],[126,175,79,0.0070632082163805815],[126,176,64,-0.053591455409839506],[126,176,65,-0.04173206969677802],[126,176,66,-0.03213027419661321],[126,176,67,-0.022800847290492574],[126,176,68,-0.010958539489624886],[126,176,69,-0.0017349770834252654],[126,176,70,0.006939754055925201],[126,176,71,0.01285983755000937],[126,176,72,0.02146786552506258],[126,176,73,0.02826945740720105],[126,176,74,0.026347676948196747],[126,176,75,0.018460163891233398],[126,176,76,0.0037386140579835393],[126,176,77,0.002228514845118032],[126,176,78,0.0038855590622186853],[126,176,79,0.006131482247836273],[126,177,64,-0.060937050452877325],[126,177,65,-0.04271949536508955],[126,177,66,-0.026244711421838443],[126,177,67,-0.010890481918837291],[126,177,68,0.0039572182722723975],[126,177,69,0.013832661147135522],[126,177,70,0.019380476209618303],[126,177,71,0.026445127638792865],[126,177,72,0.03297949922648699],[126,177,73,0.03894109723292648],[126,177,74,0.0012851890794162851],[126,177,75,-0.04906147873386453],[126,177,76,-0.08241447294032297],[126,177,77,-0.08028438849883376],[126,177,78,-0.07390270641265995],[126,177,79,-0.06530314225606365],[126,178,64,-0.06794917328317092],[126,178,65,-0.049551835120504234],[126,178,66,-0.029444384573514906],[126,178,67,-0.013738611713214277],[126,178,68,0.0011875274683556258],[126,178,69,0.012120677765269289],[126,178,70,0.01670395633515176],[126,178,71,0.023508555426154515],[126,178,72,0.031029340556349122],[126,178,73,0.035471666409956026],[126,178,74,-0.008363443679801165],[126,178,75,-0.06168273313874913],[126,178,76,-0.08207338226981833],[126,178,77,-0.08054776699135362],[126,178,78,-0.07608248126713388],[126,178,79,-0.06619061340573248],[126,179,64,-0.06958637445444907],[126,179,65,-0.05118021277142011],[126,179,66,-0.028721041159394542],[126,179,67,-0.00942494347390438],[126,179,68,0.004469520045266559],[126,179,69,0.013399392415702371],[126,179,70,0.017517527683194714],[126,179,71,0.024080200112610695],[126,179,72,0.031372817784490414],[126,179,73,0.03659358538846712],[126,179,74,-0.010161114038815186],[126,179,75,-0.07529976597044714],[126,179,76,-0.09190331650563102],[126,179,77,-0.0890902781116265],[126,179,78,-0.08622179655332834],[126,179,79,-0.08020891366345745],[126,180,64,-0.06427479567353427],[126,180,65,-0.043514260945102815],[126,180,66,-0.02182835857138117],[126,180,67,-2.88711214101664E-4],[126,180,68,0.015469153942457348],[126,180,69,0.024417466722596273],[126,180,70,0.03075902663276324],[126,180,71,0.040109498033372645],[126,180,72,0.04651649552996391],[126,180,73,0.051813822005769394],[126,180,74,0.005649307010645976],[126,180,75,-0.07064900213003858],[126,180,76,-0.08140978010149133],[126,180,77,-0.07662258731923684],[126,180,78,-0.07692524800042143],[126,180,79,-0.07196273115641168],[126,181,64,-0.0546290638932239],[126,181,65,-0.041432772245707],[126,181,66,-0.025764975232386245],[126,181,67,-0.010626290628574703],[126,181,68,8.855803543622587E-4],[126,181,69,0.010889828809837646],[126,181,70,0.020988613864714567],[126,181,71,0.03267892843610393],[126,181,72,0.0375716001583314],[126,181,73,0.04312474014682624],[126,181,74,0.0423390083424921],[126,181,75,0.03770735268391972],[126,181,76,0.027131979983428582],[126,181,77,0.005197791563419797],[126,181,78,-0.0047633658136765],[126,181,79,-0.002757216932939878],[126,182,64,-0.05306257013467916],[126,182,65,-0.04073949556013011],[126,182,66,-0.024661195221540477],[126,182,67,-0.012253515363742473],[126,182,68,-0.003026627017781558],[126,182,69,0.0101640218652463],[126,182,70,0.02028213634172732],[126,182,71,0.03103823492820229],[126,182,72,0.038940324544936594],[126,182,73,0.04291510151195768],[126,182,74,0.04350850246668678],[126,182,75,0.04259217456565271],[126,182,76,0.02606405209360299],[126,182,77,0.005515948081995181],[126,182,78,0.0032535761330031374],[126,182,79,-0.003884773276789079],[126,183,64,-0.05009500992708968],[126,183,65,-0.03640184958950442],[126,183,66,-0.02363786429686568],[126,183,67,-0.012252275430472678],[126,183,68,-0.0028480306945401906],[126,183,69,0.008847036287162269],[126,183,70,0.02025519332585271],[126,183,71,0.029412464486371137],[126,183,72,0.03806254332429623],[126,183,73,0.04127537466650358],[126,183,74,0.04328697604685047],[126,183,75,0.03643668340233785],[126,183,76,0.025477945930958663],[126,183,77,0.011268185758337317],[126,183,78,0.011443935446745455],[126,183,79,-0.0014044734214248983],[126,184,64,-0.04904989350806152],[126,184,65,-0.037196798328639966],[126,184,66,-0.023639722037484087],[126,184,67,-0.016102983388619208],[126,184,68,-0.004202821991005426],[126,184,69,0.008334350226933518],[126,184,70,0.020121351564593812],[126,184,71,0.03053840510535405],[126,184,72,0.03600576035204758],[126,184,73,0.04339956573972675],[126,184,74,0.04323442728721194],[126,184,75,0.03218523523104263],[126,184,76,0.032926371481900175],[126,184,77,0.025079337562634207],[126,184,78,0.019549263070884303],[126,184,79,0.012471828643291279],[126,185,64,-0.04719569953836808],[126,185,65,-0.03769741001639795],[126,185,66,-0.02461956627389085],[126,185,67,-0.017039834536826504],[126,185,68,-0.005742263575240075],[126,185,69,0.006061140750617741],[126,185,70,0.01659840788943029],[126,185,71,0.02850185636627746],[126,185,72,0.03698424861925226],[126,185,73,0.04357816650859017],[126,185,74,0.04614547251702791],[126,185,75,0.03593907205680454],[126,185,76,0.03427819239340755],[126,185,77,0.03830188795309469],[126,185,78,0.024210403554337605],[126,185,79,0.022118562531495543],[126,186,64,-0.053493595363596616],[126,186,65,-0.04380763890796682],[126,186,66,-0.030952382011403934],[126,186,67,-0.02287779646792376],[126,186,68,-0.009388068705065533],[126,186,69,2.493838210947119E-4],[126,186,70,0.009865304042254691],[126,186,71,0.019374724859049286],[126,186,72,0.03109154515557863],[126,186,73,0.03710925541449632],[126,186,74,0.041929303439841345],[126,186,75,0.04206860652735492],[126,186,76,0.03805199609426748],[126,186,77,0.03861308837390557],[126,186,78,0.012702431144248905],[126,186,79,0.003917878911700451],[126,187,64,-0.054067370061704256],[126,187,65,-0.0412469957616384],[126,187,66,-0.027728585597747407],[126,187,67,-0.0202730775721542],[126,187,68,-0.007544184961897002],[126,187,69,0.00231158387333108],[126,187,70,0.009603772114472608],[126,187,71,0.0184361690776772],[126,187,72,0.030931592826740184],[126,187,73,0.037216408627158026],[126,187,74,0.041710472998782167],[126,187,75,0.04401979146549467],[126,187,76,0.04039437347876285],[126,187,77,0.042141286030068933],[126,187,78,0.020438039452202416],[126,187,79,0.006432344885212493],[126,188,64,-0.035027984608476295],[126,188,65,-0.021039007013239713],[126,188,66,-0.007146233445484887],[126,188,67,4.19543326921068E-4],[126,188,68,0.011139264654340827],[126,188,69,0.022098870077824823],[126,188,70,0.026631374305204764],[126,188,71,0.035603485698788545],[126,188,72,0.046332400739304835],[126,188,73,0.0550683918913121],[126,188,74,0.06043078850266018],[126,188,75,0.06315830579860332],[126,188,76,0.06320019226049117],[126,188,77,0.06249830666563992],[126,188,78,0.05122876576693118],[126,188,79,0.03238980109988565],[126,189,64,-0.027755135345865017],[126,189,65,-0.017693132176674883],[126,189,66,-0.01042501706565721],[126,189,67,-0.0053773671173273085],[126,189,68,0.004895499106392559],[126,189,69,0.017120060031610762],[126,189,70,0.02311141528376366],[126,189,71,0.03562770485696104],[126,189,72,0.050895792852159394],[126,189,73,0.06251237274373622],[126,189,74,0.07208088115344422],[126,189,75,0.07199951447578064],[126,189,76,0.05464811825100146],[126,189,77,0.05013312251696072],[126,189,78,0.03661937570707253],[126,189,79,0.015964979942174204],[126,190,64,-0.026285499136313492],[126,190,65,-0.01651509943190413],[126,190,66,-0.011207837589204614],[126,190,67,-0.006400580332990291],[126,190,68,0.005987549003633366],[126,190,69,0.01780476828376258],[126,190,70,0.021916810219460542],[126,190,71,0.034426140844969186],[126,190,72,0.050921247945133],[126,190,73,0.06405745599379786],[126,190,74,0.07292090058465968],[126,190,75,0.0800937641423718],[126,190,76,0.06501421450333107],[126,190,77,0.056693990872625055],[126,190,78,0.03346762065407308],[126,190,79,0.013571740924762737],[126,191,64,-0.024759094456725042],[126,191,65,-0.01427303817984242],[126,191,66,-0.009585299298117009],[126,191,67,-0.004137537842305319],[126,191,68,0.008942116483128731],[126,191,69,0.01764740507069043],[126,191,70,0.022942995780807482],[126,191,71,0.03465101639368359],[126,191,72,0.051765085339992856],[126,191,73,0.06403852459214752],[126,191,74,0.07555430332124517],[126,191,75,0.0799220173445906],[126,191,76,0.07547342225032493],[126,191,77,0.062565923805079],[126,191,78,0.04109606664956311],[126,191,79,0.015388819352617295],[126,192,64,-0.026382589059246342],[126,192,65,-0.014955543392749432],[126,192,66,-0.007832498515048164],[126,192,67,-0.0030007274598665146],[126,192,68,0.007523991246876555],[126,192,69,0.01481463299892552],[126,192,70,0.023821721123224948],[126,192,71,0.036453817518137255],[126,192,72,0.05384514370755519],[126,192,73,0.0664666255520242],[126,192,74,0.07503425381310655],[126,192,75,0.08213050477399472],[126,192,76,0.08376619996577588],[126,192,77,0.06930615758897277],[126,192,78,0.048042766630626677],[126,192,79,0.012763187986402816],[126,193,64,-0.03690542157545547],[126,193,65,-0.018872418949875236],[126,193,66,-0.002001641063270415],[126,193,67,0.007351701188611448],[126,193,68,0.017246927481399332],[126,193,69,0.026168363451508553],[126,193,70,0.03329933072435867],[126,193,71,0.03870245606141837],[126,193,72,0.048315429624003536],[126,193,73,0.05477060240779494],[126,193,74,0.062307445027713876],[126,193,75,0.07012604347934748],[126,193,76,0.07898522668026792],[126,193,77,0.08200746178021204],[126,193,78,0.08258987545998943],[126,193,79,0.053451224798109015],[126,194,64,-0.041928863168258224],[126,194,65,-0.023283846019929166],[126,194,66,-0.006664624792277307],[126,194,67,0.005369114653304252],[126,194,68,0.014090365869815297],[126,194,69,0.02154624949661868],[126,194,70,0.02936050676505475],[126,194,71,0.03479394239549946],[126,194,72,0.0426106204060448],[126,194,73,0.047642793466612876],[126,194,74,0.05430008231302841],[126,194,75,0.06411273568085571],[126,194,76,0.07122309893877482],[126,194,77,0.07615494083392071],[126,194,78,0.07977407996945143],[126,194,79,0.06487731617783632],[126,195,64,-0.04054658473090933],[126,195,65,-0.0208258465501219],[126,195,66,-0.004232620205699367],[126,195,67,0.008524413561481203],[126,195,68,0.01746093923255898],[126,195,69,0.022903406079128802],[126,195,70,0.03082281030839326],[126,195,71,0.03527981172282796],[126,195,72,0.04205238967780789],[126,195,73,0.046497620595634365],[126,195,74,0.05122349544951224],[126,195,75,0.06281706742153698],[126,195,76,0.06973083450013781],[126,195,77,0.07563229018569956],[126,195,78,0.07922794918551582],[126,195,79,0.06492397530367855],[126,196,64,-0.039336867490587804],[126,196,65,-0.027947454659636037],[126,196,66,-0.018342893161156282],[126,196,67,-0.011816294163065719],[126,196,68,-0.007511131288760048],[126,196,69,-0.008961789168190237],[126,196,70,-0.00544822589343473],[126,196,71,-0.0024363936581216356],[126,196,72,0.0030703575607401723],[126,196,73,0.006276121006909996],[126,196,74,0.010057644084170925],[126,196,75,0.018702244133094334],[126,196,76,0.02592726864412101],[126,196,77,0.02957919776513321],[126,196,78,0.034063805383246715],[126,196,79,0.027318836923173998],[126,197,64,-0.03604445252901897],[126,197,65,-0.02813385020066861],[126,197,66,-0.016868561379237756],[126,197,67,-0.009000174724148949],[126,197,68,-0.007602699392777135],[126,197,69,-0.007368340521367492],[126,197,70,-0.004528868376123013],[126,197,71,-2.0416228172356887E-4],[126,197,72,0.0045860759086392006],[126,197,73,0.006466935666267992],[126,197,74,0.012166228362900391],[126,197,75,0.018041289419700374],[126,197,76,0.02349608163149554],[126,197,77,0.02548902846269599],[126,197,78,0.02235924947391247],[126,197,79,3.5381721153741885E-5],[126,198,64,-0.03604759401963595],[126,198,65,-0.030889472924842343],[126,198,66,-0.016477229279408895],[126,198,67,-0.008710493722116283],[126,198,68,-0.005154037040084283],[126,198,69,-0.004629904691039147],[126,198,70,-0.003184886129654327],[126,198,71,0.0017789836794390168],[126,198,72,0.0044479105431869115],[126,198,73,0.006230009899458114],[126,198,74,0.01275316897597513],[126,198,75,0.0175585464947821],[126,198,76,0.02102219621245191],[126,198,77,0.023364731513529635],[126,198,78,0.018717203607410478],[126,198,79,-0.002699323731334184],[126,199,64,-0.03760832129491376],[126,199,65,-0.031629972727126865],[126,199,66,-0.01940514800330427],[126,199,67,-0.010209179255730047],[126,199,68,-0.005151761231392021],[126,199,69,-0.0032598735619464164],[126,199,70,-0.0032246910003325274],[126,199,71,2.591140388907842E-5],[126,199,72,0.0031898969310338032],[126,199,73,0.005018608402223637],[126,199,74,0.012165488197919794],[126,199,75,0.01676295802721453],[126,199,76,0.01953894855262389],[126,199,77,0.02159711992478816],[126,199,78,0.021000973961274066],[126,199,79,-0.0035524590763406083],[126,200,64,-0.038626486028047385],[126,200,65,-0.03220109748283956],[126,200,66,-0.02033016812369766],[126,200,67,-0.013169228137653075],[126,200,68,-0.008967898850129968],[126,200,69,-0.004809723596926857],[126,200,70,-0.0018956614240330377],[126,200,71,-0.0013231897238369233],[126,200,72,0.0014325733966845527],[126,200,73,0.004740068762035837],[126,200,74,0.012229902025052669],[126,200,75,0.018915442742459918],[126,200,76,0.019953114459754256],[126,200,77,0.024456781983342918],[126,200,78,0.01715770071174815],[126,200,79,-0.0034223261697062177],[126,201,64,-0.029272231724976908],[126,201,65,-0.023335109870378096],[126,201,66,-0.013536525846984532],[126,201,67,-0.0069271901648162715],[126,201,68,-0.005128117520510525],[126,201,69,-2.491234679146137E-4],[126,201,70,0.002421235361404539],[126,201,71,-0.0015189516343459136],[126,201,72,-0.001823866494818846],[126,201,73,-0.002255862621821106],[126,201,74,0.00597099963577119],[126,201,75,0.01279660869385893],[126,201,76,0.01350225374709231],[126,201,77,0.017197354336648624],[126,201,78,-0.0035684096314012766],[126,201,79,-0.014547449941742958],[126,202,64,-0.03392023122464434],[126,202,65,-0.02988625789139701],[126,202,66,-0.019139175734531166],[126,202,67,-0.013721842525771966],[126,202,68,-0.012556509646648228],[126,202,69,-0.006697345460357634],[126,202,70,-0.003541996634524258],[126,202,71,-0.005454439962747859],[126,202,72,-0.007278744534104806],[126,202,73,-0.006834892460135092],[126,202,74,0.001997697878028143],[126,202,75,0.007913338403435055],[126,202,76,0.008009941844124957],[126,202,77,0.016054014874683775],[126,202,78,-0.008119011794503223],[126,202,79,-0.014978193985012808],[126,203,64,-0.03164048909312009],[126,203,65,-0.02943299843642634],[126,203,66,-0.021106258578997672],[126,203,67,-0.01661497638664275],[126,203,68,-0.01406795102467745],[126,203,69,-0.009861988468853111],[126,203,70,-0.006632178908500791],[126,203,71,-0.005562733447931484],[126,203,72,-0.008697709465634654],[126,203,73,-0.006446048757875314],[126,203,74,0.0032358492214727974],[126,203,75,0.008135394210643632],[126,203,76,0.011781044028803311],[126,203,77,0.017902258308197194],[126,203,78,-0.012160972292283745],[126,203,79,-0.019817009391865155],[126,204,64,-0.01963152475635807],[126,204,65,-0.014975726084453272],[126,204,66,-0.008000410424053556],[126,204,67,-5.914961853809575E-4],[126,204,68,0.0027522699137403905],[126,204,69,0.008751455251908402],[126,204,70,0.012952766175102284],[126,204,71,0.01455359367761594],[126,204,72,0.014310154413752052],[126,204,73,0.02044897962773619],[126,204,74,0.02578322643632827],[126,204,75,0.032109162961634685],[126,204,76,0.037949150770990925],[126,204,77,0.042633409521900784],[126,204,78,0.007201108216858272],[126,204,79,-0.0028662909902457748],[126,205,64,-0.0331427235338059],[126,205,65,-0.02642214599360697],[126,205,66,-0.022331334423869656],[126,205,67,-0.013675613397181707],[126,205,68,-0.010042312577354676],[126,205,69,-0.003155621904562561],[126,205,70,0.0024547950244831196],[126,205,71,0.008780225152782997],[126,205,72,0.01483796679427618],[126,205,73,0.029654775389154314],[126,205,74,0.03726822675494945],[126,205,75,0.04473128729656935],[126,205,76,0.05100906536267097],[126,205,77,0.0021049359106621035],[126,205,78,-0.029267000247711422],[126,205,79,-0.022666797667475674],[126,206,64,-0.034656220347397654],[126,206,65,-0.030996031502286234],[126,206,66,-0.025855987944338674],[126,206,67,-0.016947772369786132],[126,206,68,-0.013263679069537487],[126,206,69,-0.005048578458570138],[126,206,70,0.0011241280468773096],[126,206,71,0.0067029620739374185],[126,206,72,0.014511785774389802],[126,206,73,0.02758520470264869],[126,206,74,0.03898539555271063],[126,206,75,0.044051424240901776],[126,206,76,0.051964965832103346],[126,206,77,9.055953007268344E-4],[126,206,78,-0.033147555427558456],[126,206,79,-0.02675050426028619],[126,207,64,-0.03718342425155352],[126,207,65,-0.036918903938213316],[126,207,66,-0.030854924385254945],[126,207,67,-0.023591447223448053],[126,207,68,-0.01969636885113775],[126,207,69,-0.009877170692987533],[126,207,70,-0.005034018609366059],[126,207,71,0.0010195929733353981],[126,207,72,0.011611022862430431],[126,207,73,0.027518855099691555],[126,207,74,0.0366996885985357],[126,207,75,0.043795723098497885],[126,207,76,0.04935458215099951],[126,207,77,-0.004129522121740975],[126,207,78,-0.03483173312224069],[126,207,79,-0.027928672207014033],[126,208,64,-0.03961396033129996],[126,208,65,-0.03923977491981118],[126,208,66,-0.03277201725455753],[126,208,67,-0.029292747277253436],[126,208,68,-0.022069387428486256],[126,208,69,-0.013730589847656308],[126,208,70,-0.010441076180886869],[126,208,71,-0.002692813642890632],[126,208,72,0.010245758004043148],[126,208,73,0.024971996568564053],[126,208,74,0.03472058158487305],[126,208,75,0.04147956581047252],[126,208,76,0.02437167353041437],[126,208,77,-0.04118727484509618],[126,208,78,-0.05092324344257662],[126,208,79,-0.03777566040362938],[126,209,64,-0.03898183466212836],[126,209,65,-0.03814510821176548],[126,209,66,-0.035441465956685875],[126,209,67,-0.033636703976229934],[126,209,68,-0.02678209577409718],[126,209,69,-0.018094416437010458],[126,209,70,-0.012243625019602841],[126,209,71,-0.004234354046859484],[126,209,72,0.006594706759760427],[126,209,73,0.021006686993878643],[126,209,74,0.031474638479324746],[126,209,75,0.038259395546642774],[126,209,76,0.002350017051887851],[126,209,77,-0.05173618930865839],[126,209,78,-0.05616070038161694],[126,209,79,-0.04093550274703339],[126,210,64,-0.04149730929338574],[126,210,65,-0.040784992357734834],[126,210,66,-0.040771746449924665],[126,210,67,-0.04262894235955553],[126,210,68,-0.03710612698987273],[126,210,69,-0.02593572588079518],[126,210,70,-0.01943109322297401],[126,210,71,-0.010912246878471796],[126,210,72,2.81639329751851E-4],[126,210,73,0.013289290005613297],[126,210,74,0.023499262383755867],[126,210,75,0.02904434472433634],[126,210,76,-0.009629257936997093],[126,210,77,-0.06016326225854304],[126,210,78,-0.06279682409909514],[126,210,79,-0.04319067321861335],[126,211,64,-0.03793138755557872],[126,211,65,-0.0377472747625449],[126,211,66,-0.04208048107773682],[126,211,67,-0.043966197956569406],[126,211,68,-0.040981470638626505],[126,211,69,-0.030220887324961587],[126,211,70,-0.023081162947702932],[126,211,71,-0.012718200398121826],[126,211,72,-0.0020974724846086618],[126,211,73,0.010876918181671996],[126,211,74,0.01941795292030482],[126,211,75,0.026395360637940735],[126,211,76,-0.017963919451970296],[126,211,77,-0.07199424952720258],[126,211,78,-0.0738168207556816],[126,211,79,-0.05140920528338981],[126,212,64,-0.040428364671113395],[126,212,65,-0.04462740830127805],[126,212,66,-0.048575248443174096],[126,212,67,-0.05220148755839035],[126,212,68,-0.0487794229178411],[126,212,69,-0.038428426741344654],[126,212,70,-0.033347499499282215],[126,212,71,-0.02601389692307507],[126,212,72,-0.013408926012892161],[126,212,73,-0.002150815094033545],[126,212,74,0.009024642367115199],[126,212,75,0.01483655583556806],[126,212,76,-0.024904357341495223],[126,212,77,-0.07039065818247729],[126,212,78,-0.07836852086928613],[126,212,79,-0.056631608711856615],[126,213,64,-0.034241908503713184],[126,213,65,-0.04268197879282523],[126,213,66,-0.052763584564193916],[126,213,67,-0.05834482732734242],[126,213,68,-0.056863021390175794],[126,213,69,-0.049497234051865124],[126,213,70,-0.043550262357727396],[126,213,71,-0.03414162884554252],[126,213,72,-0.023662801564854022],[126,213,73,-0.009158605130187153],[126,213,74,0.002008071703195294],[126,213,75,0.009372591793147297],[126,213,76,-0.05841629512035387],[126,213,77,-0.10323604037352949],[126,213,78,-0.11305072459939008],[126,213,79,-0.09489126021664113],[126,214,64,-0.03829804498239356],[126,214,65,-0.0438738410480867],[126,214,66,-0.05484325895281905],[126,214,67,-0.05906452962757283],[126,214,68,-0.059515634550376006],[126,214,69,-0.05485839751068976],[126,214,70,-0.046927008787441785],[126,214,71,-0.03704941340009797],[126,214,72,-0.027297741635170222],[126,214,73,-0.012139544912772193],[126,214,74,-2.11835606060376E-4],[126,214,75,0.005445580474156761],[126,214,76,-0.0640699892728703],[126,214,77,-0.10922205766521079],[126,214,78,-0.11144330970981621],[126,214,79,-0.09473388557990461],[126,215,64,-0.045925067002837286],[126,215,65,-0.05007065648135392],[126,215,66,-0.06003602220712659],[126,215,67,-0.06368019465835931],[126,215,68,-0.06147827238863515],[126,215,69,-0.0576531603189757],[126,215,70,-0.05167295544522384],[126,215,71,-0.04068774227568818],[126,215,72,-0.029733203208061665],[126,215,73,-0.014575200998366816],[126,215,74,-0.0035598842896687882],[126,215,75,0.00177896635299786],[126,215,76,-0.04977256058279133],[126,215,77,-0.10056984192636903],[126,215,78,-0.10304283734435345],[126,215,79,-0.09450272444612848],[126,216,64,-0.05030901843523648],[126,216,65,-0.056237154401754905],[126,216,66,-0.06188111098548496],[126,216,67,-0.06476015928325254],[126,216,68,-0.06431180139736499],[126,216,69,-0.05963355680938877],[126,216,70,-0.05532152610327562],[126,216,71,-0.04297883185108117],[126,216,72,-0.03116567596126539],[126,216,73,-0.015654671000616127],[126,216,74,-0.004941451065790123],[126,216,75,6.904073618886203E-4],[126,216,76,-0.013611746212820429],[126,216,77,-0.08200985238964131],[126,216,78,-0.10865972248291729],[126,216,79,-0.09582773201367194],[126,217,64,-0.06231550509010057],[126,217,65,-0.06195629184742196],[126,217,66,-0.05792068516324024],[126,217,67,-0.054803637739498784],[126,217,68,-0.05461662876515397],[126,217,69,-0.04893523238238727],[126,217,70,-0.0465355911766448],[126,217,71,-0.03989285502576333],[126,217,72,-0.029477313462294152],[126,217,73,-0.017496712547766996],[126,217,74,-0.00900861715280557],[126,217,75,-4.716632481549521E-5],[126,217,76,-0.017421979453964228],[126,217,77,-0.07546794851270479],[126,217,78,-0.10639253517436545],[126,217,79,-0.09661569444786369],[126,218,64,-0.06986521243218616],[126,218,65,-0.06648998535922998],[126,218,66,-0.06291117515747277],[126,218,67,-0.0613766382498042],[126,218,68,-0.05859416020972999],[126,218,69,-0.054649809860784215],[126,218,70,-0.04993914379262088],[126,218,71,-0.045360745283984705],[126,218,72,-0.037845840188908506],[126,218,73,-0.02632361197935887],[126,218,74,-0.0158352980096184],[126,218,75,-0.008279315978056742],[126,218,76,-0.011118036546015394],[126,218,77,-0.07329446150826412],[126,218,78,-0.1111934773817414],[126,218,79,-0.09927685872438957],[126,219,64,-0.07200994084456411],[126,219,65,-0.06783093693242234],[126,219,66,-0.06525184909784223],[126,219,67,-0.06303797246595869],[126,219,68,-0.05854793256071042],[126,219,69,-0.05523288274143123],[126,219,70,-0.05249299288547302],[126,219,71,-0.0469659468000613],[126,219,72,-0.03850300497784921],[126,219,73,-0.02796132032013969],[126,219,74,-0.016207237615065206],[126,219,75,-0.010435810120132241],[126,219,76,-0.012092219213421353],[126,219,77,-0.08387321117615495],[126,219,78,-0.1198246249333289],[126,219,79,-0.10756133562658673],[126,220,64,-0.06418585546631514],[126,220,65,-0.060272877891103804],[126,220,66,-0.05495128086956928],[126,220,67,-0.05209965496818955],[126,220,68,-0.044450408809871944],[126,220,69,-0.03921159069762538],[126,220,70,-0.036256780296201024],[126,220,71,-0.028879377978227747],[126,220,72,-0.020443030699728734],[126,220,73,-0.010353797078069521],[126,220,74,-4.5843932373512697E-4],[126,220,75,0.0033286933095714732],[126,220,76,-0.0035456887446399903],[126,220,77,-0.07791314918950284],[126,220,78,-0.1197533392783271],[126,220,79,-0.1053741018160031],[126,221,64,-0.06646397104495572],[126,221,65,-0.061153620952203336],[126,221,66,-0.05696108172928796],[126,221,67,-0.054572293645128556],[126,221,68,-0.04584786381604522],[126,221,69,-0.03981900313473255],[126,221,70,-0.036707711728243844],[126,221,71,-0.0279587279224517],[126,221,72,-0.020582591550685245],[126,221,73,-0.011714278141146894],[126,221,74,-0.0034570300979460122],[126,221,75,0.0012209870641373272],[126,221,76,-0.029506299862819503],[126,221,77,-0.09686774926687132],[126,221,78,-0.12047425939621383],[126,221,79,-0.10363940528584659],[126,222,64,-0.06957153274490252],[126,222,65,-0.06253792662840585],[126,222,66,-0.059957058241615874],[126,222,67,-0.058624935597519245],[126,222,68,-0.04974817334166903],[126,222,69,-0.04365382833519155],[126,222,70,-0.03798483720718884],[126,222,71,-0.028876296428753515],[126,222,72,-0.01970231806358891],[126,222,73,-0.012487661848420428],[126,222,74,-0.004523947798290157],[126,222,75,-2.690467009375669E-4],[126,222,76,-0.030144099286767374],[126,222,77,-0.08517255619879793],[126,222,78,-0.11065211753484464],[126,222,79,-0.0958160025240024],[126,223,64,-0.07529302092660858],[126,223,65,-0.07089202588063742],[126,223,66,-0.06800455414209686],[126,223,67,-0.06543860799164126],[126,223,68,-0.056820534241667164],[126,223,69,-0.0495086917149298],[126,223,70,-0.042927191246133575],[126,223,71,-0.03158821536846028],[126,223,72,-0.02156911801810303],[126,223,73,-0.013751008632558126],[126,223,74,-0.006434947205164562],[126,223,75,-0.005689684267878548],[126,223,76,-0.053222239926405776],[126,223,77,-0.08069830155281481],[126,223,78,-0.1047616487176046],[126,223,79,-0.09225620100610908],[126,224,64,-0.07749279970542211],[126,224,65,-0.07563763865822815],[126,224,66,-0.07223623731097031],[126,224,67,-0.06758523650283083],[126,224,68,-0.0598892285227271],[126,224,69,-0.049856490910453216],[126,224,70,-0.041903119197442246],[126,224,71,-0.03236239591335076],[126,224,72,-0.019885560052716786],[126,224,73,-0.01338742930441629],[126,224,74,-0.0050653106232854544],[126,224,75,-0.013748550921698695],[126,224,76,-0.05303861108927428],[126,224,77,-0.08293694524138005],[126,224,78,-0.10088016122298042],[126,224,79,-0.09187611977371135],[126,225,64,-0.08541542247648942],[126,225,65,-0.07811585193855045],[126,225,66,-0.07183131754869837],[126,225,67,-0.06287238104926009],[126,225,68,-0.05511607260419363],[126,225,69,-0.04443429500989367],[126,225,70,-0.03353310742174041],[126,225,71,-0.023715944537712988],[126,225,72,-0.011160261330394244],[126,225,73,-0.0033354410009955315],[126,225,74,0.00570114608533108],[126,225,75,-0.003753866803776238],[126,225,76,-0.055821514674662134],[126,225,77,-0.08985118358598375],[126,225,78,-0.09320259135716662],[126,225,79,-0.09043834543502627],[126,226,64,-0.09303152362846778],[126,226,65,-0.08376456488419695],[126,226,66,-0.0775385649069881],[126,226,67,-0.06874421525950128],[126,226,68,-0.05764061966297385],[126,226,69,-0.050121635492991645],[126,226,70,-0.03636908114246434],[126,226,71,-0.027426470480698018],[126,226,72,-0.015059899579304661],[126,226,73,-0.00906969212934261],[126,226,74,0.00429694285676116],[126,226,75,0.003537174466331009],[126,226,76,-0.057402755236007255],[126,226,77,-0.08912058727316657],[126,226,78,-0.09516756466785525],[126,226,79,-0.09199198488795594],[126,227,64,-0.09444296509433214],[126,227,65,-0.08613687139368031],[126,227,66,-0.0802367223328069],[126,227,67,-0.06883144940153715],[126,227,68,-0.05721988977747619],[126,227,69,-0.04953005951280971],[126,227,70,-0.0375725561435411],[126,227,71,-0.02927014287983397],[126,227,72,-0.017935922754155884],[126,227,73,-0.0094761021058542],[126,227,74,0.001063214520139008],[126,227,75,-0.01016695448261189],[126,227,76,-0.07215576978663653],[126,227,77,-0.09496492905230336],[126,227,78,-0.10735588096428447],[126,227,79,-0.1044618908690802],[126,228,64,-0.08611861876066557],[126,228,65,-0.08118718093279326],[126,228,66,-0.0716184963841146],[126,228,67,-0.06019296798068961],[126,228,68,-0.048340451414847316],[126,228,69,-0.03836836770620042],[126,228,70,-0.027313879848591877],[126,228,71,-0.018563766496535433],[126,228,72,-0.009079903821020918],[126,228,73,7.969975917375416E-5],[126,228,74,0.009954866519486516],[126,228,75,-0.007223917371269553],[126,228,76,-0.07846114471797393],[126,228,77,-0.09876779003371149],[126,228,78,-0.1151372772084352],[126,228,79,-0.1112809296671632],[126,229,64,-0.07889245735447786],[126,229,65,-0.07864561884726248],[126,229,66,-0.07658112641441034],[126,229,67,-0.07024872247688355],[126,229,68,-0.060227717044196355],[126,229,69,-0.047320117716267984],[126,229,70,-0.03924602211650269],[126,229,71,-0.02976476255268619],[126,229,72,-0.02084894808325198],[126,229,73,-0.013720249093274031],[126,229,74,-0.0019256898644519072],[126,229,75,-0.04112139876254465],[126,229,76,-0.1132134632113449],[126,229,77,-0.13227447332296677],[126,229,78,-0.12906460944236697],[126,229,79,-0.1166452015999799],[126,230,64,-0.07880416992817477],[126,230,65,-0.07856994095371367],[126,230,66,-0.07603166046662158],[126,230,67,-0.0701375840779708],[126,230,68,-0.061036732100874874],[126,230,69,-0.04949980498217449],[126,230,70,-0.039841203469644704],[126,230,71,-0.030608607961896905],[126,230,72,-0.02453886229898014],[126,230,73,-0.015839036329047],[126,230,74,-0.006985873630510259],[126,230,75,-0.03748569555366047],[126,230,76,-0.10503793603457837],[126,230,77,-0.13386176741252864],[126,230,78,-0.12407113146102618],[126,230,79,-0.11339594917865678],[126,231,64,-0.08660023095988992],[126,231,65,-0.08601370561722524],[126,231,66,-0.08351216444187995],[126,231,67,-0.07602523484275153],[126,231,68,-0.06437428287732827],[126,231,69,-0.052884932881641145],[126,231,70,-0.04313547204671761],[126,231,71,-0.03461994672008446],[126,231,72,-0.02865876432329957],[126,231,73,-0.018858513165935384],[126,231,74,-0.009403019600470505],[126,231,75,-0.04002906183607064],[126,231,76,-0.10735812682862246],[126,231,77,-0.1328201844115704],[126,231,78,-0.12326021366952246],[126,231,79,-0.1117192877689288],[126,232,64,-0.08819251275338208],[126,232,65,-0.08856911608439674],[126,232,66,-0.08215990510442861],[126,232,67,-0.07408663686464617],[126,232,68,-0.06313907472259253],[126,232,69,-0.053047398807917964],[126,232,70,-0.04262665133687232],[126,232,71,-0.03578380079910631],[126,232,72,-0.03183342121280644],[126,232,73,-0.01917727827446121],[126,232,74,-0.009956696684649949],[126,232,75,-0.04834354564801519],[126,232,76,-0.11728080759648744],[126,232,77,-0.1358853398080257],[126,232,78,-0.1239132305797161],[126,232,79,-0.1143278114472301],[126,233,64,-0.09121318108385573],[126,233,65,-0.09080497067847992],[126,233,66,-0.0828205055841866],[126,233,67,-0.07032263938018332],[126,233,68,-0.06040118932679933],[126,233,69,-0.053144142699671285],[126,233,70,-0.043987592599692316],[126,233,71,-0.03466973473819093],[126,233,72,-0.03133807105364193],[126,233,73,-0.01961974999486915],[126,233,74,-0.008599924275517923],[126,233,75,-0.06151408155231151],[126,233,76,-0.12844926011524033],[126,233,77,-0.1397584774954473],[126,233,78,-0.12869772610103017],[126,233,79,-0.12036584244848034],[126,234,64,-0.09733249327841997],[126,234,65,-0.09473229482888124],[126,234,66,-0.08750874692508759],[126,234,67,-0.07406031031306473],[126,234,68,-0.06600121465633807],[126,234,69,-0.05534219810425922],[126,234,70,-0.04741533433824362],[126,234,71,-0.037857586461503834],[126,234,72,-0.03179301251870534],[126,234,73,-0.021125428846813912],[126,234,74,-0.011277126058654233],[126,234,75,-0.057838617797483345],[126,234,76,-0.13020361657193147],[126,234,77,-0.15166112139071997],[126,234,78,-0.13960732234661605],[126,234,79,-0.12984060413455237],[126,235,64,-0.09848310500428512],[126,235,65,-0.09637681942156026],[126,235,66,-0.08843765694518757],[126,235,67,-0.0757883060820761],[126,235,68,-0.06778452759841953],[126,235,69,-0.055294828642755145],[126,235,70,-0.04510469293445131],[126,235,71,-0.035125702271023046],[126,235,72,-0.02902272234719641],[126,235,73,-0.019964689013968015],[126,235,74,-0.010338460327786847],[126,235,75,-0.0877497572545395],[126,235,76,-0.15349616221801654],[126,235,77,-0.16102168643369796],[126,235,78,-0.14730297634630116],[126,235,79,-0.13857728460509133],[126,236,64,-0.08745813549673917],[126,236,65,-0.09227408462045728],[126,236,66,-0.0902729467903085],[126,236,67,-0.08117044891350791],[126,236,68,-0.07996203774105959],[126,236,69,-0.07317493544856579],[126,236,70,-0.06595353225930084],[126,236,71,-0.05594077503491102],[126,236,72,-0.04791519649740998],[126,236,73,-0.04075352233364485],[126,236,74,-0.03324480793180305],[126,236,75,-0.10161364080318773],[126,236,76,-0.15665120358028858],[126,236,77,-0.16939685221575526],[126,236,78,-0.15623508769950412],[126,236,79,-0.14742534479833702],[126,237,64,-0.09527579717506268],[126,237,65,-0.09589722803939371],[126,237,66,-0.0843960900921556],[126,237,67,-0.07290740713145408],[126,237,68,-0.0688325507168869],[126,237,69,-0.06608650930140023],[126,237,70,-0.055301753770474416],[126,237,71,-0.04521297863302473],[126,237,72,-0.036992546002244],[126,237,73,-0.030603210330579583],[126,237,74,-0.0358223224944413],[126,237,75,-0.12478943752504923],[126,237,76,-0.1800996829276184],[126,237,77,-0.17053527587538037],[126,237,78,-0.15744489194868644],[126,237,79,-0.14853004381499557],[126,238,64,-0.09508519674608043],[126,238,65,-0.09492238736805064],[126,238,66,-0.08322762504252118],[126,238,67,-0.07230769610934076],[126,238,68,-0.07046332597835808],[126,238,69,-0.06738768187032115],[126,238,70,-0.055896161370998926],[126,238,71,-0.047186286879200304],[126,238,72,-0.038563209178905725],[126,238,73,-0.03455028863991798],[126,238,74,-0.025558532495729397],[126,238,75,-0.08730012846265442],[126,238,76,-0.14126210044176768],[126,238,77,-0.16796898233546814],[126,238,78,-0.15556436119270417],[126,238,79,-0.14599199724836118],[126,239,64,-0.10089054591399693],[126,239,65,-0.09882117312982958],[126,239,66,-0.09155683905592402],[126,239,67,-0.07929172922355018],[126,239,68,-0.07616165488126256],[126,239,69,-0.07415389557628879],[126,239,70,-0.0619258112360615],[126,239,71,-0.05214595109807467],[126,239,72,-0.043452079916858996],[126,239,73,-0.03749104167449828],[126,239,74,-0.02879531608992056],[126,239,75,-0.0813746169247957],[126,239,76,-0.13343182161453],[126,239,77,-0.1664010504383702],[126,239,78,-0.15242824376875438],[126,239,79,-0.1430198679513539],[126,240,64,-0.10049357758614189],[126,240,65,-0.09931034705590996],[126,240,66,-0.0904768007110576],[126,240,67,-0.08051341870744139],[126,240,68,-0.07658101380679697],[126,240,69,-0.07329215749551377],[126,240,70,-0.06385148720986958],[126,240,71,-0.05419818006632732],[126,240,72,-0.04690922507043856],[126,240,73,-0.03995746057919285],[126,240,74,-0.032246608065224946],[126,240,75,-0.08734644260976401],[126,240,76,-0.13070594912456224],[126,240,77,-0.16405432721499366],[126,240,78,-0.153179296487882],[126,240,79,-0.14228575043899247],[126,241,64,-0.08933833557500856],[126,241,65,-0.09626738008420477],[126,241,66,-0.09335386625403053],[126,241,67,-0.08759432827878746],[126,241,68,-0.08729615023999063],[126,241,69,-0.08125947784847799],[126,241,70,-0.07323497860516516],[126,241,71,-0.06646595492005943],[126,241,72,-0.05869369340861501],[126,241,73,-0.05174383821166208],[126,241,74,-0.04289209631688104],[126,241,75,-0.03197663845684953],[126,241,76,-0.01759301843630609],[126,241,77,-0.006351408465349581],[126,241,78,-0.021850210429234025],[126,241,79,-0.03995891410302002],[126,242,64,-0.09411473308203375],[126,242,65,-0.09799284132730773],[126,242,66,-0.09600619260814397],[126,242,67,-0.09235212369469228],[126,242,68,-0.09043435557562912],[126,242,69,-0.08586891408154651],[126,242,70,-0.07774819482651746],[126,242,71,-0.0693963348903657],[126,242,72,-0.0604749557311622],[126,242,73,-0.054485373014736646],[126,242,74,-0.04685557578654492],[126,242,75,-0.035647955034126405],[126,242,76,-0.02195230205369357],[126,242,77,-0.01092075246705132],[126,242,78,-0.014064330744061618],[126,242,79,-0.03180366548853451],[126,243,64,-0.09345158707600076],[126,243,65,-0.09650921643114058],[126,243,66,-0.0978446384396319],[126,243,67,-0.09296970313898234],[126,243,68,-0.09148869981927818],[126,243,69,-0.08425681470786786],[126,243,70,-0.07839967944211967],[126,243,71,-0.06998068112053171],[126,243,72,-0.060287589955157275],[126,243,73,-0.052470165374142036],[126,243,74,-0.044637347799528576],[126,243,75,-0.035855779380444874],[126,243,76,-0.023443565574717815],[126,243,77,-0.00949124079514177],[126,243,78,-0.003671459629855295],[126,243,79,-0.008334837636619165],[126,244,64,-0.08316145481323803],[126,244,65,-0.07840974678605397],[126,244,66,-0.0708814615885934],[126,244,67,-0.05860844375676566],[126,244,68,-0.04866633911558493],[126,244,69,-0.034214159562360444],[126,244,70,-0.024809307182522333],[126,244,71,-0.010181587882649959],[126,244,72,9.884890428967924E-4],[126,244,73,0.009791935175394978],[126,244,74,0.017747940816699476],[126,244,75,0.02775950796074589],[126,244,76,0.03903702768357843],[126,244,77,0.054737722970428046],[126,244,78,0.052075395170073174],[126,244,79,0.03408206088551502],[126,245,64,-0.08422314269730896],[126,245,65,-0.08078730413272539],[126,245,66,-0.06951962150187005],[126,245,67,-0.058814280725785456],[126,245,68,-0.049789956999150065],[126,245,69,-0.03754726962320923],[126,245,70,-0.0235073640888257],[126,245,71,-0.008972104884681378],[126,245,72,2.753988289732612E-4],[126,245,73,0.00968112730049249],[126,245,74,0.016453637518334605],[126,245,75,0.025113381626731685],[126,245,76,0.04006729443355965],[126,245,77,0.05827796458464013],[126,245,78,0.05928617060580576],[126,245,79,0.0366556720762842],[126,246,64,-0.08382682056555443],[126,246,65,-0.07832967858822229],[126,246,66,-0.06803269966250478],[126,246,67,-0.05982710850166442],[126,246,68,-0.049229623148164536],[126,246,69,-0.038859794514715384],[126,246,70,-0.02132275877425649],[126,246,71,-0.006978740693951838],[126,246,72,0.0031865217869698897],[126,246,73,0.009084274106055043],[126,246,74,0.017706435134439286],[126,246,75,0.02666267535391302],[126,246,76,0.03977411914491304],[126,246,77,0.05912126899702172],[126,246,78,0.07483181289836115],[126,246,79,0.04448385348169151],[126,247,64,-0.08973143863471231],[126,247,65,-0.08205170069057371],[126,247,66,-0.07348098589659144],[126,247,67,-0.06364621395570728],[126,247,68,-0.05393178585272382],[126,247,69,-0.04453823333796547],[126,247,70,-0.024039166761718175],[126,247,71,-0.008226239022686432],[126,247,72,0.0045908634736115395],[126,247,73,0.009206914152806653],[126,247,74,0.020304126782409587],[126,247,75,0.03088303902892947],[126,247,76,0.04512789722785704],[126,247,77,0.06138760165223599],[126,247,78,0.07827120919217177],[126,247,79,0.052387590568432375],[126,248,64,-0.08505546548685616],[126,248,65,-0.07763981144125903],[126,248,66,-0.06809693662598117],[126,248,67,-0.06068604166836686],[126,248,68,-0.053051868098863864],[126,248,69,-0.04199738841676526],[126,248,70,-0.021723069343639004],[126,248,71,-0.008085616631020559],[126,248,72,0.005630487044924956],[126,248,73,0.013314732882354782],[126,248,74,0.020513253053004193],[126,248,75,0.03265297315888263],[126,248,76,0.046794125931799796],[126,248,77,0.06199290441563958],[126,248,78,0.07969376451612349],[126,248,79,0.06067137586577666],[126,249,64,-0.09212695813929786],[126,249,65,-0.08421964891189018],[126,249,66,-0.07142731257486051],[126,249,67,-0.06424441643383905],[126,249,68,-0.05742778514595205],[126,249,69,-0.046153228796064164],[126,249,70,-0.02676395066000066],[126,249,71,-0.0063483282747323205],[126,249,72,0.011892552740321291],[126,249,73,0.023457197762472612],[126,249,74,0.03249270347762177],[126,249,75,0.04393370342323849],[126,249,76,0.05741728424762574],[126,249,77,0.06898939577516039],[126,249,78,0.08496732520418049],[126,249,79,0.012801766349977858],[126,250,64,-0.10896329968436543],[126,250,65,-0.09070534284418343],[126,250,66,-0.1170732540717156],[126,250,67,-0.1403000851358441],[126,250,68,-0.13479582989706018],[126,250,69,-0.12930206871004518],[126,250,70,-0.08553581338876298],[126,250,71,-0.033411423949300176],[126,250,72,-0.009403227941364486],[126,250,73,-0.033047757287862044],[126,250,74,-0.07377529922651176],[126,250,75,-0.08710484612165223],[126,250,76,-0.05265411014330827],[126,250,77,0.009299869366239812],[126,250,78,0.05417162935338617],[126,250,79,0.058691937505639606],[126,251,64,-0.11988204215847109],[126,251,65,-0.10453816768447771],[126,251,66,-0.12766835883341526],[126,251,67,-0.1576276523624856],[126,251,68,-0.16125825408242345],[126,251,69,-0.15045575015872362],[126,251,70,-0.11519300795079576],[126,251,71,-0.054770840902081654],[126,251,72,-0.020232968682499953],[126,251,73,-0.03763312021119279],[126,251,74,-0.06347337068613061],[126,251,75,-0.06631180218285673],[126,251,76,-0.04021006659724943],[126,251,77,0.020808350881458472],[126,251,78,0.06650981792630778],[126,251,79,0.060010964354237584],[126,252,64,-0.1229728527172287],[126,252,65,-0.1088331500317924],[126,252,66,-0.12858694636925558],[126,252,67,-0.16481017598335534],[126,252,68,-0.1731540105184149],[126,252,69,-0.15179458165946197],[126,252,70,-0.12735292749187133],[126,252,71,-0.0683583118794123],[126,252,72,-0.0393094770505833],[126,252,73,-0.056829278716356624],[126,252,74,-0.06713646479541079],[126,252,75,-0.062058567043513244],[126,252,76,-0.04147732276914767],[126,252,77,0.007270198242805469],[126,252,78,0.051403384418465675],[126,252,79,0.055820609617339534],[126,253,64,-0.13885959305895734],[126,253,65,-0.12473177305734291],[126,253,66,-0.1232631759185368],[126,253,67,-0.13118136688269988],[126,253,68,-0.13277113793053708],[126,253,69,-0.11059040690226521],[126,253,70,-0.13433446689156991],[126,253,71,-0.11362688912706527],[126,253,72,-0.10066186962754071],[126,253,73,-0.09770843903491006],[126,253,74,-0.06847921151438041],[126,253,75,-0.022932049069110755],[126,253,76,-0.004566966578715283],[126,253,77,0.019848352010883717],[126,253,78,0.003274690671557015],[126,253,79,0.010352462625451059],[126,254,64,-0.07535062413854018],[126,254,65,-0.0741973747715287],[126,254,66,-0.07353894124462645],[126,254,67,-0.09696778400803319],[126,254,68,-0.09653332841401284],[126,254,69,-0.07072097015251105],[126,254,70,-0.12551163500668727],[126,254,71,-0.11043641534750723],[126,254,72,-0.11185178504584341],[126,254,73,-0.1082516241398076],[126,254,74,-0.07351077194451174],[126,254,75,-0.025450470423090635],[126,254,76,-0.007630305710473115],[126,254,77,0.004433999764289081],[126,254,78,-0.021432208524968327],[126,254,79,-0.014326831694111947],[126,255,64,-0.06282257085835777],[126,255,65,-0.07665123428729867],[126,255,66,-0.06534538034760004],[126,255,67,-0.08484279461689391],[126,255,68,-0.06915887356544183],[126,255,69,-0.055845237897289984],[126,255,70,-0.12074198523522561],[126,255,71,-0.11692161624276817],[126,255,72,-0.11641043008427183],[126,255,73,-0.11602399216227476],[126,255,74,-0.07236731512753423],[126,255,75,-0.026694285890057096],[126,255,76,-0.005560158972057409],[126,255,77,0.0067610588069629204],[126,255,78,-0.018267893354901935],[126,255,79,-0.01941207421674561],[126,256,64,-0.06280338888226827],[126,256,65,-0.06626151115268845],[126,256,66,-0.06034990018281616],[126,256,67,-0.08531493475237845],[126,256,68,-0.054390294081098606],[126,256,69,-0.049565915750000536],[126,256,70,-0.11434159092333693],[126,256,71,-0.1298267883565118],[126,256,72,-0.1240464612777616],[126,256,73,-0.13089201815735702],[126,256,74,-0.07382424363538571],[126,256,75,-0.028897510208960912],[126,256,76,-0.006166656320199835],[126,256,77,0.007060745639709494],[126,256,78,-0.017723327162320293],[126,256,79,-0.04174418336346282],[126,257,64,-0.06879245091945141],[126,257,65,-0.05677537590661488],[126,257,66,-0.04706239047244213],[126,257,67,-0.08483659038487726],[126,257,68,-0.05435957776212259],[126,257,69,-0.05763896344978155],[126,257,70,-0.13189583068183658],[126,257,71,-0.15418701810149193],[126,257,72,-0.14907793868586283],[126,257,73,-0.1650966812113553],[126,257,74,-0.10250782787538479],[126,257,75,-0.05265376659033008],[126,257,76,-0.03864310255273185],[126,257,77,-0.02836018431939305],[126,257,78,-0.06142839665193177],[126,257,79,-0.09583850892998343],[126,258,64,-0.030627634901529706],[126,258,65,-0.01855611369953491],[126,258,66,0.0030143667248050494],[126,258,67,-0.019915916800489597],[126,258,68,-0.011024352160106887],[126,258,69,-0.027268394670117276],[126,258,70,-0.09434827205086486],[126,258,71,-0.12872962073294125],[126,258,72,-0.130349890494745],[126,258,73,-0.13417732033498186],[126,258,74,-0.09179944011962812],[126,258,75,-0.045264662893341204],[126,258,76,-0.040188431800886645],[126,258,77,-0.02912022186685035],[126,258,78,-0.06804313058814893],[126,258,79,-0.10863902389937861],[126,259,64,-0.0514016446320027],[126,259,65,-0.04845978648760255],[126,259,66,-0.02695251517269017],[126,259,67,-0.05150986028310753],[126,259,68,-0.04378124738716929],[126,259,69,-0.08212128850103251],[126,259,70,-0.13560423538087604],[126,259,71,-0.16668188378330653],[126,259,72,-0.1599824334172364],[126,259,73,-0.135459145504627],[126,259,74,-0.09060265927817074],[126,259,75,-0.03743825982717649],[126,259,76,-0.02913541827798604],[126,259,77,-0.01920225413054763],[126,259,78,-0.0680526597420503],[126,259,79,-0.11430307873367183],[126,260,64,-0.15842568957938954],[126,260,65,-0.1535021873151601],[126,260,66,-0.14643898222974444],[126,260,67,-0.1669843835728809],[126,260,68,-0.1581176064511507],[126,260,69,-0.18127563878335365],[126,260,70,-0.20116185773865178],[126,260,71,-0.20369572685448215],[126,260,72,-0.18995517835413617],[126,260,73,-0.1732207371452915],[126,260,74,-0.16077064660235124],[126,260,75,-0.1493353539675939],[126,260,76,-0.14365572611789343],[126,260,77,-0.13733694537386362],[126,260,78,-0.14051387458909637],[126,260,79,-0.14286949084308992],[126,261,64,-0.13928811728297638],[126,261,65,-0.14483159250540303],[126,261,66,-0.15801382373735204],[126,261,67,-0.1953086952180558],[126,261,68,-0.1862812317339421],[126,261,69,-0.2038994550189672],[126,261,70,-0.2169381567372856],[126,261,71,-0.21447648905743077],[126,261,72,-0.19545468256531812],[126,261,73,-0.17635627231451415],[126,261,74,-0.16552055463951393],[126,261,75,-0.15739846937565014],[126,261,76,-0.15116156482973686],[126,261,77,-0.14217699163796144],[126,261,78,-0.1410245783073487],[126,261,79,-0.14178427023933682],[126,262,64,-0.14264620976514913],[126,262,65,-0.15846027373031535],[126,262,66,-0.17681207819185665],[126,262,67,-0.22304563590847098],[126,262,68,-0.2116449390625197],[126,262,69,-0.24907754183435604],[126,262,70,-0.2690683989584607],[126,262,71,-0.26696360894024107],[126,262,72,-0.2456990905551299],[126,262,73,-0.21367073120561494],[126,262,74,-0.20257274942392134],[126,262,75,-0.18991085412600822],[126,262,76,-0.17537919647209838],[126,262,77,-0.1639823413884567],[126,262,78,-0.16825335212760162],[126,262,79,-0.1644027275285081],[126,263,64,-0.13567223104967224],[126,263,65,-0.15184127418663237],[126,263,66,-0.17945185361470917],[126,263,67,-0.22407068538972114],[126,263,68,-0.21504167343867042],[126,263,69,-0.25462429340785164],[126,263,70,-0.27307429683443185],[126,263,71,-0.26766966627698197],[126,263,72,-0.24162518582371428],[126,263,73,-0.20943741095513657],[126,263,74,-0.2030482953050914],[126,263,75,-0.18938290533173902],[126,263,76,-0.17415044570404953],[126,263,77,-0.16736726458032405],[126,263,78,-0.1700826611715563],[126,263,79,-0.1631252547163588],[126,264,64,-0.13194031667180478],[126,264,65,-0.1479879127459494],[126,264,66,-0.18519187601442252],[126,264,67,-0.21989808826471458],[126,264,68,-0.2191312947669698],[126,264,69,-0.25657869329439226],[126,264,70,-0.28132051516209355],[126,264,71,-0.26570684589624705],[126,264,72,-0.2425217044159143],[126,264,73,-0.20773186105911795],[126,264,74,-0.20341858759528658],[126,264,75,-0.19166519091150055],[126,264,76,-0.177673917167631],[126,264,77,-0.16925887712776247],[126,264,78,-0.17235595089246852],[126,264,79,-0.16653172140746328],[126,265,64,-0.1294198581614512],[126,265,65,-0.13257030674308223],[126,265,66,-0.13353794731459948],[126,265,67,-0.14089116848014635],[126,265,68,-0.14751418853283013],[126,265,69,-0.19183558552474955],[126,265,70,-0.23401970299853253],[126,265,71,-0.24641468305305314],[126,265,72,-0.2399137663094428],[126,265,73,-0.22480529653962322],[126,265,74,-0.22379552674417225],[126,265,75,-0.21470876383632798],[126,265,76,-0.20767643981601763],[126,265,77,-0.19907587950512468],[126,265,78,-0.18933764180135856],[126,265,79,-0.17895879150214777],[126,266,64,-0.13384024087408813],[126,266,65,-0.13709480877664776],[126,266,66,-0.14231673970252284],[126,266,67,-0.14107014753817518],[126,266,68,-0.13864630598586566],[126,266,69,-0.155898725780307],[126,266,70,-0.19277640320127895],[126,266,71,-0.21974294499043318],[126,266,72,-0.2206579979628388],[126,266,73,-0.20835751038302935],[126,266,74,-0.21975771031705377],[126,266,75,-0.21006684761530037],[126,266,76,-0.2000771603065943],[126,266,77,-0.19273428659549588],[126,266,78,-0.1826679223850245],[126,266,79,-0.1706499745322057],[126,267,64,-0.13251993098548123],[126,267,65,-0.1382797222277023],[126,267,66,-0.14189010220765347],[126,267,67,-0.1409573587890181],[126,267,68,-0.13693853966588365],[126,267,69,-0.15091702758668185],[126,267,70,-0.18210267659963075],[126,267,71,-0.21967320813870664],[126,267,72,-0.22373976002951035],[126,267,73,-0.21537351561991863],[126,267,74,-0.22642626461195492],[126,267,75,-0.2161218512093656],[126,267,76,-0.20670114425877656],[126,267,77,-0.19897514446788608],[126,267,78,-0.18810264379242259],[126,267,79,-0.17494868496229818],[126,268,64,-0.13200327997892128],[126,268,65,-0.13838589322340725],[126,268,66,-0.1434888907755102],[126,268,67,-0.144347478330982],[126,268,68,-0.14272604028239344],[126,268,69,-0.14355854345033534],[126,268,70,-0.1425142920079221],[126,268,71,-0.1860115372410281],[126,268,72,-0.1955632159600738],[126,268,73,-0.1953884683331476],[126,268,74,-0.2056830625902009],[126,268,75,-0.2078735979546939],[126,268,76,-0.1964893423890578],[126,268,77,-0.18453067063960016],[126,268,78,-0.18161099466343975],[126,268,79,-0.1670834304590857],[126,269,64,-0.12848984409683017],[126,269,65,-0.13579968652406288],[126,269,66,-0.14161329779020249],[126,269,67,-0.14172880568538732],[126,269,68,-0.1418441669032802],[126,269,69,-0.14497928408232297],[126,269,70,-0.14396773622753165],[126,269,71,-0.1829785930240474],[126,269,72,-0.1970807794697696],[126,269,73,-0.19431844738587856],[126,269,74,-0.20240319653271263],[126,269,75,-0.20933846395457742],[126,269,76,-0.1939220977423833],[126,269,77,-0.18349808539629547],[126,269,78,-0.1810947281921696],[126,269,79,-0.16770227206749455],[126,270,64,-0.1361423360301787],[126,270,65,-0.13776343734538826],[126,270,66,-0.14260347356113343],[126,270,67,-0.14299848037243462],[126,270,68,-0.1454024574143838],[126,270,69,-0.14765769440079268],[126,270,70,-0.14932273608262486],[126,270,71,-0.1825274562843392],[126,270,72,-0.19286476058518687],[126,270,73,-0.18916783853136376],[126,270,74,-0.19601392236746532],[126,270,75,-0.20692280105431998],[126,270,76,-0.19356315519768527],[126,270,77,-0.18401215131873244],[126,270,78,-0.1816356159273001],[126,270,79,-0.17059233697429232],[126,271,64,-0.13355664015410887],[126,271,65,-0.1354836048140392],[126,271,66,-0.13637353317162862],[126,271,67,-0.13788184238184273],[126,271,68,-0.14271606445670296],[126,271,69,-0.14674020908952057],[126,271,70,-0.14937639310087703],[126,271,71,-0.18244508114881489],[126,271,72,-0.1913585765501207],[126,271,73,-0.18564831550715266],[126,271,74,-0.1925471703067715],[126,271,75,-0.20522734071109544],[126,271,76,-0.19051592065722323],[126,271,77,-0.1832189647940281],[126,271,78,-0.1797637663564916],[126,271,79,-0.16901370734619064],[126,272,64,-0.13190420397991912],[126,272,65,-0.13176408612373353],[126,272,66,-0.1320423108320784],[126,272,67,-0.13643558588252674],[126,272,68,-0.14048455353717365],[126,272,69,-0.14639454105362876],[126,272,70,-0.15050987188969273],[126,272,71,-0.18155075213280022],[126,272,72,-0.1898538939083209],[126,272,73,-0.18776415611460162],[126,272,74,-0.193507813053833],[126,272,75,-0.20669495558575826],[126,272,76,-0.18915102409426165],[126,272,77,-0.18583836787442315],[126,272,78,-0.18356576976605832],[126,272,79,-0.1705566393626914],[126,273,64,-0.1347581282931535],[126,273,65,-0.12929324799413247],[126,273,66,-0.12636405553944208],[126,273,67,-0.12817862637572258],[126,273,68,-0.13100801551656474],[126,273,69,-0.13897982802858824],[126,273,70,-0.1440860949813414],[126,273,71,-0.14874261649208492],[126,273,72,-0.1433687254982235],[126,273,73,-0.1368894261419262],[126,273,74,-0.13037095042248864],[126,273,75,-0.12126637662612984],[126,273,76,-0.12268209899142136],[126,273,77,-0.11729105371645371],[126,273,78,-0.10143847270799944],[126,273,79,-0.09393711920707196],[126,274,64,-0.13704904035279233],[126,274,65,-0.13210085472032218],[126,274,66,-0.1271424412290581],[126,274,67,-0.12995258393714793],[126,274,68,-0.13492909194041486],[126,274,69,-0.14371074271278608],[126,274,70,-0.14985706295887893],[126,274,71,-0.15174873695662694],[126,274,72,-0.14865598089027154],[126,274,73,-0.14220448677666814],[126,274,74,-0.13679342054540175],[126,274,75,-0.12611997994509364],[126,274,76,-0.12613982297016776],[126,274,77,-0.118193592814307],[126,274,78,-0.10380682478355796],[126,274,79,-0.09357120125773082],[126,275,64,-0.13277946265258705],[126,275,65,-0.130164336984812],[126,275,66,-0.12630816795488156],[126,275,67,-0.12997769737899575],[126,275,68,-0.1351491303215132],[126,275,69,-0.14509250460932613],[126,275,70,-0.15248980991316263],[126,275,71,-0.15388148881905986],[126,275,72,-0.15236034624239345],[126,275,73,-0.1473211167516457],[126,275,74,-0.1423003258451867],[126,275,75,-0.13508964220139916],[126,275,76,-0.12879997689487405],[126,275,77,-0.12138705987128723],[126,275,78,-0.10981655144677922],[126,275,79,-0.09825792730108479],[126,276,64,-0.12623529723735155],[126,276,65,-0.12465891387054706],[126,276,66,-0.12289636029047016],[126,276,67,-0.1307956942849341],[126,276,68,-0.14100261772436318],[126,276,69,-0.1509435803657978],[126,276,70,-0.16061082457437376],[126,276,71,-0.16245215291360712],[126,276,72,-0.16312484726556162],[126,276,73,-0.1577839963027078],[126,276,74,-0.15012200932423278],[126,276,75,-0.14382020840593884],[126,276,76,-0.13237372602421577],[126,276,77,-0.11977617342914286],[126,276,78,-0.10798920806223125],[126,276,79,-0.10192601929733242],[126,277,64,-0.11628149644511568],[126,277,65,-0.12042853079888505],[126,277,66,-0.12617224332568372],[126,277,67,-0.13891644598366443],[126,277,68,-0.14873414339208965],[126,277,69,-0.15997738854729704],[126,277,70,-0.17019460861167868],[126,277,71,-0.17512561535820803],[126,277,72,-0.17358248976898966],[126,277,73,-0.16686068820981514],[126,277,74,-0.1586303802630963],[126,277,75,-0.1507367943374257],[126,277,76,-0.13679755877918892],[126,277,77,-0.11540533551592416],[126,277,78,-0.10880537549567851],[126,277,79,-0.1027466197981787],[126,278,64,-0.12045951397267136],[126,278,65,-0.12175606498596357],[126,278,66,-0.12972221998773648],[126,278,67,-0.14148567463612013],[126,278,68,-0.152496774751117],[126,278,69,-0.1614129925004399],[126,278,70,-0.1712871089633154],[126,278,71,-0.1751734264968712],[126,278,72,-0.1742114189950807],[126,278,73,-0.1679783268401713],[126,278,74,-0.16275546987694736],[126,278,75,-0.15384737909492002],[126,278,76,-0.1391627808012072],[126,278,77,-0.1169634770961189],[126,278,78,-0.11186923733342155],[126,278,79,-0.10356203049060736],[126,279,64,-0.11767414458917891],[126,279,65,-0.12031730625052367],[126,279,66,-0.1296151750474078],[126,279,67,-0.1398455598138237],[126,279,68,-0.15176865144866009],[126,279,69,-0.1610069182209118],[126,279,70,-0.16999290358277075],[126,279,71,-0.17546092903063598],[126,279,72,-0.17496802329428313],[126,279,73,-0.1681178900076072],[126,279,74,-0.16235204131957057],[126,279,75,-0.15491771540396554],[126,279,76,-0.14079162338292336],[126,279,77,-0.11739501789014345],[126,279,78,-0.11086166953557622],[126,279,79,-0.10261842452520997],[126,280,64,-0.11502327769493526],[126,280,65,-0.11878315686995877],[126,280,66,-0.12815789209651524],[126,280,67,-0.13633807172556156],[126,280,68,-0.15027928015687517],[126,280,69,-0.1602718219547866],[126,280,70,-0.16725480971547368],[126,280,71,-0.17203816742188466],[126,280,72,-0.17472553335067703],[126,280,73,-0.16810252863453373],[126,280,74,-0.16176965822895217],[126,280,75,-0.15477535821755023],[126,280,76,-0.1425227009403004],[126,280,77,-0.11886023257122363],[126,280,78,-0.10808143505843901],[126,280,79,-0.10278725868242528],[126,281,64,-0.11102161523053426],[126,281,65,-0.11758554911215598],[126,281,66,-0.12478449079519247],[126,281,67,-0.13522854767748663],[126,281,68,-0.14834667572746232],[126,281,69,-0.15773100849680138],[126,281,70,-0.16504639264585858],[126,281,71,-0.16961634255608102],[126,281,72,-0.1752853039869759],[126,281,73,-0.17085561272204405],[126,281,74,-0.16571842602857118],[126,281,75,-0.16034366937540717],[126,281,76,-0.14720144071415706],[126,281,77,-0.12761088920050237],[126,281,78,-0.11681916938157585],[126,281,79,-0.10787495555734669],[126,282,64,-0.11406518228397765],[126,282,65,-0.11714311983774792],[126,282,66,-0.12707247171040373],[126,282,67,-0.13983201472885048],[126,282,68,-0.14946812835418777],[126,282,69,-0.15785817086095355],[126,282,70,-0.16444861247856898],[126,282,71,-0.16882619608604255],[126,282,72,-0.1725671823963487],[126,282,73,-0.1686312563266059],[126,282,74,-0.16175862694275617],[126,282,75,-0.15561811562227915],[126,282,76,-0.14367809832402334],[126,282,77,-0.12569334024451576],[126,282,78,-0.10944213684791307],[126,282,79,-0.1009740379424717],[126,283,64,-0.11271825201957679],[126,283,65,-0.11701292545949846],[126,283,66,-0.12385968347069667],[126,283,67,-0.13594601165023157],[126,283,68,-0.14617910552872607],[126,283,69,-0.15389606039127293],[126,283,70,-0.1592643167452211],[126,283,71,-0.1676846007258788],[126,283,72,-0.16997391255026942],[126,283,73,-0.1645129855270162],[126,283,74,-0.15772393565835482],[126,283,75,-0.15164081875524965],[126,283,76,-0.13943792701740895],[126,283,77,-0.1292838054660615],[126,283,78,-0.11884817890749491],[126,283,79,-0.11473675635893661],[126,284,64,-0.12760810254806884],[126,284,65,-0.1285590300743129],[126,284,66,-0.13148248055114747],[126,284,67,-0.13654745944565058],[126,284,68,-0.14322533606646265],[126,284,69,-0.1470029907427044],[126,284,70,-0.15003458166282724],[126,284,71,-0.1589973428242729],[126,284,72,-0.168509699390797],[126,284,73,-0.1646244795686003],[126,284,74,-0.16026341887394588],[126,284,75,-0.15599122361802636],[126,284,76,-0.14726279178651572],[126,284,77,-0.13563242717221732],[126,284,78,-0.12587570109471555],[126,284,79,-0.1180069428948971],[126,285,64,-0.11949880658537756],[126,285,65,-0.11638982836905626],[126,285,66,-0.12067737923535898],[126,285,67,-0.12303729899898858],[126,285,68,-0.12953027019456412],[126,285,69,-0.1360195441070389],[126,285,70,-0.1396423814993142],[126,285,71,-0.15508892688624637],[126,285,72,-0.16686134726038546],[126,285,73,-0.1666597480977422],[126,285,74,-0.1622625384327532],[126,285,75,-0.15678960264838282],[126,285,76,-0.14577059095909065],[126,285,77,-0.1339785558719562],[126,285,78,-0.12354393661337822],[126,285,79,-0.1156892109967939],[126,286,64,-0.11931064794027552],[126,286,65,-0.11784689904097409],[126,286,66,-0.12008586630327633],[126,286,67,-0.12337044467856428],[126,286,68,-0.1302140471115611],[126,286,69,-0.13636960570300782],[126,286,70,-0.138909591990167],[126,286,71,-0.15451116220494718],[126,286,72,-0.16688226666759312],[126,286,73,-0.16699579641850548],[126,286,74,-0.16481382801268488],[126,286,75,-0.15561784036997423],[126,286,76,-0.14677426756605091],[126,286,77,-0.13436528101092937],[126,286,78,-0.1229951701162142],[126,286,79,-0.11405535197506197],[126,287,64,-0.11746705657989989],[126,287,65,-0.11722947493890143],[126,287,66,-0.11910252109709028],[126,287,67,-0.1194091011528037],[126,287,68,-0.12764356554865877],[126,287,69,-0.1350585451882979],[126,287,70,-0.13811686105611815],[126,287,71,-0.15054722388409625],[126,287,72,-0.165818023066864],[126,287,73,-0.16862114383217197],[126,287,74,-0.1624538273621255],[126,287,75,-0.15328817130414332],[126,287,76,-0.14312557610045698],[126,287,77,-0.132032091132927],[126,287,78,-0.12126423466334663],[126,287,79,-0.11075034894261698],[126,288,64,-0.11764598992853782],[126,288,65,-0.11617725358853527],[126,288,66,-0.11531358844768622],[126,288,67,-0.11946732702441643],[126,288,68,-0.12709604455607346],[126,288,69,-0.1312418571278211],[126,288,70,-0.13735128385391307],[126,288,71,-0.14860142673852614],[126,288,72,-0.16729201465363458],[126,288,73,-0.16844954548974864],[126,288,74,-0.15988303599167197],[126,288,75,-0.15247692032884902],[126,288,76,-0.14211582732658748],[126,288,77,-0.1317625620269724],[126,288,78,-0.11963875849929678],[126,288,79,-0.1077841277467609],[126,289,64,-0.12755892194528728],[126,289,65,-0.12553432924639302],[126,289,66,-0.12314282494131368],[126,289,67,-0.12872201344244888],[126,289,68,-0.13507022296646706],[126,289,69,-0.1391068402309871],[126,289,70,-0.14219382435414601],[126,289,71,-0.14120483424910818],[126,289,72,-0.16183640222572743],[126,289,73,-0.1665286011751618],[126,289,74,-0.16129464080327333],[126,289,75,-0.15600603536568053],[126,289,76,-0.14747990837292474],[126,289,77,-0.1390538022000779],[126,289,78,-0.12492840606008312],[126,289,79,-0.11256921353072073],[126,290,64,-0.13239433442428403],[126,290,65,-0.12956203173048744],[126,290,66,-0.1282824803004682],[126,290,67,-0.1312877445702456],[126,290,68,-0.13792457826668425],[126,290,69,-0.14140480575322834],[126,290,70,-0.14309587861012935],[126,290,71,-0.13775126758088888],[126,290,72,-0.15089233902931526],[126,290,73,-0.15778323688527748],[126,290,74,-0.15526849187792557],[126,290,75,-0.1568190546714666],[126,290,76,-0.1493871665399691],[126,290,77,-0.1418710533719423],[126,290,78,-0.12717751171298303],[126,290,79,-0.11435996667179635],[126,291,64,-0.13363671019733414],[126,291,65,-0.13067779986416392],[126,291,66,-0.13046350096726764],[126,291,67,-0.13248080420128316],[126,291,68,-0.13791254479352788],[126,291,69,-0.13941757221404735],[126,291,70,-0.13993123432627122],[126,291,71,-0.13601378138786857],[126,291,72,-0.14199116212096669],[126,291,73,-0.1549977998077493],[126,291,74,-0.15678479854061136],[126,291,75,-0.16108490983973484],[126,291,76,-0.1531572325397524],[126,291,77,-0.14143158079979137],[126,291,78,-0.12616435790662084],[126,291,79,-0.11393296393249983],[126,292,64,-0.0969327690411674],[126,292,65,-0.09044630189031373],[126,292,66,-0.08829354691979344],[126,292,67,-0.08742026841408819],[126,292,68,-0.08916751941085087],[126,292,69,-0.08879236443674585],[126,292,70,-0.0873682399226562],[126,292,71,-0.08410434986849603],[126,292,72,-0.09460156518575798],[126,292,73,-0.1144874938714771],[126,292,74,-0.12471883535752556],[126,292,75,-0.13786468593909817],[126,292,76,-0.1288040827664526],[126,292,77,-0.1118069205258819],[126,292,78,-0.0887882888376571],[126,292,79,-0.07497568365823191],[126,293,64,-0.10032257743850832],[126,293,65,-0.09253341690449922],[126,293,66,-0.09071928761049919],[126,293,67,-0.08790848847376956],[126,293,68,-0.08761276577058885],[126,293,69,-0.08746265203384082],[126,293,70,-0.08546302543117233],[126,293,71,-0.08249729121832017],[126,293,72,-0.0919530124432749],[126,293,73,-0.1136196826591169],[126,293,74,-0.12156303366050684],[126,293,75,-0.13066217178838713],[126,293,76,-0.1243189463346219],[126,293,77,-0.10563492515655254],[126,293,78,-0.08343485775173323],[126,293,79,-0.06933968651754137],[126,294,64,-0.10354207384898163],[126,294,65,-0.09752002020745797],[126,294,66,-0.09195071804060448],[126,294,67,-0.0870791670227334],[126,294,68,-0.08562928043090579],[126,294,69,-0.081813903937867],[126,294,70,-0.0824570795690831],[126,294,71,-0.07853813366033591],[126,294,72,-0.08803650759192994],[126,294,73,-0.11279531322009981],[126,294,74,-0.1177092989565352],[126,294,75,-0.12431061021123863],[126,294,76,-0.11662772788936324],[126,294,77,-0.09498656983467257],[126,294,78,-0.07515018798459597],[126,294,79,-0.06196006411081609],[126,295,64,-0.10411348497235612],[126,295,65,-0.0987218980148499],[126,295,66,-0.09387986323930689],[126,295,67,-0.0869370777929185],[126,295,68,-0.08424780666154465],[126,295,69,-0.07981593214368153],[126,295,70,-0.08039273367223151],[126,295,71,-0.07541167083740383],[126,295,72,-0.09392845033742946],[126,295,73,-0.11773482098459118],[126,295,74,-0.12195190607284573],[126,295,75,-0.12003856248068842],[126,295,76,-0.10691725868236521],[126,295,77,-0.09232207253982404],[126,295,78,-0.07330616188169473],[126,295,79,-0.06200948996334141],[126,296,64,-0.10413291206295262],[126,296,65,-0.0995922616596946],[126,296,66,-0.09546540974099774],[126,296,67,-0.08539300274555967],[126,296,68,-0.08336631317631839],[126,296,69,-0.0801678799725923],[126,296,70,-0.07696564942644327],[126,296,71,-0.07154992253917333],[126,296,72,-0.09487864265002931],[126,296,73,-0.11381640035763618],[126,296,74,-0.11990045467347468],[126,296,75,-0.11594058825612188],[126,296,76,-0.10128599411961872],[126,296,77,-0.08673729308694887],[126,296,78,-0.0667343868578049],[126,296,79,-0.05831024211478672],[126,297,64,-0.10349196729279582],[126,297,65,-0.1010302841750369],[126,297,66,-0.09400071374336066],[126,297,67,-0.08603535006527444],[126,297,68,-0.08105332277596425],[126,297,69,-0.07712819832706128],[126,297,70,-0.07107014643532934],[126,297,71,-0.0699068690859342],[126,297,72,-0.08758952381224834],[126,297,73,-0.10821336146180296],[126,297,74,-0.11914110501361819],[126,297,75,-0.11602172740806677],[126,297,76,-0.10223337918066938],[126,297,77,-0.08570163843793796],[126,297,78,-0.06927575185837645],[126,297,79,-0.061033041758451194],[126,298,64,-0.109645374604673],[126,298,65,-0.10331030836090416],[126,298,66,-0.0968165264415411],[126,298,67,-0.08896587662847302],[126,298,68,-0.08393485331841946],[126,298,69,-0.08074289603269286],[126,298,70,-0.07157483511164951],[126,298,71,-0.07160544069864747],[126,298,72,-0.07187297217946875],[126,298,73,-0.08731983975004257],[126,298,74,-0.09753537723979785],[126,298,75,-0.09293913456496006],[126,298,76,-0.08487877274620911],[126,298,77,-0.07559522135367393],[126,298,78,-0.06713872659775272],[126,298,79,-0.058555729265439865],[126,299,64,-0.109607973983184],[126,299,65,-0.10177858507409715],[126,299,66,-0.09408790860125275],[126,299,67,-0.08529265971834989],[126,299,68,-0.08215500340354578],[126,299,69,-0.07811201140565197],[126,299,70,-0.07214277234208546],[126,299,71,-0.06985291774936919],[126,299,72,-0.06784126335274314],[126,299,73,-0.08164322340292822],[126,299,74,-0.09419213283599413],[126,299,75,-0.09036648648042322],[126,299,76,-0.08318219723504768],[126,299,77,-0.07265976244156411],[126,299,78,-0.06782441851416877],[126,299,79,-0.05876806589381915],[126,300,64,-0.11375615311576975],[126,300,65,-0.10687977352993458],[126,300,66,-0.1003976652438712],[126,300,67,-0.08941510484106713],[126,300,68,-0.0841255330970021],[126,300,69,-0.08035618348928306],[126,300,70,-0.1001381133791943],[126,300,71,-0.12741915831888775],[126,300,72,-0.13335340471098078],[126,300,73,-0.12071574157959403],[126,300,74,-0.11715631013666247],[126,300,75,-0.10125144406553419],[126,300,76,-0.08770163923648318],[126,300,77,-0.07329916412364847],[126,300,78,-0.06709530352139538],[126,300,79,-0.05561443023520143],[126,301,64,-0.11151440483334907],[126,301,65,-0.10649012987844492],[126,301,66,-0.09964934286253901],[126,301,67,-0.08805705941298617],[126,301,68,-0.08177634535860583],[126,301,69,-0.077746449526062],[126,301,70,-0.09833349618433114],[126,301,71,-0.1177189078022249],[126,301,72,-0.12836299213055566],[126,301,73,-0.11337411800215244],[126,301,74,-0.10570216993282658],[126,301,75,-0.0912104956964748],[126,301,76,-0.08126352694675863],[126,301,77,-0.06837340455016185],[126,301,78,-0.06202893490319909],[126,301,79,-0.04905994155059118],[126,302,64,-0.10486793822454787],[126,302,65,-0.10347049300627437],[126,302,66,-0.09687760855805595],[126,302,67,-0.08649202062989284],[126,302,68,-0.077770513379575],[126,302,69,-0.07716092440117003],[126,302,70,-0.09496083227365151],[126,302,71,-0.11147006675628524],[126,302,72,-0.1237445254684198],[126,302,73,-0.10846979964548589],[126,302,74,-0.10037859017067084],[126,302,75,-0.09094565697259083],[126,302,76,-0.08564102286026365],[126,302,77,-0.07507724998926714],[126,302,78,-0.06797618366381081],[126,302,79,-0.05284711163979641],[126,303,64,-0.10182175119672982],[126,303,65,-0.10134403292768338],[126,303,66,-0.09422549619444796],[126,303,67,-0.0857548101898285],[126,303,68,-0.07723358458265278],[126,303,69,-0.08382929667440785],[126,303,70,-0.0897636324197993],[126,303,71,-0.10479432578944951],[126,303,72,-0.11652801100348534],[126,303,73,-0.10423251408533987],[126,303,74,-0.09119094497305488],[126,303,75,-0.08537155325741053],[126,303,76,-0.07637133802635204],[126,303,77,-0.06747453870396214],[126,303,78,-0.05709992260786199],[126,303,79,-0.042234257931029626],[126,304,64,-0.10108472041553428],[126,304,65,-0.0961493036038448],[126,304,66,-0.09293286511465974],[126,304,67,-0.08637608055267787],[126,304,68,-0.07985273284044625],[126,304,69,-0.0892324555658],[126,304,70,-0.0901467183526336],[126,304,71,-0.1010527201218777],[126,304,72,-0.11154114388323702],[126,304,73,-0.10311948308342243],[126,304,74,-0.08775624684653303],[126,304,75,-0.07925791375162246],[126,304,76,-0.07113557263850467],[126,304,77,-0.06071324012854793],[126,304,78,-0.052031375950391895],[126,304,79,-0.03490628987842635],[126,305,64,-0.101026716105867],[126,305,65,-0.09453149579126649],[126,305,66,-0.09286344506576717],[126,305,67,-0.08561929676059782],[126,305,68,-0.07694656670778706],[126,305,69,-0.09301742587628545],[126,305,70,-0.08975573565824042],[126,305,71,-0.10613513504723165],[126,305,72,-0.1093046308556584],[126,305,73,-0.10438508912527011],[126,305,74,-0.0886007903375905],[126,305,75,-0.07566086871614211],[126,305,76,-0.06801554101742521],[126,305,77,-0.059367182886587815],[126,305,78,-0.047156609324371636],[126,305,79,-0.03080611467267185],[126,306,64,-0.10304213037861384],[126,306,65,-0.09764680145203601],[126,306,66,-0.09461869108376204],[126,306,67,-0.08983327047412452],[126,306,68,-0.08018493907496355],[126,306,69,-0.08359888653750655],[126,306,70,-0.08416113395674271],[126,306,71,-0.10536948381699941],[126,306,72,-0.1054883068564379],[126,306,73,-0.10372041559180026],[126,306,74,-0.08505631666627914],[126,306,75,-0.06821179259198146],[126,306,76,-0.05895399089821343],[126,306,77,-0.04632845376934389],[126,306,78,-0.030461975450772033],[126,306,79,-0.018388715360148727],[126,307,64,-0.1019701907750624],[126,307,65,-0.09649548103626851],[126,307,66,-0.09331220959680572],[126,307,67,-0.08891008418404835],[126,307,68,-0.08047349967926637],[126,307,69,-0.08264314978089367],[126,307,70,-0.08533818106042221],[126,307,71,-0.10722480393172787],[126,307,72,-0.10684604922250235],[126,307,73,-0.10562590862510235],[126,307,74,-0.08603274250607114],[126,307,75,-0.06628813985580961],[126,307,76,-0.05722588781100861],[126,307,77,-0.044912516758989246],[126,307,78,-0.03021612509846323],[126,307,79,-0.019005411020273345],[126,308,64,-0.09049190211552592],[126,308,65,-0.08850474287399804],[126,308,66,-0.09099378046903295],[126,308,67,-0.08745866299777032],[126,308,68,-0.08384611255608573],[126,308,69,-0.08011416696977147],[126,308,70,-0.08016333997721743],[126,308,71,-0.09813870768091038],[126,308,72,-0.09559333321064002],[126,308,73,-0.09712477856602017],[126,308,74,-0.07986100323308137],[126,308,75,-0.06750479756647551],[126,308,76,-0.0547982615808674],[126,308,77,-0.04540144560998079],[126,308,78,-0.03284855100852131],[126,308,79,-0.02216934112254751],[126,309,64,-0.08641956680046112],[126,309,65,-0.08720601793943207],[126,309,66,-0.08914003477896143],[126,309,67,-0.08373659956786125],[126,309,68,-0.0812239955478448],[126,309,69,-0.07817390750668282],[126,309,70,-0.07778549015957247],[126,309,71,-0.07791694393314605],[126,309,72,-0.06965852469950519],[126,309,73,-0.05774848891633537],[126,309,74,-0.056229495765984475],[126,309,75,-0.045062292014606514],[126,309,76,-0.02204600593268914],[126,309,77,-0.017064148635735223],[126,309,78,-0.006704043680180731],[126,309,79,-0.007288982328089624],[126,310,64,-0.07888839827288331],[126,310,65,-0.07838456569061722],[126,310,66,-0.07987125107763876],[126,310,67,-0.07425159162038286],[126,310,68,-0.07164925455134959],[126,310,69,-0.07175880262478115],[126,310,70,-0.07187460245777186],[126,310,71,-0.07189644151763751],[126,310,72,-0.06291063357427401],[126,310,73,-0.05446010365379873],[126,310,74,-0.0499531973838197],[126,310,75,-0.03682969213654244],[126,310,76,-0.015338333227152556],[126,310,77,-0.009263148530015603],[126,310,78,-4.021656508816293E-4],[126,310,79,0.0014740998750679447],[126,311,64,-0.072560894101451],[126,311,65,-0.07238482896787869],[126,311,66,-0.07423974170545432],[126,311,67,-0.0692641585504635],[126,311,68,-0.06646570894671373],[126,311,69,-0.06993532006224036],[126,311,70,-0.07150148618095661],[126,311,71,-0.06858336245883331],[126,311,72,-0.0615936198770248],[126,311,73,-0.05146979286946361],[126,311,74,-0.048092179631144504],[126,311,75,-0.03160785660261276],[126,311,76,-0.012948646469328563],[126,311,77,-0.00498464205584568],[126,311,78,-0.004559401678630962],[126,311,79,-0.0034317531871535176],[126,312,64,-0.05908317054722491],[126,312,65,-0.05730351301501936],[126,312,66,-0.055195592784221606],[126,312,67,-0.051893391524159144],[126,312,68,-0.05038986552735139],[126,312,69,-0.054665466353846906],[126,312,70,-0.057979934779214023],[126,312,71,-0.05681533312261982],[126,312,72,-0.051563889622146565],[126,312,73,-0.04132860676441115],[126,312,74,-0.038404431535797555],[126,312,75,-0.02401644929605841],[126,312,76,-0.007490833586861281],[126,312,77,-0.0029281425352157067],[126,312,78,-0.0044024850219986575],[126,312,79,-0.004611384383885298],[126,313,64,-0.05603660023743118],[126,313,65,-0.05377689318205185],[126,313,66,-0.05055208999253459],[126,313,67,-0.04703058577109592],[126,313,68,-0.044750320512762065],[126,313,69,-0.05000793619127919],[126,313,70,-0.05327207120468428],[126,313,71,-0.05380814607920155],[126,313,72,-0.048560330189067226],[126,313,73,-0.04010803889290821],[126,313,74,-0.03593154981177254],[126,313,75,-0.022881160436204754],[126,313,76,-0.008066095982172311],[126,313,77,0.0034665623586742425],[126,313,78,0.014746720675214577],[126,313,79,0.022441973591336886],[126,314,64,-0.05822018459844086],[126,314,65,-0.05641929430834772],[126,314,66,-0.04972875863778266],[126,314,67,-0.04502958094166214],[126,314,68,-0.044820547885384754],[126,314,69,-0.04953100761829969],[126,314,70,-0.050194118760557266],[126,314,71,-0.05208541504802988],[126,314,72,-0.047004715733421756],[126,314,73,-0.0383764087596806],[126,314,74,-0.03740052220326841],[126,314,75,-0.027837908700530396],[126,314,76,-0.01611229381608193],[126,314,77,-0.001037286115707893],[126,314,78,0.007338063014659321],[126,314,79,0.02156844225519216],[126,315,64,-0.05459324036069403],[126,315,65,-0.05340479423337631],[126,315,66,-0.04636452403083349],[126,315,67,-0.04394286551077603],[126,315,68,-0.041713873844341706],[126,315,69,-0.044835185652964515],[126,315,70,-0.046036622248114625],[126,315,71,-0.04688275474725849],[126,315,72,-0.04486165657391751],[126,315,73,-0.03814147956518678],[126,315,74,-0.03602742391792489],[126,315,75,-0.030270677642149163],[126,315,76,-0.01949604472541996],[126,315,77,-0.00379142452664627],[126,315,78,0.012873999426005346],[126,315,79,0.02882335211235825],[126,316,64,-0.057677628793720515],[126,316,65,-0.05455277718478457],[126,316,66,-0.048586919521999186],[126,316,67,-0.04507775531429789],[126,316,68,-0.04232266220536972],[126,316,69,-0.04106649685243609],[126,316,70,-0.0405680002312617],[126,316,71,-0.041231571734990105],[126,316,72,-0.043122051411337556],[126,316,73,-0.0389202062036795],[126,316,74,-0.03673488766719939],[126,316,75,-0.03514548154621136],[126,316,76,-0.024627193573811157],[126,316,77,-0.012269486214747598],[126,316,78,0.008563838897659291],[126,316,79,0.020419859709850142],[126,317,64,-0.05757327700829698],[126,317,65,-0.05174328411905328],[126,317,66,-0.04676376698468107],[126,317,67,-0.04276696108214713],[126,317,68,-0.04047424011937509],[126,317,69,-0.036021377476296315],[126,317,70,-0.034233613700010906],[126,317,71,-0.03559127265884071],[126,317,72,-0.039392014212849144],[126,317,73,-0.03783204206393456],[126,317,74,-0.0361540407646532],[126,317,75,-0.03609341598922737],[126,317,76,-0.029082276036425762],[126,317,77,-0.01809753787042764],[126,317,78,0.009636525563483975],[126,317,79,0.0168100453940428],[126,318,64,-0.053202451685395266],[126,318,65,-0.04354619341803394],[126,318,66,-0.03963901037558375],[126,318,67,-0.032091941030753926],[126,318,68,-0.029955830915653736],[126,318,69,-0.02509715469080326],[126,318,70,-0.02222446884569798],[126,318,71,-0.023333048914117277],[126,318,72,-0.026691541962381854],[126,318,73,-0.02862489093117032],[126,318,74,-0.02816649075740664],[126,318,75,-0.026696062230518847],[126,318,76,-0.025013389255604354],[126,318,77,-0.015363614312043394],[126,318,78,0.012545437881313917],[126,318,79,0.021656424040938226],[126,319,64,-0.05122190659101564],[126,319,65,-0.04396991602317933],[126,319,66,-0.039101837948168516],[126,319,67,-0.031579862366249614],[126,319,68,-0.029158962931557397],[126,319,69,-0.02239301217417805],[126,319,70,-0.02025564680876013],[126,319,71,-0.022208127798549415],[126,319,72,-0.024897213054974332],[126,319,73,-0.026782256326758874],[126,319,74,-0.026115888968996387],[126,319,75,-0.02534942387916425],[126,319,76,-0.024747328418312686],[126,319,77,-0.011742026154734173],[126,319,78,0.012122298202163234],[126,319,79,0.025826359083328608],[127,-64,64,-0.09355357927951227],[127,-64,65,-0.09560857912499404],[127,-64,66,-0.1906787894922034],[127,-64,67,-0.3527124700761055],[127,-64,68,-0.3927110031866129],[127,-64,69,-0.3863073780147398],[127,-64,70,-0.3695226335491324],[127,-64,71,-0.3082729906698164],[127,-64,72,-0.2942877906277189],[127,-64,73,-0.3368489833174189],[127,-64,74,-0.34838347696409433],[127,-64,75,-0.34193569662438117],[127,-64,76,-0.33737095581269544],[127,-64,77,-0.3338407929212499],[127,-64,78,-0.3302088084319411],[127,-64,79,-0.2859686640008328],[127,-63,64,-0.09183591753779008],[127,-63,65,-0.09256981791315258],[127,-63,66,-0.13575561516301876],[127,-63,67,-0.2927604158358743],[127,-63,68,-0.32794590161723597],[127,-63,69,-0.33449290624893735],[127,-63,70,-0.3170196892404519],[127,-63,71,-0.266954097845614],[127,-63,72,-0.26301106723755807],[127,-63,73,-0.31265623989055735],[127,-63,74,-0.351502953465672],[127,-63,75,-0.3453579207049479],[127,-63,76,-0.33900989804958714],[127,-63,77,-0.33144186352296456],[127,-63,78,-0.2735762241427559],[127,-63,79,-0.21991461666760342],[127,-62,64,-0.08879807226014211],[127,-62,65,-0.09074524454340718],[127,-62,66,-0.12112788859361351],[127,-62,67,-0.29081148764265385],[127,-62,68,-0.311692180982707],[127,-62,69,-0.3270239743222426],[127,-62,70,-0.3092428609689546],[127,-62,71,-0.29458012929136057],[127,-62,72,-0.285448544714216],[127,-62,73,-0.3309623536048871],[127,-62,74,-0.34913882472441615],[127,-62,75,-0.341082947657896],[127,-62,76,-0.33403240968146564],[127,-62,77,-0.32474214576156396],[127,-62,78,-0.26973149789574236],[127,-62,79,-0.2338732442633843],[127,-61,64,-0.08690474217292371],[127,-61,65,-0.08542076542780286],[127,-61,66,-0.1362036925688384],[127,-61,67,-0.25462504369366196],[127,-61,68,-0.25829831240878565],[127,-61,69,-0.3027140144280364],[127,-61,70,-0.35217111578268784],[127,-61,71,-0.3799936103728836],[127,-61,72,-0.37245962049003173],[127,-61,73,-0.35850360562964695],[127,-61,74,-0.34862543122570655],[127,-61,75,-0.34097443911491987],[127,-61,76,-0.3302722971085872],[127,-61,77,-0.3234553184276315],[127,-61,78,-0.3197603161493487],[127,-61,79,-0.3161335044528731],[127,-60,64,-0.09752702436396588],[127,-60,65,-0.09565511591111253],[127,-60,66,-0.13675573048251738],[127,-60,67,-0.23252331788262176],[127,-60,68,-0.24494747627262403],[127,-60,69,-0.3004572892467524],[127,-60,70,-0.3479439481873559],[127,-60,71,-0.3699554598989562],[127,-60,72,-0.3610720634919646],[127,-60,73,-0.3474687604927175],[127,-60,74,-0.3370670226744545],[127,-60,75,-0.330081323849731],[127,-60,76,-0.3193913525115796],[127,-60,77,-0.3124636298110605],[127,-60,78,-0.30472357336711897],[127,-60,79,-0.3018209860332106],[127,-59,64,-0.40818322631171355],[127,-59,65,-0.397686729437138],[127,-59,66,-0.3924878544971697],[127,-59,67,-0.38781581976881135],[127,-59,68,-0.38258271168705416],[127,-59,69,-0.3748715351276062],[127,-59,70,-0.36055200430953904],[127,-59,71,-0.3547867044081555],[127,-59,72,-0.3451506861496937],[127,-59,73,-0.3353180943555266],[127,-59,74,-0.3236589077017352],[127,-59,75,-0.3162257612857803],[127,-59,76,-0.30680718390948036],[127,-59,77,-0.2985814205151227],[127,-59,78,-0.2905878372430738],[127,-59,79,-0.28649730972315957],[127,-58,64,-0.40546793031883477],[127,-58,65,-0.3936591528992152],[127,-58,66,-0.3896322596555983],[127,-58,67,-0.38558186345555234],[127,-58,68,-0.3809641539517824],[127,-58,69,-0.3690056436562826],[127,-58,70,-0.35291121394869723],[127,-58,71,-0.3463954105856619],[127,-58,72,-0.3366613845550316],[127,-58,73,-0.3291267567718339],[127,-58,74,-0.31766880965927546],[127,-58,75,-0.3104355638508948],[127,-58,76,-0.2999298591534907],[127,-58,77,-0.2904227942143546],[127,-58,78,-0.285931653700082],[127,-58,79,-0.281541170111831],[127,-57,64,-0.4054929937895706],[127,-57,65,-0.3938415850582079],[127,-57,66,-0.38755315760740544],[127,-57,67,-0.3842783083758974],[127,-57,68,-0.37988692876654495],[127,-57,69,-0.3657045226506293],[127,-57,70,-0.3481306654355671],[127,-57,71,-0.34116735446527746],[127,-57,72,-0.3308227371796162],[127,-57,73,-0.322643981379424],[127,-57,74,-0.3122785979719098],[127,-57,75,-0.3033252516677827],[127,-57,76,-0.29200061378059],[127,-57,77,-0.2840205024826407],[127,-57,78,-0.2781683645497647],[127,-57,79,-0.27437414818041783],[127,-56,64,-0.4058210919512378],[127,-56,65,-0.39423728964220034],[127,-56,66,-0.3829805357454401],[127,-56,67,-0.37873360305730175],[127,-56,68,-0.37316858150150917],[127,-56,69,-0.3620376642660501],[127,-56,70,-0.34674374837058924],[127,-56,71,-0.3378590496779234],[127,-56,72,-0.3289453657231212],[127,-56,73,-0.31572067323126407],[127,-56,74,-0.30586129539944507],[127,-56,75,-0.2987496874013408],[127,-56,76,-0.28727984220473857],[127,-56,77,-0.2788631418388307],[127,-56,78,-0.2733064811483934],[127,-56,79,-0.27029027020762914],[127,-55,64,-0.40589843563508765],[127,-55,65,-0.3943787091442311],[127,-55,66,-0.380901182273122],[127,-55,67,-0.37458132657456134],[127,-55,68,-0.36723461726724993],[127,-55,69,-0.35730881668355585],[127,-55,70,-0.3448929272978675],[127,-55,71,-0.3383151863628426],[127,-55,72,-0.3257591903896607],[127,-55,73,-0.3114760797482099],[127,-55,74,-0.30378280037398603],[127,-55,75,-0.29648611154850235],[127,-55,76,-0.28492419153515774],[127,-55,77,-0.2763054754469818],[127,-55,78,-0.2678416888805547],[127,-55,79,-0.2641384072698142],[127,-54,64,-0.4055271654895095],[127,-54,65,-0.39391430150632817],[127,-54,66,-0.38011940079736584],[127,-54,67,-0.3713528375808682],[127,-54,68,-0.3612292895770472],[127,-54,69,-0.3527319750028782],[127,-54,70,-0.344546475518535],[127,-54,71,-0.3379866851051297],[127,-54,72,-0.32552520763330384],[127,-54,73,-0.31080111222508405],[127,-54,74,-0.3018451631067438],[127,-54,75,-0.2957109024314108],[127,-54,76,-0.2841826636288324],[127,-54,77,-0.27239049449535624],[127,-54,78,-0.2642389917857801],[127,-54,79,-0.25919294478352595],[127,-53,64,-0.3932277678624674],[127,-53,65,-0.39816810480949405],[127,-53,66,-0.38518521970174247],[127,-53,67,-0.37549867244616886],[127,-53,68,-0.3646166023927272],[127,-53,69,-0.35421846310738075],[127,-53,70,-0.3490036942810903],[127,-53,71,-0.34278514875126653],[127,-53,72,-0.32853644097978774],[127,-53,73,-0.31581523091383246],[127,-53,74,-0.30300956362494913],[127,-53,75,-0.29876197110832015],[127,-53,76,-0.2852614285022787],[127,-53,77,-0.2740526405414807],[127,-53,78,-0.2677540945585749],[127,-53,79,-0.2624590425221892],[127,-52,64,-0.37777206104214744],[127,-52,65,-0.3961534586766089],[127,-52,66,-0.38166855153584],[127,-52,67,-0.36993755238895537],[127,-52,68,-0.35942089372314745],[127,-52,69,-0.3458973636961257],[127,-52,70,-0.34052596874807334],[127,-52,71,-0.3300822448794436],[127,-52,72,-0.3163363384714399],[127,-52,73,-0.30600456468439885],[127,-52,74,-0.2944530646190128],[127,-52,75,-0.2863669494413031],[127,-52,76,-0.2721432868037458],[127,-52,77,-0.265618426810247],[127,-52,78,-0.2584856283539232],[127,-52,79,-0.2517386707488592],[127,-51,64,-0.3169800839627427],[127,-51,65,-0.35944904096862995],[127,-51,66,-0.3974933540766744],[127,-51,67,-0.3788106187861065],[127,-51,68,-0.36271059544279005],[127,-51,69,-0.34874611368194663],[127,-51,70,-0.3427592420293807],[127,-51,71,-0.3317979973873166],[127,-51,72,-0.32389524143717097],[127,-51,73,-0.3187762176046184],[127,-51,74,-0.309924630492571],[127,-51,75,-0.29668186616590064],[127,-51,76,-0.28077300846834397],[127,-51,77,-0.27078174507410957],[127,-51,78,-0.2575971575898113],[127,-51,79,-0.2452858973403435],[127,-50,64,-0.30490829023890625],[127,-50,65,-0.3398734320154667],[127,-50,66,-0.39365475950543327],[127,-50,67,-0.37367103416625363],[127,-50,68,-0.356213566013449],[127,-50,69,-0.3450958293954711],[127,-50,70,-0.3382793312633713],[127,-50,71,-0.32878604322063504],[127,-50,72,-0.32313107505093774],[127,-50,73,-0.3157591228345253],[127,-50,74,-0.3050277526832723],[127,-50,75,-0.2945442329364621],[127,-50,76,-0.27869043465292476],[127,-50,77,-0.2651141057784146],[127,-50,78,-0.25363944208143896],[127,-50,79,-0.24217147661228217],[127,-49,64,-0.2664958595792223],[127,-49,65,-0.3291093486030352],[127,-49,66,-0.39491146483994644],[127,-49,67,-0.37361461731542506],[127,-49,68,-0.35672416055920997],[127,-49,69,-0.3435743893970403],[127,-49,70,-0.33574934137999907],[127,-49,71,-0.3272751577725659],[127,-49,72,-0.3200962082930089],[127,-49,73,-0.3117955659765822],[127,-49,74,-0.3021913005255203],[127,-49,75,-0.2917969061308617],[127,-49,76,-0.2764504713647669],[127,-49,77,-0.26230938457545167],[127,-49,78,-0.24842875474579235],[127,-49,79,-0.23645548351025444],[127,-48,64,-0.23722042551320732],[127,-48,65,-0.3089626681170662],[127,-48,66,-0.3919116603785959],[127,-48,67,-0.3728037178370146],[127,-48,68,-0.3568385799873868],[127,-48,69,-0.3418890759040404],[127,-48,70,-0.33150745287526867],[127,-48,71,-0.3237494363383592],[127,-48,72,-0.3152944737515265],[127,-48,73,-0.30807373814568095],[127,-48,74,-0.29954214979874905],[127,-48,75,-0.2885672003167895],[127,-48,76,-0.27440410845654495],[127,-48,77,-0.2615246085124103],[127,-48,78,-0.24590959764326942],[127,-48,79,-0.2326485134499149],[127,-47,64,-0.23932828130847875],[127,-47,65,-0.3110994667531454],[127,-47,66,-0.39208830704339315],[127,-47,67,-0.3785694382177175],[127,-47,68,-0.3658972423188788],[127,-47,69,-0.3504023305825415],[127,-47,70,-0.33536609547175544],[127,-47,71,-0.32358879506633353],[127,-47,72,-0.30917537693793407],[127,-47,73,-0.2952147898308052],[127,-47,74,-0.28541815361549794],[127,-47,75,-0.2736637481288649],[127,-47,76,-0.26217863372874106],[127,-47,77,-0.2564456102173627],[127,-47,78,-0.24699081247657048],[127,-47,79,-0.2384778794541517],[127,-46,64,-0.3040522850590627],[127,-46,65,-0.3734823716733579],[127,-46,66,-0.3905757118614804],[127,-46,67,-0.3777459947292652],[127,-46,68,-0.36618400940717066],[127,-46,69,-0.35139921940981045],[127,-46,70,-0.33539937889021193],[127,-46,71,-0.3207301273400347],[127,-46,72,-0.30724598045150064],[127,-46,73,-0.2917859646405528],[127,-46,74,-0.2819360179666761],[127,-46,75,-0.2726476094519558],[127,-46,76,-0.2605963652046616],[127,-46,77,-0.25617731534909405],[127,-46,78,-0.24730131382717402],[127,-46,79,-0.23834079492833138],[127,-45,64,-0.28566082808424464],[127,-45,65,-0.3550510377970308],[127,-45,66,-0.39243912787451884],[127,-45,67,-0.3826882969680214],[127,-45,68,-0.37092809077796296],[127,-45,69,-0.35678633919229974],[127,-45,70,-0.34161123558301165],[127,-45,71,-0.32535423649803347],[127,-45,72,-0.30977195729159557],[127,-45,73,-0.29515568493065986],[127,-45,74,-0.28363905252926325],[127,-45,75,-0.27487711954010186],[127,-45,76,-0.2661273574814238],[127,-45,77,-0.25964802364472983],[127,-45,78,-0.25314697459695745],[127,-45,79,-0.24289415990505464],[127,-44,64,-0.17370830889630096],[127,-44,65,-0.2982454349848722],[127,-44,66,-0.41084294619341666],[127,-44,67,-0.41191622188673493],[127,-44,68,-0.40471513427478334],[127,-44,69,-0.39610615306274616],[127,-44,70,-0.38723979111530554],[127,-44,71,-0.3741192921243148],[127,-44,72,-0.3595056990502008],[127,-44,73,-0.34516012159410403],[127,-44,74,-0.33434942850258553],[127,-44,75,-0.32463849494814045],[127,-44,76,-0.3183912114032566],[127,-44,77,-0.31058799967387596],[127,-44,78,-0.3034152599041915],[127,-44,79,-0.29437393136766826],[127,-43,64,-0.058522893835012246],[127,-43,65,-0.16737892702235824],[127,-43,66,-0.29989807053094186],[127,-43,67,-0.406627407188638],[127,-43,68,-0.4008482042862639],[127,-43,69,-0.39315342818040305],[127,-43,70,-0.3891340011393716],[127,-43,71,-0.3760897656678268],[127,-43,72,-0.3602431522106926],[127,-43,73,-0.3461909203796578],[127,-43,74,-0.33714885708519654],[127,-43,75,-0.3253091396845952],[127,-43,76,-0.3193651479336987],[127,-43,77,-0.3115103411076524],[127,-43,78,-0.3041671312588984],[127,-43,79,-0.2957370341856157],[127,-42,64,-0.06896236160908714],[127,-42,65,-0.16781577842360154],[127,-42,66,-0.2991650440024786],[127,-42,67,-0.4034268068690459],[127,-42,68,-0.39883971507188853],[127,-42,69,-0.39382709031939694],[127,-42,70,-0.38910056863052833],[127,-42,71,-0.37707728839875976],[127,-42,72,-0.3603617916966278],[127,-42,73,-0.34701858131130026],[127,-42,74,-0.3380323160862314],[127,-42,75,-0.32575360861567937],[127,-42,76,-0.3183085386347475],[127,-42,77,-0.3116309882459773],[127,-42,78,-0.3034958235614192],[127,-42,79,-0.2936765569974892],[127,-41,64,-0.06733959536853612],[127,-41,65,-0.1800328336373335],[127,-41,66,-0.34105218456496067],[127,-41,67,-0.4045173795197513],[127,-41,68,-0.39820737138096374],[127,-41,69,-0.39349376446578377],[127,-41,70,-0.3906017246576103],[127,-41,71,-0.37839185805585707],[127,-41,72,-0.3647342267990189],[127,-41,73,-0.3489345673928766],[127,-41,74,-0.3397030274974865],[127,-41,75,-0.3273248547557038],[127,-41,76,-0.31811827470442733],[127,-41,77,-0.3073664571744687],[127,-41,78,-0.3014208849910037],[127,-41,79,-0.28907181303688273],[127,-40,64,-0.011635156731409968],[127,-40,65,-0.12265196451715038],[127,-40,66,-0.28447653840795134],[127,-40,67,-0.4021438430502006],[127,-40,68,-0.3955716128848473],[127,-40,69,-0.39247076090127986],[127,-40,70,-0.3894394377220946],[127,-40,71,-0.3769028928470408],[127,-40,72,-0.36421782700605676],[127,-40,73,-0.3506725911323004],[127,-40,74,-0.34148648197701176],[127,-40,75,-0.33039773061014044],[127,-40,76,-0.3164597109690585],[127,-40,77,-0.30494324627628705],[127,-40,78,-0.2979185292547007],[127,-40,79,-0.28560477315413113],[127,-39,64,0.030883110709646167],[127,-39,65,-0.08714385026718408],[127,-39,66,-0.27871031146535863],[127,-39,67,-0.4043307488377113],[127,-39,68,-0.3994731890606833],[127,-39,69,-0.3963985671727563],[127,-39,70,-0.3932195679156516],[127,-39,71,-0.38229980772116995],[127,-39,72,-0.3709121701084558],[127,-39,73,-0.3610928757270497],[127,-39,74,-0.354530197616739],[127,-39,75,-0.3406270345233922],[127,-39,76,-0.32617409119741464],[127,-39,77,-0.31117753898414946],[127,-39,78,-0.29990554631079075],[127,-39,79,-0.2879877589064982],[127,-38,64,0.04491010870533346],[127,-38,65,-0.08323810625429912],[127,-38,66,-0.32982652674831203],[127,-38,67,-0.4034778024264902],[127,-38,68,-0.3987930611873031],[127,-38,69,-0.39574452482931477],[127,-38,70,-0.3872967854077684],[127,-38,71,-0.37919153351400936],[127,-38,72,-0.3676997816201779],[127,-38,73,-0.35883924470578177],[127,-38,74,-0.35170031954385306],[127,-38,75,-0.34081127874848555],[127,-38,76,-0.32463338895361715],[127,-38,77,-0.31030555959662787],[127,-38,78,-0.29938944150900365],[127,-38,79,-0.28706777185494986],[127,-37,64,0.09918623909190122],[127,-37,65,-0.022576545676802895],[127,-37,66,-0.2734961656646162],[127,-37,67,-0.40516263570607897],[127,-37,68,-0.40225390639952696],[127,-37,69,-0.3983749547434723],[127,-37,70,-0.3889192658535187],[127,-37,71,-0.37812115393674034],[127,-37,72,-0.3691126284036632],[127,-37,73,-0.3611227853565692],[127,-37,74,-0.3510523970358571],[127,-37,75,-0.3448092486325351],[127,-37,76,-0.3299429848948712],[127,-37,77,-0.31523379935799695],[127,-37,78,-0.3030257489821312],[127,-37,79,-0.29059998713111085],[127,-36,64,0.1215094225278831],[127,-36,65,-0.0017556068161164173],[127,-36,66,-0.264100674869884],[127,-36,67,-0.39548707633384167],[127,-36,68,-0.391901512163606],[127,-36,69,-0.3847256045957239],[127,-36,70,-0.3756494592919726],[127,-36,71,-0.3624701277599387],[127,-36,72,-0.35667938116388914],[127,-36,73,-0.348176688867606],[127,-36,74,-0.3382768723905997],[127,-36,75,-0.33072391383221905],[127,-36,76,-0.31858138395210794],[127,-36,77,-0.3046827377890382],[127,-36,78,-0.2907187335227063],[127,-36,79,-0.27813242101715674],[127,-35,64,0.15480667999132477],[127,-35,65,0.15783092290804238],[127,-35,66,0.07121630133394036],[127,-35,67,-0.06052351498011965],[127,-35,68,-0.14418749113155163],[127,-35,69,-0.37155390267617305],[127,-35,70,-0.3658351754339916],[127,-35,71,-0.3554646693459705],[127,-35,72,-0.34856437000515184],[127,-35,73,-0.34192673065763163],[127,-35,74,-0.3325272784272551],[127,-35,75,-0.31977985644103724],[127,-35,76,-0.3092077536008555],[127,-35,77,-0.29380451220361875],[127,-35,78,-0.2768059473777879],[127,-35,79,-0.2603997640292308],[127,-34,64,0.14514994445129864],[127,-34,65,0.14894503078646054],[127,-34,66,0.10746651464179147],[127,-34,67,-0.037990738513578315],[127,-34,68,-0.14124881385329638],[127,-34,69,-0.3445070646326191],[127,-34,70,-0.36138284846873014],[127,-34,71,-0.35095441786990217],[127,-34,72,-0.3440718242214963],[127,-34,73,-0.3378741452165354],[127,-34,74,-0.32904556465876134],[127,-34,75,-0.31678085285408447],[127,-34,76,-0.30660106626292877],[127,-34,77,-0.2930052828676225],[127,-34,78,-0.27478519980329336],[127,-34,79,-0.2571258576813197],[127,-33,64,0.14057167046454683],[127,-33,65,0.14182149208686035],[127,-33,66,0.1294424481116735],[127,-33,67,0.005648881295124808],[127,-33,68,-0.1171961133983063],[127,-33,69,-0.29960252322768355],[127,-33,70,-0.3344806188230859],[127,-33,71,-0.3279344835312894],[127,-33,72,-0.3262708302818899],[127,-33,73,-0.32426361552789373],[127,-33,74,-0.31852976686804546],[127,-33,75,-0.3123383847183872],[127,-33,76,-0.30860818364996057],[127,-33,77,-0.2973759426661237],[127,-33,78,-0.285732583770885],[127,-33,79,-0.26843220654074584],[127,-32,64,0.14554493731710144],[127,-32,65,0.14720358604947312],[127,-32,66,0.14738592917784862],[127,-32,67,0.0791952432857399],[127,-32,68,-0.08198197771790228],[127,-32,69,-0.27224274041287183],[127,-32,70,-0.32990537042235557],[127,-32,71,-0.32682348129952976],[127,-32,72,-0.3225994811701158],[127,-32,73,-0.32106308957135854],[127,-32,74,-0.31673225747231204],[127,-32,75,-0.30987652499743934],[127,-32,76,-0.306916271041607],[127,-32,77,-0.2950207079600232],[127,-32,78,-0.28368383619839355],[127,-32,79,-0.2651374878695131],[127,-31,64,0.1443812391665391],[127,-31,65,0.15036650231121323],[127,-31,66,0.14965339393683458],[127,-31,67,0.1513028954724089],[127,-31,68,0.03825583000805555],[127,-31,69,-0.13995133666047374],[127,-31,70,-0.221954900510573],[127,-31,71,-0.2529271719676838],[127,-31,72,-0.28225299502841594],[127,-31,73,-0.2862687999232859],[127,-31,74,-0.29815884458963976],[127,-31,75,-0.3066581435811456],[127,-31,76,-0.3031200961249865],[127,-31,77,-0.29512925575199306],[127,-31,78,-0.2834313011472245],[127,-31,79,-0.26405981126196826],[127,-30,64,0.1524334562892709],[127,-30,65,0.156096451743804],[127,-30,66,0.15781745197397756],[127,-30,67,0.16079117586990332],[127,-30,68,0.07316854210527601],[127,-30,69,-0.07610770987295382],[127,-30,70,-0.19194602523063575],[127,-30,71,-0.2182089502264718],[127,-30,72,-0.239792856766269],[127,-30,73,-0.2453369752616905],[127,-30,74,-0.29373680051618406],[127,-30,75,-0.3049749773976329],[127,-30,76,-0.30323408157532905],[127,-30,77,-0.29559589513273926],[127,-30,78,-0.2833879432081673],[127,-30,79,-0.26365403037826707],[127,-29,64,0.16450023912488348],[127,-29,65,0.1672400610572927],[127,-29,66,0.16852504172449018],[127,-29,67,0.1703545638964109],[127,-29,68,0.17172413788064764],[127,-29,69,0.023680892507870255],[127,-29,70,-0.09153139436311347],[127,-29,71,-0.13377768715533486],[127,-29,72,-0.15176878582167178],[127,-29,73,-0.16795451060947358],[127,-29,74,-0.24355082935419742],[127,-29,75,-0.31008914443211183],[127,-29,76,-0.30788213461342573],[127,-29,77,-0.29861931064386726],[127,-29,78,-0.2851600451841111],[127,-29,79,-0.26838546626225523],[127,-28,64,0.15561120258656333],[127,-28,65,0.1574933299150668],[127,-28,66,0.16082250731499284],[127,-28,67,0.16214210907143112],[127,-28,68,0.16123445692316712],[127,-28,69,0.0708379662843795],[127,-28,70,-0.03639045632680349],[127,-28,71,-0.08406781857111811],[127,-28,72,-0.11057878165987034],[127,-28,73,-0.1505019021179606],[127,-28,74,-0.20681462439762213],[127,-28,75,-0.300741616535695],[127,-28,76,-0.2980723174399728],[127,-28,77,-0.2900056349063016],[127,-28,78,-0.27702586995571177],[127,-28,79,-0.25839241754230635],[127,-27,64,0.16167568430095627],[127,-27,65,0.16250456940861008],[127,-27,66,0.16387391023415265],[127,-27,67,0.1632146424516523],[127,-27,68,0.16074397484895595],[127,-27,69,0.15476972766976838],[127,-27,70,0.06496336538392422],[127,-27,71,-0.0026550463468799634],[127,-27,72,-0.03578111512850052],[127,-27,73,-0.06931711049919614],[127,-27,74,-0.131602443961955],[127,-27,75,-0.27865196203833914],[127,-27,76,-0.2885900966858862],[127,-27,77,-0.2827352853564035],[127,-27,78,-0.2697861251151906],[127,-27,79,-0.2563996379154264],[127,-26,64,0.21614471534106255],[127,-26,65,0.21879352858005527],[127,-26,66,0.2170209748562772],[127,-26,67,0.21613142433195937],[127,-26,68,0.21351338906706988],[127,-26,69,0.21232977704308872],[127,-26,70,0.16658329955159162],[127,-26,71,0.07102828795036142],[127,-26,72,0.026979562715418015],[127,-26,73,-0.025526345526505123],[127,-26,74,-0.1405401337812012],[127,-26,75,-0.2742501150961585],[127,-26,76,-0.2851789525814591],[127,-26,77,-0.2805276699060249],[127,-26,78,-0.26993986110004864],[127,-26,79,-0.2555802766868859],[127,-25,64,0.2215454859409304],[127,-25,65,0.22015308457587127],[127,-25,66,0.2185246767493454],[127,-25,67,0.2182381444980035],[127,-25,68,0.21582025548255912],[127,-25,69,0.21318113616484177],[127,-25,70,0.210812031552925],[127,-25,71,0.12212842124853363],[127,-25,72,0.05247362493619351],[127,-25,73,-0.02612475574865225],[127,-25,74,-0.17861360764663747],[127,-25,75,-0.2836865056147026],[127,-25,76,-0.28225375344508713],[127,-25,77,-0.2774778359585696],[127,-25,78,-0.26777233783399546],[127,-25,79,-0.25447691246552234],[127,-24,64,0.2277464739397655],[127,-24,65,0.22560879433974948],[127,-24,66,0.22277832839530634],[127,-24,67,0.2235531624349778],[127,-24,68,0.21821924840146645],[127,-24,69,0.21524896882517455],[127,-24,70,0.2128928371311591],[127,-24,71,0.18944348176208398],[127,-24,72,0.08963270307887866],[127,-24,73,-0.01758417655781186],[127,-24,74,-0.18040783753646059],[127,-24,75,-0.2801449063795112],[127,-24,76,-0.27770057995100134],[127,-24,77,-0.2756295959471838],[127,-24,78,-0.2647266720366511],[127,-24,79,-0.25332216666163965],[127,-23,64,0.22692781829783804],[127,-23,65,0.22464902798190456],[127,-23,66,0.22476216230949594],[127,-23,67,0.22527363602228112],[127,-23,68,0.2188809221185725],[127,-23,69,0.21603753822931782],[127,-23,70,0.21409255233765284],[127,-23,71,0.17611531757065652],[127,-23,72,0.055927375958447934],[127,-23,73,-0.08522084297837437],[127,-23,74,-0.268740985827734],[127,-23,75,-0.26653446234429645],[127,-23,76,-0.2653038087490077],[127,-23,77,-0.27011330557111596],[127,-23,78,-0.2676757960939703],[127,-23,79,-0.25952017761957474],[127,-22,64,0.2344023550051082],[127,-22,65,0.23043976204022534],[127,-22,66,0.2339390970689005],[127,-22,67,0.23315250810139657],[127,-22,68,0.226089802056337],[127,-22,69,0.2256073170015357],[127,-22,70,0.22533477079066916],[127,-22,71,0.22612264258012665],[127,-22,72,0.07376529854440389],[127,-22,73,-0.09703059066536687],[127,-22,74,-0.2622435873149105],[127,-22,75,-0.26466959199291573],[127,-22,76,-0.26343890545030524],[127,-22,77,-0.2655612647202099],[127,-22,78,-0.2652242135416139],[127,-22,79,-0.26032134871962553],[127,-21,64,0.23418801812065165],[127,-21,65,0.2332648368506051],[127,-21,66,0.23549060963240662],[127,-21,67,0.23437328064138896],[127,-21,68,0.22874349582917175],[127,-21,69,0.2265901575871174],[127,-21,70,0.22585841240176308],[127,-21,71,0.22545594746825104],[127,-21,72,0.13389342026027085],[127,-21,73,-0.0443800613192718],[127,-21,74,-0.22217769189748662],[127,-21,75,-0.26329373081182106],[127,-21,76,-0.2643027399167799],[127,-21,77,-0.2659407536341177],[127,-21,78,-0.26841025975772004],[127,-21,79,-0.2655398323070292],[127,-20,64,0.22393497887215547],[127,-20,65,0.22318940645739155],[127,-20,66,0.223026254209932],[127,-20,67,0.22348456447823098],[127,-20,68,0.22077151382562607],[127,-20,69,0.21647633222813767],[127,-20,70,0.21793149335879458],[127,-20,71,0.22051509902355454],[127,-20,72,0.1404076121320953],[127,-20,73,-0.016890026913818745],[127,-20,74,-0.21704839023473702],[127,-20,75,-0.25197352115133237],[127,-20,76,-0.25552027317083437],[127,-20,77,-0.25591137773394157],[127,-20,78,-0.2593291944629591],[127,-20,79,-0.2601327040367509],[127,-19,64,0.2255614370083028],[127,-19,65,0.22169991063464733],[127,-19,66,0.22342982173516793],[127,-19,67,0.22403143951727444],[127,-19,68,0.22061315868753797],[127,-19,69,0.2186837407454091],[127,-19,70,0.2216622862075113],[127,-19,71,0.22346025715250228],[127,-19,72,0.18998707328412495],[127,-19,73,0.00618372660842309],[127,-19,74,-0.22068765816967575],[127,-19,75,-0.2508205779391707],[127,-19,76,-0.2524173811688303],[127,-19,77,-0.2535850133711114],[127,-19,78,-0.2543557571797733],[127,-19,79,-0.2530679973103133],[127,-18,64,0.21845397736544725],[127,-18,65,0.21374544649459695],[127,-18,66,0.2142207324824275],[127,-18,67,0.2142591854305242],[127,-18,68,0.21080146104543906],[127,-18,69,0.20894418783432253],[127,-18,70,0.21281393830138173],[127,-18,71,0.2138356448487883],[127,-18,72,0.19736457650057626],[127,-18,73,0.004202949208095608],[127,-18,74,-0.22472724857159224],[127,-18,75,-0.2486336302215974],[127,-18,76,-0.2478798425339626],[127,-18,77,-0.24976101122166755],[127,-18,78,-0.2513112632106621],[127,-18,79,-0.2525749301131023],[127,-17,64,0.2141836465085335],[127,-17,65,0.2087548886434782],[127,-17,66,0.21124189457947046],[127,-17,67,0.21236966207945243],[127,-17,68,0.20985001889873098],[127,-17,69,0.21041498866793729],[127,-17,70,0.21533468316446272],[127,-17,71,0.21761915762747114],[127,-17,72,0.222122668207606],[127,-17,73,0.0033131111007412284],[127,-17,74,-0.20943080359031005],[127,-17,75,-0.24440969133802354],[127,-17,76,-0.24108017849453983],[127,-17,77,-0.24356743306487527],[127,-17,78,-0.24687028230005817],[127,-17,79,-0.24702571351791344],[127,-16,64,0.21764181068551727],[127,-16,65,0.21252457849744946],[127,-16,66,0.2152015164804188],[127,-16,67,0.21665340289621907],[127,-16,68,0.21554842237342423],[127,-16,69,0.21334954667219264],[127,-16,70,0.21723745823030102],[127,-16,71,0.2196699726564394],[127,-16,72,0.2262628475681843],[127,-16,73,0.04707283087693048],[127,-16,74,-0.11579468529721144],[127,-16,75,-0.24017607732542082],[127,-16,76,-0.237960902714254],[127,-16,77,-0.23995371142357555],[127,-16,78,-0.2430073374475151],[127,-16,79,-0.2424625361009047],[127,-15,64,0.21430462118564772],[127,-15,65,0.20996867734173855],[127,-15,66,0.21049649912590973],[127,-15,67,0.21766110940162361],[127,-15,68,0.21443099797304216],[127,-15,69,0.21488280260451645],[127,-15,70,0.21867528967743435],[127,-15,71,0.22176007029790676],[127,-15,72,0.22731110572594637],[127,-15,73,0.06743493375243076],[127,-15,74,-0.11224762094649962],[127,-15,75,-0.23231422971215704],[127,-15,76,-0.23017450280831736],[127,-15,77,-0.22874518330419577],[127,-15,78,-0.2293728041492216],[127,-15,79,-0.2266385231114279],[127,-14,64,0.12082355497473561],[127,-14,65,0.116804863975737],[127,-14,66,0.11817527398960807],[127,-14,67,0.12602742000722922],[127,-14,68,0.12450086297684809],[127,-14,69,0.12454919348079532],[127,-14,70,0.12873366306109257],[127,-14,71,0.1319884824201424],[127,-14,72,0.13865477946011792],[127,-14,73,0.021462207629780405],[127,-14,74,-0.1101573265583554],[127,-14,75,-0.2272025318960572],[127,-14,76,-0.22770663879016667],[127,-14,77,-0.22755319934585408],[127,-14,78,-0.22740565505570717],[127,-14,79,-0.22199151109906626],[127,-13,64,0.11796784487344149],[127,-13,65,0.11515475347742457],[127,-13,66,0.11887376092713273],[127,-13,67,0.12425060039589653],[127,-13,68,0.12693261164633643],[127,-13,69,0.12798779744231956],[127,-13,70,0.13054288827545335],[127,-13,71,0.13443120464546307],[127,-13,72,0.13945377618901567],[127,-13,73,0.08538299353296747],[127,-13,74,-0.05282368197687157],[127,-13,75,-0.21035084111967944],[127,-13,76,-0.2299006370207295],[127,-13,77,-0.23251156762548536],[127,-13,78,-0.23237748836058997],[127,-13,79,-0.22527756259458315],[127,-12,64,0.10722678908377337],[127,-12,65,0.1040851989769272],[127,-12,66,0.10693886314145426],[127,-12,67,0.11320107363716651],[127,-12,68,0.11509449774224989],[127,-12,69,0.11902187459284966],[127,-12,70,0.12111010844310924],[127,-12,71,0.12262205955263779],[127,-12,72,0.12849871566259377],[127,-12,73,0.06718432767223573],[127,-12,74,-0.05357585984052085],[127,-12,75,-0.1941364104130167],[127,-12,76,-0.22680778883452807],[127,-12,77,-0.22806286317093122],[127,-12,78,-0.2286787105835954],[127,-12,79,-0.22165563064226154],[127,-11,64,0.10579622730026049],[127,-11,65,0.10231538336066345],[127,-11,66,0.10236311373347172],[127,-11,67,0.10650227749089347],[127,-11,68,0.11069794850670597],[127,-11,69,0.11736116892948112],[127,-11,70,0.11929982827839328],[127,-11,71,0.12121961992938518],[127,-11,72,0.12760002776418747],[127,-11,73,0.051991990286539086],[127,-11,74,-0.08684871926148158],[127,-11,75,-0.22877742344338797],[127,-11,76,-0.23150674709577043],[127,-11,77,-0.23121306000582553],[127,-11,78,-0.2313660017363297],[127,-11,79,-0.22839886552617714],[127,-10,64,0.09570479387199851],[127,-10,65,0.09076760031364065],[127,-10,66,0.09266992696374496],[127,-10,67,0.09786219797073792],[127,-10,68,0.10170306607034282],[127,-10,69,0.10907737492586628],[127,-10,70,0.11037963285587636],[127,-10,71,0.11277572777458757],[127,-10,72,0.11682311986957652],[127,-10,73,0.05065415778828403],[127,-10,74,-0.10583863723454284],[127,-10,75,-0.22685072528864017],[127,-10,76,-0.23078364705230392],[127,-10,77,-0.23094738508482188],[127,-10,78,-0.22797138947923642],[127,-10,79,-0.22482971751763944],[127,-9,64,0.0976805633625513],[127,-9,65,0.09519444603822531],[127,-9,66,0.09473442065016102],[127,-9,67,0.10041156691609773],[127,-9,68,0.10607184337069536],[127,-9,69,0.11388437271119159],[127,-9,70,0.11562039223969132],[127,-9,71,0.11947257021355497],[127,-9,72,0.12410776040405791],[127,-9,73,0.061209731295784275],[127,-9,74,-0.10228059765156113],[127,-9,75,-0.22348955520462233],[127,-9,76,-0.2270622844701507],[127,-9,77,-0.2275141386389193],[127,-9,78,-0.2220433142272735],[127,-9,79,-0.2176090402501597],[127,-8,64,0.09780551420305578],[127,-8,65,0.09801990348006072],[127,-8,66,0.09567776540340397],[127,-8,67,0.09981357835422047],[127,-8,68,0.10647900300028208],[127,-8,69,0.1134332924443763],[127,-8,70,0.11637941311635894],[127,-8,71,0.1208848323422682],[127,-8,72,0.1293463562692661],[127,-8,73,0.10270876347693575],[127,-8,74,-0.04727535445659445],[127,-8,75,-0.22386033520175314],[127,-8,76,-0.22573832330457766],[127,-8,77,-0.22366509849047073],[127,-8,78,-0.21838210961996626],[127,-8,79,-0.21243678782910708],[127,-7,64,0.09549347193539184],[127,-7,65,0.09522162275652288],[127,-7,66,0.0951066535274792],[127,-7,67,0.09678770392473401],[127,-7,68,0.10566683111821772],[127,-7,69,0.11167732404666265],[127,-7,70,0.11598797009033195],[127,-7,71,0.12092340191967801],[127,-7,72,0.13034032008694224],[127,-7,73,0.10459855725044812],[127,-7,74,-0.02754563621515485],[127,-7,75,-0.22012256085024415],[127,-7,76,-0.2210405501143089],[127,-7,77,-0.22166032815741038],[127,-7,78,-0.2153624843844548],[127,-7,79,-0.2087911519852325],[127,-6,64,0.0977523030808827],[127,-6,65,0.09915785239514324],[127,-6,66,0.10132396596824764],[127,-6,67,0.10025528174851935],[127,-6,68,0.1051936694910904],[127,-6,69,0.10837842416327886],[127,-6,70,0.1178703016528409],[127,-6,71,0.12083345531159473],[127,-6,72,0.1306000757708513],[127,-6,73,0.11614741945943396],[127,-6,74,-0.019455993633870766],[127,-6,75,-0.21343542858364756],[127,-6,76,-0.2163975248999389],[127,-6,77,-0.21820556738209845],[127,-6,78,-0.21330592840614715],[127,-6,79,-0.20718220009130664],[127,-5,64,0.09416449222481778],[127,-5,65,0.09940054751357442],[127,-5,66,0.10228638812880078],[127,-5,67,0.10095850416468846],[127,-5,68,0.10410584754843294],[127,-5,69,0.10737149984071023],[127,-5,70,0.11567492372747694],[127,-5,71,0.1221847516519802],[127,-5,72,0.13133712976256662],[127,-5,73,0.13915380917055828],[127,-5,74,0.15146044213501464],[127,-5,75,0.09910687985652236],[127,-5,76,-0.09660823856922471],[127,-5,77,-0.21719072428554848],[127,-5,78,-0.2136102115947477],[127,-5,79,-0.2078392654786121],[127,-4,64,0.08226707509239664],[127,-4,65,0.08621077796622535],[127,-4,66,0.09075752078823782],[127,-4,67,0.09407801543712105],[127,-4,68,0.09629541195916716],[127,-4,69,0.09637353210869036],[127,-4,70,0.103720282647348],[127,-4,71,0.1132037997280755],[127,-4,72,0.12065360472382619],[127,-4,73,0.12693345970738543],[127,-4,74,0.13935602951813844],[127,-4,75,0.09546275800610884],[127,-4,76,-0.10431049401647764],[127,-4,77,-0.2117512937126133],[127,-4,78,-0.21052718534949638],[127,-4,79,-0.20572553195622056],[127,-3,64,0.07506612392919437],[127,-3,65,0.07780858016041597],[127,-3,66,0.08198465703330196],[127,-3,67,0.08900642685691419],[127,-3,68,0.08957820324498955],[127,-3,69,0.0912096597377853],[127,-3,70,0.09689478119464717],[127,-3,71,0.10913305732461559],[127,-3,72,0.12013124795516011],[127,-3,73,0.1291728172595915],[127,-3,74,0.14376385765193198],[127,-3,75,0.10461753595152382],[127,-3,76,-0.08857372799077833],[127,-3,77,-0.19223433462382528],[127,-3,78,-0.19075385002839346],[127,-3,79,-0.18875394234907028],[127,-2,64,0.07011158070807294],[127,-2,65,0.0719880863060344],[127,-2,66,0.08024140092755067],[127,-2,67,0.08525545259076613],[127,-2,68,0.08638436605100594],[127,-2,69,0.0890769201071098],[127,-2,70,0.09234523770051299],[127,-2,71,0.10304668010501948],[127,-2,72,0.11310531430577025],[127,-2,73,0.12459083054001255],[127,-2,74,0.14078811138217276],[127,-2,75,0.09788058932046856],[127,-2,76,-0.07601228795497426],[127,-2,77,-0.19046819643592025],[127,-2,78,-0.1874366571649365],[127,-2,79,-0.1851935498983582],[127,-1,64,0.07213820855088833],[127,-1,65,0.07336019442890737],[127,-1,66,0.08152293396001635],[127,-1,67,0.08615283890208177],[127,-1,68,0.08942722048167845],[127,-1,69,0.09193280661177237],[127,-1,70,0.09311542161661661],[127,-1,71,0.10090442453195841],[127,-1,72,0.11451000066088954],[127,-1,73,0.12617187543696468],[127,-1,74,0.14224797046262205],[127,-1,75,0.018536065466232904],[127,-1,76,-0.1474748017092642],[127,-1,77,-0.18689702916010498],[127,-1,78,-0.18246888970489128],[127,-1,79,-0.17852187197638097],[127,0,64,-0.02656812496475522],[127,0,65,-0.027203111112393263],[127,0,66,-0.027754222540061962],[127,0,67,-0.029198294283220516],[127,0,68,-0.032937642228605624],[127,0,69,-0.03357443963671894],[127,0,70,-0.03620597846575599],[127,0,71,-0.04000810503353083],[127,0,72,-0.047824118832941714],[127,0,73,-0.06113384137852776],[127,0,74,-0.07076485478837849],[127,0,75,-0.07812839470287403],[127,0,76,-0.08453240615128149],[127,0,77,-0.08606264173591907],[127,0,78,-0.08397976141630356],[127,0,79,-0.08351221319458432],[127,1,64,-0.023276110140670242],[127,1,65,-0.025913972628989757],[127,1,66,-0.023825362420528823],[127,1,67,-0.023420880837437402],[127,1,68,-0.027089839499063517],[127,1,69,-0.029090495826562313],[127,1,70,-0.03627047193667976],[127,1,71,-0.03819661281150222],[127,1,72,-0.04801537169643913],[127,1,73,-0.061496305982647465],[127,1,74,-0.07092070276914063],[127,1,75,-0.07818079559242144],[127,1,76,-0.08257816974306378],[127,1,77,-0.08564606819132559],[127,1,78,-0.08657209901020085],[127,1,79,-0.08221074366501101],[127,2,64,-0.020400107348089613],[127,2,65,-0.021845667957192116],[127,2,66,-0.02023119462509712],[127,2,67,-0.017894323607956092],[127,2,68,-0.02254540920874276],[127,2,69,-0.028810178765435596],[127,2,70,-0.036296997160191885],[127,2,71,-0.03929683966463249],[127,2,72,-0.04872203333997557],[127,2,73,-0.05997978270931366],[127,2,74,-0.0683421636137161],[127,2,75,-0.07803692446640961],[127,2,76,-0.08200419936247225],[127,2,77,-0.08600456254683563],[127,2,78,-0.08781701148703232],[127,2,79,-0.08491664216145842],[127,3,64,-0.02028402424146064],[127,3,65,-0.021099043128529088],[127,3,66,-0.01840444885364656],[127,3,67,-0.017109614369812565],[127,3,68,-0.020854012109036896],[127,3,69,-0.028191112760967585],[127,3,70,-0.035096835703341434],[127,3,71,-0.041618096905251645],[127,3,72,-0.049426294863567005],[127,3,73,-0.059719895698952696],[127,3,74,-0.06867613585375887],[127,3,75,-0.07479945222321818],[127,3,76,-0.0800922689993459],[127,3,77,-0.08305789279865364],[127,3,78,-0.08631042745656185],[127,3,79,-0.08549859853966421],[127,4,64,-0.016865671757367362],[127,4,65,-0.018248977688691048],[127,4,66,-0.017422841173950876],[127,4,67,-0.016968303611104796],[127,4,68,-0.021879971782500174],[127,4,69,-0.030945004802122006],[127,4,70,-0.03502181014854985],[127,4,71,-0.04105683811641789],[127,4,72,-0.05079783147573322],[127,4,73,-0.05845401336703794],[127,4,74,-0.06846994357153739],[127,4,75,-0.07151423803845289],[127,4,76,-0.07892927948062217],[127,4,77,-0.0811355948004186],[127,4,78,-0.08530473061509236],[127,4,79,-0.08199151775428838],[127,5,64,-0.012701731190649379],[127,5,65,-0.016044035640640192],[127,5,66,-0.017680941637979924],[127,5,67,-0.017953178620417037],[127,5,68,-0.02346372219442719],[127,5,69,-0.030612396853695795],[127,5,70,-0.03327790118257931],[127,5,71,-0.03946219609541532],[127,5,72,-0.048885348093743564],[127,5,73,-0.0564024868937984],[127,5,74,-0.06443356385102982],[127,5,75,-0.0712672714492544],[127,5,76,-0.07745213511506133],[127,5,77,-0.08149571617767831],[127,5,78,-0.08204318744651093],[127,5,79,-0.07995572894375735],[127,6,64,-0.00916368807944612],[127,6,65,-0.014514692629077841],[127,6,66,-0.016763065859870224],[127,6,67,-0.019951721108760395],[127,6,68,-0.024581303678552824],[127,6,69,-0.028688754557857604],[127,6,70,-0.0336094657156199],[127,6,71,-0.04107431911993087],[127,6,72,-0.046743931071014044],[127,6,73,-0.05452483978068948],[127,6,74,-0.06256706204560773],[127,6,75,-0.06934590492130639],[127,6,76,-0.07529993570948736],[127,6,77,-0.07822030099199273],[127,6,78,-0.07997449580228815],[127,6,79,-0.07815158607537837],[127,7,64,-0.008600555347879985],[127,7,65,-0.014093223869941301],[127,7,66,-0.0194399407390842],[127,7,67,-0.022588958586501284],[127,7,68,-0.02760112667166298],[127,7,69,-0.03073179691817715],[127,7,70,-0.03471886026387919],[127,7,71,-0.0421826340004606],[127,7,72,-0.04787233074837262],[127,7,73,-0.05380878739216344],[127,7,74,-0.0600800023028048],[127,7,75,-0.0633797913374092],[127,7,76,-0.07148302397831229],[127,7,77,-0.07516964158047744],[127,7,78,-0.07697771199810757],[127,7,79,-0.07720852569431694],[127,8,64,-0.009443492127019948],[127,8,65,-0.010368260514822286],[127,8,66,-0.016338768214338106],[127,8,67,-0.01991162486815798],[127,8,68,-0.02171083535974125],[127,8,69,-0.02382539019422883],[127,8,70,-0.026754774848950974],[127,8,71,-0.03567018393764371],[127,8,72,-0.039759376535066615],[127,8,73,-0.04615133925008483],[127,8,74,-0.04838179624265751],[127,8,75,-0.04998749361566868],[127,8,76,-0.05734672945196986],[127,8,77,-0.06216198713139262],[127,8,78,-0.06464267574418728],[127,8,79,-0.06700885262552674],[127,9,64,-0.01873231771968381],[127,9,65,-0.018321802636649342],[127,9,66,-0.025153720652019956],[127,9,67,-0.02891632806302019],[127,9,68,-0.0314560462891918],[127,9,69,-0.0329148269749113],[127,9,70,-0.037635606325143456],[127,9,71,-0.044270942480422654],[127,9,72,-0.04801762118862801],[127,9,73,-0.052698602001129524],[127,9,74,-0.05176604907942249],[127,9,75,-0.054355432796371034],[127,9,76,-0.06074357145878327],[127,9,77,-0.06660095035783364],[127,9,78,-0.06972732821268975],[127,9,79,-0.07025011954657182],[127,10,64,-0.016029771323892605],[127,10,65,-0.01930278338120628],[127,10,66,-0.026459713373267912],[127,10,67,-0.027951113437514385],[127,10,68,-0.031351369810688395],[127,10,69,-0.029181337732179846],[127,10,70,-0.035623408862813954],[127,10,71,-0.04310150745210639],[127,10,72,-0.04765099330580333],[127,10,73,-0.05273566020679006],[127,10,74,-0.0517873611342822],[127,10,75,-0.05541848813198179],[127,10,76,-0.06089573528850681],[127,10,77,-0.06729060624680258],[127,10,78,-0.06874815574921313],[127,10,79,-0.06660036269543068],[127,11,64,-0.01636547824448062],[127,11,65,-0.01952254167881151],[127,11,66,-0.02808394453234131],[127,11,67,-0.029132364271153094],[127,11,68,-0.029129427584221823],[127,11,69,-0.027073663217664162],[127,11,70,-0.031996971864724],[127,11,71,-0.039648976364962535],[127,11,72,-0.04714888430033978],[127,11,73,-0.055289715320570254],[127,11,74,-0.05471270156095509],[127,11,75,-0.05415437295952083],[127,11,76,-0.05895390985739263],[127,11,77,-0.06428273567350126],[127,11,78,-0.06799702839343287],[127,11,79,-0.06460530837093956],[127,12,64,-0.01344581026801403],[127,12,65,-0.018438017288058134],[127,12,66,-0.027108784187172386],[127,12,67,-0.02802305224117399],[127,12,68,-0.025559543132448653],[127,12,69,-0.026096189044495927],[127,12,70,-0.029362176253295236],[127,12,71,-0.03496064556343939],[127,12,72,-0.0464750303094813],[127,12,73,-0.055679358408909904],[127,12,74,-0.05458274550702111],[127,12,75,-0.05441603421167604],[127,12,76,-0.05735829147964844],[127,12,77,-0.06293750902148879],[127,12,78,-0.06510750423435563],[127,12,79,-0.06285429224938918],[127,13,64,-0.003314543038027612],[127,13,65,-0.009241047395835728],[127,13,66,-0.014834405278000673],[127,13,67,-0.017845843457272387],[127,13,68,-0.015980442821975166],[127,13,69,-0.014469318912534307],[127,13,70,-0.020998287880731242],[127,13,71,-0.024009991342303666],[127,13,72,-0.03182084690315229],[127,13,73,-0.040323254744950604],[127,13,74,-0.04337996435141833],[127,13,75,-0.04378929222302236],[127,13,76,-0.04542388811383144],[127,13,77,-0.050098901900880205],[127,13,78,-0.051334940322828634],[127,13,79,-0.048388754834733136],[127,14,64,-0.004828012979851054],[127,14,65,-0.01022304668922358],[127,14,66,-0.014677888630739516],[127,14,67,-0.018314581029274385],[127,14,68,-0.01944894721791182],[127,14,69,-0.017975361315960114],[127,14,70,-0.019952994478508124],[127,14,71,-0.023600745249016536],[127,14,72,-0.030755976046158484],[127,14,73,-0.03722300790842961],[127,14,74,-0.04450904694539881],[127,14,75,-0.046007833476542456],[127,14,76,-0.046101232315710755],[127,14,77,-0.04672787673233415],[127,14,78,-0.04757787175581768],[127,14,79,-0.04584159540433891],[127,15,64,-0.005274184498003792],[127,15,65,-0.007150858638064583],[127,15,66,-0.01236047361967943],[127,15,67,-0.017720902289101392],[127,15,68,-0.019545588100834038],[127,15,69,-0.019381284504422502],[127,15,70,-0.022073757073746536],[127,15,71,-0.025540137395130585],[127,15,72,-0.0294537327386028],[127,15,73,-0.03662498804106468],[127,15,74,-0.04534464898127219],[127,15,75,-0.04604895829116766],[127,15,76,-0.04643904235941909],[127,15,77,-0.04448382835767373],[127,15,78,-0.04620123716053476],[127,15,79,-0.04597977594006411],[127,16,64,8.428201513985822E-4],[127,16,65,-0.0016897722202086074],[127,16,66,-0.004540385809124109],[127,16,67,-0.007190230069548859],[127,16,68,-0.007535305780161317],[127,16,69,-0.008809283343975294],[127,16,70,-0.009664326133836526],[127,16,71,-0.012065292818738693],[127,16,72,-0.014910025903842938],[127,16,73,-0.021430553345483883],[127,16,74,-0.02909322027950656],[127,16,75,-0.0295531765893301],[127,16,76,-0.030191370565444797],[127,16,77,-0.029174500684748444],[127,16,78,-0.029697167324516077],[127,16,79,-0.030328406743808517],[127,17,64,0.0014730823069744048],[127,17,65,-0.0013394784828505701],[127,17,66,-0.0027614756689939846],[127,17,67,-0.009356868093362114],[127,17,68,-0.007760165504011152],[127,17,69,-0.008243703395347135],[127,17,70,-0.010645696104271796],[127,17,71,-0.014047997180286403],[127,17,72,-0.01624539444896342],[127,17,73,-0.020178389489558718],[127,17,74,-0.02781039290668752],[127,17,75,-0.03046302606357998],[127,17,76,-0.031964070530540734],[127,17,77,-0.029459634813888996],[127,17,78,-0.028916371158465848],[127,17,79,-0.031240861466941994],[127,18,64,-0.001161574418321154],[127,18,65,-0.0024412996976403145],[127,18,66,-0.005743917659555037],[127,18,67,-0.009535255579252416],[127,18,68,-0.009267551611232189],[127,18,69,-0.008206146570104822],[127,18,70,-0.011890815751539385],[127,18,71,-0.018424229336535036],[127,18,72,-0.02009642141207263],[127,18,73,-0.021139718295297427],[127,18,74,-0.025974598992346665],[127,18,75,-0.033666094629381554],[127,18,76,-0.03516297374958055],[127,18,77,-0.03261494442710494],[127,18,78,-0.029699813682211584],[127,18,79,-0.030776001838563688],[127,19,64,-0.002345204549555252],[127,19,65,-0.0016412492082530095],[127,19,66,-0.008063996317017236],[127,19,67,-0.01033792428114963],[127,19,68,-0.011869659717029413],[127,19,69,-0.011786428311275798],[127,19,70,-0.016251589630406543],[127,19,71,-0.022089557415755107],[127,19,72,-0.02349582319855867],[127,19,73,-0.02333780211497341],[127,19,74,-0.027039877769137577],[127,19,75,-0.034918003702255146],[127,19,76,-0.03667779128627513],[127,19,77,-0.0349360073901544],[127,19,78,-0.03434413368173836],[127,19,79,-0.03451076963097546],[127,20,64,-0.005001890190694691],[127,20,65,-0.00291187873591936],[127,20,66,-0.013171847154743566],[127,20,67,-0.016743852260564074],[127,20,68,-0.016595555927799127],[127,20,69,-0.018345159000744765],[127,20,70,-0.021833709647848365],[127,20,71,-0.02620109017510533],[127,20,72,-0.030151723303106837],[127,20,73,-0.031479800132650115],[127,20,74,-0.03389072002972407],[127,20,75,-0.040523122791741],[127,20,76,-0.03890127197354318],[127,20,77,-0.03702064193408783],[127,20,78,-0.038995560781303756],[127,20,79,-0.0380210538638551],[127,21,64,-0.01177972975351213],[127,21,65,-0.01110261362329465],[127,21,66,-0.02081525365606543],[127,21,67,-0.0265657386565529],[127,21,68,-0.030126870764777935],[127,21,69,-0.03304089998935189],[127,21,70,-0.039570315376762005],[127,21,71,-0.04700410156673941],[127,21,72,-0.05901510107498294],[127,21,73,-0.06385798043918219],[127,21,74,-0.06809705512105765],[127,21,75,-0.06901438481148506],[127,21,76,-0.06398529313795821],[127,21,77,-0.06322845477474444],[127,21,78,-0.06472640681041328],[127,21,79,-0.06293372336214388],[127,22,64,-0.017117425292943717],[127,22,65,-0.017352060007412212],[127,22,66,-0.02418438979345347],[127,22,67,-0.02982361489128038],[127,22,68,-0.03374727614835757],[127,22,69,-0.03421094972665853],[127,22,70,-0.040702027048633765],[127,22,71,-0.049060149063081315],[127,22,72,-0.05928294443711718],[127,22,73,-0.06908869766267725],[127,22,74,-0.07038715795079085],[127,22,75,-0.07217129203189962],[127,22,76,-0.06732101483012018],[127,22,77,-0.06339570854575738],[127,22,78,-0.06261388691614461],[127,22,79,-0.06165567365098776],[127,23,64,-0.021760335514553752],[127,23,65,-0.01995509457536787],[127,23,66,-0.02822249131623547],[127,23,67,-0.03217398562710688],[127,23,68,-0.03652713893817949],[127,23,69,-0.03671201483942535],[127,23,70,-0.03997245444046524],[127,23,71,-0.050556678003705],[127,23,72,-0.06205487677890256],[127,23,73,-0.07192019749465045],[127,23,74,-0.075044702232165],[127,23,75,-0.07436706609652036],[127,23,76,-0.06988043564923677],[127,23,77,-0.06418372139718262],[127,23,78,-0.06234997335411005],[127,23,79,-0.06060509104291714],[127,24,64,-0.01624695789396549],[127,24,65,-0.016511379929902592],[127,24,66,-0.0225486504485983],[127,24,67,-0.02809487252195178],[127,24,68,-0.03217842460255932],[127,24,69,-0.033148858303068074],[127,24,70,-0.03685252305405751],[127,24,71,-0.043216624842716767],[127,24,72,-0.056331937283273084],[127,24,73,-0.06618650860467085],[127,24,74,-0.06783875599518757],[127,24,75,-0.06733286017417894],[127,24,76,-0.0617056091588955],[127,24,77,-0.058284435450991545],[127,24,78,-0.05564721284314429],[127,24,79,-0.05313728553194165],[127,25,64,-0.01741091393363217],[127,25,65,-0.02438158913249036],[127,25,66,-0.034370952809389704],[127,25,67,-0.04221365328313284],[127,25,68,-0.04679316184727689],[127,25,69,-0.047712081656385213],[127,25,70,-0.04758177270309069],[127,25,71,-0.04814719920119209],[127,25,72,-0.05340671583728207],[127,25,73,-0.056352934146808364],[127,25,74,-0.054750344893374894],[127,25,75,-0.05306371399520554],[127,25,76,-0.05345359410290655],[127,25,77,-0.05084574947568793],[127,25,78,-0.05382436582562454],[127,25,79,-0.0560410192542134],[127,26,64,-0.02065765880861989],[127,26,65,-0.0259789390091818],[127,26,66,-0.03399403784628169],[127,26,67,-0.04679312647653522],[127,26,68,-0.05109368799683507],[127,26,69,-0.05103535613595858],[127,26,70,-0.05070147197392964],[127,26,71,-0.051726602640393346],[127,26,72,-0.055121693921599546],[127,26,73,-0.05387938801769368],[127,26,74,-0.052794151121926466],[127,26,75,-0.05147015449717103],[127,26,76,-0.05256371085354232],[127,26,77,-0.05166082371480091],[127,26,78,-0.05572532219932026],[127,26,79,-0.05868063345880291],[127,27,64,-0.023304730592996148],[127,27,65,-0.02464594203319781],[127,27,66,-0.03594449313538847],[127,27,67,-0.047862373055178736],[127,27,68,-0.05421783523334332],[127,27,69,-0.05373101564238],[127,27,70,-0.05288352443546025],[127,27,71,-0.05474997199903714],[127,27,72,-0.054922671688157704],[127,27,73,-0.05433510045905515],[127,27,74,-0.05086940046538364],[127,27,75,-0.05157057811794463],[127,27,76,-0.05443744852831754],[127,27,77,-0.051598484068097875],[127,27,78,-0.055314053122474394],[127,27,79,-0.062060883136370676],[127,28,64,-0.02830528667952431],[127,28,65,-0.03190456204373718],[127,28,66,-0.04319230449913403],[127,28,67,-0.05664945878913352],[127,28,68,-0.06171363346326275],[127,28,69,-0.06074597185655678],[127,28,70,-0.057671183631792244],[127,28,71,-0.05967949363433667],[127,28,72,-0.06308877955858833],[127,28,73,-0.062194980853614745],[127,28,74,-0.05914942563535128],[127,28,75,-0.05951096846365907],[127,28,76,-0.0586913011344527],[127,28,77,-0.057621556734170326],[127,28,78,-0.059642767015608375],[127,28,79,-0.06807521897048222],[127,29,64,-0.03009358162594622],[127,29,65,-0.034269268583413476],[127,29,66,-0.042784699697892226],[127,29,67,-0.05273023132951715],[127,29,68,-0.05476954780226259],[127,29,69,-0.053184346245440745],[127,29,70,-0.04980197437470682],[127,29,71,-0.05140622503757723],[127,29,72,-0.05600338096846902],[127,29,73,-0.05633567849007523],[127,29,74,-0.05413797309754381],[127,29,75,-0.05217031011490045],[127,29,76,-0.04919599651186876],[127,29,77,-0.050208301258557214],[127,29,78,-0.05438163746494759],[127,29,79,-0.06272490778405264],[127,30,64,-0.03354479752168796],[127,30,65,-0.03813980820626198],[127,30,66,-0.04555779464667982],[127,30,67,-0.054568911160051206],[127,30,68,-0.05513424311203621],[127,30,69,-0.05351525840534735],[127,30,70,-0.05159503651312117],[127,30,71,-0.05298933963282004],[127,30,72,-0.057860288018592776],[127,30,73,-0.059062071162324176],[127,30,74,-0.057955994908075764],[127,30,75,-0.05435545044843074],[127,30,76,-0.05035117503410588],[127,30,77,-0.0504808205864013],[127,30,78,-0.053237994192849525],[127,30,79,-0.06413170718805293],[127,31,64,-0.03653715337507854],[127,31,65,-0.040477939964443765],[127,31,66,-0.045186471122574526],[127,31,67,-0.05440632469892692],[127,31,68,-0.05649018574460621],[127,31,69,-0.054725971772101534],[127,31,70,-0.05215817582755325],[127,31,71,-0.05300706674712552],[127,31,72,-0.05971402950674197],[127,31,73,-0.06274212625292455],[127,31,74,-0.06135349986670731],[127,31,75,-0.05670410461966309],[127,31,76,-0.05227488729318183],[127,31,77,-0.05187175633893684],[127,31,78,-0.056607786834654256],[127,31,79,-0.06624532395983151],[127,32,64,-0.02781355366283711],[127,32,65,-0.03228242408110257],[127,32,66,-0.036064633959050074],[127,32,67,-0.04194796277848051],[127,32,68,-0.046010402197794203],[127,32,69,-0.04691872912270026],[127,32,70,-0.04287924102590571],[127,32,71,-0.043785914669794396],[127,32,72,-0.049282396612100904],[127,32,73,-0.051659009558894506],[127,32,74,-0.05046479920827204],[127,32,75,-0.04811745503057552],[127,32,76,-0.0420292403813613],[127,32,77,-0.04214794727050308],[127,32,78,-0.04815713765863944],[127,32,79,-0.05916413434206029],[127,33,64,-0.02249628443926821],[127,33,65,-0.026755407389925906],[127,33,66,-0.02718679701373966],[127,33,67,-0.03168294906489555],[127,33,68,-0.03407326943952543],[127,33,69,-0.03892219127994942],[127,33,70,-0.040156413582314865],[127,33,71,-0.04548874237543135],[127,33,72,-0.05425711137081815],[127,33,73,-0.059324692846764615],[127,33,74,-0.06049953510858397],[127,33,75,-0.058422901594316706],[127,33,76,-0.05363562307137319],[127,33,77,-0.051891393276117595],[127,33,78,-0.05782230873979145],[127,33,79,-0.06675438154506141],[127,34,64,-0.0268759609391703],[127,34,65,-0.03076126098420398],[127,34,66,-0.028791746051440748],[127,34,67,-0.03272234951168651],[127,34,68,-0.03475472991212755],[127,34,69,-0.0388797423285156],[127,34,70,-0.04305708652567311],[127,34,71,-0.049244515811192435],[127,34,72,-0.05602816566279514],[127,34,73,-0.06209542747902663],[127,34,74,-0.06005313962814676],[127,34,75,-0.05779864424942863],[127,34,76,-0.05566228491893044],[127,34,77,-0.05385207632725367],[127,34,78,-0.060696622635913355],[127,34,79,-0.0671058483852203],[127,35,64,-0.029820534843265162],[127,35,65,-0.03135890911241562],[127,35,66,-0.03237869592685133],[127,35,67,-0.03551677218270091],[127,35,68,-0.036419468156369234],[127,35,69,-0.039442700581743845],[127,35,70,-0.04357726437404488],[127,35,71,-0.05028281693440678],[127,35,72,-0.05451317394820743],[127,35,73,-0.06047622512532401],[127,35,74,-0.0592361522434037],[127,35,75,-0.05493839764504069],[127,35,76,-0.055525099363373714],[127,35,77,-0.05623941130250845],[127,35,78,-0.06208013033345469],[127,35,79,-0.06582151647735943],[127,36,64,-0.04084984207993049],[127,36,65,-0.04071701448232454],[127,36,66,-0.04398496619401372],[127,36,67,-0.045405860332570935],[127,36,68,-0.04896940497584154],[127,36,69,-0.04936824063315157],[127,36,70,-0.05270296991163634],[127,36,71,-0.05693354753939918],[127,36,72,-0.0611924467877412],[127,36,73,-0.06562987309431326],[127,36,74,-0.06581736036530608],[127,36,75,-0.06250186653304682],[127,36,76,-0.0630843073973173],[127,36,77,-0.06457063794094917],[127,36,78,-0.06853461378299719],[127,36,79,-0.0743669045014855],[127,37,64,-0.048999526840842605],[127,37,65,-0.047553901310498],[127,37,66,-0.0523431027377059],[127,37,67,-0.05123204631786936],[127,37,68,-0.05491515014158754],[127,37,69,-0.054998343133299626],[127,37,70,-0.05263247073102724],[127,37,71,-0.05224625320036913],[127,37,72,-0.051306302385988475],[127,37,73,-0.04783062438297317],[127,37,74,-0.04714496635524035],[127,37,75,-0.04502811766358768],[127,37,76,-0.047887832597646424],[127,37,77,-0.048917971922628325],[127,37,78,-0.05320036617998061],[127,37,79,-0.06442886646521515],[127,38,64,-0.05611653606615617],[127,38,65,-0.05464143469078239],[127,38,66,-0.05350332946601179],[127,38,67,-0.05515989519927281],[127,38,68,-0.05677911986972817],[127,38,69,-0.054533444589931604],[127,38,70,-0.05200409077728081],[127,38,71,-0.055281071654194075],[127,38,72,-0.05548486769577875],[127,38,73,-0.050053279752235336],[127,38,74,-0.04569652143591904],[127,38,75,-0.041895808036907206],[127,38,76,-0.04590758428191191],[127,38,77,-0.04904779367713401],[127,38,78,-0.05397971480597348],[127,38,79,-0.06547479320094438],[127,39,64,-0.06403263662684511],[127,39,65,-0.060337895846823655],[127,39,66,-0.059357822739241256],[127,39,67,-0.06026260659851018],[127,39,68,-0.05864257575949321],[127,39,69,-0.056884060828210986],[127,39,70,-0.05423938753955168],[127,39,71,-0.05856146536357748],[127,39,72,-0.05790816135561566],[127,39,73,-0.05060532604010297],[127,39,74,-0.043975271706649194],[127,39,75,-0.04051761718041677],[127,39,76,-0.04282379173965378],[127,39,77,-0.04996449697402744],[127,39,78,-0.05530400881440413],[127,39,79,-0.06452626073156943],[127,40,64,-0.056436424609618424],[127,40,65,-0.0524347368154104],[127,40,66,-0.05245151429875533],[127,40,67,-0.05292177694745896],[127,40,68,-0.051131370964551906],[127,40,69,-0.049652039477951077],[127,40,70,-0.04835309797535717],[127,40,71,-0.04993075338960902],[127,40,72,-0.045472616595650606],[127,40,73,-0.03918693199302395],[127,40,74,-0.03130299231015307],[127,40,75,-0.02984756420152071],[127,40,76,-0.0317728285858013],[127,40,77,-0.03770534706361747],[127,40,78,-0.04338080001502828],[127,40,79,-0.051806950987942024],[127,41,64,-0.05897039011411724],[127,41,65,-0.05620434859991805],[127,41,66,-0.05513306740441244],[127,41,67,-0.05338512698360322],[127,41,68,-0.05251089601540401],[127,41,69,-0.05218392476061373],[127,41,70,-0.05235694869842586],[127,41,71,-0.051561657455019144],[127,41,72,-0.04622157443211375],[127,41,73,-0.03822469261341699],[127,41,74,-0.03326605310364078],[127,41,75,-0.031666340527683995],[127,41,76,-0.032254852897371844],[127,41,77,-0.03674846263456921],[127,41,78,-0.042662693527638434],[127,41,79,-0.05071674857210032],[127,42,64,-0.061897706645639136],[127,42,65,-0.0595079795434611],[127,42,66,-0.0567718119596782],[127,42,67,-0.05497177095489114],[127,42,68,-0.05319847966281238],[127,42,69,-0.05384852345170682],[127,42,70,-0.05498673988774705],[127,42,71,-0.05226882097327229],[127,42,72,-0.04654334090195178],[127,42,73,-0.03877489556522448],[127,42,74,-0.03340052489905457],[127,42,75,-0.03212114207220318],[127,42,76,-0.032460144130544405],[127,42,77,-0.03822688820783926],[127,42,78,-0.04423892796964127],[127,42,79,-0.05045574536938299],[127,43,64,-0.0626895120869511],[127,43,65,-0.06158199497895815],[127,43,66,-0.059457792358379905],[127,43,67,-0.05582981636712764],[127,43,68,-0.05645017111238586],[127,43,69,-0.057363520864461184],[127,43,70,-0.05823598661385529],[127,43,71,-0.05497478869890707],[127,43,72,-0.04718415491444339],[127,43,73,-0.03895518106571749],[127,43,74,-0.033951473805896304],[127,43,75,-0.03413878125879746],[127,43,76,-0.03252703789419781],[127,43,77,-0.038513544856351806],[127,43,78,-0.04469046270797225],[127,43,79,-0.050602051836283135],[127,44,64,-0.06953776961418012],[127,44,65,-0.07172336757230975],[127,44,66,-0.06940115458853524],[127,44,67,-0.06713772039654847],[127,44,68,-0.0696201267770729],[127,44,69,-0.07048503625196728],[127,44,70,-0.0674206196983794],[127,44,71,-0.06712991857037223],[127,44,72,-0.0577897262623093],[127,44,73,-0.05066910107927709],[127,44,74,-0.04817786966165609],[127,44,75,-0.048865139397984925],[127,44,76,-0.046970897127995404],[127,44,77,-0.049991024440587534],[127,44,78,-0.056779145636056044],[127,44,79,-0.06217714410990671],[127,45,64,-0.09793077302210682],[127,45,65,-0.09821020139785554],[127,45,66,-0.09476432214476868],[127,45,67,-0.09415581958355368],[127,45,68,-0.09657435064225095],[127,45,69,-0.09487700177573416],[127,45,70,-0.09060808435856078],[127,45,71,-0.0846171919629267],[127,45,72,-0.07260045496967335],[127,45,73,-0.06282620911174883],[127,45,74,-0.060075165670373964],[127,45,75,-0.06022610253685043],[127,45,76,-0.054456375903347926],[127,45,77,-0.05222067981930979],[127,45,78,-0.05265644843259237],[127,45,79,-0.054245577050570856],[127,46,64,-0.10335974552729764],[127,46,65,-0.10067975496522284],[127,46,66,-0.09756477615008222],[127,46,67,-0.0980863767210422],[127,46,68,-0.09892622733607445],[127,46,69,-0.09757794547355433],[127,46,70,-0.09330865395424495],[127,46,71,-0.08436158120409556],[127,46,72,-0.07362609643309025],[127,46,73,-0.06459963931555834],[127,46,74,-0.061632090735008443],[127,46,75,-0.060710385126004796],[127,46,76,-0.056866022246692155],[127,46,77,-0.05358913514109444],[127,46,78,-0.051697525124346125],[127,46,79,-0.0524266642615287],[127,47,64,-0.10632452756571502],[127,47,65,-0.10434547681393297],[127,47,66,-0.09925954879487034],[127,47,67,-0.09743963606706542],[127,47,68,-0.09913528544534628],[127,47,69,-0.09626337337395226],[127,47,70,-0.09373485940809406],[127,47,71,-0.083335097901036],[127,47,72,-0.07454609260970216],[127,47,73,-0.06653508085168375],[127,47,74,-0.06413976018224304],[127,47,75,-0.06150945367540955],[127,47,76,-0.05837539105586692],[127,47,77,-0.05412140157917021],[127,47,78,-0.05062586396050048],[127,47,79,-0.05095005584310455],[127,48,64,-0.09376120070664408],[127,48,65,-0.09241275255136401],[127,48,66,-0.08782131837129417],[127,48,67,-0.0848165126273451],[127,48,68,-0.08724834428457197],[127,48,69,-0.08392438150376211],[127,48,70,-0.07990217799065456],[127,48,71,-0.07035175217510742],[127,48,72,-0.06612798023558795],[127,48,73,-0.05713289821758337],[127,48,74,-0.05252302913442525],[127,48,75,-0.05043954413107088],[127,48,76,-0.04732131164556522],[127,48,77,-0.04582478187604369],[127,48,78,-0.041770171429059755],[127,48,79,-0.03748106719704902],[127,49,64,-0.08347695034323242],[127,49,65,-0.08054017217407304],[127,49,66,-0.07928241708997726],[127,49,67,-0.07386225090854517],[127,49,68,-0.07670943068511467],[127,49,69,-0.07431820790105102],[127,49,70,-0.0729169008797327],[127,49,71,-0.07116422149776602],[127,49,72,-0.07091931866744687],[127,49,73,-0.06581394024296122],[127,49,74,-0.06532724526730965],[127,49,75,-0.06239648380605342],[127,49,76,-0.059003578826534286],[127,49,77,-0.05772173198946741],[127,49,78,-0.05497320228626737],[127,49,79,-0.0483949742168807],[127,50,64,-0.08253408888122939],[127,50,65,-0.07910882073360492],[127,50,66,-0.07704771632797114],[127,50,67,-0.07264048945077566],[127,50,68,-0.07391806890871784],[127,50,69,-0.07439950792342644],[127,50,70,-0.07375584446607295],[127,50,71,-0.07352265092281389],[127,50,72,-0.07295105240451324],[127,50,73,-0.0676527901428028],[127,50,74,-0.0640575959474003],[127,50,75,-0.06266550128551882],[127,50,76,-0.06186951629615316],[127,50,77,-0.057826596594776306],[127,50,78,-0.055740124623039816],[127,50,79,-0.050817320339772515],[127,51,64,-0.07910113331897307],[127,51,65,-0.07757614967713629],[127,51,66,-0.0725433680761016],[127,51,67,-0.07021517325078884],[127,51,68,-0.07328703108941816],[127,51,69,-0.0732396313688107],[127,51,70,-0.07336719493017854],[127,51,71,-0.07503654202476519],[127,51,72,-0.07501098485067931],[127,51,73,-0.06948262469836695],[127,51,74,-0.06547566317220055],[127,51,75,-0.06309939474107579],[127,51,76,-0.06235501778433447],[127,51,77,-0.058165747395767284],[127,51,78,-0.05682175989582741],[127,51,79,-0.053880919845878755],[127,52,64,-0.02622162445870177],[127,52,65,-0.023959019695320716],[127,52,66,-0.021928233461984387],[127,52,67,-0.021157666240129325],[127,52,68,-0.023445076758495498],[127,52,69,-0.02267828296328142],[127,52,70,-0.020403727361428425],[127,52,71,-0.021923389466795756],[127,52,72,-0.02269345488631061],[127,52,73,-0.02087562460716208],[127,52,74,-0.014591942220436138],[127,52,75,-0.010351884726180732],[127,52,76,-0.010975439150006011],[127,52,77,-0.009200907507288358],[127,52,78,-0.005956316455615507],[127,52,79,-0.00532162198206193],[127,53,64,-0.017330175008993115],[127,53,65,-0.01680869972502491],[127,53,66,-0.014700320995182231],[127,53,67,-0.01679327404777567],[127,53,68,-0.017589155749399787],[127,53,69,-0.015308528718538494],[127,53,70,-0.010471571192764595],[127,53,71,-0.01110846250489922],[127,53,72,-0.013538646883180738],[127,53,73,-0.014739820443447571],[127,53,74,-0.008687454992299892],[127,53,75,-0.00632835002836718],[127,53,76,-0.008891087942466652],[127,53,77,-0.0033307407717751703],[127,53,78,-0.003777924204591304],[127,53,79,-0.0035331003458722865],[127,54,64,-0.017155339829522276],[127,54,65,-0.019213940368003585],[127,54,66,-0.018660692737787338],[127,54,67,-0.020549854784333105],[127,54,68,-0.022495570260671782],[127,54,69,-0.018252885146187336],[127,54,70,-0.01048761329136308],[127,54,71,-0.010169110648313384],[127,54,72,-0.01339312116695393],[127,54,73,-0.013313265308128791],[127,54,74,-0.008040625538406898],[127,54,75,-0.009468663435402036],[127,54,76,-0.008454768406960217],[127,54,77,-0.003106395438180226],[127,54,78,-0.002026799018589265],[127,54,79,-0.0024500503194704315],[127,55,64,-0.019654061758546892],[127,55,65,-0.021699838440949804],[127,55,66,-0.022420339784522847],[127,55,67,-0.024721442991709974],[127,55,68,-0.02359473876965862],[127,55,69,-0.018090266034110875],[127,55,70,-0.011671980169141283],[127,55,71,-0.012311492340155328],[127,55,72,-0.014417376986732788],[127,55,73,-0.012548388241007902],[127,55,74,-0.007592113461588362],[127,55,75,-0.009105780904564709],[127,55,76,-0.007292707427978468],[127,55,77,-0.002200714984040064],[127,55,78,-0.0011681928777209083],[127,55,79,-0.0018729715138856573],[127,56,64,-0.007302835848746553],[127,56,65,-0.01049437720705787],[127,56,66,-0.013647162508479388],[127,56,67,-0.015110465324338518],[127,56,68,-0.009198925508934475],[127,56,69,-0.00537445173287876],[127,56,70,3.226065252234511E-4],[127,56,71,-0.0023169233583321402],[127,56,72,-2.2048828462203907E-4],[127,56,73,0.0015622812726680535],[127,56,74,0.0022027770438773353],[127,56,75,0.003849458990110577],[127,56,76,0.006676741777085771],[127,56,77,0.00901947622253843],[127,56,78,0.012213909385772603],[127,56,79,0.011570613706107458],[127,57,64,-0.0028557902470876806],[127,57,65,-0.01195719459783498],[127,57,66,-0.02291441876885611],[127,57,67,-0.02590113822131257],[127,57,68,-0.018924132022981127],[127,57,69,-0.014452904689903068],[127,57,70,-0.011982713770496367],[127,57,71,-0.01391605161759124],[127,57,72,-0.009220337902016512],[127,57,73,-0.007304146804171935],[127,57,74,-0.004197708445738496],[127,57,75,-0.0023462148192747168],[127,57,76,0.00206044916324552],[127,57,77,0.0025891330286131053],[127,57,78,0.005883696206550576],[127,57,79,0.006508606281590501],[127,58,64,0.04322350615887348],[127,58,65,0.033239456580132984],[127,58,66,0.02207237860007906],[127,58,67,0.020215054979272576],[127,58,68,0.024040050673684213],[127,58,69,0.030186553182723674],[127,58,70,0.02937243565627068],[127,58,71,0.028806441121957654],[127,58,72,0.02965252268873869],[127,58,73,0.0330689776027947],[127,58,74,0.03543944436725974],[127,58,75,0.036796482107054634],[127,58,76,0.03948776487385203],[127,58,77,0.04191591558535762],[127,58,78,0.04464998683164004],[127,58,79,0.04557936801732032],[127,59,64,0.04158432196838713],[127,59,65,0.033023619968472265],[127,59,66,0.023480076093945437],[127,59,67,0.02065436493829957],[127,59,68,0.022664172246532194],[127,59,69,0.028848027706014134],[127,59,70,0.02754566033576189],[127,59,71,0.02914076754627129],[127,59,72,0.031560330707989165],[127,59,73,0.03467987979248996],[127,59,74,0.03417293249313147],[127,59,75,0.03718685444207731],[127,59,76,0.03954540509897472],[127,59,77,0.041946940347775796],[127,59,78,0.04547159476852916],[127,59,79,0.046986818274074665],[127,60,64,0.03085758421725164],[127,60,65,0.023489147554819956],[127,60,66,0.012865899075529166],[127,60,67,0.009849817801389271],[127,60,68,0.01072911434337788],[127,60,69,0.016753571023502348],[127,60,70,0.020049425946871396],[127,60,71,0.020978343402284577],[127,60,72,0.022359058378156105],[127,60,73,0.025350726307243443],[127,60,74,0.024224633560110037],[127,60,75,0.02797983351311334],[127,60,76,0.030069052460766493],[127,60,77,0.032034360604417916],[127,60,78,0.036582624802453306],[127,60,79,0.03644554151531251],[127,61,64,0.028827220990567642],[127,61,65,0.027315411156649344],[127,61,66,0.025114348861098867],[127,61,67,0.024275723518675546],[127,61,68,0.025950280226694364],[127,61,69,0.03013243023323807],[127,61,70,0.03775082769443591],[127,61,71,0.04156844509398555],[127,61,72,0.04231055540814785],[127,61,73,0.044718394905086334],[127,61,74,0.044654763067959596],[127,61,75,0.04707610893865807],[127,61,76,0.04765445487522918],[127,61,77,0.04976502049222739],[127,61,78,0.05352793751669285],[127,61,79,0.05192173399495634],[127,62,64,0.028757412772120114],[127,62,65,0.026704131984739504],[127,62,66,0.02608801247289591],[127,62,67,0.024856878501470434],[127,62,68,0.02558164839356647],[127,62,69,0.027990449433381998],[127,62,70,0.03517261383295868],[127,62,71,0.0400479170170949],[127,62,72,0.04244562414744943],[127,62,73,0.04647799918890064],[127,62,74,0.04891214833529395],[127,62,75,0.048619300051447156],[127,62,76,0.04741523301970693],[127,62,77,0.05092157536591793],[127,62,78,0.05463054082347382],[127,62,79,0.05413644166254436],[127,63,64,-0.03928450115340967],[127,63,65,-0.041381693554297466],[127,63,66,-0.04151400140441795],[127,63,67,-0.042277254186741164],[127,63,68,-0.03951994999207312],[127,63,69,-0.038093724170828874],[127,63,70,-0.030310364283482244],[127,63,71,-0.023437150710582014],[127,63,72,-0.01755213928568715],[127,63,73,-0.01089644393799069],[127,63,74,-0.008826792076884055],[127,63,75,-0.008329333908420083],[127,63,76,-0.006949104536624534],[127,63,77,-0.0010845645695725659],[127,63,78,0.0053946587722796535],[127,63,79,0.003031099139225557],[127,64,64,-0.032345036490221316],[127,64,65,-0.03394690648714166],[127,64,66,-0.036135503682197034],[127,64,67,-0.03238442429424604],[127,64,68,-0.03184331551188371],[127,64,69,-0.028868832555109886],[127,64,70,-0.022395410715461944],[127,64,71,-0.015141419715126947],[127,64,72,-0.008983450083734093],[127,64,73,-0.0054020758939565955],[127,64,74,-0.0030265745164492763],[127,64,75,-0.0018700412812577005],[127,64,76,0.0028170716826118325],[127,64,77,0.009792266029959473],[127,64,78,0.014624222921292729],[127,64,79,0.013288127081111795],[127,65,64,-0.035245712692905884],[127,65,65,-0.03958052523676714],[127,65,66,-0.039616503697455535],[127,65,67,-0.03371589749588684],[127,65,68,-0.03337325144623529],[127,65,69,-0.032776045217454836],[127,65,70,-0.027030233104180276],[127,65,71,-0.018523624666691413],[127,65,72,-0.014275206240328103],[127,65,73,-0.011360518357567531],[127,65,74,-0.006797610628400966],[127,65,75,-0.006452387232915802],[127,65,76,0.0013145145788084345],[127,65,77,0.007029435443551724],[127,65,78,0.014066878597756377],[127,65,79,0.011244452953779044],[127,66,64,-0.047365311805010094],[127,66,65,-0.04816479480669254],[127,66,66,-0.048397249670212625],[127,66,67,-0.044369759689549634],[127,66,68,-0.04045979759836993],[127,66,69,-0.04165079892223161],[127,66,70,-0.03883007546672021],[127,66,71,-0.03154057254470957],[127,66,72,-0.02726138437786199],[127,66,73,-0.021802441561299832],[127,66,74,-0.016012101253962616],[127,66,75,-0.014660584242302724],[127,66,76,-0.007493811158687136],[127,66,77,-0.0031644566813349984],[127,66,78,0.0036960524663261773],[127,66,79,0.00244298393374906],[127,67,64,-0.05147659976484034],[127,67,65,-0.051884472816293686],[127,67,66,-0.04856779410903228],[127,67,67,-0.045916296196962775],[127,67,68,-0.044827582870392554],[127,67,69,-0.043425781680807976],[127,67,70,-0.04041710856646427],[127,67,71,-0.03579962327335083],[127,67,72,-0.03228054349085546],[127,67,73,-0.024723623356965263],[127,67,74,-0.018310594936834332],[127,67,75,-0.015919750067892535],[127,67,76,-0.012651564657586656],[127,67,77,-0.006008425980801035],[127,67,78,-0.0014121642462107675],[127,67,79,-0.0020466339018740953],[127,68,64,-0.1451851788080755],[127,68,65,-0.1474734345400393],[127,68,66,-0.14298512884083453],[127,68,67,-0.14318329734622162],[127,68,68,-0.14131764278001618],[127,68,69,-0.1379836101858048],[127,68,70,-0.13762961434420323],[127,68,71,-0.133310424156812],[127,68,72,-0.12880466700262327],[127,68,73,-0.12189292646231789],[127,68,74,-0.11446463560157581],[127,68,75,-0.11214797568205503],[127,68,76,-0.10703818781463462],[127,68,77,-0.10072901696407624],[127,68,78,-0.09863597376049314],[127,68,79,-0.09860532481488067],[127,69,64,-0.14163833013680582],[127,69,65,-0.15281582726608273],[127,69,66,-0.15949307129192652],[127,69,67,-0.16613942390220904],[127,69,68,-0.16875869896554935],[127,69,69,-0.16377219551881259],[127,69,70,-0.1633287384172456],[127,69,71,-0.16002336019978675],[127,69,72,-0.16017379694336067],[127,69,73,-0.1512260691634471],[127,69,74,-0.14377113891839047],[127,69,75,-0.13997334068709416],[127,69,76,-0.13396131137290285],[127,69,77,-0.12742686480670723],[127,69,78,-0.1225078643213827],[127,69,79,-0.1220741025071812],[127,70,64,-0.1430880312511148],[127,70,65,-0.1528204330456963],[127,70,66,-0.16196371381350105],[127,70,67,-0.16905170811081172],[127,70,68,-0.1723515998931328],[127,70,69,-0.16657355323010975],[127,70,70,-0.16680510721233355],[127,70,71,-0.16571540366805737],[127,70,72,-0.16535272956938263],[127,70,73,-0.15509841688176154],[127,70,74,-0.14834365347027634],[127,70,75,-0.14132272640672355],[127,70,76,-0.13718531287646232],[127,70,77,-0.1294881440665437],[127,70,78,-0.12363061500879877],[127,70,79,-0.12615368434450738],[127,71,64,-0.13391336197907527],[127,71,65,-0.1427714997400888],[127,71,66,-0.15319729835742474],[127,71,67,-0.1618583159684177],[127,71,68,-0.16533610294076762],[127,71,69,-0.1624601023316491],[127,71,70,-0.1627866618544253],[127,71,71,-0.16114248145782642],[127,71,72,-0.16048477910330736],[127,71,73,-0.14986665261631033],[127,71,74,-0.1440082263341005],[127,71,75,-0.136666949262159],[127,71,76,-0.13244475288238172],[127,71,77,-0.12574132997308557],[127,71,78,-0.11859984160781988],[127,71,79,-0.12006284410103973],[127,72,64,-0.13511855379436782],[127,72,65,-0.14330227683651164],[127,72,66,-0.15415496024061848],[127,72,67,-0.16222157216048128],[127,72,68,-0.16904167102536305],[127,72,69,-0.16805733343084678],[127,72,70,-0.16598971322242578],[127,72,71,-0.16326482648558446],[127,72,72,-0.16312853449792586],[127,72,73,-0.15208748172955544],[127,72,74,-0.14713924692996155],[127,72,75,-0.14082703968382615],[127,72,76,-0.13440477960865535],[127,72,77,-0.1270663248848793],[127,72,78,-0.12080874799419355],[127,72,79,-0.12075221585363162],[127,73,64,-0.14411315762070373],[127,73,65,-0.1477784725329429],[127,73,66,-0.15215308080846446],[127,73,67,-0.1555762815530726],[127,73,68,-0.16087021180656896],[127,73,69,-0.1584127357942026],[127,73,70,-0.15584659069349746],[127,73,71,-0.1531092381164924],[127,73,72,-0.15346520398164887],[127,73,73,-0.1428351288657735],[127,73,74,-0.13789406930201917],[127,73,75,-0.13383536065229668],[127,73,76,-0.1283791928861616],[127,73,77,-0.12459217351710128],[127,73,78,-0.12134592272968445],[127,73,79,-0.12143852629865334],[127,74,64,-0.1529764665031511],[127,74,65,-0.15664562513136185],[127,74,66,-0.159985801947617],[127,74,67,-0.16234056136029965],[127,74,68,-0.16619844493226757],[127,74,69,-0.16226661955082117],[127,74,70,-0.1609977484945429],[127,74,71,-0.16055363515795606],[127,74,72,-0.15990170375956467],[127,74,73,-0.1501688356513365],[127,74,74,-0.14555453646175504],[127,74,75,-0.14091048723749697],[127,74,76,-0.13644636138831914],[127,74,77,-0.13319701173462736],[127,74,78,-0.13012370027218426],[127,74,79,-0.12851204699521016],[127,75,64,-0.15538926804537617],[127,75,65,-0.15761264805975217],[127,75,66,-0.15894760438159278],[127,75,67,-0.15947066409911073],[127,75,68,-0.162500211157028],[127,75,69,-0.16217208178141934],[127,75,70,-0.15878219359151294],[127,75,71,-0.16220315473425465],[127,75,72,-0.1605315941363919],[127,75,73,-0.15194996860980955],[127,75,74,-0.14720654942976782],[127,75,75,-0.14137100327842628],[127,75,76,-0.1402750187556654],[127,75,77,-0.1376763028406892],[127,75,78,-0.13326334760456113],[127,75,79,-0.1327000487346756],[127,76,64,-0.15472539658652582],[127,76,65,-0.15451682371102016],[127,76,66,-0.1558493116805183],[127,76,67,-0.1550153076482474],[127,76,68,-0.15851961254004432],[127,76,69,-0.16059564011024782],[127,76,70,-0.15608147076902362],[127,76,71,-0.15883947834612644],[127,76,72,-0.1598124262416386],[127,76,73,-0.15439345275003247],[127,76,74,-0.148430734047534],[127,76,75,-0.14421639046007204],[127,76,76,-0.1417099508867878],[127,76,77,-0.14014841840689568],[127,76,78,-0.13986969374016756],[127,76,79,-0.13867639196117054],[127,77,64,-0.15288137584834682],[127,77,65,-0.15209738538255574],[127,77,66,-0.1494759863664155],[127,77,67,-0.14829849754289642],[127,77,68,-0.15169799677130286],[127,77,69,-0.15319910479554963],[127,77,70,-0.14764632836537134],[127,77,71,-0.14989625182184543],[127,77,72,-0.1491570279376019],[127,77,73,-0.14682010822355573],[127,77,74,-0.1427861701918309],[127,77,75,-0.13787677001199394],[127,77,76,-0.13564687585800206],[127,77,77,-0.13392051697876026],[127,77,78,-0.13641405701062054],[127,77,79,-0.13616334091362312],[127,78,64,-0.15236583095454082],[127,78,65,-0.1514493300953399],[127,78,66,-0.14801217244502998],[127,78,67,-0.14807883211850742],[127,78,68,-0.14964024260241812],[127,78,69,-0.15271057710116043],[127,78,70,-0.14853377848280544],[127,78,71,-0.1467132368753258],[127,78,72,-0.14845729990666418],[127,78,73,-0.1496985766979485],[127,78,74,-0.14752718337745943],[127,78,75,-0.14004902611638864],[127,78,76,-0.13823896433684674],[127,78,77,-0.1381008891023649],[127,78,78,-0.14016496138100437],[127,78,79,-0.144210400969071],[127,79,64,-0.14094829158766176],[127,79,65,-0.140461066990698],[127,79,66,-0.1366252923072928],[127,79,67,-0.1388857557098267],[127,79,68,-0.1402247997689341],[127,79,69,-0.1413411070493215],[127,79,70,-0.14152899213346262],[127,79,71,-0.13877929901860078],[127,79,72,-0.13859746634809225],[127,79,73,-0.14507105714712637],[127,79,74,-0.1440106338582235],[127,79,75,-0.13721842125246084],[127,79,76,-0.13742909519437854],[127,79,77,-0.13672988768462402],[127,79,78,-0.13950535730902436],[127,79,79,-0.14048410151603752],[127,80,64,-0.1403217352304506],[127,80,65,-0.1404650823487799],[127,80,66,-0.13652131621453534],[127,80,67,-0.13941088369710475],[127,80,68,-0.14214752412459347],[127,80,69,-0.1436883894132996],[127,80,70,-0.14463553904792975],[127,80,71,-0.14023842378782553],[127,80,72,-0.1396044121173695],[127,80,73,-0.147571674381353],[127,80,74,-0.14905500259461182],[127,80,75,-0.14419755545024546],[127,80,76,-0.14453008995957498],[127,80,77,-0.14312523765215523],[127,80,78,-0.14358250840699874],[127,80,79,-0.14265748049481414],[127,81,64,-0.14453503069704593],[127,81,65,-0.13949249616021903],[127,81,66,-0.1356861614745265],[127,81,67,-0.13337060330376993],[127,81,68,-0.13805093907085],[127,81,69,-0.14182100571855877],[127,81,70,-0.1421683685675083],[127,81,71,-0.13905480154414124],[127,81,72,-0.14078131924181708],[127,81,73,-0.1492964358579876],[127,81,74,-0.15078816609111342],[127,81,75,-0.151257680363107],[127,81,76,-0.15110815964272167],[127,81,77,-0.1538190889966069],[127,81,78,-0.15360357024052873],[127,81,79,-0.1505109199460926],[127,82,64,-0.1487654156235099],[127,82,65,-0.14577821347960784],[127,82,66,-0.14267162326856095],[127,82,67,-0.14098868609850926],[127,82,68,-0.14534570956914125],[127,82,69,-0.1509889788777339],[127,82,70,-0.14979460716491783],[127,82,71,-0.14850707106302344],[127,82,72,-0.14657238381405527],[127,82,73,-0.1540238449032116],[127,82,74,-0.15774366460679848],[127,82,75,-0.15994793032611565],[127,82,76,-0.15864937938543178],[127,82,77,-0.16538104955055427],[127,82,78,-0.16406657233138008],[127,82,79,-0.1561717796319283],[127,83,64,-0.14640963103831942],[127,83,65,-0.1438649825231213],[127,83,66,-0.14415616594830857],[127,83,67,-0.14337741680424992],[127,83,68,-0.14749460548835414],[127,83,69,-0.15125180282873688],[127,83,70,-0.14931724654904777],[127,83,71,-0.15154498339537192],[127,83,72,-0.14979229362445362],[127,83,73,-0.15748932442937735],[127,83,74,-0.16057379418214815],[127,83,75,-0.16460647155266508],[127,83,76,-0.1630370397534804],[127,83,77,-0.16815525044525753],[127,83,78,-0.16800979683387582],[127,83,79,-0.15931988206577052],[127,84,64,-0.13694719540536657],[127,84,65,-0.13782438836538466],[127,84,66,-0.1429003690820482],[127,84,67,-0.14377755491940192],[127,84,68,-0.14865089248352314],[127,84,69,-0.15235971385968913],[127,84,70,-0.1494246777502708],[127,84,71,-0.15303820598724793],[127,84,72,-0.15431633142673473],[127,84,73,-0.15898861690111987],[127,84,74,-0.16209590257116796],[127,84,75,-0.16681904828137648],[127,84,76,-0.16751224581107743],[127,84,77,-0.16996096202994188],[127,84,78,-0.16987201780587335],[127,84,79,-0.16209266430483443],[127,85,64,-0.12225062219430882],[127,85,65,-0.1307577572095817],[127,85,66,-0.14195549421515533],[127,85,67,-0.1462636571591993],[127,85,68,-0.1523945318613929],[127,85,69,-0.15644287530805495],[127,85,70,-0.1519409894460447],[127,85,71,-0.15192954617599694],[127,85,72,-0.15099114102622607],[127,85,73,-0.15251426671141677],[127,85,74,-0.15574813705140467],[127,85,75,-0.15787495329927828],[127,85,76,-0.1583306300575701],[127,85,77,-0.15781726391141115],[127,85,78,-0.15477440100945922],[127,85,79,-0.14728189924734983],[127,86,64,-0.12318076716415781],[127,86,65,-0.1337417524481614],[127,86,66,-0.14303844827841167],[127,86,67,-0.14695375131148444],[127,86,68,-0.15311207293831727],[127,86,69,-0.15906886228497902],[127,86,70,-0.15504570074979818],[127,86,71,-0.15137151938166837],[127,86,72,-0.1516730892148823],[127,86,73,-0.15357365971973977],[127,86,74,-0.15660894367044667],[127,86,75,-0.1579189123412215],[127,86,76,-0.15863113556446895],[127,86,77,-0.15903780759066105],[127,86,78,-0.15515173244028901],[127,86,79,-0.14799327449202473],[127,87,64,-0.11699203315998107],[127,87,65,-0.1276463840694564],[127,87,66,-0.1358361565528286],[127,87,67,-0.13680673384917186],[127,87,68,-0.14329786718565907],[127,87,69,-0.15204018749495443],[127,87,70,-0.15008453506212951],[127,87,71,-0.14790461737289648],[127,87,72,-0.14848500212608276],[127,87,73,-0.14824066081824708],[127,87,74,-0.15346006406405174],[127,87,75,-0.1538522172518149],[127,87,76,-0.1545200715665619],[127,87,77,-0.15645009054704934],[127,87,78,-0.15252267591875918],[127,87,79,-0.1433261660375626],[127,88,64,-0.11646101267632954],[127,88,65,-0.1282430507567515],[127,88,66,-0.13642044742457332],[127,88,67,-0.13867892229542794],[127,88,68,-0.1455711307435967],[127,88,69,-0.151507178978821],[127,88,70,-0.1530102427071378],[127,88,71,-0.15128939653873663],[127,88,72,-0.1538793396807772],[127,88,73,-0.15277644129103135],[127,88,74,-0.15569868454216523],[127,88,75,-0.15645740873008243],[127,88,76,-0.15803087081035583],[127,88,77,-0.15870090343801102],[127,88,78,-0.15537416483647637],[127,88,79,-0.14554907003688294],[127,89,64,-0.11904656716319777],[127,89,65,-0.12656481651995818],[127,89,66,-0.13818224173490373],[127,89,67,-0.14222200834788418],[127,89,68,-0.14677646586774484],[127,89,69,-0.15260761382302157],[127,89,70,-0.15306094980212254],[127,89,71,-0.1530944160620011],[127,89,72,-0.15724018338647544],[127,89,73,-0.155940995109179],[127,89,74,-0.15672300320034704],[127,89,75,-0.1593491257423173],[127,89,76,-0.16223525863969718],[127,89,77,-0.1616385031777981],[127,89,78,-0.15583610493935307],[127,89,79,-0.14634048034666458],[127,90,64,-0.1263703410241112],[127,90,65,-0.1357255628148793],[127,90,66,-0.14441260326663688],[127,90,67,-0.14880545324923017],[127,90,68,-0.15390388783159897],[127,90,69,-0.15852635933612777],[127,90,70,-0.15763994789534239],[127,90,71,-0.1581033094961026],[127,90,72,-0.16355872848630174],[127,90,73,-0.1665885216012034],[127,90,74,-0.16561374888154162],[127,90,75,-0.16918935927529366],[127,90,76,-0.1707146496616862],[127,90,77,-0.17234584185344662],[127,90,78,-0.16215991982990707],[127,90,79,-0.15354638098055756],[127,91,64,-0.12857417976986377],[127,91,65,-0.13820491373730504],[127,91,66,-0.1443840571613247],[127,91,67,-0.15165641891713225],[127,91,68,-0.15269933084763138],[127,91,69,-0.15630552114151966],[127,91,70,-0.1578660011003291],[127,91,71,-0.16009149874299608],[127,91,72,-0.16184295608767865],[127,91,73,-0.1700405203225483],[127,91,74,-0.17197131726122988],[127,91,75,-0.17248477142621277],[127,91,76,-0.17370109736712358],[127,91,77,-0.17482475847374856],[127,91,78,-0.16413096232465882],[127,91,79,-0.15598173398277987],[127,92,64,-0.1376633834890573],[127,92,65,-0.1497601667227047],[127,92,66,-0.15664927926756053],[127,92,67,-0.16520707292290038],[127,92,68,-0.16624382899241025],[127,92,69,-0.1710015243312611],[127,92,70,-0.17412193706244064],[127,92,71,-0.17568734781322926],[127,92,72,-0.17672850579677915],[127,92,73,-0.18604183432270527],[127,92,74,-0.18871092907791231],[127,92,75,-0.19150277299865248],[127,92,76,-0.19000910858271924],[127,92,77,-0.19156784535547033],[127,92,78,-0.18388072966339292],[127,92,79,-0.17437485930733915],[127,93,64,-0.13498097207029994],[127,93,65,-0.14721838130443132],[127,93,66,-0.15687625752701728],[127,93,67,-0.1648231654483595],[127,93,68,-0.1664583902668549],[127,93,69,-0.16934996880465558],[127,93,70,-0.17424768489406545],[127,93,71,-0.17884160003569302],[127,93,72,-0.18240598267233527],[127,93,73,-0.1921041346604228],[127,93,74,-0.19717359890250982],[127,93,75,-0.19944351461298016],[127,93,76,-0.20115010882393833],[127,93,77,-0.20110098879513377],[127,93,78,-0.1948781437321308],[127,93,79,-0.18710096710505075],[127,94,64,-0.13691456194888743],[127,94,65,-0.14703582065383972],[127,94,66,-0.15838993532352103],[127,94,67,-0.1674391151346301],[127,94,68,-0.16953505586426948],[127,94,69,-0.173106389895012],[127,94,70,-0.1736973569830204],[127,94,71,-0.17891624075995452],[127,94,72,-0.18336552912867057],[127,94,73,-0.1917890190279644],[127,94,74,-0.19781108338357192],[127,94,75,-0.20091180137574327],[127,94,76,-0.2059985513919163],[127,94,77,-0.2044721988907646],[127,94,78,-0.19448746882327533],[127,94,79,-0.1910309884975833],[127,95,64,-0.12929017992248815],[127,95,65,-0.13900894335361808],[127,95,66,-0.15139447104922865],[127,95,67,-0.1622829584689676],[127,95,68,-0.1632609394341239],[127,95,69,-0.16827861885191958],[127,95,70,-0.17079755475605968],[127,95,71,-0.17563324535729177],[127,95,72,-0.17899485099381757],[127,95,73,-0.18787417243233417],[127,95,74,-0.19198635017001084],[127,95,75,-0.19540330405640305],[127,95,76,-0.20216513537670794],[127,95,77,-0.20099742866286366],[127,95,78,-0.1941688714344466],[127,95,79,-0.18958790305972878],[127,96,64,-0.1301223661570405],[127,96,65,-0.1392254027845744],[127,96,66,-0.15303758085588387],[127,96,67,-0.1668411969066383],[127,96,68,-0.1666580867750313],[127,96,69,-0.1700771353774111],[127,96,70,-0.17039222846506796],[127,96,71,-0.1774117315671791],[127,96,72,-0.18303746303770635],[127,96,73,-0.18963442070270156],[127,96,74,-0.19659279245810798],[127,96,75,-0.1961696801903587],[127,96,76,-0.20201531762886854],[127,96,77,-0.20325726205023933],[127,96,78,-0.19541914619513384],[127,96,79,-0.19132598547889743],[127,97,64,-0.14173274025540206],[127,97,65,-0.14817450210222127],[127,97,66,-0.15769379398940153],[127,97,67,-0.1688235108461005],[127,97,68,-0.16966542573876925],[127,97,69,-0.1720432654586026],[127,97,70,-0.169964211283887],[127,97,71,-0.17309246045097815],[127,97,72,-0.1783524287491649],[127,97,73,-0.1802382001719997],[127,97,74,-0.18673004888637382],[127,97,75,-0.18788009833458294],[127,97,76,-0.19082353110376632],[127,97,77,-0.19336524564114396],[127,97,78,-0.1852532824778313],[127,97,79,-0.17865990396495357],[127,98,64,-0.15268920331465707],[127,98,65,-0.15722722127324756],[127,98,66,-0.16575459196599093],[127,98,67,-0.17499003888717968],[127,98,68,-0.1766546400900308],[127,98,69,-0.17774123321455834],[127,98,70,-0.17753072032152423],[127,98,71,-0.17876376084147214],[127,98,72,-0.1852865606099221],[127,98,73,-0.18676373901775256],[127,98,74,-0.19362098089584726],[127,98,75,-0.1940778298917505],[127,98,76,-0.19573158414053643],[127,98,77,-0.19571720016065908],[127,98,78,-0.18777097819879562],[127,98,79,-0.18189058003076444],[127,99,64,-0.1550895404353519],[127,99,65,-0.1606799881158218],[127,99,66,-0.16893491962321],[127,99,67,-0.17225111185471112],[127,99,68,-0.17537068036453896],[127,99,69,-0.1799695199095815],[127,99,70,-0.17886736940008424],[127,99,71,-0.18143862361003055],[127,99,72,-0.1856836442387752],[127,99,73,-0.18959716176843477],[127,99,74,-0.193306895221049],[127,99,75,-0.19103259736012107],[127,99,76,-0.19255071584232203],[127,99,77,-0.1950242491062605],[127,99,78,-0.188125909825221],[127,99,79,-0.17936204566746355],[127,100,64,-0.13246289030800665],[127,100,65,-0.13342050336597808],[127,100,66,-0.13256313373060927],[127,100,67,-0.12837153294548237],[127,100,68,-0.1263686905326616],[127,100,69,-0.12505372968502057],[127,100,70,-0.12083690532835212],[127,100,71,-0.12179011816871094],[127,100,72,-0.12130234677821793],[127,100,73,-0.12367421467745633],[127,100,74,-0.12552803165400567],[127,100,75,-0.12521603331031694],[127,100,76,-0.12632727084062131],[127,100,77,-0.12618975713584418],[127,100,78,-0.12107528110961005],[127,100,79,-0.11143233266973826],[127,101,64,-0.1371573397800052],[127,101,65,-0.13540523411494804],[127,101,66,-0.13615653945475],[127,101,67,-0.1299742405291988],[127,101,68,-0.1278056196459799],[127,101,69,-0.12835323883852098],[127,101,70,-0.12431352353812693],[127,101,71,-0.12409054434389365],[127,101,72,-0.12596221370481145],[127,101,73,-0.12469324419152487],[127,101,74,-0.12612377310252615],[127,101,75,-0.12605936610151555],[127,101,76,-0.1261851726207493],[127,101,77,-0.12489267550522899],[127,101,78,-0.11957336124071681],[127,101,79,-0.11143265853423015],[127,102,64,-0.13816393615132885],[127,102,65,-0.13881696264846352],[127,102,66,-0.13679382793199493],[127,102,67,-0.13035028531549545],[127,102,68,-0.1329048324186392],[127,102,69,-0.13244927432622602],[127,102,70,-0.1284454575690668],[127,102,71,-0.12749872905579976],[127,102,72,-0.12793789776417164],[127,102,73,-0.12680769211791132],[127,102,74,-0.12752951143294058],[127,102,75,-0.12801103771626154],[127,102,76,-0.12726098723760815],[127,102,77,-0.12361447652617885],[127,102,78,-0.11811281847886215],[127,102,79,-0.11069997121595257],[127,103,64,-0.13246771037430588],[127,103,65,-0.13176598522231084],[127,103,66,-0.1303034058452892],[127,103,67,-0.12747105234476563],[127,103,68,-0.1295945302347822],[127,103,69,-0.13025153979572213],[127,103,70,-0.12714831676787078],[127,103,71,-0.12602705740357556],[127,103,72,-0.1237665438689339],[127,103,73,-0.12230124382390324],[127,103,74,-0.12451722868031218],[127,103,75,-0.1252653825447577],[127,103,76,-0.12329941978986715],[127,103,77,-0.11806922632138467],[127,103,78,-0.11466285727269834],[127,103,79,-0.10938400395436264],[127,104,64,-0.13511956518099513],[127,104,65,-0.13165235244374898],[127,104,66,-0.13161279105907467],[127,104,67,-0.13025437225160436],[127,104,68,-0.13167462431443241],[127,104,69,-0.13546076579690866],[127,104,70,-0.13025747335375415],[127,104,71,-0.12916768267011022],[127,104,72,-0.12412212813425054],[127,104,73,-0.12299895193001104],[127,104,74,-0.12449275979478477],[127,104,75,-0.12639039606207259],[127,104,76,-0.12250593247505187],[127,104,77,-0.11832911617925476],[127,104,78,-0.11568879226435207],[127,104,79,-0.11356435345836596],[127,105,64,-0.12755692425191575],[127,105,65,-0.12774260179197625],[127,105,66,-0.12939119209222802],[127,105,67,-0.13147765123306313],[127,105,68,-0.13439496580197197],[127,105,69,-0.13548308230658077],[127,105,70,-0.13357206228827517],[127,105,71,-0.1358253338122306],[127,105,72,-0.1336155075747338],[127,105,73,-0.13423088866704666],[127,105,74,-0.13799936747737354],[127,105,75,-0.13742616640784674],[127,105,76,-0.12927702249351591],[127,105,77,-0.12380411421728277],[127,105,78,-0.11662551294670173],[127,105,79,-0.11164194331612455],[127,106,64,-0.13837535205125268],[127,106,65,-0.1368915075412267],[127,106,66,-0.1376955446697945],[127,106,67,-0.13976820162020748],[127,106,68,-0.14066032984807839],[127,106,69,-0.14108872150446583],[127,106,70,-0.14121311697838326],[127,106,71,-0.14178225407814116],[127,106,72,-0.13986466057217506],[127,106,73,-0.14206431285796894],[127,106,74,-0.14547269885717268],[127,106,75,-0.1452567754209975],[127,106,76,-0.1374719667237892],[127,106,77,-0.13067280418590035],[127,106,78,-0.1239350335218186],[127,106,79,-0.11702162312377642],[127,107,64,-0.14008799971533062],[127,107,65,-0.14091061737666633],[127,107,66,-0.1397295402687899],[127,107,67,-0.14049263306598936],[127,107,68,-0.14111770215493818],[127,107,69,-0.1434617350094761],[127,107,70,-0.14168027637429836],[127,107,71,-0.14049571540647993],[127,107,72,-0.13919091609116618],[127,107,73,-0.14300530859129795],[127,107,74,-0.14424987647493961],[127,107,75,-0.14756958795238231],[127,107,76,-0.13801560652424322],[127,107,77,-0.1288730031816214],[127,107,78,-0.12508305605779493],[127,107,79,-0.11818031827425957],[127,108,64,-0.13381459846316604],[127,108,65,-0.13913126183860391],[127,108,66,-0.14046695641233065],[127,108,67,-0.1391322369857224],[127,108,68,-0.14177951361084926],[127,108,69,-0.14603892534669596],[127,108,70,-0.1461483092056764],[127,108,71,-0.14327569567403592],[127,108,72,-0.14206135054225652],[127,108,73,-0.14695030607989662],[127,108,74,-0.1488456942639804],[127,108,75,-0.15122869593552402],[127,108,76,-0.14243910822647615],[127,108,77,-0.13463061466863754],[127,108,78,-0.13197134953107956],[127,108,79,-0.12810597499092297],[127,109,64,-0.14471829214347298],[127,109,65,-0.14617462261312605],[127,109,66,-0.14485476869802044],[127,109,67,-0.141455802400875],[127,109,68,-0.1430115673580143],[127,109,69,-0.14421368509295163],[127,109,70,-0.14181231216572399],[127,109,71,-0.13781424277562437],[127,109,72,-0.13547203395682186],[127,109,73,-0.13784268702903457],[127,109,74,-0.1360067719027484],[127,109,75,-0.1368217321253684],[127,109,76,-0.132619652276705],[127,109,77,-0.13345353594563808],[127,109,78,-0.1374561643384981],[127,109,79,-0.13889340083766366],[127,110,64,-0.14718318967987779],[127,110,65,-0.1478696494823874],[127,110,66,-0.14688801804243812],[127,110,67,-0.14479473323836536],[127,110,68,-0.14268191872519748],[127,110,69,-0.14146258263932937],[127,110,70,-0.13874339829403376],[127,110,71,-0.13757912878504233],[127,110,72,-0.13475568215459688],[127,110,73,-0.1353765087479868],[127,110,74,-0.1308921523372451],[127,110,75,-0.1305109731986438],[127,110,76,-0.1299383350028867],[127,110,77,-0.13219009108690835],[127,110,78,-0.13657236405729542],[127,110,79,-0.13874303143024597],[127,111,64,-0.14278919374762572],[127,111,65,-0.14162826095780154],[127,111,66,-0.14211879190004326],[127,111,67,-0.13925539424492395],[127,111,68,-0.13525727343321015],[127,111,69,-0.13505660869438652],[127,111,70,-0.1346554274554712],[127,111,71,-0.12924445094403308],[127,111,72,-0.1282269615343886],[127,111,73,-0.12920545801256322],[127,111,74,-0.12310648386225562],[127,111,75,-0.12379667776498764],[127,111,76,-0.12516942281319313],[127,111,77,-0.12931442274476032],[127,111,78,-0.1333311925815814],[127,111,79,-0.13750775882929392],[127,112,64,-0.14229923450912546],[127,112,65,-0.14141513451004942],[127,112,66,-0.14198299227434527],[127,112,67,-0.1401931664032465],[127,112,68,-0.13666050454178968],[127,112,69,-0.13517455388046548],[127,112,70,-0.13460698285721118],[127,112,71,-0.12834756493068433],[127,112,72,-0.12387607544311421],[127,112,73,-0.12437231773389679],[127,112,74,-0.12010701556817616],[127,112,75,-0.1207169573240904],[127,112,76,-0.12748651081068588],[127,112,77,-0.12984887943890905],[127,112,78,-0.1337956985857603],[127,112,79,-0.13673898664676665],[127,113,64,-0.14118245494253234],[127,113,65,-0.14255450526255062],[127,113,66,-0.1410326452641745],[127,113,67,-0.14045297631132753],[127,113,68,-0.13693149235296706],[127,113,69,-0.13520069836992232],[127,113,70,-0.13430224159050605],[127,113,71,-0.12968398961344701],[127,113,72,-0.12291166704787387],[127,113,73,-0.12015521756978931],[127,113,74,-0.11838194691614955],[127,113,75,-0.12032802466653197],[127,113,76,-0.1280849019831863],[127,113,77,-0.12942409846567327],[127,113,78,-0.1330503481091716],[127,113,79,-0.13537527847842168],[127,114,64,-0.1474979825954672],[127,114,65,-0.14965625864561305],[127,114,66,-0.14733797644502986],[127,114,67,-0.14528159479579503],[127,114,68,-0.14380484883622383],[127,114,69,-0.1428679508359204],[127,114,70,-0.14180137283020802],[127,114,71,-0.13689361687465013],[127,114,72,-0.12830689809323279],[127,114,73,-0.12189874027030598],[127,114,74,-0.1214430022206594],[127,114,75,-0.12321533899331857],[127,114,76,-0.13152071966623338],[127,114,77,-0.13686480599507128],[127,114,78,-0.14016311983736776],[127,114,79,-0.13833886285123673],[127,115,64,-0.14883621251148368],[127,115,65,-0.14863615089711635],[127,115,66,-0.1463667215565109],[127,115,67,-0.1467607842013016],[127,115,68,-0.14422913514437138],[127,115,69,-0.14257735122421472],[127,115,70,-0.1402530930666644],[127,115,71,-0.1354488312924395],[127,115,72,-0.1270887665137833],[127,115,73,-0.11992750979403588],[127,115,74,-0.11940128394972774],[127,115,75,-0.12441363032817118],[127,115,76,-0.12843519832778558],[127,115,77,-0.13635599631013529],[127,115,78,-0.1372540937993837],[127,115,79,-0.13553546132049166],[127,116,64,-0.1357214716399566],[127,116,65,-0.133512502414617],[127,116,66,-0.13185430864743414],[127,116,67,-0.1320825911279394],[127,116,68,-0.12644599340953075],[127,116,69,-0.12236042946317532],[127,116,70,-0.11489934460416815],[127,116,71,-0.11147065505617174],[127,116,72,-0.10289720178771347],[127,116,73,-0.09818096393559163],[127,116,74,-0.10175393330910017],[127,116,75,-0.10474270263064403],[127,116,76,-0.10706466685820182],[127,116,77,-0.11319527482164875],[127,116,78,-0.11317185081636641],[127,116,79,-0.11220465601637519],[127,117,64,-0.14341334305074407],[127,117,65,-0.14176772531860746],[127,117,66,-0.14064348675783528],[127,117,67,-0.13938212748365408],[127,117,68,-0.13371904637258256],[127,117,69,-0.12864624909928835],[127,117,70,-0.11932028309299358],[127,117,71,-0.11227522595466702],[127,117,72,-0.10216805447648868],[127,117,73,-0.09772400218906391],[127,117,74,-0.10237884192333287],[127,117,75,-0.10675017320234552],[127,117,76,-0.10714502668560741],[127,117,77,-0.10750370615455321],[127,117,78,-0.10562282993873032],[127,117,79,-0.10305977877648792],[127,118,64,-0.14192326204621972],[127,118,65,-0.1409873689187513],[127,118,66,-0.13649698572741184],[127,118,67,-0.1357687922447374],[127,118,68,-0.13093023495018344],[127,118,69,-0.1262981758496144],[127,118,70,-0.11684445847429856],[127,118,71,-0.10886625434518683],[127,118,72,-0.09855713884427718],[127,118,73,-0.09514659426964611],[127,118,74,-0.10116396856186367],[127,118,75,-0.10499271771372218],[127,118,76,-0.104927015054187],[127,118,77,-0.1077525501108668],[127,118,78,-0.10558646275092468],[127,118,79,-0.10361627941988169],[127,119,64,-0.13474688222832648],[127,119,65,-0.13391687111335432],[127,119,66,-0.12687064973247442],[127,119,67,-0.12718714331672226],[127,119,68,-0.1225480987799382],[127,119,69,-0.11814007748380159],[127,119,70,-0.11099616263982787],[127,119,71,-0.10379256714374671],[127,119,72,-0.09462296913533268],[127,119,73,-0.09293451064874726],[127,119,74,-0.09842732345765269],[127,119,75,-0.10229316771588524],[127,119,76,-0.10343163672282026],[127,119,77,-0.10723737487587764],[127,119,78,-0.10635523922588264],[127,119,79,-0.10548966096724255],[127,120,64,-0.13233164795552135],[127,120,65,-0.13073504747242495],[127,120,66,-0.12495574804641416],[127,120,67,-0.1229081673967014],[127,120,68,-0.11815568258255496],[127,120,69,-0.11164623942354418],[127,120,70,-0.10554009399255983],[127,120,71,-0.09985416602201387],[127,120,72,-0.09380354957831175],[127,120,73,-0.09337266243799386],[127,120,74,-0.09593811309822377],[127,120,75,-0.10205292923720491],[127,120,76,-0.10563657079704883],[127,120,77,-0.10905444809209228],[127,120,78,-0.10662497875702862],[127,120,79,-0.10693878222309691],[127,121,64,-0.12004624649198109],[127,121,65,-0.11787955985618905],[127,121,66,-0.11246907435775007],[127,121,67,-0.10825274107877067],[127,121,68,-0.10278061759753043],[127,121,69,-0.09622501260869765],[127,121,70,-0.09285438217134212],[127,121,71,-0.08877032312194519],[127,121,72,-0.0906826215555752],[127,121,73,-0.09273331688445996],[127,121,74,-0.09553710060870181],[127,121,75,-0.10340458717244376],[127,121,76,-0.10873706965029228],[127,121,77,-0.11288538299827017],[127,121,78,-0.1150325322447803],[127,121,79,-0.11571997917348406],[127,122,64,-0.12266756938115814],[127,122,65,-0.12114527093499916],[127,122,66,-0.11556149356827866],[127,122,67,-0.11094977072946335],[127,122,68,-0.10583083506844437],[127,122,69,-0.09944350754880747],[127,122,70,-0.09519424177652071],[127,122,71,-0.09401410232075588],[127,122,72,-0.09508732611023771],[127,122,73,-0.09813394691126207],[127,122,74,-0.10103618969447425],[127,122,75,-0.10804510948839183],[127,122,76,-0.11365049930498539],[127,122,77,-0.11711866998699376],[127,122,78,-0.12000213117843679],[127,122,79,-0.12052471369374976],[127,123,64,-0.1197012299175085],[127,123,65,-0.11781180905723537],[127,123,66,-0.11243445767180832],[127,123,67,-0.10954657767200106],[127,123,68,-0.1035458842000396],[127,123,69,-0.09734703991797719],[127,123,70,-0.09332377494035934],[127,123,71,-0.09272863013858723],[127,123,72,-0.09202758689194215],[127,123,73,-0.0960678738096948],[127,123,74,-0.10199504848977342],[127,123,75,-0.10699240740286836],[127,123,76,-0.11311866432529184],[127,123,77,-0.11684858237712073],[127,123,78,-0.1184291943297329],[127,123,79,-0.1218343592777071],[127,124,64,-0.10949248890036194],[127,124,65,-0.10928059799238263],[127,124,66,-0.10666113893499513],[127,124,67,-0.10663073891586276],[127,124,68,-0.10320695417395157],[127,124,69,-0.09876159995025216],[127,124,70,-0.09416629606278824],[127,124,71,-0.09397674853521289],[127,124,72,-0.09339397441071964],[127,124,73,-0.09789735654304128],[127,124,74,-0.10158456514755214],[127,124,75,-0.10860842440645019],[127,124,76,-0.11637623823937965],[127,124,77,-0.12074329005433249],[127,124,78,-0.12091670302497202],[127,124,79,-0.12618564839549587],[127,125,64,-0.10558852961412482],[127,125,65,-0.10553363052931694],[127,125,66,-0.10303825813766153],[127,125,67,-0.10300970313607313],[127,125,68,-0.10163189192226686],[127,125,69,-0.09841908392041597],[127,125,70,-0.09386025648731391],[127,125,71,-0.09520098512362044],[127,125,72,-0.09384460760253531],[127,125,73,-0.09838558090904972],[127,125,74,-0.09974761681366197],[127,125,75,-0.10750120220244978],[127,125,76,-0.11594196888846164],[127,125,77,-0.12018924702135017],[127,125,78,-0.11934112676200301],[127,125,79,-0.12433407584314096],[127,126,64,-0.10152401680270998],[127,126,65,-0.10199782163439913],[127,126,66,-0.10334816753836001],[127,126,67,-0.10371080337026665],[127,126,68,-0.10075908432504244],[127,126,69,-0.0990049831396473],[127,126,70,-0.0934964305553722],[127,126,71,-0.09423131954730682],[127,126,72,-0.09545902621677577],[127,126,73,-0.09919077887540965],[127,126,74,-0.09977008242476726],[127,126,75,-0.10690784555717815],[127,126,76,-0.11264761289087144],[127,126,77,-0.11779614493325014],[127,126,78,-0.11778244005312416],[127,126,79,-0.12293458675900265],[127,127,64,-0.09543736985386174],[127,127,65,-0.09681953116460493],[127,127,66,-0.09869420593296406],[127,127,67,-0.09867485001627219],[127,127,68,-0.09704812907175157],[127,127,69,-0.09810763565843604],[127,127,70,-0.09181073039987755],[127,127,71,-0.0920247374814014],[127,127,72,-0.09438442024716946],[127,127,73,-0.09724035861252035],[127,127,74,-0.10118177450899708],[127,127,75,-0.10759955235133939],[127,127,76,-0.1092434339833265],[127,127,77,-0.11410240519011028],[127,127,78,-0.11895986822837146],[127,127,79,-0.12348951032846935],[127,128,64,-0.0912582239076985],[127,128,65,-0.09597853927468007],[127,128,66,-0.09440727376097388],[127,128,67,-0.09431733984199218],[127,128,68,-0.09610279599904648],[127,128,69,-0.09681141766207801],[127,128,70,-0.09146561039293508],[127,128,71,-0.09235556651205779],[127,128,72,-0.09319470380322223],[127,128,73,-0.09840097180770592],[127,128,74,-0.10251915294931824],[127,128,75,-0.10643860238606218],[127,128,76,-0.10632814475677964],[127,128,77,-0.10995902286748283],[127,128,78,-0.11491925818778204],[127,128,79,-0.12064012669203429],[127,129,64,-0.10033640447301789],[127,129,65,-0.10359106188534935],[127,129,66,-0.10147692467082003],[127,129,67,-0.09883205449959531],[127,129,68,-0.10411038280411958],[127,129,69,-0.10496118350703702],[127,129,70,-0.101977046761838],[127,129,71,-0.1028621085876679],[127,129,72,-0.1018788092835371],[127,129,73,-0.10586187568560759],[127,129,74,-0.11112885893903779],[127,129,75,-0.11273141728510563],[127,129,76,-0.11424251778623692],[127,129,77,-0.11713203493120812],[127,129,78,-0.12193362061811144],[127,129,79,-0.1269511407637341],[127,130,64,-0.102463677039223],[127,130,65,-0.10498904377405702],[127,130,66,-0.10465645556968803],[127,130,67,-0.10195228637387654],[127,130,68,-0.1058148738519531],[127,130,69,-0.10982992147764076],[127,130,70,-0.10999766328648214],[127,130,71,-0.10949737168047981],[127,130,72,-0.10870395514433191],[127,130,73,-0.11210836628164879],[127,130,74,-0.11455691664084089],[127,130,75,-0.11655952997481746],[127,130,76,-0.1413623592511946],[127,130,77,-0.15414507230209828],[127,130,78,-0.1470401570597168],[127,130,79,-0.15775916969468115],[127,131,64,-0.09880879343494048],[127,131,65,-0.09966034999174068],[127,131,66,-0.10191365418264481],[127,131,67,-0.10023480771041288],[127,131,68,-0.1059014541079075],[127,131,69,-0.10877343671483741],[127,131,70,-0.1086455023807304],[127,131,71,-0.10648721031399494],[127,131,72,-0.10601448363462253],[127,131,73,-0.10896202525293747],[127,131,74,-0.11214565305116911],[127,131,75,-0.1273726333560368],[127,131,76,-0.16862255730089482],[127,131,77,-0.16895155739521242],[127,131,78,-0.15942954917562105],[127,131,79,-0.16328644877201648],[127,132,64,-0.08831829108848971],[127,132,65,-0.09070156611370309],[127,132,66,-0.09192954346025412],[127,132,67,-0.09149634422821841],[127,132,68,-0.09710898287767405],[127,132,69,-0.1012832992723242],[127,132,70,-0.10067707739615518],[127,132,71,-0.09976475124202616],[127,132,72,-0.10033156385210881],[127,132,73,-0.10470331384182438],[127,132,74,-0.11279904907155013],[127,132,75,-0.12942985745240632],[127,132,76,-0.17862161488258804],[127,132,77,-0.18368381566171957],[127,132,78,-0.16568313570742726],[127,132,79,-0.16604674327269286],[127,133,64,-0.07564992234891096],[127,133,65,-0.07545082348936702],[127,133,66,-0.07805268155879252],[127,133,67,-0.08017972851044936],[127,133,68,-0.08116183403578936],[127,133,69,-0.08455412223676953],[127,133,70,-0.08530480005135319],[127,133,71,-0.08638386332186562],[127,133,72,-0.08876385186507849],[127,133,73,-0.09238413075190209],[127,133,74,-0.12869028886118383],[127,133,75,-0.16096274882107317],[127,133,76,-0.2060045052608666],[127,133,77,-0.22094037459061813],[127,133,78,-0.2047186353363123],[127,133,79,-0.20293967859873674],[127,134,64,-0.0719336661586217],[127,134,65,-0.07364924273775622],[127,134,66,-0.07690191923191525],[127,134,67,-0.0790582118480765],[127,134,68,-0.07791519707709156],[127,134,69,-0.08023000998584333],[127,134,70,-0.08056665784162197],[127,134,71,-0.0836434074591424],[127,134,72,-0.0870047631962224],[127,134,73,-0.09080586177957733],[127,134,74,-0.1464391242553794],[127,134,75,-0.16943652569836065],[127,134,76,-0.2129394360080448],[127,134,77,-0.23662345744711022],[127,134,78,-0.22319159440935288],[127,134,79,-0.21807571767520514],[127,135,64,-0.062319898143922345],[127,135,65,-0.06510201707210578],[127,135,66,-0.07090019743309428],[127,135,67,-0.07312595940053751],[127,135,68,-0.07516807051777138],[127,135,69,-0.07773608035680017],[127,135,70,-0.07800923844478896],[127,135,71,-0.08201422418818712],[127,135,72,-0.08757944684816842],[127,135,73,-0.09037893225561451],[127,135,74,-0.15291765826668235],[127,135,75,-0.17361026580481065],[127,135,76,-0.20607271354141504],[127,135,77,-0.24205656202666537],[127,135,78,-0.2256280643049911],[127,135,79,-0.2169035150935365],[127,136,64,-0.05791501982808951],[127,136,65,-0.061775286132228616],[127,136,66,-0.06911721601456154],[127,136,67,-0.06999309289749851],[127,136,68,-0.07289833733648857],[127,136,69,-0.07673806782969064],[127,136,70,-0.0794302156084692],[127,136,71,-0.08253796522677083],[127,136,72,-0.08751794039351436],[127,136,73,-0.09971386736307242],[127,136,74,-0.16376959523927628],[127,136,75,-0.1862655392852947],[127,136,76,-0.21988852253346527],[127,136,77,-0.25642363756145814],[127,136,78,-0.24353933391274954],[127,136,79,-0.2271251747247668],[127,137,64,-0.05513247738508649],[127,137,65,-0.059708536657765654],[127,137,66,-0.06681919240665636],[127,137,67,-0.06996295136258086],[127,137,68,-0.07124921818116187],[127,137,69,-0.07626707784386692],[127,137,70,-0.08092972593967773],[127,137,71,-0.08520710378920895],[127,137,72,-0.08959037230621997],[127,137,73,-0.10738708042253667],[127,137,74,-0.16297894313859757],[127,137,75,-0.1860128906896205],[127,137,76,-0.22573244293754985],[127,137,77,-0.24479656519225582],[127,137,78,-0.24420583741999152],[127,137,79,-0.22619059611893147],[127,138,64,-0.0601884557727848],[127,138,65,-0.06299310943273888],[127,138,66,-0.06875873848622205],[127,138,67,-0.075856730004137],[127,138,68,-0.07633860775985518],[127,138,69,-0.08018583725535494],[127,138,70,-0.08619749844692032],[127,138,71,-0.09143425677238975],[127,138,72,-0.09499288296533084],[127,138,73,-0.09718646569735148],[127,138,74,-0.1421232879616357],[127,138,75,-0.16977077248895345],[127,138,76,-0.2121328397202754],[127,138,77,-0.2314202505594899],[127,138,78,-0.22728246414608907],[127,138,79,-0.20791206176754978],[127,139,64,-0.059343953228864446],[127,139,65,-0.05954605030722682],[127,139,66,-0.06398339834465412],[127,139,67,-0.07272093377686539],[127,139,68,-0.07591993837742222],[127,139,69,-0.07926376825127726],[127,139,70,-0.08629415455088921],[127,139,71,-0.092732022794632],[127,139,72,-0.09426776171781989],[127,139,73,-0.10838048344523288],[127,139,74,-0.15815201218144154],[127,139,75,-0.19826153874535157],[127,139,76,-0.22599246858125283],[127,139,77,-0.23234145149367513],[127,139,78,-0.23961982394504344],[127,139,79,-0.21522660282923745],[127,140,64,-0.05575711935186935],[127,140,65,-0.05561462085151343],[127,140,66,-0.057956419360227496],[127,140,67,-0.0647442545420612],[127,140,68,-0.06727408124650014],[127,140,69,-0.07323875904569263],[127,140,70,-0.07930042214423365],[127,140,71,-0.0838249649504031],[127,140,72,-0.08494225355302201],[127,140,73,-0.10220678746163593],[127,140,74,-0.15084490301769304],[127,140,75,-0.19697691424581834],[127,140,76,-0.2201529020075199],[127,140,77,-0.23136032343912033],[127,140,78,-0.23865659773214504],[127,140,79,-0.21758438594533983],[127,141,64,-0.050268029931141545],[127,141,65,-0.05227216108133724],[127,141,66,-0.05603527234031762],[127,141,67,-0.06491774391721414],[127,141,68,-0.06967273034503513],[127,141,69,-0.07395334238506389],[127,141,70,-0.0808523230098672],[127,141,71,-0.08733452405298892],[127,141,72,-0.08688267874968253],[127,141,73,-0.11959859569543577],[127,141,74,-0.14042934825193176],[127,141,75,-0.16987831771985995],[127,141,76,-0.20487765654190088],[127,141,77,-0.2286475509089732],[127,141,78,-0.23488678421837964],[127,141,79,-0.21122391324131373],[127,142,64,-0.04987645706497293],[127,142,65,-0.049750677548413544],[127,142,66,-0.05437020811360374],[127,142,67,-0.0634088628226853],[127,142,68,-0.06974143487338405],[127,142,69,-0.07530154533471844],[127,142,70,-0.07987470481148426],[127,142,71,-0.08875646113820694],[127,142,72,-0.08799876571392026],[127,142,73,-0.12309597965714777],[127,142,74,-0.14003573077653617],[127,142,75,-0.16194529816203773],[127,142,76,-0.2085252561214484],[127,142,77,-0.2254815628508197],[127,142,78,-0.23196677829159856],[127,142,79,-0.21649294736241384],[127,143,64,-0.04715421811362268],[127,143,65,-0.046712906864689],[127,143,66,-0.05357435331684397],[127,143,67,-0.061393046164944384],[127,143,68,-0.06647238308942259],[127,143,69,-0.07495561787077656],[127,143,70,-0.0810245967666034],[127,143,71,-0.08845859083152158],[127,143,72,-0.08978939802059306],[127,143,73,-0.1252857509893022],[127,143,74,-0.13420819825516297],[127,143,75,-0.1563088010098585],[127,143,76,-0.20461549853236127],[127,143,77,-0.2167661121866704],[127,143,78,-0.22387040662266916],[127,143,79,-0.20997389730864136],[127,144,64,-0.04764353483862642],[127,144,65,-0.04630006084182055],[127,144,66,-0.05134710046847574],[127,144,67,-0.059747806400262234],[127,144,68,-0.06631553756503622],[127,144,69,-0.07687992914403582],[127,144,70,-0.08195169147558035],[127,144,71,-0.08793039225213764],[127,144,72,-0.09080219118819391],[127,144,73,-0.13209059130489503],[127,144,74,-0.14017506600593738],[127,144,75,-0.1600209389213556],[127,144,76,-0.21224526665122026],[127,144,77,-0.22215853577435568],[127,144,78,-0.2313559195369892],[127,144,79,-0.2217761669381204],[127,145,64,-0.05711787833354283],[127,145,65,-0.052915443375383675],[127,145,66,-0.05396763962198124],[127,145,67,-0.05894356535980022],[127,145,68,-0.0663541125303037],[127,145,69,-0.07512969615773543],[127,145,70,-0.08206902821610887],[127,145,71,-0.08903321299980244],[127,145,72,-0.09443288533045241],[127,145,73,-0.10373759880311471],[127,145,74,-0.08930565714897527],[127,145,75,-0.09316698475552891],[127,145,76,-0.14651942701467097],[127,145,77,-0.18150796222564675],[127,145,78,-0.19903116798038575],[127,145,79,-0.19949714982139072],[127,146,64,-0.06419671780382682],[127,146,65,-0.060959338049388606],[127,146,66,-0.05910932316593072],[127,146,67,-0.06281804951740469],[127,146,68,-0.07000232086020916],[127,146,69,-0.08026262812581365],[127,146,70,-0.08648367336701951],[127,146,71,-0.09466410836853806],[127,146,72,-0.09538297956487043],[127,146,73,-0.09597050590944484],[127,146,74,-0.09349493939499597],[127,146,75,-0.09518965149502598],[127,146,76,-0.1363877693924676],[127,146,77,-0.18094661991066346],[127,146,78,-0.19666793099160346],[127,146,79,-0.19437824319146],[127,147,64,-0.06437783177102346],[127,147,65,-0.061455702722087016],[127,147,66,-0.0594728875582536],[127,147,67,-0.06184763607459756],[127,147,68,-0.06954484168673336],[127,147,69,-0.07933122330774028],[127,147,70,-0.08353400633712052],[127,147,71,-0.09347901342185576],[127,147,72,-0.09392988008327269],[127,147,73,-0.08180525892050775],[127,147,74,-0.08650576981461987],[127,147,75,-0.09125598887891682],[127,147,76,-0.07126558049385434],[127,147,77,-0.04063807775973355],[127,147,78,-0.04859414586648715],[127,147,79,-0.07527992846343103],[127,148,64,-0.03182168440760662],[127,148,65,-0.034441433880410835],[127,148,66,-0.03468845856837985],[127,148,67,-0.0427040126395221],[127,148,68,-0.05311626284002163],[127,148,69,-0.06307479570366398],[127,148,70,-0.07076591362483017],[127,148,71,-0.0823895450385922],[127,148,72,-0.08545284647497958],[127,148,73,-0.08351375109575969],[127,148,74,-0.06467258088379951],[127,148,75,-0.06320386160509858],[127,148,76,-0.04114083309778692],[127,148,77,-0.02560358751861283],[127,148,78,-0.03855022832302081],[127,148,79,-0.061641813331022345],[127,149,64,-0.03370424026911506],[127,149,65,-0.036370898221551734],[127,149,66,-0.0371797885575586],[127,149,67,-0.04422674988880827],[127,149,68,-0.05130873914082483],[127,149,69,-0.06196653395923257],[127,149,70,-0.06882192747755456],[127,149,71,-0.07683815586722191],[127,149,72,-0.08378340866597955],[127,149,73,-0.08332508327423928],[127,149,74,-0.06100073119330503],[127,149,75,-0.051473794118203874],[127,149,76,-0.02577737488532092],[127,149,77,-0.014883669133083421],[127,149,78,-0.0321454515089144],[127,149,79,-0.05500256901863406],[127,150,64,-0.03202394561631794],[127,150,65,-0.039154793254496945],[127,150,66,-0.04131636705515801],[127,150,67,-0.046505925215086216],[127,150,68,-0.0524541433560186],[127,150,69,-0.060896896811836077],[127,150,70,-0.06796548256435317],[127,150,71,-0.07441449573567466],[127,150,72,-0.08064772155662508],[127,150,73,-0.08028433806988587],[127,150,74,-0.05883116667522776],[127,150,75,-0.03597947141483545],[127,150,76,-0.005510595710225899],[127,150,77,-0.007667797004553903],[127,150,78,-0.021964965865951466],[127,150,79,-0.051834500986013894],[127,151,64,-0.028239561890259737],[127,151,65,-0.036384698776218416],[127,151,66,-0.04232682013018567],[127,151,67,-0.04665094379011733],[127,151,68,-0.0529948530464269],[127,151,69,-0.059600910386449546],[127,151,70,-0.06676423675266463],[127,151,71,-0.072515114454226],[127,151,72,-0.07893719053737726],[127,151,73,-0.07917475934866954],[127,151,74,-0.06157519846508841],[127,151,75,-0.03301851036155411],[127,151,76,0.0025261406096926536],[127,151,77,3.539678105537458E-4],[127,151,78,-0.014225686037686883],[127,151,79,-0.043972825935319246],[127,152,64,-0.030045437653409182],[127,152,65,-0.03938206417446269],[127,152,66,-0.04553208135193705],[127,152,67,-0.05032799428192768],[127,152,68,-0.054890967701543655],[127,152,69,-0.0591559131579522],[127,152,70,-0.06562966449692993],[127,152,71,-0.07210518186316796],[127,152,72,-0.07690944769167245],[127,152,73,-0.06940729901605679],[127,152,74,-0.05614691557438432],[127,152,75,-0.025794298438940377],[127,152,76,0.013019425872532894],[127,152,77,7.404230972050257E-4],[127,152,78,-0.010096723018263531],[127,152,79,-0.03171513041592035],[127,153,64,-0.03569748345998845],[127,153,65,-0.04203084832192272],[127,153,66,-0.04307168307069813],[127,153,67,-0.04281665393727868],[127,153,68,-0.04725992594220635],[127,153,69,-0.05135167951517412],[127,153,70,-0.05580558532100734],[127,153,71,-0.060398932981069686],[127,153,72,-0.0695737195411665],[127,153,73,-0.036168362805543496],[127,153,74,-0.00875687735000609],[127,153,75,0.02124711615616927],[127,153,76,0.02431357090026265],[127,153,77,0.012030935642876384],[127,153,78,-0.002617523964379115],[127,153,79,-0.017119609407976258],[127,154,64,-0.04017268122004734],[127,154,65,-0.0466920269156364],[127,154,66,-0.04837007817780867],[127,154,67,-0.04688689683083773],[127,154,68,-0.05197831681560715],[127,154,69,-0.058337710828746614],[127,154,70,-0.06058158656280657],[127,154,71,-0.06517703240728702],[127,154,72,-0.07515745146633623],[127,154,73,-0.04960730132540167],[127,154,74,-0.01969398735200724],[127,154,75,0.01382165652234478],[127,154,76,0.02725200367402872],[127,154,77,0.014903529355841535],[127,154,78,0.001063528817502643],[127,154,79,-0.010704187432758708],[127,155,64,-0.037422061408326504],[127,155,65,-0.046369680698395255],[127,155,66,-0.050164473248722946],[127,155,67,-0.04762811197148478],[127,155,68,-0.052120108982778274],[127,155,69,-0.05905678997527122],[127,155,70,-0.06143669529159489],[127,155,71,-0.06604950251507366],[127,155,72,-0.07342246244408315],[127,155,73,-0.044000235957088935],[127,155,74,-0.010983381676277687],[127,155,75,0.010475106236073783],[127,155,76,0.018737751683437123],[127,155,77,0.0065754304649825734],[127,155,78,-0.004190674579064579],[127,155,79,-0.01641098799189951],[127,156,64,-0.028705119283748762],[127,156,65,-0.03547719396762562],[127,156,66,-0.042401998446327],[127,156,67,-0.042578473650318166],[127,156,68,-0.046588503427304084],[127,156,69,-0.05616154460075598],[127,156,70,-0.06064564083697016],[127,156,71,-0.06596390480680521],[127,156,72,-0.07324010381741944],[127,156,73,-0.017695650401356386],[127,156,74,0.009026082694695445],[127,156,75,0.0108727281230937],[127,156,76,0.021091046910102926],[127,156,77,0.006227786096558344],[127,156,78,-0.0021044978004081116],[127,156,79,-0.014556619504962287],[127,157,64,-0.020939054429283316],[127,157,65,-0.03302746830236987],[127,157,66,-0.046655258986037756],[127,157,67,-0.052585483224611734],[127,157,68,-0.05640444949971729],[127,157,69,-0.06349091234075582],[127,157,70,-0.06695107043591045],[127,157,71,-0.07484769757308117],[127,157,72,-0.07734821641889804],[127,157,73,-0.006179956082143528],[127,157,74,0.02120303829162981],[127,157,75,0.024357186397362465],[127,157,76,0.0243250535498422],[127,157,77,0.009324039400207484],[127,157,78,0.0013138051534833661],[127,157,79,-0.009266124464662934],[127,158,64,-0.01897544410260575],[127,158,65,-0.03345033201854865],[127,158,66,-0.04735402210883026],[127,158,67,-0.052984613178524737],[127,158,68,-0.05937443150011497],[127,158,69,-0.06122599133493427],[127,158,70,-0.06513900646513487],[127,158,71,-0.07449626635560126],[127,158,72,-0.06750675543221876],[127,158,73,-0.0018362716174233212],[127,158,74,0.030484794237573262],[127,158,75,0.036016445187299045],[127,158,76,0.027819792504887655],[127,158,77,0.015112850034486952],[127,158,78,0.005734694303093188],[127,158,79,-0.0027590474589930247],[127,159,64,-0.05490192801945265],[127,159,65,-0.06609621434117523],[127,159,66,-0.07181681991883927],[127,159,67,-0.0729437715890777],[127,159,68,-0.07441742249866116],[127,159,69,-0.06642501199643286],[127,159,70,-0.06420229524543883],[127,159,71,-0.06927154650091144],[127,159,72,-0.05007710095892194],[127,159,73,0.008193273756881572],[127,159,74,0.03842163698824341],[127,159,75,0.03939438330740548],[127,159,76,0.03355125198673059],[127,159,77,0.02185686078584087],[127,159,78,0.01018071532885359],[127,159,79,0.0039186381237948376],[127,160,64,-0.057309013579866695],[127,160,65,-0.06607825938416348],[127,160,66,-0.07030406964595284],[127,160,67,-0.07297775085301826],[127,160,68,-0.0703972803842811],[127,160,69,-0.06674566884494951],[127,160,70,-0.06436340729719937],[127,160,71,-0.06692288528150221],[127,160,72,-0.039383741417631526],[127,160,73,0.018712509565636373],[127,160,74,0.03969659583857303],[127,160,75,0.03852761395726166],[127,160,76,0.03340088298088574],[127,160,77,0.024656434076217273],[127,160,78,0.01238651977944688],[127,160,79,0.0049054310882769014],[127,161,64,-0.05827091435281618],[127,161,65,-0.06401818034129828],[127,161,66,-0.07195447450948002],[127,161,67,-0.07228886501536133],[127,161,68,-0.06722936245359254],[127,161,69,-0.06515378964007182],[127,161,70,-0.06352294043299243],[127,161,71,-0.0638052534500054],[127,161,72,-0.01787093327914329],[127,161,73,0.05250227407583073],[127,161,74,0.055988266117970434],[127,161,75,0.05105354933864768],[127,161,76,0.041844988985895976],[127,161,77,0.03339596821597644],[127,161,78,0.024213305347463354],[127,161,79,0.014734099290279884],[127,162,64,-0.0631537601488833],[127,162,65,-0.06985025695096803],[127,162,66,-0.07596003153318996],[127,162,67,-0.07682767020949148],[127,162,68,-0.07041706770272127],[127,162,69,-0.06692677144058082],[127,162,70,-0.06680896103598763],[127,162,71,-0.0649793864653648],[127,162,72,-0.03284892880663579],[127,162,73,0.04900312496430129],[127,162,74,0.06715941024744754],[127,162,75,0.05647128052065466],[127,162,76,0.04504695673613705],[127,162,77,0.03611071681580699],[127,162,78,0.02853752003412721],[127,162,79,0.01616116664576636],[127,163,64,-0.061487980480279786],[127,163,65,-0.0682117062487269],[127,163,66,-0.07391258097401093],[127,163,67,-0.07176394725642413],[127,163,68,-0.0702914711228763],[127,163,69,-0.06407009098413655],[127,163,70,-0.06355903807222969],[127,163,71,-0.061030864027114384],[127,163,72,-0.05218507518673504],[127,163,73,0.02934847599758819],[127,163,74,0.05878932127125684],[127,163,75,0.04703320715419883],[127,163,76,0.03538502574023031],[127,163,77,0.02964581779379917],[127,163,78,0.02307316362341441],[127,163,79,0.010707626418778815],[127,164,64,-0.0646836110505323],[127,164,65,-0.0640634328156287],[127,164,66,-0.062416530235339565],[127,164,67,-0.055419151157847124],[127,164,68,-0.049531693250661216],[127,164,69,-0.03694674502279402],[127,164,70,-0.031111956318477865],[127,164,71,-0.02731981708232828],[127,164,72,-0.016972993724702283],[127,164,73,0.04191577820350529],[127,164,74,0.05751843038191776],[127,164,75,0.048064781788951724],[127,164,76,0.037281695575633406],[127,164,77,0.030067961882660726],[127,164,78,0.02410791728427332],[127,164,79,0.01294151862314058],[127,165,64,-0.07132372604442475],[127,165,65,-0.06392121577847101],[127,165,66,-0.0542315415839765],[127,165,67,-0.04620865607096537],[127,165,68,-0.035904503960694806],[127,165,69,-0.021946663600882252],[127,165,70,-0.012281885737782675],[127,165,71,-0.009579501326968914],[127,165,72,5.008965117450741E-4],[127,165,73,0.049948644937592455],[127,165,74,0.06365710460221598],[127,165,75,0.05428523207840226],[127,165,76,0.0462378059479272],[127,165,77,0.039954847940288196],[127,165,78,0.032600294157464044],[127,165,79,0.02347688546949686],[127,166,64,-0.06920507768738339],[127,166,65,-0.062322551688804115],[127,166,66,-0.05125950836726438],[127,166,67,-0.04243243371209507],[127,166,68,-0.031293099692457874],[127,166,69,-0.018185173871864982],[127,166,70,-0.007347525398350874],[127,166,71,-0.004609715882349152],[127,166,72,0.0013768097226885606],[127,166,73,0.024311449913638466],[127,166,74,0.03238660539270734],[127,166,75,0.02738872963699912],[127,166,76,0.025337033905535614],[127,166,77,0.026037508243667212],[127,166,78,0.023506249094658094],[127,166,79,0.021198933192741867],[127,167,64,-0.06492873010725057],[127,167,65,-0.05612390655563676],[127,167,66,-0.045110726772957535],[127,167,67,-0.037196078902316215],[127,167,68,-0.027096407016091548],[127,167,69,-0.015607550498785483],[127,167,70,-0.004487878841526419],[127,167,71,4.7914024059800275E-4],[127,167,72,0.004722032869855982],[127,167,73,0.02805340222814558],[127,167,74,0.03552093262473342],[127,167,75,0.0330389554793927],[127,167,76,0.031649438112727885],[127,167,77,0.03307824816278357],[127,167,78,0.031122184246279133],[127,167,79,0.030064240508239318],[127,168,64,-0.0655423693412785],[127,168,65,-0.05564657925801082],[127,168,66,-0.04486370993139878],[127,168,67,-0.03325078790163635],[127,168,68,-0.025551051662671728],[127,168,69,-0.015750855798665725],[127,168,70,-0.0020478640572997586],[127,168,71,0.0045079095969300514],[127,168,72,0.008687470169382842],[127,168,73,0.029065950980595653],[127,168,74,0.03316090793657804],[127,168,75,0.03190393656444013],[127,168,76,0.03058933790409374],[127,168,77,0.03371680649612052],[127,168,78,0.03301463266950938],[127,168,79,0.032484923296685175],[127,169,64,-0.060097938618072],[127,169,65,-0.05535441393046704],[127,169,66,-0.048335877505821606],[127,169,67,-0.0403834285352106],[127,169,68,-0.03269295378800817],[127,169,69,-0.023252468681479913],[127,169,70,-0.008475523487791806],[127,169,71,-0.0028753088576442265],[127,169,72,0.009748326645084857],[127,169,73,0.035766394531797946],[127,169,74,0.039233627774544005],[127,169,75,0.03681179008493779],[127,169,76,0.037151115523372],[127,169,77,0.04011444036318762],[127,169,78,0.04272790266241763],[127,169,79,0.03873446815239193],[127,170,64,-0.0664841479472538],[127,170,65,-0.06291829761126137],[127,170,66,-0.05573193197501661],[127,170,67,-0.04824275050916643],[127,170,68,-0.036545921047489854],[127,170,69,-0.027516278110756104],[127,170,70,-0.012874918719994743],[127,170,71,-0.004732390633585076],[127,170,72,0.0010513861961473914],[127,170,73,0.025573236264059867],[127,170,74,0.03342268210173703],[127,170,75,0.032695067095554226],[127,170,76,0.03586532850746679],[127,170,77,0.039512434046706485],[127,170,78,0.04081446983238027],[127,170,79,0.03796861516551325],[127,171,64,-0.06855722112122309],[127,171,65,-0.06316279309435968],[127,171,66,-0.05490485174088473],[127,171,67,-0.04777712949999502],[127,171,68,-0.0352813385932656],[127,171,69,-0.026513311700428296],[127,171,70,-0.013843639636309163],[127,171,71,-0.00303572639038123],[127,171,72,0.0046114431681302205],[127,171,73,0.018864124613042734],[127,171,74,0.01858722943171795],[127,171,75,0.02090852587150313],[127,171,76,0.02342593230623602],[127,171,77,0.02533876226717574],[127,171,78,0.027411641621267024],[127,171,79,0.026707244114891934],[127,172,64,-0.060918324558993125],[127,172,65,-0.05381090298189527],[127,172,66,-0.0443123818775818],[127,172,67,-0.03774199773424461],[127,172,68,-0.028704324175552645],[127,172,69,-0.01800940784853354],[127,172,70,-0.008020747043198051],[127,172,71,0.0029380645709637665],[127,172,72,0.012145768840829546],[127,172,73,0.007420935992995441],[127,172,74,-9.749452651098278E-4],[127,172,75,-0.0011110254845769774],[127,172,76,-7.282823534808525E-4],[127,172,77,6.703216784344768E-4],[127,172,78,0.004406093990686394],[127,172,79,0.004954056271540441],[127,173,64,-0.06256692027803279],[127,173,65,-0.05369990209859454],[127,173,66,-0.04271319560633108],[127,173,67,-0.03432914793945764],[127,173,68,-0.026117550471376733],[127,173,69,-0.015365554249917535],[127,173,70,-0.007462521763406921],[127,173,71,0.0049546092409543385],[127,173,72,0.014929619560413282],[127,173,73,0.007662607797690917],[127,173,74,-0.0012089864985590504],[127,173,75,-0.0031758572626650466],[127,173,76,-0.005204945401048294],[127,173,77,-0.002417052870482689],[127,173,78,0.0033841897931280868],[127,173,79,0.005501597912026743],[127,174,64,-0.06266218687474062],[127,174,65,-0.05184169501404608],[127,174,66,-0.03860122149420707],[127,174,67,-0.029600935260232553],[127,174,68,-0.021566476129570633],[127,174,69,-0.011583692457334288],[127,174,70,-0.0034887537260139267],[127,174,71,0.007944582361199437],[127,174,72,0.01635706097803666],[127,174,73,0.01620887758512636],[127,174,74,0.010048011621789654],[127,174,75,0.0027297488810350268],[127,174,76,-0.0022068656678162074],[127,174,77,-0.0013739650405600046],[127,174,78,0.0028948001827245884],[127,174,79,0.005259947338217885],[127,175,64,-0.05816264654938802],[127,175,65,-0.046917683832551016],[127,175,66,-0.0346614407305208],[127,175,67,-0.025191558380397633],[127,175,68,-0.016348640693344685],[127,175,69,-0.006628198369457466],[127,175,70,-0.001474881088812774],[127,175,71,0.009984081420518653],[127,175,72,0.019325852489790546],[127,175,73,0.022637312647651786],[127,175,74,0.02062844347164252],[127,175,75,0.012150228612513851],[127,175,76,0.0011138442369401091],[127,175,77,0.0023046486799051524],[127,175,78,0.0062375414320079425],[127,175,79,0.007127858502526105],[127,176,64,-0.05802203187747311],[127,176,65,-0.04609249095780908],[127,176,66,-0.032265031855053916],[127,176,67,-0.022083214460527245],[127,176,68,-0.011839718548066189],[127,176,69,-0.0015227805714264492],[127,176,70,0.003348499670472127],[127,176,71,0.013847635790382354],[127,176,72,0.02181407501473659],[127,176,73,0.026684368489727318],[127,176,74,0.023177909597646477],[127,176,75,0.012998953264229323],[127,176,76,0.0010108279229750494],[127,176,77,0.0024438285680884186],[127,176,78,0.006981978838100131],[127,176,79,0.006218236757373305],[127,177,64,-0.0672780700161768],[127,177,65,-0.0456631916935802],[127,177,66,-0.026044576400310368],[127,177,67,-0.011347141734476138],[127,177,68,0.002968999266463976],[127,177,69,0.010634511074455566],[127,177,70,0.01966809639628661],[127,177,71,0.029984071028339374],[127,177,72,0.035647349213640434],[127,177,73,0.0306197970604788],[127,177,74,-0.019614002937459907],[127,177,75,-0.07333830296667829],[127,177,76,-0.08287779439042782],[127,177,77,-0.0746960702782849],[127,177,78,-0.06961846881270808],[127,177,79,-0.06422417291978036],[127,178,64,-0.07636815568982344],[127,178,65,-0.0530265974583192],[127,178,66,-0.03013132994479495],[127,178,67,-0.01355463627661449],[127,178,68,0.0017200437877536723],[127,178,69,0.008342690623869192],[127,178,70,0.018989056440125246],[127,178,71,0.027260448766145112],[127,178,72,0.03456642408189903],[127,178,73,0.03811725886114828],[127,178,74,-0.02195889862895095],[127,178,75,-0.08091598788515111],[127,178,76,-0.08057441761245476],[127,178,77,-0.07609913259678486],[127,178,78,-0.07058763037441644],[127,178,79,-0.06836192400626132],[127,179,64,-0.07748846152939247],[127,179,65,-0.05530866923227323],[127,179,66,-0.028884638095057508],[127,179,67,-0.008964535997032438],[127,179,68,0.004738790668818688],[127,179,69,0.009791390612858025],[127,179,70,0.019714730659650126],[127,179,71,0.030239955973109134],[127,179,72,0.03843734727383796],[127,179,73,0.04185518531056928],[127,179,74,-0.028880802770723454],[127,179,75,-0.08546561529690905],[127,179,76,-0.08605170506593662],[127,179,77,-0.08676621088915505],[127,179,78,-0.08157814382939549],[127,179,79,-0.08075247683780934],[127,180,64,-0.07167776062429218],[127,180,65,-0.04956488304908749],[127,180,66,-0.022879486570853994],[127,180,67,-0.0020399028075938908],[127,180,68,0.014108501070361879],[127,180,69,0.022709452086143694],[127,180,70,0.03243298272380457],[127,180,71,0.04537795132844244],[127,180,72,0.05358651498985964],[127,180,73,0.059656935202243355],[127,180,74,-0.01105656410972565],[127,180,75,-0.06844241320177674],[127,180,76,-0.07690443565205052],[127,180,77,-0.07729913535041474],[127,180,78,-0.07401724760607006],[127,180,79,-0.07241537271684656],[127,181,64,-0.06243499778498095],[127,181,65,-0.04515477211830363],[127,181,66,-0.028146685617904413],[127,181,67,-0.011773450165126056],[127,181,68,0.0014176170778012753],[127,181,69,0.011690463692530767],[127,181,70,0.020465554518662277],[127,181,71,0.033947026557215154],[127,181,72,0.04401511987316853],[127,181,73,0.05131781093927057],[127,181,74,0.053845072249769116],[127,181,75,0.05399779587088685],[127,181,76,0.03780397909715169],[127,181,77,0.016051022519990216],[127,181,78,0.014745833010618374],[127,181,79,0.010674644405920114],[127,182,64,-0.05961047861574076],[127,182,65,-0.04614381501777293],[127,182,66,-0.027649876085811584],[127,182,67,-0.01095304804221145],[127,182,68,2.607782906692002E-4],[127,182,69,0.010077108601591667],[127,182,70,0.01961413186802291],[127,182,71,0.033334082969442014],[127,182,72,0.04570281295413739],[127,182,73,0.05141637937397481],[127,182,74,0.05415093473232391],[127,182,75,0.05421602850658054],[127,182,76,0.03753578186094256],[127,182,77,0.01865096562667448],[127,182,78,0.016707049877387168],[127,182,79,0.024405490223981082],[127,183,64,-0.05609750022587989],[127,183,65,-0.044067104090810355],[127,183,66,-0.025456767972178898],[127,183,67,-0.00875549360765858],[127,183,68,-7.02560728012766E-4],[127,183,69,0.01046480610851648],[127,183,70,0.019737157228639973],[127,183,71,0.03115081919844502],[127,183,72,0.044974134478733385],[127,183,73,0.04771133430330987],[127,183,74,0.051567070836589735],[127,183,75,0.04637264725423742],[127,183,76,0.035361188170537766],[127,183,77,0.017901926628978625],[127,183,78,0.015778341109311367],[127,183,79,0.02156984078012012],[127,184,64,-0.053005611693986376],[127,184,65,-0.04275370999139577],[127,184,66,-0.026334596442590702],[127,184,67,-0.010497525292706103],[127,184,68,-0.002047474023634935],[127,184,69,0.011031720623089561],[127,184,70,0.019679981921344333],[127,184,71,0.03324733057748569],[127,184,72,0.0455948243901471],[127,184,73,0.047175142575103024],[127,184,74,0.05222620048258199],[127,184,75,0.052769075965753115],[127,184,76,0.04235967503845563],[127,184,77,0.02995592710867718],[127,184,78,0.02212877392291196],[127,184,79,0.02353732816973564],[127,185,64,-0.049945573684963954],[127,185,65,-0.03920409171408787],[127,185,66,-0.026349455919523077],[127,185,67,-0.01362770288545663],[127,185,68,-0.002654336272009686],[127,185,69,0.009221772079998608],[127,185,70,0.019225555135997704],[127,185,71,0.03449787410618066],[127,185,72,0.04625550557238668],[127,185,73,0.04837406154205287],[127,185,74,0.05122350897053034],[127,185,75,0.05268820509623488],[127,185,76,0.05166381141428181],[127,185,77,0.04704704188274566],[127,185,78,0.03098830815111215],[127,185,79,0.029450242868937694],[127,186,64,-0.053186076304234164],[127,186,65,-0.04204769520854336],[127,186,66,-0.03264981376070969],[127,186,67,-0.019428895031721335],[127,186,68,-0.005960147712065003],[127,186,69,0.002909830076919445],[127,186,70,0.013606664814658054],[127,186,71,0.028546349371380175],[127,186,72,0.039516563402909766],[127,186,73,0.04126470284131917],[127,186,74,0.04730740399317129],[127,186,75,0.04942647335458861],[127,186,76,0.04879281810752545],[127,186,77,0.045847630498783654],[127,186,78,0.022734723309210017],[127,186,79,0.0044355787501388425],[127,187,64,-0.05073515526205427],[127,187,65,-0.04075639668969144],[127,187,66,-0.030279568719933814],[127,187,67,-0.019434094168836902],[127,187,68,-0.004521850670766908],[127,187,69,0.0037646411565416538],[127,187,70,0.015752811694603464],[127,187,71,0.026842142746901693],[127,187,72,0.035924673601202356],[127,187,73,0.04033055877769173],[127,187,74,0.04665727182327514],[127,187,75,0.05025981572708166],[127,187,76,0.05337154888355561],[127,187,77,0.05073796775104859],[127,187,78,0.03210016333644051],[127,187,79,0.005608580733763059],[127,188,64,-0.029571978181871114],[127,188,65,-0.017819153201386134],[127,188,66,-0.0070470116867740185],[127,188,67,0.0033095600346718657],[127,188,68,0.014035674802468034],[127,188,69,0.02441884627823615],[127,188,70,0.034254202017439006],[127,188,71,0.0438179408025261],[127,188,72,0.05370879427136416],[127,188,73,0.05767137661997665],[127,188,74,0.0649956556710258],[127,188,75,0.07251857303663958],[127,188,76,0.07928242007972515],[127,188,77,0.08017217763563157],[127,188,78,0.06883439887392466],[127,188,79,0.03306626185364405],[127,189,64,-0.024502220315527068],[127,189,65,-0.01535828810136032],[127,189,66,-0.008938814700503644],[127,189,67,-0.0016297050205154318],[127,189,68,0.007796744776287223],[127,189,69,0.018834865856977412],[127,189,70,0.028059233503360648],[127,189,71,0.04195755243901825],[127,189,72,0.05874361915491988],[127,189,73,0.0681557183401304],[127,189,74,0.07663380540939538],[127,189,75,0.085245400907288],[127,189,76,0.09090442519343721],[127,189,77,0.0879902123810973],[127,189,78,0.06238029011830244],[127,189,79,0.003400313039222544],[127,190,64,-0.025794892435948444],[127,190,65,-0.015629557589370152],[127,190,66,-0.008574951717955664],[127,190,67,3.921991068428776E-4],[127,190,68,0.010923829859734058],[127,190,69,0.019957027327723004],[127,190,70,0.025753122910055326],[127,190,71,0.04041121318286997],[127,190,72,0.05670035063338877],[127,190,73,0.06950461717259232],[127,190,74,0.07841478285794326],[127,190,75,0.08646167597233495],[127,190,76,0.09208738451134901],[127,190,77,0.09304517034338261],[127,190,78,0.06503343157333918],[127,190,79,0.011885722139822238],[127,191,64,-0.024875494285775956],[127,191,65,-0.017836135890504215],[127,191,66,-0.007097377639143282],[127,191,67,0.003533531567772058],[127,191,68,0.014051000076466952],[127,191,69,0.019875924893413777],[127,191,70,0.02503281634023352],[127,191,71,0.03641976904705155],[127,191,72,0.05278461109511828],[127,191,73,0.0667315899872005],[127,191,74,0.07684222489857662],[127,191,75,0.08567742717712568],[127,191,76,0.09224874418663298],[127,191,77,0.09757418649692354],[127,191,78,0.0694593441670392],[127,191,79,0.017801509694786333],[127,192,64,-0.024956656820130207],[127,192,65,-0.01818177933339668],[127,192,66,-0.006127738333964419],[127,192,67,0.0052658833468405275],[127,192,68,0.014840969372745705],[127,192,69,0.020645564232084038],[127,192,70,0.024331607491654944],[127,192,71,0.03511947904476023],[127,192,72,0.050149538135382934],[127,192,73,0.0682256869582809],[127,192,74,0.0781096426952885],[127,192,75,0.08624616682763264],[127,192,76,0.09300468272747187],[127,192,77,0.09874064254067227],[127,192,78,0.08098724474626966],[127,192,79,0.03322439685196764],[127,193,64,-0.03306044333209854],[127,193,65,-0.018896961042731655],[127,193,66,3.918330073265919E-4],[127,193,67,0.01616387186251042],[127,193,68,0.025475888348502673],[127,193,69,0.030759490295750924],[127,193,70,0.03419980978049056],[127,193,71,0.03911119566707122],[127,193,72,0.04704674603893609],[127,193,73,0.05947272669280926],[127,193,74,0.06632906961611125],[127,193,75,0.07574543872906397],[127,193,76,0.08353610984941463],[127,193,77,0.08960065020955402],[127,193,78,0.09490073924780873],[127,193,79,0.07210726796163403],[127,194,64,-0.03751161197565414],[127,194,65,-0.020423930650611835],[127,194,66,-9.40434771191434E-4],[127,194,67,0.012498541813046993],[127,194,68,0.020936714666366624],[127,194,69,0.027520695000093687],[127,194,70,0.031084696571027942],[127,194,71,0.03763518378755376],[127,194,72,0.044546911257982685],[127,194,73,0.05361517683526851],[127,194,74,0.05784717094750977],[127,194,75,0.06590898540897824],[127,194,76,0.07543245795535336],[127,194,77,0.08568736166809499],[127,194,78,0.09019225855607692],[127,194,79,0.0750713151642342],[127,195,64,-0.03655083840528475],[127,195,65,-0.015961640765101412],[127,195,66,8.643580758209424E-4],[127,195,67,0.011161420919363119],[127,195,68,0.021059020603479334],[127,195,69,0.027624499724136747],[127,195,70,0.03465538396180401],[127,195,71,0.04047192473799269],[127,195,72,0.04636702374536583],[127,195,73,0.053141905740484635],[127,195,74,0.055089423084212163],[127,195,75,0.06356407055013655],[127,195,76,0.07220923687522587],[127,195,77,0.0826348607660588],[127,195,78,0.08859154902411004],[127,195,79,0.07946743634330508],[127,196,64,-0.036606265034757335],[127,196,65,-0.026224513955934364],[127,196,66,-0.014586683136703235],[127,196,67,-0.01068315346743734],[127,196,68,-0.00630933768021226],[127,196,69,-0.004870497393208495],[127,196,70,0.0010152174369010836],[127,196,71,0.0038089200825690284],[127,196,72,0.00689341866395457],[127,196,73,0.012582404912818618],[127,196,74,0.014959320562726142],[127,196,75,0.020996507878178805],[127,196,76,0.028122695555727065],[127,196,77,0.03482930614738053],[127,196,78,0.04223558929156912],[127,196,79,0.04160864486783305],[127,197,64,-0.034006242825756844],[127,197,65,-0.026892985868074343],[127,197,66,-0.01661136909414805],[127,197,67,-0.011781212685215259],[127,197,68,-0.0050833320276173904],[127,197,69,-0.004232581678479078],[127,197,70,3.4759062549000186E-4],[127,197,71,0.0037303832296640693],[127,197,72,0.0059197554421233645],[127,197,73,0.01201936330816697],[127,197,74,0.017778459649929412],[127,197,75,0.02265330978907837],[127,197,76,0.029299048230634492],[127,197,77,0.03357258517211878],[127,197,78,0.037840012860534976],[127,197,79,0.017124604079009974],[127,198,64,-0.03339705750502968],[127,198,65,-0.027534390166402717],[127,198,66,-0.015755542590899133],[127,198,67,-0.009626120455444725],[127,198,68,-0.0035557906355368485],[127,198,69,-9.523416767158177E-4],[127,198,70,0.0020813585396887158],[127,198,71,0.005074238047565349],[127,198,72,0.00771450124134751],[127,198,73,0.012221553498076076],[127,198,74,0.019076184162857182],[127,198,75,0.02092922959661997],[127,198,76,0.027538587874187115],[127,198,77,0.030979365809631426],[127,198,78,0.03604668557582602],[127,198,79,0.00775599796563279],[127,199,64,-0.034252870425137555],[127,199,65,-0.02850282121483716],[127,199,66,-0.017386385653924877],[127,199,67,-0.01125432065211894],[127,199,68,-0.006542763659678152],[127,199,69,-0.0019503245023003435],[127,199,70,7.322475512655524E-4],[127,199,71,0.003737020130567703],[127,199,72,0.005456549996211937],[127,199,73,0.011282824302783379],[127,199,74,0.01865345745653743],[127,199,75,0.020486123154681513],[127,199,76,0.025250870424821284],[127,199,77,0.029624859839809864],[127,199,78,0.03594482856832129],[127,199,79,0.0032731000695761098],[127,200,64,-0.032470369868336055],[127,200,65,-0.027688874828408566],[127,200,66,-0.019221607421756853],[127,200,67,-0.013650400702911264],[127,200,68,-0.008553007145701008],[127,200,69,-0.004462803702721396],[127,200,70,-0.0010597376152599453],[127,200,71,0.0020956636362560316],[127,200,72,0.0038855204379613373],[127,200,73,0.010662796069901892],[127,200,74,0.018628152083884714],[127,200,75,0.02522457104424672],[127,200,76,0.029215780400763613],[127,200,77,0.032480835253171386],[127,200,78,0.0356951179512581],[127,200,79,-0.0017674808121938418],[127,201,64,-0.018382003712037617],[127,201,65,-0.017275392314328036],[127,201,66,-0.013794530786408882],[127,201,67,-0.006770831767033719],[127,201,68,-0.004557887566637012],[127,201,69,0.0012269640118473812],[127,201,70,0.0038640991502900818],[127,201,71,0.0021421636694625157],[127,201,72,0.0040942373540528015],[127,201,73,0.005320569760454252],[127,201,74,0.013537441878899409],[127,201,75,0.020878133409185123],[127,201,76,0.025488012336217225],[127,201,77,0.02845900632695847],[127,201,78,0.024153345714153437],[127,201,79,-0.012489539291159764],[127,202,64,-0.022693408406932514],[127,202,65,-0.023269887960667132],[127,202,66,-0.019283419484402764],[127,202,67,-0.012047706647962342],[127,202,68,-0.01095464472575794],[127,202,69,-0.005900444471029498],[127,202,70,-0.0015162479833021325],[127,202,71,-0.0019629707168663524],[127,202,72,4.551801555535695E-5],[127,202,73,2.3446569362872705E-4],[127,202,74,0.010848157805806002],[127,202,75,0.016216495017148197],[127,202,76,0.022452180277252765],[127,202,77,0.024397754439471855],[127,202,78,0.019386739980442047],[127,202,79,-0.010200619748349925],[127,203,64,-0.023567568302969716],[127,203,65,-0.023407638728750346],[127,203,66,-0.0206582135776094],[127,203,67,-0.013623578303917888],[127,203,68,-0.012940538158581677],[127,203,69,-0.00922695722429781],[127,203,70,-0.0037524359129083307],[127,203,71,-7.97328910039613E-4],[127,203,72,8.777668848064801E-4],[127,203,73,8.945615155756537E-4],[127,203,74,0.011591105785478034],[127,203,75,0.018220140180187347],[127,203,76,0.02192202090554002],[127,203,77,0.02521700990856185],[127,203,78,0.015401099487509565],[127,203,79,-0.015002093263087483],[127,204,64,-0.012608322458261087],[127,204,65,-0.00935217320628004],[127,204,66,-0.0020602497498808936],[127,204,67,0.0029123185174709243],[127,204,68,0.005299976749314511],[127,204,69,0.01025951242075343],[127,204,70,0.014809543528991997],[127,204,71,0.021340686751150695],[127,204,72,0.022101097059733926],[127,204,73,0.026389101611858146],[127,204,74,0.03705947074468144],[127,204,75,0.04401568450411075],[127,204,76,0.04504418320711484],[127,204,77,0.0480964165708863],[127,204,78,0.029660575864682376],[127,204,79,0.002621601834944441],[127,205,64,-0.022197543468104874],[127,205,65,-0.021052293519379636],[127,205,66,-0.016467920071719502],[127,205,67,-0.012408149778051367],[127,205,68,-0.008996608753861116],[127,205,69,-0.0017605848025817883],[127,205,70,0.003995871317842986],[127,205,71,0.013452779188642155],[127,205,72,0.025824393450452815],[127,205,73,0.03849210818898824],[127,205,74,0.047167566124291016],[127,205,75,0.053765448333346344],[127,205,76,0.046553756642673576],[127,205,77,-0.025812318559724434],[127,205,78,-0.05157707258498788],[127,205,79,-0.04066463459333093],[127,206,64,-0.022296526697151292],[127,206,65,-0.026351154589697848],[127,206,66,-0.019951538325606505],[127,206,67,-0.017230659067488635],[127,206,68,-0.00999202687721068],[127,206,69,-0.003986385265984493],[127,206,70,4.633521270911434E-4],[127,206,71,0.009607331391725538],[127,206,72,0.026238230695938308],[127,206,73,0.040023887185494225],[127,206,74,0.047658650709312855],[127,206,75,0.05230165204536255],[127,206,76,0.029666223973848105],[127,206,77,-0.0396598738277804],[127,206,78,-0.05998862952308316],[127,206,79,-0.04571966692112027],[127,207,64,-0.02757641626866962],[127,207,65,-0.03047594353173444],[127,207,66,-0.027854383088323012],[127,207,67,-0.0216646818734072],[127,207,68,-0.01653536947638337],[127,207,69,-0.010543351820956476],[127,207,70,-0.00526510617260767],[127,207,71,0.005101947589149725],[127,207,72,0.023307078830979266],[127,207,73,0.03813868116626673],[127,207,74,0.04541016764886631],[127,207,75,0.049380041384189985],[127,207,76,0.026122945136935232],[127,207,77,-0.05043360136926593],[127,207,78,-0.06911756267149745],[127,207,79,-0.04496076650625991],[127,208,64,-0.027763896879180294],[127,208,65,-0.030347725401217746],[127,208,66,-0.030703314486758337],[127,208,67,-0.024788942860759042],[127,208,68,-0.019905868838495946],[127,208,69,-0.013916603423672042],[127,208,70,-0.008599581761441127],[127,208,71,0.0036414035553107293],[127,208,72,0.019884435187315586],[127,208,73,0.03560408801772791],[127,208,74,0.04329043767046904],[127,208,75,0.029800765840777562],[127,208,76,-0.019173599314842776],[127,208,77,-0.08444398732625844],[127,208,78,-0.0882179808394212],[127,208,79,-0.058006008292619315],[127,209,64,-0.02582822956311151],[127,209,65,-0.028104499144209927],[127,209,66,-0.032779265979064526],[127,209,67,-0.028822129725837642],[127,209,68,-0.023436853516829226],[127,209,69,-0.015612560384442087],[127,209,70,-0.009765080921016259],[127,209,71,0.0022766992896448013],[127,209,72,0.01678563305134048],[127,209,73,0.03106989014111161],[127,209,74,0.04102434753434417],[127,209,75,0.01698608898163057],[127,209,76,-0.02825400292909852],[127,209,77,-0.09476951501199596],[127,209,78,-0.093866549845524],[127,209,79,-0.06005915410746146],[127,210,64,-0.028052742230370728],[127,210,65,-0.031413515363899],[127,210,66,-0.03839979637603279],[127,210,67,-0.03610248974451344],[127,210,68,-0.03302532213132932],[127,210,69,-0.02190429016647097],[127,210,70,-0.014677520129412092],[127,210,71,-0.0027330037944126584],[127,210,72,0.009980994300818058],[127,210,73,0.023789049750917113],[127,210,74,0.031097135273755128],[127,210,75,0.017394481203854055],[127,210,76,-0.030672904392228237],[127,210,77,-0.10345873592991306],[127,210,78,-0.09969294145491057],[127,210,79,-0.06319982103476278],[127,211,64,-0.0263710669243776],[127,211,65,-0.031392352169206245],[127,211,66,-0.03799674452760024],[127,211,67,-0.035780948299521914],[127,211,68,-0.033269968049673374],[127,211,69,-0.022919929384742202],[127,211,70,-0.01708153670789915],[127,211,71,-0.005512063550713042],[127,211,72,0.009071982721779559],[127,211,73,0.019595006027691875],[127,211,74,0.027538618676086368],[127,211,75,0.013054015092118072],[127,211,76,-0.04620885043687606],[127,211,77,-0.11252740440320028],[127,211,78,-0.11131242570361416],[127,211,79,-0.07115461980773191],[127,212,64,-0.03654647359812718],[127,212,65,-0.04032514461113475],[127,212,66,-0.04535714247141098],[127,212,67,-0.04363950612213652],[127,212,68,-0.041195317694680544],[127,212,69,-0.03346321485596514],[127,212,70,-0.02690119043079381],[127,212,71,-0.017566687267047937],[127,212,72,-0.0036409953976971055],[127,212,73,0.008280930167394895],[127,212,74,0.015977686792735965],[127,212,75,-0.003099692444463859],[127,212,76,-0.057792817555046255],[127,212,77,-0.11548053590946261],[127,212,78,-0.10968157274360005],[127,212,79,-0.0704438669440058],[127,213,64,-0.02993069922911344],[127,213,65,-0.03646590381815361],[127,213,66,-0.04651593246215138],[127,213,67,-0.04966158426816791],[127,213,68,-0.046431003661851045],[127,213,69,-0.04263755228350519],[127,213,70,-0.03861221265414724],[127,213,71,-0.027618763822146383],[127,213,72,-0.011683906544703943],[127,213,73,0.002124853057964851],[127,213,74,0.011147155575827683],[127,213,75,-0.013305135329390507],[127,213,76,-0.06966332651316806],[127,213,77,-0.12348592535241233],[127,213,78,-0.11303145428649303],[127,213,79,-0.09843891217733168],[127,214,64,-0.030919672621332883],[127,214,65,-0.040142661864499066],[127,214,66,-0.04950892175799075],[127,214,67,-0.053966483263738374],[127,214,68,-0.05080435479270379],[127,214,69,-0.04658672139684372],[127,214,70,-0.04048032171097657],[127,214,71,-0.029942106627679016],[127,214,72,-0.015643470779098778],[127,214,73,-0.003377027887014758],[127,214,74,0.006313689691334209],[127,214,75,-0.018996180103836975],[127,214,76,-0.05712329130771068],[127,214,77,-0.10990467991612779],[127,214,78,-0.10660090177086051],[127,214,79,-0.09330317516687436],[127,215,64,-0.04020679746968496],[127,215,65,-0.0492415257642114],[127,215,66,-0.05781948340528528],[127,215,67,-0.06084244453330234],[127,215,68,-0.056162240484861084],[127,215,69,-0.05070251041948545],[127,215,70,-0.0442581944867866],[127,215,71,-0.033328354728018816],[127,215,72,-0.020038033806451527],[127,215,73,-0.00715491178352301],[127,215,74,4.8396714227211257E-4],[127,215,75,-0.013889789096446822],[127,215,76,-0.050303494925327666],[127,215,77,-0.10179851023103026],[127,215,78,-0.10051276417228802],[127,215,79,-0.090924294582645],[127,216,64,-0.047060284034127875],[127,216,65,-0.05334300906554848],[127,216,66,-0.05980215667320904],[127,216,67,-0.061082841987002715],[127,216,68,-0.056510811409827694],[127,216,69,-0.05230361461088524],[127,216,70,-0.045285527012286164],[127,216,71,-0.03431686664228982],[127,216,72,-0.022381316399563533],[127,216,73,-0.009633404191167594],[127,216,74,-0.003453608222068416],[127,216,75,0.0058054246560631795],[127,216,76,-0.021467213119597137],[127,216,77,-0.08579424597988665],[127,216,78,-0.1035742624838261],[127,216,79,-0.09327452359752204],[127,217,64,-0.05857876694845528],[127,217,65,-0.05731636897590528],[127,217,66,-0.05482257996203657],[127,217,67,-0.05002799072510675],[127,217,68,-0.04958880142785457],[127,217,69,-0.044292776717291815],[127,217,70,-0.03683203979802882],[127,217,71,-0.029255594071467952],[127,217,72,-0.021384035632542348],[127,217,73,-0.010209025001696237],[127,217,74,-0.004714949411910696],[127,217,75,0.0022965336207429188],[127,217,76,-0.018097009180624447],[127,217,77,-0.07774734502466119],[127,217,78,-0.10041589727258629],[127,217,79,-0.09049642391641835],[127,218,64,-0.06708655562334284],[127,218,65,-0.06511470304517386],[127,218,66,-0.06007822093948045],[127,218,67,-0.05568825733604682],[127,218,68,-0.05654086884068754],[127,218,69,-0.05093794354074489],[127,218,70,-0.043505895949052964],[127,218,71,-0.03592255639372427],[127,218,72,-0.027112233697220267],[127,218,73,-0.014882870264486453],[127,218,74,-0.007886472482775783],[127,218,75,-0.0027050822001235403],[127,218,76,-0.016329925913397936],[127,218,77,-0.07320961461140246],[127,218,78,-0.09903623568702928],[127,218,79,-0.09073427083627945],[127,219,64,-0.06992612250527314],[127,219,65,-0.06733558111868637],[127,219,66,-0.06164917373628337],[127,219,67,-0.056021123698622804],[127,219,68,-0.055865953907721755],[127,219,69,-0.04907238746581122],[127,219,70,-0.04309721917058332],[127,219,71,-0.034750376073800104],[127,219,72,-0.025335510195379718],[127,219,73,-0.013885969008286259],[127,219,74,-0.00939332805222401],[127,219,75,-0.003846221803281938],[127,219,76,-0.023418640046822748],[127,219,77,-0.08004009226578691],[127,219,78,-0.10431354572608842],[127,219,79,-0.10049771753166101],[127,220,64,-0.06078668893433968],[127,220,65,-0.055551612600462597],[127,220,66,-0.048733989586602314],[127,220,67,-0.04164730353384663],[127,220,68,-0.03799495952659],[127,220,69,-0.03199684998046319],[127,220,70,-0.02815583690725866],[127,220,71,-0.01912325998522331],[127,220,72,-0.00959212493619628],[127,220,73,0.003442020354096881],[127,220,74,0.007408353131870715],[127,220,75,0.01323310007024403],[127,220,76,-0.01866947319693798],[127,220,77,-0.07749869967368439],[127,220,78,-0.09655978063983145],[127,220,79,-0.0995859162896222],[127,221,64,-0.061709977616349276],[127,221,65,-0.057461073208622704],[127,221,66,-0.0510675307473398],[127,221,67,-0.042803354098858104],[127,221,68,-0.0395050782298383],[127,221,69,-0.032796973929590315],[127,221,70,-0.02900824549144404],[127,221,71,-0.020712196418180506],[127,221,72,-0.011077567661417126],[127,221,73,5.556088487529143E-4],[127,221,74,0.00830404180139177],[127,221,75,0.014702460848937976],[127,221,76,-0.025957794522401975],[127,221,77,-0.08136879131294923],[127,221,78,-0.11032797182604205],[127,221,79,-0.09832646758643773],[127,222,64,-0.0639886622719648],[127,222,65,-0.0582229974748828],[127,222,66,-0.05442644198985608],[127,222,67,-0.046618173546215724],[127,222,68,-0.042090812024429144],[127,222,69,-0.03334457524174722],[127,222,70,-0.028092074799801137],[127,222,71,-0.02124486559889266],[127,222,72,-0.012188985270973077],[127,222,73,-2.8767469885535024E-4],[127,222,74,0.006865659383267386],[127,222,75,0.013617956717988863],[127,222,76,-0.02321124468755166],[127,222,77,-0.07717515934763282],[127,222,78,-0.11131563073309308],[127,222,79,-0.09682466474718732],[127,223,64,-0.07345060168358633],[127,223,65,-0.06750801777508153],[127,223,66,-0.06292947703566214],[127,223,67,-0.05505761291802608],[127,223,68,-0.04726167534279822],[127,223,69,-0.039668885612056295],[127,223,70,-0.030380097437992],[127,223,71,-0.021680730448732283],[127,223,72,-0.011588958523912521],[127,223,73,-0.001837805445836671],[127,223,74,0.005158253399028506],[127,223,75,0.011343664457388769],[127,223,76,-0.04828258336917894],[127,223,77,-0.08019840054467801],[127,223,78,-0.09208357158452686],[127,223,79,-0.09168061251230639],[127,224,64,-0.07558317513914137],[127,224,65,-0.07071138492095674],[127,224,66,-0.06697652918199412],[127,224,67,-0.057695816377515516],[127,224,68,-0.05026059553236148],[127,224,69,-0.04036576110084905],[127,224,70,-0.0318134634516255],[127,224,71,-0.020024472553523867],[127,224,72,-0.010655089600568018],[127,224,73,-9.459930014236034E-4],[127,224,74,0.003799023078269556],[127,224,75,0.009926181620704327],[127,224,76,-0.04636065220552761],[127,224,77,-0.08461269787174638],[127,224,78,-0.08993822298316881],[127,224,79,-0.09200954871407369],[127,225,64,-0.08235248188931693],[127,225,65,-0.07728986036323304],[127,225,66,-0.06734404755045502],[127,225,67,-0.05416257410441336],[127,225,68,-0.04416163104861211],[127,225,69,-0.03463222002316255],[127,225,70,-0.02617087651312139],[127,225,71,-0.013594659827968494],[127,225,72,-0.0026160948134768824],[127,225,73,0.007936580103949653],[127,225,74,0.012132895636449384],[127,225,75,0.018610187550953908],[127,225,76,-0.0442235104609119],[127,225,77,-0.0892708096968914],[127,225,78,-0.08505581683197096],[127,225,79,-0.08718588591697678],[127,226,64,-0.09077695140406294],[127,226,65,-0.08572244562976919],[127,226,66,-0.07526095143932818],[127,226,67,-0.060460968986573854],[127,226,68,-0.048228433266854095],[127,226,69,-0.03946780030152326],[127,226,70,-0.030533329807581153],[127,226,71,-0.018990826493734708],[127,226,72,-0.008512603309194261],[127,226,73,0.0031390628078567517],[127,226,74,0.010453622352778608],[127,226,75,0.014386519375369722],[127,226,76,-0.03990117111229426],[127,226,77,-0.08699666017839408],[127,226,78,-0.0869509885873523],[127,226,79,-0.08390367735666569],[127,227,64,-0.09276398753064222],[127,227,65,-0.08526321367349987],[127,227,66,-0.07686872475723666],[127,227,67,-0.06108800664392354],[127,227,68,-0.049762954953416316],[127,227,69,-0.040818696640892715],[127,227,70,-0.030707908266793288],[127,227,71,-0.018952017179390185],[127,227,72,-0.009768564322037293],[127,227,73,0.002241927499391533],[127,227,74,0.010445358524206486],[127,227,75,0.012594575169817337],[127,227,76,-0.04845015688379048],[127,227,77,-0.0974098449436225],[127,227,78,-0.10213275155450117],[127,227,79,-0.09813832645561965],[127,228,64,-0.08901860381730015],[127,228,65,-0.08127008825355195],[127,228,66,-0.07296798291633744],[127,228,67,-0.055550102954505964],[127,228,68,-0.04057828663758768],[127,228,69,-0.031083248368075356],[127,228,70,-0.019956626263802374],[127,228,71,-0.008676591510846793],[127,228,72,-6.265238907328108E-4],[127,228,73,0.007785774907608414],[127,228,74,0.01838166312512962],[127,228,75,0.02249815132163331],[127,228,76,-0.05775437450829049],[127,228,77,-0.09777265021392673],[127,228,78,-0.11455728299928196],[127,228,79,-0.10986416851873543],[127,229,64,-0.08087805573352352],[127,229,65,-0.07875493688161342],[127,229,66,-0.07613916169364096],[127,229,67,-0.06360642889543608],[127,229,68,-0.053282640672159695],[127,229,69,-0.040729854987996916],[127,229,70,-0.0291988698610339],[127,229,71,-0.02107034806431818],[127,229,72,-0.012000252882911483],[127,229,73,-0.004624479649945806],[127,229,74,0.005352007302281331],[127,229,75,-0.007897598105642615],[127,229,76,-0.07994305068315664],[127,229,77,-0.11712188820609579],[127,229,78,-0.1262769435175814],[127,229,79,-0.11320084975329958],[127,230,64,-0.08074885787431968],[127,230,65,-0.08023979928034405],[127,230,66,-0.07552247826131292],[127,230,67,-0.06389595399637235],[127,230,68,-0.054804816168634196],[127,230,69,-0.03937278227880325],[127,230,70,-0.02942363430898541],[127,230,71,-0.019860221895522487],[127,230,72,-0.013987480680768882],[127,230,73,-0.006085811113773959],[127,230,74,0.003585149067783122],[127,230,75,-0.016221464159513015],[127,230,76,-0.08204588630275346],[127,230,77,-0.12619904558922046],[127,230,78,-0.12042914038551428],[127,230,79,-0.10950742681882608],[127,231,64,-0.08576271677676561],[127,231,65,-0.0870282346704028],[127,231,66,-0.08100490122343526],[127,231,67,-0.06893883348615634],[127,231,68,-0.0572691146793628],[127,231,69,-0.04249487069332633],[127,231,70,-0.032529321244667564],[127,231,71,-0.02503347678289608],[127,231,72,-0.016542488300167038],[127,231,73,-0.00827482356537132],[127,231,74,0.002290728962039343],[127,231,75,-0.02153836009549942],[127,231,76,-0.0911317602039183],[127,231,77,-0.1288377430504429],[127,231,78,-0.1173442514600796],[127,231,79,-0.10708518181181825],[127,232,64,-0.08763353548138691],[127,232,65,-0.08714755128824672],[127,232,66,-0.07978292494455039],[127,232,67,-0.06789350247585405],[127,232,68,-0.05485581425109526],[127,232,69,-0.04379714185827596],[127,232,70,-0.03535144161620202],[127,232,71,-0.026911938261911655],[127,232,72,-0.015855291889732503],[127,232,73,-0.008287384045834484],[127,232,74,0.0020194323584673685],[127,232,75,-0.030429076909848043],[127,232,76,-0.0998517551935591],[127,232,77,-0.13016361407183],[127,232,78,-0.11824719413512774],[127,232,79,-0.10683591463130052],[127,233,64,-0.09020779297166842],[127,233,65,-0.0852844088333908],[127,233,66,-0.07748767854186739],[127,233,67,-0.06539065298622881],[127,233,68,-0.053234463103230864],[127,233,69,-0.044685130785837204],[127,233,70,-0.03502783084195385],[127,233,71,-0.026096429420166642],[127,233,72,-0.016506411854471964],[127,233,73,-0.008207510897118686],[127,233,74,0.0014934007252156711],[127,233,75,-0.04029847721094072],[127,233,76,-0.10582941795505209],[127,233,77,-0.13413671726419907],[127,233,78,-0.12251385696814601],[127,233,79,-0.1124104476669773],[127,234,64,-0.09756740061683014],[127,234,65,-0.09030861082145689],[127,234,66,-0.08272352375434647],[127,234,67,-0.0679707048464559],[127,234,68,-0.057849390597908015],[127,234,69,-0.04773211841876507],[127,234,70,-0.03911631154432682],[127,234,71,-0.027266785673807373],[127,234,72,-0.020022700637311958],[127,234,73,-0.010006122913489582],[127,234,74,-0.0037650808801381608],[127,234,75,-0.03678786156540323],[127,234,76,-0.10660334250186448],[127,234,77,-0.14962751648424036],[127,234,78,-0.1356015715553015],[127,234,79,-0.12375501477095965],[127,235,64,-0.09839741791154744],[127,235,65,-0.09304199958699505],[127,235,66,-0.08102742350140912],[127,235,67,-0.06774574145192444],[127,235,68,-0.05748219043790853],[127,235,69,-0.045982632870119944],[127,235,70,-0.039040792045485356],[127,235,71,-0.025523699690086624],[127,235,72,-0.01750482843588172],[127,235,73,-0.010542520664671456],[127,235,74,-0.0042373944227835775],[127,235,75,-0.11754460871146637],[127,235,76,-0.16563002819926373],[127,235,77,-0.15812579488832426],[127,235,78,-0.14737050059916137],[127,235,79,-0.1353729054703917],[127,236,64,-0.08295998545484412],[127,236,65,-0.08421488663924587],[127,236,66,-0.07856774912002046],[127,236,67,-0.07053342152153569],[127,236,68,-0.06693453066941743],[127,236,69,-0.06379122927216774],[127,236,70,-0.05713344538020454],[127,236,71,-0.04767334326826794],[127,236,72,-0.04119383034531496],[127,236,73,-0.03461101247582882],[127,236,74,-0.026061310892490863],[127,236,75,-0.12471706922194423],[127,236,76,-0.1738209719071632],[127,236,77,-0.16757403586573408],[127,236,78,-0.15751655385219143],[127,236,79,-0.14377906755618863],[127,237,64,-0.09338755564830648],[127,237,65,-0.086970325309559],[127,237,66,-0.0729356902451278],[127,237,67,-0.06076053757688121],[127,237,68,-0.057266717916377025],[127,237,69,-0.05378515374493148],[127,237,70,-0.04675774512444794],[127,237,71,-0.03794497545544692],[127,237,72,-0.03170628705205282],[127,237,73,-0.025692728599713194],[127,237,74,-0.03932488036831902],[127,237,75,-0.160968909466624],[127,237,76,-0.17478657752051044],[127,237,77,-0.16756501263933526],[127,237,78,-0.15798491196193495],[127,237,79,-0.144000379973301],[127,238,64,-0.09303551588720735],[127,238,65,-0.08650541831001787],[127,238,66,-0.07318438942672184],[127,238,67,-0.06309197350442439],[127,238,68,-0.05957262301631229],[127,238,69,-0.055366350941949305],[127,238,70,-0.04699180441010552],[127,238,71,-0.037232202210626966],[127,238,72,-0.03210463318335971],[127,238,73,-0.027224418549734813],[127,238,74,-0.03211152690716841],[127,238,75,-0.13801036749257073],[127,238,76,-0.172995638024963],[127,238,77,-0.16750171370054304],[127,238,78,-0.15346258646643832],[127,238,79,-0.14039510233472094],[127,239,64,-0.09581615113536743],[127,239,65,-0.09138497322221276],[127,239,66,-0.07986448261167836],[127,239,67,-0.07144581647709988],[127,239,68,-0.066339096805556],[127,239,69,-0.06380701135055583],[127,239,70,-0.05438655582054243],[127,239,71,-0.04273195002579244],[127,239,72,-0.033957529381210286],[127,239,73,-0.028719091101516603],[127,239,74,-0.03753253354434839],[127,239,75,-0.131444501465396],[127,239,76,-0.17166545716731194],[127,239,77,-0.16363954731426897],[127,239,78,-0.15084188445641689],[127,239,79,-0.13627524570474475],[127,240,64,-0.09306159606942754],[127,240,65,-0.08829209411204625],[127,240,66,-0.080679532033119],[127,240,67,-0.0740771220836885],[127,240,68,-0.06687479520395118],[127,240,69,-0.06414668936817089],[127,240,70,-0.053674611722073745],[127,240,71,-0.043372854015425],[127,240,72,-0.0362996906402616],[127,240,73,-0.02935328208393878],[127,240,74,-0.03986896966513507],[127,240,75,-0.1272491399799927],[127,240,76,-0.1717843627817862],[127,240,77,-0.1607212109065246],[127,240,78,-0.1504980133348885],[127,240,79,-0.13619304999356313],[127,241,64,-0.08324865214553517],[127,241,65,-0.08646718431533804],[127,241,66,-0.08637028849632308],[127,241,67,-0.08303683516721114],[127,241,68,-0.07710598665174792],[127,241,69,-0.070995983931359],[127,241,70,-0.06270843093533462],[127,241,71,-0.055170836071402635],[127,241,72,-0.050801214495486524],[127,241,73,-0.043192648367086],[127,241,74,-0.035130803803349236],[127,241,75,-0.02383870853283153],[127,241,76,-0.010310658056534583],[127,241,77,-0.015382170373723254],[127,241,78,-0.022383841026466123],[127,241,79,-0.035448963032304145],[127,242,64,-0.08790836077623027],[127,242,65,-0.09081628023543648],[127,242,66,-0.09010737566157917],[127,242,67,-0.08564853318633231],[127,242,68,-0.0797889620145977],[127,242,69,-0.07237330829584987],[127,242,70,-0.06597201879218823],[127,242,71,-0.061726173899851924],[127,242,72,-0.05582041330381804],[127,242,73,-0.04908258764447683],[127,242,74,-0.04264358146081157],[127,242,75,-0.02900908206100626],[127,242,76,-0.014212397037182675],[127,242,77,-0.013089531356078809],[127,242,78,-0.019511520575116376],[127,242,79,-0.037893706525532075],[127,243,64,-0.08651349185803772],[127,243,65,-0.09115810061964258],[127,243,66,-0.08858318667684853],[127,243,67,-0.08350260436185689],[127,243,68,-0.08080943565094081],[127,243,69,-0.07284655258046183],[127,243,70,-0.06781931603686206],[127,243,71,-0.06260072142365081],[127,243,72,-0.054303413677456516],[127,243,73,-0.04915926841534994],[127,243,74,-0.04163065277964724],[127,243,75,-0.026868412182635595],[127,243,76,-0.017086312997095884],[127,243,77,-0.0026030893936946353],[127,243,78,-0.0012976723786302796],[127,243,79,-0.01871068364571629],[127,244,64,-0.07833424973657321],[127,244,65,-0.07139124049658482],[127,244,66,-0.06184135056606241],[127,244,67,-0.04998676109749445],[127,244,68,-0.03785978724977135],[127,244,69,-0.024663243903183363],[127,244,70,-0.015754445472809173],[127,244,71,-0.0036461584562829524],[127,244,72,0.008445329944307911],[127,244,73,0.015520707000246534],[127,244,74,0.02319847866368982],[127,244,75,0.03678548995030309],[127,244,76,0.04589036116350653],[127,244,77,0.058564511477510905],[127,244,78,0.057226145511049126],[127,244,79,0.027512719707130873],[127,245,64,-0.07621883373194263],[127,245,65,-0.06961930568277017],[127,245,66,-0.0632803862534426],[127,245,67,-0.05166426871958485],[127,245,68,-0.042041082346095604],[127,245,69,-0.027761263425756827],[127,245,70,-0.017623941684688227],[127,245,71,-0.007048160563083827],[127,245,72,0.008686139084703476],[127,245,73,0.01617060304626962],[127,245,74,0.02379850177712152],[127,245,75,0.03514572276756463],[127,245,76,0.044209575859299535],[127,245,77,0.05998158480274782],[127,245,78,0.07233092786521449],[127,245,79,0.03210317847731704],[127,246,64,-0.07410415040425383],[127,246,65,-0.06944805415549421],[127,246,66,-0.06388293862756153],[127,246,67,-0.05297614567409996],[127,246,68,-0.0437288190622126],[127,246,69,-0.032581331241668315],[127,246,70,-0.018385086424051067],[127,246,71,-0.0070908670677873875],[127,246,72,0.00631466320635117],[127,246,73,0.017984641112603478],[127,246,74,0.02434031657659448],[127,246,75,0.03391917273837493],[127,246,76,0.044018148111606606],[127,246,77,0.059882867543826865],[127,246,78,0.07732204370302638],[127,246,79,0.048724149644149305],[127,247,64,-0.07901145036446483],[127,247,65,-0.07554369486967658],[127,247,66,-0.06872485651827717],[127,247,67,-0.05718319720418727],[127,247,68,-0.046865663213145586],[127,247,69,-0.0390242535830798],[127,247,70,-0.020721104553883624],[127,247,71,-0.009200592195935275],[127,247,72,0.002229866278969511],[127,247,73,0.016004436661222685],[127,247,74,0.025563187352011477],[127,247,75,0.03560464074198057],[127,247,76,0.047093593989939564],[127,247,77,0.06284728208997035],[127,247,78,0.08143051288705942],[127,247,79,0.06913326848449147],[127,248,64,-0.07749061809836291],[127,248,65,-0.07104780877807312],[127,248,66,-0.06598897001210935],[127,248,67,-0.055705393093784375],[127,248,68,-0.04665617463753495],[127,248,69,-0.03903913583664009],[127,248,70,-0.021502936358008845],[127,248,71,-0.006763600821434068],[127,248,72,0.003997858788221925],[127,248,73,0.016620131692839574],[127,248,74,0.028452485543689288],[127,248,75,0.03692795264730593],[127,248,76,0.049605818793103676],[127,248,77,0.06385368080049418],[127,248,78,0.08335760334195891],[127,248,79,0.06740307343526519],[127,249,64,-0.08603285263309174],[127,249,65,-0.0782255032632733],[127,249,66,-0.07074538713211737],[127,249,67,-0.06193903787283961],[127,249,68,-0.05210043094072131],[127,249,69,-0.04325944334067722],[127,249,70,-0.02546582949536673],[127,249,71,-0.004045094530624321],[127,249,72,0.013063366294824769],[127,249,73,0.025003023851229544],[127,249,74,0.03846260311175248],[127,249,75,0.04903328767374385],[127,249,76,0.05981136737933844],[127,249,77,0.07192650425175674],[127,249,78,0.06380114288101334],[127,249,79,0.01497087402690217],[127,250,64,-0.10004760876409094],[127,250,65,-0.11042947020172345],[127,250,66,-0.13157198282591365],[127,250,67,-0.15866787156158974],[127,250,68,-0.1723316565873752],[127,250,69,-0.15464385654703053],[127,250,70,-0.11968318521470953],[127,250,71,-0.07869474220200948],[127,250,72,-0.08776390194129832],[127,250,73,-0.08426251330069975],[127,250,74,-0.10364709884544088],[127,250,75,-0.1246286631317025],[127,250,76,-0.08807259888728136],[127,250,77,-0.006064683686349673],[127,250,78,0.04736822413545496],[127,250,79,0.07630785714462601],[127,251,64,-0.11402259908529724],[127,251,65,-0.12524129729084174],[127,251,66,-0.1520586589902575],[127,251,67,-0.189187944251114],[127,251,68,-0.19550417663067443],[127,251,69,-0.17855927938410143],[127,251,70,-0.1365325468216866],[127,251,71,-0.0943434808064713],[127,251,72,-0.1030797446072906],[127,251,73,-0.08953879010904432],[127,251,74,-0.1019854786723003],[127,251,75,-0.11316022124795194],[127,251,76,-0.07786059595424626],[127,251,77,0.004244717434309847],[127,251,78,0.05736357961846407],[127,251,79,0.08613332791645888],[127,252,64,-0.12920064994096425],[127,252,65,-0.13037863295986518],[127,252,66,-0.16351018269081752],[127,252,67,-0.20432286013068324],[127,252,68,-0.19980626576615332],[127,252,69,-0.19068364185360542],[127,252,70,-0.15303451334619494],[127,252,71,-0.11050988530065954],[127,252,72,-0.12058683072052359],[127,252,73,-0.11400793862785659],[127,252,74,-0.12104563464228839],[127,252,75,-0.10709610544180832],[127,252,76,-0.08668927613251133],[127,252,77,-0.006106142963815134],[127,252,78,0.04799904551487942],[127,252,79,0.07689118273167551],[127,253,64,-0.16846793187120973],[127,253,65,-0.1446026074117427],[127,253,66,-0.1674573531010617],[127,253,67,-0.17787149809527425],[127,253,68,-0.16094495932195765],[127,253,69,-0.1644060576027811],[127,253,70,-0.1801516118422507],[127,253,71,-0.16525549233127504],[127,253,72,-0.17191731793767623],[127,253,73,-0.15645296611428486],[127,253,74,-0.12525286800284802],[127,253,75,-0.06415105744763479],[127,253,76,-0.049506343557396734],[127,253,77,-0.0014357913649428733],[127,253,78,0.002964680970241884],[127,253,79,0.019807359926417994],[127,254,64,-0.1314228519017631],[127,254,65,-0.11184212559577747],[127,254,66,-0.1372670580924734],[127,254,67,-0.15893078907365119],[127,254,68,-0.13640425770314535],[127,254,69,-0.1444004549777144],[127,254,70,-0.1765647304664857],[127,254,71,-0.16480977629006616],[127,254,72,-0.17246339562091545],[127,254,73,-0.15419632940147665],[127,254,74,-0.1264468337193988],[127,254,75,-0.06271956607395537],[127,254,76,-0.04500598038445293],[127,254,77,-0.0044218241021117405],[127,254,78,-0.013496661988675822],[127,254,79,-0.0077566311525763265],[127,255,64,-0.12772328815599449],[127,255,65,-0.11683370570468801],[127,255,66,-0.12102610460847207],[127,255,67,-0.14740714071632008],[127,255,68,-0.12357850001415652],[127,255,69,-0.13927485741913612],[127,255,70,-0.1844052085561971],[127,255,71,-0.17004639850853923],[127,255,72,-0.1734371098417248],[127,255,73,-0.15963061542304258],[127,255,74,-0.12330401189794869],[127,255,75,-0.06121027585976792],[127,255,76,-0.03658578448646045],[127,255,77,-0.0011300644946151683],[127,255,78,-0.011289431887311623],[127,255,79,-0.015850423993340607],[127,256,64,-0.14320442561299823],[127,256,65,-0.1114205259862834],[127,256,66,-0.11938316481360892],[127,256,67,-0.13776473713991685],[127,256,68,-0.12309579538421855],[127,256,69,-0.13482920661396583],[127,256,70,-0.19092046735867738],[127,256,71,-0.189706217642924],[127,256,72,-0.17430302440558118],[127,256,73,-0.16026232744065483],[127,256,74,-0.11613598069610254],[127,256,75,-0.0597956835220438],[127,256,76,-0.034076996182269316],[127,256,77,-0.005252170621794602],[127,256,78,-0.019888166011963353],[127,256,79,-0.022979462180852325],[127,257,64,-0.15335645007065504],[127,257,65,-0.1133899668354441],[127,257,66,-0.12838906132211808],[127,257,67,-0.13597613068336462],[127,257,68,-0.1293714938622169],[127,257,69,-0.1397490059205599],[127,257,70,-0.21094280597827372],[127,257,71,-0.200035779597903],[127,257,72,-0.1833148276320765],[127,257,73,-0.1675096330583056],[127,257,74,-0.13750937409978656],[127,257,75,-0.08900963946094907],[127,257,76,-0.06114170087878673],[127,257,77,-0.04140065273544502],[127,257,78,-0.056968115590496304],[127,257,79,-0.07138764178778388],[127,258,64,-0.1011326460785132],[127,258,65,-0.07505219800193197],[127,258,66,-0.08961257186323367],[127,258,67,-0.08516440470963309],[127,258,68,-0.0785692035130856],[127,258,69,-0.09570955267621319],[127,258,70,-0.17484064020992732],[127,258,71,-0.19952778792855427],[127,258,72,-0.18309288392841197],[127,258,73,-0.16794270961025012],[127,258,74,-0.12489322720646703],[127,258,75,-0.08158614449911589],[127,258,76,-0.059343837092696375],[127,258,77,-0.051540610954158045],[127,258,78,-0.07016095283936068],[127,258,79,-0.08301498529541328],[127,259,64,-0.12825950258797403],[127,259,65,-0.1296793779481104],[127,259,66,-0.13829245290612174],[127,259,67,-0.13393314684297963],[127,259,68,-0.1310645588456055],[127,259,69,-0.15244590754534493],[127,259,70,-0.22195613251737384],[127,259,71,-0.20412395340720627],[127,259,72,-0.18921525590341898],[127,259,73,-0.1757585959159977],[127,259,74,-0.1303238036346006],[127,259,75,-0.07905456586837897],[127,259,76,-0.05627812985270812],[127,259,77,-0.05726002155770166],[127,259,78,-0.07927494252599634],[127,259,79,-0.10525033649825451],[127,260,64,-0.20225319591829816],[127,260,65,-0.2081150249659482],[127,260,66,-0.20552924195126437],[127,260,67,-0.21008966688605069],[127,260,68,-0.20126013985275742],[127,260,69,-0.2048304145027495],[127,260,70,-0.2272558461613451],[127,260,71,-0.21036692186114095],[127,260,72,-0.19347269698754238],[127,260,73,-0.18035082825425558],[127,260,74,-0.16122665544691656],[127,260,75,-0.1522648318668795],[127,260,76,-0.144927268364128],[127,260,77,-0.13839346262681898],[127,260,78,-0.1368557290126575],[127,260,79,-0.13585358913939571],[127,261,64,-0.18539015065868408],[127,261,65,-0.19735873108094912],[127,261,66,-0.21825063336494355],[127,261,67,-0.2409430695980304],[127,261,68,-0.2273291575964188],[127,261,69,-0.23249348582900567],[127,261,70,-0.22780409369618154],[127,261,71,-0.21062299279566002],[127,261,72,-0.19132016086641976],[127,261,73,-0.1786402651339302],[127,261,74,-0.16412456356952645],[127,261,75,-0.15764665448647092],[127,261,76,-0.14964072392279132],[127,261,77,-0.14211080382681016],[127,261,78,-0.13652040972421006],[127,261,79,-0.1373576069495297],[127,262,64,-0.20157937292146627],[127,262,65,-0.22096888360039302],[127,262,66,-0.2537813241708399],[127,262,67,-0.2859256681064301],[127,262,68,-0.2660666093364714],[127,262,69,-0.2814999838696177],[127,262,70,-0.2787532106095345],[127,262,71,-0.26224484474703885],[127,262,72,-0.2432653338727893],[127,262,73,-0.22535398786462021],[127,262,74,-0.2097219870688298],[127,262,75,-0.19754025183210538],[127,262,76,-0.17679456752245307],[127,262,77,-0.16907097973316026],[127,262,78,-0.1662723594126306],[127,262,79,-0.1651154721191962],[127,263,64,-0.1847313862319736],[127,263,65,-0.2112723709641665],[127,263,66,-0.24242006882232142],[127,263,67,-0.2816979054248526],[127,263,68,-0.2738546308104549],[127,263,69,-0.28131456996455434],[127,263,70,-0.27656935488783196],[127,263,71,-0.26098517302663193],[127,263,72,-0.2438763222961627],[127,263,73,-0.22395495103859522],[127,263,74,-0.20815164338607386],[127,263,75,-0.1944895380821532],[127,263,76,-0.177893220796849],[127,263,77,-0.16778226600344606],[127,263,78,-0.16891037525969124],[127,263,79,-0.16042863066853452],[127,264,64,-0.17900766044295008],[127,264,65,-0.20687490846042794],[127,264,66,-0.2290395015828638],[127,264,67,-0.27489552299491604],[127,264,68,-0.27137222723375987],[127,264,69,-0.27870534279383946],[127,264,70,-0.2780065655210166],[127,264,71,-0.26091091945068046],[127,264,72,-0.24498082512227504],[127,264,73,-0.2238797978539577],[127,264,74,-0.20871272736776977],[127,264,75,-0.19466473712273413],[127,264,76,-0.18092530400859755],[127,264,77,-0.16944446319417983],[127,264,78,-0.16898617969315155],[127,264,79,-0.1604623726597299],[127,265,64,-0.13386526619450412],[127,265,65,-0.13689191844847612],[127,265,66,-0.13962028983260885],[127,265,67,-0.16187675993711398],[127,265,68,-0.16571744611258127],[127,265,69,-0.1906445236966296],[127,265,70,-0.24902499558727836],[127,265,71,-0.2678453550057489],[127,265,72,-0.2536817837569909],[127,265,73,-0.2341149322665343],[127,265,74,-0.21788786138509564],[127,265,75,-0.20767985065347971],[127,265,76,-0.20140130948073723],[127,265,77,-0.18973893091369404],[127,265,78,-0.18304529886228688],[127,265,79,-0.1691727932020956],[127,266,64,-0.13928502064431578],[127,266,65,-0.14380447134098626],[127,266,66,-0.146094384268664],[127,266,67,-0.14298389802799294],[127,266,68,-0.13823247163165273],[127,266,69,-0.15850666286337417],[127,266,70,-0.20951179809119158],[127,266,71,-0.23828701567011493],[127,266,72,-0.2364849498286696],[127,266,73,-0.2287427516368641],[127,266,74,-0.21278632659952962],[127,266,75,-0.20678197987502409],[127,266,76,-0.1964601344149271],[127,266,77,-0.18895970165646409],[127,266,78,-0.18017895232504028],[127,266,79,-0.17010320698725767],[127,267,64,-0.13785974211384044],[127,267,65,-0.1440957960417862],[127,267,66,-0.14530216503695872],[127,267,67,-0.14237790093571273],[127,267,68,-0.13618313573394372],[127,267,69,-0.1609579222675224],[127,267,70,-0.20220985103025257],[127,267,71,-0.24145943388653862],[127,267,72,-0.24293445441933567],[127,267,73,-0.23500968235386718],[127,267,74,-0.22049133759375628],[127,267,75,-0.21397424304523585],[127,267,76,-0.19890678286951727],[127,267,77,-0.19399708104913038],[127,267,78,-0.18350661037541055],[127,267,79,-0.17522721813355185],[127,268,64,-0.13952536418514566],[127,268,65,-0.14502075301776757],[127,268,66,-0.1467815885163583],[127,268,67,-0.1454088994952052],[127,268,68,-0.14397846300381495],[127,268,69,-0.14665381040567296],[127,268,70,-0.16262459746605082],[127,268,71,-0.20569015958273776],[127,268,72,-0.21128524781484892],[127,268,73,-0.21198275231369934],[127,268,74,-0.21622166526457362],[127,268,75,-0.2106169378742883],[127,268,76,-0.189110597650041],[127,268,77,-0.18203914980966182],[127,268,78,-0.17720685738939232],[127,268,79,-0.16680357727572653],[127,269,64,-0.13827261962363027],[127,269,65,-0.1413832379271781],[127,269,66,-0.14057302677645445],[127,269,67,-0.14101923999191107],[127,269,68,-0.1433055802803124],[127,269,69,-0.14737121499508016],[127,269,70,-0.16040986743945446],[127,269,71,-0.20068065254121337],[127,269,72,-0.21068156689014306],[127,269,73,-0.20852515483115766],[127,269,74,-0.2154405065319285],[127,269,75,-0.20974338672717507],[127,269,76,-0.19183888925574324],[127,269,77,-0.18243636500884208],[127,269,78,-0.1776674936051616],[127,269,79,-0.16711438527493133],[127,270,64,-0.1443503158614643],[127,270,65,-0.1449488824874971],[127,270,66,-0.1425634038863466],[127,270,67,-0.14111097316730356],[127,270,68,-0.14594729955505206],[127,270,69,-0.14901317939393055],[127,270,70,-0.1627894663074301],[127,270,71,-0.19692949102307533],[127,270,72,-0.2079435229943306],[127,270,73,-0.2012390709314032],[127,270,74,-0.20718558054999753],[127,270,75,-0.20196374981768103],[127,270,76,-0.18549954719303624],[127,270,77,-0.17900925288063657],[127,270,78,-0.1753083615587152],[127,270,79,-0.1636462673346485],[127,271,64,-0.1422872639545949],[127,271,65,-0.1416151548110261],[127,271,66,-0.14157423768321623],[127,271,67,-0.13947308570842423],[127,271,68,-0.14305844314424596],[127,271,69,-0.14873436550283028],[127,271,70,-0.15869274221533197],[127,271,71,-0.18915973096908792],[127,271,72,-0.20186303855365606],[127,271,73,-0.19330369075475748],[127,271,74,-0.20411683157655702],[127,271,75,-0.19605331271613802],[127,271,76,-0.18483837901376882],[127,271,77,-0.1781826776756431],[127,271,78,-0.1739492961442733],[127,271,79,-0.16347621849440053],[127,272,64,-0.13892078413384645],[127,272,65,-0.13672074139102694],[127,272,66,-0.13880930134683578],[127,272,67,-0.14001284874617687],[127,272,68,-0.14368430733527365],[127,272,69,-0.148032930294055],[127,272,70,-0.16293924952362474],[127,272,71,-0.18868752721186352],[127,272,72,-0.19863332497274913],[127,272,73,-0.1912611711820659],[127,272,74,-0.20322404957728818],[127,272,75,-0.1992231477469111],[127,272,76,-0.18828886266224418],[127,272,77,-0.18144168554832635],[127,272,78,-0.17541711185237727],[127,272,79,-0.16430718680091022],[127,273,64,-0.1432470676807504],[127,273,65,-0.13556655289229322],[127,273,66,-0.13142912569254206],[127,273,67,-0.13189607219995741],[127,273,68,-0.13443229728960493],[127,273,69,-0.1401355906156292],[127,273,70,-0.15299999589757274],[127,273,71,-0.1543346771377455],[127,273,72,-0.14567158026996913],[127,273,73,-0.13735804816287686],[127,273,74,-0.1277937885182598],[127,273,75,-0.11911782012102794],[127,273,76,-0.121525133161998],[127,273,77,-0.12157461873332065],[127,273,78,-0.11721539582851499],[127,273,79,-0.11275608960880103],[127,274,64,-0.14394958102663125],[127,274,65,-0.137861692071481],[127,274,66,-0.1349955137803497],[127,274,67,-0.1335488067178196],[127,274,68,-0.13931408146043678],[127,274,69,-0.1473078108565102],[127,274,70,-0.1562394129590255],[127,274,71,-0.1592767144943726],[127,274,72,-0.15174997803633497],[127,274,73,-0.14336210135250566],[127,274,74,-0.13357400149654888],[127,274,75,-0.12507412476637342],[127,274,76,-0.12419831028648515],[127,274,77,-0.12492330432399845],[127,274,78,-0.12421036626714811],[127,274,79,-0.1133934549274935],[127,275,64,-0.1420792852101397],[127,275,65,-0.13893974535822354],[127,275,66,-0.13456056766484686],[127,275,67,-0.13276914133651105],[127,275,68,-0.14105079034681464],[127,275,69,-0.14988013182069926],[127,275,70,-0.1613011974835919],[127,275,71,-0.16422045509401859],[127,275,72,-0.1570253390112155],[127,275,73,-0.14895107612912237],[127,275,74,-0.14088059666443667],[127,275,75,-0.13174116544591824],[127,275,76,-0.1279389304027461],[127,275,77,-0.12709683577357225],[127,275,78,-0.1282549224843395],[127,275,79,-0.11835913122059208],[127,276,64,-0.13153223488862795],[127,276,65,-0.1352225404880547],[127,276,66,-0.13416569041879756],[127,276,67,-0.137449751529429],[127,276,68,-0.14465683572867136],[127,276,69,-0.16066634102505384],[127,276,70,-0.16994064016053922],[127,276,71,-0.17478764101266836],[127,276,72,-0.16760967938146384],[127,276,73,-0.15937946462157326],[127,276,74,-0.14977156255085738],[127,276,75,-0.14242265041295452],[127,276,76,-0.13886222452477195],[127,276,77,-0.12903192786583464],[127,276,78,-0.12160852913753757],[127,276,79,-0.10563836309297545],[127,277,64,-0.12293655152219729],[127,277,65,-0.12878141321366549],[127,277,66,-0.13776206246739653],[127,277,67,-0.14671862824789988],[127,277,68,-0.15756671793128776],[127,277,69,-0.17030463925130743],[127,277,70,-0.18012596113969517],[127,277,71,-0.18246812344291857],[127,277,72,-0.17412068473529518],[127,277,73,-0.16762609521661836],[127,277,74,-0.15539784374512694],[127,277,75,-0.15000221224704688],[127,277,76,-0.14413250755951246],[127,277,77,-0.13094304551884886],[127,277,78,-0.12328593714078656],[127,277,79,-0.10465759949231462],[127,278,64,-0.12629211120613473],[127,278,65,-0.1293688248101005],[127,278,66,-0.13917454328855283],[127,278,67,-0.1481561844058104],[127,278,68,-0.16227047539965692],[127,278,69,-0.173637987322303],[127,278,70,-0.18147870884575795],[127,278,71,-0.18431848999231157],[127,278,72,-0.17853598636251236],[127,278,73,-0.1711312278916858],[127,278,74,-0.1600592760665573],[127,278,75,-0.15052923310810593],[127,278,76,-0.14455038483776628],[127,278,77,-0.12662256367004454],[127,278,78,-0.11741306757277689],[127,278,79,-0.101951057761817],[127,279,64,-0.1211492629493815],[127,279,65,-0.12504168121571346],[127,279,66,-0.13739246822271292],[127,279,67,-0.14568452731482265],[127,279,68,-0.16150526300927653],[127,279,69,-0.17243431921997532],[127,279,70,-0.1785328153371029],[127,279,71,-0.1829951653116855],[127,279,72,-0.17964045750228524],[127,279,73,-0.17399687254197646],[127,279,74,-0.16618833294246585],[127,279,75,-0.1539710913447565],[127,279,76,-0.14427521193189785],[127,279,77,-0.12635125186344492],[127,279,78,-0.11445904302825818],[127,279,79,-0.09940614096030087],[127,280,64,-0.11681714106225283],[127,280,65,-0.12295237982857744],[127,280,66,-0.1374680978355291],[127,280,67,-0.1477615799546924],[127,280,68,-0.15811999889115402],[127,280,69,-0.17113281946944756],[127,280,70,-0.17809413580211803],[127,280,71,-0.18102237065984697],[127,280,72,-0.17869704721246835],[127,280,73,-0.1737174873670979],[127,280,74,-0.16856754499709642],[127,280,75,-0.15889017697192878],[127,280,76,-0.14263674572306337],[127,280,77,-0.12843936749386597],[127,280,78,-0.11213375001177697],[127,280,79,-0.10002249276579044],[127,281,64,-0.11380585523938497],[127,281,65,-0.12199560508758088],[127,281,66,-0.13597644994364155],[127,281,67,-0.14899363172070024],[127,281,68,-0.157917719204641],[127,281,69,-0.16946057638541806],[127,281,70,-0.17616237459791256],[127,281,71,-0.17962976628061986],[127,281,72,-0.180766384629968],[127,281,73,-0.17750726319812912],[127,281,74,-0.17310259763423208],[127,281,75,-0.16579615808958542],[127,281,76,-0.15010078143471184],[127,281,77,-0.13616848500017026],[127,281,78,-0.12297069093285318],[127,281,79,-0.10879534335401633],[127,282,64,-0.11658066270830779],[127,282,65,-0.12440014543047663],[127,282,66,-0.13704652893603614],[127,282,67,-0.15003934086238696],[127,282,68,-0.15860740401755213],[127,282,69,-0.16906420570747743],[127,282,70,-0.17605688734193042],[127,282,71,-0.17998889476483976],[127,282,72,-0.18142403845735183],[127,282,73,-0.1778282442153632],[127,282,74,-0.17276938037013403],[127,282,75,-0.1650832370541303],[127,282,76,-0.15588031014699968],[127,282,77,-0.14056662846234524],[127,282,78,-0.12747630158144074],[127,282,79,-0.11184016577817484],[127,283,64,-0.11565764863279143],[127,283,65,-0.12206771443622981],[127,283,66,-0.13373917736395452],[127,283,67,-0.14537915023115608],[127,283,68,-0.15799496324292123],[127,283,69,-0.16401805914602624],[127,283,70,-0.17248213439051857],[127,283,71,-0.1774354929887607],[127,283,72,-0.1784126594789481],[127,283,73,-0.17411171081754293],[127,283,74,-0.16598865348353012],[127,283,75,-0.15793091509755022],[127,283,76,-0.15214410872469403],[127,283,77,-0.14332594483791092],[127,283,78,-0.1386513690696473],[127,283,79,-0.12899355742320043],[127,284,64,-0.1305516009275055],[127,284,65,-0.12952162392582892],[127,284,66,-0.13599054250372417],[127,284,67,-0.14220155341523305],[127,284,68,-0.15297737611412504],[127,284,69,-0.15512127433729928],[127,284,70,-0.16027276543311988],[127,284,71,-0.164462135447907],[127,284,72,-0.16772304673131572],[127,284,73,-0.1673635712559873],[127,284,74,-0.16463710674800502],[127,284,75,-0.16025438047992574],[127,284,76,-0.15219237402201577],[127,284,77,-0.14460287733896904],[127,284,78,-0.1364218784691232],[127,284,79,-0.12652154573560048],[127,285,64,-0.11883143775874459],[127,285,65,-0.11931312357701439],[127,285,66,-0.12127327116339709],[127,285,67,-0.12968122599936624],[127,285,68,-0.13926863385635396],[127,285,69,-0.14399443763893152],[127,285,70,-0.14695146906687082],[127,285,71,-0.1576469105014535],[127,285,72,-0.16995149156084008],[127,285,73,-0.16956343469097576],[127,285,74,-0.16857259199920235],[127,285,75,-0.16136782779927428],[127,285,76,-0.1532563040649076],[127,285,77,-0.1429101165594984],[127,285,78,-0.13373698994875663],[127,285,79,-0.1217442310843338],[127,286,64,-0.12059505560510843],[127,286,65,-0.12000623697055443],[127,286,66,-0.12415060489629774],[127,286,67,-0.13005025301164366],[127,286,68,-0.13530247410197008],[127,286,69,-0.14202289876542357],[127,286,70,-0.14505145811977266],[127,286,71,-0.15649258828107607],[127,286,72,-0.16829824140277774],[127,286,73,-0.16905319128987156],[127,286,74,-0.16740409149203278],[127,286,75,-0.1618752624295241],[127,286,76,-0.1526300184483583],[127,286,77,-0.1417968816568501],[127,286,78,-0.12969366458490292],[127,286,79,-0.11777529953199893],[127,287,64,-0.12124133607509714],[127,287,65,-0.12099336615413755],[127,287,66,-0.12280262425165725],[127,287,67,-0.1290623005952765],[127,287,68,-0.12962151196692645],[127,287,69,-0.1388704807391884],[127,287,70,-0.14600771447983965],[127,287,71,-0.15802662140762022],[127,287,72,-0.1663793694275112],[127,287,73,-0.16752429519969092],[127,287,74,-0.16405159849970222],[127,287,75,-0.15800553604106166],[127,287,76,-0.15085660339078177],[127,287,77,-0.13993304529315595],[127,287,78,-0.12831480291393457],[127,287,79,-0.11596314983396039],[127,288,64,-0.11961126068721228],[127,288,65,-0.12102008620449536],[127,288,66,-0.12155983357947073],[127,288,67,-0.12483124382065704],[127,288,68,-0.12689868073699867],[127,288,69,-0.13487002926178573],[127,288,70,-0.14573000587156773],[127,288,71,-0.15688839101617985],[127,288,72,-0.16486544256469324],[127,288,73,-0.16565458111059417],[127,288,74,-0.16116689595469072],[127,288,75,-0.15430912809423092],[127,288,76,-0.14714643394774163],[127,288,77,-0.1385268014354046],[127,288,78,-0.12626052807508376],[127,288,79,-0.11417258553310562],[127,289,64,-0.12985804934789355],[127,289,65,-0.13187491589140354],[127,289,66,-0.13197142471786089],[127,289,67,-0.13412400078761208],[127,289,68,-0.136507639744927],[127,289,69,-0.1447311945921741],[127,289,70,-0.15050401209481507],[127,289,71,-0.15167258778541573],[127,289,72,-0.15807355353816685],[127,289,73,-0.15934861286899094],[127,289,74,-0.15646885395887702],[127,289,75,-0.15018882003731698],[127,289,76,-0.14549148256932418],[127,289,77,-0.139166423746926],[127,289,78,-0.12901017446733554],[127,289,79,-0.11771768161758467],[127,290,64,-0.13330834233454697],[127,290,65,-0.13529950513780392],[127,290,66,-0.13533944498486822],[127,290,67,-0.13698665643895536],[127,290,68,-0.14223295240963046],[127,290,69,-0.14682555228696392],[127,290,70,-0.15090346900450388],[127,290,71,-0.1478793690799615],[127,290,72,-0.15171687835751102],[127,290,73,-0.1532968715879191],[127,290,74,-0.1532053719367877],[127,290,75,-0.14928950590094278],[127,290,76,-0.1433493722179292],[127,290,77,-0.13757139701839252],[127,290,78,-0.127996555501058],[127,290,79,-0.11728277534615676],[127,291,64,-0.13639559746029653],[127,291,65,-0.13623116614188258],[127,291,66,-0.13828074136204035],[127,291,67,-0.13785231045270796],[127,291,68,-0.14309935914997554],[127,291,69,-0.14614301863811097],[127,291,70,-0.147259001544791],[127,291,71,-0.14297523191234765],[127,291,72,-0.1449470210064666],[127,291,73,-0.15120856599617188],[127,291,74,-0.15224497751331167],[127,291,75,-0.1520401959451192],[127,291,76,-0.1446190930012413],[127,291,77,-0.1374571092172636],[127,291,78,-0.12742648492661834],[127,291,79,-0.11615498312252907],[127,292,64,-0.09969555649981333],[127,292,65,-0.09783619609212688],[127,292,66,-0.09786471837933963],[127,292,67,-0.09369230531411613],[127,292,68,-0.09554367599411809],[127,292,69,-0.09587880977793332],[127,292,70,-0.09413526944432696],[127,292,71,-0.08857532225610387],[127,292,72,-0.09099037175127123],[127,292,73,-0.10578868054174875],[127,292,74,-0.11265860006072477],[127,292,75,-0.12251126375040547],[127,292,76,-0.11599665259065826],[127,292,77,-0.10099235564473105],[127,292,78,-0.08922578026271216],[127,292,79,-0.07553240278734519],[127,293,64,-0.10428797941075889],[127,293,65,-0.10294783738783131],[127,293,66,-0.09996620825667646],[127,293,67,-0.09470003346584048],[127,293,68,-0.0942299195512891],[127,293,69,-0.0928488259531562],[127,293,70,-0.08839728772759002],[127,293,71,-0.08456528237646053],[127,293,72,-0.09024409762490589],[127,293,73,-0.10521432861697225],[127,293,74,-0.10830935153002284],[127,293,75,-0.11981615232909862],[127,293,76,-0.11478643582305383],[127,293,77,-0.09667845273616898],[127,293,78,-0.08497788231253581],[127,293,79,-0.07350978940505579],[127,294,64,-0.10817158599544534],[127,294,65,-0.10716780407917967],[127,294,66,-0.10269212327591982],[127,294,67,-0.09480967780223334],[127,294,68,-0.0922811343088079],[127,294,69,-0.08901973350666195],[127,294,70,-0.08621120468263052],[127,294,71,-0.08224296843806721],[127,294,72,-0.08898255476776033],[127,294,73,-0.10320089391674206],[127,294,74,-0.10578805626854025],[127,294,75,-0.11709962000873654],[127,294,76,-0.11311040244752482],[127,294,77,-0.09314620514019717],[127,294,78,-0.07861029902844588],[127,294,79,-0.06919551250112506],[127,295,64,-0.11034388847635093],[127,295,65,-0.10668451895890517],[127,295,66,-0.10219216968948586],[127,295,67,-0.09573070160058555],[127,295,68,-0.09120285610861727],[127,295,69,-0.08759087393559181],[127,295,70,-0.0847404380322282],[127,295,71,-0.08288035552198615],[127,295,72,-0.10120034167258585],[127,295,73,-0.12162001590410224],[127,295,74,-0.12758398910033672],[127,295,75,-0.12212202751137902],[127,295,76,-0.1091127463557818],[127,295,77,-0.09948737451861689],[127,295,78,-0.0879077221368625],[127,295,79,-0.07411513848388278],[127,296,64,-0.1114187607000393],[127,296,65,-0.10847787552418679],[127,296,66,-0.10489439255559474],[127,296,67,-0.09425615363872827],[127,296,68,-0.08735795139369856],[127,296,69,-0.08615978919316046],[127,296,70,-0.08391669447821853],[127,296,71,-0.07876715678435471],[127,296,72,-0.09945697211823828],[127,296,73,-0.11843757164351529],[127,296,74,-0.12730592533839727],[127,296,75,-0.11659000180763565],[127,296,76,-0.10196519316274144],[127,296,77,-0.09289336002982529],[127,296,78,-0.08304664477635693],[127,296,79,-0.06842356744827903],[127,297,64,-0.11048414626287646],[127,297,65,-0.10867688723904392],[127,297,66,-0.10331238989910284],[127,297,67,-0.09183210042761975],[127,297,68,-0.08561688786550939],[127,297,69,-0.0826598158244202],[127,297,70,-0.07947205537349983],[127,297,71,-0.07560144337250124],[127,297,72,-0.09562868337981793],[127,297,73,-0.1166398933071092],[127,297,74,-0.12851646936512195],[127,297,75,-0.1186964926936874],[127,297,76,-0.10314718245409335],[127,297,77,-0.09273173147302732],[127,297,78,-0.07898611881380085],[127,297,79,-0.06880835461596935],[127,298,64,-0.11343591823502189],[127,298,65,-0.11213170517949742],[127,298,66,-0.1087615647501958],[127,298,67,-0.09753966598572586],[127,298,68,-0.0886351512978082],[127,298,69,-0.08411925509504575],[127,298,70,-0.07643836483643757],[127,298,71,-0.07466388323783114],[127,298,72,-0.0852692698021618],[127,298,73,-0.10112380739948806],[127,298,74,-0.10794595297906401],[127,298,75,-0.11217284450222795],[127,298,76,-0.0972235423999592],[127,298,77,-0.08654093846425986],[127,298,78,-0.07184898739055944],[127,298,79,-0.06414204850656535],[127,299,64,-0.11167888055512573],[127,299,65,-0.1108388551802906],[127,299,66,-0.10978587178315051],[127,299,67,-0.09740084065682142],[127,299,68,-0.08601242504061848],[127,299,69,-0.07963261249536303],[127,299,70,-0.07318229293948106],[127,299,71,-0.07278645000257705],[127,299,72,-0.0792308776159033],[127,299,73,-0.09792765906020301],[127,299,74,-0.10761048516972652],[127,299,75,-0.10928375305160944],[127,299,76,-0.09560684488500253],[127,299,77,-0.08349070964699962],[127,299,78,-0.07095040458533886],[127,299,79,-0.06268401914972851],[127,300,64,-0.11762462522585443],[127,300,65,-0.11659465147077731],[127,300,66,-0.11459155845367766],[127,300,67,-0.10181092270658676],[127,300,68,-0.08983304243100022],[127,300,69,-0.0823531407151983],[127,300,70,-0.11179056329612555],[127,300,71,-0.12908539614380654],[127,300,72,-0.14182839906864403],[127,300,73,-0.13796448303078176],[127,300,74,-0.12809337592520292],[127,300,75,-0.11482893512896147],[127,300,76,-0.09786424710018865],[127,300,77,-0.08347492327510939],[127,300,78,-0.07064783800468041],[127,300,79,-0.06015965180773308],[127,301,64,-0.11829474356564956],[127,301,65,-0.11593173043423897],[127,301,66,-0.10971845901415914],[127,301,67,-0.0993259724847315],[127,301,68,-0.08983498333532897],[127,301,69,-0.08130910202174935],[127,301,70,-0.11146113401808191],[127,301,71,-0.12570516574468787],[127,301,72,-0.13626450440723578],[127,301,73,-0.1340794520338294],[127,301,74,-0.12235741352800777],[127,301,75,-0.10809518075215224],[127,301,76,-0.09171705871791977],[127,301,77,-0.07851026975574318],[127,301,78,-0.06131453054399051],[127,301,79,-0.04953292445222799],[127,302,64,-0.11519993598413139],[127,302,65,-0.11087998633291053],[127,302,66,-0.10390497978733373],[127,302,67,-0.09496826924240129],[127,302,68,-0.08753552787378649],[127,302,69,-0.08724411045650966],[127,302,70,-0.11456312529712426],[127,302,71,-0.12854712070503146],[127,302,72,-0.13674400046906765],[127,302,73,-0.13745412723543257],[127,302,74,-0.12783442731467104],[127,302,75,-0.11752217361910086],[127,302,76,-0.10185829343292341],[127,302,77,-0.08478245110953506],[127,302,78,-0.06571944245557318],[127,302,79,-0.05280634066624128],[127,303,64,-0.11056136985348225],[127,303,65,-0.10762179841149895],[127,303,66,-0.10545625891767896],[127,303,67,-0.09555199142179158],[127,303,68,-0.08699018402262654],[127,303,69,-0.09734785400514098],[127,303,70,-0.1164802686353559],[127,303,71,-0.12345778913113195],[127,303,72,-0.12982894642557502],[127,303,73,-0.12429285648048248],[127,303,74,-0.11047308026275887],[127,303,75,-0.10595500004767354],[127,303,76,-0.0909896799684029],[127,303,77,-0.06906345789095195],[127,303,78,-0.05169548304267141],[127,303,79,-0.04031696351454302],[127,304,64,-0.10956503896870512],[127,304,65,-0.10579562901190723],[127,304,66,-0.10312116921252472],[127,304,67,-0.09359869841591809],[127,304,68,-0.08488977392844935],[127,304,69,-0.09969701442295861],[127,304,70,-0.11432204937594187],[127,304,71,-0.11913464699174496],[127,304,72,-0.1296871915830972],[127,304,73,-0.11983389667037747],[127,304,74,-0.10274115649629781],[127,304,75,-0.09695600080285116],[127,304,76,-0.08419938793682269],[127,304,77,-0.0620759862681258],[127,304,78,-0.04663805895653766],[127,304,79,-0.035224035414089805],[127,305,64,-0.10723457079367277],[127,305,65,-0.10357968273515455],[127,305,66,-0.09915744071091229],[127,305,67,-0.09307097955912669],[127,305,68,-0.08513352139926349],[127,305,69,-0.09917891997839554],[127,305,70,-0.11230005693492393],[127,305,71,-0.11965109580580413],[127,305,72,-0.13274000261779678],[127,305,73,-0.12254730684764867],[127,305,74,-0.1032733510602984],[127,305,75,-0.09114537863628713],[127,305,76,-0.08183530936526176],[127,305,77,-0.06041853182187512],[127,305,78,-0.0435668210437926],[127,305,79,-0.03293130686612689],[127,306,64,-0.1080051199837106],[127,306,65,-0.10468264595492403],[127,306,66,-0.10241630306405904],[127,306,67,-0.0958020894170658],[127,306,68,-0.08920378422937067],[127,306,69,-0.09098323011405321],[127,306,70,-0.10571730266064402],[127,306,71,-0.11621547111777625],[127,306,72,-0.1280230383719833],[127,306,73,-0.1147258065823665],[127,306,74,-0.09517281440207617],[127,306,75,-0.0795558140007009],[127,306,76,-0.06594238378610592],[127,306,77,-0.04810814048223788],[127,306,78,-0.03244103677611253],[127,306,79,-0.022768083839088855],[127,307,64,-0.10548286486860878],[127,307,65,-0.10274336863433096],[127,307,66,-0.10277165619499412],[127,307,67,-0.09396700599880536],[127,307,68,-0.0863768762734714],[127,307,69,-0.09848815181424564],[127,307,70,-0.11447617089620638],[127,307,71,-0.12033935032539989],[127,307,72,-0.13267558100236782],[127,307,73,-0.1156597839953799],[127,307,74,-0.09722759523473794],[127,307,75,-0.07725596654025027],[127,307,76,-0.06255433629821411],[127,307,77,-0.04688022820738344],[127,307,78,-0.03318818459543962],[127,307,79,-0.024194454775279935],[127,308,64,-0.09245178357569912],[127,308,65,-0.09376499029336514],[127,308,66,-0.0937395242079426],[127,308,67,-0.0886237434832294],[127,308,68,-0.08854412482730085],[127,308,69,-0.09019280714288716],[127,308,70,-0.10507516579011175],[127,308,71,-0.10774142742210391],[127,308,72,-0.11827985790644277],[127,308,73,-0.1028485340906855],[127,308,74,-0.08810140928496057],[127,308,75,-0.07363662541940605],[127,308,76,-0.05767812999593329],[127,308,77,-0.04611096546387601],[127,308,78,-0.03602948072333908],[127,308,79,-0.02731448092683897],[127,309,64,-0.09059436339900906],[127,309,65,-0.08913529127382529],[127,309,66,-0.08683952663046901],[127,309,67,-0.0862824479847557],[127,309,68,-0.08430615718365328],[127,309,69,-0.085390315198578],[127,309,70,-0.08348480879170331],[127,309,71,-0.07889650019947456],[127,309,72,-0.06929044903870028],[127,309,73,-0.058692468385222504],[127,309,74,-0.05163087703846136],[127,309,75,-0.043637154233282835],[127,309,76,-0.01860316612335685],[127,309,77,-0.013339421274911237],[127,309,78,-0.015699824732960443],[127,309,79,-0.010703674775696493],[127,310,64,-0.08332509226681692],[127,310,65,-0.08139942715523081],[127,310,66,-0.07678663811131595],[127,310,67,-0.07786718294608971],[127,310,68,-0.07643947816727535],[127,310,69,-0.07717253740790792],[127,310,70,-0.07556257687047904],[127,310,71,-0.07180338541295998],[127,310,72,-0.06457178997973985],[127,310,73,-0.05329181744963922],[127,310,74,-0.04518242436176319],[127,310,75,-0.039028143495508],[127,310,76,-0.014254578896990326],[127,310,77,-0.004866465125818141],[127,310,78,-0.00853225679213428],[127,310,79,-0.0029762670686128805],[127,311,64,-0.07728962368742794],[127,311,65,-0.07782978143946868],[127,311,66,-0.07182681629643814],[127,311,67,-0.07329964199524451],[127,311,68,-0.0725562146956964],[127,311,69,-0.07554288454444245],[127,311,70,-0.07207541145698958],[127,311,71,-0.06909401138546031],[127,311,72,-0.06007569770803452],[127,311,73,-0.04972973068849224],[127,311,74,-0.04410324501021753],[127,311,75,-0.03640235348944164],[127,311,76,-0.014393259401837555],[127,311,77,-0.004754988787122702],[127,311,78,-0.009340891539119513],[127,311,79,-0.011561711383711995],[127,312,64,-0.0614080245041896],[127,312,65,-0.06175228032612204],[127,312,66,-0.05710671585725105],[127,312,67,-0.05701870878009757],[127,312,68,-0.05524842559212405],[127,312,69,-0.06365990856968616],[127,312,70,-0.06167847090681178],[127,312,71,-0.060333411202904974],[127,312,72,-0.052356795901439455],[127,312,73,-0.04334151183175077],[127,312,74,-0.03666861186521589],[127,312,75,-0.0260988675947043],[127,312,76,-0.012392130267205433],[127,312,77,-0.0023097418574422462],[127,312,78,-0.008276890855967133],[127,312,79,-0.016398128491446586],[127,313,64,-0.05657405545694111],[127,313,65,-0.057396562982479055],[127,313,66,-0.05436803629190343],[127,313,67,-0.05176106469107859],[127,313,68,-0.05145968418932528],[127,313,69,-0.06085508312458049],[127,313,70,-0.05800804684749776],[127,313,71,-0.0571277554895823],[127,313,72,-0.049772750393357],[127,313,73,-0.042278170264823126],[127,313,74,-0.03627852924355329],[127,313,75,-0.025871320842179885],[127,313,76,-0.014894190253678642],[127,313,77,1.3860090196465835E-4],[127,313,78,0.010034282076448658],[127,313,79,0.010889840182391641],[127,314,64,-0.05804100883343065],[127,314,65,-0.05717677353600599],[127,314,66,-0.05478759289324124],[127,314,67,-0.053198577763412136],[127,314,68,-0.053410044539762794],[127,314,69,-0.05846556107890427],[127,314,70,-0.057085466334057554],[127,314,71,-0.05645375079688749],[127,314,72,-0.05004251198182437],[127,314,73,-0.043769710457765836],[127,314,74,-0.040677209004093634],[127,314,75,-0.03071267443927881],[127,314,76,-0.019953289425536293],[127,314,77,-0.005511303403109041],[127,314,78,0.012690811163146132],[127,314,79,0.0055772559835367205],[127,315,64,-0.05768609291998886],[127,315,65,-0.05641647423209746],[127,315,66,-0.05200565877116299],[127,315,67,-0.05024745302444454],[127,315,68,-0.051951943484788224],[127,315,69,-0.05438055931354602],[127,315,70,-0.05314135965392816],[127,315,71,-0.04967625991525092],[127,315,72,-0.04921307548939912],[127,315,73,-0.04291462650366253],[127,315,74,-0.042299104341553644],[127,315,75,-0.03345503899930007],[127,315,76,-0.022737605610310425],[127,315,77,-0.00981017774448794],[127,315,78,0.015081442597556304],[127,315,79,0.010417161102136314],[127,316,64,-0.06366582185979928],[127,316,65,-0.059648478839400956],[127,316,66,-0.05398575383626829],[127,316,67,-0.050483766778936234],[127,316,68,-0.04978389883288829],[127,316,69,-0.04878557352047316],[127,316,70,-0.04789754907057421],[127,316,71,-0.04816440737092337],[127,316,72,-0.04917460610293986],[127,316,73,-0.04604411553110026],[127,316,74,-0.04472858749723653],[127,316,75,-0.03741543763746237],[127,316,76,-0.030779150812658508],[127,316,77,-0.015665372408534023],[127,316,78,0.009300164143025508],[127,316,79,0.0138745661172055],[127,317,64,-0.05986755516774554],[127,317,65,-0.05692496608247108],[127,317,66,-0.0506234913771442],[127,317,67,-0.04570481521615419],[127,317,68,-0.04640395774514],[127,317,69,-0.044884455783873525],[127,317,70,-0.042613520249856915],[127,317,71,-0.04542298281002019],[127,317,72,-0.04811775683905592],[127,317,73,-0.04612863704246864],[127,317,74,-0.04510556815964453],[127,317,75,-0.040193157672870024],[127,317,76,-0.03251945956771396],[127,317,77,-0.01790517353056476],[127,317,78,0.0054997180936237205],[127,317,79,0.013464760616136488],[127,318,64,-0.05444246847677753],[127,318,65,-0.04895692095956572],[127,318,66,-0.04111103709657296],[127,318,67,-0.03799703257028719],[127,318,68,-0.03812635304808941],[127,318,69,-0.03485310185634112],[127,318,70,-0.032125824973232506],[127,318,71,-0.03267504177305773],[127,318,72,-0.03596010914681541],[127,318,73,-0.036510052317882444],[127,318,74,-0.0354768260255723],[127,318,75,-0.03283248364818587],[127,318,76,-0.027579434587289002],[127,318,77,-0.014220270097162261],[127,318,78,0.0035027583019266034],[127,318,79,0.013891154499447278],[127,319,64,-0.05430889541994072],[127,319,65,-0.049610490375633365],[127,319,66,-0.03995242316134394],[127,319,67,-0.040034288186356015],[127,319,68,-0.03673537089169587],[127,319,69,-0.032879029052357234],[127,319,70,-0.03094549502719318],[127,319,71,-0.03348879502366868],[127,319,72,-0.03439357270199367],[127,319,73,-0.03581456792462569],[127,319,74,-0.03549940442433441],[127,319,75,-0.03143413255119691],[127,319,76,-0.02686594860286773],[127,319,77,-0.014524481825076478],[127,319,78,-0.0013340850603455884],[127,319,79,0.008939273473943757]] diff --git a/pumpkin-world/assets/converted_cave_7_4.json b/pumpkin-world/assets/converted_cave_7_4.json new file mode 100644 index 000000000..8cd5a5675 --- /dev/null +++ b/pumpkin-world/assets/converted_cave_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,0.321811714890378],[112,-64,65,0.3273881843818058],[112,-64,66,0.33308182280495174],[112,-64,67,0.3388742406260318],[112,-64,68,0.3447711614596969],[112,-64,69,0.35078956077571355],[112,-64,70,0.35693883203531596],[112,-64,71,0.3632208999956168],[112,-64,72,0.3696307670120518],[112,-64,73,0.37615708600396036],[112,-64,74,0.3827827599826234],[112,-64,75,0.38948556795359074],[112,-64,76,0.39623881692075485],[112,-64,77,0.4030120196389912],[112,-64,78,0.409771597685285],[112,-64,79,0.41648160934622247],[112,-63,64,0.32263369493977206],[112,-63,65,0.3283034539659061],[112,-63,66,0.3340922428987884],[112,-63,67,0.3399831520551359],[112,-63,68,0.345981848877187],[112,-63,69,0.3521038721633531],[112,-63,70,0.35835709918779624],[112,-63,71,0.3647419361589651],[112,-63,72,0.3712519084561258],[112,-63,73,0.37787427387842026],[112,-63,74,0.3845906586776196],[112,-63,75,0.39137771606289284],[112,-63,76,0.39820780678690715],[112,-63,77,0.40504970134802704],[112,-63,78,0.4118693032732352],[112,-63,79,0.4186303928817097],[112,-62,64,0.3236553596436988],[112,-62,65,0.32940530256694645],[112,-62,66,0.33527471919089014],[112,-62,67,0.34124845773563944],[112,-62,68,0.34733203764460974],[112,-62,69,0.3535393105070185],[112,-62,70,0.35987655220696796],[112,-62,71,0.3663427107683738],[112,-62,72,0.3729300145680958],[112,-62,73,0.379624601210035],[112,-62,74,0.38640716676052256],[112,-62,75,0.39325363496672594],[112,-62,76,0.40013584600540963],[112,-62,77,0.4070222642397911],[112,-62,78,0.41387870439736885],[112,-62,79,0.42066907552246235],[112,-61,64,0.3248613355097535],[112,-61,65,0.33067871998102755],[112,-61,66,0.3366146518986968],[112,-61,67,0.34265597374489815],[112,-61,68,0.3488079873221303],[112,-61,69,0.3550826641279644],[112,-61,70,0.3614846344233486],[112,-61,71,0.36801147376881155],[112,-61,72,0.3746543054134081],[112,-61,73,0.3813984221932684],[112,-61,74,0.38822392762036084],[112,-61,75,0.39510639576726664],[112,-61,76,0.4020175494831925],[112,-61,77,0.40892595641067647],[112,-61,78,0.4157977422114314],[112,-61,79,0.42259732035445424],[112,-60,64,0.3262315145499725],[112,-60,65,0.33210434509474096],[112,-60,66,0.33809351538211235],[112,-60,67,0.3441880477319259],[112,-60,68,0.3503929742591998],[112,-60,69,0.356718247142155],[112,-60,70,0.36316684013982253],[112,-60,71,0.36973505701674514],[112,-60,72,0.37641310732429],[112,-60,73,0.38318570157722776],[112,-60,74,0.3900326655294973],[112,-60,75,0.3969295731815692],[112,-60,76,0.4038483980843062],[112,-60,77,0.4107581824412532],[112,-60,78,0.4176257234528213],[112,-60,79,0.42441627629282125],[112,-59,64,0.3277421768305084],[112,-59,65,0.3336596216861529],[112,-59,66,0.33969004546969256],[112,-59,67,0.3458247761850884],[112,-59,68,0.3520685344266787],[112,-59,69,0.3584291588677174],[112,-59,70,0.36490797766857613],[112,-59,71,0.3715001247643356],[112,-59,72,0.37819507213599757],[112,-59,73,0.3849771821644261],[112,-59,74,0.391826279827247],[112,-59,75,0.39871824443034903],[112,-59,76,0.4056256205005469],[112,-59,77,0.4125182474049704],[112,-59,78,0.4193639072057973],[112,-59,79,0.42612899020700845],[112,-58,64,0.3293673421915875],[112,-58,65,0.33532018324828944],[112,-58,66,0.34138165479062366],[112,-58,67,0.3475454478724452],[112,-58,68,0.3538159294689508],[112,-58,69,0.36019876188596456],[112,-58,70,0.3666936444696273],[112,-58,71,0.37329462745659237],[112,-58,72,0.379990588571178],[112,-58,73,0.3867657308791248],[112,-58,74,0.3936001017356587],[112,-58,75,0.4004701325996744],[112,-58,76,0.40734919942284603],[112,-58,77,0.414208203262941],[112,-58,78,0.4210161707145607],[112,-58,79,0.42774087369889097],[112,-57,64,0.3310803510823371],[112,-57,65,0.33706146675362414],[112,-57,66,0.3431460760137344],[112,-57,67,0.3493302133483284],[112,-57,68,0.3556178358696479],[112,-57,69,0.3620123786541766],[112,-57,70,0.36851191429605135],[112,-57,71,0.3751094587544438],[112,-57,72,0.3817933856933065],[112,-57,73,0.38854786333407126],[112,-57,74,0.3953533137440317],[112,-57,75,0.4021868944200541],[112,-57,76,0.4090230019663751],[112,-57,77,0.415833797607161],[112,-57,78,0.4225897542192673],[112,-57,79,0.4292602245191724],[112,-56,64,0.3328524409770311],[112,-56,65,0.33885677058340435],[112,-56,66,0.3449588980481358],[112,-56,67,0.35115709537120043],[112,-56,68,0.35745482591800526],[112,-56,69,0.3638532455996139],[112,-56,70,0.3703487771507009],[112,-56,71,0.376933406950023],[112,-56,72,0.38359503587283555],[112,-56,73,0.39031785359521004],[112,-56,74,0.39708273635310415],[112,-56,75,0.40386766809920244],[112,-56,76,0.4106481849422554],[112,-56,77,0.4173978426975104],[112,-56,78,0.42408870732290815],[112,-56,79,0.4306918679649384],[112,-55,64,0.33463439169423803],[112,-55,65,0.34065540329326305],[112,-55,66,0.34676821202468217],[112,-55,67,0.3529731250351836],[112,-55,68,0.3592730153097859],[112,-55,69,0.3656667710299844],[112,-55,70,0.372149202514158],[112,-55,71,0.37871132534344465],[112,-55,72,0.38534064493409564],[112,-55,73,0.3920214654355029],[112,-55,74,0.39873522303795117],[112,-55,75,0.4054608437176455],[112,-55,76,0.4121751253909405],[112,-55,77,0.4188531443955572],[112,-55,78,0.4254686861640091],[112,-55,79,0.4319946999043814],[112,-54,64,0.336372231425382],[112,-54,65,0.3424006758660741],[112,-54,66,0.3485148596869834],[112,-54,67,0.3547168362145536],[112,-54,68,0.3610087898873105],[112,-54,69,0.3673874381418424],[112,-54,70,0.3738461068503173],[112,-54,71,0.3803749885677996],[112,-54,72,0.3869613538997942],[112,-54,73,0.3935897885058314],[112,-54,74,0.4002424559175128],[112,-54,75,0.40689938629564776],[112,-54,76,0.41353879119744474],[112,-54,77,0.4201374043718083],[112,-54,78,0.4266708485487391],[112,-54,79,0.4331140281385485],[112,-53,64,0.3380187503226479],[112,-53,65,0.3440432064266948],[112,-53,66,0.3501475153781594],[112,-53,67,0.3563351182674911],[112,-53,68,0.36260741281333086],[112,-53,69,0.36895911302699297],[112,-53,70,0.37538226165797656],[112,-53,71,0.38186644711232237],[112,-53,72,0.388398931390926],[112,-53,73,0.39496480583551796],[112,-53,74,0.40154717497733566],[112,-53,75,0.408127368731192],[112,-53,76,0.4146851831245577],[112,-53,77,0.4211991496980957],[112,-53,78,0.4276468336609294],[112,-53,79,0.4340051608317548],[112,-52,64,0.33953403478785205],[112,-52,65,0.3455414036737822],[112,-52,66,0.3516231126733429],[112,-52,67,0.35778357979559183],[112,-52,68,0.36402332000328247],[112,-52,69,0.37033526778244397],[112,-52,70,0.3767104420565016],[112,-52,71,0.3831381011927619],[112,-52,72,0.38960577472114755],[112,-52,73,0.3960993262482065],[112,-52,74,0.4026030480067389],[112,-52,75,0.4090997874287104],[112,-52,76,0.4155711060746608],[112,-52,77,0.42199747119722664],[112,-52,78,0.4283584801599078],[112,-52,79,0.4346331178757519],[112,-51,64,0.3408860928123243],[112,-51,65,0.3468620322575098],[112,-51,66,0.35290734351418185],[112,-51,67,0.3590269748843965],[112,-51,68,0.36522046737739067],[112,-51,69,0.3714792442855025],[112,-51,70,0.3777936046033805],[112,-51,71,0.38415279240295847],[112,-51,72,0.3905449175938851],[112,-51,73,0.3969569127763395],[112,-51,74,0.4033745268048756],[112,-51,75,0.4097823556266144],[112,-51,76,0.41616391089875554],[112,-51,77,0.4225017268297353],[112,-51,78,0.4287775056257105],[112,-51,79,0.4349723018604007],[112,-50,64,0.34205162413397017],[112,-50,65,0.3479809225853682],[112,-50,66,0.35397530100373154],[112,-50,67,0.36003977164868173],[112,-50,68,0.36617281835666277],[112,-50,69,0.3723646554049139],[112,-50,70,0.37860519897255346],[112,-50,71,0.3848840248831164],[112,-50,72,0.3911901622199262],[112,-50,73,0.39751192968145727],[112,-50,74,0.4038368155090999],[112,-50,75,0.4101514017590159],[112,-50,76,0.41644133362458097],[112,-50,77,0.4226913344470861],[112,-50,78,0.4288852669802842],[112,-50,79,0.4350062414001403],[112,-49,64,0.3418629991051399],[112,-49,65,0.3482127625588628],[112,-49,66,0.35470824393977923],[112,-49,67,0.3608045130403342],[112,-49,68,0.36686347976420886],[112,-49,69,0.37297536576962137],[112,-49,70,0.37913004970229575],[112,-49,71,0.3853177879065274],[112,-49,72,0.39152886469899],[112,-49,73,0.3977532938868327],[112,-49,74,0.4039805726104687],[112,-49,75,0.41019948852229515],[112,-49,76,0.4163979812373256],[112,-49,77,0.42256305891130397],[112,-49,78,0.4286807707168424],[112,-49,79,0.43473623589968197],[112,-48,64,0.34101311916906674],[112,-48,65,0.34741648146645526],[112,-48,66,0.3539718967849312],[112,-48,67,0.36065839828437923],[112,-48,68,0.3672793811239767],[112,-48,69,0.37330263104509315],[112,-48,70,0.3793641058145301],[112,-48,71,0.3854550162567168],[112,-48,72,0.3915671520532442],[112,-48,73,0.39769243807662813],[112,-48,74,0.403822553397346],[112,-48,75,0.40994861423544454],[112,-48,76,0.41606092203974043],[112,-48,77,0.4221487777825963],[112,-48,78,0.42820036345716167],[112,-48,79,0.4342026916581549],[112,-47,64,0.3402627264170487],[112,-47,65,0.34671972681583757],[112,-47,66,0.3533333842959869],[112,-47,67,0.3600842450222693],[112,-47,68,0.366958432398047],[112,-47,69,0.3733437432549596],[112,-47,70,0.3793095538026231],[112,-47,71,0.385303010359437],[112,-47,72,0.3913175593820867],[112,-47,73,0.39734714867851734],[112,-47,74,0.40338570700065773],[112,-47,75,0.40942669940803184],[112,-47,76,0.4154627598386462],[112,-47,77,0.4214854022113495],[112,-47,78,0.4274848112641579],[112,-47,79,0.4334497142073587],[112,-46,64,0.33962238070816186],[112,-46,65,0.3461304502145842],[112,-46,66,0.35279773864863484],[112,-46,67,0.35960672881386224],[112,-46,68,0.36654520379717076],[112,-46,69,0.37310173460982254],[112,-46,70,0.378973497674604],[112,-46,71,0.38487305704616154],[112,-46,72,0.39079557754550054],[112,-46,73,0.39673704910581353],[112,-46,74,0.402693626096717],[112,-46,75,0.40866105507337974],[112,-46,76,0.41463419263684215],[112,-46,77,0.42060661496049584],[112,-46,78,0.4265703203974669],[112,-46,79,0.43251552643620716],[112,-45,64,0.33909533853432916],[112,-45,65,0.34564954582904445],[112,-45,66,0.35236329800572597],[112,-45,67,0.3592214023811872],[112,-45,68,0.3662134499233239],[112,-45,69,0.3725849001093209],[112,-45,70,0.37836754000765777],[112,-45,71,0.3841800816010337],[112,-45,72,0.39001938866231034],[112,-45,73,0.3958834308002914],[112,-45,74,0.401770484950685],[112,-45,75,0.4076784383961019],[112,-45,76,0.41360419523951975],[112,-45,77,0.4195431881037456],[112,-45,78,0.4254889966673316],[112,-45,79,0.43143307447699736],[112,-44,64,0.33867816095264525],[112,-44,65,0.3452714581461566],[112,-44,66,0.35202230328712253],[112,-44,67,0.3589181723064927],[112,-44,68,0.3659506179018755],[112,-44,69,0.37180629566443635],[112,-44,70,0.37750733578606505],[112,-44,71,0.3832422694231119],[112,-44,72,0.38900956764376793],[112,-44,73,0.3948090463474778],[112,-44,74,0.4006409352239608],[112,-44,75,0.40650506143380527],[112,-44,76,0.41240015015449244],[112,-44,77,0.4183232439623867],[112,-44,78,0.4242692428365862],[112,-44,79,0.430230566376573],[112,-43,64,0.33836133836781157],[112,-43,65,0.3449848075283496],[112,-43,66,0.35176151378751913],[112,-43,67,0.3586818945513371],[112,-43,68,0.3651967369012258],[112,-43,69,0.37078321045560525],[112,-43,70,0.37641211790641105],[112,-43,71,0.3820806563868396],[112,-43,72,0.3877887490749996],[112,-43,73,0.39353786423597453],[112,-43,74,0.39932995940380034],[112,-43,75,0.4051665532233373],[112,-43,76,0.41104792729106787],[112,-43,77,0.416972460138847],[112,-43,78,0.4229360952972754],[112,-43,79,0.4289319451579312],[112,-42,64,0.3381299339784135],[112,-42,65,0.3447730353530351],[112,-42,66,0.3515628433818354],[112,-42,67,0.35849299183864525],[112,-42,68,0.36401779773117654],[112,-42,69,0.36953661210766386],[112,-42,70,0.3751041930964933],[112,-42,71,0.3807186868431646],[112,-42,72,0.3863812586130586],[112,-42,73,0.3920947846852336],[112,-42,74,0.3978626815629743],[112,-42,75,0.40368787520821936],[112,-42,76,0.4095719128056486],[112,-42,77,0.4155142193457637],[112,-42,78,0.4215115010867135],[112,-42,79,0.4275572977143083],[112,-41,64,0.33796424781723794],[112,-41,65,0.3446150706469684],[112,-41,66,0.3514040191783786],[112,-41,67,0.3572306576804909],[112,-41,68,0.36262932685278626],[112,-41,69,0.36809056313525745],[112,-41,70,0.3736084068636722],[112,-41,71,0.3791817380694087],[112,-41,72,0.38481270793208605],[112,-41,73,0.39050531582386233],[112,-41,74,0.3962641350107427],[112,-41,75,0.4020931898732206],[112,-41,76,0.40799498728741257],[112,-41,77,0.41396970457079485],[112,-41,78,0.4200145361458328],[112,-41,79,0.42612320081283084],[112,-40,64,0.33784050342349115],[112,-40,65,0.3444860202356816],[112,-40,66,0.350456161359069],[112,-40,67,0.3557146050850106],[112,-40,68,0.3610573465637642],[112,-40,69,0.3664716069916935],[112,-40,70,0.37195157596395567],[112,-40,71,0.37749660984728733],[112,-40,72,0.3831095521127786],[112,-40,73,0.388795209362335],[112,-40,74,0.3945589862531618],[112,-40,75,0.4004056823036189],[112,-40,76,0.406338453323942],[112,-40,77,0.4123579399589825],[112,-40,78,0.41846156555961117],[112,-40,79,0.4131791235690435],[112,-39,64,0.3377315592837332],[112,-39,65,0.34374716961857055],[112,-39,66,0.3488325620404383],[112,-39,67,0.3540338568544502],[112,-39,68,0.35933014289161547],[112,-39,69,0.3647081219421708],[112,-39,70,0.37016188676684286],[112,-39,71,0.37569097772746485],[112,-39,72,0.38129860824710515],[112,-39,73,0.3869900547721278],[112,-39,74,0.38933315035202043],[112,-39,75,0.3916481073342552],[112,-39,76,0.40462191233674993],[112,-39,77,0.40671287311739535],[112,-39,78,0.3979003057640115],[112,-39,79,0.3898376240054006],[112,-38,64,0.3371740407139119],[112,-38,65,0.34204367802875635],[112,-38,66,0.34706584740197505],[112,-38,67,0.3522182759079648],[112,-38,68,0.357477552565942],[112,-38,69,0.3628296408789152],[112,-38,70,0.3682682577828802],[112,-38,71,0.3638023931655571],[112,-38,72,0.3620872897311959],[112,-38,73,0.3731823678310434],[112,-38,74,0.37197036512018766],[112,-38,75,0.3723154353344198],[112,-38,76,0.385399513669583],[112,-38,77,0.38714143215889363],[112,-38,78,0.3832057671986296],[112,-38,79,0.3721880285562531],[112,-37,64,0.33542568539138845],[112,-37,65,0.3402209467393593],[112,-37,66,0.34518712029048354],[112,-37,67,0.35029886891185746],[112,-37,68,0.35553021535394774],[112,-37,69,0.36086613510172444],[112,-37,70,0.36206877470844817],[112,-37,71,0.35413491598773533],[112,-37,72,0.3539969817851324],[112,-37,73,0.3586158165641459],[112,-37,74,0.3612389505151442],[112,-37,75,0.36440113956505554],[112,-37,76,0.374952313064809],[112,-37,77,0.372404020462071],[112,-37,78,0.3745021823017963],[112,-37,79,0.3584270495421272],[112,-36,64,0.33358320754500836],[112,-36,65,0.3383107929173855],[112,-36,66,0.34322811968100514],[112,-36,67,0.34830698053329956],[112,-36,68,0.353518789586919],[112,-36,69,0.35884726000413875],[112,-36,70,0.3624067174976242],[112,-36,71,0.3547710982154442],[112,-36,72,0.3549764971341767],[112,-36,73,0.35528090633554804],[112,-36,74,0.3589791737091793],[112,-36,75,0.36288728510064455],[112,-36,76,0.3716478737955357],[112,-36,77,0.36557857844755126],[112,-36,78,0.3684959762874141],[112,-36,79,0.3513301000760747],[112,-35,64,0.33167842648377116],[112,-35,65,0.33634508480174413],[112,-35,66,0.34122036455659327],[112,-35,67,0.3462734496289844],[112,-35,68,0.35147312863815827],[112,-35,69,0.35680156053318485],[112,-35,70,0.3622494422176684],[112,-35,71,0.36061125876221606],[112,-35,72,0.36135048363458117],[112,-35,73,0.3600386448525517],[112,-35,74,0.36389073885433265],[112,-35,75,0.36799620534736377],[112,-35,76,0.372178350636764],[112,-35,77,0.3659364941780349],[112,-35,78,0.3665734776138751],[112,-35,79,0.3536974058988457],[112,-34,64,0.329742582421928],[112,-34,65,0.3343548429613107],[112,-34,66,0.33919425808005044],[112,-34,67,0.344227724994733],[112,-34,68,0.349421416057547],[112,-34,69,0.3547556342300072],[112,-34,70,0.36021940658285323],[112,-34,71,0.36580816233331587],[112,-34,72,0.3715217437884809],[112,-34,73,0.37253897568332783],[112,-34,74,0.37652452778165113],[112,-34,75,0.38170182223399773],[112,-34,76,0.3790472041165893],[112,-34,77,0.3729915049130509],[112,-34,78,0.371247045723567],[112,-34,79,0.36230702590969915],[112,-33,64,0.3278054051840933],[112,-33,65,0.3323693000116111],[112,-33,66,0.337178149591877],[112,-33,67,0.342196938264781],[112,-33,68,0.34738925702612855],[112,-33,69,0.3527332496113343],[112,-33,70,0.3582159477545489],[112,-33,71,0.3638309453681072],[112,-33,72,0.3695764154547705],[112,-33,73,0.37545330911311353],[112,-33,74,0.3814637398434641],[112,-33,75,0.3876095560735741],[112,-33,76,0.39389110451695614],[112,-33,77,0.38902083565415035],[112,-33,78,0.3861582790902501],[112,-33,79,0.37540726035658706],[112,-32,64,0.3258941396785334],[112,-32,65,0.3304149162754424],[112,-32,66,0.3351973519488701],[112,-32,67,0.34020493152609155],[112,-32,68,0.34539872376602504],[112,-32,69,0.35075441761774756],[112,-32,70,0.35625674215207814],[112,-32,71,0.36189715967083586],[112,-32,72,0.367671901692804],[112,-32,73,0.37358018369650275],[112,-32,74,0.37962260171997403],[112,-32,75,0.38579971363127274],[112,-32,76,0.39211080757959155],[112,-32,77,0.39855285981863076],[112,-32,78,0.40511968376385055],[112,-32,79,0.3934334745300917],[112,-31,64,0.32500993425290586],[112,-31,65,0.32851434887035286],[112,-31,66,0.33327311171274693],[112,-31,67,0.33827123720425206],[112,-31,68,0.34346735252729793],[112,-31,69,0.348834413834851],[112,-31,70,0.35435456889639866],[112,-31,71,0.36001688988568226],[112,-31,72,0.3658154392313237],[112,-31,73,0.37174750930639366],[112,-31,74,0.3778120389367037],[112,-31,75,0.3840082094257316],[112,-31,76,0.3903342224957562],[112,-31,77,0.39678626223263835],[112,-31,78,0.4033576427985476],[112,-31,79,0.4100381433456768],[112,-30,64,0.3266859753813445],[112,-30,65,0.32668537171987466],[112,-30,66,0.33142152970944927],[112,-30,67,0.33641000778498537],[112,-30,68,0.34160708977576926],[112,-30,69,0.3469827491894215],[112,-30,70,0.3525163136647397],[112,-30,71,0.3581942552638432],[112,-30,72,0.36400829417436503],[112,-30,73,0.3699536699690011],[112,-30,74,0.37602758327462177],[112,-30,75,0.3822278104285331],[112,-30,76,0.3885514934092568],[112,-30,77,0.3949941070258835],[112,-30,78,0.4015486050363981],[112,-30,79,0.4082047465441198],[112,-29,64,0.32835063278191107],[112,-29,65,0.3261556833571278],[112,-29,66,0.3296524295075802],[112,-29,67,0.33462889295916204],[112,-29,68,0.33982318522441235],[112,-29,69,0.3452020868345453],[112,-29,70,0.35074191802149235],[112,-29,71,0.356426400463891],[112,-29,72,0.36224480352302624],[112,-29,73,0.3681902506792606],[112,-29,74,0.3742581888928358],[112,-29,75,0.3804450233478081],[112,-29,76,0.38674691975794845],[112,-29,77,0.3931587761211333],[112,-29,78,0.3996733655066878],[112,-29,79,0.40628065115092515],[112,-28,64,0.3300023409746476],[112,-28,65,0.32791934444707066],[112,-28,66,0.32796817140928214],[112,-28,67,0.3329278618200211],[112,-28,68,0.3381130293863244],[112,-28,69,0.34348710296623225],[112,-28,70,0.34902327204857864],[112,-28,71,0.354702428997819],[112,-28,72,0.36051135868892437],[112,-28,73,0.3664410802741648],[112,-28,74,0.3724853436833288],[112,-28,75,0.37863928320490675],[112,-28,76,0.38489823022771313],[112,-28,77,0.3912566869426116],[112,-28,78,0.3977074625149808],[112,-28,79,0.40424097294270267],[112,-27,64,0.33163203686443843],[112,-27,65,0.3296551265339437],[112,-27,66,0.32761631601570035],[112,-27,67,0.33129796780149345],[112,-27,68,0.3364649333819318],[112,-27,69,0.34182328936153566],[112,-27,70,0.3473430481373249],[112,-27,71,0.3530022772721587],[112,-27,72,0.35878532905188704],[112,-27,73,0.3646812138373993],[112,-27,74,0.3706821197036322],[112,-27,75,0.3767820806155456],[112,-27,76,0.38297579513564634],[112,-27,77,0.38925759739101173],[112,-27,78,0.3956205817523235],[112,-27,79,0.40205588239540513],[112,-26,64,0.33322188995803587],[112,-26,65,0.3313420723866426],[112,-26,66,0.3294048822622708],[112,-26,67,0.32972005412461025],[112,-26,68,0.3348568488054663],[112,-26,69,0.3401856954932538],[112,-26,70,0.3456734738598597],[112,-26,71,0.35129552721871893],[112,-26,72,0.3570339236470332],[112,-26,73,0.36287585282531665],[112,-26,74,0.36881216099665726],[112,-26,75,0.3748360262178578],[112,-26,76,0.3809417758315992],[112,-26,77,0.38712384783494],[112,-26,78,0.3933758975571423],[112,-26,79,0.3996900507910285],[112,-25,64,0.33474385569645315],[112,-25,65,0.33294869774848357],[112,-25,66,0.3310988703997117],[112,-25,67,0.3291641251231546],[112,-25,68,0.3332551291119421],[112,-25,69,0.33853776575431643],[112,-25,70,0.34397525319123945],[112,-25,71,0.3495404191039884],[112,-25,72,0.3552133020734882],[112,-25,73,0.36097955912127405],[112,-25,74,0.36682900409332264],[112,-25,75,0.3727542790063344],[112,-25,76,0.37874966024398005],[112,-25,77,0.38481000124804154],[112,-25,78,0.3909298130984544],[112,-25,79,0.39710248411889165],[112,-24,64,0.3361548837319876],[112,-24,65,0.33443093126561285],[112,-24,66,0.3326532566062313],[112,-24,67,0.33079218189798],[112,-24,68,0.33162000303112626],[112,-24,69,0.33683933891034523],[112,-24,70,0.34220807794739344],[112,-24,71,0.3476968098521646],[112,-24,72,0.3532838496431873],[112,-24,73,0.35895364395748325],[112,-24,74,0.3646953019136025],[112,-24,75,0.3705012526178657],[112,-24,76,0.3763660311810151],[112,-24,77,0.3822851948792945],[112,-24,78,0.38825437085250836],[112,-24,79,0.39426843648361587],[112,-23,64,0.3374041362402547],[112,-23,65,0.33574056647508066],[112,-23,66,0.3340223675448533],[112,-23,67,0.33222053160414006],[112,-23,68,0.3302852645841466],[112,-23,69,0.33505955939802834],[112,-23,70,0.3403446040809806],[112,-23,71,0.3457411497889015],[112,-23,72,0.3512260585684296],[112,-23,73,0.35678282506504805],[112,-23,74,0.3624000968496593],[112,-23,75,0.3680703153999659],[112,-23,76,0.373788479594269],[112,-23,77,0.3795510333508935],[112,-23,78,0.385354878813751],[112,-23,79,0.3911965162451915],[112,-22,64,0.33844465983222144],[112,-22,65,0.33683338548184766],[112,-22,66,0.33516470707809976],[112,-22,67,0.33341046687180986],[112,-22,68,0.3315195960361074],[112,-22,69,0.33317199348494186],[112,-22,70,0.3383623103229096],[112,-22,71,0.34365514562648947],[112,-22,72,0.34902613860983867],[112,-22,73,0.35445802242770164],[112,-22,74,0.35993913861866683],[112,-22,75,0.36546206588792085],[112,-22,76,0.3710223650788073],[112,-22,77,0.3766174419674946],[112,-22,78,0.3822455292917176],[112,-22,79,0.3879047891944248],[112,-21,64,0.3392326165566277],[112,-21,65,0.337668171551767],[112,-21,66,0.3360417726082093],[112,-21,67,0.334326349698209],[112,-21,68,0.3324700363591513],[112,-21,69,0.3311528809857832],[112,-21,70,0.33624156536367134],[112,-21,71,0.341423643143176],[112,-21,72,0.3466737188555596],[112,-21,73,0.3519738875418704],[112,-21,74,0.357312254882343],[112,-21,75,0.3626815644380661],[112,-21,76,0.3680779338393751],[112,-21,77,0.3734997015515659],[112,-21,78,0.3789463856363746],[112,-21,79,0.38441775570851877],[112,-20,64,0.33874824630057754],[112,-20,65,0.33779958585241526],[112,-20,66,0.336483128774818],[112,-20,67,0.3348254344004973],[112,-20,68,0.3328802258605228],[112,-20,69,0.33070079205169595],[112,-20,70,0.3334697231414437],[112,-20,71,0.3385166766516567],[112,-20,72,0.343746733660644],[112,-20,73,0.3491563390213038],[112,-20,74,0.35452251143568525],[112,-20,75,0.35973752442402424],[112,-20,76,0.36496952182091014],[112,-20,77,0.3702176430774107],[112,-20,78,0.37548254716209356],[112,-20,79,0.3807654645686157],[112,-19,64,0.3375415678190022],[112,-19,65,0.33657062151775424],[112,-19,66,0.3352436066255265],[112,-19,67,0.33358541697368077],[112,-19,68,0.33164940724365394],[112,-19,69,0.32948999710619264],[112,-19,70,0.32951922060224836],[112,-19,71,0.33449911053067577],[112,-19,72,0.33967681546165585],[112,-19,73,0.3450496502890256],[112,-19,74,0.3506066759069611],[112,-19,75,0.3563301526533859],[112,-19,76,0.36171471604725525],[112,-19,77,0.36679480896876754],[112,-19,78,0.37188329010099225],[112,-19,79,0.3769826129700275],[112,-18,64,0.33621432235828763],[112,-18,65,0.3352084515552627],[112,-18,66,0.3338593308388768],[112,-18,67,0.33218990017612265],[112,-18,68,0.3302525325665677],[112,-18,69,0.32810219591014267],[112,-18,70,0.3257808692374427],[112,-18,71,0.3304581937988102],[112,-18,72,0.33557414087042864],[112,-18,73,0.34089976496568536],[112,-18,74,0.3464249352288134],[112,-18,75,0.35213249305435707],[112,-18,76,0.3579995637449889],[112,-18,77,0.3632509067790448],[112,-18,78,0.3681743169473752],[112,-18,79,0.3731005725519888],[112,-17,64,0.3347889259399885],[112,-17,65,0.3337334527440275],[112,-17,66,0.3323483199997348],[112,-17,67,0.3306542438339447],[112,-17,68,0.32870199999472094],[112,-17,69,0.3265465118125724],[112,-17,70,0.3242302066543556],[112,-17,71,0.32638118273334593],[112,-17,72,0.3314215830175841],[112,-17,73,0.33668499490824294],[112,-17,74,0.34216235520323235],[112,-17,75,0.3478374189564757],[112,-17,76,0.35368799402524004],[112,-17,77,0.35958902824522476],[112,-17,78,0.36436263415642123],[112,-17,79,0.36913005690631323],[112,-16,64,0.3332181139473617],[112,-16,65,0.3320993931591504],[112,-16,66,0.3306657807632877],[112,-16,67,0.32893556639588056],[112,-16,68,0.32695732151417983],[112,-16,69,0.32478529128468747],[112,-16,70,0.3224619437136783],[112,-16,71,0.3222218179003983],[112,-16,72,0.3271762839414308],[112,-16,73,0.3323660261535254],[112,-16,74,0.33778321922475274],[112,-16,75,0.34341277478403925],[112,-16,76,0.3492334745283861],[112,-16,77,0.35521905758338235],[112,-16,78,0.3604316526625224],[112,-16,79,0.36505122237245785],[112,-15,64,0.3314487759536382],[112,-15,65,0.3302549136586106],[112,-15,66,0.32876251273811596],[112,-15,67,0.3269873036584396],[112,-15,68,0.3249750643380325],[112,-15,69,0.3227786936190456],[112,-15,70,0.3204402329149521],[112,-15,71,0.31799154674501023],[112,-15,72,0.3227963862403607],[112,-15,73,0.3279053167113009],[112,-15,74,0.3332543200780568],[112,-15,75,0.3388296005559046],[112,-15,76,0.34461110083500424],[112,-15,77,0.3505734878304448],[112,-15,78,0.3563630984741009],[112,-15,79,0.36084224114109026],[112,-14,64,0.3294405717443709],[112,-14,65,0.3281613492739092],[112,-14,66,0.3266017334031329],[112,-14,67,0.32477482306851063],[112,-14,68,0.3227230419060227],[112,-14,69,0.3204972594502907],[112,-14,70,0.3181385845202493],[112,-14,71,0.31567878811149297],[112,-14,72,0.3182477673449306],[112,-14,73,0.3232716984423208],[112,-14,74,0.32854739568471303],[112,-14,75,0.3340624086074647],[112,-14,76,0.3397979475663717],[112,-14,77,0.3457297522587933],[112,-14,78,0.35182895605737663],[112,-14,79,0.3564867360445159],[112,-13,64,0.32716401821075813],[112,-13,65,0.32579082418757627],[112,-13,66,0.32415721216717264],[112,-13,67,0.32227362871353277],[112,-13,68,0.32017862186827906],[112,-13,69,0.3179203540193341],[112,-13,70,0.3155384769028795],[112,-13,71,0.31306428275266873],[112,-13,72,0.3135030435575983],[112,-13,73,0.3184396340482283],[112,-13,74,0.32363866229985905],[112,-13,75,0.32908901271498003],[112,-13,76,0.3347732091858789],[112,-13,77,0.3406681535401135],[112,-13,78,0.3467458833924232],[112,-13,79,0.35197256824278333],[112,-12,64,0.2533823049417176],[112,-12,65,0.29778817954304637],[112,-12,66,0.32141155622379464],[112,-12,67,0.31946771197220686],[112,-12,68,0.3173271713898087],[112,-12,69,0.3150347368057536],[112,-12,70,0.31262807943773696],[112,-12,71,0.31013761010376584],[112,-12,72,0.30854064981941476],[112,-12,73,0.3133885270824316],[112,-12,74,0.31850837535555154],[112,-12,75,0.32389035712055125],[112,-12,76,0.3295183109510178],[112,-12,77,0.33537034969019675],[112,-12,78,0.34141950246096237],[112,-12,79,0.3472907507831846],[112,-11,64,0.13409478102862438],[112,-11,65,0.16274891920326456],[112,-11,66,0.19467327557293487],[112,-11,67,0.22982231649273036],[112,-11,68,0.2681456155719285],[112,-11,69,0.3095782265018383],[112,-11,70,0.3094010876506602],[112,-11,71,0.3068932576728469],[112,-11,72,0.3043328447923589],[112,-11,73,0.3081020845965962],[112,-11,74,0.313140417553339],[112,-11,75,0.3184503450638631],[112,-11,76,0.324016989644345],[112,-11,77,0.32981969528248334],[112,-11,78,0.33583254636976734],[112,-11,79,0.34202495408365075],[112,-10,64,0.061675473033746084],[112,-10,65,0.07795862861504836],[112,-10,66,0.09689995491735326],[112,-10,67,0.11852145151155564],[112,-10,68,0.14283531782228986],[112,-10,69,0.16983738258181574],[112,-10,70,0.19949409576771188],[112,-10,71,0.23174486394800503],[112,-10,72,0.26650478733819827],[112,-10,73,0.30256773223696004],[112,-10,74,0.3075219139189102],[112,-10,75,0.3127556664397565],[112,-10,76,0.31825534362040864],[112,-10,77,0.3240015206262565],[112,-10,78,0.3299693846799139],[112,-10,79,0.3361292179184014],[112,-9,64,0.039457526922876414],[112,-9,65,0.04242266795462157],[112,-9,66,0.0453096980168968],[112,-9,67,0.05223065863062694],[112,-9,68,0.0656689872368564],[112,-9,69,0.08129143276544488],[112,-9,70,0.09912416371497892],[112,-9,71,0.11916506401967868],[112,-9,72,0.14138608024311172],[112,-9,73,0.1657356505926053],[112,-9,74,0.19214120187028927],[112,-9,75,0.22051170117621738],[112,-9,76,0.25074024997560973],[112,-9,77,0.28270670902803374],[112,-9,78,0.3162803436677383],[112,-9,79,0.32993236231932804],[112,-8,64,0.034685743235971414],[112,-8,65,0.0375517701281921],[112,-8,66,0.04036599735448984],[112,-8,67,0.043123140784343664],[112,-8,68,0.04583284600494766],[112,-8,69,0.04851693467438547],[112,-8,70,0.051196092648555167],[112,-8,71,0.05388866580126045],[112,-8,72,0.06436645336203187],[112,-8,73,0.07862273363548061],[112,-8,74,0.09463175084349872],[112,-8,75,0.11235319724519731],[112,-8,76,0.13172819371669026],[112,-8,77,0.1526816847310646],[112,-8,78,0.17512488457579503],[112,-8,79,0.19895776527027786],[112,-7,64,0.029841044271590254],[112,-7,65,0.03260944445654071],[112,-7,66,0.035352242367383484],[112,-7,67,0.03806206511000225],[112,-7,68,0.04074294859394437],[112,-7,69,0.043411090165226915],[112,-7,70,0.04608318601084824],[112,-7,71,0.04877497649239642],[112,-7,72,0.05150021343243903],[112,-7,73,0.054269791029559214],[112,-7,74,0.05709104091575795],[112,-7,75,0.059967191514345444],[112,-7,76,0.06289699150310929],[112,-7,77,0.07179510646248646],[112,-7,78,0.08542881925896838],[112,-7,79,0.10029750195281743],[112,-6,64,0.024934883918029296],[112,-6,65,0.02760810512159936],[112,-6,66,0.03028137586166985],[112,-6,67,0.03294538135352746],[112,-6,68,0.035598558453553884],[112,-6,69,0.03825132696110381],[112,-6,70,0.04091620944863344],[112,-6,71,0.0436061446800161],[112,-6,72,0.04633320927227677],[112,-6,73,0.04910752234147751],[112,-6,74,0.05193633386597485],[112,-6,75,0.05482329709957756],[112,-6,76,0.05776792496839238],[112,-6,77,0.060765229992946576],[112,-6,78,0.0638055468926318],[112,-6,79,0.06687453665807008],[112,-5,64,0.01997963686452771],[112,-5,65,0.022560981702118354],[112,-5,66,0.025167064435410877],[112,-5,67,0.02778677880421157],[112,-5,68,0.030413070168951208],[112,-5,69,0.03305055027755068],[112,-5,70,0.03570747851762757],[112,-5,71,0.03839386529069524],[112,-5,72,0.04111996595849816],[112,-5,73,0.043894975066445026],[112,-5,74,0.046725921781887586],[112,-5,75,0.04961676704287027],[112,-5,76,0.052567702472576326],[112,-5,77,0.055574650680869725],[112,-5,78,0.05862896614846477],[112,-5,79,0.06171733547710514],[112,-4,64,0.014988157892444315],[112,-4,65,0.017481660663736482],[112,-4,66,0.020023236704246935],[112,-4,67,0.022600138159652915],[112,-4,68,0.02520002192092163],[112,-4,69,0.02782178671584909],[112,-4,70,0.03046943726613509],[112,-4,71,0.03315000226021338],[112,-4,72,0.035871822165471315],[112,-4,73,0.03864305227258013],[112,-4,74,0.04147038209685519],[112,-4,75,0.04435797178241711],[112,-4,76,0.04730660567734233],[112,-4,77,0.0503130627770465],[112,-4,78,0.05336970327044585],[112,-4,79,0.05646426997502971],[112,-3,64,0.009973520037136044],[112,-3,65,0.012383802150533587],[112,-3,66,0.014863791310514749],[112,-3,67,0.017399243609016936],[112,-3,68,0.01997282145032498],[112,-3,69,0.022577929733355755],[112,-3,70,0.025214425554078067],[112,-3,71,0.027886377574174323],[112,-3,72,0.030600172433698745],[112,-3,73,0.033362848799120104],[112,-3,74,0.03618066033937559],[112,-3,75,0.03905786841143247],[112,-3,76,0.041995764727179766],[112,-3,77,0.04499192377051711],[112,-3,78,0.048039684239075196],[112,-3,79,0.05112785830534378],[112,-2,64,0.00494893540820337],[112,-2,65,0.007281035763052918],[112,-2,66,0.009702478251593576],[112,-2,67,0.0121976605332878],[112,-2,68,0.014744627551320154],[112,-2,69,0.01733162768341468],[112,-2,70,0.019954572806482183],[112,-2,71,0.02261466729574428],[112,-2,72,0.025316360267369605],[112,-2,73,0.028065535165345247],[112,-2,74,0.03086793813173531],[112,-2,75,0.03372784606187318],[112,-2,76,0.03664697470985366],[112,-2,77,0.03962362668029329],[112,-2,78,0.04265207862170366],[112,-2,79,0.04572220643137783],[112,-1,64,-7.213741621120602E-5],[112,-1,65,0.002187039146946541],[112,-1,66,0.004552957209053761],[112,-1,67,0.0070087823127174525],[112,-1,68,0.009528390339494043],[112,-1,69,0.012095317366872489],[112,-1,70,0.014701820775078122],[112,-1,71,0.01734640672050099],[112,-1,72,0.020031657116478047],[112,-1,73,0.022762300910877532],[112,-1,74,0.02554353122374215],[112,-1,75,0.028379569350007874],[112,-1,76,0.03127247607549169],[112,-1,77,0.0342212102043866],[112,-1,78,0.03722093365550389],[112,-1,79,0.040262561959002],[112,0,64,-0.0050756954450082254],[112,0,65,-0.0028841967101899384],[112,0,66,-5.709633571656298E-4],[112,0,67,0.0018460498195067812],[112,0,68,0.00433705363048619],[112,0,69,0.006881406125432692],[112,0,70,0.00946807796626725],[112,0,71,0.012093106877146521],[112,0,72,0.014757328957005902],[112,0,73,0.017464358513922848],[112,0,74,0.020218818085677638],[112,0,75,0.023024819737964698],[112,0,76,0.02588469816021592],[112,0,77,0.028797995514446853],[112,0,78,0.03176069743707469],[112,0,79,0.03476471905390033],[112,1,64,-0.010046695235216584],[112,1,65,-0.007917908942815183],[112,1,66,-0.005654900693374917],[112,1,67,-0.0032766515000454484],[112,1,68,-8.160763296407403E-4],[112,1,69,0.0017026061161121184],[112,1,70,0.004265508818848676],[112,1,71,0.006866484943317922],[112,1,72,0.00950479256942472],[112,1,73,0.012183009572995795],[112,1,74,0.014905200398109648],[112,1,75,0.0176753358820384],[112,1,76,0.020495966713532376],[112,1,77,0.023367150531851566],[112,1,78,0.0262856321097783],[112,1,79,0.0292442755154872],[112,2,64,-0.014968352209612519],[112,2,65,-0.012897906893987681],[112,2,66,-0.010683283629137789],[112,2,67,-0.008344416309646762],[112,2,68,-0.00591679637004927],[112,2,69,-0.003427580827625543],[112,2,70,-8.93044796849081E-4],[112,2,71,0.00167880545996033],[112,2,72,0.004285857849238659],[112,2,73,0.006929769181420636],[112,2,74,0.00961409112494058],[112,2,75,0.0123426485938715],[112,2,76,0.015118171200360832],[112,2,77,0.017941177826328925],[112,2,78,0.02080911380134835],[112,2,79,0.02371573962190119],[112,3,64,-0.008825946071299056],[112,3,65,-0.015991231080378504],[112,3,66,-0.0156385670177764],[112,3,67,-0.013340576608460003],[112,3,68,-0.010949312319093196],[112,3,69,-0.008494230871774729],[112,3,70,-0.005993511211915909],[112,3,71,-0.003456668773696166],[112,3,72,-8.869459783205485E-4],[112,3,73,0.0017165439609324361],[112,3,74,0.0043569217660268155],[112,3,75,0.007037896609030568],[112,3,76,0.0097623710872854],[112,3,77,0.012531296756261148],[112,3,78,0.015342779751162673],[112,3,79,0.018191435477776692],[112,4,64,8.548063240906733E-4],[112,4,65,-0.0015730664248940318],[112,4,66,-0.004726698648042338],[112,4,67,-0.00878954951593247],[112,4,68,-0.013928009418814669],[112,4,69,-0.013480191900064158],[112,4,70,-0.01101988141107738],[112,4,71,-0.008525092844567166],[112,4,72,-0.005999936783479512],[112,4,73,-0.0034441113220627317],[112,4,74,-8.5480343954667E-4],[112,4,75,0.0017716552403842102],[112,4,76,0.004438379012528385],[112,4,77,0.007146765113244515],[112,4,78,0.009895576779864905],[112,4,79,0.012680271376657178],[112,5,64,0.0013477484064470977],[112,5,65,3.4865472773941175E-4],[112,5,66,-5.092517105125505E-4],[112,5,67,-0.001478896686324853],[112,5,68,-0.0027944918080150738],[112,5,69,-0.00464843160127281],[112,5,70,-0.007190072312786421],[112,5,71,-0.01053088482335657],[112,5,72,-0.011037745569422983],[112,5,73,-0.008538666320787217],[112,5,74,-0.00600941508098638],[112,5,75,-0.003446231924193838],[112,5,76,-8.45690266440395E-4],[112,5,77,0.001794127772851025],[112,5,78,0.004472697109782109],[112,5,79,0.007186355619515942],[112,6,64,0.004363954500973353],[112,6,65,0.00148277441025761],[112,6,66,-3.0944979272103427E-4],[112,6,67,-0.0013352014904933157],[112,6,68,-0.0018964370976170038],[112,6,69,-0.0022512110714457845],[112,6,70,-0.0026122721799252333],[112,6,71,-0.0031520855618422773],[112,6,72,-0.0040076526213452665],[112,6,73,-0.00528508170690201],[112,6,74,-0.007063894569814667],[112,6,75,-0.008606823371127692],[112,6,76,-0.006083912238589631],[112,6,77,-0.0035236170677168757],[112,6,78,-9.256105226440685E-4],[112,6,79,0.001707444806687051],[112,7,64,0.021620835886403185],[112,7,65,0.013544714350062546],[112,7,66,0.00758636816990837],[112,7,67,0.0033536712512985474],[112,7,68,4.768557632886185E-4],[112,7,69,-0.0013678931737421743],[112,7,70,-0.002456882266685186],[112,7,71,-0.003023813681161924],[112,7,72,-0.0032644985996242728],[112,7,73,-0.0033413336464704247],[112,7,74,-0.0033875252889304197],[112,7,75,-0.003511048652668501],[112,7,76,-0.0037983285993636404],[112,7,77,-0.004317632390881718],[112,7,78,-0.005122164800740627],[112,7,79,-0.0037523658993222015],[112,8,64,0.06482981571298814],[112,8,65,0.04824731080186464],[112,8,66,0.03489244857854613],[112,8,67,0.02430356043505267],[112,8,68,0.016043084599254027],[112,8,69,0.009721328647969941],[112,8,70,0.004998223972238794],[112,8,71,0.0015785345333982283],[112,8,72,-7.9275768592577E-4],[112,8,73,-0.0023348419198913756],[112,8,74,-0.0032352277597773502],[112,8,75,-0.0036536406933851493],[112,8,76,-0.003725651897514102],[112,8,77,-0.003566031560878907],[112,8,78,-0.00327181649395087],[112,8,79,-0.002925084305581888],[112,9,64,0.14569115611665862],[112,9,65,0.11729304547400239],[112,9,66,0.09331350164560945],[112,9,67,0.07322160515537252],[112,9,68,0.05651215039885797],[112,9,69,0.04272949056230538],[112,9,70,0.03146958584788821],[112,9,71,0.022375328138366297],[112,9,72,0.01513202602905642],[112,9,73,0.009463103040673326],[112,9,74,0.005126023696083021],[112,9,75,0.0019084609071108377],[112,9,76,-3.752831876909614E-4],[112,9,77,-0.001887592161415735],[112,9,78,-0.0027705766624224583],[112,9,79,-0.0031488343140413846],[112,10,64,0.20191903478595474],[112,10,65,0.19834095513466193],[112,10,66,0.19454497984917762],[112,10,67,0.16180545711380015],[112,10,68,0.1335842357480897],[112,10,69,0.10935967402851465],[112,10,70,0.0886635478591314],[112,10,71,0.07107650280541486],[112,10,72,0.05622364616761229],[112,10,73,0.04377033931166865],[112,10,74,0.03341820483005716],[112,10,75,0.02490136191604775],[112,10,76,0.01798290208384133],[112,10,77,0.012451616057026344],[112,10,78,0.00811898128434909],[112,10,79,0.004816418143655282],[112,11,64,0.19478216092955095],[112,11,65,0.1911289283990883],[112,11,66,0.18753976843555792],[112,11,67,0.18399309968578226],[112,11,68,0.18045007495431972],[112,11,69,0.17688002014113785],[112,11,70,0.1732652946376396],[112,11,71,0.15938327540027158],[112,11,72,0.1341867781890269],[112,11,73,0.11229518111521905],[112,11,74,0.093353367785758],[112,11,75,0.07704086388737151],[112,11,76,0.06306837622777307],[112,11,77,0.051174568646527724],[112,11,78,0.04112308436131517],[112,11,79,0.032699822983839326],[112,12,64,0.18767239855680673],[112,12,65,0.18394960570274296],[112,12,66,0.1802841040391421],[112,12,67,0.17665550740400335],[112,12,68,0.17302596014325952],[112,12,69,0.16936512900562023],[112,12,70,0.16565561383676336],[112,12,71,0.16189052483179983],[112,12,72,0.15807118621890828],[112,12,73,0.1542050384596771],[112,12,74,0.15030374106258262],[112,12,75,0.14638147759484102],[112,12,76,0.14245346396778436],[112,12,77,0.12599364018164685],[112,12,78,0.10795679360900749],[112,12,79,0.09221885780375383],[112,13,64,0.18059588605629773],[112,13,65,0.1768100646045763],[112,13,66,0.17307374483819057],[112,13,67,0.16936832714950212],[112,13,68,0.16565746955656133],[112,13,69,0.16191145611090604],[112,13,70,0.15811325519026614],[112,13,71,0.154256197619089],[112,13,72,0.1503417547445866],[112,13,73,0.14637750512953746],[112,13,74,0.14237529193772303],[112,13,75,0.13834957259767286],[112,13,76,0.13431596184112604],[112,13,77,0.1302899687271592],[112,13,78,0.12628592778451742],[112,13,79,0.12231612393673899],[112,14,64,0.17356071821894276],[112,14,65,0.16971896974054582],[112,14,66,0.1659180747043622],[112,14,67,0.16214176125924712],[112,14,68,0.15835570322013234],[112,14,69,0.1545310771087534],[112,14,70,0.15065133520139368],[112,14,71,0.14671001582911797],[112,14,72,0.142708623225937],[112,14,73,0.13865468398056763],[112,14,74,0.1345599821199886],[112,14,75,0.1304389743897235],[112,14,76,0.12630738683325365],[112,14,77,0.12218099331384508],[112,14,78,0.11807457616936742],[112,14,79,0.11400106874763903],[112,15,64,0.16658817143536303],[112,15,65,0.16269780200197448],[112,15,66,0.1588387975909742],[112,15,67,0.15499766610691748],[112,15,68,0.151142555305506],[112,15,69,0.1472458032873217],[112,15,70,0.14329145605796692],[112,15,71,0.1392732414749383],[112,15,72,0.1351925791302908],[112,15,73,0.13105675254342983],[112,15,74,0.1268772456166704],[112,15,75,0.12266824487634226],[112,15,76,0.11844530859284517],[112,15,77,0.11422420344662702],[112,15,78,0.11001990898631905],[112,15,79,0.10584578971319297],[112,16,64,0.15972739059599708],[112,16,65,0.15579570861721107],[112,16,66,0.151884823439644],[112,16,67,0.14798436306139476],[112,16,68,0.14406536366026093],[112,16,69,0.14010161244762684],[112,16,70,0.13607789479012275],[112,16,71,0.13198815906113193],[112,16,72,0.1278336817787248],[112,16,73,0.12362137866371545],[112,16,74,0.11936226346980074],[112,16,75,0.11507005604732604],[112,16,76,0.11075994071198991],[112,16,77,0.10644747560196724],[112,16,78,0.10214765332394049],[112,16,79,0.09787411281307547],[112,17,64,0.15301202497791744],[112,17,65,0.14904626615874647],[112,17,66,0.1450895021665716],[112,17,67,0.14113470816632548],[112,17,68,0.13715617637429267],[112,17,69,0.13312944933263227],[112,17,70,0.12904023539295134],[112,17,71,0.12488278652473885],[112,17,72,0.12065824005028258],[112,17,73,0.11637308811765802],[112,17,74,0.11203777664098646],[112,17,75,0.10766543509148675],[112,17,76,0.1032707381770054],[112,17,77,0.09886890010362466],[112,17,78,0.09447480177276026],[112,17,79,0.09010225093319649],[112,18,64,0.14645269526041588],[112,18,65,0.14245995074152876],[112,18,66,0.1384631595147196],[112,18,67,0.13445876046718802],[112,18,68,0.130424616501027],[112,18,69,0.1263383414745745],[112,18,70,0.12218677809658604],[112,18,71,0.11796460555797753],[112,18,72,0.11367287537123126],[112,18,73,0.10931765531248498],[112,18,74,0.10490878305328746],[112,18,75,0.10045873077253113],[112,18,76,0.09598158174202841],[112,18,77,0.09149211958319708],[112,18,78,0.08700503059913213],[112,18,79,0.08253421929796805],[112,19,64,0.14004072547814828],[112,19,65,0.13602786806069272],[112,19,66,0.13199679810436232],[112,19,67,0.12794742899202555],[112,19,68,0.12386145088807878],[112,19,69,0.1197188655490196],[112,19,70,0.11550787915235008],[112,19,71,0.11122375148497635],[112,19,72,0.10686753958743336],[112,19,73,0.10244492877722254],[112,19,74,0.09796515247893556],[112,19,75,0.0934400020451091],[112,19,76,0.08888292750700051],[112,19,77,0.0843082299499739],[112,19,78,0.07973034596533156],[112,19,79,0.07516322439086336],[112,20,64,0.1337517068186328],[112,20,65,0.12972531703456988],[112,20,66,0.12566563549223855],[112,20,67,0.1215759615967067],[112,20,68,0.11744200723769262],[112,20,69,0.11324647004547211],[112,20,70,0.10897915686315202],[112,20,71,0.10463608118228897],[112,20,72,0.10021842450428492],[112,20,73,0.09573156365287436],[112,20,74,0.09118416529118788],[112,20,75,0.08658734870845665],[112,20,76,0.08195391775147856],[112,20,77,0.07729766258542145],[112,20,78,0.07263273177842748],[112,20,79,0.06797307501602289],[112,21,64,0.12533610040823942],[112,21,65,0.12272956898887669],[112,21,66,0.11943247628132436],[112,21,67,0.1153072729407481],[112,21,68,0.11112943691425935],[112,21,69,0.10688465205266327],[112,21,70,0.10256456196694412],[112,21,71,0.09816611749095726],[112,21,72,0.093690761906021],[112,21,73,0.08914366037845958],[112,21,74,0.08453297467671388],[112,21,75,0.07986918410305535],[112,21,76,0.07516445344130632],[112,21,77,0.07043204858685552],[112,21,78,0.06568580038930702],[112,21,79,0.060939617102131236],[112,22,64,0.11440768719200706],[112,22,65,0.11169039049951199],[112,22,66,0.10892369211356677],[112,22,67,0.10610512622988477],[112,22,68,0.10324778581213324],[112,22,69,0.10037007467730195],[112,22,70,0.09621931049233962],[112,22,71,0.09176986857849369],[112,22,72,0.08724151287967309],[112,22,73,0.08263930878856471],[112,22,74,0.07797099193276137],[112,22,75,0.07324644989534836],[112,22,76,0.06847722887965924],[112,22,77,0.06367606595717981],[112,22,78,0.05885644745623007],[112,22,79,0.05403219396600498],[112,23,64,0.10342025882249245],[112,23,65,0.10059271808965867],[112,23,66,0.09774002706566039],[112,23,67,0.09485728079987164],[112,23,68,0.09195352231603973],[112,23,69,0.08904381978940815],[112,23,70,0.08613981401287511],[112,23,71,0.08324986722954052],[112,23,72,0.08037940900577632],[112,23,73,0.07617103680000024],[112,23,74,0.07145219444751702],[112,23,75,0.06667477298536745],[112,23,76,0.06184972898278763],[112,23,77,0.056989270668606824],[112,23,78,0.052106512343507966],[112,23,79,0.047215133837383516],[112,24,64,0.09245090740877424],[112,24,65,0.08951457864368831],[112,24,66,0.08657679391708036],[112,24,67,0.08363059433712652],[112,24,68,0.08068103858055797],[112,24,69,0.0777396652985243],[112,24,70,0.07481578404121554],[112,24,71,0.07191639670572841],[112,24,72,0.06904632386405705],[112,24,73,0.06620834949612339],[112,24,74,0.0634033836746183],[112,24,75,0.06010656451579788],[112,24,76,0.05523618962658969],[112,24,77,0.05032791251960168],[112,24,78,0.04539444544586185],[112,24,79,0.04044926649773023],[112,25,64,0.08157742716765355],[112,25,65,0.07853473255538419],[112,25,66,0.07551334240509339],[112,25,67,0.07250467528201858],[112,25,68,0.06950993516503515],[112,25,69,0.06653698439943807],[112,25,70,0.06359264199290234],[112,25,71,0.06068239322775135],[112,25,72,0.057810304729887824],[112,25,73,0.05497897712116923],[112,25,74,0.0521895350154198],[112,25,75,0.049441654028144086],[112,25,76,0.046733624384011616],[112,25,77,0.04364673666121004],[112,25,78,0.03867698381725289],[112,25,79,0.03369347090818799],[112,26,64,0.07087579638096822],[112,26,65,0.0677301415545561],[112,26,66,0.06462726159189712],[112,26,67,0.061557417106107466],[112,26,68,0.0585181476099961],[112,26,69,0.05551354425762116],[112,26,70,0.05254781144002377],[112,26,71,0.04962478356706515],[112,26,72,0.04674764040475525],[112,26,73,0.0439186776389487],[112,26,74,0.041139132638706284],[112,26,75,0.03840906525354348],[112,26,76,0.03572729334425926],[112,26,77,0.03309138261816158],[112,26,78,0.03049769021732112],[112,26,79,0.026906255695409803],[112,27,64,0.06041785139528708],[112,27,65,0.05717362586029588],[112,27,66,0.053992033109692555],[112,27,67,0.05086266028432394],[112,27,68,0.04777962831995505],[112,27,69,0.044743217441918615],[112,27,70,0.04175493233356459],[112,27,71,0.03881684806428264],[112,27,72,0.03593114019627736],[112,27,73,0.03309968593962552],[112,27,74,0.030323736538583376],[112,27,75,0.027603660888480396],[112,27,76,0.024938760203812874],[112,27,77,0.02232715338567337],[112,27,78,0.01976573257178125],[112,27,79,0.017250188196501953],[112,28,64,0.05026915684708859],[112,28,65,0.04693171473980773],[112,28,66,0.043674873041329325],[112,28,67,0.04048803642037547],[112,28,68,0.03736220234608399],[112,28,69,0.03429385698788667],[112,28,70,0.031281761613040436],[112,28,71,0.02832615204773571],[112,28,72,0.02542810067817113],[112,28,73,0.022588963262920782],[112,28,74,0.01980991094259387],[112,28,75,0.0170915476097453],[112,28,76,0.014433612584117479],[112,28,77,0.011834768327161467],[112,28,78,0.009292472726991774],[112,28,79,0.00680293529213351],[112,29,64,0.04048707655802499],[112,29,65,0.03706269482343025],[112,29,66,0.03373476664581948],[112,29,67,0.030492998552066553],[112,29,68,0.027325600870269466],[112,29,69,0.024225338619464437],[112,29,70,0.021188228228851903],[112,29,71,0.01821261668627863],[112,29,72,0.015298394738284711],[112,29,73,0.012446306423817584],[112,29,74,0.00965735552088105],[112,29,75,0.006932309228642835],[112,29,76,0.004271299156133286],[112,29,77,0.0016735194443722795],[112,29,78,-8.629783866177711E-4],[112,29,79,-0.0033413944990491468],[112,30,64,0.031119049817437138],[112,30,65,0.02761486080962166],[112,30,66,0.024220700429442604],[112,30,67,0.020927041960563553],[112,30,68,0.017719676492805297],[112,30,69,0.014587773957857583],[112,30,70,0.011524646077212078],[112,30,71,0.008526732389895054],[112,30,72,0.0055926855853241884],[112,30,73,0.0027225623345940764],[112,30,74,-8.287961997940517E-5],[112,30,75,-0.0028227776415310725],[112,30,76,-0.0054966534448718],[112,30,77,-0.008104795487153125],[112,30,78,-0.010648534840098072],[112,30,79,-0.013130415131817359],[112,31,64,0.022201078046617764],[112,31,65,0.018624973482071018],[112,31,66,0.0151700963603455],[112,31,67,0.011828120111281279],[112,31,68,0.00858280473360858],[112,31,69,0.005419898855337565],[112,31,70,0.002330088654392261],[112,31,71,-6.920818267887044E-4],[112,31,72,-0.003649231322516382],[112,31,73,-0.0065420497232182365],[112,31,74,-0.009370093267755435],[112,31,75,-0.012132465929028205],[112,31,76,-0.014828386673291404],[112,31,77,-0.017457642566267667],[112,31,78,-0.020020927982324483],[112,31,79,-0.022520070444458456],[112,32,64,0.013756427114994897],[112,32,65,0.010116930248193616],[112,32,66,0.006607453320904809],[112,32,67,0.003221260657479026],[112,32,68,-5.952353508114879E-5],[112,32,69,-0.0032523586982691668],[112,32,70,-0.00636907045384209],[112,32,71,-0.00941696929798643],[112,32,72,-0.012399955166380542],[112,32,73,-0.015319505337061499],[112,32,74,-0.01817554459773027],[112,32,75,-0.020967196924452654],[112,32,76,-0.023693418233752508],[112,32,77,-0.023355573450261995],[112,32,78,-0.02076070731237626],[112,32,79,-0.018285229622300943],[112,33,64,0.005794550846343827],[112,33,65,0.00210065368797351],[112,33,66,-0.0014567988184016481],[112,33,67,-0.004882613265211391],[112,33,68,-0.008195913703985168],[112,33,69,-0.011417126343071068],[112,33,70,-0.014560446825917204],[112,33,71,-0.017634972954016163],[112,33,72,-0.02064587191512616],[112,33,73,-0.02150233076103794],[112,33,74,-0.018262640205793965],[112,33,75,-0.015148408564983042],[112,33,76,-0.012159689194105351],[112,33,77,-0.009296131457734428],[112,33,78,-0.00655743946800606],[112,33,79,-0.0039437097320030295],[112,34,64,-0.0016897584911480792],[112,34,65,-0.005428796130006951],[112,34,66,-0.00902722684161866],[112,34,67,-0.012487650938402385],[112,34,68,-0.015830077776411718],[112,34,69,-0.019077645739971946],[112,34,70,-0.018628589356783316],[112,34,71,-0.014844942733636988],[112,34,72,-0.011183028676588207],[112,34,73,-0.007649163235484917],[112,34,74,-0.0042467839015392864],[112,34,75,-9.773139326859459E-4],[112,34,76,0.002159095037747103],[112,34,77,0.005162942444935574],[112,34,78,0.008034880312786237],[112,34,79,0.01077533657412046],[112,35,64,-0.008716986679990126],[112,35,65,-0.012491879558973584],[112,35,66,-0.016124097624067153],[112,35,67,-0.017410160916406237],[112,35,68,-0.013157734256907713],[112,35,69,-0.008980947323220679],[112,35,70,-0.004903413408798267],[112,35,71,-9.42119992230392E-4],[112,35,72,0.0028913213566480887],[112,35,73,0.006589542245688293],[112,35,74,0.010148403317707276],[112,35,75,0.013566099777843569],[112,35,76,0.016842387346346858],[112,35,77,0.019977929072628454],[112,35,78,0.022973763134475387],[112,35,79,0.025830891445926568],[112,36,64,-0.015323274787336257],[112,36,65,-0.01287424404796],[112,36,66,-0.00837728453013579],[112,36,67,-0.0038964682881788503],[112,36,68,5.407918645667127E-4],[112,36,69,0.00490069759552454],[112,36,70,0.009157532548754618],[112,36,71,0.013292592086195154],[112,36,72,0.01729291927357929],[112,36,73,0.021150155230761962],[112,36,74,0.024859505344974074],[112,36,75,0.02841882251880258],[112,36,76,0.03182780830275178],[112,36,77,0.03508733244664083],[112,36,78,0.03819887109553922],[112,36,79,0.04116406355830717],[112,37,64,-0.004160991596417992],[112,37,65,5.340806396043815E-4],[112,37,66,0.005215102965059337],[112,37,67,0.00987979095795622],[112,37,68,0.014500407430718384],[112,37,69,0.01904087745746944],[112,37,70,0.023473526968361],[112,37,71,0.02777805837576196],[112,37,72,0.03194027773641353],[112,37,73,0.03595093281384584],[112,37,74,0.03980466361991611],[112,37,75,0.04349906669426555],[112,37,76,0.04703387406473977],[112,37,77,0.05041024752184322],[112,37,78,0.0536301885367443],[112,37,79,0.05669606385902281],[112,38,64,0.0092287587486677],[112,38,65,0.0141118238662464],[112,38,66,0.018977003225319835],[112,38,67,0.02382446626898661],[112,38,68,0.028626215877611626],[112,38,69,0.0333439876027329],[112,38,70,0.03794825266276595],[112,38,71,0.04241723691155155],[112,38,72,0.04673563656846514],[112,38,73,0.05089344140877061],[112,38,74,0.05488486707806358],[112,38,75,0.058707397881087746],[112,38,76,0.06236094108543502],[112,38,77,0.06584709347607873],[112,38,78,0.06916852059786446],[112,38,79,0.07232844883378212],[112,39,64,0.02271357293203166],[112,39,65,0.02778612860944562],[112,39,66,0.03283597327542597],[112,39,67,0.037865740827644816],[112,39,68,0.04284716731997823],[112,39,69,0.047739781557788574],[112,39,70,0.05251222544457538],[112,39,71,0.05714131108669646],[112,39,72,0.061610718780051636],[112,39,73,0.06590979930250494],[112,39,74,0.0700324822708312],[112,39,75,0.0739762920129462],[112,39,76,0.07774147210141152],[112,39,77,0.08133021939402824],[112,39,78,0.0847460281322146],[112,39,79,0.08799314436152965],[112,40,64,0.036242018607008465],[112,40,65,0.04150729163636038],[112,40,66,0.04674417249915428],[112,40,67,0.051957835032664185],[112,40,68,0.05711972504217132],[112,40,69,0.06218706760689921],[112,40,70,0.06712662041470215],[112,40,71,0.07191376714146577],[112,40,72,0.07653119313736037],[112,40,73,0.08096766234788651],[112,40,74,0.08521689733182693],[112,40,75,0.08927656393534852],[112,40,76,0.0931473618812887],[112,40,77,0.09683222223641895],[112,40,78,0.10033561242755983],[112,40,79,0.1036629491935312],[112,41,64,0.049758600989632557],[112,41,65,0.0552211228478474],[112,41,66,0.06064890835796792],[112,41,67,0.06604977574066405],[112,41,68,0.07139484604136666],[112,41,69,0.07663889796620091],[112,41,70,0.08174669747210556],[112,41,71,0.08669212853824952],[112,41,72,0.09145684419582537],[112,41,73,0.09602901561701152],[112,41,74,0.10040218123414633],[112,41,75,0.10457419756260854],[112,41,76,0.1085462931053855],[112,41,77,0.11232222642508399],[112,41,78,0.11590754918047219],[112,41,79,0.11930897464319315],[112,42,64,0.06320623649281912],[112,42,65,0.06887132640617342],[112,42,66,0.07449490558547701],[112,42,67,0.08008753620579524],[112,42,68,0.0856199709099203],[112,42,69,0.09104438195203132],[112,42,70,0.09632340779716973],[112,42,71,0.1014293247676994],[112,42,72,0.10634267336459238],[112,42,73,0.1110509792088372],[112,42,74,0.11554757068509612],[112,42,75,0.11983049507816194],[112,42,76,0.12390153470258203],[112,42,77,0.12776532423819112],[112,42,78,0.1314285701994248],[112,42,79,0.13489937318777212],[112,43,64,0.07653021850748519],[112,43,65,0.08240345459580198],[112,43,66,0.08822822145275808],[112,43,67,0.0940178912975257],[112,43,68,0.09974279623871314],[112,43,69,0.10535234702144551],[112,43,70,0.1108069107771394],[112,43,71,0.11607702880980544],[112,43,72,0.12099357789196385],[112,43,73,0.12553306018822522],[112,43,74,0.1299637557671432],[112,43,75,0.13428623473675907],[112,43,76,0.1384976720953132],[112,43,77,0.14259276092246326],[112,43,78,0.14656452569037817],[112,43,79,0.15040008902453927],[112,44,64,0.08813047288172819],[112,44,65,0.09435520884516928],[112,44,66,0.10034143490114357],[112,44,67,0.10606542485703402],[112,44,68,0.11155050875051647],[112,44,69,0.11684406788238935],[112,44,70,0.12198275746951942],[112,44,71,0.12699323580769672],[112,44,72,0.13189357700926885],[112,44,73,0.1366945962614221],[112,44,74,0.14140108531086312],[112,44,75,0.1460129561549171],[112,44,76,0.15052629119514252],[112,44,77,0.1549342983855053],[112,44,78,0.1592281701799289],[112,44,79,0.16339784535359597],[112,45,64,0.0973721157462717],[112,45,65,0.10375828068353128],[112,45,66,0.10991584345251261],[112,45,67,0.1158180883439621],[112,45,68,0.12148860452418453],[112,45,69,0.12697741949761068],[112,45,70,0.13232331454130097],[112,45,71,0.13755449779488396],[112,45,72,0.14269003236877567],[112,45,73,0.14774118187549604],[112,45,74,0.15271267099515431],[112,45,75,0.15760385894997914],[112,45,76,0.1624098240291416],[112,45,77,0.16712235757218233],[112,45,78,0.1717308660841698],[112,45,79,0.17622318041834864],[112,46,64,0.10660228686377556],[112,46,65,0.11313864071660175],[112,46,66,0.11945591456278103],[112,46,67,0.1255245733298347],[112,46,68,0.13136856007697714],[112,46,69,0.1370406132890812],[112,46,70,0.14258173104724658],[112,46,71,0.14802178079311673],[112,46,72,0.15338093494494434],[112,46,73,0.15867102956943016],[112,46,74,0.16389684363795318],[112,46,75,0.16905729664697614],[112,46,76,0.17414656263689077],[112,46,77,0.17915509889961667],[112,46,78,0.18407058792003891],[112,46,79,0.18887879135004565],[112,47,64,0.1158112931654925],[112,47,65,0.12248760250923113],[112,47,66,0.1289538460981323],[112,47,67,0.13517793574024195],[112,47,68,0.14118427601385575],[112,47,69,0.14702833424343942],[112,47,70,0.15275337990021282],[112,47,71,0.15839102397068788],[112,47,72,0.16396265284566494],[112,47,73,0.16948079170373],[112,47,74,0.17495039485072966],[112,47,75,0.1803700607127695],[112,47,76,0.18573316942045381],[112,47,77,0.1910289411647178],[112,47,78,0.19624341374698578],[112,47,79,0.2013603379888312],[112,48,64,0.12503746733896903],[112,48,65,0.13184339700621353],[112,48,66,0.138447318949085],[112,48,67,0.14481490518223059],[112,48,68,0.15097110858045218],[112,48,69,0.15697407646195213],[112,48,70,0.16286936139566557],[112,48,71,0.16869038273058487],[112,48,72,0.1744598474644454],[112,48,73,0.18019110779350533],[112,48,74,0.18588945275850685],[112,48,75,0.19155333162045043],[112,48,76,0.1971755068232329],[112,48,77,0.20274413462699425],[112,48,78,0.20824377172359373],[112,48,79,0.21365630637445215],[112,49,64,0.1343225809555223],[112,49,65,0.1412476379888188],[112,49,66,0.14797733904122579],[112,49,67,0.154475464779718],[112,49,68,0.16076757520979687],[112,49,69,0.16691437809489598],[112,49,70,0.1729636734866725],[112,49,71,0.17895072992839556],[112,49,72,0.18489967931726148],[112,49,73,0.1908248562725017],[112,49,74,0.19673207940373866],[112,49,75,0.20261987207280663],[112,49,76,0.20848062044660945],[112,49,77,0.21430166684719834],[112,49,78,0.22006633661566774],[112,49,79,0.2257548969193043],[112,50,64,0.1436958606134381],[112,50,65,0.15072968651345328],[112,50,66,0.15757305714890807],[112,50,67,0.16418824370548551],[112,50,68,0.17060144645377132],[112,50,69,0.1768757469584454],[112,50,70,0.18306110838831893],[112,50,71,0.18919465939708002],[112,50,72,0.19530204897451556],[112,50,73,0.20139875413931074],[112,50,74,0.20749133787670196],[112,50,75,0.21357865490118547],[112,50,76,0.21965300300768756],[112,50,77,0.22570121796287032],[112,50,78,0.23170571007929083],[112,50,79,0.2376454408097409],[112,51,64,0.15317412758907656],[112,51,65,0.16030674492285915],[112,51,66,0.1672518132737095],[112,51,67,0.17397050433175057],[112,51,68,0.18048966821473467],[112,51,69,0.18687451269216454],[112,51,70,0.19317703202126116],[112,51,71,0.19943619243179575],[112,51,72,0.20567923258050957],[112,51,73,0.21192292555390807],[112,51,74,0.21817479986331073],[112,51,75,0.2244343170294012],[112,51,76,0.23069400351375668],[112,51,77,0.23694053492085407],[112,51,78,0.24315577056375512],[112,51,79,0.24931773666099005],[112,52,64,0.16276209022723162],[112,52,65,0.16998410462167682],[112,52,66,0.17701933504025943],[112,52,67,0.18382828351210198],[112,52,68,0.1904384381166938],[112,52,69,0.19691683257228013],[112,52,70,0.20331731582242094],[112,52,71,0.20968063431356387],[112,52,72,0.21603566388086426],[112,52,73,0.2224006121111952],[112,52,74,0.22878418870065384],[112,52,75,0.2351867414523061],[112,52,76,0.24160135569568972],[112,52,77,0.24801491505179843],[112,52,78,0.254409121613943],[112,52,79,0.2607614737671419],[112,53,64,0.1724527930027713],[112,53,65,0.17975555165355567],[112,53,66,0.1868700942311666],[112,53,67,0.1937566921963146],[112,53,68,0.20044344029255157],[112,53,69,0.20699885531576448],[112,53,70,0.21347842528972222],[112,53,71,0.21992458523572755],[112,53,72,0.2263678670777316],[112,53,73,0.23282802902167052],[112,53,74,0.23931516203235953],[112,53,75,0.24583077113380547],[112,53,76,0.25236882936905236],[112,53,77,0.2589168023728316],[112,53,78,0.2654566416326281],[112,53,79,0.2719657446425136],[112,54,64,0.1822282260985818],[112,54,65,0.18960393403751746],[112,54,66,0.19678782551183624],[112,54,67,0.20374037751823834],[112,54,68,0.21049024281336048],[112,54,69,0.21710704717141557],[112,54,70,0.22364766960153865],[112,54,71,0.23015610998413846],[112,54,72,0.23666454483319693],[112,54,73,0.2431943714434918],[112,54,74,0.24975723818328624],[112,54,75,0.2563560587691179],[112,54,76,0.2629860084433681],[112,54,77,0.26963550006664067],[112,54,78,0.2762871382340357],[112,54,79,0.2829186496285891],[112,55,64,0.19206009922974226],[112,55,65,0.19950189471311744],[112,55,66,0.20674621129589982],[112,55,67,0.2137541514061218],[112,55,68,0.2205548619050716],[112,55,69,0.22721868452520547],[112,55,70,0.23380361659517057],[112,55,71,0.2403550706790733],[112,55,72,0.24690682571235179],[112,55,73,0.25348197519560905],[112,55,74,0.2600938703728166],[112,55,75,0.26674705636987295],[112,55,76,0.27343819932713315],[112,55,77,0.2801570026247061],[112,55,78,0.2868871103706153],[112,55,79,0.29360699640090504],[112,56,64,0.20191078329970802],[112,56,65,0.20941277380608736],[112,56,66,0.2167097365717272],[112,56,67,0.22376378964323823],[112,56,68,0.2306044969867402],[112,56,69,0.2373025171468609],[112,56,70,0.24391667730079047],[112,56,71,0.2504936268125194],[112,56,72,0.2570686752975555],[112,56,73,0.2636666360367156],[112,56,74,0.2703026728564253],[112,56,75,0.27698314861638607],[112,56,76,0.2837064734769365],[112,56,77,0.2904639511575528],[112,56,78,0.2972406214434437],[112,56,79,0.3040160972507873],[112,57,64,0.21173442330228784],[112,57,65,0.21929168375973707],[112,57,66,0.22663471735110946],[112,57,67,0.2337270051555456],[112,57,68,0.24059844042246042],[112,57,69,0.2473196060737716],[112,57,70,0.253949864108638],[112,57,71,0.26053690670933427],[112,57,72,0.26711747511494915],[112,57,73,0.2737180916199201],[112,57,74,0.28035580302664304],[112,57,75,0.2870389338795102],[112,57,76,0.2937678478137184],[112,57,77,0.3005357153658347],[112,57,78,0.30732928661323045],[112,57,79,0.31412966703798784],[112,58,64,0.22147822568355952],[112,58,65,0.22908676068255318],[112,58,66,0.23647050621276788],[112,58,67,0.24359459912229167],[112,58,68,0.25048916570735885],[112,58,69,0.2572243399667037],[112,58,70,0.26385972649752504],[112,58,71,0.270443854404509],[112,58,72,0.2770147733929007],[112,58,73,0.28360067012779167],[112,58,74,0.29022050341639655],[112,58,75,0.29688465674414],[112,58,76,0.3035956066770432],[112,58,77,0.31034860563206523],[112,58,78,0.31713237751268747],[112,58,79,0.3239298247111309],[112,59,64,0.23108392315014817],[112,59,65,0.23874059503870051],[112,59,66,0.2461608781953178],[112,59,67,0.25331179329440234],[112,59,68,0.26022359760510044],[112,59,69,0.26696563357869685],[112,59,70,0.2735974680711057],[112,59,71,0.28016825576043664],[112,59,72,0.2867172115187204],[112,59,73,0.2932741094556537],[112,59,74,0.29985980742882296],[112,59,75,0.30648679576649346],[112,59,76,0.3131597689079497],[112,59,77,0.3198762186324935],[112,59,78,0.32662704752065674],[112,59,79,0.33339720127205436],[112,60,64,0.2404894192237013],[112,60,65,0.24819184412043957],[112,60,66,0.2556455996074132],[112,60,67,0.26281974622068976],[112,60,68,0.26974456707298367],[112,60,69,0.2764883113022626],[112,60,70,0.28311024797919027],[112,60,71,0.2896599469880551],[112,60,72,0.29617762941115294],[112,60,73,0.3026945501752941],[112,60,74,0.30923341199682836],[112,60,75,0.3158088095928073],[112,60,76,0.32242770306393265],[112,60,77,0.32908991929983983],[112,60,78,0.33578868020822705],[112,60,79,0.3425111565285422],[112,61,64,0.24963060275065668],[112,61,65,0.2573770165368774],[112,61,66,0.26486217000764073],[112,61,67,0.2720572436587988],[112,61,68,0.2789924412823046],[112,61,69,0.2857346661295266],[112,61,70,0.2923426570723855],[112,61,71,0.2988661959119972],[112,61,72,0.30534634011154493],[112,61,73,0.31181569250962476],[112,61,74,0.318298707290681],[112,61,75,0.32481203140224935],[112,61,76,0.33136488052811847],[112,61,77,0.33795944865233474],[112,61,78,0.34459135018048226],[112,61,79,0.3512500935241339],[112,62,64,0.2584433590545452],[112,62,65,0.26623245578798055],[112,62,66,0.2737477647955356],[112,62,67,0.2809625909878927],[112,62,68,0.28790695692984586],[112,62,69,0.29464622259346623],[112,62,70,0.3012383977146674],[112,62,71,0.3077332852366146],[112,62,72,0.3141726031512758],[112,62,73,0.3205901471388599],[112,62,74,0.3270119935144501],[112,62,75,0.33345674188862273],[112,62,76,0.33993579685206343],[112,62,77,0.3464536879033072],[112,62,78,0.3530084267531012],[112,62,79,0.35959190106082484],[112,63,64,0.26557487642248623],[112,63,65,0.27469653039404635],[112,63,66,0.28224138608681487],[112,63,67,0.2894757155057939],[112,63,68,0.29642926493968763],[112,63,69,0.3031657120036744],[112,63,70,0.30974217577058105],[112,63,71,0.3162083065138519],[112,63,72,0.32260630555461295],[112,63,73,0.3289709888233144],[112,63,74,0.33532989386503814],[112,63,75,0.3417034299020628],[112,63,76,0.3481050704569403],[112,63,77,0.35454158793432183],[112,63,78,0.3610133294595082],[112,63,79,0.36751453317854305],[112,64,64,0.2708740836109211],[112,64,65,0.28074899570147943],[112,64,66,0.29028619057203986],[112,64,67,0.2975404471542537],[112,64,68,0.30450415495606636],[112,64,69,0.3112392282387976],[112,64,70,0.3178017728869657],[112,64,71,0.32424113277947325],[112,64,72,0.3305998182721669],[112,64,73,0.3369134804428065],[112,64,74,0.3432109310297355],[112,64,75,0.3495142078697749],[112,64,76,0.3558386855196057],[112,64,77,0.3621932306284094],[112,64,78,0.3685804015172438],[112,64,79,0.37499669131492436],[112,65,64,0.2759965088634202],[112,65,65,0.28595745617969714],[112,65,66,0.2959878302568102],[112,65,67,0.3051069937495135],[112,65,68,0.31208247599807193],[112,65,69,0.31881858076064623],[112,65,70,0.32537031602139527],[112,65,71,0.33178658708278685],[112,65,72,0.33811004552213497],[112,65,73,0.34437698515497556],[112,65,74,0.3506172851176225],[112,65,75,0.3568544000477709],[112,65,76,0.3631053972124666],[112,65,77,0.36938104030738567],[112,65,78,0.37568591952962715],[112,65,79,0.38201862741054005],[112,66,64,0.28096828497474013],[112,66,65,0.29100107103430417],[112,66,66,0.3011141119600616],[112,66,67,0.31131571968673627],[112,66,68,0.3191237555798707],[112,66,69,0.3258638473324786],[112,66,70,0.3324087468760857],[112,66,71,0.3388068097356386],[112,66,72,0.34510067001656575],[112,66,73,0.35132706977986444],[112,66,74,0.35751673623577956],[112,66,75,0.3636943068872845],[112,66,76,0.3698783026191629],[112,66,77,0.3760811485966693],[112,66,78,0.38230924270903555],[112,66,79,0.38856307116984806],[112,67,64,0.28580377152919795],[112,67,65,0.2958947782399565],[112,67,66,0.30607534040831685],[112,67,67,0.3163523031869844],[112,67,68,0.3255990181739163],[112,67,69,0.3323461274913741],[112,67,70,0.3388884924600792],[112,67,71,0.3452738256707018],[112,67,72,0.3515445956182902],[112,67,73,0.35773780109480874],[112,67,74,0.36388479351042563],[112,67,75,0.37001114740526725],[112,67,76,0.37613657927418476],[112,67,77,0.382274914690976],[112,67,78,0.38843410358497865],[112,67,79,0.394616283394365],[112,68,64,0.29050243688937694],[112,68,65,0.3006389217807617],[112,68,66,0.31087267814967007],[112,68,67,0.3212092014505396],[112,68,68,0.33149380345204527],[112,68,69,0.33825049738335533],[112,68,70,0.3447943375655241],[112,68,71,0.35117231286998596],[112,68,72,0.3574265885569734],[112,68,73,0.36359423632270954],[112,68,74,0.3697070119727292],[112,68,75,0.37579118109283993],[112,68,76,0.38186739294794936],[112,68,77,0.3879506027002978],[112,68,78,0.39405004190204695],[112,68,79,0.40016923708501817],[112,69,64,0.29504554944677697],[112,69,65,0.3052159497068068],[112,69,66,0.31548981295399986],[112,69,67,0.32587128999033627],[112,69,68,0.33632170395642796],[112,69,69,0.3435791685199319],[112,69,70,0.3501275023231737],[112,69,71,0.3565025755868025],[112,69,72,0.36274612141929197],[112,69,73,0.36889511243744305],[112,69,74,0.37498150224406024],[112,69,75,0.3810320144974871],[112,69,76,0.3870679798946971],[112,69,77,0.3931052212494281],[112,69,78,0.3991539867083601],[112,69,79,0.4052189310138219],[112,70,64,0.2993947020634359],[112,70,65,0.30958773458339556],[112,70,66,0.3198890190688731],[112,70,67,0.330301243525901],[112,70,68,0.34078608490685053],[112,70,69,0.3483591575874251],[112,70,70,0.35491439446031825],[112,70,71,0.3612902398233848],[112,70,72,0.3675278382797193],[112,70,73,0.37366387706332954],[112,70,74,0.37973029804577474],[112,70,75,0.3857540567938574],[112,70,76,0.3917569290786351],[112,70,77,0.3977553650951383],[112,70,78,0.403760391512631],[112,70,79,0.4097775613393024],[112,71,64,0.3035077322117843],[112,71,65,0.3137090676455344],[112,71,66,0.3240220261497892],[112,71,67,0.33444771594562495],[112,71,68,0.3449482335339987],[112,71,69,0.3526394507799995],[112,71,70,0.35920633022157034],[112,71,71,0.36558839824441214],[112,71,72,0.37182593805948677],[112,71,73,0.3779550715932205],[112,71,74,0.3840074499901726],[112,71,75,0.39000999004862885],[112,71,76,0.3959846570532484],[112,71,77,0.4019482943292296],[112,71,78,0.4079124997037747],[112,71,79,0.4138835489251468],[112,72,64,0.30735293727734575],[112,72,65,0.3175452346879828],[112,72,66,0.32785107996277574],[112,72,67,0.33826992090498376],[112,72,68,0.34876442744035535],[112,72,69,0.35645979277886924],[112,72,70,0.3630454615711417],[112,72,71,0.36944115191801097],[112,72,72,0.37568591557356557],[112,72,73,0.38181494815243916],[112,72,74,0.38785926798931303],[112,72,75,0.39384543878747846],[112,72,76,0.3997953365659219],[112,72,77,0.4057259612789961],[112,72,78,0.41164929334792566],[112,72,79,0.4175721952113437],[112,73,64,0.3109073008058597],[112,73,65,0.3210709948552395],[112,73,66,0.3313487185191682],[112,73,67,0.34173822108507557],[112,73,68,0.3522029535681159],[112,73,69,0.35984852759628855],[112,73,70,0.3664618758807192],[112,73,71,0.3728800313866121],[112,73,72,0.37914038593455274],[112,73,73,0.3852767974141351],[112,73,74,0.39131926864271727],[112,73,75,0.3972936665036251],[112,73,76,0.40322148189574103],[112,73,77,0.40911963089918885],[112,73,78,0.4150002974347558],[112,73,79,0.4208708175698429],[112,74,64,0.3141534478678736],[112,74,65,0.3242674889978096],[112,74,66,0.33449463888123054],[112,74,67,0.3448309572891379],[112,74,68,0.355240908989875],[112,74,69,0.3628258268528811],[112,74,70,0.36947680622844126],[112,74,71,0.3759271557881047],[112,74,72,0.3822121549575511],[112,74,73,0.38836389007261884],[112,74,74,0.39441094644188324],[112,74,75,0.4003781355733704],[112,74,76,0.4062862580924728],[112,74,77,0.41215190276365227],[112,74,78,0.41798728191365603],[112,74,79,0.4238001034406882],[112,75,64,0.3170767091215168],[112,75,65,0.32711925445886864],[112,75,66,0.3372726673463266],[112,75,67,0.3475313772140907],[112,75,68,0.3578610967222716],[112,75,69,0.36540682777183936],[112,75,70,0.37210575937715534],[112,75,71,0.3785983197139621],[112,75,72,0.3849172295781349],[112,75,73,0.391092372839183],[112,75,74,0.3971505161599938],[112,75,75,0.40311505701121114],[112,75,76,0.4090058004708808],[112,75,77,0.4148387652031999],[112,75,78,0.42062601891242984],[112,75,79,0.42637554347105855],[112,76,64,0.319662299018878],[112,76,65,0.32961135179587764],[112,76,66,0.33966783855111055],[112,76,67,0.3498246694563994],[112,76,68,0.36004902210859224],[112,76,69,0.3676046754094952],[112,76,70,0.374361556086382],[112,76,71,0.3809060026763892],[112,76,72,0.38726776346510644],[112,76,73,0.3934741145493979],[112,76,74,0.3995496225227239],[112,76,75,0.40551592676567644],[112,76,76,0.41139154176069165],[112,76,77,0.4171916797759166],[112,76,78,0.42292809418754984],[112,76,79,0.4286089436342385],[112,77,64,0.32189261363975097],[112,77,65,0.33172660899441747],[112,77,66,0.3416635891054209],[112,77,67,0.35169510839630597],[112,77,68,0.361789995418623],[112,77,69,0.36943346352098144],[112,77,70,0.3762572782724252],[112,77,71,0.382862295896962],[112,77,72,0.38927493283062836],[112,77,73,0.39551949777275125],[112,77,74,0.40161801304003764],[112,77,75,0.4075900450247246],[112,77,76,0.41345254406600584],[112,77,77,0.419219693997892],[112,77,78,0.42490277158812756],[112,77,79,0.4305100160332088],[112,78,64,0.32374465364348765],[112,78,65,0.3334429887525781],[112,78,66,0.3432390714020252],[112,78,67,0.35312331565747535],[112,78,68,0.36306634638479063],[112,78,69,0.37091106836988563],[112,78,70,0.37780911742105305],[112,78,71,0.38448174099808546],[112,78,72,0.3909517372874989],[112,78,73,0.39724015114089745],[112,78,74,0.4033661696828348],[112,78,75,0.4093470147829896],[112,78,76,0.41519783255232795],[112,78,77,0.42093158000963343],[112,78,78,0.42655890904823884],[112,78,79,0.4320880478140437],[112,79,64,0.3252077000812904],[112,79,65,0.3347509334850774],[112,79,66,0.34438593885804886],[112,79,67,0.35410223512491473],[112,79,68,0.36387233440870914],[112,79,69,0.37204556317843185],[112,79,70,0.3790243247309462],[112,79,71,0.38577101653516754],[112,79,72,0.39230459216367963],[112,79,73,0.3986425810733149],[112,79,74,0.40480107466186377],[112,79,75,0.41079469529625684],[112,79,76,0.4166365482794248],[112,79,77,0.4223381567472609],[112,79,78,0.427909379507147],[112,79,79,0.43335831184621243],[112,80,64,0.3263379870063023],[112,80,65,0.33570727023419467],[112,80,66,0.34516087395967776],[112,80,67,0.35468761950644],[112,80,68,0.3642619109924131],[112,80,69,0.3727909095669245],[112,80,70,0.37986092619947515],[112,80,71,0.38669324770849134],[112,80,72,0.39330272728680693],[112,80,73,0.39970306378127296],[112,80,74,0.40590689908947597],[112,80,75,0.4119258829573096],[112,80,76,0.41777070489798335],[112,80,77,0.4234510930198142],[112,80,78,0.4289757796118609],[112,80,79,0.4343524333936067],[112,81,64,0.3271915592183628],[112,81,65,0.33636900950276116],[112,81,66,0.34562115489907824],[112,81,67,0.3549362643820356],[112,81,68,0.36429055257670084],[112,81,69,0.3731006102001425],[112,81,70,0.38027596554591797],[112,81,71,0.3872100257316129],[112,81,72,0.393913265599171],[112,81,73,0.40039518324093176],[112,81,74,0.4066645337817815],[112,81,75,0.4127295133320541],[112,81,76,0.41859789252084095],[112,81,77,0.42427709913399553],[112,81,78,0.42977424948979137],[112,81,79,0.43509612828815625],[112,82,64,0.3278054297363409],[112,82,65,0.33677469977101],[112,82,66,0.3458064285248077],[112,82,67,0.3548884401612694],[112,82,68,0.3639986024288373],[112,82,69,0.3729431615968328],[112,82,70,0.3802395492050937],[112,82,71,0.38729381728549406],[112,82,72,0.39411179344689806],[112,82,73,0.4006983888146778],[112,82,74,0.4070579956039375],[112,82,75,0.4131948160716376],[112,82,76,0.4191131218757633],[112,82,77,0.42481744303731744],[112,82,78,0.43031268586190274],[112,82,79,0.4356041793317095],[112,83,64,0.3282001699774528],[112,83,65,0.3369469119223531],[112,83,66,0.34574105623550555],[112,83,67,0.35457006340136304],[112,83,68,0.3634132324391664],[112,83,69,0.37225019157126177],[112,83,70,0.3797333950284293],[112,83,71,0.38692679818564263],[112,83,72,0.3938814926343805],[112,83,73,0.4005974327200778],[112,83,74,0.40707417095050946],[112,83,75,0.4133113586954231],[112,83,76,0.4193091566498007],[112,83,77,0.425068553859522],[112,83,78,0.4305915943264357],[112,83,79,0.4358815104200619],[112,84,64,0.3283824173491956],[112,84,65,0.33689464449176343],[112,84,66,0.34543638518841696],[112,84,67,0.35399479937748146],[112,84,68,0.3625503432586741],[112,84,69,0.3710856020337555],[112,84,70,0.37874942876548057],[112,84,71,0.3860997280851731],[112,84,72,0.39321230783805217],[112,84,73,0.4000818385836187],[112,84,74,0.40670258769139644],[112,84,75,0.41306911805293356],[112,84,76,0.4191768746649756],[112,84,77,0.4250226574170453],[112,84,78,0.4306049786965436],[112,84,79,0.4359243046954207],[112,85,64,0.3275311858601207],[112,85,65,0.3363815900766991],[112,85,66,0.34489293875505916],[112,85,67,0.3531660900532446],[112,85,68,0.36141639721255364],[112,85,69,0.3695421325020334],[112,85,70,0.37728843066479417],[112,85,71,0.3848108680847257],[112,85,72,0.3921001507567954],[112,85,73,0.39914540195099607],[112,85,74,0.4059352159516612],[112,85,75,0.41245857934564073],[112,85,76,0.41870565730789777],[112,85,77,0.42466844268648346],[112,85,78,0.4303412660340612],[112,85,79,0.43572116506858566],[112,86,64,0.3248901787823081],[112,86,65,0.3338030990047193],[112,86,66,0.342510500977493],[112,86,67,0.35101563953621484],[112,86,68,0.35932574659277566],[112,86,69,0.3674420250079],[112,86,70,0.37535873532392416],[112,86,71,0.3830649438515754],[112,86,72,0.39054614304245483],[112,86,73,0.3977857242217421],[112,86,74,0.4047662986153053],[112,86,75,0.41147086303339675],[112,86,76,0.4178838069994871],[112,86,77,0.4239917585345212],[112,86,78,0.42978426622020033],[112,86,79,0.43525431556777144],[112,87,64,0.32181192576866113],[112,87,65,0.33077913066889275],[112,87,66,0.3395656440881609],[112,87,67,0.34817504051105885],[112,87,68,0.3566145386195668],[112,87,69,0.36488406958606817],[112,87,70,0.3729749876750736],[112,87,71,0.3806287873990187],[112,87,72,0.3879017552640813],[112,87,73,0.3951057937415943],[112,87,74,0.4022502535654348],[112,87,75,0.40934397558433233],[112,87,76,0.41639413083363064],[112,87,77,0.42297634002261203],[112,87,78,0.4289141649609431],[112,87,79,0.4345008420487782],[112,88,64,0.31833750541880146],[112,88,65,0.32734838445642517],[112,88,66,0.3362048272908015],[112,88,67,0.34491070516869016],[112,88,68,0.35347358741808627],[112,88,69,0.3618927149610823],[112,88,70,0.37015695776473795],[112,88,71,0.37750345504424365],[112,88,72,0.384358722447923],[112,88,73,0.39113681416919205],[112,88,74,0.3978534834658748],[112,88,75,0.40452417505746785],[112,88,76,0.4111626129837904],[112,88,77,0.4177795953619548],[112,88,78,0.42438199960985384],[112,88,79,0.4309720011619851],[112,89,64,0.3145122509776381],[112,89,65,0.3235539355665301],[112,89,66,0.3324683333086731],[112,89,67,0.34125959499974884],[112,89,68,0.3499359934284289],[112,89,69,0.3584966553498222],[112,89,70,0.36692841677316035],[112,89,71,0.37405591567384516],[112,89,72,0.3804826016821556],[112,89,73,0.38682097825450834],[112,89,74,0.3930932205613506],[112,89,75,0.3993214892180239],[112,89,76,0.4055262564025961],[112,89,77,0.41172486316171897],[112,89,78,0.41793031212308],[112,89,79,0.4241502992206247],[112,90,64,0.3103838415878842],[112,90,65,0.3194414058813959],[112,90,66,0.32839915997284475],[112,90,67,0.33726152344426813],[112,90,68,0.34603780340418033],[112,90,69,0.3547275653959514],[112,90,70,0.3633160765205731],[112,90,71,0.37028676329064714],[112,90,72,0.37628049848564443],[112,90,73,0.3821722775531788],[112,90,74,0.3879906066837525],[112,90,75,0.39376435390305653],[112,90,76,0.3995208086989724],[112,90,77,0.40528399649110114],[112,90,78,0.41107325283390284],[112,90,79,0.4169020615634785],[112,91,64,0.3060005052585214],[112,91,65,0.31505724251390316],[112,91,66,0.3240413967616698],[112,91,67,0.3329576529186633],[112,91,68,0.34181665167827696],[112,91,69,0.35061891081183105],[112,91,70,0.35934859452114876],[112,91,71,0.36619615945831624],[112,91,72,0.3717590850373638],[112,91,73,0.3772043428661365],[112,91,74,0.382566571917907],[112,91,75,0.38788121913060175],[112,91,76,0.3931823327134454],[112,91,77,0.3985006329913204],[112,91,78,0.40386186636110116],[112,91,79,0.40928544718690596],[112,92,64,0.30140933641121626],[112,92,65,0.310447106847216],[112,92,66,0.31943870621715675],[112,92,67,0.32838908914167353],[112,92,68,0.3373104894786227],[112,92,69,0.3462048368920782],[112,92,70,0.35505564647220766],[112,92,71,0.3617845474638898],[112,92,72,0.36692508418729],[112,92,73,0.3719306790377488],[112,92,74,0.3768418048081005],[112,92,75,0.3817002435783312],[112,92,76,0.3865466187538039],[112,92,77,0.39141822608228094],[112,92,78,0.39634716990610536],[112,92,79,0.40135881009574637],[112,93,64,0.29665473059199127],[112,93,65,0.3056543766163745],[112,93,66,0.3146329127123525],[112,93,67,0.3235955751125085],[112,93,68,0.33255640447953844],[112,93,69,0.3415191368740905],[112,93,70,0.35046706790400584],[112,93,71,0.35705330630696147],[112,93,72,0.361785702862836],[112,93,73,0.3663648574727035],[112,93,74,0.3708366870029372],[112,93,75,0.37524895833376193],[112,93,76,0.37964856883933457],[112,93,77,0.38407914577830027],[112,93,78,0.38857897152072496],[112,93,79,0.3931792406685811],[112,94,64,0.2917769386794646],[112,94,65,0.3007187633348697],[112,94,66,0.3096627008089252],[112,94,67,0.31861428687553767],[112,94,68,0.32758953257588075],[112,94,69,0.3365943019442129],[112,94,70,0.3456120665635823],[112,94,71,0.35200534319898497],[112,94,72,0.3563490138376546],[112,94,73,0.3605206656409939],[112,94,74,0.36457119192204124],[112,94,75,0.3685538998173743],[112,94,76,0.37252155316838137],[112,94,77,0.37652375252936476],[112,94,78,0.380604659874558],[112,94,79,0.38480107465388746],[112,95,64,0.28681074268298473],[112,95,65,0.2956750471393511],[112,95,66,0.30456242522552346],[112,95,67,0.31347873300208323],[112,95,68,0.3224420636811232],[112,95,69,0.3314606545237147],[112,95,70,0.3405185069647532],[112,95,71,0.3466456233735835],[112,95,72,0.35062428492194836],[112,95,73,0.35441221290766417],[112,95,74,0.3580647470711916],[112,95,75,0.3616402118002813],[112,95,76,0.3651967390235384],[112,95,77,0.3687894445849286],[112,95,78,0.37246796628454476],[112,95,79,0.3762743708007486],[112,96,64,0.28178425500252635],[112,96,65,0.29055193091152237],[112,96,66,0.2993610342337139],[112,96,67,0.3082177595297432],[112,96,68,0.31714234317741863],[112,96,69,0.32614556631495994],[112,96,70,0.33521226840407015],[112,96,71,0.34098163611828597],[112,96,72,0.3446222547194931],[112,96,73,0.3480539920865856],[112,96,74,0.35133605967235026],[112,96,75,0.35453121645654245],[112,96,76,0.3577023923276973],[112,96,77,0.360909679359102],[112,96,78,0.36420769973667366],[112,96,79,0.36764335808427945],[112,97,64,0.2767178428159861],[112,97,65,0.28537101533674286],[112,97,66,0.2940811081081476],[112,97,67,0.3028546619220548],[112,97,68,0.3117140704835878],[112,97,69,0.32067276244414944],[112,97,70,0.3297166776185231],[112,97,71,0.33502379604000093],[112,97,72,0.3383553541764677],[112,97,73,0.34146089617543524],[112,97,74,0.34440290531155165],[112,97,75,0.3472479544065544],[112,97,76,0.3500631520621171],[112,97,77,0.3529129692578439],[112,97,78,0.3558564555981745],[112,97,79,0.3589448534438077],[112,98,64,0.2716231790687145],[112,98,65,0.2801458963741037],[112,98,66,0.28873801408147876],[112,98,67,0.2974064054467182],[112,98,68,0.30617559605677724],[112,98,69,0.31506171290355955],[112,98,70,0.3240520171459555],[112,98,71,0.3287857786727571],[112,98,72,0.33183787322290115],[112,98,73,0.3346481897841641],[112,98,74,0.33728187934268516],[112,98,75,0.3398086937240546],[112,98,76,0.342299277756453],[112,98,77,0.344821852412354],[112,98,78,0.3474392986894117],[112,98,79,0.3502066509129245],[112,99,64,0.26650242136222035],[112,99,65,0.2748813864402329],[112,99,66,0.2833391790897989],[112,99,67,0.2918829552163389],[112,99,68,0.3005393180024278],[112,99,69,0.30932711237056254],[112,99,70,0.31823511034073804],[112,99,71,0.32228478962485574],[112,99,72,0.3250860718768833],[112,99,73,0.32763143481920964],[112,99,74,0.3299881108162266],[112,99,75,0.3322284078923553],[112,99,76,0.3344258702573272],[112,99,77,0.3366518387450193],[112,99,78,0.3389724213547644],[112,99,79,0.34144588298121176],[112,100,64,0.2613475198748256],[112,100,65,0.26957286044975387],[112,100,66,0.2778834814420839],[112,100,67,0.28628671699299674],[112,100,68,0.2948111793366824],[112,100,69,0.3034784493644851],[112,100,70,0.31227898389707376],[112,100,71,0.31554176654629407],[112,100,72,0.3181182352474449],[112,100,73,0.3204263700332857],[112,100,74,0.3225349387317579],[112,100,75,0.3245182227082873],[112,100,76,0.326452065979352],[112,100,77,0.32841033177790563],[112,100,78,0.33046177714394537],[112,100,79,0.3326673549907053],[112,101,64,0.25614022352210125],[112,101,65,0.26420590278660416],[112,101,66,0.27236053410988914],[112,101,67,0.28061145337207577],[112,101,68,0.2889892147008622],[112,101,69,0.2975181850418495],[112,101,70,0.3058717375872946],[112,101,71,0.3085838849258158],[112,101,72,0.3109574953430595],[112,101,73,0.31305201196442045],[112,101,74,0.3149372450363219],[112,101,75,0.31668892472534615],[112,101,76,0.3183846557553194],[112,101,77,0.32010028594995077],[112,101,78,0.32190669960203316],[112,101,79,0.32386704545123585],[112,102,64,0.2508614889332544],[112,102,65,0.2587612415173627],[112,102,66,0.26675101527610884],[112,102,67,0.2748379495863391],[112,102,68,0.28305445333388657],[112,102,69,0.2914277313223994],[112,102,70,0.2989283490624796],[112,102,71,0.30146888063997607],[112,102,72,0.3036614354185733],[112,102,73,0.30556549780401937],[112,102,74,0.3072513766743713],[112,102,75,0.30879567934151203],[112,102,76,0.3102771918635642],[112,102,77,0.31177317808618926],[112,102,78,0.3133561086334937],[112,102,79,0.3150908299191131],[112,103,64,0.24549997873399146],[112,103,65,0.253224859145073],[112,103,66,0.26103838296551296],[112,103,67,0.26894732630933305],[112,103,68,0.276985818988901],[112,103,69,0.28518390103475905],[112,103,70,0.29187413438262994],[112,103,71,0.29426575626534807],[112,103,72,0.29630162596678755],[112,103,73,0.2980406853070596],[112,103,74,0.29955309734208846],[112,103,75,0.3009156714522925],[112,103,76,0.3022076967468743],[112,103,77,0.3035071963931366],[112,103,78,0.30488761431981304],[112,103,79,0.30641494458962687],[112,104,64,0.2400511975727295],[112,104,65,0.2475903525551302],[112,104,66,0.25521452483742524],[112,104,67,0.2629300045849548],[112,104,68,0.2707724567931335],[112,104,69,0.2787746750213137],[112,104,70,0.2847646352211857],[112,104,71,0.2870319380535429],[112,104,72,0.28893726973115713],[112,104,73,0.2905383957169978],[112,104,74,0.2919046263744364],[112,104,75,0.2931122297228225],[112,104,76,0.29424025118369357],[112,104,77,0.295366753057788],[112,104,78,0.29656548531885285],[112,104,79,0.2979029981621873],[112,105,64,0.23451827678582648],[112,105,65,0.24185970210344718],[112,105,66,0.24928050721691425],[112,105,67,0.2567864255859263],[112,105,68,0.2644144174966717],[112,105,69,0.2721998523006919],[112,105,70,0.27764404403288184],[112,105,71,0.2798126416306105],[112,105,72,0.2816145633878227],[112,105,73,0.28310575166939794],[112,105,74,0.2843539312877038],[112,105,75,0.28543405128776544],[112,105,76,0.2864241285967739],[112,105,77,0.2874015062911595],[112,105,78,0.28843953809723955],[112,105,79,0.28960470960972917],[112,106,64,0.22891327438286602],[112,106,65,0.23604448924507276],[112,106,66,0.24324770174622354],[112,106,67,0.2505280736759553],[112,106,68,0.2579235663456514],[112,106,69,0.2654718404136892],[112,106,70,0.2705445058567663],[112,106,71,0.2726402829575512],[112,106,72,0.2743662052553122],[112,106,73,0.27577576473721255],[112,106,74,0.27693437439580915],[112,106,75,0.277914883529025],[112,106,76,0.2787934856826593],[112,106,77,0.2796460318719285],[112,106,78,0.2805447606096144],[112,106,79,0.28155545516430314],[112,107,64,0.2232589325686866],[112,107,65,0.23016756906255276],[112,107,66,0.2371393616606788],[112,107,67,0.2441789411161508],[112,107,68,0.25132492236968085],[112,107,69,0.25861686093274633],[112,107,70,0.2634850233610911],[112,107,71,0.26553351715771545],[112,107,72,0.2672105604100402],[112,107,73,0.2685666147172414],[112,107,74,0.2696640900103052],[112,107,75,0.2705729793476021],[112,107,76,0.27136687294708633],[112,107,77,0.2721193638378602],[112,107,78,0.272900856444736],[112,107,79,0.27377578835440963],[112,108,64,0.2175908945805927],[112,108,65,0.22426519961629285],[112,108,66,0.2309926497486102],[112,108,67,0.2377774366066117],[112,108,68,0.24465843039412172],[112,108,69,0.2516765725428377],[112,108,70,0.25646996265753075],[112,108,71,0.25849590271713274],[112,108,72,0.26015048074376],[112,108,73,0.2614806182830442],[112,108,74,0.2625450900033319],[112,108,75,0.2634103239318584],[112,108,76,0.2641465634429051],[112,108,77,0.2648244029876357],[112,108,78,0.2655117085371181],[112,108,79,0.26627093269520724],[112,109,64,0.21196033863635586],[112,109,65,0.21838958540729175],[112,109,66,0.2248610747827188],[112,109,67,0.2313786939517107],[112,109,68,0.23798112156685572],[112,109,69,0.24471006697592623],[112,109,70,0.24948711026412457],[112,109,71,0.25151414083266216],[112,109,72,0.2531717291937979],[112,109,73,0.25450283575981814],[112,109,74,0.2555620460895048],[112,109,75,0.256411581059889],[112,109,76,0.2571176475149854],[112,109,77,0.2577471408513676],[112,109,78,0.2583647100435143],[112,109,79,0.2590301946575103],[112,110,64,0.20642771074301763],[112,110,65,0.21260237972082244],[112,110,66,0.21880774573184256],[112,110,67,0.22504755645258026],[112,110,68,0.23135980628877997],[112,110,69,0.23778625220647048],[112,110,70,0.24249516475784402],[112,110,71,0.24454564912039142],[112,110,72,0.24623064610891116],[112,110,73,0.2475888360924291],[112,110,74,0.24867015464472872],[112,110,75,0.24953205442016335],[112,110,76,0.25023608290181815],[112,110,77,0.25084478682250233],[112,110,78,0.25141895317245044],[112,110,79,0.25201519582283827],[112,111,64,0.2010470123656781],[112,111,65,0.2069587567144054],[112,111,66,0.2128890596629573],[112,111,67,0.21884169913577992],[112,111,68,0.22485344920983658],[112,111,69,0.2309653095112602],[112,111,70,0.23541852915436998],[112,111,71,0.23751423168090946],[112,111,72,0.23925080331093124],[112,111,73,0.24066240970724223],[112,111,74,0.24179394966127002],[112,111,75,0.24269760759508865],[112,111,76,0.24342969454635924],[112,111,77,0.24404778765673205],[112,111,78,0.24460817737562876],[112,111,79,0.24516363078389125],[112,112,64,0.19584818642287868],[112,112,65,0.20149024116922565],[112,112,66,0.20713761042904116],[112,112,67,0.21279423412377668],[112,112,68,0.21849509737924788],[112,112,69,0.22427960049436482],[112,112,70,0.22820825655586569],[112,112,71,0.23037306197042995],[112,112,72,0.23218818238412164],[112,112,73,0.23368302548007142],[112,112,74,0.23489704388599067],[112,112,75,0.23587661701508433],[112,112,76,0.23667219157800704],[112,112,77,0.23733568988862036],[112,112,78,0.23791819436251135],[112,112,79,0.23846791588407434],[112,113,64,0.190838505381739],[112,113,65,0.19620607750370508],[112,113,66,0.2015641521251863],[112,113,67,0.2069169292302984],[112,113,68,0.2122970276652378],[112,113,69,0.21774140056216384],[112,113,70,0.22083733012320178],[112,113,71,0.22309628665395875],[112,113,72,0.22501863173695133],[112,113,73,0.2266287658571352],[112,113,74,0.2279602724486812],[112,113,75,0.22905316666088535],[112,113,76,0.22995137092777257],[112,113,77,0.23070042545357594],[112,113,78,0.23134544109323665],[112,113,79,0.23192930147429883],[112,114,64,0.1860089743555809],[112,114,65,0.19109951710776196],[112,114,66,0.19616391975354988],[112,114,67,0.20120671986528949],[112,114,68,0.20625760814264094],[112,114,69,0.210586828980805],[112,114,70,0.21329253196597128],[112,114,71,0.21567013078262323],[112,114,72,0.21772810723355054],[112,114,73,0.21948562622342446],[112,114,74,0.22097000034321135],[112,114,75,0.2222143402327672],[112,114,76,0.22325539825408033],[112,114,77,0.22413161247367377],[112,114,78,0.2248813574152108],[112,114,79,0.22554140750595153],[112,115,64,0.18133674574595016],[112,115,65,0.18615014745664774],[112,115,66,0.19091884515387272],[112,115,67,0.1956477808550967],[112,115,68,0.19963178707618576],[112,115,69,0.2027507661823814],[112,115,70,0.20557287035292898],[112,115,71,0.20809159145606418],[112,115,72,0.2103116549390559],[112,115,73,0.21224680379431238],[112,115,74,0.21391772830264225],[112,115,75,0.21535014821437642],[112,115,76,0.2165730535994333],[112,115,77,0.21761711016180632],[112,115,78,0.21851323437554107],[112,115,79,0.21929134336091308],[112,116,64,0.17642037026917418],[112,116,65,0.18047863726703964],[112,116,66,0.18435620847546147],[112,116,67,0.1880434677840411],[112,116,68,0.19151298235262193],[112,116,69,0.19473399946285075],[112,116,70,0.19768799364262452],[112,116,71,0.20036711079588448],[112,116,72,0.20277236698293383],[112,116,73,0.2049119550351163],[112,116,74,0.20679966451500217],[112,116,75,0.2084534202086706],[112,116,76,0.20989394400572425],[112,116,77,0.2111435446872415],[112,116,78,0.21222503980452684],[112,116,79,0.21316081349446578],[112,117,64,0.1679559314862321],[112,117,65,0.17202614997408833],[112,117,66,0.17593694219065512],[112,117,67,0.1796783429541048],[112,117,68,0.18322741572749748],[112,117,69,0.1865590050872145],[112,117,70,0.18965659192655626],[112,117,71,0.19251122902879483],[112,117,72,0.19512031112300812],[112,117,73,0.1974864219586129],[112,117,74,0.19961626228630042],[112,117,75,0.2015196624050333],[112,117,76,0.20320868270258577],[112,117,77,0.20469680538212942],[112,117,78,0.20599822033160642],[112,117,79,0.20712720785756092],[112,118,64,0.1593588865451029],[112,118,65,0.16343878006436857],[112,118,66,0.16738203686749586],[112,118,67,0.1711782761162022],[112,118,68,0.17480935747331672],[112,118,69,0.17825623766217902],[112,118,70,0.18150478731036826],[112,118,71,0.18454521842912988],[112,118,72,0.18737143456220895],[112,118,73,0.1899804276378731],[112,118,74,0.19237172376204306],[112,118,75,0.1945468800573492],[112,118,76,0.19650903451809915],[112,118,77,0.19826251071539125],[112,118,78,0.1998124790513456],[112,118,79,0.20116467612748554],[112,119,64,0.1506814295517696],[112,119,65,0.1547663652669369],[112,119,66,0.15873863886394715],[112,119,67,0.16258738395274114],[112,119,68,0.16629945417500766],[112,119,69,0.16986230426220214],[112,119,70,0.1732645136929279],[112,119,71,0.17649569882175084],[112,119,72,0.1795464425388886],[112,119,73,0.1824082412580111],[112,119,74,0.18507346982150505],[112,119,75,0.18753536487138164],[112,119,76,0.18978802719364915],[112,119,77,0.191826443504656],[112,119,78,0.19364652811057756],[112,119,79,0.19524518483593514],[112,120,64,0.14197973328278157],[112,120,65,0.14606290378434095],[112,120,66,0.15005818414919378],[112,120,67,0.15395414986728018],[112,120,68,0.1577427357263159],[112,120,69,0.16141813709730055],[112,120,70,0.16497188636622193],[112,120,71,0.16839323482253057],[112,120,72,0.17166965170140408],[112,120,73,0.17478731253404073],[112,120,74,0.17773157577586288],[112,120,75,0.18048744672892644],[112,120,76,0.1830400278246203],[112,120,77,0.1853749543856967],[112,120,78,0.18747881504313188],[112,120,79,0.18933955604278263],[112,121,64,0.13331157569667507],[112,121,65,0.13738424221648088],[112,121,66,0.14139416781847458],[112,121,67,0.14532929618568521],[112,121,68,0.14918661503216693],[112,121,69,0.15296714992368435],[112,121,70,0.15666554642915623],[112,121,71,0.16027089958087384],[112,121,72,0.16376780278457495],[112,121,73,0.16713735975062666],[112,121,74,0.17035815685316374],[112,121,75,0.17340719345241093],[112,121,76,0.1762607678498006],[112,121,77,0.1788953166851433],[112,121,78,0.18128820572993412],[112,121,79,0.18341847017971347],[112,122,64,0.12473401055182087],[112,122,65,0.12878580388964297],[112,122,66,0.13279994899410114],[112,122,67,0.13676368500003666],[112,122,68,0.14067890819420448],[112,122,69,0.14455340611330464],[112,122,70,0.1483850080441047],[112,122,71,0.15216283314081697],[112,122,72,0.15586886076909973],[112,122,73,0.15947943964891245],[112,122,74,0.1629667317223218],[112,122,75,0.16630008687605757],[112,122,76,0.16944734486083576],[112,122,77,0.17237606096910726],[112,122,78,0.17430154744855972],[112,122,79,0.17503467924459468],[112,123,64,0.11630109602643625],[112,123,65,0.12032037157320254],[112,123,66,0.1243266051655067],[112,123,67,0.12830626175887117],[112,123,68,0.13226588931208536],[112,123,69,0.13621981252129306],[112,123,70,0.1401690226589247],[112,123,71,0.14410280950524634],[112,123,72,0.14800081654993058],[112,123,73,0.151835013109766],[112,123,74,0.1555715779136832],[112,123,75,0.15917268897768863],[112,123,76,0.16259821487471374],[112,123,77,0.16364490552393665],[112,123,78,0.16394505325027653],[112,123,79,0.1649212277380969],[112,124,64,0.10806164134935503],[112,124,65,0.1120358842964729],[112,124,66,0.11602079537617732],[112,124,67,0.1200020006955908],[112,124,68,0.12399033866307094],[112,124,69,0.12800629757040263],[112,124,70,0.13205391825581383],[112,124,71,0.13612277009311782],[112,124,72,0.14019044741945288],[112,124,73,0.1442249635446759],[112,124,74,0.14945684709771306],[112,124,75,0.15668408681745644],[112,124,76,0.16200187873819616],[112,124,77,0.16537863146508278],[112,124,78,0.16874516896368533],[112,124,79,0.1721408951307679],[112,125,64,0.10005698772020931],[112,125,65,0.10397326470612778],[112,125,66,0.10792264884555738],[112,125,67,0.1118898688139387],[112,125,68,0.1158896010908482],[112,125,69,0.12214774154759984],[112,125,70,0.12950344667789576],[112,125,71,0.13696110476091153],[112,125,72,0.14449526452397393],[112,125,73,0.15206954558739785],[112,125,74,0.1596392584223686],[112,125,75,0.1671538923905763],[112,125,76,0.17035479109779555],[112,125,77,0.1733694484217041],[112,125,78,0.17637598999869966],[112,125,79,0.17942103274407817],[112,126,64,0.09585920013533203],[112,126,65,0.10275821387297182],[112,126,66,0.10976869321739205],[112,126,67,0.11687066571713796],[112,126,68,0.12407890758061542],[112,126,69,0.13142189336797508],[112,126,70,0.13890686259571672],[112,126,71,0.14652232168831553],[112,126,72,0.15424124388443522],[112,126,73,0.16202413850681427],[112,126,74,0.16982198083808495],[112,126,75,0.1759357681251191],[112,126,76,0.1786823682490574],[112,126,77,0.1813663338240288],[112,126,78,0.18404287950047651],[112,126,79,0.18676505806055416],[112,127,64,0.10517653643972528],[112,127,65,0.11207181948076975],[112,127,66,0.11909529690354545],[112,127,67,0.12622589470477993],[112,127,68,0.13348102690799354],[112,127,69,0.1408934134483138],[112,127,70,0.1484724573068167],[112,127,71,0.15620695500983364],[112,127,72,0.16406858014169906],[112,127,73,0.17201522496065583],[112,127,74,0.17999419056492275],[112,127,75,0.18451236427493378],[112,127,76,0.18696990997294632],[112,127,77,0.18935872900973863],[112,127,78,0.1917396545305119],[112,127,79,0.1941713208972479],[112,128,64,0.11480698126841125],[112,128,65,0.12167794693293243],[112,128,66,0.12869168281951782],[112,128,67,0.13582597036589353],[112,128,68,0.14310027280035406],[112,128,69,0.1505508287877359],[112,128,70,0.15818885569923055],[112,128,71,0.16600342336014223],[112,128,72,0.17396516644981472],[112,128,73,0.182029846282152],[112,128,74,0.19014175177492681],[112,128,75,0.1929962404690437],[112,128,76,0.19520249192127087],[112,128,77,0.1973339163803093],[112,128,78,0.19945604682349347],[112,128,79,0.20163220644385452],[112,129,64,0.12471861683497731],[112,129,65,0.13154653422144666],[112,129,66,0.13852952867431687],[112,129,67,0.14564418881635002],[112,129,68,0.15291145522847],[112,129,69,0.16037037477351945],[112,129,70,0.1680336322991258],[112,129,71,0.17589054539185517],[112,129,72,0.18391095404718916],[112,129,73,0.19204895327859264],[112,129,74,0.19923064633790868],[112,129,75,0.20137276189341513],[112,129,76,0.203365181655842],[112,129,77,0.2052768866611702],[112,129,78,0.20717720413365096],[112,129,79,0.20913326018042963],[112,130,64,0.1348612781981703],[112,130,65,0.14162991801664104],[112,130,66,0.1485636453122308],[112,130,67,0.15563779355280535],[112,130,68,0.16287426792768656],[112,130,69,0.17031429246944582],[112,130,70,0.17797171505411613],[112,130,71,0.18583608608153185],[112,130,72,0.19387667988865437],[112,130,73,0.2020463545660345],[112,130,74,0.2076588274366702],[112,130,75,0.20963009125798165],[112,130,76,0.21144328936656304],[112,130,77,0.21317023903311202],[112,130,78,0.21488322029510856],[112,130,79,0.21665233501541584],[112,131,64,0.14516464997158388],[112,131,65,0.15186095556430698],[112,131,66,0.15873013028779148],[112,131,67,0.16574616392582647],[112,131,68,0.17293152171484907],[112,131,69,0.18032912859062744],[112,131,70,0.18795378257736248],[112,131,71,0.1957952877286019],[112,131,72,0.203822571159736],[112,131,73,0.21198763535090748],[112,131,74,0.21593160314426973],[112,131,75,0.21775979873497173],[112,131,76,0.21942265334365174],[112,131,77,0.2209941142758342],[112,131,78,0.22254869421062706],[112,131,79,0.22415876093797243],[112,132,64,0.15553640166405971],[112,132,65,0.1621511738200454],[112,132,66,0.16894453585188335],[112,132,67,0.1758890032916257],[112,132,68,0.1830073608010584],[112,132,69,0.19034400019574124],[112,132,70,0.1979146067172082],[112,132,71,0.20570932634529285],[112,132,72,0.21369695533281344],[112,132,73,0.22182896264597415],[112,132,74,0.2240533461812559],[112,132,75,0.22575761603973357],[112,132,76,0.22729008262276118],[112,132,77,0.2287262949718953],[112,132,78,0.23014246220509224],[112,132,79,0.23161269041259966],[112,133,64,0.16586450300812589],[112,133,65,0.17239170385891892],[112,133,66,0.17910141078070294],[112,133,67,0.18596447157393386],[112,133,68,0.19300391213778972],[112,133,69,0.20026561942663781],[112,133,70,0.2077662790516095],[112,133,71,0.21549656411918164],[112,133,72,0.2234253849641247],[112,133,73,0.2302099292479106],[112,133,74,0.2320510676513303],[112,133,75,0.23364121048411343],[112,133,76,0.23505334819557883],[112,133,77,0.2363642696906807],[112,133,78,0.2376515240007551],[112,133,79,0.2389906135147095],[112,134,64,0.17604139127380006],[112,134,65,0.18247561945215734],[112,134,66,0.189094728303757],[112,134,67,0.1958676531707582],[112,134,68,0.20281763905485706],[112,134,69,0.20999221864979048],[112,134,70,0.21740929345356766],[112,134,71,0.22506032923154565],[112,134,72,0.2329146536997588],[112,134,73,0.23824026451976632],[112,134,74,0.23997920361368882],[112,134,75,0.24145979080212054],[112,134,76,0.24275577641155047],[112,134,77,0.24394486969683848],[112,134,78,0.24510566215671012],[112,134,79,0.24631478456139422],[112,135,64,0.18597906781786247],[112,135,65,0.1923153296591188],[112,135,66,0.19883753206583038],[112,135,67,0.20551245072977972],[112,135,68,0.21236355736752427],[112,135,69,0.21944023208613855],[112,135,70,0.2267618537307804],[112,135,71,0.23432098499320453],[112,135,72,0.24208770450948633],[112,135,73,0.24624101338418167],[112,135,74,0.2478792028384829],[112,135,75,0.249251171063978],[112,135,76,0.25043110633664817],[112,135,77,0.2514973413089931],[112,135,78,0.25252924592957227],[112,135,79,0.25360435518095054],[112,136,64,0.19560879995252842],[112,136,65,0.20184258872068608],[112,136,66,0.20826225847519378],[112,136,67,0.21483221747472306],[112,136,68,0.22157619099356732],[112,136,69,0.22854561267759924],[112,136,70,0.23576160414198963],[112,136,71,0.24321813188023156],[112,136,72,0.2508863591878988],[112,136,73,0.25423921076531864],[112,136,74,0.25577567061970785],[112,136,75,0.25703728247064134],[112,136,76,0.2580983668731933],[112,136,77,0.25903760420779404],[112,136,78,0.2599349051260312],[112,136,79,0.26086851568021147],[112,137,64,0.20488040012456415],[112,137,65,0.2110077200295059],[112,137,66,0.21731990904545967],[112,137,67,0.2237788712161035],[112,137,68,0.23040862212381943],[112,137,69,0.2372628219874498],[112,137,70,0.24436457047263155],[112,137,71,0.251709517743965],[112,137,72,0.2592702208607332],[112,137,73,0.2622454307848283],[112,137,74,0.2636774550783256],[112,137,75,0.2648251784589125],[112,137,76,0.2657627686183581],[112,137,77,0.2665689984226144],[112,137,78,0.26732410192486433],[112,137,79,0.268106863568599],[112,138,64,0.21376187010923997],[112,138,65,0.21977920430722225],[112,138,66,0.22597958320415837],[112,138,67,0.23232236264750694],[112,138,68,0.23883188676885936],[112,138,69,0.24556415305410859],[112,138,70,0.25254441755946433],[112,138,71,0.25977024353202305],[112,138,72,0.26721584647806146],[112,138,73,0.2702546801160263],[112,138,74,0.27157852522498654],[112,138,75,0.2726078700165045],[112,138,76,0.27341646795071567],[112,138,77,0.2740829485650798],[112,138,78,0.2746876673125179],[112,138,79,0.27530978569230635],[112,139,64,0.22223941157388982],[112,139,65,0.22814363337915433],[112,139,66,0.23422837298861618],[112,139,67,0.24045049937462437],[112,139,68,0.24683471715085872],[112,139,69,0.2534393876797996],[112,139,70,0.260292024744235],[112,139,71,0.26739226598075694],[112,139,72,0.27471619071292436],[112,139,73,0.27824704732523514],[112,139,74,0.27945863952733135],[112,139,75,0.2803649900793023],[112,139,76,0.28103920237680347],[112,139,77,0.28155954453419313],[112,139,78,0.2820063015826815],[112,139,79,0.28245885368641555],[112,140,64,0.2303178043423377],[112,140,65,0.23610603090303323],[112,140,66,0.24207162100587182],[112,140,67,0.24816912707046107],[112,140,68,0.2544236323461605],[112,140,69,0.2608957895634096],[112,140,70,0.2676153806571241],[112,140,71,0.2745841986551953],[112,140,72,0.28178032259718366],[112,140,73,0.2861881069351949],[112,140,74,0.28728380380907875],[112,140,75,0.28806328595767466],[112,140,76,0.28859879623288864],[112,140,77,0.28896803796589343],[112,140,78,0.28925103837950394],[112,140,79,0.2895272324596357],[112,141,64,0.23802115369196786],[112,141,65,0.2436905413984241],[112,141,66,0.24953354301299593],[112,141,67,0.25550266911929825],[112,141,68,0.2616233785429685],[112,141,69,0.26795843463603447],[112,141,70,0.274539798671537],[112,141,71,0.2813714126468836],[112,141,72,0.28843341615657725],[112,141,73,0.2940290770175316],[112,141,74,0.29500651737838846],[112,141,75,0.2956569388037495],[112,141,76,0.2960515358933686],[112,141,77,0.29626725374366525],[112,141,78,0.29638367179181146],[112,141,79,0.2964801014345238],[112,142,64,0.24539400803842562],[112,142,65,0.25094148893600154],[112,142,66,0.25665821647598064],[112,142,67,0.26249502610278563],[112,142,68,0.26847772025827943],[112,142,69,0.27467087992689027],[112,142,70,0.2811084543314901],[112,142,71,0.28779643819176287],[112,142,72,0.29471701625286556],[112,142,73,0.3017067291776995],[112,142,74,0.30256580633981084],[112,142,75,0.3030877091855531],[112,142,76,0.30334241368499376],[112,142,77,0.30340591592480654],[112,142,78,0.303357146030385],[112,142,79,0.3032750882740285],[112,143,64,0.2524884389792941],[112,143,65,0.25791075315239254],[112,143,66,0.26349727220861846],[112,143,67,0.269197603615352],[112,143,68,0.2750378320180308],[112,143,69,0.28108395794952096],[112,143,70,0.2873716314209929],[112,143,71,0.29390872013207986],[112,143,72,0.30067936824148755],[112,143,73,0.3076479155271301],[112,143,74,0.3098955728186227],[112,143,75,0.31029249344793525],[112,143,76,0.310411817602118],[112,143,77,0.3103283999461667],[112,143,78,0.3101203041899843],[112,143,79,0.3098659550869301],[112,144,64,0.2593155611367424],[112,144,65,0.264610371144647],[112,144,66,0.270063684974497],[112,144,67,0.27562441918679265],[112,144,68,0.2813188736281559],[112,144,69,0.28721399768040806],[112,144,70,0.29334678743869946],[112,144,71,0.29972674340059635],[112,144,72,0.3063398304286071],[112,144,73,0.31315230522510934],[112,144,74,0.3169549486494856],[112,144,75,0.31723069842866114],[112,144,76,0.31721971325279835],[112,144,77,0.316995526239217],[112,144,78,0.3166351217142848],[112,144,79,0.31621612865077925],[112,145,64,0.2658773767054586],[112,145,65,0.2710434034098351],[112,145,66,0.2763615924292712],[112,145,67,0.28178078198176176],[112,145,68,0.28732741898157876],[112,145,69,0.2930688755744892],[112,145,70,0.29904308645610544],[112,145,71,0.30526089633045833],[112,145,72,0.31170990846921653],[112,145,73,0.31835820824680217],[112,145,74,0.32371144594897294],[112,145,75,0.3238697091497332],[112,145,76,0.3237335815745613],[112,145,77,0.3233751088575625],[112,145,78,0.32286999078693907],[112,145,79,0.32229482567922724],[112,146,64,0.27217846505158855],[112,146,65,0.27721528774323195],[112,146,66,0.2823972937988766],[112,146,67,0.28767390748624283],[112,146,68,0.29307165192483836],[112,146,69,0.2986577542771896],[112,146,70,0.30447063918894657],[112,146,71,0.31052216799212656],[112,146,72,0.3168013640172016],[112,146,73,0.32327802060944427],[112,146,74,0.3299061821607723],[112,146,75,0.33017885783810064],[112,146,76,0.32992315828772323],[112,146,77,0.32943750494814694],[112,146,78,0.32879611469254594],[112,146,79,0.3280743211821022],[112,147,64,0.2782248283620697],[112,147,65,0.28313269538453656],[112,147,66,0.2881781256217149],[112,147,67,0.2933118211010774],[112,147,68,0.29856030707218006],[112,147,69,0.303990072418187],[112,147,70,0.3096395554585135],[112,147,71,0.31552127843460626],[112,147,72,0.32162543878028443],[112,147,73,0.32792339099648893],[112,147,74,0.3343710098705651],[112,147,75,0.3361298493317358],[112,147,76,0.3357607011294151],[112,147,77,0.33515571026076874],[112,147,78,0.33438741978370395],[112,147,79,0.33352966713096494],[112,148,64,0.2840228880639165],[112,148,65,0.28880253924206],[112,148,66,0.29371148934738],[112,148,67,0.2987024125196143],[112,148,68,0.30380175929083303],[112,148,69,0.30907467915214915],[112,148,70,0.3145591350511024],[112,148,71,0.32026793810172366],[112,148,72,0.3261921953559358],[112,148,73,0.3323046561463256],[112,148,74,0.33856294819193383],[112,148,75,0.34169712401967034],[112,148,76,0.34122121998806965],[112,148,77,0.34050544569537405],[112,148,78,0.3396204890238609],[112,148,79,0.33863846520281116],[112,149,64,0.2895786322777868],[112,149,65,0.2942311344809623],[112,149,66,0.2990040310963882],[112,149,67,0.3038526412095113],[112,149,68,0.3088032621893174],[112,149,69,0.3139191137842703],[112,149,70,0.3192371973115828],[112,149,71,0.3247702367479623],[112,149,72,0.33050997515002206],[112,149,73,0.3364303775680605],[112,149,74,0.3424907321133759],[112,149,75,0.3468581581625478],[112,149,76,0.3462826698640905],[112,149,77,0.3454652349074272],[112,149,78,0.344474517236095],[112,149,79,0.3433806938566101],[112,150,64,0.29489691455725875],[112,150,65,0.2994235117459065],[112,150,66,0.3040609738668928],[112,150,67,0.30876789329768256],[112,150,68,0.3135703359173526],[112,150,69,0.31852903079328987],[112,150,70,0.32367954978059454],[112,150,71,0.32903416215126613],[112,150,72,0.33458497365315787],[112,150,73,0.3403069798253776],[112,150,74,0.34616102570962376],[112,150,75,0.35159370145931834],[112,150,76,0.3509261065953152],[112,150,77,0.3500164729965115],[112,150,78,0.34893128818283975],[112,150,79,0.3477385899802974],[112,151,64,0.29998090416102163],[112,151,65,0.3043828832814705],[112,151,66,0.3088856024644811],[112,151,67,0.31345149014482643],[112,151,68,0.31810630457092176],[112,151,69,0.3229077705474873],[112,151,70,0.3278895961658824],[112,151,71,0.33306324889995115],[112,151,72,0.33842093332894585],[112,151,73,0.34393849060915843],[112,151,74,0.3495782123172819],[112,151,75,0.35529156152704344],[112,151,76,0.3551358052952973],[112,151,77,0.35414348630637427],[112,151,78,0.35297517359643416],[112,151,79,0.351696585330667],[112,152,64,0.30483168811218536],[112,152,65,0.3091102622179225],[112,152,66,0.31347890143252183],[112,152,67,0.3179043488945553],[112,152,68,0.3224119834920326],[112,152,69,0.32705607600267356],[112,152,70,0.3318680839295747],[112,152,71,0.3368583575203029],[112,152,72,0.342018954356417],[112,152,73,0.3473263828071176],[112,152,74,0.3527442674510336],[112,152,75,0.35822592978826956],[112,152,76,0.3588993414613373],[112,152,77,0.3578335833689183],[112,152,78,0.3565931542783812],[112,152,79,0.3552412979785126],[112,153,64,0.3094480253145616],[112,153,65,0.3136042353029105],[112,153,66,0.3178393462705182],[112,153,67,0.3221247952892482],[112,153,68,0.3264855167570277],[112,153,69,0.3309719556727644],[112,153,70,0.3356129917721041],[112,153,71,0.3404175842078369],[112,153,72,0.3453774234632386],[112,153,73,0.3504695187714002],[112,153,74,0.35565871461627124],[112,153,75,0.360900130090097],[112,153,76,0.36220763471453654],[112,153,77,0.361077097027117],[112,153,78,0.3597748633832064],[112,153,79,0.35836157896328996],[112,154,64,0.31382625302176687],[112,154,65,0.3178608893829862],[112,154,66,0.32196284824831084],[112,154,67,0.326108529062156],[112,154,68,0.33032236516176716],[112,154,69,0.3346506931749824],[112,154,70,0.3391195573018352],[112,154,71,0.3437363014304761],[112,154,72,0.34849206108860925],[112,154,73,0.35336419698485894],[112,154,74,0.3583186641717604],[112,154,75,0.3633123110433352],[112,154,76,0.3650549551378511],[112,154,77,0.36386741777442744],[112,154,78,0.36251265200290494],[112,154,79,0.361048614357557],[112,155,64,0.3179603459910567],[112,155,65,0.3218738919723868],[112,155,66,0.3258428531544717],[112,155,67,0.3298487422427383],[112,155,68,0.33391544503637544],[112,155,69,0.3380850036728264],[112,155,70,0.3423804451970445],[112,155,71,0.3468073296857892],[112,155,72,0.35135608712491456],[112,155,73,0.3560043013332868],[112,155,74,0.360718935399293],[112,155,75,0.3654584932610769],[112,155,76,0.36743889217979314],[112,155,77,0.3662010183506409],[112,155,78,0.3648016771697388],[112,155,79,0.3632960829412227],[112,156,64,0.3218421286990601],[112,156,65,0.32563472628928897],[112,156,66,0.32947059435699677],[112,156,67,0.33333639074884625],[112,156,68,0.33725541825566235],[112,156,69,0.3412653375698334],[112,156,70,0.3453860561928659],[112,156,71,0.3496212407161209],[112,156,72,0.3539605055043598],[112,156,73,0.358381553203426],[112,156,74,0.3628522619453664],[112,156,75,0.3673327142751243],[112,156,76,0.36936028609011334],[112,156,77,0.3680774696353036],[112,156,78,0.3666400123977063],[112,156,79,0.36510036968823584],[112,157,64,0.3254616410519759],[112,157,65,0.3291330811927631],[112,157,66,0.3328355006043976],[112,157,67,0.3365606196861824],[112,157,68,0.34033113385479297],[112,157,69,0.3441803318468624],[112,157,70,0.3481249772611973],[112,157,71,0.35216679251594735],[112,157,72,0.3562945079219867],[112,157,73,0.36048586664614185],[112,157,74,0.36470958081382077],[112,157,75,0.36892723413884],[112,157,76,0.3708231218505323],[112,157,77,0.36949944788088873],[112,157,78,0.3680287808874241],[112,157,79,0.3664608352749223],[112,158,64,0.32880765808810347],[112,158,65,0.33235739651670704],[112,158,66,0.33592575905533056],[112,158,67,0.3395093428322779],[112,158,68,0.34313022171314206],[112,158,69,0.34681740948497874],[112,158,70,0.35058457339620863],[112,158,71,0.3544314965050073],[112,158,72,0.35834599701957726],[112,158,73,0.3623058068706401],[112,158,74,0.366280405107946],[112,158,75,0.3702328018400556],[112,158,76,0.3718343855581643],[112,158,77,0.37047273332864394],[112,158,78,0.36897231152524934],[112,158,79,0.36738014182958034],[112,159,64,0.33186836424499705],[112,159,65,0.33529556436929137],[112,159,66,0.33872903409415905],[112,159,67,0.34216997684822],[112,159,68,0.3456398388316914],[112,159,69,0.349163527474228],[112,159,70,0.3527517214712181],[112,159,71,0.356402317287854],[112,159,72,0.36010222939516956],[112,159,73,0.36382915236821417],[112,159,74,0.36755328074506266],[112,159,75,0.3712389826637909],[112,159,76,0.3724038832108963],[112,159,77,0.3710062002496443],[112,159,78,0.3694783178144292],[112,159,79,0.36786463515632056],[112,160,64,0.33463218284779783],[112,160,65,0.33793578704869415],[112,160,66,0.3412333425691231],[112,160,67,0.3445303308373502],[112,160,68,0.3478475688016616],[112,160,69,0.3512060739764811],[112,160,70,0.35461368669514043],[112,160,71,0.35806650547636676],[112,160,72,0.3615505788511566],[112,160,73,0.36504356100366564],[112,160,74,0.3685163273969025],[112,160,75,0.3719345466650583],[112,160,76,0.3725440218335432],[112,160,77,0.3711117984529709],[112,160,78,0.3695580998848189],[112,160,79,0.3679247836834849],[112,161,64,0.33708876156914364],[112,161,65,0.34026759231784237],[112,161,66,0.3434280861788093],[112,161,67,0.34657965195587076],[112,161,68,0.3497424751440496],[112,161,69,0.352933915287889],[112,161,70,0.35615914226826806],[112,161,71,0.3594125641162051],[112,161,72,0.36267942034999495],[112,161,73,0.365937340459039],[112,161,74,0.36915786394509287],[112,161,75,0.37230791843678623],[112,161,76,0.3722695528709394],[112,161,77,0.37080452630192856],[112,161,78,0.36922676973807445],[112,161,79,0.3675756744080875],[112,162,64,0.3392301147134844],[112,162,65,0.342283006881556],[112,162,66,0.34530524183040534],[112,162,67,0.3483098278747709],[112,162,68,0.35131630929040497],[112,162,69,0.35433859333232753],[112,162,70,0.3573793329168451],[112,162,71,0.36043134933026333],[112,162,72,0.3634791352095047],[112,162,73,0.36650032346676087],[112,162,74,0.3694671187818001],[112,162,75,0.37234768838601784],[112,162,76,0.3715972777584041],[112,162,77,0.3701023952769704],[112,162,78,0.36850349989632103],[112,162,79,0.3668375661316928],[112,163,64,0.3410519232908236],[112,163,65,0.3439778890200674],[112,163,66,0.34686071090099524],[112,163,67,0.3497167469969604],[112,163,68,0.35256487407578246],[112,163,69,0.3554156745128329],[112,163,70,0.3582693830750439],[112,163,71,0.36111730587321217],[112,163,72,0.3639432381409505],[112,163,73,0.3667248483290421],[112,163,74,0.3694350253325075],[112,163,75,0.37193440821034096],[112,163,76,0.3705457155626962],[112,163,77,0.3690263861219258],[112,163,78,0.3674117956355772],[112,163,79,0.36573650031143373],[112,164,64,0.3425505391341209],[112,164,65,0.34534855499528355],[112,164,66,0.3480905759595959],[112,164,67,0.35079618758719866],[112,164,68,0.3534835487942139],[112,164,69,0.35615992287108317],[112,164,70,0.3588231387202124],[112,164,71,0.3614630059415558],[112,164,72,0.3640626481991376],[112,164,73,0.36659980301068434],[112,164,74,0.3690480849634552],[112,164,75,0.37055657581672863],[112,164,76,0.3691414333410661],[112,164,77,0.36760680740940677],[112,164,78,0.3659858308691208],[112,164,79,0.36431056560855934],[112,165,64,0.3436952202674213],[112,165,65,0.34636143279948894],[112,165,66,0.348958367992769],[112,165,67,0.3515087652450159],[112,165,68,0.35403001071799534],[112,165,69,0.3565260346885365],[112,165,70,0.3589922779560502],[112,165,71,0.3614170983161259],[112,165,72,0.3637830151066356],[112,165,73,0.36606792039439595],[112,165,74,0.36824625399909017],[112,165,75,0.3688878400566329],[112,165,76,0.3674580639288243],[112,165,77,0.3659198694433029],[112,165,78,0.36430402840591036],[112,165,79,0.36263999518507123],[112,166,64,0.3444486188920206],[112,166,65,0.34697564156858934],[112,166,66,0.34941972436645186],[112,166,67,0.351806668209274],[112,166,68,0.3541530424620005],[112,166,69,0.35645948502794605],[112,166,70,0.35871913195215394],[112,166,71,0.36091900514392883],[112,166,72,0.36304115945303417],[112,166,73,0.3650637971229783],[112,166,74,0.36696234703362185],[112,166,75,0.3670060628686016],[112,166,76,0.36557478623025885],[112,166,77,0.364045490830676],[112,166,78,0.3624464531197677],[112,166,79,0.3608044066998839],[112,167,64,0.34478214421294096],[112,167,65,0.347159881222735],[112,167,66,0.34944072828271233],[112,167,67,0.35165342016690093],[112,167,68,0.35381368049394335],[112,167,69,0.3559189629844667],[112,167,70,0.3579602533182704],[112,167,71,0.35992342353949464],[112,167,72,0.36179027003479536],[112,167,73,0.36353952048089117],[112,167,74,0.365147807421485],[112,167,75,0.3649705862272112],[112,167,76,0.3635511312700465],[112,167,77,0.36204284729097774],[112,167,78,0.3604713809049439],[112,167,79,0.35886064635780296],[112,168,64,0.34467489505338106],[112,168,65,0.34689132962350394],[112,168,66,0.34899675942894515],[112,168,67,0.35102267891684263],[112,168,68,0.35298395516804293],[112,168,69,0.3548750410739414],[112,168,70,0.35668499889278565],[112,168,71,0.3583988032772577],[112,168,72,0.3599982566531793],[112,168,73,0.36146287628359725],[112,168,74,0.36277075096522265],[112,168,75,0.36282434043974865],[112,168,76,0.36142928685941594],[112,168,77,0.3599528856269313],[112,168,78,0.358418031808388],[112,168,79,0.356845747710226],[112,169,64,0.3441124878158506],[112,169,65,0.34615442482156905],[112,169,66,0.3480712202262648],[112,169,67,0.349896901088358],[112,169,68,0.3516454873603634],[112,169,69,0.35330869271137716],[112,169,70,0.35487395378433484],[112,169,71,0.3563256611753719],[112,169,72,0.3576459377889447],[112,169,73,0.3588153929221045],[112,169,74,0.3598138503551065],[112,169,75,0.3605961008595183],[112,169,76,0.3592365392025482],[112,169,77,0.35780095983524385],[112,169,78,0.356309407375264],[112,169,79,0.354779973900588],[112,170,64,0.3430858698274064],[112,170,65,0.34493963093856056],[112,170,66,0.34665424428626035],[112,170,67,0.3482659874417289],[112,170,68,0.349788063942259],[112,170,69,0.3512097871614642],[112,170,70,0.35251733231887555],[112,170,71,0.3536948729566306],[112,170,72,0.3547252077244495],[112,170,73,0.35559036841037894],[112,170,74,0.35627220786949104],[112,170,75,0.35675296655220523],[112,170,76,0.35698770763490395],[112,170,77,0.355599449875589],[112,170,78,0.3541550986020676],[112,170,79,0.3526698170432128],[112,171,64,0.3415901176112877],[112,171,65,0.34324218723564726],[112,171,66,0.3447413866387366],[112,171,67,0.34612590832369483],[112,171,68,0.3474081916738329],[112,171,69,0.34857556155348485],[112,171,70,0.34961335549687445],[112,171,71,0.3505059422063772],[112,171,72,0.35123718275222776],[112,171,73,0.3517908800987851],[112,171,74,0.35215121602884525],[112,171,75,0.3523031745715157],[112,171,76,0.3522329510765219],[112,171,77,0.3519283461184953],[112,171,78,0.35137914345861704],[112,171,79,0.3505109547929108],[112,172,64,0.3396232195739184],[112,172,65,0.3410608398646631],[112,172,66,0.34233229523292724],[112,172,67,0.34347730878609134],[112,172,68,0.3445076290315575],[112,172,69,0.3454090694811276],[112,172,70,0.3461666044893046],[112,172,71,0.34676524596720054],[112,172,72,0.3471903260248838],[112,172,73,0.34742777662832147],[112,172,74,0.34746440580379995],[112,172,75,0.3472881699386126],[112,172,76,0.34688844174499367],[112,172,77,0.34625627347486987],[112,172,78,0.3453846549959498],[112,172,79,0.344268766365024],[112,173,64,0.3371848425434344],[112,173,65,0.3383965557412835],[112,173,66,0.3394293631547706],[112,173,67,0.34032409281242754],[112,173,68,0.3410918954163742],[112,173,69,0.34171760563571457],[112,173,70,0.34218634962495786],[112,173,71,0.34248425642987573],[112,173,72,0.3425985505167576],[112,173,73,0.3425176516120547],[112,173,74,0.34223128188529583],[112,173,75,0.3417305805033385],[112,173,76,0.3410082255804143],[112,173,77,0.34005856354628744],[112,173,78,0.33887774595428694],[112,173,79,0.33746387375223724],[112,174,64,0.3342750815438208],[112,174,65,0.33525121792400875],[112,174,66,0.3360363609433892],[112,174,67,0.336671986033725],[112,174,68,0.33716875712095584],[112,174,69,0.337511105849412],[112,174,70,0.33768485424538197],[112,174,71,0.33767773809970275],[112,174,72,0.33747929948355687],[112,174,73,0.33708079844214434],[112,174,74,0.3364751444333112],[112,174,75,0.3356568480501836],[112,174,76,0.33462199353896316],[112,174,77,0.33336823259567383],[112,174,78,0.3318947998991108],[112,174,79,0.33020255081198946],[112,175,64,0.33089868509524684],[112,175,65,0.33163154712501286],[112,175,66,0.33216201670732914],[112,175,67,0.33253173166439304],[112,175,68,0.33275098961055877],[112,175,69,0.33280441940082034],[112,175,70,0.3326790957647507],[112,175,71,0.33236485334762406],[112,175,72,0.3318539711975899],[112,175,73,0.33114088976799916],[112,175,74,0.33022196156458666],[112,175,75,0.3290952365137441],[112,175,76,0.32776028307367233],[112,175,77,0.32621804605536125],[112,175,78,0.3244707420656199],[112,175,79,0.32252179343043164],[112,176,64,0.32708255248955453],[112,176,65,0.32756587009821303],[112,176,66,0.3278360009453012],[112,176,67,0.32793422254681753],[112,176,68,0.3278705713610581],[112,176,69,0.327630463071279],[112,176,70,0.3272027644062642],[112,176,71,0.32657987904637975],[112,176,72,0.3257572185948154],[112,176,73,0.32473272060612773],[112,176,74,0.32350641538357267],[112,176,75,0.3220800431760567],[112,176,76,0.32045672332279074],[112,176,77,0.31864067680968056],[112,176,78,0.3166370036168644],[112,176,79,0.31445151615251377],[112,177,64,0.3228620201244672],[112,177,65,0.3230912096448431],[112,177,66,0.3230969684526374],[112,177,67,0.3229196719381417],[112,177,68,0.32256918312555766],[112,177,69,0.32203226532979073],[112,177,70,0.32130008038178526],[112,177,71,0.32036803096704464],[112,177,72,0.31923501556854894],[112,177,73,0.3179027459043135],[112,177,74,0.3163751291615304],[112,177,75,0.3146577172201881],[112,177,76,0.31275722494685887],[112,177,77,0.31068111952492683],[112,177,78,0.30843728267189036],[112,177,79,0.3060337474786416],[112,178,64,0.31827507893798024],[112,178,65,0.318247677684153],[112,178,66,0.31798714955483454],[112,178,67,0.31753243205525117],[112,178,68,0.31689328857534604],[112,178,69,0.3160583488558868],[112,178,70,0.3150215226536334],[112,178,71,0.3137815870269827],[112,178,72,0.31234122593967933],[112,178,73,0.3107061483774551],[112,178,74,0.3088842878679866],[112,178,75,0.30688508615651616],[112,178,76,0.30471886364721895],[112,178,77,0.3023962790750552],[112,178,78,0.2999278807256525],[112,178,79,0.2973237513731195],[112,179,64,0.313361603216978],[112,179,65,0.31307760974714627],[112,179,66,0.312551374149692],[112,179,67,0.31181988965235474],[112,179,68,0.31089288224651324],[112,179,69,0.3097613116032393],[112,179,70,0.3084222247025705],[112,179,71,0.3068780809755888],[112,179,72,0.3051355805533681],[112,179,73,0.3032045873129736],[112,179,74,0.3010971501868086],[112,179,75,0.2988266260345334],[112,179,76,0.2964069072044209],[112,179,77,0.29385175673476965],[112,179,78,0.29117425396730184],[112,179,79,0.28838635316501093],[112,180,64,0.30816257735528285],[112,180,65,0.30762469837664363],[112,180,66,0.3068360975908733],[112,180,67,0.3058313680076796],[112,180,68,0.30462025029456535],[112,180,69,0.3031964294533485],[112,180,70,0.3015604034583853],[112,180,71,0.2997185438669701],[112,180,72,0.29768171996506615],[112,180,73,0.29546403394819676],[112,180,74,0.2930816711570921],[112,180,75,0.2905518691920329],[112,180,76,0.2878920095279396],[112,180,77,0.2851188350456798],[112,180,78,0.2822477966855117],[112,180,79,0.27929253221795736],[112,181,64,0.3027193201350925],[112,181,65,0.30193312497804137],[112,181,66,0.30088842793519754],[112,181,67,0.299617034824],[112,181,68,0.29812874354938684],[112,181,69,0.29642027994766584],[112,181,70,0.2944958208882164],[112,181,71,0.29236579283391967],[112,181,72,0.29004530226280106],[112,181,73,0.28755269301302316],[112,181,74,0.28490823509204743],[112,181,75,0.28213294926758004],[112,181,76,0.27924757152754004],[112,181,77,0.2762716612605208],[112,181,78,0.2732228567689553],[112,181,79,0.27011628148664335],[112,182,64,0.2970727060825649],[112,182,65,0.29604668963915787],[112,182,66,0.29475515404813757],[112,182,67,0.2932268155184686],[112,182,68,0.29147156233268756],[112,182,69,0.2894893865560496],[112,182,70,0.28728827770796556],[112,182,71,0.28488276664936385],[112,182,72,0.2822921755470953],[112,182,73,0.27953901000898107],[112,182,74,0.27664749841098096],[112,182,75,0.27364228318868145],[112,182,76,0.2705472686080101],[112,182,77,0.2673846292667411],[112,182,78,0.2641739833111004],[112,182,79,0.2609317340829855],[112,183,64,0.29126238342639427],[112,183,65,0.29000793841301875],[112,183,66,0.2884817740359006],[112,183,67,0.2867093113501094],[112,183,68,0.284700552472498],[112,183,69,0.2824588829123132],[112,183,70,0.27999613865647327],[112,183,71,0.27733090753842654],[112,183,72,0.27448661457057394],[112,183,73,0.2714897637812729],[112,183,74,0.2683683420105835],[112,183,75,0.2651503898454906],[112,183,76,0.261862744593149],[112,183,77,0.25852995990186967],[112,183,78,0.25517340634644886],[112,183,79,0.2518105569996124],[112,184,64,0.2853259881685499],[112,184,65,0.28385728753536843],[112,184,66,0.2821115234491448],[112,184,67,0.2801107218094046],[112,184,68,0.27786501192541485],[112,184,69,0.2753811964248137],[112,184,70,0.2726748887516404],[112,184,71,0.26976858868735537],[112,184,72,0.26668962102733357],[112,184,73,0.26346824393452273],[112,184,74,0.26013593280303254],[112,184,75,0.25672384516917085],[112,184,76,0.25326147190276943],[112,184,77,0.24977547959982171],[112,184,78,0.24628874878102813],[112,184,79,0.24281961218257075],[112,185,64,0.27929835375842904],[112,185,65,0.2776321440285761],[112,185,66,0.2756844026823402],[112,185,67,0.2734737706731702],[112,185,68,0.2710105073966428],[112,185,69,0.26830475065111214],[112,185,70,0.2653757199318374],[112,185,71,0.2622495868843028],[112,185,72,0.2589572869769499],[112,185,73,0.25553251264517995],[112,185,74,0.2520098940592863],[112,185,75,0.24842337335455408],[112,185,76,0.24480477783734292],[112,185,77,0.24118259734899697],[112,185,78,0.23758097063257344],[112,185,79,0.234018885208596],[112,186,64,0.27321071584527185],[112,186,65,0.27136602212525407],[112,186,66,0.26923620297382944],[112,186,67,0.26683663510919403],[112,186,68,0.26417770033026194],[112,186,69,0.2612726858104959],[112,186,70,0.2581441474746141],[112,186,71,0.25482159972115326],[112,186,72,0.2513392208893619],[112,186,73,0.2477337504336093],[112,186,74,0.24404258421611869],[112,186,75,0.2403020739981235],[112,186,76,0.23654603686840997],[112,186,77,0.23280447999915838],[112,186,78,0.22910254576488187],[112,186,79,0.22545968190414348],[112,187,64,0.2670899115707279],[112,187,65,0.26508765493024405],[112,187,66,0.2627975303967196],[112,187,67,0.26023187720085167],[112,187,68,0.25740118162954373],[112,187,69,0.2543215967985756],[112,187,70,0.2510186555798315],[112,187,71,0.24752480678716954],[112,187,72,0.24387703580671377],[112,187,73,0.24011468547869566],[112,187,74,0.23627748383671487],[112,187,75,0.23240378496638928],[112,187,76,0.2285290288906798],[112,187,77,0.2246844260263337],[112,187,78,0.22089587138783412],[112,187,79,0.21718309334514888],[112,188,64,0.2609575728514821],[112,188,65,0.25882010072621514],[112,188,66,0.256392827217416],[112,188,67,0.2536853772496856],[112,188,68,0.2507083144570621],[112,188,69,0.24748028806176647],[112,188,70,0.24402937150337936],[112,188,71,0.24039047429163857],[112,188,72,0.23660289913394822],[112,188,73,0.2327081060846393],[112,188,74,0.22874769045430463],[112,188,75,0.22476158086360234],[112,188,76,0.22078646346095654],[112,188,77,0.21685443795030923],[112,188,78,0.2129919106964685],[112,188,79,0.20921872979497247],[112,189,64,0.254829313093669],[112,189,65,0.2525798433187957],[112,189,66,0.2500393899897437],[112,189,67,0.24721526820661208],[112,189,68,0.2441180844597359],[112,189,69,0.2407685446891615],[112,189,70,0.23719676763355502],[112,189,71,0.23343960256686364],[112,189,72,0.22953814359441083],[112,189,73,0.22553545594637225],[112,189,74,0.22147452107912813],[112,189,75,0.21739640703417432],[112,189,76,0.21333867013229268],[112,189,77,0.20933399370027012],[112,189,78,0.20540906914168988],[112,189,79,0.20158372427553264],[112,190,64,0.24871390677500999],[112,190,65,0.24637588581052475],[112,190,66,0.2437463837467826],[112,190,67,0.2408308705785748],[112,190,68,0.2376399567633136],[112,190,69,0.2341959190835991],[112,190,70,0.23053039091339728],[112,190,71,0.22668161592314137],[112,190,72,0.22269193891827707],[112,190,73,0.21860551190490538],[112,190,74,0.21446622220914577],[112,190,75,0.21031584911217366],[112,190,76,0.20619245508697825],[112,190,77,0.20212901733853375],[112,190,78,0.19815230495935873],[112,190,79,0.194282006620732],[112,191,64,0.24261246132736172],[112,191,65,0.2402088371891543],[112,191,66,0.23751385164999148],[112,191,67,0.23453162715733908],[112,191,68,0.23127273908442653],[112,191,69,0.22776053258287748],[112,191,70,0.2240276190290352],[112,191,71,0.2201130943539958],[112,191,72,0.2160600238703796],[112,191,73,0.2119131439370017],[112,191,74,0.20771678725431594],[112,191,75,0.2035130382177319],[112,191,76,0.19934012437891446],[112,191,77,0.19523104967977215],[112,191,78,0.1912124747331167],[112,191,79,0.18730384903129005],[112,192,64,0.23651758075316295],[112,192,65,0.2340699911164533],[112,192,66,0.2313317194574068],[112,192,67,0.2283060369222021],[112,192,68,0.22500345031768115],[112,192,69,0.22144789141752053],[112,192,70,0.21767244280784906],[112,192,71,0.2137165466242888],[112,192,72,0.20962349827131982],[112,192,73,0.20543815718610364],[112,192,74,0.20120488136407852],[112,192,75,0.19696569199912245],[112,192,76,0.19275867421544007],[112,192,77,0.1886166194843528],[112,192,78,0.18456591492994998],[112,192,79,0.18062568433642334],[112,193,64,0.23041252041315197],[112,193,65,0.2279403963077467],[112,193,66,0.2251787941787588],[112,193,67,0.22213058747776634],[112,193,68,0.21880619396938247],[112,193,69,0.21522971641229563],[112,193,70,0.21143427429993158],[112,193,71,0.20745922431478622],[112,193,72,0.20334767472039425],[112,193,73,0.19914421591209494],[112,193,74,0.19489287373650002],[112,193,75,0.19063529182810637],[112,193,76,0.18640914883907211],[112,193,77,0.18224681605753448],[112,193,78,0.1781742605240579],[112,193,79,0.1742101983681624],[112,194,64,0.22427033242970312],[112,194,65,0.22178991789996508],[112,194,66,0.219021756295276],[112,194,67,0.21596868540160064],[112,194,68,0.21264103582841376],[112,194,69,0.20906278586481697],[112,194,70,0.20526678005193089],[112,194,71,0.20129197644425595],[112,194,72,0.19718098979070622],[112,194,73,0.19297784931601478],[112,194,74,0.1887259775849325],[112,194,75,0.18446639657432032],[112,194,76,0.18023616671015646],[112,194,77,0.17606706425034147],[112,194,78,0.17198450201301768],[112,194,79,0.16800669806717922],[112,195,64,0.21805343613486602],[112,195,65,0.2155768038371671],[112,195,66,0.21281473462555725],[112,195,67,0.20977024716828227],[112,195,68,0.20645362083289112],[112,195,69,0.20288859499958603],[112,195,70,0.19910760488557888],[112,195,71,0.19514906275374458],[112,195,72,0.19105493395369325],[112,195,73,0.18686852585773714],[112,195,74,0.18263249603982307],[112,195,75,0.17838708569254155],[112,195,76,0.17416858391381806],[112,195,77,0.1700080281235193],[112,195,78,0.1659301454939423],[112,195,79,0.16195253990023933],[112,196,64,0.209158626277178],[112,196,65,0.2092730941779366],[112,196,66,0.2065284285552678],[112,196,67,0.20350446885610218],[112,196,68,0.20021153269060818],[112,196,69,0.1966731229633473],[112,196,70,0.19292123288289484],[112,196,71,0.1889936669907055],[112,196,72,0.18493165464698946],[112,196,73,0.18077767462134464],[112,196,74,0.17657349699513378],[112,196,75,0.17235844823407281],[112,196,76,0.16816790493070788],[112,196,77,0.16403202134999795],[112,196,78,0.15997469554006225],[112,196,79,0.156012778397472],[112,197,64,0.19946694157447317],[112,197,65,0.20129533673274327],[112,197,66,0.20016667832440777],[112,197,67,0.19717815054392632],[112,197,68,0.19392432760920816],[112,197,69,0.19042844472062762],[112,197,70,0.1867219636792878],[112,197,71,0.18284194876758164],[112,197,72,0.17882872902769362],[112,197,73,0.1747237691108483],[112,197,74,0.1705677547384801],[112,197,75,0.16639889847359488],[112,197,76,0.16225147114772218],[112,197,77,0.15815456392859012],[112,197,78,0.15413108564891648],[112,197,79,0.1501969996506078],[112,198,64,0.18972927973224674],[112,198,65,0.1915744462972725],[112,198,66,0.19328127169024525],[112,198,67,0.19079336900472232],[112,198,68,0.18759631957549291],[112,198,69,0.18416087001814882],[112,198,70,0.18051781471479242],[112,198,71,0.17670328692799525],[112,198,72,0.17275648707946786],[112,198,73,0.16871761573517335],[112,198,74,0.16462601713250966],[112,198,75,0.16051853874997868],[112,198,76,0.15642811207499438],[112,198,77,0.1523825593736495],[112,198,78,0.14840363091021982],[112,198,79,0.14450627670699356],[112,199,64,0.17997958482508708],[112,199,65,0.18183353817117093],[112,199,66,0.1835438954651034],[112,199,67,0.18434565978999318],[112,199,68,0.18122443065343163],[112,199,69,0.17786848842808595],[112,199,70,0.17430779901624313],[112,199,71,0.17057733928928723],[112,199,72,0.166714913045868],[112,199,73,0.16275916602661433],[112,199,74,0.15874780556495988],[112,199,75,0.1547160301289618],[112,199,76,0.15069517367521756],[112,199,77,0.14671156939556992],[112,199,78,0.14278563709298242],[112,199,79,0.13893119807773321],[112,200,64,0.1702534830637318],[112,200,65,0.17210647206441831],[112,200,66,0.17381146082060975],[112,200,67,0.17536113063307743],[112,200,68,0.17480019097316107],[112,200,69,0.1715432769724502],[112,200,70,0.16808414346478806],[112,200,71,0.1644563707109408],[112,200,72,0.16069607861934182],[112,200,73,0.15684004656068787],[112,200,74,0.15292402973520935],[112,200,75,0.14898127704778774],[112,200,76,0.14504125512673044],[112,200,77,0.1411285827965125],[112,200,78,0.13726217998578072],[112,200,79,0.13345463472221938],[112,201,64,0.1605866931923622],[112,201,65,0.16242790896444473],[112,201,66,0.16411774834875656],[112,201,67,0.16564642339900068],[112,201,68,0.1670020817884036],[112,201,69,0.1651730735556197],[112,201,70,0.16183438365076677],[112,201,71,0.15832747081729803],[112,201,72,0.15468648111703254],[112,201,73,0.1509460113596007],[112,201,74,0.14713954441447688],[112,201,75,0.1432980751853733],[112,201,76,0.13944893154373958],[112,201,77,0.1356147942113502],[112,201,78,0.1318129192721338],[112,201,79,0.12805456668315865],[112,202,64,0.15101359342782347],[112,202,65,0.15283179501403177],[112,202,66,0.15449637701347552],[112,202,67,0.15599463659242144],[112,202,68,0.1573131769681031],[112,202,69,0.15843337146081513],[112,202,70,0.15554333545946541],[112,202,71,0.15217466172001748],[112,202,72,0.1486692872011358],[112,202,73,0.1450593175555048],[112,202,74,0.1413756491759135],[112,202,75,0.13764672377145226],[112,202,76,0.133897464077063],[112,202,77,0.13014839431577974],[112,202,78,0.1264149487464074],[112,202,79,0.12270697134268557],[112,203,64,0.14156594580468912],[112,203,65,0.14335000123440805],[112,203,66,0.1449793506376325],[112,203,67,0.14643797465762914],[112,203,68,0.14771063505172324],[112,203,69,0.1487791558364984],[112,203,70,0.1491949434344473],[112,203,71,0.1459808960050029],[112,203,72,0.14262648263854458],[112,203,73,0.13916102504577418],[112,203,74,0.13561253206705742],[112,203,75,0.13200660354527852],[112,203,76,0.12836549883720366],[112,203,77,0.12470737316324335],[112,203,78,0.12104568473623302],[112,203,79,0.11738877535078857],[112,204,64,0.1322717789547715],[112,204,65,0.13401112001483712],[112,204,66,0.1355957577112393],[112,204,67,0.1370060096251073],[112,204,68,0.1382245074094485],[112,204,69,0.13923348256493928],[112,204,70,0.14001228317607073],[112,204,71,0.13972994515679463],[112,204,72,0.1365409285199185],[112,204,73,0.13323322081655045],[112,204,74,0.12983165816091818],[112,204,75,0.12635872155889954],[112,204,76,0.12283375608712213],[112,204,77,0.11927233833911965],[112,204,78,0.11568579464522048],[112,204,79,0.11208087234540699],[112,205,64,0.12900835115707607],[112,205,65,0.12690195640783636],[112,205,66,0.12637062547208777],[112,205,67,0.1277244172246354],[112,205,68,0.12888102095894807],[112,205,69,0.12982300043998693],[112,205,70,0.13053117728249947],[112,205,71,0.13098570610879887],[112,205,72,0.1303983242725522],[112,205,73,0.12726116854297728],[112,205,74,0.12401810387332396],[112,205,75,0.12068822399153865],[112,205,76,0.11728771114437837],[112,205,77,0.11382934963396615],[112,205,78,0.11032216756397395],[112,205,79,0.10677120863818822],[112,206,64,0.1292386319134809],[112,206,65,0.12682389050777382],[112,206,66,0.12442389680863164],[112,206,67,0.12200364123776104],[112,206,68,0.11970131952822233],[112,206,69,0.12056908889960129],[112,206,70,0.12119948483241093],[112,206,71,0.12157508284876767],[112,206,72,0.12167952049373246],[112,206,73,0.12123538399650115],[112,206,74,0.11816283787453055],[112,206,75,0.11498687810143247],[112,206,76,0.11172026841229045],[112,206,77,0.10837277193812835],[112,206,78,0.10495092891852699],[112,206,79,0.10145793908123547],[112,207,64,0.12960318388255637],[112,207,65,0.1268677077575123],[112,207,66,0.12414953117339593],[112,207,67,0.12140951850394195],[112,207,68,0.11861561356626074],[112,207,69,0.115744234184247],[112,207,70,0.11277294651126457],[112,207,71,0.11232020008851863],[112,207,72,0.1123402162310567],[112,207,73,0.11208013921169635],[112,207,74,0.1115316195298454],[112,207,75,0.1092524716389423],[112,207,76,0.10613040430251865],[112,207,77,0.10290311895162253],[112,207,78,0.09957446527365933],[112,207,79,0.09614563691575588],[112,208,64,0.13010521181439857],[112,208,65,0.12703675722570543],[112,208,66,0.12398874744472894],[112,208,67,0.1209179065335884],[112,208,68,0.11778932382988472],[112,208,69,0.11457957187657149],[112,208,70,0.11126785388049668],[112,208,71,0.10783597448938861],[112,208,72,0.10426849963803318],[112,208,73,0.1028124164100584],[112,208,74,0.10218929420268709],[112,208,75,0.1012862737881614],[112,208,76,0.10010466660119816],[112,208,77,0.09740881380274544],[112,208,78,0.09417983574820922],[112,208,79,0.09082042671938227],[112,209,64,0.13074268036039652],[112,209,65,0.12732937319929757],[112,209,66,0.12394048310172145],[112,209,67,0.12052871662935113],[112,209,68,0.11705622341204161],[112,209,69,0.11349958789215198],[112,209,70,0.10983957306787141],[112,209,71,0.10606069465629073],[112,209,72,0.10215104554850377],[112,209,73,0.09810210277616208],[112,209,74,0.09390851701027339],[112,209,75,0.09203680572336348],[112,209,76,0.09081053689063495],[112,209,77,0.08933157716332797],[112,209,78,0.08760941254367695],[112,209,79,0.08546216445335332],[112,210,64,0.1315082440187576],[112,210,65,0.1277392423630491],[112,210,66,0.12399964175212644],[112,210,67,0.12023838158470904],[112,210,68,0.1164146571556317],[112,210,69,0.11250491590735004],[112,210,70,0.10849136536839606],[112,210,71,0.10436114469891475],[112,210,72,0.10010580515092712],[112,210,73,0.09572080117398091],[112,210,74,0.09120499293623881],[112,210,75,0.08656016101453753],[112,210,76,0.08179053398657132],[112,210,77,0.08018482174041947],[112,210,78,0.0784653505926112],[112,210,79,0.07654076506181759],[112,211,64,0.13238936124291636],[112,211,65,0.128255414167239],[112,211,66,0.1241570018640265],[112,211,67,0.12003966262177371],[112,211,68,0.11585969093702853],[112,211,69,0.11159324539781493],[112,211,70,0.1072238279268844],[112,211,71,0.10274105392406116],[112,211,72,0.09813978605607672],[112,211,73,0.09341930752735068],[112,211,74,0.08858253634488286],[112,211,75,0.08363528202830373],[112,211,76,0.07858554614874176],[112,211,77,0.07344286800840066],[112,211,78,0.06951203855052138],[112,211,79,0.06761910570104207],[112,212,64,0.1333685856999826],[112,212,65,0.12886248926373922],[112,212,66,0.12439930465297044],[112,212,67,0.11992163702735036],[112,212,68,0.11538299841652062],[112,212,69,0.11075910750820814],[112,212,70,0.1060345798855769],[112,212,71,0.10120130514106179],[112,212,72,0.09625723730947595],[112,212,73,0.091205253913687],[112,212,74,0.08605208586075554],[112,212,75,0.08080732031840293],[112,212,76,0.07548247858702829],[112,212,77,0.07009017086245785],[112,212,78,0.06464332966154022],[112,212,79,0.059154523555776724],[112,213,64,0.13442403730978822],[112,213,65,0.12954098853872148],[112,213,66,0.12470952355508937],[112,213,67,0.11986986882705446],[112,213,68,0.11497293270595263],[112,213,69,0.10999384789464152],[112,213,70,0.10491813752042967],[112,213,71,0.09973971453039988],[112,213,72,0.09445933799560316],[112,213,73,0.08908316703361256],[112,213,74,0.08362141528188959],[112,213,75,0.07808710870083649],[112,213,76,0.07249494932392606],[112,213,77,0.06686028740449226],[112,213,78,0.06119820423744237],[112,213,79,0.05552270775876815],[112,214,64,0.13553005585138347],[112,214,65,0.13026790542856864],[112,214,66,0.1250673178769362],[112,214,67,0.1198667649997347],[112,214,68,0.11461478537332666],[112,214,69,0.10928578887979516],[112,214,70,0.10386598062661417],[112,214,71,0.09835100447846205],[112,214,72,0.09274408015967564],[112,214,73,0.08705426642913014],[112,214,74,0.08129485391339152],[112,214,75,0.0754818909858443],[112,214,76,0.06963284587228032],[112,214,77,0.06376540794908],[112,214,78,0.05789643098181719],[112,214,79,0.05204102082968413],[112,215,64,0.13665804006960386],[112,215,65,0.13101744435419502],[112,215,66,0.1254496733642188],[112,215,67,0.11989211988892409],[112,215,68,0.11429123536192609],[112,215,69,0.10862058342187254],[112,215,70,0.1028668125781581],[112,215,71,0.09702697172563751],[112,215,72,0.09110634831408265],[112,215,73,0.08511646007515028],[112,215,74,0.07907320449499157],[112,215,75,0.07299516997952683],[112,215,76,0.06690211240824752],[112,215,77,0.06081360051335388],[112,215,78,0.05474783325777089],[112,215,79,0.048720632118168426],[112,216,64,0.1377774753480631],[112,216,65,0.13176194824632345],[112,216,66,0.12583173257242977],[112,216,67,0.11992385061261912],[112,216,68,0.11398299055010895],[112,216,69,0.10798176355118018],[112,216,70,0.10190701664318076],[112,216,71,0.09575685333503355],[112,216,72,0.08953819795958358],[112,216,73,0.0832645396938625],[112,216,74,0.0769538609879178],[112,216,75,0.0706267548510522],[112,216,76,0.06430473515154697],[112,216,77,0.05800874378473612],[112,216,78,0.05175785825866808],[112,216,79,0.04556820293692445],[112,217,64,0.13885715313365368],[112,217,65,0.13247301825749763],[112,217,66,0.12618781804998205],[112,217,67,0.11993892640488679],[112,217,68,0.11366962481499499],[112,217,69,0.10735148607011691],[112,217,70,0.10097131128292561],[112,217,71,0.09452789314021241],[112,217,72,0.08802933570638133],[112,217,73,0.08149057829959878],[112,217,74,0.07493112864699296],[112,217,75,0.06837301020553133],[112,217,76,0.06183892820379407],[112,217,77,0.055350658619562475],[112,217,78,0.04892766396334781],[112,217,79,0.042585939389371365],[112,218,64,0.13986658539938499],[112,218,65,0.1331228288636721],[112,218,66,0.12649265145671404],[112,218,67,0.11991449494044297],[112,218,68,0.11333061358651453],[112,218,69,0.10671147844126878],[112,218,70,0.10004360729722088],[112,218,71,0.09332611146997243],[112,218,72,0.08656780372443634],[112,218,73,0.0797845326300637],[112,218,74,0.07299674895519342],[112,218,75,0.06622730935620033],[112,218,76,0.05949952225044554],[112,218,77,0.05283544038622903],[112,218,78,0.04625440424267086],[112,218,79,0.039771840008654274],[112,219,64,0.1407776175145721],[112,219,65,0.13368564164659624],[112,219,66,0.12672277183499847],[112,219,67,0.11982920879387374],[112,219,68,0.11294657098522436],[112,219,69,0.10604418790168321],[112,219,70,0.09910806979868364],[112,219,71,0.09213728107383164],[112,219,72,0.08514087138350636],[112,219,73,0.07813505325569213],[112,219,74,0.07114063213776306],[112,219,75,0.06418069443239839],[112,219,76,0.057278558676697684],[112,219,77,0.050455994612174405],[112,219,78,0.04373171448163066],[112,219,79,0.03712014047410167],[112,220,64,0.14156624295102083],[112,220,65,0.13413952111492228],[112,220,66,0.12685815632431982],[112,220,67,0.11966475526583754],[112,220,68,0.11250069172517534],[112,220,69,0.10533413693655552],[112,220,70,0.09815038810027696],[112,220,71,0.09094811228102194],[112,220,72,0.08373613705885696],[112,220,73,0.07653050528004401],[112,220,74,0.06935180009896788],[112,220,75,0.0622227460897248],[112,220,76,0.055166091780421506],[112,220,77,0.04820277852844925],[112,220,78,0.04135040021623672],[112,220,79,0.03462195780553704],[112,221,64,0.14221462328833936],[112,221,65,0.13446825596443931],[112,221,66,0.1268840466604036],[112,221,67,0.1194075928666383],[112,221,68,0.11198040102917968],[112,221,69,0.10456948831965046],[112,221,70,0.09715925668286403],[112,221,71,0.08974765051545604],[112,221,72,0.08234284317543425],[112,221,73,0.07496020264750172],[112,221,74,0.06761954273365763],[112,221,75,0.06034266570260563],[112,221,76,0.05315120188274957],[112,221,77,0.046064751225704],[112,221,78,0.03909933140578181],[112,221,79,0.03226613655734235],[112,222,64,0.14271331698804013],[112,222,65,0.13466348919322155],[112,222,66,0.12679298482399642],[112,222,67,0.11905089778022272],[112,222,68,0.11137921584524965],[112,222,69,0.10374382297803712],[112,222,70,0.09612807046835008],[112,222,71,0.0885288893565389],[112,222,72,0.08095340763870108],[112,222,73,0.07341585915734689],[112,222,74,0.06593479065520766],[112,222,75,0.05853057301456628],[112,222,76,0.05122322223659876],[112,222,77,0.04403053523850385],[112,222,78,0.03696654506636348],[112,222,79,0.03004029964033347],[112,223,64,0.1430637203810175],[112,223,65,0.13472706047223823],[112,223,66,0.12658706119870164],[112,223,67,0.11859672363547046],[112,223,68,0.11069882066641286],[112,223,69,0.10285813396176456],[112,223,70,0.09505683765661882],[112,223,71,0.08729060237762054],[112,223,72,0.07956517485117195],[112,223,73,0.07189325934245505],[112,223,74,0.06429170744814763],[112,223,75,0.05677902229489107],[112,223,76,0.04937318271237183],[112,223,77,0.04208979245825367],[112,223,78,0.03494055907803134],[112,223,79,0.027932106487844367],[112,224,64,0.14328072425345417],[112,224,65,0.13467356412317122],[112,224,66,0.12628037855890117],[112,224,67,0.1180583778836175],[112,224,68,0.1099513612384363],[112,224,69,0.1019230397918304],[112,224,70,0.09395431338750775],[112,224,71,0.08603939700704755],[112,224,72,0.0781823895366133],[112,224,73,0.07039415240299166],[112,224,74,0.06268950459442688],[112,224,75,0.05508474009858847],[112,224,76,0.047595473294873805],[112,224,77,0.04023481733517045],[112,224,78,0.033011900042206714],[112,224,79,0.02593072134944092],[112,225,64,0.14339558931893773],[112,225,65,0.1345331259695739],[112,225,66,0.1259017351345029],[112,225,67,0.11746301801749097],[112,225,68,0.10916195938796144],[112,225,69,0.10096122041888665],[112,225,70,0.09284035745924318],[112,225,71,0.08479199363787926],[112,225,72,0.07681839658558158],[112,225,73,0.06892837238732111],[112,225,74,0.0611344822335387],[112,225,75,0.05345058774644766],[112,225,76,0.04588973045290665],[112,225,77,0.03846235036357197],[112,225,78,0.031174848104947812],[112,225,79,0.024028494538391097],[112,226,64,0.14345904372513282],[112,226,65,0.13435440220073988],[112,226,66,0.12549752988476268],[112,226,67,0.1168544707657836],[112,226,68,0.10837145211303907],[112,226,69,0.10001007894656434],[112,226,70,0.09174851926811077],[112,226,71,0.08357773315747183],[112,226,72,0.07549807009266173],[112,226,73,0.06751618778014533],[112,226,74,0.05964229889501019],[112,226,75,0.05188775162992349],[112,226,76,0.04426294943964593],[112,226,77,0.036775614848927315],[112,226,78,0.02942940167209739],[112,226,79,0.02222285947436698],[112,227,64,0.14354285416454615],[112,227,65,0.13420686680997232],[112,227,66,0.12513468840791253],[112,227,67,0.11629677839862032],[112,227,68,0.10764058369707134],[112,227,69,0.09912661779931231],[112,227,70,0.09073163541348954],[112,227,71,0.08244492199178918],[112,227,72,0.07426491250967052],[112,227,73,0.06619613652228021],[112,227,74,0.058246495822106774],[112,227,75,0.050424880513422594],[112,227,76,0.042739128800005126],[112,227,77,0.035194335257264765],[112,227,78,0.027791511834614525],[112,227,79,0.02052660531053616],[112,228,64,0.14372070122469746],[112,228,65,0.13416507610461176],[112,228,66,0.12488803457589905],[112,228,67,0.11586459735723008],[112,228,68,0.10704352546313421],[112,228,69,0.09838424759155893],[112,228,70,0.08986210788634312],[112,228,71,0.08146472356804485],[112,228,72,0.07318862995398123],[112,228,73,0.06503625569041045],[112,228,74,0.057013234432932755],[112,228,75,0.04912605869640091],[112,228,76,0.0413800810707733],[112,228,77,0.033777867468732126],[112,228,78,0.02631790654099527],[112,228,79,0.018993678867904443],[112,229,64,0.14404603645245087],[112,229,65,0.1342841292767351],[112,229,66,0.12481372963755301],[112,229,67,0.11561474461843277],[112,229,68,0.1066374949112711],[112,229,69,0.09784040818831022],[112,229,70,0.08919746452624332],[112,229,71,0.08069463737688548],[112,229,72,0.07232657561909735],[112,229,73,0.06409361840195454],[112,229,74,0.055999148905025095],[112,229,75,0.04804729262255234],[112,229,76,0.04024096524973285],[112,229,77,0.03258027471546718],[112,229,78,0.025061281373483072],[112,229,79,0.01767511983443217],[112,230,64,0.14455229721789906],[112,230,65,0.13459869020113455],[112,230,66,0.12494723746327334],[112,230,67,0.11558315757056746],[112,230,68,0.10645869278871932],[112,230,69,0.09753143916617157],[112,230,70,0.08877411485363065],[112,230,71,0.08017110516218993],[112,230,72,0.0717151974268033],[112,230,73,0.06340464947376397],[112,230,74,0.05524059767790454],[112,230,75,0.04722481007458736],[112,230,76,0.03935778946190223],[112,230,77,0.031637230894204164],[112,230,78,0.024056837435790634],[112,230,79,0.016605497514951495],[112,231,64,0.14525563436433375],[112,231,65,0.13512571611835272],[112,231,66,0.12530604649071864],[112,231,67,0.11578761498191675],[112,231,68,0.10652503224395787],[112,231,69,0.09747532162181324],[112,231,70,0.0886101044265832],[112,231,71,0.079912273501413],[112,231,72,0.07137280068806767],[112,231,73,0.06298787664154887],[112,231,74,0.0547563888029098],[112,231,75,0.04667774282136329],[112,231,76,0.038750032189314935],[112,231,77,0.030968560322450815],[112,231,78,0.023324718788048676],[112,231,79,0.015805224860076714],[112,232,64,0.14615749264825936],[112,232,65,0.1358670379105381],[112,232,66,0.12589224376557834],[112,232,67,0.11623031170867122],[112,232,68,0.10683872458783263],[112,232,69,0.09767428119142199],[112,232,70,0.08870773713226696],[112,232,71,0.07992063341658079],[112,232,72,0.07130219939616815],[112,232,73,0.06284658454461889],[112,232,74,0.05455042465310737],[112,232,75,0.04641074752748027],[112,232,76,0.038423222746612695],[112,232,77,0.03058075951689292],[112,232,78,0.022872456135727356],[112,232,79,0.01528290405988578],[112,233,64,0.14724704259438512],[112,233,65,0.13681179024069698],[112,233,66,0.12669493905599535],[112,233,67,0.1169002848543636],[112,233,68,0.10738871911116174],[112,233,69,0.0981172494708581],[112,233,70,0.08905606234954203],[112,233,71,0.0801855337125953],[112,233,72,0.07149325263171454],[112,233,73,0.06297136777228589],[112,233,74,0.05461426215139426],[112,233,75,0.046416561001643264],[112,233,76,0.03837147706380633],[112,233,77,0.03046949711639947],[112,233,78,0.02269741303912147],[112,233,79,0.015037700201330911],[112,234,64,0.14850346215724555],[112,234,65,0.1379386899996857],[112,234,66,0.12769253755531298],[112,234,67,0.11777568997601136],[112,234,68,0.10815299564672314],[112,234,69,0.09878218263607756],[112,234,70,0.08963322591728255],[112,234,71,0.08068556713778376],[112,234,72,0.07192528536029263],[112,234,73,0.06334258246228379],[112,234,74,0.05492958823772978],[112,234,75,0.04667848975233397],[112,234,76,0.03857998900475473],[112,234,77,0.030622092445460103],[112,234,78,0.022789235408390958],[112,234,79,0.015061744020026318],[112,235,64,0.14989806636154673],[112,235,65,0.1392181612894349],[112,235,66,0.12885485947571151],[112,235,67,0.11882592572278027],[112,235,68,0.10910070835546466],[112,235,69,0.09963823585585815],[112,235,70,0.09040868363566004],[112,235,71,0.0813908282545846],[112,235,72,0.07256939269712741],[112,235,73,0.06393269573670014],[112,235,74,0.055470610094046274],[112,235,75,0.04717283362066402],[112,235,76,0.03902747725633503],[112,235,77,0.031019973026874773],[112,235,78,0.02313230487028236],[112,235,79,0.015342564607867044],[112,236,64,0.15139628287964685],[112,236,65,0.1406143049608551],[112,236,66,0.1301451046287383],[112,236,67,0.12001360508852123],[112,236,68,0.11019417901282991],[112,236,69,0.10064779188428007],[112,236,70,0.0913452758216596],[112,236,71,0.08226504170059028],[112,236,72,0.07339062650387054],[112,236,73,0.06470853205042502],[112,236,74,0.05620635943444269],[112,236,75,0.04787124304988989],[112,236,76,0.03968858761465613],[112,236,77,0.031641111147095266],[112,236,78,0.02370819639193582],[112,236,79,0.015865552743546722],[112,237,64,0.15295945517316764],[112,237,65,0.14208669392725698],[112,237,66,0.1315216428482691],[112,237,67,0.12129635380012722],[112,237,68,0.11139072001789731],[112,237,69,0.10176832380046119],[112,237,70,0.09240114268227537],[112,237,71,0.08326754045510366],[112,237,72,0.07435004384260736],[112,237,73,0.06563339594606056],[112,237,74,0.057102890381530144],[112,237,75,0.04874298959539124],[112,237,76,0.04053623040808069],[112,237,77,0.03246241939926396],[112,237,78,0.02449812031727023],[112,237,79,0.01661643527263855],[112,238,64,0.154543116315441],[112,238,65,0.14358853647585287],[112,238,66,0.13293607670152374],[112,238,67,0.12262479196692966],[112,238,68,0.11264055872336502],[112,238,69,0.10295028508848607],[112,238,70,0.09352760172603156],[112,238,71,0.08435115008487101],[112,238,72,0.07540261501365626],[112,238,73,0.06666501795147392],[112,238,74,0.058121274170688936],[112,238,75,0.04975301714039168],[112,238,76,0.04153969266862546],[112,238,77,0.03345792507249589],[112,238,78,0.025481157223341006],[112,238,79,0.01757956592001665],[112,239,64,0.15609746914631561],[112,239,65,0.1450679100210436],[112,239,66,0.13433506150813107],[112,239,67,0.12394475953181677],[112,239,68,0.1138892780564353],[112,239,69,0.10413956951687962],[112,239,70,0.09467143190897741],[112,239,71,0.08546410920624477],[112,239,72,0.07649860499246215],[112,239,73,0.06775623923950891],[112,239,74,0.05921745123364165],[112,239,75,0.05086085127350651],[112,239,76,0.042662523381979955],[112,239,77,0.034595580894869325],[112,239,78,0.026629976418403242],[112,239,79,0.018732567284702767],[112,240,64,0.15758598032029836],[112,240,65,0.14648920481860606],[112,240,66,0.13568398273917617],[112,240,67,0.1252225418446087],[112,240,68,0.11510386112529433],[112,240,69,0.10530362592311823],[112,240,70,0.09580031456614621],[112,240,71,0.08657411985719163],[112,240,72,0.0776055641630904],[112,240,73,0.06887433928100761],[112,240,74,0.06035837359045164],[112,240,75,0.0520331286494101],[112,240,76,0.04387112704265915],[112,240,77,0.0358417129431297],[112,240,78,0.027911046508829446],[112,240,79,0.020042332908420352],[112,241,64,0.1589828291628473],[112,241,65,0.14782789699128818],[112,241,66,0.1369594800522733],[112,241,67,0.12643563113574444],[112,241,68,0.11626221242758052],[112,241,69,0.10642027489790197],[112,241,70,0.09689147598019583],[112,241,71,0.08765732404454704],[112,241,72,0.07869810944243188],[112,241,73,0.06999204131854299],[112,241,74,0.06151459219104242],[112,241,75,0.05323805198224964],[112,241,76,0.045131292863561386],[112,241,77,0.03715974596443279],[112,241,78,0.029285590690951307],[112,241,79,0.02146815710484574],[112,242,64,0.1602701558372574],[112,242,65,0.1490669519941174],[112,242,66,0.13814517955997033],[112,242,67,0.12756798778386683],[112,242,68,0.11734816470064838],[112,242,69,0.10747268404036947],[112,242,70,0.09792685199404956],[112,242,71,0.08869386950800463],[112,242,72,0.07975408734601559],[112,242,73,0.07108444757659624],[112,242,74,0.06265811297585225],[112,242,75,0.0544442855486536],[112,242,76,0.04640821508551923],[112,242,77,0.03851139839260541],[112,242,78,0.03071196956275407],[112,242,79,0.022682748531765752],[112,243,64,0.16143723907263655],[112,243,65,0.1501960646489246],[112,243,66,0.13923100527182422],[112,243,67,0.12860943742764494],[112,243,68,0.11835097972852539],[112,243,69,0.1084489921854013],[112,243,70,0.09889285578480096],[112,243,71,0.08966784046671152],[112,243,72,0.08075468550507844],[112,243,73,0.07212934695660625],[112,243,74,0.0637629131631714],[112,243,75,0.055621689037202104],[112,243,76,0.04766744960713188],[112,243,77,0.03985786305415505],[112,243,78,0.03214708323706552],[112,243,79,0.02107601739035075],[112,244,64,0.162479643954],[112,244,65,0.15121086560829342],[112,244,66,0.14021245309865882],[112,244,67,0.129555025563246],[112,244,68,0.11926480027626739],[112,244,69,0.10934187768439789],[112,244,70,0.09978008240554169],[112,244,71,0.09056711806769441],[112,244,72,0.08168446740165737],[112,244,73,0.07310744034752574],[112,244,74,0.0648053706701073],[112,244,75,0.056741961353961645],[112,244,76,0.04887577882916204],[112,244,77,0.0411608958666987],[112,244,78,0.03131332860516785],[112,244,79,0.019555632044477717],[112,245,64,0.16339833927185063],[112,245,65,0.15211209368979192],[112,245,66,0.14108982680000912],[112,245,67,0.13040432892796158],[112,245,68,0.12008805234965951],[112,245,69,0.11014806982250758],[112,245,70,0.10058294905940099],[112,245,71,0.09138316938557187],[112,245,72,0.08253132906660005],[112,245,73,0.07400248220775535],[112,245,74,0.0657646052537888],[112,245,75,0.057779192924383146],[112,245,76,0.05000198323259715],[112,245,77,0.04191959393551832],[112,245,78,0.030054983871489166],[112,245,79,0.018146088748922252],[112,246,64,0.1641987840401617],[112,246,65,0.1529047336274457],[112,246,66,0.141867435355362],[112,246,67,0.131160723062389],[112,246,68,0.1208227970606993],[112,246,69,0.11086780252607945],[112,246,70,0.10129927012663335],[112,246,71,0.0921107638626291],[112,246,72,0.08328637650545229],[112,246,73,0.07480133707248407],[112,246,74,0.06662272993363791],[112,246,75,0.058710324980523004],[112,246,76,0.05101751813150999],[112,246,77,0.040925593500067005],[112,246,78,0.02891919279067828],[112,246,79,0.01687121024877975],[112,247,64,0.16488998291826193],[112,247,65,0.15359711890898392],[112,247,66,0.14255275135526588],[112,247,67,0.13183060555187204],[112,247,68,0.12147403147885548],[112,247,69,0.11150420960263994],[112,247,70,0.10192976604032654],[112,247,71,0.0927476161362954],[112,247,72,0.08394372265543926],[112,247,73,0.07549394965620719],[112,247,74,0.06736501124629243],[112,247,75,0.05951551428627981],[112,247,76,0.05189709397699285],[112,247,77,0.04005084486583608],[112,247,78,0.027922172334355167],[112,247,79,0.015752862056823205],[112,248,64,0.16548351041383605],[112,248,65,0.15419999950463015],[112,248,66,0.14315553014001817],[112,248,67,0.13242257457305417],[112,248,68,0.12204893796533309],[112,248,69,0.11206266086268427],[112,248,70,0.10247750520011024],[112,248,71,0.09329395427845315],[112,248,72,0.08450020273436107],[112,248,73,0.07607322725479257],[112,248,74,0.06797993689340205],[112,248,75,0.0601784017334633],[112,248,76,0.051414615006423595],[112,248,77,0.039303171071746974],[112,248,78,0.027077163459741517],[112,248,79,0.014809764841209563],[112,249,64,0.16599250390264403],[112,249,65,0.15472557444772506],[112,249,66,0.1436868895631084],[112,249,67,0.13294656251514014],[112,249,68,0.12255608162436019],[112,249,69,0.11255003860004786],[112,249,70,0.10294727822829682],[112,249,71,0.09375201257007187],[112,249,72,0.08495500692155737],[112,249,73,0.07653483320736554],[112,249,74,0.06845918937151939],[112,249,75,0.06068628324055237],[112,249,76,0.0508622210029627],[112,249,77,0.038687006867671486],[112,249,78,0.026393573275572745],[112,249,79,0.014056404909935026],[112,250,64,0.16643062567666325],[112,250,65,0.15518648940038404],[112,250,66,0.14415835042512004],[112,250,67,0.13341292460916243],[112,250,68,0.12300455566332517],[112,250,69,0.11297395405721258],[112,250,70,0.10334490401098523],[112,250,71,0.09412544805736531],[112,250,72,0.08530922941425523],[112,250,73,0.07687689025768851],[112,250,74,0.06879752422496666],[112,250,75,0.0610301814062752],[112,250,76,0.050407011161260354],[112,250,77,0.03820287345878483],[112,250,78,0.025876220177352714],[112,250,79,0.01350204490880423],[112,251,64,0.16681099442593098],[112,251,65,0.1555947995285707],[112,251,66,0.14458083781135808],[112,251,67,0.1338314826822946],[112,251,68,0.12340307463274046],[112,251,69,0.11334190367410737],[112,251,70,0.10367646712843133],[112,251,71,0.09441868028284311],[112,251,72,0.08556533303054663],[112,251,73,0.07709959275871096],[112,251,74,0.06899255163802609],[112,251,75,0.06120481641283586],[112,251,76,0.050042007474139096],[112,251,77,0.037846959170949435],[112,251,78,0.025524684036100434],[112,251,79,0.013149836967579041],[112,252,64,0.1671450867730538],[112,252,65,0.15596089822314935],[112,252,66,0.1449636437758688],[112,252,67,0.13421052436097847],[112,252,68,0.12375901572051039],[112,252,69,0.11366036511694402],[112,252,70,0.10394748646782383],[112,252,71,0.09463615375973998],[112,252,72,0.08572652868659669],[112,252,73,0.07720472679625498],[112,252,74,0.06904442018584463],[112,252,75,0.06120847474253871],[112,252,76,0.04975672172579498],[112,252,77,0.03761080795943696],[112,252,78,0.0253327635824015],[112,252,79,0.012996040633868913],[112,253,64,0.16744160971250116],[112,253,65,0.15629241243607678],[112,253,66,0.1453133520453159],[112,253,67,0.13455575827603644],[112,253,68,0.1240774085027671],[112,253,69,0.11393383330750943],[112,253,70,0.1041620150277748],[112,253,71,0.09478152296189882],[112,253,72,0.08579606926110844],[112,253,73,0.07719509746922326],[112,253,74,0.06895540169501284],[112,253,75,0.06104277436770366],[112,253,76,0.049537171287254864],[112,253,77,0.03748111767206331],[112,253,78,0.02528804316482203],[112,253,79,0.013029348022690176],[112,254,64,0.1677053450613696],[112,254,65,0.1565930656560265],[112,254,66,0.14563272567056323],[112,254,67,0.13486922607735083],[112,254,68,0.12435987380805506],[112,254,69,0.11416379692578717],[112,254,70,0.10432167117021376],[112,254,71,0.09485675983622312],[112,254,72,0.08577645757773264],[112,254,73,0.0770738627575274],[112,254,74,0.06872937632820053],[112,254,75,0.060712325200502015],[112,254,76,0.0493660048293543],[112,254,77,0.03743964994117567],[112,254,78,0.025371571076999062],[112,254,79,0.013230318680076387],[112,255,64,0.16676374756686177],[112,255,65,0.15686150982641822],[112,255,66,0.14591955883294522],[112,255,67,0.13514817234641066],[112,255,68,0.12460351263443341],[112,255,69,0.1143476561414777],[112,255,70,0.10442460185384309],[112,255,71,0.09486118411344878],[112,255,72,0.0856685684883015],[112,255,73,0.0768437736375561],[112,255,74,0.06837121720503321],[112,255,75,0.06022428374925913],[112,255,76,0.049222739383380114],[112,255,77,0.03746325351429435],[112,255,78,0.025557651638486976],[112,255,79,0.013570926709306935],[112,256,64,0.16540385474405422],[112,256,65,0.1570901278116285],[112,256,66,0.14616549431675188],[112,256,67,0.13538387380289135],[112,256,68,0.12479974637110254],[112,256,69,0.11447758264418474],[112,256,70,0.10446437869534422],[112,256,71,0.09479041699682415],[112,256,72,0.08547068532829218],[112,256,73,0.07650632037042591],[112,256,74,0.06788607410567653],[112,256,75,0.05958780112302242],[112,256,76,0.04908411003035687],[112,256,77,0.03752400273727071],[112,256,78,0.025813753177550285],[112,256,79,0.014014222735200777],[112,257,64,0.1638307922554935],[112,257,65,0.15550832644556148],[112,257,66,0.14635482306248387],[112,257,67,0.13556044338585016],[112,257,68,0.12493312316212728],[112,257,69,0.11453933619323739],[112,257,70,0.10442884061718727],[112,257,71,0.09463527170045141],[112,257,72,0.08517746411728298],[112,257,73,0.07606079843095914],[112,257,74,0.06727857001371734],[112,257,75,0.05881337861604467],[112,257,76,0.04892454804423153],[112,257,77,0.03758946630285096],[112,257,78,0.026100546181431327],[112,257,79,0.01451412401650972],[112,258,64,0.16206491564057865],[112,258,65,0.15371559460650214],[112,258,66,0.14527301121771138],[112,258,67,0.13565377684825203],[112,258,68,0.1249803518427504],[112,258,69,0.11451137105099864],[112,258,70,0.10429925698891876],[112,258,71,0.09438095717405236],[112,258,72,0.08477916196958736],[112,258,73,0.0755035464465164],[112,258,74,0.06655203462637714],[112,258,75,0.05791208443942444],[112,258,76,0.04871711822531494],[112,258,77,0.03762368120182595],[112,258,78,0.026372919577235907],[112,258,79,0.01501647613793352],[112,259,64,0.1601392464057984],[112,259,65,0.15176930396547522],[112,259,66,0.1433316811721103],[112,259,67,0.13482149426349674],[112,259,68,0.12491635944436277],[112,259,69,0.11437238777052243],[112,259,70,0.10405865952447645],[112,259,71,0.09401532855305803],[112,259,72,0.08426885457725834],[112,259,73,0.07483314039335381],[112,259,74,0.06571069120465337],[112,259,75,0.05689379454375835],[112,259,76,0.048365719222811146],[112,259,77,0.037599163027182664],[112,259,78,0.02659817578246004],[112,259,79,0.015483911559518681],[112,260,64,0.15808819037254918],[112,260,65,0.14969997632659598],[112,260,66,0.14126897836095664],[112,260,67,0.13279806122507734],[112,260,68,0.12424697086770489],[112,260,69,0.11410985489276212],[112,260,70,0.10369962889822275],[112,260,71,0.09353585739883208],[112,260,72,0.08364851371750653],[112,260,73,0.07405551341544273],[112,260,74,0.06476377003807865],[112,260,75,0.055770270792314655],[112,260,76,0.04706317071536035],[112,260,77,0.03749583705774276],[112,260,78,0.02675595110447191],[112,260,79,0.015896699655466688],[112,261,64,0.15593889346512682],[112,261,65,0.14753138214332967],[112,261,66,0.13910481333814023],[112,261,67,0.13066989107367286],[112,261,68,0.1221895218271187],[112,261,69,0.11359765013254591],[112,261,70,0.10321960699952128],[112,261,71,0.09294445474557878],[112,261,72,0.0829242561717959],[112,261,73,0.07318059533252334],[112,261,74,0.06372450984432379],[112,261,75,0.05455746423875489],[112,261,76,0.045672340467252354],[112,261,77,0.03705444422299176],[112,261,78,0.02682114146988033],[112,261,79,0.016229508371734713],[112,262,64,0.15371149887211885],[112,262,65,0.1452808666765083],[112,262,66,0.13685335055145614],[112,262,67,0.12844752050368566],[112,262,68,0.12002986953114418],[112,262,69,0.11153441869132391],[112,262,70,0.1026200871084705],[112,262,71,0.09224656984482385],[112,262,72,0.08210536580605361],[112,262,73,0.07222127592228669],[112,262,74,0.06260908200861366],[112,262,75,0.05327442092082743],[112,262,76,0.044214673517761774],[112,262,77,0.035419867215614666],[112,262,78,0.02676493259518706],[112,262,79,0.01645237891928257],[112,263,64,0.15141935446448032],[112,263,65,0.14295951628133066],[112,263,66,0.134523137181387],[112,263,67,0.12613658268949898],[112,263,68,0.11777037024699666],[112,263,69,0.10935937179305955],[112,263,70,0.10085045298053646],[112,263,71,0.09145088141058585],[112,263,72,0.08120385870536612],[112,263,73,0.07119281352015976],[112,263,74,0.06143581429990526],[112,263,75,0.05194229523843957],[112,263,76,0.04271384685761101],[112,263,77,0.03374501680438059],[112,263,78,0.025024119765764498],[112,263,79,0.016532730944507676],[112,264,64,0.14906886057202923],[112,264,65,0.14057196517965684],[112,264,66,0.13211687558392576],[112,264,67,0.12373756451022475],[112,264,68,0.11540899044050099],[112,264,69,0.10706770604133949],[112,264,70,0.09866120530429348],[112,264,71,0.09014832261830445],[112,264,72,0.08023434082882236],[112,264,73,0.07011251817212437],[112,264,74,0.060224669649547584],[112,264,75,0.05058359767797109],[112,264,76,0.04119476335168339],[112,264,77,0.03205698836057208],[112,264,78,0.023163161539248734],[112,264,79,0.014500949072621873],[112,265,64,0.1466589550028034],[112,265,65,0.13811583973719735],[112,265,66,0.12963083651326782],[112,265,67,0.1212452102155884],[112,265,68,0.11293873015811601],[112,265,69,0.10465048001412607],[112,265,70,0.0963294005127121],[112,265,71,0.08793477424200391],[112,265,72,0.0792141604282626],[112,265,73,0.06899971159540524],[112,265,74,0.05899698229335458],[112,265,75,0.049221679263915616],[112,265,76,0.03968276088859089],[112,265,77,0.03038304381489041],[112,265,78,0.02131980845810012],[112,265,79,0.018569779693225395],[112,266,64,0.1441802327831316],[112,266,65,0.1355808378477295],[112,266,66,0.1270539108671972],[112,266,67,0.1186475694125072],[112,266,68,0.11034669864275289],[112,266,69,0.10209375266095275],[112,266,70,0.09383993208706283],[112,266,71,0.08554573080681885],[112,266,72,0.07718033136716371],[112,266,73,0.06787596576594947],[112,266,74,0.05777545315700171],[112,266,75,0.047880454710596335],[112,266,76,0.0382030388523146],[112,266,77,0.028749722248084173],[112,266,78,0.02556630166499122],[112,266,79,0.023161466858765113],[112,267,64,0.14161369864889697],[112,267,65,0.13294744156791263],[112,267,66,0.12436629822395785],[112,267,67,0.11592468776022564],[112,267,68,0.1076128406724652],[112,267,69,0.09937738258866004],[112,267,70,0.09117255262502091],[112,267,71,0.08296078784934749],[112,267,72,0.07471216383410653],[112,267,73,0.06640384971374357],[112,267,74,0.056584405976327634],[112,267,75,0.046584365869748],[112,267,76,0.03678030364303999],[112,267,77,0.03342346677957303],[112,267,78,0.03071030300169718],[112,267,79,0.02800209919900228],[112,268,64,0.13892915083245222],[112,268,65,0.13018526164884325],[112,268,66,0.1215378309265666],[112,268,67,0.11304693923171974],[112,268,68,0.10470831256290752],[112,268,69,0.09647348723616493],[112,268,70,0.08830045774894521],[112,268,71,0.0801542754537702],[112,268,72,0.07200652549873644],[112,268,73,0.06383482805175092],[112,268,74,0.055450305288295074],[112,268,75,0.04535858672396193],[112,268,76,0.04211499781263241],[112,268,77,0.03911988789563224],[112,268,78,0.03611369089460309],[112,268,79,0.03310069143482387],[112,269,64,0.1360831951656882],[112,269,65,0.1272510130748977],[112,269,66,0.11852593291967553],[112,269,67,0.10997299923126484],[112,269,68,0.10159350718917844],[112,269,69,0.09334456133596603],[112,269,70,0.08518854164822423],[112,269,71,0.07709369497364676],[112,269,72,0.06903364163634082],[112,269,73,0.06098691707041577],[112,269,74,0.05328370749483495],[112,269,75,0.05157768258350465],[112,269,76,0.04834975397132059],[112,269,77,0.045080378293441276],[112,269,78,0.04178103258942826],[112,269,79,0.038460398855745356],[112,270,64,0.13301688895809738],[112,270,65,0.12408612114693789],[112,270,66,0.11527321295547503],[112,270,67,0.10664745825285601],[112,270,68,0.09821572776053389],[112,270,69,0.0899412544212094],[112,270,70,0.0817913240137639],[112,270,71,0.07373784145064712],[112,270,72,0.06575686345883727],[112,270,73,0.05902880384334307],[112,270,74,0.058188196737333754],[112,270,75,0.05717063539929346],[112,270,76,0.05485366364341921],[112,270,77,0.05130838753693101],[112,270,78,0.04771198645383624],[112,270,79,0.04407759949925437],[112,271,64,0.12968604687419566],[112,271,65,0.12064721761020253],[112,271,66,0.11173783437392548],[112,271,67,0.10303071538252614],[112,271,68,0.09453823682375215],[112,271,69,0.08623020225351175],[112,271,70,0.07807919819206532],[112,271,71,0.07006112122740624],[112,271,72,0.06444124141183356],[112,271,73,0.06372678146859656],[112,271,74,0.06289253790309987],[112,271,75,0.061922219550063835],[112,271,76,0.06080127300715739],[112,271,77,0.057796914223220544],[112,271,78,0.0538969578802036],[112,271,79,0.049940685921452274],[112,272,64,0.1261615869089093],[112,272,65,0.11700715672066142],[112,272,66,0.10799413802439976],[112,272,67,0.09919802344515959],[112,272,68,0.09063646979251283],[112,272,69,0.08228613330705539],[112,272,70,0.07412517664580782],[112,272,71,0.06972936679562954],[112,272,72,0.06902985457671189],[112,272,73,0.06827068319697174],[112,272,74,0.06743412553691835],[112,272,75,0.06650322539929922],[112,272,76,0.06546167552761668],[112,272,77,0.0642937663474591],[112,272,78,0.06030507778142308],[112,272,79,0.056028794119588984],[112,273,64,0.1225354219680298],[112,273,65,0.11326021180985707],[112,273,66,0.10413809752802936],[112,273,67,0.09524627587892036],[112,273,68,0.08660730074042666],[112,273,69,0.0782047929167573],[112,273,70,0.07513884418174947],[112,273,71,0.07434004817243516],[112,273,72,0.07353944085481913],[112,273,73,0.07272027242836437],[112,273,74,0.07186554991293381],[112,273,75,0.07095789980479203],[112,273,76,0.0699795134763231],[112,273,77,0.06891217527093732],[112,273,78,0.06689684607582747],[112,273,79,0.06231416048379912],[112,274,64,0.11888888221484042],[112,274,65,0.10949021175519458],[112,274,66,0.10025549441183035],[112,274,67,0.09126258548135922],[112,274,68,0.08253841585369359],[112,274,69,0.08090730999723934],[112,274,70,0.07990416500852078],[112,274,71,0.07894953356636794],[112,274,72,0.07803004438648105],[112,274,73,0.07713111116177812],[112,274,74,0.0762367485878689],[112,274,75,0.07532948279287294],[112,274,76,0.07439035616637482],[112,274,77,0.0733990264289757],[112,274,78,0.07233395963636773],[112,274,79,0.06876300490527515],[112,275,64,0.11529356817728714],[112,275,65,0.10577132872415253],[112,275,66,0.09642263001357765],[112,275,67,0.08862550766973175],[112,275,68,0.08724014347435613],[112,275,69,0.08594757485084559],[112,275,70,0.08474163532680137],[112,275,71,0.08361447419253759],[112,275,72,0.08255618912201018],[112,275,73,0.08155456383188738],[112,275,74,0.08059491105317726],[112,275,75,0.0796600209085904],[112,275,76,0.07873021461162774],[112,275,77,0.07778350323154543],[112,275,78,0.0767958511032417],[112,275,79,0.07533601502143476],[112,276,64,0.1118120204062686],[112,276,65,0.1021686802585572],[112,276,66,0.0960369476297859],[112,276,67,0.09429141414858053],[112,276,68,0.09265270899154779],[112,276,69,0.09112294544343198],[112,276,70,0.08970144088673274],[112,276,71,0.08838485031161089],[112,276,72,0.0871667951706353],[112,276,73,0.08603760733578857],[112,276,74,0.08498418840464866],[112,276,75,0.08398998440304853],[112,276,76,0.08303507573650187],[112,276,77,0.08209638205365982],[112,276,78,0.08114798150357962],[112,276,79,0.0801615436962783],[112,277,64,0.10849820392984247],[112,277,65,0.1042370482346413],[112,277,66,0.1021510931335647],[112,277,67,0.10014344706704753],[112,277,68,0.09824868631339369],[112,277,69,0.09647476164713846],[112,277,70,0.09482613722258701],[112,277,71,0.09330380521070573],[112,277,72,0.09190490172590479],[112,277,73,0.09062244665042957],[112,277,74,0.08944520758973895],[112,277,75,0.08835768797623524],[112,277,76,0.0873402391277054],[112,277,77,0.08636929586233552],[112,277,78,0.08541773507582544],[112,277,79,0.08445535649972374],[112,278,64,0.11317720262985778],[112,278,65,0.11082159936992675],[112,278,66,0.10847631818666086],[112,278,67,0.10621008545915907],[112,278,68,0.10405892236349713],[112,278,69,0.10203597344120714],[112,278,70,0.10015040356425495],[112,278,71,0.09840728600531781],[112,278,72,0.09680719601558728],[112,278,73,0.09534593563566338],[112,278,74,0.09401438997470613],[112,278,75,0.0927985149629143],[112,278,76,0.09167945635758798],[112,278,77,0.09063379956507711],[112,278,78,0.08963394963157638],[112,278,79,0.08864864055685143],[112,279,64,0.1202329646797197],[112,279,65,0.1176251488441271],[112,279,66,0.11502957952240156],[112,279,67,0.11251075522020582],[112,279,68,0.11010530524539654],[112,279,69,0.10783081400495413],[112,279,70,0.10570060368226138],[112,279,71,0.10372349076344412],[112,279,72,0.10190334790971331],[112,279,73,0.10023880279104394],[112,279,74,0.09872307413431758],[112,279,75,0.09734394499747147],[112,279,76,0.09608387304503128],[112,279,77,0.09492023737127091],[112,279,78,0.09382572119698494],[112,279,79,0.09276882955638968],[112,280,64,0.12749965934277924],[112,280,65,0.12465317362447412],[112,280,66,0.12181859576403083],[112,280,67,0.11905551823905605],[112,280,68,0.11640035254383965],[112,280,69,0.11387427974198339],[112,280,70,0.11149415322733534],[112,280,71,0.10927212162961407],[112,280,72,0.10721514998477127],[112,280,73,0.1053246818865169],[112,280,74,0.10359644290658918],[112,280,75,0.10202038532109158],[112,280,76,0.10058077393535106],[112,280,77,0.09925641256191976],[112,280,78,0.09802101047744768],[112,280,79,0.09684368796613645],[112,281,64,0.1349715049172368],[112,281,65,0.13190180154928427],[112,281,66,0.12884143409005291],[112,281,67,0.12584456858814105],[112,281,68,0.122946606464303],[112,281,69,0.12017141686342922],[112,281,70,0.11753869329207159],[112,281,71,0.11506344378118386],[112,281,72,0.11275546298458264],[112,281,73,0.11061894751742946],[112,281,74,0.10865225487308525],[112,281,75,0.10684780600068555],[112,281,76,0.10519213137499081],[112,281,77,0.10366606014614912],[112,281,78,0.10224505172186879],[112,281,79,0.10089966891012304],[112,282,64,0.14263329623459023],[112,282,65,0.13935728643012008],[112,282,66,0.1360859036924873],[112,282,67,0.13286753539978327],[112,282,68,0.1297358355132784],[112,282,69,0.1267164143146569],[112,282,70,0.12383107006736588],[112,282,71,0.12109715018253933],[112,282,72,0.11852696673960651],[112,282,73,0.11612735574337459],[112,282,74,0.11389938052233256],[112,282,75,0.11183817941414519],[112,282,76,0.10993295763041605],[112,282,77,0.10816712294544194],[112,282,78,0.10651856461476444],[112,282,79,0.104960074700818],[112,283,64,0.15045976884942894],[112,283,65,0.1469952901408273],[112,283,66,0.14352875575877985],[112,283,67,0.14010259221409677],[112,283,68,0.1367480425679861],[112,283,69,0.13349150296492795],[112,283,70,0.13035612058984905],[112,283,71,0.12736103221453576],[112,283,72,0.1245207167060791],[112,283,73,0.12184449005799218],[112,283,74,0.11933614342957678],[112,283,75,0.11699372442049308],[112,283,76,0.11480946155327405],[112,283,77,0.11276983168835947],[112,283,78,0.1108557698559583],[112,283,79,0.10904302075864272],[112,284,64,0.1584147718156058],[112,284,65,0.15477997153052514],[112,284,66,0.15113468985224482],[112,284,67,0.14751537271803555],[112,284,68,0.14395027930796217],[112,284,69,0.1404656610921566],[112,284,70,0.13708526467756796],[112,284,71,0.13382945634565876],[112,284,72,0.13071450636356427],[112,284,73,0.1277520130020588],[112,284,74,0.12494846683952143],[112,284,75,0.12230495567538098],[112,284,76,0.1198170101246434],[112,284,77,0.11747458971861735],[112,284,78,0.11526220909767446],[112,284,79,0.1131592036517152],[112,285,64,0.1664502489889881],[112,285,65,0.16266288212882882],[112,285,66,0.15885516668816407],[112,285,67,0.15505769290747562],[112,285,68,0.15129526708257182],[112,285,69,0.14759312628522672],[112,285,70,0.14397490322983997],[112,285,71,0.14046164707818587],[112,285,72,0.13707103576433105],[112,285,73,0.13381672377515996],[112,285,74,0.1307078260699708],[112,285,75,0.12774853857232915],[112,285,76,0.12493789542021996],[112,285,77,0.12226966291802234],[112,285,78,0.119732369897675],[112,285,79,0.11730947396844453],[112,286,64,0.1745050289138467],[112,286,65,0.17058166872044628],[112,286,66,0.16662702740236157],[112,286,67,0.1626660797937842],[112,286,68,0.15871982436722512],[112,286,69,0.1548117139536747],[112,286,70,0.15096462312282222],[112,286,71,0.14719977644633636],[112,286,72,0.14353588655976487],[112,286,73,0.13998842222122881],[112,286,74,0.13656900716275247],[112,286,75,0.13328495028737664],[112,286,76,0.13013890752486315],[112,286,77,0.12712867542220935],[112,286,78,0.1242471163140147],[112,286,79,0.12148221469370728],[112,287,64,0.1825034234437476],[112,287,65,0.17845858295169736],[112,287,66,0.17437091948505978],[112,287,67,0.17026010684203235],[112,287,68,0.16614310101577195],[112,287,69,0.1620409426777534],[112,287,70,0.15797520896373832],[112,287,71,0.15396686036286567],[112,287,72,0.15003530383657368],[112,287,73,0.14619757955906737],[112,287,74,0.14246767219270345],[112,287,75,0.13885594737822643],[112,287,76,0.13536871388786317],[112,287,77,0.1320079116601769],[112,287,78,0.12877092571082835],[112,287,79,0.12565052569466365],[112,288,64,0.19035363531821167],[112,288,65,0.18619879819311075],[112,288,66,0.1819895296047893],[112,288,67,0.17774053636950765],[112,288,68,0.1734646195469129],[112,288,69,0.16917996665063234],[112,288,70,0.16490646197355868],[112,288,71,0.16066446210544305],[112,288,72,0.15647378507855866],[112,288,73,0.15235281620031668],[112,288,74,0.14831773160556833],[112,288,75,0.14438184033821552],[112,288,76,0.14055504554928722],[112,288,77,0.13684342517800935],[112,288,78,0.13324893226504955],[112,288,79,0.12976921483460063],[112,289,64,0.19794597441192496],[112,289,65,0.1936885338737163],[112,289,66,0.189365624037523],[112,289,67,0.18498727012203883],[112,289,68,0.18056212518251144],[112,289,69,0.17610531741725644],[112,289,70,0.17163482866276375],[112,289,71,0.16717020602802726],[112,289,72,0.16273147970765697],[112,289,73,0.1583381904133756],[112,289,74,0.15400852757418843],[112,289,75,0.14975857924306957],[112,289,76,0.14560169443534912],[112,289,77,0.14154795841219245],[112,289,78,0.13760378121297903],[112,289,79,0.13377159953445003],[112,290,64,0.20363643219511934],[112,290,65,0.2007955428856832],[112,290,66,0.19636464814805069],[112,290,67,0.19186405114391386],[112,290,68,0.18729834880437624],[112,290,69,0.18267963775647958],[112,290,70,0.17802396348384442],[112,290,71,0.17334997474618286],[112,290,72,0.16867777683455448],[112,290,73,0.16402788743488717],[112,290,74,0.1594202963593239],[112,290,75,0.15487363020323047],[112,290,76,0.15040442278294858],[112,290,77,0.1460264920065688],[112,290,78,0.14175042362837323],[112,290,79,0.13758316213848681],[112,291,64,0.20673168765222544],[112,291,65,0.2045003531320831],[112,291,66,0.20157510764373796],[112,291,67,0.1961792267427645],[112,291,68,0.1917512183275104],[112,291,69,0.1882744302015296],[112,291,70,0.1839721047666193],[112,291,71,0.17910904883776366],[112,291,72,0.17422558939494304],[112,291,73,0.16934292333904277],[112,291,74,0.16448247994269832],[112,291,75,0.1596650164746544],[112,291,76,0.15490981226162925],[112,291,77,0.1502339619610399],[112,291,78,0.14565176862594076],[112,291,79,0.14117423695295933],[112,292,64,0.20994135003642841],[112,292,65,0.2075723464045583],[112,292,66,0.20350566756703264],[112,292,67,0.19798144833139575],[112,292,68,0.19342641196915789],[112,292,69,0.18982574847160238],[112,292,70,0.18712936865559904],[112,292,71,0.18438134390041144],[112,292,72,0.17931627587439689],[112,292,73,0.17423241547328502],[112,292,74,0.16915212523732948],[112,292,75,0.1640977255958858],[112,292,76,0.1590906360807843],[112,292,77,0.1541506070621821],[112,292,78,0.1492950426952496],[112,292,79,0.14453841558725583],[112,293,64,0.21331868878221158],[112,293,65,0.2108040046228132],[112,293,66,0.20543267843897187],[112,293,67,0.19978486167818588],[112,293,68,0.19510586407497638],[112,293,69,0.1913828459675179],[112,293,70,0.18856747920050404],[112,293,71,0.18657517649556127],[112,293,72,0.1839101187165852],[112,293,73,0.17866310557454873],[112,293,74,0.17340264167258237],[112,293,75,0.1681519152045906],[112,293,76,0.1629337455178425],[112,293,77,0.15776978128088034],[112,293,78,0.15267977921127365],[112,293,79,0.14768096396584685],[112,294,64,0.21689205882084966],[112,294,65,0.21405320211351497],[112,294,66,0.20734149422148757],[112,294,67,0.20157575255305232],[112,294,68,0.19677680386860674],[112,294,69,0.19293389186263832],[112,294,70,0.19000062447214877],[112,294,71,0.18789414798295695],[112,294,72,0.18649013277917992],[112,294,73,0.18261739298492818],[112,294,74,0.1772217237776689],[112,294,75,0.1718206991052439],[112,294,76,0.1664376944316847],[112,294,77,0.16109539320312674],[112,294,78,0.15581505140542165],[112,294,79,0.15061583021431815],[112,295,64,0.22066669658560573],[112,295,65,0.21603580186234134],[112,295,66,0.20921857360083904],[112,295,67,0.20334144735763798],[112,295,68,0.19842744993429484],[112,295,69,0.19446800556387],[112,295,70,0.19141881654368176],[112,295,71,0.1891989876913988],[112,295,72,0.18768592907333487],[112,295,73,0.18609157692751938],[112,295,74,0.1806094893426081],[112,295,75,0.17510815653952763],[112,295,76,0.16961059564451103],[112,295,77,0.16413958693602979],[112,295,78,0.15871695723314555],[112,295,79,0.15336291552953374],[112,296,64,0.22462632687438866],[112,296,65,0.21796559106098895],[112,296,66,0.21105180678168325],[112,296,67,0.20507063284259852],[112,296,68,0.20004732296779004],[112,296,69,0.19597556270572672],[112,296,70,0.19281328910777018],[112,296,71,0.19048177124576987],[112,296,72,0.1888604359462076],[112,296,73,0.18778875473578588],[112,296,74,0.18357683409121173],[112,296,75,0.17802756552910792],[112,296,76,0.1724682099996585],[112,296,77,0.1669206652368961],[112,296,78,0.1614063568285733],[112,296,79,0.15594560866877819],[112,297,64,0.22770114822830254],[112,297,65,0.2198315846957317],[112,297,66,0.2128308625571739],[112,297,67,0.20675369685145822],[112,297,68,0.20162758023683586],[112,297,69,0.1974485234689081],[112,297,70,0.19417681988581975],[112,297,71,0.19173608774144976],[112,297,72,0.19000802504139075],[112,297,73,0.18883404411918187],[112,297,74,0.1861440036064257],[112,297,75,0.18059986095759598],[112,297,76,0.1750322686898444],[112,297,77,0.16946125538875],[112,297,78,0.16390686299958396],[112,297,79,0.1583885844423956],[112,298,64,0.2295587714345653],[112,298,65,0.2216250396341637],[112,298,66,0.21454755565490352],[112,298,67,0.20838309009084954],[112,298,68,0.2031613717510677],[112,298,69,0.1988807832232045],[112,298,70,0.1955040759094597],[112,298,71,0.1929573799134306],[112,298,72,0.19112489408253114],[112,298,73,0.18985025913803963],[112,298,74,0.18833938307730275],[112,298,75,0.18285231787924766],[112,298,76,0.17732902926144084],[112,298,77,0.17178671814597565],[112,298,78,0.16624308500532348],[112,298,79,0.16071586637061536],[112,299,64,0.2313257787239456],[112,299,65,0.22333984688126976],[112,299,66,0.21619623435881263],[112,299,67,0.20995370892725956],[112,299,68,0.20464421814144035],[112,299,69,0.20026854549485362],[112,299,70,0.1967919816744173],[112,299,71,0.19414330766174848],[112,299,72,0.19220942603187552],[112,299,73,0.1908364654628423],[112,299,74,0.18992021182961977],[112,299,75,0.18481746038663066],[112,299,76,0.17938806553593697],[112,299,77,0.17392379989910745],[112,299,78,0.16843912567246228],[112,299,79,0.16294915346799912],[112,300,64,0.2329988684159225],[112,300,65,0.22497294329554277],[112,300,66,0.21777418840706406],[112,300,67,0.21146329921028031],[112,300,68,0.20607441024918433],[112,300,69,0.20161071725834684],[112,300,70,0.19804011016677875],[112,300,71,0.1952941349332311],[112,300,72,0.19326257203002906],[112,300,73,0.1917942669951943],[112,300,74,0.1907859294641783],[112,300,75,0.18653219623830775],[112,300,76,0.18124129154985696],[112,300,77,0.1758995280582415],[112,300,78,0.17051733174657172],[112,300,79,0.16510641094820075],[112,301,64,0.23457833460833621],[112,301,65,0.22652474276504062],[112,301,66,0.21928207716577328],[112,301,67,0.21291288112225804],[112,301,68,0.20745343042418135],[112,301,69,0.20290932655257637],[112,301,70,0.19925109676152794],[112,301,71,0.1964131399594492],[112,301,72,0.19428825811681658],[112,301,73,0.19272820926504378],[112,301,74,0.19163078071248185],[112,301,75,0.18803717734118675],[112,301,76,0.18292221949968135],[112,301,77,0.17774034953062312],[112,301,78,0.17249729724128207],[112,301,79,0.16720072449790274],[112,302,64,0.2360685195255135],[112,302,65,0.2279995868435001],[112,302,66,0.22072437807871462],[112,302,67,0.2143071950544551],[112,302,68,0.20878639553288014],[112,302,69,0.20416996242144195],[112,302,70,0.20043107599348373],[112,302,71,0.1975070488509953],[112,302,72,0.1952938157333688],[112,302,73,0.193646206980481],[112,302,74,0.1924632193027232],[112,302,75,0.1893763861012126],[112,302,76,0.1844654515893472],[112,302,77,0.17947151207023987],[112,302,78,0.17439511944089225],[112,302,79,0.1692394176523011],[112,303,64,0.23747828444868035],[112,303,65,0.22940621484648877],[112,303,66,0.22210985539298223],[112,303,67,0.21565516850970878],[112,303,68,0.21008252167572872],[112,303,69,0.20540223717889733],[112,303,70,0.20159014120061275],[112,303,71,0.19858649254806535],[112,303,72,0.1962904360054097],[112,303,73,0.19455999573008292],[112,303,74,0.19329548365622248],[112,303,75,0.1905884026540782],[112,303,76,0.18589982438063957],[112,303,77,0.1811121047141255],[112,303,78,0.1762203220677008],[112,303,79,0.17122281243272242],[112,304,64,0.23730364066924245],[112,304,65,0.23075825340748876],[112,304,66,0.22345204916050151],[112,304,67,0.21697040403147988],[112,304,68,0.21135561061402197],[112,304,69,0.2066202709983319],[112,304,70,0.20274282703961594],[112,304,71,0.19966648712724105],[112,304,72,0.19729364780764314],[112,304,73,0.19548560783770896],[112,304,74,0.19414407034200298],[112,304,75,0.19167852654043918],[112,304,76,0.1872266259098798],[112,304,77,0.18265948876756938],[112,304,78,0.1779665137817013],[112,304,79,0.17314102387400368],[112,305,64,0.23598429493852258],[112,305,65,0.2319814678322321],[112,305,66,0.22476978451553467],[112,305,67,0.2182716881594352],[112,305,68,0.2126245579063057],[112,305,69,0.20784319882643015],[112,305,70,0.2039086148739297],[112,305,71,0.200766937464616],[112,305,72,0.19832381960938006],[112,305,73,0.19644387236988356],[112,305,74,0.19503023199436686],[112,305,75,0.1926405870258297],[112,305,76,0.18843605905907115],[112,305,77,0.1841003543237401],[112,305,78,0.17961706697923374],[112,305,79,0.1749064379041229],[112,306,64,0.2344697010892295],[112,306,65,0.23060284621609828],[112,306,66,0.22608770122813654],[112,306,67,0.2195835214115211],[112,306,68,0.21391388275429532],[112,306,69,0.20909569962146668],[112,306,70,0.20511246103410022],[112,306,71,0.20191316425522005],[112,306,72,0.19940668510136417],[112,306,73,0.19746093929572572],[112,306,74,0.1959804996934311],[112,306,75,0.19346463347441986],[112,306,76,0.1887813746636586],[112,306,77,0.18305640509912252],[112,306,78,0.17752320785371972],[112,306,79,0.1722095349687915],[112,307,64,0.23279148118186602],[112,307,65,0.22906536630981442],[112,307,66,0.22543958197892922],[112,307,67,0.22093502210693283],[112,307,68,0.21525265988340367],[112,307,69,0.21040695078022248],[112,307,70,0.2063837689373876],[112,307,71,0.2031348899823976],[112,307,72,0.200572340578303],[112,307,73,0.19856728770795581],[112,307,74,0.197025703708651],[112,307,75,0.19262531467157157],[112,307,76,0.18642651114714343],[112,307,77,0.18040481970444094],[112,307,78,0.17459950190112095],[112,307,79,0.16904347198774733],[112,308,64,0.2309809687551948],[112,308,65,0.22739770172926232],[112,308,66,0.22392547974314428],[112,308,67,0.2205129108591511],[112,308,68,0.216642484223739],[112,308,69,0.21177903013031352],[112,308,70,0.20772514116019206],[112,308,71,0.2044352716360564],[112,308,72,0.20182451432102927],[112,308,73,0.19976722293074353],[112,308,74,0.19675631708954444],[112,308,75,0.19010989263230205],[112,308,76,0.18360832878236485],[112,308,77,0.17730188686097678],[112,308,78,0.1712354256803526],[112,308,79,0.16544683173317007],[112,309,64,0.22906710844562392],[112,309,65,0.2256260727951797],[112,309,66,0.22230456491156525],[112,309,67,0.2190530285809828],[112,309,68,0.21586867589400033],[112,309,69,0.21277111461973466],[112,309,70,0.20911204525916854],[112,309,71,0.20579051895010078],[112,309,72,0.20314014054240953],[112,309,73,0.2009864468418202],[112,309,74,0.1940792236387195],[112,309,75,0.18713779688856816],[112,309,76,0.18035272424469498],[112,309,77,0.17377992369773676],[112,309,78,0.16746951811105742],[112,309,79,0.16146406023353677],[112,310,64,0.22707474353875853],[112,310,65,0.22377264429016525],[112,310,66,0.22059612447548124],[112,310,67,0.21749801764875049],[112,310,68,0.21447929340590674],[112,310,69,0.2115621814805974],[112,310,70,0.2087456112035548],[112,310,71,0.20600931302156267],[112,310,72,0.2033185950549824],[112,310,73,0.19825603639428144],[112,310,74,0.1909432069796586],[112,310,75,0.18373288086395273],[112,310,76,0.17668995213198554],[112,310,77,0.16987552759316654],[112,310,78,0.16334454308205132],[112,310,79,0.15714379866065162],[112,311,64,0.22502329041273997],[112,311,65,0.22185430795599947],[112,311,66,0.21881437240730403],[112,311,67,0.21585916491550783],[112,311,68,0.2129934051749907],[112,311,69,0.21024171637153213],[112,311,70,0.2076033386813776],[112,311,71,0.205056623485749],[112,311,72,0.20251880259940305],[112,311,73,0.19492540896625365],[112,311,74,0.1873698412561956],[112,311,75,0.1799226736385344],[112,311,76,0.17265356866861833],[112,311,77,0.16562824442573162],[112,311,78,0.15890588923600696],[112,311,79,0.15253702630397087],[112,312,64,0.2229257933625318],[112,312,65,0.21988184320622356],[112,312,66,0.21696772446924592],[112,312,67,0.21414231407376885],[112,312,68,0.21141396584937674],[112,312,69,0.20880939710354332],[112,312,70,0.2063281018185454],[112,312,71,0.20394720571083247],[112,312,72,0.19894662312405764],[112,312,73,0.1911452899215077],[112,312,74,0.18338398436487408],[112,312,75,0.17573734425487772],[112,312,76,0.16827913511172346],[112,312,77,0.16107901256536294],[112,312,78,0.1541997606310631],[112,312,79,0.1476950084073761],[112,313,64,0.22078835228621038],[112,313,65,0.21785944853392658],[112,313,66,0.21505843817191753],[112,313,67,0.21234762415216088],[112,313,68,0.20973877470167612],[112,313,69,0.2072603405564271],[112,313,70,0.20491198443073338],[112,313,71,0.20266975981717003],[112,313,72,0.19490773111589094],[112,313,73,0.18693849717281646],[112,313,74,0.1790127195332757],[112,313,75,0.17120840234355558],[112,313,76,0.16360267394753622],[112,313,77,0.1562683754956234],[112,313,78,0.14927115097178234],[112,313,79,0.1426670413660816],[112,314,64,0.21860996588190307],[112,314,65,0.2157846867554973],[112,314,66,0.21308266151551],[112,314,67,0.2104697290557032],[112,314,68,0.20796075863461372],[112,314,69,0.205585525106114],[112,314,70,0.20334375092118884],[112,314,71,0.19848890654503945],[112,314,72,0.1904239795589703],[112,314,73,0.18232987149418498],[112,314,74,0.17428406399654456],[112,314,75,0.16636718277078122],[112,314,76,0.15865892568142279],[112,314,77,0.15123451095769952],[112,314,78,0.144161649377143],[112,314,79,0.13749804331932985],[112,315,64,0.21638274671488503],[112,315,65,0.21364880014112644],[112,315,66,0.21103084627941135],[112,315,67,0.20849825365326088],[112,315,68,0.20606860158485374],[112,315,69,0.20377254743876375],[112,315,70,0.2016097464236412],[112,315,71,0.1936687017965537],[112,315,72,0.18551911164453225],[112,315,73,0.1773449060737613],[112,315,74,0.1692253986862967],[112,315,75,0.16124306773627567],[112,315,76,0.1534793591718103],[112,315,77,0.14601102909914132],[112,315,78,0.1389070297141936],[112,315,79,0.1322259417286614],[112,316,64,0.2140925115245674],[112,316,65,0.21143739896351957],[112,316,66,0.20888852956229745],[112,316,67,0.2064186902933238],[112,316,68,0.2040477243950866],[112,316,69,0.20180671802182917],[112,316,70,0.19650986958202152],[112,316,71,0.1884087145810778],[112,316,72,0.18021727241160548],[112,316,73,0.17200808522386477],[112,316,74,0.16386162337004284],[112,316,75,0.15586145056968279],[112,316,76,0.14808993956248762],[112,316,77,0.14062454348677417],[112,316,78,0.1335346271634274],[112,316,79,0.12687886141886764],[112,317,64,0.21171975122499198],[112,317,65,0.20913152810694993],[112,317,66,0.20663748841011334],[112,317,67,0.20421364078822912],[112,317,68,0.20188162040671725],[112,317,69,0.19881119664726918],[112,317,70,0.1908428521479853],[112,317,71,0.18273290654895752],[112,317,72,0.17454121898266328],[112,317,73,0.16634093752208262],[112,317,74,0.15821304231810937],[112,317,75,0.15024144609887788],[112,317,76,0.14250865847933158],[112,317,77,0.1350920194420335],[112,317,78,0.12806050626890347],[112,317,79,0.12147211713503107],[112,318,64,0.20924097982227463],[112,318,65,0.2067091111160225],[112,318,66,0.2042572670730288],[112,318,67,0.2018644235771909],[112,318,68,0.19955354666347638],[112,318,69,0.19269774006191884],[112,318,70,0.18474591889867775],[112,318,71,0.1766633605280116],[112,318,72,0.16851022864923335],[112,318,73,0.16035980239394118],[112,318,74,0.15229297925610927],[112,318,75,0.14439334609077964],[112,318,76,0.13674282473292954],[112,318,77,0.1294178976827343],[112,318,78,0.12248641820471677],[112,318,79,0.11600500810306075],[112,319,64,0.20663046178535413],[112,319,65,0.20414677139579088],[112,319,66,0.20172707678080098],[112,319,67,0.19935304614103097],[112,319,68,0.19389443829895886],[112,319,69,0.18614711261723182],[112,319,70,0.17824119924937698],[112,319,71,0.17021800022283246],[112,319,72,0.1621377036300897],[112,319,73,0.15407330870063818],[112,319,74,0.14610511989917405],[112,319,75,0.13831581778873622],[112,319,76,0.13078611327771686],[112,319,77,0.12359099075077996],[112,319,78,0.11679654447211309],[112,319,79,0.1104574115520979],[113,-64,64,0.3260927810522614],[113,-64,65,0.33172595676327216],[113,-64,66,0.33747369029626784],[113,-64,67,0.34331701819728544],[113,-64,68,0.3492619680849109],[113,-64,69,0.35532651702777757],[113,-64,70,0.3615209051579431],[113,-64,71,0.36784772056439413],[113,-64,72,0.37430243956580156],[113,-64,73,0.38087399654330206],[113,-64,74,0.38754538331056704],[113,-64,75,0.39429427790571053],[113,-64,76,0.40109370259963995],[113,-64,77,0.4079127108289675],[113,-64,78,0.41471710267861084],[113,-64,79,0.42147016846088514],[113,-63,64,0.32706149059901557],[113,-63,65,0.33279229177665126],[113,-63,66,0.338640262911755],[113,-63,67,0.3445878562516785],[113,-63,68,0.35064096083674795],[113,-63,69,0.356816028369894],[113,-63,70,0.36312166679663],[113,-63,71,0.36955880982401806],[113,-63,72,0.3761213087026786],[113,-63,73,0.38279654926711837],[113,-63,74,0.38956609406070014],[113,-63,75,0.3964063492839827],[113,-63,76,0.40328925622123846],[113,-63,77,0.4101830067203045],[113,-63,78,0.41705278222558806],[113,-63,79,0.4238615157940784],[113,-62,64,0.3282236137278242],[113,-62,65,0.33403873519415395],[113,-62,66,0.33997217929868245],[113,-62,67,0.3460080983714517],[113,-62,68,0.35215215796463906],[113,-62,69,0.3584190388454389],[113,-62,70,0.36481563629683006],[113,-62,71,0.371341294522004],[113,-62,72,0.37798842395339516],[113,-62,73,0.3847431408186474],[113,-62,74,0.3915859286968356],[113,-62,75,0.39849232171549365],[113,-62,76,0.40543360896039116],[113,-62,77,0.4123775595961444],[113,-62,78,0.41928916812663897],[113,-62,79,0.42613141916087915],[113,-61,64,0.3295642044222755],[113,-61,65,0.33545063050813273],[113,-61,66,0.3414551013356747],[113,-61,67,0.34756371121755497],[113,-61,68,0.35378183933119806],[113,-61,69,0.3601222081971735],[113,-61,70,0.366589962516103],[113,-61,71,0.3731829496057295],[113,-61,72,0.3798923382283254],[113,-61,73,0.38670325788647036],[113,-61,74,0.393595458279704],[113,-61,75,0.40054398853621315],[113,-61,76,0.4075198957596794],[113,-61,77,0.4144909423622797],[113,-61,78,0.42142234159054975],[113,-61,79,0.42827751059238867],[113,-60,64,0.33106388739942316],[113,-60,65,0.33700927441346973],[113,-60,66,0.34307106978476265],[113,-60,67,0.34923749985347874],[113,-60,68,0.3555136118329619],[113,-60,69,0.36191003699277385],[113,-60,70,0.36843016650198823],[113,-60,71,0.3750704607464943],[113,-60,72,0.38182104849946374],[113,-60,73,0.38866634583317916],[113,-60,74,0.39558569446838654],[113,-60,75,0.40255401918299566],[113,-60,76,0.40954250383177465],[113,-60,77,0.4165192854632646],[113,-60,78,0.4234501659594243],[113,-60,79,0.4302993405684615],[113,-59,64,0.33269996224620246],[113,-59,65,0.33869305508429165],[113,-59,66,0.34479967559223657],[113,-59,67,0.3510103110743676],[113,-59,68,0.35732964098592546],[113,-59,69,0.3637661181264307],[113,-59,70,0.3703214006259631],[113,-59,71,0.3769906755714509],[113,-59,72,0.38376322104467236],[113,-59,73,0.3906229880132983],[113,-59,74,0.3975492018096409],[113,-59,75,0.40451698286106663],[113,-59,76,0.4114979862691178],[113,-59,77,0.41846105977183806],[113,-59,78,0.42537291956560835],[113,-59,79,0.4321988434098948],[113,-58,64,0.3344477294528313],[113,-58,65,0.3404788122135579],[113,-58,66,0.34661945198013516],[113,-58,67,0.3528624557679084],[113,-58,68,0.35921209869893067],[113,-58,69,0.3656746000927516],[113,-58,70,0.3722499131359116],[113,-58,71,0.378932051773724],[113,-58,72,0.38570960270436006],[113,-58,73,0.3925662578736967],[113,-58,74,0.39948136726743166],[113,-58,75,0.4064305117296846],[113,-58,76,0.4133860954732719],[113,-58,77,0.4203179578866503],[113,-58,78,0.4271940041861792],[113,-58,79,0.43398085441077827],[113,-57,64,0.336282038269223],[113,-57,65,0.3423434187218991],[113,-57,66,0.34850948722550906],[113,-57,67,0.3547753502059429],[113,-57,68,0.3611448271447589],[113,-57,69,0.3676218619597022],[113,-57,70,0.37420471807448397],[113,-57,71,0.3808863020709568],[113,-57,72,0.38765461814495317],[113,-57,73,0.39449324385571444],[113,-57,74,0.4013818270372978],[113,-57,75,0.40829660367654946],[113,-57,76,0.4152109365010801],[113,-57,77,0.42209587396276915],[113,-57,78,0.42892072924767083],[113,-57,79,0.4356536788927319],[113,-56,64,0.3381757201399515],[113,-56,65,0.34426170781793086],[113,-56,66,0.3504468422465481],[113,-56,67,0.3567284205797791],[113,-56,68,0.3631097270643557],[113,-56,69,0.3695923881750321],[113,-56,70,0.37617296907132564],[113,-56,71,0.38284329188404065],[113,-56,72,0.38959083036397923],[113,-56,73,0.3963991263731667],[113,-56,74,0.4032482281566284],[113,-56,75,0.41011515027283374],[113,-56,76,0.4169743550030642],[113,-56,77,0.42379825500472645],[113,-56,78,0.43055773692108035],[113,-56,79,0.43722270561087495],[113,-55,64,0.3400804808938816],[113,-55,65,0.3461839418245221],[113,-55,66,0.3523805868123352],[113,-55,67,0.358669698884178],[113,-55,68,0.3650539339343132],[113,-55,69,0.3715326206291744],[113,-55,70,0.37810067631189054],[113,-55,71,0.3847489142239882],[113,-55,72,0.39146437455654254],[113,-55,73,0.39823067789462196],[113,-55,74,0.4050284010662619],[113,-55,75,0.4118354753512068],[113,-55,76,0.41862760695007756],[113,-55,77,0.42537871956204953],[113,-55,78,0.43206141886860444],[113,-55,79,0.43864747867335574],[113,-54,64,0.3419428580217017],[113,-54,65,0.3480540129269704],[113,-54,66,0.35425221637754023],[113,-54,67,0.3605384472019185],[113,-54,68,0.36691463755620884],[113,-54,69,0.3733779207469567],[113,-54,70,0.3799217043087354],[113,-54,71,0.3865359541312792],[113,-54,72,0.39320745412305175],[113,-54,73,0.39992008930790446],[113,-54,74,0.406655152454502],[113,-54,75,0.4133916742854673],[113,-54,76,0.42010677726118595],[113,-54,77,0.4267760528824532],[113,-54,78,0.43337396240677795],[113,-54,79,0.4398742608260134],[113,-53,64,0.34371599288250687],[113,-53,65,0.3498229723906003],[113,-53,66,0.3560109269553958],[113,-53,67,0.3622821730691081],[113,-53,68,0.3686378231142565],[113,-53,69,0.3750729852848008],[113,-53,70,0.38157976566092366],[113,-53,71,0.38814751215321597],[113,-53,72,0.3947629918516686],[113,-53,73,0.40141059374571325],[113,-53,74,0.4080725570273052],[113,-53,75,0.4147292251383657],[113,-53,76,0.42135932567305134],[113,-53,77,0.4279402761948954],[113,-53,78,0.434448515978992],[113,-53,79,0.4408598636409584],[113,-52,64,0.3453601046613546],[113,-52,65,0.3514494564900659],[113,-52,66,0.35761398780531617],[113,-52,67,0.36385694362271903],[113,-52,68,0.37017852207155183],[113,-52,69,0.376572030628787],[113,-52,70,0.3830285370790941],[113,-52,71,0.38953705229270935],[113,-52,72,0.39608461196633027],[113,-52,73,0.4026563869089954],[113,-52,74,0.4092358222271282],[113,-52,75,0.4158048057125131],[113,-52,76,0.42234386568534865],[113,-52,77,0.4288323984923093],[113,-52,78,0.43524892580693925],[113,-52,79,0.44157138182758615],[113,-51,64,0.34684304758423884],[113,-51,65,0.3529001868595818],[113,-51,66,0.35902717939205203],[113,-51,67,0.36522775532835916],[113,-51,68,0.3715011083531577],[113,-51,69,0.377839011626677],[113,-51,70,0.38423179894058546],[113,-51,71,0.39066846248499254],[113,-51,72,0.3971366239824551],[113,-51,73,0.4036225390515533],[113,-51,74,0.41011113533000787],[113,-51,75,0.4165860848349166],[113,-51,76,0.4230299109828413],[113,-51,77,0.42942413063586254],[113,-51,78,0.43574943148159995],[113,-51,79,0.4419858849965177],[113,-50,64,0.3481410065827211],[113,-50,65,0.35415060900262135],[113,-50,66,0.36022536887212186],[113,-50,67,0.3663690400555791],[113,-50,68,0.37257972903531883],[113,-50,69,0.3788479723834268],[113,-50,70,0.38516370354385004],[113,-50,71,0.39151623978481487],[113,-50,72,0.39789412657322354],[113,-50,73,0.40428502159348567],[113,-50,74,0.41067561915204553],[113,-50,75,0.41705161565180865],[113,-50,76,0.4233977167597371],[113,-50,77,0.42969768682681697],[113,-50,78,0.4359344410527653],[113,-50,79,0.44209018081929374],[113,-49,64,0.34803052141824065],[113,-49,65,0.35445906629525736],[113,-49,66,0.3610198492982451],[113,-49,67,0.3672629778191645],[113,-49,68,0.37339736066889695],[113,-49,69,0.3795829069037363],[113,-49,70,0.38580948757066674],[113,-49,71,0.3920670866185986],[113,-49,72,0.39834550264709345],[113,-49,73,0.404634098528482],[113,-49,74,0.4109215998895707],[113,-49,75,0.4171959433745027],[113,-49,76,0.4234441755401769],[113,-49,77,0.4296524031608429],[113,-49,78,0.43580579563953054],[113,-49,79,0.44188864014202367],[113,-48,64,0.3473309151088706],[113,-48,65,0.3538109191285239],[113,-48,66,0.36042985363374297],[113,-48,67,0.36716791782826697],[113,-48,68,0.37394060564803466],[113,-48,69,0.3800348529115986],[113,-48,70,0.38616498509724045],[113,-48,71,0.392321917793335],[113,-48,72,0.3984969444797213],[113,-48,73,0.4046813417855677],[113,-48,74,0.4108660336185158],[113,-48,75,0.4170413153438277],[113,-48,76,0.4231966391100637],[113,-48,77,0.429320461329376],[113,-48,78,0.4354001532264388],[113,-48,79,0.44142197527166155],[113,-47,64,0.34673034394395685],[113,-47,65,0.35326128024193554],[113,-47,66,0.3599361291297942],[113,-47,67,0.36673663423833386],[113,-47,68,0.3736492723249294],[113,-47,69,0.3802010293341041],[113,-47,70,0.38623235667564715],[113,-47,71,0.3922880443601236],[113,-47,72,0.3983610234270615],[113,-47,73,0.40444458866778576],[113,-47,74,0.41053192416362866],[113,-47,75,0.4166157002918272],[113,-47,76,0.4226877435464267],[113,-47,77,0.4287387804170061],[113,-47,78,0.4347582564564823],[113,-47,79,0.4407342315520703],[113,-46,64,0.3462388783772276],[113,-46,65,0.3528175546964802],[113,-46,66,0.35954310666923756],[113,-46,67,0.36639924538936075],[113,-46,68,0.3733741527140075],[113,-46,69,0.3800845882605855],[113,-46,70,0.3860188667121097],[113,-46,71,0.3919769484693776],[113,-46,72,0.39795345496831236],[113,-46,73,0.40394371100440735],[113,-46,74,0.40994313117496234],[113,-46,75,0.4159466899598947],[113,-46,76,0.4219484770351055],[113,-46,77,0.4279413392899782],[113,-46,78,0.4339166108897258],[113,-46,79,0.4398639325855947],[113,-45,64,0.3458590855958681],[113,-45,65,0.35247991306215654],[113,-45,66,0.35924836677764455],[113,-45,67,0.36615051383744784],[113,-45,68,0.37317639474492426],[113,-45,69,0.37969407468363725],[113,-45,70,0.3855364007709221],[113,-45,71,0.39140387005914307],[113,-45,72,0.39729276648704037],[113,-45,73,0.40320037535562736],[113,-45,74,0.40912423345792687],[113,-45,75,0.4150614753917791],[113,-45,76,0.4210082778839494],[113,-45,77,0.4269594038121679],[113,-45,78,0.4329078474603768],[113,-45,79,0.4388445823831333],[113,-44,64,0.3455867005088084],[113,-44,65,0.35224196047136386],[113,-44,66,0.3590432962844179],[113,-44,67,0.36597947680759935],[113,-44,68,0.37304256055155305],[113,-44,69,0.37904286864768716],[113,-44,70,0.3848009627580213],[113,-44,71,0.3905873705091172],[113,-44,72,0.3963999387375911],[113,-44,73,0.40223777328327875],[113,-44,74,0.40810035844586856],[113,-44,75,0.41398678518210275],[113,-44,76,0.41989509008678283],[113,-44,77,0.42582170703929095],[113,-44,78,0.431761033224894],[113,-44,79,0.4377051110586894],[113,-43,64,0.3454113073990996],[113,-43,65,0.3520914172426324],[113,-43,66,0.35891375754858224],[113,-43,67,0.36587009424230277],[113,-43,68,0.37250159860127247],[113,-43,69,0.3781486083379797],[113,-43,70,0.3838321506811906],[113,-43,71,0.3895488721502775],[113,-43,72,0.39529802010799536],[113,-43,73,0.4010803210473256],[113,-43,74,0.4068969774490246],[113,-43,75,0.41274878561156575],[113,-43,76,0.41863537668706907],[113,-43,77,0.4245545829751815],[113,-43,78,0.4305019313333209],[113,-43,79,0.43647026535836475],[113,-42,64,0.3453170342196477],[113,-42,65,0.3520108130284406],[113,-42,66,0.3588407721488099],[113,-42,67,0.3658019124985313],[113,-42,68,0.37145460122687346],[113,-42,69,0.3770325925304042],[113,-42,70,0.382652609569294],[113,-42,71,0.3883121724031707],[113,-42,72,0.3940117126713612],[113,-42,73,0.39975332796634055],[113,-42,74,0.4055396661899067],[113,-42,75,0.4113729424741599],[113,-42,76,0.41725409106254685],[113,-42,77,0.4231820543448402],[113,-42,78,0.4291532110258294],[113,-42,79,0.43516094518297105],[113,-41,64,0.3452832616073679],[113,-41,65,0.35197819653885554],[113,-41,66,0.35880122103683765],[113,-41,67,0.3647360623468326],[113,-41,68,0.3701998603782801],[113,-41,69,0.375719160717529],[113,-41,70,0.38128746002527686],[113,-41,71,0.38690293120743235],[113,-41,72,0.39256692890430733],[113,-41,73,0.39828263256369845],[113,-41,74,0.40405383001565076],[113,-41,75,0.40988384427924446],[113,-41,76,0.41577460612686873],[113,-41,77,0.4217258747112011],[113,-41,78,0.42773460832655097],[113,-41,79,0.43379448713177693],[113,-40,64,0.34528534877769107],[113,-40,65,0.35196786298177557],[113,-40,66,0.358024935976826],[113,-40,67,0.3633558399241026],[113,-40,68,0.36876361120818074],[113,-40,69,0.37423504912798944],[113,-40,70,0.3797637007863811],[113,-40,71,0.38534813030042675],[113,-40,72,0.39099031784266475],[113,-40,73,0.39669420550906914],[113,-40,74,0.4024643930618299],[113,-40,75,0.40830498639140744],[113,-40,76,0.4142186013205487],[113,-40,77,0.42020552513524073],[113,-40,78,0.42626303797612997],[113,-40,79,0.42822268826766224],[113,-39,64,0.3452953785394592],[113,-39,65,0.35137245945703954],[113,-39,66,0.35653828818024375],[113,-39,67,0.36181283374880313],[113,-39,68,0.36717425389315517],[113,-39,69,0.37260872076681484],[113,-39,70,0.37810958357194696],[113,-39,71,0.383675502805914],[113,-39,72,0.389308759343445],[113,-39,73,0.39501371825906045],[113,-39,74,0.4007954505317925],[113,-39,75,0.40549960900491855],[113,-39,76,0.41260590714354395],[113,-39,77,0.41500430271793565],[113,-39,78,0.4050852831795845],[113,-39,79,0.40326208721813106],[113,-38,64,0.3448483890838069],[113,-38,65,0.3498061616916559],[113,-38,66,0.35491032509990994],[113,-38,67,0.3601369499323508],[113,-38,68,0.3654616219924194],[113,-38,69,0.3708696675233001],[113,-38,70,0.37635395841424435],[113,-38,71,0.3775154534256549],[113,-38,72,0.373709028802742],[113,-38,73,0.3857596144070844],[113,-38,74,0.3860140300751288],[113,-38,75,0.3806241142957263],[113,-38,76,0.3920608743919475],[113,-38,77,0.3912790780005238],[113,-38,78,0.38614413550478455],[113,-38,79,0.37934210162883203],[113,-37,64,0.34323672763892255],[113,-37,65,0.3481223196752969],[113,-37,66,0.3531721303700389],[113,-37,67,0.35835911563467326],[113,-37,68,0.36365622208541737],[113,-37,69,0.3690476823212697],[113,-37,70,0.3745255875916073],[113,-37,71,0.3689812642576352],[113,-37,72,0.3648253766309495],[113,-37,73,0.36813871228356365],[113,-37,74,0.3721614566655108],[113,-37,75,0.36687033827779164],[113,-37,76,0.3750471025632103],[113,-37,77,0.3698668441520302],[113,-37,78,0.37172700623542787],[113,-37,79,0.361054731261986],[113,-36,64,0.34153257020530503],[113,-36,65,0.3463526771491823],[113,-36,66,0.3513552982756263],[113,-36,67,0.3565104649958356],[113,-36,68,0.3617884424876579],[113,-36,69,0.3671720992253425],[113,-36,70,0.37265242621708883],[113,-36,71,0.3680209917253182],[113,-36,72,0.36392626889511],[113,-36,73,0.36296775806119974],[113,-36,74,0.3675911787262312],[113,-36,75,0.3614338354305314],[113,-36,76,0.36755901086675813],[113,-36,77,0.35851401335594946],[113,-36,78,0.3625328615278807],[113,-36,79,0.3540779326866657],[113,-35,64,0.3397676153948712],[113,-35,65,0.34452890227129973],[113,-35,66,0.34949107320773415],[113,-35,67,0.3546214927477734],[113,-35,68,0.35988772879805914],[113,-35,69,0.3652709993662181],[113,-35,70,0.37076086748001524],[113,-35,71,0.36911983285051914],[113,-35,72,0.3657003139024465],[113,-35,73,0.36921921991730927],[113,-35,74,0.3719237605414754],[113,-35,75,0.3627068431403643],[113,-35,76,0.36585442739149254],[113,-35,77,0.3612817039266133],[113,-35,78,0.36252225373501595],[113,-35,79,0.35569269018554056],[113,-34,64,0.3379728556303614],[113,-34,65,0.3426816879828788],[113,-34,66,0.34760945505552227],[113,-34,67,0.352721173142368],[113,-34,68,0.3579817239964668],[113,-34,69,0.36337038050863535],[113,-34,70,0.36887495049277425],[113,-34,71,0.3744895659169326],[113,-34,72,0.3734295113732695],[113,-34,73,0.37939657980642416],[113,-34,74,0.3818983359224251],[113,-34,75,0.3768645991676718],[113,-34,76,0.37405928823472395],[113,-34,77,0.3710532146699653],[113,-34,78,0.3685567919698217],[113,-34,79,0.3613322889742171],[113,-33,64,0.33617764819624835],[113,-33,65,0.34083981641351924],[113,-33,66,0.3457382680954819],[113,-33,67,0.3508360418146241],[113,-33,68,0.35609537078844083],[113,-33,69,0.36149328805899794],[113,-33,70,0.3670155286624509],[113,-33,71,0.372654320886795],[113,-33,72,0.3784065169844562],[113,-33,73,0.3842718907980753],[113,-33,74,0.3902516053049245],[113,-33,75,0.396346852826833],[113,-33,76,0.39270644693151224],[113,-33,77,0.38262037268507276],[113,-33,78,0.3791837717840386],[113,-33,79,0.37120072402347637],[113,-32,64,0.33440874860270337],[113,-32,65,0.3390291848514608],[113,-32,66,0.34390219093750646],[113,-32,67,0.34898923819554833],[113,-32,68,0.3542499738858896],[113,-32,69,0.359658905295751],[113,-32,70,0.3651993964865502],[113,-32,71,0.3708614838660337],[113,-32,72,0.37664003039001254],[113,-32,73,0.38253304254369913],[113,-32,74,0.3885401529982278],[113,-32,75,0.39466127158263153],[113,-32,76,0.40089540693979314],[113,-32,77,0.40009418134794306],[113,-32,78,0.39771106892892094],[113,-32,79,0.38497465192958563],[113,-31,64,0.33268930380267664],[113,-31,65,0.33727179082129216],[113,-31,66,0.34212174510067117],[113,-31,67,0.3471995060990577],[113,-31,68,0.35246221991728643],[113,-31,69,0.35788160060503754],[113,-31,70,0.3634383726646187],[113,-31,71,0.36912013111766656],[113,-31,72,0.3749195296314305],[113,-31,73,0.3808326257674846],[113,-31,74,0.3868573861265827],[113,-31,75,0.3929923539140965],[113,-31,76,0.3992354811855814],[113,-31,77,0.4055831277538284],[113,-31,78,0.412029228449863],[113,-31,79,0.40509861546675674],[113,-30,64,0.331037802835326],[113,-30,65,0.3355846738428209],[113,-30,66,0.3404122398204138],[113,-30,67,0.34548015013243016],[113,-30,68,0.3507431526816131],[113,-30,69,0.3561699295186042],[113,-30,70,0.36173833742480127],[113,-30,71,0.3674333296830083],[113,-30,72,0.3732451857151016],[113,-30,73,0.3791678908860649],[113,-30,74,0.385197669120257],[113,-30,75,0.3913316707350759],[113,-30,76,0.39756681764166796],[113,-30,77,0.4038988077942297],[113,-30,78,0.41032128049125566],[113,-30,79,0.41682514384614705],[113,-29,64,0.32946698251774614],[113,-29,65,0.33397881149190667],[113,-29,66,0.3387826707332324],[113,-29,67,0.34383794562046466],[113,-29,68,0.3490971014958588],[113,-29,69,0.3545255893803322],[113,-29,70,0.3600982219861738],[113,-29,71,0.36579717050110955],[113,-29,72,0.37161023999127185],[113,-29,73,0.3775292870085364],[113,-29,74,0.38354878192064956],[113,-29,75,0.3896645182525355],[113,-29,76,0.3958724710831123],[113,-29,77,0.40216780628597804],[113,-29,78,0.4085440421368016],[113,-29,79,0.4149923645373916],[113,-28,64,0.32798268587169654],[113,-28,65,0.33245796744728495],[113,-28,66,0.33723457014554353],[113,-28,67,0.34227199979013007],[113,-28,68,0.34752056043732155],[113,-28,69,0.3529423245126489],[113,-28,70,0.3585089481146075],[113,-28,71,0.3641997512228848],[113,-28,72,0.3700000392951357],[113,-28,73,0.3758995584655086],[113,-28,74,0.3818910867429344],[113,-28,75,0.38796916338932835],[113,-28,76,0.39412895842670137],[113,-28,77,0.40036528397972093],[113,-28,78,0.40667174890870655],[113,-28,79,0.4130400579294564],[113,-27,64,0.32680103829535323],[113,-27,65,0.33101748928892466],[113,-27,66,0.33576080667217717],[113,-27,67,0.3407725620373275],[113,-27,68,0.3460010163514755],[113,-27,69,0.351404779816816],[113,-27,70,0.3569523157843867],[113,-27,71,0.3626201068259571],[113,-27,72,0.3683910186262116],[113,-27,73,0.37425278867536305],[113,-27,74,0.38019664205357306],[113,-27,75,0.3862160363936176],[113,-27,76,0.3923055378906408],[113,-27,77,0.3984598299994401],[113,-27,78,0.4046728562226005],[113,-27,79,0.41093709814881024],[113,-26,64,0.32847322676637425],[113,-26,65,0.3296430539118584],[113,-26,66,0.33434433212564824],[113,-26,67,0.3393197811889034],[113,-26,68,0.34451572358213783],[113,-26,69,0.34988730082000297],[113,-26,70,0.35539983702806766],[113,-26,71,0.36102708619624796],[113,-26,72,0.3667496296298309],[113,-26,73,0.3725533897236719],[113,-26,74,0.37842826226487214],[113,-26,75,0.3843668692770132],[113,-26,76,0.3903634342146548],[113,-26,77,0.39641278110200545],[113,-26,78,0.4025094589863817],[113,-26,79,0.4086469928469982],[113,-25,64,0.33007872168606894],[113,-25,65,0.32834727615550197],[113,-25,66,0.33295687271844454],[113,-25,67,0.337882459259307],[113,-25,68,0.34303052766423053],[113,-25,69,0.3483528354418959],[113,-25,70,0.3538117239436091],[113,-25,71,0.3593784339389756],[113,-25,72,0.36503152266719824],[113,-25,73,0.3707553896539558],[113,-25,74,0.3765389134401865],[113,-25,75,0.3823742011882289],[113,-25,76,0.3882554529381346],[113,-25,77,0.3941779420841098],[113,-25,78,0.4001371134298196],[113,-25,79,0.40612779996321574],[113,-24,64,0.33157407986189535],[113,-24,65,0.32991587739590245],[113,-24,66,0.33155956714984886],[113,-24,67,0.336421135742469],[113,-24,68,0.34150541421947495],[113,-24,69,0.34676096369193915],[113,-24,70,0.35214738517300415],[113,-24,71,0.35763368948125945],[113,-24,72,0.36319672065244785],[113,-24,73,0.3688196815768335],[113,-24,74,0.37449076397472014],[113,-24,75,0.38020188465145394],[113,-24,76,0.38594752979053754],[113,-24,77,0.3917237088506659],[113,-24,78,0.3975270194313003],[113,-24,79,0.40335382426321315],[113,-23,64,0.3329084337321495],[113,-23,65,0.33131217677433034],[113,-23,66,0.330112555017665],[113,-23,67,0.33489877227011483],[113,-23,68,0.3399062897119651],[113,-23,69,0.3450807611250571],[113,-23,70,0.3503793364855439],[113,-23,71,0.3557690814973815],[113,-23,72,0.36122540318086915],[113,-23,73,0.36673057152247246],[113,-23,74,0.3722723392771309],[113,-23,75,0.37784266185222026],[113,-23,76,0.3834365190288913],[113,-23,77,0.3890508400929847],[113,-23,78,0.39468353375576815],[113,-23,79,0.40033262404558434],[113,-22,64,0.33403488108441903],[113,-22,65,0.33249198312761113],[113,-22,66,0.3308905663794822],[113,-22,67,0.33328227093725243],[113,-22,68,0.33820333659474183],[113,-22,69,0.3432859618977172],[113,-22,70,0.34848517360913556],[113,-22,71,0.3537663719796191],[113,-22,72,0.35910376311576925],[113,-22,73,0.364478880994876],[113,-22,74,0.36987920119694534],[113,-22,75,0.37529684827254434],[113,-22,76,0.3807273985012584],[113,-22,77,0.38616877962179325],[113,-22,78,0.391620268932487],[113,-22,79,0.3970815909712895],[113,-21,64,0.33405050988356183],[113,-21,65,0.33299566555147053],[113,-21,66,0.3315692997066703],[113,-21,67,0.3311395316137298],[113,-21,68,0.33571371046003007],[113,-21,69,0.34040815797534174],[113,-21,70,0.345253202086477],[113,-21,71,0.35026641058032604],[113,-21,72,0.35545427737972896],[113,-21,73,0.36081382439845655],[113,-21,74,0.3663341169332313],[113,-21,75,0.37199769069245564],[113,-21,76,0.3777818887136166],[113,-21,77,0.3830928427479386],[113,-21,78,0.38835723610375295],[113,-21,79,0.3936250867341984],[113,-20,64,0.3329996480182308],[113,-20,65,0.3319329753449758],[113,-20,66,0.3305051132210149],[113,-20,67,0.3287453832491845],[113,-20,68,0.3319602055571174],[113,-20,69,0.33655998915632934],[113,-20,70,0.34132342816974603],[113,-20,71,0.34626953278335076],[113,-20,72,0.35140594443914225],[113,-20,73,0.35673050672986173],[113,-20,74,0.36223275844319414],[113,-20,75,0.367895346888009],[113,-20,76,0.37369535977355106],[113,-20,77,0.3796055740605893],[113,-20,78,0.3849201437326202],[113,-20,79,0.38999369498367636],[113,-19,64,0.3317930045512613],[113,-19,65,0.33070494426573516],[113,-19,66,0.3292675445073546],[113,-19,67,0.3275084967483934],[113,-19,68,0.3281829451533527],[113,-19,69,0.33268657565358933],[113,-19,70,0.3373664652138872],[113,-19,71,0.3422428445080218],[113,-19,72,0.3473244105047616],[113,-19,73,0.352609841770729],[113,-19,74,0.35808924635929407],[113,-19,75,0.36374554047227675],[113,-19,76,0.3695557562019387],[113,-19,77,0.37549227679100317],[113,-19,78,0.3813396827733794],[113,-19,79,0.3862234700290103],[113,-18,64,0.33046680426279684],[113,-18,65,0.3293450250877767],[113,-18,66,0.32788685129663014],[113,-18,67,0.32611805188631227],[113,-18,68,0.32440276769713533],[113,-18,69,0.3288043596767639],[113,-18,70,0.3333939036596041],[113,-18,71,0.33819267326850405],[113,-18,72,0.3432103957982226],[113,-18,73,0.3484466815268625],[113,-18,74,0.35389239833676966],[113,-18,75,0.3595309899127757],[113,-18,76,0.3653397358839756],[113,-18,77,0.37129095238283705],[113,-18,78,0.37735313161214656],[113,-18,79,0.38234818223673517],[113,-17,64,0.32904255164455837],[113,-17,65,0.32787261221616326],[113,-17,66,0.326379998527813],[113,-17,67,0.3245882828521588],[113,-17,68,0.3225501918975681],[113,-17,69,0.3249080111453705],[113,-17,70,0.3293964843530268],[113,-17,71,0.3341055577289372],[113,-17,72,0.3390460087372441],[113,-17,73,0.34421853142814984],[113,-17,74,0.3496150062513863],[113,-17,75,0.3552197288894661],[113,-17,76,0.36101059655988244],[113,-17,77,0.3669602503147149],[113,-17,78,0.3730371719544066],[113,-17,79,0.3783810003827805],[113,-16,64,0.32747469338375584],[113,-16,65,0.32624333251156346],[113,-16,66,0.32470419622160784],[113,-16,67,0.32287844885354855],[113,-16,68,0.32081665832030326],[113,-16,69,0.320948239083485],[113,-16,70,0.3253278857848589],[113,-16,71,0.3299384312280564],[113,-16,72,0.3347916401505749],[113,-16,73,0.33988935411690707],[113,-16,74,0.34522462805652804],[113,-16,75,0.35078284366113804],[113,-16,76,0.3565427981928077],[113,-16,77,0.36247776730034087],[113,-16,78,0.3685565404957293],[113,-16,79,0.3743007307812233],[113,-15,64,0.32571240157208586],[113,-15,65,0.3244082762369843],[113,-15,66,0.322812856836262],[113,-15,67,0.32094475399619515],[113,-15,68,0.3188517861795228],[113,-15,69,0.316875008388229],[113,-15,70,0.32114183326574214],[113,-15,71,0.3256490724172396],[113,-15,72,0.33040931949405217],[113,-15,73,0.33542552349482835],[113,-15,74,0.3406919680192151],[113,-15,75,0.34619524720885897],[113,-15,76,0.3519152370438866],[113,-15,77,0.35782606067042044],[113,-15,78,0.3638970464509012],[113,-15,79,0.3700835127388924],[113,-14,64,0.3237174281047058],[113,-14,65,0.3223309940722947],[113,-14,66,0.3206715336132782],[113,-14,67,0.3187550145359604],[113,-14,68,0.3166259395590336],[113,-14,69,0.3143367480069208],[113,-14,70,0.3168017345333881],[113,-14,71,0.32120375475885793],[113,-14,72,0.32586827413321057],[113,-14,73,0.3307992289202657],[113,-14,74,0.3359921019270568],[113,-14,75,0.3414347427833794],[113,-14,76,0.34710820508689],[113,-14,77,0.35298759917323513],[113,-14,78,0.3590429592447265],[113,-14,79,0.36524012357381525],[113,-13,64,0.32146216313922343],[113,-13,65,0.31998556699575065],[113,-13,66,0.3182560329720322],[113,-13,67,0.3162868457082329],[113,-13,68,0.3141186618354133],[113,-13,69,0.31180124888942157],[113,-13,70,0.3122792531326895],[113,-13,71,0.3165760210738475],[113,-13,72,0.32114393355809495],[113,-13,73,0.32598773504087913],[113,-13,74,0.3311040153798962],[113,-13,75,0.33648185989220486],[113,-13,76,0.34210353889957495],[113,-13,77,0.3479452356083735],[113,-13,78,0.35397781109916343],[113,-13,79,0.3601676051391249],[113,-12,64,0.23692282853363836],[113,-12,65,0.27958807889229925],[113,-12,66,0.31555068233308986],[113,-12,67,0.3135259978209719],[113,-12,68,0.3113171099239792],[113,-12,69,0.30897045410739343],[113,-12,70,0.3075529975866886],[113,-12,71,0.31174555698971984],[113,-12,72,0.3162170126178725],[113,-12,73,0.320972697892113],[113,-12,74,0.3260101729343833],[113,-12,75,0.3313196933663021],[113,-12,76,0.33688474187015427],[113,-12,77,0.3426826214462108],[113,-12,78,0.3486851091820287],[113,-12,79,0.3548591692404752],[113,-11,64,0.12316955664503793],[113,-11,65,0.15039012987997924],[113,-11,66,0.1808543917193091],[113,-11,67,0.21452913461496936],[113,-11,68,0.2513751548840501],[113,-11,69,0.29133771718232904],[113,-11,70,0.30337344739027644],[113,-11,71,0.3066971630557474],[113,-11,72,0.31107267351644735],[113,-11,73,0.3157395369874271],[113,-11,74,0.3206961178247982],[113,-11,75,0.3259337452425995],[113,-11,76,0.33143707948616064],[113,-11,77,0.3371845632523768],[113,-11,78,0.3431489572113996],[113,-11,79,0.3492979583273807],[113,-10,64,0.05504352174816553],[113,-10,65,0.07021339826087362],[113,-10,66,0.08799864050178856],[113,-10,67,0.10843365212943605],[113,-10,68,0.1315420388430484],[113,-10,69,0.15733006268614877],[113,-10,70,0.18577388317277566],[113,-10,71,0.21682181518697188],[113,-10,72,0.25039699741909055],[113,-10,73,0.2864001284661429],[113,-10,74,0.3151501021028809],[113,-10,75,0.320311769219524],[113,-10,76,0.32574764738879286],[113,-10,77,0.3314373205414477],[113,-10,78,0.3373545861000124],[113,-10,79,0.3434679733512112],[113,-9,64,0.03700941539909767],[113,-9,65,0.03990251458025829],[113,-9,66,0.04272403117899236],[113,-9,67,0.046147853122920524],[113,-9,68,0.058665958822292676],[113,-9,69,0.07334387983947337],[113,-9,70,0.09021766557638164],[113,-9,71,0.1092942593026134],[113,-9,72,0.13055379031216405],[113,-9,73,0.1539519630427877],[113,-9,74,0.17942252922389867],[113,-9,75,0.20687982978136554],[113,-9,76,0.2362213939878117],[113,-9,77,0.2673305841979307],[113,-9,78,0.3000792754653714],[113,-9,79,0.3343305603834992],[113,-8,64,0.032307168458874116],[113,-8,65,0.03510691034507966],[113,-8,66,0.03786140169182042],[113,-8,67,0.040567812990493654],[113,-8,68,0.0432379375087608],[113,-8,69,0.04589533736786027],[113,-8,70,0.04856213586035407],[113,-8,71,0.051257771114305725],[113,-8,72,0.05767673320527778],[113,-8,73,0.0712032052009037],[113,-8,74,0.08648383947582233],[113,-8,75,0.10348388480316607],[113,-8,76,0.12214910838518994],[113,-8,77,0.14240821658828243],[113,-8,78,0.16417533972071252],[113,-8,79,0.18735257109150025],[113,-7,64,0.0275425050221055],[113,-7,65,0.030250969802992633],[113,-7,66,0.03294038217470902],[113,-7,67,0.035605663690326986],[113,-7,68,0.03825293400436983],[113,-7,69,0.04090009547322549],[113,-7,70,0.04356519432590992],[113,-7,71,0.04626493922644964],[113,-7,72,0.0490136492985311],[113,-7,73,0.05182237529439895],[113,-7,74,0.054698194371007626],[113,-7,75,0.057643678562845774],[113,-7,76,0.060656536670110894],[113,-7,77,0.06555739573603815],[113,-7,78,0.0786771387609612],[113,-7,79,0.09303859782693517],[113,-6,64,0.022726715053885193],[113,-6,65,0.02534684204963369],[113,-6,66,0.027973548530950364],[113,-6,67,0.030599636772420478],[113,-6,68,0.033225546046311775],[113,-6,69,0.03586335021173909],[113,-6,70,0.03852682076642582],[113,-6,71,0.04122972940183835],[113,-6,72,0.04398456648809051],[113,-6,73,0.046801450184913676],[113,-6,74,0.04968722684354773],[113,-6,75,0.05264476294989937],[113,-6,76,0.055672428447366494],[113,-6,77,0.05876377087305506],[113,-6,78,0.06190737934502288],[113,-6,79,0.06508693705624087],[113,-5,64,0.017871705389618485],[113,-5,65,0.020407174623547457],[113,-5,66,0.022973871020441763],[113,-5,67,0.0255626135565372],[113,-5,68,0.02816825205148914],[113,-5,69,0.030796985853445515],[113,-5,70,0.03345820927555802],[113,-5,71,0.03616262031370327],[113,-5,72,0.03892072770139321],[113,-5,73,0.04174156392740159],[113,-5,74,0.044631605068990055],[113,-5,75,0.04759389784204987],[113,-5,76,0.05062739382027042],[113,-5,77,0.05372649033352105],[113,-5,78,0.056880777122540915],[113,-5,79,0.060074987408629474],[113,-4,64,0.012989566205418046],[113,-4,65,0.01544466563591912],[113,-4,66,0.017954266608846796],[113,-4,67,0.02050734342277897],[113,-4,68,0.023093344024649458],[113,-4,69,0.025712673125851834],[113,-4,70,0.02837034463107695],[113,-4,71,0.031073921227877513],[113,-4,72,0.033831831549888176],[113,-4,73,0.036651906247403374],[113,-4,74,0.03954013399024865],[113,-4,75,0.042499637943813215],[113,-4,76,0.04552987277724173],[113,-4,77,0.048626041788244326],[113,-4,78,0.05177873326348397],[113,-4,79,0.05497377474316512],[113,-3,64,0.008092320871991509],[113,-3,65,0.0104717957431554],[113,-3,66,0.012927325664184055],[113,-3,67,0.015446178014257822],[113,-3,68,0.018012678977015167],[113,-3,69,0.02062164338295342],[113,-3,70,0.0232738014471252],[113,-3,71,0.025973595861340928],[113,-3,72,0.028727333515499207],[113,-3,73,0.03154156649498247],[113,-3,74,0.03442170353321287],[113,-3,75,0.03737085258701785],[113,-3,76,0.04038889469308316],[113,-3,77,0.04347178876176783],[113,-3,78,0.04661110647178857],[113,-3,79,0.04979379595204846],[113,-2,64,0.003191863119035891],[113,-2,65,0.00550074378751292],[113,-2,66,0.007905216677750272],[113,-2,67,0.010390975771126328],[113,-2,68,0.012937590583923733],[113,-2,69,0.01553461004330441],[113,-2,70,0.018178674448369236],[113,-2,71,0.020871197906276815],[113,-2,72,0.02361638132382625],[113,-2,73,0.02641946235559936],[113,-2,74,0.02928520362244955],[113,-2,75,0.03221661998081939],[113,-2,76,0.035213945092078154],[113,-2,77,0.03827383701716106],[113,-2,78,0.04138882204726602],[113,-2,79,0.04454697548265526],[113,-1,64,-0.001699914433824696],[113,-1,65,5.434900705705266E-4],[113,-1,66,0.002899772831928835],[113,-1,67,0.005353180427387994],[113,-1,68,0.007878964468978032],[113,-1,69,0.010461840380652612],[113,-1,70,0.01309464258146084],[113,-1,71,0.015775920501839187],[113,-1,72,0.01850784102031895],[113,-1,73,0.021294332817303415],[113,-1,74,0.024139474073779185],[113,-1,75,0.027046124393448844],[113,-1,76,0.030014801279352937],[113,-1,77,0.033042800956034346],[113,-1,78,0.03612356279774382],[113,-1,79,0.03924627610862677],[113,0,64,-0.006570796264678894],[113,0,65,-0.004387888704380347],[113,0,66,-0.0020772356826516216],[113,0,67,3.4407718635399683E-4],[113,0,68,0.0028474805876054915],[113,0,69,0.0054133808341807945],[113,0,70,0.0080311697584753],[113,0,71,0.010696762008618566],[113,0,72,0.013410415599254242],[113,0,73,0.01617479667757347],[113,0,74,0.018993290025403974],[113,0,75,0.021868556258520105],[113,0,76,0.024801336126643286],[113,0,77,0.027789501767295787],[113,0,78,0.03082735422584192],[113,0,79,0.03390516602928344],[113,1,64,-0.01140771737238917],[113,1,65,-0.009280726739087924],[113,1,66,-0.0070136383726159416],[113,1,67,-0.0046247689194517435],[113,1,68,-0.002145973408003869],[113,1,69,3.9943916748985686E-4],[113,1,70,0.002997845064858874],[113,1,71,0.005642810473180756],[113,1,72,0.008332858181897423],[113,1,73,0.011069478257363995],[113,1,74,0.013855384319709979],[113,1,75,0.016693016448641188],[113,1,76,0.019583291184469186],[113,1,77,0.022524598535685024],[113,1,78,0.025512045358837495],[113,1,79,0.028536943946929263],[113,2,64,-0.016196028043271377],[113,2,65,-0.014121074914264235],[113,2,66,-0.011896208218750823],[113,2,67,-0.009540891934728103],[113,2,68,-0.007089718347055395],[113,2,69,-0.004569077878727978],[113,2,70,-0.0019951395650719015],[113,2,71,6.23644302752152E-4],[113,2,72,0.003284276929095377],[113,2,73,0.00598719732382218],[113,2,74,0.008734503816433254],[113,2,75,0.011528421856096965],[113,2,76,0.014370016617565713],[113,2,77,0.017258150378463306],[113,2,78,0.02018868408822927],[113,2,79,0.023153922019655132],[113,3,64,-0.0074162046598447145],[113,3,65,-0.013908614817295252],[113,3,66,-0.016709823196612152],[113,3,67,-0.014390125797654259],[113,3,68,-0.011970529788265492],[113,3,69,-0.009479869498895564],[113,3,70,-0.006936371297183188],[113,3,71,-0.004350148418039171],[113,3,72,-0.0017254677990036222],[113,3,73,9.372203349850367E-4],[113,3,74,0.00363949181875359],[113,3,75,0.006383397948622368],[113,3,76,0.009170155504484882],[113,3,77,0.011999077408384302],[113,3,78,0.014866743495202369],[113,3,79,0.017766410346140498],[113,4,64,8.305318296592957E-4],[113,4,65,-0.0012482677933860534],[113,4,66,-0.0039676486567170564],[113,4,67,-0.0075208488047157655],[113,4,68,-0.01208312631090891],[113,4,69,-0.014318369557470954],[113,4,70,-0.011812440973255395],[113,4,71,-0.009266315442881645],[113,4,72,-0.006685256654653558],[113,4,73,-0.004070407352081411],[113,4,74,-0.0014205800043395717],[113,4,75,0.0012661869727563745],[113,4,76,0.003991308051287724],[113,4,77,0.006754564545816274],[113,4,78,0.009553253219897135],[113,4,79,0.012381568559007149],[113,5,64,0.0011138955593690584],[113,5,65,1.2705501149329064E-4],[113,5,66,-6.178667574057758E-4],[113,5,67,-0.001383885176233136],[113,5,68,-0.0024144032241719534],[113,5,69,-0.003910668727622397],[113,5,70,-0.006031119342593703],[113,5,71,-0.008896388731895235],[113,5,72,-0.011582099949102672],[113,5,73,-0.009024454116152887],[113,5,74,-0.006436236934991347],[113,5,75,-0.0038154360407113876],[113,5,76,-0.0011603334033530948],[113,5,77,0.0015293976329991002],[113,5,78,0.004251823781354079],[113,5,79,0.0070021107949290295],[113,6,64,0.005142610750274815],[113,6,65,0.0019238219976095137],[113,6,66,-8.984708147512254E-5],[113,6,67,-0.001231258678166208],[113,6,68,-0.0018118656732974536],[113,6,69,-0.002098893921263373],[113,6,70,-0.0023145117880776526],[113,6,71,-0.0026406975880478457],[113,6,72,-0.0032239051388786985],[113,6,73,-0.004179495446684965],[113,6,74,-0.005595919642414395],[113,6,75,-0.007538639624072546],[113,6,76,-0.006280385270456233],[113,6,77,-0.00367477734920167],[113,6,78,-0.0010384481878297899],[113,6,79,0.0016248488838965472],[113,7,64,0.02463218284304433],[113,7,65,0.015855543164315766],[113,7,66,0.00932815933813693],[113,7,67,0.004647259070251363],[113,7,68,0.0014332949924334825],[113,7,69,-6.470153098262436E-4],[113,7,70,-0.0018797142761856052],[113,7,71,-0.0025083465794519077],[113,7,72,-0.002738512112145361],[113,7,73,-0.002742198089773658],[113,7,74,-0.0026618755073260824],[113,7,75,-0.002614346468294138],[113,7,76,-0.0026943302665220067],[113,7,77,-0.002977777531745441],[113,7,78,-0.0035249032397077448],[113,7,79,-0.0037466696812682066],[113,8,64,0.07129392484253202],[113,8,65,0.05363491027577396],[113,8,66,0.039350220692348],[113,8,67,0.02796729767504088],[113,8,68,0.019038537596301315],[113,8,69,0.012164503350341627],[113,8,70,0.00699509444108893],[113,8,71,0.003224922786119228],[113,8,72,5.888638806768377E-4],[113,8,73,-0.0011421837076512095],[113,8,74,-0.002165315855761306],[113,8,75,-0.00264940398996637],[113,8,76,-0.002738627663745657],[113,8,77,-0.002555747867843206],[113,8,78,-0.002205111763753818],[113,8,79,-0.001775381008508339],[113,9,64,0.15682868958982987],[113,9,65,0.12696497605366494],[113,9,66,0.10168159675190341],[113,9,67,0.08043652478635735],[113,9,68,0.06271426837933983],[113,9,69,0.048049172640086096],[113,9,70,0.03602688590693824],[113,9,71,0.026279855814000296],[113,9,72,0.01848298391310086],[113,9,73,0.012349475947676635],[113,9,74,0.007626902331909584],[113,9,75,0.00409348220202794],[113,9,76,0.0015546031519314074],[113,9,77,-1.60412552837671E-4],[113,9,78,-0.0012012858619903405],[113,9,79,-0.0016994949215850034],[113,10,64,0.1991632807561921],[113,10,65,0.19564478630282184],[113,10,66,0.19220181533731112],[113,10,67,0.17375352284518297],[113,10,68,0.14416160737255765],[113,10,69,0.11871100858916125],[113,10,70,0.09692292275696741],[113,10,71,0.07836727351646976],[113,10,72,0.06265847605759796],[113,10,73,0.049451383652370416],[113,10,74,0.03843743099182781],[113,10,75,0.0293409876323647],[113,10,76,0.021915933656925787],[113,10,77,0.015942468397327745],[113,10,78,0.011224161750049512],[113,10,79,0.007585256268026366],[113,11,64,0.19214865940279904],[113,11,65,0.18855681054909215],[113,11,66,0.18503483148499572],[113,11,67,0.18156052660989208],[113,11,68,0.178094847993523],[113,11,69,0.1746068104841275],[113,11,70,0.17107779519029626],[113,11,71,0.1674992196313992],[113,11,72,0.1448214955898604],[113,11,73,0.121873278697228],[113,11,74,0.10197966913774638],[113,11,75,0.08481015956437432],[113,11,76,0.07006595900949285],[113,11,77,0.05747685077543706],[113,11,78,0.04679827854120457],[113,11,79,0.03780866904430001],[113,12,64,0.18515695973239185],[113,12,65,0.18149671824195082],[113,12,66,0.17789950919538322],[113,12,67,0.174344332179785],[113,12,68,0.1707930754466949],[113,12,69,0.16721501378193984],[113,12,70,0.16359170319509658],[113,12,71,0.15991472305787396],[113,12,72,0.1561835425711982],[113,12,73,0.15240356945845665],[113,12,74,0.14858438282453384],[113,12,75,0.14473815165148055],[113,12,76,0.14087823993380252],[113,12,77,0.13615686502969646],[113,12,78,0.11723770529655536],[113,12,79,0.1006896049602651],[113,13,64,0.178196810800529],[113,13,65,0.174474214400285],[113,13,66,0.17080680314523797],[113,13,67,0.1671753849243718],[113,13,68,0.16354330616263524],[113,13,69,0.15988036620781354],[113,13,70,0.15616841814391183],[113,13,71,0.15239921097125475],[113,13,72,0.14857232840500412],[113,13,73,0.14469330004425573],[113,13,74,0.14077188683473596],[113,13,75,0.13682054230033242],[113,13,76,0.13285305057158606],[113,13,77,0.12888334179549638],[113,13,78,0.12747274538234188],[113,13,79,0.12952176223441514],[113,14,64,0.1712795704405968],[113,14,65,0.16750140936276323],[113,14,66,0.16376971634363874],[113,14,67,0.16006766729506033],[113,14,68,0.15636056374066398],[113,14,69,0.15261898685440656],[113,14,70,0.14882519066090558],[113,14,71,0.1449710748595323],[113,14,72,0.14105622227183873],[113,14,73,0.1370860967750074],[113,14,74,0.13307040360196787],[113,14,75,0.12902161346773738],[113,14,76,0.12495365156088833],[113,14,77,0.12088075202130011],[113,14,78,0.11681647811317883],[113,14,79,0.11812148175890275],[113,15,64,0.16442976131004422],[113,15,65,0.16060321759545843],[113,15,66,0.15681355755420312],[113,15,67,0.15304679141713556],[113,15,68,0.1492706238073016],[113,15,69,0.1454566636741657],[113,15,70,0.1415876596207611],[113,15,71,0.13765563435871114],[113,15,72,0.13366004817918012],[113,15,73,0.12960610878882797],[113,15,74,0.12550322932267294],[113,15,75,0.12136363595768901],[113,15,76,0.11720112616305545],[113,15,77,0.11302997823744514],[113,15,78,0.10886401240303642],[113,15,79,0.10677742107567505],[113,16,64,0.15769673065089962],[113,16,65,0.15382903466668343],[113,16,66,0.14998749744614245],[113,16,67,0.14616131527097628],[113,16,68,0.14232099890468725],[113,16,69,0.13843944938923125],[113,16,70,0.1345000404482348],[113,16,71,0.13049494123694327],[113,16,72,0.1264234300502908],[113,16,73,0.12229033821899608],[113,16,74,0.11810462591348052],[113,16,75,0.1138780912262475],[113,16,76,0.10962421355403959],[113,16,77,0.1053571319535321],[113,16,78,0.10109075880073745],[113,16,79,0.09683802874703584],[113,17,64,0.1511134904842812],[113,17,65,0.14721181002231795],[113,17,66,0.1433242380469481],[113,17,67,0.13944339316342072],[113,17,68,0.13554294860411645],[113,17,69,0.13159738225106368],[113,17,70,0.12759086412059845],[113,17,71,0.12351578870984081],[113,17,72,0.11937125913475151],[113,17,73,0.11516168353255338],[113,17,74,0.11089548533607248],[113,17,75,0.1065839287224753],[113,17,76,0.10224006023320545],[113,17,77,0.09787776725735442],[113,17,78,0.09351095376907852],[113,17,79,0.0891528334130532],[113,18,64,0.14469002222689129],[113,18,65,0.14076139448144223],[113,18,66,0.13683347070369473],[113,18,67,0.13290241561027946],[113,18,68,0.12894536889670838],[113,18,69,0.12493868203204751],[113,18,70,0.12086752290301249],[113,18,71,0.11672463377130071],[113,18,72,0.1125090021234034],[113,18,73,0.1082246244554272],[113,18,74,0.10387936447084967],[113,18,75,0.09948390691240891],[113,18,76,0.09505080799155952],[113,18,77,0.09059364312148412],[113,18,78,0.0861262524040227],[113,18,79,0.08166208406880644],[113,19,64,0.13841700028006088],[113,19,65,0.13446826108374565],[113,19,66,0.13050556654729945],[113,19,67,0.12652864370340788],[113,19,68,0.12251834568291237],[113,19,69,0.118453197559259],[113,19,70,0.11431958707515323],[113,19,71,0.11011075904055656],[113,19,72,0.10582568535087057],[113,19,73,0.10146800757026261],[113,19,74,0.09704505341340154],[113,19,75,0.09256692825387453],[113,19,76,0.08804568258101565],[113,19,77,0.08349455611979265],[113,19,78,0.07892729912192793],[113,19,79,0.07435757113191481],[113,20,64,0.13226934988705022],[113,20,65,0.1283070619920979],[113,20,66,0.12431510643452068],[113,20,67,0.12029668783514931],[113,20,68,0.11623655901407853],[113,20,69,0.11211571311669287],[113,20,70,0.1079219904793516],[113,20,71,0.10364931524803897],[113,20,72,0.09929677326849144],[113,20,73,0.0948677415128357],[113,20,74,0.09036907021845542],[113,20,75,0.0858103187639622],[113,20,76,0.08120304615416184],[113,20,77,0.07656015683148146],[113,20,78,0.071895302376226],[113,20,79,0.06722233950319152],[113,21,64,0.122844198961044],[113,21,65,0.12016077976445265],[113,21,66,0.1173999397357794],[113,21,67,0.11416882815267977],[113,21,68,0.110062535710778],[113,21,69,0.10588911162160383],[113,21,70,0.10163808310571201],[113,21,71,0.0973042429123511],[113,21,72,0.09288694010048962],[113,21,73,0.08838940105952899],[113,21,74,0.08381808177705677],[113,21,75,0.07918205226566422],[113,21,76,0.07449241396278013],[113,21,77,0.06976175081701194],[113,21,78,0.0650036146720041],[113,21,79,0.060232045454889374],[113,22,64,0.11194175348288789],[113,22,65,0.10914872942031112],[113,22,66,0.10630344427059761],[113,22,67,0.10340335931097223],[113,22,68,0.10046281050654425],[113,22,69,0.09750241250551658],[113,22,70,0.09453823902941245],[113,22,71,0.09103107177559594],[113,22,72,0.08655273361369534],[113,22,73,0.08199073942113094],[113,22,74,0.07735125054376557],[113,22,75,0.07264291944253526],[113,22,76,0.06787643586011159],[113,22,77,0.06306408512443147],[113,22,78,0.05821931924123469],[113,22,79,0.05335634137498969],[113,23,64,0.1009785159616894],[113,23,65,0.0980763739069092],[113,23,66,0.0951470894117574],[113,23,67,0.09218559212209708],[113,23,68,0.08920230501167478],[113,23,69,0.08621475565491012],[113,23,70,0.08323702356066626],[113,23,71,0.080279772826692],[113,23,72,0.07735051719945711],[113,23,73,0.07445389613172745],[113,23,74,0.07092250680798527],[113,23,75,0.06614864182305495],[113,23,76,0.06131284316351536],[113,23,77,0.056427121318310014],[113,23,78,0.0515048248001413],[113,23,79,0.046560290205330146],[113,24,64,0.09003215390787911],[113,24,65,0.08702229445928125],[113,24,66,0.08400997592474307],[113,24,67,0.080987983958356],[113,24,68,0.07796289458997507],[113,24,69,0.07494895322402413],[113,24,70,0.0719580498291485],[113,24,71,0.06899953324703122],[113,24,72,0.06608027019901666],[113,24,73,0.0632047351486962],[113,24,74,0.06037513056219663],[113,24,75,0.0575915370387768],[113,24,76,0.054756361403251894],[113,24,77,0.04980779601823661],[113,24,78,0.044819469833702295],[113,24,79,0.03980581146638091],[113,25,64,0.07918104591301395],[113,25,65,0.07606581608890764],[113,25,66,0.07297198324631819],[113,25,67,0.06989062434141954],[113,25,68,0.0668245964078075],[113,25,69,0.06378471078195136],[113,25,70,0.060780500516279465],[113,25,71,0.05781983235703893],[113,25,72,0.05490876844382693],[113,25,73,0.05205147749782896],[113,25,74,0.04925019523060319],[113,25,75,0.046505233585364444],[113,25,76,0.043815038307969345],[113,25,77,0.0411762942362221],[113,25,78,0.03812113784498374],[113,25,79,0.033053160788715015],[113,26,64,0.06850175299526877],[113,26,65,0.06528446538954327],[113,26,66,0.06211122922379469],[113,26,67,0.05897188264698571],[113,26,68,0.05586575010688732],[113,26,69,0.05280010506019828],[113,26,70,0.049781989386447165],[113,26,71,0.04681764235693749],[113,26,72,0.043912176795918204],[113,26,73,0.04106932182166478],[113,26,74,0.038291232088758856],[113,26,75,0.03557836328579227],[113,26,76,0.032929413481340084],[113,26,77,0.03034132975658408],[113,26,78,0.027809379416778773],[113,26,79,0.025327284937128786],[113,27,64,0.05806667879976909],[113,27,65,0.054751614436756205],[113,27,66,0.05150171129303062],[113,27,67,0.0483060598048832],[113,27,68,0.04516069187919233],[113,27,69,0.04206929081459429],[113,27,70,0.039036310175735674],[113,27,71,0.03606624188988867],[113,27,72,0.033163121386007265],[113,27,73,0.03033011458656166],[113,27,74,0.02756918685948035],[113,27,75,0.024880853827737213],[113,27,76,0.02226401373041735],[113,27,77,0.01971586083302435],[113,27,78,0.01723187919794588],[113,27,79,0.014805915949965087],[113,28,64,0.0479419227313024],[113,28,65,0.04453431475107418],[113,28,66,0.04121113291299992],[113,28,67,0.03796121873557926],[113,28,68,0.03477759898560998],[113,28,69,0.03166036782865654],[113,28,70,0.028611333182308917],[113,28,71,0.025633148327006416],[113,28,72,0.022728662936709144],[113,28,73,0.019900369187575852],[113,28,74,0.01714994323183295],[113,28,75,0.014477882076601402],[113,28,76,0.011883235666471696],[113,28,77,0.009363433735836202],[113,28,78,0.006914206774240456],[113,28,79,0.004529600237161474],[113,29,64,0.03818533036283289],[113,29,65,0.03469132557055495],[113,29,66,0.031298919358295096],[113,29,67,0.027997197439013917],[113,29,68,0.02477650840659216],[113,29,69,0.02163341147092093],[113,29,70,0.018567052643560372],[113,29,71,0.0155781858576287],[113,29,72,0.012668388764137672],[113,29,73,0.009839384610425042],[113,29,74,0.007092470658780004],[113,29,75,0.004428053323991464],[113,29,76,0.0018452899358667183],[113,29,77,-6.581632312546741E-4],[113,29,78,-0.00308629727335489],[113,29,79,-0.005444792167934731],[113,30,64,0.028844745741284854],[113,30,65,0.025271340967063093],[113,30,66,0.02181442726742231],[113,30,67,0.01846380895376512],[113,30,68,0.0152075136181208],[113,30,69,0.012038670523685673],[113,30,70,0.00895378828661389],[113,30,71,0.005951692384125486],[113,30,72,0.003032626014221359],[113,30,73,1.9746571106442638E-4],[113,30,74,-0.0025529476664876974],[113,30,75,-0.005218362260964461],[113,30,76,-0.007799552843145443],[113,30,77,-0.010298643015340711],[113,30,78,-0.012719312545079521],[113,30,79,-0.015066890648191129],[113,31,64,0.019956470495915566],[113,31,65,0.016311420635316046],[113,31,66,0.012795352648061566],[113,31,67,0.009399232713977617],[113,31,68,0.006109143799225839],[113,31,69,0.0029149363141427],[113,31,70,-1.894552503867407E-4],[113,31,71,-0.0032071314748607924],[113,31,72,-0.006139221015343527],[113,31,73,-0.008985752545917469],[113,31,74,-0.011746404876265593],[113,31,75,-0.0144211348060957],[113,31,76,-0.017010682596096362],[113,31,77,-0.019516955243998116],[113,31,78,-0.021943288051832432],[113,31,79,-0.02429458525424854],[113,32,64,0.011543934937774251],[113,32,65,0.00783562947822133],[113,32,66,0.004266342343957884],[113,32,67,8.286021416566746E-4],[113,32,68,-0.0024930699083494717],[113,32,69,-0.005711912505409431],[113,32,70,-0.008836467114793169],[113,32,71,-0.01187172765998483],[113,32,72,-0.014820206316397733],[113,32,73,-0.017682874261129043],[113,32,74,-0.020459976485277795],[113,32,75,-0.023151720113584066],[113,32,76,-0.025758836007559165],[113,32,77,-0.028283013750595526],[113,32,78,-0.030727210424427942],[113,32,79,-0.03146560302842313],[113,33,64,0.0036165866151125613],[113,33,65,-1.4610859994831742E-4],[113,33,66,-0.0037621857343496925],[113,33,67,-0.0072372063832241],[113,33,68,-0.010587836157966652],[113,33,69,-0.013830184869489255],[113,33,70,-0.016975142730843218],[113,33,71,-0.02002953630499854],[113,33,72,-0.022997246923006438],[113,33,73,-0.025880202267234014],[113,33,74,-0.02867924011192372],[113,33,75,-0.02964635745477026],[113,33,76,-0.02637743400761527],[113,33,77,-0.023208436546634004],[113,33,78,-0.020142512759447954],[113,33,79,-0.01718364836904053],[113,34,64,-0.0038309979453754334],[113,34,65,-0.007638937003925735],[113,34,66,-0.01129500802553414],[113,34,67,-0.014802577737066312],[113,34,68,-0.018179147941830908],[113,34,69,-0.02144346694002006],[113,34,70,-0.02460862545742538],[113,34,71,-0.02768319750460324],[113,34,72,-0.026454039562061504],[113,34,73,-0.02272543758863539],[113,34,74,-0.019095560335132343],[113,34,75,-0.015567554827762092],[113,34,76,-0.012144041193553438],[113,34,77,-0.008827639058478495],[113,34,78,-0.005621365322757536],[113,34,79,-0.0025289038581369104],[113,35,64,-0.010819772334351309],[113,35,65,-0.014663766913186603],[113,35,66,-0.018352840520634357],[113,35,67,-0.02188794973478546],[113,35,68,-0.025287124403390652],[113,35,69,-0.024747144258189312],[113,35,70,-0.020573936785816125],[113,35,71,-0.016483240695225065],[113,35,72,-0.012485752148330725],[113,35,73,-0.008588944231911939],[113,35,74,-0.00479800102933302],[113,35,75,-0.0011166250290917373],[113,35,76,0.00245228263681166],[113,35,77,0.005906069301324899],[113,35,78,0.009241905073505294],[113,35,79,0.012456483901277331],[113,36,64,-0.017386643989321247],[113,36,65,-0.02125774571601284],[113,36,66,-0.0243547384155482],[113,36,67,-0.01986565093535201],[113,36,68,-0.015394911142804849],[113,36,69,-0.010971960503341142],[113,36,70,-0.006619353855659379],[113,36,71,-0.002353834526300136],[113,36,72,0.0018124735338318572],[113,36,73,0.005870995191591791],[113,36,74,0.009815756420017922],[113,36,75,0.013642560360438375],[113,36,76,0.017348287751903807],[113,36,77,0.020930321996087665],[113,36,78,0.024386098809377116],[113,36,79,0.027712780110626882],[113,37,64,-0.020171955805213533],[113,37,65,-0.01551982640645493],[113,37,66,-0.010857313822305415],[113,37,67,-0.006187574919001436],[113,37,68,-0.0015358624110993263],[113,37,69,0.003066138264700078],[113,37,70,0.007593907810067949],[113,37,71,0.012029068198605811],[113,37,72,0.016358187137162493],[113,37,73,0.020571700447809142],[113,37,74,0.02466295371062385],[113,37,75,0.02862736417456734],[113,37,76,0.03246170361692543],[113,37,77,0.03616350251270984],[113,37,78,0.039730575564786534],[113,37,79,0.04316066834738501],[113,38,64,-0.006863533503173972],[113,38,65,-0.0020283147726837284],[113,38,66,0.002814143057865264],[113,38,67,0.0076631278268220575],[113,38,68,0.012493144253250633],[113,38,69,0.017270348066733675],[113,38,70,0.021968362769867498],[113,38,71,0.026567301628582795],[113,38,72,0.03105256522259056],[113,38,73,0.03541375331886718],[113,38,74,0.0396436924869107],[113,38,75,0.043737580548737116],[113,38,76,0.04769224863639645],[113,38,77,0.05150554131675848],[113,38,78,0.055175814938097374],[113,38,79,0.058701554059590676],[113,39,64,0.006545787943074563],[113,39,65,0.011565543720962088],[113,39,66,0.016588275392662114],[113,39,67,0.02161571823839071],[113,39,68,0.026622123097657036],[113,39,69,0.03157146928417931],[113,39,70,0.03643555416937529],[113,39,71,0.041193055960799356],[113,39,72,0.04582831713905252],[113,39,73,0.050330238941735564],[113,39,74,0.054691288403112125],[113,39,75,0.05890661913840846],[113,39,76,0.06297330674698698],[113,39,77,0.0668896994005051],[113,39,78,0.07065488388118535],[113,39,79,0.07426826704541829],[113,40,64,0.02000797608887917],[113,40,65,0.025215422239157927],[113,40,66,0.03042058645002191],[113,40,67,0.035627723292379225],[113,40,68,0.0408108002780531],[113,40,69,0.04593151793391917],[113,40,70,0.0509597946241344],[113,40,71,0.05587286733831194],[113,40,72,0.060654055408508725],[113,40,73,0.06529163212225858],[113,40,74,0.06977780584038104],[113,40,75,0.07410781191404445],[113,40,76,0.07827911638578768],[113,40,77,0.08229073215536778],[113,40,78,0.08614264799388492],[113,40,79,0.08983537050255161],[113,41,64,0.03347053069942322],[113,41,65,0.03887010824842938],[113,41,66,0.044261339816150574],[113,41,67,0.049651104425197996],[113,41,68,0.05501304434107769],[113,41,69,0.06030642840564688],[113,41,70,0.06549918673542623],[113,41,71,0.07056704970400166],[113,41,72,0.0754922884176366],[113,41,73,0.08026255987592108],[113,41,74,0.08486985853387563],[113,41,75,0.08930957567315986],[113,41,76,0.0935796676851443],[113,41,77,0.09767993406896622],[113,41,78,0.10161140565371961],[113,41,79,0.10537584326947733],[113,42,64,0.04687882534445255],[113,42,65,0.05247575276892756],[113,42,66,0.0580576977340337],[113,42,67,0.06363426823337773],[113,42,68,0.06917872920535822],[113,42,69,0.07464774313946343],[113,42,70,0.08000711081156756],[113,42,71,0.08523095103779364],[113,42,72,0.09030041662902598],[113,42,73,0.09520251160151293],[113,42,74,0.09992901147201211],[113,42,75,0.10447548816315261],[113,42,76,0.10884044074512186],[113,42,77,0.1130245329447599],[113,42,78,0.11702993806297293],[113,42,79,0.12085979165985974],[113,43,64,0.06018006084121733],[113,43,65,0.06597981055758716],[113,43,66,0.07175762180965026],[113,43,67,0.07752590668313303],[113,43,68,0.08325749155024897],[113,43,69,0.08890625912422741],[113,43,70,0.0944357282178082],[113,43,71,0.09981827869871379],[113,43,72,0.10503384392819123],[113,43,73,0.11006870067175177],[113,43,74,0.11491435842322664],[113,43,75,0.11956654978739788],[113,43,76,0.12402432327313513],[113,43,77,0.12828923955940327],[113,43,78,0.13236467201094695],[113,43,79,0.13625521194262957],[113,44,64,0.07332741444582094],[113,44,65,0.07933517239161732],[113,44,66,0.08531396088522168],[113,44,67,0.09127901754952947],[113,44,68,0.09720265933624114],[113,44,69,0.10303583452519542],[113,44,70,0.1087396322233555],[113,44,71,0.11377422667128197],[113,44,72,0.11865369274422737],[113,44,73,0.12341247255720167],[113,44,74,0.12805659795566937],[113,44,75,0.13258811030567308],[113,44,76,0.1370059987488719],[113,44,77,0.14130703781842022],[113,44,78,0.14548652350067165],[113,44,79,0.14953890710080814],[113,45,64,0.08375127475556315],[113,45,65,0.09021856614582371],[113,45,66,0.0964483976681024],[113,45,67,0.10241486682512436],[113,45,68,0.10813899641079068],[113,45,69,0.11366628862610438],[113,45,70,0.11903225505854295],[113,45,71,0.1242630859665553],[113,45,72,0.12937699493253021],[113,45,73,0.13438547413661858],[113,45,74,0.1392944580996613],[113,45,75,0.14410539401937592],[113,45,76,0.1488162171006743],[113,45,77,0.15342222955648124],[113,45,78,0.15791688222655428],[113,45,79,0.16229245802850628],[113,46,64,0.09291260645719415],[113,46,65,0.09952764378042278],[113,46,66,0.10591499460028252],[113,46,67,0.11204589737981763],[113,46,68,0.11794177943855877],[113,46,69,0.12365094968080638],[113,46,70,0.1292111986978604],[113,46,71,0.13465040723904034],[113,46,72,0.13998790252453377],[113,46,73,0.14523573066091847],[113,46,74,0.15039984291549874],[113,46,75,0.15548119386941658],[113,46,76,0.16047674973490608],[113,46,77,0.16538040538715196],[113,46,78,0.1701838089229233],[113,46,79,0.1748770928165472],[113,47,64,0.10204319815508076],[113,47,65,0.10879586123822538],[113,47,66,0.11533015388532714],[113,47,67,0.12161469900666418],[113,47,68,0.12767144445411394],[113,47,69,0.1335515509946804],[113,47,70,0.13929516306051434],[113,47,71,0.14493194949176094],[113,47,72,0.1504824630033772],[113,47,73,0.1559594220275134],[113,47,74,0.16136891260910058],[113,47,75,0.16671150828163528],[113,47,76,0.1719833061019169],[113,47,77,0.177176877274855],[113,47,78,0.1822821310495087],[113,47,79,0.1872870908154164],[113,48,64,0.1111816378044057],[113,48,65,0.11806173593079353],[113,48,66,0.1247318890052405],[113,48,67,0.13115839689961287],[113,48,68,0.1373638241128476],[113,48,69,0.1434021619647263],[113,48,70,0.14931594043842614],[113,48,71,0.15513669393723342],[113,48,72,0.16088631337178397],[113,48,73,0.16657832763332103],[113,48,74,0.17221911207105575],[113,48,75,0.17780902182424027],[113,48,76,0.18334344809530695],[113,48,77,0.18881379568771556],[113,48,78,0.19420838036818594],[113,48,79,0.19951324484810948],[113,49,64,0.12037027133140418],[113,49,65,0.12736747746585003],[113,49,66,0.13416184059780772],[113,49,67,0.1407176680149179],[113,49,68,0.14705820979150847],[113,49,69,0.153240195113106],[113,49,70,0.15930852277028773],[113,49,71,0.1652966446846763],[113,49,72,0.17122789843035569],[113,49,73,0.177116776782926],[113,49,74,0.18297013187859062],[113,49,75,0.18878831177915567],[113,49,76,0.1945662274563052],[113,49,77,0.20029434842845895],[113,49,78,0.20595962550328353],[113,49,79,0.2115463392989676],[113,50,64,0.1296392999455015],[113,50,65,0.13674342822297017],[113,50,66,0.14365015669020073],[113,50,67,0.15032216659270548],[113,50,68,0.15678343694744326],[113,50,69,0.16309327354696102],[113,50,70,0.16929887702541824],[113,50,71,0.17543563742176557],[113,50,72,0.18152843392098506],[113,50,73,0.1875928797721927],[113,50,74,0.19363650995785878],[113,50,75,0.19965990938085543],[113,50,76,0.20565777953323497],[113,50,77,0.21161994181114693],[113,50,78,0.21753227584164997],[113,50,79,0.2233775913899882],[113,51,64,0.13900687916127588],[113,51,65,0.1462081191740473],[113,51,66,0.15321550237330828],[113,51,67,0.15999048121080314],[113,51,68,0.16655778305286414],[113,51,69,0.17297906586087294],[113,51,70,0.17930371567364725],[113,51,71,0.18556904639326646],[113,51,72,0.19180155309844282],[113,51,73,0.198018119054923],[113,51,74,0.20422717401902388],[113,51,75,0.21042980160016023],[113,51,76,0.21662079362333508],[113,51,77,0.22278964961179448],[113,51,78,0.22892151969106644],[113,51,79,0.23499808939920006],[113,52,64,0.14847936644363535],[113,52,65,0.15576847523913734],[113,52,66,0.16286521912457028],[113,52,67,0.16973024141772944],[113,52,68,0.17638901489020914],[113,52,69,0.1829052696598744],[113,52,70,0.18933041421165064],[113,52,71,0.1957036358246443],[113,52,72,0.20205309393516793],[113,52,73,0.20839707594220622],[113,52,74,0.21474511310449956],[113,52,75,0.22109905432411522],[113,52,76,0.2274540957629845],[113,52,77,0.2337997643952943],[113,52,78,0.2401208537576776],[113,52,79,0.2463983103218143],[113,53,64,0.15805172137845058],[113,53,65,0.16542017417963872],[113,53,66,0.1725956378591143],[113,53,67,0.17953837809618964],[113,53,68,0.1862745894251802],[113,53,69,0.19286974796703182],[113,53,70,0.19937708002955062],[113,53,71,0.20583756005870502],[113,53,72,0.2122810311699867],[113,53,73,0.21872729694217022],[113,53,74,0.22518718220695919],[113,53,75,0.23166356068870067],[113,53,76,0.23815234747537617],[113,53,77,0.24464345443448998],[113,53,78,0.251121706823287],[113,53,79,0.2575677194830516],[113,54,64,0.16770806219426168],[113,54,65,0.17514816296158425],[113,54,66,0.1823925497281349],[113,54,67,0.18940154165685583],[113,54,68,0.19620201243275426],[113,54,69,0.2028608227494653],[113,54,70,0.20943277688322504],[113,54,71,0.21596051666714125],[113,54,72,0.22247555741764385],[113,54,73,0.22899930386610653],[113,54,74,0.2355440439435805],[113,54,75,0.24211391836173174],[113,54,76,0.24870586403486666],[113,54,77,0.2553105294955718],[113,54,78,0.2619131605681394],[113,54,79,0.26849445468089883],[113,55,64,0.177422382356378],[113,55,65,0.1849273354244],[113,55,66,0.192231838593956],[113,55,67,0.19929668208165538],[113,55,68,0.2061493589808866],[113,55,69,0.21285772973705938],[113,55,70,0.21947790918997873],[113,55,71,0.2260540567635389],[113,55,72,0.23261931753353826],[113,55,73,0.23919675181740185],[113,55,74,0.24580025127617774],[113,55,75,0.25243543958867426],[113,55,76,0.25910055583395086],[113,55,77,0.2657873188008827],[113,55,78,0.2724817705305181],[113,55,79,0.27916509748988777],[113,56,64,0.1871594308216915],[113,56,65,0.19472337496374917],[113,56,66,0.2020802789919405],[113,56,67,0.20919179472504684],[113,56,68,0.21608595977550138],[113,56,69,0.22283123861771495],[113,56,70,0.2294847702865685],[113,56,71,0.23609205667835118],[113,56,72,0.24268780037531135],[113,56,73,0.24929673914065778],[113,56,74,0.2559344752416301],[113,56,75,0.26260829780247097],[113,56,76,0.2693179964402443],[113,56,77,0.27605666449389504],[113,56,78,0.28281149021926333],[113,56,79,0.28956453439146845],[113,57,64,0.19687575938200386],[113,57,65,0.20449376578214248],[113,57,66,0.21189650324140608],[113,57,67,0.21904683564180316],[113,57,68,0.2259732572395558],[113,57,69,0.23274444257256352],[113,57,70,0.2394182586797499],[113,57,71,0.24604135506025585],[113,57,72,0.2526498920205169],[113,57,73,0.25927027334035296],[113,57,74,0.26591988160381413],[113,57,75,0.27260781456022026],[113,57,76,0.2793356209073767],[113,57,77,0.2860980339218896],[113,57,78,0.29288370139949155],[113,57,79,0.29967591041302166],[113,58,64,0.20652094033573729],[113,58,65,0.21418897607791373],[113,58,66,0.22163214119095695],[113,58,67,0.2288148100405579],[113,58,68,0.2357658350383577],[113,58,69,0.24255372096392896],[113,58,70,0.2492367661802446],[113,58,71,0.25586255934177327],[113,58,72,0.26246859438701675],[113,58,73,0.26908289688080933],[113,58,74,0.27572466025643105],[113,58,75,0.28240489050398554],[113,58,76,0.2891270578545413],[113,58,77,0.2958877540189305],[113,58,78,0.3026773535545825],[113,58,79,0.3094806779551972],[113,59,64,0.21603895751210012],[113,59,65,0.2237538163314019],[113,59,66,0.23123313587757854],[113,59,67,0.23844303726317131],[113,59,68,0.24541262457213986],[113,59,69,0.2522098788071373],[113,59,70,0.25889324164040983],[113,59,71,0.2655110253490569],[113,59,72,0.27210191305897524],[113,59,73,0.2786954766509889],[113,59,74,0.2853127110945319],[113,59,75,0.2919665839489273],[113,59,76,0.29866259875335677],[113,59,77,0.3053993710138092],[113,59,78,0.31216921548753557],[113,59,79,0.31895874346472086],[113,60,64,0.2253697730010519],[113,60,65,0.23312897517560613],[113,60,66,0.2406412377082176],[113,60,67,0.24787459502156384],[113,60,68,0.2548582912919637],[113,60,69,0.2616594659973966],[113,60,70,0.2683364333628701],[113,60,71,0.27493801319151295],[113,60,72,0.28150391748767056],[113,60,73,0.28806516025634643],[113,60,74,0.294644489465132],[113,60,75,0.301256840109659],[113,60,76,0.3079098072844853],[113,60,77,0.31460413812807436],[113,60,78,0.3213342414821085],[113,60,79,0.32808871408381823],[113,61,64,0.23445105997023458],[113,61,65,0.24225272325654576],[113,61,66,0.24979566758387423],[113,61,67,0.2570499333308248],[113,61,68,0.2640447913006184],[113,61,69,0.27084626677005097],[113,61,70,0.2775123006593424],[113,61,71,0.28409200988732225],[113,61,72,0.29062596396885715],[113,61,73,0.29714648944814553],[113,61,74,0.30367800137460443],[113,61,75,0.3102373609653848],[113,61,76,0.3168342585414045],[113,61,77,0.32347162077212843],[113,61,78,0.3301460412171939],[113,61,79,0.33684823311250467],[113,62,64,0.24322012811924582],[113,62,65,0.2510628120026662],[113,62,66,0.25863497624324555],[113,62,67,0.26590868577441595],[113,62,68,0.27291312623411346],[113,62,69,0.2797129877406721],[113,62,70,0.2863656232387621],[113,62,71,0.29292024771012937],[113,62,72,0.29941811065444546],[113,62,73,0.3058927001808986],[113,62,74,0.3123699781320886],[113,62,75,0.31886864558395345],[113,62,76,0.32540043799263985],[113,62,77,0.33197044919146407],[113,62,78,0.338577483377482],[113,62,79,0.345214434169886],[113,63,64,0.2515398670566336],[113,63,65,0.2594985747910289],[113,63,66,0.2670991075072537],[113,63,67,0.2743916859809443],[113,63,68,0.2814053045059166],[113,63,69,0.28820315280508446],[113,63,70,0.2948418168892343],[113,63,71,0.30137042688438076],[113,63,72,0.30783073336048655],[113,63,73,0.31425721816005114],[113,63,74,0.32067723935205794],[113,63,75,0.327111209846323],[113,63,76,0.33357280911734793],[113,63,77,0.3400692274053457],[113,63,78,0.34660144168440027],[113,63,79,0.3531645226159028],[113,64,64,0.25696038977850877],[113,64,65,0.2666397470722088],[113,64,66,0.27513163451783673],[113,64,67,0.2824431582515058],[113,64,68,0.2894664777086754],[113,64,69,0.29626317355146653],[113,64,70,0.30288892395689765],[113,64,71,0.30939261096941784],[113,64,72,0.3158163103279948],[113,64,73,0.3221953178265553],[113,64,74,0.3285582120217475],[113,64,75,0.33492695300153785],[113,64,76,0.3413170168316357],[113,64,77,0.3477375652042079],[113,64,78,0.35419164972402417],[113,64,79,0.36067645018329103],[113,65,64,0.2621933439919016],[113,65,65,0.2719546580879019],[113,65,66,0.2817965530447172],[113,65,67,0.29001309837167644],[113,65,68,0.29704726848584556],[113,65,69,0.30384461177333144],[113,65,70,0.31045979547718117],[113,65,71,0.31694131203754966],[113,65,72,0.3233313932680627],[113,65,73,0.329665962306671],[113,65,74,0.3359746233244255],[113,65,75,0.34228068886764834],[113,65,76,0.3486012446044069],[113,65,77,0.3549472511450645],[113,65,78,0.3613236825082402],[113,65,79,0.3677297007100064],[113,66,64,0.26726556332711426],[113,66,65,0.27709497123536336],[113,66,66,0.2870154089479215],[113,66,67,0.2970366091953803],[113,66,68,0.30410629225924185],[113,66,69,0.3109066366345793],[113,66,70,0.31751446766947716],[113,66,71,0.3239777685048878],[113,66,72,0.3303387676794779],[113,66,73,0.33663382742067927],[113,66,74,0.34289337038878226],[113,66,75,0.34914184489252076],[113,66,76,0.3553977284843187],[113,66,77,0.3616735697359909],[113,66,78,0.36797606789049203],[113,66,79,0.3743061899845119],[113,67,64,0.27219294249221865],[113,67,65,0.28207714878352136],[113,67,66,0.2920614165908386],[113,67,67,0.30215404226519804],[113,67,68,0.3106128737947168],[113,67,69,0.317418677628396],[113,67,70,0.32402273409416577],[113,67,71,0.3304724170624519],[113,67,72,0.33680980402043814],[113,67,73,0.34307151144622366],[113,67,74,0.3492885687494534],[113,67,75,0.3554863309198392],[113,67,76,0.36168442991105715],[113,67,77,0.3678967646759441],[113,67,78,0.3741315296590537],[113,67,79,0.3803912814466488],[113,68,64,0.2769774268398001],[113,68,65,0.2869039931394827],[113,68,66,0.2969381698076186],[113,68,67,0.3070869278983272],[113,68,68,0.31654995915823175],[113,68,69,0.32336327404366955],[113,68,70,0.32996691434762065],[113,68,71,0.3364075597400979],[113,68,72,0.34272700091329467],[113,68,73,0.348961931945821],[113,68,74,0.35514378093821236],[113,68,75,0.36129857916495217],[113,68,76,0.3674468688722255],[113,68,77,0.373603649736538],[113,68,78,0.3797783638864723],[113,68,79,0.3859749192803931],[113,69,64,0.28160381376463595],[113,69,65,0.29156145543679984],[113,69,66,0.30163281947547954],[113,69,67,0.31182355698688125],[113,69,68,0.3219172256316847],[113,69,69,0.3287391241196633],[113,69,70,0.33534482305235247],[113,69,71,0.3417802303825887],[113,69,72,0.3480867251113238],[113,69,73,0.35430091474814296],[113,69,74,0.3604544305526102],[113,69,75,0.366573760889375],[113,69,76,0.3726801229128667],[113,69,77,0.37878937268183976],[113,69,78,0.3849119536892747],[113,69,79,0.3910528836813676],[113,70,64,0.2860368327570468],[113,70,65,0.2960145325729817],[113,70,66,0.30611073719959575],[113,70,67,0.3163296651619914],[113,70,68,0.32663338883086596],[113,70,69,0.3335700598857697],[113,70,70,0.3401797853882714],[113,70,71,0.34661310395390504],[113,70,72,0.3529108328426221],[113,70,73,0.3591093153085449],[113,70,74,0.36524018678948217],[113,70,75,0.3713301786734256],[113,70,76,0.37740095993234757],[113,70,77,0.383469016797343],[113,70,78,0.389545570533356],[113,70,79,0.3956365332585023],[113,71,64,0.2902333573237199],[113,71,65,0.3002170938623912],[113,71,66,0.3103227696651749],[113,71,67,0.32055305597171835],[113,71,68,0.3308704313816053],[113,71,69,0.33790562707151095],[113,71,70,0.344523677240044],[113,71,71,0.3509598422906299],[113,71,72,0.357254111780379],[113,71,73,0.36344229394476274],[113,71,74,0.36955576035759946],[113,71,75,0.37562122706560247],[113,71,76,0.38166057254852526],[113,71,77,0.38769069274080104],[113,71,78,0.3937233932355627],[113,71,79,0.3997653186791151],[113,72,64,0.29416001175949996],[113,72,65,0.30413279102090574],[113,72,66,0.3142295651101575],[113,72,67,0.3244513750250158],[113,72,68,0.33476126158939956],[113,72,69,0.34178684432525813],[113,72,70,0.3484199221928986],[113,72,71,0.3548658204915274],[113,72,72,0.3611633376528398],[113,72,73,0.3673473949979806],[113,72,74,0.373448769195845],[113,72,75,0.37949385908993416],[113,72,76,0.3855044872881781],[113,72,77,0.3914977367991035],[113,72,78,0.39748582288642653],[113,72,79,0.4034760002046023],[113,73,64,0.29779232991458354],[113,73,65,0.3077349576888681],[113,73,66,0.31780225580559257],[113,73,67,0.32799359051120136],[113,73,68,0.3382727741994697],[113,73,69,0.3452431884364032],[113,73,70,0.35189975816105146],[113,73,71,0.3583637421215766],[113,73,72,0.36467232500503594],[113,73,73,0.37085913834191025],[113,73,74,0.3769539918081181],[113,73,75,0.3829826354538136],[113,73,76,0.38896655327529844],[113,73,77,0.39492278844324186],[113,73,78,0.40086380039658137],[113,73,79,0.4067973539088619],[113,74,64,0.301111731554557],[113,74,65,0.3110035407946165],[113,74,66,0.32101935036729706],[113,74,67,0.3311568508370054],[113,74,68,0.34136984393061787],[113,74,69,0.3482957876223354],[113,74,70,0.3549854086479067],[113,74,71,0.3614767551891244],[113,74,72,0.3678049504253301],[113,74,73,0.37400190983303],[113,74,74,0.3800960838974206],[113,74,75,0.3861122267386553],[113,74,76,0.39207119106529253],[113,74,77,0.3979897497765994],[113,74,78,0.4038804444433736],[113,74,79,0.4097514608055076],[113,75,64,0.30410260375995246],[113,75,65,0.3139221348348132],[113,75,66,0.32386372616850434],[113,75,67,0.33392343899262933],[113,75,68,0.34398834515599314],[113,75,69,0.35096052653888377],[113,75,70,0.35769317299420306],[113,75,71,0.36422149633294876],[113,75,72,0.3705781152863987],[113,75,73,0.37679280468407245],[113,75,74,0.38289226336750287],[113,75,75,0.38889990129117935],[113,75,76,0.39483564618932626],[113,75,77,0.4007157701135749],[113,75,78,0.40655273607113723],[113,75,79,0.41235506491742974],[113,76,64,0.306749492753447],[113,76,65,0.3164751245165831],[113,76,66,0.32631972733376835],[113,76,67,0.3362778291439451],[113,76,68,0.3462229719557696],[113,76,69,0.353251057594505],[113,76,70,0.3600364303262194],[113,76,71,0.36661105814388506],[113,76,72,0.3730046432276521],[113,76,73,0.3792444193853874],[113,76,74,0.3853549598115099],[113,76,75,0.39135799552545764],[113,76,76,0.39727224480117346],[113,76,77,0.4031132538475389],[113,76,78,0.4088932489457],[113,76,79,0.41462100019414355],[113,77,64,0.3090344115915911],[113,77,65,0.31864494126930726],[113,77,66,0.32837037387224677],[113,77,67,0.33820385104165873],[113,77,68,0.3480889792155168],[113,77,69,0.35518171302091395],[113,77,70,0.3620285517709003],[113,77,71,0.36865787438266995],[113,77,72,0.37509610742574623],[113,77,73,0.3813675876019248],[113,77,74,0.3874944243950295],[113,77,75,0.39349636312048775],[113,77,76,0.39939064858252066],[113,77,77,0.4051918895224175],[113,77,78,0.4109119240137265],[113,77,79,0.4165596859304577],[113,78,64,0.3109342691757175],[113,78,65,0.3204094391655037],[113,78,66,0.3299946875549624],[113,78,67,0.3396819679005635],[113,78,68,0.34944224663696277],[113,78,69,0.3567703120560044],[113,78,70,0.3636857153893016],[113,78,71,0.37037651772100394],[113,78,72,0.37686558254574926],[113,78,73,0.38317405530028853],[113,78,74,0.3893212958491114],[113,78,75,0.3953247993888784],[113,78,76,0.40120010583780685],[113,78,77,0.4069606977837303],[113,78,78,0.4126178870679491],[113,78,79,0.41818069008219333],[113,79,64,0.3124383156551651],[113,79,65,0.32175904210918915],[113,79,66,0.33118431150620986],[113,79,67,0.3407051171651417],[113,79,68,0.35029431721115234],[113,79,69,0.35802465192860566],[113,79,70,0.3650149060682553],[113,79,71,0.37177341149396015],[113,79,72,0.37831924028421665],[113,79,73,0.3846700964587817],[113,79,74,0.3908423338726303],[113,79,75,0.39685094893092726],[113,79,76,0.4027095480083715],[113,79,77,0.4084302895003153],[113,79,78,0.4140238004720333],[113,79,79,0.419499067907101],[113,80,64,0.31360218156115216],[113,80,65,0.32275009371197205],[113,80,66,0.3319955571662653],[113,80,67,0.3413287842199067],[113,80,68,0.35072453192525743],[113,80,69,0.3588984986678334],[113,80,70,0.36597388506001577],[113,80,71,0.3728113581554827],[113,80,72,0.3794259407311078],[113,80,73,0.38583158111241667],[113,80,74,0.39204127675439343],[113,80,75,0.39806715741072835],[113,80,76,0.4039205275397084],[113,80,77,0.40961186768040725],[113,80,78,0.41515079461229776],[113,80,79,0.42054598018527745],[113,81,64,0.3144815346276273],[113,81,65,0.32343934293216753],[113,81,66,0.3324855478481673],[113,81,67,0.3416097070044687],[113,81,68,0.35078839628430847],[113,81,69,0.35934496796445037],[113,81,70,0.36651924994385243],[113,81,71,0.3734514566671077],[113,81,72,0.3801522814184115],[113,81,73,0.3866315470976111],[113,81,74,0.39289845994865963],[113,81,75,0.3989618060333144],[113,81,76,0.4048300898006464],[113,81,77,0.41051161423493754],[113,81,78,0.41601450218969616],[113,81,79,0.4213466586338721],[113,82,64,0.3151134440439448],[113,82,65,0.3238654748608994],[113,82,66,0.33269413870386044],[113,82,67,0.341588427345497],[113,82,68,0.3505265785868287],[113,82,69,0.359331908925536],[113,82,70,0.3666204313454725],[113,82,71,0.3736654816785216],[113,82,72,0.3804731524178307],[113,82,73,0.387048754585301],[113,82,74,0.39339722847852443],[113,82,75,0.39952347880968253],[113,82,76,0.405432633220481],[113,82,77,0.41113022334081856],[113,82,78,0.41662228773489046],[113,82,79,0.42191539624644675],[113,83,64,0.315518922692095],[113,83,65,0.32405155035308186],[113,83,66,0.33264622113990217],[113,83,67,0.3412914242272514],[113,83,68,0.3499668371807498],[113,83,69,0.3586520803587379],[113,83,70,0.3662582705116958],[113,83,71,0.37343474252786024],[113,83,72,0.38037089027897003],[113,83,73,0.3870671421286349],[113,83,74,0.3935236958863016],[113,83,75,0.399741018945413],[113,83,76,0.4057202516611304],[113,83,77,0.4114635127534414],[113,83,78,0.4169741057531634],[113,83,79,0.42225662573095846],[113,84,64,0.31570538535158105],[113,84,65,0.32400736502348426],[113,84,66,0.33235395106707577],[113,84,67,0.34073317679166054],[113,84,68,0.34912588448364207],[113,84,69,0.3575147486042576],[113,84,70,0.3654236464050969],[113,84,71,0.3727489850320528],[113,84,72,0.3798344690635403],[113,84,73,0.386675315476832],[113,84,74,0.3932665332337711],[113,84,75,0.39960361435152014],[113,84,76,0.4056831068782159],[113,84,77,0.4115030681103044],[113,84,78,0.4170633966800059],[113,84,79,0.4223660424229805],[113,85,64,0.3144975699785803],[113,85,65,0.323330568493002],[113,85,66,0.3318188949034362],[113,85,67,0.3399181512039903],[113,85,68,0.3480111821910736],[113,85,69,0.35608324623565407],[113,85,70,0.3641161546594055],[113,85,71,0.37160533793864864],[113,85,72,0.378858729851879],[113,85,73,0.38586607002431794],[113,85,74,0.3926167885160937],[113,85,75,0.3991009121516281],[113,85,76,0.40530983048424285],[113,85,77,0.4112369192191736],[113,85,78,0.41687801927338725],[113,85,79,0.42223176999496514],[113,86,64,0.31205436863226865],[113,86,65,0.32094401252795746],[113,86,66,0.32962617769030517],[113,86,67,0.3381034658226666],[113,86,68,0.34638259118042547],[113,86,69,0.3543612792830065],[113,86,70,0.36205183471613445],[113,86,71,0.3696919227286544],[113,86,72,0.3772819335530105],[113,86,73,0.3846359483697357],[113,86,74,0.39156773738774814],[113,86,75,0.39822316251950235],[113,86,76,0.404587955209589],[113,86,77,0.41065024762742935],[113,86,78,0.4164012182917027],[113,86,79,0.4218355674250677],[113,87,64,0.30917699405093724],[113,87,65,0.3181146911605926],[113,87,66,0.32686927053961445],[113,87,67,0.33544383811463174],[113,87,68,0.34384508788324825],[113,87,69,0.35207242020815976],[113,87,70,0.35967178174301534],[113,87,71,0.36692998187359477],[113,87,72,0.37412743325706044],[113,87,73,0.38127180268713246],[113,87,74,0.3883713167602156],[113,87,75,0.39543345143427894],[113,87,76,0.40246380464828374],[113,87,77,0.40946515537760714],[113,87,78,0.41561262636336344],[113,87,79,0.42115407576722697],[113,88,64,0.3059047080625802],[113,88,65,0.3148795496848948],[113,88,66,0.32369710284024883],[113,88,67,0.33236096037151097],[113,88,68,0.3408781624252973],[113,88,69,0.3492473038452811],[113,88,70,0.35698350216292923],[113,88,71,0.3638461670291204],[113,88,72,0.37063418370752854],[113,88,73,0.377361082235307],[113,88,74,0.38404140771582534],[113,88,75,0.39068914115555375],[113,88,76,0.3973163265559932],[113,88,77,0.4039319083043132],[113,88,78,0.4105407823476153],[113,88,79,0.41714306409012],[113,89,64,0.30228097801381293],[113,89,65,0.31127987279829195],[113,89,66,0.3201482461236945],[113,89,67,0.32889016274984323],[113,89,68,0.3375133646364908],[113,89,69,0.34601621963881846],[113,89,70,0.3539840665651793],[113,89,71,0.3604433447579608],[113,89,72,0.36681122196962523],[113,89,73,0.37310701338021945],[113,89,74,0.37935160771074106],[113,89,75,0.3855656099466723],[113,89,76,0.3917677131721941],[113,89,77,0.3979733042594142],[113,89,78,0.40419330752993965],[113,89,79,0.4104332698924194],[113,90,64,0.29835162783008107],[113,90,65,0.30735951227385694],[113,90,66,0.3162640159629381],[113,90,67,0.32506966356918454],[113,90,68,0.33378523283201483],[113,90,69,0.34240942246752093],[113,90,70,0.35066915697881534],[113,90,71,0.35672313968731345],[113,90,72,0.36266658009607555],[113,90,73,0.36852440573922335],[113,90,74,0.37432376442384],[113,90,75,0.38009188445327974],[113,90,76,0.38585418615679246],[113,90,77,0.3916326501912881],[113,90,78,0.39744444738727536],[113,90,79,0.40330083423053237],[113,91,64,0.2941631022187721],[113,91,65,0.3031632237720516],[113,91,66,0.31208690371780395],[113,91,67,0.32093911851068363],[113,91,68,0.3297299842273196],[113,91,69,0.33845905111887864],[113,91,70,0.34703401717797266],[113,91,71,0.3526866699345223],[113,91,72,0.3582077846916583],[113,91,73,0.3636276392191528],[113,91,74,0.3689794489897819],[113,91,75,0.37429694565109195],[113,91,76,0.37961222803750455],[113,91,77,0.38495389191865237],[113,91,78,0.39034544392175485],[113,91,79,0.3958040043209494],[113,92,64,0.28976084687642817],[113,92,65,0.2987351156085897],[113,92,66,0.3076591146684707],[113,92,67,0.31653826868799406],[113,92,68,0.3253842950472864],[113,92,69,0.3341980645670851],[113,92,70,0.3429626180016051],[113,92,71,0.34833522208260054],[113,92,72,0.3534423052968155],[113,92,73,0.35843086695280707],[113,92,74,0.3633398983000319],[113,92,75,0.3682093995388086],[113,92,76,0.3730779749079233],[113,92,77,0.3779807272347347],[113,92,78,0.38294745805096814],[113,92,79,0.3880011785714021],[113,93,64,0.2851878072902399],[113,93,65,0.29411721203327806],[113,93,66,0.30302121501749457],[113,93,67,0.3119056899508705],[113,93,68,0.3207841725231169],[113,93,69,0.32965925981622096],[113,93,70,0.3385137307387023],[113,93,71,0.3436708642569348],[113,93,72,0.34837795045215886],[113,93,73,0.3529481742899372],[113,93,74,0.3574259201719534],[113,93,75,0.3618571156722372],[113,93,76,0.3662865798904756],[113,93,77,0.37075569051041274],[113,93,78,0.37530037632025653],[113,93,79,0.3799494410891142],[113,94,64,0.2804830484714679],[113,94,65,0.28934813333065135],[113,94,66,0.29821089000843526],[113,94,67,0.3070776455651934],[113,94,68,0.315963920773121],[113,94,69,0.32487437311628603],[113,94,70,0.33379192260993307],[113,94,71,0.33869699597890546],[113,94,72,0.3430232104035591],[113,94,73,0.3471936931054186],[113,94,74,0.35125776096311556],[113,94,75,0.35526683343472326],[113,94,76,0.359271547572663],[113,94,77,0.3633192093052808],[113,94,78,0.3674515883734899],[113,94,79,0.37170306339598064],[113,95,64,0.27568049772378445],[113,95,65,0.28446189482634293],[113,95,66,0.2932618151931814],[113,95,67,0.3020870442115976],[113,95,68,0.310955202379869],[113,95,69,0.31987326619661294],[113,95,70,0.32882465879596173],[113,95,71,0.3334188335888935],[113,95,72,0.3373875454994584],[113,95,73,0.34118167075451183],[113,95,74,0.3448549352511704],[113,95,75,0.34846373595954266],[113,95,76,0.3520640396248518],[113,95,77,0.35570863347728465],[113,95,78,0.3594447359377593],[113,95,79,0.3633119743463612],[113,96,64,0.2708078123311934],[113,96,65,0.27948682667186486],[113,96,66,0.28820264267876633],[113,96,67,0.2969625050568746],[113,96,68,0.3057861973046379],[113,96,69,0.31468319900880265],[113,96,70,0.32363775287913277],[113,96,71,0.3278438301400117],[113,96,72,0.33148161941773546],[113,96,73,0.3349264930676137],[113,96,74,0.3382360172396027],[113,96,75,0.3414709916385885],[113,96,76,0.34469215180711676],[113,96,77,0.3479572372636942],[113,96,78,0.35131843404519913],[113,96,79,0.35482019919975694],[113,97,64,0.26588537384695904],[113,97,65,0.2744446160836133],[113,97,66,0.2830561039966844],[113,97,67,0.2917275314767238],[113,97,68,0.3004808606197107],[113,97,69,0.3093281903286477],[113,97,70,0.3182548530237977],[113,97,71,0.3219820287650746],[113,97,72,0.3253174764389352],[113,97,73,0.32844266083464096],[113,97,74,0.3314183935862252],[113,97,75,0.33430926316822346],[113,97,76,0.3371801625708488],[113,97,77,0.3400931947882495],[113,97,78,0.34310496518370787],[113,97,79,0.3462642687586214],[113,98,64,0.2609254104770436],[113,98,65,0.26934947352976096],[113,98,66,0.27783823106387817],[113,98,67,0.28639979484582484],[113,98,68,0.29505828039052695],[113,98,69,0.3038284674344001],[113,98,70,0.31250261420319253],[113,98,71,0.31584634861486804],[113,98,72,0.31890866205797785],[113,98,73,0.32174471928414006],[113,98,74,0.3244179773863816],[113,98,75,0.32699618409945536],[113,98,76,0.3295477534598962],[113,98,77,0.3321385294332037],[113,98,78,0.3348289470394861],[113,98,79,0.3376715994427866],[113,99,64,0.25593124887638286],[113,99,65,0.2642074241886425],[113,99,66,0.27255769654199685],[113,99,67,0.28099052965883153],[113,99,68,0.289532136900189],[113,99,69,0.298200005954378],[113,99,70,0.30633807819366143],[113,99,71,0.30945280255365776],[113,99,72,0.3122702862953545],[113,99,73,0.31484714011197407],[113,99,74,0.317248883073835],[113,99,75,0.31954580287281553],[113,99,76,0.32180920151288656],[113,99,77,0.32410803749741335],[113,99,78,0.32650597446463425],[113,99,79,0.32905884513283684],[113,100,64,0.2508966965148222],[113,100,65,0.2590157258453067],[113,100,66,0.26721527475138884],[113,100,67,0.2755040411051009],[113,100,68,0.28391026427988414],[113,100,69,0.2924541608619819],[113,100,70,0.2999114353849882],[113,100,71,0.3028206458808814],[113,100,72,0.30541902913409724],[113,100,73,0.30776415566177556],[113,100,74,0.3099230620320586],[113,100,75,0.3119679943312907],[113,100,76,0.3139725438659217],[113,100,77,0.31600818654554297],[113,100,78,0.3181412362754759],[113,100,79,0.3204302215782205],[113,101,64,0.245805875560814],[113,101,65,0.253762345257914],[113,101,66,0.2618029569380849],[113,101,67,0.2699364563280284],[113,101,68,0.278193035967497],[113,101,69,0.28659568856991136],[113,101,70,0.2932516853422298],[113,101,71,0.29597502903051437],[113,101,72,0.2983761012813561],[113,101,73,0.30051298981315655],[113,101,74,0.30245375563979543],[113,101,75,0.30427207761578823],[113,101,76,0.3060432950071036],[113,101,77,0.3078408598900532],[113,101,78,0.3097332100475884],[113,101,79,0.31178107190764204],[113,102,64,0.24063975152124667],[113,102,65,0.248428058175021],[113,102,66,0.25630150468942814],[113,102,67,0.2642686746803508],[113,102,68,0.2723616197932693],[113,102,69,0.2806061571511881],[113,102,70,0.2864164781776965],[113,102,71,0.28897367845756156],[113,102,72,0.2911990712243205],[113,102,73,0.29315076843491494],[113,102,74,0.2948973118503248],[113,102,75,0.296513240242557],[113,102,76,0.2980750588947945],[113,102,77,0.29965762350088526],[113,102,78,0.30133094942708516],[113,102,79,0.3031574561636586],[113,103,64,0.23538533768775577],[113,103,65,0.2429972478366876],[113,103,66,0.2506928311292295],[113,103,67,0.2584803250118632],[113,103,68,0.26639349949220226],[113,103,69,0.27446099342121466],[113,103,70,0.2794736028066646],[113,103,71,0.2818870650269778],[113,103,72,0.28396089474738095],[113,103,73,0.2857526459198314],[113,103,74,0.28733069763917396],[113,103,75,0.28876977368109374],[113,103,76,0.29014686611926954],[113,103,77,0.29153757535409847],[113,103,78,0.29301287773933227],[113,103,79,0.2946363308543825],[113,104,64,0.23003680749065158],[113,104,65,0.23746220483291014],[113,104,66,0.24496754692614986],[113,104,67,0.2525605804059262],[113,104,68,0.2602766013900703],[113,104,69,0.26814699224749816],[113,104,70,0.2724800155678791],[113,104,71,0.27477396953728483],[113,104,72,0.27672206076004274],[113,104,73,0.27838065312165144],[113,104,74,0.2798172578818908],[113,104,75,0.28110604166191205],[113,104,76,0.28232373708251557],[113,104,77,0.28354596851339126],[113,104,78,0.28484400425354106],[113,104,79,0.28628194533043266],[113,105,64,0.22459632597913726],[113,105,65,0.23182394095612052],[113,105,66,0.23912575208914116],[113,105,67,0.24650891890525908],[113,105,68,0.2540100179911168],[113,105,69,0.261663004436082],[113,105,70,0.2654811599215374],[113,105,71,0.2676808172737144],[113,105,72,0.2695299240764607],[113,105,73,0.2710830089535587],[113,105,74,0.2724059845798975],[113,105,75,0.2735716849596195],[113,105,76,0.27465580020645225],[113,105,77,0.27573322129800176],[113,105,78,0.2768748061531704],[113,105,79,0.2781445772655564],[113,106,64,0.21907535326950223],[113,106,65,0.22609340888874777],[113,106,66,0.2331781634930158],[113,106,67,0.24033614653878757],[113,106,68,0.24760491617249006],[113,106,69,0.2550207259635021],[113,106,70,0.2585102726200215],[113,106,71,0.2606410935396519],[113,106,72,0.26241821787819614],[113,106,73,0.26389371290970354],[113,106,74,0.2651311687772509],[113,106,75,0.26620130895289196],[113,106,76,0.26717798903628004],[113,106,77,0.26813459624842584],[113,106,78,0.2691408608825891],[113,106,79,0.2702600898854569],[113,107,64,0.2134964016166731],[113,107,65,0.2202931728387315],[113,107,66,0.2271476880580663],[113,107,67,0.23406585801617166],[113,107,68,0.24108587182944896],[113,107,69,0.24824589845673448],[113,107,70,0.2515872970064922],[113,107,71,0.2536743907901271],[113,107,72,0.25540622710451577],[113,107,73,0.2568318325703223],[113,107,74,0.25801178595748636],[113,107,75,0.25901394716390025],[113,107,76,0.2599095612626868],[113,107,77,0.26076974972487343],[113,107,78,0.26166239986925083],[113,107,79,0.2626494625410672],[113,108,64,0.2078952480305327],[113,108,65,0.21445953218668498],[113,108,66,0.2210714437823334],[113,108,67,0.22773633741669866],[113,108,68,0.23449263341340176],[113,108,69,0.2413799234548921],[113,108,70,0.24471740084969115],[113,108,71,0.2467850847623383],[113,108,72,0.248497620204606],[113,108,73,0.24990048362425163],[113,108,74,0.25105061261956174],[113,108,75,0.25201229871112063],[113,108,76,0.2528534379035407],[113,108,77,0.2536421507576576],[113,108,78,0.25444378268908874],[113,108,79,0.2553182942085828],[113,109,64,0.20232355950525027],[113,109,65,0.20864505472323083],[113,109,66,0.21500318471705254],[113,109,67,0.22140285447849783],[113,109,68,0.22788226948340606],[113,109,69,0.23448184507845632],[113,109,70,0.2378890482051315],[113,109,71,0.23996058851558066],[113,109,72,0.2416788876482375],[113,109,73,0.24308545035975765],[113,109,74,0.24423302161523272],[113,109,75,0.24518168697158835],[113,109,76,0.2459953097407122],[113,109,77,0.2467383161323293],[113,109,78,0.24747283863262126],[113,109,79,0.24825622693392677],[113,110,64,0.19684242325315174],[113,110,65,0.202911878504868],[113,110,66,0.20900635713060253],[113,110,67,0.2151304537642993],[113,110,68,0.22132166963000058],[113,110,69,0.2276205448409862],[113,110,70,0.2310613418400867],[113,110,71,0.23315878058490835],[113,110,72,0.23490686620769133],[113,110,73,0.23634281186435532],[113,110,74,0.23751471141481784],[113,110,75,0.2384778885232181],[113,110,76,0.23929155824146575],[113,110,77,0.24001581162848565],[113,110,78,0.24070893308304422],[113,110,79,0.2414250591961734],[113,111,64,0.19150691236848713],[113,111,65,0.19731610886149356],[113,111,66,0.2031381524174436],[113,111,67,0.2089774735551675],[113,111,68,0.21487033799554298],[113,111,69,0.2208566281759942],[113,111,70,0.22415794031272898],[113,111,71,0.22630282288093959],[113,111,72,0.22810457669914475],[113,111,73,0.22959588703048758],[113,111,74,0.23081981186743336],[113,111,75,0.2318264180439711],[113,111,76,0.23266970278198637],[113,111,77,0.23340481045811465],[113,111,78,0.2340855535800198],[113,111,79,0.23476224616560348],[113,112,64,0.18634996703216214],[113,112,65,0.19189228092442132],[113,112,66,0.19743416832411378],[113,112,67,0.20298000134606226],[113,112,68,0.2085642431045599],[113,112,69,0.21422529542931687],[113,112,70,0.21712665211517956],[113,112,71,0.21934279939741053],[113,112,72,0.22122509966728462],[113,112,73,0.22280146471046597],[113,112,74,0.22410950765641033],[113,112,75,0.22519350424986584],[113,112,76,0.22610161013229443],[113,112,77,0.22688334303778324],[113,112,78,0.2275873380944951],[113,112,79,0.22825938371054516],[113,113,64,0.18138141539769953],[113,113,65,0.18665224970552557],[113,113,66,0.1919078091954006],[113,113,67,0.197152477958695],[113,113,68,0.20241833721732433],[113,113,69,0.20729278587114755],[113,113,70,0.2099373449888042],[113,113,71,0.2122498297873336],[113,113,72,0.2142413768850488],[113,113,73,0.2159348733007922],[113,113,74,0.21736206388941243],[113,113,75,0.21856087483888995],[113,113,76,0.21957296176197993],[113,113,77,0.22044149029465335],[113,113,78,0.2212091564897382],[113,113,79,0.2219164536712394],[113,114,64,0.17659387945168495],[113,114,65,0.1815909369680136],[113,114,66,0.1865560290110448],[113,114,67,0.19149360212237843],[113,114,68,0.1964327894702294],[113,114,69,0.19982968542072133],[113,114,70,0.20257445455998702],[113,114,71,0.20500780314910932],[113,114,72,0.20713705775757546],[113,114,73,0.20897985135237873],[113,114,74,0.21056165891645592],[113,114,75,0.21191351735004205],[113,114,76,0.21306993700087523],[113,114,77,0.21406701164243536],[113,114,78,0.21494073318980192],[113,114,79,0.21572551691387862],[113,115,64,0.1719653623000536],[113,115,65,0.17668883096024798],[113,115,66,0.1813617137614032],[113,115,67,0.18562688203707978],[113,115,68,0.18902890239009737],[113,115,69,0.19217183682274863],[113,115,70,0.1950352882829561],[113,115,71,0.19761196584731183],[113,115,72,0.199905396085839],[113,115,73,0.20192777255025557],[113,115,74,0.20369795029588897],[113,115,75,0.2052395919305905],[113,115,76,0.206579471259469],[113,115,77,0.20774594016444925],[113,115,78,0.2087675639256713],[113,115,79,0.20967192976048962],[113,116,64,0.1660636749175341],[113,116,65,0.17007771551880127],[113,116,66,0.17392825074756144],[113,116,67,0.17760598786134127],[113,116,68,0.18108374419556383],[113,116,69,0.18433083852521337],[113,116,70,0.1873283272801447],[113,116,71,0.19006749837273818],[113,116,72,0.19254812802353863],[113,116,73,0.1947768454560533],[113,116,74,0.19676561082984667],[113,116,75,0.19853031145939448],[113,116,76,0.20008948103875465],[113,116,77,0.20146314626087447],[113,116,78,0.20267180488782846],[113,116,79,0.20373553899669272],[113,117,64,0.1577647059600283],[113,117,65,0.1617918499258359],[113,117,66,0.16567671810236073],[113,117,67,0.1694099937687308],[113,117,68,0.1729690191066976],[113,117,69,0.1763285475590883],[113,117,70,0.1794715272073538],[113,117,71,0.18238808215797858],[113,117,72,0.18507433190689676],[113,117,73,0.18753128843629963],[113,117,74,0.1897638348218992],[113,117,75,0.19177978890188632],[113,117,76,0.1935890553284707],[113,117,77,0.1952028690903636],[113,117,78,0.19663313336183683],[113,117,79,0.19789185430261402],[113,118,64,0.14933148951721922],[113,118,65,0.15336916848709958],[113,118,66,0.15728729121574486],[113,118,67,0.16107645911538018],[113,118,68,0.1647188448264275],[113,118,69,0.16819515514503333],[113,118,70,0.17149061919219702],[113,118,71,0.1745944572052581],[113,118,72,0.1774992705974758],[113,118,73,0.18020048018003826],[113,118,74,0.1826958147095991],[113,118,75,0.18498485179074373],[113,118,76,0.1870686130279162],[113,118,77,0.1889492151861319],[113,118,78,0.19062957898565386],[113,118,79,0.19211319702362376],[113,119,64,0.14081654324782755],[113,119,65,0.14485981276300566],[113,119,66,0.14880738264378032],[113,119,67,0.15264970432929725],[113,119,68,0.1563739835138949],[113,119,69,0.159967273217754],[113,119,70,0.16341741181752623],[113,119,71,0.1667129713248499],[113,119,72,0.16984321693872553],[113,119,73,0.17279808618910675],[113,119,74,0.1755681882232592],[113,119,75,0.17814482374272364],[113,119,76,0.1805200260563121],[113,119,77,0.18268662367377753],[113,119,78,0.18463832482649614],[113,119,79,0.18636982426593204],[113,120,64,0.13227651559127163],[113,120,65,0.13631824592088346],[113,120,66,0.1402888646311162],[113,120,67,0.14417859519359794],[113,120,68,0.14797976717705352],[113,120,69,0.15168603242332934],[113,120,70,0.15528809457238135],[113,120,71,0.1587741212475206],[113,120,72,0.1621302624072761],[113,120,73,0.1653411611201451],[113,120,74,0.16839045573321648],[113,120,75,0.17126127244745742],[113,120,76,0.17393670735809305],[113,120,77,0.17640029706782084],[113,120,78,0.17863647703394855],[113,120,79,0.1806310268675289],[113,121,64,0.1237697351904298],[113,121,65,0.12780086407485136],[113,121,66,0.13178576363534528],[113,121,67,0.13571434302955515],[113,121,68,0.13958402980193918],[113,121,69,0.14339517682712583],[113,121,70,0.14714152779102485],[113,121,71,0.15081107039140204],[113,121,72,0.1543870934786236],[113,121,73,0.15784921122001402],[113,121,74,0.16117435173619213],[113,121,75,0.16433770777938178],[113,121,76,0.16731364715171515],[113,121,77,0.17007658069533338],[113,121,78,0.17260178582552063],[113,121,79,0.17486618372222457],[113,122,64,0.11535382083703088],[113,122,65,0.11936366419434816],[113,122,66,0.12335200596457117],[113,122,67,0.12730834861684115],[113,122,68,0.13123507421537614],[113,122,69,0.13513918345985362],[113,122,70,0.1390175473099902],[113,122,71,0.14285817158829248],[113,122,72,0.1466417640619637],[113,122,73,0.1503432452366344],[113,122,74,0.15393319887105195],[113,122,75,0.1573792584165935],[113,122,76,0.16064742578909177],[113,122,77,0.16325077967126117],[113,122,78,0.16391997123450935],[113,122,79,0.16454095918513773],[113,123,64,0.10708336598282155],[113,123,65,0.11105998271217865],[113,123,66,0.11503922872879907],[113,123,67,0.11901010409975478],[113,123,68,0.12297968795420355],[113,123,69,0.1269614209744186],[113,123,70,0.13095529809061776],[113,123,71,0.1349495089677286],[113,123,72,0.13892247813106526],[113,123,73,0.14284482784074498],[113,123,74,0.14668125839120993],[113,123,75,0.15039234077245894],[113,123,76,0.15326542504796645],[113,123,77,0.15533457884675506],[113,123,78,0.15893899248173185],[113,123,79,0.16255933372025833],[113,124,64,0.09900765772230653],[113,124,65,0.10293826444503966],[113,124,66,0.10689461541535586],[113,124,67,0.11086511187368468],[113,124,68,0.1148611668040774],[113,124,69,0.1189023057293529],[113,124,70,0.12299155475938993],[113,124,71,0.1271174165720751],[113,124,72,0.13384250346822824],[113,124,73,0.14123814636685594],[113,124,74,0.14861353798825538],[113,124,75,0.1559229223531665],[113,124,76,0.15998580630483822],[113,124,77,0.16322449527805227],[113,124,78,0.16644895964279602],[113,124,79,0.16970040356931113],[113,125,64,0.09116844668170565],[113,125,65,0.09503987842322213],[113,125,66,0.0994455089449691],[113,125,67,0.10650442489259393],[113,125,68,0.11365931057082529],[113,125,69,0.12093292962359695],[113,125,70,0.1283292676183639],[113,125,71,0.13583577095539562],[113,125,72,0.14342616974061523],[113,125,73,0.15106319153952782],[113,125,74,0.15870115841759094],[113,125,75,0.16530825804356236],[113,125,76,0.16825358585287806],[113,125,77,0.1711360145904685],[113,125,78,0.17400584073170264],[113,125,79,0.17691136457236806],[113,126,64,0.094574293212554],[113,126,65,0.1014617922086367],[113,126,66,0.10846640795639914],[113,126,67,0.11557157869696746],[113,126,68,0.12279299054505952],[113,126,69,0.13015830861968078],[113,126,70,0.13767402841144571],[113,126,71,0.1453279600083],[113,126,72,0.1530923775633792],[113,126,73,0.16092704656474585],[113,126,74,0.16878212040022067],[113,126,75,0.17387315073220466],[113,126,76,0.17650110593696403],[113,126,77,0.17906000348562323],[113,126,78,0.18160649110735405],[113,126,79,0.18419516953772677],[113,127,64,0.10388629257770358],[113,127,65,0.11076302886078469],[113,127,66,0.11777271022661373],[113,127,67,0.12489780136621643],[113,127,68,0.1321566614784911],[113,127,69,0.13958118527704222],[113,127,70,0.14718007818044676],[113,127,71,0.15494153904014651],[113,127,72,0.1628366811368576],[113,127,73,0.1708228205412934],[113,127,74,0.17884662257738004],[113,127,75,0.1823650508625408],[113,127,76,0.1847127901166424],[113,127,77,0.18698503339342853],[113,127,78,0.18924387353536698],[113,127,79,0.19154933854258704],[113,128,64,0.11351489607750512],[113,128,65,0.1203600860533243],[113,128,66,0.12735177501941908],[113,128,67,0.13447136894289233],[113,128,68,0.1417393043127859],[113,128,69,0.14919099561806015],[113,128,70,0.15683702626940813],[113,128,71,0.16466598422954148],[113,128,72,0.17264809999495717],[113,128,73,0.18073874398904874],[113,128,74,0.18851124420779303],[113,128,75,0.19076598241747916],[113,128,76,0.192872560810395],[113,128,77,0.194897210243468],[113,128,78,0.19690653098228825],[113,128,79,0.1989650666571627],[113,129,64,0.12342879801684617],[113,129,65,0.1302235802100813],[113,129,66,0.1371760326875701],[113,129,67,0.14426641375956273],[113,129,68,0.1515166569631582],[113,129,69,0.15896499987981566],[113,129,70,0.1666235711589438],[113,129,71,0.17448133662242238],[113,129,72,0.18250790285974322],[113,129,73,0.1906571745004536],[113,129,74,0.1969980189013542],[113,129,75,0.19905992915314685],[113,129,76,0.20096404635189355],[113,129,77,0.20278003987798418],[113,129,78,0.20457809345617792],[113,129,79,0.20642636178770266],[113,130,64,0.13357857065716144],[113,130,65,0.14030665460102576],[113,130,66,0.1472011803243242],[113,130,67,0.1542411589430727],[113,130,68,0.1614494986632045],[113,130,69,0.16886663862774212],[113,130,70,0.1765059582852046],[113,130,71,0.1843567968227663],[113,130,72,0.1923883771357542],[113,130,73,0.20055357957701242],[113,130,74,0.20532977190901366],[113,130,75,0.2072333923560929],[113,130,76,0.20897082307152517],[113,130,77,0.21061432929035226],[113,130,78,0.21223681917296436],[113,130,79,0.21390921301804036],[113,131,64,0.14389485101183414],[113,131,65,0.1505431893204814],[113,131,66,0.1573644206090756],[113,131,67,0.16433618869231287],[113,131,68,0.17148196089813092],[113,131,69,0.17884390523833626],[113,131,70,0.18643644363749834],[113,131,71,0.19424931508655932],[113,131,72,0.20225158415765063],[113,131,73,0.2103954967310559],[113,131,74,0.21350184874792555],[113,131,75,0.2152759806355803],[113,131,76,0.21687669248785724],[113,131,77,0.21837812384826485],[113,131,78,0.21985517028998872],[113,131,79,0.22138078977908518],[113,132,64,0.1542865742637239],[113,132,65,0.16084604621687698],[113,132,66,0.16758272232470317],[113,132,67,0.17447272483902054],[113,132,68,0.18153982707637503],[113,132,69,0.1888276877862435],[113,132,70,0.19635170613419597],[113,132,71,0.20410210886447694],[113,132,72,0.21204802050179739],[113,132,73,0.2196003008553386],[113,132,74,0.22151642767028087],[113,132,75,0.22318114855771531],[113,132,76,0.22466612223016846],[113,132,77,0.22604682000923212],[113,132,78,0.22739957229752852],[113,132,79,0.22879882887575337],[113,133,64,0.1646418103950062],[113,133,65,0.17110651769525514],[113,133,66,0.177750872016695],[113,133,67,0.18454926513846495],[113,133,68,0.19152568612005183],[113,133,69,0.19872530365862218],[113,133,70,0.20616460022958755],[113,133,71,0.21383447072524178],[113,133,72,0.22170434230919747],[113,133,73,0.22757520046339497],[113,133,74,0.22939926724635984],[113,133,75,0.23096514579066124],[113,133,76,0.23234530814051485],[113,133,77,0.23361618377694943],[113,133,78,0.23485516714697705],[113,133,79,0.23613784136653376],[113,134,64,0.1748499921681737],[113,134,65,0.1812147201403091],[113,134,66,0.18775995585552807],[113,134,67,0.1944581054890165],[113,134,68,0.201333344522799],[113,134,69,0.20843249704485695],[113,134,70,0.2157733392937707],[113,134,71,0.22334769534932347],[113,134,72,0.2311255948485726],[113,134,73,0.23546912945614884],[113,134,74,0.23720608305778296],[113,134,75,0.23867808425106538],[113,134,76,0.23995808145783407],[113,134,77,0.24112313707175603],[113,134,78,0.24225140430564712],[113,134,79,0.24341932187984067],[113,135,64,0.18481982316503975],[113,135,65,0.1910798052695476],[113,135,66,0.1975198260790046],[113,135,67,0.2041100525055137],[113,135,68,0.2108748518859614],[113,135,69,0.21786290508403616],[113,135,70,0.22509354132583664],[113,135,71,0.23255981458671962],[113,135,72,0.2402326862818003],[113,135,73,0.24332862299848657],[113,135,74,0.2449798579655329],[113,135,75,0.24635891092610487],[113,135,76,0.24753888678391284],[113,135,77,0.2485971845235295],[113,135,78,0.24961245117158165],[113,135,79,0.2506617543092174],[113,136,64,0.19447949668387735],[113,136,65,0.2006304848523039],[113,136,66,0.2069599334958536],[113,136,67,0.213435559308589],[113,136,68,0.22008195063400532],[113,136,69,0.22694985552256894],[113,136,70,0.2340604220932093],[113,136,71,0.24140823850799292],[113,136,72,0.24896552685949447],[113,136,73,0.25118251934085856],[113,136,74,0.252746651406994],[113,136,75,0.25403063070907084],[113,136,76,0.2551074202363626],[113,136,77,0.2560544864920578],[113,136,78,0.25695073814872443],[113,136,79,0.2578736828112379],[113,137,64,0.20377608697625585],[113,137,65,0.20981436281900395],[113,137,66,0.21602860217708628],[113,137,67,0.22238393421561856],[113,137,68,0.2289052112780832],[113,137,69,0.23564543015380887],[113,137,70,0.2426277962542053],[113,137,71,0.24984871032788325],[113,137,72,0.25721598547345315],[113,137,73,0.25904308626037276],[113,137,74,0.26051669583322723],[113,137,75,0.26170134228823333],[113,137,76,0.2626695733740942],[113,137,77,0.26349867971506075],[113,137,78,0.26426762570647616],[113,137,79,0.2650541967974448],[113,138,64,0.21267531860009675],[113,138,65,0.21859764435172996],[113,138,66,0.2246926768903972],[113,138,67,0.2309229152895326],[113,138,68,0.2373135237076202],[113,138,69,0.2439198707346276],[113,138,70,0.2507674031308799],[113,138,71,0.25785456354358127],[113,138,72,0.26515696315477477],[113,138,73,0.26690690156801544],[113,138,74,0.26828528351035535],[113,138,75,0.26936510479574327],[113,138,76,0.2702182518835538],[113,138,77,0.2709216197231274],[113,138,78,0.2715540425327459],[113,138,79,0.2721934379171158],[113,139,64,0.2211617154005523],[113,139,65,0.2269652235018334],[113,139,66,0.23293754485073795],[113,139,67,0.23903861234138393],[113,139,68,0.2452939461225363],[113,139,69,0.25176132899747716],[113,139,70,0.2584685587411488],[113,139,71,0.2654162828672195],[113,139,72,0.27258213837354545],[113,139,73,0.27475548623606866],[113,139,74,0.2760334423499703],[113,139,75,0.27700263402458436],[113,139,76,0.2777340680103708],[113,139,77,0.27830404421679195],[113,139,78,0.2787910942197434],[113,139,79,0.2792731287461289],[113,140,64,0.22923913061068082],[113,140,65,0.23492115084997664],[113,140,66,0.24076753331934136],[113,140,67,0.24673581793127478],[113,140,68,0.25285191315724714],[113,140,69,0.2591759623057667],[113,140,70,0.2657381356207675],[113,140,71,0.27254137044816923],[113,140,72,0.27956546336335025],[113,140,73,0.2825556887865291],[113,140,74,0.28372839951659323],[113,140,75,0.28458182709740687],[113,140,76,0.28518590578577413],[113,140,77,0.285616156650725],[113,140,78,0.2859506419527802],[113,140,79,0.286267122905961],[113,141,64,0.2369316595690186],[113,141,65,0.24248948271815238],[113,141,66,0.24820668456676084],[113,141,67,0.25403868888449965],[113,141,68,0.2600118047089187],[113,141,69,0.26618837645147203],[113,141,70,0.272600871907902],[113,141,71,0.27925451881580005],[113,141,72,0.28613133505643684],[113,141,73,0.29025981965382613],[113,141,74,0.2913238316313994],[113,141,75,0.29205811453748004],[113,141,76,0.2925313581550927],[113,141,77,0.2928181293158066],[113,141,78,0.2929958507023066],[113,141,79,0.29314197634742073],[113,142,64,0.2442849365796583],[113,142,65,0.2497155134606063],[113,142,66,0.25529990972158184],[113,142,67,0.26099179983426063],[113,142,68,0.2668178769652605],[113,142,69,0.2728424170654748],[113,142,70,0.2791000111243973],[113,142,71,0.28559809192610575],[113,142,72,0.2923208886158205],[113,142,73,0.297805534291873],[113,142,74,0.29875990044914236],[113,142,75,0.29937463874743087],[113,142,76,0.29971703516532966],[113,142,77,0.29986052525017987],[113,142,78,0.29988170644677714],[113,142,79,0.29985753954462363],[113,143,64,0.25135318340364293],[113,143,65,0.25665312577043603],[113,143,66,0.26210066407420796],[113,143,67,0.2676481680918212],[113,143,68,0.2733226688234934],[113,143,69,0.27919000080306666],[113,143,70,0.2852866114064736],[113,143,71,0.2916219742335443],[113,143,72,0.29818245489972733],[113,143,73,0.3049350509566497],[113,143,74,0.3059713961465565],[113,143,75,0.30646956199579806],[113,143,76,0.306684961366858],[113,143,77,0.3066897133905222],[113,143,78,0.3065593830567044],[113,143,79,0.3063702176381315],[113,144,64,0.2581492842031694],[113,144,65,0.26331600860999305],[113,144,66,0.2686234424681622],[113,144,67,0.2740231847884118],[113,144,68,0.27954255287579316],[113,144,69,0.2852484956583834],[113,144,70,0.2911789849552065],[113,144,71,0.29734531367968386],[113,144,72,0.30373585983371354],[113,144,73,0.3103197317672334],[113,144,74,0.31291760281782566],[113,144,75,0.31330263053092966],[113,144,76,0.3133956168046241],[113,144,77,0.313267188203423],[113,144,78,0.3129916713830504],[113,144,79,0.3126443737519694],[113,145,64,0.2646758427828766],[113,145,65,0.26970775019203064],[113,145,66,0.27487283741550245],[113,145,67,0.28012254301592016],[113,145,68,0.2854844184435981],[113,145,69,0.2910260279418191],[113,145,70,0.2967864840447884],[113,145,71,0.3027786303974673],[113,145,72,0.30899269122240147],[113,145,73,0.31539980958369923],[113,145,74,0.31956625837657643],[113,145,75,0.3198414805833732],[113,145,76,0.3198167469873009],[113,145,77,0.31956102903650496],[113,145,78,0.3191472167983801],[113,145,79,0.31864945309513176],[113,146,64,0.2709371214313102],[113,146,65,0.27583343202702065],[113,146,66,0.28085476265714915],[113,146,67,0.28595305527675446],[113,146,68,0.291156040871343],[113,146,69,0.2965313577751663],[113,146,70,0.3021188340761381],[113,146,71,0.3079325564405938],[113,146,72,0.3139643929743928],[113,146,73,0.3201874127462747],[113,146,74,0.3258869396406129],[113,146,75,0.3260558212931768],[113,146,76,0.3259183893810318],[113,146,77,0.32554181118144637],[113,146,78,0.32499734994070684],[113,146,79,0.3243577615493327],[113,147,64,0.27693813396034633],[113,147,65,0.2816987275447049],[113,147,66,0.286575564135911],[113,147,67,0.2915217825345269],[113,147,68,0.2965652354391398],[113,147,69,0.30177306709910034],[113,147,70,0.3071853669800826],[113,147,71,0.3128171275167198],[113,147,72,0.3186616292892404],[113,147,73,0.32469373097847504],[113,147,74,0.33087305549914525],[113,147,75,0.3319177918208148],[113,147,76,0.3316730978445793],[113,147,77,0.3311826841273932],[113,147,78,0.3305160066063818],[113,147,79,0.3297442166851432],[113,148,64,0.2826838650649783],[113,148,65,0.28730912858328417],[113,148,66,0.29204125905871064],[113,148,67,0.29683529093982525],[113,148,68,0.3017191377264263],[113,148,69,0.30675887134218893],[113,148,70,0.311994373319761],[113,148,71,0.3174411858318891],[113,148,72,0.32309374943386493],[113,148,73,0.3289285538537994],[113,148,74,0.3349071936921139],[113,148,75,0.3374022653624141],[113,148,76,0.33705613675831014],[113,148,77,0.336459444977824],[113,148,78,0.335679670626479],[113,148,79,0.33478615153757235],[113,149,64,0.28817861626192975],[113,149,65,0.29266930002339964],[113,149,66,0.2972569033406837],[113,149,67,0.3018990365370086],[113,149,68,0.3066236107427204],[113,149,69,0.31149505507253966],[113,149,70,0.316552573411049],[113,149,71,0.32181189435350754],[113,149,72,0.32726835339339344],[113,149,73,0.33289989647285645],[113,149,74,0.3386699972378335],[113,149,75,0.3424870999293926],[113,149,76,0.3420456447847242],[113,149,77,0.3413506070614445],[113,149,78,0.3404673398653191],[113,149,79,0.33946317140252275],[113,150,64,0.2934254786569531],[113,150,65,0.29778256283305576],[113,150,66,0.3022260877103924],[113,150,67,0.30671687824224425],[113,150,68,0.31128277912381586],[113,150,69,0.31598603193355906],[113,150,70,0.32086470775873144],[113,150,71,0.32593436277726345],[113,150,72,0.3311909586594386],[113,150,73,0.33661371258027156],[113,150,74,0.3421678696773158],[113,150,75,0.34715333576876045],[113,150,76,0.3466227682091003],[113,150,77,0.34583746377154856],[113,150,78,0.34486051547477786],[113,150,79,0.3437570638998199],[113,151,64,0.29842593278911406],[113,151,65,0.3026505057857196],[113,151,66,0.30695056274900206],[113,151,67,0.3112907193742342],[113,151,68,0.3156986906807344],[113,151,69,0.3202340291522195],[113,151,70,0.3249332470912801],[113,151,71,0.3298113854671463],[113,151,72,0.3348647684018441],[113,151,73,0.3400736953338235],[113,151,74,0.3454050641926737],[113,151,75,0.35081491912182516],[113,151,76,0.3507717638166249],[113,151,77,0.3499041476705668],[113,151,78,0.34884321453309375],[113,151,79,0.3476517625346112],[113,152,64,0.3031795758084557],[113,152,65,0.30727272611963546],[113,152,66,0.31142999313960307],[113,152,67,0.31562027801998066],[113,152,68,0.3198711055873351],[113,152,69,0.32423889690454266],[113,152,70,0.3287582222712688],[113,152,71,0.33344329163003644],[113,152,72,0.33829054126081504],[113,152,73,0.34328116592838753],[113,152,74,0.3483835903139333],[113,152,75,0.3535558737440143],[113,152,76,0.3544800712700993],[113,152,77,0.3535376849003314],[113,152,78,0.352402006195179],[113,152,79,0.3511333639799971],[113,153,64,0.30768397625853633],[113,153,65,0.31164669941928025],[113,153,66,0.31566184141323006],[113,153,67,0.31970298652582074],[113,153,68,0.32379741349790514],[113,153,69,0.32799804282596023],[113,153,70,0.3323371743589354],[113,153,71,0.336827907984428],[113,153,72,0.34146656299233147],[113,153,73,0.34623505027158646],[113,153,74,0.3511031916612563],[113,153,75,0.35603098093848984],[113,153,76,0.35773835495690665],[113,153,77,0.3567280449407992],[113,153,78,0.35552607147981646],[113,153,79,0.35419019929674334],[113,154,64,0.3119346567591936],[113,154,65,0.31576777902160386],[113,154,66,0.3196413814973592],[113,154,67,0.3235340204206607],[113,154,68,0.3274726789002133],[113,154,69,0.33150649196570053],[113,154,70,0.33566522511507224],[113,154,71,0.3399606341886474],[113,154,72,0.3443887202027443],[113,154,73,0.34893194390852833],[113,154,74,0.35356139487227206],[113,154,75,0.35823891001551744],[113,154,76,0.36054051527731523],[113,154,77,0.3594681857626057],[113,154,78,0.358207286819665],[113,154,79,0.35681295930289],[113,155,64,0.3159252049171968],[113,155,65,0.31962932527997084],[113,155,66,0.3233618424004342],[113,155,67,0.32710645710353636],[113,155,68,0.3308898150320888],[113,155,69,0.3347570725040694],[113,155,70,0.3387352682460162],[113,155,71,0.34283463130715564],[113,155,72,0.3470506764182117],[113,155,73,0.35136626539937044],[113,155,74,0.3557536298674652],[113,155,75,0.36017635061724407],[113,155,76,0.36288366934799743],[113,155,77,0.3617540944214734],[113,155,78,0.3604403315023098],[113,155,79,0.35899487430670457],[113,156,64,0.3196475128323463],[113,156,65,0.32322296505667325],[113,156,66,0.3268146824014405],[113,156,67,0.33041156466051347],[113,156,68,0.334039886719751],[113,156,69,0.33774072757862994],[113,156,70,0.3415382817171882],[113,156,71,0.34544112361334156],[113,156,72,0.3494441507502962],[113,156,73,0.3535304983648335],[113,156,74,0.35767342161375876],[113,156,75,0.3618381409447658],[113,156,76,0.36476810109390484],[113,156,77,0.36358482314423624],[113,156,78,0.3622228191337716],[113,156,79,0.360731948419807],[113,157,64,0.32309214561501004],[113,157,65,0.3265389818614764],[113,157,66,0.3299899941576894],[113,157,67,0.3334392212174584],[113,157,68,0.33691254253487446],[113,157,69,0.3404469536008282],[113,157,70,0.3440637614934069],[113,157,71,0.34776981405465923],[113,157,72,0.3515592994416755],[113,157,73,0.35541552243228036],[113,157,74,0.359312653558663],[113,157,75,0.36321744723717],[113,157,76,0.36619718069941093],[113,157,77,0.3649625209581277],[113,157,78,0.36355545326100425],[113,157,79,0.362023248674532],[113,158,64,0.3262488393878467],[113,158,65,0.3295668371087131],[113,158,66,0.3328770411965978],[113,158,67,0.33617846528523354],[113,158,68,0.33949657671454675],[113,158,69,0.34286436548842797],[113,158,70,0.3463002771039594],[113,158,71,0.3498094137409136],[113,158,72,0.3533852006053925],[113,158,73,0.3570110333384295],[113,158,74,0.3606619029244806],[113,158,75,0.36430599461734564],[113,158,76,0.36717725338569107],[113,158,77,0.36589246091681443],[113,158,78,0.36444220729679183],[113,158,79,0.36287124918055413],[113,159,64,0.329107129308737],[113,159,65,0.332295823028108],[113,159,66,0.33546492631753766],[113,159,67,0.33861817761152735],[113,159,68,0.34178062134305504],[113,159,69,0.3449813892903748],[113,159,70,0.348236149477308],[113,159,71,0.3515482858581326],[113,159,72,0.35491044250656606],[113,159,73,0.3583060524734144],[113,159,74,0.36171084807328824],[113,159,75,0.3650943494329113],[113,159,76,0.36771749747486493],[113,159,77,0.3663830629776305],[113,159,78,0.36489052889828166],[113,159,79,0.363282230569632],[113,160,64,0.3316571082245006],[113,160,65,0.33471584783562025],[113,160,66,0.33774339249860125],[113,160,67,0.34074789511970616],[113,160,68,0.3437539693576812],[113,160,69,0.34678708274028996],[113,160,70,0.3498602515452557],[113,160,71,0.3529752044596885],[113,160,72,0.35612381577794516],[113,160,73,0.35928952618563137],[113,160,74,0.3624487481797007],[113,160,75,0.36557225323792053],[113,160,76,0.36782975169338317],[113,160,77,0.3664459125855012],[113,160,78,0.36491156896009874],[113,160,79,0.36326673499501955],[113,161,64,0.33389031664555896],[113,161,65,0.3368183538498463],[113,161,66,0.3397037569801136],[113,161,67,0.34255875758946575],[113,161,68,0.3454075290121121],[113,161,69,0.3482720843424401],[113,161,70,0.35116293217913447],[113,161,71,0.35408022864292577],[113,161,72,0.3570151100098701],[113,161,73,0.35995101520746964],[113,161,74,0.36286499547955736],[113,161,75,0.3657290085819456],[113,161,76,0.36752831165732636],[113,161,77,0.3660957750199501],[113,161,78,0.36452043539438495],[113,161,79,0.3628400769734267],[113,162,64,0.33580076481933513],[113,162,65,0.33859736932597884],[113,162,66,0.34133997928096904],[113,162,67,0.3440445878157455],[113,162,68,0.3467349105097733],[113,162,69,0.3494296916688075],[113,162,70,0.3521370640901962],[113,162,71,0.3548556926825843],[113,162,72,0.3575760152102338],[113,162,73,0.3602814746076706],[113,162,74,0.362949740397802],[113,162,75,0.36555391679680727],[113,162,76,0.36682969546985267],[113,162,77,0.3653506055615101],[113,162,78,0.36373647188231584],[113,162,79,0.3620229103815066],[113,163,64,0.3373860877760848],[113,163,65,0.34005069487419337],[113,163,66,0.3426498639966168],[113,163,67,0.3452031060725937],[113,163,68,0.34773364560661646],[113,163,69,0.3502570696290945],[113,163,70,0.35277921640418586],[113,163,71,0.3552973127631355],[113,163,72,0.3578011286922485],[113,163,73,0.3602741247281297],[113,163,74,0.3626945898993564],[113,163,75,0.3650367679990985],[113,163,76,0.36575237834745766],[113,163,77,0.3642315555342362],[113,163,78,0.36258356179611645],[113,163,79,0.36084185194713486],[113,164,64,0.3386446061994808],[113,164,65,0.34117659379899556],[113,164,66,0.3436313903953898],[113,164,67,0.34603190241280585],[113,164,68,0.3484008069709934],[113,164,69,0.35075052936941825],[113,164,70,0.35308461346552],[113,164,71,0.3553988533182547],[113,164,72,0.3576823630277004],[113,164,73,0.3599186403007999],[113,164,74,0.3620866216782795],[113,164,75,0.3641617273989969],[113,164,76,0.3643229650923478],[113,164,77,0.36276917327052005],[113,164,78,0.3610963091631294],[113,164,79,0.35933559595360887],[113,165,64,0.3395490195299281],[113,165,65,0.34194495720530593],[113,165,66,0.34425154925496876],[113,165,67,0.34649501424930473],[113,165,68,0.34869741768482015],[113,165,69,0.35086800005613444],[113,165,70,0.3530080179249924],[113,165,71,0.35511186580659104],[113,165,72,0.3571680575179803],[113,165,73,0.359160202210112],[113,165,74,0.3610679732196769],[113,165,75,0.36286806791390125],[113,165,76,0.36261369439472485],[113,165,77,0.3610385981901479],[113,165,78,0.3593523971766097],[113,165,79,0.35758397012368165],[113,166,64,0.3400660987293681],[113,166,65,0.34231905426710557],[113,166,66,0.3444701345334542],[113,166,67,0.34654875826137677],[113,166,68,0.34857632076087663],[113,166,69,0.3505589077410532],[113,166,70,0.35249556057405484],[113,166,71,0.3543793789340556],[113,166,72,0.3561984056881115],[113,166,73,0.35793650785843034],[113,166,74,0.3595742520122827],[113,166,75,0.3610897724678661],[113,166,76,0.36070184614021994],[113,166,77,0.35911824400925957],[113,166,78,0.3574307965011708],[113,166,79,0.35566591891859095],[113,167,64,0.3401711367290957],[113,167,65,0.34227148169041754],[113,167,66,0.34425711384503704],[113,167,67,0.3461604964181307],[113,167,68,0.3480023066573207],[113,167,69,0.34978557173775665],[113,167,70,0.3515072606314508],[113,167,71,0.35315935353072553],[113,167,72,0.35472961931980107],[113,167,73,0.3562023912585968],[113,167,74,0.3575593394842086],[113,167,75,0.3587802389612516],[113,167,76,0.3586453917040775],[113,167,77,0.357066110834429],[113,167,78,0.3553890044173984],[113,167,79,0.35363791384035537],[113,168,64,0.33984667455899026],[113,168,65,0.3417828559753539],[113,168,66,0.3435912777082281],[113,168,67,0.34530723877707226],[113,168,68,0.34695066517709183],[113,168,69,0.3485216959441458],[113,168,70,0.3500154429272946],[113,168,71,0.35142300946647315],[113,168,72,0.3527321475650371],[113,168,73,0.35392791642674837],[113,168,74,0.3549933412479454],[113,168,75,0.3559100711731784],[113,168,76,0.356485345209635],[113,168,77,0.3549223209205296],[113,168,78,0.35326577442190005],[113,168,79,0.3515368832680484],[113,169,64,0.3390811013786199],[113,169,65,0.3408403697620728],[113,169,66,0.3424587440317684],[113,169,67,0.3439740928444399],[113,169,68,0.345405575567701],[113,169,69,0.3467506911525573],[113,169,70,0.34800298072339164],[113,169,71,0.34915297528928235],[113,169,72,0.35018871875003355],[113,169,73,0.35109629662944425],[113,169,74,0.35186036975202956],[113,169,75,0.3524647120865908],[113,169,76,0.35289275199171855],[113,169,77,0.352711778969233],[113,169,78,0.3510839505461567],[113,169,79,0.34938322444628533],[113,170,64,0.3378672138988847],[113,170,65,0.3394363061000233],[113,170,66,0.34085141957538617],[113,170,67,0.34215266898325425],[113,170,68,0.343358451857291],[113,170,69,0.3444639523978356],[113,170,70,0.3454614944008856],[113,170,71,0.34634139591338176],[113,170,72,0.3470923440058114],[113,170,73,0.34770178099079246],[113,170,74,0.34815630167124456],[113,170,75,0.34844206119622667],[113,170,76,0.34854519310057125],[113,170,77,0.34845223710642503],[113,170,78,0.3481505762709213],[113,170,79,0.34718377458334493],[113,171,64,0.3362007344858317],[113,171,65,0.3375665099503753],[113,171,66,0.33876541771532626],[113,171,67,0.33983944122039583],[113,171,68,0.34080624280137495],[113,171,69,0.3416590907435284],[113,171,70,0.3423895054448272],[113,171,71,0.3429879978207854],[113,171,72,0.3434442822284118],[113,171,73,0.34374750800806725],[113,171,74,0.34388650963593026],[113,171,75,0.3438500754590572],[113,171,76,0.34362723496691217],[113,171,77,0.3432075645381862],[113,171,78,0.3425815115900346],[113,171,79,0.3417407370489377],[113,172,64,0.33407878716081935],[113,172,65,0.3352288161514329],[113,172,66,0.3361994317619287],[113,172,67,0.33703406271879693],[113,172,68,0.3377496857268064],[113,172,69,0.3383381188159673],[113,172,70,0.3387905450624022],[113,172,71,0.33909811114468447],[113,172,72,0.33925196577441435],[113,172,73,0.3392433254248789],[113,172,74,0.3390635677994699],[113,172,75,0.3387043534431225],[113,172,76,0.33815777586322643],[113,172,77,0.33741654049178665],[113,172,78,0.3364741727885698],[113,172,79,0.3353252557560614],[113,173,64,0.3314983306332875],[113,173,65,0.33242143299610155],[113,173,66,0.3331530629931529],[113,173,67,0.3337376350947167],[113,173,68,0.3341915134706671],[113,173,69,0.33450558930446794],[113,173,70,0.33467121667756633],[113,173,71,0.3346806479068867],[113,173,72,0.3345268861991605],[113,173,73,0.3342035758108631],[113,173,74,0.3337049306412379],[113,173,75,0.3330257021273089],[113,173,76,0.33216118725174976],[113,173,77,0.3311072774177122],[113,173,78,0.32986054888978306],[113,173,79,0.3284183954479076],[113,174,64,0.32845454742434094],[113,174,65,0.329141280489456],[113,174,66,0.3296251024841033],[113,174,67,0.3299509306733882],[113,174,68,0.33013461352218837],[113,174,69,0.33016668555357626],[113,174,70,0.33003921145003073],[113,174,71,0.329746035584519],[113,174,72,0.3292824392462375],[113,174,73,0.3286448470964466],[113,174,74,0.3278305843005963],[113,174,75,0.3268376857017996],[113,174,76,0.32566475831907776],[113,174,77,0.32431089837249877],[113,174,78,0.32277566395716356],[113,174,79,0.3210591044098808],[113,175,64,0.32494710225127027],[113,175,65,0.32538996780466123],[113,175,66,0.32561917720920724],[113,175,67,0.32567964904868013],[113,175,68,0.3255868280890776],[113,175,69,0.32533148979336973],[113,175,70,0.32490696333310454],[113,175,71,0.324309174144454],[113,175,72,0.3235360979732319],[113,175,73,0.32258727731223835],[113,175,74,0.32146340222336744],[113,175,75,0.3201659574310451],[113,175,76,0.31869693746610395],[113,175,77,0.31705863153120445],[113,175,78,0.31525347965132733],[113,175,79,0.3132840015668754],[113,176,64,0.3210053231523255],[113,176,65,0.32119829788402476],[113,176,66,0.3211674715002147],[113,176,67,0.32095722503932317],[113,176,68,0.3205826947837359],[113,176,69,0.3200354815294359],[113,176,70,0.319310713131081],[113,176,71,0.3184068615188719],[113,176,72,0.3173249883731423],[113,176,73,0.3160680675138263],[113,176,74,0.3146403865615169],[113,176,75,0.3130470302945353],[113,176,76,0.31129344799149283],[113,176,77,0.30938510691245247],[113,176,78,0.30732723393518213],[113,176,79,0.30512464722753496],[113,177,64,0.31666838354115184],[113,177,65,0.3166071827891227],[113,177,66,0.316312562316851],[113,177,67,0.31582780665286786],[113,177,68,0.3151678188333172],[113,177,69,0.3143255771740066],[113,177,70,0.31329850363174205],[113,177,71,0.3120880401545885],[113,177,72,0.31069868379405613],[113,177,73,0.30913711368805746],[113,177,74,0.30741141304287517],[113,177,75,0.3055303890825917],[113,177,76,0.30350299377093126],[113,177,77,0.3013378479446677],[113,177,78,0.29904287133108176],[113,177,79,0.2966250207560365],[113,178,64,0.3119773104006219],[113,178,65,0.31165980731160237],[113,178,66,0.3110997750415509],[113,178,67,0.3103388490011114],[113,178,68,0.30939175878897496],[113,178,69,0.30825336782637003],[113,178,70,0.3069238353430849],[113,178,71,0.30540794093865475],[113,178,72,0.3037139101501777],[113,178,73,0.3018523475538153],[113,178,74,0.2998352810961765],[113,178,75,0.2976753211639895],[113,178,76,0.2953849377079318],[113,178,77,0.2929758585408208],[113,178,78,0.2904585917332181],[113,178,79,0.2878420748327629],[113,179,64,0.3069742707685215],[113,179,65,0.30640082227537113],[113,179,66,0.305576266946893],[113,179,67,0.30454006921191973],[113,179,68,0.30330683289063],[113,179,69,0.30187375695724383],[113,179,70,0.3002441161658347],[113,179,71,0.29842632713539335],[113,179,72,0.29643256868198387],[113,179,73,0.29427752553208497],[113,179,74,0.2919772596671166],[113,179,75,0.28954821333340774],[113,179,76,0.28700634753041127],[113,179,77,0.2843664195645588],[113,179,78,0.2816414030287123],[113,179,79,0.27884205333980144],[113,180,64,0.30170185495397966],[113,180,65,0.30087553557114705],[113,180,66,0.2997901114034741],[113,180,67,0.298482406755868],[113,180,68,0.29696693738733915],[113,180,69,0.29524361900649515],[113,180,70,0.2933191437590002],[113,180,71,0.2912057858765178],[113,180,72,0.288919824332481],[113,180,73,0.2864801045962675],[113,180,74,0.2839067442653204],[113,180,75,0.2812199871117059],[113,180,76,0.27843920982986164],[113,180,77,0.27558208551787167],[113,180,78,0.27266390766760173],[113,180,79,0.26969707818183664],[113,181,64,0.29620235607471007],[113,181,65,0.2951291004845561],[113,181,66,0.293789382368608],[113,181,67,0.2922169887122179],[113,181,68,0.2904263763276527],[113,181,69,0.2884204784075442],[113,181,70,0.2862096201223471],[113,181,71,0.28381006675208376],[113,181,72,0.2812422593255636],[113,181,73,0.2785292046417488],[113,181,74,0.27569502494878556],[113,181,75,0.2727636722869638],[113,181,76,0.2697578122250631],[113,181,77,0.26669788143732476],[113,181,78,0.2636013232830519],[113,181,79,0.2604820052651133],[113,182,64,0.2905170454836126],[113,182,65,0.28920570085479225],[113,182,66,0.28762123867034706],[113,182,67,0.28579409947157075],[113,182,68,0.2837387023063386],[113,182,69,0.28146120852361545],[113,182,70,0.2789756978922008],[113,182,71,0.27630246702421063],[113,182,72,0.27346609150919204],[113,182,73,0.2704936569937612],[113,182,74,0.26741316493631667],[113,182,75,0.2642521184725417],[113,182,76,0.2610362935251865],[113,182,77,0.2577886999833679],[113,182,78,0.25452873746490695],[113,182,79,0.25127154986281974],[113,183,64,0.28468544363289205],[113,183,65,0.2831477325780149],[113,183,66,0.28133100757706536],[113,183,67,0.2792621543474235],[113,183,68,0.2769555676283893],[113,183,69,0.2744207499560699],[113,183,70,0.27167555782362435],[113,183,71,0.26874426296477305],[113,183,72,0.26565545700908627],[113,183,73,0.26244013866022736],[113,183,74,0.25912998953163024],[113,183,75,0.2557558444576675],[113,183,76,0.2523463617728556],[113,183,77,0.2489268987195272],[113,183,78,0.24551859680845026],[113,183,79,0.242137681620053],[113,184,64,0.27874458590562257],[113,184,65,0.2769949809491697],[113,184,66,0.2749612671212629],[113,184,67,0.272666676546799],[113,184,68,0.27012558532938147],[113,184,69,0.26735084766438244],[113,184,70,0.26436401691370026],[113,184,71,0.26119318680360765],[113,184,72,0.25787075672886656],[113,184,73,0.25443139193256603],[113,184,74,0.25091018504610546],[113,184,75,0.2473410251371589],[113,184,76,0.24375518006713467],[113,184,77,0.24018009760624462],[113,184,78,0.2366384303967322],[113,184,79,0.2331472894962355],[113,185,64,0.2727282829280596],[113,185,65,0.2707837933172677],[113,185,66,0.2685509266268093],[113,185,67,0.2660492769306571],[113,185,68,0.26329319947250984],[113,185,69,0.2602988063204275],[113,185,70,0.25709116660695625],[113,185,71,0.25370194876470004],[113,185,72,0.2501670662295511],[113,185,73,0.24652452894178092],[113,185,74,0.24281250742003366],[113,185,75,0.2390676158292007],[113,185,76,0.23532342009884674],[113,185,77,0.2316091767770504],[113,185,78,0.22794880792829042],[113,185,79,0.2243601170066614],[113,186,64,0.2666663748608005],[113,186,65,0.26454624651214786],[113,186,66,0.26213430487139866],[113,186,67,0.2594466359777214],[113,186,68,0.25649756412681074],[113,186,69,0.2533062633064455],[113,186,70,0.2499010405146639],[113,186,71,0.24631680366411937],[113,186,72,0.24259260852479647],[113,186,73,0.23876942078930868],[113,186,74,0.2348881002643498],[113,186,75,0.23098761382329186],[113,186,76,0.22710348337565997],[113,186,77,0.22326647472213176],[113,186,78,0.21950153277199927],[113,186,79,0.21582696820711655],[113,187,64,0.2605839791549692],[113,187,65,0.25830930848729455],[113,187,66,0.2557402053024295],[113,187,67,0.25288948735263117],[113,187,68,0.2497714304201589],[113,187,69,0.24640797875829712],[113,187,70,0.2428303110767928],[113,187,71,0.23907616154705075],[113,187,72,0.23518728934014543],[113,187,73,0.23120717089389836],[113,187,74,0.22717892207801424],[113,187,75,0.22314345704626906],[113,187,76,0.21913789017372107],[113,187,77,0.2151941870778497],[113,187,78,0.21133807031866872],[113,187,79,0.20758818496774423],[113,188,64,0.2545007312485544],[113,188,65,0.25209399361093887],[113,188,66,0.2493909877124229],[113,188,67,0.24640160246848286],[113,188,68,0.2431400410521034],[113,188,69,0.23963064205091528],[113,188,70,0.23590701459626356],[113,188,71,0.2320092418496032],[113,188,72,0.2279812944022054],[113,188,73,0.22386867222458856],[113,188,74,0.21971628243773875],[113,188,75,0.21556655978991526],[113,188,76,0.21145783632333887],[113,188,77,0.20742296630731916],[113,188,78,0.20348821210178644],[113,188,79,0.1996723962012743],[113,189,64,0.24843001767060957],[113,189,65,0.2459145110292764],[113,189,66,0.24310163577232016],[113,189,67,0.23999877542775386],[113,189,68,0.23662003164840878],[113,189,69,0.23299169412412932],[113,189,70,0.2291493040827616],[113,189,71,0.22513477058702958],[113,189,72,0.22099374835001148],[113,189,73,0.21677324812845908],[113,189,74,0.2125194870093648],[113,189,75,0.20827598551176246],[113,189,76,0.20408191802096687],[113,189,77,0.19997072265937102],[113,189,78,0.19596897627988455],[113,189,79,0.19209553984877697],[113,190,64,0.24237820101585678],[113,190,65,0.23977740551977383],[113,190,66,0.23687881981610656],[113,190,67,0.23368780772285833],[113,190,68,0.23021833833981156],[113,190,69,0.2264981650527647],[113,190,70,0.22256422935615555],[113,190,71,0.21845972009197107],[113,190,72,0.2142314348941188],[113,190,73,0.20992737650846544],[113,190,74,0.20559459129204127],[113,190,75,0.20127725679930758],[113,190,76,0.19701502495638182],[113,190,77,0.19284162690879147],[113,190,78,0.18878374520803654],[113,190,79,0.18486015858067148],[113,191,64,0.23634383624946023],[113,191,65,0.23368069024938876],[113,191,66,0.23071995426842595],[113,191,67,0.22746549207838707],[113,191,68,0.2239311109522267],[113,191,69,0.22014552627533948],[113,191,70,0.21614654387776325],[113,191,71,0.21197809085451627],[113,191,72,0.20768757788936193],[113,191,73,0.20332349716142384],[113,191,74,0.19893326307737946],[113,191,75,0.19456130267686325],[113,191,76,0.190247402152262],[113,191,77,0.1860253155093403],[113,191,78,0.18192164097546276],[113,191,79,0.17795497034123176],[113,192,64,0.23031687780282964],[113,192,65,0.22761297085360094],[113,192,66,0.22461224910965874],[113,192,67,0.2213175948229354],[113,192,68,0.21774263120591644],[113,192,69,0.21391655691224504],[113,192,70,0.20987753780270094],[113,192,71,0.2056697350515998],[113,192,72,0.20134068303600652],[113,192,73,0.1969389021502523],[113,192,74,0.19251175368710838],[113,192,75,0.18810354353463823],[113,192,76,0.18375388103421042],[113,192,77,0.1794962989333736],[113,192,78,0.17535713995067348],[113,192,79,0.1713547150516063],[113,193,64,0.2242778769253432],[113,193,65,0.2215525602565035],[113,193,66,0.2185317547794196],[113,193,67,0.21521783618837706],[113,193,68,0.2116242353360255],[113,193,69,0.20778022362603307],[113,193,70,0.2037238967773459],[113,193,71,0.19949922139547047],[113,193,72,0.1951534399800106],[113,193,73,0.19073470915664092],[113,193,74,0.18628997814295814],[113,193,75,0.18186311406981573],[113,193,76,0.17749328038086531],[113,193,77,0.17321357412603317],[113,193,78,0.16904992755292464],[113,193,79,0.16502027898716673],[113,194,64,0.21819716876381084],[113,194,65,0.21546658365983745],[113,194,66,0.21244239992958827],[113,194,67,0.20912686794851837],[113,194,68,0.20553324056638048],[113,194,69,0.20169057350329989],[113,194,70,0.197636586042447],[113,194,71,0.1934147409794988],[113,194,72,0.18907168464610694],[113,194,73,0.18465491784008328],[113,194,74,0.18021070452115642],[113,194,75,0.17578222474879557],[113,194,76,0.1714079779453978],[113,194,77,0.167120442166997],[113,194,78,0.16294499465787024],[113,194,79,0.15889909855847761],[113,195,64,0.2120011434803992],[113,195,65,0.20931060867800316],[113,195,66,0.20629563137696683],[113,195,67,0.2029919306116419],[113,195,68,0.19941262916828154],[113,195,69,0.19558646123840745],[113,195,70,0.1915506419861734],[113,195,71,0.1873479878055532],[113,195,72,0.18302439523755604],[113,195,73,0.1786265483896164],[113,195,74,0.1741998615599826],[113,195,75,0.16978666339314738],[113,195,76,0.16542462850497916],[113,195,77,0.16114546212107705],[113,195,78,0.1569738428722563],[113,195,79,0.15292662849035557],[113,196,64,0.2023069123225605],[113,196,65,0.20305513361736013],[113,196,66,0.2000605825591081],[113,196,67,0.19678063439567417],[113,196,68,0.19322838159595787],[113,196,69,0.1894322460609821],[113,196,70,0.1854289115782255],[113,196,71,0.18126048996622549],[113,196,72,0.17697204319023305],[113,196,73,0.17260933155908295],[113,196,74,0.16821679454495836],[113,196,75,0.16383577039650504],[113,196,76,0.15950296033418454],[113,196,77,0.1552491427276854],[113,196,78,0.15109814226181514],[113,196,79,0.14706605870294803],[113,197,64,0.19254863480360324],[113,197,65,0.19428789760176893],[113,197,66,0.1937410939358425],[113,197,67,0.1904997150455493],[113,197,68,0.18698992214589616],[113,197,69,0.1832397945611773],[113,197,70,0.17928539667475646],[113,197,71,0.1751680045481967],[113,197,72,0.1709316820532839],[113,197,73,0.16662108000355824],[113,197,74,0.16227946464327997],[113,197,75,0.15794698148710445],[113,197,76,0.15365916012908531],[113,197,77,0.14944566525772626],[113,197,78,0.14532929872781566],[113,197,79,0.1413252571529907],[113,198,64,0.18275641239832058],[113,198,65,0.18450903744578057],[113,198,66,0.18612907925879568],[113,198,67,0.18415138519043558],[113,198,68,0.1807016360624393],[113,198,69,0.177015413294711],[113,198,70,0.17312802357671747],[113,198,71,0.16907971567391464],[113,198,72,0.16491332703268294],[113,198,73,0.16067214906830457],[113,198,74,0.15639801727292774],[113,198,75,0.15212963192431653],[113,198,76,0.14790111481043222],[113,198,77,0.14374080701226097],[113,198,78,0.13967031241082625],[113,198,79,0.13570379120725998],[113,199,64,0.1729636477921566],[113,199,65,0.1747220679702761],[113,199,66,0.17634227303121705],[113,199,67,0.1777314675488124],[113,199,68,0.17436067676083014],[113,199,69,0.1707573571472489],[113,199,70,0.16695589131457844],[113,199,71,0.16299527280629858],[113,199,72,0.158916843933358],[113,199,73,0.15476224629007496],[113,199,74,0.150571589823689],[113,199,75,0.14638184598078643],[113,199,76,0.14222547009970157],[113,199,77,0.1381292578574022],[113,199,78,0.13411344021526547],[113,199,79,0.13019102094366264],[113,200,64,0.16320523186225736],[113,200,65,0.16496013328464085],[113,200,66,0.16657200564090352],[113,200,67,0.1680345906177865],[113,200,68,0.16795903896090855],[113,200,69,0.16445801150166597],[113,200,70,0.1607615656934806],[113,200,71,0.15690719560263552],[113,200,72,0.15293445986310172],[113,200,73,0.14888303924401475],[113,200,74,0.14479100443945],[113,200,75,0.14069329929471222],[113,200,76,0.13662044434408224],[113,200,77,0.1325974651897197],[113,200,78,0.12864304990303985],[113,200,79,0.12476893928136062],[113,201,64,0.15351588299629831],[113,201,65,0.15525689801494227],[113,201,66,0.1568510731737872],[113,201,67,0.15828962371186941],[113,201,68,0.15955850683708905],[113,201,69,0.15810594465289798],[113,201,70,0.15453325466064458],[113,201,71,0.15080317347730127],[113,201,72,0.14695318431478363],[113,201,73,0.14302069161297123],[113,201,74,0.13904140886361716],[113,201,75,0.13504795088439311],[113,201,76,0.13106863507262698],[113,201,77,0.127126495842035],[113,201,78,0.12323851611676577],[113,201,79,0.11941507942824722],[113,202,64,0.14392863942297837],[113,202,65,0.14564495507263928],[113,202,66,0.14721173634317639],[113,202,67,0.14861719911914908],[113,202,68,0.149845808712966],[113,202,69,0.15087492313429623],[113,202,70,0.14825686517986558],[113,202,71,0.14466826026382293],[113,202,72,0.14095714123384348],[113,202,73,0.13715832830914113],[113,202,74,0.13330486640247477],[113,202,75,0.12942674610208665],[113,202,76,0.1255498197757222],[113,202,77,0.12169491662557397],[113,202,78,0.11787716021728054],[113,202,79,0.1141054917008306],[113,203,64,0.13739722461068238],[113,203,65,0.1361543855888875],[113,203,66,0.137684185331582],[113,203,67,0.13904769297519817],[113,203,68,0.14022758765095442],[113,203,69,0.14120183150232465],[113,203,70,0.1419179417047164],[113,203,71,0.13848696428980642],[113,203,72,0.1349298126188679],[113,203,73,0.13127843043796475],[113,203,74,0.1275628960414873],[113,203,75,0.12381029180533917],[113,203,76,0.12004375242241785],[113,203,77,0.11628169524805185],[113,203,78,0.11253723588451264],[113,203,79,0.10881779185590543],[113,204,64,0.13732617380151563],[113,204,65,0.1354060634291855],[113,204,66,0.1334961308989054],[113,204,67,0.13156987606677467],[113,204,68,0.13073148256931036],[113,204,69,0.13164328137257805],[113,204,70,0.132319558414984],[113,204,71,0.13224523408986913],[113,204,72,0.1288561941319275],[113,204,73,0.12536516084174565],[113,204,74,0.1217989637169672],[113,204,75,0.11818150501203009],[113,204,76,0.1145329572393716],[113,204,77,0.11086912337767668],[113,204,78,0.10720096248210838],[113,204,79,0.10353428314491928],[113,205,64,0.13736171975736194],[113,205,65,0.13514897475429338],[113,205,66,0.13294745122101193],[113,205,67,0.13072671644582878],[113,205,68,0.1284580062429726],[113,205,69,0.12611362079786936],[113,205,70,0.12366454334430965],[113,205,71,0.1231663149280531],[113,205,72,0.1227248631126313],[113,205,73,0.11940662089579109],[113,205,74,0.11600092570011047],[113,205,75,0.11252823628014673],[113,205,76,0.10900552127069585],[113,205,77,0.10544576363959546],[113,205,78,0.10185760822356622],[113,205,79,0.09824515435961258],[113,206,64,0.13751427633007446],[113,206,65,0.13499507496307697],[113,206,66,0.1324888806556455],[113,206,67,0.1299610957512882],[113,206,68,0.1273805485454641],[113,206,69,0.12472016521755253],[113,206,70,0.12195278419527593],[113,206,71,0.11905200315374642],[113,206,72,0.11599304535177976],[113,206,73,0.11339488532547135],[113,206,74,0.11016342499346529],[113,206,75,0.10684586901585283],[113,206,76,0.10345788722074681],[113,206,77,0.10000942233457998],[113,206,78,0.0965066252014382],[113,206,79,0.09295175618144545],[113,207,64,0.13778871515816773],[113,207,65,0.13495078935883711],[113,207,66,0.13212811896206028],[113,207,67,0.1292817843280659],[113,207,68,0.12637799524177665],[113,207,69,0.12339020607841311],[113,207,70,0.12029312896177158],[113,207,71,0.11706321749503178],[113,207,72,0.11367923622014721],[113,207,73,0.11012274555498089],[113,207,74,0.10637850048155253],[113,207,75,0.1013379908534045],[113,207,76,0.09789310917486595],[113,207,77,0.09456461767146045],[113,207,78,0.09115431043574118],[113,207,79,0.08766245880366255],[113,208,64,0.1381865663188441],[113,208,65,0.13501766446936886],[113,208,66,0.1318668838207468],[113,208,67,0.1286909582597658],[113,208,68,0.12545333327286673],[113,208,69,0.12212788124868657],[113,208,70,0.11869116995584068],[113,208,71,0.11512256298926167],[113,208,72,0.11140447292308696],[113,208,73,0.10752255529549487],[113,208,74,0.10346584241867254],[113,208,75,0.09922681610044279],[113,208,76,0.09480141845659892],[113,208,77,0.08952079140167557],[113,208,78,0.08579016498453935],[113,208,79,0.08236577178656604],[113,209,64,0.1387051628864524],[113,209,65,0.13519329695910653],[113,209,66,0.13170326982672792],[113,209,67,0.12818758573893285],[113,209,68,0.12460685314956724],[113,209,69,0.12093524305802607],[113,209,70,0.11715112107870869],[113,209,71,0.11323675120950843],[113,209,72,0.10917821841891664],[113,209,73,0.10496531887212837],[113,209,74,0.10059141752816297],[113,209,75,0.09605327289074596],[113,209,76,0.09135082874419334],[113,209,77,0.08648697275181082],[113,209,78,0.08146726183932892],[113,209,79,0.0762996143275054],[113,210,64,0.1393370784660692],[113,210,65,0.135471209106228],[113,210,66,0.1316319341391952],[113,210,67,0.1277677767598041],[113,210,68,0.12383650649967363],[113,210,69,0.11981246551384493],[113,210,70,0.11567572044573907],[113,210,71,0.11141136307064205],[113,210,72,0.10700909357898318],[113,210,73,0.10246279944274718],[113,210,74,0.09777013034316784],[113,210,75,0.09293206964435756],[113,210,76,0.08795250290039822],[113,210,77,0.08283778388298321],[113,210,78,0.07759629861433899],[113,210,79,0.0722380278840685],[113,211,64,0.14007018595614654],[113,211,65,0.13584080196933174],[113,211,66,0.13164394580370334],[113,211,67,0.12742452802699025],[113,211,68,0.12313754516285051],[113,211,69,0.1187573772102308],[113,211,70,0.11426565823669502],[113,211,71,0.10965017454456918],[113,211,72,0.10490410565334735],[113,211,73,0.10002528958640544],[113,211,74,0.09501551368156406],[113,211,75,0.0898798321063042],[113,211,76,0.08462591121466957],[113,211,77,0.07926340383478363],[113,211,78,0.07380335352525824],[113,211,79,0.06825762978410706],[113,212,64,0.14088789072520566],[113,212,65,0.1362874839216784],[113,212,66,0.13172681161266842],[113,212,67,0.12714764607408463],[113,212,68,0.12250234063721296],[113,212,69,0.11776517696056966],[113,212,70,0.11291918966321886],[113,212,71,0.10795466973222272],[113,212,72,0.10286806603403553],[113,212,73,0.09766094023607069],[113,212,74,0.09233897708268225],[113,212,75,0.08691105188537837],[113,212,76,0.08138835699631326],[113,212,77,0.07578358893800939],[113,212,78,0.070110197763076],[113,212,79,0.06438170011428643],[113,213,64,0.14176954078324464],[113,213,65,0.13679297703288665],[113,213,66,0.1318646808883536],[113,213,67,0.12692385088821903],[113,213,68,0.12192038609171507],[113,213,69,0.11682833428946994],[113,213,70,0.11163193511182247],[113,213,71,0.10632374327330346],[113,213,72,0.10090319921890437],[113,213,73,0.09537528225871646],[113,213,74,0.08974924883158351],[113,213,75,0.08403745840850549],[113,213,76,0.07825428940904777],[113,213,77,0.07241514736029811],[113,213,78,0.06653556738064409],[113,213,79,0.06063041291902322],[113,214,64,0.14269101668167247],[113,214,65,0.1373358039330441],[113,214,66,0.13203873172948716],[113,214,67,0.12673706249575123],[113,214,68,0.1213784833201948],[113,214,69,0.11593667708389487],[113,214,70,0.11039686968751303],[113,214,71,0.10475359424376837],[113,214,72,0.09900894504984127],[113,214,73,0.09317094267879786],[113,214,74,0.08725201348787821],[113,214,75,0.08126758666694958],[113,214,76,0.07523481176717133],[113,214,77,0.06917139945965042],[113,214,78,0.06309458807966133],[113,214,79,0.057020238313385124],[113,215,64,0.14362550401870128],[113,215,65,0.13789195794010312],[113,215,66,0.13222774141131552],[113,215,67,0.12656887311599682],[113,215,68,0.12086111716800578],[113,215,69,0.11507766886197861],[113,215,70,0.10920450454506256],[113,215,71,0.1032378138559551],[113,215,72,0.09718195646643195],[113,215,73,0.09104755771041327],[113,215,74,0.08484974700648974],[113,215,75,0.07860654276211029],[113,215,76,0.07233738722022055],[113,215,77,0.0660618344740235],[113,215,78,0.05979839463621535],[113,215,79,0.05356353690537143],[113,216,64,0.14454445155873444],[113,216,65,0.13843575936655783],[113,216,66,0.13240884376747364],[113,216,67,0.1263992076322141],[113,216,68,0.12035102010853703],[113,216,69,0.11423687826849427],[113,216,70,0.10804326254944913],[113,216,71,0.10176766943444594],[113,216,72,0.09541629517763683],[113,216,73,0.08900188492742521],[113,216,74,0.08254175170352862],[113,216,75,0.07605596942535506],[113,216,76,0.06956574391970631],[113,216,77,0.06309196555822207],[113,216,78,0.056653946892987604],[113,216,79,0.05026834837255409],[113,217,64,0.1454187180915215],[113,217,65,0.13894090104304344],[113,217,66,0.13255847650803415],[113,217,67,0.12620717525965552],[113,217,68,0.1198299297824022],[113,217,69,0.11339864354642312],[113,217,70,0.10690005095234387],[113,217,71,0.10033258729067114],[113,217,72,0.0937038278079763],[113,217,73,0.08702811705816657],[113,217,74,0.08032439348041706],[113,217,75,0.07361421384803526],[113,217,76,0.06691998192398],[113,217,77,0.060263385341556126],[113,217,78,0.05366404440721316],[113,217,79,0.04713837619679697],[113,218,64,0.14621991125775627],[113,218,65,0.13938168620265254],[113,218,66,0.13265352153939158],[113,218,67,0.12597211540714143],[113,218,68,0.11927954243439065],[113,218,69,0.11254693486211616],[113,218,70,0.1057610339051797],[113,218,71,0.09892083725823139],[113,218,72,0.09203482521851791],[113,218,73,0.08511840003932525],[113,218,74,0.0781915438707282],[113,218,75,0.07127670031162518],[113,218,76,0.06439688425255245],[113,218,77,0.05757402433540781],[113,218,78,0.05082754199850574],[113,218,79,0.044173170714058595],[113,219,64,0.14692192164985984],[113,219,65,0.13973446195791403],[113,219,66,0.13267264144574176],[113,219,67,0.1256748408288902],[113,219,68,0.11868266528995615],[113,219,69,0.11166641747472425],[113,219,70,0.10461260774891946],[113,219,71,0.09752042177658425],[113,219,72,0.09039876783423903],[113,219,73,0.08326355809982436],[113,219,74,0.07613522961459758],[113,219,75,0.06903651025152818],[113,219,76,0.06199043464698631],[113,219,77,0.055018614666761945],[113,219,78,0.04813976858756239],[113,219,79,0.04136851278204912],[113,220,64,0.1475026555570269],[113,220,65,0.13997925166972744],[113,220,66,0.13259781536612658],[113,220,67,0.1252990812445529],[113,220,68,0.11802457100147956],[113,220,69,0.11074371883634558],[113,220,70,0.10344258212362333],[113,220,71,0.09612017252065448],[113,220,72,0.08878535992569601],[113,220,73,0.08145402876768887],[113,220,74,0.07414649259271869],[113,220,75,0.06688517251932741],[113,220,76,0.059692544729729916],[113,220,77,0.05258936174990428],[113,220,78,0.04559315185362456],[113,220,79,0.03871700050491466],[113,221,64,0.14794596975965837],[113,221,65,0.14010158955148017],[113,221,66,0.1324160775526439],[113,221,67,0.12483313066485015],[113,221,68,0.11729455736199298],[113,221,69,0.10976890278486995],[113,221,70,0.10224157002442356],[113,221,71,0.0947110576651325],[113,221,72,0.08718575589139285],[113,221,73,0.07968101079795403],[113,221,74,0.07221646306283108],[113,221,75,0.06481366672400879],[113,221,76,0.05749399337182527],[113,221,77,0.050276826630699926],[113,221,78,0.04317805136223513],[113,221,79,0.03620884157800033],[113,222,64,0.14824381178732346],[113,222,65,0.14009456086937502],[113,222,66,0.1321214619217928],[113,222,67,0.1242717016951841],[113,222,68,0.1164877155278026],[113,222,69,0.10873715404406428],[113,222,70,0.10100458999181312],[113,222,71,0.09328770294200928],[113,222,72,0.0855940016650619],[113,222,73,0.07793782810492433],[113,222,74,0.07033764923348948],[113,222,75,0.06281364263027411],[113,222,76,0.05538558118263697],[113,222,77,0.048071021843539535],[113,222,78,0.04088380292272051],[113,222,79,0.03383285392456514],[113,223,64,0.14839856903285054],[113,223,65,0.1399610510881977],[113,223,66,0.1317171559086007],[113,223,67,0.12361799009677045],[113,223,68,0.11560691000819974],[113,223,69,0.10765067627182325],[113,223,70,0.09973288366008057],[113,223,71,0.09185012969512367],[113,223,72,0.0840086944261953],[113,223,73,0.07622151284451997],[113,223,74,0.06850544627987286],[113,223,75,0.06087885866863119],[113,223,76,0.053359503116845015],[113,223,77,0.04596272370748368],[113,223,78,0.038699977024337626],[113,223,79,0.031577677387602435],[113,224,64,0.14842563006022708],[113,224,65,0.13971620726748005],[113,224,66,0.13121786689928733],[113,224,67,0.12288595286121491],[113,224,68,0.11466497366716283],[113,224,69,0.10652080689457945],[113,224,70,0.09843595189507369],[113,224,71,0.09040571315292072],[113,224,72,0.08243486381927811],[113,224,73,0.07453461082868819],[113,224,74,0.06671986795101655],[113,224,75,0.059006842664044545],[113,224,76,0.05141094225245605],[113,224,77,0.043945004051851276],[113,224,78,0.03661785426767784],[113,224,79,0.029433199310148907],[113,225,64,0.14835616135249682],[113,225,65,0.13939011493311124],[113,225,66,0.1306524044495383],[113,225,67,0.12210280299686449],[113,225,68,0.11368712093543633],[113,225,69,0.10537035193041812],[113,225,70,0.097133812728033],[113,225,71,0.08897136412699887],[113,225,72,0.08088607788403507],[113,225,73,0.07288721246067119],[113,225,74,0.06498750393391067],[113,225,75,0.057200777914351006],[113,225,76,0.049539887825304184],[113,225,77,0.042014984399342245],[113,225,78,0.03463212075058156],[113,225,79,0.027392196883589508],[113,226,64,0.14824010261348403],[113,226,65,0.13903069352967037],[113,226,66,0.13006648138789206],[113,226,67,0.12131172412965978],[113,226,68,0.1127135823476372],[113,226,69,0.10423614393156759],[113,226,70,0.09585948423215657],[113,226,71,0.08757593729558602],[113,226,72,0.07938677686189471],[113,226,73,0.0712992123536787],[113,226,74,0.06332370612385971],[113,226,75,0.05547161774292645],[113,226,76,0.04775318060711512],[113,226,77,0.040175815643520955],[113,226,78,0.03274278638239129],[113,226,79,0.025452199162487886],[113,227,64,0.14814830527922235],[113,227,65,0.13870655181892974],[113,227,66,0.12952620799543968],[113,227,67,0.1205759853873235],[113,227,68,0.1118043639414652],[113,227,69,0.10317448004230402],[113,227,70,0.09466513260498653],[113,227,71,0.08626710793859135],[113,227,72,0.0779798770260955],[113,227,73,0.06980861338143601],[113,227,74,0.06176153769050619],[113,227,75,0.053847594945968386],[113,227,76,0.04607446927865978],[113,227,77,0.038446941175320624],[113,227,78,0.030965591259689826],[113,227,79,0.023625854303441426],[113,228,64,0.14815621303418292],[113,228,65,0.13849406141183135],[113,228,66,0.12910827260749252],[113,228,67,0.11997214731503678],[113,228,68,0.11103556437446695],[113,228,69,0.10226069886781125],[113,228,70,0.09362506097049789],[113,228,71,0.08511788253825402],[113,228,72,0.07673683576659701],[113,228,73,0.06848507711822961],[113,228,74,0.0603686226498524],[113,228,75,0.05239406036556224],[113,228,76,0.044566604710041736],[113,228,77,0.036888497795360034],[113,228,78,0.0293577614368489],[113,228,79,0.0219673035579467],[113,229,64,0.14831976944821051],[113,229,65,0.13845085712230523],[113,229,66,0.12887141000632268],[113,229,67,0.1195596278733524],[113,229,68,0.11046701123680695],[113,229,69,0.10155483242419903],[113,229,70,0.09279933752576582],[113,229,71,0.08418821035564344],[113,229,72,0.07571732350858675],[113,229,73,0.06738781794487422],[113,229,74,0.0592035171361006],[113,229,75,0.051168681294979645],[113,229,76,0.04328610669357105],[113,229,77,0.03555557455077184],[113,229,78,0.027972653448010934],[113,229,79,0.020527858713586027],[113,230,64,0.14867461277503347],[113,230,65,0.13861383438008254],[113,230,66,0.12885333927039466],[113,230,67,0.1193766328793447],[113,230,68,0.11013717033641075],[113,230,69,0.10109545837129194],[113,230,70,0.09222655385132211],[113,230,71,0.08351662625512417],[113,230,72,0.07495975705295607],[113,230,73,0.06655506902563785],[113,230,74,0.05830419142491015],[113,230,75,0.05020906636602861],[113,230,76,0.04227010132277135],[113,230,77,0.03448467207012025],[113,230,78,0.026845979897229397],[113,230,79,0.01934226639467297],[113,231,64,0.1492387604059967],[113,231,65,0.13900183382379094],[113,231,66,0.12907344139882782],[113,231,67,0.1194428330013749],[113,231,68,0.11006583176093143],[113,231,69,0.1009024001451353],[113,231,70,0.09192653954050162],[113,231,71,0.08312297603023097],[113,231,72,0.0744840279645276],[113,231,73,0.06600680272127955],[113,231,74,0.057690728393649846],[113,231,75,0.049535425629925016],[113,231,76,0.04153892433175569],[113,231,77,0.03369622939401264],[113,231,78,0.025998239149449626],[113,231,79,0.018431019665920017],[113,232,64,0.1500151487254408],[113,232,65,0.1396181801960851],[113,232,66,0.12953529186970053],[113,232,67,0.11976189751028872],[113,232,68,0.11025665579493268],[113,232,69,0.10097929182927759],[113,232,70,0.09190294861377868],[113,232,71,0.08301102296976572],[113,232,72,0.07429412419152477],[113,232,73,0.06574735877906762],[113,232,74,0.05736794678197819],[113,232,75,0.049153174777999756],[113,232,76,0.041098689995936806],[113,232,77,0.0331971395752439],[113,232,78,0.025437158440976534],[113,232,79,0.017802708764174627],[113,233,64,0.1509940266754268],[113,233,65,0.14045307349362846],[113,233,66,0.1302290457935693],[113,233,67,0.12032388218323284],[113,233,68,0.11069957582916343],[113,233,69,0.10131600464831404],[113,233,70,0.09214571435870061],[113,233,71,0.08317093208006757],[113,233,72,0.07438064113556264],[113,233,73,0.0657679763613799],[113,233,74,0.05732794520704355],[113,233,75,0.049055479410605236],[113,233,76,0.04094382152794438],[113,233,77,0.03298325008779903],[113,233,78,0.025160146640695456],[113,233,79,0.017456407472087737],[113,234,64,0.15215520144309513],[113,234,65,0.14148583083857164],[113,234,66,0.13113367420051836],[113,234,67,0.12110746998101293],[113,234,68,0.11137305697815027],[113,234,69,0.10189093391475547],[113,234,70,0.0926333715651321],[113,234,71,0.0835816310975641],[113,234,72,0.07472318149639258],[113,234,73,0.0660492294512938],[113,234,74,0.05755256670696472],[113,234,75,0.049225739380239456],[113,234,76,0.04105954325951075],[113,234,77,0.03304184860741088],[113,234,78,0.025156757498446956],[113,234,79,0.01738409624013142],[113,235,64,0.15347013447221902],[113,235,65,0.14268697733031627],[113,235,66,0.13221904979506516],[113,235,67,0.12208206291862002],[113,235,68,0.11224620892237151],[113,235,69,0.10267314506075574],[113,235,70,0.0933352449259799],[113,235,71,0.08421304722613346],[113,235,72,0.07529264301633257],[113,235,73,0.06656336497520096],[113,235,74,0.058015783389725316],[113,235,75,0.04964001304134009],[113,235,76,0.04142433471076607],[113,235,77,0.03335413454271026],[113,235,78,0.025411164040413506],[113,235,79,0.01757312299543338],[113,236,64,0.15490388579463008],[113,236,65,0.14402018393431384],[113,236,66,0.1334478803147693],[113,236,67,0.1232097233522049],[113,236,68,0.11328075129536554],[113,236,69,0.1036243771894982],[113,236,70,0.09421350217518197],[113,236,71,0.08502821833333213],[113,236,72,0.07605339304671885],[113,236,73,0.0672765427780767],[113,236,74,0.05868600055901042],[113,236,75,0.05026938103329851],[113,236,76,0.04201234644331548],[113,236,77,0.03389767649306777],[113,236,78,0.025904644572038494],[113,236,79,0.01800870238170594],[113,237,64,0.15641688697752995],[113,237,65,0.14544403231714859],[113,237,66,0.13477746905631316],[113,237,67,0.12444694393289062],[113,237,68,0.11443281058747361],[113,237,69,0.10470088288351423],[113,237,70,0.09522505051704687],[113,237,71,0.08598525703213605],[113,237,72,0.07696530829370778],[113,237,73,0.06815095579809599],[113,237,74,0.059528258710825836],[113,237,75,0.051082228093324],[113,237,76,0.042795756349115865],[113,237,77,0.034648834489381275],[113,237,78,0.026618059393625583],[113,237,79,0.01867643282453329],[113,238,64,0.15796289018845805],[113,238,65,0.1469098571443466],[113,238,66,0.13615746121610545],[113,238,67,0.12574231845879455],[113,238,68,0.11565054017041716],[113,238,69,0.10585102136233668],[113,238,70,0.09631912535144063],[113,238,71,0.087034955278918],[113,238,72,0.07798141298667234],[113,238,73,0.0691425165370145],[113,238,74,0.060501979827863955],[113,238,75,0.05204205735341074],[113,238,76,0.04374265675561701],[113,238,77,0.03558072140867498],[113,238,78,0.027529884882548858],[113,238,79,0.019560398743628846],[113,239,64,0.15948845056425934],[113,239,65,0.14836198587691563],[113,239,66,0.1375306735676685],[113,239,67,0.12703778049345565],[113,239,68,0.11687557764341354],[113,239,69,0.10701673889903676],[113,239,70,0.0974385992697601],[113,239,71,0.08812173476792634],[113,239,72,0.07904829636981146],[113,239,73,0.07020058519353271],[113,239,74,0.06155987188049443],[113,239,75,0.053105462792464114],[113,239,76,0.04481401526064974],[113,239,77,0.03665910374964507],[113,239,78,0.028611038433649608],[113,239,79,0.02063693732530425],[113,240,64,0.16095082454766252],[113,240,65,0.14975848812373754],[113,240,66,0.1388560730311966],[113,240,67,0.12829311919710537],[113,240,68,0.11806836201611492],[113,240,69,0.10815893170081943],[113,240,70,0.0985446400503831],[113,240,71,0.08920687726966234],[113,240,72,0.08012724092645078],[113,240,73,0.07128638780630564],[113,240,74,0.06266311116541384],[113,240,75,0.05423364553680779],[113,240,76,0.04597120090005589],[113,240,77,0.03784572768261537],[113,240,78,0.029823913727908914],[113,240,79,0.02186941404102782],[113,241,64,0.16231824619873197],[113,241,65,0.15106879883370564],[113,241,66,0.14010417188996427],[113,241,67,0.12947962961539033],[113,241,68,0.1192005560593895],[113,241,69,0.10924916874956382],[113,241,70,0.09960825513885335],[113,241,71,0.09026038780087785],[113,241,72,0.08118686225141392],[113,241,73,0.07236683878695148],[113,241,74,0.06377669034296728],[113,241,75,0.05538955805988975],[113,241,76,0.04717511593128553],[113,241,77,0.03909954559958563],[113,241,78,0.031125722065107303],[113,241,79,0.02321361078412944],[113,242,64,0.16356787079103352],[113,242,65,0.15227082033259406],[113,242,66,0.1412534623715532],[113,242,67,0.13057608033608842],[113,242,68,0.12025076356100149],[113,242,69,0.11026538095566997],[113,242,70,0.10060617266148889],[113,242,71,0.09125727785048662],[113,242,72,0.08219998878365928],[113,242,73,0.07341218978286891],[113,242,74,0.06486798261873031],[113,242,75,0.05653749953332242],[113,242,76,0.048386904835404636],[113,242,77,0.040378585729906144],[113,242,78,0.032471532778080694],[113,242,79,0.024621910129418195],[113,243,64,0.16468490581338424],[113,243,65,0.15335011466341952],[113,243,66,0.14228967964686742],[113,243,67,0.13156806165561624],[113,243,68,0.12120398090468608],[113,243,69,0.11119143604622876],[113,243,70,0.10152055989207903],[113,243,71,0.09217744698204933],[113,243,72,0.0831437244730846],[113,243,73,0.07439628895362058],[113,243,74,0.06590721019235374],[113,243,75,0.057643802578107105],[113,243,76,0.049568864758553],[113,243,77,0.04164108774294353],[113,243,78,0.03381563150269106],[113,243,79,0.025075901914525408],[113,244,64,0.1656617137934278],[113,244,65,0.15429906414699898],[113,244,66,0.1432050291996037],[113,244,67,0.1324472930553266],[113,244,68,0.12205100161755593],[113,244,69,0.11201665936094418],[113,244,70,0.10233868034716473],[113,244,71,0.09300549599562212],[113,244,72,0.08399943650848174],[113,244,73,0.07529675967922285],[113,244,74,0.06686782761695911],[113,244,75,0.058677431696709526],[113,244,76,0.05068526582851411],[113,244,77,0.042846547928274956],[113,244,78,0.03511278927528576],[113,244,79,0.02344833687077784],[113,245,64,0.16649688642774174],[113,245,65,0.15511599958934819],[113,245,66,0.14399737793115625],[113,245,67,0.13321088927015148],[113,245,68,0.12278777306388912],[113,245,69,0.11273529961695809],[113,245,70,0.10305248845053777],[113,245,71,0.09373047047305576],[113,245,72,0.08475266682462455],[113,245,73,0.07609509732798088],[113,245,74,0.0677268186263828],[113,245,75,0.059610491896176156],[113,245,76,0.05170307983487202],[113,245,77,0.04395667244687898],[113,245,78,0.033820738029381577],[113,245,79,0.021943790906601354],[113,246,64,0.16719428961551966],[113,246,65,0.1558042956695012],[113,246,66,0.1446694084664149],[113,246,67,0.13386058432494152],[113,246,68,0.12341470454677217],[113,246,69,0.11334593877553939],[113,246,70,0.10365816076523263],[113,246,71,0.09434553357167891],[113,246,72,0.08539296612795362],[113,246,73,0.07677668271128608],[113,246,74,0.06846490496367096],[113,246,75,0.060418645963306664],[113,246,76,0.05259261568574962],[113,246,77,0.04456577269119145],[113,246,78,0.03259612288434123],[113,246,79,0.020586477042650746],[113,247,64,0.16776207912003957],[113,247,65,0.15637143316352803],[113,247,66,0.14522773624204974],[113,247,67,0.1344019130228726],[113,247,68,0.12393592617938905],[113,247,69,0.11385084523293369],[113,247,70,0.10415556286693436],[113,247,71,0.09484756699033077],[113,247,72,0.08591364921982117],[113,247,73,0.07733071087002971],[113,247,74,0.06906666573673717],[113,247,75,0.06108143881869478],[113,247,76,0.053328059991670035],[113,247,77,0.04361256043570347],[113,247,78,0.03152499423845538],[113,247,79,0.01939823645011067],[113,248,64,0.16821168672421344],[113,248,65,0.15682802779819147],[113,248,66,0.1456819890909753],[113,248,67,0.13484334949592958],[113,248,68,0.12435849800552017],[113,248,69,0.11425526966527705],[113,248,70,0.10454765102725377],[113,248,71,0.0952366991099529],[113,248,72,0.0863114704549213],[113,248,73,0.0777500338731778],[113,248,74,0.06952056583733275],[113,248,75,0.061582527358520545],[113,248,76,0.05388792107899264],[113,248,77,0.04280284798750345],[113,248,78,0.030620240725550377],[113,248,79,0.018397384583606135],[113,249,64,0.1685567769049993],[113,249,65,0.1571868256823442],[113,249,66,0.14604384918635097],[113,249,67,0.13519540257147353],[113,249,68,0.12469156898588464],[113,249,69,0.11456668298528061],[113,249,70,0.1048398079908121],[113,249,71,0.09551575941061055],[113,249,72,0.0865862182526837],[113,249,73,0.07803091636604237],[113,249,74,0.06981889198988069],[113,249,75,0.061909814193776225],[113,249,76,0.05425537470406307],[113,249,77,0.04214030481748152],[113,249,78,0.029890509318550123],[113,249,79,0.017597654175950172],[113,250,64,0.16881217422734066],[113,250,65,0.15746166543691428],[113,250,66,0.14632605737690388],[113,250,67,0.13546966787252418],[113,250,68,0.12494548562474532],[113,250,69,0.11479395601804522],[113,250,70,0.10503911226832542],[113,250,71,0.09568965838984454],[113,250,72,0.08674022768308928],[113,250,73,0.0781727026859966],[113,250,74,0.06995759504953714],[113,250,75,0.06205548371843031],[113,250,76,0.053788002970065064],[113,250,77,0.04162425696695256],[113,250,78,0.029339482533514212],[113,250,79,0.01700723722427122],[113,251,64,0.1689927618513216],[113,251,65,0.15766640733501716],[113,251,66,0.1465413801324656],[113,251,67,0.13567783675273712],[113,251,68,0.1251308501899845],[113,251,69,0.11494648067525022],[113,251,70,0.10515354052947201],[113,251,71,0.0957646923543869],[113,251,72,0.08677781027652356],[113,251,73,0.07817739446790048],[113,251,74,0.06993603724518924],[113,251,75,0.06201593898203958],[113,251,76,0.053406785637295666],[113,251,77,0.041249299077284085],[113,251,78,0.028965259392731844],[113,251,79,0.016627928211566653],[113,252,64,0.16911235175897146],[113,252,65,0.1578138299750002],[113,252,66,0.1467015395271956],[113,252,67,0.13583066237299848],[113,252,68,0.12525752868261367],[113,252,69,0.1150332326042715],[113,252,70,0.10519110286757184],[113,252,71,0.09574777263199986],[113,252,72,0.08670460036346941],[113,252,73,0.07804913779394874],[113,252,74,0.06975664316669905],[113,252,75,0.06179163791225224],[113,252,76,0.053117756374089775],[113,252,77,0.04100501290609837],[113,252,78,0.0287598422984547],[113,252,79,0.016454370909322388],[113,253,64,0.16918252753890262],[113,253,65,0.1579144952405013],[113,253,66,0.14681610691748026],[113,253,67,0.13593688345473545],[113,253,68,0.12533360893826553],[113,253,69,0.1150617755115266],[113,253,70,0.10515891092326876],[113,253,71,0.09564557895294007],[113,253,72,0.08652681743469004],[113,253,73,0.07779361910383684],[113,253,74,0.06942445342744469],[113,253,75,0.06138682752944909],[113,253,76,0.05290443401693894],[113,253,77,0.04087579425237907],[113,253,78,0.028708732003610536],[113,253,79,0.016473411192040748],[113,254,64,0.16921146081968558],[113,254,65,0.15797558255491334],[113,254,66,0.14689136122414198],[113,254,67,0.13600210649774608],[113,254,68,0.125364309496082],[113,254,69,0.11503720761018435],[113,254,70,0.10506217909928008],[113,254,71,0.09546363698428015],[113,254,72,0.08625044422917039],[113,254,73,0.0774173692742655],[113,254,74,0.0689465800963917],[113,254,75,0.06080917492280582],[113,254,76,0.05274660895368596],[113,254,77,0.04084079017463706],[113,254,78,0.028790632878848883],[113,254,79,0.016663558361995786],[113,255,64,0.16920270271739377],[113,255,65,0.157999693713963],[113,255,66,0.14692911300543013],[113,255,67,0.13602764752883595],[113,255,68,0.12535084015096795],[113,255,69,0.11496105092291474],[113,255,70,0.10490315937470225],[113,255,71,0.09520532026709469],[113,255,72,0.08588032050770072],[113,255,73,0.07692697550422825],[113,255,74,0.06833156319101508],[113,255,75,0.060069293916814856],[113,255,76,0.052105814342477554],[113,255,77,0.04087394832043935],[113,255,78,0.028977270664065802],[113,255,79,0.016994557529946018],[113,256,64,0.16888884250003036],[113,256,65,0.1579836298799776],[113,256,66,0.14692549580894304],[113,256,67,0.13600933475258242],[113,256,68,0.12528921541442478],[113,256,69,0.11483008448180135],[113,256,70,0.10468001053674796],[113,256,71,0.09487077710791587],[113,256,72,0.08541915275636583],[113,256,73,0.07632820090620897],[113,256,74,0.06758862775543484],[113,256,75,0.059180166551922736],[113,256,76,0.051072996477561125],[113,256,77,0.0409441800888463],[113,256,78,0.029233324854013722],[113,256,79,0.017427075621889925],[113,257,64,0.16733671772367942],[113,257,65,0.15791715694452313],[113,257,66,0.14686974007558068],[113,257,67,0.1359362865029051],[113,257,68,0.12516903449495476],[113,257,69,0.1146351343713391],[113,257,70,0.10438561426236183],[113,257,71,0.09445579451670502],[113,257,72,0.08486645175974378],[113,257,73,0.07562502378593099],[113,257,74,0.06672685374531193],[113,257,75,0.05815647203020625],[113,257,76,0.049888914221723424],[113,257,77,0.04101565420486546],[113,257,78,0.02951649147596575],[113,257,79,0.01791251583241984],[113,258,64,0.1655845068911011],[113,258,65,0.15720192727508384],[113,258,66,0.14674300769047313],[113,258,67,0.13578984351638745],[113,258,68,0.12497249848493569],[113,258,69,0.1143601613587591],[113,258,70,0.10400671783808617],[113,258,71,0.09395098039095298],[113,258,72,0.08421773891266128],[113,258,73,0.0748188535395964],[113,258,74,0.06575438821207029],[113,258,75,0.05701378352267083],[113,258,76,0.04857706733537909],[113,258,77,0.04041610161778897],[113,258,78,0.02977850876957992],[113,258,79,0.018394084672726928],[113,259,64,0.16365933632764826],[113,259,65,0.1552586989526584],[113,259,66,0.14652039034350686],[113,259,67,0.1355477417893623],[113,259,68,0.12468053647962327],[113,259,69,0.1139898439392306],[113,259,70,0.1035322696456781],[113,259,71,0.09335000199625879],[113,259,72,0.08347175009624859],[113,259,73,0.07391372474263226],[113,259,74,0.06468066133230917],[113,259,75,0.05576688336179697],[113,259,76,0.04715740512981416],[113,259,77,0.038829072206097034],[113,259,78,0.029983052321091788],[113,259,79,0.01883125001916342],[113,260,64,0.16158995613497554],[113,260,65,0.15317335144392427],[113,260,66,0.14472005038162677],[113,260,67,0.13519297897252483],[113,260,68,0.12428108334087971],[113,260,69,0.11351720619412958],[113,260,70,0.10296032406324256],[113,260,71,0.0926556926426279],[113,260,72,0.08263567443002301],[113,260,73,0.0729206099722299],[113,260,74,0.06351973157705366],[113,260,75,0.0544321182872029],[113,260,76,0.04564769085292471],[113,260,77,0.03714824538803915],[113,260,78,0.028908524352445442],[113,260,79,0.019201077839566923],[113,261,64,0.15939897415995108],[113,261,65,0.15096512192504016],[113,261,66,0.14251842227981437],[113,261,67,0.13407016339108024],[113,261,68,0.12376697242886908],[113,261,69,0.11293958077455223],[113,261,70,0.1022927341771931],[113,261,71,0.0918742833674364],[113,261,72,0.08171983069852948],[113,261,73,0.07185349536719964],[113,261,74,0.06228872073147712],[113,261,75,0.05302912264669214],[113,261,76,0.044069377680097194],[113,261,77,0.03539615000993633],[113,261,78,0.026989055769899593],[113,261,79,0.018821663562235375],[113,262,64,0.15710315700399216],[113,262,65,0.14864798408386862],[113,262,66,0.14020232125815638],[113,262,67,0.13178515833891502],[113,262,68,0.12313529076691453],[113,262,69,0.112257859184298],[113,262,70,0.10153430152981834],[113,262,71,0.09101446250564244],[113,262,72,0.08073665156240863],[113,262,73,0.0707283073855024],[113,262,74,0.06100670298860011],[113,262,75,0.05157969045653192],[113,262,76,0.042446484318908406],[113,262,77,0.033598482480752624],[113,262,78,0.025020123590100394],[113,262,79,0.016689779682647794],[113,263,64,0.15471365229566053],[113,263,65,0.14623083096705722],[113,263,66,0.13777811196398396],[113,263,67,0.129382124653755],[113,263,68,0.1210129809880061],[113,263,69,0.11147631718071346],[113,263,70,0.10069253827670141],[113,263,71,0.09008704341018031],[113,263,72,0.07970022582918997],[113,263,73,0.06956229980572287],[113,263,74,0.05969390896375096],[113,263,75,0.050106771615803576],[113,263,76,0.04080436220695476],[113,263,77,0.03178262791153329],[113,263,78,0.023030739382401133],[113,263,79,0.014531874612664177],[113,264,64,0.15223585266802195],[113,264,65,0.14371729969652955],[113,264,66,0.13524751112784267],[113,264,67,0.12686057679634027],[113,264,68,0.11853097086614718],[113,264,69,0.11019400320864722],[113,264,70,0.09977775076693751],[113,264,71,0.08910493933633451],[113,264,72,0.07862613162841112],[113,264,73,0.06837371357954848],[113,264,74,0.05837118297049863],[113,264,75,0.048633700555002754],[113,264,76,0.03916867340938031],[113,264,77,0.029976369665591075],[113,264,78,0.021050563748000687],[113,264,79,0.012379211196347922],[113,265,64,0.14966889835006064],[113,265,65,0.1411052350990898],[113,265,66,0.13260702197944],[113,265,67,0.12421550433008627],[113,265,68,0.11590991523571381],[113,265,69,0.10762809571275536],[113,265,70,0.09880344684770552],[113,265,71,0.08808344773300986],[113,265,72,0.077531562708653],[113,265,73,0.06718171176210068],[113,265,74,0.05705969582888458],[113,265,75,0.04718365966750781],[113,265,76,0.03756458167443144],[113,265,77,0.028206789916605905],[113,265,78,0.019108503622413796],[113,265,79,0.01466979752956785],[113,266,64,0.1470048158698154],[113,266,65,0.1383857898705691],[113,266,66,0.12984700863748536],[113,266,67,0.12143644422770189],[113,266,68,0.1131384204134907],[113,266,69,0.10489418300627566],[113,266,70,0.09665297861628935],[113,266,71,0.08704084571681972],[113,266,72,0.07643574962534222],[113,266,73,0.06600659131514444],[113,266,74,0.05578091506012542],[113,266,75,0.0457793794689261],[113,266,76,0.03601615871239634],[113,266,77,0.026499363426898386],[113,266,78,0.02197316906934181],[113,266,79,0.019574379694352228],[113,267,64,0.1442272909155023],[113,267,65,0.13554215943360387],[113,267,66,0.12695040875743085],[113,267,67,0.11850619737492293],[113,267,68,0.11019919476683254],[113,267,69,0.1019748846973546],[113,267,70,0.09378557897424522],[113,267,71,0.08559125503265341],[113,267,72,0.0753606771737727],[113,267,73,0.06487027317951723],[113,267,74,0.05455683393715183],[113,267,75,0.044443077056257094],[113,267,76,0.03454600739955703],[113,267,77,0.03017501660876092],[113,267,78,0.027448061318828303],[113,267,79,0.024745078492957755],[113,268,64,0.14131007391179248],[113,268,65,0.13254795014783594],[113,268,66,0.12389108320570094],[113,268,67,0.11539918814188146],[113,268,68,0.10706745343851264],[113,268,69,0.09884636847714372],[113,268,70,0.09069205039969461],[113,268,71,0.08256710014079802],[113,268,72,0.07433209904149057],[113,268,73,0.06379707164734126],[113,268,74,0.053410460507213715],[113,268,75,0.043196634096101125],[113,268,76,0.03925056220582406],[113,268,77,0.036220762201887566],[113,268,78,0.03319829849920808],[113,268,79,0.03018807393717016],[113,269,64,0.13821501734233754],[113,269,65,0.12936517999385239],[113,269,66,0.12063180197648354],[113,269,67,0.11207946632336424],[113,269,68,0.10370897363320895],[113,269,69,0.09547649994662039],[113,269,70,0.08734261677050809],[113,269,71,0.07927314389736628],[113,269,72,0.07123890511248326],[113,269,73,0.06281474373046389],[113,269,74,0.05237653962151195],[113,269,75,0.04913443238182945],[113,269,76,0.045851397315782555],[113,269,77,0.042543811788006466],[113,269,78,0.0392245061791563],[113,269,79,0.03590290837363365],[113,270,64,0.1348897442867409],[113,270,65,0.12594191127768548],[113,270,66,0.11712186597776394],[113,270,67,0.1084983511434342],[113,270,68,0.1000778002106558],[113,270,69,0.0918226530830325],[113,270,70,0.08369846929181099],[113,270,71,0.07567475968802644],[113,270,72,0.06772477496454006],[113,270,73,0.06098338117100155],[113,270,74,0.059736759276444236],[113,270,75,0.056268101732830894],[113,270,76,0.05273015861028041],[113,270,77,0.0491423865135642],[113,270,78,0.04552150889608206],[113,270,79,0.04188155062562378],[113,271,64,0.13129728058035195],[113,271,65,0.12224200978309319],[113,271,66,0.11332667808587053],[113,271,67,0.1046234672095469],[113,271,68,0.09614438294733302],[113,271,69,0.08785858219356665],[113,271,70,0.07973701568734061],[113,271,71,0.07175322466461383],[113,271,72,0.06640213098433378],[113,271,73,0.06580849593968213],[113,271,74,0.06508569740481261],[113,271,75,0.0636733904833845],[113,271,76,0.059877291701055574],[113,271,77,0.05600421733116097],[113,271,78,0.05207486763707106],[113,271,79,0.04810799770641414],[113,272,64,0.12751369028295584],[113,272,65,0.11834326470716483],[113,272,66,0.10932529041175043],[113,272,67,0.10053454552937703],[113,272,68,0.09198839409023868],[113,272,69,0.08366300300135618],[113,272,70,0.07553499886432402],[113,272,71,0.07166500709989239],[113,272,72,0.07110481901115881],[113,272,73,0.07047945571247327],[113,272,74,0.06976797181806818],[113,272,75,0.06895034703501993],[113,272,76,0.0672412804497979],[113,272,77,0.06308686413227665],[113,272,78,0.058851871484719806],[113,272,79,0.05455975656208339],[113,273,64,0.12363498295247925],[113,273,65,0.11434381362607929],[113,273,66,0.10521729875683378],[113,273,67,0.0963318540680392],[113,273,68,0.087709831030049],[113,273,69,0.07933453033077119],[113,273,70,0.07702557514978567],[113,273,71,0.07637953964032139],[113,273,72,0.07573018038739202],[113,273,73,0.0750575191406425],[113,273,74,0.0743412701644307],[113,273,75,0.07356089247447758],[113,273,76,0.07269569557515912],[113,273,77,0.07033839634852576],[113,273,78,0.06581199077378994],[113,273,79,0.06120817423633977],[113,274,64,0.11974607348282465],[113,274,65,0.11033088251682847],[113,274,66,0.10109168621046317],[113,274,67,0.09210550714461943],[113,274,68,0.08363797000374151],[113,274,69,0.08273023702448244],[113,274,70,0.08188808530637427],[113,274,71,0.08109672636886028],[113,274,72,0.08033985607840134],[113,274,73,0.07959962985594629],[113,274,74,0.07885670323061607],[113,274,75,0.07809033762145141],[113,274,76,0.0772785711242809],[113,274,77,0.07639845398040385],[113,274,78,0.07291043774428935],[113,274,79,0.06801857576628118],[113,275,64,0.11592162499610376],[113,275,65,0.10638156092691368],[113,275,66,0.09702752011028867],[113,275,67,0.09022096063920429],[113,275,68,0.08899321193588311],[113,275,69,0.0878650593537949],[113,275,70,0.08682897179394891],[113,275,71,0.08587481865022609],[113,275,72,0.08498978993564504],[113,275,73,0.08415839282423208],[113,275,74,0.08336252455383042],[113,275,75,0.0825816215073219],[113,275,76,0.08179288416611623],[113,275,77,0.08097157751137875],[113,275,78,0.08009140633636054],[113,275,79,0.07495077340609867],[113,276,64,0.11222671128179999],[113,276,65,0.10256339445091305],[113,276,66,0.0975655094692931],[113,276,67,0.09597656925560766],[113,276,68,0.09450190439874438],[113,276,69,0.09314365723324132],[113,276,70,0.09189992108675406],[113,276,71,0.09076515828951705],[113,276,72,0.08973012115750852],[113,276,73,0.08878185952338237],[113,276,74,0.08790381472833475],[113,276,75,0.0870759998420482],[113,276,76,0.08627526573665992],[113,276,77,0.08547565250541117],[113,276,78,0.08464882558844905],[113,276,79,0.08195977358404553],[113,277,64,0.10871729700218216],[113,277,65,0.10570882312152101],[113,277,66,0.10377650202018582],[113,277,67,0.10193036240571424],[113,277,68,0.10020502368819398],[113,277,69,0.09860866984780765],[113,277,70,0.0971446926486443],[113,277,71,0.09581199166671053],[113,277,72,0.09460488597420198],[113,277,73,0.0935131213535666],[113,277,74,0.09252197293706123],[113,277,75,0.09161244300505937],[113,277,76,0.09076155351919396],[113,277,77,0.08994273281569791],[113,277,78,0.08912629574135447],[113,277,79,0.0882800163806881],[113,278,64,0.11460862287112945],[113,278,65,0.11240087474928681],[113,278,66,0.11021275972641192],[113,278,67,0.10811186886515564],[113,278,68,0.10613441847182818],[113,278,69,0.1042939967445197],[113,278,70,0.10259885746039579],[113,278,71,0.10105209335631922],[113,278,72,0.09965152800707296],[113,278,73,0.09838971087950853],[113,278,74,0.0972540154570149],[113,278,75,0.09622684015191257],[113,278,76,0.09528591155215897],[113,278,77,0.09440468938437066],[113,278,78,0.09355287241904613],[113,278,79,0.09269700439750454],[113,279,64,0.1217855292228258],[113,279,65,0.11932780250437955],[113,279,66,0.11689186839953333],[113,279,67,0.11454113276768497],[113,279,68,0.11231258263453656],[113,279,69,0.11022446037404444],[113,279,70,0.1082893461623447],[113,279,71,0.1065141987304359],[113,279,72,0.10490021693602436],[113,279,73,0.10344281067543633],[113,279,74,0.10213168104575848],[113,279,75,0.10095100947858017],[113,279,76,0.09987975538363927],[113,279,77,0.09889206166466384],[113,279,78,0.09795776730224945],[113,279,79,0.09704302604127393],[113,280,64,0.12919038408467193],[113,280,65,0.1264952247791538],[113,280,66,0.12382170887566243],[113,280,67,0.12122839989532803],[113,280,68,0.11875223815690832],[113,280,69,0.11641527826200108],[113,280,70,0.11423380636511525],[113,280,71,0.11221824521805457],[113,280,72,0.11037297527126114],[113,280,73,0.10869626969364819],[113,280,74,0.10718034325430087],[113,280,75,0.10581151481117612],[113,280,76,0.10457048295941748],[113,280,77,0.10343271420648635],[113,280,78,0.1023689428645484],[113,280,79,0.10134578168406773],[113,281,64,0.1368170065525887],[113,281,65,0.13389891734845943],[113,281,66,0.131000046225397],[113,281,67,0.12817361376887024],[113,281,68,0.125455727543726],[113,281,69,0.12287134442415289],[113,281,70,0.12043976884616331],[113,281,71,0.11817442204669766],[113,281,72,0.11608261316666144],[113,281,73,0.11416542720655214],[113,281,74,0.1124177298285402],[113,281,75,0.11082828879385667],[113,281,76,0.10938001162490743],[113,281,77,0.10805029888907675],[113,281,78,0.10681151231727268],[113,281,79,0.10563155679656591],[113,282,64,0.14464928123356116],[113,282,65,0.1415242963600018],[113,282,66,0.13841392850410314],[113,282,67,0.13536572114429649],[113,282,68,0.13241421548621812],[113,282,69,0.12958631979512258],[113,282,70,0.12690362249387174],[113,282,71,0.12438202842457621],[113,282,72,0.12203147133226469],[113,282,73,0.11985574448017505],[113,282,74,0.11785244945758767],[113,282,75,0.11601306303208288],[113,282,76,0.11432312169435269],[113,282,77,0.1127625233466131],[113,282,78,0.1113059453968436],[113,282,79,0.10992337834216795],[113,283,64,0.1526605355229816],[113,283,65,0.1493457110487846],[113,283,66,0.14603889474516743],[113,283,67,0.14278178667651983],[113,283,68,0.13960669958704394],[113,283,69,0.13654153157453774],[113,283,70,0.13360939798368932],[113,283,71,0.13082814023246056],[113,283,72,0.12820997220235955],[113,283,73,0.12576124442418182],[113,283,74,0.12348232620253687],[113,283,75,0.1213676056121216],[113,283,76,0.11940560709320494],[113,283,77,0.11757922617448908],[113,283,78,0.11586608066000881],[113,283,79,0.1142389774346295],[113,284,64,0.16081272816971057],[113,284,65,0.15732554597992957],[113,284,66,0.15383799204245038],[113,284,67,0.15038591664557294],[113,284,68,0.1469988301002808],[113,284,69,0.1437046815066607],[113,284,70,0.14052736027139295],[113,284,71,0.1374860853832058],[113,284,72,0.13459497959250855],[113,284,73,0.13186275952842305],[113,284,74,0.1292925419925324],[113,284,75,0.12688176645957863],[113,284,76,0.12462223361056338],[113,284,77,0.12250025952450953],[113,284,78,0.12049694496309823],[113,284,79,0.11858855899907442],[113,285,64,0.16905544903212333],[113,285,65,0.16541313275518932],[113,285,66,0.16176060169026513],[113,285,67,0.15812799175258335],[113,285,68,0.1545415387401248],[113,285,69,0.1510283631997521],[113,285,70,0.14761241006711534],[113,285,71,0.1443137280736071],[113,285,72,0.14114796713369668],[113,285,73,0.13812598843910606],[113,285,74,0.13525358760652165],[113,285,75,0.13253133102009063],[113,285,76,0.12995450530814712],[113,285,77,0.1275131796966582],[113,285,78,0.12519238079128103],[113,285,79,0.12297237915720986],[113,286,64,0.17732473004541252],[113,286,65,0.17354347122748803],[113,286,66,0.16974107444904032],[113,286,67,0.16594220908256957],[113,286,68,0.16216947669090334],[113,286,69,0.15844838865893485],[113,286,70,0.15480229450960611],[113,286,71,0.15125156219723085],[113,286,72,0.1478129958039099],[113,286,73,0.1444993615480985],[113,286,74,0.14131902256807216],[113,286,75,0.13827568274328766],[113,286,76,0.13536823961975103],[113,286,77,0.13259074631264922],[113,286,78,0.1299324820720922],[113,286,79,0.12737813101730402],[113,287,64,0.185541667514676],[113,287,65,0.18163576035369344],[113,287,66,0.17769717508128627],[113,287,67,0.17374543339725884],[113,287,68,0.16979926200615086],[113,287,69,0.16588192424999595],[113,287,70,0.16201562729208172],[113,287,71,0.1582206142068678],[113,287,72,0.15451450088562083],[113,287,73,0.1509117159654211],[113,287,74,0.14742304436589387],[113,287,75,0.14405527482555572],[113,287,76,0.1408109516392597],[113,287,77,0.13768823061093485],[113,287,78,0.13468083905298978],[113,287,79,0.13177813948674408],[113,288,64,0.19361085591949018],[113,288,65,0.18868708079308866],[113,288,66,0.18300144956768383],[113,288,67,0.17827388808434713],[113,288,68,0.17450907789687747],[113,288,69,0.17168181420881304],[113,288,70,0.16914971849865232],[113,288,71,0.1651201557109624],[113,288,72,0.16115488866154806],[113,288,73,0.1572697802173242],[113,288,74,0.1534778673738872],[113,288,75,0.14978891161765814],[113,288,76,0.14620904803577633],[113,288,77,0.14274053333394943],[113,288,78,0.13938159274516662],[113,288,79,0.13612636563957783],[113,289,64,0.19739442985445657],[113,289,65,0.190654721924375],[113,289,66,0.18484532719113655],[113,289,67,0.1799991953734913],[113,289,68,0.17612254214955897],[113,289,69,0.17319132576871477],[113,289,70,0.1711478033761591],[113,289,71,0.16990024376554466],[113,289,72,0.1676119464970798],[113,289,73,0.16345547261092552],[113,289,74,0.15937091562817685],[113,289,75,0.1553708439868321],[113,289,76,0.1514648349272754],[113,289,77,0.1476591164868115],[113,289,78,0.14395630306560778],[113,289,79,0.14035522453031316],[113,290,64,0.19955997576847803],[113,290,65,0.19269772477822353],[113,290,66,0.18676724650004406],[113,290,67,0.18180337414415487],[113,290,68,0.17781397995550766],[113,290,69,0.17477636610022376],[113,290,70,0.17263373001474036],[113,290,71,0.17129480346025472],[113,290,72,0.17062945436651814],[113,290,73,0.1693413709096679],[113,290,74,0.16498099024423216],[113,290,75,0.16068726835125813],[113,290,76,0.15647296152224052],[113,290,77,0.15234799389874693],[113,290,78,0.14831908870537874],[113,290,79,0.1443894878227185],[113,291,64,0.20177790271811777],[113,291,65,0.19479871004188037],[113,291,66,0.18875083253675023],[113,291,67,0.1836710426175551],[113,291,68,0.17956897920030862],[113,291,69,0.17642345748853308],[113,291,70,0.17417884799317052],[113,291,71,0.17274464646674714],[113,291,72,0.17199097238286293],[113,291,73,0.17175135702272215],[113,291,74,0.17023810556383037],[113,291,75,0.1656767052661258],[113,291,76,0.16118040575344633],[113,291,77,0.1567623729068286],[113,291,78,0.15243298413086848],[113,291,79,0.14819945158621614],[113,292,64,0.2040299598667769],[113,292,65,0.19694037163289316],[113,292,66,0.19077973910720664],[113,292,67,0.1855868167192696],[113,292,68,0.1813731071675983],[113,292,69,0.17811909498103434],[113,292,70,0.1757705441247643],[113,292,71,0.17423800367035996],[113,292,72,0.17339220794035742],[113,292,73,0.1730667162185561],[113,292,74,0.1731525335445812],[113,292,75,0.1703047273669235],[113,292,76,0.1655604025834625],[113,292,77,0.16088280760332996],[113,292,78,0.15628536464374976],[113,292,79,0.15177867335279796],[113,293,64,0.20629831250030728],[113,293,65,0.1991057526820998],[113,293,66,0.19283791609647283],[113,293,67,0.1875355689423171],[113,293,68,0.18321216126718776],[113,293,69,0.1798499893893033],[113,293,70,0.17739641723415722],[113,293,71,0.17576332283415252],[113,293,72,0.17482240543756047],[113,293,73,0.17440765619896254],[113,293,74,0.17440967028379614],[113,293,75,0.17455178524281814],[113,293,76,0.16960000634875746],[113,293,77,0.16470274650782474],[113,293,78,0.1598757333742361],[113,293,79,0.15513225054488913],[113,294,64,0.20856584717335674],[113,294,65,0.2012785427473899],[113,294,66,0.19490989879413434],[113,294,67,0.1895027099354623],[113,294,68,0.18507244313803128],[113,294,69,0.18160333424953906],[113,294,70,0.17904453839627438],[113,294,71,0.1773095225994564],[113,294,72,0.17627128537275183],[113,294,73,0.17576463952634244],[113,294,74,0.1756799946095844],[113,294,75,0.17595965005030545],[113,294,76,0.17329775505207917],[113,294,77,0.16822600664357784],[113,294,78,0.16321298397688505],[113,294,79,0.15827385342910083],[113,295,64,0.21081649724685847],[113,295,65,0.2034433962583537],[113,295,66,0.1969811192297498],[113,295,67,0.191474492816859],[113,295,68,0.1869410561261528],[113,295,69,0.18336709674157173],[113,295,70,0.18070373565281328],[113,295,71,0.17886627142139117],[113,295,72,0.17772931796722663],[113,295,73,0.17712888248224434],[113,295,74,0.17695541106536122],[113,295,75,0.17715082230415646],[113,295,76,0.1766615639952457],[113,295,77,0.17146448657489788],[113,295,78,0.16631291272369272],[113,295,79,0.1612230185711707],[113,296,64,0.21303558881648593],[113,296,65,0.20558627219163988],[113,296,66,0.19903823951814775],[113,296,67,0.19343834021284956],[113,296,68,0.18880622613735115],[113,296,69,0.18513033256625733],[113,296,70,0.1823639032060595],[113,296,71,0.18042429143916525],[113,296,72,0.17918802212446536],[113,296,73,0.178492649542628],[113,296,74,0.17822887405238397],[113,296,75,0.178338342625922],[113,296,76,0.17877271898800554],[113,296,77,0.17443611916447235],[113,296,78,0.16919598070102085],[113,296,79,0.16400270344803297],[113,297,64,0.2152102070322694],[113,297,65,0.2076947949772177],[113,297,66,0.20106950721477176],[113,297,67,0.19538319402212115],[113,297,68,0.19065764586488287],[113,297,69,0.18688352478145967],[113,297,70,0.18401633509023685],[113,297,71,0.18197568728136299],[113,297,72,0.18064028972538373],[113,297,73,0.17984957353956],[113,297,74,0.17949470406820123],[113,297,75,0.17951716836722864],[113,297,76,0.17986850213978645],[113,297,77,0.17716306458590284],[113,297,78,0.1718853265800028],[113,297,79,0.16663710262221018],[113,298,64,0.21732958280918913],[113,298,65,0.20975863663535912],[113,298,66,0.203065132680886],[113,298,67,0.19729988790502923],[113,298,68,0.19248684239193337],[113,298,69,0.18861894659642994],[113,298,70,0.1856540833202],[113,298,71,0.18351429980602574],[113,298,72,0.18208073525946933],[113,298,73,0.18119500150915002],[113,298,74,0.18074892992391556],[113,298,75,0.18068395970784462],[113,298,76,0.18095159376816844],[113,298,77,0.1796701439271837],[113,298,78,0.1744050302182735],[113,298,79,0.16914972565894554],[113,299,64,0.21938549992886744],[113,299,65,0.21176992014446228],[113,299,66,0.2050176884587655],[113,299,67,0.19918154249821546],[113,299,68,0.19428756816900258],[113,299,69,0.19033104812470997],[113,299,70,0.1872723405175979],[113,299,71,0.18503608477565558],[113,299,72,0.18350607079193385],[113,299,73,0.1825263662258565],[113,299,74,0.18198965694039076],[113,299,75,0.18183744435085353],[113,299,76,0.18202129343384166],[113,299,77,0.18198351354596265],[113,299,78,0.1767786271643422],[113,299,79,0.171561736767814],[113,300,64,0.22137272253235857],[113,300,65,0.21372364403971794],[113,300,66,0.20692253065687027],[113,300,67,0.2010239833545152],[113,300,68,0.19605621536620346],[113,300,69,0.1920168670955575],[113,300,70,0.18886884701450496],[113,300,71,0.18653951646713934],[113,300,72,0.18491550626687764],[113,300,73,0.18384358342315799],[113,300,74,0.18321746112339773],[113,300,75,0.1829788084192175],[113,300,76,0.18307934468170206],[113,300,77,0.1834762864501744],[113,300,78,0.1790278739747103],[113,300,79,0.17389055597793038],[113,301,64,0.22328944300392833],[113,301,65,0.2156181282425056],[113,301,66,0.20877824234489228],[113,301,67,0.20282618160804688],[113,301,68,0.19779225360036048],[113,301,69,0.19367646352378143],[113,301,70,0.19044432243440806],[113,301,71,0.1880260162164789],[113,301,72,0.1863111751463538],[113,301,73,0.18514947470047718],[113,301,74,0.18443580931758777],[113,301,75,0.1841121135536204],[113,301,76,0.18413034854357127],[113,301,77,0.18444786968897822],[113,301,78,0.18117176411841368],[113,301,79,0.17614872150970284],[113,302,64,0.22513775024594146],[113,302,65,0.21745548112064306],[113,302,66,0.2105870989587974],[113,302,67,0.2045907173646037],[113,302,68,0.19949869103703477],[113,302,69,0.1953133783381122],[113,302,70,0.19200292175067504],[113,302,71,0.189500405898456],[113,302,72,0.18769858538545986],[113,302,73,0.1864502161164865],[113,302,74,0.18565150533942135],[113,302,75,0.18524474021171736],[113,302,76,0.1851822033851488],[113,302,77,0.18542146623017453],[113,302,78,0.18322579413454418],[113,302,79,0.178343012886831],[113,303,64,0.22692411834483708],[113,303,65,0.2192420877794661],[113,303,66,0.21235555571583958],[113,303,67,0.20632426581732505],[113,303,68,0.20118255886744704],[113,303,69,0.1969351159680789],[113,303,70,0.19355271582247738],[113,303,71,0.19097138634120187],[113,303,72,0.1890870957434263],[113,303,73,0.18775581246876355],[113,303,74,0.1868751620890202],[113,303,75,0.1863878571687601],[113,303,76,0.18624657109716147],[113,303,77,0.18640916146928957],[113,303,78,0.18519808602397192],[113,303,79,0.180472478363724],[113,304,64,0.2286599156280864],[113,304,65,0.22098911958363399],[113,304,66,0.2140947570394426],[113,304,67,0.20803810608754464],[113,304,68,0.2028554191602008],[113,304,69,0.19855365088929766],[113,304,70,0.19510619640806728],[113,304,71,0.19245204067557456],[113,304,72,0.19049041743060557],[113,304,73,0.18908059725970147],[113,304,74,0.18812169964084952],[113,304,75,0.18755691721950274],[113,304,76,0.18733936963061856],[113,304,77,0.18742726150425193],[113,304,78,0.18707825809360387],[113,304,79,0.18252361804795653],[113,305,64,0.23036193411227754],[113,305,65,0.2227130649098041],[113,305,66,0.2158210679940945],[113,305,67,0.20974865279095706],[113,305,68,0.20453389608794373],[113,305,69,0.2001859581273054],[113,305,70,0.19668080565554938],[113,305,71,0.1939603626194809],[113,305,72,0.19192714109149994],[113,305,73,0.1904437583488104],[113,305,74,0.18941086931336348],[113,305,75,0.1887721790815245],[113,305,76,0.1884812918763054],[113,305,77,0.1884968079133876],[113,305,78,0.18774808180203517],[113,305,79,0.18270150577004934],[113,306,64,0.2320529393422856],[113,306,65,0.22443628113013636],[113,306,66,0.217556627730212],[113,306,67,0.21147801032906385],[113,306,68,0.20624023052892881],[113,306,69,0.201854567719904],[113,306,70,0.1982994900711075],[113,306,71,0.19551980969710647],[113,306,72,0.19342128912378787],[113,306,73,0.19186988929137122],[113,306,74,0.1907678037175788],[113,306,75,0.19005925549993014],[113,306,76,0.1896983508884791],[113,306,77,0.1896441189341973],[113,306,78,0.18549824847066285],[113,306,79,0.18021017030204906],[113,307,64,0.2337605431711556],[113,307,65,0.22618590943456132],[113,307,66,0.2193283002087109],[113,307,67,0.21325295326703353],[113,307,68,0.2080012839791449],[113,307,69,0.20358658644835267],[113,307,70,0.1999897350682288],[113,307,71,0.19715834666787063],[113,307,72,0.19500136549979413],[113,307,73,0.19338804495330636],[113,307,74,0.19222207976690014],[113,307,75,0.1914481871367332],[113,307,76,0.19102096954404585],[113,307,77,0.18855754567337168],[113,307,78,0.18277936176752568],[113,307,79,0.17725293985385648],[113,308,64,0.23548362090016645],[113,308,65,0.2279610553951216],[113,308,66,0.2211355111959214],[113,308,67,0.2150733094217103],[113,308,68,0.20981735853669686],[113,308,69,0.20538285185432326],[113,308,70,0.2017529624221819],[113,308,71,0.1988780148076087],[113,308,72,0.19667005177900912],[113,308,73,0.19500155487938625],[113,308,74,0.1937776878486327],[113,308,75,0.1929436498739338],[113,308,76,0.1919363950163616],[113,308,77,0.18566013535366627],[113,308,78,0.17962340470320637],[113,308,79,0.17386736902474834],[113,309,64,0.23515805428001127],[113,309,65,0.2297324706536071],[113,309,66,0.2229498478416785],[113,309,67,0.2169114847658065],[113,309,68,0.21166165460563063],[113,309,69,0.20721732986621164],[113,309,70,0.20356387414200733],[113,309,71,0.20065422703725713],[113,309,72,0.1984034566130385],[113,309,73,0.19668722771409658],[113,309,74,0.19541218842411373],[113,309,75,0.19452405807102333],[113,309,76,0.1888879574130524],[113,309,77,0.18234636669920606],[113,309,78,0.17606715493004133],[113,309,79,0.17009610964082406],[113,310,64,0.2331176012926578],[113,310,65,0.22997329567784622],[113,310,66,0.22474454197889868],[113,310,67,0.2187414052309667],[113,310,68,0.21350877470451435],[113,310,69,0.2090652782013716],[113,310,70,0.20539836145903342],[113,310,71,0.20246349046101642],[113,310,72,0.2001786945466007],[113,310,73,0.1984227948857414],[113,310,74,0.1971039834258955],[113,310,75,0.19244269977383074],[113,310,76,0.18543375965899322],[113,310,77,0.1786504357156582],[113,310,78,0.17215099806575507],[113,310,79,0.1659854432733148],[113,311,64,0.23099659945326992],[113,311,65,0.22799183257320277],[113,311,66,0.22513504175164314],[113,311,67,0.22053966852658727],[113,311,68,0.21533586280981434],[113,311,69,0.2109043762409275],[113,311,70,0.20723462786853308],[113,311,71,0.20428452461697766],[113,311,72,0.20197500067530766],[113,311,73,0.20018802171069086],[113,311,74,0.19625029030580843],[113,311,75,0.18884120835809937],[113,311,76,0.18160441775391567],[113,311,77,0.17460902063461417],[113,311,78,0.16791752251490047],[113,311,79,0.16158361054307785],[113,312,64,0.228812552048415],[113,312,65,0.2259399896526542],[113,312,66,0.22321684507945494],[113,312,67,0.2206015294016977],[113,312,68,0.21712252535260518],[113,312,69,0.21271464243909238],[113,312,70,0.2090531022412173],[113,312,71,0.2060981697356714],[113,312,72,0.2037736336936125],[113,312,73,0.2001901857350068],[113,312,74,0.19247246939097734],[113,312,75,0.1848607709239284],[113,312,76,0.17743223710469422],[113,312,77,0.17025991361140044],[113,312,78,0.1634098898684243],[113,312,79,0.15693893112701787],[113,313,64,0.22657651084603697],[113,313,65,0.22382684651263102],[113,313,66,0.22122526783732915],[113,313,67,0.21873347588742692],[113,313,68,0.2163626953225009],[113,313,69,0.21414084827195354],[113,313,70,0.21083535063166578],[113,313,71,0.20788616328939774],[113,313,72,0.2041079304498296],[113,313,73,0.1961893322691644],[113,313,74,0.18830270087943154],[113,313,75,0.18052935968147382],[113,313,76,0.17294984725191184],[113,313,77,0.16564040474827874],[113,313,78,0.15866997372583275],[113,313,79,0.15209770711944418],[113,314,64,0.22429269077553765],[113,314,65,0.2216550882944247],[113,314,66,0.21916147128295826],[113,314,67,0.21677694544597273],[113,314,68,0.2145156674960245],[113,314,69,0.21240672147520506],[113,314,70,0.2104483015305337],[113,314,71,0.20783158209841956],[113,314,72,0.19982602974524213],[113,314,73,0.19177704366579132],[113,314,74,0.18376529271355369],[113,314,75,0.17587477160912413],[113,314,76,0.16818861914875877],[113,314,77,0.16078546576518218],[113,314,78,0.15373631434779975],[113,314,79,0.1471019572332325],[113,315,64,0.22195848287591183],[113,315,65,0.21942112171601003],[113,315,66,0.2170209446126598],[113,315,67,0.21472646134265427],[113,315,68,0.21255438742751132],[113,315,69,0.21053454727654541],[113,315,70,0.20866493697826785],[113,315,71,0.2032066323534832],[113,315,72,0.1951100942554798],[113,315,73,0.18697504313556018],[113,315,74,0.17888404608182137],[113,315,75,0.17092299882766415],[113,315,76,0.16317681869046033],[113,315,77,0.15572568654583405],[113,315,78,0.14864184190978905],[113,315,79,0.1419869341695533],[113,316,64,0.21956486872045378],[113,316,65,0.21711559054090604],[113,316,66,0.2147941168721795],[113,316,67,0.21257225666653795],[113,316,68,0.21046885599152795],[113,316,69,0.2085140460270563],[113,316,70,0.20616361565401198],[113,316,71,0.198125518014685],[113,316,72,0.18998054832973682],[113,316,73,0.18180429541398746],[113,316,74,0.17368054461174745],[113,316,75,0.16569632224688324],[113,316,76,0.15793750056410263],[113,316,77,0.15048496843673537],[113,316,78,0.14341137204354806],[113,316,79,0.13677842865693748],[113,317,64,0.21709724058931196],[113,317,65,0.21472429494178735],[113,317,66,0.21246736749298473],[113,317,67,0.21030137579410585],[113,317,68,0.20824684154194933],[113,317,69,0.20633378044540285],[113,317,70,0.20066245565306093],[113,317,71,0.19260863504470027],[113,317,72,0.18445678797592774],[113,317,73,0.1762831778050218],[113,317,74,0.1681721545682853],[113,317,75,0.1602111333762275],[113,317,76,0.15248614710522726],[113,317,77,0.14507797877982231],[113,317,78,0.13805887794447336],[113,317,79,0.1314898642406429],[113,318,64,0.21453662651030064],[113,318,65,0.21222951403317764],[113,318,66,0.2100244348887592],[113,318,67,0.2078991660676162],[113,318,68,0.2058754589617081],[113,318,69,0.20259193082107724],[113,318,70,0.1947081897545043],[113,318,71,0.186674955359892],[113,318,72,0.17855518899448547],[113,318,73,0.1704253441904688],[113,318,74,0.16236973492421153],[113,318,75,0.15447548290921642],[113,318,76,0.14682805051267503],[113,318,77,0.13950736477397524],[113,318,78,0.13258453688904331],[113,318,79,0.12611918042401354],[113,319,64,0.2118613195909169],[113,319,65,0.20961173117018853],[113,319,66,0.20744822288635867],[113,319,67,0.2053511596459774],[113,319,68,0.20334312900775833],[113,319,69,0.19616477093772608],[113,319,70,0.18832016872895024],[113,319,71,0.18033982720439776],[113,319,72,0.17228679042652384],[113,319,73,0.16423728068033522],[113,319,74,0.15627505571027236],[113,319,75,0.14848635421757594],[113,319,76,0.1409554362848301],[113,319,77,0.13376072425842062],[113,319,78,0.1269715484914956],[113,319,79,0.1206455012367611],[114,-64,64,0.32993431121130107],[114,-64,65,0.3356220978880019],[114,-64,66,0.34142239400491053],[114,-64,67,0.34731586272187015],[114,-64,68,0.353308774403545],[114,-64,69,0.3594199423358556],[114,-64,70,0.36566035357430693],[114,-64,71,0.37203321532395356],[114,-64,72,0.37853447639628757],[114,-64,73,0.38515338214481865],[114,-64,74,0.3918730629704165],[114,-64,75,0.3986711563889024],[114,-64,76,0.40552046255699614],[114,-64,77,0.41238963305930454],[114,-64,78,0.4192438926686723],[114,-64,79,0.4260457937061526],[114,-63,64,0.3310582622702194],[114,-63,65,0.3368472901723879],[114,-63,66,0.3427520908683188],[114,-63,67,0.34875466601700794],[114,-63,68,0.35486106627337255],[114,-63,69,0.36108850707595724],[114,-63,70,0.36744625033321515],[114,-63,71,0.37393574091682463],[114,-63,72,0.3805511855114653],[114,-63,73,0.3872801601255464],[114,-63,74,0.3941042461841261],[114,-63,75,0.4009996950321072],[114,-63,76,0.4079381205858585],[114,-63,77,0.41488721978537674],[114,-63,78,0.4218115204170302],[114,-63,79,0.4286731557999678],[114,-62,64,0.33236979454782345],[114,-62,65,0.3382466670113781],[114,-62,66,0.34424107949742744],[114,-62,67,0.35033666340375674],[114,-62,68,0.3565391713385416],[114,-62,69,0.3628639784673231],[114,-62,70,0.3693185431662438],[114,-62,71,0.3759026141667155],[114,-62,72,0.3826088410104852],[114,-62,73,0.3894234096318651],[114,-62,74,0.39632670287639676],[114,-62,75,0.40329398567728514],[114,-62,76,0.41029611452684656],[114,-62,77,0.4173002708005906],[114,-62,78,0.424270717416451],[114,-62,79,0.4311695782421469],[114,-61,64,0.33385425544810743],[114,-61,65,0.33980579429306995],[114,-61,66,0.3458751567832314],[114,-61,67,0.35204785231499847],[114,-61,68,0.35832927891188626],[114,-61,69,0.36473278762861133],[114,-61,70,0.37126399877460786],[114,-61,71,0.3779210609590233],[114,-61,72,0.3846952691588382],[114,-61,73,0.391571705587801],[114,-61,74,0.3985299031160232],[114,-61,75,0.4055445309070539],[114,-61,76,0.4125861018603341],[114,-61,77,0.41962170137272764],[114,-61,78,0.42661573686334886],[114,-61,79,0.4335307074421886],[114,-60,64,0.33549284455381206],[114,-60,65,0.3415064671566868],[114,-60,66,0.34763677077553096],[114,-60,67,0.35387133837029033],[114,-60,68,0.3602151738128247],[114,-60,69,0.36667947502252896],[114,-60,70,0.37326802615283705],[114,-60,71,0.3799774912930785],[114,-60,72,0.3867980188038436],[114,-60,73,0.39371386719527907],[114,-60,74,0.40070405228401096],[114,-60,75,0.407743015285911],[114,-60,76,0.414801311427529],[114,-60,77,0.4218463185892634],[114,-60,78,0.4288429654282825],[114,-60,79,0.4357544783697911],[114,-59,64,0.33726369802445244],[114,-59,65,0.34332782889825103],[114,-59,66,0.3495061735551455],[114,-59,67,0.3557885217519868],[114,-59,68,0.362179453035339],[114,-59,69,0.3686879297096435],[114,-59,70,0.375315926823368],[114,-59,71,0.38205874565700504],[114,-59,72,0.38890558648706397],[114,-59,73,0.39584014249429605],[114,-59,74,0.40284121457377725],[114,-59,75,0.40988334673022203],[114,-59,76,0.4169374816714526],[114,-59,77,0.42397163614686206],[114,-59,78,0.4309515955160211],[114,-59,79,0.4378416269762446],[114,-58,64,0.33914318757984785],[114,-58,65,0.3452477043318306],[114,-58,66,0.35146278762490385],[114,-58,67,0.3577804954055137],[114,-58,68,0.36420495149455695],[114,-58,69,0.37074283340748954],[114,-58,70,0.37739434371568914],[114,-58,71,0.3841535317548361],[114,-58,72,0.3910088213478924],[114,-58,73,0.39794355984505336],[114,-58,74,0.4049365882852234],[114,-58,75,0.41196283241335707],[114,-58,76,0.4189939142211222],[114,-58,77,0.4259987836153924],[114,-58,78,0.4329443697600723],[114,-58,79,0.43979625158265384],[114,-57,64,0.3411074339782934],[114,-57,65,0.3472441475008207],[114,-57,66,0.3534867857111109],[114,-57,67,0.35982965496507846],[114,-57,68,0.3662763767731654],[114,-57,69,0.37283130930352903],[114,-57,70,0.3794929086710691],[114,-57,71,0.3862540516029344],[114,-57,72,0.3931025098738471],[114,-57,73,0.40002144642785803],[114,-57,74,0.40698993305013165],[114,-57,75,0.41398348938621715],[114,-57,76,0.42097464304294363],[114,-57,77,0.42793351044511596],[114,-57,78,0.4348283980656756],[114,-57,79,0.44162642359482546],[114,-56,64,0.3431306102388277],[114,-56,65,0.3492932550407265],[114,-56,66,0.3555564111386097],[114,-56,67,0.36191652294390186],[114,-56,68,0.3683766343812976],[114,-56,69,0.37493875118366143],[114,-56,70,0.38159958751052203],[114,-56,71,0.3883508864821604],[114,-56,72,0.3951798381472941],[114,-56,73,0.4020695193286303],[114,-56,74,0.40899935526906533],[114,-56,75,0.4159456029396122],[114,-56,76,0.42288185581068627],[114,-56,77,0.4297795698317652],[114,-56,78,0.4366086103107019],[114,-56,79,0.44333781933403205],[114,-55,64,0.34516519191540185],[114,-55,65,0.35134609761165214],[114,-55,66,0.35762157721876753],[114,-55,67,0.36399000739727666],[114,-55,68,0.37045376544707237],[114,-55,69,0.3770125319009365],[114,-55,70,0.3836613409510289],[114,-55,71,0.3903908922969935],[114,-55,72,0.39718790801993853],[114,-55,73,0.4040355115846803],[114,-55,74,0.410913628957878],[114,-55,75,0.41779941177241836],[114,-55,76,0.42466768241279323],[114,-55,77,0.4314914008428403],[114,-55,78,0.4382421529461312],[114,-55,79,0.44489066010141487],[114,-54,64,0.34715816335252625],[114,-54,65,0.3533471064202229],[114,-54,66,0.3596244098314482],[114,-54,67,0.36599009344058464],[114,-54,68,0.3724457764646735],[114,-54,69,0.37898892176070076],[114,-54,70,0.38561303008485953],[114,-54,71,0.39230793061553904],[114,-54,72,0.3990600682933209],[114,-54,73,0.40585281406694373],[114,-54,74,0.4126667981145535],[114,-54,75,0.4194802660560754],[114,-54,76,0.4262694581200139],[114,-54,77,0.43300901117701185],[114,-54,78,0.439672383503134],[114,-54,79,0.44623230208898496],[114,-53,64,0.3490630201928826],[114,-53,65,0.355247782284983],[114,-53,66,0.36151465455563964],[114,-53,67,0.3678649447174997],[114,-53,68,0.374299421652487],[114,-53,69,0.38081350359994],[114,-53,70,0.38739937183917156],[114,-53,71,0.39404622243835563],[114,-53,72,0.4007404726822935],[114,-53,73,0.4074659921017847],[114,-53,74,0.41420435828059393],[114,-53,75,0.42093513756509127],[114,-53,76,0.427636190750845],[114,-53,77,0.43428400377036525],[114,-53,78,0.4408540433569143],[114,-53,79,0.44732113761174114],[114,-52,64,0.3508401903990537],[114,-52,65,0.35700707156878875],[114,-52,66,0.3632500029374269],[114,-52,67,0.36957117539371886],[114,-52,68,0.3759704166140164],[114,-52,69,0.3824413253141815],[114,-52,70,0.38897502910902493],[114,-52,71,0.3955603764026078],[114,-52,72,0.4021840483781582],[114,-52,73,0.4088306985222261],[114,-52,74,0.41548311999620363],[114,-52,75,0.42212244111827707],[114,-52,76,0.4287283491679044],[114,-52,77,0.4352793426736545],[114,-52,78,0.4417530122938474],[114,-52,79,0.4481263503488221],[114,-51,64,0.3524575315137641],[114,-51,65,0.3585918098391514],[114,-51,66,0.3647964776833438],[114,-51,67,0.37107417176281626],[114,-51,68,0.3774236917312],[114,-51,69,0.3838370818100397],[114,-51,70,0.3903047197843379],[114,-51,71,0.3968154253676363],[114,-51,72,0.40335646276971693],[114,-51,73,0.409913575223275],[114,-51,74,0.4164710519535154],[114,-51,75,0.42301182802323833],[114,-51,76,0.4295176174324704],[114,-51,77,0.4359690797967188],[114,-51,78,0.4423460208717157],[114,-51,79,0.44862762713603144],[114,-50,64,0.353890960596389],[114,-50,65,0.35997729799148437],[114,-50,66,0.36612894979481075],[114,-50,67,0.37234854476063545],[114,-50,68,0.3786337748129724],[114,-50,69,0.3849754239034152],[114,-50,70,0.39136344973822323],[114,-50,71,0.39778698329995993],[114,-50,72,0.40423420613603567],[114,-50,73,0.4106922657217198],[114,-50,74,0.4171472295874151],[114,-50,75,0.42358407884471233],[114,-50,76,0.42998674168693146],[114,-50,77,0.4363381673782137],[114,-50,78,0.442620441181111],[114,-50,79,0.4488149406070383],[114,-49,64,0.3538339889550805],[114,-49,65,0.36034919067481397],[114,-49,66,0.3669831514876886],[114,-49,67,0.373376363089618],[114,-49,68,0.3795837384931902],[114,-49,69,0.38584067229919866],[114,-49,70,0.39213703284063517],[114,-49,71,0.39846259589761873],[114,-49,72,0.4048067814082157],[114,-49,73,0.41115843612271585],[114,-49,74,0.41750566312965937],[114,-49,75,0.4238356991199608],[114,-49,76,0.4301348401883617],[114,-49,77,0.43638841690000796],[114,-49,78,0.44258081927464327],[114,-49,79,0.4486955722628793],[114,-48,64,0.3532893751784807],[114,-48,65,0.3598533930467219],[114,-48,66,0.36654320214508074],[114,-48,67,0.37334001975966097],[114,-48,68,0.3802290919503548],[114,-48,69,0.38642372830960275],[114,-48,70,0.3926212448454292],[114,-48,71,0.3988431889167927],[114,-48,72,0.4050804510419313],[114,-48,73,0.41132377672613873],[114,-48,74,0.4175634634609578],[114,-48,75,0.4237891152820738],[114,-48,76,0.4299894559247614],[114,-48,77,0.4361522015317247],[114,-48,78,0.4422639937788582],[114,-48,79,0.44831039419109103],[114,-47,64,0.35284337686110406],[114,-47,65,0.35945506403212363],[114,-47,66,0.36619789111237405],[114,-47,67,0.37305463551894863],[114,-47,68,0.3800121281026979],[114,-47,69,0.3867217494074724],[114,-47,70,0.3928182103500057],[114,-47,71,0.39893605211612065],[114,-47,72,0.40506776900753766],[114,-47,73,0.41120610096426674],[114,-47,74,0.41734359430336754],[114,-47,75,0.42347223090185143],[114,-47,76,0.4295831271069478],[114,-47,77,0.435666303558138],[114,-47,78,0.44171052699979346],[114,-47,79,0.447703225052334],[114,-46,64,0.35250549315350044],[114,-46,65,0.3591609964902175],[114,-46,66,0.36595099941445325],[114,-46,67,0.37286025993720695],[114,-46,68,0.3798773384304925],[114,-46,69,0.38673798305339313],[114,-46,70,0.3927353086907595],[114,-46,71,0.39875279628158844],[114,-46,72,0.40478458767341535],[114,-46,73,0.41082542092312013],[114,-46,74,0.41687005476191835],[114,-46,75,0.42291277305571506],[114,-46,76,0.42894697078344657],[114,-46,77,0.43496482294069777],[114,-46,78,0.4409570376524228],[114,-46,79,0.4469126946485612],[114,-45,64,0.35227755193548016],[114,-45,65,0.35897060345142884],[114,-45,66,0.36579933262032865],[114,-45,67,0.3727508655573504],[114,-45,68,0.37981564831633086],[114,-45,69,0.3864811708782424],[114,-45,70,0.3923846350132518],[114,-45,71,0.39830888227829325],[114,-45,72,0.4042496657795394],[114,-45,73,0.4102036447787192],[114,-45,74,0.4161676761337242],[114,-45,75,0.4221381975723954],[114,-45,76,0.4281107045483721],[114,-45,77,0.43407932229487767],[114,-45,78,0.44003647454992334],[114,-45,79,0.44597265027630684],[114,-44,64,0.3521544381674794],[114,-44,65,0.35887664255692947],[114,-44,66,0.3657334312912923],[114,-44,67,0.37271464465387105],[114,-44,68,0.3798127767336233],[114,-44,69,0.38596494161009565],[114,-44,70,0.39178244775790844],[114,-44,71,0.39762313385101244],[114,-44,72,0.40348425717579667],[114,-44,73,0.40936425172372615],[114,-44,74,0.41526189267543295],[114,-44,75,0.4211755644855723],[114,-44,76,0.42710263452376024],[114,-44,77,0.43303893407565514],[114,-44,78,0.4389783483464295],[114,-44,79,0.44491251693840894],[114,-43,64,0.35212482720760724],[114,-43,65,0.3588659463405601],[114,-43,66,0.36573828821395116],[114,-43,67,0.37273470402463044],[114,-43,68,0.3794968875322757],[114,-43,69,0.3852071911110054],[114,-43,70,0.39094860108739077],[114,-43,71,0.39671723288705024],[114,-43,72,0.40251167925196524],[114,-43,73,0.40833194354976654],[114,-43,74,0.41417848575588995],[114,-43,75,0.42005138340187564],[114,-43,76,0.4259496096265456],[114,-43,77,0.43187043029720673],[114,-43,78,0.43780892198691934],[114,-43,79,0.4437576124032908],[114,-42,64,0.3521719252288761],[114,-42,65,0.3589201604580367],[114,-42,66,0.365794074465779],[114,-42,67,0.37278976971784555],[114,-42,68,0.3785887474660595],[114,-42,69,0.38422944779736395],[114,-42,70,0.3899059606884919],[114,-42,71,0.3956151957600683],[114,-42,72,0.40135685989009956],[114,-42,73,0.4071322719532794],[114,-42,74,0.4129433007223586],[114,-42,75,0.41879142839429706],[114,-42,76,0.4246769420304874],[114,-42,77,0.4305982550128848],[114,-42,78,0.43655136041813153],[114,-42,79,0.44252941800189194],[114,-41,64,0.35227421894764566],[114,-41,65,0.35901649204694164],[114,-41,66,0.3658768764408953],[114,-41,67,0.3719419882684261],[114,-41,68,0.3774746111127606],[114,-41,69,0.38305622163328956],[114,-41,70,0.38867980129524266],[114,-41,71,0.39434282928545095],[114,-41,72,0.4000458616799015],[114,-41,73,0.40579124054061266],[114,-41,74,0.4115819357146648],[114,-41,75,0.4174205219354025],[114,-41,76,0.4233082936362593],[114,-41,77,0.42924451968330657],[114,-41,78,0.43522584001539905],[114,-41,79,0.44124580595297863],[114,-40,64,0.3524062369417631],[114,-40,65,0.3591284704705692],[114,-40,66,0.3652965875647533],[114,-40,67,0.3707037315441029],[114,-40,68,0.3761808317752158],[114,-40,69,0.3817143348091666],[114,-40,70,0.38729718420020703],[114,-40,71,0.39292716473548567],[114,-40,72,0.39860538205271817],[114,-40,73,0.4043348804204336],[114,-40,74,0.41011940157128146],[114,-40,75,0.41596228729179824],[114,-40,76,0.42186552826756346],[114,-40,77,0.42782896146286203],[114,-40,78,0.43384961808089734],[114,-40,79,0.43992122390666566],[114,-39,64,0.352539324895545],[114,-39,65,0.35870209240508033],[114,-39,66,0.3639523604744896],[114,-39,67,0.3693044527354062],[114,-39,68,0.3747358309968973],[114,-39,69,0.38023223214882423],[114,-39,70,0.3857863129494866],[114,-39,71,0.39139586828811535],[114,-39,72,0.39706222791200696],[114,-39,73,0.402788798190316],[114,-39,74,0.4085797518867111],[114,-39,75,0.4144388687131969],[114,-39,76,0.41741774796223374],[114,-39,77,0.41615917239467537],[114,-39,78,0.42089991859044334],[114,-39,79,0.41888976537560546],[114,-38,64,0.3522273657089797],[114,-38,65,0.3572778419168069],[114,-38,66,0.3624684686491012],[114,-38,67,0.3677740216012663],[114,-38,68,0.3731693518774073],[114,-38,69,0.37863926922871566],[114,-38,70,0.384175865353558],[114,-38,71,0.3897766262159971],[114,-38,72,0.3929840542403229],[114,-38,73,0.3944385370146428],[114,-38,74,0.39764091623776276],[114,-38,75,0.39390748561608985],[114,-38,76,0.3905013655105624],[114,-38,77,0.3878989769254205],[114,-38,78,0.3920605057559045],[114,-38,79,0.3839460476481562],[114,-37,64,0.35075667566957985],[114,-37,65,0.3557376067581973],[114,-37,66,0.36087590919860607],[114,-37,67,0.36614321269462113],[114,-37,68,0.3715116891148285],[114,-37,69,0.37696497614139796],[114,-37,70,0.3824942998912812],[114,-37,71,0.38221925170545845],[114,-37,72,0.37884304862762014],[114,-37,73,0.3764293525748343],[114,-37,74,0.37917714618834875],[114,-37,75,0.37957462367934114],[114,-37,76,0.38103642186280956],[114,-37,77,0.3730263528832793],[114,-37,78,0.3739238550003667],[114,-37,79,0.3622082195036502],[114,-36,64,0.3491950071408804],[114,-36,65,0.3541130012433166],[114,-36,66,0.35920607122583514],[114,-36,67,0.3644428854843612],[114,-36,68,0.36979289355005096],[114,-36,69,0.37523829479483095],[114,-36,70,0.38032047615618864],[114,-36,71,0.37265677999451835],[114,-36,72,0.3692354414303204],[114,-36,73,0.36883788122510625],[114,-36,74,0.37306628650105134],[114,-36,75,0.37646879827698154],[114,-36,76,0.37868743145418216],[114,-36,77,0.36823272399863677],[114,-36,78,0.3680214397535483],[114,-36,79,0.3580758291709019],[114,-35,64,0.34757389222255203],[114,-35,65,0.3524354440526013],[114,-35,66,0.35748987279086136],[114,-35,67,0.36270313744856],[114,-35,68,0.3680419489616758],[114,-35,69,0.3734867876085508],[114,-35,70,0.379026196025516],[114,-35,71,0.370371778880919],[114,-35,72,0.3660749588796528],[114,-35,73,0.3755110470535165],[114,-35,74,0.37943028008235],[114,-35,75,0.37725776827374247],[114,-35,76,0.381975903131476],[114,-35,77,0.3742914378120176],[114,-35,78,0.3688881279880846],[114,-35,79,0.3568280445523426],[114,-34,64,0.34592403542586275],[114,-34,65,0.35073525905151043],[114,-34,66,0.3557568690090885],[114,-34,67,0.3609524277861352],[114,-34,68,0.36628591884471423],[114,-34,69,0.37173581544810047],[114,-34,70,0.3772888374752853],[114,-34,71,0.38293786681788533],[114,-34,72,0.37703893995829896],[114,-34,73,0.3868997495993655],[114,-34,74,0.3887009932346866],[114,-34,75,0.3782243326699792],[114,-34,76,0.38385553534213135],[114,-34,77,0.3771375490800015],[114,-34,78,0.3683977402383869],[114,-34,79,0.3546843148111448],[114,-33,64,0.34427438779393793],[114,-33,65,0.34904074528161816],[114,-33,66,0.35403432886858416],[114,-33,67,0.35921666939500696],[114,-33,68,0.36454906090342915],[114,-33,69,0.3700076826316152],[114,-33,70,0.3755771224167172],[114,-33,71,0.3812483010490986],[114,-33,72,0.3870167305851999],[114,-33,73,0.3928809238244595],[114,-33,74,0.39884095773401673],[114,-33,75,0.3874252452981416],[114,-33,76,0.3900871077946014],[114,-33,77,0.3799623412748554],[114,-33,78,0.3720467318817303],[114,-33,79,0.3600189699527988],[114,-32,64,0.3426511884307174],[114,-32,65,0.34737721368899815],[114,-32,66,0.35234627836905796],[114,-32,67,0.35751828677845804],[114,-32,68,0.36285190699827513],[114,-32,69,0.36832074684710825],[114,-32,70,0.37390697309690224],[114,-32,71,0.3795992663217722],[114,-32,72,0.3853911080293669],[114,-32,73,0.3912792139750617],[114,-32,74,0.39726211632915837],[114,-32,75,0.403338897143269],[114,-32,76,0.4022968089698689],[114,-32,77,0.39282856083844536],[114,-32,78,0.38976323278497504],[114,-32,79,0.37491691330438026],[114,-31,64,0.3410769710295713],[114,-31,65,0.34576598818750093],[114,-31,66,0.350712507615113],[114,-31,67,0.3558752375682809],[114,-31,68,0.36121030630945455],[114,-31,69,0.36668849183628105],[114,-31,70,0.37228928108253256],[114,-31,71,0.3779988746278867],[114,-31,72,0.383808512504223],[114,-31,73,0.3897129397547137],[114,-31,74,0.3957090142918665],[114,-31,75,0.40179445938419434],[114,-31,76,0.40796676287005895],[114,-31,77,0.414222224953523],[114,-31,78,0.41428145816661704],[114,-31,79,0.3944811535826363],[114,-30,64,0.3395695330420088],[114,-30,65,0.34422336870217957],[114,-30,66,0.34914753954146927],[114,-30,67,0.35429999539485807],[114,-30,68,0.35963442951666075],[114,-30,69,0.3651185607321269],[114,-30,70,0.37072897813780775],[114,-30,71,0.37644921203265336],[114,-30,72,0.38226810537301603],[114,-30,73,0.3881783173323403],[114,-30,74,0.3941749613832234],[114,-30,75,0.4002543801129419],[114,-30,76,0.4064130587631138],[114,-30,77,0.41264667925182086],[114,-30,78,0.418949316194442],[114,-30,79,0.40861173629714886],[114,-29,64,0.3381408651911533],[114,-29,65,0.34275955390061874],[114,-29,66,0.3476595580077005],[114,-29,67,0.3527984918905023],[114,-29,68,0.3581277318459862],[114,-29,69,0.3636117479831029],[114,-29,70,0.3692240654124317],[114,-29,71,0.37494541385933455],[114,-29,72,0.3807621484006049],[114,-29,73,0.38666479373554696],[114,-29,74,0.39264671428252024],[114,-29,75,0.3987029121972562],[114,-29,76,0.4048289552014544],[114,-29,77,0.41102003589108743],[114,-29,78,0.4172701639655393],[114,-29,79,0.4137651400973679],[114,-28,64,0.33679603911403455],[114,-28,65,0.3413775213976655],[114,-28,66,0.34624929307504826],[114,-28,67,0.3513690156835529],[114,-28,68,0.35668587290114706],[114,-28,69,0.36216094785656233],[114,-28,70,0.3677645990247289],[114,-28,71,0.3734746961248207],[114,-28,72,0.37927508996887405],[114,-28,73,0.3851541967171519],[114,-28,74,0.3911036987129362],[114,-28,75,0.3971173638879453],[114,-28,76,0.40318998553571284],[114,-28,77,0.4093164440456883],[114,-28,78,0.41549089197743644],[114,-28,79,0.4217060636338059],[114,-27,64,0.33553205101327044],[114,-27,65,0.3400718633141002],[114,-27,66,0.3449088613701708],[114,-27,67,0.3500010663290698],[114,-27,68,0.35529559127932797],[114,-27,69,0.3607500575908027],[114,-27,70,0.3663316301936932],[114,-27,71,0.37201534148012855],[114,-27,72,0.37778260582652],[114,-27,73,0.3836198392747581],[114,-27,74,0.3895171864414349],[114,-27,75,0.395467356556664],[114,-27,76,0.40146457035466454],[114,-27,77,0.4075036193486411],[114,-27,78,0.41357903882433134],[114,-27,79,0.4196843956814504],[114,-26,64,0.33433661931090525],[114,-26,65,0.33882757518059786],[114,-26,66,0.3436205595486781],[114,-26,67,0.3486741612258179],[114,-26,68,0.3539335320703615],[114,-26,69,0.35935283335664947],[114,-26,70,0.36489609815705487],[114,-26,71,0.3705356379834873],[114,-26,72,0.3762505928060306],[114,-26,73,0.38202557737578097],[114,-26,74,0.3878494258389477],[114,-26,75,0.39371403647523034],[114,-26,76,0.3996133182281302],[114,-26,77,0.4055422405195602],[114,-26,78,0.4114959876575185],[114,-26,79,0.4174692189549845],[114,-25,64,0.3331868288821877],[114,-25,65,0.33761874722291213],[114,-25,66,0.34235561228313033],[114,-25,67,0.3473566479564521],[114,-25,68,0.35256513096852143],[114,-25,69,0.3579318542981454],[114,-25,70,0.36341788230777006],[114,-25,71,0.3689930268770541],[114,-25,72,0.37463441865881897],[114,-25,73,0.3803251667593345],[114,-25,74,0.38605310877549287],[114,-25,75,0.39180965297953224],[114,-25,76,0.3975887142890767],[114,-25,77,0.4033857454976175],[114,-25,78,0.4091968650696448],[114,-25,79,0.4150180826266137],[114,-24,64,0.3320449415626777],[114,-24,65,0.3364069933808102],[114,-24,66,0.34107504079515927],[114,-24,67,0.346008955535409],[114,-24,68,0.35115026563051066],[114,-24,69,0.3564465883040642],[114,-24,70,0.3618562665822229],[114,-24,71,0.36734690055978153],[114,-24,72,0.3728939263321623],[114,-24,73,0.3784792765427328],[114,-24,74,0.3840901244491274],[114,-24,75,0.389717713280795],[114,-24,76,0.39535627251772587],[114,-24,77,0.40100202256831485],[114,-24,78,0.406652269164014],[114,-24,79,0.4123045886207731],[114,-23,64,0.33086572654845137],[114,-23,65,0.33514996507400935],[114,-23,66,0.3397392718983947],[114,-23,67,0.3445942713738827],[114,-23,68,0.3496550002224976],[114,-23,69,0.3548661903471468],[114,-23,70,0.36018375581458006],[114,-23,71,0.3655733739495367],[114,-23,72,0.3709187936549019],[114,-23,73,0.3762807217326254],[114,-23,74,0.3817765107358631],[114,-23,75,0.3873895086448315],[114,-23,76,0.39291208861438465],[114,-23,77,0.3983909364427567],[114,-23,78,0.4038655328799937],[114,-23,79,0.4093351503737399],[114,-22,64,0.3292153985149391],[114,-22,65,0.3336863107866848],[114,-22,66,0.3381835800559521],[114,-22,67,0.34269905688866864],[114,-22,68,0.34728163147642],[114,-22,69,0.35197463190924577],[114,-22,70,0.3568076823830002],[114,-22,71,0.36179820879337143],[114,-22,72,0.3669529880543536],[114,-22,73,0.37226962660589247],[114,-22,74,0.3777379662356728],[114,-22,75,0.3833414154520985],[114,-22,76,0.38905820476772784],[114,-22,77,0.3948625643842933],[114,-22,78,0.40072582291136355],[114,-22,79,0.40612633425105743],[114,-21,64,0.32835121687346674],[114,-21,65,0.3303488048677432],[114,-21,66,0.3347175884623833],[114,-21,67,0.3391124087825264],[114,-21,68,0.34358314366632076],[114,-21,69,0.34817550393744073],[114,-21,70,0.35292117554472496],[114,-21,71,0.3578392603234713],[114,-21,72,0.3629378066330091],[114,-21,73,0.3682152764461614],[114,-21,74,0.37366194703658706],[114,-21,75,0.37926124551065077],[114,-21,76,0.3849910145411561],[114,-21,77,0.3908247077805951],[114,-21,78,0.39673251356114586],[114,-21,79,0.40268240562607405],[114,-20,64,0.3272998092367477],[114,-20,65,0.32695818225806306],[114,-20,66,0.33119858640678645],[114,-20,67,0.3354742509573514],[114,-20,68,0.33983550570335624],[114,-20,69,0.34432993445267934],[114,-20,70,0.34899091273498717],[114,-20,71,0.3538389656707556],[114,-20,72,0.3588832612562048],[114,-20,73,0.36412304858988415],[114,-20,74,0.3695490392239186],[114,-20,75,0.3751447299098285],[114,-20,76,0.38088766510553784],[114,-20,77,0.38675063771650275],[114,-20,78,0.3927028266595928],[114,-20,79,0.3987108699621777],[114,-19,64,0.32609411667809707],[114,-19,65,0.32488559962464664],[114,-19,66,0.3276575214517542],[114,-19,67,0.3318125504265706],[114,-19,68,0.3360633338198218],[114,-19,69,0.34045878060054807],[114,-19,70,0.34503358337447104],[114,-19,71,0.34980946898006954],[114,-19,72,0.3547966291548251],[114,-19,73,0.3599951063384469],[114,-19,74,0.3653961328565157],[114,-19,75,0.37098342179773247],[114,-19,76,0.37673440797723107],[114,-19,77,0.38262143746718386],[114,-19,78,0.38861290427416945],[114,-19,79,0.3946743328493854],[114,-18,64,0.32476918327081766],[114,-18,65,0.3235284955345707],[114,-18,66,0.3241218127289623],[114,-18,67,0.32815118510995356],[114,-18,68,0.33228651839744444],[114,-18,69,0.33657748311181224],[114,-18,70,0.3410597346503426],[114,-18,71,0.3457560262949129],[114,-18,72,0.3506775457674412],[114,-18,73,0.35582521928742306],[114,-18,74,0.36119098146539796],[114,-18,75,0.3667590094143837],[114,-18,76,0.37250691951862785],[114,-18,77,0.378406925365644],[114,-18,78,0.38442695542360306],[114,-18,79,0.3905317291308852],[114,-17,64,0.3233456345966176],[114,-17,65,0.3220586339726053],[114,-17,66,0.32059569672865174],[114,-17,67,0.3244913454037648],[114,-17,68,0.3285028973874497],[114,-17,69,0.3326802139345191],[114,-17,70,0.33705957324500857],[114,-17,71,0.3416646118933285],[114,-17,72,0.34650753171123694],[114,-17,73,0.3515902890289788],[114,-17,74,0.35690576473254665],[114,-17,75,0.36243891361644864],[114,-17,76,0.3681678915413829],[114,-17,77,0.3740651589452436],[114,-17,78,0.3800985593043914],[114,-17,79,0.38623237119947906],[114,-16,64,0.3217797606861542],[114,-16,65,0.32043361494654415],[114,-16,66,0.3187874349971722],[114,-16,67,0.32078177793818036],[114,-16,68,0.3246635277483316],[114,-16,69,0.3287207459680706],[114,-16,70,0.3329899288940218],[114,-16,71,0.33749537640182764],[114,-16,72,0.3422502372918019],[114,-16,73,0.3472575540801089],[114,-16,74,0.3525113058459253],[114,-16,75,0.3579974477347726],[114,-16,76,0.3636949457159388],[114,-16,77,0.3695768051982938],[114,-16,78,0.37561109212465293],[114,-16,79,0.38176194518978424],[114,-15,64,0.3200231467348851],[114,-15,65,0.3186070860276282],[114,-15,66,0.31690755092724293],[114,-15,67,0.3169695176233298],[114,-15,68,0.32071852190874517],[114,-15,69,0.324652690294348],[114,-15,70,0.3288082647821461],[114,-15,71,0.33320990292152275],[114,-15,72,0.33787153515069057],[114,-15,73,0.34279724047677274],[114,-15,74,0.34798213927912086],[114,-15,75,0.35341330197426657],[114,-15,76,0.35907067224206385],[114,-15,77,0.36492800348202914],[114,-15,78,0.3709538071477886],[114,-15,79,0.37711231159582587],[114,-14,64,0.3180397444412705],[114,-14,65,0.31654490067990804],[114,-14,66,0.3147849187393973],[114,-14,67,0.3130135815402876],[114,-14,68,0.31662921269991423],[114,-14,69,0.3204399422916226],[114,-14,70,0.32448124010528423],[114,-14,71,0.3287777532651101],[114,-14,72,0.33334395426571],[114,-14,73,0.3381848276030194],[114,-14,74,0.34329659397469736],[114,-14,75,0.34866747093896794],[114,-14,76,0.35427846884193387],[114,-14,77,0.3601042207524266],[114,-14,78,0.3661138450819427],[114,-14,79,0.3722718395154485],[114,-13,64,0.3158039058217714],[114,-13,65,0.3142231668452486],[114,-13,66,0.312397433827689],[114,-13,67,0.31034254158403896],[114,-13,68,0.3123664074745643],[114,-13,69,0.31605507814800526],[114,-13,70,0.3199832805741881],[114,-13,71,0.3241752427057094],[114,-13,72,0.3286456871854248],[114,-13,73,0.333400313519225],[114,-13,74,0.33843633918599486],[114,-13,75,0.34374309873245873],[114,-13,76,0.349302699778914],[114,-13,77,0.35509073474781416],[114,-13,78,0.36107704702264737],[114,-13,79,0.3672265501501834],[114,-12,64,0.22138351920545962],[114,-12,65,0.2623709663938252],[114,-12,66,0.307137512490957],[114,-12,67,0.3076258824685725],[114,-12,68,0.3079087860718181],[114,-12,69,0.3114778841663337],[114,-12,70,0.3152952677812902],[114,-12,71,0.3193843166738096],[114,-12,72,0.32375967932026306],[114,-12,73,0.32842753959902815],[114,-12,74,0.33338596423997646],[114,-12,75,0.3386253302518454],[114,-12,76,0.3441288313723807],[114,-12,77,0.3498730624272636],[114,-12,78,0.3558286803346044],[114,-12,79,0.36196114035316806],[114,-11,64,0.11293373604799477],[114,-11,65,0.1387791931371899],[114,-11,66,0.16784131050254225],[114,-11,67,0.20009893727132283],[114,-11,68,0.23552381791661153],[114,-11,69,0.2740712103996845],[114,-11,70,0.31040334731254904],[114,-11,71,0.31439152925963404],[114,-11,72,0.3186728001321226],[114,-11,73,0.3232535743120604],[114,-11,74,0.32813259206624856],[114,-11,75,0.3333011685438457],[114,-11,76,0.33874354391854106],[114,-11,77,0.3444373336354686],[114,-11,78,0.35035407752828807],[114,-11,79,0.3564598863882251],[114,-10,64,0.0488926219565846],[114,-10,65,0.06300342264820487],[114,-10,66,0.0796862464384541],[114,-10,67,0.09898764864698167],[114,-10,68,0.12094241657343117],[114,-10,69,0.1455670810701339],[114,-10,70,0.1728473660419032],[114,-10,71,0.2027403721238544],[114,-10,72,0.2351771801183681],[114,-10,73,0.2700655379157102],[114,-10,74,0.30729261654917234],[114,-10,75,0.32775933812035557],[114,-10,76,0.3331348198500298],[114,-10,77,0.33877060977721435],[114,-10,78,0.3446391878830991],[114,-10,79,0.35070742764162954],[114,-9,64,0.03434997432606202],[114,-9,65,0.037172293477030494],[114,-9,66,0.03992970723696568],[114,-9,67,0.04262414286658777],[114,-9,68,0.05215408155183437],[114,-9,69,0.06593411181559408],[114,-9,70,0.08189439360957242],[114,-9,71,0.10005082906553717],[114,-9,72,0.12039164180951631],[114,-9,73,0.1428797312638922],[114,-9,74,0.16745512409070162],[114,-9,75,0.19403750941600953],[114,-9,76,0.22252884520163566],[114,-9,77,0.2528160239484957],[114,-9,78,0.2847735868410432],[114,-9,79,0.31826647645756745],[114,-8,64,0.029725733952938416],[114,-8,65,0.032460594257500336],[114,-8,66,0.03515683198968542],[114,-8,67,0.037813883927409205],[114,-8,68,0.040445600303099974],[114,-8,69,0.04307726069254022],[114,-8,70,0.04573238041097401],[114,-8,71,0.04843142948396045],[114,-8,72,0.051462957270719596],[114,-8,73,0.0642977062106854],[114,-8,74,0.07888670724131275],[114,-8,75,0.09520071979253919],[114,-8,76,0.11319013174310466],[114,-8,77,0.1327874088057626],[114,-8,78,0.15390961965953798],[114,-8,79,0.1764610268495074],[114,-7,64,0.025049838728964706],[114,-7,65,0.02769983301589994],[114,-7,66,0.03033733468278063],[114,-7,67,0.0329593885225114],[114,-7,68,0.0355741647820198],[114,-7,69,0.03820131385382914],[114,-7,70,0.040860233786618454],[114,-7,71,0.043568571330635984],[114,-7,72,0.046341161559145076],[114,-7,73,0.049189148925651564],[114,-7,74,0.05211929016006972],[114,-7,75,0.05513343901832452],[114,-7,76,0.058228212514639326],[114,-7,77,0.06139483788853227],[114,-7,78,0.0724228509818643],[114,-7,79,0.08630460984531702],[114,-6,64,0.020333432182008077],[114,-6,65,0.022901908075561844],[114,-6,66,0.02548343636142135],[114,-6,67,0.028072780613051514],[114,-6,68,0.03067240656797015],[114,-6,69,0.03329615242355874],[114,-6,70,0.03595908928519204],[114,-6,71,0.038675823702083764],[114,-6,72,0.04145922592868223],[114,-6,73,0.04431935514582567],[114,-6,74,0.04726258222678472],[114,-6,75,0.05029091020807382],[114,-6,76,0.05340149220284715],[114,-6,77,0.056586346080641996],[114,-6,78,0.05983226483263788],[114,-6,79,0.0631209211521824],[114,-5,64,0.015587967049973131],[114,-5,65,0.018078897708585416],[114,-5,66,0.02060742357829031],[114,-5,67,0.023166146671550134],[114,-5,68,0.02575190121218184],[114,-5,69,0.0283726517519732],[114,-5,70,0.031039028003163105],[114,-5,71,0.033762451102973545],[114,-5,72,0.03655366862737651],[114,-5,73,0.039421499880770906],[114,-5,74,0.04237179221616396],[114,-5,75,0.04540658868266012],[114,-5,76,0.04852350684226428],[114,-5,77,0.051715328151238124],[114,-5,78,0.05496979686413732],[114,-5,79,0.058269626997184854],[114,-4,64,0.010824778977791199],[114,-4,65,0.013242622956756796],[114,-4,66,0.01572121489693965],[114,-4,67,0.01825112057369445],[114,-4,68,0.020823712607595503],[114,-4,69,0.023441145534089228],[114,-4,70,0.026109592733922715],[114,-4,71,0.028837220949454654],[114,-4,72,0.03163255331550584],[114,-4,73,0.03450305355733146],[114,-4,74,0.03745393226537065],[114,-4,75,0.040487175670760794],[114,-4,76,0.04360079686277473],[114,-4,77,0.046788308914544635],[114,-4,78,0.05003841891847289],[114,-4,79,0.053334941483771346],[114,-3,64,0.006054847656865689],[114,-3,65,0.008404394381655701],[114,-3,66,0.0108361058555105],[114,-3,67,0.013338639465515108],[114,-3,68,0.015898169382699407],[114,-3,69,0.018511228222192633],[114,-3,70,0.02117961859686869],[114,-3,71,0.023908262081258635],[114,-3,72,0.026703414166983484],[114,-3,73,0.029571108698158377],[114,-3,74,0.03251583283540141],[114,-3,75,0.03553943308867511],[114,-3,76,0.038640252453508266],[114,-3,77,0.04181249818750074],[114,-3,78,0.04504583927631598],[114,-3,79,0.048325232166936426],[114,-2,64,0.0012887494643638595],[114,-2,65,0.003574946700126761],[114,-2,66,0.005962696199540256],[114,-2,67,0.008438874223101214],[114,-2,68,0.010984805803088447],[114,-2,69,0.013591708984624768],[114,-2,70,0.016257199083007726],[114,-2,71,0.018983039266006536],[114,-2,72,0.021773233351180393],[114,-2,73,0.024632353735824702],[114,-2,74,0.02756410562964385],[114,-2,75,0.030570128234604928],[114,-2,76,0.03364903299342095],[114,-2,77,0.0367956785131122],[114,-2,78,0.040000681265099855],[114,-2,79,0.04325016067472104],[114,-1,64,-0.003463194210303198],[114,-1,65,-0.0012354345988089942],[114,-1,66,0.0011110033378667603],[114,-1,67,0.00356133826789297],[114,-1,68,0.0060924707000092355],[114,-1,69,0.008690720426475815],[114,-1,70,0.011349790365244873],[114,-1,71,0.014068446111752467],[114,-1,72,0.016848513730693664],[114,-1,73,0.019693115670595226],[114,-1,74,0.02260514607420573],[114,-1,75,0.02558598622051043],[114,-1,76,0.02863446029953808],[114,-1,77,0.03174603119444026],[114,-1,78,0.03491223542862452],[114,-1,79,0.038120355935494496],[114,0,64,-0.008190568707083],[114,0,65,-0.006016590490331823],[114,0,66,-0.0037092339471938504],[114,0,67,-0.0012848214183756733],[114,0,68,0.0012296080264724088],[114,0,69,0.0038159853665306488],[114,0,70,0.0064644567952807045],[114,0,71,0.009171018870413933],[114,0,72,0.011935448753484278],[114,0,73,0.014759472985310895],[114,0,74,0.017645176154027144],[114,0,75,0.020593650269558186],[114,0,76,0.02360388511768856],[114,0,77,0.02667189933414092],[114,0,78,0.02979011141624054],[114,0,79,0.032946949383286614],[114,1,64,-0.012882311308671828],[114,1,65,-0.010757963893600316],[114,1,66,-0.008488056756081887],[114,1,67,-0.006090346989998984],[114,1,68,-0.0035952874523281306],[114,1,69,-0.0010247553234061513],[114,1,70,0.0016082601600878237],[114,1,71,0.0042972733344847445],[114,1,72,0.007040191435899594],[114,1,73,0.009837440479622414],[114,1,74,0.012690329114109188],[114,1,75,0.015599651327946407],[114,1,76,0.01856452834697711],[114,1,77,0.02158148952535224],[114,1,78,0.024643791510577984],[114,1,79,0.027740974455125793],[114,2,64,-0.017525944306464536],[114,2,65,-0.0154478699813476],[114,2,66,-0.013214590588054999],[114,2,67,-0.010845205698739369],[114,2,68,-0.00837303980199216],[114,2,69,-0.005823154935844316],[114,2,70,-0.0032112088648698395],[114,2,71,-5.458370037945694E-4],[114,2,72,0.0021692204996905206],[114,2,73,0.0049332241415966675],[114,2,74,0.007746774367320781],[114,2,75,0.01061038573667527],[114,2,76,0.013523296341735906],[114,2,77,0.016482512341734794],[114,2,78,0.01948208695946659],[114,2,79,0.022512632779806526],[114,3,64,-0.006249473506728705],[114,3,65,-0.012111293694246681],[114,3,66,-0.017876157168139967],[114,3,67,-0.015537737538075407],[114,3,68,-0.013092981700848539],[114,3,69,-0.010569506164181605],[114,3,70,-0.007985149811768398],[114,3,71,-0.005350335624420238],[114,3,72,-0.002670193333966394],[114,3,73,5.3544577170709325E-5],[114,3,74,0.002820875032828326],[114,3,75,0.005632085647792751],[114,3,76,0.008486545583298873],[114,3,77,0.011381725895303414],[114,3,78,0.014312448785660415],[114,3,79,0.01727036466997907],[114,4,64,7.181879435223775E-4],[114,4,65,-0.0010502356812711149],[114,4,66,-0.0033739832774609935],[114,4,67,-0.006456153721320707],[114,4,68,-0.010480442344148853],[114,4,69,-0.015251808454766917],[114,4,70,-0.012702712419429947],[114,4,71,-0.010106500688965007],[114,4,72,-0.00746940949411686],[114,4,73,-0.004793956471380966],[114,4,74,-0.002080602639457815],[114,4,75,6.708078072803939E-4],[114,4,76,0.0034598303759781515],[114,4,77,0.0062844258009668455],[114,4,78,0.009140187694706524],[114,4,79,0.012019791314762886],[114,5,64,9.241508767947758E-4],[114,5,65,-8.570786081495591E-5],[114,5,66,-7.529033713423007E-4],[114,5,67,-0.0013506237856461514],[114,5,68,-0.00213101723639317],[114,5,69,-0.003303515465799944],[114,5,70,-0.005035137163483103],[114,5,71,-0.007455335063843563],[114,5,72,-0.010660619567155145],[114,5,73,-0.009600230352264452],[114,5,74,-0.0069502326851189145],[114,5,75,-0.004267565113078418],[114,5,76,-0.0015523735273349545],[114,5,77,0.0011938730100910814],[114,5,78,0.0039675929595934765],[114,5,79,0.006762516857309269],[114,6,64,0.006074672191203152],[114,6,65,0.0024862902929375466],[114,6,66,2.1913567639406692E-4],[114,6,67,-0.001070117782350424],[114,6,68,-0.0017019602770686941],[114,6,69,-0.001952096681417598],[114,6,70,-0.0020515924993480335],[114,6,71,-0.002191575130824161],[114,6,72,-0.002527725668906991],[114,6,73,-0.003184553075322978],[114,6,74,-0.004259436004182015],[114,6,75,-0.005826418828808276],[114,6,76,-0.006546975712317622],[114,6,77,-0.0038893495566381057],[114,6,78,-0.0012070618345727026],[114,6,79,0.0014947749079721319],[114,7,64,0.02788324556737803],[114,7,65,0.018377270610803353],[114,7,66,0.011251903715479239],[114,7,67,0.006093638170899977],[114,7,68,0.002513617458470829],[114,7,69,1.6980501591150462E-4],[114,7,70,-0.0012330347627851296],[114,7,71,-0.0019479064716830885],[114,7,72,-0.002189957092224502],[114,7,73,-0.0021406455843451166],[114,7,74,-0.001951694055339949],[114,7,75,-0.0017488071256595485],[114,7,76,-0.001635147422251384],[114,7,77,-0.0016945565115145935],[114,7,78,-0.0019945120255778948],[114,7,79,-0.002588813227588936],[114,8,64,0.07806116881184998],[114,8,65,0.05929986957425043],[114,8,66,0.04405937495511059],[114,8,67,0.03185614373235332],[114,8,68,0.022233010021389176],[114,8,69,0.014781524495663513],[114,8,70,0.009142115577834288],[114,8,71,0.004999642491903924],[114,8,72,0.0020791308140576284],[114,8,73,1.4169861588857625E-4],[114,8,74,-0.0010193122927699028],[114,8,75,-0.0015819866974243117],[114,8,76,-0.0016992558218426226],[114,8,77,-0.0015020759373504274],[114,8,78,-0.0011023563772469694],[114,8,79,-5.956290232176743E-4],[114,9,64,0.16831005221905304],[114,9,65,0.13695786457341366],[114,9,66,0.11034749976991524],[114,9,67,0.08792572348975644],[114,9,68,0.06916724392865103],[114,9,69,0.05359714728498889],[114,9,70,0.04079134703088384],[114,9,71,0.03037226096267212],[114,9,72,0.02200465376225319],[114,9,73,0.015391656983798392],[114,9,74,0.01027098086777909],[114,9,75,0.006411331250307569],[114,9,76,0.0036090436334462483],[114,9,77,0.001684945215970515],[114,9,78,4.8145436164241076E-4],[114,9,79,-1.400743822986127E-4],[114,10,64,0.19642438266444343],[114,10,65,0.1929602738108581],[114,10,66,0.18957716144110384],[114,10,67,0.18600201931465354],[114,10,68,0.15501849128537235],[114,10,69,0.12832172344899734],[114,10,70,0.10542292340950254],[114,10,71,0.08588172068458869],[114,10,72,0.06930212097617644],[114,10,73,0.055328624265710856],[114,10,74,0.04364252102538477],[114,10,75,0.03395837975226235],[114,10,76,0.0260207378858412],[114,10,77,0.019601006963210196],[114,10,78,0.014494601603443368],[114,10,79,0.010518300613494343],[114,11,64,0.18953160938227714],[114,11,65,0.1859956981376919],[114,11,66,0.1825350865269812],[114,11,67,0.17912678604043847],[114,11,68,0.17573198645960372],[114,11,69,0.1723201201743669],[114,11,70,0.16887215278926881],[114,11,71,0.16537842592510751],[114,11,72,0.1556791999264551],[114,11,73,0.1316637774618834],[114,11,74,0.11081004676955494],[114,11,75,0.09277742475280715],[114,11,76,0.07725749879124119],[114,11,77,0.063970981080457],[114,11,78,0.05266487229356066],[114,11,79,0.043109843035763186],[114,12,64,0.18265803897423094],[114,12,65,0.1790546620562453],[114,12,66,0.17551971385726822],[114,12,67,0.1720313827609362],[114,12,68,0.1685517317047673],[114,12,69,0.16505037546836857],[114,12,70,0.1615083942706661],[114,12,71,0.1579162479094874],[114,12,72,0.1542718217439057],[114,12,73,0.15057863809670277],[114,12,74,0.14684423483929157],[114,12,75,0.14439326698053026],[114,12,76,0.14603098666760936],[114,12,77,0.14651066585160158],[114,12,78,0.1267103833006915],[114,12,79,0.1093546809154939],[114,13,64,0.1758149092078545],[114,13,65,0.17214960001522675],[114,13,66,0.16854483965370567],[114,13,67,0.16498062678515968],[114,13,68,0.1614204160340342],[114,13,69,0.15783425389161232],[114,13,70,0.15420344906562136],[114,13,71,0.15051858493330028],[114,13,72,0.14677763513919087],[114,13,73,0.14298423486417122],[114,13,74,0.1391461095157937],[114,13,75,0.13527366218591927],[114,13,76,0.13552459265908115],[114,13,77,0.13708354142729115],[114,13,78,0.13881489905160987],[114,13,79,0.1407156372938077],[114,14,64,0.16901692372425034],[114,14,65,0.16529613264410864],[114,14,66,0.16162713095312758],[114,14,67,0.15799230511097687],[114,14,68,0.15435699018683927],[114,14,69,0.15069190035148683],[114,14,70,0.14697866296832043],[114,14,71,0.14320795911312667],[114,14,72,0.1393777338777093],[114,14,73,0.13549155066069316],[114,14,74,0.1315570911590539],[114,14,75,0.12758480239614822],[114,14,76,0.12506107827226529],[114,14,77,0.12636340393404777],[114,14,78,0.1278320103636167],[114,14,79,0.12946483441648074],[114,15,64,0.162291860272481],[114,15,65,0.15852260068210508],[114,15,66,0.15479547714290756],[114,15,67,0.1510957446991092],[114,15,68,0.1473910542364582],[114,15,69,0.14365300714411863],[114,15,70,0.1398636248737982],[114,15,71,0.13601364787706083],[114,15,72,0.13210086691407266],[114,15,73,0.12812858448551157],[114,15,74,0.12410420804003383],[114,15,75,0.12003797626434108],[114,15,76,0.11594181941746401],[114,15,77,0.11570524862710936],[114,15,78,0.11690980952273859],[114,15,79,0.11827196939896631],[114,16,64,0.15568913175263346],[114,16,65,0.15187851236262997],[114,16,66,0.14809917752811821],[114,16,67,0.14433961518626526],[114,16,68,0.14057018152471978],[114,16,69,0.1367636028418356],[114,16,70,0.1329024078232561],[114,16,71,0.12897741083961664],[114,16,72,0.12498618729884853],[114,16,73,0.12093166325431047],[114,16,74,0.1168208208385652],[114,16,75,0.11266352078542055],[114,16,76,0.10847144299521526],[114,16,77,0.10512791938023704],[114,16,78,0.10606435847849392],[114,16,79,0.10715059064972544],[114,17,64,0.14924095827504877],[114,17,65,0.14539604154954638],[114,17,66,0.1415701466437451],[114,17,67,0.1377552419660697],[114,17,68,0.13392473228427157],[114,17,69,0.13005272849706756],[114,17,70,0.12612242259019246],[114,17,71,0.12212477575792062],[114,17,72,0.11805715670526969],[114,17,73,0.11392207664766713],[114,17,74,0.10972602247729042],[114,17,75,0.10547838930122061],[114,17,76,0.1011905132915691],[114,17,77,0.09687480552326332],[114,17,78,0.09530142048712066],[114,17,79,0.09610523378966183],[114,18,64,0.1429565422725471],[114,18,65,0.1390842808677042],[114,18,66,0.13521731720561042],[114,18,67,0.1313512341103097],[114,18,68,0.12746277688761376],[114,18,69,0.12352771488768911],[114,18,70,0.11953009227947585],[114,18,71,0.11546113610930311],[114,18,72,0.11131807250173356],[114,18,73,0.10710302064978797],[114,18,74,0.1028219659479326],[114,18,75,0.09848381340436763],[114,18,76,0.09409952225088311],[114,18,77,0.0896813224499482],[114,18,78,0.08524201358101706],[114,18,79,0.08512959128588793],[114,19,64,0.13682578122776623],[114,19,65,0.13293295070235026],[114,19,66,0.1290303172789279],[114,19,67,0.12511710345124982],[114,19,68,0.12117363144509809],[114,19,69,0.1171776088867335],[114,19,70,0.11311414394527076],[114,19,71,0.10897488324250747],[114,19,72,0.10475701708842253],[114,19,73,0.10046234261134138],[114,19,74,0.0960963860074518],[114,19,75,0.09166758496793384],[114,19,76,0.08718653217351502],[114,19,77,0.0826652805765881],[114,19,78,0.07811671102100062],[114,19,79,0.07420770343338427],[114,20,64,0.13082281756904818],[114,20,65,0.12691594718140123],[114,20,66,0.12298298986624062],[114,20,67,0.11902673097831831],[114,20,68,0.11503124713004159],[114,20,69,0.11097646168827847],[114,20,70,0.10684877201905241],[114,20,71,0.10264042214066428],[114,20,72,0.09834870444201657],[114,20,73,0.09397519879178853],[114,20,74,0.08952505012364248],[114,20,75,0.08500628546884326],[114,20,76,0.08042917129123019],[114,20,77,0.07580561186081482],[114,20,78,0.071148589281935],[114,20,79,0.06647164567052267],[114,21,64,0.12029877662537505],[114,21,65,0.11754207438591263],[114,21,66,0.11470454223599398],[114,21,67,0.1117868532700735],[114,21,68,0.10880811328752342],[114,21,69,0.10488647691290055],[114,21,70,0.10069667187927614],[114,21,71,0.09642106946136816],[114,21,72,0.09205722288967186],[114,21,73,0.08760662377561096],[114,21,74,0.08307413844960854],[114,21,75,0.07846746277519513],[114,21,76,0.0737965962526678],[114,21,77,0.06907333615931661],[114,21,78,0.0643107924036404],[114,21,79,0.05952292369858518],[114,22,64,0.10941560122991129],[114,22,65,0.1065509673477816],[114,22,66,0.10363131778715443],[114,22,67,0.10065436989041729],[114,22,68,0.0976354718821343],[114,22,69,0.09459687810628425],[114,22,70,0.09155647415323129],[114,22,71,0.08852792136973914],[114,22,72,0.0855210356424433],[114,22,73,0.08131401118363153],[114,22,74,0.0767025526411384],[114,22,75,0.07201175561304182],[114,22,76,0.06725142213819177],[114,22,77,0.06243328926179531],[114,22,78,0.057570619987275834],[114,22,79,0.05267779483650781],[114,23,64,0.09847009641145828],[114,23,65,0.09549797218795175],[114,23,66,0.09249673055381216],[114,23,67,0.08946145660218788],[114,23,68,0.08640374498212086],[114,23,69,0.08334304465704201],[114,23,70,0.08029541820373709],[114,23,71,0.0772734653336671],[114,23,72,0.07428650444564669],[114,23,73,0.0713407775122986],[114,23,74,0.0684396776799418],[114,23,75,0.06558399891422109],[114,23,76,0.06075162063815588],[114,23,77,0.05584584006811326],[114,23,78,0.05089105896515264],[114,23,79,0.045902071859122935],[114,24,64,0.08754059397672044],[114,24,65,0.08446230604766015],[114,24,66,0.08138047833066368],[114,24,67,0.07828794889446644],[114,24,68,0.07519262431220591],[114,24,69,0.0721109538604259],[114,24,70,0.06905697826563147],[114,24,71,0.06604204498503127],[114,24,72,0.06307479863637049],[114,24,73,0.060161213969882804],[114,24,74,0.05730467092619465],[114,24,75,0.054506071225227916],[114,24,76,0.05176399583778092],[114,24,77,0.049074902604431134],[114,24,78,0.04423232736534352],[114,24,79,0.03915876044584288],[114,25,64,0.07670613799758282],[114,25,65,0.07352393280018878],[114,25,66,0.0703630388372205],[114,25,67,0.06721448171341832],[114,25,68,0.06408260482342266],[114,25,69,0.060980702174353904],[114,25,70,0.05792061905414246],[114,25,71,0.05491227539893561],[114,25,72,0.05196347421257428],[114,25,73,0.04907977050342647],[114,25,74,0.046264400447874776],[114,25,75,0.04351827034226706],[114,25,76,0.0408400047637336],[114,25,77,0.038226053226138645],[114,25,78,0.035670854491802725],[114,25,79,0.03240947325636695],[114,26,64,0.06604394443429365],[114,26,65,0.06276100987710027],[114,26,66,0.05952311979255599],[114,26,67,0.05631995824633913],[114,26,68,0.05315248638380772],[114,26,69,0.050030731011356355],[114,26,70,0.04696419893194687],[114,26,71,0.043961227870203234],[114,26,72,0.04102862477454049],[114,26,73,0.03817138107314111],[114,26,74,0.03539246475761479],[114,26,75,0.032692688975622025],[114,26,76,0.03007065662784252],[114,26,77,0.02752278028693055],[114,26,78,0.025043376588006566],[114,26,79,0.022624834083358775],[114,27,64,0.05562704585556736],[114,27,65,0.052247517383615986],[114,27,66,0.04893528659688246],[114,27,67,0.04567918995813942],[114,27,68,0.04247703863599035],[114,27,69,0.03933552756529767],[114,27,70,0.03626171674659109],[114,27,71,0.03326223184704522],[114,27,72,0.030342746779240138],[114,27,73,0.027507557865034643],[114,27,74,0.024759249619694237],[114,27,75,0.022098451958188887],[114,27,76,0.019523688399517344],[114,27,77,0.0170313146277844],[114,27,78,0.014615546562305152],[114,27,79,0.012268576895085799],[114,28,64,0.045522125212229175],[114,28,65,0.042051073348545735],[114,28,66,0.038667771310515325],[114,28,67,0.03536071137790584],[114,28,68,0.03212483228733609],[114,28,69,0.028963481756611644],[114,28,70,0.025881202356711656],[114,28,71,0.022882805990753062],[114,28,72,0.01997271729742926],[114,28,73,0.017154421246254107],[114,28,74,0.014430015115441038],[114,28,75,0.011799864774412978],[114,28,76,0.009262364931716225],[114,28,77,0.006813802757431662],[114,28,78,0.004448324049079615],[114,28,79,0.002158000883540803],[114,29,64,0.03578754289085009],[114,29,65,0.032230939233811595],[114,29,66,0.028780466907758893],[114,29,67,0.025424773424989174],[114,29,68,0.02215624039225985],[114,29,69,0.018974902578456423],[114,29,70,0.01588275380167546],[114,29,71,0.012882720936749482],[114,29,72,0.009977886419247352],[114,29,73,0.007170825359142262],[114,29,74,0.00446305760269434],[114,29,75,0.0018546147822515405],[114,29,76,-6.562778972291671E-4],[114,29,77,-0.0030734056669875394],[114,29,78,-0.005402654799211211],[114,29,79,-0.007651990862405658],[114,30,64,0.026471561556935055],[114,30,65,0.02283622012197558],[114,30,66,0.019323111084351797],[114,30,67,0.015921519370393294],[114,30,68,0.012621613495110968],[114,30,69,0.009420197434343268],[114,30,70,0.006316724373247527],[114,30,71,0.0033121966283731386],[114,30,72,4.0828673815903856E-4],[114,30,73,-0.0023934187090246493],[114,30,74,-0.005092052033197756],[114,30,75,-0.007687974054256928],[114,30,76,-0.010183160478156041],[114,30,77,-0.012581465543621141],[114,30,78,-0.01488876368677874],[114,30,79,-0.017112970257407926],[114,31,64,0.017610773587272095],[114,31,65,0.013904264300939773],[114,31,66,0.01033366420613777],[114,31,67,0.006889347843996854],[114,31,68,0.0035596328198372494],[114,31,69,3.382183755485709E-4],[114,31,70,-0.0027779368377814266],[114,31,71,-0.005789762598031337],[114,31,72,-0.008697037360764921],[114,31,73,-0.011499219962580432],[114,31,74,-0.014196152177498983],[114,31,75,-0.01678863186561241],[114,31,76,-0.019278856785745868],[114,31,77,-0.021670739465801604],[114,31,78,-0.023970093833277903],[114,31,79,-0.026184694601645478],[114,32,64,0.009228736181454422],[114,32,65,0.0054592672665246785],[114,32,66,0.001836886296898133],[114,32,67,-0.0016465323852951274],[114,32,68,-0.005004153987147047],[114,32,69,-0.008245220532437173],[114,32,70,-0.011375187028675496],[114,32,71,-0.01439689168580982],[114,32,72,-0.017311577579690898],[114,32,73,-0.02011978223339928],[114,32,74,-0.022822094402723165],[114,32,75,-0.025419777704717716],[114,32,76,-0.027915261072658085],[114,32,77,-0.030312496354392857],[114,32,78,-0.03261718369159269],[114,32,79,-0.03483686562206436],[114,33,64,0.0013348195272048086],[114,33,65,-0.0024889145402774565],[114,33,66,-0.006156881731370258],[114,33,67,-0.009675350817127074],[114,33,68,-0.013058609737803956],[114,33,69,-0.016318650166881405],[114,33,70,-0.019463230197336614],[114,33,71,-0.022497043485417714],[114,33,72,-0.025422783421523477],[114,33,73,-0.028242073817258784],[114,33,74,-0.030956265296737312],[114,33,75,-0.03356709693891047],[114,33,76,-0.03607722306823907],[114,33,77,-0.03725601575611711],[114,33,78,-0.03387818045679761],[114,33,79,-0.030590614628821726],[114,34,64,-0.006076726331662167],[114,34,65,-0.009945734658433323],[114,34,66,-0.013652727106443552],[114,34,67,-0.01720182147196588],[114,34,68,-0.02060809207489689],[114,34,69,-0.02388607276880905],[114,34,70,-0.027045691560326938],[114,34,71,-0.030093418224662626],[114,34,72,-0.03303335410301568],[114,34,73,-0.035868188918731],[114,34,74,-0.03404958747182883],[114,34,75,-0.030274357989497364],[114,34,76,-0.026576681944159884],[114,34,77,-0.02296214387264669],[114,34,78,-0.019437232124272195],[114,34,79,-0.016009505624543244],[114,35,64,-0.013027480018440313],[114,35,65,-0.016932706321912207],[114,35,66,-0.020671958702956534],[114,35,67,-0.024246981356806186],[114,35,68,-0.027673339909376926],[114,35,69,-0.030967902670181638],[114,35,70,-0.034142621056343574],[114,35,71,-0.032111637918081144],[114,35,72,-0.027956592023171273],[114,35,73,-0.023869512773908686],[114,35,74,-0.01985659873386328],[114,35,75,-0.015923373391422805],[114,35,76,-0.012075271810126692],[114,35,77,-0.008318094780911084],[114,35,78,-0.004658330874980275],[114,35,79,-0.0011033471066961868],[114,36,64,-0.0195553265945273],[114,36,65,-0.02348792484244979],[114,36,66,-0.027252678988709356],[114,36,67,-0.03084881524310686],[114,36,68,-0.03141296001970387],[114,36,69,-0.02692859484143935],[114,36,70,-0.02248356661783453],[114,36,71,-0.01809273658742049],[114,36,72,-0.013767436180876622],[114,36,73,-0.009516454890006755],[114,36,74,-0.005346899649077497],[114,36,75,-0.0012649250418415273],[114,36,76,0.0027236660102690612],[114,36,77,0.006612951091129909],[114,36,78,0.010396546355238524],[114,36,79,0.014067393200504728],[114,37,64,-0.025714698223033162],[114,37,65,-0.02966635631323782],[114,37,66,-0.027017173247412426],[114,37,67,-0.022341107252382402],[114,37,68,-0.017658576179718496],[114,37,69,-0.012996999488050668],[114,37,70,-0.008377838820801458],[114,37,71,-0.0038176158392584443],[114,37,72,6.709742129411159E-4],[114,37,73,0.0050780725607977644],[114,37,74,0.009395791666201594],[114,37,75,0.013617475473007732],[114,37,76,0.01773708555398182],[114,37,77,0.02174871325964025],[114,37,78,0.025646217654352092],[114,37,79,0.029422988724980434],[114,38,64,-0.02305422664879115],[114,38,65,-0.018262744764364586],[114,38,66,-0.01344033768794642],[114,38,67,-0.008588696688953831],[114,38,68,-0.0037309031146770507],[114,38,69,0.0011035098328916004],[114,38,70,0.005891235632454861],[114,38,71,0.010614226384962327],[114,38,72,0.015258576641687633],[114,38,73,0.01981352710909964],[114,38,74,0.024270589404538977],[114,38,75,0.028622792702144108],[114,38,76,0.032864052781157935],[114,38,77,0.036988663670375704],[114,38,78,0.04099091177386502],[114,38,79,0.044864812068327015],[114,39,64,-0.009725270331354691],[114,39,65,-0.004754243397724434],[114,39,66,2.4397988779800706E-4],[114,39,67,0.005270114209954235],[114,39,68,0.010300835754090047],[114,39,69,0.015304480199413948],[114,39,70,0.020255932778892732],[114,39,71,0.025135703131188625],[114,39,72,0.029928798504092125],[114,39,73,0.03462371345332648],[114,39,74,0.03921153729554265],[114,39,75,0.04368518024622095],[114,39,76,0.04803871885183599],[114,39,77,0.05226686101265807],[114,39,78,0.056364530588644206],[114,39,79,0.060326571290136646],[114,40,64,0.003664863550908325],[114,40,65,0.008818487140510648],[114,40,66,0.013994459959821395],[114,40,67,0.01919597204156309],[114,40,68,0.02439942310730883],[114,40,69,0.02957091153423272],[114,40,70,0.03468346427526121],[114,40,71,0.0397161509652781],[114,40,72,0.04465293990706627],[114,40,73,0.04948166734015596],[114,40,74,0.054193121347909545],[114,40,75,0.05878024143584636],[114,40,76,0.06323743449807107],[114,40,77,0.06756000758028671],[114,40,78,0.07174371754785898],[114,40,79,0.07578443747980815],[114,41,64,0.017066652230032175],[114,41,65,0.022407177570870972],[114,41,66,0.027764270146584665],[114,41,67,0.033143702575747135],[114,41,68,0.03852155067280706],[114,41,69,0.04386151454460838],[114,41,70,0.049134653315891834],[114,41,71,0.05431853775498665],[114,41,72,0.05939608439951012],[114,41,73,0.06435449974227261],[114,41,74,0.06918433593871406],[114,41,75,0.07387865918048063],[114,41,76,0.07843233156861101],[114,41,77,0.08284140701576061],[114,41,78,0.08710264141045723],[114,41,79,0.0912131169915816],[114,42,64,0.03042800365342866],[114,42,65,0.03596048989477616],[114,42,66,0.04150305992841831],[114,42,67,0.047064180035751635],[114,42,68,0.05261954371055945],[114,42,69,0.05813026596893494],[114,42,70,0.06356529342209745],[114,42,71,0.06890059708414811],[114,42,72,0.07411798215272705],[114,42,73,0.07920400446185265],[114,42,74,0.08414899518070532],[114,42,75,0.0889461950213111],[114,42,76,0.09359099891221595],[114,42,77,0.09808031179574192],[114,42,78,0.10241201591373007],[114,42,79,0.10658454966475485],[114,43,64,0.043698187831003196],[114,43,65,0.04942793387029509],[114,43,66,0.055160836514410685],[114,43,67,0.06090814175115539],[114,43,68,0.06664509257355815],[114,43,69,0.07233002951857717],[114,43,70,0.07792962711622548],[114,43,71,0.08341813044595776],[114,43,72,0.0887761403421862],[114,43,73,0.09398950158157537],[114,43,74,0.09904829574115082],[114,43,75,0.10394594011213511],[114,43,76,0.10867839375451803],[114,43,77,0.11324347148308946],[114,43,78,0.11764026628731537],[114,43,79,0.12186868040895758],[114,44,64,0.05683196660228995],[114,44,65,0.0627639782023772],[114,44,66,0.06869203039740879],[114,44,67,0.07463018544433597],[114,44,68,0.08055315765924975],[114,44,69,0.08641633902173607],[114,44,70,0.09218397392842427],[114,44,71,0.09782844449489826],[114,44,72,0.10332903319366984],[114,44,73,0.10867078435576612],[114,44,74,0.1138434663392593],[114,44,75,0.11884063587176602],[114,44,76,0.12341478277767123],[114,44,77,0.12761068507435894],[114,44,78,0.13167836829366109],[114,44,79,0.13561655604814565],[114,45,64,0.06979392482405747],[114,45,65,0.07593235950106583],[114,45,66,0.08205975367995723],[114,45,67,0.08819295221947634],[114,45,68,0.09430605075770253],[114,45,69,0.10030921054385873],[114,45,70,0.10568721680912793],[114,45,71,0.11091129961412835],[114,45,72,0.11599874817436417],[114,45,73,0.12096118706584345],[114,45,74,0.12580564120821758],[114,45,75,0.13053550220086885],[114,45,76,0.13515139466985004],[114,45,77,0.13965194156490862],[114,45,78,0.1440344276207907],[114,45,79,0.14829536046547118],[114,46,64,0.07924284344592361],[114,46,65,0.08592059788208321],[114,46,66,0.09236347814708482],[114,46,67,0.09854375099073248],[114,46,68,0.10448038339187593],[114,46,69,0.11021719506298733],[114,46,70,0.11578870202690536],[114,46,71,0.1212207212206945],[114,46,72,0.12653164359980423],[114,46,73,0.13173361739328887],[114,46,74,0.13683363949722133],[114,46,75,0.1418345532672775],[114,46,76,0.14673595124525246],[114,46,77,0.15153498162595969],[114,46,78,0.1562270575372956],[114,46,79,0.16080646846718735],[114,47,64,0.08829479476623373],[114,47,65,0.0951083344372365],[114,47,66,0.10169658353442776],[114,47,67,0.10802913962275636],[114,47,68,0.11412553661236044],[114,47,69,0.12003254033640344],[114,47,70,0.12578707746766],[114,47,71,0.13141677586700318],[114,47,72,0.13694124601255261],[114,47,73,0.1423732786049856],[114,47,74,0.14771995624664172],[114,47,75,0.1529836773522628],[114,47,76,0.15816309071021994],[114,47,77,0.16325393937293212],[114,47,78,0.16824981281074325],[114,47,79,0.17314280651488734],[114,48,64,0.09734469897124229],[114,48,65,0.10428404667877207],[114,48,66,0.11100686584560787],[114,48,67,0.11748035342644325],[114,48,68,0.12372471477782607],[114,48,69,0.12978966833047081],[114,48,70,0.13571460288393916],[114,48,71,0.14152904671455074],[114,48,72,0.14725394767146704],[114,48,73,0.152902876191051],[114,48,74,0.15848314905455738],[114,48,75,0.16399687195854284],[114,48,76,0.1694418992133469],[114,48,77,0.1748127091307625],[114,48,78,0.18010119390459997],[114,48,79,0.18529736302745065],[114,49,64,0.10643534150149758],[114,49,65,0.11349039656827808],[114,49,66,0.12033644849461432],[114,49,67,0.12693860261649814],[114,49,68,0.13331781413761767],[114,49,69,0.1395266892735672],[114,49,70,0.14560708150995186],[114,49,71,0.15159048254015214],[114,49,72,0.15749928975661937],[114,49,73,0.16334800401778318],[114,49,74,0.1691443554647989],[114,49,75,0.1748903553886838],[114,49,76,0.18058327237716318],[114,49,77,0.18621653120007137],[114,49,78,0.19178053311958118],[114,49,79,0.19726339653723193],[114,50,64,0.11559778366483389],[114,50,65,0.12275858362499707],[114,50,66,0.12971634329055903],[114,50,67,0.1364344239099639],[114,50,68,0.14293458386653748],[114,50,69,0.14927218304545506],[114,50,70,0.1554914911403606],[114,50,71,0.16162599401129346],[114,50,72,0.16769963625913867],[114,50,73,0.17372800192965143],[114,50,74,0.17971943109586824],[114,50,75,0.18567607027413122],[114,50,76,0.1915948548385682],[114,50,77,0.1974684218101543],[114,50,78,0.20328595160672372],[114,50,79,0.20903393755000987],[114,51,64,0.12485142654319313],[114,51,65,0.13210836827317413],[114,51,66,0.13916643123983763],[114,51,67,0.14598761334410942],[114,51,68,0.15259450548842968],[114,51,69,0.15904502240330765],[114,51,70,0.16538575083916263],[114,51,71,0.17165216583084109],[114,51,72,0.17786983555266445],[114,51,73,0.18405557252212196],[114,51,74,0.19021852890356528],[114,51,75,0.19636123384813256],[114,51,76,0.2024805709948991],[114,51,77,0.2085686944495165],[114,51,78,0.21461388174782706],[114,51,79,0.2206013225037856],[114,52,64,0.1342042182179654],[114,52,65,0.14154823931630714],[114,52,66,0.14869558746772304],[114,52,67,0.15560730298737796],[114,52,68,0.16230681578328301],[114,52,69,0.16885433874142386],[114,52,70,0.17529862840603666],[114,52,71,0.18167710682577562],[114,52,72,0.18801701591628392],[114,52,73,0.1943365266150865],[114,52,74,0.20064580061206272],[114,52,75,0.20694800260078675],[114,52,76,0.21324026116255143],[114,52,77,0.21951457656466883],[114,52,78,0.2257586739252719],[114,52,79,0.23195680036917807],[114,53,64,0.14365300815074353],[114,53,65,0.15107572946920775],[114,53,66,0.15830195426147875],[114,53,67,0.1652921856090701],[114,53,68,0.1720706772995592],[114,53,69,0.17869963454370416],[114,53,70,0.18522979276846133],[114,53,71,0.1917004421218246],[114,53,72,0.19814051908310562],[114,53,73,0.2045696613882199],[114,53,74,0.21099922411477715],[114,53,75,0.21743325491003035],[114,53,76,0.22386942648800146],[114,53,77,0.23029992466923538],[114,53,78,0.23671229038544545],[114,53,79,0.2430902142227718],[114,54,64,0.15318405249003156],[114,54,65,0.16067788281969878],[114,54,66,0.16797336618603964],[114,54,67,0.17503089133128408],[114,54,68,0.18187550056106153],[114,54,69,0.1885710466660147],[114,54,70,0.19517001545689044],[114,54,71,0.20171345154599035],[114,54,72,0.20823197589979087],[114,54,73,0.21474677516141433],[114,54,74,0.22127056067812934],[114,54,75,0.2278084952830252],[114,54,76,0.2343590859993463],[114,54,77,0.2409150409597124],[114,54,78,0.24746408895854882],[114,54,79,0.25398976018562736],[114,55,64,0.1627736739810599],[114,55,65,0.17033187800513686],[114,55,66,0.17768793114433315],[114,55,67,0.18480252021625168],[114,55,68,0.19170142199676796],[114,55,69,0.1984497645350094],[114,55,70,0.20510152528070905],[114,55,71,0.21169935837084786],[114,55,72,0.2182755281658743],[114,55,73,0.22485282279846663],[114,55,74,0.231445445787439],[114,55,75,0.23805988385895463],[114,55,76,0.24469574921239817],[114,55,77,0.25134659456824476],[114,55,78,0.25800069943815424],[114,55,79,0.26464182616459775],[114,56,64,0.1723890800343672],[114,56,65,0.18000581077362005],[114,56,66,0.18741477114623345],[114,56,67,0.19457733464234492],[114,56,68,0.2015199415313766],[114,56,69,0.20830860726943587],[114,56,70,0.21499852025314106],[114,56,71,0.22163377245661375],[114,56,72,0.22824820067596538],[114,56,73,0.2348662156787937],[114,56,74,0.24150361745302687],[114,56,75,0.24816839481491393],[114,56,76,0.2548615077071945],[114,56,77,0.26157765059476645],[114,56,78,0.26830599544477973],[114,56,79,0.27503091286242404],[114,57,64,0.18198934236035194],[114,57,65,0.18965963945680064],[114,57,66,0.19711492641394834],[114,57,67,0.20431761519360467],[114,57,68,0.21129472365468008],[114,57,69,0.2181127636201908],[114,57,70,0.22482784071443354],[114,57,71,0.23148529175997878],[114,57,72,0.23812042741349818],[114,57,73,0.2447592701206111],[114,57,74,0.2514192857465854],[114,57,75,0.2581101072818179],[114,57,76,0.2648342490689061],[114,57,77,0.27158781005119564],[114,57,78,0.2783611645993374],[114,57,79,0.2851396395342052],[114,58,64,0.1915265414016279],[114,58,65,0.19924629671066166],[114,58,66,0.2067424262872847],[114,58,67,0.2139786836305716],[114,58,68,0.2209825656391385],[114,58,69,0.22782069848616784],[114,58,70,0.23454980747417034],[114,58,71,0.24121626606214547],[114,58,72,0.24785673574109315],[114,58,73,0.25449880804917513],[114,58,74,0.26116164726237573],[114,58,75,0.2678566323163687],[114,58,76,0.27458799654084876],[114,58,77,0.28135346381832815],[114,58,78,0.2881448798138612],[114,58,79,0.29494883696201873],[114,59,64,0.20094707859222138],[114,59,65,0.20871297068188296],[114,59,66,0.2162455301990985],[114,59,67,0.22351009632374896],[114,59,68,0.23053453639636967],[114,59,69,0.23738522959339348],[114,59,70,0.24411922863454744],[114,59,71,0.2507837266214305],[114,59,72,0.257416592298765],[114,59,73,0.26404691358426013],[114,59,74,0.27069554809369295],[114,59,75,0.2773756793869474],[114,59,76,0.2840933776653574],[114,59,77,0.29084816366039357],[114,59,78,0.29763357446714034],[114,59,79,0.3044377300949321],[114,60,64,0.2101931588192747],[114,60,65,0.2180025581033681],[114,60,66,0.2255681413382325],[114,60,67,0.23285701088028124],[114,60,68,0.23989728881594363],[114,60,69,0.2467547772825184],[114,60,70,0.253486578120559],[114,60,71,0.26014048482815677],[114,60,72,0.2667554137034852],[114,60,73,0.2733618486147437],[114,60,74,0.2799822983214823],[114,60,75,0.28663176525151995],[114,60,76,0.29331822462306717],[114,60,77,0.30004311279193463],[114,60,78,0.3068018236975727],[114,60,79,0.313584212281022],[114,61,64,0.21920443361476558],[114,61,65,0.22705527986850588],[114,61,66,0.23465138356045934],[114,61,67,0.24196171653728557],[114,61,68,0.24901453617484656],[114,61,69,0.25587477799971425],[114,61,70,0.2625993365012236],[114,61,71,0.26923639040929176],[114,61,72,0.275825732528276],[114,61,73,0.28239911773110615],[114,61,74,0.2889806282363695],[114,61,75,0.29558705525444706],[114,61,76,0.3022282960570234],[114,61,77,0.30890776549705945],[114,61,78,0.3156228209824621],[114,61,79,0.32236519988813644],[114,62,64,0.22791983145521527],[114,62,65,0.235810485817445],[114,62,66,0.24343536862297224],[114,62,67,0.2507653557388084],[114,62,68,0.2578287203750265],[114,62,69,0.2646892895779368],[114,62,70,0.2714035224982836],[114,62,71,0.2780197778605452],[114,62,72,0.28457854748471934],[114,62,73,0.29111271164511954],[114,62,74,0.2976478155836344],[114,62,75,0.3042023664438295],[114,62,76,0.3107881498455555],[114,62,77,0.31741056527716355],[114,62,78,0.32406897944292623],[114,62,79,0.3307570966688015],[114,63,64,0.23627958245317224],[114,63,65,0.24420865621160662],[114,63,66,0.2518611614022437],[114,63,67,0.2592098447423742],[114,63,68,0.2662828800435868],[114,63,69,0.2731427965248663],[114,63,70,0.27984542356483305],[114,63,71,0.2864391096311314],[114,63,72,0.2929648664466737],[114,63,73,0.2994565378113041],[114,63,74,0.3059409925822547],[114,63,75,0.3124383412536392],[114,63,76,0.3189621755159564],[114,63,77,0.32551983012102226],[114,63,78,0.33211266632485315],[114,63,79,0.33873637613282187],[114,64,64,0.24289021776894734],[114,64,65,0.25219356953098515],[114,64,66,0.2598729125683246],[114,64,67,0.2672399625745444],[114,64,68,0.27432268766923695],[114,64,69,0.28118218434463044],[114,64,70,0.287873494405677],[114,64,71,0.2944447847615277],[114,64,72,0.30093741082140846],[114,64,73,0.3073860065341126],[114,64,74,0.3138186007471968],[114,64,75,0.320256759489234],[114,64,76,0.32671575370910666],[114,64,77,0.3332047519401715],[114,64,78,0.3397270372932019],[114,64,79,0.3462802481223565],[114,65,64,0.24823842865321635],[114,65,65,0.2577913247122759],[114,65,66,0.2674201744199661],[114,65,67,0.2748056242986669],[114,65,68,0.2818986720007675],[114,65,69,0.2887588993774673],[114,65,70,0.2954404401699968],[114,65,71,0.3019911299320957],[114,65,72,0.30845249842776434],[114,65,73,0.3148597898910642],[114,65,74,0.32124201098003224],[114,65,75,0.32762200617684856],[114,65,76,0.3340165603093117],[114,65,77,0.3404365277943183],[114,65,78,0.34688698813142904],[114,65,79,0.3533674271057913],[114,66,64,0.25341542269007383],[114,66,65,0.2630325446341918],[114,66,66,0.27274994862078933],[114,66,67,0.2818643408896786],[114,66,68,0.2889686281544059],[114,66,69,0.29583129675549663],[114,66,70,0.3025054870580503],[114,66,71,0.3090385757934039],[114,66,72,0.31547210786071767],[114,66,73,0.3218417565337398],[114,66,74,0.32817731204171213],[114,66,75,0.3345026984084774],[114,66,76,0.340836018351287],[114,66,77,0.34718962596047764],[114,66,78,0.3535702268021111],[114,66,79,0.35997900500991825],[114,67,64,0.2584386299766539],[114,67,65,0.2681070572055117],[114,67,66,0.27788448054372566],[114,67,67,0.28778066900596344],[114,67,68,0.2955002164986271],[114,67,69,0.3023671776895148],[114,67,70,0.30903684169825696],[114,67,71,0.31555602006495365],[114,67,72,0.3219661259425039],[114,67,73,0.328303084058084],[114,67,74,0.3345972691634455],[114,67,75,0.3408734729719753],[114,67,76,0.34715089949438005],[114,67,77,0.35344318860050794],[114,67,78,0.3597584675512782],[114,67,79,0.3660994301639689],[114,68,64,0.26331256228003097],[114,68,65,0.27302019918150544],[114,68,66,0.2828441652395432],[114,68,67,0.2927929325729378],[114,68,68,0.30147375097071755],[114,68,69,0.30834651688972237],[114,68,70,0.3150143402441811],[114,68,71,0.32152337849077595],[114,68,72,0.32791477947464537],[114,68,73,0.33422455026607545],[114,68,74,0.3404834542027227],[114,68,75,0.3467169362316908],[114,68,76,0.3529450765576924],[114,68,77,0.35918257251672625],[114,68,78,0.36543874850827734],[114,68,79,0.371717593734978],[114,69,64,0.26802574524042627],[114,69,65,0.2777616066366724],[114,69,66,0.28761978067531985],[114,69,67,0.2976074468369131],[114,69,68,0.3068851800342481],[114,69,69,0.3137643839105326],[114,69,70,0.32043229152252034],[114,69,71,0.326934328464219],[114,69,72,0.333311256506355],[114,69,73,0.3395990088429894],[114,69,74,0.345828553069196],[114,69,75,0.3520257820655751],[114,69,76,0.3582114328762121],[114,69,77,0.36440103357844145],[114,69,78,0.3706048780545205],[114,69,79,0.3768280284890012],[114,70,64,0.27254629615864157],[114,70,65,0.28229964305265864],[114,70,66,0.2921800287324843],[114,70,67,0.3021932324517902],[114,70,68,0.3117552585826155],[114,70,69,0.3186412161788741],[114,70,70,0.3253107360300211],[114,70,71,0.33180839976803517],[114,70,72,0.33817443956673676],[114,70,73,0.3444445458636203],[114,70,74,0.3506497022198204],[114,70,75,0.3568160475633953],[114,70,76,0.3629647659715843],[114,70,77,0.3691120040587337],[114,70,78,0.3752688159472854],[114,70,79,0.3814411357114931],[114,71,64,0.2768301845544031],[114,71,65,0.28658734174944867],[114,71,66,0.29647498652756626],[114,71,67,0.3064973846952902],[114,71,68,0.3161311894082192],[114,71,69,0.3230269147655885],[114,71,70,0.32970187485596025],[114,71,71,0.33619955946788355],[114,71,72,0.3425594131911278],[114,71,73,0.348816623161537],[114,71,74,0.35500193281961223],[114,71,75,0.361141481982938],[114,71,76,0.3672566734444337],[114,71,77,0.37336406622049967],[114,71,78,0.379475295484549],[114,71,79,0.385597019134042],[114,72,64,0.2808423163084748],[114,72,65,0.29058670259955643],[114,72,66,0.3004637164464951],[114,72,67,0.31047602355510856],[114,72,68,0.32005244893983253],[114,72,69,0.326963662045436],[114,72,70,0.33365025897903516],[114,72,71,0.34015427819027244],[114,72,72,0.3465140216643439],[114,72,73,0.35276383231763325],[114,72,74,0.3589338953335854],[114,72,75,0.36505006377511073],[114,72,76,0.37113370872588913],[114,72,77,0.3772015941289429],[114,72,78,0.3832657764057791],[114,72,79,0.3893335288551019],[114,73,64,0.2845566752651545],[114,73,65,0.2942695548030289],[114,73,66,0.3041158891826524],[114,73,67,0.3140966911949189],[114,73,68,0.32354764630667676],[114,73,69,0.3304820431719495],[114,73,70,0.3371882237340183],[114,73,71,0.34370634942924555],[114,73,72,0.3500731650805802],[114,73,73,0.35632177749300187],[114,73,74,0.36248145465121134],[114,73,75,0.36857744586856095],[114,73,76,0.3746308231602591],[114,73,77,0.3806583440374208],[114,73,78,0.38667233584057425],[114,73,79,0.392680601653527],[114,74,64,0.2879533352662929],[114,74,65,0.29761452623107315],[114,74,66,0.30740871673530457],[114,74,67,0.31733525343851965],[114,74,68,0.32663766493096],[114,74,69,0.3336041892745978],[114,74,70,0.34033900638616704],[114,74,71,0.34687994848431764],[114,74,72,0.35326176257802466],[114,74,73,0.3595159034713993],[114,74,74,0.36567034254675435],[114,74,75,0.37174939265952023],[114,74,76,0.3777735494149015],[114,74,77,0.3837593490314955],[114,74,78,0.3897192429304169],[114,74,79,0.3956614891213947],[114,75,64,0.2910155724464887],[114,75,65,0.30060411105195517],[114,75,66,0.3103239811062046],[114,75,67,0.32017289390181525],[114,75,68,0.3293387140155229],[114,75,69,0.3363468355479154],[114,75,70,0.3431197851714375],[114,75,71,0.3496926212499615],[114,75,72,0.35609765574765073],[114,75,73,0.36236427616264966],[114,75,74,0.36851877679316164],[114,75,75,0.3745841996217032],[114,75,76,0.3805801850565546],[114,75,77,0.3865228327211797],[114,75,78,0.3924245724315146],[114,75,79,0.39829404544900915],[114,76,64,0.2937270830819524],[114,76,65,0.30322184098572524],[114,76,66,0.3128451640740867],[114,76,67,0.32259320616793696],[114,76,68,0.331665284544724],[114,76,69,0.3387242889132242],[114,76,70,0.34554463461114],[114,76,71,0.35215819787136443],[114,76,72,0.35859444752385894],[114,76,73,0.36488031125975573],[114,76,74,0.3710400431013254],[114,76,75,0.3770950922797525],[114,76,76,0.38306397369767853],[114,76,77,0.38896214012643315],[114,76,78,0.3948018562575208],[114,76,79,0.40059207469554037],[114,77,64,0.2960693123452979],[114,77,65,0.305449565607816],[114,77,66,0.31495468351474837],[114,77,67,0.3245793895038548],[114,77,68,0.3336330042979998],[114,77,69,0.3407512997988504],[114,77,70,0.3476273917587846],[114,77,71,0.35428962611436426],[114,77,72,0.3607642716826054],[114,77,73,0.3670754465463211],[114,77,74,0.3732450358478586],[114,77,75,0.3792926010706053],[114,77,76,0.38523528088924913],[114,77,77,0.3910876836687323],[114,77,78,0.3968617716866734],[114,77,79,0.40256673714585456],[114,78,64,0.2980188993479039],[114,78,65,0.3072648471644171],[114,78,66,0.31663124179161767],[114,78,67,0.32611155368911693],[114,78,68,0.33526138628743507],[114,78,69,0.342445832480168],[114,78,70,0.34938442791529123],[114,78,71,0.35610171915861355],[114,78,72,0.36262048791658813],[114,78,73,0.36896175317815305],[114,78,74,0.37514475336608283],[114,78,75,0.3811869084144051],[114,78,76,0.38710376172127414],[114,78,77,0.39290890195618844],[114,78,78,0.39861386472498866],[114,78,79,0.4042280141164893],[114,79,64,0.29956493579981036],[114,79,65,0.3086579526941255],[114,79,66,0.31786632224310496],[114,79,67,0.3271824686900742],[114,79,68,0.3365590996281923],[114,79,69,0.34381558564709985],[114,79,70,0.3508226481651677],[114,79,71,0.3576008385476826],[114,79,72,0.36416922197343826],[114,79,73,0.37054547153376777],[114,79,74,0.376745929425132],[114,79,75,0.38278563494585965],[114,79,76,0.3886783190761246],[114,79,77,0.39443636548469085],[114,79,78,0.4000707378645602],[114,79,79,0.4055908735529338],[114,80,64,0.30076247250009225],[114,80,65,0.3096847474593031],[114,80,66,0.31871585381021506],[114,80,67,0.32784732715075876],[114,80,68,0.3370541190044036],[114,80,69,0.3448141663533221],[114,80,70,0.3518995873768089],[114,80,71,0.35874949878068746],[114,80,72,0.36537898971769783],[114,80,73,0.37180207576548296],[114,80,74,0.37803185856308824],[114,80,75,0.38408063755480065],[114,80,76,0.3899599734002244],[114,80,77,0.39568070271364114],[114,80,78,0.401252903893097],[114,80,79,0.4066858138905112],[114,81,64,0.3016668560281243],[114,81,65,0.31040175401872255],[114,81,66,0.3192368215661698],[114,81,67,0.328162810296537],[114,81,68,0.33715649065365133],[114,81,69,0.3453943162502406],[114,81,70,0.3525714131186116],[114,81,71,0.35950832059864174],[114,81,72,0.3662158695261988],[114,81,73,0.37270405012613866],[114,81,74,0.3789822937146142],[114,81,75,0.3850596902631568],[114,81,76,0.39094514110324075],[114,81,77,0.39664744619886516],[114,81,78,0.40217532555587876],[114,81,79,0.4075373744702239],[114,82,64,0.30231526861865315],[114,82,65,0.31084782993902643],[114,82,66,0.3194693053889407],[114,82,67,0.3281697304718911],[114,82,68,0.33692754143784387],[114,82,69,0.34552325722765675],[114,82,70,0.35280690802463416],[114,82,71,0.35984841787583827],[114,82,72,0.36665408529639215],[114,82,73,0.3732294896281191],[114,82,74,0.37957992090649356],[114,82,75,0.385710727894275],[114,82,76,0.39162758321388585],[114,82,77,0.397336664708987],[114,82,78,0.4028447523556723],[114,82,79,0.4081592402247694],[114,83,64,0.3027292284315094],[114,83,65,0.3110465689352601],[114,83,66,0.31943874957114543],[114,83,67,0.32789513344020893],[114,83,68,0.3363956038619644],[114,83,69,0.344919607658775],[114,83,70,0.3525860678892373],[114,83,71,0.35975027320521297],[114,83,72,0.3666751731793715],[114,83,73,0.3733615653134552],[114,83,74,0.3798101241458183],[114,83,75,0.3860219054664692],[114,83,76,0.3919987482310701],[114,83,77,0.39774357294235185],[114,83,78,0.40326057551082806],[114,83,79,0.4085553158401495],[114,84,64,0.30291700294330776],[114,84,65,0.3110086185179549],[114,84,66,0.3191581533864448],[114,84,67,0.3273543275015594],[114,84,68,0.33557819922573834],[114,84,69,0.3438123830692773],[114,84,70,0.35189875232433115],[114,84,71,0.3592026592641754],[114,84,72,0.36626718829097216],[114,84,73,0.3730880250006613],[114,84,74,0.3796607828299417],[114,84,75,0.3859816888734592],[114,84,76,0.3920481468538422],[114,84,77,0.39785917558575656],[114,84,78,0.4034157215762068],[114,84,79,0.4087208446934481],[114,85,64,0.3013000904188504],[114,85,65,0.3101042639029235],[114,85,66,0.3186301764912413],[114,85,67,0.32655283352394],[114,85,68,0.3344837998561478],[114,85,69,0.3424084005668182],[114,85,70,0.350316361218311],[114,85,71,0.3582004775206582],[114,85,72,0.365423952804286],[114,85,73,0.3724007304010325],[114,85,74,0.3791221020612757],[114,85,75,0.385578976739724],[114,85,76,0.3917637580107908],[114,85,77,0.3976709447083133],[114,85,78,0.4032975833440922],[114,85,79,0.40864357086878317],[114,86,64,0.29905990761578705],[114,86,65,0.30791407142657606],[114,86,66,0.316560576119584],[114,86,67,0.32500163024505135],[114,86,68,0.3331135154917287],[114,86,69,0.3407124711700411],[114,86,70,0.3482783486859719],[114,86,71,0.35580844040210263],[114,86,72,0.36330259989532426],[114,86,73,0.3707618932817931],[114,86,74,0.37818647680023487],[114,86,75,0.38480325381952196],[114,86,76,0.39113246601793716],[114,86,77,0.3971635298178099],[114,86,78,0.40288898690099606],[114,86,79,0.4083049427368793],[114,87,64,0.29638913885912416],[114,87,65,0.3052844016801396],[114,87,66,0.313995796593219],[114,87,67,0.32252625231883564],[114,87,68,0.3308820840105933],[114,87,69,0.3387241785128024],[114,87,70,0.345932849761922],[114,87,71,0.3530903209579278],[114,87,72,0.36020162312057535],[114,87,73,0.3672735753233393],[114,87,74,0.3743133261106172],[114,87,75,0.3813270764865392],[114,87,76,0.3883189882738941],[114,87,77,0.3952902811406057],[114,87,78,0.40216919377196236],[114,87,79,0.4076813566613264],[114,88,64,0.2933250837279395],[114,88,65,0.30225031572845573],[114,88,66,0.31101696841418136],[114,88,67,0.3196286776406992],[114,88,68,0.32809208151765074],[114,88,69,0.3364051599658245],[114,88,70,0.3432805234154686],[114,88,71,0.3500520860453763],[114,88,72,0.35676400240373535],[114,88,73,0.3634288683352272],[114,88,74,0.37006003331711773],[114,88,75,0.37667006471665243],[114,88,76,0.3832694197191904],[114,88,77,0.389865328866565],[114,88,78,0.39646089458703715],[114,88,79,0.4030544075540991],[114,89,64,0.2899091854936581],[114,89,65,0.2988511628919685],[114,89,66,0.30766082229208036],[114,89,67,0.3163424920380614],[114,89,68,0.3249034884778849],[114,89,69,0.33334140757351083],[114,89,70,0.3403196447217839],[114,89,71,0.34669768236814813],[114,89,72,0.3529997216972826],[114,89,73,0.359244063181998],[114,89,74,0.3654502888887228],[114,89,75,0.3716374584042412],[114,89,76,0.3778225343987161],[114,89,77,0.3840190424388508],[114,89,78,0.3902359690411737],[114,89,79,0.39647690134571373],[114,90,64,0.28618524628167025],[114,90,65,0.2951288692029546],[114,90,66,0.3039668490573244],[114,90,67,0.3127041910571857],[114,90,68,0.32134922413060196],[114,90,69,0.3298997198270047],[114,90,70,0.33704708336677225],[114,90,71,0.3430297945977164],[114,90,72,0.3489177369168542],[114,90,73,0.35473474915130704],[114,90,74,0.36050656911187745],[114,90,75,0.36625875644502415],[114,90,76,0.37201486644297305],[114,90,77,0.3777948801212952],[114,90,78,0.38361389518503647],[114,90,79,0.3894810818304146],[114,91,64,0.28219775832889804],[114,91,65,0.29112633799571364],[114,91,66,0.29997579174517786],[114,91,67,0.3087517860247178],[114,91,68,0.31746396604035654],[114,91,69,0.32611080471716536],[114,91,70,0.33345921037419207],[114,91,71,0.3390505415189991],[114,91,72,0.3445264408452407],[114,91,73,0.34991603029281976],[114,91,74,0.35525102060335634],[114,91,75,0.360563361348758],[114,91,76,0.36588316230653456],[114,91,77,0.3712368921959267],[114,91,78,0.3766458600386866],[114,91,79,0.3821249836721635],[114,92,64,0.2779903542081351],[114,92,65,0.28688596545980444],[114,92,66,0.2957282471236015],[114,92,67,0.3045235120983197],[114,92,68,0.3132829867067371],[114,92,69,0.3220063226680346],[114,92,70,0.3295527311404644],[114,92,71,0.33476210859657735],[114,92,72,0.339834073826443],[114,92,73,0.3448026957592765],[114,92,74,0.3497053754539482],[114,92,75,0.35458022850813076],[114,92,76,0.3594637580083772],[114,92,77,0.3643888247371694],[114,92,78,0.3693829205440864],[114,92,79,0.3744667499931073],[114,93,64,0.273604378621301],[114,93,65,0.2824482737255809],[114,93,66,0.291263379161713],[114,93,67,0.3000566406848675],[114,93,68,0.3088410852616017],[114,93,69,0.31761796044157503],[114,93,70,0.32532544302420485],[114,93,71,0.3301673154919468],[114,93,72,0.334849079090585],[114,93,73,0.3394093433199304],[114,93,74,0.3438908265984115],[114,93,75,0.34833748098171136],[114,93,76,0.35279192519830715],[114,93,77,0.35729319340542137],[114,93,78,0.3618748062054443],[114,93,79,0.3665631696128569],[114,94,64,0.2690775841134669],[114,94,65,0.27785066380908985],[114,94,66,0.2866177467048949],[114,94,67,0.2953863983890297],[114,94,68,0.3041716162696735],[114,94,69,0.3129765916813807],[114,94,70,0.3207769158881387],[114,94,71,0.3252701171874355],[114,94,72,0.32958040164939434],[114,94,73,0.33375045528926145],[114,94,74,0.3378278629693024],[114,94,75,0.3418619896667861],[114,94,76,0.3459011862389608],[114,94,77,0.3499903277504954],[114,94,78,0.3541686915156743],[114,94,79,0.3584681811073907],[114,95,64,0.2644429528270577],[114,95,65,0.2731262905183368],[114,95,66,0.2818242474079833],[114,95,67,0.29054499445447846],[114,95,68,0.2993056174652503],[114,95,69,0.3081115257600751],[114,95,70,0.31590909413219187],[114,95,71,0.32007603748980684],[114,95,72,0.32403772979488066],[114,95,73,0.3278404261822813],[114,95,74,0.3315360640368281],[114,95,75,0.33517891875989714],[114,95,76,0.3388225984941102],[114,95,77,0.34251738649830926],[114,95,78,0.3463079389074149],[114,95,79,0.350231344666577],[114,96,64,0.259727646199439],[114,96,65,0.26830306121342345],[114,96,66,0.27691117977807],[114,96,67,0.28556075847296214],[114,96,68,0.29427103808684457],[114,96,69,0.3030498464428999],[114,96,70,0.3107268188881158],[114,96,71,0.3145925337959778],[114,96,72,0.3182316783203699],[114,96,73,0.321693541471325],[114,96,74,0.32503385337807433],[114,96,75,0.3283112364228647],[114,96,76,0.33158400801451987],[114,96,77,0.33490734427749624],[114,96,78,0.3383308129357877],[114,96,79,0.3418962826864919],[114,97,64,0.25495208430594424],[114,97,65,0.2634027601179497],[114,97,66,0.27190142499203657],[114,97,67,0.28045738996189284],[114,97,68,0.2890920693118047],[114,97,69,0.29781584173755954],[114,97,70,0.3052382691682933],[114,97,71,0.3088292921049087],[114,97,72,0.3121739126632745],[114,97,73,0.31532390687792294],[114,97,74,0.31833821095663833],[114,97,75,0.3212791905898328],[114,97,76,0.3242092728120076],[114,97,77,0.3271879502257839],[114,97,78,0.33026916636951464],[114,97,79,0.33349908999130373],[114,98,64,0.2501291563645451],[114,98,65,0.2584402996986542],[114,98,66,0.2668117499815173],[114,98,67,0.27525332124954077],[114,98,68,0.28378857814511044],[114,98,69,0.29243052616861165],[114,98,70,0.29945532087650406],[114,98,71,0.30279845135562733],[114,98,72,0.3058772132449258],[114,98,73,0.3087453276891851],[114,98,74,0.31146434382983806],[114,98,75,0.31409974986828937],[114,98,76,0.3167174559125643],[114,98,77,0.31938065890091827],[114,98,78,0.32214709883906006],[114,98,79,0.3250667145413473],[114,99,64,0.24526356374519898],[114,99,65,0.25342310046192557],[114,99,66,0.2616522331167933],[114,99,67,0.2699611949556166],[114,99,68,0.27837564597774944],[114,99,69,0.28691125659069733],[114,99,70,0.29339382269451375],[114,99,71,0.2965147562594773],[114,99,72,0.2993554793522074],[114,99,73,0.30197113763861766],[114,99,74,0.3044253150325906],[114,99,75,0.3067860095012476],[114,99,76,0.30912198837729676],[114,99,77,0.31149953390434154],[114,99,78,0.3139795886616298],[114,99,79,0.31661530944548344],[114,100,64,0.2403512966674326],[114,100,65,0.24835060036061188],[114,100,66,0.2564258136724167],[114,100,67,0.26458745721533916],[114,100,68,0.27286321290192217],[114,100,69,0.2812714425404437],[114,100,70,0.28707378795820226],[114,100,71,0.28999563787785204],[114,100,72,0.29262367197144024],[114,100,73,0.29501397693930503],[114,100,74,0.29723163041763373],[114,100,75,0.2993465623716999],[114,100,76,0.3014298024785051],[114,100,77,0.303550124610684],[114,100,78,0.3057710984361211],[114,100,79,0.30814855705992467],[114,101,64,0.23537929559600593],[114,101,65,0.24321356270376515],[114,101,66,0.2511272435460171],[114,101,67,0.2591309507752637],[114,101,68,0.2672543109386592],[114,101,69,0.27551842290384876],[114,101,70,0.2805218518156444],[114,101,71,0.2832639976392091],[114,101,72,0.2857008959150764],[114,101,73,0.28788913373077113],[114,101,74,0.2898947908265123],[114,101,75,0.2917892042384566],[114,101,76,0.29364512446226304],[114,101,77,0.2955332745958852],[114,101,78,0.2975193228085524],[114,101,79,0.2996612773801233],[114,102,64,0.23032881876783037],[114,102,65,0.23799309103374253],[114,102,66,0.2457376435343678],[114,102,67,0.25357296113835576],[114,102,68,0.26153051550108386],[114,102,69,0.2696341881381822],[114,102,70,0.2737953974849815],[114,102,71,0.2763772844050607],[114,102,72,0.27864444081084666],[114,102,73,0.28065346377645795],[114,102,74,0.28247089323691105],[114,102,75,0.284168901249225],[114,102,76,0.28582137683542447],[114,102,77,0.28750041816212035],[114,102,78,0.28927324268971405],[114,102,79,0.29119952481130706],[114,103,64,0.2251852807702095],[114,103,65,0.23267203426022753],[114,103,66,0.24023746123171172],[114,103,67,0.24789171979087601],[114,103,68,0.25566798123338047],[114,103,69,0.2635929083826041],[114,103,70,0.266963601558848],[114,103,71,0.2694072569409678],[114,103,72,0.2715284429379208],[114,103,73,0.2733831879149677],[114,103,74,0.2750378520557496],[114,103,75,0.2765647704912579],[114,103,76,0.27803829366246907],[114,103,77,0.2795312368912768],[114,103,78,0.28111175001021604],[114,103,79,0.2828406167855395],[114,104,64,0.21994148081131745],[114,104,65,0.22724134531396095],[114,104,66,0.23461601084261607],[114,104,67,0.24207514470069816],[114,104,68,0.24965342192972248],[114,104,69,0.25738021408838],[114,104,70,0.2600847886282612],[114,104,71,0.2624139839632122],[114,104,72,0.2644145883673109],[114,104,73,0.26614143344828706],[114,104,74,0.26765999912795185],[114,104,75,0.2690420461659199],[114,104,76,0.270361644438964],[114,104,77,0.2716916090741007],[114,104,78,0.2731003554159297],[114,104,79,0.27464918269882943],[114,105,64,0.21459849876804843],[114,105,65,0.2217009575775614],[114,105,66,0.22887232547589662],[114,105,67,0.23612165957677456],[114,105,68,0.24348489073574733],[114,105,69,0.25059571352294635],[114,105,70,0.25320570195003106],[114,105,71,0.2554451327271955],[114,105,72,0.257351403500648],[114,105,73,0.25897750795173213],[114,105,74,0.2603873203894432],[114,105,75,0.2616512577822749],[114,105,76,0.26284233243837585],[114,105,77,0.26403260744296875],[114,105,78,0.26529006586123377],[114,105,79,0.2666759036211584],[114,106,64,0.20916701555260883],[114,106,65,0.21606102055885223],[114,106,66,0.223016299819119],[114,106,67,0.2300412314038297],[114,106,68,0.2371727023744052],[114,106,69,0.24381515000564036],[114,106,70,0.24636079954822915],[114,106,71,0.24853537518689062],[114,106,72,0.25037375913869936],[114,106,73,0.2519264847431487],[114,106,74,0.25325510250802313],[114,106,75,0.2544279147085055],[114,106,76,0.2555160916069793],[114,106,77,0.25659018128917904],[114,106,78,0.25771702403935165],[114,106,79,0.2589570811104888],[114,107,64,0.20366908185352134],[114,107,65,0.21034358121821128],[114,107,66,0.2170702731544059],[114,107,67,0.2238568403281957],[114,107,68,0.23074077652642846],[114,107,69,0.237067290242666],[114,107,70,0.23957116261059602],[114,107,71,0.24170543071866035],[114,107,72,0.2435020401505011],[114,107,73,0.24500848763045172],[114,107,74,0.2462833168306715],[114,107,75,0.24739196997295057],[114,107,76,0.24840300800904352],[114,107,77,0.2493847111308693],[114,107,78,0.2504020703277692],[114,107,79,0.2515141796795275],[114,108,64,0.1981403372934819],[114,108,65,0.20458471313228171],[114,108,66,0.21107105502965948],[114,108,67,0.21760638433302498],[114,108,68,0.22422840491411875],[114,108,69,0.2303591238680321],[114,108,70,0.23284301349440203],[114,108,71,0.23496074271836992],[114,108,72,0.23674097809994027],[114,108,73,0.23822767240283865],[114,108,74,0.23947573827723564],[114,108,75,0.24054706119912608],[114,108,76,0.2415068640226942],[114,108,77,0.24242043451945727],[114,108,78,0.24335022629343775],[114,108,79,0.24435334248194854],[114,109,64,0.1926326363321651],[114,109,65,0.19883704934737306],[114,109,66,0.20507234896500967],[114,109,67,0.21134497361201376],[114,109,68,0.21769239652546318],[114,109,69,0.2236811194325511],[114,109,70,0.22616579197520725],[114,109,71,0.22828973715403594],[114,109,72,0.23007809442392382],[114,109,73,0.2315708522428749],[114,109,74,0.23281874601852526],[114,109,75,0.23387947525638217],[114,109,76,0.2348142516978204],[114,109,77,0.2356846893132488],[114,109,78,0.23655004609087577],[114,109,79,0.23746482664062152],[114,110,64,0.18720738550968025],[114,110,65,0.19316289382196128],[114,110,66,0.19913762103446989],[114,110,67,0.20513753529409956],[114,110,68,0.21119939755399547],[114,110,69,0.21699433536359594],[114,110,70,0.2194993411443668],[114,110,71,0.2216510981793052],[114,110,72,0.22347107616826076],[114,110,73,0.22499497944430616],[114,110,74,0.2262689124576336],[114,110,75,0.22734584131113295],[114,110,76,0.2282823624346555],[114,110,77,0.2291357886309738],[114,110,78,0.22996156186980427],[114,110,79,0.2308110013529943],[114,111,64,0.18192037861598453],[114,111,65,0.18761893337190186],[114,111,66,0.19332450760279088],[114,111,67,0.1990427201674915],[114,111,68,0.2048090976486367],[114,111,69,0.21022270224096987],[114,111,70,0.21276694762691895],[114,111,71,0.21496772405549294],[114,111,72,0.21684277766555507],[114,111,73,0.21842329133237073],[114,111,74,0.21975035769015047],[114,111,75,0.22087172247208448],[114,111,76,0.221838808430982],[114,111,77,0.22270402932558359],[114,111,78,0.223518402676777],[114,111,79,0.22432946921979074],[114,112,64,0.17680717753410885],[114,112,65,0.18224233077993782],[114,112,66,0.18767122405987302],[114,112,67,0.19309920487455678],[114,112,68,0.1985600045014771],[114,112,69,0.20330948479528163],[114,112,70,0.2059135444429806],[114,112,71,0.20818695952263722],[114,112,72,0.21014370396181475],[114,112,73,0.21181019170078758],[114,112,74,0.21322209678913112],[114,112,75,0.21442141586687077],[114,112,76,0.2154537823501605],[114,112,77,0.21636604094579004],[114,112,78,0.2172040904203639],[114,112,79,0.21801100185364516],[114,113,64,0.17187990551066942],[114,113,65,0.17704728029756703],[114,113,66,0.18219354629358075],[114,113,67,0.1873238206647465],[114,113,68,0.19246946301418064],[114,113,69,0.1962209811537233],[114,113,70,0.19890616212770096],[114,113,71,0.20127716198154563],[114,113,72,0.20334413631654832],[114,113,73,0.2051284769999319],[114,113,74,0.20666001745804294],[114,113,75,0.20797445061281028],[114,113,76,0.20911096772515425],[114,113,77,0.21011012580117328],[114,113,78,0.21101195060650363],[114,113,79,0.2118542817254974],[114,114,64,0.16713267334811005],[114,114,65,0.17203023393364303],[114,114,66,0.17688999700135863],[114,114,67,0.18171687109690096],[114,114,68,0.1858658161718711],[114,114,69,0.18894029787807254],[114,114,70,0.19172706826470018],[114,114,71,0.19422006251625282],[114,114,72,0.19642559227550507],[114,114,73,0.1983597970658691],[114,114,74,0.20004626962911778],[114,114,75,0.20151386279364591],[114,114,76,0.2027946849783866],[114,114,77,0.20392229092173267],[114,114,78,0.20493007370686994],[114,114,79,0.20584986363845306],[114,115,64,0.16254432548122427],[114,115,65,0.16717255847785267],[114,115,66,0.17127150824507187],[114,115,67,0.17488751645084064],[114,115,68,0.17829701839467518],[114,115,69,0.18146527077085683],[114,115,70,0.18437195538370138],[114,115,71,0.18700925311714842],[114,115,72,0.1893796395097066],[114,115,73,0.19149381688542916],[114,115,74,0.19336878972566118],[114,115,75,0.1950260895570344],[114,115,76,0.1964901552149511],[114,115,77,0.19778687392103472],[114,115,78,0.19894228819072754],[114,115,79,0.19998147316635428],[114,116,64,0.15558081159103085],[114,116,65,0.159552155935117],[114,116,66,0.16337717458065068],[114,116,67,0.16704634159552006],[114,116,68,0.17053280249501143],[114,116,69,0.17380640594596838],[114,116,70,0.17684813857608028],[114,116,71,0.1796486733806],[114,116,72,0.1822066996872813],[114,116,73,0.18452736016418192],[114,116,74,0.18662080005199796],[114,116,75,0.18850083348647387],[114,116,76,0.1901837314552782],[114,116,77,0.1916871356094653],[114,116,78,0.19302910182468863],[114,116,79,0.19422727708400134],[114,117,64,0.14745869952815593],[114,117,65,0.1514438512940639],[114,117,66,0.15530377280091706],[114,117,67,0.15902924065867452],[114,117,68,0.16259791042026153],[114,117,69,0.16598484262593455],[114,117,70,0.1691727640964149],[114,117,71,0.1721510977254437],[114,117,72,0.17491484316183328],[114,117,73,0.1774635352011503],[114,117,74,0.1798002835182771],[114,117,75,0.18193089714870214],[114,117,76,0.18386309690011052],[114,117,77,0.18560581864804648],[114,117,78,0.1871686102420103],[114,117,79,0.18856112452293833],[114,118,64,0.13920211911275793],[114,118,65,0.14319825432495545],[114,118,66,0.14709170352404707],[114,118,67,0.15087349884221998],[114,118,68,0.1545261143821031],[114,118,69,0.1580303390183675],[114,118,70,0.1613710301274757],[114,118,71,0.16453662409662848],[114,118,72,0.16751857521247707],[114,118,73,0.1703108435473253],[114,118,74,0.17290943390212335],[114,118,75,0.17531198773304574],[114,118,76,0.17751742985534147],[114,118,77,0.17952567158530602],[114,118,78,0.18133737185000967],[114,118,79,0.1829537576657891],[114,119,64,0.13086359485030893],[114,119,65,0.1348655051579108],[114,119,66,0.13878835428644012],[114,119,67,0.14262336580391766],[114,119,68,0.1463580378192911],[114,119,69,0.1499792825183335],[114,119,70,0.15347442079831755],[114,119,71,0.15683116505802572],[114,119,72,0.16003761452287302],[114,119,73,0.1630822718981196],[114,119,74,0.16595408184289615],[114,119,75,0.16864249171290485],[114,119,76,0.17113753497660694],[114,119,77,0.17342993766883263],[114,119,78,0.17551124820789377],[114,119,79,0.17737399086776126],[114,120,64,0.12249988853355621],[114,120,65,0.1265001797883122],[114,120,66,0.13044569464290195],[114,120,67,0.13432776691255388],[114,120,68,0.13813901217307886],[114,120,69,0.14187272490827627],[114,120,70,0.14551895398385156],[114,120,71,0.149064941630538],[114,120,72,0.15249566405718867],[114,120,73,0.15579436715748415],[114,120,74,0.15894309626885636],[114,120,75,0.16192321898047868],[114,120,76,0.1647159400296983],[114,120,77,0.16730280737298706],[114,120,78,0.1696662085687133],[114,120,79,0.17178985666451294],[114,121,64,0.11416948725014614],[114,121,65,0.1181588402074883],[114,121,66,0.12211791062428308],[114,121,67,0.12603804572651672],[114,121,68,0.12991695495451844],[114,121,69,0.1337544278358019],[114,121,70,0.13754342794012353],[114,121,71,0.14127096467809613],[114,121,72,0.14491915886096843],[114,121,73,0.14846627890757222],[114,121,74,0.15188774518180678],[114,121,75,0.15515710005967281],[114,121,76,0.1582469414472586],[114,121,77,0.16112981759969006],[114,121,78,0.16363703407378627],[114,121,79,0.16462870402404867],[114,122,64,0.10593016865056229],[114,122,65,0.1098976576242293],[114,122,66,0.11385910643873226],[114,122,67,0.11780576576558126],[114,122,68,0.12174029732698666],[114,122,69,0.12566894691531239],[114,122,70,0.12958769521321423],[114,122,71,0.13348353234183555],[114,122,72,0.13733601932209039],[114,122,73,0.14111879782944217],[114,122,74,0.14480104433411328],[114,122,75,0.1483488649049579],[114,122,76,0.15172662715069996],[114,122,77,0.15295043449953916],[114,122,78,0.15351436284542957],[114,122,79,0.15403399768186063],[114,123,64,0.0978366576746393],[114,123,65,0.10177012306390865],[114,123,66,0.10572108777234335],[114,123,67,0.10968058597712449],[114,123,68,0.1136559756246075],[114,123,69,0.11765976886674546],[114,123,70,0.12169097820075978],[114,123,71,0.1257367578411896],[114,123,72,0.1297744241259805],[114,123,73,0.1337734042025912],[114,123,74,0.13769710780093086],[114,123,75,0.14458358908667665],[114,123,76,0.14958376511632157],[114,123,77,0.1530713148044887],[114,123,78,0.15653811766083914],[114,123,79,0.1600192197999263],[114,124,64,0.08993833454729463],[114,124,65,0.09382480486613509],[114,124,66,0.0977511859090252],[114,124,67,0.10170816880050398],[114,124,68,0.10570744537698487],[114,124,69,0.11058062779989261],[114,124,70,0.11785687740644797],[114,124,71,0.1252189205963071],[114,124,72,0.1326414343478719],[114,124,73,0.14008975238907878],[114,124,74,0.14752209521666715],[114,124,75,0.1545930973835632],[114,124,76,0.15776705719761497],[114,124,77,0.16087873128942065],[114,124,78,0.1639726322939476],[114,124,79,0.16709143551468494],[114,125,64,0.0842182499426298],[114,125,65,0.09108190160712146],[114,125,66,0.09805024979442598],[114,125,67,0.10511040243429988],[114,125,68,0.11227533891428244],[114,125,69,0.11956686730872437],[114,125,70,0.12698811799762663],[114,125,71,0.13452576541765554],[114,125,72,0.1421528043804616],[114,125,73,0.1498312245511989],[114,125,74,0.15751457571564673],[114,125,75,0.16311817279468055],[114,125,76,0.16594997520167648],[114,125,77,0.16871378397939385],[114,125,78,0.17146111979833048],[114,125,79,0.17424158871719794],[114,126,64,0.09319667844980127],[114,126,65,0.10006488517019979],[114,126,66,0.10705484204956517],[114,126,67,0.11415295728135337],[114,126,68,0.12137546482264916],[114,126,69,0.12874897502370836],[114,126,70,0.1362791066311583],[114,126,71,0.1439529439395029],[114,126,72,0.1517421262240131],[114,126,73,0.15960582310145469],[114,126,74,0.16749358757889568],[114,126,75,0.17159305689916643],[114,126,76,0.17411707103194154],[114,126,77,0.17656678140589385],[114,126,78,0.1789998680480762],[114,126,79,0.1814720594509845],[114,127,64,0.10250794291255085],[114,127,65,0.1093584395393824],[114,127,66,0.1163455459535168],[114,127,67,0.12345484402783287],[114,127,68,0.1307052457163027],[114,127,69,0.13812751639264947],[114,127,70,0.14572948562561328],[114,127,71,0.15349869278403816],[114,127,72,0.16140573495420754],[114,127,73,0.16940749113803172],[114,127,74,0.1774502137791728],[114,127,75,0.1799975814247],[114,127,76,0.18225197029719548],[114,127,77,0.18442546239080682],[114,127,78,0.18658097810225407],[114,127,79,0.18877948283357526],[114,128,64,0.11213742329400143],[114,128,65,0.11894929883539099],[114,128,66,0.12591026408600128],[114,128,67,0.13300494789728357],[114,128,68,0.1402543422914999],[114,128,69,0.14769268125308824],[114,128,70,0.15532969427877136],[114,128,71,0.16315339478630791],[114,128,72,0.17113363248531743],[114,128,73,0.17922551480213839],[114,128,74,0.18613378257502589],[114,128,75,0.1883127612759861],[114,128,76,0.190337530932804],[114,128,77,0.1922748199381477],[114,128,78,0.1941918391211144],[114,128,79,0.19615386715104552],[114,129,64,0.12205440303833234],[114,129,65,0.12880872475801095],[114,129,66,0.1357221367118366],[114,129,67,0.14277818566727268],[114,129,68,0.14999936009211054],[114,129,69,0.15742268642658477],[114,129,70,0.16505947960442804],[114,129,71,0.17289823186922718],[114,129,72,0.18090831877908317],[114,129,73,0.18904356918697524],[114,129,74,0.19452281357797616],[114,129,75,0.19652129655980033],[114,129,76,0.19835603619875483],[114,129,77,0.20009696285382667],[114,129,78,0.20181464212613048],[114,129,79,0.20357774961033098],[114,130,64,0.1322102954509731],[114,130,65,0.1388907581985895],[114,130,66,0.14573782521195708],[114,130,67,0.15273382504243666],[114,130,68,0.15990221522905018],[114,130,69,0.16728220884099979],[114,130,70,0.17488642571984775],[114,130,71,0.18270384466823478],[114,130,72,0.19070361839615774],[114,130,73,0.19883874912725968],[114,130,74,0.20275478066988176],[114,130,75,0.2046081035405632],[114,130,76,0.2062894221575085],[114,130,77,0.2078710152959995],[114,130,78,0.2094259329128674],[114,130,79,0.21102539016922908],[114,131,64,0.1425369398599138],[114,131,65,0.14913053664276393],[114,131,66,0.15589585552699298],[114,131,67,0.162813856022681],[114,131,68,0.16990854209840917],[114,131,69,0.17722084938461272],[114,131,70,0.18476450207938577],[114,131,71,0.1925289990817163],[114,131,72,0.2004835025353753],[114,131,73,0.20858058497203022],[114,131,74,0.21082316374113957],[114,131,75,0.21256087454285288],[114,131,76,0.2141195397237129],[114,131,77,0.21557305443281377],[114,131,78,0.216996204385714],[114,131,79,0.21846200381082256],[114,132,64,0.15294495212621997],[114,132,65,0.1594426540080702],[114,132,66,0.16611499034214652],[114,132,67,0.17294137502114854],[114,132,68,0.17994609551104318],[114,132,69,0.18717157086263753],[114,132,70,0.19463256404006604],[114,132,71,0.20231918252458472],[114,132,72,0.2102008179539475],[114,132,73,0.21682881367331241],[114,132,74,0.2187278864329564],[114,132,75,0.22037079082816177],[114,132,76,0.22182858636396413],[114,132,77,0.22317623132742082],[114,132,78,0.224489682106126],[114,132,79,0.22584319203114417],[114,133,64,0.16332296571595314],[114,133,65,0.16971900723935493],[114,133,66,0.17629067424610617],[114,133,67,0.18301561291574245],[114,133,68,0.18991829357066448],[114,133,69,0.19704262993562627],[114,133,70,0.20440452334805037],[114,133,71,0.21199486561767772],[114,133,72,0.21978351800676163],[114,133,73,0.22467176754183907],[114,133,74,0.22649339726672202],[114,133,75,0.22805269977815565],[114,133,76,0.2294212752046164],[114,133,77,0.23067476179058183],[114,133,78,0.2318899039903121],[114,133,79,0.2331418219179084],[114,134,64,0.17355766919962068],[114,134,65,0.17984699591643624],[114,134,66,0.18631132411410412],[114,134,67,0.19292626982694558],[114,134,68,0.19971645135738],[114,134,69,0.20672741794613075],[114,134,70,0.21397641502526227],[114,134,71,0.22145537537433307],[114,134,72,0.22913492608268946],[114,134,73,0.23242738774137403],[114,134,74,0.23417675866866247],[114,134,75,0.23565773004741025],[114,134,76,0.2369421033660693],[114,134,77,0.23810586740230585],[114,134,78,0.23922624335862813],[114,134,79,0.24037893258332202],[114,135,64,0.18355465949458236],[114,135,65,0.18973268851456407],[114,135,66,0.19608375525585273],[114,135,67,0.2025811889865405],[114,135,68,0.2092497609754166],[114,135,69,0.21613685759405288],[114,135,70,0.22326132577534583],[114,135,71,0.23061643670562046],[114,135,72,0.23812668887404026],[114,135,73,0.24014415974800388],[114,135,74,0.24182256818350847],[114,135,75,0.24322607623913148],[114,135,76,0.24442636974812834],[114,135,77,0.2454994934412376],[114,135,78,0.24652288074503478],[114,135,79,0.24757258651598166],[114,136,64,0.19323920729603516],[114,136,65,0.19930189179005736],[114,136,66,0.20553455426027395],[114,136,67,0.21190802656928334],[114,136,68,0.2184472662334903],[114,136,69,0.22520171217867932],[114,136,70,0.232192079917762],[114,136,71,0.23941328136334064],[114,136,72,0.24590144636643632],[114,136,73,0.24785277198986713],[114,136,74,0.24945841276053193],[114,136,75,0.25078191653414056],[114,136,76,0.2518945628295365],[114,136,77,0.2528721906021589],[114,136,78,0.2537922199417134],[114,136,79,0.254730875977895],[114,137,64,0.20255576061108393],[114,137,65,0.20849959144705515],[114,137,66,0.21460945661845204],[114,137,67,0.2208535558756685],[114,137,68,0.2272570841006624],[114,137,69,0.23387172395464145],[114,137,70,0.24072030214357493],[114,137,71,0.2477996492557399],[114,137,72,0.25368559967640536],[114,137,73,0.25556723133218684],[114,137,74,0.25709597439690385],[114,137,75,0.2583344791062474],[114,137,76,0.2593533572958553],[114,137,77,0.260228011052628],[114,137,78,0.2610356533653448],[114,137,79,0.26185252905040945],[114,138,64,0.21146783768928595],[114,138,65,0.21728978074537605],[114,138,66,0.22327310757976965],[114,138,67,0.22938334720518064],[114,138,68,0.23564599116925558],[114,138,69,0.24211510290857638],[114,138,70,0.24881581166647743],[114,138,71,0.25574709738163354],[114,138,72,0.2614788520502556],[114,138,73,0.2632857302417626],[114,138,74,0.2647319253783408],[114,138,75,0.26587894018932884],[114,138,76,0.2667964879886745],[114,138,77,0.2675593304682983],[114,138,78,0.26824430433471064],[114,138,79,0.268927545023481],[114,139,64,0.2199583110169329],[114,139,65,0.2256556787492786],[114,139,66,0.23150920796553778],[114,139,67,0.2374818251630873],[114,139,68,0.24359937687929537],[114,139,69,0.2499183677101084],[114,139,70,0.25646634950476566],[114,139,71,0.2632446180792506],[114,139,72,0.269264968162199],[114,139,73,0.27099126409275337],[114,139,74,0.27234861170402813],[114,139,75,0.2733971525416275],[114,139,76,0.27420550011461753],[114,139,77,0.274847595212904],[114,139,78,0.2753997456869203],[114,139,79,0.27593785884898847],[114,140,64,0.2280300840263635],[114,140,65,0.23360033988982248],[114,140,66,0.23932104662644704],[114,140,67,0.24515270509494952],[114,140,68,0.251121565199438],[114,140,69,0.2572865405215438],[114,140,70,0.26367764055259607],[114,140,71,0.270298568202704],[114,140,72,0.2770120223019671],[114,140,73,0.278651997162674],[114,140,74,0.27991452336668793],[114,140,75,0.2808582031297544],[114,140,76,0.28155037471880606],[114,140,77,0.2820639938804451],[114,140,78,0.28247469419265386],[114,140,79,0.28285803438983376],[114,141,64,0.23570716218094537],[114,141,65,0.24114765651154826],[114,141,66,0.24673242121685185],[114,141,67,0.2524198103182027],[114,141,68,0.25823650642307505],[114,141,69,0.26424369730364033],[114,141,70,0.27047379204230765],[114,141,71,0.2769329107748079],[114,141,72,0.2836047172976098],[114,141,73,0.28622137594033203],[114,141,74,0.28738455023066056],[114,141,75,0.2882187989225583],[114,141,76,0.28879002848711527],[114,141,77,0.2891700524649857],[114,141,78,0.2894336802631926],[114,141,79,0.2896559862098524],[114,142,64,0.24303612012970105],[114,142,65,0.2483437560959658],[114,142,66,0.25378894896892185],[114,142,67,0.2593282718180565],[114,142,68,0.26498884072394496],[114,142,69,0.2708338752286008],[114,142,70,0.27689802996258106],[114,142,71,0.283189770618695],[114,142,72,0.2896951274349496],[114,142,73,0.2936379884244325],[114,142,74,0.2947000223094379],[114,142,75,0.2954234797418694],[114,142,76,0.2958726869931497],[114,142,77,0.2961181524662063],[114,142,78,0.2962336924721904],[114,142,79,0.29629372966365264],[114,143,64,0.25007314874388636],[114,143,65,0.2552443562965434],[114,143,66,0.26054575660505513],[114,143,67,0.2659325818608346],[114,143,68,0.2714323519981586],[114,143,69,0.27710997456925457],[114,143,70,0.2830021067699598],[114,143,71,0.28911941393832796],[114,143,72,0.2954502310595708],[114,143,73,0.30083425983933815],[114,143,74,0.30179660481349385],[114,143,75,0.30241163366326124],[114,143,76,0.3027419436703586],[114,143,77,0.30285656100068165],[114,143,78,0.30282811277356675],[114,143,79,0.3027301634835111],[114,144,64,0.25683286006669703],[114,144,65,0.26186477218449594],[114,144,66,0.2670188517166834],[114,144,67,0.2722495180407074],[114,144,68,0.2775846603179806],[114,144,69,0.28309046076124517],[114,144,70,0.2888052735058617],[114,144,71,0.2947417634520295],[114,144,72,0.3008904628371743],[114,144,73,0.3072232222088896],[114,144,74,0.3086335342321477],[114,144,75,0.3091431139394408],[114,144,76,0.30935852782855444],[114,144,77,0.3093471488522605],[114,144,78,0.3091802178154038],[114,144,79,0.3089302266991721],[114,145,64,0.26331853137072814],[114,145,65,0.26820920636878914],[114,145,66,0.27321338479613827],[114,145,67,0.2782852778363369],[114,145,68,0.2834531089363316],[114,145,69,0.2887838673818042],[114,145,70,0.2943172478697614],[114,145,71,0.300067668961694],[114,145,72,0.30602771192372347],[114,145,73,0.31217146160638304],[114,145,74,0.3151785147208981],[114,145,75,0.31558552642765647],[114,145,76,0.3156901462634136],[114,145,77,0.3155579362722858],[114,145,78,0.3152585615110295],[114,145,79,0.3148632291798685],[114,146,64,0.2695342503296654],[114,146,65,0.2742825397984288],[114,146,66,0.27913505371795544],[114,146,67,0.2840464542307991],[114,146,68,0.28904526171402267],[114,146,69,0.29419876234899656],[114,146,70,0.29954759329431985],[114,146,71,0.3051076415304366],[114,146,72,0.31087335273527716],[114,146,73,0.3168209502402886],[114,146,74,0.32140129800058354],[114,146,75,0.3217086792598023],[114,146,76,0.32170685104697216],[114,146,77,0.32145942136121086],[114,146,78,0.3210342993961895],[114,146,79,0.32050119919902353],[114,147,64,0.2754842383725213],[114,147,65,0.2800896559454779],[114,147,66,0.2847894333425703],[114,147,67,0.2895393741236854],[114,147,68,0.2943682547408314],[114,147,69,0.2993431196493569],[114,147,70,0.3045051198697503],[114,147,71,0.30987129451752754],[114,147,72,0.31543773844275613],[114,147,73,0.32118268831917274],[114,147,74,0.3270695192584249],[114,147,75,0.32748487782232133],[114,147,76,0.32738122568466727],[114,147,77,0.32702464394610853],[114,147,78,0.32648111771930177],[114,147,79,0.3258186665239191],[114,148,64,0.2811722770160734],[114,148,65,0.28563486971698016],[114,148,66,0.2901814104710037],[114,148,67,0.29476954228210756],[114,148,68,0.2994282530903726],[114,148,69,0.3042237944667532],[114,148,70,0.3091973850126565],[114,148,71,0.31436687832524746],[114,148,72,0.3197297794547058],[114,148,73,0.32526618841700944],[114,148,74,0.3309416633091771],[114,148,75,0.33288917558305886],[114,148,76,0.33268854735756953],[114,148,77,0.33222924835440487],[114,148,78,0.3315751865218387],[114,148,79,0.33079249651931],[114,149,64,0.28660123741349897],[114,149,65,0.2909214613496966],[114,149,66,0.29531472441748524],[114,149,67,0.2997411911090208],[114,149,68,0.30423001299635444],[114,149,69,0.3088461020047358],[114,149,70,0.3136302941696365],[114,149,71,0.31860090913742845],[114,149,72,0.32375660714698457],[114,149,73,0.32907918180463264],[114,149,74,0.33453628169127303],[114,149,75,0.33789958064394404],[114,149,76,0.337606925203154],[114,149,77,0.33705154512671076],[114,149,78,0.33629513685628687],[114,149,79,0.3354017755316887],[114,150,64,0.29177271335250293],[114,150,65,0.2959513155348453],[114,150,66,0.30019161345814643],[114,150,67,0.3044569364963972],[114,150,68,0.3087765497249858],[114,150,69,0.31321350028000516],[114,150,70,0.3178078018298137],[114,150,71,0.3225778919122735],[114,150,72,0.3275233230807826],[114,150,73,0.33262739860043167],[114,150,74,0.3378597462391399],[114,150,75,0.34249721791184595],[114,150,76,0.34211741459699513],[114,150,77,0.34147257171460743],[114,150,78,0.34062206228433306],[114,150,79,0.3396277478065582],[114,151,64,0.29668675793705446],[114,151,65,0.30072466601889253],[114,151,66,0.30481256741064694],[114,151,67,0.3089175400254264],[114,151,68,0.3130689114108964],[114,151,69,0.3173273771552786],[114,151,70,0.3217317131093263],[114,151,71,0.3263001378794556],[114,151,72,0.3310328339368216],[114,151,73,0.33591442193580373],[114,151,74,0.3409163823001313],[114,151,75,0.34599941830324804],[114,151,76,0.346204107404115],[114,151,77,0.3454761522108851],[114,151,78,0.3445395447932724],[114,151,79,0.34345380417842747],[114,152,64,0.3013417241957901],[114,152,65,0.30523994593352843],[114,152,66,0.30917618660459445],[114,152,67,0.31312177777881045],[114,152,68,0.3171060591247587],[114,152,69,0.32118694187857716],[114,152,70,0.32540158616750914],[114,152,71,0.32976767678634966],[114,152,72,0.3342857723869402],[114,152,73,0.3389416163232697],[114,152,74,0.3437084037239538],[114,152,75,0.3485489995095722],[114,152,76,0.34985419817539776],[114,152,77,0.3490489561631219],[114,152,78,0.3480337052672251],[114,152,79,0.3468655227654647],[114,153,64,0.30573420987457073],[114,153,65,0.3094937441206063],[114,153,66,0.3132791475131708],[114,153,67,0.31706641603865515],[114,153,68,0.32088485344709317],[114,153,69,0.3247892214000266],[114,153,70,0.3288147357162887],[114,153,71,0.3329782641377656],[114,153,72,0.337280504121704],[114,153,73,0.34170813041089276],[114,153,74,0.34623590745998706],[114,153,75,0.35082876192032386],[114,153,76,0.35305802626843363],[114,153,77,0.35218055652352726],[114,153,78,0.35109327864851375],[114,153,79,0.34985076189474607],[114,154,64,0.30985910669233346],[114,154,65,0.31348086773780415],[114,154,66,0.31711627533429976],[114,154,67,0.32074629415925876],[114,154,68,0.32440014783636945],[114,154,69,0.3281291617485493],[114,154,70,0.3319663378930562],[114,154,71,0.335927483679648],[114,154,72,0.34001322125612415],[114,154,73,0.34421097430763103],[114,154,74,0.34849692790042186],[114,154,75,0.3528379570445023],[114,154,76,0.35580909387530946],[114,154,77,0.35486348679064295],[114,154,78,0.35370971392550815],[114,154,79,0.3523998054819035],[114,155,64,0.3137097543679593],[114,155,65,0.31719451145776745],[114,155,66,0.32068072383467844],[114,155,67,0.3241545149269786],[114,155,68,0.32764498910019024],[114,155,69,0.33119983476904324],[114,155,70,0.33484963678272744],[114,155,71,0.33860894538959474],[114,155,72,0.3424781223447632],[114,155,73,0.34644517167025946],[114,155,74,0.35048755111016633],[114,155,75,0.3545739604081073],[114,155,76,0.35810405994185146],[114,155,77,0.35709329740144397],[114,155,78,0.35587729908605875],[114,155,79,0.35450556109038917],[114,156,64,0.3172781997605165],[114,156,65,0.32062653360668614],[114,156,66,0.32396426280118856],[114,156,67,0.3272827427484402],[114,156,68,0.3306109253052042],[114,156,69,0.3339927505449178],[114,156,70,0.3374562528959638],[114,156,71,0.341014579254882],[114,156,72,0.3446676792515648],[114,156,73,0.34840398675262824],[114,156,74,0.3522020890906999],[114,156,75,0.3560323805749927],[114,156,76,0.3598586969192633],[114,156,77,0.35886861143464316],[114,156,78,0.3575933111793462],[114,156,79,0.35616381089958116],[114,157,64,0.3205555615068956],[114,157,65,0.3237678396285562],[114,157,66,0.3269576734825793],[114,157,67,0.330121610044654],[114,157,68,0.3332884214954361],[114,157,69,0.33649827586223746],[114,157,70,0.3397765939386697],[114,157,71,0.3431350251430087],[114,157,72,0.3465729911397654],[114,157,73,0.3500792266333597],[114,157,74,0.3536333142355652],[114,157,75,0.357207210360529],[114,157,76,0.3607667591655359],[114,157,77,0.3601911796886518],[114,157,78,0.3588581916346951],[114,157,79,0.3573735158187208],[114,158,64,0.3235325005893147],[114,158,65,0.32660887330864646],[114,158,66,0.32965125244970217],[114,158,67,0.3326612322719394],[114,158,68,0.33566738362981263],[114,158,69,0.3387061591100323],[114,158,70,0.34180036824274035],[114,158,71,0.3449601191004503],[114,158,72,0.34818422587305475],[114,158,73,0.35146161885850435],[114,158,74,0.3547727541498416],[114,158,75,0.35809102033773194],[114,158,76,0.36138413959748406],[114,158,77,0.3610659352005026],[114,158,78,0.35967574699344007],[114,158,79,0.35813717299499853],[114,159,64,0.32619979731965026],[114,159,65,0.3291402162430717],[114,159,66,0.33203542435414163],[114,159,67,0.3348918320401007],[114,159,68,0.3377377911969402],[114,159,69,0.3406061620557605],[114,159,70,0.3435172012687942],[114,159,71,0.3464794764515237],[114,159,72,0.3494911491499708],[114,159,73,0.3525412647603589],[114,159,74,0.3556110470239597],[114,159,75,0.35867519474653003],[114,159,76,0.3617031784289463],[114,159,77,0.36150104727425886],[114,159,78,0.36005337521845626],[114,159,79,0.3584612269781878],[114,160,64,0.32854903528881124],[114,160,65,0.3313532961017037],[114,160,66,0.3341014641236737],[114,160,67,0.3368044728549151],[114,160,68,0.33949043901955306],[114,160,69,0.34218879898633475],[114,160,70,0.34491735563918746],[114,160,71,0.3476831721119285],[114,160,72,0.3504837417302489],[114,160,73,0.35330816874353815],[114,160,74,0.35613835777450864],[114,160,75,0.35895020993105453],[114,160,76,0.3617148235511424],[114,160,77,0.36150797508996324],[114,160,78,0.36000231775645053],[114,160,79,0.3583565348220134],[114,161,64,0.3305733928971972],[114,161,65,0.3332412042986723],[114,161,66,0.33584232919833734],[114,161,67,0.33839190307542033],[114,161,68,0.34091778882223805],[114,161,69,0.3434461837633067],[114,161,70,0.3459925552137378],[114,161,71,0.34856251858042336],[114,161,72,0.35115290515430536],[114,161,73,0.353752843864307],[114,161,74,0.35634485519112374],[114,161,75,0.35890595544706355],[114,161,76,0.36140876964532265],[114,161,77,0.3611015209668229],[114,161,78,0.3595379375403191],[114,161,79,0.3578388854237575],[114,162,64,0.3322685431556883],[114,162,65,0.33479962375746436],[114,162,66,0.33725360248207337],[114,162,67,0.33964951074579186],[114,162,68,0.3420149312031223],[114,162,69,0.3443729854048164],[114,162,70,0.3467369137803592],[114,162,71,0.3491109421262926],[114,162,72,0.3514912564042856],[114,162,73,0.3538669940681912],[114,162,74,0.3562212503581817],[114,162,75,0.3585320980009918],[114,162,76,0.36077361876482256],[114,162,77,0.36029988335621377],[114,162,78,0.3586800231319562],[114,162,79,0.3569295734275045],[114,163,64,0.3336336625268875],[114,163,65,0.33602786753740316],[114,163,66,0.33833454676316255],[114,163,67,0.3405763900380748],[114,163,68,0.342780658724492],[114,163,69,0.34496749287808176],[114,163,70,0.34714796899958394],[114,163,71,0.34932495775115935],[114,163,72,0.35149401200858627],[114,163,73,0.35364427349545957],[114,163,74,0.35575939665437095],[114,163,75,0.35781848840512326],[114,163,76,0.3597970624430664],[114,163,77,0.359124709642688],[114,163,78,0.35745311922127965],[114,163,79,0.35565602804442503],[114,164,64,0.3346685625429737],[114,164,65,0.33692565200736924],[114,164,66,0.339084530907885],[114,164,67,0.3411714251987497],[114,164,68,0.3432132127458393],[114,164,69,0.3452270374901621],[114,164,70,0.3472218003399327],[114,164,71,0.3491990093732264],[114,164,72,0.3511535831209592],[114,164,73,0.353074674115238],[114,164,74,0.3549465115627075],[114,164,75,0.35674926199253326],[114,164,76,0.3584599067260254],[114,164,77,0.35760707851277146],[114,164,78,0.35589249157548736],[114,164,79,0.35405771747995546],[114,165,64,0.3353489498608091],[114,165,65,0.33746591746743493],[114,165,66,0.3394736142794063],[114,165,67,0.3414017096327182],[114,165,68,0.3432766251933252],[114,165,69,0.3451124775071049],[114,165,70,0.34691598914530575],[114,165,71,0.3486873280086166],[114,165,72,0.35042082277136577],[114,165,73,0.35210570024251164],[114,165,74,0.35372684371032925],[114,165,75,0.35526557132275166],[114,165,76,0.35670043354709446],[114,165,77,0.35582094927947566],[114,165,78,0.35407491649196077],[114,165,79,0.35221384052667937],[114,166,64,0.33564530687486416],[114,166,65,0.33761570888735537],[114,166,66,0.33946540831497934],[114,166,67,0.3412273870637603],[114,166,68,0.342927539058876],[114,166,69,0.34457697414645755],[114,166,70,0.346180298173696],[114,166,71,0.3477364326278776],[114,166,72,0.34923923503484133],[114,166,73,0.35067814326379176],[114,166,74,0.35203884302856164],[114,166,75,0.3533039578548858],[114,166,76,0.35445376076877444],[114,166,77,0.35384301307875093],[114,166,78,0.35207800416869306],[114,166,79,0.3502023581512499],[114,167,64,0.3355364091370818],[114,167,65,0.3373511455328475],[114,167,66,0.33903341965639133],[114,167,67,0.3406193436850116],[114,167,68,0.34213421908043884],[114,167,69,0.3435862348247494],[114,167,70,0.3449780118819986],[114,167,71,0.3463073899347303],[114,167,72,0.34756794257259155],[114,167,73,0.3487495190209012],[114,167,74,0.34983881194817557],[114,167,75,0.35081995086431444],[114,167,76,0.35167512059917866],[114,167,77,0.3517299673962431],[114,167,78,0.34995830491520424],[114,167,79,0.3480791612631889],[114,168,64,0.3350078703116793],[114,168,65,0.336655933980656],[114,168,66,0.3381595238842738],[114,168,67,0.3395576410926501],[114,168,68,0.3408749414945209],[114,168,69,0.3421168522751681],[114,168,70,0.3432842136374808],[114,168,71,0.34437401581419674],[114,168,72,0.3453797969624152],[114,168,73,0.34629207112213234],[114,168,74,0.3470987860592027],[114,168,75,0.3477858107774291],[114,168,76,0.3483374524533546],[114,168,77,0.3487370025213879],[114,168,78,0.34775401415234825],[114,168,79,0.3458809513001512],[114,169,64,0.33405054083827646],[114,169,65,0.3355197255485315],[114,169,66,0.33683227553478806],[114,169,67,0.33802977774721776],[114,169,68,0.33913620508093073],[114,169,69,0.34015445905669806],[114,169,70,0.34108387444414595],[114,169,71,0.34192088699236894],[114,169,72,0.34265930092422936],[114,169,73,0.3432905911017319],[114,169,74,0.3438042400008767],[114,169,75,0.34418810958839346],[114,169,76,0.3444288481504455],[114,169,77,0.3445123320855406],[114,169,78,0.34442414264102567],[114,169,79,0.343628201547054],[114,170,64,0.3326588409821355],[114,170,65,0.33393640690570925],[114,170,66,0.33504515078854225],[114,170,67,0.33602888282585],[114,170,68,0.33691087464993946],[114,170,69,0.33769181538696036],[114,170,70,0.33836987711116934],[114,170,71,0.3389412918059286],[114,170,72,0.3394004750951239],[114,170,73,0.3397401904800278],[114,170,74,0.339951754576536],[114,170,75,0.3400252837892207],[114,170,76,0.33994998280299465],[114,170,77,0.33971447522113596],[114,170,78,0.339307176630699],[114,170,79,0.3387167103336384],[114,171,64,0.33082902732112673],[114,171,65,0.33190232293926253],[114,171,66,0.33279472193644827],[114,171,67,0.3335518416025445],[114,171,68,0.3341962561448646],[114,171,69,0.3347268295120855],[114,171,70,0.33514097512246355],[114,171,71,0.3354351193924165],[114,171,72,0.33560466872370703],[114,171,73,0.33564402416000294],[114,171,74,0.335546644602802],[114,171,75,0.3353051594034906],[114,171,76,0.3349115310769831],[114,171,77,0.3343572688138385],[114,171,78,0.3336336934027718],[114,171,79,0.3327322541149392],[114,172,64,0.3285573916193609],[114,172,65,0.32941443085012123],[114,172,66,0.3300787626239944],[114,172,67,0.33059735138886437],[114,172,68,0.3309921024269666],[114,172,69,0.33126050971970694],[114,172,70,0.33139968535835257],[114,172,71,0.33140668650359206],[114,172,72,0.33127831354452825],[114,172,73,0.3310109644869657],[114,172,74,0.3306005468931338],[114,172,75,0.3300424486047102],[114,172,76,0.3293315683916627],[114,172,77,0.3284624075819833],[114,172,78,0.3274292236427843],[114,172,79,0.32622624660247734],[114,173,64,0.32583839093634515],[114,173,65,0.32646838434935843],[114,173,66,0.32689428277044735],[114,173,67,0.3271639069608577],[114,173,68,0.3272985487014638],[114,173,69,0.3272948469918959],[114,173,70,0.32715011371021857],[114,173,71,0.32686250103365444],[114,173,72,0.32643061998266604],[114,173,73,0.3258532251874606],[114,173,74,0.32512896766571564],[114,173,75,0.32425621729068044],[114,173,76,0.3232329565190849],[114,173,77,0.3220567468396016],[114,173,78,0.32072476929602767],[114,173,79,0.31923394033608843],[114,174,64,0.322662707718422],[114,174,65,0.3230565467209791],[114,174,66,0.3232354919532115],[114,174,67,0.32324771428992716],[114,174,68,0.3231139764338282],[114,174,69,0.32283062718394656],[114,174,70,0.32239571251725757],[114,174,71,0.32180896124200353],[114,174,72,0.32107121472657857],[114,174,73,0.32018393429206254],[114,174,74,0.31914878855499007],[114,174,75,0.3179673228756544],[114,174,76,0.31664071293486035],[114,174,77,0.3151696043298154],[114,174,78,0.3135540399490404],[114,174,79,0.3117934767581718],[114,175,64,0.31902529539083835],[114,175,65,0.3191757780369716],[114,175,66,0.3191012665768996],[114,175,67,0.31884976590386527],[114,175,68,0.31844161450625086],[114,175,69,0.3178734657800844],[114,175,70,0.3171446497576377],[114,175,71,0.31625695618247446],[114,175,72,0.31521386811253205],[114,175,73,0.31401988602006803],[114,175,74,0.3126799451990337],[114,175,75,0.31119892913539043],[114,175,76,0.30958128133871576],[114,175,77,0.3078307179755808],[114,175,78,0.3059500434880589],[114,175,79,0.30394107122595143],[114,176,64,0.31495739725393],[114,176,65,0.3148588285353454],[114,176,66,0.31452576448687464],[114,176,67,0.31400549137985895],[114,176,68,0.313318010269242],[114,176,69,0.3124608582283302],[114,176,70,0.31143517753195604],[114,176,71,0.3102452780023446],[114,176,72,0.3088976697497388],[114,176,73,0.3074002003488291],[114,176,74,0.3057612998020934],[114,176,75,0.3039893364607651],[114,176,76,0.3020920868906026],[114,176,77,0.3000763224845665],[114,176,78,0.29794751543953224],[114,176,79,0.2957096665311374],[114,177,64,0.3105014084063453],[114,177,65,0.3101498659295788],[114,177,66,0.3095548374985464],[114,177,67,0.30876231764465695],[114,177,68,0.3077920344928771],[114,177,69,0.30664295242739065],[114,177,70,0.3053185129448237],[114,177,71,0.3038259616030346],[114,177,72,0.3021751781564587],[114,177,73,0.3003776258319882],[114,177,74,0.29844542364268334],[114,177,75,0.296390545429889],[114,177,76,0.29422414911346834],[114,177,77,0.291956039416624],[114,177,78,0.2895942671180482],[114,177,79,0.28714486767197184],[114,178,64,0.3057009387195356],[114,178,65,0.3050946747520296],[114,178,66,0.30423641644380905],[114,178,67,0.30317030050962357],[114,178,68,0.3019158298207548],[114,178,69,0.30047389261094015],[114,178,70,0.29885066251138803],[114,178,71,0.2970566794627365],[114,178,72,0.2951054786891186],[114,178,73,0.29301235394906605],[114,178,74,0.29079325950149737],[114,178,75,0.28846385499162197],[114,178,76,0.28603869722302333],[114,178,77,0.28353058254046004],[114,178,78,0.28095004330512385],[114,178,79,0.27830500170252337],[114,179,64,0.30060014698049947],[114,179,65,0.29973989898790443],[114,179,66,0.29861964523316625],[114,179,67,0.2972811308525991],[114,179,68,0.2957436683933783],[114,179,69,0.29401050754709873],[114,179,70,0.2920909208334663],[114,179,71,0.28999903227297497],[114,179,72,0.2877522498943307],[114,179,73,0.28536984776075536],[114,179,74,0.28287170247861776],[114,179,75,0.28027718889190056],[114,179,76,0.2776042393999702],[114,179,77,0.27486857106616064],[114,179,78,0.2720830844131021],[114,179,79,0.2692574375300831],[114,180,64,0.2952430698000301],[114,180,65,0.2941322805196303],[114,180,66,0.2927540138032634],[114,180,67,0.2911471444562996],[114,180,68,0.2893308197964769],[114,180,69,0.28731101817640325],[114,180,70,0.28510040067461945],[114,180,71,0.282716886036247],[114,180,72,0.2801818946045324],[114,180,73,0.2775187568048004],[114,180,74,0.27475129164376894],[114,180,75,0.27190256040143607],[114,180,76,0.26899380040001375],[114,180,77,0.2660435434370099],[114,180,78,0.2630669231700624],[114,180,79,0.2600751754422885],[114,181,64,0.2896729448829796],[114,181,65,0.2883178929505747],[114,181,66,0.28668848949983444],[114,181,67,0.2848203350397267],[114,181,68,0.2827324288634923],[114,181,69,0.28043376421999117],[114,181,70,0.27794059398078724],[114,181,71,0.2752747552004812],[114,181,72,0.2724617353974215],[114,181,73,0.269528917912767],[114,181,74,0.26650401227554993],[114,181,75,0.2634136751910631],[114,181,76,0.2602823274517559],[114,181,77,0.2571311717463727],[114,181,78,0.25397741601704],[114,181,79,0.25083370668839416],[114,182,64,0.28393152823608053],[114,182,65,0.28234137035361073],[114,182,66,0.28047064642107866],[114,182,67,0.27835136999295806],[114,182,68,0.2760024028346486],[114,182,69,0.2734359492628955],[114,182,70,0.27067196336708194],[114,182,71,0.26773623138172725],[114,182,72,0.2646582740175508],[114,182,73,0.2614694416094521],[114,182,74,0.25820120843082855],[114,182,75,0.25488367219045743],[114,182,76,0.25154426438637306],[114,182,77,0.24820667684346925],[114,182,78,0.24489000941086492],[114,182,79,0.24160814344458292],[114,183,64,0.27805840486889866],[114,183,65,0.2762451304677804],[114,183,66,0.2741457922229905],[114,183,67,0.2717886083014827],[114,183,68,0.26919230735064686],[114,183,69,0.2663724037936173],[114,183,70,0.26335256356926856],[114,183,71,0.2601624572071129],[114,183,72,0.2568355143427978],[114,183,73,0.2534068837456772],[114,183,74,0.24991160557987321],[114,183,75,0.24638300226625526],[114,183,76,0.24285129394950083],[114,183,77,0.23934244420469125],[114,183,78,0.23587724124484774],[114,183,79,0.23247061951777281],[114,184,64,0.27209029252554007],[114,184,65,0.2700685918462722],[114,184,66,0.26775609186720434],[114,184,67,0.26517712012500205],[114,184,68,0.2623502707381307],[114,184,69,0.2592943656615776],[114,184,70,0.2560366923413586],[114,184,71,0.25261064479672724],[114,184,72,0.24905334846995936],[114,184,73,0.2454035020127384],[114,184,74,0.24169944304724017],[114,184,75,0.23797744456768474],[114,184,76,0.23427024826592385],[114,184,77,0.23060584067553402],[114,184,78,0.2270064776361392],[114,184,79,0.22348796218678993],[114,185,64,0.2660603379682647],[114,185,65,0.2638473844406065],[114,185,66,0.2613396877729776],[114,185,67,0.2585577074768033],[114,185,68,0.2555198960261533],[114,185,69,0.2522482773981153],[114,185,70,0.24877357026813354],[114,185,71,0.24513263839516655],[114,185,72,0.24136600549187964],[114,185,73,0.2375155969923013],[114,185,74,0.23362271601239604],[114,185,75,0.2297262604110662],[114,185,76,0.2258611874607943],[114,185,77,0.22205723223155255],[114,185,78,0.21833788538212434],[114,185,79,0.21471963564322874],[114,186,64,0.25999740531897175],[114,186,65,0.25761255308909614],[114,186,66,0.25492981581784124],[114,186,67,0.25196592543328483],[114,186,68,0.24873918011776353],[114,186,69,0.2452745998342591],[114,186,70,0.24160604895308402],[114,186,71,0.237773520660842],[114,186,72,0.23382056254309866],[114,186,73,0.2297919374087503],[114,186,74,0.22573152684716544],[114,186,75,0.22168048460856915],[114,186,76,0.217675646486783],[114,186,77,0.21374820296448596],[114,186,78,0.20992264045812525],[114,186,79,0.2062159565761943],[114,187,64,0.2539253559524923],[114,187,65,0.2513897533642559],[114,187,66,0.24855391661811327],[114,187,67,0.2454311032908642],[114,187,68,0.24203943953045992],[114,187,69,0.23840664144145057],[114,187,70,0.2345693470401378],[114,187,71,0.23057026212566464],[114,187,72,0.22645551770385852],[114,187,73,0.22227226927377355],[114,187,74,0.21806654560119562],[114,187,75,0.2138813541931825],[114,187,76,0.2097550502664621],[114,187,77,0.20571997557347255],[114,187,78,0.20180137301653123],[114,187,79,0.1980165825468862],[114,188,64,0.24786231942432377],[114,188,65,0.24519843922139964],[114,188,66,0.24223274150845167],[114,188,67,0.23897536507692083],[114,188,68,0.23544424211116838],[114,188,69,0.23166940281728254],[114,188,70,0.22768981352913933],[114,188,71,0.2235504133468672],[114,188,72,0.21929942437084243],[114,188,73,0.21498590864262876],[114,188,74,0.21065757948895383],[114,188,75,0.2063588745481316],[114,188,76,0.20212929733043528],[114,188,77,0.19800203372806305],[114,188,78,0.19400284945013213],[114,188,79,0.19014927391744293],[114,189,64,0.24181995490764555],[114,189,65,0.23905104188205725],[114,189,66,0.23597945263179165],[114,189,67,0.2326126488154587],[114,189,68,0.22896834412848358],[114,189,69,0.2250784357400271],[114,189,70,0.22098371785323742],[114,189,71,0.21673083928937237],[114,189,72,0.2123695867300944],[114,189,73,0.20795041774089965],[114,189,74,0.2035222512850996],[114,189,75,0.19913052301767473],[114,189,76,0.1948155122168888],[114,189,77,0.19061094677210144],[114,189,78,0.18654289220235218],[114,189,79,0.18262893023592472],[114,190,64,0.2358027026087866],[114,190,65,0.23295213937961848],[114,190,66,0.22979871654591794],[114,190,67,0.22634772394539993],[114,190,68,0.22261663214569785],[114,190,69,0.2186387162217557],[114,190,70,0.21445606619957053],[114,190,71,0.21011649549964342],[114,190,72,0.20567081600148712],[114,190,73,0.2011703642678335],[114,190,74,0.1966647865975094],[114,190,75,0.19220009015530556],[114,190,76,0.1878169669951892],[114,190,77,0.18354939735319156],[114,190,78,0.1794235381418702],[114,190,79,0.1754569021332876],[114,191,64,0.22980702462689254],[114,191,65,0.2268976161909791],[114,191,66,0.22368579075080636],[114,191,67,0.22017520629004977],[114,191,68,0.21638306908285584],[114,191,69,0.2123435310004334],[114,191,70,0.208099443573133],[114,191,71,0.20369924566055406],[114,191,72,0.19919424716498715],[114,191,73,0.19463616373761614],[114,191,74,0.19007491005875293],[114,191,75,0.18555665885479303],[114,191,76,0.18112217238471068],[114,191,77,0.17680541269106878],[114,191,78,0.17263243646827098],[114,191,79,0.16862057995801322],[114,192,64,0.2238206347238868],[114,192,65,0.22087381237840745],[114,192,66,0.2176256025431901],[114,192,67,0.2140785699817991],[114,192,68,0.21024964388620299],[114,192,69,0.20617337692794085],[114,192,70,0.20189288112886156],[114,192,71,0.19745672015281598],[114,192,72,0.19291621592811004],[114,192,73,0.18832300478437142],[114,192,74,0.18372685055851662],[114,192,75,0.17917372171012405],[114,192,76,0.17470413906101281],[114,192,77,0.17035180034042147],[114,192,78,0.1661424872794405],[114,192,79,0.1620932605601037],[114,193,64,0.21782171647394918],[114,193,65,0.21485666166944498],[114,193,66,0.2115918196106734],[114,193,67,0.20802915575561937],[114,193,68,0.2041853242379722],[114,193,69,0.20009487273256288],[114,193,70,0.19580074832776986],[114,193,71,0.1913512152908356],[114,193,72,0.1867971957501523],[114,193,73,0.18218985742898353],[114,193,74,0.1775784557299152],[114,193,75,0.17300843706075808],[114,193,76,0.1685198098731268],[114,193,77,0.16414578945765373],[114,193,78,0.15991172210828655],[114,193,79,0.15583429383612504],[114,194,64,0.21177812926768],[114,194,65,0.20881081790940256],[114,194,66,0.2055459117871089],[114,194,67,0.20198517503836194],[114,194,68,0.19814501175849797],[114,194,69,0.1940596826610609],[114,194,70,0.18977166950931185],[114,194,71,0.18532863294937363],[114,194,72,0.18078079480184267],[114,194,73,0.17617856438569798],[114,194,74,0.17157041600137793],[114,194,75,0.1670010242980156],[114,194,76,0.16250966383724505],[114,194,77,0.15812887874581205],[114,194,78,0.15388342792492993],[114,194,79,0.14978951085957076],[114,195,64,0.20532816404834106],[114,195,65,0.2026893273581942],[114,195,66,0.19943683462799847],[114,195,67,0.19589141213999903],[114,195,68,0.19206927224467202],[114,195,69,0.18800429068478697],[114,195,70,0.18373836285149592],[114,195,71,0.17931840832977303],[114,195,72,0.17479379841307313],[114,195,73,0.17021402460331336],[114,195,74,0.1656266150466839],[114,195,75,0.16107530546059254],[114,195,76,0.1565984707014225],[114,195,77,0.15222782270974558],[114,195,78,0.14798738015264118],[114,195,79,0.1438927146653925],[114,196,64,0.19558015190283373],[114,196,65,0.19646127307058994],[114,196,66,0.1932322959782222],[114,196,67,0.1897140436876113],[114,196,68,0.18592264447555873],[114,196,69,0.1818916039153436],[114,196,70,0.17766220874297325],[114,196,71,0.1732805833345112],[114,196,72,0.16879516640524037],[114,196,73,0.16425442569554258],[114,196,74,0.1597048174141829],[114,196,75,0.15518899682103676],[114,196,76,0.15074428593252212],[114,196,77,0.14640140392704712],[114,196,78,0.14218346541805743],[114,196,79,0.13810525135227472],[114,197,64,0.18577843626975746],[114,197,65,0.18740237203903173],[114,197,66,0.18693634668138515],[114,197,67,0.1834599324138025],[114,197,68,0.17971459058865497],[114,197,69,0.1757334251860469],[114,197,70,0.17155702683266458],[114,197,71,0.16723059519961028],[114,197,72,0.16280147503809164],[114,197,73,0.15831692662609811],[114,197,74,0.1538221371966363],[114,197,75,0.14935847953688766],[114,197,76,0.14496202355664106],[114,197,77,0.14066230622648315],[114,197,78,0.1364813648847804],[114,197,79,0.1324330385109546],[114,198,64,0.17595242224002652],[114,198,65,0.1775865121044969],[114,198,66,0.17909184927270821],[114,198,67,0.1771316540276749],[114,198,68,0.1734497752575679],[114,198,69,0.16953624392203595],[114,198,70,0.1654308127682944],[114,198,71,0.1611775647469145],[114,198,72,0.15682252388723794],[114,198,73,0.15241149587297007],[114,198,74,0.14798814465402826],[114,198,75,0.14359231105870185],[114,198,76,0.1392585789887889],[114,198,77,0.1350150943924548],[114,198,78,0.13088264181835693],[114,198,79,0.12687398296345886],[114,199,64,0.16613469892880256],[114,199,65,0.1677718518889289],[114,199,66,0.1692741591000521],[114,199,67,0.17063838322558744],[114,199,68,0.16712580166862537],[114,199,69,0.16329868267209843],[114,199,70,0.15928293506865723],[114,199,71,0.15512129478125425],[114,199,72,0.1508581974356019],[114,199,73,0.14653770706589717],[114,199,74,0.1422016742972613],[114,199,75,0.13788812970157385],[114,199,76,0.13362991765412563],[114,199,77,0.12945357564314663],[114,199,78,0.1253784636059368],[114,199,79,0.12141614748729347],[114,200,64,0.15635918657795142],[114,200,65,0.1579905927450306],[114,200,66,0.15948185527629818],[114,200,67,0.16082770108683395],[114,200,68,0.16073532901165513],[114,200,69,0.15701372502547672],[114,200,70,0.15310647629618818],[114,200,71,0.1490547233968716],[114,200,72,0.1449010254708547],[114,200,73,0.14068739765930793],[114,200,74,0.13645356950315932],[114,200,75,0.13223546970042865],[114,200,76,0.12806394224596887],[114,200,77,0.12396369862087667],[114,200,78,0.11995251033651863],[114,200,79,0.11604064577633481],[114,201,64,0.14665943118047417],[114,201,65,0.1482752353121972],[114,201,66,0.14974658575741462],[114,201,67,0.15106565487539245],[114,201,68,0.15221596987169633],[114,201,69,0.15067081952215858],[114,201,70,0.14689046156591629],[114,201,71,0.14296627828578093],[114,201,72,0.13893866043581388],[114,201,73,0.1348472626788025],[114,201,74,0.13072938230808084],[114,201,75,0.12661855328895844],[114,201,76,0.12254336029814814],[114,201,77,0.11852647709892625],[114,201,78,0.11458393324690783],[114,201,79,0.11072461277927205],[114,202,64,0.1462138861081976],[114,202,65,0.1447018249316666],[114,202,66,0.14319845194536066],[114,202,67,0.141685188402764],[114,202,68,0.1424901635475639],[114,202,69,0.14339418542071825],[114,202,70,0.1406219746155589],[114,202,71,0.13684213248188717],[114,202,72,0.1329562723858761],[114,202,73,0.12900138442233441],[114,202,74,0.12501202949062637],[114,202,75,0.12101906113958152],[114,202,76,0.11704855362904226],[114,202,77,0.11312094017096283],[114,202,78,0.10925036499324373],[114,202,79,0.10544425255081828],[114,203,64,0.14599034693573348],[114,203,65,0.1442200133099246],[114,203,66,0.14245679754896146],[114,203,67,0.14067877154887362],[114,203,68,0.13885907427864266],[114,203,69,0.1369646129497964],[114,203,70,0.13492930435111003],[114,203,71,0.1306683619024858],[114,203,72,0.12693886215316214],[114,203,73,0.12313369896197357],[114,203,74,0.11928440603876156],[114,203,75,0.11541888250744904],[114,203,76,0.11156045124138507],[114,203,77,0.10772711073691721],[114,203,78,0.10393098377621987],[114,203,79,0.10017796583882829],[114,204,64,0.14585188615345038],[114,204,65,0.14380659264260628],[114,204,66,0.14176804284793743],[114,204,67,0.13971058153118787],[114,204,68,0.13760553221692515],[114,204,69,0.13542072926660806],[114,204,70,0.13312201558978196],[114,204,71,0.1301569633391498],[114,204,72,0.12400002288953639],[114,204,73,0.11787031708551007],[114,204,74,0.11353195706852914],[114,204,75,0.10980284641390593],[114,204,76,0.1060634072752589],[114,204,77,0.10232901413351658],[114,204,78,0.09860963340311671],[114,204,79,0.09490955970539519],[114,205,64,0.14581199545037868],[114,205,65,0.143476505016644],[114,205,66,0.14114842375805914],[114,205,67,0.13879805530598413],[114,205,68,0.13639466282034204],[114,205,69,0.13390699452407256],[114,205,70,0.13130287518025846],[114,205,71,0.12855048690213008],[114,205,72,0.12510545795382433],[114,205,73,0.11892461062212625],[114,205,74,0.11278280341994369],[114,205,75,0.10669573188038961],[114,205,76,0.10067515458093942],[114,205,77,0.096917718777844],[114,205,78,0.09327800141053187],[114,205,79,0.08963154154079239],[114,206,64,0.14587818621670537],[114,206,65,0.1432389799743333],[114,206,66,0.14060861132654562],[114,206,67,0.13795309423202015],[114,206,68,0.13523940533731582],[114,206,69,0.13243716349564422],[114,206,70,0.1295162422892728],[114,206,71,0.12644771622289494],[114,206,72,0.12320477707768968],[114,206,73,0.11976353018306513],[114,206,74,0.11360779317476113],[114,206,75,0.10745074427772927],[114,206,76,0.10134186878288479],[114,206,77,0.09528561955194768],[114,206,78,0.08928224429622944],[114,206,79,0.08434849987582141],[114,207,64,0.14605233401597637],[114,207,65,0.14309731308573045],[114,207,66,0.14015304422236785],[114,207,67,0.13718108095073386],[114,207,68,0.1341459167951384],[114,207,69,0.13101797288013348],[114,207,70,0.12776921200000974],[114,207,71,0.12437372494089619],[114,207,72,0.12080835721820124],[114,207,73,0.11705323891350415],[114,207,74,0.11309221566643027],[114,207,75,0.10805490595644125],[114,207,76,0.101863979621515],[114,207,77,0.09570326070312929],[114,207,78,0.08957050027485325],[114,207,79,0.0834598778942046],[114,208,64,0.1463346271953554],[114,208,65,0.14305157594953258],[114,208,66,0.1397818328339271],[114,208,67,0.13648245549446747],[114,208,68,0.13311532345127527],[114,208,69,0.1296515790874237],[114,208,70,0.12606527905609702],[114,208,71,0.12233360079652625],[114,208,72,0.11843716076495471],[114,208,73,0.11436026065833019],[114,208,74,0.1100910603945555],[114,208,75,0.10562167672543288],[114,208,76,0.10094820646992238],[114,208,77,0.09598259389992352],[114,208,78,0.08972343641542943],[114,208,79,0.08345857285143617],[114,209,64,0.1467220062851623],[114,209,65,0.14309886007881276],[114,209,66,0.13949245548330738],[114,209,67,0.13585546301067958],[114,209,68,0.1321470901259479],[114,209,69,0.12833910872866228],[114,209,70,0.12440763390851427],[114,209,71,0.12033293710191159],[114,209,72,0.1160994418235988],[114,209,73,0.11169567376249648],[114,209,74,0.10711416473326127],[114,209,75,0.10235131004557346],[114,209,76,0.09740717892147713],[114,209,77,0.09228527765705294],[114,209,78,0.08699226528911919],[114,209,79,0.08153762158816857],[114,210,64,0.1472071935333306],[114,210,65,0.14323274433091354],[114,210,66,0.1392795359764947],[114,210,67,0.135296095274159],[114,210,68,0.13123896951031588],[114,210,69,0.12708045763869139],[114,210,70,0.12279865734543764],[114,210,71,0.11837687803282372],[114,210,72,0.11380330532635305],[114,210,73,0.10907064750282303],[114,210,74,0.10417576406669013],[114,210,75,0.09911927672916797],[114,210,76,0.09390516306796359],[114,210,77,0.08854033316567896],[114,210,78,0.08303418954283855],[114,210,79,0.07739817071526098],[114,211,64,0.14777870066060317],[114,211,65,0.14344319568061858],[114,211,66,0.13913463877036017],[114,211,67,0.13479777927513134],[114,211,68,0.1303865824607477],[114,211,69,0.12587376233791361],[114,211,70,0.121239284214678],[114,211,71,0.11646937761530858],[114,211,72,0.11155586634540537],[114,211,73,0.10649550887907076],[114,211,74,0.10128935002800277],[114,211,75,0.09594208483484898],[114,211,76,0.0904614356107343],[114,211,77,0.08485754301008193],[114,211,78,0.0791423720063083],[114,211,79,0.07332913359802237],[114,212,64,0.14842100668291708],[114,212,65,0.14371664103429652],[114,212,66,0.13904623642413907],[114,212,67,0.13435123988075515],[114,212,68,0.12958317467387273],[114,212,69,0.12471505047256419],[114,212,70,0.11972854881162426],[114,212,71,0.11461264298359733],[114,212,72,0.10936259605877478],[114,212,73,0.10397899809614886],[114,212,74,0.09846684422271616],[114,212,75,0.09283465519585879],[114,212,76,0.08709364199471507],[114,212,77,0.0812569159123193],[114,212,78,0.07533874554293152],[114,212,79,0.06935386197700887],[114,213,64,0.14911490831033566],[114,213,65,0.1440362124955982],[114,213,66,0.13899985165287218],[114,213,67,0.13394453880242102],[114,213,68,0.12881955189665156],[114,213,69,0.12359807231353068],[114,213,70,0.11826331394085828],[114,213,71,0.11280676384635906],[114,213,72,0.10722685623479422],[114,213,73,0.10152771453265978],[114,213,74,0.09571796396908913],[114,213,75,0.08980961691385915],[114,213,76,0.08381703311832737],[114,213,77,0.07775595688391083],[114,213,78,0.07164263305782691],[114,213,79,0.0654930036262524],[114,214,64,0.14983804558052335],[114,214,65,0.14438216864375722],[114,214,66,0.13897837645260466],[114,214,67,0.1335632922558028],[114,214,68,0.12808419598280832],[114,214,69,0.12251431555368388],[114,214,70,0.11683818582206568],[114,214,71,0.11104953026318107],[114,214,72,0.10514962426811941],[114,214,73,0.09914575515911975],[114,214,74,0.0930497819487157],[114,214,75,0.08687679771349759],[114,214,76,0.08064389729272167],[114,214,77,0.07436905285459061],[114,214,78,0.06807009970160663],[114,214,79,0.06176383451030934],[114,215,64,0.15056560552400394],[114,215,65,0.14473249452748194],[114,215,66,0.1389625709117755],[114,215,67,0.1331910698482907],[114,215,68,0.1273635642580602],[114,215,69,0.12145320579831462],[114,215,70,0.11544561716894959],[114,215,71,0.1093364409944295],[114,215,72,0.10312941096419162],[114,215,73,0.09683454753537386],[114,215,74,0.09046648182814042],[114,215,75,0.08404291114871074],[114,215,76,0.07758318937068587],[114,215,77,0.07110705519318088],[114,215,78,0.06463350107799767],[114,215,79,0.05817978544719314],[114,216,64,0.15127120678671535],[114,216,65,0.1450636832091152],[114,216,66,0.13893174445831039],[114,216,67,0.1328099773672498],[114,216,68,0.12664257479946558],[114,216,69,0.12040249529036312],[114,216,70,0.11407620092108768],[114,216,71,0.10766090484273841],[114,216,72,0.10116237342758519],[114,216,73,0.0945928796780498],[114,216,74,0.08796931207573169],[114,216,75,0.08131144281644233],[114,216,76,0.07464035913070849],[114,216,77,0.06797706113465231],[114,216,78,0.06134122939728163],[114,216,79,0.05475016514694476],[114,217,64,0.15192796825004476],[114,217,65,0.14535170181271354],[114,217,66,0.13886462241519432],[114,217,67,0.13240142627038154],[114,217,68,0.1259052803669629],[114,217,69,0.1193488425499258],[114,217,70,0.11271915725143306],[114,217,71,0.10601463755182665],[114,217,72,0.09924262556137507],[114,217,73,0.09241712924422209],[114,217,74,0.08555674035627468],[114,217,75,0.07868273789373098],[114,217,76,0.07181738116306123],[114,217,77,0.06498239628896338],[114,217,78,0.058197659678192765],[114,217,79,0.0514800816544305],[114,218,64,0.15250976478761974],[114,218,65,0.14557314513392905],[114,218,66,0.13874040084658698],[114,218,67,0.13194709279409816],[114,218,68,0.1251357338454564],[114,218,69,0.11827858573359004],[114,218,70,0.11136301660392998],[114,218,71,0.10438825696555165],[114,218,72,0.09736274882683038],[114,218,73,0.09030169462400947],[114,218,74,0.08322481103588672],[114,218,75,0.0761542924669848],[114,218,76,0.06911298865939176],[114,218,77,0.06212280056264181],[114,218,78,0.055203298255985175],[114,218,79,0.04837056437864959],[114,219,64,0.15299267337925487],[114,219,65,0.14570657995666061],[114,219,66,0.13853999276952647],[114,219,67,0.1314300696949224],[114,219,68,0.12431904816132723],[114,219,69,0.11717871263118843],[114,219,70,0.10999650163420796],[114,219,71,0.10277207927477558],[114,219,72,0.09551450604315585],[114,219,73,0.0882396306703303],[114,219,74,0.0809677084697022],[114,219,75,0.07372125126553922],[114,219,76,0.06652311365303547],[114,219,77,0.05939481997115081],[114,219,78,0.0523551360017164],[114,219,79,0.045418889037335035],[114,220,64,0.15335661286282082],[114,220,65,0.14573408328870852],[114,220,66,0.1382474688802943],[114,220,67,0.13083621371991558],[114,220,68,0.12344265372545314],[114,220,69,0.11603803031310485],[114,220,70,0.10860961102910292],[114,220,71,0.10115711928939373],[114,220,72,0.09368976112329731],[114,220,73,0.08622349191625518],[114,220,74,0.07877852887211205],[114,220,75,0.07137711454314198],[114,220,76,0.06404153639197879],[114,220,77,0.05679240695689365],[114,220,78,0.04964720879552214],[114,220,79,0.04261910798310346],[114,221,64,0.15358718064191984],[114,221,65,0.14564297777354707],[114,221,66,0.1378516959970159],[114,221,67,0.130155691962398],[114,221,68,0.12249775652305865],[114,221,69,0.11484853751755457],[114,221,70,0.10719490826503165],[114,221,71,0.09953629776487481],[114,221,72,0.0918816077411131],[114,221,73,0.08424638623634209],[114,221,74,0.0766502636811631],[114,221,75,0.06911465696776682],[114,221,76,0.061660746647064876],[114,221,77,0.05430773195110212],[114,221,78,0.04707136792161976],[114,221,79,0.039962788502702656],[114,222,64,0.15367768967848344],[114,222,65,0.14542776755520814],[114,222,66,0.13734817644841568],[114,222,67,0.12938473029610612],[114,222,68,0.12148100001632159],[114,222,69,0.11360700292165807],[114,222,70,0.10574901842834783],[114,222,71,0.09790585888422232],[114,222,72,0.09008571000480196],[114,222,73,0.08230324199533222],[114,222,74,0.07457699742233766],[114,222,75,0.06692706147947242],[114,222,76,0.059373019861956644],[114,222,77,0.05193220902525668],[114,222,78,0.044618263162378366],[114,222,79,0.03743996179146195],[114,223,64,0.15363140908134446],[114,223,65,0.1450922778648263],[114,223,66,0.13674109163956907],[114,223,67,0.12852756709126978],[114,223,68,0.12039633404551262],[114,223,69,0.1123167524695426],[114,223,70,0.10427433625970661],[114,223,71,0.09626700104440782],[114,223,72,0.08830185826842848],[114,223,73,0.08039229179276287],[114,223,74,0.07255532314955987],[114,223,75,0.06480927115513296],[114,223,76,0.057171711135917215],[114,223,77,0.04965773856644001],[114,223,78,0.04227854146052774],[114,223,79,0.035040285398434],[114,224,64,0.15346401155173994],[114,224,65,0.1446520015578181],[114,224,66,0.13604555299618312],[114,224,67,0.12759861539694714],[114,224,68,0.11925709390555686],[114,224,69,0.1109896689320838],[114,224,70,0.10278094859602216],[114,224,71,0.09462772411782393],[114,224,72,0.08653574324444546],[114,224,73,0.07851677595206308],[114,224,74,0.0705859785894707],[114,224,75,0.0627595621743392],[114,224,76,0.05505277009210876],[114,224,77,0.047478169977661154],[114,224,78,0.04004426408889435],[114,224,79,0.032754422010378204],[114,225,64,0.15320623086148577],[114,225,65,0.1441366557568935],[114,225,66,0.13529006342625818],[114,225,67,0.12662483672227373],[114,225,68,0.11808829273417779],[114,225,69,0.10964840684312613],[114,225,70,0.1012887743646913],[114,225,71,0.09300489635105066],[114,225,72,0.08480095158210396],[114,225,73,0.0766868689143952],[114,225,74,0.06867570613567747],[114,225,75,0.060781341009458],[114,225,76,0.05301647971976606],[114,225,77,0.04539098744558192],[114,225,78,0.03791054531288717],[114,225,79,0.03057563749163805],[114,226,64,0.15290673241509528],[114,226,65,0.14359295164407973],[114,226,66,0.1345191923380468],[114,226,67,0.12564832946115395],[114,226,68,0.1169291302714187],[114,226,69,0.10832882589234497],[114,226,70,0.09982992523168431],[114,226,71,0.0914265440215396],[114,226,72,0.08312118604600295],[114,226,73,0.07492183167737555],[114,226,74,0.06683933982932676],[114,226,75,0.05888516896137616],[114,226,76,0.05106942228495247],[114,226,77,0.04339922183104289],[114,226,78,0.03587741554921284],[114,226,79,0.02850162111912091],[114,227,64,0.15263478717889647],[114,227,65,0.1430879849909613],[114,227,66,0.1337976050773746],[114,227,67,0.12473097933591541],[114,227,68,0.11583828617762683],[114,227,69,0.10708595643168894],[114,227,70,0.09845536766833085],[114,227,71,0.0899392202131323],[114,227,72,0.08153833008106164],[114,227,73,0.07325873556338584],[114,227,74,0.06510912352712189],[114,227,75,0.05709858100303778],[114,227,76,0.04923467714488048],[114,227,77,0.04152188014361933],[114,227,78,0.03396031318229868],[114,227,79,0.026544853021203522],[114,228,64,0.15246683574927888],[114,228,65,0.1426991910511312],[114,228,66,0.1332031207960991],[114,228,67,0.12395053739986045],[114,228,68,0.1148930941904079],[114,228,69,0.10599639529895284],[114,228,70,0.09724065969613552],[114,228,71,0.08861715264059694],[114,228,72,0.08012499568677618],[114,228,73,0.07176829573589048],[114,228,74,0.06355359912645593],[114,228,75,0.05548767626870427],[114,228,76,0.047575641826065045],[114,228,77,0.039819414940697045],[114,228,78,0.032216523495213895],[114,228,79,0.024759255900917553],[114,229,64,0.15246071735856317],[114,229,65,0.14248615580298274],[114,229,66,0.13279647858580362],[114,229,67,0.12336847050454475],[114,229,68,0.11415545772909631],[114,229,69,0.10512225017686151],[114,229,70,0.0962479105577131],[114,229,71,0.0875222572169626],[114,229,72,0.07894270238871898],[114,229,73,0.07051141338501843],[114,229,74,0.062232802629231275],[114,229,75,0.05411135194410568],[114,229,76,0.04614977599799684],[114,229,77,0.03834752930156094],[114,229,78,0.030699660637920748],[114,229,79,0.023196018303697493],[114,230,64,0.15265388017349255],[114,230,65,0.14248762565654144],[114,230,66,0.13261728474337536],[114,230,67,0.12302489892593471],[114,230,68,0.1136657683032027],[114,230,69,0.10450401194237738],[114,230,70,0.0955175828729476],[114,230,71,0.08669486373034335],[114,230,72,0.07803154923385039],[114,230,73,0.06952785356836054],[114,230,74,0.06118604845858656],[114,230,75,0.05300833722297804],[114,230,76,0.04499506958504468],[114,230,77,0.03714330150636057],[114,230,78,0.029445703794728044],[114,230,79,0.021889822734443582],[114,231,64,0.15306600154373864],[114,231,65,0.14272412695054143],[114,231,66,0.1326866251961129],[114,231,67,0.12294120864482455],[114,231,68,0.11344552784301619],[114,231,69,0.10416319256211695],[114,231,70,0.09507114704728732],[114,231,71,0.08615638348970042],[114,231,72,0.07741288855874869],[114,231,73,0.06883891456750925],[114,231,74,0.06043458090294787],[114,231,75,0.0521998108510894],[114,231,76,0.04413260843856642],[114,231,77,0.03622767939982399],[114,231,78,0.028475399870351203],[114,231,79,0.020861135902253865],[114,232,64,0.15370146765088366],[114,232,65,0.14320044386521605],[114,232,66,0.13300953710844157],[114,232,67,0.12312252480694792],[114,232,68,0.11349983553102057],[114,232,69,0.10410483263394542],[114,232,70,0.09491361266615793],[114,232,71,0.0859118637301916],[114,232,72,0.07709189884387496],[114,232,73,0.06845001122187956],[114,232,74,0.059984156909383315],[114,232,75,0.05169196970426275],[114,232,76,0.04356911279990761],[114,232,77,0.03560797107372167],[114,232,78,0.027796687443158292],[114,232,79,0.020118546213303386],[114,233,64,0.15455171057463699],[114,233,65,0.143907952412619],[114,233,66,0.13357733704111785],[114,233,67,0.12356004346972808],[114,233,68,0.11381973598483061],[114,233,69,0.1043198751785212],[114,233,70,0.09503593324734581],[114,233,71,0.0859524249414842],[114,233,72,0.07706005264244895],[114,233,73,0.06835316809837147],[114,233,74,0.05982755601084014],[114,233,75,0.05147854417772139],[114,233,76,0.04329944440058449],[114,233,77,0.03528032786741356],[114,233,78,0.02740713822777966],[114,233,79,0.019661145089987266],[114,234,64,0.15559740122746735],[114,234,65,0.14482680900964115],[114,234,66,0.1343698042409116],[114,234,67,0.12423322029800643],[114,234,68,0.11438442755160334],[114,234,69,0.10478740455830171],[114,234,70,0.09541728337055418],[114,234,71,0.08625758030591633],[114,234,72,0.07729747896434902],[114,234,73,0.06852942209493548],[114,234,74,0.059947017224049645],[114,234,75,0.051543260479292176],[114,234,76,0.04330908256021684],[114,234,77,0.035232220322116745],[114,234,78,0.027296416959370445],[114,234,79,0.01948095330138464],[114,235,64,0.15681049640617417],[114,235,65,0.14592799194027417],[114,235,66,0.1353572174440932],[114,235,67,0.12511181467914698],[114,235,68,0.11516332928319163],[114,235,69,0.10547674921115568],[114,235,70,0.09602720701275033],[114,235,71,0.08679743624242928],[114,235,72,0.07777521930435437],[114,235,73,0.06895113388539562],[114,235,74,0.06031660256536956],[114,235,75,0.051862249731702025],[114,235,76,0.04357656945886652],[114,235,77,0.035444907545332895],[114,235,78,0.027448760438716],[114,235,79,0.019565393324484825],[114,236,64,0.15815613801201475],[114,236,65,0.1471751938207861],[114,236,66,0.13650224338779143],[114,236,67,0.12615778754077606],[114,236,68,0.11611800497454759],[114,236,69,0.10634944669795066],[114,236,70,0.09682763572820438],[114,236,71,0.08753477286001782],[114,236,72,0.07845737630923988],[114,236,73,0.06958420741565807],[114,236,74,0.06090448663267955],[114,236,75,0.05240640358891688],[114,236,76,0.04407592456004677],[114,236,77,0.03589590024257669],[114,236,78,0.027845476280550056],[114,236,79,0.01989980856278445],[114,237,64,0.15959438341832805],[114,237,65,0.1485265436795946],[114,237,66,0.13776165531536247],[114,237,67,0.12732703086407993],[114,237,68,0.11720392200002665],[114,237,69,0.10736104858489141],[114,237,70,0.09777475403131865],[114,237,71,0.08842698157170117],[114,237,72,0.07930313228546301],[114,237,73,0.07039019466208947],[114,237,74,0.061675149530490025],[114,237,75,0.05314365376517981],[114,237,76,0.04477900575660461],[114,237,77,0.03656139521044777],[114,237,78,0.02846743942503506],[114,237,79,0.02047000778776674],[114,238,64,0.16107781767166213],[114,238,65,0.14993211632156028],[114,238,66,0.1390837512418708],[114,238,67,0.1285667162039838],[114,238,68,0.11836775558586005],[114,238,69,0.10845840523215464],[114,238,70,0.0988162878996309],[114,238,71,0.08942337833259172],[114,238,72,0.08026410552726446],[114,238,73,0.07132371036992587],[114,238,74,0.06258686205006032],[114,238,75,0.05403653625509298],[114,238,76,0.045653157756429905],[114,238,77,0.03741400960119041],[114,238,78,0.029292910736098902],[114,238,79,0.02126016351003923],[114,239,64,0.16254989326307626],[114,239,65,0.15133303567334142],[114,239,66,0.14040805448823038],[114,239,67,0.12981541281337708],[114,239,68,0.11954773583908032],[114,239,69,0.10958004780007165],[114,239,70,0.09989172918854018],[114,239,71,0.09046508537266013],[114,239,72,0.08128371728800673],[114,239,73,0.07233113011459781],[114,239,74,0.06358958288392227],[114,239,75,0.05503918159311113],[114,239,76,0.046657218035156094],[114,239,77,0.03841775618822251],[114,239,78,0.030291467649328486],[114,239,79,0.022245717248343233],[114,240,64,0.1639617230672517],[114,240,65,0.15268112511282741],[114,240,66,0.14168719779078576],[114,240,67,0.13102651151889957],[114,240,68,0.12069787330231906],[114,240,69,0.11068045766839939],[114,240,70,0.10095589630623789],[114,240,71,0.09150715856057448],[114,240,72,0.08231720988918531],[114,240,73,0.07336789006841264],[114,240,74,0.06463901361460082],[114,240,75,0.056107694551099416],[114,240,76,0.04774789731248224],[114,240,77,0.03953021524291867],[114,240,78,0.03142187781977542],[114,240,79,0.02338698741661385],[114,241,64,0.16527557753426064],[114,241,65,0.1539397658168024],[114,241,66,0.14288556201247415],[114,241,67,0.1321651187981016],[114,241,68,0.12178361524021158],[114,241,69,0.11172500125312716],[114,241,70,0.10197365488742105],[114,241,71,0.09251357575921373],[114,241,72,0.08332734451616272],[114,241,73,0.07439528332953822],[114,241,74,0.06569481939301491],[114,241,75,0.05720005310079173],[114,241,76,0.048881532270900356],[114,241,77,0.04070623347706078],[114,241,78,0.03263775125959554],[114,241,79,0.024636695702508277],[114,242,64,0.16646364575782768],[114,242,65,0.15508181733751084],[114,242,66,0.14397652963149954],[114,242,67,0.13320484258127252],[114,242,68,0.12277837866795102],[114,242,69,0.11268643047913618],[114,242,70,0.10291660317248767],[114,242,71,0.0934543146161369],[114,242,72,0.08428206259760393],[114,242,73,0.07537887421622286],[114,242,74,0.06671993895134255],[114,242,75,0.058276426621052396],[114,242,76,0.05001549117107122],[114,242,77,0.04190046096358496],[114,242,78,0.03389121597637813],[114,242,79,0.025944752073172095],[114,243,64,0.1675071076623464],[114,243,65,0.15608875057781144],[114,243,66,0.14494168814180575],[114,243,67,0.1341270809070919],[114,243,68,0.1236629427788107],[114,243,69,0.11354439908199847],[114,243,70,0.10376273261493074],[114,243,71,0.09430517716936088],[114,243,72,0.08515449246041175],[114,243,73,0.07628870263413347],[114,243,74,0.06768099936476389],[114,243,75,0.059299810306490466],[114,243,76,0.051109033420834865],[114,243,77,0.04306843746331107],[114,243,78,0.03513422868676265],[114,243,79,0.027259783603056142],[114,244,64,0.16839518132518144],[114,244,65,0.15694975235754038],[114,244,66,0.14577000122808656],[114,244,67,0.13492027332038578],[114,244,68,0.1244247977998829],[114,244,69,0.11428492829699283],[114,244,70,0.10449603060243091],[114,244,71,0.09504754948490536],[114,244,72,0.08592288448409693],[114,244,73,0.07709941125650345],[114,244,74,0.06854864902325147],[114,244,75,0.06023657445119107],[114,244,76,0.052124082085514195],[114,244,77,0.04416759124618791],[114,244,78,0.03631979910651224],[114,244,79,0.027113997664372787],[114,245,64,0.16912414493520594],[114,245,65,0.15766080101251775],[114,245,66,0.14645694709322793],[114,245,67,0.13557911430542616],[114,245,68,0.12505744946294928],[114,245,69,0.11489982100334789],[114,245,70,0.10510602423715144],[114,245,71,0.09566809515311986],[114,245,72,0.08657047347360208],[114,245,73,0.07779029414396355],[114,245,74,0.06929780736826703],[114,245,75,0.06105692711373669],[114,245,76,0.0530259078225868],[114,245,77,0.04515814889389101],[114,245,78,0.037351243509179795],[114,245,79,0.025517394210727875],[114,246,64,0.1696963330021212],[114,246,65,0.1582237125758047],[114,246,66,0.14700362341775441],[114,246,67,0.13610372814220045],[114,246,68,0.1255596783619888],[114,246,69,0.11538602346469018],[114,246,70,0.10558726417957827],[114,246,71,0.09615838151292104],[114,246,72,0.08708526699249211],[114,246,73,0.0783452654323148],[114,246,74,0.06990782992713496],[114,246,75,0.06173528862264906],[114,246,76,0.05378372265074316],[114,246,77,0.04600395447102516],[114,246,78,0.03603895068790035],[114,246,79,0.024078306211635706],[114,247,64,0.1701191065590585],[114,247,65,0.1586451572137897],[114,247,66,0.14741581854774197],[114,247,67,0.13649880468279313],[114,247,68,0.12593475356980527],[114,247,69,0.11574493389667272],[114,247,70,0.10593874763658247],[114,247,71,0.09651443753289232],[114,247,72,0.08745975843884397],[114,247,73,0.07875274673485733],[114,247,74,0.0703625871717885],[114,247,75,0.06225057634887357],[114,247,76,0.05437118190295882],[114,247,77,0.04667319636299733],[114,247,78,0.03489269224012283],[114,247,79,0.02281852043334165],[114,248,64,0.1704037972432794],[114,248,65,0.15893564572754162],[114,248,66,0.1477030486399212],[114,248,67,0.1367726956708005],[114,248,68,0.12618960000413212],[114,248,69,0.11598165720043703],[114,248,70,0.10616327966903322],[114,248,71,0.09673624235664201],[114,248,72,0.08769056370521805],[114,248,73,0.07900547194238698],[114,248,74,0.07065045573969825],[114,248,75,0.06258639815524254],[114,248,76,0.05476679266676077],[114,248,77,0.04605542341904528],[114,248,78,0.03392505336112435],[114,248,79,0.02175598543582064],[114,249,64,0.17056462529788605],[114,249,65,0.1591084860841004],[114,249,66,0.14787756064191493],[114,249,67,0.13693647137019005],[114,249,68,0.12633391917008469],[114,249,69,0.1161042053278179],[114,249,70,0.10626677210924972],[114,249,71,0.0968271436190526],[114,249,72,0.08777798034395633],[114,249,73,0.07910020816093687],[114,249,74,0.07076422058549568],[114,249,75,0.0627311529343341],[114,249,76,0.05495422698469129],[114,249,77,0.04534245508527367],[114,249,78,0.03314402983920786],[114,249,79,0.020903783077448307],[114,250,64,0.1706175917122454],[114,250,65,0.15917871011399595],[114,250,66,0.14795330115279626],[114,250,67,0.1370029374324196],[114,250,68,0.12637926306234923],[114,250,69,0.11612264289253371],[114,250,70,0.10625747951554682],[114,250,71,0.09679320476190173],[114,250,72,0.08772546826176914],[114,250,73,0.07903739160684228],[114,250,74,0.07070088668425871],[114,250,75,0.06267803666804736],[114,250,76,0.054922538076306766],[114,250,77,0.04478876952081039],[114,250,78,0.032552331793700144],[114,250,79,0.02026919650474136],[114,251,64,0.17057934490999468],[114,251,65,0.15916197070004667],[114,251,66,0.14794485139432006],[114,251,67,0.13698561211197133],[114,251,68,0.1263380611872014],[114,251,69,0.11604817781138929],[114,251,70,0.10614517175065007],[114,251,71,0.0966424807225058],[114,251,72,0.08753905109394096],[114,251,73,0.07882067738173434],[114,251,74,0.0704613989826704],[114,251,75,0.06242495248558652],[114,251,76,0.054666277850967795],[114,251,77,0.04438757283405723],[114,251,78,0.032146788478206775],[114,251,79,0.019852876862838736],[114,252,64,0.17046602260350813],[114,252,65,0.15907340999096817],[114,252,66,0.1478663287289057],[114,252,67,0.13689766414348664],[114,252,68,0.12622260086422427],[114,252,69,0.11589219695380652],[114,252,70,0.10594024295600211],[114,252,71,0.09638422154087398],[114,252,72,0.08722663756200387],[114,252,73,0.0784564021801708],[114,252,74,0.07005026939593346],[114,252,75,0.06197432326507121],[114,252,76,0.054185514011830076],[114,252,77,0.044126723675393616],[114,252,78,0.03191785629402939],[114,252,79,0.01964811106251928],[114,253,64,0.17029206966179544],[114,253,65,0.15892649940085152],[114,253,66,0.14773025538617895],[114,253,67,0.13675081181799656],[114,253,68,0.12604396119023523],[114,253,69,0.11566524699674119],[114,253,70,0.10565275690516451],[114,253,71,0.09602800362973436],[114,253,72,0.08679726229993594],[114,253,73,0.07795295914049168],[114,253,74,0.06947510977722676],[114,253,75,0.06133280541854692],[114,253,76,0.053485745106737176],[114,253,77,0.04398857863289849],[114,253,78,0.0318492321934148],[114,253,79,0.01964019302389],[114,254,64,0.17006903308681004],[114,254,65,0.15873185240407126],[114,254,66,0.14754639530766106],[114,254,67,0.13655418404351213],[114,254,68,0.1258109012957454],[114,254,69,0.11537596092777735],[114,254,70,0.10529142895930216],[114,254,71,0.0955827886805646],[114,254,72,0.08626024584583843],[114,254,73,0.07732008423825729],[114,254,74,0.06874606994583035],[114,254,75,0.060510902623961374],[114,254,76,0.05257771196435489],[114,254,77,0.04394994505412604],[114,254,78,0.03191757466602032],[114,254,79,0.01980590088407175],[114,255,64,0.16980433546185397],[114,255,65,0.1584960114055678],[114,255,66,0.14732056029002136],[114,255,67,0.13631314444761214],[114,255,68,0.12552870379862882],[114,255,69,0.11502993091345382],[114,255,70,0.10486254511790027],[114,255,71,0.09505591043938676],[114,255,72,0.08562427374076802],[114,255,73,0.07656805384358242],[114,255,74,0.06787518005217988],[114,255,75,0.059522478423182326],[114,255,76,0.051477104066362446],[114,255,77,0.04369801771477075],[114,255,78,0.03209233449231812],[114,255,79,0.020113082704071316],[114,256,64,0.16950002852546536],[114,256,65,0.15822021025911331],[114,256,66,0.14705338690172662],[114,256,67,0.1360280798773375],[114,256,68,0.12519797466142685],[114,256,69,0.11462852855373817],[114,256,70,0.10436881895966767],[114,256,71,0.09445198988003858],[114,256,72,0.0848963949556174],[114,256,73,0.075706793320594],[114,256,74,0.0668755967850066],[114,256,75,0.05838416679433366],[114,256,76,0.05020415955081079],[114,256,77,0.042298917626982985],[114,256,78,0.0323356974115018],[114,256,79,0.020520353235591142],[114,257,64,0.16915154283013634],[114,257,65,0.15789912739098783],[114,257,66,0.14673909817145406],[114,257,67,0.1356931663914748],[114,257,68,0.12481341172716313],[114,257,69,0.11416768409685843],[114,257,70,0.10380819749654219],[114,257,71,0.0937717894186912],[114,257,72,0.08408095009853317],[114,257,73,0.07474490712690457],[114,257,74,0.06576076408257402],[114,257,75,0.05711469175893295],[114,257,76,0.04878317048950878],[114,257,77,0.0407342820153202],[114,257,78,0.032602655924528295],[114,257,79,0.020976918037106475],[114,258,64,0.16874634635029917],[114,258,65,0.1575196358874032],[114,258,66,0.14636435321313246],[114,258,67,0.13529531315729051],[114,258,68,0.12436283046606667],[114,258,69,0.11363697999249513],[114,258,70,0.10317300765627185],[114,258,71,0.09301139723509848],[114,258,72,0.08317877883129143],[114,258,73,0.07368889542926213],[114,258,74,0.06454362633852281],[114,258,75,0.05573406623230881],[114,258,76,0.04724165841424943],[114,258,77,0.03903938087621809],[114,258,78,0.031092983653443027],[114,258,79,0.021423625070235354],[114,259,64,0.16701415855944624],[114,259,65,0.15706110073931226],[114,259,66,0.14591064597362474],[114,259,67,0.1348186564870514],[114,259,68,0.1238335358115297],[114,259,69,0.11302741273974587],[114,259,70,0.10245841624120439],[114,259,71,0.09217055172933018],[114,259,72,0.08219448952973742],[114,259,73,0.07254841380698364],[114,259,74,0.06323893088517157],[114,259,75,0.054262035807152505],[114,259,76,0.04560413589271911],[114,259,77,0.0372431299795543],[114,259,78,0.029149541965666242],[114,259,79,0.02128770721635488],[114,260,64,0.16493396704857968],[114,260,65,0.15647728810845096],[114,260,66,0.14536265268220186],[114,260,67,0.13425236176490085],[114,260,68,0.12321954165423882],[114,260,69,0.1123379728603865],[114,260,70,0.10166830309539497],[114,260,71,0.0912577394615742],[114,260,72,0.08114071977498659],[114,260,73,0.07133964600031133],[114,260,74,0.06186567886974667],[114,260,75,0.052719592663147435],[114,260,76,0.04389268903670163],[114,260,77,0.035367768704638564],[114,260,78,0.027120159706573048],[114,260,79,0.019118800929875786],[114,261,64,0.1627065968384311],[114,261,65,0.15423435016078393],[114,261,66,0.14470994889846056],[114,261,67,0.13358986114585514],[114,261,68,0.12251850821025889],[114,261,69,0.1115707275306759],[114,261,70,0.10080913991442295],[114,261,71,0.09028366822244185],[114,261,72,0.08003209620153287],[114,261,73,0.07008069008495685],[114,261,74,0.06044488216616573],[114,261,75,0.05113001545178809],[114,261,76,0.04213214840625791],[114,261,77,0.03343891871313799],[114,261,78,0.025030464901057536],[114,261,79,0.016880404613001537],[114,262,64,0.16034515802995725],[114,262,65,0.15185319198195918],[114,262,66,0.14337604941380389],[114,262,67,0.13282827512861886],[114,262,68,0.12173106458009277],[114,262,69,0.11073004090794146],[114,262,70,0.099889112779741],[114,262,71,0.08926030215716407],[114,262,72,0.07888419700165819],[114,262,73,0.0687904661968772],[114,262,74,0.05899843601788627],[114,262,75,0.04951772737747317],[114,262,76,0.04034895298441049],[114,262,77,0.031484473458706676],[114,262,78,0.022909211368517937],[114,262,79,0.01460152208020915],[114,263,64,0.15785848959089427],[114,263,65,0.14934042722583668],[114,263,66,0.14085795711742613],[114,263,67,0.131968274265082],[114,263,68,0.12086066432120945],[114,263,69,0.10982239593098472],[114,263,70,0.0989178804857555],[114,263,71,0.08820052605168562],[114,263,72,0.07771309183703552],[114,263,73,0.06748810296832927],[114,263,74,0.057548325022526416],[114,263,75,0.04790729766396641],[114,263,76,0.03856992664001063],[114,263,77,0.02953313329938017],[114,263,78,0.020786560715907516],[114,263,79,0.012313335425455187],[114,264,64,0.15525102120334283],[114,264,65,0.1466987548464696],[114,264,66,0.13820100449328243],[114,264,67,0.12979175072554408],[114,264,68,0.11991378144768648],[114,264,69,0.10885654661054561],[114,264,70,0.0979066511789164],[114,264,71,0.08711811358879235],[114,264,72,0.07653516936098442],[114,264,73,0.06619259340458765],[114,264,74,0.056116078834347494],[114,264,75,0.04632267176258097],[114,264,76,0.036821261434673555],[114,264,77,0.027613124989689222],[114,264,78,0.0186925260479216],[114,264,79,0.010047366252924319],[114,265,64,0.15252227665470686],[114,265,65,0.1439264254216753],[114,265,66,0.13540211911161448],[114,265,67,0.12699031516901604],[114,265,68,0.11866955202623754],[114,265,69,0.10784400313706119],[114,265,70,0.09686857954664774],[114,265,71,0.08602800175300987],[114,265,72,0.07536725450382757],[114,265,73,0.06492272236157445],[114,265,74,0.05472247978690714],[114,265,75,0.04478663257984202],[114,265,76,0.03512771015853998],[114,265,77,0.02575110807308871],[114,265,78,0.016655580076146592],[114,265,79,0.010834197831521933],[114,266,64,0.14966601633060775],[114,266,65,0.14101634706679228],[114,266,66,0.13245343473618107],[114,266,67,0.12402479832608876],[114,266,68,0.11571402887635943],[114,266,69,0.10679985163568034],[114,266,70,0.09581948631612952],[114,266,71,0.08494687310434992],[114,266,72,0.07422701723349646],[114,266,73,0.06369726736147616],[114,266,74,0.05338752423049048],[114,266,75,0.04332049460815781],[114,266,76,0.03351199009657397],[114,266,77,0.0239712703209486],[114,266,78,0.018425479703360795],[114,266,79,0.016056659480157665],[114,267,64,0.14666901690864909],[114,267,65,0.13795482914924448],[114,267,66,0.1293410149167189],[114,267,67,0.12088112908173737],[114,267,68,0.11256409819914266],[114,267,69,0.10433430097432898],[114,267,70,0.0947789013803209],[114,267,71,0.08389404721656071],[114,267,72,0.07313367409640484],[114,267,73,0.06253547409222229],[114,267,74,0.05213063900195119],[114,267,75,0.041944032478213725],[114,267,76,0.03199439967214969],[114,267,77,0.026948637548950133],[114,267,78,0.024233775153150942],[114,267,79,0.021560166689391473],[114,268,64,0.143509486855684],[114,268,65,0.134719962507347],[114,268,66,0.1260432167981429],[114,268,67,0.11753822564647409],[114,268,68,0.10919945048509772],[114,268,69,0.10097637255284621],[114,268,70,0.09282340225586491],[114,268,71,0.08289268218519862],[114,268,72,0.07210898346946379],[114,268,73,0.06145780757733749],[114,268,74,0.050971154098181023],[114,268,75,0.040675645116260206],[114,268,76,0.03638158688829259],[114,268,77,0.033344155138951226],[114,268,78,0.03033122574791927],[114,268,79,0.027347969795022773],[114,269,64,0.1401551167991777],[114,269,65,0.13127963533353768],[114,269,66,0.12252869440069257],[114,269,67,0.1139660167781333],[114,269,68,0.1055917147932053],[114,269,69,0.09736107712613863],[114,269,70,0.08923303250646222],[114,269,71,0.08117123613461985],[114,269,72,0.07117853511179582],[114,269,73,0.06048697967389374],[114,269,74,0.049942580147444585],[114,269,75,0.046658090421252546],[114,269,76,0.043347340578882586],[114,269,77,0.04002820268922989],[114,269,78,0.036714475742082565],[114,269,79,0.033415988628410956],[114,270,64,0.13656076427550268],[114,270,65,0.12758918430309354],[114,270,66,0.11875404103146418],[114,270,67,0.11012310836252269],[114,270,68,0.10170218849582621],[114,270,69,0.09345297254763844],[114,270,70,0.08533945416161622],[114,270,71,0.07732900075528383],[114,270,72,0.0693923761916499],[114,270,73,0.0611194180006118],[114,270,74,0.05768346349004899],[114,270,75,0.05416819058361745],[114,270,76,0.050597928935839295],[114,270,77,0.04699377296859441],[114,270,78,0.04337356249812658],[114,270,79,0.03975187046864201],[114,271,64,0.1326971693226913],[114,271,65,0.12362018189318966],[114,271,66,0.11469233648211566],[114,271,67,0.10598474820161703],[114,271,68,0.09750886245070917],[114,271,69,0.08923323791350693],[114,271,70,0.08112734477312251],[114,271,71,0.07316260723034082],[114,271,72,0.06843212993846617],[114,271,73,0.06793037937073622],[114,271,74,0.06569949279583669],[114,271,75,0.06195167196383202],[114,271,76,0.058118203162787305],[114,271,77,0.05422344002942746],[114,271,78,0.05028935424507352],[114,271,79,0.0463354038773806],[114,272,64,0.1286451875700132],[114,272,65,0.11945499174694688],[114,272,66,0.1104269790539607],[114,272,67,0.10163477785168328],[114,272,68,0.093095277697038],[114,272,69,0.08478420984634714],[114,272,70,0.07667681511967968],[114,272,71,0.07370026675125756],[114,272,72,0.07325281390970069],[114,272,73,0.0727336282917742],[114,272,74,0.0721189032461266],[114,272,75,0.06994649516541525],[114,272,76,0.06585463510719838],[114,272,77,0.06167297345612271],[114,272,78,0.05742755678148988],[114,272,79,0.05314270326690172],[114,273,64,0.12450445822256101],[114,273,65,0.11519514413084792],[114,273,66,0.10606071337916538],[114,273,67,0.09717636783541375],[114,273,68,0.08856408752751048],[114,273,69,0.0802069128179792],[114,273,70,0.07903848314694958],[114,273,71,0.07852154371166234],[114,273,72,0.07799835565945168],[114,273,73,0.07744601805822378],[114,273,74,0.0768412844363939],[114,273,75,0.07616079285766816],[114,273,76,0.07374353342171264],[114,273,77,0.06928956144998699],[114,273,78,0.06474689247022107],[114,273,79,0.060144478984308795],[114,274,64,0.1203631289536218],[114,274,65,0.11093090009731509],[114,274,66,0.10168535442391688],[114,274,67,0.09270225920934069],[114,274,68,0.0854705989237323],[114,274,69,0.08470082513250489],[114,274,70,0.0839993747339014],[114,274,71,0.08334930514221353],[114,274,72,0.08273162562143761],[114,274,73,0.08212551442461878],[114,274,74,0.08150857317501933],[114,274,75,0.08085711811492363],[114,274,76,0.0801465077940598],[114,274,77,0.07701793024035443],[114,274,78,0.07220183534449781],[114,274,79,0.06730543168838607],[114,275,64,0.11629867227688767],[114,275,65,0.10674199867735358],[114,275,66,0.0973824550556208],[114,275,67,0.09199421286391535],[114,275,68,0.09090948071686111],[114,275,69,0.08992913261143469],[114,275,70,0.08904440901181811],[114,275,71,0.08824308470776827],[114,275,72,0.08750966677798044],[114,275,73,0.08682564090311315],[114,275,74,0.08616976565882489],[114,275,75,0.08551841434299283],[114,275,76,0.08484596381949538],[114,275,77,0.08412522979420875],[114,275,78,0.07974310358126406],[114,275,79,0.07458478727261939],[114,276,64,0.11237852615013885],[114,276,65,0.10269822606089964],[114,276,66,0.0992769645950456],[114,276,67,0.09783392001254934],[114,276,68,0.0965105369602572],[114,276,69,0.09530906849236642],[114,276,70,0.09422651489327015],[114,276,71,0.09325531599481077],[114,276,72,0.09238355728835151],[114,276,73,0.09159523435824725],[114,276,74,0.09087057522735843],[114,276,75,0.09018642011155684],[114,276,76,0.08951665799147222],[114,276,77,0.08883271932679504],[114,276,78,0.08731834389276191],[114,276,79,0.08193702455361207],[114,277,64,0.10917003932690532],[114,277,65,0.10736180937829452],[114,277,66,0.10557621881077073],[114,277,67,0.10388274149696244],[114,277,68,0.10231595931302682],[114,277,69,0.10088437910943465],[114,277,70,0.0995904459601495],[114,277,71,0.09843112145417962],[114,277,72,0.09739808682457744],[114,277,73,0.09647801334107484],[114,277,74,0.09565289953272763],[114,277,75,0.09490047469723956],[114,277,76,0.09419466804939755],[114,277,77,0.09350614276316149],[114,277,78,0.09280289407137911],[114,277,79,0.08931279540392786],[114,278,64,0.11621302521334351],[114,278,65,0.11414968116538599],[114,278,66,0.11211367629418012],[114,278,67,0.11017115411978184],[114,278,68,0.10835847521263241],[114,278,69,0.10668976914165194],[114,278,70,0.10517249885152824],[114,278,71,0.10380791531698558],[114,278,72,0.10259124607845292],[114,278,73,0.10151195877668275],[114,278,74,0.10055409924545163],[114,278,75,0.09969670359757407],[114,278,76,0.09891428362136885],[114,278,77,0.09817738469339174],[114,278,78,0.09745321530976687],[114,278,79,0.09666003689058407],[114,279,64,0.12349629541422204],[114,279,65,0.12118704477705279],[114,279,66,0.11890752062998508],[114,279,67,0.11671976632849455],[114,279,68,0.11466110727614141],[114,279,69,0.11275054946036175],[114,279,70,0.11100004576607139],[114,279,71,0.10941481998917092],[114,279,72,0.10799352908223886],[114,279,73,0.10672850678566344],[114,279,74,0.10560608821413575],[114,279,75,0.10460701483241835],[114,279,76,0.10370691912428809],[114,279,77,0.1028768881355522],[114,279,78,0.10208410495723254],[114,279,79,0.10129256710959655],[114,280,64,0.1310233502865839],[114,280,65,0.12847969508909768],[114,280,66,0.1259658071290571],[114,280,67,0.12353899708630915],[114,280,68,0.12123674727230543],[114,280,69,0.11908209912062057],[114,280,70,0.11709088063273798],[114,280,71,0.11527189560070233],[114,280,72,0.11362704814409565],[114,280,73,0.11215155356658103],[114,280,74,0.11083423513121739],[114,280,75,0.10965790620790504],[114,280,76,0.10859983710651304],[114,280,77,0.10763230577653377],[114,280,78,0.10672323142973053],[114,280,79,0.10583689002746757],[114,281,64,0.13878770604551172],[114,281,65,0.13602312961537438],[114,281,66,0.13328605078212993],[114,281,67,0.13062856910038986],[114,281,68,0.12808754417351037],[114,281,69,0.12568914110535892],[114,281,70,0.12345237866478444],[114,281,71,0.12138918253499424],[114,281,72,0.11950446133700594],[114,281,73,0.11779627239220962],[114,281,74,0.11625607687087283],[114,281,75,0.11486908382017319],[114,281,76,0.11361468241800607],[114,281,77,0.11246696165849505],[114,281,78,0.11139531654308236],[114,281,79,0.11036513972861521],[114,282,64,0.1467724668183054],[114,282,65,0.14380203639048908],[114,282,66,0.14085462832246698],[114,282,67,0.13797681599833514],[114,282,68,0.135204105959691],[114,282,69,0.13256483158338483],[114,282,70,0.1300804691529845],[114,282,71,0.12776555689339927],[114,282,72,0.12562771259735073],[114,282,73,0.12366774287787444],[114,282,74,0.12187984375898521],[114,282,75,0.12025189215845633],[114,282,76,0.11876582766415004],[114,282,77,0.11739812385956082],[114,282,78,0.1161203483165004],[114,282,79,0.11489981024445858],[114,283,64,0.1549497127661069],[114,283,65,0.15178959613745152],[114,283,66,0.14864599407909818],[114,283,67,0.14555980319655296],[114,283,68,0.14256451498878267],[114,283,69,0.13968966257386986],[114,283,70,0.13695842147418535],[114,283,71,0.13438739895816856],[114,283,72,0.13198658458608914],[114,283,73,0.1297593927652568],[114,283,74,0.12770279710851629],[114,283,75,0.12580755622923834],[114,283,76,0.12405853045064918],[114,283,77,0.12243508875829374],[114,283,78,0.12091160518299875],[114,283,79,0.11945804366916953],[114,284,64,0.16327970400759387],[114,284,65,0.15994659849766604],[114,284,66,0.15662170944331705],[114,284,67,0.15334026233559883],[114,284,68,0.1501331568692694],[114,284,69,0.14703017801992113],[114,284,70,0.14405544438986778],[114,284,71,0.141227074804165],[114,284,72,0.1385570645406479],[114,284,73,0.13605125252852243],[114,284,74,0.13370937940566843],[114,284,75,0.1315252361641161],[114,284,76,0.12948690295718737],[114,284,77,0.12757707749158193],[114,284,78,0.1257734922844959],[114,284,79,0.12404941993095248],[114,285,64,0.17170990021576202],[114,285,65,0.16822037222956318],[114,285,66,0.16472928589119412],[114,285,67,0.1612663392677797],[114,285,68,0.15785936287004113],[114,285,69,0.15453750336237881],[114,285,70,0.1513250987864324],[114,285,71,0.14824123127501407],[114,285,72,0.14529952339932717],[114,285,73,0.1425080231517636],[114,285,74,0.1398691775630458],[114,285,75,0.13737989479389895],[114,285,76,0.13503169438695348],[114,285,77,0.13281094521514825],[114,285,78,0.13069919051976836],[114,285,79,0.1286735592956028],[114,286,64,0.17840951983084907],[114,286,65,0.17231470545735456],[114,286,66,0.16714674517700995],[114,286,67,0.1629289335737518],[114,286,68,0.15965914693767838],[114,286,69,0.15730678458263359],[114,286,70,0.15580982018638367],[114,286,71,0.1550749718944173],[114,286,72,0.15215670851150628],[114,286,73,0.14907695744674274],[114,286,74,0.1461346996648495],[114,286,75,0.14332997866955896],[114,286,76,0.14065788682702188],[114,286,77,0.13810870375416945],[114,286,78,0.13566811898276443],[114,286,79,0.13331753828688003],[114,287,64,0.18020410617817614],[114,287,65,0.1739935055361888],[114,287,66,0.16871791003060982],[114,287,67,0.16440205813483508],[114,287,68,0.16104486861231748],[114,287,69,0.15861628622813365],[114,287,70,0.15705423246077357],[114,287,71,0.15626469268882806],[114,287,72,0.15611788437664076],[114,287,73,0.15568555527653674],[114,287,74,0.15243896561471723],[114,287,75,0.1493149129856624],[114,287,76,0.14631210501961],[114,287,77,0.14342485818719838],[114,287,78,0.1406432113758956],[114,287,79,0.1379531196474803],[114,288,64,0.1821403517257094],[114,288,65,0.17581597927713288],[114,288,66,0.17043277429222178],[114,288,67,0.16601701840833213],[114,288,68,0.1625688262149737],[114,288,69,0.16005889894594227],[114,288,70,0.15842537808853527],[114,288,71,0.1575738530588452],[114,288,72,0.15737341546127703],[114,288,73,0.1576594642248001],[114,288,74,0.1583226680551214],[114,288,75,0.15525241081356317],[114,288,76,0.15191984048615187],[114,288,77,0.14869355783947347],[114,288,78,0.1455680069075304],[114,288,79,0.1425337968815227],[114,289,64,0.18420083917004548],[114,289,65,0.17776570613587403],[114,289,66,0.17227588791597118],[114,289,67,0.1677592977283614],[114,289,68,0.16421738955350176],[114,289,69,0.16162182373050688],[114,289,70,0.15991122734616642],[114,289,71,0.1589911261705353],[114,289,72,0.15872988881414896],[114,289,73,0.15896148805058513],[114,289,74,0.1595753839078339],[114,289,75,0.16051118902920797],[114,289,76,0.1573824944128407],[114,289,77,0.15382556601949357],[114,289,78,0.15036355983734714],[114,289,79,0.1469916572785417],[114,290,64,0.1863675503603791],[114,290,65,0.17982563075744526],[114,290,66,0.17423114612615798],[114,290,67,0.169613718273455],[114,290,68,0.16597627341266613],[114,290,69,0.16329162389570712],[114,290,70,0.16149913959238354],[114,290,71,0.160504608195568],[114,290,72,0.16017607347097806],[114,290,73,0.1603465258432818],[114,290,74,0.1609044327391069],[114,290,75,0.16178873668369492],[114,290,76,0.16259414667214103],[114,290,77,0.15872447220593705],[114,290,78,0.15494369676882122],[114,290,79,0.15125129904086643],[114,291,64,0.18862210619588754],[114,291,65,0.18197829335238094],[114,291,66,0.17628201051545989],[114,291,67,0.17156465323731301],[114,291,68,0.16783074124430997],[114,291,69,0.16505442081341903],[114,291,70,0.16317605164834076],[114,291,71,0.1621019999689994],[114,291,72,0.16170037538759005],[114,291,73,0.16180362515004032],[114,291,74,0.1622994457017662],[114,291,75,0.16312618340881235],[114,291,76,0.16423212793764985],[114,291,77,0.16334561940986028],[114,291,78,0.15927141628570163],[114,291,79,0.15528280089101196],[114,292,64,0.19094602876399297],[114,292,65,0.1842060831140733],[114,292,66,0.1784117539253417],[114,292,67,0.17359626346053136],[114,292,68,0.16976583393347952],[114,292,69,0.16689611527917342],[114,292,70,0.16492869229382195],[114,292,71,0.16377081519302394],[114,292,72,0.1632910399505814],[114,292,73,0.16332170205706015],[114,292,74,0.16374995235265719],[114,292,75,0.16451362400005923],[114,292,76,0.16556056384170265],[114,292,77,0.16684508040831944],[114,292,78,0.16333391458859414],[114,292,79,0.159079339071538],[114,293,64,0.19332102571940202],[114,293,65,0.1864915146772299],[114,293,66,0.18060372910856776],[114,293,67,0.17569275852320476],[114,293,68,0.17176662364040463],[114,293,69,0.16880263450480715],[114,293,70,0.1667438228793088],[114,293,71,0.16549861518659825],[114,293,72,0.16493638141026135],[114,293,73,0.16488976584187448],[114,293,74,0.16524560092617063],[114,293,75,0.16594129758578147],[114,293,76,0.16692433575777105],[114,293,77,0.16814860817894728],[114,293,78,0.16713033725055143],[114,293,79,0.16264549893704314],[114,294,64,0.19572929690392254],[114,294,65,0.1888175276174333],[114,294,66,0.18284166117382186],[114,294,67,0.1778386822984071],[114,294,68,0.173818492718338],[114,294,69,0.17076020473811163],[114,294,70,0.1686085040539261],[114,294,71,0.16727327018093646],[114,294,72,0.16662503923587302],[114,294,73,0.16649717087649452],[114,294,74,0.16677640613268577],[114,294,75,0.1673998314805908],[114,294,76,0.16831464265239385],[114,294,77,0.16947438647877142],[114,294,78,0.17066908190548277],[114,294,79,0.1659943438097782],[114,295,64,0.19815386320717662],[114,295,65,0.1911678089919183],[114,295,66,0.1851099638125489],[114,295,67,0.18001922296666456],[114,295,68,0.17590743770736944],[114,295,69,0.17275564950959285],[114,295,70,0.17051038860937978],[114,295,71,0.16908324716099615],[114,295,72,0.16834626139321082],[114,295,73,0.16813389578152899],[114,295,74,0.16833302448204868],[114,295,75,0.168880512771395],[114,295,76,0.1697233605047372],[114,295,77,0.17081484465383617],[114,295,78,0.17211116938877594],[114,295,79,0.16914473999072233],[114,296,64,0.20057891766802338],[114,296,65,0.193527138921386],[114,296,66,0.18739407930783641],[114,296,67,0.18222054749123787],[114,296,68,0.1780203984040301],[114,296,69,0.17477671350616064],[114,296,70,0.17243804043970587],[114,296,71,0.17091792425276736],[114,296,72,0.17009021454444734],[114,296,73,0.16979084983109374],[114,296,74,0.1699070571318978],[114,296,75,0.1703755876358507],[114,296,76,0.17114333793971503],[114,296,77,0.17216339624808524],[114,296,78,0.17339158646143651],[114,296,79,0.1721189386021708],[114,297,64,0.20299019881689695],[114,297,65,0.19588175921305387],[114,297,66,0.18968084232553825],[114,297,67,0.1844301605544175],[114,297,68,0.1801456120068916],[114,297,69,0.17681241207194942],[114,297,70,0.1743812796170318],[114,297,71,0.17276793165657267],[114,297,72,0.17184832117037563],[114,297,73,0.17146020660871752],[114,297,74,0.17149138026104516],[114,297,75,0.17187858839344683],[114,297,76,0.17256871972559007],[114,297,77,0.17351475855282497],[114,297,78,0.17467222501615864],[114,297,79,0.1749404146879367],[114,298,64,0.2053753862588651],[114,298,65,0.19821976502475264],[114,298,66,0.19195886748744584],[114,298,67,0.18663728795463796],[114,298,68,0.18227299233796473],[114,298,69,0.17885340633607646],[114,298,70,0.17633155358315605],[114,298,71,0.174625519126179],[114,298,72,0.17361362361487184],[114,298,73,0.17313576491404636],[114,298,74,0.1730805029677144],[114,298,75,0.1733846882890216],[114,298,76,0.17399529813585704],[114,298,77,0.17486530007012244],[114,298,78,0.17594999095779046],[114,298,79,0.17720341337115136],[114,299,64,0.2077245184975379],[114,299,65,0.2005315195701951],[114,299,66,0.19421896072663944],[114,299,67,0.1888332844645409],[114,299,68,0.18439453414002963],[114,299,69,0.18089240396746967],[114,299,70,0.17828233445707936],[114,299,71,0.17648494999385694],[114,299,72,0.17538117505170914],[114,299,73,0.1748133369204809],[114,299,74,0.17467095269277014],[114,299,75,0.17489108400884504],[114,299,76,0.17542089217554366],[114,299,77,0.17621341589027423],[114,299,78,0.17722381185318753],[114,299,79,0.1784056680091069],[114,300,64,0.21003043299982369],[114,300,65,0.20281009186541799],[114,300,66,0.1964545544250126],[114,300,67,0.1910120661499831],[114,300,68,0.186504742449892],[114,300,69,0.18292458555675886],[114,300,70,0.18022954245847952],[114,300,71,0.17834292174137995],[114,300,72,0.1771484573737191],[114,300,73,0.17649116358374012],[114,300,74,0.17626168816793292],[114,300,75,0.17639740592926412],[114,300,76,0.17684575467192137],[114,300,77,0.17755993098333892],[114,300,78,0.17849503563038355],[114,300,79,0.17960428674459517],[114,301,64,0.21228922850142073],[114,301,65,0.20505171751628104],[114,301,66,0.19866216633286146],[114,301,67,0.1931705671498779],[114,301,68,0.18860108704745385],[114,301,69,0.184948056625119],[114,301,70,0.18217199544702004],[114,301,71,0.18019901311685163],[114,301,72,0.17891582600418549],[114,301,73,0.17817035730123848],[114,301,74,0.17785453988886504],[114,301,75,0.17790615609779256],[114,301,76,0.17827300722951325],[114,301,77,0.17890853140461865],[114,301,78,0.17976785715544097],[114,301,79,0.18080391992504588],[114,302,64,0.21450074955316686],[114,302,65,0.2072562825471505],[114,302,66,0.2008418822706596],[114,302,67,0.19530922091699543],[114,302,68,0.19068448198072457],[114,302,69,0.1869643252601924],[114,302,70,0.18411188457761885],[114,302,71,0.1820561577974895],[114,302,72,0.18068698163060298],[114,302,73,0.17985537182240655],[114,302,74,0.17945467811326005],[114,302,75,0.17942317394678156],[114,302,76,0.17970910304953097],[114,302,77,0.1802662234142241],[114,302,78,0.1810497726871152],[114,302,79,0.18201249156430785],[114,303,64,0.21666909330822587],[114,303,65,0.20942783027074094],[114,303,66,0.2029978626129973],[114,303,67,0.1974324659196945],[114,303,68,0.19275979016674594],[114,303,69,0.1889788053790614],[114,303,70,0.18605527607164762],[114,303,71,0.18392114459833453],[114,303,72,0.18246946886076496],[114,303,73,0.18155449940992247],[114,303,74,0.1810711083838994],[114,303,75,0.1809581297396323],[114,303,76,0.18116431761370438],[114,303,77,0.18164382051068423],[114,303,78,0.18235206220929456],[114,303,79,0.18324167579357573],[114,304,64,0.2188031385500052],[114,304,65,0.211575091199013],[114,304,66,0.20513887255457952],[114,304,67,0.1995492758044865],[114,304,68,0.19483635306832917],[114,304,69,0.19100134561817145],[114,304,70,0.18801263910396543],[114,304,71,0.18580514422679012],[114,304,72,0.18427520180108908],[114,304,73,0.18328039525175968],[114,304,74,0.18271719457658614],[114,304,75,0.18252504574946132],[114,304,76,0.18265326723241349],[114,304,77,0.1830564583785122],[114,304,78,0.1836902996411266],[114,304,79,0.18450740106680705],[114,305,64,0.220917096960947],[114,305,65,0.21371203599526922],[114,305,66,0.2072788361584276],[114,305,67,0.20167371401957035],[114,305,68,0.1969285454467466],[114,305,69,0.19304678385034654],[114,305,70,0.18999939980592173],[114,305,71,0.18772426258312686],[114,305,72,0.1861210165573131],[114,305,73,0.1850506291241861],[114,305,74,0.18441120947308764],[114,305,75,0.18414284517034996],[114,305,76,0.18419545545725474],[114,305,77,0.1845241377498587],[114,305,78,0.18508489092496289],[114,305,79,0.1858303821207574],[114,306,64,0.2230310866321569],[114,306,65,0.21585845146740984],[114,306,66,0.20943741418624257],[114,306,67,0.203825512899303],[114,306,68,0.1990563551903377],[114,306,69,0.19513552732885653],[114,306,70,0.19203652138429586],[114,306,71,0.18970012060691815],[114,306,72,0.18802925065752787],[114,306,73,0.18688826430567956],[114,306,74,0.18617691285905236],[114,306,75,0.18583592876114458],[114,306,76,0.1858158473580075],[114,306,77,0.18607229518021773],[114,306,78,0.1865616399920859],[114,306,79,0.18723667968960034],[114,307,64,0.22517009375577746],[114,307,65,0.21803894063524976],[114,307,66,0.21163903604858972],[114,307,67,0.2060291309529999],[114,307,68,0.20124445958507745],[114,307,69,0.1972926420428919],[114,307,70,0.1941496014318767],[114,307,71,0.19175895552300082],[114,307,72,0.19002684570429573],[114,307,73,0.18882096101465912],[114,307,74,0.18804265726866784],[114,307,75,0.1876332862254686],[114,307,76,0.18754399122439147],[114,307,77,0.18773094071067276],[114,307,78,0.188150908613157],[114,307,79,0.1855065184185866],[114,308,64,0.22733159880760234],[114,308,65,0.22025123321569598],[114,308,66,0.2138817797689763],[114,308,67,0.2082830853470686],[114,308,68,0.20349189573119653],[114,308,69,0.19951775404707434],[114,308,70,0.19633891059767122],[114,308,71,0.1939017233522543],[114,308,72,0.19211546768830695],[114,308,73,0.19085110476484166],[114,308,74,0.19001156115447834],[114,308,75,0.18953879313622657],[114,308,76,0.1893845504262579],[114,308,77,0.1895055590766464],[114,308,78,0.188085307997289],[114,308,79,0.18235037928268366],[114,309,64,0.22948501920633466],[114,309,65,0.22246553972851454],[114,309,66,0.2161366443740158],[114,309,67,0.21055914972820602],[114,309,68,0.20577119094761867],[114,309,69,0.20178411923114326],[114,309,70,0.19857840772241508],[114,309,71,0.19610306415252343],[114,309,72,0.19427042527458757],[114,309,73,0.19295467819982887],[114,309,74,0.1920603317239978],[114,309,75,0.1915299796906329],[114,309,76,0.19131601132522336],[114,309,77,0.19101308548503348],[114,309,78,0.1847558112701743],[114,309,79,0.17880743914563757],[114,310,64,0.23160132350500692],[114,310,65,0.22465349147314498],[114,310,66,0.2183759237794136],[114,310,67,0.21283027233697982],[114,310,68,0.20805593332904593],[114,310,69,0.20406594749180323],[114,310,70,0.2008429061330549],[114,310,71,0.19833837995324782],[114,310,72,0.19646770283755408],[114,310,73,0.19510825817719096],[114,310,74,0.1941661905476019],[114,310,75,0.1935848090549023],[114,310,76,0.19331720793869533],[114,310,77,0.1875409396689995],[114,310,78,0.18106370332087424],[114,310,79,0.1749212289207455],[114,311,64,0.23365424057003964],[114,311,65,0.22678933065441598],[114,311,66,0.22057438116386055],[114,311,67,0.21507173802639845],[114,311,68,0.21032192475677602],[114,311,69,0.20633954986718428],[114,311,70,0.2031092176242168],[114,311,71,0.2005849776815421],[114,311,72,0.1986851035586798],[114,311,73,0.1972901590919545],[114,311,74,0.1963080155768004],[114,311,75,0.1956828150842018],[114,311,76,0.19069070567840354],[114,311,77,0.18371865179166275],[114,311,78,0.1770484637981642],[114,311,79,0.17073693319612485],[114,312,64,0.23459961353936384],[114,312,65,0.22884989462173388],[114,312,66,0.22270923231244197],[114,312,67,0.21726114970879262],[114,312,68,0.21254715950228747],[114,312,69,0.20858331343774789],[114,312,70,0.2053561229206569],[114,312,71,0.20282203461308862],[114,312,72,0.20090220949730253],[114,312,73,0.19948038744484742],[114,312,74,0.19846629033018645],[114,312,75,0.19413432368801384],[114,312,76,0.18673184163106477],[114,312,77,0.17958064483597255],[114,312,78,0.17274997915633186],[114,312,79,0.1662996866940041],[114,313,64,0.23226537428988264],[114,313,65,0.22968543356718882],[114,313,66,0.22475978621375403],[114,313,67,0.21937792834005956],[114,313,68,0.2147111850602177],[114,313,69,0.21077692489599667],[114,313,70,0.2075634603234085],[114,313,71,0.20502955491315558],[114,313,72,0.20309920935245443],[114,313,73,0.2016593446861869],[114,313,74,0.19775226088722486],[114,313,75,0.19000926111133304],[114,313,76,0.18245231105759],[114,313,77,0.17516081226375133],[114,313,78,0.16820685303638175],[114,313,79,0.1616526430434569],[114,314,64,0.22987677657249078],[114,314,65,0.22741611662340977],[114,314,66,0.22511903993407176],[114,314,67,0.22140302133783474],[114,314,68,0.21679483156422058],[114,314,69,0.21290111971671766],[114,314,70,0.2097118934448794],[114,314,71,0.2071881548410136],[114,314,72,0.20525670017837802],[114,314,73,0.20138825385410591],[114,314,74,0.19341278737793655],[114,314,75,0.1855479733926476],[114,314,76,0.17788006603260476],[114,314,77,0.17049086589248189],[114,314,78,0.1634545198144728],[114,314,79,0.15683486280520811],[114,315,64,0.227436392039786],[114,315,65,0.22508379827546995],[114,315,66,0.22288856501605075],[114,315,67,0.22081875623952335],[114,315,68,0.2187806031750642],[114,315,69,0.21493820581980255],[114,315,70,0.21178356330180492],[114,315,71,0.20927983924570898],[114,315,72,0.20486509754676507],[114,315,73,0.1967740379154121],[114,315,74,0.18871373861875135],[114,315,75,0.1807731114930694],[114,315,76,0.17304021778664183],[114,315,77,0.16559842364165117],[114,315,78,0.15852311483474604],[114,315,79,0.15187897382158866],[114,316,64,0.22494023316524708],[114,316,65,0.22268402546651664],[114,316,66,0.22057629461477077],[114,316,67,0.21858825733717038],[114,316,68,0.21673811610329088],[114,316,69,0.2150554247172689],[114,316,70,0.2135365436224324],[114,316,71,0.20800257844170958],[114,316,72,0.19991118499690722],[114,316,73,0.19177262401510015],[114,316,74,0.18367353354347996],[114,316,75,0.17570400039824127],[114,316,76,0.16795307210621838],[114,316,77,0.16050484105253887],[114,316,78,0.15343510504346985],[114,316,79,0.1468086074260993],[114,317,64,0.22237841284672075],[114,317,65,0.22020716989846745],[114,317,66,0.21817302190223645],[114,317,67,0.21625015685921845],[114,317,68,0.2144583329990143],[114,317,69,0.21282690095707713],[114,317,70,0.21063568167465313],[114,317,71,0.20264696788384445],[114,317,72,0.19454194827571142],[114,317,73,0.18639949676429396],[114,317,74,0.1783068711643224],[114,317,75,0.17035459088061605],[114,317,76,0.1626318957007834],[114,317,77,0.15522279109734854],[114,317,78,0.14820268434093334],[114,317,79,0.14163561463532276],[114,318,64,0.21973623110427468],[114,318,65,0.2176396136067633],[114,318,66,0.2156664145582862],[114,318,67,0.2137935524977301],[114,318,68,0.21204191299605232],[114,318,69,0.21044027809242402],[114,318,70,0.20482599943646235],[114,318,71,0.19685093510501875],[114,318,72,0.18877123284588704],[114,318,73,0.1806660160186321],[114,318,74,0.17262255719912045],[114,318,75,0.16473112304127355],[114,318,76,0.15708041201413392],[114,318,77,0.14975359050123518],[114,318,78,0.1428249316259837],[114,318,79,0.13635706005797718],[114,319,64,0.2169956881802895],[114,319,65,0.2149653591785361],[114,319,66,0.2130427078628633],[114,319,67,0.21120711809194834],[114,319,68,0.2094802231787464],[114,319,69,0.2063296041097526],[114,319,70,0.1985566575064273],[114,319,71,0.19062774348094952],[114,319,72,0.1826082343529976],[114,319,73,0.1745770740174769],[114,319,74,0.1666210230677901],[114,319,75,0.15882949989942421],[114,319,76,0.1512900244775475],[114,319,77,0.14408427030642562],[114,319,78,0.13728472900076397],[114,319,79,0.13095199073676334],[115,-64,64,0.33334096476830216],[115,-64,65,0.33908053257730386],[115,-64,66,0.34493101893493433],[115,-64,67,0.3508729145198034],[115,-64,68,0.356912639591363],[115,-64,69,0.3630696387829514],[115,-64,70,0.3693555255797504],[115,-64,71,0.37577407799050194],[115,-64,72,0.3823217258248828],[115,-64,73,0.3889880764979215],[115,-64,74,0.39575647960761434],[115,-64,75,0.4026046304269163],[115,-64,76,0.40950521234772486],[115,-64,77,0.4164265782130721],[115,-64,78,0.42333347037475305],[115,-64,79,0.43018777921833046],[115,-63,64,0.3346268813144096],[115,-63,65,0.3404704936176745],[115,-63,66,0.34642883748114417],[115,-63,67,0.3524836517860792],[115,-63,68,0.3586410581456504],[115,-63,69,0.3649188492084935],[115,-63,70,0.3713268459985048],[115,-63,71,0.3778669869935906],[115,-63,72,0.38453387680964646],[115,-63,73,0.39131536823100915],[115,-63,74,0.39819317764922324],[115,-63,75,0.405143533872558],[115,-63,76,0.41213786017178344],[115,-63,77,0.4191434893340185],[115,-63,78,0.426124411406142],[115,-63,79,0.4330420537235325],[115,-62,64,0.336095189230675],[115,-62,65,0.34202948040247216],[115,-62,66,0.3480807892806572],[115,-62,67,0.35423240149741325],[115,-62,68,0.3604900678474956],[115,-62,69,0.3668696877200289],[115,-62,70,0.37337921047069],[115,-62,71,0.3800187990046654],[115,-62,72,0.38678141452243275],[115,-62,73,0.3936534306790382],[115,-62,74,0.4006152770913863],[115,-62,75,0.4076421120340923],[115,-62,76,0.41470452407368213],[115,-62,77,0.42176926230405887],[115,-62,78,0.4287999947632798],[115,-62,79,0.4357580945339849],[115,-61,64,0.3377314078990958],[115,-61,65,0.3437431626015385],[115,-61,66,0.34987269243143915],[115,-61,67,0.356105085156165],[115,-61,68,0.36244567007271883],[115,-61,69,0.368908270634258],[115,-61,70,0.37549893013791746],[115,-61,71,0.3822161314535922],[115,-61,72,0.3890513941084925],[115,-61,73,0.3959898980339087],[115,-61,74,0.4030111338334724],[115,-61,75,0.4100895793434734],[115,-61,76,0.41719540217061424],[115,-61,77,0.42429518781163933],[115,-61,78,0.4313526928826302],[115,-61,79,0.43832962291451905],[115,-60,64,0.33951715777541946],[115,-60,65,0.34559367778687394],[115,-60,66,0.35178724609287154],[115,-60,67,0.3580849547003763],[115,-60,68,0.3644916773318295],[115,-60,69,0.37101903397445196],[115,-60,70,0.3776711652339192],[115,-60,71,0.3844449911635211],[115,-60,72,0.3913307994198381],[115,-60,73,0.39831285838476577],[115,-60,74,0.40537005508328133],[115,-60,75,0.4124765576425565],[115,-60,76,0.41960250195786414],[115,-60,77,0.42671470215481966],[115,-60,78,0.4337773843659232],[115,-60,79,0.4407529432731775],[115,-59,64,0.34143122253929736],[115,-59,65,0.34756072787698766],[115,-59,66,0.35380516122274225],[115,-59,67,0.3601537575469427],[115,-59,68,0.3666109099205403],[115,-59,69,0.3731859546448983],[115,-59,70,0.3798811598794429],[115,-59,71,0.38669200867544],[115,-59,72,0.39360776023592503],[115,-59,73,0.4006120353072523],[115,-59,74,0.4076834255383939],[115,-59,75,0.4147961265650084],[115,-59,76,0.42192059449964187],[115,-59,77,0.4290242254378076],[115,-59,78,0.4360720575221967],[115,-59,79,0.4430274950449353],[115,-58,64,0.3434508184682375],[115,-58,65,0.3496228826695135],[115,-58,66,0.3559064974919856],[115,-58,67,0.36229310617193605],[115,-58,68,0.3687865944497616],[115,-58,69,0.37539396934533914],[115,-58,70,0.3821156686450291],[115,-58,71,0.3889458562974372],[115,-58,72,0.39587294296038195],[115,-58,73,0.40288013043548415],[115,-58,74,0.40994597985931025],[115,-58,75,0.41704500344543116],[115,-58,76,0.4241482795002347],[115,-58,77,0.43122409036749837],[115,-58,78,0.4382385828926254],[115,-58,79,0.4451564509381198],[115,-57,64,0.345553070925684],[115,-57,65,0.3517590903410562],[115,-57,66,0.35807220625807656],[115,-57,67,0.3644860521244247],[115,-57,68,0.3710039641783868],[115,-57,69,0.3776305911843771],[115,-57,70,0.3843645748828361],[115,-57,71,0.3911988499269833],[115,-57,72,0.39812111489304614],[115,-57,73,0.4051143271699526],[115,-57,74,0.4121572216439572],[115,-57,75,0.41922485302365897],[115,-57,76,0.4262891615834651],[115,-57,77,0.43331956203933203],[115,-57,78,0.44028355520968143],[115,-57,79,0.4471473620577217],[115,-56,64,0.34771320224654545],[115,-56,65,0.35394639700317093],[115,-56,66,0.36028137844569225],[115,-56,67,0.3667138593093202],[115,-56,68,0.37324655533615486],[115,-56,69,0.3798817318202992],[115,-56,70,0.38661625017716295],[115,-56,71,0.3934418685228407],[115,-56,72,0.4003456591961656],[115,-56,73,0.4073104500312987],[115,-56,74,0.4143152893450328],[115,-56,75,0.4213359345378787],[115,-56,76,0.4283453641449638],[115,-56,77,0.4353143131124494],[115,-56,78,0.44221183101761663],[115,-56,79,0.4490058628969648],[115,-55,64,0.3498842750254453],[115,-55,65,0.3561365112585999],[115,-55,66,0.3624846121796904],[115,-55,67,0.36892616468688466],[115,-55,68,0.37546317965119286],[115,-55,69,0.38209557304951],[115,-55,70,0.38881849788200484],[115,-55,71,0.3956226381785534],[115,-55,72,0.4024945677493341],[115,-55,73,0.40941713266185903],[115,-55,74,0.416369857464715],[115,-55,75,0.42332937511800883],[115,-55,76,0.4302698805317896],[115,-55,77,0.4371636075571306],[115,-55,78,0.44398132922020583],[115,-55,79,0.450692880938504],[115,-54,64,0.3520136395201218],[115,-54,65,0.35827434543368114],[115,-54,66,0.3646246273698137],[115,-54,67,0.37106366067618385],[115,-54,68,0.37759266509735606],[115,-54,69,0.38420931946784814],[115,-54,70,0.39090722176607273],[115,-54,71,0.39767616356242363],[115,-54,72,0.40450242114661084],[115,-54,73,0.41136907090698527],[115,-54,74,0.4182563290561213],[115,-54,75,0.42514191574086635],[115,-54,76,0.43200144351990194],[115,-54,77,0.4388088301381727],[115,-54,78,0.4455367354754369],[115,-54,79,0.4521570224965861],[115,-53,64,0.35405512898535946],[115,-53,65,0.36031184847393377],[115,-53,66,0.36665173095595827],[115,-53,67,0.3730751905100906],[115,-53,68,0.3795825691490009],[115,-53,69,0.38616948433096404],[115,-53,70,0.3928281970239602],[115,-53,71,0.39954784909589675],[115,-53,72,0.4063146752695832],[115,-53,73,0.41311224077361125],[115,-53,74,0.41992170488288066],[115,-53,75,0.42672211048950504],[115,-53,76,0.433490699791907],[115,-53,77,0.44020325613765005],[115,-53,78,0.4468344720041072],[115,-53,79,0.4533583430513304],[115,-52,64,0.35596943514690355],[115,-52,65,0.36220833940921965],[115,-52,66,0.3685241043301109],[115,-52,67,0.37491798560027734],[115,-52,68,0.38138936258706785],[115,-52,69,0.38793201743661593],[115,-52,70,0.3945371412691956],[115,-52,71,0.40119351366172346],[115,-52,72,0.40788762197616873],[115,-52,73,0.4146038090443852],[115,-52,74,0.4213244495330108],[115,-52,75,0.4280301552604853],[115,-52,76,0.4347000096857099],[115,-52,77,0.44131183173505795],[115,-52,78,0.44784246908149794],[115,-52,79,0.4542681209374601],[115,-51,64,0.3577245537689412],[115,-51,65,0.36393090279316265],[115,-51,66,0.3702081443366305],[115,-51,67,0.37655794760089767],[115,-51,68,0.38297864859083575],[115,-51,69,0.3894624584834972],[115,-51,70,0.39599980099454346],[115,-51,71,0.4025794108050176],[115,-51,72,0.40918834560162365],[115,-51,73,0.4158120305852861],[115,-51,74,0.4224343359346902],[115,-51,75,0.42903768765924805],[115,-51,76,0.43560321222154974],[115,-51,77,0.4421109152535409],[115,-51,78,0.4485398946336394],[115,-51,79,0.4548685881347468],[115,-50,64,0.3592963577690965],[115,-50,65,0.36545491152865733],[115,-50,66,0.37167893121903933],[115,-50,67,0.37797005650145443],[115,-50,68,0.38432550635885754],[115,-50,69,0.3907362128471546],[115,-50,70,0.3971921577108208],[115,-50,71,0.40368236524675566],[115,-50,72,0.4101947917905041],[115,-50,73,0.4167162534120736],[115,-50,74,0.4232323925051047],[115,-50,75,0.42972768389777083],[115,-50,76,0.4361854810549296],[115,-50,77,0.44258810287940314],[115,-50,78,0.4489169615562143],[115,-50,79,0.45515273181813976],[115,-49,64,0.35926480534998245],[115,-49,65,0.3658754301858618],[115,-49,66,0.37259143177429577],[115,-49,67,0.379136495005261],[115,-49,68,0.38541330309367894],[115,-49,69,0.39173809577242097],[115,-49,70,0.39810073642165966],[115,-49,71,0.4044908634184182],[115,-49,72,0.41089764260659223],[115,-49,73,0.41730956539048186],[115,-49,74,0.42371429336383803],[115,-49,75,0.43009855032530325],[115,-49,76,0.43644806246495116],[115,-49,77,0.44274754743620104],[115,-49,78,0.44898075295319606],[115,-49,79,0.45513054547688003],[115,-48,64,0.3588800614220284],[115,-48,65,0.3655362771628035],[115,-48,66,0.37230522180495396],[115,-48,67,0.37916897560997803],[115,-48,68,0.386113151412111],[115,-48,69,0.3924589332333307],[115,-48,70,0.3987212908570871],[115,-48,71,0.4050058531699966],[115,-48,72,0.4113032168085638],[115,-48,73,0.4176037369350339],[115,-48,74,0.42389724269492035],[115,-48,75,0.4301728093113068],[115,-48,76,0.43641858783064724],[115,-48,77,0.44262169345298924],[115,-48,78,0.44876815329256475],[115,-48,79,0.45484291432376694],[115,-47,64,0.35859360075544444],[115,-47,65,0.36529357808139495],[115,-47,66,0.3721119858637131],[115,-47,67,0.3790324615654743],[115,-47,68,0.3860422039487989],[115,-47,69,0.39289581459307266],[115,-47,70,0.39905588145883714],[115,-47,71,0.40523455337944736],[115,-47,72,0.41142398061087426],[115,-47,73,0.41761646750923276],[115,-47,74,0.4238040557787256],[115,-47,75,0.4299781745705136],[115,-47,76,0.43612935868082725],[115,-47,77,0.44224703600138826],[115,-47,78,0.44831938527338794],[115,-47,79,0.45433326508922794],[115,-46,64,0.3584142821380061],[115,-46,65,0.36515346240817],[115,-46,66,0.37201482242752076],[115,-46,67,0.3789839722960636],[115,-46,68,0.3860498399980282],[115,-46,69,0.3930520398315482],[115,-46,70,0.39911193820963786],[115,-46,71,0.4051886177938872],[115,-46,72,0.41127581669507673],[115,-46,73,0.41736778293611926],[115,-46,74,0.4234587261359152],[115,-46,75,0.4295423468221222],[115,-46,76,0.43561144484871195],[115,-46,77,0.44165760828396977],[115,-46,78,0.4476709840164611],[115,-46,79,0.45364013120194613],[115,-45,64,0.3583431552235638],[115,-45,65,0.3651145645136825],[115,-45,66,0.37200975917936346],[115,-45,67,0.37901670629108064],[115,-45,68,0.3861262185832994],[115,-45,69,0.3929364760737113],[115,-45,70,0.3989016736698134],[115,-45,71,0.40488361494053543],[115,-45,72,0.41087758115644246],[115,-45,73,0.416879679109281],[115,-45,74,0.422886165086906],[115,-45,75,0.4288928574429346],[115,-45,76,0.4348946394505514],[115,-45,77,0.4408850540037192],[115,-45,78,0.4468559915937176],[115,-45,79,0.4527974728461255],[115,-44,64,0.35837424028057047],[115,-44,65,0.36516879728157353],[115,-44,66,0.37208651078546],[115,-44,67,0.37911804941807864],[115,-44,68,0.38625627300888804],[115,-44,69,0.3925629085774063],[115,-44,70,0.39844148833081866],[115,-44,71,0.40433849792516274],[115,-44,72,0.410250647644362],[115,-44,73,0.41617574996695267],[115,-44,74,0.4221119224380671],[115,-44,75,0.4280568899396861],[115,-44,76,0.43400738824171603],[115,-44,77,0.4399586705738539],[115,-44,78,0.44590411880537356],[115,-44,79,0.45183496065871614],[115,-43,64,0.35849530775421873],[115,-43,65,0.3653021263867782],[115,-43,66,0.3722292382423631],[115,-43,67,0.37927031033105196],[115,-43,68,0.38617351039587555],[115,-43,69,0.39194938439697863],[115,-43,70,0.39775136666003147],[115,-43,71,0.40357506267495563],[115,-43,72,0.40941843745980516],[115,-43,73,0.41528079872132756],[115,-43,74,0.421161887536286],[115,-43,75,0.4270610787501758],[115,-43,76,0.4329766931436427],[115,-43,77,0.43890542325797405],[115,-43,78,0.4448418746009426],[115,-43,79,0.45077822377498306],[115,-42,64,0.35868865992023],[115,-42,65,0.3654953474862111],[115,-42,66,0.37241731197612593],[115,-42,67,0.37945146066336577],[115,-42,68,0.3854109314392791],[115,-42,69,0.3911175468659601],[115,-42,70,0.3968542621373293],[115,-42,71,0.4026173931082358],[115,-42,72,0.40840593429818317],[115,-42,73,0.4142204312600746],[115,-42,74,0.4200619698585538],[115,-42,75,0.42593128480829284],[115,-42,76,0.4318279896613681],[115,-42,77,0.4377499302581646],[115,-42,78,0.4436926634696372],[115,-42,79,0.4496490628623558],[115,-41,64,0.35893191696723337],[115,-41,65,0.36572486862619713],[115,-41,66,0.37262608093790633],[115,-41,67,0.3788389803813775],[115,-41,68,0.3844439606222185],[115,-41,69,0.3900919589768418],[115,-41,70,0.39577546951744597],[115,-41,71,0.4014912916457733],[115,-41,72,0.4072391822572101],[115,-41,73,0.41302063056744986],[115,-41,74,0.41883775823297903],[115,-41,75,0.4246923472374531],[115,-41,76,0.4305849978407993],[115,-41,77,0.4365144186984437],[115,-41,78,0.44247685105619416],[115,-41,79,0.4484656287142088],[115,-40,64,0.3591988098944021],[115,-40,65,0.3659635002227047],[115,-40,66,0.37226114362962887],[115,-40,67,0.37774826684111507],[115,-40,68,0.38329896844151073],[115,-40,69,0.3888994136777003],[115,-40,70,0.39454198249211825],[115,-40,71,0.40022369341669484],[115,-40,72,0.4059447656659284],[115,-40,73,0.41170731094736146],[115,-40,74,0.41751415772117867],[115,-40,75,0.42336781046928657],[115,-40,76,0.4292695463462333],[115,-40,77,0.4352186513816671],[115,-40,78,0.4412117981885869],[115,-40,79,0.4472425669057128],[115,-39,64,0.3594599826518943],[115,-39,65,0.3657252423055913],[115,-39,66,0.3710640241118185],[115,-39,67,0.37649803408861693],[115,-39,68,0.38200430154742265],[115,-39,69,0.3875682290558467],[115,-39,70,0.39318183487428154],[115,-39,71,0.39884206245798637],[115,-39,72,0.4045492692347674],[115,-39,73,0.4103058507721772],[115,-39,74,0.4161150031312366],[115,-39,75,0.42197962602159117],[115,-39,76,0.42790136917395555],[115,-39,77,0.42778794886952787],[115,-39,78,0.42986212327756373],[115,-39,79,0.4224608975665891],[115,-38,64,0.3592989574310318],[115,-38,65,0.36444691056287304],[115,-38,66,0.3697286389868706],[115,-38,67,0.37511803723184045],[115,-38,68,0.3805895246797216],[115,-38,69,0.3861275263375327],[115,-38,70,0.3917234233828144],[115,-38,71,0.397373768160027],[115,-38,72,0.4030787169770005],[115,-38,73,0.4081659718690074],[115,-38,74,0.4093226181648806],[115,-38,75,0.40598610213254926],[115,-38,76,0.3981106882834556],[115,-38,77,0.39642113970874754],[115,-38,78,0.39927611684438524],[115,-38,79,0.3876868369241109],[115,-37,64,0.3579723629632179],[115,-37,65,0.3630539289179268],[115,-37,66,0.36828583707965595],[115,-37,67,0.37363882914750574],[115,-37,68,0.37908464425386074],[115,-37,69,0.3846064886005056],[115,-37,70,0.39019481007100326],[115,-37,71,0.3958454401718996],[115,-37,72,0.39515608804424307],[115,-37,73,0.3880109598359176],[115,-37,74,0.3849657100771534],[115,-37,75,0.38285360140152885],[115,-37,76,0.38349228904866045],[115,-37,77,0.384704256256243],[115,-37,78,0.3850628000636792],[115,-37,79,0.3678111732839977],[115,-36,64,0.3565561280439914],[115,-36,65,0.3615777355557013],[115,-36,66,0.3667667499123928],[115,-36,67,0.37209093723917636],[115,-36,68,0.3775193113526532],[115,-36,69,0.3830335980740038],[115,-36,70,0.38862300241617836],[115,-36,71,0.38539571361218034],[115,-36,72,0.3804873539395379],[115,-36,73,0.37721450412218044],[115,-36,74,0.37601889295222496],[115,-36,75,0.3782903345200333],[115,-36,76,0.38057557061397956],[115,-36,77,0.3815455077648256],[115,-36,78,0.3801874843165286],[115,-36,79,0.3623885113655094],[115,-35,64,0.3550815848198828],[115,-35,65,0.36004946174125213],[115,-35,66,0.36520192795056045],[115,-35,67,0.37050401794801974],[115,-35,68,0.37592200187008107],[115,-35,69,0.3814358498885855],[115,-35,70,0.38703320907179073],[115,-35,71,0.37901156543573145],[115,-35,72,0.37193638001986995],[115,-35,73,0.3767786768381998],[115,-35,74,0.3787209691577792],[115,-35,75,0.3818289477689162],[115,-35,76,0.3870084711451744],[115,-35,77,0.38372877213575834],[115,-35,78,0.3761575655060328],[115,-35,79,0.35864021164651405],[115,-34,64,0.3535791237833619],[115,-34,65,0.3584990341824875],[115,-34,66,0.36362045267585064],[115,-34,67,0.3689059866747262],[115,-34,68,0.37431917155592564],[115,-34,69,0.37983794013635946],[115,-34,70,0.3854480692769229],[115,-34,71,0.38958532623180453],[115,-34,72,0.37858682549077777],[115,-34,73,0.38044048764503313],[115,-34,74,0.3825077096787798],[115,-34,75,0.38117701634694534],[115,-34,76,0.38799582783883496],[115,-34,77,0.3785114992772465],[115,-34,78,0.3678124019849248],[115,-34,79,0.35511885702677826],[115,-33,64,0.35207727134387207],[115,-33,65,0.35695425119655183],[115,-33,66,0.3620490220951219],[115,-33,67,0.3673221207886588],[115,-33,68,0.3727343837239899],[115,-33,69,0.37826142611205965],[115,-33,70,0.3838868539232313],[115,-33,71,0.3896003399377503],[115,-33,72,0.39539602561695664],[115,-33,73,0.3894073155961565],[115,-33,74,0.3900589013582504],[115,-33,75,0.38550050461019497],[115,-33,76,0.3898505145171232],[115,-33,77,0.3780051328931853],[115,-33,78,0.368937568795932],[115,-33,79,0.36035016184554425],[115,-32,64,0.3506017393962016],[115,-32,65,0.35543983027923576],[115,-32,66,0.36051100732717956],[115,-32,67,0.3657741334301177],[115,-32,68,0.3711874074126772],[115,-32,69,0.37672385662682084],[115,-32,70,0.3823646362953816],[115,-32,71,0.3880971432237326],[115,-32,72,0.3939134529373726],[115,-32,73,0.3998088857019517],[115,-32,74,0.4057807038468526],[115,-32,75,0.4046287981726727],[115,-32,76,0.39934518885962395],[115,-32,77,0.3882654132901442],[115,-32,78,0.3847178234805353],[115,-32,79,0.3715303926532301],[115,-31,64,0.34917444452221624],[115,-31,65,0.3539764247250077],[115,-31,66,0.35902547795488066],[115,-31,67,0.36427921585400846],[115,-31,68,0.36969328382500416],[115,-31,69,0.3752378703198826],[115,-31,70,0.38089143052862023],[115,-31,71,0.3866388560230676],[115,-31,72,0.3924699561831311],[115,-31,73,0.39837806126498915],[115,-31,74,0.4043587494054218],[115,-31,75,0.41040869967283455],[115,-31,76,0.4165246730785702],[115,-31,77,0.40714343603244085],[115,-31,78,0.4057979601372059],[115,-31,79,0.3820021756692532],[115,-30,64,0.3478124945263859],[115,-30,65,0.3525796070077232],[115,-30,66,0.3576061938898952],[115,-30,67,0.36284904611959984],[115,-30,68,0.36826135892718254],[115,-30,69,0.3738102599402187],[115,-30,70,0.3794712958676608],[115,-30,71,0.38522667332054716],[115,-30,72,0.39106379064288355],[115,-30,73,0.39697388302486647],[115,-30,74,0.40295078306291987],[115,-30,75,0.40898979875877634],[115,-30,76,0.415086710764892],[115,-30,77,0.42020325032427014],[115,-30,78,0.41676998122399633],[115,-30,79,0.39176336421167657],[115,-29,64,0.346527140084016],[115,-29,65,0.3512588167086444],[115,-29,66,0.35626056157131164],[115,-29,67,0.3614887620012709],[115,-29,68,0.3668942801504876],[115,-29,69,0.37244100063003815],[115,-29,70,0.3781014048643374],[115,-29,71,0.3838548944596066],[115,-29,72,0.3896863762286833],[115,-29,73,0.3955849513163391],[115,-29,74,0.4015427104635304],[115,-29,75,0.40755363728983324],[115,-29,76,0.41361262130218723],[115,-29,77,0.4197145821565003],[115,-29,78,0.4244026996499521],[115,-29,79,0.40081597207652037],[115,-28,64,0.34532268937390453],[115,-28,65,0.3500162708693839],[115,-28,66,0.3549885524074331],[115,-28,67,0.3601958960794597],[115,-28,68,0.36558695522055773],[115,-28,69,0.37112224031551677],[115,-28,70,0.3767710737177516],[115,-28,71,0.38251000215819236],[115,-28,72,0.3883214340078368],[115,-28,73,0.3941923709982802],[115,-28,74,0.40011323632241536],[115,-28,75,0.40607680089262777],[115,-28,76,0.4120772093776578],[115,-28,77,0.4181091074732187],[115,-28,78,0.42416687168701356],[115,-28,79,0.41671123509407837],[115,-27,64,0.3441953836762145],[115,-27,65,0.34884583475476627],[115,-27,66,0.3537815814746177],[115,-27,67,0.35895927107153847],[115,-27,68,0.36432547123365583],[115,-27,69,0.3698372503991997],[115,-27,70,0.3754607530421788],[115,-27,71,0.3811697021703028],[115,-27,72,0.38694408370712213],[115,-27,73,0.3927689156577461],[115,-27,74,0.3986331038801979],[115,-27,75,0.4045283861543931],[115,-27,76,0.4104483660999486],[115,-27,77,0.41638763834371445],[115,-27,78,0.42234100617950804],[115,-27,79,0.4283027927971293],[115,-26,64,0.3431322320401281],[115,-26,65,0.3477318511327375],[115,-26,66,0.35262134460616484],[115,-26,67,0.35775785357728174],[115,-26,68,0.3630859722089464],[115,-26,69,0.36855933505133387],[115,-26,70,0.37414097744279395],[115,-26,71,0.3798019220710529],[115,-26,72,0.38551990078003645],[115,-26,73,0.3912781519533752],[115,-26,74,0.3970642952187893],[115,-26,75,0.4028692851018784],[115,-26,76,0.4086864451318914],[115,-26,77,0.41451058376682937],[115,-26,78,0.4203371933620527],[115,-26,79,0.4261617332563214],[115,-25,64,0.34210970745093333],[115,-25,65,0.34664788496003346],[115,-25,66,0.3514786212351636],[115,-25,67,0.35655962273015096],[115,-25,68,0.3618336009750185],[115,-25,69,0.36725085449472317],[115,-25,70,0.3727714783682171],[115,-25,71,0.3783640212195952],[115,-25,72,0.38400422989216276],[115,-25,73,0.38967386152135464],[115,-25,74,0.395359564700936],[115,-25,75,0.401051831334182],[115,-25,76,0.4067440206489753],[115,-25,77,0.4124314567338593],[115,-25,78,0.4181106008222042],[115,-25,79,0.4237782994145208],[115,-24,64,0.3410900307761569],[115,-24,65,0.3455555357210653],[115,-24,66,0.3503144400144328],[115,-24,67,0.3553250336140544],[115,-24,68,0.36052827596728004],[115,-24,69,0.3658713259593508],[115,-24,70,0.37131158964208527],[115,-24,71,0.3768154329527038],[115,-24,72,0.382126504937095],[115,-24,73,0.38746999376023833],[115,-24,74,0.3929361966117886],[115,-24,75,0.39850944959162676],[115,-24,76,0.4041694872655373],[115,-24,77,0.40989249879895656],[115,-24,78,0.41563149363629687],[115,-24,79,0.4211256661128233],[115,-23,64,0.3400286136537747],[115,-23,65,0.3444130225266624],[115,-23,66,0.34908971986228005],[115,-23,67,0.35395178948297434],[115,-23,68,0.3585604534409932],[115,-23,69,0.3632690855038739],[115,-23,70,0.36810594601000335],[115,-23,71,0.3730878980921933],[115,-23,72,0.37822178818569757],[115,-23,73,0.3835057705571527],[115,-23,74,0.3889305741929236],[115,-23,75,0.39448071046697875],[115,-23,76,0.4001356200994324],[115,-23,77,0.40587075801701716],[115,-23,78,0.41165861483563093],[115,-23,79,0.41746967380153444],[115,-22,64,0.3372229996875508],[115,-22,65,0.3416395842189293],[115,-22,66,0.346042958005194],[115,-22,67,0.3504635335877301],[115,-22,68,0.35495087883926035],[115,-22,69,0.35954884389213393],[115,-22,70,0.3642880849702008],[115,-22,71,0.36918738916111526],[115,-22,72,0.3742550480606005],[115,-22,73,0.37949018206084756],[115,-22,74,0.38488401362770697],[115,-22,75,0.3904210879824711],[115,-22,76,0.3960804396845271],[115,-22,77,0.40183670370084146],[115,-22,78,0.4076611696469246],[115,-22,79,0.41352277799052],[115,-21,64,0.33405177267658986],[115,-21,65,0.33832714494550326],[115,-21,66,0.3425980423686068],[115,-21,67,0.3468941116194134],[115,-21,68,0.35126593625845476],[115,-21,69,0.35575973927634674],[115,-21,70,0.36040822025772506],[115,-21,71,0.3652318174578594],[115,-21,72,0.37024006420955546],[115,-21,73,0.375432903210036],[115,-21,74,0.38080195704476366],[115,-21,75,0.38633175336464326],[115,-21,76,0.39200090320181424],[115,-21,77,0.3977832309872902],[115,-21,78,0.40364885492099756],[115,-21,79,0.4095652164403237],[115,-20,64,0.3308262293671029],[115,-20,65,0.3349593161328589],[115,-20,66,0.33909832243291727],[115,-20,67,0.34327185060590754],[115,-20,68,0.34753097646281444],[115,-20,69,0.3519237999097828],[115,-20,70,0.3564846981676425],[115,-20,71,0.3612355083652164],[115,-20,72,0.3661868493935438],[115,-20,73,0.37133940999013937],[115,-20,74,0.37668520143688367],[115,-20,75,0.38220877330084696],[115,-20,76,0.38788839070220854],[115,-20,77,0.39369717165761614],[115,-20,78,0.39960418312097273],[115,-20,79,0.4055754944258785],[115,-19,64,0.32758187308159187],[115,-19,65,0.33156922331731603],[115,-19,66,0.3355742448438434],[115,-19,67,0.3396241984487543],[115,-19,68,0.3437700866366068],[115,-19,69,0.3480613559112357],[115,-19,70,0.3525336977044876],[115,-19,71,0.3572101284357863],[115,-19,72,0.3621022530034507],[115,-19,73,0.3672115044483922],[115,-19,74,0.3725303582220428],[115,-19,75,0.378043519519155],[115,-19,76,0.38372908217387813],[115,-19,77,0.38955965766453843],[115,-19,78,0.3955034728292292],[115,-19,79,0.4015254349599035],[115,-18,64,0.3243512614220861],[115,-18,65,0.32818667027539206],[115,-18,66,0.3320524432693068],[115,-18,67,0.3359741985627011],[115,-18,68,0.3400022816142093],[115,-18,69,0.3441869427767371],[115,-18,70,0.34856484510225566],[115,-18,71,0.3531600128725342],[115,-18,72,0.3579850067233784],[115,-18,73,0.3630420869457658],[115,-18,74,0.36832436347212444],[115,-18,75,0.373816931063733],[115,-18,76,0.37949798823160497],[115,-18,77,0.38533993844875514],[115,-18,78,0.3913104722470482],[115,-18,79,0.39737362883635147],[115,-17,64,0.3211435879089815],[115,-17,65,0.32481839351480174],[115,-17,66,0.32853687751482186],[115,-17,67,0.33232273124928324],[115,-17,68,0.33622505949309495],[115,-17,69,0.340294368363926],[115,-17,70,0.34456796574690585],[115,-17,71,0.349070745606752],[115,-17,72,0.3538162406840243],[115,-17,73,0.35880767775907113],[115,-17,74,0.3640390341001796],[115,-17,75,0.3694960936941393],[115,-17,76,0.3751575018473673],[115,-17,77,0.38099581674463245],[115,-17,78,0.38697855656113483],[115,-17,79,0.3930692407419442],[115,-16,64,0.31790586260522835],[115,-16,65,0.32141253559304234],[115,-16,66,0.324977214086156],[115,-16,67,0.3286214323621343],[115,-16,68,0.3323924674689979],[115,-16,69,0.33634048236043484],[115,-16,70,0.34050303557324363],[115,-16,71,0.34490567335465433],[115,-16,72,0.34956282969712477],[115,-16,73,0.3544787454329769],[115,-16,74,0.3596484051401466],[115,-16,75,0.36505849056139217],[115,-16,76,0.3706883491981191],[115,-16,77,0.3765109767074838],[115,-16,78,0.38249401170884123],[115,-16,79,0.38860074159285063],[115,-15,64,0.3145816346073731],[115,-15,65,0.3179145391985774],[115,-15,66,0.3213211806891682],[115,-15,67,0.3248207616818162],[115,-15,68,0.3284581480150114],[115,-15,69,0.3322825133390909],[115,-15,70,0.3363312016249528],[115,-15,71,0.3406301056024548],[115,-15,72,0.34519438939694735],[115,-15,73,0.3500292483685333],[115,-15,74,0.3551307050599416],[115,-15,75,0.36048644007546804],[115,-15,76,0.3660766566371839],[115,-15,77,0.37187497749681886],[115,-15,78,0.3778493728238667],[115,-15,79,0.3839631176428445],[115,-14,64,0.3124553850263171],[115,-14,65,0.31428244283520107],[115,-14,66,0.31752870296084873],[115,-14,67,0.32088277348642985],[115,-14,68,0.3243865413259501],[115,-14,69,0.3280875184464553],[115,-14,70,0.3320223205524568],[115,-14,71,0.33621681637565437],[115,-14,72,0.3406866533658857],[115,-14,73,0.34543783991953675],[115,-14,74,0.3504673832201395],[115,-14,75,0.3557639816448268],[115,-14,76,0.36130877057589567],[115,-14,77,0.3670761203505171],[115,-14,78,0.3730344849854658],[115,-14,79,0.37914730022821563],[115,-13,64,0.31023705127475426],[115,-13,65,0.31048488468679214],[115,-13,66,0.3135699577890113],[115,-13,67,0.31677925122683154],[115,-13,68,0.3201511334212498],[115,-13,69,0.32373077709353876],[115,-13,70,0.3275535293747914],[115,-13,71,0.3316448221421113],[115,-13,72,0.3360204861538401],[115,-13,73,0.3406871417881316],[115,-13,74,0.34564266563791557],[115,-13,75,0.35087673205432884],[115,-13,76,0.35637142857583537],[115,-13,77,0.3621019440334032],[115,-13,78,0.36803732798542094],[115,-13,79,0.37414132001047734],[115,-12,64,0.20674285460889177],[115,-12,65,0.24611381284260248],[115,-12,66,0.28925269577903046],[115,-12,67,0.31248999722070014],[115,-12,68,0.31573285081491254],[115,-12,69,0.3191943201412068],[115,-12,70,0.3229079378029111],[115,-12,71,0.3268982643763353],[115,-12,72,0.33118098110690325],[115,-12,73,0.33576307954958784],[115,-12,74,0.34064314759048625],[115,-12,75,0.345811751084065],[115,-12,76,0.3512519101439327],[115,-12,77,0.35693966893613144],[115,-12,78,0.3628447576454449],[115,-12,79,0.3689313451183458],[115,-11,64,0.10337209445761956],[115,-11,65,0.1278994284798197],[115,-11,66,0.15561575968993532],[115,-11,67,0.18651167528938384],[115,-11,68,0.2205695414096236],[115,-11,69,0.2577543490363076],[115,-11,70,0.29800076598873726],[115,-11,71,0.3219653967294216],[115,-11,72,0.32615664294535374],[115,-11,73,0.3306542802530741],[115,-11,74,0.33545742302488296],[115,-11,75,0.34055741637148396],[115,-11,76,0.3459381672862158],[115,-11,77,0.35157658995351593],[115,-11,78,0.3574431639090656],[115,-11,79,0.3635026035305039],[115,-10,64,0.043213633505726996],[115,-10,65,0.05631814970170982],[115,-10,66,0.07195066744800267],[115,-10,67,0.09016959784322391],[115,-10,68,0.11102064020819817],[115,-10,69,0.13453039239471465],[115,-10,70,0.16069397374399766],[115,-10,71,0.18947713726688717],[115,-10,72,0.22081881097644687],[115,-10,73,0.2546337375688731],[115,-10,74,0.29081519807202877],[115,-10,75,0.32923780576078315],[115,-10,76,0.3404189348056368],[115,-10,77,0.346000418089273],[115,-10,78,0.35181904563429856],[115,-10,79,0.3578401896252155],[115,-9,64,0.03150621131405802],[115,-9,65,0.0342591417029626],[115,-9,66,0.03695378962176012],[115,-9,67,0.039594227175374176],[115,-9,68,0.046123556382050825],[115,-9,69,0.05905015165042064],[115,-9,70,0.07413992037653222],[115,-9,71,0.0914176136911394],[115,-9,72,0.11087946231391713],[115,-9,73,0.13249550058425114],[115,-9,74,0.1562120006370737],[115,-9,75,0.1819540032758929],[115,-9,76,0.20962793279019426],[115,-9,77,0.23912428375200903],[115,-9,78,0.2703203687220273],[115,-9,79,0.3030831167831326],[115,-8,64,0.026967065094335285],[115,-8,65,0.0296386161975895],[115,-8,66,0.03227804386946949],[115,-8,67,0.034886832119319235],[115,-8,68,0.03748076868023133],[115,-8,69,0.040086803369231094],[115,-8,70,0.04272978246053623],[115,-8,71,0.04543114059213551],[115,-8,72,0.04820804853883472],[115,-8,73,0.05788903270092908],[115,-8,74,0.07181977532259402],[115,-8,75,0.08747954283855058],[115,-8,76,0.10482335047561521],[115,-8,77,0.12378745923606288],[115,-8,78,0.14429194224155165],[115,-8,79,0.16624332710167247],[115,-7,64,0.022387070042065006],[115,-7,65,0.024980258830029432],[115,-7,66,0.02756731374620736],[115,-7,67,0.030147206709364594],[115,-7,68,0.03273010465502763],[115,-7,69,0.03533743167336985],[115,-7,70,0.03798992811734984],[115,-7,71,0.04070614385507685],[115,-7,72,0.043501380595860256],[115,-7,73,0.04638682255714745],[115,-7,74,0.04936885580774754],[115,-7,75,0.052448576222192865],[115,-7,76,0.05562148558455229],[115,-7,77,0.05887737499218065],[115,-7,78,0.06663712772887284],[115,-7,79,0.08006288449350824],[115,-6,64,0.017777259043749823],[115,-6,65,0.020295749034245688],[115,-6,66,0.02283349438044664],[115,-6,67,0.025387044880194935],[115,-6,68,0.027960904026610004],[115,-6,69,0.030570774332600748],[115,-6,70,0.03323307049204412],[115,-6,71,0.03596323349108253],[115,-6,72,0.03877448214642771],[115,-6,73,0.04167676645437722],[115,-6,74,0.04467592324553842],[115,-6,75,0.04777303420766606],[115,-6,76,0.05096398591023475],[115,-6,77,0.0542392310443263],[115,-6,78,0.05758374968166349],[115,-6,79,0.06097720896299427],[115,-5,64,0.01314866797104567],[115,-5,65,0.015596631553691238],[115,-5,66,0.01808822373338638],[115,-5,67,0.02061767333705415],[115,-5,68,0.023183874035480157],[115,-5,69,0.02579673004846232],[115,-5,70,0.028468205004391445],[115,-5,71,0.03121047896017501],[115,-5,72,0.03403452704907024],[115,-5,73,0.03694891116110063],[115,-5,74,0.03995878529962564],[115,-5,75,0.04306511479716984],[115,-5,76,0.04626410911680916],[115,-5,77,0.04954686751734187],[115,-5,78,0.052899236422884695],[115,-5,79,0.056301876916447204],[115,-4,64,0.0085119160323567],[115,-4,65,0.01089388939727818],[115,-4,66,0.013342462690320613],[115,-4,67,0.015849653387565724],[115,-4,68,0.01840889509275161],[115,-4,69,0.021024340000814396],[115,-4,70,0.0237034741175016],[115,-4,71,0.026455141241366213],[115,-4,72,0.029287969456934484],[115,-4,73,0.03220901944834391],[115,-4,74,0.03522265541298154],[115,-4,75,0.03832963887102743],[115,-4,76,0.041526445186710614],[115,-4,77,0.04480480214572785],[115,-4,78,0.048151449472504944],[115,-4,79,0.05154811772700476],[115,-3,64,0.0038769770987084145],[115,-3,65,0.006197704282964782],[115,-3,66,0.008606257202636476],[115,-3,67,0.011092557363728139],[115,-3,68,0.013644821034800376],[115,-3,69,0.01626161744219158],[115,-3,70,0.01894602852248508],[115,-3,71,0.021703565324758138],[115,-3,72,0.024540465427912796],[115,-3,73,0.02746221841022134],[115,-3,74,0.030472320272514085],[115,-3,75,0.033571257214791636],[115,-3,76,0.03675571866780118],[115,-3,77,0.040018038991604235],[115,-3,78,0.04334586677427271],[115,-3,79,0.04672206020193493],[115,-2,64,-7.468538195887918E-4],[115,-2,65,0.0015174086445373788],[115,-2,66,0.00388868640924041],[115,-2,67,0.006354923372096171],[115,-2,68,0.0088994476428789],[115,-2,69,0.011515532627086942],[115,-2,70,0.014202027579992612],[115,-2,71,0.01696119261587354],[115,-2,72,0.01979689186238653],[115,-2,73,0.02271301829143534],[115,-2,74,0.025712151234559503],[115,-2,75,0.028794447076615746],[115,-2,76,0.031956763110573785],[115,-2,77,0.03519201403395469],[115,-2,78,0.03848876007575222],[115,-2,79,0.04183102526800613],[115,-1,64,-0.005350794638026365],[115,-1,65,-0.003138366582617332],[115,-1,66,-8.019991888759829E-4],[115,-1,67,0.001644392254959374],[115,-1,68,0.004179653066904366],[115,-1,69,0.006792156412246311],[115,-1,70,0.0094767819883707],[115,-1,71,0.012232695791673144],[115,-1,72,0.015061464815764475],[115,-1,73,0.017965404469491863],[115,-1,74,0.020946159813195638],[115,-1,75,0.024003521190279316],[115,-1,76,0.027134474313031426],[115,-1,77,0.030332484352056325],[115,-1,78,0.03358701307958959],[115,-1,79,0.03688326763481631],[115,0,64,-0.009926206441095313],[115,0,65,-0.0077613441136261474],[115,0,66,-0.005458045352622663],[115,0,67,-0.0030319692769356344],[115,0,68,-5.082861300683307E-4],[115,0,69,0.0020969659380519266],[115,0,70,0.004775041716412136],[115,0,71,0.007522238708006637],[115,0,72,0.010337959283240685],[115,0,73,0.01322300412692725],[115,0,74,0.01617809815103199],[115,0,75,0.01920264952233534],[115,0,76,0.02229374193429288],[115,0,77,0.025445359740892383],[115,0,78,0.028647845069139338],[115,0,79,0.03188758554234824],[115,1,64,-0.01446401381805997],[115,1,65,-0.012343047287340862],[115,1,66,-0.010071663215216577],[115,1,67,-0.007667155684140983],[115,1,68,-0.005158200189525534],[115,1,69,-0.0025646849375703384],[115,1,70,1.014315062362964E-4],[115,1,71,0.002833863373255001],[115,1,72,0.005630032257490449],[115,1,73,0.008489329282828795],[115,1,74,0.011411606101169201],[115,1,75,0.014395895431407306],[115,1,76,0.017439361332717715],[115,1,77,0.02053647889729306],[115,1,78,0.023678442549438516],[115,1,79,0.02685280165604659],[115,2,64,-0.0189539101747577],[115,2,65,-0.016874038842220447],[115,2,66,-0.014634298441713307],[115,2,67,-0.01225351949167754],[115,2,68,-0.009763353071869681],[115,2,69,-0.007186931357290441],[115,2,70,-0.004538967198891736],[115,2,71,-0.0018279972010377574],[115,2,72,9.416480062130796E-4],[115,2,73,0.0037680954420712892],[115,2,74,0.006650404668650974],[115,2,75,0.009587266663290475],[115,2,76,0.012575926921012413],[115,2,77,0.015611332538005056],[115,2,78,0.01868550253611976],[115,2,79,0.021787120213418783],[115,3,64,-0.00530248173985272],[115,3,65,-0.010574304726770425],[115,3,66,-0.017149556777940465],[115,3,67,-0.01678187017552728],[115,3,68,-0.014315580125294752],[115,3,69,-0.011762587205812977],[115,3,70,-0.009139876348237593],[115,3,71,-0.006457870993281342],[115,3,72,-0.0037223891088184065],[115,3,73,-9.363844664174951E-4],[115,3,74,0.0018985281235856756],[115,3,75,0.004780764419307852],[115,3,76,0.007707679500794223],[115,3,77,0.01067469348455678],[115,3,78,0.013674633534101983],[115,3,79,0.016697291036869028],[115,4,64,5.320798810374006E-4],[115,4,65,-9.630063722916424E-4],[115,4,66,-0.002928297088226059],[115,4,67,-0.0055768202446315075],[115,4,68,-0.009100234098033708],[115,4,69,-0.013648767055897949],[115,4,70,-0.01369292104216969],[115,4,71,-0.011048460630998805],[115,4,72,-0.008355788675011593],[115,4,73,-0.005618721190269512],[115,4,74,-0.0028393897555155753],[115,4,75,-1.9546513406442528E-5],[115,4,76,0.0028383398416978334],[115,4,77,0.005730196966795406],[115,4,78,0.008649670075192926],[115,4,79,0.01158765040277379],[115,5,64,7.840083566019215E-4],[115,5,65,-2.8251190074779465E-4],[115,5,66,-9.058226654145631E-4],[115,5,67,-0.001369353407373566],[115,5,68,-0.0019335050554780233],[115,5,69,-0.0028151728643415084],[115,5,70,-0.004189418629006498],[115,5,71,-0.006194144653598735],[115,5,72,-0.008934528495575283],[115,5,73,-0.010271887169542252],[115,5,74,-0.00755777802980053],[115,5,75,-0.0048094503501918875],[115,5,76,-0.0020290765365312763],[115,5,77,7.798646594165154E-4],[115,5,78,0.0036118927271714518],[115,5,79,0.006459028950391962],[115,6,64,0.007156998085943745],[115,6,65,0.003168641986714022],[115,6,66,6.173587456474506E-4],[115,6,67,-8.50712012903399E-4],[115,6,68,-0.0015645907097506413],[115,6,69,-0.001807715200400954],[115,6,70,-0.001819485881273382],[115,6,71,-0.0017997875952321372],[115,6,72,-0.0019132863450805758],[115,6,73,-0.0022935256662774883],[115,6,74,-0.0030468080999528965],[115,6,75,-0.004255848442387872],[115,6,76,-0.005983186764166767],[115,6,77,-0.004176436581502716],[115,6,78,-0.0014408587275379669],[115,6,79,0.0013075107748308098],[115,7,64,0.031362434802925936],[115,7,65,0.021099894693321637],[115,7,66,0.013348985310697338],[115,7,67,0.007685392212253335],[115,7,68,0.003711469554141754],[115,7,69,0.0010771960693199418],[115,7,70,-5.212726322645187E-4],[115,7,71,-0.0013459893200797855],[115,7,72,-0.0016213880532435934],[115,7,73,-0.0015382713024420793],[115,7,74,-0.0012575968421901025],[115,7,75,-9.140511533038011E-4],[115,7,76,-6.193973348149925E-4],[115,7,77,-4.655868543371294E-4],[115,7,78,-5.276258565429357E-4],[115,7,79,-8.66188191393209E-4],[115,8,64,0.08511167778477097],[115,8,65,0.06522389735870357],[115,8,66,0.049003001386976955],[115,8,67,0.035954387391994615],[115,8,68,0.025611857475977745],[115,8,69,0.017558740860137412],[115,8,70,0.011426599426394835],[115,8,71,0.006890969746204138],[115,8,72,0.0036673035609587853],[115,8,73,0.001507080247463418],[115,8,74,1.9410560176555056E-4],[115,8,75,-4.589898551088964E-4],[115,8,76,-6.140410493329602E-4],[115,8,77,-4.1041627514219633E-4],[115,8,78,3.214653538109476E-5],[115,8,79,6.109432164617224E-4],[115,9,64,0.1801072374810467],[115,9,65,0.14724527976098617],[115,9,66,0.11928616137305571],[115,9,67,0.09566535416198643],[115,9,68,0.07584830394837834],[115,9,69,0.0593516476516505],[115,9,70,0.04574218648176177],[115,9,71,0.03463275502303493],[115,9,72,0.025678271935719286],[115,9,73,0.018571949055217054],[115,9,74,0.013041673116198138],[115,9,75,0.008846573249454755],[115,9,76,0.00577378625165262],[115,9,77,0.003635430416222848],[115,9,78,0.00226579744436683],[115,9,79,0.0015187706428892703],[115,10,64,0.19371526029819144],[115,10,65,0.19030029144172572],[115,10,66,0.18697127570760544],[115,10,67,0.18370378601861656],[115,10,68,0.1661241171745225],[115,10,69,0.13816206798251474],[115,10,70,0.11413480323127476],[115,10,71,0.09359211990229602],[115,10,72,0.07612791875219797],[115,10,73,0.06137651306512706],[115,10,74,0.04900909607184872],[115,10,75,0.03873038012300518],[115,10,76,0.030275419612878454],[115,10,77,0.02340662849860095],[115,10,78,0.01791100205091146],[115,10,79,0.013597551225754779],[115,11,64,0.18694316113661583],[115,11,65,0.18345764486857355],[115,11,66,0.1800523658886854],[115,11,67,0.17670337075378428],[115,11,68,0.1733725747836791],[115,11,69,0.1700306186212576],[115,11,70,0.1666586621799223],[115,11,71,0.16324640930086307],[115,11,72,0.16161348821019333],[115,11,73,0.14163336185317107],[115,11,74,0.11981240741113403],[115,11,75,0.10091185060225245],[115,11,76,0.08461352418926942],[115,11,77,0.07062886509282963],[115,11,78,0.058696170644270594],[115,11,79,0.048578053064685024],[115,12,64,0.18018708381946777],[115,12,65,0.17663473556448492],[115,12,66,0.17315574851644489],[115,12,67,0.16972730626766444],[115,12,68,0.16631212614092558],[115,12,69,0.16288095884843565],[115,12,70,0.15941502567140287],[115,12,71,0.15590411291347608],[115,12,72,0.15234481587853296],[115,12,73,0.1532678101246418],[115,12,74,0.15448197305175193],[115,12,75,0.15586684864111877],[115,12,76,0.15742043148405574],[115,12,77,0.15701947844655645],[115,12,78,0.13634075411018912],[115,12,79,0.1181815165098233],[115,13,64,0.1734609499772303],[115,13,65,0.1698467849172452],[115,13,66,0.1662981000426283],[115,13,67,0.1627938675427879],[115,13,68,0.15929811816745523],[115,13,69,0.1557819432473502],[115,13,70,0.15222672869089446],[115,13,71,0.1486223449986055],[115,13,72,0.14496545743252792],[115,13,73,0.14365972381810735],[115,13,74,0.14463484338200697],[115,13,75,0.14577304384095666],[115,13,76,0.1470729750339966],[115,13,77,0.148533067574669],[115,13,78,0.15015075119295632],[115,13,79,0.1519218155400238],[115,14,64,0.16678283669404395],[115,14,65,0.1631129316631007],[115,14,66,0.15949973812803467],[115,14,67,0.15592461098272442],[115,14,68,0.15235337176460373],[115,14,69,0.1487576637223267],[115,14,70,0.14511911175856873],[115,14,71,0.14142763674740172],[115,14,72,0.13767985557762394],[115,14,73,0.13408708794674434],[115,14,74,0.13482628416668108],[115,14,75,0.13572053552270658],[115,14,76,0.13676889493745428],[115,14,77,0.13797038654743407],[115,14,78,0.1393232440784994],[115,14,79,0.14082428046647755],[115,15,64,0.16018373317643245],[115,15,65,0.15646488171960488],[115,15,66,0.15279305367656076],[115,15,67,0.14915248178211132],[115,15,68,0.14551119843222457],[115,15,69,0.1418415887031236],[115,15,70,0.1381255718109835],[115,15,71,0.13435306926808474],[115,15,72,0.1305205198187197],[115,15,73,0.1266295079082474],[115,15,74,0.12508155144842326],[115,15,75,0.12573311207700036],[115,15,76,0.1265302828754318],[115,15,77,0.1274724571603703],[115,15,78,0.12855847381486374],[115,15,79,0.12978600567140322],[115,16,64,0.15371298991863194],[115,16,65,0.14995212930921684],[115,16,66,0.14622735228650707],[115,16,67,0.14252614731228933],[115,16,68,0.13881913131332185],[115,16,69,0.13507963883573174],[115,16,70,0.1312899768957888],[115,16,71,0.1274400720507032],[115,16,72,0.1235261219073191],[115,16,73,0.11954934471629156],[115,16,74,0.11551482845177703],[115,16,75,0.11583439537573922],[115,16,76,0.116377436886393],[115,16,77,0.11705636437195184],[115,16,78,0.11787050550394938],[115,16,79,0.11881830632089277],[115,17,64,0.1474019064239297],[115,17,65,0.14360595111896154],[115,17,66,0.13983364946683885],[115,17,67,0.13607600661238645],[115,17,68,0.13230655237194947],[115,17,69,0.12849980174340445],[115,17,70,0.12463858782006375],[115,17,71,0.12071290730062009],[115,17,72,0.11671872604111685],[115,17,73,0.11265686562110064],[115,17,74,0.10853197223609054],[115,17,75,0.10603358088810445],[115,17,76,0.10631728720134445],[115,17,77,0.10672699708376651],[115,17,78,0.107262482612997],[115,17,79,0.10792293944553738],[115,18,64,0.1412587924737869],[115,18,65,0.13743457572790443],[115,18,66,0.1336200232930159],[115,18,67,0.12980980413019616],[115,18,68,0.1259806394118275],[115,18,69,0.12210847176052284],[115,18,70,0.11817683353688267],[115,18,71,0.11417590494378782],[115,18,72,0.11010148712169326],[115,18,73,0.10595403790255965],[115,18,74,0.1017377714337367],[115,18,75,0.09745982270632098],[115,18,76,0.09634254640362619],[115,18,77,0.09647639005635048],[115,18,78,0.09672606130636181],[115,18,79,0.09709152285172268],[115,19,64,0.13527266682884798],[115,19,65,0.13142687741165526],[115,19,66,0.12757527487544873],[115,19,67,0.12371623016075325],[115,19,68,0.11982988056407638],[115,19,69,0.11589385216006418],[115,19,70,0.11189257502098324],[115,19,71,0.1078165628987157],[115,19,72,0.10366156359661667],[115,19,73,0.09942775271881349],[115,19,74,0.09511897189681875],[115,19,75,0.09074201246527483],[115,19,76,0.08643364476263149],[115,19,77,0.08628539099878575],[115,19,78,0.08624280347234582],[115,19,79,0.08630665223908107],[115,20,64,0.12847306909431888],[115,20,65,0.1255559123967274],[115,20,66,0.12167243472220096],[115,20,67,0.11776837207993907],[115,20,68,0.11382744598773942],[115,20,69,0.10982922271622603],[115,20,70,0.10575924440652443],[115,20,71,0.10160853435871423],[115,20,72,0.09737293082406531],[115,20,73,0.0930524443386635],[115,20,74,0.08865063957817697],[115,20,75,0.08417404263620315],[115,20,76,0.07963157454825924],[115,20,77,0.07612531586251388],[115,20,78,0.07578557786705364],[115,20,79,0.07554304641367363],[115,21,64,0.11774241628411079],[115,21,65,0.11491673663717016],[115,21,66,0.11200701731863805],[115,21,67,0.10901465335406398],[115,21,68,0.10595931509366212],[115,21,69,0.10286651796564057],[115,21,70,0.09973885784473013],[115,21,71,0.09551450087183858],[115,21,72,0.09119909409724648],[115,21,73,0.08679262455355455],[115,21,74,0.08229849987769514],[115,21,75,0.0777230813504238],[115,21,76,0.07307522293977627],[115,21,77,0.06836581711297758],[115,21,78,0.06531997072732026],[115,21,79,0.0647687222803375],[115,22,64,0.10687239945608489],[115,22,65,0.10394102759375999],[115,22,66,0.10095198868294086],[115,22,67,0.09790362537393163],[115,22,68,0.09481203255182442],[115,22,69,0.09170045366951214],[115,22,70,0.0885880406273738],[115,22,71,0.08548988600086946],[115,22,72,0.08241729908982927],[115,22,73,0.07937809758016547],[115,22,74,0.07602120907925197],[115,22,75,0.07134964151351206],[115,22,76,0.066599507124542],[115,22,77,0.06178188423494186],[115,22,78,0.05690967047081167],[115,22,79,0.053946201415285194],[115,23,64,0.09593864997041938],[115,23,65,0.09290196937552017],[115,23,66,0.08983419428439207],[115,23,67,0.08673092894829444],[115,23,68,0.08360469802801786],[115,23,69,0.08047625400664667],[115,23,70,0.07736312002842202],[115,23,71,0.07427941215248839],[115,23,72,0.07123593413203852],[115,23,73,0.06824030713713816],[115,23,74,0.06529713383769449],[115,23,75,0.06240819618572652],[115,23,76,0.05957268616418371],[115,23,77,0.05524301047372547],[115,23,78,0.05026403323442747],[115,23,79,0.045240745688637035],[115,24,64,0.08502023825580218],[115,24,65,0.08187948098516822],[115,24,66,0.07873398775755013],[115,24,67,0.07557700170522885],[115,24,68,0.07241754110217048],[115,24,69,0.06927367627105346],[115,24,70,0.06616110187337397],[115,24,71,0.06309276225294788],[115,24,72,0.06007877157314964],[115,24,73,0.05712638732076766],[115,24,74,0.05424003673178607],[115,24,75,0.05142139556804161],[115,24,76,0.048669518553504584],[115,24,77,0.04598102066598874],[115,24,78,0.04335030837552929],[115,24,79,0.03850821805640091],[115,25,64,0.07419694368048586],[115,25,65,0.07095422714402955],[115,25,66,0.06773250071354403],[115,25,67,0.06452307488955446],[115,25,68,0.06133158192362958],[115,25,69,0.0581732524651414],[115,25,70,0.055061775107905386],[115,25,71,0.05200874128965474],[115,25,72,0.049023400162390325],[115,25,73,0.04611248401949698],[115,25,74,0.04328010397447277],[115,25,75,0.04052771541348305],[115,25,76,0.03785415257819448],[115,25,77,0.035255731477872594],[115,25,78,0.032726420181956234],[115,25,79,0.030258075407664377],[115,26,64,0.06354670155361462],[115,26,65,0.06020505341282242],[115,26,66,0.05690908253084846],[115,26,67,0.05364863375034539],[115,26,68,0.0504261269359068],[115,26,69,0.04725383413276414],[115,26,70,0.04414328777133351],[115,26,71,0.04110456455188539],[115,26,72,0.038145886936319054],[115,26,73,0.03527331086092691],[115,26,74,0.032490499503451765],[115,26,75,0.02979858272243841],[115,26,76,0.027196101579126337],[115,26,77,0.024679037153607458],[115,26,78,0.02224092267936313],[115,26,79,0.019873037845339128],[115,27,64,0.05314323082393522],[115,27,65,0.04970659915424001],[115,27,66,0.046338913286100486],[115,27,67,0.04302904470128897],[115,27,68,0.03977642328181025],[115,27,69,0.036590285847588805],[115,27,70,0.033479890381301725],[115,27,71,0.03045366079516639],[115,27,72,0.02751864916476591],[115,27,73,0.024680098067875786],[115,27,74,0.021941102997079832],[115,27,75,0.019302374561357433],[115,27,76,0.01676209994635495],[115,27,77,0.014315902867647917],[115,27,78,0.01195690102790425],[115,27,79,0.00967585987946856],[115,28,64,0.043053846294338394],[115,28,65,0.039527092040870584],[115,28,66,0.03609079337099798],[115,28,67,0.03273335260494916],[115,28,68,0.029451475006624952],[115,28,69,0.02625133019789174],[115,28,70,0.023139818429788912],[115,28,71,0.02012360003943858],[115,28,72,0.01720843443884966],[115,28,73,0.014398631104638479],[115,28,74,0.011696612668030664],[115,28,75,0.009102589917576464],[115,28,76,0.006614348248729015],[115,28,77,0.0042271448269123055],[115,28,78,0.0019337154761315273],[115,28,79,-2.7560993422566515E-4],[115,29,64,0.03333745944385175],[115,29,65,0.029726328094736337],[115,29,66,0.026225113631079804],[115,29,67,0.022822251826220434],[115,29,68,0.01951202447292557],[115,29,69,0.016297547403275665],[115,29,70,0.013183316798577923],[115,29,71,0.010174148431916849],[115,29,72,0.007274410906335883],[115,29,73,0.004487380647903348],[115,29,74,0.001814718876758191],[115,29,75,-7.439295355494786E-4],[115,29,76,-0.003191215719839439],[115,29,77,-0.005532245666014368],[115,29,78,-0.007774619255216051],[115,29,79,-0.009928350704524927],[115,30,64,0.02404277223637563],[115,30,65,0.020353841542394578],[115,30,66,0.016792010167285355],[115,30,67,0.01334623501017533],[115,30,68,0.010008702712501462],[115,30,69,0.006779533009451573],[115,30,70,0.0036608092081378916],[115,30,71,6.554529026344151E-4],[115,30,72,-0.0022336300561933897],[115,30,73,-0.005004274316143331],[115,30,74,-0.007655650166245296],[115,30,75,-0.010188729065101793],[115,30,76,-0.012606619881131738],[115,30,77,-0.014914776486581158],[115,30,78,-0.01712107764863649],[115,30,79,-0.019235780445624875],[115,31,64,0.015206668591202933],[115,31,65,0.01144726907578988],[115,31,66,0.007829708255368585],[115,31,67,0.004343923859009662],[115,31,68,9.803527629104808E-4],[115,31,69,-0.0022637825714008396],[115,31,70,-0.00538878386895817],[115,31,71,-0.008393641350180333],[115,31,72,-0.011276956147763993],[115,31,73,-0.014037728186056747],[115,31,74,-0.016676009079857626],[115,31,75,-0.019193419962508992],[115,31,76,-0.02159353449653848],[115,31,77,-0.02388212765149702],[115,31,78,-0.026067291150407956],[115,31,79,-0.028159416785721484],[115,32,64,0.006852808487622543],[115,32,65,0.0030309134171964203],[115,32,66,-6.369398451806724E-4],[115,32,67,-0.004159413494767644],[115,32,68,-0.00754746963826883],[115,32,69,-0.010806648581572556],[115,32,70,-0.013939575076693455],[115,32,71,-0.01694713719249293],[115,32,72,-0.019829458533061197],[115,32,73,-0.02258673285877048],[115,32,74,-0.025219920573312567],[115,32,75,-0.027731306903157386],[115,32,76,-0.030124921949427938],[115,32,77,-0.03240682313362512],[115,32,78,-0.034585240885301065],[115,32,79,-0.03667058872892136],[115,33,64,-0.001009570031537333],[115,33,65,-0.004885488609573872],[115,33,66,-0.008597718108296593],[115,33,67,-0.012153153602517104],[115,33,68,-0.015563813305314433],[115,33,69,-0.01883783808291237],[115,33,70,-0.021980083751197015],[115,33,71,-0.024993292036179445],[115,33,72,-0.02787909512049353],[115,33,73,-0.030638881597208924],[115,33,74,-0.0332745232122355],[115,33,75,-0.0357889621443595],[115,33,76,-0.03818665893021213],[115,33,77,-0.04047390148767566],[115,33,78,-0.042658976022674364],[115,33,79,-0.0441464109747619],[115,34,64,-0.00838663540936221],[115,34,65,-0.012307788004576483],[115,34,66,-0.01605810559566317],[115,34,67,-0.01964241207289165],[115,34,68,-0.023073461789657634],[115,34,69,-0.026361817030277117],[115,34,70,-0.029514448810356936],[115,34,71,-0.03253588048795667],[115,34,72,-0.035429209224454195],[115,34,73,-0.03819698969127121],[115,34,74,-0.04084197933263761],[115,34,75,-0.04336774486199695],[115,34,76,-0.04111318243970627],[115,34,77,-0.03721763258594294],[115,34,78,-0.03339278771283528],[115,34,79,-0.029649791856263295],[115,35,64,-0.015300727861854664],[115,35,65,-0.019258229737251553],[115,35,66,-0.023040125269865135],[115,35,67,-0.026648935679016043],[115,35,68,-0.03009787118284405],[115,35,69,-0.033399733211282985],[115,35,70,-0.036563476257726144],[115,35,71,-0.039595308878920446],[115,35,72,-0.04249971980889289],[115,35,73,-0.0392216295617932],[115,35,74,-0.03499851096835146],[115,35,75,-0.030827328516843347],[115,35,76,-0.0267159017786644],[115,35,77,-0.022672974861270408],[115,35,78,-0.018708438866510458],[115,35,79,-0.014833419784832578],[115,36,64,-0.021790899338892885],[115,36,65,-0.02577603707499603],[115,36,66,-0.029582976816782243],[115,36,67,-0.033211786393878756],[115,36,68,-0.036675909934536725],[115,36,69,-0.0399902197187716],[115,36,70,-0.038402955147033575],[115,36,71,-0.03389242039653135],[115,36,72,-0.02941599247649363],[115,36,73,-0.02498268216124482],[115,36,74,-0.020600678405352187],[115,36,75,-0.01627798459933966],[115,36,76,-0.012022921657095132],[115,36,77,-0.00784449816413806],[115,36,78,-0.0037526481385141324],[115,36,79,2.41662738329808E-4],[115,37,64,-0.027913221871822706],[115,37,65,-0.031917767821351875],[115,37,66,-0.0357434472799973],[115,37,67,-0.03855021051057771],[115,37,68,-0.03383655478788197],[115,37,69,-0.02911709317708729],[115,37,70,-0.02441037575695193],[115,37,71,-0.019731165683222168],[115,37,72,-0.015091466307421987],[115,37,73,-0.01050142048928034],[115,37,74,-0.005970081236203234],[115,37,75,-0.0015060531509279635],[115,37,76,0.0028819954929837016],[115,37,77,0.007184949900749366],[115,37,78,0.011392994668632897],[115,37,79,0.015495487697474946],[115,38,64,-0.03373900925312186],[115,38,65,-0.034563458710386095],[115,38,66,-0.029757362052020817],[115,38,67,-0.02490109931203098],[115,38,68,-0.020015455242374053],[115,38,69,-0.01512582167312372],[115,38,70,-0.010252564661821235],[115,38,71,-0.005411974716574899],[115,38,72,-6.172924684772051E-4],[115,38,73,0.004120389601129844],[115,38,74,0.008791350311038138],[115,38,75,0.013386588401149991],[115,38,76,0.017897296886197532],[115,38,77,0.02231446308414609],[115,38,78,0.026628593952443172],[115,38,79,0.030829566072218907],[115,39,64,-0.02607361483564443],[115,39,65,-0.021145917047083507],[115,39,66,-0.01616852746872395],[115,39,67,-0.011141861619223113],[115,39,68,-0.006086937148620703],[115,39,69,-0.0010312149468830799],[115,39,70,0.0040031650680898215],[115,39,71,0.008998478161510868],[115,39,72,0.013940381812173382],[115,39,73,0.01881700321915212],[115,39,74,0.023618148296775644],[115,39,75,0.02833463283721665],[115,39,76,0.03295773619561302],[115,39,77,0.037478777538235544],[115,39,78,0.041888814390597995],[115,39,79,0.046178462933818436],[115,40,64,-0.012762102327461262],[115,40,65,-0.007656967249580566],[115,40,66,-0.00250659163741611],[115,40,67,0.002691013915003562],[115,40,68,0.007914562032646826],[115,40,69,0.013134414706448818],[115,40,70,0.01832661200692414],[115,40,71,0.023472006239765232],[115,40,72,0.028555214174118205],[115,40,73,0.03356368649390757],[115,40,74,0.03848689557687452],[115,40,75,0.04331564237931344],[115,40,76,0.04804148288553482],[115,40,77,0.05265627427155087],[115,40,78,0.05715184063304484],[115,40,79,0.0615197578425406],[115,41,64,5.712949326244854E-4],[115,41,65,0.005857984745622066],[115,41,66,0.011184417043641743],[115,41,67,0.016555096831317315],[115,41,68,0.02194841624284255],[115,41,69,0.027332393810045243],[115,41,70,0.0326811415201156],[115,41,71,0.037974037276742575],[115,41,72,0.04319465661645898],[115,41,73,0.04832981844014408],[115,41,74,0.05336874596814202],[115,41,75,0.05830234380644068],[115,41,76,0.06312259169746534],[115,41,77,0.06782205522392658],[115,41,78,0.07239351343839742],[115,41,79,0.07682970310903599],[115,42,64,0.013877069342609863],[115,42,65,0.019350147050652102],[115,42,66,0.02485665409082985],[115,42,67,0.03040373029759711],[115,42,68,0.03596938504313448],[115,42,69,0.04151909747578205],[115,42,70,0.047024905420652165],[115,42,71,0.05246461688361023],[115,42,72,0.05782071759675074],[115,42,73,0.06307938926651929],[115,42,74,0.06822963984510748],[115,42,75,0.07326254683050003],[115,42,76,0.07817061429179005],[115,42,77,0.08294724401567741],[115,42,78,0.08758632087792059],[115,42,79,0.09208191226402739],[115,43,64,0.027106708274258894],[115,43,65,0.032771222018717704],[115,43,66,0.038462297104317804],[115,43,67,0.04418980704427903],[115,43,68,0.0499313058877337],[115,43,69,0.05564953110448262],[115,43,70,0.06131428218902048],[115,43,71,0.06690167387676407],[115,43,72,0.07239301805787779],[115,43,73,0.07777381284127419],[115,43,74,0.08303284020654768],[115,43,75,0.08816137337265657],[115,43,76,0.0931524947090203],[115,43,77,0.09800052471885778],[115,43,78,0.10270056233644698],[115,43,79,0.10724813650360299],[115,44,64,0.040216793292304126],[115,44,65,0.04607748491379973],[115,44,66,0.05195757729667748],[115,44,67,0.057869731489730646],[115,44,68,0.06379096320135069],[115,44,69,0.06968107751372508],[115,44,70,0.07550746950536671],[115,44,71,0.0812444233559504],[115,44,72,0.08687196940206628],[115,44,73,0.09237484442373957],[115,44,74,0.09774155671782787],[115,44,75,0.10296355721272168],[115,44,76,0.10803451758216122],[115,44,77,0.11294971602585566],[115,44,78,0.11770553110126422],[115,44,79,0.12164228481944712],[115,45,64,0.05317330483105677],[115,45,65,0.059234064332049446],[115,45,66,0.06530700768255701],[115,45,67,0.07140757133945148],[115,45,68,0.07751213747567814],[115,45,69,0.08357741259116087],[115,45,70,0.08956823203028354],[115,45,71,0.09545691024158087],[115,45,72,0.10122207590543945],[115,45,73,0.10684760588113601],[115,45,74,0.11224797616018545],[115,45,75,0.11689761306844065],[115,45,76,0.12142072781756835],[115,45,77,0.12581903397676825],[115,45,78,0.13009339329168712],[115,45,79,0.13424425901375653],[115,46,64,0.06559705830219156],[115,46,65,0.07221942726177655],[115,46,66,0.07848781084683303],[115,46,67,0.0847794015639414],[115,46,68,0.09098480412321462],[115,46,69,0.0967395170974485],[115,46,70,0.10231445004880599],[115,46,71,0.10773329109159124],[115,46,72,0.11301340624178006],[115,46,73,0.11816693093667613],[115,46,74,0.12320176511257365],[115,46,75,0.12812247034097998],[115,46,76,0.13293106780327354],[115,46,77,0.13762773615925286],[115,46,78,0.14221140863342488],[115,46,79,0.14668026890398556],[115,47,64,0.07457195623092057],[115,47,65,0.08142971763040587],[115,47,66,0.08805686447599823],[115,47,67,0.09442424577097916],[115,47,68,0.10054904480349316],[115,47,69,0.10647356947557678],[115,47,70,0.1122314527272433],[115,47,71,0.11784819046752831],[115,47,72,0.1233423415376724],[115,47,73,0.12872663869717704],[115,47,74,0.13400900875238522],[115,47,75,0.13919350021560925],[115,47,76,0.14428111715047615],[115,47,77,0.14927055812400558],[115,47,78,0.1541588594446785],[115,47,79,0.1589419421183881],[115,48,64,0.08353442023690938],[115,48,65,0.09051700096128534],[115,48,66,0.09727802719474678],[115,48,67,0.10378587825125307],[115,48,68,0.1100584474418438],[115,48,69,0.11614108228939382],[115,48,70,0.12206992298678429],[115,48,71,0.12787237384889816],[115,48,72,0.13356830839882108],[115,48,73,0.1391711918461335],[115,48,74,0.1446891189916814],[115,48,75,0.15012576584691636],[115,48,76,0.1554812535097325],[115,48,77,0.16075292309075],[115,48,78,0.16593602073100555],[115,48,79,0.17102429199415553],[115,49,64,0.09252750378798025],[115,49,65,0.09962509669575217],[115,49,66,0.1065090483181648],[115,49,67,0.1131455520261876],[115,49,68,0.1195532981715715],[115,49,69,0.12578063777546847],[115,49,70,0.13186624040044753],[115,49,71,0.13783949258943515],[115,49,72,0.1437216978391599],[115,49,73,0.1495272009238568],[115,49,74,0.1552644345377381],[115,49,75,0.16093688646178012],[115,49,76,0.16654398569838524],[115,49,77,0.17208190625463915],[115,49,78,0.17754428748814302],[115,49,79,0.18292287015903805],[115,50,64,0.1015829756828073],[115,50,65,0.10878589738832917],[115,50,66,0.11578162803830276],[115,50,67,0.12253449949001449],[115,50,68,0.12906406197510858],[115,50,69,0.13542156473824296],[115,50,70,0.14164817775342695],[115,50,71,0.1477753111247189],[115,50,72,0.15382579865490506],[115,50,73,0.1598150131996076],[115,50,74,0.1657519117324952],[115,50,75,0.17164000826584827],[115,50,76,0.1774782729910634],[115,50,77,0.18326195622410693],[115,50,78,0.1889833359585243],[115,50,79,0.19463238804380292],[115,51,64,0.11072135576982828],[115,51,65,0.1180202537808622],[115,51,66,0.12511671223018747],[115,51,67,0.1319735614443591],[115,51,68,0.13861125077595726],[115,51,69,0.14508375701541762],[115,51,70,0.1514346704577192],[115,51,71,0.157697430095639],[115,51,72,0.1638964789384586],[115,51,73,0.1700483589038642],[115,51,74,0.17616274319154052],[115,51,75,0.1822434042455263],[115,51,76,0.18828911561345346],[115,51,77,0.1942944862128058],[115,51,78,0.20025072571454197],[115,51,79,0.20614633995340975],[115,52,64,0.11995208735648842],[115,52,65,0.1273381102329733],[115,52,66,0.13452458894895733],[115,52,67,0.14147323990939253],[115,52,68,0.14820542791300148],[115,52,69,0.1547776272192028],[115,52,70,0.16123571932441846],[115,52,71,0.16761513990405158],[115,52,72,0.17394199396210216],[115,52,73,0.18023411856116775],[115,52,74,0.1865020910513861],[115,52,75,0.1927501808941948],[115,52,76,0.19897724335724012],[115,52,77,0.2051775535389703],[115,52,78,0.2113415793627862],[115,52,79,0.21745669236183132],[115,53,64,0.12927385004001],[115,53,65,0.13673878137710258],[115,53,66,0.1440051261097348],[115,53,67,0.15103389181957982],[115,53,68,0.15784735298447372],[115,53,69,0.16450419976914957],[115,53,70,0.171052430709781],[115,53,71,0.17752940868203945],[115,53,72,0.18396292433790387],[115,53,73,0.19037221521124137],[115,53,74,0.1967689384485385],[115,53,75,0.20315809527633236],[115,53,76,0.20953890547577514],[115,53,77,0.2159056302960519],[115,53,78,0.2222483423996657],[115,53,79,0.22855364159474778],[115,54,64,0.13867501663447843],[115,54,65,0.1462113737679903],[115,54,66,0.15354815419235596],[115,54,67,0.16064606751052318],[115,54,68,0.1675282710247112],[115,54,69,0.17425534721780706],[115,54,70,0.18087719804671218],[115,54,71,0.1874330086617862],[115,54,72,0.193952248375646],[115,54,73,0.2004556353306855],[115,54,74,0.2069560628868024],[115,54,75,0.21345948588333927],[115,54,76,0.21996576506590837],[115,54,77,0.2264694681084221],[115,54,78,0.23296062580103652],[115,54,79,0.23942544211682476],[115,55,64,0.14813425778648098],[115,55,65,0.15573535622043055],[115,55,66,0.163133997744391],[115,55,67,0.17029099784285417],[115,55,68,0.17723034992523895],[115,55,69,0.18401417382848317],[115,55,70,0.19069402874147942],[115,55,71,0.19731078491161225],[115,55,72,0.20389555254950656],[115,55,73,0.21047058226657375],[115,55,74,0.21705013515781282],[115,55,75,0.22364132075206525],[115,55,76,0.23024490116613236],[115,55,77,0.2368560599168053],[115,55,78,0.24346513396384933],[115,55,79,0.25005830767844217],[115,56,64,0.15762129776176886],[115,56,65,0.16528128242534137],[115,56,66,0.17273415935904496],[115,56,67,0.17994123372010049],[115,56,68,0.18692726993135003],[115,56,69,0.1937555502935026],[115,56,70,0.20047902035473386],[115,56,71,0.20714007035366466],[115,56,72,0.21377138394510775],[115,56,73,0.2203967659651126],[115,56,74,0.22703194746229383],[115,56,75,0.23368536630966522],[115,56,76,0.24035892180309337],[115,56,77,0.24704870174816376],[115,56,78,0.253745680634725],[115,56,79,0.2604363875989373],[115,57,64,0.16709782474948037],[115,57,65,0.1748116693036337],[115,57,66,0.1823121596804566],[115,57,67,0.18956144164080432],[115,57,68,0.19658496893705552],[115,57,69,0.20344680338232046],[115,57,70,0.21020098989703256],[115,57,71,0.21689125090074926],[115,57,72,0.22355174849197446],[115,57,73,0.230207832723677],[115,57,74,0.23687677433648202],[115,57,75,0.2435684803768901],[115,57,76,0.2502861911980202],[115,57,77,0.2570271574144853],[115,57,78,0.2637832954592582],[115,57,79,0.27054182047018044],[115,58,64,0.17651855886842546],[115,58,65,0.18428203440003388],[115,58,66,0.19182453683756454],[115,58,67,0.19910935878079472],[115,58,68,0.20616254716480936],[115,58,69,0.21304856418137308],[115,58,70,0.21982225995162505],[115,58,71,0.22652848444338408],[115,58,72,0.23320275869188054],[115,58,73,0.2398719386124622],[115,58,74,0.246554869918915],[115,58,75,0.2532630327056201],[115,58,76,0.26000117430106895],[115,58,77,0.2667679290536132],[115,58,78,0.2735564237660152],[115,58,79,0.2803548675549075],[115,59,64,0.185832480871179],[115,59,65,0.19364209543424096],[115,59,66,0.201222008528371],[115,59,67,0.20853691092862459],[115,59,68,0.2156133346509991],[115,59,69,0.22251577843076906],[115,59,70,0.22929960519037437],[115,59,71,0.23601057728237446],[115,59,72,0.24268543443001378],[115,59,73,0.2493524701015796],[115,59,74,0.2560321049962371],[115,59,75,0.26273745634418905],[115,59,76,0.26947490175375327],[115,59,77,0.2762446363717119],[115,59,78,0.28304122215944444],[115,59,79,0.2898541281275456],[115,60,64,0.19498422390717415],[115,60,65,0.2028371344917015],[115,60,66,0.21045079934239097],[115,60,67,0.21779149596534383],[115,60,68,0.2248861243296282],[115,60,69,0.23179888183899364],[115,60,70,0.23858536223086801],[115,60,71,0.2452920209920239],[115,60,72,0.25195665985477084],[115,60,73,0.2586089148387054],[115,60,74,0.26527074668743583],[115,60,75,0.271956932557138],[115,60,76,0.2786755578255933],[115,60,77,0.2854285069060178],[115,60,78,0.2922119519680014],[115,60,79,0.29901683848992644],[115,61,64,0.20391561898730265],[115,61,65,0.21180951751572594],[115,61,66,0.21945412398958236],[115,61,67,0.2268174235636742],[115,61,68,0.23392656139626078],[115,61,69,0.24084513105490918],[115,61,70,0.2476286934923384],[115,61,71,0.2543241803232122],[115,61,72,0.260970286853803],[115,61,73,0.26759787298492776],[115,61,74,0.274230371012105],[115,61,75,0.2808841993385592],[115,61,76,0.28756918111241564],[115,61,77,0.29428896679875993],[115,61,78,0.3010414596987626],[115,61,79,0.30781924343353695],[115,62,64,0.21256742031466716],[115,62,65,0.22050039560621731],[115,62,66,0.22817385326712442],[115,62,67,0.23555753826152923],[115,62,68,0.2426787164280715],[115,62,69,0.24960011808138827],[115,62,70,0.25637703312184945],[115,62,71,0.26305666047573467],[115,62,72,0.26967841367785655],[115,62,73,0.2762742378413796],[115,62,74,0.282868937211252],[115,62,75,0.289480512475718],[115,62,76,0.29612050699210885],[115,62,77,0.3027943610681241],[115,62,78,0.3095017734267582],[115,62,79,0.31623706897371995],[115,63,64,0.2208812177283669],[115,63,65,0.22885159555522147],[115,63,66,0.23655237036711096],[115,63,67,0.24395503368657656],[115,63,68,0.25108685021097316],[115,63,69,0.2580094762472702],[115,63,70,0.2647777232560678],[115,63,71,0.2714388621291995],[115,63,72,0.2780328471945547],[115,63,73,0.28459255430522445],[115,63,74,0.2911440323751311],[115,63,75,0.297706767690011],[115,63,76,0.30429396029257644],[115,63,77,0.31091281171354634],[115,63,78,0.3175648232946808],[115,63,79,0.3242461043278608],[115,64,64,0.2286607868714558],[115,64,65,0.2368076696112763],[115,64,66,0.24453458735787953],[115,64,67,0.2519554276111734],[115,64,68,0.2590973398056045],[115,64,69,0.26602074711924056],[115,64,70,0.27277980983941863],[115,64,71,0.2794216932747063],[115,64,72,0.28598671761179206],[115,64,73,0.2925085237629543],[115,64,74,0.29901425472112086],[115,64,75,0.3055247518972154],[115,64,76,0.31205476587494835],[115,64,77,0.3186131809811484],[115,64,78,0.32520325303387276],[115,64,79,0.331822859597744],[115,65,64,0.23412934809150662],[115,65,65,0.2434650463932398],[115,65,66,0.25207013745384127],[115,65,67,0.25950871369697526],[115,65,68,0.266660781957859],[115,65,69,0.2735854246996422],[115,65,70,0.28033601457123464],[115,65,71,0.2869594546258065],[115,65,72,0.2934962626282292],[115,65,73,0.29998067252529415],[115,65,74,0.3064407527362751],[115,65,75,0.3128985408722862],[115,65,76,0.3193701944461069],[115,65,77,0.3258661570893644],[115,65,78,0.33239133974997753],[115,65,79,0.33894531630142394],[115,66,64,0.23941591229958809],[115,66,65,0.24881185261154679],[115,66,66,0.25831580937013215],[115,66,67,0.2665716922704334],[115,66,68,0.2737342763351403],[115,66,69,0.2806611795287174],[115,66,70,0.2874048857280121],[115,66,71,0.2940119014662178],[115,66,72,0.30052278395753823],[115,66,73,0.3069721868122033],[115,66,74,0.3133889232232413],[115,66,75,0.3197960463526049],[115,66,76,0.3262109465922948],[115,66,77,0.3326454653257269],[115,66,78,0.3391060247645336],[115,66,79,0.3455937733881381],[115,67,64,0.2445394178161801],[115,67,65,0.2539831117508618],[115,67,66,0.26354317819044754],[115,67,67,0.2731104811276091],[115,67,68,0.28028388972015034],[115,67,69,0.2872142639559373],[115,67,70,0.29395312925132017],[115,67,71,0.3005464834376487],[115,67,72,0.3070347778238695],[115,67,73,0.31345291595582103],[115,67,74,0.3198302699597219],[115,67,75,0.32619071430063407],[115,67,76,0.3325526767313806],[115,67,77,0.33892920615321115],[115,67,78,0.34532805705524544],[115,67,79,0.35175179014718466],[115,68,64,0.24950700573436785],[115,68,65,0.2589867420306775],[115,68,66,0.2685899265035485],[115,68,67,0.27832656617513546],[115,68,68,0.28628730189872664],[115,68,69,0.29322209945237454],[115,68,70,0.29995812110455905],[115,68,71,0.3065407633923988],[115,68,72,0.31301024065957894],[115,68,73,0.3194015451388217],[115,68,74,0.3257444243511199],[115,68,75,0.33206337573993544],[115,68,76,0.33837765840133754],[115,68,77,0.3447013217145509],[115,68,78,0.3510432506203697],[115,68,79,0.3574072272392052],[115,69,64,0.25431110540857],[115,69,65,0.26381621972372377],[115,69,66,0.2734505937937416],[115,69,67,0.2832229736245586],[115,69,68,0.29173663707116965],[115,69,69,0.29867605033789024],[115,69,70,0.3054106057719712],[115,69,71,0.3119850206190759],[115,69,72,0.3184391556656253],[115,69,73,0.3248079435818748],[115,69,74,0.3311213341313761],[115,69,75,0.33740425623874315],[115,69,76,0.34367659684939644],[115,69,77,0.3499531964570416],[115,69,78,0.35624386111588774],[115,69,79,0.36255339069677195],[115,70,64,0.25892346806470945],[115,70,65,0.26844351049154724],[115,70,66,0.2780974367707456],[115,70,67,0.2878926287009251],[115,70,68,0.2966489654166683],[115,70,69,0.303592963377318],[115,70,70,0.3103271525684872],[115,70,71,0.31689546289839426],[115,70,72,0.3233372647296591],[115,70,73,0.3296872711395192],[115,70,74,0.33597545648316984],[115,70,75,0.3422269913146749],[115,70,76,0.3484621936612637],[115,70,77,0.3546964965882197],[115,70,78,0.3609404319318052],[115,70,79,0.367199630018475],[115,71,64,0.263299255374165],[115,71,65,0.27282093721093487],[115,71,66,0.28247991945689455],[115,71,67,0.2922821069990198],[115,71,68,0.30107166030234717],[115,71,69,0.3080228377472892],[115,71,70,0.31475999726239895],[115,71,71,0.32132603979470237],[115,71,72,0.327759596342689],[115,71,73,0.3340949110869388],[115,71,74,0.3403617397566912],[115,71,75,0.3465852633361131],[115,71,76,0.35278601715666197],[115,71,77,0.3589798353642984],[115,71,78,0.3651778106911845],[115,71,79,0.37138626940261665],[115,72,64,0.2674016387512224],[115,72,65,0.2769088632355455],[115,72,66,0.2865555670343883],[115,72,67,0.29634608622705044],[115,72,68,0.30504528092722033],[115,72,69,0.3120088606069406],[115,72,70,0.31875462143157623],[115,72,71,0.3253240827355899],[115,72,72,0.3317547914299684],[115,72,73,0.338080194810083],[115,72,74,0.3443295266326718],[115,72,75,0.350527706598036],[115,72,76,0.35669525332016916],[115,72,77,0.36284821081350427],[115,72,78,0.36899808846913557],[115,72,79,0.37515181443732487],[115,73,64,0.27120296610878925],[115,73,65,0.28067755184224596],[115,73,66,0.2902925534329215],[115,73,67,0.30005067495977655],[115,73,68,0.30859953552094005],[115,73,69,0.31558267024112535],[115,73,70,0.3223443702307112],[115,73,71,0.3289243538906981],[115,73,72,0.33535867996623187],[115,73,73,0.34167962057822054],[115,73,74,0.34791554435854605],[115,73,75,0.35409080983616814],[115,73,76,0.36022566917547544],[115,73,77,0.36633618232128323],[115,73,78,0.3724341415556844],[115,73,79,0.37852700642206827],[115,74,64,0.27468182666411195],[115,74,65,0.28410419099569806],[115,74,66,0.29366669270614343],[115,74,67,0.3033703758255164],[115,74,68,0.31175635863020984],[115,74,69,0.31876743147805137],[115,74,70,0.32555349905912867],[115,74,71,0.3321520316515411],[115,74,72,0.33859716896965186],[115,74,73,0.3449196054888781],[115,74,74,0.35114648129975623],[115,74,75,0.3573012786243573],[115,74,76,0.3634037240936845],[115,74,77,0.3694696968488016],[115,74,78,0.3755111424898014],[115,74,79,0.3815359928567818],[115,75,64,0.2778202099799734],[115,75,65,0.2871700105123153],[115,75,66,0.2966585204504757],[115,75,67,0.3062851359958322],[115,75,68,0.3145329033004193],[115,75,69,0.32158083046137104],[115,75,70,0.3284001454747454],[115,75,71,0.3350256289069295],[115,75,72,0.34148907262114064],[115,75,73,0.3478191906795042],[115,75,74,0.35404152966222396],[115,75,75,0.3601783784932786],[115,75,76,0.3662486778435658],[115,75,77,0.3722679291619429],[115,75,78,0.37824810336079845],[115,75,79,0.3841975491569227],[115,76,64,0.2806007643941098],[115,76,65,0.28985749682690937],[115,76,66,0.2992504705001627],[115,76,67,0.30877749022560586],[115,76,68,0.3169444429186057],[115,76,69,0.3240379836035868],[115,76,70,0.3308992213045178],[115,76,71,0.3375598392625454],[115,76,72,0.34404887993893796],[115,76,73,0.3503926956053111],[115,76,74,0.3566148906447937],[115,76,75,0.3627362555771242],[115,76,76,0.3687746928226442],[115,76,77,0.37474513421960265],[115,76,78,0.3806594503046186],[115,76,79,0.38652635135867425],[115,77,64,0.2830041600608181],[115,77,65,0.2921477106498767],[115,77,66,0.301424152230841],[115,77,67,0.3108298018039266],[115,77,68,0.3190071773565],[115,77,69,0.3261542554054998],[115,77,70,0.33306521974494696],[115,77,71,0.3397683061823449],[115,77,72,0.34628945525436605],[115,77,73,0.35265231698690047],[115,77,74,0.35887823807464525],[115,77,75,0.36498623138141884],[115,77,76,0.37099292768939407],[115,77,77,0.37691250964930734],[115,77,78,0.3827566279027831],[115,77,79,0.38853429936311357],[115,78,64,0.28500656187050966],[115,78,65,0.2940177128576222],[115,78,66,0.3031577338724945],[115,78,67,0.31242160685906845],[115,78,68,0.32074093795475944],[115,78,69,0.32794797971360273],[115,78,70,0.3349149321179516],[115,78,71,0.3416663098858126],[115,78,72,0.348224666575983],[115,78,73,0.35461066785843254],[115,78,74,0.36084313639285265],[115,78,75,0.36693906806793586],[115,78,76,0.3729136194103298],[115,78,77,0.37878006602480563],[115,78,78,0.38454973197413284],[115,78,79,0.39023189004916775],[115,79,64,0.28659675157545345],[115,79,65,0.2954574503233548],[115,79,66,0.30444236383083634],[115,79,67,0.3135453207327477],[115,79,68,0.3221544706610536],[115,79,69,0.3294269602203975],[115,79,70,0.33645539542722286],[115,79,71,0.3432603672656304],[115,79,72,0.3498608129210674],[115,79,73,0.35627417249834786],[115,79,74,0.3625165050956825],[115,79,75,0.3686025637989442],[115,79,76,0.3745458292503525],[115,79,77,0.38035850153121237],[115,79,78,0.38605145017727904],[115,79,79,0.3916341222181498],[115,80,64,0.2878292168406521],[115,80,65,0.2965223043710844],[115,80,66,0.305333562787511],[115,80,67,0.3142557997768071],[115,80,68,0.32319846418348697],[115,80,69,0.33054470786615553],[115,80,70,0.33764398663254064],[115,80,71,0.34451277341586556],[115,80,72,0.3511661285141368],[115,80,73,0.35761795943410796],[115,80,74,0.3638812263945705],[115,80,75,0.3699680928137561],[115,80,76,0.37589002023362506],[115,80,77,0.3816578072566537],[115,80,78,0.3872815721861316],[115,80,79,0.3927706791690801],[115,81,64,0.2887590325713602],[115,81,65,0.29726859591244653],[115,81,66,0.3058881796393529],[115,81,67,0.3146096504132276],[115,81,68,0.32340980492700255],[115,81,69,0.33125363177735595],[115,81,70,0.3384364927270317],[115,81,71,0.34538372278200824],[115,81,72,0.35210622105721745],[115,81,73,0.3586139980842624],[115,81,74,0.36491649324616754],[115,81,75,0.37102282178822954],[115,81,76,0.37694195059957736],[115,81,77,0.3826828021249825],[115,81,78,0.3882542859231114],[115,81,79,0.3936652575355572],[115,82,64,0.28942354146325827],[115,82,65,0.2977353775972397],[115,82,66,0.306146518181141],[115,82,67,0.3146479331970568],[115,82,68,0.323218083365741],[115,82,69,0.33152037713795085],[115,82,70,0.33880111085683506],[115,82,71,0.3458437386266632],[115,82,72,0.3526547212462777],[115,82,73,0.35923978881184304],[115,82,74,0.3656043951499514],[115,82,75,0.3717540850402423],[115,82,76,0.3776947731006245],[115,82,77,0.3834329334198983],[115,82,78,0.3889756992252403],[115,82,79,0.39433087206502476],[115,83,64,0.2898448196371399],[115,83,65,0.2979468041609131],[115,83,66,0.3061345800050686],[115,83,67,0.31439824267102223],[115,83,68,0.32271770566831853],[115,83,69,0.33107206166597547],[115,83,70,0.33871705710811767],[115,83,71,0.3458725549982171],[115,83,72,0.35279245179525914],[115,83,73,0.3594778267047171],[115,83,74,0.3659296781668679],[115,83,75,0.37214943615527585],[115,83,76,0.3781393677366442],[115,83,77,0.38390287463989753],[115,83,78,0.3894446818355129],[115,83,79,0.39477091636859457],[115,84,64,0.2895208543891652],[115,84,65,0.29791441484924586],[115,84,66,0.3058662239133553],[115,84,67,0.31387670956866787],[115,84,68,0.3219269734569417],[115,84,69,0.3299994057617057],[115,84,70,0.33807964302636023],[115,84,71,0.3454580488603804],[115,84,72,0.35250664060934384],[115,84,73,0.35931510470314987],[115,84,74,0.365879540933878],[115,84,75,0.372196733880572],[115,84,76,0.37826470876421964],[115,84,77,0.38408315941789795],[115,84,78,0.3896537470278323],[115,84,79,0.3949802685971927],[115,85,64,0.2879436217568916],[115,85,65,0.2967062042953732],[115,85,66,0.3052415857668949],[115,85,67,0.31308991938696196],[115,85,68,0.3208553570877275],[115,85,69,0.3286267996336626],[115,85,70,0.33639375233210433],[115,85,71,0.34414864842868836],[115,85,72,0.3517901795710016],[115,85,73,0.3587426570220014],[115,85,74,0.36544346710500436],[115,85,75,0.37188426221441423],[115,85,76,0.37805826542897636],[115,85,77,0.3839608505137126],[115,85,78,0.38958997148280095],[115,85,79,0.39494644032957843],[115,86,64,0.2859106832450566],[115,86,65,0.29471570562652194],[115,86,66,0.30331467660730144],[115,86,67,0.3117096648878074],[115,86,68,0.31950515029917204],[115,86,69,0.32696014365622117],[115,86,70,0.3343948071520914],[115,86,71,0.3418060629237923],[115,86,72,0.34919319293471496],[115,86,73,0.35655651468135924],[115,86,74,0.36389621469403227],[115,86,75,0.37120088512295485],[115,86,76,0.3775064363099929],[115,86,77,0.3835202432611027],[115,86,78,0.3892359523371911],[115,86,79,0.3946507671953468],[115,87,64,0.283451335499948],[115,87,65,0.2922896814577679],[115,87,66,0.30094510061971086],[115,87,67,0.3094206317690889],[115,87,68,0.3177223580966462],[115,87,69,0.3250002440345827],[115,87,70,0.33208799999574506],[115,87,71,0.3391375473294355],[115,87,72,0.3461532790188979],[115,87,73,0.35314114575288635],[115,87,74,0.3601072371337806],[115,87,75,0.36705654475360805],[115,87,76,0.37399191083389616],[115,87,77,0.38091316562664673],[115,87,78,0.38781645628478534],[115,87,79,0.39406963983213567],[115,88,64,0.28060077568343916],[115,88,65,0.28946118588604525],[115,88,66,0.29816331048506045],[115,88,67,0.3067111485036516],[115,88,68,0.31511106275745315],[115,88,69,0.3227441085064369],[115,88,70,0.32947517525650877],[115,88,71,0.33615010865917416],[115,88,72,0.3427783155011702],[115,88,73,0.34937141041459446],[115,88,74,0.3559415306780447],[115,88,75,0.3624998533976674],[115,88,76,0.36905531943579234],[115,88,77,0.37561356789336964],[115,88,78,0.38217608440059603],[115,88,79,0.3887395659329584],[115,89,64,0.2773982673629371],[115,89,65,0.28626749221187847],[115,89,66,0.2950040723594594],[115,89,67,0.30361295109660147],[115,89,68,0.3121011222421594],[115,89,69,0.3201861604137691],[115,89,70,0.3265558407056593],[115,89,71,0.3328487725161982],[115,89,72,0.33907919932865344],[115,89,73,0.3452643356345337],[115,89,74,0.3514224058345486],[115,89,75,0.3575709056884891],[115,89,76,0.3637250913852033],[115,89,77,0.3698967006799724],[115,89,78,0.37609290993214267],[115,89,79,0.38231553027622434],[115,90,64,0.2738854239943252],[115,90,65,0.2827484460561587],[115,90,66,0.2915049120202552],[115,90,67,0.3001606879693812],[115,90,68,0.30872373047107693],[115,90,69,0.3171908248641466],[115,90,70,0.3233281045372631],[115,90,71,0.3292373049017061],[115,90,72,0.33506579792176033],[115,90,73,0.3408362406131542],[115,90,74,0.34657287712155754],[115,90,75,0.3522995392612257],[115,90,76,0.3580378949419701],[115,90,77,0.363805949594342],[115,90,78,0.3696168050271043],[115,90,79,0.3754776794900591],[115,91,64,0.2701046131796476],[115,91,65,0.27894493533732573],[115,91,66,0.28770467248534165],[115,91,67,0.2963905876119671],[115,91,68,0.3050119025391811],[115,91,69,0.31356589990281347],[115,91,70,0.31978953583474795],[115,91,71,0.3253188673597252],[115,91,72,0.330747378813815],[115,91,73,0.3361029240478518],[115,91,74,0.3414155950134148],[115,91,75,0.346715461017788],[115,91,76,0.35203057525610343],[115,91,77,0.3573852544033486],[115,91,78,0.3627986363139473],[115,91,79,0.36828352015631044],[115,92,64,0.2660974845936736],[115,92,65,0.2748974799649209],[115,92,66,0.28364218588019324],[115,92,67,0.2923392330884004],[115,92,68,0.3009993737471138],[115,92,69,0.30962087229180574],[115,92,70,0.315937946505306],[115,92,71,0.3210966038140927],[115,92,72,0.3261329805538013],[115,92,73,0.3310798011736126],[115,92,74,0.33597273478137796],[115,92,75,0.34084787752521817],[115,92,76,0.3457395205135209],[115,92,77,0.3506782097274944],[115,92,78,0.3556891035894144],[115,92,79,0.3607906330730448],[115,93,64,0.26190362420557295],[115,93,65,0.2706449438459642],[115,93,66,0.27935506207947786],[115,93,67,0.2880424458065021],[115,93,68,0.29671959867392245],[115,93,69,0.30538619527027383],[115,93,70,0.31177209289214014],[115,93,71,0.31657415759020396],[115,93,72,0.3212317236746425],[115,93,73,0.325781989711471],[115,93,74,0.3302658417020028],[115,93,75,0.33472508758168823],[115,93,76,0.3391999941780119],[115,93,77,0.34372713374049685],[115,93,78,0.3483375463126553],[115,93,79,0.35305522338652867],[115,94,64,0.25755933717249385],[115,94,65,0.2662233715588012],[115,94,66,0.2748785964192125],[115,94,67,0.2835342807464014],[115,94,68,0.2922048523406771],[115,94,69,0.30089175890671405],[115,94,70,0.30729229542716846],[115,94,71,0.31175611724162555],[115,94,72,0.31605306063098376],[115,94,73,0.32022434393201793],[115,94,74,0.3243156321554323],[115,94,75,0.32837403679150357],[115,94,76,0.3324454334856525],[115,94,77,0.3365721053326824],[115,94,78,0.34079071864758176],[115,94,79,0.3451306371934803],[115,95,64,0.25309656155028154],[115,95,65,0.26166495182449384],[115,95,66,0.2702447985608752],[115,95,67,0.2788461351415235],[115,95,68,0.28748543533004906],[115,95,69,0.2961662120315387],[115,95,70,0.30250097482972527],[115,95,71,0.3066483899212211],[115,95,72,0.31060696370580926],[115,95,73,0.31442143611225915],[115,95,74,0.31814175018321744],[115,95,75,0.32181983401513414],[115,95,76,0.32550671435163897],[115,95,77,0.32924997018216584],[115,95,78,0.3330915337641805],[115,95,79,0.337065845566929],[115,96,64,0.2485419147513432],[115,96,65,0.2569971096968876],[115,96,66,0.2654815443891179],[115,96,67,0.27400597241835695],[115,96,68,0.28258898455525616],[115,96,69,0.29123637906302824],[115,96,70,0.2974031034899503],[115,96,71,0.30125850114779334],[115,96,72,0.3049040499739855],[115,96,73,0.3083874847301172],[115,96,74,0.3117624791190077],[115,96,75,0.3150852295827742],[115,96,76,0.3184113828523858],[115,96,77,0.32179331616315515],[115,96,78,0.32527777807990993],[115,96,79,0.32890389691734384],[115,97,64,0.2439158744795349],[115,97,65,0.25224172919800414],[115,97,66,0.2606118526385541],[115,97,67,0.2690376630265626],[115,97,68,0.27753989121140354],[115,97,69,0.2861267731274555],[115,97,70,0.2920065707992421],[115,97,71,0.2955958199225995],[115,97,72,0.29895564249305434],[115,97,73,0.3021362288017901],[115,97,74,0.30519440794545055],[115,97,75,0.30819005517999415],[115,97,76,0.3111828534473353],[115,97,77,0.3142294185058591],[115,97,78,0.3173807960933726],[115,97,79,0.32068033856041583],[115,98,64,0.23923209568719503],[115,98,65,0.2474145079457488],[115,98,66,0.25565328777303353],[115,98,67,0.26396044362940124],[115,98,68,0.2723588272939618],[115,98,69,0.28085920674156095],[115,98,70,0.2863224613065128],[115,98,71,0.2896717082475783],[115,98,72,0.29277376696939045],[115,98,73,0.2956807478250558],[115,98,74,0.2984520520689394],[115,98,75,0.3011506253336463],[115,98,76,0.3038395741072131],[115,98,77,0.30657915510928685],[115,98,78,0.3094241464360398],[115,98,79,0.31242160832583515],[115,99,64,0.23449686492746138],[115,99,65,0.24252444515338611],[115,99,66,0.2506174904800815],[115,99,67,0.2587884959732145],[115,99,68,0.26706238193002524],[115,99,69,0.2754525012008739],[115,99,70,0.2803652446860924],[115,99,71,0.2834995941865993],[115,99,72,0.28637108321886845],[115,99,73,0.2890332268439348],[115,99,74,0.2915474282377277],[115,99,75,0.29397910044240266],[115,99,76,0.2963941585153044],[115,99,77,0.2988558923934106],[115,99,78,0.30142222974044447],[115,99,79,0.304143397003951],[115,100,64,0.2297086933168013],[115,100,65,0.23757346422598324],[115,100,66,0.2455098369950682],[115,100,67,0.2535306466152559],[115,100,68,0.2616628086397025],[115,100,69,0.26992229570242177],[115,100,70,0.2741528766038397],[115,100,71,0.2770949676953883],[115,100,72,0.27976075080835344],[115,100,73,0.2822046661997949],[115,100,74,0.28448958336131347],[115,100,75,0.2866828113121028],[115,100,76,0.28885248550868853],[115,100,77,0.2910643420636975],[115,100,78,0.2933788888979554],[115,100,79,0.29584898239236795],[115,101,64,0.22485780916088557],[115,101,65,0.23255555865613886],[115,101,66,0.24032823639927003],[115,101,67,0.24818881362946932],[115,101,68,0.2561661207315802],[115,101,69,0.2642787955899599],[115,101,70,0.26770937660964234],[115,101,71,0.2704782739806606],[115,101,72,0.27295960829046095],[115,101,73,0.2752083072491863],[115,101,74,0.27728821782175606],[115,101,75,0.27926802246303284],[115,101,76,0.2812175372834432],[115,101,77,0.28320440317389095],[115,101,78,0.28529117983673735],[115,101,79,0.2875328515973135],[115,102,64,0.21992609782957384],[115,102,65,0.22745248952656127],[115,102,66,0.23505449293448247],[115,102,67,0.24274498775774508],[115,102,68,0.25055461569691484],[115,102,69,0.25813883806049626],[115,102,70,0.2610915480201742],[115,102,71,0.26370637713977146],[115,102,72,0.2660243665070578],[115,102,73,0.26810044471150835],[115,102,74,0.2699988976830604],[115,102,75,0.27178921195215877],[115,102,76,0.27354230373921995],[115,102,77,0.2753271451887492],[115,102,78,0.2772077979719426],[115,102,79,0.27924086339951687],[115,103,64,0.2148974743003788],[115,103,65,0.2222456867180262],[115,103,66,0.2296677200912659],[115,103,67,0.23717615121044627],[115,103,68,0.24480328515596514],[115,103,69,0.2515429970533569],[115,103,70,0.25436973940599794],[115,103,71,0.2568520842235957],[115,103,72,0.25903007740805],[115,103,73,0.260958075223304],[115,103,74,0.2627001685104453],[115,103,75,0.26432598167635185],[115,103,76,0.2659068590784333],[115,103,77,0.2675124503332774],[115,103,78,0.26920770498332147],[115,103,79,0.2710502858707915],[115,104,64,0.209763347980539],[115,104,65,0.21692476322304588],[115,104,66,0.2241559467729373],[115,104,67,0.23146899182344027],[115,104,68,0.23889767029094744],[115,104,69,0.2448816976938909],[115,104,70,0.24760356010562742],[115,104,71,0.24997664658897553],[115,104,72,0.25203949507085227],[115,104,73,0.2538452678376267],[115,104,74,0.25545716781674926],[115,104,75,0.25694422805118766],[115,104,76,0.25837748710114633],[115,104,77,0.25982656201978],[115,104,78,0.26135662946241095],[115,104,79,0.2630258244098766],[115,105,64,0.20452360318681545],[115,105,65,0.2114884741047821],[115,105,66,0.2185170499739744],[115,105,67,0.22562080058483708],[115,105,68,0.23283471811395956],[115,105,69,0.23820208317366015],[115,105,70,0.24084108378319968],[115,105,71,0.24312898562713828],[115,105,72,0.24510230868647304],[115,105,73,0.2468123867320315],[115,105,74,0.2483208182414801],[115,105,75,0.2496952855232878],[115,105,76,0.25100575477481385],[115,105,77,0.2523210687308876],[115,105,78,0.2537059424885576],[115,105,79,0.2552183720307057],[115,106,64,0.19918795217527271],[115,106,65,0.20594598445841975],[115,106,66,0.21275992933185603],[115,106,67,0.2196405407522069],[115,106,68,0.2266237350407021],[115,106,69,0.23153973138101752],[115,106,70,0.2341181173140687],[115,106,71,0.23634507288875709],[115,106,72,0.23825462239246603],[115,106,73,0.2398956549678657],[115,106,74,0.2413274558178545],[115,106,75,0.24261559695194077],[115,106,76,0.24382820006295572],[115,106,77,0.24503258307979475],[115,106,78,0.24629230089834092],[115,106,79,0.24766458975625447],[115,107,64,0.19377772979304572],[115,107,65,0.20031857622256602],[115,107,66,0.20690611519798768],[115,107,67,0.21355034249835744],[115,107,68,0.2202877548255793],[115,107,69,0.22491740532065246],[115,107,70,0.22745708856970095],[115,107,71,0.22964695311153513],[115,107,72,0.23151810666932032],[115,107,73,0.23311642300027907],[115,107,74,0.23449820041187225],[115,107,75,0.23572616738584887],[115,107,76,0.23686584762308574],[115,107,77,0.23798229581731967],[115,107,78,0.23913721446028616],[115,107,79,0.2403864609815485],[115,108,64,0.1883281318892917],[115,108,65,0.19464179611439375],[115,108,66,0.20099181262920396],[115,108,67,0.2073874256065372],[115,108,68,0.21386532348390336],[115,108,69,0.21834340033096522],[115,108,70,0.2208655503527321],[115,108,71,0.22304140740303002],[115,108,72,0.2248988186085661],[115,108,73,0.22648013936333836],[115,108,74,0.2278380659396916],[115,108,75,0.2290317990923793],[115,108,76,0.23012355055313358],[115,108,77,0.23117540335725217],[115,108,78,0.23224653598653927],[115,108,79,0.23339081936138872],[115,109,64,0.18289085305741568],[115,109,65,0.18896799980008838],[115,109,66,0.19507033595176193],[115,109,67,0.20120640440962848],[115,109,68,0.207412654936384],[115,109,69,0.2118094364933794],[115,109,70,0.2143342482968873],[115,109,71,0.21651820386868928],[115,109,72,0.2183856378815507],[115,109,73,0.2199749699697184],[115,109,74,0.22133475649118287],[115,109,75,0.22252005373821654],[115,109,76,0.22358910394192852],[115,109,77,0.22460035451907728],[115,109,78,0.22560982011036135],[115,109,79,0.22666879606522433],[115,110,64,0.17752724228179728],[115,110,65,0.18335928488940545],[115,110,66,0.1892048021941427],[115,110,67,0.19507172090519415],[115,110,68,0.2009957831105243],[115,110,69,0.2052775997962895],[115,110,70,0.2078241410746399],[115,110,71,0.21003721179298385],[115,110,72,0.21193748554001401],[115,110,73,0.21355912771259955],[115,110,74,0.21494610841252498],[115,110,75,0.21614880422302624],[115,110,76,0.2172208995305503],[115,110,77,0.21821659722666556],[115,110,78,0.21918814779274576],[115,110,79,0.22018370494183154],[115,111,64,0.17229340852904282],[115,111,65,0.17787251654245337],[115,111,66,0.18345289139168738],[115,111,67,0.1890419375240342],[115,111,68,0.1946741812242473],[115,111,69,0.19867174375388075],[115,111,70,0.20125855872140683],[115,111,71,0.2035214834482994],[115,111,72,0.2054774687612978],[115,111,73,0.20715618817695985],[115,111,74,0.20859665071764957],[115,111,75,0.20984407751238238],[115,111,76,0.21094705204864936],[115,111,77,0.21195495318499732],[115,111,78,0.21291567927581792],[115,111,79,0.2138736710048859],[115,112,64,0.16722713412457316],[115,112,65,0.17254707499496957],[115,112,66,0.17785502108825202],[115,112,67,0.183157902836273],[115,112,68,0.18848848109273458],[115,112,69,0.19193256659308996],[115,112,70,0.19457996434542993],[115,112,71,0.19691601197687159],[115,112,72,0.19895388065732675],[115,112,73,0.20071850312609713],[115,112,74,0.20224352481439858],[115,112,75,0.2035684915237429],[115,112,76,0.20473628261152554],[115,112,77,0.20579079795922453],[115,112,78,0.20677490632068474],[115,112,79,0.20772866197283546],[115,113,64,0.16234256474268013],[115,113,65,0.16739920770406083],[115,113,66,0.1724290426257599],[115,113,67,0.17743853567417106],[115,113,68,0.18200362753054133],[115,113,69,0.18502379397323732],[115,113,70,0.18775285970688757],[115,113,71,0.1901866904562769],[115,113,72,0.19233462395779644],[115,113,73,0.19421659735154914],[115,113,74,0.1958604736525764],[115,113,75,0.19729957581284419],[115,113,76,0.19857043630113216],[115,113,77,0.19971076953769212],[115,113,78,0.20075767392843857],[115,113,79,0.2017460696537155],[115,114,64,0.15763516630850735],[115,114,65,0.16242674855657677],[115,114,66,0.16717488615368353],[115,114,67,0.1714779824682675],[115,114,68,0.1748265553738412],[115,114,69,0.17792656676604685],[115,114,70,0.18075754782638037],[115,114,71,0.1833132985461631],[115,114,72,0.18559929111961],[115,114,73,0.18763023557805242],[115,114,74,0.1894278154530596],[115,114,75,0.1910186007683287],[115,114,76,0.19243214516456042],[115,114,77,0.1936992734610038],[115,114,78,0.19485056545537435],[115,114,79,0.19591504126400916],[115,115,64,0.15273467356529144],[115,115,65,0.15665043860792777],[115,115,66,0.16041768066942685],[115,115,67,0.16402537061301023],[115,115,68,0.16744302824644905],[115,115,69,0.17063724180715772],[115,115,70,0.17358821200165875],[115,115,71,0.17628789411264373],[115,115,72,0.17873789785307037],[115,115,73,0.1809475210564476],[115,115,74,0.1829319236030246],[115,115,75,0.184710447583448],[115,115,76,0.18630508929716663],[115,115,77,0.18773912827482955],[115,115,78,0.18903591810504589],[115,115,79,0.1902178434390849],[115,116,64,0.1449781391438256],[115,116,65,0.14890841023342163],[115,116,66,0.15270932507102658],[115,116,67,0.15637049644338627],[115,116,68,0.159865494450105],[115,116,69,0.1631652265474612],[115,116,70,0.16625101709567136],[115,116,71,0.16911321557323186],[115,116,72,0.17174961638871267],[115,116,73,0.17416398391309051],[115,116,74,0.17636468767630104],[115,116,75,0.17836345236415452],[115,116,76,0.1801742269399586],[115,116,77,0.18181217690099177],[115,116,78,0.18329280336574458],[115,116,79,0.18463119237586753],[115,117,64,0.13704307972530297],[115,117,65,0.14098734082652145],[115,117,66,0.14482311414590596],[115,117,67,0.14854064219797558],[115,117,68,0.1521179431846552],[115,117,69,0.15553084922658666],[115,117,70,0.15876223451165092],[115,117,71,0.1618010961344886],[115,117,72,0.1646415093811633],[115,117,73,0.16728165984988255],[115,117,74,0.16972295585087643],[115,117,75,0.17196922431108355],[115,117,76,0.17402599318964365],[115,117,77,0.1758998631896963],[115,117,78,0.17759797133246766],[115,117,79,0.1791275487427409],[115,118,64,0.12897477464632437],[115,118,65,0.13292999207828038],[115,118,66,0.13679898779624589],[115,118,67,0.14057260069092092],[115,118,68,0.14423360541095823],[115,118,69,0.14776326606850343],[115,118,70,0.1511463921685009],[115,118,71,0.15437089101378237],[115,118,72,0.1574272652884854],[115,118,73,0.16030815975454263],[115,118,74,0.16300795898449905],[115,118,75,0.1655224379246236],[115,118,76,0.1678484669529943],[115,118,77,0.1699837729688204],[115,118,78,0.17192675792303586],[115,118,79,0.1736763760771491],[115,119,64,0.12082542295992363],[115,119,65,0.12478618357198942],[115,119,66,0.12868400546914005],[115,119,67,0.13251026674861252],[115,119,68,0.13625270471013892],[115,119,69,0.13989840688170072],[115,119,70,0.14343445069103264],[115,119,71,0.14684791865836247],[115,119,72,0.15012593600901442],[115,119,73,0.15325573074666082],[115,119,74,0.15622471659765882],[115,119,75,0.15902059919248507],[115,119,76,0.16163150580817662],[115,119,77,0.16404613895631093],[115,119,78,0.16625395406520202],[115,119,79,0.16824536147306177],[115,120,64,0.11265151992730373],[115,120,65,0.11661023584876058],[115,120,66,0.12052988059377236],[115,120,67,0.12440229000222877],[115,120,68,0.12822025905351175],[115,120,69,0.13197695985852043],[115,120,70,0.13566200645626453],[115,120,71,0.13926191641796348],[115,120,72,0.14276067701833584],[115,120,73,0.14614030866411243],[115,120,74,0.14938142451085173],[115,120,75,0.15246378523500906],[115,120,76,0.15536684796881017],[115,120,77,0.15807030845071657],[115,120,78,0.1605546354945026],[115,120,79,0.1628015969350018],[115,121,64,0.10451130018894406],[115,121,65,0.10845847557537655],[115,121,66,0.11239057072310633],[115,121,67,0.1162997747461325],[115,121,68,0.12018391901804973],[115,121,69,0.12404238090326951],[115,121,70,0.1278675065905575],[115,121,71,0.1316454955028743],[115,121,72,0.13535747455014666],[115,121,73,0.13898054622359018],[115,121,74,0.14248880804249955],[115,121,75,0.14585434097491037],[115,121,76,0.149048164571126],[115,121,77,0.15204115667331322],[115,121,78,0.15307020491937126],[115,121,79,0.15396065265720027],[115,122,64,0.09646227530039608],[115,122,65,0.10038683073418897],[115,122,66,0.10431995150953943],[115,122,67,0.10825405517168175],[115,122,68,0.11219187090472704],[115,122,69,0.11613895606103468],[115,122,70,0.12009050457113359],[115,122,71,0.12403262393084188],[115,122,72,0.1279438885445129],[115,122,73,0.13179684557222682],[115,122,74,0.1355594694550939],[115,122,75,0.1391965614712441],[115,122,76,0.1421064749666524],[115,122,77,0.14294802232113335],[115,122,78,0.14666973553961268],[115,122,79,0.15039134486694694],[115,123,64,0.08855887999373477],[115,123,65,0.09244853028526684],[115,123,66,0.09636958903288094],[115,123,67,0.10031456053749606],[115,123,68,0.10429081933536292],[115,123,69,0.10830993160846296],[115,123,70,0.1123699709499252],[115,123,71,0.11645715190937872],[115,123,72,0.1218470130023265],[115,123,73,0.12906784492450385],[115,123,74,0.13625413553698776],[115,123,75,0.14336460772326481],[115,123,76,0.1472747070713104],[115,123,77,0.15063739377151625],[115,123,78,0.15397631088500854],[115,123,79,0.15732782439793627],[115,124,64,0.08085018688758963],[115,124,65,0.08469186773699514],[115,124,66,0.08858656961731089],[115,124,67,0.09481256671315241],[115,124,68,0.10189660668369827],[115,124,69,0.10908625456022025],[115,124,70,0.11638111089889512],[115,124,71,0.12376678569662652],[115,124,72,0.1312172688435205],[115,124,73,0.1386972196894948],[115,124,74,0.14616416956003236],[115,124,75,0.15230643945613304],[115,124,76,0.1553699047534774],[115,124,77,0.15836687192081275],[115,124,78,0.1613429061947819],[115,124,79,0.1643417952838627],[115,125,64,0.08273173979075385],[115,125,65,0.08957508730657168],[115,125,66,0.09652755684436552],[115,125,67,0.1035785236740052],[115,125,68,0.1107411653629496],[115,125,69,0.11803616594562986],[115,125,70,0.1254657339166378],[115,125,71,0.13301579669878696],[115,125,72,0.1406587215637014],[115,125,73,0.14835594167420982],[115,125,74,0.1560604801141927],[115,125,75,0.16073659674562765],[115,125,76,0.1634687731724607],[115,125,77,0.16612881398443882],[115,125,78,0.16876906979080647],[115,125,79,0.17144004457953874],[115,126,64,0.0917128765183604],[115,126,65,0.09855408591984792],[115,126,66,0.10552054810834557],[115,126,67,0.11260114996430748],[115,126,68,0.11981229196923883],[115,126,69,0.12717928947194035],[115,126,70,0.13470676265564335],[115,126,71,0.14238105627963918],[115,126,72,0.15017325887163388],[115,126,73,0.15804211563774084],[115,126,74,0.16593682713431893],[115,126,75,0.16911941586091012],[115,126,76,0.17155539532897798],[115,126,77,0.17391299036891741],[115,126,78,0.1762504817659703],[115,126,79,0.1786242754920868],[115,127,64,0.10102617327137824],[115,127,65,0.1078428871815595],[115,127,66,0.11479869595368473],[115,127,67,0.12188183167867578],[115,127,68,0.12911134536259955],[115,127,69,0.13651656752224767],[115,127,70,0.14410427847868],[115,127,71,0.15186130660730404],[115,127,72,0.15975779200146026],[115,127,73,0.1677503349630797],[115,127,74,0.17510768547387504],[115,127,75,0.1774341047664119],[115,127,76,0.17961269637330013],[115,127,77,0.18170636302890888],[115,127,78,0.18377839120924377],[115,127,79,0.18589019831159873],[115,128,64,0.11065731124406498],[115,128,65,0.11742857102802702],[115,128,66,0.12435030069113494],[115,128,67,0.13140991021389847],[115,128,68,0.13862850666141727],[115,128,69,0.14603877984641375],[115,128,70,0.1536493845326939],[115,128,71,0.16144767178103997],[115,128,72,0.1694031439437277],[115,128,73,0.1774707879383693],[115,128,74,0.18354077584775388],[115,128,75,0.18566080390238604],[115,128,76,0.18762258430203335],[115,128,77,0.18949290242085304],[115,128,78,0.1913390957920103],[115,128,79,0.19322666521732954],[115,129,64,0.12057615078725534],[115,129,65,0.12728301975476977],[115,129,66,0.13414917570477378],[115,129,67,0.1411610380491945],[115,129,68,0.14834118844965602],[115,129,69,0.15572502766431748],[115,129,70,0.16332279309496583],[115,129,71,0.17112238111355504],[115,129,72,0.1790929434645158],[115,129,73,0.18718835746694673],[115,129,74,0.19182849946913785],[115,129,75,0.19378105597156287],[115,129,76,0.19556612346051272],[115,129,77,0.19725344329936564],[115,129,78,0.19891346409527674],[115,129,79,0.20061484947577327],[115,130,64,0.13073506989897854],[115,130,65,0.137361280054314],[115,130,66,0.14415303883798627],[115,130,67,0.15109560308689976],[115,130,68,0.15821250180634883],[115,130,69,0.16554126336359118],[115,130,70,0.17309344542949676],[115,130,71,0.18085751155917112],[115,130,72,0.1888025251450055],[115,130,73,0.19688171437279564],[115,130,74,0.19995741906743308],[115,130,75,0.20177830052689216],[115,130,76,0.2034237409579663],[115,130,77,0.20496557957518266],[115,130,78,0.20647650101506576],[115,130,79,0.2080274694907014],[115,131,64,0.1410673903828267],[115,131,65,0.14760000855825142],[115,131,66,0.15430198115441934],[115,131,67,0.1611572218180202],[115,131,68,0.16818978142957017],[115,131,69,0.17543886606019726],[115,131,70,0.1829171644062864],[115,131,71,0.19061374951266502],[115,131,72,0.19849783562608714],[115,131,73,0.20594839327106382],[115,131,74,0.20791918052053268],[115,131,75,0.20963839336946774],[115,131,76,0.2111754660915943],[115,131,77,0.21260359842699872],[115,131,78,0.2139969565418741],[115,131,79,0.2154280581097426],[115,132,64,0.1514858659012195],[115,132,65,0.15791596715539072],[115,132,66,0.16451697141476096],[115,132,67,0.17127125167179308],[115,132,68,0.1782031108920101],[115,132,69,0.1853531960997785],[115,132,70,0.19273526324978094],[115,132,71,0.20033908491823874],[115,132,72,0.20813424801392047],[115,132,73,0.21381465811522518],[115,132,74,0.21571141785827053],[115,132,75,0.21735028229274297],[115,132,76,0.21880134450416713],[115,132,77,0.22013860448279446],[115,132,78,0.2214371363799377],[115,132,79,0.22277044155723735],[115,133,64,0.16188021647355716],[115,133,65,0.16820215675975786],[115,133,66,0.1746945845315861],[115,133,67,0.18133809915388618],[115,133,68,0.18815714636941613],[115,133,69,0.19519381861787746],[115,133,70,0.20246303297750512],[115,133,71,0.2099554329261457],[115,133,72,0.21764121543727727],[115,133,73,0.22152368089106964],[115,133,74,0.2233572258323074],[115,133,75,0.2249274539963278],[115,133,76,0.22630473823048788],[115,133,77,0.22756348812794494],[115,133,78,0.2287792937690803],[115,133,79,0.23002625663311013],[115,134,64,0.17213471716462184],[115,134,65,0.17834356776510302],[115,134,66,0.1847208489829424],[115,134,67,0.19124512000854038],[115,134,68,0.19794093053368075],[115,134,69,0.20485195514961796],[115,134,70,0.2119944733997311],[115,134,71,0.219360252090666],[115,134,72,0.2269203908081727],[115,134,73,0.22913938428817657],[115,134,74,0.23091507541963827],[115,134,75,0.23242217237196278],[115,134,76,0.23373098723498045],[115,134,77,0.23491600692084574],[115,134,78,0.2360530216456368],[115,134,79,0.23721644142429552],[115,135,64,0.18215210697323483],[115,135,65,0.18824341433493733],[115,135,66,0.1944997491991423],[115,135,67,0.20089737456127707],[115,135,68,0.20746095024850836],[115,135,69,0.21423593524196868],[115,135,70,0.2212402275477681],[115,135,71,0.22846701184881624],[115,135,72,0.23465640505111718],[115,135,73,0.23671223816193562],[115,135,74,0.23843125437214338],[115,135,75,0.23987599739691695],[115,135,76,0.2411164049391349],[115,135,77,0.24222674915296],[115,135,78,0.24328275731228535],[115,135,79,0.24435892052418326],[115,136,64,0.19185492759117714],[115,136,65,0.19782477563269935],[115,136,66,0.20395516633323396],[115,136,67,0.21021985965459128],[115,136,68,0.2166436646580179],[115,136,69,0.2232740457357109],[115,136,70,0.23013078829941377],[115,136,71,0.23720879598779393],[115,136,72,0.2422723011852472],[115,136,73,0.24427482019281177],[115,136,74,0.24593494836102253],[115,136,75,0.24731438377674403],[115,136,76,0.24848240687449513],[115,136,77,0.24951282098130378],[115,136,78,0.25048107207704196],[115,136,79,0.25146155561720457],[115,137,64,0.20118513889238962],[115,137,65,0.20703014492990746],[115,137,66,0.21303035892215522],[115,137,67,0.21915690874128618],[115,137,68,0.22543481364613335],[115,137,69,0.23191374524369995],[115,137,70,0.23861562430295605],[115,137,71,0.24553735209465022],[115,137,72,0.24989789039654065],[115,137,73,0.2518429187827712],[115,137,74,0.25343935458483674],[115,137,75,0.2547477772805561],[115,137,76,0.25583656029190166],[115,137,77,0.2567788193080469],[115,137,78,0.2576495377174864],[115,137,79,0.2585228769732761],[115,138,64,0.2101041329903978],[115,138,65,0.21582137551525854],[115,138,66,0.22168783520492594],[115,138,67,0.22767197548959012],[115,138,68,0.233799098349471],[115,138,69,0.24012123517007458],[115,138,70,0.24666264236207147],[115,138,71,0.2534224525310585],[115,138,72,0.2575347244770195],[115,138,73,0.2594163862605929],[115,138,74,0.2609425849264744],[115,138,75,0.26217254400615747],[115,138,76,0.2631735136767893],[115,138,77,0.2640177344869111],[115,138,78,0.26477957490278625],[115,138,79,0.26553285044529806],[115,139,64,0.2185931486823782],[115,139,65,0.22418002525391129],[115,139,66,0.22990961896871726],[115,139,67,0.23574780278552862],[115,139,68,0.24172023561520561],[115,139,69,0.24788138915421148],[115,139,70,0.2542579881391641],[115,139,71,0.2608515687414882],[115,139,72,0.2651682146120877],[115,139,73,0.2669797407696654],[115,139,74,0.2684283571713906],[115,139,75,0.2695717312603817],[115,139,76,0.2704758050639209],[115,139,77,0.27121178199269463],[115,139,78,0.2718532829866626],[115,139,79,0.27247367969154396],[115,140,64,0.22665408808567913],[115,140,65,0.23210810162217127],[115,140,66,0.23769791075838226],[115,140,67,0.24338697897150988],[115,140,68,0.24920138823787058],[115,140,69,0.2551980427555555],[115,140,70,0.26140618695844003],[115,140,71,0.26782986062037983],[115,140,72,0.2727678397903623],[115,140,73,0.27450251529912345],[115,140,74,0.27586647288396454],[115,140,75,0.27691565881798874],[115,140,76,0.2777145481126022],[115,140,77,0.27833316224368726],[115,140,78,0.2788442506198297],[115,140,79,0.2793206433585115],[115,141,64,0.23431073728579965],[115,141,65,0.23962920904432217],[115,141,66,0.24507614627485],[115,141,67,0.25061288313797125],[115,141,68,0.2562659727750396],[115,141,69,0.2620946451502304],[115,141,70,0.26813062643479957],[115,141,71,0.27438048260058084],[115,141,72,0.28028706588809726],[115,141,73,0.28193935239217915],[115,141,74,0.28321308061151107],[115,141,75,0.28416233939135876],[115,141,76,0.28484999496478436],[115,141,77,0.28534474781679675],[115,141,78,0.2857183466654667],[115,141,79,0.2860429669761785],[115,142,64,0.24161039285244407],[115,142,65,0.2467901003840566],[115,142,66,0.25209045380133216],[115,142,67,0.2574710212859046],[115,142,68,0.2629588467300681],[115,142,69,0.2686152745861934],[115,142,70,0.27447438261912666],[115,142,71,0.2805452080799675],[115,142,72,0.2868152892120406],[115,142,73,0.2892298431227021],[115,142,74,0.29041072314484623],[115,142,75,0.29125772720141935],[115,142,76,0.2918319749619762],[115,142,77,0.29220069734038906],[115,142,78,0.2924344909344229],[115,142,79,0.29260472933516096],[115,143,64,0.24861095291682295],[115,143,65,0.2536480822896217],[115,143,66,0.2587974043968658],[115,143,67,0.2640171545073001],[115,143,68,0.2693348558542194],[115,143,69,0.2748136572517889],[115,143,70,0.2804897726993111],[115,143,71,0.28637458622086115],[115,143,72,0.292458097961852],[115,143,73,0.29630696977193244],[115,143,74,0.2973959373746223],[115,143,75,0.2981423939291811],[115,143,76,0.29860556850494335],[115,143,77,0.29885105415811664],[115,143,78,0.29894811169856866],[115,143,79,0.29896712193822633],[115,144,64,0.25532869228577093],[115,144,65,0.2602200489943119],[115,144,66,0.26521449240672024],[115,144,67,0.2702694437609468],[115,144,68,0.2754128893168066],[115,144,69,0.28070940449441395],[115,144,70,0.28619706413664026],[115,144,71,0.2918894234015482],[115,144,72,0.29777885560747863],[115,144,73,0.30312921319383607],[115,144,74,0.3041277026000405],[115,144,75,0.30477605317645406],[115,144,76,0.3051314701374994],[115,144,77,0.3052577441629537],[115,144,78,0.30522261370963255],[115,144,79,0.305095266699927],[115,145,64,0.2617676364811477],[115,145,65,0.26651090897126145],[115,145,66,0.2713475360484166],[115,145,67,0.27623471969975566],[115,145,68,0.28120089270753407],[115,145,69,0.2863116259605241],[115,145,70,0.2916065301041489],[115,145,71,0.29710111118690347],[115,145,72,0.30278998745475066],[115,145,73,0.308650020796815],[115,145,74,0.3105734112573417],[115,145,75,0.31112597913665163],[115,145,76,0.31137702369254316],[115,145,77,0.31138838195039004],[115,145,78,0.31122609145967717],[115,145,79,0.31095794991822434],[115,146,64,0.26793185355822824],[115,146,65,0.2725255125616834],[115,146,66,0.2772022027354355],[115,146,67,0.281919556372979],[115,146,68,0.28670643364957],[115,146,69,0.2916289268250266],[115,146,70,0.29672781529992],[115,146,71,0.3020202961613199],[115,146,72,0.3075030676297783],[115,146,73,0.31315533541679896],[115,146,74,0.3167027005280214],[115,146,75,0.31716177919197297],[115,146,76,0.3173119868438721],[115,146,77,0.3172130712722062],[115,146,78,0.3169292012204908],[115,146,79,0.31652659224362173],[115,147,64,0.273824988395739],[115,147,65,0.27826818252144137],[115,147,66,0.28278353846858134],[115,147,67,0.2873298007280931],[115,147,68,0.2919362336557779],[115,147,69,0.29666894677868993],[115,147,70,0.30156948914183174],[115,147,71,0.3066564563989334],[115,147,72,0.3119284295487721],[115,147,73,0.3173668452447734],[115,147,74,0.3224877654794595],[115,147,75,0.32285563388584143],[115,147,76,0.32290868427919545],[115,147,77,0.32270445801000547],[115,147,78,0.32230510102084786],[115,147,79,0.3217750638209524],[115,148,64,0.2794498778806216],[115,148,65,0.2837423273755798],[115,148,66,0.2880955810095049],[115,148,67,0.2924701866207503],[115,148,68,0.29689578482753587],[115,148,69,0.30143798309393444],[115,148,70,0.3061386805975136],[115,148,71,0.31101755500158657],[115,148,72,0.31607484644518746],[115,148,73,0.32129408208544885],[115,148,74,0.326644734440023],[115,148,75,0.32818250119737685],[115,148,76,0.328142142890758],[115,148,77,0.32783778532857155],[115,148,78,0.3273294151614185],[115,148,79,0.3266795482105914],[115,149,64,0.28480824719237335],[115,149,65,0.2889501377990638],[115,149,66,0.29314105706557986],[115,149,67,0.297344033572088],[115,149,68,0.30158905164410255],[115,149,69,0.3059406980219191],[115,149,70,0.3104407949015304],[115,149,71,0.3151097709478153],[115,149,72,0.3199492821791226],[115,149,73,0.3249447825963783],[115,149,74,0.33006803830744624],[115,149,75,0.33312028501983526],[115,149,76,0.33299020895538206],[115,149,77,0.33259095106547076],[115,149,78,0.33198022342318656],[115,149,79,0.33121845535895295],[115,150,64,0.2899004873905954],[115,150,65,0.2938923662390872],[115,150,66,0.2979211637106221],[115,150,67,0.301953030506144],[115,150,68,0.3060182580821177],[115,150,69,0.3101799107637243],[115,150,70,0.31447931240012755],[115,150,71,0.318937307483247],[115,150,72,0.3235567125403566],[115,150,73,0.32832472656215544],[115,150,74,0.33321529473553374],[115,150,75,0.33764996775602407],[115,150,76,0.33743364728317193],[115,150,77,0.336944567415602],[115,150,78,0.33623807512075987],[115,150,79,0.3353723838752419],[115,151,64,0.29472551451222284],[115,151,65,0.2985681899955567],[115,151,66,0.3024354342653891],[115,151,67,0.3062971046977317],[115,151,68,0.3101837603005889],[115,151,69,0.3141564742523355],[115,151,70,0.318255669756015],[115,151,71,0.32250227827341554],[115,151,72,0.32690001724590567],[115,151,73,0.3314376361203908],[115,151,74,0.33609112547653225],[115,151,75,0.3408258841852433],[115,151,76,0.34145622231921],[115,151,77,0.34088202297052655],[115,151,78,0.3400860281476255],[115,151,79,0.3391241328600579],[115,152,64,0.29928071039446663],[115,152,65,0.3029751579844356],[115,152,66,0.3066816888681325],[115,152,67,0.31037437616566854],[115,152,68,0.3140840051294127],[115,152,69,0.31786923698292613],[115,152,70,0.3217692237445378],[115,152,71,0.3258046715370309],[115,152,72,0.329979942828448],[115,152,73,0.3342851361047932],[115,152,74,0.3386981382988133],[115,152,75,0.34318664540912913],[115,152,76,0.34504476118838795],[115,152,77,0.3443895471754982],[115,152,78,0.34350971315938156],[115,152,79,0.34245876352482346],[115,153,64,0.3035619454530874],[115,153,65,0.3071092214208355],[115,153,66,0.3106560699759717],[115,153,67,0.31418119775495845],[115,153,68,0.31771557460633765],[115,153,69,0.3213150901338122],[115,153,70,0.32501729787533923],[115,153,71,0.3288423923783692],[115,153,72,0.33279513661055876],[115,153,73,0.3368667756675313],[115,153,74,0.3410369326235956],[115,153,75,0.34527548245860096],[115,153,76,0.3481891986769496],[115,153,77,0.3474562772690344],[115,153,78,0.34649742304012376],[115,153,79,0.34536371083600276],[115,154,64,0.3075636836649982],[115,154,65,0.3109648486768582],[115,154,66,0.31435316305431404],[115,154,67,0.31771228116624645],[115,154,68,0.32107331682016826],[115,154,69,0.32448910023129823],[115,154,70,0.32799531208220234],[115,154,71,0.33161138354357506],[115,154,72,0.33534225196334966],[115,154,73,0.3391801113443613],[115,154,74,0.3431061539646382],[115,154,75,0.3470922995600582],[115,154,76,0.35088260414733863],[115,154,77,0.35007432777263575],[115,154,78,0.34904022779854377],[115,154,79,0.34782894541677634],[115,155,64,0.31127917002907507],[115,155,65,0.3145352245929151],[115,155,66,0.3177662027336869],[115,155,67,0.32096090921129766],[115,155,68,0.32415056333662634],[115,155,69,0.32738472762816084],[115,155,70,0.3306969957378475],[115,155,71,0.33410582483703677],[115,155,72,0.3376161250565386],[115,155,73,0.34122085173147004],[115,155,74,0.34490259729275236],[115,155,75,0.34863517969258684],[115,155,76,0.3523852243095804],[115,155,77,0.3522388626015199],[115,155,78,0.35113211504355935],[115,155,79,0.34984718594093056],[115,156,64,0.3147007008085376],[115,156,65,0.3178125345497178],[115,156,66,0.32088736474027035],[115,156,67,0.32391923459853045],[115,156,68,0.32693943350676563],[115,156,69,0.32999413108684605],[115,156,70,0.33311468426920765],[115,156,71,0.3363184114497027],[115,156,72,0.3396100233193056],[115,156,73,0.3429830639517354],[115,156,74,0.34642135945213426],[115,156,75,0.34990047149684866],[115,156,76,0.35338915313323804],[115,156,77,0.35394816986999167],[115,156,78,0.3527701561934761],[115,156,79,0.3514141622582596],[115,157,64,0.31781997689333763],[115,157,65,0.32078833364230447],[115,157,66,0.32370814393914205],[115,157,67,0.3265786655837427],[115,157,68,0.329431225987186],[115,157,69,0.3323085587856296],[115,157,70,0.3352396996731308],[115,157,71,0.3382407114723273],[115,157,72,0.3413159658486002],[115,157,73,0.3444594421012154],[115,157,74,0.3476560407642573],[115,157,75,0.35088290976027026],[115,157,76,0.35411078087072173],[115,157,77,0.3552037394684504],[115,157,78,0.35395469857889283],[115,157,79,0.35252892949888776],[115,158,64,0.32062854066146235],[115,158,65,0.3234540013371806],[115,158,66,0.3262198188675694],[115,158,67,0.3289303388579717],[115,158,68,0.33161689783636616],[115,158,69,0.33431882609883623],[115,158,70,0.3370628152624402],[115,158,71,0.33986360289303014],[115,158,72,0.34272511602369354],[115,158,73,0.3456416378840163],[115,158,74,0.3485989959672346],[115,158,75,0.35157576955746983],[115,158,76,0.35454451484464705],[115,158,77,0.35601034349280924],[115,158,78,0.354689583607634],[115,158,79,0.3531942334154503],[115,159,64,0.3231182967631034],[115,159,65,0.32580128203806985],[115,159,66,0.32841400317880104],[115,159,67,0.3309656800860605],[115,159,68,0.3334876315913815],[115,159,69,0.3360158805399231],[115,159,70,0.3385748050069705],[115,159,71,0.34117779040937524],[115,159,72,0.34382824661192035],[115,159,73,0.3465206536644419],[115,159,74,0.3492416346533737],[115,159,75,0.3519710541334012],[115,159,76,0.35468314059643574],[115,159,77,0.35637611961045795],[115,159,78,0.35498239116906],[115,159,79,0.3534169272361814],[115,160,64,0.3252821173020826],[115,160,65,0.32782291203573444],[115,160,66,0.3302832844655641],[115,160,67,0.3326770525568659],[115,160,68,0.33503549077499123],[115,160,69,0.33739145429968015],[115,160,70,0.33976707787451366],[115,160,71,0.3421744024213788],[115,160,72,0.3446162776816569],[115,160,73,0.347087298190436],[115,160,74,0.34957477138604004],[115,160,75,0.35205971662787694],[115,160,76,0.35451789387512933],[115,160,77,0.3563126574507686],[115,160,78,0.35484471046615457],[115,160,79,0.3532084403195969],[115,161,64,0.32711453194454376],[115,161,65,0.3295133333726065],[115,161,66,0.3318219509866315],[115,161,67,0.3340584944588761],[115,161,68,0.3362541643343427],[115,161,69,0.3384388048607893],[115,161,70,0.3406323976223397],[115,161,71,0.34284566861321447],[115,161,72,0.3450808876744276],[115,161,73,0.3473327052716138],[115,161,74,0.34958902569876665],[115,161,75,0.3518319157537813],[115,161,76,0.35403854790096395],[115,161,77,0.35583508811234843],[115,161,78,0.35429243747659944],[115,161,79,0.35258529892246987],[115,162,64,0.32861250354473587],[115,162,65,0.3308694952126116],[115,162,66,0.3330268068784394],[115,162,67,0.3351065453523881],[115,162,68,0.3371398005683862],[115,162,69,0.33915354422353905],[115,162,70,0.3411656885401553],[115,162,71,0.3431856785769661],[115,162,72,0.34521519802772016],[115,162,73,0.3472489157277338],[115,162,74,0.3492752722038787],[115,162,75,0.3512773055565306],[115,162,76,0.35323351592259383],[115,162,77,0.354962176882877],[115,162,78,0.35334609925771926],[115,162,79,0.35156969941621397],[115,163,64,0.32977628994308605],[115,163,65,0.3318917433718988],[115,163,66,0.3338980764981543],[115,163,67,0.3358211624726627],[115,163,68,0.33769193116291246],[115,163,69,0.3395345573370386],[115,163,70,0.341364927701439],[115,163,71,0.3431912219830231],[115,163,72,0.3450145317850476],[115,163,73,0.346829522960737],[115,163,74,0.3486251410662376],[115,163,75,0.3503853594006871],[115,163,76,0.35208996909439755],[115,163,77,0.3537154106672202],[115,163,78,0.35203120532620563],[115,163,79,0.35019013431412616],[115,164,64,0.33060666277991807],[115,164,65,0.33258069842077814],[115,164,66,0.3344359548225147],[115,164,67,0.33620194935330977],[115,164,68,0.3379093838707781],[115,164,69,0.33957961157021077],[115,164,70,0.3412264706249011],[115,164,71,0.3428568559096528],[115,164,72,0.3444712534038135],[115,164,73,0.3460643205040586],[115,164,74,0.3476255120204025],[115,164,75,0.34913975156925287],[115,164,76,0.35058814802407573],[115,164,77,0.35194875663829894],[115,164,78,0.3503839268845515],[115,164,79,0.3484870175587331],[115,165,64,0.331081856686997],[115,165,65,0.33291189422641454],[115,165,66,0.334613140580207],[115,165,67,0.33621865575195076],[115,165,68,0.33775883348936536],[115,165,69,0.3392521669699088],[115,165,70,0.34071043409522983],[115,165,71,0.3421392571621067],[115,165,72,0.3435385504270417],[115,165,73,0.3449030158707521],[115,165,74,0.3462226871480125],[115,165,75,0.34748352164299323],[115,165,76,0.3486680404907494],[115,165,77,0.34975601637274834],[115,165,78,0.3484799214983423],[115,165,79,0.3465386438167959],[115,166,64,0.33117561296445497],[115,166,65,0.33285573734979035],[115,166,66,0.33439668907349696],[115,166,67,0.3358349224486718],[115,166,68,0.33720044045951064],[115,166,69,0.3385088890280458],[115,166,70,0.33977003765883135],[115,166,71,0.3409883191049799],[115,166,72,0.34216318373484655],[115,166,73,0.3432895046311931],[115,166,74,0.34435803363287854],[115,166,75,0.3453559084577438],[115,166,76,0.3462672109791248],[115,166,77,0.34707357666834027],[115,166,78,0.3463951176715163],[115,166,79,0.34442161969259844],[115,167,64,0.3308697399337007],[115,167,65,0.3323914508974005],[115,167,66,0.33376326057948386],[115,167,67,0.33502481070179135],[115,167,68,0.33620563441637186],[115,167,69,0.337318607412613],[115,167,70,0.33837161229050644],[115,167,71,0.33936804587294034],[115,167,72,0.3403070711587382],[115,167,73,0.3411839230687211],[115,167,74,0.3419902684413887],[115,167,75,0.34271462065636654],[115,167,76,0.3433428091897943],[115,167,77,0.34385850433734616],[115,167,78,0.3441849141027505],[115,167,79,0.3421910084384169],[115,168,64,0.3301525064578269],[115,168,65,0.33150543841033286],[115,168,66,0.33269744895089703],[115,168,67,0.33377109580461095],[115,168,68,0.33475537223689067],[115,168,69,0.3356605331360213],[115,168,70,0.336492767573093],[115,168,71,0.3372546578588846],[115,168,72,0.33794531799375543],[115,168,73,0.3385605897308731],[115,168,74,0.3390932969843509],[115,168,75,0.33953355922697753],[115,168,76,0.33986916443906157],[115,168,77,0.3400860020915514],[115,168,78,0.34016855657399503],[115,168,79,0.3398831383771019],[115,169,64,0.32901687048745887],[115,169,65,0.33018947410946525],[115,169,66,0.33118992923224433],[115,169,67,0.33206337288240806],[115,169,68,0.3328382022555727],[115,169,69,0.3335222773156127],[115,169,70,0.3341203580513506],[115,169,71,0.33463449663576095],[115,169,72,0.33506405026239455],[115,169,73,0.3354057563590396],[115,169,74,0.33565387121764856],[115,169,75,0.3358003729825399],[115,169,76,0.3358352298447931],[115,169,77,0.3357467342007258],[115,169,78,0.3355219034474301],[115,169,79,0.33514694800964084],[115,170,64,0.3274586182034031],[115,170,65,0.3284388027662276],[115,170,66,0.32923551479013285],[115,170,67,0.3298960725060163],[115,170,68,0.3304482391291683],[115,170,69,0.330897782440142],[115,170,70,0.3312483653730562],[115,170,71,0.33150185067022053],[115,170,72,0.33165817570361766],[115,170,73,0.3317152955229572],[115,170,74,0.331669195511247],[115,170,75,0.33151397491976364],[115,170,76,0.33124200244734764],[115,170,77,0.33084414492526787],[115,170,78,0.33031007006964785],[115,170,79,0.3296286241698387],[115,171,64,0.32547441257657983],[115,171,65,0.32625014805200936],[115,171,66,0.32683112284869187],[115,171,67,0.3272663850554953],[115,171,68,0.3275830483313974],[115,171,69,0.3277851651771789],[115,171,70,0.3278756953131371],[115,171,71,0.3278567009925505],[115,171,72,0.3277290717282285],[115,171,73,0.3274923242865653],[115,171,74,0.32714447970667937],[115,171,75,0.32668201897910454],[115,171,76,0.3260999188965761],[115,171,77,0.3253917694700331],[115,171,78,0.32454997418724046],[115,171,79,0.3235660342808029],[115,172,64,0.32305975004602966],[115,172,65,0.32361962809839073],[115,172,66,0.32397364719935434],[115,172,67,0.32417209264523267],[115,172,68,0.3242414391365465],[115,172,69,0.32418446963429753],[115,172,70,0.3240038886552322],[115,172,71,0.32370238586695727],[115,172,72,0.3232821994629089],[115,172,73,0.3227447631143875],[115,172,74,0.322090438667529],[115,172,75,0.32131833661381287],[115,172,76,0.32042622622368205],[115,172,77,0.31941053709550865],[115,172,78,0.3182664537378035],[115,172,79,0.31698810467276456],[115,173,64,0.3202068238937027],[115,173,65,0.32054057687691456],[115,173,66,0.3206577367298848],[115,173,67,0.32060930729686216],[115,173,68,0.32042116482553756],[115,173,69,0.32009532986187594],[115,173,70,0.31963474478072523],[115,173,71,0.31904318338312637],[115,173,72,0.3183246428837129],[115,173,73,0.3174828291081376],[115,173,74,0.3165207375102563],[115,173,75,0.31544033246122644],[115,173,76,0.31424232710439803],[115,173,77,0.31292606591243677],[115,173,78,0.31148951192801855],[115,173,79,0.30992934051831045],[115,174,64,0.31690229277080156],[115,174,65,0.31700126988161115],[115,174,66,0.3168734782909901],[115,174,67,0.3165701139191016],[115,174,68,0.31611652872042567],[115,174,69,0.31551454025783127],[115,174,70,0.31476785668852947],[115,174,71,0.31388181076455385],[115,174,72,0.3128625719163024],[115,174,73,0.3117164625421383],[115,174,74,0.3104493815844164],[115,174,75,0.3090663382942773],[115,174,76,0.30757109890788614],[115,174,77,0.3059659487771041],[115,174,78,0.30425157231959066],[115,174,79,0.3024270529788238],[115,175,64,0.31313683609439724],[115,175,65,0.31299424318420616],[115,175,66,0.31261540823935324],[115,175,67,0.31205119103225415],[115,175,68,0.31132651850516746],[115,175,69,0.3104435968504004],[115,175,70,0.3094074447464586],[115,175,71,0.3082254315506145],[115,175,72,0.3069063028111243],[115,175,73,0.30545932231202794],[115,175,74,0.30389353422586773],[115,175,75,0.3022171487491917],[115,175,76,0.30043705439261337],[115,175,77,0.29855845989328167],[115,175,78,0.2965846685147538],[115,175,79,0.29451698729945913],[115,176,64,0.3089430465818902],[115,176,65,0.3085536095407461],[115,176,66,0.3079190582471796],[115,176,67,0.3070893528926251],[115,176,68,0.30608907548325887],[115,176,69,0.3049213943385897],[115,176,70,0.3035931596905326],[115,176,71,0.30211422854115777],[115,176,72,0.3004962994928688],[115,176,73,0.2987518774772385],[115,176,74,0.2968933724675508],[115,176,75,0.2949323360356872],[115,176,76,0.2928788393860027],[115,176,77,0.29074099626922334],[115,176,78,0.28852463395024663],[115,176,79,0.2862331151772426],[115,177,64,0.3043658537338493],[115,177,65,0.30372608284227304],[115,177,66,0.30283282810183465],[115,177,67,0.3017345663899526],[115,177,68,0.300455590514004],[115,177,69,0.29900056593445745],[115,177,70,0.29737865204441144],[115,177,71,0.2956025996581196],[115,177,72,0.29368739400564403],[115,177,73,0.291649041683898],[115,177,74,0.2895035061626318],[115,177,75,0.2872657961947044],[115,177,76,0.2849492112262423],[115,177,77,0.2825647476461592],[115,177,78,0.2801206694582546],[115,177,79,0.2776222467051968],[115,178,64,0.299450940769983],[115,178,65,0.29855951389202817],[115,178,66,0.29740670036730077],[115,178,67,0.29603891807186916],[115,178,68,0.294480208213953],[115,178,69,0.29273721896731636],[115,178,70,0.29082184082761714],[115,178,71,0.28875006670606734],[115,178,72,0.28654044506094334],[115,178,73,0.28421269139749283],[115,178,74,0.28178646324133083],[115,178,75,0.27928030341613724],[115,178,76,0.2767107561767384],[115,178,77,0.27409166046577893],[115,178,78,0.27143362427866347],[115,178,79,0.2687436838399412],[115,179,64,0.2942441158864225],[115,179,65,0.29310217244320913],[115,179,66,0.29169141583330893],[115,179,67,0.29005566323530235],[115,179,68,0.28821872847258106],[115,179,69,0.2861896673844535],[115,179,70,0.28398345633326555],[115,179,71,0.28161960926988794],[115,179,72,0.2791204461435201],[115,179,73,0.276509534121473],[115,179,74,0.2738103072132663],[115,179,75,0.2710448695943301],[115,179,76,0.26823298761919906],[115,179,77,0.2653912752048381],[115,179,78,0.2625325769543373],[115,179,79,0.2596655530825338],[115,180,64,0.28879067544550624],[115,180,65,0.28740202225566935],[115,180,66,0.285737645118353],[115,180,67,0.283838276028273],[115,180,68,0.2817275157581488],[115,180,69,0.2794171812888284],[115,180,70,0.27692561205403676],[115,180,71,0.2742760429868912],[115,180,72,0.2714946964471981],[115,180,73,0.26860906112046096],[115,180,74,0.2656463639452402],[115,180,75,0.2626322408024953],[115,180,76,0.25958961137034764],[115,180,77,0.2565377632129985],[115,180,78,0.2534916498361932],[115,180,79,0.2504614071067658],[115,181,64,0.2831347586900161],[115,181,65,0.28150598873793],[115,181,66,0.27959515597652834],[115,181,67,0.27743950010148744],[115,181,68,0.2750624157494106],[115,181,69,0.2724787530561052],[115,181,70,0.26971040531859064],[115,181,71,0.2667844417904523],[115,181,72,0.2637310342888347],[115,181,73,0.26058158436395773],[115,181,74,0.2573670575143713],[115,181,75,0.25411653058551387],[115,181,76,0.2508559581355122],[115,181,77,0.2476071631934217],[115,181,78,0.24438705747428696],[115,181,79,0.24120709575585633],[115,182,64,0.2773186935521957],[115,182,65,0.2754592187169698],[115,182,66,0.2733119758328954],[115,182,67,0.2709103993229543],[115,182,68,0.2682776788021526],[115,182,69,0.26543187954682845],[115,182,70,0.26239854617503056],[115,182,71,0.2592086036984866],[115,182,72,0.2558961326273965],[115,182,73,0.2524963573884198],[115,182,74,0.24904385492221948],[115,182,75,0.24557098996038218],[115,182,76,0.2421065831062905],[115,182,77,0.2386748174636179],[115,182,78,0.23529438917276416],[115,182,79,0.2319779068332356],[115,183,64,0.27138233310709586],[115,183,65,0.269304331855403],[115,183,66,0.26693354904815186],[115,183,67,0.26429940804442753],[115,183,68,0.2614248897351297],[115,183,69,0.2583313599059562],[115,183,70,0.25504801403621113],[115,183,71,0.2516095597010548],[115,183,72,0.24805385629987586],[115,183,73,0.24441977976498827],[115,183,74,0.2407453194502778],[115,183,75,0.23706591401409535],[115,183,76,0.2334130327160619],[115,183,77,0.22981300814666308],[115,183,78,0.22628612600492817],[115,183,79,0.22284597713679],[115,184,64,0.26536238220086633],[115,184,65,0.263080663214841],[115,184,66,0.2605018883918553],[115,184,67,0.2576513803868427],[115,184,68,0.2545519033988679],[115,184,69,0.2512281084223536],[115,184,70,0.2477127415846904],[115,184,71,0.2440441252882037],[115,184,72,0.24026368057755965],[115,184,73,0.2364136848579382],[115,184,74,0.23253527244186065],[115,184,75,0.22866668500091952],[115,184,76,0.22484177858718118],[115,184,77,0.2210887934709706],[115,184,78,0.21742939262061403],[115,184,79,0.21387797422932645],[115,185,64,0.2592917137670227],[115,185,65,0.25682349644497665],[115,185,66,0.25405472018375685],[115,185,67,0.25100663799255013],[115,185,68,0.2477017854725209],[115,185,69,0.24416798190473776],[115,185,70,0.24044132542246943],[115,185,71,0.23656349415129987],[115,185,72,0.23257917064445127],[115,185,73,0.22853371056455368],[115,185,74,0.22447106330942632],[115,185,75,0.2204319518641974],[115,185,76,0.21645231873657506],[115,185,77,0.21256204439963897],[115,185,78,0.20878394423078006],[115,185,79,0.20513304950028208],[115,186,64,0.2531986743272662],[115,186,65,0.25056328706003295],[115,186,66,0.24762462254482845],[115,186,67,0.24440001567491818],[115,186,68,0.24091175791834848],[115,186,69,0.23719062101777272],[115,186,70,0.23327576294213298],[115,186,71,0.2292118735883787],[115,186,72,0.2250465216041821],[115,186,73,0.22082775274032804],[115,186,74,0.21660194758942852],[115,186,75,0.21241194614167053],[115,186,76,0.2082954461517657],[115,186,77,0.20428368186752005],[115,186,78,0.2004003892232145],[115,186,79,0.19666106315426643],[115,187,64,0.24710637816000144],[115,187,65,0.24432487524959617],[115,187,66,0.24123815618517713],[115,187,67,0.2378599043826829],[115,187,68,0.2342121485123391],[115,187,69,0.23032830501447046],[115,187,70,0.22625021489354258],[115,187,71,0.22202516114830512],[115,187,72,0.21770315863443002],[115,187,73,0.21333450103600266],[115,187,74,0.20896757290065782],[115,187,75,0.20464693425953073],[115,187,76,0.20041168490872832],[115,187,77,0.1962941149771486],[115,187,78,0.1923186479499997],[115,187,79,0.18850108186232362],[115,188,64,0.24103198960686117],[115,188,65,0.2381266876570628],[115,188,66,0.2349149871428539],[115,188,67,0.23140729088482903],[115,188,68,0.22762534386058755],[115,188,69,0.22360481929628798],[115,188,70,0.21938979312131726],[115,188,71,0.21502966205729634],[115,188,72,0.21057639692606978],[115,188,73,0.20608205690229428],[115,188,74,0.2015965727040003],[115,188,75,0.19716580627622576],[115,188,76,0.1928298940735524],[115,188,77,0.1886218805905728],[115,188,78,0.18456664832883077],[115,188,79,0.18068014992866024],[115,189,64,0.2349859929781102],[115,189,65,0.23197992754883584],[115,189,66,0.22866700087840078],[115,189,67,0.22505479357468477],[115,189,68,0.2211647453071621],[115,189,69,0.2170343352332258],[115,189,70,0.21270937295588135],[115,189,71,0.2082408469874698],[115,189,72,0.20368216107088633],[115,189,73,0.19908663355708275],[115,189,74,0.19450526781437974],[115,189,75,0.18998480120513098],[115,189,76,0.18556603971424346],[115,189,77,0.1812824848554481],[115,189,78,0.17715925901885696],[115,189,79,0.17321233496132987],[115,190,64,0.228971449510355],[115,190,65,0.2258877527895722],[115,190,66,0.22249740712344027],[115,190,67,0.21880569378785467],[115,190,68,0.2148337271388634],[115,190,69,0.21062030168131973],[115,190,70,0.20621242975329265],[115,190,71,0.20166214974891425],[115,190,72,0.19702376359497584],[115,190,73,0.1923513377565014],[115,190,74,0.18769647567742084],[115,190,75,0.18310636912353975],[115,190,76,0.17862213544504102],[115,190,77,0.17427744731823644],[115,190,78,0.17009746106501297],[115,190,79,0.1660980491874619],[115,191,64,0.22298324082471782],[115,191,65,0.21984444103343095],[115,191,66,0.21639983487792816],[115,191,67,0.21265296202783507],[115,191,68,0.20862459649576015],[115,191,69,0.20435434764441304],[115,191,70,0.19988989909662003],[115,191,71,0.19528380451455363],[115,191,72,0.19059074237508572],[115,191,73,0.18586503326589543],[115,191,74,0.181158427494122],[115,191,75,0.17651817036394188],[115,191,76,0.1719853520331103],[115,191,77,0.16759354840465673],[115,191,78,0.1633677590523735],[115,191,79,0.159323647721469],[115,192,64,0.21700729833201304],[115,192,65,0.21383454153990228],[115,192,66,0.21035741695132706],[115,192,67,0.20657827849715402],[115,192,68,0.20251755440513697],[115,192,69,0.19821519554245387],[115,192,70,0.1937190601957113],[115,192,71,0.1890817222221052],[115,192,72,0.18435775672337554],[115,192,73,0.17960128599015834],[115,192,74,0.17486379335759203],[115,192,75,0.17019221218317257],[115,192,76,0.16562729671722431],[115,192,77,0.16120228118832935],[115,192,78,0.15694183297438655],[115,192,79,0.1528613052785993],[115,193,64,0.21101981803258382],[115,193,65,0.20783201302447638],[115,193,66,0.20434186344704325],[115,193,67,0.20055104733972154],[115,193,68,0.19647965736958095],[115,193,69,0.19216758456880004],[115,193,70,0.18766244205176602],[115,193,71,0.18301640583864626],[115,193,72,0.1782835419812333],[115,193,73,0.17351739079423067],[115,193,74,0.1687688156552805],[115,193,75,0.16408412341418088],[115,193,76,0.15950346301834933],[115,193,77,0.15505950852094436],[115,193,78,0.15077643219386383],[115,193,79,0.14666917302395324],[115,194,64,0.20498646016230115],[115,194,65,0.20179934695918558],[115,194,66,0.19831252359699897],[115,194,67,0.19452740401179694],[115,194,68,0.19046377895736535],[115,194,69,0.18616120364412592],[115,194,70,0.18166675198813792],[115,194,71,0.17703190422056567],[115,194,72,0.17230992252464497],[115,194,73,0.16755348012324608],[115,194,74,0.16281255108767567],[115,194,75,0.15813256772329304],[115,194,76,0.15355285196213678],[115,194,77,0.1491053267603319],[115,194,78,0.1448135130621826],[115,194,79,0.1406918174573492],[115,195,64,0.1987855485939142],[115,195,65,0.19568725740509121],[115,195,66,0.1922160884461137],[115,195,67,0.1884499381413499],[115,195,68,0.18440836213535428],[115,195,69,0.18013048885069152],[115,195,70,0.17566273854572992],[115,195,71,0.17105576398903174],[115,195,72,0.1663618778824828],[115,195,73,0.16163273011000065],[115,195,74,0.1569172418874451],[115,195,75,0.15225980348195048],[115,195,76,0.14769874175147876],[115,195,77,0.14326506333113098],[115,195,78,0.138981478865213],[115,195,79,0.1348617132569382],[115,196,64,0.18901136193299653],[115,196,65,0.18946353816747322],[115,196,66,0.18601898312153514],[115,196,67,0.18228355059792162],[115,196,68,0.17827667418268334],[115,196,69,0.17403707454909578],[115,196,70,0.16961050048502377],[115,196,71,0.1650467274221807],[115,196,72,0.16039704019969447],[115,196,73,0.15571196213751376],[115,196,74,0.15103923729851076],[115,196,75,0.1464220724181557],[115,196,76,0.14189764457097043],[115,196,77,0.13749588022671524],[115,196,78,0.13323851092990338],[115,196,79,0.12913841041743512],[115,197,64,0.1791915721255131],[115,197,65,0.1806718090130978],[115,197,66,0.17972565340612653],[115,197,67,0.1760353951060809],[115,197,68,0.17207835581568365],[115,197,69,0.16789281375292786],[115,197,70,0.16352375855723147],[115,197,71,0.15901996089501694],[115,197,72,0.15443151990553355],[115,197,73,0.1498076529479946],[115,197,74,0.1451947343143353],[115,197,75,0.14063458918008967],[115,197,76,0.13616304866476],[115,197,77,0.13180877146562162],[115,197,78,0.1275923371186183],[115,197,79,0.12352561553042504],[115,198,64,0.16935461451540865],[115,198,65,0.1708420552591966],[115,198,66,0.1722026460614873],[115,198,67,0.16970862392204916],[115,198,68,0.1658185439458629],[115,198,69,0.16170454785633517],[115,198,70,0.15741071972392862],[115,198,71,0.15298463336692059],[115,198,72,0.14847497881171318],[115,198,73,0.14392942601543335],[115,198,74,0.13939273226941082],[115,198,75,0.1349050993200696],[115,198,76,0.1305007858528203],[115,198,77,0.12620698058766036],[115,198,78,0.12204294083572188],[115,198,79,0.11801940096742705],[115,199,64,0.15953198932899382],[115,199,65,0.16102008246571553],[115,199,66,0.16237468890552373],[115,199,67,0.16330032946644082],[115,199,68,0.1594955077469374],[115,199,69,0.1554714660444583],[115,199,70,0.15127120091879287],[115,199,71,0.1469408569586043],[115,199,72,0.1425274503695124],[115,199,73,0.1380768233353323],[115,199,74,0.1336318352845363],[115,199,75,0.1292307968239341],[115,199,76,0.12490615172310879],[115,199,77,0.12068341194919328],[115,199,78,0.11658035036533358],[115,199,79,0.11260645532106116],[115,200,64,0.155734874417461],[115,200,65,0.15453343621941212],[115,200,66,0.15334354522318183],[115,200,67,0.15377552617183796],[115,200,68,0.1531027771556091],[115,200,69,0.1491873455418034],[115,200,70,0.14509898402324078],[115,200,71,0.1408821556758601],[115,200,72,0.13658191723516314],[115,200,73,0.13224198314675778],[115,200,74,0.127903017937029],[115,200,75,0.12360116234695304],[115,200,76,0.11936679830890556],[115,200,77,0.11522355747812094],[115,200,78,0.11118757766036917],[115,200,79,0.1072670111086642],[115,201,64,0.15535151180823334],[115,201,65,0.15392895506777055],[115,201,66,0.15251345144046216],[115,201,67,0.1510903396289583],[115,201,68,0.14963302511638574],[115,201,69,0.14513984277409994],[115,201,70,0.13897680771879733],[115,201,71,0.134797842825907],[115,201,72,0.13062681369515192],[115,201,73,0.12641226082841492],[115,201,74,0.12219235437372357],[115,201,75,0.1180007868656192],[115,201,76,0.11386563556065493],[115,201,77,0.10980845667005833],[115,201,78,0.10584361552121704],[115,201,79,0.10197785633049145],[115,202,64,0.15500686376176356],[115,202,65,0.15334544784035414],[115,202,66,0.15168780173787594],[115,202,67,0.15001634147509815],[115,202,68,0.14830328858927977],[115,202,69,0.14651035618087613],[115,202,70,0.14068601894893726],[115,202,71,0.13444985352250208],[115,202,72,0.1282363149890545],[115,202,73,0.1220777725842496],[115,202,74,0.11648371203013785],[115,202,75,0.11241218213972021],[115,202,76,0.10838374323099151],[115,202,77,0.1044176916576215],[115,202,78,0.10052649519425522],[115,202,79,0.09671543209265493],[115,203,64,0.1547218579921972],[115,203,65,0.15280444293659737],[115,203,66,0.1508887728596089],[115,203,67,0.148953895201017],[115,203,68,0.1469705960597915],[115,203,69,0.1449016698067342],[115,203,70,0.14221072123908785],[115,203,71,0.13592219870140984],[115,203,72,0.12965396716042749],[115,203,73,0.1234355096631853],[115,203,74,0.11729326453126791],[115,203,75,0.11124951745118229],[115,203,76,0.10532149310531894],[115,203,77,0.0995206499422384],[115,203,78,0.0952164064926615],[115,203,79,0.09145901859640286],[115,204,64,0.1545132138622355],[115,204,65,0.15232368617078634],[115,204,66,0.15013509144290685],[115,204,67,0.14792271843046764],[115,204,68,0.14565567725931133],[115,204,69,0.14329789394070022],[115,204,70,0.14081197914930027],[115,204,71,0.1372079125888658],[115,204,72,0.13089207240207867],[115,204,73,0.12461960566759754],[115,204,74,0.11841375320646191],[115,204,75,0.11229370577304479],[115,204,76,0.10627383738143151],[115,204,77,0.10036312314406318],[115,204,78,0.09456474449856665],[115,204,79,0.08887588442876934],[115,205,64,0.15439233650658227],[115,205,65,0.1519159433255533],[115,205,66,0.14944073151864215],[115,205,67,0.14693790425954423],[115,205,68,0.1443746706696815],[115,205,69,0.14171610968855794],[115,205,70,0.13892699417935753],[115,205,71,0.13597313083282758],[115,205,72,0.1319454287358034],[115,205,73,0.12562506714319627],[115,205,74,0.11936048796489593],[115,205,75,0.11316755642757956],[115,205,76,0.10705759236970927],[115,205,77,0.10103692354162129],[115,205,78,0.0951066049665408],[115,205,79,0.08926230654751553],[115,206,64,0.15436435775943946],[115,206,65,0.15158794726283023],[115,206,66,0.1488137524314721],[115,206,67,0.14600862928635724],[115,206,68,0.1431376794991016],[115,206,69,0.14016712685559454],[115,206,70,0.13706399774204003],[115,206,71,0.13379713280773164],[115,206,72,0.1303381155418537],[115,206,73,0.12645545965135496],[115,206,74,0.12013821602504558],[115,206,75,0.1138772877893259],[115,206,76,0.10768072683137721],[115,206,77,0.10155203265934827],[115,206,78,0.09548999617419386],[115,206,79,0.0894886877605283],[115,207,64,0.1544287773979536],[115,207,65,0.15134047614107654],[115,207,66,0.1482559339540585],[115,207,67,0.14513747632079793],[115,207,68,0.1419479201788342],[115,207,69,0.13865460101928448],[115,207,70,0.1352268647474569],[115,207,71,0.13163672643829077],[115,207,72,0.12785951974095974],[115,207,73,0.12387443930986172],[115,207,74,0.11966497417018435],[115,207,75,0.11443763969358013],[115,207,76,0.10815991597871773],[115,207,77,0.10192734152755892],[115,207,78,0.09573629068816801],[115,207,79,0.08957912646331617],[115,208,64,0.1545847514545861],[115,208,65,0.1511724306237544],[115,208,66,0.14776607818761595],[115,208,67,0.14432344203598846],[115,208,68,0.1408049420873001],[115,208,69,0.13717897894510186],[115,208,70,0.1334172488347207],[115,208,71,0.12949502979053917],[115,208,72,0.12539153379026283],[115,208,73,0.12109017614571532],[115,208,74,0.11657876074747342],[115,208,75,0.11184957988838076],[115,208,76,0.10689942751768047],[115,208,77,0.10172952490261074],[115,208,78,0.09584856104811403],[115,208,79,0.08953642526357158],[115,209,64,0.15482903304244827],[115,209,65,0.1510805950917196],[115,209,66,0.14734123918035846],[115,209,67,0.14356423399256033],[115,209,68,0.1397075614917082],[115,209,69,0.1357406279463664],[115,209,70,0.1316374699883841],[115,209,71,0.12737665466466347],[115,209,72,0.12294132078980152],[115,209,73,0.1183191632752893],[115,209,74,0.11350235974115921],[115,209,75,0.10848743880303353],[115,209,76,0.103275089512306],[115,209,77,0.09786991150934551],[115,209,78,0.09228010552987279],[115,209,79,0.08651710398044528],[115,210,64,0.1551546944986909],[115,210,65,0.15105879692737512],[115,210,66,0.1469761908222732],[115,210,67,0.14285590016778366],[115,210,68,0.13865349576034947],[115,210,69,0.13433931598526574],[115,210,70,0.12988968577309554],[115,210,71,0.12528642342877147],[115,210,72,0.12051656266085495],[115,210,73,0.11557204452899307],[115,210,74,0.11044937933294471],[115,210,75,0.10514927851127957],[115,210,76,0.09967625665898111],[115,210,77,0.09403820381074743],[115,210,78,0.08824592817188057],[115,210,79,0.08231266950902728],[115,211,64,0.1555510891890239],[115,211,65,0.15109776049896909],[115,211,66,0.14666317398611936],[115,211,67,0.14219246788952836],[115,211,68,0.1376388920971521],[115,211,69,0.13297362954671058],[115,211,70,0.12817519944705075],[115,211,71,0.12322857048888694],[115,211,72,0.11812456023225856],[115,211,73,0.11285923225627029],[115,211,74,0.10743329180988287],[115,211,75,0.10185148070370638],[115,211,76,0.09612197217906805],[115,211,77,0.090255766482472],[115,211,78,0.08426608786240748],[115,211,79,0.07816778368941762],[115,212,64,0.15600397719675846],[115,212,65,0.1511851260064918],[115,212,66,0.146391809833945],[115,212,67,0.14156575082866965],[115,212,68,0.13665802679394667],[115,212,69,0.13164056484308445],[115,212,70,0.12649394438429054],[115,212,71,0.12120612304708345],[115,212,72,0.1157715154557154],[115,212,73,0.11019009815340644],[115,212,74,0.10446654211832736],[115,212,75,0.0986093742692456],[115,212,76,0.09263016930970015],[115,212,77,0.08654277320513488],[115,212,78,0.08036255952957216],[115,212,79,0.0741057198555344],[115,213,64,0.1564958173091548],[115,213,65,0.15130563550571063],[115,213,66,0.1461491815157598],[115,213,67,0.14096532619525992],[115,213,68,0.1357031770719487],[115,213,69,0.13033529435251823],[115,213,70,0.1248441467427114],[115,213,71,0.11922046302077098],[115,213,72,0.11346199756049838],[115,213,73,0.10757235055351361],[115,213,74,0.10155984504966672],[115,213,75,0.09543646284728151],[115,213,76,0.08921684117047911],[115,213,77,0.0829173319702449],[115,213,78,0.07655512558153088],[115,213,79,0.07014744035925423],[115,214,64,0.15700622785648385],[115,214,65,0.15144148857123868],[115,214,66,0.14592008663317624],[115,214,67,0.14037868443216153],[115,214,68,0.13476466773494902],[115,214,69,0.12905111084710377],[115,214,70,0.12322216847120783],[115,214,71,0.11727107215527793],[115,214,72,0.1111985951192673],[115,214,73,0.10501160009041652],[115,214,74,0.09872167290986703],[115,214,75,0.09234384454197254],[115,214,76,0.08589540397858167],[115,214,77,0.07939480438456333],[115,214,78,0.07286066468078885],[115,214,79,0.06631086860572692],[115,215,64,0.1575126190931206],[115,215,65,0.15157287019602125],[115,215,66,0.14568746297995183],[115,215,67,0.13979155384199307],[115,215,68,0.13383109500228926],[115,215,69,0.127779551216643],[115,215,70,0.12162253290213776],[115,215,71,0.11535546251800635],[115,215,72,0.10898175615584588],[115,215,73,0.10251111580977122],[115,215,74,0.09595793568827833],[115,215,75,0.08933982575602409],[115,215,76,0.08267625551110651],[115,215,77,0.07598732081338895],[115,215,78,0.06929263638513754],[115,215,79,0.06261035640613277],[115,216,64,0.15799099993357288],[115,216,65,0.1516786536514964],[115,216,66,0.14543299020158063],[115,216,67,0.13918840271714644],[115,216,68,0.13288973002768167],[115,216,69,0.12651070253579647],[115,216,70,0.12003813532179997],[115,216,71,0.11346929471296026],[115,216,72,0.10680981857996502],[115,216,73,0.10007177395797984],[115,216,74,0.09327185590083822],[115,216,75,0.08642973126250293],[115,216,76,0.07956653087568484],[115,216,77,0.07270349336541504],[115,216,78,0.06586076359896437],[115,216,79,0.05905634853252363],[115,217,64,0.15841696196718671],[115,217,65,0.15173728114771695],[115,217,66,0.1451378701352967],[115,217,67,0.13855312166639397],[115,217,68,0.131927104738614],[115,217,69,0.12523369295623127],[115,217,70,0.11846064105040666],[115,217,71,0.11160668629806221],[115,217,72,0.10467923338201988],[115,217,73,0.09769220183139148],[115,217,74,0.09066404043789185],[115,217,75,0.08361591279073463],[115,217,76,0.07657005780932212],[115,217,77,0.06954832888131299],[115,217,78,0.0625709149377901],[115,217,79,0.05565524651713433],[115,218,64,0.15876684377145034],[115,218,65,0.1517278252338674],[115,218,66,0.14478378869798475],[115,218,67,0.13786988894301513],[115,218,68,0.1309297827481217],[115,218,69,0.12393737012823332],[115,218,70,0.11688107369164591],[115,218,71,0.1097607130218258],[115,218,72,0.10258498316014916],[115,218,73,0.09536911921208048],[115,218,74,0.08813275189449665],[115,218,75,0.0808979585529852],[115,218,76,0.0736875138781717],[115,218,77,0.06652334424201138],[115,218,78,0.05942518926277909],[115,218,79,0.052409473891475926],[115,219,64,0.1590190786230048],[115,219,65,0.15163123396463946],[115,219,66,0.14435406228030356],[115,219,67,0.13712422167624405],[115,219,68,0.12988531819395657],[115,219,69,0.12261116996599214],[115,219,70,0.11529059632817337],[115,219,71,0.10792410561842883],[115,219,72,0.10052119868027043],[115,219,73,0.09309788005005916],[115,219,74,0.08567438199914128],[115,219,75,0.07827310628031994],[115,219,76,0.070916788095315],[115,219,77,0.06362688645866747],[115,219,78,0.05642220478854186],[115,219,79,0.049317745206586064],[115,220,64,0.15915572876509487],[115,220,65,0.15143176292426985],[115,220,66,0.14383497167832224],[115,220,67,0.13630421598771486],[115,220,68,0.1287834054472249],[115,220,69,0.12124617866513053],[115,220,70,0.11368148854095249],[115,220,71,0.10609014500882834],[115,220,72,0.09848197628486761],[115,220,73,0.09087321717293531],[115,220,74,0.08328412988318877],[115,220,75,0.07573686246675779],[115,220,76,0.06825354960767939],[115,220,77,0.060854660142628046],[115,220,78,0.05355759530500011],[115,220,79,0.04637554131322501],[115,221,64,0.15916420942779788],[115,221,65,0.1511185972452611],[115,221,66,0.1432172866466704],[115,221,67,0.13540197903493267],[115,221,68,0.12761722270082337],[115,221,69,0.11983639095729276],[115,221,70,0.11204832221457314],[115,221,71,0.10425375884746242],[115,221,72,0.0964623990655082],[115,221,73,0.08869019290986278],[115,221,74,0.08095688804509639],[115,221,75,0.07328383063756319],[115,221,76,0.06569202622390324],[115,221,77,0.05820046507719276],[115,221,78,0.050824716179233974],[115,221,79,0.043575793506415585],[115,222,64,0.1590392058104522],[115,222,65,0.15068766678035458],[115,222,66,0.14249798418707582],[115,222,67,0.13441525606211974],[115,222,68,0.12638497249494024],[115,222,69,0.11838016764225914],[115,222,70,0.11038933915494609],[115,222,71,0.1024128224267403],[115,222,72,0.09445976479467658],[115,222,73,0.0865453586045895],[115,222,74,0.07868833895797511],[115,222,75,0.07090875155765211],[115,222,76,0.06322599565966389],[115,222,77,0.05565714672112022],[115,222,78,0.0482155629135634],[115,222,79,0.04090977924999851],[115,223,64,0.1587847862210388],[115,223,65,0.15014365758109738],[115,223,66,0.14168216369016357],[115,223,67,0.13334925555202812],[115,223,68,0.12509162225953913],[115,223,69,0.1168818954701508],[115,223,70,0.10870803358723746],[115,223,71,0.10056966700208268],[115,223,72,0.09247502367174758],[115,223,73,0.08443812605971031],[115,223,74,0.07647626534362645],[115,223,75,0.06860775837700282],[115,223,76,0.0608499924631517],[115,223,77,0.05321776256403699],[115,223,78,0.04572190512913969],[115,223,79,0.03836823229140224],[115,224,64,0.15841671452220146],[115,224,65,0.14950222280161238],[115,224,66,0.1407851620237189],[115,224,67,0.13221867555770292],[115,224,68,0.1237508479492388],[115,224,69,0.11535385245189841],[115,224,70,0.10701494261751476],[115,224,71,0.09873279862565548],[115,224,72,0.09051442897262145],[115,224,73,0.08237235399762784],[115,224,74,0.07432207718752651],[115,224,75,0.06637984976825916],[115,224,76,0.058560733647538464],[115,224,77,0.05087696732275413],[115,224,78,0.043336638916539875],[115,224,79,0.035942670051087755],[115,225,64,0.15796496495517387],[115,225,65,0.14879239607899677],[115,225,66,0.13983487160438932],[115,225,67,0.13104993424773612],[115,225,68,0.12238718381134991],[115,225,69,0.11381828165225986],[115,225,70,0.10532964772834379],[115,225,71,0.09691883057406546],[115,225,72,0.08859140369963171],[115,225,73,0.08035815264018037],[115,225,74,0.07223255859423061],[115,225,75,0.06422858414432457],[115,225,76,0.05635876609641119],[115,225,77,0.04863262001188573],[115,225,78,0.04105536054321293],[115,225,79,0.03362694122206574],[115,226,64,0.15747644229718838],[115,226,65,0.14805921033835184],[115,226,66,0.13887426439821912],[115,226,67,0.1298836076186166],[115,226,68,0.12103838125945328],[115,226,69,0.11230967646276291],[115,226,70,0.10368299033297217],[115,226,71,0.09515463242075864],[115,226,72,0.08672862630443152],[115,226,73,0.0784139094950151],[115,226,74,0.0702218375780612],[115,226,75,0.062163998047446885],[115,226,76,0.054250338819036466],[115,226,77,0.04648761593902714],[115,226,78,0.03887816452910483],[115,226,79,0.03141899653960341],[115,227,64,0.1570181459023507],[115,227,65,0.14736757716455173],[115,227,66,0.13796591011237822],[115,227,67,0.12877956899319304],[115,227,68,0.11976118923955548],[115,227,69,0.11088122554150706],[115,227,70,0.1021241976266249],[115,227,71,0.09348513729629071],[115,227,72,0.08496649788438324],[115,227,73,0.07657536906871487],[115,227,74,0.06832100291183045],[115,227,75,0.0602126565393976],[115,227,76,0.052257756386912574],[115,227,77,0.04446038846282001],[115,227,78,0.03682011859457278],[115,227,79,0.02933114614511923],[115,228,64,0.15666666831588485],[115,228,65,0.14679516700896753],[115,228,66,0.1371879506069328],[115,228,67,0.12781597435776154],[115,228,68,0.11863341488957083],[115,228,69,0.10961004738236683],[115,228,70,0.10072937212093738],[115,228,71,0.09198511082900994],[115,228,72,0.08337812958521246],[115,228,73,0.07491367311550584],[115,228,74,0.0665989162866069],[115,228,75,0.05844083814734942],[115,228,76,0.05044442337870098],[115,228,77,0.04261119552238017],[115,228,78,0.03493808586895931],[115,228,79,0.027416641400529344],[115,229,64,0.15648107850353823],[115,229,65,0.1464028645975924],[115,229,66,0.13660249405714617],[115,229,67,0.12705572348883676],[115,229,68,0.11771844148757149],[115,229,69,0.10855974926941946],[115,229,70,0.09956210726014317],[115,229,71,0.0907178968786942],[115,229,72,0.0820263681499221],[115,229,73,0.07349090316127921],[115,229,74,0.06511660111050141],[115,229,75,0.05690819020674862],[115,229,76,0.04886827119504578],[115,229,77,0.04099589677722329],[115,229,78,0.033285490708280706],[115,229,79,0.025726109856755146],[115,230,64,0.15650020017768612],[115,230,65,0.14623084477998724],[115,230,66,0.1362506256677055],[115,230,67,0.12654045860456534],[115,230,68,0.11705821015078026],[115,230,69,0.10777237547391942],[115,230,70,0.09866439242043061],[115,230,71,0.08972529027887644],[115,230,72,0.08095267800981894],[115,230,73,0.07234805079835277],[115,230,74,0.06391442056594791],[115,230,75,0.0556542755898095],[115,230,76,0.04756787388189091],[115,230,77,0.03965187448017725],[115,230,78,0.03189831030833879],[115,230,79,0.024293905767895335],[115,231,64,0.15674514305324752],[115,231,65,0.14630110215530878],[115,231,66,0.1361549302813391],[115,231,67,0.12629308748538232],[115,231,68,0.11667575412337614],[115,231,69,0.10727095871241091],[115,231,70,0.09805918299998283],[115,231,71,0.08903012281283894],[115,231,72,0.08017973656620797],[115,231,73,0.07150761226713304],[115,231,74,0.06301465850036617],[115,231,75,0.054701124396340034],[115,231,76,0.0465649530847459],[115,231,77,0.038600472638364795],[115,231,78,0.030797428016555006],[115,231,79,0.023140357027640255],[115,232,64,0.15722169907331607],[115,232,65,0.1466198448180175],[115,232,66,0.13632188001234918],[115,232,67,0.12632017379012306],[115,232,68,0.11657760379284203],[115,232,69,0.10706194771988008],[115,232,70,0.09775285422447116],[115,232,71,0.08863874294940464],[115,232,72,0.07971393583150366],[115,232,73,0.07097610455661803],[115,232,74,0.06242403946436139],[115,232,75,0.054055744716232645],[115,232,76,0.0458668640487096],[115,232,77,0.03784944093856359],[115,232,78,0.029991016517486657],[115,232,79,0.022274068088628935],[115,233,64,0.15792260136551517],[115,233,65,0.14717974962981492],[115,233,66,0.13674408402112745],[115,233,67,0.12661419142068517],[115,233,68,0.11675605903464292],[115,233,69,0.1071375072973791],[115,233,70,0.09773753480701457],[115,233,71,0.08854338528629924],[115,233,72,0.07954778622614073],[115,233,73,0.07074649871979191],[115,233,74,0.062136183555302364],[115,233,75,0.05371258815562075],[115,233,76,0.0454690584716849],[115,233,77,0.03739537944809692],[115,233,78,0.0294769472000068],[115,233,79,0.021694275564969022],[115,234,64,0.1588296444376218],[115,234,65,0.14796207758093205],[115,234,66,0.13740239906651727],[115,234,67,0.12715564165788074],[115,234,68,0.11719132770734556],[115,234,69,0.10747768977597787],[115,234,70,0.0979933195484836],[115,234,71,0.08872442895701638],[115,234,72,0.07966222198307497],[115,234,73,0.07080057007555482],[115,234,74,0.06213399597867182],[115,234,75,0.0536559702966784],[115,234,76,0.04535752465035274],[115,234,77,0.03722618480723385],[115,234,78,0.029245226699877516],[115,234,79,0.021393257785261275],[115,235,64,0.15991566392895984],[115,235,65,0.1489386476160473],[115,235,66,0.13826789928904573],[115,235,67,0.1279150316099675],[115,235,68,0.11785352894036384],[115,235,69,0.10805247665911605],[115,235,70,0.0984903597838003],[115,235,71,0.08915254407619493],[115,235,72,0.08002880743016012],[115,235,73,0.0711111647871682],[115,235,74,0.06239199105845611],[115,235,75,0.053862446081327765],[115,235,76,0.045511205181316974],[115,235,77,0.03732349845565118],[115,235,78,0.029280461443054386],[115,235,79,0.02135879940147391],[115,236,64,0.16114637404753973],[115,236,65,0.1500736671177664],[115,236,66,0.13930370349938287],[115,236,67,0.12885471233879128],[115,236,68,0.1187045596801998],[115,236,69,0.10882368902795062],[115,236,70,0.09919083040017451],[115,236,71,0.08979072511595111],[115,236,72,0.08061184323501214],[115,236,73,0.07164438211849045],[115,236,74,0.06287855023648167],[115,236,75,0.054303139915816],[115,236,76,0.04590439228545952],[115,236,77,0.03766515724122517],[115,236,78,0.02956435082215198],[115,236,79,0.02157671196888715],[115,237,64,0.16248204037444774],[115,237,65,0.15132539638179537],[115,237,66,0.14046663700027745],[115,237,67,0.12993055341856993],[115,237,68,0.11969980101215054],[115,237,69,0.10974674303297349],[115,237,70,0.10005074960787982],[115,237,71,0.09059618730631726],[115,237,72,0.08137034867542034],[115,237,73,0.07236164845871439],[115,237,74,0.06355809023576087],[115,237,75,0.054946006810029674],[115,237,76,0.046509077259532954],[115,237,77,0.038227623152938664],[115,237,78,0.030078186029041262],[115,237,79,0.022033387840299713],[115,238,64,0.16387474106830208],[115,238,65,0.15264331112583818],[115,238,66,0.14170430810051682],[115,238,67,0.13108895564429046],[115,238,68,0.12078509330561749],[115,238,69,0.11076761294618252],[115,238,70,0.10101695376271382],[115,238,71,0.09151737486778312],[115,238,72,0.08225512220317201],[115,238,73,0.07321684604347398],[115,238,74,0.06438827240721108],[115,238,75,0.055753131307851096],[115,238,76,0.0472923443904109],[115,238,77,0.03898347411432809],[115,238,78,0.03080043626586744],[115,238,79,0.022713477213945468],[115,239,64,0.16526544083637826],[115,239,65,0.15396594835625374],[115,239,66,0.1429535619349735],[115,239,67,0.13226573587835966],[115,239,68,0.12189586627880208],[115,239,69,0.11182201558620222],[115,239,70,0.10202614678909591],[115,239,71,0.09249269361884271],[115,239,72,0.08320698843251641],[115,239,73,0.07415392337484701],[115,239,74,0.06531684768961465],[115,239,75,0.05667670369328493],[115,239,76,0.04821140356522398],[115,239,77,0.03989544875294456],[115,239,78,0.03169979344314309],[115,239,79,0.02359195321006711],[115,240,64,0.16659932880520262],[115,240,65,0.15523911243077476],[115,240,66,0.14416093306934072],[115,240,67,0.1334081342416176],[115,240,68,0.12297996481319057],[115,240,69,0.11285829912294593],[115,240,70,0.10302710157275373],[115,240,71,0.09347130258559425],[115,240,72,0.08417550616804645],[115,240,73,0.07512291263344967],[115,240,74,0.0662944588905779],[115,240,75,0.05766817837381022],[115,240,76,0.04921878236218057],[115,240,77,0.04091746410949232],[115,240,78,0.032731926891410565],[115,240,79,0.024626636768068456],[115,241,64,0.16783284508412272],[115,241,65,0.15642026893396888],[115,241,66,0.1452848161160812],[115,241,67,0.13447522421490765],[115,241,68,0.12399679089329947],[115,241,69,0.11383581680285319],[115,241,70,0.10397875495066483],[115,241,71,0.09441139321543636],[115,241,72,0.0851178542040679],[115,241,73,0.07607979173777146],[115,241,74,0.06727578589750066],[115,241,75,0.05868093825928451],[115,241,76,0.05026666865217637],[115,241,77,0.04200071447799991],[115,241,78,0.03384733334816251],[115,241,79,0.025767709518281265],[115,242,64,0.16893335575205037],[115,242,65,0.15747737834364778],[115,242,66,0.14629362959833025],[115,242,67,0.13543560362983587],[115,242,68,0.12491473360960913],[115,242,69,0.11472231267768342],[115,242,70,0.10484776275902956],[115,242,71,0.09527811713078155],[115,242,72,0.08599731871445769],[115,242,73,0.07698569644072686],[115,242,74,0.06821962114133198],[115,242,75,0.05967134215344935],[115,242,76,0.05130900555488324],[115,242,77,0.04309685468687145],[115,242,78,0.03499561337001887],[115,242,79,0.026963051977495992],[115,243,64,0.1698781543507432],[115,243,65,0.15838795822398755],[115,243,66,0.14716494889317067],[115,243,67,0.13626661358050485],[115,243,68,0.1257104928682001],[115,243,69,0.11549337044164411],[115,243,70,0.10560809439482413],[115,243,71,0.09604334623164196],[115,243,72,0.0867832370443288],[115,243,73,0.07780706355555497],[115,243,74,0.06908922501279093],[115,243,75,0.06059930168362112],[115,243,76,0.05230229546443909],[115,243,77,0.0441590328848126],[115,243,78,0.036126730570802665],[115,243,79,0.02815972302187383],[115,244,64,0.17065344364362284],[115,244,65,0.15913812222755652],[115,244,66,0.14788461221733995],[115,244,67,0.13695352538666006],[115,244,68,0.126368364876612],[115,244,69,0.11613181702901718],[115,244,70,0.10624057486745128],[115,244,71,0.09668537318081956],[115,244,72,0.08745087529320411],[115,244,73,0.07851570219190025],[115,244,74,0.06985260455426298],[115,244,75,0.06142877800263896],[115,244,76,0.05320632170992273],[115,244,77,0.045142840278604046],[115,244,78,0.037192188628314624],[115,244,79,0.029305359449867806],[115,245,64,0.17125329719255453],[115,245,65,0.1597215953977722],[115,245,66,0.14844579908134675],[115,245,67,0.1374886949475872],[115,245,68,0.1268794886365659],[115,245,69,0.11662708008180367],[115,245,70,0.10673237332522727],[115,245,71,0.09718855113559088],[115,245,72,0.08798123844314686],[115,245,73,0.07908879166086163],[115,245,74,0.07048271401156445],[115,245,75,0.06212819679598097],[115,245,76,0.053984786357811974],[115,245,77,0.04600717633109484],[115,245,78,0.03814612459666962],[115,245,79,0.02882953483386043],[115,246,64,0.1716786004202345],[115,246,65,0.16013870537305058],[115,246,66,0.14884808074111286],[115,246,67,0.1378706839214364],[115,246,68,0.1272410527600256],[115,246,69,0.1169744984710555],[115,246,70,0.10707643710143182],[115,246,71,0.09754287163308052],[115,246,72,0.08836081180947558],[115,246,73,0.07950880471063844],[115,246,74,0.0709575758093693],[115,246,75,0.0626707800818715],[115,246,76,0.0546058625928645],[115,246,77,0.04671502783086899],[115,246,78,0.038946316938047794],[115,246,79,0.027309322909852364],[115,247,64,0.17193597095456664],[115,247,65,0.16039534921754886],[115,247,66,0.1490964422937208],[115,247,67,0.1381033472748362],[115,247,68,0.12745546202641772],[115,247,69,0.1171745851458433],[115,247,70,0.10727087040125066],[115,247,71,0.09774347959662862],[115,247,72,0.08858123263253698],[115,247,73,0.0797633547733488],[115,247,74,0.07126032050887889],[115,247,75,0.06303479326090199],[115,247,76,0.05504266005504888],[115,247,77,0.04723416015787735],[115,247,78,0.03799116964168077],[115,247,79,0.025975985476377576],[115,248,64,0.1720366581935733],[115,248,65,0.16050193574101002],[115,248,66,0.1492002761957495],[115,248,67,0.13819488687294548],[115,248,68,0.12752946321608638],[115,248,69,0.1172322416907831],[115,248,70,0.1073182568448397],[115,248,71,0.09779012450822039],[115,248,72,0.08863889068746544],[115,248,73,0.07984496593974924],[115,248,74,0.07137914431736728],[115,248,75,0.06320370585530821],[115,248,76,0.05527360146448976],[115,248,77,0.04753771899302216],[115,248,78,0.036956562513713834],[115,248,79,0.024847153234394948],[115,249,64,0.17199542218627836],[115,249,65,0.1604723033231084],[115,249,66,0.14917234713043517],[115,249,67,0.13815687092199586],[115,249,68,0.12747322988984366],[115,249,69,0.11715592409846834],[115,249,70,0.1072249251948465],[115,249,71,0.0976865468894568],[115,249,72,0.08853445686707498],[115,249,73,0.07975076443410928],[115,249,74,0.07130718274886154],[115,249,75,0.06316626437889972],[115,249,76,0.055282708836080705],[115,249,77,0.047604740656445654],[115,249,78,0.0361178067606175],[115,249,79,0.023935380073618614],[115,250,64,0.1718293920974036],[115,250,65,0.16032261342678183],[115,250,66,0.14902772831447286],[115,250,67,0.13800321923595063],[115,250,68,0.12729940593802083],[115,250,69,0.11695675940840426],[115,250,70,0.1070001577305632],[115,250,71,0.09743979935231979],[115,250,72,0.08827233879281382],[115,250,73,0.07948209043836708],[115,250,74,0.07104229908541132],[115,250,75,0.0629164757987602],[115,250,76,0.055059797572584834],[115,250,77,0.04742056921116044],[115,250,78,0.035476838363437346],[115,250,79,0.023247230793624417],[115,251,64,0.1715569047112157],[115,251,65,0.16007022016995207],[115,251,66,0.14878270951645886],[115,251,67,0.13774915447611624],[115,251,68,0.12702210789482682],[115,251,69,0.11664761302939256],[115,251,70,0.10665534088591275],[115,251,71,0.0970595016217372],[115,251,72,0.08786006263083754],[115,251,73,0.07904402921376671],[115,251,74,0.07058678636013409],[115,251,75,0.06245350009026903],[115,251,76,0.05460057673067889],[115,251,77,0.04697717843662029],[115,251,78,0.035029470669696874],[115,251,79,0.022782463530016735],[115,252,64,0.1711963236347837],[115,252,65,0.15973251652822396],[115,252,66,0.14845367725923508],[115,252,67,0.13741011970992467],[115,252,68,0.1266558862077601],[115,252,69,0.11624210675062435],[115,252,70,0.10620305794770449],[115,252,71,0.09655702909781069],[115,252,72,0.08730758043801021],[115,252,73,0.07844486059285963],[115,252,74,0.06994698167995922],[115,252,75,0.06178145045120097],[115,252,76,0.053906653781979036],[115,252,77,0.046273396764334465],[115,252,78,0.034764913538424994],[115,252,79,0.022533309193605706],[115,253,64,0.1707648400823455],[115,253,65,0.15932575796180776],[115,253,66,0.1480559678970932],[115,253,67,0.13700066285218326],[115,253,68,0.126214645867022],[115,253,69,0.11575358765788807],[115,253,70,0.10565612381410365],[115,253,71,0.09594463471686521],[115,253,72,0.08662650253646532],[115,253,73,0.07769542606562016],[115,253,74,0.06913279182842533],[115,253,75,0.06090909982943386],[115,253,76,0.05298544224144853],[115,253,77,0.0453150332754273],[115,253,78,0.03466539351739311],[115,253,79,0.022483850316634357],[115,254,64,0.1702772563621618],[115,254,65,0.15886386449981846],[115,254,66,0.14760269449777902],[115,254,67,0.13653328879084664],[115,254,68,0.12571052703845487],[115,254,69,0.11519404840761754],[115,254,70,0.10502656204356378],[115,254,71,0.09523450408981993],[115,254,72,0.0858292546180834],[115,254,73,0.07680841286344993],[115,254,74,0.06815712924006155],[115,254,75,0.059849492535206716],[115,254,76,0.05184997061176475],[115,254,77,0.0441149028911913],[115,254,78,0.03470587722767894],[115,254,79,0.022609501770176677],[115,255,64,0.169744753445758],[115,255,65,0.15835720257502384],[115,255,66,0.14710354871939],[115,255,67,0.1360172802608307],[115,255,68,0.12515274660672154],[115,255,69,0.11457299957440725],[115,255,70,0.10432452468319295],[115,255,71,0.0944377441456583],[115,255,72,0.08492815951386119],[115,255,73,0.07579755465612925],[115,255,74,0.06703525762002946],[115,255,75,0.058619459855228845],[115,255,76,0.05051859119657989],[115,255,77,0.042692748944466216],[115,255,78,0.03485390012656946],[115,255,79,0.02287659586882389],[115,256,64,0.16917364427700887],[115,256,65,0.15781134818228892],[115,256,66,0.14656357915395363],[115,256,67,0.13545748881407418],[115,256,68,0.12454640182392458],[115,256,69,0.1138962950780113],[115,256,70,0.10355715565376364],[115,256,71,0.09356330578823083],[115,256,72,0.08393444382915784],[115,256,73,0.07467674872100999],[115,256,74,0.065784046697608],[115,256,75,0.057239038764093815],[115,256,76,0.04901458747001023],[115,256,77,0.04107506140395667],[115,256,78,0.03337773578254801],[115,256,79,0.023242074409868762],[115,257,64,0.16856412741540666],[115,257,65,0.1572258449419288],[115,257,66,0.14598195874697534],[115,257,67,0.13485310757611682],[115,257,68,0.12389124691495924],[115,257,69,0.11316492081929053],[115,257,70,0.10272740724684275],[115,257,71,0.09261684971948164],[115,257,72,0.08285717838388885],[115,257,73,0.07345909850775909],[115,257,74,0.06442114522242223],[115,257,75,0.05573080322541448],[115,257,76,0.04736569006658692],[115,257,77,0.03929480156048898],[115,257,78,0.03147981779997965],[115,257,79,0.02365330532840712],[115,258,64,0.16790900133881884],[115,258,65,0.15659300578096785],[115,258,66,0.14535088151225967],[115,258,67,0.13419665790444799],[115,258,68,0.12318075769745693],[115,258,69,0.11237412368386263],[115,258,70,0.10183321914156958],[115,258,71,0.0915999609381649],[115,258,72,0.08170251406654097],[115,258,73,0.07215615762358303],[115,258,74,0.06296422119007253],[115,258,75,0.05411909046381274],[115,258,76,0.04560328089870699],[115,258,77,0.03739057801174567],[115,258,78,0.029447242941613737],[115,258,79,0.021733281774794205],[115,259,64,0.16719279322097286],[115,259,65,0.15589897777504286],[115,259,66,0.14465861298066815],[115,259,67,0.13347901875675314],[115,259,68,0.12240892705064163],[115,259,69,0.11152149611475798],[115,259,70,0.10087621616051749],[115,259,71,0.09051864626422751],[115,259,72,0.08048108328351808],[115,259,73,0.07078330580102019],[115,259,74,0.0614333921990233],[115,259,75,0.052428611854582176],[115,259,76,0.04375638833653611],[115,259,77,0.03539533338581128],[115,259,78,0.027316350372249488],[115,259,79,0.01948380584294788],[115,260,64,0.1663997477879569],[115,260,65,0.15513133792750425],[115,260,66,0.14389659201701638],[115,260,67,0.13269598973436092],[115,260,68,0.12157625470668823],[115,260,69,0.1106123403546717],[115,260,70,0.0998663862197275],[115,260,71,0.08938726527226463],[115,260,72,0.07921112997699749],[115,260,73,0.06936203618977814],[115,260,74,0.05985264413159712],[115,260,75,0.05068499556427784],[115,260,76,0.0418513661769028],[115,260,77,0.033335192083824045],[115,260,78,0.02511206923828361],[115,260,79,0.017150824478112114],[115,261,64,0.1655186125588889],[115,261,65,0.1542816724568077],[115,261,66,0.14305968938138264],[115,261,67,0.13184619266742495],[115,261,68,0.1206854682902911],[115,261,69,0.10965364719978446],[115,261,70,0.0988149561964086],[115,261,71,0.0882210862792472],[115,261,72,0.07791162026000932],[115,261,73,0.06791453995237304],[115,261,74,0.058246812318960145],[115,261,75,0.04891505383207918],[115,261,76,0.039916272183158394],[115,261,77,0.03123868436123714],[115,261,78,0.022862610017032367],[115,261,79,0.014761438933861441],[115,262,64,0.1633939014553432],[115,262,65,0.1533451270394475],[115,262,66,0.14214568983495574],[115,262,67,0.13093047111640752],[115,262,68,0.11974082796698897],[115,262,69,0.10865330275733691],[115,262,70,0.0977335052848146],[115,262,71,0.08703531662310202],[115,262,72,0.07660120426626571],[115,262,73,0.0664626173185904],[115,262,74,0.05664046124256631],[115,262,75,0.04714565154833675],[115,262,76,0.037979745683135585],[115,262,77,0.029135652260439498],[115,262,78,0.020598416659745065],[115,262,79,0.012346081926979023],[115,263,64,0.1608078028660634],[115,263,65,0.15223966186486004],[115,263,66,0.14115516036526968],[115,263,67,0.1299517747631752],[115,263,68,0.11874800329637619],[115,263,69,0.10761993071053796],[115,263,70,0.09663374363642793],[115,263,71,0.08584478784682018],[115,263,72,0.07529777833957443],[115,263,73,0.06502708851603202],[115,263,74,0.05505711808940278],[115,263,75,0.045402739228314566],[115,263,76,0.03606982031480352],[115,263,77,0.027055826575388457],[115,263,78,0.018350496732458726],[115,263,79,0.00993659471890669],[115,264,64,0.15806630894983678],[115,264,65,0.14946575172986315],[115,264,66,0.1400916673698537],[115,264,67,0.12891538716590073],[115,264,68,0.11771428568909142],[115,264,69,0.10656306017580278],[115,264,70,0.09552760432385136],[115,264,71,0.08466393975469512],[115,264,72,0.07401832960574592],[115,264,73,0.06362746876167887],[115,264,74,0.053518750473084326],[115,264,75,0.04371060898354302],[115,264,76,0.034212937661844106],[115,264,77,0.02502758201620288],[115,264,78,0.01614890685586045],[115,264,79,0.007564436760234499],[115,265,64,0.15516953683360502],[115,265,65,0.1465274191202307],[115,265,66,0.13796183214587282],[115,265,67,0.1278294993428714],[115,265,68,0.11664913879750113],[115,265,69,0.10549362136798236],[115,265,70,0.09442765075575986],[115,265,71,0.08350710540937302],[115,265,72,0.07277906496911188],[115,265,73,0.06228190936344276],[115,265,74,0.05204549041022114],[115,265,75,0.04209137565342172],[115,265,76,0.032433164046008586],[115,265,77,0.0230768729731588],[115,265,78,0.014021396001157713],[115,265,79,0.007133778254914919],[115,266,64,0.1521132964218722],[115,266,65,0.14341964151848874],[115,266,66,0.13481813397439854],[115,266,67,0.1263555017924442],[115,266,68,0.11556508866711693],[115,266,69,0.104424770805479],[115,266,70,0.09334780120586213],[115,266,71,0.08238909869316083],[115,266,72,0.07159582614903834],[115,266,73,0.06100740657130302],[115,266,74,0.05065560624794989],[115,266,75,0.04056468488015861],[115,266,76,0.030751612375355272],[115,266,77,0.021226351921178353],[115,266,78,0.014994391765413846],[115,266,79,0.012678858628323008],[115,267,64,0.1488878594912245],[115,267,65,0.14013223608151562],[115,267,66,0.13148285344934335],[115,267,67,0.12299228501627206],[115,267,68,0.11447895500807963],[115,267,69,0.10337304733789451],[115,267,70,0.09230437168816227],[115,267,71,0.08132610564460162],[115,267,72,0.07048479197678789],[115,267,73,0.05982027943879547],[115,267,74,0.049365723874284465],[115,267,75,0.039147649558541345],[115,267,76,0.029186070606338568],[115,267,77,0.0238149918446556],[115,267,78,0.021137854550532464],[115,267,79,0.018517214065157495],[115,268,64,0.1454763696039533],[115,268,65,0.13664823662203252],[115,268,66,0.12793927986187603],[115,268,67,0.11940732334852461],[115,268,68,0.11104590463359357],[115,268,69,0.10235985986407724],[115,268,70,0.09131743801379048],[115,268,71,0.08033688040158006],[115,268,72,0.06946346880968286],[115,268,73,0.05873691760723143],[115,268,74,0.04819129820786675],[115,268,75,0.037855015768315445],[115,268,76,0.03357734645280984],[115,268,77,0.030559438507218456],[115,268,78,0.027581642224329066],[115,268,79,0.02464906699294344],[115,269,64,0.1418528919852269],[115,269,65,0.13294191143721182],[115,269,66,0.12416242982649318],[115,269,67,0.11557686802019768],[115,269,68,0.10718444585557987],[115,269,69,0.0989396298757434],[115,269,70,0.09041251750019356],[115,269,71,0.07944424623402427],[115,269,72,0.06855196958657327],[115,269,73,0.05777479960587684],[115,269,74,0.047514170980378564],[115,269,75,0.04421570209560322],[115,269,76,0.04090504104118349],[115,269,77,0.03760114263194125],[115,269,78,0.034318400407205775],[115,269,79,0.031066718560265938],[115,270,64,0.13798010293142027],[115,270,65,0.12897642162887551],[115,270,66,0.12011669941477349],[115,270,67,0.11146727765097161],[115,270,68,0.10303311985961909],[115,270,69,0.09477523294387906],[115,270,70,0.0866562295751344],[115,270,71,0.07864160992835233],[115,270,72,0.0677745817446015],[115,270,73,0.059099131202373645],[115,270,74,0.05563194288606927],[115,270,75,0.05209762363646367],[115,270,76,0.04852217108663033],[115,270,77,0.04492792153536477],[115,270,78,0.04133346856424518],[115,270,79,0.03775361369017061],[115,271,64,0.1338368652044062],[115,271,65,0.12473142170112951],[115,271,66,0.11578318297766141],[115,271,67,0.10706171936480872],[115,271,68,0.09857770985221928],[115,271,69,0.09029917984206884],[115,271,70,0.08219429445681725],[115,271,71,0.07423262031792387],[115,271,72,0.07048191767596462],[115,271,73,0.06769708821144159],[115,271,74,0.06402509018646453],[115,271,75,0.06025262555107341],[115,271,76,0.05640812941104245],[115,271,77,0.052517364735137496],[115,271,78,0.04860322514433796],[115,271,79,0.04468555978333841],[115,272,64,0.1295084418402637],[115,272,65,0.12029345884058062],[115,272,66,0.11124922881749758],[115,272,67,0.10244774589951512],[115,272,68,0.09390522542477825],[115,272,69,0.08559702927910035],[115,272,70,0.07749717865740981],[115,272,71,0.07578851681496422],[115,272,72,0.07542695665266044],[115,272,73,0.07498622136145505],[115,272,74,0.07262184081345688],[115,272,75,0.06861676295082457],[115,272,76,0.06450769795567382],[115,272,77,0.06032375240017886],[115,272,78,0.05609207001540951],[115,272,79,0.05183753041500131],[115,273,64,0.12509762121851054],[115,273,65,0.11576697006937867],[115,273,66,0.10662024171613305],[115,273,67,0.09773094205470068],[115,273,68,0.08912049105274748],[115,273,69,0.08155977599316062],[115,273,70,0.08113375004925265],[115,273,71,0.08072200958740049],[115,273,72,0.08029980224678869],[115,273,73,0.0798416186903003],[115,273,74,0.07932158911511086],[115,273,75,0.07711547262423628],[115,273,76,0.07275650594931261],[115,273,77,0.06829372090022029],[115,273,78,0.06375827804156016],[115,273,79,0.05917986927385921],[115,274,64,0.12069541454289467],[115,274,65,0.11124487050432269],[115,274,66,0.10199047816537621],[115,274,67,0.09300627848845792],[115,274,68,0.08742849245199134],[115,274,69,0.08677804916232315],[115,274,70,0.08619686131194243],[115,274,71,0.0856660390458949],[115,274,72,0.08516415729053757],[115,274,73,0.08466770238720162],[115,274,74,0.08415152886638066],[115,274,75,0.08358932574763842],[115,274,76,0.08108952046570633],[115,274,77,0.07637146590310379],[115,274,78,0.07155590525709274],[115,274,79,0.06667695213990833],[115,275,64,0.11638182918084687],[115,275,65,0.10680925709237109],[115,275,66,0.09744367014565869],[115,275,67,0.09390696769349527],[115,275,68,0.0929505791222438],[115,275,69,0.09210141288530349],[115,275,70,0.09134961953074948],[115,275,71,0.09068106679875228],[115,275,72,0.09007780491592832],[115,275,73,0.08951855289603505],[115,275,74,0.08897920517705372],[115,275,75,0.08843335789826687],[115,275,76,0.08785285409898648],[115,275,77,0.08449921072079442],[115,275,78,0.07943530986875315],[115,275,79,0.07428774731467658],[115,276,64,0.11222647287502698],[115,276,65,0.10253436703713335],[115,276,66,0.1011352556211335],[115,276,67,0.09982751273788736],[115,276,68,0.09864281116963156],[115,276,69,0.09758359367614411],[115,276,70,0.09664589652863265],[115,276,71,0.09582030487547392],[115,276,72,0.09509243644827259],[115,276,73,0.09444345582149274],[115,276,74,0.09385061850528677],[115,276,75,0.09328784410831899],[115,276,76,0.09272631776966758],[115,276,77,0.09213511902673764],[115,276,78,0.0873438579244359],[115,276,79,0.08196656138861619],[115,277,64,0.11083596205040278],[115,277,65,0.10916188082063319],[115,277,66,0.10751639435252926],[115,277,67,0.10596707994832666],[115,277,68,0.10454838036621276],[115,277,69,0.1032692088692267],[115,277,70,0.10213118340162916],[115,277,71,0.10112947535818274],[115,277,72,0.10025329961143516],[115,277,73,0.09948644373287859],[115,277,74,0.0988078356533704],[115,277,75,0.09819214895024911],[115,277,76,0.09761044489625234],[115,277,77,0.09703085035919796],[115,277,78,0.0952268134379711],[115,277,79,0.08966397000764452],[115,278,64,0.11795788171983784],[115,278,65,0.11603591961107096],[115,278,66,0.1141474935314717],[115,278,67,0.11235695073036975],[115,278,68,0.11070072507448234],[115,278,69,0.10919357587097714],[115,278,70,0.1078422854048657],[115,278,71,0.10664639058013917],[115,278,72,0.10559866653293944],[115,278,73,0.104685657006352],[115,278,74,0.10388825071589006],[115,278,75,0.10318230286323071],[115,278,76,0.10253930089025064],[115,278,77,0.10192707350653082],[115,278,78,0.10131054197201954],[115,278,79,0.09732793318897745],[115,279,64,0.12533453679271991],[115,279,65,0.12317283438228255],[115,279,66,0.12104726237351839],[115,279,67,0.11901819985708205],[115,279,68,0.11712327233008502],[115,279,69,0.11538234271805427],[115,279,70,0.11380683754926625],[115,279,71,0.11240035341391816],[115,279,72,0.11115912120855369],[115,279,73,0.11007252350294322],[115,279,74,0.10912366426125591],[115,279,75,0.10828999006610063],[115,279,76,0.10754396191696812],[115,279,77,0.10685377660449115],[115,279,78,0.1061841365996018],[115,279,79,0.10490509464306433],[115,280,64,0.1329696324770668],[115,280,65,0.13057859305556896],[115,280,66,0.12822390120260668],[115,280,67,0.12596136390412255],[115,280,68,0.12382900111849095],[115,280,69,0.12185093938710247],[115,280,70,0.12004264047255335],[115,280,71,0.11841137733580834],[115,280,72,0.11695666623828363],[115,280,73,0.11567075702014751],[115,280,74,0.11453918080908414],[115,280,75,0.11354135432074086],[115,280,76,0.11265123982535603],[115,280,77,0.1118380597753868],[115,280,78,0.1110670650172421],[115,280,79,0.11030035544737343],[115,281,64,0.14085644379643825],[115,281,65,0.1382484507820799],[115,281,66,0.1356746860486087],[115,281,67,0.13318593068943033],[115,281,68,0.13081982635562875],[115,281,69,0.12860384946745437],[115,281,70,0.12655681630340637],[115,281,71,0.12468922609683929],[115,281,72,0.12300364877791706],[115,281,73,0.12149517457545408],[115,281,74,0.1201519247748773],[115,281,75,0.11895562282789146],[115,281,76,0.11788222491500841],[115,281,77,0.11690260897466771],[115,281,78,0.11598332113320425],[115,281,79,0.11508737839933147],[115,282,64,0.14897739157628895],[115,282,65,0.1461664415574087],[115,282,66,0.1433853740188017],[115,282,67,0.14067964930159252],[115,282,68,0.1380858032397854],[115,282,69,0.13563370195489477],[115,282,70,0.13334478437329195],[115,282,71,0.13123227295511358],[115,282,72,0.12930150576299912],[115,282,73,0.12755033268134258],[115,282,74,0.12596957514320836],[115,282,75,0.12454354861599823],[115,282,76,0.12325064699688254],[115,282,77,0.12206398797571594],[115,282,78,0.12095211833762251],[115,282,79,0.1198797781006123],[115,283,64,0.15730344111954983],[115,283,65,0.15430469077954614],[115,283,66,0.1513294291105325],[115,283,67,0.14810716595301937],[115,283,68,0.14532656224457272],[115,283,69,0.14292018305142737],[115,283,70,0.14038905674621246],[115,283,71,0.1380261795284827],[115,283,72,0.13583932855499642],[115,283,73,0.13382898285272438],[115,283,74,0.13198871920080738],[115,283,75,0.13030567184294553],[115,283,76,0.1287610552530418],[115,283,77,0.12733074907967776],[115,283,78,0.12598594430512586],[115,283,79,0.12469384957307261],[115,284,64,0.16295492938429174],[115,284,65,0.15736368087112595],[115,284,66,0.1526841144708188],[115,284,67,0.14893262131074536],[115,284,68,0.14610154255646918],[115,284,69,0.14415649689804189],[115,284,70,0.14303384202192088],[115,284,71,0.14264123322668848],[115,284,72,0.14259224723140468],[115,284,73,0.14031034664846986],[115,284,74,0.13819302571050537],[115,284,75,0.13623040046932985],[115,284,76,0.13440681742924007],[115,284,77,0.13270136315597303],[115,284,78,0.13108843516745505],[115,284,79,0.12953837314436525],[115,285,64,0.16424747976373155],[115,285,65,0.1585573742976168],[115,285,66,0.1537920472372647],[115,285,67,0.14996890308229804],[115,285,68,0.14708077555257787],[115,285,69,0.14509315574073883],[115,285,70,0.14394154961059663],[115,285,71,0.14353195082197828],[115,285,72,0.14373747777131185],[115,285,73,0.14440072393548894],[115,285,74,0.144551237936105],[115,285,75,0.14229191078049575],[115,285,76,0.14016793890268575],[115,285,77,0.1381619696181787],[115,285,78,0.13625206971975157],[115,285,79,0.13441226680703428],[115,286,64,0.16574691636112052],[115,286,65,0.15995764705893306],[115,286,66,0.1551042575365067],[115,286,67,0.15120528936957867],[115,286,68,0.14825424494989758],[115,286,69,0.1462167190773414],[115,286,70,0.14502765513894278],[115,286,71,0.14459173463821914],[115,286,72,0.14477989670398556],[115,286,73,0.14543176596040644],[115,286,74,0.14643674737016593],[115,286,75,0.1477302791299299],[115,286,76,0.14600870215506323],[115,286,77,0.14368394691856698],[115,286,78,0.14145568429431205],[115,286,79,0.1393020594321043],[115,287,64,0.16743854635901523],[115,287,65,0.16155074029279515],[115,287,66,0.1566078649978859],[115,287,67,0.15262971439312628],[115,287,68,0.14961062905385783],[115,287,69,0.14751653438789766],[115,287,70,0.14628209853830038],[115,287,71,0.14581104150941804],[115,287,72,0.14597254000181578],[115,287,73,0.14660370183656968],[115,287,74,0.14759237504163525],[115,287,75,0.1488733064042541],[115,287,76,0.15039149361243098],[115,287,77,0.14922130410137704],[115,287,78,0.14666180888426444],[115,287,79,0.1441791854595857],[115,288,64,0.1693064545414955],[115,288,65,0.1633216624872887],[115,288,66,0.15828876043539747],[115,288,67,0.15422890066702627],[115,288,68,0.1511374236660599],[115,288,69,0.14898080637321032],[115,288,70,0.14769372522441454],[115,288,71,0.1471792881431138],[115,288,72,0.1473053279688725],[115,288,73,0.1479068931148494],[115,288,74,0.1488704797835206],[115,288,75,0.15013018939834763],[115,288,76,0.15163042973927948],[115,288,77,0.1533229721865001],[115,288,78,0.15181382502662288],[115,288,79,0.14899710160834354],[115,289,64,0.17133369077431876],[115,289,65,0.16525436685770037],[115,289,66,0.16013177349457683],[115,289,67,0.15598851739227404],[115,289,68,0.15282109178987646],[115,289,69,0.15059673861047793],[115,289,70,0.1492504203919536],[115,289,71,0.14868497876869444],[115,289,72,0.14876732014826966],[115,289,73,0.14933089313463455],[115,289,74,0.1502610557377358],[115,289,75,0.15149132048293987],[115,289,76,0.1529655525374001],[115,289,77,0.1546349285820804],[115,289,78,0.15645540434025373],[115,289,79,0.1536882294393169],[115,290,64,0.173502481600523],[115,290,65,0.167331953598633],[115,290,66,0.16212086587648983],[115,290,67,0.15789336506848012],[115,290,68,0.1546472401337881],[115,290,69,0.1523507025244531],[115,290,70,0.15093927108254382],[115,290,71,0.15031586096102056],[115,290,72,0.15034686556254578],[115,290,73,0.15086459230743204],[115,290,74,0.15175348160024912],[115,290,75,0.1529465234421081],[115,290,76,0.1543870970282682],[115,290,77,0.15602583108097057],[115,290,78,0.15781797235969972],[115,290,79,0.15817761259973162],[115,291,64,0.1757944659514678],[115,291,65,0.16953689701139205],[115,291,66,0.16423935013882313],[115,291,67,0.15992758632391366],[115,291,68,0.156600822412458],[115,291,69,0.15422843367412278],[115,291,70,0.1527467560263242],[115,291,71,0.15205910963936012],[115,291,72,0.15203178148040136],[115,291,73,0.15249639223303532],[115,291,74,0.15333669055047783],[115,291,75,0.1544852195343737],[115,291,76,0.15588493783739046],[115,291,77,0.15748598169578454],[115,291,78,0.1592429329892775],[115,291,79,0.16111218959021945],[115,292,64,0.17819095497342152],[115,292,65,0.17185129750674627],[115,292,66,0.16647013407417638],[115,292,67,0.16207490296398666],[115,292,68,0.15866636944564588],[115,292,69,0.156215255355009],[115,292,70,0.15465896325711714],[115,292,71,0.15390153924173278],[115,292,72,0.15380956070989474],[115,292,73,0.15421440864836472],[115,292,74,0.1549993692683756],[115,292,75,0.1560966228337408],[115,292,76,0.157448780974375],[115,292,77,0.15900555105773456],[115,292,78,0.16072090283680945],[115,292,79,0.1625503330042698],[115,293,64,0.18067321596959007],[115,293,65,0.17425715848296403],[115,293,66,0.16879599066545617],[115,293,67,0.1643188792380763],[115,293,68,0.16082824605485907],[115,293,69,0.1582963295169882],[115,293,70,0.15666183550111898],[115,293,71,0.15582984407456296],[115,293,72,0.15566760741799263],[115,293,73,0.15600670320887394],[115,293,74,0.15673018603911187],[115,293,75,0.1577699648505731],[115,293,76,0.15906838501332415],[115,293,77,0.16057479606514768],[115,293,78,0.1622426164566555],[115,293,79,0.16402649165101002],[115,294,64,0.18322278045758886],[115,294,65,0.17673668807912069],[115,294,66,0.171199853618371],[115,294,67,0.16664321132468776],[115,294,68,0.1630709347577424],[115,294,69,0.16045693499763156],[115,294,70,0.1587414433391049],[115,294,71,0.15783086683764141],[115,294,72,0.15759350147647666],[115,294,73,0.15786154410252615],[115,294,74,0.1585180479453426],[115,294,75,0.15949474843231068],[115,294,76,0.16073381167355316],[115,294,77,0.16218430697469513],[115,294,78,0.16379916965378927],[115,294,79,0.16553225251106224],[115,295,64,0.18582177634247593],[115,295,65,0.17927262580380193],[115,295,66,0.17366513847114712],[115,295,67,0.16903204303507596],[115,295,68,0.16537934626032516],[115,295,69,0.16268277307118545],[115,295,70,0.1608842861422748],[115,295,71,0.15989189532451772],[115,295,72,0.15957529133432868],[115,295,73,0.1597676954964605],[115,295,74,0.16035238714719643],[115,295,75,0.16126103094414962],[115,295,76,0.1624357058007559],[115,295,77,0.16382528393545326],[115,295,78,0.16538229219127823],[115,295,79,0.1670598571754589],[115,296,64,0.18845328420516227],[115,296,65,0.18184859403901188],[115,296,66,0.17617608928127887],[115,296,67,0.1714703077351388],[115,296,68,0.167739156746939],[115,296,69,0.1649603003130034],[115,296,70,0.1630776207815463],[115,296,71,0.16200098729813245],[115,296,72,0.16160181541640223],[115,296,73,0.16171473581615747],[115,296,74,0.16222347624978223],[115,296,75,0.16305973672948984],[115,296,76,0.16416560474842545],[115,296,77,0.16548984296560532],[115,296,78,0.16698464990097453],[115,296,79,0.1686024995067223],[115,297,64,0.1911017177064022],[115,297,65,0.18444947441949483],[115,297,66,0.17871815088951798],[115,297,67,0.17394409648578912],[115,297,68,0.1701371719680129],[115,297,69,0.16727708877963762],[115,297,70,0.16530981811050638],[115,297,71,0.16414732354189898],[115,297,72,0.16366305204859122],[115,297,73,0.16369340485731446],[115,297,74,0.1641227727584312],[115,297,75,0.16488299885036706],[115,297,76,0.16591627715974194],[115,297,77,0.16717135137199587],[115,297,78,0.16860017619762924],[115,297,79,0.17015465258100182],[115,298,64,0.19375322810616924],[115,298,65,0.187061809087272],[115,298,66,0.18127836676090742],[115,298,67,0.17644105240160715],[115,298,68,0.1725617181255474],[115,298,69,0.16962221350439233],[115,298,70,0.16757074722182091],[115,298,71,0.16632158908603534],[115,298,72,0.16575049790929547],[115,298,73,0.16569597973022995],[115,298,74,0.16604329262147072],[115,298,75,0.16672453010766203],[115,298,76,0.16768209114972424],[115,298,77,0.16886479261233484],[115,298,78,0.17022443299622678],[115,298,79,0.17171242491106542],[115,299,64,0.19639613289854957],[115,299,65,0.1896742268215273],[115,299,66,0.18384580240299125],[115,299,67,0.17895079122790886],[115,299,68,0.17500305955640294],[115,299,69,0.17198666730847206],[115,299,70,0.1698521874772374],[115,299,71,0.16851638260928103],[115,299,72,0.16785757500731913],[115,299,73,0.16771667963683368],[115,299,74,0.1679800128606674],[115,299,75,0.1685800233412286],[115,299,76,0.16945941188778507],[115,299,77,0.1705671606001901],[115,299,78,0.17185500103267914],[115,299,79,0.17327394595028545],[115,300,64,0.1990213685621472],[115,300,65,0.19227789404383738],[115,300,66,0.186411994361195],[115,300,67,0.18146534813622225],[115,300,68,0.1774538432133955],[115,300,69,0.17436380292772025],[115,300,70,0.17214826831117644],[115,300,71,0.17072665401599332],[115,300,72,0.16998006618619563],[115,300,73,0.16975209948035513],[115,300,74,0.16993030328933373],[115,300,75,0.17044758100993124],[115,300,76,0.17124702858068078],[115,300,77,0.17227788345276085],[115,300,78,0.17349189958787092],[115,300,79,0.17483978087760937],[115,301,64,0.2016229674258906],[115,301,65,0.1948669906986313],[115,301,66,0.18897142479126489],[115,301,67,0.18397965073805994],[115,301,68,0.1799095699440865],[115,301,69,0.17674980245483363],[115,301,70,0.17445593680779467],[115,301,71,0.17295017018850767],[115,301,72,0.17211657915482262],[115,301,73,0.1718016723075157],[115,301,74,0.1718943873179793],[115,301,75,0.17232817405147616],[115,301,76,0.17304661085573972],[115,301,77,0.17399927668131418],[115,301,78,0.17513803561493882],[115,301,79,0.17641337466339915],[115,302,64,0.2041985586503641],[115,302,65,0.19743921100900916],[115,302,66,0.1915220216088923],[115,302,67,0.1864920183171166],[115,302,68,0.18236909256739642],[115,302,69,0.17914417409718253],[115,302,70,0.17677545305165296],[115,302,71,0.1751880089148946],[115,302,72,0.17426903904454302],[115,302,73,0.173868160583378],[115,302,74,0.1738758318476455],[115,302,75,0.1742261300221731],[115,302,76,0.17486319454450663],[115,302,77,0.17573702582442485],[115,302,78,0.17679968226992385],[115,302,79,0.17800152541627812],[115,303,64,0.20674989332464097],[115,303,65,0.19999628910789063],[115,303,66,0.19406568421649673],[115,303,67,0.18900468727986097],[115,303,68,0.18483514074801224],[115,303,69,0.18155027625020628],[115,303,70,0.17911091325195605],[115,303,71,0.17744508099207967],[115,303,72,0.17644320949263403],[115,303,73,0.1759581762988165],[115,303,74,0.1758820662508831],[115,303,75,0.17614965051658743],[115,303,76,0.17670569686676205],[115,303,77,0.1775006985239738],[115,303,78,0.1784869868457542],[115,303,79,0.17961488701094253],[115,304,64,0.2092833936785129],[115,304,65,0.2025445495443936],[115,304,66,0.19660883480706517],[115,304,67,0.1915243628244246],[115,304,68,0.18731487266848912],[115,304,69,0.18397586888628578],[115,304,70,0.18147080064026805],[115,304,71,0.17973068050423083],[115,304,72,0.17864924225211232],[115,304,73,0.17808272991051735],[115,304,74,0.17792493044028354],[115,304,75,0.178111357866994],[115,304,76,0.17858746101482936],[115,304,77,0.17930428604382068],[115,304,78,0.18021450810947276],[115,304,79,0.18126850099685138],[115,305,64,0.2118107264102601],[115,305,65,0.20509548266558247],[115,305,66,0.19916299524519],[115,305,67,0.19406279682792432],[115,305,68,0.18982045349918603],[115,305,69,0.18643369225923162],[115,305,70,0.18386856414183997],[115,305,71,0.1820590632765496],[115,305,72,0.1809022553279896],[115,305,73,0.18025780811363973],[115,305,74,0.18002125202469527],[115,305,75,0.18012887112276382],[115,305,76,0.18052683013829873],[115,305,77,0.18116677423127958],[115,305,78,0.18200178304283748],[115,305,79,0.1829823577879244],[115,306,64,0.21434940012992457],[115,306,65,0.2076663448735516],[115,306,66,0.2017453895252679],[115,306,67,0.1966373919521875],[115,306,68,0.19236966066600034],[115,306,69,0.18894207292435283],[115,306,70,0.18632322482051605],[115,306,71,0.18445005350443291],[115,306,72,0.18322293963994601],[115,306,73,0.18250498044710786],[115,306,74,0.182193452553094],[115,306,75,0.1822254113096517],[115,306,76,0.18254775072913781],[115,306,77,0.18311274392136512],[115,306,78,0.1838739229862636],[115,306,79,0.18478198713321567],[115,307,64,0.21692181594989782],[115,307,65,0.2102792438465564],[115,307,66,0.2043780568114838],[115,307,67,0.19927033569327157],[115,307,68,0.19498503234204037],[115,307,69,0.19152408061749376],[115,307,70,0.18885853590602752],[115,307,71,0.18692820284238623],[115,307,72,0.1856367146104763],[115,307,73,0.1848505507421702],[115,307,74,0.18446869626751347],[115,307,75,0.18442895066455572],[115,307,76,0.18467892682768183],[115,307,77,0.1851715355340685],[115,307,78,0.18586079463552657],[115,307,79,0.18669766180355532],[115,308,64,0.2195240958242949],[115,308,65,0.21293057074732474],[115,308,66,0.20705776555306077],[115,308,67,0.20195887346231287],[115,308,68,0.19766438010324505],[115,308,69,0.19417816980758562],[115,308,70,0.19147365710272302],[115,308,71,0.18949342238002015],[115,308,72,0.18814427100550896],[115,308,73,0.1872960007355125],[115,308,74,0.18684926964517115],[115,308,75,0.18674260378047913],[115,308,76,0.18692432966111613],[115,308,77,0.18734800685717432],[115,308,78,0.18796817077004774],[115,308,79,0.1887360944196629],[115,309,64,0.22212519260090952],[115,309,65,0.21559002248134868],[115,309,66,0.20975495452999926],[115,309,67,0.20467417525492296],[115,309,68,0.20037958802216588],[115,309,69,0.1968769176414952],[115,309,70,0.19414183704900168],[115,309,71,0.1921196140741962],[115,309,72,0.19072015409407309],[115,309,73,0.18981652542304872],[115,309,74,0.1893110666002473],[115,309,75,0.18914305803147657],[115,309,76,0.18926156722777765],[115,309,77,0.18962083501936564],[115,309,78,0.19017595776505689],[115,309,79,0.18761124204144825],[115,310,64,0.224695245870218],[115,310,65,0.2182283574448303],[115,310,66,0.21244100297927893],[115,310,67,0.2073882357375675],[115,310,68,0.20310325510080265],[115,310,69,0.19959351300800354],[115,310,70,0.19683683965358728],[115,310,71,0.19478110514897606],[115,310,72,0.19333925015471615],[115,310,73,0.1923875809009476],[115,310,74,0.19183016373261022],[115,310,75,0.1916071037034128],[115,310,76,0.1916682672319576],[115,310,77,0.19196862880585688],[115,310,78,0.1900971115476517],[115,310,79,0.1839669867413137],[115,311,64,0.2272067924337464],[115,311,65,0.22081858982100075],[115,311,66,0.2150894122403786],[115,311,67,0.21007504682051867],[115,311,68,0.20580986226251105],[115,311,69,0.20230292118779836],[115,311,70,0.19953410920149536],[115,311,71,0.197453815801089],[115,311,72,0.19597795803104742],[115,311,73,0.19498605983956624],[115,311,74,0.19438399823923444],[115,311,75,0.19411281144185533],[115,311,76,0.1941232500768213],[115,311,77,0.19297192695429494],[115,311,78,0.1863154306556455],[115,311,79,0.18001527832629316],[115,312,64,0.22963480854085833],[115,312,65,0.22333603198428892],[115,312,66,0.2176758472520388],[115,312,67,0.21271063720215433],[115,312,68,0.20847580895954904],[115,312,69,0.2049819166344209],[115,312,70,0.20221079854930304],[115,312,71,0.20011528222017028],[115,312,72,0.19861420659890736],[115,312,73,0.1975903032695005],[115,312,74,0.19695137411723757],[115,312,75,0.19663953314340915],[115,312,76,0.19619198850445124],[115,312,77,0.18905776753953996],[115,312,78,0.18223876776168643],[115,312,79,0.17579778998332288],[115,313,64,0.23195679318473586],[115,313,65,0.22575823980291],[115,313,66,0.22017794436823254],[115,313,67,0.21527274358187393],[115,313,68,0.2110789490662395],[115,313,69,0.2076084852551733],[115,313,70,0.20484503995145242],[115,313,71,0.20274379859577157],[115,313,72,0.20122647109610195],[115,313,73,0.20017899490845392],[115,313,74,0.19951123866200374],[115,313,75,0.1991665652338657],[115,313,76,0.1921253009307679],[115,313,77,0.1848476505549249],[115,313,78,0.17790228227012264],[115,313,79,0.1713543441460313],[115,314,64,0.234152439578385],[115,314,65,0.22806470806598753],[115,314,66,0.22257502951635966],[115,314,67,0.2177405502893019],[115,314,68,0.2135983507102993],[115,314,69,0.21016160320093533],[115,314,70,0.20741574162712795],[115,314,71,0.20531823038191852],[115,314,72,0.20379360215001538],[115,314,73,0.20273100520328147],[115,314,74,0.20204254095031818],[115,314,75,0.1953994816869299],[115,314,76,0.18774940315360308],[115,314,77,0.18036996543271808],[115,314,78,0.17333823211293917],[115,314,79,0.16672096633588487],[115,315,64,0.23282557187047312],[115,315,65,0.23023679295764915],[115,315,66,0.22484817852422787],[115,315,67,0.22009488455146994],[115,315,68,0.21601462326379847],[115,315,69,0.21262169210215576],[115,315,70,0.20990316754548619],[115,315,71,0.20781871476785568],[115,315,72,0.20629564295514613],[115,315,73,0.2052263211735902],[115,315,74,0.1987234488383713],[115,315,75,0.19080639527139268],[115,315,76,0.18308630980107507],[115,315,77,0.17564941098003353],[115,315,78,0.16857400610957982],[115,315,79,0.16192770394935924],[115,316,64,0.23023036451444384],[115,316,65,0.22815271609770968],[115,316,66,0.2262428746042531],[115,316,67,0.22231829352660287],[115,316,68,0.21831000501187786],[115,316,69,0.21497071620577513],[115,316,70,0.21228904293895834],[115,316,71,0.21022677358969571],[115,316,72,0.2087139487605686],[115,316,73,0.2019172621235225],[115,316,74,0.19384928351941386],[115,316,75,0.18589751969062515],[115,316,76,0.1781537644816507],[115,316,77,0.17070498346164747],[115,316,78,0.1636299084049435],[115,316,79,0.15699621357016078],[115,317,64,0.22757769151099502],[115,317,65,0.2255926274786457],[115,317,66,0.22376451015256785],[115,317,67,0.22206723739355513],[115,317,68,0.2204684417090134],[115,317,69,0.21719226636640426],[115,317,70,0.21455664271875885],[115,317,71,0.21252540527730973],[115,317,72,0.20479524016370151],[115,317,73,0.19669330511657798],[115,317,74,0.18862541896645757],[115,317,75,0.18068469532890968],[115,317,76,0.17296315525015324],[115,317,77,0.16554770369429656],[115,317,78,0.15851669935511753],[115,317,79,0.1519371209865845],[115,318,64,0.2248567986007865],[115,318,65,0.22295428152889277],[115,318,66,0.22119546452856745],[115,318,67,0.21955681989131545],[115,318,68,0.21805874344204956],[115,318,69,0.2167296995865065],[115,318,70,0.21508668115220106],[115,318,71,0.2071835693428847],[115,318,72,0.1991557327159036],[115,318,73,0.19108435351445124],[115,318,74,0.1830590909921767],[115,318,75,0.17517285067082491],[115,318,76,0.16751714937657405],[115,318,77,0.16017808152324003],[115,318,78,0.15323289098634596],[115,318,79,0.14674715180264494],[115,319,64,0.2220529763679994],[115,319,65,0.22022476268274574],[115,319,66,0.21852484548350934],[115,319,67,0.21693201565723397],[115,319,68,0.21546732768776286],[115,319,69,0.21415834247899815],[115,319,70,0.20893633493267072],[115,319,71,0.20107261139688942],[115,319,72,0.19309826558020585],[115,319,73,0.18509435157203163],[115,319,74,0.1771500646788537],[115,319,75,0.16935750476345107],[115,319,76,0.16180704557274467],[115,319,77,0.15458331557140803],[115,319,78,0.1477617946591656],[115,319,79,0.141406030026161],[116,-64,64,0.33631826808821486],[116,-64,65,0.3421063525379185],[116,-64,66,0.3480041138415352],[116,-64,67,0.35399206297168384],[116,-64,68,0.36007664900310293],[116,-64,69,0.36627771051409697],[116,-64,70,0.3726073486464865],[116,-64,71,0.3790698585388345],[116,-64,72,0.3856621653543569],[116,-64,73,0.3923743050573137],[116,-64,74,0.3991899503835022],[116,-64,75,0.4060869823388308],[116,-64,76,0.41303810744859115],[116,-64,77,0.4200115208698273],[116,-64,78,0.42697161537042144],[116,-64,79,0.43387973607264435],[116,-63,64,0.33777097025842706],[116,-63,65,0.34366503313092484],[116,-63,66,0.3496730342776328],[116,-63,67,0.35577663014552496],[116,-63,68,0.3619818952876891],[116,-63,69,0.3683069817811457],[116,-63,70,0.37476215815563657],[116,-63,71,0.3813498352121359],[116,-63,72,0.38806506549377284],[116,-63,73,0.3948960821266833],[116,-63,74,0.40182487728240224],[116,-63,75,0.4088278204072647],[116,-63,76,0.4158763162595641],[116,-63,77,0.4229375026927461],[116,-63,78,0.42997498802293044],[116,-63,79,0.43694962772290885],[116,-62,64,0.33940171353135257],[116,-62,65,0.3453885512564269],[116,-62,66,0.3514920372119391],[116,-62,67,0.3576952795058324],[116,-62,68,0.36400391171163327],[116,-62,69,0.3704341572350759],[116,-62,70,0.3769943689331542],[116,-62,71,0.38368513127224585],[116,-62,72,0.3904997986051327],[116,-62,73,0.39742506862936233],[116,-62,74,0.40444159113977796],[116,-62,75,0.41152461208738067],[116,-62,76,0.418644652858258],[116,-62,77,0.42576822459085156],[116,-62,78,0.43285857725756083],[116,-62,79,0.43987648314885325],[116,-61,64,0.3411960810042873],[116,-61,65,0.3472625750417003],[116,-61,66,0.35344686158555416],[116,-61,67,0.3597337635708707],[116,-61,68,0.36612842822409275],[116,-61,69,0.3726449663710547],[116,-61,70,0.3792897775629101],[116,-61,71,0.38606171091621255],[116,-61,72,0.3929526190119495],[116,-61,73,0.3999479439215409],[116,-61,74,0.40702733538464575],[116,-61,75,0.4141653010683442],[116,-61,76,0.4213318887446564],[116,-61,77,0.4284934001341229],[116,-61,78,0.4356131360774995],[116,-61,79,0.4426521726166996],[116,-60,64,0.3431359654721517],[116,-60,65,0.34926943372746344],[116,-60,66,0.3555203065613132],[116,-60,67,0.36187533130711685],[116,-60,68,0.36833913965742265],[116,-60,69,0.3749236012319928],[116,-60,70,0.38163316353249077],[116,-60,71,0.38846505492319106],[116,-60,72,0.3954098332274769],[116,-60,73,0.40245196441805015],[116,-60,74,0.40957043138226706],[116,-60,75,0.4167393726539446],[116,-60,76,0.42392875091570903],[116,-60,77,0.4311050509921755],[116,-60,78,0.438232006974119],[116,-60,79,0.4452713580384569],[116,-59,64,0.3452006058702424],[116,-59,65,0.3513891875784447],[116,-59,66,0.35769333540387405],[116,-59,67,0.3641018664099811],[116,-59,68,0.37061887617554207],[116,-59,69,0.37725391255315566],[116,-59,70,0.3840095008980397],[116,-59,71,0.3908813745590092],[116,-59,72,0.39785900032722493],[116,-59,73,0.40492613278864215],[116,-59,74,0.412061397554594],[116,-59,75,0.4192389032598863],[116,-59,76,0.4264288821354011],[116,-59,77,0.4335983588831943],[116,-59,78,0.44071184750656606],[116,-59,79,0.4477320756767129],[116,-58,64,0.3473678235355744],[116,-58,65,0.35360089746178963],[116,-58,66,0.35994637813445696],[116,-58,67,0.36639522276256364],[116,-58,68,0.3729509683202165],[116,-58,69,0.379620796490867],[116,-58,70,0.38640535474575205],[116,-58,71,0.39329900248519567],[116,-58,72,0.4002902993985348],[116,-58,73,0.4073625221304817],[116,-58,74,0.4144942092479047],[116,-58,75,0.4216597344208381],[116,-58,76,0.42882990765374607],[116,-58,77,0.4359726043283368],[116,-58,78,0.4430534217476938],[116,-58,79,0.4500363628042604],[116,-57,64,0.34961545815310313],[116,-57,65,0.355884093949756],[116,-57,66,0.36226083282142824],[116,-57,67,0.36873875695288355],[116,-57,68,0.3753208065674936],[116,-57,69,0.3820117718892883],[116,-57,70,0.38881046245368733],[116,-57,71,0.3957099607322353],[116,-57,72,0.40269806418835086],[116,-57,73,0.4097577553037725],[116,-57,74,0.41686769960406894],[116,-57,75,0.4240027716363529],[116,-57,76,0.4311346087791002],[116,-57,77,0.43823219269336805],[116,-57,78,0.44526245815690474],[116,-57,79,0.45219092895868457],[116,-56,64,0.35191945715237677],[116,-56,65,0.35821642526339476],[116,-56,66,0.3646162683093887],[116,-56,67,0.3711140830323154],[116,-56,68,0.3777121460892369],[116,-56,69,0.3844128377221309],[116,-56,70,0.3912131545657772],[116,-56,71,0.3981049662089879],[116,-56,72,0.4050754063706576],[116,-56,73,0.41210729163787646],[116,-56,74,0.4191795678327244],[116,-56,75,0.4262677840043603],[116,-56,76,0.4333445939745599],[116,-56,77,0.44038028529859036],[116,-56,78,0.4473433354393814],[116,-56,79,0.4542009948924026],[116,-55,64,0.35423326716330156],[116,-55,65,0.360550047991456],[116,-55,66,0.3669637899293845],[116,-55,67,0.3734714015073037],[116,-55,68,0.3800744166890009],[116,-55,69,0.38677284605929785],[116,-55,70,0.3935619534628984],[116,-55,71,0.40043250783135975],[116,-55,72,0.4073711177275173],[116,-55,73,0.414360593181953],[116,-55,74,0.4213803349350071],[116,-55,75,0.42840675113300225],[116,-55,76,0.43541370146356106],[116,-55,77,0.4423729686528063],[116,-55,78,0.44925475718694846],[116,-55,79,0.45602821906334284],[116,-54,64,0.35650450839860076],[116,-54,65,0.36283028411011037],[116,-54,66,0.36924666300455994],[116,-54,67,0.3757520854715278],[116,-54,68,0.3823472630778286],[116,-54,69,0.38902995312999544],[116,-54,70,0.39579384519161576],[116,-54,71,0.40262879512343364],[116,-54,72,0.4095210939857577],[116,-54,73,0.41645376451780236],[116,-54,74,0.42340688537274884],[116,-54,75,0.4303579432270524],[116,-54,76,0.43728221282269875],[116,-54,77,0.44415316494233864],[116,-54,78,0.45094290225968703],[116,-54,79,0.45762262295222117],[116,-53,64,0.3586873168841872],[116,-53,65,0.3650095120394034],[116,-53,66,0.3714157512462499],[116,-53,67,0.37790566564413475],[116,-53,68,0.3844790654467091],[116,-53,69,0.3911316330745522],[116,-53,70,0.39785570425914707],[116,-53,71,0.4046404670752348],[116,-53,72,0.41147215377865787],[116,-53,73,0.41833426140418606],[116,-53,74,0.42520780139272607],[116,-53,75,0.4320715784605302],[116,-53,76,0.43890249886588206],[116,-53,77,0.4456759081719023],[116,-53,78,0.4523659585477468],[116,-53,79,0.45894600559556065],[116,-52,64,0.36074268162151407],[116,-52,65,0.3670474650367281],[116,-52,66,0.37342977278231787],[116,-52,67,0.3798900405193747],[116,-52,68,0.3864271006931691],[116,-52,69,0.39303478820663973],[116,-52,70,0.3997043521357936],[116,-52,71,0.4064245994956987],[116,-52,72,0.41318199695315316],[116,-52,73,0.4199608036558019],[116,-52,74,0.4267432355674538],[116,-52,75,0.43350966164447613],[116,-52,76,0.44023883213197],[116,-52,77,0.446908139201624],[116,-52,78,0.453493910095922],[116,-52,79,0.45997173288672977],[116,-51,64,0.36263884665044593],[116,-51,65,0.36891158683206926],[116,-51,66,0.37525560550157827],[116,-51,67,0.3816717274453627],[116,-51,68,0.3881577356871778],[116,-51,69,0.3947058820583852],[116,-51,70,0.40130662910741455],[116,-51,71,0.4079487163320963],[116,-51,72,0.41461915775596303],[116,-51,73,0.4213032743644546],[116,-51,74,0.42798476194309487],[116,-51,75,0.4346457948047936],[116,-51,76,0.4412671658360822],[116,-51,77,0.44782846323301245],[116,-51,78,0.45430828423691],[116,-51,79,0.4606844861192108],[116,-50,64,0.3643518362096852],[116,-50,65,0.37057751022454993],[116,-50,66,0.3768687149720239],[116,-50,67,0.38322623544036744],[116,-50,68,0.3896467408907064],[116,-50,69,0.39612119082665187],[116,-50,70,0.4026395819997411],[116,-50,71,0.4091909137581517],[116,-50,72,0.4157630671255845],[116,-50,73,0.4223427240285948],[116,-50,74,0.4289153273991204],[116,-50,75,0.43546508282171614],[116,-50,76,0.44197500233400633],[116,-50,77,0.44842699092488086],[116,-50,78,0.4548019762083238],[116,-50,79,0.46108008168258746],[116,-49,64,0.3643158662170809],[116,-49,65,0.37103121963314123],[116,-49,66,0.37783875673075523],[116,-49,67,0.3845360548214901],[116,-49,68,0.3908779439266707],[116,-49,69,0.39726615859476583],[116,-49,70,0.40369054651254926],[116,-49,71,0.41014068127786246],[116,-49,72,0.41660560964177584],[116,-49,73,0.4230736457579987],[116,-49,74,0.42953221338020847],[116,-49,75,0.43596773688592716],[116,-49,76,0.44236558193828723],[116,-49,77,0.4487100465253407],[116,-49,78,0.4549844030409365],[116,-49,79,0.4611709919928168],[116,-48,64,0.3640959481204026],[116,-48,65,0.3708530402317916],[116,-48,66,0.3777099664247187],[116,-48,67,0.38464951304863537],[116,-48,68,0.391657709608555],[116,-48,69,0.39813157545833544],[116,-48,70,0.4044552698062012],[116,-48,71,0.4107989803017545],[116,-48,72,0.4171531283789828],[116,-48,73,0.42350783567824346],[116,-48,74,0.4298526420665531],[116,-48,75,0.4361762810361057],[116,-48,76,0.4424665135084031],[116,-48,77,0.44871002098959784],[116,-48,78,0.45489235893559343],[116,-48,79,0.46099797109438656],[116,-47,64,0.36397411673861146],[116,-47,65,0.3707703689064162],[116,-47,66,0.3776724937051167],[116,-47,67,0.38466481092897353],[116,-47,68,0.39173491348825973],[116,-47,69,0.3987144384379031],[116,-47,70,0.4049357031470431],[116,-47,71,0.41117289355587483],[116,-47,72,0.4174179172553857],[116,-47,73,0.42366277689792387],[116,-47,74,0.4298991619039423],[116,-47,75,0.43611810694347575],[116,-47,76,0.44230971843784],[116,-47,77,0.4484629702333084],[116,-47,78,0.45456556949817767],[116,-47,79,0.46060389378908684],[116,-46,64,0.36395853607222045],[116,-46,65,0.37078863611270496],[116,-46,66,0.3777287380987927],[116,-46,67,0.38476510286154425],[116,-46,68,0.391887024808412],[116,-46,69,0.3990180406304194],[116,-46,70,0.40513924658786743],[116,-46,71,0.41127401630901195],[116,-46,72,0.4174157677264211],[116,-46,73,0.42355836857034956],[116,-46,74,0.42969560324807676],[116,-46,75,0.43582071634116903],[116,-46,76,0.44192603417695264],[116,-46,77,0.4480026658234689],[116,-46,78,0.45404028474228186],[116,-46,79,0.46002699221227994],[116,-45,64,0.36404945095792257],[116,-45,65,0.3709056897523785],[116,-45,66,0.37787396059713696],[116,-45,67,0.38494284401544704],[116,-45,68,0.3921034871973021],[116,-45,69,0.3990512883615985],[116,-45,70,0.40507812260925374],[116,-45,71,0.4111178961504891],[116,-45,72,0.4171654840795549],[116,-45,73,0.42321652560705575],[116,-45,74,0.42926677072624997],[116,-45,75,0.43531151341727303],[116,-45,76,0.44134511304137425],[116,-45,77,0.4473606054561411],[116,-45,78,0.45334940525253975],[116,-45,79,0.45930110037710575],[116,-44,64,0.3642400120998129],[116,-44,65,0.37111261156617015],[116,-44,66,0.37809708210963305],[116,-44,67,0.38518466494180476],[116,-44,68,0.3923685190288485],[116,-44,69,0.3988280178363011],[116,-44,70,0.4047687472870055],[116,-44,71,0.4107234680889656],[116,-44,72,0.41668839163752386],[116,-44,73,0.4226607687083511],[116,-44,74,0.4286381231764728],[116,-44,75,0.4346175819298221],[116,-44,76,0.4405953028041218],[116,-44,77,0.4465660022303862],[116,-44,78,0.4525225841407975],[116,-44,79,0.4584558715249449],[116,-43,64,0.364517096353225],[116,-43,65,0.3713945296229683],[116,-43,66,0.3783814788840105],[116,-43,67,0.3854721412925038],[116,-43,68,0.3925230025509006],[116,-43,69,0.39836630937425127],[116,-43,70,0.4042310972296192],[116,-43,71,0.4101124833951464],[116,-43,72,0.41600783649326506],[116,-43,73,0.42191580355433966],[116,-43,74,0.4278354402456915],[116,-43,75,0.43376544637929276],[116,-43,76,0.43970350867396446],[116,-43,77,0.44564575259821304],[116,-43,78,0.45158630495929364],[116,-43,79,0.4575169687345896],[116,-42,64,0.3648621246698947],[116,-42,65,0.3717314292729605],[116,-42,66,0.37870577719467763],[116,-42,67,0.3857825637827551],[116,-42,68,0.39191237167657617],[116,-42,69,0.3976877972622123],[116,-42,70,0.40348807047335045],[116,-42,71,0.409308930555049],[116,-42,72,0.4151486753440045],[116,-42,73,0.4210070879450239],[116,-42,74,0.4268844746752886],[116,-42,75,0.43278081652256783],[116,-42,76,0.4386950362133868],[116,-42,77,0.44462438282395705],[116,-42,78,0.450563935691994],[116,-42,79,0.4565062292033541],[116,-41,64,0.36525188015633164],[116,-41,65,0.37209896497779565],[116,-41,66,0.37904464964744383],[116,-41,67,0.38541802853803864],[116,-41,68,0.39109871384554035],[116,-41,69,0.3968169732053781],[116,-41,70,0.4025648394734482],[116,-41,71,0.40833844665110564],[116,-41,72,0.414136753942527],[116,-41,73,0.41996038562892035],[116,-41,74,0.4258105892535413],[116,-41,75,0.4316883144648926],[116,-41,76,0.4375934147035562],[116,-41,77,0.4435239737425603],[116,-41,78,0.4494757589036779],[116,-41,79,0.4554418025746849],[116,-40,64,0.3656593287311916],[116,-40,65,0.37246927546670267],[116,-40,66,0.3789090858731472],[116,-40,67,0.38447983243100975],[116,-40,68,0.39010831271740826],[116,-40,69,0.3957804813194409],[116,-40,70,0.40148819428773036],[116,-40,71,0.4072277174450341],[116,-40,72,0.41299837263957107],[116,-40,73,0.4188013055150821],[116,-40,74,0.4246383773700413],[116,-40,75,0.43051118352189477],[116,-40,76,0.4364202004198467],[116,-40,77,0.4423640635633569],[116,-40,78,0.4483389780849435],[116,-40,79,0.45433826364722507],[116,-39,64,0.3660544448924227],[116,-39,65,0.37243163681451197],[116,-39,66,0.37786298501336496],[116,-39,67,0.3833832613161738],[116,-39,68,0.3889693433337273],[116,-39,69,0.39460640257215673],[116,-39,70,0.4002858740144868],[116,-39,71,0.40600386440075703],[116,-39,72,0.41175973745432226],[116,-39,73,0.4175548249253251],[116,-39,74,0.42339126606808714],[116,-39,75,0.4292709780041461],[116,-39,76,0.43519475924159695],[116,-39,77,0.4411615284261714],[116,-39,78,0.43973106158626474],[116,-39,79,0.42928855242360553],[116,-38,64,0.36605190500514523],[116,-38,65,0.371302168022697],[116,-38,66,0.37667967205533337],[116,-38,67,0.3821578806613011],[116,-38,68,0.3877111063239987],[116,-38,69,0.39332352655893976],[116,-38,70,0.39898588452039324],[116,-38,71,0.4046938168573294],[116,-38,72,0.4104463950796872],[116,-38,73,0.4162447955113072],[116,-38,74,0.42209110045723375],[116,-38,75,0.42481068892794555],[116,-38,76,0.4167997054504398],[116,-38,77,0.4175421278282134],[116,-38,78,0.40726641372042993],[116,-38,79,0.3925521430296606],[116,-37,64,0.36487147549500837],[116,-37,65,0.3700590756914015],[116,-37,66,0.37538979250110177],[116,-37,67,0.38083395841295686],[116,-37,68,0.38636324811654543],[116,-37,69,0.39196060848147724],[116,-37,70,0.3976158004760885],[116,-37,71,0.40332366754121124],[116,-37,72,0.4033830793988042],[116,-37,73,0.4007265927992862],[116,-37,74,0.3985812395539755],[116,-37,75,0.3963407485396647],[116,-37,76,0.3973283868738042],[116,-37,77,0.4013471044163047],[116,-37,78,0.3889318392014254],[116,-37,79,0.3742110872208973],[116,-36,64,0.36360249530706523],[116,-36,65,0.3687335848508835],[116,-36,66,0.37402417690573586],[116,-36,67,0.37944164070421876],[116,-36,68,0.384954964894585],[116,-36,69,0.3905456091926214],[116,-36,70,0.39620204970837547],[116,-36,71,0.39610649434688067],[116,-36,72,0.38869091330913813],[116,-36,73,0.3873125284136249],[116,-36,74,0.3856752156313005],[116,-36,75,0.3839641415493003],[116,-36,76,0.38545230558367294],[116,-36,77,0.3880679791059461],[116,-36,78,0.3764928805503038],[116,-36,79,0.3674082236932104],[116,-35,64,0.3622760752796791],[116,-35,65,0.3673565130609989],[116,-35,66,0.3726129779784966],[116,-35,67,0.37801010954388636],[116,-35,68,0.38351418804492726],[116,-35,69,0.3891049161747705],[116,-35,70,0.3947691778785436],[116,-35,71,0.38914490074694474],[116,-35,72,0.38391931275143304],[116,-35,73,0.38217344404614395],[116,-35,74,0.3847447302913357],[116,-35,75,0.3810383406381969],[116,-35,76,0.3804757574987796],[116,-35,77,0.38204567545218865],[116,-35,78,0.3685939509233014],[116,-35,79,0.365337530841553],[116,-34,64,0.3609222794286261],[116,-34,65,0.3659573751498948],[116,-34,66,0.3711847876582111],[116,-34,67,0.37656672015706494],[116,-34,68,0.3820667488641743],[116,-34,69,0.38766254333290046],[116,-34,70,0.3933390915063329],[116,-34,71,0.3929039250609579],[116,-34,72,0.39090355196580323],[116,-34,73,0.3833598637725461],[116,-34,74,0.3885243084973675],[116,-34,75,0.38230070512944686],[116,-34,76,0.37875657616319114],[116,-34,77,0.3783936987909238],[116,-34,78,0.36255992053068475],[116,-34,79,0.3608187824951921],[116,-33,64,0.3595692060305957],[116,-33,65,0.364563465841761],[116,-33,66,0.3697657317927981],[116,-33,67,0.37513611567939265],[116,-33,68,0.38063552031635495],[116,-33,69,0.3862393075085925],[116,-33,70,0.3919302773798635],[116,-33,71,0.3976969160816945],[116,-33,72,0.4024252957782838],[116,-33,73,0.38999643038717696],[116,-33,74,0.3944034807347849],[116,-33,75,0.39057150377960115],[116,-33,76,0.38511293976015765],[116,-33,77,0.3800411779892221],[116,-33,78,0.3638199474176104],[116,-33,79,0.3609987341452441],[116,-32,64,0.35824204474142757],[116,-32,65,0.3631989179028322],[116,-32,66,0.36837854010002585],[116,-32,67,0.373739316951292],[116,-32,68,0.3792395336763845],[116,-32,69,0.38485197965758206],[116,-32,70,0.39055699642316394],[116,-32,71,0.39634077128785555],[116,-32,72,0.4021939427627483],[116,-32,73,0.4081103168339115],[116,-32,74,0.4127032996740078],[116,-32,75,0.4122823574334876],[116,-32,76,0.4006190808969626],[116,-32,77,0.3897407827830635],[116,-32,78,0.3751829934561012],[116,-32,79,0.36412819345484604],[116,-31,64,0.3569621074231886],[116,-31,65,0.36188373349685],[116,-31,66,0.3670415891459787],[116,-31,67,0.37239278521477115],[116,-31,68,0.3778930679459251],[116,-31,69,0.3835124086808588],[116,-31,70,0.3892284501350668],[116,-31,71,0.3950248628462087],[116,-31,72,0.4008900014601429],[116,-31,73,0.4068156637971936],[116,-31,74,0.4127959547149748],[116,-31,75,0.41882625663363915],[116,-31,76,0.4162277464152028],[116,-31,77,0.40818489363579313],[116,-31,78,0.3948812734589329],[116,-31,79,0.37535372818305485],[116,-30,64,0.3557458304320358],[116,-30,65,0.36063278651687575],[116,-30,66,0.3657679161506567],[116,-30,67,0.3711074555847988],[116,-30,68,0.37660470999346823],[116,-30,69,0.3822266159595537],[116,-30,70,0.38794791776760285],[116,-30,71,0.39374960050233854],[116,-30,72,0.39961760220671333],[116,-30,73,0.40554161973009917],[116,-30,74,0.4115140101515902],[116,-30,75,0.417528789525595],[116,-30,76,0.42358073054775],[116,-30,77,0.42490312841070993],[116,-30,78,0.41088122723838744],[116,-30,79,0.3904827023295312],[116,-29,64,0.3546037462100964],[116,-29,65,0.3594547937494996],[116,-29,66,0.3645642015164213],[116,-29,67,0.36988773924986806],[116,-29,68,0.3753763834484978],[116,-29,69,0.3809938587164227],[116,-29,70,0.3867118624782661],[116,-29,71,0.39250858475002254],[116,-29,72,0.39836747787470156],[116,-29,73,0.40427611015286424],[116,-29,74,0.4102251051273118],[116,-29,75,0.41620716815767766],[116,-29,76,0.42221620178653985],[116,-29,77,0.4282465112551082],[116,-29,78,0.4222297305754135],[116,-29,79,0.40636842415563723],[116,-28,64,0.35353942212950856],[116,-28,65,0.35835125283031033],[116,-28,66,0.36342971807481655],[116,-28,67,0.3687304924522579],[116,-28,68,0.3742023444706004],[116,-28,69,0.37980566041189917],[116,-28,70,0.3855090047688407],[116,-28,71,0.39128773205180806],[116,-28,72,0.3971228121554355],[116,-28,73,0.40299972947499024],[116,-28,74,0.4089074574177251],[116,-28,75,0.4148375098462004],[116,-28,76,0.42078307087244204],[116,-28,77,0.42673820429471426],[116,-28,78,0.43110186689191066],[116,-28,79,0.4168328108241235],[116,-27,64,0.35254836465716954],[116,-27,65,0.35731534506789486],[116,-27,66,0.3623552451626203],[116,-27,67,0.3676239504097101],[116,-27,68,0.37306814262046595],[116,-27,69,0.37864480648254273],[116,-27,70,0.3843193616160293],[116,-27,71,0.3900643662325783],[116,-27,72,0.395858392181604],[116,-27,73,0.4016849636679617],[116,-27,74,0.4075315611896452],[116,-27,75,0.4133886921516227],[116,-27,76,0.4192490295100442],[116,-27,77,0.42510661969057173],[116,-27,78,0.4309561609065764],[116,-27,79,0.4205954474057271],[116,-26,64,0.35161688704298344],[116,-26,65,0.35633080134591355],[116,-26,66,0.36132194576702104],[116,-26,67,0.36654662446490105],[116,-26,68,0.3719495451788924],[116,-26,69,0.3774843038422357],[116,-26,70,0.38311324980381134],[116,-26,71,0.38880627466131185],[116,-26,72,0.394539726688656],[116,-26,73,0.4002953794034342],[116,-26,74,0.40605945574956553],[116,-26,75,0.41182170929315226],[116,-26,76,0.41757456374322777],[116,-26,77,0.4233123120144234],[116,-26,78,0.4290303759464626],[116,-26,79,0.41830025572875407],[116,-25,64,0.35072085532585756],[116,-25,65,0.3553706978291219],[116,-25,66,0.360300221529902],[116,-25,67,0.36546622400703305],[116,-25,68,0.37081153339411155],[116,-25,69,0.3762864596166825],[116,-25,70,0.3818504553268281],[116,-25,71,0.38747097589013774],[116,-25,72,0.3930470090393079],[116,-25,73,0.3983896113320705],[116,-25,74,0.40384204305780996],[116,-25,75,0.40938968919904706],[116,-25,76,0.4150135531752076],[116,-25,77,0.42069120263304993],[116,-25,78,0.4263976608441354],[116,-25,79,0.4200956959304913],[116,-24,64,0.3498225553389958],[116,-24,65,0.3543967367905864],[116,-24,66,0.3592512375147844],[116,-24,67,0.3643433713963208],[116,-24,68,0.3695088737367291],[116,-24,69,0.37425292179381564],[116,-24,70,0.37911222605568523],[116,-24,71,0.3841026706001217],[116,-24,72,0.3892309332174097],[116,-24,73,0.39449563316436403],[116,-24,74,0.39988843683757097],[116,-24,75,0.4053951200055686],[116,-24,76,0.4109965853000452],[116,-24,77,0.416669833734756],[116,-24,78,0.4223888890976381],[116,-24,79,0.42488101431852277],[116,-23,64,0.34811244362927235],[116,-23,65,0.3525884394621229],[116,-23,66,0.3570420587764502],[116,-23,67,0.36150533850895966],[116,-23,68,0.3660263395435666],[116,-23,69,0.37064610690404126],[116,-23,70,0.375393606353263],[116,-23,71,0.38028689839086327],[116,-23,72,0.38533432198602324],[116,-23,73,0.39053564433751975],[116,-23,74,0.39588317525198485],[116,-23,75,0.4013628447724168],[116,-23,76,0.406955242738421],[116,-23,77,0.4126366190174773],[116,-23,78,0.41837984321282284],[116,-23,79,0.4241553227274325],[116,-22,64,0.34507059407134266],[116,-22,65,0.34939991300143436],[116,-22,66,0.3537138120935067],[116,-22,67,0.358043880277124],[116,-22,68,0.3624396676389386],[116,-22,69,0.3669450035176814],[116,-22,70,0.37159121716655247],[116,-22,71,0.37639826045679275],[116,-22,72,0.38137588517138266],[116,-22,73,0.3865247929922417],[116,-22,74,0.3918377567704852],[116,-22,75,0.3973007116994552],[116,-22,76,0.40289381504876504],[116,-22,77,0.4085924731647006],[116,-22,78,0.4143683344981884],[116,-22,79,0.4201902474854558],[116,-21,64,0.3419355612543591],[116,-21,65,0.3461198984856567],[116,-21,66,0.350297594565431],[116,-21,67,0.35449954982532816],[116,-21,68,0.35877635959773924],[116,-21,69,0.3631742092303678],[116,-21,70,0.36772644547278377],[116,-21,71,0.37245463923513716],[116,-21,72,0.37736974746822305],[116,-21,73,0.38247325489608136],[116,-21,74,0.3877582941937321],[116,-21,75,0.3932107432209329],[116,-21,76,0.39881029794954254],[116,-21,77,0.40453151975747803],[116,-21,78,0.4103448558067581],[116,-21,79,0.4162176312760985],[116,-20,64,0.33874269956522784],[116,-20,65,0.3427815053198111],[116,-20,66,0.3468240843848038],[116,-20,67,0.35090037276765385],[116,-20,68,0.35506150527473807],[116,-20,69,0.3593555460156511],[116,-20,70,0.3638175030528532],[116,-20,71,0.3684703159571882],[116,-20,72,0.3733259865796028],[116,-20,73,0.3783866978182507],[116,-20,74,0.3836459189890301],[116,-20,75,0.38908949641218477],[116,-20,76,0.3946967278405193],[116,-20,77,0.4004414193765486],[116,-20,78,0.4062929235570518],[116,-20,79,0.4122171573235412],[116,-19,64,0.3355270195050436],[116,-19,65,0.339417354383452],[116,-19,66,0.3433232175233018],[116,-19,67,0.3472732866088378],[116,-19,68,0.3513186913069193],[116,-19,69,0.3555088670957355],[116,-19,70,0.35988013235973765],[116,-19,71,0.3644565793176738],[116,-19,72,0.3692511516395625],[116,-19,73,0.37426671966014413],[116,-19,74,0.3794971518318611],[116,-19,75,0.38492838104842797],[116,-19,76,0.3905394644663023],[116,-19,77,0.3963036354565202],[116,-19,78,0.4021893463341312],[116,-19,79,0.40816130053656496],[116,-18,64,0.33232043210206524],[116,-18,65,0.3360565598802604],[116,-18,66,0.3398209018880535],[116,-18,67,0.3436405798143361],[116,-18,68,0.3475661579887691],[116,-18,69,0.35164792712515014],[116,-18,70,0.3559231885152341],[116,-18,71,0.36041702097947703],[116,-18,72,0.36514327715580414],[116,-18,73,0.370105588917176],[116,-18,74,0.37529838062199194],[116,-18,75,0.3807078888689578],[116,-18,76,0.38631318740367043],[116,-18,77,0.3920872158086572],[116,-18,78,0.3979978106029409],[116,-18,79,0.40400873738122534],[116,-17,64,0.32913201711827117],[116,-17,65,0.33270571463438203],[116,-17,66,0.336320928868977],[116,-17,67,0.340002943769479],[116,-17,68,0.3438011991928638],[116,-17,69,0.3477663217675293],[116,-17,70,0.35193628574081215],[116,-17,71,0.3563370248978739],[116,-17,72,0.36098331532175015],[116,-17,73,0.3658796810718918],[116,-17,74,0.37102132157590656],[116,-17,75,0.37639505947172625],[116,-17,76,0.3819803075876617],[116,-17,77,0.38775005370678983],[116,-17,78,0.3936718617311332],[116,-17,79,0.39970888784015385],[116,-16,64,0.32591138747533943],[116,-16,65,0.3293156669588371],[116,-16,66,0.33277577051029383],[116,-16,67,0.3363149117367459],[116,-16,68,0.33998083997530987],[116,-16,69,0.34382394539291194],[116,-16,70,0.34788249582826525],[116,-16,71,0.3521830674402806],[116,-16,72,0.35674128566702096],[116,-16,73,0.3615626048442036],[116,-16,74,0.3666431253929785],[116,-16,75,0.3719704473999014],[116,-16,76,0.37752455933253964],[116,-16,77,0.383278760563278],[116,-16,78,0.38920061631318503],[116,-16,79,0.39525294357756857],[116,-15,64,0.32260518675877375],[116,-15,65,0.3258350599581851],[116,-15,66,0.32913645668204544],[116,-15,67,0.3325303379555091],[116,-15,68,0.3360621955474496],[116,-15,69,0.3397815602558309],[116,-15,70,0.3437265403770711],[116,-15,71,0.3479240513619535],[116,-15,72,0.3523903922523964],[116,-15,73,0.35713187799985],[116,-15,74,0.362145526707875],[116,-15,75,0.3674198007218396],[116,-15,76,0.37293540037594164],[116,-15,77,0.3786661091034983],[116,-15,78,0.3845796885225009],[116,-15,79,0.390638822025403],[116,-14,64,0.319172571459331],[116,-14,65,0.32222481344998577],[116,-14,66,0.32536586054879607],[116,-14,67,0.32861428278317156],[116,-14,68,0.332012758552246],[116,-14,69,0.3356093067103314],[116,-14,70,0.3394413718418602],[116,-14,71,0.3435358392252303],[116,-14,72,0.34790942919224166],[116,-14,73,0.35256916560226764],[116,-14,74,0.35751291761894755],[116,-14,75,0.36273001382205156],[116,-14,76,0.3682019275385058],[116,-14,77,0.37390303213622156],[116,-14,78,0.3798014248945373],[116,-14,79,0.38585981794664376],[116,-13,64,0.3155831809885473],[116,-13,65,0.31845611574935284],[116,-13,66,0.32143674303640163],[116,-13,67,0.3245411416672535],[116,-13,68,0.3278086445638681],[116,-13,69,0.3312850973227296],[116,-13,70,0.335006747616729],[116,-13,71,0.3390000373324059],[116,-13,72,0.3432818021395504],[116,-13,73,0.3478595639558286],[116,-13,74,0.35273191564738665],[116,-13,75,0.35788899711387245],[116,-13,76,0.3633130617198862],[116,-13,77,0.3689791318566311],[116,-13,78,0.3748557422500339],[116,-13,79,0.3809057694760318],[116,-12,64,0.1929815681592506],[116,-12,65,0.23079589826454447],[116,-12,66,0.27236625924058455],[116,-12,67,0.3176266791579643],[116,-12,68,0.32343298641852625],[116,-12,69,0.3267931487475711],[116,-12,70,0.33040792797626634],[116,-12,71,0.3343028866725735],[116,-12,72,0.33849463702699506],[116,-12,73,0.3429909492590475],[116,-12,74,0.34779097129260084],[116,-12,75,0.3528855589675971],[116,-12,76,0.35825771583047633],[116,-12,77,0.36388314132858124],[116,-12,78,0.3697308860277312],[116,-12,79,0.37576411227859],[116,-11,64,0.09447203306110716],[116,-11,65,0.11773680315112547],[116,-11,66,0.14416213227285204],[116,-11,67,0.1737499904580608],[116,-11,68,0.20649299719365613],[116,-11,69,0.242365578733376],[116,-11,70,0.281311304731269],[116,-11,71,0.3232452765107177],[116,-11,72,0.33353797609814695],[116,-11,73,0.3379533910215759],[116,-11,74,0.34268001527112746],[116,-11,75,0.34770929999073835],[116,-11,76,0.35302494586273575],[116,-11,77,0.35860333843687614],[116,-11,78,0.36441410942518854],[116,-11,79,0.3704208223540615],[116,-10,64,0.03800041977494213],[116,-10,65,0.0501500219663111],[116,-10,66,0.06478278119890322],[116,-10,67,0.08196863696141986],[116,-10,68,0.10176389312307776],[116,-10,69,0.12420497691360897],[116,-10,70,0.14929621109458674],[116,-10,71,0.17701185697679733],[116,-10,72,0.20729859582362464],[116,-10,73,0.2400781224131732],[116,-10,74,0.2752498363497558],[116,-10,75,0.31269361736149837],[116,-10,76,0.3476040852421924],[116,-10,77,0.3531279124246392],[116,-10,78,0.35889227345512],[116,-10,79,0.36486124760670446],[116,-9,64,0.028506954765708605],[116,-9,65,0.03119197018507319],[116,-9,66,0.03382506707344004],[116,-9,67,0.03641219358934572],[116,-9,68,0.04056784379283464],[116,-9,69,0.05268327797641732],[116,-9,70,0.06694307998014366],[116,-9,71,0.08338072945333802],[116,-9,72,0.10200037727412285],[116,-9,73,0.12277914316736899],[116,-9,74,0.14566953525821172],[116,-9,75,0.17060197802849933],[116,-9,76,0.19748743580965486],[116,-9,77,0.22622011970543052],[116,-9,78,0.2566802667065523],[116,-9,79,0.28873698072125836],[116,-8,64,0.024059056856793944],[116,-8,65,0.026668966161367755],[116,-8,66,0.029252914369825776],[116,-8,67,0.03181419397301206],[116,-8,68,0.034370382467710535],[116,-8,69,0.03695002208017689],[116,-8,70,0.03957920887000239],[116,-8,71,0.04228026517209124],[116,-8,72,0.045070877715307885],[116,-8,73,0.051963305312575744],[116,-8,74,0.06526574051078254],[116,-8,75,0.08029941916387913],[116,-8,76,0.09702402417914327],[116,-8,77,0.11537968772205241],[116,-8,78,0.13528959854248349],[116,-8,79,0.15666269425476412],[116,-7,64,0.01958093820685367],[116,-7,65,0.022119088528032727],[116,-7,66,0.024657052563072865],[116,-7,67,0.027195519057730256],[116,-7,68,0.02974657417411957],[116,-7,69,0.032333413473565505],[116,-7,70,0.03497809158919612],[116,-7,71,0.037700017538778975],[116,-7,72,0.04051491056476099],[116,-7,73,0.043433949717165445],[116,-7,74,0.046463117440811],[116,-7,75,0.04960273701930589],[116,-7,76,0.05284720332379892],[116,-7,77,0.056184905919385596],[116,-7,78,0.06129373123325411],[116,-7,79,0.07428320872993324],[116,-6,64,0.015083567793570675],[116,-6,65,0.01755384036186729],[116,-6,66,0.020049090220780146],[116,-6,67,0.022567469529707063],[116,-6,68,0.025115512036818124],[116,-6,69,0.027710859594644973],[116,-6,70,0.030371297746066797],[116,-6,71,0.03311309328179886],[116,-6,72,0.03594978238167334],[116,-6,73,0.038891163815215034],[116,-6,74,0.04194249759767076],[116,-6,75,0.04510390906131298],[116,-6,76,0.04836999786993168],[116,-6,77,0.05172965108194194],[116,-6,78,0.055166058956132004],[116,-6,79,0.0586569317996524],[116,-5,64,0.010577618185237492],[116,-5,65,0.012984284805057072],[116,-5,66,0.01544006789710933],[116,-5,67,0.017940663297388502],[116,-5,68,0.0204870851194191],[116,-5,69,0.023091329849453657],[116,-5,70,0.02576677877211637],[116,-5,71,0.028526399361613667],[116,-5,72,0.03138138317911368],[116,-5,73,0.03433999788193629],[116,-5,74,0.037406653866025596],[116,-5,75,0.040581185603782766],[116,-5,76,0.043858347284257526],[116,-5,77,0.047227521917076326],[116,-5,78,0.05067264262707828],[116,-5,79,0.05417232444954044],[116,-4,64,0.0060730515375861886],[116,-4,65,0.008420627164714214],[116,-4,66,0.010840050812074922],[116,-4,67,0.013324653236370033],[116,-4,68,0.015870055931609832],[116,-4,69,0.01848263790498958],[116,-4,70,0.02117133822091066],[116,-4,71,0.02394574450900175],[116,-4,72,0.026814600557676017],[116,-4,73,0.02978453465456913],[116,-4,74,0.03285900930999399],[116,-4,75,0.036037492521830354],[116,-4,76,0.039314850266753854],[116,-4,77,0.04268095943864981],[116,-4,78,0.04612054000229705],[116,-4,79,0.04961320469515473],[116,-3,64,0.0015788995140117359],[116,-3,65,0.0038719874753764035],[116,-3,66,0.006257906594735688],[116,-3,67,0.008727722572474818],[116,-3,68,0.011271882954514817],[116,-3,69,0.013891296942408113],[116,-3,70,0.016590522147103753],[116,-3,71,0.01937576461277295],[116,-3,72,0.022253278057077868],[116,-3,73,0.025227987985792195],[116,-3,74,0.028302341420760276],[116,-3,75,0.03147538248920718],[116,-3,76,0.03474205363554353],[116,-3,77,0.038092721739346976],[116,-3,78,0.04151292795703256],[116,-3,79,0.04498335965614292],[116,-2,64,-0.002896758588437803],[116,-2,65,-6.536322941700953E-4],[116,-2,66,0.0017012721253731708],[116,-2,67,0.004156861748003606],[116,-2,68,0.006698714623392896],[116,-2,69,0.009322533494160163],[116,-2,70,0.012028652080607275],[116,-2,71,0.014819971489372688],[116,-2,72,0.017700274484650072],[116,-2,73,0.020672766232827267],[116,-2,74,0.02373884234955041],[116,-2,75,0.026897084579262452],[116,-2,76,0.030142483942312708],[116,-2,77,0.03346589069909431],[116,-2,78,0.03685369000622282],[116,-2,79,0.0402877016828576],[116,-1,64,-0.0073466150928299554],[116,-1,65,-0.00514918206772456],[116,-1,66,-0.0028232863436391605],[116,-1,67,-3.820692400867231E-4],[116,-1,68,0.0021555585130155],[116,-1,69,0.00478046330805433],[116,-1,70,0.0074890036741481845],[116,-1,71,0.010280927684985631],[116,-1,72,0.013157626382915101],[116,-1,73,0.016120612801676204],[116,-1,74,0.019170227493185536],[116,-1,75,0.022304570962177892],[116,-1,76,0.025518662914772866],[116,-1,77,0.028803827738473415],[116,-1,78,0.03214730515354382],[116,-1,79,0.0355320845154949],[116,0,64,-0.011763746106028919],[116,0,65,-0.00960819413436047],[116,0,66,-0.007309915536282287],[116,0,67,-0.004883988966627749],[116,0,68,-0.0023533704554251963],[116,0,69,2.684327506164981E-4],[116,0,70,0.002974134165244151],[116,0,71,0.005760550014692664],[116,0,72,0.008626815841412856],[116,0,73,0.011572825493748263],[116,0,74,0.014597893469391773],[116,0,75,0.017699641081355542],[116,0,76,0.020873106419835922],[116,0,77,0.02411007759697331],[116,0,78,0.027398648285844228],[116,0,79,0.03072299410636481],[116,1,64,-0.016141011033434623],[116,1,65,-0.014024205656210627],[116,1,66,-0.011752916136166715],[116,1,67,-0.009344049955120249],[116,1,68,-0.006824120065373819],[116,1,69,-0.0042104719184990515],[116,1,70,-0.0015136393112311819],[116,1,71,0.0012605436682511407],[116,1,72,0.004109145365975812],[116,1,73,0.007030556346756798],[116,1,74,0.010023127254131516],[116,1,75,0.01308402527033211],[116,1,76,0.016208309212795924],[116,1,77,0.019388222824264622],[116,1,78,0.022612705344413484],[116,1,79,0.02586711799838483],[116,2,64,-0.020470234860675937],[116,2,65,-0.018389970614839272],[116,2,66,-0.01614598126201332],[116,2,67,-0.013756901138940038],[116,2,68,-0.011252289542218939],[116,2,69,-0.008652748117590304],[116,2,70,-0.005971611310498978],[116,2,71,-0.0032170336809245405],[116,2,72,-3.937803680857829E-4],[116,2,73,0.002495192380604776],[116,2,74,0.0054473676685262516],[116,2,75,0.008459509968786406],[116,2,76,0.011526718798345941],[116,2,77,0.014641693674194135],[116,2,78,0.01779420951996897],[116,2,79,0.020970801248896973],[116,3,64,-0.004547681160960724],[116,3,65,-0.009268562994603902],[116,3,66,-0.015223614404305127],[116,3,67,-0.01811574332443413],[116,3,68,-0.0156321203628935],[116,3,69,-0.013053616239832613],[116,3,70,-0.010395893846004345],[116,3,71,-0.0076690652908863646],[116,3,72,-0.004879458477047847],[116,3,73,-0.0020311822404897773],[116,3,74,8.72511020206344E-4],[116,3,75,0.0038280658378733933],[116,3,76,0.006830667443830663],[116,3,77,0.009873488503990186],[116,3,78,0.0129471380753691],[116,3,79,0.016039311605060863],[116,4,64,2.9100979110767655E-4],[116,4,65,-9.662603459964246E-4],[116,4,66,-0.002608968143130069],[116,4,67,-0.00486011191068283],[116,4,68,-0.00791882037653923],[116,4,69,-0.011941810674144971],[116,4,70,-0.01478046106563611],[116,4,71,-0.012090529478164668],[116,4,72,-0.00934377744827825],[116,4,73,-0.006545237454679846],[116,4,74,-0.0036987270122707736],[116,4,75,-8.080003738292868E-4],[116,4,76,0.0021222937878788623],[116,4,77,0.005085848481966589],[116,4,78,0.008074127621100022],[116,4,79,0.011075987284763023],[116,5,64,7.03661697851769E-4],[116,5,65,-4.516615427526203E-4],[116,5,66,-0.0010636370673862412],[116,5,67,-0.0014259760090855136],[116,5,68,-0.0018068198138106904],[116,5,69,-0.0024298003866301495],[116,5,70,-0.0034774790896617523],[116,5,71,-0.005095832816427042],[116,5,72,-0.007398477691144892],[116,5,73,-0.010470694434173295],[116,5,74,-0.008262393998806253],[116,5,75,-0.0054458719718377315],[116,5,76,-0.002596548940433074],[116,5,77,2.798821945845524E-4],[116,5,78,0.003175801837389645],[116,5,79,0.006081259617451501],[116,6,64,0.00839134473626497],[116,6,65,0.003974125237890903],[116,6,66,0.0011093568311469364],[116,6,67,-5.673961521500514E-4],[116,6,68,-0.0013931558457330254],[116,6,69,-0.0016583388105037024],[116,6,70,-0.001610111004862405],[116,6,71,-0.001456716464562717],[116,6,72,-0.0013715572865726354],[116,6,73,-0.0014970916340725623],[116,6,74,-0.0019485353977391894],[116,6,75,-0.0028173543306583403],[116,6,76,-0.004174534738230516],[116,6,77,-0.004544868940857366],[116,6,78,-0.0017500009486914373],[116,6,79,0.0010515341718951429],[116,7,64,0.035063259758651114],[116,7,65,0.024018413357772654],[116,7,66,0.015615689318382957],[116,7,67,0.009419922133939879],[116,7,68,0.005025219180372689],[116,7,69,0.0020743537874559673],[116,7,70,2.554655952236337E-4],[116,7,71,-7.021269504911516E-4],[116,7,72,-0.0010318778130179237],[116,7,73,-9.337977976775536E-4],[116,7,74,-5.780579565773392E-4],[116,7,75,-1.0839884618794296E-4],[116,7,76,3.546662767659271E-4],[116,7,77,7.108649600804091E-4],[116,7,78,8.77405063479124E-4],[116,7,79,7.86448181305437E-4],[116,8,64,0.09243087217790652],[116,8,65,0.07139390597173143],[116,8,66,0.0541693059998335],[116,8,67,0.040251360378917064],[116,8,68,0.029165393254278794],[116,8,69,0.020487314599473994],[116,8,70,0.013840434047926639],[116,8,71,0.0088914042320899],[116,8,72,0.005346387028535704],[116,8,73,0.002947372276683331],[116,8,74,0.0014686631076749842],[116,8,75,7.135409459434308E-4],[116,8,76,5.111220986418703E-4],[116,8,77,7.13416632727545E-4],[116,8,78,0.0011925989647865425],[116,8,79,0.0018384982655232753],[116,9,64,0.19219769194244612],[116,9,65,0.15780616849054252],[116,9,66,0.12847783332295587],[116,9,67,0.10363680811336835],[116,9,68,0.0827398386640864],[116,9,69,0.0652959353288585],[116,9,70,0.05086342080347967],[116,9,71,0.039046002861057055],[116,9,72,0.02948905367840724],[116,9,73,0.0218760277017973],[116,9,74,0.01592503208154589],[116,9,75,0.011385562682335775],[116,9,76,0.008035417585377793],[116,9,77,0.005677798843161794],[116,9,78,0.004138612033799092],[116,9,79,0.003263971904197244],[116,10,64,0.19105459953093645],[116,10,65,0.18768347194867294],[116,10,66,0.1844026027196389],[116,10,67,0.18118653171243065],[116,10,68,0.17745303918322797],[116,10,69,0.1482074913097615],[116,10,70,0.1230347957154472],[116,10,71,0.10147538945126494],[116,10,72,0.08311338250068784],[116,10,73,0.06757307653675677],[116,10,74,0.05451562211158154],[116,10,75,0.04363582722510529],[116,10,76,0.03465912918644538],[116,10,77,0.027338740586752487],[116,10,78,0.021452979049643786],[116,10,79,0.01680278923333684],[116,11,64,0.18440110592607326],[116,11,65,0.1809603495341978],[116,11,66,0.17760414547482317],[116,11,67,0.17430742809935054],[116,11,68,0.17103334926737515],[116,11,69,0.1704534197290381],[116,11,70,0.17110398799996918],[116,11,71,0.1719580149133023],[116,11,72,0.1730031480599729],[116,11,73,0.15175245174568727],[116,11,74,0.1289576724091214],[116,11,75,0.10918480224492813],[116,11,76,0.09210579267373663],[116,11,77,0.07742260677276976],[116,11,78,0.06486458331382765],[116,11,79,0.05418597865777947],[116,12,64,0.17776097645997427],[116,12,65,0.17425368850413583],[116,12,66,0.1708241048087587],[116,12,67,0.1674482329462032],[116,12,68,0.16408994768350715],[116,12,69,0.16188193581723292],[116,12,70,0.16232616208062356],[116,12,71,0.16296435154448094],[116,12,72,0.16378440103769457],[116,12,73,0.16477792415569875],[116,12,74,0.16593903556100087],[116,12,75,0.16726326763290547],[116,12,76,0.16874662014372493],[116,12,77,0.16764810885118622],[116,12,78,0.14609403144403307],[116,12,79,0.12713570540629063],[116,13,64,0.17115084165577119],[116,13,65,0.16758150351073287],[116,13,66,0.16408202399853503],[116,13,67,0.16063015092811447],[116,13,68,0.1571909825406449],[116,13,69,0.1537374715248798],[116,13,70,0.15355301288594528],[116,13,71,0.15397698547341399],[116,13,72,0.1545738816932429],[116,13,73,0.15533556509659707],[116,13,74,0.1562565189230212],[116,13,75,0.15733279545819792],[116,13,76,0.15856108913995437],[116,13,77,0.15993793381711244],[116,13,78,0.1614590242610868],[116,13,79,0.16311866173149706],[116,14,64,0.16459212109038035],[116,14,65,0.16096639947979102],[116,14,66,0.15740179722647027],[116,14,67,0.15387841131283303],[116,14,68,0.15036302613744953],[116,14,69,0.14682903166968622],[116,14,70,0.14480897457782052],[116,14,71,0.14502136907926835],[116,14,72,0.14539793802624026],[116,14,73,0.14593062116126632],[116,14,74,0.14661405885952142],[116,14,75,0.1474445910467311],[116,14,76,0.1484193688260086],[116,14,77,0.14953557926845631],[116,14,78,0.1507897835409641],[116,14,79,0.1521773682683521],[116,15,64,0.1581189200222166],[116,15,65,0.15444333368249288],[116,15,66,0.15081918436044242],[116,15,67,0.14722942712009526],[116,15,68,0.14364293462126904],[116,15,69,0.14003369152812048],[116,15,70,0.1363841608545],[116,15,71,0.1361290660280726],[116,15,72,0.13628735757278765],[116,15,73,0.13659281447831959],[116,15,74,0.1370400232520791],[116,15,75,0.13762538751028458],[116,15,76,0.13834629342599122],[116,15,77,0.13920037528103682],[116,15,78,0.1401848813704599],[116,15,79,0.14129614025924916],[116,16,64,0.15178041153160615],[116,16,65,0.1480616729201166],[116,16,66,0.14438338874769813],[116,16,67,0.14073176429488674],[116,16,68,0.13707811611657592],[116,16,69,0.13339719805847042],[116,16,70,0.12967174296191647],[116,16,71,0.12733580045023962],[116,16,72,0.12727483666125483],[116,16,73,0.12735156011005805],[116,16,74,0.127560377876375],[116,16,75,0.1278976228550136],[116,16,76,0.1283607856207995],[116,16,77,0.12894783144551494],[116,16,78,0.12965660279399402],[116,16,79,0.13048430741022185],[116,17,64,0.14560687806335307],[116,17,65,0.1418517079088129],[116,17,66,0.13812444893947567],[116,17,67,0.13441483283500055],[116,17,68,0.13069693166131124],[116,17,69,0.1269464673226932],[116,17,70,0.12314656049885356],[116,17,71,0.11928673509557532],[116,17,72,0.11837533511861029],[116,17,73,0.11821925657726977],[116,17,74,0.11818492674826181],[116,17,75,0.11826856143489632],[116,17,76,0.11846771106964721],[116,17,77,0.11878063723781476],[116,17,78,0.11920575824081497],[116,17,79,0.11974116392887639],[116,18,64,0.13960565691341523],[116,18,65,0.13582073175990375],[116,18,66,0.13204952753132165],[116,18,67,0.12828546554515866],[116,18,68,0.12450563695397995],[116,18,69,0.1206869486261394],[116,18,70,0.11681306371702697],[116,18,71,0.11287360958645715],[116,18,72,0.10958484318107904],[116,18,73,0.10919051830497484],[116,18,74,0.10890696809132014],[116,18,75,0.1087303118739261],[116,18,76,0.10865817925934282],[116,18,77,0.10868915194718774],[116,18,78,0.1088222569252628],[116,18,79,0.10905651139479794],[116,19,64,0.1337648210047847],[116,19,65,0.12995671449787335],[116,19,66,0.12614655078426726],[116,19,67,0.12233149574182145],[116,19,68,0.11849187180316577],[116,19,69,0.11460599894964109],[116,19,70,0.11065826474930689],[116,19,71,0.10663854377857183],[116,19,72,0.1025415032324566],[116,19,73,0.10024480125922988],[116,19,74,0.09970568660393787],[116,19,75,0.09926196937195406],[116,19,76,0.09891142264004264],[116,19,77,0.09865301112372012],[116,19,78,0.09848643500851041],[116,19,79,0.09841170710510698],[116,20,64,0.12593730611975684],[116,20,65,0.12314991000161948],[116,20,66,0.12024937419023338],[116,20,67,0.1165251897807082],[116,20,68,0.11262801080843649],[116,20,69,0.10867612670786007],[116,20,70,0.10465484967937536],[116,20,71,0.10055447279039603],[116,20,72,0.09636974426625489],[116,20,73,0.09209935181442817],[116,20,74,0.09054848097037237],[116,20,75,0.08983171083743463],[116,20,76,0.08919664711161777],[116,20,77,0.08864272355645822],[116,20,78,0.08817039382434133],[116,20,79,0.08778074205809672],[116,21,64,0.11521735764906571],[116,21,65,0.11232753992848842],[116,21,66,0.10935070084927749],[116,21,67,0.10628934227164996],[116,21,68,0.1031633843092393],[116,21,69,0.09999829725278687],[116,21,70,0.09681511411365255],[116,21,71,0.09363056478006838],[116,21,72,0.09031100550747866],[116,21,73,0.08594550857952406],[116,21,74,0.08148907201778863],[116,21,75,0.08039884319223213],[116,21,76,0.0794748545661175],[116,21,77,0.07862125983713775],[116,21,78,0.07783934955679261],[116,21,79,0.0771313502736148],[116,22,64,0.1043559049278105],[116,22,65,0.10136322332411175],[116,22,66,0.09831033971887246],[116,22,67,0.09519661116097992],[116,22,68,0.09203858867447391],[116,22,69,0.08885980299689461],[116,22,70,0.08568008297878144],[116,22,71,0.08251548262903728],[116,22,72,0.07937844934944861],[116,22,73,0.07627801951529227],[116,22,74,0.07322004075648841],[116,22,75,0.07047022809579448],[116,22,76,0.06970063825648799],[116,22,77,0.06854563364433837],[116,22,78,0.06745299585515749],[116,22,79,0.0664261512667988],[116,23,64,0.0934293603786466],[116,23,65,0.09033412781712079],[116,23,66,0.08720581814211005],[116,23,67,0.08404094213748259],[116,23,68,0.08085268744263018],[116,23,69,0.07766243723497276],[116,23,70,0.07448860592985232],[116,23,71,0.07134636873302982],[116,23,72,0.068247666180257],[116,23,73,0.06520125443048488],[116,23,74,0.06221280077815127],[116,23,75,0.059285023744621745],[116,23,76,0.05670034162715287],[116,23,77,0.05736245927207134],[116,23,78,0.056966880938455845],[116,23,79,0.05562382758444262],[116,24,64,0.0825175787727556],[116,24,65,0.07932091105361994],[116,24,66,0.07611817488298242],[116,24,67,0.07290339816091106],[116,24,68,0.06968646614675686],[116,24,69,0.06648642892811467],[116,24,70,0.06332008872702377],[116,24,71,0.060201545175075276],[116,24,72,0.0571420432244921],[116,24,73,0.054149884305963014],[116,24,74,0.051230400311069915],[116,24,75,0.0483859898254831],[116,24,76,0.04561621589421923],[116,24,77,0.042917964463433086],[116,24,78,0.04360598553825204],[116,24,79,0.04454015900877198],[116,25,64,0.07170111904613304],[116,25,65,0.06840497451143664],[116,25,66,0.065129224687289],[116,25,67,0.06186583118517815],[116,25,68,0.05862149118411214],[116,25,69,0.055412764267818326],[116,25,70,0.05225466138367132],[116,25,71,0.04916002225867663],[116,25,72,0.04613921621000547],[116,25,73,0.04319992247144851],[116,25,74,0.04034698972618394],[116,25,75,0.0375823743410976],[116,25,76,0.03490515661031256],[116,25,77,0.032311634137147764],[116,25,78,0.02979549131602452],[116,25,79,0.029788418152565006],[116,26,64,0.06105867833527761],[116,26,65,0.05766588675701908],[116,26,66,0.054318987740089],[116,26,67,0.051008334124541505],[116,26,68,0.047737599497923375],[116,26,69,0.0445207284526801],[116,26,70,0.04137078557890365],[116,26,71,0.03829918420344392],[116,26,72,0.03531525184897556],[116,26,73,0.0324258899758092],[116,26,74,0.029635327808235714],[116,26,75,0.026944969812118746],[116,26,76,0.0243533361636924],[116,26,77,0.02185609533292167],[116,26,78,0.019446187700173315],[116,26,79,0.017114038934242938],[116,27,64,0.05066470164176976],[116,27,65,0.047178979426995726],[116,27,66,0.0437632871353709],[116,27,67,0.0404068544651703],[116,27,68,0.037110541822698025],[116,27,69,0.03388559104179678],[116,27,70,0.0307429936634334],[116,27,71,0.027692592455576755],[116,27,72,0.02474252521177891],[116,27,73,0.021898775856842467],[116,27,74,0.019164832770160182],[116,27,75,0.01654145396660533],[116,27,76,0.01402653851312497],[116,27,77,0.011615103308508554],[116,27,78,0.009299364116261612],[116,27,79,0.007068919518270326],[116,28,64,0.04058717078794285],[116,28,65,0.037013119477931504],[116,28,66,0.033531517741489894],[116,28,67,0.03013097270888322],[116,28,68,0.026809782445460846],[116,28,69,0.02357643756092922],[116,28,70,0.020439761614593155],[116,28,71,0.017407908604820964],[116,28,72,0.014487700410737632],[116,28,73,0.011684082628081472],[116,28,74,0.008999698814524311],[116,28,75,0.006434582858276469],[116,28,76,0.003985968891874226],[116,28,77,0.0016482178929311002],[116,28,78,-5.871401523553504E-4],[116,28,79,-0.0027312498966546887],[116,29,64,0.03088557660165407],[116,29,65,0.027228661532876366],[116,29,66,0.023684590137658626],[116,29,67,0.020241849131647244],[116,29,68,0.016896458732300338],[116,29,69,0.013654150332414253],[116,29,70,0.010521518585447715],[116,29,71,0.007504939178933395],[116,29,72,0.004609816444678222],[116,29,73,0.0018399583707200437],[116,29,74,-8.029208705256077E-4],[116,29,75,-0.0033195710904357387],[116,29,76,-0.005713449478082895],[116,29,77,-0.007990838053772792],[116,29,78,-0.010160836305676501],[116,29,79,-0.012235230405110866],[116,30,64,0.02160907855970464],[116,30,65,0.017875584454544763],[116,30,66,0.014273053605092359],[116,30,67,0.010790342652131812],[116,30,68,0.007421503983795498],[116,30,69,0.004169541812150298],[116,30,70,0.00103879599976529],[116,30,71,-0.001966195116025091],[116,30,72,-0.004841519661202447],[116,30,73,-0.007584582915728739],[116,30,74,-0.010194663550216703],[116,30,75,-0.01267333554882318],[116,30,76,-0.015024756294985358],[116,30,77,-0.017255821620138913],[116,30,78,-0.019376188923533946],[116,30,79,-0.021398169761047664],[116,31,64,0.012794856420315925],[116,31,65,0.008991816586017456],[116,31,66,0.00533540247503894],[116,31,67,0.0018153059291238435],[116,31,68,-0.0015760624916179855],[116,31,69,-0.004838355958833867],[116,31,70,-0.007969480536154589],[116,31,71,-0.010966762830875158],[116,31,72,-0.0138278299882812],[116,31,73,-0.016551350770273265],[116,31,74,-0.01913763742775116],[116,31,75,-0.021589108437131625],[116,31,76,-0.0239106125216843],[116,31,77,-0.02610961471546648],[116,31,78,-0.028196245548816654],[116,31,79,-0.030183214736825635],[116,32,64,0.0044666586786382394],[116,32,65,6.017544140505572E-4],[116,32,66,-0.0031034295418309703],[116,32,67,-0.006657938865738412],[116,32,68,-0.010070673867063066],[116,32,69,-0.013343841851139198],[116,32,70,-0.016477552908371877],[116,32,71,-0.019470994687806352],[116,32,72,-0.022323350392830475],[116,32,73,-0.02503457531150234],[116,32,74,-0.02760603151596029],[116,32,75,-0.030040980734777883],[116,32,76,-0.03234493576083614],[116,32,77,-0.03452587110261778],[116,32,78,-0.03659429391605845],[116,32,79,-0.038563176564337415],[116,33,64,-0.0033664470206731818],[116,33,65,-0.007285020278854847],[116,33,66,-0.011033382100558809],[116,33,67,-0.014618938827806642],[116,33,68,-0.018051578301221206],[116,33,69,-0.021335931825848066],[116,33,70,-0.024474241834469203],[116,33,71,-0.02746752245869047],[116,33,72,-0.03031649966350363],[116,33,73,-0.03302240934523418],[116,33,74,-0.03558765296145956],[116,33,75,-0.03801631063407589],[116,33,76,-0.04031451202860195],[116,33,77,-0.04249066566136697],[116,33,78,-0.0445555476186533],[116,33,79,-0.0465222509853184],[116,34,64,-0.010711116087910361],[116,34,65,-0.014674819404102587],[116,34,66,-0.01846038278488364],[116,34,67,-0.02207325856038836],[116,34,68,-0.02552402058516621],[116,34,69,-0.028819576204329497],[116,34,70,-0.03196420362140208],[116,34,71,-0.03496067997373782],[116,34,72,-0.03781122981243951],[116,34,73,-0.04051833272415236],[116,34,74,-0.043085389605863084],[116,34,75,-0.04551724747490229],[116,34,76,-0.04782058305683749],[116,34,77,-0.050004145741257104],[116,34,78,-0.047462592010825706],[116,34,79,-0.04342769446369208],[116,35,64,-0.017590556106713166],[116,35,65,-0.021590718039905615],[116,35,66,-0.025407257932759452],[116,35,67,-0.029043432479282236],[116,35,68,-0.03251023774908627],[116,35,69,-0.03581670312417948],[116,35,70,-0.03896902778314573],[116,35,71,-0.04197166211713735],[116,35,72,-0.0448282538412562],[116,35,73,-0.04754245585172097],[116,35,74,-0.0501185952890534],[116,35,75,-0.04579538260297274],[116,35,76,-0.04143913321681927],[116,35,77,-0.03713105504686866],[116,35,78,-0.03288413839973557],[116,35,79,-0.02871291147714107],[116,36,64,-0.024045136904308442],[116,36,65,-0.02807320845774068],[116,36,66,-0.031914433887489796],[116,36,67,-0.03556971549337554],[116,36,68,-0.03905026314977948],[116,36,69,-0.04236708297641199],[116,36,70,-0.04552817065779728],[116,36,71,-0.048539537366234],[116,36,72,-0.0450951509309906],[116,36,73,-0.04049118407228057],[116,36,74,-0.03591102954336977],[116,36,75,-0.031364413004952005],[116,36,76,-0.026861978314979544],[116,36,77,-0.022415560749687986],[116,36,78,-0.018038326245206977],[116,36,79,-0.013744777734329763],[116,37,64,-0.030132775375807712],[116,37,65,-0.03418063252450027],[116,37,66,-0.03804042257848345],[116,37,67,-0.041710626105538384],[116,37,68,-0.045202533284215106],[116,37,69,-0.045254468675390715],[116,37,70,-0.04046440649418516],[116,37,71,-0.03567305073742961],[116,37,72,-0.03089178116504637],[116,37,73,-0.02613102220549508],[116,37,74,-0.02140091855180467],[116,37,75,-0.016711879458349458],[116,37,76,-0.012074991787981573],[116,37,77,-0.007502302185205583],[116,37,78,-0.0030069690636692348],[116,37,79,0.0013967146091229694],[116,38,64,-0.035927104496463955],[116,38,65,-0.03998732195558318],[116,38,66,-0.04385994891301877],[116,38,67,-0.041235133014379276],[116,38,68,-0.03632131589286878],[116,38,69,-0.03137850168699243],[116,38,70,-0.02642430056914753],[116,38,71,-0.021473365214122058],[116,38,72,-0.0165383225597937],[116,38,73,-0.01163057915950219],[116,38,74,-0.006760999428323217],[116,38,75,-0.0019404564259623697],[116,38,76,0.002819744850612608],[116,38,77,0.0075075713732931735],[116,38,78,0.012110092590702427],[116,38,79,0.016613436652605507],[116,39,64,-0.04147437496581585],[116,39,65,-0.037572166350951536],[116,39,66,-0.032611259900198634],[116,39,67,-0.027581748165568482],[116,39,68,-0.022502496018642203],[116,39,69,-0.01739698447439958],[116,39,70,-0.012284545711929504],[116,39,71,-0.007181241733665578],[116,39,72,-0.002100800280008597],[116,39,73,0.0029445721270949343],[116,39,74,0.007943500783545103],[116,39,75,0.012884877484083864],[116,39,76,0.017757419399846337],[116,39,77,0.022549351955221016],[116,39,78,0.027248215206818062],[116,39,79,0.03184079294401934],[116,40,64,-0.029237068473058535],[116,40,65,-0.024174182334393578],[116,40,66,-0.0190451317736174],[116,40,67,-0.013849242733448262],[116,40,68,-0.008605643286225085],[116,40,69,-0.003339911518224611],[116,40,70,0.0019268573433145059],[116,40,71,0.007177212310169176],[116,40,72,0.012396398232481377],[116,40,73,0.017571526997265368],[116,40,74,0.022690869186386763],[116,40,75,0.02774326672724384],[116,40,76,0.03271766675136524],[116,40,77,0.03760277656902466],[116,40,78,0.0423868393724368],[116,40,79,0.047057530000454456],[116,41,64,-0.01598036580827234],[116,41,65,-0.010741387811222997],[116,41,66,-0.00544145847910294],[116,41,67,-7.748221020888093E-5],[116,41,68,0.005331098078744743],[116,41,69,0.010756438664614995],[116,41,70,0.01617557677167323],[116,41,71,0.021569629465759976],[116,41,72,0.02692282605654266],[116,41,73,0.032221656933878746],[116,41,74,0.03745413979964308],[116,41,75,0.042609203934931214],[116,41,76,0.04767619282962146],[116,41,77,0.05264448519858198],[116,41,78,0.057503234116985005],[116,41,79,0.06224122373047578],[116,42,64,-0.0027396405677408402],[116,42,65,0.0026799654154772883],[116,42,66,0.008154398091607305],[116,42,67,0.01368930344766803],[116,42,68,0.01926486035281738],[116,42,69,0.02485075801556042],[116,42,70,0.030422021238224677],[116,42,71,0.035958246627826],[116,42,72,0.04144261101007898],[116,42,73,0.04686099307707062],[116,42,74,0.052201209341117896],[116,42,75,0.057452365151418744],[116,42,76,0.06260432122207349],[116,42,77,0.06764727582157147],[116,42,78,0.07257146248543182],[116,42,79,0.07736696283957517],[116,43,64,0.010438932428339369],[116,43,65,0.01604388136170913],[116,43,66,0.021696881277801283],[116,43,67,0.027406241918593078],[116,43,68,0.03315168986437896],[116,43,69,0.03890023571758901],[116,43,70,0.044624725890562315],[116,43,71,0.05030311787089231],[116,43,72,0.05591746197019564],[116,43,73,0.061452992939017244],[116,43,74,0.06689733263849457],[116,43,75,0.07223980464932245],[116,43,76,0.07747086139569004],[116,43,77,0.08258162406777425],[116,43,78,0.08756353534154976],[116,43,79,0.09240812462323572],[116,44,64,0.02351397238162748],[116,44,65,0.029308652703393414],[116,44,66,0.035144223547479446],[116,44,67,0.04103173155757733],[116,44,68,0.046950365959452664],[116,44,69,0.05286425482815075],[116,44,70,0.058743894830708854],[116,44,71,0.06456546884419757],[116,44,72,0.07030980056250968],[116,44,73,0.07596141530750247],[116,44,74,0.08150770835657523],[116,44,75,0.08693822179523415],[116,44,76,0.09224403060614786],[116,44,77,0.09741723841714253],[116,44,78,0.10245058304988874],[116,44,79,0.1073371517427862],[116,45,64,0.03645315890801395],[116,45,65,0.04244110057195418],[116,45,66,0.04846263216721768],[116,45,67,0.05453154890653863],[116,45,68,0.06062640483460079],[116,45,69,0.06670826208703219],[116,45,70,0.07274510321801714],[116,45,71,0.07871119566141122],[116,45,72,0.08458602089355961],[116,45,73,0.09035330571550731],[116,45,74,0.09600015708780346],[116,45,75,0.10151630165525218],[116,45,76,0.10689343080883411],[116,45,77,0.11192372369396403],[116,45,78,0.11609674043740419],[116,45,79,0.12014500758346003],[116,46,64,0.04923771222877433],[116,46,65,0.05542102444845032],[116,46,66,0.06163067981640856],[116,46,67,0.06788315382885604],[116,46,68,0.07415625132463127],[116,46,69,0.08040781387049271],[116,46,70,0.08660316181289988],[116,46,71,0.0927145108917828],[116,46,72,0.09871987969167602],[116,46,73,0.10452909439958528],[116,46,74,0.10949923911581513],[116,46,75,0.11434186436599997],[116,46,76,0.11906119063934385],[116,46,77,0.12366016460411167],[116,46,78,0.12814094834675088],[116,46,79,0.13250530525507428],[116,47,64,0.060869462598534464],[116,47,65,0.0677539278817842],[116,47,66,0.07440423713007732],[116,47,67,0.08079276358928125],[116,47,68,0.08693443055815828],[116,47,69,0.09286707110071535],[116,47,70,0.0986209819536546],[116,47,71,0.104219456887596],[116,47,72,0.109679902453125],[116,47,73,0.11501486073558238],[116,47,74,0.1202329374596441],[116,47,75,0.12533963405837567],[116,47,76,0.13033808259295346],[116,47,77,0.13522968267646207],[116,47,78,0.1400146398146371],[116,47,79,0.1446924048280613],[116,48,64,0.06974769416016043],[116,48,65,0.07675667168874496],[116,48,66,0.08354080517141493],[116,48,67,0.09006994059981209],[116,48,68,0.09635973150853568],[116,48,69,0.10245109700340109],[116,48,70,0.10837685014181389],[116,48,71,0.11416217066001594],[116,48,72,0.1198257326691229],[116,48,73,0.12538074524494058],[116,48,74,0.1308359041551737],[116,48,75,0.1361962532281245],[116,48,76,0.14146395412619894],[116,48,77,0.14663896354344114],[116,48,78,0.15171961709555615],[116,48,79,0.15670311941353168],[116,49,64,0.07864590879049307],[116,49,65,0.08576995549286838],[116,49,66,0.09267741509159448],[116,49,67,0.09933586101493598],[116,49,68,0.10576177158424527],[116,49,69,0.11199914497169687],[116,49,70,0.11808335220191246],[116,49,71,0.12404154319100691],[116,49,72,0.12989377731241458],[116,49,73,0.13565407329303064],[116,49,74,0.14133137660268075],[116,49,75,0.14693044274541217],[116,49,76,0.15245263510617493],[116,49,77,0.1578966362491875],[116,49,78,0.16325907180145585],[116,49,79,0.16853504628671562],[116,50,64,0.0875963930807396],[116,50,65,0.09482616248383528],[116,50,66,0.101846240386846],[116,50,67,0.10862222477599517],[116,50,68,0.11517149044371204],[116,50,69,0.12154103963561523],[116,50,70,0.12776879275258754],[116,50,71,0.1338839221243198],[116,50,72,0.13990797528844062],[116,50,73,0.14585592448452692],[116,50,74,0.15173714046584114],[116,50,75,0.15755628896046067],[116,50,76,0.1633141483426814],[116,50,77,0.1690083473034057],[116,50,78,0.17463402153156563],[116,50,79,0.18018438863782565],[116,51,64,0.09662061894419922],[116,51,65,0.10394705353608558],[116,51,66,0.1110690984705584],[116,51,67,0.11795071107633286],[116,51,68,0.12461021156003853],[116,51,69,0.13109746609656234],[116,51,70,0.1374528851190589],[116,51,71,0.14370768004471549],[116,51,72,0.14988496848919697],[116,51,73,0.1560008129133303],[116,51,74,0.1620651907678234],[116,51,75,0.1680828944125293],[116,51,76,0.1740543592986512],[116,51,77,0.17997641911364928],[116,51,78,0.18584298679653807],[116,51,79,0.19164566053620852],[116,52,64,0.10572938804746754],[116,52,65,0.11314387767224915],[116,52,66,0.12035752595290673],[116,52,67,0.12733301450367163],[116,52,68,0.13408963539087046],[116,52,69,0.1406799185137264],[116,52,70,0.14714665582110126],[116,52,71,0.15352307724871114],[116,52,72,0.1598339269061219],[116,52,73,0.1660964801225793],[116,52,74,0.17232149940525832],[116,52,75,0.17851412755497925],[116,52,76,0.1846747163777464],[116,52,77,0.19079958962407984],[116,52,78,0.19688173897923503],[116,52,79,0.20291145211665804],[116,53,64,0.11492310850796461],[116,53,65,0.12241761550790578],[116,53,66,0.1297129867777984],[116,53,67,0.13677101363808244],[116,53,68,0.14361196436931475],[116,53,69,0.15029077932486912],[116,53,70,0.1568524777028128],[116,53,71,0.16333225017411274],[116,53,72,0.16975649530739573],[116,53,73,0.17614380435992885],[116,53,74,0.18250589250181534],[116,53,75,0.18884847471176702],[116,53,76,0.195172084756625],[116,53,77,0.2014728358416258],[116,53,78,0.20774312169162934],[116,53,79,0.21397225699586975],[116,54,64,0.12419220739311013],[116,54,65,0.13175935930149707],[116,54,66,0.1391272169063327],[116,54,67,0.14625707585133405],[116,54,68,0.15317016350985588],[116,54,69,0.15992353292505804],[116,54,70,0.16656423553019067],[116,54,71,0.17312932928292002],[116,54,72,0.1796468652038841],[116,54,73,0.18613682973971288],[116,54,74,0.19261204105638446],[116,54,75,0.19907899751957067],[116,54,76,0.2055386767723241],[116,54,77,0.21198728397579464],[116,54,78,0.21841694793315802],[116,54,79,0.22481636397145588],[116,55,64,0.13351768248445578],[116,55,65,0.1411508331674288],[116,55,66,0.1485827091770871],[116,55,67,0.15577450200215412],[116,55,68,0.16274836038025228],[116,55,69,0.16956311759276824],[116,55,70,0.17626762785761194],[116,55,71,0.18290069017658084],[116,55,72,0.18949197582149876],[116,55,73,0.19606291892585437],[116,55,74,0.2026275683511275],[116,55,75,0.20919339912703808],[116,55,76,0.2157620818982835],[116,55,77,0.2223302089458176],[116,55,78,0.22888997548600057],[116,55,79,0.2354298150870263],[116,56,64,0.14287179667201333],[116,56,65,0.15056505691803326],[116,56,66,0.15805334188772657],[116,56,67,0.1652981146434406],[116,56,68,0.17232238811998862],[116,56,69,0.17918641939112487],[116,56,70,0.18594060891194017],[116,56,71,0.1926253416798105],[116,56,72,0.19927184776470075],[116,56,73,0.20590303292590684],[116,56,74,0.2125342775703119],[116,56,75,0.2191742024167473],[116,56,76,0.22582539934414061],[116,56,77,0.2324851260167392],[116,56,78,0.23914596299562293],[116,56,79,0.24579643216308167],[116,57,64,0.15221891822089925],[116,57,65,0.1599671568820903],[116,57,66,0.16750515453060044],[116,57,67,0.17479499325261852],[116,57,68,0.18186047508880293],[116,57,69,0.188762911683589],[116,57,70,0.1955539741638097],[116,57,71,0.2022754545598805],[116,57,72,0.20896005299679316],[116,57,73,0.21563214153789959],[116,57,74,0.22230850304237806],[116,57,75,0.22899904348686567],[116,57,76,0.23570747629503477],[116,57,77,0.24243197731497532],[116,57,78,0.2491658091810266],[116,57,79,0.2558979138954219],[116,58,64,0.16151651000427852],[116,58,65,0.16931532690397164],[116,58,66,0.17689727397703808],[116,58,67,0.1842253598649575],[116,58,68,0.19132408460486783],[116,58,69,0.19825544378781082],[116,58,70,0.20507209314932054],[116,58,71,0.21181703445202413],[116,58,72,0.21852432467708607],[116,58,73,0.22521976791720452],[116,58,74,0.2319215884545471],[116,58,75,0.23864108357759112],[116,58,76,0.24538325476515388],[116,58,77,0.2521474159431581],[116,58,78,0.25892777759786845],[116,58,79,0.2657140056098422],[116,59,64,0.1707162706227611],[116,59,65,0.17856194255750305],[116,59,66,0.18618299424024357],[116,59,67,0.19354361833097844],[116,59,68,0.20066890808055035],[116,59,69,0.20762118214779757],[116,59,70,0.21445379297095093],[116,59,71,0.22121074243736683],[116,59,72,0.22792731028186872],[116,59,73,0.23463067062934126],[116,59,74,0.241340495300313],[116,59,75,0.24806954255108535],[116,59,76,0.25482422997645965],[116,59,77,0.2616051903625643],[116,59,78,0.2684078093377982],[116,59,79,0.2752227437329499],[116,60,64,0.17976542971600934],[116,60,65,0.1876548309937138],[116,60,66,0.19531101233278142],[116,60,67,0.20269954980722102],[116,60,68,0.20984601425488034],[116,60,69,0.21681270680001413],[116,60,70,0.22365339530756015],[116,60,71,0.2304128661277505],[116,60,72,0.23712747085223385],[116,60,73,0.24382566597996186],[116,60,74,0.2505285442556005],[116,60,75,0.2572503564798103],[116,60,76,0.26399902263085273],[116,60,77,0.27077663117994977],[116,60,78,0.2775799255268748],[116,60,79,0.28440077652890794],[116,61,64,0.18860818818835076],[116,61,65,0.19653868715980183],[116,61,66,0.2042268109576527],[116,61,67,0.21163965521974695],[116,61,68,0.2188031452612745],[116,61,69,0.22577925386032585],[116,61,70,0.23262189762925206],[116,61,71,0.23937643189520524],[116,61,72,0.24608011691550952],[116,61,73,0.25276258104008514],[116,61,74,0.25944627973194534],[116,61,75,0.2661469493789138],[116,61,76,0.2728740548551262],[116,61,77,0.2796312298189677],[116,61,78,0.2864167087631714],[116,61,79,0.2932237498644224],[116,62,64,0.19718732925454666],[116,62,65,0.20515666262033855],[116,62,66,0.21287421457319616],[116,62,67,0.22030867154587838],[116,62,68,0.227486186677249],[116,62,69,0.23446813146631965],[116,62,70,0.24130832631746038],[116,62,71,0.24805248618283152],[116,62,72,0.25473860921786884],[116,62,73,0.2613973656644381],[116,62,74,0.2680524860207058],[116,62,75,0.27472114756640387],[116,62,76,0.28141435832477013],[116,62,77,0.2881373375574602],[116,62,78,0.2948898919045278],[116,62,79,0.3016667862997664],[116,63,64,0.2054460074777981],[116,63,65,0.21345213432596796],[116,63,66,0.22119712633845845],[116,63,67,0.22865126958143533],[116,63,68,0.235840819383165],[116,63,69,0.2428263171520781],[116,63,70,0.2496612697993893],[116,63,71,0.2563915541131441],[116,63,72,0.2630557325598406],[116,63,73,0.2696853718341381],[116,63,74,0.276305363359188],[116,63,75,0.28293424493932073],[116,63,76,0.28958452276863295],[116,63,77,0.2962629930029174],[116,63,78,0.3029710621067758],[116,63,79,0.3097050651943088],[116,64,64,0.2133296862769157],[116,64,65,0.2213706236549587],[116,64,66,0.2291414161066882],[116,64,67,0.23661390320757159],[116,64,68,0.2438143230946914],[116,64,69,0.2508022063665625],[116,64,70,0.25763056124262],[116,64,71,0.26434524475568527],[116,64,72,0.2709852118880158],[116,64,73,0.27758276923918174],[116,64,74,0.284163832563314],[116,64,75,0.2907481875041467],[116,64,76,0.29734975284937365],[116,64,77,0.3039768456206337],[116,64,78,0.3106324473104093],[116,64,79,0.31731447057392353],[116,65,64,0.21986258564539882],[116,65,65,0.22886188098741814],[116,65,66,0.23665697495556015],[116,65,67,0.24414682587522324],[116,65,68,0.2513575475167944],[116,65,69,0.2583475283057394],[116,65,70,0.26516912718744245],[116,65,71,0.27186801961728224],[116,65,72,0.278483387364672],[116,65,73,0.28504811394840973],[116,65,74,0.29158898516411946],[116,65,75,0.2981268941491743],[116,65,76,0.30467705041691023],[116,65,77,0.3112491922796465],[116,65,78,0.3178478020675411],[116,65,79,0.32447232353927924],[116,66,64,0.22526349934287598],[116,66,65,0.234429731085853],[116,66,66,0.2436999384866504],[116,66,67,0.2512062766642516],[116,66,68,0.25842705360384544],[116,66,69,0.26541943166634424],[116,66,70,0.2722350048370023],[116,66,71,0.27891912716982165],[116,66,72,0.2855110513019164],[116,66,73,0.29204407309738806],[116,66,74,0.2985456819905383],[116,66,75,0.3050377165784868],[116,66,76,0.31153652499491086],[116,66,77,0.31805312957914456],[116,66,78,0.32459339533680787],[116,66,79,0.33115820167111637],[116,67,64,0.23049190413086165],[116,67,65,0.23970229529524842],[116,67,66,0.24903494978925103],[116,67,67,0.2577568369633901],[116,67,68,0.26498742609338066],[116,67,69,0.2719827416080325],[116,67,70,0.27879352940270763],[116,67,71,0.28546470490922254],[116,67,72,0.29203544853043695],[116,67,73,0.29853930721615385],[116,67,74,0.3050043018437464],[116,67,75,0.3114530400444768],[116,67,76,0.3179028340950022],[116,67,77,0.3243658234725771],[116,67,78,0.3308491016504987],[116,67,79,0.3373548466890024],[116,68,64,0.23555759020194217],[116,68,65,0.244800856239784],[116,68,66,0.25417317089519914],[116,68,67,0.2636861050092931],[116,68,68,0.27101375810812334],[116,68,69,0.27801238884052865],[116,68,70,0.2848196925375893],[116,68,71,0.29148005008301137],[116,68,72,0.2980324414285122],[116,68,73,0.3045105114896584],[116,68,74,0.3109426415980489],[116,68,75,0.31735202622775166],[116,68,76,0.3237567546906396],[116,68,77,0.33016989747210496],[116,68,78,0.336599596854126],[116,68,79,0.3430491614483848],[116,69,64,0.240457015385312],[116,69,65,0.24972283319171873],[116,69,66,0.2591233029540906],[116,69,67,0.2686687717593924],[116,69,68,0.2764943122410731],[116,69,69,0.2834960157517539],[116,69,70,0.29030067722591024],[116,69,71,0.29695206483823217],[116,69,72,0.30348884565968964],[116,69,73,0.30994462219397056],[116,69,74,0.31634797405165455],[116,69,75,0.3227225045445482],[116,69,76,0.3290868919583557],[116,69,77,0.33545494523738423],[116,69,78,0.34183566378883634],[116,69,79,0.348233301087967],[116,70,64,0.24516577880082413],[116,70,65,0.25444399641838433],[116,70,66,0.2638613478247748],[116,70,67,0.2734268567708408],[116,70,68,0.28144230491167244],[116,70,69,0.28844672003472316],[116,70,70,0.29524943364467665],[116,70,71,0.30189349737139953],[116,70,72,0.3084171352207586],[116,70,73,0.3148537559950811],[116,70,74,0.3212319703285409],[116,70,75,0.3275756121740409],[116,70,76,0.3339037645535512],[116,70,77,0.34023078935870404],[116,70,78,0.34656636096136184],[116,70,79,0.3529155033663244],[116,71,64,0.2496383697905363],[116,71,65,0.25891612523762964],[116,71,66,0.26833635608926365],[116,71,67,0.2779066495174582],[116,71,68,0.2859050098195244],[116,71,69,0.2929142936083348],[116,71,70,0.299717892214507],[116,71,71,0.30635790643901667],[116,71,72,0.3128718783711485],[116,71,73,0.3192927859850861],[116,71,74,0.3256490413618958],[116,71,75,0.3319644924158103],[116,71,76,0.3382584279802341],[116,71,77,0.3445455860846108],[116,71,78,0.35083616522676353],[116,71,79,0.35713583841803875],[116,72,64,0.25383625030763374],[116,72,65,0.2630980050811316],[116,72,66,0.27250440980761237],[116,72,67,0.28206151636469573],[116,72,68,0.28992389754106074],[116,72,69,0.29694271782487797],[116,72,70,0.3037522147503361],[116,72,71,0.3103931942939695],[116,72,72,0.3169021841444234],[116,72,73,0.3233114183235626],[116,72,74,0.329648823609564],[116,72,75,0.33593800766833676],[116,72,76,0.34219824877977006],[116,72,77,0.34844448702431075],[116,72,78,0.3546873167718541],[116,72,79,0.36093298029021637],[116,73,64,0.2577300739381986],[116,73,65,0.26695830118301905],[116,73,66,0.2763321821788197],[116,73,67,0.28585615787389207],[116,73,68,0.2935297159856081],[116,73,69,0.30056459188720497],[116,73,70,0.3073866296252026],[116,73,71,0.31403492956991197],[116,73,72,0.3205446139328593],[116,73,73,0.326946810757553],[116,73,74,0.3332686367773006],[116,73,75,0.33953317905541297],[116,73,76,0.34575947531011014],[116,73,77,0.3519624928119228],[116,73,78,0.35815310572392156],[116,73,79,0.3643380707360157],[116,74,64,0.2612968221929414],[116,74,65,0.2704726578485234],[116,74,66,0.27979400665081167],[116,74,67,0.2892636532327802],[116,74,68,0.29674548379732696],[116,74,69,0.30380412108788457],[116,74,70,0.31064638860867033],[116,74,71,0.3173092412073192],[116,74,72,0.32382597736107793],[116,74,73,0.3302262332164873],[116,74,74,0.3365359712544388],[116,74,75,0.34277746348273946],[116,74,76,0.3489692690558448],[116,74,77,0.35512620621704755],[116,74,78,0.3612593184506125],[116,74,79,0.36737583472133595],[116,75,64,0.26451702770928254],[116,75,65,0.2736208829387436],[116,75,66,0.28286902911153444],[116,75,67,0.2922410631461479],[116,75,68,0.29958940498791226],[116,75,69,0.3066800302167084],[116,75,70,0.3135506540938995],[116,75,71,0.3202356494834757],[116,75,72,0.32676607359159277],[116,75,73,0.33316968381349327],[116,75,74,0.33947094253723703],[116,75,75,0.3456910107674029],[116,75,76,0.35184773044406725],[116,75,77,0.3579555953421311],[116,75,78,0.3640257104418444],[116,75,79,0.37006573966423895],[116,76,64,0.2673720893289747],[116,76,65,0.27638422258311085],[116,76,66,0.2855384482001202],[116,76,67,0.294688803940051],[116,76,68,0.3020776997640471],[116,76,69,0.30920839715948895],[116,76,70,0.3161153118546122],[116,76,71,0.32282982947662897],[116,76,72,0.3293803736601046],[116,76,73,0.3357924562017868],[116,76,74,0.342088709024247],[116,76,75,0.3482888977436609],[116,76,76,0.3544099166680405],[116,76,77,0.36046576508026956],[116,76,78,0.36646750468369366],[116,76,79,0.37242319810770985],[116,77,64,0.2698416840994695],[116,77,65,0.2787427312269421],[116,77,66,0.2877828488860864],[116,77,67,0.29679076428275863],[116,77,68,0.3042273463775302],[116,77,69,0.3114054015615164],[116,77,70,0.31835570431049715],[116,77,71,0.3251063021195119],[116,77,72,0.33168263925220026],[116,77,73,0.3381076540390969],[116,77,74,0.3444018493647622],[116,77,75,0.35058333604005343],[116,77,76,0.3566678488098336],[116,77,77,0.36266873479686773],[116,77,78,0.36859691422772234],[116,77,79,0.3744608133269185],[116,78,64,0.2719012813020115],[116,78,65,0.28067274218882576],[116,78,66,0.28957963454496743],[116,78,67,0.29856864241853326],[116,78,68,0.306058728718406],[116,78,69,0.31328998330756364],[116,78,70,0.32028927914428557],[116,78,71,0.3270810478485924],[116,78,72,0.3336874731714095],[116,78,73,0.3401286481395853],[116,78,74,0.3464226953575731],[116,78,75,0.3525858500305069],[116,78,76,0.35863250535439906],[116,78,77,0.36457521999600023],[116,78,78,0.370424687455495],[116,78,79,0.3761896671701483],[116,79,64,0.27353918332510535],[116,79,65,0.2821637005592759],[116,79,66,0.29091942501343193],[116,79,67,0.2998015719554648],[116,79,68,0.3075808810779247],[116,79,69,0.3148702720861429],[116,79,70,0.3219234332540989],[116,79,71,0.3287609706233139],[116,79,72,0.33540157932336834],[116,79,73,0.3418622739002044],[116,79,74,0.3481585704284009],[116,79,75,0.354304619805168],[116,79,76,0.36031329173565574],[116,79,77,0.3661962090261836],[116,79,78,0.3719637319019306],[116,79,79,0.3776248921587844],[116,80,64,0.2748093236933745],[116,80,65,0.28327048795956805],[116,80,66,0.29185729401654],[116,80,67,0.30056378080132684],[116,80,68,0.30874453091659443],[116,80,69,0.3160997682990286],[116,80,70,0.3232154802962388],[116,80,71,0.3301082442013526],[116,80,72,0.33679300567947185],[116,80,73,0.34328340038638183],[116,80,74,0.34959201464978995],[116,80,75,0.3557305843970713],[116,80,76,0.36171013166039095],[116,80,77,0.3675410381314555],[116,80,78,0.37323305537157986],[116,80,79,0.37879525140824893],[116,81,64,0.27576654539040796],[116,81,65,0.28404923576611013],[116,81,66,0.29244994053966916],[116,81,67,0.30096157440174304],[116,81,68,0.309499495720539],[116,81,69,0.31693061722734595],[116,81,70,0.3241209073809343],[116,81,71,0.33108272404201006],[116,81,72,0.33782697720703575],[116,81,73,0.3443635643295687],[116,81,74,0.3507017306610027],[116,81,75,0.3568503535237773],[116,81,76,0.36281814961642395],[116,81,77,0.36861380463002336],[116,81,78,0.3742460246270588],[116,81,79,0.37972350879597355],[116,82,64,0.2764483843165727],[116,82,65,0.2845391969574854],[116,82,66,0.2927378712557055],[116,82,67,0.30103621588335344],[116,82,68,0.3094125454438804],[116,82,69,0.31732896815830647],[116,82,70,0.32460742250363034],[116,82,71,0.33165445031241525],[116,82,72,0.33847664514599657],[116,82,73,0.3450797859678422],[116,82,74,0.3514693209100293],[116,82,75,0.3576507593617636],[116,82,76,0.3636299711883105],[116,82,77,0.36941339211214097],[116,82,78,0.3750081345020086],[116,82,79,0.3804220030193588],[116,83,64,0.27671430846535017],[116,83,65,0.2847650946097259],[116,83,66,0.2927476260575406],[116,83,67,0.30081580441611655],[116,83,68,0.30894940092898404],[116,83,69,0.3171269666843881],[116,83,70,0.32465356300172304],[116,83,71,0.33180252488442863],[116,83,72,0.338722246723069],[116,83,73,0.3454140195988508],[116,83,74,0.35187903105700175],[116,83,75,0.35811888879549625],[116,83,76,0.36413603436142766],[116,83,77,0.3699340455802166],[116,83,78,0.3755178267035182],[116,83,79,0.38089368551114394],[116,84,64,0.2758083512513676],[116,84,65,0.28447436872187165],[116,84,66,0.292493914013235],[116,84,67,0.3003172586356761],[116,84,68,0.3081903853819104],[116,84,69,0.3160952871488147],[116,84,70,0.3240171951785871],[116,84,71,0.33151404433633475],[116,84,72,0.33855031454410944],[116,84,73,0.34535264857277337],[116,84,74,0.35191753390454644],[116,84,75,0.35824215377921614],[116,84,76,0.3643249381378111],[116,84,77,0.37016598477179935],[116,84,78,0.3757673493478447],[116,84,79,0.38113320327734235],[116,85,64,0.2744339479212566],[116,85,65,0.2831410461053596],[116,85,66,0.29162506195100196],[116,85,67,0.29954821021431943],[116,85,68,0.3071459241400621],[116,85,69,0.31475982104517725],[116,85,70,0.32237906524224275],[116,85,71,0.3299956459417119],[116,85,72,0.33760318596470323],[116,85,73,0.3448860257620939],[116,85,74,0.35157375436469773],[116,85,75,0.3580083998040104],[116,85,76,0.3641838279622988],[116,85,77,0.37009605470528467],[116,85,78,0.3757436558571011],[116,85,79,0.3811280249297957],[116,86,64,0.27261070458206504],[116,86,65,0.28135174401926083],[116,86,66,0.28989009999840964],[116,86,67,0.29822793737016684],[116,86,68,0.30581947292443196],[116,86,69,0.31312751121491816],[116,86,70,0.3204257450161909],[116,86,71,0.3277106373510907],[116,86,72,0.33498084261664574],[116,86,73,0.3422359154206185],[116,86,74,0.3494751766992573],[116,86,75,0.35669674053433453],[116,86,76,0.3636988179364813],[116,86,77,0.36970841290942574],[116,86,78,0.37542934220734847],[116,86,79,0.3808596084898319],[116,87,64,0.2703658569234034],[116,87,65,0.2791315802402776],[116,87,66,0.2877169943691827],[116,87,67,0.2961255176472575],[116,87,68,0.30420905536464504],[116,87,69,0.31120036401448237],[116,87,70,0.31816347968280295],[116,87,71,0.32509918092082096],[116,87,72,0.33201114899594747],[116,87,73,0.3389044229706746],[116,87,74,0.34578403064494323],[116,87,75,0.3526537994239719],[116,87,76,0.3595153506754402],[116,87,77,0.36636728064933677],[116,87,78,0.37320453055329533],[116,87,79,0.3800179479105172],[116,88,64,0.2677323810660425],[116,88,65,0.27651150182834716],[116,88,66,0.2851342144577335],[116,88,67,0.2936051833284863],[116,88,68,0.3019306188950198],[116,88,69,0.30897671068366156],[116,88,70,0.3155952766985058],[116,88,71,0.3221692723974168],[116,88,72,0.3287073197967475],[116,88,73,0.33521998216854354],[116,88,74,0.34171814565021363],[116,88,75,0.3482115999799553],[116,88,76,0.35470782254936256],[116,88,77,0.3612109694151759],[116,88,78,0.3677210763727111],[116,88,79,0.3742334726691298],[116,89,64,0.26474722494085096],[116,89,65,0.2735265859419558],[116,89,66,0.2821744593550587],[116,89,67,0.29069673690415826],[116,89,68,0.29910018846738995],[116,89,69,0.30645238057182395],[116,89,70,0.3127218818613347],[116,89,71,0.3189269919417363],[116,89,72,0.3250811078494328],[116,89,73,0.33120026350849285],[116,89,74,0.3373012521967133],[116,89,75,0.34339996703988585],[116,89,76,0.34950996438496906],[116,89,77,0.3556412542947761],[116,89,78,0.36179932180855384],[116,89,79,0.3679843820297824],[116,90,64,0.2614496637314941],[116,90,65,0.27021446089948487],[116,90,66,0.27887316762134295],[116,90,67,0.28743287368548565],[116,90,68,0.2959012344668706],[116,90,69,0.30362178350825886],[116,90,70,0.30954267443905487],[116,90,71,0.3153771900422067],[116,90,72,0.3211432618267675],[116,90,73,0.326862248768733],[116,90,74,0.3325567954915409],[116,90,75,0.338248926816086],[116,90,76,0.34395838421106545],[116,90,77,0.3497012090089384],[116,90,78,0.3554885765968004],[116,90,79,0.36132588515066055],[116,91,64,0.2578797826038125],[116,91,65,0.26661385066702137],[116,91,66,0.2752671451463067],[116,91,67,0.2838479152837915],[116,91,68,0.2923650008565028],[116,91,69,0.3004788988239873],[116,91,70,0.30605647916332807],[116,91,71,0.3115241003978768],[116,91,72,0.3169039204631795],[116,91,73,0.32222239029591626],[116,91,74,0.3275078474037355],[116,91,75,0.33278836333829986],[116,91,76,0.3380898512917769],[116,91,77,0.34343443931614104],[116,91,78,0.3488391139528772],[116,91,79,0.35431463836391514],[116,92,64,0.25407708965608367],[116,92,65,0.2627632456729856],[116,92,66,0.2713933139202586],[116,92,67,0.2799766566653306],[116,92,68,0.2885235617356555],[116,92,69,0.2970181687392233],[116,92,70,0.3022622930755682],[116,92,71,0.3073718780647754],[116,92,72,0.31237294191730525],[116,92,73,0.31729671438802176],[116,92,74,0.3221769701995312],[116,92,75,0.32704763287296834],[116,92,76,0.3319406558735188],[116,92,77,0.33688418720464375],[116,92,78,0.3419010228202168],[116,92,79,0.34700735347376876],[116,93,64,0.2500792617555722],[116,93,65,0.2586997025890042],[116,93,66,0.2672875842892406],[116,93,67,0.27585332924226563],[116,93,68,0.2844088951989022],[116,93,69,0.2929521666028118],[116,93,70,0.2981599253779948],[116,93,71,0.3029250613003922],[116,93,72,0.3075601670217351],[116,93,73,0.312100867848926],[116,93,74,0.31658603149109],[116,93,75,0.32105513607876857],[116,93,76,0.3255459314562915],[116,93,77,0.3300924005057168],[116,93,78,0.33472302644653534],[116,93,79,0.33945937125552167],[116,94,64,0.24592102567660268],[116,94,65,0.2544577754734471],[116,94,66,0.262983853035054],[116,94,67,0.2715106822418878],[116,94,68,0.2800520661573654],[116,94,69,0.28860743566997554],[116,94,70,0.2937505485997032],[116,94,71,0.29818895567266535],[116,94,72,0.30247561526981803],[116,94,73,0.3066501068679639],[116,94,74,0.31075596986798426],[116,94,75,0.3148378476883114],[116,94,76,0.3189389396964582],[116,94,77,0.3230987683411146],[116,94,78,0.32735126798787584],[116,94,79,0.3317232011161575],[116,95,64,0.24163317672332524],[116,95,65,0.2500685804484907],[116,95,66,0.25851312940494914],[116,95,67,0.2669791843932189],[116,95,68,0.27548252003479057],[116,95,69,0.28402442579630094],[116,95,70,0.289037159533909],[116,95,71,0.2931699391231869],[116,95,72,0.2971296124887658],[116,95,73,0.3009592274530097],[116,95,74,0.3047065107321339],[116,95,75,0.3084208035345398],[116,95,76,0.3121503180556127],[116,95,77,0.3159397228062258],[116,95,78,0.31982806381218926],[116,95,79,0.3238470278352717],[116,96,64,0.23724173680477123],[116,96,65,0.2455589958718541],[116,96,66,0.25390279101474844],[116,96,67,0.2622863477810953],[116,96,68,0.2707274890767172],[116,96,69,0.27922960587071705],[116,96,70,0.28402494853875976],[116,96,71,0.28787568678912495],[116,96,72,0.29153284924076606],[116,96,73,0.29504243671544894],[116,96,74,0.2984558319044785],[116,96,75,0.30182654476660137],[116,96,76,0.3052072903164723],[116,96,77,0.3086474072787208],[116,96,78,0.3121906251470493],[116,96,79,0.31587318626505884],[116,97,64,0.23276725372949705],[116,97,65,0.24095099976927684],[116,97,66,0.2491759713619765],[116,97,67,0.2574561755415862],[116,97,68,0.26581151284880244],[116,97,69,0.27424765180307376],[116,97,70,0.2787215759205801],[116,97,71,0.2823153144948575],[116,97,72,0.28569636907943097],[116,97,73,0.28891316436988584],[116,97,74,0.2920201786152596],[116,97,75,0.29507451912350513],[116,97,76,0.2981328400915898],[116,97,77,0.30124861173051787],[116,97,78,0.3044697486894678],[116,97,79,0.3078366048294308],[116,98,64,0.2282242433024201],[116,98,65,0.23626114611379403],[116,98,66,0.24435108051273163],[116,98,67,0.2525087349098014],[116,98,68,0.26075607435039916],[116,98,69,0.2691011617653342],[116,98,70,0.27313735423729296],[116,98,71,0.2764994399246362],[116,98,72,0.27963148586982106],[116,98,73,0.28258381387258935],[116,98,74,0.2854134275314243],[116,98,75,0.28818043915676045],[116,98,76,0.290944847456029],[116,98,77,0.2937636754104158],[116,98,78,0.2966884767716023],[116,98,79,0.2997632186268948],[116,99,64,0.22362077563467114],[116,99,65,0.23150018137014722],[116,99,66,0.23944146036470756],[116,99,67,0.24745985697889236],[116,99,68,0.25557935302895357],[116,99,69,0.2638104772304947],[116,99,70,0.2672853354690732],[116,99,71,0.27044016057961867],[116,99,72,0.2733496294541233],[116,99,73,0.2760654526779955],[116,99,74,0.27864659951160914],[116,99,75,0.2811555973124243],[116,99,76,0.28365518883784796],[116,99,77,0.2862053572524759],[116,99,78,0.28886072765089105],[116,99,79,0.2916683529058965],[116,100,64,0.2189582069195172],[116,100,65,0.22667280256847103],[116,100,66,0.23445517574033317],[116,100,67,0.24232096438886877],[116,100,68,0.2502960958513623],[116,100,69,0.25791249986664855],[116,100,70,0.26118130210595114],[116,100,71,0.2641509477092401],[116,100,72,0.26686211901478235],[116,100,73,0.26936744114499933],[116,100,74,0.2717273208143865],[116,100,75,0.27400613780161703],[116,100,76,0.27626880030328366],[116,100,77,0.27857767435420655],[116,100,78,0.2809898964698827],[116,100,79,0.28355507764800364],[116,101,64,0.2142305119328021],[116,101,65,0.22177665278309722],[116,101,66,0.22939367176520425],[116,101,67,0.23709738900901206],[116,101,68,0.24491559507837474],[116,101,69,0.25173327172008503],[116,101,70,0.2548464400401922],[116,101,71,0.2576496206652928],[116,101,72,0.26018340866880996],[116,101,73,0.2625009096745263],[116,101,74,0.2646634829842273],[116,101,75,0.2667368421736767],[116,101,76,0.2687875247118063],[116,101,77,0.27087974111239155],[116,101,78,0.27307261308456293],[116,101,79,0.2754178091158107],[116,102,64,0.20942057466383474],[116,102,65,0.21679451670997507],[116,102,66,0.22423979571060215],[116,102,67,0.2317721801198325],[116,102,68,0.23942121765850352],[116,102,69,0.24536272296648304],[116,102,70,0.24833663012123952],[116,102,71,0.25099212440079594],[116,102,72,0.25336930610468306],[116,102,73,0.2555212797635229],[116,102,74,0.25750982362632],[116,102,75,0.2594014201138069],[116,102,76,0.26126365907685967],[116,102,77,0.2631620246448182],[116,102,78,0.26515707539657474],[116,102,79,0.26730202654513313],[116,103,64,0.2045109660939453],[116,103,65,0.2117065780559944],[116,103,66,0.2189715167482417],[116,103,67,0.22632127777314398],[116,103,68,0.2337870178230436],[116,103,69,0.23886963178449974],[116,103,70,0.2417231169994454],[116,103,71,0.244252014777912],[116,103,72,0.24649545503304007],[116,103,73,0.2485059753784896],[116,103,74,0.25034514717899264],[116,103,75,0.25207956389446856],[116,103,76,0.25377720376260837],[116,103,77,0.25550417780885554],[116,103,78,0.2573218731185173],[116,103,79,0.2592845002609018],[116,104,64,0.19949172883140667],[116,104,65,0.20650114715001727],[116,104,66,0.21357563003600463],[116,104,67,0.22073020581839917],[116,104,68,0.2279974459349395],[116,104,69,0.23231312525918574],[116,104,70,0.23506666798953213],[116,104,71,0.23749157698430806],[116,104,72,0.23962550482298778],[116,104,73,0.24151980932554706],[116,104,74,0.24323517280767556],[116,104,75,0.24483758212578716],[116,104,76,0.24639468166365056],[116,104,77,0.24797251036322854],[116,104,78,0.24963263285441173],[116,104,79,0.25142967369930536],[116,105,64,0.1943614628025228],[116,105,65,0.20117572331622277],[116,105,66,0.20804879062392684],[116,105,67,0.21499506841097601],[116,105,68,0.22204830128065314],[116,105,69,0.22574175909476824],[116,105,70,0.22841669040602328],[116,105,71,0.23076097048021033],[116,105,72,0.23281026962209111],[116,105,73,0.23461414058547464],[116,105,74,0.23623167231519804],[116,105,75,0.2377274996850064],[116,105,76,0.23916818137512424],[116,105,77,0.2406189570004927],[116,105,78,0.2421408935687347],[116,105,79,0.2437884303233042],[116,106,64,0.18912872824396246],[116,106,65,0.19573831304012873],[116,106,66,0.20239873828330338],[116,106,67,0.2091236695178323],[116,106,68,0.21594773609985649],[116,106,69,0.21919262143434967],[116,106,70,0.22181045419441842],[116,106,71,0.2240975645078881],[116,106,72,0.226087166186819],[116,106,73,0.22782639979594618],[116,106,74,0.22937206506837995],[116,106,75,0.23078670096517037],[116,106,76,0.2321350253883582],[116,106,77,0.23348074555106296],[116,106,78,0.2348837490025334],[116,106,79,0.2363976843081617],[116,107,64,0.1838138819796641],[116,107,65,0.19020917858955183],[116,107,66,0.19664594744300928],[116,107,67,0.2031370495439324],[116,107,68,0.2097176656083141],[116,107,69,0.21269004450818182],[116,107,70,0.21527194157614904],[116,107,71,0.2175249242863129],[116,107,72,0.2194793305921628],[116,107,73,0.22117932619077793],[116,107,74,0.22267876104951353],[116,107,75,0.22403736157821794],[116,107,76,0.2253172701899667],[116,107,77,0.22657994302438755],[116,107,78,0.22788341563877534],[116,107,79,0.22927994551033892],[116,108,64,0.17845134918443228],[116,108,65,0.18462301942469464],[116,108,66,0.19082570469008814],[116,108,67,0.19707144165024001],[116,108,68,0.20334298866588088],[116,108,69,0.20624392136820588],[116,108,70,0.20881032092858642],[116,108,71,0.21105144512118754],[116,108,72,0.2129944111128481],[116,108,73,0.21467991341068396],[116,108,74,0.21615824963402727],[116,108,75,0.21748566636845007],[116,108,76,0.2187210364441461],[116,108,77,0.21992287805931396],[116,108,78,0.22114672524719506],[116,108,79,0.22244285826972654],[116,109,64,0.17309228543199875],[116,109,65,0.17903154074801467],[116,109,66,0.18499056773877315],[116,109,67,0.1909806012227926],[116,109,68,0.1969509109503863],[116,109,69,0.19984757530089883],[116,109,70,0.20241799193865923],[116,109,71,0.20466858097043325],[116,109,72,0.20662298338155075],[116,109,73,0.20831800992751667],[116,109,74,0.20979987955017848],[116,109,75,0.21112075898780752],[116,109,76,0.21233561438965937],[116,109,77,0.21349938488058962],[116,109,78,0.21466448715562048],[116,109,79,0.21587865932419817],[116,110,64,0.16779756355919123],[116,110,65,0.17349622149433697],[116,110,66,0.17920289768248096],[116,110,67,0.18492808180367315],[116,110,68,0.19055542856460034],[116,110,69,0.19346452063904798],[116,110,70,0.19605742957032488],[116,110,71,0.1983377868648644],[116,110,72,0.20032560239525288],[116,110,73,0.202053487409865],[116,110,74,0.20356314596417477],[116,110,75,0.20490214572314672],[116,110,76,0.20612097829011872],[116,110,77,0.20727041841748903],[116,110,78,0.20839919065343343],[116,110,79,0.20955195118259484],[116,111,64,0.16262315969148228],[116,111,65,0.16807366077208072],[116,111,66,0.17351997729274798],[116,111,67,0.1789719189247101],[116,111,68,0.18408131633603697],[116,111,69,0.18701897990757985],[116,111,70,0.18965245249164586],[116,111,71,0.19198271281443757],[116,111,72,0.19402606920658094],[116,111,73,0.19581069631994188],[116,111,74,0.19737341683173087],[116,111,75,0.19875673824432555],[116,111,76,0.20000615416685283],[116,111,77,0.2011677187362869],[116,111,78,0.2022859021063841],[116,111,79,0.20340173420742277],[116,112,64,0.15760865880550723],[116,112,65,0.16280502819676296],[116,112,66,0.16798399151886625],[116,112,67,0.17315469511367979],[116,112,68,0.17746605847695718],[116,112,69,0.1804495270682957],[116,112,70,0.18314348546587625],[116,112,71,0.18554641527753096],[116,112,72,0.1876708567889751],[116,112,73,0.1895402982717656],[116,112,74,0.19118628490295503],[116,112,75,0.19264575644722653],[116,112,76,0.19395862220733306],[116,112,77,0.19516558109824114],[116,112,78,0.19630619404874722],[116,112,79,0.19741721528620798],[116,113,64,0.15276994802450145],[116,113,65,0.1577083280749836],[116,113,66,0.1626145585573026],[116,113,67,0.16737203040101173],[116,113,68,0.1706709455569659],[116,113,69,0.17371765037240788],[116,113,70,0.17649283398271798],[116,113,71,0.17899264788022703],[116,113,72,0.18122580100068453],[116,113,73,0.18321083886016679],[116,113,74,0.18497361538027363],[116,113,75,0.18654496548491195],[116,113,76,0.18795858598929988],[116,113,77,0.18924913173428898],[116,113,78,0.1904505333505209],[116,113,79,0.1915945424714015],[116,114,64,0.14810370742871118],[116,114,65,0.1527826185731321],[116,114,66,0.15676689754148915],[116,114,67,0.16031962749510265],[116,114,68,0.16367650491377211],[116,114,69,0.16680274300529752],[116,114,70,0.16967906318214532],[116,114,71,0.1722994717411665],[116,114,72,0.1746688053005145],[116,114,73,0.17680043349094582],[116,114,74,0.1787141262890262],[116,114,75,0.18043409290984821],[116,114,76,0.18198719870011987],[116,114,77,0.18340136599175774],[116,114,78,0.18470416439465115],[116,114,79,0.18592159552861237],[116,115,64,0.14183294974969118],[116,115,65,0.1457093821384717],[116,115,66,0.14945409324543854],[116,115,67,0.1530542260723383],[116,115,68,0.1564799427411828],[116,115,69,0.15969979269626985],[116,115,70,0.16269497488056442],[116,115,71,0.16545755610106896],[116,115,72,0.16798849604947053],[116,115,73,0.17029580218785523],[116,115,74,0.17239282055197166],[116,115,75,0.17429666814132966],[116,115,76,0.1760268121769919],[116,115,77,0.1776038011165498],[116,115,78,0.1790481519242541],[116,115,79,0.1803793977054784],[116,116,64,0.13426827451077583],[116,116,65,0.13815900226192213],[116,116,66,0.14193691147901694],[116,116,67,0.14559009031619208],[116,116,68,0.14909264629821783],[116,116,69,0.15241711953165893],[116,116,70,0.155545620178756],[116,116,71,0.15846850175523824],[116,116,72,0.1611828881678331],[116,116,73,0.16369130306817176],[116,116,74,0.16600040617604],[116,116,75,0.16811984092924273],[116,116,76,0.17006119751819837],[116,116,77,0.17183709506259262],[116,116,78,0.17346038638723024],[116,116,79,0.17494348855692762],[116,117,64,0.12652841039899923],[116,117,65,0.13043274684235845],[116,117,66,0.13424481912507025],[116,117,67,0.13795367109352397],[116,117,68,0.1415377482029785],[116,117,69,0.1449741637603638],[116,117,70,0.1482463492226145],[116,117,71,0.15134318860178028],[116,117,72,0.1542580621665768],[116,117,73,0.1569879651821993],[116,117,74,0.15953270490015103],[116,117,75,0.1618941788010436],[116,117,76,0.16407573688302846],[116,117,77,0.16608163057806694],[116,117,78,0.16791655066935807],[116,117,79,0.1695852563775925],[116,118,64,0.11865792754181187],[116,118,65,0.12257268291312817],[116,118,66,0.12641706626709934],[116,118,67,0.13018106071469593],[116,118,68,0.1338477546219102],[116,118,69,0.1373993252460429],[116,118,70,0.14082089957344693],[116,118,71,0.14410014852663933],[116,118,72,0.14722685350445103],[116,118,73,0.1501925213693395],[116,118,74,0.15299004963530122],[116,118,75,0.1556134434859158],[116,118,76,0.1580575861287874],[116,118,77,0.16031806387085115],[116,118,78,0.16239104717993644],[116,118,79,0.164273228882664],[116,119,64,0.11070837231674914],[116,119,65,0.11462799663426589],[116,119,66,0.11850008875447565],[116,119,67,0.12231552420729078],[116,119,68,0.1260622390190611],[116,119,69,0.12972785609114476],[116,119,70,0.13329952453497795],[116,119,71,0.1367639647583141],[116,119,72,0.1401075551566333],[116,119,73,0.14331644174165067],[116,119,74,0.14637667101038968],[116,119,75,0.14927434631599446],[116,119,76,0.15199580796201093],[116,119,77,0.15452783720566804],[116,119,78,0.15685788432350156],[116,119,79,0.1589743208649412],[116,120,64,0.10273559849140777],[116,120,65,0.10665239065528082],[116,120,66,0.11054499734649235],[116,120,67,0.11440510824458554],[116,120,68,0.11822560251672147],[116,120,69,0.12199980735745733],[116,120,70,0.12571716219884443],[116,120,71,0.1293636982568968],[116,120,72,0.13292263373129268],[116,120,73,0.13637496787586803],[116,120,74,0.1397000728273452],[116,120,75,0.1428762821145346],[116,120,76,0.14588147481016214],[116,120,77,0.1486936543325],[116,120,78,0.15129152095439988],[116,120,79,0.1536105419094923],[116,121,64,0.09479718225143599],[116,121,65,0.09870156066137231],[116,121,66,0.10260513935812543],[116,121,67,0.1065003135047416],[116,121,68,0.11038488646469777],[116,121,69,0.11425801526924627],[116,121,70,0.11811163035147008],[116,121,71,0.12193132600675259],[116,121,72,0.12569744370205674],[116,121,73,0.12938613195643747],[116,121,74,0.13297038032303382],[116,121,75,0.13642102510904144],[116,121,76,0.1397077245838338],[116,121,77,0.1416656026805159],[116,121,78,0.14251879137787538],[116,121,79,0.14331687446779917],[116,122,64,0.08694994905380643],[116,122,65,0.09083077927501462],[116,122,66,0.0947337611876781],[116,122,67,0.09865185901758351],[116,122,68,0.10258766591730686],[116,122,69,0.10654615570490561],[116,122,70,0.11052187611987929],[116,122,71,0.11450022012799137],[116,122,72,0.11845896867724226],[116,122,73,0.1223697897673102],[116,122,74,0.12619969008767803],[116,122,75,0.1316914555025119],[116,122,76,0.1368190946072423],[116,122,77,0.14044235523759915],[116,122,78,0.14403421789727286],[116,122,79,0.14762431463040332],[116,123,64,0.0792476268365549],[116,123,65,0.08309260193402962],[116,123,66,0.08698178641474479],[116,123,67,0.09090855322737634],[116,123,68,0.0948800387563675],[116,123,69,0.09890688169425857],[116,123,70,0.10581046632126069],[116,123,71,0.11301068700595995],[116,123,72,0.12024898975313925],[116,123,73,0.12749321940312025],[116,123,74,0.13470547169181585],[116,123,75,0.14149380327965558],[116,123,76,0.14480742673308714],[116,123,77,0.1480554060350422],[116,123,78,0.15127671785083763],[116,123,79,0.15450872848338415],[116,124,64,0.07246527960921818],[116,124,65,0.07926607586261092],[116,124,66,0.08616196719307515],[116,124,67,0.09314410013946603],[116,124,68,0.10022184754992154],[116,124,69,0.10740974176610782],[116,124,70,0.11470658640983378],[116,124,71,0.12209735202550238],[116,124,72,0.12955549959065926],[116,124,73,0.13704522887105686],[116,124,74,0.1445236456528038],[116,124,75,0.14985201412865218],[116,124,76,0.15281716851595684],[116,124,77,0.15571226661672208],[116,124,78,0.15858355950693326],[116,124,79,0.1614755744208414],[116,125,64,0.08112142837016573],[116,125,65,0.08793672456810192],[116,125,66,0.09486439300996985],[116,125,67,0.10189552842999738],[116,125,68,0.10904316813770783],[116,125,69,0.1163267335865252],[116,125,70,0.12374747358425266],[116,125,71,0.13129062080870493],[116,125,72,0.1389280484810116],[116,125,73,0.14662083878297508],[116,125,74,0.15432175613506371],[116,125,75,0.1581865560583336],[116,125,76,0.1608334665595538],[116,125,77,0.16340497073168464],[116,125,78,0.16595384037863972],[116,125,79,0.1685310573667606],[116,126,64,0.0901075578572734],[116,126,65,0.09691416205354235],[116,126,66,0.10384830172605634],[116,126,67,0.11090082058941433],[116,126,68,0.11808790878654446],[116,126,69,0.1254333733748655],[116,126,70,0.13294073990297922],[116,126,71,0.1405956239480762],[116,126,72,0.1483686698969659],[116,126,73,0.1562183908760961],[116,126,74,0.16397217689938],[116,126,75,0.16647588197874458],[116,126,76,0.16884001815671906],[116,126,77,0.17112277799272113],[116,126,78,0.17338259959800983],[116,126,79,0.17567610628946065],[116,127,64,0.09942332351065931],[116,127,65,0.1061988835530961],[116,127,66,0.11311477707211608],[116,127,67,0.12016139214385063],[116,127,68,0.12735750911691932],[116,127,69,0.13473074210524216],[116,127,70,0.14228667125410197],[116,127,71,0.1500113830579866],[116,127,72,0.15787463869639767],[116,127,73,0.16583293534858584],[116,127,74,0.17242786965134851],[116,127,75,0.17469872362428918],[116,127,76,0.17681915979034363],[116,127,77,0.17885194445002864],[116,127,78,0.18086025983966897],[116,127,79,0.18290548286116043],[116,128,64,0.10905458673312358],[116,128,65,0.11577818296980974],[116,128,66,0.12265237528159645],[116,128,67,0.12966688941517873],[116,128,68,0.13684251076732698],[116,128,69,0.1442100423946043],[116,128,70,0.15177686264522824],[116,128,71,0.15952958939329548],[116,128,72,0.1674374260805294],[116,128,73,0.1754553948183083],[116,128,74,0.18075668296360053],[116,128,75,0.18283450103172266],[116,128,76,0.18475198565435427],[116,128,77,0.1865755318106915],[116,128,78,0.18837211449378333],[116,128,79,0.19020693980115966],[116,129,64,0.11897177995586256],[116,129,65,0.12562454418926747],[116,129,66,0.13243554971086757],[116,129,67,0.1393936530857547],[116,129,68,0.14652107123937894],[116,129,69,0.15385118303677986],[116,129,70,0.16139290034627912],[116,129,71,0.1691334146237947],[116,129,72,0.17704167199691692],[116,129,73,0.18507173146810307],[116,129,74,0.18893992173593538],[116,129,75,0.19086375157940974],[116,129,76,0.19261849631265293],[116,129,77,0.1942732555628522],[116,129,78,0.1958978604946926],[116,129,79,0.1975604294595908],[116,130,64,0.1291283774306022],[116,130,65,0.13569413379092352],[116,130,66,0.14242317040261093],[116,130,67,0.14930326767912844],[116,130,68,0.15635755227821838],[116,130,69,0.1636214249783921],[116,130,70,0.1711050912747726],[116,130,71,0.1787963541074505],[116,130,72,0.18666417526833823],[116,130,73,0.1946621175820063],[116,130,74,0.19696282706243992],[116,130,75,0.19876857857897198],[116,130,76,0.20039777760252245],[116,130,77,0.20192137223584072],[116,130,78,0.20341117716815446],[116,130,79,0.20493736314047004],[116,131,64,0.1394594720183863],[116,131,65,0.14592539546472133],[116,131,66,0.15255713892774933],[116,131,67,0.15934119730770432],[116,131,68,0.16630118314173858],[116,131,69,0.17347408907969802],[116,131,70,0.1808712399430853],[116,131,71,0.18848110294506504],[116,131,72,0.1962729016799001],[116,131,73,0.20284632640000538],[116,131,74,0.20481527528590998],[116,131,75,0.20653311941550648],[116,131,76,0.20806820987822616],[116,131,77,0.20949260600080383],[116,131,78,0.210879351417799],[116,131,79,0.2122999216055734],[116,132,64,0.14988042134035523],[116,132,65,0.15623770151026814],[116,132,66,0.1627610459358527],[116,132,67,0.16943544712692774],[116,132,68,0.17628472989863103],[116,132,69,0.18334724793513504],[116,132,70,0.19063538572628597],[116,132,71,0.19813836746527477],[116,132,72,0.20582590213998525],[116,132,73,0.21058440988548727],[116,132,74,0.21249261343023282],[116,132,75,0.2141441724591148],[116,132,76,0.21560785604855523],[116,132,77,0.21695627110472301],[116,132,78,0.21826311226776557],[116,132,79,0.21960058450209394],[116,133,64,0.16028258344940632],[116,133,65,0.16652568206420415],[116,133,66,0.17293309176184887],[116,133,67,0.17948806111248775],[116,133,68,0.18621451097140895],[116,133,69,0.19315215492291082],[116,133,70,0.20031452603728936],[116,133,71,0.20769177285509688],[116,133,72,0.21525432438475822],[116,133,73,0.21815796960091832],[116,133,74,0.2200165615412549],[116,133,75,0.2216139361662188],[116,133,76,0.2230188977421505],[116,133,77,0.22430420459132008],[116,133,78,0.22554380308903557],[116,133,79,0.2268102353370777],[116,134,64,0.1705482136159044],[116,134,65,0.17667228669384677],[116,134,66,0.18295725544492325],[116,134,67,0.1893843569629265],[116,134,68,0.19597756686739082],[116,134,69,0.2027780916835444],[116,134,70,0.20980081037610726],[116,134,71,0.21703704430307696],[116,134,72,0.2234910181053009],[116,134,73,0.22563257232648226],[116,134,74,0.22744704694914564],[116,134,75,0.22899592280201966],[116,134,76,0.2303476983589764],[116,134,77,0.23157494926532943],[116,134,78,0.23275155466283826],[116,134,79,0.23395009770528294],[116,135,64,0.18057749704270765],[116,135,65,0.18657815765511598],[116,135,66,0.19273494782912393],[116,135,67,0.199026841195676],[116,135,68,0.2054778769828156],[116,135,69,0.21213095774945026],[116,135,70,0.2190025633094297],[116,135,71,0.22608547993789296],[116,135,72,0.23095817709186622],[116,135,73,0.23306068518411915],[116,135,74,0.23483210848084682],[116,135,75,0.23633316777813546],[116,135,76,0.23763174567051487],[116,135,77,0.23879994594901552],[116,135,78,0.2399113195389297],[116,135,79,0.24103826438592668],[116,136,64,0.19029048149551933],[116,136,65,0.19616386392366253],[116,136,66,0.20218754166794395],[116,136,67,0.20833802513876779],[116,136,68,0.21463946352277063],[116,136,69,0.22113668241397752],[116,136,70,0.22784803391017183],[116,136,71,0.2347680698371647],[116,136,72,0.23841545919831336],[116,136,73,0.24047679892536278],[116,136,74,0.2422025913150334],[116,136,75,0.24365250024388405],[116,136,76,0.2448935169488199],[116,136,77,0.2459970268340648],[116,136,78,0.24703604162146486],[116,136,79,0.24808260424334383],[116,137,64,0.19962680364750282],[116,137,65,0.2053695579135291],[116,137,66,0.21125595477415818],[116,137,67,0.2172599207786109],[116,137,68,0.22340578730315597],[116,137,69,0.22974051618355817],[116,137,70,0.2362845861573092],[116,137,71,0.24303459525630017],[116,137,72,0.24588307320262368],[116,137,73,0.24789851644993738],[116,137,74,0.24957326704271526],[116,137,75,0.2509656683631173],[116,137,76,0.2521415813792315],[116,137,77,0.25317146607475216],[116,137,78,0.2541276259517035],[116,137,79,0.25508162296797626],[116,138,64,0.20854582084645637],[116,138,65,0.21415503554978188],[116,138,66,0.2199006309820643],[116,138,67,0.22575392573438327],[116,138,68,0.23173952053458086],[116,138,69,0.23790668289495312],[116,138,70,0.24427822902652957],[116,138,71,0.2508530416552198],[116,138,72,0.25336444456100204],[116,138,73,0.2553273913662943],[116,138,74,0.2569437440050327],[116,138,75,0.25827029921170336],[116,138,76,0.25937158497990753],[116,138,77,0.2603169636481988],[116,138,78,0.2611778946422075],[116,138,79,0.2620253641680036],[116,139,64,0.21702715026629674],[116,139,65,0.22250020168591278],[116,139,66,0.22810192093161294],[116,139,67,0.2338010993790649],[116,139,68,0.23962269860885077],[116,139,69,0.24561839450381723],[116,139,70,0.2518134882435461],[116,139,71,0.2582093274361417],[116,139,72,0.26084667561302327],[116,139,73,0.26274951488505527],[116,139,74,0.2642991663503753],[116,139,75,0.265550691923753],[116,139,76,0.266567116877552],[116,139,77,0.2674165615873357],[116,139,78,0.2681695283579689],[116,139,79,0.2688963505282424],[116,140,64,0.22507161739509748],[116,140,65,0.23040594283566387],[116,140,66,0.23586086465125705],[116,140,67,0.24140283208291166],[116,140,68,0.24705725285314223],[116,140,69,0.2528782304847825],[116,140,70,0.2588936215969485],[116,140,71,0.26510735022378856],[116,140,72,0.2683007165751261],[116,140,73,0.2701358494235388],[116,140,74,0.2716107003378763],[116,140,75,0.2727784427936133],[116,140,76,0.27370045585784136],[116,140,77,0.2744434917476062],[116,140,78,0.27507699277787256],[116,140,79,0.2756705647698325],[116,141,64,0.232702615828524],[116,141,65,0.23789540919359503],[116,141,66,0.24320037790900764],[116,141,67,0.24858190953557274],[116,141,68,0.2540659261851186],[116,141,69,0.25970888373978845],[116,141,70,0.26554117965361135],[116,141,71,0.2715693524569487],[116,141,72,0.27568124565132507],[116,141,73,0.2774423073725989],[116,141,74,0.2788358064875971],[116,141,75,0.27991290111064826],[116,141,76,0.2807331961720726],[116,141,77,0.28136195432075917],[116,141,78,0.2818674495077476],[116,141,79,0.2823184701640542],[116,142,64,0.23996788037883163],[116,142,65,0.24501570794786953],[116,142,66,0.2501668443178358],[116,142,67,0.25538397410675245],[116,142,68,0.2606935735927889],[116,142,69,0.266154274889151],[116,142,70,0.2717989136855992],[116,142,71,0.2776366080159386],[116,142,72,0.28292625664165416],[116,142,73,0.28460957353432903],[116,142,74,0.2859182962377626],[116,142,75,0.2869014545632949],[116,142,76,0.28761675163695555],[116,142,77,0.28812782635674083],[116,142,78,0.2885016509525464],[116,142,79,0.2888060703749234],[116,143,64,0.2469266816677885],[116,143,65,0.2518254182474905],[116,143,66,0.2568179848039909],[116,143,67,0.2618657861536194],[116,143,68,0.26699586089579336],[116,143,69,0.27226874538682855],[116,143,70,0.2777195296937094],[116,143,71,0.28335981141745237],[116,143,72,0.2891809163538795],[116,143,73,0.2915712425781677],[116,143,74,0.2927955862646194],[116,143,75,0.2936858174352167],[116,143,76,0.29429759829298746],[116,143,77,0.29469278525770426],[116,143,78,0.29493687888532305],[116,143,79,0.29509660709767566],[116,144,64,0.2535968699359628],[116,144,65,0.25834294596098273],[116,144,66,0.26317273566807475],[116,144,67,0.2680468699803373],[116,144,68,0.27299295306714627],[116,144,69,0.2780730882353319],[116,144,70,0.2833243787924477],[116,144,71,0.2887607538204945],[116,144,72,0.29437607705506036],[116,144,73,0.2982852393110869],[116,144,74,0.2994261878615178],[116,144,75,0.30022531257262003],[116,144,76,0.3007361041575194],[116,144,77,0.30101847979035107],[116,144,78,0.3011362941691567],[116,144,79,0.3011549746084248],[116,145,64,0.25998329325512337],[116,145,65,0.26457399764195594],[116,145,66,0.26923769446162615],[116,145,67,0.273934821021059],[116,145,68,0.27869355006507684],[116,145,69,0.28357716227857016],[116,145,70,0.2886244846246628],[116,145,71,0.2938515861605809],[116,145,72,0.2992547624099001],[116,145,73,0.3047186798473953],[116,145,74,0.3057768966111457],[116,145,75,0.3064865735859509],[116,145,76,0.3068989177934533],[116,145,77,0.3070717638734548],[116,145,78,0.30706715507013865],[116,145,79,0.30694903819677555],[116,146,64,0.26609016128719226],[116,146,65,0.2705235702783623],[116,146,66,0.27501869172422966],[116,146,67,0.279536403812657],[116,146,68,0.28410544779875174],[116,146,69,0.2887898489543658],[116,146,70,0.2936298260580948],[116,146,71,0.29864335673283604],[116,146,72,0.3038290250438248],[116,146,73,0.30916880420259835],[116,146,74,0.3118169363322799],[116,146,75,0.31243869825160864],[116,146,76,0.31275518466367164],[116,146,77,0.31282202127599695],[116,146,78,0.31269928630090776],[116,146,79,0.3124492730811185],[116,147,64,0.27192076936704135],[116,147,65,0.27619566726175276],[116,147,66,0.2805204996159636],[116,147,67,0.28485725267113066],[116,147,68,0.2892352311828701],[116,147,69,0.29371874061571107],[116,147,70,0.29834902604760233],[116,147,71,0.30314570800518487],[116,147,72,0.3081094819395627],[116,147,73,0.31322476180573267],[116,147,74,0.31751820531952196],[116,147,75,0.3180534412519523],[116,147,76,0.31827667311925023],[116,147,77,0.31824121152211987],[116,147,78,0.3180050318036255],[116,147,79,0.3176286116855181],[116,148,64,0.2774772827969032],[116,148,65,0.2815930765993982],[116,148,66,0.28574660406610886],[116,148,67,0.289901637078079],[116,148,68,0.29408803288948937],[116,148,69,0.29836989465615754],[116,148,70,0.302789104970528],[116,148,71,0.30736663470214376],[116,148,72,0.3121050843391009],[116,148,73,0.3169911788223641],[116,148,74,0.3219982098337473],[116,148,75,0.32330537912926843],[116,148,76,0.3234378878302297],[116,148,77,0.32330392076765413],[116,148,78,0.322959232120874],[116,148,79,0.3224623369374363],[116,149,64,0.28276058151353084],[116,149,65,0.28671721154154584],[116,149,66,0.290699040619576],[116,149,67,0.29467229196781103],[116,149,68,0.29866735799623195],[116,149,69,0.3027476536442407],[116,149,70,0.30695529864085813],[116,149,71,0.31131230335862325],[116,149,72,0.3158229437095536],[116,149,73,0.3204760992113537],[116,149,74,0.3252475486986795],[116,149,75,0.3281720473819932],[116,149,76,0.3282161706511769],[116,149,77,0.3279874177186967],[116,149,78,0.3275392265176827],[116,149,79,0.32692802185659875],[116,150,64,0.287770165291033],[116,150,65,0.2915680137965238],[116,150,66,0.29537829416138733],[116,150,67,0.2991703131028957],[116,150,68,0.30297497472554924],[116,150,69,0.3068545316656574],[116,150,70,0.3108509412000425],[116,150,71,0.3149869335340221],[116,150,72,0.3192682139472726],[116,150,73,0.3236856379588653],[116,150,74,0.32821735451656925],[116,150,75,0.3326340496404717],[116,150,76,0.3325917889198493],[116,150,77,0.3322717146644704],[116,150,78,0.3317248800138559],[116,150,79,0.33100551569391623],[116,151,64,0.2925041196468256],[116,151,65,0.29614391950963065],[116,151,66,0.2997832627012754],[116,151,67,0.30339511772608135],[116,151,68,0.307010871468168],[116,151,69,0.310691167068612],[116,151,70,0.3144774130773001],[116,151,71,0.31839274087026453],[116,151,72,0.3224440299866448],[116,151,73,0.3266239163803854],[116,151,74,0.33091277913125144],[116,151,75,0.33528070125963944],[116,151,76,0.3365480111913133],[116,151,77,0.3361396336974746],[116,151,78,0.3354986354818719],[116,151,79,0.33467697686932874],[116,152,64,0.29695914262803785],[116,152,65,0.30044188819052203],[116,152,66,0.3039112854077994],[116,152,67,0.3073444706823185],[116,152,68,0.3107732802880236],[116,152,69,0.3142563418101831],[116,152,70,0.31783415421285816],[116,152,71,0.3215299421762652],[116,152,72,0.3253515029772485],[116,152,73,0.32929304609833027],[116,152,74,0.33333702165115414],[116,152,75,0.33745593377516747],[116,152,76,0.34007117041499485],[116,152,77,0.33957687819683224],[116,152,78,0.3388455909650368],[116,152,79,0.3379269529519744],[116,153,64,0.30113063266830514],[116,153,65,0.30445749478534784],[116,153,66,0.30775823509155437],[116,153,67,0.3110145762133144],[116,153,68,0.31425876711309714],[116,153,69,0.31754706760691465],[116,153,70,0.32091874274097937],[116,153,71,0.3243968227227001],[116,153,72,0.32798977219247843],[116,153,73,0.3316931618289353],[116,153,74,0.3354913389087684],[116,153,75,0.3393590934934763],[116,153,76,0.3431507145651889],[116,153,77,0.3425721096526412],[116,153,78,0.3417536023701487],[116,153,79,0.34074250792203914],[116,154,64,0.3050128377219182],[116,154,65,0.30818508510603976],[116,154,66,0.3113186753518999],[116,154,67,0.31440023564049036],[116,154,68,0.31746238882849376],[116,154,69,0.3205587391029834],[116,154,70,0.3237270393377723],[116,154,71,0.32698986593687734],[116,154,72,0.33035611383635305],[116,154,73,0.33382250311350353],[116,154,74,0.3373750943467401],[116,154,75,0.3409908098975789],[116,154,76,0.3446389583270338],[116,154,77,0.3451170299120556],[116,154,78,0.34421341169072445],[116,154,79,0.34311339695313015],[116,155,64,0.3085990659035043],[116,155,65,0.3116179948495642],[116,155,66,0.31458608262084553],[116,155,67,0.3174950711701011],[116,155,68,0.32037791750451455],[116,155,69,0.3232853542839638],[116,155,70,0.32625339745133364],[116,155,71,0.3293039456976244],[116,155,72,0.3324461069226951],[116,155,73,0.335677545133843],[116,155,74,0.33898584542722865],[116,155,75,0.34234989470397226],[116,155,76,0.3457412757911821],[116,155,77,0.34720646893139784],[116,155,78,0.34621880092052704],[116,155,79,0.34503228895671567],[116,156,64,0.31188195788588613],[116,156,65,0.3147488324637872],[116,156,66,0.317553133360428],[116,156,67,0.3202918160757032],[116,156,68,0.3229981320125128],[116,156,69,0.3257198023824942],[116,156,70,0.32849093964785636],[116,156,71,0.3313325814435644],[116,156,72,0.3342538564113312],[116,156,73,0.3372531787589617],[116,156,74,0.3403194696651514],[116,156,75,0.34343340363685415],[116,156,76,0.34656867792409907],[116,156,77,0.34883847812186536],[116,156,78,0.3477667718217099],[116,156,79,0.34649503713509894],[116,157,64,0.3148538213374826],[116,157,65,0.3175698261448056],[116,157,66,0.3202120566970849],[116,157,67,0.32278267153917395],[116,157,68,0.3253151773060017],[116,157,69,0.32785421954508587],[116,157,70,0.33043190032801567],[116,157,71,0.333068256325994],[116,157,72,0.3357722738004698],[116,157,73,0.33854293998089424],[116,157,74,0.3413703293928292],[116,157,75,0.34423672366861796],[116,157,76,0.34711776335173217],[116,157,77,0.3499836301954961],[116,157,78,0.3488577517185201],[116,157,79,0.34750099779772764],[116,158,64,0.31750702771341555],[116,158,65,0.32007323528302556],[116,158,66,0.3225550528080189],[116,158,67,0.3249597304618866],[116,158,68,0.3273209916736381],[116,158,69,0.32968041255676694],[116,158,70,0.332068035093045],[116,158,71,0.33450279865966587],[116,158,72,0.33699341539284733],[116,158,73,0.33953928891177],[116,158,74,0.34213147537322414],[116,158,75,0.3447536857801605],[116,158,76,0.3473833284292986],[116,158,77,0.3499925903549174],[116,158,78,0.34949582549595487],[116,158,79,0.34805339770718696],[116,159,64,0.31983447175052315],[116,159,65,0.3222518267110854],[116,159,66,0.3245747774095124],[116,159,67,0.32681546859162447],[116,159,68,0.32900780230351195],[116,159,69,0.3311903509513693],[116,159,70,0.33339109706863185],[116,159,71,0.3356278269502829],[116,159,72,0.33790887847474327],[116,159,73,0.340233938531074],[116,159,74,0.34259488939060073],[116,159,75,0.34497670330064545],[116,159,76,0.34735838452503326],[116,159,77,0.349713958012406],[116,159,78,0.3496889939922284],[116,159,79,0.3481597502351277],[116,160,64,0.3218300940566189],[116,160,65,0.32409941614677845],[116,160,66,0.32626489273647075],[116,160,67,0.32834330334925454],[116,160,68,0.3303686895355227],[116,160,69,0.3323767278709553],[116,160,70,0.3343933805279871],[116,160,71,0.33643525880736164],[116,160,72,0.3385102556725188],[116,160,73,0.3406182333924612],[116,160,74,0.3427517659620127],[116,160,75,0.34489693589460363],[116,160,76,0.34703418491665816],[116,160,77,0.34913921803540476],[116,160,78,0.34944945898531626],[116,160,79,0.34783232062565733],[116,161,64,0.32348946722835714],[116,161,65,0.3256114752682233],[116,161,66,0.3276206854459275],[116,161,67,0.32953822078185],[116,161,68,0.33139822022030135],[116,161,69,0.3332335900779559],[116,161,70,0.33506833219300414],[116,161,71,0.336917884085135],[116,161,72,0.3387896477807367],[116,161,73,0.34068357852327963],[116,161,74,0.3425928333303534],[116,161,75,0.3445044792744706],[116,161,76,0.3464002612874977],[116,161,77,0.34825742921956965],[116,161,78,0.3487939349870204],[116,161,79,0.34708864068411954],[116,162,64,0.3248104459790155],[116,162,65,0.3267858049056961],[116,162,66,0.32863975192389105],[116,162,67,0.33039747111491735],[116,162,68,0.3320931506482075],[116,162,69,0.3337570375670748],[116,162,70,0.3354112306333497],[116,162,71,0.33707000263138537],[116,162,72,0.3387402353882333],[116,162,73,0.34042191877622235],[116,162,74,0.34210871391889647],[116,162,75,0.3437885807279424],[116,162,76,0.34544446981195087],[116,162,77,0.34705507871878977],[116,162,78,0.3477439880720174],[116,162,79,0.3459520732318198],[116,163,64,0.3257938818087611],[116,163,65,0.32762327488617765],[116,163,66,0.3293227515261338],[116,163,67,0.33092133342704466],[116,163,68,0.33245319956179137],[116,163,69,0.33394599327236085],[116,163,70,0.3354199342290916],[116,163,71,0.3368881270660079],[116,163,72,0.33835690966523896],[116,163,73,0.3398262689227619],[116,163,74,0.34129032444981877],[116,163,75,0.34273788056343474],[116,163,76,0.34415304682452114],[116,163,77,0.34551592729434355],[116,163,78,0.3463264019857047],[116,163,79,0.3444524266935872],[116,164,64,0.32644094738572493],[116,164,65,0.32812483153703625],[116,164,66,0.3296701115771876],[116,164,67,0.33110952514990677],[116,164,68,0.3324771685961143],[116,164,69,0.3337980470961627],[116,164,70,0.33509046736873405],[116,164,71,0.3363663350663212],[116,164,72,0.33763141926783385],[116,164,73,0.3388856874892096],[116,164,74,0.34012371188394713],[116,164,75,0.34133514719795943],[116,164,76,0.34250528094106497],[116,164,77,0.34361565614206246],[116,164,78,0.34457849681223607],[116,164,79,0.3426312274205132],[116,165,64,0.32673190275140906],[116,165,65,0.3282681255166201],[116,165,66,0.32965672222686254],[116,165,67,0.3309340368510777],[116,165,68,0.33213399683117206],[116,165,69,0.33327892467116255],[116,165,70,0.33438519429888147],[116,165,71,0.33546351522958606],[116,165,72,0.33651911157601716],[116,165,73,0.33755197444246254],[116,165,74,0.33855718858981404],[116,165,75,0.33952533414486225],[116,165,76,0.34044296401820423],[116,165,77,0.34129315759245193],[116,165,78,0.34205615114719523],[116,165,79,0.34056555297226376],[116,166,64,0.32664326973732016],[116,166,65,0.3280264882915548],[116,166,66,0.32925269002993707],[116,166,67,0.33036166121034877],[116,166,68,0.33138706873019963],[116,166,69,0.3323485586478598],[116,166,70,0.33326061495358916],[116,166,71,0.33413282346381235],[116,166,72,0.3349699599303773],[116,166,73,0.3357721545429383],[116,166,74,0.3365351339356429],[116,166,75,0.3372505416890988],[116,166,76,0.3379063382026471],[116,166,77,0.3384872807016461],[116,166,78,0.33897548404106614],[116,166,79,0.3383302428368724],[116,167,64,0.32615940953270245],[116,167,65,0.32738180079915374],[116,167,66,0.3284374191135891],[116,167,67,0.32936926422792295],[116,167,68,0.3302106519142433],[116,167,69,0.3309786215711002],[116,167,70,0.33168587889739043],[116,167,71,0.3323410282321145],[116,167,72,0.33294856165620035],[116,167,73,0.3335089279011488],[116,167,74,0.3340186824176632],[116,167,75,0.33447071983001214],[116,167,76,0.334854589878061],[116,167,77,0.33515689783011166],[116,167,78,0.3353617902372542],[116,167,79,0.33545152679526],[116,168,64,0.32527079800855174],[116,168,65,0.3263227418519428],[116,168,66,0.3271978285468856],[116,168,67,0.3279419733924639],[116,168,68,0.3285880574012091],[116,168,69,0.3291506547395433],[116,168,70,0.3296408757041604],[116,168,71,0.33006655275964],[116,168,72,0.33043212075081274],[116,168,73,0.33073858095451353],[116,168,74,0.33098355058973394],[116,168,75,0.33116139926943183],[116,168,76,0.3312634737443973],[116,168,77,0.33127841216108794],[116,168,78,0.3311925489326159],[116,168,79,0.33099041120659733],[116,169,64,0.3239721191279439],[116,169,65,0.32484284669058283],[116,169,66,0.3255263733922973],[116,169,67,0.3260711637959331],[116,169,68,0.32650959291998816],[116,169,69,0.32685398689730233],[116,169,70,0.32711411418561065],[116,169,71,0.32729730785405825],[116,169,72,0.3274082260420549],[116,169,73,0.3274487010819058],[116,169,74,0.3274176791978075],[116,169,75,0.3273112525482819],[116,169,76,0.32712278523575766],[116,169,77,0.32684313476731036],[116,169,78,0.3264609703160238],[116,169,79,0.32596318900459803],[116,170,64,0.3222602465889133],[116,170,65,0.3229384530057765],[116,170,66,0.32341895346361776],[116,170,67,0.32375233277169263],[116,170,68,0.3239704062689261],[116,170,69,0.3240835456863378],[116,170,70,0.3241004986830807],[116,170,71,0.3240284279644282],[116,170,72,0.3238725408215583],[116,170,73,0.32363581308905776],[116,170,74,0.3233188097560411],[116,170,75,0.32291960430988326],[116,170,76,0.32243379873601397],[116,170,77,0.3218546459446107],[116,170,78,0.32117327624692543],[116,170,79,0.320379029362033],[116,171,64,0.32013211230791583],[116,171,65,0.32060653307580866],[116,171,66,0.32087270848235666],[116,171,67,0.32098286179955315],[116,171,68,0.32096821752051086],[116,171,69,0.320837560727397],[116,171,70,0.32059900136494174],[116,171,71,0.3202599095044741],[116,171,72,0.31982640307205334],[116,171,73,0.31930293678672206],[116,171,74,0.3186919948983132],[116,171,75,0.3179938901441861],[116,171,76,0.3172066711747206],[116,171,77,0.31632614053004215],[116,171,78,0.3153459850869235],[116,171,79,0.31425802073692444],[116,172,64,0.317582460214549],[116,172,65,0.3178424105285361],[116,172,66,0.31788369818690687],[116,172,67,0.31775966428419455],[116,172,68,0.3175009387378626],[116,172,69,0.317115157062498],[116,172,70,0.31661022933917166],[116,172,71,0.3159941503360874],[116,172,72,0.31527433528068416],[116,172,73,0.314457064759509],[116,172,74,0.3135470417183541],[116,172,75,0.31254706335007565],[116,172,76,0.3114578104720739],[116,172,77,0.3102777568113836],[116,172,78,0.30900320043447077],[116,172,79,0.3076284193830856],[116,173,64,0.314601483687546],[116,173,65,0.31463736009530074],[116,173,66,0.3144444658073969],[116,173,67,0.3140767176723914],[116,173,68,0.31356417972850337],[116,173,69,0.31291383755332525],[116,173,70,0.31213388525414687],[116,173,71,0.3112333891750843],[116,173,72,0.3102214626997954],[116,173,73,0.309106559296514],[116,173,74,0.30789588718891103],[116,173,75,0.30659494883427174],[116,173,76,0.30520720818719677],[116,173,77,0.3037338885243826],[116,173,78,0.30217390340590344],[116,173,79,0.30052392315289844],[116,174,64,0.31117234481869527],[116,174,65,0.3109760885800117],[116,174,66,0.31054148317469893],[116,174,67,0.30992247823031494],[116,174,68,0.3091486382175138],[116,174,69,0.3082268526879847],[116,174,70,0.3071661199209456],[116,174,71,0.3059770435444015],[116,174,72,0.3046708387833738],[116,174,73,0.303258467325715],[116,174,74,0.3017499046258253],[116,174,75,0.30015354324566307],[116,174,76,0.29847573560933544],[116,174,77,0.2967204793243076],[116,174,78,0.29488924800091965],[116,174,79,0.29298097028469855],[116,175,64,0.3072819380694645],[116,175,65,0.30684728348750734],[116,175,66,0.30616540550865484],[116,175,67,0.30528974931508446],[116,175,68,0.3042494752518489],[116,175,69,0.30305196464264494],[116,175,70,0.30170755789857384],[116,175,71,0.3002288647069516],[116,175,72,0.2986295959144504],[116,175,73,0.29692353565511403],[116,175,74,0.2951236580023322],[116,175,75,0.29324139218213224],[116,175,76,0.29128604014033854],[116,175,77,0.28926435001043466],[116,175,78,0.28718024878456544],[116,175,79,0.2850347372494622],[116,176,64,0.3029635999404415],[116,176,65,0.3022857929194514],[116,176,66,0.30135249358391064],[116,176,67,0.3002160719833297],[116,176,68,0.29890535960314674],[116,176,69,0.29742879698136254],[116,176,70,0.29579857917146296],[116,176,71,0.29402976282396487],[116,176,72,0.2921389204007937],[116,176,73,0.2901429472227611],[116,176,74,0.2880580261005],[116,176,75,0.285898754035327],[116,176,76,0.28367743520863586],[116,176,77,0.28140354420892244],[116,176,78,0.27908336317679],[116,176,79,0.27671979628293125],[116,177,64,0.29826404985909677],[116,177,65,0.29734010742182887],[116,177,66,0.29615290547844375],[116,177,67,0.2947531486151607],[116,177,68,0.29316938855327634],[116,177,69,0.2914116512291663],[116,177,70,0.2894944534944512],[116,177,71,0.2874356938748921],[116,177,72,0.2852551286963023],[116,177,73,0.2829730142422443],[116,177,74,0.280608920166862],[116,177,75,0.278180719099401],[116,177,76,0.27570375708532274],[116,177,77,0.2731902092149201],[116,177,78,0.27064862449657456],[116,177,79,0.2680836637411066],[116,178,64,0.2932304875331122],[116,178,65,0.2920595604679385],[116,178,66,0.29061806894334963],[116,178,67,0.28895447102741423],[116,178,68,0.28709706839553845],[116,178,69,0.285057946985121],[116,178,70,0.2828543556224288],[116,178,71,0.2805073711845127],[116,178,72,0.27804019924015566],[116,178,73,0.2754766541963983],[116,178,74,0.27283982463819956],[116,178,75,0.27015092923892975],[116,178,76,0.2674283683038348],[116,178,77,0.26468697569001914],[116,178,78,0.26193747552763486],[116,178,79,0.25918614785090505],[116,179,64,0.28790999063220574],[116,179,65,0.28649363986618626],[116,179,66,0.28479988896675834],[116,179,67,0.2828744040936743],[116,179,68,0.28074525250447485],[116,179,69,0.2784269925911749],[116,179,70,0.2759399474243195],[116,179,71,0.2733086393382669],[116,179,72,0.27055992073287105],[116,179,73,0.2677212978109521],[116,179,74,0.2648194533845646],[116,179,75,0.2618789745505536],[116,179,76,0.25892129069684516],[116,179,77,0.25596382695819037],[116,179,78,0.2530193778966454],[116,179,79,0.2500957058411392],[116,180,64,0.28234890062653895],[116,180,65,0.2806912884504582],[116,180,66,0.27874994780751083],[116,180,67,0.27656726676351934],[116,180,68,0.2741710836783642],[116,180,69,0.27157876942923764],[116,180,70,0.268813985854894],[116,180,71,0.2659048893044435],[116,180,72,0.2628821001973904],[116,180,73,0.2597768786060595],[116,180,74,0.2566195124109198],[116,180,75,0.2534379242250051],[116,180,76,0.2502565029220677],[116,180,77,0.24709516523723193],[116,180,78,0.24396865254190828],[116,180,79,0.24088606753001285],[116,181,64,0.27659219635721133],[116,181,65,0.2747001936056537],[116,181,66,0.27251869703791287],[116,181,67,0.2700864100133964],[116,181,68,0.26743094028722825],[116,181,69,0.26457272939079085],[116,181,70,0.2615389563540857],[116,181,71,0.2583615143740976],[116,181,72,0.2550748304942377],[116,181,73,0.2517139037702929],[116,181,74,0.2483125688546225],[116,181,75,0.2449019915556248],[116,181,76,0.24150940254682085],[116,181,77,0.23815707501236683],[116,181,78,0.23486155162675026],[116,181,79,0.23163312587945023],[116,182,64,0.2706828548908116],[116,182,65,0.26856606515539017],[116,182,66,0.26615464110820297],[116,182,67,0.2634832912341399],[116,182,68,0.2605793857314907],[116,182,69,0.2574666050359908],[116,182,70,0.2541757312172543],[116,182,71,0.25074240650525925],[116,182,72,0.2472048169381501],[116,182,73,0.24360160608332665],[116,182,74,0.23997002610134938],[116,182,75,0.23634433302883678],[116,182,76,0.23275443275458707],[116,182,77,0.22922478375586078],[116,182,78,0.22577356225259368],[116,182,79,0.2224120950300465],[116,183,64,0.2646611991871171],[116,183,65,0.2623319011141561],[116,183,66,0.25970351191980723],[116,183,67,0.25680654453431034],[116,183,68,0.25366812069081296],[116,183,69,0.2503152319346353],[116,183,70,0.24678225245720972],[116,183,71,0.243108492638308],[116,183,72,0.2393357626477509],[116,183,73,0.23550617660238007],[116,183,74,0.23166020483622443],[116,183,75,0.22783498143194109],[116,183,76,0.22406287374260753],[116,183,77,0.22037032020815828],[116,183,78,0.21677694234380368],[116,183,79,0.21329493635255958],[116,184,64,0.25856423208782164],[116,184,65,0.25603724078331885],[116,184,66,0.2532074338710654],[116,184,67,0.2501010464152544],[116,184,68,0.24674493762012495],[116,184,69,0.24316938266054045],[116,184,70,0.23941223866077999],[116,184,71,0.2355163105353007],[116,184,72,0.231526812250817],[116,184,73,0.22748907782451247],[116,184,74,0.22344652985076893],[116,184,75,0.2194389129248693],[116,184,76,0.21550079889858856],[116,184,77,0.21166037046289507],[116,184,78,0.20793848911086849],[116,184,79,0.20434805309344403],[116,185,64,0.25242495611412696],[116,185,65,0.24971740464889663],[116,185,66,0.246704078817414],[116,185,67,0.2434069762526344],[116,185,68,0.23985267692999368],[116,185,69,0.23607461189336837],[116,185,70,0.232113915328822],[116,185,71,0.228016623687101],[116,185,72,0.22383105356496805],[116,185,73,0.2196054370415272],[116,185,74,0.21538582243932405],[116,185,75,0.2112142480446661],[116,185,76,0.20712719587626588],[116,185,77,0.20315433213953876],[116,185,78,0.19931754054948053],[116,185,79,0.19563025425214794],[116,186,64,0.24627167854198234],[116,186,65,0.24340272051871045],[116,186,66,0.24022581036782942],[116,186,67,0.2367588709999439],[116,186,68,0.23302818427107627],[116,186,69,0.2290701120675725],[116,186,70,0.22492876817863497],[116,186,71,0.22065307482813817],[116,186,72,0.21629407687696003],[116,186,73,0.21190251961628223],[116,186,74,0.20752669824044967],[116,186,75,0.20321058664402045],[116,186,76,0.1989922527334393],[116,186,77,0.19490256698287745],[116,186,78,0.19096421050012363],[116,186,79,0.1871909884061647],[116,187,64,0.24012730120755998],[116,187,65,0.2371177353193471],[116,187,66,0.2337988169225938],[116,187,67,0.23018467351417832],[116,187,68,0.22630126832939465],[116,187,69,0.22218757899881045],[116,187,70,0.21789031888366217],[116,187,71,0.21346087760142413],[116,187,72,0.20895259145503536],[116,187,73,0.204418281930441],[116,187,74,0.199908070411281],[116,187,75,0.19546747680990595],[116,187,76,0.19113580935381608],[116,187,77,0.18694485229968652],[116,187,78,0.18291785787734693],[116,187,79,0.17906884829760317],[116,188,64,0.23400859447985067],[116,188,65,0.23088041195688552],[116,188,66,0.22744223284174458],[116,188,67,0.22370477388991736],[116,188,68,0.2196936585281476],[116,188,69,0.2154500869114778],[116,188,70,0.2110229227246819],[116,188,71,0.2064655459235579],[116,188,72,0.20183309894543167],[116,188,73,0.19718000378149686],[116,188,74,0.19255775806321196],[116,188,75,0.18801301786252683],[116,188,76,0.1835859744427217],[116,188,77,0.17930903172673188],[116,188,78,0.17520579077697804],[116,188,79,0.17129034710914798],[116,189,64,0.22792545482483034],[116,189,65,0.22470131063242704],[116,189,66,0.22116724712176608],[116,189,67,0.2173310431785216],[116,189,68,0.2132179620256178],[116,189,69,0.20887097228983464],[116,189,70,0.20434058763228163],[116,189,71,0.19968166061373144],[116,189,72,0.19495062332899385],[116,189,73,0.19020300004408913],[116,189,74,0.18549119993832902],[116,189,75,0.18086259760096476],[116,189,76,0.17635790846905866],[116,189,77,0.17200986592329146],[116,189,78,0.16784220628549856],[116,189,79,0.16386896749006197],[116,190,64,0.2218801453751195],[116,190,65,0.2185827539927058],[116,190,66,0.2149761989487806],[116,190,67,0.21106585886248638],[116,190,68,0.2068766193959892],[116,190,69,0.20245272597802963],[116,190,70,0.19784581411074856],[116,190,71,0.19311167287060124],[116,190,72,0.18830749714521028],[116,190,73,0.18348941145539177],[116,190,74,0.17871027336585488],[116,190,75,0.17401776403822194],[116,190,76,0.16945277301968723],[116,190,77,0.1650480838933826],[116,190,78,0.16082736694632188],[116,190,79,0.15680448454181098],[116,191,64,0.21586651891063988],[116,191,65,0.21251797548770557],[116,191,66,0.20886165948994465],[116,191,67,0.20490112145152267],[116,191,68,0.20066085838083256],[116,191,69,0.1961858929614467],[116,191,70,0.1915284555488102],[116,191,71,0.18674474420651135],[116,191,72,0.1818922037290382],[116,191,73,0.1770270744368073],[116,191,74,0.17220221860647805],[116,191,75,0.1674652319546184],[116,191,76,0.16285684713748047],[116,191,77,0.15840963576752437],[116,191,78,0.1541470149822895],[116,191,79,0.15008256413737778],[116,192,64,0.2098692226509421],[116,192,65,0.20649025030274862],[116,192,66,0.20280549928245734],[116,192,67,0.1988172615681226],[116,192,68,0.19454964510511677],[116,192,69,0.19004797927464773],[116,192,70,0.1853645984443613],[116,192,71,0.1805556224813071],[116,192,72,0.17567827525188245],[116,192,73,0.1707884699255139],[116,192,74,0.1659386687709336],[116,192,75,0.16117602469572526],[116,192,76,0.15654081133147296],[116,192,77,0.15206514801182106],[116,192,78,0.14777202553287408],[116,192,79,0.1436746381287131],[116,193,64,0.20386288425777055],[116,193,65,0.20047200823109157],[116,193,66,0.19677794058065473],[116,193,67,0.1927822368953376],[116,193,68,0.18850863216195426],[116,193,69,0.1840023654988147],[116,193,70,0.1793154620973816],[116,193,71,0.17450355371677398],[116,193,72,0.16962324641087181],[116,193,73,0.16472975125831704],[116,193,74,0.15987478558613624],[116,193,75,0.15510475174761984],[116,193,76,0.15045920007507416],[116,193,77,0.14596958218153716],[116,193,78,0.14165830033627563],[116,193,79,0.13753805819083748],[116,194,64,0.1978112784470457],[116,194,65,0.19442392785468962],[116,194,66,0.19073659402615753],[116,194,67,0.18675051836828074],[116,194,68,0.182489102984905],[116,194,69,0.17799722633400442],[116,194,70,0.1733263173576669],[116,194,71,0.16853122941747525],[116,194,72,0.1636676636699527],[116,194,73,0.1587898512264394],[116,194,74,0.15394850137713695],[116,194,75,0.1491890227376722],[116,194,76,0.14455002374551398],[116,194,77,0.1400620984962399],[116,194,78,0.13574690346970586],[116,194,79,0.13161653025749465],[116,195,64,0.19166700556138794],[116,195,65,0.1882946171602149],[116,195,66,0.184626153785754],[116,195,67,0.1806628072110549],[116,195,68,0.17642772001031662],[116,195,69,0.17196532526564376],[116,195,70,0.1673263477580806],[116,195,71,0.1625647371744549],[116,195,72,0.15773514999276167],[116,195,73,0.15289068601951775],[116,195,74,0.14808088664712465],[116,195,75,0.1433500014863995],[116,195,76,0.13873552960724184],[116,195,77,0.13426704119211882],[116,195,78,0.12996528497633061],[116,195,79,0.1258415864196238],[116,196,64,0.182618072594041],[116,196,65,0.18205070710701235],[116,196,66,0.178411907684637],[116,196,67,0.17448289110886345],[116,196,68,0.17028665619628358],[116,196,69,0.1658672125800593],[116,196,70,0.1612745670114963],[116,196,71,0.1565617201294362],[116,196,72,0.1517822099408376],[116,196,73,0.14698790598683914],[116,196,74,0.14222706105060073],[116,196,75,0.1375426268585356],[116,196,76,0.13297083981286476],[116,196,77,0.12854008237394363],[116,196,78,0.12427002528906803],[116,196,79,0.1201710554441956],[116,197,64,0.17280700927580142],[116,197,65,0.17411391329230025],[116,197,66,0.17209884014776283],[116,197,67,0.16821833718501705],[116,197,68,0.16407582936582218],[116,197,69,0.1597148628168913],[116,197,70,0.15518463763859422],[116,197,71,0.1505370805158945],[116,197,72,0.1458244581807356],[116,197,73,0.1410972371856587],[116,197,74,0.1364021966181658],[116,197,75,0.13178079998944775],[116,197,76,0.12726783212656329],[116,197,77,0.12289030648715685],[116,197,78,0.1186666479037673],[116,197,79,0.11460615535438495],[116,198,64,0.165616033345276],[116,198,65,0.16462783615612156],[116,198,66,0.1654794850407728],[116,198,67,0.16187305734864837],[116,198,68,0.15780101049670298],[116,198,69,0.15351560702917263],[116,198,70,0.1490650883094592],[116,198,71,0.144500115474847],[116,198,72,0.13987146582080703],[116,198,73,0.13522797020159635],[116,198,74,0.13061469782230947],[116,198,75,0.12607139441179901],[116,198,76,0.1216311793719842],[116,198,77,0.11731950710004002],[116,198,78,0.11315339727920244],[116,198,79,0.10914093853497037],[116,199,64,0.16519986159537883],[116,199,65,0.16402573726624742],[116,199,66,0.16286320506147778],[116,199,67,0.16044422828898985],[116,199,68,0.15439002449032774],[116,199,69,0.14825066183445593],[116,199,70,0.14291634481589796],[116,199,71,0.1384513840512175],[116,199,72,0.1339235275981971],[116,199,73,0.12937970040521313],[116,199,74,0.1248629946804806],[116,199,75,0.12041118665003793],[116,199,76,0.11605550483962856],[116,199,77,0.11181965482400841],[116,199,78,0.10771910499990743],[116,199,79,0.1037606375535766],[116,200,64,0.16476756970297463],[116,200,65,0.1633909676480101],[116,200,66,0.1620198464579392],[116,200,67,0.1606428556047387],[116,200,68,0.1565336491216178],[116,200,69,0.15031433229994415],[116,200,70,0.14405431611924482],[116,200,71,0.13779429673431018],[116,200,72,0.13157477533063344],[116,200,73,0.12543418459798064],[116,200,74,0.11940724857826109],[116,200,75,0.11478968475381941],[116,200,76,0.11052826909626647],[116,200,77,0.10637582241329706],[116,200,78,0.10234613147662251],[116,200,79,0.09844460066414382],[116,201,64,0.16434311135615337],[116,201,65,0.1627469800297625],[116,201,66,0.1611513038966924],[116,201,67,0.1595423410000519],[116,201,68,0.15789069130132094],[116,201,69,0.1522047573391486],[116,201,70,0.14587849752391271],[116,201,71,0.13955429592493546],[116,201,72,0.1332704359744124],[116,201,73,0.1270629589709785],[116,201,74,0.12096414180265425],[116,201,75,0.11500120262020372],[116,201,76,0.10919523914287362],[116,201,77,0.1035604039265819],[116,201,78,0.09810332057284113],[116,201,79,0.0931693200467504],[116,202,64,0.16394881813100307],[116,202,65,0.16211617980065568],[116,202,66,0.16028019234383997],[116,202,67,0.15842423300734945],[116,202,68,0.15651784715087522],[116,202,69,0.1539091680933807],[116,202,70,0.14752564109587274],[116,202,71,0.14114543348347833],[116,202,72,0.13480434333089567],[116,202,73,0.12853574632284734],[116,202,74,0.12236920864042866],[116,202,75,0.11632931493188174],[116,202,76,0.11043471566476529],[116,202,77,0.10469739782627013],[116,202,78,0.09912218260882233],[116,202,79,0.09370645339071762],[116,203,64,0.16360400696549404],[116,203,65,0.16151844505263357],[116,203,66,0.15942700461296844],[116,203,67,0.1573097336043551],[116,203,68,0.15513489946522285],[116,203,69,0.152861067040832],[116,203,70,0.1489841092869936],[116,203,71,0.14255555257754923],[116,203,72,0.1361637870994903],[116,203,73,0.12983926173240432],[116,203,74,0.12360858055735736],[116,203,75,0.11749346851150418],[116,203,76,0.1115099410247977],[116,203,77,0.10566768120498798],[116,203,78,0.09996962783283399],[116,203,79,0.0944117771276093],[116,204,64,0.16332372412894464],[116,204,65,0.16096978095241268],[116,204,66,0.15860866382998062],[116,204,67,0.15621669639375163],[116,204,68,0.15376065581777756],[116,204,69,0.15120045717219008],[116,204,70,0.1484956197504989],[116,204,71,0.14377608232517308],[116,204,72,0.13733986344242388],[116,204,73,0.13096434584434294],[116,204,74,0.12467293279365124],[116,204,75,0.11848427331694253],[116,204,76,0.11241156731278766],[116,204,77,0.10646206023018227],[116,204,78,0.10063673017171003],[116,204,79,0.09493017000267154],[116,205,64,0.16311762669109375],[116,205,65,0.1604811093364801],[116,205,66,0.15783720697635134],[116,205,67,0.15515818475688886],[116,205,68,0.15240913203665085],[116,205,69,0.14955137632087517],[116,205,70,0.14654678332189036],[116,205,71,0.143359116015391],[116,205,72,0.13832975854736065],[116,205,73,0.13190844646745792],[116,205,74,0.12556016174375167],[116,205,75,0.11930026537254632],[116,205,76,0.11313896069735457],[116,205,77,0.10708091658703935],[116,205,78,0.1011250625040016],[116,205,79,0.09526455763787738],[116,206,64,0.16298900265021513],[116,206,65,0.1600571945727897],[116,206,66,0.1571186004131565],[116,206,67,0.15414115579660542],[116,206,68,0.15108808198891738],[116,206,69,0.14792215216660684],[116,206,70,0.14460769788232494],[116,206,71,0.14111164986960062],[116,206,72,0.13740443896102555],[116,206,73,0.1326780586060927],[116,206,74,0.12627804249160854],[116,206,75,0.11995077669923981],[116,206,76,0.11370327400348271],[116,206,77,0.10753746859425678],[116,206,78,0.10145012823709054],[116,206,79,0.0954329174851866],[116,207,64,0.16293560553713035],[116,207,65,0.15969691952816503],[116,207,66,0.15645257790676245],[116,207,67,0.153165992161435],[116,207,68,0.14979836262924762],[116,207,69,0.14631391601343166],[116,207,70,0.1426795449485095],[116,207,71,0.1388655067301361],[116,207,72,0.1348460588653981],[116,207,73,0.13059998013811822],[116,207,74,0.12611097502628354],[116,207,75,0.1204539628595977],[116,207,76,0.11412471121975407],[116,207,77,0.10785423012895368],[116,207,78,0.10163699525750747],[116,207,79,0.0954630921753044],[116,208,64,0.1629558322846413],[116,208,65,0.15939828204611012],[116,208,66,0.15583689708721218],[116,208,67,0.1522305055729082],[116,208,68,0.14853819704311422],[116,208,69,0.14472564484110823],[116,208,70,0.14076236305232823],[116,208,71,0.13662204398281966],[116,208,72,0.1322829113031421],[116,208,73,0.12772798205550687],[116,208,74,0.12294523602302505],[116,208,75,0.11792769109916987],[116,208,76,0.11267338343345884],[116,208,77,0.10718525126520867],[116,208,78,0.1014709214912186],[116,208,79,0.09536033095338442],[116,209,64,0.16304640796597397],[116,209,65,0.15915791157522893],[116,209,66,0.15526833416630315],[116,209,67,0.15133200633029315],[116,209,68,0.14730588549536597],[116,209,69,0.1431570691999167],[116,209,70,0.1388577117011975],[116,209,71,0.1343849867815456],[116,209,72,0.12972114568703558],[116,209,73,0.12485350876424635],[116,209,74,0.11977438997499049],[116,209,75,0.11448095356895342],[116,209,76,0.10897500229175763],[116,209,77,0.1032626966005664],[116,209,78,0.09735420445158688],[116,209,79,0.0912632813109874],[116,210,64,0.16320091478679094],[116,210,65,0.15897003390271483],[116,210,66,0.15474195437015142],[116,210,67,0.1504667308571639],[116,210,68,0.14609923154573626],[116,210,69,0.14160793756910547],[116,210,70,0.136967617769298],[116,210,71,0.13215890957479054],[116,210,72,0.1271680735607131],[116,210,73,0.1219867077871596],[116,210,74,0.1166114217858448],[116,210,75,0.11104347012460447],[116,210,76,0.10528834553474167],[116,210,77,0.09935533163790694],[116,210,78,0.09325701535799832],[116,210,79,0.08700875914712151],[116,211,64,0.16340971376070618],[116,211,65,0.1588262847756496],[116,211,66,0.1542508180615971],[116,211,67,0.14962943858765304],[116,211,68,0.1449150274722985],[116,211,69,0.1400773895809228],[116,211,70,0.13509383767284416],[116,211,71,0.12994839049454399],[116,211,72,0.1246312206745415],[116,211,73,0.11913808942661494],[116,211,74,0.11346976862108021],[116,211,75,0.10763145080098936],[116,211,76,0.10163214773234998],[116,211,77,0.09548407808501995],[116,211,78,0.08920204484518438],[116,211,79,0.08280280305917838],[116,212,64,0.16366002212128897],[116,212,65,0.15871568022084423],[116,212,66,0.15378584491194733],[116,212,67,0.14881316888442125],[116,212,68,0.14374870232247294],[116,212,69,0.13856349488949576],[116,212,70,0.13323728845519073],[116,212,71,0.12775733801463188],[116,212,72,0.1221175546509073],[116,212,73,0.11631766295026358],[116,212,74,0.1103623741074744],[116,212,75,0.10426057593346168],[116,212,76,0.09802454094547948],[116,212,77,0.09166915368297798],[116,212,78,0.08521115835140793],[116,212,79,0.07866842784990971],[116,213,64,0.16393614875904614],[116,213,65,0.15862474575855393],[116,213,66,0.1533358382313394],[116,213,67,0.14800916002069753],[116,213,68,0.14259413455517705],[116,213,69,0.13706295958526388],[116,213,70,0.1313976496238455],[116,213,71,0.1255884916650084],[116,213,72,0.11963288997243623],[116,213,73,0.11353425321269675],[116,213,74,0.10730092582728945],[116,213,75,0.10094516546858139],[116,213,76,0.09448216824899475],[116,213,77,0.0879291434708385],[116,213,78,0.08130443941825759],[116,213,79,0.07462672170142805],[116,214,64,0.1642198901068508],[116,214,65,0.15853780684200072],[116,214,66,0.1528876717053828],[116,214,67,0.14720693239931523],[116,214,68,0.14144363138090219],[116,214,69,0.13557100220175305],[116,214,70,0.12957313773046286],[116,214,71,0.12344309874037968],[116,214,72,0.11718147218094783],[116,214,73,0.11079499955190998],[116,214,74,0.10429527789853744],[116,214,75,0.0976975358346901],[116,214,76,0.09101948688115258],[116,214,77,0.08428026228054802],[116,214,78,0.07749942531982115],[116,214,79,0.07069606905566944],[116,215,64,0.1644910890242879],[116,215,65,0.15843744298408755],[116,215,66,0.1524266409177524],[116,215,67,0.14639453831668697],[116,215,68,0.14028807704497837],[116,215,69,0.13408140150361544],[116,215,70,0.12776045583073387],[116,215,71,0.12132076909091512],[116,215,72,0.11476574332759577],[116,215,73,0.10810503895490108],[116,215,74,0.10135306059032725],[116,215,75,0.09452754627664868],[116,215,76,0.08764826287957499],[116,215,77,0.08073581027855202],[116,215,78,0.07381053679469167],[116,215,79,0.06689156812133466],[116,216,64,0.16472835934881225],[116,216,65,0.15830510815326976],[116,216,66,0.15193698216224416],[116,216,67,0.14555898070715603],[116,216,68,0.13911725243084683],[116,216,69,0.1325867183807325],[116,216,70,0.12595492010129236],[116,216,71,0.1192195102271998],[116,216,72,0.11238629086288415],[116,216,73,0.10546737563835737],[116,216,74,0.0984794790767164],[116,216,75,0.09144233671554151],[116,216,76,0.08437725922172541],[116,216,77,0.07730582352892261],[116,216,78,0.07024870381219263],[116,216,79,0.06322464489502302],[116,217,64,0.1649099788872669],[116,217,65,0.1581219201302197],[116,217,66,0.1514025611615713],[116,217,67,0.1446868034214112],[116,217,68,0.13792032848330665],[116,217,69,0.13107869430141264],[116,217,70,0.12415076602411651],[116,217,71,0.11713594510986697],[116,217,72,0.11004198229815335],[116,217,73,0.10288293933739588],[116,217,74,0.09567730358297773],[116,217,75,0.08844625934736686],[116,217,76,0.08121211964294921],[116,217,77,0.07399692170895315],[116,217,78,0.06682118946045669],[116,217,79,0.059702865739694244],[116,218,64,0.16501495371332478],[116,218,65,0.1578696216137498],[116,218,66,0.15080773441187215],[116,218,67,0.143764855699551],[116,218,68,0.1366865360641806],[116,218,69,0.12954882889599859],[116,218,70,0.12234163667296563],[116,218,71,0.11506571512404143],[116,218,72,0.10773028810506607],[116,218,73,0.10035083473498327],[116,218,74,0.09294705332191641],[116,218,75,0.0855410063417518],[116,218,76,0.07815545045458788],[116,218,77,0.07081235525907152],[116,218,78,0.06353161419538456],[116,218,79,0.05632995071449184],[116,219,64,0.16502425671263146],[116,219,65,0.15753171594632112],[116,219,66,0.15013838595940904],[116,219,67,0.1427812335928481],[116,219,68,0.13540601495262655],[116,219,69,0.12798913934844924],[116,219,70,0.12052125574913897],[116,219,71,0.11300407085774122],[116,219,72,0.10544779544454552],[116,219,73,0.09786878459495309],[116,219,74,0.09028737675283795],[116,219,75,0.0827259361405356],[116,219,76,0.07520710282639553],[116,219,77,0.06775225439259244],[116,219,78,0.06038018283407197],[116,219,79,0.05310598999434939],[116,220,64,0.1649222433754017],[116,220,65,0.15709478039396332],[116,220,66,0.14938314248694548],[116,220,67,0.14172640116604776],[116,220,68,0.13407084478717543],[116,220,69,0.12639310436555237],[116,220,70,0.1186842881131227],[116,220,71,0.11094665340965912],[116,220,72,0.10319091542949001],[116,220,73,0.09543376928043183],[116,220,74,0.0876956308199632],[116,220,75,0.07999860098471806],[116,220,76,0.07236465812962796],[116,220,77,0.06481408252540115],[116,220,78,0.05736411681220788],[116,220,79,0.050027865853957264],[116,221,64,0.16469824787366683],[116,221,65,0.15654995996026802],[116,221,66,0.14853476963943835],[116,221,67,0.14059449437168642],[116,221,68,0.1326762608140138],[116,221,69,0.12475679556876916],[116,221,70,0.11682739064189832],[116,221,71,0.10889046904258147],[116,221,72,0.100956786723642],[116,221,73,0.0930428654441745],[116,221,74,0.08516866193766251],[116,221,75,0.0773554784138317],[116,221,76,0.06962411905673077],[116,221,77,0.0619932968081139],[116,221,78,0.05447829434914674],[116,221,79,0.0470898828154241],[116,222,64,0.1643483624748722],[116,222,65,0.15589464473687986],[116,222,66,0.1475917525495787],[116,222,67,0.13938481052710203],[116,222,68,0.1312220573536919],[116,222,69,0.123080199209939],[116,222,70,0.11495045630641447],[116,222,71,0.1068350600716829],[116,222,72,0.09874437835979306],[116,222,73,0.09069428676533006],[116,222,74,0.0827037915843395],[116,222,75,0.0747929095817919],[116,222,76,0.06698080933802353],[116,222,77,0.059284218551081874],[116,222,78,0.051716101274327866],[116,222,79,0.04428460866987004],[116,223,64,0.16387740333211545],[116,223,65,0.15513433379068567],[116,223,66,0.14656006353051082],[116,223,67,0.1381034863406757],[116,223,68,0.12971418192354375],[116,223,69,0.12136873114644786],[116,223,70,0.11305805440726951],[116,223,71,0.10478387492938714],[116,223,72,0.0965557947214232],[116,223,73,0.08838862967590971],[116,223,74,0.08030000944260139],[116,223,75,0.07230824731516387],[116,223,76,0.06443048496268809],[116,223,77,0.056681116423357256],[116,223,78,0.04907049536206749],[116,223,79,0.041603929177856526],[116,224,64,0.1633010656514292],[116,224,65,0.15428468855811503],[116,224,66,0.14545511988311965],[116,224,67,0.13676536742373965],[116,224,68,0.1281665229528939],[116,224,69,0.11963494802116263],[116,224,70,0.11116106992611692],[116,224,71,0.10274584037743363],[116,224,72,0.09439778566983625],[116,224,73,0.08613032706658003],[116,224,74,0.07795937707725485],[116,224,75,0.06990121690030197],[116,224,76,0.06197065987736805],[116,224,77,0.05417950537701729],[116,224,78,0.046535287095017974],[116,224,79,0.03904031932850255],[116,225,64,0.16264827116539177],[116,225,65,0.15337377865683074],[116,225,66,0.1443039347158303],[116,225,67,0.13539607218571384],[116,225,68,0.1266028939998197],[116,225,69,0.11790045757461666],[116,225,70,0.10927854494283984],[116,225,71,0.10073713883934884],[116,225,72,0.09228346481097476],[116,225,73,0.08392931298240962],[116,225,74,0.07568864517174864],[116,225,75,0.06757549262195864],[116,225,76,0.05960214917778339],[116,225,77,0.05177766429504414],[116,225,78,0.04410663982678027],[116,225,79,0.036588334089357244],[116,226,64,0.16196371073632398],[116,226,65,0.1524445229310406],[116,226,66,0.14314746359242053],[116,226,67,0.13403425293896837],[116,226,68,0.12505921731844474],[116,226,69,0.11619803096830707],[116,226,70,0.10743972503085296],[116,226,71,0.0987831937994576],[116,226,72,0.09023423887914424],[116,226,73,0.0818029013117117],[116,226,74,0.073501087344803],[116,226,75,0.06534049308469109],[116,226,76,0.05733083282393826],[116,226,77,0.04947837538132016],[116,226,78,0.041784792338351515],[116,226,79,0.034246321605732634],[116,227,64,0.1613114400285812],[116,227,65,0.1515589981046574],[116,227,66,0.14204555168202573],[116,227,67,0.13273716465569313],[116,227,68,0.12358973111238399],[116,227,69,0.11457846585673641],[116,227,70,0.10569158542159465],[116,227,71,0.09692684875584877],[116,227,72,0.08828860629307611],[116,227,73,0.07978514461718987],[116,227,74,0.07142633237921989],[116,227,75,0.0632215726683402],[116,227,76,0.05517806658073498],[116,227,77,0.04729939226576192],[116,227,78,0.03958440326620253],[116,227,79,0.032026449509485376],[116,228,64,0.16076732293861695],[116,228,65,0.15079424685594142],[116,228,66,0.14107582216428005],[116,228,67,0.13158255071703268],[116,228,68,0.12227192363118353],[116,228,69,0.11311863658703294],[116,228,70,0.1041100348897313],[116,228,71,0.09524269754014579],[116,228,72,0.08651949693957263],[116,228,73,0.07794696077464003],[116,228,74,0.06953294169468158],[116,228,75,0.06128459993293776],[116,228,76,0.05320670355395992],[116,228,77,0.04530025053660006],[116,228,78,0.037561416431080935],[116,228,79,0.029980830861292],[116,229,64,0.16039095367251463],[116,229,65,0.15021176255341231],[116,229,66,0.14030108043165884],[116,229,67,0.13063409235526455],[116,229,68,0.12117002771515199],[116,229,69,0.11188304085445276],[116,229,70,0.10275956233323341],[116,229,71,0.0937949425942319],[116,229,72,0.08499053351446706],[116,229,73,0.07635107711516194],[116,229,74,0.06788240697426667],[116,229,75,0.059589467417347816],[116,229,76,0.05147465508654433],[116,229,77,0.04353648700774674],[116,229,78,0.03576859879940958],[116,229,79,0.028159076193853584],[116,230,64,0.1602220735563149],[116,230,65,0.14985270317845023],[116,230,66,0.13976346042013843],[116,230,67,0.12993454032238122],[116,230,68,0.1203271381203309],[116,230,69,0.11091489766371299],[116,230,70,0.10168332180891693],[116,230,71,0.09262649717551082],[116,230,72,0.0837442132837091],[116,230,73,0.07503939178644728],[116,230,74,0.06651583123904493],[116,230,75,0.05817627237634984],[116,230,76,0.0500207883871461],[116,230,77,0.04204550419255983],[116,230,78,0.034241648255607965],[116,230,79,0.02659493997424517],[116,231,64,0.16028298610554806],[116,231,65,0.1497403039090437],[116,231,66,0.13948683041002563],[116,231,67,0.12950812205576195],[116,231,68,0.11976763112551819],[116,231,69,0.11023858584669255],[116,231,70,0.1009055919294923],[116,231,71,0.09176146342399003],[116,231,72,0.08280439879396624],[116,231,73,0.07403546765856793],[116,231,74,0.0654564135052108],[116,231,75,0.0570677772030309],[116,231,76,0.04886734566560081],[116,231,77,0.04084892952865625],[116,231,78,0.033001473229667504],[116,231,79,0.02530850040256896],[116,232,64,0.16058084430567168],[116,232,65,0.1498821612205101],[116,232,66,0.13947907139380397],[116,232,67,0.12936282375020614],[116,232,68,0.11949946277899844],[116,232,69,0.10986196682448333],[116,232,70,0.10043412732915444],[116,232,71,0.09120751276111182],[116,232,72,0.08217872371960153],[116,232,73,0.07334695670926324],[116,232,74,0.06471188170573898],[116,232,75,0.056271838164042166],[116,232,76,0.04802235364392104],[116,232,77,0.03995498874750726],[116,232,78,0.03205651159018322],[116,232,79,0.02430840455721329],[116,233,64,0.16110980765238989],[116,233,65,0.15027238569877308],[116,233,66,0.13973422491651588],[116,233,67,0.12949254397955617],[116,233,68,0.11951634217760887],[116,233,69,0.10977858777272079],[116,233,70,0.10026239814819832],[116,233,71,0.09095816439775595],[116,233,72,0.08186090949687672],[116,233,73,0.07296795047076916],[116,233,74,0.0642768694583876],[116,233,75,0.055783798107641634],[116,233,76,0.04748201926731745],[116,233,77,0.039360889470410665],[116,233,78,0.03140508523790713],[116,233,79,0.023594175772778864],[116,234,64,0.16185306753964596],[116,234,65,0.15089362220913452],[116,234,66,0.14023450910600938],[116,234,67,0.1298791176720309],[116,234,68,0.11979977868314261],[116,234,69,0.10996976421649257],[116,234,70,0.10037171670851423],[116,234,71,0.09099496129469627],[116,234,72,0.08183299228563796],[116,234,73,0.07288125629909459],[116,234,74,0.06413523668213408],[116,234,75,0.05558884340423278],[116,234,76,0.04723311214423694],[116,234,77,0.039055215835587034],[116,234,78,0.031037791481350586],[116,234,79,0.023158584604580708],[116,235,64,0.16278473940334912],[116,235,65,0.15171893588807803],[116,235,66,0.14095220143900178],[116,235,67,0.13049420907469994],[116,235,68,0.12032100181351017],[116,235,69,0.1104065409135167],[116,235,70,0.10073325038351104],[116,235,71,0.0912895427494317],[116,235,72,0.08206745962834398],[116,235,73,0.07306059905552799],[116,235,74,0.0642623338928701],[116,235,75,0.05566432520850327],[116,235,76,0.04725533407546216],[116,235,77,0.039020334794938126],[116,235,78,0.03093993211372781],[116,235,79,0.02299008457665875],[116,236,64,0.163871619854365],[116,236,65,0.1527135622554059],[116,236,66,0.1418513866223828],[116,236,67,0.13130107217802744],[116,236,68,0.12104275238171336],[116,236,69,0.11105152971856629],[116,236,70,0.10130991949777371],[116,236,71,0.09180561261184743],[116,236,72,0.08252929600123032],[116,236,73,0.07347274761145228],[116,236,74,0.0646272098271074],[116,236,75,0.05598204494741251],[116,236,76,0.04752367584545916],[116,236,77,0.03923481453121515],[116,236,78,0.03109398092299677],[116,236,79,0.023075313724298448],[116,237,64,0.16507478520904903],[116,237,65,0.15383649752755074],[116,237,66,0.14288954538435905],[116,237,67,0.13225615414163044],[116,237,68,0.12192092020560871],[116,237,69,0.11186059957814455],[116,237,70,0.10205815528216165],[116,237,71,0.0925007780857745],[116,237,72,0.08317791220271457],[116,237,73,0.07407954116659843],[116,237,74,0.0651947374847091],[116,237,75,0.05651047927953009],[116,237,76,0.04801073672649703],[116,237,77,0.03967583069793088],[116,237,78,0.03148206563183127],[116,237,79,0.02340163826076036],[116,238,64,0.16634648632213614],[116,238,65,0.1550372991241761],[116,238,66,0.14401427435465483],[116,238,67,0.1333057575204334],[116,238,68,0.12290117556913249],[116,238,69,0.11277950329884838],[116,238,70,0.10292454637287483],[116,238,71,0.09332323811499323],[116,238,72,0.08396389501685633],[116,238,73,0.07483471643335438],[116,238,74,0.06592253166222145],[116,238,75,0.057211797231539546],[116,238,76,0.04868384684474957],[116,238,77,0.04031639606069066],[116,238,78,0.032083303421882814],[116,238,79,0.023954589388100453],[116,239,64,0.1676258587986873],[116,239,65,0.156252578069121],[116,239,66,0.1451604003067617],[116,239,67,0.13438360327166965],[116,239,68,0.12391679924536037],[116,239,69,0.11374178796761825],[116,239,70,0.10384364458596498],[116,239,71,0.09420930699673657],[116,239,72,0.08482608403704692],[116,239,73,0.07568039067204396],[116,239,74,0.0667567129383603],[116,239,75,0.05803680505902591],[116,239,76,0.04949912079893338],[116,239,77,0.04111848078653482],[116,239,78,0.03286597719238746],[116,239,79,0.024709116828603134],[116,240,64,0.1688525258316538],[116,240,65,0.15742248452447574],[116,240,66,0.14626873213379932],[116,240,67,0.13543116301238986],[116,240,68,0.12490986509508614],[116,240,69,0.1146900783701141],[116,240,70,0.10475860478839424],[116,240,71,0.09510269413538139],[116,240,72,0.08570882292609658],[116,240,73,0.07656168233605352],[116,240,74,0.06764337747596454],[116,240,75,0.05893284000084338],[116,240,76,0.05040545572734261],[116,240,77,0.042032908619927874],[116,240,78,0.033783242202272044],[116,240,79,0.025621139154909944],[116,241,64,0.16997736984519154],[116,241,65,0.15849884531229783],[116,241,66,0.1472919605513151],[116,241,67,0.13640176774274176],[116,241,68,0.12583403193935153],[116,241,69,0.1155780319582159],[116,241,70,0.10562277121676368],[116,241,71,0.09595616280322716],[116,241,72,0.08656409105254381],[116,241,73,0.07742966385212441],[116,241,74,0.06853265752392003],[116,241,75,0.05984915584109784],[116,241,76,0.05135138445102715],[116,241,77,0.043007741694069984],[116,241,78,0.03478302653514209],[116,241,79,0.026638864061781217],[116,242,64,0.17096318995411505],[116,242,65,0.15944497755287818],[116,242,66,0.14819379650253714],[116,242,67,0.13725926429280946],[116,242,68,0.12665292565599193],[116,242,69,0.11636865855972131],[116,242,70,0.10639814333019948],[116,242,71,0.09673034030564859],[116,242,72,0.0873508396822609],[116,242,73,0.07824138384391063],[116,242,74,0.0693795635614567],[116,242,75,0.06073868918858359],[116,242,76,0.052287837724800765],[116,242,77,0.043992076365175534],[116,242,78,0.03581286291567902],[116,242,79,0.02770862322207463],[116,243,64,0.17178362162535019],[116,243,65,0.16023466942610567],[116,243,66,0.1489480235731222],[116,243,67,0.13797715505578165],[116,243,68,0.12733938540306297],[116,243,69,0.11703369365724754],[116,243,70,0.10705489689727259],[116,243,71,0.0973934067906606],[116,243,72,0.08803486671701825],[116,243,73,0.07895994357705992],[116,243,74,0.07014427522235961],[116,243,75,0.06155857421083901],[116,243,76,0.05316888836641496],[116,243,77,0.04493701840077788],[116,243,78,0.036821092645854786],[116,243,79,0.02877629874630163],[116,244,64,0.1724220437216071],[116,244,65,0.16085114497774108],[116,244,66,0.14953753075248807],[116,244,67,0.13853771313157526],[116,244,68,0.12787467902730637],[116,244,69,0.11755293386674041],[116,244,70,0.10757086001123475],[116,244,71,0.09792073183844692],[116,244,72,0.0885886325349975],[116,244,73,0.07955450858829144],[116,244,74,0.07079236248086859],[116,244,75,0.0622705838879827],[116,244,76,0.053952419481065175],[116,244,77,0.045796581248658944],[116,244,78,0.03775799306704301],[116,244,79,0.029788675084035314],[116,245,64,0.17287047257096272],[116,245,65,0.16128601255209057],[116,245,66,0.1499533250554683],[116,245,67,0.13893107230561832],[116,245,68,0.12824768697124128],[116,245,69,0.1179135338055553],[116,245,70,0.10793094309605701],[116,245,71,0.09829445776957622],[116,245,72,0.08899101575837966],[116,245,73,0.08000025422551744],[116,245,74,0.07129493574805176],[116,245,75,0.06284149637994067],[116,245,76,0.05460071534504091],[116,245,77,0.046528505947169535],[116,245,78,0.03857682713296575],[116,245,79,0.03069471500316531],[116,246,64,0.17312844282310305],[116,246,65,0.16153819654398896],[116,246,66,0.1501935236227139],[116,246,67,0.1391542913841753],[116,246,68,0.12845405407949348],[116,246,69,0.1181092636152565],[116,246,70,0.10812652202672071],[116,246,71,0.09850302865490353],[116,246,72,0.08922700779834386],[116,246,73,0.08027824383006534],[116,246,74,0.07162872350843849],[116,246,75,0.06324338505728243],[116,246,76,0.055080973443643155],[116,246,77,0.04709500114327019],[116,246,78,0.0392348135583331],[116,246,79,0.030238961893247977],[116,247,64,0.17320187498232517],[116,247,65,0.16161285228708677],[116,247,66,0.15026232503598566],[116,247,67,0.13921039251786754],[116,247,68,0.12849530880619406],[116,247,69,0.11813972649431556],[116,247,70,0.10815477356346405],[116,247,71,0.09854066406991605],[116,247,72,0.08928734506838784],[116,247,73,0.08037523831093073],[116,247,74,0.07177607612166607],[116,247,75,0.06345383071513364],[116,247,76,0.055365736100659674],[116,247,77,0.04746340159893564],[116,247,78,0.03969401589423295],[116,247,79,0.028829576011995248],[116,248,64,0.17310192964879795],[116,248,65,0.16152026403207204],[116,248,66,0.15016895971523012],[116,248,67,0.13910737326896205],[116,248,68,0.12837794944097902],[116,248,69,0.11800953570112004],[116,248,70,0.10801796239176724],[116,248,71,0.09840677671220953],[116,248,72,0.08916807781362382],[116,248,73,0.08028343589562385],[116,248,74,0.07172489442377235],[116,248,75,0.06345605447249895],[116,248,76,0.05543324009079169],[116,248,77,0.0476067434906422],[116,248,78,0.03967552383324805],[116,248,79,0.02762912624507723],[116,249,64,0.17284384865416735],[116,249,65,0.16127472611882365],[116,249,66,0.14992661940934032],[116,249,67,0.13885719231692772],[116,249,68,0.12811249710269831],[116,249,69,0.11772745060975583],[116,249,70,0.10772267916947964],[116,249,71,0.09810533309473275],[116,249,72,0.08887007457856504],[116,249,73,0.08000014089461993],[116,249,74,0.07146848178967583],[116,249,75,0.06323896985796365],[116,249,76,0.05526768259451524],[116,249,77,0.047504254742519146],[116,249,78,0.038771401143334425],[116,249,79,0.026649778271182437],[116,250,64,0.1724457834459949],[116,250,65,0.16089340761129883],[116,250,66,0.14955136595258792],[116,250,67,0.13847472885160217],[116,250,68,0.12771251539850687],[116,250,69,0.11730547154108129],[116,250,70,0.10727902911104277],[116,250,71,0.09764415664092242],[116,250,72,0.0883984614305779],[116,250,73,0.07952736038844353],[116,250,74,0.07100531836417708],[116,250,75,0.06279715259905314],[116,250,76,0.05485940183890707],[116,250,77,0.04714175858332666],[116,250,78,0.03807115704954286],[116,250,79,0.0258975913423251],[116,251,64,0.1719276112571488],[116,251,65,0.1603952008427296],[116,251,66,0.14906101963347648],[116,251,67,0.13797671587382324],[116,251,68,0.12719359681143574],[116,251,69,0.11675789324979424],[116,251,70,0.10669977078649366],[116,251,71,0.09703417264132343],[116,251,72,0.08776199517119096],[116,251,73,0.07887132783872933],[116,251,74,0.07033875623428364],[116,251,75,0.06213072666733861],[116,251,76,0.05420497076880115],[116,251,77,0.04651198848153191],[116,251,78,0.03756987584278458],[116,251,79,0.02537170773166881],[116,252,64,0.17130973979327185],[116,252,65,0.1597995545136208],[116,252,66,0.14847402771450657],[116,252,67,0.13738064781194773],[116,252,68,0.12657231606438035],[116,252,69,0.11610031712713301],[116,252,70,0.10599940498268204],[116,252,71,0.0962885946876975],[116,252,72,0.08697236990593654],[116,252,73,0.07804195274039423],[116,252,74,0.06947663440407795],[116,252,75,0.06124516518803558],[116,252,76,0.05330720211358586],[116,252,77,0.0456148125946835],[116,252,78,0.037255857434538776],[116,252,79,0.02506363350597704],[116,253,64,0.17061190138276003],[116,253,65,0.15912529219519378],[116,253,66,0.1478083138492069],[116,253,67,0.1367036630686115],[116,253,68,0.1258651509121517],[116,253,69,0.11534862237827334],[116,253,70,0.10519321366577103],[116,253,71,0.09542205238005944],[116,253,72,0.08604345650561558],[116,253,73,0.07705219557175105],[116,253,74,0.06843081254524663],[116,253,75,0.06015100490191522],[116,253,76,0.05217506325665289],[116,253,77,0.04445736586962844],[116,253,78,0.03694592729893728],[116,253,79,0.024956612974292337],[116,254,64,0.1698519377607941],[116,254,65,0.1583894173178304],[116,254,66,0.14708010936845647],[116,254,67,0.13596140233717321],[116,254,68,0.1250873710378011],[116,254,69,0.11451789665548888],[116,254,70,0.1042962492999407],[116,254,71,0.0944496603070211],[116,254,72,0.08499047468042388],[116,254,73,0.07591736746571083],[116,254,74,0.06721662263458426],[116,254,75,0.05886347297173555],[116,254,76,0.050823499379827344],[116,254,77,0.04305408795176839],[116,254,78,0.035505943107430785],[116,254,79,0.025025099240857388],[116,255,64,0.16904457690231867],[116,255,65,0.15760590596834256],[116,255,66,0.1463027676522476],[116,255,67,0.13516684377234592],[116,255,68,0.12425189597580814],[116,255,69,0.11362132687392955],[116,255,70,0.10332227501865676],[116,255,71,0.09338602853184777],[116,255,72,0.08382909760504986],[116,255,73,0.0746543542201195],[116,255,74,0.06585223775633567],[116,255,75,0.05740202505721591],[116,255,76,0.049273163446223664],[116,255,77,0.041426665106590654],[116,255,78,0.033816561180604957],[116,255,79,0.025234323350474947],[116,256,64,0.16820020357840443],[116,256,65,0.15678448908152232],[116,256,66,0.14548556306580196],[116,256,67,0.13432911636485673],[116,256,68,0.12336812325344676],[116,256,69,0.11266905120714997],[116,256,70,0.10228265641282047],[116,256,71,0.09224421507687539],[116,256,72,0.08257448927894168],[116,256,73,0.07328076449016317],[116,256,74,0.06435795754370185],[116,256,75,0.05578979374346457],[116,256,76,0.04755005170353126],[116,256,77,0.03960387442685636],[116,256,78,0.03190914506162995],[116,256,79,0.02441792571513729],[116,257,64,0.16732363675256542],[116,257,65,0.15592943613121096],[116,257,66,0.14463248559407077],[116,257,67,0.1334523017335329],[116,257,68,0.12244073612070268],[116,257,69,0.11166698090517976],[116,257,70,0.10118521299793155],[116,257,71,0.0910346280592827],[116,257,72,0.08124028205480283],[116,257,73,0.07181400957586104],[116,257,74,0.06275541785624407],[116,257,75,0.0540529553043453],[116,257,76,0.04568505326596692],[116,257,77,0.03762133963749144],[116,257,78,0.029823922867165547],[116,257,79,0.022248744811471023],[116,258,64,0.16641293670687912],[116,258,65,0.15503844470851247],[116,258,66,0.14374121996464273],[116,258,67,0.13253449786369292],[116,258,68,0.12146884040134527],[116,258,69,0.11061599717299687],[116,258,70,0.10003346127510951],[116,258,71,0.0897643009795365],[116,258,72,0.07983787066248181],[116,258,73,0.0702706036509675],[116,258,74,0.06106688606922542],[116,258,75,0.05222001064490306],[116,258,76,0.04371320931932852],[116,258,77,0.035520763399100916],[116,258,78,0.027609189892094776],[116,258,79,0.019938502587602575],[116,259,64,0.16545973459010138],[116,259,65,0.15410475382808658],[116,259,66,0.1428070885038747],[116,259,67,0.1315735843547109],[116,259,68,0.12045334499476273],[116,259,69,0.1095204831958226],[116,259,70,0.09883564209535407],[116,259,71,0.08844562703718693],[116,259,72,0.07838398677373087],[116,259,73,0.06867168126061225],[116,259,74,0.0593178352751024],[116,259,75,0.05032057695725509],[116,259,76,0.041667960246527684],[116,259,77,0.03333897006865965],[116,259,78,0.02530460902186596],[116,259,79,0.017529064216060042],[116,260,64,0.1644557864679488],[116,260,65,0.1531233060832633],[116,260,66,0.14182872639969085],[116,260,67,0.13057236845705406],[116,260,68,0.11940154696020354],[116,260,69,0.10839230135354733],[116,260,70,0.0976080365569703],[116,260,71,0.08709896150373073],[116,260,72,0.07690254307836046],[116,260,73,0.06704405049755664],[116,260,74,0.0575371895107295],[116,260,75,0.048384825655796895],[116,260,76,0.03957979567047755],[116,260,77,0.031105806031557152],[116,260,78,0.022938417478579654],[116,260,79,0.015046114272247047],[116,261,64,0.16339565411437368],[116,261,65,0.15209137834969313],[116,261,66,0.14080655470300105],[116,261,67,0.12953486653578022],[116,261,68,0.1183213945073659],[116,261,69,0.10724346653446064],[116,261,70,0.09636667417108344],[116,261,71,0.0857441282381854],[116,261,72,0.07541678934900117],[116,261,73,0.06541389163066696],[116,261,74,0.055753459159188515],[116,261,75,0.04644291447695785],[116,261,76,0.037479778419260645],[116,261,77,0.028852460340402574],[116,261,78,0.020541137705450532],[116,261,79,0.012518723898188809],[116,262,64,0.1622762964879752],[116,262,65,0.15100811608730724],[116,262,66,0.13974225177132443],[116,262,67,0.1284656984692104],[116,262,68,0.11722079245989249],[116,262,69,0.1060853597813206],[116,262,70,0.09512645915816166],[116,262,71,0.08439946879148165],[116,262,72,0.07394829871692868],[116,262,73,0.06380569780769514],[116,262,74,0.05399365507376751],[116,262,75,0.04452389475648546],[116,262,76,0.035398464569404195],[116,262,77,0.02661041629475007],[116,262,78,0.01814457781355957],[116,262,79,0.009978415524977037],[116,263,64,0.1610969258473085],[116,263,65,0.14987442388885872],[116,263,66,0.13863867368103666],[116,263,67,0.1273700220719801],[116,263,68,0.11610752754512897],[116,263,69,0.10492861806295475],[116,263,70,0.09390099642479408],[116,263,71,0.08308157559942407],[116,263,72,0.07251657945147576],[116,263,73,0.062241738112674035],[116,263,74,0.052282577776902865],[116,263,75,0.04265480454348075],[116,263,76,0.03336478178220393],[116,263,77,0.02441010034851216],[116,263,78,0.01578024084170384],[116,263,79,0.00745732697156396],[116,264,64,0.15985920993355202],[116,264,65,0.1486932016473266],[116,264,66,0.13750011694255107],[116,264,67,0.12625380415083395],[116,264,68,0.11498952247460026],[116,264,69,0.10378334272918371],[116,264,70,0.09270272383998454],[116,264,71,0.08180531688555234],[116,264,72,0.07113896179672535],[116,264,73,0.060741777170426205],[116,264,74,0.05064234309701917],[116,264,75,0.04085997674603464],[116,264,76,0.03140510030407012],[116,264,77,0.02227970071256493],[116,264,78,0.013477880516015823],[116,264,79,0.004986499001122982],[116,265,64,0.15754825606065506],[116,265,65,0.14746992892841745],[116,265,66,0.13633292595860189],[116,265,67,0.125124430488064],[116,265,68,0.11387542097866374],[116,265,69,0.10265962870132764],[116,265,70,0.09154335277716241],[116,265,71,0.08058415518286266],[116,265,72,0.06983076174844402],[116,265,73,0.05932305318765322],[116,265,74,0.049092146171980655],[116,265,75,0.03916056430835921],[116,265,76,0.02954249873217662],[116,265,77,0.020244157882864083],[116,265,78,0.011264205893097576],[116,265,79,0.0036361547140942776],[116,266,64,0.15428412778458722],[116,266,65,0.1455316359135404],[116,266,66,0.13514644714723448],[116,266,67,0.12399165654571721],[116,266,68,0.11277550547511304],[116,266,69,0.10156841598575343],[116,266,70,0.09043461844260318],[116,266,71,0.07943076095701246],[116,266,72,0.06860572324649854],[116,266,73,0.0580005159300225],[116,266,74,0.047648265374077695],[116,266,75,0.03757428406003421],[116,266,76,0.02779622629992462],[116,266,77,0.0183243289878866],[116,266,78,0.01174871785455016],[116,266,79,0.009507999023522227],[116,267,64,0.15082178939318475],[116,267,65,0.1420109237058184],[116,267,66,0.1333112225841378],[116,267,67,0.12286890021581003],[116,267,68,0.11170294860121147],[116,267,69,0.1005226646659205],[116,267,70,0.08938934109740938],[116,267,71,0.07835792241833972],[116,267,72,0.06747673988027583],[116,267,73,0.05678732577339121],[116,267,74,0.04632430736519401],[116,267,75,0.03611538054492941],[116,267,76,0.02618136311480952],[116,267,77,0.020843291489775186],[116,267,78,0.01822806493782119],[116,267,79,0.015682274332250196],[116,268,64,0.14714974254821064],[116,268,65,0.13827046061757675],[116,268,66,0.12951581256013947],[116,268,67,0.12094203228220027],[116,268,68,0.11067539942174724],[116,268,69,0.09953885412910102],[116,268,70,0.08842279889861937],[116,268,71,0.07737975224573257],[116,268,72,0.06645685685680436],[116,268,73,0.0556956146347841],[116,268,74,0.04513169417200692],[116,268,75,0.03479481083043032],[116,268,76,0.030906570111750135],[116,268,77,0.02793426928785324],[116,268,78,0.025015857058057575],[116,268,79,0.022156084081198762],[116,269,64,0.14324887996101557],[116,269,65,0.1342913201606213],[116,269,66,0.12547127935931193],[116,269,67,0.11684940691526224],[116,269,68,0.10842382722466339],[116,269,69,0.09863880691644748],[116,269,70,0.08755441273434916],[116,269,71,0.0765131916110343],[116,269,72,0.06556055366232133],[116,269,73,0.05473750928385325],[116,269,74,0.04515908813662121],[116,269,75,0.041874631472617455],[116,269,76,0.038591163722175345],[116,269,77,0.035328325601263054],[116,269,78,0.03210075447892508],[116,269,79,0.028918135257038576],[116,270,64,0.139090165729467],[116,270,65,0.13004492110521668],[116,270,66,0.12115021434495954],[116,270,67,0.11247046054387635],[116,270,68,0.10400957466128799],[116,270,69,0.09572796819753596],[116,270,70,0.08680974310675736],[116,270,71,0.07577981158686556],[116,270,72,0.06480530755643697],[116,270,73,0.057118327805491254],[116,270,74,0.053647404765605006],[116,270,75,0.05012125104980307],[116,270,76,0.046567121984187],[116,270,77,0.04300821451394458],[116,270,78,0.039463535494592444],[116,270,79,0.03594782458419417],[116,271,64,0.13466087261825546],[116,271,65,0.1255192526859247],[116,271,66,0.11654194059718617],[116,271,67,0.10779645213752795],[116,271,68,0.09929248786630895],[116,271,69,0.09099762387572002],[116,271,70,0.0828789152027896],[116,271,71,0.07490434797640191],[116,271,72,0.06965165530809185],[116,271,73,0.06609108541104429],[116,271,74,0.06240908596510981],[116,271,75,0.05863829617172664],[116,271,76,0.054808590491746675],[116,271,77,0.050946777457001866],[116,271,78,0.04707634398178589],[116,271,79,0.04321724533412694],[116,272,64,0.1300502515181327],[116,272,65,0.1208046193787914],[116,272,66,0.11173732492688378],[116,272,67,0.10291821104155321],[116,272,68,0.09436260973722266],[116,272,69,0.08604559351796033],[116,272,70,0.07812517121110195],[116,272,71,0.0778810746088272],[116,272,72,0.07757910144345673],[116,272,73,0.07525760645771815],[116,272,74,0.07137061117948515],[116,272,75,0.06736028324352664],[116,272,76,0.06325900658504312],[116,272,77,0.05909712617018113],[116,272,78,0.05490256787187977],[116,272,79,0.05070049480670694],[116,273,64,0.12536374332701714],[116,273,65,0.11600786272531034],[116,273,66,0.10684392706418093],[116,273,67,0.09794323120563245],[116,273,68,0.08932643396272198],[116,273,69,0.08360635099750416],[116,273,70,0.08326526852169493],[116,273,71,0.0829352417925924],[116,273,72,0.0825894007063688],[116,273,73,0.08219994499754894],[116,273,74,0.08044762281522913],[116,273,75,0.07621221908101802],[116,273,76,0.07185369364298275],[116,273,77,0.06740569064685978],[116,273,78,0.06290034976911521],[116,273,79,0.058367833252363784],[116,274,64,0.12069483144370806],[116,274,65,0.11122414811767965],[116,274,66,0.10195803115278483],[116,274,67,0.09296829141312511],[116,274,68,0.08946808616223403],[116,274,69,0.08891856314466552],[116,274,70,0.08843754793438038],[116,274,71,0.08800441393019427],[116,274,72,0.08759555626811154],[116,274,73,0.08718505461546167],[116,274,74,0.08674532021160623],[116,274,75,0.08512021495919572],[116,274,76,0.08052733897480843],[116,274,77,0.07581650058310913],[116,274,78,0.07102367220114328],[116,274,79,0.06618363357965973],[116,275,64,0.11612575616594004],[116,275,65,0.10653761028689791],[116,275,66,0.0971652121196644],[116,275,67,0.09591848326972864],[116,275,68,0.09507599039521751],[116,275,69,0.09434172048589476],[116,275,70,0.09370487158491672],[116,275,71,0.09314959102646858],[116,275,72,0.09265569658936712],[116,275,73,0.0921993922171318],[116,275,74,0.09175397734968677],[116,275,75,0.09129054893294689],[116,275,76,0.08921443212705668],[116,275,77,0.08427168541059168],[116,275,78,0.0792229066315597],[116,275,79,0.07410696614243008],[116,276,64,0.11172806872314023],[116,276,65,0.10437851416250989],[116,276,66,0.10310240435323968],[116,276,67,0.1019196254449111],[116,276,68,0.10086136650096753],[116,276,69,0.09993033094967008],[116,276,70,0.09912171396507759],[116,276,71,0.09842440839844357],[116,276,72,0.09782175771560794],[116,276,73,0.09729231233631616],[116,276,74,0.09681058835620329],[116,276,75,0.09634782763851153],[116,276,76,0.0958727582741217],[116,276,77,0.09271214860274572],[116,276,78,0.08744553729212196],[116,276,79,0.08209235877373322],[116,277,64,0.11261864691240962],[116,277,65,0.11107370955838423],[116,277,66,0.10956198702370279],[116,277,67,0.10814874011310872],[116,277,68,0.10686814856689948],[116,277,69,0.10572960251488477],[116,277,70,0.10473400137998333],[116,277,71,0.10387486435445184],[116,277,72,0.10313910209120788],[116,277,73,0.10250779984977151],[116,277,74,0.10195701103006931],[116,277,75,0.10145856001995335],[116,277,76,0.10098085328063447],[116,277,77,0.10048969759853804],[116,277,78,0.09563705959973609],[116,277,79,0.09009073170841045],[116,278,64,0.11981035954020942],[116,278,65,0.11802706310376591],[116,278,66,0.11628212704916618],[116,278,67,0.11463772604636484],[116,278,68,0.11313027233193965],[116,278,69,0.1117752254248632],[116,278,70,0.11057878156623144],[116,278,71,0.10953887731492153],[116,278,72,0.10864596611057485],[116,278,73,0.10788381341098799],[116,278,74,0.10723030930854041],[116,278,75,0.10665829751048797],[116,278,76,0.10613641955428182],[116,278,77,0.10562997312187997],[116,278,78,0.10374205281015167],[116,278,79,0.09805050693251158],[116,279,64,0.12727003397102526],[116,279,65,0.12525542403035156],[116,279,66,0.12328194384148113],[116,279,67,0.1214079810627043],[116,279,68,0.11967139769975026],[116,279,69,0.11809298456150866],[116,279,70,0.11668372288658982],[116,279,71,0.11544567192385093],[116,279,72,0.11437273609083264],[116,279,73,0.11345145677036428],[116,279,74,0.11266182764156456],[116,279,75,0.11197813241077118],[116,279,76,0.11136980378363551],[116,279,77,0.11080230250212528],[116,279,78,0.11023801525998843],[116,279,79,0.10591889141157869],[116,280,64,0.13500156531155427],[116,280,65,0.1327648888460651],[116,280,66,0.13056971019348407],[116,280,67,0.12847005871921816],[116,280,68,0.12650446132467266],[116,280,69,0.12469820144325712],[116,280,70,0.12306644268300188],[116,280,71,0.12161499385488497],[116,280,72,0.12034105249416588],[116,280,73,0.11923397793428217],[116,280,74,0.11827609284205247],[116,280,75,0.11744351208302799],[116,280,76,0.1167069977524621],[116,280,77,0.11603283918093873],[116,280,78,0.11538375670481915],[116,280,79,0.11364333358056303],[116,281,64,0.14299801212934482],[116,281,65,0.1405504671250643],[116,281,66,0.13814243321293587],[116,281,67,0.1358231549166745],[116,281,68,0.1336310587899568],[116,281,69,0.13159500546801134],[116,281,70,0.1297336645164706],[116,281,71,0.1280561531516912],[116,281,72,0.1265627423524987],[116,281,73,0.12524559622881645],[116,281,74,0.1240895435894026],[116,281,75,0.12307288060365029],[116,281,76,0.1221682034116099],[116,281,77,0.12134326950254606],[116,281,78,0.12056188665606592],[116,281,79,0.11978482822173399],[116,282,64,0.1495120072924152],[116,282,65,0.14439702176335556],[116,282,66,0.14016331332712012],[116,282,67,0.1368214220379576],[116,282,68,0.13435952566562018],[116,282,69,0.13274115906618356],[116,282,70,0.13190308994949435],[116,282,71,0.131756268488279],[116,282,72,0.13218305688448181],[116,282,73,0.13149015742874925],[116,282,74,0.13010908784756262],[116,282,75,0.12887614823355936],[116,282,76,0.12776622573316493],[116,282,77,0.12674914149490646],[116,282,78,0.12579050479328477],[116,282,79,0.1248525961976339],[116,283,64,0.15012240577362107],[116,283,65,0.1449298814196842],[116,283,66,0.14063668160947224],[116,283,67,0.13725389098542723],[116,283,68,0.13476959658200996],[116,283,69,0.1331465059654105],[116,283,70,0.13231971765009728],[116,283,71,0.13219758410891855],[116,283,72,0.13265882102385404],[116,283,73,0.13355411625844932],[116,283,74,0.13477431899792613],[116,283,75,0.13485298912057422],[116,283,76,0.1335046938453687],[116,283,77,0.13225802204298792],[116,283,78,0.13108103814176045],[116,283,79,0.12993828293144974],[116,284,64,0.15099499328910265],[116,284,65,0.1457226866774597],[116,284,66,0.14136581902722906],[116,284,67,0.1379361599413343],[116,284,68,0.13542189519596579],[116,284,69,0.13378514558644883],[116,284,70,0.1329596337592411],[116,284,71,0.13285146219889557],[116,284,72,0.13333610359452436],[116,284,73,0.13426018335949258],[116,284,74,0.13551247949725143],[116,284,75,0.13702319950682754],[116,284,76,0.13873362163483888],[116,284,77,0.13786748304924468],[116,284,78,0.13643617697415195],[116,284,79,0.1350496649547942],[116,285,64,0.1521192629910989],[116,285,65,0.14676575119466495],[116,285,66,0.1423417744154059],[116,285,67,0.13885992209871864],[116,285,68,0.13630866531718086],[116,285,69,0.13464977864804573],[116,285,70,0.13381590559041773],[116,285,71,0.13371125351331206],[116,285,72,0.13420846700633313],[116,285,73,0.13515055151664188],[116,285,74,0.1364243908121666],[116,285,75,0.13795955272482946],[116,285,76,0.1396966778427965],[116,285,77,0.14158497388417662],[116,285,78,0.14184764059411625],[116,285,79,0.14018487420245543],[116,286,64,0.1534829998722116],[116,286,65,0.1480476929225918],[116,286,66,0.14355392717901075],[116,286,67,0.14001524028119955],[116,286,68,0.13742057084154555],[116,286,69,0.1357315860547736],[116,286,70,0.1348801482614867],[116,286,71,0.13476892923915929],[116,286,72,0.13526816883323967],[116,286,73,0.13621770738066455],[116,286,74,0.1375027238651613],[116,286,75,0.13905217572253664],[116,286,76,0.14080609129006763],[116,286,77,0.142712981412559],[116,286,78,0.1447277197464233],[116,286,79,0.14532995881741279],[116,287,64,0.15507240818084558],[116,287,65,0.1495555509995371],[116,287,66,0.1449900941598393],[116,287,67,0.14139064437548582],[116,287,68,0.13874678442332503],[116,287,69,0.1370203095440266],[116,287,70,0.1361425980888572],[116,287,71,0.13601514791820765],[116,287,72,0.13650622302329438],[116,287,73,0.13745296272917884],[116,287,74,0.13873904189903308],[116,287,75,0.14029284747206539],[116,287,76,0.14205383098031504],[116,287,77,0.14396983533964125],[116,287,78,0.14599489568044835],[116,287,79,0.1480871569605263],[116,288,64,0.15687226483528693],[116,288,65,0.15127492936174997],[116,288,66,0.1466366638824698],[116,288,67,0.14297325674612243],[116,288,68,0.14027510467274856],[116,288,69,0.13850436134225907],[116,288,70,0.13759221541747238],[116,288,71,0.13743935217878417],[116,288,72,0.13791249124273477],[116,288,73,0.13884654107963654],[116,288,74,0.14012388291813593],[116,288,75,0.14167238344157967],[116,288,76,0.14343096261599142],[116,288,77,0.14534683397481857],[116,288,78,0.14737322245656315],[116,288,79,0.14946719458517396],[116,289,64,0.15886609883656383],[116,289,65,0.1531901670717758],[116,289,66,0.1484787581796069],[116,289,67,0.14474894563261972],[116,289,68,0.1419921018791635],[116,289,69,0.1401709628306197],[116,289,70,0.13921681688675155],[116,289,71,0.13902989527658927],[116,289,72,0.13947580435435364],[116,289,73,0.14038769472002297],[116,289,74,0.14164687278297938],[116,289,75,0.14318074514832718],[116,289,76,0.14492775489403076],[116,289,77,0.14683453402556806],[116,289,78,0.1488535352029901],[116,289,79,0.15094077118332486],[116,290,64,0.16103639667997838],[116,290,65,0.155284535364086],[116,290,66,0.1505004211966599],[116,290,67,0.14670250652885092],[116,290,68,0.14388329225963586],[116,290,69,0.14200631221985946],[116,290,70,0.141003237132368],[116,290,71,0.1407741974444338],[116,290,72,0.14118411403002332],[116,290,73,0.1420648521571554],[116,290,74,0.1432968689580578],[116,290,75,0.14480718054150554],[116,290,76,0.14653381674019372],[116,290,77,0.1484228847861641],[116,290,78,0.15042611223134436],[116,290,79,0.1524984927833977],[116,291,64,0.16336483376530345],[116,291,65,0.15754046140798617],[116,291,66,0.1526848357755503],[116,291,67,0.14881787154471424],[116,291,68,0.1459333407329943],[116,291,69,0.1439957812345144],[116,291,70,0.14293751992386272],[116,291,71,0.14265893205089364],[116,291,72,0.14302467449737188],[116,291,73,0.14386579598257704],[116,291,74,0.1450621349129088],[116,291,75,0.14654039521495654],[116,291,76,0.1482382654820673],[116,291,77,0.15010139329988714],[116,291,78,0.15208083710111264],[116,291,79,0.1541306159794475],[116,292,64,0.16583253180574944],[116,292,65,0.159939778787908],[116,292,66,0.15501456721785375],[116,292,67,0.15107834675016357],[116,292,68,0.14812629221942308],[116,292,69,0.14612414080646619],[116,292,70,0.14500513873819684],[116,292,71,0.14467024156798858],[116,292,72,0.14498425442071777],[116,292,73,0.14577787115615312],[116,292,74,0.14693054517650608],[116,292,75,0.1483687544497947],[116,292,76,0.15002992596082448],[116,292,77,0.151859320494833],[116,292,78,0.15380739161487328],[116,292,79,0.1558272375037468],[116,293,64,0.1684203422355981],[116,293,65,0.16246400470098407],[116,293,66,0.15747183442717355],[116,293,67,0.1534668775015049],[116,293,68,0.15044583146549947],[116,293,69,0.14837581577777642],[116,293,70,0.1471912467691407],[116,293,71,0.14679398334777832],[116,293,72,0.14704937891615716],[116,293,73,0.14778822370726277],[116,293,74,0.1488898210448806],[116,293,75,0.150280516086863],[116,293,76,0.1518975605816375],[116,293,77,0.15368590829321524],[116,293,78,0.15559547974415017],[116,293,79,0.1575785146081934],[116,294,64,0.17110915561650394],[116,294,65,0.16509464387190143],[116,294,66,0.16003880843074522],[116,294,67,0.15596634174995735],[116,294,68,0.15287557139467473],[116,294,69,0.150735168612795],[116,294,70,0.1494809563724971],[116,294,71,0.1490160052078777],[116,294,72,0.14920660170080405],[116,294,73,0.1498840698535873],[116,294,74,0.1509277969419709],[116,294,75,0.15226409422901732],[116,294,76,0.1538301303027439],[116,294,77,0.1555706376941602],[116,294,78,0.15743508248589907],[116,294,79,0.15937491625454758],[116,295,64,0.17388023704258287],[116,295,65,0.1678135191851592],[116,295,66,0.16269793828039358],[116,295,67,0.15855987133260332],[116,295,68,0.15539936998332496],[116,295,69,0.15318681211966684],[116,295,70,0.15185964794728493],[116,295,71,0.15132245082601475],[116,295,72,0.1514428073763096],[116,295,73,0.15205299553762075],[116,295,74,0.15303271743382843],[116,295,75,0.15430835377336538],[116,295,76,0.15581708656329424],[116,295,77,0.15750351783012503],[116,295,78,0.15931674364975656],[116,295,79,0.16120750511362564],[116,296,64,0.17671558754410183],[116,296,65,0.1706031290345391],[116,296,66,0.1654323043326541],[116,296,67,0.16123120124553494],[116,296,68,0.15800167566217546],[116,296,69,0.15571595118104198],[116,296,70,0.154313308252688],[116,296,71,0.15370009494343773],[116,296,72,0.1537455438464624],[116,296,73,0.1542832863807055],[116,296,74,0.1551935648959805],[116,296,75,0.15640293577326186],[116,296,76,0.1578486941497814],[116,296,77,0.15947540599673496],[116,296,78,0.16123188657585044],[116,296,79,0.16306825037324918],[116,297,64,0.17959833148997373],[116,297,65,0.1734470313899974],[116,297,66,0.16822599890826515],[116,297,67,0.16396504689940744],[116,297,68,0.16066790124331365],[116,297,69,0.1583087534942044],[116,297,70,0.15682889816098344],[116,297,71,0.15613670837738383],[116,297,72,0.1561033848690884],[116,297,73,0.15656428805480985],[116,297,74,0.1574004178341681],[116,297,75,0.15853861363027905],[116,297,76,0.1599163850012708],[116,297,77,0.16147835865626364],[116,297,78,0.163173161783391],[116,297,79,0.16495037135517215],[116,298,64,0.18251312998886327],[116,298,65,0.17633025458177962],[116,298,66,0.17106453433083385],[116,298,67,0.16674750935719962],[116,298,68,0.16338482637258567],[116,298,69,0.16095274932041362],[116,298,70,0.1593947498462447],[116,298,71,0.15862145284240717],[116,298,72,0.15850632274204143],[116,298,73,0.15888679707184117],[116,298,74,0.15964483985825154],[116,298,75,0.16070768011594286],[116,298,76,0.16201314295322186],[116,298,77,0.16350601341454302],[116,298,78,0.16513482554983444],[116,298,79,0.16684871194077205],[116,299,64,0.18544662028903397],[116,299,65,0.17923973480189248],[116,299,66,0.17393527834480865],[116,299,67,0.1695665085543161],[116,299,68,0.1661410285075169],[116,299,69,0.16363726024359945],[116,299,70,0.16200099340895885],[116,299,71,0.16114530558070317],[116,299,72,0.1609461911234274],[116,299,73,0.16124348199063449],[116,299,74,0.16192029930942414],[116,299,75,0.1629043652233786],[116,299,76,0.1641339194200449],[116,299,77,0.1655540019714503],[116,299,78,0.1671131494207615],[116,299,79,0.16876014580565396],[116,300,64,0.18838788117693483],[116,300,65,0.18216478032292815],[116,300,66,0.1768279169127552],[116,300,67,0.1724122445010262],[116,300,68,0.16892734242074725],[116,300,69,0.16635385693840135],[116,300,70,0.16464001293655123],[116,300,71,0.16370151380142378],[116,300,72,0.16341711798605296],[116,300,73,0.16362933504160998],[116,300,74,0.16422261954072861],[116,300,75,0.16512528484885608],[116,300,76,0.1662760800163834],[116,300,77,0.16762039404495832],[116,300,78,0.1691068606504617],[116,300,79,0.17068401246315362],[116,301,64,0.19132892437440924],[116,301,65,0.18509756243412512],[116,301,66,0.1797349443918188],[116,301,67,0.17527768646712516],[116,301,68,0.17173734822886655],[116,301,69,0.16909684594743812],[116,301,70,0.16730693199969984],[116,301,71,0.1662860789288655],[116,301,72,0.16591600870598125],[116,301,73,0.16604215416898044],[116,301,74,0.16655045985075434],[116,301,75,0.16736992030311715],[116,301,76,0.16843988211700373],[116,301,77,0.16970617226863494],[116,301,78,0.17111761357310515],[116,301,79,0.17262258411662246],[116,302,64,0.1942652119346568],[116,302,65,0.18803363309479756],[116,302,66,0.18265218108950468],[116,302,67,0.1781590901489468],[116,302,68,0.17456788794678402],[116,302,69,0.1718637854679398],[116,302,70,0.17000012858457497],[116,302,71,0.16889827065966698],[116,302,72,0.1684430592853322],[116,302,73,0.16848305549064768],[116,302,74,0.16890582707065763],[116,302,75,0.16964112865262432],[116,302,76,0.17062898335543264],[116,302,77,0.1718157380627296],[116,302,78,0.1731504919046433],[116,302,79,0.1745815633206379],[116,303,64,0.19719619963692087],[116,303,65,0.19097246930510114],[116,303,66,0.1855793181987469],[116,303,67,0.18105654281869898],[116,303,68,0.17741961056759634],[116,303,69,0.17465603014770897],[116,303,70,0.17272177946096923],[116,303,71,0.17154117082897818],[116,303,72,0.17100229970928987],[116,303,73,0.1709570161757474],[116,303,74,0.1712946178044622],[116,303,75,0.17194568389068937],[116,303,76,0.17285098106129948],[116,303,77,0.17395744847880387],[116,303,78,0.17521454197539282],[116,303,79,0.17657061145109032],[116,304,64,0.20012590637979677],[116,304,65,0.1939180441940373],[116,304,66,0.18852049011216407],[116,304,67,0.18397453645602088],[116,304,68,0.18029754566785977],[116,304,69,0.1774793048903153],[116,304,70,0.1754784339862226],[116,304,71,0.17422224708550949],[116,304,72,0.1736021674372228],[116,304,73,0.17347344773975312],[116,304,74,0.17372719132255224],[116,304,75,0.17429484893839386],[116,304,76,0.17511798263629663],[116,304,77,0.17614418401782161],[116,304,78,0.17732333689322013],[116,304,79,0.17860390798406622],[116,305,64,0.20306350957330602],[116,305,65,0.19687942482483534],[116,305,66,0.19148487411564366],[116,305,67,0.18692256886190284],[116,305,68,0.18321170553840216],[116,305,69,0.18034430766965923],[116,305,70,0.1782816173450772],[116,305,71,0.1769539563755933],[116,305,72,0.17625611102805322],[116,305,73,0.1760467997572698],[116,305,74,0.17621897310848714],[116,305,75,0.17670497847543054],[116,305,76,0.1774472068688867],[116,305,77,0.1783939474218249],[116,305,78,0.17949557163745125],[116,305,79,0.1807007405836517],[116,306,64,0.20602396652969976],[116,306,65,0.19987139671767779],[116,306,66,0.19448731746122028],[116,306,67,0.18991577275493482],[116,306,68,0.18617771584064413],[116,306,69,0.18326734135387457],[116,306,70,0.1811484632254336],[116,306,71,0.1797543782362293],[116,306,72,0.17898322389984297],[116,306,73,0.17869719399248957],[116,306,74,0.17879108905911098],[116,306,75,0.17919815260083874],[116,306,76,0.17986161618772828],[116,306,77,0.18073049343916836],[116,306,78,0.18175568908348064],[116,306,79,0.18288612599862883],[116,307,64,0.20902715331633825],[116,307,65,0.20291363354857725],[116,307,66,0.19754753081527038],[116,307,67,0.19297412592640034],[116,307,68,0.18921603571930384],[116,307,69,0.18626953758758696],[116,307,70,0.18410093614178966],[116,307,71,0.18264643142094988],[116,307,72,0.1818074526714844],[116,307,73,0.1814496238028483],[116,307,74,0.18146955732026915],[116,307,75,0.18180136413364145],[116,307,76,0.18238910372801198],[116,307,77,0.1831825208674544],[116,307,78,0.1841330828208564],[116,307,79,0.18519002975306062],[116,308,64,0.21206788175540636],[116,308,65,0.20600123705785908],[116,308,66,0.2006610227182847],[116,308,67,0.19609365201383397],[116,308,68,0.19232330130314768],[116,308,69,0.1893482292102029],[116,308,70,0.18713713448510427],[116,308,71,0.18562903121213947],[116,308,72,0.18472856135037843],[116,308,73,0.18430471483530356],[116,308,74,0.18425587910310287],[116,308,75,0.18451701210321164],[116,308,76,0.1850329922966401],[116,308,77,0.18575430211639066],[116,308,78,0.18663299760414667],[116,308,79,0.18761868652823466],[116,309,64,0.2151146754221913],[116,309,65,0.20910342614141011],[116,309,66,0.2037977080682567],[116,309,67,0.19924495487843466],[116,309,68,0.19547079241128104],[116,309,69,0.1924753553457173],[116,309,70,0.19022963931164982],[116,309,71,0.18867538607842838],[116,309,72,0.18772037842461406],[116,309,73,0.18723692298381267],[116,309,74,0.18712518536864198],[116,309,75,0.18732099301052785],[116,309,76,0.18777006486589806],[116,309,77,0.18842364710478854],[116,309,78,0.1892344209420619],[116,309,79,0.1901524143527674],[116,310,64,0.21813687836075596],[116,310,65,0.21219012011560226],[116,310,66,0.20692808607480903],[116,310,67,0.2023991114546018],[116,310,68,0.19863015628448516],[116,310,69,0.19562312292576595],[116,310,70,0.1933512060389282],[116,310,71,0.19175879132289553],[116,310,72,0.1907567369224805],[116,310,73,0.19022063031763756],[116,310,74,0.19005245623703554],[116,310,75,0.1901889743304009],[116,310,76,0.19057679426104324],[116,310,77,0.19116797041211692],[116,310,78,0.19191585511125844],[116,310,79,0.19277095118829632],[116,311,64,0.22110586701681997],[116,311,65,0.21523313735590285],[116,311,66,0.2100244293191616],[116,311,67,0.2055288549680383],[116,311,68,0.2017745885763943],[116,311,69,0.19876518878332755],[116,311,70,0.1964759505004999],[116,311,71,0.19485382127869982],[116,311,72,0.19381267401779625],[116,311,73,0.1932313521778274],[116,311,74,0.19301373414315],[116,311,75,0.19309761091367578],[116,311,76,0.19343055892621236],[116,311,77,0.19396550173703184],[116,311,78,0.19465651710189988],[116,311,79,0.18942936471745048],[116,312,64,0.22399515056214359],[116,312,65,0.21820629581093676],[116,312,66,0.21306088333541146],[116,312,67,0.20860867249774717],[116,312,68,0.20487892787707934],[116,312,69,0.20187675022002813],[116,312,70,0.19957943477676615],[116,312,71,0.19793640979951305],[116,312,72,0.19686450579379156],[116,312,73,0.19624580608184472],[116,312,74,0.19598618695891937],[116,312,75,0.1960246025532002],[116,312,76,0.19630969527517786],[116,312,77,0.19679533345880984],[116,312,78,0.19188542718087603],[116,312,79,0.18544521059301475],[116,313,64,0.2267806165083334],[116,313,65,0.22108552511530707],[116,313,66,0.21601344555796512],[116,313,67,0.21161465146602126],[116,313,68,0.20791937084975204],[116,313,69,0.20493413031514618],[116,313,70,0.2026381246498598],[116,313,71,0.2009831823098101],[116,313,72,0.1998890368435224],[116,313,73,0.19924100235763528],[116,313,74,0.1989470836221343],[116,313,75,0.1989475589740941],[116,313,76,0.19919225676657604],[116,313,77,0.19470770168014734],[116,313,78,0.18776631867199436],[116,313,79,0.18121591287498445],[116,314,64,0.22944023482576206],[116,314,65,0.2238485938799308],[116,314,66,0.21885971454072184],[116,314,67,0.21452424951218224],[116,314,68,0.21087326148439148],[116,314,69,0.20791458531812895],[116,314,70,0.20562921396445527],[116,314,71,0.20397129607317],[116,314,72,0.2028634155366801],[116,314,73,0.20219411369007267],[116,314,74,0.20187367740424397],[116,314,75,0.2018438963737473],[116,314,76,0.197800132307152],[116,314,77,0.19043000827273776],[116,314,78,0.18339825502348306],[116,314,79,0.17677437854318342],[116,315,64,0.231953789146921],[116,315,65,0.2264749766921581],[116,315,66,0.22157889026987523],[116,315,67,0.21731642531049994],[116,315,68,0.21371934932684006],[116,315,69,0.21079668694933335],[116,315,70,0.2085311274594407],[116,315,71,0.2068790598609909],[116,315,72,0.20576586672983452],[116,315,73,0.205083317024994],[116,315,74,0.20474415309652225],[116,315,75,0.20102219434694607],[116,315,76,0.1933186077677666],[116,315,77,0.18588621250158302],[116,315,78,0.17880593177405663],[116,315,79,0.17214811906498728],[116,316,64,0.23430296425582967],[116,316,65,0.22894595527030598],[116,316,66,0.2241518877730871],[116,316,67,0.2199717634069558],[116,316,68,0.21643792432998407],[116,316,69,0.21356046609940615],[116,316,70,0.21132367223194634],[116,316,71,0.20968609221858098],[116,316,72,0.2085758560338404],[116,316,73,0.20788796323747813],[116,316,74,0.20420218058315487],[116,316,75,0.19627579308836207],[116,316,76,0.18854297851726529],[116,316,77,0.18109315638338466],[116,316,78,0.17400768955242119],[116,316,79,0.16735700927789507],[116,317,64,0.23271881303045158],[116,317,65,0.23090322916049963],[116,317,66,0.22656145411694564],[116,317,67,0.22247259836400887],[116,317,68,0.21901094700273255],[116,317,69,0.216187547891247],[116,317,70,0.21398817670793296],[116,317,71,0.21237346346448277],[116,317,72,0.2112742341266178],[116,317,73,0.20715336645958296],[116,317,74,0.19912135349389307],[116,317,75,0.19119984528578038],[116,317,76,0.18348312453111087],[116,317,77,0.17606057944842646],[116,317,78,0.16901322452203252],[116,317,79,0.16241081553815964],[116,318,64,0.22992479249087483],[116,318,65,0.22819865157154004],[116,318,66,0.22663492579171904],[116,318,67,0.2248031414182802],[116,318,68,0.2214221814664908],[116,318,69,0.21866129003666554],[116,318,70,0.21650763328066203],[116,318,71,0.2149238417098473],[116,318,72,0.20969135249380666],[116,318,73,0.20166796663527883],[116,318,74,0.19367204026060666],[116,318,75,0.18579851657020793],[116,318,76,0.17814121488665463],[116,318,77,0.17078874901248106],[116,318,78,0.16382104923787705],[116,318,79,0.15730649119922072],[116,319,64,0.2270621948710227],[116,319,65,0.22541747792200334],[116,319,66,0.22392021770037907],[116,319,67,0.22254906292755555],[116,319,68,0.2213248706500031],[116,319,69,0.2202752589091388],[116,319,70,0.21886684461703912],[116,319,71,0.21165074337210132],[116,319,72,0.20373817665784635],[116,319,73,0.19577563162082195],[116,319,74,0.1878540785343437],[116,319,75,0.1800677015877197],[116,319,76,0.17250922029125387],[116,319,77,0.165265820835478],[116,319,78,0.15841570173840977],[116,319,79,0.15202523699836942],[117,-64,64,0.33887231276764945],[117,-64,65,0.34470547475119406],[117,-64,66,0.35064731280495925],[117,-64,67,0.35667853587399145],[117,-64,68,0.36280547668403035],[117,-64,69,0.36904810536169325],[117,-64,70,0.3754188568536438],[117,-64,71,0.38192248393421024],[117,-64,72,0.38855642400201434],[117,-64,73,0.3953112180075298],[117,-64,74,0.4021709822021189],[117,-64,75,0.4091139332807528],[117,-64,76,0.41611296737111114],[117,-64,77,0.42313629320206564],[117,-64,78,0.430148119665072],[117,-64,79,0.43710939786432],[117,-63,64,0.3404946806580727],[117,-63,65,0.3464348622705676],[117,-63,66,0.35248833088212805],[117,-63,67,0.3586368269815065],[117,-63,68,0.36488623673399134],[117,-63,69,0.37125482935367526],[117,-63,70,0.3777531946868765],[117,-63,71,0.38438418923052803],[117,-63,72,0.3911433663913029],[117,-63,73,0.398019453469483],[117,-63,74,0.40499487585938004],[117,-63,75,0.41204632884502834],[117,-63,76,0.419145397256793],[117,-63,77,0.42625922314241854],[117,-63,78,0.4333512214952015],[117,-63,79,0.44038184397391433],[117,-62,64,0.34229176038061926],[117,-62,65,0.3483260541866147],[117,-62,66,0.3544766760824053],[117,-62,67,0.3607267121061648],[117,-62,68,0.36708154064580956],[117,-62,69,0.37355748493943447],[117,-62,70,0.3801631998036529],[117,-62,71,0.38689969377634287],[117,-62,72,0.39376079918043044],[117,-62,73,0.40073368461692394],[117,-62,74,0.4077994102328225],[117,-62,75,0.4149335260017931],[117,-62,76,0.4221067131486475],[117,-62,77,0.4292854687435069],[117,-62,78,0.43643283338843236],[117,-62,79,0.44350916181961025],[117,-61,64,0.3442491042144709],[117,-61,65,0.350364625600628],[117,-61,66,0.3565979217755098],[117,-61,67,0.3629336957856991],[117,-61,68,0.36937677760722176],[117,-61,69,0.37594135699928016],[117,-61,70,0.38263410948884335],[117,-61,71,0.3894542779933904],[117,-61,72,0.3963941603201662],[117,-61,73,0.40343963586379544],[117,-61,74,0.4105707317503064],[117,-61,75,0.4177622285732726],[117,-61,76,0.4249843057667889],[117,-61,77,0.4322032265611932],[117,-61,78,0.4393820623710958],[117,-61,79,0.4464814563727092],[117,-60,64,0.3463487360230896],[117,-60,65,0.35253295393305734],[117,-60,66,0.3588348233001723],[117,-60,67,0.3652408820058479],[117,-60,68,0.37175538667640656],[117,-60,69,0.3783902612926971],[117,-60,70,0.385150197658682],[117,-60,71,0.3920327807777485],[117,-60,72,0.3990289734770922],[117,-60,73,0.406123637964648],[117,-60,74,0.4132960945120004],[117,-60,75,0.4205207173596546],[117,-60,76,0.427767567845569],[117,-60,77,0.4350030646647162],[117,-60,78,0.44219069107692327],[117,-60,79,0.449291738793605],[117,-59,64,0.3485701578033836],[117,-59,65,0.3548112574935692],[117,-59,66,0.36116838952311664],[117,-59,67,0.3676300795379659],[117,-59,68,0.3741999940835432],[117,-59,69,0.3808877078538666],[117,-59,70,0.38769595492783776],[117,-59,71,0.394620783829344],[117,-59,72,0.40165202180892484],[117,-59,73,0.408773774597226],[117,-59,74,0.4159649618045478],[117,-59,75,0.42319988804893555],[117,-59,76,0.4304488498049324],[117,-59,77,0.4376787778770704],[117,-59,78,0.4448539153166678],[117,-59,79,0.4519365305187645],[117,-58,64,0.35089154862509897],[117,-58,65,0.3571788262663147],[117,-58,66,0.3635791457289809],[117,-58,67,0.37008309704537445],[117,-58,68,0.37669373778863513],[117,-58,69,0.38341824774748734],[117,-58,70,0.3902574464303732],[117,-58,71,0.3972059661962366],[117,-58,72,0.40425268235749556],[117,-58,73,0.41138117787107426],[117,-58,74,0.41857024279898664],[117,-58,75,0.42579440863324197],[117,-58,76,0.4330245174944103],[117,-58,77,0.440228326129807],[117,-58,78,0.4473711445561563],[117,-58,79,0.45441650911400255],[117,-57,64,0.3532911557945602],[117,-57,65,0.3596154447343551],[117,-57,66,0.3660485876706847],[117,-57,67,0.3725832278088696],[117,-57,68,0.3792217791803895],[117,-57,69,0.38596900311521404],[117,-57,70,0.39282384737976966],[117,-57,71,0.39977962908168563],[117,-57,72,0.406824421177101],[117,-57,73,0.4139414729555934],[117,-57,74,0.42110966470684563],[117,-57,75,0.42830399669165314],[117,-57,76,0.43549611245930664],[117,-57,77,0.44265485647451613],[117,-57,78,0.449746865940108],[117,-57,79,0.4567371966279042],[117,-56,64,0.3557453043228355],[117,-56,65,0.36209899220278513],[117,-56,66,0.36855636836987987],[117,-56,67,0.375112020306957],[117,-56,68,0.3817676557039031],[117,-56,69,0.38852560435808436],[117,-56,70,0.3953829746725691],[117,-56,71,0.4023318413044219],[117,-56,72,0.4093595830276098],[117,-56,73,0.4164492539282614],[117,-56,74,0.42357998816419784],[117,-56,75,0.43072743844458267],[117,-56,76,0.4378642483100468],[117,-56,77,0.44496055821945607],[117,-56,78,0.45198454537681954],[117,-56,79,0.4589029971618677],[117,-55,64,0.35820760782082656],[117,-55,65,0.36458186940320325],[117,-55,66,0.371053908983747],[117,-55,67,0.37762005957168526],[117,-55,68,0.384281249197181],[117,-55,69,0.39103742183473583],[117,-55,70,0.3978839330640511],[117,-55,71,0.4048117345464626],[117,-55,72,0.4118076572155994],[117,-55,73,0.4188547273149671],[117,-55,74,0.4259325155516058],[117,-55,75,0.4330175195643021],[117,-55,76,0.4400835798342999],[117,-55,77,0.4471023290967518],[117,-55,78,0.45404367524251715],[117,-55,79,0.46087631763346726],[117,-54,64,0.3606258490690862],[117,-54,65,0.3670097253515986],[117,-54,66,0.373484960737089],[117,-54,67,0.3800493620930952],[117,-54,68,0.3867030060114178],[117,-54,69,0.3934435707750283],[117,-54,70,0.4002648209927892],[117,-54,71,0.4071567760691034],[117,-54,72,0.41410592981145344],[117,-54,73,0.42109550294205433],[117,-54,74,0.42810572883832404],[117,-54,75,0.4351141727610399],[117,-54,76,0.44209608476278683],[117,-54,77,0.44902478640329657],[117,-54,78,0.4558720913327759],[117,-54,79,0.46260875974040494],[117,-53,64,0.36295441581021903],[117,-53,65,0.3693353331893173],[117,-53,66,0.3758009235006089],[117,-53,67,0.38235013803179724],[117,-53,68,0.3889821326963442],[117,-53,69,0.39569250104949794],[117,-53,70,0.4024736380000108],[117,-53,71,0.40931487566640434],[117,-53,72,0.4162026284086018],[117,-53,73,0.42312057167773803],[117,-53,74,0.4300498550889216],[117,-53,75,0.43696935005970156],[117,-53,76,0.4438559322938125],[117,-53,77,0.45068479932615135],[117,-53,78,0.4574298232811082],[117,-53,79,0.464063938933436],[117,-52,64,0.3651546065396171],[117,-52,65,0.37151886061010775],[117,-52,66,0.37796107759186404],[117,-52,67,0.3844809812834029],[117,-52,68,0.3910767416420802],[117,-52,69,0.39774209655811216],[117,-52,70,0.4044683371157607],[117,-52,71,0.4112443915321213],[117,-52,72,0.4180568832740325],[117,-52,73,0.42489022501426044],[117,-52,74,0.4317267489401499],[117,-52,75,0.4385468738682729],[117,-52,76,0.44532930955690536],[117,-52,77,0.45205129854514764],[117,-52,78,0.4586888957834441],[117,-52,79,0.46521728625625614],[117,-51,64,0.3671949970095522],[117,-51,65,0.3735281938721503],[117,-51,66,0.37993286176977037],[117,-51,67,0.38640909790172484],[117,-51,68,0.3929540267700616],[117,-51,69,0.39955979602003794],[117,-51,70,0.40621688984445],[117,-51,71,0.4129141399868642],[117,-51,72,0.41963868391639947],[117,-51,73,0.4263759621615847],[117,-51,74,0.43310975545501107],[117,-51,75,0.4398222622813925],[117,-51,76,0.4464942173594426],[117,-51,77,0.4531050515234227],[117,-51,78,0.45963309340363395],[117,-51,79,0.4660558132376664],[117,-50,64,0.3690519260764801],[117,-50,65,0.37533938101447384],[117,-50,66,0.3816922700668931],[117,-50,67,0.3881106525692378],[117,-50,68,0.39459055596512377],[117,-50,69,0.4011228286725152],[117,-50,70,0.40769746370168736],[117,-50,71,0.41430351488210737],[117,-50,72,0.42092894195807323],[117,-50,73,0.4275604996006075],[117,-50,74,0.43418367115599255],[117,-50,75,0.4407826478906678],[117,-50,76,0.447340354427204],[117,-50,77,0.45383852099752164],[117,-50,78,0.46025780306785774],[117,-50,79,0.46657794881635206],[117,-49,64,0.36898147013357785],[117,-49,65,0.3758110799970617],[117,-49,66,0.38271995611870474],[117,-49,67,0.38956860115970277],[117,-49,68,0.39597074718487457],[117,-49,69,0.40241736564205477],[117,-49,70,0.4088982685261291],[117,-49,71,0.4154030351352873],[117,-49,72,0.4219207321621534],[117,-49,73,0.42843968390468096],[117,-49,74,0.434947293612644],[117,-49,75,0.44142991692103073],[117,-49,76,0.4478727882514013],[117,-49,77,0.4542600009871744],[117,-49,78,0.460574542149373],[117,-49,79,0.4667983822168282],[117,-48,64,0.36893134093295504],[117,-48,65,0.3757981962898861],[117,-48,66,0.3827522432375962],[117,-48,67,0.38977682041117045],[117,-48,68,0.39685843679843497],[117,-48,69,0.40343417871580944],[117,-48,70,0.40981503983030815],[117,-48,71,0.41621364838002656],[117,-48,72,0.42262037321481616],[117,-48,73,0.42902526821585674],[117,-48,74,0.4354177761381822],[117,-48,75,0.44178649226427985],[117,-48,76,0.4481189889473665],[117,-48,77,0.4544017020391271],[117,-48,78,0.46061988010728994],[117,-48,79,0.4667575972547599],[117,-47,64,0.3689792785627906],[117,-47,65,0.37587998391473915],[117,-47,66,0.382874238575239],[117,-47,67,0.3899468685736951],[117,-47,68,0.3970858986381611],[117,-47,69,0.4041701321014211],[117,-47,70,0.41044955978039027],[117,-47,71,0.4167422226835403],[117,-47,72,0.42303989095317035],[117,-47,73,0.4293344079473734],[117,-47,74,0.4356172755552975],[117,-47,75,0.4418793077556696],[117,-47,76,0.44811035369498725],[117,-47,77,0.45429909146760517],[117,-47,78,0.460432893678947],[117,-47,79,0.46649776576668517],[117,-46,64,0.3691327134723941],[117,-46,65,0.37606115464347756],[117,-46,66,0.38308764231396836],[117,-46,67,0.3901988865950764],[117,-46,68,0.39738455685422225],[117,-46,69,0.4046284383605382],[117,-46,70,0.41080910458177766],[117,-46,71,0.4170001812023226],[117,-46,72,0.42319485324486666],[117,-46,73,0.4293867259341872],[117,-46,74,0.43556929399962524],[117,-46,75,0.4417354879674829],[117,-46,76,0.44787729890874517],[117,-46,77,0.45398548300186214],[117,-46,78,0.4600493471566921],[117,-46,79,0.4660566168256399],[117,-45,64,0.36939107194749093],[117,-45,65,0.37633877524013043],[117,-45,66,0.38338697320469106],[117,-45,67,0.3905246302615155],[117,-45,68,0.39774320362890564],[117,-45,69,0.40481794460515175],[117,-45,70,0.4109057875522405],[117,-45,71,0.4170029110802044],[117,-45,72,0.42310385331855893],[117,-45,73,0.4292038782648983],[117,-45,74,0.43529833460750117],[117,-45,75,0.4413821002382473],[117,-45,76,0.44744911409411564],[117,-45,77,0.45349199684777197],[117,-45,78,0.45950176184098024],[117,-45,79,0.46546761752045174],[117,-44,64,0.3697466402974702],[117,-44,65,0.37670312023450486],[117,-44,66,0.38376040101567854],[117,-44,67,0.3909100364274269],[117,-44,68,0.3981454236302405],[117,-44,69,0.40475242251715476],[117,-44,70,0.4107559041988696],[117,-44,71,0.41676917235367106],[117,-44,72,0.42278799095790776],[117,-44,73,0.42880911571712893],[117,-44,74,0.43482955046169897],[117,-44,75,0.44084589755971676],[117,-44,76,0.44685380413657283],[117,-44,77,0.4528475057604943],[117,-44,78,0.4588194691135582],[117,-44,79,0.46476013501964863],[117,-43,64,0.3701854203543303],[117,-43,65,0.3771385168488477],[117,-43,66,0.38419057198677664],[117,-43,67,0.391336020724329],[117,-43,68,0.39853760302728425],[117,-43,69,0.40444986017127266],[117,-43,70,0.4103792774355435],[117,-43,71,0.41632050517780067],[117,-43,72,0.42227035006802893],[117,-43,73,0.42822683951800145],[117,-43,74,0.43418838574466456],[117,-43,75,0.4401530515117568],[117,-43,76,0.44611791946410356],[117,-43,77,0.4520785668271873],[117,-43,78,0.45802864709215485],[117,-43,79,0.463959580145228],[117,-42,64,0.3706879788090184],[117,-42,65,0.37762418455508884],[117,-42,66,0.3846554296942921],[117,-42,67,0.39177927161287107],[117,-42,68,0.398084911641678],[117,-42,69,0.4039317535999044],[117,-42,70,0.4097986010364008],[117,-42,71,0.41568063364588115],[117,-42,72,0.4215754710844558],[117,-42,73,0.42748215011458685],[117,-42,74,0.43340020801468593],[117,-42,75,0.4393288744045243],[117,-42,76,0.44526637349731873],[117,-42,77,0.45120933863647433],[117,-42,78,0.4571523408109475],[117,-42,79,0.46308753266997404],[117,-41,64,0.3712302929403743],[117,-41,65,0.37813507177168415],[117,-41,66,0.3851290337643627],[117,-41,67,0.391670689282109],[117,-41,68,0.39743023107696523],[117,-41,69,0.40322239600468385],[117,-41,70,0.40903877938706407],[117,-41,71,0.41487486444241717],[117,-41,72,0.42072881666222234],[117,-41,73,0.4266003876081613],[117,-41,74,0.43248993049138096],[117,-41,75,0.4383975297608377],[117,-41,76,0.4443222467779048],[117,-41,77,0.450261483491729],[117,-41,78,0.45621046585565084],[117,-41,79,0.4621618485413273],[117,-40,64,0.3717845953120505],[117,-40,65,0.37864269223125585],[117,-40,66,0.38523148695328513],[117,-40,67,0.3908893659412814],[117,-40,68,0.3965996541093556],[117,-40,69,0.40234816249296174],[117,-40,70,0.4081262615682216],[117,-40,71,0.41392947854192846],[117,-40,72,0.41975622905559723],[117,-40,73,0.4256066624797278],[117,-40,74,0.43148162321171396],[117,-40,75,0.43738173024818555],[117,-40,76,0.44330657714495014],[117,-40,77,0.449254054306799],[117,-40,78,0.4552197953669056],[117,-40,79,0.4611967492233718],[117,-39,64,0.3723202200239489],[117,-39,65,0.3788117017253452],[117,-39,66,0.3843395745584833],[117,-39,67,0.3899503659678408],[117,-39,68,0.3956210897997223],[117,-39,69,0.4013367881994032],[117,-39,70,0.4070883677871973],[117,-39,71,0.4128711141462573],[117,-39,72,0.4186833775789594],[117,-39,73,0.4245253752142516],[117,-39,74,0.43039811189819527],[117,-39,75,0.43630242215117443],[117,-39,76,0.4422381353114277],[117,-39,77,0.44820336580739495],[117,-39,78,0.4541939303125774],[117,-39,79,0.44338191965412643],[117,-38,64,0.37247584571767994],[117,-38,65,0.3778331934989499],[117,-38,66,0.38331107544504567],[117,-38,67,0.3888829953366056],[117,-38,68,0.39452349350370125],[117,-38,69,0.4002166376431459],[117,-38,70,0.4059526061619442],[117,-38,71,0.41172613904063976],[117,-38,72,0.4175351945258188],[117,-38,73,0.42337972341686114],[117,-38,74,0.42926056336637436],[117,-38,75,0.4351784554607201],[117,-38,76,0.4295274943406832],[117,-38,77,0.4330102005001947],[117,-38,78,0.4204140639085648],[117,-38,79,0.40467774747938307],[117,-37,64,0.3714427179681878],[117,-37,65,0.37674170541443147],[117,-37,66,0.3821763844071218],[117,-37,67,0.38771718107667047],[117,-37,68,0.39333608664389796],[117,-37,69,0.399015963169821],[117,-37,70,0.4047459778587782],[117,-37,71,0.4105200105438224],[117,-37,72,0.41633529791633483],[117,-37,73,0.41255205753571955],[117,-37,74,0.411503049324273],[117,-37,75,0.4109937635766994],[117,-37,76,0.4105026415534687],[117,-37,77,0.40909465735994066],[117,-37,78,0.3927995560344975],[117,-37,79,0.38311331490970263],[117,-36,64,0.37032181792442537],[117,-36,65,0.37556822212727964],[117,-36,66,0.3809659972376748],[117,-36,67,0.38648264805249183],[117,-36,68,0.3920875639744241],[117,-36,69,0.397762150336152],[117,-36,70,0.40349426859117016],[117,-36,71,0.4092766212310883],[117,-36,72,0.40595986673164197],[117,-36,73,0.39750338804092],[117,-36,74,0.3964277645621246],[117,-36,75,0.3949991145062488],[117,-36,76,0.3940374194302679],[117,-36,77,0.3888850957739795],[117,-36,78,0.37417231134736373],[117,-36,79,0.37284494719851036],[117,-35,64,0.3681133177106714],[117,-35,65,0.37434323269512587],[117,-35,66,0.37970965003038426],[117,-35,67,0.38520808137446283],[117,-35,68,0.39080528608860715],[117,-35,69,0.3964809481126905],[117,-35,70,0.40222132450179965],[117,-35,71,0.4034080531714108],[117,-35,72,0.4007088038837512],[117,-35,73,0.39291641508699854],[117,-35,74,0.39600385651024683],[117,-35,75,0.39031856906704065],[117,-35,76,0.38577611890488656],[117,-35,77,0.3819088002763986],[117,-35,78,0.3661421147763828],[117,-35,79,0.36702576164106987],[117,-34,64,0.3679390781218455],[117,-34,65,0.3730958382623808],[117,-34,66,0.3784354420285194],[117,-34,67,0.3839202721200155],[117,-34,68,0.3895144549514053],[117,-34,69,0.3951956818077067],[117,-34,70,0.400948310474088],[117,-34,71,0.40214987086210124],[117,-34,72,0.4034466374811104],[117,-34,73,0.3942565709345524],[117,-34,74,0.40062003876673324],[117,-34,75,0.39185263912326174],[117,-34,76,0.3837821805564336],[117,-34,77,0.38380148291176347],[117,-34,78,0.36540249558101046],[117,-34,79,0.3611604268012479],[117,-33,64,0.3667346570450733],[117,-33,65,0.3718528411450646],[117,-33,66,0.3771689396688036],[117,-33,67,0.3826432440913981],[117,-33,68,0.3882372702799576],[117,-33,69,0.39392644665353366],[117,-33,70,0.3996929489537431],[117,-33,71,0.40552413988280606],[117,-33,72,0.41138008864277203],[117,-33,73,0.3991425299932058],[117,-33,74,0.4046028335893687],[117,-33,75,0.39836563742893444],[117,-33,76,0.3886809516782069],[117,-33,77,0.38537561068898035],[117,-33,78,0.36631890139750356],[117,-33,79,0.3599764300020945],[117,-32,64,0.3655554492604453],[117,-32,65,0.3706378129693514],[117,-32,66,0.37593225952772896],[117,-32,67,0.38139735939268804],[117,-32,68,0.38699206464853125],[117,-32,69,0.3926892800454502],[117,-32,70,0.3984687374051547],[117,-32,71,0.4043154906211535],[117,-32,72,0.410218707793996],[117,-32,73,0.4111002922163565],[117,-32,74,0.41442501618843863],[117,-32,75,0.4158900766496364],[117,-32,76,0.40192902789726104],[117,-32,77,0.3898400799821507],[117,-32,78,0.37284072356262427],[117,-32,79,0.3645616760992561],[117,-31,64,0.36442218952212185],[117,-31,65,0.3694701395913919],[117,-31,66,0.374743127949052],[117,-31,67,0.38019840067655214],[117,-31,68,0.3857924152581682],[117,-31,69,0.39149531048271363],[117,-31,70,0.397284142581986],[117,-31,71,0.40314145076900365],[117,-31,72,0.4090541078665014],[117,-31,73,0.4150122541537961],[117,-31,74,0.4210083161453],[117,-31,75,0.42703611189641716],[117,-31,76,0.41397448280367843],[117,-31,77,0.4023481062884713],[117,-31,78,0.38741678172271243],[117,-31,79,0.38015913974625193],[117,-30,64,0.36335067619561856],[117,-30,65,0.36836404061318456],[117,-30,66,0.37361391521548987],[117,-30,67,0.3790566279920017],[117,-30,68,0.384646230387825],[117,-30,69,0.39034988133296233],[117,-30,70,0.3961417698573686],[117,-30,71,0.4020017633164278],[117,-30,72,0.4079143201201229],[117,-30,73,0.41386747584395256],[117,-30,74,0.4198519043011405],[117,-30,75,0.42586005505220764],[117,-30,76,0.4229907127609214],[117,-30,77,0.41853934443149093],[117,-30,78,0.40315332202485776],[117,-30,79,0.3971475133054751],[117,-29,64,0.362350760187146],[117,-29,65,0.3673275614093873],[117,-29,66,0.3725506422246588],[117,-29,67,0.3779758082575961],[117,-29,68,0.38355480863241576],[117,-29,69,0.38925164762445275],[117,-29,70,0.395037505936281],[117,-29,71,0.40088948001821695],[117,-29,72,0.40678955727423116],[117,-29,73,0.41272365424174273],[117,-29,74,0.4186807191991324],[117,-29,75,0.42465190056685426],[117,-29,76,0.4306297823709873],[117,-29,77,0.4308061796355339],[117,-29,78,0.4145607990002936],[117,-29,79,0.41011329236106375],[117,-28,64,0.3614253047714962],[117,-28,65,0.36636153569311647],[117,-28,66,0.3715519577392051],[117,-28,67,0.37695221549034186],[117,-28,68,0.38251186913401114],[117,-28,69,0.38819164416564544],[117,-28,70,0.393959633361084],[117,-28,71,0.39979013110293327],[117,-28,72,0.405662667916301],[117,-28,73,0.41156109734561586],[117,-28,74,0.4174727365143043],[117,-28,75,0.42338756163755975],[117,-28,76,0.42929745967841965],[117,-28,77,0.4351955372495688],[117,-28,78,0.41947600202936935],[117,-28,79,0.4120274880699424],[117,-27,64,0.3605691144610142],[117,-27,65,0.36545851677683333],[117,-27,66,0.3706080844057348],[117,-27,67,0.375973600040878],[117,-27,68,0.38150255112753434],[117,-27,69,0.38715232340052147],[117,-27,70,0.39288791532289585],[117,-27,71,0.39868086603345576],[117,-27,72,0.40450834226939114],[117,-27,73,0.41035226717257],[117,-27,74,0.41619849222827404],[117,-27,75,0.42203601353029385],[117,-27,76,0.4278562335033864],[117,-27,77,0.4336522691437112],[117,-27,78,0.42682878042456984],[117,-27,79,0.4116365795682544],[117,-26,64,0.3597678312017393],[117,-26,65,0.36460167582555997],[117,-26,66,0.369699731874732],[117,-26,67,0.37501812521847705],[117,-26,68,0.3805023812495789],[117,-26,69,0.38610656152859973],[117,-26,70,0.3917926494043195],[117,-26,71,0.3975295640576421],[117,-26,72,0.403292288818561],[117,-26,73,0.4089895836687727],[117,-26,74,0.4144458070260664],[117,-26,75,0.4199836650637677],[117,-26,76,0.4255855062423938],[117,-26,77,0.43123042264252737],[117,-26,78,0.43635876306806753],[117,-26,79,0.41242874334362295],[117,-25,64,0.3589967273932585],[117,-25,65,0.36376364546640244],[117,-25,66,0.3687970005347378],[117,-25,67,0.37405333870700236],[117,-25,68,0.3794763200054008],[117,-25,69,0.3848769104301839],[117,-25,70,0.38977975976151236],[117,-25,71,0.3947983871462506],[117,-25,72,0.3999390452152862],[117,-25,73,0.40520068881963567],[117,-25,74,0.41057590569427577],[117,-25,75,0.4160518191592491],[117,-25,76,0.4216109617739864],[117,-25,77,0.4272321188998584],[117,-25,78,0.4328911411723379],[117,-25,79,0.4226986565943985],[117,-24,64,0.3582182573723772],[117,-24,65,0.362906345687733],[117,-24,66,0.36766318699147615],[117,-24,67,0.3721888594377679],[117,-24,68,0.3767633316251355],[117,-24,69,0.38142401603928544],[117,-24,70,0.3861975875893089],[117,-24,71,0.3911009811723006],[117,-24,72,0.396142362638315],[117,-24,73,0.40132208153971316],[117,-24,74,0.40663360453705666],[117,-24,75,0.41206442834593854],[117,-24,76,0.41759697112841476],[117,-24,77,0.42320944125929216],[117,-24,78,0.4288766824316835],[117,-24,79,0.43027081406587575],[117,-23,64,0.3557284628202624],[117,-23,65,0.36012512917544215],[117,-23,66,0.3644976028632009],[117,-23,67,0.36887837707474885],[117,-23,68,0.37331475201813935],[117,-23,69,0.37784723340631216],[117,-23,70,0.3825051346841505],[117,-23,71,0.3873075252655177],[117,-23,72,0.3922641961414989],[117,-23,73,0.3973766140855662],[117,-23,74,0.4026388633246836],[117,-23,75,0.4080385735460771],[117,-23,76,0.4135578331172115],[117,-23,77,0.4191740864118362],[117,-23,78,0.42486101415823885],[117,-23,79,0.42863716243143835],[117,-22,64,0.35273424111147134],[117,-22,65,0.3569802449085499],[117,-22,66,0.3612090560352099],[117,-22,67,0.3654528020277349],[117,-22,68,0.36976028467926625],[117,-22,69,0.37417475159044083],[117,-22,70,0.37872783685963163],[117,-22,71,0.38344045982510494],[117,-22,72,0.38832378481157376],[117,-22,73,0.3933801761456817],[117,-22,74,0.3986041473001728],[117,-22,75,0.4039833030158683],[117,-22,76,0.40949927324715085],[117,-22,77,0.41512863778097403],[117,-22,78,0.42084384039208805],[117,-22,79,0.4216386069293432],[117,-21,64,0.3496430321358306],[117,-21,65,0.35374058452673557],[117,-21,66,0.3578297306756682],[117,-21,67,0.36194199710266795],[117,-21,68,0.3661272617434391],[117,-21,69,0.3704311038226606],[117,-21,70,0.3748871412359402],[117,-21,71,0.37951787271118725],[117,-21,72,0.3843356243302762],[117,-21,73,0.38934349835100207],[117,-21,74,0.39453632318238435],[117,-21,75,0.3999016033437106],[117,-21,76,0.40542046822236644],[117,-21,77,0.41106861843811854],[117,-21,78,0.4168172686228895],[117,-21,79,0.41938483964460466],[117,-20,64,0.34648972664690625],[117,-20,65,0.3504388325879947],[117,-20,66,0.3543899233598081],[117,-20,67,0.35837365510343844],[117,-20,68,0.3624404993324469],[117,-20,69,0.36663791311508087],[117,-20,70,0.3710011544670699],[117,-20,71,0.3755540544677536],[117,-20,72,0.38030993674873315],[117,-20,73,0.38527254715000453],[117,-20,74,0.390436992400188],[117,-20,75,0.395790686641201],[117,-20,76,0.40131430458882367],[117,-20,77,0.40698274009988517],[117,-20,78,0.41276606890520207],[117,-20,79,0.41608975878229804],[117,-19,64,0.3433088208956454],[117,-19,65,0.3471071008181037],[117,-19,66,0.35091907247344445],[117,-19,67,0.35477423445346273],[117,-19,68,0.35872313413544316],[117,-19,69,0.36281462724150887],[117,-19,70,0.3670852765644759],[117,-19,71,0.37156003454380504],[117,-19,72,0.37625311574799747],[117,-19,73,0.38116888869499777],[117,-19,74,0.38630278588795697],[117,-19,75,0.3916422308913293],[117,-19,76,0.3971675812272467],[117,-19,77,0.4028530858354095],[117,-19,78,0.4086678558124992],[117,-19,79,0.4112568913703144],[117,-18,64,0.3401316306098601],[117,-18,65,0.3437738821811234],[117,-18,66,0.34744244688451636],[117,-18,67,0.35116537489559285],[117,-18,68,0.354992758921067],[117,-18,69,0.3589743694161219],[117,-18,70,0.3631477650467453],[117,-18,71,0.3675388603528691],[117,-18,72,0.3721627252252959],[117,-18,73,0.377024414667859],[117,-18,74,0.3821198277664455],[117,-18,75,0.3874365947144965],[117,-18,76,0.3929549906798375],[117,-18,77,0.39864887524132436],[117,-18,78,0.40448665607719014],[117,-18,79,0.40466319130817036],[117,-17,64,0.3369672251400299],[117,-17,65,0.3404457388749731],[117,-17,66,0.34396379386494486],[117,-17,67,0.3475477156677144],[117,-17,68,0.35124661386055006],[117,-17,69,0.3551106889420093],[117,-17,70,0.35917820582365956],[117,-17,71,0.36347591750214536],[117,-17,72,0.3680197615502089],[117,-17,73,0.3728155999441274],[117,-17,74,0.3778600012206661],[117,-17,75,0.3831410638607027],[117,-17,76,0.3886392797077828],[117,-17,77,0.39432843614937463],[117,-17,78,0.4001765557181189],[117,-17,79,0.39590144583119913],[117,-16,64,0.33376784929548653],[117,-16,65,0.33707623248112534],[117,-16,66,0.3404383772342516],[117,-16,67,0.34387865248995925],[117,-16,68,0.3474446461161061],[117,-16,69,0.3511864493627478],[117,-16,70,0.35514267301620045],[117,-16,71,0.35934070286815883],[117,-16,72,0.363797267238744],[117,-16,73,0.36851906266839574],[117,-16,74,0.373503436865091],[117,-16,75,0.378739127869646],[117,-16,76,0.38420705828490614],[117,-16,77,0.3898811833060417],[117,-16,78,0.39572939119086936],[117,-16,79,0.3931940191477594],[117,-15,64,0.33048323963445114],[117,-15,65,0.3336171776752441],[117,-15,66,0.33682047307545276],[117,-15,67,0.34011535099386614],[117,-15,68,0.3435473336008189],[117,-15,69,0.34716581030418103],[117,-15,70,0.3510093015419616],[117,-15,71,0.3551055283516326],[117,-15,72,0.3594718305045959],[117,-15,73,0.3641156589386201],[117,-15,74,0.36903514168367024],[117,-15,75,0.3742197223219622],[117,-15,76,0.3796508698749742],[117,-15,77,0.38530285887036686],[117,-15,78,0.39114361821252736],[117,-15,79,0.3896716462413263],[117,-14,64,0.3270753607241509],[117,-14,65,0.3300323468034947],[117,-14,66,0.333075849101957],[117,-14,67,0.3362258006689566],[117,-14,68,0.33952512062163764],[117,-14,69,0.3430218711206653],[117,-14,70,0.34675399287890424],[117,-14,71,0.3507491770769718],[117,-14,72,0.35502511878330767],[117,-14,73,0.359589861622337],[117,-14,74,0.36444223300546824],[117,-14,75,0.3695723690519758],[117,-14,76,0.3749623281453032],[117,-14,77,0.3805867918971184],[117,-14,78,0.3864138521290658],[117,-14,79,0.38302752917151894],[117,-13,64,0.32351636342262213],[117,-13,65,0.3262954532960669],[117,-13,66,0.32917980390420376],[117,-13,67,0.33218694163608875],[117,-13,68,0.33535666412225845],[117,-13,69,0.3387350685994924],[117,-13,70,0.34235899545235193],[117,-13,71,0.3462556961375837],[117,-13,72,0.35044291126184296],[117,-13,73,0.35492905721678636],[117,-13,74,0.35971352081185004],[117,-13,75,0.3647870611228105],[117,-13,76,0.37013231755791337],[117,-13,77,0.3757244229353443],[117,-13,78,0.38153172016894155],[117,-13,79,0.38629214633413866],[117,-12,64,0.1800810734796145],[117,-12,65,0.21639719778469568],[117,-12,66,0.2564566075756602],[117,-12,67,0.3002041289978669],[117,-12,68,0.33102723054459],[117,-12,69,0.33429171424340043],[117,-12,70,0.33781161075334054],[117,-12,71,0.34161329833139814],[117,-12,72,0.34571422079036873],[117,-12,73,0.3501229097473853],[117,-12,74,0.3548391322240771],[117,-12,75,0.3598541629099019],[117,-12,76,0.36515118014854286],[117,-12,77,0.37070578446393043],[117,-12,78,0.3764866382105995],[117,-12,79,0.3824562247144595],[117,-11,64,0.08622189738358092],[117,-11,65,0.10827821739738559],[117,-11,66,0.1334657485427596],[117,-11,67,0.16179746436126044],[117,-11,68,0.19327583871006238],[117,-11,69,0.2278844048209276],[117,-11,70,0.2655753842044436],[117,-11,71,0.30627198554869056],[117,-11,72,0.34083050529945397],[117,-11,73,0.34516279186152754],[117,-11,74,0.3498101783767579],[117,-11,75,0.35476432556323173],[117,-11,76,0.36000888884676785],[117,-11,77,0.36551993761979307],[117,-11,78,0.37126651264226534],[117,-11,79,0.3772113199061381],[117,-10,64,0.03324806595371744],[117,-10,65,0.04449266753317447],[117,-10,66,0.058174622030956295],[117,-10,67,0.074375050189517],[117,-10,68,0.09316052337190671],[117,-10,69,0.11457702858393708],[117,-10,70,0.13863787947732822],[117,-10,71,0.16532569222513985],[117,-10,72,0.1945948084652812],[117,-10,73,0.22637384308101755],[117,-10,74,0.260568342385136],[117,-10,75,0.29706353888915077],[117,-10,76,0.33572718955613984],[117,-10,77,0.3601553655050669],[117,-10,78,0.3658583676080741],[117,-10,79,0.37176725643904346],[117,-9,64,0.025381040943303106],[117,-9,65,0.027999628489989825],[117,-9,66,0.030572206565094136],[117,-9,67,0.0331063163498817],[117,-9,68,0.035626274790564],[117,-9,69,0.04682615321553833],[117,-9,70,0.060294137717931316],[117,-9,71,0.07592779774010983],[117,-9,72,0.09373911753327004],[117,-9,73,0.11371226260482412],[117,-9,74,0.13580598641979225],[117,-9,75,0.1599561559283671],[117,-9,76,0.1860783829471282],[117,-9,77,0.21407074915634322],[117,-9,78,0.24381661331993473],[117,-9,79,0.27518749027358574],[117,-8,64,0.02102998531725149],[117,-8,65,0.023579925061953402],[117,-8,66,0.026109531608740365],[117,-8,67,0.02862365780868317],[117,-8,68,0.03114149731638263],[117,-8,69,0.03369307336149318],[117,-8,70,0.03630562857347835],[117,-8,71,0.039002285339988715],[117,-8,72,0.0418011816513499],[117,-8,73,0.046508366316178384],[117,-8,74,0.05920910128758688],[117,-8,75,0.07364131168541406],[117,-8,76,0.0897694214730091],[117,-8,77,0.10753754878898406],[117,-8,78,0.12687215287520448],[117,-8,79,0.14768477350038908],[117,-7,64,0.016658944282176427],[117,-7,65,0.01914381696862732],[117,-7,66,0.021633841369273488],[117,-7,67,0.0241312083078701],[117,-7,68,0.02664982157422828],[117,-7,69,0.02921461158238143],[117,-7,70,0.0318488963910353],[117,-7,71,0.034572888747256246],[117,-7,72,0.03740267549883512],[117,-7,73,0.04034939457891656],[117,-7,74,0.04341860974637953],[117,-7,75,0.046609882851442686],[117,-7,76,0.04991654298702619],[117,-7,77,0.05332565148745385],[117,-7,78,0.05681816134870728],[117,-7,79,0.06893729578460603],[117,-6,64,0.012278874471298424],[117,-6,65,0.014702678366813215],[117,-6,66,0.017156502219845347],[117,-6,67,0.019639917138788564],[117,-6,68,0.02216145731450879],[117,-6,69,0.024740743925565405],[117,-6,70,0.02739693713732693],[117,-6,71,0.03014710882497435],[117,-6,72,0.03300507987152495],[117,-6,73,0.03598046410635938],[117,-6,74,0.03907791917511259],[117,-6,75,0.04229660419537104],[117,-6,76,0.045629843621220786],[117,-6,77,0.04906499631836621],[117,-6,78,0.05258352844200236],[117,-6,79,0.056161288317809185],[117,-5,64,0.007900148850640965],[117,-5,65,0.010267152998518679],[117,-5,66,0.012688018908538755],[117,-5,67,0.015159754877325312],[117,-5,68,0.017685536036387766],[117,-5,69,0.0202795682360491],[117,-5,70,0.022956710156121253],[117,-5,71,0.025730732560211963],[117,-5,72,0.028613030264490295],[117,-5,73,0.03161154756020682],[117,-5,74,0.03472991748060658],[117,-5,75,0.037966814848361084],[117,-5,76,0.04131552259008763],[117,-5,77,0.04476371036509252],[117,-5,78,0.04829342412796074],[117,-5,79,0.05188128483509319],[117,-4,64,0.0035321470690294894],[117,-4,65,0.005846744154888353],[117,-4,66,0.008237638532559117],[117,-4,67,0.010699345718647215],[117,-4,68,0.013229783512872222],[117,-4,69,0.015837751111624707],[117,-4,70,0.018533756705528325],[117,-4,71,0.021328185472204587],[117,-4,72,0.0242299050934624],[117,-4,73,0.027245089164827447],[117,-4,74,0.03037625897933387],[117,-4,75,0.0336215436995709],[117,-4,76,0.03697415846895163],[117,-4,77,0.040422099560265254],[117,-4,78,0.04394805521863836],[117,-4,79,0.04752953043321419],[117,-3,64,-8.169579387153657E-4],[117,-3,65,0.001449597459086031],[117,-3,66,0.003813141976888643],[117,-3,67,0.006265779896348716],[117,-3,68,0.008800362665733046],[117,-3,69,0.011420406963690736],[117,-3,70,0.014132117847181547],[117,-3,71,0.01694248849569252],[117,-3,72,0.01985781979982771],[117,-3,73,0.022882459848684998],[117,-3,74,0.02601776387985527],[117,-3,75,0.02926127477949264],[117,-3,76,0.03260612374835737],[117,-3,77,0.036040650288239676],[117,-3,78,0.039548240213604056],[117,-3,79,0.04310737996184338],[117,-2,64,-0.005140212722057597],[117,-2,65,-0.0029175192599782437],[117,-2,66,-5.791730566595775E-4],[117,-2,67,0.0018646101224940857],[117,-2,68,0.004401890489680502],[117,-2,69,0.007031138337133863],[117,-2,70,0.009754397734080468],[117,-2,71,0.012575341234618724],[117,-2,72,0.015497725169626305],[117,-2,73,0.018524064421411014],[117,-2,74,0.02165452731670024],[117,-2,75,0.024886050793815465],[117,-2,76,0.028211675524869945],[117,-2,77,0.03162010020876098],[117,-2,78,0.03509545379742418],[117,-2,79,0.03861728398248439],[117,-1,64,-0.00943169095167709],[117,-1,65,-0.007249034589929339],[117,-1,66,-0.004934313159621547],[117,-1,67,-0.0024999638721678605],[117,-1,68,3.7632861892964884E-5],[117,-1,69,0.0026722410240128296],[117,-1,70,0.0054019754692118515],[117,-1,71,0.008227334334180516],[117,-1,72,0.011149612131202885],[117,-1,73,0.014169529568001969],[117,-1,74,0.017286080790100963],[117,-1,75,0.020495598264245716],[117,-1,76,0.023791035048002385],[117,-1,77,0.027161463726966612],[117,-1,78,0.030591790848855948],[117,-1,79,0.03406268524925031],[117,0,64,-0.01368609136121695],[117,0,65,-0.011540186175416136],[117,0,66,-0.00924821012556147],[117,0,67,-0.006824718546569677],[117,0,68,-0.004290118857036001],[117,0,69,-0.0016549224292193333],[117,0,70,0.0010753687645358011],[117,0,71,0.0038982937668495072],[117,0,72,0.006812825331741474],[117,0,73,0.009817974408120156],[117,0,74,0.012911607156834124],[117,0,75,0.016089474776313364],[117,0,76,0.01934445594480229],[117,0,77,0.022666011229660884],[117,0,78,0.026039848367839617],[117,0,79,0.02944779689247638],[117,1,64,-0.017898120964932842],[117,1,65,-0.01578642327237844],[117,1,66,-0.013517138298469965],[117,1,67,-0.011106834730527149],[117,1,68,-0.008579487102515552],[117,1,69,-0.005949378823172631],[117,1,70,-0.003225248825014684],[117,1,71,-4.1224131221627913E-4],[117,1,72,0.0024864871338760885],[117,1,73,0.005468365356248519],[117,1,74,0.008530211116236135],[117,1,75,0.011667240605087953],[117,1,76,0.014872283841925949],[117,1,77,0.018135205379937645],[117,1,78,0.02144252930632873],[117,1,79,0.024777267101884503],[117,2,64,-0.022061659517373662],[117,2,65,-0.01998259705676614],[117,2,66,-0.017736927527741836],[117,2,67,-0.01534313078221201],[117,2,68,-0.012828263706963172],[117,2,69,-0.010209830564835827],[117,2,70,-0.007499377468048787],[117,2,71,-0.004704407092763629],[117,2,72,-0.001829967267538033],[117,2,73,0.0011199568528450028],[117,2,74,0.004141247842540263],[117,2,75,0.007228658657579403],[117,2,76,0.010375012813815834],[117,2,77,0.013570601584371504],[117,2,78,0.016802777288484276],[117,2,79,0.02005574133701095],[117,3,64,-0.003955074800497182],[117,3,65,-0.008162657225338182],[117,3,66,-0.013535656809282044],[117,3,67,-0.019529080626245206],[117,3,68,-0.017032959759914933],[117,3,69,-0.014433750213175696],[117,3,70,-0.011745347800109496],[117,3,71,-0.008977254647714879],[117,3,72,-0.006136134463740327],[117,3,73,-0.00322718107417752],[117,3,74,-2.5529939550904886E-4],[117,3,75,0.00277390156546451],[117,3,76,0.005853303667430957],[117,3,77,0.008973662113646416],[117,3,78,0.012123174615884691],[117,3,79,0.015287236013956682],[117,4,64,1.651467127995523E-5],[117,4,65,-0.0010370496013145333],[117,4,66,-0.0023918392145681052],[117,4,67,-0.0042808277008260336],[117,4,68,-0.006910125808537599],[117,4,69,-0.010442275423758744],[117,4,70,-0.015001951866972908],[117,4,71,-0.01322784962310303],[117,4,72,-0.01042987214050246],[117,4,73,-0.0075715472485882885],[117,4,74,-0.004658383372606783],[117,4,75,-0.0016962147744522414],[117,4,76,0.001307995315407358],[117,4,77,0.004345528907291965],[117,4,78,0.007405464056150229],[117,4,79,0.010474401139593458],[117,5,64,6.963087303483867E-4],[117,5,65,-5.785470784928514E-4],[117,5,66,-0.001210522373525073],[117,5,67,-0.0015036122878149514],[117,5,68,-0.0017331891845213364],[117,5,69,-0.002128925114504986],[117,5,70,-0.0028803584464646217],[117,5,71,-0.004141177388984458],[117,5,72,-0.006033211430908251],[117,5,73,-0.008650243220245516],[117,5,74,-0.009065397629897855],[117,5,75,-0.0061799709858017],[117,5,76,-0.003259891708277266],[117,5,77,-3.132472648979599E-4],[117,5,78,0.002649990520415749],[117,5,79,0.005617666275406934],[117,6,64,0.009782732426920895],[117,6,65,0.004909177811273199],[117,6,66,0.0017027915929131077],[117,6,67,-2.1143886643882606E-4],[117,6,68,-0.0011780104084867962],[117,6,69,-0.0014935934313712548],[117,6,70,-0.001412570365080145],[117,6,71,-0.0011511573841612778],[117,6,72,-8.912469812324283E-4],[117,6,73,-7.840879877878689E-4],[117,6,74,-9.537888919954377E-4],[117,6,75,-0.0015006314298961823],[117,6,76,-0.0025041826347760344],[117,6,77,-0.004026194811117735],[117,6,78,-0.0021449503558027636],[117,6,79,7.142528356770383E-4],[117,7,64,0.038982750641392894],[117,7,65,0.02713128505409137],[117,7,66,0.01805171186177354],[117,7,67,0.011298011691070628],[117,7,68,0.006456587204217338],[117,7,69,0.0031637570922315172],[117,7,70,0.0011002182835577715],[117,7,71,-1.2930882915133338E-5],[117,7,72,-4.178999458006279E-4],[117,7,73,-3.2376879746360963E-4],[117,7,74,9.011068126411648E-5],[117,7,75,6.708867879071386E-4],[117,7,76,0.0012891657790745825],[117,7,77,0.001836165858754403],[117,7,78,0.0022210766869678223],[117,7,79,0.00236863238745867],[117,8,64,0.10000793831917294],[117,8,65,0.0778005256910423],[117,8,66,0.05955017479008173],[117,8,67,0.04474005755484087],[117,8,68,0.03288757467944273],[117,8,69,0.023561991478152786],[117,8,70,0.01637896080672168],[117,8,71,0.010996679893848055],[117,8,72,0.0071123022064350835],[117,8,73,0.004458481399254199],[117,8,74,0.002800061267918471],[117,8,75,0.001930924608137119],[117,8,76,0.0016710127950696528],[117,8,77,0.0018635267391425873],[117,8,78,0.0023723186570859937],[117,8,79,0.003079482829899456],[117,9,64,0.1975823528933554],[117,9,65,0.168623427009642],[117,9,66,0.1379066896649293],[117,9,67,0.11182539258614077],[117,9,68,0.08982814522854844],[117,9,69,0.07141712759694623],[117,9,70,0.05614279970516973],[117,9,71,0.04360018941601419],[117,9,72,0.03342541989804985],[117,9,73,0.025292354962629056],[117,9,74,0.018909376091866006],[117,9,75,0.014016304004551427],[117,9,76,0.010381476575279481],[117,9,77,0.00779899382539766],[117,9,78,0.006086139548388755],[117,9,79,0.005080987931273812],[117,10,64,0.19010879165752112],[117,10,65,0.18949607818704026],[117,10,66,0.18923190689934916],[117,10,67,0.18928757279488898],[117,10,68,0.18898394426953055],[117,10,69,0.1584375336901008],[117,10,70,0.13210311157695034],[117,10,71,0.10951221905231864],[117,10,72,0.09023948806067372],[117,10,73,0.07389938853936577],[117,10,74,0.06014309303683111],[117,10,75,0.04865547156540144],[117,10,76,0.03915222850169056],[117,10,77,0.031377192312337515],[117,10,78,0.02509976778798359],[117,10,79,0.020112559333461136],[117,11,64,0.18260573554418302],[117,11,65,0.18183765591009582],[117,11,66,0.18140777705058084],[117,11,67,0.18128770131417463],[117,11,68,0.18143898990942417],[117,11,69,0.18183258636735658],[117,11,70,0.18244628305382818],[117,11,71,0.1832632016738681],[117,11,72,0.18427051153854992],[117,11,73,0.16199474270992925],[117,11,74,0.1382195251642728],[117,11,75,0.11756979508597735],[117,11,76,0.09970751372333803],[117,11,77,0.08432499224870245],[117,11,78,0.07114237805413919],[117,11,79,0.059905297774785336],[117,12,64,0.1754007200512079],[117,12,65,0.17416419791969223],[117,12,66,0.17356782614613706],[117,12,67,0.17327070537020192],[117,12,68,0.17323506680908854],[117,12,69,0.1734318976922312],[117,12,70,0.17383904714852513],[117,12,71,0.17443976924597676],[117,12,72,0.1752214802080319],[117,12,73,0.17617462699604325],[117,12,74,0.17729166835650173],[117,12,75,0.1785661691486213],[117,12,76,0.17999200848501373],[117,12,77,0.17836227584241257],[117,12,78,0.15593552227542906],[117,12,79,0.13618207755187742],[117,13,64,0.1689044325539648],[117,13,65,0.1664927104920976],[117,13,66,0.16573042899770332],[117,13,67,0.16525645813554177],[117,13,68,0.16503418425615957],[117,13,69,0.16503482211730275],[117,13,70,0.1652363544246748],[117,13,71,0.16562216027488694],[117,13,72,0.1661798282494024],[117,13,73,0.16690007187499734],[117,13,74,0.16777574855172658],[117,13,75,0.16880098278583722],[117,13,76,0.16997039430134211],[117,13,77,0.1712784313419786],[117,13,78,0.17271880921800833],[117,13,79,0.1742840539002763],[117,14,64,0.1624632804400672],[117,14,65,0.15887490458536457],[117,14,66,0.15791874976777606],[117,14,67,0.15726932885292366],[117,14,68,0.15686191568030144],[117,14,69,0.15666810608748452],[117,14,70,0.1566660549748248],[117,14,71,0.15683921630261155],[117,14,72,0.15717523234649025],[117,14,73,0.1576649147339798],[117,14,74,0.15830131834689487],[117,14,75,0.15907890893489474],[117,14,76,0.15999282504521464],[117,14,77,0.16103823463462835],[117,14,78,0.16220978649465895],[117,14,79,0.16350115639028567],[117,15,64,0.15611434105725067],[117,15,65,0.15247471094945553],[117,15,66,0.15016732518799555],[117,15,67,0.14934438644785694],[117,15,68,0.1487536406480832],[117,15,69,0.14836718780919336],[117,15,70,0.14816336689545073],[117,15,71,0.14812563465177173],[117,15,72,0.1482415528210163],[117,15,73,0.14850185463701465],[117,15,74,0.1488995916436549],[117,15,75,0.14942936168007606],[117,15,76,0.1500866186606945],[117,15,77,0.15086706456797302],[117,15,78,0.15176612386814006],[117,15,79,0.1527785003554957],[117,16,64,0.14990651173150196],[117,16,65,0.14622206034824878],[117,16,66,0.14258190415645872],[117,16,67,0.14152513385300738],[117,16,68,0.14075150441952625],[117,16,69,0.14017234066402118],[117,16,70,0.139766215642749],[117,16,71,0.13951657217785482],[117,16,72,0.13941082641642244],[117,16,73,0.13943953640061446],[117,16,74,0.13959563665020322],[117,16,75,0.13987373958276506],[117,16,76,0.14026950441921532],[117,16,77,0.1407790740445117],[117,16,78,0.1413985801176132],[117,16,79,0.14212371655089762],[117,17,64,0.1438689977492836],[117,17,65,0.14014620532152203],[117,17,66,0.13645511279086217],[117,17,67,0.13383478627289536],[117,17,68,0.13287747233290836],[117,17,69,0.13210387944003182],[117,17,70,0.13149291211927813],[117,17,71,0.13102804625676442],[117,17,72,0.13069656312418376],[117,17,73,0.13048883269915118],[117,17,74,0.13039764722282718],[117,17,75,0.13041760579861902],[117,17,76,0.1305445506959863],[117,17,77,0.1307750558824746],[117,17,78,0.13110596816718809],[117,17,79,0.13153400119938805],[117,18,64,0.1380081229338604],[117,18,65,0.1342534711728661],[117,18,66,0.1305162011788738],[117,18,67,0.1267881693771149],[117,18,68,0.12513118624835565],[117,18,69,0.12416045947062421],[117,18,70,0.12334093476392965],[117,18,71,0.12265621929305318],[117,18,72,0.12209353051150344],[117,18,73,0.1216431033441522],[117,18,74,0.12129763070171402],[117,18,75,0.12105173810469584],[117,18,76,0.12090149309574429],[117,18,77,0.12084395001853868],[117,18,78,0.12087673064030999],[117,18,79,0.12099764099281264],[117,19,64,0.13231098786664308],[117,19,65,0.12853090637839873],[117,19,66,0.12475221393772612],[117,19,67,0.12097052989225328],[117,19,68,0.11749339083374571],[117,19,69,0.11632238523063824],[117,19,70,0.11529009358559615],[117,19,71,0.11438039222886967],[117,19,72,0.11358055228555887],[117,19,73,0.11288077660435973],[117,19,74,0.11227375232635868],[117,19,75,0.11175421984187595],[117,19,76,0.11131855882815728],[117,19,77,0.11096439200234694],[117,19,78,0.11069020716416612],[117,19,79,0.11049499803979798],[117,20,64,0.12347659713096303],[117,20,65,0.12062681269812404],[117,20,66,0.11766094642364508],[117,20,67,0.11458641841229392],[117,20,68,0.11142616378149878],[117,20,69,0.10855479241410368],[117,20,70,0.10730557745008587],[117,20,71,0.1061658928144905],[117,20,72,0.10512321479616392],[117,20,73,0.10416785318216641],[117,20,74,0.10329261838848713],[117,20,75,0.10249248681910546],[117,20,76,0.1017642651588447],[117,20,77,0.10110625429096463],[117,20,78,0.10051791351283326],[117,20,79,0.0999995257006896],[117,21,64,0.11276495503208586],[117,21,65,0.1098161875007675],[117,21,66,0.10677768047407017],[117,21,67,0.10365342494347925],[117,21,68,0.10046326289521419],[117,21,69,0.09723187313234936],[117,21,70,0.09554712257792644],[117,21,71,0.09506323839634867],[117,21,72,0.09476363386594686],[117,21,73,0.09465132438869012],[117,21,74,0.09431149820835794],[117,21,75,0.09322533061464026],[117,21,76,0.09219919271372957],[117,21,77,0.09123218145080009],[117,21,78,0.09032483400824243],[117,21,79,0.08947881701694464],[117,22,64,0.10190962832517511],[117,22,65,0.09886140904711542],[117,22,66,0.09575059120579679],[117,22,67,0.09257793743534103],[117,22,68,0.08936014934736292],[117,22,69,0.08612031843577078],[117,22,70,0.08287833875860101],[117,22,71,0.08153764299735433],[117,22,72,0.08112670390673446],[117,22,73,0.08091563434402231],[117,22,74,0.08090366931758294],[117,22,75,0.0810865029415871],[117,22,76,0.08145653989404517],[117,22,77,0.08129912045694479],[117,22,78,0.08007072869717176],[117,22,79,0.07889568756053822],[117,23,64,0.09098781789583227],[117,23,65,0.0878403764965085],[117,23,66,0.08465787741244112],[117,23,67,0.08143813202537618],[117,23,68,0.07819470692684324],[117,23,69,0.07494891227972035],[117,23,70,0.0717194573691012],[117,23,71,0.06852209654909189],[117,23,72,0.06732086188671992],[117,23,73,0.0670091921411326],[117,23,74,0.06690879518352688],[117,23,75,0.06701516930645197],[117,23,76,0.0673204019571229],[117,23,77,0.06781339737237448],[117,23,78,0.06848015615686884],[117,23,79,0.06820929462320795],[117,24,64,0.08008017053173024],[117,24,65,0.07683448471769275],[117,24,66,0.07358125411672299],[117,24,67,0.07031568220115962],[117,24,68,0.06704825753685817],[117,24,69,0.06379833175325068],[117,24,70,0.060583236566759464],[117,24,71,0.05741775939295611],[117,24,72,0.054313917065773515],[117,24,73,0.05299811943670401],[117,24,74,0.05280488563968961],[117,24,75,0.052829586364001806],[117,24,76,0.05306388321712837],[117,24,77,0.05349610242978194],[117,24,78,0.05411147436838027],[117,24,79,0.05489244023359638],[117,25,64,0.06926803376937851],[117,25,65,0.0659258724687725],[117,25,66,0.06260321313133044],[117,25,67,0.059293049946828456],[117,25,68,0.05600290018297781],[117,25,69,0.05275000186824746],[117,25,70,0.04955013128283483],[117,25,71,0.046416924413218],[117,25,72,0.04336152303719333],[117,25,73,0.04039230813904018],[117,25,74,0.03865588842162685],[117,25,75,0.03859129232411521],[117,25,76,0.038745894631063926],[117,25,77,0.039107383944676236],[117,25,78,0.03966019595672354],[117,25,79,0.04038579756709809],[117,26,64,0.05863087740736837],[117,26,65,0.05519483442136222],[117,26,66,0.051804442918428645],[117,26,67,0.04845093003723988],[117,26,68,0.045138995291672625],[117,26,69,0.0418836348184693],[117,26,70,0.03869891173383188],[117,26,71,0.03559714215404803],[117,26,72,0.03258842512186063],[117,26,73,0.029680273605757427],[117,26,74,0.026877346353269452],[117,26,75,0.024359885298511755],[117,26,76,0.02442355132128572],[117,26,77,0.02470170798062984],[117,26,78,0.02517799811237894],[117,26,79,0.025832956323283838],[117,27,64,0.04824388492093461],[117,27,65,0.04471740013287302],[117,27,66,0.04126141068351442],[117,27,67,0.03786585021383865],[117,27,68,0.034532796857667664],[117,27,69,0.031274907145033067],[117,27,70,0.028104397829738375],[117,27,71,0.025032117270072374],[117,27,72,0.022066972303623658],[117,27,73,0.019215468246063096],[117,27,74,0.016481361876544046],[117,27,75,0.013865426987986738],[117,27,76,0.01136533180581318],[117,27,77,0.010330278526189791],[117,27,78,0.010713621632509612],[117,27,79,0.011280118590584068],[117,28,64,0.03817571826590398],[117,28,65,0.03456308333253885],[117,28,66,0.031044109906974534],[117,28,67,0.02760793024737896],[117,28,68,0.024254235190252472],[117,28,69,0.02099327730302153],[117,28,70,0.01783532179899998],[117,28,71,0.014789625616645471],[117,28,72,0.011863775666759117],[117,28,73,0.009063150382916309],[117,28,74,0.006390504516195776],[117,28,75,0.0038456768029243955],[117,28,76,0.0014254198321399132],[117,28,77,-8.766488498973967E-4],[117,28,78,-0.003069975635080602],[117,28,79,-0.0032305423471058695],[117,29,64,0.02848645983767726],[117,29,65,0.024792805173272904],[117,29,66,0.021213976809472478],[117,29,67,0.017738803189039337],[117,29,68,0.014364853325778762],[117,29,69,0.011099946418358738],[117,29,70,0.007952321495572564],[117,29,71,0.004929547495539912],[117,29,72,0.0020377882597226683],[117,29,73,-7.18800991685174E-4],[117,29,74,-0.0033385456877221584],[117,29,75,-0.0058225927578926225],[117,29,76,-0.008175120950929017],[117,29,77,-0.010403421576351848],[117,29,78,-0.01251785091918718],[117,29,79,-0.014531655854729174],[117,30,64,0.01922573564550463],[117,30,65,0.01545699540538877],[117,30,66,0.01182197955791429],[117,30,67,0.008309702426019076],[117,30,68,0.004915900489087167],[117,30,69,0.0016459653371383894],[117,30,70,-0.0014939328397798749],[117,30,71,-0.004497980551406113],[117,30,72,-0.007361513370609749],[117,30,73,-0.010081670710273277],[117,30,74,-0.012657912929430644],[117,30,75,-0.015092401037050663],[117,30,76,-0.01739023960327196],[117,30,77,-0.01955958381546582],[117,30,78,-0.02161161192752058],[117,30,79,-0.02356036464242027],[117,31,64,0.010431024067505968],[117,31,65,0.006593875743281944],[117,31,66,0.0029068843409600607],[117,31,67,-6.402815156673382E-4],[117,31,68,-0.004053413685369616],[117,31,69,-0.007329508604330426],[117,31,70,-0.010464475271394531],[117,31,71,-0.013454292697458197],[117,31,72,-0.016295843712305455],[117,31,73,-0.018987607160686964],[117,31,74,-0.021530208340395263],[117,31,75,-0.023926827899777355],[117,31,76,-0.02618346976530756],[117,31,77,-0.02830908900880889],[117,31,78,-0.03031558088590239],[117,31,79,-0.03221763257939363],[117,32,64,0.002126154861099223],[117,32,65,-0.0017720699843537403],[117,32,66,-0.00550629722981146],[117,32,67,-0.00908577014643652],[117,32,68,-0.012517500127903453],[117,32,69,-0.015800801327804835],[117,32,70,-0.01893364089353709],[117,32,71,-0.021913796512860996],[117,32,72,-0.0247397163214818],[117,32,73,-0.027411235193202252],[117,32,74,-0.02993014720896872],[117,32,75,-0.032300634472530565],[117,32,76,-0.03452955280014518],[117,32,77,-0.03662657515710534],[117,32,78,-0.038604194041969894],[117,32,79,-0.0404775843273836],[117,33,64,-0.005679996589556429],[117,33,65,-0.00963143399254978],[117,33,66,-0.013407674611184653],[117,33,67,-0.017016487560348972],[117,33,68,-0.02046580212469163],[117,33,69,-0.023757154185281078],[117,33,70,-0.02689051883836273],[117,33,71,-0.029865448029502306],[117,33,72,-0.03268194247710294],[117,33,73,-0.03534117984858135],[117,33,74,-0.03784609893566052],[117,33,75,-0.0402018399483097],[117,33,76,-0.042416041408258345],[117,33,77,-0.04449899446998324],[117,33,78,-0.046463655826800225],[117,33,79,-0.04832552066925583],[117,34,64,-0.012994614507447837],[117,34,65,-0.01699102578687671],[117,34,66,-0.02080365361009953],[117,34,67,-0.02443846742190641],[117,34,68,-0.027904033216924584],[117,34,69,-0.03120399413012814],[117,34,70,-0.0343402574893787],[117,34,71,-0.03731409552277685],[117,34,72,-0.040127017267578745],[117,34,73,-0.04278149825342486],[117,34,74,-0.04528156766227443],[117,34,75,-0.04763325303777702],[117,34,76,-0.04984488297555943],[117,34,77,-0.051927248570370906],[117,34,78,-0.05389362472339075],[117,34,79,-0.055759652720375766],[117,35,64,-0.019841841869717006],[117,35,65,-0.023874810981532914],[117,35,66,-0.027717915046670132],[117,35,67,-0.03137507114573186],[117,35,68,-0.03485523618054228],[117,35,69,-0.03816403714174463],[117,35,70,-0.04130521750358233],[117,35,71,-0.044281688030373544],[117,35,72,-0.04709638961252986],[117,35,73,-0.04975301673391199],[117,35,74,-0.05225660123290746],[117,35,75,-0.05461395638361022],[117,35,76,-0.05621068794600257],[117,35,77,-0.051660947793960535],[117,35,78,-0.047157175090737996],[117,35,79,-0.04271689303131471],[117,36,64,-0.026263467629912912],[117,36,65,-0.030324641889597395],[117,36,66,-0.03419219109755042],[117,36,67,-0.03786781172299171],[117,36,68,-0.041360657754056],[117,36,69,-0.04467821985015469],[117,36,70,-0.04782596793685606],[117,36,71,-0.050808344321614345],[117,36,72,-0.05362961242254891],[117,36,73,-0.05600137465955874],[117,36,74,-0.05123936256318619],[117,36,75,-0.046487968330831325],[117,36,76,-0.04175993602877813],[117,36,77,-0.03706963087707872],[117,36,78,-0.03243308711580209],[117,36,79,-0.0278679231809265],[117,37,64,-0.03231939593015987],[117,37,65,-0.03640077382661175],[117,37,66,-0.040286833348498176],[117,37,67,-0.04397697736943484],[117,37,68,-0.04748043349627319],[117,37,69,-0.05080645401670134],[117,37,70,-0.05396212047475605],[117,37,71,-0.051600243806407174],[117,37,72,-0.04668823477651584],[117,37,73,-0.041770667869494356],[117,37,74,-0.036858700473334095],[117,37,75,-0.03196438486358603],[117,37,76,-0.027100986398678435],[117,37,77,-0.022283170815366682],[117,37,78,-0.017527061512352417],[117,37,79,-0.012850167997213825],[117,38,64,-0.03808577599975356],[117,38,65,-0.042179971549829276],[117,38,66,-0.046078911137784624],[117,38,67,-0.04977973085628327],[117,38,68,-0.05260402486298011],[117,38,69,-0.047610353566277526],[117,38,70,-0.04258039114129178],[117,38,71,-0.037527311984277736],[117,38,72,-0.03246320381391742],[117,38,73,-0.027399776128178767],[117,38,74,-0.02234894098504184],[117,38,75,-0.017323265970582077],[117,38,76,-0.012336299543974373],[117,38,77,-0.00740276926185192],[117,38,78,-0.0025386536832404704],[117,38,79,0.0022388709634835304],[117,39,64,-0.043609095372910876],[117,39,65,-0.04770807975101915],[117,39,66,-0.049040176234378965],[117,39,67,-0.044005355721320374],[117,39,68,-0.038901686186871905],[117,39,69,-0.03374896785662904],[117,39,70,-0.02856394992770135],[117,39,71,-0.02336117419617495],[117,39,72,-0.01815381193398592],[117,39,73,-0.012954377149419539],[117,39,74,-0.007775315688758785],[117,39,75,-0.0026294699664225953],[117,39,76,0.0024695805700189833],[117,39,77,0.007507302827200838],[117,39,78,0.012468116600030324],[117,39,79,0.017335423271813047],[117,40,64,-0.045717129681443175],[117,40,65,-0.040689768754134735],[117,40,66,-0.03557746938837319],[117,40,67,-0.030380956975420603],[117,40,68,-0.025117389207191868],[117,40,69,-0.019808563180660443],[117,40,70,-0.014472915117476061],[117,40,71,-0.009126324472932719],[117,40,72,-0.0037829610946912787],[117,40,73,0.0015439879667161786],[117,40,74,0.006841712621904986],[117,40,75,0.012097295183988716],[117,40,76,0.017297347076842648],[117,40,77,0.022427766498737525],[117,40,78,0.027473616441488147],[117,40,79,0.03241912219414847],[117,41,64,-0.03254589932349216],[117,41,65,-0.027348018331491697],[117,41,66,-0.022070127454861258],[117,41,67,-0.016710652466896066],[117,41,68,-0.01128705796258642],[117,41,69,-0.005823305191615474],[117,41,70,-3.396159860394204E-4],[117,41,71,0.005146759260525408],[117,41,72,0.010620676516937995],[117,41,73,0.016068350292981197],[117,41,74,0.02147672379623297],[117,41,75,0.026832957473447404],[117,41,76,0.03212403603431513],[117,41,77,0.03733649375872876],[117,41,78,0.04245625760405274],[117,41,79,0.047468607360701943],[117,42,64,-0.019380330201999686],[117,42,65,-0.01400776219149198],[117,42,66,-0.008561102193842497],[117,42,67,-0.0030363366984218483],[117,42,68,0.002548701282808929],[117,42,69,0.008167683466096993],[117,42,70,0.01379846166822172],[117,42,71,0.019422334818470326],[117,42,72,0.02502316009621275],[117,42,73,0.03058657827144456],[117,42,74,0.03609935408167714],[117,42,75,0.04154883216584533],[117,42,76,0.04692250877227932],[117,42,77,0.05220771916497062],[117,42,78,0.05739144037089208],[117,42,79,0.06246020864530133],[117,43,64,-0.006264176778182808],[117,43,65,-7.126237985182185E-4],[117,43,66,0.00490637227545656],[117,43,67,0.010599393553667227],[117,43,68,0.01634816610240205],[117,43,69,0.022123778016090598],[117,43,70,0.027901990182459986],[117,43,71,0.03366253905936449],[117,43,72,0.03938822015958688],[117,43,73,0.04506408260347391],[117,43,74,0.05067673569090037],[117,43,75,0.056213768136593886],[117,43,76,0.06166328031382192],[117,43,77,0.06701352956248091],[117,43,78,0.07225268833921114],[117,43,79,0.07736871472351334],[117,44,64,0.00676340689254115],[117,44,65,0.012497888727990663],[117,44,66,0.0182927008051007],[117,44,67,0.024157087939964794],[117,44,68,0.030072251184026295],[117,44,69,0.036006481865759915],[117,44,70,0.04193327651080367],[117,44,71,0.04783067774687836],[117,44,72,0.0536803284044188],[117,44,73,0.05946663334033669],[117,44,74,0.06517603005990388],[117,44,75,0.0707963689099848],[117,44,76,0.076316403322798],[117,44,77,0.08172539030464168],[117,44,78,0.08701280108894129],[117,44,79,0.0921681416117673],[117,45,64,0.0196720821504145],[117,45,65,0.025592568348810074],[117,45,66,0.03156605663877867],[117,45,67,0.0376044919113426],[117,45,68,0.04368845253415084],[117,45,69,0.049783235957219285],[117,45,70,0.05585990392139252],[117,45,71,0.06189466512535095],[117,45,72,0.0678679003688688],[117,45,73,0.07376329173320886],[117,45,74,0.07956705699898178],[117,45,75,0.08526729020660526],[117,45,76,0.09085340897626211],[117,45,77,0.09631570892449848],[117,45,78,0.10164502524360125],[117,45,79,0.10599822926862375],[117,46,64,0.032444761257712576],[117,46,65,0.038552911632418294],[117,46,66,0.044706722377875915],[117,46,67,0.050920800200322414],[117,46,68,0.05717498597054759],[117,46,69,0.0634314103891444],[117,46,70,0.0696585419707342],[117,46,71,0.07583061605185798],[117,46,72,0.08192663347245878],[117,46,73,0.0879294591233787],[117,46,74,0.09382502168392778],[117,46,75,0.09960161558627031],[117,46,76,0.10511970098398615],[117,46,77,0.10962818155108102],[117,46,78,0.11401431961686195],[117,46,79,0.1182830941808617],[117,47,64,0.045065551466822576],[117,47,65,0.051361417346171535],[117,47,66,0.05769577842314612],[117,47,67,0.06408578293604303],[117,47,68,0.07051040497806875],[117,47,69,0.07692846931413204],[117,47,70,0.08330571388488461],[117,47,71,0.08961427035877245],[117,47,72,0.09583164077420758],[117,47,73,0.10122704139359479],[117,47,74,0.1063824691080514],[117,47,75,0.11141472498466301],[117,47,76,0.11632881399902067],[117,47,77,0.1211285466249877],[117,47,78,0.1258169776215997],[117,47,79,0.1303967443976089],[117,48,64,0.055973487402134044],[117,48,65,0.06299150393436956],[117,48,66,0.06978326599066391],[117,48,67,0.07632035516580375],[117,48,68,0.0826162865828324],[117,48,69,0.0887075487397142],[117,48,70,0.0946235904342563],[117,48,71,0.10038729369191639],[117,48,72,0.10601602264802544],[117,48,73,0.11152258190943373],[117,48,74,0.1169160828453579],[117,48,75,0.12220271652177611],[117,48,76,0.1273864322557681],[117,48,77,0.13246952102358425],[117,48,78,0.13745310320547166],[117,48,79,0.14233752039140382],[117,49,64,0.06478190034278725],[117,49,65,0.07191580664726073],[117,49,66,0.07883200719539044],[117,49,67,0.08549973530958374],[117,49,68,0.09193333741517498],[117,49,69,0.09817241155303719],[117,49,70,0.10424895311076827],[117,49,71,0.11018776857306165],[117,49,72,0.11600753566739064],[117,49,73,0.12172177877946565],[117,49,74,0.12733975799349131],[117,49,75,0.13286727036381515],[117,49,76,0.13830736227444945],[117,49,77,0.1436609519891497],[117,49,78,0.14892736173385676],[117,49,79,0.15410475888552705],[117,50,64,0.07363193986067383],[117,50,65,0.08087278394621947],[117,50,66,0.0879032119059735],[117,50,67,0.09469037452381288],[117,50,68,0.10124952919455747],[117,50,69,0.10762333983348124],[117,50,70,0.11384636075622458],[117,50,71,0.11994538618436068],[117,50,72,0.12594051274029106],[117,50,73,0.13184612341162733],[117,50,74,0.13767179126296267],[117,50,75,0.14342310140999118],[117,50,76,0.14910239000714087],[117,50,77,0.1547093992333323],[117,50,78,0.1602418474879274],[117,50,79,0.1656959142306398],[117,51,64,0.08254582438789826],[117,51,65,0.08988488727743302],[117,51,66,0.09701933575747611],[117,51,67,0.1039145432686942],[117,51,68,0.11058673643877437],[117,51,69,0.11708153751572577],[117,51,70,0.12343602261711045],[117,51,71,0.12967900263547788],[117,51,72,0.13583207847321793],[117,51,73,0.1419106242520147],[117,51,74,0.14792469671802352],[117,51,75,0.15387986928514003],[117,51,76,0.15977798937990745],[117,51,77,0.16561785797090656],[117,51,78,0.17139583037980569],[117,51,79,0.17710633768098577],[117,52,64,0.09153553445784193],[117,52,65,0.09896447636665104],[117,52,66,0.10619295603316023],[117,52,67,0.11318490729582492],[117,52,68,0.11995756270560537],[117,52,69,0.1265593355403059],[117,52,70,0.13302973812667315],[117,52,71,0.1393995907264895],[117,52,72,0.14569205959985632],[117,52,73,0.1519236297419526],[117,52,74,0.15810501047982806],[117,52,75,0.1642419723201703],[117,52,76,0.17033611364400492],[117,52,77,0.17638555604825523],[117,52,78,0.18238556733404165],[117,52,79,0.18832911133805066],[117,53,64,0.10060305982005985],[117,53,65,0.10811403624624542],[117,53,66,0.1154269571862534],[117,53,67,0.12250467810408229],[117,53,68,0.1293654525869464],[117,53,69,0.13606026385910436],[117,53,70,0.142630929170554],[117,53,71,0.14911023434318033],[117,53,72,0.15552294482310192],[117,53,73,0.1618867581829278],[117,53,74,0.16821319624914152],[117,53,75,0.17450843521657805],[117,53,76,0.18077407229995576],[117,53,77,0.1870078276601135],[117,53,78,0.19320418052715216],[117,53,79,0.1993549386247303],[117,54,64,0.10974077260914576],[117,54,65,0.1173265210570323],[117,54,66,0.1247148430133448],[117,54,67,0.13186788962396867],[117,54,68,0.13880492926081542],[117,54,69,0.14557924778426787],[117,54,70,0.1522347947023929],[117,54,71,0.15880624225988485],[117,54,72,0.1653199600629014],[117,54,73,0.17179493789009842],[117,54,74,0.1782436548771479],[117,54,75,0.18467289343064744],[117,54,76,0.1910844963977409],[117,54,77,0.19747606618850067],[117,54,78,0.20384160471650678],[117,54,79,0.2101720931898262],[117,55,64,0.118931929856465],[117,55,65,0.1265858280012365],[117,55,66,0.13404117892075906],[117,55,67,0.14125980462798562],[117,55,68,0.14826196114680018],[117,55,69,0.15510293225647626],[117,55,70,0.16182859129002974],[117,55,71,0.16847538490318953],[117,55,72,0.17507126259916705],[117,55,73,0.18163656101963893],[117,55,74,0.18818484122404106],[117,55,75,0.19472367732962434],[117,55,76,0.20125539503727286],[117,55,77,0.20777775872149748],[117,55,78,0.214284605914746],[117,55,79,0.22076642816706593],[117,56,64,0.12815130854699344],[117,56,65,0.13586740474165748],[117,56,66,0.14338216765000575],[117,56,67,0.1506574542961111],[117,56,68,0.15771446114942841],[117,56,69,0.16461013755534976],[117,56,70,0.17139204312813885],[117,56,71,0.17809825759354792],[117,56,72,0.18475825757124725],[117,56,73,0.19139375443562384],[117,56,74,0.19801949153319912],[117,56,75,0.20464399916715562],[117,56,76,0.21127030589420484],[117,56,77,0.21789660481507014],[117,56,78,0.2245168736747405],[117,56,79,0.2311214477233814],[117,57,64,0.13736597631320935],[117,57,65,0.1451389934366261],[117,57,66,0.15270636172863053],[117,57,67,0.16003031427214107],[117,57,68,0.16713292188779003],[117,57,69,0.17407244989647247],[117,57,70,0.1808978849832137],[117,57,71,0.18764877372075536],[117,57,72,0.1943560402433362],[117,57,73,0.2010427709390471],[117,57,74,0.2077249645143763],[117,57,75,0.2144122458991642],[117,57,76,0.22110854257750667],[117,57,77,0.22781272204905997],[117,57,78,0.2345191892433857],[117,57,79,0.2412184428285251],[117,58,64,0.14653620072406903],[117,58,65,0.15436151447065452],[117,58,66,0.16197551578839361],[117,58,67,0.16934112042834976],[117,58,68,0.17648119019830458],[117,58,69,0.18345495025572156],[117,58,70,0.1903125414414297],[117,58,71,0.19709479122285267],[117,58,72,0.20383396736831694],[117,58,73,0.21055450411442997],[117,58,74,0.21727369927197387],[117,58,75,0.22400238081351853],[117,58,76,0.23074554158653887],[117,58,77,0.23750294089818208],[117,58,78,0.2442696718197619],[117,58,79,0.2510366931617355],[117,59,64,0.15561649996883956],[117,59,65,0.1634900927860504],[117,59,66,0.17114558174288363],[117,59,67,0.17854682741180217],[117,59,68,0.18571738405991522],[117,59,69,0.19271708463140919],[117,59,70,0.19959694570807354],[117,59,71,0.20639887562538486],[117,59,72,0.21315636087979287],[117,59,73,0.21989512995717853],[117,59,74,0.22663379313294713],[117,59,75,0.23338445687622544],[117,59,76,0.24015331157544353],[117,59,77,0.24694119138926407],[117,59,78,0.25374410511323764],[117,59,79,0.2605537370399861],[117,60,64,0.16455683714240485],[117,60,65,0.17247522912705665],[117,60,66,0.18016784922382276],[117,60,67,0.18759971245463292],[117,60,68,0.19479495450271964],[117,60,69,0.20181367837029152],[117,60,70,0.2087075006277276],[117,60,71,0.2155192023245128],[117,60,72,0.22228334657574506],[117,60,73,0.22902687788652526],[117,60,74,0.2357697018792404],[117,60,75,0.24252524415633456],[117,60,76,0.2493009871014574],[117,60,77,0.25609898349401783],[117,60,78,0.26291634588409574],[117,60,79,0.26974571074772885],[117,61,64,0.17330394889442416],[117,61,65,0.18126410696987896],[117,61,66,0.18899022204575097],[117,61,67,0.19644861521177365],[117,61,68,0.20366388325505824],[117,61,69,0.21069608529270487],[117,61,70,0.2175971726213335],[117,61,71,0.22441058874474099],[117,61,72,0.23117181832741876],[117,61,73,0.2379089215444529],[117,61,74,0.24464305261296715],[117,61,75,0.25138896134498767],[117,61,76,0.25815547661885824],[117,61,77,0.26494597072530096],[117,61,78,0.27175880360293647],[117,61,79,0.2785877460379153],[117,62,64,0.18180283404178046],[117,62,65,0.18980206104614727],[117,62,66,0.19755865689827812],[117,62,67,0.2050403401118812],[117,62,68,0.2122720428963378],[117,62,69,0.21931349865175154],[117,62,70,0.22621674582078502],[117,62,71,0.2330256838688328],[117,62,72,0.2397765554934403],[117,62,73,0.24649841720407076],[117,62,74,0.2532135971791146],[117,62,75,0.2599381393506029],[117,62,76,0.266682232712951],[117,62,77,0.2734506248994207],[117,62,78,0.2802430191169727],[117,62,79,0.28705445357817094],[117,63,64,0.1899984092004038],[117,63,65,0.19803421467786028],[117,63,66,0.20581877163317833],[117,63,67,0.2133212287359373],[117,63,68,0.22056672717528153],[117,63,69,0.22761443172101875],[117,63,70,0.23451624431218487],[117,63,71,0.2413163231428513],[117,63,72,0.24805150160343734],[117,63,73,0.2547516978781224],[117,63,74,0.2614403142246289],[117,63,75,0.26813462499689733],[117,63,76,0.2748461525074197],[117,63,77,0.28158102986346456],[117,63,78,0.28834034994830654],[117,63,79,0.29512049975624954],[117,64,64,0.19783730221689264],[117,64,65,0.20590725655482733],[117,64,66,0.21371759362056725],[117,64,67,0.22123887254366476],[117,64,68,0.22849632166243666],[117,64,69,0.23554833802326577],[117,64,70,0.24244649233143728],[117,64,71,0.2492350184124839],[117,64,72,0.2559511737556449],[117,64,73,0.2626255923318787],[117,64,74,0.269282628826071],[117,64,75,0.27594069344986893],[117,64,76,0.28261257653002947],[117,64,77,0.2893057620965228],[117,64,78,0.29602272972311494],[117,64,79,0.3027612439021637],[117,65,64,0.20526979828333133],[117,65,65,0.21337137206215878],[117,65,66,0.22120546349619907],[117,65,67,0.2287439814835675],[117,65,68,0.23601213048566416],[117,65,69,0.2430673871533337],[117,65,70,0.24996082855451646],[117,65,71,0.2567365992003243],[117,65,72,0.2634322191782967],[117,65,73,0.2700788855586317],[117,65,74,0.2767017663172305],[117,65,75,0.28332028604055814],[117,65,76,0.2899484026997826],[117,65,77,0.29659487480467567],[117,65,78,0.30326351826956666],[117,65,79,0.3099534523456669],[117,66,64,0.2109541926328675],[117,66,65,0.21988281291073086],[117,66,66,0.22823809652551522],[117,66,67,0.23579241082534022],[117,66,68,0.2430703616020708],[117,66,69,0.2501283987581406],[117,66,70,0.25701697714277616],[117,66,71,0.2637800080641062],[117,66,72,0.27045512175130737],[117,66,73,0.277073923543232],[117,66,74,0.28366224313995747],[117,66,75,0.2902403762709367],[117,66,76,0.29682331815158464],[117,66,77,0.30342098811849183],[117,66,78,0.3100384448502615],[117,66,79,0.31667609159761684],[117,67,64,0.21629189035240615],[117,67,65,0.2252610519353037],[117,67,66,0.23435700498626377],[117,67,67,0.24234734727758434],[117,67,68,0.24963427177835307],[117,67,69,0.25669493595132115],[117,67,70,0.26357907691691385],[117,67,71,0.27033025149039835],[117,67,72,0.2769860600034424],[117,67,73,0.2835783638649931],[117,67,74,0.29013349627749424],[117,67,75,0.2966724655392345],[117,67,76,0.3032111503789579],[117,67,77,0.3097604867840511],[117,67,78,0.316326645796897],[117,67,79,0.32291120176675586],[117,68,64,0.22146005600158408],[117,68,65,0.23045894237089004],[117,68,66,0.23959109163003856],[117,68,67,0.24838165510553764],[117,68,68,0.25567647210427324],[117,68,69,0.2627395590956542],[117,68,70,0.26961986969403545],[117,68,71,0.2763605074471621],[117,68,72,0.28299891778018593],[117,68,73,0.2895670733855773],[117,68,74,0.2960916525413162],[117,68,75,0.30259420985319674],[117,68,76,0.30909133893076995],[117,68,77,0.3155948265196393],[117,68,78,0.32211179762379955],[117,68,79,0.3286448511617991],[117,69,64,0.22645923107469035],[117,69,65,0.2354778789520174],[117,69,66,0.24463515656414236],[117,69,67,0.25388038671519264],[117,69,68,0.2611813989876671],[117,69,69,0.2682462453533086],[117,69,70,0.2751230535871205],[117,69,71,0.2818543957215242],[117,69,72,0.2884774539461857],[117,69,73,0.2950241795192933],[117,69,74,0.30152144422718313],[117,69,75,0.3079911839420287],[117,69,76,0.314450533840088],[117,69,77,0.32091195485498614],[117,69,78,0.3273833509499783],[117,69,79,0.33386817680142605],[117,70,64,0.23126902428804078],[117,70,65,0.2402975862033674],[117,70,66,0.24946908386455358],[117,70,67,0.2587942096994972],[117,70,68,0.2661583004844975],[117,70,69,0.2732242397598867],[117,70,70,0.28009786667296316],[117,70,71,0.28682112222133893],[117,70,72,0.29343080177928493],[117,70,73,0.2999586923630486],[117,70,74,0.3064317019722418],[117,70,75,0.3128719806013633],[117,70,76,0.31929703252793756],[117,70,77,0.32571981949510714],[117,70,78,0.3321488544151214],[117,70,79,0.33858828522729867],[117,71,64,0.23584342781627984],[117,71,65,0.24486950700354096],[117,71,66,0.2540417509780735],[117,71,67,0.2633432125287871],[117,71,68,0.2706540393460133],[117,71,69,0.27772278048215426],[117,71,70,0.28459555297434],[117,71,71,0.29131344091369993],[117,71,72,0.2979126250657515],[117,71,73,0.3044245040608191],[117,71,74,0.310875806768622],[117,71,75,0.3172886954851082],[117,71,76,0.3236808595730286],[117,71,77,0.33006559920984635],[117,71,78,0.3364518989056786],[117,71,79,0.34284449046131144],[117,72,64,0.24014226737497193],[117,72,65,0.2491509564427031],[117,72,66,0.258307940522444],[117,72,67,0.26739117369990006],[117,72,68,0.2747107756417068],[117,72,69,0.28178638159895475],[117,72,70,0.2886626531173578],[117,72,71,0.29537948389897617],[117,72,72,0.3019721217682658],[117,72,73,0.30847128054682527],[117,72,74,0.31490324146897947],[117,72,75,0.3212899437877392],[117,72,76,0.327649064237303],[117,72,77,0.3339940850333008],[117,72,78,0.3403343501037273],[117,72,79,0.3466751092531491],[117,73,64,0.24413448045561856],[117,73,65,0.2531090069300699],[117,73,66,0.26223285897704973],[117,73,67,0.2710265026650854],[117,73,68,0.27836019842581355],[117,73,69,0.2854484712724294],[117,73,70,0.29233411180362195],[117,73,71,0.2990554233644019],[117,73,72,0.30564634529334195],[117,73,73,0.3121365634329623],[117,73,74,0.3185516075351206],[117,73,75,0.3249129352170299],[117,73,76,0.3312380021462324],[117,73,77,0.3375403181536344],[117,73,78,0.3438294889908589],[117,73,79,0.35011124346276734],[117,74,64,0.2477953436790343],[117,74,65,0.25671768191668426],[117,74,66,0.2657893037535516],[117,74,67,0.2742720797024639],[117,74,68,0.28162641479203293],[117,74,69,0.2887342725200541],[117,74,70,0.2956361250041128],[117,74,71,0.3023682549693776],[117,74,72,0.30896289047925357],[117,74,73,0.31544832312621207],[117,74,74,0.3218490092925469],[117,74,75,0.3281856541242889],[117,74,76,0.3344752778936285],[117,74,77,0.34073126445499974],[117,74,78,0.3469633915257088],[117,74,79,0.35317784254465656],[117,75,64,0.25110377844735854],[117,75,65,0.25995522636354],[117,75,66,0.268954905093269],[117,75,67,0.27714666861596415],[117,75,68,0.2845287678202959],[117,75,69,0.29166361631288346],[117,75,70,0.2985889240417303],[117,75,71,0.30533852400609846],[117,75,72,0.3119425296805785],[117,75,73,0.31842747083324885],[117,75,74,0.3248164073003801],[117,75,75,0.3311290203270298],[117,75,76,0.3373816811280187],[117,75,77,0.343587496366171],[117,75,78,0.3497563302824918],[117,75,79,0.355894803247052],[117,76,64,0.25403973962289295],[117,76,65,0.26280145872475796],[117,76,66,0.27170944758464133],[117,76,67,0.2796676431725049],[117,76,68,0.287084578629093],[117,76,69,0.2942536822706576],[117,76,70,0.3012094919457266],[117,76,71,0.30798298989720707],[117,76,72,0.3146017947627746],[117,76,73,0.3210903255948367],[117,76,74,0.3274699373872606],[117,76,75,0.33375902766013693],[117,76,76,0.3399731137157875],[117,76,77,0.34612488023788796],[117,76,78,0.3522241969590522],[117,76,79,0.358278106171212],[117,77,64,0.2565816920568165],[117,77,65,0.26523520932257477],[117,77,66,0.2740322762135806],[117,77,67,0.28185363009799214],[117,77,68,0.28931180760229924],[117,77,69,0.29652166206764174],[117,77,70,0.30351420729283596],[117,77,71,0.3103172244131646],[117,77,72,0.3169555006319894],[117,77,73,0.32345103229699074],[117,77,74,0.32982319170294083],[117,77,75,0.3360888570879666],[117,77,76,0.342262505372705],[117,77,77,0.348356267270386],[117,77,78,0.3543799444686019],[117,77,79,0.3603409886509206],[117,78,64,0.2587041798590187],[117,78,65,0.26723185007109806],[117,78,66,0.2758997919520689],[117,78,67,0.2837270635928626],[117,78,68,0.2912316297417303],[117,78,69,0.29848734053279197],[117,78,70,0.3055214106073823],[117,78,71,0.3123581388378073],[117,78,72,0.319019205760315],[117,78,73,0.3255239264313964],[117,78,74,0.3318894579529755],[117,78,75,0.338130961021654],[117,78,76,0.34426171496372826],[117,78,77,0.35029318581979285],[117,78,78,0.35623504713819487],[117,78,79,0.362095153225731],[117,79,64,0.26039484475988944],[117,79,65,0.26878013082136754],[117,79,66,0.2773018808887373],[117,79,67,0.28529843256376913],[117,79,68,0.29285358958583174],[117,79,69,0.30015940363163124],[117,79,70,0.30723909451479725],[117,79,71,0.31411326200848966],[117,79,72,0.3208002545591198],[117,79,73,0.3273164833202157],[117,79,74,0.33367668058188776],[117,79,75,0.3398941018090087],[117,79,76,0.34598067063531057],[117,79,77,0.35194706628959826],[117,79,78,0.35780275305178433],[117,79,79,0.36355595145060365],[117,80,64,0.2617070672115243],[117,80,65,0.2699344081420354],[117,80,66,0.2782931196302297],[117,80,67,0.28651683556806723],[117,80,68,0.2941285413504543],[117,80,69,0.30149144578107334],[117,80,70,0.3086246258540087],[117,80,71,0.3155447693471566],[117,80,72,0.3222666322135258],[117,80,73,0.3288034300023586],[117,80,74,0.33516716217009085],[117,80,75,0.341368868310613],[117,80,76,0.3474188154997337],[117,80,77,0.35332661610845123],[117,80,78,0.35910127559099336],[117,80,79,0.36475116989652073],[117,81,64,0.26269052943792737],[117,81,65,0.2707506218321059],[117,81,66,0.2789300272280764],[117,81,67,0.2872276070186888],[117,81,68,0.29500614696457667],[117,81,69,0.3024354420340084],[117,81,70,0.3096333008813887],[117,81,71,0.3166122965667871],[117,81,72,0.32338330455407754],[117,81,73,0.32995599212559223],[117,81,74,0.33633922796371807],[117,81,75,0.3425414106932016],[117,81,76,0.3485707153787588],[117,81,77,0.35443525716708346],[117,81,78,0.36014317144770486],[117,81,79,0.36570261008299004],[117,82,64,0.26290904345068267],[117,82,65,0.2712682104339053],[117,82,66,0.2792532703909737],[117,82,67,0.28734558814605293],[117,82,68,0.2954513221015462],[117,82,69,0.3029571554908879],[117,82,70,0.31023246637946744],[117,82,71,0.3172855426603903],[117,82,72,0.3241230943689859],[117,82,73,0.3307508644347077],[117,82,74,0.337174145733472],[117,82,75,0.3433982029395071],[117,82,76,0.3494285979160614],[117,82,77,0.35527141761773895],[117,82,78,0.36093340370079435],[117,82,79,0.3664219832507159],[117,83,64,0.26266325730603773],[117,83,65,0.2712311982656916],[117,83,66,0.2792898820156183],[117,83,67,0.2871609120698173],[117,83,68,0.2951050030401734],[117,83,69,0.30303449017020767],[117,83,70,0.3104001158752955],[117,83,71,0.31754312974345905],[117,83,72,0.32446581944832564],[117,83,73,0.3311696356790482],[117,83,74,0.3376558402255958],[117,83,75,0.3439260436186875],[117,83,76,0.34998263074965036],[117,83,77,0.3558290731717837],[117,83,78,0.36147012705060816],[117,83,79,0.3669119159846766],[117,84,64,0.26195011489118714],[117,84,65,0.2705551606889105],[117,84,66,0.27892572657294207],[117,84,67,0.28669121975361644],[117,84,68,0.2943848774535097],[117,84,69,0.30211777584846355],[117,84,70,0.30987460880868234],[117,84,71,0.3173715262122801],[117,84,72,0.3243974871965938],[117,84,73,0.33119826427818116],[117,84,74,0.33777065373022314],[117,84,75,0.34411209947802884],[117,84,76,0.35022124067532767],[117,84,77,0.35609832909431155],[117,84,78,0.3617455150152863],[117,84,79,0.367167000601158],[117,85,64,0.2607779846276199],[117,85,65,0.26941483846931563],[117,85,66,0.27783448213104384],[117,85,67,0.28594513744206507],[117,85,68,0.2933740966838217],[117,85,69,0.300827319146161],[117,85,70,0.30829349768005804],[117,85,71,0.3157640826629329],[117,85,72,0.3232321127223961],[117,85,73,0.3306911802317888],[117,85,74,0.33750715338942205],[117,85,75,0.34394399194386177],[117,85,76,0.35013147337412825],[117,85,77,0.3560660419853399],[117,85,78,0.3617466277381655],[117,85,79,0.36717488856083036],[117,86,64,0.25916458303986695],[117,86,65,0.26782592900430996],[117,86,66,0.27628965582805765],[117,86,67,0.2845582344708793],[117,86,68,0.29207722158587807],[117,86,69,0.299236510644928],[117,86,70,0.30639436448357454],[117,86,71,0.3135466835385097],[117,86,72,0.3206914221182658],[117,86,73,0.3278273398508131],[117,86,74,0.33495290787900867],[117,86,75,0.3420653731022862],[117,86,76,0.3491599833315909],[117,86,77,0.35571648091359115],[117,86,78,0.3614563194850583],[117,86,79,0.36691742555293405],[117,87,64,0.25713501886234275],[117,87,65,0.26581154898308135],[117,87,66,0.274312017572427],[117,87,67,0.28264046305482965],[117,87,68,0.29049357977839363],[117,87,69,0.29734849974073774],[117,87,70,0.30418442369764387],[117,87,71,0.31100156223183395],[117,87,72,0.3178027942071208],[117,87,73,0.32459218622306746],[117,87,74,0.3313736838638273],[117,87,75,0.33814997862763213],[117,87,76,0.34492155393881413],[117,87,77,0.35168591316747627],[117,87,78,0.3584369921154423],[117,87,79,0.3651647579755487],[117,88,64,0.25471996198201446],[117,88,65,0.26340047206564565],[117,88,66,0.27192800728037847],[117,88,67,0.28030816797667474],[117,88,68,0.28854712815924544],[117,88,69,0.2951629123699843],[117,88,70,0.3016677908078337],[117,88,71,0.3081376198590663],[117,88,72,0.31458013131098966],[117,88,73,0.32100474980070176],[117,88,74,0.32742105491123763],[117,88,75,0.3338374366005778],[117,88,76,0.3402599479410431],[117,88,77,0.34669135861562034],[117,88,78,0.3531304120970161],[117,88,79,0.35957128892968926],[117,89,64,0.251953941153157],[117,89,65,0.26062549161660614],[117,89,66,0.269168186803934],[117,89,67,0.277589166562445],[117,89,68,0.2858950686453088],[117,89,69,0.2926769848292569],[117,89,70,0.2988464250423924],[117,89,71,0.3049619379955009],[117,89,72,0.3110359576104417],[117,89,73,0.3170832262417622],[117,89,74,0.32311901743048044],[117,89,75,0.3291575694118911],[117,89,76,0.33521073396232814],[117,89,77,0.3412868445846776],[117,89,78,0.34738980745737735],[117,89,79,0.35351841801188444],[117,90,64,0.24887377408358277],[117,90,65,0.25752191204737745],[117,90,66,0.2660658152622755],[117,90,67,0.27451412442598366],[117,90,68,0.2828742583808078],[117,90,69,0.28988659835897124],[117,90,70,0.29572098292586874],[117,90,71,0.3014804298569422],[117,90,72,0.30718184958509276],[117,90,73,0.31284517135388834],[117,90,74,0.3184913207855481],[117,90,75,0.32414042515109653],[117,90,76,0.3298102515567588],[117,90,77,0.33551488262231494],[117,90,78,0.3412636335985625],[117,90,79,0.3470602142577136],[117,91,64,0.2455171331778475],[117,91,65,0.2541261720155278],[117,91,66,0.262655550940822],[117,91,67,0.27111535812492876],[117,91,68,0.27951408641299424],[117,91,69,0.2867872119105769],[117,91,70,0.2922915803653495],[117,91,71,0.2976984103838559],[117,91,72,0.3030287953194195],[117,91,73,0.3083076340867537],[117,91,74,0.31356136221267805],[117,91,75,0.3188159268365221],[117,91,76,0.3240950115145185],[117,91,77,0.3294185159926845],[117,91,78,0.3348012954322291],[117,91,79,0.3402521629061859],[117,92,64,0.2419212499312121],[117,92,65,0.2504746024462361],[117,92,66,0.25897228265048133],[117,92,67,0.26742575999983464],[117,92,68,0.27584486190120117],[117,92,69,0.2833746907298794],[117,92,70,0.2885584611704871],[117,92,71,0.29362108343536436],[117,92,72,0.29858748121670037],[117,92,73,0.30348722647352305],[117,92,74,0.30835202714693394],[117,92,75,0.31321347416593043],[117,92,76,0.31810105423856677],[117,92,77,0.3230404341844534],[117,92,78,0.32805202183470294],[117,92,79,0.3331498078103676],[117,93,64,0.23812176069666224],[117,93,65,0.24660232207671762],[117,93,66,0.25505009318619487],[117,93,67,0.2634778477266409],[117,93,68,0.2718969693706575],[117,93,69,0.2796460285871933],[117,93,70,0.28452257008233217],[117,93,71,0.2892539444478231],[117,93,72,0.2938685047843005],[117,93,73,0.2984001295143252],[117,93,74,0.3028854742939553],[117,93,75,0.3073614974718429],[117,93,76,0.3118632662205222],[117,93,77,0.31642204968011906],[117,93,78,0.3210637046784956],[117,93,79,0.32580735883012835],[117,94,64,0.23415169629476384],[117,94,65,0.24254227297858866],[117,94,66,0.25092135728787324],[117,94,67,0.2593029408902628],[117,94,68,0.26770014171652384],[117,94,69,0.27559996166951256],[117,94,70,0.2801860285478127],[117,94,71,0.2846030970501548],[117,94,72,0.2888825122655029],[117,94,73,0.293062034080884],[117,94,74,0.2971828648435349],[117,94,75,0.3012869636015553],[117,94,76,0.3054146546570256],[117,94,77,0.3096025373391919],[117,94,78,0.3138817030865677],[117,94,79,0.31827626512208396],[117,95,64,0.23004061770203982],[117,95,65,0.23832439828506333],[117,95,66,0.2466159762877921],[117,95,67,0.2549304666805666],[117,95,68,0.2632828529349271],[117,95,69,0.2712374723222912],[117,95,70,0.27555251162809896],[117,95,71,0.27967548225685684],[117,95,72,0.28364025999812686],[117,95,73,0.28748801600240126],[117,95,74,0.2912640352787377],[117,95,75,0.29501483347585367],[117,95,76,0.2987855802601779],[117,95,77,0.3026178367403629],[117,95,78,0.3065476135306734],[117,95,79,0.31060375520212224],[117,96,64,0.22581389983625863],[117,96,65,0.23397496413795912],[117,96,66,0.2421607514248001],[117,96,67,0.2503873966197456],[117,96,68,0.25867183238015723],[117,96,69,0.2665621809888144],[117,96,70,0.2706275245699876],[117,96,71,0.2744790189793809],[117,96,72,0.2781525984778535],[117,96,73,0.28169234456792525],[117,96,74,0.28514711328710163],[117,96,75,0.28856747111165737],[117,96,76,0.29200294832656093],[117,96,77,0.2954996178201314],[117,96,78,0.2990980063711272],[117,96,79,0.3028313446181176],[117,97,64,0.22149216525530696],[117,97,65,0.22951602767252463],[117,97,66,0.23757889761614231],[117,97,67,0.24569781605100735],[117,97,68,0.2538917021815247],[117,97,69,0.2615806248439372],[117,97,70,0.26541857770013033],[117,97,71,0.2690226547076413],[117,97,72,0.27243037819459975],[117,97,73,0.2756882237498321],[117,97,74,0.2788480763289164],[117,97,75,0.28196400392204424],[117,97,76,0.2850893581385092],[117,97,77,0.2882742101371053],[117,97,78,0.29156312941171914],[117,97,79,0.29499331203387746],[117,98,64,0.21709086940052144],[117,98,65,0.22496505267655034],[117,98,66,0.23288969930285383],[117,98,67,0.24088262795321663],[117,98,68,0.24896473930046592],[117,98,69,0.25630242175841345],[117,98,70,0.25993525842466464],[117,98,71,0.2633163253179336],[117,98,72,0.26648427639564176],[117,98,73,0.26948746551876895],[117,98,74,0.2723802524637767],[117,98,75,0.2752196341343692],[117,98,76,0.2780622107807063],[117,98,77,0.2809614960842882],[117,98,78,0.2839655790222176],[117,98,79,0.28711514449197906],[117,99,64,0.21262003884275685],[117,99,65,0.22033467439124435],[117,99,66,0.2281083098216619],[117,99,67,0.23595939249171893],[117,99,68,0.24391076356533292],[117,99,69,0.2507403183583103],[117,99,70,0.2541891992295638],[117,99,71,0.2573708230593438],[117,99,72,0.26032454400705374],[117,99,73,0.26310009467989803],[117,99,74,0.2657537630777444],[117,99,75,0.2683449011905019],[117,99,76,0.2709327754616711],[117,99,77,0.273573768362739],[117,99,78,0.2763189393583843],[117,99,79,0.27921195258919096],[117,100,64,0.20808416383120834],[117,100,65,0.21563261476625886],[117,100,66,0.2232456956065382],[117,100,67,0.2309423035736068],[117,100,68,0.23874715288962742],[117,100,69,0.24491012106402776],[117,100,70,0.24819394068276843],[117,100,71,0.25119757186078845],[117,100,72,0.253960672018449],[117,100,73,0.25653388471655914],[117,100,74,0.2589749071925774],[117,100,75,0.26134489501564123],[117,100,76,0.2637052144363224],[117,100,77,0.26611455202214396],[117,100,78,0.2686263901887876],[117,100,79,0.2712868562667752],[117,101,64,0.20348138476966227],[117,101,65,0.21086054467848311],[117,101,66,0.21830717380073195],[117,101,67,0.22584040061779312],[117,101,68,0.23348672947086901],[117,101,69,0.2388331258883138],[117,101,70,0.2419676676245173],[117,101,71,0.24481164834288338],[117,101,72,0.2474046667134445],[117,101,73,0.24979784757924037],[117,101,74,0.2520498175472987],[117,101,75,0.2542230223899562],[117,101,76,0.25638039715585603],[117,101,77,0.25858239889233603],[117,101,78,0.2608844108865624],[117,101,79,0.26333452634896],[117,102,64,0.19879597947460323],[117,102,65,0.206002661651287],[117,102,66,0.2132770166942512],[117,102,67,0.22063816626098545],[117,102,68,0.2281142975351689],[117,102,69,0.2325637069771327],[117,102,70,0.2355649781857127],[117,102,71,0.2382677282255722],[117,102,72,0.24071109487311557],[117,102,73,0.24294620864596325],[117,102,74,0.24503209802869272],[117,102,75,0.24703193994800363],[117,102,76,0.2490096666683936],[117,102,77,0.25102693927338554],[117,102,78,0.2531404968941402],[117,102,79,0.2553998898542425],[117,103,64,0.19400939024387565],[117,103,65,0.2010381360347376],[117,103,66,0.20813229892197962],[117,103,67,0.2153107653974907],[117,103,68,0.22260325914247991],[117,103,69,0.22617136200528884],[117,103,70,0.22905767898890683],[117,103,71,0.23163976000858902],[117,103,72,0.23395581340338045],[117,103,73,0.23605641870190588],[117,103,74,0.23800039081334506],[117,103,75,0.2398509908241073],[117,103,76,0.24167249476767633],[117,103,77,0.24352713072717067],[117,103,78,0.24547239362469586],[117,103,79,0.24755874605582837],[117,104,64,0.18911036131352504],[117,104,65,0.19595405854661216],[117,104,66,0.20285867943560162],[117,104,67,0.20984267013950963],[117,104,68,0.21659764058554826],[117,104,69,0.21971633263024273],[117,104,70,0.2225075228113874],[117,104,71,0.22499086897822024],[117,104,72,0.2272031505264989],[117,104,73,0.2291937941917036],[117,104,74,0.23102073261901998],[117,104,75,0.23274660817645396],[117,104,76,0.2344353334799514],[117,104,77,0.2361490190978272],[117,104,78,0.23794527790227593],[117,104,79,0.23987491454549587],[117,105,64,0.18409615042592145],[117,105,65,0.19074662685091498],[117,105,66,0.19745155740784004],[117,105,67,0.2042287759779726],[117,105,68,0.21020485507734812],[117,105,69,0.21324857387791674],[117,105,70,0.2159652205127411],[117,105,71,0.21837240333612973],[117,105,72,0.2205049745632357],[117,105,73,0.2224105947096816],[117,105,74,0.22414562530900498],[117,105,75,0.225771362349607],[117,105,76,0.2273506218914349],[117,105,77,0.22894468833671802],[117,105,78,0.23061063484481825],[117,105,79,0.23239902440576668],[117,106,64,0.17897399995077193],[117,106,65,0.18542253274637804],[117,106,66,0.1919173666767363],[117,106,67,0.19847559146220287],[117,106,68,0.20381952362118186],[117,106,69,0.20680679060967516],[117,106,70,0.2094695972533632],[117,106,71,0.2118232053515897],[117,106,72,0.21390007079863796],[117,106,73,0.21574549241552216],[117,106,74,0.21741358127086688],[117,106,75,0.2189635627774801],[117,106,76,0.22045642289564354],[117,106,77,0.2219519088138263],[117,106,78,0.22350589351845648],[117,106,79,0.22516811271349293],[117,107,64,0.17376303136255883],[117,107,65,0.18000076981884539],[117,107,66,0.18627528529165072],[117,107,67,0.19260283500426847],[117,107,68,0.19746798044450334],[117,107,69,0.20041709169667687],[117,107,70,0.2030463853513789],[117,107,71,0.20536854242488217],[117,107,72,0.20741320589317908],[117,107,73,0.20922276084332664],[117,107,74,0.21084842395495762],[117,107,75,0.21234665430706012],[117,107,76,0.21377589658537896],[117,107,77,0.21519366684111332],[117,107,78,0.21665399002774977],[117,107,79,0.21820519762656862],[117,108,64,0.16849656530888169],[117,108,65,0.17451486391851326],[117,108,66,0.18055936263894176],[117,108,67,0.18664544139320371],[117,108,68,0.19116257564141775],[117,108,69,0.19409125915938408],[117,108,70,0.19670665100655166],[117,108,71,0.19901869530598343],[117,108,72,0.20105387715121906],[117,108,73,0.2028511805422767],[117,108,74,0.20445834120003661],[117,108,75,0.20592840582512725],[117,108,76,0.2073166084931872],[117,108,77,0.20867757399904854],[117,108,78,0.21006285708353137],[117,108,79,0.2115188256045317],[117,109,64,0.1632248212731334],[117,109,65,0.16901548003088193],[117,109,66,0.1748210172821109],[117,109,67,0.18065593072123734],[117,109,68,0.18489934265013558],[117,109,69,0.187824579108189],[117,109,70,0.19044480119980142],[117,109,71,0.19276714930469255],[117,109,72,0.19481469207369506],[117,109,73,0.19662260663687275],[117,109,74,0.1982346361710262],[117,109,75,0.19969983583007594],[117,109,76,0.20106961722196345],[117,109,77,0.20239510079074713],[117,109,78,0.2037247846377329],[117,109,79,0.20510253749677498],[117,110,64,0.1580077495064613],[117,110,65,0.1635630397761245],[117,110,66,0.16912142310764408],[117,110,67,0.17469654270414112],[117,110,68,0.17864449960821482],[117,110,69,0.1815824107826464],[117,110,70,0.18422523995266465],[117,110,71,0.1865773536551857],[117,110,72,0.18865824269908846],[117,110,73,0.19049896578578868],[117,110,74,0.1921388502681936],[117,110,75,0.1936224603636804],[117,110,76,0.19499684237909473],[117,110,77,0.19630905574308063],[117,110,78,0.1976039978782196],[117,110,79,0.1989225301880213],[117,111,64,0.15290071596329433],[117,111,65,0.15821340375511422],[117,111,66,0.16351699823833277],[117,111,67,0.16882432294288852],[117,111,68,0.17232353243030363],[117,111,69,0.17528981171770952],[117,111,70,0.17797273645482364],[117,111,71,0.18037401275733406],[117,111,72,0.1825094736919164],[117,111,73,0.18440582397568803],[117,111,74,0.1860976193463513],[117,111,75,0.18762449011574062],[117,111,76,0.18902861773058502],[117,111,77,0.19035247247055534],[117,111,78,0.19163681971957833],[117,111,79,0.19291900155702663],[117,112,64,0.14794468367702285],[117,112,65,0.1530090951874505],[117,112,66,0.15805125154288271],[117,112,67,0.16260849366609303],[117,112,68,0.16587219064676717],[117,112,69,0.16888368736162349],[117,112,70,0.17162612372136626],[117,112,71,0.17409867780438706],[117,112,72,0.17631344755760162],[117,112,73,0.17829253363615458],[117,112,74,0.18006533258732707],[117,112,75,0.18166604897746017],[117,112,76,0.18313143444614394],[117,112,77,0.18449876105289348],[117,112,78,0.18580403566208856],[117,112,79,0.18708046149665447],[117,113,64,0.14315699647677047],[117,113,65,0.147969573705052],[117,113,66,0.1524339820110624],[117,113,67,0.15594190449425974],[117,113,68,0.15924984591325073],[117,113,69,0.1623236379005403],[117,113,70,0.16514586043968094],[117,113,71,0.16771330755625394],[117,113,72,0.17003426739430885],[117,113,73,0.17212597873307436],[117,113,74,0.17401227205302205],[117,113,75,0.17572140273177383],[117,113,76,0.17728408341473173],[117,113,77,0.17873172206579968],[117,113,78,0.1800948716637618],[117,113,79,0.18140189697376796],[117,114,64,0.13800196063892728],[117,114,65,0.14182923541242912],[117,114,66,0.14552424051359655],[117,114,67,0.1490704519571621],[117,114,68,0.15243549849891044],[117,114,69,0.15558754428434873],[117,114,70,0.15850902049842952],[117,114,71,0.16119449997543295],[117,114,72,0.16364840878611447],[117,114,73,0.1658828886120164],[117,114,74,0.1679158168232712],[117,114,75,0.16976899072879809],[117,114,76,0.17146648201459228],[117,114,77,0.1730331669294978],[117,114,78,0.1744934373215635],[117,114,79,0.17587009717520188],[117,115,64,0.13083720164854584],[117,115,65,0.13467620665049795],[117,115,66,0.1383997030425707],[117,115,67,0.14199234647126432],[117,115,68,0.14542511122887133],[117,115,69,0.14866915518440743],[117,115,70,0.1517071744391759],[117,115,71,0.15453170593733462],[117,115,72,0.15714329838531305],[117,115,73,0.1595488077682148],[117,115,74,0.1617598231065759],[117,115,75,0.1637912277325578],[117,115,76,0.1656599009960622],[117,115,77,0.1673835649405701],[117,115,78,0.1689797801183392],[117,115,79,0.1704650943477759],[117,116,64,0.1234683121845165],[117,116,65,0.12732078068877123],[117,116,66,0.1310763109338188],[117,116,67,0.13472079981985635],[117,116,68,0.13822901916186087],[117,116,69,0.14157573709120821],[117,116,70,0.1447443205281873],[117,116,71,0.14772547864181992],[117,116,72,0.15051591435624823],[117,116,73,0.1531170741472816],[117,116,74,0.1555340004388251],[117,116,75,0.15777429062840834],[117,116,76,0.1598471664879237],[117,116,77,0.16176265740168075],[117,116,78,0.16353090062113124],[117,116,79,0.16516156143632674],[117,117,64,0.11592912610747774],[117,117,65,0.11979424356307154],[117,117,66,0.12358258512651599],[117,117,67,0.12728132548412602],[117,117,68,0.13086941714782563],[117,117,69,0.13432578951501917],[117,117,70,0.1376348671830979],[117,117,71,0.14078576018888492],[117,117,72,0.14377140983302394],[117,117,73,0.14658780678540698],[117,117,74,0.14923328440897166],[117,117,75,0.15170789004181665],[117,117,76,0.15401283677944022],[117,117,77,0.15615003810129024],[117,117,78,0.15812172749034645],[117,117,79,0.15993016500277235],[117,118,64,0.1082632615317824],[117,118,65,0.11213774139587233],[117,118,66,0.11595687877383667],[117,118,67,0.11970913018585118],[117,118,68,0.12337792724464929],[117,118,69,0.12694682710533922],[117,118,70,0.13040166836308054],[117,118,71,0.1337302066787689],[117,118,72,0.13692176046585627],[117,118,73,0.13996690354634694],[117,118,74,0.14285720632578203],[117,118,75,0.14558502692075498],[117,118,76,0.14814335355749222],[117,118,77,0.15052569944709138],[117,118,78,0.15272605123331123],[117,118,79,0.15473887200338843],[117,119,64,0.10052130724593988],[117,119,65,0.10439953697369744],[117,119,66,0.10824473221459428],[117,119,67,0.11204659856686672],[117,119,68,0.1157932478153736],[117,119,69,0.11947323036457716],[117,119,70,0.12307411341065981],[117,119,71,0.12658255309833025],[117,119,72,0.12998443705613236],[117,119,73,0.13326504966265684],[117,119,74,0.1364092602152976],[117,119,75,0.13940173413478282],[117,119,76,0.14222716730367557],[117,119,77,0.14487054360573928],[117,119,78,0.1473174157062428],[117,119,79,0.1495542090913977],[117,120,64,0.09275812432083279],[117,120,65,0.09663237681999104],[117,120,66,0.10049633165001157],[117,120,67,0.10434087229443398],[117,120,68,0.10815888550137909],[117,120,69,0.11194416601841031],[117,120,70,0.11568627223591976],[117,120,71,0.11937101867593114],[117,120,72,0.12298110372015106],[117,120,73,0.1264967372492281],[117,120,74,0.129896267020588],[117,120,75,0.1331568026472381],[117,120,76,0.13625483608048483],[117,120,77,0.1391668575455716],[117,120,78,0.14164365410997928],[117,120,79,0.1427993498283259],[117,121,64,0.08503024911131571],[117,121,65,0.08889095487703808],[117,121,66,0.0927640575220545],[117,121,67,0.09664150944103059],[117,121,68,0.10052095573819297],[117,121,69,0.10440156249290858],[117,121,70,0.10827508104229633],[117,121,71,0.11212673762034225],[117,121,72,0.1159363261832255],[117,121,73,0.1196792800504916],[117,121,74,0.12332771990290942],[117,121,75,0.12685147578082395],[117,121,76,0.13021908083748188],[117,121,77,0.13123805930591162],[117,121,78,0.13414632952838768],[117,121,79,0.13796588503383173],[117,122,64,0.07739342584776479],[117,122,65,0.08122950122845844],[117,122,66,0.0851001512317788],[117,122,67,0.08899825295052659],[117,122,68,0.09292608076289269],[117,122,69,0.09688816954691286],[117,122,70,0.10087859770455858],[117,122,71,0.10488224438012897],[117,122,72,0.10921518211110343],[117,122,73,0.11619372944581878],[117,122,74,0.12312182499713875],[117,122,75,0.12996365793355896],[117,122,76,0.13429714428993444],[117,122,77,0.13780105710410576],[117,122,78,0.1412705199111907],[117,122,79,0.14473615439523713],[117,123,64,0.06990028352637265],[117,123,65,0.07369951066175252],[117,123,66,0.0775545150637189],[117,123,67,0.08281011760616766],[117,123,68,0.0897776477606734],[117,123,69,0.09683022721006809],[117,123,70,0.10396362563284739],[117,123,71,0.11116230876343068],[117,123,72,0.11840134773721034],[117,123,73,0.12564827326793282],[117,123,74,0.1328648698854732],[117,123,75,0.13898921876818932],[117,123,76,0.14220189602577124],[117,123,77,0.14534541449329447],[117,123,78,0.14845937543432355],[117,123,79,0.15158182239035192],[117,124,64,0.07070902292784716],[117,124,65,0.07748050536303046],[117,124,66,0.08434999851602529],[117,124,67,0.09130951006323085],[117,124,68,0.09836807959855505],[117,124,69,0.10553924175535466],[117,124,70,0.11282106331546975],[117,124,71,0.12019800127325429],[117,124,72,0.12764317264692213],[117,124,73,0.13512055450904353],[117,124,74,0.1425871084749994],[117,124,75,0.14725075363061768],[117,124,76,0.15012974055196507],[117,124,77,0.15293564890895955],[117,124,78,0.15571504612357],[117,124,79,0.15851282641878683],[117,125,64,0.079373682643388],[117,125,65,0.08615323552338093],[117,125,66,0.09304715301814094],[117,125,67,0.10004768850221639],[117,125,68,0.10716742394002106],[117,125,69,0.11442442289996155],[117,125,70,0.12181897379840863],[117,125,71,0.12933569770428438],[117,125,72,0.13694613237451647],[117,125,73,0.14461123429980782],[117,125,74,0.15228379214048476],[117,125,75,0.15548995644891],[117,125,76,0.15806566979901193],[117,125,77,0.16056345275564615],[117,125,78,0.16303609082226025],[117,125,79,0.16553462805225203],[117,126,64,0.08836436028677262],[117,126,65,0.09512887087414922],[117,126,66,0.10202192017632707],[117,126,67,0.1090357752546697],[117,126,68,0.1161860633235977],[117,126,69,0.12349491357831838],[117,126,70,0.13096469749108744],[117,126,71,0.1385803413595863],[117,126,72,0.1463121750772402],[117,126,73,0.1541186891079857],[117,126,74,0.1612359031650687],[117,126,75,0.16368514649216617],[117,126,76,0.16599308114690636],[117,126,77,0.16821760700976204],[117,126,78,0.1704168814825834],[117,126,79,0.17264729358929531],[117,127,64,0.09768041102728996],[117,127,65,0.10440763455045324],[117,127,66,0.11127514796580668],[117,127,67,0.11827499121412033],[117,127,68,0.1254252894513986],[117,127,69,0.1327517026901637],[117,127,70,0.14025849577747787],[117,127,71,0.14793101032558573],[117,127,72,0.1557387273359246],[117,127,73,0.16363823054070253],[117,127,74,0.16958421380187524],[117,127,75,0.17181473388555477],[117,127,76,0.17389384377392594],[117,127,77,0.17588374472682933],[117,127,78,0.17784705409411916],[117,127,79,0.17984462850924082],[117,128,64,0.10730776560385173],[117,128,65,0.11397691167843933],[117,128,66,0.12079551451953784],[117,128,67,0.12775514251545858],[117,128,68,0.13487584874141617],[117,128,69,0.1421862505800986],[117,128,70,0.14969228295795226],[117,128,71,0.1573797856654981],[117,128,72,0.16521772968300374],[117,128,73,0.17316133888232751],[117,128,74,0.17780617096367082],[117,128,75,0.17985758672636054],[117,128,76,0.1817483912366305],[117,128,77,0.18354415215619063],[117,128,78,0.1853110067244183],[117,128,79,0.18711336648161855],[117,129,64,0.11721742821816504],[117,129,65,0.12380977203699314],[117,129,66,0.1305580818325752],[117,129,67,0.13745321050798892],[117,129,68,0.14451657924973213],[117,129,69,0.1517791920511284],[117,129,70,0.15924842054990376],[117,129,71,0.1669106659973278],[117,129,72,0.17473470224714446],[117,129,73,0.1826749106549376],[117,129,74,0.18588230070633263],[117,129,75,0.1877934113891757],[117,129,76,0.18953584039151367],[117,129,77,0.19117760772921338],[117,129,78,0.1927874450999829],[117,129,79,0.19443241352501742],[117,130,64,0.1273640987648254],[117,130,65,0.13386361264874222],[117,130,66,0.14052296270430856],[117,130,67,0.14733204555801496],[117,130,68,0.15431313949182504],[117,130,69,0.16149911741849995],[117,130,70,0.16889857441413703],[117,130,71,0.17649852886755826],[117,130,72,0.18426784085329537],[117,130,73,0.1917484973785022],[117,130,74,0.19379666213478647],[117,130,75,0.19560314599097992],[117,130,76,0.19723413675817658],[117,130,77,0.19875925915969606],[117,130,78,0.20024897611222675],[117,130,79,0.20177214784982977],[117,131,64,0.13768491977442346],[117,131,65,0.14407892071209874],[117,131,66,0.15063410135528815],[117,131,67,0.15733916512914964],[117,131,68,0.16421682960823364],[117,131,69,0.17130143203180967],[117,131,70,0.17860263510325863],[117,131,71,0.18610813927043457],[117,131,72,0.19378714386712845],[117,131,73,0.19955759973534118],[117,131,74,0.20153746305037],[117,131,75,0.20326936699274825],[117,131,76,0.20482022641369643],[117,131,77,0.20626053886864912],[117,131,78,0.20766174959030748],[117,131,79,0.20909377586114034],[117,132,64,0.1480983002232703],[117,132,65,0.15437810100691082],[117,132,66,0.16081810388690035],[117,132,67,0.16740558430919406],[117,132,68,0.1741634247693716],[117,132,69,0.18112720539957444],[117,132,70,0.18830760326667764],[117,132,71,0.19569309738809063],[117,132,72,0.2032534518217531],[117,132,73,0.2071661665138851],[117,132,74,0.2090978118279887],[117,132,75,0.2107768558801113],[117,132,76,0.2122704095493981],[117,132,77,0.21364927976256162],[117,132,78,0.21498531567675405],[117,132,79,0.21634891511531953],[117,133,64,0.15849778843601023],[117,133,65,0.16465793731930303],[117,133,66,0.17097528849499416],[117,133,67,0.1774354415334803],[117,133,68,0.1840613223746867],[117,133,69,0.1908897484985638],[117,133,70,0.1979324961237701],[117,133,71,0.20517898665806186],[117,133,72,0.2123919534708847],[117,133,73,0.21460327388108752],[117,133,74,0.2164980618248774],[117,133,75,0.21813662821934002],[117,133,76,0.2195858948595256],[117,133,77,0.2209165781223623],[117,133,78,0.22220052665165466],[117,133,79,0.223508219970247],[117,134,64,0.16876406668659],[117,134,65,0.17479975855282387],[117,134,66,0.18098797402863478],[117,134,67,0.18731237122364855],[117,134,68,0.19379587714081017],[117,134,69,0.2004766762602924],[117,134,70,0.20736783757266472],[117,134,71,0.21445996970217215],[117,134,72,0.2197532714390832],[117,134,73,0.2219360924404587],[117,134,74,0.22379962471165527],[117,134,75,0.225403544335688],[117,134,76,0.22681424309961243],[117,134,77,0.22810201169315183],[117,134,78,0.2293383771107293],[117,134,79,0.23059360122586453],[117,135,64,0.17879512049304738],[117,135,65,0.18470196640273887],[117,135,66,0.1907553027394226],[117,135,67,0.1969366013507579],[117,135,68,0.20326880299739641],[117,135,69,0.20979166315062475],[117,135,70,0.216519797778043],[117,135,71,0.22344529284335635],[117,135,72,0.2270637165359167],[117,135,73,0.2292190727692716],[117,135,74,0.23105232966275613],[117,135,75,0.23262220909429515],[117,135,76,0.23399426611493787],[117,135,77,0.23523807948013017],[117,135,78,0.23642459591545023],[117,135,79,0.23762363508582596],[117,136,64,0.18850877687811335],[117,136,65,0.1942828743713102],[117,136,66,0.20019637238363375],[117,136,67,0.2062283667382636],[117,136,68,0.212401866644123],[117,136,69,0.218758431681612],[117,136,70,0.22531449924073668],[117,136,71,0.23186466828995314],[117,136,72,0.23436312440971546],[117,136,73,0.23648862212299657],[117,136,74,0.23828872561779574],[117,136,75,0.23982091166176658],[117,136,76,0.24114962972697226],[117,136,77,0.24234350708942592],[117,136,78,0.2434727062925142],[117,136,79,0.24460644191842743],[117,137,64,0.19784253962988796],[117,137,65,0.20348047046264495],[117,137,66,0.2092499205619762],[117,137,67,0.21512749983325932],[117,137,68,0.22113637045318346],[117,137,69,0.2273201212183743],[117,137,70,0.23369727263426443],[117,137,71,0.23920789725449682],[117,137,72,0.2416737142469909],[117,137,73,0.24376417671045592],[117,137,74,0.24552520605834507],[117,137,75,0.2470127783756028],[117,137,76,0.24829000825899142],[117,137,77,0.24942437527757558],[117,137,78,0.25048510038183264],[117,137,79,0.2515406791539723],[117,138,64,0.20675383439279335],[117,138,65,0.2122525873505708],[117,138,66,0.21787441063514695],[117,138,67,0.22359341389462054],[117,138,68,0.22943301505329053],[117,138,69,0.23543901947744672],[117,138,70,0.24163225363581475],[117,138,71,0.2465742120761681],[117,138,72,0.24900080155595794],[117,138,73,0.25104902489366926],[117,138,74,0.25276292559487407],[117,138,75,0.25419676234658806],[117,138,76,0.25541212417408915],[117,138,77,0.25647518476868597],[117,138,78,0.2574541032240857],[117,138,79,0.25841657799452405],[117,139,64,0.21522066568299372],[117,139,65,0.2205774821409673],[117,139,66,0.22604852135245143],[117,139,67,0.23160548074184423],[117,139,68,0.2372721437343758],[117,139,69,0.2430966588348445],[117,139,70,0.24910232282786526],[117,139,71,0.25395356580575495],[117,139,72,0.2563332235730157],[117,139,73,0.2583308795277954],[117,139,74,0.25998850674124413],[117,139,75,0.2613584683684737],[117,139,76,0.2625006716321209],[117,139,77,0.26347985641259547],[117,139,78,0.264363025560934],[117,139,79,0.26521702363939453],[117,140,64,0.22324268791578883],[117,140,65,0.22845482783148707],[117,140,66,0.23377204230052773],[117,140,67,0.23916380516637328],[117,140,68,0.24465437075859445],[117,140,69,0.2502942794977995],[117,140,70,0.25610939067308663],[117,140,71,0.2613186167889703],[117,140,72,0.2636434754648071],[117,140,73,0.2655821977435247],[117,140,74,0.26717453533927576],[117,140,75,0.2684708117890062],[117,140,76,0.2695291228426308],[117,140,77,0.27041266581485623],[117,140,78,0.2711872048617419],[117,140,79,0.27191867875020087],[117,141,64,0.2308426925520285],[117,141,65,0.23590711857904756],[117,141,66,0.2410671772744348],[117,141,67,0.24629039808989303],[117,141,68,0.25160159563342266],[117,141,69,0.25705366155237924],[117,141,70,0.26267502951270844],[117,141,71,0.26847173411749636],[117,141,72,0.27088755556752475],[117,141,73,0.272760246547219],[117,141,74,0.27427984316959997],[117,141,75,0.2754945100673362],[117,141,76,0.27646041615546413],[117,141,77,0.27723911162397274],[117,141,78,0.2778950340315638],[117,141,79,0.2784931499029669],[117,142,64,0.23806851351504732],[117,142,65,0.24298149091753057],[117,142,66,0.24798025769267298],[117,142,67,0.25303075056015967],[117,142,68,0.25815840539524837],[117,142,69,0.2634183278786813],[117,142,70,0.2688414545057931],[117,142,71,0.2744364877869853],[117,142,72,0.2780045179563043],[117,142,73,0.279806912671445],[117,142,74,0.28124957634562975],[117,142,75,0.28237840580349827],[117,142,76,0.283247524887979],[117,142,77,0.28391671671151586],[117,142,78,0.28444897729467195],[117,142,79,0.2849081968000687],[117,143,64,0.2449803967907412],[117,143,65,0.24973741943948918],[117,143,66,0.2545698017279504],[117,143,67,0.25944229758464316],[117,143,68,0.2643809929333707],[117,143,69,0.26944297796349187],[117,143,70,0.2746615433850025],[117,143,71,0.2800479873216568],[117,143,72,0.2849250821969893],[117,143,73,0.2866564788910485],[117,143,74,0.288022051744005],[117,143,75,0.2890653186990146],[117,143,76,0.28983822443001084],[117,143,77,0.29039863646940206],[117,143,78,0.2908079542509004],[117,143,79,0.29112883705234227],[117,144,64,0.2515976606152416],[117,144,65,0.2561947349970646],[117,144,66,0.26085612473017605],[117,144,67,0.26554588974591464],[117,144,68,0.2702907898144719],[117,144,69,0.27514960752566536],[117,144,70,0.2801577848253963],[117,144,71,0.28532909793942013],[117,144,72,0.2906585288037556],[117,144,73,0.2932661508597225],[117,144,74,0.2945551083229629],[117,144,75,0.29551393431961426],[117,144,76,0.29619226714094593],[117,144,77,0.29664591096329496],[117,144,78,0.2969345085841183],[117,144,79,0.2971193235524291],[117,145,64,0.2579260462489419],[117,145,65,0.2623600313875789],[117,145,66,0.266846712570464],[117,145,67,0.27135001649093177],[117,145,68,0.2758974001124434],[117,145,69,0.28054899541871453],[117,145,70,0.2853421454940141],[117,145,71,0.29029294491440305],[117,145,72,0.29539898305984186],[117,145,73,0.2996022224408034],[117,145,74,0.30081466294461745],[117,145,75,0.3016899403495684],[117,145,76,0.30227527789746417],[117,145,77,0.302624282617179],[117,145,78,0.30279469003130216],[117,145,79,0.30284620792179345],[117,146,64,0.26397006630202696],[117,146,65,0.26823863009581955],[117,146,66,0.2725477533529294],[117,146,67,0.2768618431538581],[117,146,68,0.28120907328384687],[117,146,69,0.2856505387887137],[117,146,70,0.2902251913589273],[117,146,71,0.2949512439699672],[117,146,72,0.29982877393294427],[117,146,73,0.3048422725730232],[117,146,74,0.30676922924308697],[117,146,75,0.3075616186996905],[117,146,76,0.30805547531631106],[117,146,77,0.30830209331283104],[117,146,78,0.3083571636895168],[117,146,79,0.3082786868284742],[117,147,64,0.26973289630466707],[117,147,65,0.27383445960259184],[117,147,66,0.27796400363295487],[117,147,67,0.2820870618314056],[117,147,68,0.28623253838562485],[117,147,69,0.2904620718786314],[117,147,70,0.29481589477462034],[117,147,71,0.29931410259229185],[117,147,72,0.3039591054695371],[117,147,73,0.30873803572862296],[117,147,74,0.31239010714203774],[117,147,75,0.31309999914066344],[117,147,76,0.31350377660933637],[117,147,77,0.31365032722021313],[117,147,78,0.3135931775944439],[117,147,79,0.31338848147350046],[117,148,64,0.27521630732612834],[117,148,65,0.2791499778448173],[117,148,66,0.2830986993036857],[117,148,67,0.28702978851387523],[117,148,68,0.2909728860960095],[117,148,69,0.29498973351023855],[117,148,70,0.29912148991740006],[117,148,71,0.3033898677481347],[117,148,72,0.30779942290839746],[117,148,73,0.31233981081974016],[117,148,74,0.31698800297661356],[117,148,75,0.3182789924722522],[117,148,76,0.31859389476118977],[117,148,77,0.31864266087121723],[117,148,78,0.31847655442060124],[117,148,79,0.31814975980458843],[117,149,64,0.28042063975184295],[117,149,65,0.2841861379453326],[117,149,66,0.2879535112766286],[117,149,67,0.2916925066062115],[117,149,68,0.2954334986817658],[117,149,69,0.29923788339365043],[117,149,70,0.3031473767237597],[117,149,71,0.3071850201565069],[117,149,72,0.3113573013776497],[117,149,73,0.3156562509989956],[117,149,74,0.3200615105158446],[117,149,75,0.3230755031853711],[117,149,76,0.3233024280434504],[117,149,77,0.32325552056106355],[117,149,78,0.3229837074721124],[117,149,79,0.3225391017245965],[117,150,64,0.28534481833181596],[117,150,65,0.2889423973337872],[117,150,66,0.292528546084148],[117,150,67,0.2960760569738427],[117,150,68,0.29961602805376664],[117,150,69,0.303209067411753],[117,150,70,0.30689707348018114],[117,150,71,0.3107041152580924],[117,150,72,0.31463837739177364],[117,150,73,0.3186940917087306],[117,150,74,0.3228534509533401],[117,150,75,0.3270885005654875],[117,150,76,0.3276089418839381],[117,150,77,0.3274681471630855],[117,150,78,0.32709368112942955],[117,150,79,0.3265355075523934],[117,151,64,0.289986408619562],[117,151,65,0.2934167703848539],[117,151,66,0.29682239153521794],[117,151,67,0.30017967465024736],[117,151,68,0.30352042205353674],[117,151,69,0.306904032025763],[117,151,70,0.31037221821014926],[117,151,71,0.313949771021928],[117,151,72,0.3176463232745386],[117,151,73,0.32145811279241066],[117,151,74,0.325369738309675],[117,151,75,0.32935590502072193],[117,151,76,0.33149604311317976],[117,151,77,0.33126266844320645],[117,151,78,0.3307882159140331],[117,151,79,0.330120449985125],[117,152,64,0.29434171493074884],[117,152,65,0.2976059247091124],[117,152,66,0.30083220756377843],[117,152,67,0.3040010723498809],[117,152,68,0.3071449991186764],[117,152,69,0.31032178795183646],[117,152,70,0.3135726190061204],[117,152,71,0.31692270272907525],[117,152,72,0.32038286463243487],[117,152,73,0.3239511375550218],[117,152,74,0.32761435826759094],[117,152,75,0.33134976531269134],[117,152,76,0.3349494466146116],[117,152,77,0.33462417896325847],[117,152,78,0.33405183833305446],[117,152,79,0.3332779698065685],[117,153,64,0.2984059199621613],[117,153,65,0.30150532124265617],[117,153,66,0.3045538624186643],[117,153,67,0.3075365709385033],[117,153,68,0.3104865714821235],[117,153,69,0.31345972326414395],[117,153,70,0.31649635345790733],[117,153,71,0.31962180487486946],[117,153,72,0.32284784100315106],[117,153,73,0.3261740688718986],[117,153,74,0.3295893771412786],[117,153,75,0.3330733868334791],[117,153,76,0.3365979121478028],[117,153,77,0.3375408276642587],[117,153,78,0.33687197566579524],[117,153,79,0.3359948155831702],[117,154,64,0.3021732662262507],[117,154,65,0.30510939829553735],[117,154,66,0.30798211435715767],[117,154,67,0.31078127702492675],[117,154,68,0.3135406170709436],[117,154,69,0.31631376608903833],[117,154,70,0.3191399173363847],[117,154,71,0.3220442803367515],[117,154,72,0.32503930980694873],[117,154,73,0.32812596244664705],[117,154,74,0.3312949795254771],[117,154,75,0.33452819319289945],[117,154,76,0.33779985443919486],[117,154,77,0.34000391322389045],[117,154,78,0.3392390958563529],[117,154,79,0.3382606275895897],[117,155,64,0.3056372794741164],[117,155,65,0.30841179973628174],[117,155,66,0.3111108390204642],[117,155,67,0.31372930785343783],[117,155,68,0.3163015002844151],[117,155,69,0.31887859706758404],[117,155,70,0.32149842270224566],[117,155,71,0.3241858169633907],[117,155,72,0.3269536937351126],[117,155,73,0.32980413732269054],[117,155,74,0.33272953469083],[117,155,75,0.3357137420445846],[117,155,76,0.3387332841488883],[117,155,77,0.3417585847732062],[117,155,78,0.3411468726806211],[117,155,79,0.34006816620879465],[117,156,64,0.308791034299384],[117,156,65,0.3114056475089968],[117,156,66,0.31393330268791786],[117,156,67,0.31637406369374926],[117,156,68,0.3187627418477336],[117,156,69,0.32114791177885854],[117,156,70,0.3235658456228624],[117,156,71,0.32604081175186866],[117,156,72,0.32858597171811077],[117,156,73,0.3312043237585684],[117,156,74,0.33388969179463157],[117,156,75,0.33662775880899287],[117,156,76,0.33939714343960664],[117,156,77,0.34217051859863834],[117,156,78,0.3425923763608831],[117,156,79,0.3414135850569708],[117,157,64,0.3116274621380706],[117,157,65,0.3140838587020462],[117,157,66,0.31644248162850314],[117,157,67,0.31870854794633363],[117,157,68,0.3209173379576936],[117,157,69,0.3231147333351629],[117,157,70,0.32533532369718304],[117,157,71,0.32760264279420126],[117,157,72,0.32992991362774365],[117,157,73,0.3323208485855542],[117,157,74,0.33477050398109803],[117,157,75,0.3372661883146806],[117,157,76,0.33978842351112837],[117,157,77,0.3423119583364653],[117,157,78,0.34357628980812904],[117,157,79,0.3422967490919139],[117,158,64,0.31413970190502294],[117,158,65,0.31643950741271465],[117,158,66,0.3186314277931746],[117,158,67,0.32072573520519493],[117,158,68,0.322758128960098],[117,158,69,0.3247717753823895],[117,158,70,0.32679950360887816],[117,158,71,0.32886398919227555],[117,158,72,0.33097835888228133],[117,158,73,0.33314685817727246],[117,158,74,0.335365581452475],[117,158,75,0.33762326438223705],[117,158,76,0.339902138293752],[117,158,77,0.3421788460184643],[117,158,78,0.3441031506809657],[117,158,79,0.3427215979749541],[117,159,64,0.31632149353501754],[117,159,65,0.3184662316799078],[117,159,66,0.32049368111861865],[117,159,67,0.3224189875467441],[117,159,68,0.3242782178245181],[117,159,69,0.3261118557634974],[117,159,70,0.3279509389507901],[117,159,71,0.3298171991605334],[117,159,72,0.3317235391405203],[117,159,73,0.3336745791739796],[117,159,74,0.3356672736008036],[117,159,75,0.3376915973790273],[117,159,76,0.33973130267114654],[117,159,77,0.34176474535223256],[117,159,78,0.3437657812589484],[117,159,79,0.3426965549699825],[117,160,64,0.3181676147270242],[117,160,65,0.3201586857875909],[117,160,66,0.32202372874343416],[117,160,67,0.32378251934332924],[117,160,68,0.3254714387113283],[117,160,69,0.32712836113122556],[117,160,70,0.32878253859008505],[117,160,71,0.33045470655939096],[117,160,72,0.3321574452908168],[117,160,73,0.3338956171199693],[117,160,74,0.3356668803010111],[117,160,75,0.33746227977828425],[117,160,76,0.33926691519093305],[117,160,77,0.3410606863044144],[117,160,78,0.34281911597003256],[117,160,79,0.342234981679779],[117,161,64,0.3196743612232346],[117,161,65,0.32151303827518884],[117,161,66,0.323217511471005],[117,161,67,0.3248119109329601],[117,161,68,0.3263328759584399],[117,161,69,0.32781576282766095],[117,161,70,0.3292880658731594],[117,161,71,0.33076949612926365],[117,161,72,0.332272238964281],[117,161,73,0.3338012931910339],[117,161,74,0.3353548924789868],[117,161,75,0.33692500976302],[117,161,76,0.3384979452217778],[117,161,77,0.340054998283912],[117,161,78,0.34157322401485385],[117,161,79,0.34135567893939806],[117,162,64,0.32084007098931944],[117,162,65,0.32252751602657487],[117,162,66,0.32407297784865174],[117,162,67,0.32550467151187845],[117,162,68,0.3268594338499353],[117,162,69,0.3281701843821079],[117,162,70,0.3294626890013655],[117,162,71,0.33075561772421586],[117,162,72,0.3320607088265167],[117,162,73,0.33338301920909463],[117,162,74,0.3347212620825515],[117,162,75,0.33606823292274235],[117,162,76,0.3374113245160288],[117,162,77,0.3387331317880645],[117,162,78,0.34001214699305343],[117,162,79,0.34008343420787435],[117,163,64,0.32166569270040557],[117,163,65,0.32320299484802495],[117,163,66,0.3245906862714213],[117,163,67,0.3258608516553513],[117,163,68,0.32705045756729667],[117,163,69,0.32819002101636285],[117,163,70,0.32930358294448253],[117,163,71,0.3304087498771914],[117,163,72,0.3315167719310794],[117,163,73,0.3326327111645776],[117,163,74,0.33375570160025597],[117,163,75,0.3348793021006656],[117,163,76,0.33599194313858427],[117,163,77,0.33707746836794006],[117,163,78,0.3381157717752158],[117,163,79,0.33844961582452493],[117,164,64,0.3221522354073908],[117,164,65,0.3235401623929726],[117,164,66,0.32477069667199215],[117,164,67,0.3258796717165888],[117,164,68,0.32690410524038627],[117,164,69,0.32787206774846267],[117,164,70,0.32880583110998796],[117,164,71,0.32972189704161836],[117,164,72,0.3306309923228036],[117,164,73,0.33153815796557784],[117,164,74,0.3324429338885184],[117,164,75,0.33333964049122317],[117,164,76,0.33421775837680145],[117,164,77,0.33506240732711046],[117,164,78,0.3358549255004204],[117,164,79,0.3364970167304527],[117,165,64,0.32228147897554194],[117,165,65,0.3235183074178574],[117,165,66,0.3245896419943753],[117,165,67,0.32553494836632785],[117,165,68,0.326391204310242],[117,165,69,0.32718398434355705],[117,165,70,0.3279337642155853],[117,165,71,0.3286559349449673],[117,165,72,0.32936071425664415],[117,165,73,0.33005315534629653],[117,165,74,0.33073325473840953],[117,165,75,0.3313961608441245],[117,165,76,0.33203248466898],[117,165,77,0.3326287139701727],[117,165,78,0.333167732019784],[117,165,79,0.3336294419961639],[117,166,64,0.32203224000537084],[117,166,65,0.32311324385693263],[117,166,66,0.32402028333073357],[117,166,67,0.3247962788125434],[117,166,68,0.3254780698115754],[117,166,69,0.3260887358959919],[117,166,70,0.326646991170119],[117,166,71,0.32716717784966304],[117,166,72,0.3276590895373309],[117,166,73,0.32812789523933605],[117,166,74,0.3285741661108614],[117,166,75,0.3289940067518381],[117,166,76,0.32937929271104127],[117,166,77,0.3297180156982229],[117,166,78,0.32999473785250466],[117,166,79,0.33019115627229095],[117,167,64,0.3213909406685793],[117,167,65,0.32230905385473163],[117,167,66,0.32304434967701445],[117,167,67,0.32364295592472087],[117,167,68,0.32414147481985134],[117,167,69,0.324560554989918],[117,167,70,0.32491725106175806],[117,167,71,0.32522498673739303],[117,167,72,0.32549328307323444],[117,167,73,0.3257275911876567],[117,167,74,0.3259292316201654],[117,167,75,0.3260954423914694],[117,167,76,0.3262195376425675],[117,167,77,0.32629117856427536],[117,167,78,0.32629675816820597],[117,167,79,0.32621990129788175],[117,168,64,0.3203498015531203],[117,168,65,0.3210962568108629],[117,168,66,0.32165068044275763],[117,168,67,0.3220620874385508],[117,168,68,0.3223667491639685],[117,168,69,0.32258301820300744],[117,168,70,0.3227264621851982],[117,168,71,0.3228097830149578],[117,168,72,0.32284244169556386],[117,168,73,0.3228303917368605],[117,168,74,0.32277592362387114],[117,168,75,0.3226776226414974],[117,168,76,0.3225304421705414],[117,168,77,0.3223258943942783],[117,168,78,0.322052360184483],[117,168,79,0.32169551977312655],[117,169,64,0.3189048375924447],[117,169,65,0.3194697744127546],[117,169,66,0.3198331584398278],[117,169,67,0.32004650100264953],[117,169,68,0.3201456603424205],[117,169,69,0.3201469029067785],[117,169,70,0.32006455178699933],[117,169,71,0.31991084613823934],[117,169,72,0.31969545318501075],[117,169,73,0.3194250935934899],[117,169,74,0.3191032829641423],[117,169,75,0.3187301920069426],[117,169,76,0.31830262777163676],[117,169,77,0.31781413811891923],[117,169,78,0.31725524143694916],[117,169,79,0.3166137834333122],[117,170,64,0.31705372147678546],[117,170,65,0.3174267625652022],[117,170,66,0.3175885103028204],[117,170,67,0.31759251791378573],[117,170,68,0.3174741652386387],[117,170,69,0.3172479183162119],[117,170,70,0.31692716523125525],[117,170,71,0.31652399782235496],[117,170,72,0.31604860121878076],[117,170,73,0.3155087622869444],[117,170,74,0.3149095000405922],[117,170,75,0.3142528208671263],[117,170,76,0.31353760122134],[117,170,77,0.31275960023932076],[117,170,78,0.3119116045312709],[117,170,79,0.31098370722461466],[117,171,64,0.314793512961849],[117,171,65,0.3149643086758455],[117,171,66,0.314913972852155],[117,171,67,0.3146975941110224],[117,171,68,0.31435003127321975],[117,171,69,0.3138843095027834],[117,171,70,0.3133132533861114],[117,171,71,0.31264917173539636],[117,171,72,0.3119031152429264],[117,171,73,0.31108425945787577],[117,171,74,0.310199416465365],[117,171,75,0.3092526784338317],[117,171,76,0.3082451959828538],[117,171,77,0.30717509411153365],[117,171,78,0.30603752821943936],[117,171,79,0.30482488255008217],[117,172,64,0.3121182523378245],[117,172,65,0.3120769926034484],[117,172,66,0.31180482375951696],[117,172,67,0.3113578268492686],[117,172,68,0.31077032548286215],[117,172,69,0.31005433293981166],[117,172,70,0.3092225368897363],[117,172,71,0.30828786743513237],[117,172,72,0.3072626141412488],[117,172,73,0.3061576757670295],[117,172,74,0.30498194642725057],[117,172,75,0.30374184168864493],[117,172,76,0.3024409678744882],[117,172,77,0.3010799376249518],[117,172,78,0.2996563345366502],[117,172,79,0.2981648294865547],[117,173,64,0.30901641616493664],[117,173,65,0.30875430941921145],[117,173,66,0.30825177471941867],[117,173,67,0.30756532531819947],[117,173,68,0.30672876986323705],[117,173,69,0.30575360199909346],[117,173,70,0.3046528458078312],[117,173,71,0.3034404871656487],[117,173,72,0.30213044243437515],[117,173,73,0.30073566828604886],[117,173,74,0.2992674167647328],[117,173,75,0.2977346394470836],[117,173,76,0.2961435443187605],[117,173,77,0.29449730873973046],[117,173,78,0.29279595163020716],[117,173,79,0.29103636777276676],[117,174,64,0.30546823322155875],[117,174,65,0.30497795197095706],[117,174,66,0.3042382251708751],[117,174,67,0.303305443313934],[117,174,68,0.302212961156336],[117,174,69,0.30097230066377373],[117,174,70,0.29959733304422487],[117,174,71,0.29810355398467464],[117,174,72,0.29650689760144416],[117,174,73,0.2948227010962784],[117,174,74,0.293064824618551],[117,174,75,0.29124493057425493],[117,174,76,0.28937192636010467],[117,174,77,0.28745157423844897],[117,174,78,0.2854862718081603],[117,174,79,0.2834750062708667],[117,175,64,0.3014573390254147],[117,175,65,0.3007332707731286],[117,175,66,0.2997514430314647],[117,175,67,0.29856758103040926],[117,175,68,0.29721467910657706],[117,175,69,0.2957048706395044],[117,175,70,0.2940534033397473],[117,175,71,0.2922777401604592],[117,175,72,0.2903962137688863],[117,175,73,0.28842684245239997],[117,175,74,0.2863863123746634],[117,175,75,0.28428913081902984],[117,175,76,0.28214695477431045],[117,175,77,0.2799680989350889],[117,175,78,0.27775722690738264],[117,175,79,0.2755152291334046],[117,176,64,0.29701718294386503],[117,176,65,0.2960551951029011],[117,176,66,0.2948277446226296],[117,176,67,0.29338931755924463],[117,176,68,0.291772620285103],[117,176,69,0.2899909582956367],[117,176,70,0.28806145824072216],[117,176,71,0.2860039789248108],[117,176,72,0.2838396039841336],[117,176,73,0.2815893075967913],[117,176,74,0.27927279856642495],[117,176,75,0.27690754782165494],[117,176,76,0.2745080040706692],[117,176,77,0.2720850020458956],[117,176,78,0.26964536747029383],[117,176,79,0.26719172257744533],[117,177,64,0.29219549033299147],[117,177,65,0.29099318128136875],[117,177,66,0.28951821344134326],[117,177,67,0.28782324117522784],[117,177,68,0.2859407275629488],[117,177,69,0.28388566721135283],[117,177,70,0.2816775212133405],[117,177,71,0.27933892603010063],[117,177,72,0.2768940248304573],[117,177,73,0.27436698398359705],[117,177,74,0.2717807004703826],[117,177,75,0.2691557056592977],[117,177,76,0.2665092705688532],[117,177,77,0.26385471741175587],[117,177,78,0.26120094189022147],[117,177,79,0.25855215038961066],[117,178,64,0.2870403851129284],[117,178,65,0.28559742471775956],[117,178,66,0.2838750770666196],[117,178,67,0.28192358292752195],[117,178,68,0.27977518619822944],[117,178,69,0.2774470341413488],[117,178,70,0.2749613198573708],[117,178,71,0.27234378066370385],[117,178,72,0.2696218714295674],[117,178,73,0.2668231353789647],[117,178,74,0.2639737785407634],[117,178,75,0.26109745368508924],[117,178,76,0.25821425923956787],[117,178,77,0.2553399583303833],[117,178,78,0.252485422744691],[117,178,79,0.24965630626599397],[117,179,64,0.2815998033903789],[117,179,65,0.279918190874552],[117,179,66,0.27795093779810914],[117,179,67,0.2757453266498472],[117,179,68,0.2733333913748511],[117,179,69,0.27073483198229475],[117,179,70,0.2679749028615601],[117,179,71,0.2650826964134338],[117,179,72,0.26208916458239445],[117,179,73,0.2590253500582678],[117,179,74,0.2559208337200073],[117,179,75,0.25280240453431835],[117,179,76,0.24969295775526784],[117,179,77,0.2466106269009396],[117,179,78,0.24356815461288459],[117,179,79,0.2405725071370296],[117,180,64,0.27592089048593144],[117,180,65,0.27400513080075234],[117,180,66,0.27179799109411074],[117,180,67,0.26934331175937193],[117,180,68,0.2666729154784483],[117,180,69,0.26380938191511416],[117,180,70,0.26078127844884486],[117,180,71,0.2576212291516687],[117,180,72,0.25436379347693727],[117,180,73,0.2510435664194841],[117,180,74,0.24769350708490653],[117,180,75,0.2443435022264267],[117,180,76,0.2410191709212937],[117,180,77,0.23774091616817525],[117,180,78,0.23452322879584428],[117,180,79,0.23137424868537765],[117,181,64,0.2700493809128956],[117,181,65,0.26790658076045065],[117,181,66,0.26546723132665084],[117,181,67,0.262771328359277],[117,181,68,0.2598504746296713],[117,181,69,0.2567303742600216],[117,181,70,0.2534430738796929],[117,181,71,0.2500248214543851],[117,181,72,0.2465138136449756],[117,181,73,0.2429481757781525],[117,181,74,0.23936418169515342],[117,181,75,0.2357947203477918],[117,181,76,0.23226801560600957],[117,181,77,0.2288066053317222],[117,181,78,0.22542658536331492],[117,181,79,0.22213712364759022],[117,182,64,0.264028960827683],[117,182,65,0.26166884545532343],[117,182,66,0.2590076443419648],[117,182,67,0.256081204130212],[117,182,68,0.25292089396515743],[117,182,69,0.24955569755206175],[117,182,70,0.24602121555401893],[117,182,71,0.2423573231455529],[117,182,72,0.2386057998264754],[117,182,73,0.2348082020897427],[117,182,74,0.23100398649526854],[117,182,75,0.2272288902884555],[117,182,76,0.2235135762806194],[117,182,77,0.2198825482819855],[117,182,78,0.21635334295016043],[117,182,79,0.21293600349194905],[117,183,64,0.2579006124454988],[117,183,65,0.2553354643118899],[117,183,66,0.25246538628629467],[117,183,67,0.24932188246739978],[117,183,68,0.2459360711285514],[117,183,69,0.24234027531817093],[117,183,70,0.23857362922757538],[117,183,71,0.23467954753591078],[117,183,72,0.2307032533830886],[117,183,73,0.22668955833259438],[117,183,74,0.22268090211356115],[117,183,75,0.21871565950431054],[117,183,76,0.2148267212835325],[117,183,77,0.21104035573395194],[117,183,78,0.20737535674050467],[117,183,79,0.20384248408478242],[117,184,64,0.251701939890303],[117,184,65,0.24894646027811135],[117,184,66,0.24588294813041758],[117,184,67,0.2425384912940329],[117,184,68,0.23894393740881656],[117,184,69,0.235134910013595],[117,184,70,0.23115395983852988],[117,184,71,0.22704786290907347],[117,184,72,0.22286506389125738],[117,184,73,0.21865337927982478],[117,184,74,0.21445796840385856],[117,184,75,0.21031957978574503],[117,184,76,0.20627307994127173],[117,184,77,0.2023462712550231],[117,184,78,0.19855900510988336],[117,184,79,0.19492259599657508],[117,185,64,0.24546647592417697],[117,185,65,0.2425375705488854],[117,185,66,0.2392983053013216],[117,185,67,0.23577140195736948],[117,185,68,0.23198741594038735],[117,185,69,0.22798513355538186],[117,185,70,0.2238103104236493],[117,185,71,0.2195128187967326],[117,185,72,0.21514402454059614],[117,185,73,0.2107544303912028],[117,185,74,0.20639159358672748],[117,185,75,0.2020983255337518],[117,185,76,0.19791118070737973],[117,185,77,0.19385924152197223],[117,185,78,0.18996320544408762],[117,185,79,0.18623478015646616],[117,186,64,0.23922296897821801],[117,186,65,0.23613945861596974],[117,186,66,0.23274405180575758],[117,186,67,0.22905527759144684],[117,186,68,0.2251033763592637],[117,186,69,0.220930063873473],[117,186,70,0.21658399959093633],[117,186,71,0.21211780657822457],[117,186,72,0.2075854009642062],[117,186,73,0.20303959256572526],[117,186,74,0.1985299648664499],[117,186,75,0.19410104207470924],[117,186,76,0.18979075052213162],[117,186,77,0.185629181194901],[117,186,78,0.18163765971745316],[117,186,79,0.17782812963873834],[117,187,64,0.23299464988678917],[117,187,65,0.2297769070167766],[117,187,66,0.2262465182099713],[117,187,67,0.222418110311505],[117,187,68,0.21832158529290308],[117,187,69,0.21400126688755927],[117,187,70,0.20950833700864174],[117,187,71,0.2048977539398208],[117,187,72,0.2002255531362422],[117,187,73,0.19554642251430218],[117,187,74,0.19091156042992533],[117,187,75,0.18636682408711444],[117,187,76,0.18195117565080665],[117,187,77,0.17769543286418296],[117,187,78,0.17362133049465484],[117,187,79,0.16974089845906182],[117,188,64,0.22679847770700315],[117,188,65,0.22346799013598537],[117,188,66,0.2198248728203795],[117,188,67,0.2158802465876804],[117,188,68,0.21166365204731294],[117,188,69,0.20722162330794744],[117,188,70,0.2026074163668264],[117,188,71,0.19787785273328978],[117,188,72,0.1930906099858696],[117,188,73,0.18830178853697435],[117,188,74,0.18356376277124042],[117,188,75,0.17892332426479157],[117,188,76,0.17442012432393167],[117,188,77,0.1700854226069282],[117,188,78,0.16594114811557523],[117,188,79,0.16199927836845365],[117,189,64,0.2206443639885553],[117,189,65,0.21722322639683114],[117,189,66,0.2134902053941853],[117,189,67,0.20945340013218383],[117,189,68,0.20514196884500774],[117,189,69,0.20060419965409373],[117,189,70,0.19589492527000985],[117,189,71,0.1910723197844342],[117,189,72,0.18619519639856172],[117,189,73,0.1813205815232431],[117,189,74,0.17650157333365699],[117,189,75,0.17178549240415167],[117,189,76,0.16721233158191207],[117,189,77,0.16281351178498052],[117,189,78,0.15861094993493402],[117,189,79,0.15461644476147554],[117,190,64,0.21453437484406854],[117,190,65,0.21104470916393145],[117,190,66,0.20724459269553092],[117,190,67,0.2031396516236127],[117,190,68,0.19875864496101453],[117,190,69,0.19415112288373804],[117,190,70,0.18937297152635113],[117,190,71,0.1844831902188641],[117,190,72,0.17954121230381379],[117,190,73,0.17460450103564817],[117,190,74,0.16972642851732755],[117,190,75,0.1649544451759845],[117,190,76,0.16032854681670794],[117,190,77,0.1558800458246519],[117,190,78,0.15163065261475883],[117,190,79,0.14759187295962164],[117,191,64,0.20846191015724402],[117,191,65,0.204925215666835],[117,191,66,0.20108014520208012],[117,191,67,0.19693043458456527],[117,191,68,0.1925044341012167],[117,191,69,0.18785245802899772],[117,191,70,0.18303092531056606],[117,191,71,0.17809914289441886],[117,191,72,0.17311666358299704],[117,191,73,0.1681409163857587],[117,191,74,0.16322511716620616],[117,191,75,0.15841646692495207],[117,191,76,0.15375464460449745],[117,191,77,0.14927060083900645],[117,191,78,0.14498565860798926],[117,191,79,0.1409109262905818],[117,192,64,0.20241085925679755],[117,192,65,0.1988472932446777],[117,192,66,0.19497803426038876],[117,192,67,0.1908055067258266],[117,192,68,0.18635765436947732],[117,192,69,0.18168508824482646],[117,192,70,0.1768442766957801],[117,192,71,0.17189435755880195],[117,192,72,0.16689454457349936],[117,192,73,0.16190180266948276],[117,192,74,0.15696879972244523],[117,192,75,0.15214214193337],[117,192,76,0.14746089953645208],[117,192,77,0.14295542908719114],[117,192,78,0.13864649812608207],[117,192,79,0.1345447175594496],[117,193,64,0.19635473237761095],[117,193,65,0.19278232220653957],[117,193,66,0.18890749898525494],[117,193,67,0.18473190607123302],[117,193,68,0.18028310017633045],[117,193,69,0.17561159668898238],[117,193,70,0.17077350807280903],[117,193,71,0.16582740338605476],[117,193,72,0.1608317719943739],[117,193,73,0.15584275179376186],[117,193,74,0.15091212931969095],[117,193,75,0.14608561868850975],[117,193,76,0.14140142587811225],[117,193,77,0.13688910441024432],[117,193,78,0.1325687080503731],[117,193,79,0.12845024569679803],[117,194,64,0.19025576722673943],[117,194,65,0.1866895545994181],[117,194,66,0.18282483219848733],[117,194,67,0.17866289118197548],[117,194,68,0.17423094545261042],[117,194,69,0.1695791496711174],[117,194,70,0.1647629810038998],[117,194,71,0.1598401585864191],[117,194,72,0.15486817017427884],[117,194,73,0.1499020585990499],[117,194,74,0.14499247517769684],[117,194,75,0.14018400680394585],[117,194,76,0.13551378302071104],[117,194,77,0.13101036893807677],[117,194,78,0.12669294942508416],[117,194,79,0.12257080956953598],[117,195,64,0.18406456875801577],[117,195,65,0.18051575764010963],[117,195,66,0.1766730401292112],[117,195,67,0.17253762462182526],[117,195,68,0.16813646009113564],[117,195,69,0.1635192612419226],[117,195,70,0.15874076855281474],[117,195,71,0.1538577329831731],[117,195,72,0.1489265079386613],[117,195,73,0.14400089647667386],[117,195,74,0.13913026067428225],[117,195,75,0.1343578996700666],[117,195,76,0.1297197024715076],[117,195,77,0.12524308119480218],[117,195,78,0.12094618997768393],[117,195,79,0.11683743438186885],[117,196,64,0.17640406686297946],[117,196,65,0.1742265257314078],[117,196,66,0.17041641991032774],[117,196,67,0.1663189460610677],[117,196,68,0.16196090404150348],[117,196,69,0.15739159209918513],[117,196,70,0.15266500357983845],[117,196,71,0.1478368806036776],[117,196,72,0.1429623739044729],[117,196,73,0.13809395356171508],[117,196,74,0.13327957732403886],[117,196,75,0.1285611228195683],[117,196,76,0.12397308953831691],[117,196,77,0.11954157605640216],[117,196,78,0.11528353755521625],[117,196,79,0.11120632827451207],[117,197,64,0.17519363074163932],[117,197,65,0.1741753334122789],[117,197,66,0.16852128009477693],[117,197,67,0.1626258936915343],[117,197,68,0.15660041659178076],[117,197,69,0.15120825856759446],[117,197,70,0.14654928122115407],[117,197,71,0.14179219833216078],[117,197,72,0.1369908117120919],[117,197,73,0.13219609477598568],[117,197,74,0.12745442645697005],[117,197,75,0.12280608387480446],[117,197,76,0.1182839994258388],[117,197,77,0.11391278755641637],[117,197,78,0.10970804607533588],[117,197,79,0.10567593645721236],[117,198,64,0.17481108651950222],[117,198,65,0.17362202149619244],[117,198,66,0.171126105291953],[117,198,67,0.1651258744342169],[117,198,68,0.15900220829142447],[117,198,69,0.1527961403738891],[117,198,70,0.1465528476076126],[117,198,71,0.14031886616215447],[117,198,72,0.13413989873944537],[117,198,73,0.12805886403584701],[117,198,74,0.12211419457835394],[117,198,75,0.11709869694438596],[117,198,76,0.11265582801659357],[117,198,77,0.10835691335077795],[117,198,78,0.10421605061707953],[117,198,79,0.10023810077081732],[117,199,64,0.17438158924831626],[117,199,65,0.17300715094198757],[117,199,66,0.17163690866165668],[117,199,67,0.1674518405948927],[117,199,68,0.16123822976879862],[117,199,69,0.15494852775663676],[117,199,70,0.1486267841260571],[117,199,71,0.1423180490613423],[117,199,72,0.13606628145212596],[117,199,73,0.12991249249108594],[117,199,74,0.12389313068931489],[117,199,75,0.11803871384807973],[117,199,76,0.11237271314838639],[117,199,77,0.10691069413846177],[117,199,78,0.10165971901833915],[117,199,79,0.09661801424233735],[117,200,64,0.17392755269865665],[117,200,65,0.17235202857248882],[117,200,66,0.1707739905229509],[117,200,67,0.16918280492571208],[117,200,68,0.16329905252925506],[117,200,69,0.15693466529424738],[117,200,70,0.1505431176641513],[117,200,71,0.14416772812579823],[117,200,72,0.13785045054538003],[117,200,73,0.1316301269060948],[117,200,74,0.12554097300066167],[117,200,75,0.11961130230227457],[117,200,76,0.11386249287526772],[117,200,77,0.10830820182096973],[117,200,78,0.1029538313891517],[117,200,79,0.0977962505231647],[117,201,64,0.17347127015077007],[117,201,65,0.17167846844990553],[117,201,66,0.16987753776435652],[117,201,67,0.16805553811779794],[117,201,68,0.16517353232403753],[117,201,69,0.15874349581301345],[117,201,70,0.15229065660925922],[117,201,71,0.14585634768464428],[117,201,72,0.13948025001414915],[117,201,73,0.13319877064105845],[117,201,74,0.12704364352433106],[117,201,75,0.12104075803852733],[117,201,76,0.11520921965198472],[117,201,77,0.10956064696122302],[117,201,78,0.10409870891301179],[117,201,79,0.09881890570194168],[117,202,64,0.17303343127306597],[117,202,65,0.17100722418628406],[117,202,66,0.16896850958356563],[117,202,67,0.166901561727244],[117,202,68,0.1647730677015247],[117,202,69,0.16036379724987976],[117,202,70,0.15385779944883227],[117,202,71,0.14737177867039936],[117,202,72,0.14094287998591323],[117,202,73,0.13460481571661423],[117,202,74,0.12838659643325495],[117,202,75,0.12231147720551339],[117,202,76,0.11639612325503147],[117,202,77,0.11064999883907352],[117,202,78,0.10507498286657053],[117,202,79,0.09966521442626451],[117,203,64,0.1726317650524573],[117,203,65,0.17035654508554432],[117,203,66,0.16806573446133022],[117,203,67,0.1657403799310716],[117,203,68,0.16334608546402854],[117,203,69,0.1608371264857714],[117,203,70,0.15523459239796394],[117,203,71,0.14870353782274062],[117,203,72,0.14222728018454717],[117,203,73,0.13583658905448925],[117,203,74,0.1295575214709027],[117,203,75,0.12341049918922145],[117,203,76,0.11740959058548704],[117,203,77,0.11156200065656512],[117,203,78,0.10586777225911399],[117,203,79,0.10031970143170243],[117,204,64,0.17227980957090594],[117,204,65,0.16974085680754114],[117,204,66,0.16718448856515072],[117,204,67,0.16458813197554406],[117,204,68,0.1619161320742367],[117,204,69,0.15912434288802418],[117,204,70,0.1561693787500069],[117,204,71,0.14984493819506378],[117,204,72,0.14332646183821143],[117,204,73,0.13688686637323075],[117,204,74,0.130549036075495],[117,204,75,0.12433036897156588],[117,204,76,0.11824218626515105],[117,204,77,0.11228933271272218],[117,204,78,0.10646997070245028],[117,204,79,0.10077557051974669],[117,205,64,0.17198580956229428],[117,205,65,0.1691695673790888],[117,205,66,0.16633519520842846],[117,205,67,0.16345616516340905],[117,205,68,0.1604954007760555],[117,205,69,0.15741044370302457],[117,205,70,0.15416043850323652],[117,205,71,0.15070746934594506],[117,205,72,0.1442397886820593],[117,205,73,0.1377553546782364],[117,205,74,0.1313613674522636],[117,205,75,0.12507201236421583],[117,205,76,0.11889571028390652],[117,205,77,0.11283483769624267],[117,205,78,0.10688562097443222],[117,205,79,0.10103820691918303],[117,206,64,0.17175174282895678],[117,206,65,0.16864599951739678],[117,206,66,0.16552224619063152],[117,206,67,0.16234972336422981],[117,206,68,0.15908978533823784],[117,206,69,0.15570174172500426],[117,206,70,0.15214741819935565],[117,206,71,0.1483921886917527],[117,206,72,0.14440580817722792],[117,206,73,0.138451144233088],[117,206,74,0.13200502579206705],[117,206,75,0.12564762562808934],[117,206,76,0.1193842945157717],[117,206,77,0.11321481020971999],[117,206,78,0.10713337966968754],[117,206,79,0.10112879568336253],[117,207,64,0.17157423662456323],[117,207,65,0.16816775424165548],[117,207,66,0.16474393475015742],[117,207,67,0.16126758288650112],[117,207,68,0.15769836037725488],[117,207,69,0.15399739908473709],[117,207,70,0.15012933363062095],[117,207,71,0.1460630063566069],[117,207,72,0.14177205192851075],[117,207,73,0.13723536267220698],[117,207,74,0.13243743248677808],[117,207,75,0.12607845568499396],[117,207,76,0.11973139605420671],[117,207,77,0.11345516053990116],[117,207,78,0.10724183227453964],[117,207,79,0.10107879310525095],[117,208,64,0.17145115561380062],[117,208,65,0.16773214893806032],[117,208,66,0.1639971930593953],[117,208,67,0.16020658528943083],[117,208,68,0.1563182310757358],[117,208,69,0.1522951223674033],[117,208,70,0.1481047958331506],[117,208,71,0.14371969211650493],[117,208,72,0.13911747654760062],[117,208,73,0.13428126282704878],[117,208,74,0.12919973815324784],[117,208,75,0.12386718841115552],[117,208,76,0.11828342218540097],[117,208,77,0.11245359250285597],[117,208,78,0.10638791534960657],[117,208,79,0.1001012841415015],[117,209,64,0.1713793019841494],[117,209,65,0.1673357564130602],[117,209,66,0.16327861260012613],[117,209,67,0.15916373135658332],[117,209,68,0.15494726259676272],[117,209,69,0.150594077430439],[117,209,70,0.14607466486172938],[117,209,71,0.14136513223376937],[117,209,72,0.13644725019793089],[117,209,73,0.13130842436318554],[117,209,74,0.1259415927416518],[117,209,75,0.12034504821578862],[117,209,76,0.11452218535922],[117,209,77,0.10848117104627654],[117,209,78,0.10223453838555845],[117,209,79,0.09579870360728701],[117,210,64,0.17135287603399837],[117,210,65,0.16697329925160806],[117,210,66,0.1625836399943309],[117,210,67,0.15813552743359688],[117,210,68,0.15358341600074948],[117,210,69,0.14889405224082142],[117,210,70,0.1440408810904895],[117,210,71,0.13900368019890957],[117,210,72,0.1337683215414729],[117,210,73,0.12832648467687463],[117,210,74,0.12267532141790198],[117,210,75,0.116817071756823],[117,210,76,0.11075863095273544],[117,210,77,0.10451106775049743],[117,210,78,0.09808909375982885],[117,210,79,0.09151048407627263],[117,211,64,0.1713633642852126],[117,211,65,0.1666374302800796],[117,211,66,0.16190624993013203],[117,211,67,0.15711754872837677],[117,211,68,0.1522241995061558],[117,211,69,0.14719479533296856],[117,211,70,0.14200569211060105],[117,211,71,0.13664027550418778],[117,211,72,0.13108843608510548],[117,211,73,0.12534602206751388],[117,211,74,0.11941427006346302],[117,211,75,0.1132992143117056],[117,211,76,0.1070110748605122],[117,211,77,0.10056362520498953],[117,211,78,0.0939735398959467],[117,211,79,0.08725972264797467],[117,212,64,0.17139957317550353],[117,212,65,0.16631865953702762],[117,212,66,0.1612387659789955],[117,212,67,0.15610415255885604],[117,212,68,0.15086627241370246],[117,212,69,0.14549551013878156],[117,212,70,0.1399710390469395],[117,212,71,0.13427972558139006],[117,212,72,0.1284153195085831],[117,212,73,0.12237764833071532],[117,212,74,0.11617181698762705],[117,212,75,0.10980741390696114],[117,212,76,0.10329772444454781],[117,212,77,0.09665895273440109],[117,212,78,0.08990945294120314],[117,212,79,0.08306897087572056],[117,213,64,0.17144781046587626],[117,213,65,0.1660054297975324],[117,213,66,0.160571831268394],[117,213,67,0.1550883434406293],[117,213,68,0.14950520352332494],[117,213,69,0.1437945069629372],[117,213,70,0.13793810401624412],[117,213,71,0.1319261525802473],[117,213,72,0.1257560296083219],[117,213,73,0.11943127370437842],[117,213,74,0.11296056059014163],[117,213,75,0.10635671308840415],[117,213,76,0.0996357472058791],[117,213,77,0.09281595583378542],[117,213,78,0.08591703151465599],[117,213,79,0.07895922964839694],[117,214,64,0.17149221662408953],[117,214,65,0.16568434282406608],[117,214,66,0.15989453110300667],[117,214,67,0.15406179203781617],[117,214,68,0.14813538600683437],[117,214,69,0.14208901451324396],[117,214,70,0.13590702058904902],[117,214,71,0.12958260680673525],[117,214,72,0.12311647863682226],[117,214,73,0.11651554591120794],[117,214,74,0.10979168468390084],[117,214,75,0.10296056168733812],[117,214,76,0.09604052348127956],[117,214,77,0.08905155228328679],[117,214,78,0.08201429035752535],[117,214,79,0.07494913472076474],[117,215,64,0.17151524856354808],[117,215,65,0.16534053863758683],[117,215,66,0.159194669750827],[117,215,67,0.15301501012678884],[117,215,68,0.14675011082897035],[117,215,69,0.14037515302930276],[117,215,70,0.1338767492549358],[117,215,71,0.12725084878150444],[117,215,72,0.12050112796208294],[117,215,73,0.11363746518883332],[117,215,74,0.10667450333779345],[117,215,75,0.09963030241350647],[117,215,76,0.09252508496789959],[117,215,77,0.08538007671835118],[117,215,78,0.07821644463610393],[117,215,79,0.07105433461708377],[117,216,64,0.17149831822678216],[117,216,65,0.16495823021530648],[117,216,66,0.1584592037264449],[117,216,67,0.15193768384189388],[117,216,68,0.14534180093308985],[117,216,69,0.13864807118062353],[117,216,70,0.1318451200229789],[117,216,71,0.12493130201534638],[117,216,72,0.11791285711211721],[117,216,73,0.11080217734311362],[117,216,74,0.10361618724739816],[117,216,75,0.09637484125571288],[117,216,76,0.08909974103069407],[117,216,77,0.08181287558459874],[117,216,78,0.07453548680066081],[117,216,79,0.06728706278562055],[117,217,64,0.17142258860172072],[117,217,65,0.16452139612446873],[117,217,66,0.1576748340106414],[117,217,67,0.15081916758357192],[117,217,68,0.1439024085238563],[117,217,69,0.136902249026559],[117,217,70,0.12980904441563879],[117,217,71,0.12262317873004903],[117,217,72,0.1153530094058918],[117,217,73,0.10801294700079002],[117,217,74,0.10062167378558766],[117,217,75,0.0932005048185069],[117,217,76,0.08577189489732154],[117,217,77,0.0783580945578559],[117,217,78,0.07097995805584267],[117,217,79,0.06365590603341457],[117,218,64,0.17126992984553704],[117,218,65,0.16401463369266844],[117,218,66,0.15682875974135038],[117,218,67,0.14964914107031102],[117,218,68,0.14242397788583436],[117,218,69,0.13513196944271413],[117,218,70,0.12776489923246748],[117,218,71,0.1203247808767747],[117,218,72,0.1128216165011814],[117,218,73,0.1052713133717193],[117,218,74,0.0976937630234795],[117,218,75,0.09011108686530268],[117,218,76,0.08254605198993738],[117,218,77,0.07502066065648487],[117,218,78,0.0675549166456738],[117,218,79,0.06016577141828973],[117,219,64,0.1710240382629487],[117,219,65,0.16342417539276397],[117,219,66,0.15590959599405924],[117,219,67,0.14841843210470848],[117,219,68,0.140899376271961],[117,219,69,0.13333196051998117],[117,219,70,0.1257090845679153],[117,219,71,0.1180339789183162],[117,219,72,0.11031780431000013],[117,219,73,0.10257743095656693],[117,219,74,0.09483340214264596],[117,219,75,0.08710808647282815],[117,219,76,0.07942402278102384],[117,219,77,0.0718024614131072],[117,219,78,0.06426210529746847],[117,219,79,0.05681805391654744],[117,220,64,0.17067172094125846],[117,220,65,0.16273907118213704],[117,220,66,0.1549084583377396],[117,220,67,0.14712000769856456],[117,220,68,0.13932319547744335],[117,220,69,0.13149821153104196],[117,220,70,0.1236387586633574],[117,220,71,0.11574887094435683],[117,220,72,0.10784038284162786],[117,220,73,0.099930597751235],[117,220,74,0.0920401607802544],[117,220,75,0.08419114032711454],[117,220,76,0.07640532268935159],[117,220,77,0.06870272360439605],[117,220,78,0.061100320302126004],[117,220,79,0.05361100731843964],[117,221,64,0.17020434888095132],[117,221,65,0.16195253957972078],[117,221,66,0.1538202169031747],[117,221,67,0.14575013626003205],[117,221,68,0.13769282678037065],[117,221,69,0.129628965132691],[117,221,70,0.12155275225469091],[117,221,71,0.11346862477759863],[117,221,72,0.10538862262911314],[117,221,73,0.09732997360172961],[117,221,74,0.08931289995707853],[117,221,75,0.08135865180448092],[117,221,76,0.07348777164940688],[117,221,77,0.06571859415781303],[117,221,78,0.058065984830314395],[117,221,79,0.05054032092625158],[117,222,64,0.1696194814761247],[117,222,65,0.16106349028765732],[117,222,66,0.15264492273189173],[117,222,67,0.14430972358527128],[117,222,68,0.13600971197803624],[117,222,69,0.1277258885284112],[117,222,70,0.11945266514124579],[117,222,71,0.11119450580109788],[117,222,72,0.10296322047524238],[117,222,73,0.09477549145031836],[117,222,74,0.08665063733174942],[117,222,75,0.07860861957978199],[117,222,76,0.0706682960907977],[117,222,77,0.06284592596058232],[117,222,78,0.05515392919255609],[117,222,79,0.047599904739225644],[117,223,64,0.16892266519064061],[117,223,65,0.16007822116496923],[117,223,66,0.15138940918319743],[117,223,67,0.14280582541518536],[117,223,68,0.1342807732750968],[117,223,69,0.12579542635181484],[117,223,70,0.1173441477468606],[117,223,71,0.10893109329088733],[117,223,72,0.10056745731589886],[117,223,73,0.09226896428330969],[117,223,74,0.08405361160083966],[117,223,75,0.07593966858620203],[117,223,76,0.06794393615090331],[117,223,77,0.06008027138652739],[117,223,78,0.05235838084390182],[117,223,79,0.04478288590333553],[117,224,64,0.16812940924129233],[117,224,65,0.1590122923358178],[117,224,66,0.15006907116156498],[117,224,67,0.14125333931213782],[117,224,68,0.13252002478366226],[117,224,69,0.1238503380451384],[117,224,70,0.11523837046701164],[117,224,71,0.10668768807014142],[117,224,72,0.09820855103954415],[117,224,73,0.08981539063956624],[117,224,74,0.08152454892028048],[117,224,75,0.07335228621293366],[117,224,76,0.06531306101110515],[117,224,77,0.05741808642728604],[117,224,78,0.049674167007337226],[117,224,79,0.04208281927863065],[117,225,64,0.16726734103588112],[117,225,65,0.15789258016219618],[117,225,66,0.14870982488428452],[117,225,67,0.1396768785794935],[117,225,68,0.13075036837360576],[117,225,69,0.12191142249535745],[117,225,70,0.11315368359421561],[117,225,71,0.1044799143090703],[117,225,72,0.09589920711854297],[117,225,73,0.08742446156419145],[117,225,74,0.07907013425641744],[117,225,75,0.07085026666632474],[117,225,76,0.06277679529148035],[117,225,77,0.054858148363005226],[117,225,78,0.04709813284136148],[117,225,79,0.03949511502955326],[117,226,64,0.16637854401854646],[117,226,65,0.15675951372699837],[117,226,66,0.14735025083664618],[117,226,67,0.13811283088523665],[117,226,68,0.12900557656074116],[117,226,69,0.12000943265059942],[117,226,70,0.11111747058453929],[117,226,71,0.10233151827541818],[117,226,72,0.09365936989825106],[117,226,73,0.08511227189079179],[117,226,74,0.07670269058180487],[117,226,75,0.0684423664336488],[117,226,76,0.06034065945799084],[117,226,77,0.05240318993105374],[117,226,78,0.04463077810355889],[117,226,79,0.03701868617155909],[117,227,64,0.16552351413609526],[117,227,65,0.15567174079653043],[117,227,66,0.14604689765523238],[117,227,67,0.13661528404957576],[117,227,68,0.12733685407342502],[117,227,69,0.11819228307562527],[117,227,70,0.1091739988530285],[117,227,71,0.100282840204669],[117,227,72,0.091525269591552],[117,227,73,0.08291087016627946],[117,227,74,0.07445013256327238],[117,227,75,0.06615253640880424],[117,227,76,0.05802493107069173],[117,227,77,0.050070219724104456],[117,227,78,0.04228635036845846],[117,227,79,0.034665616991926024],[117,228,64,0.1647765087386161],[117,228,65,0.15470481632417932],[117,228,66,0.14487603175605798],[117,228,67,0.13526075489189962],[117,228,68,0.12582058184239162],[117,228,69,0.11653584230397734],[117,228,70,0.10739824962792448],[117,228,71,0.09840759712935522],[117,228,72,0.08956897943394221],[117,228,73,0.08089030525739745],[117,228,74,0.07238010697582052],[117,228,75,0.0640456519029128],[117,228,76,0.055891359740662484],[117,228,77,0.04791753021724658],[117,228,78,0.04011938447563418],[117,228,79,0.03248642332991542],[117,229,64,0.16419693254491016],[117,229,65,0.15392014220518563],[117,229,66,0.14390047410671483],[117,229,67,0.134113045105277],[117,229,68,0.12452120273329341],[117,229,69,0.11510488036369879],[117,229,70,0.10585501007315196],[117,229,71,0.0967702728397696],[117,229,72,0.08785433965651938],[117,229,73,0.07911340949668628],[117,229,74,0.07055404943013344],[117,229,75,0.06218134173888229],[117,229,76,0.053997342423484675],[117,229,77,0.04599985503171233],[117,229,78,0.038181523284415576],[117,229,79,0.030529245521227724],[117,230,64,0.163824981136457],[117,230,65,0.15335940905023399],[117,230,66,0.14316297223696833],[117,230,67,0.1332155958590988],[117,230,68,0.12348256475629027],[117,230,69,0.11394340826875855],[117,230,70,0.10458823321908271],[117,230,71,0.0954145492932734],[117,230,72,0.08642454534883669],[117,230,73,0.07762266591150148],[117,230,74,0.0690134930664031],[117,230,75,0.060599938494225604],[117,230,76,0.05238174994120764],[117,230,77,0.04435433594794791],[117,230,78,0.03650791220190114],[117,230,79,0.02882697242355823],[117,231,64,0.16368391148735645],[117,231,65,0.15304686340655527],[117,231,66,0.14268846110572583],[117,231,67,0.13259375109482865],[117,231,68,0.12273019824933136],[117,231,69,0.11307697600353066],[117,231,70,0.10362335921860137],[117,231,71,0.09436564947814956],[117,231,72,0.08530450547869509],[117,231,73,0.07644257453988965],[117,231,74,0.06778243030898834],[117,231,75,0.059324821277307004],[117,231,76,0.05106723426382537],[117,231,77,0.04300277655673199],[117,231,78,0.03511937994383874],[117,231,79,0.027399329408676905],[117,232,64,0.16378219364667448],[117,232,65,0.1529914556154365],[117,232,66,0.14248620580458105],[117,232,67,0.13225690516216512],[117,232,68,0.12227348132258756],[117,232,69,0.11251486456651004],[117,232,70,0.10296953867136675],[117,232,71,0.09363259277278727],[117,232,72,0.08450312734519988],[117,232,73,0.07558195961792144],[117,232,74,0.06686963332885594],[117,232,75,0.05836473726355313],[117,232,76,0.05006253656780647],[117,232,77,0.04195392036113674],[117,232,78,0.03402466872275755],[117,232,79,0.026255041672123815],[117,233,64,0.16411554096157513],[117,233,65,0.15318886534285078],[117,233,66,0.1425518228449441],[117,233,67,0.13220053128068768],[117,233,68,0.1221076898009761],[117,233,69,0.11225216808317745],[117,233,70,0.10262175383007938],[117,233,71,0.09321035845989022],[117,233,72,0.08401552202417402],[117,233,73,0.07503621316184801],[117,233,74,0.06627092877677229],[117,233,75,0.05771609767865065],[117,233,76,0.0493647919744969],[117,233,77,0.041205749544788596],[117,233,78,0.033222710490894335],[117,233,79,0.025394069999538246],[117,234,64,0.16466881753173612],[117,234,65,0.1536234035293854],[117,234,66,0.14286917884969277],[117,234,67,0.132408089735347],[117,234,68,0.12221593067490455],[117,234,69,0.1122717651203132],[117,234,70,0.10256283696727812],[117,234,71,0.09308195684594855],[117,234,72,0.08382513045297715],[117,234,73,0.07478947481205483],[117,234,74,0.06597142689413697],[117,234,75,0.0573652485914321],[117,234,76,0.04896183159807003],[117,234,77,0.04074780530908806],[117,234,78,0.0327049504142182],[117,234,79,0.02480992043487815],[117,235,64,0.165417821419918],[117,235,65,0.15426978934444946],[117,235,66,0.14341216531310344],[117,235,67,0.13285281455958975],[117,235,68,0.1225709579157758],[117,235,69,0.11254617818027374],[117,235,70,0.10276538502641741],[117,235,71,0.09322040728004069],[117,235,72,0.08390576964407997],[117,235,73,0.07481674764680357],[117,235,74,0.0659477049485225],[117,235,75,0.057290716719187264],[117,235,76,0.04883448237346501],[117,235,77,0.04056353052455415],[117,235,78,0.03245771859922552],[117,235,79,0.02449202914525063],[117,236,64,0.16633094198267764],[117,236,65,0.15509480057326866],[117,236,66,0.14414634794002829],[117,236,67,0.13349937730905392],[117,236,68,0.12313686936194505],[117,236,69,0.11303932020130468],[117,236,70,0.10319356952574722],[117,236,71,0.09359062220715961],[117,236,72,0.08422359835378623],[117,236,73,0.07508594950653966],[117,236,74,0.06616994476971565],[117,236,75,0.0574654302732426],[117,236,76,0.04895886495694699],[117,236,77,0.040632635261677624],[117,236,78,0.0324646509135712],[117,236,79,0.024428223596885103],[117,237,64,0.16737066648399207],[117,237,65,0.15605877229204193],[117,237,66,0.1450304651529279],[117,237,67,0.1343054022804693],[117,237,68,0.12387065883108456],[117,237,69,0.11370810206510167],[117,237,70,0.103804815611532],[117,237,71,0.09415117110186011],[117,237,72,0.08473897605692883],[117,237,73,0.0755598737406194],[117,237,74,0.06660399841395488],[117,237,75,0.057858889040954604],[117,237,76,0.04930866411341407],[117,237,77,0.04093345987926853],[117,237,78,0.03270913388422302],[117,237,79,0.02460723536931513],[117,238,64,0.16849009265493317],[117,238,65,0.1571120197084248],[117,238,66,0.1460127759480801],[117,238,67,0.13521776308287872],[117,238,68,0.12471848883998801],[117,238,69,0.11449870803164927],[117,238,70,0.10454610508305971],[117,238,71,0.09485063365024744],[117,238,72,0.08540288604576945],[117,238,73,0.07619269879296992],[117,238,74,0.06720799734498431],[117,238,75,0.058433882646868704],[117,238,76,0.049851961860400223],[117,238,77,0.041439925214548756],[117,238,78,0.03317137059609643],[117,238,79,0.025015877154599568],[117,239,64,0.16962720483148053],[117,239,65,0.15818990850091097],[117,239,66,0.1470267686746172],[117,239,67,0.13616876162708308],[117,239,68,0.1256121631048035],[117,239,69,0.11534318034065821],[117,239,70,0.10535049328858354],[117,239,71,0.09562387655593778],[117,239,72,0.08615281241513764],[117,239,73,0.07692532291244508],[117,239,74,0.06792702368775165],[117,239,75,0.05914040178796168],[117,239,76,0.05054431942520153],[117,239,77,0.04211374530268743],[117,239,78,0.03381971481125375],[117,239,79,0.025629520088255378],[117,240,64,0.17071653791952307],[117,240,65,0.15922741887042066],[117,240,66,0.14800801732717625],[117,240,67,0.1370945995615811],[117,240,68,0.12648849260161799],[117,240,69,0.11617893991231429],[117,240,70,0.10615604946592033],[117,240,71,0.09640970588515603],[117,240,72,0.08692844430213988],[117,240,73,0.07769852555482819],[117,240,74,0.06870321489586233],[117,240,75,0.05992226608541613],[117,240,76,0.05133161243711319],[117,240,77,0.042903266087319016],[117,240,78,0.034605426468466365],[117,240,79,0.0264027986863129],[117,241,64,0.17170381319686426],[117,241,65,0.16017113891508336],[117,241,66,0.1489039128968573],[117,241,67,0.13794327553352667],[117,241,68,0.127295811607573],[117,241,69,0.1169543782087179],[117,241,70,0.10691096880788042],[117,241,71,0.09715591626292353],[117,241,72,0.08767703885338744],[117,241,73,0.0784589696063051],[117,241,74,0.0694826706416465],[117,241,75,0.06072513399122319],[117,241,76,0.052159270071920186],[117,241,77,0.04375398472571227],[117,241,78,0.035474445480218414],[117,241,79,0.027282537434116093],[117,242,64,0.17254761776775845],[117,242,65,0.16098009635129817],[117,242,66,0.14967381213968486],[117,242,67,0.13867423962767172],[117,242,68,0.12799334009157123],[117,242,69,0.11762813374846277],[117,242,70,0.1075729655780866],[117,242,71,0.09781899264029234],[117,242,72,0.08835360735799277],[117,242,73,0.07916002618057741],[117,242,74,0.07021704491171446],[117,242,75,0.06149896173933573],[117,242,76,0.05297566876218651],[117,242,77,0.04461291256926571],[117,242,78,0.03637272420077908],[117,242,79,0.028214018601143247],[117,243,64,0.17321823242419693],[117,243,65,0.16162464837203905],[117,243,66,0.15028800056947367],[117,243,67,0.13925744565302],[117,243,68,0.12855034482684166],[117,243,69,0.118168382842219],[117,243,70,0.10810871435548937],[117,243,71,0.0983637220226416],[117,243,72,0.08892071567390539],[117,243,73,0.07976177949299092],[117,243,74,0.07086376805098547],[117,243,75,0.0621984518266592],[117,243,76,0.053732812630405816],[117,243,77,0.04542948914065371],[117,243,78,0.037247372564184235],[117,243,79,0.02914235224441895],[117,244,64,0.17369645607606626],[117,244,65,0.16208536488863057],[117,244,66,0.15072664522203238],[117,244,67,0.13967238833289594],[117,244,68,0.12894527924190743],[117,244,69,0.11855210211582591],[117,244,70,0.10849325578898253],[117,244,71,0.09876276250188863],[117,244,72,0.08934823516290957],[117,244,73,0.08023097614414468],[117,244,74,0.07138620804685286],[117,244,75,0.0627834366801077],[117,244,76,0.05438694630937656],[117,244,77,0.046156427051654084],[117,244,78,0.03804773412532991],[117,244,79,0.030013778504939782],[117,245,64,0.1739724265277443],[117,245,65,0.16235190487011503],[117,245,66,0.1509787368346886],[117,245,67,0.1399071249506841],[117,245,68,0.12916490144839962],[117,245,69,0.11876430213282932],[117,245,70,0.10870936604340412],[117,245,71,0.09899616864656384],[117,245,72,0.08961304307062982],[117,245,73,0.08054091764677489],[117,245,74,0.07175376980409416],[117,245,75,0.06321919619982272],[117,245,76,0.05489909880437108],[117,245,77,0.04675048650713387],[117,245,78,0.03872639166753349],[117,245,79,0.03077690090507049],[117,246,64,0.17404443749768939],[117,246,65,0.16242188560746343],[117,246,66,0.15104102119127802],[117,246,67,0.13995728110141403],[117,246,68,0.12920336997216864],[117,246,69,0.11879723150438633],[117,246,70,0.10874688917982991],[117,246,71,0.09905087234859523],[117,246,72,0.08969867131376041],[117,246,73,0.08067129503452593],[117,246,74,0.07194193114318381],[117,246,75,0.06347670782661216],[117,246,76,0.055235556984728984],[117,246,77,0.047173177948451134],[117,246,78,0.0392401009225724],[117,246,79,0.03138384921304288],[117,247,64,0.17391775190719147],[117,247,65,0.16229974485398238],[117,247,66,0.15091691950022265],[117,247,67,0.13982504030912718],[117,247,68,0.1290613168146192],[117,247,69,0.11864955096350556],[117,247,70,0.10860203178820936],[117,247,71,0.09892011828423578],[117,247,72,0.08959490267620873],[117,247,73,0.08060796440916593],[117,247,74,0.07193221424899458],[117,247,75,0.06353282775068325],[117,247,76,0.055368267234948684],[117,247,77,0.04739139130469539],[117,247,78,0.039550650836905565],[117,247,79,0.03133713752921846],[117,248,64,0.17360341160429876],[117,248,65,0.1619955959280493],[117,248,66,0.15061543780194958],[117,248,67,0.13951811739146833],[117,248,68,0.12874489758417548],[117,248,69,0.11832547698289965],[117,248,70,0.1082766192793773],[117,248,71,0.09860285321938853],[117,248,72,0.08929731346956632],[117,248,73,0.08034266231465031],[117,248,74,0.07171209130431584],[117,248,75,0.06337040185965769],[117,248,76,0.05527516374808665],[117,248,77,0.047377950243601766],[117,248,78,0.039625648711298464],[117,248,79,0.030059084139842634],[117,249,64,0.1731170438398884],[117,249,65,0.16152407601072669],[117,249,66,0.15015006554265595],[117,249,67,0.13904871558730675],[117,249,68,0.12826481856449112],[117,249,69,0.11783389463262621],[117,249,70,0.10777731334782246],[117,249,71,0.09810306847820897],[117,249,72,0.08880676178297607],[117,249,73,0.07987265987394145],[117,249,74,0.07127482306502687],[117,249,75,0.06297830501856838],[117,249,76,0.05494042190916128],[117,249,77,0.04711208974746644],[117,249,78,0.0394392284421875],[117,249,79,0.02900339941040124],[117,250,64,0.17247766497539058],[117,250,65,0.16090318802936598],[117,250,66,0.14953766360493295],[117,250,67,0.13843246761110697],[117,250,68,0.12763534072731658],[117,250,69,0.11718743950622745],[117,250,70,0.10711479023742129],[117,250,71,0.09742909499962704],[117,250,72,0.08812882053454832],[117,250,73,0.07920035468926612],[117,250,74,0.07061922917279947],[117,250,75,0.06235140728476744],[117,250,76,0.054354635195064144],[117,250,77,0.04657985528470013],[117,250,78,0.038972680003508633],[117,250,79,0.028175865340979538],[117,251,64,0.17170648207496128],[117,251,65,0.16015313668830936],[117,251,66,0.14879734225140276],[117,251,67,0.1376873609587912],[117,251,68,0.12687326085349343],[117,251,69,0.11640154869207367],[117,251,70,0.10630287957974259],[117,251,71,0.0965928505295401],[117,251,72,0.0872731546413081],[117,251,73,0.07833279958900455],[117,251,74,0.06974938905746583],[117,251,75,0.0614904656870624],[117,251,76,0.05351491401084975],[117,251,77,0.04577442180544745],[117,251,78,0.038214998227980815],[117,251,79,0.027575302888893656],[117,252,64,0.17082569322085728],[117,252,65,0.15929515939120895],[117,252,66,0.1479493296173407],[117,252,67,0.13683264796607272],[117,252,68,0.12599687009764665],[117,252,69,0.11549348093250164],[117,252,70,0.10535766373101428],[117,252,71,0.09560903863958838],[117,252,72,0.08625284175010983],[117,252,73,0.07728116740759283],[117,252,74,0.06867427235766578],[117,252,75,0.06040194024401462],[117,252,76,0.05242490489330018],[117,252,77,0.0446963307629785],[117,252,78,0.037163348879929524],[117,252,79,0.02719284303910201],[117,253,64,0.16985728758809687],[117,253,65,0.15835035299509723],[117,253,66,0.14701383158117196],[117,253,67,0.1358877413107781],[117,253,68,0.12502489052002355],[117,253,69,0.11448130629657052],[117,253,70,0.10429653770909889],[117,253,71,0.09449429942647325],[117,253,72,0.08508363611801736],[117,253,73,0.07606015110887959],[117,253,74,0.06740729788542342],[117,253,75,0.05909773296156093],[117,253,76,0.05109472854176282],[117,253,77,0.04335364335179878],[117,253,78,0.0358234499580752],[117,253,79,0.027011284102208523],[117,254,64,0.16882184652442828],[117,254,65,0.15733849754550483],[117,254,66,0.1460098840491635],[117,254,67,0.13487109585705082],[117,254,68,0.12397539031428749],[117,254,69,0.11338286589466308],[117,254,70,0.10313723002786736],[117,254,71,0.09326631193093193],[117,254,72,0.0837831753997051],[117,254,73,0.07468729871076768],[117,254,74,0.06596582028042935],[117,254,75,0.05759484863759147],[117,254,76,0.04954083518608618],[117,254,77,0.041762008161230754],[117,254,78,0.03420986612883695],[117,254,79,0.026830729330677937],[117,255,64,0.16773734710437374],[117,255,65,0.15627687836490164],[117,255,66,0.1449541989129658],[117,255,67,0.13379907796207385],[117,255,68,0.12286467868362137],[117,255,69,0.11221470238570175],[117,255,70,0.1018967849443137],[117,255,71,0.09194284852405368],[117,255,72,0.08237013029296346],[117,255,73,0.07318228264137336],[117,255,74,0.06437054364482667],[117,255,75,0.05591497641269283],[117,255,76,0.04778577587394292],[117,255,77,0.039944641471478345],[117,255,78,0.032346214170454114],[117,255,79,0.02493957613215686],[117,256,64,0.16661796986133262],[117,256,65,0.15517910810331778],[117,256,66,0.14386000517579395],[117,256,67,0.13268482360509368],[117,256,68,0.1217061815594478],[117,256,69,0.1109909622708048],[117,256,70,0.10059050687425873],[117,256,71,0.09054078174143237],[117,256,72,0.08086329721242724],[117,256,73,0.07156610335548558],[117,256,74,0.06264486162050997],[117,256,75,0.054083991143337964],[117,256,76,0.04585788835634736],[117,256,77,0.03793221846935987],[117,256,78,0.03026527730700797],[117,256,79,0.022809421922744502],[117,257,64,0.16547292225724158],[117,257,65,0.1540539593146089],[117,257,66,0.142735894854276],[117,257,67,0.13153709403808933],[117,257,68,0.12050930603019695],[117,257,69,0.10972227712321009],[117,257,70,0.09923087355540613],[117,257,71,0.08907504974472058],[117,257,72,0.07928063996203125],[117,257,73,0.06986023317423115],[117,257,74,0.060814130070056316],[117,257,75,0.05213138116035821],[117,257,76,0.04379090473069834],[117,257,77,0.035762683319594785],[117,257,78,0.028009037304668957],[117,257,79,0.020485974099354664],[117,258,64,0.16430537729675912],[117,258,65,0.1529043797320887],[117,258,66,0.14158492126827163],[117,258,67,0.13035945229048473],[117,258,68,0.1192786840632144],[117,258,69,0.10841506195050982],[117,258,70,0.09782687574107919],[117,258,71,0.08755802397769682],[117,258,72,0.07763867250952527],[117,258,73,0.06808600236107502],[117,258,74,0.058905046083959134],[117,258,75,0.05008961162413621],[117,258,76,0.041623292610797155],[117,258,77,0.03348056385535278],[117,258,78,0.025627960744325957],[117,258,79,0.018025341116449357],[117,259,64,0.1631142996398994],[117,259,65,0.1517309086776813],[117,259,66,0.1404096475078058],[117,259,67,0.1291569360690957],[117,259,68,0.11802226944429739],[117,259,69,0.10708058832915088],[117,259,70,0.0963934340608198],[117,259,71,0.0860085115093693],[117,259,72,0.07596021527663449],[117,259,73,0.06627025083913757],[117,259,74,0.05694834995213567],[117,259,75,0.04799307948693653],[117,259,76,0.03939274273513273],[117,259,77,0.03112637208322686],[117,259,78,0.023164811843585112],[117,259,79,0.01547188992088468],[117,260,64,0.1618993859801974],[117,260,65,0.15053622770236721],[117,260,66,0.13921621958672328],[117,260,67,0.12793961406660878],[117,260,68,0.11675434855784862],[117,260,69,0.10573740865982235],[117,260,70,0.0949531912879568],[117,260,71,0.08445287236337348],[117,260,72,0.07427480259916597],[117,260,73,0.06444500301141218],[117,260,74,0.05497775961953808],[117,260,75,0.04587631664558994],[117,260,76,0.03713366737278098],[117,260,77,0.02873344168232181],[117,260,78,0.020650889158323943],[117,260,79,0.01285395653166449],[117,261,64,0.1606612618137473],[117,261,65,0.14932350622607068],[117,261,66,0.13801076145506977],[117,261,67,0.12671699920850704],[117,261,68,0.11548814069922426],[117,261,69,0.10440256054851171],[117,261,70,0.09352692679924533],[117,261,71,0.08291538325062826],[117,261,72,0.07260981784615887],[117,261,73,0.062640234462381],[117,261,74,0.053025227706417856],[117,261,75,0.04377256016687617],[117,261,76,0.0348798414045969],[117,261,77,0.026335307818872708],[117,261,78,0.018118702385505534],[117,261,79,0.010202253133637311],[117,262,64,0.1594010664572387],[117,262,65,0.14809593671770271],[117,262,66,0.1367988543637837],[117,262,67,0.12549745827855313],[117,262,68,0.11423512643354171],[117,262,69,0.10309081112640282],[117,262,70,0.09213272121099567],[117,262,71,0.08141733238006346],[117,262,72,0.07098953231747625],[117,262,73,0.06088287162626364],[117,262,74,0.05111992027887348],[117,262,75,0.041712729166494406],[117,262,76,0.032663396159341204],[117,262,77,0.023964735931532304],[117,262,78,0.015601052656904257],[117,262,79,0.007549014544034482],[117,263,64,0.15812039553086768],[117,263,65,0.14685670950114585],[117,263,66,0.1355855388746076],[117,263,67,0.12428822547629266],[117,263,68,0.1130050501655475],[117,263,69,0.10181462298241283],[117,263,70,0.09078585824328742],[117,263,71,0.07997682920697735],[117,263,72,0.06943479526463502],[117,263,73,0.059196335843640015],[117,263,74,0.04928759090468186],[117,263,75,0.039724607737904885],[117,263,76,0.030513793594624083],[117,263,77,0.021652473527741405],[117,263,78,0.013129552660936515],[117,263,79,0.004926281962172702],[117,264,64,0.1568215811281381],[117,264,65,0.14560932461811335],[117,264,66,0.13437565049487413],[117,264,67,0.1230957438337537],[117,264,68,0.11180624262433345],[117,264,69,0.10058442978496923],[117,264,70,0.08949902374910387],[117,264,71,0.07860889658955278],[117,264,72,0.06796298947082823],[117,264,73,0.05760033424058067],[117,264,74,0.04755018116610806],[117,264,75,0.03783223264730014],[117,264,76,0.028456982566141],[117,264,77,0.019426160766918915],[117,264,78,0.010733282004884461],[117,264,79,0.002364298552430035],[117,265,64,0.15550831214305455],[117,265,65,0.14435824309590806],[117,265,66,0.1331744911449872],[117,265,67,0.12192633655979553],[117,265,68,0.11064626520515469],[117,265,69,0.0994092234285055],[117,265,70,0.0882828036613417],[117,265,71,0.07732584705175305],[117,265,72,0.0665882540638109],[117,265,73,0.05611089911080526],[117,265,74,0.04592564934870072],[117,265,75,0.03605548758304581],[117,265,76,0.026514739072052734],[117,265,77,0.017309401842566876],[117,265,78,0.008437579978366297],[117,265,79,4.034565216234007E-4],[117,266,64,0.15418659670820173],[117,266,65,0.14310987946097337],[117,266,66,0.13198883817332058],[117,266,67,0.12078720990386257],[117,266,68,0.10953287765168153],[117,266,69,0.0982974540999236],[117,266,70,0.08714648218956583],[117,266,71,0.07613794444893687],[117,266,72,0.06532197585220796],[117,266,73,0.05474067711625365],[117,266,74,0.0444280286766712],[117,266,75,0.03440990541467915],[117,266,76,0.02470419203940925],[117,266,77,0.015320998866605505],[117,266,78,0.008752443218702891],[117,266,79,0.006605348962644898],[117,267,64,0.1524016996172887],[117,267,65,0.14187393686414254],[117,267,66,0.13082829217222197],[117,267,67,0.11968778868603493],[117,267,68,0.10847533013444273],[117,267,69,0.09725824425073354],[117,267,70,0.08609914120722703],[117,267,71,0.0750543519596205],[117,267,72,0.0641735501206121],[117,267,73,0.05349946928300898],[117,267,74,0.043067716142452486],[117,267,75,0.032906679607358755],[117,267,76,0.02303753592221276],[117,267,77,0.018098686014140223],[117,267,78,0.015567147756067188],[117,267,79,0.013115471530866118],[117,268,64,0.14846234920335538],[117,268,65,0.13951874759972072],[117,268,66,0.1297069644199702],[117,268,67,0.11864138522726625],[117,268,68,0.10748598038507155],[117,268,69,0.09630291708185955],[117,268,70,0.08515106140888723],[117,268,71,0.07408436698295018],[117,268,72,0.06315141149159584],[117,268,73,0.052395022457843554],[117,268,74,0.04185199268053078],[117,268,75,0.03155288565260561],[117,268,76,0.028434754834830545],[117,268,77,0.025532104193585717],[117,268,78,0.022695050812445113],[117,268,79,0.019927732655177912],[117,269,64,0.14427815965434618],[117,269,65,0.13526235442793982],[117,269,66,0.12638935913048768],[117,269,67,0.11766720203171875],[117,269,68,0.10658223618033726],[117,269,69,0.09544683979921424],[117,269,70,0.08431542548486452],[117,269,71,0.07323894320563885],[117,269,72,0.062264335162468265],[117,269,73,0.05143407260471152],[117,269,74,0.04294368164063599],[117,269,75,0.03969986071277716],[117,269,76,0.036469047137759246],[117,269,77,0.03327119740555194],[117,269,78,0.030120876070313662],[117,269,79,0.027027294795933444],[117,270,64,0.1398287149644026],[117,270,65,0.13073190744449492],[117,270,66,0.12179148040006958],[117,270,67,0.11306941410690365],[117,270,68,0.10456837173948283],[117,270,69,0.09471158157788082],[117,270,70,0.08361032325631532],[117,270,71,0.0725324998130272],[117,270,72,0.06152300854988621],[117,270,73,0.055241640850586166],[117,270,74,0.051793499686025236],[117,270,75,0.048301473465290845],[117,270,76,0.0447936830208682],[117,270,77,0.041293829966625284],[117,270,78,0.03782102585767099],[117,270,79,0.03438969592924056],[117,271,64,0.13510984664093717],[117,271,65,0.12592384469663948],[117,271,66,0.11690849906276814],[117,271,67,0.10812874540224927],[117,271,68,0.09959309625931333],[117,271,69,0.09126878185620829],[117,271,70,0.08303895818369951],[117,271,71,0.07196503705871489],[117,271,72,0.06813365742184228],[117,271,73,0.06457866796903439],[117,271,74,0.06091221186959186],[117,271,75,0.05716829034748332],[117,271,76,0.0533778463495122],[117,271,77,0.04956839390127493],[117,271,78,0.04576371419425935],[117,271,79,0.04198361858914855],[117,272,64,0.1302143381202296],[117,272,65,0.1209317665687507],[117,272,66,0.11183433443415286],[117,272,67,0.10298919973797711],[117,272,68,0.09441060023667643],[117,272,69,0.08607341225081301],[117,272,70,0.08013244155626387],[117,272,71,0.07992967964878647],[117,272,72,0.07783575168197517],[117,272,73,0.07410417376094076],[117,272,74,0.07022495901727933],[117,272,75,0.06623367788957105],[117,272,76,0.06216399440970734],[117,272,77,0.05804716965324331],[117,272,78,0.05391162385638794],[117,272,79,0.04978255755846585],[117,273,64,0.12524977156264225],[117,273,65,0.11586440276697865],[117,273,66,0.10667818219493976],[117,273,67,0.09775966143175532],[117,273,68,0.0891285309471809],[117,273,69,0.08566425959551134],[117,273,70,0.08538689113408589],[117,273,71,0.08511613289198462],[117,273,72,0.08482328131204395],[117,273,73,0.08372523437949572],[117,273,74,0.07964724185894356],[117,273,75,0.07542262477773615],[117,273,76,0.07108753001934354],[117,273,77,0.06667673701572518],[117,273,78,0.06222308993381982],[117,273,79,0.05775698094138739],[117,274,64,0.12031168864984555],[117,274,65,0.1108187427165537],[117,274,66,0.1015379178235242],[117,274,67,0.09253827334680557],[117,274,68,0.09154502749433424],[117,274,69,0.09107869196595447],[117,274,70,0.0906786092488677],[117,274,71,0.09032262591315801],[117,274,72,0.08998520930423762],[117,274,73,0.08963831242194994],[117,274,74,0.08909736158503376],[117,274,75,0.08466124681046461],[117,274,76,0.08008326300168452],[117,274,77,0.07540134306570195],[117,274,78,0.07065238304295703],[117,274,79,0.06587159596476004],[117,275,64,0.11548423142493222],[117,275,65,0.10588060934752952],[117,275,66,0.0988416370074055],[117,275,67,0.0979872587835271],[117,275,68,0.09724476537846506],[117,275,69,0.09660981345353488],[117,275,70,0.09607078096925517],[117,275,71,0.09561027662301862],[117,275,72,0.09520610444898096],[117,275,73,0.09483219762572764],[117,275,74,0.09445952026813799],[117,275,75,0.09387719121008022],[117,275,76,0.08908588370757675],[117,275,77,0.08416343296529308],[117,275,78,0.07915028475722553],[117,275,79,0.07408595601281774],[117,276,64,0.11084063372528227],[117,276,65,0.10630131257873007],[117,276,66,0.10513989651828087],[117,276,67,0.10407219230373152],[117,276,68,0.10312873686242505],[117,276,69,0.10231255253116357],[117,276,70,0.10161810601417862],[117,276,71,0.10103275119349228],[117,276,72,0.10053774198640275],[117,276,73,0.10010922223565806],[117,276,74,0.0997191913270684],[117,276,75,0.09933644428283234],[117,276,76,0.09803059818146148],[117,276,77,0.0929043427995549],[117,276,78,0.08766482532891416],[117,276,79,0.08235523006826004],[117,277,64,0.11448247855660412],[117,277,65,0.11306184620247067],[117,277,66,0.11167789416354733],[117,277,67,0.11039312850775633],[117,277,68,0.10924131957104309],[117,277,69,0.10823238594427517],[117,277,70,0.10736660172096225],[117,277,71,0.10663595878804966],[117,277,72,0.10602521399493593],[117,277,73,0.10551292052250034],[117,277,74,0.10507244208290503],[117,277,75,0.10467294862268221],[117,277,76,0.1042803922491421],[117,277,77,0.1015651543151622],[117,277,78,0.09614218343935182],[117,277,79,0.09063113417859923],[117,278,64,0.12173809895619556],[117,278,65,0.12009099658484243],[117,278,66,0.11848587884100924],[117,278,67,0.11698235318962867],[117,278,68,0.11561668922491514],[117,278,69,0.11440509243936428],[117,278,70,0.11335324734735663],[117,278,71,0.112457586965706],[117,278,72,0.1117063592470744],[117,278,73,0.11108068409231958],[117,278,74,0.11055559952845206],[117,278,75,0.11010109566987696],[117,278,76,0.10968313511782363],[117,278,77,0.10926465849635816],[117,278,78,0.10452774761225878],[117,278,79,0.09886302447385724],[117,279,64,0.12927362942636586],[117,279,65,0.12740598155524616],[117,279,66,0.12558322140856676],[117,279,67,0.12386139975281032],[117,279,68,0.12227852208259636],[117,279,69,0.12085634783576042],[117,279,70,0.1196054691608954],[117,279,71,0.1185264773425628],[117,279,72,0.11761103284164919],[117,279,73,0.11684293139707323],[117,279,74,0.1161991647528707],[117,279,75,0.11565097459616121],[117,279,76,0.11516489831951142],[117,279,77,0.11470380525585275],[117,279,78,0.11276733883913344],[117,279,79,0.10699915118464456],[117,280,64,0.13709309947626117],[117,280,65,0.13390051420581747],[117,280,66,0.13006080811969845],[117,280,67,0.1270629153609769],[117,280,68,0.12489225287910566],[117,280,69,0.12351196865150144],[117,280,70,0.1228612298718087],[117,280,71,0.12285655968188686],[117,280,72,0.12338953356033822],[117,280,73,0.1228221165788641],[117,280,74,0.12202672952655905],[117,280,75,0.12134695144330174],[117,280,76,0.12075044322583442],[117,280,77,0.12020067600989567],[117,280,78,0.11965797123517896],[117,280,79,0.11498807304819679],[117,281,64,0.13835637043176552],[117,281,65,0.13362739395544543],[117,281,66,0.12975726291568712],[117,281,67,0.12675183513112567],[117,281,68,0.12459584702950321],[117,281,69,0.12325092360538506],[117,281,70,0.1226537617577931],[117,281,71,0.12271738157501469],[117,281,72,0.12332870416838465],[117,281,73,0.12434916502270252],[117,281,74,0.12566998489340156],[117,281,75,0.1272063427218562],[117,281,76,0.1264587108463468],[117,281,77,0.12577555888150913],[117,281,78,0.1251180633447894],[117,281,79,0.1227802314434673],[117,282,64,0.13844087767065996],[117,282,65,0.13365494761370406],[117,282,66,0.1297488912354482],[117,282,67,0.12672877532955132],[117,282,68,0.12457884840572345],[117,282,69,0.12325945039708028],[117,282,70,0.12270509204758312],[117,282,71,0.12282562142831971],[117,282,72,0.12350368369295242],[117,282,73,0.12459560260120545],[117,282,74,0.12599023130982068],[117,282,75,0.1276123859282982],[117,282,76,0.12939918087389174],[117,282,77,0.13129786889016182],[117,282,78,0.13062481358107683],[117,282,79,0.12980771353877008],[117,283,64,0.13882433001844108],[117,283,65,0.13397841098442065],[117,283,66,0.13003147766388717],[117,283,67,0.12698995208096592],[117,283,68,0.12483778855191446],[117,283,69,0.12353428464518518],[117,283,70,0.1230120579199904],[117,283,71,0.12317812876403172],[117,283,72,0.12391126297176025],[117,283,73,0.1250630890530352],[117,283,74,0.12652024692977104],[117,283,75,0.12820696581465474],[117,283,76,0.13005970468222572],[117,283,77,0.13202493136957028],[117,283,78,0.13405731087334374],[117,283,79,0.1351827059776777],[117,284,64,0.13949945929156293],[117,284,65,0.13459121349698436],[117,284,66,0.1305990474084869],[117,284,67,0.12752988116266747],[117,284,68,0.12536756817685818],[117,284,69,0.12407060924889479],[117,284,70,0.12357002834481229],[117,284,71,0.12377037324722467],[117,284,72,0.12454694228325494],[117,284,73,0.12574710455165333],[117,284,74,0.12725545595868243],[117,284,75,0.1289956527141708],[117,284,76,0.13090351214537999],[117,284,77,0.13292472737691624],[117,284,78,0.13501300249550854],[117,284,79,0.13712831855635405],[117,285,64,0.14045702391048456],[117,285,65,0.13548483405769574],[117,285,66,0.13144371192408716],[117,285,67,0.1283412141239194],[117,285,68,0.12616128455555892],[117,285,69,0.12486187390272319],[117,285,70,0.12437271655835949],[117,285,71,0.12459625096592175],[117,285,72,0.12540473224495952],[117,285,73,0.12664172222653036],[117,285,74,0.12818995571731168],[117,285,75,0.12997254044273787],[117,285,76,0.13192467605762126],[117,285,77,0.1339913011484171],[117,285,78,0.13612517014849113],[117,285,79,0.13828505633977056],[117,286,64,0.1416858964960684],[117,286,65,0.1366488785406941],[117,286,66,0.13255573685061967],[117,286,67,0.12941479731227223],[117,286,68,0.1272102823577344],[117,286,69,0.12589983849117672],[117,286,70,0.12541221681353015],[117,286,71,0.12564811532173406],[117,286,72,0.1264771795923005],[117,286,73,0.12773962950458084],[117,286,74,0.12931653413568828],[117,286,75,0.13113048773845515],[117,286,76,0.13311610633589127],[117,286,77,0.13521760406089847],[117,286,78,0.13738680697235864],[117,286,79,0.13958128800622768],[117,287,64,0.14317317936559354],[117,287,65,0.13807118585554592],[117,287,66,0.1339236391492286],[117,287,67,0.13073976066276555],[117,287,68,0.12850423474582687],[117,287,69,0.12717464720252156],[117,287,70,0.12667907224382333],[117,287,71,0.1269168393785588],[117,287,72,0.12775542471468415],[117,287,73,0.1290321814693071],[117,287,74,0.13062671948080723],[117,287,75,0.13246116481252168],[117,287,76,0.1344695937581001],[117,287,77,0.13659553582824982],[117,287,78,0.13878991992098322],[117,287,79,0.14100913649376629],[117,288,64,0.14490434790273257],[117,288,65,0.1397379625658235],[117,288,66,0.13553431341109903],[117,288,67,0.1323036362243314],[117,288,68,0.13003125471685298],[117,288,69,0.1286749333359679],[117,288,70,0.12816237381561546],[117,288,71,0.12839190964365946],[117,288,72,0.12922929092314622],[117,288,73,0.13050948621198866],[117,288,74,0.13211086229242258],[117,288,75,0.13395513226899616],[117,288,76,0.13597588616725936],[117,288,77,0.13811601819080221],[117,288,78,0.1403256010338476],[117,288,79,0.1425598708966456],[117,289,64,0.14686342180163053],[117,289,65,0.1416339460588219],[117,289,66,0.13737318733914602],[117,289,67,0.13409250642354817],[117,289,68,0.13177803668824445],[117,289,69,0.13038795480242044],[117,289,70,0.12984989036885003],[117,289,71,0.13006155128127908],[117,289,72,0.13088740544972832],[117,289,73,0.13216052217506785],[117,289,74,0.1337582495270907],[117,289,75,0.13560195239357187],[117,289,76,0.13762479714160317],[117,289,77,0.13976910109777435],[117,289,78,0.14198413115438568],[117,289,79,0.14422400763020343],[117,290,64,0.14903316418498272],[117,290,65,0.1437425962663021],[117,290,66,0.1394244064024471],[117,290,67,0.13609118206563153],[117,290,68,0.1337300283275638],[117,290,69,0.13229976031867846],[117,290,70,0.13172822974602244],[117,290,71,0.13191288475866897],[117,290,72,0.13271735217846237],[117,290,73,0.13397328748761492],[117,290,74,0.13555725091034748],[117,290,75,0.1373903328112523],[117,290,76,0.13940534713058222],[117,290,77,0.14154410138267287],[117,290,78,0.14375511609474642],[117,290,79,0.14599144392061747],[117,291,64,0.15139530859609654],[117,291,65,0.14604631593625356],[117,291,66,0.14167104766341354],[117,291,67,0.1382834100726546],[117,291,68,0.13587163262608798],[117,291,69,0.13439538629508066],[117,291,70,0.1337830310094565],[117,291,71,0.13393211392452775],[117,291,72,0.13470585610795763],[117,291,73,0.13593498129286574],[117,291,74,0.13749549749701134],[117,291,75,0.13930830251291804],[117,291,76,0.14130593705672148],[117,291,77,0.14342977393163767],[117,291,78,0.14562765524696955],[117,291,79,0.14785162361955445],[117,292,64,0.15393081386504814],[117,292,65,0.1485266994557809],[117,292,66,0.14409536277780627],[117,292,67,0.1406521109591056],[117,292,68,0.13818644021636822],[117,292,69,0.13665908441670213],[117,292,70,0.1359991877469787],[117,292,71,0.1361047455199601],[117,292,72,0.13683899954570078],[117,292,73,0.13803221706794247],[117,292,74,0.13956009243972492],[117,292,75,0.14134342025089897],[117,292,76,0.1433145543834552],[117,292,77,0.1454145153448452],[117,292,78,0.14759054264068908],[117,292,79,0.14979373534382484],[117,293,64,0.15662014684883158],[117,293,65,0.1511648102250146],[117,293,66,0.14667905016749389],[117,293,67,0.143179646044679],[117,293,68,0.14065749193366164],[117,293,69,0.13907457991799843],[117,293,70,0.13836110246588718],[117,293,71,0.13841584012184668],[117,293,72,0.13910247003395965],[117,293,73,0.14025126793565035],[117,293,74,0.14173785396562508],[117,293,75,0.14348301530344065],[117,293,76,0.14541901164882953],[117,293,77,0.14748660009086098],[117,293,78,0.1496325004472523],[117,293,79,0.15180694293993052],[117,294,64,0.15944359304549383],[117,294,65,0.15394148658204065],[117,294,66,0.14940355636594893],[117,294,67,0.14584811440429668],[117,294,68,0.1432675716212321],[117,294,69,0.1416253605508952],[117,294,70,0.14085297207521058],[117,294,71,0.14085029451862685],[117,294,72,0.14148184000729191],[117,294,73,0.14257834396834737],[117,294,74,0.14401559056114116],[117,294,75,0.14571446060806487],[117,294,76,0.1476072174650705],[117,294,77,0.14963444915393775],[117,294,78,0.1517424449302537],[117,294,79,0.153880648273503],[117,295,64,0.162381595082385],[117,295,65,0.1568376762789755],[117,295,66,0.15225040653660976],[117,295,67,0.14863967955548738],[117,295,68,0.1459995291796478],[117,295,69,0.14429499624644948],[117,295,70,0.14345910445638665],[117,295,71,0.1433931555186197],[117,295,72,0.14396287818178555],[117,295,73,0.1449999014840191],[117,295,74,0.14638040836505162],[117,295,75,0.14802547826395543],[117,295,76,0.14986747998415087],[117,295,77,0.15184693117439418],[117,295,78,0.15390978484261694],[117,295,79,0.1560047863437688],[117,296,64,0.16541511907832962],[117,296,65,0.15983479950899454],[117,296,66,0.15520156416391445],[117,296,67,0.15153692588292783],[117,296,68,0.1488366338598789],[117,296,69,0.1470674894698875],[117,296,70,0.14616426612216338],[117,296,71,0.14602996519068637],[117,296,72,0.14653189267583305],[117,296,73,0.14750298433435474],[117,296,74,0.14882005076959698],[117,296,75,0.1504044774031645],[117,296,76,0.15218884282914896],[117,296,77,0.15411369608186698],[117,296,78,0.15612475227001815],[117,296,79,0.1581701527228313],[117,297,64,0.1685260488799286],[117,297,65,0.16291514048452266],[117,297,66,0.1582398199172155],[117,297,67,0.15452324480036053],[117,297,68,0.15176295780041074],[117,297,69,0.14992765626923446],[117,297,70,0.14895406096393687],[117,297,71,0.148747137537451],[117,297,72,0.14917610586265695],[117,297,73,0.15007559718504798],[117,297,74,0.15132327022987038],[117,297,75,0.15284092443086583],[117,297,76,0.1545614534916268],[117,297,77,0.15642554122166247],[117,297,78,0.1583787659208773],[117,297,79,0.16036876331999955],[117,298,64,0.1716976081717937],[117,298,65,0.1660622675663881],[117,298,66,0.1613492096873787],[117,298,67,0.1575832506496825],[117,298,68,0.15476378980816646],[117,298,69,0.15286153801732827],[117,298,70,0.151815340087322],[117,298,71,0.1515323666008723],[117,298,72,0.1518840609543782],[117,298,73,0.15270711078810903],[117,298,74,0.15388023228127415],[117,298,75,0.15532574563443666],[117,298,76,0.1569769641948107],[117,298,77,0.15877480997399226],[117,298,78,0.16066482686270084],[117,298,79,0.1625942464709437],[117,299,64,0.17491481046084692],[117,299,65,0.16926148194407445],[117,299,66,0.1645154617961977],[117,299,67,0.16070322633734563],[117,299,68,0.15782607938338067],[117,299,69,0.1558568438473609],[117,299,70,0.1547366427360944],[117,299,71,0.15437506600030734],[117,299,72,0.15464606031777064],[117,299,73,0.1553886992463343],[117,299,74,0.15648295176518814],[117,299,75,0.15785176216151967],[117,299,76,0.15942896522272246],[117,299,77,0.16115582286624047],[117,299,78,0.16297794670492535],[117,299,79,0.16484226735182989],[117,300,64,0.17816493693468335],[117,300,65,0.17250029486706617],[117,300,66,0.16772647337862293],[117,300,67,0.16387159870806198],[117,300,68,0.16093891098841506],[117,300,69,0.15890342378193784],[117,300,70,0.15770866830449867],[117,300,71,0.15726683990306134],[117,300,72,0.15745463552169278],[117,300,73,0.15811380926992438],[117,300,74,0.15912576126283995],[117,300,75,0.16041415736705264],[117,300,76,0.1619134507152518],[117,300,77,0.16356534117825366],[117,300,78,0.1653156082282502],[117,300,79,0.1671109847184209],[117,301,64,0.18143804219387816],[117,301,65,0.17576893342717048],[117,301,66,0.1709728159376846],[117,301,67,0.16707944365569363],[117,301,68,0.16409400856039916],[117,301,69,0.16199377255553674],[117,301,70,0.16072477943780217],[117,301,71,0.1602019854273017],[117,301,72,0.16030504911607762],[117,301,73,0.1608786614251288],[117,301,74,0.16180581173725672],[117,301,75,0.16301097652914465],[117,301,76,0.1644293169290475],[117,301,77,0.16600306304052964],[117,301,78,0.16767825846033838],[117,301,79,0.1694015399700211],[117,302,64,0.18472748785837173],[117,302,65,0.17906087489194886],[117,302,66,0.17424827007224636],[117,302,67,0.1703210209714675],[117,302,68,0.16728627026783305],[117,302,69,0.16512356413050672],[117,302,70,0.16378153622123376],[117,302,71,0.16317802647747875],[117,302,72,0.1631958281426214],[117,302,73,0.16368278337506248],[117,302,74,0.16452360538344138],[117,302,75,0.16564365893394456],[117,302,76,0.1669788929643734],[117,302,77,0.1684721520254534],[117,302,78,0.1700698341980322],[117,302,79,0.17171857853841543],[117,303,64,0.1880305040479014],[117,303,65,0.1823734095892268],[117,303,66,0.17755038937755424],[117,303,67,0.17359433892947496],[117,303,68,0.17051433351111484],[117,303,69,0.16829221690656537],[117,303,70,0.1668792614572692],[117,303,71,0.16619627901221037],[117,303,72,0.16612932937712857],[117,303,73,0.16652957511264768],[117,303,74,0.16728356068673006],[117,303,75,0.1683176023294548],[117,303,76,0.16956850395788187],[117,303,77,0.1709797982315305],[117,303,78,0.1724983199760342],[117,303,79,0.17407080360174798],[117,304,64,0.1913487787363789],[117,304,65,0.18570823234258096],[117,304,66,0.18088109351848491],[117,304,67,0.17690174860936453],[117,304,68,0.1737811701668987],[117,304,69,0.17150348962370462],[117,304,70,0.17002263703116924],[117,304,71,0.16926244774454174],[117,304,72,0.16911233630342581],[117,304,73,0.16942690618559528],[117,304,74,0.17009460968924184],[117,304,75,0.17104275974820576],[117,304,76,0.17220906674122],[117,304,77,0.17353781186053488],[117,304,78,0.17497633848197092],[117,304,79,0.17647156212326356],[117,305,64,0.19468907498035548],[117,305,65,0.1890720624579453],[117,305,66,0.18424729047562982],[117,305,67,0.18025056795636094],[117,305,68,0.17709471207641903],[117,305,69,0.1747661079586362],[117,305,70,0.17322133136490594],[117,305,71,0.17238725427471124],[117,305,72,0.17215668781897378],[117,305,73,0.17238774491355502],[117,305,74,0.1729708274645519],[117,305,75,0.1738342686989176],[117,305,76,0.1749167179655969],[117,305,77,0.17616324928769916],[117,305,78,0.17752177341796693],[117,305,79,0.17893946321503362],[117,306,64,0.19806387602154185],[117,306,65,0.1924772922613034],[117,306,66,0.18766152796418645],[117,306,67,0.1836537355785837],[117,306,68,0.18046850677775172],[117,306,69,0.17809442181475196],[117,306,70,0.176490657959448],[117,306,71,0.17558709665539562],[117,306,72,0.17527993867215066],[117,306,73,0.1754308195974081],[117,306,74,0.1759320938005608],[117,306,75,0.17671311272712564],[117,306,76,0.17771347469228482],[117,306,77,0.17887907162491873],[117,306,78,0.18015842480870078],[117,306,79,0.18149902882664332],[117,307,64,0.2014906111515414],[117,307,65,0.1959412400226122],[117,307,66,0.1911412660717024],[117,307,67,0.1871290958562983],[117,307,68,0.18392100818487434],[117,307,69,0.18150769527483068],[117,307,70,0.17985085922374172],[117,307,71,0.1788833229209206],[117,307,72,0.17850462008977494],[117,307,73,0.17857986557947653],[117,307,74,0.17900332799265145],[117,307,75,0.1797053468369964],[117,307,76,0.18062645456499546],[117,307,77,0.18171336465646457],[117,307,78,0.18291523430084156],[117,307,79,0.18417993032360738],[117,308,64,0.2049628414316529],[117,308,65,0.19945777790061042],[117,308,66,0.19468081345663754],[117,308,67,0.19067151057490303],[117,308,68,0.1874477365058019],[117,308,69,0.18500219840126725],[117,308,70,0.18329903015678883],[117,308,71,0.18227390931320428],[117,308,72,0.1818296247558771],[117,308,73,0.18183470639082738],[117,308,74,0.1821852983084068],[117,308,75,0.1828127048771046],[117,308,76,0.1836583800569657],[117,308,77,0.1846698608075486],[117,308,78,0.1857969609125276],[117,308,79,0.1869879632259031],[117,309,64,0.208448703207804],[117,309,65,0.20299568955129743],[117,309,66,0.19824960504597272],[117,309,67,0.19425106286125116],[117,309,68,0.19101941447233298],[117,309,69,0.18854928143120026],[117,309,70,0.18680713546846878],[117,309,71,0.185731424204999],[117,309,72,0.18522811991348614],[117,309,73,0.18516911642676187],[117,309,74,0.18545243231197328],[117,309,75,0.18601035384789658],[117,309,76,0.1867852721505078],[117,309,77,0.18772556732396298],[117,309,78,0.18878173915680577],[117,309,79,0.18990253150968037],[117,310,64,0.21191678821957347],[117,310,65,0.20652409923077605],[117,310,66,0.20181730520432456],[117,310,67,0.19783795858540945],[117,310,68,0.19460678597357667],[117,310,69,0.19212021967853687],[117,310,70,0.19034697447334864],[117,310,71,0.1892281854664828],[117,310,72,0.18867294191414025],[117,310,73,0.18855646231534312],[117,310,74,0.18877867413161903],[117,310,75,0.1892729006705347],[117,310,76,0.18998251266938804],[117,310,77,0.1908567699164062],[117,310,78,0.19184689595296314],[117,310,79,0.1929021417891903],[117,311,64,0.21533735699579643],[117,311,65,0.21001367474258797],[117,311,66,0.20535500411657093],[117,311,67,0.20140372004989654],[117,311,68,0.1981818107690656],[117,311,69,0.1956874126729698],[117,311,70,0.19389138756094762],[117,311,71,0.19273747647279021],[117,311,72,0.1921378230446143],[117,311,73,0.1919709406568959],[117,311,74,0.1921387317272119],[117,311,75,0.19257564625410717],[117,311,76,0.1932261013654753],[117,311,77,0.19404028830019504],[117,311,78,0.19497019950678188],[117,311,79,0.19596564009359052],[117,312,64,0.21868249673648565],[117,312,65,0.21343678551709494],[117,312,66,0.20883537489784537],[117,312,67,0.2049213410054485],[117,312,68,0.20171781635918795],[117,312,69,0.19922453194175427],[117,312,70,0.19741439908965502],[117,312,71,0.19623368349355463],[117,312,72,0.19559752301902902],[117,312,73,0.1953877034821825],[117,312,74,0.19550819637143538],[117,312,75,0.1958946991820696],[117,312,76,0.19649276408764615],[117,312,77,0.1972535791916868],[117,312,78,0.19812995752230536],[117,312,79,0.19524610946804707],[117,313,64,0.2219265320069654],[117,313,65,0.21676778442695943],[117,313,66,0.21223282669547805],[117,313,67,0.20836531157193228],[117,313,68,0.2051893956497066],[117,313,69,0.2027062927605244],[117,313,70,0.20089086501172468],[117,313,71,0.19969182145347067],[117,313,72,0.1990272356393517],[117,313,73,0.19878214910174494],[117,313,74,0.19886272143225064],[117,313,75,0.19920604654918095],[117,313,76,0.19975892012676683],[117,313,77,0.20047360490427693],[117,313,78,0.19779973078492896],[117,313,79,0.19124191513195551],[117,314,64,0.225045760224081],[117,314,65,0.21998276563325808],[117,314,66,0.21552328363346862],[117,314,67,0.21171141699607623],[117,314,68,0.20857222424552588],[117,314,69,0.206108288747719],[117,314,70,0.20429632361126918],[117,314,71,0.2030873997739409],[117,314,72,0.20240246885924718],[117,314,73,0.20212981570433255],[117,314,74,0.2021779289644347],[117,314,75,0.20248547309223983],[117,314,76,0.2030006134915886],[117,314,77,0.20066777850522874],[117,314,78,0.19363549564132906],[117,314,79,0.1870000746086804],[117,315,64,0.22801812818519035],[117,315,65,0.22305937212825594],[117,315,66,0.2186841209779624],[117,315,67,0.21493679974301916],[117,315,68,0.21184324550277],[117,315,69,0.20940729668281488],[117,315,70,0.20760741670892352],[117,315,71,0.20639695644591588],[117,315,72,0.20569968811841058],[117,315,73,0.20540713030343613],[117,315,74,0.2054302605465316],[117,315,75,0.2057095100802016],[117,315,76,0.20372932401257351],[117,315,77,0.19630545198654287],[117,315,78,0.18921993367502202],[117,315,79,0.1825456116177608],[117,316,64,0.23082336850889945],[117,316,65,0.225976945240815],[117,316,66,0.22169432647610943],[117,316,67,0.21802013142889776],[117,316,68,0.21498085183732377],[117,316,69,0.21258146602788305],[117,316,70,0.21080208632360753],[117,316,71,0.20959826088684905],[117,316,72,0.20889652461748315],[117,316,73,0.2085916218562413],[117,316,74,0.20859719483861697],[117,316,75,0.20682592160865562],[117,316,76,0.19911245782020565],[117,316,77,0.19166582365753498],[117,316,78,0.18456963156833625],[117,316,79,0.17789681774401944],[117,317,64,0.2334431519799974],[117,317,65,0.2287166859517529],[117,317,66,0.22453466946752124],[117,317,67,0.22094178855166355],[117,317,68,0.21796506592561712],[117,317,69,0.21561050450846586],[117,317,70,0.21385976363769235],[117,317,71,0.21267050542530352],[117,317,72,0.21197196862738762],[117,317,73,0.2116621159085911],[117,317,74,0.20977621542181632],[117,317,75,0.20188637947240604],[117,317,76,0.19418309641717504],[117,317,77,0.18675774051509475],[117,317,78,0.1796936035599991],[117,317,79,0.1730629737001571],[117,318,64,0.23497277777077202],[117,318,65,0.23126181825878755],[117,318,66,0.227187872389301],[117,318,67,0.22368403096747833],[117,318,68,0.22077772500531956],[117,318,69,0.21847586714487444],[117,318,70,0.21676156175266417],[117,318,71,0.21559450089865315],[117,318,72,0.21490656720938411],[117,318,73,0.2123925159845685],[117,318,74,0.20444192872858655],[117,318,75,0.19659374648373357],[117,318,76,0.1889434947441291],[117,318,77,0.18158181291617279],[117,318,78,0.17459094643609102],[117,318,79,0.16804183871833228],[117,319,64,0.2320584199583039],[117,319,65,0.23057789534135928],[117,319,66,0.22926208326968261],[117,319,67,0.22623118311268162],[117,319,68,0.22340266827593813],[117,319,69,0.22116094873389402],[117,319,70,0.21949047223527493],[117,319,71,0.21835287636386713],[117,319,72,0.21449758920872447],[117,319,73,0.2065953642977458],[117,319,74,0.19871266524567185],[117,319,75,0.19094508694491924],[117,319,76,0.1833871022437339],[117,319,77,0.17612796871070888],[117,319,78,0.1692482429840276],[117,319,79,0.1628169058716091],[118,-64,64,0.3410093957958237],[118,-64,65,0.3468842447113925],[118,-64,66,0.3528669053836335],[118,-64,67,0.35893844189826657],[118,-64,68,0.3651049062273132],[118,-64,69,0.3713861206273067],[118,-64,70,0.3777946886910377],[118,-64,71,0.3843357556928173],[118,-64,72,0.3910072879827639],[118,-64,73,0.39780041299659985],[118,-64,74,0.4046998208611464],[118,-64,75,0.4116842284509029],[118,-64,76,0.4187269066233803],[118,-64,77,0.425796271231316],[118,-64,78,0.43285653837905463],[118,-64,79,0.43986844425997274],[118,-63,64,0.3428024184523669],[118,-63,65,0.3487844436408974],[118,-63,66,0.3548791465547665],[118,-63,67,0.36106849935245006],[118,-63,68,0.3673580398876051],[118,-63,69,0.37376589494552864],[118,-63,70,0.38030283773945894],[118,-63,71,0.38697213758037335],[118,-63,72,0.3937699007612195],[118,-63,73,0.40068546679280576],[118,-63,74,0.4077018607730729],[118,-63,75,0.4147963025515118],[118,-63,76,0.4219407732288161],[118,-63,77,0.4291026394094818],[118,-63,78,0.43624533550247196],[118,-63,79,0.44332910424389294],[118,-62,64,0.3447680018474672],[118,-62,65,0.3508447242417881],[118,-62,66,0.35703740828444525],[118,-62,67,0.3633292560469456],[118,-62,68,0.3697252348115902],[118,-62,69,0.37624152606929356],[118,-62,70,0.382886972976482],[118,-62,71,0.3896630039171589],[118,-62,72,0.39656401246573925],[118,-62,73,0.403577788447943],[118,-62,74,0.4106860007319821],[118,-62,75,0.41786473226739523],[118,-62,76,0.4250850677731746],[118,-62,77,0.4323137343611835],[118,-62,78,0.43951379526579226],[118,-62,79,0.446645396737663],[118,-61,64,0.3468915870031286],[118,-61,65,0.35305049128003496],[118,-61,66,0.3593270261594153],[118,-61,67,0.3657059037157917],[118,-61,68,0.37219148417092324],[118,-61,69,0.3787978103903193],[118,-61,70,0.38553174133559764],[118,-61,71,0.3923929341933173],[118,-61,72,0.3993742421344906],[118,-61,73,0.4064621598918316],[118,-61,74,0.4136373176830259],[118,-61,75,0.4208750238986596],[118,-61,76,0.4281458568634838],[118,-61,77,0.435416305870311],[118,-61,78,0.4426494615774773],[118,-61,79,0.4498057557549263],[118,-60,64,0.3491551966576743],[118,-60,65,0.35538403612194147],[118,-60,66,0.3617305772457514],[118,-60,67,0.36818126880293156],[118,-60,68,0.3747398426099215],[118,-60,69,0.3814180644738742],[118,-60,70,0.38822079558225997],[118,-60,71,0.39514601859123777],[118,-60,72,0.4021852337535108],[118,-60,73,0.40932390047127276],[118,-60,74,0.41654192473907814],[118,-60,75,0.4238141928370767],[118,-60,76,0.4311111515306051],[118,-60,77,0.43839943492848216],[118,-60,78,0.4456425380499341],[118,-60,79,0.4528015370502686],[118,-59,64,0.3515384072226998],[118,-59,65,0.35782553865907524],[118,-59,66,0.36422891337897506],[118,-59,67,0.3707368782077426],[118,-59,68,0.3773525230032093],[118,-59,69,0.38408524754869644],[118,-59,70,0.39093793389156983],[118,-59,71,0.3979070031715138],[118,-59,72,0.4049827932791447],[118,-59,73,0.4121499802938922],[118,-59,74,0.4193880441363014],[118,-59,75,0.4266717787707797],[118,-59,76,0.43397184719560744],[118,-59,77,0.44125538135865516],[118,-59,78,0.4484866270400582],[118,-59,79,0.4556276336484805],[118,-58,64,0.3540195057078169],[118,-58,65,0.3603542539935674],[118,-58,66,0.36680237833157125],[118,-58,67,0.37335420737135705],[118,-58,68,0.38001217310007646],[118,-58,69,0.38678326009820757],[118,-58,70,0.393668410098432],[118,-58,71,0.40066259844733215],[118,-58,72,0.40775517979061815],[118,-58,73,0.41493027643551555],[118,-58,74,0.42216720982124606],[118,-58,75,0.4294409754346391],[118,-58,76,0.4367227614137959],[118,-58,77,0.4439805109892554],[118,-58,78,0.4511795288196274],[118,-58,79,0.4582831311885425],[118,-57,64,0.3565768314045454],[118,-57,65,0.36294988366273456],[118,-57,66,0.36943220864123666],[118,-57,67,0.37601611050756484],[118,-57,68,0.38270333189403594],[118,-57,69,0.38949841843848704],[118,-57,70,0.39640041456338804],[118,-57,71,0.4034029513578099],[118,-57,72,0.4104945508591833],[118,-57,73,0.41765897218125553],[118,-57,74,0.4248755999304724],[118,-57,75,0.4321198752644551],[118,-57,76,0.4393637698572053],[118,-57,77,0.446576302946963],[118,-57,78,0.4537241015546549],[118,-57,79,0.4607720038748921],[118,-56,64,0.35918672534009655],[118,-56,65,0.36559015355597396],[118,-56,66,0.37209773480223857],[118,-56,67,0.37870364232520554],[118,-56,68,0.3854088704024937],[118,-56,69,0.3922155168378179],[118,-56,70,0.39912076648818634],[118,-56,71,0.40611698521642076],[118,-56,72,0.41319197739759495],[118,-56,73,0.42032928443399664],[118,-56,74,0.42750852473821616],[118,-56,75,0.43470577556098644],[118,-56,76,0.44189399695660986],[118,-56,77,0.44904349809501715],[118,-56,78,0.45612244604607144],[118,-56,79,0.4630974170799319],[118,-55,64,0.3618027434347268],[118,-55,65,0.3682274967291988],[118,-55,66,0.37475049406159977],[118,-55,67,0.3813675846259773],[118,-55,68,0.3880789473568774],[118,-55,69,0.3948842825152926],[118,-55,70,0.4017790065937823],[118,-55,71,0.4087543443881981],[118,-55,72,0.4157975336160049],[118,-55,73,0.42289206987390465],[118,-55,74,0.4300179924215325],[118,-55,75,0.43715221120053993],[118,-55,76,0.44426887541972093],[118,-55,77,0.4513397839577772],[118,-55,78,0.4583348377561836],[118,-55,79,0.465222534296683],[118,-54,64,0.36437271598538196],[118,-54,65,0.3708077982496609],[118,-54,66,0.37733465495230867],[118,-54,67,0.383950550260078],[118,-54,68,0.3906547852643735],[118,-54,69,0.3974447861273049],[118,-54,70,0.4043143644337876],[118,-54,71,0.41125379504646614],[118,-54,72,0.41824995927935965],[118,-54,73,0.4252865282545284],[118,-54,74,0.4323441869733462],[118,-54,75,0.4394008995615161],[118,-54,76,0.44643221607281364],[118,-54,77,0.45341162116145983],[118,-54,78,0.46031092485737446],[118,-54,79,0.46710069560353623],[118,-53,64,0.366851217614726],[118,-53,65,0.37328417685583815],[118,-53,66,0.37980211796298513],[118,-53,67,0.38640340534253564],[118,-53,68,0.39308640478240736],[118,-53,69,0.399846451859135],[118,-53,70,0.4066759737814929],[118,-53,71,0.4135645373667769],[118,-53,72,0.42049892050539833],[118,-53,73,0.42746322444703544],[118,-53,74,0.43443902750779784],[118,-53,75,0.44140558072947833],[118,-53,76,0.4483400459512332],[118,-53,77,0.4552177766817217],[118,-53,78,0.4620126420862114],[118,-53,79,0.468697394329617],[118,-52,64,0.36919984819234175],[118,-52,65,0.3756172340820776],[118,-52,66,0.3821127298338665],[118,-52,67,0.38868544591763265],[118,-52,68,0.3953327613266893],[118,-52,69,0.4020481522474594],[118,-52,70,0.40882292484327015],[118,-52,71,0.41564621535941765],[118,-52,72,0.4225049785843605],[118,-52,73,0.42938401878891463],[118,-52,74,0.4362660638370452],[118,-52,75,0.4431318830962251],[118,-52,76,0.44996044970653704],[118,-52,77,0.45672914769653505],[118,-52,78,0.46341402436072954],[118,-52,79,0.4699900882396454],[118,-51,64,0.3713875713158355],[118,-51,65,0.3777753544125416],[118,-51,66,0.3842345420866387],[118,-51,67,0.39076461163181625],[118,-51,68,0.39736191101291896],[118,-51,69,0.40401832435043805],[118,-51,70,0.4107243297021641],[118,-51,71,0.417468931889616],[118,-51,72,0.4242395562394356],[118,-51,73,0.4310219876462605],[118,-51,74,0.4378003557724261],[118,-51,75,0.4445571671353132],[118,-51,76,0.4512733847644963],[118,-51,77,0.4579285560388726],[118,-51,78,0.4645009892390931],[118,-51,79,0.4709679792741134],[118,-50,64,0.3732152701808612],[118,-50,65,0.37973512154902905],[118,-50,66,0.386144185291188],[118,-50,67,0.39261781436341164],[118,-50,68,0.3991512902885219],[118,-50,69,0.40573519785690254],[118,-50,70,0.41235949747625034],[118,-50,71,0.4190133707321581],[118,-50,72,0.4256850078092748],[118,-50,73,0.432361444384411],[118,-50,74,0.4390284489560186],[118,-50,75,0.4456704615091071],[118,-50,76,0.45227058434403067],[118,-50,77,0.4588106258225585],[118,-50,78,0.4652711977057307],[118,-50,79,0.4716318666764512],[118,-49,64,0.37325723235477826],[118,-49,65,0.3802105644359919],[118,-49,66,0.3872305979839469],[118,-49,67,0.3942285954868484],[118,-49,68,0.4006859997935697],[118,-49,69,0.40718573220081977],[118,-49,70,0.41371753946610823],[118,-49,71,0.4202710714510169],[118,-49,72,0.42683555199522794],[118,-49,73,0.4333995047145159],[118,-49,74,0.4399505348600225],[118,-49,75,0.4464751683078356],[118,-49,76,0.45295874867308916],[118,-49,77,0.4593853934624133],[118,-49,78,0.4657380100931641],[118,-49,79,0.4719983725188103],[118,-48,64,0.37338179824238843],[118,-48,65,0.38036725489804457],[118,-48,66,0.3874275890091118],[118,-48,67,0.39454654509870496],[118,-48,68,0.4017111852839556],[118,-48,69,0.4083606772574252],[118,-48,70,0.4147941551663542],[118,-48,71,0.4212429234866533],[118,-48,72,0.42769741983109705],[118,-48,73,0.43414779833115236],[118,-48,74,0.44058360232034466],[118,-48,75,0.44699350092067974],[118,-48,76,0.4533650907009124],[118,-48,77,0.4596847634877717],[118,-48,78,0.4659376413174338],[118,-48,79,0.47210757941598996],[118,-47,64,0.3736046211227964],[118,-47,65,0.38061792482884677],[118,-47,66,0.3877127635463574],[118,-47,67,0.39487430011069385],[118,-47,68,0.4020910389184881],[118,-47,69,0.40925670974310985],[118,-47,70,0.415590885329414],[118,-47,71,0.4219354914571374],[118,-47,72,0.4282822653673138],[118,-47,73,0.43462303627516397],[118,-47,74,0.4409492891761896],[118,-47,75,0.4472517998822416],[118,-47,76,0.45352034262909163],[118,-47,77,0.45974347150064687],[118,-47,78,0.46590837681134584],[118,-47,79,0.4720008174789207],[118,-46,64,0.3739323749765159],[118,-46,65,0.3809665631577463],[118,-46,66,0.3880871370083058],[118,-46,67,0.3952810602662514],[118,-46,68,0.4025383952405406],[118,-46,69,0.4098499795067259],[118,-46,70,0.41611477847878325],[118,-46,71,0.42235990452892835],[118,-46,72,0.4286052941236275],[118,-46,73,0.43484441100166116],[118,-46,74,0.4410706019656063],[118,-46,75,0.44727663426419445],[118,-46,76,0.45345431320326524],[118,-46,77,0.4595941813830707],[118,-46,78,0.46568530084547466],[118,-46,79,0.47171511929371995],[118,-45,64,0.3743636664349108],[118,-45,65,0.3814094731071377],[118,-45,66,0.38854452210044665],[118,-45,67,0.39575793696030725],[118,-45,68,0.40304146913035116],[118,-45,69,0.4102298587664812],[118,-45,70,0.4163777121777005],[118,-45,71,0.42253124366491257],[118,-45,72,0.4286847241685217],[118,-45,73,0.4348331385312032],[118,-45,74,0.440971545616749],[118,-45,75,0.44709452446797554],[118,-45,76,0.45319570815224847],[118,-45,77,0.4592674068272017],[118,-45,78,0.46530032143413563],[118,-45,79,0.47128334929402593],[118,-44,64,0.37488993213013183],[118,-44,65,0.38193615508389794],[118,-44,66,0.389072388726566],[118,-44,67,0.39629024302792715],[118,-44,68,0.4035833001233477],[118,-44,69,0.4103292417556712],[118,-44,70,0.41639572002936354],[118,-44,71,0.42246793279764816],[118,-44,72,0.42854124923358655],[118,-44,73,0.4346120006957778],[118,-44,74,0.44067675127595285],[118,-44,75,0.4467316612082077],[118,-44,76,0.45277194491068207],[118,-44,77,0.4587914253045833],[118,-44,78,0.464782185919709],[118,-44,79,0.4707343221517602],[118,-43,64,0.37549632404759065],[118,-43,65,0.3825301784226422],[118,-43,66,0.389652713593004],[118,-43,67,0.3968583122745465],[118,-43,68,0.40414253410385664],[118,-43,69,0.4101927923621663],[118,-43,70,0.41618832246226006],[118,-43,71,0.42219113215723114],[118,-43,72,0.42819750228446485],[118,-43,73,0.4342048861078115],[118,-43,74,0.4402111011195967],[118,-43,75,0.44621361976215423],[118,-43,76,0.4522089609357548],[118,-43,77,0.45819218402447875],[118,-43,78,0.4641564870258864],[118,-43,79,0.4700929102160062],[118,-42,64,0.37616258550951587],[118,-42,65,0.3831700445527045],[118,-42,66,0.39026282200412826],[118,-42,67,0.3974383121015006],[118,-42,68,0.40392113137721575],[118,-42,69,0.4098417379386337],[118,-42,70,0.41577785932577127],[118,-42,71,0.4217241319564509],[118,-42,72,0.4276775179456785],[118,-42,73,0.4336363284593587],[118,-42,74,0.4395993489796888],[118,-42,75,0.44556506854834893],[118,-42,76,0.45153101492202535],[118,-42,77,0.45749319743103317],[118,-42,78,0.46344565917725317],[118,-42,79,0.46938014004410583],[118,-41,64,0.37686392043618655],[118,-41,65,0.3838300441807897],[118,-41,66,0.3908762243624429],[118,-41,67,0.39758921839369493],[118,-41,68,0.4034305716759935],[118,-41,69,0.40930004694184957],[118,-41,70,0.4151888223002817],[118,-41,71,0.42109174461613336],[118,-41,72,0.42700619215871793],[118,-41,73,0.43293104074329086],[118,-41,74,0.43886573560114694],[118,-41,75,0.44480947108968993],[118,-41,76,0.45076048021538034],[118,-41,77,0.45671543579157053],[118,-41,78,0.4626689648913547],[118,-41,79,0.4686132780845525],[118,-40,64,0.37757185854003794],[118,-40,65,0.38448111109189304],[118,-40,66,0.3912201599954109],[118,-40,67,0.3969685203237838],[118,-40,68,0.4027644602270134],[118,-40,69,0.40859370829369446],[118,-40,70,0.4144471851117039],[118,-40,71,0.42031969369981237],[118,-40,72,0.42620873744021714],[118,-40,73,0.43211344397762347],[118,-40,74,0.4380335973406293],[118,-40,75,0.44396878041146254],[118,-40,76,0.4499176297263121],[118,-40,77,0.4558772044321364],[118,-40,78,0.4618424710584558],[118,-40,79,0.4678059055861219],[118,-39,64,0.3782551191073768],[118,-39,65,0.38485672141228705],[118,-39,66,0.390484930064868],[118,-39,67,0.39619032795855946],[118,-39,68,0.4019503506327163],[118,-39,69,0.4077500074224621],[118,-39,70,0.4135797295340892],[118,-39,71,0.4194339977206665],[118,-39,72,0.4253101321014066],[118,-39,73,0.4312071890096653],[118,-39,74,0.43712496711416005],[118,-39,75,0.4430631249246243],[118,-39,76,0.44902041164571826],[118,-39,77,0.45499401318316207],[118,-39,78,0.4609790149353185],[118,-39,79,0.4583176130665843],[118,-38,64,0.37856147661726236],[118,-38,65,0.3840305350867448],[118,-38,66,0.389613244014718],[118,-38,67,0.3952836246161517],[118,-38,68,0.4010167784807512],[118,-38,69,0.4067967968115074],[118,-38,70,0.4126133651654152],[118,-38,71,0.4184603469845067],[118,-38,72,0.4243345617908082],[118,-38,73,0.43023466997789905],[118,-38,74,0.4361601664030247],[118,-38,75,0.44211048484853366],[118,-38,76,0.4440981703533381],[118,-38,77,0.4473248228062539],[118,-38,78,0.4448025276536357],[118,-38,79,0.42608460650611213],[118,-37,64,0.37767600492032727],[118,-37,65,0.38309156907553493],[118,-37,66,0.3886352068330676],[118,-37,67,0.39427794876241073],[118,-37,68,0.3999924833939379],[118,-37,69,0.40576175889306093],[118,-37,70,0.41157444097096585],[118,-37,71,0.41742347164076554],[118,-37,72,0.4233048517295082],[118,-37,73,0.42306288180831225],[118,-37,74,0.4159363230329397],[118,-37,75,0.42680248195654624],[118,-37,76,0.4192151250291407],[118,-37,77,0.4191017594379335],[118,-37,78,0.4147269591185248],[118,-37,79,0.4041427563062477],[118,-36,64,0.3656808291966481],[118,-36,65,0.38207055006350277],[118,-36,66,0.38758095553307226],[118,-36,67,0.3932025737515073],[118,-36,68,0.3989056217146918],[118,-36,69,0.40467165914520836],[118,-36,70,0.4104880466069177],[118,-36,71,0.4163464991298727],[118,-36,72,0.41848377738852055],[118,-36,73,0.40942059941902],[118,-36,74,0.4004613898670805],[118,-36,75,0.4049816647003406],[118,-36,76,0.3968122153620865],[118,-36,77,0.39689788831660894],[118,-36,78,0.39300202366914605],[118,-36,79,0.38853364938529056],[118,-35,64,0.3599359248913867],[118,-35,65,0.37835125534412745],[118,-35,66,0.3864798017519864],[118,-35,67,0.3920856762511296],[118,-35,68,0.3977829675806485],[118,-35,69,0.40355158727935303],[118,-35,70,0.4087685792621804],[118,-35,71,0.4076559330160487],[118,-35,72,0.40308362596339437],[118,-35,73,0.4008235061498523],[118,-35,74,0.39681022552105844],[118,-35,75,0.39438687251821825],[118,-35,76,0.3872184962045563],[118,-35,77,0.38369739690081833],[118,-35,78,0.37530939669217384],[118,-35,79,0.37367036336423415],[118,-34,64,0.36294827559789417],[118,-34,65,0.379901520731826],[118,-34,66,0.3853593608834952],[118,-34,67,0.3909534910438787],[118,-34,68,0.39664910018986643],[118,-34,69,0.40242418444410416],[118,-34,70,0.40826263020294834],[118,-34,71,0.4111565534517296],[118,-34,72,0.3990740135703852],[118,-34,73,0.39573872035303265],[118,-34,74,0.39854780845578497],[118,-34,75,0.39374866831767136],[118,-34,76,0.3874738302520583],[118,-34,77,0.38099770326122534],[118,-34,78,0.3650480571509549],[118,-34,79,0.3585894138945905],[118,-33,64,0.36424138031350917],[118,-33,65,0.3788085418971318],[118,-33,66,0.38424466540598623],[118,-33,67,0.3898294499521477],[118,-33,68,0.3955255751064884],[118,-33,69,0.40130885442059266],[118,-33,70,0.4071610208118984],[118,-33,71,0.413068377819279],[118,-33,72,0.4116681378444729],[118,-33,73,0.4021812134576271],[118,-33,74,0.4040601228444785],[118,-33,75,0.39730998463600975],[118,-33,76,0.3893797307412115],[118,-33,77,0.3837855397886763],[118,-33,78,0.3658377648311096],[118,-33,79,0.3556210156577669],[118,-32,64,0.370828368293998],[118,-32,65,0.3777417455674932],[118,-32,66,0.3831572601391994],[118,-32,67,0.38873330270039647],[118,-32,68,0.3944300775207875],[118,-32,69,0.4002209568433395],[118,-32,70,0.40608526684484925],[118,-32,71,0.4120070048469455],[118,-32,72,0.4179738359744594],[118,-32,73,0.413103283099096],[118,-32,74,0.41468958423826796],[118,-32,75,0.41271939262559115],[118,-32,76,0.3999925964326129],[118,-32,77,0.39279365882550044],[118,-32,78,0.37700038827528526],[118,-32,79,0.3621074880571949],[118,-31,64,0.3715391979963276],[118,-31,65,0.3767199495787726],[118,-31,66,0.3821142772428863],[118,-31,67,0.3876802176064739],[118,-31,68,0.3933755554512992],[118,-31,69,0.3991709805501761],[118,-31,70,0.40504318859739247],[118,-31,71,0.4109736775515965],[118,-31,72,0.4169478114418786],[118,-31,73,0.4229539472257182],[118,-31,74,0.42898262608541],[118,-31,75,0.43258755251264797],[118,-31,76,0.4167284896817324],[118,-31,77,0.4047913401940542],[118,-31,78,0.3915949034521408],[118,-31,79,0.37910279977747957],[118,-30,64,0.370610637108714],[118,-30,65,0.3757567768929992],[118,-30,66,0.38112748886489867],[118,-30,67,0.38667986008368777],[118,-30,68,0.3923693309624705],[118,-30,69,0.39816369524558703],[118,-30,70,0.4040368336254804],[118,-30,71,0.4099675993875063],[118,-30,72,0.4159389513192803],[118,-30,73,0.4219371390766504],[118,-30,74,0.4279509422561304],[118,-30,75,0.4339709643540874],[118,-30,76,0.42728292670165824],[118,-30,77,0.41330275431025426],[118,-30,78,0.4000968932355426],[118,-30,79,0.3951481601477929],[118,-29,64,0.3697509206543801],[118,-29,65,0.37485966579058827],[118,-29,66,0.3802023354521436],[118,-29,67,0.3857354470372951],[118,-29,68,0.3914121875685123],[118,-29,69,0.39719727975375174],[118,-29,70,0.4030616543119647],[118,-29,71,0.40898143145344323],[118,-29,72,0.41493712169720876],[118,-29,73,0.42091286812855405],[118,-29,74,0.42689573122052277],[118,-29,75,0.432875017290321],[118,-29,76,0.4329190950570403],[118,-29,77,0.4187349892749271],[118,-29,78,0.40491952329876346],[118,-29,79,0.4055890916839169],[118,-28,64,0.36896225707009533],[118,-28,65,0.37402885371483696],[118,-28,66,0.3793369278561876],[118,-28,67,0.38484277535306555],[118,-28,68,0.39049743210299614],[118,-28,69,0.3962624252405587],[118,-28,70,0.4021056610783806],[118,-28,71,0.4080005046603594],[118,-28,72,0.4139250439330963],[118,-28,73,0.41986138425423314],[118,-28,74,0.42579497425137053],[118,-28,75,0.43171396400990264],[118,-28,76,0.43760859652601347],[118,-28,77,0.4291694183138341],[118,-28,78,0.4152851967901707],[118,-28,79,0.41150788533609284],[118,-27,64,0.36823879333254483],[118,-27,65,0.3732563329893043],[118,-27,66,0.3785210214977773],[118,-27,67,0.38398922280342446],[118,-27,68,0.38960992945612066],[118,-27,69,0.3953414118999349],[118,-27,70,0.40114854984884707],[118,-27,71,0.40700200716192875],[118,-27,72,0.4128775512771944],[118,-27,73,0.4187553921724892],[118,-27,74,0.42461954177783684],[118,-27,75,0.43021170527725905],[118,-27,76,0.43580572206360063],[118,-27,77,0.4414309444200764],[118,-27,78,0.4288669839050476],[118,-27,79,0.41719573442949986],[118,-26,64,0.3675655347868571],[118,-26,65,0.37252477677741935],[118,-26,66,0.3777349609992765],[118,-26,67,0.38315271983642246],[118,-26,68,0.3887251087153973],[118,-26,69,0.39440715772679247],[118,-26,70,0.4000489425570754],[118,-26,71,0.40511726549565014],[118,-26,72,0.41029032767146173],[118,-26,73,0.4155672526859301],[118,-26,74,0.4209414739665729],[118,-26,75,0.4264014715001699],[118,-26,76,0.4319314941318015],[118,-26,77,0.43751226659021836],[118,-26,78,0.4431216804191471],[118,-26,79,0.42067728380332303],[118,-25,64,0.3669171816856191],[118,-25,65,0.37180642681067516],[118,-25,66,0.3769486285559596],[118,-25,67,0.38230076606056296],[118,-25,68,0.3871051483634376],[118,-25,69,0.39182830029773946],[118,-25,70,0.39664841014405483],[118,-25,71,0.40158091362435755],[118,-25,72,0.40663356471043766],[118,-25,73,0.4118071791380741],[118,-25,74,0.41709637415232353],[118,-25,75,0.4224903036436835],[118,-25,76,0.4279733878265933],[118,-25,77,0.43352603660942907],[118,-25,78,0.43912536580928974],[118,-25,79,0.4219381211718045],[118,-24,64,0.3659622503005545],[118,-24,65,0.3704425979779941],[118,-24,66,0.37489208112562866],[118,-24,67,0.379343075958376],[118,-24,68,0.3838395455318474],[118,-24,69,0.38841788454547865],[118,-24,70,0.39310482114764733],[118,-24,71,0.39791816605409785],[118,-24,72,0.40286754522355017],[118,-24,73,0.4079551372524426],[118,-24,74,0.41317641466977123],[118,-24,75,0.41852088828589634],[118,-24,76,0.42397285372765225],[118,-24,77,0.42951213927670656],[118,-24,78,0.43511485411953965],[118,-24,79,0.4227891004649889],[118,-23,64,0.36316175219025654],[118,-23,65,0.36748297380982337],[118,-23,66,0.37177852386163945],[118,-23,67,0.376080678415052],[118,-23,68,0.3804352408677064],[118,-23,69,0.38488163001624853],[118,-23,70,0.3894491517887765],[118,-23,71,0.3941576998270278],[118,-23,72,0.39901848212672664],[118,-23,73,0.40403475929758453],[118,-23,74,0.4092025936143019],[118,-23,75,0.4145116079907044],[118,-23,76,0.41994575397563005],[118,-23,77,0.42548408784206354],[118,-23,78,0.4311015538211665],[118,-23,79,0.4185871762584363],[118,-22,64,0.36022391439634427],[118,-22,65,0.3643907712153813],[118,-22,66,0.36853896948426706],[118,-22,67,0.37270050858610415],[118,-22,68,0.37692270217169177],[118,-22,69,0.3812476568221372],[118,-22,70,0.38570694595506955],[118,-22,71,0.39032226308921625],[118,-22,72,0.3951061433313119],[118,-22,73,0.4000627031234231],[118,-22,74,0.4051883974047028],[118,-22,75,0.41047279329063896],[118,-22,76,0.4158993593277743],[118,-22,77,0.42144626934351476],[118,-22,78,0.42708721988000653],[118,-22,79,0.4107210658981438],[118,-21,64,0.3571846206185677],[118,-21,65,0.36119985288144124],[118,-21,66,0.3652051826961603],[118,-21,67,0.3692321063278937],[118,-21,68,0.3733290455613722],[118,-21,69,0.37754040636019015],[118,-21,70,0.38189970430261266],[118,-21,71,0.3864301652193944],[118,-21,72,0.39114543598016893],[118,-21,73,0.3960503203940277],[118,-21,74,0.4011415393614752],[118,-21,75,0.4064085143518321],[118,-21,76,0.41183417322309696],[118,-21,77,0.4173957773512448],[118,-21,78,0.4230657689941234],[118,-21,79,0.40702064648689196],[118,-20,64,0.3540782368947794],[118,-20,65,0.35794243462712627],[118,-20,66,0.36180705151522974],[118,-20,67,0.3657028216577924],[118,-20,68,0.36967882106931477],[118,-20,69,0.3737813292281196],[118,-20,70,0.37804547541255007],[118,-20,71,0.3824957753022546],[118,-20,72,0.38714681939859685],[118,-20,73,0.39200399408402686],[118,-20,74,0.3970642344486403],[118,-20,75,0.4023168079356178],[118,-20,76,0.4077441277868988],[118,-20,77,0.41332259520743364],[118,-20,78,0.41902346911202665],[118,-20,79,0.40722937907790063],[118,-19,64,0.3509387473743857],[118,-19,65,0.3546501378145445],[118,-19,66,0.35837355257474945],[118,-19,67,0.36213868718752834],[118,-19,68,0.3659947869195095],[118,-19,69,0.36998955868594996],[118,-19,70,0.3741594287020851],[118,-19,71,0.3785299977804323],[118,-19,72,0.38311668978251673],[118,-19,73,0.38792544136261004],[118,-19,74,0.3929534321373275],[118,-19,75,0.39818985432281445],[118,-19,76,0.4036167207954218],[118,-19,77,0.4092097104535265],[118,-19,78,0.4149390496890075],[118,-19,79,0.4065407918686375],[118,-18,64,0.3477969487322292],[118,-18,65,0.3513509272052373],[118,-18,66,0.35492942656178367],[118,-18,67,0.35856082342306667],[118,-18,68,0.36229403741075883],[118,-18,69,0.3661777563610546],[118,-18,70,0.3702494160703233],[118,-18,71,0.3745355512185797],[118,-18,72,0.37905238035738587],[118,-18,73,0.383806442442155],[118,-18,74,0.38879528406911934],[118,-18,75,0.3940081964663998],[118,-18,76,0.3994270011840834],[118,-18,77,0.40502688333144293],[118,-18,78,0.41077727112217893],[118,-18,79,0.4019836271113193],[118,-17,64,0.3446620161808938],[118,-17,65,0.3480514601190524],[118,-17,66,0.351478513137835],[118,-17,67,0.3549699656913639],[118,-17,68,0.35857391998223576],[118,-17,69,0.36233960015704436],[118,-17,70,0.3663051854771604],[118,-17,71,0.37049803010034954],[118,-17,72,0.37493515718930814],[118,-17,73,0.3796238167437244],[118,-17,74,0.38456210636697546],[118,-17,75,0.3897396540451295],[118,-17,76,0.39513836188871143],[118,-17,77,0.40073320966834797],[118,-17,78,0.4064931168659478],[118,-17,79,0.39328858894825836],[118,-16,64,0.3414888149065328],[118,-16,65,0.34470797828776334],[118,-16,66,0.34797881353339255],[118,-16,67,0.35132629679167493],[118,-16,68,0.35479720805749854],[118,-16,69,0.35844080770497105],[118,-16,70,0.36229568096477965],[118,-16,71,0.3663898046710552],[118,-16,72,0.37074092711347606],[118,-16,73,0.37535702538376214],[118,-16,74,0.3802368394977556],[118,-16,75,0.38537048241481564],[118,-16,76,0.3907401249228669],[118,-16,77,0.3963207542120217],[118,-16,78,0.40208100482450415],[118,-16,79,0.38972109682027367],[118,-15,64,0.33823012351323767],[118,-15,65,0.3412753897234398],[118,-15,66,0.3443877449219928],[118,-15,67,0.34759016194789893],[118,-15,68,0.3509275841680528],[118,-15,69,0.3544487526067903],[118,-15,70,0.35819224369905317],[118,-15,71,0.3621863675677382],[118,-15,72,0.366449415770495],[118,-15,73,0.3709900014103641],[118,-15,74,0.3758074909746339],[118,-15,75,0.38089252707816534],[118,-15,76,0.3862276411052408],[118,-15,77,0.3917879545698512],[118,-15,78,0.3975419678507813],[118,-15,79,0.38965803424986206],[118,-14,64,0.33485066694075566],[118,-14,65,0.3377202469201854],[118,-14,66,0.34067387326764714],[118,-14,67,0.3437323599736682],[118,-14,68,0.3469383013100704],[118,-14,69,0.35033932773688],[118,-14,70,0.353973537313511],[118,-14,71,0.3578692158783279],[118,-14,72,0.36204493981870467],[118,-14,73,0.3665097866969223],[118,-14,74,0.37126365318767324],[118,-14,75,0.37629767956437193],[118,-14,76,0.38159477975868644],[118,-14,77,0.387130275813059],[118,-14,78,0.39287263535232514],[118,-14,79,0.3898146363200651],[118,-13,64,0.30894268302194555],[118,-13,65,0.3340187255411803],[118,-13,66,0.3368149509079554],[118,-13,67,0.33973227126523475],[118,-13,68,0.3428104331825233],[118,-13,69,0.34609534960523186],[118,-13,70,0.3496241374690407],[118,-13,71,0.3534246553640441],[118,-13,72,0.357515452961176],[118,-13,73,0.3619058439543245],[118,-13,74,0.3665961020697483],[118,-13,75,0.3715777794444259],[118,-13,76,0.37683414643064633],[118,-13,77,0.38234075164809117],[118,-13,78,0.3880661008799928],[118,-13,79,0.39095172758463637],[118,-12,64,0.16802190322593652],[118,-12,65,0.20289678529257751],[118,-12,66,0.24150123792301376],[118,-12,67,0.28379045950745807],[118,-12,68,0.32971153307674256],[118,-12,69,0.3417051036547392],[118,-12,70,0.34513324859373157],[118,-12,71,0.34884271526629124],[118,-12,72,0.3528516831546895],[118,-12,73,0.35716943785071925],[118,-12,74,0.36179644034662545],[118,-12,75,0.36672453425679685],[118,-12,76,0.3719372900617563],[118,-12,77,0.37741048519842063],[118,-12,78,0.38311271856486145],[118,-12,79,0.3890061577658468],[118,-11,64,0.07860932673754903],[118,-11,65,0.09950982401063414],[118,-11,66,0.1235111560493144],[118,-11,67,0.15063690924860204],[118,-11,68,0.1808989942121457],[118,-11,69,0.21428970085147614],[118,-11,70,0.2507696391345901],[118,-11,71,0.29026994771484355],[118,-11,72,0.3326949358722786],[118,-11,73,0.3522930854942022],[118,-11,74,0.3568567856914656],[118,-11,75,0.361729457745802],[118,-11,76,0.3668949001053787],[118,-11,77,0.3723291100192834],[118,-11,78,0.37800082916545197],[118,-11,79,0.38387223687715605],[118,-10,64,0.02895114622965108],[118,-10,65,0.03933914283823881],[118,-10,66,0.052117609832541656],[118,-10,67,0.06737849407805155],[118,-10,68,0.08519827732758581],[118,-10,69,0.1056322106913029],[118,-10,70,0.12870236977750746],[118,-10,71,0.15439956517847966],[118,-10,72,0.18268570774056722],[118,-10,73,0.21349631016772735],[118,-10,74,0.24674311050735945],[118,-10,75,0.2823168036531758],[118,-10,76,0.32008986768896036],[118,-10,77,0.3599194726821283],[118,-10,78,0.37271741621019727],[118,-10,79,0.3785559083334809],[118,-9,64,0.022155568319183257],[118,-9,65,0.024709139627689218],[118,-9,66,0.02722197923822185],[118,-9,67,0.029702934866323166],[118,-9,68,0.03217745826601038],[118,-9,69,0.04147103588608209],[118,-9,70,0.05418304747880833],[118,-9,71,0.06904626510998801],[118,-9,72,0.08608042012803006],[118,-9,73,0.10527669342459071],[118,-9,74,0.12660011014231684],[118,-9,75,0.14999206231293694],[118,-9,76,0.1753729463566014],[118,-9,77,0.2026449030860721],[118,-9,78,0.23169464868163858],[118,-9,79,0.26239638602108084],[118,-8,64,0.01790670546308278],[118,-8,65,0.020398248757772863],[118,-8,66,0.022874375825996537],[118,-8,67,0.02534125226808306],[118,-8,68,0.027819492637926487],[118,-8,69,0.03034045633526244],[118,-8,70,0.032932407591895606],[118,-8,71,0.035619170730244544],[118,-8,72,0.03841927014680434],[118,-8,73,0.04151228453487125],[118,-8,74,0.05363479102286971],[118,-8,75,0.06748685930143801],[118,-8,76,0.0830377582185189],[118,-8,77,0.1002357422247627],[118,-8,78,0.11901073538881005],[118,-8,79,0.1392771140443832],[118,-7,64,0.013647504069912823],[118,-7,65,0.016080737512816017],[118,-7,66,0.018523675249429414],[118,-7,67,0.020979800027760023],[118,-7,68,0.02346470904519277],[118,-7,69,0.02600499366733577],[118,-7,70,0.02862515992538392],[118,-7,71,0.031346156495785746],[118,-7,72,0.034184386630220415],[118,-7,73,0.03715091989412721],[118,-7,74,0.04025090381752161],[118,-7,75,0.04348317514627773],[118,-7,76,0.04684006997205982],[118,-7,77,0.05030743161961388],[118,-7,78,0.05386481478285752],[118,-7,79,0.06399835945749754],[118,-6,64,0.009388959705802625],[118,-6,65,0.011767898624649869],[118,-6,66,0.014181046466431072],[118,-6,67,0.016629218612325802],[118,-6,68,0.019122896410614834],[118,-6,69,0.021683679342970722],[118,-6,70,0.02433207859615054],[118,-6,71,0.02708593614086942],[118,-6,72,0.02995932248728692],[118,-6,73,0.03296164098418979],[118,-6,74,0.03609693884352485],[118,-6,75,0.03936342463904225],[118,-6,76,0.04275319160050897],[118,-6,77,0.04625214560829677],[118,-6,78,0.04984013638891586],[118,-6,79,0.05349129002616602],[118,-5,64,0.00514121404408947],[118,-5,65,0.007470023570732603],[118,-5,66,0.00985652527204921],[118,-5,67,0.01229889822742336],[118,-5,68,0.01480249497141211],[118,-5,69,0.01738380327205084],[118,-5,70,0.020059188910075226],[118,-5,71,0.022843225700782017],[118,-5,72,0.025747494971198007],[118,-5,73,0.028779596094813318],[118,-5,74,0.031942368337771004],[118,-5,75,0.03523332382446262],[118,-5,76,0.03864429099016372],[118,-5,77,0.04216126745874056],[118,-5,78,0.045764480866404694],[118,-5,79,0.049428655754004854],[118,-4,64,9.131481294172432E-4],[118,-4,65,0.0031959989667430778],[118,-4,66,0.005558628108685646],[118,-4,67,0.007996624245597802],[118,-4,68,0.010510285139598657],[118,-4,69,0.013110975725585599],[118,-4,70,0.015810856858102833],[118,-4,71,0.018621147108052523],[118,-4,72,0.021550841520448494],[118,-4,73,0.024605643637721355],[118,-4,74,0.02778711110848322],[118,-4,75,0.031092014747290682],[118,-4,76,0.03451191046218531],[118,-4,77,0.038032923028772356],[118,-4,78,0.041635740264135586],[118,-4,79,0.04529581574708979],[118,-3,64,-0.003287826410825678],[118,-3,65,-0.0010469025012643466],[118,-3,66,0.0012941551128355048],[118,-3,67,0.0037284045479342347],[118,-3,68,0.00625124861145656],[118,-3,69,0.008869028153466428],[118,-3,70,0.011589732624517974],[118,-3,71,0.014421214954352328],[118,-3,72,0.017369848398495005],[118,-3,73,0.020439396528236627],[118,-3,74,0.02363009674316424],[118,-3,75,0.026937957227411075],[118,-3,76,0.03035426681835534],[118,-3,77,0.03386531681475464],[118,-3,78,0.03745233332202322],[118,-3,79,0.04109161832166758],[118,-2,64,-0.00745577375951033],[118,-2,65,-0.0052530322591691995],[118,-2,66,-0.0029318134014911326],[118,-2,67,-5.015172096059976E-4],[118,-2,68,0.0020286055014435258],[118,-2,69,0.004660077346487369],[118,-2,70,0.007396841746661484],[118,-2,71,0.010243452113843693],[118,-2,72,0.013203686355589835],[118,-2,73,0.016279372111030352],[118,-2,74,0.019469423148869593],[118,-2,75,0.022769086901861826],[118,-2,76,0.026169402660832772],[118,-2,77,0.029656869510581697],[118,-2,78,0.03321332266152238],[118,-2,79,0.036816016420799756],[118,-1,64,-0.011586033323881553],[118,-1,65,-0.009418172653522692],[118,-1,66,-0.007115722678095065],[118,-1,67,-0.004690458251925517],[118,-1,68,-0.002155968589152232],[118,-1,69,4.847565528547054E-4],[118,-1,70,0.0032318271763532294],[118,-1,71,0.006086637058469398],[118,-1,72,0.009050455666218662],[118,-1,73,0.012123226207698345],[118,-1,74,0.015302570294860224],[118,-1,75,0.01858299924248609],[118,-1,76,0.021955331582536236],[118,-1,77,0.02540631593794881],[118,-1,78,0.028918457976815685],[118,-1,79,0.03247004976266263],[118,0,64,-0.01567480753226446],[118,0,65,-0.013539135834708583],[118,0,66,-0.01125514705925327],[118,0,67,-0.008836899039754646],[118,0,68,-0.006301941591723636],[118,0,69,-0.0036573827797250777],[118,0,70,-9.066544543986318E-4],[118,0,71,0.001948685737048944],[118,0,72,0.004907542923712968],[118,0,73,0.00796807312256554],[118,0,74,0.011126671400466626],[118,0,75,0.014377160158034674],[118,0,76,0.01771017717165689],[118,0,77,0.021112762604834443],[118,0,78,0.024568143786498624],[118,0,79,0.02805571615776524],[118,1,64,-0.019718533501947022],[118,1,65,-0.017613151101101007],[118,1,66,-0.015348188431375769],[118,1,67,-0.012939888968328551],[118,1,68,-0.010409338123488638],[118,1,69,-0.007767296953473711],[118,1,70,-0.005020380830154273],[118,1,71,-0.002172830478544916],[118,1,72,7.720911860733064E-4],[118,1,73,0.003810893415055936],[118,1,74,0.006938843717549959],[118,1,75,0.010149145800349861],[118,1,76,0.013432309050086947],[118,1,77,0.016775708840239215],[118,1,78,0.020163336545311876],[118,1,79,0.023575737761096973],[118,2,64,-0.020588299112395656],[118,2,65,-0.021637038977234763],[118,2,66,-0.01939266904770994],[118,2,67,-0.01699825558155138],[118,2,68,-0.014477967231445637],[118,2,69,-0.011845704049760358],[118,2,70,-0.009110856219445402],[118,2,71,-0.006280030127444539],[118,2,72,-0.0033584149538559488],[118,2,73,-3.5096782320975453E-4],[118,2,74,0.002736583043702475],[118,2,75,0.005896917331175795],[118,2,76,0.009120483533720355],[118,2,77,0.012395041121675245],[118,2,78,0.015705382940500483],[118,2,79,0.01903323644932274],[118,3,64,-0.003493778876642552],[118,3,65,-0.007224379112439215],[118,3,66,-0.012052333338486338],[118,3,67,-0.018149184278163793],[118,3,68,-0.018506437614119194],[118,3,69,-0.015892139818632967],[118,3,70,-0.013178424898930842],[118,3,71,-0.010373912433005467],[118,3,72,-0.007485438942059032],[118,3,73,-0.004519211268232884],[118,3,74,-0.0014817886862195657],[118,3,75,0.0016191064411169697],[118,3,76,0.0047739492700497686],[118,3,77,0.007970943778972613],[118,3,78,0.011195723835284867],[118,3,79,0.014431222744899608],[118,4,64,-2.686210730056537E-4],[118,4,65,-0.001151250828336723],[118,4,66,-0.0022516262617280573],[118,4,67,-0.0038126588597385117],[118,4,68,-0.006046975652185581],[118,4,69,-0.009122339510990788],[118,4,70,-0.0131697074132129],[118,4,71,-0.014453408023639452],[118,4,72,-0.011608565880944343],[118,4,73,-0.008693904449826241],[118,4,74,-0.0057166156589892785],[118,4,75,-0.0026846699646390568],[118,4,76,3.9254960412820564E-4],[118,4,77,0.0035037730385418728],[118,4,78,0.00663552774765693],[118,4,79,0.00977198059566195],[118,5,64,7.76737161697889E-4],[118,5,65,-6.470234052730795E-4],[118,5,66,-0.0013291506774918988],[118,5,67,-0.001583882123376916],[118,5,68,-0.0016933333325606192],[118,5,69,-0.0018925801614187454],[118,5,70,-0.002377658192732592],[118,5,71,-0.0033096298189201614],[118,5,72,-0.004818324178401077],[118,5,73,-0.007005917415693803],[118,5,74,-0.009950339211342203],[118,5,75,-0.007013463762588906],[118,5,76,-0.004023177272059523],[118,5,77,-0.001006105851457567],[118,5,78,0.0020252520939793538],[118,5,79,0.005056344560226352],[118,6,64,0.011338099226311994],[118,6,65,0.005982117322197787],[118,6,66,0.0024071885516555084],[118,6,67,2.277672603156714E-4],[118,6,68,-9.076122225511955E-4],[118,6,69,-0.0013012092853518639],[118,6,70,-0.0012141164868509607],[118,6,71,-8.701613233686366E-4],[118,6,72,-4.5949268049217036E-4],[118,6,73,-1.4202515323327112E-4],[118,6,74,-5.0727315970293526E-5],[118,6,75,-2.9474109241439043E-4],[118,6,76,-9.623205261420783E-4],[118,6,77,-0.002123579476057775],[118,6,78,-0.0026358812843351506],[118,6,79,2.828516837814661E-4],[118,7,64,0.04312017259099287],[118,7,65,0.03043917985105162],[118,7,66,0.02065895843909743],[118,7,67,0.013322679419574308],[118,7,68,0.008009562404213246],[118,7,69,0.004350162336872996],[118,7,70,0.0020182639871035575],[118,7,71,7.271279712445844E-4],[118,7,72,2.260416539520956E-4],[118,7,73,2.969959983512007E-4],[118,7,74,7.515021612982904E-4],[118,7,75,0.0014275606194279894],[118,7,76,0.0021867945232832394],[118,7,77,0.0029117578171288148],[118,7,78,0.0035034274395637976],[118,7,79,0.0038788876433623167],[118,8,64,0.10783459835417646],[118,8,65,0.08443691230125494],[118,8,66,0.06514002909363932],[118,8,67,0.049416046075246],[118,8,68,0.036774975306227385],[118,8,69,0.026780152437716805],[118,8,70,0.019040126475734994],[118,8,71,0.0132050415403207],[118,8,72,0.008963312240156188],[118,8,73,0.006038409938024595],[118,8,74,0.0041857735908765415],[118,8,75,0.00318985789235513],[118,8,76,0.0028613304167131224],[118,8,77,0.003034428365567721],[118,8,78,0.0035644843605127713],[118,8,79,0.004325629515758193],[118,9,64,0.20860136328315648],[118,9,65,0.17968276575939085],[118,9,66,0.14755973948448994],[118,9,67,0.12021929733852882],[118,9,68,0.09710245719077829],[118,9,69,0.07770530590708902],[118,9,70,0.061571014524188165],[118,9,71,0.04828635191027954],[118,9,72,0.037478477901617194],[118,9,73,0.028811832933984288],[118,9,74,0.021985137743357964],[118,9,75,0.016728515806899803],[118,9,76,0.01280075022462681],[118,9,77,0.009986685706067826],[118,9,78,0.0080947852298984],[118,9,79,0.0069548498021968965],[118,10,64,0.2013041663491322],[118,10,65,0.2006786107061231],[118,10,66,0.2003945751704459],[118,10,67,0.20042231068038657],[118,10,68,0.200698743443675],[118,10,69,0.16883499609628008],[118,10,70,0.14132320739337234],[118,10,71,0.11768646107648033],[118,10,72,0.09749021229271132],[118,10,73,0.08033927972728053],[118,10,74,0.0658749335265957],[118,10,75,0.05377209162288516],[118,10,76,0.04373663615845717],[118,10,77,0.03550286073339423],[118,10,78,0.02883105816542165],[118,10,79,0.0235052573745899],[118,11,64,0.1939750097890361],[118,11,65,0.19319405019257269],[118,11,66,0.19274441212270801],[118,11,67,0.19259653071491264],[118,11,68,0.1927143407930094],[118,11,69,0.19307245047433633],[118,11,70,0.1936508032324176],[118,11,71,0.19443336791239385],[118,11,72,0.19540711069294983],[118,11,73,0.1723369770034137],[118,11,74,0.1475743727338381],[118,11,75,0.126042666324955],[118,11,76,0.10739374614389033],[118,11,77,0.09131012482859927],[118,11,78,0.07750256090382172],[118,11,79,0.06570781532669959],[118,12,64,0.1866299053825582],[118,12,65,0.18569359722371892],[118,12,66,0.18507723455741198],[118,12,67,0.18475213121710884],[118,12,68,0.18468279813045396],[118,12,69,0.1848438414817049],[118,12,70,0.18521523802676312],[118,12,71,0.18578108323739198],[118,12,72,0.18652859872019623],[118,12,73,0.18744723186605466],[118,12,74,0.18852784856958457],[118,12,75,0.1897620196250626],[118,12,76,0.191141401172448],[118,12,77,0.18912929814326987],[118,12,78,0.16583155397565286],[118,12,79,0.1452858691635766],[118,13,64,0.17928704787522007],[118,13,65,0.17819672020527016],[118,13,66,0.17741391259404957],[118,13,67,0.1769115030774108],[118,13,68,0.176655045595003],[118,13,69,0.1766193014785566],[118,13,70,0.17678434203660326],[118,13,71,0.17713437604967025],[118,13,72,0.1776568076431142],[118,13,73,0.17834137779736065],[118,13,74,0.17917939034255548],[118,13,75,0.18016302307020868],[118,13,76,0.18128472437994975],[118,13,77,0.18253669566664116],[118,13,78,0.18391045944456336],[118,13,79,0.1853965130012812],[118,14,64,0.17197028493495162],[118,14,65,0.17072841385308354],[118,14,66,0.16978067009773565],[118,14,67,0.16910212549772397],[118,14,68,0.1686598003154459],[118,14,69,0.16842873243953374],[118,14,70,0.16838910642539034],[118,14,71,0.16852518495180005],[118,14,72,0.1688244355069236],[118,14,73,0.16927673067193122],[118,14,74,0.16987362284034535],[118,14,75,0.1706076940195483],[118,14,76,0.17147198116880263],[118,14,77,0.1724594773370332],[118,14,78,0.17356270867606513],[118,14,79,0.17477338722094501],[118,15,64,0.16471529658069656],[118,15,65,0.16332520337477663],[118,15,66,0.16221480061993876],[118,15,67,0.16136188554470787],[118,15,68,0.160735303236453],[118,15,69,0.16031045469247884],[118,15,70,0.1600676259681204],[118,15,71,0.15999104948422543],[118,15,72,0.16006811945449592],[118,15,73,0.16028866906821054],[118,15,74,0.16064431024160203],[118,15,75,0.16112783658732854],[118,15,76,0.16173269008667168],[118,15,77,0.16245249178460103],[118,15,78,0.16328063666601955],[118,15,79,0.16420995271203706],[118,16,64,0.15756616206061866],[118,16,65,0.15603124641783805],[118,16,66,0.15476015209507382],[118,16,67,0.15373382187261972],[118,16,68,0.15292323927738416],[118,16,69,0.15230427024217777],[118,16,70,0.15185732789370654],[118,16,71,0.15156658520728059],[118,16,72,0.15141929567920326],[118,16,73,0.15140516226365403],[118,16,74,0.1515157553505403],[118,16,75,0.15174398042934953],[118,16,76,0.15208359595104498],[118,16,77,0.15252878176659523],[118,16,78,0.15307375838891957],[118,16,79,0.15371245719429322],[118,17,64,0.1505462121947443],[118,17,65,0.14886974761092406],[118,17,66,0.1474395167636061],[118,17,67,0.14623991831546082],[118,17,68,0.1452443479848172],[118,17,69,0.14442926425167263],[118,17,70,0.14377528050662908],[118,17,71,0.1432665450802765],[118,17,72,0.14289017943881202],[118,17,73,0.14263574980769111],[118,17,74,0.1424947729546793],[118,17,75,0.14246025676845428],[118,17,76,0.14252627617151042],[118,17,77,0.1426875848073358],[118,17,78,0.14293926284356437],[118,17,79,0.14327640113414336],[118,18,64,0.1436556382375762],[118,18,65,0.1418407334843311],[118,18,66,0.14025265121227654],[118,18,67,0.13887944899724042],[118,18,68,0.13769716577715302],[118,18,69,0.1366830014176783],[118,18,70,0.1358178817745933],[118,18,71,0.13508601698689193],[118,18,72,0.13447446567689117],[118,18,73,0.1339727167153926],[118,18,74,0.13357228923262263],[118,18,75,0.13326635149971788],[118,18,76,0.13304935924664815],[118,18,77,0.13291671392121862],[118,18,78,0.13286444133176745],[118,18,79,0.13288889105216814],[118,19,64,0.13687509019729296],[118,19,65,0.13492464102112595],[118,19,66,0.1331798265484208],[118,19,67,0.13163246280836058],[118,19,68,0.13026141787822],[118,19,69,0.12904479805665858],[118,19,70,0.12796398451169852],[118,19,71,0.1270033759119977],[118,19,72,0.12615008369078484],[118,19,73,0.1253936283148523],[118,19,74,0.12472563718515106],[118,19,75,0.12413954478104312],[118,19,76,0.12363029564201959],[118,19,77,0.12319405075899774],[118,19,78,0.1228278979234347],[118,19,79,0.12252956655492721],[118,20,64,0.1257959677810123],[118,20,65,0.12458912818424346],[118,20,66,0.12345977228190105],[118,20,67,0.12241527978174985],[118,20,68,0.12147500626104595],[118,20,69,0.12065927462988728],[118,20,70,0.11998399645044677],[118,20,71,0.11898313551414529],[118,20,72,0.11788186413090623],[118,20,73,0.11686379183422718],[118,20,74,0.11592079450882589],[118,20,75,0.11504670984612676],[118,20,76,0.11423710549855688],[118,20,77,0.1134890337484652],[118,20,78,0.11280077334831357],[118,20,79,0.1121715591986504],[118,21,64,0.11373788053224641],[118,21,65,0.11232145126383114],[118,21,66,0.11100384250591748],[118,21,67,0.10978897069193122],[118,21,68,0.10869337870740534],[118,21,69,0.1077364103141619],[118,21,70,0.10693349592040355],[118,21,71,0.10629611891949245],[118,21,72,0.10583193229232506],[118,21,73,0.10554490695314514],[118,21,74,0.10543551132490539],[118,21,75,0.10550092156023747],[118,21,76,0.10483010401990364],[118,21,77,0.1037641423864137],[118,21,78,0.10274798375976464],[118,21,79,0.10178248489411076],[118,22,64,0.10145791138630239],[118,22,65,0.09982736599549072],[118,22,66,0.09831785783531777],[118,22,67,0.09693001512745485],[118,22,68,0.09567752607782332],[118,22,69,0.09457857534070224],[118,22,70,0.09364792622123225],[118,22,71,0.09289670731821906],[118,22,72,0.09233239756632866],[118,22,73,0.09195885973158917],[118,22,74,0.09177642190421056],[118,22,75,0.09178200641982341],[118,22,76,0.0919693055321979],[118,22,77,0.09232900305876324],[118,22,78,0.09262947591672241],[118,22,79,0.09132547168051267],[118,23,64,0.08902668635596578],[118,23,65,0.08717790573295083],[118,23,66,0.08547286761092003],[118,23,67,0.08390916420507062],[118,23,68,0.08249763609043419],[118,23,69,0.0812551349471734],[118,23,70,0.08019557047993697],[118,23,71,0.07932952721739131],[118,23,72,0.0786641235938154],[118,23,73,0.0782029355830029],[118,23,74,0.0779459844863976],[118,23,75,0.07788978832285455],[118,23,76,0.07802747611870609],[118,23,77,0.07834896425565448],[118,23,78,0.07884119390318145],[118,23,79,0.07948842844133869],[118,24,64,0.0777552974340503],[118,24,65,0.074467544572907],[118,24,66,0.072542901241472],[118,24,67,0.07080012692692285],[118,24,68,0.0692267902032141],[118,24,69,0.06783824728328022],[118,24,70,0.06664737348601761],[118,24,71,0.06566402316996157],[118,24,72,0.06489477050807559],[118,24,73,0.06434273000665243],[118,24,74,0.06400745642782202],[118,24,75,0.06388492358101537],[118,24,76,0.06396758126135892],[118,24,77,0.0642444894343828],[118,24,78,0.06470152859968793],[118,24,79,0.06532168511130355],[118,25,64,0.06694719307110839],[118,25,65,0.06356645680648496],[118,25,66,0.06020402258272302],[118,25,67,0.05767682660646376],[118,25,68,0.05593826973246543],[118,25,69,0.05440023637756616],[118,25,70,0.05307439807017921],[118,25,71,0.05196970210792991],[118,25,72,0.05109200349736249],[118,25,73,0.05044379065016734],[118,25,74,0.05002400455228347],[118,25,75,0.04982795089123551],[118,25,76,0.049847304403760756],[118,25,77,0.050070204492424206],[118,25,78,0.05048144095987568],[118,25,79,0.051062728522901064],[118,26,64,0.05631483853845715],[118,26,65,0.05284343963507307],[118,26,66,0.04941697283948123],[118,26,67,0.04602791266552126],[118,26,68,0.04270300082055883],[118,26,69,0.04101109438042867],[118,26,70,0.03954539934027599],[118,26,71,0.0383137934733829],[118,26,72,0.03732125173999289],[118,26,73,0.03656948678279716],[118,26,74,0.036056695541961115],[118,26,75,0.035777411497389104],[118,26,76,0.03572246179006684],[118,26,77,0.03587902822950036],[118,26,78,0.03623081096410661],[118,26,79,0.036758293376374235],[118,27,64,0.04593413504509884],[118,27,65,0.042375193176700576],[118,27,66,0.03888655942409856],[118,27,67,0.035459228522619006],[118,27,68,0.03209626355990504],[118,27,69,0.028811107661331173],[118,27,70,0.02612451849901209],[118,27,71,0.024759015350072217],[118,27,72,0.02364355800303304],[118,27,73,0.022778952501840633],[118,27,74,0.02216254175270708],[118,27,75,0.02178800534711037],[118,27,76,0.021645275302466183],[118,27,77,0.02172056669602589],[118,27,78,0.021996521910984345],[118,27,79,0.02245246697373718],[118,28,64,0.03587441003445534],[118,28,65,0.03223185778972927],[118,28,66,0.02868335125161555],[118,28,67,0.025218883913200527],[118,28,68,0.021839316907599975],[118,28,69,0.018556061418991524],[118,28,70,0.015380307579577868],[118,28,71,0.012321998761723633],[118,28,72,0.0101135201477985],[118,28,73,0.009125104494271313],[118,28,74,0.008392602827244893],[118,28,75,0.007908783147558373],[118,28,76,0.007662660454901803],[118,28,77,0.007639501433365205],[118,28,78,0.007820951940579406],[118,28,79,0.008185285715615252],[118,29,64,0.026196328376088165],[118,29,65,0.02247490787225467],[118,29,66,0.0188692951609923],[118,29,67,0.015368970995298468],[118,29,68,0.011972838893522353],[118,29,69,0.008690227863143005],[118,29,70,0.005530527761982481],[118,29,71,0.0025021054821595355],[118,29,72,-3.8841046729795343E-4],[118,29,73,-0.0031367114045149722],[118,29,74,-0.005209856304177089],[118,29,75,-0.005818625588158075],[118,29,76,-0.0061854708815847394],[118,29,77,-0.006326029346024599],[118,29,78,-0.00625956348249341],[118,29,79,-0.006008719260723949],[118,30,64,0.016949977857757197],[118,30,65,0.013155216607242991],[118,30,66,0.009495770440499826],[118,30,67,0.005961092698491814],[118,30,68,0.0025483956871893802],[118,30,69,-7.350942256487379E-4],[118,30,70,-0.003881846054753906],[118,30,71,-0.006885143868795487],[118,30,72,-0.009739844046076567],[118,30,73,-0.012442993256155215],[118,30,74,-0.014994307193239062],[118,30,75,-0.017396510441659116],[118,30,76,-0.019655538196269993],[118,30,77,-0.02014603470575985],[118,30,78,-0.020216276256426004],[118,30,79,-0.020102005506714284],[118,31,64,0.008173133158675386],[118,31,65,0.004311295734898168],[118,31,66,6.018130546370636E-4],[118,31,67,-0.0029654202702900662],[118,31,68,-0.006394602885056866],[118,31,69,-0.009680602155581988],[118,31,70,-0.012817775218765216],[118,31,71,-0.015801102733066657],[118,31,72,-0.01862697380809994],[118,31,73,-0.02129382832704798],[118,31,74,-0.023802656645573447],[118,31,75,-0.026157357015170274],[118,31,76,-0.028364951430939752],[118,31,77,-0.030435660940837373],[118,31,78,-0.03238284177270847],[118,31,79,-0.03406927102037587],[118,32,64,-1.1029720119802751E-4],[118,32,65,-0.004032285242351009],[118,32,66,-0.007787486160293601],[118,32,67,-0.01138512573808213],[118,32,68,-0.014830528958398823],[118,32,69,-0.018120620483538033],[118,32,70,-0.02125164557265002],[118,32,71,-0.024220297350233334],[118,32,72,-0.02702451594253139],[118,32,73,-0.029664143574031156],[118,32,74,-0.0321414355696165],[118,32,75,-0.03446142757701945],[118,32,76,-0.03663215968087457],[118,32,77,-0.038664758421175935],[118,32,78,-0.040573378052362066],[118,32,79,-0.04237500268172791],[118,33,64,-0.00789163612788342],[118,33,65,-0.011866295693461544],[118,33,66,-0.015662404733698523],[118,33,67,-0.019287915275528825],[118,33,68,-0.02274900055289305],[118,33,69,-0.026044581996997745],[118,33,70,-0.02917276491229079],[118,33,71,-0.03213194073074833],[118,33,72,-0.034921588196319395],[118,33,73,-0.03754293083658314],[118,33,74,-0.03999945063294238],[118,33,75,-0.042297258169929255],[118,33,76,-0.04444531990097218],[118,33,77,-0.046455543509509395],[118,33,78,-0.04834272266777284],[118,33,79,-0.050124342797984105],[118,34,64,-0.01517861032066369],[118,34,65,-0.019198051283839876],[118,34,66,-0.023029828306351627],[118,34,67,-0.02668028355362283],[118,34,68,-0.03015617927798592],[118,34,69,-0.033458354280399574],[118,34,70,-0.03658672007266339],[118,34,71,-0.03954132251052159],[118,34,72,-0.042323134883384024],[118,34,73,-0.04493470915812896],[118,34,74,-0.04738068525723043],[118,34,75,-0.0496681586167607],[118,34,76,-0.05180690662273032],[118,34,77,-0.05380947486200465],[118,34,78,-0.05569112444383573],[118,34,79,-0.05746964194700235],[118,35,64,-0.02199632432906911],[118,35,65,-0.0260524268381709],[118,35,66,-0.029914301643837373],[118,35,67,-0.0335864167744667],[118,35,68,-0.03707589696869898],[118,35,69,-0.040385407301813774],[118,35,70,-0.04351658942682706],[118,35,71,-0.04647107088922629],[118,35,72,-0.04925124281098094],[118,35,73,-0.0518608988295813],[118,35,74,-0.05430573514277977],[118,35,75,-0.056593711867815415],[118,35,76,-0.05873527626977513],[118,35,77,-0.06074344874473198],[118,35,78,-0.06149690774230091],[118,35,79,-0.05681768260909495],[118,36,64,-0.028388030608890946],[118,36,65,-0.032472668995872214],[118,36,66,-0.036358885376424815],[118,36,67,-0.04004909479466541],[118,36,68,-0.04355060609073237],[118,36,69,-0.046867817140198324],[118,36,70,-0.050004006269222995],[118,36,71,-0.052962282543222244],[118,36,72,-0.05574634450170238],[118,36,73,-0.05836110408574987],[118,36,74,-0.060813175578056065],[118,36,75,-0.06161058499043245],[118,36,76,-0.05668116629177003],[118,36,77,-0.05177375317509033],[118,36,78,-0.04690684614944365],[118,36,79,-0.042100713749350545],[118,37,64,-0.03441568962761236],[118,37,65,-0.03852100274313581],[118,37,66,-0.042425812642960525],[118,37,67,-0.046130401270721794],[118,37,68,-0.049642148456424],[118,37,69,-0.05296710067446079],[118,37,70,-0.05611006825412406],[118,37,71,-0.05907551610520566],[118,37,72,-0.06186830479517381],[118,37,73,-0.057378546684008686],[118,37,74,-0.052303529859625636],[118,37,75,-0.04722588177895356],[118,37,76,-0.042160781842625665],[118,37,77,-0.03712516956213832],[118,37,78,-0.03213771599884273],[118,37,79,-0.027218668286679765],[118,38,64,-0.04015807693046177],[118,38,65,-0.04427672124282996],[118,38,66,-0.04819457645967923],[118,38,67,-0.051909817327060265],[118,38,68,-0.05542986372052091],[118,38,69,-0.05876235172124603],[118,38,70,-0.05867534195755682],[118,38,71,-0.05352932031290423],[118,38,72,-0.04834875103842151],[118,38,73,-0.04314564438664037],[118,38,74,-0.037932860608577715],[118,38,75,-0.03272446939330544],[118,38,76,-0.02753598317361661],[118,38,77,-0.022384464984853414],[118,38,78,-0.01728851185273626],[118,38,79,-0.012268114955301238],[118,39,64,-0.04566223244964656],[118,39,65,-0.04978625317409787],[118,39,66,-0.05371080314769408],[118,39,67,-0.057431974354715525],[118,39,68,-0.05523796976729383],[118,39,69,-0.05004109650804725],[118,39,70,-0.04478969976486294],[118,39,71,-0.0394969829358002],[118,39,72,-0.03417564243645724],[118,39,73,-0.028838482362174345],[118,39,74,-0.023498906119496427],[118,39,75,-0.018171285021465023],[118,39,76,-0.01287120415193591],[118,39,77,-0.007615586101107419],[118,39,78,-0.0024226934570559765],[118,39,79,0.0026879887981823385],[118,40,64,-0.050938297924566354],[118,40,65,-0.05505805472698597],[118,40,66,-0.052056804915304206],[118,40,67,-0.04685747857486964],[118,40,68,-0.04157429727690567],[118,40,69,-0.036225630991061936],[118,40,70,-0.030827519749841242],[118,40,71,-0.02539443613263362],[118,40,72,-0.019940030832212907],[118,40,73,-0.014477758760578817],[118,40,74,-0.009021385287449005],[118,40,75,-0.003585372520630167],[118,40,76,0.0018148541577849286],[118,40,77,0.007162758793804042],[118,40,78,0.01244066601902227],[118,40,79,0.01762984962001162],[118,41,64,-0.04907879019057655],[118,41,65,-0.04391531369268894],[118,41,66,-0.038655047408343336],[118,41,67,-0.0332980127597629],[118,41,68,-0.02785991593333706],[118,41,69,-0.022361166125822438],[118,41,70,-0.016819485803338974],[118,41,71,-0.011250639027517075],[118,41,72,-0.00566919369574001],[118,41,73,-8.916731558551152E-5],[118,41,74,0.005475444187036237],[118,41,75,0.011010254816052008],[118,41,76,0.016500193899867507],[118,41,77,0.021929328135281527],[118,41,78,0.02728079960918261],[118,41,79,0.03253687886968582],[118,42,64,-0.03599890810200682],[118,42,65,-0.030666853627736808],[118,42,66,-0.02524370301852326],[118,42,67,-0.019727176249991252],[118,42,68,-0.01413333278617662],[118,42,69,-0.008484820968461728],[118,42,70,-0.0028011791277594887],[118,42,71,0.0029004681654249153],[118,42,72,0.008604624306045883],[118,42,73,0.014296748458804508],[118,42,74,0.01996269756894394],[118,42,75,0.025588282881127477],[118,42,76,0.031158940972355702],[118,42,77,0.03665951902107358],[118,42,78,0.04207417376316694],[118,42,79,0.04738638333074797],[118,43,64,-0.022957142515415523],[118,43,65,-0.01745271106469562],[118,43,66,-0.011863670710626013],[118,43,67,-0.006185293677297567],[118,43,68,-4.3406043461482807E-4],[118,43,69,0.0053649245150197995],[118,43,70,0.011190147284898613],[118,43,71,0.017023020211298555],[118,43,72,0.02284706748855926],[118,43,73,0.02864722154670138],[118,43,74,0.034409230895969256],[118,43,75,0.040119179861545964],[118,43,76,0.04576312033999401],[118,43,77,0.05132681542839303],[118,43,78,0.056795594508134],[118,43,79,0.06215431911215907],[118,44,64,-0.009990269033730893],[118,44,65,-0.004310050505300236],[118,44,66,0.0014477605372428303],[118,44,67,0.007290455925655807],[118,44,68,0.01320105422127745],[118,44,69,0.019151776868351712],[118,44,70,0.025118962459773762],[118,44,71,0.031082435576743665],[118,44,72,0.037024660877633606],[118,44,73,0.04293000495947474],[118,44,74,0.048784106840820435],[118,44,75,0.054573357618317615],[118,44,76,0.0602844895616484],[118,44,77,0.06590427463420306],[118,44,78,0.07141933216028243],[118,44,79,0.07681604510803944],[118,45,64,0.0028736067973226843],[118,45,65,0.008732140902164051],[118,45,66,0.014660970331859225],[118,45,67,0.020670015480799685],[118,45,68,0.02674169936633316],[118,45,69,0.032845362609097956],[118,45,70,0.03895502318792989],[118,45,71,0.04504878121185012],[118,45,72,0.05110794059334301],[118,45,73,0.05711623527766295],[118,45,74,0.06305916100525262],[118,45,75,0.06892341329321383],[118,45,76,0.07469643203865313],[118,45,77,0.0803660528731851],[118,45,78,0.08592026513420023],[118,45,79,0.0913470760688641],[118,46,64,0.015619427528270731],[118,46,65,0.02165739540247015],[118,46,66,0.02775828478004345],[118,46,67,0.03393463798489936],[118,46,68,0.04016816945429679],[118,46,69,0.046425151263797634],[118,46,70,0.05267711505694676],[118,46,71,0.058900296495096316],[118,46,72,0.06507472571032277],[118,46,73,0.07118341870137794],[118,46,74,0.07721167077875683],[118,46,75,0.08314645288013367],[118,46,76,0.08897591129984264],[118,46,77,0.09468897110724198],[118,46,78,0.09982606552477916],[118,46,79,0.10401093222708539],[118,47,64,0.028232983591160575],[118,47,65,0.0344499134513133],[118,47,66,0.04072250479051728],[118,47,67,0.04706583659335698],[118,47,68,0.05346078550870983],[118,47,69,0.05987039587168135],[118,47,70,0.06626356377315486],[118,47,71,0.07261452567063373],[118,47,72,0.0789019207578528],[118,47,73,0.08510795013610896],[118,47,74,0.09121763401969077],[118,47,75,0.09721816793072292],[118,47,76,0.10224405134823317],[118,47,77,0.1069602166137607],[118,47,78,0.1115614486682329],[118,47,79,0.11605318648930278],[118,48,64,0.04064988964739405],[118,48,65,0.04704481549472847],[118,48,66,0.05348860522319597],[118,48,67,0.05999873837671883],[118,48,68,0.06655513547788879],[118,48,69,0.07311750691539026],[118,48,70,0.07965199807511184],[118,48,71,0.08613072695351076],[118,48,72,0.09212483644819956],[118,48,73,0.09758358277869911],[118,48,74,0.10291803245274604],[118,48,75,0.10813529070980077],[118,48,76,0.11324082040335294],[118,48,77,0.11823893680343604],[118,48,78,0.12313320543143699],[118,48,79,0.1279267428464481],[118,49,64,0.05092148265205377],[118,49,65,0.05804843011405722],[118,49,66,0.06495846978978084],[118,49,67,0.07162275028879478],[118,49,68,0.07805359507185422],[118,49,69,0.08428621504244516],[118,49,70,0.09034919937117195],[118,49,71,0.09626493707538575],[118,49,72,0.10205060678213482],[118,49,73,0.10771907868633357],[118,49,74,0.11327972724576617],[118,49,75,0.11873915340982501],[118,49,76,0.12410181543136385],[118,49,77,0.12937056755863813],[118,49,78,0.13454710614349202],[118,49,79,0.13963232293286987],[118,50,64,0.05967818449251055],[118,50,65,0.06691408456705449],[118,50,66,0.07394070085791377],[118,50,67,0.08072700268854428],[118,50,68,0.08728621554725201],[118,50,69,0.0936566296929633],[118,50,70,0.09986936022933554],[118,50,71,0.10594871367652438],[118,50,72,0.11191319011604468],[118,50,73,0.11777640291420727],[118,50,74,0.12354791447235006],[118,50,75,0.12923398669535519],[118,50,76,0.1348382451112362],[118,50,77,0.14036225581188164],[118,50,78,0.1458060146149953],[118,50,79,0.15116834807005886],[118,51,64,0.06848830448243454],[118,51,65,0.07582481799008663],[118,51,66,0.08295828890223206],[118,51,67,0.08985577872750072],[118,51,68,0.09653148200098458],[118,51,69,0.10302669502129709],[118,51,70,0.10937504507900851],[118,51,71,0.11560279812840038],[118,51,72,0.12172986496226945],[118,51,73,0.12777073061905236],[118,51,74,0.13373530539447237],[118,51,75,0.13962969606003922],[118,51,76,0.14545689611964513],[118,51,77,0.15121739416130536],[118,51,78,0.15690969958052964],[118,51,79,0.16253078516519837],[118,52,64,0.07736478167861514],[118,52,65,0.08479386613969492],[118,52,66,0.09202460342412852],[118,52,67,0.09902245341049244],[118,52,68,0.10580262656773474],[118,52,69,0.11240929348045921],[118,52,70,0.11887853301948484],[118,52,71,0.1252385780305569],[118,52,72,0.13151081676204165],[118,52,73,0.1377107233516064],[118,52,74,0.14384871568744692],[118,52,75,0.14993093917567626],[118,52,76,0.1559599751610212],[118,52,77,0.16193547296122326],[118,52,78,0.1678547046833542],[118,52,79,0.17371304219306993],[118,53,64,0.08631099531319324],[118,53,65,0.09382501186565297],[118,53,66,0.1011437291283702],[118,53,67,0.1082313379738134],[118,53,68,0.1151040911559218],[118,53,69,0.12180884823297013],[118,53,70,0.12838403423476571],[118,53,71,0.13485982124147824],[118,53,72,0.14125911619687445],[118,53,73,0.14759848367855596],[118,53,74,0.15388900190474133],[118,53,75,0.16013705045839385],[118,53,76,0.16634502841088195],[118,53,77,0.17251200172719275],[118,53,78,0.17863427902998064],[118,53,79,0.18470591499096525],[118,54,64,0.09532110482679988],[118,54,65,0.10291289909492284],[118,54,66,0.11031075215047832],[118,54,67,0.11747793504755158],[118,54,68,0.12443174844377897],[118,54,69,0.1312215084198053],[118,54,70,0.13788783945357475],[118,54,71,0.14446279081394944],[118,54,72,0.15097080211865355],[118,54,73,0.15742960971561726],[118,54,74,0.16385109215233973],[118,54,75,0.1702420531839077],[118,54,76,0.17660494095700688],[118,54,77,0.18293850219305707],[118,54,78,0.18923837037559443],[118,54,79,0.19549758712586904],[118,55,64,0.10438050789777786],[118,55,65,0.11204346554232826],[118,55,66,0.11951216490593265],[118,55,67,0.12674931202075707],[118,55,68,0.13377324040771496],[118,55,69,0.1406354507726507],[118,55,70,0.14737858383397082],[118,55,71,0.15403647155463557],[118,55,72,0.16063507232431032],[118,55,73,0.16719335269799324],[118,55,74,0.17372411396164766],[118,55,75,0.18023476196597732],[118,55,76,0.1867280188412116],[118,55,77,0.19320257537715343],[118,55,78,0.19965368302099024],[118,55,79,0.20607368461123854],[118,56,64,0.11346641946087434],[118,56,65,0.12119449722614557],[118,56,66,0.12872639270265246],[118,56,67,0.1360245958056129],[118,56,68,0.1431084376260692],[118,56,69,0.15003130084321506],[118,56,70,0.15683762855336553],[118,56,71,0.16356291146635143],[118,56,72,0.17023458537747532],[118,56,73,0.17687288069788398],[118,56,74,0.183491622339683],[118,56,75,0.19009897840739534],[118,56,76,0.19669815630414192],[118,56,77,0.203288045017772],[118,56,78,0.20986380250646633],[118,56,79,0.21641738725588275],[118,57,64,0.12254857461105115],[118,57,65,0.13033630777347213],[118,57,66,0.137924445170041],[118,57,67,0.14527559211445193],[118,57,68,0.1524100225255085],[118,57,69,0.15938267705450412],[118,57,70,0.16623956332334608],[118,57,71,0.17301768127780554],[118,57,72,0.17974587663362093],[118,57,73,0.18644565156049486],[118,57,74,0.1931319309443612],[118,57,75,0.1998137827086376],[118,57,76,0.20649509081723993],[118,57,77,0.21317517972463912],[118,57,78,0.21984938917860397],[118,57,79,0.2265095984204382],[118,58,64,0.13159005816838645],[118,58,65,0.13943254538442673],[118,58,66,0.1470706954468707],[118,58,67,0.15446753225798102],[118,58,68,0.16164419963804344],[118,58,69,0.1686568606865656],[118,58,70,0.1755528329637866],[118,58,71,0.1823704551886227],[118,58,72,0.18913989155648156],[118,58,73,0.19588389806962841],[118,58,74,0.20261854928059742],[118,58,75,0.2093539239751654],[118,58,76,0.2160947484493106],[118,58,77,0.2228409961631431],[118,58,78,0.22958844268155484],[118,58,79,0.23632917493728492],[118,59,64,0.14054826353768843],[118,59,65,0.14844113018519123],[118,59,66,0.15612378993562306],[118,59,67,0.1635599503435985],[118,59,68,0.1707715358130788],[118,59,69,0.17781559479234904],[118,59,70,0.18474049106132095],[118,59,71,0.19158571585617631],[118,59,72,0.19838263932092],[118,59,73,0.20515522827037574],[118,59,74,0.21192072873858578],[118,59,75,0.2186903118991825],[118,59,76,0.2254696820588315],[118,59,77,0.23225964554016043],[118,59,78,0.23905663938430977],[118,59,79,0.24585321891642567],[118,60,64,0.14937598292531448],[118,60,65,0.15731532412811616],[118,60,66,0.16503769085973535],[118,60,67,0.17250769318303683],[118,60,68,0.17974793276160786],[118,60,69,0.1868160144752965],[118,60,70,0.19376108317746388],[118,60,71,0.20062358609614458],[118,60,72,0.20743596914881904],[118,60,73,0.21422334333450982],[118,60,74,0.22100411976089107],[118,60,75,0.22779061196438594],[118,60,76,0.23458960428341588],[118,60,77,0.24140288514794866],[118,60,78,0.24822774424998587],[118,60,79,0.2550574326607378],[118,61,64,0.15802261967579298],[118,61,65,0.16600492420714838],[118,61,66,0.1737628423825871],[118,61,67,0.1812620536553068],[118,61,68,0.18852572266270418],[118,61,69,0.19561169923180752],[118,61,70,0.20256965026397494],[118,61,71,0.20944077788412754],[118,61,72,0.21625845986539605],[118,61,73,0.22304886332264706],[118,61,74,0.22983153032316883],[118,61,75,0.23661993415206933],[118,61,76,0.24342200506099798],[118,61,77,0.2502406244205873],[118,61,78,0.2570740862873038],[118,61,79,0.26391652548534356],[118,62,64,0.16643554797100293],[118,62,65,0.17445760452168926],[118,62,66,0.1822474860948273],[118,62,67,0.1897720535990898],[118,62,68,0.19705491316837181],[118,62,69,0.20415387394275447],[118,62,70,0.21111887909664828],[118,62,71,0.21799168566916555],[118,62,72,0.22480644985399287],[118,62,73,0.2315902881520297],[118,62,74,0.23836381312899607],[118,62,75,0.24514164259992152],[118,62,76,0.25193288114373463],[118,62,77,0.25874157293306366],[118,62,78,0.26556712494465623],[118,62,79,0.27240469969571873],[118,63,64,0.1745616267886483],[118,63,65,0.18262041423540482],[118,63,66,0.19043913305299903],[118,63,67,0.19798588355098765],[118,63,68,0.20528458925384505],[118,63,69,0.212392766081295],[118,63,70,0.2193604073973118],[118,63,71,0.2262296317477692],[118,63,72,0.23303521520800954],[118,63,73,0.23980510158593926],[118,63,74,0.2465608893165816],[118,63,75,0.25331829395571653],[118,63,76,0.2600875852532783],[118,63,77,0.2668739978606044],[118,63,78,0.2736781147972797],[118,63,79,0.28049622287441744],[118,64,64,0.18234883917452246],[118,64,65,0.1904414023363161],[118,64,66,0.1982861631193923],[118,64,67,0.20585246992464176],[118,64,68,0.21316444235521842],[118,64,69,0.2202790894201997],[118,64,70,0.22724625375637675],[118,64,71,0.2341082336218894],[118,64,72,0.2409002657915845],[118,64,73,0.24765098771769775],[118,64,74,0.25438287788199027],[118,64,75,0.26111267333072447],[118,64,76,0.2678517634502017],[118,64,77,0.2746065591070091],[118,64,78,0.2813788363415787],[118,64,79,0.2881660538673102],[118,65,64,0.1897480715318929],[118,65,65,0.1978713841113813],[118,65,66,0.20573956671571747],[118,65,67,0.21332318494092767],[118,65,68,0.22064644230047187],[118,65,69,0.22776566993184466],[118,65,70,0.23473038822084494],[118,65,71,0.24158290935638255],[118,65,72,0.24835877534916237],[118,65,73,0.25508717618389193],[118,65,74,0.26179134711481683],[118,65,75,0.26848894417477087],[118,65,76,0.27519239702906684],[118,65,77,0.2819092383665054],[118,65,78,0.28864240907846417],[118,65,79,0.29539053853465996],[118,66,64,0.1964844768190204],[118,66,65,0.20486585141735097],[118,66,66,0.2127548311728584],[118,66,67,0.22035370159259143],[118,66,68,0.22768665441895256],[118,66,69,0.2348092163616936],[118,66,70,0.24177044611230505],[118,66,71,0.2486125235666352],[118,66,72,0.25537114833839825],[118,66,73,0.26207591879870246],[118,66,74,0.2687506907261528],[118,66,75,0.27541391470903104],[118,66,76,0.2820789514984476],[118,66,77,0.28875436456824727],[118,66,78,0.2954441891917905],[118,66,79,0.30214817739868544],[118,67,64,0.20193537583809648],[118,67,65,0.2106561804977256],[118,67,66,0.21929397262793923],[118,67,67,0.22690599468913294],[118,67,68,0.23424720297143212],[118,67,69,0.24137223670949362],[118,67,70,0.2483295863913007],[118,67,71,0.2551611754197416],[118,67,72,0.26190272491701855],[118,67,73,0.26858409906347464],[118,67,74,0.2752296301195828],[118,67,75,0.28185842233462066],[118,67,76,0.2884846340004655],[118,67,77,0.29511773696304666],[118,67,78,0.30176275295523997],[118,67,79,0.3084204661645395],[118,68,64,0.20721009031251594],[118,68,65,0.2159575044820148],[118,68,66,0.2248411833508284],[118,68,67,0.2329504887080972],[118,68,68,0.24029838172430434],[118,68,69,0.24742510153661346],[118,68,70,0.25437849557360415],[118,68,71,0.26120012972920587],[118,68,72,0.26792562522097507],[118,68,73,0.2745849757252911],[118,68,74,0.2812028439912534],[118,68,75,0.2877988371886349],[118,68,76,0.2943877602987007],[118,68,77,0.30097984690902474],[118,68,78,0.307580966822656],[118,68,79,0.3141928099391738],[118,69,64,0.21231321928602168],[118,69,65,0.22107765568190602],[118,69,66,0.22998346748801327],[118,69,67,0.23846835743691783],[118,69,68,0.24582091708118536],[118,69,69,0.2529482599088474],[118,69,70,0.2598975433486616],[118,69,71,0.2667098975598496],[118,69,72,0.2734207395259102],[118,69,73,0.280060067047432],[118,69,74,0.28665273187820894],[118,69,75,0.293218691301964],[118,69,76,0.2997732374996008],[118,69,77,0.30632720410815406],[118,69,78,0.31288714942049],[118,69,79,0.3194555157204021],[118,70,64,0.21722847658770236],[118,70,65,0.2260003963050972],[118,70,66,0.23491779545427555],[118,70,67,0.24346475071959006],[118,70,68,0.25082004044695033],[118,70,69,0.2579470667584711],[118,70,70,0.26489222843758653],[118,70,71,0.27169612476059335],[118,70,72,0.278393851325158],[118,70,73,0.2850152753317503],[118,70,74,0.2915852895956543],[118,70,75,0.2981240446200728],[118,70,76,0.3046471581131162],[118,70,77,0.3111659013821553],[118,70,78,0.31768736208613485],[118,70,79,0.3242145828710307],[118,71,64,0.22190956977114884],[118,71,65,0.2306770766772072],[118,71,66,0.23959314778517599],[118,71,67,0.2479833613850749],[118,71,68,0.255341858651739],[118,71,69,0.26246982753845494],[118,71,70,0.269412696346235],[118,71,71,0.2762103170382773],[118,71,72,0.28289724795542603],[118,71,73,0.28950301518562316],[118,71,74,0.2960523518884026],[118,71,75,0.30256541492938843],[118,71,76,0.3090579782328675],[118,71,77,0.31554160231182365],[118,71,78,0.3220237794823514],[118,71,79,0.32850805431413316],[118,72,64,0.22631481287480695],[118,72,65,0.2350636999325915],[118,72,66,0.24396320138111632],[118,72,67,0.2520644073739305],[118,72,68,0.259428951318744],[118,72,69,0.266561280646742],[118,72,70,0.27350551947874474],[118,72,71,0.28030045133873777],[118,72,72,0.2869797949483523],[118,72,73,0.29357245723577285],[118,72,74,0.3001027628716056],[118,72,75,0.3065906597010968],[118,72,76,0.31305189949794693],[118,72,77,0.31949819351878134],[118,72,78,0.32593734238713434],[118,72,79,0.33237333988252327],[118,73,64,0.23041144767299185],[118,73,65,0.23912579271457368],[118,73,66,0.24799177140396814],[118,73,67,0.2557386368950419],[118,73,68,0.2631138099222038],[118,73,69,0.2702555116830284],[118,73,70,0.27720615319390746],[118,73,71,0.2840030626786243],[118,73,72,0.2906787616786611],[118,73,73,0.29726121608083667],[118,73,74,0.30377406137182245],[118,73,75,0.31023680149140836],[118,73,76,0.3166649807174322],[118,73,77,0.32307032807403074],[118,73,78,0.32946087380926825],[118,73,79,0.33584103753917155],[118,74,64,0.23417298182431973],[118,74,65,0.24283571344876642],[118,74,66,0.2513593774984468],[118,74,67,0.2590300858417066],[118,74,68,0.2664216019027914],[118,74,69,0.2735787063305963],[118,74,70,0.28054165339187626],[118,74,71,0.2873458978334886],[118,74,72,0.2940223794997621],[118,74,73,0.30059777956054723],[118,74,74,0.30709474763934574],[118,74,75,0.3135320992015797],[118,74,76,0.3199249826321666],[118,74,77,0.32628501549803035],[118,74,78,0.3326203895529191],[118,74,79,0.3389359440997342],[118,75,64,0.2375765954882349],[118,75,65,0.24617002767118878],[118,75,66,0.25426759643371055],[118,75,67,0.2619587707803855],[118,75,68,0.26937287259686116],[118,75,69,0.27655184400296773],[118,75,70,0.28353333878682646],[118,75,71,0.29035051877939994],[118,75,72,0.29703235594767174],[118,75,73,0.3036039016891773],[118,75,74,0.31008652257729785],[118,75,75,0.31649810188889865],[118,75,76,0.3228532063261653],[118,75,77,0.3291632174217281],[118,75,78,0.3354364271882014],[118,75,79,0.34167809764084045],[118,76,64,0.24052239156579303],[118,76,65,0.24881429819737452],[118,76,66,0.25682604148014354],[118,76,67,0.26454331300943634],[118,76,68,0.27198618049400686],[118,76,69,0.27919332782521583],[118,76,70,0.2861993935417296],[118,76,71,0.2930348517310304],[118,76,72,0.29972634109006485],[118,76,73,0.306296955634745],[118,76,74,0.31276649624562197],[118,76,75,0.31915168233397295],[118,76,76,0.3254663230072212],[118,76,77,0.33172144720375313],[118,76,78,0.3379253923526303],[118,76,79,0.34408385119394896],[118,77,64,0.24270029900872164],[118,77,65,0.2510163858396722],[118,77,66,0.25905496582542203],[118,77,67,0.26680348904391243],[118,77,68,0.2742806611847434],[118,77,69,0.2815215463562344],[118,77,70,0.2885574057677517],[118,77,71,0.2954156774366163],[118,77,72,0.30212034190737747],[118,77,73,0.30869224293018427],[118,77,74,0.3151493621996698],[118,77,75,0.32150704737069474],[118,77,76,0.3277781926795551],[118,77,77,0.33397337160748575],[118,77,78,0.34010092112514534],[118,77,79,0.3461669771526972],[118,78,64,0.2445658401464233],[118,78,65,0.25290953071581596],[118,78,66,0.2609787653098011],[118,78,67,0.26876270276631253],[118,78,68,0.27627851523245006],[118,78,69,0.28355736231934014],[118,78,70,0.29062683724115523],[118,78,71,0.29751105823065727],[118,78,72,0.3042310804245966],[118,78,73,0.3108052549271277],[118,78,74,0.3172495340420661],[118,78,75,0.3235777218008438],[118,78,76,0.3298016690459318],[118,78,77,0.33593141245778874],[118,78,78,0.34197525703464043],[118,78,79,0.347939801648794],[118,79,64,0.2461326946346188],[118,79,65,0.25450660764443744],[118,79,66,0.26260948619658625],[118,79,67,0.2704321206926459],[118,79,68,0.2779900224012989],[118,79,69,0.2853102499561953],[118,79,70,0.2924165122992619],[118,79,71,0.2993293840333694],[118,79,72,0.30606677364582996],[118,79,73,0.31264433008967096],[118,79,74,0.31907578657560914],[118,79,75,0.32537324058775985],[118,79,76,0.3315473692926634],[118,79,77,0.33760757966250254],[118,79,78,0.34356209277687005],[118,79,79,0.34941796190312946],[118,80,64,0.24734996551809707],[118,80,65,0.25575602388396923],[118,80,66,0.26389559605094737],[118,80,67,0.27176107500598384],[118,80,68,0.2793662648536343],[118,80,69,0.2867340174222413],[118,80,70,0.29388398492578593],[118,80,71,0.30083297501836487],[118,80,72,0.30759549041208945],[118,80,73,0.3141841969755061],[118,80,74,0.32061031898861875],[118,80,75,0.32688396041814116],[118,80,76,0.3330143512601238],[118,80,77,0.33901001817476945],[118,80,78,0.34487887880731694],[118,80,79,0.35062825934914654],[118,81,64,0.24816659802092997],[118,81,65,0.2566057460618417],[118,81,66,0.26478480635000196],[118,81,67,0.2726977940917414],[118,81,68,0.2803568425610083],[118,81,69,0.2877805852376588],[118,81,70,0.2949844942592294],[118,81,71,0.30198139406096663],[118,81,72,0.3087820919439516],[118,81,73,0.31539592619925716],[118,81,74,0.32183123023762367],[118,81,75,0.32809571139269694],[118,81,76,0.3341967432800236],[118,81,77,0.3401415708017284],[118,81,78,0.34593742708518876],[118,81,79,0.35159156183260887],[118,82,64,0.24854947917152306],[118,82,65,0.25702134614622346],[118,82,66,0.26524184520442173],[118,82,67,0.27320666256265685],[118,82,68,0.2809263700079781],[118,82,69,0.2884154664006288],[118,82,70,0.2956851820238336],[118,82,71,0.3027441711747826],[118,82,72,0.3095992560960157],[118,82,73,0.3162560765513789],[118,82,74,0.3227196432124245],[118,82,75,0.32899479327430786],[118,82,76,0.3350865469687324],[118,82,77,0.3410003638830804],[118,82,78,0.34674229822643376],[118,82,79,0.35231905240400696],[118,83,64,0.24848103604908284],[118,83,65,0.25698368101352714],[118,83,66,0.2652462495556114],[118,83,67,0.2732661609979279],[118,83,68,0.2810525976903343],[118,83,69,0.2886161000142947],[118,83,70,0.29596366404682195],[118,83,71,0.3030996335309261],[118,83,72,0.31002658096023755],[118,83,73,0.316746081512517],[118,83,74,0.32325937765334994],[118,83,75,0.329567932522566],[118,83,76,0.3356738705023333],[118,83,77,0.34158030364499714],[118,83,78,0.34729154290724673],[118,83,79,0.3528131933940908],[118,84,64,0.2479569498042891],[118,84,65,0.25648668448701145],[118,84,66,0.26479026544625145],[118,84,67,0.27286690797590835],[118,84,68,0.2805249037378025],[118,84,69,0.2880825763705106],[118,84,70,0.2956689990356111],[118,84,71,0.30303380751480813],[118,84,72,0.3100497532361677],[118,84,73,0.31685169402144925],[118,84,74,0.32343667579357654],[118,84,75,0.32980228768729614],[118,84,76,0.3359472071769525],[118,84,77,0.34187161614255224],[118,84,78,0.3475774865779279],[118,84,79,0.35306873494137153],[118,85,64,0.24698399000107768],[118,85,65,0.2555352762835161],[118,85,66,0.26387686063070215],[118,85,67,0.27200980842434275],[118,85,68,0.2795565594163565],[118,85,69,0.286847130966439],[118,85,70,0.2941561803103809],[118,85,71,0.30147451549159854],[118,85,72,0.3087945275655195],[118,85,73,0.3161091838131852],[118,85,74,0.32323998149615835],[118,85,75,0.3296855033746263],[118,85,76,0.3358937589266528],[118,85,77,0.34186142994877694],[118,85,78,0.3475875561696254],[118,85,79,0.353073766227663],[118,86,64,0.24557797450070254],[118,86,65,0.25414339301028444],[118,86,66,0.26251785451779014],[118,86,67,0.2707043130495852],[118,86,68,0.27829733928278405],[118,86,69,0.2853071274430829],[118,86,70,0.2923218137999766],[118,86,71,0.29933662276538914],[118,86,72,0.3063487238702688],[118,86,73,0.3133560355893234],[118,86,74,0.3203561793719348],[118,86,75,0.3273455870307281],[118,86,76,0.33431876422177],[118,86,77,0.34126771234102143],[118,86,78,0.34730514798133927],[118,86,79,0.3528108081496825],[118,87,64,0.24376185968554562],[118,87,65,0.25233214594154996],[118,87,66,0.26073217004279425],[118,87,67,0.26896679323303024],[118,87,68,0.2767478046634581],[118,87,69,0.2834667638676706],[118,87,70,0.2901739637876917],[118,87,71,0.29686892814286575],[118,87,72,0.30355363060992074],[118,87,73,0.3102310916006156],[118,87,74,0.3169041405141362],[118,87,75,0.32357434714014244],[118,87,76,0.33024112542319944],[118,87,77,0.33690101234209285],[118,87,78,0.3435471242105671],[118,87,79,0.35016879227387077],[118,88,64,0.2415639654246591],[118,88,65,0.2501281099195872],[118,88,66,0.25854421169579217],[118,88,67,0.26681903543418317],[118,88,68,0.2749048798655032],[118,88,69,0.2813268950820326],[118,88,70,0.2877177633058734],[118,88,71,0.29408112115037105],[118,88,72,0.30042369279370074],[118,88,73,0.30675366540683136],[118,88,74,0.31307924536318127],[118,88,75,0.3194073994709155],[118,88,76,0.32574278495518966],[118,88,77,0.33208687141157994],[118,88,78,0.33843725745612474],[118,88,79,0.344787184316597],[118,89,64,0.23901633881501852],[118,89,65,0.24756174736666364],[118,89,66,0.2559823735894997],[118,89,67,0.26428685881516994],[118,89,68,0.272481791512321],[118,89,69,0.27888612950982616],[118,89,70,0.2849563265182035],[118,89,71,0.2909811999626044],[118,89,72,0.2969720923465007],[118,89,73,0.302942333356181],[118,89,74,0.3089055793972268],[118,89,75,0.3148743538826011],[118,89,76,0.320858792548037],[118,89,77,0.32686559751535643],[118,89,78,0.3328972032793469],[118,89,79,0.33895115726394665],[118,90,64,0.23615326038961112],[118,90,65,0.24466597106040114],[118,90,66,0.253077681128936],[118,90,67,0.26139885949864256],[118,90,68,0.269636745348974],[118,90,69,0.2761418165959094],[118,90,70,0.2818915619747221],[118,90,71,0.28757608986459104],[118,90,72,0.2932111541332486],[118,90,73,0.2988151140765321],[118,90,74,0.30440705062324264],[118,90,75,0.3100050986600564],[118,90,76,0.31562500032339325],[118,90,77,0.32127888350167344],[118,90,78,0.3269742691976964],[118,90,79,0.33271331082227085],[118,91,64,0.23300989616414003],[118,91,65,0.2414748490138733],[118,91,66,0.24986256954616518],[118,91,67,0.2581852845885743],[118,91,68,0.2664511686620159],[118,91,69,0.27309092218252556],[118,91,70,0.2785248843353154],[118,91,71,0.283872170894456],[118,91,72,0.2891526716526922],[118,91,73,0.29438957754472345],[118,91,74,0.2996072710202991],[118,91,75,0.3048294473390673],[118,91,76,0.3100774722184594],[118,91,77,0.31536898061536683],[118,91,78,0.32071672078123803],[118,91,79,0.32612764710401115],[118,92,64,0.22962109859745786],[118,92,65,0.23802245451258008],[118,92,66,0.24636980228532296],[118,92,67,0.2546770388207574],[118,92,68,0.2629535298685181],[118,92,69,0.26973078934780076],[118,92,70,0.27485782235256734],[118,92,71,0.27987571276172285],[118,92,72,0.28480815083044553],[118,92,73,0.28968288252233565],[118,92,74,0.29452937574367216],[118,92,75,0.29937673154598315],[118,92,76,0.3042518463158034],[118,92,77,0.3091778302750043],[118,92,78,0.3141726869284771],[118,92,79,0.31924825742403323],[118,93,64,0.22602035926489503],[118,93,65,0.2343418640912469],[118,93,66,0.24263153196415468],[118,93,67,0.250904826464997],[118,93,68,0.25917252526664813],[118,93,69,0.2660597824376654],[118,93,70,0.27089252108659473],[118,93,71,0.27559321529174674],[118,93,72,0.2801889704699087],[118,93,73,0.28471174124734294],[118,93,74,0.28919577932499074],[118,93,75,0.2936753394391888],[118,93,76,0.2981826500176875],[118,93,77,0.30274615439303043],[118,93,78,0.3073890277059434],[118,93,79,0.3121279739163016],[118,94,64,0.22223891578710317],[118,94,65,0.23046430598295636],[118,94,66,0.23867850639715296],[118,94,67,0.2468984308728573],[118,94,68,0.255136449500751],[118,94,69,0.26207781221359505],[118,94,70,0.26663213649359413],[118,94,71,0.27103165279193425],[118,94,72,0.2753064580394568],[118,94,73,0.2794923103649881],[118,94,74,0.28362786817176094],[118,94,75,0.28775219938322977],[118,94,76,0.29190256802288017],[118,94,77,0.2961125045159361],[118,94,78,0.3004101653318707],[118,94,79,0.30481698683155667],[118,95,64,0.21830501531937416],[118,95,65,0.22641846134094187],[118,95,66,0.2345394219417089],[118,95,67,0.24268613385310028],[118,95,68,0.250872696499154],[118,95,69,0.2577867402172815],[118,95,70,0.26208112068797684],[118,95,71,0.26619862087122614],[118,95,72,0.27017187958657185],[118,95,73,0.27404000716941046],[118,95,74,0.2778456287337314],[118,95,75,0.28163220852705495],[118,95,76,0.2854416630822796],[118,95,77,0.2893122700591874],[118,95,78,0.2932768788634799],[118,95,79,0.2973614283397812],[118,96,64,0.21424333668596543],[118,96,65,0.2222299203178147],[118,96,66,0.23024042622081514],[118,96,67,0.23829427686000212],[118,96,68,0.2464073927625564],[118,96,69,0.25319066061948436],[118,96,70,0.2572453963250475],[118,96,71,0.26110238437060757],[118,96,72,0.2647963426739833],[118,96,73,0.2683692503094588],[118,96,74,0.27186721076296294],[118,96,75,0.27533760599530915],[118,96,76,0.27882654952624725],[118,96,77,0.2823766459088813],[118,96,78,0.2860250631272581],[118,96,79,0.2898019236261239],[118,97,64,0.2100745730395065],[118,97,65,0.2179207948868048],[118,97,66,0.2258047720825669],[118,97,67,0.23374696579637114],[118,97,68,0.24176516471042164],[118,97,69,0.2482960579743676],[118,97,70,0.2521324186875581],[118,97,71,0.2557518251794941],[118,97,72,0.2591906113295313],[118,97,73,0.2624931241877681],[118,97,74,0.2657084251490795],[118,97,75,0.2688872904356509],[118,97,76,0.2720795195710287],[118,97,77,0.2753315596584392],[118,97,78,0.27868445241169043],[118,97,79,0.2821721100349582],[118,98,64,0.20581517673747537],[118,98,65,0.21350949010526862],[118,98,66,0.22125262447860558],[118,98,67,0.22906592106405468],[118,98,68,0.23696904163560997],[118,98,69,0.24311183944485315],[118,98,70,0.2467511241874032],[118,98,71,0.25015628882288987],[118,98,72,0.25336483209256005],[118,98,73,0.25642296635373296],[118,98,74,0.2593821758631088],[118,98,75,0.2622960816978175],[118,98,76,0.2652176224260756],[118,98,77,0.26819655874612247],[118,98,78,0.27127730942414113],[118,98,79,0.2744971249858406],[118,99,64,0.20147726795323384],[118,99,65,0.20901063534937614],[118,99,66,0.21660102177777465],[118,99,67,0.22427047433696018],[118,99,68,0.2320404956704905],[118,99,69,0.23764924019707356],[118,99,70,0.24111176411117957],[118,99,71,0.24432532880505714],[118,99,72,0.24732817032279558],[118,99,73,0.25016787725587014],[118,99,74,0.25289782558978396],[118,99,75,0.2555739264485668],[118,99,76,0.258251696235263],[118,99,77,0.260983657754337],[118,99,78,0.26381707999439424],[118,99,79,0.2667920633535458],[118,100,64,0.1970687083793706],[118,100,65,0.20443517689184929],[118,100,66,0.21186399287906618],[118,100,67,0.21937771338677395],[118,100,68,0.2269996200327406],[118,100,69,0.23192160078587565],[118,100,70,0.2352256225483327],[118,100,71,0.23826834779008266],[118,100,72,0.2410883560159164],[118,100,73,0.24373415178030394],[118,100,74,0.24626049467225],[118,100,75,0.2487250475538407],[118,100,76,0.2511853528960662],[118,100,77,0.2536961461277618],[118,100,78,0.2563070139899399],[118,100,79,0.2590604049752697],[118,101,64,0.19259216136613594],[118,101,65,0.19978912959120954],[118,101,66,0.20705100076132302],[118,101,67,0.21440061657972243],[118,101,68,0.22186295519612614],[118,101,69,0.22594684183831198],[118,101,70,0.22910777877919836],[118,101,71,0.23199762563115117],[118,101,72,0.23465494677249854],[118,101,73,0.23712873791287353],[118,101,74,0.23947466819979085],[118,101,75,0.2417516452038893],[118,101,76,0.2440187129345573],[118,101,77,0.24633229209735955],[118,101,78,0.2487437708681131],[118,101,79,0.25129745353257754],[118,102,64,0.1880337043338289],[118,102,65,0.1950585031994585],[118,102,66,0.20214813443154844],[118,102,67,0.20932548382036903],[118,102,68,0.2164425541163361],[118,102,69,0.21977767790419092],[118,102,70,0.22281118177773224],[118,102,71,0.22556621409518696],[118,102,72,0.22808092790202003],[118,102,73,0.2304043412824568],[118,102,74,0.23259251266025516],[118,102,75,0.2347050424049721],[118,102,76,0.2368019111536015],[118,102,77,0.23894066430878977],[118,102,78,0.24117395122951768],[118,102,79,0.24354742669516213],[118,103,64,0.1833739248224884],[118,103,65,0.1902217457309736],[118,103,66,0.1971318813496076],[118,103,67,0.2041270286475778],[118,103,68,0.2102545946497254],[118,103,69,0.2134839585206903],[118,103,70,0.21640781324762431],[118,103,71,0.21904804779785586],[118,103,72,0.22144194362027825],[118,103,73,0.22363799529018194],[118,103,74,0.2256920473531551],[118,103,75,0.2276637589119016],[118,103,76,0.2296134065518098],[118,103,77,0.23159903525035508],[118,103,78,0.23367396596767487],[118,103,79,0.23588466767788574],[118,104,64,0.17860038557459182],[118,104,65,0.1852648595993304],[118,104,66,0.19198690970461565],[118,104,67,0.19878883114555884],[118,104,68,0.20398652129934533],[118,104,69,0.20712684053593744],[118,104,70,0.20996019390538892],[118,104,71,0.21250685509199604],[118,104,72,0.2148027434514159],[118,104,73,0.21689524146966693],[118,104,74,0.2188393271734766],[118,104,75,0.2206940331250851],[118,104,76,0.22251924269274773],[118,104,77,0.22437283334322763],[118,104,78,0.2263081757602662],[118,104,79,0.2283719966602801],[118,105,64,0.17370898166531806],[118,105,65,0.18018273222448233],[118,105,66,0.18670736614452152],[118,105,67,0.19330459351675583],[118,105,68,0.1976888386266032],[118,105,69,0.20075762802506866],[118,105,70,0.2035202715606721],[118,105,71,0.20599508800442587],[118,105,72,0.20821614476431574],[118,105,73,0.2102291131089448],[118,105,74,0.21208743419019377],[118,105,75,0.21384880747379498],[118,105,76,0.2155720122598799],[118,105,77,0.21731407204532133],[118,105,78,0.21912777055173346],[118,105,79,0.2210595273241537],[118,106,64,0.16870549815053695],[118,106,65,0.17498061130390313],[118,106,66,0.18129825943245692],[118,106,67,0.1876794200035972],[118,106,68,0.1914017363223137],[118,106,69,0.1944167207950342],[118,106,70,0.1971284903663557],[118,106,71,0.19955310884063482],[118,106,72,0.20172232920526387],[118,106,73,0.203679530239859],[118,106,74,0.2054759566298997],[118,106,75,0.2071672740457701],[118,106,76,0.20881044974576746],[118,106,77,0.21046096835559025],[118,106,78,0.21217039157269355],[118,106,79,0.2139842696483575],[118,107,64,0.16360757961218061],[118,107,65,0.16967598902155537],[118,107,66,0.17577724766751177],[118,107,67,0.18188263890753206],[118,107,68,0.18515353247116517],[118,107,69,0.1881321919659581],[118,107,70,0.19081250777918288],[118,107,71,0.19320804730873922],[118,107,72,0.1953478366337912],[118,107,73,0.19727242313191912],[118,107,74,0.19903023108614515],[118,107,75,0.20067422146563368],[118,107,76,0.20225886619545114],[118,107,77,0.20383744635850198],[118,107,78,0.2054596829020522],[118,107,79,0.207169707558535],[118,108,64,0.15844711383344048],[118,108,65,0.16430089754694546],[118,108,66,0.17017683153235466],[118,108,67,0.1757159505344474],[118,108,68,0.17895872861060952],[118,108,69,0.18191799192549804],[118,108,70,0.1845855565053985],[118,108,71,0.18697232545886697],[118,108,72,0.1891042539301572],[118,108,73,0.19101858178764017],[118,108,74,0.19276034564039238],[118,108,75,0.1943791809596483],[118,108,76,0.19592642425657356],[118,108,77,0.1974525244386019],[118,108,78,0.19900477163859878],[118,108,79,0.2006253509904469],[118,109,64,0.15327298279193138],[118,109,65,0.15890456858947669],[118,109,66,0.16454690591050639],[118,109,67,0.16958621131043858],[118,109,68,0.17281562325899275],[118,109,69,0.175771724784717],[118,109,70,0.17844439705890633],[118,109,71,0.18084179561864494],[118,109,72,0.18298654347036913],[118,109,73,0.18491217591913908],[118,109,74,0.18665984813211706],[118,109,75,0.1882753156796996],[118,109,76,0.18980619752419223],[118,109,77,0.19129953014835632],[118,109,78,0.19279962073949336],[118,109,79,0.19434620657470858],[118,110,64,0.14814375417409023],[118,110,65,0.15354591559608408],[118,110,66,0.15894701569236083],[118,110,67,0.16346237855597015],[118,110,68,0.16669260628667937],[118,110,69,0.16966101381340976],[118,110,70,0.17235577438759722],[118,110,71,0.17478230489878596],[118,110,72,0.17695972837057958],[118,110,73,0.17891756971469064],[118,110,74,0.18069269504166247],[118,110,75,0.18232650412051526],[118,110,76,0.18386238486514053],[118,110,77,0.18534343800689312],[118,110,78,0.1868104793950837],[118,110,79,0.18830032665526686],[118,111,64,0.14311369117882686],[118,111,65,0.14827957410111067],[118,111,66,0.15343223434259434],[118,111,67,0.1572714916772942],[118,111,68,0.1605163534071654],[118,111,69,0.16351222405807841],[118,111,70,0.16624587354078954],[118,111,71,0.16872006871717465],[118,111,72,0.17095034274982934],[118,111,73,0.17296197721044404],[118,111,74,0.17478720642132045],[118,111,75,0.17646265286287632],[118,111,76,0.17802700183090123],[118,111,77,0.17951892287447285],[118,111,78,0.18097524489301908],[118,111,79,0.18242939112386708],[118,112,64,0.13822471337773154],[118,112,65,0.14314898776363288],[118,112,66,0.14747127396373438],[118,112,67,0.15094755004349222],[118,112,68,0.15422133991063255],[118,112,69,0.15726105048347347],[118,112,70,0.16005238622319481],[118,112,71,0.16259556993498903],[118,112,72,0.164902455571836],[118,112,73,0.16699383164194828],[118,112,74,0.16889692376049245],[118,112,75,0.17064310431459534],[118,112,76,0.17226581663221716],[118,112,77,0.1737987204636135],[118,112,78,0.17527406500260045],[118,112,79,0.176721295098037],[118,113,64,0.1334953376818359],[118,113,65,0.13729052635103883],[118,113,66,0.14094579279327277],[118,113,67,0.14444870727098597],[118,113,68,0.14776536813866548],[118,113,69,0.15086556143758767],[118,113,70,0.15373428306028777],[118,113,71,0.15636932886838106],[118,113,72,0.15877878580498514],[118,113,73,0.16097869017490196],[118,113,74,0.16299086059696005],[118,113,75,0.16484091263538916],[118,113,76,0.1665564616136906],[118,113,77,0.1681655196081408],[118,113,78,0.1696950921121914],[118,113,79,0.1711699793614105],[118,114,64,0.12674547691799248],[118,114,65,0.1305381775740956],[118,114,66,0.13421433847062422],[118,114,67,0.13775406434677595],[118,114,68,0.14112614572701554],[118,114,69,0.1443023748614154],[118,114,70,0.1472674089921946],[118,114,71,0.15001675336212916],[118,114,72,0.1525546619392035],[118,114,73,0.15489218098541113],[118,114,74,0.1570453418471372],[118,114,75,0.1590335089241267],[118,114,76,0.16087788834889913],[118,114,77,0.1626002024811459],[118,114,78,0.1642215348950371],[118,114,79,0.1657613501147465],[118,115,64,0.11977014322761839],[118,115,65,0.12357325491057736],[118,115,66,0.12727625921686644],[118,115,67,0.1308606929899443],[118,115,68,0.13429852099030173],[118,115,69,0.13756415040849168],[118,115,70,0.14064227490071518],[118,115,71,0.14352626900492654],[118,115,72,0.14621652472271637],[118,115,73,0.14871890613634087],[118,115,74,0.1510433272361],[118,115,75,0.15320245779176492],[118,115,76,0.15521056175692116],[118,115,77,0.15708247234901102],[118,115,78,0.15883270760296717],[118,115,79,0.16047472985533104],[118,116,64,0.11259809509433845],[118,116,65,0.11641322395483703],[118,116,66,0.12014642506481654],[118,116,67,0.1237807623241719],[118,116,68,0.12729181011727717],[118,116,69,0.1306571602004817],[118,116,70,0.13386191355296753],[118,116,71,0.13689749869476897],[118,116,72,0.13976046409842735],[118,116,73,0.14245136374428718],[118,116,74,0.14497373973572877],[118,116,75,0.14733320562862745],[118,116,76,0.14953663386555896],[118,116,77,0.15159145044139458],[118,116,78,0.1535050396649049],[118,116,79,0.15528426162297068],[118,117,64,0.10526203550997737],[118,117,65,0.10908828518293658],[118,117,66,0.11285231151806033],[118,117,67,0.1165387713305727],[118,117,68,0.12012721850912607],[118,117,69,0.1235989403634851],[118,117,70,0.12693980176897968],[118,117,71,0.1301394931779128],[118,117,72,0.1331907916374688],[118,117,73,0.1360888903724499],[118,117,74,0.13883079955446798],[118,117,75,0.14141482069598654],[118,117,76,0.14384009692436786],[118,117,77,0.14610624120904725],[118,117,78,0.1482130444356173],[118,117,79,0.15016026504557187],[118,118,64,0.09780442037582547],[118,118,65,0.10163847036039242],[118,118,66,0.10543120070371287],[118,118,67,0.10916888935660445],[118,118,68,0.11283535841516876],[118,118,69,0.11641602533030992],[118,118,70,0.1198978505827171],[118,118,71,0.12326901407103111],[118,118,72,0.12651864967951648],[118,118,73,0.12963662452395291],[118,118,74,0.13261336418940964],[118,118,75,0.13543972516714609],[118,118,76,0.13810691559334115],[118,118,77,0.140606465290474],[118,118,78,0.1429302460140201],[118,118,79,0.1450705427137304],[118,119,64,0.09027461246813243],[118,119,65,0.09411086553821031],[118,119,66,0.09792750217428327],[118,119,67,0.10171240677333458],[118,119,68,0.10545386485122693],[118,119,69,0.10914176674231138],[118,119,70,0.11276446503461518],[118,119,71,0.11630887076738945],[118,119,72,0.11976065830516036],[118,119,73,0.12310449205168728],[118,119,74,0.12632427501952342],[118,119,75,0.12940341923809745],[118,119,76,0.13232513795431317],[118,119,77,0.13507275955498993],[118,119,78,0.1376300631206569],[118,119,79,0.1399816355057963],[118,120,64,0.08272616823763962],[118,120,65,0.08655696215611826],[118,120,66,0.09039019485860658],[118,120,67,0.09421529722482552],[118,120,68,0.09802511114748266],[118,120,69,0.1018142381591032],[118,120,70,0.10557267462428885],[118,120,71,0.10928631203674084],[118,120,72,0.11293760069468983],[118,120,73,0.11650621375143025],[118,120,74,0.11996971039201519],[118,120,75,0.12330419692374489],[118,120,76,0.1264849846105598],[118,120,77,0.12948724312981255],[118,120,78,0.13096877251159111],[118,120,79,0.13203048908921863],[118,121,64,0.07521424372464866],[118,121,65,0.07903012244526837],[118,121,66,0.08287037623816756],[118,121,67,0.08672587739743381],[118,121,68,0.09059400986918813],[118,121,69,0.09447421109819563],[118,121,70,0.09835831968759015],[118,121,71,0.10223145729008709],[118,121,72,0.10607313151886383],[118,121,73,0.10985831942931848],[118,121,74,0.1135585291140776],[118,121,75,0.11793959380338408],[118,121,76,0.12385803940484352],[118,121,77,0.12760871640311044],[118,121,78,0.13131455998509303],[118,121,79,0.13499943573192819],[118,122,64,0.06779314805279016],[118,122,65,0.07158318782894463],[118,122,66,0.0754189476531634],[118,122,67,0.07929259338404185],[118,122,68,0.0832059283175017],[118,122,69,0.08716323170458448],[118,122,70,0.09320252753279926],[118,122,71,0.10018089915988035],[118,122,72,0.10717264057201152],[118,122,73,0.11414919633090823],[118,122,74,0.12107755994522167],[118,122,75,0.12792165086322632],[118,122,76,0.13164859484020525],[118,122,77,0.13504060314721972],[118,122,78,0.1383948663897514],[118,122,79,0.1417427300610578],[118,123,64,0.06051405939515921],[118,123,65,0.06715203117395477],[118,123,66,0.07394368840433212],[118,123,67,0.08080912756093264],[118,123,68,0.08775303011567714],[118,123,69,0.09478354238453766],[118,123,70,0.10189610500780846],[118,123,71,0.10907498312030098],[118,123,72,0.11629513809952216],[118,123,73,0.12352404815036452],[118,123,74,0.13072347310163918],[118,123,75,0.13635447531257205],[118,123,76,0.1394757693630047],[118,123,77,0.14252459448436255],[118,123,78,0.1455408569072783],[118,123,79,0.14856296271075395],[118,124,64,0.0688035327916777],[118,124,65,0.0755379392892599],[118,124,66,0.08237198202925745],[118,124,67,0.08929795110710971],[118,124,68,0.09632431604746829],[118,124,69,0.10346364611005518],[118,124,70,0.11071337100875062],[118,124,71,0.11805759125768019],[118,124,72,0.12546928819359288],[118,124,73,0.13291246922874123],[118,124,74,0.14034424278621316],[118,124,75,0.14452186970298392],[118,124,76,0.1473261576679945],[118,124,77,0.15005473655389492],[118,124,78,0.15275413124208181],[118,124,79,0.1554692445035792],[118,125,64,0.07747472825017965],[118,125,65,0.08421092571006614],[118,125,66,0.0910621741441349],[118,125,67,0.09802133119666788],[118,125,68,0.10510024669220375],[118,125,69,0.11231558353273637],[118,125,70,0.11966671115140524],[118,125,71,0.1271377541633599],[118,125,72,0.13470009621480342],[118,125,73,0.14231480774421718],[118,125,74,0.14993499130876056],[118,125,75,0.15266704896916736],[118,125,76,0.15518463751426062],[118,125,77,0.15762235972510735],[118,125,78,0.16003262330112233],[118,125,79,0.16246613850839242],[118,126,64,0.08646661213012093],[118,126,65,0.09318167932347393],[118,126,66,0.10002498443716737],[118,126,67,0.10698969075868096],[118,126,68,0.11409055058289859],[118,126,69,0.1213479016713039],[118,126,70,0.12876294599391797],[118,126,71,0.13631999292167118],[118,126,72,0.14398920939412474],[118,126,73,0.1517292849620103],[118,126,74,0.15836039992205478],[118,126,75,0.1607683274143876],[118,126,76,0.16303439077195014],[118,126,77,0.16521580110629183],[118,126,78,0.1673700183337845],[118,126,79,0.16955277072433161],[118,127,64,0.09577805794872779],[118,127,65,0.102449960875448],[118,127,66,0.10926082698954036],[118,127,67,0.1162038506734493],[118,127,68,0.12329616001491064],[118,127,69,0.1305612820524822],[118,127,70,0.13800209660268473],[118,127,71,0.1456032298695486],[118,127,72,0.15333400213547618],[118,127,73,0.16115128348517008],[118,127,74,0.16659994541149456],[118,127,75,0.16880394970718396],[118,127,76,0.1708569456938073],[118,127,77,0.17282016223967242],[118,127,78,0.17475521751788667],[118,127,79,0.1767219985423495],[118,128,64,0.1053949673240702],[118,128,65,0.1120031357602103],[118,128,66,0.11875837869092466],[118,128,67,0.1256536414299806],[118,128,68,0.13270787854893004],[118,128,69,0.13994728386218924],[118,128,70,0.1473762281312649],[118,128,71,0.1549797602933327],[118,128,72,0.16272670461414113],[118,128,73,0.17057266105733226],[118,128,74,0.174713280482998],[118,128,75,0.17675240969356448],[118,128,76,0.17863224051802634],[118,128,77,0.18041710227749633],[118,128,78,0.18217185048266687],[118,128,79,0.18395963767337972],[118,129,64,0.11528891763071303],[118,129,65,0.12181484499647172],[118,129,66,0.12849327895163581],[118,129,67,0.135316636364027],[118,129,68,0.14230515772235952],[118,129,69,0.14948718181522974],[118,129,70,0.15686837204110304],[118,129,71,0.16443428561590517],[118,129,72,0.17215357512888002],[118,129,73,0.1799810902611167],[118,129,74,0.18268033327046426],[118,129,75,0.18459277491057074],[118,129,76,0.18633870849797185],[118,129,77,0.1879846669057968],[118,129,78,0.18959783621331028],[118,129,79,0.19124374816917117],[118,130,64,0.12541595289613655],[118,130,65,0.13184381500620312],[118,130,66,0.13842696134870147],[118,130,67,0.14515700711946763],[118,130,68,0.1520549836000629],[118,130,69,0.15915089934500662],[118,130,70,0.1664515275182255],[118,130,71,0.17394300856299783],[118,130,72,0.1815941166134906],[118,130,73,0.18842614106967545],[118,130,74,0.19048414651157516],[118,130,75,0.19230501674381026],[118,130,76,0.19395338444498977],[118,130,77,0.19549715325582856],[118,130,78,0.19700499273804506],[118,130,79,0.19854398010187446],[118,131,64,0.1357155184303178],[118,131,65,0.142032806722223],[118,131,66,0.14850561775414997],[118,131,67,0.1551245018886842],[118,131,68,0.16191087371170193],[118,131,69,0.1688960376362731],[118,131,70,0.1760877425688501],[118,131,71,0.1834727907355568],[118,131,72,0.19102033766278922],[118,131,73,0.19611003152561435],[118,131,74,0.19811139799089753],[118,131,75,0.19987034617855606],[118,131,76,0.2014520328612749],[118,131,77,0.20292501101728713],[118,131,78,0.20435869595638728],[118,131,79,0.20582097940991342],[118,132,64,0.14610947998920504],[118,132,65,0.15230763677183917],[118,132,66,0.15865921971161379],[118,132,67,0.16515346318986257],[118,132,68,0.1718118928883647],[118,132,69,0.17866690036758967],[118,132,70,0.18572716559646396],[118,132,71,0.19298025401070612],[118,132,72,0.20039592999350384],[118,132,73,0.20358834465738074],[118,132,74,0.2055530558930865],[118,132,75,0.20727170967449154],[118,132,76,0.2088094592695596],[118,132,77,0.21023494704452758],[118,132,78,0.21161775891687593],[118,132,79,0.21302602733765097],[118,133,64,0.15649410479837045],[118,133,65,0.16256774279888084],[118,133,66,0.1687906708067956],[118,133,67,0.17515055507372462],[118,133,68,0.18166890725772514],[118,133,69,0.18837919724837077],[118,133,70,0.19529111758175471],[118,133,71,0.20239315769662847],[118,133,72,0.20864188066407213],[118,133,73,0.21088858446603725],[118,133,74,0.2128281475475629],[118,133,75,0.21451907805251388],[118,133,76,0.2160261395300777],[118,133,77,0.2174176615832856],[118,133,78,0.21876299294309376],[118,133,79,0.22013010350231563],[118,134,64,0.16674898966376223],[118,134,65,0.17269329360636973],[118,134,66,0.17878105895345636],[118,134,67,0.18499812284898298],[118,134,68,0.19136594057157486],[118,134,69,0.19791918679348103],[118,134,70,0.2046687568421818],[118,134,71,0.2116043056916488],[118,134,72,0.2158506906990022],[118,134,73,0.21807945791999803],[118,134,74,0.2199995733942025],[118,134,75,0.22166873986449084],[118,134,76,0.22315099054661577],[118,134,77,0.22451400657117518],[118,134,78,0.22582657688171126],[118,134,79,0.22715620712975176],[118,135,64,0.17677031622560077],[118,135,65,0.18258082314074367],[118,135,66,0.18852760397305987],[118,135,67,0.19459443188995937],[118,135,68,0.20080272320659381],[118,135,69,0.20718856210885633],[118,135,70,0.21376430036860167],[118,135,71,0.22043612592654435],[118,135,72,0.22300552888097241],[118,135,73,0.2252173556291015],[118,135,74,0.2271189661073035],[118,135,75,0.22876694125702982],[118,135,76,0.2302242800893412],[118,135,77,0.23155773162503818],[118,135,78,0.23283526865905407],[118,135,79,0.23412370987443937],[118,136,64,0.18647399620646793],[118,136,65,0.19214667626760268],[118,136,66,0.1979473939618926],[118,136,67,0.20385768113792402],[118,136,68,0.20989897885993794],[118,136,69,0.21610901992564216],[118,136,70,0.22250189037841875],[118,136,71,0.22759778742137096],[118,136,72,0.23014826475181266],[118,136,73,0.23234058143433428],[118,136,74,0.23422060198364972],[118,136,75,0.23584349938255886],[118,136,76,0.2372709751078003],[118,136,77,0.23856861256712014],[118,136,78,0.23980337084939235],[118,136,79,0.24104122527362068],[118,137,64,0.19579561282674451],[118,137,65,0.20132687501375454],[118,137,66,0.20697716877283925],[118,137,67,0.212725687277711],[118,137,68,0.2185939937010901],[118,137,69,0.22462170662787778],[118,137,70,0.23082491614542244],[118,137,71,0.23477650821948293],[118,137,72,0.23730309953982912],[118,137,73,0.2394704065594141],[118,137,74,0.24132252852122804],[118,137,75,0.2429129811628848],[118,137,76,0.24430194715183406],[118,137,77,0.24555365746584504],[118,137,78,0.2467339105459738],[118,137,79,0.24790773564275512],[118,138,64,0.20469077396339322],[118,138,65,0.2100773939211644],[118,138,66,0.21557350640065798],[118,138,67,0.2211559622566709],[118,138,68,0.22684656563999062],[118,138,69,0.23268702686940812],[118,138,70,0.2386956761763423],[118,138,71,0.24198148462627],[118,138,72,0.2444772438956513],[118,138,73,0.24661187672542542],[118,138,74,0.24842748614521937],[118,138,75,0.2499757213126642],[118,138,76,0.25131506550246124],[118,138,77,0.25250825148681266],[118,138,78,0.25361981103081294],[118,138,79,0.2547137648317314],[118,139,64,0.21313587926512978],[118,139,65,0.2183748467512488],[118,139,66,0.22371341452227664],[118,139,67,0.2291261864001653],[118,139,68,0.23463533595605537],[118,139,69,0.2402848169976095],[118,139,70,0.24609538290257332],[118,139,71,0.2492045228594697],[118,139,72,0.2516613098202735],[118,139,73,0.2537543703767152],[118,139,74,0.2555236224002697],[118,139,75,0.2570186781473586],[118,139,76,0.25829617677762096],[118,139,77,0.25941723959306484],[118,139,78,0.26044505458842604],[118,139,79,0.2614425965224375],[118,140,64,0.22112930343284237],[118,140,65,0.2262175867618779],[118,140,66,0.23139532941569954],[118,140,67,0.23663507933795497],[118,140,68,0.24195950548110498],[118,140,69,0.2474148854390187],[118,140,70,0.25302451198356235],[118,140,71,0.2564199389140448],[118,140,72,0.2588294148810081],[118,140,73,0.26087190625270495],[118,140,74,0.2625849970132189],[118,140,75,0.2640161257806074],[118,140,76,0.2652199698495352],[118,140,77,0.2662559461933162],[118,140,78,0.2671858358525042],[118,140,79,0.2680715377727828],[118,141,64,0.2286929978961809],[118,141,65,0.23362722278930878],[118,141,66,0.23864052447858702],[118,141,67,0.24370367094062376],[118,141,68,0.2488399375013093],[118,141,69,0.2540979221619],[118,141,70,0.2595034982672977],[118,141,71,0.2635841365031472],[118,141,72,0.26593899687939737],[118,141,73,0.267923198612942],[118,141,74,0.26957187630440393],[118,141,75,0.270930181387787],[118,141,76,0.2720507249766537],[118,141,77,0.2729911308938027],[118,141,78,0.2738117051186162],[118,141,79,0.27457322754006136],[118,142,64,0.23587451316419467],[118,142,65,0.24065055340170344],[118,142,66,0.24549493058908967],[118,142,67,0.25037697447326185],[118,142,68,0.25532064953765976],[118,142,69,0.26037677931181624],[118,142,70,0.2655737804218866],[118,142,71,0.2706348611639496],[118,142,72,0.27293033718575804],[118,142,73,0.2748514584799952],[118,142,74,0.27643081548673193],[118,142,75,0.27771116627426534],[118,142,76,0.27874294611212846],[118,142,77,0.2795818795621058],[118,142,78,0.28028670109893056],[118,142,79,0.28091698994615305],[118,143,64,0.2427346244047087],[118,143,65,0.24734752365554302],[118,143,66,0.25201746420807586],[118,143,67,0.2567127307771967],[118,143,68,0.26145802709682364],[118,143,69,0.26630621910363805],[118,143,70,0.2712881567696288],[118,143,71,0.2764143394995113],[118,143,72,0.27973478129435114],[118,143,73,0.2815917508456855],[118,143,74,0.28310106434717613],[118,143,75,0.2843029742473344],[118,143,76,0.28524561092942874],[118,143,77,0.28598266196544025],[118,143,78,0.2865711512131254],[118,143,79,0.2870693232110664],[118,144,64,0.24929399317687911],[118,144,65,0.253739285822295],[118,144,66,0.25822974016953],[118,144,67,0.2627330632188587],[118,144,68,0.26727474294700004],[118,144,69,0.2719094451306882],[118,144,70,0.2766702918755481],[118,144,71,0.2815703912943789],[118,144,72,0.28630821686777064],[118,144,73,0.2881004131446213],[118,144,74,0.28953959865773243],[118,144,75,0.29066341994205086],[118,144,76,0.2915175792372601],[118,144,77,0.2921535894737473],[118,144,78,0.29262661958387787],[118,144,79,0.2929934353332017],[118,145,64,0.25555931780824404],[118,145,65,0.25983340335096805],[118,145,66,0.26414023467215925],[118,145,67,0.26844747709774774],[118,145,68,0.27278144706263563],[118,145,69,0.2771983184073251],[118,145,70,0.2817332785227094],[118,145,71,0.2864019190451484],[118,145,72,0.291202731674723],[118,145,73,0.29434267073560966],[118,145,74,0.2957111876721762],[118,145,75,0.29675695372222693],[118,145,76,0.2975231387116355],[118,145,77,0.2980589580194594],[118,145,78,0.29841759180778515],[118,145,79,0.2986541891049631],[118,146,64,0.2615355692424855],[118,146,65,0.26563569403454573],[118,146,66,0.26975568146544016],[118,146,67,0.2738637419815527],[118,146,68,0.2779870601674643],[118,146,69,0.28218298290958843],[118,146,70,0.28648851352531524],[118,146,71,0.2909215615266332],[118,146,72,0.295483294614404],[118,146,73,0.30016044812355785],[118,146,74,0.30158335057784785],[118,146,75,0.30255074875812266],[118,146,76,0.3032292806333712],[118,146,77,0.30366576051921074],[118,146,78,0.3039112607249083],[118,146,79,0.3040191854261415],[118,147,64,0.26722602729632977],[118,147,65,0.2711502500950643],[118,147,66,0.2750810735437693],[118,147,67,0.2789878713824535],[118,147,68,0.2828987286961317],[118,147,69,0.28687179567113935],[118,147,70,0.2909456052989581],[118,147,71,0.29514018177800017],[118,147,72,0.29945923768928867],[118,147,73,0.3038923384076825],[118,147,74,0.3071264995678157],[118,147,75,0.3080148237314748],[118,147,76,0.3086057896721813],[118,147,77,0.30894373059654895],[118,147,78,0.3090775107227785],[118,147,79,0.3090586749871225],[118,148,64,0.2726323404096911],[118,148,65,0.2763794838886829],[118,148,66,0.2801196921633147],[118,148,67,0.2838241316610123],[118,148,68,0.28752181099619223],[118,148,69,0.29127128965416904],[118,148,70,0.29511231476842287],[118,148,71,0.29906678936366177],[118,148,72,0.303140805091741],[118,148,73,0.3073266525139451],[118,148,74,0.3116048043365623],[118,148,75,0.3131221517746599],[118,148,76,0.3136253303052304],[118,148,77,0.31386539528718405],[118,148,78,0.31388892517802625],[118,148,79,0.31374550886112046],[118,149,64,0.2777546089398363],[118,149,65,0.2813241992888055],[118,149,66,0.2848731632461441],[118,149,67,0.28837508023024644],[118,149,68,0.29185989485236535],[118,149,69,0.2953861694855175],[118,149,70,0.2989945297085903],[118,149,71,0.3027084952645192],[118,149,72,0.30653634048677486],[118,149,73,0.31047294300150247],[118,149,74,0.31450161664717635],[118,149,75,0.31784875563102766],[118,149,76,0.318263529905779],[118,149,77,0.3184061368239979],[118,149,78,0.3183208172079024],[118,149,79,0.318055128266337],[118,150,64,0.28259149205676837],[118,150,65,0.28598368881087016],[118,150,66,0.28934154124062594],[118,150,67,0.2926416331355991],[118,150,68,0.2959148464165664],[118,150,69,0.29921934014824825],[118,150,70,0.3025962726123376],[118,150,71,0.30607049949218607],[118,150,72,0.30965225618103137],[118,150,73,0.3133388393881838],[118,150,74,0.3171162845369408],[118,150,75,0.3209610355095229],[118,150,76,0.32249905854168026],[118,150,77,0.3225442636003525],[118,150,78,0.3223512839012017],[118,150,79,0.3219655937507897],[118,151,64,0.287140338303773],[118,151,65,0.2903558565484165],[118,151,66,0.2935234205120748],[118,151,67,0.29662316209026196],[118,151,68,0.2996868906295831],[118,151,69,0.30277196871973944],[118,151,70,0.3059197421784927],[118,151,71,0.30915611151634464],[118,151,72,0.3124930326136495],[118,151,73,0.31593002787343394],[118,151,74,0.31945570490530567],[118,151,75,0.323049279829922],[118,151,76,0.32631370552610983],[118,151,77,0.326261090410749],[118,151,78,0.32596128419534925],[118,151,79,0.32545765404529553],[118,152,64,0.2913973398969081],[118,152,65,0.29443736699927203],[118,152,66,0.2974160743459132],[118,152,67,0.3003176210525403],[118,152,68,0.30317472322624783],[118,152,69,0.30604357925185915],[118,152,70,0.3089653885158003],[118,152,71,0.3119668035966238],[118,152,72,0.3150612482495162],[118,152,73,0.31825025705537924],[118,152,74,0.3215248343534776],[118,152,75,0.32486683008377537],[118,152,76,0.3282503301838944],[118,152,77,0.32954102807081354],[118,152,78,0.32913474056691544],[118,152,79,0.32851485482699216],[118,153,64,0.2953577108473467],[118,153,65,0.2982238198703464],[118,153,66,0.30101562165446183],[118,153,67,0.3037217024397919],[118,153,68,0.306375654422644],[118,153,69,0.30903218089412104],[118,153,70,0.31173202216258533],[118,153,71,0.3145022971123642],[118,153,72,0.317357639955592],[118,153,73,0.32030136970269535],[118,153,74,0.32332669052828217],[118,153,75,0.32641792119014706],[118,153,76,0.32955175165090805],[118,153,77,0.3323716825207136],[118,153,78,0.33185866470335174],[118,153,79,0.33112368763363553],[118,154,64,0.2990158890027277],[118,154,65,0.30170995096142716],[118,154,66,0.30431722148965945],[118,154,67,0.30683102308381444],[118,154,68,0.30928578439322857],[118,154,69,0.31173442936876783],[118,154,70,0.3142169570282894],[118,154,71,0.31676068198833546],[118,154,72,0.3193811939437731],[118,154,73,0.3220833606428182],[118,154,74,0.32486237307837207],[118,154,75,0.3277048315725467],[118,154,76,0.33058987139713697],[118,154,77,0.3334903265495163],[118,154,78,0.3341233073264101],[118,154,79,0.3332737791698368],[118,155,64,0.3023657621177087],[118,155,65,0.30488985924221496],[118,155,66,0.30731529547726893],[118,155,67,0.30964034004508095],[118,155,68,0.3119002106573775],[118,155,69,0.3141458219171893],[118,155,70,0.3164161873719965],[118,155,71,0.3187385693215568],[118,155,72,0.3211292673687614],[118,155,73,0.32359446083084054],[118,155,74,0.3261311042551598],[118,155,75,0.32872787521616664],[118,155,76,0.33136617351146785],[118,155,77,0.33402117082660565],[118,155,78,0.33592233234215124],[118,155,79,0.3349581212500787],[118,156,64,0.30540091807886094],[118,156,65,0.30775726025171823],[118,156,66,0.3100037783025299],[118,156,67,0.3121437964170187],[118,156,68,0.3142132675079142],[118,156,69,0.316260925849049],[118,156,70,0.31832459894353077],[118,156,71,0.3204312773229544],[118,156,72,0.3225977406757424],[118,156,73,0.324831247667312],[118,156,74,0.3271302891921663],[118,156,75,0.32948540470834664],[118,156,76,0.3318800612233448],[118,156,77,0.3342915944287201],[118,156,78,0.3366922114194371],[118,156,79,0.33617334162876916],[118,157,64,0.30811491942589264],[118,157,65,0.31030576596606185],[118,157,66,0.3123763963937873],[118,157,67,0.3143351972676244],[118,157,68,0.31621879762966315],[118,157,69,0.3180736408400034],[118,157,70,0.31993621442579173],[118,157,71,0.32183305069871365],[118,157,72,0.32378120080141914],[118,157,73,0.32578878163915875],[118,157,74,0.3278555958995493],[118,157,75,0.32997382525362423],[118,157,76,0.33212879672908463],[118,157,77,0.33429982215331777],[118,157,78,0.3364611104805479],[118,157,79,0.33692001597592974],[118,158,64,0.3105016023297745],[118,158,65,0.31252919129958373],[118,158,66,0.3144269749692112],[118,158,67,0.3162083158839607],[118,158,68,0.317910456073846],[118,158,69,0.3195774951408209],[118,158,70,0.32124447333251144],[118,158,71,0.3229373136097435],[118,158,72,0.32467315534296826],[118,158,73,0.32646076936596075],[118,158,74,0.3283010550152611],[118,158,75,0.33018761965592025],[118,158,76,0.332107441073031],[118,158,77,0.3340416129957316],[118,158,78,0.3359661739172845],[118,158,79,0.3372030212681813],[118,159,64,0.31255540020783656],[118,159,65,0.3144218874239672],[118,159,66,0.3161497736314766],[118,159,67,0.3177572305046231],[118,159,68,0.3192820467733585],[118,159,69,0.3207659758791738],[118,159,70,0.32224254653275003],[118,159,71,0.32373695636278194],[118,159,72,0.3252662778219165],[118,159,73,0.326839753143001],[118,159,74,0.328459179359738],[118,159,75,0.3301193842618495],[118,159,76,0.3318087940170241],[118,159,77,0.3335100930618273],[118,159,78,0.33520097674295807],[118,159,79,0.3368549970802324],[118,160,64,0.3142716921772083],[118,160,65,0.3159791021119831],[118,160,66,0.3175398507171065],[118,160,67,0.31897669174704646],[118,160,68,0.32032789180555493],[118,160,69,0.3216328936563473],[118,160,70,0.3229236855931325],[118,160,71,0.3242246560043201],[118,160,72,0.32555268418479194],[118,160,73,0.3269173270838252],[118,160,74,0.3283211033482437],[118,160,75,0.3297598758618345],[118,160,76,0.3312233338295834],[118,160,77,0.3326955753100273],[118,160,78,0.33415579096268466],[118,160,79,0.33557904965169433],[118,161,64,0.3156471765708926],[118,161,65,0.31719736733601445],[118,161,66,0.31859345663091787],[118,161,67,0.3198625209603265],[118,161,68,0.3210432336329576],[118,161,69,0.32217278166438634],[118,161,70,0.3232816071508919],[118,161,71,0.32439323100853146],[118,161,72,0.32552424069946384],[118,161,73,0.32668437997836486],[118,161,74,0.32787674232382485],[118,161,75,0.3290980695494904],[118,161,76,0.3303391569245774],[118,161,77,0.3315853659750197],[118,161,78,0.33281724598667706],[118,161,79,0.3340112650924757],[118,162,64,0.31668026976436753],[118,162,65,0.3180749143759545],[118,162,66,0.31930845642068834],[118,162,67,0.32041203975914206],[118,162,68,0.3214246705773196],[118,162,69,0.32238132957384175],[118,162,70,0.32331091255427297],[118,162,71,0.32423603027180115],[118,162,72,0.3251729034244532],[118,162,73,0.3261313649970383],[118,162,74,0.32711497188334865],[118,162,75,0.3281212275437185],[118,162,76,0.3291419172770846],[118,162,77,0.3301635575170553],[118,162,78,0.3311679604000508],[118,162,79,0.33213291470212786],[118,163,64,0.31737153058636086],[118,163,65,0.3186121167177971],[118,163,66,0.31968478187428473],[118,163,67,0.3206245310218431],[118,163,68,0.321470625810238],[118,163,69,0.3222558524697916],[118,163,70,0.3230075430332906],[118,163,71,0.32374735665081517],[118,163,72,0.32449108944969757],[118,163,73,0.3252485963882217],[118,163,74,0.32602382728086965],[118,163,75,0.3268149789837016],[118,163,76,0.32761476554321917],[118,163,77,0.3284108079327365],[118,163,78,0.3291861448287604],[118,163,79,0.3299198657181196],[118,164,64,0.31772125571432386],[118,164,65,0.31880883511085734],[118,164,66,0.3197215426030443],[118,164,67,0.32049812472171],[118,164,68,0.3211780152671961],[118,164,69,0.32179175283122063],[118,164,70,0.32236505193309933],[118,164,71,0.32291856918669604],[118,164,72,0.3234676316891905],[118,164,73,0.3240220815146321],[118,164,74,0.32458623871378683],[118,164,75,0.3251589850249445],[118,164,76,0.3257339703070019],[118,164,77,0.3262999435182545],[118,164,78,0.32684120988387927],[118,164,79,0.3273382157241064],[118,165,64,0.3177122554275368],[118,165,65,0.31864553400884893],[118,165,66,0.3193966821399341],[118,165,67,0.3200080656352801],[118,165,68,0.3205191959750901],[118,165,69,0.3209583107231792],[118,165,70,0.32134947349065807],[118,165,71,0.32171232440154185],[118,165,72,0.32206172673587263],[118,165,73,0.32240753348472556],[118,165,74,0.3227544764347966],[118,165,75,0.3231021801964568],[118,165,76,0.3234453033883018],[118,165,77,0.32377380899538827],[118,165,78,0.32407336572954293],[118,165,79,0.3243258820404377],[118,166,64,0.3173251657659363],[118,166,65,0.3181000778547267],[118,166,66,0.3186852298402624],[118,166,67,0.3191264186484352],[118,166,68,0.3194631308436301],[118,166,69,0.3197213000232532],[118,166,70,0.31992336552449385],[118,166,71,0.3200880023010466],[118,166,72,0.320229682562692],[118,166,73,0.3203583610686856],[118,166,74,0.3204792869104249],[118,166,75,0.32059294440819247],[118,166,76,0.3206951255385574],[118,166,77,0.32077713610530106],[118,166,78,0.3208261376696238],[118,166,79,0.32082562706701545],[118,167,64,0.3165479836486301],[118,167,65,0.31715829911382326],[118,167,66,0.3175708263678985],[118,167,67,0.3178345315687884],[118,167,68,0.3179887721202201],[118,167,69,0.3180572371541565],[118,167,70,0.31806083462852186],[118,167,71,0.3180173920128243],[118,167,72,0.3179411275178722],[118,167,73,0.31784224885814366],[118,167,74,0.31772668260838205],[118,167,75,0.31759593699825106],[118,167,76,0.3174471007729999],[118,167,77,0.31727298053618663],[118,167,78,0.31706237878473387],[118,167,79,0.31680051464915626],[118,168,64,0.3153742143360382],[118,168,65,0.3158121254504115],[118,168,66,0.3160438290581173],[118,168,67,0.3161211230951754],[118,168,68,0.31608313610903566],[118,168,69,0.31595144236741746],[118,168,70,0.3157455803937105],[118,168,71,0.3154827127646558],[118,168,72,0.31517700010424776],[118,168,73,0.3148391067965174],[118,168,74,0.31447584171807863],[118,168,75,0.3140899370659369],[118,168,76,0.3136799681319036],[118,168,77,0.3132404166542526],[118,168,78,0.31276188016212914],[118,168,79,0.31223142952102734],[118,169,64,0.3138008090510984],[118,169,65,0.3140574909177301],[118,169,66,0.31409919682206944],[118,169,67,0.31398014684412756],[118,169,68,0.3137391515689325],[118,169,69,0.313395874130967],[118,169,70,0.3129687145199761],[118,169,71,0.3124744143116117],[118,169,72,0.3119273258110948],[118,169,73,0.3113388175539007],[118,169,74,0.3107168197200593],[118,169,75,0.31006551278482614],[118,169,76,0.30938516249521913],[118,169,77,0.3086721040314912],[118,169,78,0.30791887798724676],[118,169,79,0.307114520584009],[118,170,64,0.311825951092926],[118,170,65,0.31189209520355166],[118,170,66,0.3117342238860308],[118,170,67,0.3114085058306023],[118,170,68,0.31095336116262406],[118,170,69,0.31038682062086004],[118,170,70,0.3097264429124313],[118,170,71,0.30898884831681694],[118,170,72,0.30818887511749005],[118,170,73,0.30733887760511425],[118,170,74,0.3064481694828921],[118,170,75,0.30552261626135163],[118,170,76,0.30456437998645547],[118,170,77,0.3035718194037006],[118,170,78,0.30253954842418607],[118,170,79,0.3014586555289008],[118,171,64,0.30944668868780884],[118,171,65,0.3093130092240731],[118,171,66,0.3089461207153855],[118,171,67,0.308403615818699],[118,171,68,0.3077234744476614],[118,171,69,0.3069224468927794],[118,171,70,0.30601760943390416],[118,171,71,0.3050258094656533],[118,171,72,0.3039627015664934],[118,171,73,0.3028419310410001],[118,171,74,0.30167446905900624],[118,171,75,0.3004681032614113],[118,171,76,0.2992270874476848],[118,171,77,0.297951953706876],[118,171,78,0.29663949010468044],[118,171,79,0.29528288679635206],[118,172,64,0.3066564126574699],[118,172,65,0.3063141251948725],[118,172,66,0.305729440310945],[118,172,67,0.3049608157980554],[118,172,68,0.3040457707427133],[118,172,69,0.3030001961556573],[118,172,70,0.3018410998367908],[118,172,71,0.3005859449494344],[118,172,72,0.2992515586713356],[118,172,73,0.29785319501096713],[118,172,74,0.2964037562251153],[118,172,75,0.29491317700790975],[118,172,76,0.29338797535402705],[118,172,77,0.29183097373225136],[118,172,78,0.29024119394241393],[118,172,79,0.28861392877159237],[118,173,64,0.30344217681450064],[118,173,65,0.30288344913837295],[118,173,66,0.30207334789742724],[118,173,67,0.3010706236760724],[118,173,68,0.29991235004003813],[118,173,69,0.29861404341089254],[118,173,70,0.2971931042430175],[118,173,71,0.2956680308056562],[118,173,72,0.2940571942718811],[118,173,73,0.2923777755584262],[118,173,74,0.290644868683406],[118,173,75,0.288870755129738],[118,173,76,0.2870643534205598],[118,173,77,0.28523084783162544],[118,173,78,0.2833714998871691],[118,173,79,0.28148364601282533],[118,174,64,0.29978185882048536],[118,174,65,0.29900023361337286],[118,174,66,0.2979587318514452],[118,174,67,0.2967158351057494],[118,174,68,0.29530822996753614],[118,174,69,0.29375159955689184],[118,174,70,0.29206423638181134],[118,174,71,0.29026611344841907],[118,174,72,0.28837752081250084],[118,174,73,0.2864178724706615],[118,174,74,0.2844046887071086],[118,174,75,0.282352758717957],[118,174,76,0.28027348803778424],[118,174,77,0.27817443499554884],[118,174,78,0.27605904013166155],[118,174,79,0.27392655221788215],[118,175,64,0.295656381473591],[118,175,65,0.29464702368495566],[118,175,66,0.2933699860571772],[118,175,67,0.2918829376120368],[118,175,68,0.29022227140297274],[118,175,69,0.28840441448709664],[118,175,70,0.28644907021439664],[118,175,71,0.2843781298814511],[118,175,72,0.28221416729061227],[118,175,73,0.2799791132805043],[118,175,74,0.277693115708364],[118,175,75,0.2753735900541959],[118,175,76,0.2730344655023454],[118,175,77,0.27068563104067156],[118,175,78,0.2683325858038672],[118,175,79,0.2659762975787209],[118,176,64,0.29109866690404035],[118,176,65,0.289858165599909],[118,176,66,0.2883427977450993],[118,176,67,0.28660884711155965],[118,176,68,0.28469248490354004],[118,176,69,0.2826114351834762],[118,176,70,0.2803873028064044],[118,176,71,0.27804431135585667],[118,176,72,0.27560765455765024],[118,176,73,0.2731020380623149],[118,176,74,0.2705504174480637],[118,176,75,0.2679729379681328],[118,176,76,0.26538608123371027],[118,176,77,0.2628020236894273],[118,176,78,0.2602282114054658],[118,176,79,0.25766715538203083],[118,177,64,0.2861566430816846],[118,177,65,0.28468325041468073],[118,177,66,0.2829283218468452],[118,177,67,0.2809461658846646],[118,177,68,0.2787727743790063],[118,177,69,0.2764276756971554],[118,177,70,0.2739348187622769],[118,177,71,0.2713211262617228],[118,177,72,0.26861470438285723],[118,177,73,0.265843253741819],[118,177,74,0.2630326877253487],[118,177,75,0.2602059641197409],[118,177,76,0.25738213554968165],[118,177,77,0.2545756238962303],[118,177,78,0.2517957235106389],[118,177,79,0.24904633769245907],[118,178,64,0.2808787448579163],[118,178,65,0.2791726930614233],[118,178,66,0.27717891801239986],[118,178,67,0.2749491748907935],[118,178,68,0.2725192969842301],[118,178,69,0.26991106927655834],[118,178,70,0.2671511688349623],[118,178,71,0.26426952592801684],[118,178,72,0.2612973962380867],[118,178,73,0.2582656452027795],[118,178,74,0.2552032510611959],[118,178,75,0.25213603281671104],[118,178,76,0.24908560895813606],[118,178,77,0.24606859240848689],[118,178,78,0.2430960267985187],[118,178,79,0.24017306879421604],[118,179,64,0.27531333358469595],[118,179,65,0.27337707358817304],[118,179,66,0.27114739579761593],[118,179,67,0.2686729625242861],[118,179,68,0.2659894535109195],[118,179,69,0.26312129820023333],[118,179,70,0.2600982176305182],[118,179,71,0.2569533900294572],[118,179,72,0.25372139230571455],[118,179,73,0.2504363644261166],[118,179,74,0.24713040358840416],[118,179,75,0.24383219471814996],[118,179,76,0.24056588343056928],[118,179,77,0.23735019720682787],[118,179,78,0.2341978201435653],[118,179,79,0.23111502624735825],[118,180,64,0.2695080944160962],[118,180,65,0.267346457279938],[118,180,66,0.26488624199959937],[118,180,67,0.2621725405537583],[118,180,68,0.25924087296756376],[118,180,69,0.2561186272933994],[118,180,70,0.2528388073604468],[118,180,71,0.24943800350640208],[118,180,72,0.24595421266526246],[118,180,73,0.2424248916506723],[118,180,74,0.23888525084978246],[118,180,75,0.23536679514483266],[118,180,76,0.2318961184748388],[118,180,77,0.2284939580412761],[118,180,78,0.225174513753045],[118,180,79,0.22194503810115107],[118,181,64,0.2635094107979458],[118,181,65,0.2611296931506308],[118,181,66,0.2584468296247925],[118,181,67,0.2555019467319828],[118,181,68,0.2523303908448812],[118,181,69,0.24896274064818832],[118,181,70,0.24543543719951258],[118,181,71,0.24178856461043716],[118,181,72,0.23806356034460935],[118,181,73,0.234301168333312],[118,181,74,0.23053964239232802],[118,181,75,0.22681320701116628],[118,181,76,0.22315078216541492],[118,181,77,0.21957497837860854],[118,181,78,0.21610136783522202],[118,181,79,0.2127380369252522],[118,182,64,0.25736171562010035],[118,182,65,0.2547736902632697],[118,182,66,0.2518786079415109],[118,182,67,0.24871333352997485],[118,182,68,0.24531302053116152],[118,182,69,0.2417115810354575],[118,182,70,0.23794895777629596],[118,182,71,0.23406872366016473],[118,182,72,0.2301156958964749],[118,182,73,0.2261338016643845],[118,182,74,0.22216420302735262],[118,182,75,0.218243688380213],[118,182,76,0.21440333727956906],[118,182,77,0.21066746506990006],[118,182,78,0.20705285327873407],[118,182,79,0.2035682713186884],[118,183,64,0.25110681847499716],[118,183,65,0.2483226713036922],[118,183,66,0.2452282730362141],[118,183,67,0.2418560424167899],[118,183,68,0.23824091731044506],[118,183,69,0.2344201914661448],[118,183,70,0.23043728029624633],[118,183,71,0.2263391520675343],[118,183,72,0.22217386114087936],[118,183,73,0.21798834037945322],[118,183,74,0.21382646061683686],[118,183,75,0.20972736463914549],[118,183,76,0.20572408268972012],[118,183,77,0.20184243605463525],[118,183,78,0.19810023483617306],[118,183,79,0.19450677557366844],[118,184,64,0.2447832084364862],[118,184,65,0.24181740280222402],[118,184,66,0.23853891826200216],[118,184,67,0.23497566307637377],[118,184,68,0.23116233434760686],[118,184,69,0.22713955833345292],[118,184,70,0.22295409977355352],[118,184,71,0.21865614117594295],[118,184,72,0.2142967517005044],[118,184,73,0.20992562160067332],[118,184,74,0.20558907024565756],[118,184,75,0.20132833529925512],[118,184,76,0.1971781501765079],[118,184,77,0.19316561643963784],[118,184,78,0.18930937733395187],[118,184,79,0.1856190982069426],[118,185,64,0.23842533174403502],[118,185,65,0.23529440136790644],[118,185,66,0.23184916393827107],[118,185,67,0.22811307692430938],[118,185,68,0.22412057003770183],[118,185,69,0.21991545554327308],[118,185,70,0.2155476318283322],[118,185,71,0.21107023043679737],[118,185,72,0.20653703794784423],[118,185,73,0.20200018844069437],[118,185,74,0.19750813464725522],[118,185,75,0.1931039054415749],[118,185,76,0.1888236568534447],[118,185,77,0.18469552332675515],[118,185,78,0.180738775475399],[118,185,79,0.17696329012492798],[118,186,64,0.23206284374914077],[118,186,65,0.22878511527085635],[118,186,66,0.2251922656320182],[118,186,67,0.22130348426029098],[118,186,68,0.2171529060722235],[118,186,69,0.21278728901904173],[118,186,70,0.20825936248923638],[118,186,71,0.20362486444111405],[118,186,72,0.19893993398052753],[118,186,73,0.19425877810828707],[118,186,74,0.18963162076645856],[118,186,75,0.18510294185593104],[118,186,76,0.1807100134318258],[118,186,77,0.1764817398123062],[118,186,78,0.17243780786416724],[118,186,79,0.1685881532595914],[118,187,64,0.2257198344550587],[118,187,65,0.22231508068205735],[118,187,66,0.21859520032590282],[118,187,67,0.2145754143686056],[118,187,68,0.21028953555418853],[118,187,69,0.20578694095060648],[118,187,70,0.20112281043062577],[118,187,71,0.1963550783189176],[118,187,72,0.19154181424607053],[118,187,73,0.18673888026985083],[118,187,74,0.18199787236938103],[118,187,75,0.17736435395955047],[118,187,76,0.17287638860561927],[118,187,77,0.16856337864532706],[118,187,78,0.164445215952017],[118,187,79,0.16053175060160632],[118,188,64,0.21941402695546502],[118,188,65,0.21590305185404132],[118,188,66,0.21207772975349845],[118,188,67,0.20794971785646948],[118,188,68,0.20355248047482852],[118,188,69,0.19893761314227582],[118,188,70,0.19416230106538188],[118,188,71,0.18928621101924728],[118,188,72,0.18436887744710376],[118,188,73,0.17946736544197722],[118,188,74,0.1746342186438647],[118,188,75,0.16991569962850997],[118,188,76,0.16535032989749554],[118,188,77,0.16096773610775544],[118,188,78,0.1567878087058201],[118,188,79,0.1528201786624316],[118,189,64,0.21315594805525212],[118,189,65,0.20956010450338386],[118,189,66,0.20565144016114326],[118,189,67,0.20143854050165216],[118,189,68,0.1969544978500633],[118,189,69,0.19225266880597872],[118,189,70,0.18739175191231386],[118,189,71,0.1824326459903673],[118,189,72,0.1774358573756338],[118,189,73,0.17245918322014847],[118,189,74,0.1675556787776691],[118,189,75,0.16277191613396952],[118,189,76,0.158146541381604],[118,189,77,0.15370913677039869],[118,189,78,0.14947939389567796],[118,189,79,0.1454666035201054],[118,190,64,0.20694807033599544],[118,190,65,0.20328871163539677],[118,190,66,0.19931875773703225],[118,190,67,0.19504427786506776],[118,190,68,0.19049797380345593],[118,190,69,0.18573447213989472],[118,190,70,0.1808134686593358],[118,190,71,0.17579657879175647],[118,190,72,0.1707447803485228],[118,190,73,0.1657161301857011],[118,190,74,0.1607637625536101],[118,190,75,0.15593417644338867],[118,190,76,0.15126581878410625],[118,190,77,0.14678796988162487],[118,190,78,0.14251993702703247],[118,190,79,0.13847056174217304],[118,191,64,0.20078392491002917],[118,191,65,0.19708179103314416],[118,191,66,0.19307193893205019],[118,191,67,0.1887585099112589],[118,191,68,0.18417380487432644],[118,191,69,0.1793732250313813],[118,191,70,0.1744169513505057],[118,191,71,0.1693668111868631],[118,191,72,0.1642837689463152],[118,191,73,0.15922568737750942],[118,191,74,0.1542453670612339],[118,191,75,0.14938887122468542],[118,191,76,0.1446941425586385],[118,191,77,0.14018991826093297],[118,191,78,0.1358949490741359],[118,191,79,0.13181752763279422],[118,192,64,0.1946471840920406],[118,192,65,0.1909217236185132],[118,192,66,0.18689203488484596],[118,192,67,0.18256091487145662],[118,192,68,0.17796026582666594],[118,192,69,0.17314580022700476],[118,192,70,0.16817771013805563],[118,192,71,0.1631175712898618],[118,192,72,0.15802589179508633],[118,192,73,0.15295992726767815],[118,192,74,0.14797176969444228],[118,192,75,0.14310671697957558],[118,192,76,0.1384019296416975],[118,192,77,0.1338853806976027],[118,192,78,0.12957510432081906],[118,192,79,0.1254787484200439],[118,193,64,0.18851071320489055],[118,193,65,0.1847793418817401],[118,193,66,0.18074782915502413],[118,193,67,0.17641816157939938],[118,193,68,0.1718218632356027],[118,193,69,0.16701457032108133],[118,193,70,0.1620560900587775],[118,193,71,0.15700735936971205],[118,193,72,0.15192805917506758],[118,193,73,0.14687449024064234],[118,193,74,0.14189771768243842],[118,193,75,0.13704199082963422],[118,193,76,0.13234344471072607],[118,193,77,0.12782908899366874],[118,193,78,0.12351608977514722],[118,193,79,0.119411349181596],[118,194,64,0.182335590727053],[118,194,65,0.1786128875676316],[118,194,66,0.1745947479631837],[118,194,67,0.1702827795094168],[118,194,68,0.16570817413351235],[118,194,69,0.1609262319274544],[118,194,70,0.1559961043175694],[118,194,71,0.15097781895064794],[118,194,72,0.1459299642902466],[118,194,73,0.14090763064221368],[118,194,74,0.13596061448706087],[118,194,75,0.1311318925844114],[118,194,76,0.12645637189477402],[118,194,77,0.1219599209396551],[118,194,78,0.11765868779620993],[118,194,79,0.11355870950107558],[118,195,64,0.1809857481296319],[118,195,65,0.1754803322445942],[118,195,66,0.16981921871537708],[118,195,67,0.1640927805564137],[118,195,68,0.1595535027853287],[118,195,69,0.15481151245222052],[118,195,70,0.14992521030889935],[118,195,71,0.14495360410789304],[118,195,72,0.13995406531711096],[118,195,73,0.1349803373437606],[118,195,74,0.13008080190679447],[118,195,75,0.12529700979453146],[118,195,76,0.12066248183423925],[118,195,77,0.11620178548660788],[118,195,78,0.11192989206384354],[118,195,79,0.10785181915922037],[118,196,64,0.18406912260339048],[118,196,65,0.17844191368636236],[118,196,66,0.17266511776545024],[118,196,67,0.16673259744890118],[118,196,68,0.1606677013844849],[118,196,69,0.15451773955904097],[118,196,70,0.14833340550249285],[118,196,71,0.14216593112451628],[118,196,72,0.13606490395583198],[118,196,73,0.13007633262517623],[118,196,74,0.12424096697592478],[118,196,75,0.11949025641127506],[118,196,76,0.11491465087150213],[118,196,77,0.11050785020013013],[118,196,78,0.10628348602701058],[118,196,79,0.10224538878692768],[118,197,64,0.1844525803718915],[118,197,65,0.181226454868195],[118,197,66,0.17533700730921778],[118,197,67,0.16929870594119273],[118,197,68,0.163134932809407],[118,197,69,0.1568925947475012],[118,197,70,0.15062157376527502],[118,197,71,0.1443719657593513],[118,197,72,0.1381919779153483],[118,197,73,0.1321260694505787],[118,197,74,0.12621334185729696],[118,197,75,0.1204861844233005],[118,197,76,0.11496918041637974],[118,197,77,0.10967827892523171],[118,197,78,0.10462023695639068],[118,197,79,0.0997923359969128],[118,198,64,0.1840814839206388],[118,198,65,0.1826669240898527],[118,198,66,0.17783157354774706],[118,198,67,0.17169337699527634],[118,198,68,0.1654371272096407],[118,198,69,0.1591092153859774],[118,198,70,0.15275856067545657],[118,198,71,0.1464339484218934],[118,198,72,0.14018201722755336],[118,198,73,0.13404548377858083],[118,198,74,0.12806161132677188],[118,198,75,0.12226092735177045],[118,198,76,0.11666619554851845],[118,198,77,0.11129164690230008],[118,198,78,0.10614247423240875],[118,198,79,0.10121459420755534],[118,199,64,0.1836541396098695],[118,199,65,0.18205528008421096],[118,199,66,0.18014144987029887],[118,199,67,0.17391077580489805],[118,199,68,0.16756971689991906],[118,199,69,0.1611639879577274],[118,199,70,0.1547413443699651],[118,199,71,0.14834903974209293],[118,199,72,0.142031914688117],[118,199,73,0.13583071676538205],[118,199,74,0.1297806571560349],[118,199,75,0.12391020934126783],[118,199,76,0.11824015464783542],[118,199,77,0.11278287917689159],[118,199,78,0.10754192625727033],[118,199,79,0.10251180820103106],[118,200,64,0.18319114436294015],[118,200,65,0.18139318657280804],[118,200,66,0.17958300906256494],[118,200,67,0.17594219746264425],[118,200,68,0.16952469485386193],[118,200,69,0.16304932808353245],[118,200,70,0.1565624586745988],[118,200,71,0.15010956057585595],[118,200,72,0.143733424541282],[118,200,73,0.13747258572475604],[118,200,74,0.13135997977492014],[118,200,75,0.12542183236854165],[118,200,76,0.11967678676872967],[118,200,77,0.11413527363999679],[118,200,78,0.10879912699968422],[118,200,79,0.10366144983660498],[118,201,64,0.18271298375758782],[118,201,65,0.18070067721006106],[118,201,66,0.17866989437762237],[118,201,67,0.1766083416604361],[118,201,68,0.17129249368235325],[118,201,69,0.16475568471097327],[118,201,70,0.15821212920057062],[118,201,71,0.15170526294160477],[118,201,72,0.14527556733955652],[118,201,73,0.13895911818132464],[118,201,74,0.13278635312556913],[118,201,75,0.12678106251524235],[118,201,76,0.12095960777544579],[118,201,77,0.11533037132276],[118,201,78,0.10989344157749883],[118,201,79,0.10464053633964476],[118,202,64,0.1822386284057404],[118,202,65,0.17999677862961055],[118,202,66,0.17773145073741914],[118,202,67,0.17542771517992717],[118,202,68,0.17286377028182487],[118,202,69,0.16627346002428064],[118,202,70,0.1596803374399288],[118,202,71,0.1531255434512576],[118,202,72,0.14664699392163535],[118,202,73,0.14027806363596815],[118,202,74,0.13404647757478053],[118,202,75,0.12797341370650095],[118,202,76,0.12207282120696356],[118,202,77,0.11635095769799396],[118,202,78,0.11080614878251335],[118,202,79,0.10542877284333455],[118,203,64,0.18178424520879144],[118,203,65,0.1792981362289726],[118,203,66,0.1767848656478946],[118,203,67,0.17422644250962638],[118,203,68,0.17158569001441706],[118,203,69,0.16759484518931028],[118,203,70,0.16095881318845487],[118,203,71,0.154361599796229],[118,203,72,0.1478383093148293],[118,203,73,0.14141938410424965],[118,203,74,0.13512963220394472],[118,203,75,0.1289874529143386],[118,203,76,0.12300426386243013],[118,203,77,0.11718413278099682],[118,203,78,0.11152361693928688],[118,203,79,0.10601181287583047],[118,204,64,0.18136202421520145],[118,204,65,0.17861775306446132],[118,204,66,0.17584392130203688],[118,204,67,0.1730190954687972],[118,204,68,0.17010511416870025],[118,204,69,0.16705378163351842],[118,204,70,0.162042955557929],[118,204,71,0.1554085307968649],[118,204,72,0.14884435733194576],[118,204,73,0.14237772446935928],[118,204,74,0.13603032779436372],[118,204,75,0.1298176284193631],[118,204,76,0.12374839797032051],[118,204,77,0.1178244521515811],[118,204,78,0.1120405754629526],[118,204,79,0.10638463938117285],[118,205,64,0.18097912193485619],[118,205,65,0.17796384260394213],[118,205,66,0.17491774080924366],[118,205,67,0.17181561021470468],[118,205,68,0.16861818434044035],[118,205,69,0.16527923988166823],[118,205,70,0.16175542687458339],[118,205,71,0.15626738046103109],[118,205,72,0.1496664665849844],[118,205,73,0.14315486365976238],[118,205,74,0.13675096181161434],[118,205,75,0.13046712272784822],[118,205,76,0.12430935182621028],[118,205,77,0.11827714105900154],[118,205,78,0.11236348453851823],[118,205,79,0.10655506893677164],[118,206,64,0.18063672209744241],[118,206,65,0.17733879621323795],[118,206,66,0.1740096445850889],[118,206,67,0.17062001003456806],[118,206,68,0.16712941184529603],[118,206,69,0.1634937316747698],[118,206,70,0.15967251349735068],[118,206,71,0.1556299491767203],[118,206,72,0.15031465857963508],[118,206,73,0.14376214761878858],[118,206,74,0.13730447666602813],[118,206,75,0.13095073173178143],[118,206,76,0.12470401079204076],[118,206,77,0.1185613837970183],[118,206,78,0.11251400538705536],[118,206,79,0.1065473818900438],[118,207,64,0.1803309174340901],[118,207,65,0.17673951942528318],[118,207,66,0.1731170652481303],[118,207,67,0.16943003504231],[118,207,68,0.1656366447560826],[118,207,69,0.16169498657596362],[118,207,70,0.1575676617004335],[118,207,71,0.15322245752682856],[118,207,72,0.14863284490461712],[118,207,73,0.14377835414048198],[118,207,74,0.13771270732741975],[118,207,75,0.1312924593045277],[118,207,76,0.12495879305776371],[118,207,77,0.11870623775376297],[118,207,78,0.11252403383077314],[118,207,79,0.10639648136951635],[118,208,64,0.18005921307079822],[118,208,65,0.17616281826292318],[118,208,66,0.17223627635639283],[118,208,67,0.1682417205973322],[118,208,68,0.16413602955944756],[118,208,69,0.15987959302038457],[118,208,70,0.15543819798050776],[118,208,71,0.15078337991470359],[118,208,72,0.1458926781718039],[118,208,73,0.1407497910329814],[118,208,74,0.13534462894442462],[118,208,75,0.12967326458953127],[118,208,76,0.12373777861339835],[118,208,77,0.11754599995665327],[118,208,78,0.1111111398968352],[118,208,79,0.10445131903036602],[118,209,64,0.17981853403641795],[118,209,65,0.17560524835385175],[118,209,66,0.1713637197419317],[118,209,67,0.16705178865566256],[118,209,68,0.16262502135529025],[118,209,69,0.1580461699106452],[118,209,70,0.15328429157264534],[118,209,71,0.148314761472543],[118,209,72,0.14311927549783818],[118,209,73,0.13768577516772534],[118,209,74,0.13200829362319025],[118,209,75,0.1260867219618506],[118,209,76,0.11992649525922408],[118,209,77,0.11353819772573231],[118,209,78,0.10693708655289605],[118,209,79,0.10014253409988577],[118,210,64,0.179603749027857],[118,210,65,0.17506207000460858],[118,210,66,0.1704952566319647],[118,210,67,0.16585704085937314],[118,210,68,0.16110175485513298],[118,210,69,0.156194549769046],[118,210,70,0.15110778829513605],[118,210,71,0.1458207115640413],[118,210,72,0.1403191826337471],[118,210,73,0.13459537557177528],[118,210,74,0.1286474098534977],[118,210,75,0.12247892987955947],[118,210,76,0.11609862948934946],[118,210,77,0.10951972141676088],[118,210,78,0.10275935169999137],[118,210,79,0.09583795911615967],[118,211,64,0.1794075321941852],[118,211,65,0.1745270033908569],[118,211,66,0.1696258158966819],[118,211,67,0.1646538974273911],[118,211,68,0.15956447136449256],[118,211,69,0.15432509306896863],[118,211,70,0.14891141360212495],[118,211,71,0.1433064991900628],[118,211,72,0.13750031252745923],[118,211,73,0.13148916427768267],[118,211,74,0.1252751351045432],[118,211,75,0.11886546861128969],[118,211,76,0.11227193559748924],[118,211,77,0.10551017007415307],[118,211,78,0.09859897750315275],[118,211,79,0.091559615746166],[118,212,64,0.17922035836902706],[118,212,65,0.17399211807094858],[118,212,66,0.16874917802184575],[118,212,67,0.16343807388530715],[118,212,68,0.15801108642305067],[118,212,69,0.15243814661022057],[118,212,70,0.14669812350224734],[118,212,71,0.14077780039472965],[118,212,72,0.13467109533636878],[118,212,73,0.12837827717246236],[118,212,74,0.12190517805696115],[118,212,75,0.11526240337250152],[118,212,76,0.10846453999308592],[118,212,77,0.10152936381344738],[118,212,78,0.09447704745427285],[118,212,79,0.08732936903120436],[118,213,64,0.17903063370436625],[118,213,65,0.1734478586905414],[118,213,66,0.1678578965974796],[118,213,67,0.1622043973592086],[118,213,68,0.15643889977091355],[118,213,69,0.15053364755796544],[118,213,70,0.14447060492117691],[118,213,71,0.13824009921420644],[118,213,72,0.13183978628304416],[118,213,73,0.1252736370822004],[118,213,74,0.1185509470913631],[118,213,75,0.11168537001838158],[118,213,76,0.10469397722956635],[118,213,77,0.0975963442970544],[118,213,78,0.09041366599737861],[118,213,79,0.08316790103357434],[118,214,64,0.17882496377356727],[118,214,65,0.1728832088620885],[118,214,66,0.16694335923165382],[118,214,67,0.1609467642784619],[118,214,68,0.1548444494318629],[118,214,69,0.1486108748905295],[118,214,70,0.14223092721489577],[118,214,71,0.13569824384262996],[118,214,72,0.12901393300147143],[118,214,73,0.12218534071727083],[118,214,74,0.11522486700107074],[118,214,75,0.10814883322193916],[118,214,76,0.10097640258745481],[118,214,77,0.09372855556215193],[118,214,78,0.08642712195824243],[118,214,79,0.07909387133102067],[118,215,64,0.1785885613197919],[118,215,65,0.17228599531356048],[118,215,66,0.16599598991135917],[118,215,67,0.1596582414482809],[118,215,68,0.15322351182384497],[118,215,69,0.1466683501245017],[118,215,70,0.13998034666757192],[118,215,71,0.1331561598206572],[118,215,72,0.12620000415607258],[118,215,73,0.11912221124154411],[118,215,74,0.11193786567722393],[118,215,75,0.10466551887332677],[118,215,76,0.09732598293865478],[118,215,77,0.08994120691913621],[118,215,78,0.08253323749004243],[118,215,79,0.07512326606451859],[118,216,64,0.1783057959265181],[118,216,65,0.17164333450410918],[118,216,66,0.16500559493885544],[118,216,67,0.15833131256286975],[118,216,68,0.15157124992093488],[118,216,69,0.14470388930390157],[118,216,70,0.1377192659307947],[118,216,71,0.13061672217947204],[118,216,72,0.12340318124742115],[118,216,73,0.116091518364653],[118,216,74,0.10869903265373322],[118,216,75,0.10124602257874767],[118,216,76,0.0937544677629501],[118,216,77,0.08624681978550709],[118,216,78,0.07874490439424371],[118,216,79,0.07126893739267828],[118,217,64,0.1779608879778966],[118,217,65,0.1709422239990559],[118,217,66,0.16396185467042018],[118,217,67,0.15695827233276663],[118,217,68,0.1498825115986403],[118,217,69,0.14271480835288441],[118,217,70,0.13544735047882736],[118,217,71,0.12808178859616212],[118,217,72,0.12062731564662273],[118,217,73,0.11309886798904337],[118,217,74,0.10551545153631298],[118,217,75,0.09789859627760425],[118,217,76,0.09027094233091854],[118,217,77,0.08265496046529194],[118,217,78,0.07507180982238591],[118,217,79,0.06754033535299939],[118,218,64,0.1775387493565226],[118,218,65,0.170170280980819],[118,218,66,0.16285496337321698],[118,218,67,0.15553177049380706],[118,218,68,0.1481522803936172],[118,218,69,0.14069828399638315],[118,218,70,0.13316380426526173],[118,218,71,0.12555239573282762],[118,218,72,0.11787505302225283],[118,218,73,0.11014826357055663],[118,218,74,0.10239220847141997],[118,218,75,0.09462911513204603],[118,218,76,0.08688176520612023],[118,218,77,0.07917216102512765],[118,218,78,0.07152035350693828],[118,218,79,0.06394343427327122],[118,219,64,0.17702597339303952],[118,219,65,0.1693166303444165],[118,219,66,0.16167641959332923],[118,219,67,0.15404550804813094],[118,219,68,0.14637628099797473],[118,219,69,0.13865187254849556],[118,219,70,0.13086780686826555],[118,219,71,0.12302912103988019],[118,219,72,0.1151481274378466],[118,219,73,0.10724234147094559],[118,219,74,0.09933257893555687],[118,219,75,0.0914412269719774],[118,219,76,0.0835906923517841],[118,219,77,0.07580203055306015],[118,219,78,0.0680937588059861],[118,219,79,0.06048085601369628],[118,220,64,0.17641197663384908],[118,220,65,0.16837294488405874],[118,220,66,0.16041996949199486],[118,220,67,0.1524950881580806],[118,220,68,0.1445517418855419],[118,220,69,0.1365741889526246],[118,220,70,0.12855911450281954],[118,220,71,0.12051261240204081],[118,220,72,0.1124478275025247],[118,220,73,0.1043827826913692],[118,220,74,0.09633839524145185],[118,220,75,0.08833668669929055],[118,220,76,0.0803991902517073],[118,220,77,0.07254555921345013],[118,220,78,0.0647923799756583],[118,220,79,0.05715219245026305],[118,221,64,0.17569029502805014],[118,221,65,0.16733464011903856],[118,221,66,0.15908270565562752],[118,221,67,0.15087902416951363],[118,221,68,0.14267831753058224],[118,221,69,0.1344657485280551],[118,221,70,0.12623882735657466],[118,221,71,0.11800428809115607],[118,221,72,0.1097756370499335],[118,221,73,0.10157090347495681],[118,221,74,0.093410597262436],[118,221,75,0.08531587816483728],[118,221,76,0.07730694056884041],[118,221,77,0.06940161762812161],[118,221,78,0.06161420820289727],[118,221,79,0.053954529729435916],[118,222,64,0.17486003715059087],[118,222,65,0.1662022263306488],[118,222,66,0.1576663239163705],[118,222,67,0.1491999072800401],[118,222,68,0.14075917272647462],[118,222,69,0.13232997393283968],[118,222,70,0.12391032576922899],[118,222,71,0.11550720956104597],[118,222,72,0.10713405289918458],[118,222,73,0.09880842735185912],[118,222,74,0.09054996896774273],[118,222,75,0.08237852612825297],[118,222,76,0.07431253896583095],[118,222,77,0.06636765421783077],[118,222,78,0.058555579037113094],[118,222,79,0.050883176931019486],[118,223,64,0.17392749707298122],[118,223,65,0.16498282038480125],[118,223,66,0.15617854073132306],[118,223,67,0.14746573638764537],[118,223,68,0.13880223154056096],[118,223,69,0.1301743698902971],[118,223,70,0.12158037782137773],[118,223,71,0.11302712967396979],[118,223,72,0.10452758231370385],[118,223,73,0.0960984412696278],[118,223,74,0.08775806343726643],[118,223,75,0.07952460099201139],[118,223,76,0.07141439079746814],[118,223,77,0.06344059322705894],[118,223,78,0.05561208395026279],[118,223,79,0.04793260186792355],[118,224,64,0.1729079294635953],[118,224,65,0.1636918198951154],[118,224,66,0.15463467365791742],[118,224,67,0.14569141265376254],[118,224,68,0.13682159344927813],[118,224,69,0.12801186824361996],[118,224,70,0.11926042092506288],[118,224,71,0.11057371898330286],[118,224,72,0.1019639228170821],[118,224,73,0.09344653850242189],[118,224,74,0.08503831908159964],[118,224,75,0.07675541906398005],[118,224,76,0.06861180645235876],[118,224,77,0.06061793622582075],[118,224,78,0.052779688827640885],[118,224,79,0.04509757682509171],[118,225,64,0.17182748944426435],[118,225,65,0.16235474223622942],[118,225,66,0.15305938742791703],[118,225,67,0.14390040128976625],[118,225,68,0.13483911918250682],[118,225,69,0.12586234589767992],[118,225,70,0.11696802001235107],[118,225,71,0.10816197271018002],[118,225,72,0.09945532704666474],[118,225,73,0.09086215106190265],[118,225,74,0.08239736982930149],[118,225,75,0.07407494114460975],[118,225,76,0.06590629916757393],[118,225,77,0.05789906993188772],[118,225,78,0.05005606224336379],[118,225,79,0.04237453709222097],[118,226,64,0.17072533964545564],[118,226,65,0.16100923084391203],[118,226,66,0.15148860806021622],[118,226,67,0.14212656302424645],[118,226,68,0.1328861887649753],[118,226,69,0.12375431817632429],[118,226,70,0.11472850489742582],[118,226,71,0.10581380104048858],[118,226,72,0.09702015532303666],[118,226,73,0.08836007433804034],[118,226,74,0.07984655205569391],[118,226,75,0.07149127225306605],[118,226,76,0.0633030881627882],[118,226,77,0.05528678322288911],[118,226,78,0.04744211640251885],[118,226,79,0.03976315517345827],[118,227,64,0.1696578856708246],[118,227,65,0.15970999553944185],[118,227,66,0.1499751002658178],[118,227,67,0.14042035370141956],[118,227,68,0.1310105338608852],[118,227,69,0.12173240636626755],[118,227,70,0.11258305940927238],[118,227,71,0.10356670490679203],[118,227,72,0.09469207847712956],[118,227,73,0.08597011112710182],[118,227,74,0.07741187773691896],[118,227,75,0.06902682701966442],[118,227,76,0.060821297215109205],[118,227,77,0.052797321357085335],[118,227,78,0.04495172553554621],[118,227,79,0.037275523159706114],[118,228,64,0.16869693663849672],[118,228,65,0.1585302794402406],[118,228,66,0.14859297090140502],[118,228,67,0.13885628427140378],[118,228,68,0.12928667362618323],[118,228,69,0.11987074479171944],[118,228,70,0.1106050359679005],[118,228,71,0.10149285135452572],[118,228,72,0.09254166878308054],[118,228,73,0.08376082651912854],[118,228,74,0.07515949429747075],[118,228,75,0.0667449332311906],[118,228,76,0.05852104880811303],[118,228,77,0.0504872407577842],[118,228,78,0.04263755314477733],[118,228,79,0.034960127620956745],[118,229,64,0.16790100834120844],[118,229,65,0.1575307077963746],[118,229,66,0.14740438933483366],[118,229,67,0.1374976298276201],[118,229,68,0.1277786348417871],[118,229,69,0.11823377074846163],[118,229,70,0.10885893556600172],[118,229,71,0.09965644097153653],[118,229,72,0.09063243843243089],[118,229,73,0.08179463029634021],[118,229,74,0.07315027085034115],[118,229,75,0.06470446193002342],[118,229,76,0.05645874722375165],[118,229,77,0.04841000897938509],[118,229,78,0.040549670386597986],[118,229,79,0.03286320647865557],[118,230,64,0.1673102981722074],[118,230,65,0.15675306399387506],[118,230,66,0.14645229184592903],[118,230,67,0.13638811374637697],[118,230,68,0.12653062793540287],[118,230,69,0.11686591381176797],[118,230,70,0.10738915363618322],[118,230,71,0.09810158385303458],[118,230,72,0.08900795470728017],[118,230,73,0.08011427849680085],[118,230,74,0.07142587138541176],[118,230,75,0.06294569326664441],[118,230,76,0.0546729897277683],[118,230,77,0.04660223972117162],[118,230,78,0.03872241211229457],[118,230,79,0.031016533840896043],[118,231,64,0.16694878272884542],[118,231,65,0.15622238306878075],[118,231,66,0.14576246941635693],[118,231,67,0.13555399918692754],[118,231,68,0.1255691539941983],[118,231,69,0.11579372569869127],[118,231,70,0.1062221357305595],[118,231,71,0.09685447998995113],[118,231,72,0.08769404022194438],[118,231,73,0.07874508526966519],[118,231,74,0.07001096700735834],[118,231,75,0.06149251531820285],[118,231,76,0.05318673603965041],[118,231,77,0.04508581535590971],[118,231,78,0.03717643367904748],[118,231,79,0.029439391628140407],[118,232,64,0.16682620717388996],[118,232,65,0.15594893666227955],[118,232,66,0.1453455483157321],[118,232,67,0.13500607605112538],[118,232,68,0.1249050113314874],[118,232,69,0.1150279156501972],[118,232,70,0.1053684468738201],[118,232,71,0.09592552386575677],[118,232,72,0.08670091037144084],[118,232,73,0.07769708738078221],[118,232,74,0.06891541860544505],[118,232,75,0.0603546132736183],[118,232,76,0.05200949000553083],[118,232,77,0.0438700450929269],[118,232,78,0.03592082807128915],[118,232,79,0.028140627045737585],[118,233,64,0.16693996364033847],[118,233,65,0.15593010635343724],[118,233,66,0.1451988601310778],[118,233,67,0.13474153978790035],[118,233,68,0.12453519774672704],[118,233,69,0.11456528725201491],[118,233,70,0.10482475032509862],[118,233,71,0.09531132886242645],[118,233,72,0.08602524351372674],[118,233,73,0.07696715689402937],[118,233,74,0.06813642556130847],[118,233,75,0.059529644762759626],[118,233,76,0.05113948952005456],[118,233,77,0.04295385519117265],[118,233,78,0.03495530021975861],[118,233,79,0.02712079336334051],[118,234,64,0.1672768574971433],[118,234,65,0.1561521442431182],[118,234,66,0.14530820018808108],[118,234,67,0.13474576107864084],[118,234,68,0.1244447076170258],[118,234,69,0.11439057595476443],[118,234,70,0.10457569515520465],[118,234,71,0.0949966710530213],[118,234,72,0.08565218365846095],[118,234,73,0.07654106201882645],[118,234,74,0.06766064072210026],[118,234,75,0.05900540180915755],[118,234,76,0.050565905439282924],[118,234,77,0.04232801223239443],[118,234,78,0.03427239979666907],[118,234,79,0.026374375542926973],[118,235,64,0.16781476014349783],[118,235,65,0.15659181951744627],[118,235,66,0.14564947317130594],[118,235,67,0.1349939453007677],[118,235,68,0.12460822282041319],[118,235,69,0.11447818641555678],[118,235,70,0.10459571190613],[118,235,71,0.09495635181690927],[118,235,72,0.08555727529160631],[118,235,73,0.07639547596893617],[118,235,74,0.06746625171945587],[118,235,75,0.05876195973786166],[118,235,76,0.05027105007864665],[118,235,77,0.04197738031722315],[118,235,78,0.03385981361982783],[118,235,79,0.025892102114451625],[118,236,64,0.16852414685379424],[118,236,65,0.1572179495780891],[118,236,66,0.1461902246130827],[118,236,67,0.1354526805311716],[118,236,68,0.12499169635533115],[118,236,69,0.11479382864564867],[118,236,70,0.10485071545902948],[118,236,71,0.09515697856891014],[118,236,72,0.08570832981586125],[118,236,73,0.07649993352347262],[118,236,74,0.06752502855580149],[118,236,75,0.058773813206630734],[118,236,76,0.05023259572272172],[118,236,77,0.04188321287672965],[118,236,78,0.03370271862635953],[118,236,79,0.0256633445252104],[118,237,64,0.16936949362063958],[118,237,65,0.15799278939949654],[118,237,66,0.14689103166372075],[118,237,67,0.13608134728733215],[118,237,68,0.1255538016745526],[118,237,69,0.11529602584624275],[118,237,70,0.10529968790597297],[118,237,71,0.09555863636381826],[118,237,72,0.08606719638918817],[118,237,73,0.07681870814799403],[118,237,74,0.06780431044507543],[118,237,75,0.05901197252813915],[118,237,76,0.05042577654349026],[118,237,77,0.04202545276994763],[118,237,78,0.03378616940131038],[118,237,79,0.025678578299885367],[118,238,64,0.17030539166267045],[118,238,65,0.15886806116524516],[118,238,66,0.14770146365882303],[118,238,67,0.13682803439377217],[118,238,68,0.12624183172550035],[118,238,69,0.11593202357519213],[118,238,70,0.10589062306090097],[118,238,71,0.09611089062308523],[118,238,72,0.08658584289676478],[118,238,73,0.07730698801723751],[118,238,74,0.0682632901961182],[118,238,75,0.059440366063895765],[118,238,76,0.05081991493408776],[118,238,77,0.04237938480564109],[118,238,78,0.034091875590090595],[118,238,79,0.025926280728233282],[118,239,64,0.1712693477855115],[118,239,65,0.15977856227245768],[118,239,66,0.14855434740109302],[118,239,67,0.13762429895531],[118,239,68,0.1269867827411981],[118,239,69,0.11663302190964725],[118,239,70,0.10655573312732701],[118,239,71,0.09674780168331786],[118,239,72,0.087201024083099],[118,239,73,0.0779050602484651],[118,239,74,0.06884659775222383],[118,239,75,0.060008730202095795],[118,239,76,0.05137055157406511],[118,239,77,0.04290696798459403],[118,239,78,0.034588728089040593],[118,239,79,0.026382673000163472],[118,240,64,0.17219138432831294],[118,240,65,0.1606546847731097],[118,240,66,0.14938060918797047],[118,240,67,0.13840166566324907],[118,240,68,0.12772080255933002],[118,240,69,0.1173318451783586],[118,240,70,0.10722861697697143],[118,240,71,0.09740389551821341],[118,240,72,0.08784840522636929],[118,240,73,0.07855000222804195],[118,240,74,0.06949305328493685],[118,240,75,0.060658010536798486],[118,240,76,0.052021183487075906],[118,240,77,0.043554709382025866],[118,240,78,0.03522672286138526],[118,240,79,0.027001725495045897],[118,241,64,0.17301256239395685],[118,241,65,0.1614382818713587],[118,241,66,0.15012284693045314],[118,241,67,0.13910331126645864],[118,241,68,0.12838741677377213],[118,241,69,0.11797214179704775],[118,241,70,0.10785285229869424],[118,241,71,0.09802253940825213],[118,241,72,0.08847107300224481],[118,241,73,0.07918462961689127],[118,241,74,0.07014529626933097],[118,241,75,0.06133085150399445],[118,241,76,0.05271472472378616],[118,241,77,0.044266134613500624],[118,241,78,0.0359504072204671],[118,241,79,0.02772947402419279],[118,242,64,0.17368769400888986],[118,242,65,0.16208452731251727],[118,242,66,0.1507364970491786],[118,242,67,0.13968472215454006],[118,242,68,0.12894187312919358],[118,242,69,0.11850861503956923],[118,242,70,0.10838230840517987],[118,242,71,0.09855652202754915],[118,242,72,0.08902055198147865],[118,242,73,0.07975909738695566],[118,242,74,0.07075209411009455],[118,242,75,0.06197470731036427],[118,242,76,0.05339748352316967],[118,242,77,0.04498666274415656],[118,242,78,0.03670465076926744],[118,242,79,0.02851065184177077],[118,243,64,0.17418406970260353],[118,243,65,0.16256070634598543],[118,243,66,0.15118870061173817],[118,243,67,0.14011265235859044],[118,243,68,0.12935021128399166],[118,243,69,0.11890622557719661],[118,243,70,0.10878050253517095],[118,243,71,0.09896758349669521],[118,243,72,0.08945652659644893],[118,243,73,0.08023082935575149],[118,243,74,0.07126849184235406],[118,243,75,0.0625422209276073],[118,243,76,0.05401977596917328],[118,243,77,0.04566445605346646],[118,243,78,0.03743572874899762],[118,243,79,0.02929000014864387],[118,244,64,0.1744801939171925],[118,244,65,0.16284501151687042],[118,244,66,0.15145717079029963],[118,244,67,0.14036407808523407],[118,244,68,0.1295883230117636],[118,244,69,0.11913937754347129],[118,244,70,0.10901993239161335],[118,244,71,0.09922591438956575],[118,244,72,0.08974652511791385],[118,244,73,0.08056440340520526],[118,244,74,0.07165591204030104],[118,244,75,0.06299154885389535],[118,244,76,0.054536482153149664],[118,244,77,0.046251210326710555],[118,244,78,0.03809234528222653],[118,244,79,0.03001351923352845],[118,245,64,0.17456452820220048],[118,245,65,0.16292534317687768],[118,245,66,0.15152906145737177],[118,245,67,0.1404251485070344],[118,245,68,0.129641002447583],[118,245,69,0.11919108760107558],[118,245,70,0.1090813842577796],[118,245,71,0.09930962290454177],[118,245,72,0.0898655647298933],[118,245,73,0.08073139136452485],[118,245,74,0.07188220382393054],[118,245,75,0.06328663046533695],[118,245,76,0.054907543621934424],[118,245,77,0.04670288443596791],[118,245,78,0.038626595282856],[118,245,79,0.030629659059698347],[118,246,64,0.1744342422708386],[118,246,65,0.16279811471976924],[118,246,66,0.15139983684498134],[118,246,67,0.14029013263129855],[118,246,68,0.1295009860740369],[118,246,69,0.11905213656360691],[118,246,70,0.10895321609532112],[118,246,71,0.09920416945564078],[118,246,72,0.08979575681662842],[118,246,73,0.08071015254199701],[118,246,74,0.07192163983679083],[118,246,75,0.06339740073919824],[118,246,76,0.055098400825849006],[118,246,77,0.046980367883079056],[118,246,78,0.03899486369035779],[118,246,79,0.03109044796674213],[118,247,64,0.17409397312305663],[118,247,65,0.1624670626702414],[118,247,66,0.15107214230916222],[118,247,67,0.139960362177843],[118,247,68,0.1291679822409142],[118,247,69,0.11872020321235807],[118,247,70,0.10863061510132686],[118,247,71,0.09890176799557424],[118,247,72,0.08952587161304297],[118,247,73,0.08048557990670635],[118,247,74,0.07175486006046457],[118,247,75,0.0632999450985765],[118,247,76,0.05508036922284221],[118,247,77,0.04705008489234858],[118,247,78,0.03915866057426728],[118,247,79,0.031352558019119924],[118,248,64,0.173554592578268],[118,248,65,0.161942061886966],[118,248,66,0.15055467636701933],[118,248,67,0.13944317051417457],[118,248,68,0.12864769012143779],[118,248,69,0.11819898004623232],[118,248,70,0.10811482928599028],[118,248,71,0.09840075345102059],[118,248,72,0.08905086141937334],[118,248,73,0.08004879794880053],[118,248,74,0.07136876133512493],[118,248,75,0.06297659510586702],[118,248,76,0.05483095264514003],[118,248,77,0.04688453356238875],[118,248,78,0.039085390547574886],[118,248,79,0.03137830539701756],[118,249,64,0.17283198370641137],[118,249,65,0.1612379462814272],[118,249,66,0.14986106430848778],[118,249,67,0.13875082782459808],[118,249,68,0.12795080812794468],[118,249,69,0.11749727081281816],[118,249,70,0.10741237272958774],[118,249,71,0.09770491473175744],[118,249,72,0.08837134164315232],[118,249,73,0.07939681128758036],[118,249,74,0.07075633147154953],[118,249,75,0.0624159637213626],[118,249,76,0.0543340924947762],[118,249,77,0.046462758516080595],[118,249,78,0.03874905482594783],[118,249,79,0.03095412366153877],[118,250,64,0.17194582680065015],[118,250,65,0.16037333560436712],[118,250,66,0.1490087338295898],[118,250,67,0.1378994728284255],[118,250,68,0.12709203194153387],[118,250,69,0.11662806979113594],[118,250,70,0.10653420428807753],[118,250,71,0.09682279287076341],[118,250,72,0.08749302900865945],[118,250,73,0.07853210315169301],[118,250,74,0.06991642686981663],[118,250,75,0.06161291884515321],[118,250,76,0.05358035130574413],[118,250,77,0.04577075542666379],[118,250,78,0.03813088417509898],[118,250,79,0.030039391859354888],[118,251,64,0.17091839569732148],[118,251,65,0.15936946901010726],[118,251,66,0.14801779328764297],[118,251,67,0.13690804151101618],[118,251,68,0.1260890424528266],[118,251,69,0.11560762293125627],[118,251,70,0.10549487964046368],[118,251,71,0.09576694396194177],[118,251,72,0.08642613636542562],[118,251,73,0.07746218292527435],[118,251,74,0.06885349260390912],[118,251,75,0.06056849387552833],[118,251,76,0.052567029193667486],[118,251,77,0.044801805746845696],[118,251,78,0.03721990090149014],[118,251,79,0.02935007213021223],[118,252,64,0.16977336542034333],[118,252,65,0.15824904627745598],[118,252,66,0.14690991334320616],[118,252,67,0.1357971934916133],[118,252,68,0.1249614840665792],[118,252,69,0.11445447110497395],[118,252,70,0.10431167671041998],[118,252,71,0.09455316668810983],[118,252,72,0.0851847236358796],[118,252,73,0.076199082040657],[118,252,74,0.0675772239922933],[118,252,75,0.05928973404811687],[118,252,76,0.0512982117116404],[118,252,77,0.043556739929377794],[118,252,78,0.03601340796464025],[118,252,79,0.02861188697434336],[118,253,64,0.1685346323066134],[118,253,65,0.1570350777428358],[118,253,66,0.14570721292721753],[118,253,67,0.13458823682268609],[118,253,68,0.1237299339904195],[118,253,69,0.11318847588413794],[118,253,70,0.1030036946488696],[118,253,71,0.093199694373889],[118,253,72,0.08378600456753436],[118,253,73,0.07475879760213176],[118,253,74,0.06610216875228597],[118,253,75,0.05778947736715319],[118,253,76,0.04978474764338534],[118,253,77,0.04204412740193201],[118,253,78,0.034517403222764836],[118,253,79,0.02714957025473812],[118,254,64,0.16722514795690863],[118,254,65,0.1557497441876884],[118,254,66,0.1444311506558778],[118,254,67,0.1333020521979107],[118,254,68,0.12241486330878615],[118,254,69,0.11182982844064751],[118,254,70,0.10159092673497021],[118,254,71,0.09172635165801339],[118,254,72,0.08224960909919699],[118,254,73,0.07316068324836043],[118,254,74,0.06444726893289723],[118,254,75,0.0560860690058263],[118,254,76,0.04804415529451353],[118,254,77,0.04028039154868332],[118,254,78,0.032746916769593425],[118,254,79,0.025390687257694496],[118,255,64,0.16586576855329704],[118,255,65,0.15441326811811323],[118,255,66,0.1431014230104114],[118,255,67,0.13195801774026766],[118,255,68,0.1210355908376537],[118,255,69,0.11039804235508044],[118,255,70,0.10009330774106835],[118,255,71,0.0901536760583136],[118,255,72,0.08059680131479038],[118,255,73,0.0714267869047571],[118,255,74,0.0626353419383245],[118,255,75,0.05420300813826005],[118,255,76,0.04610045589102257],[118,255,77,0.03828984795739593],[118,255,78,0.03072626928059985],[118,255,79,0.023359221274363746],[118,256,64,0.1644741212884612],[118,256,65,0.1530427980794967],[118,256,66,0.14173487080348304],[118,256,67,0.13057293574767956],[118,256,68,0.11960923096367124],[118,256,69,0.10891093132952034],[118,256,70,0.0985297365129164],[118,256,71,0.08850200490072346],[118,256,72,0.07884965314309755],[118,256,73,0.06958113524226885],[118,256,74,0.060692500093337445],[118,256,75,0.05216852627230488],[118,256,76,0.04398393276237978],[118,256,77,0.03610466421514233],[118,256,78,0.028489249262622078],[118,256,79,0.021090230327696816],[118,257,64,0.16306349786780389],[118,257,65,0.1516513149997912],[118,257,66,0.140344401998266],[118,257,67,0.12915996858194928],[118,257,68,0.11814964184770392],[118,257,69,0.1073835774925176],[118,257,70,0.09691707890759699],[118,257,71,0.08679053238167046],[118,257,72,0.07703017839082629],[118,257,73,0.06764896945073715],[118,257,74,0.05864751358686389],[118,257,75,0.05001510235275752],[118,257,76,0.04173082220861628],[118,257,77,0.03376474796367054],[118,257,78,0.026079216890985257],[118,257,79,0.018630182039963653],[118,258,64,0.16164196305400413],[118,258,65,0.15024681073742854],[118,258,66,0.13893824568483776],[118,258,67,0.12772796335978334],[118,258,68,0.11666681035086142],[118,258,69,0.10582776449743271],[118,258,70,0.09526963629436984],[118,258,71,0.08503680069323674],[118,258,72,0.07515983430702543],[118,258,73,0.06565624615816647],[118,258,74,0.056531301179321036],[118,258,75,0.04777893553752541],[118,258,76,0.03938276272037275],[118,258,77,0.03131716920000347],[118,258,78,0.02354849838103948],[118,258,79,0.016036321440348694],[118,259,64,0.1602159320727518],[118,259,65,0.14883722141056538],[118,259,66,0.13752627882720536],[118,259,67,0.12628916403661344],[118,259,68,0.11517575688469121],[118,259,69,0.10426164586051859],[118,259,70,0.0936089727004802],[118,259,71,0.08326596311199955],[118,259,72,0.073267430408163],[118,259,73,0.06363537911912746],[118,259,74,0.05437970794139652],[118,259,75,0.04549901123442773],[118,259,76,0.0369814781289746],[118,259,77,0.02880588817505321],[118,259,78,0.020942702333816763],[118,259,79,0.0133552480051015],[118,260,64,0.15879333160327716],[118,260,65,0.1474332017427324],[118,260,66,0.13612233481205646],[118,260,67,0.12486101825657796],[118,260,68,0.11369781517489935],[118,260,69,0.10271046302911851],[118,260,70,0.09196403429339821],[118,260,71,0.0815102718245536],[118,260,72,0.07138796014152016],[118,260,73,0.0616234022686004],[118,260,74,0.052231001652353296],[118,260,75,0.04321394849896236],[118,260,76,0.0345650097219503],[118,260,77,0.026267421541222635],[118,260,78,0.018295883638013453],[118,260,79,0.0106176536446181],[118,261,64,0.15738098488617783],[118,261,65,0.1460439008006207],[118,261,66,0.1347382793253098],[118,261,67,0.12345852517576864],[118,261,68,0.1122514156954541],[118,261,69,0.10119616718035096],[118,261,70,0.09036019320989246],[118,261,71,0.07979825366856576],[118,261,72,0.0695526955728306],[118,261,73,0.05965380396693494],[118,261,74,0.05012026254315742],[118,261,75,0.04095972346931422],[118,261,76,0.032169485739140455],[118,261,77,0.02373728120154433],[118,261,78,0.015642167277058246],[118,261,79,0.00785552523245604],[118,262,64,0.15598420797725393],[118,262,65,0.14467651761548053],[118,262,66,0.13338351892923508],[118,262,67,0.12209368330138728],[118,262,68,0.11085146159327855],[118,262,69,0.09973672050666592],[118,262,70,0.088818478335717],[118,262,71,0.07815387981639497],[118,262,72,0.0677883092517672],[118,262,73,0.05775561694984574],[118,262,74,0.04807845877168615],[118,262,75,0.03876874840711283],[118,262,76,0.029828221820005777],[118,262,77,0.021249113136637347],[118,262,78,0.013014941093530595],[118,262,79,0.0051014050140318346],[118,263,64,0.15460686895626283],[118,263,65,0.14333639045778815],[118,263,66,0.13206511457406495],[118,263,67,0.12077561274506046],[118,263,68,0.10950943779219426],[118,263,69,0.09834616731318246],[118,263,70,0.08735558188624386],[118,263,71,0.07659648082306247],[118,263,72,0.06611667123551102],[118,263,73,0.055953072273233734],[118,263,74,0.04613193446811442],[118,263,75,0.03666917393593115],[118,263,76,0.027570821004081553],[118,263,77,0.01883358265919558],[118,263,78,0.010445518044169558],[118,263,79,0.0023868260789811427],[118,264,64,0.15325177448523924],[118,264,65,0.1420274126108364],[118,264,66,0.13078821803554463],[118,264,67,0.11951099452102641],[118,264,68,0.10823382907479477],[118,264,69,0.09703500372700223],[118,264,70,0.08598415190924333],[118,264,71,0.07514093264384634],[118,264,72,0.06455490000399758],[118,264,73,0.054265488149597356],[118,264,74,0.04430211200897398],[118,264,75,0.03468438348794715],[118,264,76,0.025422442902713616],[118,264,77,0.01651740515366969],[118,264,78,0.007961919988002839],[118,264,79,-2.5915446203170385E-4],[118,265,64,0.1519213858845392],[118,265,65,0.1407527766945072],[118,265,66,0.12955683319678712],[118,265,67,0.11830482867563351],[118,265,68,0.10703084880924116],[118,265,69,0.09581084758458844],[118,265,70,0.0847133721981816],[118,265,71,0.07379811505878496],[118,265,72,0.0631156686819338],[118,265,73,0.05270739509903823],[118,265,74,0.04260540998105369],[118,265,75,0.032832681487638196],[118,265,76,0.023403243666541916],[118,265,77,0.014322524046730931],[118,265,78,0.005587784896760652],[118,265,79,-0.0025100019448164096],[118,266,64,0.15061886640919303],[118,266,65,0.13951604911465726],[118,266,66,0.1283749036306427],[118,266,67,0.11716151258845066],[118,266,68,0.1059054795592719],[118,266,69,0.09467940965302732],[118,266,70,0.08354983071317076],[118,266,71,0.07257564356933699],[118,266,72,0.06180776762959395],[118,266,73,0.05128889850305819],[118,266,74,0.04105337797876974],[118,266,75,0.031127176499674936],[118,266,76,0.021527988085661445],[118,266,77,0.012265437478802661],[118,266,78,0.006062198998851928],[118,266,79,0.0040241701389609605],[118,267,64,0.14934946095219245],[118,267,65,0.13832257576754714],[118,267,66,0.12724772750639268],[118,267,67,0.11608624036865318],[118,267,68,0.1048628264160416],[118,267,69,0.09364576695911374],[118,267,70,0.08249867724306192],[118,267,71,0.07147887548705377],[118,267,72,0.06063692413687677],[118,267,73,0.05001627933890343],[118,267,74,0.039653049084105586],[118,267,75,0.02957586028812935],[118,267,76,0.019805834892057308],[118,267,77,0.015639578405354675],[118,267,78,0.013210386638803261],[118,267,79,0.010868829225851143],[118,268,64,0.1481222089751962],[118,268,65,0.1371812197127515],[118,268,66,0.1261837004421303],[118,268,67,0.11508672388335404],[118,268,68,0.10390978351991977],[118,268,69,0.0927159386468908],[118,268,70,0.08156507070629217],[118,268,71,0.07051219061553284],[118,268,72,0.059606879653284164],[118,268,73,0.04889283358624862],[118,268,74,0.03840751060688807],[118,268,75,0.029098596398391432],[118,268,76,0.02622137529156812],[118,268,77,0.0234096302424404],[118,268,78,0.02067294235097447],[118,268,79,0.018014633216004848],[118,269,64,0.14487403146332456],[118,269,65,0.13578836196162944],[118,269,66,0.1251963865509162],[118,269,67,0.11417523559644907],[118,269,68,0.10305701389830074],[118,269,69,0.09189876445868615],[118,269,70,0.08075591617911111],[118,269,71,0.06968054663425982],[118,269,72,0.05872072470946469],[118,269,73,0.04791995053563333],[118,269,74,0.04092986941658991],[118,269,75,0.03775115140940272],[118,269,76,0.03459605138133733],[118,269,77,0.03148450806269737],[118,269,78,0.02843073910982297],[118,269,79,0.02544327647621167],[118,270,64,0.14013227139039636],[118,270,65,0.13097393484084588],[118,270,66,0.12197730977941545],[118,270,67,0.11320143229462021],[118,270,68,0.10232124243064436],[118,270,69,0.0912080856356681],[118,270,70,0.08008189145652504],[118,270,71,0.0689913090249397],[118,270,72,0.05798249143245446],[118,270,73,0.05353007474053179],[118,270,74,0.05012949243192754],[118,270,75,0.046695563761228326],[118,270,76,0.04325691096487207],[118,270,77,0.03983741866400783],[118,270,78,0.036456034287951945],[118,270,79,0.033126660318817724],[118,271,64,0.135123708536254],[118,271,65,0.12588513772800394],[118,271,66,0.1168230397214016],[118,271,67,0.10799924323356785],[118,271,68,0.09942087223011425],[118,271,69,0.09064295949669622],[118,271,70,0.07953924558863235],[118,271,71,0.07012885033585273],[118,271,72,0.06674313218011793],[118,271,73,0.0632178908736171],[118,271,74,0.059590935115994226],[118,271,75,0.05589725930685789],[118,271,76,0.05216853033970995],[118,271,77,0.04843265953946411],[118,271,78,0.044713460096174856],[118,271,79,0.04103039019971347],[118,272,64,0.12994417214741066],[118,272,65,0.12061837514495141],[118,272,66,0.1114839568039804],[118,272,67,0.10260485487540301],[118,272,68,0.09399400613956459],[118,272,69,0.08562619491112995],[118,272,70,0.08207315522785225],[118,272,71,0.08033155391306307],[118,272,72,0.0767973301888272],[118,272,73,0.07308684874467869],[118,272,74,0.06923842788787946],[118,272,75,0.06528885952526384],[118,272,76,0.06127276469653272],[118,272,77,0.05722202759389175],[118,272,78,0.05316530859409986],[118,272,79,0.049127636686923916],[118,273,64,0.12470286483484831],[118,273,65,0.11528373994192298],[118,273,66,0.10607036567095843],[118,273,67,0.09712801556246968],[118,273,68,0.08847520376121443],[118,273,69,0.08768846226375204],[118,273,70,0.08745499041615297],[118,273,71,0.08722269093438331],[118,273,72,0.08692668032901525],[118,273,73,0.08304419844622378],[118,273,74,0.07898777177754407],[118,273,75,0.07479575266406889],[118,273,76,0.07050548680730638],[118,273,77,0.0661526130482241],[118,273,78,0.061770435624750986],[118,273,79,0.057389369470056475],[118,274,64,0.11949695314181621],[118,274,65,0.10997960058240072],[118,274,66,0.10068127865370816],[118,274,67,0.09409756972285672],[118,274,68,0.09361651057364263],[118,274,69,0.09321676756247761],[118,274,70,0.09287971920834734],[118,274,71,0.09258188923205807],[118,274,72,0.09229606079875233],[118,274,73,0.09199232892421613],[118,274,74,0.08875757895568721],[118,274,75,0.08434449089622133],[118,274,76,0.0798020436199158],[118,274,77,0.07516927458630196],[118,274,78,0.07048377071183315],[118,274,79,0.06578097468040123],[118,275,64,0.11441212206695839],[118,275,65,0.10479309163185528],[118,275,66,0.10083813357268753],[118,275,67,0.10007310312214106],[118,275,68,0.09941760985572005],[118,275,69,0.09886748572683318],[118,275,70,0.09841041157795333],[118,275,71,0.09802762957002213],[118,275,72,0.09769513804028701],[118,275,73,0.09738483144703391],[118,275,74,0.09706558392558855],[118,275,75,0.09386323373964195],[118,275,76,0.08909776358667645],[118,275,77,0.08421519881707641],[118,275,78,0.07925691625902517],[118,275,79,0.07426288114686978],[118,276,64,0.10952299332354754],[118,276,65,0.10826503341634519],[118,276,66,0.10721047031097515],[118,276,67,0.10624862566654782],[118,276,68,0.10540919914871318],[118,276,69,0.10469557313974194],[118,276,70,0.10410158380520587],[118,276,71,0.10361318607695341],[118,276,72,0.10320971621037558],[118,276,73,0.1028651059435261],[118,276,74,0.1025490466804842],[118,276,75,0.10222810221988463],[118,276,76,0.0983286111233955],[118,276,77,0.09323260693379538],[118,276,78,0.08803889384544618],[118,276,79,0.08279133348307094],[118,277,64,0.11639313999144076],[118,277,65,0.11509222013376637],[118,277,66,0.1138304993099329],[118,277,67,0.11266728306565431],[118,277,68,0.1116357640360889],[118,277,69,0.1107464170643489],[118,277,70,0.10999896434459422],[118,277,71,0.10938397855602117],[118,277,72,0.10888419828520393],[118,277,73,0.1084758010331503],[118,277,74,0.10812963214595997],[118,277,75,0.10781238809716528],[118,277,76,0.1074319881555276],[118,277,77,0.102163608397072],[118,277,78,0.09677703732296325],[118,277,79,0.09131931159941932],[118,278,64,0.12371042276849806],[118,278,65,0.12219728532632024],[118,278,66,0.12072875821514596],[118,278,67,0.11936147784969828],[118,278,68,0.1180738276440782],[118,278,69,0.11684059422088366],[118,278,70,0.11613911452210665],[118,278,71,0.11537708924708515],[118,278,72,0.11475562732707191],[118,278,73,0.11425332140532046],[118,278,74,0.11384249104304049],[118,278,75,0.11349041847659358],[118,278,76,0.11316054237972681],[118,278,77,0.11095120137072696],[118,278,78,0.10541803233245312],[118,278,79,0.09979759615441297],[118,279,64,0.12937901138150268],[118,279,65,0.12507211762476678],[118,279,66,0.12156928966933295],[118,279,67,0.11887226981466703],[118,279,68,0.11696382665932104],[118,279,69,0.11580615328940669],[118,279,70,0.11533945778503657],[118,279,71,0.11548359479516257],[118,279,72,0.11613610189091256],[118,279,73,0.11717159104848635],[118,279,74,0.11848237408871526],[118,279,75,0.119290837278477],[118,279,76,0.11891269949895288],[118,279,77,0.11854286092205862],[118,279,78,0.1139091017819497],[118,279,79,0.10817597939349823],[118,280,64,0.12855069655060614],[118,280,65,0.12421162465610006],[118,280,66,0.12070228365402802],[118,280,67,0.11802414830464902],[118,280,68,0.11615892298780273],[118,280,69,0.11506684035421144],[118,280,70,0.11468514928318829],[118,280,71,0.11492966382473335],[118,280,72,0.11569268423836987],[118,280,73,0.11684274585011134],[118,280,74,0.1182695280419162],[118,280,75,0.11989247603305242],[118,280,76,0.12164488928400577],[118,280,77,0.12347196399028101],[118,280,78,0.12219933676965711],[118,280,79,0.11640462077212771],[118,281,64,0.12805464619315698],[118,281,65,0.12367926101065485],[118,281,66,0.12015752846812008],[118,281,67,0.11749080458742178],[118,281,68,0.11565992004308134],[118,281,69,0.11462337998678884],[118,281,70,0.11431574992753313],[118,281,71,0.11464912223538654],[118,281,72,0.11551092187001066],[118,281,73,0.11676398178970804],[118,281,74,0.11829547613396746],[118,281,75,0.12002431171888092],[118,281,76,0.12188310614111042],[118,281,77,0.12381619076562606],[118,281,78,0.1257779624366311],[118,281,79,0.12443554672106137],[118,282,64,0.12788852931456798],[118,282,65,0.12347322132766986],[118,282,66,0.11993361280857107],[118,282,67,0.1172710899165827],[118,282,68,0.11546580382838656],[118,282,69,0.11447477282337282],[118,282,70,0.11423016694490429],[118,282,71,0.11464069268713817],[118,282,72,0.11558928381678923],[118,282,73,0.11693347141564364],[118,282,74,0.1185580687223497],[118,282,75,0.12038144368888587],[118,282,76,0.12233553424891458],[118,282,77,0.12436380753695833],[118,282,78,0.1264195830018089],[118,282,79,0.128464499290867],[118,283,64,0.12804846271186868],[118,283,65,0.12359019033650931],[118,283,66,0.12002767089614635],[118,283,67,0.11736246834764469],[118,283,68,0.11557425067043564],[118,283,69,0.11461879567594618],[118,283,70,0.11442617569488922],[118,283,71,0.11490206146392634],[118,283,72,0.11592529885218505],[118,283,73,0.11734854078993462],[118,283,74,0.11905440001131934],[118,283,75,0.12096071571837846],[118,283,76,0.12299875869741347],[118,283,77,0.1251111426337564],[118,283,78,0.1272501126837915],[118,283,79,0.12937597252655028],[118,284,64,0.1285285831196888],[118,284,65,0.12402490456034013],[118,284,66,0.12043493445861625],[118,284,67,0.11776055979206368],[118,284,68,0.1159811621841661],[118,284,69,0.11505152927146323],[118,284,70,0.11489994104387868],[118,284,71,0.1154293943316188],[118,284,72,0.11651506665720374],[118,284,73,0.11800517672161248],[118,284,74,0.11978031207085615],[118,284,75,0.12175780379980539],[118,284,76,0.12386827834031203],[118,284,77,0.12605351689764455],[118,284,78,0.12826470366761886],[118,284,79,0.1304608070432427],[118,285,64,0.1293208971142955],[118,285,65,0.12476999251678761],[118,285,66,0.12114856385971312],[118,285,67,0.118458962781408],[118,285,68,0.11668048043507512],[118,285,69,0.1157671666085261],[118,285,70,0.11564581971934218],[118,285,71,0.11621713368022696],[118,285,72,0.11735305050254197],[118,285,73,0.11889781566776025],[118,285,74,0.12073018056906257],[118,285,75,0.1227669992640685],[118,285,76,0.12493828680198263],[118,285,77,0.12718502300194354],[118,285,78,0.12945735467748404],[118,285,79,0.1317129251765325],[118,286,64,0.13041535491758913],[118,286,65,0.12581603953395915],[118,286,66,0.12215970447691682],[118,286,67,0.11944930303597928],[118,286,68,0.11766422938950716],[118,286,69,0.1167580480208244],[118,286,70,0.11665638973374348],[118,286,71,0.1172580230427685],[118,286,72,0.11843209755124495],[118,286,73,0.12001936042910633],[118,286,74,0.12189692838569585],[118,286,75,0.12398121975982807],[118,286,76,0.12620168119015424],[118,286,77,0.1284985321791094],[118,286,78,0.13082091590493772],[118,286,79,0.13312517150758346],[118,287,64,0.13179995395195385],[118,287,65,0.1271516829527794],[118,287,66,0.12345757404704541],[118,287,67,0.1207213135271889],[118,287,68,0.11892258832879443],[118,287,69,0.11801472861974743],[118,287,70,0.11792251255075786],[118,287,71,0.11854316467158249],[118,287,72,0.1197434924919597],[118,287,73,0.12136123041369928],[118,287,74,0.123272072990226],[118,287,75,0.12539205414219373],[118,287,76,0.12765010480298528],[118,287,77,0.12998573496169172],[118,287,78,0.13234712790014297],[118,287,79,0.1346893499118733],[118,288,64,0.13346087212015226],[118,288,65,0.12876373768981764],[118,288,66,0.12502958095382155],[118,288,67,0.12226294600785875],[118,288,68,0.12044399720141882],[118,288,69,0.11952607809033727],[118,288,70,0.11943342796795775],[118,288,71,0.12006211014626991],[118,288,72,0.12127704447696341],[118,288,73,0.12291344544285318],[118,288,74,0.1248458075586214],[118,288,75,0.1269898412450312],[118,288,76,0.12927402380478187],[118,288,77,0.1316372159111136],[118,288,78,0.13402669440053955],[118,288,79,0.136396294423821],[118,289,64,0.13538263081041219],[118,289,65,0.13063735216075362],[118,289,66,0.12686147345756815],[118,289,67,0.12406051401059684],[118,289,68,0.12221529391334385],[118,289,69,0.12127941284073304],[118,289,70,0.12117688171612095],[118,289,71,0.12180298401340892],[118,289,72,0.12302120736511471],[118,289,73,0.12466474309950884],[118,289,74,0.12660711582901057],[118,289,75,0.1287637825370296],[118,289,76,0.13106283787050416],[118,289,77,0.13344256233441593],[118,289,78,0.13584938909705774],[118,289,79,0.13823597391744238],[118,290,64,0.13754828762659543],[118,290,65,0.132756194564373],[118,290,66,0.12893751986691654],[118,290,67,0.12609886731413453],[118,290,68,0.12422188355640462],[118,290,69,0.12326066050499251],[118,290,70,0.12313928577504377],[118,290,71,0.12375264045793088],[118,290,72,0.12496323326961453],[118,290,73,0.12660272961890023],[118,290,74,0.12854392069610676],[118,290,75,0.13070208866141853],[118,290,76,0.13300502479895196],[118,290,77,0.13539050698885813],[118,290,78,0.13780419633777433],[118,290,79,0.140197630602927],[118,291,64,0.1399396588434364],[118,291,65,0.1351026695270801],[118,291,66,0.1312407196525195],[118,291,67,0.12836159787761536],[118,291,68,0.1264479395747447],[118,291,69,0.12545455679928175],[118,291,70,0.12530591140585132],[118,291,71,0.1258968530061463],[118,291,72,0.1270893594105658],[118,291,73,0.12871406432151322],[118,291,74,0.13064326654438319],[118,291,75,0.1327921598593212],[118,291,76,0.13508831909461372],[118,291,77,0.13746910477435786],[118,291,78,0.13987948576899464],[118,291,79,0.1422699523391177],[118,292,64,0.1425375715869609],[118,292,65,0.1376581651080382],[118,292,66,0.13375304550287886],[118,292,67,0.1308312772429458],[118,292,68,0.12887663686941214],[118,292,69,0.12784487473154219],[118,292,70,0.127661114899916],[118,292,71,0.12822053726053534],[118,292,72,0.12938502827244608],[118,292,73,0.13098467758845167],[118,292,74,0.13289153532011483],[118,292,75,0.1350208002768604],[118,292,76,0.13729992451829828],[118,292,77,0.13966594341389119],[118,292,78,0.14206322091387963],[118,292,79,0.1444412787620169],[118,293,64,0.14532214573998414],[118,293,65,0.14040333016483492],[118,293,66,0.1364557163221844],[118,293,67,0.13348972540510423],[118,293,68,0.13149041684100887],[118,293,69,0.13041468616453386],[118,293,70,0.1301885960442788],[118,293,71,0.1307080066661932],[118,293,72,0.13183514106638425],[118,293,73,0.13340002237910273],[118,293,74,0.13527469634217715],[118,293,75,0.13737446615590782],[118,293,76,0.13962676060643747],[118,293,77,0.14196838812173845],[118,293,78,0.14434320168850676],[118,293,79,0.14669984122920246],[118,294,64,0.14827310557267787],[118,294,65,0.14331838207966602],[118,294,66,0.139329501170156],[118,294,67,0.13631831115040144],[118,294,68,0.13427128437038813],[118,294,69,0.1331466557322435],[118,294,70,0.13287168930356658],[118,294,71,0.13334326130892785],[118,294,72,0.13442434449723714],[118,294,73,0.1359453592910949],[118,294,74,0.13777858985159705],[118,294,75,0.1398395479084704],[118,294,76,0.14205574315905412],[118,294,77,0.14436386025957396],[118,294,78,0.14670734085535808],[118,294,79,0.1490340365801509],[118,295,64,0.15137012109834003],[118,295,65,0.14638344484616744],[118,295,66,0.14235505414402355],[118,295,67,0.1392982838628261],[118,295,68,0.13720113673753223],[118,295,69,0.13602336710979637],[118,295,70,0.13569368771854126],[118,295,71,0.13611030974514238],[118,295,72,0.13713735083560105],[118,295,73,0.13860607516268686],[118,295,74,0.1403892442999923],[118,295,75,0.14240268607485293],[118,295,76,0.1445740986965358],[118,295,77,0.14684014998053657],[118,295,78,0.14914397441437763],[118,295,79,0.1514327347126086],[118,296,64,0.15459317915417004],[118,296,65,0.14957891751670027],[118,296,66,0.14551328020244325],[118,296,67,0.142411136798273],[118,296,68,0.14026212447841013],[118,296,69,0.13902768163666496],[118,296,70,0.1386381995210753],[118,296,71,0.13899352386329908],[118,296,72,0.13995929129455223],[118,296,73,0.14136803521737829],[118,296,74,0.14309322737669194],[118,296,75,0.1450511211653855],[118,296,76,0.14716971288500053],[118,296,77,0.14938576286106894],[118,296,78,0.15164220593138233],[118,296,79,0.15388561997479394],[118,297,64,0.15792298420726147],[118,297,65,0.1528858730103011],[118,297,66,0.14878573193156783],[118,297,67,0.14563900182687434],[118,297,68,0.14343704418003264],[118,297,69,0.14214312929339834],[118,297,70,0.14168953746577712],[118,297,71,0.14197802677718677],[118,297,72,0.1428761027113406],[118,297,73,0.14421796875096915],[118,297,74,0.1458780307747634],[118,297,75,0.14777307738594592],[118,297,76,0.1498315129304878],[118,297,77,0.15199030052075937],[118,297,78,0.15419228480406155],[118,297,79,0.156383566373668],[118,298,64,0.16134138888560973],[118,298,65,0.15628648728109426],[118,298,66,0.15215503725306323],[118,298,67,0.14896507564322303],[118,298,68,0.14670976321349777],[118,298,69,0.14535433203165884],[118,298,70,0.14483314087805227],[118,298,71,0.1450501137507796],[118,298,72,0.14587494753382194],[118,298,73,0.14714388836085157],[118,298,74,0.14873248869573114],[118,298,75,0.15055818024705744],[118,298,76,0.15254988394175126],[118,298,77,0.1546448752299607],[118,298,78,0.15678601846534013],[118,298,79,0.15891904659904726],[118,299,64,0.1648318542342738],[118,299,65,0.15976449884730523],[118,299,66,0.15560535807421466],[118,299,67,0.15237407744463388],[118,299,68,0.15006567640516771],[118,299,69,0.14864745945771307],[118,299,70,0.14805603041874882],[118,299,71,0.1481977061548325],[118,299,72,0.14894466711177745],[118,299,73,0.1501355427176828],[118,299,74,0.15164723009313447],[118,299,75,0.15339790805671377],[118,299,76,0.15531711926180902],[118,299,77,0.15734255850534393],[118,299,78,0.15941721852426188],[118,299,79,0.16148657486371415],[118,300,64,0.16837993969668488],[118,300,65,0.16330569868086808],[118,300,66,0.15912287988011234],[118,300,67,0.15585273807743213],[118,300,68,0.15349219464597072],[118,300,69,0.15201071686936618],[118,300,70,0.15134729556537518],[118,300,71,0.1514108384552053],[118,300,72,0.15207626829310947],[118,300,73,0.15318490287942965],[118,300,74,0.1546151646549156],[118,300,75,0.15628607729691876],[118,300,76,0.15812790476823585],[118,300,77,0.16007886369337096],[118,300,78,0.1620821808443786],[118,300,79,0.16408318355951307],[118,301,64,0.1719738228209846],[118,301,65,0.16689845045750978],[118,301,66,0.1626963322677999],[118,301,67,0.15939032065115077],[118,301,68,0.15697926543870688],[118,301,69,0.15543486564622072],[118,301,70,0.15469861480977065],[118,301,71,0.15468217823279276],[118,301,72,0.15526344332479133],[118,301,73,0.1562866821476604],[118,301,74,0.1576320025245136],[118,301,75,0.15921936188381863],[118,301,76,0.1609798371420775],[118,301,77,0.162852262541564],[118,301,78,0.16478019955952083],[118,301,79,0.1667089337293065],[118,302,64,0.17560484869152765],[118,302,65,0.1705342411674466],[118,302,66,0.1663175404225228],[118,302,67,0.16297917262077613],[118,302,68,0.16051992538349963],[118,302,69,0.15891377599340173],[118,302,70,0.1581048085723723],[118,302,71,0.1580075792352053],[118,302,72,0.15850312305871803],[118,302,73,0.1594388894662326],[118,302,74,0.16069680776081346],[118,302,75,0.16219784631157502],[118,302,76,0.1638739761055334],[118,302,77,0.16566473575772228],[118,302,78,0.16751411502710362],[118,302,79,0.16936745935494416],[118,303,64,0.17926810908551555],[118,303,65,0.174208262086658],[118,303,66,0.16998200753603912],[118,303,67,0.1666153093370034],[118,303,68,0.16411088460135098],[118,303,69,0.16244501203870493],[118,303,70,0.1615644248330337],[118,303,71,0.16138666746015642],[118,303,72,0.16179606346241088],[118,303,73,0.16264341636232876],[118,303,74,0.16381258553689962],[118,303,75,0.1652256126799294],[118,303,76,0.16681543062835968],[118,303,77,0.16852235755703324],[118,303,78,0.1702908957189111],[118,303,79,0.17206654546119007],[118,304,64,0.18296305135466262],[118,304,65,0.17792002010864086],[118,304,66,0.1736895281668982],[118,304,67,0.1702990290644071],[118,304,68,0.16775314309571002],[118,304,69,0.1660304492830784],[118,304,70,0.1650803574783069],[118,304,71,0.16482346027046674],[118,304,72,0.16514746543448888],[118,304,73,0.16590665742975363],[118,304,74,0.1669869030775321],[118,304,75,0.1683113616053748],[118,304,76,0.16981397910290796],[118,304,77,0.171435914196998],[118,304,78,0.17312225404928253],[118,304,79,0.17481874003552972],[118,305,64,0.18669411703203426],[118,305,65,0.18167397943678276],[118,305,66,0.17744483254282456],[118,305,67,0.17403555946766366],[118,305,68,0.17145263905218747],[118,305,69,0.16967692440457116],[118,305,70,0.16866049736531885],[118,305,71,0.16832701854081863],[118,305,72,0.16856762792503802],[118,305,73,0.16924016435462236],[118,305,74,0.1702325443354708],[118,305,75,0.17146906701606243],[118,305,76,0.1728847234879277],[118,305,77,0.17442155650029567],[118,305,78,0.17602529614082243],[118,305,79,0.17764199976398007],[118,306,64,0.19047141016402608],[118,306,65,0.18548023363732338],[118,306,66,0.18125826180517557],[118,306,67,0.17783573556579585],[118,306,68,0.17522092907639028],[118,306,69,0.17339691741572097],[118,306,70,0.1723184161022177],[118,306,71,0.1719121318362325],[118,306,72,0.17207263436085152],[118,306,73,0.17266133348341575],[118,306,74,0.17356819840662469],[118,306,75,0.17471866483041915],[118,306,76,0.17604877742110744],[118,306,77,0.17750148636556337],[118,306,78,0.17902320552761308],[118,306,79,0.18056036958287963],[118,307,64,0.19431000833840992],[118,307,65,0.18935383997586727],[118,307,66,0.18514511809723366],[118,307,67,0.18171535816394616],[118,307,68,0.1790745479449233],[118,307,69,0.17720790635477693],[118,307,70,0.17607271023339707],[118,307,71,0.17559864789257215],[118,307,72,0.17568366481266978],[118,307,73,0.17619270000281362],[118,307,74,0.17701773695742468],[118,307,75,0.17808531639902775],[118,307,76,0.1793325196294627],[118,307,77,0.1807032049733019],[118,307,78,0.1821444915715643],[118,307,79,0.1836032370510069],[118,308,64,0.198202291005815],[118,308,65,0.19328751036388564],[118,308,66,0.18909857935851482],[118,308,67,0.18566819582697647],[118,308,68,0.18300796769057656],[118,308,69,0.18110516502949686],[118,308,70,0.17991953635869157],[118,308,71,0.17938366711317633],[118,308,72,0.17939880185176627],[118,308,73,0.1798333444113174],[118,308,74,0.18058125209055115],[118,308,75,0.1815701446071796],[118,308,76,0.18273812360346872],[118,308,77,0.184029952921347],[118,308,78,0.185393472192845],[118,308,79,0.186775999345143],[118,309,64,0.20211605510868544],[118,309,65,0.1972496421807873],[118,309,66,0.1930876510142313],[118,309,67,0.18966386321989948],[118,309,68,0.1869914082584293],[118,309,69,0.1850595112718556],[118,309,70,0.18383030158845598],[118,309,71,0.1832391788072532],[118,309,72,0.18319061475809312],[118,309,73,0.1835564250580098],[118,309,74,0.1842325355057875],[118,309,75,0.18514765648154488],[118,309,76,0.18624091977720253],[118,309,77,0.18745800806856155],[118,309,78,0.18874750397939677],[118,309,79,0.1900572231970755],[118,310,64,0.20601919220127285],[118,310,65,0.20120861787908503],[118,310,66,0.1970812173211081],[118,310,67,0.1936717516427715],[118,310,68,0.19099476864689585],[118,310,69,0.18904134934844985],[118,310,70,0.18777591189296552],[118,310,71,0.18713658837855796],[118,310,72,0.18703101034834735],[118,310,73,0.18733436237430853],[118,310,74,0.18794456660137254],[118,310,75,0.188791471584265],[118,310,76,0.18981527401852544],[118,310,77,0.19096260407623641],[118,310,78,0.19218281701581472],[118,310,79,0.19342426403816626],[118,311,64,0.20988090313019264],[118,311,65,0.20513401200284287],[118,311,66,0.20104924474809416],[118,311,67,0.19766223275510522],[118,311,68,0.19498883477412463],[118,311,69,0.19302188542571214],[118,311,70,0.19172799810464236],[118,311,71,0.19104795608731784],[118,311,72,0.19089248578735873],[118,311,73,0.19114010583942548],[118,311,74,0.19169079225400842],[118,311,75,0.1924756119587511],[118,311,76,0.19343588405641665],[118,311,77,0.19451922884784392],[118,311,78,0.19567581030852765],[118,311,79,0.19685455302901606],[118,312,64,0.2136719124615701],[118,312,65,0.2089968058081052],[118,312,66,0.20496299558237907],[118,312,67,0.20160687000759023],[118,312,68,0.1989454876553392],[118,312,69,0.1969733315267409],[118,312,70,0.19565911483843726],[118,312,71,0.1949461903067167],[118,312,72,0.1947483157820066],[118,312,73,0.19494731497220213],[118,312,74,0.19544530164677726],[118,312,75,0.19617467093415022],[118,312,76,0.1970779424779458],[118,312,77,0.19810378198590933],[118,312,78,0.19920320399925656],[118,312,79,0.20032574433492137],[118,313,64,0.21736504613725482],[118,313,65,0.21276984078646033],[118,313,66,0.20879535731612842],[118,313,67,0.20547862424972863],[118,313,68,0.2028377859765338],[118,313,69,0.20086886623025657],[118,313,70,0.1995425809169433],[118,313,71,0.19880476974542952],[118,313,72,0.19857215917243298],[118,313,73,0.19872985338182775],[118,313,74,0.19918221130358707],[118,313,75,0.1998630930167552],[118,313,76,0.20071631565804668],[118,313,77,0.2016916572107382],[118,313,78,0.202741029954574],[118,313,79,0.2014291452887176],[118,314,64,0.22093499665526856],[118,314,65,0.2164276053671136],[118,314,66,0.21252064959337053],[118,314,67,0.20925167962912863],[118,314,68,0.20663980966965392],[118,314,69,0.2046824946948572],[118,314,70,0.2033523547027245],[118,314,71,0.20259763307116122],[118,314,72,0.20233796199457726],[118,314,73,0.2024617046142833],[118,314,74,0.20287559319656473],[118,314,75,0.20351511380212972],[118,314,76,0.20432549506211614],[118,314,77,0.20525770465944596],[118,314,78,0.2040421222648055],[118,314,79,0.1973947568663361],[118,315,64,0.2243579410170498],[118,315,65,0.21994597895270201],[118,315,66,0.2161144920418389],[118,315,67,0.21290143263930233],[118,315,68,0.2103267673448404],[118,315,69,0.2083892714320798],[118,315,70,0.2070633689989308],[118,315,71,0.20629962260149884],[118,315,72,0.2060205065484923],[118,315,73,0.20611762315215654],[118,315,74,0.20650022415092317],[118,315,75,0.207105604127884],[118,315,76,0.2078805323459783],[118,315,77,0.2068943585833494],[118,315,78,0.19980793346079329],[118,315,79,0.19311691419567978],[118,316,64,0.22761172502578828],[118,316,65,0.22330242865952313],[118,316,66,0.2195540122065622],[118,316,67,0.21640470999745923],[118,316,68,0.21387522289303681],[118,316,69,0.21196553447684804],[118,316,70,0.21065177172786193],[118,316,71,0.2098867305650953],[118,316,72,0.20959566248993708],[118,316,73,0.2096733897903639],[118,316,74,0.21003184511373377],[118,316,75,0.21061033294173423],[118,316,76,0.20984421160295746],[118,316,77,0.20240979165556502],[118,316,78,0.1953075242935521],[118,316,79,0.18861252555896066],[118,317,64,0.2306760678054413],[118,317,65,0.2264762222979731],[118,317,66,0.22281806579852542],[118,317,67,0.21973999497352115],[118,317,68,0.21726332674248613],[118,317,69,0.2153891404854563],[118,317,70,0.21409516388535807],[118,317,71,0.2133363390644389],[118,317,72,0.21304062812873523],[118,317,73,0.21310605380513298],[118,317,74,0.21344740389267425],[118,317,75,0.21272086201852228],[118,317,76,0.2050444720934009],[118,317,77,0.19762568235777025],[118,317,78,0.1905496111028464],[118,317,79,0.18389075707298896],[118,318,64,0.23353276845875473],[118,318,65,0.2294486437732607],[118,318,66,0.22588745966101356],[118,318,67,0.22288765674540154],[118,318,68,0.22047105045575943],[118,318,69,0.21863970348801404],[118,318,70,0.21737284145668553],[118,318,71,0.21662746429317334],[118,318,72,0.2163341762531399],[118,318,73,0.21639417989154733],[118,318,74,0.2153397287864294],[118,318,75,0.20753431541642597],[118,318,76,0.1999048958136292],[118,318,77,0.19254357170291023],[118,318,78,0.18553445594114368],[118,318,79,0.17895074473517145],[118,319,64,0.23616591486428926],[118,319,65,0.2322032109063944],[118,319,66,0.22874517745363468],[118,319,67,0.2258301827805469],[118,319,68,0.22348042466731025],[118,319,69,0.22169883729534295],[118,319,70,0.22046604129390904],[118,319,71,0.21974100500795793],[118,319,72,0.21945690448019298],[118,319,73,0.21751888210802953],[118,319,74,0.20969584418979612],[118,319,75,0.20196476684810905],[118,319,76,0.19442121970562984],[118,319,77,0.1871559718337957],[118,319,78,0.18025149697235238],[118,319,79,0.17377907757205854],[119,-64,64,0.34273560305876694],[119,-64,65,0.3486489857947219],[119,-64,66,0.3546693564367911],[119,-64,67,0.3607782670321061],[119,-64,68,0.36698131062761835],[119,-64,69,0.373297873436026],[119,-64,70,0.3797405554202789],[119,-64,71,0.38631482423210683],[119,-64,72,0.39301918949918996],[119,-64,73,0.39984544721715054],[119,-64,74,0.40677899555856695],[119,-64,75,0.4137992232804802],[119,-64,76,0.4208799717761773],[119,-64,77,0.4279900716775624],[119,-64,78,0.4350939547718743],[119,-64,79,0.4421523418527449],[119,-63,64,0.3446985182205719],[119,-63,65,0.3507183871608642],[119,-63,66,0.35685027704135264],[119,-63,67,0.36307651693339743],[119,-63,68,0.3694021231577119],[119,-63,69,0.37584481080501897],[119,-63,70,0.3824153900418056],[119,-63,71,0.38911750348946256],[119,-63,72,0.3959478581228436],[119,-63,73,0.4028965223161274],[119,-63,74,0.4099472891548653],[119,-63,75,0.4170781070066689],[119,-63,76,0.4242615782127763],[119,-63,77,0.43146552662983867],[119,-63,78,0.4386536346163471],[119,-63,79,0.4457861499229432],[119,-62,64,0.3468331458534715],[119,-62,65,0.35294757627887224],[119,-62,66,0.3591774723863338],[119,-62,67,0.3655062697910891],[119,-62,68,0.37193835593569785],[119,-62,69,0.3784895185422231],[119,-62,70,0.3851686659140952],[119,-62,71,0.3919776340553884],[119,-62,72,0.3989114552706791],[119,-62,73,0.40595868784452616],[119,-62,74,0.41310180777065975],[119,-62,75,0.42031766337922155],[119,-62,76,0.4275779935857106],[119,-62,77,0.43485001035871695],[119,-62,78,0.442097045875696],[119,-62,79,0.44927926470862684],[119,-61,64,0.3491247493964759],[119,-61,65,0.3553217243990486],[119,-61,66,0.3616359821080934],[119,-61,67,0.3680523535542371],[119,-61,68,0.37457456438383524],[119,-61,69,0.3812162737678336],[119,-61,70,0.3879844211256407],[119,-61,71,0.39487908926618664],[119,-61,72,0.40189378975423423],[119,-61,73,0.4090158061500436],[119,-61,74,0.41622659598530143],[119,-61,75,0.4235022522214231],[119,-61,76,0.43081402481712416],[119,-61,77,0.4381289029115973],[119,-61,78,0.4454102580082789],[119,-61,79,0.4526185484236898],[119,-60,64,0.35155522899384195],[119,-60,65,0.3578229136144725],[119,-60,66,0.36420808175508107],[119,-60,67,0.37069719584702177],[119,-60,68,0.37729330134285993],[119,-60,69,0.3840077820417688],[119,-60,70,0.39084558253916823],[119,-60,71,0.39780511418925735],[119,-60,72,0.4048785389472968],[119,-60,73,0.4120521086689733],[119,-60,74,0.4193065606598093],[119,-60,75,0.42661757015585755],[119,-60,76,0.4339562603030876],[119,-60,77,0.44128977008795056],[119,-60,78,0.44858188055611403],[119,-60,79,0.4557936995419373],[119,-59,64,0.35410405385553995],[119,-59,65,0.360431096565023],[119,-59,66,0.36687427162512415],[119,-59,67,0.37342184327425637],[119,-59,68,0.3800761657284938],[119,-59,69,0.3868462506692702],[119,-59,70,0.3937350559006609],[119,-59,71,0.4007394220383859],[119,-59,72,0.40785033886273003],[119,-59,73,0.4150532653817742],[119,-59,74,0.4223285043592783],[119,-59,75,0.4296516319549964],[119,-59,76,0.43699398301661563],[119,-59,77,0.44432319245286755],[119,-59,78,0.4516037930071847],[119,-59,79,0.45879786964214264],[119,-58,64,0.3567493722020766],[119,-58,65,0.3631252334789277],[119,-58,66,0.36961444205196275],[119,-58,67,0.37620715565729884],[119,-58,68,0.3829050237143272],[119,-58,69,0.38971463085130037],[119,-58,70,0.39663697953870214],[119,-58,71,0.4036674471520045],[119,-58,72,0.4107960218803383],[119,-58,73,0.41800759109226726],[119,-58,74,0.4252822828983136],[119,-58,75,0.43259586154856744],[119,-58,76,0.43992017720026094],[119,-58,77,0.4472236704855624],[119,-58,78,0.45447193220455534],[119,-58,79,0.46162831836394735],[119,-57,64,0.35946929852968434],[119,-57,65,0.3658846062714102],[119,-57,66,0.3724092148618707],[119,-57,67,0.37903517493913746],[119,-57,68,0.3857634022126714],[119,-57,69,0.39259802849752456],[119,-57,70,0.39953814153029993],[119,-57,71,0.4065777544802063],[119,-57,72,0.41370600215164094],[119,-57,73,0.4209073886462058],[119,-57,74,0.42816208722420024],[119,-57,75,0.43544629300969967],[119,-57,76,0.4427326290850296],[119,-57,77,0.4499906064207461],[119,-57,78,0.4571871379866358],[119,-57,79,0.46428710728923345],[119,-56,64,0.36223982388249326],[119,-56,65,0.3686863998713397],[119,-56,66,0.3752371895715408],[119,-56,67,0.38188603336642385],[119,-56,68,0.3886330577978971],[119,-56,69,0.39547993591023467],[119,-56,70,0.40242388189303535],[119,-56,71,0.4094576275299755],[119,-56,72,0.41656957314533133],[119,-56,73,0.423743989023866],[119,-56,74,0.43096126805115725],[119,-56,75,0.43819823023108306],[119,-56,76,0.44542847964422083],[119,-56,77,0.45262281431625223],[119,-56,78,0.4597496893696124],[119,-56,79,0.4667757337360208],[119,-55,64,0.3650142207614571],[119,-55,65,0.3714828659784226],[119,-55,66,0.37804981711595625],[119,-55,67,0.384710518290554],[119,-55,68,0.391464246686326],[119,-55,69,0.3983102706573661],[119,-55,70,0.40524402499723927],[119,-55,71,0.41225708653872745],[119,-55,72,0.4193372738300017],[119,-55,73,0.42646879646293184],[119,-55,74,0.4336324548173265],[119,-55,75,0.4408058909000897],[119,-55,76,0.44796389087053184],[119,-55,77,0.4550787397532676],[119,-55,78,0.4621206287487842],[119,-55,79,0.4690581154602599],[119,-54,64,0.3677402482685294],[119,-54,65,0.3742200294962752],[119,-54,66,0.38079160801232925],[119,-54,67,0.38745178370186756],[119,-54,68,0.3941989324648189],[119,-54,69,0.4010300443108849],[119,-54,70,0.40793893804844755],[119,-54,71,0.41491622446688436],[119,-54,72,0.42194934678367885],[119,-54,73,0.4290226703890321],[119,-54,74,0.43611762268490195],[119,-54,75,0.4432128837356868],[119,-54,76,0.45028462836464944],[119,-54,77,0.45730682024458796],[119,-54,78,0.46425155844363136],[119,-54,79,0.4710894767987946],[119,-53,64,0.3703725922900225],[119,-53,65,0.37685129368982095],[119,-53,66,0.38341491480464374],[119,-53,67,0.39006131417415635],[119,-53,68,0.39678792273222463],[119,-53,69,0.4035896382239612],[119,-53,70,0.4104588818120557],[119,-53,71,0.41738553443923493],[119,-53,72,0.4243569087948906],[119,-53,73,0.43135777093758354],[119,-53,74,0.4383704124244539],[119,-53,75,0.44537477372308515],[119,-53,76,0.4523486196019378],[119,-53,77,0.4592677671129726],[119,-53,78,0.4661063666949843],[119,-53,79,0.47283723683988665],[119,-52,64,0.3728731274768211],[119,-52,65,0.37933767408741165],[119,-52,66,0.38588013498593565],[119,-52,67,0.39249909422005175],[119,-52,68,0.3991910026321681],[119,-52,69,0.40594889951030994],[119,-52,70,0.4127640680292433],[119,-52,71,0.41962592845102603],[119,-52,72,0.42652193166794194],[119,-52,73,0.4334375036669486],[119,-52,74,0.4403560418443182],[119,-52,75,0.4472589640267393],[119,-52,76,0.45412581097806093],[119,-52,77,0.4609344030900039],[119,-52,78,0.4676610518710439],[119,-52,79,0.4742808267616441],[119,-51,64,0.3752112346647479],[119,-51,65,0.38164808195276106],[119,-51,66,0.38815595734803554],[119,-51,67,0.3947338145107759],[119,-51,68,0.40137709826072515],[119,-51,69,0.4080772596238596],[119,-51,70,0.4148247320492766],[119,-51,71,0.4216087639934148],[119,-51,72,0.42841722394411225],[119,-51,73,0.43523645868518135],[119,-51,74,0.44205120583231877],[119,-51,75,0.44884456160033237],[119,-51,76,0.45559800468529826],[119,-51,77,0.4622914770643037],[119,-51,78,0.46890352243039296],[119,-51,79,0.47541148289262686],[119,-50,64,0.37691966559916706],[119,-50,65,0.38375972142710263],[119,-50,66,0.3902197215838465],[119,-50,67,0.3967431905443991],[119,-50,68,0.40332455125778216],[119,-50,69,0.409953962413949],[119,-50,70,0.41662131280925047],[119,-50,71,0.4233159755059064],[119,-50,72,0.430026514568773],[119,-50,73,0.4367404485169897],[119,-50,74,0.4434440716474236],[119,-50,75,0.45012233431583365],[119,-50,76,0.45675878318415125],[119,-50,77,0.46333556235920387],[119,-50,78,0.4698334762601737],[119,-50,79,0.4762321149605018],[119,-49,64,0.377140001008854],[119,-49,65,0.3842262043023903],[119,-49,66,0.39136696096639045],[119,-49,67,0.39851143066838307],[119,-49,68,0.40501919997890656],[119,-49,69,0.41156678100213917],[119,-49,70,0.41814381619661406],[119,-49,71,0.4247400821515563],[119,-49,72,0.43134508977610997],[119,-49,73,0.43794774581518725],[119,-49,74,0.44453607699534436],[119,-49,75,0.45109701803103536],[119,-49,76,0.4576162646409581],[119,-49,77,0.46407819263694544],[119,-49,78,0.47046584405468256],[119,-49,79,0.4767609811978768],[119,-48,64,0.37744405447890067],[119,-48,65,0.3845566710517913],[119,-48,66,0.39173224317483424],[119,-48,67,0.39895478599476963],[119,-48,68,0.40621199697738647],[119,-48,69,0.41290642039105835],[119,-48,70,0.41938786428936287],[119,-48,71,0.4258818563389041],[119,-48,72,0.4323790181056991],[119,-48,73,0.4388697678236683],[119,-48,74,0.4453439452677776],[119,-48,75,0.451790506194318],[119,-48,76,0.45819728764536943],[119,-48,77,0.4645508453214086],[119,-48,78,0.47083636412602276],[119,-48,79,0.47703764288129663],[119,-47,64,0.3778467901592745],[119,-47,65,0.3849806001840124],[119,-47,66,0.3921843029721941],[119,-47,67,0.3994432398553803],[119,-47,68,0.40674645147198846],[119,-47,69,0.4139693037045395],[119,-47,70,0.4203546748995225],[119,-47,71,0.42674746366485944],[119,-47,72,0.4331394739466531],[119,-47,73,0.43952266311312743],[119,-47,74,0.4458886693739861],[119,-47,75,0.45222841485836673],[119,-47,76,0.4585317857915557],[119,-47,77,0.4647873911105319],[119,-47,78,0.4709824007505075],[119,-47,79,0.47710246472043744],[119,-46,64,0.3783541177702553],[119,-46,65,0.38550126784155947],[119,-46,66,0.3927234986842034],[119,-46,67,0.4000078430959452],[119,-46,68,0.4073447832321115],[119,-46,69,0.41472546995933396],[119,-46,70,0.42105095905840006],[119,-46,71,0.4273476135506843],[119,-46,72,0.43364116004404185],[119,-46,73,0.4399250403099387],[119,-46,74,0.4461925957908564],[119,-46,75,0.45243658444453316],[119,-46,76,0.4586487809175601],[119,-46,77,0.4648196615114232],[119,-46,78,0.4709381752876898],[119,-46,79,0.4769916025356004],[119,-45,64,0.378963834789166],[119,-45,65,0.38611424194358823],[119,-45,66,0.3933429827082832],[119,-45,67,0.4006391259938442],[119,-45,68,0.4079947108367926],[119,-45,69,0.4152815701085078],[119,-45,70,0.42148822892790583],[119,-45,71,0.4276969337744257],[119,-45,72,0.43390175577577306],[119,-45,73,0.44009749654286784],[119,-45,74,0.44627903876059966],[119,-45,75,0.45244078431177465],[119,-45,76,0.45857618161696473],[119,-45,77,0.46467734375741415],[119,-45,78,0.4707347588232343],[119,-45,79,0.4767370937965097],[119,-44,64,0.3796665512552111],[119,-44,65,0.38680828923545973],[119,-44,66,0.394029582652937],[119,-44,67,0.40132185214861793],[119,-44,68,0.40867882107305553],[119,-44,69,0.41555263204876075],[119,-44,70,0.42168211442520265],[119,-44,71,0.42781335208034393],[119,-44,72,0.4339413708518043],[119,-44,73,0.440062149677326],[119,-44,74,0.4461718966950812],[119,-44,75,0.45226641803469936],[119,-44,76,0.4583405810702533],[119,-44,77,0.4643878737833187],[119,-44,78,0.47040006175120014],[119,-44,79,0.4763669441342158],[119,-43,64,0.38044659989225854],[119,-43,65,0.38756626852355086],[119,-43,66,0.3947646695168946],[119,-43,67,0.40203585398166114],[119,-43,68,0.4093753642946364],[119,-43,69,0.4155888221848953],[119,-43,70,0.42165168655541435],[119,-43,71,0.4277174830366557],[119,-43,72,0.43378200279742535],[119,-43,73,0.4398421729008662],[119,-43,74,0.44589526956144837],[119,-43,75,0.4519382283826173],[119,-43,76,0.45796705340846605],[119,-43,77,0.4639763266928223],[119,-43,78,0.46995881994887284],[119,-43,79,0.4759052096936696],[119,-42,64,0.38128293426681703],[119,-42,65,0.38836601274633886],[119,-42,66,0.39552501547110913],[119,-42,67,0.40275685872939915],[119,-42,68,0.40941446907174417],[119,-42,69,0.4154109716064242],[119,-42,70,0.42141878542907246],[119,-42,71,0.427432018297272],[119,-42,72,0.43344699657010716],[119,-42,73,0.43946133021580436],[119,-42,74,0.4454730760213571],[119,-42,75,0.45148000099559976],[119,-42,76,0.4574789478332599],[119,-42,77,0.4634653041717385],[119,-42,78,0.4694325772261357],[119,-42,79,0.47537207523307956],[119,-41,64,0.38215001770728424],[119,-41,65,0.38918120254361654],[119,-41,66,0.3962836438185159],[119,-41,67,0.403166713873436],[119,-41,68,0.40909264915529875],[119,-41,69,0.41504260253460973],[119,-41,70,0.4210073509304121],[119,-41,71,0.4269811184145257],[119,-41,72,0.4329605046535306],[119,-41,73,0.4389435113927566],[119,-41,74,0.4449286690987703],[119,-41,75,0.45091426576195465],[119,-41,76,0.4568976797325549],[119,-41,77,0.46287481832344163],[119,-41,78,0.4688396637622147],[119,-41,79,0.4747839279159119],[119,-40,64,0.38301870570980723],[119,-40,65,0.3899822339870782],[119,-40,66,0.39686782045977886],[119,-40,67,0.4027098408089553],[119,-40,68,0.4085950699632094],[119,-40,69,0.4145092068862396],[119,-40,70,0.420442753998618],[119,-40,71,0.42638980434715884],[119,-40,72,0.4323469459718302],[119,-40,73,0.43831226494133535],[119,-40,74,0.4442844491577485],[119,-40,75,0.4502619949128813],[119,-40,76,0.4562425180480981],[119,-40,77,0.462222171426562],[119,-40,78,0.4681951702737771],[119,-40,79,0.47415342678056055],[119,-39,64,0.3838571245462408],[119,-39,65,0.3905590148741962],[119,-39,66,0.3962911905518814],[119,-39,67,0.4020950909755273],[119,-39,68,0.4079488473343321],[119,-39,69,0.4138375241779567],[119,-39,70,0.41975112648811125],[119,-39,71,0.42568334681255404],[119,-39,72,0.43163046197329674],[119,-39,73,0.43759032766282246],[119,-39,74,0.44356147298343634],[119,-39,75,0.4495422968659593],[119,-39,76,0.455530368172121],[119,-39,77,0.4615218311416337],[119,-39,78,0.4675109176914588],[119,-39,79,0.47348956791293545],[119,-38,64,0.38430073766484646],[119,-38,65,0.3898859190395332],[119,-38,66,0.3955776939358508],[119,-38,67,0.4013510698004802],[119,-38,68,0.4071820309622525],[119,-38,69,0.4130548165852794],[119,-38,70,0.41895868758547994],[119,-38,71,0.4248866516438039],[119,-38,72,0.43083436824520993],[119,-38,73,0.43679914936364467],[119,-38,74,0.44277905777587123],[119,-38,75,0.4487721048687598],[119,-38,76,0.454775549673935],[119,-38,77,0.4555781236944231],[119,-38,78,0.45700772432269354],[119,-38,79,0.44571624547130007],[119,-37,64,0.3835626758781233],[119,-37,65,0.3890997571016359],[119,-37,66,0.39475711527207274],[119,-37,67,0.4005068885382538],[119,-37,68,0.406322831154255],[119,-37,69,0.41218813899074863],[119,-37,70,0.4180910647798983],[119,-37,71,0.42402363933092957],[119,-37,72,0.4299806000402841],[119,-37,73,0.4337372505929843],[119,-37,74,0.42589591596557286],[119,-37,75,0.43688839451940614],[119,-37,76,0.42764765907557933],[119,-37,77,0.42802196804044346],[119,-37,78,0.42896791748157515],[119,-37,79,0.42240236456100216],[119,-36,64,0.3674568508860877],[119,-36,65,0.3787422057543781],[119,-36,66,0.39385921829141257],[119,-36,67,0.3995913485822979],[119,-36,68,0.4053988387674198],[119,-36,69,0.41126360188510946],[119,-36,70,0.41717260741176004],[119,-36,71,0.41304254007329794],[119,-36,72,0.4158198628921079],[119,-36,73,0.41954206183356524],[119,-36,74,0.40926027516198216],[119,-36,75,0.4132287589086594],[119,-36,76,0.4043135592942752],[119,-36,77,0.40721731629602376],[119,-36,78,0.40823310634568366],[119,-36,79,0.40524493097415903],[119,-35,64,0.3607776341873787],[119,-35,65,0.3703007932043104],[119,-35,66,0.385633242275443],[119,-35,67,0.39863211692932093],[119,-35,68,0.40443623608669665],[119,-35,69,0.4103056250238104],[119,-35,70,0.4114285345914952],[119,-35,71,0.40306487875723324],[119,-35,72,0.39990800324001485],[119,-35,73,0.4091022821457359],[119,-35,74,0.4032672457005441],[119,-35,75,0.402614394400209],[119,-35,76,0.39731026207174946],[119,-35,77,0.39711565749260513],[119,-35,78,0.3928937145516325],[119,-35,79,0.39325194135784336],[119,-34,64,0.3604436758806859],[119,-34,65,0.37298326557137446],[119,-34,66,0.38468270520399755],[119,-34,67,0.39765489049715613],[119,-34,68,0.40345899646008654],[119,-34,69,0.4093361797885075],[119,-34,70,0.4152700094768768],[119,-34,71,0.41289004906046445],[119,-34,72,0.3999722587380402],[119,-34,73,0.4028726655929969],[119,-34,74,0.40315276356236657],[119,-34,75,0.4026533085023443],[119,-34,76,0.40011296478358915],[119,-34,77,0.3960307679371975],[119,-34,78,0.3832429673653331],[119,-34,79,0.37987159035023127],[119,-33,64,0.360689493194546],[119,-33,65,0.3804512927501091],[119,-33,66,0.39098094245963627],[119,-33,67,0.3966825470616042],[119,-33,68,0.40248807056692315],[119,-33,69,0.40837401826075864],[119,-33,70,0.4143218564203545],[119,-33,71,0.42031689355713325],[119,-33,72,0.41477254425051663],[119,-33,73,0.4108429157522215],[119,-33,74,0.40966090059700594],[119,-33,75,0.4053094633004111],[119,-33,76,0.40113276911796797],[119,-33,77,0.3988647122739944],[119,-33,78,0.38305260979776484],[119,-33,79,0.373998543149205],[119,-32,64,0.36362249839256444],[119,-32,65,0.3844983220311551],[119,-32,66,0.3900408781022501],[119,-32,67,0.3957342806523437],[119,-32,68,0.4015405572663008],[119,-32,69,0.40743388708227796],[119,-32,70,0.4133933886230246],[119,-32,71,0.4194020787042476],[119,-32,72,0.42544609006781475],[119,-32,73,0.4263401713535366],[119,-32,74,0.4247335252018409],[119,-32,75,0.41468324641492277],[119,-32,76,0.4053521714842129],[119,-32,77,0.407745655405364],[119,-32,78,0.3924203960698693],[119,-32,79,0.37452362266860767],[119,-31,64,0.3783003966865507],[119,-31,65,0.3836200864436231],[119,-31,66,0.38914170036062545],[119,-31,67,0.3948247193334971],[119,-31,68,0.40062885705410045],[119,-31,69,0.4065257242531199],[119,-31,70,0.4124918751769461],[119,-31,71,0.41850785505782045],[119,-31,72,0.42455749455225383],[119,-31,73,0.43062724658431956],[119,-31,74,0.43670556663283455],[119,-31,75,0.4295486378310416],[119,-31,76,0.4157091019347061],[119,-31,77,0.41560654216436194],[119,-31,78,0.4029442862988513],[119,-31,79,0.38714759473665217],[119,-30,64,0.37751231785785966],[119,-30,65,0.38279726444331924],[119,-30,66,0.3882946619320323],[119,-30,67,0.39396302339185785],[119,-30,68,0.3997598062499861],[119,-30,69,0.4056538371071848],[119,-30,70,0.4116189275221604],[119,-30,71,0.4176330179646813],[119,-30,72,0.42367754911369493],[119,-30,73,0.42973686419908963],[119,-30,74,0.4357976432856373],[119,-30,75,0.4418483703613725],[119,-30,76,0.42552164083468086],[119,-30,77,0.42067644239721397],[119,-30,78,0.4087045921763773],[119,-30,79,0.4014333460228557],[119,-29,64,0.37679020779016437],[119,-29,65,0.38203676149263055],[119,-29,66,0.3875047109741297],[119,-29,67,0.39315196206469366],[119,-29,68,0.39893379013971175],[119,-29,69,0.4048160598029497],[119,-29,70,0.4107697099064951],[119,-29,71,0.41676999840066026],[119,-29,72,0.4227959474961772],[119,-29,73,0.4288298082522882],[119,-29,74,0.43485654536253615],[119,-29,75,0.4408633428917301],[119,-29,76,0.4324145302668337],[119,-29,77,0.4260537544784544],[119,-29,78,0.4137106163305004],[119,-29,79,0.4107326247326254],[119,-28,64,0.37613567950975185],[119,-28,65,0.38133829561801375],[119,-28,66,0.3867695146892715],[119,-28,67,0.3923869670594575],[119,-28,68,0.39814383341311343],[119,-28,69,0.40400288877635604],[119,-28,70,0.409932128690384],[119,-28,71,0.4159041153134272],[119,-28,72,0.4218954902895189],[119,-28,73,0.4278864954888434],[119,-28,74,0.4338605022831732],[119,-28,75,0.4398035500200685],[119,-28,76,0.4455838634996421],[119,-28,77,0.4416272029254131],[119,-28,78,0.42829144122976687],[119,-28,79,0.4172670856541684],[119,-27,64,0.37554227636265414],[119,-27,65,0.3806933733930524],[119,-27,66,0.38607845761120835],[119,-27,67,0.39165516125151173],[119,-27,68,0.3973746663661332],[119,-27,69,0.40319659472423536],[119,-27,70,0.40908599918423527],[119,-27,71,0.41497933219501043],[119,-27,72,0.420203934986337],[119,-27,73,0.42551400487821556],[119,-27,74,0.43090376681666887],[119,-27,75,0.43636306879306785],[119,-27,76,0.4418779480529472],[119,-27,77,0.44743119565566447],[119,-27,78,0.44320593774297284],[119,-27,79,0.42475445929921324],[119,-26,64,0.37499441041331494],[119,-26,65,0.3800842387519316],[119,-26,66,0.38541161306414246],[119,-26,67,0.3909343610910368],[119,-26,68,0.3966017654740112],[119,-26,69,0.4017927494384642],[119,-26,70,0.40668161178540474],[119,-26,71,0.4116642333289057],[119,-26,72,0.41674771079344597],[119,-26,73,0.42193316909694906],[119,-26,74,0.4272163036391133],[119,-26,75,0.43258793260582046],[119,-26,76,0.4380345587025938],[119,-26,77,0.44353893970262337],[119,-26,78,0.44908066717253414],[119,-26,79,0.4277020341968163],[119,-25,64,0.374466238449693],[119,-25,65,0.3794828005027105],[119,-25,66,0.38473873154450955],[119,-25,67,0.3893734807567128],[119,-25,68,0.3939518567874846],[119,-25,69,0.39859727746775875],[119,-25,70,0.40333340729338074],[119,-25,71,0.408176452445197],[119,-25,72,0.41313565110258893],[119,-25,73,0.41821378395032144],[119,-25,74,0.4234077043884618],[119,-25,75,0.42870888790347383],[119,-25,76,0.4341040000107234],[119,-25,77,0.43957548213531944],[119,-25,78,0.44510215476032405],[119,-25,79,0.42586947249216434],[119,-24,64,0.37314895399268044],[119,-24,65,0.3775618943049209],[119,-24,66,0.3819426754363253],[119,-24,67,0.38632269104072053],[119,-24,68,0.39074370210797194],[119,-24,69,0.39524057202489843],[119,-24,70,0.39983975224547447],[119,-24,71,0.4045597621263934],[119,-24,72,0.40941166384071453],[119,-24,73,0.41439956529146776],[119,-24,74,0.4195211505368761],[119,-24,75,0.4247682371732136],[119,-24,76,0.43012736005955127],[119,-24,77,0.4355803807116773],[119,-24,78,0.44110512164136767],[119,-24,79,0.4252422020749531],[119,-23,64,0.3704182779950123],[119,-23,65,0.3746682327137839],[119,-23,66,0.3788912520149669],[119,-23,67,0.38311871479843396],[119,-23,68,0.38739420692258075],[119,-23,69,0.3917555326624546],[119,-23,70,0.39623164886695783],[119,-23,71,0.4008430972523838],[119,-23,72,0.405602472576111],[119,-23,73,0.41051492577059007],[119,-23,74,0.41557870153315574],[119,-23,75,0.42078570978884566],[119,-23,76,0.4261221303691313],[119,-23,77,0.43156905018033154],[119,-23,78,0.4371031320726989],[119,-23,79,0.4254132179098478],[119,-22,64,0.36754585970551246],[119,-22,65,0.3716380218153092],[119,-22,66,0.3757102418424237],[119,-22,67,0.37979371708477394],[119,-22,68,0.38393354855299267],[119,-22,69,0.3881701628614864],[119,-22,70,0.3925347213064079],[119,-22,71,0.3970495073646673],[119,-22,72,0.4017283905282659],[119,-22,73,0.40657733167294335],[119,-22,74,0.41159492943113507],[119,-22,75,0.4167730069487506],[119,-22,76,0.4220972383191469],[119,-22,77,0.4275478139070417],[119,-22,78,0.4331001437013984],[119,-22,79,0.41919784424077516],[119,-21,64,0.36456688918615265],[119,-21,65,0.36850453970291536],[119,-21,66,0.37243093421087387],[119,-21,67,0.3763768747958556],[119,-21,68,0.3803886034090256],[119,-21,69,0.3845088058732561],[119,-21,70,0.38877053621491703],[119,-21,71,0.3931975560375481],[119,-21,72,0.3978047904751721],[119,-21,73,0.4025988323088518],[119,-21,74,0.40757849368923715],[119,-21,75,0.4127354048050998],[119,-21,76,0.41805465873970304],[119,-21,77,0.42351550166463187],[119,-21,78,0.4290920674359523],[119,-21,79,0.41300920187433127],[119,-20,64,0.36151517161652574],[119,-20,65,0.3652995136353858],[119,-20,66,0.3690828046472297],[119,-20,67,0.3728952069480718],[119,-20,68,0.376783683359137],[119,-20,69,0.3807927849092087],[119,-20,70,0.3849571474644923],[119,-20,71,0.38930177386934456],[119,-20,72,0.3938424727321763],[119,-20,73,0.3985863524941777],[119,-20,74,0.4035323702016567],[119,-20,75,0.40867193428683407],[119,-20,76,0.41398956055084374],[119,-20,77,0.4194635804379035],[119,-20,78,0.4250669005928659],[119,-20,79,0.41287291694388306],[119,-19,64,0.35842420410850395],[119,-19,65,0.36205411552131367],[119,-19,66,0.36569442494093823],[119,-19,67,0.3693743933992557],[119,-19,68,0.3731412578593934],[119,-19,69,0.3770410259409668],[119,-19,70,0.38110961970554785],[119,-19,71,0.385373085806845],[119,-19,72,0.3898480021513135],[119,-19,73,0.39454194789573704],[119,-19,74,0.39945403619235664],[119,-19,75,0.4045755089612177],[119,-19,76,0.40989039284354023],[119,-19,77,0.41537621537072467],[119,-19,78,0.42100478027296717],[119,-19,79,0.415548783693006],[119,-18,64,0.355324362010361],[119,-18,65,0.35879589568134856],[119,-18,66,0.3622901381187119],[119,-18,67,0.36583518319369557],[119,-18,68,0.36947808836819007],[119,-18,69,0.3732659133323322],[119,-18,70,0.3772356031582926],[119,-18,71,0.38141410600068054],[119,-18,72,0.3858187269448193],[119,-18,73,0.39045755464679893],[119,-18,74,0.3953299601835057],[119,-18,75,0.40042716738223966],[119,-18,76,0.4057328937561199],[119,-18,77,0.41122406103502945],[119,-18,78,0.416871574154467],[119,-18,79,0.41285086116122804],[119,-17,64,0.35222505144944244],[119,-17,65,0.3555317405951568],[119,-17,66,0.35887402027357473],[119,-17,67,0.36227856249385015],[119,-17,68,0.36579179575975806],[119,-17,69,0.3694614321212136],[119,-17,70,0.37332519981838885],[119,-17,71,0.37741084438965083],[119,-17,72,0.38173640517429097],[119,-17,73,0.38631057578909345],[119,-17,74,0.39113314802598753],[119,-17,75,0.39619553844830013],[119,-17,76,0.4014813967986364],[119,-17,77,0.4069672951741318],[119,-17,78,0.41262349677705934],[119,-17,79,0.4068518098664802],[119,-16,64,0.34908370911585895],[119,-16,65,0.3522205022165983],[119,-16,66,0.35540671952367103],[119,-16,67,0.3586673904179297],[119,-16,68,0.3620478494056639],[119,-16,69,0.365596005512784],[119,-16,70,0.36935005896945755],[119,-16,71,0.3733383664265957],[119,-16,72,0.377579619629504],[119,-16,73,0.3820831206317546],[119,-16,74,0.3868491530419299],[119,-16,75,0.3918694486020795],[119,-16,76,0.39712774820814345],[119,-16,77,0.40260045630144403],[119,-16,78,0.40825738738918427],[119,-16,79,0.40386274083288076],[119,-15,64,0.34585605983596035],[119,-15,65,0.34882005960039114],[119,-15,66,0.35184864595774723],[119,-15,67,0.3549650181322465],[119,-15,68,0.358212937945148],[119,-15,69,0.3616399989158761],[119,-15,70,0.3652844840612283],[119,-15,71,0.3691750822697566],[119,-15,72,0.3733309541166528],[119,-15,73,0.37776190767324974],[119,-15,74,0.3824686838596684],[119,-15,75,0.3874433506690846],[119,-15,76,0.39266980537727664],[119,-15,77,0.3981243836439331],[119,-15,78,0.4037765742154862],[119,-15,79,0.40112613391418883],[119,-14,64,0.34250950105758343],[119,-14,65,0.3452996337020728],[119,-14,66,0.34817102917904375],[119,-14,67,0.35114489680284117],[119,-14,68,0.3542629442634307],[119,-14,69,0.3575718989741713],[119,-14,70,0.36110968152533107],[119,-14,71,0.3649049658817228],[119,-14,72,0.3689771221258945],[119,-14,73,0.3733362830671825],[119,-14,74,0.3779835343269457],[119,-14,75,0.3829112272627023],[119,-14,76,0.3881034138515339],[119,-14,77,0.3935364024186264],[119,-14,78,0.3991794328732879],[119,-14,79,0.39251617427810276],[119,-13,64,0.2923423212631441],[119,-13,65,0.3416377648720311],[119,-13,66,0.3443539576599809],[119,-13,67,0.34718871009729246],[119,-13,68,0.3501812028429162],[119,-13,69,0.3533767275168544],[119,-13,70,0.3568123622353193],[119,-13,71,0.3605163732470488],[119,-13,72,0.3645080286578433],[119,-13,73,0.3687975498664774],[119,-13,74,0.37338620038664233],[119,-13,75,0.37826651145392576],[119,-13,76,0.3834226435464647],[119,-13,77,0.38883088268563654],[119,-13,78,0.39446027013237767],[119,-13,79,0.3857711844672436],[119,-12,64,0.15678215922840358],[119,-12,65,0.19027125160685895],[119,-12,66,0.22747513668692765],[119,-12,67,0.2683589590518243],[119,-12,68,0.31287828722789124],[119,-12,69,0.34904459734970356],[119,-12,70,0.35238347117782154],[119,-12,71,0.35600097239296385],[119,-12,72,0.35991592470913963],[119,-12,73,0.3641383681857279],[119,-12,74,0.36866954375657685],[119,-12,75,0.3735020280544172],[119,-12,76,0.3786200176682337],[119,-12,77,0.3839997616815329],[119,-12,78,0.3896101410617702],[119,-12,79,0.386006451428507],[119,-11,64,0.07161963083548603],[119,-11,65,0.09141537801400124],[119,-11,66,0.11428046308020381],[119,-11,67,0.14024869634904133],[119,-11,68,0.1693410018168499],[119,-11,69,0.20155806368276769],[119,-11,70,0.2368686104007347],[119,-11,71,0.2752115320628045],[119,-11,72,0.3164984359297423],[119,-11,73,0.35935222662999267],[119,-11,74,0.36382650284438695],[119,-11,75,0.3686099560446875],[119,-11,76,0.3736867349889363],[119,-11,77,0.3790330304233275],[119,-11,78,0.3846176005118782],[119,-11,79,0.38855903385880375],[119,-10,64,0.02510203508023725],[119,-10,65,0.03468022232133651],[119,-10,66,0.04660082885427158],[119,-10,67,0.06096627646619757],[119,-10,68,0.07786259082646071],[119,-10,69,0.09735397315586274],[119,-10,70,0.1194710211340111],[119,-10,71,0.14421257550073285],[119,-10,72,0.17154802778904915],[119,-10,73,0.2014197746917179],[119,-10,74,0.23374580459947447],[119,-10,75,0.2684224024090362],[119,-10,76,0.30532695936240517],[119,-10,77,0.3443208754391236],[119,-10,78,0.3794693896107403],[119,-10,79,0.38522538248244265],[119,-9,64,0.018854213234651328],[119,-9,65,0.021343998722131295],[119,-9,66,0.023797552996556753],[119,-9,67,0.026224751143273595],[119,-9,68,0.02865190221571393],[119,-9,69,0.03660807047110188],[119,-9,70,0.04859779013197111],[119,-9,71,0.06272180736681553],[119,-9,72,0.07900751554810596],[119,-9,73,0.09745308877461113],[119,-9,74,0.1180298645408126],[119,-9,75,0.14068486212528863],[119,-9,76,0.16534342354335568],[119,-9,77,0.19191196460221893],[119,-9,78,0.2202808243999758],[119,-9,79,0.25032720251010193],[119,-8,64,0.014712928395856454],[119,-8,65,0.017147433776478562],[119,-8,66,0.01957058456260123],[119,-8,67,0.021989621691065168],[119,-8,68,0.024426369625386916],[119,-8,69,0.026913348586985932],[119,-8,70,0.029479699914559107],[119,-8,71,0.03214984264538316],[119,-8,72,0.03494262290780979],[119,-8,73,0.037870657404346794],[119,-8,74,0.04852691119808027],[119,-8,75,0.061817253599165636],[119,-8,76,0.07680723148159399],[119,-8,77,0.0934494156731119],[119,-8,78,0.11167742194512326],[119,-8,79,0.13140873195023645],[119,-7,64,0.010570198919847966],[119,-7,65,0.012953186855725605],[119,-7,66,0.015349503931489622],[119,-7,67,0.01776372790059673],[119,-7,68,0.02021300601245797],[119,-7,69,0.022725479740800664],[119,-7,70,0.02532674350358432],[119,-7,71,0.028038402070066786],[119,-7,72,0.030877122565116218],[119,-7,73,0.03385388695497877],[119,-7,74,0.03697344503899666],[119,-7,75,0.040233967558002647],[119,-7,76,0.04362689862233732],[119,-7,77,0.04713700626564911],[119,-7,78,0.050742629546521714],[119,-7,79,0.059440772221082565],[119,-6,64,0.0064371058949057825],[119,-6,65,0.008772512605155536],[119,-6,66,0.011145323786676662],[119,-6,67,0.013557440805757087],[119,-6,68,0.016021216467765487],[119,-6,69,0.0185601842389832],[119,-6,70,0.021196153992286106],[119,-6,71,0.023947687777788863],[119,-6,72,0.02682906771401763],[119,-6,73,0.029849468691364036],[119,-6,74,0.033012335959015385],[119,-6,75,0.03631496724063345],[119,-6,76,0.039748298604239236],[119,-6,77,0.043296892903125994],[119,-6,78,0.04693912920889624],[119,-6,79,0.050647591280847615],[119,-5,64,0.0023236274811192846],[119,-5,65,0.0046154172767564694],[119,-5,66,0.006967678135483019],[119,-5,67,0.009379637850891132],[119,-5,68,0.011858817233056738],[119,-5,69,0.014424009054980584],[119,-5,70,0.017093082649991063],[119,-5,71,0.019881396624541418],[119,-5,72,0.02280069743985702],[119,-5,73,0.0258582249729857],[119,-5,74,0.0290560251714515],[119,-5,75,0.0323904694818956],[119,-5,76,0.035851980305465554],[119,-5,77,0.03942496131638693],[119,-5,78,0.04308793107687452],[119,-5,79,0.04681385799729322],[119,-4,64,-0.0017617663728845812],[119,-4,65,4.902600806652582E-4],[119,-4,66,0.002824444451416769],[119,-4,67,0.0052373598624348965],[119,-4,68,0.007731739319977704],[119,-4,69,0.010321603696905898],[119,-4,70,0.01302081243420247],[119,-4,71,0.01584143236925655],[119,-4,72,0.018792583010776232],[119,-4,73,0.021879488747986172],[119,-4,74,0.02510273814749718],[119,-4,75,0.028457750054002296],[119,-4,76,0.03193444577997021],[119,-4,77,0.03551712624985477],[119,-4,78,0.03918455255774517],[119,-4,79,0.04291022800985973],[119,-3,64,-0.005812320202047357],[119,-3,65,-0.0035964498330278197],[119,-3,66,-0.0012784437979108537],[119,-3,67,0.0011356511510983696],[119,-3,68,0.0036439056823456867],[119,-3,69,0.006255640663435934],[119,-3,70,0.008980725141942548],[119,-3,71,0.011827920588274225],[119,-3,72,0.014803689692346854],[119,-3,73,0.01791120984647549],[119,-3,74,0.021149591503050874],[119,-3,75,0.024513301159500664],[119,-3,76,0.02799178829323155],[119,-3,77,0.03156931515072302],[119,-3,78,0.03522498788936913],[119,-3,79,0.03893298718401467],[119,-2,64,-0.00982299577942129],[119,-2,65,-0.007640056359106758],[119,-2,66,-0.005336989980109236],[119,-2,67,-0.002922413186593491],[119,-2,68,-4.0271422423702975E-4],[119,-2,69,0.0022269007429940833],[119,-2,70,0.004972417916945663],[119,-2,71,0.007839354445133414],[119,-2,72,0.010831547960705084],[119,-2,73,0.013950146427437346],[119,-2,74,0.017192798509242296],[119,-2,75,0.020553044253347464],[119,-2,76,0.024019905452189873],[119,-2,77,0.027577674636089997],[119,-2,78,0.03120590124850875],[119,-2,79,0.03487957317403571],[119,-1,64,-0.013790266709765799],[119,-1,65,-0.011637554842633568],[119,-1,66,-0.009348928082878523],[119,-1,67,-0.0069355085573798055],[119,-1,68,-0.00440786852799969],[119,-1,69,-0.00176547317492413],[119,-1,70,9.939724247838792E-4],[119,-1,71,0.003872874213192457],[119,-1,72,0.006872536542084845],[119,-1,73,0.009992143487267026],[119,-1,74,0.013227934332487859],[119,-1,75,0.016572573048701682],[119,-1,76,0.020014711180319656],[119,-1,77,0.023538743146920494],[119,-1,78,0.02712475257806138],[119,-1,79,0.030748647926140408],[119,0,64,-0.017711700162953366],[119,0,65,-0.015587181295107805],[119,0,66,-0.01331331298499058],[119,0,67,-0.01090364647329365],[119,0,68,-0.008372601640525546],[119,0,69,-0.0057235500504171696],[119,0,70,-0.002957619944634315],[119,0,71,-7.531651621209192E-5],[119,0,72,0.002922279727304791],[119,0,73,0.00603250034179431],[119,0,74,0.009250262333228806],[119,0,75,0.012567427414836043],[119,0,76,0.01597234659648499],[119,0,77,0.019449589178599843],[119,0,78,0.02297985484533067],[119,0,79,0.02654006719163325],[119,1,64,-0.02158532172346102],[119,1,65,-0.019487789266479608],[119,1,66,-0.017229904737381174],[119,1,67,-0.01482756249680189],[119,1,68,-0.012298645955000949],[119,1,69,-0.009650011003846734],[119,1,70,-0.006885875521472049],[119,1,71,-0.00400939655462797],[119,1,72,-0.0010238394564948856],[119,1,73,0.0020664289999246534],[119,1,74,0.005255123817723709],[119,1,75,0.00853340117816378],[119,1,76,0.011889393563347311],[119,1,77,0.015307919741713603],[119,1,78,0.01877036839761825],[119,1,79,0.02225475384201494],[119,2,64,-0.01850222057057118],[119,2,65,-0.023338013047294624],[119,2,66,-0.02109834660204357],[119,2,67,-0.018707906843870997],[119,2,68,-0.016187626996688412],[119,2,69,-0.013547376199570834],[119,2,70,-0.010794078077539774],[119,2,71,-0.00793323349931906],[119,2,72,-0.004970047759725808],[119,2,73,-0.0019103926492114185],[119,2,74,0.0012383968875341184],[119,2,75,0.004466891434760619],[119,2,76,0.0077631006995887986],[119,2,77,0.011112171233465255],[119,2,78,0.014496247156282602],[119,2,79,0.01789449243250179],[119,3,64,-0.003133333025749462],[119,3,65,-0.006422001218201129],[119,3,66,-0.010740797520898768],[119,3,67,-0.01627081340532821],[119,3,68,-0.020040050446464706],[119,3,69,-0.01741702831593671],[119,3,70,-0.014684354798584162],[119,3,71,-0.011849531046558686],[119,3,72,-0.008919420774614027],[119,3,73,-0.0059011725519190475],[119,3,74,-0.0028029883668653863],[119,3,75,3.652614991934899E-4],[119,3,76,0.0035915769140142974],[119,3,77,0.006861518946904377],[119,3,78,0.010158052505688377],[119,3,79,0.013461539226797922],[119,4,64,-5.415935765466462E-4],[119,4,65,-0.001284759551334357],[119,4,66,-0.0021630691596580117],[119,4,67,-0.003429289558784685],[119,4,68,-0.005302136557679707],[119,4,69,-0.007954073022585419],[119,4,70,-0.011521947066722514],[119,4,71,-0.015758836354470732],[119,4,72,-0.012873005636075843],[119,4,73,-0.009907265937089443],[119,4,74,-0.006870472683713752],[119,4,75,-0.0037727642265403586],[119,4,76,-6.260145460776426E-4],[119,4,77,0.0025558548422142903],[119,4,78,0.00575670285957289],[119,4,79,0.008958135503947584],[119,5,64,9.601762659707214E-4],[119,5,65,-6.405234257201532E-4],[119,5,66,-0.0014017594105285261],[119,5,67,-0.001647922934857279],[119,5,68,-0.0016674231260233497],[119,5,69,-0.0017001869646478577],[119,5,70,-0.0019483277420829295],[119,5,71,-0.0025799830972033826],[119,5,72,-0.0037327869254795325],[119,5,73,-0.005517202500727962],[119,5,74,-0.008019702998530002],[119,5,75,-0.00794666946445981],[119,5,76,-0.004889258531431786],[119,5,77,-0.0018042646425255136],[119,5,78,0.0012931592539314604],[119,5,79,0.004385922889474055],[119,6,64,0.013065226088882784],[119,6,65,0.007202102080375005],[119,6,66,0.0032329429877221423],[119,6,67,7.617627174975978E-4],[119,6,68,-5.694050073757649E-4],[119,6,69,-0.001067828017751055],[119,6,70,-0.0010008636238388678],[119,6,71,-5.996287033584824E-4],[119,6,72,-6.231402921808787E-5],[119,6,73,4.4262222662149744E-4],[119,6,74,7.733954872006589E-4],[119,6,75,8.119829275558671E-4],[119,6,76,4.6137036946728186E-4],[119,6,77,-3.5703167516894837E-4],[119,6,78,-0.0017057936316847936],[119,6,79,-2.5475781433654653E-4],[119,7,64,0.04747601531891462],[119,7,65,0.03394400545925367],[119,7,66,0.023440615548284652],[119,7,67,0.015498301659714438],[119,7,68,0.009689584729404628],[119,7,69,0.005639861994842293],[119,7,70,0.0030164750726022283],[119,7,71,0.0015251897845161952],[119,7,72,9.070228128634839E-4],[119,7,73,9.351726561940735E-4],[119,7,74,0.0014120684358056325],[119,7,75,0.002166549152883913],[119,7,76,0.0030511849690476062],[119,7,77,0.003939750984206256],[119,7,78,0.0047248628233992635],[119,7,79,0.005315782126891301],[119,8,64,0.11590415863232269],[119,8,65,0.09129783227559497],[119,8,66,0.07093495672138783],[119,8,67,0.054276648085036766],[119,8,68,0.04082602777524745],[119,8,69,0.030141131581105478],[119,8,70,0.021823895645288954],[119,8,71,0.015516773402431017],[119,8,72,0.010899689666521778],[119,8,73,0.007687083718115895],[119,8,74,0.005625054826679831],[119,8,75,0.004488622749030644],[119,8,76,0.004079114777836816],[119,8,77,0.004221689878325618],[119,8,78,0.004763009353784705],[119,8,79,0.005569062331511533],[119,9,64,0.21947040168311424],[119,9,65,0.1909718521348174],[119,9,66,0.15742601570303597],[119,9,67,0.12880883493856632],[119,9,68,0.10455424468678091],[119,9,69,0.0841528907358114],[119,9,70,0.06714116683367707],[119,9,71,0.05309796373307337],[119,9,72,0.04164174289096958],[119,9,73,0.032427684657398786],[119,9,74,0.025144924277698547],[119,9,75,0.019513888191305],[119,9,76,0.015283742201889878],[119,9,77,0.012229962119771943],[119,9,78,0.010152036442424316],[119,9,79,0.008871309556833667],[119,10,64,0.2123503361246991],[119,10,65,0.21171495237717552],[119,10,66,0.2114130841930305],[119,10,67,0.2114139465879657],[119,10,68,0.21168428366769473],[119,10,69,0.1793853733419585],[119,10,70,0.15068131152919487],[119,10,71,0.12598477054691057],[119,10,72,0.10485230925255544],[119,10,73,0.08687927144503686],[119,10,74,0.07169711054685184],[119,10,75,0.05897080027820027],[119,10,76,0.04839634289512161],[119,10,77,0.03969838565176981],[119,10,78,0.03262795517308008],[119,10,79,0.026960318408293493],[119,11,64,0.2051962167656022],[119,11,65,0.20440509674817944],[119,11,66,0.20393747045053065],[119,11,67,0.20376259263638716],[119,11,68,0.20384722362354515],[119,11,69,0.2041702675452349],[119,11,70,0.20471431433626125],[119,11,71,0.20546454692882443],[119,11,72,0.2064079807516472],[119,11,73,0.18275893348981984],[119,11,74,0.15700151075720956],[119,11,75,0.13458193195240986],[119,11,76,0.11514196099655062],[119,11,77,0.09835420402999524],[119,11,78,0.08391987748865776],[119,11,79,0.0715666887634912],[119,12,64,0.1980259343231111],[119,12,65,0.19707877436196802],[119,12,66,0.19644394194413517],[119,12,67,0.19609142761889892],[119,12,68,0.19598846893158847],[119,12,69,0.19611393561255108],[119,12,70,0.1964504406277531],[119,12,71,0.19698330019259547],[119,12,72,0.19769980480946853],[119,12,73,0.19858856299659342],[119,12,74,0.19963891827556335],[119,12,75,0.2008404398026675],[119,12,76,0.20218248684735363],[119,12,77,0.19991891944081483],[119,12,78,0.1757505170183025],[119,12,79,0.1544139850652943],[119,13,64,0.19085996528296265],[119,13,65,0.1897577621838348],[119,13,66,0.1889556915210224],[119,13,67,0.18842516883995672],[119,13,68,0.1881343545533349],[119,13,69,0.18806221322087935],[119,13,70,0.18819142615142292],[119,13,71,0.18850742367504636],[119,13,72,0.18899770068541646],[119,13,73,0.18965119675901784],[119,13,74,0.1904577414310581],[119,13,75,0.19140756504331885],[119,13,76,0.19249087541487583],[119,13,77,0.1936975004237623],[119,13,78,0.19501659642880145],[119,13,79,0.19643642230569822],[119,14,64,0.18372487783589117],[119,14,65,0.18246983358944935],[119,14,66,0.18150176422740255],[119,14,67,0.1807941459650318],[119,14,68,0.18031646190402684],[119,14,69,0.18004785983906785],[119,14,70,0.1799710880863494],[119,14,71,0.18007162291752116],[119,14,72,0.18033704490737218],[119,14,73,0.18075647044661863],[119,14,74,0.18132003899785937],[119,14,75,0.18201845652971088],[119,14,76,0.18284259542077888],[119,14,77,0.18378315098265963],[119,14,78,0.18483035461189262],[119,14,79,0.1859737434442736],[119,15,64,0.17665871213130108],[119,15,65,0.17525395042510275],[119,15,66,0.1741219496290197],[119,15,67,0.17323878702707765],[119,15,68,0.17257560212558082],[119,15,69,0.172111775295255],[119,15,70,0.17183008659823196],[119,15,71,0.171715962694124],[119,15,72,0.17175693189108843],[119,15,73,0.1719421232796204],[119,15,74,0.17226181051205644],[119,15,75,0.17270700067378197],[119,15,76,0.1732690685743074],[119,15,77,0.17393943666873837],[119,15,78,0.1747093007048323],[119,15,79,0.17556940107711172],[119,16,64,0.16970492202070198],[119,16,65,0.16815369646634798],[119,16,66,0.16685955929658428],[119,16,67,0.16580162224010958],[119,16,68,0.16495297128182565],[119,16,69,0.16429328245817315],[119,16,70,0.16380536832334516],[119,16,71,0.16347456434204224],[119,16,72,0.16328827713760594],[119,16,73,0.1632355642162864],[119,16,74,0.16330674570614984],[119,16,75,0.1634930485624107],[119,16,76,0.16378628360283012],[119,16,77,0.16417855564803743],[119,16,78,0.1646620069541391],[119,16,79,0.16522859403781612],[119,17,64,0.16288553463333186],[119,17,65,0.16119102261992335],[119,17,66,0.1597361698190899],[119,17,67,0.15850345070995997],[119,17,68,0.15746815038689665],[119,17,69,0.15661032932844496],[119,17,70,0.155912880616566],[119,17,71,0.15536107048887485],[119,17,72,0.15494219011696397],[119,17,73,0.15464522502529413],[119,17,74,0.15446054265896234],[119,17,75,0.15437959855568067],[119,17,76,0.15439466152221717],[119,17,77,0.15449855815891073],[119,17,78,0.1546844370193544],[119,17,79,0.15494555263471896],[119,18,64,0.15619954112902398],[119,18,65,0.1543648122707931],[119,18,66,0.1527504412947611],[119,18,67,0.15134249081702],[119,18,68,0.1501186579495965],[119,18,69,0.14905949848901245],[119,18,70,0.14814807332922578],[119,18,71,0.14736965288029474],[119,18,72,0.1467114790375185],[119,18,73,0.1461625300340942],[119,18,74,0.1457132886523685],[119,18,75,0.14535551425223558],[119,18,76,0.1450820190558121],[119,18,77,0.14488644910551612],[119,18,78,0.14476307028952098],[119,18,79,0.14470655980269298],[119,19,64,0.14941612876278484],[119,19,65,0.14765443487604904],[119,19,66,0.1458816308421035],[119,19,67,0.14429782636042585],[119,19,68,0.14288330183369763],[119,19,69,0.14161923730684436],[119,19,70,0.14048898025559378],[119,19,71,0.1394779189735659],[119,19,72,0.13857335814915878],[119,19,73,0.13776438196208532],[119,19,74,0.13704170514026254],[119,19,75,0.13639751243954903],[119,19,76,0.13582528702687902],[119,19,77,0.13531962826169375],[119,19,78,0.13487605938235675],[119,19,79,0.13449082561164027],[119,20,64,0.13773349876021823],[119,20,65,0.13644555248727674],[119,20,66,0.13522406872983117],[119,20,67,0.13407872623391365],[119,20,68,0.1330279984742671],[119,20,69,0.13208975307005216],[119,20,70,0.13127845876590385],[119,20,71,0.13060522287779885],[119,20,72,0.13007788093307704],[119,20,73,0.1294155788227908],[119,20,74,0.1284113390408784],[119,20,75,0.1274721136225635],[119,20,76,0.12659220834197432],[119,20,77,0.12576732757158432],[119,20,78,0.12499440246128966],[119,20,79,0.12427139424507579],[119,21,64,0.12576079761027711],[119,21,65,0.12426997411663236],[119,21,66,0.12286699840310687],[119,21,67,0.12155806405590186],[119,21,68,0.12035908906891601],[119,21,69,0.11928730062475199],[119,21,70,0.118356891632341],[119,21,71,0.11757888872274055],[119,21,72,0.1169611270726148],[119,21,73,0.11650826777247436],[119,21,74,0.11622185736578862],[119,21,75,0.11610042908574641],[119,21,76,0.11613964522109296],[119,21,77,0.11619204674928173],[119,21,78,0.11508313183657203],[119,21,79,0.11401608515329306],[119,22,64,0.11356321051649013],[119,22,65,0.11186514676990626],[119,22,66,0.11027726732106621],[119,22,67,0.10880242272581914],[119,22,68,0.10745393562265682],[119,22,69,0.10624823748738653],[119,22,70,0.10519907699676975],[119,22,71,0.10431722513925226],[119,22,72,0.10361033938243117],[119,22,73,0.10308288574031585],[119,22,74,0.10273611839895033],[119,22,75,0.1025681164205119],[119,22,76,0.10257387691254426],[119,22,77,0.10274546392209971],[119,22,78,0.10307221219690334],[119,22,79,0.10354098484675822],[119,23,64,0.10121177493331829],[119,23,65,0.09930242890475373],[119,23,66,0.09752616331412253],[119,23,67,0.09588270482542054],[119,23,68,0.0943827856207921],[119,23,69,0.09304188701847614],[119,23,70,0.09187314137746631],[119,23,71,0.09088688409997472],[119,23,72,0.09009041326793737],[119,23,73,0.0894878219134748],[119,23,74,0.0890799026131277],[119,23,75,0.08886412391944315],[119,23,76,0.08883467797323899],[119,23,77,0.08898259847747639],[119,23,78,0.08929594806208808],[119,23,79,0.08976007392812721],[119,24,64,0.08878044399407994],[119,24,65,0.08665614693360019],[119,24,66,0.0846879603809046],[119,24,67,0.082872775089369],[119,24,68,0.08121878159747939],[119,24,69,0.07974036208091467],[119,24,70,0.07844986259618314],[119,24,71,0.07735700459975307],[119,24,72,0.07646854788951898],[119,24,73,0.07578804001957805],[119,24,74,0.07531565190824281],[119,24,75,0.07504809914721317],[119,24,76,0.07497864831482157],[119,24,77,0.07509720740036657],[119,24,78,0.0753904992629919],[119,24,79,0.07584231687742213],[119,25,64,0.07634330078311605],[119,25,65,0.07400080569786927],[119,25,66,0.07183714470450135],[119,25,67,0.06984672041814048],[119,25,68,0.06803527285194132],[119,25,69,0.0664159459391607],[119,25,70,0.06500013683100216],[119,25,71,0.06379678202414184],[119,25,72,0.06281193290907833],[119,25,73,0.06204843048629665],[119,25,74,0.061505678999211236],[119,25,75,0.06117951798781361],[119,25,76,0.06106219202986553],[119,25,77,0.06114241720969913],[119,25,78,0.061405543141712524],[119,25,79,0.061833809176793215],[119,26,64,0.06397192607531553],[119,26,65,0.0614084494833359],[119,26,66,0.05904578667960162],[119,26,67,0.056876249808686746],[119,26,68,0.05490325936375282],[119,26,69,0.05313859589698466],[119,26,70,0.05159255717041493],[119,26,71,0.05027313604518885],[119,26,72,0.049185519159330164],[119,26,73,0.04833169610217716],[119,26,74,0.04771017886250132],[119,26,75,0.04731583105256547],[119,26,76,0.04713980614448872],[119,26,77,0.04716959370080907],[119,26,78,0.047389172341825374],[119,26,79,0.047779267968678485],[119,27,64,0.05173292238243177],[119,27,65,0.048946176278586724],[119,27,66,0.04638106148146792],[119,27,67,0.04402823653126083],[119,27,68,0.04188897000111104],[119,27,69,0.03997357149948233],[119,27,70,0.03829110519248922],[119,27,71,0.03684847823454414],[119,27,72,0.035649874063175144],[119,27,73,0.03469630596764501],[119,27,74,0.03398529073543637],[119,27,75,0.03351064188005216],[119,27,76,0.033262381662654154],[119,27,77,0.033226770841547376],[119,27,78,0.033386454821403184],[119,27,79,0.033720724629082766],[119,28,64,0.03968559739734075],[119,28,65,0.036673808237844746],[119,28,66,0.03390292097205526],[119,28,67,0.031362405147711596],[119,28,68,0.029051577382566775],[119,28,69,0.026979189388016866],[119,28,70,0.02515295734868655],[119,28,71,0.023578580828464268],[119,28,72,0.022259122859725627],[119,28,73,0.021194518385893778],[119,28,74,0.020381210887390984],[119,28,75,0.019811916698831363],[119,28,76,0.0194755162135045],[119,28,77,0.019357070872703393],[119,28,78,0.019437964556403387],[119,28,79,0.019696167729049127],[119,29,64,0.02787981020549048],[119,29,65,0.02464172159553745],[119,29,66,0.021661920030105745],[119,29,67,0.01892916626073246],[119,29,68,0.016441052046521607],[119,29,69,0.014204707186809194],[119,29,70,0.012226408214383784],[119,29,71,0.010510548350167058],[119,29,72,0.009058976948613885],[119,29,73,0.007870473578312059],[119,29,74,0.0069403565926107825],[119,29,75,0.006260225705888623],[119,29,76,0.00581783776286989],[119,29,77,0.005597114574232976],[119,29,78,0.005578281395904284],[119,29,79,0.005738134352892074],[119,30,64,0.01635399947295703],[119,30,65,0.012888855772103578],[119,30,66,0.00969721752905342],[119,30,67,0.006767619657449524],[119,30,68,0.004096176984579076],[119,30,69,0.0016883578193437835],[119,30,70,-4.5106770602359667E-4],[119,30,71,-0.0023190859851333467],[119,30,72,-0.003915128535069253],[119,30,73,-0.005241621523326539],[119,30,74,-0.006304396345847632],[119,30,75,-0.007112961729421853],[119,30,76,-0.007680638171698221],[119,30,77,-0.008024555857440809],[119,30,78,-0.008165517496025657],[119,30,79,-0.00812772781148843],[119,31,64,0.006079012911340711],[119,31,65,0.0022014039113604483],[119,31,66,-0.0015230238538213123],[119,31,67,-0.005091642410712983],[119,31,68,-0.007952482450908538],[119,31,69,-0.010539509271049493],[119,31,70,-0.012849499685304269],[119,31,71,-0.014880865887314439],[119,31,72,-0.01663435984666005],[119,31,73,-0.018113636037185625],[119,31,74,-0.019325672597117913],[119,31,75,-0.02028105137988086],[119,31,76,-0.020994097701636304],[119,31,77,-0.021482880923705403],[119,31,78,-0.021769077320665665],[119,31,79,-0.021877696976958953],[119,32,64,-0.002184252234639337],[119,32,65,-0.006120974558873346],[119,32,66,-0.009889650531435867],[119,32,67,-0.013499248550334969],[119,32,68,-0.01695363498553726],[119,32,69,-0.020247901228348214],[119,32,70,-0.023377031327583824],[119,32,71,-0.026336986432169834],[119,32,72,-0.02907034619958942],[119,32,73,-0.03071716123896363],[119,32,74,-0.03209502901582425],[119,32,75,-0.033215542789204806],[119,32,76,-0.03409393564319313],[119,32,77,-0.034749081109144736],[119,32,78,-0.03520335516798764],[119,32,79,-0.03548236136712641],[119,33,64,-0.009942584194831391],[119,33,65,-0.013931375701026984],[119,33,66,-0.01773994095239534],[119,33,67,-0.021376206718793637],[119,33,68,-0.02484481912080709],[119,33,69,-0.028142622661204382],[119,33,70,-0.03126629310855942],[119,33,71,-0.03421339243996909],[119,33,72,-0.03698309820953101],[119,33,73,-0.03957679094025203],[119,33,74,-0.041998499599252774],[119,33,75,-0.04425520557743454],[119,33,76,-0.046357005943021855],[119,33,77,-0.04780414075900827],[119,33,78,-0.048448383694863956],[119,33,79,-0.048920652849492735],[119,34,64,-0.017204237540098297],[119,34,65,-0.021237601877562955],[119,34,66,-0.02508123443274659],[119,34,67,-0.02874167438821191],[119,34,68,-0.03222411159325661],[119,34,69,-0.03552710010773947],[119,34,70,-0.038648975878017716],[119,34,71,-0.04158886809980966],[119,34,72,-0.04434741275856518],[119,34,73,-0.046927326406082326],[119,34,74,-0.04933384021456095],[119,34,75,-0.05157499470547086],[119,34,76,-0.0536617958937956],[119,34,77,-0.05560823391566774],[119,34,78,-0.05743116551632881],[119,34,79,-0.05915006206285381],[119,35,64,-0.023995261218712073],[119,35,65,-0.028065412797601618],[119,35,66,-0.031938906569646756],[119,35,67,-0.0356206182276745],[119,35,68,-0.03911607505823654],[119,35,69,-0.04242548284473163],[119,35,70,-0.04554878242113527],[119,35,71,-0.04848660711440392],[119,35,72,-0.051240974964045755],[119,35,73,-0.05381584451300155],[119,35,74,-0.056217534191372806],[119,35,75,-0.058455005662663845],[119,35,76,-0.0605400118374942],[119,35,77,-0.06248711057952225],[119,35,78,-0.06431354542984329],[119,35,79,-0.06603899495657764],[119,36,64,-0.030360355425259822],[119,36,65,-0.034459424038578886],[119,36,66,-0.03835730999384178],[119,36,67,-0.04205703533450475],[119,36,68,-0.04556430244139001],[119,36,69,-0.0488809030562905],[119,36,70,-0.052008306658699446],[119,36,71,-0.054948558395004975],[119,36,72,-0.05770494795599701],[119,36,73,-0.06028254610492693],[119,36,74,-0.06268860885465057],[119,36,75,-0.06493284963055337],[119,36,76,-0.06702758008154734],[119,36,77,-0.06649417643802256],[119,36,78,-0.061428186180077345],[119,36,79,-0.05641417579164436],[119,37,64,-0.036363527324126496],[119,37,65,-0.040483808354034964],[119,37,66,-0.044400523956375615],[119,37,67,-0.04811475407457759],[119,37,68,-0.051632273595017084],[119,37,69,-0.05495639469305261],[119,37,70,-0.05809002209533523],[119,37,71,-0.06103649175755198],[119,37,72,-0.06380021877681545],[119,37,73,-0.06638721730936327],[119,37,74,-0.06769571063615507],[119,37,75,-0.062458525512413536],[119,37,76,-0.05721858332070488],[119,37,77,-0.05199472810250509],[119,37,78,-0.046807732382447106],[119,37,79,-0.0416800694049918],[119,38,64,-0.04208619388848302],[119,38,65,-0.046220388366024615],[119,38,66,-0.050150451005900556],[119,38,67,-0.05387554320498127],[119,38,68,-0.057401485099537526],[119,38,69,-0.06073305618706397],[119,38,70,-0.06387449314286767],[119,38,71,-0.06683027632740497],[119,38,72,-0.0641522612071965],[119,38,73,-0.05882690058806459],[119,38,74,-0.053473125591746926],[119,38,75,-0.04810630551936565],[119,38,76,-0.04274361947317117],[119,38,77,-0.0374040827213502],[119,38,78,-0.03210845194505612],[119,38,79,-0.026879010741217384],[119,39,64,-0.04757624124838156],[119,39,65,-0.05171647633367878],[119,39,66,-0.055653634623720985],[119,39,67,-0.059384983831307095],[119,39,68,-0.06291641140014444],[119,39,69,-0.06622772521882767],[119,39,70,-0.060916914194860866],[119,39,71,-0.055544754791502574],[119,39,72,-0.050123572725191995],[119,39,73,-0.04466645493082471],[119,39,74,-0.039187648099700566],[119,39,75,-0.03370283709058813],[119,39,76,-0.028229303691973337],[119,39,77,-0.02278596649786671],[119,39,78,-0.01739330292884094],[119,39,79,-0.012073154679804653],[119,40,64,-0.05284219873683387],[119,40,65,-0.056979088180102055],[119,40,66,-0.06091549577765586],[119,40,67,-0.0632320735518285],[119,40,68,-0.05793010753876921],[119,40,69,-0.05254544570711732],[119,40,70,-0.04709204786164048],[119,40,71,-0.04158318167430072],[119,40,72,-0.036032067956043495],[119,40,73,-0.030452408949366145],[119,40,74,-0.02485879943630141],[119,40,75,-0.019267020761056394],[119,40,76,-0.013694218159225993],[119,40,77,-0.008158962064404616],[119,40,78,-0.0026811943275322865],[119,40,79,0.0027179394699836153],[119,41,64,-0.05789692130387789],[119,41,65,-0.06039577824073702],[119,41,66,-0.05514911792133205],[119,41,67,-0.04979287718878054],[119,41,68,-0.04434125232327603],[119,41,69,-0.03881150127630334],[119,41,70,-0.03321914273983132],[119,41,71,-0.02757863867672688],[119,41,72,-0.021904055059323118],[119,41,73,-0.016209608498593882],[119,41,74,-0.010510098469209857],[119,41,75,-0.004821225135136722],[119,41,76,8.402069315753824E-4],[119,41,77,0.006456198571372018],[119,41,78,0.012007578568662788],[119,41,79,0.01747413782274624],[119,42,64,-0.05254775506370742],[119,42,65,-0.04725000347800554],[119,42,66,-0.04184647685940016],[119,42,67,-0.03633668531628657],[119,42,68,-0.030735157987079986],[119,42,69,-0.025061236982136647],[119,42,70,-0.01933212265958786],[119,42,71,-0.013563527554122181],[119,42,72,-0.0077703603977598385],[119,42,73,-0.0019672986793207903],[119,42,74,0.003830750655491263],[119,42,75,0.009608302466409407],[119,42,76,0.01534905646212071],[119,42,77,0.021035771572120963],[119,42,78,0.02665025093544572],[119,42,79,0.03217343655358011],[119,43,64,-0.039592723871471946],[119,43,65,-0.034129429935482014],[119,43,66,-0.028566652410704853],[119,43,67,-0.02290159982886576],[119,43,68,-0.017149193903285773],[119,43,69,-0.011331073414992902],[119,43,70,-0.005466271478258942],[119,43,71,4.2815789807669783E-4],[119,43,72,0.006336426396972303],[119,43,73,0.012243406905629308],[119,43,74,0.018134138467167764],[119,43,75,0.023993440893399564],[119,43,76,0.029805638979505632],[119,43,77,0.035554395992273155],[119,43,78,0.041222655846715014],[119,43,79,0.0467926931456417],[119,44,64,-0.02670040543414732],[119,44,65,-0.021068777033514553],[119,44,66,-0.015344536151099998],[119,44,67,-0.00952245050984676],[119,44,68,-0.00361790702782315],[119,44,69,0.0023449410549994214],[119,44,70,0.008345061184531516],[119,44,71,0.014363942637870603],[119,44,72,0.020384849520485752],[119,44,73,0.02639218014828499],[119,44,74,0.032370933451745014],[119,44,75,0.03830628275160461],[119,44,76,0.04418325697750732],[119,44,77,0.049986529134080214],[119,44,78,0.055700311563556267],[119,44,79,0.06130835731445128],[119,45,64,-0.013896459681404362],[119,45,65,-0.008094602823023767],[119,45,66,-0.002207340433905909],[119,45,67,0.003773093099407405],[119,45,68,0.009830757171399855],[119,45,69,0.015938772133419796],[119,45,70,0.02207393392158531],[119,45,71,0.028216144602633688],[119,45,72,0.034347629607590184],[119,45,73,0.04045225866906155],[119,45,74,0.04651497122931879],[119,45,75,0.05252130680249502],[119,45,76,0.058457040499266824],[119,45,77,0.06430792365788643],[119,45,78,0.07005952927163997],[119,45,79,0.07569720166391955],[119,46,64,-0.001193610588995194],[119,46,65,0.004778963968047317],[119,46,66,0.010829602617006849],[119,46,67,0.016968630317553517],[119,46,68,0.02317944416283533],[119,46,69,0.029432239398064167],[119,46,70,0.03570147086322358],[119,46,71,0.0419653157545492],[119,46,72,0.04820485494278069],[119,46,73,0.054403355018841124],[119,46,74,0.06054565196702433],[119,46,75,0.06661763708648358],[119,46,76,0.07260584551068178],[119,46,77,0.07849714741298836],[119,46,78,0.08427854173497015],[119,46,79,0.0896828078324911],[119,47,64,0.011395967033670488],[119,47,65,0.01753818143326687],[119,47,66,0.023751170001814256],[119,47,67,0.03004776802866636],[119,47,68,0.03641058339560191],[119,47,69,0.04280671012773364],[119,47,70,0.049208103832088124],[119,47,71,0.055591080322766294],[119,47,72,0.061935462795020144],[119,47,73,0.06822382631504208],[119,47,74,0.07444084065825136],[119,47,75,0.08057271225527812],[119,47,76,0.08660672573863988],[119,47,77,0.09253088532570396],[119,47,78,0.09724049830017577],[119,47,79,0.10165651466657866],[119,48,64,0.023809133283049913],[119,48,65,0.030119452007783584],[119,48,66,0.036493639178019094],[119,48,67,0.04294694208411588],[119,48,68,0.0494610605372586],[119,48,69,0.05599985856577108],[119,48,70,0.06253266406743391],[119,48,71,0.06903380735231318],[119,48,72,0.0754817376896053],[119,48,73,0.08185823333053409],[119,48,74,0.0881477061685054],[119,48,75,0.09398154875387085],[119,48,76,0.0990164518988673],[119,48,77,0.10393849843999275],[119,48,78,0.1087533330692981],[119,48,79,0.11346645431628467],[119,49,64,0.03597640579486402],[119,49,65,0.04245302656239033],[119,49,66,0.04898732527548039],[119,49,67,0.05559681890164794],[119,49,68,0.062262196189995594],[119,49,69,0.06894401902038284],[119,49,70,0.07560889763369505],[119,49,71,0.08222907318600003],[119,49,72,0.088008268820461],[119,49,73,0.09363224548287576],[119,49,74,0.09913877830346209],[119,49,75,0.10453503013966686],[119,49,76,0.1098265878036109],[119,49,77,0.11501792286775948],[119,49,78,0.1201127586904833],[119,49,79,0.12511434360352253],[119,50,64,0.04572039392035212],[119,50,65,0.05293536534469458],[119,50,66,0.05994407053730648],[119,50,67,0.06671753151091142],[119,50,68,0.07326705420619772],[119,50,69,0.07962658182159105],[119,50,70,0.08582376666541439],[119,50,71,0.09188035504607853],[119,50,72,0.09781313048463346],[119,50,73,0.10363477147350875],[119,50,74,0.10935462239264247],[119,50,75,0.11497937644170937],[119,50,76,0.12051366969169257],[119,50,77,0.12596058559850598],[119,50,78,0.13132206955230047],[119,50,79,0.13659925325861783],[119,51,64,0.05443597210686457],[119,51,65,0.06175474004604515],[119,51,66,0.06887385370335365],[119,51,67,0.07576230691832839],[119,51,68,0.0824323496372556],[119,51,69,0.0889209285494437],[119,51,70,0.09525815477756427],[119,51,71,0.10146764074270515],[119,51,72,0.1075674590233609],[119,51,73,0.11357102043134665],[119,51,74,0.11948786982142622],[119,51,75,0.12532439838882076],[119,51,76,0.13108447144389035],[119,51,77,0.13676997088419857],[119,51,78,0.14238125180747083],[119,51,79,0.14791751292491712],[119,52,64,0.06320788909799868],[119,52,65,0.07062273248283872],[119,52,66,0.07784308976125154],[119,52,67,0.0848361972309924],[119,52,68,0.09161530570401524],[119,52,69,0.09822027130512662],[119,52,70,0.10468363006162884],[119,52,71,0.11103088400705052],[119,52,72,0.11728146811266062],[119,52,73,0.12344964125343541],[119,52,74,0.12954529964724215],[119,52,75,0.1355747114324238],[119,52,76,0.1415411712738495],[119,52,77,0.14744557410895254],[119,52,78,0.15328690736000197],[119,52,79,0.15906266114723547],[119,53,64,0.07204067908186725],[119,53,65,0.07954417508809815],[119,53,66,0.08685680257283591],[119,53,67,0.0939443401782642],[119,53,68,0.10082107747606914],[119,53,69,0.10752963362038069],[119,53,70,0.1141048925540865],[119,53,71,0.12057423640898406],[119,53,72,0.12695851267864103],[119,53,73,0.13327293030537776],[119,53,74,0.1395278830599185],[119,53,75,0.14572969880710837],[119,53,76,0.15188131346504272],[119,53,77,0.15798286867619327],[119,53,78,0.16403223241445905],[119,53,79,0.17002544195196706],[119,54,64,0.08093008391546037],[119,54,65,0.08851518315468883],[119,54,66,0.09591142970384094],[119,54,67,0.1030834647496845],[119,54,68,0.11004663494413654],[119,54,69,0.11684612889717341],[119,54,70,0.12351906104398684],[119,54,71,0.13009465128034245],[119,54,72,0.13659518457016015],[119,54,73,0.14303690432313287],[119,54,74,0.1494308378792957],[119,54,75,0.15578355264033336],[119,54,76,0.16209784158992863],[119,54,77,0.1683733371459094],[119,54,78,0.17460705248225056],[119,54,79,0.1807938496496653],[119,55,64,0.08986347255085031],[119,55,65,0.09752355240497801],[119,55,66,0.10499519608469216],[119,55,67,0.11224223777174624],[119,55,68,0.11928107958924741],[119,55,69,0.12615924530065198],[119,55,70,0.13291592584000123],[119,55,71,0.1395821050473741],[119,55,72,0.14618150419411344],[119,55,73,0.15273146502535123],[119,55,74,0.159243769633829],[119,55,75,0.16572539566969927],[119,55,76,0.172179205581797],[119,55,77,0.1786045687751584],[119,55,78,0.18499791575435487],[119,55,79,0.19135322350310718],[119,56,64,0.09882036855270135],[119,56,65,0.10654926539410216],[119,56,66,0.1140885964336909],[119,56,67,0.12140171885623201],[119,56,68,0.12850606868770645],[119,56,69,0.13545123727669853],[119,56,70,0.14227830639327768],[119,56,71,0.14901992086230725],[119,56,72,0.1557012110225881],[119,56,73,0.1623406582602184],[119,56,74,0.16895090192545037],[119,56,75,0.17553948612085818],[119,56,76,0.18210954502765092],[119,56,77,0.18866042561492594],[119,56,78,0.19518824675066884],[119,56,79,0.20168639390404938],[119,57,64,0.10777308836145107],[119,57,65,0.11556510948159461],[119,57,66,0.12316498923745485],[119,57,67,0.13053592656695623],[119,57,68,0.13769635024357538],[119,57,69,0.14469762661619967],[119,57,70,0.15158251670767034],[119,57,71,0.15838519744903934],[119,57,72,0.16513215584045385],[119,57,73,0.17184303047649305],[119,57,74,0.17853139875763457],[119,57,75,0.18520550827613902],[119,57,76,0.19186895103203944],[119,57,77,0.1985212793016011],[119,57,78,0.20515856214380282],[119,57,79,0.21177388169081252],[119,58,64,0.11668749285079],[119,58,65,0.12453740900380161],[119,58,66,0.13219130498538342],[119,58,67,0.1396125185585338],[119,58,68,0.1468204113526813],[119,58,69,0.1538678159064479],[119,58,70,0.1607989413937154],[119,58,71,0.16764934600959824],[119,58,72,0.1744467975406311],[119,58,73,0.1812120852541109],[119,58,74,0.18795978145611908],[119,58,75,0.19469895122292102],[119,58,76,0.20143380896657215],[119,58,77,0.2081643206512402],[119,58,78,0.21488675062926066],[119,58,79,0.2215941522161017],[119,59,64,0.12552385460162865],[119,59,65,0.13342687415598065],[119,59,66,0.14112887123524093],[119,59,67,0.1485935883257175],[119,59,68,0.15584124269230995],[119,59,69,0.162925817106142],[119,59,70,0.16989272512529183],[119,59,71,0.17677873794760568],[119,59,72,0.18361280719127143],[119,59,73,0.1904168425543594],[119,59,74,0.19720644274404256],[119,59,75,0.203991578210611],[119,59,76,0.21077722436684232],[119,59,77,0.21756394411844665],[119,59,78,0.2243484186735236],[119,59,79,0.23112392573910195],[119,60,64,0.13423784276605946],[119,60,65,0.14218956854345086],[119,60,66,0.14993435653773465],[119,60,67,0.15743658065374233],[119,60,68,0.16471722128450875],[119,60,69,0.1718310974368788],[119,60,70,0.17882457771779392],[119,60,71,0.1857354656290923],[119,60,72,0.19259378156805532],[119,60,73,0.19942250282394514],[119,60,74,0.20623826001325968],[119,60,75,0.21305198853091298],[119,60,76,0.21986953373008264],[119,60,77,0.22669220867877918],[119,60,78,0.23351730347369265],[119,60,79,0.2403385452224509],[119,61,64,0.14278161624347857],[119,61,65,0.15077798612360352],[119,61,66,0.1585608239264325],[119,61,67,0.16609531645650094],[119,61,68,0.17340310219703634],[119,61,69,0.18053953322186583],[119,61,70,0.18755168540825878],[119,61,71,0.1944782066884746],[119,61,72,0.20135005656017654],[119,61,73,0.2081912062324947],[119,61,74,0.21501929791048585],[119,61,75,0.2218462618463026],[119,61,76,0.22867888991195365],[119,61,77,0.2355193645748555],[119,61,78,0.24236574228090682],[119,61,79,0.2492123903715117],[119,62,64,0.1511050500044864],[119,62,65,0.15914226264611395],[119,62,66,0.16695891933518947],[119,62,67,0.17452115261307646],[119,62,68,0.18185114503494898],[119,62,69,0.18900449775418718],[119,62,70,0.1960287546295449],[119,62,71,0.20296321835650027],[119,62,72,0.2098396470820417],[119,62,73,0.21668291379788115],[119,62,74,0.22351162707984892],[119,62,75,0.23033871185902363],[119,62,76,0.23717194902882646],[119,62,77,0.24401447281062244],[119,62,78,0.2508652249158681],[119,62,79,0.25771936465645107],[119,63,64,0.15915710125567334],[119,63,65,0.16723152842116257],[119,63,66,0.17507820189603246],[119,63,67,0.1826642838750367],[119,63,68,0.1900123824115404],[119,63,69,0.19717809048954804],[119,63,70,0.20420919566332188],[119,63,71,0.21114546926302769],[119,63,72,0.21801932098552723],[119,63,73,0.22485641790664795],[119,63,74,0.23167626654960374],[119,63,75,0.23849275675550666],[119,63,76,0.24531466621385067],[119,63,77,0.25214612462228225],[119,63,78,0.2589870365534517],[119,63,79,0.2658334622132285],[119,64,64,0.16688728674290326],[119,64,65,0.17499537356553296],[119,64,66,0.1828685871108715],[119,64,67,0.19047515768195594],[119,64,68,0.19783800108131241],[119,64,69,0.20501247808599046],[119,64,70,0.2120464165228036],[119,64,71,0.21897987887750262],[119,64,72,0.22584577692681676],[119,64,73,0.23267045195060262],[119,64,74,0.2394742192246081],[119,64,75,0.24627187560034347],[119,64,76,0.2530731690849971],[119,64,77,0.2598832294400446],[119,64,78,0.26670295891979495],[119,64,79,0.27352938237152846],[119,65,64,0.17424728567370187],[119,65,65,0.1823854404017709],[119,65,66,0.19028191775581738],[119,65,67,0.19790601692498022],[119,65,68,0.20528085095355356],[119,65,69,0.21246136267925061],[119,65,70,0.21949524260947503],[119,65,71,0.22642268026729573],[119,65,72,0.23327694197987398],[119,65,73,0.24008491495598996],[119,65,74,0.24686761641514832],[119,65,75,0.25364066663268375],[119,65,76,0.26041472486745576],[119,65,77,0.26719588723991206],[119,65,78,0.2739860457261417],[119,65,79,0.2807832075289773],[119,66,64,0.18119267017350185],[119,66,65,0.1893571450219442],[119,66,66,0.19727366461855775],[119,66,67,0.20491257284754066],[119,66,68,0.21229708426417948],[119,66,69,0.2194815797539521],[119,66,70,0.22651346457496546],[119,66,71,0.2334329086595165],[119,66,72,0.24027339151590565],[119,66,73,0.2470622137341298],[119,66,74,0.25382097391364417],[119,66,75,0.2605660099304656],[119,66,76,0.2673088035599323],[119,66,77,0.2740563475692444],[119,66,78,0.2808114744881276],[119,66,79,0.28757314635751025],[119,67,64,0.18741936696274655],[119,67,65,0.19587152884456815],[119,67,66,0.20380475797882971],[119,67,67,0.21145580907567554],[119,67,68,0.21884792598170524],[119,67,69,0.22603482676539297],[119,67,70,0.23306351561200814],[119,67,71,0.2399740170850036],[119,67,72,0.24679989266374114],[119,67,73,0.25356872388268564],[119,67,74,0.26030256093790116],[119,67,75,0.2670183357239382],[119,67,76,0.27372823836114435],[119,67,77,0.28044005636888697],[119,67,78,0.2871574757317997],[119,67,79,0.2938803431948373],[119,68,64,0.1928041783618966],[119,68,65,0.20129390037392125],[119,68,66,0.20984355045364073],[119,68,67,0.21750391748210357],[119,68,68,0.22490157623597445],[119,68,69,0.23208952338203528],[119,68,70,0.23911427911823363],[119,68,71,0.24601562010961237],[119,68,72,0.25282707240139285],[119,68,73,0.2595763707133365],[119,68,74,0.266285883019769],[119,68,75,0.2729729994158688],[119,68,76,0.27965048436649675],[119,68,77,0.2863267915277963],[119,68,78,0.29300634042166734],[119,68,79,0.29968975432989875],[119,69,64,0.1980150437244201],[119,69,65,0.20651911304799242],[119,69,66,0.2151662847763708],[119,69,67,0.22303437130721462],[119,69,68,0.2304352505630089],[119,69,69,0.2376228094770841],[119,69,70,0.24464303313921723],[119,69,71,0.25153537226148925],[119,69,72,0.25833321699847245],[119,69,73,0.2650643368330888],[119,69,74,0.27175128546190064],[119,69,75,0.2784117697092881],[119,69,76,0.2850589815949159],[119,69,77,0.2917018927719089],[119,69,78,0.2983455106418968],[119,69,79,0.3049910955384169],[119,70,64,0.20303980288004453],[119,70,65,0.21154899084775206],[119,70,66,0.2202051647587133],[119,70,67,0.2280482085707588],[119,70,68,0.23545018837603607],[119,70,69,0.24263618472735216],[119,70,70,0.24965158114901576],[119,70,71,0.2565354116308455],[119,70,72,0.26332081945105956],[119,70,73,0.2700354816982837],[119,70,74,0.2767019984474623],[119,70,75,0.28333824564000504],[119,70,76,0.2899576908131421],[119,70,77,0.29656967091599584],[119,70,78,0.30317963153797955],[119,70,79,0.3097893269596224],[119,71,64,0.20783212433028928],[119,71,65,0.21633506677348885],[119,71,66,0.22491664060964195],[119,71,67,0.23258821162032048],[119,71,68,0.2399913707145733],[119,71,69,0.24717662037536944],[119,71,70,0.25418853798761976],[119,71,71,0.26106553478833566],[119,71,72,0.267840303968841],[119,71,73,0.27454023382089765],[119,71,74,0.2811877848944417],[119,71,75,0.28780083023099257],[119,71,76,0.2943929578321059],[119,71,77,0.3009737346152624],[119,71,78,0.30754893119803944],[119,71,79,0.3141207069360329],[119,72,64,0.21234898597097843],[119,72,65,0.22083223968374277],[119,72,66,0.22901989451740865],[119,72,67,0.2366949373101157],[119,72,68,0.24410148401055737],[119,72,69,0.2512887303490059],[119,72,70,0.25830012307806727],[119,72,71,0.2651731436903065],[119,72,72,0.27193975057017883],[119,72,73,0.2786267850054499],[119,72,74,0.2852563400298451],[119,72,75,0.2918460911674184],[119,72,76,0.29840958824665753],[119,72,77,0.30495650754738995],[119,72,78,0.31149286363383294],[119,72,79,0.3180211803133608],[119,73,64,0.21650538788570686],[119,73,65,0.22474650714150607],[119,73,66,0.2327184417790428],[119,73,67,0.2403999326771844],[119,73,68,0.24781364481962864],[119,73,69,0.2550070493009527],[119,73,70,0.26202206186162075],[119,73,71,0.2688948627429438],[119,73,72,0.2756563382489453],[119,73,73,0.2823324842724771],[119,73,74,0.28894477075108416],[119,73,75,0.2955104661212924],[119,73,76,0.30204292094171925],[119,73,77,0.30855180995444553],[119,73,78,0.3150433319480979],[119,73,79,0.3215203668757433],[119,74,64,0.21980671705911992],[119,74,65,0.22805593402726448],[119,74,66,0.236036347285296],[119,74,67,0.24372835113621366],[119,74,68,0.2511540189650222],[119,74,69,0.2583586377311173],[119,74,70,0.26538215434520795],[119,74,71,0.2722590441236911],[119,74,72,0.2790187577122815],[119,74,73,0.28568612724027864],[119,74,74,0.2922817306526748],[119,74,75,0.29882221327726183],[119,74,76,0.3053205657921507],[119,74,77,0.31178635786439807],[119,74,78,0.31822592683037765],[119,74,79,0.324642520883718],[119,75,64,0.22274141392319996],[119,75,65,0.23100172441479355],[119,75,66,0.2389943768736759],[119,75,67,0.24670151465275977],[119,75,68,0.2541443885657726],[119,75,69,0.2613656374828396],[119,75,70,0.2684027973216257],[119,75,71,0.2752882310374314],[119,75,72,0.28204958736712865],[119,75,73,0.2887102151531263],[119,75,74,0.29528953216237913],[119,75,75,0.30180334743472825],[119,75,76,0.3082641363121821],[119,75,77,0.3146812674147193],[119,75,78,0.32106118093645214],[119,75,79,0.32740751773900084],[119,76,64,0.22532899096354173],[119,76,65,0.23360366238935545],[119,76,66,0.24161248521964956],[119,76,67,0.24933941774056226],[119,76,68,0.2568046628139774],[119,76,69,0.2640477735313895],[119,76,70,0.2711034562806252],[119,76,71,0.2780015750796148],[119,76,72,0.2847676289419411],[119,76,73,0.2914231802199499],[119,76,74,0.29798623279264885],[119,76,75,0.3044715590968891],[119,76,76,0.31089097512929814],[119,76,77,0.3172535626716471],[119,76,78,0.3235658381113794],[119,76,79,0.3298318673422194],[119,77,64,0.22759142706574767],[119,77,65,0.2358835931925987],[119,77,66,0.2439122396385862],[119,77,67,0.2516631689789629],[119,77,68,0.25915532820592746],[119,77,69,0.26642479781368184],[119,77,70,0.2735030828508763],[119,77,71,0.2804172036931238],[119,77,72,0.28719019893904124],[119,77,73,0.29384157373306197],[119,77,74,0.3003876923176068],[119,77,75,0.30684211376308695],[119,77,76,0.3132158699674163],[119,77,77,0.3195176851557182],[119,77,78,0.32575413624316246],[119,77,79,0.33192975354962434],[119,78,64,0.22955546780607028],[119,78,65,0.23786775397671084],[119,78,66,0.24591917539028924],[119,78,67,0.25369736561949596],[119,78,68,0.2612198337946433],[119,78,69,0.2685188707009795],[119,78,70,0.27562247345645474],[119,78,71,0.28255453354117194],[119,78,72,0.28933537194175657],[119,78,73,0.29598221325997487],[119,78,74,0.3025095975060319],[119,78,75,0.30892972845998146],[119,78,76,0.3152527576446133],[119,78,77,0.3214870031083592],[119,78,78,0.3276391023645969],[119,78,79,0.33371409897426774],[119,79,64,0.2312354957508031],[119,79,65,0.2395697824710341],[119,79,66,0.24764616414489554],[119,79,67,0.25545406534690457],[119,79,68,0.2630094159213768],[119,79,69,0.27034048157052826],[119,79,70,0.27747151338746534],[119,79,71,0.284423043434571],[119,79,72,0.29121245957703773],[119,79,73,0.29785451194404844],[119,79,74,0.3043617496357831],[119,79,75,0.31074488647700815],[119,79,76,0.31701309479706213],[119,79,77,0.32317422638980564],[119,79,78,0.3292349599728131],[119,79,79,0.33520087462265735],[119,80,64,0.23258085872407042],[119,80,65,0.24093835909178188],[119,80,66,0.24904197270321407],[119,80,67,0.25688292274662705],[119,80,68,0.2644754961057994],[119,80,69,0.2718437834440928],[119,80,70,0.2790080907516284],[119,80,71,0.2859853564518656],[119,80,72,0.29278977833282543],[119,80,73,0.29943336386095176],[119,80,74,0.3059264023618272],[119,80,75,0.3122778577569493],[119,80,76,0.318495680746807],[119,80,77,0.324587039525672],[119,80,78,0.3305584682999506],[119,80,79,0.3364159330593287],[119,81,64,0.2335403674067756],[119,81,65,0.24192136514255438],[119,81,66,0.2500542755342208],[119,81,67,0.2579321749589421],[119,81,68,0.26556772341124096],[119,81,69,0.27298077676413224],[119,81,70,0.2801875418248205],[119,81,71,0.2872011322668321],[119,81,72,0.2940322647211671],[119,81,73,0.30068986908584067],[119,81,74,0.30718161136132954],[119,81,75,0.31351432754999103],[119,81,76,0.319694367383748],[119,81,77,0.32572784686417205],[119,81,78,0.3316208088095097],[119,81,79,0.337379290803703],[119,82,64,0.23408041264558085],[119,82,65,0.24248395830567898],[119,82,66,0.2506474704399098],[119,82,67,0.2585659597834888],[119,82,68,0.2662505461964252],[119,82,69,0.27371688346521295],[119,82,70,0.28097698332758225],[119,82,71,0.28803992926203903],[119,82,72,0.2949126618909954],[119,82,73,0.3016006685542988],[119,82,74,0.3081085751335655],[119,82,75,0.3144406384670875],[119,82,76,0.32060113794983985],[119,82,77,0.32659466516103103],[119,82,78,0.33242631059952404],[119,82,79,0.33810174683457483],[119,83,64,0.23418256042004718],[119,83,65,0.24260624368303577],[119,83,66,0.25080045667968176],[119,83,67,0.2587622355492928],[119,83,68,0.2665013078105009],[119,83,69,0.2740292488991347],[119,83,70,0.2813538465666799],[119,83,71,0.2884799919182384],[119,83,72,0.295410575958834],[119,83,73,0.30214727945322684],[119,83,74,0.30869125389755286],[119,83,75,0.3150436916924483],[119,83,76,0.3212062838938912],[119,83,77,0.32718156419736555],[119,83,78,0.3329731380797774],[119,83,79,0.3385857962808371],[119,84,64,0.23384127344666872],[119,84,65,0.24228106818433262],[119,84,66,0.2505045320384856],[119,84,67,0.2585108141431692],[119,84,68,0.2663084484487282],[119,84,69,0.27390514214746525],[119,84,70,0.28130450181359906],[119,84,71,0.2885071202664058],[119,84,72,0.29551160651312375],[119,84,73,0.3023154974469727],[119,84,74,0.30891604875982037],[119,84,75,0.3153109028552793],[119,84,76,0.32149863186945793],[119,84,77,0.32747915422060275],[119,84,78,0.33325402341191057],[119,84,79,0.3388265881026078],[119,85,64,0.2330617641917869],[119,85,65,0.24151194292901082],[119,85,66,0.24976141333783078],[119,85,67,0.25781151145610065],[119,85,68,0.2656698171147007],[119,85,69,0.27283457735522226],[119,85,70,0.2799836091422791],[119,85,71,0.2871448039947225],[119,85,72,0.29430983376653463],[119,85,73,0.3014710117408517],[119,85,74,0.30862045110199304],[119,85,75,0.3152302129301057],[119,85,76,0.321465820672342],[119,85,77,0.3274751194538305],[119,85,78,0.33325704244011567],[119,85,79,0.33881292501705396],[119,86,64,0.23185798467063481],[119,86,65,0.2403110989704815],[119,86,66,0.24858138555951004],[119,86,67,0.25667242019684844],[119,86,68,0.26449637148817035],[119,86,69,0.27135674269422216],[119,86,70,0.2782264794584278],[119,86,71,0.2851000115379155],[119,86,72,0.2919736312999979],[119,86,73,0.29884435956475247],[119,86,74,0.3057089551814343],[119,86,75,0.31256307131749783],[119,86,76,0.3194005610403335],[119,86,77,0.32621293438127763],[119,86,78,0.33296643342755433],[119,86,79,0.3385283044930667],[119,87,64,0.23025075797566175],[119,87,65,0.23869768122792412],[119,87,66,0.24698158434416762],[119,87,67,0.2551083096359811],[119,87,68,0.26299050172563687],[119,87,69,0.26957460826607493],[119,87,70,0.2761523764964401],[119,87,71,0.28272251795172076],[119,87,72,0.28928599116405285],[119,87,73,0.2958446882980308],[119,87,74,0.3024002787812972],[119,87,75,0.30895321336294473],[119,87,76,0.3155018915921648],[119,87,77,0.3220419952774152],[119,87,78,0.32856599006420845],[119,87,79,0.33506279686190865],[119,88,64,0.22826605607216727],[119,88,65,0.23669608511552875],[119,88,66,0.24498441624606032],[119,88,67,0.2531391564827604],[119,88,68,0.2611667116851726],[119,88,69,0.2674901540233813],[119,88,70,0.2737673247185088],[119,88,71,0.2800226513298698],[119,88,72,0.2862617263679052],[119,88,73,0.29249139440260247],[119,88,74,0.298718415414133],[119,88,75,0.30494830244325355],[119,88,76,0.31118433698500914],[119,88,77,0.31742676509432954],[119,88,78,0.3236721767071369],[119,88,79,0.3299130702302336],[119,89,64,0.22593342802243527],[119,89,65,0.23433443999125808],[119,89,66,0.24261612077104291],[119,89,67,0.25078881076165205],[119,89,68,0.2588591208792865],[119,89,69,0.26510328787409054],[119,89,70,0.2710754995358999],[119,89,71,0.27700920952359165],[119,89,72,0.28291453441256736],[119,89,73,0.28880326586541233],[119,89,74,0.29468734257136475],[119,89,75,0.3005775103226102],[119,89,76,0.3064821741539473],[119,89,77,0.31240644595415645],[119,89,78,0.3183513904490325],[119,89,79,0.3243134719623251],[119,90,64,0.2232845824485546],[119,90,65,0.23164324320445318],[119,90,66,0.23990547789451555],[119,90,67,0.24808380024215848],[119,90,68,0.25618531749637746],[119,90,69,0.26241278769757975],[119,90,70,0.26808000252924674],[119,90,71,0.2736900487775967],[119,90,72,0.2792573825060454],[119,90,73,0.2847986506324667],[119,90,74,0.29033096387686025],[119,90,75,0.2958703714579947],[119,90,76,0.30143054197261504],[119,90,77,0.3070216543295658],[119,90,78,0.312649502059476],[119,90,79,0.3183148137835799],[119,91,64,0.22035212771729268],[119,91,65,0.22865414820231397],[119,91,66,0.2368826644481994],[119,91,67,0.2450522766837349],[119,91,68,0.2531708627172557],[119,91,69,0.25941711938199763],[119,91,70,0.26478352345011913],[119,91,71,0.2700725702735792],[119,91,72,0.27530280180166555],[119,91,73,0.2804955448318662],[119,91,74,0.2856729811451894],[119,91,75,0.29085643259522037],[119,91,76,0.2960648661070755],[119,91,77,0.30131362293901215],[119,91,78,0.3066133759652426],[119,91,79,0.3119693181587412],[119,92,64,0.21716847302689635],[119,92,65,0.22539890985865238],[119,92,66,0.23357826247849314],[119,92,67,0.24172310688613768],[119,92,68,0.2498423412052163],[119,92,69,0.2561151282746541],[119,92,70,0.2611888866574882],[119,92,71,0.26616410253664124],[119,92,72,0.271063088949855],[119,92,73,0.2759115994366085],[119,92,74,0.28073669537311613],[119,92,75,0.285564840889311],[119,92,76,0.2904202308531427],[119,92,77,0.29532335676351845],[119,92,78,0.3002898147579412],[119,92,79,0.3053293593198419],[119,93,64,0.2137648932935118],[119,93,65,0.22190848991230333],[119,93,66,0.23002242241275997],[119,93,67,0.2381251112826778],[119,93,68,0.24622669387793455],[119,93,69,0.25250660165208716],[119,93,70,0.25729947983414714],[119,93,71,0.2619721778259315],[119,93,72,0.26655041339257346],[119,93,73,0.271064044128973],[119,93,74,0.2755447357759291],[119,93,75,0.2800238700197736],[119,93,76,0.28453069778765633],[119,93,77,0.2890907433681726],[119,93,78,0.29372446401277447],[119,93,79,0.29844616901304616],[119,94,64,0.21017076047270483],[119,94,65,0.2182123251459085],[119,94,66,0.22624418362193333],[119,94,67,0.23428645257829414],[119,94,68,0.2423506915203207],[119,94,69,0.24859270001628508],[119,94,70,0.2531195630062512],[119,94,71,0.2575047007851452],[119,94,72,0.26177682895878174],[119,94,73,0.2659695272315432],[119,94,74,0.2701187160572974],[119,94,75,0.27426038382269907],[119,94,76,0.2784285710908354],[119,94,77,0.28265361771491143],[119,94,78,0.286960677921095],[119,94,79,0.29136850776252815],[119,95,64,0.20641294370882304],[119,95,65,0.214337760697966],[119,95,66,0.22227095473796155],[119,95,67,0.23023417671586252],[119,95,68,0.23824055140403277],[119,95,69,0.24437625521015444],[119,95,70,0.24865445605562866],[119,95,71,0.2527700077729865],[119,95,72,0.25675418844039666],[119,95,73,0.2606438706668134],[119,95,74,0.26447881717388777],[119,95,75,0.2682992370101686],[119,95,76,0.2721436094222933],[119,95,77,0.2760467816569312],[119,95,78,0.2800383462233781],[119,95,79,0.2841413024159088],[119,96,64,0.2025153804799403],[119,96,65,0.21030965068039748],[119,96,66,0.2181281558710932],[119,96,67,0.22599390825100155],[119,96,68,0.23392169888972206],[119,96,69,0.23986193351875337],[119,96,70,0.2439106030693042],[119,96,71,0.2477768154280096],[119,96,72,0.25149395994073226],[119,96,73,0.2551017389973517],[119,96,74,0.2586432959232514],[119,96,75,0.2621626125922858],[119,96,76,0.2657021842565448],[119,96,77,0.26930097830802907],[119,96,78,0.2729926829136381],[119,96,79,0.27680425070376347],[119,97,64,0.19849882069763283],[119,97,65,0.20615012806912125],[119,97,66,0.21383902467362736],[119,97,67,0.22158970202663764],[119,97,68,0.22941867581145933],[119,97,69,0.2350562620835131],[119,97,70,0.23889551201414022],[119,97,71,0.24253405714672416],[119,97,72,0.24600694389163671],[119,97,73,0.2493562216816987],[119,97,74,0.25262791874545043],[119,97,75,0.25586929565815414],[119,97,76,0.25912638460460047],[119,97,77,0.2624418214819241],[119,97,78,0.26585297717068623],[119,97,79,0.2693903935146877],[119,98,64,0.19438074552925488],[119,98,65,0.20187854564679653],[119,98,66,0.20942458801412303],[119,98,67,0.2170440528645006],[119,98,68,0.22475519728002086],[119,98,69,0.22996751710701308],[119,98,70,0.23361756835896022],[119,98,71,0.23705060627075736],[119,98,72,0.24030288973366168],[119,98,73,0.24341832775977615],[119,98,74,0.24644532018771292],[119,98,75,0.2494338832113543],[119,98,76,0.2524330680686117],[119,98,77,0.2554886803992023],[119,98,78,0.2586413069579557],[119,98,79,0.26192465555935945],[119,99,64,0.1901754625328429],[119,99,65,0.1975115896020398],[119,99,66,0.20490380085616583],[119,99,67,0.21237806482841776],[119,99,68,0.2199543583896666],[119,99,69,0.2246054724639364],[119,99,70,0.22808572138991118],[119,99,71,0.23133488488595355],[119,99,72,0.23439001134320772],[119,99,73,0.23729639225296104],[119,99,74,0.24010428553425675],[119,99,75,0.2428659297899851],[119,99,76,0.2456328581932684],[119,99,77,0.24845351985955622],[119,99,78,0.25137121571834087],[119,99,79,0.2544223550681912],[119,100,64,0.18589437853257923],[119,100,65,0.19306356722939885],[119,100,66,0.2002938537801329],[119,100,67,0.20761178146545656],[119,100,68,0.21503899217352562],[119,100,69,0.21898100746267282],[119,100,70,0.22230904208021895],[119,100,71,0.22539435723669485],[119,100,72,0.22827440037480098],[119,100,73,0.2309953936312634],[119,100,74,0.23360895715346655],[119,100,75,0.23616902863423933],[119,100,76,0.23872908809398147],[119,100,77,0.2413396960776403],[119,100,78,0.24404635257679036],[119,100,79,0.24688768314073908],[119,101,64,0.18154495847735452],[119,101,65,0.1885450760757117],[119,101,66,0.19560855330467505],[119,101,67,0.20276227667220503],[119,101,68,0.2096413740035441],[119,101,69,0.2131085873174111],[119,101,70,0.21629947001373867],[119,101,71,0.2192385207660042],[119,101,72,0.22196323092852205],[119,101,73,0.22452033367839536],[119,101,74,0.22696234378386132],[119,101,75,0.22934439819300065],[119,101,76,0.2317214067636657],[119,101,77,0.23414552158133103],[119,101,78,0.23666393244149173],[119,101,79,0.23931699521374927],[119,102,64,0.177115482895541],[119,102,65,0.18394433508943064],[119,102,66,0.1908361942199157],[119,102,67,0.1978180485828232],[119,102,68,0.2036876176318084],[119,102,69,0.20703889473726542],[119,102,70,0.21010794338009747],[119,102,71,0.2129184544597243],[119,102,72,0.2155075734309796],[119,102,73,0.21792208321884918],[119,102,74,0.22021488096663713],[119,102,75,0.22244175906301025],[119,102,76,0.22465850001226817],[119,102,77,0.22691829382961978],[119,102,78,0.22926948576442172],[119,102,79,0.23175366128582972],[119,103,64,0.1725860123421111],[119,103,65,0.17923941383786773],[119,103,66,0.1859530358680595],[119,103,67,0.19275373355422876],[119,103,68,0.19759167362055008],[119,103,69,0.20084171644725257],[119,103,70,0.20380618756766578],[119,103,71,0.20650763114802725],[119,103,72,0.2089823958793755],[119,103,73,0.21127678075632203],[119,103,74,0.21344347608065145],[119,103,75,0.21553831031193257],[119,103,76,0.21761731250418623],[119,103,77,0.21973409918268272],[119,103,78,0.22193759363342125],[119,103,79,0.22427008470633022],[119,104,64,0.16794309308488853],[119,104,65,0.1744154051992449],[119,104,66,0.18094294775518124],[119,104,67,0.18755222506414126],[119,104,68,0.19141400883338328],[119,104,69,0.19457888165909992],[119,104,70,0.19745723216627986],[119,104,71,0.20007010608758388],[119,104,72,0.20245257536822447],[119,104,73,0.20464988167005763],[119,104,74,0.20671387412211784],[119,104,75,0.20869975202333566],[119,104,76,0.2106631223254469],[119,104,77,0.2126573808442218],[119,104,78,0.2147314252704022],[119,104,79,0.21692770718468113],[119,105,64,0.16318127778961986],[119,105,65,0.16946591813711942],[119,105,66,0.17579886727028374],[119,105,67,0.18182377640689498],[119,105,68,0.18520649563506686],[119,105,69,0.18830295489470145],[119,105,70,0.19111415819324332],[119,105,71,0.19365931464991715],[119,105,72,0.19597173964493647],[119,105,73,0.19809503494319008],[119,105,74,0.20007955933116592],[119,105,75,0.20197920044934917],[119,105,76,0.20384845763841994],[119,105,77,0.20573984475125187],[119,105,78,0.20770162101923734],[119,105,79,0.2097758572072489],[119,106,64,0.15830478774990367],[119,106,65,0.16439465975767617],[119,106,66,0.1705242917906375],[119,106,67,0.17568520868040188],[119,106,68,0.17901113277990072],[119,106,69,0.18205607623073983],[119,106,70,0.18481906008980106],[119,106,71,0.18731715440144722],[119,106,72,0.1895814637790419],[119,106,73,0.19165338541069796],[119,106,74,0.19358115086521757],[119,106,75,0.195416662240532],[119,106,76,0.1972126323558081],[119,106,77,0.19902003784461542],[119,106,78,0.2008858931653048],[119,106,79,0.2028513527123174],[119,107,64,0.15332957414026],[119,107,65,0.15921741336080425],[119,107,66,0.1651351614002633],[119,107,67,0.16957452561205427],[119,107,68,0.17285839366565617],[119,107,69,0.17586844336158128],[119,107,70,0.17860166783194983],[119,107,71,0.18107274958096597],[119,107,72,0.18331017547758627],[119,107,73,0.18535261469871486],[119,107,74,0.187245570705914],[119,107,75,0.18903831753675865],[119,107,76,0.19078112988261395],[119,107,77,0.19252281561248433],[119,107,78,0.1943085585926543],[119,107,79,0.19617807885018945],[119,108,64,0.14828578048745164],[119,108,65,0.15396441479215117],[119,108,66,0.15966213463116286],[119,108,67,0.16350893455122212],[119,108,68,0.16676519937644937],[119,108,69,0.1697564328547887],[119,108,70,0.17247762651525622],[119,108,71,0.17494089536145685],[119,108,72,0.1771717665091849],[119,108,73,0.17920571844662658],[119,108,74,0.18108498157690991],[119,108,75,0.18285560994128783],[119,108,76,0.18456483325240716],[119,108,77,0.186258697595394],[119,108,78,0.18798000238466706],[119,108,79,0.18976654040224336],[119,109,64,0.143220558711883],[119,109,65,0.14868307903581737],[119,109,66,0.15401895204306185],[119,109,67,0.15748975372215723],[119,109,68,0.1607324625051365],[119,109,69,0.16372030607055432],[119,109,70,0.16644637841039248],[119,109,71,0.16892012647136667],[119,109,72,0.17116385445047613],[119,109,73,0.1732094637306354],[119,109,74,0.17509543856719192],[119,109,75,0.1768640869229847],[119,109,76,0.17855904512932172],[119,109,77,0.18022305432705854],[119,109,78,0.18189601592037255],[119,109,79,0.1836133325612743],[119,110,64,0.1381906350515245],[119,110,65,0.1434303626001488],[119,110,66,0.14802942990996576],[119,110,67,0.15148843744378193],[119,110,68,0.1547311630282639],[119,110,69,0.15773035918550043],[119,110,70,0.16047740801793364],[119,110,71,0.1629790749781579],[119,110,72,0.16525426728525408],[119,110,73,0.16733101066700287],[119,110,74,0.16924365387311788],[119,110,75,0.171030309746712],[119,110,76,0.17273054097650947],[119,110,77,0.17438329798475877],[119,110,78,0.17602511573959387],[119,110,79,0.17768857562075882],[119,111,64,0.13324867682193156],[119,111,65,0.13825918979068594],[119,111,66,0.14197376746062773],[119,111,67,0.1454335737868018],[119,111,68,0.14868964059860745],[119,111,69,0.1517147303967058],[119,111,70,0.1544987720649576],[119,111,71,0.15704591142679006],[119,111,72,0.15937155860831625],[119,111,73,0.16149963448940555],[119,111,74,0.1634600249159621],[119,111,75,0.16528625074967174],[119,111,76,0.16701336122821375],[119,111,77,0.16867605750296835],[119,111,78,0.17030705261644297],[119,111,79,0.17193567358257697],[119,112,64,0.12839973697110282],[119,112,65,0.13215682570140524],[119,112,66,0.1357852439034978],[119,112,67,0.13925827810198596],[119,112,68,0.1425415466301054],[119,112,69,0.1456083534243825],[119,112,70,0.14844746415922638],[119,112,71,0.15106048188020194],[119,112,72,0.1534592174303389],[119,112,73,0.15566323816719876],[119,112,74,0.1576976027701351],[119,112,75,0.15959078940593413],[119,112,76,0.16137282398418767],[119,112,77,0.1630736146945127],[119,112,78,0.16472149847956277],[119,112,79,0.16634200456481793],[119,113,64,0.12202716895818175],[119,113,65,0.12578244556069018],[119,113,66,0.12942165126145422],[119,113,67,0.13291943906743856],[119,113,68,0.1362434614130666],[119,113,69,0.1393681203627612],[119,113,70,0.14228132697275844],[119,113,71,0.14498222828870458],[119,113,72,0.1474789334031243],[119,113,73,0.14978639580915495],[119,113,74,0.1519244588807648],[119,113,75,0.15391607084805306],[119,113,76,0.15578567516990172],[119,113,77,0.1575577817379997],[119,113,78,0.15925572387914197],[119,113,79,0.16090060566036915],[119,114,64,0.11544482804217482],[119,114,65,0.11920462576894555],[119,114,66,0.12286264753557698],[119,114,67,0.1263950644613103],[119,114,68,0.12977204284098245],[119,114,69,0.13296964490541327],[119,114,70,0.13597524956970294],[119,114,71,0.13878565353174535],[119,114,72,0.14140518223337795],[119,114,73,0.1438439343024393],[119,114,74,0.14611616525223073],[119,114,75,0.1482388158257225],[119,114,76,0.15023018997905793],[119,114,77,0.15210878710486353],[119,114,78,0.1538922927032113],[119,114,79,0.15559673131992202],[119,115,64,0.10865568313906072],[119,115,65,0.112423957840111],[119,115,66,0.11610652150237363],[119,115,67,0.11968121352405289],[119,115,68,0.12312117183833302],[119,115,69,0.1264046665127119],[119,115,70,0.12951887410253246],[119,115,71,0.13245837079036551],[119,115,72,0.13522365277212547],[119,115,73,0.13781976687066974],[119,115,74,0.14025505602971933],[119,115,75,0.1425400240259217],[119,115,76,0.14468632341951765],[119,115,77,0.1467058704463095],[119,115,78,0.14861009023768726],[119,115,79,0.15040929544392495],[119,116,64,0.1016785343535715],[119,116,65,0.10545679495615667],[119,116,66,0.10916708704643308],[119,116,67,0.11278904937912099],[119,116,68,0.11629920603661206],[119,116,69,0.1196785491716888],[119,116,70,0.1229143820808656],[119,116,71,0.12599921657298174],[119,116,72,0.12892972138133785],[119,116,73,0.13170575749326083],[119,116,74,0.1343295038738128],[119,116,75,0.13680467681998137],[119,116,76,0.1391358459404196],[119,116,77,0.14132784951519206],[119,116,78,0.14338531175180094],[119,116,79,0.14531226422007087],[119,117,64,0.09454485197006866],[119,117,65,0.09833216790245049],[119,117,66,0.10207070978088312],[119,117,67,0.10574201417820764],[119,117,68,0.10932634422551599],[119,117,69,0.11280787708261136],[119,117,70,0.11617436230230853],[119,117,71,0.1194164291893709],[119,117,72,0.12252697503282693],[119,117,73,0.1255006172615868],[119,117,74,0.12833321179118864],[119,117,75,0.1310214396630305],[119,117,76,0.13356246391172025],[119,117,77,0.13595365843231808],[119,117,78,0.13819241045861413],[119,117,79,0.14027599810769759],[119,118,64,0.08729576203822736],[119,118,65,0.09108884285451195],[119,118,66,0.09485346849058199],[119,118,67,0.09857312943148856],[119,118,68,0.10223210391601661],[119,118,69,0.10581814943515098],[119,118,70,0.1093197623850477],[119,118,71,0.1127258943425204],[119,118,72,0.11602578449581734],[119,118,73,0.11920883367697753],[119,118,74,0.12226452104308912],[119,118,75,0.1251823643593173],[119,118,76,0.12795192474460382],[119,118,77,0.1305628566522165],[119,118,78,0.1330050037727519],[119,118,79,0.13526854146781772],[119,119,64,0.07997918089062019],[119,119,65,0.08377252336708722],[119,119,66,0.08755845372752663],[119,119,67,0.09132242378878684],[119,119,68,0.09505291417175973],[119,119,69,0.09874157627423433],[119,119,70,0.10237792569960628],[119,119,71,0.1059494593886846],[119,119,72,0.10944192887537296],[119,119,73,0.11283963382798148],[119,119,74,0.11612573571329404],[119,119,75,0.1192825913950345],[119,119,76,0.12229210645723167],[119,119,77,0.12513610802654598],[119,119,78,0.12779673685640622],[119,119,79,0.13025685843036972],[119,120,64,0.07264710025745695],[119,120,65,0.07643319824548643],[119,120,66,0.08023320522055208],[119,120,67,0.08403448987689714],[119,120,68,0.08782982521456172],[119,120,69,0.09161497681816821],[119,120,70,0.09538071487572929],[119,120,71,0.09911331721316566],[119,120,72,0.10279527218177122],[119,120,73,0.10640598182461775],[119,120,74,0.10992246398107347],[119,120,75,0.1133200520280196],[119,120,76,0.11657309100199241],[119,120,77,0.11930318848359775],[119,120,78,0.12138229599311716],[119,120,79,0.1252579622494678],[119,121,64,0.06535300934171291],[119,121,65,0.06912262157620863],[119,121,66,0.07292727426190825],[119,121,67,0.07675615620698627],[119,121,68,0.08060632063153547],[119,121,69,0.08447776583130323],[119,121,70,0.08836270722262834],[119,121,71,0.09224644475854188],[119,121,72,0.09610847663106195],[119,121,73,0.10254725839567527],[119,121,74,0.10917144282074699],[119,121,75,0.11570250098483544],[119,121,76,0.12116616162232409],[119,121,77,0.12479284610744365],[119,121,78,0.12837073247114147],[119,121,79,0.13192456633904864],[119,122,64,0.05814948259164941],[119,122,65,0.061891953889835365],[119,122,66,0.06568994024864977],[119,122,67,0.07036281574947721],[119,122,68,0.0771677365320492],[119,122,69,0.08403155529573522],[119,122,70,0.0909479819217886],[119,122,71,0.09790188428925665],[119,122,72,0.10487076643674634],[119,122,73,0.11182621386138132],[119,122,74,0.1187353024385904],[119,122,75,0.12552619812983953],[119,122,76,0.12888755203355912],[119,122,77,0.13217444698736242],[119,122,78,0.13541995180275446],[119,122,79,0.13865588288771488],[119,123,64,0.058370612228989725],[119,123,65,0.06504154103657332],[119,123,66,0.07179596849296384],[119,123,67,0.07862473989059421],[119,123,68,0.0855319951479451],[119,123,69,0.09252554220907068],[119,123,70,0.09960068579555877],[119,123,71,0.10674171348519688],[119,123,72,0.11392372631251087],[119,123,73,0.121114421832596],[119,123,74,0.12827582517192798],[119,123,75,0.13360550392618847],[119,123,76,0.1366440556972232],[119,123,77,0.1396068921295206],[119,123,78,0.14253392172745583],[119,123,79,0.1454636186465743],[119,124,64,0.06673839305295057],[119,124,65,0.0734280144588643],[119,124,66,0.08021757746507559],[119,124,67,0.08709910234058336],[119,124,68,0.09408029822427968],[119,124,69,0.1011728527989745],[119,124,70,0.10837369825541396],[119,124,71,0.11566676434695652],[119,124,72,0.12302512345808245],[119,124,73,0.1304130755555357],[119,124,74,0.13778816769193272],[119,124,75,0.14168246095558676],[119,124,76,0.14442221769638122],[119,124,77,0.14708386316124875],[119,124,78,0.1497135443720689],[119,124,79,0.1523558415199407],[119,125,64,0.07541106498830266],[119,125,65,0.08209639919177426],[119,125,66,0.08889615740475577],[119,125,67,0.09580327194652824],[119,125,68,0.1028286340712718],[119,125,69,0.10998752155275515],[119,125,70,0.11727847062963273],[119,125,71,0.12468525573127959],[119,125,72,0.1321793067409423],[119,125,73,0.13972205571147672],[119,125,74,0.14713213787003426],[119,125,75,0.1497359619685696],[119,125,76,0.152206832592214],[119,125,77,0.1545963043275213],[119,125,78,0.1569560454623891],[119,125,79,0.15933607055491397],[119,126,64,0.08439796344513545],[119,126,65,0.09105639119278626],[119,126,66,0.09784146719867261],[119,126,67,0.10474674730552871],[119,126,68,0.11178585071871439],[119,126,69,0.11897727453796327],[119,126,70,0.12632108417246962],[119,126,71,0.1338010775768697],[119,126,72,0.14138742957403733],[119,126,73,0.14903925734051357],[119,126,74,0.15536645407964092],[119,126,75,0.15774443497999405],[119,126,76,0.15998094626003156],[119,126,77,0.16213214417869404],[119,126,78,0.16425441023423168],[119,126,79,0.16640242585785714],[119,127,64,0.09369732476152487],[119,127,65,0.10030712413131555],[119,127,66,0.10705331394547248],[119,127,67,0.11392976809859141],[119,127,68,0.12095233257291202],[119,127,69,0.12814229204734817],[119,127,70,0.13550112327852668],[119,127,71,0.1430128013066767],[119,127,72,0.15064662451706867],[119,127,73,0.1583599546296794],[119,127,74,0.16349688136650756],[119,127,75,0.165686111755217],[119,127,76,0.16772587301383257],[119,127,77,0.1696760492749382],[119,127,78,0.171596866591233],[119,127,79,0.17354683921907355],[119,128,64,0.10329493646549202],[119,128,65,0.1098358460162237],[119,128,66,0.11652026299532262],[119,128,67,0.12334206581141142],[119,128,68,0.13031880375723026],[119,128,69,0.1374740829313657],[119,128,70,0.14481064357777315],[119,128,71,0.15231276697036492],[119,128,72,0.15994923561197336],[119,128,73,0.1676762040179555],[119,128,74,0.17150068702371934],[119,128,75,0.17353929355810674],[119,128,76,0.175421228100748],[119,128,77,0.17720921019399538],[119,128,78,0.17896641600875893],[119,128,79,0.18075432616089526],[119,129,64,0.11316294917213938],[119,129,65,0.1196167530041189],[119,129,66,0.12621849816473515],[119,129,67,0.13296175469480692],[119,129,68,0.1398652589682966],[119,129,69,0.14695447140846518],[119,129,70,0.15423323563813812],[119,129,71,0.16168624776904414],[119,129,72,0.16928210898870305],[119,129,73,0.17697628602805213],[119,129,74,0.17935739343715507],[119,129,75,0.18128261405735402],[119,129,76,0.1830449756377392],[119,129,77,0.18470916010163058],[119,129,78,0.18634041263788645],[119,129,79,0.18800232006146209],[119,130,64,0.12325885082103452],[119,130,65,0.1296099811266471],[119,130,66,0.13611083288396228],[119,130,67,0.14275436372395608],[119,130,68,0.14956002259016968],[119,130,69,0.15655469705953753],[119,130,70,0.16374318492672071],[119,130,71,0.17111069253851202],[119,130,72,0.1786259422235566],[119,130,73,0.1849724666328543],[119,130,74,0.18704921555549575],[119,130,75,0.18889529929705925],[119,130,76,0.19057349205528087],[119,130,77,0.19214962611898698],[119,130,78,0.19369019102075682],[119,130,79,0.19526006894672732],[119,131,64,0.13352460387210097],[119,131,65,0.13976075658716655],[119,131,66,0.14614587294649442],[119,131,67,0.15267201022920796],[119,131,68,0.15935893672541954],[119,131,69,0.16623462863441926],[119,131,70,0.1733047286090907],[119,131,71,0.18055504670462233],[119,131,72,0.18795469288060163],[119,131,73,0.19253068120522415],[119,131,74,0.19456147597201187],[119,131,75,0.19635742464598033],[119,131,76,0.197981645104845],[119,131,77,0.19950041369632726],[119,131,78,0.200980742786974],[119,131,79,0.20248809548502997],[119,132,64,0.1438858749971507],[119,132,65,0.1499986260792857],[119,132,66,0.1562572443160543],[119,132,67,0.162652620638021],[119,132,68,0.16920457536975336],[119,132,69,0.17594198037435452],[119,132,70,0.18287128907770261],[119,132,71,0.18997902262465494],[119,132,72,0.1972349082146026],[119,132,73,0.19987858152238122],[119,132,74,0.20188315230415665],[119,132,75,0.20365033053667242],[119,132,76,0.20524305615520103],[119,132,77,0.20672749613784203],[119,132,78,0.20817061715354274],[119,132,79,0.20963789574147967],[119,133,64,0.15424213378436527],[119,133,65,0.16022613648406048],[119,133,66,0.16635085909221892],[119,133,67,0.17260577169704053],[119,133,68,0.17901061934999865],[119,133,69,0.18559515853979972],[119,133,70,0.1923667325065294],[119,133,71,0.19931273180845693],[119,133,72,0.20475676401645557],[119,133,73,0.2070420857774291],[119,133,74,0.2090320207042557],[119,133,75,0.21078311195322913],[119,133,76,0.2123577351759022],[119,133,77,0.2138215448684875],[119,133,78,0.21524105239050823],[119,133,79,0.21668134177271492],[119,134,64,0.16447240522399142],[119,134,65,0.17032278377045873],[119,134,66,0.17630703088978011],[119,134,67,0.18241294174587305],[119,134,68,0.18866014466894648],[119,134,69,0.19507940408933963],[119,134,70,0.20167914013396793],[119,134,71,0.2084478513768966],[119,134,72,0.21181462715243463],[119,134,73,0.21409134324167406],[119,134,74,0.21607244947345033],[119,134,75,0.21781354206782194],[119,134,76,0.2193760920805499],[119,134,77,0.22082490543218627],[119,134,78,0.22222571450381332],[119,134,79,0.22364290741113022],[119,135,64,0.17447149360110822],[119,135,65,0.18018363820676048],[119,135,66,0.186021435132692],[119,135,67,0.19197078193316233],[119,135,68,0.19805121286653],[119,135,69,0.20429470540991124],[119,135,70,0.21071100975951323],[119,135,71,0.21620468409690324],[119,135,72,0.21881547328598602],[119,135,73,0.22108461098251084],[119,135,74,0.2230578594839716],[119,135,75,0.2247895537731761],[119,135,76,0.2263399585127502],[119,135,77,0.22777274938009923],[119,135,78,0.22915262522060934],[119,135,79,0.23054305710101133],[119,136,64,0.1841537249013384],[119,136,65,0.18972338746454923],[119,136,66,0.19540944073753103],[119,136,67,0.20119572159250348],[119,136,68,0.20710174318746027],[119,136,69,0.2131609407029747],[119,136,70,0.2193846758068481],[119,136,71,0.22320330571933233],[119,136,72,0.2258031185395398],[119,136,73,0.2280620451755097],[119,136,74,0.230024255013769],[119,136,75,0.23174253891768415],[119,136,76,0.23327569592149908],[119,136,77,0.23468604270720608],[119,136,78,0.2360370522811212],[119,136,79,0.23739112787892794],[119,137,64,0.1934529909208815],[119,137,65,0.1988763032960622],[119,137,66,0.20440599003917218],[119,137,67,0.21002374370023938],[119,137,68,0.21574916658038157],[119,137,69,0.22161740061780652],[119,137,70,0.2272645138026354],[119,137,71,0.23021993362573043],[119,137,72,0.23280369876130938],[119,137,73,0.23504673527713688],[119,137,74,0.23699135207778635],[119,137,75,0.23868855095300778],[119,137,76,0.24019545015719912],[119,137,77,0.24157282821359963],[119,137,78,0.24288279427211548],[119,137,79,0.2441865909715208],[119,138,64,0.20232320457308656],[119,138,65,0.20759661651829694],[119,138,66,0.21296588054918308],[119,138,67,0.2184105522745092],[119,138,68,0.22395045802274202],[119,138,69,0.2296226712833746],[119,138,70,0.23433498482904075],[119,138,71,0.23726573821684846],[119,138,72,0.2398263121885317],[119,138,73,0.24204549432147857],[119,138,74,0.2439635040198889],[119,138,75,0.24562934976200582],[119,138,76,0.24709829635415753],[119,138,77,0.24842944875700507],[119,138,78,0.24968345869679448],[119,138,79,0.2509203599084125],[119,139,64,0.2107391687076554],[119,139,65,0.21585930264351047],[119,139,66,0.2210644508970409],[119,139,67,0.22633213406473582],[119,139,68,0.23168254950630754],[119,139,69,0.23715488004113428],[119,139,70,0.2414360441286014],[119,139,71,0.24433440820738958],[119,139,72,0.24686337931208938],[119,139,73,0.24904940343136703],[119,139,74,0.2509304226331958],[119,139,75,0.2525532871462195],[119,139,76,0.253971272824112],[119,139,77,0.25524171039905263],[119,139,78,0.2564237325922186],[119,139,79,0.25757614479762125],[119,140,64,0.21869786075659325],[119,140,65,0.22366128048187892],[119,140,66,0.22869867327849722],[119,140,67,0.23378571684296554],[119,140,68,0.23894312596867298],[119,140,69,0.24421230612048875],[119,140,70,0.2485440247368225],[119,140,71,0.25140200520461214],[119,140,72,0.2538907179723403],[119,140,73,0.25603410872002735],[119,140,74,0.25786769316156105],[119,140,75,0.2594360315329831],[119,140,76,0.2607903027584688],[119,140,77,0.2619859845096669],[119,140,78,0.2630806450524019],[119,140,79,0.26413185243973886],[119,141,64,0.22622013554516573],[119,141,65,0.23102302605397562],[119,141,66,0.2358886547348526],[119,141,67,0.24079112659513638],[119,141,68,0.24575180642998268],[119,141,69,0.25081435846024297],[119,141,70,0.25561604338324856],[119,141,71,0.25842649901234815],[119,141,72,0.26086733178344224],[119,141,73,0.26295986883157396],[119,141,74,0.26473708160895254],[119,141,75,0.26624113053479526],[119,141,76,0.26752100260462136],[119,141,77,0.26863024795325324],[119,141,78,0.2696248210626607],[119,141,79,0.27056103198937215],[119,142,64,0.23335284865498915],[119,142,65,0.23799060418702517],[119,142,66,0.24267954961019314],[119,142,67,0.24739254592010965],[119,142,68,0.25215171259002306],[119,142,69,0.25700292286181375],[119,142,70,0.2619715136191091],[119,142,71,0.2653469816738748],[119,142,72,0.2677349100334781],[119,142,73,0.26977135142578895],[119,142,74,0.27148663284491054],[119,142,75,0.2729204100562723],[119,142,76,0.2741193760423878],[119,142,77,0.27513506053558096],[119,142,78,0.276021726097159],[119,142,79,0.2768343659064558],[119,143,64,0.24015682529659885],[119,143,65,0.2446239728703987],[119,143,66,0.24913024181081725],[119,143,67,0.25364762184327316],[119,143,68,0.2581990587804598],[119,143,69,0.26283250156254134],[119,143,70,0.26757577693781315],[119,143,71,0.27209223252889103],[119,143,72,0.2744255950623059],[119,143,73,0.2764045131255394],[119,143,74,0.2780565737695539],[119,143,75,0.2794188141584517],[119,143,76,0.2805355092313552],[119,143,77,0.2814560417698249],[119,143,78,0.2822328600694402],[119,143,79,0.28291952814011245],[119,144,64,0.24665393200339644],[119,144,65,0.2509454882019769],[119,144,66,0.255263551545506],[119,144,67,0.25957968187576524],[119,144,68,0.2639177177892867],[119,144,69,0.268327494717778],[119,144,70,0.272839212999054],[119,144,71,0.27746482902254727],[119,144,72,0.2808942995964976],[119,144,73,0.2828146931741119],[119,144,74,0.28440284590857606],[119,144,75,0.28569307336526684],[119,144,76,0.28672711365798925],[119,144,77,0.28755207607310757],[119,144,78,0.2882184674712762],[119,144,79,0.28877830112326397],[119,145,64,0.2528518781365496],[119,145,65,0.256963755196866],[119,145,66,0.26108903601567823],[119,145,67,0.2651993566477712],[119,145,68,0.26931951374138435],[119,145,69,0.2735009928219765],[119,145,70,0.2777762075636988],[119,145,71,0.2821597476056624],[119,145,72,0.286650622884654],[119,145,73,0.2889658226672106],[119,145,74,0.29048882404479626],[119,145,75,0.29170613285917757],[119,145,76,0.2926568512796233],[119,145,77,0.2933857042820647],[119,145,78,0.29394114184943415],[119,145,79,0.2943735125651515],[119,146,64,0.25875623621721955],[119,146,65,0.26268524701522056],[119,146,66,0.2666141491024637],[119,146,67,0.2705152087989501],[119,146,68,0.274414240640385],[119,146,69,0.2783641009169022],[119,146,70,0.28239921393753065],[119,146,71,0.2865366738083863],[119,146,72,0.29077834128909114],[119,146,73,0.2948247682588687],[119,146,74,0.2962807710399567],[119,146,75,0.29742378751680015],[119,146,76,0.29829020969724296],[119,146,77,0.298922288111903],[119,146,78,0.29936631654469925],[119,146,79,0.29967087619157884],[119,147,64,0.26437060030973975],[119,147,65,0.268114443510937],[119,147,66,0.27184435668875634],[119,147,67,0.275533820331558],[119,147,68,0.27920971793875615],[119,147,69,0.2829259610785411],[119,147,70,0.286718743582492],[119,147,71,0.29060749612042996],[119,147,72,0.2945968249163474],[119,147,73,0.2986784282632437],[119,147,74,0.30174794447271236],[119,147,75,0.3028147816168073],[119,147,76,0.30359558270628456],[119,147,77,0.30413005854025454],[119,147,78,0.3044622674831753],[119,147,79,0.30463893547688947],[119,148,64,0.26969675199097537],[119,148,65,0.27325397947100244],[119,148,66,0.27678326350382776],[119,148,67,0.28025989363251297],[119,148,68,0.2837118621599683],[119,148,69,0.28719379304322123],[119,148,70,0.29074337620526103],[119,148,71,0.29438217543639017],[119,148,72,0.29811739970831197],[119,148,73,0.30194366310122617],[119,148,74,0.305844729473475],[119,148,75,0.3078509008404324],[119,148,76,0.30854435121861923],[119,148,77,0.30898017438402037],[119,148,78,0.30920013761900633],[119,148,79,0.30924904197057335],[119,149,64,0.2747348338943031],[119,149,65,0.27810480253956193],[119,149,66,0.2814327514900679],[119,149,67,0.28469636617174243],[119,149,68,0.28792477458999655],[119,149,69,0.2911729530001368],[119,149,70,0.2944797893582768],[119,149,71,0.29786874684218184],[119,149,72,0.30134946028061343],[119,149,73,0.3049193324826597],[119,149,74,0.3085651271415698],[119,149,75,0.3122645550470228],[119,149,76,0.3131109646128155],[119,149,77,0.3134467911778791],[119,149,78,0.3135539832014862],[119,149,79,0.3134753684687357],[119,150,64,0.2794835308246969],[119,150,65,0.2826663408281353],[119,150,66,0.2857931296978408],[119,150,67,0.2888445388893987],[119,150,68,0.2918508450592519],[119,150,69,0.29486701057973536],[119,150,70,0.2979328075889563],[119,150,71,0.30107334117963513],[119,150,72,0.30430046554254625],[119,150,73,0.30761421163811203],[119,150,74,0.311004223632438],[119,150,75,0.31445120136502336],[119,150,76,0.31727302257329465],[119,150,77,0.3175071404645001],[119,150,78,0.31750084203758355],[119,150,79,0.31729495727423007],[119,151,64,0.28394025844876225],[119,151,65,0.2869366802202175],[119,151,66,0.28986329572039204],[119,151,67,0.2927042182894207],[119,151,68,0.29549087183966455],[119,151,69,0.2982778440695978],[119,151,70,0.3011054711734124],[119,151,71,0.3040002264263499],[119,151,72,0.3069759529491647],[119,151,73,0.31003511982473647],[119,151,74,0.3131700993743241],[119,151,75,0.3163644634034931],[119,151,76,0.31959429624143026],[119,151,77,0.3211416196071268],[119,151,78,0.32102082391890213],[119,151,79,0.3206878037834714],[119,152,64,0.2881013595730114],[119,152,65,0.29091275138754513],[119,152,66,0.293640908689081],[119,152,67,0.2962738722643359],[119,152,68,0.29884419768795684],[119,152,69,0.30140575389442],[119,152,70,0.30399912447445965],[119,152,71,0.306651868929776],[119,152,72,0.3093795714183316],[119,152,73,0.31218692471825205],[119,152,74,0.31506884779065586],[119,152,75,0.31801163529633025],[119,152,76,0.32099413740604815],[119,152,77,0.32398896824024115],[119,152,78,0.32409722338323627],[119,152,79,0.3236369756360559],[119,153,64,0.29196230803239726],[119,153,65,0.2945905265437513],[119,153,66,0.297122573857037],[119,153,67,0.29955079968325116],[119,153,68,0.30190886207221906],[119,153,69,0.3042495944015804],[119,153,70,0.30661352396712405],[119,153,71,0.3090290145363113],[119,153,72,0.31151313294567806],[119,153,73,0.31407256266984596],[119,153,74,0.31670456330900576],[119,153,75,0.31939797488915594],[119,153,76,0.32213426582627785],[119,153,77,0.3248886233728991],[119,153,78,0.3267166549819649],[119,153,79,0.3261287676621131],[119,154,64,0.2955179202209491],[119,154,65,0.29796522597082764],[119,154,66,0.3003040388085582],[119,154,67,0.3025313137835412],[119,154,68,0.30468176962666366],[119,154,69,0.3068069240004607],[119,154,70,0.30894696598020377],[119,154,71,0.31113078965995855],[119,154,72,0.31337668295244514],[119,154,73,0.3156930748469544],[119,154,74,0.31807934062460536],[119,154,75,0.32052666445163547],[119,154,76,0.32301895870145864],[119,154,77,0.325533839296011],[119,154,78,0.32804365630747256],[119,154,79,0.328152892863913],[119,155,64,0.29876257430696124],[119,155,65,0.30103153436443464],[119,155,66,0.3031804013418285],[119,155,67,0.30521093941652405],[119,155,68,0.30715887488854793],[119,155,69,0.309074173711864],[119,155,70,0.31099643420934264],[119,155,71,0.3129548223404161],[119,155,72,0.31496858940472017],[119,155,73,0.31704765927849216],[119,155,74,0.3191932852139645],[119,155,75,0.3213987761288169],[119,155,76,0.3236502922174054],[119,155,77,0.32592770962926476],[119,155,78,0.3282055538845038],[119,155,79,0.3297027096723238],[119,156,64,0.30169043718569144],[119,156,65,0.30378382705474294],[119,156,66,0.3057463290829429],[119,156,67,0.30758462420745186],[119,156,68,0.30933538338080374],[119,156,69,0.31104683419262663],[119,156,70,0.31275776706464226],[119,156,71,0.31449738334649097],[119,156,72,0.31628565074670534],[119,156,73,0.3181337388271526],[119,156,74,0.320044535094031],[119,156,75,0.3220132420924372],[119,156,76,0.3240280557925347],[119,156,77,0.3260709254448697],[119,156,78,0.32811839498182815],[119,156,79,0.33014252595289945],[119,157,64,0.30429569923390465],[119,157,65,0.3062164061711745],[119,157,66,0.30799629090080544],[119,157,67,0.3096469637015281],[119,157,68,0.3112059691149565],[119,157,69,0.31271966131089646],[119,157,70,0.3142258449251361],[119,157,71,0.31575354738847844],[119,157,72,0.3173232226964796],[119,157,73,0.31894704511495237],[119,157,74,0.3206292938234346],[119,157,75,0.322366829351783],[119,157,76,0.324149662524362],[119,157,77,0.3259616164935367],[119,157,78,0.32778108232095327],[119,157,79,0.3295818684528539],[119,158,64,0.30657281694273564],[119,158,65,0.3083237468319831],[119,158,66,0.30992480020505986],[119,158,67,0.31139244058019494],[119,158,68,0.3127650086012794],[119,158,69,0.3140869003594133],[119,158,70,0.31539479738332704],[119,158,71,0.3167173745125297],[119,158,72,0.31807536396008235],[119,158,73,0.3194817184331452],[119,158,74,0.3209418747445962],[119,158,75,0.3224541191830661],[119,158,76,0.32401005574843833],[119,158,77,0.3255951782069705],[119,158,78,0.32718954677644096],[119,158,79,0.3287685701187572],[119,159,64,0.30851676351737367],[119,159,65,0.31010075345222765],[119,159,66,0.3115266702219871],[119,159,67,0.3128156780448012],[119,159,68,0.31400683146599306],[119,159,69,0.3151425290066198],[119,159,70,0.3162582305745909],[119,159,71,0.3173821117601477],[119,159,72,0.31853500092780046],[119,159,73,0.3197304236730987],[119,159,74,0.32097475646795537],[119,159,75,0.32226749113549435],[119,159,76,0.32360161161768397],[119,159,77,0.3249640843282111],[119,159,78,0.3263364632210076],[119,159,79,0.3276956105534038],[119,160,64,0.3101232875449299],[119,160,65,0.3115430262772808],[119,160,66,0.31279728135716467],[119,160,67,0.3139117074788776],[119,160,68,0.3149259877895994],[119,160,69,0.31588051909950254],[119,160,70,0.3168094746995491],[119,160,71,0.3177404151878156],[119,160,72,0.31869411142628895],[119,160,73,0.31968448232173036],[119,160,74,0.32071864960331153],[119,160,75,0.32179711157232727],[119,160,76,0.32291403760633514],[119,160,77,0.32405768501356774],[119,160,78,0.3252109396553876],[119,160,79,0.326351981586863],[119,161,64,0.3113891798453554],[119,161,65,0.3126471382633948],[119,161,66,0.3137328607685001],[119,161,67,0.31467625051545706],[119,161,68,0.3155175322959935],[119,161,69,0.31629511744756117],[119,161,70,0.3170418518623384],[119,161,71,0.317784592355183],[119,161,72,0.31854392761141814],[119,161,73,0.3193340205734753],[119,161,74,0.3201625747481305],[119,161,75,0.32103092670604466],[119,161,76,0.3219342668392206],[119,161,77,0.32286199024191314],[119,161,78,0.32379817938854255],[119,161,79,0.32472222010038326],[119,162,64,0.3123125486334955],[119,162,65,0.313410922441086],[119,162,66,0.31433077428802736],[119,162,67,0.31510601565122076],[119,162,68,0.3157773255378414],[119,162,69,0.3163811457332496],[119,162,70,0.3169489643630977],[119,162,71,0.3175068654042803],[119,162,72,0.3180751580985698],[119,162,73,0.31866813361956003],[119,162,74,0.31929395174769687],[119,162,75,0.3199546600873955],[119,162,76,0.32064634814290227],[119,162,77,0.3213594383578356],[119,162,78,0.3220791160193942],[119,162,79,0.3227858997342712],[119,163,64,0.3128931031348301],[119,163,65,0.31383376991272355],[119,163,66,0.3145898308471717],[119,163,67,0.31519900956627667],[119,163,68,0.31570235224142734],[119,163,69,0.3161343197122078],[119,163,70,0.316525003600533],[119,163,71,0.3168996548684647],[119,163,72,0.3172782294411154],[119,163,73,0.3176750661861944],[119,163,74,0.31809870024880826],[119,163,75,0.31855181451017883],[119,163,76,0.31903133171197967],[119,163,77,0.3195286495662451],[119,163,78,0.3200300209565181],[119,163,79,0.32051708113139704],[119,164,64,0.31312991521690503],[119,164,65,0.3139141835733165],[119,164,66,0.31450764519237456],[119,164,67,0.31495171815768996],[119,164,68,0.31528772826802043],[119,164,69,0.31554809349345514],[119,164,70,0.31576144627973457],[119,164,71,0.3159521449213057],[119,164,72,0.3161397393281777],[119,164,73,0.3163385736838392],[119,164,74,0.31655752921707186],[119,164,75,0.3167999100725991],[119,164,76,0.3170634750301391],[119,164,77,0.31734061759086857],[119,164,78,0.31761869672687815],[119,164,79,0.3178805203752748],[119,165,64,0.31300637073824994],[119,165,65,0.3136333749623382],[119,165,66,0.31406307213661266],[119,165,67,0.31434044833379843],[119,165,68,0.3145070125814421],[119,165,69,0.3145930836696527],[119,165,70,0.31462579592212764],[119,165,71,0.31462859356713846],[119,165,72,0.31462061708971345],[119,165,73,0.3146162306415896],[119,165,74,0.3146246939460465],[119,165,75,0.314649981889666],[119,165,76,0.3146907547500247],[119,165,77,0.31474048176967784],[119,165,78,0.3147877205549057],[119,165,79,0.3148165545550329],[119,166,64,0.3125044777163772],[119,166,65,0.312970853540392],[119,166,66,0.3132330479097926],[119,166,67,0.31333941909974894],[119,166,68,0.3133315549588772],[119,166,69,0.31323766921993174],[119,166,70,0.3130834172847129],[119,166,71,0.31289136993941263],[119,166,72,0.31268031824155446],[119,166,73,0.3124647234582675],[119,166,74,0.3122543157048197],[119,166,75,0.31205384468043407],[119,166,76,0.3118629856480472],[119,166,77,0.31167640355822646],[119,166,78,0.3114839779773918],[119,166,79,0.3112711912492984],[119,167,64,0.3116133446302113],[119,167,65,0.3119137731660616],[119,167,66,0.31200273237671644],[119,167,67,0.31193168077407135],[119,167,68,0.3117421788102921],[119,167,69,0.31146039117236957],[119,167,70,0.3111105779863096],[119,167,71,0.3107145408925762],[119,167,72,0.31029084263618045],[119,167,73,0.30985417569554374],[119,167,74,0.3094148838139935],[119,167,75,0.30897864003904585],[119,167,76,0.30854628461691525],[119,167,77,0.3081138258354202],[119,167,78,0.30767260666011786],[119,167,79,0.30720963976867427],[119,168,64,0.31032731979547357],[119,168,65,0.3104550550706631],[119,168,66,0.3103636151071777],[119,168,67,0.31010720955307547],[119,168,68,0.30972726949210094],[119,168,69,0.30924803580257626],[119,168,70,0.30869252440127914],[119,168,71,0.3080819348774051],[119,168,72,0.3074347797886032],[119,168,73,0.3067661671214869],[119,168,74,0.30608724000256743],[119,168,75,0.30540477747978895],[119,168,76,0.3047209599295079],[119,168,77,0.3040333023813381],[119,168,78,0.3033347587963277],[119,168,79,0.3026140000851055],[119,169,64,0.308643910124492],[119,169,65,0.308591285126459],[119,169,66,0.3083113923788061],[119,169,67,0.3078607707230688],[119,169,68,0.307280630171339],[119,169,69,0.30659348612881454],[119,169,70,0.30582132895484426],[119,169,71,0.3049849830513286],[119,169,72,0.30410314023166696],[119,169,73,0.3031915506452358],[119,169,74,0.30226237557532304],[119,169,75,0.3013237061551487],[119,169,76,0.3003792517731295],[119,169,77,0.29942820166744055],[119,169,78,0.29846526294379233],[119,169,79,0.2974808779919124],[119,170,64,0.3065615312415624],[119,170,65,0.3063204421521237],[119,170,66,0.30584367618773495],[119,170,67,0.3051896157848736],[119,170,68,0.3043991745815448],[119,170,69,0.30349341482250186],[119,170,70,0.30249358526260633],[119,170,71,0.3014204168168648],[119,170,72,0.30029305418528834],[119,170,73,0.29912814980510943],[119,170,74,0.2979391246918886],[119,170,75,0.2967356004495508],[119,170,76,0.2955230064470966],[119,170,77,0.2943023658792323],[119,170,78,0.2930702641521096],[119,170,79,0.2918190027665869],[119,171,64,0.3040770870518347],[119,171,65,0.3036394554044519],[119,171,66,0.3029575334773006],[119,171,67,0.30209101177152453],[119,171,68,0.3010804550318401],[119,171,69,0.2999458169874673],[119,171,70,0.29870794967164443],[119,171,71,0.2973878204620805],[119,171,72,0.29600533634253157],[119,171,73,0.2945783357540329],[119,171,74,0.2931217528535102],[119,171,75,0.29164695870698193],[119,171,76,0.2901612836525991],[119,171,77,0.28866772477800257],[119,171,78,0.28716484216963434],[119,171,79,0.2856468473116301],[119,172,64,0.3011833766869344],[119,172,65,0.30054158923214036],[119,172,66,0.29964685362421994],[119,172,67,0.2985596008724053],[119,172,68,0.2973200238669668],[119,172,69,0.2959473811022832],[119,172,70,0.2944625276069938],[119,172,71,0.2928870374295612],[119,172,72,0.29124191543472716],[119,172,73,0.28954648255260906],[119,172,74,0.2878174395673654],[119,172,75,0.2860681142318599],[119,172,76,0.28430789619212093],[119,172,77,0.28254186390335484],[119,172,78,0.2807706074206527],[119,172,79,0.2789902506552837],[119,173,64,0.29786632656982676],[119,173,65,0.2970136526881586],[119,173,66,0.2958995420446717],[119,173,67,0.29458458830311013],[119,173,68,0.2931086264058972],[119,173,69,0.2914906962545777],[119,173,70,0.2897521029674927],[119,173,71,0.28791542858700586],[119,173,72,0.28600312709161035],[119,173,73,0.28403629944162395],[119,173,74,0.28203365402775743],[119,173,75,0.28001065758020965],[119,173,76,0.2779788812815054],[119,173,77,0.275945546511866],[119,173,78,0.2739132743443633],[119,173,79,0.2718800426015624],[119,174,64,0.2941020451555993],[119,174,65,0.293033031712571],[119,174,66,0.29169453760018177],[119,174,67,0.2901467561807206],[119,174,68,0.288429223210822],[119,174,69,0.28656129362514887],[119,174,70,0.2845652086496212],[119,174,71,0.28246498071386295],[119,174,72,0.28028486836126687],[119,174,73,0.27804803862278465],[119,174,74,0.2757754225192413],[119,174,75,0.2734847690329028],[119,174,76,0.2711899025615019],[119,174,77,0.268900188539828],[119,174,78,0.2666202115883029],[119,174,79,0.2643496702279132],[119,175,64,0.28986929014315677],[119,175,65,0.2885799991291112],[119,175,66,0.2870138752065938],[119,175,67,0.28523017153746577],[119,175,68,0.2832682200363018],[119,175,69,0.28114826066448045],[119,175,70,0.2788939767994486],[119,175,71,0.2765312382608021],[119,175,72,0.27408645414231975],[119,175,73,0.27158512145111674],[119,175,74,0.26905057552578704],[119,175,75,0.26650294786755363],[119,175,76,0.2639583366764828],[119,175,77,0.26142819504176074],[119,175,78,0.2589189413939452],[119,175,79,0.25643179649134284],[119,176,64,0.28519982447782705],[119,176,65,0.2836876621028328],[119,176,66,0.28189193624705605],[119,176,67,0.2798703931147898],[119,176,68,0.277662233728821],[119,176,69,0.2752891274226078],[119,176,70,0.27277667680863066],[119,176,71,0.27015300621083915],[119,176,72,0.2674469925891888],[119,176,73,0.26468670126448407],[119,176,74,0.2618980327259203],[119,176,75,0.2591035864511829],[119,176,76,0.25632174731172064],[119,176,77,0.2535659997769423],[119,176,78,0.2508444747738205],[119,176,79,0.24815973370618757],[119,177,64,0.28014097849187874],[119,177,65,0.2784049185678318],[119,177,66,0.2763790961845139],[119,177,67,0.2741191679392317],[119,177,68,0.2716642464949027],[119,177,69,0.26903792751011385],[119,177,70,0.26626816110882284],[119,177,71,0.26338567608584956],[119,177,72,0.260422091525237],[119,177,73,0.25740824253752026],[119,177,74,0.2543727267029145],[119,177,75,0.251340677439893],[119,177,76,0.24833277014578894],[119,177,77,0.24536446658111952],[119,177,78,0.24244550259564998],[119,177,79,0.23957962392537738],[119,178,64,0.2747408802638623],[119,178,65,0.2727817564688796],[119,178,66,0.27052717508101604],[119,178,67,0.2680301335937865],[119,178,68,0.2653296760174017],[119,178,69,0.2624517651544283],[119,178,70,0.25942706834182644],[119,178,71,0.25628921121501336],[119,178,72,0.25307277507654313],[119,178,73,0.24981151773062293],[119,178,74,0.24653682466049617],[119,178,75,0.24327639704333096],[119,178,76,0.2400531827090396],[119,178,77,0.23688455575868833],[119,178,78,0.2337817501683364],[119,178,79,0.23074955231898836],[119,179,64,0.26904787214443954],[119,179,65,0.2668685968183529],[119,179,66,0.2643886895921073],[119,179,67,0.26165795881044146],[119,179,68,0.2587153827637358],[119,179,69,0.25558966708057324],[119,179,70,0.25231449825638047],[119,179,71,0.24892662442059704],[119,179,72,0.24546374589532605],[119,179,73,0.24196263832481973],[119,179,74,0.23845751552031552],[119,179,75,0.23497863876813818],[119,179,76,0.23155117894604527],[119,179,77,0.22819433738691386],[119,179,78,0.2249207310236459],[119,179,79,0.22173604694845997],[119,180,64,0.26310989831171616],[119,180,65,0.26071560901371504],[119,180,66,0.2580160805161395],[119,180,67,0.2550574646864879],[119,180,68,0.2518786649598628],[119,180,69,0.24851143158450592],[119,180,70,0.24499269617786384],[119,180,71,0.24136248073584818],[119,180,72,0.23766169104683207],[119,180,73,0.23393015129602526],[119,180,74,0.23020488724271973],[119,180,75,0.22651866494310344],[119,180,76,0.22289879157475884],[119,180,77,0.2193661844990879],[119,180,78,0.21593471427844182],[119,180,79,0.21261082694964117],[119,181,64,0.2569738628085731],[119,181,65,0.2543719978569198],[119,181,66,0.2514609153396274],[119,181,67,0.24828272597308607],[119,181,68,0.2448762406945862],[119,181,69,0.24127647429246596],[119,181,70,0.23752374658880113],[119,181,71,0.23366142475505114],[119,181,72,0.22973363124064777],[119,181,73,0.2257832008096474],[119,181,74,0.22184989427044322],[119,181,75,0.2179688760619149],[119,181,76,0.2141694624306092],[119,181,77,0.21047414650114424],[119,181,78,0.20689790610984257],[119,181,79,0.20344779984367184],[119,182,64,0.25068495747797875],[119,182,65,0.24788526167946298],[119,182,66,0.2447730651818943],[119,182,67,0.24138615184685905],[119,182,68,0.23776321658166458],[119,182,69,0.233942670063803],[119,182,70,0.2299682753240329],[119,182,71,0.22588673218434696],[119,182,72,0.22174531305917627],[119,182,73,0.21758975489196203],[119,182,74,0.21346241497427987],[119,182,75,0.20940069796294347],[119,182,76,0.20543576097124297],[119,182,77,0.20159150316734334],[119,182,78,0.19788384586978058],[119,182,79,0.19432030869106104],[119,183,64,0.24428595917563353],[119,183,65,0.24130042093918438],[119,183,66,0.23799985550465738],[119,183,67,0.23441754553827826],[119,183,68,0.23059204237126277],[119,183,69,0.22656519046067422],[119,183,70,0.22238415985302418],[119,183,71,0.21809888513411285],[119,183,72,0.21375964381258192],[119,183,73,0.20941489681629097],[119,183,74,0.2051093989669459],[119,183,75,0.20088258685840177],[119,183,76,0.19676725111629703],[119,183,77,0.1927884995648479],[119,183,78,0.18896301737470397],[119,183,79,0.18529862981794845],[119,184,64,0.23781649560360157],[119,184,65,0.23465921661840547],[119,184,66,0.2311851899159797],[119,184,67,0.2274231421553255],[119,184,68,0.2234114508686073],[119,184,69,0.2191953361767929],[119,184,70,0.21482524709408365],[119,184,71,0.21035417067055995],[119,184,72,0.20583516863191273],[119,184,73,0.2013191809307971],[119,184,74,0.1968531041471182],[119,184,75,0.19247815222840683],[119,184,76,0.188228506607345],[119,184,77,0.18413026227519583],[119,184,78,0.1802006759314018],[119,184,79,0.17644772187517427],[119,185,64,0.23131227907343044],[119,185,65,0.22799927771716524],[119,185,66,0.22436864636277476],[119,185,67,0.2204446240070088],[119,185,68,0.21626538248586397],[119,185,69,0.21187936378869385],[119,185,70,0.20734007818085598],[119,185,71,0.20270330212530452],[119,185,72,0.19802458939987555],[119,185,73,0.19335705265014222],[119,185,74,0.1887494233395454],[119,185,75,0.1842443976084174],[119,185,76,0.17987727509538357],[119,185,77,0.17567489731220398],[119,185,78,0.1716548917004431],[119,185,79,0.1678252270397132],[119,186,64,0.22480430747251884],[119,186,65,0.22135325710008885],[119,186,66,0.2175845449716613],[119,186,67,0.2135181126986309],[119,186,68,0.20919189372317287],[119,186,69,0.20465730616663516],[119,186,70,0.1999706195801788],[119,186,71,0.19519006264686228],[119,186,72,0.19037332511169056],[119,186,73,0.1855753323351377],[119,186,74,0.18084630040889277],[119,186,75,0.17623007932085108],[119,186,76,0.17176279119656623],[119,186,77,0.16747177018025147],[119,186,78,0.16337481005402285],[119,186,79,0.15947972523369758],[119,187,64,0.21831803167512048],[119,187,65,0.2147479349227532],[119,187,66,0.21086098676643397],[119,187,67,0.20667313724126188],[119,187,68,0.20222204884838285],[119,187,69,0.19756178586023088],[119,187,70,0.1927509999442148],[119,187,71,0.18784997046918725],[119,187,72,0.18291811325846113],[119,187,73,0.17801176279467715],[119,187,74,0.17318223574639352],[119,187,75,0.16847418323519556],[119,187,76,0.16392423880300264],[119,187,77,0.15955996857583568],[119,187,78,0.15539912965664512],[119,187,79,0.15144924232014112],[119,188,64,0.21187248860710253],[119,188,65,0.20820328883101932],[119,188,66,0.20421886245942117],[119,188,67,0.1999315773893375],[119,188,68,0.19537879402004188],[119,188,69,0.19061682075387928],[119,188,70,0.1857062520662986],[119,188,71,0.1807089653671463],[119,188,72,0.17568565183010168],[119,188,73,0.1706936201601475],[119,188,74,0.16578488105683295],[119,188,75,0.16100451968288135],[119,188,76,0.15638936299155887],[119,188,77,0.15196694830586963],[119,188,78,0.14775479908207612],[119,188,79,0.14376001333351193],[119,189,64,0.2054793991442785],[119,189,65,0.20173153009759864],[119,189,66,0.19767083048649933],[119,189,67,0.19330658139562878],[119,189,68,0.1886758130775378],[119,189,69,0.183836621271939],[119,189,70,0.1788510593021108],[119,189,71,0.17378211577006408],[119,189,72,0.16869128154693105],[119,189,73,0.1636363879069971],[119,189,74,0.15866972341165367],[119,189,75,0.15383643670631394],[119,189,76,0.1491732319423451],[119,189,77,0.14470736308096377],[119,189,78,0.14045593288082592],[119,189,79,0.13642550191985633],[119,190,64,0.1991422299965473],[119,190,65,0.19533610483282843],[119,190,66,0.19122026343019718],[119,190,67,0.18680145735069204],[119,190,68,0.18211636420461538],[119,190,69,0.17722437840202765],[119,190,70,0.17218850581415554],[119,190,71,0.16707234601068865],[119,190,72,0.16193770794696852],[119,190,73,0.1568424938294967],[119,190,74,0.15183885858024113],[119,190,75,0.14697165188384367],[119,190,76,0.14227714935791264],[119,190,77,0.13778207893872468],[119,190,78,0.1335029481267782],[119,190,79,0.1294456772928213],[119,191,64,0.19285521870453884],[119,191,65,0.18901065938160297],[119,191,66,0.18486016195256005],[119,191,67,0.18040853725467892],[119,191,68,0.17569209665816068],[119,191,69,0.170771041797126],[119,191,70,0.1657088299983896],[119,191,71,0.16056918319839275],[119,191,72,0.15541376297999343],[119,191,73,0.15030010981312686],[119,191,74,0.14527985370581392],[119,191,75,0.14039720304405987],[119,191,76,0.13568771796399895],[119,191,77,0.13117737416068426],[119,191,78,0.12688192259908979],[119,191,79,0.12280655015814265],[119,192,64,0.18660236085356113],[119,192,65,0.18273796899725256],[119,192,66,0.17857203534079852],[119,192,67,0.17410801295464368],[119,192,68,0.16938184674474252],[119,192,69,0.16445408721488305],[119,192,70,0.15938818045873623],[119,192,71,0.1542475232235727],[119,192,72,0.14909320579089186],[119,192,73,0.1439820142957197],[119,192,74,0.13896469945592582],[119,192,75,0.1340845182646638],[119,192,76,0.12937605477381003],[119,192,77,0.12486432566754717],[119,192,78,0.12056417589673964],[119,192,79,0.11647996922040416],[119,193,64,0.1814357482307482],[119,193,65,0.17648882886514325],[119,193,66,0.17232474775353446],[119,193,67,0.16786674306948243],[119,193,68,0.16315041222209994],[119,193,69,0.15823627255483375],[119,193,70,0.1531873739072118],[119,193,71,0.14806641542405738],[119,193,72,0.14293356241266064],[119,193,73,0.1378445173622884],[119,193,74,0.1328488518491178],[119,193,75,0.12798860564184075],[119,193,76,0.12329715890873623],[119,193,77,0.11879838300929235],[119,193,78,0.11450607493614333],[119,193,79,0.11042368005998937],[119,194,64,0.18468664492409528],[119,194,65,0.17917373717989077],[119,194,66,0.17349858129354373],[119,194,67,0.1676558032079077],[119,194,68,0.16167336604392188],[119,194,69,0.15560442422542767],[119,194,70,0.14950453589805635],[119,194,71,0.14342883756596142],[119,194,72,0.13742992556081104],[119,194,73,0.1318264484792008],[119,194,74,0.12687036403835436],[119,194,75,0.12204736341503894],[119,194,76,0.11738943288839122],[119,194,77,0.11291913120839216],[119,194,78,0.10864906544606917],[119,194,79,0.1045816483539419],[119,195,64,0.18780568842546227],[119,195,65,0.18217534780733202],[119,195,66,0.17638911577030136],[119,195,67,0.17044149927523458],[119,195,68,0.16436024665290355],[119,195,69,0.15819816025333058],[119,195,70,0.15201005758784636],[119,195,71,0.14585002219592666],[119,195,72,0.13976936399992215],[119,195,73,0.1338148245130911],[119,195,74,0.12802703312282138],[119,195,75,0.12243922028439848],[119,195,76,0.11707619306768707],[119,195,77,0.11195357810314813],[119,195,78,0.1070773365791682],[119,195,79,0.10244355555224681],[119,196,64,0.1907489109243934],[119,196,65,0.18500050031830814],[119,196,66,0.17910323923146435],[119,196,67,0.1730517250972022],[119,196,68,0.1668736146285661],[119,196,69,0.16062139583288815],[119,196,70,0.15434915491065873],[119,196,71,0.14810990574616698],[119,196,72,0.14195363048520312],[119,196,73,0.13592556007285683],[119,196,74,0.1300647007303077],[119,196,75,0.1244026119726052],[119,196,76,0.11896244138643337],[119,196,77,0.11375822100122374],[119,196,78,0.10879442970314775],[119,196,79,0.10406582576181013],[119,197,64,0.19350960580464835],[119,197,65,0.18764558462313446],[119,197,66,0.18164006311207664],[119,197,67,0.1754880331319523],[119,197,68,0.16921718715981698],[119,197,69,0.16287964720422024],[119,197,70,0.15652868815497453],[119,197,71,0.15021615430755106],[119,197,72,0.1439905848729051],[119,197,73,0.1378955744037734],[119,197,74,0.13196837386761565],[119,197,75,0.12623873772923613],[119,197,76,0.12072802203331934],[119,197,77,0.11544853810201804],[119,197,78,0.11040316608974347],[119,197,79,0.10558523226864003],[119,198,64,0.19339016497770442],[119,198,65,0.19010615274824916],[119,198,66,0.18399747004132758],[119,198,67,0.1777503485728111],[119,198,68,0.171392644546716],[119,198,69,0.16497598218392226],[119,198,70,0.15855266667387807],[119,198,71,0.1521732012900007],[119,198,72,0.1458845053510065],[119,198,73,0.13972836149376555],[119,198,74,0.13374009772433815],[119,198,75,0.12794750935728674],[119,198,76,0.12237002559158991],[119,198,77,0.11701812510778256],[119,198,78,0.11189300470971247],[119,198,79,0.10698650467755301],[119,199,64,0.19298009009473677],[119,199,65,0.19113371198654616],[119,199,66,0.18616962741089332],[119,199,67,0.1798342383572769],[119,199,68,0.17339667500687928],[119,199,69,0.16690787524032177],[119,199,70,0.16041896168432945],[119,199,71,0.15397887670251595],[119,199,72,0.14763270237380746],[119,199,73,0.1414202032924966],[119,199,74,0.1353745973718038],[119,199,75,0.12952155948815092],[119,199,76,0.1238784624539184],[119,199,77,0.11845385945553721],[119,199,78,0.11324721174563664],[119,199,79,0.10824886503454446],[119,200,64,0.1925208792138679],[119,200,65,0.1904779878436874],[119,200,66,0.18814861527689836],[119,200,67,0.18173263429894052],[119,200,68,0.17522280494001202],[119,200,69,0.16866915369152924],[119,200,70,0.16212137374945423],[119,200,71,0.15562659766277165],[119,200,72,0.1492278302980068],[119,200,73,0.14296259700467048],[119,200,74,0.13686181185318344],[119,200,75,0.1309488704856874],[119,200,76,0.12523897178477375],[119,200,77,0.11973867222871375],[119,200,78,0.11444567646851116],[119,200,79,0.10934886733370727],[119,201,64,0.19203109105108512],[119,201,65,0.18977745255508546],[119,201,66,0.18749350385456087],[119,201,67,0.1834374672300715],[119,201,68,0.17686314809843626],[119,201,69,0.17025187280470708],[119,201,70,0.16365164131200893],[119,201,71,0.15710751423535696],[119,201,72,0.15066017065200477],[119,201,73,0.14434467218360839],[119,201,74,0.1381894378833714],[119,201,75,0.13221543414562045],[119,201,76,0.12643558353589027],[119,201,77,0.12085439611961381],[119,201,78,0.11546782655107282],[119,201,79,0.11026335987289267],[119,202,64,0.19152791590773421],[119,202,65,0.18904934654590466],[119,202,66,0.18653479810249118],[119,202,67,0.1839699966828504],[119,202,68,0.17831007371167967],[119,202,69,0.17164812002509175],[119,202,70,0.1650013907081283],[119,202,71,0.15841261124495057],[119,202,72,0.15191988791440994],[119,202,73,0.1455555987387226],[119,202,74,0.1393454845131691],[119,202,75,0.1333079437842008],[119,202,76,0.1274535353420786],[119,202,77,0.12178469149277653],[119,202,78,0.11629564507640681],[119,202,79,0.11097257290718701],[119,203,64,0.1910259879838532],[119,203,65,0.18830874004128914],[119,203,66,0.18555118640763177],[119,203,67,0.18273622200246928],[119,203,68,0.17955779354251897],[119,203,69,0.17285174850426993],[119,203,70,0.16616402804458913],[119,203,71,0.15953476667939462],[119,203,72,0.15299925866212713],[119,203,73,0.14658698697160594],[119,203,74,0.1403208401307322],[119,203,75,0.13421652034620402],[119,203,76,0.12828214617847944],[119,203,77,0.12251805267062699],[119,203,78,0.11691679158842924],[119,203,79,0.11146333415317883],[119,204,64,0.19053630054969167],[119,204,65,0.1875673620896942],[119,204,66,0.1845551024114055],[119,204,67,0.1814792232405218],[119,204,68,0.17829900963308515],[119,204,69,0.17386004002953528],[119,204,70,0.16713657326767922],[119,204,71,0.16047076725642687],[119,204,72,0.15389487492236234],[119,204,73,0.14743528074556964],[119,204,74,0.14111185318026997],[119,204,75,0.1349374741866983],[119,204,76,0.12891774870218334],[119,204,77,0.12305089662187266],[119,204,78,0.11732782960669422],[119,204,79,0.11173241478877645],[119,205,64,0.19006522474045331],[119,205,65,0.18683253043742912],[119,205,66,0.18355466316090263],[119,205,67,0.18020781241720493],[119,205,68,0.17675051975861994],[119,205,69,0.17313287596478524],[119,205,70,0.16792143668739073],[119,205,71,0.1612232816766138],[119,205,72,0.15460982252608169],[119,205,73,0.14810414487212545],[119,205,74,0.14172292797290023],[119,205,75,0.1354761041927165],[119,205,76,0.1293666822298622],[119,205,77,0.12339073627876539],[119,205,78,0.11753756309016589],[119,205,79,0.11179000867138283],[119,206,64,0.18961363285772784],[119,206,65,0.18610618302939624],[119,206,66,0.18255258994379445],[119,206,67,0.1789252558220733],[119,206,68,0.17518191358298985],[119,206,69,0.17127510290783837],[119,206,70,0.16716234109861464],[119,206,71,0.16180279202438635],[119,206,72,0.15515583521334508],[119,206,73,0.1486068477653974],[119,206,74,0.14216913694750538],[119,206,75,0.13584953590996535],[119,206,76,0.12964834831842242],[119,206,77,0.12355944074112506],[119,206,78,0.11757048438253072],[119,206,79,0.11166334756078733],[119,207,64,0.18917762820448283],[119,207,65,0.185385070864822],[119,207,66,0.18154599089118825],[119,207,67,0.1776287858284346],[119,207,68,0.17359032937310936],[119,207,69,0.1693857709609446],[119,207,70,0.16497592741617045],[119,207,71,0.16032789911948836],[119,207,72,0.15541544536488994],[119,207,73,0.14896523215917373],[119,207,74,0.14247448847151403],[119,207,75,0.13608419786891793],[119,207,76,0.12979182891764074],[119,207,77,0.12358895216181637],[119,207,78,0.1174615715162341],[119,207,79,0.11139058589508645],[119,208,64,0.1887544697153095],[119,208,65,0.1846655992407942],[119,208,66,0.18053059046376121],[119,208,67,0.17631373960840355],[119,208,68,0.1719710598983985],[119,208,69,0.16746045060521286],[119,208,70,0.162746194335927],[119,208,71,0.15779927111521994],[119,208,72,0.15259751719735318],[119,208,73,0.1471256827920563],[119,208,74,0.1413753873332094],[119,208,75,0.1353449710683866],[119,208,76,0.1290392418933527],[119,208,77,0.12246911649763405],[119,208,78,0.1156511550254644],[119,208,79,0.10860698858747543],[119,209,64,0.1883411895252407],[119,209,65,0.18394428539600538],[119,209,66,0.1795026561703551],[119,209,67,0.17497653230189836],[119,209,68,0.1703211178960983],[119,209,69,0.16549717591858656],[119,209,70,0.16047257550926597],[119,209,71,0.15522229201676496],[119,209,72,0.14972833999616106],[119,209,73,0.14397962586194307],[119,209,74,0.1379717193719336],[119,209,75,0.1317065432347217],[119,209,76,0.12519198024600692],[119,209,77,0.11844139746750812],[119,209,78,0.11147308706622532],[119,209,79,0.10430962352885104],[119,210,64,0.1879333141116932],[119,210,65,0.18321690809973004],[119,210,66,0.17845843772177408],[119,210,67,0.1736142278684127],[119,210,68,0.1686387707398418],[119,210,69,0.1634957735025587],[119,210,70,0.1581567606790062],[119,210,71,0.15260075305503665],[119,210,72,0.14681396893608578],[119,210,73,0.14078946703409492],[119,210,74,0.13452673071728663],[119,210,75,0.12803119343770905],[119,210,76,0.12131370522948956],[119,210,77,0.11438994024357085],[119,210,78,0.10727974535323923],[119,210,79,0.10000642992614686],[119,211,64,0.18752470753299735],[119,211,65,0.182478245995055],[119,211,66,0.17739379965282862],[119,211,67,0.17222406327603598],[119,211,68,0.16692295355605385],[119,211,69,0.16145716384839667],[119,211,70,0.15580188682898272],[119,211,71,0.14994017035620363],[119,211,72,0.1438623846366848],[119,211,73,0.13756565402501675],[119,211,74,0.13105325374781346],[119,211,75,0.12433397188991362],[119,211,76,0.11742143702240189],[119,211,77,0.11033341188831075],[119,211,78,0.10309105359355789],[119,211,79,0.09571814077534595],[119,212,64,0.1871075341107344],[119,212,65,0.18172193618943816],[119,212,66,0.1763039755968884],[119,212,67,0.17080309649902586],[119,212,68,0.16517280905311688],[119,212,69,0.15938279296528135],[119,212,70,0.15341186368481455],[119,212,71,0.14724700859245102],[119,212,72,0.14088262143661723],[119,212,73,0.13431972518178883],[119,212,74,0.1275651841113762],[119,212,75,0.12063090603869188],[119,212,76,0.11353303548437259],[119,212,77,0.10629113867729362],[119,212,78,0.09892738123011244],[119,212,79,0.09146569932782336],[119,213,64,0.18667234229895519],[119,213,65,0.18094045475494297],[119,213,66,0.17518344580444856],[119,213,67,0.16934797985534614],[119,213,68,0.16338735554486833],[119,213,69,0.15727419571136905],[119,213,70,0.1509908349747927],[119,213,71,0.1445280448935707],[119,213,72,0.13788404076844424],[119,213,73,0.13106350112317394],[119,213,74,0.12407660124227826],[119,213,75,0.11693806212024087],[119,213,76,0.1096662161439348],[119,213,77,0.10228209079078099],[119,213,78,0.09480851158136253],[119,213,79,0.08726922547482291],[119,214,64,0.18620827158548833],[119,214,65,0.18012522090386834],[119,214,66,0.17402593960221502],[119,214,67,0.16785486032276328],[119,214,68,0.1615652847599211],[119,214,69,0.1551326923818484],[119,214,70,0.14854277697628718],[119,214,71,0.14178987452402428],[119,214,72,0.13487575112496897],[119,214,73,0.1278084280399078],[119,214,74,0.12060104574352655],[119,214,75,0.11327076882166978],[119,214,76,0.10583773347563569],[119,214,77,0.09832403931929494],[119,214,78,0.09075278707331957],[119,214,79,0.08314716367307043],[119,215,64,0.18570338436727818],[119,215,65,0.1792668267042489],[119,215,66,0.17282456459032053],[119,215,67,0.16631940857610325],[119,215,68,0.15970489113573896],[119,215,69,0.15295922021934466],[119,215,70,0.1460712359884291],[119,215,71,0.1390385599496587],[119,215,72,0.13186617623181607],[119,215,73,0.12456507426565286],[119,215,74,0.1171509552478721],[119,215,75,0.10964300467139554],[119,215,76,0.10206273309690972],[119,215,77,0.09443288722652318],[119,215,78,0.08677643322185281],[119,215,79,0.07911561408454762],[119,216,64,0.1851451248315584],[119,216,65,0.1783553942921955],[119,216,66,0.17157206447073559],[119,216,67,0.16473697858720368],[119,216,68,0.15780413439934113],[119,216,69,0.15075430161933945],[119,216,70,0.14357920648374556],[119,216,71,0.13627942503481805],[119,216,72,0.12886277316210853],[119,216,73,0.12134278185560851],[119,216,74,0.11373726050079827],[119,216,75,0.10606695091126082],[119,216,76,0.09835427465139686],[119,216,77,0.09062217605155104],[119,216,78,0.08289306316352382],[119,216,79,0.07518784874486431],[119,217,64,0.18452090695630277],[119,217,65,0.17738106262311387],[119,217,66,0.17026120748872187],[119,217,67,0.16310289972208195],[119,217,68,0.15586083733420217],[119,217,69,0.1485181509060281],[119,217,70,0.1410691517993965],[119,217,71,0.13351699622386284],[119,217,72,0.12587190224750552],[119,217,73,0.11814947503305731],[119,217,74,0.1103691435363969],[119,217,75,0.10255271173552194],[119,217,76,0.09472302728050436],[119,217,77,0.0869027702701947],[119,217,78,0.07911336467295735],[119,217,79,0.07137401471559683],[119,218,64,0.18381883381523184],[119,218,65,0.1763346058798316],[119,218,66,0.16888530754955883],[119,218,67,0.1614129033550826],[119,218,68,0.15387302072347936],[119,218,69,0.14625092165022263],[119,218,70,0.13854316933066096],[119,218,71,0.13075509266884533],[119,218,72,0.12289885075319493],[119,218,73,0.11499162748272751],[119,218,74,0.10705395994049875],[119,218,75,0.09910820390952962],[119,218,76,0.0911771397162585],[119,218,77,0.08328272136931898],[119,218,78,0.07544497174088387],[119,218,79,0.06768102631330031],[119,219,64,0.1830285504331051],[119,219,65,0.17520818572101157],[119,219,66,0.16743888014322422],[119,219,67,0.15966368609573067],[119,219,68,0.15183937754159002],[119,219,69,0.14395309658902117],[119,219,70,0.13600330228371907],[119,219,71,0.12799706736576083],[119,219,72,0.11994801239113943],[119,219,73,0.11187439058221177],[119,219,74,0.10379732731291316],[119,219,75,0.09573921790290889],[119,219,76,0.08772228715424919],[119,219,77,0.07976731381670395],[119,219,78,0.07189252291775701],[119,219,79,0.06411264863983329],[119,220,64,0.1821422324843562],[119,220,65,0.17399623960628038],[119,220,66,0.16591843526863256],[119,220,67,0.15785361178915416],[119,220,68,0.14975988853790492],[119,220,69,0.1416260222855102],[119,220,70,0.13345200013020944],[119,220,71,0.1252462014539705],[119,220,72,0.117023224844512],[119,220,73,0.10880188476734837],[119,220,74,0.10060338215074606],[119,220,75,0.09244965278690595],[119,220,76,0.08436189718426114],[119,220,77,0.07635929523087466],[119,220,78,0.06845790875179832],[119,220,79,0.060669774763723344],[119,221,64,0.1811557131604888],[119,221,65,0.17269650747338905],[119,221,66,0.1643234095944942],[119,221,67,0.1559835545032895],[119,221,68,0.14763658141585934],[119,221,69,0.13927259073366924],[119,221,70,0.13089272998028242],[119,221,71,0.12250625391480788],[119,221,72,0.1141282675645089],[119,221,73,0.10577765632203964],[119,221,74,0.0974752074750059],[119,221,75,0.08924192725069444],[119,221,76,0.08109755716531354],[119,221,77,0.07305929316748129],[119,221,78,0.0651407107645374],[119,221,79,0.05735089901753006],[119,222,64,0.18006975054733312],[119,222,65,0.17131119906568548],[119,222,66,0.16265724012416571],[119,222,67,0.15405788475392285],[119,222,68,0.1454744358564033],[119,222,69,0.13689807016712863],[119,222,70,0.12833074115216273],[119,222,71,0.11978216897423148],[119,222,72,0.1112675221767079],[119,222,73,0.10280530196552536],[119,222,74,0.0944154336110801],[119,222,75,0.08611756918479359],[119,222,76,0.07792960552922562],[119,222,77,0.06986642103920972],[119,222,78,0.06193883450923032],[119,222,79,0.054152788979284806],[119,223,64,0.17889143784999945],[119,223,65,0.16984830421313762],[119,223,66,0.16092858164490953],[119,223,67,0.15208560123991152],[119,223,68,0.14328243666440343],[119,223,69,0.1345110873685479],[119,223,70,0.12577398526261435],[119,223,71,0.11708094356870791],[119,223,72,0.10844679789592486],[119,223,73,0.09988926367871052],[119,223,74,0.09142701460824094],[119,223,75,0.08307798635938313],[119,223,76,0.07485790958047764],[119,223,77,0.06677907577278083],[119,223,78,0.0588493393458757],[119,223,79,0.051071358795052056],[119,224,64,0.1776357587792505],[119,224,65,0.16832304835502054],[119,224,66,0.15915267023572555],[119,224,67,0.1500816103635613],[119,224,68,0.14107477732819546],[119,224,69,0.13212476379684412],[119,224,70,0.12323419419180637],[119,224,71,0.11441265727086879],[119,224,72,0.10567432439354116],[119,224,73,0.09703579626309339],[119,224,74,0.08851418284132556],[119,224,75,0.08012542078831487],[119,224,76,0.07188283242707864],[119,224,77,0.06379592987625736],[119,224,78,0.05586946763774775],[119,224,79,0.04810274657113846],[119,225,64,0.17632729036593972],[119,225,65,0.1667594955551874],[119,225,66,0.15735283508032238],[119,225,67,0.14806815579306046],[119,225,68,0.13887221627388455],[119,225,69,0.1297580078502128],[119,225,70,0.12072811828578785],[119,225,71,0.11179166708967267],[119,225,72,0.10296191458728961],[119,225,73,0.09425411015885196],[119,225,74,0.08568358437676954],[119,225,75,0.0772640894135858],[119,225,76,0.06900639172482823],[119,225,77,0.06091712064005336],[119,225,78,0.05299787612570692],[119,225,79,0.04524459861572876],[119,226,64,0.17500205539744787],[119,226,65,0.16519230119891568],[119,226,66,0.1555621607802753],[119,226,67,0.1460764002825814],[119,226,68,0.13670358806476768],[119,226,69,0.12743696556142975],[119,226,70,0.11827892714766079],[119,226,71,0.10923796955644174],[119,226,72,0.1003262998281107],[119,226,73,0.09155769206033075],[119,226,74,0.0829455977028506],[119,226,75,0.07450151376750663],[119,226,76,0.06623361294338535],[119,226,77,0.058145639223237684],[119,226,78,0.0502360722655983],[119,226,79,0.04249756333828702],[119,227,64,0.1737119460180758],[119,227,65,0.16367183468281887],[119,227,66,0.15382924601549172],[119,227,67,0.14415280679836415],[119,227,68,0.13461281396678318],[119,227,69,0.1252026547657833],[119,227,70,0.11592444225472959],[119,227,71,0.1067859833528869],[119,227,72,0.09779838859979514],[119,227,73,0.08897393962212587],[119,227,74,0.08032421905151768],[119,227,75,0.07185850725118019],[119,227,76,0.06358244981616072],[119,227,77,0.05549699941653842],[119,227,78,0.047597635160161966],[119,227,79,0.0398738622625656],[119,228,64,0.17252554632369932],[119,228,65,0.16226826711229142],[119,228,66,0.15222529795210604],[119,228,67,0.14236916235482747],[119,228,68,0.1326718566498029],[119,228,69,0.12312680537038977],[119,228,70,0.11373574254088722],[119,228,71,0.10450570729603573],[119,228,72,0.09544666119634009],[119,228,73,0.08656937102278421],[119,228,74,0.07788356177739647],[119,228,75,0.0693963442181332],[119,228,76,0.06111092085282409],[119,228,77,0.05302557391109437],[119,228,78,0.0451329384110134],[119,228,79,0.037419563039529286],[119,229,64,0.17149982162193783],[119,229,65,0.16104079897167123],[119,229,66,0.15081120314873447],[119,229,67,0.14078760314307476],[119,229,68,0.13094373425876296],[119,229,69,0.12127294934139575],[119,229,70,0.11177648995203031],[119,229,71,0.10246052511874282],[119,229,72,0.09333378671230119],[119,229,73,0.08440547638478042],[119,229,74,0.07568344875257658],[119,229,75,0.06717267509837578],[119,229,76,0.05887399145455887],[119,229,77,0.0507831345168575],[119,229,78,0.04289006842778894],[119,229,79,0.035178605065311064],[119,230,64,0.17067454403147156],[119,230,65,0.16003089123263867],[119,230,66,0.1496296855928119],[119,230,67,0.13945174939143218],[119,230,68,0.12947265072690756],[119,230,69,0.1196855824599676],[119,230,70,0.1100911861771271],[119,230,71,0.10069465446430884],[119,230,72,0.09150339875816683],[119,230,73,0.0825249927167457],[119,230,74,0.07376539571251818],[119,230,75,0.06522746063817869],[119,230,76,0.05690972979818039],[119,230,77,0.04880552224063386],[119,230,78,0.04090231547079553],[119,230,79,0.0331814240798642],[119,231,64,0.17007418974764535],[119,231,65,0.15926415779981856],[119,231,66,0.14870719425266166],[119,231,67,0.1383885981246315],[119,231,68,0.12828590585125665],[119,231,69,0.11839209945468367],[119,231,70,0.10870713629899349],[119,231,71,0.09923513851254749],[119,231,72,0.0899821108243205],[119,231,73,0.08095393542693892],[119,231,74,0.07215464835337589],[119,231,75,0.06358500143939924],[119,231,76,0.055241313524795804],[119,231,77,0.04711461412688706],[119,231,78,0.039190082405919396],[119,231,79,0.03144678383445065],[119,232,64,0.1697097402417835],[119,232,65,0.15875216179311513],[119,232,66,0.14805569598060753],[119,232,67,0.1376103240914419],[119,232,68,0.12739571779046496],[119,232,69,0.11740464766402503],[119,232,70,0.10763633923358037],[119,232,71,0.0980937749818188],[119,232,72,0.08878148200815716],[119,232,73,0.07970359556086136],[119,232,74,0.0708622027765716],[119,232,75,0.062255970544884534],[119,232,76,0.05387906099885779],[119,232,77,0.045720337715573864],[119,232,78,0.037762865300319776],[119,232,79,0.02998370462431106],[119,233,64,0.1695803846405063],[119,233,65,0.15849411256683252],[119,233,66,0.14767437037809522],[119,233,67,0.13711598520957943],[119,233,68,0.12680095408989636],[119,233,69,0.11672189511981887],[119,233,70,0.10687730067769753],[119,233,71,0.09726897811206721],[119,233,72,0.08789992866296523],[119,233,73,0.07877249835486763],[119,233,74,0.06988680499505408],[119,233,75,0.06123944500392088],[119,233,76,0.05282248339336459],[119,233,77,0.04462272979955088],[119,233,78,0.03662130307319661],[119,233,79,0.02879348653469568],[119,234,64,0.16967512225347609],[119,234,65,0.15847846249070202],[119,234,66,0.14755120572260677],[119,234,67,0.13689313171511092],[119,234,68,0.12648877052308308],[119,234,69,0.11633071246266197],[119,234,70,0.10641676812108788],[119,234,71,0.09674757335378337],[119,234,72,0.08732458188596798],[119,234,73,0.0781483232370796],[119,234,74,0.0692169298647458],[119,234,75,0.060524937027731034],[119,234,76,0.052062358467441595],[119,234,77,0.04381404060880248],[119,234,78,0.0357592975896276],[119,234,79,0.027871829043664635],[119,235,64,0.1699742640858325],[119,235,65,0.1586844023903141],[119,235,66,0.1476644949323867],[119,235,67,0.1369193180821483],[119,235,68,0.12643615691797003],[119,235,69,0.11620776797892408],[119,235,70,0.10623138735575102],[119,235,71,0.09650652436258243],[119,235,72,0.08703309063518397],[119,235,73,0.077809785276664],[119,235,74,0.06883273967216143],[119,235,75,0.06009442521069483],[119,235,76,0.05158282676705847],[119,235,77,0.04328088441295095],[119,235,78,0.03516620545030988],[119,235,79,0.027211048491594163],[119,236,64,0.17045083204297856],[119,236,65,0.1590832544203668],[119,236,66,0.14798423042445255],[119,236,67,0.13716351665975313],[119,236,68,0.1266113890170986],[119,236,69,0.11632103492761911],[119,236,70,0.1062892797906573],[119,236,71,0.09651459176989893],[119,236,72,0.08699537013047895],[119,236,73,0.07772847794277762],[119,236,74,0.06870802246393534],[119,236,75,0.05992438614246999],[119,236,76,0.051363510824383264],[119,236,77,0.04300643737424855],[119,236,78,0.03482910256771832],[119,236,79,0.02680239476307706],[119,237,64,0.1710718285912355],[119,237,65,0.1596397348672087],[119,237,66,0.14847337013395284],[119,237,67,0.13758740509807105],[119,237,68,0.126975358282775],[119,237,69,0.11663118295008719],[119,237,70,0.10655151229509688],[119,237,71,0.09673389543510574],[119,237,72,0.08717526727950303],[119,237,73,0.0778706490026454],[119,237,74,0.06881208208865355],[119,237,75,0.0599877985723504],[119,237,76,0.05138162975518505],[119,237,77,0.04297265533220209],[119,237,78,0.034735094531560345],[119,237,79,0.0266384405419346],[119,238,64,0.17179393814618885],[119,238,65,0.16030757574986965],[119,238,66,0.14908339622550743],[119,238,67,0.13814088714845452],[119,238,68,0.1274770830005346],[119,238,69,0.11708710670979365],[119,238,70,0.10696766882969094],[119,238,71,0.09711555214127224],[119,238,72,0.08752628464083284],[119,238,73,0.07819302770555242],[119,238,74,0.06910568203635872],[119,238,75,0.060250213656234654],[119,238,76,0.051608201921158],[119,238,77,0.043156611182963975],[119,238,78,0.034867787434123276],[119,238,79,0.026709680963684517],[119,239,64,0.1725548379051086],[119,239,65,0.16102165785572564],[119,239,66,0.1497471259791091],[119,239,67,0.13875542504268365],[119,239,68,0.12804739766064271],[119,239,69,0.11761980332526623],[119,239,70,0.10746974848994927],[119,239,71,0.09759343380799584],[119,239,72,0.08798505028871474],[119,239,73,0.07863587404844087],[119,239,74,0.06953356186359665],[119,239,75,0.06066164943748899],[119,239,76,0.051999253997921095],[119,239,77,0.043520982551743824],[119,239,78,0.03519704684056548],[119,239,79,0.026993585768628987],[119,240,64,0.17328068546974273],[119,240,65,0.16170843841383895],[119,240,66,0.15039149554505202],[119,240,67,0.13935852795904657],[119,240,68,0.12861445234319152],[119,240,69,0.11815816968921025],[119,240,70,0.10798755218740394],[119,240,71,0.09809846098843034],[119,240,72,0.08848388108232792],[119,240,73,0.07913323753107847],[119,240,74,0.07003189485533647],[119,240,75,0.061160841107417416],[119,240,76,0.05249655789566996],[119,240,77,0.04401107736269633],[119,240,78,0.03567222686670351],[119,240,79,0.0274440618709869],[119,241,64,0.17390846310454083],[119,241,65,0.16230561930097995],[119,241,66,0.1509548948948154],[119,241,67,0.13988913766765676],[119,241,68,0.1291175533256436],[119,241,69,0.11864170365412972],[119,241,70,0.10846063617695074],[119,241,71,0.09857017340429577],[119,241,72,0.08896229641827566],[119,241,73,0.07962469238300289],[119,241,74,0.0705404673678832],[119,241,75,0.06168802563164533],[119,241,76,0.053041116275865226],[119,241,77,0.044569047942932226],[119,241,78,0.03623707200952206],[119,241,79,0.028006934511947607],[119,242,64,0.17438970628066042],[119,242,65,0.16276501695074144],[119,242,66,0.15138933436357202],[119,242,67,0.14029926886516197],[119,242,68,0.12950846657535672],[119,242,69,0.11902166305874025],[119,242,70,0.10883951492255872],[119,242,71,0.0989581546235846],[119,242,72,0.08936882688638334],[119,242,73,0.080057671872811],[119,242,74,0.0710056560827819],[119,242,75,0.0621886517523389],[119,242,76,0.053577665304286114],[119,242,77,0.0451392152015134],[119,242,78,0.03683585935843925],[119,242,79,0.028626872080717618],[119,243,64,0.17468912417456633],[119,243,65,0.1630512480884758],[119,243,66,0.15165920812188605],[119,243,67,0.14055286762560193],[119,243,68,0.12975039144045442],[119,243,69,0.11926017586579687],[119,243,70,0.10908492872844897],[119,243,71,0.0992214771312215],[119,243,72,0.08966065482710059],[119,243,73,0.08038731983920928],[119,243,74,0.07138050290961635],[119,243,75,0.06261368717235286],[119,243,76,0.05405521926234963],[119,243,77,0.04566885189467696],[119,243,78,0.03741441778208146],[119,243,79,0.029248634602138276],[119,244,64,0.17478324126509623],[119,244,65,0.16314043377790508],[119,244,66,0.15174007257096883],[119,244,67,0.14062468008033616],[119,244,68,0.12981693855416743],[119,244,69,0.11932934764082632],[119,244,70,0.10916710140252037],[119,244,71,0.09932813005612147],[119,244,72,0.08980323042201874],[119,244,73,0.08057631115773063],[119,244,74,0.07162475298207405],[119,244,75,0.06291988393275741],[119,244,76,0.054427569542226314],[119,244,77,0.046108917665533794],[119,244,78,0.03792109755439884],[119,244,79,0.029818272642036212],[119,245,64,0.1746590602051899],[119,245,65,0.16301892188982728],[119,245,66,0.15161743969631541],[119,245,67,0.14049913126385757],[119,245,68,0.12969111176923057],[119,245,69,0.11921036605479635],[119,245,70,0.10906498749634119],[119,245,71,0.09925442896228047],[119,245,72,0.08976986259669692],[119,245,73,0.08059464030736913],[119,245,74,0.07170485481441613],[119,245,75,0.06307000097496333],[119,245,76,0.05465373696468809],[119,245,77,0.046414744770178255],[119,245,78,0.03830768933106844],[119,245,79,0.030284275566286767],[119,246,64,0.1743127462670483],[119,246,65,0.16268202821939462],[119,246,66,0.1512855855229781],[119,246,67,0.14016921416180947],[119,246,68,0.12936429402784877],[119,246,69,0.11889260217010995],[119,246,70,0.10876550872761968],[119,246,71,0.09898440715617361],[119,246,72,0.0895412840406488],[119,246,73,0.08041937720627278],[119,246,74,0.07159392166810905],[119,246,75,0.06303298283792681],[119,246,76,0.05469837629391708],[119,246,77,0.046546673313241124],[119,246,78,0.03853029127435374],[119,246,79,0.03059866795365778],[119,247,64,0.1737483337880744],[119,247,65,0.16213279660079077],[119,247,66,0.1507463739307496],[119,247,67,0.1396353891040727],[119,247,68,0.12883523716928635],[119,247,69,0.11837270835380363],[119,247,70,0.10826277926122965],[119,247,71,0.09850918801620832],[119,247,72,0.08910518968378672],[119,247,73,0.08003438949892545],[119,247,74,0.07127165316871592],[119,247,75,0.06278409340687054],[119,247,76,0.05453213176407847],[119,247,77,0.04647063473062848],[119,247,78,0.03855012301338594],[119,247,79,0.0307180528258695],[119,248,64,0.17297645517870347],[119,248,65,0.1613807784959786],[119,248,66,0.15000809620842795],[119,248,67,0.13890449375876657],[119,248,68,0.12810905578079212],[119,248,69,0.11765371275417229],[119,248,70,0.10755731960346557],[119,248,71,0.09782633791222634],[119,248,72,0.0884557480119391],[119,248,73,0.07943003049920053],[119,248,74,0.07072421621154631],[119,248,75,0.06230500360301053],[119,248,76,0.054131942378787],[119,248,77,0.04615868217589707],[119,248,78,0.03833428501759235],[119,248,79,0.030604600221290003],[119,249,64,0.1720130931924551],[119,249,65,0.1604408326679253],[119,249,66,0.14908432685355572],[119,249,67,0.1379886641029525],[119,249,68,0.1271962253090124],[119,249,69,0.11674411037795566],[119,249,70,0.10665525895209528],[119,249,71,0.09693919935512525],[119,249,72,0.08759308465741254],[119,249,73,0.07860279202550362],[119,249,74,0.0699440842023218],[119,249,75,0.06158383188524441],[119,249,76,0.05348129569800986],[119,249,77,0.045589466390821023],[119,249,78,0.037856461855054285],[119,249,79,0.030226979502532166],[119,250,64,0.1708783573031482],[119,250,65,0.15933194568826395],[119,250,66,0.1479927962575862],[119,250,67,0.1369042668728489],[119,250,68,0.12611158476850137],[119,250,69,0.1156569509151694],[119,250,70,0.10556752594255725],[119,250,71,0.0958562040992528],[119,250,72,0.08652273776479237],[119,250,73,0.07755492140692914],[119,250,74,0.06892983369733104],[119,250,75,0.060615136425837546],[119,250,76,0.052570428788690136],[119,250,77,0.04474865557140603],[119,250,78,0.03709756770611512],[119,250,79,0.029561233654069957],[119,251,64,0.16959528518283987],[119,251,65,0.1580760741734726],[119,251,66,0.1467542810551584],[119,251,67,0.13567084412943897],[119,251,68,0.12487334451054638],[119,251,69,0.11440892357686654],[119,251,70,0.10430902783775309],[119,251,71,0.09459016601300003],[119,251,72,0.08525508470708758],[119,251,73,0.07629400199285521],[119,251,74,0.06768589753624529],[119,251,75,0.05939985782295166],[119,251,76,0.05139647498560393],[119,251,77,0.04362929767809655],[119,251,78,0.03604633240574663],[119,251,79,0.028591593693955204],[119,252,64,0.16818867042793506],[119,252,65,0.15669700979362028],[119,252,66,0.14539151306143525],[119,252,67,0.13431007071591675],[119,252,68,0.12350209965083975],[119,252,69,0.11301943933935066],[119,252,70,0.10289781832719894],[119,252,71,0.09315755363793699],[119,252,72,0.08380473981503672],[119,252,73,0.07483249656496366],[119,252,74,0.06622227360231564],[119,252,75,0.057945211225791576],[119,252,76,0.04996355509010972],[119,252,77,0.04223212358564648],[119,252,78,0.03469982619843936],[119,252,79,0.027311231196105172],[119,253,64,0.1666839178381892],[119,253,65,0.15521926825178586],[119,253,66,0.1439281078715736],[119,253,67,0.13284472552994359],[119,253,68,0.12201984989720038],[119,253,69,0.11150971112540127],[119,253,70,0.10135425422982887],[119,253,71,0.09157774247316243],[119,253,72,0.08218992288234256],[119,253,73,0.07318725312986805],[119,253,74,0.06455418839877597],[119,253,75,0.056264526773059674],[119,253,76,0.04828281162645633],[119,253,77,0.04056578942401526],[119,253,78,0.033063921306606105],[119,253,79,0.025722946796364807],[119,254,64,0.1651059277145353],[119,254,65,0.1536670035909825],[119,254,66,0.14238751435206654],[119,254,67,0.13129767768697279],[119,254,68,0.12044902666952714],[119,254,69,0.10990183260009012],[119,254,70,0.09970014153479986],[119,254,71,0.08987224715072253],[119,254,72,0.08043179832339654],[119,254,73,0.07137897266412646],[119,254,74,0.06270171469881662],[119,254,75,0.05437703728422392],[119,254,76,0.046372384780121484],[119,254,77,0.038647056428711496],[119,254,78,0.031153688339683332],[119,254,79,0.023839792438481312],[119,255,64,0.1634780108063419],[119,255,65,0.15206294934846026],[119,255,66,0.14079198641463578],[119,255,67,0.129690888810817],[119,255,68,0.11881152856346466],[119,255,69,0.10821785641593915],[119,255,70,0.09795787136664755],[119,255,71,0.08806393381061833],[119,255,72,0.07855378498850589],[119,255,73,0.06943163849236776],[119,255,74,0.060689342610564946],[119,255,75,0.05230761219705615],[119,255,76,0.044257328661587464],[119,255,77,0.0365009065985361],[119,255,78,0.0289937255075492],[119,255,79,0.021685625006533978],[119,256,64,0.16182083570578482],[119,256,65,0.1504273882436309],[119,256,66,0.1391615786286869],[119,256,67,0.12804443285343803],[119,256,68,0.11712776637636657],[119,256,69,0.10647887290915929],[119,256,70,0.09614954662492883],[119,256,71,0.08617621314012693],[119,256,72,0.07658083678499349],[119,256,73,0.06737190710401825],[119,256,74,0.05854550349870633],[119,256,75,0.05008643681466837],[119,256,76,0.041969466572762223],[119,256,77,0.03416059245149951],[119,256,78,0.02661841854935458],[119,256,79,0.019295588888956532],[119,257,64,0.16015141704925154],[119,257,65,0.1487771578342195],[119,257,66,0.1375131722215611],[119,257,67,0.1263755391543642],[119,257,68,0.11541572264075113],[119,257,69,0.10470409354050891],[119,257,70,0.09429610308708619],[119,257,71,0.08423221753440108],[119,257,72,0.07453869742132005],[119,257,73,0.06522846378957624],[119,257,74,0.05630205041569605],[119,257,75,0.04774864099289127],[119,257,76,0.03954719008184658],[119,257,77,0.03166762654178302],[119,257,78,0.02407213805931272],[119,257,79,0.016716535310515552],[119,258,64,0.15848243062108744],[119,258,65,0.1471250281260299],[119,258,66,0.13585991950123122],[119,258,67,0.12469809899255963],[119,258,68,0.11369051034477246],[119,258,69,0.1029104502331667],[119,258,70,0.09241693713048958],[119,258,71,0.08225444501753025],[119,258,72,0.07245354901070708],[119,258,73,0.06303166559470036],[119,258,74,0.05399388667403618],[119,258,75,0.04533390651848196],[119,258,76,0.03703504054527154],[119,258,77,0.029071334758426645],[119,258,78,0.0214087645561388],[119,258,79,0.014006521519427195],[119,259,64,0.15682774345330727],[119,259,65,0.14548631394159114],[119,259,66,0.13421897154092718],[119,259,67,0.12303150006784072],[119,259,68,0.11197413052785303],[119,259,69,0.10112286802916043],[119,259,70,0.09054012060078935],[119,259,71,0.08027423403011841],[119,259,72,0.0703600040068193],[119,259,73,0.06081928996171562],[119,259,74,0.051661729965568996],[119,259,75,0.04288555590012896],[119,259,76,0.03447850796784832],[119,259,77,0.02641884746946501],[119,259,78,0.018676466654581232],[119,259,79,0.011214094337606707],[119,260,64,0.15520364918742696],[119,260,65,0.14387972759514117],[119,260,66,0.1326118789061285],[119,260,67,0.12140054328514566],[119,260,68,0.11029488323243061],[119,260,69,0.09937314236003822],[119,260,70,0.08870071654716416],[119,260,71,0.07832949491427527],[119,260,72,0.06829823878606633],[119,260,73,0.05863306861533633],[119,260,74,0.04934805838191761],[119,260,75,0.04044593681570201],[119,260,76,0.03191889463398678],[119,260,77,0.023749496832863346],[119,260,78,0.015911698934611286],[119,260,79,0.00837196596633011],[119,261,64,0.15362318085512336],[119,261,65,0.14232036512477453],[119,261,66,0.13105617064498146],[119,261,67,0.11982558946121465],[119,261,68,0.1086762394557124],[119,261,69,0.09768792223606554],[119,261,70,0.08692843108176512],[119,261,71,0.07645270593991596],[119,261,72,0.06630307974798019],[119,261,73,0.0565096379540287],[119,261,74,0.0470906908960311],[119,261,75,0.03805335852582853],[119,261,76,0.029394266793252202],[119,261,77,0.021100354843548615],[119,261,78,0.013149792031249205],[119,261,79,0.005513003614263941],[119,262,64,0.15209573819737762],[119,262,65,0.14081930396985895],[119,262,66,0.1295649153289055],[119,262,67,0.11832207021979607],[119,262,68,0.10713629104770603],[119,262,69,0.09608809639357432],[119,262,70,0.0852469395656834],[119,262,71,0.07467018832951554],[119,262,72,0.06440323962942857],[119,262,73,0.05447975155785027],[119,262,74,0.044921992379274384],[119,262,75,0.035741306231487927],[119,262,76,0.026938694946787682],[119,262,77,0.018505515263579197],[119,262,78,0.01042429053818268],[119,262,79,0.0026696359162542965],[119,263,64,0.15062729323573182],[119,263,65,0.13938383620128336],[119,263,66,0.12814697523835383],[119,263,67,0.11690074775191373],[119,263,68,0.1056879948205855],[119,263,69,0.09458899773322114],[119,263,70,0.08367402585057487],[119,263,71,0.07300215439849063],[119,263,72,0.06262124926479447],[119,263,73,0.05256807179925799],[119,263,74,0.04286850356789609],[119,263,75,0.03353789082115218],[119,263,76,0.024581508248386334],[119,263,77,0.01599514141064348],[119,263,78,0.007765787074441797],[119,263,79,-1.2752949035627157E-4],[119,264,64,0.14922091096445544],[119,264,65,0.13801801576378256],[119,264,66,0.12680757082269364],[119,264,67,0.11556827883458255],[119,264,68,0.10433971270744925],[119,264,69,0.09320089328016155],[119,264,70,0.08222199416307316],[119,264,71,0.07146301316303982],[119,264,72,0.060973629475969945],[119,264,73,0.050793182285700934],[119,264,74,0.040950770862584814],[119,264,75,0.03146547605882884],[119,264,76,0.02234670290518862],[119,264,77,0.0135946438272137],[119,264,78,0.005200861823343124],[119,264,79,-0.002851007219856239],[119,265,64,0.14787758697277253],[119,265,65,0.1367235214292012],[119,265,66,0.12554915700886454],[119,265,67,0.11432808455966607],[119,265,68,0.10309604931095784],[119,265,69,0.09192976091299608],[119,265,70,0.08089835480721472],[119,265,71,0.07006193454433261],[119,265,72,0.059471304202136435],[119,265,73,0.049167822253600196],[119,265,74,0.03918337711902235],[119,265,75,0.029540484437154672],[119,265,76,0.020252505894754504],[119,265,77,0.011323989263778091],[119,265,78,0.0027511291149343317],[119,265,79,-0.005060069991034553],[119,266,64,0.14659740335731805],[119,266,65,0.13550083672019286],[119,266,66,0.12437261250743117],[119,266,67,0.1131815268141273],[119,266,68,0.10195898778897199],[119,266,69,0.09077835373312593],[119,266,70,0.0797067845037781],[119,266,71,0.06880367296080718],[119,266,72,0.058120255661307095],[119,266,73,0.04769934373397025],[119,266,74,0.037575174305799076],[119,266,75,0.02777338265474655],[119,266,76,0.01831109506542986],[119,266,77,0.009197142173122787],[119,266,78,0.003724693780841612],[119,266,79,0.0018074375927410874],[119,267,64,0.1453810038630884],[119,267,65,0.13435074765176247],[119,267,66,0.1232787428657847],[119,267,67,0.112129392169392],[119,267,68,0.10092932465737225],[119,267,69,0.08974755259676034],[119,267,70,0.07864836185412488],[119,267,71,0.06768965078727622],[119,267,72,0.05692242204056145],[119,267,73,0.046390392032297396],[119,267,74,0.036129718644860434],[119,267,75,0.026168847430991342],[119,267,76,0.0165284764545256],[119,267,77,0.0135148726540725],[119,267,78,0.011203122273256573],[119,267,79,0.008984064778710974],[119,268,64,0.14423138879668196],[119,268,65,0.133276158753572],[119,268,66,0.12227009764690362],[119,268,67,0.11117368348124063],[119,268,68,0.10000840375008299],[119,268,69,0.08883800700853865],[119,268,70,0.07772307811011651],[119,268,71,0.06671930187080044],[119,268,72,0.05587683794007105],[119,268,73,0.04523980980963529],[119,268,74,0.034845908609105844],[119,268,75,0.02709318638973548],[119,268,76,0.024316994170037496],[119,268,77,0.021614114623713206],[119,268,78,0.018993393630631038],[119,268,79,0.016457187024263256],[119,269,64,0.1431560298879599],[119,269,65,0.1322842274783893],[119,269,66,0.12135310176758696],[119,269,67,0.11031971917187097],[119,269,68,0.09920014926219772],[119,269,69,0.08805206427782614],[119,269,70,0.07693162315021995],[119,269,71,0.06589167502811788],[119,269,72,0.05498101754661288],[119,269,73,0.04424376481738912],[119,269,74,0.039171976978766086],[119,269,75,0.036080071402826035],[119,269,76,0.033020791832902414],[119,269,77,0.03001377013497574],[119,269,78,0.027072651469343702],[119,269,79,0.02420513288864136],[119,270,64,0.1399398078450654],[119,270,65,0.13071057751829163],[119,270,66,0.12054050071146816],[119,270,67,0.1095785398615514],[119,270,68,0.09851339751298745],[119,270,69,0.08739598656514855],[119,270,70,0.07627744630388417],[119,270,71,0.06520729720663197],[119,270,72,0.0553111333008844],[119,270,73,0.05203785273269286],[119,270,74,0.04870726075519485],[119,270,75,0.045352837320095],[119,270,76,0.04200337877936684],[119,270,77,0.038682672674187436],[119,270,78,0.035409278751550755],[119,270,79,0.032196416248672234],[119,271,64,0.13464507464404019],[119,271,65,0.12534627511135468],[119,271,66,0.11622946462553667],[119,271,67,0.10735284972512191],[119,271,68,0.09794253521360066],[119,271,69,0.08686183837599612],[119,271,70,0.07575017898269754],[119,271,71,0.0688757310777107],[119,271,72,0.06553352026893677],[119,271,73,0.062060269099731516],[119,271,74,0.05849461727248852],[119,271,75,0.05487221273477076],[119,271,76,0.05122513606433622],[119,271,77,0.047581426185787985],[119,271,78,0.04396470781068483],[119,271,79,0.040393920820932294],[119,272,64,0.12918613400174492],[119,272,65,0.11981127423352317],[119,272,66,0.1106337004886607],[119,272,67,0.10171360611320993],[119,272,68,0.09306242864824346],[119,272,69,0.08465497147938413],[119,272,70,0.08271491050920231],[119,272,71,0.0794227452297332],[119,272,72,0.0759224773531143],[119,272,73,0.07225436781665212],[119,272,74,0.06845780499108789],[119,272,75,0.06457048718894466],[119,272,76,0.060627700938766904],[119,272,77,0.05666169577106167],[119,272,78,0.05270115609065936],[119,272,79,0.04877077054066137],[119,273,64,0.12367328626962189],[119,273,65,0.11421650506997665],[119,273,66,0.1049717054161686],[119,273,67,0.09600035853370262],[119,273,68,0.08987035148675236],[119,273,69,0.08963877239380824],[119,273,70,0.0894313273174394],[119,273,71,0.08921885911968133],[119,273,72,0.08637835177685557],[119,273,73,0.08252803495248831],[119,273,74,0.07851336587365833],[119,273,75,0.07437386462696267],[119,273,76,0.07014780478644844],[119,273,77,0.06587144045324728],[119,273,78,0.061578325710517266],[119,273,79,0.05729872708354559],[119,274,64,0.11820487579778916],[119,274,65,0.1086612577045204],[119,274,66,0.09934316268066534],[119,274,67,0.09606941321385278],[119,274,68,0.09564396484686838],[119,274,69,0.0952958075938768],[119,274,70,0.09500570723973968],[119,274,71,0.09474905631739095],[119,274,72,0.09449718226233135],[119,274,73,0.09279353773275416],[119,274,74,0.0885806750721103],[119,274,75,0.08420977048257362],[119,274,76,0.07972175012072198],[119,274,77,0.07515652724550866],[119,274,78,0.07055217696783513],[119,274,79,0.06594419957299918],[119,275,64,0.11286774868380298],[119,275,65,0.1035934043642937],[119,275,66,0.1028256991179947],[119,275,67,0.10213958441324048],[119,275,68,0.10155934404671298],[119,275,69,0.1010810262413495],[119,275,70,0.1006917230192574],[119,275,71,0.10037146677069356],[119,275,72,0.10009464170245744],[119,275,73,0.09983131760750401],[119,275,74,0.09858235293607223],[119,275,75,0.09400733220716109],[119,275,76,0.08928594901772754],[119,275,77,0.08446131602308246],[119,275,78,0.07957554766822023],[119,275,79,0.07466888619656543],[119,276,64,0.11122319675475051],[119,276,65,0.11023516697405494],[119,276,66,0.10928030782617848],[119,276,67,0.10841603467086203],[119,276,68,0.10767100985655646],[119,276,69,0.10704899546165395],[119,276,70,0.10654327551601098],[119,276,71,0.10613852776787791],[119,276,72,0.10581232500003447],[119,276,73,0.10553656358215371],[119,276,74,0.10527881742360433],[119,276,75,0.10369799008444337],[119,276,76,0.09877759172362603],[119,276,77,0.09372937425222332],[119,276,78,0.08859890179365179],[119,276,79,0.08343054445176995],[119,277,64,0.11831948219803434],[119,277,65,0.11713405947218392],[119,277,66,0.11598963480757198],[119,277,67,0.11392263927651763],[119,277,68,0.11218100807730008],[119,277,69,0.11112068288188959],[119,277,70,0.11068711598050202],[119,277,71,0.11080892686709715],[119,277,72,0.11139638141930519],[119,277,73,0.11137561673758237],[119,277,74,0.11110956564924056],[119,277,75,0.11085973751233907],[119,277,76,0.10813544534430929],[119,277,77,0.10290432136219722],[119,277,78,0.09757120718186663],[119,277,79,0.09218388958874568],[119,278,64,0.12168000931829565],[119,278,65,0.11774317629722253],[119,278,66,0.11457241652685946],[119,278,67,0.11216570545619214],[119,278,68,0.11050354081179342],[119,278,69,0.10954762316830541],[119,278,70,0.10923974310159529],[119,278,71,0.10950370067557347],[119,278,72,0.1102436737364273],[119,278,73,0.11134263667698185],[119,278,74,0.1126918702017895],[119,278,75,0.11420565434258712],[119,278,76,0.11581397641213709],[119,278,77,0.11193080246478568],[119,278,78,0.10644094181618145],[119,278,79,0.100881620752533],[119,279,64,0.12020518777135705],[119,279,65,0.11625664369217426],[119,279,66,0.11310252042815527],[119,279,67,0.11074021445950782],[119,279,68,0.10914879698090751],[119,279,69,0.10828759712215036],[119,279,70,0.1080949892325313],[119,279,71,0.10849023297925586],[119,279,72,0.10937172997034628],[119,279,73,0.11061585212405295],[119,279,74,0.11211112032960097],[119,279,75,0.11377131870736135],[119,279,76,0.1155257200016358],[119,279,77,0.11731724879804056],[119,279,78,0.11515722826481324],[119,279,79,0.10947557427561128],[119,280,64,0.11908395682065742],[119,280,65,0.11511935005126028],[119,280,66,0.11197585053269038],[119,280,67,0.10965042179725448],[119,280,68,0.1081208932782049],[119,280,69,0.10734444651389091],[119,280,70,0.10725630263628316],[119,280,71,0.10777148282178067],[119,280,72,0.10878295281690514],[119,280,73,0.11016083142411626],[119,280,74,0.11179099428612],[119,280,75,0.11358671505260814],[119,280,76,0.11547654177039612],[119,280,77,0.11740243815522888],[119,280,78,0.11931822523666624],[119,280,79,0.11791800353085202],[119,281,64,0.11831779467967146],[119,281,65,0.11433315951680251],[119,281,66,0.11119450887161797],[119,281,67,0.10889852164756758],[119,281,68,0.10742197654515939],[119,281,69,0.10672014194466634],[119,281,70,0.10672536404069749],[119,281,71,0.10734874779661685],[119,281,72,0.108478189320099],[119,281,73,0.10997793355155377],[119,281,74,0.11173134381022348],[119,281,75,0.11365117934264135],[119,281,76,0.11566526391945631],[119,281,77,0.11771460052533106],[119,281,78,0.11975180343356384],[119,281,79,0.12173968414119596],[119,282,64,0.11790598580754164],[119,282,65,0.11389779129625477],[119,282,66,0.11075851444256879],[119,282,67,0.1084846987766015],[119,282,68,0.1070522678923666],[119,282,69,0.10641482006788505],[119,282,70,0.10650211786071817],[119,282,71,0.10722169012849136],[119,282,72,0.10845675258403031],[119,282,73,0.11006608258624129],[119,282,74,0.11193068137807705],[119,282,75,0.11396280050005508],[119,282,76,0.11608955043419217],[119,282,77,0.1182509841079496],[119,282,78,0.12039851303904392],[119,282,79,0.12249347133024827],[119,283,64,0.11784615105459056],[119,283,65,0.11381134035809509],[119,283,66,0.11066631507703956],[119,283,67,0.10840763228832406],[119,283,68,0.10701055911227414],[119,283,69,0.10642727349113301],[119,283,70,0.10658525643211486],[119,283,71,0.1073888160363361],[119,283,72,0.10871689695463371],[119,283,73,0.11042323926293296],[119,283,74,0.11238664856638675],[119,283,75,0.1145188859525294],[119,283,76,0.11674637009917133],[119,283,77,0.1190082250609058],[119,283,78,0.12125467415201105],[119,283,79,0.12344557547402546],[119,284,64,0.11813379960364495],[119,284,65,0.11406982010259903],[119,284,66,0.1109143215544523],[119,284,67,0.1086640219546825],[119,284,68,0.1072937320365901],[119,284,69,0.1067544639859952],[119,284,70,0.10697172788609843],[119,284,71,0.1078469790653222],[119,284,72,0.10925531756803514],[119,284,73,0.11104589742713611],[119,284,74,0.1130955100624279],[119,284,75,0.11531545381690383],[119,284,76,0.11763148743975815],[119,284,77,0.11998183773416621],[119,284,78,0.12231556492434509],[119,284,79,0.12459106328358444],[119,285,64,0.11876216218242663],[119,285,65,0.11466698700208555],[119,285,66,0.11149672429503432],[119,285,67,0.10924839765102085],[119,285,68,0.10789656145030302],[119,285,69,0.10739131964040638],[119,285,70,0.10765652829779843],[119,285,71,0.10859116796799717],[119,285,72,0.11006693465506728],[119,285,73,0.11192886537468932],[119,285,74,0.11405193258379243],[119,285,75,0.11634700989116609],[119,285,76,0.11873923821869631],[119,285,77,0.12116598903437847],[119,285,78,0.12357519507585574],[119,285,79,0.12592380979078147],[119,286,64,0.11972225115781998],[119,286,65,0.11559439279771644],[119,286,66,0.11240553820314653],[119,286,67,0.11015315745954535],[119,286,68,0.1088117471210977],[119,286,69,0.10833076151127641],[119,286,70,0.10863272366644888],[119,286,71,0.109614524695409],[119,286,72,0.1111449081737384],[119,286,73,0.11306527767045066],[119,286,74,0.11524899434416175],[119,286,75,0.11760655515318685],[119,286,76,0.12006253527477703],[119,286,77,0.12255350282502417],[119,286,78,0.12502630898289246],[119,286,79,0.12743650014569058],[119,287,64,0.12100295219200863],[119,287,65,0.1168414688524006],[119,287,66,0.11363068020832795],[119,287,67,0.11136863895824223],[119,287,68,0.11002997944810028],[119,287,69,0.10956376427780506],[119,287,70,0.10989150622795035],[119,287,71,0.11090839700704236],[119,287,72,0.1124806873078385],[119,287,73,0.11444664204782995],[119,287,74,0.1166782297769256],[119,287,75,0.11908562864637579],[119,287,76,0.12159290982149262],[119,287,77,0.1241358997977115],[119,287,78,0.12666042418356943],[119,287,79,0.12912066670877043],[119,288,64,0.12259114743452054],[119,288,65,0.1183956426338319],[119,288,66,0.1151600794780745],[119,288,67,0.1128832236692715],[119,288,68,0.11154003870396684],[119,288,69,0.11107945086950333],[119,288,70,0.11142228507382512],[119,288,71,0.11246242567359033],[119,288,72,0.11406409480571217],[119,288,73,0.11606292136320351],[119,288,74,0.11832970949069965],[119,288,75,0.12077438572633625],[119,288,76,0.12332058817978875],[119,288,77,0.12590347278876293],[119,288,78,0.1284679052738163],[119,288,79,0.13096676141205862],[119,289,64,0.1244718702503314],[119,289,65,0.1202424863278081],[119,289,66,0.11697982030250498],[119,289,67,0.11468347466698464],[119,289,68,0.11332892787046928],[119,289,69,0.11286522106907226],[119,289,70,0.11321281107671777],[119,289,71,0.11426466627271048],[119,289,72,0.11588344615934315],[119,289,73,0.11790265060535587],[119,289,74,0.12019215545688877],[119,289,75,0.1226617116686598],[119,289,76,0.12523460394505503],[119,289,77,0.12784539754123647],[119,289,78,0.13043807319439019],[119,289,79,0.132964263389528],[119,290,64,0.12662849148391275],[119,290,65,0.12236589758172128],[119,290,66,0.11907431765080145],[119,290,67,0.11675430734545261],[119,290,68,0.11538203906746142],[119,290,69,0.11490691409002612],[119,290,70,0.11524933612232657],[119,290,71,0.11630174557764994],[119,290,72,0.11792570362364213],[119,290,73,0.11995308895983886],[119,290,74,0.12225309142918356],[119,290,75,0.12473537063775586],[119,290,76,0.12732294558824903],[119,290,77,0.12994987891227716],[119,290,78,0.13255934990874804],[119,290,79,0.13510182187650563],[119,291,64,0.12904293725921565],[119,291,65,0.1247483123782066],[119,291,66,0.12142652539940973],[119,291,67,0.1190791933454966],[119,291,68,0.11768335357521725],[119,291,69,0.11718900512904656],[119,291,70,0.11751680664775238],[119,291,71,0.11855905253873061],[119,291,72,0.12017666507591959],[119,291,73,0.12220040692823311],[119,291,74,0.12449902859497586],[119,291,75,0.12698219001669425],[119,291,76,0.12957273949113185],[119,291,77,0.1322043325257751],[119,291,78,0.1348194384717547],[119,291,79,0.1373674343781266],[119,292,64,0.13169593831569865],[119,292,65,0.1273709500390611],[119,292,66,0.12401817723211583],[119,292,67,0.12164039764132767],[119,292,68,0.12021567545025155],[119,292,69,0.1196948358931833],[119,292,70,0.11999909148638288],[119,292,71,0.12102096385780711],[119,292,72,0.12262118771566571],[119,292,73,0.12462990850242939],[119,292,74,0.1269156864588125],[119,292,75,0.12938828009818637],[119,292,76,0.13197046841574078],[119,292,77,0.13459560187045722],[119,292,78,0.1372055384893543],[119,292,79,0.139748660106954],[119,293,64,0.13456731088029966],[119,293,65,0.13021409035933065],[119,293,66,0.12683006021189197],[119,293,67,0.12441924878669722],[119,293,68,0.12296089873452079],[119,293,69,0.12240687910179548],[119,293,70,0.12267924401920174],[119,293,71,0.12367110415559096],[119,293,72,0.125243446604524],[119,293,73,0.12722628839382075],[119,293,74,0.1294882489577765],[119,293,75,0.13193928913658998],[119,293,76,0.1345022254079848],[119,293,77,0.13711021084329744],[119,293,78,0.1397045969690885],[119,293,79,0.1422328686896463],[119,294,64,0.13763626907534068],[119,294,65,0.13325738287155411],[119,294,66,0.12984232102450405],[119,294,67,0.1273964423205452],[119,294,68,0.12590030825799162],[119,294,69,0.1253070369632227],[119,294,70,0.12553979863251735],[119,294,71,0.12649264073183258],[119,294,72,0.1280272280464536],[119,294,73,0.1299739243173973],[119,294,74,0.13220165580878646],[119,294,75,0.13462069376093083],[119,294,76,0.1371540031353538],[119,294,77,0.1397346517382369],[119,294,78,0.14230359456145464],[119,294,79,0.14480752414266548],[119,295,64,0.1408817688625021],[119,295,65,0.13648018824030184],[119,295,66,0.13303480489401703],[119,295,67,0.1305523773322852],[119,295,68,0.1290149140347193],[119,295,69,0.12837697362632805],[119,295,70,0.12856310148224853],[119,295,71,0.12946861291850212],[119,295,72,0.13095625780821954],[119,295,73,0.13285720433088566],[119,295,74,0.13504092908796],[119,295,75,0.1374181247490853],[119,295,76,0.1399120186588898],[119,295,77,0.14245570868036156],[119,295,78,0.14498986719225082],[119,295,79,0.14746050411717346],[119,296,64,0.1442828835226632],[119,296,65,0.13986195178680486],[119,296,66,0.1363874271699944],[119,296,67,0.13386752618651993],[119,296,68,0.1322858192522255],[119,296,69,0.13159848160670165],[119,296,70,0.13173167556455856],[119,296,71,0.13258229602575616],[119,296,72,0.13401456418000018],[119,296,73,0.1358608892287188],[119,296,74,0.13799153504182238],[119,296,75,0.14031772816290683],[119,296,76,0.14276307363919816],[119,296,77,0.14526081650531608],[119,296,78,0.1477514630856853],[119,296,79,0.1501804544128941],[119,297,64,0.14781921067182868],[119,297,65,0.1433826091438951],[119,297,66,0.13988057758661168],[119,297,67,0.13732283740741155],[119,297,68,0.13569462185440276],[119,297,69,0.1349538821877531],[119,297,70,0.13502862009306482],[119,297,71,0.13581759988092157],[119,297,72,0.13718687587634085],[119,297,73,0.1389705099910693],[119,297,74,0.14103978113059765],[119,297,75,0.14330656184453142],[119,297,76,0.14569494997673804],[119,297,77,0.1481384550841928],[119,297,78,0.15057753517849243],[119,297,79,0.1529571787611827],[119,298,64,0.15147131081293141],[119,298,65,0.14702302404104609],[119,298,66,0.14349555719347423],[119,298,67,0.14090017172249053],[119,298,68,0.139223849717728],[119,298,69,0.13842645979647414],[119,298,70,0.1384380441824066],[119,298,71,0.13915950196027604],[119,298,72,0.14045905477723403],[119,298,73,0.1421728002877229],[119,298,74,0.14417324830335498],[119,298,75,0.14637302727363716],[119,298,76,0.14869684088616486],[119,298,77,0.15107857909366856],[119,298,78,0.15345876892482302],[119,298,79,0.15578206387707094],[119,299,64,0.15522117742365643],[119,299,65,0.15076545821965892],[119,299,66,0.14721504795828336],[119,299,67,0.14458277126605418],[119,299,68,0.14285742942093616],[119,299,69,0.14200093035402422],[119,299,70,0.14194553483832092],[119,299,71,0.14259451511377763],[119,299,72,0.1438185635094788],[119,299,73,0.14545616403694756],[119,299,74,0.14738125850516962],[119,299,75,0.14950733678581496],[119,299,76,0.15175981740488223],[119,299,77,0.15407308323154734],[119,299,78,0.15638784549207194],[119,299,79,0.15864853978045046],[119,300,64,0.15905273858027486],[119,300,65,0.15459407347858378],[119,300,66,0.1510236150413425],[119,300,67,0.14835576194214103],[119,300,68,0.14658118860814204],[119,300,69,0.1456639436011245],[119,300,70,0.14553865925421633],[119,300,71,0.1461111898827308],[119,300,72,0.14725496786830725],[119,300,73,0.14881117801934396],[119,300,74,0.15065537741628046],[119,300,75,0.15270201615203527],[119,300,76,0.15487733033578938],[119,300,77,0.1571163028776938],[119,300,78,0.15935994034762518],[119,300,79,0.16155257538637677],[119,301,64,0.16295239011737145],[119,301,65,0.15849546584975946],[119,301,66,0.1549082417417832],[119,301,67,0.15220668894696326],[119,301,68,0.15038339194528857],[119,301,69,0.1494046193981416],[119,301,70,0.1492075014141206],[119,301,71,0.149700651410267],[119,301,72,0.15076047407915416],[119,301,73,0.152231129546555],[119,301,74,0.1539899524231251],[119,301,75,0.15595244251908796],[119,301,76,0.15804574762409868],[119,301,77,0.16020555020023297],[119,301,78,0.1623732572364019],[119,301,79,0.16449320936436926],[119,302,64,0.16690956032360324],[119,302,65,0.16245923190410733],[119,302,66,0.15885889711565043],[119,302,67,0.15612608545093748],[119,302,68,0.1542553106700667],[119,302,69,0.15321511800000323],[119,302,70,0.15294523300215057],[119,302,71,0.1533571709447869],[119,302,72,0.15433050089971967],[119,302,73,0.1557125891849831],[119,302,74,0.15738268582139892],[119,302,75,0.15925741771114574],[119,302,76,0.16126492716837737],[119,302,77,0.1633416857071703],[119,302,78,0.16542959754934694],[119,302,79,0.16747311626686312],[119,303,64,0.17091730617345172],[119,303,65,0.1664785671876456],[119,303,66,0.1628691362658104],[119,303,67,0.16010807444027475],[119,303,68,0.15819182573526344],[119,303,69,0.15709124430590515],[119,303,70,0.15674871861845674],[119,303,71,0.1570787719363171],[119,303,72,0.1579642865622751],[119,303,73,0.15925601853446666],[119,303,74,0.16083524325109008],[119,303,75,0.1626197768923997],[119,303,76,0.164538825065758],[119,303,77,0.1665297252433761],[119,303,78,0.168534965082816],[119,303,79,0.17049920792675505],[119,304,64,0.17497294109487332],[119,304,65,0.17055089678772434],[119,304,66,0.16693673330358405],[119,304,67,0.16415100371803457],[119,304,68,0.16219206454544638],[119,304,69,0.1610330860837148],[119,304,70,0.16061915530155482],[119,304,71,0.16086787072569383],[119,304,72,0.1616655305561267],[119,304,73,0.1628664130618288],[119,304,74,0.16435389736340492],[119,304,75,0.16604703259068415],[119,304,76,0.16787613929123835],[119,304,77,0.16977948243285587],[119,304,78,0.17170020618877707],[119,304,79,0.1735832701239653],[119,305,64,0.17907869427298473],[119,305,65,0.17467853802952155],[119,305,66,0.17106434698224332],[119,305,67,0.1682581140647798],[119,305,68,0.16626007128711862],[119,305,69,0.1650456861692089],[119,305,70,0.1645627463571762],[119,305,71,0.16473195182670483],[119,305,72,0.16544307025036747],[119,305,73,0.1665539799894291],[119,305,74,0.16795020671971275],[119,305,75,0.16955205408221824],[119,305,76,0.1712909888111954],[119,305,77,0.1731062465664298],[119,305,78,0.17494168531594947],[119,305,79,0.17674263452114033],[119,306,64,0.18324240148975718],[119,306,65,0.17886939530277135],[119,306,66,0.17526021900234434],[119,306,67,0.1724382405588065],[119,306,68,0.17040551085232022],[119,306,69,0.16913974864011705],[119,306,70,0.16859140949361173],[119,306,71,0.16868427780116507],[119,306,72,0.16931159235689153],[119,306,73,0.17033485123869513],[119,306,74,0.17164172992248658],[119,306,75,0.17315378213744048],[119,306,76,0.17480362813109118],[119,306,77,0.17653149593480086],[119,306,78,0.178281995941861],[119,306,79,0.1800008858684727],[119,307,64,0.18747689889461736],[119,307,65,0.18313637346432257],[119,307,66,0.17953759931608154],[119,307,67,0.17670524224207623],[119,307,68,0.1746430957490777],[119,307,69,0.17333105653416941],[119,307,70,0.1727221798720042],[119,307,71,0.172743273434206],[119,307,72,0.1732909956238507],[119,307,73,0.1742304239622602],[119,307,74,0.1754513451606824],[119,307,75,0.17687653022709293],[119,307,76,0.17843973396040527],[119,307,77,0.18008217460707251],[119,307,78,0.1817492327081969],[119,307,79,0.18338713508434237],[119,308,64,0.19177346199789858],[119,308,65,0.18747110173796402],[119,308,66,0.1838886121713425],[119,308,67,0.1810518705299896],[119,308,68,0.17896632453579714],[119,308,69,0.17761396034496188],[119,308,70,0.1769503465221948],[119,308,71,0.1769052317135436],[119,308,72,0.17737861830596274],[119,308,73,0.17823909865558202],[119,308,74,0.17937852847339986],[119,308,75,0.18072086722643663],[119,308,76,0.18220098436329832],[119,308,77,0.1837610812620228],[119,308,78,0.18534731846604102],[119,308,79,0.18690642295964371],[119,309,64,0.19609960099464527],[119,309,65,0.19184164541319004],[119,309,66,0.18828188952492922],[119,309,67,0.18544732974746375],[119,309,68,0.18334497474965042],[119,309,69,0.18195880823465052],[119,309,70,0.18124682408358422],[119,309,71,0.18114163038983896],[119,309,72,0.18154650154355448],[119,309,73,0.1823334896826085],[119,309,74,0.1833965099303848],[119,309,75,0.18466071656299965],[119,309,76,0.1860620977369746],[119,309,77,0.18754384504339205],[119,309,78,0.18905291475965247],[119,309,79,0.19053656414584336],[119,310,64,0.20042256725798813],[119,310,65,0.19621570662266136],[119,310,66,0.19268559878378674],[119,310,67,0.18986026188319727],[119,310,68,0.18774816791632953],[119,310,69,0.18633520309473786],[119,310,70,0.18558169714568462],[119,310,71,0.18542303664311416],[119,310,72,0.18576569909041402],[119,310,73,0.18648514990828555],[119,310,74,0.18747738492942717],[119,310,75,0.18866879323440564],[119,310,76,0.18999650884074176],[119,310,77,0.19140473447180614],[119,310,78,0.19284124383670662],[119,310,79,0.19425385402369025],[119,311,64,0.20471056895417347],[119,311,65,0.20056183499405544],[119,311,66,0.19706865263151058],[119,311,67,0.19425995965793846],[119,311,68,0.19214558971820805],[119,311,69,0.19071323330823473],[119,311,70,0.18992546456175521],[119,311,71,0.18972036717781793],[119,311,72,0.19000755448285833],[119,311,73,0.19066586505613847],[119,311,74,0.19159342444591593],[119,311,75,0.19271792737536764],[119,311,76,0.1939777020851436],[119,311,77,0.1953179960763108],[119,311,78,0.19668742767294745],[119,311,79,0.19803440279606085],[119,312,64,0.20893304053679584],[119,312,65,0.20484969732432234],[119,312,66,0.2014009776378028],[119,312,67,0.19861663287764572],[119,312,68,0.19650775298523335],[119,312,69,0.19506373139201502],[119,312,70,0.19424929291216056],[119,312,71,0.1940051358705152],[119,312,72,0.19424394246862328],[119,312,73,0.1948478887765164],[119,312,74,0.1957173037610373],[119,312,75,0.1967812867468423],[119,312,76,0.19797942793983303],[119,312,77,0.19925806491444814],[119,312,78,0.2005666928142823],[119,312,79,0.2018543348601336],[119,313,64,0.21306138837186786],[119,313,65,0.20905070393528136],[119,313,66,0.2056540211727841],[119,313,67,0.2029017960905301],[119,313,68,0.20080626666082382],[119,313,69,0.19935842524704334],[119,313,70,0.19852505145189406],[119,313,71,0.1982493742941437],[119,313,72,0.19844707748352922],[119,313,73,0.19900364196527298],[119,313,74,0.1998216959238236],[119,313,75,0.20083186796452349],[119,313,76,0.20197509583632087],[119,313,77,0.2031988633065373],[119,313,78,0.20445357931489738],[119,313,79,0.20568891250271754],[119,314,64,0.21706878355981227],[119,314,65,0.21313782215760002],[119,314,66,0.20980058426467912],[119,314,67,0.20708811952227854],[119,314,68,0.20501370354204182],[119,314,69,0.2035698214881132],[119,314,70,0.20272520990741275],[119,314,71,0.2024255429901283],[119,314,72,0.20258943757738815],[119,314,73,0.20310564872199344],[119,314,74,0.20387921923886285],[119,314,75,0.20484245506007231],[119,314,76,0.2059377433715958],[119,314,77,0.20711378025621222],[119,314,78,0.2083219299377269],[119,314,79,0.2079476181050697],[119,315,64,0.2209297173392179],[119,315,65,0.21708525276966867],[119,315,66,0.2138146168851714],[119,315,67,0.21114934074974],[119,315,68,0.20910362564943274],[119,315,69,0.20767134162213186],[119,315,70,0.20682308242156444],[119,315,71,0.2065068800283342],[119,315,72,0.2066442143746086],[119,315,73,0.2071270844728947],[119,315,74,0.2078630802253626],[119,315,75,0.20878635380536184],[119,315,76,0.20984085837070743],[119,315,77,0.2109765774613171],[119,315,78,0.2105538704393163],[119,315,79,0.20385093505775853],[119,316,64,0.22462023170459738],[119,316,65,0.22086867241758806],[119,316,66,0.21767147090927402],[119,316,67,0.2150605269453193],[119,316,68,0.21305085453786657],[119,316,69,0.21163759927696726],[119,316,70,0.21079311065596776],[119,316,71,0.21046768907873314],[119,316,72,0.21058560538922377],[119,316,73,0.21104207201145497],[119,316,74,0.21174737300782054],[119,316,75,0.21263769415603168],[119,316,76,0.21365868414142536],[119,316,77,0.21330372016344787],[119,316,78,0.2062049731757356],[119,316,79,0.19949297052621975],[119,317,64,0.22811817469139156],[119,317,65,0.22446549684072042],[119,317,66,0.22134817007268076],[119,317,67,0.21879835037018694],[119,317,68,0.21683175117199807],[119,317,69,0.21544468337942735],[119,317,70,0.2146111492991367],[119,317,71,0.21428362642002027],[119,317,72,0.21438910188422539],[119,317,73,0.21482596976834686],[119,317,74,0.2155073677077287],[119,317,75,0.21637171856749923],[119,317,76,0.21604063916180002],[119,317,77,0.2086426545831051],[119,317,78,0.201564712640547],[119,317,79,0.19488313351677297],[119,318,64,0.23140345826305703],[119,318,65,0.22785514693194736],[119,318,66,0.2248236830153721],[119,318,67,0.22234136721952463],[119,318,68,0.2204244994284891],[119,318,69,0.21907044523778282],[119,318,70,0.2182547557534942],[119,318,71,0.2179319923909167],[119,318,72,0.21803178141909968],[119,318,73,0.21845566498937194],[119,318,74,0.21911980393788655],[119,318,75,0.2185883832526195],[119,318,76,0.21099829324140196],[119,318,77,0.20365203398516143],[119,318,78,0.1966350763125806],[119,318,79,0.1900224828498918],[119,319,64,0.23445831880023854],[119,319,65,0.23101931763263034],[119,319,66,0.2280791994114747],[119,319,67,0.22567029981980385],[119,319,68,0.22380939322498583],[119,319,69,0.22249478952882534],[119,319,70,0.2217034840012632],[119,319,71,0.22139202728414623],[119,319,72,0.2214926050855547],[119,319,73,0.22190987182138408],[119,319,74,0.22076663340136224],[119,319,75,0.21309426244021057],[119,319,76,0.20558407509226068],[119,319,77,0.1983277378665273],[119,319,78,0.19140913487383468],[119,319,79,0.18490146962295823],[120,-64,64,0.3440563373727338],[120,-64,65,0.3500054957814567],[120,-64,66,0.35606077645587536],[120,-64,67,0.36220432564112764],[120,-64,68,0.3684410915583138],[120,-64,69,0.3747897358750417],[120,-64,70,0.3812626799930173],[120,-64,71,0.3878656398104787],[120,-64,72,0.39459767825664976],[120,-64,73,0.401451338297105],[120,-64,74,0.40841285809291544],[120,-64,75,0.41546246986059765],[120,-64,76,0.422574783836757],[120,-64,77,0.429719258602168],[120,-64,78,0.4368607588657284],[120,-64,79,0.44396020165131855],[120,-63,64,0.3461868675187787],[120,-63,65,0.352241041108057],[120,-63,66,0.3584064575648008],[120,-63,67,0.3646659036657078],[120,-63,68,0.3710236934939085],[120,-63,69,0.3774968592532615],[120,-63,70,0.38409609680756557],[120,-63,71,0.3908253759837699],[120,-63,72,0.3976820450770317],[120,-63,73,0.4046570113281641],[120,-63,74,0.41173499887275145],[120,-63,75,0.4188948855290359],[120,-63,76,0.426110119653305],[120,-63,77,0.4333492181481691],[120,-63,78,0.44057634656164285],[120,-63,79,0.44775198206527383],[120,-62,64,0.3484896487722383],[120,-62,65,0.35463758296659936],[120,-62,66,0.3609002916977515],[120,-62,67,0.367261539151851],[120,-62,68,0.3737249569924074],[120,-62,69,0.38030568388558217],[120,-62,70,0.38701256338455386],[120,-62,71,0.39384781805642777],[120,-62,72,0.40080718678318705],[120,-62,73,0.40788013428779957],[120,-62,74,0.41505013424045206],[120,-62,75,0.4222950271718594],[120,-62,76,0.42958745428719475],[120,-62,77,0.4368953681366015],[120,-62,78,0.44418262095724376],[120,-62,79,0.4514096313593517],[120,-61,64,0.35094971429285565],[120,-61,65,0.35718000946179557],[120,-61,66,0.3635269776929779],[120,-61,67,0.3699756581944183],[120,-61,68,0.3765289703243963],[120,-61,69,0.38319994843403044],[120,-61,70,0.38999550120152127],[120,-61,71,0.3969161377334701],[120,-61,72,0.40395611931312897],[120,-61,73,0.41110368035743133],[120,-61,74,0.4183413198303583],[120,-61,75,0.4256461642367056],[120,-61,76,0.43299040319199034],[120,-61,77,0.4403417984322515],[120,-61,78,0.44766426699258055],[120,-61,79,0.454918539147226],[120,-60,64,0.35354873219972677],[120,-60,65,0.3598500825820961],[120,-60,66,0.36626837892489134],[120,-60,67,0.37279018094521027],[120,-60,68,0.3794176796348634],[120,-60,69,0.3861616478499063],[120,-60,70,0.39302701822444996],[120,-60,71,0.4000126497150923],[120,-60,72,0.4071114768797756],[120,-60,73,0.41431072602283525],[120,-60,74,0.4215921993795771],[120,-60,75,0.42893262839502694],[120,-60,76,0.4363040970282753],[120,-60,77,0.44367453588725375],[120,-60,78,0.45100828786951586],[120,-60,79,0.4582667458544678],[120,-59,64,0.3562658932264595],[120,-59,65,0.3626273500547738],[120,-59,66,0.36910446150596565],[120,-59,67,0.3756854876893708],[120,-59,68,0.38237188206040024],[120,-59,69,0.3891720493947095],[120,-59,70,0.39608894080218365],[120,-59,71,0.4031198499949405],[120,-59,72,0.41025654522731814],[120,-59,73,0.41748546633413597],[120,-59,74,0.4247879879945161],[120,-59,75,0.43214075023484083],[120,-59,76,0.4395160570662986],[120,-59,77,0.446882344031057],[120,-59,78,0.4542047153070884],[120,-59,79,0.4614455508968278],[120,-58,64,0.35907896864867767],[120,-58,65,0.3654902271814659],[120,-58,66,0.3720144015700832],[120,-58,67,0.3786415524955217],[120,-58,68,0.3853723840589057],[120,-58,69,0.39221287028990054],[120,-58,70,0.3991640021065264],[120,-58,71,0.40622160393454804],[120,-58,72,0.4133764361044059],[120,-58,73,0.4206143610063323],[120,-58,74,0.42791657410672096],[120,-58,75,0.4352599008202247],[120,-58,76,0.4426171601190193],[120,-58,77,0.44995759564426796],[120,-58,78,0.457247374965741],[120,-58,79,0.46445015751550267],[120,-57,64,0.3619655381505973],[120,-57,65,0.36841724829871325],[120,-57,66,0.3749778612782127],[120,-57,67,0.38163924409397304],[120,-57,68,0.38840132463505783],[120,-57,69,0.3952676167220666],[120,-57,70,0.40223718690148613],[120,-57,71,0.40930448396727626],[120,-57,72,0.4164594028897993],[120,-57,73,0.42368741139022004],[120,-57,74,0.4309697402533992],[120,-57,75,0.4382836383690099],[120,-57,76,0.4456026933827073],[120,-57,77,0.4528972187277478],[120,-57,78,0.46013470769315473],[120,-57,79,0.46728035506904964],[120,-56,64,0.3649008821777982],[120,-56,65,0.3713846772855722],[120,-56,66,0.3779723101364858],[120,-56,67,0.3846573548862578],[120,-56,68,0.39143891101025197],[120,-56,69,0.39831802790839],[120,-56,70,0.4052918905753867],[120,-56,71,0.4123536565009033],[120,-56,72,0.4194924755378721],[120,-56,73,0.4266935713241986],[120,-56,74,0.43393838534762963],[120,-56,75,0.44120478464578494],[120,-56,76,0.4484673340307486],[120,-56,77,0.4556976336212569],[120,-56,78,0.46286472235604015],[120,-56,79,0.46993554805095766],[120,-55,64,0.36783776968798854],[120,-55,65,0.3743443752286562],[120,-55,66,0.3809489136321504],[120,-55,67,0.38764648866964585],[120,-55,68,0.39443531841893614],[120,-55,69,0.4013140449768963],[120,-55,70,0.40827806728934407],[120,-55,71,0.4153193779939857],[120,-55,72,0.4224265334827489],[120,-55,73,0.429584684575141],[120,-55,74,0.4367756688983729],[120,-55,75,0.4439781659776631],[120,-55,76,0.4511679159427462],[120,-55,77,0.4583180026551491],[120,-55,78,0.46539920195593126],[120,-55,79,0.4723803956269319],[120,-54,64,0.37072377052391803],[120,-54,65,0.3772424090263822],[120,-54,66,0.3838524451513456],[120,-54,67,0.3905502794710943],[120,-54,68,0.39733320851782367],[120,-54,69,0.4041975959714773],[120,-54,70,0.41113721658807995],[120,-54,71,0.41814308243247617],[120,-54,72,0.4252033559986103],[120,-54,73,0.4323033234033356],[120,-54,74,0.43942542877009677],[120,-54,75,0.446549370831584],[120,-54,76,0.4536522626877622],[120,-54,77,0.4607088555585471],[120,-54,78,0.46769182726946784],[120,-54,79,0.4745721361055132],[120,-53,64,0.3735135991071425],[120,-53,65,0.3800323966608266],[120,-53,66,0.38663565051610205],[120,-53,67,0.3933207812630821],[120,-53,68,0.40008413586591557],[120,-53,69,0.4069199882973547],[120,-53,70,0.413820703976935],[120,-53,71,0.42077654253959235],[120,-53,72,0.4277755060371283],[120,-53,73,0.4348032472888259],[120,-53,74,0.44184303953644805],[120,-53,75,0.4488758084759386],[120,-53,76,0.4558802276493035],[120,-53,77,0.4628328780863831],[120,-53,78,0.46970847298817664],[120,-53,79,0.47648014814260997],[120,-52,64,0.3761693627053239],[120,-52,65,0.3826757312409134],[120,-52,66,0.389259444938486],[120,-52,67,0.39591863537233585],[120,-52,68,0.40264868361659956],[120,-52,69,0.40944201087032794],[120,-52,70,0.41628982823052874],[120,-52,71,0.42318190161560204],[120,-52,72,0.4301063267371499],[120,-52,73,0.4370493650735643],[120,-52,74,0.44399534205977026],[120,-52,75,0.450926608627875],[120,-52,76,0.45782356714732],[120,-52,77,0.4646647627214566],[120,-52,78,0.47142704070093144],[120,-52,79,0.47808577117440404],[120,-51,64,0.37866086402442045],[120,-51,65,0.38514185421599373],[120,-51,66,0.39169315370658436],[120,-51,67,0.3983132757662841],[120,-51,68,0.4049966308279109],[120,-51,69,0.4117340613649829],[120,-51,70,0.4185159071936471],[120,-51,71,0.425331717362077],[120,-51,72,0.43216994370229067],[120,-51,73,0.4390176971361555],[120,-51,74,0.44586056802988544],[120,-51,75,0.4526825118136929],[120,-51,76,0.4594658009983595],[120,-51,77,0.4661910446293687],[120,-51,78,0.47283727612258775],[120,-51,79,0.47938211032482975],[120,-50,64,0.3802247037323263],[120,-50,65,0.38740864042457407],[120,-50,66,0.39391486421862687],[120,-50,67,0.4004832448274147],[120,-50,68,0.40710722896262064],[120,-50,69,0.413776380951103],[120,-50,70,0.42048046900310815],[120,-50,71,0.4272091087338453],[120,-50,72,0.43395136762808706],[120,-50,73,0.4406954349959815],[120,-50,74,0.4474283588144194],[120,-50,75,0.454135850771076],[120,-50,76,0.4608021607429719],[120,-50,77,0.46741002184907054],[120,-50,78,0.4739406671178356],[120,-50,79,0.4803739187073205],[120,-49,64,0.3806277755095085],[120,-49,65,0.38785545503299657],[120,-49,66,0.3951260038134066],[120,-49,67,0.40241346246979803],[120,-49,68,0.4089670741447813],[120,-49,69,0.4155575490853793],[120,-49,70,0.42217437708441696],[120,-49,71,0.4288075060975529],[120,-49,72,0.43544685157051827],[120,-49,73,0.4420818749505032],[120,-49,74,0.4487012328925888],[120,-49,75,0.45529249859368803],[120,-49,76,0.46184195659905886],[120,-49,77,0.46833447233113756],[120,-49,78,0.47475343748804066],[120,-49,79,0.4810807923511554],[120,-48,64,0.38111594518960407],[120,-48,65,0.38836379463657944],[120,-48,66,0.39566311800459497],[120,-48,67,0.4029980800261522],[120,-48,68,0.41035710192562364],[120,-48,69,0.4170681866013079],[120,-48,70,0.42359312105061253],[120,-48,71,0.43012749523401345],[120,-48,72,0.4366622190248198],[120,-48,73,0.44318812823231024],[120,-48,74,0.4496955458841742],[120,-48,75,0.4561739201756249],[120,-48,76,0.46261154054641074],[120,-48,77,0.46899533324725323],[120,-48,78,0.4753107376496556],[120,-48,79,0.4815416644391476],[120,-47,64,0.38170347296641444],[120,-47,65,0.3889652768058996],[120,-47,66,0.39628575128228616],[120,-47,67,0.4036502728410559],[120,-47,68,0.4110484820466054],[120,-47,69,0.4183043891129443],[120,-47,70,0.42473750892447454],[120,-47,71,0.43117474446027554],[120,-47,72,0.43760805688519544],[120,-47,73,0.44402966565213675],[120,-47,74,0.4504315253813877],[120,-47,75,0.45680488414733067],[120,-47,76,0.4631399247430373],[120,-47,77,0.46942549038829656],[120,-47,78,0.47564889623302054],[120,-47,79,0.48179582788739406],[120,-46,64,0.3823955099435184],[120,-46,65,0.38966248693311345],[120,-46,66,0.3969936429294948],[120,-46,67,0.4043759109418282],[120,-46,68,0.41180022808686806],[120,-46,69,0.41925818247824653],[120,-46,70,0.4256138029612959],[120,-46,71,0.43195941863692433],[120,-46,72,0.4382984280931222],[120,-46,73,0.4446243644063379],[120,-46,74,0.4509307015706695],[120,-46,75,0.45721033963428065],[120,-46,76,0.46345517748685655],[120,-46,77,0.4696557748526947],[120,-46,78,0.47580110492413086],[120,-46,79,0.4818783989425162],[120,-45,64,0.38318906467962066],[120,-45,65,0.3904502941020848],[120,-45,66,0.39777933738179616],[120,-45,67,0.4051650116074699],[120,-45,68,0.41259964625670587],[120,-45,69,0.41996880092684763],[120,-45,70,0.4262330220800079],[120,-45,71,0.43249554935131146],[120,-45,72,0.43875031600192105],[120,-45,73,0.44499203225557815],[120,-45,74,0.45121551592785514],[120,-45,75,0.4574151131410047],[120,-45,76,0.4635842108641331],[120,-45,77,0.46971484290214455],[120,-45,78,0.4757973908308744],[120,-45,79,0.4818203812417822],[120,-44,64,0.384073950182523],[120,-44,65,0.3913167768040994],[120,-44,66,0.39862908086774473],[120,-44,67,0.4060018656358429],[120,-44,68,0.4134289628251101],[120,-44,69,0.42041786847427326],[120,-44,70,0.42661025527206514],[120,-44,71,0.4328004145908743],[120,-44,72,0.43898307679268966],[120,-44,73,0.44515393840839507],[120,-44,74,0.4513089354007426],[120,-44,75,0.45744360986401483],[120,-44,76,0.46355257195037697],[120,-44,77,0.4696290586914888],[120,-44,78,0.47566459125243477],[120,-44,79,0.4816487320151867],[120,-43,64,0.38503371413351706],[120,-43,65,0.3922441327791492],[120,-43,66,0.39952370304936297],[120,-43,67,0.4068658834407664],[120,-43,68,0.41426612746861746],[120,-43,69,0.4206327361663871],[120,-43,70,0.4267639839475552],[120,-43,71,0.4328939260449323],[120,-43,72,0.4390178982702131],[120,-43,73,0.44513234963713666],[120,-43,74,0.45123407081119715],[120,-43,75,0.4573195183732158],[120,-43,76,0.4633842367105139],[120,-43,77,0.4694223792237025],[120,-43,78,0.4754263304011515],[120,-43,79,0.481386430168759],[120,-42,64,0.3860465551345062],[120,-42,65,0.3932095756981997],[120,-42,66,0.40043948628071213],[120,-42,67,0.4077324296590349],[120,-42,68,0.4145593522854764],[120,-42,69,0.4206337181865299],[120,-42,70,0.426715411167927],[120,-42,71,0.43279802216641283],[120,-42,72,0.4388772633648939],[120,-42,73,0.4449500701568139],[120,-42,74,0.4510137982188809],[120,-42,75,0.4570655176194383],[120,-42,76,0.46310140577249376],[120,-42,77,0.4691162409186301],[120,-42,78,0.47510299767500974],[120,-42,79,0.4810525460492053],[120,-41,64,0.38708622777194535],[120,-41,65,0.3941862214056977],[120,-41,66,0.40134902510738124],[120,-41,67,0.40839726910800017],[120,-41,68,0.4144103973763303],[120,-41,69,0.42044377745301603],[120,-41,70,0.42648779571208456],[120,-41,71,0.4325360651249128],[120,-41,72,0.4385844166704516],[120,-41,73,0.44462998380609536],[120,-41,74,0.45067038200358234],[120,-41,75,0.4567029852480421],[120,-41,76,0.4627243012793336],[120,-41,77,0.4687294472244984],[120,-41,78,0.4747117271297939],[120,-41,79,0.48066231275206406],[120,-40,64,0.3881229392838318],[120,-40,65,0.3951439664359252],[120,-40,66,0.40216826005689504],[120,-40,67,0.4081069542108715],[120,-40,68,0.41408489946861504],[120,-40,69,0.4200878075378515],[120,-40,70,0.4261057889264686],[120,-40,71,0.4321322397883287],[120,-40,72,0.43816283235603476],[120,-40,73,0.44419459708279724],[120,-40,74,0.4502250984416573],[120,-40,75,0.4562517062236395],[120,-40,76,0.46227096405738166],[120,-40,77,0.4682780567427318],[120,-40,78,0.47426637785103515],[120,-40,79,0.4802271988970073],[120,-39,64,0.3891242405988845],[120,-39,65,0.3959121269620552],[120,-39,66,0.4017517074187219],[120,-39,67,0.4076577926444877],[120,-39,68,0.4136094634880745],[120,-39,69,0.41959191597731027],[120,-39,70,0.4255947723214855],[120,-39,71,0.43161095288341733],[120,-39,72,0.4376356818069188],[120,-39,73,0.44366558160525665],[120,-39,74,0.4496978585757699],[120,-39,75,0.4557295808004291],[120,-39,76,0.4617570503748738],[120,-39,77,0.46777527138069885],[120,-39,78,0.47377751497872306],[120,-39,79,0.4797549828562713],[120,-38,64,0.3896870142264527],[120,-38,65,0.3953924777151874],[120,-38,66,0.4011973147335102],[120,-38,67,0.40707796553326486],[120,-38,68,0.4130115967617597],[120,-38,69,0.4189827067856757],[120,-38,70,0.4249801938957834],[120,-38,71,0.4309962305055032],[120,-38,72,0.4370252993695081],[120,-38,73,0.44306331459523474],[120,-38,74,0.4491068292051699],[120,-38,75,0.455152330905542],[120,-38,76,0.46119562760364813],[120,-38,77,0.4672313240927191],[120,-38,78,0.4654937990103747],[120,-38,79,0.45836549062035004],[120,-37,64,0.38521715949111957],[120,-37,65,0.39145088710823917],[120,-37,66,0.4005345242851291],[120,-37,67,0.40639612746561127],[120,-37,68,0.41231894257945095],[120,-37,69,0.41828656001085135],[120,-37,70,0.42428690119656176],[120,-37,71,0.4303111121742991],[120,-37,72,0.4363526446040305],[120,-37,73,0.4400732411479489],[120,-37,74,0.43650652562568826],[120,-37,75,0.4475769731543554],[120,-37,76,0.44414305452636405],[120,-37,77,0.43711296099483604],[120,-37,78,0.4374540259185877],[120,-37,79,0.4348081515270484],[120,-36,64,0.36698803779822975],[120,-36,65,0.37209306971901657],[120,-36,66,0.3875664093374361],[120,-36,67,0.39657549565014494],[120,-36,68,0.4095226163848103],[120,-36,69,0.41449414032143755],[120,-36,70,0.4133468992289939],[120,-36,71,0.41955588656650633],[120,-36,72,0.4219803637201953],[120,-36,73,0.4224383338623999],[120,-36,74,0.41618745386079165],[120,-36,75,0.42238777764770974],[120,-36,76,0.42025411586632616],[120,-36,77,0.41687681326332526],[120,-36,78,0.4164626138762735],[120,-36,79,0.40965477910370773],[120,-35,64,0.352771231109357],[120,-35,65,0.3595048686197459],[120,-35,66,0.376586676705693],[120,-35,67,0.38564187754257095],[120,-35,68,0.3968000088912574],[120,-35,69,0.40307133763300457],[120,-35,70,0.40510350964152503],[120,-35,71,0.4085367917620817],[120,-35,72,0.408851002805328],[120,-35,73,0.4136025423750818],[120,-35,74,0.4087643421709931],[120,-35,75,0.41483610493731193],[120,-35,76,0.4114318167152622],[120,-35,77,0.4107156166835258],[120,-35,78,0.4050357909781931],[120,-35,79,0.3950890897883278],[120,-34,64,0.346082170818645],[120,-34,65,0.35515216116908066],[120,-34,66,0.37456052149946545],[120,-34,67,0.38353527529115417],[120,-34,68,0.39556721135949574],[120,-34,69,0.4067369618087736],[120,-34,70,0.41399980940684145],[120,-34,71,0.41121459317271924],[120,-34,72,0.4092896878679127],[120,-34,73,0.4147127028095942],[120,-34,74,0.4102757193826124],[120,-34,75,0.4144327648225366],[120,-34,76,0.40809378244360234],[120,-34,77,0.40743537449781114],[120,-34,78,0.3961937089813418],[120,-34,79,0.3917282520530805],[120,-33,64,0.35369823603905515],[120,-33,65,0.3611726157932942],[120,-33,66,0.380605219378122],[120,-33,67,0.38734115215461834],[120,-33,68,0.4002414332360016],[120,-33,69,0.4120823933260548],[120,-33,70,0.42068811693383873],[120,-33,71,0.4208715092229421],[120,-33,72,0.4204635118520635],[120,-33,73,0.425523860281517],[120,-33,74,0.4180515800299853],[120,-33,75,0.413320831584209],[120,-33,76,0.4047033958855077],[120,-33,77,0.40367238759353474],[120,-33,78,0.39132370695128293],[120,-33,79,0.3888453566295829],[120,-32,64,0.3646609759875373],[120,-32,65,0.37360539703788015],[120,-32,66,0.3936747290689955],[120,-32,67,0.40104373968412366],[120,-32,68,0.40831303723884843],[120,-32,69,0.41431729592106464],[120,-32,70,0.42038199818350913],[120,-32,71,0.4264892535379046],[120,-32,72,0.4326236376199458],[120,-32,73,0.43877167854522087],[120,-32,74,0.4338237510948165],[120,-32,75,0.4235225636161625],[120,-32,76,0.4121135150677756],[120,-32,77,0.405621709907805],[120,-32,78,0.3964991910283479],[120,-32,79,0.3886860002185965],[120,-31,64,0.37731749317588337],[120,-31,65,0.3854663475258237],[120,-31,66,0.39581516663119054],[120,-31,67,0.40162138230857625],[120,-31,68,0.40754152664377613],[120,-31,69,0.41354847574107145],[120,-31,70,0.4196188477697825],[120,-31,71,0.4257323198307486],[120,-31,72,0.43187116851630847],[120,-31,73,0.43801983188557636],[120,-31,74,0.4441644935288876],[120,-31,75,0.43968154957541855],[120,-31,76,0.4263907561206902],[120,-31,77,0.41330626597206016],[120,-31,78,0.409475326384158],[120,-31,79,0.39599167152837184],[120,-30,64,0.38404590279357664],[120,-30,65,0.38947526879583877],[120,-30,66,0.3951048685834526],[120,-30,67,0.4008952866106237],[120,-30,68,0.4068065906339798],[120,-30,69,0.41280901083097876],[120,-30,70,0.4188765136525075],[120,-30,71,0.4249862228857402],[120,-30,72,0.4311180455354785],[120,-30,73,0.4372543069909587],[120,-30,74,0.44337939600725135],[120,-30,75,0.4494794200263678],[120,-30,76,0.43524191394624634],[120,-30,77,0.4227633995580181],[120,-30,78,0.41974243445175885],[120,-30,79,0.4036799346111738],[120,-29,64,0.3834584766452601],[120,-29,65,0.38884830097335504],[120,-29,66,0.39444691401539556],[120,-29,67,0.40021426585376035],[120,-29,68,0.4061083349924568],[120,-29,69,0.41209652237571676],[120,-29,70,0.418150016447733],[120,-29,71,0.4242433204826276],[120,-29,72,0.43035395878208177],[120,-29,73,0.43646217994968134],[120,-29,74,0.4425506576433477],[120,-29,75,0.44860418922237033],[120,-29,76,0.4456086573797297],[120,-29,77,0.4335098313198567],[120,-29,78,0.42575778842420564],[120,-29,79,0.4073471561986418],[120,-28,64,0.38293513818417463],[120,-28,65,0.3882790463835742],[120,-28,66,0.39383862450125795],[120,-28,67,0.39957350052219587],[120,-28,68,0.40543963251958365],[120,-28,69,0.4114014590246029],[120,-28,70,0.41742732236483054],[120,-28,71,0.42348910054464767],[120,-28,72,0.42956198581858335],[120,-28,73,0.43495269430105105],[120,-28,74,0.44037377061422706],[120,-28,75,0.44584748152920906],[120,-28,76,0.45136173040716576],[120,-28,77,0.4469085033271701],[120,-28,78,0.43230778479462617],[120,-28,79,0.41346972562955386],[120,-27,64,0.3824688875351153],[120,-27,65,0.3877586056778852],[120,-27,66,0.39326911261706277],[120,-27,67,0.3989599767490446],[120,-27,68,0.40478521687748437],[120,-27,69,0.410706240529232],[120,-27,70,0.4162142364041517],[120,-27,71,0.4212671754397639],[120,-27,72,0.426400672370593],[120,-27,73,0.4316160398078963],[120,-27,74,0.43690998851820195],[120,-27,75,0.4422749955077612],[120,-27,76,0.4476996950711835],[120,-27,77,0.45316929243734055],[120,-27,78,0.4403444771809551],[120,-27,79,0.42264150082484914],[120,-26,64,0.38204359294243895],[120,-26,65,0.38726886611767186],[120,-26,66,0.39271827549995314],[120,-26,67,0.3983515147378115],[120,-26,68,0.4035787938439584],[120,-26,69,0.4083140526678421],[120,-26,70,0.4131213592145291],[120,-26,71,0.4180150097598539],[120,-26,72,0.42300362541413294],[120,-26,73,0.42809043551935666],[120,-26,74,0.43327359518486097],[120,-26,75,0.43854653673033783],[120,-26,76,0.4438983547351026],[120,-26,77,0.44931422432539325],[120,-26,78,0.4464674287444683],[120,-26,79,0.4312721432050431],[120,-25,64,0.38163290178967313],[120,-25,65,0.3867814641583241],[120,-25,66,0.3916291422136918],[120,-25,67,0.39610864832121145],[120,-25,68,0.40061775858154425],[120,-25,69,0.40518623117444963],[120,-25,70,0.4098372362906182],[120,-25,71,0.41458760452333976],[120,-25,72,0.4194480436968059],[120,-25,73,0.4244233992503288],[120,-25,74,0.4295129580429681],[120,-25,75,0.4347107953546301],[120,-25,76,0.44000616477314863],[120,-25,77,0.4453839305732692],[120,-25,78,0.44996472725601017],[120,-25,79,0.4334573695771619],[120,-24,64,0.38015083099336444],[120,-24,65,0.384500584436082],[120,-24,66,0.3888170193107472],[120,-24,67,0.39312988034912894],[120,-24,68,0.39747805186783963],[120,-24,69,0.40189438860573107],[120,-24,70,0.40640475869822185],[120,-24,71,0.4110282353842652],[120,-24,72,0.41577729672180147],[120,-24,73,0.42065807678576106],[120,-24,74,0.4256706682095427],[120,-24,75,0.4308094758277736],[120,-24,76,0.43606362107708013],[120,-24,77,0.44141739671377694],[120,-24,78,0.4468507713142834],[120,-24,79,0.43011021901704444],[120,-23,64,0.3774995815961708],[120,-23,65,0.38168275564343945],[120,-23,66,0.38583783697565877],[120,-23,67,0.3899946430586046],[120,-23,68,0.39419386047544247],[120,-23,69,0.39847118866276715],[120,-23,70,0.40285491818242064],[120,-23,71,0.40736607605363323],[120,-23,72,0.41201861798622574],[120,-23,73,0.41681967908993073],[120,-23,74,0.4217698828981269],[120,-23,75,0.4268637084278788],[120,-23,76,0.4320899148840608],[120,-23,77,0.4374320235049129],[120,-23,78,0.4428688559412287],[120,-23,79,0.43092945246804365],[120,-22,64,0.37470168540479165],[120,-22,65,0.37872389855761973],[120,-22,66,0.38272495895502545],[120,-22,67,0.38673460302078716],[120,-22,68,0.3907950337129027],[120,-22,69,0.3949444967169868],[120,-22,70,0.39921341486969286],[120,-22,71,0.40362449152384167],[120,-22,72,0.40819289933555025],[120,-22,73,0.4129265340019628],[120,-22,74,0.41782633275406406],[120,-22,75,0.42288665728015384],[120,-22,76,0.4280957406292654],[120,-22,77,0.43343619752168505],[120,-22,78,0.4388855973774899],[120,-22,79,0.42713559402995255],[120,-21,64,0.37179157930932577],[120,-21,65,0.37565666306536166],[120,-21,66,0.379509170295589],[120,-21,67,0.38337855955220607],[120,-21,68,0.38730820807189037],[120,-21,69,0.39133857281217066],[120,-21,70,0.3955019124894139],[120,-21,71,0.3998223478090261],[120,-21,72,0.4043160454375695],[120,-21,73,0.4089914732865081],[120,-21,74,0.4138497268742124],[120,-21,75,0.41888492639157887],[120,-21,76,0.42408468395832954],[120,-21,77,0.42943064042340234],[120,-21,78,0.4348990709357512],[120,-21,79,0.41833354880119644],[120,-20,64,0.36880249672618637],[120,-20,65,0.37251229191007673],[120,-20,66,0.37621955242776167],[120,-20,67,0.37995323308628925],[120,-20,68,0.3837575038881976],[120,-20,69,0.38767467425003743],[120,-20,70,0.3917385473660298],[120,-20,71,0.39597443072398664],[120,-20,72,0.4003993085638476],[120,-20,73,0.40502209230548897],[120,-20,74,0.4098439486771331],[120,-20,75,0.41485870512147727],[120,-20,76,0.4200533319057939],[120,-20,77,0.4254085002165008],[120,-20,78,0.43089921538016285],[120,-20,79,0.41706320078815545],[120,-19,64,0.3657674934362232],[120,-19,65,0.36932156782392656],[120,-19,66,0.37288434706427254],[120,-19,67,0.376484039912288],[120,-19,68,0.38016520566868783],[120,-19,69,0.3839716387030178],[120,-19,70,0.3879384142220209],[120,-19,71,0.3920918370809687],[120,-19,72,0.3964495906576637],[120,-19,73,0.40102097107759727],[120,-19,74,0.40580720649503066],[120,-19,75,0.41080186096626736],[120,-19,76,0.41599132228653724],[120,-19,77,0.4213553730026462],[120,-19,78,0.42686784366212654],[120,-19,79,0.42021319272539753],[120,-18,64,0.3627166375150649],[120,-18,65,0.3661117555432017],[120,-18,66,0.3695276436523794],[120,-18,67,0.37299151712074496],[120,-18,68,0.37654791723861364],[120,-18,69,0.38024176463887105],[120,-18,70,0.3841091696466523],[120,-18,71,0.38817730181774945],[120,-18,72,0.39246449761739877],[120,-18,73,0.39698046201499343],[120,-18,74,0.4017265636876089],[120,-18,75,0.4066962233401636],[120,-18,76,0.4118753944688917],[120,-18,77,0.4172431357196633],[120,-18,78,0.42277227382597604],[120,-18,79,0.4164518180452915],[120,-17,64,0.3596596947874338],[120,-17,65,0.36289010772992886],[120,-17,66,0.3661539007256126],[120,-17,67,0.36947705714327134],[120,-17,68,0.3729036982021824],[120,-17,69,0.3764795200202724],[120,-17,70,0.38024145671529513],[120,-17,71,0.384217449439273],[120,-17,72,0.38842649149097874],[120,-17,73,0.3928787774168837],[120,-17,74,0.39757595579979865],[120,-17,75,0.4025114852298368],[120,-17,76,0.40767109275184216],[120,-17,77,0.4130333338893077],[120,-17,78,0.4185702531597143],[120,-17,79,0.41531711459803095],[120,-16,64,0.3565565928158559],[120,-16,65,0.35961798608404005],[120,-16,66,0.3627262935026465],[120,-16,67,0.36590605677824917],[120,-16,68,0.36920055717126077],[120,-16,69,0.37265586027284653],[120,-16,70,0.37630944202122507],[120,-16,71,0.38018984077600715],[120,-16,72,0.38431662252737997],[120,-16,73,0.3887004613273006],[120,-16,74,0.3933433346616042],[120,-16,75,0.3982388332553382],[120,-16,76,0.40337258458130765],[120,-16,77,0.40872278912619675],[120,-16,78,0.41426086826263236],[120,-16,79,0.4158470446987885],[120,-15,64,0.3533658695219431],[120,-15,65,0.3562560827643052],[120,-15,66,0.35920804295756337],[120,-15,67,0.36224466758213514],[120,-15,68,0.3654079606091214],[120,-15,69,0.3687438929678405],[120,-15,70,0.37229012229952685],[120,-15,71,0.3760755178050799],[120,-15,72,0.3801200335559836],[120,-15,73,0.3844347089274754],[120,-15,74,0.38902179590026864],[120,-15,75,0.39387501272689507],[120,-15,76,0.3989799232129247],[120,-15,77,0.40431444062457106],[120,-15,78,0.40984945500563796],[120,-15,79,0.4090500541027051],[120,-14,64,0.3500574732074638],[120,-14,65,0.3527761433040161],[120,-14,66,0.355572877212343],[120,-14,67,0.35846880740189685],[120,-14,68,0.3615042157522695],[120,-14,69,0.3647244741618045],[120,-14,70,0.36816700511305545],[120,-14,71,0.3718606744032571],[120,-14,72,0.3758255651789517],[120,-14,73,0.3800728911984017],[120,-14,74,0.3846050490990077],[120,-14,75,0.3894158091722712],[120,-14,76,0.3944906438787315],[120,-14,77,0.3998071930726318],[120,-14,78,0.4053358646542076],[120,-14,79,0.39923715179305125],[120,-13,64,0.27674624797017794],[120,-13,65,0.3258090372735865],[120,-13,66,0.35180307592262655],[120,-13,67,0.3545623004969578],[120,-13,68,0.3574747380145359],[120,-13,69,0.36058463468694274],[120,-13,70,0.3639287247659148],[120,-13,71,0.3675354909053077],[120,-13,72,0.37142483552830063],[120,-13,73,0.37560790330733146],[120,-13,74,0.3800870545654838],[120,-13,75,0.38485598910886937],[120,-13,76,0.38990001970514393],[120,-13,77,0.3951964941367079],[120,-13,78,0.4007153644819978],[120,-13,79,0.39352751224183025],[120,-12,64,0.14633597067979007],[120,-12,65,0.1784931336473039],[120,-12,66,0.21434919080037199],[120,-12,67,0.2538788213740747],[120,-12,68,0.29704561642649857],[120,-12,69,0.3437939108792134],[120,-12,70,0.359567787063404],[120,-12,71,0.36309308132724194],[120,-12,72,0.36691141385100084],[120,-12,73,0.3710335854735168],[120,-12,74,0.37546170894305236],[120,-12,75,0.38018926402826675],[120,-12,76,0.3852013135710906],[120,-12,77,0.39047487936971703],[120,-12,78,0.3959794764822666],[120,-12,79,0.3941161253400845],[120,-11,64,0.06523418949555557],[120,-11,65,0.08397461221054354],[120,-11,66,0.1057517011737094],[120,-11,67,0.13060911692355648],[120,-11,68,0.1585763814902472],[120,-11,69,0.1896622099954241],[120,-11,70,0.2238431805623521],[120,-11,71,0.26106575948260363],[120,-11,72,0.3012487676991944],[120,-11,73,0.344285986988266],[120,-11,74,0.37072258020199345],[120,-11,75,0.37540827825123035],[120,-11,76,0.38038602670456545],[120,-11,77,0.3856324855016992],[120,-11,78,0.39111675531314427],[120,-11,79,0.3960778611642706],[120,-10,64,0.021689257763221764],[120,-10,65,0.030502729846623673],[120,-10,66,0.04160935116929051],[120,-10,67,0.055121683433123424],[120,-10,68,0.07113493214508215],[120,-10,69,0.08972192568100314],[120,-10,70,0.11092153953923642],[120,-10,71,0.13474048031797375],[120,-10,72,0.16115553544117153],[120,-10,73,0.190115978648381],[120,-10,74,0.22154611678409508],[120,-10,75,0.2553479639585566],[120,-10,76,0.2914040297921249],[120,-10,77,0.32958020919308467],[120,-10,78,0.3697287619748597],[120,-10,79,0.39177386883406184],[120,-9,64,0.015495600866348802],[120,-9,65,0.017922529367926116],[120,-9,66,0.020316845405648622],[120,-9,67,0.022689190578548228],[120,-9,68,0.025066451141596696],[120,-9,69,0.03222364827140343],[120,-9,70,0.0435227862383793],[120,-9,71,0.05693681094604843],[120,-9,72,0.07250069477771],[120,-9,73,0.09021958970434925],[120,-9,74,0.11007119702062394],[120,-9,75,0.1320082793211621],[120,-9,76,0.15596130148869752],[120,-9,77,0.18184118814146083],[120,-9,78,0.20954218577330205],[120,-9,79,0.23894481870457113],[120,-8,64,0.011467571066287777],[120,-8,65,0.0138460577071619],[120,-8,66,0.016216294800434145],[120,-8,67,0.018586381136741655],[120,-8,68,0.02097913189698265],[120,-8,69,0.023428027625012598],[120,-8,70,0.02596292663141708],[120,-8,71,0.028608728613347227],[120,-8,72,0.03138453746578495],[120,-8,73,0.03430301987504515],[120,-8,74,0.043867557806038474],[120,-8,75,0.056612207472109405],[120,-8,76,0.07105514315101544],[120,-8,77,0.08715345365326467],[120,-8,78,0.10484469625961229],[120,-8,79,0.12404975021986629],[120,-7,64,0.007446116682852574],[120,-7,65,0.009779881893591302],[120,-7,66,0.012129575568636496],[120,-7,67,0.014500695288092346],[120,-7,68,0.016911781203801997],[120,-7,69,0.019392380324805454],[120,-7,70,0.021969054136650568],[120,-7,71,0.024663973001674406],[120,-7,72,0.027494014212791382],[120,-7,73,0.030470059719657633],[120,-7,74,0.03359649347511248],[120,-7,75,0.03687089794090947],[120,-7,76,0.04028394888921992],[120,-7,77,0.04381950724522491],[120,-7,78,0.047454906338004095],[120,-7,79,0.05523980276713221],[120,-6,64,0.0034424422885690176],[120,-6,65,0.005735253833986433],[120,-6,66,0.008067577869978769],[120,-6,67,0.0104422671707271],[120,-6,68,0.012873451029675253],[120,-6,69,0.01538651028105251],[120,-6,70,0.018004473252639906],[120,-6,71,0.020746557438292266],[120,-6,72,0.023627215316762824],[120,-6,73,0.02665538171391111],[120,-6,74,0.029833922670359857],[120,-6,75,0.033159285360879094],[120,-6,76,0.03662134820256555],[120,-6,77,0.040203469891289687],[120,-6,78,0.04388273572160509],[120,-6,79,0.04763039918024608],[120,-5,64,-5.335752280820716E-4],[120,-5,65,0.0017219565180069723],[120,-5,66,0.004039596435125528],[120,-5,67,0.00641952477070617],[120,-5,68,0.008871396949357839],[120,-5,69,0.01141628312527572],[120,-5,70,0.014073518613971226],[120,-5,71,0.016859209915409425],[120,-5,72,0.019785241827058483],[120,-5,73,0.022858485887339824],[120,-5,74,0.02608021012406874],[120,-5,75,0.029445689663968003],[120,-5,76,0.03294401734758478],[120,-5,77,0.03655811309396362],[120,-5,78,0.040264930372918215],[120,-5,79,0.04403585777559482],[120,-4,64,-0.004473791856118323],[120,-4,65,-0.002252091054200194],[120,-4,66,5.295961296442877E-5],[120,-4,67,0.002438856955751111],[120,-4,68,0.004910795006106675],[120,-4,69,0.007485481950053229],[120,-4,70,0.010178481730784348],[120,-4,71,0.013002701678824053],[120,-4,72,0.015967375155108026],[120,-4,73,0.01907724321581704],[120,-4,74,0.0223319352847244],[120,-4,75,0.02572554840191764],[120,-4,76,0.02924642420771239],[120,-4,77,0.0328771224223948],[120,-4,78,0.03659458919770954],[120,-4,79,0.04037051835065153],[120,-3,64,-0.008372002182314235],[120,-3,65,-0.006181032824360461],[120,-3,66,-0.003887150642086358],[120,-3,67,-0.0014955357274564107],[120,-3,68,9.946328622208525E-4],[120,-3,69,0.0035957453568318826],[120,-3,70,0.006319599856304991],[120,-3,71,0.009175888583707045],[120,-3,72,0.012171170672491329],[120,-3,73,0.01530803961423819],[120,-3,74,0.018584485362641765],[120,-3,75,0.021993450678536204],[120,-3,76,0.025522580896710848],[120,-3,77,0.029154165903032877],[120,-3,78,0.03286527273151822],[120,-3,79,0.03662806683126738],[120,-2,64,-0.012223941090385586],[120,-2,65,-0.010061074065366873],[120,-2,66,-0.007777683545749311],[120,-2,67,-0.005381602383281739],[120,-2,68,-0.0028762208855834612],[120,-2,69,-2.533287150052162E-4],[120,-2,70,0.0024951953886335],[120,-2,71,0.005375884820739593],[120,-2,72,0.008392662665006158],[120,-2,73,0.01154600759239108],[120,-2,74,0.014832308110620734],[120,-2,75,0.01824340476805926],[120,-2,76,0.021766319521894017],[120,-2,77,0.025383171098390833],[120,-2,78,0.02907127480384534],[120,-2,79,0.03280342489451664],[120,-1,64,-0.016027076752149476],[120,-1,65,-0.013890274620276009],[120,-1,66,-0.011617504580751897],[120,-1,67,-0.009219210974748654],[120,-1,68,-0.006702765218476871],[120,-1,69,-0.004063909667124995],[120,-1,70,-0.0012980308356169948],[120,-1,71,0.001598371961602341],[120,-1,72,0.0046266831306590265],[120,-1,73,0.007785347553353503],[120,-1,74,0.01106922758956492],[120,-1,75,0.01446913995268438],[120,-1,76,0.017971571704021867],[120,-1,77,0.021558574243785357],[120,-1,78,0.025207833820562096],[120,-1,79,0.028892916743790607],[120,0,64,-0.019780190166680336],[120,0,65,-0.017668132339786286],[120,0,66,-0.015406976406064282],[120,0,67,-0.01300972109301671],[120,0,68,-0.01048742896667065],[120,0,69,-0.007839487665179317],[120,0,70,-0.0050645489556412964],[120,0,71,-0.002161953698057651],[120,0,72,8.672969226687023E-4],[120,0,73,0.0040197407085562735],[120,0,74,0.007288824322951478],[120,0,75,0.010664443377572979],[120,0,76,0.014132652020147176],[120,0,77,0.017675540959566194],[120,0,78,0.021271282526621665],[120,0,79,0.024894341047008432],[120,1,64,-0.02348273766404901],[120,1,65,-0.021394953971958452],[120,1,66,-0.01914733347576549],[120,1,67,-0.01675535865342387],[120,1,68,-0.014233445513259474],[120,1,69,-0.011584252635423422],[120,1,70,-0.008809391042480547],[120,1,71,-0.005910794183460668],[120,1,72,-0.002891645145465039],[120,1,73,2.4285568367925702E-4],[120,1,74,0.0034848825258124794],[120,1,75,0.006823535372271687],[120,1,76,0.010244549728176667],[120,1,77,0.013730163945469345],[120,1,78,0.017259142829761747],[120,1,79,0.020806955903468413],[120,2,64,-0.0166161613165673],[120,2,65,-0.02507101251835873],[120,2,66,-0.02283985033177712],[120,2,67,-0.02045839292203653],[120,2,68,-0.01794404033343514],[120,2,69,-0.015302298832629494],[120,2,70,-0.012537382814800494],[120,2,71,-0.009653521361771307],[120,2,72,-0.006655831863575415],[120,2,73,-0.0035510460506014718],[120,2,74,-3.4808840766566325E-4],[120,2,75,0.0029414927343825188],[120,2,76,0.006303240815682979],[120,2,77,0.009719652451054737],[120,2,78,0.013170183400995449],[120,2,79,0.01663139760891947],[120,3,64,-0.0028447728736679836],[120,3,65,-0.005725317505031271],[120,3,66,-0.009569706495287003],[120,3,67,-0.014568463244360884],[120,3,68,-0.02087593154269142],[120,3,69,-0.018996621980225368],[120,3,70,-0.016252187915551296],[120,3,71,-0.013394286042793888],[120,3,72,-0.010429684729983344],[120,3,73,-0.007366406972818165],[120,3,74,-0.004214273699359658],[120,3,75,-9.85312240575438E-4],[120,3,76,0.0023059694737903765],[120,3,77,0.005642442150509491],[120,3,78,0.009004346681666995],[120,3,79,0.012369416629778474],[120,4,64,-7.805622775200501E-4],[120,4,65,-0.0014144395133278522],[120,4,66,-0.002101838863450635],[120,4,67,-0.003105255454126645],[120,4,68,-0.004649117170536737],[120,4,69,-0.006910165602023623],[120,4,70,-0.010030821845169013],[120,4,71,-0.014122967723635912],[120,4,72,-0.01421543447352258],[120,4,73,-0.011205579100759127],[120,4,74,-0.008115909195527243],[120,4,75,-0.004958738009799914],[120,4,76,-0.001748465987956401],[120,4,77,0.001498278442821921],[120,4,78,0.00476261805703535],[120,4,79,0.008023524740970428],[120,5,64,0.0012614000221840436],[120,5,65,-5.429205435364709E-4],[120,5,66,-0.0014109708307406522],[120,5,67,-0.0016771601403430178],[120,5,68,-0.0016357926271355306],[120,5,69,-0.0015311952139964178],[120,5,70,-0.0015712134283034879],[120,5,71,-0.0019308094179291278],[120,5,72,-0.0027552525392898776],[120,5,73,-0.004163192911442309],[120,5,74,-0.0062496043761734055],[120,5,75,-0.00897835955508359],[120,5,76,-0.0058594179067757955],[120,5,77,-0.002711723052432364],[120,5,78,4.468396465971622E-4],[120,5,79,0.0035965542700963776],[120,6,64,0.014971918622269332],[120,6,65,0.008578347950991955],[120,6,66,0.004190580368066699],[120,6,67,0.0014023307657837782],[120,6,68,-1.5045083818320307E-4],[120,6,69,-7.795630729784775E-4],[120,6,70,-7.582580162312511E-4],[120,6,71,-3.2466944258289864E-4],[120,6,72,3.151577728701869E-4],[120,6,73,9.843370154216855E-4],[120,6,74,0.0015323214771745589],[120,6,75,0.0018322103626703763],[120,6,76,0.0017781911988693777],[120,6,77,0.0012831285921881576],[120,6,78,2.7630860612944553E-4],[120,6,79,-9.088899679276334E-4],[120,7,64,0.0520512436982491],[120,7,65,0.03764819347195395],[120,7,66,0.026400480924048148],[120,7,67,0.01782999222864002],[120,7,68,0.01150298266441041],[120,7,69,0.007040193667895429],[120,7,70,0.004102916128654187],[120,7,71,0.002389713459197118],[120,7,72,0.001633536389530887],[120,7,73,0.0015989197602266354],[120,7,74,0.002079274609083464],[120,7,75,0.0028942879586726787],[120,7,76,0.003887441747308663],[120,7,77,0.004923661309463239],[120,7,78,0.005887102711074646],[120,7,79,0.006679087088516902],[120,8,64,0.12421082177214249],[120,8,65,0.09837901083401797],[120,8,66,0.076932104272097],[120,8,67,0.05932038251360951],[120,8,68,0.04504052308837406],[120,8,69,0.033645786634592896],[120,8,70,0.024731909899932968],[120,8,71,0.01793396664363124],[120,8,72,0.012923612484590402],[120,8,73,0.009406396287995274],[120,8,74,0.007119151268574028],[120,8,75,0.005827478157093996],[120,8,76,0.005323331872884099],[120,8,77,0.005422722172272731],[120,8,78,0.005963537707445494],[120,8,79,0.006803501842455498],[120,9,64,0.2301912592328379],[120,9,65,0.20247971651705546],[120,9,66,0.16749602537918198],[120,9,67,0.13758594040273034],[120,9,68,0.1121767712009298],[120,9,69,0.09075426896049536],[120,9,70,0.07284848374831376],[120,9,71,0.058030757089305496],[120,9,72,0.04591108798633056],[120,9,73,0.03613555092675623],[120,9,74,0.028383778940837875],[120,9,75,0.022366523999105166],[120,9,76,0.017823306191223857],[120,9,77,0.014520162218204794],[120,9,78,0.012247502757165536],[120,9,79,0.010818087237137803],[120,10,64,0.22324834521669018],[120,10,65,0.22260621193933194],[120,10,66,0.22228857427108845],[120,10,67,0.22226367189953594],[120,10,68,0.22250155569851682],[120,10,69,0.19007653712509567],[120,10,70,0.16016619411408536],[120,10,71,0.1343964812386873],[120,10,72,0.1123153122220692],[120,10,73,0.0935087228895656],[120,10,74,0.0775984432238915],[120,10,75,0.06423953255468004],[120,10,76,0.05311808932105228],[120,10,77,0.04394904599726566],[120,10,78,0.0364740588600185],[120,10,79,0.030459501321416692],[120,11,64,0.21626950947279353],[120,11,65,0.21547103551741775],[120,11,66,0.21498724566952546],[120,11,67,0.21478625468307844],[120,11,68,0.214838048708439],[120,11,69,0.2151263520275339],[120,11,70,0.21563681618050548],[120,11,71,0.21635615070765446],[120,11,72,0.21727164099210847],[120,11,73,0.19324362562096317],[120,11,74,0.1664834817740199],[120,11,75,0.14316932034968263],[120,11,76,0.12293276243408549],[120,11,77,0.10543644219189832],[120,11,78,0.09037193027024784],[120,11,79,0.07745774702745052],[120,12,64,0.20927437973088903],[120,12,65,0.20831890943681095],[120,12,66,0.20766720499650032],[120,12,67,0.20728794860572367],[120,12,68,0.20715150129777749],[120,12,69,0.20724153509602902],[120,12,70,0.20754372843187513],[120,12,71,0.20804494356623462],[120,12,72,0.20873277170826468],[120,12,73,0.20959513099240762],[120,12,74,0.21061991760044746],[120,12,75,0.21179471018433618],[120,12,76,0.21310652761550022],[120,12,77,0.21070426512423648],[120,12,78,0.1856640184459325],[120,12,79,0.1635363499217117],[120,13,64,0.20228553758700107],[120,13,65,0.2011737250659807],[120,13,66,0.2003537560187262],[120,13,67,0.199795568378899],[120,13,68,0.19947031986773076],[120,13,69,0.1993617314183927],[120,13,70,0.19945553794646528],[120,13,71,0.19973872998632627],[120,13,72,0.20019913694855945],[120,13,73,0.20082505566571204],[120,13,74,0.20160492453014553],[120,13,75,0.20252704341357372],[120,13,76,0.20357933944414777],[120,13,77,0.20474917860467423],[120,13,78,0.20602322300697387],[120,13,79,0.20738733359183928],[120,14,64,0.19533203933452598],[120,14,65,0.19406578220695023],[120,14,66,0.1930784927068904],[120,14,67,0.19234200255527156],[120,14,68,0.19182864046366704],[120,14,69,0.19152223172458055],[120,14,70,0.19140854692959974],[120,14,71,0.19147462886560332],[120,14,72,0.19170842804731064],[120,14,73,0.19209847482919404],[120,14,74,0.19263358840574993],[120,14,75,0.1933026229149655],[120,14,76,0.19409425076554832],[120,14,77,0.1949967832150646],[120,14,78,0.1959980281355934],[120,14,79,0.19708518481503354],[120,15,64,0.1884540396271117],[120,15,65,0.1870362162084779],[120,15,66,0.18588342064528546],[120,15,67,0.1849699251121547],[120,15,68,0.18426953684581054],[120,15,69,0.18376619787843057],[120,15,70,0.18344565645858743],[120,15,71,0.18329490177133362],[120,15,72,0.18330186748644006],[120,15,73,0.1834551616513868],[120,15,74,0.18374382323255917],[120,15,75,0.18415710553806938],[120,15,76,0.1846842866849467],[120,15,77,0.1853145072028741],[120,15,78,0.18603663479807128],[120,15,79,0.18683915623330413],[120,16,64,0.1816943294015625],[120,16,65,0.18012800079801325],[120,16,66,0.17881128379716874],[120,16,67,0.17772133634078133],[120,16,68,0.17683370971106935],[120,16,69,0.17613248696732298],[120,16,70,0.17560337022798253],[120,16,71,0.17523324161522286],[120,16,72,0.17500994719765514],[120,16,73,0.17492209565584027],[120,16,74,0.17495887196172366],[120,16,75,0.1751098663210039],[120,16,76,0.17536491858408387],[120,16,77,0.1757139782871613],[120,16,78,0.17614698044190225],[120,16,79,0.17665373714869523],[120,17,64,0.17507368184463018],[120,17,65,0.1733618898324826],[120,17,66,0.17188250996153687],[120,17,67,0.17061593213423046],[120,17,68,0.16953968246992496],[120,17,69,0.1686380344785839],[120,17,70,0.16789666670992676],[120,17,71,0.16730236315467598],[120,17,72,0.16684288589616422],[120,17,73,0.16650684976093014],[120,17,74,0.16628359924390773],[120,17,75,0.16616308797274243],[120,17,76,0.16613576096269142],[120,17,77,0.1661924398988444],[120,17,78,0.16632421166748176],[120,17,79,0.16652232034172476],[120,18,64,0.1685899654574442],[120,18,65,0.16673570848631084],[120,18,66,0.16509475730634707],[120,18,67,0.1636509825750886],[120,18,68,0.16238407960480244],[120,18,69,0.16127858431563785],[120,18,70,0.16032021317406323],[120,18,71,0.15949571153344247],[120,18,72,0.15879281978953455],[120,18,73,0.1582002280030128],[120,18,74,0.15770751924855733],[120,18,75,0.15730510197233297],[120,18,76,0.15698413165913835],[120,18,77,0.15673642212727107],[120,18,78,0.15655434678445446],[120,18,79,0.15643073019015796],[120,19,64,0.16119156783634203],[120,19,65,0.16002738788009221],[120,19,66,0.1584263847890603],[120,19,67,0.15680473342711582],[120,19,68,0.15534493235744856],[120,19,69,0.15403187136615926],[120,19,70,0.15285139813953133],[120,19,71,0.15179031867252107],[120,19,72,0.15083645868377446],[120,19,73,0.14997869945515085],[120,19,74,0.1492069883404113],[120,19,75,0.14851232424490085],[120,19,76,0.14788671843153262],[120,19,77,0.14732313105803763],[120,19,78,0.14681538389721938],[120,19,79,0.1463580497337689],[120,20,64,0.1496100422455576],[120,20,65,0.1482546331407283],[120,20,66,0.14695513892880058],[120,20,67,0.14572379855266646],[120,20,68,0.1445778843682777],[120,20,69,0.1435321595420642],[120,20,70,0.14259910088714844],[120,20,71,0.1417888266214538],[120,20,72,0.14110901957327232],[120,20,73,0.14056488885268845],[120,20,74,0.14015916975585208],[120,20,75,0.13975115683361605],[120,20,76,0.13881122787130593],[120,20,77,0.13792183720310192],[120,20,78,0.13707842499887102],[120,20,79,0.1362774805483718],[120,21,64,0.13773519318995261],[120,21,65,0.1361841802378506],[120,21,66,0.1347103826226885],[120,21,67,0.13332255956184408],[120,21,68,0.13203569623477257],[120,21,69,0.13086424578204822],[120,21,70,0.12982060494067363],[120,21,71,0.12891489038175266],[120,21,72,0.12815476801278414],[120,21,73,0.1275453349762387],[120,21,74,0.1270890541215231],[120,21,75,0.12678574060036635],[120,21,76,0.12663260011254482],[120,21,77,0.12662431821118517],[120,21,78,0.12675319996719084],[120,21,79,0.12615723712200572],[120,22,64,0.12563248271979804],[120,22,65,0.1238816645553407],[120,22,66,0.12223037111549756],[120,22,67,0.12068398653389703],[120,22,68,0.1192551704815758],[120,22,69,0.117957937740374],[120,22,70,0.1168044566118577],[120,22,71,0.1158046804985245],[120,22,72,0.11496608826828426],[120,22,73,0.1142934911862443],[120,22,74,0.1137889061984038],[120,22,75,0.11345149518973256],[120,22,76,0.113277569681977],[120,22,77,0.11326066028613005],[120,22,78,0.11339165008365132],[120,22,79,0.11365897097889907],[120,23,64,0.11337322521472286],[120,23,65,0.11141862718862428],[120,23,66,0.10958648189980433],[120,23,67,0.10787897939113998],[120,23,68,0.10630645580277406],[120,23,69,0.10488235493332174],[120,23,70,0.10361846166462595],[120,23,71,0.10252439835625307],[120,23,72,0.10160728285852684],[120,23,73,0.1008714663363717],[120,23,74,0.10031835069371983],[120,23,75,0.09994628519244046],[120,23,76,0.09975054167000526],[120,23,77,0.09972336757836711],[120,23,78,0.09985411589593632],[120,23,79,0.10012945080496422],[120,24,64,0.10103165992348698],[120,24,65,0.09886958831006064],[120,24,66,0.09685308984113915],[120,24,67,0.09498141086620734],[120,24,68,0.09326260550436405],[120,24,69,0.0917094135899404],[120,24,70,0.09033308020954711],[120,24,71,0.08914272902781488],[120,24,72,0.08814494588718369],[120,24,73,0.08734345458517476],[120,24,74,0.08673888462214425],[120,24,75,0.0863286304851132],[120,24,76,0.08610680181294526],[120,24,77,0.0860642635770948],[120,24,78,0.08618876521377061],[120,24,79,0.08646515745777177],[120,25,64,0.08868216737691555],[120,25,65,0.08630926158457163],[120,25,66,0.08410479893702089],[120,25,67,0.08206539404422837],[120,25,68,0.0801968986261346],[120,25,69,0.07851121906287553],[120,25,70,0.07701890768672205],[120,25,71,0.07572842733750049],[120,25,72,0.07464566958785025],[120,25,73,0.07377357640996506],[120,25,74,0.07311186507868707],[120,25,75,0.07265685584946888],[120,25,76,0.07240140170143222],[120,25,77,0.07233491919795858],[120,25,78,0.07244351929357475],[120,25,79,0.07271023670668397],[120,26,64,0.07639663208461836],[120,26,65,0.07380991189907943],[120,26,66,0.07141381288720594],[120,26,67,0.06920268267757482],[120,26,68,0.06718028619780839],[120,26,69,0.06535757404808458],[120,26,70,0.06374426063268925],[120,26,71,0.06234799603982919],[120,26,72,0.06117382878927151],[120,26,73,0.06022378198517238],[120,26,74,0.05949654266999465],[120,26,75,0.05898726389329557],[120,26,76,0.05868747873605395],[120,26,77,0.05858512526971474],[120,26,78,0.05866468118310805],[120,26,79,0.05890740658038184],[120,27,64,0.06424195413869874],[120,27,65,0.061438858888513095],[120,27,66,0.05884744678600358],[120,27,67,0.05646020638172149],[120,27,68,0.05427896450482924],[120,27,69,0.05231360422391425],[120,27,70,0.05057286854589003],[120,27,71,0.049063457103928614],[120,27,72,0.047789443940352214],[120,27,73,0.046751817193521825],[120,27,74,0.04594814048528933],[120,27,75,0.04537233550133917],[120,27,76,0.04501458496237733],[120,27,77,0.04486135490239132],[120,27,78,0.04489553490516534],[120,27,79,0.04509669470256328],[120,28,64,0.05227771259679852],[120,28,65,0.04925612899733621],[120,28,66,0.04646578250833169],[120,28,67,0.04389774308361311],[120,28,68,0.04155207750117675],[120,28,69,0.03943750317788172],[120,28,70,0.037561673415349585],[120,28,71,0.035930217331739234],[120,28,72,0.03454612355735971],[120,28,73,0.03340925274147486],[120,28,74,0.032515978667551064],[120,28,75,0.031858957451854464],[120,28,76,0.03142702398857763],[120,28,77,0.031205214506487302],[120,28,78,0.031174913821630387],[120,28,79,0.031314125608754344],[120,29,64,0.04055398379359524],[120,29,65,0.037312259099820715],[120,29,66,0.034319470650349314],[120,29,67,0.031565731385224435],[120,29,68,0.029049550796975375],[120,29,69,0.026778398775527006],[120,29,70,0.02475873875513108],[120,29,71,0.02299502980406287],[120,29,72,0.02148908720517705],[120,29,73,0.020239577079313335],[120,29,74,0.01924164484981218],[120,29,75,0.018486677010201222],[120,29,76,0.017962195332182178],[120,29,77,0.01765188234038677],[120,29,78,0.017535736588330016],[120,29,79,0.01759035599748591],[120,30,64,0.029109333867007127],[120,30,65,0.02564627151408446],[120,30,66,0.022447699364939643],[120,30,67,0.019503243644106008],[120,30,68,0.016810078438383152],[120,30,69,0.014374362555783348],[120,30,70,0.012201290046193625],[120,30,71,0.010294073324182076],[120,30,72,0.008653291403540037],[120,30,73,0.007276375694642952],[120,30,74,0.0061572331644425],[120,30,75,0.005286006313243598],[120,30,76,0.00464896908852409],[120,30,77,0.004228557537031092],[120,30,78,0.004003533696653042],[120,30,79,0.0039492809501233675],[120,31,64,0.017973195364155044],[120,31,65,0.014288203847146746],[120,31,66,0.010880885931793762],[120,31,67,0.007740846630271456],[120,31,68,0.004864158763165805],[120,31,69,0.002255626053949243],[120,31,70,-8.088390775868107E-5],[120,31,71,-0.002143457241628125],[120,31,72,-0.003932787657707845],[120,31,73,-0.005452690949799678],[120,31,74,-0.0067104802990040156],[120,31,75,-0.0077172029360755515],[120,31,76,-0.008487739049838615],[120,31,77,-0.00904076415225076],[120,31,78,-0.009398576414260135],[120,31,79,-0.009586790769356708],[120,32,64,0.0071703616720376825],[120,32,65,0.0032638130963149204],[120,32,66,-3.544032022012051E-4],[120,32,67,-0.003694257426469708],[120,32,68,-0.006760539873133834],[120,32,69,-0.00954982613795779],[120,32,70,-0.012059608719998208],[120,32,71,-0.01428929825831029],[120,32,72,-0.016240870219827917],[120,32,73,-0.017919371995296404],[120,32,74,-0.019333290597831634],[120,32,75,-0.020494781510321594],[120,32,76,-0.021419759567164597],[120,32,77,-0.022127853079586503],[120,32,78,-0.022642222717481772],[120,32,79,-0.02298924694333732],[120,33,64,-0.003288423452166527],[120,33,65,-0.007415214918421441],[120,33,66,-0.01124561483764734],[120,33,67,-0.014788757327053455],[120,33,68,-0.018050062649115087],[120,33,69,-0.021027490386156745],[120,33,70,-0.02371990241225587],[120,33,71,-0.02612803267686687],[120,33,72,-0.02825511875364975],[120,33,73,-0.030107395076519744],[120,33,74,-0.03169444805273334],[120,33,75,-0.033029433591510005],[120,33,76,-0.03412915792290808],[120,33,77,-0.03501402290228696],[120,33,78,-0.03570783729617184],[120,33,79,-0.03623749582468485],[120,34,64,-0.01340915276193904],[120,34,65,-0.017754043272092117],[120,34,66,-0.021797073012347123],[120,34,67,-0.025546179436333707],[120,34,68,-0.029007194810389193],[120,34,69,-0.03217944887431643],[120,34,70,-0.03506315739806391],[120,34,71,-0.037660348084120526],[120,34,72,-0.03997547090425277],[120,34,73,-0.042015872680867046],[120,34,74,-0.043792136095868385],[120,34,75,-0.04531828365228904],[120,34,76,-0.046611847443925894],[120,34,77,-0.04769380590267416],[120,34,78,-0.04858838898765287],[120,34,79,-0.04932275355365842],[120,35,64,-0.02321569832037795],[120,35,65,-0.027775863058170355],[120,35,66,-0.03203119216715334],[120,35,67,-0.0359881335166756],[120,35,68,-0.03965274012893495],[120,35,69,-0.043025681696270114],[120,35,70,-0.04610848777369525],[120,35,71,-0.04890442090163245],[120,35,72,-0.05141906211880001],[120,35,73,-0.05366076427729263],[120,35,74,-0.055640973332345835],[120,35,75,-0.057374418112820375],[120,35,76,-0.05887916939970042],[120,35,77,-0.06017656944585177],[120,35,78,-0.06129103335646592],[120,35,79,-0.062249724015155494],[120,36,64,-0.03212368495982359],[120,36,65,-0.03622916042708836],[120,36,66,-0.04013271790992456],[120,36,67,-0.04383783922299416],[120,36,68,-0.04734888018948089],[120,36,69,-0.05066556503193895],[120,36,70,-0.05378797638865759],[120,36,71,-0.05671739212159975],[120,36,72,-0.05945686611500753],[120,36,73,-0.06201168075825899],[120,36,74,-0.06438967126907284],[120,36,75,-0.06660142233711974],[120,36,76,-0.06866033787908139],[120,36,77,-0.0705825849916577],[120,36,78,-0.07238691346633278],[120,36,79,-0.0707783966195149],[120,37,64,-0.038106377071507054],[120,37,65,-0.042233684327255834],[120,37,66,-0.046156474441520566],[120,37,67,-0.0498765057655948],[120,37,68,-0.053398212234447906],[120,37,69,-0.056722697119718786],[120,37,70,-0.05985136614620923],[120,37,71,-0.0627867061411333],[120,37,72,-0.06553284199400865],[120,37,73,-0.06809596971120509],[120,37,74,-0.070484665697161],[120,37,75,-0.07271007270739281],[120,37,76,-0.0722394805274786],[120,37,77,-0.06685849344683055],[120,37,78,-0.06150539772185705],[120,37,79,-0.056204363596683495],[120,38,64,-0.04381378943150922],[120,38,65,-0.047955675076802796],[120,38,66,-0.05189226388490112],[120,38,67,-0.05562361068288828],[120,38,68,-0.05915420354911388],[120,38,69,-0.06248647780547721],[120,38,70,-0.06562306245997115],[120,38,71,-0.0685675081230148],[120,38,72,-0.07132482824473711],[120,38,73,-0.07390192055257426],[120,38,74,-0.06893185519819567],[120,38,75,-0.0634322436472915],[120,38,76,-0.057924144510991225],[120,38,77,-0.052428129398698085],[120,38,78,-0.04696664020313423],[120,38,79,-0.041563712700219406],[120,39,64,-0.049294918356761086],[120,39,65,-0.05344359764450286],[120,39,66,-0.05738781984545242],[120,39,67,-0.06112596048410087],[120,39,68,-0.06466258059461792],[120,39,69,-0.06800145176819106],[120,39,70,-0.0711463624433175],[120,39,71,-0.07146312292134428],[120,39,72,-0.06595719973903584],[120,39,73,-0.06039898594498727],[120,39,74,-0.054803460797954624],[120,39,75,-0.04918740432015163],[120,39,76,-0.04356947770579085],[120,39,77,-0.03797018949737252],[120,39,78,-0.032411748674058605],[120,39,79,-0.026917806030063173],[120,40,64,-0.05455717944530283],[120,40,65,-0.058703548098600275],[120,40,66,-0.06264784099181904],[120,40,67,-0.06638668349560703],[120,40,68,-0.06992473692012598],[120,40,69,-0.06872485239738366],[120,40,70,-0.06322408037112266],[120,40,71,-0.057650979047305324],[120,40,72,-0.05201845059525437],[120,40,73,-0.04634043639264226],[120,40,74,-0.04063223893293321],[120,40,75,-0.0349107309735389],[120,40,76,-0.02919445246633207],[120,40,77,-0.02350359607541256],[120,40,78,-0.017859882335525212],[120,40,79,-0.01228632573394017],[120,41,64,-0.059611735300179144],[120,41,65,-0.06374565293017657],[120,41,66,-0.06768127062907695],[120,41,67,-0.0661506327054802],[120,41,68,-0.060687083548442655],[120,41,69,-0.055130979674753146],[120,41,70,-0.04949597909954507],[120,41,71,-0.04379546034992229],[120,41,72,-0.038043084687926255],[120,41,73,-0.03225324805687018],[120,41,74,-0.02644142264099148],[120,41,75,-0.020624388213265867],[120,41,76,-0.0148203537192185],[120,41,77,-0.009048969803908881],[120,41,78,-0.003331233234496294],[120,41,79,0.0023107156024067006],[120,42,64,-0.06447245447610878],[120,42,65,-0.06371117369015285],[120,42,66,-0.05832409140351994],[120,42,67,-0.052820177804204956],[120,42,68,-0.04721269663758238],[120,42,69,-0.04151812019723346],[120,42,70,-0.035751631673527726],[120,42,71,-0.029927731681910354],[120,42,72,-0.024060823444015778],[120,42,73,-0.018165690091538598],[120,42,74,-0.012257863883648433],[120,42,75,-0.0063538874098610304],[120,42,76,-4.7146712001946197E-4],[120,42,77,0.005370480220267086],[120,42,78,0.011151887307152657],[120,42,79,0.016851701241982042],[120,43,64,-0.05612429699192384],[120,43,65,-0.050696842357818114],[120,43,66,-0.04515731213284968],[120,43,67,-0.039504882529241614],[120,43,68,-0.033753173189738944],[120,43,69,-0.027920762944627732],[120,43,70,-0.02202449881108844],[120,43,71,-0.01608008017213714],[120,43,72,-0.010102674056637576],[120,43,73,-0.004107424717166281],[120,43,74,0.0018901428154723876],[120,43,75,0.007873825244074624],[120,43,76,0.013826549358784825],[120,43,77,0.019730285753358376],[120,43,78,0.025566067182327477],[120,43,79,0.03131411061227002],[120,44,64,-0.04332069272660282],[120,44,65,-0.03773262939389232],[120,44,66,-0.03203916886915271],[120,44,67,-0.02623719381913603],[120,44,68,-0.02034074192489273],[120,44,69,-0.014370711131636276],[120,44,70,-0.008345769703044369],[120,44,71,-0.002282918788306866],[120,44,72,0.003801856821776136],[120,44,73,0.009893041576845611],[120,44,74,0.01597514613083514],[120,44,75,0.02203236855544883],[120,44,76,0.028048359705445332],[120,44,77,0.03400609238405204],[120,44,78,0.03988783371502197],[120,44,79,0.04567521990230238],[120,45,64,-0.030592350577630857],[120,45,65,-0.024842498722828045],[120,45,66,-0.01899430802851922],[120,45,67,-0.013042246789505482],[120,45,68,-0.007000850138927177],[120,45,69,-8.935474633841789E-4],[120,45,70,0.005259004594206379],[120,45,71,0.011438381802940992],[120,45,72,0.017627702640482672],[120,45,73,0.023811040141189167],[120,45,74,0.029972935869722186],[120,45,75,0.03609801632048609],[120,45,76,0.04217071177923408],[120,45,77,0.04817507743025111],[120,45,78,0.05409471625089861],[120,45,79,0.05991280300914778],[120,46,64,-0.017949400102686135],[120,46,65,-0.012037979110951974],[120,46,66,-0.006035464022979751],[120,46,67,6.615026850933636E-5],[120,46,68,0.006251729638141909],[120,46,69,0.012495107850504457],[120,46,70,0.01877347011143167],[120,46,71,0.02506683676754047],[120,46,72,0.03135733312843879],[120,46,73,0.03762855857210607],[120,46,74,0.04386505564271884],[120,46,75,0.05005187957927954],[120,46,76,0.05617426845134435],[120,46,77,0.06221741382643561],[120,46,78,0.06816633165251111],[120,46,79,0.07400583281228713],[120,47,64,-0.005401664171454372],[120,47,65,6.695663030372358E-4],[120,47,66,0.006824636842932184],[120,47,67,0.013074013775988746],[120,47,68,0.019401841636008228],[120,47,69,0.025779027848557907],[120,47,70,0.032180435668702434],[120,47,71,0.038584394618219095],[120,47,72,0.044971930178782475],[120,47,73,0.05132609016918325],[120,47,74,0.05763136865351955],[120,47,75,0.06387322795983112],[120,47,76,0.07003771912930559],[120,47,77,0.07611120086641113],[120,47,78,0.08208015682018321],[120,47,79,0.08719880837288461],[120,48,64,0.006989241768613588],[120,48,65,0.013218111157616638],[120,48,66,0.01952387461473492],[120,48,67,0.025919400416835714],[120,48,68,0.03238799438529352],[120,48,69,0.03889748890540146],[120,48,70,0.045420285944022545],[120,48,71,0.051932897399594904],[120,48,72,0.05841513670024348],[120,48,73,0.0648494041532055],[120,48,74,0.07122006702869386],[120,48,75,0.07751293509822062],[120,48,76,0.08371483209166733],[120,48,77,0.08955755424090256],[120,48,78,0.09430449780753622],[120,48,79,0.0989494568504622],[120,49,64,0.019154805691829077],[120,49,65,0.02553894667544819],[120,49,66,0.031993661669333956],[120,49,67,0.0385341189328264],[120,49,68,0.045142680942750084],[120,49,69,0.05178400683918058],[120,49,70,0.05842793147729769],[120,49,71,0.0650490389933038],[120,49,72,0.07162581978644113],[120,49,73,0.0781399180304308],[120,49,74,0.08457547082849944],[120,49,75,0.09024240660855043],[120,49,76,0.09547047170632056],[120,49,77,0.1005932621891506],[120,49,78,0.10561616763926591],[120,49,79,0.11054440734666854],[120,50,64,0.031035859190405378],[120,50,65,0.03757258683712279],[120,50,66,0.04417446089150601],[120,50,67,0.05085880382952895],[120,50,68,0.057606943907185404],[120,50,69,0.06438032196256757],[120,50,70,0.07114613765219853],[120,50,71,0.0777259653301745],[120,50,72,0.08362649535427329],[120,50,73,0.08940805617486233],[120,50,74,0.09507957983786934],[120,50,75,0.10064795085600595],[120,50,76,0.1061185358439592],[120,50,77,0.11149562204159214],[120,50,78,0.1167827644561224],[120,50,79,0.12198304157532536],[120,51,64,0.0403749762853914],[120,51,65,0.04766106491167503],[120,51,66,0.054752665437633],[120,51,67,0.061620910989784],[120,51,68,0.06827621813161432],[120,51,69,0.07475122139532604],[120,51,70,0.08107249945003904],[120,51,71,0.0872609433313834],[120,51,72,0.09333267051833491],[120,51,73,0.09929985492598731],[120,51,74,0.10517147146713389],[120,51,75,0.11095395407857422],[120,51,76,0.11665176634796874],[120,51,77,0.1222678841117806],[120,51,78,0.1278041896208648],[120,51,79,0.1332617770878089],[120,52,64,0.049053615069102025],[120,52,65,0.05644001669503643],[120,52,66,0.06363749315762376],[120,52,67,0.07061527456171052],[120,52,68,0.07738473788096421],[120,52,69,0.08398141130145283],[120,52,70,0.09043422803352374],[120,52,71,0.0967658560712486],[120,52,72,0.1029936333681182],[120,52,73,0.1091304226119863],[120,52,74,0.11518538415376728],[120,52,75,0.1211646658799402],[120,52,76,0.1270720090519918],[120,52,77,0.1329092693645606],[120,52,78,0.13867685269480848],[120,52,79,0.14437406522872567],[120,53,64,0.05778367016270101],[120,53,65,0.06526318633416986],[120,53,66,0.07255788430789395],[120,53,67,0.0796353546102471],[120,53,68,0.08650798418726287],[120,53,69,0.09321408995853883],[120,53,70,0.09978491327770146],[120,53,71,0.10624490945271242],[120,53,72,0.1126126972756043],[120,53,73,0.11890193188473802],[120,53,74,0.1251220994305772],[120,53,75,0.13127923224350407],[120,53,76,0.13737654342787659],[120,53,77,0.14341498002842812],[120,53,78,0.14939369412992332],[120,53,79,0.15531043145903536],[120,54,64,0.06656221797710132],[120,54,65,0.07412790032618008],[120,54,66,0.0815113565472095],[120,54,67,0.08867882501871598],[120,54,68,0.09564373432465179],[120,54,69,0.10244703892581729],[120,54,70,0.10912220313204687],[120,54,71,0.11569544930786854],[120,54,72,0.12218671483116188],[120,54,73,0.12861053610089807],[120,54,74,0.134976857997361],[120,54,75,0.14129176741737753],[120,54,76,0.147558149724911],[120,54,77,0.153776267172031],[120,54,78,0.15994425855354438],[120,54,79,0.1660585595608292],[120,55,64,0.07537838153175361],[120,55,65,0.08302358330824854],[120,55,66,0.09048762760498476],[120,55,67,0.09773570303360334],[120,55,68,0.10478229278616571],[120,55,69,0.11167079647280329],[120,55,70,0.11843678022094967],[120,55,71,0.1251081832284599],[120,55,72,0.13170627528089698],[120,55,73,0.13824654495184613],[120,55,74,0.1447395168384472],[120,55,75,0.151191496394863],[120,55,76,0.1576052411360712],[120,55,77,0.16398055719141313],[120,55,78,0.17031482038859833],[120,55,79,0.17660342124478837],[120,56,64,0.08421381216641197],[120,56,65,0.09193222224628855],[120,56,66,0.09946905953022389],[120,56,67,0.10678877043826888],[120,56,68,0.11390688655034953],[120,56,69,0.1208690251361866],[120,56,70,0.12771270089621173],[120,56,71,0.13446749127342184],[120,56,72,0.1411559879344662],[120,56,73,0.14779468242164906],[120,56,74,0.1543947842931749],[120,56,75,0.16096297027082146],[120,56,76,0.1675020631156062],[120,56,77,0.17401163915121853],[120,56,78,0.18048856354893614],[120,56,79,0.18692745267692729],[120,57,64,0.09304326764642423],[120,57,65,0.10082892777030444],[120,57,66,0.10843120006232917],[120,57,67,0.11581409150710775],[120,57,68,0.12299415655929864],[120,57,69,0.13001897450425795],[120,57,70,0.1369278279703796],[120,57,71,0.14375182814282406],[120,57,72,0.15051485409154042],[120,57,73,0.15723442955277492],[120,57,74,0.1639225354622824],[120,57,75,0.17058635673175138],[120,57,76,0.17722896195306595],[120,57,77,0.18384991490634134],[120,57,78,0.1904458169341318],[120,57,79,0.1970107794263855],[120,58,64,0.10183528893976093],[120,58,65,0.10968259500880932],[120,58,66,0.1173434235315945],[120,58,67,0.12478163019589762],[120,58,68,0.13201474790565665],[120,58,69,0.13909204175586065],[120,58,70,0.14605435966969382],[120,58,71,0.15293421934681803],[120,58,72,0.15975672998017285],[120,58,73,0.16654045445008187],[120,58,74,0.17329821028943385],[120,58,75,0.18003780789870832],[120,58,76,0.18676272467467067],[120,58,77,0.19347271390005435],[120,58,78,0.20016434742054015],[120,58,79,0.20683149131042677],[120,59,64,0.11055297783310229],[120,59,65,0.11845666616618447],[120,59,66,0.12616967359198625],[120,59,67,0.1336559689227764],[120,59,68,0.1409340011292995],[120,59,69,0.1480544323890965],[120,59,70,0.15505945725918427],[120,59,71,0.16198285381784575],[120,59,72,0.16885088312612476],[120,59,73,0.1756831318856673],[120,59,74,0.18249329659536778],[120,59,75,0.18928990768642237],[120,59,76,0.1960769922927217],[120,59,77,0.2028546744894694],[120,59,78,0.20961971200458343],[120,59,79,0.2163659685754915],[120,60,64,0.11915487702813948],[120,60,65,0.12710999655958624],[120,60,66,0.1348693095614484],[120,60,67,0.14239713076757093],[120,60,68,0.14971274649902197],[120,60,69,0.1568679230515931],[120,60,70,0.1639059732716607],[120,60,71,0.170861774896805],[120,60,72,0.1777626440583261],[120,60,73,0.18462915435729238],[120,60,74,0.19147589983649485],[120,60,75,0.19831220034053587],[120,60,76,0.20514274792639275],[120,60,77,0.21196819315560617],[120,60,78,0.2187856702639339],[120,60,79,0.22558926036553106],[120,61,64,0.12759594336017946],[120,61,65,0.13559781475054242],[120,61,66,0.14339804698317668],[120,61,67,0.1509614956768383],[120,61,68,0.1583081918373111],[120,61,69,0.16549071699181578],[120,61,70,0.17255327080677269],[120,61,71,0.17953166008686566],[120,61,72,0.18645414364901347],[120,61,73,0.1933422247785452],[120,61,74,0.20021138961885218],[120,61,75,0.2070717900090702],[120,61,76,0.21392886944785078],[120,61,77,0.22078393102351632],[120,61,78,0.2276346463090454],[120,61,79,0.2344755043751204],[120,62,64,0.1358286385178923],[120,62,65,0.14387280140240002],[120,62,66,0.15170901727480338],[120,62,67,0.15930283577062962],[120,62,68,0.1666749292075019],[120,62,69,0.173878417662115],[120,62,70,0.1809581596248705],[120,62,71,0.1879507154717681],[120,62,72,0.19488516213185378],[120,62,73,0.20178385696213733],[120,62,74,0.2086631492166801],[120,62,75,0.21553403765405765],[120,62,76,0.2224027729850464],[120,62,77,0.22927140401869947],[120,62,78,0.23613826651720815],[120,62,79,0.24299841391877475],[120,63,64,0.14380414370967098],[120,63,65,0.151886293431928],[120,63,66,0.15975395314322677],[120,63,67,0.16737347653405873],[120,63,68,0.1747660673485767],[120,63,69,0.18198512745183207],[120,63,70,0.18907595609260539],[120,63,71,0.19607569191521487],[120,63,72,0.20301409695172676],[120,63,73,0.20991429106165904],[120,63,74,0.21679343524523598],[120,63,75,0.22366336240884102],[120,63,76,0.23053115431392487],[120,63,77,0.23739966359179143],[120,63,78,0.24426797985368115],[120,63,79,0.2511318390690805],[120,64,64,0.1514736697859943],[120,64,65,0.15958958481643729],[120,64,66,0.1674844709694921],[120,64,67,0.17512555494110707],[120,64,68,0.18253446074889268],[120,64,69,0.18976464228083906],[120,64,70,0.19686163753990554],[120,64,71,0.20386299341607178],[120,64,72,0.21079901961822375],[120,64,73,0.2176934939206995],[120,64,74,0.22456431719118827],[120,64,75,0.2314241168152763],[120,64,76,0.23828079728137078],[120,64,77,0.2451380368365748],[120,64,78,0.2519957292666287],[120,64,79,0.25885036999193445],[120,65,64,0.1587898770324408],[120,65,65,0.1669353384494101],[120,65,66,0.1748534647239541],[120,65,67,0.18251238923506685],[120,65,68,0.18993405024493656],[120,65,69,0.19717175709331364],[120,65,70,0.2042711062087729],[120,65,71,0.21126989292302667],[120,65,72,0.21819883696860176],[120,65,73,0.2250822598131137],[120,65,74,0.23193871233620342],[120,65,75,0.23878155150071112],[120,65,76,0.24561946481482944],[120,65,77,0.2524569415253322],[120,65,78,0.2592946896208791],[120,65,79,0.2661299978594713],[120,66,64,0.16570840645094276],[120,66,65,0.17387911094719452],[120,66,66,0.18181661339101574],[120,66,67,0.18948996242077448],[120,66,68,0.1969213172756835],[120,66,69,0.20416368445213212],[120,66,70,0.21126256505366517],[120,66,71,0.21825585791319518],[120,66,72,0.22517455917114537],[120,66,73,0.23204341391068545],[120,66,74,0.23888151839188954],[120,66,75,0.24570287156994688],[120,66,76,0.2525168747252637],[120,66,77,0.2593287781740357],[120,66,78,0.266140074163926],[120,66,79,0.2729488351915223],[120,67,64,0.1721895232155422],[120,67,65,0.18038099116891262],[120,67,66,0.18833400273520998],[120,67,67,0.19601852037026565],[120,67,68,0.2034568527646],[120,67,69,0.21070158727202004],[120,67,70,0.21779800648882272],[120,67,71,0.22478398687430517],[120,67,72,0.23169067563638016],[120,67,73,0.23854311965404332],[120,67,74,0.245360845008715],[120,67,75,0.252158385838299],[120,67,76,0.2589457613688604],[120,67,77,0.26572890011767747],[120,67,78,0.2725100103954184],[120,67,79,0.2792878963649493],[120,68,64,0.1781998727380911],[120,68,65,0.1864073529578979],[120,68,66,0.19437186198554365],[120,68,67,0.20206428518871664],[120,68,68,0.20950704134755874],[120,68,69,0.2167522264780988],[120,68,70,0.22384481493025235],[120,68,71,0.230822557588062],[120,68,72,0.23771663976901858],[120,68,73,0.24455229097750858],[120,68,74,0.2513493451075285],[120,68,75,0.25812274983077904],[120,68,76,0.2648830240462643],[120,68,77,0.27163666240515905],[120,68,78,0.2783864860572806],[120,68,79,0.28513193889365446],[120,69,64,0.18356206941091768],[120,69,65,0.19180045524934308],[120,69,66,0.19990442088860214],[120,69,67,0.20760128960922034],[120,69,68,0.21504586702112577],[120,69,69,0.22228972993358667],[120,69,70,0.2293774896874491],[120,69,71,0.2363466939052812],[120,69,72,0.24322846929665612],[120,69,73,0.25004811606852606],[120,69,74,0.2568256525510818],[120,69,75,0.263576308789988],[120,69,76,0.27031096799530824],[120,69,77,0.27703655487428397],[120,69,78,0.28375637000681464],[120,69,79,0.2904703695495287],[120,70,64,0.18869980143482437],[120,70,65,0.19694101597785824],[120,70,66,0.20492844801498603],[120,70,67,0.21262654941557024],[120,70,68,0.22007067687500392],[120,70,69,0.22731185085854944],[120,70,70,0.23439425571199746],[120,70,71,0.24135514937526728],[120,70,72,0.24822549480340828],[120,70,73,0.25503054271274656],[120,70,74,0.26179036427023555],[120,70,75,0.2685203324844268],[120,70,76,0.2752315511956262],[120,70,77,0.28193123069927484],[120,70,78,0.28862300916776745],[120,70,79,0.2953072191623394],[120,71,64,0.19328053058198238],[120,71,65,0.20150781752721109],[120,71,66,0.20948345693409784],[120,71,67,0.21718158014242112],[120,71,68,0.22462494125149757],[120,71,69,0.2318638130748491],[120,71,70,0.2389417567483271],[120,71,71,0.2458955457657636],[120,71,72,0.2527557893801045],[120,71,73,0.2595475068336978],[120,71,74,0.26629065103722727],[120,71,75,0.2730005804577279],[120,71,76,0.27968847811574643],[120,71,77,0.28636171672854405],[120,71,78,0.2930241691676757],[120,71,79,0.2996764635258161],[120,72,64,0.19740262008772727],[120,72,65,0.20563181096923758],[120,72,66,0.21360809704072367],[120,72,67,0.2213069616973432],[120,72,68,0.22875110538468],[120,72,69,0.23598972554107409],[120,72,70,0.24306544655515605],[120,72,71,0.2500142662864362],[120,72,72,0.25686617469763207],[120,72,73,0.2636457224164258],[120,72,74,0.2703725378419281],[120,72,75,0.27706179155383803],[120,72,76,0.2837246069235535],[120,72,77,0.29036841596482105],[120,72,78,0.2969972595943334],[120,72,79,0.3036120316004123],[120,73,64,0.20112345875277993],[120,73,65,0.20935495686302097],[120,73,66,0.21733309405048526],[120,73,67,0.22503485492757402],[120,73,68,0.23248269877201216],[120,73,69,0.23972433152256312],[120,73,70,0.2468010510240598],[120,73,71,0.25374772549327507],[120,73,72,0.2605934107147832],[120,73,73,0.26736191572081025],[120,73,74,0.2740723155603061],[120,73,75,0.28073940990845786],[120,73,76,0.28737412641224963],[120,73,77,0.2939838678089615],[120,73,78,0.3005728019900918],[120,73,79,0.3071420943134513],[120,74,64,0.2044662675273127],[120,74,65,0.21270150979546226],[120,74,66,0.2206836975113223],[120,74,67,0.22839145777492256],[120,74,68,0.23584679049555443],[120,74,69,0.24309544725815674],[120,74,70,0.2501769693953228],[120,74,71,0.2571247086504668],[120,74,72,0.2639664464528137],[120,74,73,0.2707249595851037],[120,74,74,0.277418530832659],[120,74,75,0.2840614033534696],[120,74,76,0.2906641776581912],[120,74,77,0.2972341502348396],[120,74,78,0.3037755929929341],[120,74,79,0.31028997283619325],[120,75,64,0.2074520429597676],[120,75,65,0.21569309025054834],[120,75,66,0.2236820842953874],[120,75,67,0.2313994187926431],[120,75,68,0.23886640349626403],[120,75,69,0.24612636163052978],[120,75,70,0.2532166391751352],[120,75,71,0.2601686782669956],[120,75,72,0.26700864226885523],[120,75,73,0.2737579844312307],[120,75,74,0.28043395871224125],[120,75,75,0.2870500714778303],[120,75,76,0.2936164729607992],[120,75,77,0.3001402875093949],[120,75,78,0.3066258818022749],[120,75,79,0.3130750703467272],[120,76,64,0.21010187244730133],[120,76,65,0.21835102329512954],[120,76,66,0.22634971430814807],[120,76,67,0.23408020426367532],[120,76,68,0.2415628840621015],[120,76,69,0.24883819315297495],[120,76,70,0.25594086115967496],[120,76,71,0.26290004435393977],[120,76,72,0.2697399603671827],[120,76,73,0.27648046295910944],[120,76,74,0.2831375553756139],[120,76,75,0.2897238409947651],[120,76,76,0.2962489101242408],[120,76,77,0.3027196619741539],[120,76,78,0.3091405609832005],[120,76,79,0.31551382682354084],[120,77,64,0.2124391954413751],[120,77,65,0.22069862429616688],[120,77,66,0.22870963450379475],[120,77,67,0.2364564150024949],[120,77,68,0.24395822262446232],[120,77,69,0.2512522004110324],[120,77,70,0.258370080790006],[120,77,71,0.26533839476115134],[120,77,72,0.27217912009618983],[120,77,73,0.2789102653243694],[120,77,74,0.285546387993741],[120,77,75,0.2920990458759304],[120,77,76,0.2985771799572602],[120,77,77,0.30498742822978303],[120,77,78,0.31133436945944076],[120,77,79,0.31762069626515355],[120,78,64,0.21449200664157161],[120,78,65,0.22276342765966153],[120,78,66,0.23078872716855542],[120,78,67,0.238554048785801],[120,78,68,0.24607732181129324],[120,78,69,0.2533920419426511],[120,78,70,0.2605266218993594],[120,78,71,0.26750468178317943],[120,78,72,0.2743457144051256],[120,78,73,0.2810656814167893],[120,78,74,0.2876775386845929],[120,78,75,0.2941916895359318],[120,78,76,0.3006163646935385],[120,78,77,0.30695792789699294],[120,78,78,0.3132211063852934],[120,78,79,0.3194091455817087],[120,79,64,0.2162755712467133],[120,79,65,0.22456002330257652],[120,79,66,0.23260088720659367],[120,79,67,0.24038625995471177],[120,79,68,0.24793258628552667],[120,79,69,0.2552694379439985],[120,79,70,0.2624216472563631],[120,79,71,0.2694096867673839],[120,79,72,0.27625035611588317],[120,79,73,0.2829573940449531],[120,79,74,0.28954201392173257],[120,79,75,0.29601336134654327],[120,79,76,0.30237889263267664],[120,79,77,0.30864467313434124],[120,79,78,0.31481559458832115],[120,79,79,0.320895510814516],[120,80,64,0.21773950385522656],[120,80,65,0.22603741247518747],[120,80,66,0.23409525314486396],[120,80,67,0.24190312192796196],[120,80,68,0.24947589583026858],[120,80,69,0.25683902522516244],[120,80,70,0.26401353467128913],[120,80,71,0.27101650379666087],[120,80,72,0.2778617852108957],[120,80,73,0.2845606411397339],[120,80,74,0.29112229706922715],[120,80,75,0.2975544109087001],[120,80,76,0.3038634563995196],[120,80,77,0.3100550197088101],[120,80,78,0.3161340083506192],[120,80,79,0.3221047717712064],[120,81,64,0.21883249681915448],[120,81,65,0.2271434360451447],[120,81,66,0.23521953528819028],[120,81,67,0.243052980639343],[120,81,68,0.25065707453049957],[120,81,69,0.2580530337491389],[120,81,70,0.265257887729243],[120,81,71,0.2722850762060878],[120,81,72,0.2791452124848603],[120,81,73,0.28584675824092026],[120,81,74,0.2923966080165521],[120,81,75,0.29880058182024366],[120,81,76,0.3050638244715785],[120,81,77,0.3111911105656145],[120,81,78,0.3171870541520412],[120,81,79,0.32305622243592125],[120,82,64,0.2195204925517269],[120,82,65,0.22784291275593382],[120,82,66,0.2359379035377037],[120,82,67,0.2437998559474123],[120,82,68,0.2514405589152023],[120,82,69,0.25887697228921525],[120,82,70,0.26612199705785294],[120,82,71,0.2731852073272903],[120,82,72,0.28007367661819466],[120,82,73,0.2867927077317629],[120,82,74,0.2933464641841743],[120,82,75,0.29973850147208775],[120,82,76,0.30597219669092907],[120,82,77,0.3120510752801615],[120,82,78,0.3179790339122892],[120,82,79,0.32376045877426884],[120,83,64,0.21978426403520518],[120,83,65,0.22811529030105201],[120,83,66,0.23622873974858766],[120,83,67,0.24412132968830447],[120,83,68,0.2518034556581551],[120,83,69,0.25928788625554333],[120,83,70,0.26658332455310374],[120,83,71,0.27369529265013326],[120,83,72,0.28062704068558025],[120,83,73,0.28738035072896156],[120,83,74,0.29395623333410337],[120,83,75,0.30035551482934647],[120,83,76,0.30657931370201835],[120,83,77,0.31262940471214695],[120,83,78,0.3185084696372231],[120,83,79,0.3242202338053823],[120,84,64,0.2196171341405589],[120,84,65,0.22795243193277331],[120,84,66,0.23608252120727458],[120,84,67,0.24400655904933616],[120,84,68,0.25173371755350876],[120,84,69,0.25927272587539807],[120,84,70,0.2666280895095065],[120,84,71,0.27380114522625565],[120,84,72,0.28079107331359837],[120,84,73,0.28759579534908686],[120,84,74,0.294212755022036],[120,84,75,0.3006395798421137],[120,84,76,0.30687462188275955],[120,84,77,0.3129173760126882],[120,84,78,0.3187687743629145],[120,84,79,0.32443135605906526],[120,85,64,0.21902283879489925],[120,85,65,0.2273565435406417],[120,85,66,0.23549984000043758],[120,85,67,0.2434544197999486],[120,85,68,0.25122844199151767],[120,85,69,0.25880195862001104],[120,85,70,0.26578906573374345],[120,85,71,0.2727894487470691],[120,85,72,0.27979398456529886],[120,85,73,0.2867942944944914],[120,85,74,0.29378193784817797],[120,85,75,0.3005792250399903],[120,85,76,0.30684649371364725],[120,85,77,0.31290352733533305],[120,85,78,0.318748968181881],[120,85,79,0.3243836296748449],[120,86,64,0.21801353956697908],[120,86,65,0.22633824671282177],[120,86,66,0.2344895636612994],[120,86,67,0.24247178455609258],[120,86,68,0.25029229681797277],[120,86,69,0.2573994987388566],[120,86,70,0.2641232903147512],[120,86,71,0.2708527792338507],[120,86,72,0.27758328524338866],[120,86,73,0.28431086857727456],[120,86,74,0.2910314024225665],[120,86,75,0.2977397836383801],[120,86,76,0.30442928413471926],[120,86,77,0.31109104495139855],[120,86,78,0.3177137147194247],[120,86,79,0.3240618350749713],[120,87,64,0.2166079907941217],[120,87,65,0.22491480285632845],[120,87,66,0.2330671420566124],[120,87,67,0.24107194085275288],[120,87,68,0.24893607808596688],[120,87,69,0.2556880549167185],[120,87,70,0.26213626717689953],[120,87,71,0.26857970727825264],[120,87,72,0.27501820648004155],[120,87,73,0.2814524428247901],[120,87,74,0.28788287580100913],[120,87,75,0.2943088306800131],[120,87,76,0.3007277352768798],[120,87,77,0.307134511483572],[120,87,78,0.31352112352977063],[120,87,79,0.319876284548339],[120,88,64,0.21482986595691042],[120,88,65,0.22310849304414207],[120,88,66,0.2312530650834268],[120,88,67,0.23927315342431027],[120,88,68,0.24717540385817802],[120,88,69,0.25367059179055357],[120,88,70,0.25983475247419296],[120,88,71,0.2659810195132721],[120,88,72,0.27211372826899527],[120,88,73,0.2782382743131699],[120,88,74,0.28435989587023514],[120,88,75,0.2904826176046579],[120,88,76,0.2966083588839478],[120,88,77,0.3027362092093888],[120,88,78,0.3088618730779573],[120,88,79,0.314977286124199],[120,89,64,0.21270624762014115],[120,89,65,0.22094515787769303],[120,89,66,0.22907147537800857],[120,89,67,0.23709737474354195],[120,89,68,0.24502954789180634],[120,89,69,0.25134820672505864],[120,89,70,0.25722385498142014],[120,89,71,0.26306616605366345],[120,89,72,0.2688838952539626],[120,89,73,0.2746871720645494],[120,89,74,0.2804861186717641],[120,89,75,0.286289641608354],[120,89,76,0.29210440004647126],[120,89,77,0.2979339538087278],[120,89,78,0.3037780936989246],[120,89,79,0.3096323563022923],[120,90,64,0.21026628489737456],[120,90,65,0.21845290129961314],[120,90,66,0.22654893989741468],[120,90,67,0.2345691075447076],[120,90,68,0.24252041673413244],[120,90,69,0.24872102920291506],[120,90,70,0.25430777651736397],[120,90,71,0.2598438230516887],[120,90,72,0.265342185453687],[120,90,73,0.270817659373244],[120,90,74,0.27628526548893007],[120,90,75,0.2817588803375213],[120,90,76,0.2872500559265021],[120,90,77,0.29276703159732576],[120,90,78,0.2983139411040333],[120,90,79,0.3038902173825379],[120,91,64,0.207540022060235],[120,91,65,0.21566096196232143],[120,91,66,0.22371338391568138],[120,91,67,0.231714422752838],[120,91,68,0.23967167347291313],[120,91,69,0.2457889828146746],[120,91,70,0.2510904259980383],[120,91,71,0.2563223404886185],[120,91,72,0.26150177605737424],[120,91,73,0.26664804494537275],[120,91,74,0.2717809901062878],[120,91,75,0.2769194497217693],[120,91,76,0.2820799224254265],[120,91,77,0.28727543712206666],[120,91,78,0.2925146307485016],[120,91,79,0.29780103679560693],[120,92,64,0.20455740160149602],[120,92,65,0.2125987554521449],[120,92,66,0.22059319068057187],[120,92,67,0.2285601359593798],[120,92,68,0.23650801112201836],[120,92,69,0.24255240707908696],[120,92,70,0.2475759046088867],[120,92,71,0.25251007299081063],[120,92,72,0.25737570441460467],[120,92,73,0.2621964013394631],[120,92,74,0.26699666511263354],[120,92,75,0.271800191957765],[120,92,76,0.27662838123474426],[120,92,77,0.2814990602877949],[120,92,78,0.2864254296220007],[120,92,79,0.291415231585262],[120,93,64,0.20134744477091196],[120,93,65,0.20929509038416233],[120,93,66,0.21721646970131644],[120,93,67,0.22513314532171336],[120,93,68,0.2330545783767974],[120,93,69,0.23901253655047916],[120,93,70,0.2437688597877058],[120,93,71,0.24841559163674878],[120,93,72,0.25297692249440984],[120,93,73,0.2574804493181064],[120,93,74,0.2619550862129038],[120,93,75,0.26642919297669265],[120,93,76,0.27092892697363913],[120,93,77,0.27547682308669236],[120,93,78,0.280090605888479],[120,93,79,0.2847822375716148],[120,94,64,0.19793761233331347],[120,94,65,0.20577756111845796],[120,94,66,0.21361049638139834],[120,94,67,0.22145993351947524],[120,94,68,0.22933656024446702],[120,94,69,0.23517183487981289],[120,94,70,0.23967470589875703],[120,94,71,0.24404777488663196],[120,94,72,0.24831824322831134],[120,94,73,0.2525173468347089],[120,94,74,0.2566780936016166],[120,94,75,0.26083322878879417],[120,94,76,0.26501343415237427],[120,94,77,0.2692457660119188],[120,94,78,0.27355233678912066],[120,94,79,0.2779492439236097],[120,95,64,0.19435334804918306],[120,95,65,0.2020721196035516],[120,95,66,0.20980132547288155],[120,95,67,0.21756623617382906],[120,95,68,0.22537891584218814],[120,95,69,0.23103418169207796],[120,95,70,0.23529970965486507],[120,95,71,0.23941577692067562],[120,95,72,0.24341217728337536],[120,95,73,0.24732338148633862],[120,95,74,0.2511861095327205],[120,95,75,0.25503714015602447],[120,95,76,0.25891136373408047],[120,95,77,0.2628400842478548],[120,95,78,0.26684957521168146],[120,95,79,0.2709598938390837],[120,96,64,0.19061780714699875],[120,96,65,0.19820282862562258],[120,96,66,0.2058135806082085],[120,96,67,0.21347687892504638],[120,96,68,0.22120627545767693],[120,96,69,0.22660491032481628],[120,96,70,0.23065093850821328],[120,96,71,0.23452887181600815],[120,96,72,0.23827065893339092],[120,96,73,0.24191356536307973],[120,96,74,0.24549759129704624],[120,96,75,0.24906313509717046],[120,96,76,0.25264890909835624],[120,96,77,0.2562901137387305],[120,96,78,0.26001687531896844],[120,96,79,0.2638529520022328],[120,97,64,0.18675177184281375],[120,97,65,0.19419179853153856],[120,97,66,0.20167042196061283],[120,97,67,0.20921578516780473],[120,97,68,0.2168429987830555],[120,97,69,0.22189069464128042],[120,97,70,0.22573607038243243],[120,97,71,0.22939617212521682],[120,97,72,0.23290465980931885],[120,97,73,0.23630113131627317],[120,97,74,0.23962839888898096],[120,97,75,0.24293001877869624],[120,97,76,0.24624808123802094],[120,97,77,0.2496212672452914],[120,97,78,0.253083177618427],[120,97,79,0.2566609394606031],[120,98,64,0.18277375576626512],[120,98,65,0.19005930930014955],[120,98,66,0.19739369389591221],[120,98,67,0.20480615626320864],[120,98,68,0.21231339606303468],[120,98,69,0.21689928328944702],[120,98,70,0.2205630632608248],[120,98,71,0.22402622054458848],[120,98,72,0.22732368941651152],[120,98,73,0.23049692975480737],[120,98,74,0.23359107671074592],[120,98,75,0.23665235039130797],[120,98,76,0.2397257330474891],[120,98,77,0.24285292050757395],[120,98,78,0.24607055384577],[120,98,79,0.24940873653888232],[120,99,64,0.17870029897054318],[120,99,65,0.18582411965679307],[120,99,66,0.19300425430337456],[120,99,67,0.20027082587853537],[120,99,68,0.20764211374023528],[120,99,69,0.2116390799228562],[120,99,70,0.21513968327607222],[120,99,71,0.2184264534746084],[120,99,72,0.22153518140340425],[120,99,73,0.22450872515758954],[120,99,74,0.22739404872290753],[120,99,75,0.23023952665370917],[120,99,76,0.2330925225843376],[120,99,77,0.2359972486373578],[120,99,78,0.238992912024669],[120,99,79,0.24211215438097333],[120,100,64,0.1745464550381347],[120,100,65,0.18150396476193648],[120,100,66,0.18852248713315933],[120,100,67,0.1956327899518223],[120,100,68,0.2025141801721974],[120,100,69,0.20611856803419074],[120,100,70,0.2094728900686901],[120,100,71,0.21260253538250706],[120,100,72,0.21554376465761618],[120,100,73,0.21834039156468008],[120,100,74,0.22104072650670856],[120,100,75,0.22369479162450356],[120,100,76,0.2263518152079563],[120,100,77,0.22905801286974714],[120,100,78,0.23185466205504118],[120,100,79,0.23477647568838458],[120,101,64,0.17032467859197675],[120,101,65,0.1771141754671447],[120,101,66,0.1839666547711003],[120,101,67,0.1909132917994419],[120,101,68,0.19686795897631226],[120,101,69,0.20034875434789262],[120,101,70,0.2035715230712196],[120,101,71,0.20656126561514007],[120,101,72,0.20935436070244925],[120,101,73,0.21199516336431054],[120,101,74,0.21453286965817603],[120,101,75,0.21701865726706168],[120,101,76,0.2195031103984395],[120,101,77,0.22203393660103982],[120,101,78,0.22465398232214728],[120,101,79,0.2273995532425761],[120,102,64,0.1660258420669991],[120,102,65,0.1726455622640836],[120,102,66,0.17932763233993027],[120,102,67,0.1861033942390513],[120,102,68,0.19100840424676183],[120,102,69,0.19437793224197425],[120,102,70,0.1974841632488238],[120,102,71,0.20035141728352326],[120,102,72,0.20301580804258712],[120,102,73,0.20552177859535775],[120,102,74,0.2079189070342778],[120,102,75,0.21025899153686964],[120,102,76,0.2125934234855812],[120,102,77,0.21497085648313125],[120,102,78,0.21743517829646303],[120,102,79,0.220023791967977],[120,103,64,0.16162985277230235],[120,103,65,0.16807620468059342],[120,103,66,0.17458185303349538],[120,103,67,0.18117807178260703],[120,103,68,0.1850028954515404],[120,103,69,0.18827537401911099],[120,103,70,0.19128181433901736],[120,103,71,0.19404552317964396],[120,103,72,0.19660190875950231],[120,103,73,0.19899498192271134],[120,103,74,0.20127412885103677],[120,103,75,0.20349116493169436],[120,103,76,0.2056976785897836],[120,103,77,0.20794267308285505],[120,103,78,0.21027051344750775],[120,103,79,0.21271918499017237],[120,104,64,0.15712245047151968],[120,104,65,0.16339050869243357],[120,104,66,0.1697126223960265],[120,104,67,0.17544927155761353],[120,104,68,0.1789124503354637],[120,104,69,0.18210330024105456],[120,104,70,0.18502771993999284],[120,104,71,0.18770765643608592],[120,104,72,0.19017734442137404],[120,104,73,0.1924798060115175],[120,104,74,0.19466362136326917],[120,104,75,0.19677997987082477],[120,104,76,0.19888002083200637],[120,104,77,0.20101247166811273],[120,104,78,0.20322159097767223],[120,104,79,0.20554542291033098],[120,105,64,0.152496907360058],[120,105,65,0.1585808775485187],[120,105,66,0.16471175195758275],[120,105,67,0.1693961235688225],[120,105,68,0.1727901954409011],[120,105,69,0.17591540992964783],[120,105,70,0.17877595486792291],[120,105,71,0.1813920817645271],[120,105,72,0.18379638359971667],[120,105,73,0.18603032979348827],[120,105,74,0.18814106880812287],[120,105,75,0.19017850805914033],[120,105,76,0.19219268001542206],[120,105,77,0.19423140257436905],[120,105,78,0.19633824100635236],[120,105,79,0.1985507779803658],[120,106,64,0.14775581207769348],[120,106,65,0.1536494184275098],[120,106,66,0.15958117811159808],[120,106,67,0.16334100611994765],[120,106,68,0.16667995991618126],[120,106,69,0.1697555931680203],[120,106,70,0.1725702604950787],[120,106,71,0.1751422138556259],[120,106,72,0.17750196018010356],[120,106,73,0.17968887027795363],[120,106,74,0.1817480493271173],[120,106,75,0.18372747848916157],[120,106,76,0.18567543642045212],[120,106,77,0.18763820867558842],[120,106,78,0.18965809222814892],[120,106,79,0.19177170157148277],[120,107,64,0.14291323861716831],[120,107,65,0.14861003088989144],[120,107,66,0.1537817537560095],[120,107,67,0.15731673446181135],[120,107,68,0.1606145108460903],[120,107,69,0.16365629947119933],[120,107,70,0.16644255377810946],[120,107,71,0.1689892711705711],[120,107,72,0.17132447250156688],[120,107,73,0.17348492418243563],[120,107,74,0.17551311295082606],[120,107,75,0.17745448259655786],[120,107,76,0.17935494120127318],[120,107,77,0.18125864670278113],[120,107,78,0.18320607785278806],[120,107,79,0.1852323969028835],[120,108,64,0.13799730225131984],[120,108,65,0.1434908793514062],[120,108,66,0.14784573296336503],[120,108,67,0.1513431638489816],[120,108,68,0.15461342763599134],[120,108,69,0.15763655941723756],[120,108,70,0.16041110746010942],[120,108,71,0.16295062264017063],[120,108,72,0.16528030091816912],[120,108,73,0.1674338571036424],[120,108,74,0.16945063954732104],[120,108,75,0.1713729947048373],[120,108,76,0.17324388980857824],[120,108,77,0.17510480117700103],[120,108,78,0.17699387498568647],[120,108,79,0.1789443666272575],[120,109,64,0.13305305397398143],[120,109,65,0.13829943439536144],[120,109,66,0.14195229604976264],[120,109,67,0.1454245052773699],[120,109,68,0.14868056080626535],[120,109,69,0.151699604403749],[120,109,70,0.1544783458632406],[120,109,71,0.1570277712913657],[120,109,72,0.15936998746357342],[120,109,73,0.16153528363391445],[120,109,74,0.16355941993107673],[120,109,75,0.16548115081791367],[120,109,76,0.16733999143108041],[120,109,77,0.16917423395489917],[120,109,78,0.17101922052333338],[120,109,79,0.172905878490984],[120,110,64,0.1281349356483892],[120,110,65,0.1324471105878695],[120,110,66,0.13607591075977096],[120,110,67,0.13953511893756423],[120,110,68,0.14278987830493609],[120,110,69,0.1458187898867498],[120,110,70,0.14861686684260356],[120,110,71,0.15119249381411393],[120,110,72,0.15356450856714282],[120,110,73,0.1557594850655099],[120,110,74,0.15780922649080878],[120,110,75,0.15974847611934279],[120,110,76,0.16161285335819206],[120,110,77,0.16343702163160204],[120,110,78,0.1652530942000702],[120,110,79,0.16708928339238238],[120,111,64,0.12278879119839066],[120,111,65,0.12653076933814628],[120,111,66,0.13014730046528372],[120,111,67,0.13360560681728262],[120,111,68,0.1368718396978529],[120,111,69,0.1399244729152294],[120,111,70,0.14275703262446945],[120,111,71,0.14537533568512115],[120,111,72,0.14779484050992245],[120,111,73,0.15003818152014956],[120,111,74,0.15213289500736576],[120,111,75,0.15410934365431225],[120,111,76,0.1559988464157415],[120,111,77,0.15783201990637194],[120,111,78,0.15963733689134657],[120,111,79,0.16143990692889387],[120,112,64,0.11675416598939224],[120,112,65,0.12048392206037942],[120,112,66,0.12409922401077558],[120,112,67,0.12756862650594641],[120,112,68,0.13085970241277678],[120,112,69,0.13395125584848508],[120,112,70,0.1368355640901075],[120,112,71,0.1395159217690044],[120,112,72,0.14200429230962922],[120,112,73,0.14431912369662653],[120,112,74,0.1464833355615304],[120,112,75,0.14852248409440785],[120,112,76,0.15046311079553806],[120,112,77,0.15233128059055942],[120,112,78,0.15415131434260843],[120,112,79,0.15594472031065146],[120,113,64,0.11053897452313746],[120,113,65,0.11426478150929954],[120,113,66,0.11788848016059796],[120,113,67,0.12138012787409048],[120,113,68,0.1247091628877827],[120,113,69,0.12785520219312993],[120,113,70,0.13080952967370987],[120,113,71,0.1335729712266872],[120,113,72,0.1361538768581286],[120,113,73,0.13856624671902304],[120,113,74,0.1408280071770427],[120,113,75,0.14295944259783014],[120,113,76,0.14498178808481757],[120,113,77,0.14691598800083738],[120,113,78,0.14878162467083905],[120,113,79,0.15059602124626362],[120,114,64,0.10412599463798422],[120,114,65,0.10785396710744344],[120,114,66,0.11149380353571924],[120,114,67,0.11501725620106103],[120,114,68,0.11839607694518843],[120,114,69,0.12161118527387452],[120,114,70,0.1246531412463115],[120,114,71,0.1275203733591084],[120,114,72,0.1302175183662005],[120,114,73,0.13275388389783166],[120,114,74,0.1351420389996451],[120,114,75,0.13739653735895624],[120,114,76,0.13953277762878602],[120,114,77,0.1415660049033709],[120,114,78,0.14351045704403126],[120,114,79,0.14537865920436321],[120,115,64,0.09751711615867331],[120,115,65,0.10125106516826919],[120,115,66,0.10491254795504389],[120,115,67,0.10847520216791716],[120,115,68,0.11191352256554113],[120,115,69,0.11521021015002061],[120,115,70,0.11835537972394843],[120,115,71,0.12134515789280811],[120,115,72,0.12418040328147857],[120,115,73,0.12686552801340986],[120,115,74,0.1294074245352003],[120,115,75,0.13181450158418037],[120,115,76,0.134095832810119],[120,115,77,0.13626042127610719],[120,115,78,0.13831658278002903],[120,115,79,0.1402714506592108],[120,116,64,0.09072997513483881],[120,116,65,0.09447134272340403],[120,116,66,0.09815751635620522],[120,116,67,0.10176418882349018],[120,116,68,0.10526898760054636],[120,116,69,0.10865684642814505],[120,116,70,0.11191771594867145],[120,116,71,0.11504554375996706],[120,116,72,0.11803739218502428],[120,116,73,0.12089263572947193],[120,116,74,0.12361224122320644],[120,116,75,0.12619813342665526],[120,116,76,0.12865264866627427],[120,116,77,0.13097807884940538],[120,116,78,0.13317630799710134],[120,116,79,0.1352485432269237],[120,117,64,0.08379474938031128],[120,117,65,0.08754261794372226],[120,117,66,0.09125394025046264],[120,117,67,0.09490659839259998],[120,117,68,0.09848168515353777],[120,117,69,0.10196677450338848],[120,117,70,0.10535192912365221],[120,117,71,0.10862906835041203],[120,117,72,0.1117914942917787],[120,117,73,0.11483347636646607],[120,117,74,0.1177498961436973],[120,117,75,0.12053595421733422],[120,117,76,0.12318694070130638],[120,117,77,0.12569807079011242],[120,117,78,0.12806438668856435],[120,117,79,0.1302807270804901],[120,118,64,0.07675111805313554],[120,118,65,0.0805022899069444],[120,118,66,0.08423661143739117],[120,118,67,0.08793424157807961],[120,118,68,0.09157999915396958],[120,118,69,0.09516444757837308],[120,118,70,0.09867802492215111],[120,118,71,0.10211079907636213],[120,118,72,0.10545240607047343],[120,118,73,0.10869202618390157],[120,118,74,0.11181839860483679],[120,118,75,0.1148198753097634],[120,118,76,0.11768451475964557],[120,118,77,0.12040021593507472],[120,118,78,0.12295489316357486],[120,118,79,0.12533669212870163],[120,119,64,0.06964538778855789],[120,119,65,0.07339453024116929],[120,119,66,0.07714716848908834],[120,119,67,0.08088577180293802],[120,119,68,0.08459906246120212],[120,119,69,0.0882808716349966],[120,119,70,0.09192225523685493],[120,119,71,0.09551162896068738],[120,119,72,0.09903511539411997],[120,119,73,0.10247690924355321],[120,119,74,0.1058196603099512],[120,119,75,0.10904487383672733],[120,119,76,0.11213332783925525],[120,119,77,0.11506550701881763],[120,119,78,0.1178220528626473],[120,119,79,0.1200396146938479],[120,120,64,0.06252778721439001],[120,120,65,0.06626763849138757],[120,120,66,0.07003153983454707],[120,120,67,0.07380424616641536],[120,120,68,0.07757846917010994],[120,120,69,0.08135150488469982],[120,120,70,0.08511524090257436],[120,120,71,0.08885665734476497],[120,120,72,0.09255857203865384],[120,120,73,0.09620038535492019],[120,120,74,0.09975882325649107],[120,120,75,0.1033918230307464],[120,120,76,0.10948622735441704],[120,120,77,0.11458029298018405],[120,120,78,0.11835181467206705],[120,120,79,0.12207908163938483],[120,121,64,0.055449916299572896],[120,121,65,0.05917154757687544],[120,121,66,0.06293752969951544],[120,121,67,0.06673481922096289],[120,121,68,0.07056010703790258],[120,121,69,0.07441426238818738],[120,121,70,0.07996507125167551],[120,121,71,0.08667332936765013],[120,121,72,0.09337240303656465],[120,121,73,0.10003853737282009],[120,121,74,0.10664451099178751],[120,121,75,0.11316068822604089],[120,121,76,0.11836380279507905],[120,121,77,0.12187045625365701],[120,121,78,0.1253238311925362],[120,121,79,0.12874936098977294],[120,122,64,0.04846237955402046],[120,122,65,0.05463983905050779],[120,122,66,0.06129583007572869],[120,122,67,0.06800589734342768],[120,122,68,0.07476993691609889],[120,122,69,0.08159217359624475],[120,122,70,0.08846682989139232],[120,122,71,0.09537927114071015],[120,122,72,0.10230746717334487],[120,122,73,0.1092234231839502],[120,122,74,0.11609457637743008],[120,122,75,0.12275930377849535],[120,122,76,0.1260253631311373],[120,122,77,0.12921271579193463],[120,122,78,0.13235458335602046],[120,122,79,0.13548302416320177],[120,123,64,0.05613615107389435],[120,123,65,0.06276089743444944],[120,123,66,0.06946902664725925],[120,123,67,0.076250225309532],[120,123,68,0.08310799084420852],[120,123,69,0.09004998908774582],[120,123,70,0.09707161276088543],[120,123,71,0.10415741521470726],[120,123,72,0.11128289717646993],[120,123,73,0.11841624922890576],[120,123,74,0.12552004569442238],[120,123,75,0.1307558925909701],[120,123,76,0.13371882019141063],[120,123,77,0.1366026999475944],[120,123,78,0.13944716891469328],[120,123,79,0.142290507126263],[120,124,64,0.06450358755885113],[120,124,65,0.07114080065653329],[120,124,66,0.07787695951829983],[120,124,67,0.08470330713509898],[120,124,68,0.09162665694847369],[120,124,69,0.09865795088893434],[120,124,70,0.1057938010166301],[120,124,71,0.11301817658909045],[120,124,72,0.12030448014325593],[120,124,73,0.12761756777151315],[120,124,74,0.13491570848179538],[120,124,75,0.13874717323438998],[120,124,76,0.14143063803554712],[120,124,77,0.1440336397266424],[120,124,78,0.14660164846091067],[120,124,79,0.14917863091084713],[120,125,64,0.07316979672617216],[120,125,65,0.07979688748849866],[120,125,66,0.08653650156850252],[120,125,67,0.09338115844855202],[120,125,68,0.1003406243234308],[120,125,69,0.1074288685238813],[120,125,70,0.11464372420596211],[120,125,71,0.12196879035863109],[120,125,72,0.12937575746798285],[120,125,73,0.1368266678305656],[120,125,74,0.14414581487211037],[120,125,75,0.14671229692956309],[120,125,76,0.1491455476737222],[120,125,77,0.15149606543213404],[120,125,78,0.15381446058971218],[120,125,79,0.15614973764102075],[120,126,64,0.08214292792548991],[120,126,65,0.08873768418825251],[120,126,66,0.09545626946732902],[120,126,67,0.10229216813860403],[120,126,68,0.10925767246617972],[120,126,69,0.11636945895654999],[120,126,70,0.12362653953091428],[120,126,71,0.13101233826068057],[120,126,72,0.1384972242068424],[120,126,73,0.146040971345178],[120,126,74,0.15227289160818788],[120,126,75,0.1546299100914379],[120,126,76,0.15684653052856692],[120,126,77,0.15897753088786779],[120,126,78,0.16107788261147607],[120,126,79,0.1632008884920987],[120,127,64,0.09142045313252078],[120,127,65,0.09796156110869869],[120,127,66,0.10463531849950289],[120,127,67,0.11143584128957636],[120,127,68,0.11837747640939832],[120,127,69,0.1254792331875483],[120,127,70,0.1327412225025414],[120,127,71,0.1401468676155569],[120,127,72,0.14766560068962087],[120,127,73,0.1552554807313151],[120,127,74,0.16029484766914537],[120,127,75,0.1624783758231911],[120,127,76,0.16451481028107415],[120,127,77,0.16646236553815894],[120,127,78,0.16837953736079606],[120,127,79,0.17032312438127736],[120,128,64,0.10098797396639643],[120,128,65,0.1074555646501654],[120,128,66,0.11406200565375184],[120,128,67,0.12080170030431553],[120,128,68,0.1276905570847499],[120,128,69,0.1347495126464422],[120,128,70,0.14197966990411648],[120,128,71,0.14936460347374433],[120,128,72,0.15687317706236786],[120,128,73,0.16446227836078003],[120,128,74,0.16818905499126918],[120,128,75,0.1702359832153071],[120,128,76,0.1721298531472732],[120,128,77,0.1739314546927974],[120,128,78,0.1757019466012666],[120,128,79,0.1775007901238628],[120,129,64,0.11081820940648904],[120,129,65,0.11719442552134612],[120,129,66,0.12371302195627312],[120,129,67,0.13036834519279608],[120,129,68,0.13717737786965634],[120,129,69,0.14416257628493004],[120,129,70,0.15132591589777172],[120,129,71,0.15865125471061728],[120,129,72,0.16610723138519898],[120,129,73,0.17365007844851957],[120,129,74,0.1759348289493215],[120,129,75,0.17788114429830273],[120,129,76,0.17966937662598484],[120,129,77,0.1813620481611498],[120,129,78,0.18302213148204136],[120,129,79,0.18471092272701026],[120,130,64,0.12087016504605622],[120,130,65,0.12713974417800877],[120,130,66,0.13355259493491475],[120,130,67,0.14010267391076242],[120,130,68,0.146807588180182],[120,130,69,0.15369093919145002],[120,130,70,0.16075546203203506],[120,130,71,0.16798541474199152],[120,130,72,0.17534952185368227],[120,130,73,0.1814122646104575],[120,130,74,0.1835137641681258],[120,130,75,0.18539257850948596],[120,130,76,0.18710936675246342],[120,130,77,0.1887275974960774],[120,130,78,0.1903112604608249],[120,130,79,0.19192270443406143],[120,131,64,0.1310884846354343],[120,131,65,0.13723935422269043],[120,131,66,0.14353186201364196],[120,131,67,0.1499592635472984],[120,131,68,0.15653941488989356],[120,131,69,0.163296763469395],[120,131,70,0.17023472183582938],[120,131,71,0.17733805747048897],[120,131,72,0.18457585365948634],[120,131,73,0.18884491173328427],[120,131,74,0.19091003608190008],[120,131,75,0.19274948454427587],[120,131,76,0.19442410388657363],[120,131,77,0.19599762204527038],[120,131,78,0.19753434506773948],[120,131,79,0.19909698107535542],[120,132,64,0.1414029025154171],[120,132,65,0.1474267742522292],[120,132,66,0.15358831731278536],[120,132,67,0.1598798068150807],[120,132,68,0.16631908785137292],[120,132,69,0.1729312792634119],[120,132,70,0.1797204493337571],[120,132,71,0.1866719892403271],[120,132,72,0.19373241141902933],[120,132,73,0.1960627371545555],[120,132,74,0.1981108307966898],[120,132,75,0.19993186820557635],[120,132,76,0.20158637037000232],[120,132,77,0.2031377802714043],[120,132,78,0.20465016128550415],[120,132,79,0.20618602283190454],[120,133,64,0.15171650971396294],[120,133,65,0.15760805264074826],[120,133,66,0.16363124296026083],[120,133,67,0.16977712020164143],[120,133,68,0.17606339026058784],[120,133,69,0.18251583106820712],[120,133,70,0.1891392439843556],[120,133,71,0.19591980030468115],[120,133,72,0.20076564488293536],[120,133,73,0.20309009959357363],[120,133,74,0.20513278205604468],[120,133,75,0.20694814466777264],[120,133,76,0.20859599690140426],[120,133,77,0.21013909370498926],[120,133,78,0.21164084559574456],[120,133,79,0.21316315615485865],[120,134,64,0.16190828248536349],[120,134,65,0.167662510663177],[120,134,66,0.17354064749206696],[120,134,67,0.17953225158660707],[120,134,68,0.18565484971094773],[120,134,69,0.19193499898867178],[120,134,70,0.19837841794937863],[120,134,71,0.20497229402996542],[120,134,72,0.20767458616948992],[120,134,73,0.20999847243989855],[120,134,74,0.21204167976657176],[120,134,75,0.2138576017146355],[120,134,76,0.2155049959945685],[120,134,77,0.21704559296643589],[120,134,78,0.21854182565765085],[120,134,79,0.22005468698009364],[120,135,64,0.17187209153960956],[120,135,65,0.17748417751612872],[120,135,66,0.18321105998816173],[120,135,67,0.18904060784728544],[120,135,68,0.19499019674319776],[120,135,69,0.20108736789816123],[120,135,70,0.20733900967084093],[120,135,71,0.21187515486151334],[120,135,72,0.21452341885334672],[120,135,73,0.2168478770968971],[120,135,74,0.2188926888787594],[120,135,75,0.22070987568203412],[120,135,76,0.2223568427227334],[120,135,77,0.2238940151664213],[120,135,78,0.22538259503761704],[120,135,79,0.22688244446502723],[120,136,64,0.1815210205511317],[120,136,65,0.18698641005585942],[120,136,66,0.19255643683435097],[120,136,67,0.19821713247592262],[120,136,68,0.2039858035249177],[120,136,69,0.20989122480961736],[120,136,70,0.21571572023784982],[120,136,71,0.21871364346811187],[120,136,72,0.2213577952644278],[120,136,73,0.22368025431821079],[120,136,74,0.2257235186302397],[120,136,75,0.22753795636023544],[120,136,76,0.22917936344949483],[120,136,77,0.23070663430374233],[120,136,78,0.23217955147479788],[120,136,79,0.233656699918288],[120,137,64,0.190787509038432],[120,137,65,0.19610195633642058],[120,137,66,0.20151013494675593],[120,137,67,0.2069961697680225],[120,137,68,0.21257742089386028],[120,137,69,0.21828415713425137],[120,137,70,0.22258528687205123],[120,137,71,0.22557071162907377],[120,137,72,0.22820572044819093],[120,137,73,0.23052047658403665],[120,137,74,0.23255554948047524],[120,137,75,0.23435941125541107],[120,137,76,0.2359860374376743],[120,137,77,0.23749261813242795],[120,137,78,0.23893738545309934],[120,137,79,0.24037756270674707],[120,138,64,0.19962390355295498],[120,138,65,0.2047834243255156],[120,138,66,0.2100252834792574],[120,138,67,0.21533171734240342],[120,138,68,0.22072028982671105],[120,138,69,0.22616384882715893],[120,138,70,0.22949304306178947],[120,138,71,0.23245946660918743],[120,138,72,0.23507815979824712],[120,138,73,0.23737712081411158],[120,138,74,0.2393947611419581],[120,138,75,0.24117745531129797],[120,138,76,0.24277719128836064],[120,138,77,0.24424932755230336],[120,138,78,0.24565046256495632],[120,138,79,0.24703642200526055],[120,139,64,0.20800341957894752],[120,139,65,0.21300415822152233],[120,139,66,0.21807555644540202],[120,139,67,0.22319806942023582],[120,139,68,0.2283896297420132],[120,139,69,0.23313748752594887],[120,139,70,0.23643577657768877],[120,139,71,0.23937550199761748],[120,139,72,0.2419693682553093],[120,139,73,0.24424299946009742],[120,139,74,0.24623245993205597],[120,139,75,0.24798186452962898],[120,139,76,0.2495410848957019],[120,139,77,0.2509635574866284],[120,139,78,0.2523041989373813],[120,139,79,0.25361743399223413],[120,140,64,0.21592151654603656],[120,140,65,0.22075952478326594],[120,140,66,0.22565634866249779],[120,140,67,0.23059085325455342],[120,140,68,0.23558150599843986],[120,140,69,0.24013165614598972],[120,140,70,0.24339168166570682],[120,140,71,0.2462967111926949],[120,140,72,0.24885693904834227],[120,140,73,0.2510954481048221],[120,140,74,0.25304580375423935],[120,140,75,0.25474973200910705],[120,140,76,0.2562548876773478],[120,140,77,0.2576127182744778],[120,140,78,0.25887642904118613],[120,140,79,0.2600990541277153],[120,141,64,0.22339768838203666],[120,141,65,0.22806861209770507],[120,141,66,0.23278635742674125],[120,141,67,0.23752846109007508],[120,141,68,0.24231407892511725],[120,141,69,0.2471044663057122],[120,141,70,0.25031960330732556],[120,141,71,0.25318278589796556],[120,141,72,0.25570157002019633],[120,141,73,0.2578963677674209],[120,141,74,0.25979812309133415],[120,141,75,0.2614460649958348],[120,141,76,0.26288554390952656],[120,141,77,0.26416595666719966],[120,141,78,0.26533876525518546],[120,141,79,0.2664556141876517],[120,142,64,0.2304776720837424],[120,142,65,0.23497634324837813],[120,142,66,0.2395095723528822],[120,142,67,0.2440538800442748],[120,142,68,0.24862923671797924],[120,142,69,0.2532760084580922],[120,142,70,0.25715793651697605],[120,142,71,0.25997439758103286],[120,142,72,0.26244654562936837],[120,142,73,0.26459202017022776],[120,142,74,0.2664390364550809],[120,142,75,0.2680242216016332],[120,142,76,0.2693905260579899],[120,142,77,0.2705852155759953],[120,142,78,0.27165794860705667],[120,142,79,0.2726589437667481],[120,143,64,0.23722184976671906],[120,143,65,0.241542217234935],[120,143,66,0.24588439921010138],[120,143,67,0.2502242487701374],[120,143,68,0.25458264390144686],[120,143,69,0.25900203342872713],[120,143,70,0.26350671866727104],[120,143,71,0.2666012628914099],[120,143,72,0.26902498819246173],[120,143,73,0.2711193741447089],[120,143,74,0.2729098020376246],[120,143,75,0.274430180963458],[120,143,76,0.27572094225340354],[120,143,77,0.2768271054581421],[120,143,78,0.2777964205157447],[120,143,79,0.27867759050540736],[120,144,64,0.24365314507398625],[120,144,65,0.24778966583468218],[120,144,66,0.25193475762935946],[120,144,67,0.2560640170046526],[120,144,68,0.260199317282674],[120,144,69,0.2643850573323295],[120,144,70,0.26864799220807156],[120,144,71,0.27299849322518316],[120,144,72,0.2753907666881822],[120,144,73,0.277432664308107],[120,144,74,0.2791651815285446],[120,144,75,0.28061940371224264],[120,144,76,0.28183312918507064],[120,144,77,0.282849016660284],[120,144,78,0.28371279867609306],[120,144,79,0.28447156516841804],[120,145,64,0.24978031911571463],[120,145,65,0.2537283931427633],[120,145,66,0.2576713606693603],[120,145,67,0.26158503277292455],[120,145,68,0.26549236425810097],[120,145,69,0.2694395265126116],[120,145,70,0.2734556174905442],[120,145,71,0.2775537741901437],[120,145,72,0.2815070885390729],[120,145,73,0.2834943302418105],[120,145,74,0.2851669388429595],[120,145,75,0.2865530943594235],[120,145,76,0.2876878687694619],[120,145,77,0.28861146223352074],[120,145,78,0.28936749418080665],[120,145,79,0.2900013530774861],[120,146,64,0.255609670648022],[120,146,65,0.25936566705234293],[120,146,66,0.26310253582241677],[120,146,67,0.2667968181940283],[120,146,68,0.27047263022142],[120,146,69,0.27417769592483754],[120,146,70,0.27794330310301485],[120,146,71,0.2817852647155692],[120,146,72,0.2857057589567876],[120,146,73,0.2892698767861594],[120,146,74,0.29087985019741247],[120,146,75,0.29219543241184115],[120,146,76,0.29324890181204527],[120,146,77,0.2940779242579744],[120,146,78,0.2947239278240581],[120,146,79,0.29523052378379944],[120,147,64,0.2611452950698597],[120,147,65,0.26470655500264173],[120,147,66,0.26823443316116313],[120,147,67,0.2717067444188549],[120,147,68,0.2751488356151436],[120,147,69,0.27860972608677026],[120,147,70,0.28212270061580835],[120,147,71,0.28570611779788535],[120,147,72,0.2893650886390319],[120,147,73,0.29309314285785326],[120,147,74,0.2962717836811174],[120,147,75,0.2975136564605427],[120,147,76,0.2984830047050359],[120,147,77,0.2992149102983694],[120,147,78,0.29974855288450364],[120,147,79,0.3001257065441007],[120,148,64,0.26638933673281856],[120,148,65,0.26975415507808276],[120,148,66,0.2730712307429409],[120,148,67,0.2763202061404209],[120,148,68,0.27952771521650543],[120,148,69,0.28274378479911844],[120,148,70,0.2860034684885318],[120,148,71,0.2893275018563146],[120,148,72,0.29272381076262105],[120,148,73,0.29618901871741105],[120,148,74,0.2997099501307045],[120,148,75,0.30247814598666695],[120,148,76,0.3033600696706073],[120,148,77,0.3039920207556681],[120,148,78,0.3044108976032664],[120,148,79,0.30465659562495856],[120,149,64,0.271342234487715],[120,149,65,0.27450982238650734],[120,149,66,0.2776153372044751],[120,149,67,0.2806407956168853],[120,149,68,0.2836141596085198],[120,149,69,0.2865861535978727],[120,149,70,0.28959334272150705],[120,149,71,0.2926586365691334],[120,149,72,0.29579262022564873],[120,149,73,0.29899489621578573],[120,149,74,0.3022554347512586],[120,149,75,0.3055559297110535],[120,149,76,0.3078531886271306],[120,149,77,0.30838202723295655],[120,149,78,0.3086836275274873],[120,149,79,0.30879598567045424],[120,150,64,0.27600296040108757],[120,150,65,0.2789733906531574],[120,150,66,0.2818675914873812],[120,150,67,0.2846704761543948],[120,150,68,0.28741135879258106],[120,150,69,0.29014133890496524],[120,150,70,0.29289821422679263],[120,150,71,0.2957068365791313],[120,150,72,0.29858026073928023],[120,150,73,0.3015209164535389],[120,150,74,0.3045218015632906],[120,150,75,0.3075676942167218],[120,150,76,0.3106363821503666],[120,150,77,0.3123609620353491],[120,150,78,0.31254262788905346],[120,150,79,0.31251983736387895],[120,151,64,0.280369251582401],[120,151,65,0.2831433889743961],[120,151,66,0.28582745964162465],[120,151,67,0.28840975500252],[120,151,68,0.29092094790347706],[120,151,69,0.2934121878467934],[120,151,70,0.2959222128957962],[120,151,71,0.2984775630499233],[120,151,72,0.3010935443598544],[120,151,73,0.30377522865184564],[120,151,74,0.30651848741211796],[120,151,75,0.30931105835417544],[120,151,76,0.31213364317366876],[120,151,77,0.31496103498757677],[120,151,78,0.3159671061869257],[120,151,79,0.31580737360975564],[120,152,64,0.2844378350716332],[120,152,65,0.28701725368376224],[120,152,66,0.2894932286621259],[120,152,67,0.29185785562235894],[120,152,68,0.29414315499402127],[120,152,69,0.2964000087152743],[120,152,70,0.2986677983442051],[120,152,71,0.30097448305697055],[120,152,72,0.3033373788675091],[120,152,73,0.3057639859873837],[120,152,74,0.3082528634574628],[120,152,75,0.31079455012627166],[120,152,76,0.31337253100187473],[120,152,77,0.3159642479660148],[120,152,78,0.31854215381179235],[120,152,79,0.31864120646185995],[120,153,64,0.28820464574415394],[120,153,65,0.2905915352900731],[120,153,66,0.29286219732038044],[120,153,67,0.295012889293431],[120,153,68,0.2970769508617414],[120,153,69,0.2991046960502673],[120,153,70,0.3011358573178402],[120,153,71,0.3031995367985846],[120,153,72,0.3053148029739262],[120,153,73,0.3074913479135236],[120,153,74,0.3097302047906506],[120,153,75,0.31202452529258573],[120,153,76,0.31436041646970514],[120,153,77,0.31671783649935065],[120,153,78,0.31907154878323346],[120,153,79,0.32100749502265585],[120,154,64,0.29166503719724046],[120,154,65,0.2938621004547463],[120,154,66,0.29593086396012264],[120,154,67,0.29787202603218016],[120,154,68,0.2997202008961142],[120,154,69,0.3015248603273587],[120,154,70,0.30332580774703],[120,154,71,0.3051530126147968],[120,154,72,0.307027029342881],[120,154,73,0.3089594889418865],[120,154,74,0.31095366366292476],[120,154,75,0.3130051047885973],[120,154,76,0.31510235362082345],[120,154,77,0.3172277256175753],[120,154,78,0.31935816754458995],[120,154,79,0.32146618743325217],[120,155,64,0.29481398558990124],[120,155,65,0.29682432898300476],[120,155,66,0.2986951112333784],[120,155,67,0.300431664801918],[120,155,68,0.302069818931386],[120,155,69,0.30365796224082636],[120,155,70,0.3052357094419008],[120,155,71,0.3068336298054597],[120,155,72,0.3084734954092348],[120,155,73,0.31016861385864797],[120,155,74,0.3119242462818617],[120,155,75,0.31373811126284656],[120,155,76,0.31560097524546116],[120,155,77,0.3174973298188283],[120,155,78,0.3194061561811601],[120,155,79,0.3213017769770008],[120,156,64,0.297646286413965],[120,156,65,0.2994733058102174],[120,156,66,0.3011503877598082],[120,156,67,0.3026876030004316],[120,156,68,0.3041219230961268],[120,156,69,0.30550045157714295],[120,156,70,0.3068623814256095],[120,156,71,0.3082386292423359],[120,156,72,0.30965192198388486],[120,156,73,0.3111169793501458],[120,156,74,0.3126407931312682],[120,156,75,0.31422300466177244],[120,156,76,0.315856381374464],[120,156,77,0.3175273932991047],[120,156,78,0.3192168902123337],[120,156,79,0.320900880017682],[120,157,64,0.30015674418068916],[120,157,65,0.30180400797137036],[120,157,66,0.30329188669907015],[120,157,67,0.30463520521832194],[120,157,68,0.3058719936573944],[120,157,69,0.30704791068072224],[120,157,70,0.308201525908134],[120,157,71,0.3093638717743661],[120,157,72,0.31055837963509464],[120,157,73,0.3118009220134568],[120,157,74,0.31309996276911317],[120,157,75,0.3144568167891554],[120,157,76,0.31586602062258057],[120,157,77,0.31731581530946673],[120,157,78,0.31878874249426803],[120,157,79,0.3202623547615854],[120,158,64,0.3023403550132691],[120,158,65,0.3038114865483816],[120,158,66,0.3051147212328876],[120,158,67,0.306269571268263],[120,158,68,0.30731503286459466],[120,158,69,0.30829520252060155],[120,158,70,0.30924785890959927],[120,158,71,0.3102039444305912],[120,158,72,0.31118736284042225],[120,158,73,0.31221489272954983],[120,158,74,0.3132962190578648],[120,158,75,0.31443408476467966],[120,158,76,0.3156245642692102],[120,158,77,0.3168574604865944],[120,158,78,0.31811682680174475],[120,158,79,0.31938161527110526],[120,159,64,0.3041924821407797],[120,159,65,0.3054910435958454],[120,159,66,0.3066140969597432],[120,159,67,0.307585703491934],[120,159,68,0.3084457268049409],[120,159,69,0.3092366233735368],[120,159,70,0.30999524754841795],[120,159,71,0.3107522744305232],[120,159,72,0.31153187190728543],[120,159,73,0.312351497378506],[120,159,74,0.3132218217812181],[120,159,75,0.3141467833032398],[120,159,76,0.3151237729593806],[120,159,77,0.3161439539945973],[120,159,78,0.31719271687693873],[120,159,79,0.3182502714520409],[120,160,64,0.3057090242941613],[120,160,65,0.30683840405175195],[120,160,66,0.30778548121157784],[120,160,67,0.30857867335833283],[120,160,68,0.30925860928981985],[120,160,69,0.3098660601465284],[120,160,70,0.31043685401673554],[120,160,71,0.3110012510180747],[120,160,72,0.311583502665055],[120,160,73,0.31220154387915344],[120,160,74,0.3128668206016142],[120,160,75,0.313584255734292],[120,160,76,0.3143523559024726],[120,160,77,0.31516346130783435],[120,160,78,0.3160041407218812],[120,160,79,0.316855733462566],[120,161,64,0.30688657700975086],[120,161,65,0.3078498826456156],[120,161,66,0.3086247693084097],[120,161,67,0.30924378737436803],[120,161,68,0.3097482277992029],[120,161,69,0.3101771523699531],[120,161,70,0.31056528627364016],[120,161,71,0.3109423551423276],[120,161,72,0.3113325439372958],[120,161,73,0.31175409553913963],[120,161,74,0.3122190523140355],[120,161,75,0.31273314367861904],[120,161,76,0.31329582244101484],[120,161,77,0.3139004524559038],[120,161,78,0.31453464989950536],[120,161,79,0.315180780248427],[120,162,64,0.30772258684958104],[120,162,65,0.3085225458213272],[120,162,66,0.3091284477724317],[120,162,67,0.309576752335102],[120,162,68,0.3099093115185255],[120,162,69,0.31016345890026653],[120,162,70,0.31037275549435595],[120,162,71,0.3105662970154888],[120,162,72,0.31076808280842955],[120,162,73,0.3109965307050026],[120,162,74,0.31126414135237074],[120,162,75,0.31157731529743815],[120,162,76,0.3119363258557932],[120,162,77,0.3123354505420632],[120,162,78,0.3127632635943835],[120,162,79,0.31320309189142803],[120,163,64,0.308215498551833],[120,163,65,0.3088543686974903],[120,163,66,0.309293754529513],[120,163,67,0.309573839948358],[120,163,68,0.3097369415108274],[120,163,69,0.30981862938029703],[120,163,70,0.30985124032281874],[120,163,71,0.3098631615869617],[120,163,72,0.30987811770629975],[120,163,73,0.30991460870685755],[120,163,74,0.3099855035068105],[120,163,75,0.31009779202745963],[120,163,76,0.3102524992682413],[120,163,77,0.3104447643367744],[120,163,78,0.3106640871703004],[120,163,79,0.31089474543993595],[120,164,64,0.30836270276305],[120,164,65,0.30884202291283247],[120,164,66,0.3091163239658031],[120,164,67,0.3092293988397773],[120,164,68,0.3092239374378039],[120,164,69,0.3091336763056676],[120,164,70,0.30898965706610526],[120,164,71,0.30881949101981704],[120,164,72,0.30864656796624856],[120,164,73,0.3084894213114837],[120,164,74,0.30836125347368853],[120,164,75,0.30826962532013563],[120,164,76,0.30821631309499437],[120,164,77,0.30819733602637556],[120,164,78,0.30820315753721034],[120,164,79,0.3082190627301518],[120,165,64,0.30814775856747545],[120,165,65,0.3084670893618745],[120,165,66,0.308575571912812],[120,165,67,0.3085204791577081],[120,165,68,0.3083447774594538],[120,165,69,0.308080311380909],[120,165,70,0.3077567836060341],[120,165,71,0.3074010011911852],[120,165,72,0.3070360075622356],[120,165,73,0.3066803752516962],[120,165,74,0.3063476635971102],[120,165,75,0.3060460453383308],[120,165,76,0.3057781057687355],[120,165,77,0.30554081781662895],[120,165,78,0.30532569616074345],[120,165,79,0.30511913322066453],[120,166,64,0.3075536436667948],[120,166,65,0.30771035949909015],[120,166,66,0.3076500195706216],[120,166,67,0.3074231768144184],[120,166,68,0.30707297023925423],[120,166,69,0.3066293444228111],[120,166,70,0.30612067512843794],[120,166,71,0.30557299488687745],[120,166,72,0.3050090473983192],[120,166,73,0.304447506844426],[120,166,74,0.3039023665358081],[120,166,75,0.3033825010300508],[120,166,76,0.3028914055656855],[120,166,77,0.3024271163710959],[120,166,78,0.30198231512706236],[120,166,79,0.30154462059031417],[120,167,64,0.30657015531556175],[120,167,65,0.30655991789757187],[120,167,66,0.3063259893990752],[120,167,67,0.30592192554609493],[120,167,68,0.30539093298643744],[120,167,69,0.3047611095515893],[120,167,70,0.3040595783105063],[120,167,71,0.3033116872892275],[120,167,72,0.3025399841509266],[120,167,73,0.3017633598017494],[120,167,74,0.30099636554971676],[120,167,75,0.3002487081472066],[120,167,76,0.29952492675091236],[120,167,77,0.29882425553943864],[120,167,78,0.2981406754406615],[120,167,79,0.2974631581415765],[120,168,64,0.30519207785443936],[120,168,65,0.30500929760095513],[120,168,66,0.3045957486242799],[120,168,67,0.3040076347411529],[120,168,68,0.30328812975622804],[120,168,69,0.30246360620602875],[120,168,70,0.3015600740897865],[120,168,71,0.30060234705329925],[120,168,72,0.29961293435419817],[120,168,73,0.29861110573043614],[120,168,74,0.29761213400178227],[120,168,75,0.29662671993101863],[120,168,76,0.29566060356807555],[120,168,77,0.2947143659992783],[120,168,78,0.293783425128093],[120,168,79,0.29285822882624474],[120,169,64,0.3034171209975382],[120,169,65,0.3030554022891294],[120,169,66,0.30245541737531106],[120,169,67,0.301675590853404],[120,169,68,0.30075897353198083],[120,169,69,0.29973040599059647],[120,169,70,0.298614990638243],[120,169,71,0.29743721460937245],[120,169,72,0.296219755572148],[120,169,73,0.29498246448668386],[120,169,74,0.293741530348464],[120,169,75,0.29250883164259567],[120,169,76,0.2912914789240994],[120,169,77,0.29009155263088726],[120,169,78,0.288906039932342],[120,169,79,0.2877269741205677],[120,170,64,0.3012436742125037],[120,170,65,0.3006962443086761],[120,170,66,0.29990269379649004],[120,170,67,0.298923177905114],[120,170,68,0.29780055065813366],[120,170,69,0.2965583867396534],[120,170,70,0.2952211503747613],[120,170,71,0.2938132635188955],[120,170,72,0.2923578219684126],[120,170,73,0.2908754926421112],[120,170,74,0.28938359727872],[120,170,75,0.287895387479086],[120,170,76,0.2864195157040355],[120,170,77,0.2849597065225038],[120,170,78,0.2835146320924863],[120,170,79,0.2820779955528209],[120,171,64,0.298668375168342],[120,171,65,0.29792849659614407],[120,171,66,0.2969343942273143],[120,171,67,0.2957474152460924],[120,171,68,0.29441016587480123],[120,171,69,0.29294529214627213],[120,171,70,0.29137694947315795],[120,171,71,0.2897298034637347],[120,171,72,0.2880276529892859],[120,171,73,0.28629223892513656],[120,171,74,0.2845422440256402],[120,171,75,0.28279248906994636],[120,171,76,0.2810533300898296],[120,171,77,0.27933026116615495],[120,171,78,0.27762372695973214],[120,171,79,0.27592914882854025],[120,172,64,0.2956834900439824],[120,172,65,0.294744856342523],[120,172,66,0.29354380636547955],[120,172,67,0.29214231056222],[120,172,68,0.2905827060367812],[120,172,69,0.288887115140641],[120,172,70,0.2870797681665764],[120,172,71,0.2851859232994608],[120,172,72,0.2832303937343305],[120,172,73,0.2812362653685345],[120,172,74,0.2792238107498504],[120,172,75,0.2772096046311226],[120,172,76,0.2752058461480122],[120,172,77,0.27321989230278254],[120,172,78,0.2712540071067729],[120,172,79,0.2693053304106218],[120,173,64,0.2922741033018449],[120,173,65,0.29113121806058834],[120,173,66,0.28971785314473214],[120,173,67,0.2880960259469127],[120,173,68,0.2863078204244889],[120,173,69,0.2843753030333721],[120,173,70,0.2823232099859978],[120,173,71,0.280177772447616],[120,173,72,0.2779651454411416],[120,173,73,0.275710032754904],[120,173,74,0.2734345137637532],[120,173,75,0.2711570777339961],[120,173,76,0.26889187083942406],[120,173,77,0.2666481607722585],[120,173,78,0.26443002349235634],[120,173,79,0.2622362563238176],[120,174,64,0.28841511433602807],[120,174,65,0.2870636535239827],[120,174,66,0.2854340648693116],[120,174,67,0.28358785466273523],[120,174,68,0.2815669153726473],[120,174,69,0.2793937822629325],[120,174,70,0.27709416790113384],[120,174,71,0.27469567874006],[120,174,72,0.27222614435747555],[120,174,73,0.2697121488075803],[120,174,74,0.267177770231128],[120,174,75,0.2646435345213584],[120,174,76,0.26212558848944456],[120,174,77,0.2596350976189779],[120,174,78,0.25717787314734675],[120,174,79,0.25475423286616794],[120,175,64,0.2840836437455908],[120,175,65,0.2825206776439682],[120,175,66,0.28067261443583147],[120,175,67,0.2785999180258461],[120,175,68,0.27634438853695464],[120,175,69,0.27392959118602034],[120,175,70,0.2713827059429852],[120,175,71,0.2687331223570016],[120,175,72,0.26601066881013224],[120,175,73,0.2632440507600964],[120,175,74,0.260459504362405],[120,175,75,0.2576796715017296],[120,175,76,0.2549227018975212],[120,175,77,0.2522015875829022],[120,175,78,0.24952373469200706],[120,175,79,0.24689077713278892],[120,176,64,0.27930968975738785],[120,176,65,0.2775335296953957],[120,176,66,0.27546592836059725],[120,176,67,0.2731657513684814],[120,176,68,0.2706747826623385],[120,176,69,0.2680181517708808],[120,176,70,0.2652249677028955],[120,176,71,0.26232678107961416],[120,176,72,0.2593557150397313],[120,176,73,0.2563428125337602],[120,176,74,0.25331660664127503],[120,176,75,0.25030192017257213],[120,176,76,0.24731890043943122],[120,176,77,0.2443822947012195],[120,176,78,0.24150097141596646],[120,176,79,0.23867769205489112],[120,177,64,0.2741392120729904],[120,177,65,0.2721496149456112],[120,177,66,0.26986278077743425],[120,177,67,0.26733540651370197],[120,177,68,0.2646093045980842],[120,177,69,0.2617116546936178],[120,177,70,0.25867390746442087],[120,177,71,0.255530105924213],[120,177,72,0.25231492183521026],[120,177,73,0.2490619161148073],[120,177,74,0.24580203011796825],[120,177,75,0.2425623142795256],[120,177,76,0.23936490021156412],[120,177,77,0.23622622196006798],[120,177,78,0.23315649173556408],[120,177,79,0.23015943504832176],[120,178,64,0.2686194283001126],[120,178,65,0.266417863128266],[120,178,66,0.2639137968556779],[120,178,67,0.26116120146286154],[120,178,68,0.25820193863878715],[120,178,69,0.255065667160116],[120,178,70,0.25178653379533444],[120,178,71,0.24840134891740928],[120,178,72,0.2449475344233558],[120,178,73,0.24146130322413706],[120,178,74,0.237976077390556],[120,178,75,0.23452115164564308],[120,178,76,0.23112060849316562],[120,178,77,0.2277924908686866],[120,178,78,0.22454823779770472],[120,178,79,0.22139238814864576],[120,179,64,0.26279821944755444],[120,179,65,0.260388065961761],[120,179,66,0.25767070490125343],[120,179,67,0.25469686688538007],[120,179,68,0.2515084656970532],[120,179,69,0.24813800280156154],[120,179,70,0.24462260875014402],[120,179,71,0.24100207143855604],[120,179,72,0.2373167036513556],[120,179,73,0.23360544943866327],[120,179,74,0.22990423660523157],[120,179,75,0.22624458218575147],[120,179,76,0.2226524573683079],[120,179,77,0.21914741791327133],[120,179,78,0.21574200570136762],[120,179,79,0.21244142663615337],[120,180,64,0.25672349893615126],[120,180,65,0.25411017944511827],[120,180,66,0.2511855565490465],[120,180,67,0.24799666578919866],[120,180,68,0.24458546271843318],[120,180,69,0.2409875813460295],[120,180,70,0.2372433492133934],[120,180,71,0.2333956701159614],[120,180,72,0.22948782127141665],[120,180,73,0.22556149606635809],[120,180,74,0.22165509982591639],[120,180,75,0.2178023056351675],[120,180,76,0.21403087681913946],[120,180,77,0.21036176226327227],[120,180,78,0.20680847033216335],[120,180,79,0.20337672672534857],[120,181,64,0.2504425445140166],[120,181,65,0.24763359031343624],[120,181,66,0.2445099144337519],[120,181,67,0.24111448577207528],[120,181,68,0.23748928176089057],[120,181,69,0.23367327752371728],[120,181,70,0.2297101298927211],[120,181,71,0.22564591985531632],[120,181,72,0.22152689099451106],[120,181,73,0.2173974395500734],[120,181,74,0.21329836367523372],[120,181,75,0.20926537903959697],[120,181,76,0.20532790749821586],[120,181,77,0.20150814511296966],[120,181,78,0.19782041537935616],[120,181,79,0.19427081308364133],[120,182,64,0.24400129242139532],[120,182,65,0.24100634599134588],[120,182,66,0.23769400668277227],[120,182,67,0.234102903210815],[120,182,68,0.23027500811897747],[120,182,69,0.22625275862282646],[120,182,70,0.22208318743228986],[120,182,71,0.21781553354330901],[120,182,72,0.21349893494831668],[120,182,73,0.20918037814713278],[120,182,74,0.20490291212496323],[120,182,75,0.20070413403333234],[120,182,76,0.1966149533720182],[120,182,77,0.1926586410290695],[120,182,78,0.18885016909566102],[120,182,79,0.18519584693703478],[120,183,64,0.23744359310703758],[120,183,65,0.23427434733883895],[120,183,66,0.23078584753105985],[120,183,67,0.22701221870276486],[120,183,68,0.22299539683157202],[120,183,69,0.2187813100739383],[120,183,70,0.21442032508106726],[120,183,71,0.20996473793713313],[120,183,72,0.20546643514677254],[120,183,73,0.20097481560929248],[120,183,74,0.19653498129735628],[120,183,75,0.19218620392197364],[120,183,76,0.1879606744226835],[120,183,77,0.18388254167550228],[120,183,78,0.17996724636553513],[120,183,79,0.17622115553023673],[120,184,64,0.23081042775523994],[120,184,65,0.22748050344057683],[120,184,66,0.22383032331515124],[120,184,67,0.2198894630325441],[120,184,68,0.21569978687258431],[120,184,69,0.21131064840409083],[120,184,70,0.20677561731759622],[120,184,71,0.20214986522257747],[120,184,72,0.1974878095564126],[120,184,73,0.19284102157194957],[120,184,74,0.1882564061300996],[120,184,75,0.1837746605847897],[120,184,76,0.17942901960142288],[120,184,77,0.17524429230042424],[120,184,78,0.17123619766844947],[120,184,79,0.16741100373562473],[120,185,64,0.22413908484020253],[120,185,65,0.22066384764694588],[120,185,66,0.21686824306168254],[120,185,67,0.21277737289665802],[120,185,68,0.20843299228611029],[120,185,69,0.203887720867251],[120,185,70,0.1991981138029689],[120,185,71,0.19442195969920872],[120,185,72,0.1896159223273313],[120,185,73,0.1848334483519813],[120,185,74,0.18012294875678653],[120,185,75,0.17552626121995327],[120,185,76,0.1710774002444874],[120,185,77,0.1668016013970182],[120,185,78,0.1627146655590553],[120,185,79,0.1588226086491462],[120,186,64,0.21746229588205607],[120,186,65,0.21385861403262912],[120,186,66,0.20993535284431233],[120,186,67,0.2057133355792789],[120,186,68,0.2012341694910226],[120,186,69,0.1965534910254113],[120,186,70,0.19173054200657896],[120,186,71,0.18682539903070786],[120,186,72,0.1818966277441083],[120,186,73,0.1769992038501359],[120,186,74,0.17218270846122524],[120,186,75,0.1674898049729434],[120,186,76,0.16295500419053066],[120,186,77,0.15860372398863343],[120,186,78,0.15445164933580183],[120,186,79,0.15050439807099858],[120,187,64,0.21080732953879047],[120,187,65,0.20709327339831154],[120,187,66,0.20306131304421682],[120,187,67,0.19872830173607645],[120,187,68,0.19413565994691806],[120,187,69,0.1893417095260966],[120,187,70,0.18440800782685882],[120,187,71,0.1793965294835923],[120,187,72,0.1743673474461913],[120,187,73,0.16937658025828936],[120,187,74,0.16447461307961053],[120,187,75,0.1597045995161527],[120,187,76,0.15510125087848337],[120,187,77,0.15068991904174178],[120,187,78,0.1464859786349779],[120,187,79,0.14249451384632067],[120,188,64,0.2041950431281554],[120,188,65,0.2003895279011024],[120,188,66,0.19626863761093097],[120,188,67,0.19184566540729],[120,188,68,0.18716180734144064],[120,188,69,0.18227766929535025],[120,188,70,0.1772566935092625],[120,188,71,0.17216231456603182],[120,188,72,0.16705568046564526],[120,188,73,0.16199363828168134],[120,188,74,0.1570269917469152],[120,188,75,0.1521990376835236],[120,188,76,0.14754438775486847],[120,188,77,0.1430880815742682],[120,188,78,0.13884499676540046],[120,188,79,0.13481956113310553],[120,189,64,0.1976388906363199],[120,189,65,0.19376126336228677],[120,189,66,0.18957159438524698],[120,189,67,0.18508011034922298],[120,189,68,0.18032774843122326],[120,189,69,0.17537694434325335],[120,189,70,0.17029255214920316],[120,189,71,0.1651389964731047],[120,189,72,0.1599780456357549],[120,189,73,0.15486684660425323],[120,189,74,0.149856228915636],[120,189,75,0.14498928431058247],[120,189,76,0.14030022838149642],[120,189,77,0.13581355010466756],[120,189,78,0.1315434546925535],[120,189,79,0.12749360477349958],[120,190,64,0.191143886234466],[120,190,65,0.18721345826588362],[120,190,66,0.18297506551289586],[120,190,67,0.17843642174373375],[120,190,68,0.17363817664374057],[120,190,69,0.16864411136035562],[120,190,70,0.16351999805706346],[120,190,71,0.15833076974423926],[120,190,72,0.15313835593511738],[120,190,73,0.14799977634980888],[120,190,74,0.1429654996144735],[120,190,75,0.13807807348567525],[120,190,76,0.13337103270668438],[120,190,77,0.12886809017651854],[120,190,78,0.12458261668762576],[120,190,79,0.12051741406820933],[120,191,64,0.18470552229093645],[120,191,65,0.18074104842861383],[120,191,66,0.17647336694726296],[120,191,67,0.1719082623185298],[120,191,68,0.16708607752566437],[120,191,69,0.16207145326846992],[120,191,70,0.15693059225616737],[120,191,71,0.15172846654300665],[120,191,72,0.14652672434889075],[120,191,73,0.14138185032308515],[120,191,74,0.1363435859617714],[120,191,75,0.13145361648254641],[120,191,76,0.12674453004546085],[120,191,77,0.1222390547941998],[120,191,78,0.11794957877627647],[120,191,79,0.11387795739142703],[120,192,64,0.18494957910058313],[120,192,65,0.17956367380528623],[120,192,66,0.1740029484581445],[120,192,67,0.16826443831965102],[120,192,68,0.16238104693491745],[120,192,69,0.15641094746600614],[120,192,70,0.1505017223842431],[120,192,71,0.14530825298039088],[120,192,72,0.14011820085312407],[120,192,73,0.13498714685425947],[120,192,74,0.12996377500475614],[120,192,75,0.12508862071870697],[120,192,76,0.12039308540756183],[120,192,77,0.11589872271817458],[120,192,78,0.1116168012547043],[120,192,79,0.10754814823597472],[120,193,64,0.18810438246717753],[120,193,65,0.18260194001905533],[120,193,66,0.1769305906661886],[120,193,67,0.17108651479432355],[120,193,68,0.16510229110016592],[120,193,69,0.1590360966851832],[120,193,70,0.15294705959250304],[120,193,71,0.14689257598890065],[120,193,72,0.1409263647339482],[120,193,73,0.13509676580823612],[120,193,74,0.12944528879811384],[120,193,75,0.12400541724856416],[120,193,76,0.11880167430426712],[120,193,77,0.1138489546651854],[120,193,78,0.10915212749157122],[120,193,79,0.10470591450666922],[120,194,64,0.19118927227364613],[120,194,65,0.18557303752048365],[120,194,66,0.1797945111480322],[120,194,67,0.17384945782797534],[120,194,68,0.1677701893346163],[120,194,69,0.16161465249464407],[120,194,70,0.15544131993892055],[120,194,71,0.14930658514738115],[120,194,72,0.1432629019581725],[120,194,73,0.13735716223980185],[120,194,74,0.13162931766175495],[120,194,75,0.1261112511241744],[120,194,76,0.12082590302697378],[120,194,77,0.11578665717667881],[120,194,78,0.11099699074972597],[120,194,79,0.10645039235631702],[120,195,64,0.19414122877053674],[120,195,65,0.1884111331805667],[120,195,66,0.1825261150849574],[120,195,67,0.17648180396435478],[120,195,68,0.1703103392275095],[120,195,69,0.16406938545747612],[120,195,70,0.15781669243431024],[120,195,71,0.1516075712706872],[120,195,72,0.14549311938697257],[120,195,73,0.13951867824560807],[120,195,74,0.1337225295247948],[120,195,75,0.12813483504700707],[120,195,76,0.12277682540848336],[120,195,77,0.1176602418848698],[120,195,78,0.11278703582006194],[120,195,79,0.10814932934217171],[120,196,64,0.19691549095061614],[120,196,65,0.19107084153367795],[120,196,66,0.18507929739319762],[120,196,67,0.17893655154991742],[120,196,68,0.17267468685797285],[120,196,69,0.16635112158069493],[120,196,70,0.16002289399334366],[120,196,71,0.1537442212763174],[120,196,72,0.14756481064040886],[120,196,73,0.14152839815384033],[120,196,74,0.13567152070238658],[120,196,75,0.1300225261592513],[120,196,76,0.12460082648217201],[120,196,77,0.11941639809483255],[120,196,78,0.11446953355236922],[120,196,79,0.10975084813868441],[120,197,64,0.19950629851137724],[120,197,65,0.1935492840786063],[120,197,66,0.18745369850068236],[120,197,67,0.18121557616713524],[120,197,68,0.17486704829144595],[120,197,69,0.16846522420049012],[120,197,70,0.16206634851681623],[120,197,71,0.15572344963778303],[120,197,72,0.14948474029054754],[120,197,73,0.14339224066662498],[120,197,74,0.13748062931627889],[120,197,75,0.13177632663818548],[120,197,76,0.12629681545088237],[120,197,77,0.12105020278273065],[120,197,78,0.11603502667078729],[120,197,79,0.1112403114180555],[120,198,64,0.2019080611867951],[120,198,65,0.1958433763553763],[120,198,66,0.18964838028549097],[120,198,67,0.18331979414046629],[120,198,68,0.17688989004407918],[120,198,69,0.17041531643515898],[120,198,70,0.1639513591502778],[120,198,71,0.15754969072997807],[120,198,72,0.15125686578883654],[120,198,73,0.1451130334098492],[120,198,74,0.13915087148240024],[120,198,75,0.13339474756867872],[120,198,76,0.12786011054534518],[120,198,77,0.12255311692872305],[120,198,78,0.11747049545707366],[120,198,79,0.11259965317438414],[120,199,64,0.2023099312811578],[120,199,65,0.1979473341832163],[120,199,66,0.19165909577108262],[120,199,67,0.1852462146201352],[120,199,68,0.1787411849739675],[120,199,69,0.17219997697344855],[120,199,70,0.1656766931997655],[120,199,71,0.15922143323369697],[120,199,72,0.15287889071086772],[120,199,73,0.14668716112188687],[120,199,74,0.140676765000291],[120,199,75,0.13486989081824738],[120,199,76,0.1292798615838471],[120,199,77,0.12391082880762695],[120,199,78,0.11875769718391442],[120,199,79,0.11380628301637069],[120,200,64,0.20186673032004068],[120,200,65,0.19955815076049466],[120,200,66,0.1934797378285607],[120,200,67,0.18698948248455594],[120,200,68,0.180416061851906],[120,200,69,0.17381450592122674],[120,200,70,0.16723747063419706],[120,200,71,0.1607332342557165],[120,200,72,0.15434440396635452],[120,200,73,0.14810682597323357],[120,200,74,0.14204870348696444],[120,200,75,0.13618992660210177],[120,200,76,0.1305416178057769],[120,200,77,0.12510589652668921],[120,200,78,0.11987586582869815],[120,200,79,0.11483582405129227],[120,201,64,0.20137548760875076],[120,201,65,0.19886041218171968],[120,201,66,0.19510370723287407],[120,201,67,0.18854334667651745],[120,201,68,0.1819083883968607],[120,201,69,0.17525263420507164],[120,201,70,0.16862700832487096],[120,201,71,0.16207770340471425],[120,201,72,0.15564500510516516],[120,201,73,0.14936231186779128],[120,201,74,0.14325535389681424],[120,201,75,0.13734161508898823],[120,201,76,0.1316299613493053],[120,201,77,0.12612047843300178],[120,201,78,0.12080452216210233],[120,201,79,0.11566498357864996],[120,202,64,0.20085157028194142],[120,202,65,0.19811689549450495],[120,202,66,0.19533253455397598],[120,202,67,0.1899020539113413],[120,202,68,0.18321228787131505],[120,202,69,0.17650817680789577],[120,202,70,0.16983862049738827],[120,202,71,0.16324745751521286],[120,202,72,0.15677241664096933],[120,202,73,0.15044425388470814],[120,202,74,0.14428607882708328],[120,202,75,0.13831287368646938],[120,202,76,0.13253120824494094],[120,202,77,0.12693915348502766],[120,202,78,0.12152639651438094],[120,202,79,0.11627455908702264],[120,203,64,0.2003081118618962],[120,203,65,0.19734112744176646],[120,203,66,0.19431944890038985],[120,203,67,0.191061667627882],[120,203,68,0.18432358927396353],[120,203,69,0.17757663006517022],[120,203,70,0.1708673758373364],[120,203,71,0.164237046691602],[120,203,72,0.15772058430886182],[120,203,73,0.151345914030256],[120,203,74,0.14513338503532006],[120,203,75,0.13909539168783985],[120,203,76,0.133236178856831],[120,203,77,0.12755183375907628],[120,203,78,0.12203046661420403],[120,203,79,0.11665258215425721],[120,204,64,0.19975504599702004],[120,204,65,0.19654369817350645],[120,204,66,0.19327398508615626],[120,204,67,0.18992669425858136],[120,204,68,0.1852412111022242],[120,204,69,0.17845671319586562],[120,204,70,0.17171181164855437],[120,204,71,0.1650448523150099],[120,204,72,0.15848776615838733],[120,204,73,0.15206546446953753],[120,204,74,0.14579539961144664],[120,204,75,0.13968729399528682],[120,204,76,0.13374303975238186],[120,204,77,0.1279567713263079],[120,204,78,0.12231511297513203],[120,204,79,0.11679760294605349],[120,205,64,0.1991982296213675],[120,205,65,0.1957312977634871],[120,205,66,0.19220351857799345],[120,205,67,0.1885925040233601],[120,205,68,0.18485462235998812],[120,205,69,0.17915185417994994],[120,205,70,0.17237560541172797],[120,205,71,0.1656749576171938],[120,205,72,0.15907861135838522],[120,205,73,0.15260827939732508],[120,205,74,0.14627837525178014],[120,205,75,0.14009585565426655],[120,205,76,0.13406021901692272],[120,205,77,0.128163661787652],[120,205,78,0.12239139437185799],[120,205,79,0.11672211808957667],[120,206,64,0.19863865630384792],[120,206,65,0.19490583985928642],[120,206,66,0.19111059646527861],[120,206,67,0.18722709464827306],[120,206,68,0.18321134295680383],[120,206,69,0.1790126733187729],[120,206,70,0.1728692040320448],[120,206,71,0.16613899137818122],[120,206,72,0.15950622955534588],[120,206,73,0.15298923668625802],[120,206,74,0.1465992260756616],[120,206,75,0.14034026894227225],[120,206,76,0.13420939705347076],[120,206,77,0.12819684679245372],[120,206,78,0.12228644600157428],[120,206,79,0.11645614476620338],[120,207,64,0.1980729201245769],[120,207,65,0.19406439823698277],[120,207,66,0.18999247649933254],[120,207,67,0.18582765931529252],[120,207,68,0.1815255870829672],[120,207,69,0.1770386023217939],[120,207,70,0.172326003758825],[120,207,71,0.16645628093840642],[120,207,72,0.15979183644681402],[120,207,73,0.15323172809084923],[120,207,74,0.14678379188015267],[120,207,75,0.14044907135692866],[120,207,76,0.13422203059987575],[120,207,77,0.12809089076653524],[120,207,78,0.12203809117216728],[120,207,79,0.11604087575094107],[120,208,64,0.19749808492363813],[120,208,65,0.19320302675958737],[120,208,66,0.1888443832551215],[120,208,67,0.18438888599279288],[120,208,68,0.17979184139049756],[120,208,69,0.17500879860409305],[120,208,70,0.17000279121829098],[120,208,71,0.16474458648632204],[120,208,72,0.15921271885805882],[120,208,73,0.15335311855376907],[120,208,74,0.14684885622467742],[120,208,75,0.14043845711826436],[120,208,76,0.134113780160802],[120,208,77,0.12722406878023493],[120,208,78,0.12001336245869616],[120,208,79,0.1125778957632125],[120,209,64,0.19691121377565987],[120,209,65,0.19231812351083666],[120,209,66,0.18766232662283072],[120,209,67,0.18290679746680877],[120,209,68,0.1780065877603738],[120,209,69,0.17292061913767656],[120,209,70,0.16761581870399958],[120,209,71,0.1620670826981137],[120,209,72,0.1562571140233758],[120,209,73,0.1501761793435174],[120,209,74,0.14382178503762397],[120,209,75,0.13719827142395338],[120,209,76,0.13031632477275865],[120,209,77,0.12319240673347398],[120,209,78,0.11584810090206096],[120,209,79,0.10830937634688473],[120,210,64,0.1963084195811389],[120,210,65,0.19140590666580068],[120,210,66,0.18644285986754822],[120,210,67,0.18137862933476456],[120,210,68,0.17616812891260483],[120,210,69,0.17077377960371587],[120,210,70,0.16516650618487005],[120,210,71,0.15932540849893143],[120,210,72,0.15323739816512416],[120,210,73,0.14689677498474576],[120,210,74,0.14030474283236732],[120,210,75,0.13346886490670357],[120,210,76,0.12640245829416302],[120,210,77,0.11912392787116424],[120,210,78,0.11165603963950523],[120,210,79,0.10402513364951922],[120,211,64,0.19568469793796756],[120,211,65,0.1904621447789629],[120,211,66,0.1851827060175304],[120,211,67,0.1798023495145293],[120,211,68,0.17427599835592122],[120,211,69,0.16856965420903594],[120,211,70,0.16265828380009748],[120,211,71,0.1565251956783512],[120,211,72,0.150161474341013],[120,211,73,0.1435653752163222],[120,211,74,0.13674168079282395],[120,211,75,0.12970101823478952],[120,211,76,0.12245913886950012],[120,211,77,0.11503615997182555],[120,211,78,0.10745576930628507],[120,211,79,0.09974439291398214],[120,212,64,0.19503386374018317],[120,212,65,0.1894819915142817],[120,212,66,0.18387849008950033],[120,212,67,0.17817628577282743],[120,212,68,0.1723304813293421],[120,212,69,0.16631069019193082],[120,212,70,0.1600959022979464],[120,212,71,0.15367356894700893],[120,212,72,0.14703883575452986],[120,212,73,0.14019375843859547],[120,212,74,0.13314650222192712],[120,212,75,0.1259105256490469],[120,212,76,0.11850374963063498],[120,212,77,0.11094771253249007],[120,212,78,0.10326671212700667],[120,212,79,0.0954869352182834],[120,213,64,0.19434859301108254],[120,213,65,0.1884599262486759],[120,213,66,0.1825265785176814],[120,213,67,0.17649886258625785],[120,213,68,0.1703322480063934],[120,213,69,0.16399993825615108],[120,213,70,0.15748486372842813],[120,213,71,0.15077848208870973],[120,213,72,0.14387981467474448],[120,213,73,0.13679448826134594],[120,213,74,0.12953378345397276],[120,213,75,0.1221136909591351],[120,213,76,0.11455397695703178],[120,213,77,0.10687725877247181],[120,213,78,0.09910809200597279],[120,213,79,0.09127207024581928],[120,214,64,0.19362057156597176],[120,214,65,0.18738980206963116],[120,214,66,0.18112302724411342],[120,214,67,0.17476844874121464],[120,214,68,0.16828210032855667],[120,214,69,0.16164070027096822],[120,214,70,0.15483097370955556],[120,214,71,0.14784818058046806],[120,214,72,0.14069496321417316],[120,214,73,0.1333802221057545],[120,214,74,0.1259180215830738],[120,214,75,0.11832652704985065],[120,214,76,0.11062697542340869],[120,214,77,0.10284268032268518],[120,214,78,0.09499807349330473],[120,214,79,0.08711778388122103],[120,215,64,0.1928407521835268],[120,215,65,0.1862650027731845],[120,215,66,0.1796636400156487],[120,215,67,0.17298331716970378],[120,215,68,0.16618083392868355],[120,215,69,0.15923629567326067],[120,215,70,0.15214001668912874],[120,215,71,0.14489079209847325],[120,215,72,0.13749456738795993],[120,215,73,0.12996315888974133],[120,215,74,0.12231302738010075],[120,215,75,0.11456410687659142],[120,215,76,0.10673869062289099],[120,215,77,0.09886037615203912],[120,215,78,0.09095307121579205],[120,215,79,0.08304006225891393],[120,216,64,0.191999722042569],[120,216,65,0.18507871054882427],[120,216,66,0.17814413851614516],[120,216,67,0.17114171860459235],[120,216,68,0.16402921669561124],[120,216,69,0.15678994810246635],[120,216,70,0.14941755572357568],[120,216,71,0.14191404643239489],[120,216,72,0.13428829598689365],[120,216,73,0.1265546273474718],[120,216,74,0.11873146497418796],[120,216,75,0.11084006755709015],[120,216,76,0.10290334150824407],[120,216,77,0.09494473741195697],[120,216,78,0.08698723149355442],[120,216,79,0.07905239402557895],[120,217,64,0.19108818225202348],[120,217,65,0.18382428611200757],[120,217,66,0.17656044604010895],[120,217,67,0.16924207071966044],[120,217,68,0.16182808561767612],[120,217,69,0.15430479389072],[120,217,70,0.14666885839213223],[120,217,71,0.13892512643255794],[120,217,72,0.13108498590423195],[120,217,73,0.12316481664642696],[120,217,74,0.11518453999234503],[120,217,75,0.10716626928844211],[120,217,76,0.09913306401960821],[120,217,77,0.09110779000926253],[120,217,78,0.08311208799547104],[120,217,79,0.07516545271154901],[120,218,64,0.19009754136447174],[120,218,65,0.18249576311152907],[120,218,66,0.17490908648478948],[120,218,67,0.16728326449527264],[120,218,68,0.15957856362346856],[120,218,69,0.15178401411669587],[120,218,70,0.14389895055657986],[120,218,71,0.13593065171226223],[120,218,72,0.12789256565975549],[120,218,73,0.11980265107436323],[120,218,74,0.1116818379647347],[120,218,75,0.10355261093708935],[120,218,76,0.09543771788981494],[120,218,77,0.08735900684369179],[120,218,78,0.07933639341498722],[120,218,79,0.07138696123670413],[120,219,64,0.18902062481665935],[120,219,65,0.18108845869654858],[120,219,66,0.1731877005001709],[120,219,67,0.1652650896182613],[120,219,68,0.157282398211714],[120,219,69,0.14923109201128731],[120,219,70,0.14111279976260063],[120,219,71,0.13293679691957405],[120,219,72,0.12471811896256155],[120,219,73,0.11647581067230217],[120,219,74,0.10823131491229122],[120,219,75,0.1000070042632639],[120,219,76,0.09182485863629952],[120,219,77,0.08370529176756429],[120,219,78,0.07566612927172077],[120,219,79,0.06772174070194045],[120,220,64,0.18785250228218162],[120,220,65,0.1795997021753266],[120,220,66,0.17139568068915456],[120,220,67,0.1631887807834545],[120,220,68,0.15494242372738617],[120,220,69,0.1466501975750917],[120,220,70,0.13831563015735124],[120,220,71,0.12994954647807513],[120,220,72,0.12156809024567033],[120,220,73,0.11319089978725883],[120,220,74,0.10483944213639902],[120,220,75,0.09653550884928587],[120,220,76,0.08829987686059652],[120,220,77,0.08015113744039726],[120,220,78,0.07210469606195635],[120,220,79,0.06417194573645843],[120,221,64,0.18659143495062863],[120,221,65,0.17802968373294073],[120,221,66,0.16953492779174195],[120,221,67,0.16105768681239366],[120,221,68,0.1525631491962046],[120,221,69,0.14404670132983766],[120,221,70,0.13551337086713328],[120,221,71,0.1269750877722978],[120,221,72,0.11844863418838006],[120,221,73,0.10995376560744712],[120,221,74,0.10151150732493673],[120,221,75,0.09314262990052419],[120,221,76,0.08486630707983052],[120,221,77,0.07669895935778204],[120,221,78,0.06865328608980265],[120,221,79,0.06073748878099651],[120,222,64,0.18523994476232752],[120,222,65,0.17638242519703143],[120,222,66,0.16761072981577324],[120,222,67,0.15887806454077036],[120,222,68,0.15015147367312065],[120,222,69,0.14142781917688035],[120,222,70,0.13271323983752256],[120,222,71,0.12402034481929934],[120,222,72,0.11536611131487796],[120,222,73,0.10676996882154054],[120,222,74,0.09825207417340749],[120,222,75,0.08983178117698438],[120,222,76,0.08152630840761287],[120,222,77,0.07334960842969625],[120,222,78,0.06531144140847743],[120,222,79,0.05741665578561999],[120,223,64,0.18380600762653357],[120,223,65,0.1746668748470983],[120,223,66,0.16563276609099017],[120,223,67,0.156659999448191],[120,223,68,0.14771753109051017],[120,223,69,0.1388033903740691],[120,223,70,0.12992446518436454],[120,223,71,0.1210936545213974],[120,223,72,0.11232773181820081],[120,223,73,0.10364540861051044],[120,223,74,0.09506560279236333],[120,223,75,0.08660591539062872],[120,223,76,0.07828131948251887],[120,223,77,0.0701030645667399],[120,223,78,0.062077799385967705],[120,223,79,0.054206915885813306],[120,224,64,0.18230437263177648],[120,224,65,0.17289812825229972],[120,224,66,0.1636162382210498],[120,224,67,0.15441845501022622],[120,224,68,0.14527566660668112],[120,224,69,0.13618679066560327],[120,224,70,0.12715914613551446],[120,224,71,0.11820558763428825],[120,224,72,0.10934234980493295],[120,224,73,0.10058710423318414],[120,224,74,0.0919572332303811],[120,224,75,0.0834683244659676],[120,224,76,0.07513289010803878],[120,224,77,0.06695931380065859],[120,224,78,0.058951028478121295],[120,224,79,0.051105927689212176],[120,225,64,0.18075800921833124],[120,225,65,0.1710987770933484],[120,225,66,0.16158312988789378],[120,225,67,0.15217445274154853],[120,225,68,0.14284554645316389],[120,225,69,0.13359598260614994],[120,225,70,0.12443325565828357],[120,225,71,0.11536991660768305],[120,225,72,0.10642141018605604],[120,225,73,0.09760413550290847],[120,225,74,0.08893373448327888],[120,225,75,0.08042361210695755],[120,225,76,0.07208369211627526],[120,225,77,0.0639194115154684],[120,225,78,0.055930956842538786],[120,225,79,0.04811274485473042],[120,226,64,0.17919968422208132],[120,226,65,0.16930038787368606],[120,226,66,0.15956359742239146],[120,226,67,0.1499563848681981],[120,226,68,0.1404534032580156],[120,226,69,0.13105470510846448],[120,226,70,0.12176778686416273],[120,226,71,0.11260473246018798],[120,226,72,0.10358005045106175],[120,226,73,0.09470874447049983],[120,226,74,0.08600462138300048],[120,226,75,0.07747884113969213],[120,226,76,0.0691387119964595],[120,226,77,0.06098673439536815],[120,226,78,0.05301989645618634],[120,226,79,0.04522922367376819],[120,227,64,0.17767647597879518],[120,227,65,0.1675487082580603],[120,227,66,0.15760181073266044],[120,227,67,0.14780647796529975],[120,227,68,0.13813912558989191],[120,227,69,0.12860017436595358],[120,227,70,0.11919702811712446],[120,227,71,0.1099412316303873],[120,227,72,0.10084631054216638],[120,227,73,0.09192585370508816],[120,227,74,0.08319184240233303],[120,227,75,0.07465323041479503],[120,227,76,0.0663147785792854],[120,227,77,0.05817614710706409],[120,227,78,0.05023124856655824],[120,227,79,0.04246786407275145],[120,228,64,0.17625305552285667],[120,228,65,0.165910164469403],[120,228,66,0.1557654226051088],[120,228,67,0.145793160410724],[120,228,68,0.1359715061014104],[120,228,69,0.1263011245626078],[120,228,70,0.11678921673301328],[120,228,71,0.10744670059500785],[120,228,72,0.09828605942392424],[120,228,73,0.08931944052283217],[120,228,74,0.0805570087971719],[120,228,75,0.07200555915038771],[120,228,76,0.06366739130373744],[120,228,77,0.05553945026410148],[120,228,78,0.04761273528852596],[120,228,79,0.03987197982400639],[120,229,64,0.1749842335344663],[120,229,65,0.1644419402976869],[120,229,66,0.15411346018042987],[120,229,67,0.1439768700188413],[120,229,68,0.13401201279338762],[120,229,69,0.12421965910421218],[120,229,70,0.11460667062647593],[120,229,71,0.10518321926247676],[120,229,72,0.09596065382298258],[120,229,73,0.08694962350205619],[120,229,74,0.07815846246031234],[120,229,75,0.06959183944928402],[120,229,76,0.0612496760230316],[120,229,77,0.05312633649577441],[120,229,78,0.04521009242193242],[120,229,79,0.037482863998163425],[120,230,64,0.17390896757621582],[120,230,65,0.1631847958671652],[120,230,66,0.15268806957860515],[120,230,67,0.14240077256359152],[120,230,68,0.13230450681649739],[120,230,69,0.12240001892192941],[120,230,70,0.11269369175366706],[120,230,71,0.10319482148904612],[120,230,72,0.09391351644665429],[120,230,73,0.08485885689415626],[120,230,74,0.07603732006887204],[120,230,75,0.06745147426548494],[120,230,76,0.05909894545320491],[120,230,77,0.0509716594924304],[120,230,78,0.043055362634260845],[120,230,79,0.035329422605790015],[120,231,64,0.17305203347976197],[120,231,65,0.16216473352826188],[120,231,66,0.151516177920761],[120,231,67,0.14109243071007593],[120,231,68,0.13087693069431597],[120,231,69,0.12087029811335136],[120,231,70,0.11107831312411519],[120,231,71,0.10150927349428304],[120,231,72,0.0921719422038954],[120,231,73,0.08307375774301708],[120,231,74,0.0742193112387953],[120,231,75,0.06560909415460586],[120,231,76,0.05723851991000038],[120,231,77,0.04909722237651694],[120,231,78,0.041168633816925496],[120,231,79,0.03342984445485931],[120,232,64,0.17242561427117908],[120,232,65,0.16139458142931126],[120,232,66,0.15061107470779245],[120,232,67,0.14006539526859918],[120,232,68,0.12974292326823156],[120,232,69,0.11964409252986599],[120,232,70,0.10977398708380315],[120,232,71,0.10013980413492353],[120,232,72,0.09074886919276785],[120,232,73,0.08160691296629138],[120,232,74,0.07271661400824828],[120,232,75,0.06407641070495969],[120,232,76,0.05567958581525246],[120,232,77,0.04751362637119812],[120,232,78,0.03955986136884808],[120,232,79,0.03179337930007026],[120,233,64,0.1720308039083055],[120,233,65,0.1608754916989307],[120,233,66,0.14997390919775097],[120,233,67,0.13932071515050773],[120,233,68,0.1289033575012011],[120,233,69,0.11872207723959463],[120,233,70,0.10878121064030799],[120,233,71,0.09908678271280656],[120,233,72,0.08964461011106835],[120,233,73,0.08045866212340477],[120,233,74,0.07152968353927042],[120,233,75,0.06285408280626387],[120,233,76,0.05442308850462728],[120,233,77,0.04622217678197807],[120,233,78,0.03823077201361156],[120,233,79,0.030422222584097554],[120,234,64,0.1718590249727887],[120,234,65,0.16059835243892387],[120,234,66,0.14959510305610108],[120,234,67,0.13884836538676873],[120,234,68,0.1283478006025817],[120,234,69,0.11809351244882722],[120,234,70,0.10808908755586316],[120,234,71,0.09833934420880293],[120,234,72,0.08884854417044148],[120,234,73,0.07961885615928192],[120,234,74,0.07064907455252835],[120,234,75,0.06193359650992185],[120,234,76,0.053461660338592114],[120,234,77,0.04521684754517732],[120,234,78,0.037176850655167],[120,234,79,0.029313508521182786],[120,235,64,0.17189335934650105],[120,235,65,0.16054511261912255],[120,235,66,0.1494556774482071],[120,235,67,0.13862859246764594],[120,235,68,0.1280558958341076],[120,235,69,0.11773767736179694],[120,235,70,0.10767682682917223],[120,235,71,0.09787696172697562],[120,235,72,0.0883407694835848],[120,235,73,0.0790685922989474],[120,235,74,0.07005725789315473],[120,235,75,0.06129915911531691],[120,235,76,0.05278158499686716],[120,235,77,0.044486305474113794],[120,235,78,0.0363894116535516],[120,235,79,0.028461413150433587],[120,236,64,0.17210979079184288],[120,236,65,0.16069001885995407],[120,236,66,0.14952849364117327],[120,236,67,0.13863317616106854],[120,236,68,0.12799866525572864],[120,236,69,0.11762523135493332],[120,236,70,0.1075151770793446],[120,236,71,0.09767096582089142],[120,236,72,0.08809371577621804],[120,236,73,0.07878192514413564],[120,236,74,0.06973043149542685],[120,236,75,0.060929607980242856],[120,236,76,0.05236479869464665],[120,236,77,0.04401599518684049],[120,236,78,0.03585775575094124],[120,236,79,0.027859368831968448],[120,237,64,0.17247833104751598],[120,237,65,0.161000735467546],[120,237,66,0.14977937827028753],[120,237,67,0.1388265787873527],[120,237,68,0.1281397042461718],[120,237,69,0.1177194731997894],[120,237,70,0.1075677675127472],[120,237,71,0.09768598137987194],[120,237,72,0.08807368815039036],[120,237,73,0.07872752479903015],[120,237,74,0.0696402967245169],[120,237,75,0.06080030523329058],[120,237,76,0.052190899743668216],[120,237,77,0.04379025642623674],[120,237,78,0.03557138468545552],[120,237,79,0.027502362585239984],[120,238,64,0.17295829427093368],[120,238,65,0.1614335443983484],[120,238,66,0.15016226684054365],[120,238,67,0.13916105778911966],[120,238,68,0.1284302915995966],[120,238,69,0.11797147610045393],[120,238,70,0.10778629349400651],[120,238,71,0.09787518691335984],[120,238,72,0.0882362203680365],[120,238,73,0.07886414117290015],[120,238,74,0.06974964718671364],[120,238,75,0.060878860887232315],[120,238,76,0.052233012010940404],[120,238,77,0.04378833019035517],[120,238,78,0.03551614873560363],[120,238,79,0.027383220429458014],[120,239,64,0.17348813005586425],[120,239,65,0.16192401584198374],[120,239,66,0.15061057395882982],[120,239,67,0.13956858586330484],[120,239,68,0.1288017017911622],[120,239,69,0.1183126299523948],[120,239,70,0.10810312805852587],[120,239,71,0.09817284128329365],[120,239,72,0.08851837423173411],[120,239,73,0.0791325490920102],[120,239,74,0.07000385192112314],[120,239,75,0.06111606874129908],[120,239,76,0.05244811285081873],[120,239,77,0.043974044484167196],[120,239,78,0.03566328369678439],[120,239,79,0.02748101709892913],[120,240,64,0.17399082042547015],[120,240,65,0.16239536614867686],[120,240,66,0.1510479426325349],[120,240,67,0.1399733557556197],[120,240,68,0.12917878755068007],[120,240,69,0.11866860492888731],[120,240,70,0.1084449737844637],[120,240,71,0.0985069563186221],[120,240,72,0.08884980964522979],[120,240,73,0.07946445365146991],[120,240,74,0.07033710967627949],[120,240,75,0.06144911132126903],[120,240,76,0.052776888462793416],[120,240,77,0.04429212529249249],[120,240,78,0.03596209298192543],[120,240,79,0.02775015734422052],[120,241,64,0.17439990115774692],[120,241,65,0.16278177982217618],[120,241,66,0.1514091892835571],[120,241,67,0.1403107085799496],[120,241,68,0.1294972699091907],[120,241,69,0.11897538187340177],[120,241,70,0.10874799803941951],[120,241,71,0.09881387490104979],[120,241,72,0.08916710640801101],[120,241,73,0.07979681067355592],[120,241,74,0.07068697003068505],[120,241,75,0.061816425385482245],[120,241,76,0.053159025597532834],[120,241,77,0.044683932404053765],[120,241,78,0.03635608120111042],[120,241,79,0.028136797801193318],[120,242,64,0.17466416690318545],[120,242,65,0.16303224960666415],[120,242,66,0.15164342874130757],[120,242,67,0.14052971448669338],[120,242,68,0.12970595677153593],[120,242,69,0.11918129360941708],[120,242,70,0.1089598776681245],[120,242,71,0.09904048947737697],[120,242,72,0.08941631156769798],[120,242,73,0.08007483801129747],[120,242,74,0.0709979201459218],[120,242,75,0.06216194906768294],[120,242,76,0.053538175287493765],[120,242,77,0.045093165760200435],[120,242,78,0.03678939832047878],[120,242,79,0.028585993393872966],[120,243,64,0.1747461795517139],[120,243,65,0.1631091523726942],[120,243,66,0.15171273089967366],[120,243,67,0.14059192789823388],[120,243,68,0.1297656173395686],[120,243,69,0.11924603991945557],[120,243,70,0.10903897558714848],[120,243,71,0.09914360011641973],[120,243,72,0.08955249680379115],[120,243,73,0.08025178750590257],[120,243,74,0.07122138342003849],[120,243,75,0.06243535584237345],[120,243,76,0.053862426973369626],[120,243,77,0.04546658068108727],[120,243,78,0.03720779298544814],[120,243,79,0.02904288188833592],[120,244,64,0.17462081284122083],[120,244,65,0.16298685870064603],[120,244,66,0.15159080781863357],[120,244,67,0.1404701685975223],[120,244,68,0.12964787645962317],[120,244,69,0.11913971561783065],[120,244,70,0.10895352313861484],[120,244,71,0.09908927083749114],[120,244,72,0.08953930675047002],[120,244,73,0.08028870097179827],[120,244,74,0.07131569590473653],[120,244,75,0.06259226082657933],[120,244,76,0.05408475052867755],[120,244,77,0.04575466765883095],[120,244,78,0.03755952827142245],[120,244,79,0.029453829978500816],[120,245,64,0.17427383364621574],[120,245,65,0.16265037653336697],[120,245,66,0.15126173156352407],[120,245,67,0.1401473288611534],[120,245,68,0.12933412896165672],[120,245,69,0.11884185164677873],[120,245,70,0.108680807988951],[120,245,71,0.0988521838539472],[120,245,72,0.08934849776665131],[120,245,73,0.08015414959460587],[120,245,74,0.07124605976552287],[120,245,75,0.06259439861120192],[120,245,76,0.05416340531236858],[120,245,77,0.045912295808652276],[120,245,78,0.037796258939476704],[120,245,79,0.029767539993290626],[120,246,64,0.1737005205091539],[120,246,65,0.16209402938672096],[120,246,66,0.15071868318398296],[120,246,67,0.13961520692797513],[120,246,68,0.1288144741461588],[120,246,69,0.11834046920138036],[120,246,70,0.10820636741943286],[120,246,71,0.09841499141895696],[120,246,72,0.08895946668616908],[120,246,73,0.07982395613138733],[120,246,74,0.07098447304603181],[120,246,75,0.062409771774219545],[120,246,76,0.054062315314967226],[120,246,77,0.045899318981112595],[120,246,78,0.03787386916343301],[120,246,79,0.029936116181200526],[120,247,64,0.17290432010408593],[120,247,65,0.16132016972717464],[120,247,66,0.14996273334719845],[120,247,67,0.13887336719796087],[120,247,68,0.12808667066812723],[120,247,69,0.11763114696948349],[120,247,70,0.10752318692148999],[120,247,71,0.09776766501003507],[120,247,72,0.0883587691113447],[120,247,73,0.07928089931197288],[120,247,74,0.07050963498461772],[120,247,75,0.06201276919106149],[120,247,76,0.05375140940212829],[120,247,77,0.04568114345185546],[120,247,78,0.037753269583070403],[120,247,79,0.0299160893922205],[120,248,64,0.17189554245134833],[120,248,65,0.16033792824817605],[120,248,66,0.14900165525528655],[120,248,67,0.1379280276628194],[120,248,68,0.12715511216437803],[120,248,69,0.11671610165805761],[120,248,70,0.10663090408093728],[120,248,71,0.09690684164363837],[120,248,72,0.08753962684913544],[120,248,73,0.07851439985501282],[120,248,74,0.06980682612309111],[120,248,75,0.06138425322458231],[120,248,76,0.053206925600739446],[120,248,77,0.045229256019927465],[120,248,78,0.03740115242606976],[120,248,79,0.02966939883837788],[120,249,64,0.17069009583302858],[120,249,65,0.15916199990198146],[120,249,66,0.14784877059445803],[120,249,67,0.1367909751798485],[120,249,68,0.1260298240714304],[120,249,69,0.11560328206744745],[120,249,70,0.10553501781203754],[120,249,71,0.09583516717194432],[120,249,72,0.08650142413128023],[120,249,73,0.077520187533485],[120,249,74,0.06886776244510018],[120,249,75,0.060511614849236506],[120,249,76,0.05241167831786457],[120,249,77,0.04452171126283715],[120,249,78,0.03679070332972427],[120,249,79,0.029164329473918556],[120,250,64,0.16930826249143402],[120,250,65,0.15781146767034623],[120,250,66,0.14652182938380087],[120,250,67,0.13547850931356492],[120,250,68,0.12472548218611587],[120,250,69,0.11430547706990235],[120,250,70,0.10424610308475606],[120,250,71,0.09456063648114466],[120,250,72,0.08524919230890929],[120,250,73,0.07629994875237878],[120,250,74,0.06769042278588344],[120,250,75,0.05938879574215319],[120,250,76,0.05135528733283343],[120,250,77,0.04354357661694333],[120,250,78,0.03590226838337371],[120,250,79,0.02837640339518181],[120,251,64,0.16777351632506526],[120,251,65,0.15630866518449413],[120,251,66,0.1450419247124832],[120,251,67,0.13401041558431812],[120,251,68,0.12326045362863056],[120,251,69,0.11283943794744929],[120,251,70,0.10277903137584729],[120,251,71,0.09309593058347165],[120,251,72,0.0837930827673508],[120,251,73,0.07486095413569095],[120,251,74,0.06627884876562065],[120,251,75,0.05801627635759237],[120,251,76,0.05003436735744038],[120,251,77,0.0422873338754263],[120,251,78,0.034723974803822964],[120,251,79,0.027289223518401018],[120,252,64,0.16611138392953176],[120,252,65,0.15467807943293896],[120,252,66,0.14343244347690293],[120,252,67,0.13240896908041958],[120,252,68,0.12165586097917125],[120,252,69,0.11122501564795266],[120,252,70,0.10115219716796367],[120,252,71,0.09145775067532061],[120,252,72,0.0821478278701183],[120,252,73,0.07321566566263885],[120,252,74,0.06464291651737096],[120,252,75,0.05640102899277835],[120,252,76,0.04845267692066745],[120,252,77,0.04075323562508115],[120,252,78,0.03325230355075215],[120,252,79,0.025895267653017567],[120,253,64,0.1643483504621473],[120,253,65,0.15294529492284054],[120,253,66,0.14171805435173576],[120,253,67,0.1306979695083966],[120,253,68,0.11993467047277571],[120,253,69,0.10948431362550018],[120,253,70,0.09938675091943405],[120,253,71,0.08966614932007304],[120,253,72,0.08033218981130327],[120,253,73,0.07138132294324165],[120,253,74,0.06279807950692581],[120,253,75,0.05455643485183738],[120,253,76,0.04662122530208247],[120,253,77,0.038949615077108105],[120,253,78,0.031492612086973966],[120,253,79,0.024196630948216145],[120,254,64,0.16251081193879346],[120,254,65,0.15113598078688972],[120,254,66,0.13992373435122496],[120,254,67,0.12890180887517222],[120,254,68,0.11812080525307873],[120,254,69,0.10764085704275568],[120,254,70,0.09750583903156043],[120,254,71,0.08774385900759366],[120,254,72,0.078368397334003],[120,254,73,0.0693795082825229],[120,254,74,0.06076508177730326],[120,254,75,0.052502164122021765],[120,254,76,0.04455833621373767],[120,254,77,0.036893147687562286],[120,254,78,0.02945960539092688],[120,254,79,0.022205714552869307],[120,255,64,0.1606240756991117],[120,255,65,0.14927492245235177],[120,255,66,0.13807383545868912],[120,255,67,0.1270445731156979],[120,255,68,0.1162382848039759],[120,255,69,0.10571877922839339],[120,255,70,0.09553385145023405],[120,255,71,0.08571561844302954],[120,255,72,0.07628157035938629],[120,255,73,0.06723569025107658],[120,255,74,0.05856964099572529],[120,255,75,0.05026401809342162],[120,255,76,0.04228966691488787],[120,255,77,0.034609062911148916],[120,255,78,0.027177753236998115],[120,255,79,0.019945858194831002],[120,256,64,0.15871141089971047],[120,256,65,0.14738509961052332],[120,256,66,0.1361911929218022],[120,256,67,0.12514917909866238],[120,256,68,0.1143103917976272],[120,256,69,0.1037420264013745],[120,256,70,0.09349567765373712],[120,256,71,0.0836074970251008],[120,256,72,0.07409913266630011],[120,256,73,0.0649787455575776],[120,256,74,0.05624210073592871],[120,256,75,0.04787373238021547],[120,256,76,0.039848181437507194],[120,256,77,0.03213130438798669],[120,256,78,0.024681651673557205],[120,256,79,0.017451914254940845],[120,257,64,0.1567931558299861],[120,257,65,0.1454868164100198],[120,257,66,0.13429628030655108],[120,257,67,0.12323655131872324],[120,257,68,0.11235886995596667],[120,257,69,0.10173358366159478],[120,257,70,0.09141597357594879],[120,257,71,0.0814462197863969],[120,257,72,0.07185021480967402],[120,257,73,0.06264046153117642],[120,257,74,0.05381705463165638],[120,257,75,0.04536874441278859],[120,257,76,0.03727408182176794],[120,257,77,0.02950264337334457],[120,257,78,0.02201633457966012],[120,257,79,0.01477077042199658],[120,258,64,0.15488627294240148],[120,258,65,0.14359731071207496],[120,258,66,0.1324068759801593],[120,258,67,0.12132534089046822],[120,258,68,0.11040368610495566],[120,258,69,0.09971526905574277],[120,258,70,0.08931897598159298],[120,258,71,0.07925899048725843],[120,258,72,0.0695654750960214],[120,258,73,0.06025534542084248],[120,258,74,0.05133313613618132],[120,258,75,0.042791957798510666],[120,258,76,0.034614543436790046],[120,258,77,0.02677438371664708],[120,258,78,0.019236949378032706],[120,258,79,0.011960999553742482],[120,259,64,0.1530119710173291],[120,259,65,0.14173914844369623],[120,259,66,0.13054725813813123],[120,259,67,0.11944191231978016],[120,259,68,0.10847363491677277],[120,259,69,0.09771857202423136],[120,259,70,0.08723903749631427],[120,259,71,0.07708308650925491],[120,259,72,0.06728506487994408],[120,259,73,0.057866258601810244],[120,259,74,0.04883564292974015],[120,259,75,0.0401907301974236],[120,259,76,0.031918515409025766],[120,259,77,0.023996518514547024],[120,259,78,0.01639392215892157],[120,259,79,0.00907280358707668],[120,260,64,0.15119489302341546],[120,260,65,0.13993903349868642],[120,260,66,0.1287465785758726],[120,260,67,0.11761825346582662],[120,260,68,0.10660376681649826],[120,260,69,0.0957815784324443],[120,260,70,0.08521703026580779],[120,260,71,0.07496172909529931],[120,260,72,0.06505396283813898],[120,260,73,0.05551922389822583],[120,260,74,0.04637083903101881],[120,260,75,0.037610705044058536],[120,260,76,0.02923012949696752],[120,260,77,0.0212107754182102],[120,260,78,0.013525708922270965],[120,260,79,0.0061405484885151025],[120,261,64,0.14945417339175573],[120,261,65,0.13821785933055816],[120,261,66,0.1270278383701874],[120,261,67,0.11587985357367077],[120,261,68,0.10482231878338347],[120,261,69,0.0939353208775294],[120,261,70,0.08328664312756485],[120,261,71,0.07293096350922],[120,261,72,0.06291013696796659],[120,261,73,0.05325359059102829],[120,261,74,0.04397883131511202],[120,261,75,0.03509206562573467],[120,261,76,0.026588930536664477],[120,261,77,0.01845533497876122],[120,261,78,0.010668410580803953],[120,261,79,0.0031975706890841633],[120,262,64,0.14780311761093914],[120,262,65,0.1365903715434582],[120,262,66,0.1254075257371333],[120,262,67,0.11424530302092406],[120,262,68,0.10315026542097255],[120,262,69,0.09220327821329569],[120,262,70,0.08147383290620103],[120,262,71,0.07101907012591036],[120,262,72,0.060883926900413395],[120,262,73,0.051101401642160975],[120,262,74,0.0416929366079575],[120,262,75,0.03266891743099356],[120,262,76,0.024029289141967183],[120,262,77,0.01576428792586098],[120,262,78,0.007855287702622726],[120,262,79,2.75760472137768E-4],[120,263,64,0.14624958189788637],[120,263,65,0.13506557266856833],[120,263,66,0.1238960381733593],[120,263,67,0.1127267175019868],[120,263,68,0.10160172463333501],[120,263,69,0.09060173956764919],[120,263,70,0.07979712228332381],[120,263,71,0.06924677142939004],[120,263,72,0.05899813604310139],[120,263,73,0.04908734859242104],[120,263,74,0.0395394792716703],[120,263,75,0.030368911286894874],[120,263,76,0.021579836680662642],[120,263,77,0.013166872066166077],[120,263,78,0.00511579347218974],[120,263,79,-0.002595610657886863],[120,264,64,0.14479665399223055],[120,264,65,0.13364742666222648],[120,264,66,0.12249840039391005],[120,264,67,0.11133045184059447],[120,264,68,0.10018464456031707],[120,264,69,0.08914043891053075],[120,264,70,0.0782681551277069],[120,264,71,0.06762768104846781],[120,264,72,0.05726834813582196],[120,264,73,0.047228931244814254],[120,264,74,0.03753777220656181],[120,264,75,0.028213027111631504],[120,264,76,0.019263036979863375],[120,264,77,0.010686821316282662],[120,264,78,0.002474693876140216],[120,264,79,-0.005391000205192961],[120,265,64,0.14344363647276534],[120,265,65,0.1323358644215399],[120,265,66,0.12121527924807579],[120,265,67,0.11005810449966581],[120,265,68,0.09890177273925088],[120,265,69,0.0878234610547452],[120,265,70,0.07689251010383218],[120,265,71,0.0661689956075194],[120,265,72,0.05570346898131992],[120,265,73,0.045536822908120035],[120,265,74,0.03570028208337922],[120,265,75,0.026215519160913626],[120,265,76,0.017094895728595117],[120,265,77,0.008341827950031338],[120,265,78,-4.872367483828386E-5],[120,265,79,-0.007215126928127396],[120,266,64,0.1421873335866769],[120,266,65,0.13112809121499347],[120,266,66,0.12004429640953478],[120,266,67,0.10890781348727457],[120,266,68,0.09775190810706728],[120,266,69,0.08665041963646798],[120,266,70,0.07567077305998367],[120,266,71,0.0648724298722196],[120,266,72,0.05430649383568504],[120,266,73,0.044015441716043116],[120,266,74,0.03403297937835939],[120,266,75,0.024384023423058076],[120,266,76,0.01508480833815279],[120,266,77,0.006143118947054025],[120,266,78,0.001774106579113574],[120,266,79,-1.4464645531089143E-5],[120,267,64,0.1410236421988732],[120,267,65,0.1300201965518353],[120,267,66,0.11898163927615901],[120,267,67,0.10787584401157853],[120,267,68,0.09673143612698226],[120,267,69,0.08561790730966023],[120,267,70,0.07459986840244295],[120,267,71,0.0637353953936617],[120,267,72,0.053075500684492266],[120,267,73,0.04266372829685493],[120,267,74,0.03253587356022258],[120,267,75,0.02271982761016227],[120,267,76,0.014043161335081517],[120,267,77,0.011761156266230454],[120,267,78,0.00957821892208513],[120,267,79,0.00749035129426659],[120,268,64,0.13994944711015508],[120,268,65,0.1290090666652784],[120,268,66,0.11802397017885842],[120,268,67,0.10695846791612322],[120,268,68,0.09583614701824647],[120,268,69,0.08472121809953626],[120,268,70,0.07367464939032874],[120,268,71,0.06275242259954081],[120,268,72,0.05200486939310172],[120,268,73,0.041476129847206986],[120,268,74,0.03120373357261856],[120,268,75,0.02541881468519438],[120,268,76,0.02276027635612127],[120,268,77,0.020180677015862767],[120,268,78,0.017687955240748104],[120,268,79,0.015283406411698806],[120,269,64,0.1389648206587625],[120,269,65,0.12809459946027596],[120,269,66,0.11717063368717502],[120,269,67,0.10615413462953988],[120,269,68,0.09506333678529827],[120,269,69,0.08395634159397834],[120,269,70,0.07288974703563138],[120,269,71,0.061916826047320635],[120,269,72,0.05108672650167032],[120,269,73,0.04071466981043083],[120,269,74,0.0377134267110607],[120,269,75,0.03472689060435232],[120,269,76,0.03178026175547145],[120,269,77,0.028892625976167537],[120,269,78,0.026076881865564366],[120,269,79,0.023339788149359254],[120,270,64,0.13807552620918354],[120,270,65,0.12728222147600116],[120,270,66,0.11642616151117675],[120,270,67,0.10546593308940494],[120,270,68,0.09441419048310452],[120,270,69,0.08332222840744613],[120,270,70,0.07224167706399981],[120,270,71,0.06122261234050591],[120,270,72,0.054000957316929055],[120,270,73,0.05080907611833125],[120,270,74,0.0475681253785526],[120,270,75,0.04431167408013505],[120,270,76,0.04106840938079079],[120,270,77,0.037861788356915164],[120,270,78,0.03470980766308764],[120,270,79,0.03162489115282262],[120,271,64,0.1336229945633421],[120,271,65,0.12425734205629466],[120,271,66,0.11507912573834991],[120,271,67,0.10488304722982797],[120,271,68,0.0938761526547997],[120,271,69,0.08280436421632287],[120,271,70,0.07171389038842468],[120,271,71,0.06782752547456361],[120,271,72,0.06454898851494849],[120,271,73,0.061147592323192466],[120,271,74,0.0576624851166785],[120,271,75,0.054129666159235874],[120,271,76,0.050581360320033145],[120,271,77,0.047045507644685625],[120,271,78,0.043545368361645694],[120,271,79,0.04009924355517402],[120,272,64,0.12789300636341266],[120,272,65,0.11846414781564264],[120,272,66,0.10923838195847829],[120,272,67,0.10027165573697674],[120,272,68,0.09157371975658077],[120,272,69,0.08495127456305575],[120,272,70,0.08194642837813229],[120,272,71,0.0786999334943724],[120,272,72,0.07525282364580746],[120,272,73,0.07164620197097016],[120,272,74,0.06792023165514623],[120,272,75,0.06411323702869691],[120,272,76,0.06026091612913814],[120,272,77,0.05639566553841577],[120,272,78,0.05254601811155338],[120,272,79,0.04873619401985227],[120,273,64,0.1221176485529002],[120,273,65,0.11262007129606219],[120,273,66,0.10334056650531953],[120,273,67,0.09433630018462721],[120,273,68,0.09169817394300968],[120,273,69,0.09148307762797184],[120,273,70,0.0912862251562653],[120,273,71,0.08961784053524727],[120,273,72,0.08601378363616603],[120,273,73,0.08221387965363953],[120,273,74,0.07825907923655337],[120,273,75,0.07418981335175956],[120,273,76,0.07004504648002678],[120,273,77,0.06586143934431639],[120,273,78,0.061672621979079356],[120,273,79,0.057508577755197215],[120,274,64,0.11639599052695686],[120,274,65,0.10682486256278768],[120,274,66,0.09844393072987354],[120,274,67,0.09797794817089842],[120,274,68,0.09759609499715545],[120,274,69,0.09728653407386886],[120,274,70,0.09702954053284876],[120,274,71,0.0967995476281274],[120,274,72,0.09656663274226927],[120,274,73,0.09276398127665993],[120,274,74,0.0885996150734568],[120,274,75,0.0842881268605229],[120,274,76,0.07987142304267363],[120,274,77,0.07539009521638286],[120,274,78,0.07088253588562354],[120,274,79,0.06638416281512244],[120,275,64,0.11081564131911247],[120,275,65,0.1054677477798929],[120,275,66,0.10477312959998497],[120,275,67,0.10415685839334105],[120,275,68,0.10364173217084724],[120,275,69,0.10322403686914705],[120,275,70,0.10289036321977373],[120,275,71,0.10261966869645807],[120,275,72,0.10238489182324155],[120,275,73,0.10215446745330184],[120,275,74,0.09886575197337563],[120,275,75,0.09433872861957959],[120,275,76,0.08967798511267405],[120,275,77,0.08492759414546724],[120,275,78,0.0801302415527641],[120,275,79,0.07532630250241462],[120,276,64,0.1130788055060964],[120,276,65,0.1121829839135644],[120,276,66,0.11132162779647162],[120,276,67,0.10938254966361094],[120,276,68,0.10784494367827108],[120,276,69,0.10693836948563673],[120,276,70,0.10661073562898793],[120,276,71,0.10679556018950381],[120,276,72,0.10741076730336818],[120,276,73,0.10810835628343564],[120,276,74,0.10789562068396255],[120,276,75,0.104274614745013],[120,276,76,0.09940361618849639],[120,276,77,0.09441930814453152],[120,276,78,0.08936809065207969],[120,276,79,0.08429469576388109],[120,277,64,0.11554918151395865],[120,277,65,0.11198098287343394],[120,277,66,0.10913545800864694],[120,277,67,0.10700709819545179],[120,277,68,0.10557448417432092],[120,277,69,0.10479924257153961],[120,277,70,0.10462522190064893],[120,277,71,0.10498069077961375],[120,277,72,0.1057770278683744],[120,277,73,0.1069061373152046],[120,277,74,0.10825870214733185],[120,277,75,0.10974375790535335],[120,277,76,0.10898893135596815],[120,277,77,0.10381084637356333],[120,277,78,0.09854715779701972],[120,277,79,0.0932462551171731],[120,278,64,0.11340158022845859],[120,278,65,0.10984111559380128],[120,278,66,0.10703416228031504],[120,278,67,0.10497434281221124],[120,278,68,0.10363847607073201],[120,278,69,0.10298543885014139],[120,278,70,0.1029552449758937],[120,278,71,0.10347116772440379],[120,278,72,0.1044383220444628],[120,278,73,0.10574153592194507],[120,278,74,0.10726860718000353],[120,278,75,0.10892808481953004],[120,278,76,0.11064575462144888],[120,278,77,0.11236289950252565],[120,278,78,0.10761820195912362],[120,278,79,0.10213608160211529],[120,279,64,0.1116219873570411],[120,279,65,0.10806489808470088],[120,279,66,0.10529060283969466],[120,279,67,0.10329199562836078],[120,279,68,0.10204430904529432],[120,279,69,0.10150388094963081],[120,279,70,0.10160713640938346],[120,279,71,0.10227263365264294],[120,279,72,0.10339953776226452],[120,279,73,0.10486592023179897],[120,279,74,0.10655679402275409],[120,279,75,0.10838020319726727],[120,279,76,0.11026114878304072],[120,279,77,0.11213984425693241],[120,279,78,0.11397022288939407],[120,279,79,0.11091854621229322],[120,280,64,0.11021586476441647],[120,280,65,0.10665804014125496],[120,280,66,0.10391057310820473],[120,280,67,0.10196577386477446],[120,280,68,0.10079747305405562],[120,280,69,0.10035969388802801],[120,280,70,0.1005855369741736],[120,280,71,0.1013891495097905],[120,280,72,0.10266408998280258],[120,280,73,0.10428202646713203],[120,280,74,0.10612530699939104],[120,280,75,0.10810146310411956],[120,280,76,0.11013470895024813],[120,280,77,0.11216418712148707],[120,280,78,0.11414248488817469],[120,280,79,0.1160343159568702],[120,281,64,0.10918633358096097],[120,281,65,0.10562396469651253],[120,281,66,0.10289764642543459],[120,281,67,0.1009992529475523],[120,281,68,0.09990140436526723],[120,281,69,0.09955604495536785],[120,281,70,0.09989323128887095],[120,281,71,0.10082302477533045],[120,281,72,0.10223374725917239],[120,281,73,0.10399104710399193],[120,281,74,0.10597474595592016],[120,281,75,0.10809186599209514],[120,281,76,0.11026584332696321],[120,281,77,0.11243475916400514],[120,281,78,0.11454985840199494],[120,281,79,0.11657422703580156],[120,282,64,0.10853423475638546],[120,282,65,0.1049638593775854],[120,282,66,0.10225321932701326],[120,282,67,0.10039390229524325],[120,282,68,0.09935751469017073],[120,282,69,0.09909416704337382],[120,282,70,0.0995311661929027],[120,282,71,0.10057483168045056],[120,282,72,0.10210864249894835],[120,282,73,0.10399263875483106],[120,282,74,0.10610427176521775],[120,282,75,0.10835006828563426],[120,282,76,0.11065270603783817],[120,282,77,0.11294922531740015],[120,282,78,0.11518954326340564],[120,282,79,0.11733512004224245],[120,283,64,0.1082586434493345],[120,283,65,0.10467718262282316],[120,283,66,0.1019770099972882],[120,283,67,0.10014957679464498],[120,283,68,0.09916567642935387],[120,283,69,0.09897383844621],[120,283,70,0.09949892589319675],[120,283,71,0.1006438764389434],[120,283,72,0.10228774090261233],[120,283,73,0.10428538729148329],[120,283,74,0.10651206900789667],[120,283,75,0.10887384191784344],[120,283,76,0.11129265573246089],[120,283,77,0.11370454116809314],[120,283,78,0.11605811318554621],[120,283,79,0.11831321908358972],[120,284,64,0.10835640104174638],[120,284,65,0.10476118755972069],[120,284,66,0.10206657471363345],[120,284,67,0.1002640265633753],[120,284,68,0.09932372653409327],[120,284,69,0.09919288160588324],[120,284,70,0.09979422635750163],[120,284,71,0.10102769002471829],[120,284,72,0.10276832782097645],[120,284,73,0.10486629340515863],[120,284,74,0.10719482981238387],[120,284,75,0.10965955700249669],[120,284,76,0.11218173760530892],[120,284,77,0.11469643479175318],[120,284,78,0.11715099781875193],[120,284,79,0.11950368520860927],[120,285,64,0.10882193187905898],[120,285,65,0.10521073126730152],[120,285,66,0.1025171102458719],[120,285,67,0.10073269315673483],[120,285,68,0.09982725722788988],[120,285,69,0.09974694907045056],[120,285,70,0.10041269722097534],[120,285,71,0.10172180670961439],[120,285,72,0.10354578455453173],[120,285,73,0.10573054621336586],[120,285,74,0.10814752574852726],[120,285,75,0.1107019524417352],[120,285,76,0.1133144530859847],[120,285,77,0.11591917582605332],[120,285,78,0.11846225142564148],[120,285,79,0.12090038481030127],[120,286,64,0.1096472898166665],[120,286,65,0.10601831447943832],[120,286,66,0.10332148725168122],[120,286,67,0.10154873725080393],[120,286,68,0.10066963861610018],[120,286,69,0.10062954169187238],[120,286,70,0.10134789623297846],[120,286,71,0.10271977539148297],[120,286,72,0.10461359713562268],[120,286,73,0.10687152997832644],[120,286,74,0.10936341288028933],[120,286,75,0.11199413963769828],[120,286,76,0.11468376245644368],[120,286,77,0.11736557715533869],[120,286,78,0.11998455370114974],[120,286,79,0.12249588954367563],[120,287,64,0.11082223808363922],[120,287,65,0.10717415515916795],[120,287,66,0.10447031804541901],[120,287,67,0.1027031011491587],[120,287,68,0.10184207651746618],[120,287,69,0.10183206239375853],[120,287,70,0.10259135957455368],[120,287,71,0.10401320705117956],[120,287,72,0.10596340146148808],[120,287,73,0.10828086736857662],[120,287,74,0.11083407351951069],[120,287,75,0.11352764301873758],[120,287,76,0.11628112434406057],[120,287,77,0.11902703347430288],[120,287,78,0.12170924741284828],[120,287,79,0.12428151294139814],[120,288,64,0.11233436243759048],[120,288,65,0.10866629591787907],[120,288,66,0.10595205871423563],[120,288,67,0.10418460608707014],[120,288,68,0.10333370549140641],[120,288,69,0.10334390548287531],[120,288,70,0.10413268802045866],[120,288,71,0.1055918583123358],[120,288,72,0.10758506475204282],[120,288,73,0.10994849923764277],[120,288,74,0.11254949465464692],[120,288,75,0.11529247735414616],[120,288,76,0.11809657206449914],[120,288,77,0.1208935967046772],[120,288,78,0.12362641283561829],[120,288,79,0.1262473837014395],[120,289,64,0.11416921761084525],[120,289,65,0.11048074527951995],[120,289,66,0.10775314558162785],[120,289,67,0.10598008433334088],[120,289,68,0.10513171706122248],[120,289,69,0.1051525815045603],[120,289,70,0.10595966894590131],[120,289,71,0.10744375110406018],[120,289,72,0.1094668033325491],[120,289,73,0.1118628009199365],[120,289,74,0.11449818305462173],[120,289,75,0.11727726185754106],[120,289,76,0.12011882681452143],[120,289,77,0.12295408826506926],[120,289,78,0.1257249789808051],[120,289,79,0.12838255564685716],[120,290,64,0.11631050704779522],[120,290,65,0.11260165278971895],[120,290,66,0.10985816601831894],[120,290,67,0.10807454608966383],[120,290,68,0.10722152313310723],[120,290,69,0.1072438776419371],[120,290,70,0.10805843417786809],[120,290,71,0.10955532842645599],[120,290,72,0.11159533674106692],[120,290,73,0.11401073504376019],[120,290,74,0.1166673170476919],[120,290,75,0.11946937107879696],[120,290,76,0.12233544771463639],[120,290,77,0.125196248193853],[120,290,78,0.12799287161976092],[120,290,79,0.13067515435761506],[120,291,64,0.11874029593342733],[120,291,65,0.1150115179697978],[120,291,66,0.11225006360045225],[120,291,67,0.11045138118749032],[120,291,68,0.10958695461093793],[120,291,69,0.10960205365891112],[120,291,70,0.11041365369102618],[120,291,71,0.11191164621894029],[120,291,72,0.11395607816066439],[120,291,73,0.11637804086140319],[120,291,74,0.1190429349752985],[120,291,75,0.12185512258450465],[120,291,76,0.124733018701559],[120,291,77,0.12760692112507763],[120,291,78,0.1304171981017422],[120,291,79,0.13311256047440923],[120,292,64,0.12143925751314114],[120,292,65,0.11769143311579933],[120,292,66,0.1149103776152135],[120,292,67,0.11309259558252349],[120,292,68,0.11221049520697657],[120,292,69,0.11221007338706762],[120,292,70,0.1130087651483212],[120,292,71,0.11449660133148382],[120,292,72,0.1165333611765117],[120,292,73,0.11894946009645363],[120,292,74,0.12161016032103444],[120,292,75,0.12442000142708465],[120,292,76,0.1272973722706131],[120,292,77,0.13017227911753174],[120,292,78,0.13298446896629715],[120,292,79,0.1356816296746335],[120,293,64,0.12438695270375053],[120,293,65,0.12062135994241838],[120,293,66,0.11781951691377707],[120,293,67,0.11597908264673046],[120,293,68,0.11507355044836404],[120,293,69,0.11504987175636044],[120,293,70,0.11582623928616098],[120,293,71,0.11729319559866258],[120,293,72,0.11931070285774648],[120,293,73,0.12170899930821244],[120,293,74,0.12435346351461063],[120,293,75,0.12714892140243894],[120,293,76,0.13001385006795874],[120,293,77,0.13287808133684248],[120,293,78,0.13568085635002397],[120,293,79,0.13836894932036686],[120,294,64,0.12756214299565785],[120,294,65,0.12378044007183092],[120,294,66,0.12095706811156448],[120,294,67,0.11909092925786369],[120,294,68,0.11815675187940311],[120,294,69,0.1181026573695852],[120,294,70,0.11884788114417394],[120,294,71,0.1202838360165095],[120,294,72,0.12227110316410078],[120,294,73,0.12464022877319897],[120,294,74,0.1272569604108142],[120,294,75,0.13002652309613152],[120,294,76,0.13286760033263575],[120,294,77,0.1357099705905997],[120,294,78,0.13849248918769014],[120,294,79,0.14116113177837164],[120,295,64,0.1309431366463406],[120,295,65,0.12714733936755632],[120,295,66,0.12430213813595564],[120,295,67,0.12240775668663115],[120,295,68,0.12144029645976828],[120,295,69,0.12134925062077684],[120,295,70,0.12205516713968781],[120,295,71,0.12345067102231302],[120,295,72,0.1253973806774356],[120,295,73,0.12772661788389694],[120,295,74,0.13030474744360415],[120,295,75,0.133037508718248],[120,295,76,0.1358439121885732],[120,295,77,0.1386538067166586],[120,295,78,0.14140578520786495],[120,295,79,0.14404514441225635],[120,296,64,0.13450816816494535],[120,296,65,0.13070062611314878],[120,296,66,0.12783373112124574],[120,296,67,0.1259090962813068],[120,296,68,0.12490432115843475],[120,296,69,0.12477045735731906],[120,296,70,0.12542961798671282],[120,296,71,0.1267759628771452],[120,296,72,0.1286725446579653],[120,296,73,0.13095190706452015],[120,296,74,0.133481273455126],[120,296,75,0.1361670137267098],[120,296,76,0.13892858678634099],[120,296,77,0.1416960368243927],[120,296,78,0.14440781972283795],[120,296,79,0.14700867624657432],[120,297,64,0.13823581108820782],[120,297,65,0.13441918303594005],[120,297,66,0.13153115965107082],[120,297,67,0.1295747999500078],[120,297,68,0.12852931274355112],[120,297,69,0.12834747808599814],[120,297,70,0.128953207459662],[120,297,71,0.13024249615135325],[120,297,72,0.13208020342540777],[120,297,73,0.13430051620403557],[120,297,74,0.13677174819988164],[120,297,75,0.13940101523928547],[120,297,76,0.14210834529488547],[120,297,77,0.14482410238914278],[120,297,78,0.1474867312130697],[120,297,79,0.15004054130310546],[120,298,64,0.14210542404749177],[120,298,65,0.13828265317562033],[120,298,66,0.13537449034808907],[120,298,67,0.1333854854404209],[120,298,68,0.1322965527680406],[120,298,69,0.13206235272277747],[120,298,70,0.1326088070015868],[120,298,71,0.13383402231279132],[120,298,72,0.1356050090648333],[120,298,73,0.13775798960621627],[120,298,74,0.14016258752382835],[120,298,75,0.14272677723406701],[120,298,76,0.14537127374301737],[120,298,77,0.1480268831996274],[120,298,78,0.15063216370593835],[120,298,79,0.15313111860908402],[120,299,64,0.1460976301270886],[120,299,65,0.14227191959780364],[120,299,66,0.13934502381106462],[120,299,67,0.13732301641712943],[120,299,68,0.13618859775108],[120,299,69,0.13589844088644826],[120,299,70,0.13638066617708128],[120,299,71,0.1375357404179477],[120,299,72,0.13923313845737229],[120,299,73,0.14131147745688383],[120,299,74,0.14364189521856466],[120,299,75,0.14613333253857408],[120,299,76,0.1487073047108145],[120,299,77,0.15129517815847898],[120,299,78,0.15383574594894883],[120,299,79,0.15627282887753963],[120,300,64,0.15019482951377078],[120,300,65,0.14636961895257036],[120,300,66,0.14342580889934375],[120,300,67,0.14137101733652838],[120,300,68,0.14018979455544683],[120,300,69,0.13984093773614314],[120,300,70,0.140254928969843],[120,300,71,0.14133481390595415],[120,300,72,0.14295281063576443],[120,300,73,0.14495025380832405],[120,300,74,0.1471999815505892],[120,300,75,0.14961200160746868],[120,300,76,0.15210873587092286],[120,300,77,0.15462222293588893],[120,300,78,0.1570916073773849],[120,300,79,0.1594606478597319],[120,301,64,0.15438174543747685],[120,301,65,0.15056068887786256],[120,301,66,0.1476021913646035],[120,301,67,0.1455154231192061],[120,301,68,0.14428683096060918],[120,301,69,0.14387742535258993],[120,301,70,0.14422018592476699],[120,301,71,0.1452209234953531],[120,301,72,0.14675484046462678],[120,301,73,0.14866627108075162],[120,301,74,0.15082991846550617],[120,301,75,0.15315694808875538],[120,301,76,0.1555707853796288],[120,301,77,0.15800424447623307],[120,301,78,0.16039693087627863],[120,301,79,0.1626926563695524],[120,302,64,0.15864600340327098],[120,302,65,0.15483294924787608],[120,302,66,0.15186239683001412],[120,302,67,0.14974506361993806],[120,302,68,0.14846932143170713],[120,302,69,0.14799845966325129],[120,302,70,0.1482680621347207],[120,302,71,0.14918685618377334],[120,302,72,0.15063322864559187],[120,302,73,0.15245475108097706],[120,302,74,0.15452813146733196],[120,302,75,0.15676577117862178],[120,302,76,0.15909218411786089],[120,302,77,0.16144105235783865],[120,302,78,0.16375254233685566],[120,302,79,0.16597062698005394],[120,303,64,0.16297874371453727],[120,303,65,0.15917771726641117],[120,303,66,0.15619814811677585],[120,303,67,0.1540522828952489],[120,303,68,0.15273042808438073],[120,303,69,0.1521981929113092],[120,303,70,0.15239384107195422],[120,303,71,0.15322913035046495],[120,303,72,0.15458578804726464],[120,303,73,0.15631481253822296],[120,303,74,0.1582950281728488],[120,303,75,0.16044013476486482],[120,303,76,0.16267580478206223],[120,303,77,0.1649366670058308],[120,303,78,0.16716353700739603],[120,303,79,0.16930064739204437],[120,304,64,0.16737526728731172],[120,304,65,0.16359045640508268],[120,304,66,0.1606053169179339],[120,304,67,0.15843359326845116],[120,304,68,0.1570675168453519],[120,304,69,0.1564750316683976],[120,304,70,0.15659712426405464],[120,304,71,0.157348656961606],[120,304,72,0.15861480635991362],[120,304,73,0.16025013515700548],[120,304,74,0.1621356635409234],[120,304,75,0.16418643335882027],[120,304,76,0.16632932782485563],[120,304,77,0.1684999847579825],[120,304,78,0.1706399426384347],[120,304,79,0.17269378047467204],[120,305,64,0.1718357147558925],[120,305,65,0.16807145918652963],[120,305,66,0.16508460981961107],[120,305,67,0.16289036419229444],[120,305,68,0.16148284880889616],[120,305,69,0.160832330391222],[120,305,70,0.1608825268145797],[120,305,71,0.16155143687851237],[120,305,72,0.162727745075025],[120,305,73,0.16426966018721004],[120,305,74,0.16606044177691748],[120,305,75,0.1680164948159234],[120,305,76,0.17006594424562488],[120,305,77,0.17214547978369182],[120,305,78,0.17419741942242364],[120,305,79,0.17616676097812237],[120,306,64,0.176365778869699],[120,306,65,0.1726265638125986],[120,306,66,0.1696422886696285],[120,306,67,0.16742954590920156],[120,306,68,0.1659843067891792],[120,306,69,0.16527912052203914],[120,306,70,0.16526040876834483],[120,306,71,0.16584929426872833],[120,306,72,0.16693797478969807],[120,306,73,0.16838832751133956],[120,306,74,0.17008585491216893],[120,306,75,0.17194831984487854],[120,306,76,0.17390509523099368],[120,306,77,0.1758939428560658],[120,306,78,0.17785799672783625],[120,306,79,0.17974272891840792],[120,307,64,0.18097617804903987],[120,307,65,0.17726664378695756],[120,307,66,0.17428966840106092],[120,307,67,0.17206316783731346],[120,307,68,0.1705848870880768],[120,307,69,0.16982958916763785],[120,307,70,0.1697463352160345],[120,307,71,0.17025931393396332],[120,307,72,0.17126418716065],[120,307,73,0.17262646154280398],[120,307,74,0.1742338437660043],[120,307,75,0.17600542057128143],[120,307,76,0.17787179197526454],[120,307,77,0.17977178692606952],[120,307,78,0.18164936951323676],[120,307,79,0.1834505222767303],[120,308,64,0.1856571687798242],[120,308,65,0.18198233015136311],[120,308,66,0.17901790318438046],[120,308,67,0.17678304648414395],[120,308,68,0.17527719519152574],[120,308,69,0.17447724163257652],[120,308,70,0.1743348030758905],[120,308,71,0.17477705391415904],[120,308,72,0.1757030453662523],[120,308,73,0.17698184864519842],[120,308,74,0.17850333067333338],[120,308,75,0.18018787052862828],[120,308,76,0.18196727190592435],[120,308,77,0.183781419493607],[120,308,78,0.18557511211803168],[120,308,79,0.18729486775400947],[120,309,64,0.1903760310948946],[120,309,65,0.18674141458798837],[120,309,66,0.1837953121464937],[120,309,67,0.1815580388110865],[120,309,68,0.18003063165317457],[120,309,69,0.1791920243256295],[120,309,70,0.1789963049135353],[120,309,71,0.179373553225739],[120,309,72,0.18022613757954878],[120,309,73,0.1814266366367668],[120,309,74,0.1828670637433834],[120,309,75,0.1844690914659666],[120,309,76,0.1861657256279321],[120,309,77,0.1878979076743539],[120,309,78,0.1896112803305916],[120,309,79,0.19125292000260208],[120,310,64,0.19509944307777718],[120,310,65,0.1915109875969486],[120,310,66,0.18858941656965453],[120,310,67,0.1863561104302316],[120,310,68,0.18481361577588884],[120,310,69,0.18394281637373333],[120,310,70,0.18370018390361492],[120,310,71,0.184018623102563],[120,310,72,0.18480374901413643],[120,310,73,0.18593159751599025],[120,310,74,0.18729634321977687],[120,310,75,0.1888209848255682],[120,310,76,0.19043975002257638],[120,310,77,0.19209465039502377],[120,310,78,0.19373218655072305],[120,310,79,0.19530001493653543],[120,311,64,0.19979469689440477],[120,311,65,0.19625865215039143],[120,311,66,0.19336815539206442],[120,311,67,0.19114555708013464],[120,311,68,0.18959481695997654],[120,311,69,0.18869867435706056],[120,311,70,0.18841589491540847],[120,311,71,0.18868212666034084],[120,311,72,0.1894061614579921],[120,311,73,0.19046744698807894],[120,311,74,0.19176235974355282],[120,311,75,0.19321528623650647],[120,311,76,0.19476171545777612],[120,311,77,0.1963447540218292],[120,311,78,0.1979117789567426],[120,311,79,0.1994110471613375],[120,312,64,0.20443002143398345],[120,312,65,0.20095284649416068],[120,312,66,0.1981002068922369],[120,312,67,0.1958953239732952],[120,312,68,0.19434347058503143],[120,312,69,0.1934291437214829],[120,312,70,0.1931133106130956],[120,312,71,0.1933342790404256],[120,312,72,0.1940039470542401],[120,312,73,0.1950051317391082],[120,312,74,0.19623647512498668],[120,312,75,0.19762383984816714],[120,312,76,0.1991040337863163],[120,312,77,0.20062129414729676],[120,312,78,0.20212389720872076],[120,312,79,0.20356071970978323],[120,313,64,0.20897549604904983],[120,313,65,0.20556364359199575],[120,313,66,0.20275567349995227],[120,313,67,0.20057557598561268],[120,313,68,0.19902983396577043],[120,313,69,0.19810460129263183],[120,313,70,0.1977629517524273],[120,313,71,0.19794576717530293],[120,313,72,0.19856797971336845],[120,313,73,0.19951573518050097],[120,313,74,0.2006900254964582],[120,313,75,0.20201830226302323],[120,313,76,0.20343876669215574],[120,313,77,0.20489683221410399],[120,313,78,0.20634170141307637],[120,313,79,0.20772288957880886],[120,314,64,0.21340286861122879],[120,314,65,0.21006258896796415],[120,314,66,0.20730593812945108],[120,314,67,0.20515757118393663],[120,314,68,0.20362507580843783],[120,314,69,0.20269615945993658],[120,314,70,0.20233590499074405],[120,314,71,0.20248768025959513],[120,314,72,0.20306937745572123],[120,314,73,0.203970431075991],[120,314,74,0.20509428574268507],[120,314,75,0.20637011731707003],[120,314,76,0.20773761037663924],[120,314,77,0.2091434096545111],[120,314,78,0.21053767523950107],[120,314,79,0.21187057931139852],[120,315,64,0.21768504438606923],[120,315,65,0.21442230544941154],[120,315,66,0.21172338271090207],[120,315,67,0.20961349081487324],[120,315,68,0.2081012151090125],[120,315,69,0.207175711257159],[120,315,70,0.20680397128396014],[120,315,71,0.206931758501771],[120,315,72,0.2074798485058283],[120,315,73,0.20834092395147585],[120,315,74,0.2094210011047459],[120,315,75,0.21065113559889564],[120,315,76,0.21197259954640854],[120,315,77,0.213333332727994],[120,315,78,0.21468448781303792],[120,315,79,0.21472948501586026],[120,316,64,0.22179636100926545],[120,316,65,0.2186167792945587],[120,316,66,0.21598168419671845],[120,316,67,0.21391674393144716],[120,316,68,0.2124314331862686],[120,316,69,0.2115162486643518],[120,316,70,0.21113998943016488],[120,316,71,0.21125072102788345],[120,316,72,0.21177202285764402],[120,316,73,0.21259978383312694],[120,316,74,0.21364272473225512],[120,316,75,0.21483395451764542],[120,316,76,0.21611644973868915],[120,316,77,0.21743951686716284],[120,316,78,0.2172384832315962],[120,316,79,0.21051971282140033],[120,317,64,0.2257128926874105],[120,317,65,0.22262167180681383],[120,317,66,0.22005613236845753],[120,317,67,0.21804229019156918],[120,317,68,0.216590400320089],[120,317,69,0.21569219201475423],[120,317,70,0.21531816728719752],[120,317,71,0.21541859809983993],[120,317,72,0.21591978486756702],[120,317,73,0.21672077880032914],[120,317,74,0.2177331499204501],[120,317,75,0.21889225002234244],[120,317,76,0.22014288837335994],[120,317,77,0.2197801053318654],[120,317,78,0.21271519294531271],[120,317,79,0.20602167210872566],[120,318,64,0.22941275750201123],[120,318,65,0.226414634237561],[120,318,66,0.22392395113900362],[120,318,67,0.22196696637575672],[120,318,68,0.22055460634507795],[120,318,69,0.21967972359936808],[120,318,70,0.21931441743019384],[120,318,71,0.21941106800872354],[120,318,72,0.21989861074254885],[120,318,73,0.22067921263114426],[120,318,74,0.22166744761554805],[120,318,75,0.22280111374893016],[120,318,76,0.22219033511859412],[120,318,77,0.21487840869451802],[120,318,78,0.20786908480166194],[120,318,79,0.20123884935557043],[120,319,64,0.2328764278167671],[120,319,65,0.22997562597742233],[120,319,66,0.2275646233500328],[120,319,67,0.22566981662410227],[120,319,68,0.2243026951994697],[120,319,69,0.22345712546920915],[120,319,70,0.2231066972490949],[120,319,71,0.2232057986431522],[120,319,72,0.22368591092327775],[120,319,73,0.2244522675402835],[120,319,74,0.22542260918835946],[120,319,75,0.22429567138861997],[120,319,76,0.21684199825310374],[120,319,77,0.209614387932996],[120,319,78,0.20269758181306163],[120,319,79,0.19616626332919976],[121,-64,64,0.34497579198897227],[121,-64,65,0.35095849131497275],[121,-64,66,0.3570463430141508],[121,-64,67,0.3632221665735389],[121,-64,68,0.3694900782977617],[121,-64,69,0.37586773494431314],[121,-64,70,0.38236720636219257],[121,-64,71,0.38899437971280176],[121,-64,72,0.39574887519976826],[121,-64,73,0.4026240533616826],[121,-64,74,0.40960711601505545],[121,-64,75,0.416679302794934],[121,-64,76,0.42381618509082425],[121,-64,77,0.43098805901730114],[121,-64,78,0.43816043889292855],[121,-64,79,0.44529465253011064],[121,-63,64,0.34727048225480195],[121,-63,65,0.35335603673655086],[121,-63,66,0.359551882582713],[121,-63,67,0.36584134005085184],[121,-63,68,0.37222783906341117],[121,-63,69,0.3787274636571],[121,-63,70,0.38535064309758504],[121,-63,71,0.3921016219697935],[121,-63,72,0.3989784206733929],[121,-63,73,0.4059728835778181],[121,-63,74,0.41307081675446294],[121,-63,75,0.4202522170667135],[121,-63,76,0.42749159425266775],[121,-63,77,0.43475838748203516],[121,-63,78,0.442017477708805],[121,-63,79,0.44922979697699056],[121,-62,64,0.3497393848566982],[121,-62,65,0.3559173122023656],[121,-62,66,0.36220908543608177],[121,-62,67,0.3685988693490284],[121,-62,68,0.37508936268943277],[121,-62,69,0.38169480377534665],[121,-62,70,0.38842383789122104],[121,-62,71,0.3952790437319034],[121,-62,72,0.40225692143088093],[121,-62,73,0.40934796494174336],[121,-62,74,0.41653682055409447],[121,-62,75,0.42380253319174127],[121,-62,76,0.4311188819994695],[121,-62,77,0.4384548065763933],[121,-62,78,0.44577492505970184],[121,-62,79,0.453040145104716],[121,-61,64,0.3523672624701495],[121,-61,65,0.3586268853290698],[121,-61,66,0.36500227664686447],[121,-61,67,0.37147875187640395],[121,-61,68,0.3780582512576128],[121,-61,69,0.38475294561198525],[121,-61,70,0.39156959590337853],[121,-61,71,0.39850912628305124],[121,-61,72,0.4055666230996039],[121,-61,73,0.41273141553985215],[121,-61,74,0.4199872395769175],[121,-61,75,0.42731248677246986],[121,-61,76,0.4346805393430845],[121,-61,77,0.4420601927574389],[121,-61,78,0.44941616698244086],[121,-61,79,0.4567097073444424],[121,-60,64,0.3551354546111248],[121,-60,65,0.36146610038179317],[121,-60,66,0.3679128101344078],[121,-60,67,0.37446230497914607],[121,-60,68,0.38111575237214584],[121,-60,69,0.38788308647538855],[121,-60,70,0.3947691251029121],[121,-60,71,0.4017731797330415],[121,-60,72,0.4088890501659293],[121,-60,73,0.41610509863112877],[121,-60,74,0.42340440494503884],[121,-60,75,0.4307650041931124],[121,-60,76,0.4381602082794948],[121,-60,77,0.4455590125485431],[121,-60,78,0.4529265885393601],[121,-60,79,0.46022486378806804],[121,-59,64,0.3580227155696724],[121,-59,65,0.36441393681294576],[121,-59,66,0.37091995028000707],[121,-59,67,0.37752907230662813],[121,-59,68,0.38424168968642647],[121,-59,69,0.3910653817717429],[121,-59,70,0.3980030017421366],[121,-59,71,0.405052314459129],[121,-59,72,0.41220597319604885],[121,-59,73,0.41945157410146705],[121,-59,74,0.426771789944001],[121,-59,75,0.4341445845660197],[121,-59,76,0.44154350934639813],[121,-59,77,0.4489380828392156],[121,-59,78,0.4562942546170332],[121,-59,79,0.4635749542061169],[121,-58,64,0.3610062154025552],[121,-58,65,0.3674480305189335],[121,-58,66,0.37400191534617705],[121,-58,67,0.3806578904790089],[121,-58,68,0.38741555140768685],[121,-58,69,0.3942800505945178],[121,-58,70,0.40125228540427],[121,-58,71,0.40832855560909237],[121,-58,72,0.415500510916315],[121,-58,73,0.4227551748617411],[121,-58,74,0.4300750465833197],[121,-58,75,0.4374382818747669],[121,-58,76,0.4448189547962298],[121,-58,77,0.4521874009907402],[121,-58,78,0.45951064372181954],[121,-58,79,0.4667529035111086],[121,-57,64,0.364062703567772],[121,-57,65,0.37054585736816165],[121,-57,66,0.37713708224315273],[121,-57,67,0.38382811560742985],[121,-57,68,0.390617736353064],[121,-57,69,0.39750863541313913],[121,-57,70,0.40449978328906183],[121,-57,71,0.4115861003997073],[121,-57,72,0.41875836696971874],[121,-57,73,0.4260032081031595],[121,-57,74,0.43330315553736193],[121,-57,75,0.4406367874616134],[121,-57,76,0.4479789476678767],[121,-57,77,0.455301045177302],[121,-57,78,0.46257143535767886],[121,-57,79,0.4697558834151088],[121,-56,64,0.3671664045272242],[121,-56,65,0.3736823979639344],[121,-56,66,0.3803014118019877],[121,-56,67,0.38701680565029756],[121,-56,68,0.3938264925599487],[121,-56,69,0.40073069838622016],[121,-56,70,0.4077265095879354],[121,-56,71,0.414807551016633],[121,-56,72,0.421963852651711],[121,-56,73,0.4291817903619474],[121,-56,74,0.4364441021748583],[121,-56,75,0.4437299814304701],[121,-56,76,0.4510152480838201],[121,-56,77,0.45827259930207126],[121,-56,78,0.465471940378331],[121,-56,79,0.4725807968570105],[121,-55,64,0.37026937591477077],[121,-55,65,0.3768089243774752],[121,-55,66,0.38344559433582914],[121,-55,67,0.3901741997191292],[121,-55,68,0.39699174230597223],[121,-55,69,0.40389604234916604],[121,-55,70,0.4108823976917447],[121,-55,71,0.41794326207739213],[121,-55,72,0.4250680634078563],[121,-55,73,0.43224309499210006],[121,-55,74,0.4394514812635525],[121,-55,75,0.4466732193422567],[121,-55,76,0.45388529771155023],[121,-55,77,0.46106189316534646],[121,-55,78,0.4681746470629349],[121,-55,79,0.4751930218053039],[121,-54,64,0.37331888556923626],[121,-54,65,0.3798714501375418],[121,-54,66,0.3865145867706127],[121,-54,67,0.3932443479608659],[121,-54,68,0.4000567969340256],[121,-54,69,0.40694747947599264],[121,-54,70,0.41391006381476486],[121,-54,71,0.42093601013385157],[121,-54,72,0.42801433423770535],[121,-54,73,0.43513144350374483],[121,-54,74,0.4422710466046759],[121,-54,75,0.44941413839021754],[121,-54,76,0.4565390612148553],[121,-54,77,0.463621643889063],[121,-54,78,0.4706354193163328],[121,-54,79,0.4775519217591666],[121,-53,64,0.3762695910330324],[121,-53,65,0.3828237334747848],[121,-53,66,0.38946146300116113],[121,-53,67,0.3961798166533652],[121,-53,68,0.402973908459571],[121,-53,69,0.40983720119783057],[121,-53,70,0.41676194376106646],[121,-53,71,0.4237388208227726],[121,-53,72,0.4307566554392865],[121,-53,73,0.43780218373086816],[121,-53,74,0.44485990314772755],[121,-53,75,0.45191199573687046],[121,-53,76,0.4589383277271004],[121,-53,77,0.46591652664389677],[121,-53,78,0.4728221370539627],[121,-53,79,0.4796288559227989],[121,-52,64,0.37908377851849484],[121,-52,65,0.38562749603441604],[121,-52,66,0.39224760943776565],[121,-52,67,0.39894185818409794],[121,-52,68,0.4057044118201942],[121,-52,69,0.412526890720217],[121,-52,70,0.4194003740366332],[121,-52,71,0.42631501737073557],[121,-52,72,0.43325968788062197],[121,-52,73,0.4402216718899042],[121,-52,74,0.44718645654214534],[121,-52,75,0.45413758695917406],[121,-52,76,0.46105660026585754],[121,-52,77,0.4679230377407672],[121,-52,78,0.47471453624226456],[121,-52,79,0.48140699994461233],[121,-51,64,0.3817316560289972],[121,-51,65,0.38825269135207985],[121,-51,66,0.3948429656240294],[121,-51,67,0.4015006209942758],[121,-51,68,0.4082189015983525],[121,-51,69,0.41498786428667167],[121,-51,70,0.4217976959154254],[121,-51,71,0.4286382863721075],[121,-51,72,0.43549879015236764],[121,-51,73,0.4423672615884704],[121,-51,74,0.44923036532981164],[121,-51,75,0.45607316359139005],[121,-51,76,0.4628789815922901],[121,-51,77,0.46962935250425586],[121,-51,78,0.47630404312115987],[121,-51,79,0.48288116134533526],[121,-50,64,0.3831296533201631],[121,-50,65,0.39048889874655335],[121,-50,66,0.39722637482348416],[121,-50,67,0.40383546854604646],[121,-50,68,0.4104975164039026],[121,-50,69,0.4172013183739539],[121,-50,70,0.42393646339834506],[121,-50,71,0.4306928451635865],[121,-50,72,0.43746014481528117],[121,-50,73,0.44422738927281075],[121,-50,74,0.45098258681568226],[121,-50,75,0.4577124415296343],[121,-50,76,0.4644021481070672],[121,-50,77,0.4710352683940629],[121,-50,78,0.47759369096607424],[121,-50,79,0.4840576748980146],[121,-49,64,0.38371962691784267],[121,-49,65,0.39109664176522096],[121,-49,66,0.3985053320743486],[121,-49,67,0.40592915886207503],[121,-49,68,0.41252759981795384],[121,-49,69,0.4191566041247304],[121,-49,70,0.42580833653198846],[121,-49,71,0.4324729467759569],[121,-49,72,0.439140854840372],[121,-49,73,0.44580222948879483],[121,-49,74,0.45244654686021996],[121,-49,75,0.45906223079917025],[121,-49,76,0.46563637649676864],[121,-49,77,0.47215455891513514],[121,-49,78,0.47860072735479936],[121,-49,79,0.48495718740539223],[121,-48,64,0.384396333611967],[121,-48,65,0.3917868192992977],[121,-48,66,0.39921776578049467],[121,-48,67,0.4066733829774192],[121,-48,68,0.41414290802681375],[121,-48,69,0.42084420690125646],[121,-48,70,0.42740860835265826],[121,-48,71,0.433978914761405],[121,-48,72,0.44054641323805804],[121,-48,73,0.4471024941166432],[121,-48,74,0.4536381342476552],[121,-48,75,0.46014346531138306],[121,-48,76,0.4666074288095449],[121,-48,77,0.47301751928611374],[121,-48,78,0.47935961721200476],[121,-48,79,0.4856179128447305],[121,-47,64,0.38517332989874725],[121,-47,65,0.392570030163265],[121,-47,66,0.40001462842398255],[121,-47,67,0.40749241090121796],[121,-47,68,0.4149936871677088],[121,-47,69,0.4222598175687511],[121,-47,70,0.4287375895843537],[121,-47,71,0.43521582394376507],[121,-47,72,0.44168671631373513],[121,-47,73,0.4481428682817605],[121,-47,74,0.45457670072873446],[121,-47,75,0.46097995551471],[121,-47,76,0.46734328720751117],[121,-47,77,0.4736559464732411],[121,-47,78,0.4799055566274317],[121,-47,79,0.48607798471742014],[121,-46,64,0.38605502461735314],[121,-46,65,0.3934481997856763],[121,-46,66,0.4008950849563724],[121,-46,67,0.40838236414496726],[121,-46,68,0.4159014718965966],[121,-46,69,0.42340541825358363],[121,-46,70,0.4298009860555641],[121,-46,71,0.43619317605001656],[121,-46,72,0.4425750589965129],[121,-46,73,0.44894036145481603],[121,-46,74,0.4552828176092541],[121,-46,75,0.46159561235665925],[121,-46,76,0.46787091744254494],[121,-46,77,0.47409952231577634],[121,-46,78,0.4802705612475618],[121,-46,79,0.48637133812791467],[121,-45,64,0.38703766462593525],[121,-45,65,0.3944155398670473],[121,-45,66,0.40185112709884363],[121,-45,67,0.4093328158111591],[121,-45,68,0.4168532383665429],[121,-45,69,0.4242885235115575],[121,-45,70,0.4306092027053784],[121,-45,71,0.4369242730698822],[121,-45,72,0.4432275833276077],[121,-45,73,0.4495138359384248],[121,-45,74,0.4557778880752036],[121,-45,75,0.46201414617450776],[121,-45,76,0.46821605588009196],[121,-45,77,0.47437568907910976],[121,-45,78,0.48048342960281093],[121,-45,79,0.4865277590269001],[121,-44,64,0.38811029931939006],[121,-44,65,0.39545948790211055],[121,-44,66,0.402868480412519],[121,-44,67,0.41032765799243315],[121,-44,68,0.4178309399877063],[121,-44,69,0.42492143549572914],[121,-44,70,0.4311766601693554],[121,-44,71,0.4374256018347108],[121,-44,72,0.44366273692481867],[121,-44,73,0.4498835442532157],[121,-44,74,0.4560837675473564],[121,-44,75,0.4622587729833926],[121,-44,76,0.4684030035481569],[121,-44,77,0.4745095319335513],[121,-44,78,0.4805697135375457],[121,-44,79,0.486572941006466],[121,-43,64,0.389255726837933],[121,-43,65,0.39656162932506583],[121,-43,66,0.4039274948980747],[121,-43,67,0.4113459537324888],[121,-43,68,0.418812313755961],[121,-43,69,0.42532051089867795],[121,-43,70,0.431521121891294],[121,-43,71,0.43771622794458975],[121,-43,72,0.44390073974364197],[121,-43,73,0.45007067394117006],[121,-43,74,0.45622239078299154],[121,-43,75,0.46235192707845574],[121,-43,76,0.46845442632308987],[121,-43,77,0.47452366765833187],[121,-43,78,0.48055169522061014],[121,-43,79,0.48652854929091904],[121,-42,64,0.390451424821221],[121,-42,65,0.3976986050440355],[121,-42,66,0.40500402178295525],[121,-42,67,0.41236277608150146],[121,-42,68,0.41935133863370505],[121,-42,69,0.42550543743730584],[121,-42,70,0.4316630297027015],[121,-42,71,0.4378171971721285],[121,-42,72,0.44396305746038794],[121,-42,73,0.45009689831577104],[121,-42,74,0.4562154044624448],[121,-42,75,0.4623149788975602],[121,-42,76,0.4683911604048609],[121,-42,77,0.47443813892387515],[121,-42,78,0.4804483702810534],[121,-42,79,0.4864122916482113],[121,-41,64,0.39167046855956766],[121,-41,65,0.39884300712987114],[121,-41,66,0.406070279154465],[121,-41,67,0.4132761360276533],[121,-41,68,0.4193789476560776],[121,-41,69,0.42549851764927227],[121,-41,70,0.4316248458147697],[121,-41,71,0.4377509424776473],[121,-41,72,0.443871879813655],[121,-41,73,0.4499839317056615],[121,-41,74,0.45608380402303084],[121,-41,75,0.46216795712505293],[121,-41,76,0.4682320222789449],[121,-41,77,0.4742703135615239],[121,-41,78,0.4802754366826394],[121,-41,79,0.48623799602948625],[121,-40,64,0.3928824393808622],[121,-40,65,0.3999642654138543],[121,-40,66,0.40709570908765036],[121,-40,67,0.4131547703749533],[121,-40,68,0.4192286607299382],[121,-40,69,0.42532395777822796],[121,-40,70,0.43143039917711495],[121,-40,71,0.43754069478255575],[121,-40,72,0.44364960225652894],[121,-40,73,0.4497530877599428],[121,-40,74,0.4558475735311545],[121,-40,75,0.4619292740536127],[121,-40,76,0.46799362240812115],[121,-40,77,0.4740347882869469],[121,-40,78,0.4800452890196903],[121,-40,79,0.4860156948260312],[121,-39,64,0.3940543260895408],[121,-39,65,0.4009110344664591],[121,-39,66,0.4068612697647202],[121,-39,67,0.41287300922855125],[121,-39,68,0.4189265095390473],[121,-39,69,0.4250071595413519],[121,-39,70,0.4311042341747218],[121,-39,71,0.43720989566689145],[121,-39,72,0.44331830929435856],[121,-39,73,0.4494248394103715],[121,-39,74,0.4555253274166287],[121,-39,75,0.4616154532618596],[121,-39,76,0.4676901819469053],[121,-39,77,0.47374329640284774],[121,-39,78,0.47976701798727406],[121,-39,79,0.4857517157153694],[121,-38,64,0.39471535844314604],[121,-38,65,0.4005449958116017],[121,-38,66,0.40646663900792107],[121,-38,67,0.41245857232868366],[121,-38,68,0.41849941306922656],[121,-38,69,0.4245740125968989],[121,-38,70,0.4306709596589745],[121,-38,71,0.43678161018273365],[121,-38,72,0.4428992579112139],[121,-38,73,0.449018379117808],[121,-38,74,0.45513395293049075],[121,-38,75,0.46124085870921],[121,-38,76,0.46733335182294866],[121,-38,77,0.4734046190672324],[121,-38,78,0.47638372042506955],[121,-38,79,0.47140253734931115],[121,-37,64,0.384873832044183],[121,-37,65,0.3830423910673135],[121,-37,66,0.394322791807616],[121,-37,67,0.4079299098899593],[121,-37,68,0.4179744196886567],[121,-37,69,0.4240501855616779],[121,-37,70,0.43015459634046815],[121,-37,71,0.4362779380076144],[121,-37,72,0.4424123595222765],[121,-37,73,0.44855117806737876],[121,-37,74,0.4546882522289592],[121,-37,75,0.4596352068094961],[121,-37,76,0.4575270755933213],[121,-37,77,0.44950099149980277],[121,-37,78,0.448655846598973],[121,-37,79,0.4431067347825344],[121,-36,64,0.36641726715094447],[121,-36,65,0.36291320805034327],[121,-36,66,0.37418366744911885],[121,-36,67,0.38590909172710347],[121,-36,68,0.40263369652780945],[121,-36,69,0.4096259875605242],[121,-36,70,0.4118423585755583],[121,-36,71,0.4202568108352056],[121,-36,72,0.4291065715636147],[121,-36,73,0.4409560725539548],[121,-36,74,0.43717446119194736],[121,-36,75,0.43169013811719775],[121,-36,76,0.4311285360244552],[121,-36,77,0.4292310073291395],[121,-36,78,0.4269863385960232],[121,-36,79,0.4142108260401761],[121,-35,64,0.3534349373468935],[121,-35,65,0.3524277805104654],[121,-35,66,0.36607219086827897],[121,-35,67,0.375933660089957],[121,-35,68,0.38908164815479307],[121,-35,69,0.39195266730129613],[121,-35,70,0.3981132421140422],[121,-35,71,0.4095923745487467],[121,-35,72,0.4153536145659295],[121,-35,73,0.4246896875907351],[121,-35,74,0.4233531357046336],[121,-35,75,0.4223695390087047],[121,-35,76,0.41826412969065896],[121,-35,77,0.42093595981577797],[121,-35,78,0.41386726220284586],[121,-35,79,0.39683598684939203],[121,-34,64,0.3496399462929739],[121,-34,65,0.34952509748728927],[121,-34,66,0.36618545584115536],[121,-34,67,0.3740798576509748],[121,-34,68,0.3867863779716526],[121,-34,69,0.39362194580289006],[121,-34,70,0.4049018838819025],[121,-34,71,0.4106935387913653],[121,-34,72,0.4133346011502778],[121,-34,73,0.41904287005451807],[121,-34,74,0.4193672717677782],[121,-34,75,0.4217485046489993],[121,-34,76,0.412062156597871],[121,-34,77,0.4126465574811151],[121,-34,78,0.40204377641860106],[121,-34,79,0.3952241254976144],[121,-33,64,0.3585082565077789],[121,-33,65,0.35470363005027195],[121,-33,66,0.3713784748449152],[121,-33,67,0.376824779626907],[121,-33,68,0.39079140299589565],[121,-33,69,0.401423176428672],[121,-33,70,0.41300842566965024],[121,-33,71,0.41717150911384343],[121,-33,72,0.4214065146081283],[121,-33,73,0.4288808435360051],[121,-33,74,0.42618950812454887],[121,-33,75,0.4196089196992984],[121,-33,76,0.40755306093500543],[121,-33,77,0.40598027203919335],[121,-33,78,0.39546506463982295],[121,-33,79,0.39422629514450785],[121,-32,64,0.36817008754781605],[121,-32,65,0.3675004009061287],[121,-32,66,0.38471953881332904],[121,-32,67,0.3880191448466021],[121,-32,68,0.4012448615245941],[121,-32,69,0.41038210181132473],[121,-32,70,0.4192313362950756],[121,-32,71,0.433259581278123],[121,-32,72,0.43949679453160206],[121,-32,73,0.4409102036749571],[121,-32,74,0.43894052381313803],[121,-32,75,0.42721089120781053],[121,-32,76,0.41435012668605403],[121,-32,77,0.40740912926158435],[121,-32,78,0.40138084475866775],[121,-32,79,0.39711198965617145],[121,-31,64,0.3750684047681256],[121,-31,65,0.37877692884502406],[121,-31,66,0.3987115647607453],[121,-31,67,0.40806337853949376],[121,-31,68,0.4141063414984263],[121,-31,69,0.42023155533717665],[121,-31,70,0.42641588688206294],[121,-31,71,0.43263822292314835],[121,-31,72,0.4388792699731833],[121,-31,73,0.44512135424692156],[121,-31,74,0.4484114907628787],[121,-31,75,0.43844419719325084],[121,-31,76,0.42588506744600485],[121,-31,77,0.41558900870338766],[121,-31,78,0.4147358657384648],[121,-31,79,0.40392205148854543],[121,-30,64,0.3875930912052148],[121,-30,65,0.3894314021484284],[121,-30,66,0.40155167822127963],[121,-30,67,0.4074698778448986],[121,-30,68,0.41350255019411164],[121,-30,69,0.41962166007116664],[121,-30,70,0.42580153019457406],[121,-30,71,0.43201855555570184],[121,-30,72,0.43825109759249],[121,-30,73,0.4444793656867538],[121,-30,74,0.4506852861306576],[121,-30,75,0.44678622028868503],[121,-30,76,0.43325950706439575],[121,-30,77,0.42464199724078294],[121,-30,78,0.42387655706809135],[121,-30,79,0.40953847677589494],[121,-29,64,0.389750143305928],[121,-29,65,0.3952882737465966],[121,-29,66,0.40102258897877463],[121,-29,67,0.4069156968103267],[121,-29,68,0.4129288380293821],[121,-29,69,0.41903130222750473],[121,-29,70,0.4251947442487748],[121,-29,71,0.4313930104685594],[121,-29,72,0.43760212018470096],[121,-29,73,0.4438002215448733],[121,-29,74,0.44927452510436316],[121,-29,75,0.4547785311532132],[121,-29,76,0.4503955415955789],[121,-29,77,0.4394135592727428],[121,-29,78,0.43089806898359806],[121,-29,79,0.41055672416135075],[121,-28,64,0.38935510526045114],[121,-28,65,0.39484518147629033],[121,-28,66,0.4005380224501874],[121,-28,67,0.4063958750283359],[121,-28,68,0.4123780501981378],[121,-28,69,0.4184510211595122],[121,-28,70,0.42458370797389444],[121,-28,71,0.43030221157308457],[121,-28,72,0.4355037674845148],[121,-28,73,0.4407666118824024],[121,-28,74,0.4460884414154559],[121,-28,75,0.45146339287989457],[121,-28,76,0.45688226333304643],[121,-28,77,0.4584588021008208],[121,-28,78,0.4410271113080463],[121,-28,79,0.4174647495884091],[121,-27,64,0.3890131917276503],[121,-27,65,0.3944462316578451],[121,-27,66,0.4000869157178696],[121,-27,67,0.40589737491631195],[121,-27,68,0.4118350537526776],[121,-27,69,0.4174819175540548],[121,-27,70,0.42238153640314846],[121,-27,71,0.4273463257345599],[121,-27,72,0.43238412138291227],[121,-27,73,0.4374984753149624],[121,-27,74,0.44268876328789675],[121,-27,75,0.4479503396649525],[121,-27,76,0.4532747393795071],[121,-27,77,0.45864992695204265],[121,-27,78,0.45083685949352725],[121,-27,79,0.42847988444511226],[121,-26,64,0.3887077793574171],[121,-26,65,0.39407302715833176],[121,-26,66,0.3996490815021743],[121,-26,67,0.40535918799697823],[121,-26,68,0.40997929436735236],[121,-26,69,0.4146420082989833],[121,-26,70,0.4193668942920032],[121,-26,71,0.42416882232168734],[121,-26,72,0.4290579307207111],[121,-26,73,0.4340396466813767],[121,-26,74,0.4391147645930807],[121,-26,75,0.44427958232373704],[121,-26,76,0.4495260954470785],[121,-26,77,0.4548422493119462],[121,-26,78,0.45655287010585877],[121,-26,79,0.4377391907962577],[121,-25,64,0.38841204293620996],[121,-25,65,0.3936969918372089],[121,-25,66,0.3982382185976739],[121,-25,67,0.4026580142464163],[121,-25,68,0.4071004806237995],[121,-25,69,0.4115930622824249],[121,-25,70,0.41615817199433924],[121,-25,71,0.42081313447006774],[121,-25,72,0.42557011492456537],[121,-25,73,0.4304361146502012],[121,-25,74,0.43541303383055935],[121,-25,75,0.440497801704984],[121,-25,76,0.44568257406974515],[121,-25,77,0.45095499797887295],[121,-25,78,0.4562985433877062],[121,-25,79,0.4380015562166561],[121,-24,64,0.3869643037516605],[121,-24,65,0.39125538072596466],[121,-24,66,0.39551203155587084],[121,-24,67,0.399761724986977],[121,-24,68,0.40403985506591533],[121,-24,69,0.40837684270097907],[121,-24,70,0.41279769943850647],[121,-24,71,0.41732191473720914],[121,-24,72,0.4219633656153741],[121,-24,73,0.4267303013286532],[121,-24,74,0.43162540330324073],[121,-24,75,0.4366459204100114],[121,-24,76,0.4417838795259753],[121,-24,77,0.44702637119178956],[121,-24,78,0.45235591003983405],[121,-24,79,0.4349008876284617],[121,-23,64,0.38440184098512853],[121,-23,65,0.38852299032461746],[121,-23,66,0.3926149123898399],[121,-23,67,0.3967052375806907],[121,-23,68,0.40083113312757845],[121,-23,69,0.4050257569737033],[121,-23,70,0.409316450893669],[121,-23,71,0.41372458270048623],[121,-23,72,0.4182654476227893],[121,-23,73,0.4229482517154644],[121,-23,74,0.4277761774994117],[121,-23,75,0.4327465318730621],[121,-23,76,0.43785097618551433],[121,-23,77,0.4430758382104731],[121,-23,78,0.4484025056135283],[121,-23,79,0.4369236823021748],[121,-22,64,0.38168738790541773],[121,-22,65,0.3856446472639125],[121,-22,66,0.38957953285546726],[121,-22,67,0.39351969935445974],[121,-22,68,0.397503828164293],[121,-22,69,0.4015675377730202],[121,-22,70,0.4057402219392639],[121,-22,71,0.41004485301587135],[121,-22,72,0.41449788082684824],[121,-22,73,0.4191092199236858],[121,-22,74,0.4238823253747158],[121,-22,75,0.42881435707513804],[121,-22,76,0.4338964324001421],[121,-22,77,0.4391139668609392],[121,-22,78,0.44444710226565115],[121,-22,79,0.4345812759115263],[121,-21,64,0.3788545999371246],[121,-21,65,0.3826523588572813],[121,-21,66,0.3864361721154348],[121,-21,67,0.3902335425070043],[121,-21,68,0.39408435932544045],[121,-21,69,0.3980263970443897],[121,-21,70,0.402090821616362],[121,-21,71,0.406301956070016],[121,-21,72,0.41067717783071384],[121,-21,73,0.41522691047614524],[121,-21,74,0.41995471003209495],[121,-21,75,0.4248574457349919],[121,-21,76,0.4299255750106612],[121,-21,77,0.4351435122446739],[121,-21,78,0.440490090751144],[121,-21,79,0.42632203491870035],[121,-20,64,0.3759361518005023],[121,-20,65,0.379576909521904],[121,-20,66,0.38321355608586755],[121,-20,67,0.3868732394146704],[121,-20,68,0.39059671786463146],[121,-20,69,0.39442360086467254],[121,-20,70,0.39838655607267914],[121,-20,71,0.4025110333932306],[121,-20,72,0.4068151568058213],[121,-20,73,0.4113097167748918],[121,-20,74,0.4159982632978906],[121,-20,75,0.4208772994564903],[121,-20,76,0.4259365751466917],[121,-20,77,0.43115948047790775],[121,-20,78,0.4365235381517212],[121,-20,79,0.42427002478087433],[121,-19,64,0.3729647204258665],[121,-19,65,0.3764487681348459],[121,-19,66,0.3799396842821984],[121,-19,67,0.3834640429764315],[121,-19,68,0.3870631157864309],[121,-19,69,0.39077802353014635],[121,-19,70,0.3946426878048117],[121,-19,71,0.39868350442708905],[121,-19,72,0.40291922078760845],[121,-19,73,0.4073609204338699],[121,-19,74,0.41201211489447426],[121,-19,75,0.4168689425529922],[121,-19,76,0.4219204741772214],[121,-19,77,0.4271491245113881],[121,-19,78,0.4325311691476026],[121,-19,79,0.42666578784160114],[121,-18,64,0.3699701901473052],[121,-18,65,0.3732950504793504],[121,-18,66,0.37663854244761613],[121,-18,67,0.3800264413938793],[121,-18,68,0.3835001755197636],[121,-18,69,0.38710206713791956],[121,-18,70,0.39086708273513343],[121,-18,71,0.3948224414019276],[121,-18,72,0.3989874634037063],[121,-18,73,0.40337353357558314],[121,-18,74,0.40798417952200217],[121,-18,75,0.4128152643822158],[121,-18,76,0.41785529370515817],[121,-18,77,0.42308583576461234],[121,-18,78,0.4284820544405942],[121,-18,79,0.4235871646640568],[121,-17,64,0.36696281300759837],[121,-17,65,0.370123509159185],[121,-17,66,0.37331511303804704],[121,-17,67,0.37656238277073323],[121,-17,68,0.37990655290505343],[121,-17,69,0.3833908485283034],[121,-17,70,0.38705109986604447],[121,-17,71,0.3909152676310282],[121,-17,72,0.39500324483597987],[121,-17,73,0.3993267822964825],[121,-17,74,0.4038895377881036],[121,-17,75,0.4086872485840277],[121,-17,76,0.41370802686441727],[121,-17,77,0.4189327772590828],[121,-17,78,0.4243357355637649],[121,-17,79,0.4247581205382309],[121,-16,64,0.3639049032070825],[121,-16,65,0.3668978934251856],[121,-16,66,0.3699349587929126],[121,-16,67,0.373039645148786],[121,-16,68,0.37625262333576254],[121,-16,69,0.3796176682903844],[121,-16,70,0.3831712234562377],[121,-16,71,0.386941829654784],[121,-16,72,0.3909498661595438],[121,-16,73,0.3952074252510428],[121,-16,74,0.39971832020991005],[121,-16,75,0.40447822644784],[121,-16,76,0.4094749552216243],[121,-16,77,0.41468885912681874],[121,-16,78,0.4200933683280396],[121,-16,79,0.4244698778721182],[121,-15,64,0.36075765211822175],[121,-15,65,0.36358152656572645],[121,-15,66,0.36646390807399865],[121,-15,67,0.3694269561377577],[121,-15,68,0.3725103868324615],[121,-15,69,0.3757581134206361],[121,-15,70,0.37920686436704765],[121,-15,71,0.38288550832169216],[121,-15,72,0.3868147256726497],[121,-15,73,0.39100682380696133],[121,-15,74,0.3954656960350572],[121,-15,75,0.4001869238556714],[121,-15,76,0.4051580219630837],[121,-15,77,0.41035882512978017],[121,-15,78,0.4157620158386677],[121,-15,79,0.41771803986749256],[121,-14,64,0.35749341270391943],[121,-14,65,0.3601485125840731],[121,-14,66,0.3628780025381052],[121,-14,67,0.3657024971670038],[121,-14,68,0.3686603545574959],[121,-14,69,0.37179517278968116],[121,-14,70,0.3751435801134403],[121,-14,71,0.37873445372555214],[121,-14,72,0.38258851740188116],[121,-14,73,0.3867180930541754],[121,-14,74,0.3911270061662289],[121,-14,75,0.39581064476434313],[121,-14,76,0.4007561712810238],[121,-14,77,0.4059428863817245],[121,-14,78,0.41134274354582634],[121,-14,79,0.41325707959159674],[121,-13,64,0.26211579437614857],[121,-13,65,0.3096409369239713],[121,-13,66,0.3591615495814961],[121,-13,67,0.36185205411117255],[121,-13,68,0.36468982899181684],[121,-13,69,0.36771767831399116],[121,-13,70,0.3709717075834761],[121,-13,71,0.3744804382594054],[121,-13,72,0.3782643307396968],[121,-13,73,0.3823354710719278],[121,-13,74,0.3866974213422071],[121,-13,75,0.39134523337398214],[121,-13,76,0.39626562505229707],[121,-13,77,0.4014373182799934],[121,-13,78,0.4068315372745643],[121,-13,79,0.4099101525603735],[121,-12,64,0.13665195694829277],[121,-12,65,0.16752935098027824],[121,-12,66,0.20208860957866517],[121,-12,67,0.24031356498486497],[121,-12,68,0.2821753972426997],[121,-12,69,0.3276255195748845],[121,-12,70,0.3666851248810532],[121,-12,71,0.37011782287171646],[121,-12,72,0.37383684479715273],[121,-12,73,0.3778537620055439],[121,-12,74,0.3821716510292573],[121,-12,75,0.3867850620041583],[121,-12,76,0.39168015866433414],[121,-12,77,0.3968350288560352],[121,-12,78,0.4022201641988865],[121,-12,79,0.4077991072211835],[121,-11,64,0.05942887126864644],[121,-11,65,0.07716163422656568],[121,-11,66,0.09789721210056496],[121,-11,67,0.12168877129830863],[121,-11,68,0.14857403901830077],[121,-11,69,0.17856940912523453],[121,-11,70,0.21165905018927686],[121,-11,71,0.24779683751971238],[121,-11,72,0.2869087278099885],[121,-11,73,0.3288952840609363],[121,-11,74,0.37363433617380304],[121,-11,75,0.382123045458483],[121,-11,76,0.3869913769311931],[121,-11,77,0.39212609966886275],[121,-11,78,0.39749697808373863],[121,-11,79,0.40306677381201883],[121,-10,64,0.01869587505533344],[121,-10,65,0.026787906752347875],[121,-10,66,0.03712259947316064],[121,-10,67,0.049822348793734705],[121,-10,68,0.06499119116265159],[121,-10,69,0.08271026095554379],[121,-10,70,0.10302647039196303],[121,-10,71,0.12595423189265598],[121,-10,72,0.15147764877780684],[121,-10,73,0.17955286976413318],[121,-10,74,0.21011059280232777],[121,-10,75,0.2430587043114163],[121,-10,76,0.27828504048573555],[121,-10,77,0.31566025806760434],[121,-10,78,0.35504080281450767],[121,-10,79,0.3962719648257951],[121,-9,64,0.012091725527112735],[121,-9,65,0.014456291532994915],[121,-9,66,0.01679093060184176],[121,-9,67,0.01910681968227571],[121,-9,68,0.021431150490119184],[121,-9,69,0.02829883277493258],[121,-9,70,0.03893737654895459],[121,-9,71,0.05166892506481233],[121,-9,72,0.06653594962409391],[121,-9,73,0.08355056967338295],[121,-9,74,0.10269690795725399],[121,-9,75,0.12393359326299166],[121,-9,76,0.14719639746716517],[121,-9,77,0.17240099425513686],[121,-9,78,0.19944582765593405],[121,-9,79,0.22821507940551014],[121,-8,64,0.008183171769385043],[121,-8,65,0.010506187340635093],[121,-8,66,0.012823055007725962],[121,-8,67,0.015142543866107454],[121,-8,68,0.017488241465312738],[121,-8,69,0.019894370543361725],[121,-8,70,0.02239133590740659],[121,-8,71,0.025004399977184857],[121,-8,72,0.02775286170383406],[121,-8,73,0.030649431672962073],[121,-8,74,0.0396357343554764],[121,-8,75,0.051849009429080335],[121,-8,76,0.06575710742757951],[121,-8,77,0.08132184772994522],[121,-8,78,0.09848498960675996],[121,-8,79,0.11717111204640401],[121,-7,64,0.004288275249336536],[121,-7,65,0.006573340932172548],[121,-7,66,0.008875866703553996],[121,-7,67,0.011202125161138629],[121,-7,68,0.013571885507262346],[121,-7,69,0.016015927733550896],[121,-7,70,0.01856164139071043],[121,-7,71,0.02123166344958181],[121,-7,72,0.024043026683747363],[121,-7,73,0.027006505567813005],[121,-7,74,0.03012615956715769],[121,-7,75,0.03339907329368832],[121,-7,76,0.03681529260754888],[121,-7,77,0.04035795536178198],[121,-7,78,0.044003615117315584],[121,-7,79,0.05137142897902171],[121,-6,64,4.1838963817914974E-4],[121,-6,65,0.0026690251401148227],[121,-6,66,0.004960155998153346],[121,-6,67,0.0072954828091459575],[121,-6,68,0.009690802231268603],[121,-6,69,0.012173217456019398],[121,-6,70,0.01476686986455398],[121,-6,71,0.01749155447117197],[121,-6,72,0.02036184941214889],[121,-6,73,0.023386442322079662],[121,-6,74,0.02656765345433512],[121,-6,75,0.029901154999357245],[121,-6,76,0.03337588565864256],[121,-6,77,0.03697415914834624],[121,-6,78,0.040671964936135827],[121,-6,79,0.044439459164052376],[121,-5,64,-0.003416657868683117],[121,-5,65,-0.0011971485938780061],[121,-5,66,0.0010849309687408788],[121,-5,67,0.0034306490464335736],[121,-5,68,0.005851740629523719],[121,-5,69,0.008371476935619942],[121,-5,70,0.011010589017579772],[121,-5,71,0.013785876161586757],[121,-5,72,0.01670932858224518],[121,-5,73,0.019787444392448082],[121,-5,74,0.023020740685863177],[121,-5,75,0.026403458169470054],[121,-5,76,0.02992345839042872],[121,-5,77,0.033562312220586824],[121,-5,78,0.037295577894732486],[121,-5,79,0.04109326655106661],[121,-4,64,-0.007208972794705109],[121,-4,65,-0.005017622883751139],[121,-4,66,-0.0027429478073660737],[121,-4,67,-3.865550803465222E-4],[121,-4,68,0.002059207853345885],[121,-4,69,0.004613709164353048],[121,-4,70,0.007294183147088556],[121,-4,71,0.010114346685911837],[121,-4,72,0.013083527447052259],[121,-4,73,0.01620598177372295],[121,-4,74,0.01948040210467519],[121,-4,75,0.022899613342618134],[121,-4,76,0.02645045721254311],[121,-4,77,0.030113863275904904],[121,-4,78,0.0338651049063031],[121,-4,79,0.03767423819152249],[121,-3,64,-0.010952800238526123],[121,-3,65,-0.0087870910018225],[121,-3,66,-0.0065189415684834395],[121,-3,67,-0.004152660034198695],[121,-3,68,-0.0016846274977424408],[121,-3,69,9.006367238988647E-4],[121,-3,70,0.003616862017454189],[121,-3,71,0.00647466550025601],[121,-3,72,0.009480697911438178],[121,-3,73,0.01263697275274403],[121,-3,74,0.015940378483295884],[121,-3,75,0.019382373189501912],[121,-3,76,0.022948860775636924],[121,-3,77,0.02662024735728057],[121,-3,78,0.030371676190101587],[121,-3,79,0.03417343913604607],[121,-2,64,-0.014644527770149228],[121,-2,65,-0.01250249295274025],[121,-2,66,-0.010240812411259459],[121,-2,67,-0.007866500110561728],[121,-2,68,-0.00537985367912578],[121,-2,69,-0.0027691781854478075],[121,-2,70,-2.4179050653435914E-5],[121,-2,71,0.0028627130422812664],[121,-2,72,0.005895517549705551],[121,-2,73,0.009074054510750542],[121,-2,74,0.012393469823560658],[121,-2,75,0.015843934776150644],[121,-2,76,0.019410518892645993],[121,-2,77,0.02307323480672497],[121,-2,78,0.026807253538507308],[121,-2,79,0.030583288234409922],[121,-1,64,-0.018282479652237657],[121,-1,65,-0.016162806406321832],[121,-1,66,-0.013908402594735246],[121,-1,67,-0.011528973489800514],[121,-1,68,-0.00902855166510737],[121,-1,69,-0.0063990437729412744],[121,-1,70,-0.003633444472709168],[121,-1,71,-7.271131476872953E-4],[121,-1,72,0.0023214420827918697],[121,-1,73,0.005509945612204509],[121,-1,74,0.008831900635607742],[121,-1,75,0.012276299906657],[121,-1,76,0.015827500048158152],[121,-1,77,0.0194652581702981],[121,-1,78,0.023164929232484494],[121,-1,79,0.026897822284742162],[121,0,64,-0.02186649761320036],[121,0,65,-0.01976862781239938],[121,0,66,-0.017523209573501973],[121,0,67,-0.015142605681636641],[121,0,68,-0.012634344483497215],[121,0,69,-0.00999367495612004],[121,0,70,-0.007216665648925178],[121,0,71,-0.004301422866238672],[121,0,72,-0.0012488241452236596],[121,0,73,0.0019369024036897812],[121,0,74,0.005247752663376326],[121,0,75,0.008671674423881257],[121,0,76,0.012192447761954089],[121,0,77,0.015789716694237906],[121,0,78,0.01943917061408212],[121,0,79,0.023112873741367515],[121,1,64,-0.025397304964961856],[121,1,65,-0.02332154129387517],[121,1,66,-0.02108775496332201],[121,1,67,-0.018710914993936352],[121,1,68,-0.016201758918033212],[121,1,69,-0.01355855492772561],[121,1,70,-0.010780169100407936],[121,1,71,-0.007867216943440588],[121,1,72,-0.004822737981946107],[121,1,73,-0.0016527283914980135],[121,1,74,0.001633468086794979],[121,1,75,0.005022910406036213],[121,1,76,0.008498950807105908],[121,1,77,0.012041264617842324],[121,1,78,0.01562601785411803],[121,1,79,0.019226170960086143],[121,2,64,-0.014897006969776588],[121,2,65,-0.022783525143817707],[121,2,66,-0.024604747528666822],[121,2,67,-0.022237580433208233],[121,2,68,-0.01973539985218184],[121,2,69,-0.017099121702571503],[121,2,70,-0.014330084235828058],[121,2,71,-0.011431127584099346],[121,2,72,-0.008407203240531586],[121,2,73,-0.005265854489833745],[121,2,74,-0.0020175680310665005],[121,2,75,0.0013240026859973188],[121,2,76,0.0047419416169002995],[121,2,77,0.008216100714665994],[121,2,78,0.011723255650499736],[121,2,79,0.015237385119540665],[121,3,64,-0.002601478184105962],[121,3,65,-0.005106459696655249],[121,3,66,-0.008509997185372133],[121,3,67,-0.013011886790667355],[121,3,68,-0.018771728615043375],[121,3,69,-0.020619744548532434],[121,3,70,-0.017871361268070447],[121,3,71,-0.014998494154667141],[121,3,72,-0.012007722145652242],[121,3,73,-0.008907883457503337],[121,3,74,-0.005710385144401634],[121,3,75,-0.0024293975873578614],[121,3,76,9.180653442509125E-4],[121,3,77,0.004312179480644136],[121,3,78,0.007730455684724181],[121,3,79,0.0111479959139525],[121,4,64,-9.654009261313404E-4],[121,4,65,-0.0015188406875927438],[121,4,66,-0.0020452142916669775],[121,4,67,-0.002816573293644687],[121,4,68,-0.004062741558004484],[121,4,69,-0.0059644297846630405],[121,4,70,-0.0086693959476221],[121,4,71,-0.01229597950410469],[121,4,72,-0.015627430106487792],[121,4,73,-0.012581876055268226],[121,4,74,-0.00944771905203862],[121,4,75,-0.006239431811417911],[121,4,76,-0.0029739425784811938],[121,4,77,3.294011233009597E-4],[121,4,78,0.0036489680292151484],[121,4,79,0.006961076670661587],[121,5,64,0.001694068125923357],[121,5,65,-3.391537778909924E-4],[121,5,66,-0.0013403753723298887],[121,5,67,-0.0016538429892448943],[121,5,68,-0.0015794189485183795],[121,5,69,-0.001365493239903633],[121,5,70,-0.0012253826308887441],[121,5,71,-0.0013406795254866006],[121,5,72,-0.001864151445267805],[121,5,73,-0.002922545936682942],[121,5,74,-0.004619287598810164],[121,5,75,-0.007037054875306995],[121,5,76,-0.006932863695399958],[121,5,77,-0.0037302139363834842],[121,5,78,-5.181339710010231E-4],[121,5,79,0.0026810020329146554],[121,6,64,0.017065431829707062],[121,6,65,0.010119587605248672],[121,6,66,0.00529025779386626],[121,6,67,0.0021610464859931483],[121,6,68,3.621745638958708E-4],[121,6,69,-4.223262151579007E-4],[121,6,70,-4.7131921537162477E-4],[121,6,71,-2.974092163340269E-5],[121,6,72,6.886639178955926E-4],[121,6,73,0.0014986832509970068],[121,6,74,0.0022410679474733418],[121,6,75,0.002780063572095882],[121,6,76,0.003001055018827171],[121,6,77,0.00280833428096681],[121,6,78,0.0021230005248666734],[121,6,79,8.810004676463676E-4],[121,7,64,0.056846795527304664],[121,7,65,0.04155423211379154],[121,7,66,0.029542538805085346],[121,7,67,0.02032322531875558],[121,7,68,0.013456651479876928],[121,7,69,0.008559286475383324],[121,7,70,0.005286674615231918],[121,7,71,0.003330409412163419],[121,7,72,0.0024155454752836027],[121,7,73,0.0022980695871303858],[121,7,74,0.002762444000739996],[121,7,75,0.003619234168642445],[121,7,76,0.004702832214506682],[121,7,77,0.005869286484921836],[121,7,78,0.006994246480879851],[121,7,79,0.007971031373493073],[121,8,64,0.13274924859861634],[121,8,65,0.10567672914325311],[121,8,66,0.08312931702166233],[121,8,67,0.0645466525333895],[121,8,68,0.0494193530785113],[121,8,69,0.03729630895020099],[121,8,70,0.02776738122372574],[121,8,71,0.02046051380665478],[121,8,72,0.015039277704166677],[121,8,73,0.011200458925759965],[121,8,74,0.00867170295044699],[121,8,75,0.00720922789963345],[121,8,76,0.006595617727123814],[121,8,77,0.006637705826562898],[121,8,78,0.007164558484227753],[121,8,79,0.008025566579306396],[121,9,64,0.24076725939827984],[121,9,65,0.2141964079163471],[121,9,66,0.17776144799207017],[121,9,67,0.1465439168252706],[121,9,68,0.11996489375748903],[121,9,69,0.09750566090931964],[121,9,70,0.07869026748293331],[121,9,71,0.06308277249444474],[121,9,72,0.050284911519594536],[121,9,73,0.03993379255484592],[121,9,74,0.03169963379585039],[121,9,75,0.025283555421137485],[121,9,76,0.02041543668846269],[121,9,77,0.016851848804668137],[121,9,78,0.014374073120337196],[121,9,79,0.012786213241936215],[121,10,64,0.23400097711611265],[121,10,65,0.2333553681706243],[121,10,66,0.2330242283651919],[121,10,67,0.23297493347083853],[121,10,68,0.23318117726808577],[121,10,69,0.2008986563524236],[121,10,70,0.16976916884189755],[121,10,71,0.14291370616778507],[121,10,72,0.11987175054638378],[121,10,73,0.10022018128191462],[121,10,74,0.08357110175726287],[121,10,75,0.06956970638456379],[121,10,76,0.057892198817759324],[121,10,77,0.048243771944522694],[121,10,78,0.04035665932636667],[121,10,79,0.03398826686313702],[121,11,64,0.22719695141990642],[121,11,65,0.22639415712008074],[121,11,66,0.22589626288578848],[121,11,67,0.2256703362210325],[121,11,68,0.22568992569689922],[121,11,69,0.2259439762901751],[121,11,70,0.22642152251472938],[121,11,71,0.2271110477019682],[121,11,72,0.22800028775094133],[121,11,73,0.20377769754666517],[121,11,74,0.17600661790754302],[121,11,75,0.15179047449188854],[121,11,76,0.13075075957837493],[121,11,77,0.11254011302471192],[121,11,78,0.09684040739246208],[121,11,79,0.08336089986499814],[121,12,64,0.2203763655059175],[121,12,65,0.21941538557488638],[121,12,66,0.21874867186588176],[121,12,67,0.21834366704749023],[121,12,68,0.2181741903434636],[121,12,69,0.21822913226287213],[121,12,70,0.21849757265791267],[121,12,71,0.21896817981903893],[121,12,72,0.2196290369884082],[121,12,73,0.2204675017129318],[121,12,74,0.22147009803913323],[121,12,75,0.2226224414727464],[121,12,76,0.22390919654788585],[121,12,77,0.22146292542544851],[121,12,78,0.19554814203165405],[121,12,79,0.17262734559914772],[121,13,64,0.21356369870165304],[121,13,65,0.21244483611162482],[121,13,66,0.21160863107071637],[121,13,67,0.21102358399966958],[121,13,68,0.21066418075378207],[121,13,69,0.21051933117019356],[121,13,70,0.21057817521372424],[121,13,71,0.21082953741030375],[121,13,72,0.21126178483744015],[121,13,73,0.21186271098615145],[121,13,74,0.21261944551793546],[121,13,75,0.21351838987670727],[121,13,76,0.21454517865266762],[121,13,77,0.21568466653355606],[121,13,78,0.2169209406206464],[121,13,79,0.21823735783113368],[121,14,64,0.20679024145213112],[121,14,65,0.2055150630692897],[121,14,66,0.20450999358975605],[121,14,67,0.20374522763170108],[121,14,68,0.20319626497927235],[121,14,69,0.20285205825994537],[121,14,70,0.2027017684837675],[121,14,71,0.2027342938690629],[121,14,72,0.20293817120895022],[121,14,73,0.2033014951681554],[121,14,74,0.20381185554554077],[121,14,75,0.20445629249248395],[121,14,76,0.20522126963210635],[121,14,77,0.20609266498003728],[121,14,78,0.20705577952568657],[121,14,79,0.20809536329273112],[121,15,64,0.20009801112020761],[121,15,65,0.19866910760333492],[121,15,66,0.19749669821493024],[121,15,67,0.1965532218020961],[121,15,68,0.1958154725289531],[121,15,69,0.19527242239302386],[121,15,70,0.19491317406945982],[121,15,71,0.19472658480041868],[121,15,72,0.19470122462775646],[121,15,73,0.1948253432455451],[121,15,74,0.19508684551140373],[121,15,75,0.19547327563239816],[121,15,76,0.1959718100176166],[121,15,77,0.19656925876595915],[121,15,78,0.19725207573582879],[121,15,79,0.19800637712188607],[121,16,64,0.1935291228195458],[121,16,65,0.1919493215927222],[121,16,66,0.19061091394329038],[121,16,67,0.18948903842630915],[121,16,68,0.1885620239794246],[121,16,69,0.18781884830255782],[121,16,70,0.18724850836760407],[121,16,71,0.18683975604336991],[121,16,72,0.18658112338525437],[121,16,73,0.18646094599467133],[121,16,74,0.18646738448652805],[121,16,75,0.1865884441052522],[121,16,76,0.1868119925309848],[121,16,77,0.1871257759179018],[121,16,78,0.18751743320768804],[121,16,79,0.18797450876132407],[121,17,64,0.18710317922264738],[121,17,65,0.1853753513875308],[121,17,66,0.18387201841804984],[121,17,67,0.1825713819935391],[121,17,68,0.18145351444250757],[121,17,69,0.1805074096198975],[121,17,70,0.17972195623777057],[121,17,71,0.17908579694392532],[121,17,72,0.17858742691846385],[121,17,73,0.17821527902427592],[121,17,74,0.177957795548418],[121,17,75,0.1778034866016244],[121,17,76,0.17774097527163518],[121,17,77,0.17775902965276263],[121,17,78,0.17784658190041197],[121,17,79,0.1779927344832657],[121,18,64,0.18081703970507587],[121,18,65,0.17894408408505727],[121,18,66,0.17727679651643888],[121,18,67,0.17579671440817793],[121,18,68,0.17448582916863487],[121,18,69,0.17333318375916756],[121,18,70,0.17232759410330745],[121,18,71,0.1714576388431971],[121,18,72,0.17071183415060792],[121,18,73,0.17007878288841133],[121,18,74,0.16954729815998149],[121,18,75,0.169106501344282],[121,18,76,0.16874589477201096],[121,18,77,0.16845540925306732],[121,18,78,0.16822542671875113],[121,18,79,0.16804677829145542],[121,19,64,0.17289066040500448],[121,19,65,0.1716646208495718],[121,19,66,0.17046473730689576],[121,19,67,0.16914260528132366],[121,19,68,0.16763639672987266],[121,19,69,0.1662733808599751],[121,19,70,0.1650423678919692],[121,19,71,0.16393195636612581],[121,19,72,0.1629307842619745],[121,19,73,0.16202774185550073],[121,19,74,0.16121214635557976],[121,19,75,0.160473878452527],[121,19,76,0.15980348099960154],[121,19,77,0.15919222013236606],[121,19,78,0.15863210921178103],[121,19,79,0.15811589605243495],[121,20,64,0.1614248915781114],[121,20,65,0.16001512888172228],[121,20,66,0.15865122362342002],[121,20,67,0.1573481842312677],[121,20,68,0.15612179534211162],[121,20,69,0.15498314816969463],[121,20,70,0.15394224397130432],[121,20,71,0.15300781728798712],[121,20,72,0.1521870894697115],[121,20,73,0.1514855717504341],[121,20,74,0.15090691782253],[121,20,75,0.15045282573834792],[121,20,76,0.15012298884777106],[121,20,77,0.14991509536600053],[121,20,78,0.14903808627371415],[121,20,79,0.14817369249441456],[121,21,64,0.14966277391570346],[121,21,65,0.14806517490325602],[121,21,66,0.14653451768712536],[121,21,67,0.1450823669158504],[121,21,68,0.14372249461008982],[121,21,69,0.1424659954945534],[121,21,70,0.1413229707694802],[121,21,71,0.1403022191890691],[121,21,72,0.13941091814654283],[121,21,73,0.13865436697380445],[121,21,74,0.13803579239271666],[121,21,75,0.13755621590174982],[121,21,76,0.13721438273231565],[121,21,77,0.13700675186514963],[121,21,78,0.1369275464613564],[121,21,79,0.13696886393472452],[121,22,64,0.13766987048332807],[121,22,65,0.13588039384450387],[121,22,66,0.13417999694783697],[121,22,67,0.1325768639671408],[121,22,68,0.1310827169363954],[121,22,69,0.12970855444961038],[121,22,70,0.12846445136726997],[121,22,71,0.127359124401539],[121,22,72,0.12639954648249366],[121,22,73,0.12559063561426734],[121,22,74,0.1249350181416348],[121,22,75,0.12443286616354157],[121,22,76,0.12408180865097145],[121,22,77,0.12387691565419429],[121,22,78,0.12381075482185352],[121,22,79,0.12387351930128435],[121,23,64,0.1255175963435541],[121,23,65,0.12353232627045463],[121,23,66,0.12165894006411286],[121,23,67,0.119902379853704],[121,23,68,0.11827231604018973],[121,23,69,0.11677954234009232],[121,23,70,0.11543397173029571],[121,23,71,0.11424408578443161],[121,23,72,0.11321648930652581],[121,23,73,0.11235555109876227],[121,23,74,0.11166313076394398],[121,23,75,0.11113839122993834],[121,23,76,0.11077769647607841],[121,23,77,0.11057459374222198],[121,23,78,0.11051987931321962],[121,23,79,0.1106017467948714],[121,24,64,0.11328030513065167],[121,24,65,0.1110955077532722],[121,24,66,0.10904563974789343],[121,24,67,0.10713260916748524],[121,24,68,0.10536406818586311],[121,24,69,0.10375049094882606],[121,24,70,0.10230148834778097],[121,24,71,0.10102515257978102],[121,24,72,0.0999275600172873],[121,24,73,0.09901237100233358],[121,24,74,0.09828052644313563],[121,24,75,0.0977300408506597],[121,24,76,0.0973558912191831],[121,24,77,0.09715000093070889],[121,24,78,0.09710131765173546],[121,24,79,0.09719598399252906],[121,25,64,0.10103251217986382],[121,25,65,0.09864469193672207],[121,25,66,0.09641464501065382],[121,25,67,0.09434151638791623],[121,25,68,0.09243100726366572],[121,25,69,0.0906931547790562],[121,25,70,0.08913712713688134],[121,25,71,0.08777047673568455],[121,25,72,0.08659859997092016],[121,25,73,0.08562430369704235],[121,25,74,0.08484747820437812],[121,25,75,0.08426487629945498],[121,25,76,0.08386999782034874],[121,25,77,0.08365307867202293],[121,25,78,0.08360118323428041],[121,25,79,0.08369839877721971],[121,26,64,0.08884625640164395],[121,26,65,0.08625220933363831],[121,26,66,0.08383813467591807],[121,26,67,0.0816007409397611],[121,26,68,0.07954387762084468],[121,26,69,0.07767702787753973],[121,26,70,0.07600878014175831],[121,26,71,0.0745460046964256],[121,26,72,0.07329327959264367],[121,26,73,0.07225243173771065],[121,26,74,0.07142219298298208],[121,26,75,0.07079797075377775],[121,26,76,0.07037173248577082],[121,26,77,0.07013200286617963],[121,26,78,0.07006397262753224],[121,26,79,0.07014971740733983],[121,27,64,0.07678860329906712],[121,27,65,0.07398546411146278],[121,27,66,0.07138342424081752],[121,27,67,0.06897712942575956],[121,27,68,0.06676870629302764],[121,27,69,0.064766970626636],[121,27,70,0.06297980112683214],[121,27,71,0.06141325544425232],[121,27,72,0.060070971660071706],[121,27,73,0.05895369207860298],[121,27,74,0.058058909136729155],[121,27,75,0.05738063292958498],[121,27,76,0.05690927955681496],[121,27,77,0.05663167921133403],[121,27,78,0.05653120266686769],[121,27,79,0.056588004572337244],[121,28,64,0.06491929177211068],[121,28,65,0.061904571372887185],[121,28,66,0.059110608425482616],[121,28,67,0.05653039717273236],[121,28,68,0.05416449654181667],[121,28,69,0.05202094814568147],[121,28,70,0.050106801406981975],[121,28,71,0.048427185808715294],[121,28,72,0.04698469742158188],[121,28,73,0.045778913410621624],[121,28,74,0.04480603430201319],[121,28,75,0.044058653471477624],[121,28,76,0.043525653006943756],[121,28,77,0.043192224802925054],[121,28,78,0.04304001546663384],[121,28,79,0.04304739335703106],[121,29,64,0.053288527626781886],[121,29,65,0.05006013771984319],[121,29,66,0.047070342034641686],[121,29,67,0.04431092151698858],[121,29,68,0.04178104489024324],[121,29,69,0.039487882222685566],[121,29,70,0.03743754752953477],[121,29,71,0.03563414431889398],[121,29,72,0.03407914645576611],[121,29,73,0.03277091113048978],[121,29,74,0.03170432369081705],[121,29,75,0.030870573766842047],[121,29,76,0.030257061799301096],[121,29,77,0.029847434777390252],[121,29,78,0.029621749706528266],[121,29,79,0.02955676306029517],[121,30,64,0.04193494313485132],[121,30,65,0.03849120501383792],[121,30,66,0.03530177957058252],[121,30,67,0.03235768775172353],[121,30,68,0.02965690301757761],[121,30,69,0.02720563852994412],[121,30,70,0.025008982906766064],[121,30,71,0.023069935996664133],[121,30,72,0.02138879292645042],[121,30,73,0.019962662813419598],[121,30,74,0.018785121882416773],[121,30,75,0.017846000391096788],[121,30,76,0.017131302442051504],[121,30,77,0.01662325745064431],[121,30,78,0.016300501746877402],[121,30,79,0.016138388519347614],[121,31,64,0.030888007829504356],[121,31,65,0.02722782212530165],[121,31,66,0.02383531684654366],[121,31,67,0.020701208069845656],[121,31,68,0.017822480339992078],[121,31,69,0.015204318635352114],[121,31,70,0.01285071457658331],[121,31,71,0.010763508708593935],[121,31,72,0.00894178586341496],[121,31,73,0.007381406208440652],[121,31,74,0.006074671703791933],[121,31,75,0.005010127353343346],[121,31,76,0.0041724963069652374],[121,31,77,0.0035427475598687774],[121,31,78,0.003098294703075826],[121,31,79,0.0028133239078890642],[121,32,64,0.020172571419624856],[121,32,65,0.016295807761634466],[121,32,66,0.012697580519930838],[121,32,67,0.009368743014468791],[121,32,68,0.006305501283466934],[121,32,69,0.003511956347715811],[121,32,70,9.909513357332696E-4],[121,32,71,-0.0012568646630446885],[121,32,72,-0.003233622809268111],[121,32,73,-0.0049446854809687205],[121,32,74,-0.00639896228615772],[121,32,75,-0.007609091747832224],[121,32,76,-0.008591489614120993],[121,32,77,-0.009366265056348874],[121,32,78,-0.009957006307785597],[121,32,79,-0.0103904375648371],[121,33,64,0.009799237229282292],[121,33,65,0.0057067337381206465],[121,33,66,0.001901030007739217],[121,33,67,-0.00162647004128888],[121,33,68,-0.004880132398702159],[121,33,69,-0.0078569788496011],[121,33,70,-0.010555344236840944],[121,33,71,-0.012975777808925991],[121,33,72,-0.015121605265573467],[121,33,73,-0.016999357329073386],[121,33,74,-0.018619065139187672],[121,33,75,-0.019994423102903877],[121,33,76,-0.02114282015134862],[121,33,77,-0.02208524066149663],[121,33,78,-0.022846036585500835],[121,33,79,-0.02345257259462877],[121,34,64,-2.3841921905587253E-4],[121,34,65,-0.004544947775597356],[121,34,66,-0.00855900135370551],[121,34,67,-0.012288257889808366],[121,34,68,-0.015737461931364716],[121,34,69,-0.018904778989950216],[121,34,70,-0.021789727577196688],[121,34,71,-0.02439403505097852],[121,34,72,-0.026722171531336943],[121,34,73,-0.028781753243851987],[121,34,74,-0.03058381559218536],[121,34,75,-0.03214295658767275],[121,34,76,-0.033477351577435546],[121,34,77,-0.03460864051048688],[121,34,78,-0.03556168925927325],[121,34,79,-0.036364226771187474],[121,35,64,-0.009965071372477494],[121,35,65,-0.01448316035418233],[121,35,66,-0.018705594266772388],[121,35,67,-0.022638829686227324],[121,35,68,-0.02628781957128188],[121,35,69,-0.029651875713841848],[121,35,70,-0.032731680644894096],[121,35,71,-0.03553009056528994],[121,35,72,-0.038052639409586975],[121,35,73,-0.040307916109755274],[121,35,74,-0.04230781535866504],[121,35,75,-0.044067662489812864],[121,35,76,-0.045606213393866384],[121,35,77,-0.04694553068134336],[121,35,78,-0.04811073756970122],[121,35,79,-0.04912965122153785],[121,36,64,-0.01942468577718741],[121,36,65,-0.024151286465395157],[121,36,66,-0.02858136443356943],[121,36,67,-0.03271993602660611],[121,36,68,-0.036572027425680026],[121,36,69,-0.040138081086958],[121,36,70,-0.04341989718785515],[121,36,71,-0.0464213803653615],[121,36,72,-0.04914901498661992],[121,36,73,-0.05161221793111709],[121,36,74,-0.053823569175281735],[121,36,75,-0.05579892077591904],[121,36,76,-0.05755738514236442],[121,36,77,-0.059121203765637016],[121,36,78,-0.060515497831861574],[121,36,79,-0.06176790238617165],[121,37,64,-0.028681383759134434],[121,37,65,-0.03361307231539641],[121,37,66,-0.03824941127807337],[121,37,67,-0.04259386383329644],[121,37,68,-0.04665144218955098],[121,37,69,-0.05042368659024658],[121,37,70,-0.05391344056292626],[121,37,71,-0.057125543263541106],[121,37,72,-0.06006728041624781],[121,37,73,-0.06274871721008987],[121,37,74,-0.06518291342468524],[121,37,75,-0.0673860213515978],[121,37,76,-0.06937726736076087],[121,37,77,-0.07117881822935543],[121,37,78,-0.06903161315630849],[121,37,79,-0.06336585200628954],[121,38,64,-0.03781760634467964],[121,38,65,-0.04295079881703924],[121,38,66,-0.04779150765110001],[121,38,67,-0.0523416527268826],[121,38,68,-0.056606205849433794],[121,38,69,-0.06058775900886722],[121,38,70,-0.06429009836008694],[121,38,71,-0.0677188498795906],[121,38,72,-0.0708819144563587],[121,38,73,-0.07378978904738417],[121,38,74,-0.07645577413862166],[121,38,75,-0.0775584211684939],[121,38,76,-0.07208117169955741],[121,38,77,-0.06655253890636224],[121,38,78,-0.06100107496880451],[121,38,79,-0.05545717841150963],[121,39,64,-0.04687949400384708],[121,39,65,-0.05220982328093133],[121,39,66,-0.057252017399881505],[121,39,67,-0.06200647032665533],[121,39,68,-0.06614804643567689],[121,39,69,-0.06949101272907468],[121,39,70,-0.07263746827535211],[121,39,71,-0.07559116500319013],[121,39,72,-0.07835757380224634],[121,39,73,-0.07600034277503111],[121,39,74,-0.07031128170705364],[121,39,75,-0.06459061630023016],[121,39,76,-0.058858072984113975],[121,39,77,-0.05313534584059021],[121,39,78,-0.04744589294853914],[121,39,79,-0.04181462706806036],[121,40,64,-0.05586942143163017],[121,40,65,-0.06018001297270751],[121,40,66,-0.0641281641452266],[121,40,67,-0.06787265859822766],[121,40,68,-0.07141711228224457],[121,40,69,-0.07476460979158638],[121,40,70,-0.07791866105332244],[121,40,71,-0.0735603998437771],[121,40,72,-0.06786238306455591],[121,40,73,-0.06210569132692565],[121,40,74,-0.05630622281538374],[121,40,75,-0.050481720055410406],[121,40,76,-0.04465179621818919],[121,40,77,-0.03883785586485316],[121,40,78,-0.03306291126709215],[121,40,79,-0.027351295652202623],[121,41,64,-0.06109270347167858],[121,41,65,-0.06523155455866031],[121,41,66,-0.06917247408081238],[121,41,67,-0.07291165367832168],[121,41,68,-0.07645283156294065],[121,41,69,-0.0712805138574844],[121,41,70,-0.06561154466162146],[121,41,71,-0.059863274032577525],[121,41,72,-0.05404907740282322],[121,41,73,-0.048183525771076666],[121,41,74,-0.042282643778277645],[121,41,75,-0.03636406304478087],[121,41,76,-0.03044707134239455],[121,41,77,-0.024552558416336297],[121,41,78,-0.01870285949943842],[121,41,79,-0.012921497769758934],[121,42,64,-0.06596448959877751],[121,42,65,-0.07008232576541515],[121,42,66,-0.07400699448434789],[121,42,67,-0.06913681697342841],[121,42,68,-0.06352585532722141],[121,42,69,-0.05781603784928086],[121,42,70,-0.05202089180131049],[121,42,71,-0.04615393701003198],[121,42,72,-0.0402291766797973],[121,42,73,-0.03426148522191978],[121,42,74,-0.028266893057401873],[121,42,75,-0.022262768614008104],[121,42,76,-0.01626789799124501],[121,42,77,-0.01030246300613124],[121,42,78,-0.004387918558392114],[121,42,79,0.0014532295383337893],[121,43,64,-0.07065660088733434],[121,43,65,-0.06711205337854381],[121,43,66,-0.0615937448107184],[121,43,67,-0.055954081290122484],[121,43,68,-0.05020565024858946],[121,43,69,-0.044364429042289856],[121,43,70,-0.038445415734818765],[121,43,71,-0.032463166880979534],[121,43,72,-0.026432319007249214],[121,43,73,-0.0203680088907913],[121,43,74,-0.014286192485774606],[121,43,75,-0.008203862608063914],[121,43,76,-0.0021391657405319103],[121,43,77,0.003888581440297411],[121,43,78,0.009858974990040998],[121,43,79,0.015750705040069958],[121,44,64,-0.05980717763401418],[121,44,65,-0.05425868959850464],[121,44,66,-0.04859416750203063],[121,44,67,-0.04281260786988828],[121,44,68,-0.03692695822650114],[121,44,69,-0.030955286073840727],[121,44,70,-0.024914204379237647],[121,44,71,-0.018819394333604734],[121,44,72,-0.012686164005803049],[121,44,73,-0.006529907340726457],[121,44,74,-3.66463230233878E-4],[121,44,75,0.005787625352720277],[121,44,76,0.0119149519157376],[121,44,77,0.01799718622485517],[121,44,78,0.02401511259284321],[121,44,79,0.029948765762330513],[121,45,64,-0.04717032806897738],[121,45,65,-0.0414687894168863],[121,45,66,-0.035658070693341294],[121,45,67,-0.02973489611865721],[121,45,68,-0.023712640785428403],[121,45,69,-0.017611670043389496],[121,45,70,-0.011450369925838286],[121,45,71,-0.005245655384664161],[121,45,72,9.864291374782341E-4],[121,45,73,0.007230207350471418],[121,45,74,0.013469967375503529],[121,45,75,0.019689656758657338],[121,45,76,0.02587267612801657],[121,45,77,0.0320017711438201],[121,45,78,0.03805902216364869],[121,45,79,0.044025930832845145],[121,46,64,-0.03460465973415547],[121,46,65,-0.028751068161580462],[121,46,66,-0.0227953823086533],[121,46,67,-0.016731962324723095],[121,46,68,-0.010574702753247584],[121,46,69,-0.004346474362717862],[121,46,70,0.0019323976395503222],[121,46,71,0.00824364059380403],[121,46,72,0.014570388987341686],[121,46,73,0.020896635770158205],[121,46,74,0.02720678092304976],[121,46,75,0.03348527755443389],[121,46,76,0.03971637555143465],[121,46,77,0.045883962570915225],[121,46,78,0.05197150192717057],[121,46,79,0.057962066719053976],[121,47,64,-0.022117367262349284],[121,47,65,-0.01611423050417557],[121,47,66,-0.010016152912937663],[121,47,67,-0.0038151060133108025],[121,47,68,0.0024743806511862993],[121,47,69,0.008826731929748019],[121,47,70,0.01521951745769222],[121,47,71,0.021632975534279786],[121,47,72,0.028049321775251955],[121,47,73,0.034452152766853136],[121,47,74,0.040825945398713856],[121,47,75,0.04715565229395349],[121,47,76,0.05342639350452649],[121,47,77,0.059623244399622105],[121,47,78,0.06573111944486273],[121,47,79,0.07173475135420797],[121,48,64,-0.00976827648992907],[121,48,65,-0.003618457162084445],[121,48,66,0.002619384547556466],[121,48,67,0.008955646098538788],[121,48,68,0.015375049081635216],[121,48,69,0.021849148421911498],[121,48,70,0.028353261147866314],[121,48,71,0.03486600937602438],[121,48,72,0.04136858352762145],[121,48,73,0.047844098602924545],[121,48,74,0.05427704433296167],[121,48,75,0.060652829771018935],[121,48,76,0.06695742263684192],[121,48,77,0.07317708348644565],[121,48,78,0.07929819454974658],[121,48,79,0.08436627635739345],[121,49,64,0.002375353846082895],[121,49,65,0.008668877202785486],[121,49,66,0.01504404553229385],[121,49,67,0.021513564966784717],[121,49,68,0.028061303711400448],[121,49,69,0.034655824653489015],[121,49,70,0.041270072399168654],[121,49,71,0.047880937817280395],[121,49,72,0.05446847776212457],[121,49,73,0.06101522571133555],[121,49,74,0.06750559427895973],[121,49,75,0.0739253703085769],[121,49,76,0.08026130300337642],[121,49,77,0.08608555692637138],[121,49,78,0.09104733082866553],[121,49,79,0.0959136604947524],[121,50,64,0.014255174218025286],[121,50,65,0.02068920714772304],[121,50,66,0.027199307260032647],[121,50,67,0.033800386335922014],[121,50,68,0.040475365096849986],[121,50,69,0.04718973896354039],[121,50,70,0.053913992434657526],[121,50,71,0.06062318765620814],[121,50,72,0.06729614381858476],[121,50,73,0.0739147051635022],[121,50,74,0.08046309869602836],[121,50,75,0.08622782554479304],[121,50,76,0.09164168343116678],[121,50,77,0.09695706583034162],[121,50,78,0.10217879818797311],[121,50,79,0.10731154446170042],[121,51,64,0.025821721623882993],[121,51,65,0.03239276998592891],[121,51,66,0.03903531724268589],[121,51,67,0.045766335776460415],[121,51,68,0.05256771644715106],[121,51,69,0.05940186011312741],[121,51,70,0.06623673867937895],[121,51,71,0.07297043631890196],[121,51,72,0.07901341238500464],[121,51,73,0.08494541902246301],[121,51,74,0.0907746791368721],[121,51,75,0.09650744430657428],[121,51,76,0.10214851412377521],[121,51,77,0.10770166540647301],[121,51,78,0.11316999101571854],[121,51,79,0.11855614823102498],[121,52,64,0.034890051488466814],[121,52,65,0.04223428436035368],[121,52,66,0.049396744533125356],[121,52,67,0.056348831278257495],[121,52,68,0.06310015318713018],[121,52,69,0.06968195560876152],[121,52,70,0.07611956046102511],[121,52,71,0.0824327423939953],[121,52,72,0.08863663545431144],[121,52,73,0.09474255547864413],[121,52,74,0.10075873687776413],[121,52,75,0.10669098271621164],[121,52,76,0.11254322723278744],[121,52,77,0.11831801018195505],[121,52,78,0.12401686260222347],[121,52,79,0.1296406038349156],[121,53,64,0.04353051613208486],[121,53,65,0.050972966738775397],[121,53,66,0.058238155127566874],[121,53,67,0.06529567053699262],[121,53,68,0.07215607774204398],[121,53,69,0.07885338609121663],[121,53,70,0.08541514336917701],[121,53,71,0.09186278510043541],[121,53,72,0.09821256973086688],[121,53,73,0.10447643201272289],[121,53,74,0.1106627531491243],[121,53,75,0.11677704649333712],[121,53,76,0.12282255783472808],[121,53,77,0.12880077953517732],[121,53,78,0.13471187800339474],[121,53,79,0.14055503421034873],[121,54,64,0.05221068773788063],[121,54,65,0.059744504497680456],[121,54,66,0.06710413921402325],[121,54,67,0.07425762244282039],[121,54,68,0.08121652060179296],[121,54,69,0.08801750111529712],[121,54,70,0.09469028715558737],[121,54,71,0.10125797896978984],[121,54,72,0.10773801157064448],[121,54,73,0.11414303309451344],[121,54,74,0.12048170229023936],[121,54,75,0.12675940383721698],[121,54,76,0.13297888042363212],[121,54,77,0.1391407807442443],[121,54,78,0.14524412279794763],[121,54,79,0.15128667207893068],[121,55,64,0.06092118375268486],[121,55,65,0.06853968123317287],[121,55,66,0.07598562838811325],[121,55,67,0.08322576804310607],[121,55,68,0.0902726967437853],[121,55,69,0.09716559324374523],[121,55,70,0.10393627100108115],[121,55,71,0.11060947094701114],[121,55,72,0.11720383549732621],[121,55,73,0.12373280563925432],[121,55,74,0.13020543947884994],[121,55,75,0.13662715086402782],[121,55,76,0.1430003669266295],[121,55,77,0.1493251036115163],[121,55,78,0.1555994584782588],[121,55,79,0.16182002027190992],[121,56,64,0.06964555520724214],[121,56,65,0.07734225048901534],[121,56,66,0.08486660586910054],[121,56,67,0.09218435829334429],[121,56,68,0.09930914496320445],[121,56,69,0.10628247301832687],[121,56,70,0.11313812916959251],[121,56,71,0.11990244388092734],[121,56,72,0.12659527552888744],[121,56,73,0.13323091994691175],[121,56,74,0.13981894367517636],[121,56,75,0.14636493946208218],[121,56,76,0.1528712027871499],[121,56,77,0.1593373283955854],[121,56,78,0.16576072604872708],[121,56,79,0.17213705490236314],[121,57,64,0.07836081037741147],[121,57,65,0.08612944634832874],[121,57,66,0.09372460125816555],[121,57,67,0.10111128981980927],[121,57,68,0.10830418184732836],[121,57,69,0.11534689923186464],[121,57,70,0.12227505652184276],[121,57,71,0.1291164970371968],[121,57,72,0.1358922812062131],[121,57,73,0.14261760245703867],[121,57,74,0.14930262893481733],[121,57,75,0.15595326953557603],[121,57,76,0.16257186296707746],[121,57,77,0.1691577887630537],[121,57,78,0.1757079993872759],[121,57,79,0.18221747276820036],[121,58,64,0.08703802145310735],[121,58,65,0.09487257779335163],[121,58,66,0.10253126909547594],[121,58,67,0.10997866420644281],[121,58,68,0.11723043879964354],[121,58,69,0.12433209143813644],[121,58,70,0.1313208950088575],[121,58,71,0.138226105810942],[121,58,72,0.1450699504728692],[121,58,73,0.15186854241870937],[121,58,74,0.1586327261181446],[121,58,75,0.1653688475702256],[121,58,76,0.17207944968527705],[121,58,77,0.17876389144117974],[121,58,78,0.1854188898962262],[121,58,79,0.19203898434128772],[121,59,64,0.09564301608713503],[121,59,65,0.10353770877149672],[121,59,66,0.11125305320355192],[121,59,67,0.11875343283599253],[121,59,68,0.1260554841813432],[121,59,69,0.133206326795034],[121,59,70,0.14024470325459562],[121,59,71,0.14720116274494097],[121,59,72,0.1540990414887288],[121,59,73,0.16095537451355538],[121,59,74,0.16778173696710477],[121,59,75,0.17458501340198235],[121,59,76,0.18136809366186324],[121,59,77,0.18813049420804506],[121,59,78,0.19486890392732917],[121,59,79,0.20157765365880664],[121,60,64,0.10413715519209048],[121,60,65,0.1120864254004998],[121,60,66,0.11985193829842335],[121,60,67,0.12739812880953225],[121,60,68,0.13474253213260529],[121,60,69,0.14193362283244287],[121,60,70,0.149011410834789],[121,60,71,0.15600760145927384],[121,60,72,0.1629465649626872],[121,60,73,0.16984623897517362],[121,60,74,0.1767189620283827],[121,60,75,0.18357223658077598],[121,60,76,0.19040942015085832],[121,60,77,0.19723034337233006],[121,60,78,0.2040318539829069],[121,60,79,0.21080828595127718],[121,61,64,0.11247818750996612],[121,61,65,0.12047668082331754],[121,61,66,0.1282862793512114],[121,61,67,0.13587167639453457],[121,61,68,0.14325122848857302],[121,61,69,0.1504744965169175],[121,61,70,0.15758254756942147],[121,61,71,0.16460809373995852],[121,61,72,0.17157644716417947],[121,61,73,0.17850640925696665],[121,61,74,0.18541109234633446],[121,61,75,0.19229867210262205],[121,61,76,0.19917306936335735],[121,61,77,0.2060345601533873],[121,61,78,0.2128803128936959],[121,61,79,0.21970485198119832],[121,62,64,0.12062120482891504],[121,62,65,0.12866374181950807],[121,62,66,0.13651173302333125],[121,62,67,0.1441303025344686],[121,62,68,0.15153853852747334],[121,62,69,0.158786824544892],[121,62,70,0.16591707294040742],[121,62,71,0.17296284505988305],[121,62,72,0.17995028902763188],[121,62,73,0.18689901278033647],[121,62,74,0.19382289055099006],[121,62,75,0.20073080120370496],[121,62,76,0.20762729701809263],[121,62,77,0.21451320171745636],[121,62,78,0.221386136725186],[121,62,79,0.22824097481893313],[121,63,64,0.12851970400246898],[121,63,65,0.13660124343671953],[121,63,66,0.14448229753435515],[121,63,67,0.15212855687018603],[121,63,68,0.15955974308949633],[121,63,69,0.16682681148379064],[121,63,70,0.1739723123227254],[121,63,71,0.18103049527377904],[121,63,72,0.18802822812681885],[121,63,73,0.19498585155500697],[121,63,74,0.20191796812584592],[121,63,75,0.20883416397149024],[121,63,76,0.21573966172210537],[121,63,77,0.22263590349828816],[121,63,78,0.2295210629453796],[121,63,79,0.23639048547429065],[121,64,64,0.1361267274618117],[121,64,65,0.1442423231839813],[121,64,66,0.15215143234658438],[121,64,67,0.1598204114991249],[121,64,68,0.16726951413532795],[121,64,69,0.17455003666918328],[121,64,70,0.18170497076874048],[121,64,71,0.18876909504745976],[121,64,72,0.19576987388595826],[121,64,73,0.2027282928289439],[121,64,74,0.2096596287861145],[121,64,75,0.21657415345852601],[121,64,76,0.22347776860385],[121,64,77,0.23037257194335378],[121,64,78,0.23725735269730688],[121,64,79,0.24412801591428596],[121,65,64,0.14339609612707369],[121,65,65,0.1515408488540929],[121,65,66,0.1594732718840464],[121,65,67,0.16716045483715902],[121,65,68,0.17462308425394482],[121,65,69,0.18191259450553807],[121,65,70,0.18907223912026871],[121,65,71,0.1961371729084103],[121,65,72,0.2031353310097832],[121,65,73,0.21008824482554958],[121,65,74,0.21701179307920293],[121,65,75,0.2239168864424238],[121,65,76,0.2308100843511821],[121,65,77,0.23769414282452897],[121,65,78,0.24456849227993582],[121,65,79,0.2514296445151756],[121,66,64,0.1502837364001694],[121,66,65,0.15845274172997947],[121,66,66,0.1664039351048736],[121,66,67,0.17410518146489362],[121,66,68,0.1815775120638721],[121,66,69,0.18887233017244714],[121,66,70,0.1960329944992739],[121,66,71,0.2030948950055401],[121,66,72,0.21008631324233532],[121,66,73,0.2170292196825474],[121,66,74,0.22394000630749858],[121,66,75,0.2308301528976626],[121,66,76,0.23770682566482718],[121,66,77,0.24457340704828903],[121,66,78,0.2514299556770949],[121,66,79,0.2582735956743404],[121,67,64,0.15674910183428342],[121,67,65,0.16493739583381237],[121,67,66,0.17290293164308598],[121,67,67,0.18061437873144373],[121,67,68,0.18809304433837648],[121,67,69,0.19539017162059227],[121,67,70,0.2025490961078242],[121,67,71,0.2096053185443228],[121,67,72,0.21658734844269148],[121,67,73,0.2235174845867973],[121,67,74,0.2304125307560101],[121,67,75,0.23728444513110128],[121,67,76,0.24414092202894785],[121,67,77,0.25098590479705807],[121,67,78,0.25782002887686295],[121,67,79,0.2646409942170521],[121,68,64,0.1627566898593502],[121,68,65,0.17095919365913118],[121,68,66,0.17893466501623037],[121,68,67,0.1866526106691811],[121,68,68,0.19413457546633853],[121,68,69,0.2014315585248569],[121,68,70,0.20858677705419532],[121,68,71,0.2156357396542701],[121,68,72,0.22260707576240943],[121,68,73,0.22952330190310757],[121,68,74,0.23640152301979672],[121,68,75,0.24325406735527688],[121,68,76,0.25008905353347893],[121,68,77,0.25691088867817113],[121,68,78,0.2637206965811113],[121,68,79,0.27051667510327204],[121,69,64,0.1682776588201762],[121,69,65,0.1764891238939898],[121,69,66,0.18447003865640604],[121,69,67,0.19219080522721646],[121,69,68,0.1996732104936783],[121,69,69,0.20696797463917588],[121,69,70,0.2141181387914222],[121,69,71,0.22115914234209744],[121,69,72,0.22811964155764497],[121,69,73,0.23502226481307753],[121,69,74,0.241884302728335],[121,69,75,0.24871833167377794],[121,69,76,0.2555327692969645],[121,69,77,0.26233236090521345],[121,69,78,0.2691185957146706],[121,69,79,0.27589005214692963],[121,70,64,0.1733041978648357],[121,70,65,0.1815196573202113],[121,70,66,0.18950183112213678],[121,70,67,0.1972221199348393],[121,70,68,0.20470257699793196],[121,70,69,0.21199360726934102],[121,70,70,0.21913801455487725],[121,70,71,0.2261710869100941],[121,70,72,0.23312140776058465],[121,70,73,0.2400116034571147],[121,70,74,0.24685902553860786],[121,70,75,0.25367636616289224],[121,70,76,0.26047220535047233],[121,70,77,0.2672514888686687],[121,70,78,0.2740159357593435],[121,70,79,0.2807643746833497],[121,71,64,0.17787106402447667],[121,71,65,0.18608724962374656],[121,71,66,0.19406819544547244],[121,71,67,0.20178643871120305],[121,71,68,0.20926424523811524],[121,71,69,0.2165515192409112],[121,71,70,0.22369064038477515],[121,71,71,0.2307165626583635],[121,71,72,0.23765762043171493],[121,71,73,0.2445362706247802],[121,71,74,0.25136976924870785],[121,71,75,0.258170780769267],[121,71,76,0.26494791892742653],[121,71,77,0.27170621783441146],[121,71,78,0.2784475323346209],[121,71,79,0.2851708667998084],[121,72,64,0.18201360914824669],[121,72,65,0.19022889086604988],[121,72,66,0.19820774991893791],[121,72,67,0.2059240184635905],[121,72,68,0.2134000453253866],[121,72,69,0.22068491262892032],[121,72,70,0.22782027500915855],[121,72,71,0.23484047852873474],[121,72,72,0.24177336332963098],[121,72,73,0.24864100180538973],[121,72,74,0.2554603705428107],[121,72,75,0.2622439544704225],[121,72,76,0.269000281837684],[121,72,77,0.2757343888321154],[121,72,78,0.2824482128185135],[121,72,79,0.28914091335521125],[121,73,64,0.18576069838343692],[121,73,65,0.19397469827828936],[121,73,66,0.20195183953012213],[121,73,67,0.20966741632259572],[121,73,68,0.21714367840895862],[121,73,69,0.2244284733357482],[121,73,70,0.23156235350722568],[121,73,71,0.23857872254313195],[121,73,72,0.2455046357074351],[121,73,73,0.25236153490307217],[121,73,74,0.2591659164672703],[121,73,75,0.26592993019241756],[121,73,76,0.27266190818605146],[121,73,77,0.27936682236864285],[121,73,78,0.286046669586525],[121,73,79,0.29270078348973444],[121,74,64,0.18913695835437047],[121,74,65,0.19735018096888357],[121,74,66,0.2053268106651358],[121,74,67,0.21304376865582192],[121,74,68,0.22052299105490678],[121,74,69,0.22781062632713983],[121,74,70,0.23494570457990177],[121,74,71,0.24196031921104277],[121,74,72,0.24888042603372038],[121,74,73,0.2557265755782133],[121,74,74,0.2625145767902021],[121,74,75,0.26925609053851063],[121,74,76,0.27595915153692246],[121,74,77,0.2826286174726409],[121,74,78,0.28926654431534865],[121,74,79,0.2958724869557319],[121,75,64,0.19216499162306766],[121,75,65,0.20037847190869823],[121,75,66,0.20835625420191933],[121,75,67,0.21607703962479136],[121,75,68,0.2235622204640061],[121,75,69,0.23085576334079022],[121,75,70,0.23799474241133545],[121,75,71,0.24500956423196574],[121,75,72,0.2519247663578841],[121,75,73,0.2587597472510929],[121,75,74,0.26552942570114096],[121,75,75,0.27224482816018175],[121,75,76,0.27891360258958564],[121,75,77,0.2855404576072518],[121,75,78,0.29212752590988833],[121,75,79,0.29867465112289804],[121,76,64,0.19486755411776477],[121,76,65,0.20308252386370595],[121,76,66,0.21106321365956468],[121,76,67,0.2187902359584735],[121,76,68,0.22628420722591008],[121,76,69,0.23358643981545993],[121,76,70,0.24073162995468184],[121,76,71,0.24774813345221267],[121,76,72,0.2546587644496726],[121,76,73,0.26148152311461703],[121,76,74,0.2682302504614049],[121,76,75,0.27491520869022024],[121,76,76,0.2815435856355584],[121,76,77,0.2881199221124502],[121,76,78,0.29464646113860815],[121,76,79,0.3011234181934851],[121,77,64,0.1972696920778318],[121,77,65,0.20548726579848955],[121,77,66,0.21347235491474442],[121,77,67,0.22120758445343153],[121,77,68,0.2287125721357664],[121,77,69,0.23602553761043715],[121,77,70,0.24317841029169787],[121,77,71,0.25019716284750315],[121,77,72,0.2571026106526449],[121,77,73,0.26391113731268645],[121,77,74,0.2706353444275891],[121,77,75,0.2772846239740275],[121,77,76,0.2838656518929296],[121,77,77,0.2903828016718961],[121,77,78,0.29683847690787296],[121,77,79,0.30323336202365925],[121,78,64,0.19940083494342611],[121,78,65,0.20762171614490513],[121,78,66,0.2156120938586058],[121,78,67,0.22335666856445888],[121,78,68,0.23087385344529623],[121,78,69,0.23819838992391087],[121,78,70,0.2453591025482626],[121,78,71,0.2523792961305184],[121,78,72,0.2592775562157448],[121,78,73,0.26606847226383945],[121,78,74,0.27276328169435576],[121,78,75,0.2793704331618329],[121,78,76,0.2858960676443394],[121,78,77,0.2923444161382299],[121,78,78,0.29871811295462947],[121,78,79,0.3050184238076166],[121,79,64,0.20127730156880264],[121,79,65,0.20950159618015424],[121,79,66,0.21749753486031442],[121,79,67,0.22525193160815074],[121,79,68,0.23278182112067314],[121,79,69,0.24011814716668756],[121,79,70,0.2472863458416496],[121,79,71,0.25430681204266986],[121,79,72,0.2611957021107762],[121,79,73,0.2679656553443077],[121,79,74,0.2746264325101943],[121,79,75,0.28118546970685826],[121,79,76,0.28764834615624807],[121,79,77,0.29401916472107326],[121,79,78,0.3003008441536018],[121,79,79,0.3064953222840904],[121,80,64,0.20284900715594825],[121,80,65,0.2110762854001743],[121,80,66,0.2190782685293993],[121,80,67,0.22684396857099745],[121,80,68,0.2343889372479269],[121,80,69,0.2417400733033423],[121,80,70,0.24891916757534402],[121,80,71,0.2559434485693374],[121,80,72,0.2628263936112999],[121,80,73,0.26957845446815126],[121,80,74,0.2762076955237497],[121,80,75,0.2827203428367409],[121,80,76,0.2891212426406108],[121,80,77,0.2954142280747718],[121,80,78,0.3016023931552509],[121,80,79,0.3076882732040944],[121,81,64,0.20406456184525662],[121,81,65,0.2122936466803923],[121,81,66,0.22030212928748563],[121,81,67,0.22808134786898152],[121,81,68,0.23564533913996846],[121,81,69,0.24301678879943125],[121,81,70,0.2502136198493233],[121,81,71,0.25724963084907154],[121,81,72,0.2641353269476127],[121,81,73,0.2708786603528502],[121,81,74,0.27748567826200715],[121,81,75,0.28396107652690916],[121,81,76,0.2903086575748901],[121,81,77,0.296531691346631],[121,81,78,0.30263317824364583],[121,81,79,0.30861601329974564],[121,82,64,0.20488953172502428],[121,82,65,0.2131182570862189],[121,82,66,0.2211331811362126],[121,82,67,0.2289281178056383],[121,82,68,0.2365156215336708],[121,82,69,0.2439140814850758],[121,82,70,0.2511373793902565],[121,82,71,0.258195636425851],[121,82,72,0.2650960791334224],[121,82,73,0.2718438090941016],[121,82,74,0.27844247428212754],[121,82,75,0.28489484028608253],[121,82,76,0.29120325984831313],[121,82,77,0.29737003942834594],[121,82,78,0.3033977017417726],[121,82,79,0.3092891434614097],[121,83,64,0.20530399379603967],[121,83,65,0.21352902768680693],[121,83,66,0.22154943275825872],[121,83,67,0.22936165112665907],[121,83,68,0.2369768444401662],[121,83,69,0.24440910829142848],[121,83,70,0.2516681697977346],[121,83,71,0.25876026013064557],[121,83,72,0.26568903271312916],[121,83,73,0.27245637884603163],[121,83,74,0.2790631385448212],[121,83,75,0.2855097046512448],[121,83,76,0.29179651856392536],[121,83,77,0.2979244562046599],[121,83,78,0.30389510309991585],[121,83,79,0.30971091770891634],[121,84,64,0.20530024303403163],[121,84,65,0.21351697219953483],[121,84,66,0.22154069701704016],[121,84,67,0.22937062815394715],[121,84,68,0.23701667246824085],[121,84,69,0.24448872036905042],[121,84,70,0.251792298387569],[121,84,71,0.2589295843553224],[121,84,72,0.26590039653162106],[121,84,73,0.2727030732233754],[121,84,74,0.2793352404911631],[121,84,75,0.2857944658395414],[121,84,76,0.29207879608931964],[121,84,77,0.29818717792240623],[121,84,78,0.3041197598724783],[121,84,79,0.3098780748060753],[121,85,64,0.20488065688626195],[121,85,65,0.2130831297065656],[121,85,66,0.22110659993862836],[121,85,67,0.22895316335119764],[121,85,68,0.23663165016470528],[121,85,69,0.24414791575046246],[121,85,70,0.25150331134504766],[121,85,71,0.2584189091830949],[121,85,72,0.26525870434637444],[121,85,73,0.27209229596466167],[121,85,74,0.27891068286554227],[121,85,75,0.28570433004034207],[121,85,76,0.2920395024712166],[121,85,77,0.2981479001530543],[121,85,78,0.30406193543517224],[121,85,79,0.3097817107819167],[121,86,64,0.20405572300153935],[121,86,65,0.21223664719754357],[121,86,66,0.2202547448141315],[121,86,67,0.228115080761523],[121,86,68,0.23582561853073514],[121,86,69,0.24338842435579766],[121,86,70,0.2500230319726573],[121,86,71,0.25660646814594895],[121,86,72,0.2631902438217554],[121,86,73,0.26976939345189016],[121,86,74,0.2763388745078032],[121,86,75,0.2828928376956039],[121,86,76,0.28942402756661956],[121,86,77,0.29592331540225053],[121,86,78,0.3023793659206875],[121,86,79,0.3087784390347086],[121,87,64,0.20284223553098957],[121,87,65,0.2109930272395911],[121,87,66,0.2189990366220013],[121,87,67,0.2268683433387611],[121,87,68,0.23460827747991378],[121,87,69,0.24181896705827832],[121,87,70,0.24813778746551263],[121,87,71,0.2544531674163438],[121,87,72,0.26076370175421204],[121,87,73,0.2670687693085701],[121,87,74,0.2733675671663871],[121,87,75,0.2796582820593671],[121,87,76,0.2859374013543432],[121,87,77,0.2921991657669184],[121,87,78,0.29843516555999516],[121,87,79,0.3046340816433547],[121,88,64,0.20126166490595027],[121,88,65,0.20937254565304886],[121,88,66,0.21735817156000461],[121,88,67,0.22522964080279087],[121,88,68,0.2329938986361542],[121,88,69,0.23988167522523826],[121,88,70,0.24593358935893667],[121,88,71,0.2519700462682295],[121,88,72,0.25799400258357147],[121,88,73,0.26400930215351043],[121,88,74,0.2700195880369728],[121,88,75,0.27602736090601604],[121,88,76,0.28203318665150784],[121,88,77,0.28803505558785797],[121,88,78,0.29402789526547735],[121,88,79,0.30000323852519445],[121,89,64,0.19933870559860936],[121,89,65,0.20739884367824313],[121,89,66,0.2153542960954656],[121,89,67,0.22321914028513123],[121,89,68,0.23100019252771592],[121,89,69,0.23763594830830193],[121,89,70,0.24341632063035987],[121,89,71,0.24916703248278926],[121,89,72,0.25489534712149176],[121,89,73,0.26060961405394],[121,89,74,0.26631804646096496],[121,89,75,0.2720276545579212],[121,89,76,0.2777433380247909],[121,89,77,0.28346714020829566],[121,89,78,0.2891976663812955],[121,89,79,0.2949296679399555],[121,90,64,0.19710000599788255],[121,90,65,0.20509769875231365],[121,90,66,0.21301183958716735],[121,90,67,0.22085940369164964],[121,90,68,0.22864733391453002],[121,90,69,0.23508315518528797],[121,90,70,0.2405911586748055],[121,90,71,0.24605348334376212],[121,90,72,0.2514815697316086],[121,90,73,0.2568882321524535],[121,90,74,0.26228629184560576],[121,90,75,0.2676873757014094],[121,90,76,0.27310088405586674],[121,90,77,0.27853313059016466],[121,90,78,0.28398665692229424],[121,90,79,0.2894597240419031],[121,91,64,0.19457308418572894],[121,91,65,0.20249597767406302],[121,91,66,0.21035652420132023],[121,91,67,0.2181744753927414],[121,91,68,0.22595714868849012],[121,91,69,0.2322246000853714],[121,91,70,0.2374631442866054],[121,91,71,0.24263859799175844],[121,91,72,0.24776637950291208],[121,91,73,0.2528636471123432],[121,91,74,0.2579477811341536],[121,91,75,0.2630350411254353],[121,91,76,0.2681394021752278],[121,91,77,0.2732715736510295],[121,91,78,0.2784382033122736],[121,91,79,0.2836412692325243],[121,92,64,0.19178543307678408],[121,92,65,0.19962077561804914],[121,92,66,0.20741455553649996],[121,92,67,0.21518914355721122],[121,92,68,0.22295246550971257],[121,92,69,0.22906207595951938],[121,92,70,0.2340376071543824],[121,92,71,0.2389316987330515],[121,92,72,0.24376348334817202],[121,92,73,0.24855426668070268],[121,92,74,0.25332585451677675],[121,92,75,0.2580990644804759],[121,92,76,0.26289242669981006],[121,92,77,0.26772107716388643],[121,92,78,0.2725958470177015],[121,92,79,0.27752255054190333],[121,93,64,0.1887638180846622],[121,93,65,0.19649874416459048],[121,93,66,0.20421199708626023],[121,93,67,0.21192837817212754],[121,93,68,0.21965663508390876],[121,93,69,0.22559826005286032],[121,93,70,0.23032044538221483],[121,93,71,0.23494237908900942],[121,93,72,0.23948658912292273],[121,93,73,0.24397826280403145],[121,93,74,0.248443418179056],[121,93,75,0.25290726923217577],[121,93,76,0.25739278963418244],[121,93,77,0.2619194791643874],[121,93,78,0.26650233639770426],[121,93,79,0.27115104071949314],[121,94,64,0.18553377020015877],[121,94,65,0.19315561123858282],[121,94,66,0.2007743314018962],[121,94,67,0.20841694853586393],[121,94,68,0.21609321974573276],[121,94,69,0.22183694918171848],[121,94,70,0.22631825675061518],[121,94,71,0.23068051654978963],[121,94,72,0.23494928701287837],[121,94,73,0.23915331085705085],[121,94,74,0.24332253298385303],[121,94,75,0.24748632105583818],[121,94,76,0.25167189383972843],[121,94,77,0.2559029618287111],[121,94,78,0.26019858408524504],[121,94,79,0.26457224468636265],[121,95,64,0.18211927710936146],[121,95,65,0.18961589559659656],[121,95,66,0.19712621057118102],[121,95,67,0.20467922277505987],[121,95,68,0.21228585579005968],[121,95,69,0.2177831324248852],[121,95,70,0.22203831961850257],[121,95,71,0.22615614816193177],[121,95,72,0.23016480758037977],[121,95,73,0.23409621966364044],[121,95,74,0.2379839080752677],[121,95,75,0.24186107898540288],[121,95,76,0.2457589182186966],[121,95,77,0.24970510980349617],[121,95,78,0.253722580209658],[121,95,79,0.25782847197503744],[121,96,64,0.1785426747415201],[121,96,65,0.1859028182668041],[121,96,66,0.19329139839998632],[121,96,67,0.20073915171652784],[121,96,68,0.2082582907858402],[121,96,69,0.21344289913083803],[121,96,70,0.21748842154166484],[121,96,71,0.22137920723385543],[121,96,72,0.22514565499322575],[121,96,73,0.22882245109875002],[121,96,74,0.23244629847982917],[121,96,75,0.23605386469325051],[121,96,76,0.23967995459926625],[121,96,77,0.2433559129858504],[121,96,78,0.24710826176582382],[121,96,79,0.25095757575832556],[121,97,64,0.17482474141616633],[121,97,65,0.18203841312858232],[121,97,66,0.18929290647127783],[121,97,67,0.1966204392409738],[121,97,68,0.20403459791426404],[121,97,69,0.2088231803205867],[121,97,70,0.2126765338447396],[121,97,71,0.216359119586348],[121,97,72,0.21990311408226312],[121,97,73,0.22334552816193737],[121,97,74,0.22672580585995572],[121,97,75,0.23008364933492587],[121,97,76,0.23345707604361604],[121,97,77,0.23688071376606554],[121,97,78,0.24038433842979148],[121,97,79,0.24399165904442888],[121,98,64,0.17098499655685687],[121,98,65,0.17804383861870995],[121,98,66,0.18515332606066548],[121,98,67,0.1923469010575094],[121,98,68,0.1996395691953368],[121,98,69,0.20393132173207415],[121,98,70,0.20761033053493808],[121,98,71,0.21110425790933182],[121,98,72,0.21444662998977387],[121,98,73,0.21767633050919352],[121,98,74,0.22083508165037075],[121,98,75,0.2239651574479165],[121,98,76,0.2271073363356169],[121,98,77,0.2302990987604985],[121,98,78,0.2335730751166803],[121,98,79,0.23695574859427504],[121,99,64,0.1670422057520534],[121,99,65,0.17393989236583138],[121,99,66,0.18089535770635684],[121,99,67,0.18794301366313534],[121,99,68,0.19502929726567547],[121,99,69,0.1987744869046255],[121,99,70,0.20229655008445352],[121,99,71,0.20562125290921468],[121,99,72,0.20878305927652804],[121,99,73,0.21182227651724977],[121,99,74,0.21478243187670995],[121,99,75,0.21770788744290678],[121,99,76,0.22064170043491868],[121,99,77,0.22362373507364042],[121,99,78,0.2266890315706057],[121,99,79,0.2298664370945352],[121,100,64,0.16301509377341894],[121,100,65,0.1697477303858017],[121,100,66,0.1765425400655971],[121,100,67,0.18343465509136606],[121,100,68,0.18974444011395505],[121,100,69,0.19335888884402846],[121,100,70,0.196740198737966],[121,100,71,0.1999141600462152],[121,100,72,0.20291579145462516],[121,100,73,0.20578639103690421],[121,100,74,0.20857082302029115],[121,100,75,0.21131504827274997],[121,100,76,0.21406390571319794],[121,100,77,0.216859151140033],[121,100,78,0.21973775927148598],[121,100,79,0.22273049409957554],[121,101,64,0.1589211948219336],[121,101,65,0.16548747295806862],[121,101,66,0.17211761318257382],[121,101,67,0.1788472253911785],[121,101,68,0.18419675730718676],[121,101,69,0.1876921508292603],[121,101,70,0.19094712868015196],[121,101,71,0.1939872329324354],[121,101,72,0.19684768855980844],[121,101,73,0.1995703756084992],[121,101,74,0.20220104158590974],[121,101,75,0.20478676224288292],[121,101,76,0.2073736582070182],[121,101,77,0.21000487420570085],[121,101,78,0.21271882690301946],[121,101,79,0.2155477266700689],[121,102,64,0.15475433539939504],[121,102,65,0.16115287818346644],[121,102,66,0.1676143812159794],[121,102,67,0.17417469304041516],[121,102,68,0.1784314301941819],[121,102,69,0.1818198443213201],[121,102,70,0.18496324203546713],[121,102,71,0.1878866304838976],[121,102,72,0.1906250648566372],[121,102,73,0.19322056213700417],[121,102,74,0.1957192584866153],[121,102,75,0.19816881866128502],[121,102,76,0.20061610512678668],[121,102,77,0.20310511381590557],[121,102,78,0.2056751827447412],[121,102,79,0.20835947899242804],[121,103,64,0.15049467882414677],[121,103,65,0.15672245766269538],[121,103,66,0.16300988495671814],[121,103,67,0.16896225976850862],[121,103,68,0.17251505335293496],[121,103,69,0.17581025069334308],[121,103,70,0.17885833392654732],[121,103,71,0.18168344940282968],[121,103,72,0.18432005339205404],[121,103,73,0.18680979395467212],[121,103,74,0.18919863825341007],[121,103,75,0.19153425385530456],[121,103,76,0.19386365184315194],[121,103,77,0.1962310988245127],[121,103,78,0.19867630419940793],[121,103,79,0.2012328883303499],[121,104,64,0.14612740765788895],[121,104,65,0.15218019100980434],[121,104,66,0.15828713707799053],[121,104,67,0.16303607929370587],[121,104,68,0.16650889450059822],[121,104,69,0.169725669893062],[121,104,70,0.17269553887303715],[121,104,71,0.17544144673090928],[121,104,72,0.17799679601922552],[121,104,73,0.1804023277407526],[121,104,74,0.18270324769436572],[121,104,75,0.1849466065997874],[121,104,76,0.18717894189505682],[121,104,77,0.18944418837296692],[121,104,78,0.19178186409880688],[121,104,79,0.19422553733718492],[121,105,64,0.14164461603701936],[121,105,65,0.14751738792788344],[121,105,66,0.15341317008754254],[121,105,67,0.15706137038793308],[121,105,68,0.16046718461774415],[121,105,69,0.16362077503196593],[121,105,70,0.1665297537003962],[121,105,71,0.16921553272029363],[121,105,72,0.1717100059007124],[121,105,73,0.17405246358945975],[121,105,74,0.17628674995346236],[121,105,75,0.17845867131187232],[121,105,76,0.18061366340500487],[121,105,77,0.1827947247652947],[121,105,78,0.1850406226431447],[121,105,79,0.18738437723629822],[121,106,64,0.13704723137324284],[121,106,65,0.1427345359243453],[121,106,66,0.14749631741778846],[121,106,67,0.15108353802446844],[121,106,68,0.15443556698271857],[121,106,69,0.1575411794126636],[121,106,70,0.1604063282439189],[121,106,71,0.16305058777143192],[121,106,72,0.16550391014832194],[121,106,73,0.1678036098421605],[121,106,74,0.16999158522473845],[121,106,75,0.17211178577268976],[121,106,76,0.174207932658858],[121,106,77,0.17632149981602036],[121,106,78,0.17848996185972754],[121,106,79,0.18074531457090634],[121,107,64,0.132347305770272],[121,107,65,0.1378435145706837],[121,107,66,0.14160004243792637],[121,107,67,0.1451378274155956],[121,107,68,0.14844920291464694],[121,107,69,0.1515216742867614],[121,107,70,0.15435944429578377],[121,107,71,0.15697998868529078],[121,107,72,0.15941092633670967],[121,107,73,0.16168710964561106],[121,107,74,0.16384794403404396],[121,107,75,0.16593494485071233],[121,107,76,0.16798953923995621],[121,107,77,0.17005111988880617],[121,107,78,0.1721553568928978],[121,107,79,0.17433277332190414],[121,108,64,0.12757067917227627],[121,108,65,0.13206393642265132],[121,108,66,0.1357469932722979],[121,108,67,0.13924695346507207],[121,108,68,0.1425305319018547],[121,108,69,0.14558413498850703],[121,108,70,0.1484101804400143],[121,108,71,0.1510238419114884],[121,108,72,0.15345007065068245],[121,108,73,0.15572082712018087],[121,108,74,0.1578725311442932],[121,108,75,0.15994373850371313],[121,108,76,0.16197305126442055],[121,108,77,0.16399726848982474],[121,108,78,0.16604978335065806],[121,108,79,0.16815923202055655],[121,109,64,0.12252009036666851],[121,109,65,0.12629838460914192],[121,109,66,0.1299445707269],[121,109,67,0.13341831918047295],[121,109,68,0.13668663088854913],[121,109,69,0.13973503975304166],[121,109,70,0.1425642066624786],[121,109,71,0.14518686730676883],[121,109,72,0.14762504086274286],[121,109,73,0.1499074360762872],[121,109,74,0.1520670628273246],[121,109,75,0.15413905667292377],[121,109,76,0.15615872326845992],[121,109,77,0.1581598089704956],[121,109,78,0.16017300333158016],[121,109,79,0.16222467861110973],[121,110,64,0.11680706454708606],[121,110,65,0.1205498929601348],[121,110,66,0.12417045124742801],[121,110,67,0.12762956749383203],[121,110,68,0.1308948207671456],[121,110,69,0.13395115561156357],[121,110,70,0.1367975724788483],[121,110,71,0.13944430876472586],[121,110,72,0.14191026664973957],[121,110,73,0.14422062372821542],[121,110,74,0.1464046339454217],[121,110,75,0.14849362581898437],[121,110,76,0.15051920437253272],[121,110,77,0.15251166266063426],[121,110,78,0.15449860821774652],[121,110,79,0.1565038092244618],[121,111,64,0.1110330552947189],[121,111,65,0.11475150251558427],[121,111,66,0.11835770851703081],[121,111,67,0.12181374894382099],[121,111,68,0.12508810554737765],[121,111,69,0.12816547166637868],[121,111,70,0.13104334568797754],[121,111,71,0.13372947136222155],[121,111,72,0.13623951358290085],[121,111,73,0.13859490067971159],[121,111,74,0.14082084008776624],[121,111,75,0.14294451376830966],[121,111,76,0.14499345925868254],[121,111,77,0.1469941417330676],[121,111,78,0.14897072196147024],[121,111,79,0.15094402456665293],[121,112,64,0.10513263790762857],[121,112,65,0.1088365235246175],[121,112,66,0.1124389705470621],[121,112,67,0.11590345921460188],[121,112,68,0.11919974858643151],[121,112,69,0.12231265971354491],[121,112,70,0.12523837211157668],[121,112,71,0.1279821485664802],[121,112,72,0.13055628729658697],[121,112,73,0.1329782230098985],[121,112,74,0.13526878298391076],[121,112,75,0.13745060385905214],[121,112,76,0.13954671439751812],[121,112,77,0.14157928901955125],[121,112,78,0.14356857649181828],[121,112,79,0.14553200771103555],[121,113,64,0.09906511264506133],[121,113,65,0.10276240276931993],[121,113,66,0.10637034033301672],[121,113,67,0.10985402036686315],[121,113,68,0.11318488560478307],[121,113,69,0.11634828775983944],[121,113,70,0.11933928599513535],[121,113,71,0.12216068000981865],[121,113,72,0.12482126596764871],[121,113,73,0.12733422268751163],[121,113,74,0.12971563340482853],[121,113,75,0.1319831480358374],[121,113,76,0.13415479049742346],[121,113,77,0.13624791525580968],[121,113,78,0.1382783169004651],[121,113,79,0.1402594961681393],[121,114,64,0.09281238611645103],[121,114,65,0.09650897282786332],[121,114,66,0.10012984556299559],[121,114,67,0.10364194793535411],[121,114,68,0.10701881941617444],[121,114,69,0.110246753542155],[121,114,70,0.11331990125664793],[121,114,71,0.11623863315631093],[121,114,72,0.11900812390651974],[121,114,73,0.1216370475984044],[121,114,74,0.1241363884674468],[121,114,75,0.12651837107827432],[121,114,76,0.12879551376351817],[121,114,77,0.13097980878836496],[121,114,78,0.13308203239877042],[121,114,79,0.13511118760292978],[121,115,64,0.0863753784447306],[121,115,65,0.09007494087912093],[121,115,66,0.09371404831230706],[121,115,67,0.09726172542543157],[121,115,68,0.10069400573020258],[121,115,69,0.10399852844008452],[121,115,70,0.10716875859254646],[121,115,71,0.11020269522559686],[121,115,72,0.11310180500120894],[121,115,73,0.1158700470950067],[121,115,74,0.11851299282474281],[121,115,75,0.12103704323784821],[121,115,76,0.12344874762571029],[121,115,77,0.1257542256809377],[121,115,78,0.12795869576542704],[121,115,79,0.13006611151379163],[121,116,64,0.07977060573143208],[121,116,65,0.08347454817342151],[121,116,66,0.08713481836513551],[121,116,67,0.09072273276505131],[121,116,68,0.09421718073070076],[121,116,69,0.09760752882172374],[121,116,70,0.10088678388017454],[121,116,71,0.10405065886431913],[121,116,72,0.10709687133620438],[121,116,73,0.11002451351294888],[121,116,74,0.11283349636330604],[121,116,75,0.11552407004224834],[121,116,76,0.11809642276836319],[121,116,77,0.12055036006300791],[121,116,78,0.12288506608779307],[121,116,79,0.12509894863984897],[121,117,64,0.07302694100622556],[121,117,65,0.07673440336435686],[121,117,66,0.08041627332601389],[121,117,67,0.08404633179074203],[121,117,68,0.08760663336781242],[121,117,69,0.09108861756204065],[121,117,70,0.09448506036004974],[121,117,71,0.09778950373684792],[121,117,72,0.10099592879457132],[121,117,73,0.10409848105312776],[121,117,74,0.1070912493565333],[121,117,75,0.10996809973271214],[121,117,76,0.11272256542072973],[121,117,77,0.11534779415876212],[121,117,78,0.11783655370957084],[121,117,79,0.12018129648920306],[121,118,64,0.06618255659117643],[121,118,65,0.06989049264874156],[121,118,66,0.07359188844375443],[121,118,67,0.0772631116173059],[121,118,68,0.08088962508785655],[121,118,69,0.08446523827793759],[121,118,70,0.08798271690784759],[121,118,71,0.09143357605854575],[121,118,72,0.09480813133056556],[121,118,73,0.09809558333603577],[121,118,74,0.10128413596112727],[121,118,75,0.10436114877133576],[121,118,76,0.10731332387080096],[121,118,77,0.11012692746993447],[121,118,78,0.11278804636362381],[121,118,79,0.11528287947613523],[121,119,64,0.05928205057287248],[121,119,65,0.06298536942868388],[121,119,66,0.06670177884431465],[121,119,67,0.07041029652515962],[121,119,68,0.0740999595230974],[121,119,69,0.07776718463942106],[121,119,70,0.08140493454181927],[121,119,71,0.08500286795397476],[121,119,72,0.08854776548510457],[121,119,73,0.09202397084805607],[121,119,74,0.09541384688680922],[121,119,75,0.098698245827802],[121,119,76,0.10185699316831572],[121,119,77,0.10486938461948384],[121,119,78,0.10801365034250887],[121,119,79,0.11214800106863508],[121,120,64,0.052373759382031086],[121,120,65,0.05606552551628377],[121,120,66,0.059790156178600416],[121,120,67,0.06352931831495223],[121,120,68,0.06727570398885654],[121,120,69,0.07102850645454371],[121,120,70,0.07478107266568323],[121,120,71,0.07852139789573064],[121,120,72,0.08223291611115063],[121,120,73,0.08819132828288995],[121,120,74,0.09449185859357659],[121,120,75,0.10069927477364261],[121,120,76,0.10678926652067873],[121,120,77,0.11158191879611905],[121,120,78,0.11520943135077279],[121,120,79,0.11878834706021635],[121,121,64,0.04550724302501057],[121,121,65,0.049178930346032296],[121,121,66,0.052902946039934604],[121,121,67,0.05742948208414335],[121,121,68,0.0640290840682731],[121,121,69,0.07065839065003444],[121,121,70,0.07731181330365623],[121,121,71,0.08397679553630882],[121,121,72,0.09063493266092168],[121,121,73,0.09726307645919134],[121,121,74,0.10383442222700995],[121,121,75,0.11031957579370885],[121,121,76,0.11545881961816903],[121,121,77,0.11884803285838927],[121,121,78,0.12217890404396818],[121,121,79,0.12547738841573336],[121,122,64,0.045651838834099664],[121,122,65,0.05219431292509116],[121,122,66,0.058802427995758196],[121,122,67,0.06546205921149423],[121,122,68,0.07217271681813986],[121,122,69,0.07893939947166821],[121,122,70,0.08575712761641795],[121,122,71,0.09261204522712839],[121,122,72,0.09948286453895835],[121,122,73,0.10634228172460133],[121,122,74,0.1131583601336349],[121,122,75,0.11989557028340915],[121,122,76,0.12307038171509183],[121,122,77,0.12616190805874972],[121,122,78,0.1292033135475643],[121,122,79,0.13222670521264968],[121,123,64,0.053732463462256075],[121,123,65,0.06030335653724604],[121,123,66,0.06695626091023935],[121,123,67,0.0736792467692165],[121,123,68,0.0804751233757141],[121,123,69,0.08735164947146072],[121,123,70,0.09430455536229161],[121,123,71,0.1013189171275483],[121,123,72,0.1083708977895102],[121,123,73,0.11542944716784537],[121,123,74,0.12245795623597676],[121,123,75,0.12781665642574977],[121,123,76,0.1307089140611348],[121,123,77,0.13351854847634173],[121,123,78,0.13628469297542253],[121,123,79,0.13904521590940777],[121,124,64,0.062089531537574405],[121,124,65,0.06866683460867938],[121,124,66,0.07534086182900959],[121,124,67,0.0821016334956035],[121,124,68,0.08895499367413609],[121,124,69,0.09591132494279085],[121,124,70,0.10296713090886327],[121,124,71,0.11010664974769452],[121,124,72,0.11730385856133463],[121,124,73,0.12452442593763827],[121,124,74,0.1317276078199332],[121,124,75,0.13572791103990953],[121,124,76,0.13836075464964803],[121,124,77,0.14091064447943089],[121,124,78,0.14342212379455072],[121,124,79,0.1459383077308486],[121,125,64,0.07073887795941297],[121,125,65,0.0773004945463746],[121,125,66,0.0839715522490987],[121,125,67,0.09074372863919619],[121,125,68,0.09762556575242655],[121,125,69,0.1046298626713503],[121,125,70,0.11175392193327949],[121,125,71,0.11898136626339599],[121,125,72,0.12628436918728841],[121,125,73,0.1336258251807154],[121,125,74,0.14096145386115605],[121,125,75,0.14360878591738968],[121,125,76,0.14601057797586692],[121,125,77,0.14832828066921697],[121,125,78,0.15061118379059188],[121,125,79,0.15290702785876809],[121,126,64,0.07968733797374067],[121,126,65,0.08621155936742704],[121,126,66,0.09285566831747358],[121,126,67,0.09961266870910086],[121,126,68,0.10649340447309],[121,126,69,0.11351282297987107],[121,126,70,0.120669015478858],[121,126,71,0.12794519907679297],[121,126,72,0.13531213423167024],[121,126,73,0.14273047492815866],[121,126,74,0.14909615005322505],[121,126,75,0.15143823326336706],[121,126,76,0.1536413618204553],[121,126,77,0.15575866642579075],[121,126,78,0.15784343858378036],[121,126,79,0.15994733773692602],[121,127,64,0.08893152065544088],[121,127,65,0.09539752900534218],[121,127,66,0.10199139803900488],[121,127,67,0.10870710015729418],[121,127,68,0.11555734308010092],[121,127,69,0.12255890789502007],[121,127,70,0.12971063315327974],[121,127,71,0.13699552366601156],[121,127,72,0.14438331451215808],[121,127,73,0.15183296260260243],[121,127,74,0.15701118417179877],[121,127,75,0.15919487914278435],[121,127,76,0.16123435465880473],[121,127,77,0.16318588932264344],[121,127,78,0.16510597723100665],[121,127,79,0.1670494312996178],[121,128,64,0.09845678108795876],[121,128,65,0.10484517599482113],[121,128,66,0.11136680577850182],[121,128,67,0.11801623920903857],[121,128,68,0.12480758878027469],[121,128,69,0.1317591275601884],[121,128,70,0.13887037650595793],[121,128,71,0.1461243026483985],[121,128,72,0.15348998988128984],[121,128,73,0.16092523376650292],[121,128,74,0.16479648152337098],[121,128,75,0.16685717444394665],[121,128,76,0.16876904369865853],[121,128,77,0.17059069165214175],[121,128,78,0.17238099240553503],[121,128,79,0.1741971178690274],[121,129,64,0.10823639231089213],[121,129,65,0.1145297366379857],[121,129,66,0.12095904517459394],[121,129,67,0.1275191099530389],[121,129,68,0.1342249934305137],[121,129,69,0.14109611592351143],[121,129,70,0.1481326035361163],[121,129,71,0.1553175409062632],[121,129,72,0.16261971148947948],[121,129,73,0.1699962596831668],[121,129,74,0.17243135089807185],[121,129,75,0.17440352315087024],[121,129,76,0.1762231235451333],[121,129,77,0.17795027028189037],[121,129,78,0.1796454056042383],[121,129,79,0.1813672704059659],[121,130,64,0.11823091801268334],[121,130,65,0.12441429866011501],[121,130,66,0.13073376148812058],[121,130,67,0.1371839617091471],[121,130,68,0.14378049032268136],[121,130,69,0.15054359664480677],[121,130,70,0.15747393720467825],[121,130,71,0.1645548525549707],[121,130,72,0.17175514419383017],[121,130,73,0.17776792569724523],[121,130,74,0.179896988096477],[121,130,75,0.18181238772998767],[121,130,76,0.18357246548927014],[121,130,77,0.1852381000410055],[121,130,78,0.18687053779307752],[121,130,79,0.18852933974129013],[121,131,64,0.12838778686324856],[121,131,65,0.13444938627873845],[121,131,66,0.14064468432263957],[121,131,67,0.14696786660687824],[121,131,68,0.1534346979754712],[121,131,69,0.16006600008678792],[121,131,70,0.16686290675080503],[121,131,71,0.173809140469103],[121,131,72,0.1808737997230196],[121,131,73,0.18507554985450153],[121,131,74,0.1871766580448492],[121,131,75,0.18906237144902216],[121,131,76,0.19079108741226533],[121,131,77,0.1924237808143801],[121,131,78,0.19402182586325897],[121,131,79,0.19564493535967042],[121,132,64,0.138640976710657],[121,132,65,0.14457264277001486],[121,132,66,0.15063330277773104],[121,132,67,0.15681638141020834],[121,132,68,0.1631375668309454],[121,132,69,0.16961809903200206],[121,132,70,0.1762595811759124],[121,132,71,0.18304623960228683],[121,132,72,0.18980335650421157],[121,132,73,0.192163994332531],[121,132,74,0.194255999780374],[121,132,75,0.19613245240293523],[121,132,76,0.1978513026009168],[121,132,77,0.19947308847115092],[121,132,78,0.2010587649763572],[121,132,79,0.20266765074934218],[121,133,64,0.1488975373814232],[121,133,65,0.15469393069558102],[121,133,66,0.16061255354595982],[121,133,67,0.16664581522803637],[121,133,68,0.17280919914112775],[121,133,69,0.17912435077998867],[121,133,70,0.18559341898643705],[121,133,71,0.19220128899847638],[121,133,72,0.19669475240781442],[121,133,73,0.1990561259505757],[121,133,74,0.20115064554940726],[121,133,75,0.20303058411939923],[121,133,76,0.20475306047131808],[121,133,77,0.20637777359333573],[121,133,78,0.2079648493768444],[121,133,79,0.20957280508684986],[121,134,64,0.15903691026779615],[121,134,65,0.16469288784305983],[121,134,66,0.170462605077533],[121,134,67,0.17633722070641406],[121,134,68,0.1823319752552171],[121,134,69,0.18846903639247425],[121,134,70,0.19475127982826596],[121,134,71,0.20078108201133105],[121,134,72,0.20345704218395588],[121,134,73,0.20582460409042613],[121,134,74,0.2079277368243896],[121,134,75,0.20981757138708096],[121,134,76,0.21155005439602068],[121,134,77,0.2131837084134234],[121,134,78,0.21477750451196911],[121,134,79,0.21638885234501615],[121,135,64,0.16895247780715708],[121,135,65,0.17446292844302608],[121,135,66,0.18007724398902464],[121,135,67,0.18578513879062653],[121,135,68,0.19160164363733817],[121,135,69,0.19754965230401955],[121,135,70,0.20363301929987418],[121,135,71,0.2074762653361448],[121,135,72,0.2101559941311138],[121,135,73,0.2125310873554283],[121,135,74,0.21464411109007187],[121,135,75,0.21654474107242183],[121,135,76,0.21828745089774543],[121,135,77,0.21992930604858357],[121,135,78,0.2215278693087764],[121,135,79,0.22313922277469894],[121,136,64,0.17855642644360983],[121,136,65,0.1839164081976795],[121,136,66,0.1893693259682412],[121,136,67,0.19490331820436235],[121,136,68,0.2005332963342032],[121,136,69,0.20628313361129152],[121,136,70,0.21114350256054984],[121,136,71,0.21415753785829292],[121,136,72,0.21683896739571845],[121,136,73,0.21921921227866992],[121,136,74,0.2213391366807739],[121,136,75,0.22324667977580634],[121,136,76,0.22499458604914446],[121,136,77,0.22663823978299963],[121,136,78,0.2282336091862576],[121,136,79,0.22983530530394258],[121,137,64,0.1877799842378652],[121,137,65,0.1929847809769541],[121,137,66,0.19827083901830364],[121,137,67,0.20362466567507903],[121,137,68,0.2090611871050174],[121,137,69,0.21449922572449656],[121,137,70,0.21785119271242487],[121,137,71,0.22085746223805502],[121,137,72,0.22353575527177416],[121,137,73,0.22591558210557863],[121,137,74,0.22803583609433137],[121,137,75,0.229942477239097],[121,137,76,0.23168631158450587],[121,137,77,0.23332087210192454],[121,137,78,0.23490040641671397],[121,137,79,0.23647797641262913],[121,138,64,0.19657406176455297],[121,138,65,0.20161915544527909],[121,138,66,0.20673335975941995],[121,138,67,0.21190157887224953],[121,138,68,0.21713891815944433],[121,138,69,0.22126682107520187],[121,138,70,0.22459880709452668],[121,138,71,0.22759103455225238],[121,138,72,0.23025915780124603],[121,138,73,0.23263052107001164],[121,138,74,0.23474181488239565],[121,138,75,0.23663681880707296],[121,138,76,0.238364236343474],[121,138,77,0.2399756274630993],[121,138,78,0.241523444024375],[121,138,79,0.2430591729668365],[121,139,64,0.2049102987661681],[121,139,65,0.20979125410807647],[121,139,66,0.21472890528321142],[121,139,67,0.21970666454609056],[121,139,68,0.22444077485423075],[121,139,69,0.22807989180679986],[121,139,70,0.23138508935213264],[121,139,71,0.23435576763510008],[121,139,72,0.2370052815292036],[121,139,73,0.2393585921692975],[121,139,74,0.24144999430551084],[121,139,75,0.2433209253456703],[121,139,76,0.2450178616948609],[121,139,77,0.24659030772787646],[121,139,78,0.24808888244453114],[121,139,79,0.24956350856059592],[121,140,64,0.21278251903452322],[121,140,65,0.21749477725701344],[121,140,66,0.2222511830325861],[121,140,67,0.22703384432059423],[121,140,68,0.23132040615805052],[121,140,69,0.23491885321305736],[121,140,70,0.23819018520374421],[121,140,71,0.24113146733569255],[121,140,72,0.24375356434800846],[121,140,73,0.24607887652726904],[121,140,74,0.2481391460253862],[121,140,75,0.24997333910123778],[121,140,76,0.2516256096640417],[121,140,77,0.25314334924064275],[121,140,78,0.25457532822037743],[121,140,79,0.25596993295132126],[121,141,64,0.2202085960176506],[121,141,65,0.22474717430798094],[121,141,66,0.22931724118271649],[121,141,67,0.2338998505845347],[121,141,68,0.23819177606664954],[121,141,69,0.24174373151696318],[121,141,70,0.2449748442886848],[121,141,71,0.24787969955707445],[121,141,72,0.2504665234300712],[121,141,73,0.2527550125051306],[121,141,74,0.2547742271804421],[121,141,75,0.25656055405859557],[121,141,76,0.25815574255779994],[121,141,77,0.2596050206091382],[121,141,78,0.26095529406920115],[121,141,79,0.2622534342170146],[121,142,64,0.22723273170119956],[121,142,65,0.23159182506441384],[121,142,66,0.23596952202434776],[121,142,67,0.24034611493629246],[121,142,68,0.2447391995882545],[121,142,69,0.2484927591550387],[121,142,70,0.25167928286129787],[121,142,71,0.25454294598052896],[121,142,72,0.2570892242973059],[121,142,73,0.2593349927763832],[121,142,74,0.261306514252399],[121,142,75,0.2630374894198964],[121,142,76,0.2645671729442324],[121,142,77,0.2659385602984064],[121,142,78,0.2671966497029569],[121,142,79,0.26838678330695426],[121,143,64,0.23391437985485922],[121,143,65,0.23808730423381883],[121,143,66,0.24226551275981045],[121,143,67,0.24642885672583978],[121,143,68,0.25059591120976993],[121,143,69,0.2548031707244418],[121,143,70,0.25823141880860745],[121,143,71,0.2610521041868504],[121,143,72,0.26355595663678344],[121,143,73,0.2657569249857765],[121,143,74,0.2676783587194237],[121,143,75,0.2693511538266254],[121,143,76,0.2708119557898589],[121,143,77,0.27210142402216403],[121,143,78,0.2732625618474648],[121,143,79,0.2743391159047533],[121,144,64,0.24027736853486445],[121,144,65,0.2442579845587272],[121,144,66,0.24823011785447188],[121,144,67,0.2521735550864911],[121,144,68,0.25610795910787654],[121,144,69,0.26007181318483324],[121,144,70,0.2640880008825909],[121,144,71,0.2673598149021783],[121,144,72,0.2698195012022054],[121,144,73,0.27197386011503233],[121,144,74,0.27384322740428363],[121,144,75,0.2754555859283576],[121,144,76,0.276844863296986],[121,144,77,0.27804928073059865],[121,144,78,0.27910975690857004],[121,144,79,0.2800683704011264],[121,145,64,0.24633153440726765],[121,145,65,0.25011470812233505],[121,145,66,0.2538752605097432],[121,145,67,0.25759334482704643],[121,145,68,0.2612898182048384],[121,145,69,0.26500503675020554],[121,145,70,0.2687643361157809],[121,145,71,0.2725790163983694],[121,145,72,0.2758415378508502],[121,145,73,0.2779465851032623],[121,145,74,0.2797610953186148],[121,145,75,0.28131005457911884],[121,145,76,0.28262458553919334],[121,145,77,0.2837403873846089],[121,145,78,0.2846962191968208],[121,145,79,0.2855324300026906],[121,146,64,0.25208400168232875],[121,146,65,0.2556656499101809],[121,146,66,0.25921026656946206],[121,146,67,0.26269884343650285],[121,146,68,0.26615353112468404],[121,146,69,0.2696164011693868],[121,146,70,0.27311514031495066],[121,146,71,0.2766638792766729],[121,146,72,0.2802647766057292],[121,146,73,0.28363905932903133],[121,146,74,0.28539506188740615],[121,146,75,0.28687692775792567],[121,146,76,0.28811291485138724],[121,146,77,0.28913613973151336],[121,146,78,0.28998314571802486],[121,146,79,0.29069250474329467],[121,147,64,0.2575395221434823],[121,147,65,0.26091663141374966],[121,147,66,0.2642421465853329],[121,147,67,0.26749839537048037],[121,147,68,0.27070890939340486],[121,147,69,0.2739172797114791],[121,147,70,0.27715340212969825],[121,147,71,0.28043414713741643],[121,147,72,0.28376477891283536],[121,147,73,0.2871403713279114],[121,147,74,0.2905472179610958],[121,147,75,0.2921217475471405],[121,147,76,0.29327482336273814],[121,147,77,0.2942011397312384],[121,147,78,0.29493499012081376],[121,147,79,0.29551313824468983],[121,148,64,0.2627007957673451],[121,148,65,0.26587141675692777],[121,148,66,0.2689758623361994],[121,148,67,0.27199830320713375],[121,148,68,0.2749637243643417],[121,148,69,0.2779170069769812],[121,148,70,0.2808900757034122],[121,148,71,0.28390240895301616],[121,148,72,0.28696228477347385],[121,148,73,0.2900680356168863],[121,148,74,0.29320930953426866],[121,148,75,0.2963683353810047],[121,148,76,0.2980785467216175],[121,148,77,0.2989032741140724],[121,148,78,0.29951952395971826],[121,148,79,0.299962239143868],[121,149,64,0.2675687717932514],[121,149,65,0.2705319912064509],[121,149,66,0.2734145776661959],[121,149,67,0.27620304554513503],[121,149,68,0.27892388775256977],[121,149,69,0.28162301921696425],[121,149,70,0.28433417968127944],[121,149,71,0.28707928540286987],[121,149,72,0.2898694955041191],[121,149,73,0.2927062996407295],[121,149,74,0.2955826251016232],[121,149,75,0.29848396145751693],[121,149,76,0.3013895008881359],[121,149,77,0.3032138041954491],[121,149,78,0.30370791543871584],[121,149,79,0.30401113740280067],[121,150,64,0.2721429301109461],[121,150,65,0.2748988219372208],[121,150,66,0.27755989351587096],[121,150,67,0.2801154815243937],[121,150,68,0.28259362166894497],[121,150,69,0.28504098706265646],[121,150,70,0.28749289121386973],[121,150,71,0.2899734842790574],[121,150,72,0.2924966355718197],[121,150,73,0.2950668502415042],[121,150,74,0.29768021881528733],[121,150,75,0.30032539827037225],[121,150,76,0.30298462328481957],[121,150,77,0.3056347463071057],[121,150,78,0.30747482580027774],[121,150,79,0.3076346657135526],[121,151,64,0.2764215428427904],[121,151,65,0.2789711009308207],[121,151,66,0.28141206702725313],[121,151,67,0.28373704185624293],[121,151,68,0.2859756180494648],[121,151,69,0.2881749405714843],[121,151,70,0.2903716348725901],[121,151,71,0.29259185277346017],[121,151,72,0.29485196913875167],[121,151,73,0.2971593258221301],[121,151,74,0.2995130221643946],[121,151,75,0.30190475126892613],[121,151,76,0.3043196812295321],[121,151,77,0.30673738044580373],[121,151,78,0.3091327861311615],[121,151,79,0.31081126620902744],[121,152,64,0.28040191600500197],[121,152,65,0.28274696989358966],[121,152,66,0.28497021461143623],[121,152,67,0.287067906256778],[121,152,68,0.28907118738169296],[121,152,69,0.2910273865006188],[121,152,70,0.2929741663970005],[121,152,71,0.2949394265734549],[121,152,72,0.2969418145210623],[121,152,73,0.2989912974386558],[121,152,74,0.30108979427159044],[121,152,75,0.30323186785223716],[121,152,76,0.30540547684474445],[121,152,77,0.3075927871255164],[121,152,78,0.30977104216951706],[121,152,79,0.311913491961812],[121,153,64,0.2840806111381495],[121,153,65,0.28622372708631205],[121,153,66,0.28823249887265256],[121,153,67,0.2901071671819333],[121,153,68,0.29188039663420257],[121,153,69,0.29359941772234066],[121,153,70,0.29530265119610094],[121,153,71,0.29701947569413734],[121,153,72,0.2987705564926531],[121,153,73,0.3005682477825776],[121,153,74,0.30241706892455195],[121,153,75,0.30431425501480397],[121,153,76,0.3062503819855565],[121,153,77,0.30821006636227344],[121,153,78,0.3101727397081101],[121,153,79,0.3121134977045973],[121,154,64,0.2874536468022336],[121,154,65,0.2893980159628285],[121,154,66,0.29119629928789215],[121,154,67,0.29285297976764335],[121,154,68,0.29440219629925485],[121,154,69,0.2958908146990697],[121,154,70,0.29735773752823597],[121,154,71,0.2988335469763803],[121,154,72,0.3003406563645825],[121,154,73,0.30189354798101115],[121,154,74,0.3034990982624124],[121,154,75,0.3051569911906824],[121,154,76,0.30686022063582075],[121,154,77,0.3085956822461931],[121,154,78,0.31034485536574685],[121,154,79,0.3120845753470677],[121,155,64,0.2905166798358816],[121,155,65,0.29226599551933946],[121,155,66,0.2938583665455621],[121,155,67,0.29530269788272295],[121,155,68,0.2966345364629039],[121,155,69,0.2979001389393262],[121,155,70,0.29913862428688004],[121,155,71,0.3003815031815733],[121,155,72,0.3016526597710503],[121,155,73,0.30296843214147395],[121,155,74,0.3043377930345994],[121,155,75,0.30576263219868954],[121,155,76,0.3072381415920621],[121,155,77,0.3087533045002389],[121,155,78,0.31029148947863333],[121,155,79,0.3118311498941251],[121,156,64,0.2932651662815366],[121,156,65,0.29482349225894033],[121,156,66,0.2962149604495587],[121,156,67,0.29745299620495913],[121,156,68,0.29857447181947244],[121,156,69,0.29962481835828714],[121,156,70,0.30064312332129484],[121,156,71,0.30166155861468535],[121,156,72,0.30270520209255114],[121,156,73,0.3037919695663068],[121,156,74,0.30493265934649105],[121,156,75,0.30613111118696035],[121,156,76,0.30738448131155494],[121,156,77,0.30868363501994894],[121,156,78,0.3100136581944931],[121,156,79,0.3113544888653468],[121,157,64,0.2956945018800804],[121,157,65,0.29706613367802254],[121,157,66,0.29826197129746634],[121,157,67,0.2992999782334493],[121,157,68,0.3002182555499415],[121,157,69,0.3010612244690351],[121,157,70,0.3018677162230191],[121,157,71,0.30267031120844595],[121,157,72,0.3034950114468164],[121,157,73,0.30436103456047237],[121,157,74,0.30528073180354365],[121,157,75,0.3062596324709272],[121,157,76,0.3072966167953845],[121,157,77,0.3083842192360483],[121,157,78,0.309509063863009],[121,157,79,0.31065243335434856],[121,158,64,0.29780014203893784],[121,158,65,0.29898946318247915],[121,158,66,0.2999950246432824],[121,158,67,0.3008392701522251],[121,158,68,0.301561421986095],[121,158,69,0.30220474133293357],[121,158,70,0.3028076055111764],[121,158,71,0.3034027710027917],[121,158,72,0.3040169091785025],[121,158,73,0.3046702737554885],[121,158,74,0.3053765029630434],[121,158,75,0.30614255915468425],[121,158,76,0.3069688083716521],[121,158,77,0.3078492421348027],[121,158,78,0.3087718435218804],[121,158,79,0.30971909937737013],[121,159,64,0.2995777011765344],[121,159,65,0.3005890363412824],[121,159,66,0.3014095693552266],[121,159,67,0.30206610046088234],[121,159,68,0.3025988579833966],[121,159,69,0.303049826198927],[121,159,70,0.30345676015082906],[121,159,71,0.3038523849544358],[121,159,72,0.30426380777833484],[121,159,73,0.304712070870693],[121,159,74,0.30521184899949433],[121,159,75,0.3057712944208082],[121,159,76,0.306392032237312],[121,159,77,0.30706930876262073],[121,159,78,0.3077922952679737],[121,159,79,0.30854454925894625],[121,160,64,0.3010230313439739],[121,160,65,0.301860498383958],[121,160,66,0.30250094887879964],[121,160,67,0.3029753652882188],[121,160,68,0.3033248629265356],[121,160,69,0.303590061762961],[121,160,70,0.3038079553400587],[121,160,71,0.30401105801246203],[121,160,72,0.3042267061626133],[121,160,73,0.30447650883194877],[121,160,74,0.30477595148692854],[121,160,75,0.30513415636909796],[121,160,76,0.30555380261050624],[121,160,77,0.306031209032783],[121,160,78,0.30655658229257976],[121,160,79,0.30711443279050626],[121,161,64,0.30213228002182557],[121,161,65,0.30279964284658367],[121,161,66,0.303264455614172],[121,161,67,0.30356167930465106],[121,161,68,0.30373319729220744],[121,161,69,0.30381819997998355],[121,161,70,0.3038528065029585],[121,161,71,0.303869170397116],[121,161,72,0.30389468224447447],[121,161,73,0.3039513291671291],[121,161,74,0.3040552151989595],[121,161,75,0.30421624628020727],[121,161,76,0.30443798333854355],[121,161,77,0.30471766664316463],[121,161,78,0.30504641434854307],[121,161,79,0.30540959788448485],[121,162,64,0.30290192698502316],[121,162,65,0.3034024512672816],[121,162,66,0.30369536831424315],[121,162,67,0.30381941214745867],[121,162,68,0.30381711969304653],[121,162,69,0.30372619736117734],[121,162,70,0.3035817974263346],[121,162,71,0.3034155910194585],[121,162,72,0.30325488272813367],[121,162,73,0.3031218885963042],[121,162,74,0.30303318182424716],[121,162,75,0.3029993101748414],[121,162,76,0.3030245887989279],[121,162,77,0.30310707190346803],[121,162,78,0.3032387064040661],[121,162,79,0.3034056704310746],[121,163,64,0.3033288001237013],[121,163,65,0.3036651138283354],[121,163,66,0.30378897240696345],[121,163,67,0.3037427102713478],[121,163,68,0.30356941232632806],[121,163,69,0.30330524168982187],[121,163,70,0.3029843024792709],[121,163,71,0.302637686980962],[121,163,72,0.30229251005816166],[121,163,73,0.30197111273419003],[121,163,74,0.30169043949289476],[121,163,75,0.3014615935347664],[121,163,76,0.30128957392375555],[121,163,77,0.30117319826050076],[121,163,78,0.30110521422500935],[121,163,79,0.30107260304883277],[121,164,64,0.3034082277535965],[121,164,65,0.3035820748113159],[121,164,66,0.30353851551578065],[121,164,67,0.30332337249453317],[121,164,68,0.30298018435799356],[121,164,69,0.3025434929510782],[121,164,70,0.3020462758173244],[121,164,71,0.30151897193948357],[121,164,72,0.3009884402585448],[121,164,73,0.3004770925259877],[121,164,74,0.30000220525236054],[121,164,75,0.29957541520284414],[121,164,76,0.29920240257864417],[121,164,77,0.2988827657147336],[121,164,78,0.2986100908225528],[121,164,79,0.29837222001385294],[121,165,64,0.30312361003027366],[121,165,65,0.3031349746071078],[121,165,66,0.3029236894088424],[121,165,67,0.3025389355021317],[121,165,68,0.30202460919523966],[121,165,69,0.3014135713496104],[121,165,70,0.30073762486479017],[121,165,71,0.3000265206754491],[121,165,72,0.2993068422538669],[121,165,73,0.2986010691154005],[121,165,74,0.29792682429605205],[121,165,75,0.2972963104515872],[121,165,76,0.2967159389081971],[121,165,77,0.2961861556783506],[121,165,78,0.29570146814527143],[121,165,79,0.2952506758185045],[121,166,64,0.30245855463220045],[121,166,65,0.3023055823701548],[121,166,66,0.30192433283963754],[121,166,67,0.3013671448364458],[121,166,68,0.30067817141930503],[121,166,69,0.29988858288790854],[121,166,70,0.29902901241120294],[121,166,71,0.29812854138646916],[121,166,72,0.2972135104925493],[121,166,73,0.2963065140218704],[121,166,74,0.2954255826554915],[121,166,75,0.2945835595192798],[121,166,76,0.29378767403297346],[121,166,77,0.2930393177402624],[121,166,78,0.29233402599019687],[121,166,79,0.2916616690313954],[121,167,64,0.30140318271947675],[121,167,65,0.30108257751374484],[121,167,66,0.30052762561625423],[121,167,67,0.2997935461851174],[121,167,68,0.2989246482368753],[121,167,69,0.2979504623494211],[121,167,70,0.29690051639065357],[121,167,71,0.2958032969985427],[121,167,72,0.294684986873055],[121,167,73,0.29356838931641716],[121,167,74,0.2924720453729033],[121,167,75,0.29140954858734464],[121,167,76,0.2903890620688817],[121,167,77,0.2894130422161223],[121,167,78,0.28847817313493535],[121,167,79,0.2875755154638837],[121,168,64,0.29995235849721713],[121,168,65,0.29945977160178394],[121,168,66,0.2987263038189935],[121,168,67,0.2978097006600243],[121,168,68,0.2967543316587162],[121,168,69,0.2955882055210668],[121,168,70,0.2943398722126362],[121,168,71,0.29303735522774355],[121,168,72,0.29170681428198686],[121,168,73,0.290371399001322],[121,168,74,0.2890502991397636],[121,168,75,0.2877579965203251],[121,168,76,0.28650372355520115],[121,168,77,0.285291132864472],[121,168,78,0.2841181821809169],[121,168,79,0.2829772384052064],[121,169,64,0.29810368294821926],[121,169,65,0.29743409170578283],[121,169,66,0.2965166355334974],[121,169,67,0.2954111608179259],[121,169,68,0.29416201291879035],[121,169,69,0.29279586698943333],[121,169,70,0.2913404862555928],[121,169,71,0.2898236179282395],[121,169,72,0.28827158022522215],[121,169,73,0.2867080440029992],[121,169,74,0.2851530147068804],[121,169,75,0.28362202000553766],[121,169,76,0.282125508131236],[121,169,77,0.28066846160435344],[121,169,78,0.27925023068249943],[121,169,79,0.2778645905443018],[121,170,64,0.29585529020610396],[121,170,65,0.2950033662388025],[121,170,66,0.29389620026491503],[121,170,67,0.29259525261667385],[121,170,68,0.29114477627767293],[121,170,69,0.2895703724109127],[121,170,70,0.2878992709030182],[121,170,71,0.28615918125816997],[121,170,72,0.28437680288415557],[121,170,73,0.2825765335603087],[121,170,74,0.28077938196885327],[121,170,75,0.27900208982338637],[121,170,76,0.2772564687782974],[121,170,77,0.2755489569539421],[121,170,78,0.27388039956761845],[121,170,79,0.2722460578232488],[121,171,64,0.29320344444392066],[121,171,65,0.29216391119556184],[121,171,66,0.29086147002780327],[121,171,67,0.28935866137768845],[121,171,68,0.2876996003680133],[121,171,69,0.285909143513079],[121,171,70,0.2840142994923629],[121,171,71,0.2820430251602703],[121,171,72,0.28002265823415395],[121,171,73,0.27797855179857234],[121,171,74,0.27593291667827274],[121,171,75,0.27390387737939004],[121,171,76,0.2719047469427006],[121,171,77,0.2699435256976061],[121,171,78,0.26802262855412906],[121,171,79,0.26613884512605973],[121,172,64,0.29013993496643586],[121,172,65,0.28890791454400916],[121,172,66,0.28740518992632],[121,172,67,0.2856948196498386],[121,172,68,0.2838207650696463],[121,172,69,0.28180753392073793],[121,172,70,0.27968227939021667],[121,172,71,0.2774735305052434],[121,172,72,0.2752095467218837],[121,172,73,0.2729168781479745],[121,172,74,0.27061913762250034],[121,172,75,0.2683359905154825],[121,172,76,0.2660823677507544],[121,172,77,0.26386790719237446],[121,172,78,0.2616966281771637],[121,172,79,0.2595668436244604],[121,173,64,0.286649267000033],[121,173,65,0.2852206163220451],[121,173,66,0.2835135558512993],[121,173,67,0.281591094686388],[121,173,68,0.27949706172385375],[121,173,69,0.27725607372831945],[121,173,70,0.2748958412427829],[121,173,71,0.27244582208955365],[121,173,72,0.26993549785073856],[121,173,73,0.2673928601270274],[121,173,74,0.2648431129676336],[121,173,75,0.2623075974997896],[121,173,76,0.2598029444181053],[121,173,77,0.25734045962556706],[121,173,78,0.25492574795238254],[121,173,79,0.2525585795198202],[121,174,64,0.2827056454731946],[121,174,65,0.28107728179459823],[121,174,66,0.27916318672579427],[121,174,67,0.2770257730560599],[121,174,68,0.2747088043109929],[121,174,69,0.27223752056136485],[121,174,70,0.2696406422791536],[121,174,71,0.2669489355162296],[121,174,72,0.26419341086977466],[121,174,73,0.2614037368679249],[121,174,74,0.2586068743408539],[121,174,75,0.2558259379713606],[121,174,76,0.2530792908437538],[121,174,77,0.2503798774337173],[121,174,78,0.24773480010830487],[121,174,79,0.24514514383791294],[121,175,64,0.27828503891398704],[121,175,65,0.27645514048560854],[121,175,66,0.27433284994849805],[121,175,67,0.27197946626541214],[121,175,68,0.26943879232252055],[121,175,69,0.2667372420149781],[121,175,70,0.26390501950492945],[121,175,71,0.2609745851234825],[121,175,72,0.2579787783065222],[121,175,73,0.2549491602026269],[121,175,74,0.25191458269291045],[121,175,75,0.2488999901838492],[121,175,76,0.24592546015087555],[121,175,77,0.2430054880260113],[121,175,78,0.24014852164058773],[121,175,79,0.23735675005785045],[121,176,64,0.27341512055563355],[121,176,65,0.2713829818760504],[121,176,66,0.26905241631714627],[121,176,67,0.26648306892318796],[121,176,68,0.2637188631447399],[121,176,69,0.26078790966359017],[121,176,70,0.25772234063743643],[121,176,71,0.2545566673508651],[121,176,72,0.25132583034692413],[121,176,73,0.24806347486932848],[121,176,74,0.2448004585254116],[121,176,75,0.24156359769308255],[121,176,76,0.23837465880328051],[121,176,77,0.2352496002361137],[121,176,78,0.23219807017757021],[121,176,79,0.2292231653981882],[121,177,64,0.2681397593915113],[121,177,65,0.26590597390714776],[121,177,66,0.26336829320769534],[121,177,67,0.26058415511544625],[121,177,68,0.2575976524218946],[121,177,69,0.25443906638177977],[121,177,70,0.2511428527321776],[121,177,71,0.2477458846952725],[121,177,72,0.24428543547864848],[121,177,73,0.24079739183076243],[121,177,74,0.23731470572007712],[121,177,75,0.2338660908113456],[121,177,76,0.2304749700123073],[121,177,77,0.2271586799619917],[121,177,78,0.22392793793155782],[121,177,79,0.22078657621397937],[121,178,64,0.26250469282001826],[121,178,65,0.26007139303071397],[121,178,66,0.2573292936486373],[121,178,67,0.25433308660513865],[121,178,68,0.251127057754358],[121,178,69,0.24774407562899423],[121,178,70,0.2442212578830122],[121,178,71,0.24059809605716062],[121,178,72,0.23691437749967237],[121,178,73,0.2332083439461408],[121,178,74,0.2295150939667245],[121,178,75,0.22586523608609807],[121,178,76,0.22228379897328424],[121,178,77,0.21878940468814723],[121,178,78,0.2153937105625899],[121,178,79,0.21210112489130512],[121,179,64,0.2565569146047548],[121,179,65,0.2539279502033084],[121,179,66,0.2509858831190295],[121,179,67,0.24778216047659568],[121,179,68,0.24436126577101075],[121,179,69,0.24075900628558936],[121,179,70,0.2370154346549479],[121,179,71,0.23317285476118269],[121,179,72,0.22927369186193725],[121,179,73,0.2253586046265323],[121,179,74,0.22146484640349168],[121,179,75,0.21762488263303306],[121,179,76,0.21386527090253882],[121,179,77,0.21020580972518518],[121,179,78,0.2066589617055662],[121,179,79,0.20322955634526252],[121,180,64,0.25034401807358336],[121,180,65,0.24752507340901708],[121,180,66,0.244389386201336],[121,180,67,0.24098472173329455],[121,180,68,0.23735575121989558],[121,180,69,0.23354149902590732],[121,180,70,0.2295851533742214],[121,180,71,0.22553195576458412],[121,180,72,0.2214270296240005],[121,180,73,0.21731345557483045],[121,180,74,0.21323060072979033],[121,180,75,0.2092127090073025],[121,180,76,0.2052877590388688],[121,180,77,0.20147659581596264],[121,180,78,0.1977923418011247],[121,180,79,0.19424009281056206],[121,181,64,0.24391349387068703],[121,181,65,0.24091214602422492],[121,181,66,0.23759115241308126],[121,181,67,0.23399424019176895],[121,181,68,0.23016624744840697],[121,181,69,0.2261496136415552],[121,181,70,0.22199078474719897],[121,181,71,0.2177379916016514],[121,181,72,0.21343904865715857],[121,181,73,0.20913940337057177],[121,181,74,0.20488044368712474],[121,181,75,0.20069807066083753],[121,181,76,0.19662154282640693],[121,181,77,0.19267259850827576],[121,181,78,0.18886486182471204],[121,181,79,0.18520353772225276],[121,182,64,0.23731198152550528],[121,182,65,0.23413770028712116],[121,182,66,0.23064168049118125],[121,182,67,0.22686335096534027],[121,182,68,0.22284768759642284],[121,182,69,0.2186406566821225],[121,182,70,0.21429200123628497],[121,182,71,0.20985291657238575],[121,182,72,0.2053738317131539],[121,182,73,0.2009024446276715],[121,182,74,0.19648201877508356],[121,182,75,0.19214994801022786],[121,182,76,0.18793659647646083],[121,182,77,0.18386441967834782],[121,182,78,0.17994737249557644],[121,182,79,0.17619060947350318],[121,183,64,0.23058447405138052],[121,183,65,0.22724856508337973],[121,183,66,0.2235897003522567],[121,183,67,0.21964285778206044],[121,183,68,0.2154531157783117],[121,183,69,0.2110699887356359],[121,183,70,0.2065464705794468],[121,183,71,0.20193661864617252],[121,183,72,0.19729333092907905],[121,183,73,0.19266637942610434],[121,183,74,0.18810070704860687],[121,183,75,0.18363499512438242],[121,183,76,0.17930050809654552],[121,183,77,0.17512022158554152],[121,183,78,0.17110823954851007],[121,183,79,0.16726950584259076],[121,184,64,0.22377347473602774],[121,184,65,0.2202889672085864],[121,184,66,0.2164812119023265],[121,184,67,0.21238069833299658],[121,184,68,0.20803256748375393],[121,184,69,0.20348981062820037],[121,184,70,0.19880854080124036],[121,184,71,0.19404549851759342],[121,184,72,0.18925583831746637],[121,184,73,0.18449117269767584],[121,184,74,0.1797978808290253],[121,184,75,0.17521568903515752],[121,184,76,0.17077652957637077],[121,184,77,0.1665036838476071],[121,184,78,0.16241121566690644],[121,184,79,0.15850369990310684],[121,185,64,0.21691810523519764],[121,185,65,0.21329958521722997],[121,185,66,0.2093584798197406],[121,185,67,0.20512087079940586],[121,185,68,0.20063191838246852],[121,185,69,0.19594792778116515],[121,185,70,0.19112791602698825],[121,185,71,0.18623105522132324],[121,185,72,0.18131448176643072],[121,185,73,0.17643136323089362],[121,185,74,0.17162923015488987],[121,185,75,0.16694857967676272],[121,185,76,0.1624217574324308],[121,185,77,0.15807212374680568],[121,185,78,0.15391350970543977],[121,185,79,0.1499499682691503],[121,186,64,0.2100531640301204],[121,186,65,0.2063165549174147],[121,186,66,0.2022589833859686],[121,186,67,0.19790232066042715],[121,186,68,0.19329170067419058],[121,186,69,0.1884864919247389],[121,186,70,0.18354832237794708],[121,186,71,0.1785384776861404],[121,186,72,0.17351574605594344],[121,186,73,0.16853451995034105],[121,186,74,0.16364316179904548],[121,186,75,0.15888264047078007],[121,186,76,0.154285444834761],[121,186,77,0.1498747803100025],[121,186,78,0.14566405387396478],[121,186,79,0.14165665258048432],[121,187,64,0.20320813426049808],[121,187,65,0.19937042552187728],[121,187,66,0.1952143203919795],[121,187,67,0.1907577868386638],[121,187,68,0.18604588608462014],[121,187,69,0.18114071933123846],[121,187,70,0.176106163195889],[121,187,71,0.17100524158643793],[121,187,72,0.16589801838381205],[121,187,73,0.1608397451238036],[121,187,74,0.15587927068756294],[121,187,75,0.15105771959484623],[121,187,76,0.14640744507306083],[121,187,77,0.14195126265199845],[121,187,78,0.13770196961266865],[121,187,79,0.13366215520277328],[121,188,64,0.19640613989582267],[121,188,65,0.19248506541729413],[121,188,66,0.18824906410122771],[121,188,67,0.1837126061972763],[121,188,68,0.1789206345683488],[121,188,69,0.17393758469688222],[121,188,70,0.16882916281822677],[121,188,71,0.16365971083089761],[121,188,72,0.1584901578863098],[121,188,73,0.15337622415320246],[121,188,74,0.1483668835715194],[121,188,75,0.14350309200180192],[121,188,76,0.13881678676206377],[121,188,77,0.13433016312812285],[121,188,78,0.1300552329592008],[121,188,79,0.1259936702021286],[121,189,64,0.18966284916155998],[121,189,65,0.18567651646817465],[121,189,66,0.18137957220670686],[121,189,67,0.176783475361929],[121,189,68,0.1719330077439621],[121,189,69,0.16689448977120036],[121,189,70,0.16173499810262648],[121,189,71,0.15651974301517407],[121,189,72,0.15131008863657974],[121,189,73,0.14616182161606445],[121,189,74,0.14112367482701402],[121,189,75,0.1362361122952007],[121,189,76,0.13153038114042082],[121,189,77,0.1270278359120829],[121,189,78,0.1227395402939467],[121,189,79,0.11866615075367469],[121,190,64,0.18548309257629683],[121,190,65,0.18024874735966662],[121,190,66,0.17482628345038517],[121,190,67,0.16997716880293653],[121,190,68,0.165089646053372],[121,190,69,0.16001790580644817],[121,190,70,0.15482991688160597],[121,190,71,0.14959129815705674],[121,190,72,0.14436341560740673],[121,190,73,0.13920172324115546],[121,190,74,0.13415435429050596],[121,190,75,0.1292609686146271],[121,190,76,0.12455186188150605],[121,190,77,0.12004734169614181],[121,190,78,0.11575737544763078],[121,190,79,0.1116815142583933],[121,191,64,0.18844267312617297],[121,191,65,0.1830861204260785],[121,191,66,0.1775470244516215],[121,191,67,0.17182531743090798],[121,191,68,0.1659584566186933],[121,191,69,0.1600084435507154],[121,191,70,0.1540372463805563],[121,191,71,0.14810424381069934],[121,191,72,0.1422643933422676],[121,191,73,0.13656663945861328],[121,191,74,0.13105256783734517],[121,191,75,0.12575531130489112],[121,191,76,0.12069871286231755],[121,191,77,0.11589675072439015],[121,191,78,0.11135322993018061],[121,191,79,0.10706174470545415],[121,192,64,0.19141955568126925],[121,192,65,0.18594633261933563],[121,192,66,0.18029688736443242],[121,192,67,0.17446977452671036],[121,192,68,0.16850216705648308],[121,192,69,0.1624565042360893],[121,192,70,0.15639469584476584],[121,192,71,0.15037562980940522],[121,192,72,0.1444534284496241],[121,192,73,0.13867593899456424],[121,192,74,0.13308346419853886],[121,192,75,0.12770773851313985],[121,192,76,0.12257115489940663],[121,192,77,0.11768624698857644],[121,192,78,0.11305543092817905],[121,192,79,0.10867101088415314],[121,193,64,0.19437752876379932],[121,193,65,0.18879180582942717],[121,193,66,0.18303688131819898],[121,193,67,0.17711046161385624],[121,193,68,0.17104945931276638],[121,193,69,0.1649163978785057],[121,193,70,0.15877278495922453],[121,193,71,0.15267669554816257],[121,193,72,0.14668111906216372],[121,193,73,0.14083253478789534],[121,193,74,0.13516972125153986],[121,193,75,0.12972280470950884],[121,193,76,0.12451255159539774],[121,193,77,0.11954990939531926],[121,193,78,0.1148358000642313],[121,193,79,0.11036116974216717],[121,194,64,0.19726694363155947],[121,194,65,0.19157096133878254],[121,194,66,0.18571348546791608],[121,194,67,0.17969180295328596],[121,194,68,0.17354261918504243],[121,194,69,0.16732831345330434],[121,194,70,0.1611097656117224],[121,194,71,0.1549440223315941],[121,194,72,0.1488827362064671],[121,194,73,0.14297082734875902],[121,194,74,0.13724537276515877],[121,194,75,0.13173472845050638],[121,194,76,0.12645788878908587],[121,194,77,0.12142408750107161],[121,194,78,0.11663264402452074],[121,194,79,0.11207305888187674],[121,195,64,0.20002395700018544],[121,195,65,0.1942174730551047],[121,195,66,0.1882579263096034],[121,195,67,0.18214245723786224],[121,195,68,0.1759076554566259],[121,195,69,0.16961570725759906],[121,195,70,0.16332680378586925],[121,195,71,0.15709689280593497],[121,195,72,0.15097620965645658],[121,195,73,0.14500802516033834],[121,195,74,0.13922761551629273],[121,195,75,0.13366145886152847],[121,195,76,0.12832666285538064],[121,195,77,0.12323062729382508],[121,195,78,0.11837094542907381],[121,195,79,0.11373554733879294],[121,196,64,0.202603094859941],[121,196,65,0.19668536665031264],[121,196,66,0.19062363163422488],[121,196,67,0.184415068686178],[121,196,68,0.1780962581484632],[121,196,69,0.17172922669370239],[121,196,70,0.16537348986026246],[121,196,71,0.15908389023218666],[121,196,72,0.15290922025067344],[121,196,73,0.14689105682402387],[121,196,74,0.14106281251005545],[121,196,75,0.1354490077183206],[121,196,76,0.13006476804995198],[121,196,77,0.12491555056373874],[121,196,78,0.11999710243229228],[121,196,79,0.11529565513369673],[121,197,64,0.204999408866518],[121,197,65,0.1989723429911647],[121,197,66,0.19281060364372687],[121,197,67,0.18651165410983703],[121,197,68,0.1801121448408312],[121,197,69,0.17367386894659126],[121,197,70,0.16725558237696997],[121,197,71,0.16091093364116477],[121,197,72,0.15468718025179176],[121,197,73,0.14862411183125124],[121,197,74,0.14275318440331627],[121,197,75,0.13709687007596663],[121,197,76,0.13166822600216452],[121,197,77,0.1264706861866372],[121,197,78,0.1214980793929108],[121,197,79,0.11673487609753311],[121,198,64,0.20720880860174015],[121,198,65,0.20107660971764624],[121,198,66,0.1948189982564151],[121,198,67,0.18843402235791512],[121,198,68,0.18195845569975275],[121,198,69,0.17545368554572613],[121,198,70,0.1689775370989927],[121,198,71,0.16258230349284716],[121,198,72,0.1563135589986005],[121,198,73,0.15020917345806903],[121,198,74,0.14429853220764122],[121,198,75,0.13860196545408526],[121,198,76,0.13313039075354974],[121,198,77,0.1278851719375301],[121,198,78,0.12285819752712575],[121,198,79,0.11803218138114246],[121,199,64,0.2092255285511856],[121,199,65,0.20299410953965175],[121,199,66,0.19664614605463696],[121,199,67,0.19018060709694926],[121,199,68,0.18363442060246643],[121,199,69,0.17706832155085017],[121,199,70,0.1705389692202398],[121,199,71,0.16409708877109863],[121,199,72,0.15778638523538976],[121,199,73,0.15164265273535435],[121,199,74,0.1456930829337271],[121,199,75,0.13995577642131946],[121,199,76,0.13443946045053357],[121,199,77,0.12914341612746558],[121,199,78,0.12405761788492202],[121,199,79,0.11916308777523743],[121,200,64,0.21104321610413418],[121,200,65,0.20471967632673777],[121,200,66,0.198287787659562],[121,200,67,0.19174779494018324],[121,200,68,0.1851367931122811],[121,200,69,0.17851456589477424],[121,200,70,0.1719363276389721],[121,200,71,0.16545098956147564],[121,200,72,0.15910017906396706],[121,200,73,0.1529174475326112],[121,200,74,0.1469276703417761],[121,200,75,0.14114664250283215],[121,200,76,0.13558087311383682],[121,200,77,0.1302275814828388],[121,200,78,0.12507489752035197],[121,200,79,0.1201022687264848],[121,201,64,0.21068417660540906],[121,201,65,0.20624812158936767],[121,201,66,0.19973924390652653],[121,201,67,0.19313119458776473],[121,201,68,0.186461233613996],[121,201,69,0.17978786104904348],[121,201,70,0.1731645407253401],[121,201,71,0.16663810522987577],[121,201,72,0.1602478854040894],[121,201,73,0.15402502067069723],[121,201,74,0.14799195362131998],[121,201,75,0.14216211202803278],[121,201,76,0.13653978117069754],[121,201,77,0.13112016910295327],[121,201,78,0.12588966721696382],[121,201,79,0.12082630821153122],[121,202,64,0.21014767671787443],[121,202,65,0.20713986110963312],[121,202,66,0.20099652068050025],[121,202,67,0.19432684696820174],[121,202,68,0.18760364175604674],[121,202,69,0.18088377233771924],[121,202,70,0.1742186341076014],[121,202,71,0.16765270894259582],[121,202,72,0.16122280993127727],[121,202,73,0.1549574982686981],[121,202,74,0.14887667544515892],[121,202,75,0.14299135360113294],[121,202,76,0.137303606664388],[121,202,77,0.1318067046318399],[121,202,78,0.12648543311170032],[121,202,79,0.12131660000189659],[121,203,64,0.20956932665628247],[121,203,65,0.20633629874505013],[121,203,66,0.2020573482105154],[121,203,67,0.1953323763183954],[121,203,68,0.18856143830170866],[121,203,69,0.18179941719122197],[121,203,70,0.175095320980212],[121,203,71,0.1684910092600248],[121,203,72,0.16202055846665145],[121,203,73,0.15570978955063086],[121,203,74,0.14957596087777636],[121,203,75,0.14362762892824693],[121,203,76,0.13786467912194972],[121,203,77,0.13227852886175162],[121,203,78,0.12685250465626302],[121,203,79,0.12156239496171856],[121,204,64,0.20895811728780972],[121,204,65,0.20548884033853662],[121,204,66,0.2019452326043528],[121,204,67,0.1961480820806793],[121,204,68,0.18933479644138637],[121,204,69,0.18253485459186952],[121,204,70,0.17579456540792981],[121,204,71,0.16915289951958304],[121,204,72,0.1626409807902589],[121,204,73,0.15628172934867218],[121,204,74,0.15008965864434623],[121,204,75,0.14407082877551708],[121,204,76,0.13822295811681837],[121,204,77,0.132535695056188],[121,204,78,0.12699105143952424],[121,204,79,0.12156399911822452],[121,205,64,0.2083196196829891],[121,205,65,0.20460377434620658],[121,205,66,0.20081044794293715],[121,205,67,0.1967779714307677],[121,205,68,0.1899278225614484],[121,205,69,0.183094434915422],[121,205,70,0.17632111906327547],[121,205,71,0.16964369569840024],[121,205,72,0.16309011983690208],[121,205,73,0.1566802445406431],[121,205,74,0.15042572628152143],[121,205,75,0.14433007386218852],[121,205,76,0.1383888426069065],[121,205,77,0.13258997533846095],[121,205,78,0.1269142914665276],[121,205,79,0.12133612532988328],[121,206,64,0.20765531446264116],[121,206,65,0.20368335339550525],[121,206,66,0.19963168180546548],[121,206,67,0.19547628338525513],[121,206,68,0.19034968640294803],[121,206,69,0.18348811031930493],[121,206,70,0.17668603179072848],[121,206,71,0.16997586341305126],[121,206,72,0.16338216721209192],[121,206,73,0.1569215456506619],[121,206,74,0.15060266069559325],[121,206,75,0.14442638251055726],[121,206,76,0.13838606916045343],[121,206,77,0.1324679785372058],[121,206,78,0.1266518135483282],[121,206,79,0.12091140144863108],[121,207,64,0.20696268380651053],[121,207,65,0.20272536957987394],[121,207,66,0.19840673535717962],[121,207,67,0.19397951903037924],[121,207,68,0.18939823555777957],[121,207,69,0.1837324445936223],[121,207,70,0.17690741421111672],[121,207,71,0.17016937700383974],[121,207,72,0.1635392728728216],[121,207,73,0.15703025574829313],[121,207,74,0.15064783296789294],[121,207,75,0.1443901191016398],[121,207,76,0.13824820526616655],[121,207,77,0.1322066448183498],[121,207,78,0.1262440561737623],[121,207,79,0.12033384335809202],[121,208,64,0.2062385848229127],[121,208,65,0.2017255126518891],[121,208,66,0.19713032135629396],[121,208,67,0.19242238289257155],[121,208,68,0.18755644433248198],[121,208,69,0.18248586743302936],[121,208,70,0.17700489762240545],[121,208,71,0.170243843295175],[121,208,72,0.16358083735922765],[121,208,73,0.15702543879149405],[121,208,74,0.15057989512241965],[121,208,75,0.14423950551995757],[121,208,76,0.13799308253870654],[121,208,77,0.13180557190668524],[121,208,78,0.12419688646373148],[121,208,79,0.11636741345795876],[121,209,64,0.20547997892217093],[121,209,65,0.20067992519596328],[121,209,66,0.19579805403991404],[121,209,67,0.1908003660793102],[121,209,68,0.1856419489415776],[121,209,69,0.18028004171548367],[121,209,70,0.17468086890631151],[121,209,71,0.16881954598396376],[121,209,72,0.16267979885774744],[121,209,73,0.1562536049113423],[121,209,74,0.14954075506400566],[121,209,75,0.14254833643435785],[121,209,76,0.1352901352879731],[121,209,77,0.12778596004884377],[121,209,78,0.12006088424815341],[121,209,79,0.11214440936861408],[121,210,64,0.20468343653602294],[121,210,65,0.1995851292490617],[121,210,66,0.19440664984379608],[121,210,67,0.18911073082664276],[121,210,68,0.18365293723458181],[121,210,69,0.1779945608109852],[121,210,70,0.1721061503828357],[121,210,71,0.16596715746323776],[121,210,72,0.15956548860451472],[121,210,73,0.15289699739257054],[121,210,74,0.145964915976559],[121,210,75,0.13877922611047827],[121,210,76,0.13135596975996464],[121,210,77,0.12371649939787424],[121,210,78,0.11588666817708428],[121,210,79,0.10789596022543876],[121,211,64,0.20384496802226298],[121,211,65,0.19843775749734316],[121,211,66,0.19295355707312398],[121,211,67,0.18735203542642048],[121,211,68,0.1815893924321308],[121,211,69,0.17563109511680275],[121,211,70,0.16945209374338385],[121,211,71,0.16303620512772746],[121,211,72,0.15637549680869858],[121,211,73,0.14946962996705657],[121,211,74,0.1423251614182178],[121,211,75,0.1349548050575241],[121,211,76,0.12737665318377267],[121,211,77,0.11961335816729955],[121,211,78,0.11169127496405948],[121,211,79,0.1036395650041849],[121,212,64,0.20295994107887225],[121,212,65,0.19723437159269033],[121,212,66,0.19143667406536585],[121,212,67,0.18552374983973186],[121,212,68,0.17945260434322138],[121,212,69,0.1731929438798781],[121,212,70,0.16672412950579904],[121,212,71,0.16003429993679705],[121,212,72,0.15311958908564596],[121,212,73,0.14598332229856964],[121,212,74,0.13863519204430644],[121,212,75,0.13109041383248318],[121,212,76,0.12336886315464372],[121,212,77,0.11549419425110066],[121,212,78,0.10749294151135498],[121,212,79,0.09939360431264148],[121,213,64,0.20202308591581797],[121,213,65,0.19597136876696558],[121,213,66,0.1898541569647959],[121,213,67,0.18362596306969156],[121,213,68,0.17724477533179978],[121,213,69,0.17068454094366722],[121,213,70,0.16392897139411905],[121,213,71,0.1569704110910416],[121,213,72,0.14980889244765386],[121,213,73,0.14245119024024583],[121,213,74,0.13490987640998986],[121,213,75,0.1272023764740065],[121,213,76,0.1193500286962835],[121,213,77,0.11137714714758373],[121,213,78,0.10331008975695688],[121,213,79,0.09517633242365742],[121,214,64,0.20102858950556513],[121,214,65,0.1946449779957029],[121,214,66,0.1882043183037088],[121,214,67,0.18165918344438595],[121,214,68,0.17496872215158027],[121,214,69,0.16811106015234584],[121,214,70,0.16107412956047829],[121,214,71,0.15385429349069413],[121,214,72,0.1464552454480392],[121,214,73,0.13888692893350196],[121,214,74,0.13116447884268712],[121,214,75,0.1233071861957982],[121,214,76,0.11533748769112559],[121,214,77,0.10727998152127743],[121,214,78,0.09916047083366945],[121,214,79,0.09100503615228861],[121,215,64,0.19997028030275293],[121,215,65,0.19325134703406435],[121,215,66,0.18648561765868607],[121,215,67,0.17962423303694605],[121,215,68,0.17262767484758695],[121,215,69,0.16547812159531874],[121,215,70,0.15816752922246394],[121,215,71,0.15069602592634093],[121,215,72,0.1430706650402574],[121,215,73,0.13530421918059604],[121,215,74,0.12741401762025348],[121,215,75,0.11942082877893986],[121,215,76,0.11134778964344716],[121,215,77,0.10321938384673561],[121,215,78,0.0950604700460455],[121,215,79,0.08689536214542623],[121,216,64,0.1988419048880951],[121,216,65,0.1917867217147413],[121,216,66,0.1846967457198715],[121,216,67,0.1775222375226606],[121,216,68,0.17022517399978151],[121,216,69,0.1627915999562545],[121,216,70,0.15521723598205384],[121,216,71,0.14750566128241527],[121,216,72,0.13966693145845335],[121,216,73,0.1317162584335722],[121,216,74,0.12367275484313738],[121,216,75,0.11555824510441946],[121,216,76,0.10739614527558619],[121,216,77,0.09921041369757216],[121,216,78,0.09102457429376927],[121,216,79,0.08286081427811773],[121,217,64,0.19763749805066974],[121,217,65,0.19024771895956907],[121,217,66,0.1828368031767203],[121,217,67,0.17535471284253443],[121,217,68,0.16776506765817792],[121,217,69,0.160057536309884],[121,217,70,0.15223128917658182],[121,217,71,0.14429299012373992],[121,217,72,0.13625529252115132],[121,217,73,0.12813541784310836],[121,217,74,0.11995381949476387],[121,217,75,0.11173293437813289],[121,217,76,0.10349602457303306],[121,217,77,0.09526611136362127],[121,217,78,0.08706500369312833],[121,217,79,0.07891242297661803],[121,218,64,0.19635184787511542],[121,218,65,0.18863169501259666],[121,218,66,0.180905575883677],[121,218,67,0.1731237501072413],[121,218,68,0.16525160938844877],[121,218,69,0.15728215478486385],[121,218,70,0.149217644692953],[121,218,71,0.14106741912200418],[121,218,72,0.1328462888522255],[121,218,73,0.12457302690888326],[121,218,74,0.11626896528787617],[121,218,75,0.10795669970909802],[121,218,76,0.09965890500715568],[121,218,77,0.09139726359602346],[121,218,78,0.0831915092684186],[121,218,79,0.07505858841099568],[121,219,64,0.19498105744470978],[121,219,65,0.18693721045110676],[121,219,66,0.17890390782264826],[121,219,67,0.1708323002339528],[121,219,68,0.16268965891115453],[121,219,69,0.15447198558105352],[121,219,70,0.1461842287524932],[121,219,71,0.13783796586137345],[121,219,72,0.1294497016016648],[121,219,73,0.12103928736728292],[121,219,74,0.11262846499424081],[121,219,75,0.10423953780628513],[121,219,76,0.09589417177339507],[121,219,77,0.08761232939287558],[121,219,78,0.07941133870098996],[121,219,79,0.0713050996182667],[121,220,64,0.1935232048067474],[121,220,65,0.18516459357159323],[121,220,66,0.17683417342495936],[121,220,67,0.1684845598600931],[121,220,68,0.16008498687544018],[121,220,69,0.15163409589368296],[121,220,70,0.14313910424446943],[121,220,71,0.13461337163957754],[121,220,72,0.12607462433209599],[121,220,73,0.11754331804167457],[121,220,74,0.1090411430500364],[121,220,75,0.10058967465932875],[121,220,76,0.09220917198690314],[121,220,77,0.0839175278457546],[121,220,78,0.0757293722340582],[121,220,79,0.0676553317293477],[121,221,64,0.19197910287163208],[121,221,65,0.1833166037784491],[121,221,66,0.17470085085221088],[121,221,67,0.1660864601211138],[121,221,68,0.15744468535773906],[121,221,69,0.14877643035341429],[121,221,70,0.14009075124970172],[121,221,71,0.13140233395092535],[121,221,72,0.12272966081355453],[121,221,73,0.1140933324630187],[121,221,74,0.10551454831723665],[121,221,75,0.09701374916113673],[121,221,76,0.08860942487435522],[121,221,77,0.08031709016736295],[121,221,78,0.07214843093364082],[121,221,79,0.06411062357675042],[121,222,64,0.19035316093046123],[121,222,65,0.18139919662300866],[121,222,66,0.17251119786194763],[121,222,67,0.16364625991275913],[121,222,68,0.15477768571653058],[121,222,69,0.145908262639028],[121,222,70,0.13704846345056645],[121,222,71,0.1282138603994744],[121,222,72,0.11942325053729252],[121,222,73,0.11069695114283697],[121,222,74,0.10205526896082515],[121,222,75,0.0935171467144589],[121,222,76,0.08509899008836147],[121,222,77,0.07681367811095159],[121,222,78,0.06866975959814856],[121,222,79,0.060670838052909834],[121,223,64,0.18865434947607806],[121,223,65,0.17942239214808095],[121,223,66,0.1702760318988734],[121,223,67,0.16117524528060118],[121,223,68,0.15209538546415272],[121,223,69,0.14304075995705748],[121,223,70,0.13402286216871306],[121,223,71,0.12505774584269477],[121,223,72,0.11616412381806872],[121,223,73,0.10736165044510886],[121,223,74,0.09866939147133642],[121,223,75,0.09010448493832392],[121,223,76,0.08168099634796311],[121,223,77,0.07340897107143013],[121,223,78,0.06529368668955524],[121,223,79,0.057335107669524814],[121,224,64,0.18689726999809947],[121,224,65,0.17740124818673605],[121,224,66,0.16801061605393924],[121,224,67,0.1586885365892673],[121,224,68,0.14941238583440297],[121,224,69,0.1401876621083747],[121,224,70,0.13102652980515328],[121,224,71,0.12194517460644665],[121,224,72,0.11296188840134579],[121,224,73,0.10409535005632793],[121,224,74,0.09536310591963292],[121,224,75,0.08678025365140069],[121,224,76,0.07835833267249159],[121,224,77,0.07010442422338595],[121,224,78,0.062020463724759146],[121,224,79,0.054102767833244275],[121,225,64,0.18510333139191162],[121,225,65,0.1753569402424531],[121,225,66,0.1657356525206328],[121,225,67,0.15620600511936386],[121,225,68,0.1467473417287482],[121,225,69,0.13736607687406863],[121,225,70,0.12807476447749327],[121,225,71,0.1188894496393525],[121,225,72,0.10982774952542433],[121,225,73,0.10090714109195535],[121,225,74,0.09214345957415573],[121,225,75,0.08354961135584296],[121,225,76,0.07513450452452426],[121,225,77,0.06690220010038447],[121,225,78,0.0588512866143719],[121,225,79,0.05097448039993717],[121,226,64,0.1833020345731034],[121,226,65,0.17331794953895666],[121,226,66,0.16347838514837137],[121,226,67,0.15375330071984666],[121,226,68,0.14412392571268],[121,226,69,0.1345973934502249],[121,226,70,0.1251864576543011],[121,226,71,0.11590685048701684],[121,226,72,0.10677536540708805],[121,226,73,0.09780815690112056],[121,226,74,0.08901926103834819],[121,226,75,0.0804193404751677],[121,226,76,0.07201465720883872],[121,226,77,0.06380627605093116],[121,226,78,0.05578950146568216],[121,226,79,0.04795355009653102],[121,227,64,0.18153547529799213],[121,227,65,0.1713252502116059],[121,227,66,0.1612784195752901],[121,227,67,0.15136829485122624],[121,227,68,0.14157789325763412],[121,227,69,0.13191494641441015],[121,227,70,0.12239230731913327],[121,227,71,0.11302531893715945],[121,227,72,0.10382990167618986],[121,227,73,0.0948208670467327],[121,227,74,0.08601046146709788],[121,227,75,0.07740714383628007],[121,227,76,0.06901460015847827],[121,227,77,0.06083099816220423],[121,227,78,0.05284848452027722],[121,227,79,0.045052926944751555],[121,228,64,0.17986383128740333],[121,228,65,0.16944095669302417],[121,228,66,0.15919930315103714],[121,228,67,0.14911552359084948],[121,228,68,0.1391743517657908],[121,228,69,0.12938397835464358],[121,228,70,0.11975723349669354],[121,228,71,0.11030897440666174],[121,228,72,0.10105418287053725],[121,228,73,0.09200629708844196],[121,228,74,0.08317578181484217],[121,228,75,0.07456894039957956],[121,228,76,0.066186971982535],[121,228,77,0.05802527674349168],[121,228,78,0.05007301176239861],[121,228,79,0.0423128997041108],[121,229,64,0.17833922823528525],[121,229,65,0.16771971640101724],[121,229,66,0.15729769725010354],[121,229,67,0.14705323493667144],[121,229,68,0.13697274335700974],[121,229,69,0.12706470449178792],[121,229,70,0.11734176672672401],[121,229,71,0.10781816595683438],[121,229,72,0.09850784264720998],[121,229,73,0.08942279970689096],[121,229,74,0.0805717050913822],[121,229,75,0.07195874269335584],[121,229,76,0.0635827147217627],[121,229,77,0.055436398410258804],[121,229,78,0.04750615954210782],[121,229,79,0.039771824930973365],[121,230,64,0.17699946802971436],[121,230,65,0.166201257012464],[121,230,66,0.1556148497509453],[121,230,67,0.14522383229720479],[121,230,68,0.1350162916705627],[121,230,69,0.12500082966497691],[121,230,70,0.1151897414943883],[121,230,71,0.1055964892580835],[121,230,72,0.09623385149132294],[121,230,73,0.08711231787056431],[121,230,74,0.07823873292184479],[121,230,75,0.06961519221876743],[121,230,76,0.061238194191613166],[121,230,77,0.053098050304714414],[121,230,78,0.045178556001087555],[121,230,79,0.037456924461831485],[121,231,64,0.1758694513771081],[121,231,65,0.16491180297566843],[121,231,66,0.15417800887949096],[121,231,67,0.1436552971356398],[121,231,68,0.1333334459338804],[121,231,69,0.12322102232251482],[121,231,70,0.1133298045865899],[121,231,71,0.1036723299312572],[121,231,72,0.09426009210412012],[121,231,73,0.0851019860733919],[121,231,74,0.0762030035074641],[121,231,75,0.06756318243679438],[121,231,76,0.059176814112002395],[121,231,77,0.05103190970614486],[121,231,78,0.043109929150020085],[121,231,79,0.03538577403750158],[121,232,64,0.1749625328167602],[121,232,65,0.1638654248085922],[121,232,66,0.15300177168074372],[121,232,67,0.14236254935030293],[121,232,68,0.131939267299199],[121,232,69,0.12174033709849486],[121,232,70,0.1117768803901833],[121,232,71,0.10206037436950766],[121,232,72,0.09260091503889484],[121,232,73,0.08340572677469113],[121,232,74,0.07447792181138645],[121,232,75,0.0658155128845916],[121,232,76,0.05741068190879641],[121,232,77,0.049249307202289705],[121,232,78,0.041310751415305574],[121,232,79,0.033567911968897794],[121,233,64,0.17428180549412786],[121,233,65,0.16306531821320475],[121,233,66,0.15208936386025734],[121,233,67,0.14134874186983482],[121,233,68,0.13083675368550166],[121,233,69,0.12056158201079274],[121,233,70,0.11053358902157953],[121,233,71,0.10076308385455071],[121,233,72,0.09125867040666552],[121,233,73,0.08202583796608659],[121,233,74,0.07306579810000234],[121,233,75,0.0643745708666382],[121,233,76,0.05594232305931664],[121,233,77,0.047752960833049786],[121,233,78,0.03978397871457076],[121,233,79,0.03200656665526764],[121,234,64,0.17382131503148016],[121,234,65,0.16250501240226345],[121,234,66,0.1514338504653311],[121,234,67,0.1406064890188282],[121,234,68,0.1300181027816496],[121,234,69,0.11967663005526687],[121,234,70,0.10959161720278697],[121,234,71,0.09977213204449495],[121,234,72,0.09022521591196854],[121,234,73,0.08095457232788814],[121,234,74,0.07195949552029202],[121,234,75,0.06323404163124491],[121,234,76,0.05476644513029831],[121,234,77,0.046538782596034084],[121,234,78,0.03852688569008376],[121,234,79,0.03070050481754864],[121,235,64,0.17356720174200868],[121,235,65,0.16216950694685323],[121,235,66,0.151019276791358],[121,235,67,0.14011902812718555],[121,235,68,0.12946591278429415],[121,235,69,0.11906767488746879],[121,235,70,0.108933041713084],[121,235,71,0.09906980582147819],[121,235,72,0.08948340138660439],[121,235,73,0.08017570834110421],[121,235,74,0.07114408729359122],[121,235,75,0.06238064783937752],[121,235,76,0.05387175255004084],[121,235,77,0.04559775859431323],[121,235,78,0.03753299861838407],[121,235,79,0.029646002197939725],[121,236,64,0.17349877034309616],[121,236,65,0.16203633636709744],[121,236,66,0.15082173881606142],[121,236,67,0.1398613137750044],[121,236,68,0.12915432036186983],[121,236,69,0.11870843019822748],[121,236,70,0.10853160515645381],[121,236,71,0.0986303693929874],[121,236,72,0.08900852988868269],[121,236,73,0.07966611361407702],[121,236,74,0.07059852399205997],[121,236,75,0.06179591901175255],[121,236,76,0.053242813028926896],[121,236,77,0.04491790397316454],[121,236,78,0.036794127375622515],[121,236,79,0.028838938333716892],[121,237,64,0.1735894576598125],[121,237,65,0.16207653273068562],[121,237,66,0.15081035323535155],[121,237,67,0.1398010145872541],[121,237,68,0.12905004563389114],[121,237,69,0.11856524248853591],[121,237,70,0.10835391371240419],[121,237,71,0.09842136132550379],[121,237,72,0.08876976510668509],[121,237,73,0.07939727027450887],[121,237,74,0.0702972809084671],[121,237,75,0.0614579611714309],[121,237,76,0.05286194609630017],[121,237,77,0.044486263405655445],[121,237,78,0.03630246754812061],[121,237,79,0.028276986858885956],[121,238,64,0.1738016680122802],[121,238,65,0.162249392079422],[121,238,66,0.1509419740766366],[121,238,67,0.1398932060645709],[121,238,68,0.1291070898339364],[121,238,69,0.11859182107010531],[121,238,70,0.10835422511614894],[121,238,71,0.0983984637049185],[121,238,72,0.0887251019893165],[121,238,73,0.07933036408294895],[121,238,74,0.07020557913311837],[121,238,75,0.06133681967208955],[121,238,76,0.05270473371784895],[121,238,77,0.04428457182501398],[121,238,78,0.03604641002531341],[121,238,79,0.02795556934471596],[121,239,64,0.1740751610946998],[121,239,65,0.16249171573713816],[121,239,66,0.15115115620007963],[121,239,67,0.14007091332344843],[121,239,68,0.12925770639428116],[121,239,69,0.11872048228521015],[121,239,70,0.10846581206253154],[121,239,71,0.09849683714741846],[121,239,72,0.0888125367461406],[121,239,73,0.07940716780656784],[121,239,74,0.07026987916566096],[121,239,75,0.06138450130113182],[121,239,76,0.05272951285085522],[121,239,77,0.04427818481861417],[121,239,78,0.035998903149352356],[121,239,79,0.02785567013066654],[121,240,64,0.17433043764107417],[121,240,65,0.16272417741308454],[121,240,66,0.15135894963462224],[121,240,67,0.14025571327996122],[121,240,68,0.12942415034942423],[121,240,69,0.1188743665916366],[121,240,70,0.1086129710597695],[121,240,71,0.09864226978084266],[121,240,72,0.08895974720803174],[121,240,73,0.07955770361657379],[121,240,74,0.07042304973877703],[121,240,75,0.061537259707736845],[121,240,76,0.052876483156041286],[121,240,77,0.0444118170974796],[121,240,78,0.036109738011432545],[121,240,79,0.02793269435028488],[121,241,64,0.17449823501781628],[121,241,65,0.16287809328447386],[121,241,66,0.15149724573515796],[121,241,67,0.14037999323762457],[121,241,68,0.1295392017942356],[121,241,69,0.11898657855165293],[121,241,70,0.10872911643755924],[121,241,71,0.09876853701411169],[121,241,72,0.08910099452652163],[121,241,73,0.07971691919638145],[121,241,74,0.07060100068243527],[121,241,75,0.06173231243159478],[121,241,76,0.05308457744634859],[121,241,77,0.044626575803643445],[121,241,78,0.03632269407947351],[121,241,79,0.02813361666171618],[121,242,64,0.17452515111631178],[121,242,65,0.16290017420385827],[121,242,66,0.1515128021574652],[121,242,67,0.14039041283310255],[121,242,68,0.12954923971911259],[121,242,69,0.1190030496996535],[121,242,70,0.10875960511379619],[121,242,71,0.09882035105976403],[121,242,72,0.08918034530255856],[121,242,73,0.07982831106094156],[121,242,74,0.07074681322814806],[121,242,75,0.061912558406487864],[121,242,76,0.053296818965717634],[121,242,77,0.04486598117087888],[121,242,78,0.03658221727171654],[121,242,79,0.028404281301475723],[121,243,64,0.1743720372124339],[121,243,65,0.16275098874100719],[121,243,66,0.15136579011435897],[121,243,67,0.14024655388053311],[121,243,68,0.12941301537923897],[121,243,69,0.11888145692954483],[121,243,70,0.10866082102498636],[121,243,71,0.09875263109628907],[121,243,72,0.08915114509771806],[121,243,73,0.07984361635431973],[121,243,74,0.0708106618683314],[121,243,75,0.06202673813352138],[121,243,76,0.053460724361328524],[121,243,77,0.04507661288440823],[121,243,78,0.03683430637590468],[121,243,79,0.02869052140492513],[121,244,64,0.1740124438946191],[121,244,65,0.16240347701691468],[121,244,66,0.15102838931944979],[121,244,67,0.13991961342373385],[121,244,68,0.12910046303590386],[121,244,69,0.1185901714664943],[121,244,70,0.1083992827732806],[121,244,71,0.0985297890315012],[121,244,72,0.08897549997745027],[121,244,73,0.07972250541518328],[121,244,74,0.070749730248015],[121,244,75,0.06202958187007139],[121,244,76,0.053528689532039375],[121,244,77,0.045208735181312694],[121,244,78,0.03702737517413622],[121,244,79,0.02893925216440244],[121,245,64,0.17343112079935555],[121,245,65,0.16184151600082158],[121,245,66,0.15048343120745755],[121,245,67,0.13939114047970824],[121,245,68,0.12859154842526088],[121,245,69,0.11810723863604142],[121,245,70,0.10795077455400295],[121,245,71,0.09812503078173632],[121,245,72,0.08862376585805593],[121,245,73,0.07943227474995357],[121,245,74,0.07052812061216902],[121,245,75,0.06188194526016445],[121,245,76,0.05345835770276127],[121,245,77,0.045216899988865585],[121,245,78,0.0371130895426291],[121,245,79,0.029099537091157437],[121,246,64,0.1726225710179933],[121,246,65,0.16105853705881806],[121,246,66,0.1497230911291936],[121,246,67,0.1386518170562098],[121,246,68,0.12787515539779318],[121,246,69,0.11741938871813214],[121,246,70,0.10729950048680041],[121,246,71,0.0975196730236679],[121,246,72,0.08807404545211],[121,246,73,0.07894754005589934],[121,246,74,0.07011675631275385],[121,246,75,0.06155093179034972],[121,246,76,0.05321296900998085],[121,246,77,0.04506052731062471],[121,246,78,0.03704717868586802],[121,246,79,0.029123626515953946],[121,247,64,0.1715896611637411],[121,247,65,0.16005619666027188],[121,247,66,0.14874763032871502],[121,247,67,0.13770028412605834],[121,247,68,0.12694801126072577],[121,247,69,0.11652107924977556],[121,247,70,0.10643726253479266],[121,247,71,0.09670247541984152],[121,247,72,0.08731169263240927],[121,247,73,0.07824992894110379],[121,247,74,0.0694932768620959],[121,247,75,0.061010001414362566],[121,247,76,0.052761690818945245],[121,247,77,0.04470446198125441],[121,247,78,0.036790219551755605],[121,247,79,0.028967967327038338],[121,248,64,0.17034228821100153],[121,248,65,0.15884310126459045],[121,248,66,0.1475641886184035],[121,248,67,0.13654201334016502],[121,248,68,0.12581365144454432],[121,248,69,0.11541356921676556],[121,248,70,0.10536266225853796],[121,248,71,0.09566898836489211],[121,248,72,0.08632882406163965],[121,248,73,0.07732777299458796],[121,248,74,0.06864192500301239],[121,248,75,0.06023906464978123],[121,248,76,0.05207992792799806],[121,248,77,0.04411950582055389],[121,248,78,0.03630839335835678],[121,248,79,0.02859418280297631],[121,249,64,0.16889610434048216],[121,249,65,0.15743358752529715],[121,249,66,0.14618562877453706],[121,249,67,0.13518822535960048],[121,249,68,0.12448142420354882],[121,249,69,0.11410402565225004],[121,249,70,0.10408032671534534],[121,249,71,0.09442091634713211],[121,249,72,0.08512383796425359],[121,249,73,0.07617579886842908],[121,249,74,0.0675534252518718],[121,249,75,0.059224561411104146],[121,249,76,0.051149611750935506],[121,249,77,0.043282924125807996],[121,249,78,0.03557421304434023],[121,249,79,0.027970021252339945],[121,250,64,0.16727130114191474],[121,250,65,0.1558465590602921],[121,250,66,0.14462943378055182],[121,250,67,0.13365485578389522],[121,250,68,0.12296553614844816],[121,250,69,0.1126046632375117],[121,250,70,0.10260015887928962],[121,250,71,0.09296549706969565],[121,250,72,0.08370093994857776],[121,250,73,0.07479481804469731],[121,250,74,0.06622485335881487],[121,250,75,0.05795952380668992],[121,250,76,0.04995946750453953],[121,250,77,0.04217892534992334],[121,250,78,0.034567220334870134],[121,250,79,0.027070272022985526],[121,251,64,0.16549145463968157],[121,251,65,0.15410438114449546],[121,251,66,0.14291665814575857],[121,251,67,0.13196156974629983],[121,251,68,0.12128413949477465],[121,251,69,0.11093191757665445],[121,251,70,0.10093661302188087],[121,251,71,0.09131489652559226],[121,251,72,0.08206967582001329],[121,251,73,0.0731914149726456],[121,251,74,0.06465949611901124],[121,251,75,0.05644362209122761],[121,251,76,0.048505258365173734],[121,251,77,0.04079911272041396],[121,251,78,0.033274650992081566],[121,251,79,0.025877647290232383],[121,252,64,0.16358243271557985],[121,252,65,0.15223183478425065],[121,252,66,0.14107093462425094],[121,252,67,0.1301308263375428],[121,252,68,0.11945846199504859],[121,252,69,0.10910565289283995],[121,252,70,0.09910799555871877],[121,252,71,0.0894856202729736],[121,252,72,0.08024447136158502],[121,252,73,0.07137763327722726],[121,252,74,0.06286670096159988],[121,252,75,0.054683192932465194],[121,252,76,0.04679000549716995],[121,252,77,0.03914290646289097],[121,252,78,0.031692066696090926],[121,252,79,0.02438362787736812],[121,253,64,0.16157136660470384],[121,253,65,0.15025513172934832],[121,253,66,0.13911753774965982],[121,253,67,0.12818699410535853],[121,253,68,0.11751198060297607],[121,253,69,0.10714840496723259],[121,253,70,0.09713579193179996],[121,253,71,0.08749794120906206],[121,253,72,0.07824417909465664],[121,253,73,0.06937065975745776],[121,253,74,0.06086171473779703],[121,253,75,0.052691249119851465],[121,253,76,0.04482418279584466],[121,253,77,0.03721793520151939],[121,253,78,0.029823951878045582],[121,253,79,0.022589271202814707],[121,254,64,0.1594856882346567],[121,254,65,0.14820099206802304],[121,254,66,0.13708250568605307],[121,254,67,0.12615551895760233],[121,254,68,0.11546963999454293],[121,254,69,0.105084660213144],[121,254,70,0.0950440201608211],[121,254,71,0.0853753441940585],[121,254,72,0.0760916320710557],[121,254,73,0.06719250591323518],[121,254,74,0.05866551112753728],[121,254,75,0.05048746981470909],[121,254,76,0.04262588513058431],[121,254,77,0.03504039501918162],[121,254,78,0.027684273702243058],[121,254,79,0.020505979287277484],[121,255,64,0.15735223526368552],[121,255,65,0.14609578613149826],[121,255,66,0.1349918219724699],[121,255,67,0.12406214587107987],[121,255,68,0.11335711714279105],[121,255,69,0.1029401718462729],[121,255,70,0.09285861175932551],[121,255,71,0.08314398792963978],[121,255,72,0.07381320478802705],[121,255,73,0.06486968676207128],[121,255,74,0.05630460608518288],[121,255,75,0.04809817041684218],[121,255,76,0.040220968818956704],[121,255,77,0.032635374572353326],[121,255,78,0.025297003270437907],[121,255,79,0.01815622459177875],[121,256,64,0.1551964257478642],[121,256,65,0.14396474250571636],[121,256,66,0.1328706588064927],[121,256,67,0.12193219587459847],[121,256,68,0.11120013320879873],[121,256,69,0.10074131417609201],[121,256,70,0.0906068207717359],[121,256,71,0.0808321845494557],[121,256,72,0.0714383813586551],[121,256,73,0.062432896732220675],[121,256,74,0.0538108607489355],[121,256,75,0.0455562511009424],[121,256,76,0.03764316301117468],[121,256,77,0.030037144569959366],[121,256,78,0.02269659599811802],[121,256,79,0.015574231293723123],[121,257,64,0.153041507736443],[121,257,65,0.1418312266432922],[121,257,66,0.13074268559545002],[121,257,67,0.11978990131627229],[121,257,68,0.10902381511337758],[121,257,69,0.09851447685133445],[121,257,70,0.08831666238044308],[121,257,71,0.07846989816095874],[121,257,72,0.06899933215978114],[121,257,73,0.0599166840405065],[121,257,74,0.05122127361585443],[121,257,75,0.04290112642244647],[121,257,76,0.03493415517664652],[121,257,77,0.02728941577847676],[121,257,78,0.019928436452648562],[121,257,79,0.012806618549435598],[121,258,64,0.15090838300496426],[121,258,65,0.13971660983608017],[121,258,66,0.1286299846924284],[121,258,67,0.1176583635470435],[121,258,68,0.1068526862104144],[121,258,69,0.09628607796460992],[121,258,70,0.08601693726477051],[121,258,71,0.07608876946581666],[121,258,72,0.06653092857065927],[121,258,73,0.05735944679207648],[121,258,74,0.04857795104628054],[121,258,75,0.04017866537170066],[121,258,76,0.03214349814945046],[121,258,77,0.024445212894202067],[121,258,78,0.017048681290000013],[121,258,79,0.009912217062947077],[121,259,64,0.14882539316550422],[121,259,65,0.13765048492654008],[121,259,66,0.1265637205910365],[121,259,67,0.11557066629825508],[121,259,68,0.10472206093420275],[121,259,69,0.09409388188701578],[121,259,70,0.08374797487100746],[121,259,71,0.07373169798925566],[121,259,72,0.0640785334920168],[121,259,73,0.05480879531714326],[121,259,74,0.04593043167799355],[121,259,75,0.03743992182509335],[121,259,76,0.02932326597564774],[121,259,77,0.021557067281875814],[121,259,78,0.014109704599354107],[121,259,79,0.0069425947182349766],[121,260,64,0.1468253660447047],[121,260,65,0.13566734010694645],[121,260,66,0.12458039514048541],[121,260,67,0.11356568930126607],[121,260,68,0.10267340231034554],[121,260,69,0.09198188703372967],[121,260,70,0.08155604246449687],[121,260,71,0.07144677117822526],[121,260,72,0.06169145911819296],[121,260,73,0.05231455841499498],[121,260,74,0.04332827265384688],[121,260,75,0.034733343849880215],[121,260,76,0.02651994024543038],[121,260,77,0.018668643905712663],[121,260,78,0.011151536964750412],[121,260,79,0.003933385260148071],[121,261,64,0.1449333180910714],[121,261,65,0.13379361043290747],[121,261,66,0.12270818891896841],[121,261,67,0.11167372118976239],[121,261,68,0.10073934873929037],[121,261,69,0.0899851116050925],[121,261,70,0.07947838343149506],[121,261,71,0.0692731472490093],[121,261,72,0.05941034048441137],[121,261,73,0.049918309415808694],[121,261,74,0.04081337263561975],[121,261,75,0.03210049291891533],[121,261,76,0.023774056735285806],[121,261,77,0.015818760491415354],[121,261,78,0.008210602453285785],[121,261,79,9.179791696583995E-4],[121,262,64,0.14316620795690133],[121,262,65,0.13204742850030612],[121,262,66,0.12096670039651553],[121,262,67,0.10991617384033242],[121,262,68,0.09894339318886564],[121,262,69,0.08812923455580005],[121,262,70,0.077542822735964],[121,262,71,0.06724063221621543],[121,262,72,0.057266694283321075],[121,262,73,0.047652919048700074],[121,262,74,0.03841953210552325],[121,262,75,0.02957562535704187],[121,262,76,0.021119821384094364],[121,262,77,0.013041050556642595],[121,262,78,0.005319439943375639],[121,262,79,-0.0020726870667777198],[121,263,64,0.1415335149756641],[121,263,65,0.13043922533681568],[121,263,66,0.11936756030886389],[121,263,67,0.10830619490573858],[121,263,68,0.09730047400878836],[121,263,69,0.08643114243111064],[121,263,70,0.07576824636725843],[121,263,71,0.06537006846700824],[121,263,72,0.05528319395144849],[121,263,73,0.04554269611398735],[121,263,74,0.03617244107781059],[121,263,75,0.027185511495106104],[121,263,76,0.01858474869225257],[121,263,77,0.010363412591346759],[121,263,78,0.0025059585763674208],[121,263,79,-0.0050110696796596115],[121,264,64,0.14003810316944143],[121,264,65,0.1289726150976491],[121,264,66,0.11791532570307588],[121,264,67,0.10684955368328977],[121,264,68,0.09581783053462534],[121,264,69,0.08489973008569397],[121,264,70,0.07416532135016364],[121,264,71,0.06367394820630791],[121,264,72,0.05347415169024474],[121,264,73,0.04360371510749747],[121,264,74,0.03408983199425808],[121,264,75,0.024949396765503343],[121,264,76,0.01618941769735271],[121,264,77,0.007807551707946935],[121,264,78,-2.072397708369686E-4],[121,264,79,-0.007873914700936516],[121,265,64,0.13867737172953706],[121,265,65,0.1276455644142797],[121,265,66,0.11660865440062698],[121,265,67,0.10554580096310914],[121,265,68,0.0944961240353666],[121,265,69,0.08353695576404072],[121,265,70,0.07273745674025184],[121,265,71,0.06215725216210483],[121,265,72,0.051846207800972086],[121,265,73,0.04184433119103366],[121,265,74,0.032181798237299636],[121,265,75,0.022879105236717146],[121,265,76,0.013947346110093429],[121,265,77,0.005388614451654065],[121,265,78,-0.002803470177417454],[121,265,79,-0.008958463384317428],[121,266,64,0.13744469255070266],[121,266,65,0.1264518468916767],[121,266,66,0.11544176028303024],[121,266,67,0.10438970317515472],[121,266,68,0.09333082424910077],[121,266,69,0.08233915072925269],[121,266,70,0.07148200575400505],[121,266,71,0.06081851368571539],[121,266,72,0.05039922747784883],[121,266,73,0.040265882687729904],[121,266,74,0.030451278498225515],[121,266,75,0.02097928590621483],[121,266,76,0.011864983033223954],[121,266,77,0.003114917316314487],[121,266,78,2.2944413892400086E-4],[121,266,79,-0.0014260697330210539],[121,267,64,0.1363311350582764],[121,267,65,0.12538278291802535],[121,267,66,0.11440614948595579],[121,267,67,0.10337295084915235],[121,267,68,0.0923138614623894],[121,267,69,0.08129858335505981],[121,267,70,0.07039170892889712],[121,267,71,0.059651108145765686],[121,267,72,0.04912740498616555],[121,267,73,0.03886358108144063],[121,267,74,0.028894707055848862],[121,267,75,0.01924780190577066],[121,267,76,0.012546241188452505],[121,267,77,0.010399820884810989],[121,267,78,0.008353485372879516],[121,267,79,0.006402049624205083],[121,268,64,0.1353274782485261],[121,268,65,0.1244292646415829],[121,268,66,0.11349263729080777],[121,268,67,0.10248614111871035],[121,268,68,0.09143554382136199],[121,268,69,0.08040527734458168],[121,268,70,0.0694563779741926],[121,268,71,0.05864476729745095],[121,268,72,0.04802057495203127],[121,268,73,0.03762758831607034],[121,268,74,0.027502829853944047],[121,268,75,0.024102710720574703],[121,268,76,0.021574910307975766],[121,268,77,0.01912948735024103],[121,268,78,0.016773355326368252],[121,268,79,0.01450670582517902],[121,269,64,0.1344265095652387],[121,269,65,0.12358406568182331],[121,269,66,0.11269364522741859],[121,269,67,0.10172103373935575],[121,269,68,0.09068673931582837],[121,269,69,0.07964908350821556],[121,269,70,0.06866481975811711],[121,269,71,0.05778731810969469],[121,269,72,0.047065730307473616],[121,269,73,0.03947003014879656],[121,269,74,0.03658328046496321],[121,269,75,0.03371734928123419],[121,269,76,0.030896846931412744],[121,269,77,0.028140126727333487],[121,269,78,0.025459218040911613],[121,269,79,0.022859886464281852],[121,270,64,0.13362560995943212],[121,270,65,0.12284443487565788],[121,270,66,0.11200577764716729],[121,270,67,0.1010730798492928],[121,270,68,0.0900613216510413],[121,270,69,0.07902200432119585],[121,270,70,0.0680069996803615],[121,270,71,0.05706664535125304],[121,270,72,0.05296706462896886],[121,270,73,0.04987419880595743],[121,270,74,0.04673951474933943],[121,270,75,0.04359639560602219],[121,270,76,0.040473185300114914],[121,270,77,0.03739282643842128],[121,270,78,0.03437262522756024],[121,270,79,0.031424143450125244],[121,271,64,0.130372512161717],[121,271,65,0.12219441304179089],[121,271,66,0.11141245451303879],[121,271,67,0.10052464645640002],[121,271,68,0.08954026851765831],[121,271,69,0.07850344195216033],[121,271,70,0.07005829058380927],[121,271,71,0.06701809405556905],[121,271,72,0.0638208856416774],[121,271,73,0.06050853454699215],[121,271,74,0.057120416715672404],[121,271,75,0.05369262499138148],[121,271,76,0.05025730493308014],[121,271,77,0.04684211694559263],[121,271,78,0.04346982517254877],[121,271,79,0.04015801339182344],[121,272,64,0.12586480442877213],[121,272,65,0.11654135890494811],[121,272,66,0.10726394333630537],[121,272,67,0.09824677621473708],[121,272,68,0.08903857273509058],[121,272,69,0.08432794612300458],[121,272,70,0.08137871706598888],[121,272,71,0.07819478780085633],[121,272,72,0.0748177540713092],[121,272,73,0.0712893005635237],[121,272,74,0.06765010912372585],[121,272,75,0.06393889090400089],[121,272,76,0.060191543520532236],[121,272,77,0.05644043409138138],[121,272,78,0.05271380880532018],[121,272,79,0.04903532946053656],[121,273,64,0.12000250885182848],[121,273,65,0.1104621611650137],[121,273,66,0.10114605975199294],[121,273,67,0.09366044507620919],[121,273,68,0.09341155351953924],[121,273,69,0.09320087714889329],[121,273,70,0.09272364108336174],[121,273,71,0.08940638972791769],[121,273,72,0.0858604170485722],[121,273,73,0.08212699504622387],[121,273,74,0.07824789299743774],[121,273,75,0.07426423353148831],[121,273,76,0.07021547310914433],[121,273,77,0.06613850797787514],[121,273,78,0.062066906458561485],[121,273,79,0.05803026820095573],[121,274,64,0.11404048364636248],[121,274,65,0.10444156549807848],[121,274,66,0.10022671392522813],[121,274,67,0.09980036794132717],[121,274,68,0.09945226918860149],[121,274,69,0.09917072904782602],[121,274,70,0.09893562959213192],[121,274,71,0.09872058845802925],[121,274,72,0.09685740190722944],[121,274,73,0.09293651311386178],[121,274,74,0.08883600485254496],[121,274,75,0.0845991114306737],[121,274,76,0.08026853491555867],[121,274,77,0.07588538082027126],[121,274,78,0.07148821996360277],[121,274,79,0.06711227733377217],[121,275,64,0.10822968432147878],[121,275,65,0.1072869725755578],[121,275,66,0.10665866769611464],[121,275,67,0.10610487303429199],[121,275,68,0.105088682101386],[121,275,69,0.10431742870711719],[121,275,70,0.10407408345416091],[121,275,71,0.1042974331089137],[121,275,72,0.10455760104001931],[121,275,73,0.10363757281713121],[121,275,74,0.09934010582309294],[121,275,75,0.09487594490973092],[121,275,76,0.09029062717327323],[121,275,77,0.08562902887157378],[121,275,78,0.08093426797890965],[121,275,79,0.07624673381776016],[121,276,64,0.11102551311300757],[121,276,65,0.10782201740021191],[121,276,66,0.10529311417188514],[121,276,67,0.10343008345329502],[121,276,68,0.102209913963487],[121,276,69,0.10159452696633159],[121,276,70,0.1015302313759488],[121,276,71,0.10195018945736906],[121,276,72,0.10277341606969703],[121,276,73,0.10390118021190736],[121,276,74,0.1052240388329514],[121,276,75,0.10502975005195336],[121,276,76,0.100222782679541],[121,276,77,0.0953170728109724],[121,276,78,0.09035971826772894],[121,276,79,0.08539568709233233],[121,277,64,0.10819084800004375],[121,277,65,0.1050131371073944],[121,277,66,0.10254311759383367],[121,277,67,0.10077093688685207],[121,277,68,0.09967151835201515],[121,277,69,0.09920369299644821],[121,277,70,0.09930956090822107],[121,277,71,0.09991688501245],[121,277,72,0.10093798677305033],[121,277,73,0.10226664362460158],[121,277,74,0.10379040741255419],[121,277,75,0.10541312997473584],[121,277,76,0.107057725855079],[121,277,77,0.10489757629550378],[121,277,78,0.0997182065265935],[121,277,79,0.0945186870126136],[121,278,64,0.10573173313980544],[121,278,65,0.10257563522468194],[121,278,66,0.1001589024326559],[121,278,67,0.09847068126883429],[121,278,68,0.09748399292894727],[121,278,69,0.09715477252423776],[121,278,70,0.0974211362378763],[121,278,71,0.09820570209764712],[121,278,72,0.09941438098928901],[121,278,73,0.10093374437542507],[121,278,74,0.10264842334598456],[121,278,75,0.10446175054212653],[121,278,76,0.10629578223237701],[121,278,77,0.10808964516577169],[121,278,78,0.1089632413310774],[121,278,79,0.10357369596135815],[121,279,64,0.10365750917333877],[121,279,65,0.1005189670962276],[121,279,66,0.09814985849738145],[121,279,67,0.09653846721061721],[121,279,68,0.09565608661402203],[121,279,69,0.09545596636734521],[121,279,70,0.09587248498997775],[121,279,71,0.09682339696353481],[121,279,72,0.0982085182202801],[121,279,73,0.09990753655126722],[121,279,74,0.1018022675044879],[121,279,75,0.10379551265645592],[121,279,76,0.10580846427935048],[121,279,77,0.10777905869436444],[121,279,78,0.10966055366960525],[121,279,79,0.11142028421589423],[121,280,64,0.10197526070741436],[121,280,65,0.09885038941490004],[121,280,66,0.09652324698900194],[121,280,67,0.09498139800114963],[121,280,68,0.09419459184346862],[121,280,69,0.09411361730069712],[121,280,70,0.09466938058747365],[121,280,71,0.09577507846242572],[121,280,72,0.09732477768287684],[121,280,73,0.0991916387230265],[121,280,74,0.10125478669543314],[121,280,75,0.10341649132250907],[121,280,76,0.10559708652217814],[121,280,77,0.10773332521931078],[121,280,78,0.10977697664737207],[121,280,79,0.11169359475682861],[121,281,64,0.10068967407424295],[121,281,65,0.09757480957681508],[121,281,66,0.0952840422235976],[121,281,67,0.09380436452716134],[121,281,68,0.09310417354765366],[121,281,69,0.09313203395733788],[121,281,70,0.09381566191606255],[121,281,71,0.09506402425892807],[121,281,72,0.09676581174921495],[121,281,73,0.0987880451708022],[121,281,74,0.10100730316588352],[121,281,75,0.10332533382565412],[121,281,76,0.10566162965538511],[121,281,77,0.10795177868782191],[121,281,78,0.11014607485615857],[121,281,79,0.11220829197728494],[121,282,64,0.09980307866820592],[121,282,65,0.09669481918820622],[121,282,66,0.09443495801175483],[121,282,67,0.09301006528599176],[121,282,68,0.09238738359525805],[121,282,69,0.0925135005140415],[121,282,70,0.09331323904443944],[121,282,71,0.094691683320697],[121,282,72,0.09653254584290127],[121,282,73,0.09869712368876021],[121,282,74,0.10105961074406278],[121,282,75,0.10352125459550987],[121,282,76,0.10600073445858404],[121,282,77,0.10843250336860077],[121,282,78,0.11076540466708273],[121,282,79,0.11296144441552108],[121,283,64,0.09931594600458993],[121,283,65,0.09621118598109452],[121,283,66,0.09397693302319299],[121,283,67,0.09259948586136246],[121,283,68,0.092045135093065],[121,283,69,0.09225874655576699],[121,283,70,0.0931625593938108],[121,283,71,0.09465813907293608],[121,283,72,0.096624639137115],[121,283,73,0.09891807423427951],[121,283,74,0.10141043174216352],[121,283,75,0.10400249058935374],[121,283,76,0.10661215580249023],[121,283,77,0.10917278652632467],[121,283,78,0.11163181159674795],[121,283,79,0.11394949319268005],[121,284,64,0.0992264022086764],[121,284,65,0.0961223592529159],[121,284,66,0.09390862986603082],[121,284,67,0.09257139237102119],[121,284,68,0.09207619095032515],[121,284,69,0.09236643150131968],[121,284,70,0.0933620887400804],[121,284,71,0.09496158765770779],[121,284,72,0.0970399607050485],[121,284,73,0.09944840352585943],[121,284,74,0.10205689051214806],[121,284,75,0.10476577429114642],[121,284,76,0.1074922355409555],[121,284,77,0.11016859160858683],[121,284,78,0.11274090412894544],[121,284,79,0.11516772673081044],[121,285,64,0.0995300286026059],[121,285,65,0.09642426402394033],[121,285,66,0.09422622341691145],[121,285,67,0.09292211461824995],[121,285,68,0.09247694252847277],[121,285,69,0.09283291943464106],[121,285,70,0.09390808289217284],[121,285,71,0.09559810708904132],[121,285,72,0.0977743567231083],[121,285,73,0.10028369077693189],[121,285,74,0.10299427812522988],[121,285,75,0.10580609770084509],[121,285,76,0.10863566611571035],[121,285,77,0.11141432170355198],[121,285,78,0.11408681718316438],[121,285,79,0.11661004429705613],[121,286,64,0.1002198949434821],[121,286,65,0.0971103284417632],[121,286,66,0.0949234229154976],[121,286,67,0.09364556345170982],[121,286,68,0.0932414228765544],[121,286,69,0.09365228884098675],[121,286,70,0.09479459454581085],[121,286,71,0.09656166180616171],[121,286,72,0.0988216532401211],[121,286,73,0.1014175891025107],[121,286,74,0.10421605275302187],[121,286,75,0.107116711954782],[121,286,76,0.11003548960325266],[121,286,77,0.11290281811620495],[121,286,78,0.11566221022970047],[121,286,79,0.11826895356265055],[121,287,64,0.10128662766391272],[121,287,65,0.09817154670253536],[121,287,66,0.09599153003997668],[121,287,67,0.09473328451994611],[121,287,68,0.09436135672494494],[121,287,69,0.09481637941689991],[121,287,70,0.09601351748180159],[121,287,71,0.09784414480197945],[121,287,72,0.1001736967190569],[121,287,73,0.10284186486888042],[121,287,74,0.10571387813097638],[121,287,75,0.10868916512665394],[121,287,76,0.11168313499201349],[121,287,77,0.11462539717012565],[121,287,78,0.11745830356727843],[121,287,79,0.12013560620119462],[121,288,64,0.10271851308872437],[121,288,65,0.09959657746265405],[121,288,66,0.09741953293729477],[121,288,67,0.09617454839426592],[121,288,68,0.0958262472110602],[121,288,69,0.09631487592769256],[121,288,70,0.09755466808254731],[121,288,71,0.09943545730056158],[121,288,72,0.10182043232499327],[121,288,73,0.10454647496006364],[121,288,74,0.10747770007787294],[121,288,75,0.11051337818290541],[121,288,76,0.11356849366361432],[121,288,77,0.11657192520864657],[121,288,78,0.11946495273710656],[121,288,79,0.12219987150020417],[121,289,64,0.10450163562799891],[121,289,65,0.10137187774106893],[121,289,66,0.09919423620827056],[121,289,67,0.09795647706014188],[121,289,68,0.09762349933722064],[121,289,69,0.09813542911258938],[121,289,70,0.0994059041669314],[121,289,71,0.10132362598373179],[121,289,72,0.10375001995946798],[121,289,73,0.10651968196120959],[121,289,74,0.10949586107149267],[121,289,75,0.11257775909264],[121,289,76,0.11568003307834973],[121,289,77,0.11873093179552718],[121,289,78,0.12167076107348884],[121,289,79,0.12445044798605195],[121,290,64,0.10662005094632487],[121,290,65,0.10348187231209],[121,290,66,0.10130042684747781],[121,290,67,0.10006420677702865],[121,290,68,0.09973858016055392],[121,290,69,0.10026381363742098],[121,290,70,0.10155328114346801],[121,290,71,0.10349495776669121],[121,290,72,0.10594898804111241],[121,290,73,0.10874820725879908],[121,290,74,0.11175525288037891],[121,290,75,0.11486935509196394],[121,290,76,0.1180049486648001],[121,290,77,0.1210897611150491],[121,290,78,0.124063230390906],[121,290,79,0.1268750130622155],[121,291,64,0.10905599410824302],[121,291,65,0.1059091585886821],[121,291,66,0.10372107613787951],[121,291,67,0.10248108730657662],[121,291,68,0.10215521571491804],[121,291,69,0.10268412309484748],[121,291,70,0.10398124548169696],[121,291,71,0.10593423212263797],[121,291,72,0.10840242503254272],[121,291,73,0.11121742205764079],[121,291,74,0.1142415072516546],[121,291,75,0.11737404310272848],[121,291,76,0.1205293539135393],[121,291,77,0.12363476157149772],[121,291,78,0.12662894980752532],[121,291,79,0.12946041066079078],[121,292,64,0.11179012270000666],[121,292,65,0.10863474699636277],[121,292,66,0.106437577500333],[121,292,67,0.10518891750936132],[121,292,68,0.10485562466496678],[121,292,69,0.10537900205223566],[121,292,70,0.10667286550194688],[121,292,71,0.10862493095651099],[121,292,72,0.11109420871363629],[121,292,73,0.11391157631478815],[121,292,74,0.11693922465502915],[121,292,75,0.12007675830580594],[121,292,76,0.12323850867507585],[121,292,77,0.12635151358816787],[121,292,78,0.12935382270528173],[121,292,79,0.1321928769074147],[121,293,64,0.11480179492755094],[121,293,65,0.11163833683759922],[121,293,66,0.10943002029785798],[121,293,67,0.10816821731002191],[121,293,68,0.10782078869224776],[121,293,69,0.10832991514708018],[121,293,70,0.1096100994833556],[121,293,71,0.11154950602774688],[121,293,72,0.11400727320107984],[121,293,73,0.11681406559026175],[121,293,74,0.11983224108287815],[121,293,75,0.12296176086878285],[121,293,76,0.12611708566190655],[121,293,77,0.12922509560577422],[121,293,78,0.1322233318264065],[121,293,79,0.13505830379947145],[121,294,64,0.1180693826906562],[121,294,65,0.11489862764668923],[121,294,66,0.1126774995946574],[121,294,67,0.11139853603079564],[121,294,68,0.1110307596133217],[121,294,69,0.11151745322995449],[121,294,70,0.11277410109013586],[121,294,71,0.11468968392203571],[121,294,72,0.11712391371417663],[121,294,73,0.11990773581456521],[121,294,74,0.1229039329063831],[121,294,75,0.12601294082805606],[121,294,76,0.12914947515467146],[121,294,77,0.1322403882802522],[121,294,78,0.13522284250639302],[121,294,79,0.1380425408975732],[121,295,64,0.12157061963345067],[121,295,65,0.11839366603527329],[121,295,66,0.11615846187003209],[121,295,67,0.11485879709359298],[121,295,68,0.11446500323004871],[121,295,69,0.11492167655514207],[121,295,70,0.11614556211623461],[121,295,71,0.11802680857222758],[121,295,72,0.12042612908706388],[121,295,73,0.1231752259731469],[121,295,74,0.1261375597878867],[121,295,75,0.1292141611254884],[121,295,76,0.13232012791256623],[121,295,77,0.13538241688010968],[121,295,78,0.13833794404355695],[121,295,79,0.1411317350304731],[121,296,64,0.1252829841710427],[121,296,65,0.12210122802826262],[121,296,66,0.11985108668698058],[121,296,67,0.11852767909040152],[121,296,68,0.11810277991182594],[121,296,69,0.11852249501872747],[121,296,70,0.11970509254816708],[121,296,71,0.12154222132816711],[121,296,72,0.12389600202711837],[121,296,73,0.12659934870758274],[121,296,74,0.1295166456492342],[121,296,75,0.13254963879939397],[121,296,76,0.13561393628778035],[121,296,77,0.13863673188309378],[121,296,78,0.1415548292049572],[121,296,79,0.14431270801317453],[121,297,64,0.12918411749250536],[121,297,65,0.1259992368904128],[121,297,66,0.1237337043157084],[121,297,67,0.12238403322224639],[121,297,68,0.12192356191000889],[121,297,69,0.12230008544438306],[121,297,70,0.123433637946261],[121,297,71,0.1252176785756954],[121,297,72,0.12751611711978889],[121,297,73,0.13016350883372158],[121,297,74,0.13302539769634636],[121,297,75,0.13600436433009977],[121,297,76,0.13901665354421056],[121,297,77,0.14198982777242541],[121,297,78,0.14486071186892943],[121,297,79,0.14757337237849175],[121,298,64,0.13325227654000082],[121,298,65,0.1300662164433259],[121,298,66,0.1277852493118331],[121,298,67,0.12640733710648833],[121,298,68,0.12590748740429358],[121,298,69,0.1262353459166268],[121,298,70,0.1273129341440853],[121,298,71,0.12903580690459004],[121,298,72,0.13127001657962634],[121,298,73,0.13385215977656206],[121,298,74,0.13664916349979148],[121,298,75,0.1395645591398482],[121,298,76,0.14251535138021204],[121,298,77,0.14542960003236127],[121,298,78,0.1482442828039912],[121,298,79,0.1509031851218174],[121,299,64,0.1374668219641926],[121,299,65,0.13428177987302983],[121,299,66,0.1319857500494313],[121,299,67,0.1305781849526127],[121,299,68,0.13003585128121609],[121,299,69,0.13031038716170773],[121,299,70,0.13132599926622185],[121,299,71,0.1329805958256045],[121,299,72,0.13514269374767274],[121,299,73,0.13765129792202327],[121,299,74,0.14037492613151792],[121,299,75,0.14321817124720562],[121,299,76,0.14609891565555222],[121,299,77,0.14894584034325123],[121,299,78,0.15169620358428884],[121,299,79,0.15429363945927033],[121,300,64,0.1418087410559341],[121,300,65,0.13862715402812623],[121,300,66,0.13631685420892167],[121,300,67,0.13487881410649616],[121,300,68,0.1342916326447537],[121,300,69,0.13450906097610427],[121,300,70,0.13545766306436455],[121,300,71,0.13703792803658882],[121,300,72,0.1391211243351928],[121,300,73,0.14154899488559228],[121,300,74,0.14419183735773217],[121,300,75,0.14695540907595894],[121,300,76,0.14975858032255246],[121,300,77,0.15253076997607332],[121,300,78,0.15520963864156534],[121,300,79,0.1577387945992007],[121,301,64,0.14626120565411385],[121,301,65,0.14308573920838125],[121,301,66,0.14076239021965592],[121,301,67,0.13929366796302822],[121,301,68,0.13866005905890635],[121,301,69,0.13881752570251316],[121,301,70,0.13969513357162172],[121,301,71,0.1411961472375705],[121,301,72,0.14319483541362255],[121,301,73,0.14553596769772298],[121,301,74,0.14809178888779442],[121,301,75,0.15076931341837413],[121,301,76,0.1534884995612863],[121,301,77,0.1561796113863168],[121,301,78,0.15878082545352193],[121,301,79,0.16123584352692583],[121,302,64,0.15081016502979777],[121,302,65,0.14764370444390773],[121,302,66,0.14530896465736767],[121,302,67,0.14380999524723567],[121,302,68,0.14312920752240535],[121,302,69,0.14322484875347707],[121,302,70,0.14402860107517318],[121,302,71,0.14544666349494445],[121,302,72,0.14735651215088988],[121,302,73,0.1496061869061414],[121,302,74,0.15207002167928954],[121,302,75,0.15465636755297366],[121,302,76,0.1572863581189963],[121,302,77,0.15989119800737567],[121,302,78,0.16240968286873536],[121,302,79,0.1647857188028592],[121,303,64,0.1554449737466327],[121,303,65,0.15229061826489498],[121,303,66,0.14994659559643425],[121,303,67,0.14841848566386395],[121,303,68,0.14769064217550526],[121,303,69,0.14772364618260386],[121,303,70,0.1484518794072328],[121,303,71,0.14978459615472225],[121,303,72,0.15160264229405188],[121,303,73,0.15375752259500336],[121,303,74,0.15612577329921679],[121,303,75,0.1586171455167759],[121,303,76,0.16115401985366898],[121,303,77,0.16366862224339018],[121,303,78,0.16610045756806713],[121,303,79,0.16839373637396773],[121,304,64,0.16015905449740972],[121,304,65,0.15702011496179086],[121,304,66,0.1546693819168576],[121,304,67,0.15311394191532426],[121,304,68,0.15234008873876448],[121,304,69,0.15231075930328844],[121,304,70,0.15296308455422797],[121,304,71,0.1542094543047569],[121,304,72,0.1559341983981683],[121,304,73,0.15799242832082105],[121,304,74,0.16026296334121648],[121,304,75,0.16265699853191604],[121,304,76,0.16509821448168976],[121,304,77,0.16751992166146054],[121,304,78,0.1698624086624905],[121,304,79,0.1720702773984851],[121,305,64,0.16495059591693007],[121,305,65,0.1618305963360749],[121,305,66,0.15947620856610215],[121,305,67,0.15789598808814087],[121,305,68,0.15707814568395317],[121,305,69,0.15698796835506976],[121,305,70,0.15756535058432822],[121,305,71,0.15872585478606852],[121,305,72,0.16035735780153587],[121,305,73,0.16231866296528608],[121,305,74,0.16449091689896084],[121,305,75,0.16678677958677474],[121,305,76,0.169131262529702],[121,305,77,0.17145880338335523],[121,305,78,0.1737105304274574],[121,305,79,0.1758315080840004],[121,306,64,0.1698232853711465],[121,306,65,0.16672596894159725],[121,306,66,0.16437148777576374],[121,306,67,0.16276981440787647],[121,306,68,0.16191103213706232],[121,306,69,0.16176274321760115],[121,306,70,0.16226758289330184],[121,306,71,0.1633442777532552],[121,306,72,0.16488426034726655],[121,306,73,0.16675005050497027],[121,306,74,0.16882512609569011],[121,306,75,0.1710236061715945],[121,306,76,0.1732718384906524],[121,306,77,0.17550540667669662],[121,306,78,0.177666313173786],[121,306,79,0.17970013753890585],[121,307,64,0.17478585884953796],[121,307,65,0.17171520662555645],[121,307,66,0.16936472628653054],[121,307,67,0.16774574144418042],[121,307,68,0.16685014184719515],[121,307,69,0.16664778066220529],[121,307,70,0.1670839732609365],[121,307,71,0.16808055535099203],[121,307,72,0.16953246809943223],[121,307,73,0.17130591008590407],[121,307,74,0.1732866515870607],[121,307,75,0.17539023564837108],[121,307,76,0.17754432358659838],[121,307,77,0.17968563746486627],[121,307,78,0.1817570644491246],[121,307,79,0.18370473098197143],[121,308,64,0.17982764472541096],[121,308,65,0.17678803245044483],[121,308,66,0.1744461971517312],[121,308,67,0.172814737983571],[121,308,68,0.17188727212863655],[121,308,69,0.17163582294194152],[121,308,70,0.17200830544542076],[121,308,71,0.17292958608951478],[121,308,72,0.17429804079491712],[121,308,73,0.17598348165106859],[121,308,74,0.1778739256699005],[121,308,75,0.1798863056940304],[121,308,76,0.1819495697895033],[121,308,77,0.18400156285852226],[121,308,78,0.18598605644623667],[121,308,79,0.1878497430006781],[121,309,64,0.18491575257560647],[121,309,65,0.1819120264259332],[121,309,66,0.17958397102895535],[121,309,67,0.17794538053021358],[121,309,68,0.17699151605287974],[121,309,69,0.17669648679722522],[121,309,70,0.17701072454839384],[121,309,71,0.17786204729627164],[121,309,72,0.1791521930214845],[121,309,73,0.18075452811221773],[121,309,74,0.18255929838058632],[121,309,75,0.18448482259024807],[121,309,76,0.1864613285949962],[121,309,77,0.18842777931162952],[121,309,78,0.1903288335126236],[121,309,79,0.1921117658215509],[121,310,64,0.19001636000727926],[121,310,65,0.187053742310782],[121,310,66,0.18474500023048845],[121,310,67,0.18310503785297044],[121,310,68,0.18213067266279687],[121,310,69,0.1817980119783037],[121,310,70,0.18205991909530472],[121,310,71,0.18284708332813907],[121,310,72,0.1840645327434098],[121,310,73,0.18558913405054994],[121,310,74,0.18731337041363394],[121,310,75,0.18915697205261114],[121,310,76,0.19105145918703406],[121,310,77,0.1929369188696453],[121,310,78,0.19475890366766277],[121,310,79,0.1964652843715965],[121,311,64,0.19509592842872098],[121,311,65,0.19217992345382362],[121,311,66,0.18989633891835608],[121,311,67,0.1882610997013392],[121,311,68,0.18727248812600394],[121,311,69,0.18690851835452083],[121,311,70,0.18712439705813627],[121,311,71,0.1878536027257981],[121,311,72,0.18900438087170202],[121,311,73,0.1904570478335891],[121,311,74,0.19210635656668879],[121,311,75,0.19387350156032923],[121,311,76,0.19569132621217683],[121,311,77,0.19750105816257252],[121,311,78,0.1992491539966264],[121,311,79,0.2008840928397324],[121,312,64,0.2001215765047234],[121,312,65,0.19725787638825285],[121,312,66,0.1950055155300962],[121,312,67,0.1933813468185676],[121,312,68,0.19238502218689177],[121,312,69,0.19199636778664914],[121,312,70,0.19217284229494086],[121,312,71,0.19285062857009194],[121,312,72,0.19394111512822254],[121,312,73,0.19532801884214993],[121,312,74,0.19690841631964714],[121,312,75,0.19860504431716697],[121,312,76,0.20035211717443788],[121,312,77,0.20209202929267867],[121,312,78,0.20377215508261684],[121,312,79,0.205341592683033],[121,313,64,0.20506216132007693],[121,313,65,0.2022564427762993],[121,313,66,0.20004139500405232],[121,313,67,0.19843470328882334],[121,313,68,0.19743729084640516],[121,313,69,0.1970306977478682],[121,313,70,0.19717454014746505],[121,313,71,0.19780761754814352],[121,313,72,0.1988443845585274],[121,313,73,0.20017190990882947],[121,313,74,0.2016896670477623],[121,313,75,0.20332203635836188],[121,313,76,0.20500466679563123],[121,313,77,0.20668115501993176],[121,313,78,0.20829981077277063],[121,313,79,0.2098103608853975],[121,314,64,0.2098881189376275],[121,314,65,0.20714585886886283],[121,314,66,0.2049740558408598],[121,314,67,0.2033911299073421],[121,314,68,0.20239917478546957],[121,314,69,0.20198134361598774],[121,314,70,0.20209931252339713],[121,314,71,0.20269440688900905],[121,314,72,0.2036840675644245],[121,314,73,0.2049586658955037],[121,314,74,0.2064201626859027],[121,314,75,0.20799470485413885],[121,314,76,0.20961945450418343],[121,314,77,0.21123925496111176],[121,314,78,0.21280337257854964],[121,314,79,0.2142621720038473],[121,315,64,0.21457088277137593],[121,315,65,0.21189728448144918],[121,315,66,0.20977442771650168],[121,315,67,0.20822136823107001],[121,315,68,0.2072412674539855],[121,315,69,0.20681878823855382],[121,315,70,0.20691756625154117],[121,315,71,0.20748135874065776],[121,315,72,0.20843050949614766],[121,315,73,0.20965864168785386],[121,315,74,0.2110703092127735],[121,315,75,0.21259356800166845],[121,315,76,0.21416718547573538],[121,315,77,0.21573730433830962],[121,315,78,0.21725417250753903],[121,315,79,0.21866880127494237],[121,316,64,0.21908320056616834],[121,316,65,0.21648313046905043],[121,316,66,0.21441462817287782],[121,316,67,0.21289728522662277],[121,316,68,0.21193522646902618],[121,316,69,0.21151451895693496],[121,316,70,0.21160065472348025],[121,316,71,0.2121397255716751],[121,316,72,0.21305489114347512],[121,316,73,0.21424297331674663],[121,316,74,0.21561123806158244],[121,316,75,0.2170898104278913],[121,316,76,0.21861916775625392],[121,316,77,0.2201468125596274],[121,316,78,0.22162400283372108],[121,316,79,0.2216676876233684],[121,317,64,0.22339948524966652],[121,317,65,0.2208774164644678],[121,317,66,0.2188683260125552],[121,317,67,0.2173922411182465],[121,317,68,0.21645414476862546],[121,317,69,0.21604140100514002],[121,317,70,0.2161212525955042],[121,317,71,0.21664202538700608],[121,317,72,0.21752960386369335],[121,317,73,0.21868395260902887],[121,317,74,0.2200151800318059],[121,317,75,0.22145565615788904],[121,317,76,0.2229476841207184],[121,317,77,0.22444019382307845],[121,317,78,0.22397115052106936],[121,317,79,0.2172812110629795],[121,318,64,0.22749616942140155],[121,318,65,0.22505613239316308],[121,318,66,0.22311110863360403],[121,318,67,0.2216814613593667],[121,318,68,0.22077292608771967],[121,318,69,0.22037405543881636],[121,318,70,0.22045373523186573],[121,318,71,0.22096242189216989],[121,318,72,0.22182862985326668],[121,318,73,0.22295540715768725],[121,318,74,0.22425584467767254],[121,318,75,0.22566474720494525],[121,318,76,0.22712636969158173],[121,318,77,0.22618845078318942],[121,318,78,0.21920654993420796],[121,318,79,0.21257482690313256],[121,319,64,0.23135206347891013],[121,319,65,0.22899760376463418],[121,319,66,0.22712085330451906],[121,319,67,0.22574241272772033],[121,319,68,0.22486866475623557],[121,319,69,0.22448924159442424],[121,319,70,0.22457456288935326],[121,319,71,0.22507710960593563],[121,319,72,0.22592792756320357],[121,319,73,0.22703308561136004],[121,319,74,0.22830880517335211],[121,319,75,0.22969252778228158],[121,319,76,0.22815685002691705],[121,319,77,0.2209816254297499],[121,319,78,0.2140870303007104],[121,319,79,0.20754874630855927],[122,-64,64,0.3454963702900585],[122,-64,65,0.3515110008654922],[122,-64,66,0.35762967373691784],[122,-64,67,0.3638359345342806],[122,-64,68,0.3701328863508007],[122,-64,69,0.37653691718523435],[122,-64,70,0.38305957887903425],[122,-64,71,0.38970685121467674],[122,-64,72,0.39647890786278994],[122,-64,73,0.40336998554366166],[122,-64,74,0.41036835892283974],[122,-64,75,0.41745642361791857],[122,-64,76,0.42461088953823517],[122,-64,77,0.43180308661262645],[122,-64,78,0.4389993847837966],[122,-64,79,0.44616172996364184],[122,-63,64,0.347951033860168],[122,-63,65,0.35406578707245573],[122,-63,66,0.36028968274878176],[122,-63,67,0.3666066263511966],[122,-63,68,0.3730189871552287],[122,-63,69,0.37954164943859126],[122,-63,70,0.38618462637983847],[122,-63,71,0.3929523788851739],[122,-63,72,0.39984361778094146],[122,-63,73,0.40685120602700964],[122,-63,74,0.41396216331851715],[122,-63,75,0.4211577753030068],[122,-63,76,0.42841380948766655],[122,-63,77,0.43570083974876384],[122,-63,78,0.44298468118352774],[122,-63,79,0.45022693686608756],[122,-62,64,0.35058327326116767],[122,-62,65,0.35678852455322974],[122,-62,66,0.3631064429388685],[122,-62,67,0.36952164375793783],[122,-62,68,0.37603572085425496],[122,-62,69,0.3826617721106279],[122,-62,70,0.38940811055895236],[122,-62,71,0.3962776307990123],[122,-62,72,0.4032676323178824],[122,-62,73,0.41036974006670657],[122,-62,74,0.4175699245368076],[122,-62,75,0.4248486234395093],[122,-62,76,0.43218096694531416],[122,-62,77,0.4395371082796776],[122,-62,78,0.4468826613056573],[122,-62,79,0.4541792465505361],[122,-61,64,0.3533775510295663],[122,-61,65,0.3596634332867185],[122,-61,66,0.36606388222642117],[122,-61,67,0.3725645373164883],[122,-61,68,0.37916619178637156],[122,-61,69,0.38587992332571147],[122,-61,70,0.3927122249742287],[122,-61,71,0.39966441166283057],[122,-61,72,0.40673245008333986],[122,-61,73,0.4139068834759803],[122,-61,74,0.42117285347646033],[122,-61,75,0.4285102210303989],[122,-61,76,0.43589378823806474],[122,-61,77,0.44329362283843876],[122,-61,78,0.4506754868795417],[122,-61,79,0.45800137095408455],[122,-60,64,0.3563147945127344],[122,-60,65,0.36267135552965546],[122,-60,66,0.3691427612046786],[122,-60,67,0.37571593944789217],[122,-60,68,0.3823908699204821],[122,-60,69,0.38917642775350175],[122,-60,70,0.3960772075912579],[122,-60,71,0.4030929627060156],[122,-60,72,0.41021842784172485],[122,-60,73,0.41744323503155906],[122,-60,74,0.42475192445419907],[122,-60,75,0.4321240522636468],[122,-60,76,0.43953439718685705],[122,-60,77,0.44695326753409337],[122,-60,78,0.4543469101096939],[122,-60,79,0.4616780223481459],[122,-59,64,0.3593731793520645],[122,-59,65,0.3657905559412019],[122,-59,66,0.3723214926732483],[122,-59,67,0.37895440515251894],[122,-59,68,0.38568845238707383],[122,-59,69,0.39253017590296835],[122,-59,70,0.3994822324710907],[122,-59,71,0.40654285844666904],[122,-59,72,0.4137056734725804],[122,-59,73,0.42095957555404606],[122,-59,74,0.42828872951281005],[122,-59,75,0.43567265070308775],[122,-59,76,0.4430863857355791],[122,-59,77,0.45050079181110614],[122,-59,78,0.45788291611299636],[122,-59,79,0.46519647654942625],[122,-58,64,0.3625290689283026],[122,-58,65,0.3689976772767258],[122,-58,66,0.37557711580827124],[122,-58,67,0.3822574058683613],[122,-58,68,0.38903687585549773],[122,-58,69,0.39591965086082465],[122,-58,70,0.40290644415422583],[122,-58,71,0.40999403990147587],[122,-58,72,0.417175067533571],[122,-58,73,0.42443786614239365],[122,-58,74,0.4317664408700301],[122,-58,75,0.43914051313787184],[122,-58,76,0.4465356664303193],[122,-58,77,0.4539235892078641],[122,-58,78,0.46127241637660993],[122,-58,79,0.468547170588058],[122,-57,64,0.36575810925358404],[122,-57,65,0.37226885109721514],[122,-57,66,0.3788864243986698],[122,-57,67,0.38560247589520497],[122,-57,68,0.39241447920104444],[122,-57,69,0.3993241019501917],[122,-57,70,0.40633013426517683],[122,-57,71,0.4134279838288269],[122,-57,72,0.4206094130969831],[122,-57,73,0.42786236533155997],[122,-57,74,0.43517088139160837],[122,-57,75,0.4425151091037251],[122,-57,76,0.4498714069066675],[122,-57,77,0.4572125433297529],[122,-57,78,0.46450799372159657],[122,-57,79,0.47172433549709636],[122,-56,64,0.36903314836497686],[122,-56,65,0.3755774405261301],[122,-56,66,0.38222352289243755],[122,-56,67,0.3889645779338782],[122,-56,68,0.39579717791002006],[122,-56,69,0.40272052918085854],[122,-56,70,0.40973154015294055],[122,-56,71,0.4168243235331947],[122,-56,72,0.4239898910535774],[122,-56,73,0.4312159358244672],[122,-56,74,0.4384867042310402],[122,-56,75,0.44578295917561445],[122,-56,76,0.45308203634743793],[122,-56,77,0.4603579950709891],[122,-56,78,0.46758186514556316],[122,-56,79,0.4747219909448535],[122,-55,64,0.3723053439287021],[122,-55,65,0.3788739476235873],[122,-55,66,0.38553845243915513],[122,-55,67,0.39229341935294365],[122,-55,68,0.39913448167826476],[122,-55,69,0.4060584457634475],[122,-55,70,0.41306043245044805],[122,-55,71,0.42013338024910163],[122,-55,72,0.4272676927981596],[122,-55,73,0.43445097285363954],[122,-55,74,0.44166784470237863],[122,-55,75,0.4488998667925028],[122,-55,76,0.45612553625592855],[122,-55,77,0.4633203868723758],[122,-55,78,0.47045718189065266],[122,-55,79,0.4775062029832811],[122,-54,64,0.37552155945375165],[122,-54,65,0.38210424432567186],[122,-54,66,0.38877627822817434],[122,-54,67,0.3955334035747718],[122,-54,68,0.40237030127648377],[122,-54,69,0.4092815108595048],[122,-54,70,0.41626052069069674],[122,-54,71,0.4232992641724393],[122,-54,72,0.4303877150146835],[122,-54,73,0.4375135681756599],[122,-54,74,0.44466200836261227],[122,-54,75,0.4518155678825135],[122,-54,76,0.45895407552072415],[122,-54,77,0.4660546980042511],[122,-54,78,0.4730920754766903],[122,-54,79,0.48003855227609143],[122,-53,64,0.37863631277899196],[122,-53,65,0.38522215502166834],[122,-53,66,0.39189033544336555],[122,-53,67,0.3986375487508288],[122,-53,68,0.40545753170604976],[122,-53,69,0.4123427514090224],[122,-53,70,0.4192852686249501],[122,-53,71,0.4262762179645808],[122,-53,72,0.4333053461946477],[122,-53,73,0.4403606357268252],[122,-53,74,0.44742801518150205],[122,-53,75,0.45449115882551455],[122,-53,76,0.4615313765749568],[122,-53,77,0.4685275961365803],[122,-53,78,0.47545643873512305],[122,-53,79,0.482292389741146],[122,-52,64,0.38161200923247773],[122,-52,65,0.388189673526228],[122,-52,66,0.39484242701594],[122,-52,67,0.4015676638834782],[122,-52,68,0.4083582044765007],[122,-52,69,0.4152046883169162],[122,-52,70,0.4220979921993886],[122,-52,71,0.42902868466974],[122,-52,72,0.4359865030283764],[122,-52,73,0.4429599154905121],[122,-52,74,0.4499357704165879],[122,-52,75,0.45689903443259616],[122,-52,76,0.4638326211551521],[122,-52,77,0.4707173121213403],[122,-52,78,0.47753177139966985],[122,-52,79,0.4842526552277812],[122,-51,64,0.3844192296305037],[122,-51,65,0.3909772313000128],[122,-51,66,0.39760306871430984],[122,-51,67,0.40429456795821495],[122,-51,68,0.4110436781979929],[122,-51,69,0.4178394960490761],[122,-51,70,0.4246719859931828],[122,-51,71,0.4315313992703559],[122,-51,72,0.4384076858984515],[122,-51,73,0.4452899923718214],[122,-51,74,0.4521662469816727],[122,-51,75,0.4590228346094303],[122,-51,76,0.46584436274166563],[122,-51,77,0.47261352034208187],[122,-51,78,0.4793110310936733],[122,-51,79,0.48591570239443543],[122,-50,64,0.38563480653614535],[122,-50,65,0.3931562400094889],[122,-50,66,0.4001518432744236],[122,-50,67,0.4067984170599072],[122,-50,68,0.41349493570161977],[122,-50,69,0.42022926697303853],[122,-50,70,0.42699075236253853],[122,-50,71,0.4337695807224312],[122,-50,72,0.4405561325040392],[122,-50,73,0.447340410791472],[122,-50,74,0.45411156111680606],[122,-50,75,0.46085748194958676],[122,-50,76,0.46756452765174894],[122,-50,77,0.47421730557646663],[122,-50,78,0.48079856886714356],[122,-50,79,0.48728920638267476],[122,-49,64,0.3864156199790607],[122,-49,65,0.3939489045246481],[122,-49,66,0.40150316194369073],[122,-49,67,0.4090619375703085],[122,-49,68,0.41570003444150483],[122,-49,69,0.42236406987870717],[122,-49,70,0.42904667195367263],[122,-49,71,0.4357382056782798],[122,-49,72,0.44242967314591086],[122,-49,73,0.44911207741990783],[122,-49,74,0.45577587692276245],[122,-49,75,0.462410532267167],[122,-49,76,0.46900414736794793],[122,-49,77,0.4755432065605551],[122,-49,78,0.4820124093283209],[122,-49,79,0.48839460410900487],[122,-48,64,0.3872850385038772],[122,-48,65,0.39482473059855133],[122,-48,66,0.4023943429647891],[122,-48,67,0.4099780446524867],[122,-48,68,0.41756598215036034],[122,-48,69,0.4242341970910447],[122,-48,70,0.4308347739350395],[122,-48,71,0.43743725977080633],[122,-48,72,0.44403338784633795],[122,-48,73,0.4506152172792751],[122,-48,74,0.4571745258273305],[122,-48,75,0.46370229706540095],[122,-48,76,0.4701883038522562],[122,-48,77,0.47662078985477174],[122,-48,78,0.4829862507722406],[122,-48,79,0.48926931676926844],[122,-47,64,0.3882559264639015],[122,-47,65,0.39579369348141885],[122,-47,66,0.40336904194000334],[122,-47,67,0.41096706291504015],[122,-47,68,0.4185788077022307],[122,-47,69,0.4258348596112406],[122,-47,70,0.43235478904873503],[122,-47,71,0.4388711355752698],[122,-47,72,0.4453763891852695],[122,-47,73,0.45186363414856234],[122,-47,74,0.45832588753840703],[122,-47,75,0.4647555339344996],[122,-47,76,0.4711438582149294],[122,-47,77,0.4774806782341914],[122,-47,78,0.4837540790567091],[122,-47,79,0.48995025027880057],[122,-46,64,0.38933197367021144],[122,-46,65,0.3968570938845697],[122,-46,66,0.40442589616442703],[122,-46,67,0.4120246891344914],[122,-46,68,0.41964545362695727],[122,-46,69,0.42716749949912],[122,-46,70,0.43361176843289023],[122,-46,71,0.44004856517829694],[122,-46,72,0.4464710904960155],[122,-46,73,0.4528733504775337],[122,-46,74,0.4592494510203368],[122,-46,75,0.465592989716857],[122,-46,76,0.47189654708304785],[122,-46,77,0.47815127893373555],[122,-46,78,0.4843466115822679],[122,-46,79,0.4904700414033295],[122,-45,64,0.3905086958028623],[122,-45,65,0.3980085284402942],[122,-45,66,0.4055563982692168],[122,-45,67,0.413140116870995],[122,-45,68,0.42075264149137764],[122,-45,69,0.428239036078809],[122,-45,70,0.4346153951864514],[122,-45,71,0.44098200312658414],[122,-45,72,0.4473326653620259],[122,-45,73,0.4536621475714796],[122,-45,74,0.459965438367352],[122,-45,75,0.4662371098614423],[122,-45,76,0.4724707779927678],[122,-45,77,0.4786586644117594],[122,-45,78,0.4847912615841222],[122,-45,79,0.49085710263770066],[122,-44,64,0.39177441254562684],[122,-44,65,0.39923483896573325],[122,-44,66,0.4067458094809563],[122,-44,67,0.41429690672678343],[122,-44,68,0.42188213003904484],[122,-44,69,0.4290611271192789],[122,-44,70,0.43537930953628284],[122,-44,71,0.44168702172428953],[122,-44,72,0.44797851839482766],[122,-44,73,0.45424911623157427],[122,-44,74,0.46049443859344996],[122,-44,75,0.4667097574747136],[122,-44,76,0.47288943459882354],[122,-44,77,0.47902646340235494],[122,-44,78,0.4851121135340913],[122,-44,79,0.4911356793543419],[122,-43,64,0.3931112063477574],[122,-43,65,0.400517043331285],[122,-43,66,0.4079740554342134],[122,-43,67,0.41547384022842343],[122,-43,68,0.4230115203162385],[122,-43,69,0.4296494427634022],[122,-43,70,0.43592044555872567],[122,-43,71,0.4421817168193523],[122,-43,72,0.44842776562779885],[122,-43,73,0.45465421638274184],[122,-43,74,0.46085705006694405],[122,-43,75,0.46703194098810413],[122,-43,76,0.47317369080516475],[122,-43,77,0.47927576153293805],[122,-43,78,0.48532990908787477],[122,-43,79,0.4913259187992079],[122,-42,64,0.3944958647189193],[122,-42,65,0.4018312507386706],[122,-42,66,0.4092166072231628],[122,-42,67,0.4166457598825814],[122,-42,68,0.42378726578197146],[122,-42,69,0.4300229499756141],[122,-42,70,0.4362583774071454],[122,-42,71,0.4424861222228934],[122,-42,72,0.44870072287064067],[122,-42,73,0.45489784423918594],[122,-42,74,0.46107353034605114],[122,-42,75,0.4672235494018565],[122,-42,76,0.47334283297354196],[122,-42,77,0.47942501085122874],[122,-42,78,0.48546204309632657],[122,-42,79,0.49144395061314494],[122,-41,64,0.39590080895710156],[122,-41,65,0.40314956420968645],[122,-41,66,0.4104453503751179],[122,-41,67,0.417784397952444],[122,-41,68,0.4239948166538316],[122,-41,69,0.43020320528252415],[122,-41,70,0.43641467300364617],[122,-41,71,0.4426216309164412],[122,-41,72,0.44881840038560944],[122,-41,73,0.45500040558132065],[122,-41,74,0.46116345220460575],[122,-41,75,0.467303094108575],[122,-41,76,0.47341408942290414],[122,-41,77,0.4794899476757226],[122,-41,78,0.4855225692845535],[122,-41,79,0.491501978657912],[122,-40,64,0.3972950121931382],[122,-40,65,0.4044409730729481],[122,-40,66,0.4116294444164399],[122,-40,67,0.4178496956332663],[122,-40,68,0.4240225926372414],[122,-40,69,0.43021365359203395],[122,-40,70,0.43641225316611243],[122,-40,71,0.4426104212179273],[122,-40,72,0.44880200226764],[122,-40,73,0.4549818937454824],[122,-40,74,0.46114536467295647],[122,-40,75,0.46728745634583535],[122,-40,76,0.4734024664900707],[122,-40,77,0.4794835182543842],[122,-40,78,0.485522215287632],[122,-40,79,0.49150838402643343],[122,-39,64,0.3986449096098562],[122,-39,65,0.40555236682569934],[122,-39,66,0.41161634416413123],[122,-39,67,0.4177370147196361],[122,-39,68,0.42389600199060384],[122,-39,69,0.43007893089591315],[122,-39,70,0.43627475416231487],[122,-39,71,0.4424748861005608],[122,-39,72,0.4486724289377879],[122,-39,73,0.4548614709609081],[122,-39,74,0.4610364579596848],[122,-39,75,0.4671916393769447],[122,-39,76,0.4733205904826134],[122,-39,77,0.47941581178898257],[122,-39,78,0.48546840681789105],[122,-39,79,0.491467839217569],[122,-38,64,0.39938272911274897],[122,-38,65,0.4053401746018242],[122,-38,66,0.41138212962245807],[122,-38,67,0.41748908608268587],[122,-38,68,0.42364134025633904],[122,-38,69,0.4298241686879453],[122,-38,70,0.43602589171050277],[122,-38,71,0.44223706388821876],[122,-38,72,0.4484497811922876],[122,-38,73,0.45465705170625115],[122,-38,74,0.460852231164162],[122,-38,75,0.467028524551509],[122,-38,76,0.47317855491722516],[122,-38,77,0.47929400045602977],[122,-38,78,0.48536530082475854],[122,-38,79,0.491381433555352],[122,-37,64,0.38585774657257943],[122,-37,65,0.3827419876881246],[122,-37,66,0.3914531273406777],[122,-37,67,0.40531397164991906],[122,-37,68,0.41801150951241595],[122,-37,69,0.4294742979647827],[122,-37,70,0.43568882448080404],[122,-37,71,0.4419180685869706],[122,-37,72,0.44815286428799195],[122,-37,73,0.45438488680040234],[122,-37,74,0.46060616173803515],[122,-37,75,0.4668086304527225],[122,-37,76,0.47162456700830313],[122,-37,77,0.4581965065197318],[122,-37,78,0.4519867005433902],[122,-37,79,0.45052918499075467],[122,-36,64,0.3661522760374046],[122,-36,65,0.3620340430168948],[122,-36,66,0.3701093550275618],[122,-36,67,0.38236243819188687],[122,-36,68,0.39510014197780274],[122,-36,69,0.40503395849429064],[122,-36,70,0.41819993694864843],[122,-36,71,0.4292496289455359],[122,-36,72,0.4416587373317201],[122,-36,73,0.4531458381217693],[122,-36,74,0.44914799938238936],[122,-36,75,0.44153301489827523],[122,-36,76,0.4448838987989977],[122,-36,77,0.4376358489148173],[122,-36,78,0.4298635482692067],[122,-36,79,0.4232833616681396],[122,-35,64,0.35444057132312],[122,-35,65,0.354676679031497],[122,-35,66,0.35988071425690416],[122,-35,67,0.3699093177376517],[122,-35,68,0.38297870691863484],[122,-35,69,0.38669002701687977],[122,-35,70,0.3977715671187235],[122,-35,71,0.4161789812863709],[122,-35,72,0.4277343300319091],[122,-35,73,0.43201741058835214],[122,-35,74,0.43116294510017716],[122,-35,75,0.4279048529517553],[122,-35,76,0.4249809152950976],[122,-35,77,0.4212926228854611],[122,-35,78,0.416840757872865],[122,-35,79,0.4104497518911795],[122,-34,64,0.35358961659800303],[122,-34,65,0.35456288200707664],[122,-34,66,0.3568140497813832],[122,-34,67,0.36934864688349883],[122,-34,68,0.38366845028118596],[122,-34,69,0.3867798785850368],[122,-34,70,0.39455506731030754],[122,-34,71,0.4133650109866752],[122,-34,72,0.4228041412525858],[122,-34,73,0.42255103736100236],[122,-34,74,0.42591191015870533],[122,-34,75,0.4236878961967182],[122,-34,76,0.41308104775230026],[122,-34,77,0.40749503983410046],[122,-34,78,0.4068301495411863],[122,-34,79,0.4025016989484844],[122,-33,64,0.35741571514543036],[122,-33,65,0.35844645637774303],[122,-33,66,0.361505722635189],[122,-33,67,0.3769601588551333],[122,-33,68,0.3921612779585895],[122,-33,69,0.3977753861937365],[122,-33,70,0.4040582916698526],[122,-33,71,0.41864309173178477],[122,-33,72,0.42772121763679766],[122,-33,73,0.42909608868939275],[122,-33,74,0.4318561938518784],[122,-33,75,0.42541559258801726],[122,-33,76,0.41340658610532827],[122,-33,77,0.4065663858219884],[122,-33,78,0.4036248567100372],[122,-33,79,0.39561912114328],[122,-32,64,0.3631318764939325],[122,-32,65,0.3727440497077057],[122,-32,66,0.3771082316934695],[122,-32,67,0.3840480422937476],[122,-32,68,0.3992088981504523],[122,-32,69,0.41058831120240596],[122,-32,70,0.41819007335359365],[122,-32,71,0.4312971392410982],[122,-32,72,0.43998378658522347],[122,-32,73,0.4386324436586661],[122,-32,74,0.44067220564280934],[122,-32,75,0.43482508949954035],[122,-32,76,0.42261745182525506],[122,-32,77,0.4180191449138858],[122,-32,78,0.40884140174714745],[122,-32,79,0.3924755874377651],[122,-31,64,0.37368351716227627],[122,-31,65,0.3879937626968958],[122,-31,66,0.39358244427201655],[122,-31,67,0.39485724152053575],[122,-31,68,0.40936003063347726],[122,-31,69,0.422961282296596],[122,-31,70,0.43223499801698406],[122,-31,71,0.4392203398346406],[122,-31,72,0.4455754720655361],[122,-31,73,0.45002601087016625],[122,-31,74,0.4494385749058376],[122,-31,75,0.44374522290650165],[122,-31,76,0.4295621187571229],[122,-31,77,0.4278986534485513],[122,-31,78,0.413589779398641],[122,-31,79,0.3969481918323261],[122,-30,64,0.38811940941577844],[122,-30,65,0.399216115096488],[122,-30,66,0.406117169131189],[122,-30,67,0.4136848867123472],[122,-30,68,0.4198453104413014],[122,-30,69,0.42608881487768985],[122,-30,70,0.43239025024674305],[122,-30,71,0.4387253588895423],[122,-30,72,0.44507094861550756],[122,-30,73,0.4514050313388648],[122,-30,74,0.4575421773497705],[122,-30,75,0.451870669069136],[122,-30,76,0.43590021899119064],[122,-30,77,0.43290395937136517],[122,-30,78,0.41756906726399295],[122,-30,79,0.4078371319701701],[122,-29,64,0.3956649231677563],[122,-29,65,0.40135599493366103],[122,-29,66,0.40723070923473875],[122,-29,67,0.4132548813759046],[122,-29,68,0.4193934989119915],[122,-29,69,0.4256180376744582],[122,-29,70,0.4319008031085268],[122,-29,71,0.43821506893337325],[122,-29,72,0.443979327526623],[122,-29,73,0.44930780074938753],[122,-29,74,0.45467579590543283],[122,-29,75,0.4600790779649579],[122,-29,76,0.45234586624855877],[122,-29,77,0.4451070302016822],[122,-29,78,0.42635560839155495],[122,-29,79,0.4149929661791275],[122,-28,64,0.39539575430196483],[122,-28,65,0.4010365130378476],[122,-28,66,0.40686721998055314],[122,-28,67,0.4128532982172145],[122,-28,68,0.4189579103846009],[122,-28,69,0.42514987784744257],[122,-28,70,0.43102510306233555],[122,-28,71,0.43608053301714794],[122,-28,72,0.44118693463999553],[122,-28,73,0.4463481057892491],[122,-28,74,0.45156457763887803],[122,-28,75,0.45683357755361204],[122,-28,76,0.4621490512345121],[122,-28,77,0.46256888068300495],[122,-28,78,0.44070316986561353],[122,-28,79,0.4183298396832367],[122,-27,64,0.39517584397479344],[122,-27,65,0.40075658765349487],[122,-27,66,0.4065319467172586],[122,-27,67,0.4124671775214934],[122,-27,68,0.41852366062608093],[122,-27,69,0.42351721591739944],[122,-27,70,0.4283375481107206],[122,-27,71,0.4332123197315345],[122,-27,72,0.43815094120573367],[122,-27,73,0.4431592850931565],[122,-27,74,0.44823954500391455],[122,-27,75,0.45339016558991624],[122,-27,76,0.4586058439252133],[122,-27,77,0.4638776024652511],[122,-27,78,0.45230417772944315],[122,-27,79,0.42773602431500923],[122,-26,64,0.3949881279454282],[122,-26,65,0.4004976043842693],[122,-26,66,0.40620470075405996],[122,-26,67,0.4116186665082519],[122,-26,68,0.4161781859330858],[122,-26,69,0.42076973718716576],[122,-26,70,0.4254120157038117],[122,-26,71,0.4301203614692858],[122,-26,72,0.4349064239447407],[122,-26,73,0.4397779079261551],[122,-26,74,0.44473840094229294],[122,-26,75,0.44978728265098844],[122,-26,76,0.4549197165518122],[122,-26,77,0.4601267241899724],[122,-26,78,0.4569756443665323],[122,-26,79,0.43744169406869765],[122,-25,64,0.39480534450577254],[122,-25,65,0.40023082933456816],[122,-25,66,0.4046491159116248],[122,-25,67,0.4090131736321844],[122,-25,68,0.4133919107221768],[122,-25,69,0.4178101108704454],[122,-25,70,0.42228920751963284],[122,-25,71,0.4268469094990936],[122,-25,72,0.4314968295035457],[122,-25,73,0.43624820300275047],[122,-25,74,0.4411056981954946],[122,-25,75,0.4460693174634146],[122,-25,76,0.45113439062008537],[122,-25,77,0.45629166008999944],[122,-25,78,0.45745568725989566],[122,-25,79,0.43844063899230573],[122,-24,64,0.3935797407550196],[122,-24,65,0.3978168576683456],[122,-24,66,0.40201844374382095],[122,-24,67,0.40620912706594414],[122,-24,68,0.41042028034166694],[122,-24,69,0.4146795327855237],[122,-24,70,0.4190108091745518],[122,-24,71,0.4234338993333195],[122,-24,72,0.4279640658018953],[122,-24,73,0.43261175003541075],[122,-24,74,0.43738237773416183],[122,-24,75,0.4422762637293885],[122,-24,76,0.4472886166739658],[122,-24,77,0.4524096436110958],[122,-24,78,0.4576247543198853],[122,-24,79,0.4390453225058238],[122,-23,64,0.3911148673499207],[122,-23,65,0.39517892837500396],[122,-23,66,0.3992126028895826],[122,-23,67,0.40324077042569095],[122,-23,68,0.4072965422341638],[122,-23,69,0.411410167306362],[122,-23,70,0.41560780083555265],[122,-23,71,0.41991103004841274],[122,-23,72,0.42433647276626424],[122,-23,73,0.4288954814896846],[122,-23,74,0.43359395356997954],[122,-23,75,0.4384322478427272],[122,-23,76,0.4434052079086485],[122,-23,77,0.4485022920573996],[122,-23,78,0.453707809642889],[122,-23,79,0.44460200530804905],[122,-22,64,0.3884923126005053],[122,-22,65,0.39238976856764685],[122,-22,66,0.39626357441991733],[122,-22,67,0.4001387433005376],[122,-22,68,0.4040498954315971],[122,-22,69,0.4080296463691818],[122,-22,70,0.41210611612034975],[122,-22,71,0.4163024193782389],[122,-22,72,0.42063626255602266],[122,-22,73,0.4251196525377281],[122,-22,74,0.4297587176590491],[122,-22,75,0.43455364122977336],[122,-22,76,0.4394987077066963],[122,-22,77,0.44458246142410746],[122,-22,78,0.4497879775905733],[122,-22,79,0.4477473955421836],[122,-21,64,0.38574495293489386],[122,-21,65,0.38948075697607903],[122,-21,66,0.39320115592226335],[122,-21,67,0.39693114474800206],[122,-21,68,0.4007065852460018],[122,-21,69,0.40456218697112506],[122,-21,70,0.4085277723772675],[122,-21,71,0.41262773507284195],[122,-21,72,0.41688063869325137],[122,-21,73,0.42129893320994666],[122,-21,74,0.4258887891299175],[122,-21,75,0.43065004982541266],[122,-21,76,0.4355763020189658],[122,-21,77,0.44065506423569195],[122,-21,78,0.4458680928259704],[122,-21,79,0.44560021017006446],[122,-20,64,0.3829049386563175],[122,-20,65,0.38648226485312115],[122,-20,66,0.3900537730346318],[122,-20,67,0.39364426387076873],[122,-20,68,0.3972905479891427],[122,-20,69,0.4010291474811212],[122,-20,70,0.40489133856357706],[122,-20,71,0.40890257689205306],[122,-20,72,0.4130820972344323],[122,-20,73,0.4174426361773384],[122,-20,74,0.42199027825661684],[122,-20,75,0.42672442567682684],[122,-20,76,0.43163789155817506],[122,-20,77,0.4367171164251068],[122,-20,78,0.44194250743165747],[122,-20,79,0.44241850512578706],[122,-19,64,0.3800046416461482],[122,-19,65,0.38342453170642393],[122,-19,66,0.3868492778056329],[122,-19,67,0.3903032947568224],[122,-19,68,0.39382403736465116],[122,-19,69,0.39744956256675107],[122,-19,70,0.4012123782154152],[122,-19,71,0.40513882962903486],[122,-19,72,0.4092486943329972],[122,-19,73,0.41355490569356895],[122,-19,74,0.41806340577601886],[122,-19,75,0.42277312751896223],[122,-19,76,0.4276761060781223],[122,-19,77,0.43275771895688014],[122,-19,78,0.43799705431111347],[122,-19,79,0.44105015134337866],[122,-18,64,0.3770738869113218],[122,-18,65,0.3803346597193604],[122,-18,66,0.38361169847535465],[122,-18,67,0.38692883351117646],[122,-18,68,0.39032386154209486],[122,-18,69,0.39383611526887813],[122,-18,70,0.3974991539219268],[122,-18,71,0.40134009995547176],[122,-18,72,0.4053792180218772],[122,-18,73,0.4096296294006647],[122,-18,74,0.41409716216142073],[122,-18,75,0.4187803370863387],[122,-18,76,0.4236704891257301],[122,-18,77,0.42875202391106154],[122,-18,78,0.43400280860806933],[122,-18,79,0.4378277113423761],[122,-17,64,0.37412352999500076],[122,-17,65,0.37722102470379465],[122,-17,66,0.38034667091999663],[122,-17,67,0.38352351963739045],[122,-17,68,0.38678941452710913],[122,-17,69,0.3901847195294269],[122,-17,70,0.393743895308189],[122,-17,71,0.3974947713840706],[122,-17,72,0.40145809494548795],[122,-17,73,0.4056472226964643],[122,-17,74,0.4100679559800358],[122,-17,75,0.41471851914627167],[122,-17,76,0.41958968086595133],[122,-17,77,0.4246650178272029],[122,-17,78,0.42992131999622696],[122,-17,79,0.4353291363767049],[122,-16,64,0.37111815473174825],[122,-16,65,0.3740496310670712],[122,-16,66,0.3770219981974421],[122,-16,67,0.38005735096465154],[122,-16,68,0.38319326361492284],[122,-16,69,0.38647083414122557],[122,-16,70,0.38992520711028766],[122,-16,71,0.3935847710735393],[122,-16,72,0.3974706667532843],[122,-16,73,0.4015964465248544],[122,-16,74,0.40596788539978623],[122,-16,75,0.4105829434280279],[122,-16,76,0.41543187915212554],[122,-16,77,0.42049751346618774],[122,-16,78,0.4257556429606536],[122,-16,79,0.43117560157271845],[122,-15,64,0.36802143387620356],[122,-15,65,0.3707862421335761],[122,-15,66,0.37360590677766536],[122,-15,67,0.376501404429343],[122,-15,68,0.37950969916241356],[122,-15,69,0.38267226726058223],[122,-15,70,0.3860246429754856],[122,-15,71,0.38959553680334824],[122,-15,72,0.393406297611238],[122,-15,73,0.3974705345181136],[122,-15,74,0.40179389870419996],[122,-15,75,0.4063740250170883],[122,-15,76,0.4112006329402893],[122,-15,77,0.4162557861928254],[122,-15,78,0.4215143099405405],[122,-15,79,0.4269443643234335],[122,-14,64,0.36480796650257],[122,-14,65,0.36740714493147764],[122,-14,66,0.37007656054037746],[122,-14,67,0.37283591864532106],[122,-14,68,0.37572121560037797],[122,-14,69,0.3787739068340467],[122,-14,70,0.382029565131732],[122,-14,71,0.38551692013719296],[122,-14,72,0.38925727310627245],[122,-14,73,0.3932640796445886],[122,-14,74,0.39754270056985624],[122,-14,75,0.40209032071645606],[122,-14,76,0.40689603517979317],[122,-14,77,0.41194110218409635],[122,-14,78,0.41719936145349334],[122,-14,79,0.4226378166749024],[122,-13,64,0.24840533328768308],[122,-13,65,0.29444783692428045],[122,-13,66,0.34476936931092406],[122,-13,67,0.369048457645762],[122,-13,68,0.3718168068489029],[122,-13,69,0.3747661789581593],[122,-13,70,0.3779317960505051],[122,-13,71,0.3813420599318887],[122,-13,72,0.3850179215378264],[122,-13,73,0.38897242593663583],[122,-13,74,0.39321043303967734],[122,-13,75,0.39772851378292834],[122,-13,76,0.4025150212076692],[122,-13,77,0.40755033553838227],[122,-13,78,0.4128072820372195],[122,-13,79,0.4182517201091233],[122,-12,64,0.1276916914965178],[122,-12,65,0.1573396460213304],[122,-12,66,0.19065135325139937],[122,-12,67,0.22761946282563789],[122,-12,68,0.2682223562233412],[122,-12,69,0.312418179866173],[122,-12,70,0.36013516618895536],[122,-12,71,0.37706636930829984],[122,-12,72,0.38068383056909055],[122,-12,73,0.38459113515791965],[122,-12,74,0.3887924089218509],[122,-12,75,0.3932834267687414],[122,-12,76,0.39805166946031306],[122,-12,77,0.40307656082608817],[122,-12,78,0.4083298840790564],[122,-12,79,0.41377637559629576],[122,-11,64,0.054172466770746996],[122,-11,65,0.07094334064951291],[122,-11,66,0.09068205473701776],[122,-11,67,0.11345098112461491],[122,-11,68,0.13929569704210665],[122,-11,69,0.1682399471423202],[122,-11,70,0.20027524981015413],[122,-11,71,0.23536273522468593],[122,-11,72,0.27343542533052106],[122,-11,73,0.3144006737799908],[122,-11,74,0.35814275128829975],[122,-11,75,0.3887480633688815],[122,-11,76,0.3934975055874594],[122,-11,77,0.39850962237070614],[122,-11,78,0.40375514104407095],[122,-11,79,0.4091977154809205],[122,-10,64,0.01609789730188176],[122,-10,65,0.023509811423988936],[122,-10,66,0.03311274395827785],[122,-10,67,0.04503866071904095],[122,-10,68,0.05940010914569377],[122,-10,69,0.07628622222739186],[122,-10,70,0.09575171924004948],[122,-10,71,0.11781856721039351],[122,-10,72,0.14247811108391412],[122,-10,73,0.16969337475887447],[122,-10,74,0.19940151854219346],[122,-10,75,0.2315164390786463],[122,-10,76,0.2659314984051109],[122,-10,77,0.3025223694801754],[122,-10,78,0.3411499863567498],[122,-10,79,0.38166358808333395],[122,-9,64,0.008646414413619886],[122,-9,65,0.01094853496606087],[122,-9,66,0.01322249402902606],[122,-9,67,0.015479814401248713],[122,-9,68,0.017747742030030482],[122,-9,69,0.02480784323969314],[122,-9,70,0.03481436394215388],[122,-9,71,0.046889678298913176],[122,-9,72,0.061083680070363244],[122,-9,73,0.07741544816739813],[122,-9,74,0.0958755849557768],[122,-9,75,0.11642870648438344],[122,-9,76,0.13901607129827717],[122,-9,77,0.16355833514521084],[122,-9,78,0.18995841964285193],[122,-9,79,0.21810448383217085],[122,-8,64,0.00486436477963547],[122,-8,65,0.007131847801923615],[122,-8,66,0.009394300215694965],[122,-8,67,0.011661014300786376],[122,-8,68,0.013956142952278767],[122,-8,69,0.016314424749104012],[122,-8,70,0.018766636651590445],[122,-8,71,0.021338285424097027],[122,-8,72,0.024048804023170972],[122,-8,73,0.0269109434530383],[122,-8,74,0.03580634522456325],[122,-8,75,0.047501657701617406],[122,-8,76,0.06088633672939386],[122,-8,77,0.07592714288792062],[122,-8,78,0.09257029371643592],[122,-8,79,0.11074436349207972],[122,-7,64,0.0011021213292150326],[122,-7,65,0.0033383817755043886],[122,-7,66,0.005592590857492332],[122,-7,67,0.00787169075394073],[122,-7,68,0.010196517909145832],[122,-7,69,0.012598892735584344],[122,-7,70,0.01510688159941823],[122,-7,71,0.017743483380801787],[122,-7,72,0.0205258307299621],[122,-7,73,0.02346458552318733],[122,-7,74,0.02656352832831038],[122,-7,75,0.029819341297966866],[122,-7,76,0.03322158352449821],[122,-7,77,0.036752857517803536],[122,-7,78,0.04038916510834132],[122,-7,79,0.04781222265548535],[122,-6,64,-0.002628803635612211],[122,-6,65,-4.2056115712726765E-4],[122,-6,66,0.0018280641579016999],[122,-6,67,0.004121555654097714],[122,-6,68,0.00647726104825498],[122,-6,69,0.008923848941664998],[122,-6,70,0.011486447518233951],[122,-6,71,0.014185340129764266],[122,-6,72,0.017035182079664025],[122,-6,73,0.020044408454891638],[122,-6,74,0.02321483276285148],[122,-6,75,0.026541435742311603],[122,-6,76,0.03001234333710234],[122,-6,77,0.03360899245327727],[122,-6,78,0.03730648276614053],[122,-6,79,0.041074112508774206],[122,-5,64,-0.006318597178208187],[122,-5,65,-0.004135505238140311],[122,-5,66,-0.0018905214552753244],[122,-5,67,4.1828375192650303E-4],[122,-5,68,0.0028046536902876845],[122,-5,69,0.005293940517035569],[122,-5,70,0.007908171249271331],[122,-5,71,0.01066476586921702],[122,-5,72,0.013575780183347642],[122,-5,73,0.016647334709448187],[122,-5,74,0.01987922929797744],[122,-5,75,0.02326474281407074],[122,-5,76,0.02679061683417739],[122,-5,77,0.030437221951480516],[122,-5,78,0.034178904938397404],[122,-5,79,0.037984514688227604],[122,-4,64,-0.00995955380068727],[122,-4,65,-0.00779919197964281],[122,-4,66,-0.0055567077831753485],[122,-4,67,-0.003232803676300478],[122,-4,68,-8.173959420457286E-4],[122,-4,69,0.0017114608325020826],[122,-4,70,0.00437259900591536],[122,-4,71,0.00718049129116236],[122,-4,72,0.010144529894805993],[122,-4,73,0.013268484858677865],[122,-4,74,0.016550141263749867],[122,-4,75,0.019981114587382304],[122,-4,76,0.02354684314455921],[122,-4,77,0.027226756195798278],[122,-4,78,0.030994615970524487],[122,-4,79,0.03481903154032817],[122,-3,64,-0.013546284685727945],[122,-3,65,-0.011406775699400445],[122,-3,66,-0.009166506807108912],[122,-3,67,-0.006828871650707984],[122,-3,68,-0.0043874387137136485],[122,-3,69,-0.0018236823324623303],[122,-3,70,8.780138759358941E-4],[122,-3,71,0.003729157496726084],[122,-3,72,0.006736472372772121],[122,-3,73,0.009901394342256],[122,-3,74,0.013219737276450047],[122,-3,75,0.016681528681929896],[122,-3,76,0.02027101378644361],[122,-3,77,0.023966826695176472],[122,-3,78,0.027742326885550707],[122,-3,79,0.03156609900936626],[122,-2,64,-0.01707572352221345],[122,-2,65,-0.014955819044523916],[122,-2,66,-0.012718375808486736],[122,-2,67,-0.01036951665784781],[122,-2,68,-0.007906392374074415],[122,-2,69,-0.00531383241033626],[122,-2,70,-0.002579385163032538],[122,-2,71,3.055400510502148E-4],[122,-2,72,0.0033450528011922387],[122,-2,73,0.006538321973638175],[122,-2,74,0.009879276407725273],[122,-2,75,0.013356464983523558],[122,-2,76,0.016953075080936637],[122,-2,77,0.02064710801644016],[122,-2,78,0.0244117097634325],[122,-2,79,0.028215654980769833],[122,-1,64,-0.020546924186460855],[122,-1,65,-0.018446083880285836],[122,-1,66,-0.016212993182682163],[122,-1,67,-0.013856519887049959],[122,-1,68,-0.011377267120150041],[122,-1,69,-0.008763279726470403],[122,-1,70,-0.006005149311342144],[122,-1,71,-0.0030970898134819592],[122,-1,72,-3.749516485187631E-5],[122,-1,73,0.0031706522796712657],[122,-1,74,0.006519522092368637],[122,-1,75,0.009996324139457384],[122,-1,76,0.013583343897057232],[122,-1,77,0.017258123356666485],[122,-1,78,0.020993785881409238],[122,-1,79,0.024759503113395285],[122,0,64,-0.02396064549034821],[122,0,65,-0.021879112855828053],[122,0,66,-0.019652830405577852],[122,0,67,-0.017293404187805377],[122,0,68,-0.014804704829128292],[122,0,69,-0.012177783445678476],[122,0,70,-0.009406087661661785],[122,0,71,-0.006486463819806082],[122,0,72,-0.0034196456620140293],[122,0,73,-2.106062647859919E-4],[122,0,74,0.003131226294705373],[122,0,75,0.006591888778017521],[122,0,76,0.01015293708639737],[122,0,77,0.01379163371126519],[122,0,78,0.01748126676657935],[122,0,79,0.02119159879712557],[122,1,64,-0.027318720087061227],[122,1,65,-0.02525759950493163],[122,1,66,-0.023041518581130214],[122,1,67,-0.020684793567690565],[122,1,68,-0.01819433100158362],[122,1,69,-0.015563918872916659],[122,1,70,-0.012789615514392906],[122,1,71,-0.00987067373037199],[122,1,72,-0.006809955720532563],[122,1,73,-0.0036142245456889325],[122,1,74,-2.9431263122380535E-4],[122,1,75,0.003134831935121519],[122,1,76,0.006654220300746373],[122,1,77,0.010241017688459482],[122,1,78,0.013868856696585588],[122,1,79,0.017508267361883482],[122,2,64,-0.013315382749222827],[122,2,65,-0.020580796182371193],[122,2,66,-0.02638300965923487],[122,2,67,-0.024035575521732515],[122,2,68,-0.021551919447268527],[122,2,69,-0.018928249429597033],[122,2,70,-0.01616294146608613],[122,2,71,-0.013257383492218743],[122,2,72,-0.010216313829772774],[122,2,73,-0.007048049936893949],[122,2,74,-0.0037646079692107916],[122,2,75,-3.8171389428751003E-4],[122,2,76,0.0030812928724463454],[122,2,77,0.006601662127157489],[122,2,78,0.010153540445235528],[122,2,79,0.013708382080983227],[122,3,64,-0.0023798089582554934],[122,3,65,-0.004540501801488219],[122,3,66,-0.007535451461960644],[122,3,67,-0.011573527825384528],[122,3,68,-0.01681936136397779],[122,3,69,-0.022276287164542725],[122,3,70,-0.019532063529042326],[122,3,71,-0.01665287592451104],[122,3,72,-0.013645053460706602],[122,3,73,-0.010518203451621364],[122,3,74,-0.007285282035997473],[122,3,75,-0.003962570200251005],[122,3,76,-5.695561224880229E-4],[122,3,77,0.002871275056349409],[122,3,78,0.006334742750773932],[122,3,79,0.009793362291668132],[122,4,64,-0.0010782293666090166],[122,4,65,-0.0015786983921800232],[122,4,66,-0.0019725412997469824],[122,4,67,-0.002541153810152086],[122,4,68,-0.0035195075224674563],[122,4,69,-0.005092091806473856],[122,4,70,-0.007411854296023075],[122,4,71,-0.010603480217513563],[122,4,72,-0.014766175301861232],[122,4,73,-0.014028183994963259],[122,4,74,-0.010859296198514237],[122,4,75,-0.007609885399572333],[122,4,76,-0.004299379118533127],[122,4,77,-9.498169891150789E-4],[122,4,78,0.0024144437573252586],[122,4,79,0.005767099498780369],[122,5,64,0.002270292235287582],[122,5,65,-1.5628075224097954E-5],[122,5,66,-0.001174891318678171],[122,5,67,-0.001561358087510675],[122,5,68,-0.0014801816103976757],[122,5,69,-0.0011836007357076141],[122,5,70,-8.902345375858011E-4],[122,5,71,-7.881747771045094E-4],[122,5,72,-0.001037588061355687],[122,5,73,-0.0017732464318089604],[122,5,74,-0.0031069733287645484],[122,5,75,-0.005129992765532172],[122,5,76,-0.007915170516214536],[122,5,77,-0.004858379694216428],[122,5,78,-0.0016027430038414534],[122,5,79,0.0016358167913828707],[122,6,64,0.019352125106088244],[122,6,65,0.011833759505639883],[122,6,66,0.006541493936934848],[122,6,67,0.0030490527991878396],[122,6,68,9.81211526612138E-4],[122,6,69,1.806789163118997E-5],[122,6,70,-1.2466401676851618E-4],[122,6,71,3.014250849342534E-4],[122,6,72,0.001075004620856293],[122,6,73,0.0020026220890286537],[122,6,74,0.0029163868921461985],[122,6,75,0.003671732154216496],[122,6,76,0.004145265709593965],[122,6,77,0.00423272047451758],[122,6,78,0.003847013367100461],[122,6,79,0.002916420836328275],[122,7,64,0.061863313681726775],[122,7,65,0.04566443278490401],[122,7,66,0.03287076764829642],[122,7,67,0.022983689198225344],[122,7,68,0.015557960146021803],[122,7,69,0.010206032881184325],[122,7,70,0.006577912191695637],[122,7,71,0.004358386439903883],[122,7,72,0.00326474205885065],[122,7,73,0.003044514043480337],[122,7,74,0.0034732852158501633],[122,7,75,0.0043525462826846],[122,7,76,0.005507627866495067],[122,7,77,0.0067857147821112716],[122,7,78,0.008053951855709613],[122,7,79,0.009197649550533022],[122,8,64,0.14151435715542596],[122,8,65,0.11318765793860514],[122,8,66,0.0895250138030013],[122,8,67,0.06995566626117976],[122,8,68,0.053964483860330884],[122,8,69,0.041096261119915614],[122,8,70,0.03093520809349951],[122,8,71,0.023102319165113686],[122,8,72,0.01725322197933055],[122,8,73,0.013076046809138715],[122,8,74,0.01028932901859543],[122,8,75,0.008639956573526678],[122,8,76,0.007901173778202928],[122,8,77,0.007870651571028746],[122,8,78,0.0083686338032516],[122,8,79,0.009236167961295639],[122,9,64,0.25120304579342717],[122,9,65,0.22611288658628534],[122,9,66,0.18821506920513154],[122,9,67,0.1556774146655543],[122,9,68,0.1279150944207216],[122,9,69,0.10440521525249812],[122,9,70,0.08466606772230645],[122,9,71,0.06825462418530079],[122,9,72,0.05476451130804192],[122,9,73,0.04382398858194094],[122,9,74,0.035093945371892164],[122,9,75,0.02826592838974182],[122,9,76,0.02306021076633155],[122,9,77,0.01922391311369829],[122,9,78,0.016529186122777297],[122,9,79,0.014771463345797842],[122,10,64,0.24461259303613234],[122,10,65,0.24396714368142822],[122,10,66,0.24362518768009148],[122,10,67,0.2435533951824137],[122,10,68,0.24372936433449918],[122,10,69,0.21184434311769113],[122,10,70,0.17948431535424808],[122,10,71,0.151531651743046],[122,10,72,0.12751757118830012],[122,10,73,0.10700992572607537],[122,10,74,0.08961128694204486],[122,10,75,0.07495704897889806],[122,10,76,0.0627135592997431],[122,10,77,0.052576287653436866],[122,10,78,0.044268042902193924],[122,10,79,0.03753724654142549],[122,11,64,0.23798240342574378],[122,11,65,0.23717872441362947],[122,11,66,0.2366692414695372],[122,11,67,0.23642011650011208],[122,11,68,0.2364087233176047],[122,11,69,0.23662949270655606],[122,11,70,0.23707505907071],[122,11,71,0.2377358519431864],[122,11,72,0.2386001899745445],[122,11,73,0.21435200933625825],[122,11,74,0.18556175977351697],[122,11,75,0.16043581560406445],[122,11,76,0.1385855833799088],[122,11,77,0.11965372721442312],[122,11,78,0.10331241948360062],[122,11,79,0.0892616351421874],[122,12,64,0.23133500545939242],[122,12,65,0.2303717587313241],[122,12,66,0.22969239234879638],[122,12,67,0.22926322927926943],[122,12,68,0.22906180945049953],[122,12,69,0.22908252316437666],[122,12,70,0.22931808322731165],[122,12,71,0.22975914880612996],[122,12,72,0.23039443751742006],[122,12,73,0.2312108502459518],[122,12,74,0.2321936084110044],[122,12,75,0.233326403371743],[122,12,76,0.2345915576365712],[122,12,77,0.23217816038525113],[122,12,78,0.20538481176027715],[122,12,79,0.18166733252264322],[122,13,64,0.22469655252499385],[122,13,65,0.223573683236754],[122,13,66,0.22272343765904462],[122,13,67,0.22211297189255652],[122,13,68,0.22172036078990093],[122,13,69,0.22154000218225092],[122,13,70,0.2215646887773694],[122,13,71,0.2217852777851829],[122,13,72,0.22219082765665485],[122,13,73,0.22276874123275223],[122,13,74,0.22350491504753814],[122,13,75,0.22438389451611376],[122,13,76,0.22538903472579686],[122,13,77,0.22650266653804182],[122,13,78,0.22770626770088218],[122,13,79,0.22898063866568505],[122,14,64,0.21810031257908646],[122,14,65,0.21681903479735332],[122,14,66,0.21579820243989548],[122,14,67,0.21500643545798798],[122,14,68,0.21442266302892524],[122,14,69,0.2140412838524322],[122,14,70,0.21385511504813212],[122,14,71,0.21385512450406616],[122,14,72,0.21403060188708106],[122,14,73,0.21436932894333385],[122,14,74,0.2148577488508181],[122,14,75,0.21548113438914943],[122,14,76,0.2162237546956125],[122,14,77,0.21706904038103253],[122,14,78,0.21799974678596726],[122,14,79,0.21899811516543718],[122,15,64,0.21158992642755226],[122,15,65,0.21015250744738923],[122,15,66,0.20896229293758672],[122,15,67,0.2079899169029117],[122,15,68,0.20721541582436492],[122,15,69,0.20663313208076003],[122,15,70,0.20623580845519526],[122,15,71,0.20601440186349154],[122,15,72,0.2059582998195739],[122,15,73,0.20605552786732198],[122,15,74,0.20629294775283816],[122,15,75,0.2066564461342804],[122,15,76,0.2071311136494299],[122,15,77,0.2077014141842573],[122,15,78,0.2083513442103199],[122,15,79,0.20906458208312545],[122,16,64,0.20520684549543958],[122,16,65,0.20361584420783668],[122,16,66,0.20225731993333884],[122,16,67,0.20110438416437623],[122,16,68,0.20013839582884357],[122,16,69,0.1993535910903568],[122,16,70,0.198742569029378],[122,16,71,0.19829620159987563],[122,16,72,0.19800390351272132],[122,16,73,0.1978538836789105],[122,16,74,0.19783337799683234],[122,16,75,0.19792886331375137],[122,16,76,0.19812625243677384],[122,16,77,0.19841107011290082],[122,16,78,0.19876860994257414],[122,16,79,0.19918407223445145],[122,17,64,0.1989696139115028],[122,17,65,0.19722770100292783],[122,17,66,0.19570173564255164],[122,17,67,0.1943676862172971],[122,17,68,0.19320842059402304],[122,17,69,0.19221804146741958],[122,17,70,0.19138897756294757],[122,17,71,0.1907119999660891],[122,17,72,0.1901765495911785],[122,17,73,0.18977103598123946],[122,17,74,0.18948310723504763],[122,17,75,0.1892998909285542],[122,17,76,0.18920820596711393],[122,17,77,0.18919474537256095],[122,17,78,0.18924623007611602],[122,17,79,0.18934953385223363],[122,18,64,0.19287422596792184],[122,18,65,0.1909841763987325],[122,18,66,0.1892916082838886],[122,18,67,0.18777564305136143],[122,18,68,0.18642081472657776],[122,18,69,0.1852210872465384],[122,18,70,0.18416872890104563],[122,18,71,0.18325444097350882],[122,18,72,0.18246774381605313],[122,18,73,0.18179732346551725],[122,18,74,0.1812313386126641],[122,18,75,0.18075768783434493],[122,18,76,0.18036423709333485],[122,18,77,0.18003900760277602],[122,18,78,0.17977032424247985],[122,18,79,0.17954692480038045],[122,19,64,0.18450722131485822],[122,19,65,0.1832311938395779],[122,19,66,0.1819721122273944],[122,19,67,0.18075122437296912],[122,19,68,0.17958425048833804],[122,19,69,0.17833962512716067],[122,19,70,0.1770585497062781],[122,19,71,0.17590007748207795],[122,19,72,0.17485390212681254],[122,19,73,0.17390910397193243],[122,19,74,0.17305449186639402],[122,19,75,0.1722788942748745],[122,19,76,0.1715713996960576],[122,19,77,0.1709215465986969],[122,19,78,0.1703194631874721],[122,19,79,0.16975595741909907],[122,20,64,0.17317391192978301],[122,20,65,0.17172207738380657],[122,20,66,0.17030652215557354],[122,20,67,0.16894517688951433],[122,20,68,0.16765209332357647],[122,20,69,0.16643422176487518],[122,20,70,0.16529868514111531],[122,20,71,0.1642525024592723],[122,20,72,0.1633021706528421],[122,20,73,0.1624533065752999],[122,20,74,0.16171034927704914],[122,20,75,0.16107632255230497],[122,20,76,0.1605526575941642],[122,20,77,0.16013907545208267],[122,20,78,0.15983352884880866],[122,20,79,0.1596322027829333],[122,21,64,0.16154152238159972],[122,21,65,0.15991003360104125],[122,21,66,0.15833556802966947],[122,21,67,0.15683268140820827],[122,21,68,0.15541368874500786],[122,21,69,0.15408583248143023],[122,21,70,0.15285649401763343],[122,21,71,0.15173280527830643],[122,21,72,0.1507211798157521],[122,21,73,0.1498269150658495],[122,21,74,0.1490538658604758],[122,21,75,0.14840418912191616],[122,21,76,0.14787815949041905],[122,21,77,0.14747405546710102],[122,21,78,0.14718811549378072],[122,21,79,0.14701456323870288],[122,22,64,0.14967550519014677],[122,22,65,0.14786047954821277],[122,22,66,0.14612430744402286],[122,22,67,0.1444781886650753],[122,22,68,0.14293266451482112],[122,22,69,0.1414951998284469],[122,22,70,0.14017333179749897],[122,22,71,0.1389741762350063],[122,22,72,0.1379039143627548],[122,22,73,0.13696736133969356],[122,22,74,0.13616761659591456],[122,22,75,0.1355057958323828],[122,22,76,0.13498084434705018],[122,22,77,0.13458943115514807],[122,22,78,0.13432592318846245],[122,22,79,0.13418243868510185],[122,23,64,0.13764716359062723],[122,23,65,0.13564473702630903],[122,23,66,0.13374369781828035],[122,23,67,0.13195198205393335],[122,23,68,0.1302783514566486],[122,23,69,0.12873041001980645],[122,23,70,0.12731573653346484],[122,23,71,0.12604129436734118],[122,23,72,0.1249128812730538],[122,23,73,0.12393467088358223],[122,23,74,0.12310884593080075],[122,23,75,0.12243532297296311],[122,23,76,0.12191156820086925],[122,23,77,0.12153250367625745],[122,23,78,0.12129050315213558],[122,23,79,0.12117547643233229],[122,24,64,0.12553075764495364],[122,24,65,0.12333714356787907],[122,24,66,0.12126773267411434],[122,24,67,0.11932735879428787],[122,24,68,0.11752302874917536],[122,24,69,0.11586239129031205],[122,24,70,0.11435294501354734],[122,24,71,0.11300136236973687],[122,24,72,0.11181291042090125],[122,24,73,0.11079097242283038],[122,24,74,0.10993667020814019],[122,24,75,0.10924858709215117],[122,24,76,0.10872259077922077],[122,24,77,0.1083517555116262],[122,24,78,0.1081263824803864],[122,24,79,0.10803411730772952],[122,25,64,0.11340073934776213],[122,25,65,0.11101228951852089],[122,25,66,0.10877069975822073],[122,25,67,0.10667792725036529],[122,25,68,0.10473927816258462],[122,25,69,0.10296234294373674],[122,25,70,0.10135441424251006],[122,25,71,0.09992173741785672],[122,25,72,0.09866891053744246],[122,25,73,0.09759839333250918],[122,25,74,0.09671012503440478],[122,25,75,0.0960012507462334],[122,25,76,0.09546595573918543],[122,25,77,0.09509540680962521],[122,25,78,0.0948777995937452],[122,25,79,0.0947985105118851],[122,26,64,0.10132911869262569],[122,26,65,0.0987423830268047],[122,26,66,0.09632456265025903],[122,26,67,0.09407502183839299],[122,26,68,0.09199744844754659],[122,26,69,0.09009926555495265],[122,26,70,0.08838743355320942],[122,26,71,0.08686764066422054],[122,26,72,0.08554369058707924],[122,26,73,0.08441700608631789],[122,26,74,0.08348624839652985],[122,26,75,0.08274705203026107],[122,26,76,0.08219187429583444],[122,26,77,0.08180995856306852],[122,26,78,0.08158741006162933],[122,26,79,0.08150738275954172],[122,27,64,0.08938296286611416],[122,27,65,0.08659474496469556],[122,27,66,0.08399646770543652],[122,27,67,0.08158523717133936],[122,27,68,0.07936323129698676],[122,27,69,0.07733759348979559],[122,27,70,0.07551482822946881],[122,27,71,0.07389994598217489],[122,27,72,0.0724958468136591],[122,27,73,0.07130282566294482],[122,27,74,0.07031819910424983],[122,27,75,0.06953605312150168],[122,27,76,0.06894711112636048],[122,27,77,0.06853872116970737],[122,27,78,0.0682949610322636],[122,27,79,0.0681968596329679],[122,28,64,0.07762203097810867],[122,28,65,0.07462943604722828],[122,28,66,0.07184637843169676],[122,28,67,0.06926808334155964],[122,28,68,0.06689535055015708],[122,28,69,0.0647349311504357],[122,28,70,0.06279275575756219],[122,28,71,0.06107304875874371],[122,28,72,0.059577715918632465],[122,28,73,0.05830585801659415],[122,28,74,0.05725341029721948],[122,28,75,0.05641290720149524],[122,28,76,0.055773371542625245],[122,28,77,0.055320327000481014],[122,28,78,0.05503593253630161],[122,28,79,0.05489923707525459],[122,29,64,0.06609654700744737],[122,29,65,0.06289701869718332],[122,29,66,0.059924839682276174],[122,29,67,0.057173764523611795],[122,29,68,0.054643366588289555],[122,29,69,0.052339894628260705],[122,29,70,0.05026859608841759],[122,29,71,0.048432815788833475],[122,29,72,0.046833395068200036],[122,29,73,0.045468199932222876],[122,29,74,0.04433177794539178],[122,29,75,0.04341514328338874],[122,29,76,0.04270568905344211],[122,29,77,0.04218722569413556],[122,29,78,0.041840143988856174],[122,29,79,0.04164170096898922],[122,30,64,0.05484513035351591],[122,30,65,0.05143647363094564],[122,30,66,0.04827089218687428],[122,30,67,0.04534110192609109],[122,30,68,0.04264561741269682],[122,30,69,0.04019008067259508],[122,30,70,0.03797895819229104],[122,30,71,0.036014638883833786],[122,30,72,0.034296851634690574],[122,30,73,0.0328222134278372],[122,30,74,0.03158390773178968],[122,30,75,0.030571492535519704],[122,30,76,0.029770837090157005],[122,30,77,0.029164186121069066],[122,30,78,0.02873034999471674],[122,30,79,0.02844501906541305],[122,31,64,0.043897242988177],[122,31,65,0.04027781571093737],[122,31,66,0.03691486638593755],[122,31,67,0.03380051311521998],[122,31,68,0.030932389899610238],[122,31,69,0.028315436132445228],[122,31,70,0.025953253700067448],[122,31,71,0.02384721838735431],[122,31,72,0.02199592181766366],[122,31,73,0.02039474415394275],[122,31,74,0.019035557227141838],[122,31,75,0.017906557433155137],[122,31,76,0.016992227426729713],[122,31,77,0.016273425343145704],[122,31,78,0.015727600000391962],[122,31,79,0.0153291302768747],[122,32,64,0.033277782081630916],[122,32,65,0.02944691673306681],[122,32,66,0.025883442646856766],[122,32,67,0.022579314957529847],[122,32,68,0.019531469547708173],[122,32,69,0.016744058297153905],[122,32,70,0.01421975134932441],[122,32,71,0.011958874931233173],[122,32,72,0.009958882555056559],[122,32,73,0.0082139558778986],[122,32,74,0.006714734858105857],[122,32,75,0.005448176524756229],[122,32,76,0.004397541367556927],[122,32,77,0.0035425060603899825],[122,32,78,0.0028594009575703197],[122,32,79,0.0023215705483137696],[122,33,64,0.02299724330778888],[122,33,65,0.018955268810668287],[122,33,66,0.015189024060189925],[122,33,67,0.011690713840584458],[122,33,68,0.00845675559732716],[122,33,69,0.005490442819776229],[122,33,70,0.002793466124245785],[122,33,71,3.6508873105640417E-4],[122,33,72,-0.0017983495695832463],[122,33,73,-0.003703801059599115],[122,33,74,-0.005361751725827977],[122,33,75,-0.006786336582083228],[122,33,76,-0.007995329682240282],[122,33,77,-0.009010010113788647],[122,33,78,-0.009854905529128316],[122,33,79,-0.010557415019087541],[122,34,64,0.013048848130012558],[122,34,65,0.008797019989374093],[122,34,66,0.004826686283850724],[122,34,67,0.0011306738281235459],[122,34,68,-0.002294949411262428],[122,34,69,-0.005447802193640695],[122,34,70,-0.00832719880731725],[122,34,71,-0.010934927032765237],[122,34,72,-0.013275709573737127],[122,34,73,-0.015357541340240161],[122,34,74,-0.017191902980273295],[122,34,75,-0.01879385136438108],[122,34,76,-0.020181988021766746],[122,34,77,-0.02137830680597648],[122,34,78,-0.022407922327669534],[122,34,79,-0.023298680931021977],[122,35,64,0.003407246672538453],[122,35,65,-0.0010523562801214494],[122,35,66,-0.005227182550420335],[122,35,67,-0.009123471183672969],[122,35,68,-0.012745354559752899],[122,35,69,-0.01609139757851543],[122,35,70,-0.019161919192494357],[122,35,71,-0.021959717928306706],[122,35,72,-0.02449049888170194],[122,35,73,-0.026763180543179915],[122,35,74,-0.028790081857113986],[122,35,75,-0.030586990214149172],[122,35,76,-0.03217311136113525],[122,35,77,-0.03357090248215277],[122,35,78,-0.03480578995395399],[122,35,79,-0.035905773508799414],[122,36,64,-0.005972612513573406],[122,36,65,-0.010637228953785082],[122,36,66,-0.015016085150659754],[122,36,67,-0.019114256347208924],[122,36,68,-0.0229359562921137],[122,36,69,-0.02648070709979948],[122,36,70,-0.029749803108124466],[122,36,71,-0.03274698185598149],[122,36,72,-0.03547881921273789],[122,36,73,-0.037955008746845764],[122,36,74,-0.04018852573348762],[122,36,75,-0.042195676486659776],[122,36,76,-0.04399603397453389],[122,36,77,-0.04561226093548059],[122,36,78,-0.04706982195154435],[122,36,79,-0.04839658615592327],[122,37,64,-0.015156440597009928],[122,37,65,-0.02002280936261123],[122,37,66,-0.02460445658806911],[122,37,67,-0.028905170944768462],[122,37,68,-0.032929170368308225],[122,37,69,-0.03667691972177284],[122,37,70,-0.04015062673444621],[122,37,71,-0.04335486096080726],[122,37,72,-0.046296922481529834],[122,37,73,-0.048987099311884476],[122,37,74,-0.05143881390369212],[122,37,75,-0.05366865940126779],[122,37,76,-0.05569632657428771],[122,37,77,-0.05754442259850779],[122,37,78,-0.059238183084580294],[122,37,79,-0.06080507896545437],[122,38,64,-0.024228832682970852],[122,38,65,-0.029293390548684767],[122,38,66,-0.034075930637783615],[122,38,67,-0.03857895941801461],[122,38,68,-0.04280667495705375],[122,38,69,-0.046760444807125434],[122,38,70,-0.05044329391916384],[122,38,71,-0.05386047949704786],[122,38,72,-0.05701984203765312],[122,38,73,-0.05993204917807112],[122,38,74,-0.06261073270964052],[122,38,75,-0.06507251938269779],[122,38,76,-0.06733695637877889],[122,38,77,-0.06646880574322649],[122,38,78,-0.06085197837317656],[122,38,79,-0.05524552086212339],[122,39,64,-0.0332374898745497],[122,39,65,-0.038495945297372644],[122,39,66,-0.04347653432562301],[122,39,67,-0.04818049631787506],[122,39,68,-0.05261201354959846],[122,39,69,-0.056773341519208285],[122,39,70,-0.060668242378749085],[122,39,71,-0.06430252583980285],[122,39,72,-0.06768439343956108],[122,39,73,-0.07082467910664661],[122,39,74,-0.07373698634495623],[122,39,75,-0.06945352055340763],[122,39,76,-0.06401668193692044],[122,39,77,-0.05853698854989966],[122,39,78,-0.0530431909477033],[122,39,79,-0.047565677373933996],[122,40,64,-0.042184802877335364],[122,40,65,-0.04763169767072704],[122,40,66,-0.052806246611330154],[122,40,67,-0.05770833839693463],[122,40,68,-0.062342141884005234],[122,40,69,-0.06671085193155633],[122,40,70,-0.07081894823895808],[122,40,71,-0.07467271106569137],[122,40,72,-0.07691257844545377],[122,40,73,-0.0718541771374473],[122,40,74,-0.06668755279130337],[122,40,75,-0.06143458620418301],[122,40,76,-0.056119391798274756],[122,40,77,-0.050768173729193275],[122,40,78,-0.045408984925483314],[122,40,79,-0.04007139043685251],[122,41,64,-0.05107506176916398],[122,41,65,-0.05670398324739107],[122,41,66,-0.06206730882070349],[122,41,67,-0.06716342123053229],[122,41,68,-0.07199647963632425],[122,41,69,-0.07657072234203313],[122,41,70,-0.07822408683191492],[122,41,71,-0.07352929904152478],[122,41,72,-0.06869802660339332],[122,41,73,-0.06374772143376377],[122,41,74,-0.058001672761471286],[122,41,75,-0.052008078650141676],[122,41,76,-0.046007629966000635],[122,41,77,-0.040022061912594394],[122,41,78,-0.034074580986735194],[122,41,79,-0.028189565702269118],[122,42,64,-0.059913798650629624],[122,42,65,-0.065717653851695],[122,42,66,-0.0712637014069258],[122,42,67,-0.0765486206672404],[122,42,68,-0.07870357347144223],[122,42,69,-0.07392117597973037],[122,42,70,-0.06810656786445872],[122,42,71,-0.062209140386497164],[122,42,72,-0.05624262403199788],[122,42,73,-0.05022198974878194],[122,42,74,-0.044163657370645856],[122,42,75,-0.03808560751985461],[122,42,76,-0.03200739756405936],[122,42,77,-0.025950082423925897],[122,42,78,-0.019936041234393326],[122,42,79,-0.013988711051567496],[122,43,64,-0.06870461415250764],[122,43,65,-0.07467594242595509],[122,43,66,-0.07783909109763666],[122,43,67,-0.07221339165767432],[122,43,68,-0.06647163981122899],[122,43,69,-0.0606277080898956],[122,43,70,-0.054695115259794695],[122,43,71,-0.048687514279581776],[122,43,72,-0.04261912563450155],[122,43,73,-0.036505075069688454],[122,43,74,-0.030361635717676864],[122,43,75,-0.024206374859170807],[122,43,76,-0.018058205788956602],[122,43,77,-0.011937345478928659],[122,43,78,-0.005865178937432611],[122,43,79,1.3596864560308508E-4],[122,44,64,-0.0761199567483021],[122,44,65,-0.07060847717763775],[122,44,66,-0.0649722991027461],[122,44,67,-0.05921247095228599],[122,44,68,-0.0533411126482067],[122,44,69,-0.047373927306755145],[122,44,70,-0.04132581682690157],[122,44,71,-0.035211361810317504],[122,44,72,-0.029045293550637227],[122,44,73,-0.02284287141464935],[122,44,74,-0.016620165494746486],[122,44,75,-0.010394244656337256],[122,44,76,-0.004183270337556606],[122,44,77,0.001993503319976721],[122,44,78,0.008115822221471723],[122,44,79,0.014162616969709552],[122,45,64,-0.06359036068172422],[122,45,65,-0.057934804809286714],[122,45,66,-0.052161148547172735],[122,45,67,-0.04626833191911895],[122,45,68,-0.040268819979356156],[122,45,69,-0.03418034444216619],[122,45,70,-0.02801933548065766],[122,45,71,-0.021801395282833126],[122,45,72,-0.015541814673704295],[122,45,73,-0.009255995882881273],[122,45,74,-0.002959781210361636],[122,45,75,0.003330312411200154],[122,45,76,0.00959695272413986],[122,45,77,0.0158219448660828],[122,45,78,0.02198627683366481],[122,45,79,0.028070256824259315],[122,46,64,-0.05111943044616955],[122,46,65,-0.04532163207174089],[122,46,66,-0.03941260186676878],[122,46,67,-0.033389047890635314],[122,46,68,-0.02726386011215685],[122,46,69,-0.021057003875959],[122,46,70,-0.014786596155196632],[122,46,71,-0.00846937320930969],[122,46,72,-0.0021212561223151547],[122,46,73,0.004242176833202202],[122,46,74,0.010605311389410468],[122,46,75,0.016952212169754104],[122,46,76,0.023266431167105757],[122,46,77,0.029530909485606334],[122,46,78,0.035727971802963325],[122,46,79,0.0418394128098488],[122,47,64,-0.03871150161201553],[122,47,65,-0.03277477159530964],[122,47,66,-0.026733801046200156],[122,47,67,-0.02058300555013309],[122,47,68,-0.01433580659028627],[122,47,69,-0.008014607423624589],[122,47,70,-0.0016393763845088984],[122,47,71,0.00477189190845101],[122,47,72,0.011202559500268008],[122,47,73,0.01763682045046266],[122,47,74,0.02405926911285306],[122,47,75,0.030454561621505533],[122,47,76,0.036807170620542416],[122,47,77,0.04310123304641181],[122,47,78,0.04932049055256664],[122,47,79,0.055448321962329336],[122,48,64,-0.026424365937654258],[122,48,65,-0.020352305997436638],[122,48,66,-0.014182830857798735],[122,48,67,-0.007908043800757495],[122,48,68,-0.0015420062168568227],[122,48,69,0.004890261776566979],[122,48,70,0.011366787884200615],[122,48,71,0.017868194063716876],[122,48,72,0.02437702693117151],[122,48,73,0.03087717968186575],[122,48,74,0.037353406199498077],[122,48,75,0.04379092777650574],[122,48,76,0.05017513262701447],[122,48,77,0.05649136814216881],[122,48,78,0.06272482561571271],[122,48,79,0.06886051695959232],[122,49,64,-0.014323754546083325],[122,49,65,-0.00811999224199381],[122,49,66,-0.0018251787387493067],[122,49,67,0.004570876849266804],[122,49,68,0.01105337055440363],[122,49,69,0.017594521965061984],[122,49,70,0.024170223201071935],[122,49,71,0.03075959453408893],[122,49,72,0.037344262640737064],[122,49,73,0.043907729383230884],[122,49,74,0.05043483193814141],[122,49,75,0.056911294843005326],[122,49,76,0.06332337428732479],[122,49,77,0.0696575947405388],[122,49,78,0.07590057778463473],[122,49,79,0.08121128079267302],[122,50,64,-0.002466894280445416],[122,50,65,0.0038648379634226935],[122,50,66,0.010281969862709675],[122,50,67,0.016796927320395824],[122,50,68,0.023394067899829448],[122,50,69,0.030042746754025948],[122,50,70,0.03671661449295684],[122,50,71,0.04339318371683057],[122,50,72,0.05005305676908388],[122,50,73,0.05667924294686426],[122,50,74,0.06325656613553868],[122,50,75,0.06977116358203454],[122,50,76,0.07621007627729935],[122,50,77,0.08233385642965944],[122,50,78,0.08749944487073244],[122,50,79,0.09257449082576663],[122,51,64,0.009097425493606396],[122,51,65,0.015553223562194426],[122,51,66,0.022089687918299745],[122,51,67,0.02872137886068111],[122,51,68,0.035431727768636526],[122,51,69,0.04218716298528683],[122,51,70,0.04895901694915099],[122,51,71,0.05572310537745319],[122,51,72,0.062458907269321955],[122,51,73,0.06914883323496133],[122,51,74,0.07577758325865278],[122,51,75,0.08197406207673161],[122,51,76,0.08756402630686622],[122,51,77,0.09306085257461003],[122,51,78,0.09846854408373665],[122,51,79,0.10379100173383775],[122,52,64,0.020328729382495164],[122,52,65,0.026904462428873302],[122,52,66,0.033557206276499565],[122,52,67,0.040303515343203505],[122,52,68,0.04712581692277542],[122,52,69,0.05398759317089919],[122,52,70,0.060857813409726624],[122,52,71,0.06771052758604851],[122,52,72,0.07420071003957095],[122,52,73,0.08027613002712448],[122,52,74,0.0862553519461226],[122,52,75,0.09214363776008241],[122,52,76,0.09794488548855552],[122,52,77,0.10366206290478204],[122,52,78,0.10929754985257381],[122,52,79,0.11485338912997431],[122,53,64,0.029271824837322456],[122,53,65,0.036664807811682305],[122,53,66,0.04388941256522498],[122,53,67,0.05091736774049762],[122,53,68,0.05775751135099002],[122,53,69,0.06443959475971757],[122,53,70,0.07098747237458862],[122,53,71,0.07741951363374958],[122,53,72,0.08374952730118466],[122,53,73,0.0899875992563538],[122,53,74,0.09614084241092533],[122,53,75,0.10221405763593422],[122,53,76,0.10821030482949126],[122,53,77,0.1141313834963863],[122,53,78,0.11997822244294992],[122,53,79,0.12575117841359357],[122,54,64,0.03786829951998391],[122,54,65,0.04535837283782863],[122,54,66,0.052683545891450786],[122,54,67,0.059813795429210614],[122,54,68,0.06675889740049723],[122,54,69,0.07355123285713276],[122,54,70,0.08021674358196325],[122,54,71,0.0867753301667399],[122,54,72,0.0932418137730754],[122,54,73,0.0996268125034788],[122,54,74,0.10593753089984008],[122,54,75,0.11217846133656655],[122,54,76,0.11835199632240626],[122,54,77,0.12445895096673892],[122,54,78,0.1304989950992062],[122,54,79,0.13647099475621435],[122,55,64,0.046487047825327976],[122,55,65,0.054067475073056474],[122,55,66,0.06148510489367308],[122,55,67,0.06870839879207259],[122,55,68,0.07574811536941516],[122,55,69,0.08263916732233714],[122,55,70,0.08940953737425833],[122,55,71,0.09608066158487838],[122,55,72,0.10266842309664727],[122,55,73,0.1091840615792904],[122,55,74,0.11563499678541024],[122,55,75,0.12202556487932625],[122,55,76,0.1283576664478565],[122,55,77,0.1346313253436548],[122,55,78,0.14084515774543493],[122,55,79,0.14699675104518545],[122,56,64,0.05511325162755804],[122,56,65,0.06277735777955366],[122,56,66,0.0702794105487099],[122,56,67,0.07758660939206131],[122,56,68,0.0847107239934755],[122,56,69,0.09168906412157335],[122,56,70,0.09855157587814106],[122,56,71,0.10532120972525832],[122,56,72,0.11201494049566481],[122,56,73,0.11864470413956907],[122,56,74,0.1252182495286911],[122,56,75,0.1317399038865378],[122,56,76,0.1382112506598887],[122,56,77,0.14463171888817924],[122,56,78,0.15099908336140827],[122,56,79,0.15730987508358893],[122,57,64,0.06372593351795063],[122,57,65,0.07146713491428225],[122,57,66,0.07904572484150106],[122,57,67,0.08642790235429396],[122,57,68,0.09362645921037205],[122,57,69,0.1006809351037596],[122,57,70,0.10762313312153632],[122,57,71,0.11447747232923801],[122,57,72,0.12126202824983592],[122,57,73,0.12798949104804982],[122,57,74,0.1346680396610544],[122,57,75,0.141302130363735],[122,57,76,0.14789319850180588],[122,57,77,0.15444027236730504],[122,57,78,0.16094049842474653],[122,57,79,0.167389577322777],[122,58,64,0.07229849935360147],[122,58,65,0.08011032515488067],[122,58,66,0.08775777320943691],[122,58,67,0.09520630400225095],[122,58,68,0.10246972421622878],[122,58,69,0.10958960852289486],[122,58,70,0.11659948484701575],[122,58,71,0.12352517169885194],[122,58,72,0.13038583341552598],[122,58,73,0.13719495398939607],[122,58,74,0.14396122765729089],[122,58,75,0.15068936467028882],[122,58,76,0.1573808109078655],[122,58,77,0.16403438024064404],[122,58,78,0.1706467987792361],[122,58,79,0.1772131603729893],[122,59,64,0.08079934889186008],[122,59,65,0.08867545477178933],[122,59,66,0.09638433592417583],[122,59,67,0.10389096823638032],[122,59,68,0.11121014790679039],[122,59,69,0.11838526734305137],[122,59,70,0.12545142519661015],[122,59,71,0.1324357489607238],[122,59,72,0.1393584595125689],[122,59,73,0.14623385502187336],[122,59,74,0.15307121234488358],[122,59,75,0.1598756042669624],[122,59,76,0.16664863120006693],[122,59,77,0.1733890661807554],[122,59,78,0.18009341224682635],[122,59,79,0.18675637149639873],[122,60,64,0.08919255556891148],[122,60,65,0.09712673045857734],[122,60,66,0.10488990956173949],[122,60,67,0.11244682283891681],[122,60,68,0.11981321291669542],[122,60,69,0.12703405656197553],[122,60,70,0.13414585151699157],[122,60,71,0.14117692518730113],[122,60,72,0.148148503414107],[122,60,73,0.1550756992788308],[122,60,74,0.1619684200151884],[122,60,75,0.16883219034710503],[122,60,76,0.175668890812458],[122,60,77,0.1824774098708767],[122,60,78,0.18925420882522365],[122,60,79,0.1959937988111882],[122,61,64,0.09743860579574314],[122,61,65,0.10542477247237259],[122,61,66,0.11323542887844625],[122,61,67,0.12083527598390849],[122,61,68,0.12824094349515375],[122,61,69,0.1354987497455305],[122,61,70,0.14264640742284007],[122,61,71,0.14971331944815414],[122,61,72,0.15672164743467046],[122,61,73,0.16368730072298657],[122,61,74,0.17062084403492453],[122,61,75,0.17752832202973587],[122,61,76,0.18441199928682284],[122,61,77,0.19127101447605593],[122,61,78,0.19810194770696446],[122,61,79,0.2048993002717239],[122,62,64,0.10549522109714136],[122,62,65,0.11352743162178917],[122,62,66,0.1213790728270549],[122,62,67,0.1290150068773725],[122,62,68,0.13645267732898123],[122,62,69,0.14373949906199127],[122,62,70,0.15091420857444532],[122,62,71,0.1580071484008815],[122,62,72,0.16504133136404336],[122,62,73,0.1720334258221514],[122,62,74,0.17899465992987815],[122,62,75,0.1859316431715102],[122,62,76,0.1928471036637501],[122,62,77,0.19974053996120672],[122,62,78,0.20660878632651472],[122,62,79,0.213446490649343],[122,63,64,0.1133182689189215],[122,63,65,0.12139069602087695],[122,63,66,0.12927716071285672],[122,63,67,0.13694284660449063],[122,63,68,0.14440592746481146],[122,63,69,0.15171467503726613],[122,63,70,0.158908657451189],[122,63,71,0.16601901375266997],[122,63,72,0.17306951081418706],[122,63,73,0.18007752153524603],[122,63,74,0.18705492233568413],[122,63,75,0.19400890818239383],[122,63,76,0.20094272362788346],[122,63,77,0.2078563085733686],[122,63,78,0.21474685769661125],[122,63,79,0.22160929270566157],[122,64,64,0.1208627339465245],[122,64,65,0.12896965930199614],[122,64,66,0.1368851100241536],[122,64,67,0.14457472055932116],[122,64,68,0.15205730554825392],[122,64,69,0.15938176708910376],[122,64,70,0.16658831801435503],[122,64,71,0.17370874831399796],[122,64,72,0.1807674724194947],[122,64,73,0.1877824979569671],[122,64,74,0.19476631396047056],[122,64,75,0.20172669677417582],[122,64,76,0.20866743210874777],[122,64,77,0.2155889519502159],[122,64,78,0.22248888524582844],[122,64,79,0.22936252151091566],[122,65,64,0.12808376349114467],[122,65,65,0.13621956398745583],[122,65,66,0.14415846977022811],[122,65,67,0.15186666642010604],[122,65,68,0.15936352047115657],[122,65,69,0.16669835905430358],[122,65,70,0.1739118645878872],[122,65,71,0.18103633507689854],[122,65,72,0.18809672041365857],[122,65,73,0.19511158022070516],[122,65,74,0.2020939612195925],[122,65,75,0.2090521923462905],[122,65,76,0.21599059606927665],[122,65,77,0.22291011459826185],[122,65,78,0.2298088498964523],[122,65,79,0.23668251662744239],[122,66,64,0.13493778845391965],[122,66,65,0.14309692158951387],[122,66,66,0.1510540309474901],[122,66,67,0.1587759293405564],[122,66,68,0.16628245414690565],[122,66,69,0.17362318147502492],[122,66,70,0.18083910676304268],[122,66,71,0.18796290115471323],[122,66,72,0.19501993644011753],[122,66,73,0.2020292315241033],[122,66,74,0.20900431840045863],[122,66,75,0.21595402584600562],[122,66,76,0.22288317928330223],[122,66,77,0.22979321549149118],[122,66,78,0.2366827110687079],[122,66,79,0.24354782376644007],[122,67,64,0.14138372033641744],[122,67,65,0.14956070995777723],[122,67,66,0.15753101469723924],[122,67,67,0.16526213496453437],[122,67,68,0.17277431506574956],[122,67,69,0.1801172413382215],[122,67,70,0.187332091057573],[122,67,71,0.19445178734265722],[122,67,72,0.2015020133740475],[122,67,73,0.20850214806212164],[122,67,74,0.2154661211361978],[122,67,75,0.22240318586174812],[122,67,76,0.229318607826515],[122,67,77,0.23621426846639093],[122,67,78,0.24308918222490133],[122,67,79,0.24993992645609764],[122,68,64,0.14738422458616504],[122,68,65,0.155573648210905],[122,68,66,0.16355233853531875],[122,68,67,0.17128854068827998],[122,68,68,0.17880287009943455],[122,68,69,0.1861450297808917],[122,68,70,0.19335627988099827],[122,68,71,0.20046969388262104],[122,68,72,0.2075111637620544],[122,68,73,0.21450032648564402],[122,68,74,0.22145140980587222],[122,68,75,0.22837399555378585],[122,68,76,0.2352736988579345],[122,68,77,0.24215276194941626],[122,68,78,0.2490105614349479],[122,68,79,0.25584402813506923],[122,69,64,0.15290707586626695],[122,69,65,0.16110355502623236],[122,69,66,0.16908596660646927],[122,69,67,0.17682337130142572],[122,69,68,0.18433676085110634],[122,69,69,0.1916758141843108],[122,69,70,0.19888181429929286],[122,69,71,0.20598790892337843],[122,69,72,0.21302010928515874],[122,69,73,0.21999821011492482],[122,69,74,0.2269366288198966],[122,69,75,0.23384516201566086],[122,69,76,0.24072965782818254],[122,69,77,0.24759260260981042],[122,69,78,0.2544336209345981],[122,69,79,0.2612498879529791],[122,70,64,0.157940449419583],[122,70,65,0.16613900319682853],[122,70,66,0.17412091299840304],[122,70,67,0.18185615957528917],[122,70,68,0.18936613615983014],[122,70,69,0.1967004627575689],[122,70,70,0.20390038698864663],[122,70,71,0.21099905293179716],[122,70,72,0.21802249651515784],[122,70,73,0.22499056204211942],[122,70,74,0.23191773777738367],[122,70,75,0.23881390875313854],[122,70,76,0.24568502518805507],[122,70,77,0.252533685140719],[122,70,78,0.2593596302408505],[122,70,79,0.2661601535561987],[122,71,64,0.16251797349422534],[122,71,65,0.17071503448913292],[122,71,66,0.17869362703229832],[122,71,67,0.18642479480374116],[122,71,68,0.19393028324097955],[122,71,69,0.20125947491757928],[122,71,70,0.20845340561034742],[122,71,71,0.2155450457128231],[122,71,72,0.22256029372415034],[122,71,73,0.22951889072989065],[122,71,74,0.23643525377610972],[122,71,75,0.2433192262728926],[122,71,76,0.25017674379633437],[122,71,77,0.25701041388705326],[122,71,78,0.26382000866511035],[122,71,79,0.27060286929586436],[122,72,64,0.16667523903216364],[122,72,65,0.1748685756137142],[122,72,66,0.18284235195999335],[122,72,67,0.19056884454053896],[122,72,68,0.19807002790828349],[122,72,69,0.2053947339770315],[122,72,70,0.21258350003193008],[122,72,71,0.21966886761008333],[122,72,72,0.2266763740958955],[122,72,73,0.23362546504759013],[122,72,74,0.240530325133483],[122,72,75,0.2474006257917877],[122,72,76,0.2542421879610108],[122,72,77,0.26105755845735124],[122,72,78,0.2678464987977501],[122,72,79,0.2746063854822201],[122,73,64,0.17044197644479336],[122,73,65,0.17863037791415978],[122,73,66,0.18659882726858978],[122,73,67,0.1943210185594433],[122,73,68,0.20181897962891224],[122,73,69,0.2091405848219377],[122,73,70,0.2163255102648212],[122,73,71,0.22340555541720947],[122,73,72,0.23040563171902706],[122,73,73,0.23734467153814875],[122,73,74,0.2442364552782145],[122,73,75,0.2510903547419344],[122,73,76,0.25791199107921214],[122,73,77,0.26470380587945236],[122,73,78,0.271465544190301],[122,73,79,0.2781946484606574],[122,74,64,0.17384412558539147],[122,74,65,0.18202709900493114],[122,74,66,0.18999037575050956],[122,74,67,0.1977092558190642],[122,74,68,0.20520561004945304],[122,74,69,0.21252589093822208],[122,74,70,0.2197085053216826],[122,74,71,0.2267841638863123],[122,74,72,0.23377686506896894],[122,74,73,0.24070479862002744],[122,74,74,0.24758116667493282],[122,74,75,0.2544149204167352],[122,74,76,0.2612114106472186],[122,74,77,0.26797295081526823],[122,74,78,0.27469929127494785],[122,74,79,0.2813880037621913],[122,75,64,0.17690588531821755],[122,75,65,0.18508336486508478],[122,75,66,0.19304197195596864],[122,75,67,0.20075879374710817],[122,75,68,0.2082553148591673],[122,75,69,0.21557607601243278],[122,75,70,0.2227577882078294],[122,75,71,0.2298297153252558],[122,75,72,0.23681465097093216],[122,75,73,0.24372981411749606],[122,75,74,0.25058766137474275],[122,75,75,0.2573966139675042],[122,75,76,0.2641616977336567],[122,75,77,0.2708850946875966],[122,75,78,0.2775666049195753],[122,75,79,0.28420401781878935],[122,76,64,0.17965173982053756],[122,76,65,0.18782380951507582],[122,76,66,0.19577828915723003],[122,76,67,0.20349421698551415],[122,76,68,0.2109924561587118],[122,76,69,0.2183151473239585],[122,76,70,0.22549688434197337],[122,76,71,0.2325651346899627],[122,76,72,0.23954120659714026],[122,76,73,0.24644113385653763],[122,76,74,0.25327647615030785],[122,76,75,0.2600550329662791],[122,76,76,0.26678146942181835],[122,76,77,0.27345785254505706],[122,76,78,0.28008409679006935],[122,76,79,0.2866583177813827],[122,77,64,0.18210845860815827],[122,77,65,0.19027508925032366],[122,77,66,0.1982257217929507],[122,77,67,0.20594148256976366],[122,77,68,0.21344238232778068],[122,77,69,0.22076769796582302],[122,77,70,0.22794951051697204],[122,77,71,0.23501316739077652],[122,77,72,0.2419782368634631],[122,77,73,0.24885937887702136],[122,77,74,0.25566712999093666],[122,77,75,0.2624086005732574],[122,77,76,0.269088082558137],[122,77,77,0.27570756633292076],[122,77,78,0.2822671655461192],[122,77,79,0.28876544884784616],[122,78,64,0.18430706714374664],[122,78,65,0.1924678682660253],[122,78,66,0.20041438021414432],[122,78,67,0.20812991836162542],[122,78,68,0.21563342222438392],[122,78,69,0.2229608847645559],[122,78,70,0.23014152133999885],[122,78,71,0.23719827685738248],[122,78,72,0.2441487644145301],[122,78,73,0.25100611863598266],[122,78,74,0.25777976155967663],[122,78,75,0.26447607917825117],[122,78,76,0.27109900698140965],[122,78,77,0.2776505230838992],[122,78,78,0.28413104775384346],[122,78,79,0.290539748378004],[122,79,64,0.18626509636891256],[122,79,65,0.19441916417556415],[122,79,66,0.20236074866961457],[122,79,67,0.21007543153000832],[122,79,68,0.2175808890986272],[122,79,69,0.22490946736501258],[122,79,70,0.2320872096835013],[122,79,71,0.23913441191136414],[122,79,72,0.24606654290369243],[122,79,73,0.25289507782057286],[122,79,74,0.2596282421238478],[122,79,75,0.2662716643895269],[122,79,76,0.2728289363077104],[122,79,77,0.2793020784825498],[122,79,78,0.28569191087717266],[122,79,79,0.29199832697215417],[122,80,64,0.18793281004929357],[122,80,65,0.19607880317382295],[122,80,66,0.2040149583543176],[122,80,67,0.21172924687908548],[122,80,68,0.21923795462518958],[122,80,69,0.22656948170579078],[122,80,70,0.23374641267385607],[122,80,71,0.24078612702811047],[122,80,72,0.24770170456477886],[122,80,73,0.25450274129237593],[122,80,74,0.26119607379982157],[122,80,75,0.2677864102211463],[122,80,76,0.27427686618972064],[122,80,77,0.28066940441916466],[122,80,78,0.28696517678369726],[122,80,79,0.2931647679971093],[122,81,64,0.18925879434383738],[122,81,65,0.19739475126356024],[122,81,66,0.2053250715022765],[122,81,67,0.2130402814206955],[122,81,68,0.2205552173495436],[122,81,69,0.22789410736381877],[122,81,70,0.2350758181294342],[122,81,71,0.24211453228238788],[122,81,72,0.24902064688826375],[122,81,73,0.2558015797523037],[122,81,74,0.262462481465139],[122,81,75,0.26900685132804025],[122,81,76,0.27543705555672016],[122,81,77,0.2817547464121438],[122,81,78,0.28796118114724384],[122,81,79,0.29405743988930577],[122,82,64,0.19020833597710946],[122,82,65,0.19833146251947292],[122,82,66,0.20625518630357242],[122,82,67,0.21397277322949745],[122,82,68,0.22149761231593398],[122,82,69,0.22884961295692152],[122,82,70,0.2360437084282567],[122,82,71,0.24309061436778023],[122,82,72,0.24999773254273933],[122,82,73,0.25676995923009466],[122,82,74,0.2634103960623039],[122,82,75,0.2699209614576429],[122,82,76,0.2763029010168552],[122,82,77,0.2825571955246224],[122,82,78,0.2886848654417614],[122,82,79,0.29468717101151526],[122,83,64,0.19076094101600463],[122,83,65,0.19886745683840304],[122,83,66,0.20678310380665077],[122,83,67,0.21450407142866415],[122,83,68,0.2220423578864271],[122,83,69,0.22941349054007598],[122,83,70,0.23662830951620384],[122,83,71,0.24369382301036543],[122,83,72,0.25061413133798516],[122,83,73,0.25739125180293304],[122,83,74,0.2640258421695726],[122,83,75,0.2705178208006279],[122,83,76,0.276866881795802],[122,83,77,0.2830729037324274],[122,83,78,0.289136250866259],[122,83,79,0.29505796589704286],[122,84,64,0.1909080199126077],[122,84,65,0.19899306069584854],[122,84,66,0.20689815337251022],[122,84,67,0.214622578880786],[122,84,68,0.2221770480877697],[122,84,69,0.22957272724934139],[122,84,70,0.23681626801218714],[122,84,71,0.24391077568808983],[122,84,72,0.25085677028707876],[122,84,73,0.2576530440087517],[122,84,74,0.26429741287213],[122,84,75,0.270787360453295],[122,84,76,0.2771205719849384],[122,84,77,0.28329535735046474],[122,84,78,0.28931096177412025],[122,84,79,0.29516776326684635],[122,85,64,0.1906507444826455],[122,85,65,0.19870831648982426],[122,85,66,0.20659918210956935],[122,85,67,0.2143258527861273],[122,85,68,0.22189789538334356],[122,85,69,0.2293222187095321],[122,85,70,0.23660126047313249],[122,85,71,0.24373408419996356],[122,85,72,0.25071068027685506],[122,85,73,0.2573729924621366],[122,85,74,0.26401626046307536],[122,85,75,0.27063061426359336],[122,85,76,0.2770547204042514],[122,85,77,0.2832157081277524],[122,85,78,0.28920079753565275],[122,85,79,0.2950092340931085],[122,86,64,0.1899980828814947],[122,86,65,0.19802106650127113],[122,86,66,0.20589271421479627],[122,86,67,0.2136188689281871],[122,86,68,0.2212081293399582],[122,86,69,0.228663329324682],[122,86,70,0.23593166973158333],[122,86,71,0.2423674743769445],[122,86,72,0.248801634436532],[122,86,73,0.25522809567535654],[122,86,74,0.2616408664331885],[122,86,75,0.26803335170968257],[122,86,76,0.2743978060061857],[122,86,77,0.2807249066323153],[122,86,78,0.2870034488840189],[122,86,79,0.2932201642103037],[122,87,64,0.18896501816099662],[122,87,65,0.19694521702972045],[122,87,66,0.20479128568948324],[122,87,67,0.21251245486833237],[122,87,68,0.22011655624583046],[122,87,69,0.22760260418696662],[122,87,70,0.23416388356716356],[122,87,71,0.2403500476607699],[122,87,72,0.24653010773913667],[122,87,73,0.2527020639039957],[122,87,74,0.25886379976712465],[122,87,75,0.26501234654574435],[122,87,76,0.27114327240510455],[122,87,77,0.2772501989285849],[122,87,78,0.2833244462748459],[122,87,79,0.2893548082726731],[122,88,64,0.18757095554369188],[122,88,65,0.19549918782377856],[122,88,66,0.20331195947112898],[122,88,67,0.2110218969819647],[122,88,68,0.21863628434973958],[122,88,69,0.226131651703785],[122,88,70,0.2320718147627839],[122,88,71,0.23799768592613696],[122,88,72,0.24391073085620493],[122,88,73,0.2498131475547961],[122,88,74,0.2557069165137255],[122,88,75,0.26159298067487935],[122,88,76,0.2674705576357699],[122,88,77,0.27333658618627893],[122,88,78,0.2791853089200273],[122,88,79,0.28500799233343005],[122,89,64,0.18583832313581775],[122,89,65,0.19370455151758514],[122,89,66,0.20147502562576816],[122,89,67,0.2091657258478538],[122,89,68,0.2167836190318601],[122,89,69,0.22397601291169722],[122,89,70,0.22966193454824174],[122,89,71,0.23532059748285353],[122,89,72,0.24095765205613448],[122,89,73,0.2465795613301579],[122,89,74,0.25219254739882485],[122,89,75,0.2578016746693194],[122,89,76,0.26341007280955514],[122,89,77,0.2690183016832185],[122,89,78,0.2746238602285848],[122,89,79,0.28022084088364474],[122,90,64,0.1837913704137474],[122,90,65,0.19158486740392391],[122,90,66,0.19930289087494546],[122,90,67,0.2069646841471758],[122,90,68,0.21457713188140815],[122,90,69,0.22150990564784753],[122,90,70,0.22694024291388756],[122,90,71,0.23232865783609785],[122,90,72,0.23768488829469736],[122,90,73,0.2430196509087559],[122,90,74,0.2483434726394932],[122,90,75,0.25366566682381014],[122,90,76,0.2589934566201661],[122,90,77,0.2643312484513735],[122,90,78,0.2696800576389586],[122,90,79,0.2750370880454513],[122,91,64,0.18145516845869672],[122,91,65,0.1891647135203745],[122,91,66,0.1968191613866616],[122,91,67,0.20444088089774193],[122,91,68,0.21203690734341074],[122,91,69,0.21873590562406417],[122,91,70,0.22391279641538292],[122,91,71,0.22903179080084046],[122,91,72,0.2341065463098608],[122,91,73,0.23915194362486783],[122,91,74,0.24418279496869355],[122,91,75,0.2492127045797042],[122,91,76,0.25425308456764545],[122,91,77,0.2593123290205696],[122,91,78,0.26439514881789394],[122,91,79,0.2695020692007457],[122,92,64,0.17885481558054736],[122,92,65,0.18646892069586565],[122,92,66,0.1940479224391902],[122,92,67,0.20161713554118174],[122,92,68,0.2091839703060186],[122,92,69,0.21565718752051932],[122,92,70,0.22058607683249581],[122,92,71,0.22544020349602317],[122,92,72,0.2302369114356951],[122,92,73,0.23499508123412052],[122,92,74,0.23973370935858374],[122,92,75,0.2444706472283546],[122,92,76,0.2492215037449474],[122,92,77,0.2539987144594906],[122,92,78,0.25881078011018777],[122,92,79,0.2636616768328743],[122,93,64,0.17601485166133396],[122,93,65,0.18352201189905729],[122,93,66,0.19101321826846365],[122,93,67,0.19851651511424823],[122,93,68,0.20603989772865497],[122,93,69,0.2122778384639468],[122,93,70,0.21696719799133843],[122,93,71,0.22156447280014405],[122,93,72,0.22609040202813796],[122,93,73,0.23056763300263824],[122,93,74,0.2350191680501928],[122,93,75,0.23946697889160176],[122,93,76,0.2439307925866056],[122,93,77,0.24842705251891795],[122,93,78,0.2529680574452478],[122,93,79,0.2575612811758489],[122,94,64,0.17295888426084502],[122,94,65,0.18034784994563402],[122,94,66,0.18773873513233452],[122,94,67,0.1951620674685735],[122,94,68,0.20262661715864005],[122,94,69,0.20860299482801314],[122,94,70,0.21306394827343733],[122,94,71,0.21741548104079794],[122,94,72,0.22168138756113048],[122,94,73,0.225887787495612],[122,94,74,0.2300614396084855],[122,94,75,0.23422823086020753],[122,94,76,0.23841184503389098],[122,94,77,0.2426326147094248],[122,94,78,0.2469065599071919],[122,94,79,0.25124461624148153],[122,95,64,0.16970942926041113],[122,95,65,0.17696949635845172],[122,95,66,0.18424769036806257],[122,95,67,0.1915767532558282],[122,95,68,0.1989663947495429],[122,95,69,0.20463879989009054],[122,95,70,0.2088846665349427],[122,95,71,0.21300419886930685],[122,95,72,0.21702386860692502],[122,95,73,0.22097292157177542],[122,95,74,0.22488156082649086],[122,95,75,0.22877931244944444],[122,95,76,0.23269357862293952],[122,95,77,0.23664838217207387],[122,95,78,0.24066330617681542],[122,95,79,0.24475263177314072],[122,96,64,0.1662879685744001],[122,96,65,0.17340928393058028],[122,96,66,0.1805629299809434],[122,96,67,0.18778357916543234],[122,96,68,0.19508201517653623],[122,96,69,0.20039218008198456],[122,96,70,0.2044379493451422],[122,96,71,0.2083413134376996],[122,96,72,0.21213101705885293],[122,96,73,0.21583904521171593],[122,96,74,0.21949868039957776],[122,96,75,0.22314274960393932],[122,96,76,0.22680206605068604],[122,96,77,0.2305040702249517],[122,96,78,0.23427167405487112],[122,96,79,0.23812231165414502],[122,97,64,0.16271522723091286],[122,97,65,0.16968910531538872],[122,97,66,0.17670723708080718],[122,97,67,0.18380593468846868],[122,97,68,0.1909971556412426],[122,97,69,0.19587043776047888],[122,97,70,0.1997321876257033],[122,97,71,0.20343670014931498],[122,97,72,0.20701457508884039],[122,97,73,0.21050012092051965],[122,97,74,0.21392929338116407],[122,97,75,0.21733783055120007],[122,97,76,0.2207595898178531],[122,97,77,0.22422509149027042],[122,97,78,0.22776027327632525],[122,97,79,0.23138545927857646],[122,98,64,0.15901167191415627],[122,98,65,0.16583091976043085],[122,98,66,0.17270385327981871],[122,98,67,0.17966813448502805],[122,98,68,0.18673695597183348],[122,98,69,0.1910806585994102],[122,98,70,0.19477493093323842],[122,98,71,0.19829873639872858],[122,98,72,0.2016841114578939],[122,98,73,0.2049672565513618],[122,98,74,0.2081863655165058],[122,98,75,0.21137965786735502],[122,98,76,0.2145836195909906],[122,98,77,0.2178314575285022],[122,98,78,0.22115177182671883],[122,98,79,0.22456745037462747],[122,99,64,0.15519823286789222],[122,99,65,0.1618574799099077],[122,99,66,0.168577214976387],[122,99,67,0.17539616824957605],[122,99,68,0.18227801132240848],[122,99,69,0.18602893186637282],[122,99,70,0.1895720777757124],[122,99,71,0.1929334558491767],[122,99,72,0.19614613391314667],[122,99,73,0.1992477704936255],[122,99,74,0.20227834662885433],[122,99,75,0.20527810637641122],[122,99,76,0.2082857119633733],[122,99,77,0.2113366189241184],[122,99,78,0.21446167597083649],[122,99,79,0.21768595375167002],[122,100,64,0.1512972508836486],[122,100,65,0.15779328042540103],[122,100,66,0.16435390627769056],[122,100,67,0.17101865980184447],[122,100,68,0.17709482973729712],[122,100,69,0.18071938199734303],[122,100,70,0.18412689049118997],[122,100,71,0.18734354191951558],[122,100,72,0.19040305651321657],[122,100,73,0.19334412826029454],[122,100,74,0.1962080723055351],[122,100,75,0.19903668635918284],[122,100,76,0.20187033233079688],[122,100,77,0.2047462437853683],[122,100,78,0.2076970642039519],[122,100,79,0.21074962042544257],[122,101,64,0.14733132761567136],[122,101,65,0.15366318988056624],[122,101,66,0.16006107451645007],[122,101,67,0.16656506621179057],[122,101,68,0.1716467728297712],[122,101,69,0.17515639992790544],[122,101,70,0.1784424168400232],[122,101,71,0.18153091801127688],[122,101,72,0.18445593067115676],[122,101,73,0.18725678089775927],[122,101,74,0.18997567135906432],[122,101,75,0.19265547781681952],[122,101,76,0.19533777084623846],[122,101,77,0.19806106859295808],[122,101,78,0.20085932576106655],[122,101,79,0.20376066340746873],[122,102,64,0.14329756781303207],[122,102,65,0.1494642327304437],[122,102,66,0.15569576506487154],[122,102,67,0.162032566835092],[122,102,68,0.16597596708633908],[122,102,69,0.16938253688036803],[122,102,70,0.17256159209647806],[122,102,71,0.17553885341589237],[122,102,72,0.1783482861685474],[122,102,73,0.18102941195331884],[122,102,74,0.1836248355048291],[122,102,75,0.18617799409589392],[122,102,76,0.18873113612339923],[122,102,77,0.19132353488456047],[122,102,78,0.19398994291368557],[122,102,79,0.19675929162177203],[122,103,64,0.1391768230790722],[122,103,65,0.14517579571241995],[122,103,66,0.15123607887202845],[122,103,67,0.15658830525528586],[122,103,68,0.16014774259783543],[122,103,69,0.16346459533757499],[122,103,70,0.1665525077055492],[122,103,71,0.1694365084534889],[122,103,72,0.1721500839897479],[122,103,73,0.17473246075677787],[122,103,74,0.17722610492171742],[122,103,75,0.1796744468099537],[122,103,76,0.18211983686639913],[122,103,77,0.18460173928440557],[122,103,78,0.18715516880131214],[122,103,79,0.18980937552768973],[122,104,64,0.1349539997876106],[122,104,65,0.14078172264510683],[122,104,66,0.14666503508338025],[122,104,67,0.15074134604508593],[122,104,68,0.1542232915327884],[122,104,69,0.15746462050001525],[122,104,70,0.16047784678215662],[122,104,71,0.16328697433520525],[122,104,72,0.16592457031310204],[122,104,73,0.16842904745240975],[122,104,74,0.1708421638982872],[122,104,75,0.17320674796647523],[122,104,76,0.17556465469321694],[122,104,77,0.1779549603824129],[122,104,78,0.1804124007205229],[122,104,79,0.18296605739979643],[122,105,64,0.13062015387140882],[122,105,65,0.1362723779762896],[122,105,66,0.14119141659217904],[122,105,67,0.1448410207483966],[122,105,68,0.1482577676050255],[122,105,69,0.1514380691428216],[122,105,70,0.1543931287570886],[122,105,71,0.1571455983602069],[122,105,72,0.15972668542695448],[122,105,73,0.16217346726434503],[122,105,74,0.16452642060991665],[122,105,75,0.16682717403241992],[122,105,76,0.16911648997529083],[122,105,77,0.17143248264980446],[122,105,78,0.1738090773550605],[122,105,79,0.17627471618091325],[122,106,64,0.12617456445428282],[122,106,65,0.13156021524179518],[122,106,66,0.13534499647914583],[122,106,67,0.13893457722866956],[122,106,68,0.14229857454117845],[122,106,69,0.14543221506096732],[122,106,70,0.1483452393838896],[122,106,71,0.1510586434760038],[122,106,72,0.1536018551644933],[122,106,73,0.156010113452264],[122,106,74,0.1583220586312464],[122,106,75,0.16057754055591333],[122,106,76,0.1628156518214394],[122,106,77,0.16507299197386796],[122,106,78,0.16738216826623267],[122,106,79,0.1697705378696195],[122,107,64,0.12162716119621679],[122,107,65,0.1257928754479328],[122,107,66,0.12951941992677357],[122,107,67,0.1330597587709797],[122,107,68,0.13638332724314217],[122,107,69,0.1394842409885729],[122,107,70,0.14237066429675044],[122,107,71,0.14506167179128543],[122,107,72,0.14758452991932092],[122,107,73,0.1499721744937785],[122,107,74,0.1522608920331812],[122,107,75,0.15448821205393293],[122,107,76,0.15669101687661985],[122,107,77,0.15890387491457927],[122,107,78,0.1611576028231539],[122,107,79,0.1634780613064284],[122,108,64,0.11625448365402255],[122,108,65,0.12006219209030818],[122,108,66,0.12374036498834345],[122,108,67,0.12724230758894078],[122,108,68,0.13053748350225686],[122,108,69,0.13361901482670446],[122,108,70,0.1364934239603234],[122,108,71,0.13917764992253784],[122,108,72,0.14169646920111162],[122,108,73,0.14408010357163795],[122,108,74,0.14636202230385545],[122,108,75,0.14857694560981577],[122,108,76,0.15075905562636038],[122,108,77,0.15294042066178123],[122,108,78,0.1551496378773244],[122,108,79,0.15741069902279559],[122,109,64,0.11061858467753191],[122,109,65,0.11437859711295587],[122,109,66,0.11801864936745322],[122,109,67,0.12149307299024559],[122,109,68,0.12477159050292966],[122,109,69,0.12784649398140135],[122,109,70,0.13072265341777042],[122,109,71,0.13341471923162937],[122,109,72,0.13594471449068518],[122,109,73,0.13833980288251335],[122,109,74,0.14063023942604638],[122,109,75,0.14284751038903978],[122,109,76,0.14502266835230407],[122,109,77,0.14718486783607845],[122,109,78,0.14936010638169675],[122,109,79,0.1515701754668914],[122,110,64,0.10500026696325014],[122,110,65,0.10872297561555012],[122,110,66,0.11233550179169154],[122,110,67,0.11579331278919615],[122,110,68,0.11906664236928624],[122,110,69,0.12214716451641955],[122,110,70,0.12503814703587904],[122,110,71,0.1277518679504825],[122,110,72,0.13030740775091454],[122,110,73,0.1327286043068002],[122,110,74,0.13504217691455733],[122,110,75,0.1372760254780085],[122,110,76,0.1394577103349172],[122,110,77,0.1416131177599016],[122,110,78,0.14376531569451195],[122,110,79,0.1459336037825474],[122,111,64,0.09933503790923282],[122,111,65,0.10303102822984855],[122,111,66,0.1066267460657874],[122,111,67,0.11007891652498125],[122,111,68,0.11335856789079672],[122,111,69,0.11645701645370674],[122,111,70,0.11937603370955849],[122,111,71,0.1221255006447745],[122,111,72,0.12472142548470319],[122,111,73,0.12718410948855005],[122,111,74,0.12953646667648905],[122,111,75,0.13180250294125986],[122,111,76,0.13400595956087585],[122,111,77,0.13616912569364228],[122,111,78,0.13831182400417188],[122,111,79,0.1404505731430631],[122,112,64,0.09355753076591265],[122,112,65,0.09723620825274719],[122,112,66,0.10082523097395571],[122,112,67,0.10428277551722605],[122,112,68,0.1075809980205015],[122,112,69,0.11071115415799616],[122,112,70,0.11367364536249275],[122,112,71,0.1164759344712872],[122,112,72,0.1191308143060924],[122,112,73,0.12165480846764984],[122,112,74,0.12406670956492856],[122,112,75,0.1263862597159529],[122,112,76,0.12863297777260957],[122,112,77,0.13082513733756884],[122,112,78,0.13297889926009887],[122,112,79,0.13510760192228063],[122,113,64,0.08762645628388363],[122,113,65,0.09129546270900157],[122,113,66,0.0948866430760832],[122,113,67,0.0983598757582364],[122,113,68,0.10168881092689652],[122,113,69,0.10486496295477002],[122,113,70,0.10788750198036481],[122,113,71,0.11076145331477805],[122,113,72,0.11349624141673102],[122,113,73,0.11610434932902636],[122,113,74,0.1186000980594753],[122,113,75,0.12099855005996543],[122,113,76,0.12331454062676597],[122,113,77,0.12556184071542245],[122,113,78,0.12775245433677793],[122,113,79,0.12989605337958235],[122,114,64,0.08152303911006623],[122,114,65,0.08518804123995058],[122,114,66,0.08878852143294447],[122,114,67,0.09228633599002421],[122,114,68,0.09565700415069397],[122,114,69,0.09889262703374],[122,114,70,0.10199129472958027],[122,114,71,0.10495558934810721],[122,114,72,0.10779142665085978],[122,114,73,0.11050699577150447],[122,114,74,0.11311180070761154],[122,114,75,0.11561580699296356],[122,114,76,0.1180286966854896],[122,114,77,0.12035923453312986],[122,114,78,0.12261474791023774],[122,114,79,0.12480072285299237],[122,115,64,0.07524736274957324],[122,115,65,0.07891191960888734],[122,115,66,0.08252679918018911],[122,115,67,0.08605611143580587],[122,115,68,0.08947760715691777],[122,115,69,0.0927842978636372],[122,115,70,0.09597335566635203],[122,115,71,0.09904493613717509],[122,115,72,0.1020013362929313],[122,115,73,0.1048462329751483],[122,115,74,0.10758400445766414],[122,115,75,0.11021913789561542],[122,115,76,0.1127557250132991],[122,115,77,0.11519704821412928],[122,115,78,0.11754525908507699],[122,115,79,0.11980115106262197],[122,116,64,0.06881490667061607],[122,116,65,0.07248041082449254],[122,116,66,0.07611252570782559],[122,116,67,0.07967786845498058],[122,116,68,0.08315675255315888],[122,116,69,0.08654340670648351],[122,116,70,0.08983425497446487],[122,116,71,0.093027071033862],[122,116,72,0.0961204666284542],[122,116,73,0.09911344270290026],[122,116,74,0.1020050051599615],[122,116,75,0.10479384702076275],[122,116,76,0.10747809860984991],[122,116,77,0.11005514723169316],[122,116,78,0.11252152765408366],[122,116,79,0.11487288456821367],[122,117,64,0.062253278941677107],[122,117,65,0.06591896728864634],[122,117,66,0.0695687728227404],[122,117,67,0.07317203341707693],[122,117,68,0.0767119091295395],[122,117,69,0.0801841241870687],[122,117,70,0.08358452842757552],[122,117,71,0.08690858923456446],[122,117,72,0.09015121923231437],[122,117,73,0.09330664921722079],[122,117,74,0.0963683473494314],[122,117,75,0.09932898552594688],[122,117,76,0.10218045375634596],[122,117,77,0.1049139232659962],[122,117,78,0.1075199589598435],[122,117,79,0.10998868179385926],[122,118,64,0.055599147527698296],[122,118,65,0.05926217711660251],[122,118,66,0.06292772802081474],[122,118,67,0.06656801885012006],[122,118,68,0.07016927965058248],[122,118,69,0.07372896966633959],[122,118,70,0.07724253758670424],[122,118,71,0.08070325172168871],[122,118,72,0.08410236986630681],[122,118,73,0.08742933748991144],[122,118,74,0.09067201435208276],[122,118,75,0.09381692959877339],[122,118,76,0.09684956534886814],[122,118,77,0.09975466874254547],[122,118,78,0.10251659238928514],[122,118,79,0.10511966312595095],[122,119,64,0.04889537312571445],[122,119,65,0.052550957534748866],[122,119,66,0.05622797775902841],[122,119,67,0.05990162969269453],[122,119,68,0.06356136611652871],[122,119,69,0.06720657297179201],[122,119,70,0.070832465068316],[122,119,71,0.0744302491536114],[122,119,72,0.07798763273184998],[122,119,73,0.08148934508583983],[122,119,74,0.08491766969038472],[122,119,75,0.0882529872103612],[122,119,76,0.09404658763812357],[122,119,77,0.09971841259251842],[122,119,78,0.10502304682416869],[122,119,79,0.10870976378767644],[122,120,64,0.04218834571632306],[122,120,65,0.04582994755683995],[122,120,66,0.04951198291621544],[122,120,67,0.05321265178311275],[122,120,68,0.056924704525081464],[122,120,69,0.06064959036408728],[122,120,70,0.06615214416532977],[122,120,71,0.07255808827234317],[122,120,72,0.07893832530404679],[122,120,73,0.08527495876961125],[122,120,74,0.09154709880432463],[122,120,75,0.0977316744509951],[122,120,76,0.10380423983359095],[122,120,77,0.10847387615436536],[122,120,78,0.11195653059035993],[122,120,79,0.11538550633707959],[122,121,64,0.03552551147542689],[122,121,65,0.041721296991097494],[122,121,66,0.048212905999849315],[122,121,67,0.05473228346359727],[122,121,68,0.061275449846623635],[122,121,69,0.06784638934887594],[122,121,70,0.07444109273339977],[122,121,71,0.0810483276599402],[122,121,72,0.08765077374388384],[122,121,73,0.09422614252696312],[122,121,74,0.10074827981758429],[122,121,75,0.10718824795882606],[122,121,76,0.11245596076201653],[122,121,77,0.11572822862206938],[122,121,78,0.11893645221668508],[122,121,79,0.12210698182161997],[122,122,64,0.043089522756517264],[122,122,65,0.04957702509988728],[122,122,66,0.05612846213549691],[122,122,67,0.06272731438711657],[122,122,68,0.06937274270885381],[122,122,69,0.07607082293947696],[122,122,70,0.08281766809859012],[122,122,71,0.08960048135464968],[122,122,72,0.09639898414808735],[122,122,73,0.10318681670326856],[122,122,74,0.10993290760148858],[122,122,75,0.11660280922846838],[122,122,76,0.1200275528830421],[122,122,77,0.12302439483893687],[122,122,78,0.12596585821540007],[122,122,79,0.1288839541123892],[122,123,64,0.051152397479141194],[122,123,65,0.05766189695503669],[122,123,66,0.06425090617175463],[122,123,67,0.07090550383927868],[122,123,68,0.07762782510729672],[122,123,69,0.0844259909682031],[122,123,70,0.09129633845322206],[122,123,71,0.09822472939709584],[122,123,72,0.10518824541894335],[122,123,73,0.11215684427893538],[122,123,74,0.11909497356909951],[122,123,75,0.12479585388879866],[122,123,76,0.1276195345833059],[122,123,77,0.13035661089531608],[122,123,78,0.13304553452488263],[122,123,79,0.13572360214036006],[122,124,64,0.05948689847035053],[122,124,65,0.06599694260274447],[122,124,66,0.07260040258380332],[122,124,67,0.07928570889867526],[122,124,68,0.08605772929612221],[122,124,69,0.09292652097097223],[122,124,70,0.09988872021660647],[122,124,71,0.10692907628780433],[122,124,72,0.11402238272010538],[122,124,73,0.12113536060736226],[122,124,74,0.12822848916509635],[122,124,75,0.1326334034877384],[122,124,76,0.13521805980563695],[122,124,77,0.13771693427036322],[122,124,78,0.14017345500466857],[122,124,79,0.14262971329061552],[122,125,64,0.06810714797432518],[122,125,65,0.07459622219037731],[122,125,66,0.08119062410747414],[122,125,67,0.0878808342223315],[122,125,68,0.09467414438094138],[122,125,69,0.10158238151532425],[122,125,70,0.10860252887881405],[122,125,71,0.11571845139756212],[122,125,72,0.12290302945491197],[122,125,73,0.13012023684994387],[122,125,74,0.13732715771900214],[122,125,75,0.14043481052690748],[122,125,76,0.1428077400598451],[122,125,77,0.14509496793269508],[122,125,78,0.14734426876598994],[122,125,79,0.14960193806980143],[122,126,64,0.07701858176498089],[122,126,65,0.08346556516375252],[122,126,66,0.09002753150494121],[122,126,67,0.09669666469753582],[122,126,68,0.10348231755665264],[122,126,69,0.1103978709140937],[122,126,70,0.11744067579440369],[122,126,71,0.12459393483970574],[122,126,72,0.1318290024695107],[122,126,73,0.1391076230504309],[122,126,74,0.14584973137584706],[122,126,75,0.14817940039971472],[122,126,76,0.15037159705280842],[122,126,77,0.15247760134335347],[122,126,78,0.15454882832877676],[122,126,79,0.15663510836090963],[122,127,64,0.08621687412288263],[122,127,65,0.09260152149724717],[122,127,66,0.09910835830659098],[122,127,67,0.10573089292484947],[122,127,68,0.11248013699608997],[122,127,69,0.11937077161811951],[122,127,70,0.12640051218911516],[122,127,71,0.13355210993485717],[122,127,72,0.14079578144840058],[122,127,73,0.14809157162432146],[122,127,74,0.15366013272834755],[122,127,75,0.1558461772387253],[122,127,76,0.15789100747346987],[122,127,77,0.15984876858824548],[122,127,78,0.16177375912136893],[122,127,79,0.16371862007614707],[122,128,64,0.09568708037907393],[122,128,65,0.10199052631213067],[122,128,66,0.10842080189793264],[122,128,67,0.11497234289096006],[122,128,68,0.12165739771182525],[122,128,69,0.1284916715464463],[122,128,70,0.13547322154559283],[122,128,71,0.1425845433130606],[122,128,72,0.1497950933979781],[122,128,73,0.15706374198247267],[122,128,74,0.16133782515165002],[122,128,75,0.16341391621479592],[122,128,76,0.16534563988145276],[122,128,77,0.16718922384665524],[122,128,78,0.16900107079792698],[122,128,79,0.17083588095682414],[122,129,64,0.10540299824197129],[122,129,65,0.11160827913128969],[122,129,66,0.11794242221310754],[122,129,67,0.12440039108435409],[122,129,68,0.13099525161135753],[122,129,69,0.13774345351605272],[122,129,70,0.1446433614457227],[122,129,71,0.15167739361993574],[122,129,72,0.15881460304760867],[122,129,73,0.16601318695627604],[122,129,74,0.16886230808146352],[122,129,75,0.17086122210320098],[122,129,76,0.17271338364792657],[122,129,77,0.1744763343830848],[122,129,78,0.1762078108095638],[122,129,79,0.17796382421063447],[122,130,64,0.11532674903115857],[122,130,65,0.12141933892431135],[122,130,66,0.12764024920169056],[122,130,67,0.13398458621276133],[122,130,68,0.14046584287455496],[122,130,69,0.1471009538464449],[122,130,70,0.15388855586724184],[122,130,71,0.16081114972246174],[122,130,72,0.1678377099377357],[122,130,73,0.17405855660541203],[122,130,74,0.1762146086564779],[122,130,75,0.178166553858372],[122,130,76,0.17997026989742365],[122,130,77,0.18168389123165604],[122,130,78,0.1833657606286285],[122,130,79,0.185072488621482],[122,131,64,0.12540857986175302],[122,131,65,0.1313769360143836],[122,131,66,0.1374706001516769],[122,131,67,0.14368446859760511],[122,131,68,0.1500321297002092],[122,131,69,0.15653079113603927],[122,131,70,0.1631793388594866],[122,131,71,0.16996049924487833],[122,131,72,0.17684345290910541],[122,131,73,0.1812419355493072],[122,131,74,0.18337734084731383],[122,131,75,0.185308214953511],[122,131,76,0.18709038439788822],[122,131,77,0.1887819377239241],[122,131,78,0.190441174989708],[122,131,79,0.19212466571346243],[122,132,64,0.13558678540435634],[122,132,65,0.1414228913087428],[122,132,66,0.1473789892982324],[122,132,67,0.15344946364933404],[122,132,68,0.15964775873029113],[122,132,69,0.16599122340215725],[122,132,70,0.17247899978590092],[122,132,71,0.17909416992773017],[122,132,72,0.18580635734051956],[122,132,73,0.1882018442518816],[122,132,74,0.19033488056270598],[122,132,75,0.19226448963661655],[122,132,76,0.1940459548856265],[122,132,77,0.19573679890234702],[122,132,78,0.1973947458077993],[122,132,79,0.19907579220471405],[122,133,64,0.14577261402812236],[122,133,65,0.1514710996642546],[122,133,66,0.1572822014827003],[122,133,67,0.16319953908049378],[122,133,68,0.16923628570409796],[122,133,69,0.17540991865317965],[122,133,70,0.18171991207511096],[122,133,71,0.18814985786355012],[122,133,72,0.19256627737646692],[122,133,73,0.19495976642101256],[122,133,74,0.19710202864369644],[122,133,75,0.19904310404480097],[122,133,76,0.20083734963907593],[122,133,77,0.20254132095045474],[122,133,78,0.20421175733044342],[122,133,79,0.20590367600258225],[122,134,64,0.15584645651080925],[122,134,65,0.16140198002268277],[122,134,66,0.16706100716761985],[122,134,67,0.17281616872849337],[122,134,68,0.17868033055650087],[122,134,69,0.18467121125939331],[122,134,70,0.19078879525292325],[122,134,71,0.19648900463751615],[122,134,72,0.19918413689629635],[122,134,73,0.2015893950625377],[122,134,74,0.2037471872620865],[122,134,75,0.2057063548256726],[122,134,76,0.20751998686017195],[122,134,77,0.20924333326884706],[122,134,78,0.21093182140566458],[122,134,79,0.21263918122224992],[122,135,64,0.1657016360280107],[122,135,65,0.17110874410246188],[122,135,66,0.17660884387893308],[122,135,67,0.182193398980284],[122,135,68,0.18787500550400138],[122,135,69,0.19367182535739455],[122,135,70,0.1995846040486737],[122,135,71,0.20303178746353667],[122,135,72,0.20573521532262762],[122,135,73,0.20815387907917485],[122,135,74,0.21032877041541975],[122,135,75,0.2123072173790022],[122,135,76,0.21414073902151715],[122,135,77,0.21588299770795105],[122,135,78,0.21758785421041188],[122,135,79,0.219307530379595],[122,136,64,0.17524977453881596],[122,136,65,0.18050306592629628],[122,136,66,0.18583777079790256],[122,136,67,0.19124407013290162],[122,136,68,0.1967343879189014],[122,136,69,0.20232758535207807],[122,136,70,0.2065376224143063],[122,136,71,0.20955843776527575],[122,136,72,0.21226843585363409],[122,136,73,0.21469844488033496],[122,136,74,0.2168877389556557],[122,136,75,0.21888184983791342],[122,136,76,0.2207304693626343],[122,136,77,0.22248544787895758],[122,136,78,0.22419889370969948],[122,136,79,0.22592137834012238],[122,137,64,0.1844211214446564],[122,137,65,0.18951532829771314],[122,137,66,0.19467861903955733],[122,137,67,0.19989985021248993],[122,137,68,0.2051914177821768],[122,137,69,0.20974584440926963],[122,137,70,0.2130862007449479],[122,137,71,0.21610321653431921],[122,137,72,0.21881528732615016],[122,137,73,0.2212513597428019],[122,137,74,0.22344871799408175],[122,137,75,0.225450853027168],[122,137,76,0.2273054197724656],[122,137,77,0.22906228766770909],[122,137,78,0.23077168935286932],[122,137,79,0.23248247212787052],[122,138,64,0.1931652786740719],[122,138,65,0.198095262136898],[122,138,66,0.20308152777708585],[122,138,67,0.20811164415957858],[122,138,68,0.2127082909919812],[122,138,69,0.21635200986304517],[122,138,70,0.21967563565314754],[122,138,71,0.22268295209495736],[122,138,72,0.22539036157672593],[122,138,73,0.22782466662218884],[122,138,74,0.2300209249043735],[122,138,75,0.23202038332744102],[122,138,76,0.2338684964590928],[122,138,77,0.23561303433122294],[122,138,78,0.23730228434970996],[122,138,79,0.23898335176686034],[122,139,64,0.20145232471185687],[122,139,65,0.20621298121233136],[122,139,66,0.2110168687524249],[122,139,67,0.2154824199555138],[122,139,68,0.21939375151530296],[122,139,69,0.2230061051725808],[122,139,70,0.2263066300391527],[122,139,71,0.2292970823306134],[122,139,72,0.23199162458943431],[122,139,73,0.23441468839382618],[122,139,74,0.2365989060843993],[122,139,75,0.23858311681769004],[122,139,76,0.2404104520188064],[122,139,77,0.2421265050557045],[122,139,78,0.243777589696159],[122,139,79,0.24540909163664015],[122,140,64,0.20915797460120425],[122,140,65,0.21376606116696367],[122,140,66,0.218127937468686],[122,140,67,0.22225115977773086],[122,140,68,0.22611559997184955],[122,140,69,0.22969059980877643],[122,140,70,0.23296136180496646],[122,140,71,0.2359273969039283],[122,140,72,0.23860041933546927],[122,140,73,0.2410022995839318],[122,140,74,0.24316308072057943],[122,140,75,0.2451190631490475],[122,140,76,0.246910962593064],[122,140,77,0.2485821459233546],[122,140,78,0.25017694917684846],[122,140,79,0.2517390818672341],[122,141,64,0.21614969103665377],[122,141,65,0.22067370490690041],[122,141,66,0.22496183212546117],[122,141,67,0.22902258300625647],[122,141,68,0.2328352923647025],[122,141,69,0.23636761820987628],[122,141,70,0.23960264919503946],[122,141,71,0.242537477302496],[122,141,72,0.24518119827352192],[122,141,73,0.24755296372176216],[122,141,74,0.24968008987183937],[122,141,75,0.25159622767752676],[122,141,76,0.25333959887344626],[122,141,77,0.2549513023015594],[122,141,78,0.25647369462975755],[122,141,79,0.2579488493456787],[122,142,64,0.2230902687896738],[122,142,65,0.22752706235342343],[122,142,66,0.23173847798035602],[122,142,67,0.23573372047746965],[122,142,68,0.23949143124093863],[122,142,69,0.2429774982902952],[122,142,70,0.2461727842553951],[122,142,71,0.2490718325798944],[122,142,72,0.251680983527652],[122,142,73,0.25401653449929285],[122,142,74,0.2561029492518245],[122,142,75,0.25797112044760806],[122,142,76,0.25965668977983775],[122,142,77,0.26119842973057716],[122,142,78,0.2626366908152141],[122,142,79,0.2640119179548519],[122,143,64,0.22989771470733528],[122,143,65,0.23424549048843613],[122,143,66,0.23827058240181742],[122,143,67,0.24225866693812542],[122,143,68,0.2460086081789342],[122,143,69,0.24944705992964888],[122,143,70,0.25260114774593173],[122,143,71,0.2554627751989517],[122,143,72,0.2580354145550486],[122,143,73,0.26033238492286864],[122,143,74,0.2623751706998705],[122,143,75,0.26419178438315427],[122,143,76,0.265815177653408],[122,143,77,0.2672817044730288],[122,143,78,0.26862963976084175],[122,143,79,0.26989775701710883],[122,144,64,0.2365245040613838],[122,144,65,0.24034867329254644],[122,144,66,0.24414808596185014],[122,144,67,0.2479070236811848],[122,144,68,0.251642770603128],[122,144,69,0.2553875579250669],[122,144,70,0.25883944531847436],[122,144,71,0.2616619485544674],[122,144,72,0.26419616598176526],[122,144,73,0.266452334140664],[122,144,74,0.2684488462444364],[122,144,75,0.27021072345347447],[122,144,76,0.27176812412890317],[122,144,77,0.27315489446036323],[122,144,78,0.2744071637094091],[122,144,79,0.2755619871466723],[122,145,64,0.24250502946832947],[122,145,65,0.24612241618795475],[122,145,66,0.24970074398271422],[122,145,67,0.25322462995106376],[122,145,68,0.25671265038213403],[122,145,69,0.26019898560878885],[122,145,70,0.2637048747518372],[122,145,71,0.2672394803697507],[122,145,72,0.27012328662627555],[122,145,73,0.2723353987420789],[122,145,74,0.27428202972994303],[122,145,75,0.27598512384161095],[122,145,76,0.2774719656273063],[122,145,77,0.2787738240637422],[122,145,78,0.2799246292532848],[122,145,79,0.28095968444869784],[122,146,64,0.248180210554932],[122,146,65,0.25158646206646407],[122,146,66,0.25493896846852154],[122,146,67,0.2582232955028838],[122,146,68,0.2614594294984657],[122,146,69,0.2646834072273436],[122,146,70,0.2679189602858906],[122,146,71,0.27117821853873264],[122,146,72,0.27446304012225914],[122,146,73,0.277766335514625],[122,146,74,0.279836001956172],[122,146,75,0.2814753945558608],[122,146,76,0.28288639317144504],[122,146,77,0.2840976446704917],[122,146,78,0.28514084660523015],[122,146,79,0.2860495316492696],[122,147,64,0.2535557584076435],[122,147,65,0.25674750937664875],[122,147,66,0.25987076140144305],[122,147,67,0.2629124752812772],[122,147,68,0.2658941522757934],[122,147,69,0.268853553599968],[122,147,70,0.2718168141187268],[122,147,71,0.2747989811124972],[122,147,72,0.2778051759476438],[122,147,73,0.2808317615138148],[122,147,74,0.28386751311577524],[122,147,75,0.2866452386061633],[122,147,76,0.2879744345098562],[122,147,77,0.28908891531743575],[122,147,78,0.2900181354889445],[122,147,79,0.2907938555478992],[122,148,64,0.2586350735031035],[122,148,65,0.2616101414458728],[122,148,66,0.2645020276051546],[122,148,67,0.2672995429878981],[122,148,68,0.27002579166725904],[122,148,69,0.27272009098963834],[122,148,70,0.27541084900215246],[122,148,71,0.2781159369878335],[122,148,72,0.28084367516472936],[122,148,73,0.2835938365795125],[122,148,74,0.28635866743581795],[122,148,75,0.2891239221047667],[122,148,76,0.2918699110813553],[122,148,77,0.2937136942830459],[122,148,78,0.2945224056045023],[122,148,79,0.295158683647196],[122,149,64,0.26341977803399075],[122,149,65,0.2661771433597259],[122,149,66,0.2688368603677296],[122,149,67,0.2713900398732431],[122,149,68,0.2738614565215857],[122,149,69,0.27629178376894825],[122,149,70,0.27871153486802025],[122,149,71,0.28114126969036657],[122,149,72,0.2835923986861081],[122,149,73,0.2860680180602472],[122,149,74,0.2885637749798435],[122,149,75,0.2910687616026462],[122,149,76,0.29356643670250765],[122,149,77,0.2960355736605537],[122,149,78,0.29845123359425685],[122,149,79,0.2991138201514757],[122,150,64,0.26791002745032627],[122,150,65,0.2704497894910229],[122,150,66,0.272877799631464],[122,150,67,0.27518789856681525],[122,150,68,0.2774065768850572],[122,150,69,0.27957563830067744],[122,150,70,0.2817274999027634],[122,150,71,0.283885235912492],[122,150,72,0.2860631962635738],[122,150,73,0.2882676698597912],[122,150,74,0.29049759191219415],[122,150,75,0.2927452947037508],[122,150,76,0.29499730108206645],[122,150,77,0.29723515994205635],[122,150,78,0.29943632293098105],[122,150,79,0.3015750615887158],[122,151,64,0.2721047906689324],[122,151,65,0.2744281014906698],[122,151,66,0.27662606256407557],[122,151,67,0.27869564176589257],[122,151,68,0.28066506716927825],[122,151,69,0.2825770278749807],[122,151,70,0.2844656157474026],[122,151,71,0.2863562108648586],[122,151,72,0.2882659133862023],[122,151,73,0.2902040338201224],[122,151,74,0.29217264169482654],[122,151,75,0.2941671725399242],[122,151,76,0.29617709301330253],[122,151,77,0.2981866239347083],[122,151,78,0.3001755209256796],[122,151,79,0.30211991230333657],[122,152,64,0.2760020987699465],[122,152,65,0.27811107656000705],[122,152,66,0.2800817463326948],[122,152,67,0.28191455560959455],[122,152,68,0.2836394670202897],[122,152,69,0.2852997985497911],[122,152,70,0.28693106668137663],[122,152,71,0.2885607203109605],[122,152,72,0.2902083869644285],[122,152,73,0.2918861912248055],[122,152,74,0.29359914596092496],[122,152,75,0.29534561683271965],[122,152,76,0.29711786043785],[122,152,77,0.2989026363614409],[122,152,78,0.30068189329650263],[122,152,79,0.3024335293183535],[122,153,64,0.27959926200346624],[122,153,65,0.2814968858284861],[122,153,66,0.2832440029061233],[122,153,67,0.2848448375686005],[122,153,68,0.2863310597276793],[122,153,69,0.28774635574327795],[122,153,70,0.2891274026497828],[122,153,71,0.2905034591544491],[122,153,72,0.2918964296779183],[122,153,73,0.2933210143058667],[122,153,74,0.29478494582816867],[122,153,75,0.29628931489562543],[122,153,76,0.29782898418342324],[122,153,77,0.2993930923165722],[122,153,78,0.30096564818714316],[122,153,79,0.3025262161776462],[122,154,64,0.2828930549322876],[122,154,65,0.28458304266363726],[122,154,66,0.2861111857138637],[122,154,67,0.2874857186836921],[122,154,68,0.2887399680147679],[122,154,69,0.28991773142903643],[122,154,70,0.2910565759946159],[122,154,71,0.2921872964487892],[122,154,72,0.2933338028639153],[122,154,73,0.2945131076349887],[122,154,74,0.2957354135328435],[122,154,75,0.2970043043921601],[122,154,76,0.2983170398333458],[122,154,77,0.29966495525376347],[122,154,78,0.3010339681684234],[122,154,79,0.3024051918348504],[122,155,64,0.2858798695379416],[122,155,65,0.2873665407418713],[122,155,66,0.2886809679921029],[122,155,67,0.28983555998791855],[122,155,68,0.2908652270523915],[122,155,69,0.2918136317857395],[122,155,70,0.2927189617510289],[122,155,71,0.2936132666984642],[122,155,72,0.2945221778213536],[122,155,73,0.2954647392774027],[122,155,74,0.29645335426250485],[122,155,75,0.29749384772247045],[122,155,76,0.29858564759048195],[122,155,77,0.2997220862464523],[122,155,78,0.30089082371083453],[122,155,79,0.30207439391175517],[122,156,64,0.28855583611594166],[122,156,65,0.2898439617078289],[122,156,66,0.290950432646215],[122,156,67,0.2918919229466952],[122,156,68,0.29270483453832413],[122,156,69,0.2934324651523086],[122,156,70,0.29411336136853267],[122,156,71,0.2947805473191803],[122,156,72,0.2954610854033957],[122,156,73,0.29617576158323927],[122,156,74,0.2969388980602899],[122,156,75,0.29775829590552827],[122,156,76,0.29863530999188465],[122,156,77,0.2995650583611607],[122,156,78,0.30053676794712453],[122,156,79,0.3015342583766009],[122,157,64,0.2909169117833374],[122,157,65,0.2920115522477876],[122,157,66,0.2929161334574952],[122,157,67,0.2936516137485809],[122,157,68,0.29425577768304617],[122,157,69,0.29477135013835726],[122,157,70,0.2952369897155236],[122,157,71,0.2956864221224913],[122,157,72,0.2961478537683196],[122,157,73,0.29664352148748535],[122,157,74,0.2971893816693705],[122,157,75,0.2977949418184564],[122,157,76,0.2984632373240782],[122,157,77,0.29919095597708445],[122,157,78,0.29996871253677604],[122,157,79,0.30078147542745],[122,158,64,0.292958936417224],[122,158,65,0.29386527039890814],[122,158,66,0.29457412745861433],[122,158,67,0.29511070127673494],[122,158,68,0.29551403694023737],[122,158,69,0.2958261037375736],[122,158,70,0.2960854452234221],[122,158,71,0.29632623068785613],[122,158,72,0.2965775341556861],[122,158,73,0.2968627601858878],[122,158,74,0.2971992201813056],[122,158,75,0.29759786264879384],[122,158,76,0.2980631605822386],[122,158,77,0.29859315887795534],[122,158,78,0.2991796844363259],[122,158,79,0.2998087213578079],[122,159,64,0.29467765583590194],[122,159,65,0.2954008009100178],[122,159,66,0.2959199782968183],[122,159,67,0.29626450858622516],[122,159,68,0.29647456631618035],[122,159,69,0.2965912092879706],[122,159,70,0.29665266302315224],[122,159,71,0.2966933034814634],[122,159,72,0.29674281455059603],[122,159,73,0.29682550204932695],[122,159,74,0.296959768346314],[122,159,75,0.2971577514087486],[122,159,76,0.2974251318087485],[122,159,77,0.2977611109334636],[122,159,78,0.29815856337006913],[122,159,79,0.29860436617188707],[122,160,64,0.29606871202592544],[122,160,65,0.29661353946215074],[122,160,66,0.2969487303971985],[122,160,67,0.29710757770647356],[122,160,68,0.2971312500872067],[122,160,69,0.2970597641185578],[122,160,70,0.2969308509227151],[122,160,71,0.2967788825772299],[122,160,72,0.2966339210946334],[122,160,73,0.2965209326343481],[122,160,74,0.29645917139778666],[122,160,75,0.29646173735374654],[122,160,76,0.2965353116387497],[122,160,77,0.2966800731785833],[122,160,78,0.2968897997858101],[122,160,79,0.2971521567063466],[122,161,64,0.29712760020816964],[122,161,65,0.297498545548076],[122,161,66,0.29765485373027123],[122,161,67,0.2976336075810336],[122,161,68,0.2974768357482681],[122,161,69,0.2972234067168331],[122,161,70,0.29691040807005964],[122,161,71,0.2965720278310815],[122,161,72,0.29623850709764943],[122,161,73,0.2959352656425913],[122,161,74,0.2956822052375821],[122,161,75,0.29549319514073563],[122,161,76,0.29537574387225307],[122,161,77,0.29533086108985035],[122,161,78,0.29535311306986983],[122,161,79,0.295430875003921],[122,162,64,0.29784959252335963],[122,162,65,0.2980504637985877],[122,162,66,0.29803215897769275],[122,162,67,0.2978353649476332],[122,162,68,0.29750284300770946],[122,162,69,0.2970722232445939],[122,162,70,0.2965798261393749],[122,162,71,0.29605950835397593],[122,162,72,0.2955415294988957],[122,162,73,0.29505159867580194],[122,162,74,0.294610105821805],[122,162,75,0.2942315425537803],[122,162,76,0.2939241168831505],[122,162,77,0.29368956584702216],[122,162,78,0.2935231697835553],[122,162,79,0.2934139716710889],[122,163,64,0.29822962810388887],[122,163,65,0.2982634135310826],[122,163,66,0.29807368287886743],[122,163,67,0.2977045679516846],[122,163,68,0.29719944863503184],[122,163,69,0.29659463322261553],[122,163,70,0.2959255728730092],[122,163,71,0.295225679123833],[122,163,72,0.29452511262088815],[122,163,73,0.29384975762767634],[122,163,74,0.2932203875806071],[122,163,75,0.29265202661721607],[122,163,76,0.2921535116668262],[122,163,77,0.2917272593583527],[122,163,78,0.29136924167148415],[122,163,79,0.291069173938569],[122,164,64,0.2982606862674419],[122,164,65,0.2981293124026301],[122,164,66,0.29776997870774796],[122,164,67,0.2972301534428537],[122,164,68,0.29655373833187454],[122,164,69,0.29577563461981404],[122,164,70,0.2949303388633663],[122,164,71,0.29405073681383376],[122,164,72,0.2931668185230596],[122,164,73,0.2923045846002056],[122,164,74,0.2914851491015881],[122,164,75,0.29072404418959746],[122,164,76,0.2900307313502625],[122,164,77,0.28940832361537294],[122,164,78,0.28885352289747535],[122,164,79,0.2883567762178514],[122,165,64,0.297925764118747],[122,165,65,0.2976296355091137],[122,165,66,0.29710081068310534],[122,165,67,0.2963899655833533],[122,165,68,0.2955414298786085],[122,165,69,0.29458863722441064],[122,165,70,0.29356507764676065],[122,165,71,0.2925030702444367],[122,165,72,0.29143240725439745],[122,165,73,0.290379194092831],[122,165,74,0.28936489105411045],[122,165,75,0.28840556199662964],[122,165,76,0.28751133499053694],[122,165,77,0.2866860795509064],[122,165,78,0.28592730473419053],[122,165,79,0.285226282039296],[122,166,64,0.29720883997723574],[122,166,65,0.29674690091911515],[122,166,66,0.29604713784235187],[122,166,67,0.29516323657425836],[122,166,68,0.2941398586986294],[122,166,69,0.29300895937371274],[122,166,70,0.2918030197862014],[122,166,71,0.29055379928593567],[122,166,72,0.2892909103627852],[122,166,73,0.2880405939181852],[122,166,74,0.28682470069837346],[122,166,75,0.28565988439698325],[122,166,76,0.2845570115741656],[122,166,77,0.2835207931810676],[122,166,78,0.2825496421256166],[122,166,79,0.2816357609716573],[122,167,64,0.29610006981470294],[122,167,65,0.2954701188354338],[122,167,66,0.2945967595199774],[122,167,67,0.2935364151672003],[122,167,68,0.292333985406739],[122,167,69,0.29101999533560025],[122,167,70,0.2896259713445757],[122,167,71,0.2881831715374882],[122,167,72,0.2867210932101215],[122,167,73,0.2852661844812117],[122,167,74,0.28384076611325265],[122,167,75,0.2824621691962334],[122,167,76,0.28114209400129503],[122,167,77,0.27988619494691075],[122,167,78,0.27869389626095703],[122,167,79,0.2775584425715048],[122,168,64,0.2945941089627397],[122,168,65,0.29379311038151595],[122,168,66,0.2927426327080825],[122,168,67,0.2915014897225902],[122,168,68,0.29011473190532355],[122,168,69,0.2886115682993967],[122,168,70,0.2870226846722367],[122,168,71,0.2853789494187595],[122,168,72,0.28370985497970325],[122,168,73,0.2820421668601016],[122,168,74,0.2803987864432102],[122,168,75,0.278797833426083],[122,168,76,0.27725195333195296],[122,168,77,0.2757678551848929],[122,168,78,0.2743460840673345],[122,168,79,0.27298103292452597],[122,169,64,0.29268819324591894],[122,169,65,0.2917125844191787],[122,169,66,0.29048094777927214],[122,169,67,0.28905407115263126],[122,169,68,0.2874770801685991],[122,169,69,0.2857780506491553],[122,169,70,0.2839870032326885],[122,169,71,0.28213458044746326],[122,169,72,0.2802504235141381],[122,169,73,0.2783617598512572],[122,169,74,0.2764922076243124],[122,169,75,0.2746608033060069],[122,169,76,0.27288125784002903],[122,169,77,0.2711614466262653],[122,169,78,0.2695031381754237],[122,169,79,0.26790196591914145],[122,170,64,0.2903800109506292],[122,170,65,0.28922600508099505],[122,170,66,0.28780899618075756],[122,170,67,0.2861912701695029],[122,170,68,0.2844179688864517],[122,170,69,0.28251628730487466],[122,170,70,0.2805158166844931],[122,170,71,0.2784471871585545],[122,170,72,0.2763403814937296],[122,170,73,0.2742232623904863],[122,170,74,0.2721203197985093],[122,170,75,0.27005164434540313],[122,170,76,0.26803213259777736],[122,170,77,0.26607092949522804],[122,170,78,0.26417111292315715],[122,170,79,0.2623296250235293],[122,171,64,0.28766536342516574],[122,171,65,0.2863292478673307],[122,171,66,0.28472282801552745],[122,171,67,0.28290936683116624],[122,171,68,0.28093398604818454],[122,171,69,0.27882332031259366],[122,171,70,0.2766068245146622],[122,171,71,0.27431537508867326],[122,171,72,0.27197952252110297],[122,171,73,0.2696279600715489],[122,171,74,0.2672862153048155],[122,171,75,0.2649755706531627],[122,171,76,0.2627122188450967],[122,171,77,0.2605066586545971],[122,171,78,0.2583633360458103],[122,171,79,0.2562805354167597],[122,172,64,0.2845356119173267],[122,172,65,0.2830140419721311],[122,172,66,0.28121469724494536],[122,172,67,0.27920127020093005],[122,172,68,0.27701885537622334],[122,172,69,0.27469391270098353],[122,172,70,0.27225610636325],[122,172,71,0.2697368571024028],[122,172,72,0.26716753553990574],[122,172,73,0.2645778743547593],[122,172,74,0.26199460601727625],[122,172,75,0.25944033241243036],[122,172,76,0.25693263229803537],[122,172,77,0.2544834121567451],[122,172,78,0.25209850561786634],[122,172,79,0.24977752624899663],[122,173,64,0.2809749080581295],[122,173,65,0.27926519630721836],[122,173,66,0.2772702920570375],[122,173,67,0.27505376575196144],[122,173,68,0.2726607143409019],[122,173,69,0.27011786945012906],[122,173,70,0.2674554970148823],[122,173,71,0.26470589218174323],[122,173,72,0.2619015158697905],[122,173,73,0.25907335292277056],[122,173,74,0.25624949867441693],[122,173,75,0.2534539803636058],[122,173,76,0.25070581944654247],[122,173,77,0.2480183404630471],[122,173,78,0.24539873172680002],[122,173,79,0.24284786272888845],[122,174,64,0.2769572051952387],[122,174,65,0.27505760649290867],[122,174,66,0.27286574774690403],[122,174,67,0.2704445479551147],[122,174,68,0.26783918130062917],[122,174,69,0.2650771532384025],[122,174,70,0.26218976386126097],[122,174,71,0.25921053663758126],[122,174,72,0.2561733009871936],[122,174,73,0.25311049949857906],[122,174,74,0.25005172671382875],[122,174,75,0.24702250601884881],[122,174,76,0.24404331078292726],[122,174,77,0.24112883549743078],[122,174,78,0.23828752227166827],[122,174,79,0.23552134765863836],[122,175,64,0.27245773602768325],[122,175,65,0.270367621952003],[122,175,66,0.26797881746936836],[122,175,67,0.2653530915623206],[122,175,68,0.26253580759914835],[122,175,69,0.2595557828483271],[122,175,70,0.2564458057694728],[122,175,71,0.25324099002519845],[122,175,72,0.249976806485409],[122,175,73,0.24668734336328724],[122,175,74,0.24340380151077937],[122,175,75,0.24015323150824794],[122,175,76,0.2369575187851311],[122,175,77,0.23383262260935786],[122,175,78,0.23078807438653737],[122,175,79,0.22782674031941552],[122,176,64,0.26750135288566074],[122,176,65,0.26522106728873845],[122,176,66,0.262636284314368],[122,176,67,0.25980710351489533],[122,176,68,0.25677916532258266],[122,176,69,0.25358310886094915],[122,176,70,0.25025363607476675],[122,176,71,0.24682778417602483],[122,176,72,0.24334291198649022],[122,176,73,0.23983491814451452],[122,176,74,0.23633669829665827],[122,176,75,0.23287684799712322],[122,176,76,0.22947861763544825],[122,176,77,0.22615912530889407],[122,176,78,0.22292883315407844],[122,176,79,0.21979129225660393],[122,177,64,0.26212919366606624],[122,177,65,0.25966021101273873],[122,177,66,0.2568815083824577],[122,177,67,0.2538509842522759],[122,177,68,0.25061461071481356],[122,177,69,0.24720530948533148],[122,177,70,0.24366007319733768],[122,177,71,0.2400181517075355],[122,177,72,0.23631899934930914],[122,177,73,0.23260045777286573],[122,177,74,0.22889718157021446],[122,177,75,0.2252393134812764],[122,177,76,0.22165141557033607],[122,177,77,0.21815166235330855],[122,177,78,0.21475130144955162],[122,177,79,0.2114543869311621],[122,178,64,0.2563850009390551],[122,178,65,0.2537301394095819],[122,178,66,0.25076093420867335],[122,178,67,0.24753256577687516],[122,178,68,0.24409136625904504],[122,178,69,0.24047294386680487],[122,178,70,0.23671690331404702],[122,178,71,0.23286494383993384],[122,178,72,0.22895877549026009],[122,178,73,0.2250382744824899],[122,178,74,0.22113988490951994],[122,178,75,0.21729527363147363],[122,178,76,0.21353024479375124],[122,178,77,0.20986391999665843],[122,178,78,0.20630818973094328],[122,178,79,0.20286744128844633],[122,179,64,0.2503144875710758],[122,179,65,0.24747806664959227],[122,179,66,0.24432332837904686],[122,179,67,0.24090225713100064],[122,179,68,0.2372615529742833],[122,179,69,0.23343984992503555],[122,179,70,0.22947962290500268],[122,179,71,0.22542519787573256],[122,179,72,0.2213206466281148],[122,179,73,0.2172079237462163],[122,179,74,0.21312525303199778],[122,179,75,0.20910577026865523],[122,179,76,0.2051764287860569],[122,179,77,0.20135717387554775],[122,179,78,0.19766039168704852],[122,179,79,0.19409063783284974],[122,180,64,0.24396464866553522],[122,180,65,0.24095259253072246],[122,180,66,0.23761896811371394],[122,180,67,0.23401214593820446],[122,180,68,0.23017918583097685],[122,180,69,0.2261620147961809],[122,180,70,0.22200616615542262],[122,180,71,0.21775870475165063],[122,180,72,0.21346611085786854],[122,180,73,0.20917240879512924],[122,180,74,0.2049175475490416],[122,180,75,0.20073604026309144],[122,180,76,0.1966558690706419],[122,180,77,0.19269766130909108],[122,180,78,0.18887414274310035],[122,180,79,0.18518987301303647],[122,181,64,0.23738301905261386],[122,181,65,0.23420290709194702],[122,181,66,0.2306987800694592],[122,181,67,0.22691505528683084],[122,181,68,0.22289913159834854],[122,181,69,0.21869641724024338],[122,181,70,0.21435561663919692],[122,181,71,0.20992657617316104],[122,181,72,0.20545816866740083],[122,181,73,0.20099642445960364],[122,181,74,0.19658291629455457],[122,181,75,0.19225340489701828],[122,181,76,0.18803675165411482],[122,181,77,0.18395410441916676],[122,181,78,0.1800183620315267],[122,181,79,0.17623392273523053],[122,182,64,0.23061687550158982],[122,182,65,0.2272779412754539],[122,182,66,0.2236134285573156],[122,182,67,0.21966355517765432],[122,182,68,0.21547602838182897],[122,182,69,0.21109984132293722],[122,182,70,0.20658690266173596],[122,182,71,0.20198981079676975],[122,182,72,0.19735975096960226],[122,182,73,0.19274464003208813],[122,182,74,0.18818752607460662],[122,182,75,0.18372524970269224],[122,182,76,0.17938737333258745],[122,182,77,0.17519538445742416],[122,182,78,0.17116217841881076],[122,182,79,0.1672918258075211],[122,183,64,0.22371238276968217],[122,183,65,0.22022546275671565],[122,183,66,0.21641235231274983],[122,183,67,0.21230892770109333],[122,183,68,0.20796316605479656],[122,183,69,0.2034276606301032],[122,183,70,0.1987574755921384],[122,183,71,0.1940078588820609],[122,183,72,0.1892321641847695],[122,183,73,0.18448002081977727],[122,183,74,0.17979575865928848],[122,183,75,0.17521709476779945],[122,183,76,0.17077408804251099],[122,183,77,0.16648836771701564],[122,183,78,0.16237264117586017],[122,183,79,0.15843048611863558],[122,184,64,0.2167136825420392],[122,184,65,0.2130911160023704],[122,184,66,0.20914274889815224],[122,184,67,0.2049000850536749],[122,184,68,0.20041132673566675],[122,184,69,0.19573259222304823],[122,184,70,0.1909219704695154],[122,184,71,0.18603718479576004],[122,184,72,0.18113355187454913],[122,184,73,0.1762621880287595],[122,184,74,0.1714684698187199],[122,184,75,0.166790755488699],[122,184,76,0.16225937343071706],[122,184,77,0.15789588341055308],[122,184,78,0.15371261588959234],[122,184,79,0.14971249437093623],[122,185,64,0.2096619242577963],[122,185,65,0.20591740555648683],[122,185,66,0.20184850575954152],[122,185,67,0.19748243944793648],[122,185,68,0.1928675844089632],[122,185,69,0.1880634194948608],[122,185,70,0.18313084812517896],[122,185,71,0.1781298267132368],[122,185,72,0.17311737239919375],[122,185,73,0.16814581659987007],[122,185,74,0.16326131119260961],[122,185,75,0.15850259374859024],[122,185,76,0.15390001782418763],[122,185,77,0.1494748539107378],[122,185,78,0.1452388662370181],[122,185,79,0.14119417021883107],[122,186,64,0.20259423675711344],[122,186,65,0.19874262149621919],[122,186,66,0.19456907690157899],[122,186,67,0.19009672391477045],[122,186,68,0.1853740627373328],[122,186,69,0.1804636830407142],[122,186,70,0.17542901802124916],[122,186,71,0.170331952828875],[122,186,72,0.1652308920442376],[122,186,73,0.16017907060015635],[122,186,74,0.15522311477655826],[122,186,75,0.15040185950211904],[122,186,76,0.145745427795352],[122,186,77,0.14127457777615435],[122,186,78,0.13700032227950784],[122,186,79,0.1329238257099046],[122,187,64,0.195542639625838],[122,187,65,0.19159970594015316],[122,187,66,0.1873383040892534],[122,187,67,0.18277776294441717],[122,187,68,0.1779666500625867],[122,187,69,0.17297033861147865],[122,187,70,0.16785444096912333],[122,187,71,0.16268241335760442],[122,187,72,0.1575136930428635],[122,187,73,0.15240207576449208],[122,187,74,0.14739433981030725],[122,187,75,0.14252912276197577],[122,187,76,0.13783605654511596],[122,187,77,0.13333516602350054],[122,187,78,0.12903653598579448],[122,187,79,0.12494025098838955],[122,188,64,0.18853289305583695],[122,188,65,0.1845150594347093],[122,188,66,0.18018318142881473],[122,188,67,0.1755531918597567],[122,188,68,0.17067367054560817],[122,188,69,0.1656123811774011],[122,188,70,0.16043671085590333],[122,188,71,0.1552112875833084],[122,188,72,0.14999619590388308],[122,188,73,0.14484542877704434],[122,188,74,0.13980558186087838],[122,188,75,0.1349147960041235],[122,188,76,0.13020195336070933],[122,188,77,0.12568613215632826],[122,188,78,0.12137632475474552],[122,188,79,0.11727142329621562],[122,189,64,0.1893754663311365],[122,189,65,0.18418634418139054],[122,189,66,0.17880004570099675],[122,189,67,0.1732227601030595],[122,189,68,0.16749646128714438],[122,189,69,0.1616845363408533],[122,189,70,0.15584960604047124],[122,189,71,0.150051158912],[122,189,72,0.14434384089822969],[122,189,73,0.13877597772894862],[122,189,74,0.1333883359168957],[122,189,75,0.12821312793216413],[122,189,76,0.12327326673376049],[122,189,77,0.11858187446239504],[122,189,78,0.1141420497276786],[122,189,79,0.10994689755819345],[122,190,64,0.1920684116413219],[122,190,65,0.18675760308971018],[122,190,66,0.1812554804835005],[122,190,67,0.17556575762132995],[122,190,68,0.16973024054519764],[122,190,69,0.16381371623437896],[122,190,70,0.1578795998474805],[122,190,71,0.15198761423136295],[122,190,72,0.14619217114843588],[122,190,73,0.14054097991957365],[122,190,74,0.1350738891365193],[122,190,75,0.1298219667382217],[122,190,76,0.12480682338241376],[122,190,77,0.1200401836802956],[122,190,78,0.11552370950275191],[122,190,79,0.11124907921339781],[122,191,64,0.19480185030830127],[122,191,65,0.18937458743976554],[122,191,66,0.1837627153757529],[122,191,67,0.17796804267146307],[122,191,68,0.1720321853700098],[122,191,69,0.1660208759831259],[122,191,70,0.15999788567752488],[122,191,71,0.15402276372113183],[122,191,72,0.14814931430791284],[122,191,73,0.14242429505767798],[122,191,74,0.13688634256721702],[122,191,75,0.13156513004080755],[122,191,76,0.12648076167650874],[122,191,77,0.12164340813307073],[122,191,78,0.11705318705497209],[122,191,79,0.11270029229223165],[122,192,64,0.19755339009058054],[122,192,65,0.19201418213167487],[122,192,66,0.18629783296744523],[122,192,67,0.180404807868968],[122,192,68,0.17437652627855427],[122,192,69,0.16827924622616805],[122,192,70,0.16217669406141305],[122,192,71,0.1561278762658243],[122,192,72,0.1501856543292246],[122,192,73,0.1443955352719235],[122,192,74,0.13879468290786265],[122,192,75,0.1334111546069357],[122,192,76,0.12826336797500185],[122,192,77,0.12335980153074126],[122,192,78,0.118698933123722],[122,192,79,0.11426941950982893],[122,193,64,0.20028797722562391],[122,193,65,0.19464016481181468],[122,193,66,0.18882337998521198],[122,193,67,0.182837257031687],[122,193,68,0.17672303456380403],[122,193,69,0.17054715114167618],[122,193,70,0.16437296050765482],[122,193,71,0.15825862537130891],[122,193,72,0.15225579135570808],[122,193,73,0.14640847046607577],[122,193,74,0.14075213889587448],[122,193,75,0.13531305366004048],[122,193,76,0.13010779221731933],[122,193,77,0.1251430189166016],[122,193,78,0.12041548177997327],[122,193,79,0.11591224281971735],[122,194,64,0.20295637921338233],[122,194,65,0.19720165406175524],[122,194,66,0.1912867958944721],[122,194,67,0.1852110222597096],[122,194,68,0.1790154375323504],[122,194,69,0.1727664389059027],[122,194,70,0.16652679408642063],[122,194,71,0.16035362302407127],[122,194,72,0.15429717077888097],[122,194,73,0.14839978391625966],[122,194,74,0.1426950949733356],[122,194,75,0.1372074192230075],[122,194,76,0.13195136764651824],[122,194,77,0.12693167971033098],[122,194,78,0.12214327923322707],[122,194,79,0.11757155632658224],[122,195,64,0.20549426143837224],[122,195,65,0.19963219805314167],[122,195,66,0.1936195274693857],[122,195,67,0.18745531325767073],[122,195,68,0.1811806123975385],[122,195,69,0.17486173479933004],[122,195,70,0.1685608078694983],[122,195,71,0.16233384774848175],[122,195,72,0.15622963018764682],[122,195,73,0.150288759347244],[122,195,74,0.14454293879267185],[122,195,75,0.13901444866276164],[122,195,76,0.13371583267867282],[122,195,77,0.12864979835831744],[122,195,78,0.12380933350308782],[122,195,79,0.1191780417325561],[122,196,64,0.2078554973584281],[122,196,65,0.20188531054764478],[122,196,66,0.19577462794784978],[122,196,67,0.18952252742448128],[122,196,68,0.18317011416121118],[122,196,69,0.1767836411258211],[122,196,70,0.17042461014085902],[122,196,71,0.16414793273536307],[122,196,72,0.15800089834614586],[122,196,73,0.15202233524100917],[122,196,74,0.14624196818750362],[122,196,75,0.1406799765970668],[122,196,76,0.13534675657952727],[122,196,77,0.1302428900499556],[122,196,78,0.12535932374271816],[122,196,79,0.12067776070775045],[122,197,64,0.2100357432230864],[122,197,65,0.20395904914367158],[122,197,66,0.1977522261123475],[122,197,67,0.19141457550008734],[122,197,68,0.18498730216543693],[122,197,69,0.17853651698149728],[122,197,70,0.17212301095661994],[122,197,71,0.16580050902274748],[122,197,72,0.15961473578044727],[122,197,73,0.15360266887241628],[122,197,74,0.14779198376001626],[122,197,75,0.14220069339316704],[122,197,76,0.13683698597910768],[122,197,77,0.13169926377296198],[122,197,78,0.12677638553672024],[122,197,79,0.12204811504445078],[122,198,64,0.21203228000057622],[122,198,65,0.20585277125186827],[122,198,66,0.1995534180241174],[122,198,67,0.19313399388663272],[122,198,68,0.18663581398407428],[122,198,69,0.18012465502479877],[122,198,70,0.17366042115267716],[122,198,71,0.1672954967337929],[122,198,72,0.16107391043474611],[122,198,73,0.1550306816687021],[122,198,74,0.14919135293496616],[122,198,75,0.14357171130337396],[122,198,76,0.13817770202013915],[122,198,77,0.13300553693983833],[122,198,78,0.1280420002228439],[122,198,79,0.12326495347993155],[122,199,64,0.21384117123468438],[122,199,65,0.2075640852014657],[122,199,66,0.2011770421334387],[122,199,67,0.19468056313653995],[122,199,68,0.18811605090309585],[122,199,69,0.18154867325325658],[122,199,70,0.17503720302116532],[122,199,71,0.1686324778516112],[122,199,72,0.16237666366078485],[122,199,73,0.15630269481868134],[122,199,74,0.15043389432742904],[122,199,75,0.1447837770055303],[122,199,76,0.1393560384240444],[122,199,77,0.13414473207983482],[122,199,78,0.12913463703708253],[122,199,79,0.12430181802232079],[122,200,64,0.21545811439032386],[122,200,65,0.20908976534147514],[122,200,66,0.20262067098818945],[122,200,67,0.19605239059269497],[122,200,68,0.18942636525425277],[122,200,69,0.1828068185625625],[122,200,70,0.1762510989778491],[122,200,71,0.16980825595364873],[122,200,72,0.16351840388911318],[122,200,73,0.15741225660084499],[122,200,74,0.15151083533227658],[122,200,75,0.14582535306527755],[122,200,76,0.1403572776461172],[122,200,77,0.13509857598878652],[122,200,78,0.1300321413768868],[122,200,79,0.12513240565165568],[122,201,64,0.21687923585765082],[122,201,65,0.21042661379968422],[122,201,66,0.2038815541445375],[122,201,67,0.19724695056176136],[122,201,68,0.19056421353431902],[122,201,69,0.1838962462993161],[122,201,70,0.17729864835054684],[122,201,71,0.17081841801507341],[122,201,72,0.16449341798481562],[122,201,73,0.15835200447892797],[122,201,74,0.1524128227926773],[122,201,75,0.14668477174707428],[122,201,76,0.14116713931327413],[122,201,77,0.1358499114493172],[122,201,78,0.13071425595795555],[122,201,79,0.1257331829538134],[122,202,64,0.21810182934829583],[122,202,65,0.21157226871367923],[122,202,66,0.20495751219754552],[122,202,67,0.19826208206745496],[122,202,68,0.19152727551129523],[122,202,69,0.1848142761867087],[122,202,70,0.1781765928659739],[122,202,71,0.17165889907316867],[122,202,72,0.16529660130652446],[122,202,73,0.15911556321827297],[122,202,74,0.15313198823845597],[122,202,75,0.14735246290066323],[122,202,76,0.14177416290079167],[122,202,77,0.13638522369716302],[122,202,78,0.1311652772454828],[122,202,79,0.12608615625568206],[122,203,64,0.21873680861054826],[122,203,65,0.21252595869702806],[122,203,66,0.20584778180427304],[122,203,67,0.19909694419263496],[122,203,68,0.1923145394895577],[122,203,69,0.18555962498291026],[122,203,70,0.17888327140403296],[122,203,71,0.17232755054854454],[122,203,72,0.16592520750440656],[122,203,73,0.1596994803068484],[122,203,74,0.15366406922971546],[122,203,75,0.14782325770839946],[122,203,76,0.14217218667715464],[122,203,77,0.13669728389567126],[122,203,78,0.1313768496399478],[122,203,79,0.12618179994117315],[122,204,64,0.21807367130278646],[122,204,65,0.2132892032486403],[122,204,66,0.2065538115223168],[122,204,67,0.1997529289761498],[122,204,68,0.19292735387106832],[122,204,69,0.18613361620641986],[122,204,70,0.17942000457358023],[122,204,71,0.17282571301555555],[122,204,72,0.16638061910180602],[122,204,73,0.16010519998685452],[122,204,74,0.15401058837671058],[122,204,75,0.14809877012811656],[122,204,76,0.14236292500900677],[122,204,77,0.136787911956653],[122,204,78,0.13135089998635302],[122,204,79,0.1260221457283682],[122,205,64,0.2173590629075299],[122,205,65,0.21338233308754423],[122,205,66,0.20708000823293005],[122,205,67,0.20023453178274608],[122,205,68,0.19337044510956355],[122,205,69,0.1865413672310428],[122,205,70,0.17979246964190182],[122,205,71,0.17315979420330976],[122,205,72,0.16667013990589255],[122,205,73,0.1603410772158573],[122,205,74,0.1541810916327494],[122,205,75,0.14818985790501704],[122,205,76,0.14235864617000132],[122,205,77,0.1366708611103524],[122,205,78,0.13110271505268822],[122,205,79,0.12562403577657294],[122,206,64,0.21659523253501467],[122,206,65,0.21237294894760886],[122,206,66,0.2074344338606698],[122,206,67,0.20055017901274966],[122,206,68,0.19365290210975444],[122,206,69,0.18679295401616866],[122,206,70,0.18001206632206299],[122,206,71,0.17334285299051494],[122,206,72,0.16680881028527983],[122,206,73,0.16042443288043778],[122,206,74,0.15419544747288053],[122,206,75,0.14811916505424783],[122,206,76,0.14218495283781057],[122,206,77,0.13637482667985057],[122,206,78,0.1306641646876922],[122,206,79,0.12502254256748993],[122,207,64,0.21578084716294235],[122,207,65,0.21130440148593124],[122,207,66,0.20672805548171203],[122,207,67,0.20071366435287663],[122,207,68,0.19378966436587067],[122,207,69,0.18690478309414926],[122,207,70,0.18009700530940354],[122,207,71,0.17339524329834657],[122,207,72,0.16681945615208968],[122,207,73,0.16038087277854016],[122,207,74,0.15408231963656482],[122,207,75,0.14791865404597926],[122,207,76,0.14187730378625302],[122,207,77,0.135938913561022],[122,207,78,0.13007809877835608],[122,207,79,0.12408503465103365],[122,208,64,0.2149124846695069],[122,208,65,0.2101719433146264],[122,208,66,0.20533004629229884],[122,208,67,0.20035893257402596],[122,208,68,0.19380062744199889],[122,208,69,0.18689737288298944],[122,208,70,0.18006816852634033],[122,208,71,0.17333799007727219],[122,208,72,0.16672306819647062],[122,208,73,0.1602312228224955],[122,208,74,0.15386228828792323],[122,208,75,0.14760862976852934],[122,208,76,0.14145575148514503],[122,208,77,0.13538299696373496],[122,208,78,0.12819325321292843],[122,208,79,0.11997112252615469],[122,209,64,0.21398682261357016],[122,209,65,0.20897127632702422],[122,209,66,0.2038540573751067],[122,209,67,0.19860439020780465],[122,209,68,0.19317755489630095],[122,209,69,0.18678853971153844],[122,209,70,0.1799428381499621],[122,209,71,0.17318754398183658],[122,209,72,0.1665350320026203],[122,209,73,0.15998963901217278],[122,209,74,0.15354818796984454],[122,209,75,0.14720058806533542],[122,209,76,0.14009606737664362],[122,209,77,0.13220879736876728],[122,209,78,0.1241020695586099],[122,209,79,0.11580900332837267],[122,210,64,0.21300070858791376],[122,210,65,0.20769904045685603],[122,210,66,0.202296778507614],[122,210,67,0.1967603040143624],[122,210,68,0.1910460191835114],[122,210,69,0.18511423364521407],[122,210,70,0.1789353195760981],[122,210,71,0.17248931573621484],[122,210,72,0.1657653788123714],[122,210,73,0.1587611760022268],[122,210,74,0.1514822188770104],[122,210,75,0.14394113863920532],[122,210,76,0.13615690296348953],[122,210,77,0.1281539746741753],[122,210,78,0.11996141257130544],[122,210,79,0.11161191476749857],[122,211,64,0.21195099759431643],[122,211,65,0.2063525547147921],[122,211,66,0.20065619927730777],[122,211,67,0.19482563263651936],[122,211,68,0.18881854647191199],[122,211,69,0.18260000810264237],[122,211,70,0.1761451284597268],[122,211,71,0.16943843928133073],[122,211,72,0.1624732129731007],[122,211,73,0.15525074057744834],[122,211,74,0.14777956824797644],[122,211,75,0.14007469267824266],[122,211,76,0.1321567159802094],[122,211,77,0.12405096054679904],[122,211,78,0.11578654446617942],[122,211,79,0.10739541807998654],[122,212,64,0.21083445746148316],[122,212,65,0.2049296267604745],[122,212,66,0.19893132132423863],[122,212,67,0.19280081021199838],[122,212,68,0.18649724458382522],[122,212,69,0.1799905480300804],[122,212,70,0.17326060893265957],[122,212,71,0.16629643195934055],[122,212,72,0.15909532820192343],[122,212,73,0.15166208115842778],[122,212,74,0.1440080893126401],[122,212,75,0.1361504860907326],[122,212,76,0.12811123799400287],[122,212,77,0.11991622171899405],[122,212,78,0.11159428108284802],[122,212,79,0.10317626457016638],[122,213,64,0.20964774327562125],[122,213,65,0.2034284319150874],[122,213,66,0.19712194131080024],[122,213,67,0.1906874315933587],[122,213,68,0.18408567930968234],[122,213,69,0.17729149104989567],[122,213,70,0.17028949616041517],[122,213,71,0.16307307734265458],[122,213,72,0.1556434348591531],[122,213,73,0.14800864500175448],[122,213,74,0.14018271392602427],[122,213,75,0.1321846279551319],[122,213,76,0.12403740144817513],[122,213,77,0.11576712331259506],[122,213,78,0.10740200321970539],[122,213,79,0.0989714185540969],[122,214,64,0.20838744184998212],[122,214,65,0.20184746257694303],[122,214,66,0.19522850553130056],[122,214,67,0.1884880113247886],[122,214,68,0.18158853776023107],[122,214,69,0.1745097268066716],[122,214,70,0.16724083654534505],[122,214,71,0.15977945928361675],[122,214,72,0.15213046559506707],[122,214,73,0.14430496150891745],[122,214,74,0.13631926029264815],[122,214,75,0.12819387024282045],[122,214,76,0.11995249986285526],[122,214,77,0.11162108176329752],[122,214,78,0.10322681657197703],[122,214,79,0.09479723808633764],[122,215,64,0.20705018731376335],[122,215,65,0.2001855490581959],[122,215,66,0.1932520371316635],[122,215,67,0.18620581731201225],[122,215,68,0.1790113694034692],[122,215,69,0.171653048730002],[122,215,70,0.1641245559524623],[122,215,71,0.15642745454620896],[122,215,72,0.14857000230017034],[122,215,73,0.1405660150877162],[122,215,74,0.13243376467676862],[122,215,75,0.1241949122897005],[122,215,76,0.11587347955922762],[122,215,77,0.10749485845535882],[122,215,78,0.09908486168294041],[122,215,79,0.09066881496745792],[122,216,64,0.20563284895109343],[122,216,65,0.19844195291318398],[122,216,66,0.1911941369646487],[122,216,67,0.18384478017989073],[122,216,68,0.17636040576437362],[122,216,69,0.16872988838153907],[122,216,70,0.16095111538168727],[122,216,71,0.15302931865352137],[122,216,72,0.14497580288875814],[122,216,73,0.13680672523082132],[122,216,74,0.12854192837801875],[122,216,75,0.12020382912687896],[122,216,76,0.11181636424915434],[122,216,77,0.10340399549730436],[122,216,78,0.09499077543073922],[122,216,79,0.0865994756469898],[122,217,64,0.20413279246707336],[122,217,65,0.19661653387789557],[122,217,66,0.18905705915823667],[122,217,67,0.1814094793684397],[122,217,68,0.17364245982610008],[122,217,69,0.1657491334283511],[122,217,70,0.15773125514742983],[122,217,71,0.14959736604581206],[122,217,72,0.14136142905866067],[122,217,73,0.13304153501529564],[122,217,74,0.1246586812484335],[122,217,75,0.1162356250279303],[122,217,76,0.10779581393638293],[122,217,77,0.09936239517840044],[122,217,78,0.09095730568656346],[122,217,79,0.08260044475359399],[122,218,64,0.20254821589894068],[122,218,65,0.19470999158449906],[122,218,66,0.1868438625231082],[122,218,67,0.1789052070706481],[122,218,68,0.17086490622891976],[122,218,69,0.16272003034760074],[122,218,70,0.15447582869506085],[122,218,71,0.14614374571848027],[122,218,72,0.13773997625048703],[122,218,73,0.12928410931320616],[122,218,74,0.12079786311886548],[122,218,75,0.11230391372766114],[122,218,76,0.10382481967797323],[122,218,77,0.09538204475261913],[122,218,78,0.08699508089090816],[122,218,79,0.07868067309847855],[122,219,64,0.20087856142546062],[122,219,65,0.1927241832538973],[122,219,66,0.1845586389685719],[122,219,67,0.1763381111638485],[122,219,68,0.16803574341692168],[122,219,69,0.1596521730270866],[122,219,70,0.15119572724935917],[122,219,71,0.14268031358092678],[122,219,72,0.13412390710741728],[122,219,73,0.12554714408710385],[122,219,74,0.11697202459209217],[122,219,75,0.10842072686185869],[122,219,76,0.09991453585390493],[122,219,77,0.09147288830037059],[122,219,78,0.0831125364017368],[122,219,79,0.07484683210812493],[122,220,64,0.19912500435584854],[122,220,65,0.19066251860217376],[122,220,66,0.18220682013424425],[122,220,67,0.17371541832980736],[122,220,68,0.16516373893184255],[122,220,69,0.15655557848171825],[122,220,70,0.14790189655189345],[122,220,71,0.13921860284547827],[122,220,72,0.1305249898110007],[122,220,73,0.12184228822450341],[122,220,74,0.11319234874582834],[122,220,75,0.10459645226846673],[122,220,76,0.09607425168828215],[122,220,77,0.08764284751753305],[122,220,78,0.07931599957073424],[122,220,79,0.0711034767470664],[122,221,64,0.19729102059967507],[122,221,65,0.18853043322231],[122,221,66,0.1797955634759352],[122,221,67,0.17104573859587424],[122,221,68,0.16225865909690845],[122,221,69,0.15344085095605325],[122,221,70,0.14460544700093558],[122,221,71,0.13576989381868107],[122,221,72,0.12695434273776898],[122,221,73,0.1181801794406828],[122,221,74,0.10946869536936582],[122,221,75,0.10083990387587864],[122,221,76,0.09231150385479929],[122,221,77,0.08389799337383393],[122,221,78,0.07560993559882036],[122,221,79,0.06745337908809375],[122,222,64,0.19538303393044168],[122,222,65,0.18633594171986884],[122,222,66,0.17733421906773894],[122,222,67,0.16833945255960256],[122,222,68,0.15933158437041073],[122,222,69,0.15031943572675252],[122,222,70,0.14131785855802442],[122,222,71,0.13234538452432942],[122,222,72,0.12342258694470432],[122,222,73,0.11457059584798944],[122,222,74,0.10580976943143836],[122,222,75,0.0971585249821646],[122,222,76,0.08863233208074109],[122,222,77,0.08024287066683623],[122,222,78,0.07199735630799939],[122,222,79,0.06389803477397127],[122,223,64,0.1934111443566342],[122,223,65,0.18409027188928936],[122,223,66,0.17483487839717776],[122,223,67,0.16560918258117294],[122,223,68,0.15639531167791462],[122,223,69,0.14720396395515162],[122,223,70,0.1380512818286318],[122,223,71,0.12895646363755509],[122,223,72,0.11994010804762717],[122,223,73,0.11102272485128525],[122,223,74,0.10222341554298267],[122,223,75,0.09355872679888255],[122,223,76,0.08504167973640821],[122,223,77,0.07668097757223735],[122,223,78,0.06848039404191324],[122,223,79,0.060438344689912035],[122,224,64,0.19138993890387274],[122,224,65,0.18180858121483334],[122,224,66,0.17231300643513323],[122,224,67,0.16287034924042987],[122,224,68,0.15346484505206154],[122,224,69,0.14410868996770282],[122,224,70,0.13481893675902903],[122,224,71,0.12561508725048745],[122,224,72,0.11651742910363487],[122,224,73,0.10754555108124045],[122,224,74,0.09871704023462276],[122,224,75,0.09004636419233161],[122,224,76,0.08154394145808115],[122,224,77,0.0732154023532911],[122,224,78,0.06506104296937451],[122,224,79,0.057075474226709486],[122,225,64,0.18933938608924122],[122,225,65,0.17951075696599297],[122,225,66,0.1697881582561973],[122,225,67,0.16014181435730038],[122,225,68,0.15055797591888345],[122,225,69,0.14105002235961905],[122,225,70,0.13163561041617286],[122,225,71,0.12233426102116599],[122,225,72,0.1131656961454212],[122,225,73,0.10414836511845114],[122,225,74,0.09529816391340222],[122,225,75,0.0866273506020645],[122,225,76,0.07814365990058786],[122,225,77,0.0698496194399233],[122,225,78,0.0617420701115131],[122,225,79,0.05381189255825278],[122,226,64,0.18728581533243505],[122,226,65,0.17722230112990064],[122,226,66,0.16728478146658682],[122,226,67,0.15744661186448544],[122,226,68,0.14769595436802446],[122,226,69,0.13804715032343942],[122,226,70,0.128518255330991],[122,226,71,0.11912862927720665],[122,226,72,0.1098972780403679],[122,226,73,0.10084139479040184],[122,226,74,0.0919751043950545],[122,226,75,0.08330841414956983],[122,226,76,0.07484637374863103],[122,226,77,0.06658844711979764],[122,226,78,0.058528098442151226],[122,226,79,0.05065259438220736],[122,227,64,0.18526630539206068],[122,227,65,0.17497939444721594],[122,227,66,0.1648379112719399],[122,227,67,0.15481826592651152],[122,227,68,0.1449104256404616],[122,227,69,0.13512956598269502],[122,227,70,0.1254940357324403],[122,227,71,0.11602295413651093],[122,227,72,0.10673455990229279],[122,227,73,0.09764476918421001],[122,227,74,0.08876594608877328],[122,227,75,0.08010588891557051],[122,227,76,0.07166703504050234],[122,227,77,0.06344588703610497],[122,227,78,0.055432662317124015],[122,227,79,0.04761116829758339],[122,228,64,0.18333608244151786],[122,228,65,0.17283939257481445],[122,228,66,0.16250655578107867],[122,228,67,0.1523170009314325],[122,228,68,0.14226240777608204],[122,228,69,0.1323586322653169],[122,228,70,0.12262418303391202],[122,228,71,0.11307783400696468],[122,228,72,0.10373698582370423],[122,228,73,0.0946162445056655],[122,228,74,0.08572622088919588],[122,228,75,0.07707255402300393],[122,228,76,0.06865516140937511],[122,228,77,0.06046771864584547],[122,228,78,0.0524973707077698],[122,228,79,0.044724676801531096],[122,229,64,0.18154414369810257],[122,229,65,0.17085397199859131],[122,229,66,0.16034458708946953],[122,229,67,0.14999846389146346],[122,229,68,0.1398089189162322],[122,229,69,0.12979229166883163],[122,229,70,0.11996706977295263],[122,229,71,0.1103515306824942],[122,229,72,0.1009621244788763],[122,229,73,0.0918120804784633],[122,229,74,0.08291024113903468],[122,229,75,0.07426012642582434],[122,229,76,0.06585923146692634],[122,229,77,0.057698559997950045],[122,229,78,0.049762395772132526],[122,229,79,0.04202831379481108],[122,230,64,0.1799268505986102],[122,230,65,0.16906155115266824],[122,230,66,0.15839208737408356],[122,230,67,0.14790403874843033],[122,230,68,0.13759229910655854],[122,230,69,0.12747347825322916],[122,230,70,0.11756583985787461],[122,230,71,0.10788699019650591],[122,230,72,0.09845229435628779],[122,230,73,0.08927352070775103],[122,230,74,0.08035771707123356],[122,230,75,0.07170632166958216],[122,230,76,0.06331451162275714],[122,230,77,0.05517079140499247],[122,230,78,0.04725682335702803],[122,230,79,0.03954750202488097],[122,231,64,0.17850908311719124],[122,231,65,0.1674884380637004],[122,231,66,0.156676495225134],[122,231,67,0.14606200356041238],[122,231,68,0.13564139117981844],[122,231,69,0.12543133107721405],[122,231,70,0.11544965949251512],[122,231,71,0.10571313245330759],[122,231,72,0.09623588983853805],[122,231,73,0.0870281497481483],[122,231,74,0.07809513650810866],[122,231,75,0.06943624530305981],[122,231,76,0.061044446090218855],[122,231,77,0.052905929111543085],[122,231,78,0.044999993991945104],[122,231,79,0.037299184089814176],[122,232,64,0.17730534235677017],[122,232,65,0.1661499269323132],[122,232,66,0.15521370292450598],[122,232,67,0.1444886418806367],[122,232,68,0.13397268048280336],[122,232,69,0.12368237286928338],[122,232,70,0.11363494169267843],[122,232,71,0.10384612489968206],[122,232,72,0.09432870389580987],[122,232,73,0.085091261434453],[122,232,74,0.07613717242601833],[122,232,75,0.06746383052680109],[122,232,76,0.059062113030266164],[122,232,77,0.05091608624886731],[122,232,78,0.04300295324792119],[122,232,79,0.03529324547461212],[122,233,64,0.17632079894528524],[122,233,65,0.1650513408496787],[122,233,66,0.1540091015808084],[122,233,67,0.14318930497423896],[122,233,68,0.13259138985313262],[122,233,69,0.12223165014334413],[122,233,70,0.11212654046969803],[122,233,71,0.10229063625542512],[122,233,72,0.09273524344616582],[122,233,73,0.08346723466463485],[122,233,74,0.07448811482123892],[122,233,75,0.06579331887487651],[122,233,76,0.057371744106756474],[122,233,77,0.049205518941501575],[122,233,78,0.04127001002965853],[122,233,79,0.03353406899409779],[122,234,64,0.17555228679061574],[122,234,65,0.16418902026133567],[122,234,66,0.15305857380582935],[122,234,67,0.14215942464232384],[122,234,68,0.13149252971400086],[122,234,69,0.12107383474359967],[122,234,70,0.11091891480265978],[122,234,71,0.10104107058177401],[122,234,72,0.09145003783856363],[122,234,73,0.08215091728543782],[122,234,74,0.073143327736216],[122,234,75,0.06442078500868521],[122,234,76,0.055970308758267584],[122,234,77,0.04777225909934964],[122,234,78,0.039800404560963794],[122,234,79,0.03202222262244117],[122,235,64,0.1749892416771969],[122,235,65,0.16355125672397886],[122,235,66,0.15234943355416206],[122,235,67,0.1413854763614175],[122,235,68,0.1306619030934938],[122,235,69,0.12019428674043298],[122,235,70,0.1099972624551186],[122,235,71,0.10008278189737568],[122,235,72,0.09045894084107046],[122,235,73,0.08112901865300978],[122,235,74,0.07209073222293266],[122,235,75,0.06333570661474738],[122,235,76,0.05484916440060753],[122,235,77,0.04660983533451992],[122,235,78,0.03859008772633768],[122,235,79,0.03075628259011809],[122,236,64,0.17461458411777533],[122,236,65,0.16311917143579835],[122,236,66,0.15186131268563852],[122,236,67,0.14084589238525608],[122,236,68,0.13007706531283467],[122,236,69,0.11957007853378866],[122,236,70,0.10933862362240798],[122,236,71,0.0993932694759784],[122,236,72,0.08974042643460318],[122,236,73,0.08038151135155182],[122,236,74,0.07131231592304473],[122,236,75,0.06252258029366894],[122,236,76,0.05399577366194029],[122,236,77,0.04570908332286145],[122,236,78,0.03763361330598213],[122,236,79,0.029734793498160855],[122,237,64,0.17440551586094916],[122,237,65,0.16286750773500797],[122,237,66,0.15156696327276822],[122,237,67,0.14051189368948805],[122,237,68,0.1297082071164832],[122,237,69,0.11917094886955443],[122,237,70,0.10891292309218872],[122,237,71,0.09894332253273093],[122,237,72,0.08926684719149777],[122,237,73,0.0798830109697084],[122,237,74,0.07078563833180833],[122,237,75,0.061962552719554385],[122,237,76,0.05339545818455548],[122,237,77,0.04506001543865151],[122,237,78,0.03692611326371684],[122,237,79,0.028958335973762465],[122,238,64,0.17432790625812158],[122,238,65,0.16275895420561456],[122,238,66,0.15142653773592377],[122,238,67,0.14034175361833168],[122,238,68,0.1295124305261149],[122,238,69,0.11895361842145263],[122,238,70,0.10867735117090149],[122,238,71,0.09869148964540596],[122,238,72,0.08899901241800248],[122,238,73,0.07959747991352359],[122,238,74,0.07047867370154903],[122,238,75,0.06162841237270244],[122,238,76,0.05302654518928614],[122,238,77,0.04464712445682825],[122,238,78,0.03645875732843937],[122,238,79,0.02842513752825429],[122,239,64,0.17432328193097824],[122,239,65,0.1627320038755616],[122,239,66,0.15137619310551131],[122,239,67,0.14027001108052908],[122,239,68,0.1294234269353072],[122,239,69,0.11885178446955322],[122,239,70,0.10856652772109458],[122,239,71,0.09857427094202077],[122,239,72,0.08887627771669243],[122,239,73,0.07946809789321004],[122,239,74,0.07033936368107847],[122,239,75,0.061473746040547665],[122,239,76,0.05284907226440264],[122,239,77,0.044437605433372857],[122,239,78,0.036206486216639244],[122,239,79,0.028118337288308204],[122,240,64,0.17431031952507223],[122,240,65,0.16270544799875244],[122,240,66,0.15133504748337692],[122,240,67,0.1402162872962137],[122,240,68,0.12936151110044947],[122,240,69,0.11878671031483617],[122,240,70,0.10850298836581214],[122,240,71,0.09851586577856859],[122,240,72,0.08882496030567373],[122,240,73,0.07942380865832037],[122,240,74,0.07029983084371341],[122,240,75,0.0614344379097889],[122,240,76,0.05280328369927981],[122,240,77,0.044376661021455086],[122,240,78,0.036120042466328064],[122,240,79,0.027994765911681214],[122,241,64,0.1742175799007314],[122,241,65,0.16260835667356],[122,241,66,0.15123268803165923],[122,241,67,0.1401106338159523],[122,241,68,0.12925713602026248],[122,241,69,0.11868923225851916],[122,241,70,0.10841799473746085],[122,241,71,0.09844807261450517],[122,241,72,0.08877758098462783],[122,241,73,0.07939811516928622],[122,241,74,0.07029489095893429],[122,241,75,0.06144701128365335],[122,241,76,0.052827859613107764],[122,241,77,0.04440562021966794],[122,241,78,0.036143925281560546],[122,241,79,0.028002628655081973],[122,242,64,0.17398998267005808],[122,242,65,0.16238567501322274],[122,242,66,0.15101402773213057],[122,242,67,0.1398978074885605],[122,242,68,0.12905475371546196],[122,242,69,0.11850337566879782],[122,242,70,0.10825507097778728],[122,242,71,0.09831390129950418],[122,242,72,0.08867669301353844],[122,242,73,0.07933324727636136],[122,242,74,0.07026665973998762],[122,242,75,0.0614537500874094],[122,242,76,0.05286560138951099],[122,242,77,0.04446820914677096],[122,242,78,0.03622323974835644],[122,242,79,0.028088897959718445],[122,243,64,0.17358708162713712],[122,243,65,0.16199657174257784],[122,243,66,0.15063774197683216],[122,243,67,0.13953581397907394],[122,243,68,0.1287114869135201],[122,243,69,0.11818517641392559],[122,243,70,0.10796899586287051],[122,243,71,0.0980667553679834],[122,243,72,0.08847427188739909],[122,243,73,0.07917977354120857],[122,243,74,0.07016439807886918],[122,243,75,0.06140278534435069],[122,243,76,0.05286376345754653],[122,243,77,0.044511128314061614],[122,243,78,0.036304515900080485],[122,243,79,0.028200366822912794],[122,244,64,0.17298141151487667],[122,244,65,0.16141285714366846],[122,244,66,0.15007477156233023],[122,244,67,0.13899451332965185],[122,244,68,0.12819585703850073],[122,244,69,0.1177015518557207],[122,244,70,0.10752483708129171],[122,244,71,0.09766964872843893],[122,244,72,0.08813113167641655],[122,244,73,0.07889623197363735],[122,244,74,0.06994436894572986],[122,244,75,0.06124818665720185],[122,244,76,0.05277438417504443],[122,244,77,0.0444846239895651],[122,244,78,0.03633651786600678],[122,244,79,0.028284689328242484],[122,245,64,0.17215690720080926],[122,245,65,0.16061747135354648],[122,245,66,0.14930689300551533],[122,245,67,0.1382542883716376],[122,245,68,0.12748656918176696],[122,245,69,0.11702922193190207],[122,245,70,0.10689702803872288],[122,245,71,0.09709445696450725],[122,245,72,0.08761636799692359],[122,245,73,0.07844877960671187],[122,245,74,0.06956970574793776],[122,245,75,0.060950058379755465],[122,245,76,0.052554615408988134],[122,245,77,0.04434305318096563],[122,245,78,0.03627104258584666],[122,245,79,0.028291407797038887],[122,246,64,0.17110739645994968],[122,246,65,0.1596030441354435],[122,246,66,0.1483253572076992],[122,246,67,0.1373047768954959],[122,246,68,0.12657135481590792],[122,246,69,0.11615368092842467],[122,246,70,0.10606848761936595],[122,246,71,0.09632120350444752],[122,246,72,0.08690682769899268],[122,246,73,0.07781086083387694],[122,246,74,0.06901029192309108],[122,246,75,0.0604746401205738],[122,246,76,0.052167050342373816],[122,246,77,0.04404544167683484],[122,246,78,0.03606370746408473],[122,246,79,0.028172965894534052],[122,247,64,0.16983516768489684],[122,247,65,0.1583705273587393],[122,247,66,0.14712959759915945],[122,247,67,0.1361436685807218],[122,247,68,0.12544587309810537],[122,247,69,0.11506822061360818],[122,247,70,0.10502978339006225],[122,247,71,0.09533738095402873],[122,247,72,0.08598660537613298],[122,247,73,0.07696289443067324],[122,247,74,0.068242651517474],[122,247,75,0.05979441117516335],[122,247,76,0.05158004896844827],[122,247,77,0.04355603449392914],[122,247,78,0.03567472622330406],[122,247,79,0.02788570688711523],[122,248,64,0.1683496139598957],[122,248,65,0.15692790153196973],[122,248,66,0.14572600899648983],[122,248,67,0.13477556777842498],[122,248,68,0.12411267168885129],[122,248,69,0.11377300547285449],[122,248,70,0.1037783387852891],[122,248,71,0.09413730792351496],[122,248,72,0.08484656681950917],[122,248,73,0.07589197918024594],[122,248,74,0.06724985047613105],[122,248,75,0.058888198434594266],[122,248,76,0.05076806066084745],[122,248,77,0.04284483798170152],[122,248,78,0.0350696720948325],[122,248,79,0.027390856102630052],[122,249,64,0.16666595504573847],[122,249,65,0.15528895783572494],[122,249,66,0.14412679849938387],[122,249,67,0.13321092332448714],[122,249,68,0.12258020808687534],[122,249,69,0.11227420084578549],[122,249,70,0.10231768486033381],[122,249,71,0.09272152171241678],[122,249,72,0.0834838995538447],[122,249,73,0.07459161801626446],[122,249,74,0.0660214083430724],[122,249,75,0.057741287267314596],[122,249,76,0.04971194313234564],[122,249,77,0.04188815273405666],[122,249,78,0.03422022735846133],[122,249,79,0.0266554864938336],[122,250,64,0.16480403892493625],[122,250,65,0.15347215719748983],[122,250,66,0.1423489098407133],[122,250,67,0.13146502663991055],[122,250,68,0.12086193255042009],[122,250,69,0.11058315482585329],[122,250,70,0.10065675724506683],[122,250,71,0.09109620724542758],[122,250,72,0.08190169060417238],[122,250,73,0.07306146058889675],[122,250,74,0.06455322004006916],[122,250,75,0.056345534817037496],[122,250,76,0.04839927701578289],[122,250,77,0.04066909635303832],[122,250,78,0.033104918110895165],[122,250,79,0.025653466046222127],[122,251,64,0.16278722464903916],[122,251,65,0.15149956803583406],[122,251,66,0.14041302268154926],[122,251,67,0.12955707944499978],[122,251,68,0.11897543373651982],[122,251,69,0.1087156348339823],[122,251,70,0.09880923897016947],[122,251,71,0.08927266267791177],[122,251,72,0.08010853165053793],[122,251,73,0.07130706414784617],[122,251,74,0.06284748735896271],[122,251,75,0.05469948510200085],[122,251,76,0.046824675217420085],[122,251,77,0.039178114998724034],[122,251,78,0.031709833004256664],[122,251,79,0.024366385604850917],[122,252,64,0.1606413483122839],[122,252,65,0.14939588437684775],[122,252,66,0.13834262841121436],[122,252,67,0.1275093324754378],[122,252,68,0.11694164824391526],[122,252,69,0.1066911198229447],[122,252,70,0.09679294987189059],[122,252,71,0.08726680211011709],[122,252,72,0.07811815173238393],[122,252,73,0.06933967262214696],[122,252,74,0.06091265976643443],[122,252,75,0.05280848524085725],[122,252,76,0.04499008610671487],[122,252,77,0.037413482545471034],[122,252,78,0.03002932455271812],[122,252,79,0.022784465521667106],[122,253,64,0.15839377404477395],[122,253,65,0.14718752610831073],[122,253,66,0.13616318406852804],[122,253,67,0.12534629663832886],[122,253,68,0.11478413528901298],[122,253,69,0.10453214910545629],[122,253,70,0.09462928330815788],[122,253,71,0.08509869586384596],[122,253,72,0.07594907766379992],[122,253,73,0.06717601375767288],[122,253,74,0.05876338408027149],[122,253,75,0.050684802066511686],[122,253,76,0.04290508951608234],[122,253,77,0.03538178604561375],[122,253,78,0.02806669145608332],[122,253,79,0.02090743934434421],[122,254,64,0.1560725319733542],[122,254,65,0.14490182318598277],[122,254,66,0.13390134604344897],[122,254,67,0.12309402808424627],[122,254,68,0.11252841777737634],[122,254,69,0.10226372882610087],[122,254,70,0.09234269093795604],[122,254,71,0.08279214878368386],[122,254,72,0.07362432231528411],[122,254,73,0.06483811415054724],[122,254,74,0.05642046253278451],[122,254,75,0.04834773832206705],[122,254,76,0.040587184430316864],[122,254,77,0.033098396078607505],[122,254,78,0.02583484023476435],[122,254,79,0.018745412580428555],[122,255,64,0.1537055451373612],[122,255,65,0.14256628563983142],[122,255,66,0.13158428524660026],[122,255,67,0.12077948869568397],[122,255,68,0.11020139105422111],[122,255,69,0.09991279711389266],[122,255,70,0.08996021632631565],[122,255,71,0.0803743170261864],[122,255,72,0.07117110090651704],[122,255,73,0.062353131987381155],[122,255,74,0.05391081868995835],[122,255,75,0.045823747562505866],[122,255,76,0.038062067148033306],[122,255,77,0.030587920436509933],[122,255,78,0.02335692431120764],[122,255,79,0.01631969437701223],[122,256,64,0.15131994736702892],[122,256,65,0.140207961243537],[122,256,66,0.1292390854453486],[122,256,67,0.11842998350082032],[122,256,68,0.1078308006241844],[122,256,69,0.09750774895670501],[122,256,70,0.08751107813730906],[122,256,71,0.07787536379323129],[122,256,72,0.06862057543660689],[122,256,73,0.059753207270462676],[122,256,74,0.05126747064323183],[122,256,75,0.04314654681114197],[122,256,76,0.03536389859614226],[122,256,77,0.027884639465138424],[122,256,78,0.020666958508082537],[122,256,79,0.013663599755745307],[122,257,64,0.14894149602598372],[122,257,65,0.1378528840170464],[122,257,66,0.12689222724729246],[122,257,67,0.11607267685051682],[122,257,68,0.10544479010846836],[122,257,69,0.09507802161017052],[122,257,70,0.0850263034202781],[122,257,71,0.07532815438134563],[122,257,72,0.0660076276822544],[122,257,73,0.05707533021942036],[122,257,74,0.04852951263202428],[122,257,75,0.04035722879710639],[122,257,76,0.03253556348280869],[122,257,77,0.025032926780068684],[122,257,78,0.017810413868712963],[122,257,79,0.0108232286210321],[122,258,64,0.14659468739633424],[122,258,65,0.13552622525982166],[122,258,66,0.12456977467187076],[122,258,67,0.11373480954762143],[122,258,68,0.10307214044661354],[122,258,69,0.0926543457915685],[122,258,70,0.08253898014206905],[122,258,71,0.07276849966629591],[122,258,72,0.0633710842063488],[122,258,73,0.054361539880561145],[122,258,74,0.04574228124976925],[122,258,75,0.037504391963484145],[122,258,76,0.029628762698448833],[122,258,77,0.022087305107968372],[122,258,78,0.014844240419802665],[122,258,79,0.007857461251275611],[122,259,64,0.14431470857839027],[122,259,65,0.13326430477802678],[122,259,66,0.1223094650182694],[122,259,67,0.11145585773674181],[122,259,68,0.10075434661420189],[122,259,69,0.09028041049463235],[122,259,70,0.08009505500949594],[122,259,71,0.07024455491662332],[122,259,72,0.06076114922192058],[122,259,73,0.05166382505204742],[122,259,74,0.0429591894497078],[122,259,75,0.0346424281372617],[122,259,76,0.02669835017562852],[122,259,77,0.01910251733585039],[122,259,78,0.011822456904408125],[122,259,79,0.004818956558485311],[122,260,64,0.14214227851280697],[122,260,65,0.13110906522892354],[122,260,66,0.12015478361149454],[122,260,67,0.10928119000406146],[122,260,68,0.09853884632647804],[122,260,69,0.08800565688544273],[122,260,70,0.07774569313640224],[122,260,71,0.0678087547624202],[122,260,72,0.058230934553585606],[122,260,73,0.04903527961651249],[122,260,74,0.040232548231992946],[122,260,75,0.03182206153883164],[122,260,76,0.023792649088694735],[122,260,77,0.016123687192434608],[122,260,78,0.00878622886707519],[122,260,79,0.0017442240926108868],[122,261,64,0.14010798248156148],[122,261,65,0.12909213937300787],[122,261,66,0.1181387159076028],[122,261,67,0.10724548946096196],[122,261,68,0.09646224548470632],[122,261,69,0.08586862828055229],[122,261,70,0.07553120897960981],[122,261,71,0.06550286853050022],[122,261,72,0.05582322763274034],[122,261,73,0.046519179866875225],[122,261,74,0.03760552748982938],[122,261,75,0.02908571921079926],[122,261,76,0.02095268911626777],[122,261,77,0.013189795774431166],[122,261,78,0.00577186042384338],[122,261,79,-0.0013336969634316284],[122,262,64,0.13823212087744746],[122,262,65,0.12723471127416192],[122,262,66,0.116283611499897],[122,262,67,0.10537260725621463],[122,262,68,0.09455015105718656],[122,262,69,0.08389677902435241],[122,262,70,0.07348085319348896],[122,262,71,0.06335777106709371],[122,262,72,0.053570255115214876],[122,262,73,0.044148751567102115],[122,262,74,0.035111938118080256],[122,262,75,0.026467340010885243],[122,262,76,0.01821205379141893],[122,262,77,0.010333577887637047],[122,262,78,0.0028107490214163925],[122,262,79,-0.004385216664943937],[122,263,64,0.13652550706176353],[122,263,65,0.1255483337552067],[122,263,66,0.11460201091082832],[122,263,67,0.10367638332043526],[122,263,68,0.09281796656179425],[122,263,69,0.08210722335550535],[122,263,70,0.0716134925824299],[122,263,71,0.061394031581446566],[122,263,72,0.051494159435460735],[122,263,73,0.041947514830575204],[122,263,74,0.03277642827525405],[122,263,75,0.023992408290264326],[122,263,76,0.015596741009484967],[122,263,77,0.00758120246846757],[122,263,78,-7.111729366300352E-5],[122,263,79,-0.007384879334457148],[122,264,64,0.13499053377759956],[122,264,65,0.12403601233292158],[122,264,66,0.113097734506716],[122,264,67,0.10216172271461484],[122,264,68,0.09127193441696445],[122,264,69,0.08050772002231342],[122,264,70,0.06993851223615119],[122,264,71,0.05962270869484029],[122,264,72,0.04960766329926767],[122,264,73,0.03992979657768741],[122,264,74,0.030614825033998223],[122,264,75,0.021678109252007992],[122,264,76,0.013125120345247071],[122,264,77,0.0049520241677990726],[122,264,78,-0.0028536174611587875],[122,264,79,-0.010312029419492892],[122,265,64,0.13362250857018212],[122,265,65,0.12269355599870106],[122,265,66,0.11176723381057427],[122,265,67,0.10082592776985305],[122,265,68,0.08991042526961797],[122,265,69,0.07909789269111547],[122,265,70,0.06845693984532049],[122,265,71,0.05804635166619688],[122,265,72,0.04791492208176343],[122,265,73,0.038101410557603195],[122,265,74,0.02863462144574306],[122,265,75,0.019533606077684985],[122,265,76,0.010807987350232424],[122,265,77,0.0024584063688249305],[122,265,78,-0.005522909460176601],[122,265,79,-0.010290791656513917],[122,266,64,0.13241125835130912],[122,266,65,0.12151119490599809],[122,266,66,0.11060120519550734],[122,266,67,0.09966028592683954],[122,266,68,0.08872547414579707],[122,266,69,0.07787068594633438],[122,266,70,0.06716279196786419],[122,266,71,0.05666020755754781],[122,266,72,0.046412563909251796],[122,266,73,0.03646050475078535],[122,266,74,0.026835608896478107],[122,266,75,0.017560438780706226],[122,266,76,0.008648714889778059],[122,266,77,7.062692537164864E-4],[122,266,78,-9.082507216361582E-4],[122,266,79,-0.002429290062869487],[122,267,64,0.1313430029490466],[122,267,65,0.12047546473935954],[122,267,66,0.10958646566683233],[122,267,67,0.09865191292325681],[122,267,68,0.08770456302478917],[122,267,69,0.07681405645237804],[122,267,70,0.06604464180546703],[122,267,71,0.0554536339099382],[122,267,72,0.045090917029255925],[122,267,73,0.03499857581319823],[122,267,74,0.025210654493124],[122,267,75,0.015753044625007775],[122,267,76,0.011437869996415998],[122,267,77,0.009434008569937796],[122,267,78,0.007528937020238807],[122,267,79,0.005716296342131304],[122,268,64,0.1304024972073468],[122,268,65,0.11957135727288079],[122,268,66,0.10870809018602955],[122,268,67,0.09778585073582703],[122,268,68,0.08683264921092486],[122,268,69,0.07591289863692856],[122,268,70,0.06508740785576554],[122,268,71,0.054411716323496485],[122,268,72,0.04393542391358525],[122,268,73,0.033701650080695374],[122,268,74,0.025611933565676377],[122,268,75,0.023153643033617367],[122,268,76,0.020766325049002797],[122,268,77,0.018462776536352424],[122,268,78,0.016248818551578295],[122,268,79,0.01412353945056101],[122,269,64,0.1295754409427876],[122,269,65,0.11878473637805333],[122,269,66,0.10795180975351107],[122,269,67,0.09704741946088524],[122,269,68,0.08609443866876214],[122,269,69,0.07515120406188379],[122,269,70,0.06427436262827334],[122,269,71,0.05351709017403442],[122,269,72,0.04292824139398688],[122,269,73,0.038551300946969985],[122,269,74,0.03579252581561956],[122,269,75,0.03305918814178868],[122,269,76,0.030375120714729024],[122,269,77,0.027757810515902148],[122,269,78,0.025218342803557874],[122,269,79,0.022761476779427806],[122,270,64,0.1288511558267148],[122,270,65,0.11810501851164126],[122,270,66,0.10730666924942643],[122,270,67,0.0964248221124747],[122,270,68,0.08547690329628005],[122,270,69,0.07451445347161016],[122,270,70,0.06358936045036406],[122,270,71,0.05513151309298],[122,270,72,0.05222547177734848],[122,270,73,0.04924620865096871],[122,270,74,0.04623135483983138],[122,270,75,0.04321388646229912],[122,270,76,0.04022162255504373],[122,270,77,0.037276856540036464],[122,270,78,0.0343961214907113],[122,270,79,0.031590089244906444],[122,271,64,0.12566258645469897],[122,271,65,0.11750929906159199],[122,271,66,0.10674944558404273],[122,271,67,0.09589411875673433],[122,271,68,0.08495508106103934],[122,271,69,0.07397650653519466],[122,271,70,0.06941584139187143],[122,271,71,0.06646480963976428],[122,271,72,0.06336386642624599],[122,271,73,0.060154949940132194],[122,271,74,0.05687743297039613],[122,271,75,0.053567294434771026],[122,271,76,0.050256425708343565],[122,271,77,0.04697207244322065],[122,271,78,0.04373641234609247],[122,271,79,0.04056626916086462],[122,272,64,0.12079478945630517],[122,272,65,0.11402209332726905],[122,272,66,0.10469158457197231],[122,272,67,0.09536855880132349],[122,272,68,0.08652015210812326],[122,272,69,0.08390916957868744],[122,272,70,0.08102999272500194],[122,272,71,0.07792317271798539],[122,272,72,0.0746306583538997],[122,272,73,0.07119450036387173],[122,272,74,0.06765568981996312],[122,272,75,0.0640531320216294],[122,272,76,0.060422757011476966],[122,272,77,0.056796767634737615],[122,272,78,0.053203025824325345],[122,272,79,0.049664577564283385],[122,273,64,0.1162360123602576],[122,273,65,0.1077247957845349],[122,273,66,0.09837198739219874],[122,273,67,0.09524934409453642],[122,273,68,0.09500232038505885],[122,273,69,0.09478702374699223],[122,273,70,0.09265741608309287],[122,273,71,0.08940446985670375],[122,273,72,0.08593044789533971],[122,273,73,0.08227729233448358],[122,273,74,0.07848740432742395],[122,273,75,0.07460242148445187],[122,273,76,0.07066213385005221],[122,273,77,0.0667035395557933],[122,273,78,0.06276004104568915],[122,273,79,0.0588607825322854],[122,274,64,0.11112193014668463],[122,274,65,0.10237287674096186],[122,274,66,0.10192125846700945],[122,274,67,0.10152778108805409],[122,274,68,0.1012061462410831],[122,274,69,0.10094481679116421],[122,274,70,0.10072334545841062],[122,274,71,0.10051464011523681],[122,274,72,0.09717360299246058],[122,274,73,0.09332019103679787],[122,274,74,0.08929687950720293],[122,274,75,0.08514774833465777],[122,274,76,0.08091614666309621],[122,274,77,0.0766435624203459],[122,274,78,0.07236863485379083],[122,274,79,0.06812631088850092],[122,275,64,0.10811892109667975],[122,275,65,0.1052738639157263],[122,275,66,0.10305143200251127],[122,275,67,0.10143995417167195],[122,275,68,0.10041511952135562],[122,275,69,0.09993945859059772],[122,275,70,0.09996206609104635],[122,275,71,0.10042132101771262],[122,275,72,0.10124418108325817],[122,275,73,0.10234157905642877],[122,275,74,0.10001196272236589],[122,275,75,0.0956238281683124],[122,275,76,0.09112706317141955],[122,275,77,0.08656721920954083],[122,275,78,0.0819877317786434],[122,275,79,0.07742890643413453],[122,276,64,0.10459466685711327],[122,276,65,0.10179173078487186],[122,276,66,0.09964651918937706],[122,276,67,0.09814599390182066],[122,276,68,0.09726351099679675],[122,276,69,0.09695821268938631],[122,276,70,0.09717465977693296],[122,276,71,0.09784548383609315],[122,276,72,0.0988905824185865],[122,276,73,0.10021304465391445],[122,276,74,0.10170068254905473],[122,276,75,0.10325328265742889],[122,276,76,0.10123849933008182],[122,276,77,0.09642479863206758],[122,276,78,0.09157471688631694],[122,276,79,0.08673334869731811],[122,277,64,0.10144689681416658],[122,277,65,0.09868226994287926],[122,277,66,0.0966091937779267],[122,277,67,0.09521338379525818],[122,277,68,0.09446601096307183],[122,277,69,0.09432300376362546],[122,277,70,0.09472458944036277],[122,277,71,0.09559787692069632],[122,277,72,0.09685595134004532],[122,277,73,0.09839430574071462],[122,277,74,0.1000977030118878],[122,277,75,0.10186538017277869],[122,277,76,0.10361711221237835],[122,277,77,0.10529162924206448],[122,277,78,0.10108621108143304],[122,277,79,0.09600223168531476],[122,278,64,0.09868858822299886],[122,278,65,0.09595844770106937],[122,278,66,0.09395221538605636],[122,278,67,0.09265448959235245],[122,278,68,0.09203441754577618],[122,278,69,0.09204490721392067],[122,278,70,0.09262207674772127],[122,278,71,0.09368776708819337],[122,278,72,0.09514853466016071],[122,278,73,0.09689256375369343],[122,278,74,0.09880165675242153],[122,278,75,0.10077448402207256],[122,278,76,0.1027298691358558],[122,278,77,0.1046052277758493],[122,278,78,0.10635518538888628],[122,278,79,0.10519680211726548],[122,279,64,0.09633063522496293],[122,279,65,0.09363120662447655],[122,279,66,0.09168639162064557],[122,279,67,0.09047980770807845],[122,279,68,0.08997875150797047],[122,279,69,0.0901333204015074],[122,279,70,0.09087576986388196],[122,279,71,0.09212295505173573],[122,279,72,0.09377522080366868],[122,279,73,0.09571376725217295],[122,279,74,0.09781754609558602],[122,279,75,0.09998465542799795],[122,279,76,0.10213296860383803],[122,279,77,0.1041985898682325],[122,279,78,0.10613450847389416],[122,279,79,0.10790943733689007],[122,280,64,0.09438164904203028],[122,280,65,0.091709257991749],[122,280,66,0.08982036360513623],[122,280,67,0.0886977446749112],[122,280,68,0.08830703047790045],[122,280,69,0.08859573252503838],[122,280,70,0.08949250980611001],[122,280,71,0.09090953900899396],[122,280,72,0.09274130127673141],[122,280,73,0.09486237177525225],[122,280,74,0.09714898153910978],[122,280,75,0.09949866217946113],[122,280,76,0.10182834986573852],[122,280,77,0.10407285245747316],[122,280,78,0.10618353325960656],[122,280,79,0.10812717128001664],[122,281,64,0.09284779473556498],[122,281,65,0.0901989112956556],[122,281,66,0.08836042897518975],[122,281,67,0.08731443443219011],[122,281,68,0.08702508135339349],[122,281,69,0.08743753295823253],[122,281,70,0.08847713550053377],[122,281,71,0.09005171713702875],[122,281,72,0.09205027121642467],[122,281,73,0.09434113892890994],[122,281,74,0.09679797979789195],[122,281,75,0.09931777602818359],[122,281,76,0.10181655134868783],[122,281,77,0.10422784425921044],[122,281,78,0.10650141437373928],[122,281,79,0.10860211703062372],[122,282,64,0.09173281396393346],[122,282,65,0.08910409028022936],[122,282,66,0.08731055187851988],[122,282,67,0.08633374302102387],[122,282,68,0.08613654045249541],[122,282,69,0.08666200762084325],[122,282,70,0.08783247711368242],[122,282,71,0.08955177856068874],[122,282,72,0.0917038185657385],[122,282,73,0.09415112420144106],[122,282,74,0.09676495061693846],[122,282,75,0.09944175881342854],[122,282,76,0.10209669635321106],[122,282,77,0.10466207122310944],[122,282,78,0.10708607354710181],[122,282,79,0.10933165715348875],[122,283,64,0.09103850923199464],[122,283,65,0.0884268111199149],[122,283,66,0.08667283565736789],[122,283,67,0.08575773640507722],[122,283,68,0.085643317149802],[122,283,69,0.08627079912767699],[122,283,70,0.08755981340390118],[122,283,71,0.08941055852924956],[122,283,72,0.09170227757145799],[122,283,73,0.09429212912328866],[122,283,74,0.0970491478277678],[122,283,75,0.09986931257367071],[122,283,76,0.10266694229362577],[122,283,77,0.10537316487929022],[122,283,78,0.10793464693473104],[122,283,79,0.11031247481829953],[122,284,64,0.0907642373754966],[122,284,65,0.08816666988564675],[122,284,66,0.08644700496912838],[122,284,67,0.08558615794951502],[122,284,68,0.08554506742875734],[122,284,69,0.08626337711770454],[122,284,70,0.08765833949424834],[122,284,71,0.0896269042591964],[122,284,72,0.0920440932711199],[122,284,73,0.09476216489091749],[122,284,74,0.09764813255514249],[122,284,75,0.10059754275714289],[122,284,76,0.10352394429778822],[122,284,77,0.10635734666492302],[122,284,78,0.10904295044558465],[122,284,79,0.1115400203318328],[122,285,64,0.09090669440909582],[122,285,65,0.08832062195753182],[122,285,66,0.08663018035059578],[122,285,67,0.08581619876187219],[122,285,68,0.08583896064435581],[122,285,69,0.0866368020828508],[122,285,70,0.08812492838686486],[122,285,71,0.09019743471191588],[122,285,72,0.09272558004822978],[122,285,73,0.09555721012118173],[122,285,74,0.09855753052406263],[122,285,75,0.10162171538436116],[122,285,76,0.10466261246957598],[122,285,77,0.10760918546315301],[122,285,78,0.11040523765541532],[122,285,79,0.11300826943041953],[122,286,64,0.09145993577064832],[122,286,65,0.08888299739230582],[122,286,66,0.08721688921801635],[122,286,67,0.08644250487783572],[122,286,68,0.08651968347500338],[122,286,69,0.08738572667401606],[122,286,70,0.08895413019634252],[122,286,71,0.09111653828675237],[122,286,72,0.09374091824705416],[122,286,73,0.0966712067511582],[122,286,74,0.09977102752306283],[122,286,75,0.10293525228152384],[122,286,76,0.1060761070217936],[122,286,77,0.1091215926806865],[122,286,78,0.11201419478135488],[122,286,79,0.11470971800045132],[122,287,64,0.09241543316933765],[122,287,65,0.0898455533708975],[122,287,66,0.08819911437472794],[122,287,67,0.08745722233301367],[122,287,68,0.08757948209056915],[122,287,69,0.08850243550746922],[122,287,70,0.09013821012516732],[122,287,71,0.09237640946039727],[122,287,72,0.09508218990717965],[122,287,73,0.0980960952072456],[122,287,74,0.10128040425804025],[122,287,75,0.10452976578806084],[122,287,76,0.10775587292162647],[122,287,77,0.11088585682539082],[122,287,78,0.11386097508915755],[122,287,79,0.11663541610725292],[122,288,64,0.09376216801122317],[122,288,65,0.09119756369967669],[122,288,66,0.08956637999995531],[122,288,67,0.08885008009425599],[122,288,68,0.08900824251019568],[122,288,69,0.08997692344518077],[122,288,70,0.0916672251548098],[122,288,71,0.09396712434618831],[122,288,72,0.09673945359141611],[122,288,73,0.09982188881712095],[122,288,74,0.10307561057022474],[122,288,75,0.10639513291196878],[122,288,76,0.10969171402231132],[122,288,77,0.11289171755762362],[122,288,78,0.11593527270687254],[122,288,79,0.11877504130616134],[122,289,64,0.09548676140236279],[122,289,65,0.09292594536553833],[122,289,66,0.09130587511891591],[122,289,67,0.09060851085068],[122,289,68,0.09079360915001944],[122,289,69,0.09179701234924692],[122,289,70,0.09352913945260932],[122,289,71,0.09587675517346245],[122,289,72,0.09870085830719044],[122,289,73,0.10183678746469338],[122,289,74,0.10514487901842662],[122,289,75,0.10851960893306495],[122,289,76,0.11187190668115599],[122,289,77,0.11512747921541666],[122,289,78,0.11822543584507023],[122,289,79,0.12111701123593366],[122,290,64,0.09757364072939978],[122,290,65,0.09501542214471193],[122,290,66,0.09340261455412535],[122,290,67,0.09271780966429083],[122,290,68,0.09292114156068998],[122,290,69,0.09394850631029406],[122,290,70,0.0957099784943452],[122,290,71,0.09809152368685753],[122,290,72,0.10095279652132488],[122,290,73,0.10412733048795597],[122,290,74,0.10747487782546694],[122,290,75,0.11088998045406745],[122,290,76,0.11428335286381397],[122,290,77,0.11758016381342767],[122,290,78,0.1207186194235372],[122,290,79,0.12364863549439964],[122,291,64,0.10000524281759288],[122,291,65,0.09744872526527681],[122,291,66,0.0958396373578786],[122,291,67,0.09516133048017544],[122,291,68,0.09537450935466862],[122,291,69,0.09641538534984162],[122,291,70,0.09819402190247062],[122,291,71,0.10059599346553683],[122,291,72,0.10348009626817334],[122,291,73,0.1066785888197026],[122,291,74,0.11005090318875282],[122,291,75,0.11349175789946153],[122,291,76,0.11691177273477704],[122,291,77,0.12023570351561674],[122,291,78,0.1234009771043939],[122,291,79,0.12635630679631155],[122,292,64,0.10276225366641212],[122,292,65,0.1002068311235052],[122,292,66,0.09859824272603629],[122,292,67,0.097920720496394],[122,292,68,0.09813572532342879],[122,292,69,0.09918003759675059],[122,292,70,0.10096403500013695],[122,292,71,0.10337330116246657],[122,292,72,0.10626625235124765],[122,292,73,0.10947439637124678],[122,292,74,0.11285711095513906],[122,292,75,0.11630940746229568],[122,292,76,0.11974193673422584],[122,292,77,0.12307917258179185],[122,292,78,0.12625789273178228],[122,292,79,0.1292257314135412],[122,293,64,0.1058238847625933],[122,293,65,0.10326923605392546],[122,293,66,0.10165826339300088],[122,293,67,0.10097619239345901],[122,293,68,0.10118541674445014],[122,293,69,0.102223529937645],[122,293,70,0.10400153908089649],[122,293,71,0.10640542666363151],[122,293,72,0.10929369663821698],[122,293,73,0.11249762065902347],[122,293,74,0.11587678765995385],[122,293,75,0.11932662249878373],[122,293,76,0.12275793714111899],[122,293,77,0.126095058787901],[122,293,78,0.12927425117799984],[122,293,79,0.13224219889749778],[122,294,64,0.10916818597063588],[122,294,65,0.1066142681530905],[122,294,66,0.10499837650787391],[122,294,67,0.10430683442338956],[122,294,68,0.10450313487799118],[122,294,69,0.10552591714129234],[122,294,70,0.10728712039406924],[122,294,71,0.10967350216717564],[122,294,72,0.11254410744926813],[122,294,73,0.11573047267406039],[122,294,74,0.11909266093017701],[122,294,75,0.12252663437070199],[122,294,76,0.12594349912250408],[122,294,77,0.12926757432005653],[122,294,78,0.1324347485960637],[122,294,79,0.13539089108375202],[122,295,64,0.11277239500089159],[122,295,65,0.11021943615719998],[122,295,66,0.10859645199193835],[122,295,67,0.1078909583584865],[122,295,68,0.10806770265379045],[122,295,69,0.10906658945709574],[122,295,70,0.11080077784592535],[122,295,71,0.11315816018262076],[122,295,72,0.11599875803898152],[122,295,73,0.1191548559944765],[122,295,74,0.12248724925192744],[122,295,75,0.12589256273573812],[122,295,76,0.12928233126921368],[122,295,77,0.13258100614245324],[122,295,78,0.13572424207887057],[122,295,79,0.13865723037903177],[122,296,64,0.11661332345502995],[122,296,65,0.11406181537335991],[122,296,66,0.11242993837725268],[122,296,67,0.11170648529961513],[122,296,68,0.11185760054747718],[122,296,69,0.11282465868747404],[122,296,70,0.11452230941646174],[122,296,71,0.11683992044993907],[122,296,72,0.11963890417149281],[122,296,73,0.12275275514077635],[122,296,74,0.12604325110202869],[122,296,75,0.12940780528556006],[122,296,76,0.13275851561770946],[122,296,77,0.13602010583894397],[122,296,78,0.13912813872471175],[122,296,79,0.1420272673303478],[122,297,64,0.12066777944910917],[122,297,65,0.11811847066471093],[122,297,66,0.11647628612658639],[122,297,67,0.11573136934422473],[122,297,68,0.11585139064692629],[122,297,69,0.11677938273436927],[122,297,70,0.11843173729201056],[122,297,71,0.12069961577871943],[122,297,72,0.12344621078918949],[122,297,73,0.12650666317418818],[122,297,74,0.12974397344390076],[122,297,75,0.13305646693185477],[122,297,76,0.1363569371583268],[122,297,77,0.1395705189285258],[122,297,78,0.14263282410939965],[122,297,79,0.14548810747650778],[122,298,64,0.12491302681403488],[122,298,65,0.12236691648920484],[122,298,66,0.12071340843447767],[122,298,67,0.1199440591138845],[122,298,68,0.12002817890833284],[122,298,69,0.12091062861965382],[122,298,70,0.12250977171345181],[122,298,71,0.12471885680719808],[122,298,72,0.12740321777470298],[122,298,73,0.13040004853780882],[122,298,74,0.13357379958754131],[122,298,75,0.13682382844009733],[122,298,76,0.1400637528296795],[122,298,77,0.14321925365449423],[122,298,78,0.1462261301647616],[122,298,79,0.1490283774817719],[122,299,64,0.12932728087355616],[122,299,65,0.1267856139921822],[122,299,66,0.12512017950956367],[122,299,67,0.1243239971414894],[122,299,68,0.1243681156021636],[122,299,69,0.12519937397959544],[122,299,70,0.12673831354018944],[122,299,71,0.1288805356813145],[122,299,72,0.13149384480636517],[122,299,73,0.13441786114072202],[122,299,74,0.137518696413762],[122,299,75,0.14069685451121844],[122,299,76,0.14386689999939412],[122,299,77,0.1469551892474378],[122,299,78,0.1498978424636731],[122,299,79,0.1526387305518248],[122,300,64,0.1338902407997904],[122,300,65,0.13135450515273936],[122,300,66,0.12967697033817585],[122,300,67,0.1288521571181254],[122,300,68,0.1288529339489709],[122,300,69,0.12962824703336537],[122,300,70,0.13110099552987622],[122,300,71,0.1331693686537772],[122,300,72,0.135703935307109],[122,300,73,0.13854707768507202],[122,300,74,0.14156676096266324],[122,300,75,0.14466474131115317],[122,300,76,0.147756644431154],[122,300,77,0.1507696236620511],[122,300,78,0.1536402469116102],[122,300,79,0.15631239113204193],[122,301,64,0.1385836585461511],[122,301,65,0.1360555839837606],[122,301,66,0.1343662219290716],[122,301,67,0.13351161899946642],[122,301,68,0.1334665269449447],[122,301,69,0.13418210502546693],[122,301,70,0.13558376233376163],[122,301,71,0.13757247760301233],[122,301,72,0.140021839486688],[122,301,73,0.14277728623596492],[122,301,74,0.1457088063862182],[122,301,75,0.14871950344813994],[122,301,76,0.15172616773792458],[122,301,77,0.15465686078763802],[122,301,78,0.15744871584459122],[122,301,79,0.1600457388879196],[122,302,64,0.1433919443578267],[122,302,65,0.1408735047857635],[122,302,66,0.13917305603945365],[122,302,67,0.1382881819718549],[122,302,68,0.13819556237735267],[122,302,69,0.1388486511422315],[122,302,70,0.14017548920781506],[122,302,71,0.14208001047215085],[122,302,72,0.14443903647737083],[122,302,73,0.14710131003435625],[122,302,74,0.14993898726512625],[122,302,75,0.15285660039793297],[122,302,76,0.15577219432152245],[122,302,77,0.1586148371324694],[122,302,78,0.161322333533672],[122,302,79,0.1638389319678366],[122,303,64,0.14830280885976677],[122,303,65,0.14579622745451382],[122,303,66,0.14408592338223108],[122,303,67,0.1431710152780192],[122,303,68,0.1430301360298215],[122,303,69,0.14361908990233854],[122,303,70,0.14486863943957565],[122,303,71,0.14668580062800085],[122,303,72,0.14895079556305596],[122,303,73,0.15151587055286805],[122,303,74,0.15425546428987716],[122,303,75,0.15707560237686702],[122,303,76,0.15989565779846585],[122,303,77,0.16264578798192922],[122,303,78,0.16526456109593007],[122,303,79,0.1676965695480786],[122,304,64,0.1533079417220806],[122,304,65,0.150815699842315],[122,304,66,0.14909728931442925],[122,304,67,0.14815334690233503],[122,304,68,0.1479644630773696],[122,304,69,0.14848882102126543],[122,304,70,0.1496599604906389],[122,304,71,0.15138806513991973],[122,304,72,0.1535568765017232],[122,304,73,0.15602228979445287],[122,304,74,0.1586611083059461],[122,304,75,0.1613808956626953],[122,304,76,0.16410240691202913],[122,304,77,0.16675695303037702],[122,304,78,0.16928394081186476],[122,304,79,0.17162839366005433],[122,305,64,0.1584037269029872],[122,305,65,0.15592857717310887],[122,305,66,0.1542043570068836],[122,305,67,0.15323319011576775],[122,305,68,0.15299760767132176],[122,305,69,0.15345817174980395],[122,305,70,0.1545512188549127],[122,305,71,0.15619014197871572],[122,305,72,0.15826226894134943],[122,305,73,0.1606272318340326],[122,305,74,0.16316424372324406],[122,305,75,0.1657824273633257],[122,305,76,0.16840395093062577],[122,305,77,0.17096132148684573],[122,305,78,0.1733948398493316],[122,305,79,0.1756500302998229],[122,306,64,0.16359199446929096],[122,306,65,0.16113697851136688],[122,306,66,0.15940982809519788],[122,306,67,0.15841410788047128],[122,306,68,0.15813425071409037],[122,306,69,0.15853316768661962],[122,306,70,0.15954997363262372],[122,306,71,0.16110126613556097],[122,306,72,0.16307797092927223],[122,306,73,0.16534348360309398],[122,306,74,0.1677794312898089],[122,306,75,0.17029648963343977],[122,306,76,0.1728182445325028],[122,306,77,0.17527841665456156],[122,306,78,0.1776182333939987],[122,306,79,0.17978376981991656],[122,307,64,0.16887964294119118],[122,307,65,0.166448118517038],[122,307,66,0.16472153581727647],[122,307,67,0.16370483963197396],[122,307,68,0.16338430306091103],[122,307,69,0.16372512592949856],[122,307,70,0.1646691441776071],[122,307,71,0.1661361076095563],[122,307,72,0.16802049468296437],[122,307,73,0.1701894277656814],[122,307,74,0.17252690909893795],[122,307,75,0.17494513116325328],[122,307,76,0.17736907318673684],[122,307,77,0.17973365943124597],[122,307,78,0.1819810510873509],[122,307,79,0.18405790150731785],[122,308,64,0.1742551683015825],[122,308,65,0.17185090699377217],[122,308,66,0.17012896525089555],[122,308,67,0.16909559742657368],[122,308,68,0.16873884214433033],[122,308,69,0.16902611075955537],[122,308,70,0.1699018825086254],[122,308,71,0.171288982777515],[122,308,72,0.1730853696115773],[122,308,73,0.17516182653840373],[122,308,74,0.1774046835857721],[122,308,75,0.17972761334143375],[122,308,76,0.18205695831282181],[122,308,77,0.18432882677283802],[122,308,78,0.18648630860853876],[122,308,79,0.1884766490171521],[122,309,64,0.17968557182324224],[122,309,65,0.17731277694514963],[122,309,66,0.17560000589862365],[122,309,67,0.17455474733005552],[122,309,68,0.17416672626603782],[122,309,69,0.174405484588537],[122,309,70,0.17521806412552043],[122,309,71,0.17653028753957437],[122,309,72,0.1782435192623938],[122,309,73,0.18023214267788515],[122,309,74,0.18238479369146532],[122,309,75,0.18461661631380863],[122,309,76,0.18685530420378063],[122,309,77,0.18903813925457322],[122,309,78,0.1911091368908784],[122,309,79,0.19301614384150576],[122,310,64,0.18513660847475463],[122,310,65,0.18279982554350133],[122,310,66,0.18110112370179254],[122,310,67,0.18004914636846692],[122,310,68,0.17963522180676927],[122,310,69,0.17983093783178575],[122,310,70,0.18058581530241685],[122,310,71,0.18182859402646154],[122,310,72,0.18346397115879393],[122,310,73,0.1853698722564573],[122,310,74,0.18743724159613848],[122,310,75,0.18958271334802024],[122,310,76,0.19173533806512905],[122,310,77,0.19383357046159308],[122,310,78,0.19582235101193235],[122,310,79,0.19765013473450618],[122,311,64,0.19057400160246074],[122,311,65,0.18827803117009423],[122,311,66,0.1865985847570328],[122,311,67,0.18554537710369817],[122,311,68,0.18511125257787447],[122,311,69,0.18526975654315972],[122,311,70,0.18597280194599308],[122,311,71,0.1871519628815309],[122,311,72,0.1887151937797656],[122,311,73,0.1905439064763449],[122,311,74,0.19253137818375016],[122,311,75,0.19459577756206517],[122,311,76,0.19666753463264763],[122,311,77,0.19868628533446925],[122,311,78,0.20059789750279297],[122,311,79,0.20235143878762135],[122,312,64,0.19596386449431497],[122,312,65,0.19371367509684803],[122,312,66,0.1920588757829943],[122,312,67,0.19101016562002243],[122,312,68,0.1905618141626046],[122,312,69,0.19068923208009425],[122,312,70,0.19134663372288466],[122,312,71,0.19246834119538797],[122,312,72,0.19396548789094215],[122,312,73,0.1957229162512058],[122,312,74,0.19763628084970367],[122,312,75,0.19962535295605022],[122,312,76,0.20162198043351276],[122,312,77,0.2035669976588586],[122,312,78,0.20540720504703153],[122,312,79,0.20709228528857426],[122,313,64,0.20127394746926985],[122,313,65,0.19907448453000925],[122,313,66,0.19744974245729147],[122,313,67,0.19641131482713786],[122,313,68,0.1959548022202041],[122,313,69,0.1960573848347258],[122,313,70,0.19667548406423813],[122,313,71,0.19774608008048838],[122,313,72,0.19918340346616248],[122,313,73,0.20087567074471843],[122,313,74,0.20272097627677987],[122,313,75,0.2046407842921585],[122,313,76,0.20656841385681596],[122,313,77,0.20844592360768613],[122,313,78,0.2102210549451532],[122,313,79,0.2118441067028755],[122,314,64,0.2064734979207411],[122,314,65,0.2043295106663312],[122,314,66,0.20274008418560233],[122,314,67,0.20171761465553606],[122,314,68,0.2012589368651535],[122,314,69,0.20134290163162666],[122,314,70,0.2019280395278881],[122,314,71,0.20295389509080183],[122,314,72,0.20433771044185567],[122,314,73,0.20597101794311623],[122,314,74,0.20775443039190497],[122,314,75,0.20961121599637497],[122,314,76,0.2114762325406252],[122,314,77,0.213292797120968],[122,314,78,0.21500960395032778],[122,314,79,0.21657756837391984],[122,315,64,0.21153260426979426],[122,315,65,0.2094485779012862],[122,315,66,0.20789950671755408],[122,315,67,0.2068984960164283],[122,315,68,0.2064435157245677],[122,315,69,0.20651498548891833],[122,315,70,0.20707344376027206],[122,315,71,0.20806090181266162],[122,315,72,0.20939752333826367],[122,315,73,0.21097809571052079],[122,315,74,0.2127058431549695],[122,315,75,0.21450596780084158],[122,315,76,0.21631494680203733],[122,315,77,0.2180773978684051],[122,315,78,0.21974298331770475],[122,315,79,0.22126323502291723],[122,316,64,0.21642255223515172],[122,316,65,0.21440264993868535],[122,316,66,0.21289869681297974],[122,316,67,0.21192441276934937],[122,316,68,0.21147880200926883],[122,316,69,0.21154374868359424],[122,316,70,0.2120816945680984],[122,316,71,0.21303701611015552],[122,316,72,0.21433270403636817],[122,316,73,0.21586673666779205],[122,316,74,0.2175450552173595],[122,316,75,0.21929494288832221],[122,316,76,0.22105458898565256],[122,316,77,0.22276996151745349],[122,316,78,0.22439170969221459],[122,316,79,0.22587198192914731],[122,317,64,0.22111621969262657],[122,317,65,0.21916423101497107],[122,317,66,0.21770982859535432],[122,317,67,0.21676725200205396],[122,317,68,0.21633643757934784],[122,317,69,0.21640062755416375],[122,317,70,0.2169240595333795],[122,317,71,0.21785336978466255],[122,317,72,0.21911427690490765],[122,317,73,0.220607882422944],[122,317,74,0.22224296100849175],[122,317,75,0.22394903962997592],[122,317,76,0.22566612367251493],[122,317,77,0.22734158824293463],[122,317,78,0.2289270917441055],[122,317,79,0.22863029677731567],[122,318,64,0.22558847573202492],[122,318,65,0.22370777141666998],[122,318,66,0.22230697432055485],[122,318,67,0.22140074887044892],[122,318,68,0.22098986073235197],[122,318,69,0.2210588022009362],[122,318,70,0.22157349670727677],[122,318,71,0.22248273149343306],[122,318,72,0.2237148493577573],[122,318,73,0.22517400338657367],[122,318,74,0.22677192754694428],[122,318,75,0.2284405691786442],[122,318,76,0.23012186387266054],[122,318,77,0.23176465735083907],[122,318,78,0.23061210614826572],[122,318,79,0.22399901201533506],[122,319,64,0.22981658391151688],[122,319,65,0.228010077291005],[122,319,66,0.22666651956094166],[122,319,67,0.22580090599855757],[122,319,68,0.2254147287140911],[122,319,69,0.22549362108393448],[122,319,70,0.22600508038274864],[122,319,71,0.2268999329272022],[122,319,72,0.22810903784166003],[122,319,73,0.2295395241722924],[122,319,74,0.23110621897617012],[122,319,75,0.23274367891763673],[122,319,76,0.23439589320125906],[122,319,77,0.23239086321440494],[122,319,78,0.22554221030751548],[122,319,79,0.21901771159407588],[123,-64,64,0.345618052203312],[123,-64,65,0.3516637065781039],[123,-64,66,0.3578121510157914],[123,-64,67,0.36404768678901195],[123,-64,68,0.37037223565958993],[123,-64,69,0.3768006777177926],[123,-64,70,0.38334389135067426],[123,-64,71,0.3900078697583522],[123,-64,72,0.39679332664384276],[123,-64,73,0.40369541715325963],[123,-64,74,0.4107035770399108],[123,-64,75,0.4178014828819238],[123,-64,76,0.4249671360233258],[123,-64,77,0.4321730727347103],[123,-64,78,0.4393867029030515],[123,-64,79,0.446570779363516],[123,-63,64,0.34822832884108296],[123,-63,65,0.3543709403197955],[123,-63,66,0.36062135935273826],[123,-63,67,0.3669641068086554],[123,-63,68,0.37340032725653427],[123,-63,69,0.3799434749044423],[123,-63,70,0.3866030039185684],[123,-63,71,0.3933835274121711],[123,-63,72,0.40028444984116923],[123,-63,73,0.4072997122549458],[123,-63,74,0.4144176532439287],[123,-63,75,0.4216209882830009],[123,-63,76,0.4288869100122483],[123,-63,77,0.4361873118256517],[123,-63,78,0.44348913695538555],[123,-63,79,0.45075485504699925],[123,-62,64,0.3510208632682732],[123,-62,65,0.35725173118010856],[123,-62,66,0.363593861223217],[123,-62,67,0.3700323494888175],[123,-62,68,0.37656752469465327],[123,-62,69,0.383211122438843],[123,-62,70,0.38997099214407976],[123,-62,71,0.3968502938943607],[123,-62,72,0.40384714466586047],[123,-62,73,0.4109543752712769],[123,-62,74,0.41815940074691516],[123,-62,75,0.425444206771431],[123,-62,76,0.43278545455040024],[123,-62,77,0.4401547064333433],[123,-62,78,0.44751877435083415],[123,-62,79,0.45484019297138545],[123,-61,64,0.35397979588910167],[123,-61,65,0.36028993147260874],[123,-61,66,0.3667131702809249],[123,-61,67,0.3732355054631038],[123,-61,68,0.37985642655949886],[123,-61,69,0.3865857041453487],[123,-61,70,0.39342944237792893],[123,-61,71,0.4003893086335747],[123,-61,72,0.40746218110873905],[123,-61,73,0.41463990524661126],[123,-61,74,0.4219091616251426],[123,-61,75,0.42925144780484487],[123,-61,76,0.4366431764832989],[123,-61,77,0.4440558921395171],[123,-61,78,0.4514566081764748],[123,-61,79,0.4588082663867394],[123,-60,64,0.3570855706788166],[123,-60,65,0.36346580975856374],[123,-60,66,0.3699593824639131],[123,-60,67,0.3765534522685686],[123,-60,68,0.3832466575530526],[123,-60,69,0.3900466075341068],[123,-60,70,0.39695756179826996],[123,-60,71,0.40397968741644913],[123,-60,72,0.41110869623235463],[123,-60,73,0.4183355893285722],[123,-60,74,0.4256465112301454],[123,-60,75,0.4330227162715163],[123,-60,76,0.4404406494049927],[123,-60,77,0.4478721435691746],[123,-60,78,0.4552847355652613],[123,-60,79,0.4626421022103482],[123,-59,64,0.3603156599690748],[123,-59,65,0.3667567880351509],[123,-59,66,0.37330992862297974],[123,-59,67,0.3799636242696323],[123,-59,68,0.3867156555215422],[123,-59,69,0.39357132541003714],[123,-59,70,0.4005329900677121],[123,-59,71,0.4075993378840718],[123,-59,72,0.414765005957136],[123,-59,73,0.4220203022837259],[123,-59,74,0.4293510361876825],[123,-59,75,0.43673845935515687],[123,-59,76,0.44415931970252714],[123,-59,77,0.45158603014704307],[123,-59,78,0.4589869541841986],[123,-59,79,0.46632681000157206],[123,-58,64,0.3636454382189728],[123,-58,65,0.37013832746336905],[123,-58,66,0.37674047473959427],[123,-58,67,0.38344192867174076],[123,-58,68,0.39023960231074445],[123,-58,69,0.397136397994145],[123,-58,70,0.4041327469193575],[123,-58,71,0.41122590496380457],[123,-58,72,0.4184095393041676],[123,-58,73,0.42567341949303134],[123,-58,74,0.4330032154441171],[123,-58,75,0.4403804046514552],[123,-58,76,0.4477822908286411],[123,-58,77,0.45518213600327023],[123,-58,78,0.4625494079400494],[123,-58,79,0.4698501445963167],[123,-57,64,0.36704920414458136],[123,-57,65,0.3735849619608039],[123,-57,66,0.3802259690312824],[123,-57,67,0.38696380691335847],[123,-57,68,0.3937944977446624],[123,-57,69,0.4007184948774953],[123,-57,70,0.40773431503436824],[123,-57,71,0.4148378456594631],[123,-57,72,0.42202189459680933],[123,-57,73,0.429275843027384],[123,-57,74,0.4365854040773824],[123,-57,75,0.44393248938862034],[123,-57,76,0.4512951858073673],[123,-57,77,0.458647844201432],[123,-57,78,0.465961282258248],[123,-57,79,0.473203102951421],[123,-56,64,0.3704981432868587],[123,-56,65,0.37706814074824413],[123,-56,66,0.38373835289110136],[123,-56,67,0.39050180978782095],[123,-56,68,0.3973535985150881],[123,-56,69,0.40429171862414875],[123,-56,70,0.4113128113211295],[123,-56,71,0.41841147349608804],[123,-56,72,0.42557976539135356],[123,-56,73,0.4328068203321761],[123,-56,74,0.4400785588985636],[123,-56,75,0.4473775098006398],[123,-56,76,0.45468273958991534],[123,-56,77,0.46196989319703363],[123,-56,78,0.46921134713407503],[123,-56,79,0.4763764770387031],[123,-55,64,0.373942350665769],[123,-55,65,0.38053743893655645],[123,-55,66,0.3872268665399935],[123,-55,67,0.39400496625916215],[123,-55,68,0.4008658605973629],[123,-55,69,0.40780515793146055],[123,-55,70,0.41481771591681865],[123,-55,71,0.42189695669812166],[123,-55,72,0.4290343284408745],[123,-55,73,0.43621886777776964],[123,-55,74,0.44343686552105144],[123,-55,75,0.45067163788021775],[123,-55,76,0.4579034052991318],[123,-55,77,0.465109280889373],[123,-55,78,0.4722633702886571],[123,-55,79,0.479336984616683],[123,-54,64,0.3773281991409548],[123,-54,65,0.3839385110688634],[123,-54,66,0.39063661721383197],[123,-54,67,0.3974179759981754],[123,-54,68,0.4042757465354049],[123,-54,69,0.41120328119945876],[123,-54,70,0.41819380452864713],[123,-54,71,0.4252397232784346],[123,-54,72,0.43233203820866045],[123,-54,73,0.4394598557855973],[123,-54,74,0.44661000212911356],[123,-54,75,0.45376674142793866],[123,-54,76,0.46091160092516975],[123,-54,77,0.4680233044432034],[123,-54,78,0.4750778162733915],[123,-54,79,0.48204849710320175],[123,-53,64,0.3806099928300906],[123,-53,65,0.3872251800650071],[123,-53,66,0.39392113901739617],[123,-53,67,0.4006942511949419],[123,-53,68,0.40753674076899504],[123,-53,69,0.41443990171478434],[123,-53,70,0.421395524387369],[123,-53,71,0.42839519355983424],[123,-53,72,0.4354296475407643],[123,-53,73,0.4424882364363265],[123,-53,74,0.4495584818738743],[123,-53,75,0.45662574040078635],[123,-53,76,0.4636729726553417],[123,-53,77,0.47068062027721963],[123,-53,78,0.4776265923849193],[123,-53,79,0.4844863632982357],[123,-52,64,0.38375019695131496],[123,-52,65,0.3903596550195598],[123,-52,66,0.3970425954684234],[123,-52,67,0.40379610137711114],[123,-52,68,0.41061151441403765],[123,-52,69,0.41747831985320316],[123,-52,70,0.4243871112557621],[123,-52,71,0.43132886943944193],[123,-52,72,0.4382942668247939],[123,-52,73,0.4452730704525545],[123,-52,74,0.45225364598321693],[123,-52,75,0.4592225648901722],[123,-52,76,0.4661643169441213],[123,-52,77,0.47306112996031313],[123,-52,78,0.4798928986427222],[123,-52,79,0.48663722421273736],[123,-51,64,0.3867197239243371],[123,-51,65,0.3933128024944348],[123,-51,66,0.3999720324296126],[123,-51,67,0.4066949650908085],[123,-51,68,0.4134721330276988],[123,-51,69,0.42029150420424816],[123,-51,70,0.4271427412773174],[123,-51,71,0.43401645455070054],[123,-51,72,0.4409034503911628],[123,-51,73,0.4477940781909966],[123,-51,74,0.454677678189472],[123,-51,75,0.46154213236847796],[123,-51,76,0.4683735205264113],[123,-51,77,0.4751558835104452],[123,-51,78,0.48187109545184903],[123,-51,79,0.48849884670422583],[123,-50,64,0.38774139660047924],[123,-50,65,0.3954310954722472],[123,-50,66,0.4026897395104081],[123,-50,67,0.40937174886365046],[123,-50,68,0.41610037008431777],[123,-50,69,0.42286237654501607],[123,-50,70,0.42964678461244815],[123,-50,71,0.43644407403525587],[123,-50,72,0.44324538030807087],[123,-50,73,0.4500417858445556],[123,-50,74,0.4568237122793014],[123,-50,75,0.4635804161230413],[123,-50,76,0.4702995898858877],[123,-50,77,0.4769670706605991],[123,-50,78,0.48356665802343873],[123,-50,79,0.49008004296613916],[123,-49,64,0.388716736557061],[123,-49,65,0.3964121428240645],[123,-49,66,0.40411828121257654],[123,-49,67,0.4118134790770748],[123,-49,68,0.4184849498157162],[123,-49,69,0.4251816604480123],[123,-49,70,0.43189226277850207],[123,-49,71,0.4386073308634008],[123,-49,72,0.44531849901897724],[123,-49,73,0.4520176992367946],[123,-49,74,0.4586965003362568],[123,-49,75,0.465345551090224],[123,-49,76,0.4719541294501862],[123,-49,77,0.47850979987504355],[123,-49,78,0.48499818063316735],[123,-49,79,0.49140282280319064],[123,-48,64,0.3897827629797288],[123,-48,65,0.3974772532911004],[123,-48,66,0.40519157132517086],[123,-48,67,0.41290977846316507],[123,-48,68,0.4206115427868741],[123,-48,69,0.42723939862578364],[123,-48,70,0.43387387787798093],[123,-48,71,0.4405058041238578],[123,-48,72,0.44712740089027764],[123,-48,73,0.45373148136024993],[123,-48,74,0.4603107404114702],[123,-48,75,0.466857151223579],[123,-48,76,0.4733614685845765],[123,-48,77,0.47981284090408505],[123,-48,78,0.4861985328063411],[123,-48,79,0.4925037600309949],[123,-47,64,0.3909516657834105],[123,-47,65,0.39863580549512734],[123,-47,66,0.4063476456591216],[123,-47,67,0.4140719992950785],[123,-47,68,0.4218007339951923],[123,-47,69,0.42903025568584446],[123,-47,70,0.43559070918197],[123,-47,71,0.4421431289828529],[123,-47,72,0.44868033736421625],[123,-47,73,0.45519597650976823],[123,-47,74,0.46168376290862245],[123,-47,75,0.46813684651084825],[123,-47,76,0.47454727675954794],[123,-47,77,0.48090557749472196],[123,-47,78,0.4872004325889654],[123,-47,79,0.4934184840298057],[123,-46,64,0.39222644088493475],[123,-46,65,0.399888509722782],[123,-46,66,0.4075846567179373],[123,-46,67,0.41530071386894796],[123,-46,68,0.42302926252440437],[123,-46,69,0.4305550576304762],[123,-46,70,0.43704707070696136],[123,-46,71,0.44352717982552314],[123,-46,72,0.44998874743366857],[123,-46,73,0.45642612376523783],[123,-46,74,0.46283387569653556],[123,-46,75,0.46920611982843685],[123,-46,76,0.4755359618791566],[123,-46,77,0.4818150443491972],[123,-46,78,0.48803320428486835],[123,-46,79,0.4941782428217254],[123,-45,64,0.39360190196687306],[123,-45,65,0.4012283856776621],[123,-45,66,0.40889364466056183],[123,-45,67,0.4165847909694233],[123,-45,68,0.42429513812449593],[123,-45,69,0.431820047449163],[123,-45,70,0.4382518350046352],[123,-45,71,0.4446694678233682],[123,-45,72,0.4510667335818379],[123,-45,73,0.4574385147484528],[123,-45,74,0.46378000587040047],[123,-45,75,0.4700860335803941],[123,-45,76,0.47635048134913066],[123,-45,77,0.4825658208867998],[123,-45,78,0.48872275196287446],[123,-45,79,0.4948099522696344],[123,-44,64,0.3950656692366083],[123,-44,65,0.4026417183737246],[123,-44,66,0.4102594535020041],[123,-44,67,0.4179075149142745],[123,-44,68,0.42557998819740417],[123,-44,69,0.4328361562118155],[123,-44,70,0.4392177711098188],[123,-44,71,0.4455845514953009],[123,-44,72,0.45193054980598696],[123,-44,73,0.4582509628725418],[123,-44,74,0.4645413527812907],[123,-44,75,0.4707969677837292],[123,-44,76,0.47701216519297884],[123,-44,77,0.4831799380866737],[123,-44,78,0.4892915475039411],[123,-44,79,0.4953362616830491],[123,-43,64,0.396599138128248],[123,-43,65,0.40410899500139746],[123,-43,66,0.41166162928663913],[123,-43,67,0.41924743835163986],[123,-43,68,0.4268613385866398],[123,-43,69,0.4336182874496656],[123,-43,70,0.4399608946204135],[123,-43,71,0.4462894584306884],[123,-43,72,0.4525981000920939],[123,-43,73,0.4588820826492064],[123,-43,74,0.4651370510932983],[123,-43,75,0.4713583685451849],[123,-43,76,0.4775405503349452],[123,-43,77,0.4836767976887967],[123,-43,78,0.4897586326054411],[123,-43,79,0.49577563536753716],[123,-42,64,0.3981784308961341],[123,-42,65,0.40560582560096536],[123,-42,66,0.4130753029373911],[123,-42,67,0.42057922070561765],[123,-42,68,0.4278654106560314],[123,-42,69,0.43418461260888097],[123,-42,70,0.44049982788460273],[123,-42,71,0.44680311634948255],[123,-42,72,0.4530884457212514],[123,-42,73,0.4593508776422467],[123,-42,74,0.46558584266222425],[123,-42,75,0.47178850592256805],[123,-42,76,0.4779532252318865],[123,-42,77,0.4840731031103905],[123,-42,78,0.4901396342581556],[123,-42,79,0.49614244977207683],[123,-41,64,0.3997753340407124],[123,-41,65,0.40710385037214647],[123,-41,66,0.41447206047951957],[123,-41,67,0.4218744548218692],[123,-41,68,0.4282561049644028],[123,-41,69,0.4345558753678001],[123,-41,70,0.4408551682792907],[123,-41,71,0.447145791687751],[123,-41,72,0.4534213198083594],[123,-41,73,0.4596763356841638],[123,-41,74,0.46590575606873175],[123,-41,75,0.47210424021535397],[123,-41,76,0.4782656841022452],[123,-41,77,0.4843828015173094],[123,-41,78,0.49044679331142604],[123,-41,79,0.4964471060073949],[123,-40,64,0.4013582244895953],[123,-40,65,0.40857163643345723],[123,-40,66,0.4158208033238768],[123,-40,67,0.4221898581965608],[123,-40,68,0.4284647044931718],[123,-40,69,0.4347547026214302],[123,-40,70,0.4410488625785744],[123,-40,71,0.44733853391559736],[123,-40,72,0.45361664749808067],[123,-40,73,0.4598770300047997],[123,-40,74,0.4661137926808054],[123,-40,75,0.47232079578298064],[123,-40,76,0.4784911900676419],[123,-40,77,0.4846170365726108],[123,-40,78,0.4906890058413685],[123,-40,79,0.4966961576257655],[123,-39,64,0.4028929874291603],[123,-39,65,0.40983464128953956],[123,-39,66,0.4160153287826372],[123,-39,67,0.4222480542583694],[123,-39,68,0.4285159570001935],[123,-39,69,0.4348049199576658],[123,-39,70,0.44110358543335776],[123,-39,71,0.447402623819896],[123,-39,72,0.4536940702734395],[123,-39,73,0.459970724958308],[123,-39,74,0.4662256181666305],[123,-39,75,0.4724515415464013],[123,-39,76,0.47864064659248956],[123,-39,77,0.48478411146885014],[123,-39,78,0.49087187713732655],[123,-39,79,0.49689245367021584],[123,-38,64,0.40368824980689355],[123,-38,65,0.4097769139676799],[123,-38,66,0.4159424842319339],[123,-38,67,0.4221679645137239],[123,-38,68,0.4284355102323099],[123,-38,69,0.4347308694781663],[123,-38,70,0.4410421200124734],[123,-38,71,0.4473590240158818],[123,-38,72,0.4536724728681772],[123,-38,73,0.45997398507650716],[123,-38,74,0.4662552584287163],[123,-38,75,0.4725077773880581],[123,-38,76,0.47872247667836326],[123,-38,77,0.48488946193540244],[123,-38,78,0.490997788221466],[123,-38,79,0.49703529711706296],[123,-37,64,0.386440563389557],[123,-37,65,0.3978549205875673],[123,-37,66,0.40663689191919333],[123,-37,67,0.412799728376679],[123,-37,68,0.4194361765369129],[123,-37,69,0.4320051004483577],[123,-37,70,0.44088673889199065],[123,-37,71,0.44722782998948307],[123,-37,72,0.4535695113150522],[123,-37,73,0.4599017862227808],[123,-37,74,0.4662147989831309],[123,-37,75,0.47249852572731055],[123,-37,76,0.4787425093423789],[123,-37,77,0.47941094760775943],[123,-37,78,0.47051844566405276],[123,-37,79,0.45932049495619753],[123,-36,64,0.36466719460118885],[123,-36,65,0.37484895379638683],[123,-36,66,0.3827458329570732],[123,-36,67,0.3875783893195673],[123,-36,68,0.39442543856519985],[123,-36,69,0.4078546571571461],[123,-36,70,0.42411777134228945],[123,-36,71,0.42649126013344363],[123,-36,72,0.4368891404885703],[123,-36,73,0.4472934003258717],[123,-36,74,0.44888827616181115],[123,-36,75,0.45814963240170437],[123,-36,76,0.46207602033078493],[123,-36,77,0.45725295279014083],[123,-36,78,0.4467150707935959],[123,-36,79,0.4296372423618611],[123,-35,64,0.35628143418012986],[123,-35,65,0.3648726455954329],[123,-35,66,0.3670812983978501],[123,-35,67,0.36708791228728826],[123,-35,68,0.37745973081756573],[123,-35,69,0.39028158544839786],[123,-35,70,0.4025460666320158],[123,-35,71,0.4097147308146083],[123,-35,72,0.4214116943296409],[123,-35,73,0.427850378942112],[123,-35,74,0.43128338544519484],[123,-35,75,0.44152494026672867],[123,-35,76,0.4390439630087014],[123,-35,77,0.43597211680543513],[123,-35,78,0.4299422378326382],[123,-35,79,0.4168467323607172],[123,-34,64,0.36016125893179757],[123,-34,65,0.36288297397701624],[123,-34,66,0.35913114967181026],[123,-34,67,0.358431977739681],[123,-34,68,0.3723633128403794],[123,-34,69,0.3864093972388525],[123,-34,70,0.3933237716393901],[123,-34,71,0.4019247493218994],[123,-34,72,0.41423420066896177],[123,-34,73,0.4216217372336781],[123,-34,74,0.42777298058795193],[123,-34,75,0.4329529332214066],[123,-34,76,0.42330832517674394],[123,-34,77,0.42064460202744725],[123,-34,78,0.419336152858807],[123,-34,79,0.41053635638708386],[123,-33,64,0.36376330989480576],[123,-33,65,0.36506111689032733],[123,-33,66,0.36200743623546244],[123,-33,67,0.36590389715825467],[123,-33,68,0.38048301004470536],[123,-33,69,0.39443222139392986],[123,-33,70,0.39944299364098546],[123,-33,71,0.40423627821755054],[123,-33,72,0.4159811490699923],[123,-33,73,0.4257803785623975],[123,-33,74,0.4318246986350352],[123,-33,75,0.4331321565940239],[123,-33,76,0.42253284919585427],[123,-33,77,0.4206253704941991],[123,-33,78,0.41629939061430016],[123,-33,79,0.40181602474857936],[123,-32,64,0.3699324080066895],[123,-32,65,0.37346123633967204],[123,-32,66,0.3720383398489026],[123,-32,67,0.37786275489023713],[123,-32,68,0.3919581801413371],[123,-32,69,0.4044446485770307],[123,-32,70,0.41189780955007366],[123,-32,71,0.41517230879085176],[123,-32,72,0.42451198652822225],[123,-32,73,0.4327074803149585],[123,-32,74,0.4389329095685603],[123,-32,75,0.44303813878053766],[123,-32,76,0.4315051594216183],[123,-32,77,0.4283430660562446],[123,-32,78,0.41559663949240977],[123,-32,79,0.39393824217678713],[123,-31,64,0.3825664581270392],[123,-31,65,0.382450019856493],[123,-31,66,0.3815459612493984],[123,-31,67,0.3898780396499637],[123,-31,68,0.40334431774733387],[123,-31,69,0.41330417905080713],[123,-31,70,0.4243205076367033],[123,-31,71,0.4295859775435813],[123,-31,72,0.43844859194653407],[123,-31,73,0.4462204917749146],[123,-31,74,0.44964951933921343],[123,-31,75,0.45301198001033244],[123,-31,76,0.4381550805436427],[123,-31,77,0.4317805559832506],[123,-31,78,0.412753020752127],[123,-31,79,0.3951389398752532],[123,-30,64,0.39746216258251527],[123,-30,65,0.39397063131194426],[123,-30,66,0.3940386882458977],[123,-30,67,0.40804717082046393],[123,-30,68,0.4215169053799822],[123,-30,69,0.4293436193770489],[123,-30,70,0.4386441679510663],[123,-30,71,0.4447535721924781],[123,-30,72,0.45157630599651943],[123,-30,73,0.4571754140544613],[123,-30,74,0.46261006844026836],[123,-30,75,0.4604792042302437],[123,-30,76,0.443595611194125],[123,-30,77,0.4354141113261215],[123,-30,78,0.41604077948105395],[123,-30,79,0.406900984714335],[123,-29,64,0.4012086208320775],[123,-29,65,0.4070569429088792],[123,-29,66,0.4130764529466925],[123,-29,67,0.4192366386715346],[123,-29,68,0.42550662601972333],[123,-29,69,0.43186030785075097],[123,-29,70,0.4382707838828929],[123,-29,71,0.4441387473338512],[123,-29,72,0.4493339414971361],[123,-29,73,0.45456268347061757],[123,-29,74,0.4598265740369708],[123,-29,75,0.465124612745336],[123,-29,76,0.4564364601726173],[123,-29,77,0.44344505660117917],[123,-29,78,0.42387505703969486],[123,-29,79,0.41786956576146156],[123,-28,64,0.40106380998264307],[123,-28,65,0.40685948781664766],[123,-28,66,0.4128324107221512],[123,-28,67,0.41895164981244204],[123,-28,68,0.425184622456552],[123,-28,69,0.4315027413288194],[123,-28,70,0.436657686637379],[123,-28,71,0.4416262796579633],[123,-28,72,0.4466357450782225],[123,-28,73,0.45169230077348865],[123,-28,74,0.4567994301981993],[123,-28,75,0.46195761482642245],[123,-28,76,0.4671641498450258],[123,-28,77,0.4538955804422408],[123,-28,78,0.4336967796861794],[123,-28,79,0.42189139275123994],[123,-27,64,0.4009644955531603],[123,-27,65,0.4066970989379423],[123,-27,66,0.41261142798019235],[123,-27,67,0.41867634112304314],[123,-27,68,0.424617040333185],[123,-27,69,0.4293295948179546],[123,-27,70,0.4340713510535159],[123,-27,71,0.4388555262680981],[123,-27,72,0.4436931034731462],[123,-27,73,0.44859233890834],[123,-27,74,0.45355836362511537],[123,-27,75,0.4585928800094106],[123,-27,76,0.4636939538886418],[123,-27,77,0.46286295810595846],[123,-27,78,0.44371681767034343],[123,-27,79,0.4302426481708432],[123,-26,64,0.400893216381069],[123,-26,65,0.4065510009012881],[123,-26,66,0.41239338271335624],[123,-26,67,0.41765961144249697],[123,-26,68,0.4221616808523641],[123,-26,69,0.42668410431892306],[123,-26,70,0.43124454327124284],[123,-26,71,0.4358587271259084],[123,-26,72,0.4405398117058055],[123,-26,73,0.44529784182803345],[123,-26,74,0.4501393190514276],[123,-26,75,0.45506687540290447],[123,-26,76,0.4600790537257129],[123,-26,77,0.46517019511354285],[123,-26,78,0.45668740722962214],[123,-26,79,0.44189063801619544],[123,-25,64,0.4008223053835201],[123,-25,65,0.40639234718059736],[123,-25,66,0.4108463212917725],[123,-25,67,0.4151587978339941],[123,-25,68,0.41947708661693794],[123,-25,69,0.42382304238344826],[123,-25,70,0.4282169477378467],[123,-25,71,0.432676810519334],[123,-25,72,0.43721768358032936],[123,-25,73,0.4418510983149309],[123,-25,74,0.4465846129359323],[123,-25,75,0.45142147630888546],[123,-25,76,0.4563604079570721],[123,-25,77,0.46139549465395674],[123,-25,78,0.4665162038220761],[123,-25,79,0.44751767414259114],[123,-24,64,0.39998042616276086],[123,-24,65,0.4041683735932269],[123,-24,66,0.4083196861240615],[123,-24,67,0.4124556722213815],[123,-24,68,0.4166032553961634],[123,-24,69,0.4207869970685633],[123,-24,70,0.4250295575958792],[123,-24,71,0.4293509378280593],[123,-24,72,0.43376777611038725],[123,-24,73,0.4382927671983929],[123,-24,74,0.4429342040637722],[123,-24,75,0.4476956433633932],[123,-24,76,0.45257569513242873],[123,-24,77,0.4575679370494498],[123,-24,78,0.46266095340846614],[123,-24,79,0.4497959238018896],[123,-23,64,0.3976210369324319],[123,-23,65,0.40163298957695026],[123,-23,66,0.4056133732179468],[123,-23,67,0.4095838380491262],[123,-23,68,0.41357300713204725],[123,-23,69,0.41760793701317467],[123,-23,70,0.4217134128707699],[123,-23,71,0.42591114790324414],[123,-23,72,0.4302190703407542],[123,-23,73,0.43465073933428683],[123,-23,74,0.4392148906592034],[123,-23,75,0.44391511294846603],[123,-23,76,0.44874965494514185],[123,-23,77,0.45371136403661705],[123,-23,78,0.4587877561069405],[123,-23,79,0.4521878343203232],[123,-22,64,0.3950980504194253],[123,-22,65,0.3989408674603051],[123,-22,66,0.40275870854946544],[123,-22,67,0.40657347015952267],[123,-22,68,0.4104152767321425],[123,-22,69,0.41431345073788095],[123,-22,70,0.41829464954783985],[123,-22,71,0.4223820326607113],[123,-22,72,0.4265945481650083],[123,-22,73,0.4309463541017898],[123,-22,74,0.43544637560630056],[123,-22,75,0.4400979984715476],[123,-22,76,0.4448988995381239],[123,-22,77,0.44984101407506394],[123,-22,78,0.454910640078985],[123,-22,79,0.4549630257755011],[123,-21,64,0.3924435954591689],[123,-21,65,0.39612279755794366],[123,-21,66,0.3997850559206602],[123,-21,67,0.4034523892543444],[123,-21,68,0.4071561971996402],[123,-21,69,0.41092782841485676],[123,-21,70,0.4147955678488746],[123,-21,71,0.41878377798777267],[123,-21,72,0.4229121906305542],[123,-21,73,0.42719533892651584],[123,-21,74,0.4316421304826904],[123,-21,75,0.43625556210176286],[123,-21,76,0.4410325764601808],[123,-21,77,0.4459640607854154],[123,-21,78,0.4510349873434983],[123,-21,79,0.4562246953050933],[123,-20,64,0.3896893492381563],[123,-20,65,0.39320879753509397],[123,-20,66,0.3967206077172142],[123,-20,67,0.40024677509071793],[123,-20,68,0.4038197304277211],[123,-20,69,0.407472607606736],[123,-20,70,0.4112350926091809],[123,-20,71,0.41513254083988443],[123,-20,72,0.41918527617148416],[123,-20,73,0.4234080352668453],[123,-20,74,0.4278095579117913],[123,-20,75,0.43239232383031856],[123,-20,76,0.4371524361924086],[123,-20,77,0.44207965176317465],[123,-20,78,0.44715755738458013],[123,-20,79,0.452363892229435],[123,-19,64,0.3868674566814483],[123,-19,65,0.3902289637510034],[123,-19,66,0.3935931623356309],[123,-19,67,0.3969818638884911],[123,-19,68,0.4004282795361105],[123,-19,69,0.40396709755465765],[123,-19,70,0.40762920880511716],[123,-19,71,0.411440797629825],[123,-19,72,0.4154226457879367],[123,-19,73,0.4195895867054718],[123,-19,74,0.4239501106952602],[123,-19,75,0.42850612152988343],[123,-19,76,0.43325284447719203],[123,-19,77,0.4381788856359839],[123,-19,78,0.44326644214222033],[123,-19,79,0.4484916625559581],[123,-18,64,0.38400779838231347],[123,-18,65,0.38721050803393653],[123,-18,66,0.39042692182607025],[123,-18,67,0.3936784986563031],[123,-18,68,0.3969989847303402],[123,-18,69,0.40042441547093643],[123,-18,70,0.40398673547746566],[123,-18,71,0.40771285539492136],[123,-18,72,0.4116239535035204],[123,-18,73,0.41573493310389026],[123,-18,74,0.4200540362808317],[123,-18,75,0.42458261434347916],[123,-18,76,0.4293150549539264],[123,-18,77,0.4342388656729152],[123,-18,78,0.4393349133734543],[123,-18,79,0.4445778187035259],[123,-17,64,0.38112193342495193],[123,-17,65,0.3841625339251567],[123,-17,66,0.38722828454227043],[123,-17,67,0.3903401237463672],[123,-17,68,0.393532095845361],[123,-17,69,0.39684139418559516],[123,-17,70,0.40030089875017455],[123,-17,71,0.4039381878198259],[123,-17,72,0.40777482652377844],[123,-17,73,0.41182581742683827],[123,-17,74,0.4160992136714093],[123,-17,75,0.42059589489370397],[123,-17,76,0.42530950583394933],[123,-17,77,0.4302265572639922],[123,-17,78,0.4353266885659978],[123,-17,79,0.4405830910152395],[123,-16,64,0.3781765991446594],[123,-16,65,0.38105317273147127],[123,-16,66,0.3839671540285819],[123,-16,67,0.386938805898099],[123,-16,68,0.3900022109119092],[123,-16,69,0.3931954804117008],[123,-16,70,0.3965522460133422],[123,-16,71,0.40010061926906826],[123,-16,72,0.4038624603478064],[123,-16,73,0.4078528154138661],[123,-16,74,0.41207952316236013],[123,-16,75,0.41654299065501926],[123,-16,76,0.4212361382860507],[123,-16,77,0.4261445133975021],[123,-16,78,0.43124657176101927],[123,-16,79,0.436514125850373],[123,-15,64,0.375137782702472],[123,-15,65,0.3778504459403245],[123,-15,66,0.3806139588998913],[123,-15,67,0.3834477620403912],[123,-15,68,0.38638568882164925],[123,-15,69,0.38946647051986233],[123,-15,70,0.39272423136020745],[123,-15,71,0.3961873948730585],[123,-15,72,0.3998779307068311],[123,-15,73,0.40381077675964805],[123,-15,74,0.40799343702703406],[123,-15,75,0.4124257552328816],[123,-15,76,0.41709986398230653],[123,-15,77,0.42200030885100825],[123,-15,78,0.42710434651030205],[123,-15,79,0.4323824156826606],[123,-14,64,0.37198217354353597],[123,-14,65,0.3745326546766354],[123,-14,66,0.37714880409659113],[123,-14,67,0.37984909530775257],[123,-14,68,0.38266680389439106],[123,-14,69,0.3856409385433724],[123,-14,70,0.3888058005826829],[123,-14,71,0.39218984014669317],[123,-14,72,0.3958148829664576],[123,-14,73,0.39969553864888374],[123,-14,74,0.4038387907770495],[123,-14,75,0.40824376881941116],[123,-14,76,0.41290170149313954],[123,-14,77,0.41779605088973903],[123,-14,78,0.42290282634354837],[123,-14,79,0.42819107670833867],[123,-13,64,0.23556076918698954],[123,-13,65,0.28017372417306063],[123,-13,66,0.32906372438530224],[123,-13,67,0.376131974208124],[123,-13,68,0.37883605872333914],[123,-13,69,0.38171071378878474],[123,-13,70,0.3847900637023503],[123,-13,71,0.3881022567309701],[123,-13,72,0.39166867669426636],[123,-13,73,0.39550334140272975],[123,-13,74,0.3996124882123929],[123,-13,75,0.4039943466002296],[123,-13,76,0.40863909730954895],[123,-13,77,0.4135290172659184],[123,-13,78,0.4186388091259306],[123,-13,79,0.42393611399610404],[123,-12,64,0.11940816335377846],[123,-12,65,0.1478750241579084],[123,-12,66,0.17998656425701992],[123,-12,67,0.21574397811553275],[123,-12,68,0.25513252415510845],[123,-12,69,0.2981167851557509],[123,-12,70,0.34463169252386533],[123,-12,71,0.3839209316409477],[123,-12,72,0.38743562604180487],[123,-12,73,0.3912303200352377],[123,-12,74,0.3953102604891301],[123,-12,75,0.3996725775813574],[123,-12,76,0.40430625231405865],[123,-12,77,0.40919227369144057],[123,-12,78,0.4143039843073263],[123,-12,79,0.4196076127560132],[123,-11,64,0.04942513252185638],[123,-11,65,0.0652778438918629],[123,-11,66,0.08406242729915313],[123,-11,67,0.10585022018005405],[123,-11,68,0.130694348326939],[123,-11,69,0.15862561722312848],[123,-11,70,0.18964268243317048],[123,-11,71,0.22371379293492],[123,-11,72,0.26077897364011265],[123,-11,73,0.30075237685430306],[123,-11,74,0.343524788176212],[123,-11,75,0.388966272863297],[123,-11,76,0.39989445492544384],[123,-11,77,0.4047752722362083],[123,-11,78,0.4098857947597942],[123,-11,79,0.4151908576821069],[123,-10,64,0.013862722913240326],[123,-10,65,0.02063374537251639],[123,-10,66,0.029543128101871416],[123,-10,67,0.04073220018464599],[123,-10,68,0.054321743736050414],[123,-10,69,0.07040860973358658],[123,-10,70,0.08905511513911288],[123,-10,71,0.11029064389357741],[123,-10,72,0.13411371465248348],[123,-10,73,0.16049422567380564],[123,-10,74,0.1893758624361696],[123,-10,75,0.22067865404305773],[123,-10,76,0.2543016650515835],[123,-10,77,0.29012581004591437],[123,-10,78,0.32801677907539484],[123,-10,79,0.36782806297884396],[123,-9,64,0.005153829058525664],[123,-9,65,0.007392692227534848],[123,-9,66,0.009604328997399759],[123,-9,67,0.011800472927049336],[123,-9,68,0.014266485062973554],[123,-9,69,0.021716590410924157],[123,-9,70,0.031118610697847056],[123,-9,71,0.04256315351392825],[123,-9,72,0.05610746267120178],[123,-9,73,0.07177756759791035],[123,-9,74,0.08957060209249779],[123,-9,75,0.10945727852264589],[123,-9,76,0.1313845040920574],[123,-9,77,0.15527812643394023],[123,-9,78,0.1810457965371101],[123,-9,79,0.20857993785796752],[123,-8,64,0.001506407715503716],[123,-8,65,0.003717546142619898],[123,-8,66,0.005923883490659632],[123,-8,67,0.008135139729175758],[123,-8,68,0.010375849246030472],[123,-8,69,0.012681042911321792],[123,-8,70,0.0150816990488719],[123,-8,71,0.017603453693432608],[123,-8,72,0.02026581452975637],[123,-8,73,0.023081568691183323],[123,-8,74,0.03234926346013193],[123,-8,75,0.04354006861221503],[123,-8,76,0.056413000912706374],[123,-8,77,0.07093995551341475],[123,-8,78,0.08707184282493785],[123,-8,79,0.10474150216552919],[123,-7,64,-0.0021159025945114525],[123,-7,65,7.068952349164118E-5],[123,-7,66,0.002274778490844121],[123,-7,67,0.004503919618567964],[123,-7,68,0.006779867139904904],[123,-7,69,0.009135279214676004],[123,-7,70,0.011598742099950769],[123,-7,71,0.014193509332499507],[123,-7,72,0.01693675670152411],[123,-7,73,0.01983902719042009],[123,-7,74,0.022903865637724133],[123,-7,75,0.026127642487806635],[123,-7,76,0.02949956562936641],[123,-7,77,0.03300187895921947],[123,-7,78,0.03661024596183096],[123,-7,79,0.04453930265568676],[123,-6,64,-0.00570144146026939],[123,-6,65,-0.003536557910506361],[123,-6,66,-0.001332391312525276],[123,-6,67,9.163058822490946E-4],[123,-6,68,0.003228317687654171],[123,-6,69,0.005633697909156564],[123,-6,70,0.00815842007605841],[123,-6,71,0.010823157943718104],[123,-6,72,0.013642591102548236],[123,-6,73,0.01662489486884708],[123,-6,74,0.019771414121271175],[123,-6,75,0.02307652037605696],[123,-6,76,0.026527651031031323],[123,-6,77,0.03010552935779932],[123,-6,78,0.033784563484731835],[123,-6,79,0.03753342229609725],[123,-5,64,-0.00924039697937447],[123,-5,65,-0.0070948423269150225],[123,-5,66,-0.004889102206867178],[123,-5,67,-0.0026203680231368038],[123,-5,68,-2.7296848744375306E-4],[123,-5,69,0.002180372959576368],[123,-5,70,0.00476285464414263],[123,-5,71,0.007492429968496295],[123,-5,72,0.010381172563863325],[123,-5,73,0.013434818298062277],[123,-5,74,0.016652483719824324],[123,-5,75,0.020026560163884093],[123,-5,76,0.02354278239097528],[123,-5,77,0.027180470299686954],[123,-5,78,0.030912941924067242],[123,-5,79,0.034708095627363655],[123,-4,64,-0.012725215931447148],[123,-4,65,-0.010597165560493739],[123,-4,66,-0.008389257447373576],[123,-4,67,-0.006101237357747491],[123,-4,68,-0.0037206371394058937],[123,-4,69,-0.001223066233568157],[123,-4,70,0.0014117989598988168],[123,-4,71,0.004199111509316917],[123,-4,72,0.00714828666757536],[123,-4,73,0.010262602377403618],[123,-4,74,0.013538967072037417],[123,-4,75,0.01696785393612235],[123,-4,76,0.020533400458467185],[123,-4,77,0.024213671787972263],[123,-4,78,0.027981086097921166],[123,-4,79,0.031802999877150157],[123,-3,64,-0.016150816035527663],[123,-3,65,-0.01403908024357913],[123,-3,66,-0.011829353552713069],[123,-3,67,-0.00952403218016612],[123,-3,68,-0.0071138864590901294],[123,-3,69,-0.004577453077284502],[123,-3,70,-0.0018973169484079915],[123,-3,71,9.388572303837732E-4],[123,-3,72,0.0039378322195487165],[123,-3,73,0.007100462706938523],[123,-3,74,0.010421516444619737],[123,-3,75,0.0138896511692367],[123,-3,76,0.017487546109190316],[123,-3,77,0.021192186581678617],[123,-3,78,0.024975299896422193],[123,-3,79,0.028803940515836447],[123,-2,64,-0.019514595707696696],[123,-2,65,-0.017418685813159158],[123,-2,66,-0.015208452579540213],[123,-2,67,-0.012889016484728212],[123,-2,68,-0.010454365508954112],[123,-2,69,-0.007885936191901725],[123,-2,70,-0.005169189321294668],[123,-2,71,-0.0022945622032890765],[123,-2,72,7.421188486210646E-4],[123,-2,73,0.003939371383208845],[123,-2,74,0.007289934418252703],[123,-2,75,0.010780789864053399],[123,-2,76,0.014393326553129837],[123,-2,77,0.01810364538815244],[123,-2,78,0.02188300385652569],[123,-2,79,0.025698397915028655],[123,-1,64,-0.02281623658902887],[123,-1,65,-0.020736420773346052],[123,-1,66,-0.01852795590405564],[123,-1,67,-0.016198736116366606],[123,-1,68,-0.01374589099554546],[123,-1,69,-0.01115366223221467],[123,-1,70,-0.008410288926897233],[123,-1,71,-0.005508875127550797],[123,-1,72,-0.002447717677089895],[123,-1,73,7.694983401605347E-4],[123,-1,74,0.004133635880940534],[123,-1,75,0.0076301730089177195],[123,-1,76,0.011239399533693076],[123,-1,77,0.014936741760664164],[123,-1,78,0.018693213650625033],[123,-1,79,0.022475992467093878],[123,0,64,-0.026057294051582518],[123,0,65,-0.02399464652562478],[123,0,66,-0.02179117497247247],[123,0,67,-0.01945757112230099],[123,0,68,-0.01699397828747497],[123,0,69,-0.014387285333185312],[123,0,70,-0.011628351000801507],[123,0,71,-0.008712783289795535],[123,0,72,-0.005641179836081008],[123,0,73,-0.002419249675721358],[123,0,74,9.421828923715644E-4],[123,0,75,0.004427291385478234],[123,0,76,0.008015475961468854],[123,0,77,0.011681706567342551],[123,0,78,0.015396978778434064],[123,0,79,0.019128880499609938],[123,1,64,-0.02924057298108175],[123,1,65,-0.027197020795331147],[123,1,66,-0.02500269758145512],[123,1,67,-0.02267109145547368],[123,1,68,-0.020205185774280574],[123,1,69,-0.017594302271213516],[123,1,70,-0.014831705759229635],[123,1,71,-0.01191529416202332],[123,1,72,-0.008847750333261316],[123,1,73,-0.005636589585183604],[123,1,74,-0.002294103672346158],[123,1,75,0.0011627978073979446],[123,1,76,0.00471284742452051],[123,1,77,0.008330779975593923],[123,1,78,0.011987791036276865],[123,1,79,0.015652092290093546],[123,2,64,-0.01184620503970946],[123,2,65,-0.01852451480796162],[123,2,66,-0.02685102178776528],[123,2,67,-0.025845216048126805],[123,2,68,-0.02338627220660593],[123,2,69,-0.020782212130031768],[123,2,70,-0.018028446952403847],[123,2,71,-0.01512490684171203],[123,2,72,-0.012076105139139598],[123,2,73,-0.008891112746981466],[123,2,74,-0.005583443533990632],[123,2,75,-0.002170851712978178],[123,2,76,0.001324957676287511],[123,2,77,0.004878703878760023],[123,2,78,0.008461989674082114],[123,2,79,0.012043843167241627],[123,3,64,-0.0021595409772570038],[123,3,65,-0.004005864241490442],[123,3,66,-0.0066230616377796255],[123,3,67,-0.010228841507630896],[123,3,68,-0.014992708165179613],[123,3,69,-0.021034961750424783],[123,3,70,-0.02122540957699786],[123,3,71,-0.018348632783627822],[123,3,72,-0.015333191893303951],[123,3,73,-0.012189436222977511],[123,3,74,-0.008931836249375633],[123,3,75,-0.0055787396603933],[123,3,76,-0.0021520548682130384],[123,3,77,0.001323136791216501],[123,3,78,0.004819038819727334],[123,3,79,0.008305665812510693],[123,4,64,-0.001103737700612131],[123,4,65,-0.0015772250583603478],[123,4,66,-0.001865485186499008],[123,4,67,-0.0022590092093966105],[123,4,68,-0.0029977409367405172],[123,4,69,-0.004269880775095587],[123,4,70,-0.006233512110039748],[123,4,71,-0.009019619838583034],[123,4,72,-0.012734576804241789],[123,4,73,-0.015535260287805493],[123,4,74,-0.01234223121822709],[123,4,75,-0.009062785203664533],[123,4,76,-0.005718797658612376],[123,4,77,-0.0023349411994246904],[123,4,78,0.0010617680776070122],[123,4,79,0.004442479314952603],[123,5,64,0.0030004157639973066],[123,5,65,4.395985590106635E-4],[123,5,66,-9.009123054101308E-4],[123,5,67,-0.0013843319780417352],[123,5,68,-0.0013209125777606688],[123,5,69,-9.666547365872421E-4],[123,5,70,-5.454081119079184E-4],[123,5,71,-2.5170201966873503E-4],[123,5,72,-2.530474898900599E-4],[123,5,73,-6.921911377381811E-4],[123,5,74,-0.0016893080437808366],[123,5,75,-0.0033441216605297292],[123,5,76,-0.005737939669067872],[123,5,77,-0.006090823969812979],[123,5,78,-0.0028034151118839935],[123,5,79,4.626024926347727E-4],[123,6,64,0.02183733574480049],[123,6,65,0.013727914953937855],[123,6,66,0.007953115916404982],[123,6,67,0.00407705206096034],[123,6,68,0.001719259900597553],[123,6,69,5.560081027183357E-4],[123,6,70,2.9767642119755115E-4],[123,6,71,6.860964107746709E-4],[123,6,72,0.0014924189378655822],[123,6,73,0.00251501125332921],[123,6,74,0.003577396288268207],[123,6,75,0.004526246075931204],[123,6,76,0.005229440364738354],[123,6,77,0.005574200574749531],[123,6,78,0.005465308268787915],[123,6,79,0.004823416266033226],[123,7,64,0.06710110087123759],[123,7,65,0.04998091869239121],[123,7,66,0.03638916871136566],[123,7,67,0.025817359292739272],[123,7,68,0.01781487568639833],[123,7,69,0.01199027500735076],[123,7,70,0.00798812614318539],[123,7,71,0.005486502569547658],[123,7,72,0.004195001670431721],[123,7,73,0.0038527766167624107],[123,7,74,0.004226593330668485],[123,7,75,0.005108924366101174],[123,7,76,0.006316090763612557],[123,7,77,0.007686462091744523],[123,7,78,0.009078723975991895],[123,7,79,0.010370221445615857],[123,8,64,0.15050134701155995],[123,8,65,0.12090891586668756],[123,8,66,0.09611828530970552],[123,8,67,0.07554857929808084],[123,8,68,0.058679149060809656],[123,8,69,0.045050831277739824],[123,8,70,0.034242303712273034],[123,8,71,0.025867714923298344],[123,8,72,0.019574839885283107],[123,8,73,0.015043232648106255],[123,8,74,0.01198238843903858],[123,8,75,0.010129926969842058],[123,8,76,0.009249808001152411],[123,8,77,0.009130589435685094],[123,8,78,0.009583737366174142],[123,8,79,0.010441996602884777],[123,9,64,0.26150459754807814],[123,9,65,0.2382211419944381],[123,9,66,0.19885093863244085],[123,9,67,0.1649826333815195],[123,9,68,0.136025731998057],[123,9,69,0.11145332090954994],[123,9,70,0.09077806635562778],[123,9,71,0.07354997149349587],[123,9,72,0.059354656571515806],[123,9,73,0.047811621830582206],[123,9,74,0.038572505415513984],[123,9,75,0.03131934799321399],[123,9,76,0.0257628751230391],[123,9,77,0.02164080770696901],[123,9,78,0.01871621006428468],[123,9,79,0.016775884341568126],[123,10,64,0.25508919650503475],[123,10,65,0.25444810423021336],[123,10,66,0.2540986914234394],[123,10,67,0.2540071220004161],[123,10,68,0.2541550774096262],[123,10,69,0.2229090137067039],[123,10,70,0.1893089119600961],[123,10,71,0.1602491358238578],[123,10,72,0.1352527558554154],[123,10,73,0.11387869634628132],[123,10,74,0.09572008274688021],[123,10,75,0.08040258221312561],[123,10,76,0.06758274831031115],[123,10,77,0.05694638025353413],[123,10,78,0.04820690634130667],[123,10,79,0.04110380047052895],[123,11,64,0.2486316323503648],[123,11,65,0.24783111537143554],[123,11,66,0.24731327781386736],[123,11,67,0.2470435610735377],[123,11,68,0.24700334525808001],[123,11,69,0.24719266869774686],[123,11,70,0.24760786995799133],[123,11,71,0.24824141418045806],[123,11,72,0.24908227861697976],[123,11,73,0.22496240319126204],[123,11,74,0.195145144334153],[123,11,75,0.1691015619382593],[123,11,76,0.14643304317011743],[123,11,77,0.1267723309145518],[123,11,78,0.10978194143207501],[123,11,79,0.09515260240821155],[123,12,64,0.24215555404305883],[123,12,65,0.24119394167840902],[123,12,66,0.24050504092040884],[123,12,67,0.24005422093025486],[123,12,68,0.2398229245870644],[123,12,69,0.23981117993477502],[123,12,70,0.2400154511832779],[123,12,71,0.24042848946216006],[123,12,72,0.24103973175011892],[123,12,73,0.24183569239895417],[123,12,74,0.24280034669338027],[123,12,75,0.24391550591147354],[123,12,76,0.24516118337590442],[123,12,77,0.24284022276543293],[123,12,78,0.2151632558965012],[123,12,79,0.190644253484027],[123,13,64,0.23568856699266233],[123,13,65,0.23456544113437067],[123,13,66,0.2337041568115965],[123,13,67,0.23307066786199596],[123,13,68,0.23264682093863023],[123,13,69,0.2324326584775342],[123,13,70,0.2324247607065934],[123,13,71,0.23261613206867499],[123,13,72,0.2329966179409745],[123,13,73,0.23355330831488297],[123,13,74,0.2342709279060575],[123,13,75,0.23513221220103586],[123,13,76,0.23611826898464802],[123,13,77,0.23720892493184023],[123,13,78,0.23838305688977396],[123,13,79,0.23961890751941634],[123,14,64,0.22926568026028446],[123,14,65,0.22798188464492344],[123,14,66,0.22694816223301353],[123,14,67,0.2261316724013909],[123,14,68,0.22551495681320363],[123,14,69,0.22509803821709767],[123,14,70,0.22487754335497664],[123,14,71,0.22484663982236275],[123,14,72,0.22499547791703145],[123,14,73,0.22531161318957443],[123,14,74,0.22578040918877254],[123,14,75,0.22638541994618125],[123,14,76,0.22710875179654696],[123,14,77,0.2279314041836799],[123,14,78,0.22883358915652233],[123,14,79,0.22979502931545737],[123,15,64,0.22293195368773136],[123,15,65,0.22148940395144215],[123,15,66,0.22028410572877458],[123,15,67,0.21928497092498855],[123,15,68,0.21847546185118918],[123,15,69,0.2178554934412496],[123,15,70,0.21742162335803303],[123,15,71,0.21716705583939838],[123,15,72,0.21708211753431783],[123,15,73,0.2171547067513511],[123,15,74,0.21737071563206659],[123,15,75,0.2177144248310985],[123,15,76,0.21816887035371627],[123,15,77,0.21871618227102282],[123,15,78,0.21933789510338422],[123,15,79,0.22001522973232474],[123,16,64,0.21672821213145638],[123,16,65,0.2151291709418817],[123,16,66,0.21375308047668568],[123,16,67,0.21257107397140867],[123,16,68,0.21156772459574713],[123,16,69,0.21074275589343627],[123,16,70,0.2100925672486052],[123,16,71,0.20961031766899388],[123,16,72,0.209286441338077],[123,16,73,0.20910912837037507],[123,16,74,0.20906477030280432],[123,16,75,0.2091383699439983],[123,16,76,0.20931391529202645],[123,16,77,0.20957471731864435],[123,16,78,0.20990371150618703],[123,16,79,0.2102837231091768],[123,17,64,0.21067207496925552],[123,17,65,0.20891898884169882],[123,17,66,0.2073727568562577],[123,17,67,0.20600712720312067],[123,17,68,0.2048079486950843],[123,17,69,0.20377469062358478],[123,17,70,0.20290354500440919],[123,17,71,0.2021875988229225],[123,17,72,0.20161739139592486],[123,17,73,0.20118142805455086],[123,17,74,0.2008666497052869],[123,17,75,0.20065885793701996],[123,17,76,0.20054309545149998],[123,17,77,0.2005039817023628],[123,17,78,0.20052600373478804],[123,17,79,0.20059376232149453],[123,18,64,0.20475883879732268],[123,18,65,0.2028543393128765],[123,18,66,0.20113866343767567],[123,18,67,0.19958849305556323],[123,18,68,0.19819109186070755],[123,18,69,0.1969456329575817],[123,18,70,0.19584808649165192],[123,18,71,0.19489148499022987],[123,18,72,0.1940665216892181],[123,18,73,0.19336209586822622],[123,18,74,0.1927658047815793],[123,18,75,0.19226438190645942],[123,18,76,0.19184408136092854],[123,18,77,0.1914910084733364],[123,18,78,0.1911913966113525],[123,18,79,0.1909318305008813],[123,19,64,0.19603136210652125],[123,19,65,0.19471616936373745],[123,19,66,0.19340924928701395],[123,19,67,0.19213471975653557],[123,19,68,0.19090610465983787],[123,19,69,0.18972528816037176],[123,19,70,0.188595754991684],[123,19,71,0.187522313122752],[123,19,72,0.18651053826579653],[123,19,73,0.18556627918836813],[123,19,74,0.18469522420314946],[123,19,75,0.1839025290533893],[123,19,76,0.18319250625777708],[123,19,77,0.18251413478238668],[123,19,78,0.1818791490894179],[123,19,79,0.18127834904354775],[123,20,64,0.18484888191071697],[123,20,65,0.1833661194847554],[123,20,66,0.18191049384711858],[123,20,67,0.18050295151664011],[123,20,68,0.17915561580892075],[123,20,69,0.17787094020020952],[123,20,70,0.1766528612003357],[123,20,71,0.17550642591695875],[123,20,72,0.1744372012417406],[123,20,73,0.173450753365477],[123,20,74,0.1725521979498534],[123,20,75,0.1717458211046355],[123,20,76,0.17103477114265114],[123,20,77,0.170420820912535],[123,20,78,0.1699042003437804],[123,20,79,0.16948349867974938],[123,21,64,0.1733649536878388],[123,21,65,0.1717110438989988],[123,21,66,0.17010456204150834],[123,21,67,0.1685631831182736],[123,21,68,0.16709756610833693],[123,21,69,0.1657107131340908],[123,21,70,0.16440695110132877],[123,21,71,0.1631914684148225],[123,21,72,0.16206969503996954],[123,21,73,0.16104676217231584],[123,21,74,0.1601270417892872],[123,21,75,0.15931376615689563],[123,21,76,0.15860872716604904],[123,21,77,0.1580120551802536],[123,21,78,0.15752207689204345],[123,21,79,0.1571352515091723],[123,22,64,0.16164467939775898],[123,22,65,0.1598158972907448],[123,22,66,0.15805594372252602],[123,22,67,0.1563791946984572],[123,22,68,0.15479480775872137],[123,22,69,0.15330629446717942],[123,22,70,0.15191829399877363],[123,22,71,0.15063602545988297],[123,22,72,0.14946464591642114],[123,22,73,0.1484086968619414],[123,22,74,0.1474716393400546],[123,22,75,0.14665547771231485],[123,22,76,0.14596047184406152],[123,22,77,0.1453849372685999],[123,22,78,0.14492513268782484],[123,22,79,0.14457523397490224],[123,23,64,0.1497590085870099],[123,23,65,0.14775153644748829],[123,23,66,0.1458350258797692],[123,23,67,0.14402059728126168],[123,23,68,0.1423158961698606],[123,23,69,0.14072488699573185],[123,23,70,0.13925242977287708],[123,23,71,0.13790365631901672],[123,23,72,0.1366833138799956],[123,23,73,0.13559520539506723],[123,23,74,0.1346417265519122],[123,23,75,0.13382349953709774],[123,23,76,0.1331391031501144],[123,23,77,0.13258489871934218],[123,23,78,0.13215495103980998],[123,23,79,0.13184104334549404],[123,24,64,0.1377818699752113],[123,24,65,0.13559185888140127],[123,24,66,0.13351525837108988],[123,24,67,0.13156004494141404],[123,24,68,0.12973236761570398],[123,24,69,0.128036571291239],[123,24,70,0.126477635264168],[123,24,71,0.12506048324566602],[123,24,72,0.1237893204469132],[123,24,73,0.12266707470913042],[123,24,74,0.12169494175820512],[123,24,75,0.12087203440231556],[123,24,76,0.12019513523648596],[123,24,77,0.11965855217253146],[123,24,78,0.1192540758800712],[123,24,79,0.11897103800443777],[123,25,64,0.1257874243475019],[123,25,65,0.12341105981997284],[123,25,66,0.12117043382322336],[123,25,67,0.11907055552402038],[123,25,68,0.11711611835104933],[123,25,69,0.11531176107865437],[123,25,70,0.11366247357102126],[123,25,71,0.11217285166766468],[123,25,72,0.11084643556724877],[123,25,73,0.109685158720105],[123,25,74,0.10868890723750788],[123,25,75,0.10785518954906216],[123,25,76,0.10717891577051167],[123,25,77,0.1066522859854073],[123,25,78,0.10626478639922549],[123,25,79,0.10600329209406707],[123,26,64,0.11384744049241503],[123,26,65,0.11128100915274353],[123,26,66,0.10887208311412111],[123,26,67,0.10662294113304165],[123,26,68,0.10453688617846041],[123,26,69,0.10261875225067969],[123,26,70,0.10087342673652233],[123,26,71,0.09930506219437263],[123,26,72,0.09791642362614912],[123,26,73,0.09670835166140385],[123,26,74,0.09567934158979192],[123,26,75,0.09482523788853969],[123,26,76,0.09413904361055976],[123,26,77,0.0936108437291309],[123,26,78,0.09322784128059007],[123,26,79,0.09297450490773446],[123,27,64,0.10202879612013506],[123,27,65,0.09926875012145064],[123,27,66,0.09668698805236048],[123,27,67,0.0942833498050005],[123,27,68,0.09205983565571324],[123,27,69,0.09002136645678065],[123,27,70,0.08817261248919903],[123,27,71,0.0865171748147858],[123,27,72,0.08505694858428448],[123,27,73,0.0837916065079836],[123,27,74,0.08271820235468866],[123,27,75,0.08183089404529628],[123,27,76,0.08112078561712698],[123,27,77,0.08057588705732237],[123,27,78,0.08018119074211683],[123,27,79,0.0799188629742124],[123,28,64,0.09039110593110228],[123,28,65,0.0874341217812336],[123,28,66,0.0846748131123535],[123,28,67,0.08211092002817652],[123,28,68,0.07974324837535818],[123,28,69,0.07757669044117863],[123,28,70,0.07561558592858215],[123,28,71,0.0738628858719946],[123,28,72,0.07231953851943031],[123,28,73,0.07098399841113996],[123,28,74,0.0698518584533425],[123,28,75,0.06891560447907848],[123,28,76,0.0681644914919996],[123,28,77,0.06758454050577925],[123,28,78,0.06715865462600844],[123,28,79,0.06686685277355857],[123,29,64,0.07898447927087603],[123,29,65,0.07582750753219862],[123,29,66,0.07288585835895721],[123,29,67,0.07015555004285201],[123,29,68,0.06763632002061123],[123,29,69,0.06533291257062554],[123,29,70,0.06324922730339125],[123,29,71,0.06138747864270276],[123,29,72,0.059747610057075656],[123,29,73,0.05832683327436926],[123,29,74,0.05711929221548398],[123,29,75,0.05611585107273263],[123,29,76,0.05530400565916543],[123,29,77,0.0546679168696042],[123,29,78,0.05418856482672072],[123,29,79,0.05384402203683126],[123,30,64,0.06784742679512165],[123,30,65,0.06448772974899196],[123,30,66,0.061358954157103955],[123,30,67,0.05845580304594815],[123,30,68,0.05577708580623546],[123,30,69,0.05332727860357283],[123,30,70,0.05110973833594306],[123,30,71,0.04912587033893],[123,30,72,0.047374575835736545],[123,30,73,0.04585182491379711],[123,30,74,0.04455035470715448],[123,30,75,0.04345949215286939],[123,30,76,0.04256510039030295],[123,30,77,0.04184964758704636],[123,30,78,0.041292396708913374],[123,30,79,0.040869714504432254],[123,31,64,0.05700934731048016],[123,31,65,0.05344471307370802],[123,31,66,0.050124310518753594],[123,31,67,0.0470419500898655],[123,31,68,0.044195663450035366],[123,31,69,0.04158954139314631],[123,31,70,0.039226305300111286],[123,31,71,0.037106495004093874],[123,31,72,0.03522795328059261],[123,31,73,0.0335854352063385],[123,31,74,0.03217034201658306],[123,31,75,0.030970578781834457],[123,31,76,0.029970534928440613],[123,31,77,0.029151186345529594],[123,31,78,0.028490317558044077],[123,31,79,0.027962862202625137],[123,32,64,0.04649517260107357],[123,32,65,0.042724369627748573],[123,32,66,0.039208650397004816],[123,32,67,0.03594135679272223],[123,32,68,0.032919897498197265],[123,32,69,0.03014786709789926],[123,32,70,0.02762727136788016],[123,32,71,0.025357746094738044],[123,32,72,0.023336081231730872],[123,32,73,0.021555868147755425],[123,32,74,0.020007269557221565],[123,32,75,0.01867691141551049],[123,32,76,0.017547895773470983],[123,32,77,0.01659993330817029],[123,32,78,0.01580959399023929],[123,32,79,0.015150674111248381],[123,33,64,0.03631532839732853],[123,33,65,0.03233815060809786],[123,33,66,0.028624361722159493],[123,33,67,0.02516724387073499],[123,33,68,0.021963735977034427],[123,33,69,0.019016836431600848],[123,33,70,0.01632777175232934],[123,33,71,0.013895255539739597],[123,33,72,0.011715053566891634],[123,33,73,0.009779669194943587],[123,33,74,0.008078148669662761],[123,33,75,0.006596005558478082],[123,33,76,0.005315263304168835],[123,33,77,0.004214614602855105],[123,33,78,0.003269696064941069],[123,33,79,0.002453476388614836],[123,34,64,0.026462775364271215],[123,34,65,0.022279995415424338],[123,34,66,0.01836636118278161],[123,34,67,0.014715469758589176],[123,34,68,0.011323935142792238],[123,34,69,0.00819407532404902],[123,34,70,0.005326294582490404],[123,34,71,0.00271838962622894],[123,34,72,3.6515533945576106E-4],[123,34,73,-0.0017418927285116157],[123,34,74,-0.0036146796011723315],[123,34,75,-0.005268616593821966],[123,34,76,-0.00672253254152387],[123,34,77,-0.00799849182292965],[123,34,78,-0.009121500706423848],[123,34,79,-0.010119103764905926],[123,35,64,0.016911640285197864],[123,35,65,0.012524931088081118],[123,35,66,0.008410666471001488],[123,35,67,0.004563077635057623],[123,35,68,9.78582202331964E-4],[123,35,69,-0.002341245318039066],[123,35,70,-0.005396840423160697],[123,35,71,-0.008191290983940624],[123,35,72,-0.010730692873659523],[123,35,73,-0.013024393034019907],[123,35,74,-0.015085120459782641],[123,35,75,-0.016929005858209778],[123,35,76,-0.01857549100257716],[123,35,77,-0.02004712904726436],[123,35,78,-0.02136927730115459],[123,35,79,-0.022569684165866404],[123,36,64,0.007616003791774746],[123,36,65,0.003027824017282908],[123,36,66,-0.0012868851000799458],[123,36,67,-0.005333018924193703],[123,36,68,-0.009114253003461652],[123,36,69,-0.012629792457264508],[123,36,70,-0.01588089928379254],[123,36,71,-0.01887148231485923],[123,36,72,-0.021608418270086575],[123,36,73,-0.024101764744022536],[123,36,74,-0.02636486560972231],[123,36,75,-0.028414349585798516],[123,36,76,-0.030270022965582146],[123,36,77,-0.03195465774418446],[123,36,78,-0.03349367659776141],[123,36,79,-0.034914736368832154],[123,37,64,-0.0014911503984216187],[123,37,65,-0.006277711168876557],[123,37,66,-0.01079176684247921],[123,37,67,-0.015037207080261263],[123,37,68,-0.019017733003150405],[123,37,69,-0.022733332323685598],[123,37,70,-0.026186043382572386],[123,37,71,-0.029380495923500286],[123,37,72,-0.03232420393842404],[123,37,73,-0.035027754925524346],[123,37,74,-0.03750489603421354],[123,37,75,-0.039772517823640476],[123,37,76,-0.04185053660171377],[123,37,77,-0.043761676538124156],[123,37,78,-0.04553115295312778],[123,37,79,-0.04718625837373613],[123,38,64,-0.010496240995825443],[123,38,65,-0.015477641720418855],[123,38,66,-0.020189128441395466],[123,38,67,-0.02463358355739953],[123,38,68,-0.02881471167516529],[123,38,69,-0.0327332487072625],[123,38,70,-0.036391917906742566],[123,38,71,-0.03979592953171445],[123,38,72,-0.042953254473402105],[123,38,73,-0.045874798378109496],[123,38,74,-0.048574476715504515],[123,38,75,-0.051069191487650475],[123,38,76,-0.05337871050405246],[123,38,77,-0.0555254503651469],[123,38,78,-0.05753416449613664],[123,38,79,-0.05502714853254702],[123,39,64,-0.019448681249787075],[123,39,65,-0.024620710094757657],[123,39,66,-0.029526816313010087],[123,39,67,-0.034168887415942525],[123,39,68,-0.03855062950799332],[123,39,69,-0.042673503623361586],[123,39,70,-0.04654083193752795],[123,39,71,-0.05015826652949119],[123,39,72,-0.053534054597361984],[123,39,73,-0.056679207616642024],[123,39,74,-0.05960757485739017],[123,39,75,-0.062335821910384163],[123,39,76,-0.06399572722231656],[123,39,77,-0.05846396152381353],[123,39,78,-0.05292200672538298],[123,39,79,-0.04740040694094899],[123,40,64,-0.0283514511055995],[123,40,65,-0.033708975042330225],[123,40,66,-0.03880588906355289],[123,40,67,-0.0436429986826161],[123,40,68,-0.0482240015941879],[123,40,69,-0.052551116642683124],[123,40,70,-0.05662822955392938],[123,40,71,-0.06046133995191007],[123,40,72,-0.06405882942570142],[123,40,73,-0.06743163631738579],[123,40,74,-0.06685688231130288],[123,40,75,-0.061541920880453065],[123,40,76,-0.05616729037442315],[123,40,77,-0.05075959089355456],[123,40,78,-0.045347194076250805],[123,40,79,-0.03995987977868066],[123,41,64,-0.037208446431907766],[123,41,65,-0.042745582190105366],[123,41,66,-0.048028606841243285],[123,41,67,-0.053057082307704354],[123,41,68,-0.05783468515949929],[123,41,69,-0.062364471669709945],[123,41,70,-0.06665090103503662],[123,41,71,-0.07070026858613575],[123,41,72,-0.06908322299085698],[123,41,73,-0.06406528486169161],[123,41,74,-0.058948575894351284],[123,41,75,-0.0537550014420931],[123,41,76,-0.0485085247535391],[123,41,77,-0.04323500380941539],[123,41,78,-0.037961940663202035],[123,41,79,-0.03271814457804806],[123,42,64,-0.046023995483243645],[123,42,65,-0.05173433642788816],[123,42,66,-0.057198068747690706],[123,42,67,-0.062413303023376956],[123,42,68,-0.06738368546970108],[123,42,69,-0.07211322669392202],[123,42,70,-0.07056621560885606],[123,42,71,-0.06589988229307972],[123,42,72,-0.061106100866851476],[123,42,73,-0.056202412336604654],[123,42,74,-0.05120822823687675],[123,42,75,-0.04614487342714448],[123,42,76,-0.041035540592889504],[123,42,77,-0.03590515730110337],[123,42,78,-0.030780166646182577],[123,42,79,-0.025688222691555466],[123,43,64,-0.05479983834444423],[123,43,65,-0.06067672360551554],[123,43,66,-0.06631529717653009],[123,43,67,-0.07171199030030846],[123,43,68,-0.07125775968418997],[123,43,69,-0.06697651152214008],[123,43,70,-0.06254655328658333],[123,43,71,-0.0579826417235244],[123,43,72,-0.05330070328151469],[123,43,73,-0.04851808941350441],[123,43,74,-0.0436537433137131],[123,43,75,-0.03872827843014083],[123,43,76,-0.033763969306375666],[123,43,77,-0.027715456694116576],[123,43,78,-0.021573138339839315],[123,43,79,-0.01549559886571428],[123,44,64,-0.06353183647424536],[123,44,65,-0.06956866634158826],[123,44,66,-0.07113944403404579],[123,44,67,-0.06726964477418489],[123,44,68,-0.06323069453037694],[123,44,69,-0.059037518833639155],[123,44,70,-0.054705003701594396],[123,44,71,-0.050248423771140464],[123,44,72,-0.045246990811375475],[123,44,73,-0.03901682472881402],[123,44,74,-0.03275625942306075],[123,44,75,-0.026482705555074947],[123,44,76,-0.02021481086318315],[123,44,77,-0.013972410675346127],[123,44,78,-0.007776391891749241],[123,44,79,-0.0016484714537742546],[123,45,64,-0.07019641355905282],[123,45,65,-0.06675326204133346],[123,45,66,-0.06313403480272037],[123,45,67,-0.059340290633735394],[123,45,68,-0.05538455543507408],[123,45,69,-0.05057031727638834],[123,45,70,-0.044418859804657825],[123,45,71,-0.038199772411415145],[123,45,72,-0.03192770289018069],[123,45,73,-0.025617784105517932],[123,45,74,-0.019285895373123186],[123,45,75,-0.012948835164567789],[123,45,76,-0.006624405467533608],[123,45,77,-3.314083392833046E-4],[123,45,78,0.0059104446135324114],[123,45,79,0.01208070891582276],[123,46,64,-0.06222503266432264],[123,46,65,-0.058845966054455454],[123,46,66,-0.055300053502625506],[123,46,67,-0.04987399375589621],[123,46,68,-0.043785378975200205],[123,46,69,-0.03760656759915563],[123,46,70,-0.03135378099469424],[123,46,71,-0.025042419566909505],[123,46,72,-0.018687554285287813],[123,46,73,-0.012304329362415347],[123,46,74,-0.005908275834934053],[123,46,75,4.844639708469602E-4],[123,46,76,0.006857000883449493],[123,46,77,0.013191651823923367],[123,46,78,0.019469980619212734],[123,46,79,0.025672925888095284],[123,47,64,-0.05441179369963038],[123,47,65,-0.04927823991970484],[123,47,66,-0.043295811212804194],[123,47,67,-0.03719818746229521],[123,47,68,-0.030997896418748228],[123,47,69,-0.024714551589818314],[123,47,70,-0.018365938390840872],[123,47,71,-0.011968459072203444],[123,47,72,-0.005537681002050765],[123,47,73,9.112041151946009E-4],[123,47,74,0.007363010477805474],[123,47,75,0.01380227803975854],[123,47,76,0.020213081906838785],[123,47,77,0.026578930988068898],[123,47,78,0.032882755408372946],[123,47,79,0.03910698199660029],[123,48,64,-0.04294373790082436],[123,48,65,-0.03694961800526665],[123,48,66,-0.03085017686145354],[123,48,67,-0.024639980146533583],[123,48,68,-0.01833206935366628],[123,48,69,-0.011948377360241588],[123,48,70,-0.0055084082881261594],[123,48,71,9.70313226606366E-4],[123,48,72,0.007471634431778507],[123,48,73,0.013980256141434992],[123,48,74,0.020481304245477103],[123,48,75,0.02695999134861834],[123,48,76,0.03340136860835961],[123,48,77,0.03979016761947453],[123,48,78,0.046110731980256156],[123,48,79,0.05234703797751799],[123,49,64,-0.030907576572169554],[123,49,65,-0.02479407843087361],[123,49,66,-0.01858154304445571],[123,49,67,-0.012262280584687564],[123,49,68,-0.00584994544605787],[123,49,69,6.310483203867852E-4],[123,49,70,0.007159336878961156],[123,49,71,0.013716153607256176],[123,49,72,0.020284661019913632],[123,49,73,0.02684937220058769],[123,49,74,0.03339566243877179],[123,49,75,0.039909371522707265],[123,49,76,0.04637649690234495],[123,49,77,0.05278297770865133],[123,49,78,0.059114569397272984],[123,49,79,0.06535680857973764],[123,50,64,-0.01909600255711807],[123,50,65,-0.01286741810548588],[123,50,66,-0.006545449161238927],[123,50,67,-1.2016538300252573E-4],[123,50,68,0.0063940696431749044],[123,50,69,0.012970229968091048],[123,50,70,0.01958496957931109],[123,50,71,0.026218166620527047],[123,50,72,0.032852194981585314],[123,50,73,0.039471285624788854],[123,50,74,0.04606097849889125],[123,50,75,0.052607665642333025],[123,50,76,0.05909822583509282],[123,50,77,0.06551975092536387],[123,50,78,0.07185936373296943],[123,50,79,0.0777598961102188],[123,51,64,-0.007556812211450003],[123,51,65,-0.0012174698148047034],[123,51,66,0.0052104369739175115],[123,51,67,0.011739023619794078],[123,51,68,0.01835312536538443],[123,51,69,0.02502300795793819],[123,51,70,0.03172324331665816],[123,51,71,0.038432252136107445],[123,51,72,0.04513151645949346],[123,51,73,0.05180488222033621],[123,51,74,0.0584379527573599],[123,51,75,0.06501757405323971],[123,51,76,0.07153141220079505],[123,51,77,0.07796762336167054],[123,51,78,0.08368869081749196],[123,51,79,0.08895493395062305],[123,52,64,0.0036700489215728774],[123,52,65,0.01011574227807388],[123,52,66,0.016646170832041104],[123,52,67,0.023275539906257154],[123,52,68,0.02998779770612392],[123,52,69,0.036750441867960115],[123,52,70,0.04353588809010762],[123,52,71,0.05032101238234644],[123,52,72,0.05708630698978541],[123,52,73,0.06381512652088348],[123,52,74,0.07049302543432731],[123,52,75,0.07710718778106296],[123,52,76,0.08326715359396293],[123,52,77,0.08893119470948518],[123,52,78,0.09450839093691044],[123,52,79,0.10000174800569618],[123,53,64,0.014552279477585786],[123,53,65,0.021099803266208146],[123,53,66,0.027729339047657817],[123,53,67,0.034457049270253226],[123,53,68,0.04126591739262719],[123,53,69,0.048120651060060506],[123,53,70,0.05499146365338838],[123,53,71,0.061853617459273216],[123,53,72,0.06868652623019927],[123,53,73,0.07542783823731436],[123,53,74,0.08154821813461198],[123,53,75,0.08758159030941094],[123,53,76,0.09353064775949402],[123,53,77,0.09939729385073307],[123,53,78,0.1051829997255349],[123,53,79,0.11088906685599484],[123,54,64,0.023528351761186284],[123,54,65,0.0309637144386308],[123,54,66,0.03824445349603722],[123,54,67,0.045258401736822294],[123,54,68,0.05216235336866197],[123,54,69,0.059043438285264954],[123,54,70,0.06569645443101041],[123,54,71,0.07224192960087603],[123,54,72,0.07869200689063997],[123,54,73,0.08505517807849994],[123,54,74,0.09133706885438111],[123,54,75,0.09754113028085548],[123,54,76,0.10366923557575045],[123,54,77,0.10972218156120672],[123,54,78,0.1157000943689643],[123,54,79,0.12160273922715173],[123,55,64,0.03207113309305565],[123,55,65,0.03960291838735181],[123,55,66,0.04698256482127383],[123,55,67,0.05418037271029508],[123,55,68,0.06120532271807977],[123,55,69,0.0680880661645703],[123,55,70,0.07485272722480633],[123,55,71,0.0815173799090379],[123,55,72,0.08809506440761988],[123,55,73,0.09459471196685584],[123,55,74,0.1010219767324039],[123,55,75,0.10737997326475146],[123,55,76,0.11366991869577973],[123,55,77,0.11989167875438222],[123,55,78,0.1260442171387653],[123,55,79,0.13212594795355198],[123,56,64,0.04061407600586287],[123,56,65,0.048235401617999274],[123,56,66,0.05570577633534175],[123,56,67,0.062993995839717],[123,56,68,0.07011000162788747],[123,56,69,0.07708686729551437],[123,56,70,0.08395063535841887],[123,56,71,0.09072079276049125],[123,56,72,0.09741132932738307],[123,56,73,0.10403170444619776],[123,56,74,0.1105877202891043],[123,56,75,0.1170823001699177],[123,56,76,0.12351617089072922],[123,56,77,0.12988844819847437],[123,56,78,0.13619712472515375],[123,56,79,0.14243946003039717],[123,57,64,0.049137943073603],[123,57,65,0.05684187796400628],[123,57,66,0.06439479819663396],[123,57,67,0.0717642319056636],[123,57,68,0.07896111272468541],[123,57,69,0.08602081964144948],[123,57,70,0.09297124932809796],[123,57,71,0.09983328929612281],[123,57,72,0.10662191286807482],[123,57,73,0.11334718207320771],[123,57,74,0.12001515667695467],[123,57,75,0.1266287078281209],[123,57,76,0.13318823507886238],[123,57,77,0.13969228579871545],[123,57,78,0.14613807626145878],[123,57,79,0.15252191393246645],[123,58,64,0.05761823374236401],[123,58,65,0.06539783064565971],[123,58,66,0.07302517794052242],[123,58,67,0.0804667809271483],[123,58,68,0.08773457945454596],[123,58,69,0.09486611044494311],[123,58,70,0.1018910335819387],[123,58,71,0.10883160139924163],[123,58,72,0.11570378498710025],[123,58,73,0.12251830732552638],[123,58,74,0.12928158235737697],[123,58,75,0.13599655819084752],[123,58,76,0.14266346309484332],[123,58,77,0.14928045321982672],[123,58,78,0.15584416123739514],[123,58,79,0.16235014534406988],[123,59,64,0.06602572060387958],[123,59,65,0.07387404462773907],[123,59,66,0.08156782565344178],[123,59,67,0.0890727910848973],[123,59,68,0.09640188311079533],[123,59,69,0.10359462260570941],[123,59,70,0.1106823167058391],[123,59,71,0.11768852529302898],[123,59,72,0.1246302116141856],[123,59,73,0.1315188002375879],[123,59,74,0.13836114037373767],[123,59,75,0.1451603728670183],[123,59,76,0.1519166994406409],[123,59,77,0.15862805304894081],[123,59,78,0.16529066845436816],[123,59,79,0.1718995524014947],[123,60,64,0.07432703710955167],[123,60,65,0.08223719116546592],[123,60,66,0.08998959148454513],[123,60,67,0.09754942563830099],[123,60,68,0.10493061630504329],[123,60,69,0.11217447269026243],[123,60,70,0.11931381272135254],[123,60,71,0.12637342556793876],[123,60,72,0.13337124146919274],[123,60,73,0.14031940861799572],[123,60,74,0.14722527505548574],[123,60,75,0.1540922738099213],[123,60,76,0.16092070979186127],[123,60,77,0.16770844723123823],[123,60,78,0.17445149670726995],[123,60,79,0.18114450107931024],[123,61,64,0.08248530691729111],[123,61,65,0.09045045470225055],[123,61,66,0.0982538856178592],[123,61,67,0.10586047214692106],[123,61,68,0.11328507846890806],[123,61,69,0.1205705905578759],[123,61,70,0.1277511834272464],[123,61,71,0.1348527795125403],[123,61,72,0.14189423227348],[123,61,73,0.14888841658562582],[123,61,74,0.15584322381187998],[123,61,75,0.16276245972596315],[123,61,76,0.1696466437395051],[123,61,77,0.1764937081594817],[123,61,78,0.1832995964696911],[123,61,79,0.19005875988874282],[123,62,64,0.09046083760783191],[123,62,65,0.09847422504676327],[123,62,66,0.10632136380987843],[123,62,67,0.11396701727296751],[123,62,68,0.1214269368308353],[123,62,69,0.12874536420983831],[123,62,70,0.13595766554725655],[123,62,71,0.1430907856573776],[123,62,72,0.1501644404020126],[123,62,73,0.15719221559913127],[123,62,74,0.1641825703068784],[123,62,75,0.17113974260304507],[123,62,76,0.17806455626065668],[123,62,77,0.18495512699653188],[123,62,78,0.19180746723773814],[123,62,79,0.19861598861076787],[123,63,64,0.09821188422940205],[123,63,65,0.10626686036616073],[123,63,66,0.11415068409636436],[123,63,67,0.12182819283173821],[123,63,68,0.12931595859684866],[123,63,69,0.13665935564937662],[123,63,70,0.14389476852495026],[123,63,71,0.15105004241989933],[123,63,72,0.15814567990398096],[123,63,73,0.16519594393910675],[123,63,74,0.17220986499731425],[123,63,75,0.179192150354739],[123,63,76,0.18614399391964093],[123,63,77,0.1930637852294215],[123,63,78,0.19994771652034],[123,63,79,0.20679028703418795],[123,64,64,0.10569545464066817],[123,64,65,0.1137854928135369],[123,64,66,0.12169930632710839],[123,64,67,0.12940196458907058],[123,64,68,0.13691078567643486],[123,64,69,0.14427205893560702],[123,64,70,0.15152301398955736],[123,64,71,0.15869226771184028],[123,64,72,0.16580102158679824],[123,64,73,0.1728641651665414],[123,64,74,0.17989128338155505],[123,64,75,0.18688756574571114],[123,64,76,0.19385461577814644],[123,64,77,0.20079115924170954],[123,64,78,0.20769365006677465],[123,64,79,0.21455677309004803],[123,65,64,0.11286816981987335],[123,65,65,0.120986890083046],[123,65,66,0.1289243479379941],[123,65,67,0.13664597732794553],[123,65,68,0.14416976558732642],[123,65,69,0.15154271417368445],[123,65,70,0.15880273073829565],[123,65,71,0.16597907345135082],[123,65,72,0.1730935461947499],[123,65,73,0.1801615996690715],[123,65,74,0.18719333614105127],[123,65,75,0.19419441584199112],[123,65,76,0.20116686330933964],[123,65,77,0.20810977224099242],[123,65,78,0.2150199077010057],[123,65,79,0.2218922047762024],[123,66,64,0.11968718044379272],[123,66,65,0.1278283742416001],[123,66,66,0.13578349734710285],[123,66,67,0.14351845760750662],[123,66,68,0.15105183999935695],[123,66,69,0.15843117893658576],[123,66,70,0.16569490676240894],[123,66,71,0.17287279653384366],[123,66,72,0.1799871532567184],[123,66,73,0.18705391088266146],[123,66,74,0.19408363276766993],[123,66,75,0.20108241357593049],[123,66,76,0.20805268089430431],[123,66,77,0.21499389510007955],[123,66,78,0.22190314629356475],[123,66,79,0.2287756473676456],[123,67,64,0.12611114004354068],[123,67,65,0.1342687981815366],[123,67,66,0.14223598535054743],[123,67,67,0.14997917462101784],[123,67,68,0.1575174913557616],[123,67,69,0.16489885758771428],[123,67,70,0.17216209881399389],[123,67,71,0.17933738678201203],[123,67,72,0.18644742614099774],[123,67,73,0.19350854673742982],[123,67,74,0.20053169922862707],[123,67,75,0.20752335197266397],[123,67,76,0.21448628743433265],[123,67,77,0.22142029662381907],[123,67,78,0.22832277035345777],[123,67,79,0.235189186358144],[123,68,64,0.13210123490163675],[123,68,65,0.1402695798934892],[123,68,66,0.14824361474742945],[123,68,67,0.15599045941270373],[123,68,68,0.16352974786397428],[123,68,69,0.17090968882797403],[123,68,70,0.1781693998664765],[123,68,71,0.1853393522530614],[123,68,72,0.19244255371501548],[123,68,73,0.1994956367387194],[123,68,74,0.20650985008607134],[123,68,75,0.2134919514532049],[123,68,76,0.2204449994840829],[123,68,77,0.22736904362824256],[123,68,78,0.23426171060039444],[123,68,79,0.24111868645947923],[123,69,64,0.13762227649960995],[123,69,65,0.14579580048293342],[123,69,66,0.15377185422306305],[123,69,67,0.16151828858627504],[123,69,68,0.16905525307841404],[123,69,69,0.17643119774257346],[123,69,70,0.1836854707415534],[123,69,71,0.19084876810473314],[123,69,72,0.19794431466222986],[123,69,73,0.2049889505029488],[123,69,74,0.21199412057296768],[123,69,75,0.2189667653142321],[123,69,76,0.22591011052469934],[123,69,77,0.23282435489758999],[123,69,78,0.23970725396569983],[123,69,79,0.24655459943646774],[123,70,64,0.14265870218966192],[123,70,65,0.1508324175446816],[123,70,66,0.15880624261162596],[123,70,67,0.1665488655135664],[123,70,68,0.17408097792190588],[123,70,69,0.18145123838015445],[123,70,70,0.18869917069771747],[123,70,71,0.19585562196652645],[123,70,72,0.20294394437577556],[123,70,73,0.20998108255353215],[123,70,74,0.21697856401496912],[123,70,75,0.2239433905803932],[123,70,76,0.23087882890733938],[123,70,77,0.2377850985574985],[123,70,78,0.24465995628757578],[123,70,79,0.2514991755129936],[123,71,64,0.14724270556379782],[123,71,65,0.15541273780769385],[123,71,66,0.1633811895975706],[123,71,67,0.17111773408178943],[123,71,68,0.1786435609491847],[123,71,69,0.18600736687780114],[123,71,70,0.19324868607362317],[123,71,71,0.20039835991381413],[123,71,72,0.20747972017048666],[123,71,73,0.2145096778053683],[123,71,74,0.22149971487780032],[123,71,75,0.22845677739178272],[123,71,76,0.23538406718875804],[123,71,77,0.2422817312692882],[123,71,78,0.24914744719514817],[123,71,79,0.25597690348326574],[123,72,64,0.15140979156738693],[123,72,65,0.1595732825927704],[123,72,66,0.16753420463108076],[123,72,67,0.1752633967642449],[123,72,68,0.18278243079433382],[123,72,69,0.19013973810117252],[123,72,70,0.19737459234085455],[123,72,71,0.20451759387203244],[123,72,72,0.21159185271866207],[123,72,73,0.21861407718620457],[123,72,74,0.22559556564089928],[123,72,75,0.23254309924464472],[123,72,76,0.23945973371872853],[123,72,77,0.24634548848587481],[123,72,78,0.2531979318083099],[123,72,79,0.26001266079937013],[123,73,64,0.15519033592639417],[123,73,65,0.16334520361391103],[123,73,66,0.1712971740038292],[123,73,67,0.17901845382132978],[123,73,68,0.18653082806252483],[123,73,69,0.19388206342237696],[123,73,70,0.20111082668922386],[123,73,71,0.2082471868672666],[123,73,72,0.21531379452852129],[123,73,73,0.22232696693636841],[123,73,74,0.22929767642589755],[123,73,75,0.236232439808544],[123,73,76,0.24313410684863995],[123,73,77,0.2500025461351976],[123,73,78,0.2568352269400114],[123,73,79,0.2636276959125712],[123,74,64,0.15861146487402492],[123,74,65,0.16675616936774357],[123,74,66,0.17469824802093875],[123,74,67,0.18241148590516815],[123,74,68,0.18991767570541876],[123,74,69,0.19726345735575557],[123,74,70,0.20448649654282208],[123,74,71,0.2116160071235521],[123,74,72,0.21867392227081767],[123,74,73,0.22567597154079008],[123,74,74,0.23263266133413976],[123,74,75,0.23955015650453773],[123,74,76,0.24643106114709776],[123,74,77,0.2532750968741534],[123,74,78,0.26007967715264424],[123,74,79,0.2668403765359313],[123,75,64,0.16169892815312628],[123,75,65,0.16983224552060003],[123,75,66,0.17776372291515324],[123,75,67,0.18546893213619658],[123,75,68,0.19296944562232135],[123,75,69,0.20031028127639397],[123,75,70,0.2075276861786718],[123,75,71,0.21464968148682423],[123,75,72,0.22169721988536822],[123,75,73,0.22868524913435892],[123,75,74,0.23562367918987936],[123,75,75,0.24251825064884497],[123,75,76,0.24937130254842407],[123,75,77,0.2561824378237347],[123,75,78,0.2629490849929671],[123,75,79,0.26966695489621895],[123,76,64,0.16447896290741673],[123,76,65,0.1725997669045539],[123,76,66,0.1805199151225487],[123,76,67,0.18821696128813148],[123,76,68,0.19571201915310504],[123,76,69,0.20304798193507276],[123,76,70,0.21025925923175556],[123,76,71,0.21737234605468264],[123,76,72,0.22440696046908884],[123,76,73,0.231377087532216],[123,76,74,0.23829192701793156],[123,76,75,0.24515674269376636],[123,76,76,0.2519736111924053],[123,76,77,0.25874206879110145],[123,76,78,0.2654596546760307],[123,76,79,0.2721223495237476],[123,77,64,0.16698014592226212],[123,77,65,0.17508719857462557],[123,77,66,0.18299502537366488],[123,77,67,0.1906833335464008],[123,77,68,0.19817253895232928],[123,77,69,0.20550292230256945],[123,77,70,0.21270665468656502],[123,77,71,0.21980839170628466],[123,77,72,0.226826384762905],[123,77,73,0.23377349885504686],[123,77,74,0.24065813440781064],[123,77,75,0.24748505092780557],[123,77,76,0.2542560905529455],[123,77,77,0.2609707998347737],[123,77,78,0.2676269483520822],[123,77,79,0.27422094300710753],[123,78,64,0.16923523153454703],[123,78,65,0.17732698323138],[123,78,66,0.185220989899497],[123,78,67,0.1928992501446192],[123,78,68,0.2003812495680556],[123,78,69,0.20770420210581397],[123,78,70,0.21489767378164934],[123,78,71,0.22198420205130562],[123,78,72,0.22898037387952985],[123,78,73,0.23589781054590855],[123,78,74,0.24274405674670205],[123,78,75,0.24952337183313533],[123,78,76,0.2562374212973227],[123,78,77,0.2628858668829705],[123,78,78,0.26946685395586883],[123,78,79,0.2759773950183977],[123,79,64,0.1712631054251809],[123,79,65,0.17933758226959304],[123,79,66,0.18721582403407633],[123,79,67,0.1948822361762349],[123,79,68,0.20235516328501946],[123,79,69,0.20966834589396346],[123,79,70,0.21684841650868533],[123,79,71,0.22391554446803635],[123,79,72,0.23088447491501185],[123,79,73,0.23776547467989007],[123,79,74,0.2445651827052337],[123,79,75,0.25128736291267134],[123,79,76,0.25793355767888704],[123,79,77,0.26450364035079044],[123,79,78,0.2709962654840927],[123,79,79,0.27740921573492494],[123,80,64,0.17301444514020115],[123,80,65,0.18106935018508058],[123,80,66,0.18893029723959726],[123,80,67,0.19658425992048711],[123,80,68,0.2040482905927222],[123,80,69,0.21135230531463456],[123,80,70,0.21851968630503404],[123,80,71,0.22556795718852055],[123,80,72,0.2325097824008541],[123,80,73,0.23935387352542908],[123,80,74,0.2461058002557346],[123,80,75,0.2527687039463393],[123,80,76,0.259343911979571],[123,80,77,0.26583145143449644],[123,80,78,0.27223046079574903],[123,80,79,0.2785394986816255],[123,81,64,0.17443789594277392],[123,81,65,0.18247045753142493],[123,81,66,0.19031281911136053],[123,81,67,0.19795472468475975],[123,81,68,0.20541184687428643],[123,81,69,0.21270999167564353],[123,81,70,0.21986899483974284],[123,81,71,0.2269034368155202],[123,81,72,0.23382360760615165],[123,81,73,0.240636378282318],[123,81,74,0.24734597690338622],[123,81,75,0.25395466686340784],[123,81,76,0.2604633259416203],[123,81,77,0.2668719245945017],[123,81,78,0.27317990227511574],[123,81,79,0.27938644080486036],[123,82,64,0.175498587610649],[123,82,65,0.1835053751355137],[123,82,66,0.19132767880096285],[123,82,67,0.19895823208098706],[123,82,68,0.20641129798124808],[123,82,69,0.2137083607605585],[123,82,70,0.22086545096433172],[123,82,71,0.22789391249031377],[123,82,72,0.23480134218557555],[123,82,73,0.24159243543348133],[123,82,74,0.24826973551847883],[123,82,75,0.25483428482248477],[123,82,76,0.26128617616914007],[123,82,77,0.2676250028891065],[123,82,78,0.2738502064276227],[123,82,79,0.2799613205540896],[123,83,64,0.17617560717007397],[123,83,65,0.18415239981954806],[123,83,66,0.1919526536697052],[123,83,67,0.19957230732022904],[123,83,68,0.20702423584714147],[123,83,69,0.21432546969773378],[123,83,70,0.22148802633961093],[123,83,71,0.22851974380987322],[123,83,72,0.23542520752747922],[123,83,73,0.2422065819613754],[123,83,74,0.2488643449526231],[123,83,75,0.25539792275646855],[123,83,76,0.26180622413446525],[123,83,77,0.2680880720851972],[123,83,78,0.27424253205161236],[123,83,79,0.2802691356827923],[123,84,64,0.1764596526986327],[123,84,65,0.18440135793576168],[123,84,66,0.1921767912723666],[123,84,67,0.19978529195691525],[123,84,68,0.2072384142929395],[123,84,69,0.2145486855367664],[123,84,70,0.22172396322955062],[123,84,71,0.22876835049935473],[123,84,72,0.23568312476867723],[123,84,73,0.2424675696660369],[123,84,74,0.2491197079180386],[123,84,75,0.25563693326997644],[123,84,76,0.2620165397510794],[123,84,77,0.2682561468627486],[123,84,78,0.27435401952136645],[123,84,79,0.2803092818307107],[123,85,64,0.1763508742276461],[123,85,65,0.18425149266316942],[123,85,66,0.19199837047439444],[123,85,67,0.1995944096643251],[123,85,68,0.20704995030460624],[123,85,69,0.21437305043177207],[123,85,70,0.22156732890415992],[123,85,71,0.22863297775311878],[123,85,72,0.23556770879639938],[123,85,73,0.24236760125767853],[123,85,74,0.2490278481108452],[123,85,75,0.25553117749426446],[123,85,76,0.26190949902448324],[123,85,77,0.2681221188724591],[123,85,78,0.27417828019462126],[123,85,79,0.28007627017353615],[123,86,64,0.1758569080992622],[123,86,65,0.18370954140148504],[123,86,66,0.19142304794651543],[123,86,67,0.1990040111120157],[123,86,68,0.2064616965947668],[123,86,69,0.21379980890213549],[123,86,70,0.22101772170290918],[123,86,71,0.22811160180561663],[123,86,72,0.23441829640063755],[123,86,73,0.24068850522872293],[123,86,74,0.24693994109944836],[123,86,75,0.253165257236342],[123,86,76,0.2593562408791919],[123,86,77,0.2655034283300093],[123,86,78,0.2715958288439688],[123,86,79,0.27762075836920896],[123,87,64,0.17499111063646527],[123,87,65,0.1827880091078803],[123,87,66,0.19046219580378568],[123,87,67,0.19802400355708516],[123,87,68,0.20548179082561402],[123,87,69,0.21283510223582577],[123,87,70,0.22007913343883323],[123,87,71,0.226271178096868],[123,87,72,0.23231838342167332],[123,87,73,0.2383537412006165],[123,87,74,0.2443737761100472],[123,87,75,0.2503743460779159],[123,87,76,0.256350113090719],[123,87,77,0.26229412533411306],[123,87,78,0.26819751201994985],[123,87,79,0.27404929198279254],[123,88,64,0.1737709965206148],[123,88,65,0.18150364296537916],[123,88,66,0.18913143571066207],[123,88,67,0.19666847033251778],[123,88,68,0.20412238646371095],[123,88,69,0.2114888347210911],[123,88,70,0.21825106519497658],[123,88,71,0.2240651904510953],[123,88,72,0.2298650744112344],[123,88,73,0.23565118873264285],[123,88,74,0.2414237940639697],[123,88,75,0.24718224671359906],[123,88,76,0.25292441929935855],[123,88,77,0.25864623714591156],[123,88,78,0.2643413319021716],[123,88,79,0.2700008135676633],[123,89,64,0.17221688684002745],[123,89,65,0.1798761133467165],[123,89,66,0.1874493743592807],[123,89,67,0.19495448501701107],[123,89,68,0.20239856985908283],[123,89,69,0.20977371603939482],[123,89,70,0.21596300828880205],[123,89,71,0.22152859981075743],[123,89,72,0.22707224420030092],[123,89,73,0.23259842777481024],[123,89,74,0.2381113137966856],[123,89,75,0.24361398165886997],[123,89,76,0.249107784920797],[123,89,77,0.25459183012439407],[123,89,78,0.26006257801006816],[123,89,79,0.26551356845328683],[123,90,64,0.17035077137167529],[123,90,65,0.17792690564157737],[123,90,66,0.1854365448418536],[123,90,67,0.19290112469872236],[123,90,68,0.20032746778806546],[123,90,69,0.2077044838229636],[123,90,70,0.21335804810844441],[123,90,71,0.21867161749397446],[123,90,72,0.22395390371013904],[123,90,73,0.22921342759625396],[123,90,74,0.2344583451741049],[123,90,75,0.23969560777332805],[123,90,76,0.24493024640588296],[123,90,77,0.2501647825105478],[123,90,78,0.2553987668610651],[123,90,79,0.2606284481144554],[123,91,64,0.16819538928446168],[123,91,65,0.1756784271464023],[123,91,66,0.18311455807813531],[123,91,67,0.19052868639855677],[123,91,68,0.19792754937011922],[123,91,69,0.20529731007275556],[123,91,70,0.21044311586938078],[123,91,71,0.21550474616570847],[123,91,72,0.2205244061215042],[123,91,73,0.22551459506183583],[123,91,74,0.23048747325441266],[123,91,75,0.23545393317433586],[123,91,76,0.2404228008745671],[123,91,77,0.2454001697994052],[123,91,78,0.2503888690318145],[123,91,79,0.2553880676289745],[123,92,64,0.16577353210573673],[123,92,65,0.17315333287350929],[123,92,66,0.1805054681244283],[123,92,67,0.18785811039617883],[123,92,68,0.19521812596257718],[123,92,69,0.202343378928499],[123,92,70,0.20722574368334276],[123,92,71,0.21203897272261163],[123,92,72,0.21679850585813962],[123,92,73,0.22152069133382335],[123,92,74,0.226221627060891],[123,92,75,0.23091613524296742],[123,92,76,0.23561687333883302],[123,92,77,0.2403335839380002],[123,92,78,0.2450724857574672],[123,92,79,0.249835807610959],[123,93,64,0.16310757247051416],[123,93,65,0.1703740738178102],[123,93,66,0.17763135487927173],[123,93,67,0.1849106139015945],[123,93,68,0.19221905235182002],[123,93,69,0.19905764745945495],[123,93,70,0.203714201857507],[123,93,71,0.2082857965851526],[123,93,72,0.21279126805277476],[123,93,73,0.21725061501723683],[123,93,74,0.22168373136523858],[123,93,75,0.226109278526316],[123,93,76,0.23054370073935176],[123,93,77,0.2350003860028913],[123,93,78,0.23948897515167178],[123,93,79,0.24401482112335113],[123,94,64,0.16021922187368706],[123,94,65,0.1673626709234399],[123,94,66,0.17451412741134467],[123,94,67,0.1817075382354777],[123,94,68,0.18895063229329337],[123,94,69,0.19547699830515705],[123,94,70,0.19991745499127817],[123,94,71,0.20425709095685124],[123,94,72,0.20851782634387034],[123,94,73,0.21272304992038948],[123,94,74,0.21689624000537272],[123,94,75,0.22105973143541044],[123,94,76,0.2252336320862383],[123,94,77,0.2294348920472501],[123,94,78,0.2336765281377909],[123,94,79,0.2379670060538433],[123,95,64,0.157129520368961],[123,95,65,0.16414071771867336],[123,95,66,0.17117555086680886],[123,95,67,0.17827041242211455],[123,95,68,0.18543373120591056],[123,95,69,0.1916087566216517],[123,95,70,0.19584493439504036],[123,95,71,0.19996479480253906],[123,95,72,0.20399298702006174],[123,95,73,0.20795597574568878],[123,95,74,0.21188054937879064],[123,95,75,0.21579248072783005],[123,95,76,0.2197153440565599],[123,95,77,0.2236694918424248],[123,95,78,0.22767119419009466],[123,95,79,0.23173194342115372],[123,96,64,0.15385906090223683],[123,96,65,0.16072961433365557],[123,96,66,0.1676374996643529],[123,96,67,0.1746212358579277],[123,96,68,0.18169009859675056],[123,96,69,0.1874607578229667],[123,96,70,0.19150612455357335],[123,96,71,0.1954204334763261],[123,96,72,0.1992306776863384],[123,96,73,0.2029660401594959],[123,96,74,0.20665629086167533],[123,96,75,0.2103303428477974],[123,96,76,0.21401497145921453],[123,96,77,0.21773370027129169],[123,96,78,0.22150585699112177],[123,96,79,0.22534580206215932],[123,97,64,0.15042845073051364],[123,97,65,0.15715103538035569],[123,97,66,0.163922439455273],[123,97,67,0.17078298249476234],[123,97,68,0.17774290257834022],[123,97,69,0.18304079111542546],[123,97,70,0.18690996154072992],[123,97,71,0.19063446609579493],[123,97,72,0.19424323877178648],[123,97,73,0.19776779081394094],[123,97,74,0.20124050100513616],[123,97,75,0.20469307127405484],[123,97,76,0.20815515203129947],[123,97,77,0.21165314116028133],[123,97,78,0.21520916011761018],[123,97,79,0.21884021013417618],[123,98,64,0.146859012160491],[123,98,65,0.1534276339583922],[123,98,66,0.1600541401136933],[123,98,67,0.1667803287712087],[123,98,68,0.17361747864408844],[123,98,69,0.17835583969223057],[123,98,70,0.18206404146399374],[123,98,71,0.18561545791442208],[123,98,72,0.18904055633572706],[123,98,73,0.19237276601055972],[123,98,74,0.19564666845571735],[123,98,75,0.1988963590995702],[123,98,76,0.20215398508144955],[123,98,77,0.2054484633660112],[123,98,78,0.20880438287458403],[123,98,79,0.2122410938528897],[123,99,64,0.14317372464084277],[123,99,65,0.14958398385070157],[123,99,66,0.1560586218252018],[123,99,67,0.16264060733384983],[123,99,68,0.16934229468416476],[123,99,69,0.17341111569856854],[123,99,70,0.17697363717553108],[123,99,71,0.18036907608698793],[123,99,72,0.18362903475477887],[123,99,73,0.1867884428027397],[123,99,74,0.18988365663468681],[123,99,75,0.1929507361339673],[123,99,76,0.19602390354157015],[123,99,77,0.19913418895748547],[123,99,78,0.20230826640170085],[123,99,79,0.20556748387119927],[123,100,64,0.1393984100600521],[123,100,65,0.14564776179106126],[123,100,66,0.15196533616244828],[123,100,67,0.158394988415289],[123,100,68,0.16457545635175802],[123,100,69,0.1682088882366424],[123,100,70,0.17164052163365823],[123,100,71,0.17489690735617877],[123,100,72,0.178010407991176],[123,100,73,0.1810170414346457],[123,100,74,0.18395450129306373],[123,100,75,0.18686035988299582],[123,100,76,0.18977045903234935],[123,100,77,0.19271749335928826],[123,100,78,0.19572979018124037],[123,100,79,0.19883028969103764],[123,101,64,0.1355606226949901],[123,101,65,0.14164844657867656],[123,101,66,0.14780567657786076],[123,101,67,0.15407680181805747],[123,101,68,0.15922824977639455],[123,101,69,0.16275053827685868],[123,101,70,0.1660651848639166],[123,101,71,0.16919881621722602],[123,101,72,0.17218421272309217],[123,101,73,0.17505808247382212],[123,101,74,0.17785901675954227],[123,101,75,0.18062563301491047],[123,101,76,0.18339491064188687],[123,101,77,0.18620072458940992],[123,101,78,0.18907258103431565],[123,101,79,0.1920345589795122],[123,102,64,0.13166102107803013],[123,102,65,0.13758660011511312],[123,102,66,0.14358019537092473],[123,102,67,0.1496866977359474],[123,102,68,0.15365249791213498],[123,102,69,0.1570753412085066],[123,102,70,0.16028734870553984],[123,102,71,0.16331494687648268],[123,102,72,0.16619097232128904],[123,102,73,0.16895239531040157],[123,102,74,0.1716382285648036],[123,102,75,0.1742876274212469],[123,102,76,0.17693818698098093],[123,102,77,0.17962444129056968],[123,102,78,0.1823765690574106],[123,102,79,0.1852193098648119],[123,103,64,0.12768158636051352],[123,103,65,0.1334429341056695],[123,103,66,0.1392685107498293],[123,103,67,0.14434700498059364],[123,103,68,0.14791178680459177],[123,103,69,0.15124813554755862],[123,103,70,0.15437291200594477],[123,103,71,0.15731203280192535],[123,103,72,0.16009798655758584],[123,103,73,0.16276753082727005],[123,103,74,0.16535957661776227],[123,103,75,0.1679132667731924],[123,103,76,0.17046625394638837],[123,103,77,0.17305318332397948],[123,103,78,0.17570438472190908],[123,103,79,0.17844477812559312],[123,104,64,0.12360725225022193],[123,104,65,0.1292014677743641],[123,104,66,0.13485396638406302],[123,104,67,0.13857737162736855],[123,104,68,0.14206689275301826],[123,104,69,0.1453303653535648],[123,104,70,0.14838375488393435],[123,104,71,0.15125214386002125],[123,104,72,0.15396724817544236],[123,104,73,0.15656511468868292],[123,104,74,0.15908400696721248],[123,104,75,0.1615624855235354],[123,104,76,0.1640376883240804],[123,104,77,0.16654381679847513],[123,104,78,0.1691108320271731],[123,104,79,0.1717633652440365],[123,105,64,0.11942820924835462],[123,105,65,0.12485179996309785],[123,105,66,0.12909757591613186],[123,105,67,0.13274779727525216],[123,105,68,0.136173683995736],[123,105,69,0.13937805632021422],[123,105,70,0.14237579829070637],[123,105,71,0.1451908373764765],[123,105,72,0.1478536922811338],[123,105,73,0.15039920056318978],[123,105,74,0.15286443292922647],[123,105,75,0.15528680051466692],[123,105,76,0.15770236092051804],[123,105,77,0.16014432822853392],[123,105,78,0.16264179167509352],[123,105,79,0.165218647130087],[123,106,64,0.11514214250757954],[123,106,65,0.11953593776981089],[123,106,66,0.12331635259254704],[123,106,67,0.12690728991321096],[123,106,68,0.130281235094552],[123,106,69,0.13344004594904127],[123,106,70,0.13639735958531576],[123,106,71,0.13917564670140445],[123,106,72,0.14180382325938168],[123,106,73,0.14431503839606244],[123,106,74,0.14674464531198464],[123,106,75,0.1491283613507867],[123,106,76,0.1515006229485499],[123,106,77,0.15389314060086964],[123,106,78,0.15633365846732178],[123,106,79,0.1588449227129557],[123,107,64,0.10998236798906809],[123,107,65,0.11383225506606348],[123,107,66,0.11755444012492877],[123,107,67,0.12109611429795121],[123,107,68,0.12442963054934643],[123,107,69,0.12755591647589135],[123,107,70,0.1304872274830777],[123,107,71,0.13324430884926877],[123,107,72,0.135854103421374],[123,107,73,0.13834762980420923],[123,107,74,0.1407580375777695],[123,107,75,0.14311884556709187],[123,107,76,0.14546236867758836],[123,107,77,0.1478183382976643],[123,107,78,0.15021272076306336],[123,107,79,0.15266673787784046],[123,108,64,0.10437594446723374],[123,108,65,0.10816760275502683],[123,108,66,0.11184067170236568],[123,108,67,0.11534315740494604],[123,108,68,0.11864745571115672],[123,108,69,0.12175362860528191],[123,108,70,0.12467245444526728],[123,108,71,0.1274227293253624],[123,108,72,0.13002910157352118],[123,108,73,0.13252006889380818],[123,108,74,0.13492614439070225],[123,108,75,0.13727819722951395],[123,108,76,0.1396059732023943],[123,108,77,0.14193679998546116],[123,108,78,0.14429448139222806],[123,108,79,0.14669838445575684],[123,109,64,0.09881352731973084],[123,109,65,0.10255601540898568],[123,109,66,0.1061894907311838],[123,109,67,0.10966291487199636],[123,109,68,0.11294891874286231],[123,109,69,0.11604679939392648],[123,109,70,0.11896580948200101],[123,109,71,0.12172262678452643],[123,109,72,0.12433934387370735],[123,109,73,0.12684161063894384],[123,109,74,0.12925693551288184],[123,109,75,0.1316131508063113],[123,109,76,0.13393704710521429],[123,109,77,0.1362531812322088],[123,109,78,0.13858286182709142],[123,109,79,0.1409433161608911],[123,110,64,0.09327907496370877],[123,110,65,0.0969821609860283],[123,110,66,0.10058596350496496],[123,110,67,0.10404053457602234],[123,110,68,0.10731895150852823],[123,110,69,0.11041988672725579],[123,110,70,0.11335107145294332],[123,110,71,0.11612695858264006],[123,110,72,0.11876689260396946],[123,110,73,0.12129342086795744],[123,110,74,0.12373075161812738],[123,110,75,0.12610336376091982],[123,110,76,0.128434772948322],[123,110,77,0.1307464581303836],[123,110,78,0.1330569523255094],[123,110,79,0.13538110095351266],[123,111,64,0.08771101258291406],[123,111,65,0.09138474884638553],[123,111,66,0.09496900548663298],[123,111,67,0.09841507828925032],[123,111,68,0.10169673168742083],[123,111,69,0.10481219517567757],[123,111,70,0.10776773168593518],[123,111,71,0.110575515654697],[123,111,72,0.11325200520037823],[123,111,73,0.11581644279902453],[123,111,74,0.11828948933104066],[123,111,75,0.1206919960002849],[123,111,76,0.12304391825447103],[123,111,77,0.12536337546451595],[123,111,78,0.12766585975249775],[123,111,79,0.12996359699642038],[123,112,64,0.08204432552956777],[123,112,65,0.08569767699985564],[123,112,66,0.08927199404749334],[123,112,67,0.09272004589131964],[123,112,68,0.0960165745171217],[123,112,69,0.09915958001701158],[123,112,70,0.1021539254105122],[123,112,71,0.10500945152630474],[123,112,72,0.10773957355086682],[123,112,73,0.11035999212539707],[123,112,74,0.11288752327297356],[123,112,75,0.115339051111323],[123,112,76,0.117730606979328],[123,112,77,0.12007657827948028],[123,112,78,0.12238905001587208],[123,112,79,0.12467728169086764],[123,113,64,0.07623737196491222],[123,113,65,0.07987764129939073],[123,113,66,0.08345045877266244],[123,113,67,0.08691035723893997],[123,113,68,0.09023338036186025],[123,113,69,0.09341753206636934],[123,113,70,0.096466352850132],[123,113,71,0.09938729241973014],[123,113,72,0.10219055225323778],[123,113,73,0.10488802793859082],[123,113,74,0.10749235491671481],[123,113,75,0.11001606097916677],[123,113,76,0.1124708285907443],[123,113,77,0.11486686982988167],[123,113,78,0.11721241646539719],[123,113,79,0.11951332741978746],[123,114,64,0.07027089109752427],[123,114,65,0.07390351695332793],[123,114,66,0.07748167040899352],[123,114,67,0.08096196671524203],[123,114,68,0.08432208622083705],[123,114,69,0.08756027855345533],[123,114,70,0.09067884978441206],[123,114,71,0.09368281166305413],[123,114,72,0.09657898991969596],[123,114,73,0.09937521701975743],[123,114,74,0.10207961228947957],[123,114,75,0.10469995210366997],[123,114,76,0.10724313259665495],[123,114,77,0.10971472713047277],[123,114,78,0.1121186405307544],[123,114,79,0.11445686188288681],[123,115,64,0.06414428955222118],[123,115,65,0.06777271999645369],[123,115,66,0.07136111711994975],[123,115,67,0.07486849837745617],[123,115,68,0.07827450642447284],[123,115,69,0.08157787649395762],[123,115,70,0.08477977923933494],[123,115,71,0.08788276216275982],[123,115,72,0.09089014027222274],[123,115,73,0.09380545558190626],[123,115,74,0.09663200762149614],[123,115,75,0.09937245694066399],[123,115,76,0.10202850341697328],[123,115,77,0.10460064100021862],[123,115,78,0.10708799035484094],[123,115,79,0.10948821069638101],[123,116,64,0.057872136558916744],[123,116,65,0.06149777319057718],[123,116,66,0.06509917821547997],[123,116,67,0.06863806892995541],[123,116,68,0.0720963488741992],[123,116,69,0.07547346687355855],[123,116,70,0.07876956704829746],[123,116,71,0.0819847338781759],[123,116,72,0.08511867776409074],[123,116,73,0.08817047380468762],[123,116,74,0.09113835516466887],[123,116,75,0.0940195622828025],[123,116,76,0.0968102490414227],[123,116,77,0.09950544689645485],[123,116,78,0.10209908784854774],[123,116,79,0.10458408702322737],[123,117,64,0.05148087156439283],[123,117,65,0.0551030799798675],[123,117,66,0.0587179989572185],[123,117,67,0.06229030204370857],[123,117,68,0.06580441020839618],[123,117,69,0.06926069282695824],[123,117,70,0.07265838420370896],[123,117,71,0.07599513889346371],[123,117,72,0.07926701994073984],[123,117,73,0.08246852493858259],[123,117,74,0.08559265047391741],[123,117,75,0.08863099544784507],[123,117,76,0.09157390368444276],[123,117,77,0.09441064617106068],[123,117,78,0.09712964320741287],[123,117,79,0.09971872668104705],[123,118,64,0.04500572759754892],[123,118,65,0.04862190985750073],[123,118,66,0.05224856977758588],[123,118,67,0.055853537292002695],[123,118,68,0.059423953040209525],[123,118,69,0.06296128477548517],[123,118,70,0.06646397872166551],[123,118,71,0.06992732651060572],[123,118,72,0.07334375860891239],[123,118,73,0.0767031606414325],[123,118,74,0.07999321236227154],[123,118,75,0.08319974899453833],[123,118,76,0.08630714463526051],[123,118,77,0.08929871740239029],[123,118,78,0.09215715598682114],[123,118,79,0.09728322519633802],[123,119,64,0.03848787346328001],[123,119,65,0.04209359824788627],[123,119,66,0.0457280130052819],[123,119,67,0.0493622367358121],[123,119,68,0.05298626818967043],[123,119,69,0.05660281528029139],[123,119,70,0.06020965955582171],[123,119,71,0.06379983062381875],[123,119,72,0.06736220174614453],[123,119,73,0.07330773845424857],[123,119,74,0.07929034650561799],[123,119,75,0.08518839937270865],[123,119,76,0.09098345952031446],[123,119,77,0.09665631613490078],[123,119,78,0.10161808848655071],[123,119,79,0.10512957647566887],[123,120,64,0.03197177712565029],[123,120,65,0.03556096329354878],[123,120,66,0.03919707947670428],[123,120,67,0.04406322252221519],[123,120,68,0.05042254271922428],[123,120,69,0.05678237942574327],[123,120,70,0.0631410980027932],[123,120,71,0.06949109576890446],[123,120,72,0.07581967467029148],[123,120,73,0.08210991092406154],[123,120,74,0.08834151979443311],[123,120,75,0.09449171372322474],[123,120,76,0.10053605210437144],[123,120,77,0.10524480577524575],[123,120,78,0.108579000403553],[123,120,79,0.1118537246924325],[123,121,64,0.032566731771046555],[123,121,65,0.038955373210692514],[123,121,66,0.04538915021017879],[123,121,67,0.051845700115370874],[123,121,68,0.058321141058449495],[123,121,69,0.0648215962830422],[123,121,70,0.07134494346677049],[123,121,71,0.07788155187118694],[123,121,72,0.08441543461202895],[123,121,73,0.09092538562191085],[123,121,74,0.09738609872058762],[123,121,75,0.10376926630967687],[123,121,76,0.10934618201713564],[123,121,77,0.11249878559947],[123,121,78,0.11558096605137967],[123,121,79,0.11861939538757932],[123,122,64,0.04035014356367187],[123,122,65,0.04677485124635925],[123,122,66,0.053260823264565854],[123,122,67,0.059788870088800745],[123,122,68,0.066357894998205],[123,122,69,0.07297536893724053],[123,122,70,0.07963879395982289],[123,122,71,0.08633670344669628],[123,122,72,0.09305007481179256],[123,122,73,0.09975371583471161],[123,122,74,0.10641762134180374],[123,122,75,0.1130082970964861],[123,122,76,0.11688752894062701],[123,122,77,0.11978716585750022],[123,122,78,0.12262547928670112],[123,122,79,0.12543430260096453],[123,123,64,0.048381159307355454],[123,123,65,0.05482155654871216],[123,123,66,0.06133803937018599],[123,123,67,0.06791441874731921],[123,123,68,0.07455223322296677],[123,123,69,0.0812602648338144],[123,123,70,0.08803573947251615],[123,123,71,0.09486556583410594],[123,123,72,0.1017279848176529],[123,123,73,0.10859418281410967],[123,123,74,0.11542986497445265],[123,123,75,0.12168785528813011],[123,123,76,0.12444114219458352],[123,123,77,0.12710327462498172],[123,123,78,0.1297119131528545],[123,123,79,0.13230369409102308],[123,124,64,0.056679372245310895],[123,124,65,0.06311463836143041],[123,124,66,0.06963913953722119],[123,124,67,0.07623944324666677],[123,124,68,0.08291950487551374],[123,124,69,0.08968933388675732],[123,124,70,0.09654596435172094],[123,124,71,0.1034749045913639],[123,124,72,0.11045199565382122],[123,124,73,0.11744522533921414],[123,124,74,0.1244164933118944],[123,124,75,0.12945825192324795],[123,124,76,0.1319929220757116],[123,124,77,0.1344384439250102],[123,124,78,0.13683701711100565],[123,124,79,0.13922961557914756],[123,125,64,0.06525715257434322],[123,125,65,0.0716664282964703],[123,125,66,0.07817610505553804],[123,125,67,0.08477519992223058],[123,125,68,0.09146980609192393],[123,125,69,0.09827103348113353],[123,125,70,0.10517579188581425],[123,125,71,0.11216842045893499],[123,125,72,0.11922272463045797],[123,125,73,0.12630396166967134],[123,125,74,0.13337076995826927],[123,125,75,0.137185230285953],[123,125,76,0.1395273968085158],[123,125,77,0.14178175493511222],[123,125,78,0.14399444984515472],[123,125,79,0.14621023618748863],[123,126,64,0.07411849113006905],[123,126,65,0.08048131271092931],[123,126,66,0.08695346791329142],[123,126,67,0.09352606474767966],[123,126,68,0.10020700550032541],[123,126,69,0.10700833635567494],[123,126,70,0.11392689299579735],[123,126,71,0.1209460772505181],[123,126,72,0.12803803983451434],[123,126,73,0.1351658062428901],[123,126,74,0.14228534048891234],[123,126,75,0.14484853452057506],[123,126,76,0.14702766431773287],[123,126,77,0.14911979383875917],[123,126,78,0.1511743496060434],[123,126,79,0.15323923738129003],[123,127,64,0.08325807795821075],[123,127,65,0.08955483592521853],[123,127,66,0.09596744507805077],[123,127,67,0.10248870755212813],[123,127,68,0.10912797026891508],[123,127,69,0.11589802287654792],[123,127,70,0.12279566043656834],[123,127,71,0.12980357393571373],[123,127,72,0.13689264539390286],[123,127,73,0.14402418200448502],[123,127,74,0.15024150172708223],[123,127,75,0.1524276422111018],[123,127,76,0.15447531713591958],[123,127,77,0.15643641850018378],[123,127,78,0.1583629425824862],[123,127,79,0.16030526622084254],[123,128,64,0.09266061724607338],[123,128,65,0.09887303579052442],[123,128,66,0.10520529816122995],[123,128,67,0.11165148150479091],[123,128,68,0.11822199417318362],[123,128,69,0.12493015910418812],[123,128,70,0.13177274981205145],[123,128,71,0.1387319620895957],[123,128,72,0.14577778853104306],[123,128,73,0.15287032920007612],[123,128,74,0.15781313869999314],[123,128,75,0.15990179924796963],[123,128,76,0.16185035033174386],[123,128,77,0.16371253612460762],[123,128,78,0.16554218975070442],[123,128,79,0.16739145366887348],[123,129,64,0.10230037998242432],[123,129,65,0.10841201300577222],[123,129,66,0.11464491987832061],[123,129,67,0.12099402926900077],[123,129,68,0.1274704290483244],[123,129,69,0.1340877619564104],[123,129,70,0.1408427886167148],[123,129,71,0.1477174098027329],[123,129,72,0.15468108935233119],[123,129,73,0.1616932114010479],[123,129,74,0.16522789299484547],[123,129,75,0.16725000938301332],[123,129,76,0.1691310523482922],[123,129,77,0.17092589205023245],[123,129,78,0.17268947261643086],[123,129,79,0.17447499864315874],[123,130,64,0.1121409956225994],[123,130,65,0.11813773549055628],[123,130,66,0.12425464862256917],[123,130,67,0.13048710713300052],[123,130,68,0.1368465209005664],[123,130,69,0.14334665268299612],[123,130,70,0.14998425443433153],[123,130,71,0.1567411130720128],[123,130,72,0.16358649425749394],[123,130,73,0.17028818335025034],[123,130,74,0.17246685656588434],[123,130,75,0.17445097814128296],[123,130,76,0.1762938786441801],[123,130,77,0.1780508698035954],[123,130,78,0.17977731823095816],[123,130,79,0.18152681845144253],[123,131,64,0.122135483957398],[123,131,65,0.12800607903945832],[123,131,66,0.13399331238694864],[123,131,67,0.14009262834177164],[123,131,68,0.14631545186928907],[123,131,69,0.15267549978820474],[123,131,70,0.15916952335123027],[123,131,71,0.1657793556262037],[123,131,72,0.17247435379559312],[123,131,73,0.17734788961785805],[123,131,74,0.17951226867251852],[123,131,75,0.1814830107758722],[123,131,76,0.18331330803178633],[123,131,77,0.1850583025344904],[123,131,78,0.18677316382925352],[123,131,79,0.18851126619471464],[123,132,64,0.1322264171823568],[123,132,65,0.13796298607175173],[123,132,66,0.1438103758108595],[123,132,67,0.14976379138355025],[123,132,68,0.15583444574366548],[123,132,69,0.16203590112903762],[123,132,70,0.16836493058094334],[123,132,71,0.17480355191644267],[123,132,72,0.1813214531440665],[123,132,73,0.18417982238887534],[123,132,74,0.18634755854100005],[123,132,75,0.18832404888921353],[123,132,76,0.19016186752242883],[123,132,77,0.1919154809656905],[123,132,78,0.1936393435630219],[123,132,79,0.1953860928884646],[123,133,64,0.1423293696623507],[123,133,65,0.14792649343655126],[123,133,66,0.15362656173518208],[123,133,67,0.15942429012943465],[123,133,68,0.16533055388514767],[123,133,69,0.17135874836831616],[123,133,70,0.17750574418307685],[123,133,71,0.18375389754853],[123,133,72,0.18838607084935902],[123,133,73,0.19080423155885975],[123,133,74,0.19298689130941155],[123,133,75,0.19498183502566593],[123,133,76,0.1968406369594564],[123,133,77,0.1986166883772266],[123,133,78,0.2003633209334176],[123,133,79,0.20213203024530935],[123,134,64,0.15232611433479112],[123,134,65,0.15777821821721447],[123,134,66,0.16332364169221214],[123,134,67,0.16895639823228156],[123,134,68,0.17468699068764376],[123,134,69,0.180528756092873],[123,134,70,0.18647883771571241],[123,134,71,0.19215534589539487],[123,134,72,0.1948611405473527],[123,134,73,0.19729568445443854],[123,134,74,0.19949982260038016],[123,134,75,0.2015201064212534],[123,134,76,0.20340676731552343],[123,134,77,0.20521178093647272],[123,134,78,0.20698702703272512],[123,134,79,0.20878254929919707],[123,135,64,0.16211030834569376],[123,135,65,0.1674115495704255],[123,135,66,0.17279506892805266],[123,135,67,0.17825401485768144],[123,135,68,0.18379855897637432],[123,135,69,0.18944217888790824],[123,135,70,0.19518253966565202],[123,135,71,0.19854796167160343],[123,135,72,0.20126571782667232],[123,135,73,0.2037186606384555],[123,135,74,0.20594622699364198],[123,135,75,0.20799341789897866],[123,135,76,0.20990881726616248],[123,135,77,0.21174270074139015],[123,135,78,0.21354523926380137],[123,135,79,0.21536480174034775],[123,136,64,0.1715933141798275],[123,136,65,0.1767377742227932],[123,136,66,0.18195238838979166],[123,136,67,0.1872293399929898],[123,136,68,0.19257857285153016],[123,136,69,0.1980139622543295],[123,136,70,0.20190425285462],[123,136,71,0.20492169660746673],[123,136,72,0.20765014113381935],[123,136,73,0.21011985889851867],[123,136,74,0.21236857411882684],[123,136,75,0.2144394511999219],[123,136,76,0.2163791667066834],[123,136,77,0.21823606972652768],[123,136,78,0.220058435200226],[123,136,79,0.2218928145097024],[123,137,64,0.18070461664473614],[123,137,65,0.1856864102537809],[123,137,66,0.1907254718950147],[123,137,67,0.19581299017372306],[123,137,68,0.2009588333496203],[123,137,69,0.20497733451028832],[123,137,70,0.2082953774539445],[123,137,71,0.21131239046388892],[123,137,72,0.21404749557175295],[123,137,73,0.21652913323719408],[123,137,74,0.21879303779226764],[123,137,75,0.22088028884480784],[123,137,76,0.22283544360600474],[123,137,77,0.2247047548514469],[123,137,78,0.22653447895784368],[123,137,79,0.2283692781807716],[123,138,64,0.189392627965508],[123,138,65,0.19420592522590718],[123,138,66,0.19906313052580712],[123,138,67,0.20392509243869178],[123,138,68,0.20782016276450918],[123,138,69,0.211423323229858],[123,138,70,0.21472745274920516],[123,138,71,0.21773864214981317],[123,138,72,0.22047411439112968],[123,138,73,0.2229602068920497],[123,138,74,0.22523042119124564],[123,138,75,0.2273235449476591],[123,138,76,0.22928185105722726],[123,138,77,0.23114937841889843],[123,138,78,0.23297029862915927],[123,138,79,0.2347873726209016],[123,139,64,0.197420048595334],[123,139,65,0.20201995546034324],[123,139,66,0.20637500438870693],[123,139,67,0.21048880275054305],[123,139,68,0.21434440374329478],[123,139,69,0.21791873325582967],[123,139,70,0.22120313662102303],[123,139,71,0.22420181193338348],[123,139,72,0.22692982171671178],[123,139,73,0.2294111623473538],[123,139,74,0.2316768962060218],[123,139,75,0.23376335132765239],[123,139,76,0.23571039310277644],[123,139,77,0.23755977235625816],[123,139,78,0.23935355389111423],[123,139,79,0.2411326293376002],[123,140,64,0.20422975408499516],[123,140,65,0.20875120771825734],[123,140,66,0.2130387227075064],[123,140,67,0.21709676212562593],[123,140,68,0.22090803611412582],[123,140,69,0.2244481619649684],[123,140,70,0.22770670586926384],[123,140,71,0.2306857317145871],[123,140,72,0.23339791439652277],[123,140,73,0.23586470537986592],[123,140,74,0.23811455519225083],[123,140,75,0.24018119734647428],[123,140,76,0.24210199798925355],[123,140,77,0.24391637536435218],[123,140,78,0.2456642929579252],[123,140,79,0.24738482996463187],[123,141,64,0.2110579404364542],[123,141,65,0.21549724005173052],[123,141,66,0.2197135660349866],[123,141,67,0.22371202926189523],[123,141,68,0.22747479888384647],[123,141,69,0.230975990869443],[123,141,70,0.23420318933225032],[123,141,71,0.23715612117170404],[123,141,72,0.23984488092381095],[123,141,73,0.24228820124990108],[123,141,74,0.24451177341904148],[123,141,75,0.24654662197249522],[123,141,76,0.24842753757979907],[123,141,77,0.25019157190630836],[123,141,78,0.2518765981122725],[123,141,79,0.2535199403946075],[123,142,64,0.21783995700180628],[123,142,65,0.2221946828424889],[123,142,66,0.22633754179094973],[123,142,67,0.23027405958900485],[123,142,68,0.23398569063867808],[123,142,69,0.2374449140167531],[123,142,70,0.24063717755385536],[123,142,71,0.24355970763044293],[123,142,72,0.24621985542868577],[123,142,73,0.24863348120403977],[123,142,74,0.2508233805693401],[123,142,75,0.2528177566382856],[123,142,76,0.25464874171814456],[123,142,77,0.25635097207390284],[123,142,78,0.2579602191086219],[123,142,79,0.2595120801182747],[123,143,64,0.22449580852196527],[123,143,65,0.22876485934191146],[123,143,66,0.232833483926696],[123,143,67,0.2367073780776453],[123,143,68,0.24036713910210955],[123,143,69,0.2437835329824822],[123,143,70,0.24693976414241847],[123,143,71,0.24983042907199188],[123,143,72,0.25245999421000365],[123,143,73,0.25484130332155897],[123,143,74,0.2569941179659187],[123,143,75,0.2589436945267545],[123,143,76,0.2607194011434969],[123,143,77,0.26235337773881723],[123,143,78,0.26387924218400977],[123,143,79,0.26533084548177643],[123,144,64,0.23097758674778332],[123,144,65,0.2351597142830364],[123,144,66,0.2391531833848462],[123,144,67,0.24296357299081947],[123,144,68,0.24657048530719528],[123,144,69,0.24994293412509352],[123,144,70,0.2530618059229136],[123,144,71,0.2559189655714968],[123,144,72,0.2585158764622683],[123,144,73,0.26086224066235403],[123,144,74,0.2629746622573611],[123,144,75,0.2648753369445424],[123,144,76,0.2665907708310723],[123,144,77,0.26815053127435756],[123,144,78,0.2695860324740944],[123,144,79,0.27092935838960647],[123,145,64,0.23725160894048963],[123,145,65,0.24134492895936374],[123,145,66,0.24515136344497845],[123,145,67,0.24848179370246762],[123,145,68,0.2517631250967912],[123,145,69,0.2550231546732583],[123,145,70,0.2582788182792202],[123,145,71,0.26153694106746905],[123,145,72,0.26434586467998034],[123,145,73,0.26665347241926163],[123,145,74,0.2687210668022763],[123,145,75,0.2705676953983939],[123,145,76,0.2722169285608192],[123,145,77,0.2736957063248055],[123,145,78,0.2750332075351934],[123,145,79,0.2762597434433803],[123,146,64,0.2432882758825103],[123,146,65,0.24713393619033394],[123,146,66,0.25029396211984095],[123,146,67,0.25337489218229375],[123,146,68,0.2563944223372441],[123,146,69,0.2593823232059675],[123,146,70,0.2623581434137757],[123,146,71,0.2653317937332823],[123,146,72,0.2683046266762387],[123,146,73,0.2712705180005324],[123,146,74,0.2741927081805646],[123,146,75,0.2759791285954434],[123,146,76,0.27755536683392595],[123,146,77,0.2789457067007281],[123,146,78,0.28017708145310755],[123,146,79,0.28127804051675864],[123,147,64,0.24906164937708108],[123,147,65,0.25220671595762567],[123,147,66,0.2551273544956803],[123,147,67,0.2579555007604639],[123,147,68,0.26071047894760485],[123,147,69,0.2634239668972578],[123,147,70,0.26611809101186146],[123,147,71,0.268805839770292],[123,147,72,0.27149197137035036],[123,147,73,0.27417393550206554],[123,147,74,0.27684280760499036],[123,147,75,0.2794842339757639],[123,147,76,0.2820793861134859],[123,147,77,0.28386096164170804],[123,147,78,0.284977753005356],[123,147,79,0.28594427221136826],[123,148,64,0.25420165256936117],[123,148,65,0.2569794785762488],[123,148,66,0.25965848468234143],[123,148,67,0.26223216320216153],[123,148,68,0.2647215694441832],[123,148,69,0.2671601832372008],[123,148,70,0.269572630399892],[123,148,71,0.27197492336527535],[123,148,72,0.2743751899100385],[123,148,73,0.27677442899517923],[123,148,74,0.27916729263457696],[123,148,75,0.28154289269025906],[123,148,76,0.2838856314828178],[123,148,77,0.2861760551032046],[123,148,78,0.2883917283185013],[123,148,79,0.29022252474721716],[123,149,64,0.25890615184905735],[123,149,65,0.2614559131592715],[123,149,66,0.2638924829522539],[123,149,67,0.26621159220229407],[123,149,68,0.2684361079886889],[123,149,69,0.27060117061130956],[123,149,70,0.27273378490855316],[123,149,71,0.2748528879124605],[123,149,72,0.2769698936071121],[123,149,73,0.27908927840246456],[123,149,74,0.28120920682384165],[123,149,75,0.28332219686774246],[123,149,76,0.28541582443195973],[123,149,77,0.2874734661929628],[123,149,78,0.28947508027684116],[123,149,79,0.2913980240524741],[123,150,64,0.26331636862540186],[123,150,65,0.2656382087958472],[123,150,66,0.26783293806376823],[123,150,67,0.26989890384238585],[123,150,68,0.27186084074123873],[123,150,69,0.2737553756968484],[123,150,70,0.27561173307035153],[123,150,71,0.2774516315161409],[123,150,72,0.27928964185376626],[123,150,73,0.28113359971725227],[123,150,74,0.28298507307873877],[123,150,75,0.28483988466176635],[123,150,76,0.28668868918411755],[123,150,77,0.28851760530191817],[123,150,78,0.2903089020666651],[123,150,79,0.29204173965589],[123,151,64,0.2674320674401844],[123,151,65,0.2695273195062664],[123,151,66,0.2714821313501092],[123,151,67,0.27329781628427036],[123,151,68,0.27500100551831314],[123,151,69,0.27662961155497257],[123,151,70,0.27821488397945177],[123,151,71,0.27978113998311765],[123,151,72,0.2813459347301437],[123,151,73,0.28292030083797043],[123,151,74,0.28450905767061313],[123,151,75,0.28611119103028426],[123,151,76,0.28772030372474194],[123,151,77,0.28932513738645993],[123,151,78,0.29091016582637963],[123,151,79,0.29245626012081655],[123,152,64,0.2712520921945337],[123,152,65,0.2731231888523607],[123,152,66,0.27484123232799956],[123,152,67,0.27641081245997245],[123,152,68,0.27786045852461094],[123,152,69,0.2792291462002315],[123,152,70,0.28054992660981826],[123,152,71,0.28184949711621815],[123,152,72,0.28314818593351987],[123,152,73,0.2844600202688821],[123,152,74,0.28579287929336156],[123,152,75,0.2871487330952813],[123,152,76,0.28852396862948154],[123,152,77,0.2899098035418942],[123,152,78,0.29129278862277486],[123,152,79,0.2926553995250319],[123,153,64,0.2747745726201867],[123,153,65,0.27642493395879875],[123,153,66,0.27791045558272287],[123,153,67,0.2792392665195744],[123,153,68,0.2804417679296373],[123,153,69,0.2815577614301622],[123,153,70,0.28262185288796693],[123,153,71,0.2836628721193815],[123,153,72,0.284703675853367],[123,153,73,0.2857610485237625],[123,153,74,0.2868457027780927],[123,153,75,0.2879623814148262],[123,153,76,0.28911006228958935],[123,153,77,0.29028226756531145],[123,153,78,0.2914674785233564],[123,153,79,0.292649657004056],[123,154,64,0.27799708829828246],[123,154,65,0.27943098870185556],[123,154,66,0.2806891786874494],[123,154,67,0.28178353379977567],[123,154,68,0.28274627406050357],[123,154,69,0.28361778169784957],[123,154,70,0.28443395431610663],[123,154,71,0.2852254839234591],[123,154,72,0.2860174846142683],[123,154,73,0.2868292320658583],[123,154,74,0.2876740173076455],[123,154,75,0.2885591170157227],[123,154,76,0.2894858823847859],[123,154,77,0.2904499484335063],[123,154,78,0.2914415654110833],[123,154,79,0.29244605379370225],[123,155,64,0.28091678998090686],[123,155,65,0.2821392058211335],[123,155,66,0.28317602091371114],[123,155,67,0.28404300407497085],[123,155,68,0.2847741159814273],[123,155,69,0.2854100728090819],[123,155,70,0.2859877919397571],[123,155,71,0.2865395422395523],[123,155,72,0.2870924049056099],[123,155,73,0.28766785961364544],[123,155,74,0.2882814989687499],[123,155,75,0.2889428740297352],[123,155,76,0.28965547344797],[123,155,77,0.29041683853734185],[123,155,78,0.291218816374912],[123,155,79,0.2920479528241972],[123,156,64,0.2835304779659323],[123,156,65,0.2845469177055324],[123,156,66,0.2853688824860171],[123,156,67,0.28601611784897735],[123,156,68,0.2865242242268673],[123,156,69,0.2869340102221324],[123,156,70,0.28728313945009337],[123,156,71,0.2876051651424772],[123,156,72,0.28792883441218237],[123,156,73,0.2882775306364733],[123,156,74,0.2886688574735539],[123,156,75,0.2891143677697584],[123,156,76,0.2896194403591861],[123,156,77,0.2901833075068477],[123,156,78,0.2907992355026833],[123,156,79,0.2914548606795976],[123,157,64,0.2858346372688853],[123,157,65,0.2866509555985771],[123,157,66,0.2872649441278422],[123,157,67,0.28770034544017453],[123,157,68,0.28799427945017564],[123,157,69,0.2881874167233355],[123,157,70,0.28831789920641404],[123,157,71,0.28842027298189454],[123,157,72,0.28852464765442876],[123,157,73,0.2886560058583197],[123,157,74,0.28883366687586565],[123,157,75,0.2890709080754473],[123,157,76,0.28937474759905013],[123,157,77,0.2897458914540056],[123,157,78,0.290178847895709],[123,157,79,0.29066221172959666],[123,158,64,0.2878254293264795],[123,158,65,0.2884476269598567],[123,158,66,0.2888606266384432],[123,158,67,0.28909212860560324],[123,158,68,0.28918063674298455],[123,158,69,0.289166469245376],[123,158,70,0.2890879909581063],[123,158,71,0.28898045841264985],[123,158,72,0.28887504704091077],[123,158,73,0.28879803958141953],[123,158,74,0.288770180100609],[123,158,75,0.28880619775058214],[123,158,76,0.2889145040842898],[123,158,77,0.28909706745246266],[123,158,78,0.2893494677167958],[123,158,79,0.28966113423361983],[123,159,64,0.289498639954241],[123,159,65,0.28993265070798363],[123,159,66,0.290151510229304],[123,159,67,0.2901867844396493],[123,159,68,0.2900782153713679],[123,159,69,0.28986557458667794],[123,159,70,0.28958721303741186],[123,159,71,0.289278832328048],[123,159,72,0.2889723929277951],[123,159,73,0.2886951936336085],[123,159,74,0.28846912709681016],[123,159,75,0.28831011590594546],[123,159,76,0.2882277333992513],[123,159,77,0.2882250130644509],[123,159,78,0.28829845007450655],[123,159,79,0.2884381982084555],[123,160,64,0.2908495832663065],[123,160,65,0.29110105005711373],[123,160,66,0.29113221333648975],[123,160,67,0.290978371271325],[123,160,68,0.29068035366417166],[123,160,69,0.2902772137805023],[123,160,70,0.2898070757852168],[123,160,71,0.28930584547117344],[123,160,72,0.28880601247177895],[123,160,73,0.28833563273487917],[123,160,74,0.28791749641595177],[123,160,75,0.2875684860127767],[123,160,76,0.2872991292282755],[123,160,77,0.28711335071603433],[123,160,78,0.2870084265372518],[123,160,79,0.28697514484166037],[123,161,64,0.29187296124888845],[123,161,65,0.291947002643582],[123,161,66,0.2917962306106773],[123,161,67,0.2914595162707337],[123,161,68,0.2909786287766464],[123,161,69,0.29039175485121566],[123,161,70,0.28973660696187087],[123,161,71,0.2890490854898513],[123,161,72,0.28836198705380034],[123,161,73,0.28770390106977034],[123,161,74,0.28709830000865677],[123,161,75,0.28656282846284853],[123,161,76,0.2861087957845997],[123,161,77,0.2857408767123564],[123,161,78,0.2854570240612433],[123,161,79,0.285248597223451],[123,162,64,0.2925626786591197],[123,162,65,0.29246364762063937],[123,162,66,0.29213572976916646],[123,162,67,0.2916212044590908],[123,162,68,0.2909626410376914],[123,162,69,0.2901972336816937],[123,162,70,0.28936212888270846],[123,162,71,0.2884930491894271],[123,162,72,0.28762291804011303],[123,162,73,0.2867806798418198],[123,162,74,0.28599032102239885],[123,162,75,0.285270097420885],[123,162,76,0.28463197302093585],[123,162,77,0.28408127467382793],[123,162,78,0.2836165671054102],[123,162,79,0.2832297521588112],[123,163,64,0.29291161289973233],[123,163,65,0.2926428493793498],[123,163,66,0.29214130697549173],[123,163,67,0.29145252879941347],[123,163,68,0.2906197625733468],[123,163,69,0.28967910270171976],[123,163,70,0.2886670070052405],[123,163,71,0.2876188897259916],[123,163,72,0.2865676706365997],[123,163,73,0.2855425255761464],[123,163,74,0.2845678443730457],[123,163,75,0.2836624017451815],[123,163,76,0.28283874639687023],[123,163,77,0.2821028131639462],[123,163,78,0.2814537626958762],[123,163,79,0.28088405281084394],[123,164,64,0.29291022140514644],[123,164,65,0.29247381615627327],[123,164,66,0.2918006321026002],[123,164,67,0.29093937197216163],[123,164,68,0.289933863206502],[123,164,69,0.28881900837433466],[123,164,70,0.2876304850597177],[123,164,71,0.28640331298552324],[123,164,72,0.28517033189177116],[123,164,73,0.2839608863709583],[123,164,74,0.28279972383283775],[123,164,75,0.2817061113930838],[123,164,76,0.28069317710108327],[123,164,77,0.2797674805450788],[123,164,78,0.2789288175015321],[123,164,79,0.2781702629335146],[123,165,64,0.29254096042069777],[123,165,65,0.2919377357543],[123,165,66,0.2910934369486215],[123,165,67,0.29005980031332135],[123,165,68,0.28888114227299105],[123,165,69,0.28759111247062363],[123,165,70,0.28622455268885305],[123,165,71,0.2848160413181189],[123,165,72,0.28339830329130095],[123,165,73,0.28200083190459774],[123,165,74,0.2806487288902925],[123,165,75,0.2793617687221343],[123,165,76,0.2781536927476095],[123,165,77,0.2770317383567935],[123,165,78,0.275996408018302],[123,165,79,0.27504148264281003],[123,166,64,0.2917880183693758],[123,166,65,0.2910177394391512],[123,166,66,0.2900016902864964],[123,166,67,0.28879444941830223],[123,166,68,0.2874407328669583],[123,166,69,0.28597292502134253],[123,166,70,0.2844250220007442],[123,166,71,0.2828311556587144],[123,166,72,0.2812239389428314],[123,166,73,0.2796330274517135],[123,166,74,0.27808390372846115],[123,166,75,0.27659689043909447],[123,166,76,0.2751863981920424],[123,166,77,0.27386041336375005],[123,166,78,0.27262023090963666],[123,166,79,0.2714604367627092],[123,167,64,0.29064139114176946],[123,167,65,0.2897029936634506],[123,167,66,0.28851365740996815],[123,167,67,0.2871305405908615],[123,167,68,0.28559867419751694],[123,167,69,0.2839492229823628],[123,167,70,0.2822153802499683],[123,167,71,0.28043087246261],[123,167,72,0.2786282435817441],[123,167,73,0.27683735929831826],[123,167,74,0.2750841378444844],[123,167,75,0.27338951368413905],[123,167,76,0.2717686399822939],[123,167,77,0.270230335357062],[123,167,78,0.2687767800266463],[123,167,79,0.26740346608101334],[123,168,64,0.28909532085530093],[123,168,65,0.2879871408440674],[123,168,66,0.28662234478200993],[123,168,67,0.2850603367250246],[123,168,68,0.2833463863914658],[123,168,69,0.28151054836829636],[123,168,70,0.2795853128809137],[123,168,71,0.2776040908913837],[123,168,72,0.275599441222826],[123,168,73,0.2736015206629202],[123,168,74,0.27163676387206925],[123,168,75,0.26972679952320683],[123,168,76,0.26788760869902767],[123,168,77,0.26612893117204117],[123,168,78,0.2644539247969932],[123,168,79,0.2628590828577366],[123,169,64,0.2871464908146386],[123,169,65,0.2858664963157726],[123,169,66,0.2843237025085115],[123,169,67,0.28257935884945273],[123,169,68,0.28067891006716483],[123,169,69,0.27865147699362613],[123,169,70,0.2765290050598611],[123,169,71,0.2743447285951162],[123,169,72,0.27213134480237905],[123,169,73,0.26991941324236784],[123,169,74,0.2677359877642251],[123,169,75,0.26560348742021517],[123,169,76,0.2635388124977406],[123,169,77,0.2615527113984779],[123,169,78,0.25964940369511447],[123,169,79,0.2578264643049191],[123,170,64,0.2847920008734919],[123,170,65,0.28333802559098115],[123,170,66,0.2816146083949678],[123,170,67,0.2796843866198606],[123,170,68,0.2775929334508837],[123,170,69,0.27536867999935105],[123,170,70,0.2730432431979607],[123,170,71,0.2706498668602451],[123,170,72,0.2682215468381699],[123,170,73,0.26578938372258426],[123,170,74,0.26338117011781437],[123,170,75,0.2610202191192334],[123,170,76,0.25872444021679164],[123,170,77,0.2565056684417378],[123,170,78,0.25436925217185874],[123,170,79,0.2523139046164141],[123,171,64,0.28202712093066556],[123,171,65,0.28039709971219934],[123,171,66,0.2784906314380663],[123,171,67,0.27637124068737257],[123,171,68,0.2740846050508446],[123,171,69,0.27165877628055035],[123,171,70,0.269125314694488],[123,171,71,0.26651770348054765],[123,171,72,0.263869429606785],[123,171,73,0.2612122939091415],[123,171,74,0.258574957462495],[123,171,75,0.255981730937674],[123,171,76,0.2534516132400677],[123,171,77,0.2509975853182199],[123,171,78,0.24862616462704942],[123,171,79,0.24633722533402],[123,172,64,0.27884282010311545],[123,172,65,0.2770350262977302],[123,172,66,0.2749435724229478],[123,172,67,0.2726323446953781],[123,172,68,0.2701471297354663],[123,172,69,0.2675159737690734],[123,172,70,0.2647707039769103],[123,172,71,0.26194531156496487],[123,172,72,0.25907399320381647],[123,172,73,0.2561894230084802],[123,172,74,0.2533212622226485],[123,172,75,0.2504949133676519],[123,172,76,0.2477305252088276],[123,172,77,0.245042254483783],[123,172,78,0.24243778993200657],[123,172,79,0.23991814376735116],[123,173,64,0.27522306891963666],[123,173,65,0.2732363536859433],[123,173,66,0.2709587791065179],[123,173,67,0.26845406447275744],[123,173,68,0.2657681458842491],[123,173,69,0.26292949735506693],[123,173,70,0.25997058275232077],[123,173,71,0.25692620234338787],[123,173,72,0.25383149970977376],[123,173,73,0.25072020045863797],[123,173,74,0.24762308993981003],[123,173,75,0.24456673677248772],[123,173,76,0.24157246857780124],[123,173,77,0.2386556059045579],[123,173,78,0.2358249599294709],[123,173,79,0.23308259911398013],[123,174,64,0.2711419116715878],[123,174,65,0.2689759453798697],[123,174,66,0.2665122332683282],[123,174,67,0.26381382179810564],[123,174,68,0.26092688109307616],[123,174,69,0.2578808010520179],[123,174,70,0.25470909221443055],[123,174,71,0.25144768987078625],[123,174,72,0.24813293153434188],[123,174,73,0.24479976756916666],[123,174,74,0.24148021221545315],[123,174,75,0.23820204184937432],[123,174,76,0.23498774690628468],[123,174,77,0.2318537434865127],[123,174,78,0.2288098502560385],[123,174,79,0.22585903585395023],[123,175,64,0.26657416421403574],[123,175,65,0.26422958060847845],[123,175,66,0.26158097224035165],[123,175,67,0.2586902381787704],[123,175,68,0.25560390316820575],[123,175,69,0.25235279645975833],[123,175,70,0.24897190774105904],[123,175,71,0.245498642814726],[123,175,72,0.24197077705957096],[123,175,73,0.2384246436677314],[123,175,74,0.2348935639235703],[123,175,75,0.23140652638582454],[123,175,76,0.22798712142529876],[123,175,77,0.22465273715990636],[123,175,78,0.2214140224207838],[123,175,79,0.2182746219815029],[123,176,64,0.2615414454251935],[123,176,65,0.25901969062632646],[123,176,66,0.2561882488543176],[123,176,67,0.2531073776831007],[123,176,68,0.24982405243198094],[123,176,69,0.2463710372225978],[123,176,70,0.24278520503634693],[123,176,71,0.23910574039665877],[123,176,72,0.23537207548369227],[123,176,73,0.2316220627359001],[123,176,74,0.2278903912160421],[123,176,75,0.22420725361424854],[123,176,76,0.22059727035079488],[123,176,77,0.21707867682986387],[123,176,78,0.21366277948646178],[123,176,79,0.21035368586579414],[123,177,64,0.25608162889053393],[123,177,65,0.25338509331446124],[123,177,66,0.2503738094863175],[123,177,67,0.247105887716174],[123,177,68,0.24362881575405274],[123,177,69,0.23997773917160758],[123,177,70,0.2361917717645869],[123,177,71,0.23231214259236405],[123,177,72,0.22838012276715156],[123,177,73,0.22443519031155218],[123,177,74,0.2205134403552917],[123,177,75,0.2166462475366687],[123,177,76,0.21285918706389517],[123,177,77,0.2091712204796072],[123,177,78,0.2055941517621322],[123,177,79,0.20213235899355508],[123,178,64,0.25023602483352686],[123,178,65,0.24736822890177199],[123,178,66,0.24418125830034357],[123,178,67,0.24073058444190507],[123,178,68,0.23706424195506615],[123,178,69,0.23322014834244545],[123,178,70,0.2292399618490286],[123,178,71,0.22516717223518798],[123,178,72,0.2210450274491222],[123,178,73,0.21691469963880514],[123,178,74,0.21281369774472406],[123,178,75,0.208774533509618],[123,178,76,0.2048236473312602],[123,178,77,0.20098059997260487],[123,178,78,0.1972575357340455],[123,178,79,0.1936589222890795],[123,179,64,0.24404872055597132],[123,179,65,0.24101445169818414],[123,179,66,0.23765728357120114],[123,179,67,0.23402959441153323],[123,179,68,0.2301799781446371],[123,179,69,0.22614945119546753],[123,179,70,0.22198245913294354],[123,179,71,0.21772491262494176],[123,179,72,0.21342212417137998],[123,179,73,0.20911698499308398],[123,179,74,0.2048483892620584],[123,179,75,0.20064991245472868],[123,179,76,0.19654875020060228],[123,179,77,0.19256492358813246],[123,179,78,0.1887107564810589],[123,179,79,0.18499062999610646],[123,180,64,0.2375658577689034],[123,180,65,0.2343712600606842],[123,180,66,0.23085082557464154],[123,180,67,0.22705344284923254],[123,180,68,0.22302825975048432],[123,180,69,0.21881964796371337],[123,180,70,0.21447501633174548],[123,180,71,0.21004279550751428],[123,180,72,0.20557039563586188],[123,180,73,0.2011024044408165],[123,180,74,0.1966790328199971],[123,180,75,0.1923348146457142],[123,180,76,0.18809756706527675],[123,180,77,0.18398761718446083],[123,180,78,0.18001730061176785],[123,180,79,0.17619073694088766],[123,181,64,0.23083484595636797],[123,181,65,0.22748746374516954],[123,181,66,0.22381218522002405],[123,181,67,0.21985408780118093],[123,181,68,0.21566285348619285],[123,181,69,0.21128638843142517],[123,181,70,0.20677516865092638],[123,181,71,0.20218017889078074],[123,181,72,0.19755090257194538],[123,181,73,0.19293355173994456],[123,181,74,0.18836954400962008],[123,181,75,0.1838942330940903],[123,181,76,0.17953589910320192],[123,181,77,0.17531500439149972],[123,181,78,0.17124372033278848],[123,181,79,0.16732573000159137],[123,182,64,0.22390351084782528],[123,182,65,0.22041228773107138],[123,182,66,0.21659207253609764],[123,182,67,0.2124838992914888],[123,182,68,0.20813795244433395],[123,182,69,0.20360576938775968],[123,182,70,0.19894092138993327],[123,182,71,0.19419691411172063],[123,182,72,0.18942522124323719],[123,182,73,0.18467355704592334],[123,182,74,0.17998439464521582],[123,182,75,0.17539373652403487],[123,182,76,0.17093014326780273],[123,182,77,0.16661402621099825],[123,182,78,0.16245720923696225],[123,182,79,0.15846276459064226],[123,183,64,0.2168191770068487],[123,183,65,0.21319441153814267],[123,183,66,0.20924059405446513],[123,183,67,0.2049945825644471],[123,183,68,0.20050702244033453],[123,183,69,0.1958330929423543],[123,183,70,0.19102941079821978],[123,183,71,0.18615190152061137],[123,183,72,0.18125388798012299],[123,183,73,0.17638441605031935],[123,183,74,0.17158682399793726],[123,183,75,0.16689756190174673],[123,183,76,0.16234526698969232],[123,183,77,0.15795010038902033],[123,183,78,0.15372335039178253],[123,183,79,0.1496673069521402],[123,184,64,0.20962768347523827],[123,184,65,0.2058809429869043],[123,184,66,0.2018061780691158],[123,184,67,0.19743604442877447],[123,184,68,0.19282159867175713],[123,184,69,0.1880215848325568],[123,184,70,0.1830955373976758],[123,184,71,0.1781016341018775],[123,184,72,0.17309485018457227],[123,184,73,0.16812534714654995],[123,184,74,0.16323710248071774],[123,184,75,0.1584667864674815],[123,184,76,0.15384289173832705],[123,184,77,0.14938512092329276],[123,184,78,0.14510403731296212],[123,184,79,0.1410009830870105],[123,185,64,0.2023723313425102],[123,185,65,0.1985163252857946],[123,185,66,0.19433443668386954],[123,185,67,0.18985520165567782],[123,185,68,0.18513003169723238],[123,185,69,0.1802210717961435],[123,185,70,0.17519057093517804],[123,185,71,0.1700987283073009],[123,185,72,0.1650019232173962],[123,185,73,0.15995117618936128],[123,185,74,0.15499084752786596],[123,185,75,0.1501575792086887],[123,185,76,0.14547948559240048],[123,185,77,0.14097559807657914],[123,185,78,0.13665556842513263],[123,185,79,0.13251963514334147],[123,186,64,0.19509276204094128],[123,186,65,0.19114117625908725],[123,186,66,0.18686696349269244],[123,186,67,0.1822947303186334],[123,186,68,0.1774761816792197],[123,186,69,0.17247661702825628],[123,186,70,0.16736072608009409],[123,186,71,0.16219044133580587],[123,186,72,0.15702325254519806],[123,186,73,0.15191074839118754],[123,186,74,0.14689739139952515],[123,186,75,0.1420195317101008],[123,186,76,0.1373046649759922],[123,186,77,0.13277093928617426],[123,186,78,0.12842691564083525],[123,186,79,0.12427158614803485],[123,187,64,0.19119913956688506],[123,187,65,0.1861865359627809],[123,187,66,0.18096171708240472],[123,187,67,0.17553925467965278],[123,187,68,0.16996493252190853],[123,187,69,0.16482711268914757],[123,187,70,0.15964570793627877],[123,187,71,0.1544171740569539],[123,187,72,0.14919978049665852],[123,187,73,0.14404536688151806],[123,187,74,0.13899820063560198],[123,187,75,0.1340940683230767],[123,187,76,0.1293596057362419],[123,187,77,0.12481187139061252],[123,187,78,0.12045816773185775],[123,187,79,0.1162961140100055],[123,188,64,0.1935510859684458],[123,188,65,0.18841538648712786],[123,188,66,0.18307239616911286],[123,188,67,0.1775333150227987],[123,188,68,0.17184397677006416],[123,188,69,0.16606893272028297],[123,188,70,0.16027088587196037],[123,188,71,0.15450858442305065],[123,188,72,0.1488353156484308],[123,188,73,0.14329761830967272],[123,188,74,0.13793421905585457],[123,188,75,0.13277519792789327],[123,188,76,0.12784138772962425],[123,188,77,0.12314401167986307],[123,188,78,0.11868456341519115],[123,188,79,0.1144549330754327],[123,189,64,0.1959494843722001],[123,189,65,0.19069487226201973],[123,189,66,0.1852389617789656],[123,189,67,0.17959005072547773],[123,189,68,0.17379397301906],[123,189,69,0.16791719891180432],[123,189,70,0.16202363107601178],[123,189,71,0.15617254523793334],[123,189,72,0.1504171873126755],[123,189,73,0.14480358342092842],[123,189,74,0.13936956795691186],[123,189,75,0.13414403454175042],[123,189,76,0.1291464143587305],[123,189,77,0.124386386029812],[123,189,78,0.11986382086047366],[123,189,79,0.1155689669545742],[123,190,64,0.19839574383682235],[123,190,65,0.1930264600681651],[123,190,66,0.18746284871642138],[123,190,67,0.18171082722351242],[123,190,68,0.17581618553192627],[123,190,69,0.1698468691028487],[123,190,70,0.16386755539759387],[123,190,71,0.15793765433352097],[123,190,72,0.15211001173508418],[123,190,73,0.1464298196515252],[123,190,74,0.1409337384154729],[123,190,75,0.13564923499307263],[123,190,76,0.13059414185052295],[123,190,77,0.12577644023718867],[123,190,78,0.12119427146589021],[123,190,79,0.11683617945844549],[123,191,64,0.20088119210823968],[123,191,65,0.19540122791587275],[123,191,66,0.1897347874018612],[123,191,67,0.18388595443303107],[123,191,68,0.17790044108616432],[123,191,69,0.17184722541333736],[123,191,70,0.16579134261162837],[123,191,71,0.1597919567566197],[123,191,72,0.1539011721120009],[123,191,73,0.14816304505013828],[123,191,74,0.14261280116134092],[123,191,75,0.1372762618177191],[123,191,76,0.13216948414406637],[123,191,77,0.12729861803615972],[123,191,78,0.12265998356030294],[123,191,79,0.11824037176857755],[123,192,64,0.20338553639927692],[123,192,65,0.19779829606163862],[123,192,66,0.19203321554268515],[123,192,67,0.18609308349286244],[123,192,68,0.18002351644691564],[123,192,69,0.17389411647434014],[123,192,70,0.16776989598586914],[123,192,71,0.16170943040098124],[123,192,72,0.15576377750499104],[123,192,73,0.14997559106233035],[123,192,74,0.144378432969976],[123,192,75,0.13899628793499536],[123,192,76,0.13384328435905885],[123,192,77,0.1289236248134465],[123,192,78,0.12423172919455656],[123,192,79,0.11975259336380392],[123,193,64,0.20587524584784478],[123,193,65,0.20018318127162119],[123,193,66,0.19432261685885013],[123,193,67,0.18829553630217427],[123,193,68,0.18214746651560812],[123,193,69,0.17594829861028075],[123,193,70,0.1697627121315284],[123,193,71,0.16364841592872006],[123,193,72,0.15765517467482673],[123,193,73,0.15182402334709272],[123,193,74,0.14618667366554833],[123,193,75,0.14076511619777587],[123,193,76,0.1355714215493463],[123,193,77,0.13060774377254789],[123,193,78,0.12586652884537597],[123,193,79,0.1213309307996645],[123,194,64,0.20830185395913262],[123,194,65,0.20250607266060236],[123,194,66,0.1965517852446741],[123,194,67,0.1904405663105382],[123,194,68,0.1842178917103416],[123,194,69,0.17795372693006134],[123,194,70,0.17171221851129267],[123,194,71,0.16555002738375443],[123,194,72,0.15951546099862235],[123,194,73,0.1536477873641559],[123,194,74,0.14797673470292916],[123,194,75,0.14252218017283194],[123,194,76,0.13729403081668057],[123,194,77,0.13229229963054362],[123,194,78,0.12750737937263745],[123,194,79,0.12292051647416861],[123,195,64,0.21060085193959446],[123,195,65,0.20470073854054044],[123,195,66,0.1986527593355246],[123,195,67,0.1924583300011942],[123,195,68,0.1861629563986766],[123,195,69,0.17983663532377525],[123,195,70,0.17354293289306585],[123,195,71,0.16733741100067917],[123,195,72,0.1612668634044272],[123,195,73,0.15536872808262436],[123,195,74,0.1496706793156781],[123,195,75,0.144190402679827],[123,195,76,0.13893555587397569],[123,195,77,0.13390391803717472],[123,195,78,0.12908372995772127],[123,195,79,0.12445422732630036],[123,196,64,0.21272549416897235],[123,196,65,0.2067202277501892],[123,196,66,0.20057827749820684],[123,196,67,0.1943010496509393],[123,196,68,0.18793416361390922],[123,196,69,0.18154767457698984],[123,196,70,0.1752045845701053],[123,196,71,0.16895936133570463],[123,196,72,0.16285727697968597],[123,196,73,0.15693391769794154],[123,196,74,0.15121486777897786],[123,196,75,0.14571557082604003],[123,196,76,0.14044137088589048],[123,196,77,0.13538773591856756],[123,196,78,0.13054066579684895],[123,196,79,0.1258772867868088],[123,197,64,0.21467176275984304],[123,197,65,0.20856266343711538],[123,197,66,0.20232829392400833],[123,197,67,0.19597021930454536],[123,197,68,0.18953419446516084],[123,197,69,0.18309023724896123],[123,197,70,0.176700699985226],[123,197,71,0.1704188822197193],[123,197,72,0.16428847056163406],[123,197,73,0.1583431446013844],[123,197,74,0.1526063518542788],[123,197,75,0.1470912544373547],[123,197,76,0.14180084994014455],[123,197,77,0.13672826870751256],[123,197,78,0.13185724951768296],[123,197,79,0.12716279541210132],[123,198,64,0.21643810877858438],[123,198,65,0.21022834017540187],[123,198,66,0.2039046230003872],[123,198,67,0.1974688724414694],[123,198,68,0.19096694494644856],[123,198,69,0.1844686104184783],[123,198,70,0.1780353920855319],[123,198,71,0.17171927635339485],[123,198,72,0.1655622522418218],[123,198,73,0.15959601185597988],[123,198,74,0.1538418146083744],[123,198,75,0.1483105176679342],[123,198,76,0.1430027748761286],[123,198,77,0.13790940613746397],[123,198,78,0.13301193906720193],[123,198,79,0.12828332446341606],[123,199,64,0.21802230804012157],[123,199,65,0.21171640688471957],[123,199,66,0.2053074793121123],[123,199,67,0.1987979985622017],[123,199,68,0.19223384380701436],[123,199,69,0.185684235655569],[123,199,70,0.17920961649542394],[123,199,71,0.17286046200740296],[123,199,72,0.166676918198492],[123,199,73,0.16068859422524143],[123,199,74,0.15491451348689342],[123,199,75,0.1493632252383566],[123,199,76,0.14403307874625226],[123,199,77,0.13891266178900957],[123,199,78,0.13398140508813616],[123,199,79,0.12921035405294978],[123,200,64,0.21942205107108906],[123,200,65,0.2130255157667173],[123,200,66,0.20653620015094495],[123,200,67,0.1999573544879926],[123,200,68,0.1933347671117124],[123,200,69,0.18673673946437344],[123,200,70,0.18022232816303468],[123,200,71,0.17384026356577148],[123,200,72,0.16762868198209965],[123,200,73,0.16161500807773754],[123,200,74,0.15581598971961746],[123,200,75,0.15023788728783777],[123,200,76,0.14487681926461102],[123,200,77,0.13971926569868534],[123,200,78,0.1347427309408257],[123,200,79,0.12991656685227865],[123,201,64,0.22063549352734033],[123,201,65,0.21415443489538974],[123,201,66,0.20758993635439785],[123,201,67,0.20094625043238376],[123,201,68,0.19426893591486263],[123,201,69,0.18762495707294752],[123,201,70,0.1810716434083656],[123,201,71,0.17465572122205664],[123,201,72,0.16841313822897525],[123,201,73,0.16236903230723485],[123,201,74,0.15653784639606402],[123,201,75,0.15092359134825314],[123,201,76,0.1455202583369843],[123,201,77,0.14031238221649628],[123,201,78,0.13527575704460015],[123,201,79,0.13037830479296889],[123,202,64,0.22166176686692501],[123,202,65,0.21510262434073524],[123,202,66,0.20846831145422517],[123,202,67,0.2017643109524848],[123,202,68,0.19503579730863463],[123,202,69,0.1883479500075653],[123,202,70,0.18175600800731537],[123,202,71,0.17530442067540175],[123,202,72,0.1690267618750066],[123,202,73,0.1629457815724881],[123,202,74,0.15707359675032898],[123,202,75,0.15141202321200242],[123,202,76,0.1459530496709442],[123,202,77,0.14067945532717743],[123,202,78,0.13556557195569757],[123,202,79,0.130578191360753],[123,203,64,0.22250144904064995],[123,203,65,0.21587077567036245],[123,203,66,0.20917204908602136],[123,203,67,0.20241221086533406],[123,203,68,0.19563588909238147],[123,203,69,0.18890601788365213],[123,203,70,0.18227537195068516],[123,203,71,0.17578584368968858],[123,203,72,0.16946844396935296],[123,203,73,0.163343433201376],[123,203,74,0.15742058424759928],[123,203,75,0.15169957853199026],[123,203,76,0.14617053654369067],[123,203,77,0.1408146837412278],[123,203,78,0.1356051527012342],[123,203,79,0.1305079221977642],[123,204,64,0.22315699492066018],[123,204,65,0.21646131463605908],[123,204,66,0.20970356857866837],[123,204,67,0.20289238618821676],[123,204,68,0.1960716882903468],[123,204,69,0.1893017048351479],[123,204,70,0.18263237151662018],[123,204,71,0.1761027403889999],[123,204,72,0.16974106520956833],[123,204,73,0.16356500913736466],[123,204,74,0.15758197611022481],[123,204,75,0.15178956704977392],[123,204,76,0.14617616187515145],[123,204,77,0.1407216281434576],[123,204,78,0.13539815698163227],[123,204,79,0.13017122683063204],[123,205,64,0.22363312614342964],[123,205,65,0.21687886681195986],[123,205,66,0.2100675486065451],[123,205,67,0.20320972013166905],[123,205,68,0.19634844372186047],[123,205,69,0.18954080098873227],[123,205,70,0.18283351928857214],[123,205,71,0.17626252416610688],[123,205,72,0.16985310833360898],[123,205,73,0.16362021433148669],[123,205,74,0.1575688319579201],[123,205,75,0.15169451139619503],[123,205,76,0.14598399281366597],[123,205,77,0.1404159530577764],[123,205,78,0.1349618699356246],[123,205,79,0.12958700443397994],[123,206,64,0.22393717999787166],[123,206,65,0.2171306859086155],[123,206,66,0.21027145874916323],[123,206,67,0.2033722041407248],[123,206,68,0.19647499280114653],[123,206,69,0.1896333393695843],[123,206,70,0.18289040273925175],[123,206,71,0.17627869007806127],[123,206,72,0.16982031051124089],[123,206,73,0.16352733300028868],[123,206,74,0.15740224926450064],[123,206,75,0.15143854244739471],[123,206,76,0.14562136209086743],[123,206,77,0.13992830584674532],[123,206,78,0.13433030823184433],[123,206,79,0.1287926366182766],[123,207,64,0.22407999728256092],[123,207,65,0.21722803435630503],[123,207,66,0.21032729160381242],[123,207,67,0.20339286366297102],[123,207,68,0.1964657123033035],[123,207,69,0.18959539784190688],[123,207,70,0.18282116446449273],[123,207,71,0.1761718070041632],[123,207,72,0.169666012559632],[123,207,73,0.16331279593082598],[123,207,74,0.15711202946686345],[123,207,75,0.15105506779375252],[123,207,76,0.14512546776611984],[123,207,77,0.13929980387068266],[123,207,78,0.1335485792021767],[123,207,79,0.1274075862318167],[123,208,64,0.2234448595636833],[123,208,65,0.21718780257868534],[123,208,66,0.21025359508141095],[123,208,67,0.2032916108196808],[123,208,68,0.19634156674319989],[123,208,69,0.18944871057969967],[123,208,70,0.1826480588364817],[123,208,71,0.17596443641796092],[123,208,72,0.16941290920685262],[123,208,73,0.16299929908294652],[123,208,74,0.15672078171284687],[123,208,75,0.1505665673340367],[123,208,76,0.1445186646514308],[123,208,77,0.13855272786587775],[123,208,78,0.13198486905819112],[123,208,79,0.12337503537938108],[123,209,64,0.2223595568946752],[123,209,65,0.21702682271659823],[123,209,66,0.21006840142120572],[123,209,67,0.2030872602950595],[123,209,68,0.19612171673412393],[123,209,69,0.18921238854247557],[123,209,70,0.18238980088323886],[123,209,71,0.17567460663881768],[123,209,72,0.16907811191325653],[123,209,73,0.16260287153586608],[123,209,74,0.1562433546288277],[123,209,75,0.14998668021053999],[123,209,76,0.14381342272050554],[123,209,77,0.1364383964574332],[123,209,78,0.12795265551410406],[123,209,79,0.119287347650929],[123,210,64,0.22119099476128493],[123,210,65,0.21568092643461623],[123,210,66,0.20978780389192125],[123,210,67,0.2027960269551087],[123,210,68,0.19582212587473394],[123,210,69,0.18890182578669334],[123,210,70,0.18206095745651107],[123,210,71,0.17531586374577868],[123,210,72,0.16867401875414076],[123,210,73,0.16213470347535192],[123,210,74,0.15568973775267203],[123,210,75,0.14892421861095453],[123,210,76,0.1407784610747984],[123,210,77,0.1324129094807496],[123,210,78,0.1238599011722392],[123,210,79,0.11515538124751304],[123,211,64,0.21993665703779156],[123,211,65,0.2141427754229611],[123,211,66,0.2082296200453788],[123,211,67,0.20216514491032184],[123,211,68,0.19545607216458716],[123,211,69,0.18852931198384312],[123,211,70,0.18167265853023618],[123,211,71,0.17489807702596522],[123,211,72,0.16820920726160116],[123,211,73,0.16087158062429496],[123,211,74,0.1530712494565724],[123,211,75,0.1450303557645515],[123,211,76,0.1367721307404343],[123,211,77,0.12832465840476398],[123,211,78,0.11971988017829989],[123,211,79,0.1109925616937422],[123,212,64,0.21859451057869725],[123,212,65,0.21250706160081675],[123,212,66,0.20630432114688702],[123,212,67,0.199952200588689],[123,212,68,0.19341215956269361],[123,212,69,0.18665441922677542],[123,212,70,0.17965950200022535],[123,212,71,0.17241740378438183],[123,212,72,0.1649267471362672],[123,212,73,0.1571939084671148],[123,212,74,0.14923212004194744],[123,212,75,0.14106054758422742],[123,212,76,0.13270334431005085],[123,212,77,0.12418868222930929],[123,212,78,0.11554776155825273],[123,212,79,0.10681379908628388],[123,213,64,0.217162955255987],[123,213,65,0.21077354967000522],[123,213,66,0.20427478427582424],[123,213,67,0.1976307913489461],[123,213,68,0.1908053131425484],[123,213,69,0.1837740749903772],[123,213,70,0.17652270403591552],[123,213,71,0.1690457165099814],[123,213,72,0.16134558322131662],[123,213,73,0.15343178517888906],[123,213,74,0.14531986040017053],[123,213,75,0.1370304429637757],[123,213,76,0.12858829536154118],[123,213,77,0.1200213351945116],[123,213,78,0.11135965724117036],[123,213,79,0.10263455190214639],[123,214,64,0.21564082400036788],[123,214,65,0.20894283254029214],[123,214,66,0.20214341817210257],[123,214,67,0.19520525818223183],[123,214,68,0.18809451016437695],[123,214,69,0.1807923727166823],[123,214,70,0.17328948479739048],[123,214,71,0.16558473454120684],[123,214,72,0.15768424186259156],[123,214,73,0.14960034786242696],[123,214,74,0.14135061236305824],[123,214,75,0.13295682087646735],[123,214,76,0.12444400228268723],[123,214,77,0.11583945846089072],[123,214,78,0.10717180707587975],[123,214,79,0.09847003867574533],[123,215,64,0.21402743359995724],[123,215,65,0.20701629067050403],[123,215,66,0.1999136683172376],[123,215,67,0.19268116466404978],[123,215,68,0.18528746006491303],[123,215,69,0.17771911026879897],[123,215,70,0.16997159256876324],[123,215,71,0.16204794554399565],[123,215,72,0.15395767483136708],[123,215,73,0.14571568273807592],[123,215,74,0.13734122327992232],[123,215,75,0.12885688418478056],[123,215,76,0.12028759734857666],[123,215,77,0.11165967917209141],[123,215,78,0.10299990214351601],[123,215,79,0.0943345989617804],[123,216,64,0.21232268704509635],[123,216,65,0.20499610309104363],[123,216,66,0.19758993859090143],[123,216,67,0.19006513019388419],[123,216,68,0.1823929597372943],[123,216,69,0.1745651408858197],[123,216,70,0.16658173893950812],[123,216,71,0.15844965358181567],[123,216,72,0.15018145499419802],[123,216,73,0.1417942610022755],[123,216,74,0.13330865708279943],[123,216,75,0.12474766099090863],[123,216,76,0.11613573369030282],[123,216,77,0.10749783818577036],[123,216,78,0.09885854777054155],[123,216,79,0.09024120510835017],[123,217,64,0.21052722824054707],[123,217,65,0.20288531087668354],[123,217,66,0.1951775664710036],[123,217,67,0.1873647188293454],[123,217,68,0.17942069907933514],[123,217,69,0.17134210140398967],[123,217,70,0.1631332582816124],[123,217,71,0.15480458070918915],[123,217,72,0.14637133277306758],[123,217,73,0.13785246437511098],[123,217,74,0.1292695041701209],[123,217,75,0.12064551467607892],[123,217,76,0.11200411141762365],[123,217,77,0.10336854785615347],[123,217,78,0.094760867749895],[123,217,79,0.08620112647246664],[123,218,64,0.20864264993533094],[123,218,65,0.20068793387060008],[123,218,66,0.19268285254674766],[123,218,67,0.18458838446893677],[123,218,68,0.1763811259214794],[123,218,69,0.16806220395943974],[123,218,70,0.15963983591554992],[123,218,71,0.15112754356130964],[123,218,72,0.14254287496716017],[123,218,73,0.13390620135878445],[123,218,74,0.12523959123098183],[123,218,75,0.11656576386237932],[123,218,76,0.1079071242494509],[123,218,77,0.09928488134814362],[123,218,78,0.09071825137898595],[123,218,79,0.0822237478153319],[123,219,64,0.20667175574531169],[123,219,65,0.19840914148912484],[123,219,66,0.1901131451467976],[123,219,67,0.18174547317494838],[123,219,68,0.17328537113204392],[123,219,69,0.16473809199412862],[123,219,70,0.15611530582905286],[123,219,71,0.14743320586403708],[123,219,72,0.13871118693782283],[123,219,73,0.12997061530126555],[123,219,74,0.12123369221037811],[123,219,75,0.11252241361453116],[123,219,76,0.10385762809497467],[123,219,77,0.0952581950564691],[123,219,78,0.0867402450210086],[123,219,79,0.07831654371601826],[123,220,64,0.2046188771638138],[123,220,65,0.19605547846122237],[123,220,66,0.18747698091397258],[123,220,67,0.17884628346249204],[123,220,68,0.17014523473756094],[123,220,69,0.1613827614328005],[123,220,70,0.15257351886497886],[123,220,71,0.14373590784706575],[123,220,72,0.1348907192229066],[123,220,73,0.12605988542993962],[123,220,74,0.11726534169193815],[123,220,75,0.10852799928043007],[123,220,76,0.09986683311428196],[123,220,77,0.09129808579355146],[123,220,78,0.08283458998972176],[123,220,79,0.0744852109386891],[123,221,64,0.20249024647017178],[123,221,65,0.1936351463762708],[123,221,66,0.18478428218276213],[123,221,67,0.17590218541127203],[123,221,68,0.16697323393263505],[123,221,69,0.1580095479416339],[123,221,70,0.14902828234375098],[123,221,71,0.14004957359847744],[123,221,72,0.13109515970812008],[123,221,73,0.12218712208718893],[123,221,74,0.1133467520470267],[123,221,75,0.10459354444628914],[123,221,76,0.09594432086842185],[123,221,77,0.08741248449424392],[123,221,78,0.07900740864497424],[123,221,79,0.07073396077753252],[123,222,64,0.2002944264545429],[123,222,65,0.19115834192779965],[123,222,66,0.18204661203587674],[123,222,67,0.17292579948276346],[123,222,68,0.16378271388623922],[123,222,69,0.1546321812182714],[123,222,70,0.14549337213129132],[123,222,71,0.13638769745053142],[123,222,72,0.1273374125404877],[123,222,73,0.11836435746263282],[123,222,74,0.10948883576661461],[123,222,75,0.10072863455379787],[123,222,76,0.09209818824373656],[123,222,77,0.08360788826294634],[123,222,78,0.07526354066528154],[123,222,79,0.06706597348347318],[123,223,64,0.19804279787879459],[123,223,65,0.18863765274866073],[123,223,66,0.17927748793032125],[123,223,67,0.16993123594641488],[123,223,68,0.16058802227911967],[123,223,69,0.15126490729741757],[123,223,70,0.14198261820439406],[123,223,71,0.1327634105337102],[123,223,72,0.12362966502176742],[123,223,73,0.11460263317444536],[123,223,74,0.10570133445416567],[123,223,75,0.09694160779186259],[123,223,76,0.08833531990284114],[123,223,77,0.0798897326576655],[123,223,78,0.07160703153339662],[123,223,79,0.06348401694601064],[123,224,64,0.1957501055868597],[123,224,65,0.1860885117337413],[123,224,66,0.17649275479112975],[123,224,67,0.16693439583323688],[123,224,68,0.1574047485288538],[123,224,69,0.1479226798850118],[123,224,70,0.13851006480084554],[123,224,71,0.12918962867734646],[123,224,72,0.11998354376622339],[123,224,73,0.11091218610306985],[123,224,74,0.10199305601210128],[123,224,75,0.09323986493221442],[123,224,76,0.08466179107269305],[123,224,77,0.07626290616392567],[123,224,78,0.06804177532838436],[123,224,79,0.05999123185937711],[123,225,64,0.19343506416299147],[123,225,65,0.183529710739126],[123,225,66,0.17371101847126474],[123,225,67,0.16395333434305195],[123,225,68,0.15425002867444748],[123,225,69,0.1446214217563698],[123,225,70,0.13509020627045157],[123,225,71,0.12567928286971558],[123,225,72,0.11641036144643951],[123,225,73,0.10730273392363995],[123,225,74,0.09837222159993168],[123,225,75,0.08963029982501236],[123,225,76,0.08108340252715175],[123,225,77,0.07273240885728934],[123,225,78,0.06457231396132802],[123,225,79,0.05659208564247977],[123,226,64,0.1911210240117117],[123,226,65,0.18098397453052958],[123,226,66,0.1709541404683067],[123,226,67,0.16100868763181345],[123,226,68,0.1511429169002213],[123,226,69,0.14137835726876466],[123,226,70,0.1317382997646169],[123,226,71,0.12224563351735161],[123,226,72,0.11292145548199312],[123,226,73,0.10378386181748112],[123,226,74,0.094846923977767],[123,226,75,0.08611985230636651],[123,226,76,0.0776063496559598],[123,226,77,0.0693041572851743],[123,226,78,0.06120479501979993],[123,226,79,0.05329349740504459],[123,227,64,0.18884014398059387],[123,227,65,0.17848279944635825],[123,227,66,0.16825270545723103],[123,227,67,0.15812976345548363],[123,227,68,0.14811109064586378],[123,227,69,0.1382192904186935],[123,227,70,0.1284781420036856],[123,227,71,0.11891044083142202],[123,227,72,0.10953661886926462],[123,227,73,0.10037355604109821],[123,227,74,0.0914335858034393],[123,227,75,0.08272369767109078],[123,227,76,0.07424493920384899],[123,227,77,0.06599201968453108],[123,227,78,0.05795311744270751],[123,227,79,0.05010989250782221],[123,228,64,0.18664237192644964],[123,228,65,0.1760784645897664],[123,228,66,0.16566087483037997],[123,228,67,0.15537217823037885],[123,228,68,0.14521119415549905],[123,228,69,0.13520143246969887],[123,228,70,0.12536701673301992],[123,228,71,0.11573053656478727],[123,228,72,0.10631168343101093],[123,228,73,0.09712608580255508],[123,228,74,0.08818434675380259],[123,228,75,0.07949128678078826],[123,228,76,0.07104539432520703],[123,228,77,0.0628384861991988],[123,228,78,0.054855579820447434],[123,228,79,0.047074978887766655],[123,229,64,0.18457322966456985],[123,229,65,0.17381933564329008],[123,229,66,0.1632294001132502],[123,229,67,0.15278865624628532],[123,229,68,0.14249751004147088],[123,229,69,0.13238015236806017],[123,229,70,0.1224608488879008],[123,229,71,0.11276181739073038],[123,229,72,0.10330188731575526],[123,229,73,0.09409536526229263],[123,229,74,0.08515110953119807],[123,229,75,0.07647181643895673],[123,229,76,0.06805352084518893],[123,229,77,0.059885313034851444],[123,229,78,0.051949273803786285],[123,229,79,0.04422062931044564],[123,230,64,0.18266741565713202],[123,230,65,0.1717423055878862],[123,230,66,0.16099698884325392],[123,230,67,0.15041936108540072],[123,230,68,0.14001130247821145],[123,230,69,0.12979743015209622],[123,230,70,0.11980191792110541],[123,230,71,0.11004641547556843],[123,230,72,0.10054874270975295],[123,230,73,0.09132179457274892],[123,230,74,0.08237265942602842],[123,230,75,0.07370195358516514],[123,230,76,0.06530337441643898],[123,230,77,0.05716347405451042],[123,230,78,0.04926165551031849],[123,230,79,0.04157039264878944],[123,231,64,0.18094967540259418],[123,231,65,0.1698736579048331],[123,231,66,0.1589911679402345],[123,231,67,0.14829277203332988],[123,231,68,0.13778171969367647],[123,231,69,0.12748279473463603],[123,231,70,0.11741983630772153],[123,231,71,0.10761371953585311],[123,231,72,0.0980810978890319],[123,231,73,0.08883335822780716],[123,231,74,0.07987579140628445],[123,231,75,0.07120698101772095],[123,231,76,0.06281841255676743],[123,231,77,0.05469430496617207],[123,231,78,0.046811666237584294],[123,231,79,0.039140574445998694],[123,232,64,0.1794356367733443],[123,232,65,0.16822989566826485],[123,232,66,0.15722911514613525],[123,232,67,0.1464265319378665],[123,232,68,0.13582667267118947],[123,232,69,0.12545424434316643],[123,232,70,0.11533251904086819],[123,232,71,0.10548139721182864],[123,232,72,0.09591621292523671],[123,232,73,0.08664675135895443],[123,232,74,0.07767648127741118],[123,232,75,0.06900200495773001],[123,232,76,0.06061272771392565],[123,232,77,0.05249074886470039],[123,232,78,0.044610975694657974],[123,232,79,0.03694146167156218],[123,233,64,0.17813260806108028],[123,233,65,0.1668185339600379],[123,233,66,0.15571845567790166],[123,233,67,0.1448282633943031],[123,233,68,0.13415368670155367],[123,233,69,0.12371914606682458],[123,233,70,0.11354714044460826],[123,233,71,0.10365641504507697],[123,233,72,0.09406084539309874],[123,233,73,0.0847685304945861],[123,233,74,0.07578109771348245],[123,233,75,0.06709322165986106],[123,233,76,0.0586923590874203],[123,233,77,0.05055870150011444],[123,233,78,0.04266534687811972],[123,233,79,0.03497869165269036],[123,234,64,0.17704033851547377],[123,234,65,0.1656388554513214],[123,234,66,0.1544580240097108],[123,234,67,0.14349635325656154],[123,234,68,0.13276072588153137],[123,234,69,0.12227511472031793],[123,234,70,0.11206107864701331],[123,234,71,0.10213605655529265],[123,234,72,0.09251234674441794],[123,234,73,0.08319628963312396],[123,234,74,0.0741876562090299],[123,234,75,0.06547924432716382],[123,234,76,0.05705668467817121],[123,234,77,0.04889845795783222],[123,234,78,0.040976124489882755],[123,234,79,0.033254767283665415],[123,235,64,0.17615174111332702],[123,235,65,0.16468262895135818],[123,235,66,0.15343859065979312],[123,235,67,0.1424207054339703],[123,235,68,0.13163699061493742],[123,235,69,0.12111087119308006],[123,235,70,0.11086284801145949],[123,235,71,0.10090893886217404],[123,235,72,0.09125976995977719],[123,235,73,0.08191986242180724],[123,235,74,0.07288711593670835],[123,235,75,0.06415249151785594],[123,235,76,0.05569989496232191],[123,235,77,0.04750626235732913],[123,235,78,0.0395418487112587],[123,235,79,0.031770720529282565],[123,236,64,0.1754535772475622],[123,236,65,0.16393479068028877],[123,236,66,0.1526435538163353],[123,236,67,0.14158346189344742],[123,236,68,0.13076368813107023],[123,236,69,0.12020708040715934],[123,236,70,0.1099330197745141],[123,236,71,0.0999560282425182],[123,236,72,0.09028498902608345],[123,236,73,0.0809225511619569],[123,236,74,0.07186472041657965],[123,236,75,0.06310063814407114],[123,236,76,0.05461254948922655],[123,236,77,0.04637596207140536],[123,236,78,0.03835999603601223],[123,236,79,0.030527926120420858],[123,237,64,0.17492707167428845],[123,237,65,0.16337405641875405],[123,237,66,0.15204956380110235],[123,237,67,0.14095965974172217],[123,237,68,0.13011474380457239],[123,237,69,0.11953713661649519],[123,237,70,0.10924509861463418],[123,237,71,0.09925162238354533],[123,237,72,0.0895637980839262],[123,237,73,0.08018235061358744],[123,237,74,0.07110135014359678],[123,237,75,0.062308097425897685],[123,237,76,0.05378318502443684],[123,237,77,0.04550073538253831],[123,237,78,0.03742881640994548],[123,237,79,0.029530035052943996],[123,238,64,0.17454184241841197],[123,238,65,0.16296679400295472],[123,238,66,0.15162035959291953],[123,238,67,0.14051105867138905],[123,238,68,0.1296506482416536],[123,238,69,0.11906105761027727],[123,238,70,0.10875948950733208],[123,238,71,0.09875741293651591],[123,238,72,0.0890600897948544],[123,238,73,0.07966625901759236],[123,238,74,0.07056797958866676],[123,238,75,0.06175063353199245],[123,238,76,0.05319308977641431],[123,238,77,0.04486802957007627],[123,238,78,0.0367424339129609],[123,238,79,0.028778233278607263],[123,239,64,0.17424154429863106],[123,239,65,0.1626535525170371],[123,239,66,0.15129406596535988],[123,239,67,0.1401740766570729],[123,239,68,0.129306894241026],[123,239,69,0.11871428138000416],[123,239,70,0.10841251344386624],[123,239,71,0.0984115852770706],[123,239,72,0.08871491402882091],[123,239,73,0.07931918423894967],[123,239,74,0.07021433620075135],[123,239,75,0.06138369842005913],[123,239,76,0.0528042647911655],[123,239,77,0.04444711691708287],[123,239,78,0.03627799181879167],[123,239,79,0.028257995104456382],[123,240,64,0.17394360114645546],[123,240,65,0.16235181393508957],[123,240,66,0.15098844220187324],[123,240,67,0.13986695045978448],[123,240,68,0.12900242373533327],[123,240,69,0.11841675548944039],[123,240,70,0.10812549795529924],[123,240,71,0.09813729125544465],[123,240,72,0.08845375397001481],[123,240,73,0.07906950014338335],[123,240,74,0.06997228342170675],[123,240,75,0.0611432688362634],[123,240,76,0.05255743257350836],[123,240,77,0.04418408990472728],[123,240,78,0.0359875512905669],[123,240,79,0.02792790652722245],[123,241,64,0.1735749439078947],[123,241,65,0.16198894859508636],[123,241,66,0.15063131566211566],[123,241,67,0.13951793679185148],[123,241,68,0.1286658984545989],[123,241,69,0.11809757687390807],[123,241,70,0.10782807184535784],[123,241,71,0.0978648608896286],[123,241,72,0.08820788466828725],[123,241,73,0.07884974295231983],[123,241,74,0.06977600150542537],[123,241,75,0.06096561009094159],[123,241,76,0.05239143166239103],[123,241,77,0.044020882655003785],[123,241,78,0.03581668416355728],[123,241,79,0.027737723668966343],[123,242,64,0.17307926736894663],[123,242,65,0.16150858701704962],[123,242,66,0.15016620223312754],[123,242,67,0.13907033252780363],[123,242,68,0.12824028029388967],[123,242,69,0.11769929430645897],[123,242,70,0.10746234733961281],[123,242,71,0.09753601222872905],[123,242,72,0.0879187445759386],[123,242,73,0.07860126049839326],[123,242,74,0.06956700945625173],[123,242,75,0.06079274206832242],[123,242,76,0.05224917269910635],[123,242,77,0.04390173648341539],[123,242,78,0.03571144034799133],[123,242,79,0.02763580749192182],[123,243,64,0.17241518731078997],[123,243,65,0.16086885346058455],[123,243,66,0.14955063191713586],[123,243,67,0.13848091180354882],[123,243,68,0.1276814014412148],[123,243,69,0.11717663319140971],[123,243,70,0.10698182036761876],[123,243,71,0.09710294634601069],[123,243,72,0.08753724220896925],[123,243,73,0.07827374470242407],[123,243,74,0.06929393423121247],[123,243,75,0.06057245251086578],[123,243,76,0.05207789939367055],[123,243,77,0.043773708293349284],[123,243,78,0.035619099550238675],[123,243,79,0.02757011100554324],[123,244,64,0.17155448842249893],[123,244,65,0.16004068855754472],[123,244,66,0.14875456071708767],[123,244,67,0.1377184451771751],[123,244,68,0.12695661093080374],[123,244,69,0.11649529008152609],[123,244,70,0.10635033311641852],[123,244,71,0.09652749669013999],[123,244,72,0.08702310905760391],[123,244,73,0.07782480223608335],[123,244,74,0.06891231032715762],[123,244,75,0.060258333344586884],[123,244,76,0.051829465815713044],[123,244,77,0.04358718935291672],[123,244,78,0.0354889283318948],[123,244,79,0.027489167762985836],[123,245,64,0.1704804644041926],[123,245,65,0.15900626238272036],[123,245,66,0.14775887009379388],[123,245,67,0.13676230201119385],[123,245,68,0.12604349864451841],[123,245,69,0.11563079778882893],[123,245,70,0.10554109956379845],[123,245,71,0.09578033333889471],[123,245,72,0.08634429912934286],[123,245,73,0.07721956360060928],[123,245,74,0.06838440984273116],[123,245,75,0.05980984001087406],[123,245,76,0.05146062986989718],[123,245,77,0.04329643422992985],[123,245,78,0.03527294222072373],[123,245,79,0.027343081322689786],[123,246,64,0.16918635181966984],[123,246,65,0.1577574794430971],[123,246,66,0.14655395537665833],[123,246,67,0.13560113733322404],[123,246,68,0.12492869786885626],[123,246,69,0.1145674620295215],[123,246,70,0.10453579475425202],[123,246,71,0.09484022273657747],[123,246,72,0.0854764355257602],[123,246,73,0.07643033084971874],[123,246,74,0.06767910308180972],[123,246,75,0.05919237372547762],[123,246,76,0.050933362749433816],[123,246,77,0.04286009957286957],[123,246,78,0.03492667247889185],[123,246,79,0.027084515222550825],[123,247,64,0.16767385937622992],[123,247,65,0.15629457717641476],[123,247,66,0.14513840461069],[123,247,67,0.13423166452223806],[123,247,68,0.12360676759305596],[123,247,69,0.11329737060781203],[123,247,70,0.10332370862936384],[123,247,71,0.09369334352787585],[123,247,72,0.08440230446689823],[123,247,73,0.0754362641772663],[123,247,74,0.06677174973619276],[123,247,75,0.058377386534542636],[123,247,76,0.050215174088137804],[123,247,77,0.042241792330356256],[123,247,78,0.03440993701681659],[123,247,79,0.026669682876130987],[123,248,64,0.16595179441827954],[123,248,65,0.15462481965022526],[123,248,66,0.14351776941371325],[123,248,67,0.1326575152484583],[123,248,68,0.12207915580325718],[123,248,69,0.11181947619969322],[123,248,70,0.1019009652656243],[123,248,71,0.09233265912539275],[123,248,72,0.08311139718306122],[123,248,73,0.07422310757608262],[123,248,74,0.06564412064986494],[123,248,75,0.057342508979778904],[123,248,76,0.04927945245085185],[123,248,77,0.04141062689798793],[123,248,78,0.03368761481452722],[123,248,79,0.026059336651766407],[123,249,64,0.1640347885192535],[123,249,65,0.15276128824221724],[123,249,66,0.1417034294982146],[123,249,67,0.1308881881657442],[123,249,68,0.12035324508749776],[123,249,69,0.11013875384510122],[123,249,70,0.10026980840578001],[123,249,71,0.09075734766496343],[123,249,72,0.08159950009260564],[123,249,73,0.0727829537533846],[123,249,74,0.06428435012477553],[123,249,75,0.056071700120008054],[123,249,76,0.04810582071387432],[123,249,77,0.04034179056946867],[123,249,78,0.03273042307671956],[123,249,79,0.025219755236370288],[123,250,64,0.16194212414162729],[123,250,65,0.1507217711595745],[123,250,66,0.13971155258051166],[123,250,67,0.1289380879143002],[123,250,68,0.11844148191518797],[123,250,69,0.10826543429411017],[123,250,70,0.09843795419359666],[123,250,71,0.08897229001119887],[123,250,72,0.07986833367517013],[123,250,73,0.07111404845958785],[123,250,74,0.06268691867838229],[123,250,75,0.05455541958401987],[123,250,76,0.046680505791044574],[123,250,77,0.0390171165485793],[123,250,78,0.03151569620263956],[123,250,79,0.024123728216122776],[123,251,64,0.15969666440446653],[123,251,65,0.14852775371667903],[123,251,66,0.1375621514530939],[123,251,67,0.12682565603611276],[123,251,68,0.11636059098998844],[123,251,69,0.10621431437749343],[123,251,70,0.09641801203416428],[123,251,71,0.08698761647343635],[123,251,72,0.07792524043083218],[123,251,73,0.06922063434954459],[123,251,74,0.06085266610458514],[123,251,75,0.05279082124851977],[123,251,76,0.044996722056047524],[123,251,77,0.03742566364851646],[123,251,78,0.030028165496392045],[123,251,79,0.022751536625045827],[123,252,64,0.15732388805147265],[123,252,65,0.14620351133607426],[123,252,66,0.13527824003358943],[123,252,67,0.12457259543524872],[123,252,68,0.11413087609648077],[123,252,69,0.10400414558394892],[123,252,70,0.09422697450256955],[123,252,71,0.08481831287954396],[123,252,72,0.07578292228718428],[123,252,73,0.06711283444865337],[123,252,74,0.058788834622739844],[123,252,75,0.05078196804565101],[123,252,76,0.04305506769814156],[123,252,77,0.035564301666369515],[123,252,78,0.02826073837819784],[123,252,79,0.021091928020619505],[123,253,64,0.1548510317462807],[123,253,65,0.14377530726368073],[123,253,66,0.13288509022240788],[123,253,67,0.1222031900267206],[123,253,68,0.11177560886546092],[123,253,69,0.1016571020225694],[123,253,70,0.09188577721011629],[123,253,71,0.08248388662925102],[123,253,72,0.07345922777594524],[123,253,73,0.06480657523869705],[123,253,74,0.05650914182217406],[123,253,75,0.0485400673052847],[123,253,76,0.040863933125169255],[123,253,77,0.033438301271420875],[123,253,78,0.026215275681051413],[123,253,79,0.01914308444172033],[123,254,64,0.15230634183449376],[123,254,65,0.14127069699455672],[123,254,66,0.1304095913994512],[123,254,67,0.11974372120987434],[123,254,68,0.10932050686909361],[123,254,69,0.0991983289288284],[123,254,70,0.08941892950857945],[123,254,71,0.08000809330932274],[123,254,72,0.07097698924806276],[123,254,73,0.06232354930954558],[123,254,74,0.05403388302202385],[123,254,75,0.046083725928146684],[123,254,76,0.03843992039464407],[123,254,77,0.031061927086919613],[123,254,78,0.02390336543056918],[123,254,79,0.01691358138870994],[123,255,64,0.14971843770121512],[123,255,65,0.13871794138764143],[123,255,66,0.1278797143661173],[123,255,67,0.11722198277306944],[123,255,68,0.10679330242355711],[123,255,69,0.09665557283369128],[123,255,70,0.08685421686764154],[123,255,71,0.07741872439856186],[123,255,72,0.06836391033017845],[123,255,73,0.05969121744197907],[123,255,74,0.051390062567455944],[123,255,75,0.04343922456621833],[123,255,76,0.035808272510444834],[123,255,77,0.028459032475600443],[123,255,78,0.021347091308301598],[123,255,79,0.014423335738254333],[123,256,64,0.14711578881563472],[123,256,65,0.13614553040394667],[123,256,66,0.1253240814892322],[123,256,67,0.11466689578296109],[123,256,68,0.10422340342052881],[123,256,69,0.09405889445596076],[123,256,70,0.08422247569641038],[123,256,71,0.07474745651928064],[123,256,72,0.06565250374395878],[123,256,73,0.05694284989224435],[123,256,74,0.04861155347202835],[123,256,75,0.040640809855510864],[123,256,76,0.03300331126808763],[123,256,77,0.025663654358585877],[123,256,78,0.018579793789567353],[123,256,79,0.011704540265651549],[123,257,64,0.14452630808363204],[123,257,65,0.13358181943922048],[123,257,66,0.12277164441191751],[123,257,67,0.11210822426360022],[123,257,68,0.10164164650625267],[123,257,69,0.0914404642647707],[123,257,70,0.08155744033230988],[123,257,71,0.07202976190848757],[123,257,72,0.06288007930242599],[123,257,73,0.054117607033895794],[123,257,74,0.04573928610586836],[123,257,75,0.0377310061429062],[123,257,76,0.0300688860188546],[123,257,77,0.022720611535856326],[123,257,78,0.015646828668759515],[123,257,79,0.008802590852244753],[123,258,64,0.14197777483889318],[123,258,65,0.1310554778811686],[123,258,66,0.12025215630474013],[123,258,67,0.10957706593754066],[123,258,68,0.09908079828027092],[123,258,69,0.08883506452712375],[123,258,70,0.07889623581299246],[123,258,71,0.06930538215419742],[123,258,72,0.06008918992887888],[123,258,73,0.051260950613549454],[123,258,74,0.042821619691078346],[123,258,75,0.03476094455095095],[123,258,76,0.027058660115834476],[123,258,77,0.019685750851045528],[123,258,78,0.012605777749463185],[123,258,79,0.005776268831612049],[123,259,64,0.13951188438088855],[123,259,65,0.12860920557089878],[123,259,66,0.1178095701067796],[123,259,67,0.10711892237773915],[123,259,68,0.09658815863038195],[123,259,69,0.08629192633251274],[123,259,70,0.07629003902219883],[123,259,71,0.06662733955737186],[123,259,72,0.057334494290689285],[123,259,73,0.04842886685879795],[123,259,74,0.03991547064283375],[123,259,75,0.03178799884758738],[123,259,76,0.02402993104471054],[123,259,77,0.016615714932431067],[123,259,78,0.009512021984593394],[123,259,79,0.0026790755933926436],[123,260,64,0.137176850845936],[123,260,65,0.12629197527410468],[123,260,66,0.11549390150616645],[123,260,67,0.10478516964365892],[123,260,68,0.09421663201504747],[123,260,69,0.08386540226751024],[123,260,70,0.07379436275444223],[123,260,71,0.06405185268590825],[123,260,72,0.054672334312426824],[123,260,73,0.045677146541575765],[123,260,74,0.03707534518905221],[123,260,75,0.028864628942143915],[123,260,76,0.021032349996861634],[123,260,77,0.01355660822218786],[123,260,78,0.006407427610143728],[123,260,79,-4.519863132866359E-4],[123,261,64,0.13500844611205423],[123,261,65,0.12414021101244482],[123,261,66,0.11334251035114383],[123,261,67,0.10261443135389349],[123,261,68,0.09200631579164556],[123,261,69,0.0815970652389177],[123,261,70,0.07145208122085614],[123,261,71,0.061622779538555245],[123,261,72,0.05214712176105688],[123,261,73,0.04305024140378108],[123,261,74,0.034345164146070105],[123,261,75,0.026033621303271064],[123,261,76,0.018106955638098058],[123,261,77,0.010547118473886622],[123,261,78,0.0033277569630138027],[123,261,79,-0.003584609734711315],[123,262,64,0.13302996330248382],[123,262,65,0.12217778031294121],[123,262,66,0.11138011088776438],[123,262,67,0.10063259356281316],[123,262,68,0.08998450973410704],[123,262,69,0.07951570888008676],[123,262,70,0.06929342248337167],[123,262,71,0.05937160676929951],[123,262,72,0.04979133154632686],[123,262,73,0.040581270401600936],[123,262,74,0.03175829176375113],[123,262,75,0.02332815019486079],[123,262,76,0.015286277129582249],[123,262,77,0.007618670143510948],[123,262,78,3.0287970951145115E-4],[123,262,79,-0.006690907712162484],[123,263,64,0.13125324936848654],[123,263,65,0.12041704346494748],[123,263,66,0.1096198259837237],[123,263,67,0.09885384845217551],[123,263,68,0.08816673062977487],[123,263,69,0.0776383126147269],[123,263,70,0.06733686282956289],[123,263,71,0.05731825251418209],[123,263,72,0.04762619331212712],[123,263,73,0.038292582285153094],[123,263,74,0.029337954037127627],[123,263,75,0.020772039466151086],[123,263,76,0.012594430507186529],[123,263,77,0.004795350078535817],[123,263,78,-0.0026434736914867623],[123,263,79,-0.009747830008119365],[123,264,64,0.129679988122509],[123,264,65,0.11886015078022225],[123,264,66,0.10806448476104492],[123,264,67,0.0972819747199977],[123,264,68,0.08655795463724399],[123,264,69,0.07597122313840367],[123,264,70,0.06559022374144692],[123,264,71,0.05547205553578069],[123,264,72,0.04566255073411289],[123,264,73,0.036196465133122094],[123,264,74,0.027097781343308005],[123,264,75,0.018380124474965804],[123,264,76,0.01004728979873628],[123,264,77,0.002093881737748985],[123,264,78,-0.005493936601630225],[123,264,79,-0.012737584293744494],[123,265,64,0.12830323365522336],[123,265,65,0.11750058771393719],[123,265,66,0.10670816341749535],[123,265,67,0.09591185437204754],[123,265,68,0.08515408704477849],[123,265,69,0.0745115519045819],[123,265,70,0.06405197100850667],[123,265,71,0.05383295021742571],[123,265,72,0.04390188805717313],[123,265,73,0.034296002397726635],[123,265,74,0.025042475000798956],[123,265,75,0.016158713802262397],[123,265,76,0.007652732616131632],[123,265,77,-4.7635222646858237E-4],[123,265,78,-0.008237708952442527],[123,265,79,-0.011239222901172515],[123,266,64,0.12710919380598976],[123,266,65,0.11632496744988349],[123,266,66,0.10553796877386075],[123,266,67,0.09473122539231137],[123,266,68,0.0839436588553513],[123,266,69,0.07324878800542418],[123,266,70,0.06271271535677121],[123,266,71,0.05239282677998784],[123,266,72,0.042337523267001166],[123,266,73,0.03258607489632571],[123,266,74,0.023168597249715137],[123,266,75,0.014106150337590854],[123,266,76,0.005410959900353523],[123,266,77,-1.9047634518414708E-4],[123,266,78,-0.0016651486885026308],[123,266,79,-0.0030523514345532233],[123,267,64,0.12607926310789208],[123,267,65,0.11531507031417641],[123,267,66,0.10453606385688041],[123,267,67,0.09372266955493468],[123,267,68,0.08290974942540476],[123,267,69,0.07216662565486599],[123,267,70,0.06155691380041502],[123,267,71,0.05113707594684897],[123,267,72,0.04095596716146941],[123,267,73,0.031054508076301685],[123,267,74,0.021465484060482685],[123,267,75,0.01264922988996516],[123,267,76,0.01069614848256412],[123,267,77,0.008839108612214179],[123,267,78,0.007077591636528197],[123,267,79,0.0054041112473040874],[123,268,64,0.12519230439656528],[123,268,65,0.1144501291592605],[123,268,66,0.10368193461665597],[123,268,67,0.09286583444222307],[123,268,68,0.0820321342009474],[123,268,69,0.0712450053135462],[123,268,70,0.060564770770859644],[123,268,71,0.050046317148279465],[123,268,72,0.03973844747055977],[123,268,73,0.029683363780407573],[123,268,74,0.02486365932278421],[123,268,75,0.022551943547353043],[123,268,76,0.020311966844304613],[123,268,77,0.018155386875432264],[123,268,78,0.016086907711880052],[123,268,79,0.014104547173595265],[123,269,64,0.12442717805645506],[123,269,65,0.11370935965388485],[123,269,66,0.1029548966824981],[123,269,67,0.09213988855120625],[123,269,68,0.08128965642640185],[123,269,69,0.07046236734181298],[123,269,70,0.059714337940556174],[123,269,71,0.04909830923466038],[123,269,72,0.04056441846137231],[123,269,73,0.037944395544516375],[123,269,74,0.035323960350653424],[123,269,75,0.032732249193324764],[123,269,76,0.03019218612670372],[123,269,77,0.027720307254617087],[123,269,78,0.025326719258898202],[123,269,79,0.023015191998926526],[123,270,64,0.12376551767848017],[123,270,65,0.11307473422443985],[123,270,66,0.10233684088200738],[123,270,67,0.09152620820444245],[123,270,68,0.08066282154810867],[123,270,69,0.06979811692761076],[123,270,70,0.058983811533845874],[123,270,71,0.05455116440651923],[123,270,72,0.051764512012756],[123,270,73,0.04891042576050099],[123,270,74,0.046026043950566795],[123,270,75,0.04314377251150378],[123,270,76,0.04029077702253873],[123,270,77,0.037488613178471714],[123,270,78,0.03475299595897464],[123,270,79,0.032093707549076464],[123,271,64,0.12147229646918856],[123,271,65,0.11251689440963326],[123,271,66,0.10179840805657381],[123,271,67,0.09099506760702766],[123,271,68,0.08012126069848195],[123,271,69,0.07167045206780402],[123,271,70,0.06900763167851692],[123,271,71,0.06615821716171652],[123,271,72,0.06316565674003491],[123,271,73,0.06007177225888488],[123,271,74,0.05691575969368574],[123,271,75,0.05373333091665547],[123,271,76,0.05055599767679221],[123,271,77,0.047410498509240624],[123,271,78,0.0443183690562136],[123,271,79,0.041295656052682796],[123,272,64,0.11626399339457794],[123,272,65,0.11090481887979994],[123,272,66,0.10125176619408087],[123,272,67,0.0904600792123709],[123,272,68,0.08622571143282536],[123,272,69,0.0836897943577152],[123,272,70,0.08089264535140532],[123,272,71,0.07787493506332069],[123,272,72,0.07467880939949313],[123,272,73,0.07134652420113413],[123,272,74,0.0679192239278033],[123,272,75,0.06443586579930795],[123,272,76,0.06093229060062282],[123,272,77,0.0574404411050205],[123,272,78,0.053987728823847725],[123,272,79,0.05059654954865727],[123,273,64,0.11137055070624591],[123,273,65,0.1044085821605203],[123,273,66,0.09702160661889775],[123,273,67,0.09672620544995608],[123,273,68,0.09647552987252797],[123,273,69,0.09570167432373697],[123,273,70,0.0927784876598521],[123,273,71,0.08960133113675135],[123,273,72,0.08621081940967515],[123,273,73,0.08264942923012528],[123,273,74,0.07896005657273175],[123,273,75,0.07518472355342405],[123,273,76,0.07136343659428737],[123,273,77,0.06753319702950387],[123,273,78,0.06372716508708193],[123,273,79,0.05997397792440296],[123,274,64,0.10681172316925608],[123,274,65,0.1039467466349328],[123,274,66,0.10238921662210099],[123,274,67,0.10101501216107933],[123,274,68,0.10016869539239892],[123,274,69,0.09981366520675433],[123,274,70,0.09990204927352203],[123,274,71,0.10037766392949038],[123,274,72,0.09767430977158954],[123,274,73,0.09389972665984966],[123,274,74,0.08996501750865084],[123,274,75,0.08591498995505187],[123,274,76,0.08179352824843467],[123,274,77,0.0776424018440864],[123,274,78,0.07350023247669663],[123,274,79,0.06940162059818411],[123,275,64,0.102606452795873],[123,275,65,0.10016787483645251],[123,275,66,0.09833372446004696],[123,275,67,0.09708805540735088],[123,275,68,0.0964029533730581],[123,275,69,0.09623817659314848],[123,275,70,0.09654104640636602],[123,275,71,0.09724934335771346],[123,275,72,0.09829078632685417],[123,275,73,0.09957800624186497],[123,275,74,0.10086455165270118],[123,275,75,0.0965640739914527],[123,275,76,0.09216758410922639],[123,275,77,0.08772120637209209],[123,275,78,0.08326859900123842],[123,275,79,0.07884989929276913],[123,276,64,0.09877249512253417],[123,276,65,0.0963870975562523],[123,276,66,0.09464183847789842],[123,276,67,0.09351930982009515],[123,276,68,0.09298916559637027],[123,276,69,0.09300767535869037],[123,276,70,0.09351752678100772],[123,276,71,0.09445065634206051],[123,276,72,0.09572763189042949],[123,276,73,0.09725316184688282],[123,276,74,0.09891267388691055],[123,276,75,0.10060200235936578],[123,276,76,0.10223934483862951],[123,276,77,0.0977229525203195],[123,276,78,0.09299273199968802],[123,276,79,0.08828666518726941],[123,277,64,0.09532608355637606],[123,277,65,0.09299043622785941],[123,277,66,0.0913293280902257],[123,277,67,0.09032400710015892],[123,277,68,0.08994184128606697],[123,277,69,0.09013578448365256],[123,277,70,0.09084409005238953],[123,277,71,0.09199307478527735],[123,277,72,0.09349640347855653],[123,277,73,0.09525111066136083],[123,277,74,0.09713952824558564],[123,277,75,0.0990568755678638],[123,277,76,0.1009203060278207],[123,277,77,0.10266741144612429],[123,277,78,0.10263262100629625],[123,277,79,0.09767791990509343],[123,278,64,0.09228163179134191],[123,278,65,0.08999223787171096],[123,278,66,0.08841027492047782],[123,278,67,0.08751577377306374],[123,278,68,0.08727397610167575],[123,278,69,0.08763471212514701],[123,278,70,0.08853202485155726],[123,278,71,0.08988686616887331],[123,278,72,0.09160628224827644],[123,278,73,0.09357992257129183],[123,278,74,0.09568711585137912],[123,278,75,0.09782245477949553],[123,278,76,0.09990204379279888],[123,278,77,0.10186203434475549],[123,278,78,0.10365731627922675],[123,278,79,0.10526040801519526],[123,279,64,0.08965147429371462],[123,279,65,0.08740482316324949],[123,279,66,0.08589679999337962],[123,279,67,0.08510635301054242],[123,279,68,0.08499676946388846],[123,279,69,0.08551496530539582],[123,279,70,0.08659101964881943],[123,279,71,0.08814080232074861],[123,279,72,0.09006505920821639],[123,279,73,0.09224638129000917],[123,279,74,0.09456120819789626],[123,279,75,0.09690350626218458],[123,279,76,0.09918833863412874],[123,279,77,0.10135042632091357],[123,279,78,0.10334288463683716],[123,279,79,0.10513614997799142],[123,280,64,0.08744564485726297],[123,280,65,0.08523825836831939],[123,280,66,0.08379882982923414],[123,280,67,0.08310536569871868],[123,280,68,0.08311938142486813],[123,280,69,0.08378510339920597],[123,280,70,0.08502891363011483],[123,280,71,0.08676190837499137],[123,280,72,0.08887888284133183],[123,280,73,0.09125573107957435],[123,280,74,0.09376613826960162],[123,280,75,0.09630345644129662],[123,280,76,0.09878172745602742],[123,280,77,0.10113426441062828],[123,280,78,0.10331242618629993],[123,280,79,0.1052845736187431],[123,281,64,0.08567169322791884],[123,281,65,0.0835001657880432],[123,281,66,0.08212390144004894],[123,281,67,0.0815201107528492],[123,281,68,0.0816487290834143],[123,281,69,0.08245153142057227],[123,281,70,0.08385148758651612],[123,281,71,0.0857552519237767],[123,281,72,0.08805204707044062],[123,281,73,0.09061146394439262],[123,281,74,0.09330458731291047],[123,281,75,0.09602417857189027],[123,281,76,0.09868329042338364],[123,281,77,0.10121386305356073],[123,281,78,0.10356552953343862],[123,281,79,0.10570459394538118],[123,282,64,0.08433469003623678],[123,282,65,0.08219572301360312],[123,282,66,0.08087715656848027],[123,282,67,0.08035555504299757],[123,282,68,0.08058947292018409],[123,282,69,0.08151848348679502],[123,282,70,0.08306244519557276],[123,282,71,0.08512392273453356],[123,282,72,0.08758696991849846],[123,282,73,0.09031529760250046],[123,282,74,0.09317756240811476],[123,282,75,0.09606597015732804],[123,282,76,0.09889262841734886],[123,282,77,0.1015881517066039],[123,282,78,0.10410049029564789],[123,282,79,0.10639392266914843],[123,283,64,0.08343769684957714],[123,283,65,0.0813281279162471],[123,283,66,0.08006180216886782],[123,283,67,0.07961478997247651],[123,283,68,0.07994447011448974],[123,283,69,0.08098847352740207],[123,283,70,0.0826638617623342],[123,283,71,0.0848694800905751],[123,283,72,0.08748463988486838],[123,283,73,0.09036762117479691],[123,283,74,0.0933848416414787],[123,283,75,0.09642799769756533],[123,283,76,0.09940830736739847],[123,283,77,0.10225511867099962],[123,283,78,0.10491475422727037],[123,283,79,0.10734951031002038],[123,284,64,0.08298124128496859],[123,284,65,0.08089806870927946],[123,284,66,0.07967857607280321],[123,284,67,0.0792984934243205],[123,284,68,0.0797142334526737],[123,284,69,0.08086175181681104],[123,284,70,0.08265563899585798],[123,284,71,0.08499140638471175],[123,284,72,0.0877440688730976],[123,284,73,0.09076694787935186],[123,284,74,0.0939244269506484],[123,284,75,0.09710775004495104],[123,284,76,0.10022731244095334],[123,284,77,0.10321126639149858],[123,284,78,0.10600437384321221],[123,284,79,0.10856700428427396],[123,285,64,0.08296308662375312],[123,285,65,0.08090348905973671],[123,285,66,0.0797255081672591],[123,285,67,0.07940468760576491],[123,285,68,0.07989668645171089],[123,285,69,0.08113605798214518],[123,285,70,0.08303525647550447],[123,285,71,0.08548685757130536],[123,285,72,0.08836204208819382],[123,285,73,0.09150966473772748],[123,285,74,0.09479229393487831],[123,285,75,0.09810078856253401],[123,285,76,0.10134479873527402],[123,285,77,0.10445136279943468],[123,285,78,0.1073637604523282],[123,285,79,0.1100405015767077],[123,286,64,0.08337823944852507],[123,286,65,0.08133959174542005],[123,286,66,0.08019792056467057],[123,286,67,0.07992873626068442],[123,286,68,0.08048715816357033],[123,286,69,0.08180661395037225],[123,286,70,0.08379776327100474],[123,286,71,0.08635065394352953],[123,286,72,0.08933310838089487],[123,286,73,0.09259002279436357],[123,286,74,0.0959823821721365],[123,286,75,0.09940073768978541],[123,286,76,0.10275408216538551],[123,286,77,0.10596843251224708],[123,286,78,0.10898567556551969],[123,286,79,0.1117625401519865],[123,287,64,0.08421899538923427],[123,287,65,0.08219888086105376],[123,287,66,0.08108846671449504],[123,287,67,0.08086338116825648],[123,287,68,0.08147841756409546],[123,287,69,0.08286615673422715],[123,287,70,0.08493580961531688],[123,287,71,0.08757531114237876],[123,287,72,0.09064961097436963],[123,287,73,0.09400016784781551],[123,287,74,0.0974866261521371],[123,287,75,0.10099931619378422],[123,287,76,0.10444667106501326],[123,287,77,0.10775378872590607],[123,287,78,0.11086126292502396],[123,287,79,0.11372413086159583],[123,288,64,0.08547502295189358],[123,288,65,0.08347124254700344],[123,288,66,0.08238720942967481],[123,288,67,0.08219881790126371],[123,288,68,0.08286074749982275],[123,288,69,0.08430501103034171],[123,288,70,0.08643971860369559],[123,288,71,0.08915111137085502],[123,288,72,0.09230175854678474],[123,288,73,0.09573021166729168],[123,288,74,0.09929502679876706],[123,288,75,0.10288640907935664],[123,288,76,0.1064123384740564],[123,288,77,0.10979710577381196],[123,288,78,0.11298012112852318],[123,288,79,0.1159148298201027],[123,289,64,0.08713348543004318],[123,289,65,0.08514406424070492],[123,289,66,0.08408173782815509],[123,289,67,0.083922810844195],[123,289,68,0.08462205819289076],[123,289,69,0.0861112016297309],[123,289,70,0.0882975979191239],[123,289,71,0.0910662148134781],[123,289,72,0.09427773666987882],[123,289,73,0.09776834369462906],[123,289,74,0.10139576358204222],[123,289,75,0.10505018015830081],[123,289,76,0.10863923511272655],[123,289,77,0.1120865323522931],[123,289,78,0.11533041684819356],[123,289,79,0.11832285125084152],[123,290,64,0.08917920089886333],[123,290,65,0.08720239245069472],[123,290,66,0.08615732318934866],[123,290,67,0.08602084747102873],[123,290,68,0.08674804030393163],[123,290,69,0.08827060564052791],[123,290,70,0.09049549158400039],[123,290,71,0.09330681126101492],[123,290,72,0.09656385960344549],[123,290,73,0.10010098323161076],[123,290,74,0.103775347219498],[123,290,75,0.10747722527760606],[123,290,76,0.11111404304226435],[123,290,77,0.11460884541261768],[123,290,78,0.11789903864461382],[123,290,79,0.12093522080094632],[123,291,64,0.091594840291912],[123,291,65,0.08962912905321951],[123,291,66,0.08859711372552259],[123,291,67,0.08847633188268011],[123,291,68,0.08922235755291791],[123,291,69,0.09076714452294304],[123,291,70,0.09301757173805342],[123,291,71,0.09585731194039815],[123,291,72,0.09914476244568993],[123,291,73,0.10271297211258767],[123,291,74,0.10641881296697542],[123,291,75,0.11015276620662467],[123,291,76,0.11382217001218747],[123,291,77,0.11734964471947151],[123,291,78,0.12067179137548184],[123,291,79,0.12373796932567627],[123,292,64,0.09436116356061303],[123,292,65,0.09240526611155103],[123,292,66,0.0913823682682342],[123,292,67,0.09127081760423761],[123,292,68,0.09202687889809613],[123,292,69,0.09358301593657437],[123,292,70,0.0958463704426169],[123,292,71,0.09870058154996952],[123,292,72,0.10200363363959786],[123,292,73,0.10558780786254518],[123,292,74,0.10930995449894615],[123,292,75,0.11306088518334129],[123,292,76,0.11674798449422019],[123,292,77,0.12029358807605184],[123,292,78,0.12363363119929238],[123,292,79,0.12671636714218848],[123,293,64,0.09745729391638525],[123,293,65,0.09551015921789391],[123,293,66,0.09449272886970683],[123,293,67,0.09438427964187618],[123,293,68,0.09514195027289424],[123,293,69,0.09669896539996048],[123,293,70,0.09896305151115009],[123,293,71,0.1018182104999299],[123,293,72,0.10512248783519823],[123,293,73,0.10870791734049523],[123,293,74,0.11243159837825384],[123,293,75,0.11618480011961702],[123,293,76,0.11987509140277797],[123,293,77,0.12342466721565165],[123,293,78,0.12676894117384835],[123,293,79,0.12985519875263052],[123,294,64,0.10086103015539832],[123,294,65,0.09892183935787491],[123,294,66,0.09790653231912838],[123,294,67,0.09779542579943523],[123,294,68,0.0985467058807854],[123,294,69,0.10009459776235607],[123,294,70,0.1023477223659881],[123,294,71,0.10519082735798191],[123,294,72,0.10848247910770381],[123,294,73,0.11205497086817812],[123,294,74,0.11576591911525758],[123,294,75,0.11950718046539288],[123,294,76,0.12318664850199221],[123,294,77,0.12672652435971865],[123,294,78,0.13006184744958976],[123,294,79,0.1331390780365358],[123,295,64,0.10454919706610288],[123,295,65,0.10261736329776161],[123,295,66,0.10160116057402457],[123,295,67,0.10148204725480964],[123,295,68,0.10221941904826465],[123,295,69,0.10374872848788763],[123,295,70,0.10597978592147772],[123,295,71,0.10879845150032241],[123,295,72,0.11206425453168967],[123,295,73,0.11561023684423455],[123,295,74,0.11929479481653837],[123,295,75,0.12301050373201583],[123,295,76,0.12666572349944116],[123,295,77,0.13018280944255545],[123,295,78,0.13349657605790913],[123,295,79,0.13655280391269226],[123,296,64,0.10849803391931984],[123,296,65,0.10657320249419228],[123,296,66,0.10555343010648766],[123,296,67,0.10542140839593556],[123,296,68,0.1061378926357135],[123,296,69,0.10763977475186276],[123,296,70,0.1098383324932728],[123,296,71,0.1126208859677551],[123,296,72,0.11584834811107741],[123,296,73,0.11935497684361396],[123,296,74,0.12300020342293383],[123,296,75,0.12667745267444935],[123,296,76,0.13029569182634465],[123,296,77,0.13377757800241816],[123,296,78,0.13705785029420722],[123,296,79,0.1400817564702364],[123,297,64,0.11268362104112056],[123,297,65,0.11076567052665054],[123,297,66,0.10974002016449513],[123,297,67,0.10959067591660654],[123,297,68,0.11027988900639135],[123,297,69,0.11174618634947509],[123,297,70,0.11390257173403084],[123,297,71,0.1166381505271692],[123,297,72,0.1198156150651728],[123,297,73,0.12327088120247004],[123,297,74,0.12686465953715223],[123,297,75,0.13049135313262394],[123,297,76,0.13406067510448144],[123,297,77,0.13749572973927315],[123,297,78,0.14073132869595206],[123,297,79,0.1437123335692374],[123,298,64,0.11708234446827404],[123,298,65,0.11517138905246321],[123,298,66,0.11413793994809379],[123,298,67,0.11396738717189325],[123,298,68,0.11462359955332574],[123,298,69,0.1160469164166732],[123,298,70,0.11815230459527915],[123,298,71,0.1208309549381486],[123,298,72,0.12394770647052034],[123,298,73,0.12734054508830317],[123,298,74,0.13087169184072578],[123,298,75,0.1344366525316821],[123,298,76,0.13794602029958267],[123,298,77,0.1413234877389639],[123,298,78,0.1445040836154904],[123,298,79,0.14743242791051875],[123,299,64,0.12167139868641924],[123,299,65,0.11976779228447354],[123,299,66,0.11872503470060497],[123,299,67,0.1185299577933252],[123,299,68,0.11914815378426058],[123,299,69,0.12052193196335584],[123,299,70,0.1225684353156132],[123,299,71,0.12518121242487742],[123,299,72,0.12822758425874003],[123,299,73,0.13154798505551868],[123,299,74,0.13500636110047196],[123,299,75,0.13849943904129247],[123,299,76,0.1419388195613749],[123,299,77,0.14524891836396286],[123,299,78,0.14836512038778943],[123,299,79,0.15123194457489658],[123,300,64,0.1264293274509461],[123,300,65,0.12453366999138044],[123,300,66,0.12348053071484008],[123,300,67,0.12325822856382182],[123,300,68,0.12383416796464947],[123,300,69,0.12515276421887767],[123,300,70,0.12713352343521211],[123,300,71,0.12967259335332482],[123,300,72,0.13264007657033164],[123,300,73,0.1358791960863829],[123,300,74,0.1392558187644452],[123,300,75,0.1426680013940106],[123,300,76,0.14602847075025271],[123,300,77,0.14926249181068763],[123,300,78,0.1523059370930852],[123,300,79,0.15510335903181063],[123,301,64,0.131336602690464],[123,301,65,0.12944974902061682],[123,301,66,0.12838561925419817],[123,301,67,0.128134051552244],[123,301,68,0.1286643333185638],[123,301,69,0.12992309878973854],[123,301,70,0.13183237583654137],[123,301,71,0.13429111911357938],[123,301,72,0.13717247346431388],[123,301,73,0.14032274911724688],[123,301,74,0.14360990614724806],[123,301,75,0.14693342936255746],[123,301,76,0.1502072786504488],[123,301,77,0.15335768333325006],[123,301,78,0.1563211249143077],[123,301,79,0.15904231561721738],[123,302,64,0.13637624149300437],[123,302,65,0.13449931334391674],[123,302,66,0.13342407938879797],[123,302,67,0.13314191550772106],[123,302,68,0.13362404378767478],[123,302,69,0.13481940562961156],[123,302,70,0.13665267881140297],[123,302,71,0.13902579620749442],[123,302,72,0.1418151629838618],[123,302,73,0.1448704290502001],[123,302,74,0.14806179420486446],[123,302,75,0.15129025489617953],[123,302,76,0.15447109686986948],[123,302,77,0.15753161513380404],[123,302,78,0.1604090090894496],[123,302,79,0.16304826648091292],[123,303,64,0.141534461174914],[123,303,65,0.1396688626255264],[123,303,66,0.13858293974659752],[123,303,67,0.13826961051370418],[123,303,68,0.13870206334825386],[123,303,69,0.13983160882165788],[123,303,70,0.14158567015427498],[123,303,71,0.14386929054158523],[123,303,72,0.1465623075778821],[123,303,73,0.1495179132500937],[123,303,74,0.15260866389895572],[123,303,75,0.15573713391602811],[123,303,76,0.1588200104265281],[123,303,77,0.16178573891942816],[123,303,78,0.16457233045881126],[123,303,79,0.1671251510032188],[123,304,64,0.14680137243234354],[123,304,65,0.1449488093129664],[123,304,66,0.14385317917940849],[123,304,67,0.14350893190165367],[123,304,68,0.14389123288610592],[123,304,69,0.14495379617304116],[123,304,70,0.1466268512818591],[123,304,71,0.14881864192509664],[123,304,72,0.1514125608784462],[123,304,73,0.15426549052685412],[123,304,74,0.15725242715053747],[123,304,75,0.16027756876947918],[123,304,76,0.163259059021503],[123,304,77,0.16612655912546603],[123,304,78,0.1688189676070499],[123,304,79,0.17128211568095622],[123,305,64,0.1521717105754704],[123,305,65,0.15033421425047877],[123,305,66,0.14923046634394097],[123,305,67,0.1488564234244972],[123,305,68,0.14918921662956644],[123,305,69,0.1501849686217715],[123,305,70,0.15177673937896213],[123,305,71,0.15387601877336807],[123,305,72,0.15636982483420733],[123,305,73,0.15911882060321078],[123,305,74,0.1620004883831654],[123,305,75,0.16492067134351895],[123,305,76,0.16779900099854111],[123,305,77,0.17056639680544855],[123,305,78,0.17316269960015165],[123,305,79,0.17553427448283107],[123,306,64,0.15764560484543194],[123,306,65,0.15582556081514162],[123,306,66,0.154715938197859],[123,306,67,0.15431415968983656],[123,306,68,0.15459928814054524],[123,306,69,0.15552982945586485],[123,306,70,0.157041659570698],[123,306,71,0.15904951301648096],[123,306,72,0.16144404719978545],[123,306,73,0.16408973406782593],[123,306,74,0.1668665466556124],[123,306,75,0.16968196683718026],[123,306,76,0.17245711799029434],[123,306,77,0.17512419418758218],[123,306,78,0.17762400931731542],[123,306,79,0.1799035096742147],[123,307,64,0.1632282689576193],[123,307,65,0.1614284518410899],[123,307,66,0.16031589524845827],[123,307,67,0.15988943199067843],[123,307,68,0.16012999951820628],[123,307,69,0.16099843045104126],[123,307,70,0.1624333625801404],[123,307,71,0.16435272516038607],[123,307,72,0.1666507714724206],[123,307,73,0.16919574651509026],[123,307,74,0.17187007499257667],[123,307,75,0.1745828405563879],[123,307,76,0.1772566324869404],[123,307,77,0.17982490713293017],[123,307,78,0.18222945550685427],[123,307,79,0.18441782857332784],[123,308,64,0.16890746595681033],[123,308,65,0.16713108204309263],[123,308,66,0.16601913087458545],[123,308,67,0.1655717894329206],[123,308,68,0.1657717990182478],[123,308,69,0.16658224501323332],[123,308,70,0.16794445170844022],[123,308,71,0.16977946801820565],[123,308,72,0.1719850705889625],[123,308,73,0.1744332114451646],[123,308,74,0.17700871805816473],[123,308,75,0.17962223672901678],[123,308,76,0.1821977895284174],[123,308,77,0.18467007174064268],[123,308,78,0.1869818419215826],[123,308,79,0.18908126403818615],[123,309,64,0.17465015290900135],[123,309,65,0.172900804260623],[123,309,66,0.1717934230794695],[123,309,67,0.17132946010727534],[123,309,68,0.17149338537363523],[123,309,69,0.17225045904586112],[123,309,70,0.1735446131452958],[123,309,71,0.17529993867193663],[123,309,72,0.17741766185147803],[123,309,73,0.17977337836880025],[123,309,74,0.18225429276924968],[123,309,75,0.1847726007753139],[123,309,76,0.18725374024447264],[123,309,77,0.18963362976002507],[123,309,78,0.19185598660917402],[123,309,79,0.19386959135470505],[123,310,64,0.18042174421594487],[123,310,65,0.17870334365527613],[123,310,66,0.1776048385808356],[123,310,67,0.1771288790159469],[123,310,68,0.1772615845362862],[123,310,69,0.17797030827653376],[123,310,70,0.1792015078486588],[123,310,71,0.180882236119906],[123,310,72,0.18291709348807128],[123,310,73,0.18518525799636532],[123,310,74,0.18757630799427547],[123,310,75,0.19000400093888659],[123,310,76,0.19239518976718892],[123,310,77,0.19468700904060746],[123,310,78,0.196824127651882],[123,310,79,0.19875594272349206],[123,311,64,0.18618732424119358],[123,311,65,0.18450401480447656],[123,311,66,0.18341895870043634],[123,311,67,0.18293592693560723],[123,311,68,0.18304260541334622],[123,311,69,0.1837083543489351],[123,311,70,0.1848820709042745],[123,311,71,0.18649368607968814],[123,311,72,0.18845109615876496],[123,311,73,0.19063700058911454],[123,311,74,0.1929433685973],[123,311,75,0.19528555568653955],[123,311,76,0.19759184466987373],[123,311,77,0.19980058690450245],[123,311,78,0.20185739775447406],[123,311,79,0.2037122878953067],[123,312,64,0.19191211394765476],[123,312,65,0.19026818844014232],[123,312,66,0.18920134484943754],[123,312,67,0.18871639336670354],[123,312,68,0.188802499101615],[123,312,69,0.1894309393014091],[123,312,70,0.19055296038045172],[123,312,71,0.1921012835603992],[123,312,72,0.19398701883336572],[123,312,73,0.19609632499588814],[123,312,74,0.19832359759656054],[123,312,75,0.20058584895806392],[123,312,76,0.20281282127065703],[123,312,77,0.2049440914485289],[123,312,78,0.20692621846135764],[123,312,79,0.20870982118141387],[123,313,64,0.19756288164970948],[123,313,65,0.19596260341660354],[123,313,66,0.1949187508935979],[123,313,67,0.1944370888025822],[123,313,68,0.1945081709213905],[123,313,69,0.1951050976097684],[123,313,70,0.19618137003731556],[123,313,71,0.1976724073391517],[123,313,72,0.19949244660934856],[123,313,73,0.20153104187169582],[123,313,74,0.2036850671743503],[123,313,75,0.20587327158195248],[123,313,76,0.20802690026904086],[123,313,77,0.21008677239471657],[123,313,78,0.21200039036990684],[123,313,79,0.2137189743115594],[123,314,64,0.2031078192850059],[123,314,65,0.20155526010852803],[123,314,66,0.2005390323810761],[123,314,67,0.20006576851022528],[123,314,68,0.2001273175233775],[123,314,69,0.20069850547621806],[123,314,70,0.20173498976999105],[123,314,71,0.203174790682222],[123,314,72,0.20493518102243768],[123,314,73,0.20690904309661134],[123,314,74,0.20899579679563987],[123,314,75,0.2111160276653098],[123,314,76,0.21320254094572968],[123,314,77,0.21519742259490715],[123,314,78,0.2170491213811204],[123,314,79,0.2187094508093301],[123,315,64,0.20851580813196913],[123,315,65,0.20701478596920114],[123,315,66,0.2060306102165658],[123,315,67,0.20557069239627546],[123,315,68,0.20562808085613227],[123,315,69,0.20617922667600208],[123,315,70,0.20718184101733067],[123,315,71,0.20857644394264932],[123,315,72,0.21028324744443666],[123,315,73,0.21219839159579054],[123,315,74,0.21422392296441617],[123,315,75,0.2162823816129114],[123,315,76,0.21830820257754474],[123,315,77,0.22024477077883722],[123,315,78,0.22204148752166272],[123,315,79,0.22365075143321436],[123,316,64,0.21375681134191044],[123,316,65,0.2123108372531925],[123,316,66,0.2113628802912882],[123,316,67,0.21092104129482786],[123,316,68,0.21097946992529035],[123,316,69,0.21151613869569477],[123,316,70,0.21249070631295489],[123,316,71,0.21384608671696242],[123,316,72,0.21550532923202065],[123,316,73,0.21736775708004125],[123,316,74,0.21933813625323204],[123,316,75,0.2213410961575094],[123,316,76,0.22331278317988226],[123,316,77,0.2251979207070114],[123,316,78,0.22694687218066611],[123,316,79,0.22851261313526447],[123,317,64,0.21880230982529217],[123,317,65,0.21741454075756378],[123,317,66,0.21650665984065612],[123,317,67,0.21608736674192391],[123,317,68,0.2161518128526988],[123,317,69,0.21667938604208561],[123,317,70,0.2176315829373623],[123,317,71,0.2189536010944581],[123,317,72,0.22057122002064167],[123,317,73,0.2223868670451587],[123,317,74,0.2243081307757382],[123,317,75,0.2262618801020114],[123,317,76,0.2281860653277075],[123,317,77,0.23002679487863037],[123,317,78,0.23173540749909452],[123,317,79,0.23326544790105241],[123,318,64,0.22362574291574466],[123,318,65,0.2222989403951317],[123,318,66,0.2214346387169403],[123,318,67,0.22104204577296274],[123,318,68,0.22111721408687626],[123,318,69,0.22164083884599442],[123,318,70,0.22257614201759054],[123,318,71,0.2238704905085918],[123,318,72,0.22545228176903373],[123,318,73,0.2272269636564484],[123,318,74,0.2291050596669859],[123,318,75,0.2310158421868371],[123,318,76,0.23289916822010664],[123,318,77,0.23470258460792937],[123,318,78,0.23637842226377348],[123,318,79,0.2354683472966121],[123,319,64,0.22820295381183228],[123,319,65,0.22693944859978427],[123,319,66,0.22612183557693336],[123,319,67,0.2257597407430245],[123,319,68,0.22585001676479627],[123,319,69,0.22637455676101056],[123,319,70,0.2272981930744185],[123,319,71,0.2285703441904695],[123,319,72,0.23012190855430834],[123,319,73,0.23186126651842645],[123,319,74,0.23370199657148807],[123,319,75,0.23557595108243956],[123,319,76,0.2374250059883844],[123,319,77,0.23919820646891293],[123,319,78,0.23701775858409774],[123,319,79,0.23053023827699365],[124,-64,64,0.34533770769176386],[124,-64,65,0.35141423522661],[124,-64,66,0.3575921985419326],[124,-64,67,0.3638566651216354],[124,-64,68,0.37020822817546983],[124,-64,69,0.37666005330957303],[124,-64,70,0.3832222052420442],[124,-64,71,0.38990061169789436],[124,-64,72,0.39669650125311773],[124,-64,73,0.4036059686729916],[124,-64,74,0.4106196711863376],[124,-64,75,0.41772265899382466],[124,-64,76,0.42489434314577573],[124,-64,77,0.43210860374517773],[124,-64,78,0.43933404123616243],[124,-64,79,0.4465343733299837],[124,-63,64,0.34809974113829273],[124,-63,65,0.354269788163655],[124,-63,66,0.36054617637632574],[124,-63,67,0.36691405486556905],[124,-63,68,0.37337319913250344],[124,-63,69,0.3799354315784338],[124,-63,70,0.38660951453741044],[124,-63,71,0.3934001436757027],[124,-63,72,0.4003074023223154],[124,-63,73,0.4073263417544563],[124,-63,74,0.41444669076991636],[124,-63,75,0.4216526977353003],[124,-63,76,0.4289231081376786],[124,-63,77,0.4362312804893256],[124,-63,78,0.443545443242241],[124,-63,79,0.4508290951639484],[124,-62,64,0.35104987819445377],[124,-62,65,0.35730571257339677],[124,-62,66,0.36367124606955625],[124,-62,67,0.3701320698204736],[124,-62,68,0.37668710580448367],[124,-62,69,0.38334653045568534],[124,-62,70,0.39011760375660376],[124,-62,71,0.39700369011148745],[124,-62,72,0.4040037186308404],[124,-62,73,0.4111117679026581],[124,-62,74,0.4183167784848225],[124,-62,75,0.42560239621157847],[124,-62,76,0.43294694924764554],[124,-62,77,0.44032356164809394],[124,-62,78,0.44770040599212235],[124,-62,79,0.45504109745710736],[124,-61,64,0.3541719188211056],[124,-61,65,0.3605054760100155],[124,-61,66,0.3669504917242339],[124,-61,67,0.373493327923281],[124,-61,68,0.3801320314294615],[124,-61,69,0.3868748735458573],[124,-61,70,0.39372745014586497],[124,-61,71,0.4006917274822871],[124,-61,72,0.40776549816452434],[124,-61,73,0.41494196023183444],[124,-61,74,0.4222094224716418],[124,-61,75,0.4295511389926099],[124,-61,76,0.43694527590546695],[124,-61,77,0.44436501279218676],[124,-61,78,0.4517787814575423],[124,-61,79,0.45915064425903035],[124,-60,64,0.357445763168816],[124,-60,65,0.3638487125090429],[124,-60,66,0.3703632839181442],[124,-60,67,0.37697689188303435],[124,-60,68,0.38368669685254536],[124,-60,69,0.39049885441785737],[124,-60,70,0.3974171754527081],[124,-60,71,0.4044421938501863],[124,-60,72,0.41157060849455324],[124,-60,73,0.41879484701655617],[124,-60,74,0.42610275440714085],[124,-60,75,0.4334774094281142],[124,-60,76,0.4408970716047934],[124,-60,77,0.4483352614167794],[124,-60,78,0.455760976120159],[124,-60,79,0.4631390434404221],[124,-59,64,0.3608480740948405],[124,-59,65,0.36731189309835843],[124,-59,66,0.37388596150009],[124,-59,67,0.38055896417120927],[124,-59,68,0.38732716868631006],[124,-59,69,0.3941944559276985],[124,-59,70,0.4011627727118865],[124,-59,71,0.4082312180163655],[124,-59,72,0.4153954620988115],[124,-59,73,0.4226472861575817],[124,-59,74,0.4299742455446557],[124,-59,75,0.4373594594092779],[124,-59,76,0.44478152950070177],[124,-59,77,0.4522145906933824],[124,-59,78,0.45962849561914837],[124,-59,79,0.46698913560103594],[124,-58,64,0.3643530817953761],[124,-58,65,0.3708691379259871],[124,-58,66,0.3774926540337947],[124,-58,67,0.3842137211598654],[124,-58,68,0.39102770438553014],[124,-58,69,0.39793610322597783],[124,-58,70,0.4049389622970343],[124,-58,71,0.4120339722059434],[124,-58,72,0.41921585809893114],[124,-58,73,0.42647588756024135],[124,-58,74,0.4338015008188657],[124,-58,75,0.44117606609017945],[124,-58,76,0.4485787627338413],[124,-58,77,0.45598459474836367],[124,-58,78,0.46336453694815866],[124,-58,79,0.47068581598328124],[124,-57,64,0.3679335298030694],[124,-57,65,0.37449316919663733],[124,-57,66,0.3811562440447734],[124,-57,67,0.38791428554350227],[124,-57,68,0.3947617333699917],[124,-57,69,0.40169764959972426],[124,-57,70,0.40872017642254144],[124,-57,71,0.4158256475231864],[124,-57,72,0.4230079397284794],[124,-57,73,0.43025794283793656],[124,-57,74,0.43756315054603384],[124,-57,75,0.44490737523947615],[124,-57,76,0.45227058931123076],[124,-57,77,0.4596288954764252],[124,-57,78,0.4669546284049402],[124,-57,79,0.4742165898042635],[124,-56,64,0.37155869845088085],[124,-56,65,0.3781532728030433],[124,-56,66,0.3848462536663494],[124,-56,67,0.3916305333496715],[124,-56,68,0.39849958421895176],[124,-56,69,0.40545002461687857],[124,-56,70,0.41247813008360856],[124,-56,71,0.4195789507495234],[124,-56,72,0.4267456213292933],[124,-56,73,0.4339687881168114],[124,-56,74,0.44123615584593706],[124,-56,75,0.44853215716152384],[124,-56,76,0.4558377473080002],[124,-56,77,0.4631303264905215],[124,-56,78,0.4703837921978236],[124,-56,79,0.47756872359901187],[124,-55,64,0.3751774902439886],[124,-55,65,0.38179797075606214],[124,-55,66,0.38851099927507793],[124,-55,67,0.39531069538714775],[124,-55,68,0.4021895429217298],[124,-55,69,0.40914178024835096],[124,-55,70,0.41616190547804116],[124,-55,71,0.4232437952102646],[124,-55,72,0.4303799694613483],[124,-55,73,0.43756097241492],[124,-55,74,0.4447748718200299],[124,-55,75,0.45200687974654163],[124,-55,76,0.4592390972745652],[124,-55,77,0.46645038554680684],[124,-55,78,0.47361636545116154],[124,-55,79,0.4807095480282026],[124,-54,64,0.3787357232160962],[124,-54,65,0.3853726427827496],[124,-54,66,0.3920955787942597],[124,-54,67,0.39889972201773244],[124,-54,68,0.4057765842433702],[124,-54,69,0.4127181611042812],[124,-54,70,0.4197173186793788],[124,-54,71,0.4267669089081741],[124,-54,72,0.433858987249708],[124,-54,73,0.4409841450311514],[124,-54,74,0.44813095927622104],[124,-54,75,0.4552855626916803],[124,-54,76,0.46243133636156825],[124,-54,77,0.4695487275550461],[124,-54,78,0.4766151948962842],[124,-54,79,0.48360528297613964],[124,-53,64,0.3821874298004906],[124,-53,65,0.3888310563821958],[124,-53,66,0.39555367451789936],[124,-53,67,0.40235137148497],[124,-53,68,0.40921473673411407],[124,-53,69,0.4161337243495791],[124,-53,70,0.4230997611850914],[124,-53,71,0.4301048543758995],[124,-53,72,0.4371407607484746],[124,-53,73,0.44419826987243816],[124,-53,74,0.45126660351266623],[124,-53,75,0.45833293413149045],[124,-53,76,0.4653820249661112],[124,-53,77,0.47239599406635213],[124,-53,78,0.47935420452412364],[124,-53,79,0.486233282960876],[124,-52,64,0.385495084774477],[124,-52,65,0.39213558692686906],[124,-52,66,0.39884776194193683],[124,-52,67,0.40562840490978275],[124,-52,68,0.4124672614486661],[124,-52,69,0.41935249928427504],[124,-52,70,0.4262743372140435],[124,-52,71,0.433224140409277],[124,-52,72,0.44019354182291226],[124,-52,73,0.4471736763106322],[124,-52,74,0.4541545301938115],[124,-52,75,0.46112440888808204],[124,-52,76,0.46806952509980576],[124,-52,77,0.4749737099560117],[124,-52,78,0.4818182492827772],[124,-52,79,0.48858184708503977],[124,-51,64,0.3883552085650895],[124,-51,65,0.3952574941024683],[124,-51,66,0.4019493726464815],[124,-51,67,0.4087028326259821],[124,-51,68,0.41550687895771937],[124,-51,69,0.4223481920089559],[124,-51,70,0.4292160428875667],[124,-51,71,0.4361013726384448],[124,-51,72,0.4429958671128177],[124,-51,73,0.44989114376940836],[124,-51,74,0.45677805310842545],[124,-51,75,0.4636460973373656],[124,-51,76,0.47048296874877465],[124,-51,77,0.477274210155996],[124,-51,78,0.4840029995849355],[124,-51,79,0.4906500612603671],[124,-50,64,0.3894515167249803],[124,-50,65,0.39731423719442976],[124,-50,66,0.4048394653212855],[124,-50,67,0.41155626732541617],[124,-50,68,0.418316101466512],[124,-50,69,0.4251044932404755],[124,-50,70,0.4319100464594196],[124,-50,71,0.43872350300249174],[124,-50,72,0.4455367738014909],[124,-50,73,0.452342081148032],[124,-50,74,0.4591312149968322],[124,-50,75,0.4658949058396248],[124,-50,76,0.4726223166072633],[124,-50,77,0.4793006559253636],[124,-50,78,0.4859149149027051],[124,-50,79,0.49244772947390825],[124,-49,64,0.39062480018908297],[124,-49,65,0.39848695951132806],[124,-49,66,0.40635000728222864],[124,-49,67,0.4141763721091837],[124,-49,68,0.42088427200111594],[124,-49,69,0.4276127230483022],[124,-49,70,0.4343499410893549],[124,-49,71,0.4410866802335973],[124,-49,72,0.447815224475076],[124,-49,73,0.4545284901318229],[124,-49,74,0.4612192417568164],[124,-49,75,0.46787942406813504],[124,-49,76,0.47449961233002336],[124,-49,77,0.4810685834855606],[124,-49,78,0.4875730101967037],[124,-49,79,0.49399727979097763],[124,-48,64,0.39189102410037635],[124,-48,65,0.3997447976079456],[124,-48,66,0.4076086959777409],[124,-48,67,0.41546662551276986],[124,-48,68,0.42319684230245297],[124,-48,69,0.4298626278180209],[124,-48,70,0.43653005145957957],[124,-48,71,0.4431900237897063],[124,-48,72,0.44983527304302456],[124,-48,73,0.4564594162728704],[124,-48,74,0.46305614320672633],[124,-48,75,0.46961851531956034],[124,-48,76,0.4761383825191854],[124,-48,77,0.48260591970761846],[124,-48,78,0.4890092853384976],[124,-48,79,0.4953344039352182],[124,-47,64,0.39326172120056124],[124,-47,65,0.40109655671415906],[124,-47,66,0.40894959496866384],[124,-47,67,0.41680531078271654],[124,-47,68,0.4246564627398963],[124,-47,69,0.43184827536132653],[124,-47,70,0.4384487523781368],[124,-47,71,0.44503635676740116],[124,-47,72,0.45160425446952823],[124,-47,73,0.4581466894021047],[124,-47,74,0.4646581468984886],[124,-47,75,0.47113263094352725],[124,-47,76,0.4775630575436505],[124,-47,77,0.4839407664395043],[124,-47,78,0.4902551532266753],[124,-47,79,0.496493423796196],[124,-46,64,0.39473921433200587],[124,-46,65,0.4025423834316076],[124,-46,66,0.41037040411605086],[124,-46,67,0.4182085571768609],[124,-46,68,0.4260500830357621],[124,-46,69,0.4335698199718758],[124,-46,70,0.4401095613200121],[124,-46,71,0.4466326332051609],[124,-46,72,0.4531325681483729],[124,-46,73,0.45960409803794194],[124,-46,74,0.4660423112243374],[124,-46,75,0.4724419210751473],[124,-46,76,0.4787966482462286],[124,-46,77,0.48509871879779476],[124,-46,78,0.491338480143641],[124,-46,79,0.4975041366702668],[124,-45,64,0.3963176373617131],[124,-45,65,0.4040747484994022],[124,-45,66,0.41186174443242296],[124,-45,67,0.4196649470931783],[124,-45,68,0.42747806681364],[124,-45,69,0.4350327702799384],[124,-45,70,0.4415204775498482],[124,-45,71,0.44798935364846343],[124,-45,72,0.45443317397120536],[124,-45,73,0.46084696873895314],[124,-45,74,0.4672261894529167],[124,-45,75,0.47356598332736777],[124,-45,76,0.4798605778484766],[124,-45,77,0.48610277748264025],[124,-45,78,0.49228357442037496],[124,-45,79,0.4983918750941514],[124,-44,64,0.3979839326373314],[124,-44,65,0.4056794073095825],[124,-44,66,0.4134080751243612],[124,-44,67,0.4211575260254044],[124,-44,68,0.42892195266069344],[124,-44,69,0.4362472728240666],[124,-44,70,0.4426933356360383],[124,-44,71,0.44911999401722125],[124,-44,72,0.4555211009328518],[124,-44,73,0.4618917576227707],[124,-44,74,0.46822750600947355],[124,-44,75,0.47452362429169087],[124,-44,76,0.48077452773615514],[124,-44,77,0.48697327655925843],[124,-44,78,0.49311119265768893],[124,-44,79,0.49917758680482105],[124,-43,64,0.3997188279599822],[124,-43,65,0.4073363410271206],[124,-43,66,0.41498859229765017],[124,-43,67,0.4226646523407533],[124,-43,68,0.4303592309373557],[124,-43,69,0.4372274091500271],[124,-43,70,0.4436431713625814],[124,-43,71,0.4500404459838987],[124,-43,72,0.4564129666855138],[124,-43,73,0.46275565266346425],[124,-43,74,0.46906384380508187],[124,-43,75,0.47533263283278687],[124,-43,76,0.48155629627520474],[124,-43,77,0.4877278260004597],[124,-43,78,0.49383856292032413],[124,-43,79,0.4998779343388817],[124,-42,64,0.4014977960593252],[124,-42,65,0.40902068117201923],[124,-42,66,0.41657811203854633],[124,-42,67,0.42416083245203834],[124,-42,68,0.4315856578100088],[124,-42,69,0.43799050424598385],[124,-42,70,0.4443875980475945],[124,-42,71,0.45076846707903184],[124,-42,72,0.45712650647018715],[124,-42,73,0.46345618540666267],[124,-42,74,0.4697523414598006],[124,-42,75,0.4760095642176863],[124,-42,76,0.48222166988061843],[124,-42,77,0.4883812683763486],[124,-42,78,0.49447942443264264],[124,-42,79,0.50050541391904],[124,-41,64,0.40329199954767425],[124,-41,65,0.41070362051489834],[124,-41,66,0.4181479405798337],[124,-41,67,0.42561754393389095],[124,-41,68,0.4321627063913772],[124,-41,69,0.43855644412925743],[124,-41,70,0.44494619128687],[124,-41,71,0.4513231387555525],[124,-41,72,0.4576801098757706],[124,-41,73,0.464010850773615],[124,-41,74,0.4703093993087305],[124,-41,75,0.4765695341787349],[124,-41,76,0.48278430563564134],[124,-41,77,0.4889456491708856],[124,-41,78,0.4950440834183034],[124,-41,79,0.5010684934103005],[124,-40,64,0.40506922431133224],[124,-40,65,0.4123533131215928],[124,-40,66,0.41966673424607115],[124,-40,67,0.42617534546463376],[124,-40,68,0.4325550319714092],[124,-40,69,0.4389470004131338],[124,-40,70,0.4453398801564457],[124,-40,71,0.45172433066331125],[124,-40,72,0.4580923639029244],[124,-40,73,0.46443673366088906],[124,-40,74,0.4707503931267023],[124,-40,75,0.47702602206978967],[124,-40,76,0.48325562483471035],[124,-40,77,0.4894302002985833],[124,-40,78,0.49553948483921356],[124,-40,79,0.5015717692621134],[124,-39,64,0.4067948042689656],[124,-39,65,0.4137585124357538],[124,-39,66,0.42005882178424675],[124,-39,67,0.4264066318798453],[124,-39,68,0.4327866984190829],[124,-39,69,0.4391851597033025],[124,-39,70,0.4455903429310295],[124,-39,71,0.4519921694117313],[124,-39,72,0.45838160084207286],[124,-39,73,0.464750141082802],[124,-39,74,0.47108939455807036],[124,-39,75,0.4773906823385068],[124,-39,76,0.48364471690167526],[124,-39,77,0.4898413364894749],[124,-39,78,0.49596929990234445],[124,-39,79,0.5020161424858757],[124,-38,64,0.4076334850219874],[124,-38,65,0.4138566121047189],[124,-38,66,0.42014895709743266],[124,-38,67,0.42649627054968675],[124,-38,68,0.4328826914358545],[124,-38,69,0.4392944557021628],[124,-38,70,0.4457194054048045],[124,-38,71,0.4521465101310455],[124,-38,72,0.45856544951235506],[124,-38,73,0.4649662386481666],[124,-38,74,0.4713388972919384],[124,-38,75,0.47767316360299633],[124,-38,76,0.48395825321399116],[124,-38,77,0.49018266430533525],[124,-38,78,0.49633402931530374],[124,-38,79,0.5023990138484106],[124,-37,64,0.4003731904398504],[124,-37,65,0.4086873926559447],[124,-37,66,0.41839917605503396],[124,-37,67,0.421253955013261],[124,-37,68,0.4240793798931233],[124,-37,69,0.43929830193555097],[124,-37,70,0.44574843993769625],[124,-37,71,0.4522064091811019],[124,-37,72,0.4586603884508001],[124,-37,73,0.46509869021148625],[124,-37,74,0.47150954807994344],[124,-37,75,0.47788093468838716],[124,-37,76,0.4842004104434293],[124,-37,77,0.4904550036445493],[124,-37,78,0.4840057769411919],[124,-37,79,0.46644659440989844],[124,-36,64,0.3760721987898157],[124,-36,65,0.3842732907855902],[124,-36,66,0.3930412438468909],[124,-36,67,0.3918850849473328],[124,-36,68,0.3939160424834283],[124,-36,69,0.4112427454047843],[124,-36,70,0.4258095569037571],[124,-36,71,0.43433484363630726],[124,-36,72,0.44530178543768184],[124,-36,73,0.4551220144720495],[124,-36,74,0.4637293100297095],[124,-36,75,0.47076834118969474],[124,-36,76,0.4709537945388218],[124,-36,77,0.4602423523096934],[124,-36,78,0.449286165204736],[124,-36,79,0.4313930287246978],[124,-35,64,0.3649412004251936],[124,-35,65,0.3682140944731733],[124,-35,66,0.37256509715474895],[124,-35,67,0.3696667846098692],[124,-35,68,0.3752857078746686],[124,-35,69,0.39540113244269576],[124,-35,70,0.40717850923786664],[124,-35,71,0.4168502229527036],[124,-35,72,0.42912452319763233],[124,-35,73,0.43416460420580066],[124,-35,74,0.4443039943671839],[124,-35,75,0.4500278903147056],[124,-35,76,0.44574079276720036],[124,-35,77,0.435234282835272],[124,-35,78,0.4251092699574672],[124,-35,79,0.41107050658905203],[124,-34,64,0.36188103377300684],[124,-34,65,0.3640763744802481],[124,-34,66,0.36452319805327105],[124,-34,67,0.36410102226392077],[124,-34,68,0.3731514357492205],[124,-34,69,0.389823171632611],[124,-34,70,0.3970120381838791],[124,-34,71,0.4062057877999721],[124,-34,72,0.4195130854311001],[124,-34,73,0.4218059693182358],[124,-34,74,0.43393981777135376],[124,-34,75,0.434132825243274],[124,-34,76,0.4238624839753895],[124,-34,77,0.42198214065668],[124,-34,78,0.41721782907069865],[124,-34,79,0.40788536560807587],[124,-33,64,0.36359275606002844],[124,-33,65,0.37082063002067195],[124,-33,66,0.37185115250630235],[124,-33,67,0.3728953922030346],[124,-33,68,0.3811162640943071],[124,-33,69,0.3903760775742861],[124,-33,70,0.39512444418419723],[124,-33,71,0.40077569965504306],[124,-33,72,0.41458317060202765],[124,-33,73,0.4254683190965302],[124,-33,74,0.4375349848510944],[124,-33,75,0.43269813786704187],[124,-33,76,0.41929473117943067],[124,-33,77,0.4184004492505165],[124,-33,78,0.41513626018334854],[124,-33,79,0.4057096658891685],[124,-32,64,0.37161987713508443],[124,-32,65,0.3787980181461128],[124,-32,66,0.3812704108971096],[124,-32,67,0.38808878820683673],[124,-32,68,0.3925616373982926],[124,-32,69,0.40013835155352123],[124,-32,70,0.4043716704917264],[124,-32,71,0.402922589700469],[124,-32,72,0.41706956737871925],[124,-32,73,0.43489618814109654],[124,-32,74,0.4415590966369726],[124,-32,75,0.4402011438410192],[124,-32,76,0.4266394315484743],[124,-32,77,0.420792896914637],[124,-32,78,0.4135569698608069],[124,-32,79,0.4032893946588915],[124,-31,64,0.38350383693335993],[124,-31,65,0.38295416267651106],[124,-31,66,0.38597720181285733],[124,-31,67,0.39971209591973555],[124,-31,68,0.401405529689889],[124,-31,69,0.41083588529711923],[124,-31,70,0.41708866434023495],[124,-31,71,0.41839980199627197],[124,-31,72,0.4327912775670269],[124,-31,73,0.44341668016407465],[124,-31,74,0.44315746492941865],[124,-31,75,0.4505894551394192],[124,-31,76,0.43682280910065213],[124,-31,77,0.4230785148116605],[124,-31,78,0.4112757071056414],[124,-31,79,0.40139942450755706],[124,-30,64,0.39722146082050336],[124,-30,65,0.39590407089085],[124,-30,66,0.4000316726936625],[124,-30,67,0.4143801539820885],[124,-30,68,0.41524818568758903],[124,-30,69,0.4214764835268259],[124,-30,70,0.42827692640760484],[124,-30,71,0.4367963344678419],[124,-30,72,0.45098778224841995],[124,-30,73,0.45713381893615246],[124,-30,74,0.45600674069286257],[124,-30,75,0.4615527415533359],[124,-30,76,0.44486367999147786],[124,-30,77,0.4294407992877353],[124,-30,78,0.41744248650779353],[124,-30,79,0.4083006674536055],[124,-29,64,0.4063939713255225],[124,-29,65,0.4124036459584898],[124,-29,66,0.4178703463454857],[124,-29,67,0.4248729280029717],[124,-29,68,0.4289782490170588],[124,-29,69,0.437023201123496],[124,-29,70,0.4442469123846357],[124,-29,71,0.44933104987161543],[124,-29,72,0.4544342251258297],[124,-29,73,0.4595629057254418],[124,-29,74,0.46472172019460084],[124,-29,75,0.4699130078065838],[124,-29,76,0.4556556411745615],[124,-29,77,0.44133917934158357],[124,-29,78,0.4294340887517727],[124,-29,79,0.4176088284197548],[124,-28,64,0.40637345192258423],[124,-28,65,0.4123281367904036],[124,-28,66,0.4184474550820505],[124,-28,67,0.4247044905219339],[124,-28,68,0.4310712045997329],[124,-28,69,0.4371793678987164],[124,-28,70,0.44204250959093244],[124,-28,71,0.4469253758838254],[124,-28,72,0.4518382026451898],[124,-28,73,0.4567896694147784],[124,-28,74,0.46178628989060283],[124,-28,75,0.4668319086070308],[124,-28,76,0.46801863381066927],[124,-28,77,0.45530927536728233],[124,-28,78,0.4419462681753093],[124,-28,79,0.42558818808977233],[124,-27,64,0.4063947566547329],[124,-27,65,0.4122832882438841],[124,-27,66,0.4183407673166228],[124,-27,67,0.42454002293056636],[124,-27,68,0.4302510329492901],[124,-27,69,0.4349002827331434],[124,-27,70,0.4395654238709798],[124,-27,71,0.44426010428560697],[124,-27,72,0.4489968780805774],[124,-27,73,0.4537864268994593],[124,-27,74,0.4586368988184317],[124,-27,75,0.4635533659405293],[124,-27,76,0.4685374016724839],[124,-27,77,0.4652478016771975],[124,-27,78,0.4515384291224256],[124,-27,79,0.4341425874952073],[124,-26,64,0.40644005851687154],[124,-26,65,0.41225020287839076],[124,-26,66,0.4182320527447303],[124,-26,67,0.42346023414022294],[124,-26,68,0.4279084508701784],[124,-26,69,0.43236460451097053],[124,-26,70,0.4368452143874664],[124,-26,71,0.4413663464069407],[124,-26,72,0.4459426597668145],[124,-26,73,0.45058658094390525],[124,-26,74,0.4553076063473279],[124,-26,75,0.46011173481606393],[124,-26,76,0.46500103093382095],[124,-26,77,0.4699733199202571],[124,-26,78,0.46355382924461563],[124,-26,79,0.44200010812621005],[124,-25,64,0.40648130607864885],[124,-25,65,0.41219995143606386],[124,-25,66,0.4168062821678425],[124,-25,67,0.42107148410768647],[124,-25,68,0.4253330370351625],[124,-25,69,0.42960969128369336],[124,-25,70,0.43392046647568394],[124,-25,71,0.43828361384037334],[124,-25,72,0.4427156220322288],[124,-25,73,0.44723035988833854],[124,-25,74,0.451838357509558],[124,-25,75,0.4565462268296803],[124,-25,76,0.46135622260938647],[124,-25,77,0.4662659445594683],[124,-25,78,0.4712681810635094],[124,-25,79,0.4476937347177369],[124,-24,64,0.4061414653728076],[124,-24,65,0.4102849310698592],[124,-24,66,0.4143907157137097],[124,-24,67,0.4184764384384418],[124,-24,68,0.4225642688171931],[124,-24,69,0.42667551992614455],[124,-24,70,0.4308314717348284],[124,-24,71,0.435052277948571],[124,-24,72,0.439355947032821],[124,-24,73,0.4437574683904422],[124,-24,74,0.44826808505172044],[124,-24,75,0.45289471399890135],[124,-24,76,0.4576395150025031],[124,-24,77,0.46249960859790806],[124,-24,78,0.46746694358070395],[124,-24,79,0.45377665081410223],[124,-23,64,0.4038941582040233],[124,-23,65,0.4078588442857544],[124,-23,66,0.41179081902317677],[124,-23,67,0.41570813390194267],[124,-23,68,0.4196346161884261],[124,-23,69,0.42359394452982085],[124,-23,70,0.4276094143372044],[124,-23,71,0.43170280398797567],[124,-23,72,0.43589334493438825],[124,-23,73,0.4401968438942833],[124,-23,74,0.444624958435616],[124,-23,75,0.44918462701277123],[124,-23,76,0.4538776542529808],[124,-23,77,0.45870045202799287],[124,-23,78,0.46364393658253633],[124,-23,79,0.458437111464385],[124,-22,64,0.4014772699247645],[124,-22,65,0.4052704412254119],[124,-22,66,0.4090373313123492],[124,-22,67,0.41279635337329745],[124,-22,68,0.4165728268847378],[124,-22,69,0.4203925909804531],[124,-22,70,0.42428071677306267],[124,-22,71,0.4282603449233076],[124,-22,72,0.4323516561642474],[124,-22,73,0.43657099974930397],[124,-22,74,0.44093018106899456],[124,-22,75,0.4454359094135392],[124,-22,76,0.45008940658544305],[124,-22,77,0.45488617679037235],[124,-22,78,0.45981593795936276],[124,-22,79,0.45920642223052033],[124,-21,64,0.3989222390505697],[124,-21,65,0.4025499867819819],[124,-21,66,0.40615925029442124],[124,-21,67,0.40976871105556245],[124,-21,68,0.4134049973059706],[124,-21,69,0.4170959018227423],[124,-21,70,0.4208680443828949],[124,-21,71,0.42474568951569885],[124,-21,72,0.4287497258420373],[124,-21,73,0.4328968083265307],[124,-21,74,0.43719866460660517],[124,-21,75,0.4416615662822873],[124,-21,76,0.4462859657654195],[124,-21,77,0.4510662990000601],[124,-21,78,0.45599095408039575],[124,-21,79,0.4610424055109747],[124,-20,64,0.3962603324073091],[124,-20,65,0.39972721313717346],[124,-20,66,0.403184607779835],[124,-20,67,0.40665135411491843],[124,-20,68,0.4101551954064938],[124,-20,69,0.4137256776402953],[124,-20,70,0.41739076461816726],[124,-20,71,0.42117564105034466],[124,-20,72,0.42510170570725125],[124,-20,73,0.4291857319030168],[124,-20,74,0.43343919638516926],[124,-20,75,0.437867777412741],[124,-20,76,0.44247102250891607],[124,-20,77,0.4472421860772833],[124,-20,78,0.4521682367762231],[124,-20,79,0.45723003425643083],[124,-19,64,0.3935235417431837],[124,-19,65,0.3968321524839823],[124,-19,66,0.4001412321449843],[124,-19,67,0.40346964873443286],[124,-19,68,0.4068460653619905],[124,-19,69,0.4103015972899341],[124,-19,70,0.41386538189406613],[124,-19,71,0.41756336801576655],[124,-19,72,0.42141732396280307],[124,-19,73,0.4254440170319641],[124,-19,74,0.4296545655342325],[124,-19,75,0.43405396399958823],[124,-19,76,0.4386407819317956],[124,-19,77,0.4434070361767822],[124,-19,78,0.44833823666503303],[124,-19,79,0.45341360499135513],[124,-18,64,0.39074189642682383],[124,-18,65,0.39389222477718266],[124,-18,66,0.3970536026735451],[124,-18,67,0.40024479278439246],[124,-18,68,0.4034951914791807],[124,-18,69,0.40683732788627947],[124,-18,70,0.4103013906288808],[124,-18,71,0.4139139994284228],[124,-18,72,0.41769722437881784],[124,-18,73,0.4216677811139354],[124,-18,74,0.425836402756604],[124,-18,75,0.43020738922203844],[124,-18,76,0.4347783341309543],[124,-18,77,0.4395400292708924],[124,-18,78,0.44447654623214333],[124,-18,79,0.4495654945397619],[124,-17,64,0.38792773280909987],[124,-17,65,0.39091733774845777],[124,-17,66,0.39392895931917443],[124,-17,67,0.3969811170389159],[124,-17,68,0.40010376320643143],[124,-17,69,0.40333070694866424],[124,-17,70,0.4066931011073407],[124,-17,71,0.41021818854039654],[124,-17,72,0.4139283257476528],[124,-17,73,0.41784018725336963],[124,-17,74,0.4219641515462356],[124,-17,75,0.4263038690493837],[124,-17,76,0.4308560122636016],[124,-17,77,0.43561020789925853],[124,-17,78,0.4405491504905136],[124,-17,79,0.4456488966717332],[124,-16,64,0.3850498430341311],[124,-16,65,0.387877642764028],[124,-16,66,0.3907391915912643],[124,-16,67,0.393652635389461],[124,-16,68,0.3966482809166349],[124,-16,69,0.3997610349768343],[124,-16,70,0.4030228646754596],[124,-16,71,0.4064615150887894],[124,-16,72,0.4100995340961963],[124,-16,73,0.4139534829943593],[124,-16,74,0.41803333360707295],[124,-16,75,0.4223420522633615],[124,-16,76,0.42687537067507403],[124,-16,77,0.43162174340628906],[124,-16,78,0.4365624912947623],[124,-16,79,0.44167212986299764],[124,-15,64,0.382076387847315],[124,-15,65,0.38474326870327624],[124,-15,66,0.38745677022921904],[124,-15,67,0.39023453609852105],[124,-15,68,0.3931069954824486],[124,-15,69,0.3961099131666779],[124,-15,70,0.3992758470165757],[124,-15,71,0.4026328388837425],[124,-15,72,0.40620344213140464],[124,-15,73,0.41000393968094584],[124,-15,74,0.41404375320268755],[124,-15,75,0.41832504372069634],[124,-15,76,0.42284250354824165],[124,-15,77,0.42758333912100954],[124,-15,78,0.4325274439534614],[124,-15,79,0.4376477606126155],[124,-14,64,0.37898601234423335],[124,-14,65,0.3814943872564764],[124,-14,66,0.3840635896985932],[124,-14,67,0.3867106278858926],[124,-14,68,0.38946579542833837],[124,-14,69,0.3923654301220497],[124,-14,70,0.3954424013232811],[124,-14,71,0.3987247800160633],[124,-14,72,0.40223487406688213],[124,-14,73,0.405988458067574],[124,-14,74,0.4099941982929472],[124,-14,75,0.4142532729350683],[124,-14,76,0.418759187412614],[124,-14,77,0.42349778419474476],[124,-14,78,0.4284474462289058],[124,-14,79,0.4335794927236508],[124,-13,64,0.22351801110489036],[124,-13,65,0.2667524142416729],[124,-13,66,0.31426115256631637],[124,-13,67,0.36598301993390875],[124,-13,68,0.3857165391213933],[124,-13,69,0.388520660546845],[124,-13,70,0.39151676343347613],[124,-13,71,0.3947326384651184],[124,-13,72,0.39819005498651144],[124,-13,73,0.4019040092798372],[124,-13,74,0.4058821709217273],[124,-13,75,0.410124527269411],[124,-13,76,0.4146232257526457],[124,-13,77,0.4193626132815971],[124,-13,78,0.42431947172435414],[124,-13,79,0.429463448064132],[124,-12,64,0.111744232620553],[124,-12,65,0.13907619010237104],[124,-12,66,0.17003299744936165],[124,-12,67,0.20462420237691073],[124,-12,68,0.24284169634293115],[124,-12,69,0.2846562646795912],[124,-12,70,0.33000936874141296],[124,-12,71,0.3788149168152267],[124,-12,72,0.39406587635495877],[124,-12,73,0.3977471525517317],[124,-12,74,0.4017036731311096],[124,-12,75,0.4059340178036773],[124,-12,76,0.4104288021632563],[124,-12,77,0.4151707497199025],[124,-12,78,0.42013496119292415],[124,-12,79,0.42528937953776036],[124,-11,64,0.04513684117544228],[124,-11,65,0.06011290751055992],[124,-11,66,0.07798410052400837],[124,-11,67,0.09883055915999696],[124,-11,68,0.12271272659059738],[124,-11,69,0.14966823153926095],[124,-11,70,0.1797026917927093],[124,-11,71,0.21279136211010363],[124,-11,72,0.2488812166747789],[124,-11,73,0.2878932089584115],[124,-11,74,0.3297246945614163],[124,-11,75,0.37425200309855344],[124,-11,76,0.40616684341678877],[124,-11,77,0.4109111338293753],[124,-11,78,0.41588071364961426],[124,-11,79,0.4210418184251977],[124,-10,64,0.011947596582267139],[124,-10,65,0.018114700952637335],[124,-10,66,0.02636671837653728],[124,-10,67,0.03685420613951408],[124,-10,68,0.04970596393221274],[124,-10,69,0.06502632070123512],[124,-10,70,0.08288501130306129],[124,-10,71,0.103318717124048],[124,-10,72,0.12633306917879916],[124,-10,73,0.1519048341181472],[124,-10,74,0.1799842687530556],[124,-10,75,0.21049762916220585],[124,-10,76,0.24334982101736805],[124,-10,77,0.2784271784260942],[124,-10,78,0.3156003593748636],[124,-10,79,0.35472734674155054],[124,-9,64,0.0015969989529732618],[124,-9,65,0.0037709056855446685],[124,-9,66,0.00591786929794908],[124,-9,67,0.008049767124057172],[124,-9,68,0.012073226142339952],[124,-9,69,0.018981258576986088],[124,-9,70,0.02780568530641779],[124,-9,71,0.03864471539555172],[124,-9,72,0.05156287434142306],[124,-9,73,0.06659312800297235],[124,-9,74,0.08373917888794323],[124,-9,75,0.10297792086446664],[124,-9,76,0.12426203889118095],[124,-9,77,0.147522740985387],[124,-9,78,0.17267261038502016],[124,-9,79,0.1996085666975074],[124,-8,64,-0.0011636757233041454],[124,-8,65,2.468431452233048E-4],[124,-8,66,0.002394657465858195],[124,-8,67,0.0045473143482165435],[124,-8,68,0.006729582131305318],[124,-8,69,0.00897657564160025],[124,-8,70,0.011319315491447036],[124,-8,71,0.013783459086592339],[124,-8,72,0.016388531015394708],[124,-8,73,0.02019960380978138],[124,-8,74,0.029228467507539165],[124,-8,75,0.03992935405086033],[124,-8,76,0.05230365508449774],[124,-8,77,0.06632855874800092],[124,-8,78,0.08195986118909876],[124,-8,79,0.09913488879432837],[124,-7,64,-0.004579706029522546],[124,-7,65,-0.003244552745638211],[124,-7,66,-0.0010930785560520403],[124,-7,67,0.001082864134680252],[124,-7,68,0.0033058220501096013],[124,-7,69,0.005609089858965677],[124,-7,70,0.008021618584013538],[124,-7,71,0.010566809974152772],[124,-7,72,0.013261824437851632],[124,-7,73,0.01611707410014147],[124,-7,74,0.019135900680872925],[124,-7,75,0.02231443752520948],[124,-7,76,0.025641654757811348],[124,-7,77,0.029099586184631654],[124,-7,78,0.03266373623220412],[124,-7,79,0.041530353475430326],[124,-6,64,-0.0088116836197434],[124,-6,65,-0.006691980034532123],[124,-6,66,-0.0045348829667363234],[124,-6,67,-0.0023343438982894207],[124,-6,68,-7.024534489137764E-5],[124,-6,69,0.002288658828290895],[124,-6,70,0.004769037536962499],[124,-6,71,0.007391851040517813],[124,-6,72,0.010171744921922741],[124,-6,73,0.013116620964623495],[124,-6,74,0.016227384505047213],[124,-6,75,0.019497867486588695],[124,-6,76,0.02291492609616842],[124,-6,77,0.026458711532161033],[124,-6,78,0.030103112134124872],[124,-6,79,0.033816364805736215],[124,-5,64,-0.012192310734984103],[124,-5,65,-0.010086222288814799],[124,-5,66,-0.007922481288121891],[124,-5,67,-0.005697331084386824],[124,-5,68,-0.0033932528921395465],[124,-5,69,-9.812291485555517E-4],[124,-5,70,0.0015629661098320053],[124,-5,71,0.00425771939405205],[124,-5,72,0.00711506500686762],[124,-5,73,0.010140339354300669],[124,-5,74,0.013332001790599152],[124,-5,75,0.016681621127751338],[124,-5,76,0.020174026614086918],[124,-5,77,0.023787621872855946],[124,-5,78,0.027494859992181986],[124,-5,79,0.03126287767772362],[124,-4,64,-0.0155142065717199],[124,-4,65,-0.013420536688953539],[124,-4,66,-0.011250131536358596],[124,-4,67,-0.009001680834454169],[124,-4,68,-0.00666039062450449],[124,-4,69,-0.00419959819802773],[124,-4,70,-0.001597625103320391],[124,-4,71,0.0011612663292381057],[124,-4,72,0.004086459274798014],[124,-4,73,0.007180724475632418],[124,-4,74,0.010440117438941326],[124,-4,75,0.013854029819223096],[124,-4,76,0.017405393728532732],[124,-4,77,0.02107103742607433],[124,-4,78,0.024822190560901874],[124,-4,79,0.028625136883143457],[124,-3,64,-0.018772571926188933],[124,-3,65,-0.016690848579788753],[124,-3,66,-0.014514786724731017],[124,-3,67,-0.012245657878170203],[124,-3,68,-0.00987147182733614],[124,-3,69,-0.00736798949042223],[124,-3,70,-0.004716125343835401],[124,-3,71,-0.0019028066950264387],[124,-3,72,0.0010787158760933893],[124,-3,73,0.004228701270129989],[124,-3,74,0.007540893084188368],[124,-3,75,0.011002636269813409],[124,-3,76,0.014595133931289712],[124,-3,77,0.018293842695417104],[124,-3,78,0.02206900483063735],[124,-3,79,0.025886315059132407],[124,-2,64,-0.02196522676246713],[124,-2,65,-0.01989574801752864],[124,-2,66,-0.017716064383717357],[124,-2,67,-0.01543014149384405],[124,-2,68,-0.013028822259324013],[124,-2,69,-0.010490300583868472],[124,-2,70,-0.007798069122111991],[124,-2,71,-0.0049416773251227805],[124,-2,72,-0.0019169360169964851],[124,-2,73,0.0012740075692127101],[124,-2,74,0.004622723482679049],[124,-2,75,0.008114680396827167],[124,-2,76,0.011729553272399856],[124,-2,77,0.015441655771466339],[124,-2,78,0.01922049562568126],[124,-2,79,0.023031450953937636],[124,-1,64,-0.02509241786107655],[124,-1,65,-0.023036283701239328],[124,-1,66,-0.020856018638041554],[124,-1,67,-0.018558368460257154],[124,-1,68,-0.016136988510191037],[124,-1,69,-0.013572455758480803],[124,-1,70,-0.0108507670112757],[124,-1,71,-0.00796399380552354],[124,-1,72,-0.004910380222560914],[124,-1,73,-0.001694325645898247],[124,-1,74,0.0016737466533774132],[124,-1,75,0.005177633986557054],[124,-1,76,0.008795710431213168],[124,-1,77,0.0125013931762078],[124,-1,78,0.016263717276770853],[124,-1,79,0.020048016888079362],[124,0,64,-0.028156415604268507],[124,0,65,-0.02611554961052014],[124,0,66,-0.023938710314450586],[124,0,67,-0.02163548140327932],[124,0,68,-0.01920226141681404],[124,0,69,-0.01662190356241755],[124,0,70,-0.013882778373204476],[124,0,71,-0.010979325665317305],[124,0,72,-0.007912046439042307],[124,0,73,-0.004687394769928856],[124,0,74,-0.001317570630524016],[124,0,75,0.0021797852138519046],[124,0,76,0.005781992898128242],[124,0,77,0.009461830220964548],[124,0,78,0.01318812279174823],[124,0,79,0.01692642572230898],[124,1,64,-0.031160897307238068],[124,1,65,-0.02913806244908098],[124,1,66,-0.02696957367439921],[124,1,67,-0.024667881448190643],[124,1,68,-0.02223201358869772],[124,1,69,-0.019646940566732052],[124,1,70,-0.016903224752711263],[124,1,71,-0.013997471858193517],[124,1,72,-0.010932219579133673],[124,1,73,-0.007715741542406525],[124,1,74,-0.0043617675406689305],[124,1,75,-8.891212116308366E-4],[124,1,76,0.0026787235200166236],[124,1,77,0.006314165769617921],[124,1,78,0.009986079181735857],[124,1,79,0.01366048985199834],[124,2,64,-0.010469051159935953],[124,2,65,-0.016592948505174555],[124,2,66,-0.024317771633463083],[124,2,67,-0.027662384729126566],[124,2,68,-0.02523385010155877],[124,2,69,-0.022655859400820027],[124,2,70,-0.019920940523497074],[124,2,71,-0.017027620957173983],[124,2,72,-0.013980217692417477],[124,2,73,-0.010788557705755809],[124,2,74,-0.0074676300307341134],[124,2,75,-0.004037170572941509],[124,2,76,-5.211809552967701E-4],[124,2,77,0.00305261720111436],[124,2,78,0.0066533910472050765],[124,2,79,0.010247866719898566],[124,3,64,-0.0019241113835289083],[124,3,65,-0.003484528129332188],[124,3,66,-0.005753206738351312],[124,3,67,-0.008956426491367402],[124,3,68,-0.013268480157846752],[124,3,69,-0.018813431061666722],[124,3,70,-0.02294343395588141],[124,3,71,-0.020077347561480954],[124,3,72,-0.01706343669827369],[124,3,73,-0.013912791599808773],[124,3,74,-0.010641372856974774],[124,3,75,-0.007269548704909632],[124,3,76,-0.0038215811999360713],[124,3,77,-3.250626181461949E-4],[124,3,78,0.003189696514140394],[124,3,79,0.006690326282375031],[124,4,64,-0.0010293135117642885],[124,4,65,-0.001500205271542137],[124,4,66,-0.001708087243612866],[124,4,67,-0.001952265628832646],[124,4,68,-0.0024775563059850065],[124,4,69,-0.003475926167544046],[124,4,70,-0.005110636146578615],[124,4,71,-0.007518994795078799],[124,4,72,-0.0108145483522966],[124,4,73,-0.01508922626708208],[124,4,74,-0.013885750427099254],[124,4,75,-0.010587765944828834],[124,4,76,-0.007222465251628918],[124,4,77,-0.0038170724920404842],[124,4,78,-4.011663340367337E-4],[124,4,79,0.0029939641268815972],[124,5,64,0.003892996490836779],[124,5,65,0.0010368304456097918],[124,5,66,-5.062532003233016E-4],[124,5,67,-0.0011085331811983522],[124,5,68,-0.0010852472026972647],[124,5,69,-6.961988311394727E-4],[124,5,70,-1.7049689911664948E-4],[124,5,71,2.9087953673372975E-4],[124,5,72,5.130789182024389E-4],[124,5,73,3.453994665201612E-4],[124,5,74,-3.406514087618568E-4],[124,5,75,-0.0016532487637373047],[124,5,76,-0.0036820818707553214],[124,5,77,-0.006500116019106399],[124,5,78,-0.004110811926289872],[124,5,79,-8.306300553439176E-4],[124,6,64,0.024525460192470868],[124,6,65,0.01580833251218192],[124,6,66,0.009533412548377529],[124,6,67,0.005255502811253856],[124,6,68,0.0025890260804844576],[124,6,69,0.0012063942362352798],[124,6,70,8.126366473125435E-4],[124,6,71,0.001143006267266898],[124,6,72,0.001961149180819679],[124,6,73,0.003057280096570938],[124,6,74,0.0042463762077157175],[124,6,75,0.005366401148177131],[124,6,76,0.006276569997418256],[124,6,77,0.006855665438070126],[124,6,78,0.007000414252318135],[124,6,79,0.006623932361368062],[124,7,64,0.0725602862166015],[124,7,65,0.054505824862297485],[124,7,66,0.04010200492438355],[124,7,67,0.02883078022335518],[124,7,68,0.02023629473897301],[124,7,69,0.013923195464056426],[124,7,70,0.009530611291246214],[124,7,71,0.006729910747142617],[124,7,72,0.005223025438989828],[124,7,73,0.004740762475259511],[124,7,74,0.005041118145541797],[124,7,75,0.0059076045123303824],[124,7,76,0.00714759985861836],[124,7,77,0.00859073315369502],[124,7,78,0.010087311851091308],[124,7,79,0.011506801423850079],[124,8,64,0.15970593809419356],[124,8,65,0.12883834186189835],[124,8,66,0.10290920526767487],[124,8,67,0.08132784871055873],[124,8,68,0.06356825262878073],[124,8,69,0.049167294155730235],[124,8,70,0.03769812680971074],[124,8,71,0.028768074160973857],[124,8,72,0.022017091322274713],[124,8,73,0.01711619996956297],[124,8,74,0.013765909050322024],[124,8,75,0.011694632761704018],[124,8,76,0.010657116734167225],[124,8,77,0.010432882639714793],[124,8,78,0.010824700661316734],[124,8,79,0.011657098421006427],[124,9,64,0.27167946169729584],[124,9,65,0.2505145255515027],[124,9,66,0.2096647411438058],[124,9,67,0.17445773510650395],[124,9,68,0.14429750384297219],[124,9,69,0.11865312613869833],[124,9,70,0.09703166510465021],[124,9,71,0.07897618718205181],[124,9,72,0.06406434908138797],[124,9,73,0.05190694410081376],[124,9,74,0.04214641985854826],[124,9,75,0.03445537895238764],[124,9,76,0.02853507347252811],[124,9,77,0.024113903640053946],[124,9,78,0.02094593012356704],[124,9,79,0.018809408814398743],[124,10,64,0.2654387137430172],[124,10,65,0.2648069732990133],[124,10,66,0.2644544306070436],[124,10,67,0.26434697657986855],[124,10,68,0.264470466452764],[124,10,69,0.23409145498452824],[124,10,70,0.1992440694087754],[124,10,71,0.1690693008704893],[124,10,72,0.14308212547133684],[124,10,73,0.12083260117504865],[124,10,74,0.10190447523342287],[124,10,75,0.08591376123135819],[124,10,76,0.07250729666442474],[124,10,77,0.061361291369856574],[124,10,78,0.052179876471917665],[124,10,79,0.04469366279558113],[124,11,64,0.25915263171029507],[124,11,65,0.25836017731446886],[124,11,66,0.2578382382258693],[124,11,67,0.25755175684244963],[124,11,68,0.2574862127116506],[124,11,69,0.25764722552814007],[124,11,70,0.258034823556431],[124,11,71,0.2586435066609292],[124,11,72,0.25946292207088634],[124,11,73,0.2356106433906287],[124,11,74,0.2047594552383684],[124,11,75,0.1777908971136764],[124,11,76,0.15429641833915544],[124,11,77,0.1338989236233854],[124,11,78,0.11625135675523796],[124,11,79,0.10103528148708715],[124,12,64,0.252845762246724],[124,12,65,0.251890592639385],[124,12,66,0.2511963432101106],[124,12,67,0.25072763470745574],[124,12,68,0.2504699086537842],[124,12,69,0.25042882032308494],[124,12,70,0.25060458412244757],[124,12,71,0.25099205279235054],[124,12,72,0.25158140192482276],[124,12,73,0.2523587869476904],[124,12,74,0.25330697174864664],[124,12,75,0.25440592818723373],[124,12,76,0.2556334058192384],[124,12,77,0.25344779567076975],[124,12,78,0.2248815694921964],[124,12,79,0.1995553188776324],[124,13,64,0.24654696375122637],[124,13,65,0.24542829250992826],[124,13,66,0.24456008759869627],[124,13,67,0.24390728556245986],[124,13,68,0.2434556032089354],[124,13,69,0.2432107359925903],[124,13,70,0.24317306642095757],[124,13,71,0.24333776846767796],[124,13,72,0.24369550312283889],[124,13,73,0.24423308148325004],[124,13,74,0.24493409458741283],[124,13,75,0.24577950928607994],[124,13,76,0.24674822952694467],[124,13,77,0.24781762252106804],[124,13,78,0.24896400935030366],[124,13,79,0.25016311966707894],[124,14,64,0.2402927973302872],[124,14,65,0.23901108474489616],[124,14,66,0.23796851501754193],[124,14,67,0.2371309475177552],[124,14,68,0.23648463778955098],[124,14,69,0.23603526343501657],[124,14,70,0.2357832944531569],[124,14,71,0.235724135389938],[124,14,72,0.2358488370050529],[124,14,73,0.23614477010726398],[124,14,74,0.23659626079079932],[124,14,75,0.23718518640446495],[124,14,76,0.2378915316852624],[124,14,77,0.23869390458918874],[124,14,78,0.239570011454619],[124,14,79,0.24049709123594484],[124,15,64,0.23412959845257972],[124,15,65,0.23268638819931636],[124,15,66,0.23146995912396026],[124,15,67,0.23044763372818997],[124,15,68,0.22960640522847944],[124,15,69,0.22895181784264684],[124,15,70,0.22848429959496894],[124,15,71,0.22819935657866858],[124,15,72,0.22808830729059187],[124,15,73,0.22813897290950405],[124,15,74,0.2283363227768663],[124,15,75,0.22866307445340703],[124,15,76,0.22910024783956587],[124,15,77,0.22962767296269695],[124,15,78,0.23022445114970985],[124,15,79,0.23086936941818278],[124,16,64,0.22809762700415193],[124,16,65,0.22649486559953647],[124,16,66,0.22510505928729008],[124,16,67,0.22389746497782123],[124,16,68,0.2228599795736032],[124,16,69,0.22199789992333938],[124,16,70,0.22131150571987868],[124,16,71,0.22079631687935394],[124,16,72,0.2204438540628551],[124,16,73,0.2202423481650712],[124,16,74,0.22017739805785663],[124,16,75,0.22023257600829774],[124,16,76,0.22038998032211207],[124,16,77,0.22063073489368457],[124,16,78,0.22093543547455913],[124,16,79,0.22128454260017266],[124,17,64,0.2222137249962543],[124,17,65,0.2204536174653877],[124,17,66,0.21889085779686457],[124,17,67,0.21749704287637792],[124,17,68,0.2162611171258392],[124,17,69,0.21518803440947934],[124,17,70,0.2142778568101526],[124,17,71,0.21352608199776085],[124,17,72,0.2129244299909262],[124,17,73,0.21246157138898072],[124,17,74,0.2121237963973453],[124,17,75,0.21189562411947369],[124,17,76,0.2117603517375021],[124,17,77,0.2117005433510145],[124,17,78,0.21169845838958865],[124,17,79,0.21173641965727635],[124,18,64,0.2164726734760196],[124,18,65,0.21455769353992543],[124,18,66,0.21282253197381432],[124,18,67,0.21124146534960633],[124,18,68,0.20980460761047381],[124,18,69,0.2085164934170217],[124,18,70,0.20737693009239405],[124,18,71,0.20638139829259286],[124,18,72,0.20552186233559558],[124,18,73,0.2047875142073709],[124,18,74,0.20416545061114996],[124,18,75,0.20364128259561076],[124,18,76,0.20319967746494905],[124,18,77,0.20282483283841835],[124,18,78,0.2025008828893657],[124,18,79,0.20221223695114005],[124,19,64,0.20744883022872407],[124,19,65,0.20610392604527147],[124,19,66,0.20475906173031114],[124,19,67,0.20344122357267236],[124,19,68,0.20216160822018664],[124,19,69,0.20091718688907742],[124,19,70,0.1997079812764493],[124,19,71,0.1985366715045392],[124,19,72,0.19740784735690498],[124,19,73,0.1963273319274772],[124,19,74,0.19530157826242078],[124,19,75,0.1943371393877106],[124,19,76,0.19344021192944885],[124,19,77,0.1926162533508834],[124,19,78,0.19186967265269486],[124,19,79,0.19120359421099695],[124,20,64,0.1964367743278144],[124,20,65,0.1949327628775526],[124,20,66,0.193447099465847],[124,20,67,0.19200378055307488],[124,20,68,0.1906128626424797],[124,20,69,0.1892720716942168],[124,20,70,0.18798195679546767],[124,20,71,0.18674542437771366],[124,20,72,0.18556697441784994],[124,20,73,0.18445201686062906],[124,20,74,0.18340626878032318],[124,20,75,0.18243523259346403],[124,20,76,0.1815437554306287],[124,20,77,0.18073566957529424],[124,20,78,0.18001351368484464],[124,20,79,0.1793783343226225],[124,21,64,0.1851213384332335],[124,21,65,0.183454914017878],[124,21,66,0.18182658132787868],[124,21,67,0.18025720393468564],[124,21,68,0.1787556383710934],[124,21,69,0.1773203775299399],[124,21,70,0.17595246187676492],[124,21,71,0.17465494439787196],[124,21,72,0.17343211893252583],[124,21,73,0.17228883623179933],[124,21,74,0.17122990819092423],[124,21,75,0.17025960047781685],[124,21,76,0.1693812135594281],[124,21,77,0.16859675191167323],[124,21,78,0.16790668099119396],[124,21,79,0.16730977134793898],[124,22,64,0.1735670138741233],[124,22,65,0.17173460869206839],[124,22,66,0.16996116435985129],[124,22,67,0.16826433659855536],[124,22,68,0.16665174429529944],[124,22,69,0.16512263864968135],[124,22,70,0.16367849826512315],[124,22,71,0.16232243110272015],[124,22,72,0.16105840266239504],[124,22,73,0.15989055892121068],[124,22,74,0.15882264439678165],[124,22,75,0.15785751546265694],[124,22,76,0.15699674880569695],[124,22,77,0.15624034468495615],[124,22,78,0.1555865244308375],[124,22,79,0.15503162141231558],[124,23,64,0.16184413325718122],[124,23,65,0.15984197245638765],[124,23,66,0.15792039721643814],[124,23,67,0.1560938482823907],[124,23,68,0.15436869127861283],[124,23,69,0.15274490650765618],[124,23,70,0.15122434289405917],[124,23,71,0.14981006470516986],[124,23,72,0.14850558747903475],[124,23,73,0.14731421511074022],[124,23,74,0.14623847837989792],[124,23,75,0.14527967494567384],[124,23,76,0.14443751058475512],[124,23,77,0.1437098412041785],[124,23,78,0.1430925149286179],[124,23,79,0.14257931334067545],[124,24,64,0.15002603375423212],[124,24,65,0.1478501997339438],[124,24,66,0.1457769216261036],[124,24,67,0.14381748496741717],[124,24,68,0.14197700830309007],[124,24,69,0.14025615183870518],[124,24,70,0.13865705484149654],[124,24,71,0.13718263607325787],[124,24,72,0.13583584522893585],[124,24,73,0.13461902117037003],[124,24,74,0.13353335714815354],[124,24,75,0.132578472935075],[124,24,76,0.13175209353141035],[124,24,77,0.13104983384787242],[124,24,78,0.1304650885300165],[124,24,79,0.1299890258586239],[124,25,64,0.13818633399409744],[124,25,65,0.1358328369841861],[124,25,66,0.13360378033912745],[124,25,67,0.13150741922365558],[124,25,68,0.12954765259729842],[124,25,69,0.12772575234040479],[124,25,70,0.12604405818530753],[124,25,71,0.12450524170982319],[124,25,72,0.12311158065539879],[124,25,73,0.12186434479793212],[124,25,74,0.12076329347211807],[124,25,75,0.1198062845697163],[124,25,76,0.1189889945590028],[124,25,77,0.11830474880938484],[124,25,78,0.11774446125559353],[124,25,79,0.11729668220038861],[124,26,64,0.12639632607429568],[124,26,65,0.12386117786747808],[124,26,66,0.1214718327496216],[124,26,67,0.11923370250526798],[124,26,68,0.11714951451928855],[124,26,69,0.11522106648804936],[124,26,70,0.11345080103207518],[124,26,71,0.11184104373594068],[124,26,72,0.11039330710490992],[124,26,73,0.10910770986068646],[124,26,74,0.1079825115847617],[124,26,75,0.1070137624289374],[124,26,76,0.10619506733196794],[124,26,77,0.10551746391150847],[124,26,78,0.10496941294570086],[124,26,79,0.10453690011918082],[124,27,64,0.11472248439617982],[124,27,65,0.11200177195909213],[124,27,66,0.10944727957479083],[124,27,67,0.10706182058236777],[124,27,68,0.10484701815802769],[124,27,69,0.10280509419973062],[124,27,70,0.10093849117045613],[124,27,71,0.09924909504838252],[124,27,72,0.09773757489669709],[124,27,73,0.09640284052048297],[124,27,74,0.0952416181287028],[124,27,75,0.0942481436245907],[124,27,76,0.09341397286219075],[124,27,77,0.0927279079330334],[124,27,78,0.0921760382891204],[124,27,79,0.09174189526698392],[124,28,64,0.1032240932555],[124,28,65,0.10031404880000998],[124,28,66,0.09758929821018598],[124,28,67,0.09505035353105058],[124,28,68,0.09269781884904918],[124,28,69,0.09053422529480526],[124,28,70,0.08856190901702087],[124,28,71,0.0867822300248507],[124,28,72,0.08519495242114555],[124,28,73,0.0837977443913529],[124,28,74,0.08258579777958491],[124,28,75,0.08155156678558613],[124,28,76,0.08068462502845945],[124,28,77,0.07997163994778703],[124,28,78,0.07939646325436148],[124,28,79,0.07894033590169616],[124,29,64,0.09195099538057884],[124,29,65,0.08884805933716403],[124,29,66,0.08594779064757085],[124,29,67,0.08324874197110285],[124,29,68,0.08075059906450882],[124,29,69,0.07845607694683752],[124,29,70,0.07636729877002761],[124,29,71,0.07448502138442768],[124,29,72,0.07280806024890649],[124,29,73,0.07133283467338425],[124,29,74,0.07005303314461887],[124,29,75,0.06895939818799297],[124,29,76,0.06803962993051203],[124,29,77,0.06727840725600066],[124,29,78,0.0666575251868241],[124,29,79,0.06615614688789419],[124,30,64,0.08094148086684788],[124,30,65,0.07764235482381752],[124,30,66,0.0745612646149896],[124,30,67,0.07169518076084579],[124,30,68,0.06904298439575769],[124,30,69,0.06660744231766516],[124,30,70,0.06439036038845432],[124,30,71,0.062391826216531165],[124,30,72,0.06060968162914772],[124,30,73,0.05903911498017565],[124,30,74,0.057672372971006296],[124,30,75,0.05649859136653425],[124,30,76,0.05550374370353012],[124,30,77,0.05467070681790726],[124,30,78,0.053979441764697864],[124,30,79,0.05340728847052229],[124,31,64,0.07022481808420881],[124,31,65,0.06672670190618707],[124,31,66,0.06345974272166507],[124,31,67,0.06041972965044452],[124,31,68,0.057604862272074515],[124,31,69,0.05501782434958964],[124,31,70,0.05266000566941622],[124,31,71,0.05053077148658009],[124,31,72,0.04862698423994394],[124,31,73,0.04694264358292106],[124,31,74,0.045468644343116135],[124,31,75,0.04419265173353003],[124,31,76,0.04309909285859051],[124,31,77,0.042169263293130727],[124,31,78,0.04138154726578374],[124,31,79,0.04071174975061592],[124,32,64,0.05982595433890827],[124,32,65,0.05612703383980055],[124,32,66,0.05266997231424987],[124,32,67,0.0494497871112248],[124,32,68,0.04646412404123371],[124,32,69,0.04371545079739081],[124,32,70,0.04120465115978633],[124,32,71,0.03893032975556479],[124,32,72,0.03688838342444083],[124,32,73,0.03507168844226208],[124,32,74,0.033469903161923095],[124,32,75,0.03206938534730938],[124,32,76,0.030853223204021018],[124,32,77,0.029801378853130125],[124,32,78,0.028890942755424524],[124,32,79,0.028096497373953474],[124,33,64,0.0497552840223741],[124,33,65,0.04585480009765354],[124,33,66,0.0422043667961984],[124,33,67,0.038798631430805405],[124,33,68,0.03563481357120098],[124,33,69,0.0327150393365243],[124,33,70,0.030039609888996142],[124,33,71,0.027606348578985765],[124,33,72,0.025410221025747717],[124,33,73,0.023443067783912794],[124,33,74,0.021693449111833615],[124,33,75,0.020146601083417932],[124,33,76,0.0187845020224054],[124,33,77,0.01758604798986859],[124,33,78,0.016527335826264665],[124,33,79,0.015582052039026677],[124,34,64,0.04000560995213512],[124,34,65,0.03590383578282402],[124,34,66,0.032057790201906466],[124,34,67,0.028462124705160484],[124,34,68,0.02511375410854463],[124,34,69,0.022014351673923342],[124,34,70,0.019163577964840365],[124,34,71,0.01655847552357847],[124,34,72,0.014193135313433],[124,34,73,0.012058471821495123],[124,34,74,0.010142106306408358],[124,34,75,0.008428357411766518],[124,34,76,0.0068983381137929164],[124,34,77,0.005530157734331199],[124,34,78,0.004299227531155819],[124,34,79,0.003178668177490958],[124,35,64,0.03055070890011536],[124,35,65,0.026248897148803293],[124,35,66,0.0222060679651493],[124,35,67,0.018417200943819045],[124,35,68,0.014879014839520754],[124,35,69,0.011592640602495293],[124,35,70,0.008557065043733004],[124,35,71,0.005768575765598293],[124,35,72,0.003220470102697496],[124,35,73,9.028683486082059E-4],[124,35,74,-0.0011973692667330733],[124,35,75,-0.003096622636338816],[124,35,76,-0.004814389900050769],[124,35,77,-0.00637306488718227],[124,35,78,-0.0077976153401061715],[124,35,79,-0.009115163570434699],[124,36,64,0.021344043271118537],[124,36,65,0.016844338923328848],[124,36,66,0.012604633616145066],[124,36,67,0.008620482440167186],[124,36,68,0.004888496178821108],[124,36,69,0.0014092044311836346],[124,36,70,-0.0018190808728938447],[124,36,71,-0.004800770565485861],[124,36,72,-0.007543252285980141],[124,36,73,-0.01005704481713015],[124,36,74,-0.012355853254419548],[124,36,75,-0.014456525791582487],[124,36,76,-0.016378913133926053],[124,36,77,-0.018145631766002084],[124,36,78,-0.01978173249714541],[124,36,79,-0.021314275887311995],[124,37,64,0.01231762364967835],[124,37,65,0.0076229380723865075],[124,37,66,0.003187315915169792],[124,37,67,-9.929712677788204E-4],[124,37,68,-0.004921362128194603],[124,37,69,-0.008597947420309546],[124,37,70,-0.012025050879355289],[124,37,71,-0.015207688266241002],[124,37,72,-0.018153791648341466],[124,37,73,-0.020874338455502503],[124,37,74,-0.023383385848940678],[124,37,75,-0.025698011169436992],[124,37,76,-0.027838159448852966],[124,37,77,-0.029826399173106137],[124,37,78,-0.03168758767137901],[124,37,79,-0.03344844767546986],[124,38,64,0.00338360087015787],[124,38,65,-0.0015025484741029993],[124,38,66,-0.006132147896542373],[124,38,67,-0.01050820182685488],[124,38,68,-0.01463417787614743],[124,38,69,-0.01851075793323149],[124,38,70,-0.022140814610269954],[124,38,71,-0.02552983243112706],[124,38,72,-0.028686111517010327],[124,38,73,-0.03162088010394158],[124,38,74,-0.034348316412098394],[124,38,75,-0.036885480605692675],[124,38,76,-0.039252157789923685],[124,38,77,-0.041470613186319845],[124,38,78,-0.0435652608055654],[124,38,79,-0.045562247097776384],[124,39,64,-0.005509255788667219],[124,39,65,-0.01058273978008923],[124,39,66,-0.015403531791031834],[124,39,67,-0.019973921790280902],[124,39,68,-0.024297397719134136],[124,39,69,-0.028375200397660894],[124,39,70,-0.03221065904722002],[124,39,71,-0.03580958484225942],[124,39,72,-0.039180464667880506],[124,39,73,-0.04233456710902503],[124,39,74,-0.0452859611601593],[124,39,75,-0.04805144835487392],[124,39,76,-0.05065040921496197],[124,39,77,-0.05310456510602277],[124,39,78,-0.052749392825132545],[124,39,79,-0.047203635586926515],[124,40,64,-0.01436507934860515],[124,40,65,-0.019621101265579366],[124,40,66,-0.024629552751014153],[124,40,67,-0.029391919264960837],[124,40,68,-0.03391168576943872],[124,40,69,-0.038190663830449195],[124,40,70,-0.04223258676717301],[124,40,71,-0.046043485091024364],[124,40,72,-0.04963188164994381],[124,40,73,-0.05300890167218567],[124,40,74,-0.056188298152765784],[124,40,75,-0.0591863932304378],[124,40,76,-0.05612571318944958],[124,40,77,-0.05067771471483234],[124,40,78,-0.04523028977389631],[124,40,79,-0.03981302932734896],[124,41,64,-0.023187828035254394],[124,41,65,-0.02862105217068099],[124,41,66,-0.03381295945023633],[124,41,67,-0.03876406413871054],[124,41,68,-0.04347781752048389],[124,41,69,-0.04795665383298195],[124,41,70,-0.052204696485998556],[124,41,71,-0.05622812399439587],[124,41,72,-0.060035377963190965],[124,41,73,-0.06363728787239002],[124,41,74,-0.059082533888910015],[124,41,75,-0.05383437872439162],[124,41,76,-0.04853762494119809],[124,41,77,-0.043218270844050374],[124,41,78,-0.03790384066730164],[124,41,79,-0.03262303016073853],[124,42,64,-0.03198096080924106],[124,42,65,-0.03758569058968654],[124,42,66,-0.04295631509696645],[124,42,67,-0.048092160960102305],[124,42,68,-0.0529966159313886],[124,42,69,-0.057672823550437874],[124,42,70,-0.06212531870862829],[124,42,71,-0.06631406192566255],[124,42,72,-0.06145318219812357],[124,42,73,-0.05648486040003337],[124,42,74,-0.05142875603358162],[124,42,75,-0.046306460118003094],[124,42,76,-0.04114140590558688],[124,42,77,-0.035958699982379244],[124,42,78,-0.030784874795086434],[124,42,79,-0.025647563795067607],[124,43,64,-0.04074457970078395],[124,43,65,-0.04651498201521904],[124,43,66,-0.05205925190546144],[124,43,67,-0.05737528713113335],[124,43,68,-0.06246639079005806],[124,43,69,-0.06733653251306283],[124,43,70,-0.06313061365552701],[124,43,71,-0.05849736024671962],[124,43,72,-0.05374729216854662],[124,43,73,-0.04889782590621025],[124,43,74,-0.04396808097714051],[124,43,75,-0.03897890556387576],[124,43,76,-0.03395282185198693],[124,43,77,-0.028913891863621987],[124,43,78,-0.023887504744542955],[124,43,79,-0.018900086614641664],[124,44,64,-0.04947229134584822],[124,44,65,-0.05540267111219878],[124,44,66,-0.06111545462093451],[124,44,67,-0.06660686819731124],[124,44,68,-0.06405956168789013],[124,44,69,-0.0597964690515486],[124,44,70,-0.05539487629410228],[124,44,71,-0.050869491006384604],[124,44,72,-0.046236079510352336],[124,44,73,-0.04151169733066155],[124,44,74,-0.03671483805449795],[124,44,75,-0.03186550089600376],[124,44,76,-0.026985177477427808],[124,44,77,-0.02209675852366018],[124,44,78,-0.017224361338408805],[124,44,79,-0.012393079087069495],[124,45,64,-0.058147781559394957],[124,45,65,-0.06423291052005381],[124,45,66,-0.06420463459776124],[124,45,67,-0.06034026034551982],[124,45,68,-0.05631669682350887],[124,45,69,-0.052148788598314226],[124,45,70,-0.04785128920329092],[124,45,71,-0.04343925393188144],[124,45,72,-0.03892840310520185],[124,45,73,-0.03433540290644714],[124,45,74,-0.029678063775436907],[124,45,75,-0.02497545656673607],[124,45,76,-0.020247946875777408],[124,45,77,-0.015517148127536021],[124,45,78,-0.010134718424684398],[124,45,79,-0.003906760107386987],[124,46,64,-0.06352532028832275],[124,46,65,-0.06007692168148052],[124,46,66,-0.05646249789890648],[124,46,67,-0.052683592709489475],[124,46,68,-0.04875241267822896],[124,46,69,-0.044685234293076845],[124,46,70,-0.04049773177906175],[124,46,71,-0.03620538557864342],[124,46,72,-0.03182390361130618],[124,46,73,-0.027369559034010726],[124,46,74,-0.02230707988297293],[124,46,75,-0.015889465677281264],[124,46,76,-0.009481627448929669],[124,46,77,-0.00310160442659964],[124,46,78,0.0032317262035267413],[124,46,79,0.009498808744849704],[124,47,64,-0.05578446804473287],[124,47,65,-0.052412077590635535],[124,47,66,-0.04888259598960023],[124,47,67,-0.04519542679924091],[124,47,68,-0.041362923727754464],[124,47,69,-0.03740299343283469],[124,47,70,-0.033332378285666056],[124,47,71,-0.02856334740733968],[124,47,72,-0.022145909343361792],[124,47,73,-0.015698151060113123],[124,47,74,-0.009234977427708464],[124,47,75,-0.0027718300675910797],[124,47,76,0.0036751686470994326],[124,47,77,0.010089156605008646],[124,47,78,0.016452557427264973],[124,47,79,0.02274718965965964],[124,48,64,-0.04824004568439572],[124,48,65,-0.04494981150162972],[124,48,66,-0.04151123550277292],[124,48,67,-0.037921481232527865],[124,48,68,-0.0341931375810971],[124,48,69,-0.028641682096883895],[124,48,70,-0.02224712175154189],[124,48,71,-0.015801966872068075],[124,48,72,-0.009321160634430108],[124,48,73,-0.002819204330122866],[124,48,74,0.0036894649085595626],[124,48,75,0.010190183575643398],[124,48,76,0.0166678584275433],[124,48,77,0.023106850052479422],[124,48,78,0.029490942935517274],[124,48,79,0.035803401393398604],[124,49,64,-0.04094737943282431],[124,49,65,-0.037745042862390416],[124,49,66,-0.03440265074297381],[124,49,67,-0.0289593873624798],[124,49,68,-0.02262269101688614],[124,49,69,-0.016208820845707725],[124,49,70,-0.00973663346806175],[124,49,71,-0.0032229344582527276],[124,49,72,0.003316902011148719],[124,49,73,0.009868401563778773],[124,49,74,0.016417546639336353],[124,49,75,0.02295042248751268],[124,49,76,0.029452952254040373],[124,49,77,0.03591072105608245],[124,49,78,0.04230888873297749],[124,49,79,0.048632190760786974],[124,50,64,-0.033953735416967],[124,50,65,-0.029478566476322167],[124,50,66,-0.02325523472059055],[124,50,67,-0.01692405590686042],[124,50,68,-0.010498264693854002],[124,50,69,-0.00400154371590713],[124,50,70,0.0025455644541153635],[124,50,71,0.009125179396696706],[124,50,72,0.015721393491923995],[124,50,73,0.022319672171898217],[124,50,74,0.028906344528828],[124,50,75,0.03546818478107425],[124,50,76,0.04199208486020883],[124,50,77,0.04846481815234994],[124,50,78,0.05487289420645308],[124,50,79,0.061202504014917454],[124,51,64,-0.024110653764228506],[124,51,65,-0.01789045203937001],[124,51,66,-0.011574737510683447],[124,51,67,-0.005153801527494338],[124,51,68,0.0013584637586676884],[124,51,69,0.007935933099379488],[124,51,70,0.014556256204630259],[124,51,71,0.021200363534930544],[124,51,72,0.027851707136520916],[124,51,73,0.0344955927242646],[124,51,74,0.04111860392528966],[124,51,75,0.04770811934086901],[124,51,76,0.05425192283608948],[124,51,77,0.060737907227913036],[124,51,78,0.067153871312128],[124,51,79,0.07348740995248981],[124,52,64,-0.01291188119734077],[124,52,65,-0.0065991486913286185],[124,52,66,-1.948309431371517E-4],[124,52,67,0.006312941464098571],[124,52,68,0.01290952577990114],[124,52,69,0.019566254855002685],[124,52,70,0.026258868008978038],[124,52,71,0.032967001416870076],[124,52,72,0.0396733601972643],[124,52,73,0.04636298343913769],[124,52,74,0.053022603243745206],[124,52,75,0.05964009859385229],[124,52,76,0.06620404460589432],[124,52,77,0.07270335747252926],[124,52,78,0.07912703516342484],[124,52,79,0.0850736184914446],[124,53,64,-0.002037147863393188],[124,53,65,0.00436347526966213],[124,53,66,0.010852780433421083],[124,53,67,0.01744470931488287],[124,53,68,0.024123779858928125],[124,53,69,0.030858715704761914],[124,53,70,0.037623265430232714],[124,53,71,0.04439567866959695],[124,53,72,0.05115781158943774],[124,53,73,0.05789432701921132],[124,53,74,0.0645919904735159],[124,53,75,0.0712390630309006],[124,53,76,0.07782479176859881],[124,53,77,0.08433899819540647],[124,53,78,0.0903158733410859],[124,53,79,0.09595763446476586],[124,54,64,0.00848853014583355],[124,54,65,0.014972428325560224],[124,54,66,0.021543205265813735],[124,54,67,0.028216750442395272],[124,54,68,0.034976660700884496],[124,54,69,0.04178901698099212],[124,54,70,0.04862552166420299],[124,54,71,0.05546296173869083],[124,54,72,0.06228225076707664],[124,54,73,0.06906756722383672],[124,54,74,0.07580559059605523],[124,54,75,0.08248483636079464],[124,54,76,0.08892288717903649],[124,54,77,0.09492190935317835],[124,54,78,0.10083812842791227],[124,54,79,0.10667205026900986],[124,55,64,0.017669306585766258],[124,55,65,0.025143052814336216],[124,55,66,0.03185807103342578],[124,55,67,0.038610736447404426],[124,55,68,0.045449897966994814],[124,55,69,0.05233899523109861],[124,55,70,0.05924765574973959],[124,55,71,0.0661511465600006],[124,55,72,0.07302935664738888],[124,55,73,0.07986587742528477],[124,55,74,0.08636140602256046],[124,55,75,0.09268451224880352],[124,55,76,0.09893042088201114],[124,55,77,0.10509872101967421],[124,55,78,0.11118859741735526],[124,55,79,0.11719915989967236],[124,56,64,0.02614536822056214],[124,56,65,0.03371478605205695],[124,56,66,0.041144880837106754],[124,56,67,0.048406130648343856],[124,56,68,0.05550669472520628],[124,56,69,0.062475417444177235],[124,56,70,0.06933442374707646],[124,56,71,0.07609970434264238],[124,56,72,0.08278221453274065],[124,56,73,0.0893888728647168],[124,56,74,0.09592345792358113],[124,56,75,0.10238740187153292],[124,56,76,0.10878047963226496],[124,56,77,0.11510139290121725],[124,56,78,0.12134824843655251],[124,56,79,0.12751893034907527],[124,57,64,0.03459580351235033],[124,57,65,0.042253601745872824],[124,57,66,0.04977242806839671],[124,57,67,0.05712124333899052],[124,57,68,0.06430915128494763],[124,57,69,0.07136733652880553],[124,57,70,0.07831974295269034],[124,57,71,0.08518366997734736],[124,57,72,0.09197092354386069],[124,57,73,0.09868886529907957],[124,57,74,0.10534135816384203],[124,57,75,0.11192960676385291],[124,57,76,0.11845289150018812],[124,57,77,0.12490919532750894],[124,57,78,0.13129572258923689],[124,57,79,0.1376093095300935],[124,58,64,0.04299793055019202],[124,58,65,0.05073666915619861],[124,58,66,0.058335655004492684],[124,58,67,0.06576255703443612],[124,58,68,0.07302746005622429],[124,58,69,0.08016379257214497],[124,58,70,0.08719727024461552],[124,58,71,0.09414650160453322],[124,58,72,0.10102418536323424],[124,58,73,0.10783820440514409],[124,58,74,0.11459261451532793],[124,58,75,0.12128852620327826],[124,58,76,0.12792487828794583],[124,58,77,0.13449910220684622],[124,58,78,0.14100767630010927],[124,58,79,0.1474465695984428],[124,59,64,0.05132465646047119],[124,59,65,0.059136790542250704],[124,59,66,0.06680735827365242],[124,59,67,0.07430297015609115],[124,59,68,0.08163471130306736],[124,59,69,0.08883812749860051],[124,59,70,0.09594063257289646],[124,59,71,0.10296212190724072],[124,59,72,0.10991620993459048],[124,59,73,0.11681136291762109],[124,59,74,0.12365192494404147],[124,59,75,0.13043903539183072],[124,59,76,0.1371714364265682],[124,59,77,0.14384616939683856],[124,59,78,0.15045915928782227],[124,59,79,0.15700568667743878],[124,60,64,0.059544980485946454],[124,60,65,0.06742290495224945],[124,60,66,0.07515654340581032],[124,60,67,0.08271168289305514],[124,60,68,0.0901004100104795],[124,60,69,0.09736023449272718],[124,60,70,0.1045201703639796],[124,60,71,0.11160135565744105],[124,60,72,0.11861832380907283],[124,60,73,0.12558016906284927],[124,60,74,0.13249160372393284],[124,60,75,0.13935390541399606],[124,60,76,0.1461657527975386],[124,60,77,0.1529239485570578],[124,60,78,0.15962402869433545],[124,60,79,0.16626075752466415],[124,61,64,0.06762452047410546],[124,61,65,0.07556061607777],[124,61,66,0.08334895017321811],[124,61,67,0.09095471644640737],[124,61,68,0.09839098632053708],[124,61,69,0.10569705796564391],[124,61,70,0.11290342626213488],[124,61,71,0.12003240724463796],[124,61,72,0.12709943711311397],[124,61,73,0.13411426414100577],[124,61,74,0.14108203122455013],[124,61,75,0.14800424713943586],[124,61,76,0.15487964488994835],[124,61,77,0.1617049258491268],[124,61,78,0.16847538869230216],[124,61,79,0.1751854424203816],[124,62,64,0.07552608488748733],[124,62,65,0.08351276645470125],[124,62,66,0.09134762457151684],[124,62,67,0.09899547897316482],[124,62,68,0.10647035266162075],[124,62,69,0.11381314018679942],[124,62,70,0.12105568052292422],[124,62,71,0.1282213848875874],[124,62,72,0.1353265572992614],[124,62,73,0.14238160707903363],[124,62,74,0.14939215095935968],[124,62,75,0.15636000278817566],[124,62,76,0.1632840491391902],[124,62,77,0.17016100945613152],[124,62,78,0.17698607966615926],[124,62,79,0.18375345849521998],[124,63,64,0.08321029539693997],[124,63,65,0.09124006313413127],[124,63,66,0.09911354261721136],[124,63,67,0.10679538345531837],[124,63,68,0.11430051284530848],[124,63,69,0.12167121990409865],[124,63,70,0.12894053842924666],[124,63,71,0.13613287694604553],[124,63,72,0.1432653551420203],[124,63,73,0.15034903146026127],[124,63,74,0.15739001944344025],[124,63,75,0.16439049074863366],[124,63,76,0.1713495630782994],[124,63,77,0.17826407159248234],[124,63,78,0.18512922267753484],[124,63,79,0.19193912924694215],[124,64,64,0.09063623213268414],[124,64,65,0.09870172674441412],[124,64,66,0.1066062577227019],[124,64,67,0.11431448909485079],[124,64,68,0.12184219457425972],[124,64,69,0.12923285424044442],[124,64,70,0.13652054086474383],[124,64,71,0.14373055131587906],[124,64,72,0.15088075381232516],[124,64,73,0.15798282571635455],[124,64,74,0.16504337940004346],[124,64,75,0.17206497404380358],[124,64,76,0.17904701155524677],[124,64,77,0.18598651511793204],[124,64,78,0.19287878919176774],[124,64,79,0.19971796008912343],[124,65,64,0.09776211433806221],[124,65,65,0.10585617679632972],[124,65,66,0.11378458459917236],[124,65,67,0.12151217928070228],[124,65,68,0.1290555185024431],[124,65,69,0.13645907710253707],[124,65,70,0.143757811373449],[124,65,71,0.1509777913275878],[124,65,72,0.15813755453969291],[124,65,73,0.1652493500772916],[124,65,74,0.17232026999588992],[124,65,75,0.17935326620716613],[124,65,76,0.18634805085703748],[124,65,77,0.1933018786735473],[124,65,78,0.20021021005808584],[124,65,79,0.2070672539970298],[124,66,64,0.10454601749077211],[124,66,65,0.11266175432727427],[124,66,66,0.12060732080772085],[124,66,67,0.1280481123765222],[124,66,68,0.13556677769704956],[124,66,69,0.14315500607538756],[124,66,70,0.15061474092340424],[124,66,71,0.1578383693898649],[124,66,72,0.16500110012648572],[124,66,73,0.17211569156524628],[124,66,74,0.17918967541105926],[124,66,75,0.1862263758926165],[124,66,76,0.19322581208180417],[124,66,77,0.20018548169629707],[124,66,78,0.20710102511428535],[124,66,79,0.2139667686346023],[124,67,64,0.11094662700548137],[124,67,65,0.11907748202188262],[124,67,66,0.1268562356111792],[124,67,67,0.13427360887760842],[124,67,68,0.14182145124862253],[124,67,69,0.14944179885741093],[124,67,70,0.157054710606643],[124,67,71,0.16427715863001469],[124,67,72,0.17143797658444873],[124,67,73,0.17855035731948057],[124,67,74,0.1856222120458747],[124,67,75,0.19265719053435862],[124,67,76,0.19965558408662867],[124,67,77,0.20661510965004334],[124,67,78,0.21353157376213805],[124,67,79,0.22039941531576177],[124,68,64,0.11692402852585118],[124,68,65,0.12506386183816695],[124,68,66,0.13283957631928342],[124,68,67,0.14027434419197682],[124,68,68,0.147842605231251],[124,68,69,0.155485731953358],[124,68,70,0.16304285239816507],[124,68,71,0.17026088267362702],[124,68,72,0.17741675305454194],[124,68,73,0.184524006430316],[124,68,74,0.19159085455803593],[124,68,75,0.19862119926315586],[124,68,76,0.20561553622847628],[124,68,77,0.2125717396991849],[124,68,78,0.21948572674659392],[124,68,79,0.2263520000380149],[124,69,64,0.12244054071765226],[124,69,65,0.1305837160921221],[124,69,66,0.13854592116428727],[124,69,67,0.1460723536299622],[124,69,68,0.15365141174707628],[124,69,69,0.16125227017948707],[124,69,70,0.16854685389896923],[124,69,71,0.17575890934915595],[124,69,72,0.18290876558480224],[124,69,73,0.1900102255712017],[124,69,74,0.197071705658711],[124,69,75,0.20409725957598993],[124,69,76,0.21108748489811555],[124,69,77,0.2180403102700979],[124,69,78,0.22495166198132008],[124,69,79,0.23181600879144057],[124,70,64,0.127477196941727],[124,70,65,0.135618726024472],[124,70,66,0.1435770173562012],[124,70,67,0.15131961191965493],[124,70,68,0.15886645762422855],[124,70,69,0.16626507096463794],[124,70,70,0.17355309360847382],[124,70,71,0.18075894344703075],[124,70,72,0.1879031828188023],[124,70,73,0.194999776430184],[124,70,74,0.2020572362147372],[124,70,75,0.20907965070498868],[124,70,76,0.21606759682057508],[124,70,77,0.22301893230102182],[124,70,78,0.22992946732669364],[124,70,79,0.23679351417680233],[124,71,64,0.1320644574460791],[124,71,65,0.14020015426905172],[124,71,66,0.14815105958649827],[124,71,67,0.1558856182828299],[124,71,68,0.16342442586926262],[124,71,69,0.17081532038255395],[124,71,70,0.17809618249764908],[124,71,71,0.18529559723958464],[124,71,72,0.1924342270297224],[124,71,73,0.19952607466291525],[124,71,74,0.20657963340583524],[124,71,75,0.21359892173891773],[124,71,76,0.22058440059390644],[124,71,77,0.22753377126329713],[124,71,78,0.2344426524732103],[124,71,79,0.2413051354166692],[124,72,64,0.13623740144285212],[124,72,65,0.144363765329282],[124,72,66,0.15230446099299783],[124,72,67,0.16002902827365256],[124,72,68,0.16755860204456918],[124,72,69,0.17494104979926933],[124,72,70,0.18221423727507843],[124,72,71,0.18940670219520905],[124,72,72,0.19653902877876062],[124,72,73,0.20362511261559402],[124,72,74,0.21067331305302692],[124,72,75,0.2176874905724371],[124,72,76,0.22466792696243618],[124,72,77,0.23161212641876452],[124,72,78,0.2385154960156232],[124,72,79,0.24537190429809583],[124,73,64,0.14002680636088308],[124,73,65,0.14814085805302052],[124,73,66,0.15606899204757435],[124,73,67,0.1637820604108256],[124,73,68,0.17130157580518643],[124,73,69,0.17867504519536717],[124,73,70,0.18593999106743567],[124,73,71,0.19312463775273447],[124,73,72,0.2002492817315614],[124,73,73,0.2073275529836883],[124,73,74,0.2143675645025845],[124,73,75,0.22137294741934938],[124,73,76,0.22834376950903715],[124,73,77,0.2352773351737961],[124,73,78,0.24216886531019738],[124,73,79,0.2490120557716247],[124,74,64,0.14346082806143134],[124,74,65,0.15155994743179618],[124,74,66,0.15947345845161115],[124,74,67,0.1671737567759997],[124,74,68,0.17468253248306173],[124,74,69,0.1820464741521178],[124,74,70,0.18930238252618165],[124,74,71,0.19647786923913102],[124,74,72,0.203592715480991],[124,74,73,0.2106601226717731],[124,74,74,0.21768785224809206],[124,74,75,0.22467925199281927],[124,74,76,0.23163416666168946],[124,74,77,0.23854973097960286],[124,74,78,0.24542104338957915],[124,74,79,0.2522417192381979],[124,75,64,0.14656668815203022],[124,75,65,0.15464845408087663],[124,75,66,0.16254538727628837],[124,75,67,0.1702316606427764],[124,75,68,0.17772891522522574],[124,75,69,0.18508252259734495],[124,75,70,0.19232815518716795],[124,75,71,0.1994924965482264],[124,75,72,0.20659457966081302],[124,75,73,0.2136470184999752],[124,75,74,0.2206571299825082],[124,75,75,0.22762794372690184],[124,75,76,0.23455909737958994],[124,75,77,0.24144761557547303],[124,75,78,0.24828857090684558],[124,75,79,0.2550756255718167],[124,76,64,0.14937236650747115],[124,76,65,0.15743439951462487],[124,76,66,0.16531271947593829],[124,76,67,0.17298350102859056],[124,76,68,0.18046809458576737],[124,76,69,0.18781003953968406],[124,76,70,0.19504346537376055],[124,76,71,0.20219381195032357],[124,76,72,0.20927913781729898],[124,76,73,0.2163113233389411],[124,76,74,0.2232971657939614],[124,76,75,0.23023936390048644],[124,76,76,0.23713738954104396],[124,76,77,0.24398824476984346],[124,76,78,0.2507871024853166],[124,76,79,0.25752782944250613],[124,77,64,0.1519082969494906],[124,77,65,0.15994810516860075],[124,77,66,0.16780550673459738],[124,77,67,0.1754588821469878],[124,77,68,0.18292904357761522],[124,77,69,0.19025718784043036],[124,77,70,0.19747549675318396],[124,77,71,0.20460786522185498],[124,77,72,0.21167116932705113],[124,77,73,0.2186764310803852],[124,77,74,0.22562987705000653],[124,77,75,0.23253388836359226],[124,77,76,0.239387839903897],[124,77,77,0.2461888268140588],[124,77,78,0.25293227672367036],[124,77,79,0.25961244639142506],[124,78,64,0.15420906388721775],[124,78,65,0.1622238929646198],[124,78,66,0.17005761044536585],[124,78,67,0.17769097557248276],[124,78,68,0.18514401602065636],[124,78,69,0.19245509889958476],[124,78,70,0.199654079481398],[124,78,71,0.20676303410959526],[124,78,72,0.2137974774761754],[124,78,73,0.2207674786804725],[124,78,74,0.2276786733504968],[124,78,75,0.23453316940846564],[124,78,76,0.2413303443606856],[124,78,77,0.24806753228569323],[124,78,78,0.2547405989800209],[124,78,79,0.2613444039974811],[124,79,64,0.1562950322092792],[124,79,65,0.16428179550007935],[124,79,66,0.17208870654159772],[124,79,67,0.17969905522369398],[124,79,68,0.18713185462048842],[124,79,69,0.19442219272346756],[124,79,70,0.20159724873352575],[124,79,71,0.20867702821887862],[124,79,72,0.21567552000801954],[124,79,73,0.22260175418231884],[124,79,74,0.22946075855455045],[124,79,75,0.23625441131119804],[124,79,76,0.2429821877854076],[124,79,77,0.24964179961163913],[124,79,78,0.25622972478895883],[124,79,79,0.2627416274468604],[124,80,64,0.15811737980250384],[124,80,65,0.16607279335757022],[124,80,66,0.17385031151895616],[124,80,67,0.18143595260405165],[124,80,68,0.18884753922520087],[124,80,69,0.19611647732286136],[124,80,70,0.20326692388995646],[124,80,71,0.21031652662936248],[124,80,72,0.21727751646273963],[124,80,73,0.2241577035035016],[124,80,74,0.23096137399783673],[124,80,75,0.23769008601959418],[124,80,76,0.24434336198403062],[124,80,77,0.25091927631964844],[124,80,78,0.25741493690325684],[124,80,79,0.2638268591203268],[124,81,64,0.15962492243296322],[124,81,65,0.16754538568282895],[124,81,66,0.17529131880562668],[124,81,67,0.18285170630893502],[124,81,68,0.19024306349029244],[124,81,69,0.19749276902297236],[124,81,70,0.20462162454233915],[124,81,71,0.21164460584046096],[124,81,72,0.21857189270346458],[124,81,73,0.2254098044606733],[124,81,74,0.23216163886685764],[124,81,75,0.23882841221158035],[124,81,76,0.24540949881938032],[124,81,77,0.25190316836925575],[124,81,78,0.25830701971824377],[124,81,79,0.2646183101612591],[124,82,64,0.16078278174669336],[124,82,65,0.168664220822923],[124,82,66,0.17637638089457439],[124,82,67,0.1839114654759014],[124,82,68,0.1912846195290001],[124,82,69,0.19851891705370003],[124,82,70,0.20563150201470626],[124,82,71,0.2126343616314364],[124,82,72,0.2195352998631237],[124,82,73,0.22633881859661467],[124,82,74,0.23304690426511135],[124,82,75,0.23965971789053495],[124,82,76,0.24617618680361486],[124,82,77,0.25259449655208466],[124,82,78,0.2589124817552676],[124,82,79,0.26512791490226345],[124,83,64,0.161569803245767],[124,83,65,0.16940756123800524],[124,83,66,0.17708345092568145],[124,83,67,0.18459314154054496],[124,83,68,0.19195039346702888],[124,83,69,0.1991737740675588],[124,83,70,0.20627651286351226],[124,83,71,0.21326730987541398],[124,83,72,0.2201512626785328],[124,83,73,0.22693070277797203],[124,83,74,0.23360593911951785],[124,83,75,0.24017590681026396],[124,83,76,0.24663871937769918],[124,83,77,0.25299212314542135],[124,83,78,0.25923385254476183],[124,83,79,0.26536188541380556],[124,84,64,0.16197617051212979],[124,84,65,0.16976494140364157],[124,84,66,0.17740151274241606],[124,84,67,0.18488524254571262],[124,84,68,0.1922285362041866],[124,84,69,0.19944533316381513],[124,84,70,0.2065447489367166],[124,84,71,0.21353193285687766],[124,84,72,0.2204089613272008],[124,84,73,0.2271756415328793],[124,84,74,0.2338302234998276],[124,84,75,0.24037001862991622],[124,84,76,0.24679192309464315],[124,84,77,0.25309284471358606],[124,84,78,0.25927003218042144],[124,84,79,0.2653213057268598],[124,85,64,0.16200122209332588],[124,85,65,0.16973502504390187],[124,85,66,0.17732850562317362],[124,85,67,0.18478489598810502],[124,85,68,0.1921153150692597],[124,85,69,0.1993290367245537],[124,85,70,0.2064309288355425],[124,85,71,0.21342237539676762],[124,85,72,0.22030215046033105],[124,85,73,0.22706720314846401],[124,85,74,0.23371335164470997],[124,85,75,0.24023588432481358],[124,85,76,0.246592287077694],[124,85,77,0.2527204115930201],[124,85,78,0.25877478874433985],[124,85,79,0.2647424391609229],[124,86,64,0.16165147772455954],[124,86,65,0.16932366836269255],[124,86,66,0.17686945027627482],[124,86,67,0.1842960666304126],[124,86,68,0.19161345254914017],[124,86,69,0.19882626291156508],[124,86,70,0.20593505621427513],[124,86,71,0.21293729573113265],[124,86,72,0.2198282198199959],[124,86,73,0.22614453815913435],[124,86,74,0.23223062538599196],[124,86,75,0.2382840672221037],[124,86,76,0.24429619489283275],[124,86,77,0.2502574355809787],[124,86,78,0.2561570652027604],[124,86,79,0.2619830571787827],[124,87,64,0.16093888004554618],[124,87,65,0.16854219543144353],[124,87,66,0.17603478218991564],[124,87,67,0.18342797522678927],[124,87,68,0.19073065781596624],[124,87,69,0.19794299524433248],[124,87,70,0.2050612499585859],[124,87,71,0.21207887573273515],[124,87,72,0.21812194801739657],[124,87,73,0.2240172704186702],[124,87,74,0.22989138811915544],[124,87,75,0.23573897086355405],[124,87,76,0.24155378173854378],[124,87,77,0.24732832611036734],[124,87,78,0.2530535964477116],[124,87,79,0.25871891394614743],[124,88,64,0.15987925748908646],[124,88,65,0.16740589141573997],[124,88,66,0.17483889796353308],[124,88,67,0.1821937236606173],[124,88,68,0.18947835634860558],[124,88,69,0.19668868027851658],[124,88,70,0.2038167509133373],[124,88,71,0.21016631153629314],[124,88,72,0.21585030623218882],[124,88,73,0.2215165683495796],[124,88,74,0.22716359585710236],[124,88,75,0.23278913755142094],[124,88,76,0.23838972441345813],[124,88,77,0.2439602972486098],[124,88,78,0.24949393181111976],[124,88,79,0.254981662378237],[124,89,64,0.15849101357046333],[124,89,65,0.1659327188810905],[124,89,66,0.17329891981450002],[124,89,67,0.18060913157577882],[124,89,68,0.1878706225469239],[124,89,69,0.1950752780311577],[124,89,70,0.20221110948681875],[124,89,71,0.2077849107194648],[124,89,72,0.21323236154450395],[124,89,73,0.21865914838829809],[124,89,74,0.22406732609518792],[124,89,75,0.22945796273155789],[124,89,76,0.23483063531204446],[124,89,77,0.2401830241439536],[124,89,78,0.24551060707226668],[124,89,79,0.25080645466468865],[124,90,64,0.15679404738966843],[124,90,65,0.16414226200577484],[124,90,66,0.17143368305078482],[124,90,67,0.17869178919297693],[124,90,68,0.18592331986596175],[124,90,69,0.19311650945035652],[124,90,70,0.19983970832144873],[124,90,71,0.20507643845613893],[124,90,72,0.21028192020817396],[124,90,73,0.21546240314636106],[124,90,74,0.22062361710034298],[124,90,75,0.22577012033063734],[124,90,76,0.2309047477677651],[124,90,77,0.23602816097377394],[124,90,78,0.24113850121714747],[124,90,79,0.2462311467983684],[124,91,64,0.15480890977018286],[124,91,65,0.1620549031446984],[124,91,66,0.16926295092431376],[124,91,67,0.17646033063922453],[124,91,68,0.18365345265062522],[124,91,69,0.19082730490184743],[124,91,70,0.19704960328575216],[124,91,71,0.20205181336351652],[124,91,72,0.20701341730719794],[124,91,73,0.21194445297110964],[124,91,74,0.21685436894069612],[124,91,75,0.22175131091801062],[124,91,76,0.22664151186392353],[124,91,77,0.2315287876967591],[124,91,78,0.2364141400720075],[124,91,79,0.24129546750102765],[124,92,64,0.15255619909757476],[124,92,65,0.15969123583144237],[124,92,66,0.166806860930387],[124,92,67,0.17393393178064284],[124,92,68,0.18107873352910622],[124,92,69,0.1882234573420379],[124,92,70,0.19395249964923106],[124,92,71,0.19872267794617698],[124,92,72,0.20344195109581606],[124,92,73,0.20812405187373637],[124,92,74,0.2127821167003979],[124,92,75,0.21742790050286034],[124,92,76,0.22207109966714322],[124,92,77,0.22671878505223758],[124,92,78,0.23137494674706344],[124,92,79,0.23604015197001513],[124,93,64,0.1500562005861775],[124,93,65,0.15707171797387393],[124,93,66,0.16408560629321955],[124,93,67,0.17113203623380685],[124,93,68,0.17821736992260534],[124,93,69,0.18532148356446945],[124,93,70,0.1905577431998124],[124,93,71,0.19510137330804664],[124,93,72,0.19958315222774686],[124,93,73,0.20402034560652002],[124,93,74,0.20842967405409857],[124,93,75,0.21282644856198876],[124,93,76,0.2172238189207179],[124,93,77,0.22163213729894668],[124,93,78,0.22605843884271265],[124,93,79,0.230506040854897],[124,94,64,0.1473287723910577],[124,94,65,0.1542165686902249],[124,94,66,0.16111935607500996],[124,94,67,0.16807431293756708],[124,94,68,0.1750880729486604],[124,94,69,0.18213869664293042],[124,94,70,0.18687543999776565],[124,94,71,0.19120073004232657],[124,94,72,0.19545288549373344],[124,94,73,0.19965247983852874],[124,94,74,0.2038196455137337],[124,94,75,0.2079731240014254],[124,94,76,0.21212943431191061],[124,94,77,0.21630216223127965],[124,94,78,0.22050137238561965],[124,94,79,0.22473314485824925],[124,95,64,0.14439348169481733],[124,95,65,0.15114591194700142],[124,95,66,0.157928417065471],[124,95,67,0.16478084839523793],[124,95,68,0.17171029173522556],[124,95,69,0.17869141672603056],[124,95,70,0.18291612863072312],[124,95,71,0.187033672833205],[124,95,72,0.19106678186932208],[124,95,73,0.1950390565362951],[124,95,74,0.19897380579033339],[124,95,75,0.20289300785679257],[124,95,76,0.20681639550011277],[124,95,77,0.21076066805484533],[124,95,78,0.21473883247722042],[124,95,79,0.21875967534226465],[124,96,64,0.14126999363255377],[124,96,65,0.14788016989542796],[124,96,66,0.15453364034844663],[124,96,67,0.16127257644424572],[124,96,68,0.1681046759205826],[124,96,69,0.1746472837017986],[124,96,70,0.17869024864941224],[124,96,71,0.18261263649526524],[124,96,72,0.1864395988451151],[124,96,73,0.1901974368025519],[124,96,74,0.19391234483489134],[124,96,75,0.19760928163233368],[124,96,76,0.20131097116074456],[124,96,77,0.20503703674398693],[124,96,78,0.20880327065115534],[124,96,79,0.21262104131073256],[124,97,64,0.1379787156721402],[124,97,65,0.1444407085580102],[124,97,66,0.15095707520077686],[124,97,67,0.1575719481754659],[124,97,68,0.16429376888895994],[124,97,69,0.17033305807613414],[124,97,70,0.17420740289802727],[124,97,71,0.17794879135484126],[124,97,72,0.18158440716995086],[124,97,73,0.18514288856234318],[124,97,74,0.1886529772350651],[124,97,75,0.19214230026667706],[124,97,76,0.1956362883627357],[124,97,77,0.19915723354146367],[124,97,78,0.20272348894854325],[124,97,79,0.20634881312388956],[124,98,64,0.134541699841437],[124,98,65,0.14085073829182598],[124,98,66,0.14722287275660692],[124,98,67,0.15370384440831206],[124,98,68,0.16030293408422655],[124,98,69,0.16575578917568512],[124,98,70,0.16947541163677657],[124,98,71,0.1730510760447772],[124,98,72,0.17651160228617124],[124,98,73,0.1798875776142104],[124,98,74,0.1832099147511116],[124,98,75,0.1865085487972196],[124,98,76,0.1898112766577707],[124,98,77,0.19314274229713255],[124,98,78,0.1965235707331285],[124,98,79,0.19996965329383276],[124,99,64,0.13098380498587273],[124,99,65,0.1371364712470152],[124,99,66,0.14335844166452444],[124,99,67,0.1496967329267438],[124,99,68,0.15616151655074972],[124,99,69,0.16092003521855341],[124,99,70,0.16449915652288521],[124,99,71,0.16792503593776734],[124,99,72,0.17122773887277526],[124,99,73,0.17443940068199207],[124,99,74,0.17759270087208548],[124,99,75,0.18071948187138817],[124,99,76,0.18384951631392235],[124,99,77,0.18700942637470658],[124,99,78,0.19022175827847843],[124,99,79,0.19350421469676637],[124,100,64,0.1273341210506055],[124,100,65,0.13332853784928658],[124,100,66,0.13939585777697452],[124,100,67,0.1455840724976055],[124,100,68,0.15190424167345892],[124,100,69,0.15582648771877194],[124,100,70,0.15927921267368733],[124,100,71,0.16257146558711888],[124,100,72,0.16573418704032528],[124,100,73,0.16880065921356271],[124,100,74,0.17180490636545911],[124,100,75,0.1747802453254581],[124,100,76,0.17775799017834384],[124,100,77,0.1807663148870068],[124,100,78,0.18382927717010827],[124,100,79,0.18696600652882167],[124,101,64,0.1236249393653734],[124,101,65,0.12946079499356425],[124,101,66,0.13537051251965168],[124,101,67,0.14140280161463045],[124,101,68,0.14694135070153988],[124,101,69,0.1504738043321772],[124,101,70,0.1538138147446901],[124,101,71,0.15698848824378106],[124,101,72,0.16002930096036705],[124,101,73,0.1629702890215489],[124,101,74,0.16584638888258652],[124,101,75,0.1686919326449395],[124,101,76,0.17153930273737342],[124,101,77,0.17441774989123673],[124,101,78,0.17735237789844147],[124,101,79,0.18036329820522498],[124,102,64,0.11986068923418011],[124,102,65,0.12553755593005622],[124,102,66,0.13128667526213797],[124,102,67,0.13715724739109236],[124,102,68,0.14146136475939672],[124,102,69,0.14489777921114985],[124,102,70,0.14813927272413083],[124,102,71,0.1512129334640267],[124,102,72,0.1541504189865205],[124,102,73,0.1569860999492002],[124,102,74,0.15975535791693016],[124,102,75,0.16249304225390293],[124,102,76,0.1652320906387807],[124,102,77,0.16800231728361537],[124,102,78,0.1708293724849241],[124,102,79,0.1737338766901953],[124,103,64,0.11602491652421562],[124,103,65,0.1215412988063343],[124,103,66,0.1271259280130007],[124,103,67,0.13223987511046723],[124,103,68,0.13580785624205027],[124,103,69,0.1391608194506518],[124,103,70,0.1423188245473011],[124,103,71,0.14530864129915927],[124,103,72,0.1481617179934348],[124,103,73,0.15091230117809426],[124,103,74,0.15359571214815684],[124,103,75,0.15624678528564886],[124,103,76,0.15889847289909512],[124,103,77,0.16158062074731647],[124,103,78,0.16431891797468184],[124,103,79,0.16713402473466998],[124,104,64,0.1121028979212972],[124,104,65,0.1174565395914548],[124,104,66,0.1228290751435542],[124,104,67,0.1265460485070205],[124,104,68,0.13004084110820807],[124,104,69,0.13332341994683658],[124,104,70,0.13641319704465904],[124,104,71,0.1393363094180393],[124,104,72,0.14212358796490462],[124,104,73,0.14480867850682133],[124,104,74,0.14742632060613373],[124,104,75,0.15001078931722345],[124,104,76,0.15259450456858145],[124,104,77,0.1552068124111589],[124,104,78,0.15787294191080298],[124,104,79,0.16061314101235052],[124,105,64,0.10808415846736222],[124,105,65,0.11327231662045216],[124,105,66,0.11713493797682711],[124,105,67,0.12078409576256105],[124,105,68,0.12421667387293855],[124,105,69,0.12744194288475374],[124,105,70,0.1304784767180113],[124,105,71,0.13335146655998498],[124,105,72,0.136090718719187],[124,105,73,0.13872880382820374],[124,105,74,0.14129936299031937],[124,105,75,0.14383557600950292],[124,105,76,0.1463687963865824],[124,105,77,0.1489273573088674],[124,105,78,0.15153555240858654],[124,105,79,0.15421279462105852],[124,106,64,0.10373763799873535],[124,106,65,0.10763903084737242],[124,106,66,0.11141418242922209],[124,106,67,0.11500466692955873],[124,106,68,0.11838597696558392],[124,106,69,0.12156666159174732],[124,106,70,0.12456427982452585],[124,106,71,0.12740277915227383],[124,106,72,0.13011055159728294],[124,106,73,0.1327186384036304],[124,106,74,0.13525908884067217],[124,106,75,0.13776347816819962],[124,106,76,0.14026158936413727],[124,106,77,0.14278026277180828],[124,106,78,0.1453424173836542],[124,106,79,0.14796624704560105],[124,107,64,0.09815797152603982],[124,107,65,0.10199264033604655],[124,107,66,0.10570945174402864],[124,107,67,0.10925052532453332],[124,107,68,0.11259127613819295],[124,107,69,0.11573952369739762],[124,107,70,0.11871165791667915],[124,107,71,0.12153011236673969],[124,107,72,0.12422150725295864],[124,107,73,0.1268149363434578],[124,107,74,0.12934040315079293],[124,107,75,0.13182741124491534],[124,107,76,0.13430371314750303],[124,107,77,0.1367942218315932],[124,107,78,0.1393200884280414],[124,107,79,0.14189794932525376],[124,108,64,0.09261045517108069],[124,108,65,0.09638597448679546],[124,108,66,0.10005280210399496],[124,108,67,0.10355376476013135],[124,108,68,0.10686434023185122],[124,108,69,0.10999163190336017],[124,108,70,0.11295073716106839],[124,108,71,0.11576234398419906],[124,108,72,0.11845098798724592],[124,108,73,0.12104344683970106],[124,108,74,0.12356727710297259],[124,108,75,0.12604949812102273],[124,108,76,0.12851542719697723],[124,108,77,0.130987669885155],[124,108,78,0.1334852688289286],[124,108,79,0.13602301418297422],[124,109,64,0.08711209493672288],[124,109,65,0.09083682050927142],[124,109,66,0.09446244644589048],[124,109,67,0.09793266446657807],[124,109,68,0.10122316860491062],[124,109,69,0.10434038528739434],[124,109,70,0.10729803401673983],[124,109,71,0.1101148733434356],[124,109,72,0.1128130966430342],[124,109,73,0.11541685695072182],[124,109,74,0.1179509255558664],[124,109,75,0.12043948868397246],[124,109,76,0.12290508621756861],[124,109,77,0.12536769603324638],[124,109,78,0.1278439671615065],[124,109,79,0.13034660461246922],[124,110,64,0.08165079642463946],[124,110,65,0.08533385042147085],[124,110,66,0.0889275027623802],[124,110,67,0.09237646895901037],[124,110,68,0.09565682929984586],[124,110,69,0.09877440289467221],[124,110,70,0.10174149081190674],[124,110,71,0.10457479406324248],[124,110,72,0.10729396951633177],[124,110,73,0.10992030503490931],[124,110,74,0.11247551814680305],[124,110,75,0.11498068219742834],[124,110,76,0.1174552836031771],[124,110,77,0.11991641347765505],[124,110,78,0.12237809656596896],[124,110,79,0.12485076009121168],[124,111,64,0.07616818259606048],[124,111,65,0.07981905775620342],[124,111,66,0.083390248058935],[124,111,67,0.08682767594003427],[124,111,68,0.0901080056493068],[124,111,69,0.09323655246372979],[124,111,70,0.09622420019445664],[124,111,71,0.09908551072649815],[124,111,72,0.10183745857011818],[124,111,73,0.10449827359946226],[124,111,74,0.10708639581973378],[124,111,75,0.10961954569722179],[124,111,76,0.1121139132794963],[124,111,77,0.11458346902798576],[124,111,78,0.117039398983719],[124,111,79,0.11948966659199885],[124,112,64,0.07059984119659302],[124,112,65,0.07422704093579932],[124,112,66,0.07778484843916776],[124,112,67,0.08122065779190195],[124,112,68,0.08451196401533373],[124,112,69,0.08766370837723741],[124,112,70,0.09068536812581347],[124,112,71,0.09358927728978834],[124,112,72,0.0963895586833732],[124,112,73,0.09910115210098486],[124,112,74,0.10173894202822356],[124,112,75,0.10431698792731249],[124,112,76,0.10684785988736425],[124,112,77,0.10934208216411671],[124,112,78,0.11180768687173631],[124,112,79,0.11424987983339543],[124,113,64,0.06490400152165135],[124,113,65,0.06851447674062529],[124,113,66,0.0720669164149795],[124,113,67,0.07551051574132162],[124,113,68,0.0788238816450376],[124,113,69,0.08201172773155889],[124,113,70,0.08508214027873821],[124,113,71,0.08804512972250042],[124,113,72,0.09091177877954593],[124,113,73,0.09369347404184213],[124,113,74,0.09640122380121231],[124,113,75,0.09904506463508542],[124,113,76,0.10163355905821961],[124,113,77,0.1041733863213918],[124,113,78,0.10666902821800238],[124,113,79,0.10912255154544634],[124,114,64,0.059061124360948444],[124,114,65,0.06266008158070874],[124,114,66,0.06621367846551697],[124,114,67,0.0696732725162431],[124,114,68,0.0730188764506022],[124,114,69,0.07625513049562681],[124,114,70,0.07938875390527386],[124,114,71,0.08242734490923292],[124,114,72,0.08537876209949333],[124,114,73,0.08825057608727066],[124,114,74,0.09104959357254326],[124,114,75,0.09378145578394563],[124,114,76,0.09645031306392457],[124,114,77,0.09905857719407743],[124,114,78,0.10160675287957645],[124,114,79,0.10409334964140723],[124,115,64,0.05307012993037764],[124,115,65,0.05666091085072189],[124,115,66,0.06022038557972409],[124,115,67,0.06370243810319126],[124,115,68,0.06708877452365222],[124,115,69,0.07038411590108733],[124,115,70,0.0735938488821267],[124,115,71,0.07672308911704181],[124,115,72,0.07977631041384531],[124,115,73,0.0827570307119047],[124,115,74,0.08566755636148979],[124,115,75,0.08850878605493848],[124,115,76,0.09128007561682078],[124,115,77,0.09397916472558707],[124,115,78,0.09660216650855767],[124,115,79,0.0991436208273286],[124,116,64,0.04694485116250942],[124,116,65,0.05052887940229087],[124,116,66,0.05409693803961674],[124,116,67,0.057605780155498755],[124,116,68,0.061039070028670595],[124,116,69,0.06440175635542533],[124,116,70,0.06769793900779397],[124,116,71,0.07093020725912749],[124,116,72,0.07409952767592382],[124,116,73,0.07720517535671594],[124,116,74,0.08024470931901849],[124,116,75,0.08321399273865579],[124,116,76,0.08610725865244027],[124,116,77,0.08891722164589186],[124,116,78,0.09163523596308036],[124,116,79,0.09425150039702891],[124,117,64,0.04071071618161423],[124,117,65,0.04428750698734288],[124,117,66,0.047864728277276794],[124,117,67,0.051402302809416746],[124,117,68,0.05488608109609472],[124,117,69,0.05832137229873608],[124,117,70,0.06171104670720475],[124,117,71,0.06505515578148252],[124,117,72,0.06835108555055684],[124,117,73,0.07159374008275382],[124,117,74,0.07477575512519671],[124,117,75,0.07788774195702314],[124,117,76,0.08091856145227413],[124,117,77,0.08385562830445771],[124,117,78,0.08668524532608675],[124,117,79,0.08939296770395619],[124,118,64,0.034401663506752056],[124,118,65,0.03796889224709024],[124,118,66,0.04155370536600531],[124,118,67,0.04511943740268472],[124,118,68,0.0486543050872479],[124,118,69,0.05216409119406611],[124,118,70,0.05565050409032763],[124,118,71,0.05911108181460594],[124,118,72,0.06253961309776805],[124,118,73,0.0659265755824956],[124,118,74,0.06925959063059599],[124,118,75,0.07275279852746241],[124,118,76,0.07829496905230136],[124,118,77,0.08373230456749046],[124,118,78,0.08904995738623567],[124,118,79,0.09423300861417581],[124,119,64,0.028057293261879064],[124,119,65,0.031610918559360504],[124,119,66,0.03519966444997588],[124,119,67,0.038790448343248435],[124,119,68,0.04237397636915538],[124,119,69,0.04595659362355089],[124,119,70,0.05187682921546723],[124,119,71,0.05796717825710404],[124,119,72,0.06402418664685777],[124,119,73,0.07003643729207573],[124,119,74,0.07598936910734203],[124,119,75,0.0818659628508579],[124,119,76,0.08764742961634936],[124,119,77,0.09331390077905409],[124,119,78,0.09804268523764371],[124,119,79,0.10137090913344533],[124,120,64,0.022154784414350107],[124,120,65,0.028430857380961023],[124,120,66,0.034733067483565534],[124,120,67,0.041032211845049175],[124,120,68,0.04732217017634216],[124,120,69,0.0536109325872633],[124,120,70,0.05989952189619964],[124,120,71,0.06618243519815549],[124,120,72,0.07244857130952354],[124,120,73,0.07868215317504407],[124,120,74,0.08486364324638046],[124,120,75,0.09097064991021947],[124,120,76,0.09697882311970622],[124,120,77,0.10186372385896257],[124,120,78,0.10504171762704734],[124,120,79,0.10815380602758169],[124,121,64,0.029670545647960924],[124,121,65,0.03599481385785455],[124,121,66,0.04236157923903042],[124,121,67,0.048745269764943824],[124,121,68,0.05514225732622365],[124,121,69,0.06156113196500591],[124,121,70,0.06800194842273749],[124,121,71,0.07445692826327566],[124,121,72,0.0809116319007777],[124,121,73,0.08734611497300208],[124,121,74,0.09373606642436798],[124,121,75,0.10005392576676378],[124,121,76,0.10610157160838718],[124,121,77,0.10912721415148482],[124,121,78,0.11207535911492618],[124,121,79,0.11497299687206827],[124,122,64,0.037408643698713155],[124,122,65,0.043762127270427977],[124,122,66,0.05017353876244112],[124,122,67,0.05662086232388344],[124,122,68,0.0631028938718794],[124,122,69,0.06962882634274914],[124,122,70,0.07619784157352419],[124,122,71,0.08280005545998971],[124,122,72,0.0894179174420347],[124,122,73,0.09602758475570851],[124,122,74,0.10260026821723704],[124,122,75,0.10910354643956995],[124,122,76,0.11362149792019298],[124,122,77,0.116416435723469],[124,122,78,0.11914337055683638],[124,122,79,0.12183395474398605],[124,123,64,0.045392576982569856],[124,123,65,0.05175554259339126],[124,123,66,0.0581905471935144],[124,123,67,0.06467897199872458],[124,123,68,0.07122190313459824],[124,123,69,0.07782910684083934],[124,123,70,0.08449898619247125],[124,123,71,0.09121974760908806],[124,123,72,0.09797100661352501],[124,123,73,0.10472535991243664],[124,123,74,0.11144992002154681],[124,123,75,0.11810780882141293],[124,123,76,0.1211441921563165],[124,123,77,0.12372367604475838],[124,123,78,0.12624356749434],[124,123,79,0.1287398398355],[124,124,64,0.05364004618621635],[124,124,65,0.059992360316523614],[124,124,66,0.06642915484413223],[124,124,67,0.07293496987992143],[124,124,68,0.07951298669958216],[124,124,69,0.0861734839028403],[124,124,70,0.09291417641186793],[124,124,71,0.09972157812259176],[124,124,72,0.10657278931672601],[124,124,73,0.1134372431486004],[124,124,74,0.12027840695249804],[124,124,75,0.1261777379734245],[124,124,76,0.12865522141263858],[124,124,77,0.13103945064565106],[124,124,78,0.13337137199065502],[124,124,79,0.13569084099869097],[124,125,64,0.06216168027434823],[124,125,65,0.06848319320619284],[124,125,66,0.074899660291321],[124,125,67,0.08139847188784081],[124,125,68,0.08798465516875323],[124,125,69,0.09466891141105933],[124,125,70,0.10144835223951994],[124,125,71,0.108308030473395],[124,125,72,0.11522288190356401],[124,125,73,0.12215962012303459],[124,125,74,0.12907857975170445],[124,125,75,0.133835068829572],[124,125,76,0.13613899646752411],[124,125,77,0.1383522743503252],[124,125,78,0.14051939641826386],[124,125,79,0.14268357805097406],[124,126,64,0.07096001422465811],[124,126,65,0.07723097089883733],[124,126,66,0.08360515041212861],[124,126,67,0.09007242591473019],[124,126,68,0.09663937668606264],[124,126,69,0.10331701235264283],[124,126,70,0.11010191855920565],[124,126,71,0.11697792625539563],[124,126,72,0.12391817878384773],[124,126,73,0.1308871472144147],[124,126,74,0.1378425889369954],[124,126,75,0.14142045074757226],[124,126,76,0.14357870668432313],[124,126,77,0.14564843653004908],[124,126,78,0.1476770611301484],[124,126,79,0.14971056714295938],[124,127,64,0.08002872024533551],[124,127,65,0.08623019411772039],[124,127,66,0.09254078316453035],[124,127,67,0.098952431681915],[124,127,68,0.10547294497993678],[124,127,69,0.11211350770319932],[124,127,70,0.11887024809950862],[124,127,71,0.1257260152424281],[124,127,72,0.13265254163799514],[124,127,73,0.13961255042935516],[124,127,74,0.14656180196120866],[124,127,75,0.14891390775410804],[124,127,76,0.15095622866311734],[124,127,77,0.15291178049838805],[124,127,78,0.15483024646827576],[124,127,79,0.15675974998224795],[124,128,64,0.08935209410821603],[124,128,65,0.09546644018071845],[124,128,66,0.10169331479460383],[124,128,67,0.10802629497943753],[124,128,68,0.11447406854877257],[124,128,69,0.1210478500821223],[124,128,70,0.12774336982159049],[124,128,71,0.13454272876048992],[124,128,72,0.14141662738124872],[124,128,73,0.14832653639899887],[124,128,74,0.15420207360994587],[124,128,75,0.1562952826778647],[124,128,76,0.15825200845549645],[124,128,77,0.16012348715819752],[124,128,78,0.1619609795287004],[124,128,79,0.16381408765026695],[124,129,64,0.09890479812437526],[124,129,65,0.10491612135821432],[124,129,66,0.11104087304058177],[124,129,67,0.11727381784647099],[124,129,68,0.12362418250923048],[124,129,69,0.13010306363246998],[124,129,70,0.1367058440822467],[124,129,71,0.14341409760288704],[124,129,72,0.1501978559522932],[124,129,73,0.15701781635129392],[124,129,74,0.16150740659095802],[124,129,75,0.16354416007615485],[124,129,76,0.1654449171641091],[124,129,77,0.16726186299838372],[124,129,78,0.1690471560703209],[124,129,79,0.17085121969608352],[124,130,64,0.10865186219807504],[124,130,65,0.11454649754650952],[124,130,66,0.12055297780916871],[124,130,67,0.12666682615559374],[124,130,68,0.1328974845335959],[124,130,69,0.13925579148855152],[124,130,70,0.14573682584477277],[124,130,71,0.15232183564216728],[124,130,72,0.1589805189336208],[124,130,73,0.16567324389283067],[124,130,74,0.16863259986652215],[124,130,75,0.1706397314919067],[124,130,76,0.17251207975597532],[124,130,77,0.1743021325272915],[124,130,78,0.1760622979240699],[124,130,79,0.17784318914126165],[124,131,64,0.11854894431823244],[124,131,65,0.12431594464219015],[124,131,66,0.13019081071734684],[124,131,67,0.1361694359810296],[124,131,68,0.14226119622033087],[124,131,69,0.1484765521149045],[124,131,70,0.1548103171353672],[124,131,71,0.16124359022462278],[124,131,72,0.16774602995166954],[124,131,73,0.17337573180367313],[124,131,74,0.17555980441775643],[124,131,75,0.17756060264895854],[124,131,76,0.1794286769233817],[124,131,77,0.18121623521748467],[124,131,78,0.18297534622940378],[124,131,79,0.18475623398159507],[124,132,64,0.1285427329883818],[124,132,65,0.13417435292062402],[124,132,66,0.13990759976370845],[124,132,67,0.14573841699873358],[124,132,68,0.1516759001435818],[124,132,69,0.1577300469266046],[124,132,70,0.16389544369175107],[124,132,71,0.17015318744321628],[124,132,72,0.17647313897102357],[124,132,73,0.18007937526036752],[124,132,74,0.18227184394607476],[124,132,75,0.18428473068506102],[124,132,76,0.18616790818660228],[124,132,77,0.18797281331853094],[124,132,78,0.1897506729883883],[124,132,79,0.1915508217397292],[124,133,64,0.1385531297238489],[124,133,65,0.1440438893345835],[124,133,66,0.1496279797668081],[124,133,67,0.1553011474936638],[124,133,68,0.1610720837746371],[124,133,69,0.1669503116645975],[124,133,70,0.1729302662343641],[124,133,71,0.17899319587183324],[124,133,72,0.1841373681916994],[124,133,73,0.18657005840257268],[124,133,74,0.18878246517835365],[124,133,75,0.1908201209491885],[124,133,76,0.19273184030551518],[124,133,77,0.19456789077758413],[124,133,78,0.1963782514434412],[124,133,79,0.1982109635062321],[124,134,64,0.14846364766348785],[124,134,65,0.15380771591208448],[124,134,66,0.15923505773927005],[124,134,67,0.16474102129937845],[124,134,68,0.17033385982855156],[124,134,69,0.17602272522522788],[124,134,70,0.18180207286529565],[124,134,71,0.18765353014884437],[124,134,72,0.19047001501062155],[124,134,73,0.19292306524614486],[124,134,74,0.19516225917921068],[124,134,75,0.1972318763298389],[124,134,76,0.19917932809896513],[124,134,77,0.20105336995283943],[124,134,78,0.20290240137289592],[124,134,79,0.20477285765022885],[124,135,64,0.1581686142801682],[124,135,65,0.16335972620514205],[124,135,66,0.16862261918781904],[124,135,67,0.1739520949366964],[124,135,68,0.1793560121145992],[124,135,69,0.18484334595146742],[124,135,70,0.19040881878680277],[124,135,71,0.19400690597257153],[124,135,72,0.1967281643604829],[124,135,73,0.19920404210725165],[124,135,74,0.20147243113214075],[124,135,75,0.20357603794539886],[124,135,76,0.2055605626621789],[124,135,77,0.20747296074252347],[124,135,78,0.20935979172676553],[124,135,79,0.2112656589615952],[124,136,64,0.16757939308948966],[124,136,65,0.17261107263315345],[124,136,66,0.1777019394853588],[124,136,67,0.1828461630631664],[124,136,68,0.188051314881116],[124,136,69,0.1933264500331901],[124,136,70,0.19722451937470487],[124,136,71,0.20022782261273142],[124,136,72,0.20296342383359064],[124,136,73,0.2054610378554093],[124,136,74,0.20775686324793588],[124,136,75,0.2098917430628385],[124,136,76,0.21190940225165],[124,136,77,0.21385476617952445],[124,136,78,0.21577236438700095],[124,136,79,0.21770482348678138],[124,137,64,0.17662488792494904],[124,137,65,0.18149058670983076],[124,137,66,0.186402103303903],[124,137,67,0.191352955804308],[124,137,68,0.19635058678698833],[124,137,69,0.2001728721110106],[124,137,70,0.20345799538458464],[124,137,71,0.20646388598431972],[124,137,72,0.20921037530877862],[124,137,73,0.2117254103337409],[124,137,74,0.2140432131766899],[124,137,75,0.21620251024078563],[124,137,76,0.21824483542523113],[124,137,77,0.2202129116539591],[124,137,78,0.2221491147295354],[124,137,79,0.22409402326525682],[124,138,64,0.1852524260348943],[124,138,65,0.1899455741408895],[124,138,66,0.19467069170742324],[124,138,67,0.1990781489033988],[124,138,68,0.20290566753568853],[124,138,69,0.20645791966496266],[124,138,70,0.20973171055935447],[124,138,71,0.21273540312627937],[124,138,72,0.2154870392412393],[124,138,73,0.21801251779677033],[124,138,74,0.22034383416815292],[124,138,75,0.22251738559303055],[124,138,76,0.22457234675099963],[124,138,77,0.22654911960737148],[124,138,78,0.2284878613537442],[124,138,79,0.2304270940378696],[124,139,64,0.19266803964620136],[124,139,65,0.19717105731897006],[124,139,66,0.20144052990429273],[124,139,67,0.2054772892034613],[124,139,68,0.20926714257420415],[124,139,69,0.2127929725011836],[124,139,70,0.21605026625857407],[124,139,71,0.21904564612920918],[124,139,72,0.22179508817824842],[124,139,73,0.2243221933197317],[124,139,74,0.22665651510747462],[124,139,75,0.22883194849709598],[124,139,76,0.23088518363018187],[124,139,77,0.23285422848541934],[124,139,78,0.23477700402599253],[124,139,79,0.23669001524863223],[124,140,64,0.19930898025012167],[124,140,65,0.20373488422775912],[124,140,66,0.2079387760145244],[124,140,67,0.21192201258097118],[124,140,68,0.21567008342565186],[124,140,69,0.2191648093552282],[124,140,70,0.22240008629361474],[124,140,71,0.2253805309499368],[124,140,72,0.22811980738150164],[124,140,73,0.23063900021229455],[124,140,74,0.23296503863452608],[124,140,75,0.23512917515342996],[124,140,76,0.23716552285752807],[124,140,77,0.23910965480862467],[124,140,78,0.2409972689487289],[124,140,79,0.24286292171587065],[124,141,64,0.20596988961781168],[124,141,65,0.2103157645976148],[124,141,66,0.21445117461283963],[124,141,67,0.21837781471898812],[124,141,68,0.2220806447823094],[124,141,69,0.2255401909331404],[124,141,70,0.22874851980348337],[124,141,71,0.23170801082331233],[124,141,72,0.2344298004976982],[124,141,73,0.23693226653710317],[124,141,74,0.23923955562693888],[124,141,75,0.24138015847482444],[124,141,76,0.24338553561618986],[124,141,77,0.2452887972914522],[124,141,78,0.24712344053174712],[124,141,79,0.24892214640587962],[124,142,64,0.21258885774342712],[124,142,65,0.21685304997668498],[124,142,66,0.22091842146402102],[124,142,67,0.2247868020896689],[124,142,68,0.22844243305944278],[124,142,69,0.23186436180704634],[124,142,70,0.235042629891125],[124,142,71,0.23797718211118246],[124,142,72,0.2406764382647525],[124,142,73,0.24315589688795258],[124,142,74,0.2454367743880959],[124,142,75,0.24754468285119735],[124,142,76,0.24950834967170127],[124,142,77,0.2513583820070371],[124,142,78,0.2531260789062551],[124,142,79,0.254842293800675],[124,143,64,0.2190881918912466],[124,143,65,0.22327032413620018],[124,143,66,0.22726555659970477],[124,143,67,0.23107564713339493],[124,143,68,0.23468395962020838],[124,143,69,0.23806793109043603],[124,143,70,0.24121542373921778],[124,143,71,0.24412378045738797],[124,143,72,0.246798534075548],[124,143,73,0.24925213975517366],[124,143,74,0.2515027335229345],[124,143,75,0.25357291984222047],[124,143,76,0.2554885910045963],[124,143,77,0.25727778100377174],[124,143,78,0.2589695564261523],[124,143,79,0.2605929467555901],[124,144,64,0.22541973950026042],[124,144,65,0.22951921893296834],[124,144,66,0.23344397834070102],[124,144,67,0.23719546182974235],[124,144,68,0.24075600103907155],[124,144,69,0.24410132244697852],[124,144,70,0.24721698289598493],[124,144,71,0.25009758072292554],[124,144,72,0.25274561275774565],[124,144,73,0.25517034463078964],[124,144,74,0.25738669693594574],[124,144,75,0.25941414972042404],[124,144,76,0.2612756676868138],[124,144,77,0.26299664839946896],[124,144,78,0.26460389568551107],[124,144,79,0.26612462031108197],[124,145,64,0.231549038248403],[124,145,65,0.2355645480945111],[124,145,66,0.2394176716184159],[124,145,67,0.2431092597098647],[124,145,68,0.24644152968843386],[124,145,69,0.24947580735557837],[124,145,70,0.25248258805729684],[124,145,71,0.2554662776314625],[124,145,72,0.2584241216294945],[124,145,73,0.26086584409115526],[124,145,74,0.26304269802957075],[124,145,75,0.2650211788710168],[124,145,76,0.2668212568068473],[124,145,77,0.2684656529412345],[124,145,78,0.2699788985287465],[124,145,79,0.2713864081336438],[124,146,64,0.23744581336897608],[124,146,65,0.24137523404664388],[124,146,66,0.24515463175295005],[124,146,67,0.24815790259300247],[124,146,68,0.2509607109431601],[124,146,69,0.25371329224976513],[124,146,70,0.2564309249021575],[124,146,71,0.2591212007199962],[124,146,72,0.26178485778799204],[124,146,73,0.26441662282556166],[124,146,74,0.2670060615480952],[124,146,75,0.2695384354965],[124,146,76,0.2719955638389969],[124,146,77,0.27363920774511785],[124,146,78,0.2750483316090139],[124,146,79,0.27633164733673093],[124,147,64,0.24308351090346228],[124,147,65,0.2469238752090422],[124,147,66,0.2500199543783908],[124,147,67,0.25263360867427004],[124,147,68,0.25516195421968746],[124,147,69,0.257630490274269],[124,147,70,0.26005722675875703],[124,147,71,0.2624529761088136],[124,147,72,0.2648220103305465],[124,147,73,0.26716274032367765],[124,147,74,0.26946841647848213],[124,147,75,0.27172784954194207],[124,147,76,0.27392615074461435],[124,147,77,0.27604549018296515],[124,147,78,0.27806587246279735],[124,147,79,0.279965928628217],[124,148,64,0.24843887887247415],[124,148,65,0.2519907674831839],[124,148,66,0.2544549809707903],[124,148,67,0.25680404241886057],[124,148,68,0.2590568582802305],[124,148,69,0.26124095264289254],[124,148,70,0.26337704136506573],[124,148,71,0.26547914420433594],[124,148,72,0.26755505984182987],[124,148,73,0.26960687670619315],[124,148,74,0.27163151917809925],[124,148,75,0.27362132871354855],[124,148,76,0.2755646793878381],[124,148,77,0.2774466273324898],[124,148,78,0.27924959351529155],[124,148,79,0.28095407929947624],[124,149,64,0.25349159670221466],[124,149,65,0.2563811123553107],[124,149,66,0.25859270854794786],[124,149,67,0.26067711650337616],[124,149,68,0.2626551706097767],[124,149,69,0.2645563383301788],[124,149,70,0.26640396993053495],[124,149,71,0.26821523020637883],[124,149,72,0.27000138716924504],[124,149,73,0.27176815071425675],[124,149,74,0.27351606144305973],[124,149,75,0.27524092974126624],[124,149,76,0.27693432513998567],[124,149,77,0.27858411592782784],[124,149,78,0.2801750589238414],[124,149,79,0.28168943927406087],[124,150,64,0.2582239532332946],[124,150,65,0.2604780865088381],[124,150,66,0.2624378048260175],[124,150,67,0.2642591605360653],[124,150,68,0.2659649822624309],[124,150,69,0.2675865608159016],[124,150,70,0.26914976474179786],[124,150,71,0.27067479336496164],[124,150,72,0.2721762769899726],[124,150,73,0.27366344173746004],[124,150,74,0.2751403397958207],[124,150,75,0.27660614575973574],[124,150,76,0.2780555196237639],[124,150,77,0.27947903690213804],[124,150,78,0.28086368625587094],[124,150,79,0.282193434926508],[124,151,64,0.2624194435927509],[124,151,65,0.2642836034631019],[124,151,66,0.2659936433416736],[124,151,67,0.26755511559019385],[124,151,68,0.26899288012020806],[124,151,69,0.2703398957849022],[124,151,70,0.2716243915355813],[124,151,71,0.272869444916952],[124,151,72,0.2740928939210687],[124,151,73,0.27530732841201155],[124,151,74,0.27652016250964473],[124,151,75,0.27773378918010794],[124,151,76,0.2789458181441435],[124,151,77,0.2801493980833755],[124,151,78,0.2813336240006684],[124,151,79,0.2824840304750731],[124,152,64,0.2661683441585867],[124,152,65,0.26779857500521065],[124,152,66,0.2692624882693185],[124,152,67,0.270568682753589],[124,152,68,0.2717440562655654],[124,152,69,0.27282304949760144],[124,152,70,0.2738360563712744],[124,152,71,0.27480883445424337],[124,152,72,0.27576223094472124],[124,152,73,0.2767120032360728],[124,152,74,0.27766873605479897],[124,152,75,0.27863785699223514],[124,152,76,0.2796197520808776],[124,152,77,0.28060998290201583],[124,152,78,0.28159960655395794],[124,152,79,0.28257559966127144],[124,153,64,0.269622895296568],[124,153,65,0.2710230778965299],[124,153,66,0.27224563050445894],[124,153,67,0.2733024253867905],[124,153,68,0.2742223741697513],[124,153,69,0.27504118754669316],[124,153,70,0.2757911967349861],[124,153,71,0.27650060447364433],[124,153,72,0.2771930299182774],[124,153,73,0.27788716299144794],[124,153,74,0.27859653077441593],[124,153,75,0.27932937832206906],[124,153,76,0.28008866608159466],[124,153,77,0.2808721858989623],[124,153,78,0.2816727974075449],[124,153,79,0.28247878641212465],[124,154,64,0.27278148362594756],[124,154,65,0.2739564697476603],[124,154,66,0.274943474699872],[124,154,67,0.2757578247813921],[124,154,68,0.276430391397995],[124,154,69,0.2769979237140857],[124,154,70,0.27749443660495476],[124,154,71,0.2779503128560192],[124,154,72,0.27839167393528225],[124,154,73,0.27883987475669436],[124,154,74,0.2793111255931356],[124,154,75,0.2798162440637531],[124,154,76,0.28036053988871307],[124,154,77,0.2809438348771582],[124,154,78,0.2815606203935171],[124,154,79,0.2822003543354559],[124,155,64,0.2756420094215681],[124,155,65,0.27659745374412686],[124,155,66,0.27735557693780716],[124,155,67,0.27793528890690095],[124,155,68,0.27836933852930157],[124,155,69,0.2786952686387566],[124,155,70,0.2789485052044668],[124,155,71,0.2791613230181025],[124,155,72,0.2793620512991581],[124,155,73,0.2795744172915918],[124,155,74,0.27981703155604415],[124,155,75,0.28010301839991103],[124,155,76,0.2804397946272559],[124,155,77,0.28082899953433427],[124,155,78,0.2812665788267692],[124,155,79,0.28174302489362796],[124,156,64,0.2782019218674675],[124,156,65,0.2789440918977296],[124,156,66,0.2794806327145497],[124,156,67,0.2798341139277952],[124,156,68,0.2800390539821681],[124,156,69,0.2801335379998208],[124,156,70,0.2801541191620448],[124,156,71,0.2801346614738472],[124,156,72,0.2801053908643193],[124,156,73,0.2800920975657751],[124,156,74,0.2801154939880059],[124,156,75,0.2801907320160354],[124,156,76,0.28032708337301404],[124,156,77,0.280527786406863],[124,156,78,0.2807900623826295],[124,156,79,0.28110530409493956],[124,157,64,0.2804582010786956],[124,157,65,0.2809937664886286],[124,157,66,0.2813164149042777],[124,157,67,0.28145239816352186],[124,157,68,0.28143787442903045],[124,157,69,0.281311219910933],[124,157,70,0.2811098277906775],[124,157,71,0.28086884253425515],[124,157,72,0.28062006849161325],[124,157,73,0.28039104219636624],[124,157,74,0.2802042730554492],[124,157,75,0.28007665680682864],[124,157,76,0.28001906581255914],[124,157,77,0.2800361199470546],[124,157,78,0.28012614153928944],[124,157,79,0.28028129753566505],[124,158,64,0.28240728654294445],[124,158,65,0.2827430893506274],[124,158,66,0.2828596613571528],[124,158,67,0.28278690815281393],[124,158,68,0.2825624804715099],[124,158,69,0.282224801211972],[124,158,70,0.28181182118815873],[124,158,71,0.2813596598652824],[124,158,72,0.28090138435585094],[124,158,73,0.28046596355047776],[124,158,74,0.28007740250385493],[124,158,75,0.27975406186371105],[124,158,76,0.27950816679824436],[124,158,77,0.27934550954829157],[124,158,78,0.2792653494074197],[124,158,79,0.27926051361932136],[124,159,64,0.2840449516165486],[124,159,65,0.28418775863589857],[124,159,66,0.2841059117711156],[124,159,67,0.2838328964690402],[124,159,68,0.28340769723471265],[124,159,69,0.2828685523309402],[124,159,70,0.2822537008482902],[124,159,71,0.2815999446116924],[124,159,72,0.2809413108319556],[124,159,73,0.28030790025763447],[124,159,74,0.2797249263337154],[124,159,75,0.2792119505225957],[124,159,76,0.27878231859164065],[124,159,77,0.27844280232323737],[124,159,78,0.27819345076093444],[124,159,79,0.278027654772265],[124,160,64,0.2853661236896594],[124,160,65,0.285322362676604],[124,160,66,0.2850492934589463],[124,160,67,0.28458387091636006],[124,160,68,0.28396624952295074],[124,160,69,0.28323427037416726],[124,160,70,0.28242621245883226],[124,160,71,0.2815792897817133],[124,160,72,0.28072821067398684],[124,160,73,0.27990393186552],[124,160,74,0.2791326131666745],[124,160,75,0.27843477824051843],[124,160,76,0.2778246865789135],[124,160,77,0.27730992143109096],[124,160,78,0.2768911980743882],[124,160,79,0.27656239646724695],[124,161,64,0.28611091354854873],[124,161,65,0.2861401305393689],[124,161,66,0.28568225561167426],[124,161,67,0.28503131471713167],[124,161,68,0.28422847116120475],[124,161,69,0.283310980086148],[124,161,70,0.2823169405465397],[124,161,71,0.28128374057292693],[124,161,72,0.28024652518785853],[124,161,73,0.2792368673599016],[124,161,74,0.2782816480417904],[124,161,75,0.27740215105868476],[124,161,76,0.2766133782313644],[124,161,77,0.2759235897403484],[124,161,78,0.2753340743638718],[124,161,79,0.27483915385897484],[124,162,64,0.2863438982624505],[124,162,65,0.28663262884343416],[124,162,66,0.2859952516354304],[124,162,67,0.28516435727834744],[124,162,68,0.2841819681254484],[124,162,69,0.2830845923006683],[124,162,70,0.2819099646114255],[124,162,71,0.28069545030299026],[124,162,72,0.2794764320829908],[124,162,73,0.278284907255126],[124,162,74,0.27714830136841123],[124,162,75,0.27608850439696647],[124,162,76,0.2751211350727181],[124,162,77,0.2742550386028015],[124,162,78,0.2734920226185103],[124,162,79,0.2728268358270458],[124,163,64,0.2862076154972275],[124,163,65,0.2867894043862897],[124,163,66,0.28597636911308816],[124,163,67,0.28496939510061026],[124,163,68,0.28381123504239697],[124,163,69,0.282537519484065],[124,163,70,0.2811854763733149],[124,163,71,0.27979230159135093],[124,163,72,0.27839347267219317],[124,163,73,0.2770212789469891],[124,163,74,0.27570357474879104],[124,163,75,0.27446276191264674],[124,163,76,0.2733150074035521],[124,163,77,0.2722697015043376],[124,163,78,0.27132916160054227],[124,163,79,0.2704885862136094],[124,164,64,0.2857157955191371],[124,164,65,0.2865969096836872],[124,164,66,0.28561034400243074],[124,164,67,0.2844292041997359],[124,164,68,0.2830968732421951],[124,164,69,0.281648005617055],[124,164,70,0.2801192250075157],[124,164,71,0.27854746665066366],[124,164,72,0.27696822229814144],[124,164,73,0.2754140072554128],[124,164,74,0.27391305634204594],[124,164,75,0.27248825520688125],[124,164,76,0.2711563130213764],[124,164,77,0.2699271821654017],[124,164,78,0.26880373011599856],[124,164,79,0.26778166835506595],[124,165,64,0.28488941980604626],[124,165,65,0.28603604459328535],[124,165,66,0.2848768873443185],[124,165,67,0.28352209860937],[124,165,68,0.2820156048352269],[124,165,69,0.28039102281843514],[124,165,70,0.2786843127705834],[124,165,71,0.2769320965167498],[124,165,72,0.2751698376837312],[124,165,73,0.2734302489652483],[124,165,74,0.2717419334923067],[124,165,75,0.2701282669217084],[124,165,76,0.268606526438172],[124,165,77,0.2671872724492249],[124,165,78,0.2658739883408072],[124,165,79,0.26466298325934196],[124,166,64,0.2837482617105814],[124,166,65,0.2848223972056538],[124,166,66,0.28375897156060004],[124,166,67,0.2822301304471131],[124,166,68,0.28054839471616466],[124,166,69,0.27874632926172127],[124,166,70,0.27685921284236703],[124,166,71,0.2749233359479876],[124,166,72,0.2729741210195433],[124,166,73,0.2710444740128722],[124,166,74,0.269163374496397],[124,166,75,0.26735471105220515],[124,166,76,0.26563636832686555],[124,166,77,0.2640195716562041],[124,166,78,0.2625084947709121],[124,166,79,0.2611001356813882],[124,167,64,0.28230792623527445],[124,167,65,0.28321817465399074],[124,167,66,0.2822452763903899],[124,167,67,0.28054125828205617],[124,167,68,0.2786823433344421],[124,167,69,0.27670008648493627],[124,167,70,0.27462911565800785],[124,167,71,0.27250541267718115],[124,167,72,0.27036437907709077],[124,167,73,0.26823913674738525],[124,167,74,0.2661590707337286],[124,167,75,0.26414862109700205],[124,167,76,0.26222633030461673],[124,167,77,0.2604041522012922],[124,167,78,0.2586870281846419],[124,167,79,0.25707273579752765],[124,168,64,0.28058125839577286],[124,168,65,0.28133430010875976],[124,168,66,0.28032877918825516],[124,168,67,0.2784479541262849],[124,168,68,0.27640931830297993],[124,168,69,0.2742435204633082],[124,168,70,0.2719846215797843],[124,168,71,0.2696683615197241],[124,168,72,0.2673301766687483],[124,168,73,0.2650034550775475],[124,168,74,0.2627180365647538],[124,168,75,0.26049896478232776],[124,168,76,0.25836549782007046],[124,168,77,0.2563303834963766],[124,168,78,0.25439940505710873],[124,168,79,0.25257120258760585],[124,169,64,0.2785799951243307],[124,169,65,0.27918333301841775],[124,169,66,0.2780051036508084],[124,169,67,0.27594557302139405],[124,169,68,0.27372435401846995],[124,169,69,0.27137135776041693],[124,169,70,0.2689202176275581],[124,169,71,0.266406543564914],[124,169,72,0.2638658982750128],[124,169,73,0.26133201284482094],[124,169,74,0.25883524931879753],[124,169,75,0.2564013173027692],[124,169,76,0.25405025125232894],[124,169,77,0.2517956546684732],[124,169,78,0.24964421699613398],[124,169,79,0.2475955086023053],[124,170,64,0.27631664382330823],[124,170,65,0.2767784300578359],[124,170,66,0.27527064067270607],[124,170,67,0.27303049711841243],[124,170,68,0.27062382936539825],[124,170,69,0.26808004498406357],[124,170,70,0.265432544666792],[124,170,71,0.26271696510659825],[124,170,72,0.2599691209223829],[124,170,73,0.2572231871999926],[124,170,74,0.2545101302120582],[124,170,75,0.25185639345271843],[124,170,76,0.2492828456924654],[124,170,77,0.24680399732717762],[124,170,78,0.24442749086787197],[124,170,79,0.242153870997943],[124,171,64,0.27380658988765294],[124,171,65,0.27413544281492397],[124,171,66,0.27212043912949746],[124,171,67,0.2696980521231118],[124,171,68,0.2671034214615412],[124,171,69,0.2643657496031685],[124,171,70,0.26151845322276984],[124,171,71,0.25859739460823417],[124,171,72,0.25563879674733886],[124,171,73,0.25267739957256896],[124,171,74,0.2497448649509471],[124,171,75,0.24686843758053015],[124,171,76,0.24406986852564724],[124,171,77,0.241364607692767],[124,171,78,0.2387612711220356],[124,171,79,0.23626138855014603],[124,172,64,0.2710704357048923],[124,172,65,0.2709267344099507],[124,172,66,0.26854586420535637],[124,172,67,0.26594019380558415],[124,172,68,0.2631558332367395],[124,172,69,0.2602221400240993],[124,172,70,0.2571728459406006],[124,172,71,0.25404427585794753],[124,172,72,0.25087324355249496],[124,172,73,0.24769518870315807],[124,172,74,0.24454256266751823],[124,172,75,0.24144347019942916],[124,172,76,0.2384205738440455],[124,172,77,0.23549026731796555],[124,172,78,0.23266212375697912],[124,172,79,0.2299386242958921],[124,173,64,0.2681365738403437],[124,173,65,0.26708905169591285],[124,173,66,0.2645320206943344],[124,173,67,0.2617429620898353],[124,173,68,0.25876829246078387],[124,173,69,0.2556379426569708],[124,173,70,0.2523863045517541],[124,173,71,0.24905043532019186],[124,173,72,0.2456679415225474],[124,173,73,0.24227510408160138],[124,173,74,0.23890525171752616],[124,173,75,0.2355873899842629],[124,173,76,0.2323450926267846],[124,173,77,0.22919566155301974],[124,173,78,0.2261495612913726],[124,173,79,0.2232101333888391],[124,174,64,0.2650439973233844],[124,174,65,0.2627867160330464],[124,174,66,0.2600549385052475],[124,174,67,0.2570837000467882],[124,174,68,0.2539198196510001],[124,174,69,0.25059427352536656],[124,174,70,0.24714249903996735],[124,174,71,0.24360258153281728],[124,174,72,0.24001313412074973],[124,174,73,0.23641141799825233],[124,174,74,0.23283171074818515],[124,174,75,0.22930392977175382],[124,174,76,0.22585251752366917],[124,174,77,0.22249559481575276],[124,174,78,0.21924438803215268],[124,174,79,0.21610293568590003],[124,175,64,0.26059062767252583],[124,175,65,0.25799512004145586],[124,175,66,0.25509111435313814],[124,175,67,0.2519403404196539],[124,175,68,0.24859015006580829],[124,175,69,0.24507307180050952],[124,175,70,0.2414259971948602],[124,175,71,0.23768834692071888],[124,175,72,0.2338999537934479],[124,175,73,0.23009918597240323],[124,175,74,0.22632131778911188],[124,175,75,0.22259715525970655],[124,175,76,0.21895192291985238],[124,175,77,0.2154044182007229],[124,175,78,0.21196643914734345],[124,175,79,0.20864249086988146],[124,176,64,0.25549192392665754],[124,176,65,0.25273297915993936],[124,176,66,0.24965993790502475],[124,176,67,0.24633296198539834],[124,176,68,0.24280004120442109],[124,176,69,0.23909573572301634],[124,176,70,0.23525877280916585],[124,176,71,0.23133018993080673],[124,176,72,0.2273512294908103],[124,176,73,0.22336147332512452],[124,176,74,0.21939722436241035],[124,176,75,0.21549014243346085],[124,176,76,0.21166614080367427],[124,176,77,0.20794454958543854],[124,176,78,0.20433755177324045],[124,176,79,0.20084989723665211],[124,177,64,0.2499542992553502],[124,177,65,0.24703524910999258],[124,177,66,0.24379711899589948],[124,177,67,0.2402980265814569],[124,177,68,0.23658666986490892],[124,177,69,0.23270007189238978],[124,177,70,0.2286791322222025],[124,177,71,0.22456674643643207],[124,177,72,0.22040572206578957],[124,177,73,0.2162369336318643],[124,177,74,0.21209772411163427],[124,177,75,0.20802055972281672],[124,177,76,0.20403194451744117],[124,177,77,0.200151600858434],[124,177,78,0.1963919214437671],[124,177,79,0.19275769813879903],[124,178,64,0.24401629365845715],[124,178,65,0.24094137249511977],[124,178,66,0.23754305809241677],[124,178,67,0.23387696070166689],[124,178,68,0.22999252803932635],[124,178,69,0.22592962236452407],[124,178,70,0.22173160060753896],[124,178,71,0.2174434112466761],[124,178,72,0.21310954173729962],[124,178,73,0.20877220401712826],[124,178,74,0.20446976527424343],[124,178,75,0.20023543076243003],[124,178,76,0.19609618504179172],[124,178,77,0.19207199761459942],[124,178,78,0.1881752985207043],[124,178,79,0.1844107290575443],[124,179,64,0.23772009061271632],[124,179,65,0.23449455177767747],[124,179,66,0.23094206120756808],[124,179,67,0.22711529345774178],[124,179,68,0.22306446381095915],[124,179,69,0.2188325881430611],[124,179,70,0.21446570803714382],[124,179,71,0.2100109675523014],[124,179,72,0.20551460303065497],[124,179,73,0.20102016943797307],[124,179,74,0.1965670102791128],[124,179,75,0.19218897773291788],[124,179,76,0.18791340924994268],[124,179,77,0.1837603664538949],[124,179,78,0.17974214178767198],[124,179,79,0.1758630379511657],[124,180,64,0.231110758796207],[124,180,65,0.2277409507347625],[124,180,66,0.22404148662836737],[124,180,67,0.22006173143153254],[124,180,68,0.21585266614949375],[124,180,69,0.2114607059483521],[124,180,70,0.20693474088642178],[124,180,71,0.2023241966395899],[124,180,72,0.1976770778363144],[124,180,73,0.19303824580978082],[124,180,74,0.18844793763558873],[124,180,75,0.18394053293288587],[124,180,76,0.1795435745119763],[124,180,77,0.17527704855549023],[124,180,78,0.17115292962683712],[124,180,79,0.16717499541268405],[124,181,64,0.22423541997222268],[124,181,65,0.2207288234581822],[124,181,66,0.2168908225497554],[124,181,67,0.21276716954835018],[124,181,68,0.20840959278177873],[124,181,69,0.20386807750332134],[124,181,70,0.19919445789807588],[124,181,71,0.1944404672874146],[124,181,72,0.18965584611927863],[124,181,73,0.18488668164325694],[124,181,74,0.18017398593851724],[124,181,75,0.1755525185793212],[124,181,76,0.17104985983533144],[124,181,77,0.16668573991558933],[124,181,78,0.16247162937943935],[124,181,79,0.15841059545854075],[124,182,64,0.21714234200594681],[124,182,65,0.2135075698893654],[124,182,66,0.20954069463553812],[124,182,67,0.20528363703145436],[124,182,68,0.2007888402483245],[124,182,69,0.19610995051118577],[124,182,70,0.19130177016217728],[124,182,71,0.18641830420667818],[124,182,72,0.18151094376005397],[124,182,73,0.17662687781520042],[124,182,74,0.17180773977236422],[124,182,75,0.16708849479744267],[124,182,76,0.16249657369584336],[124,182,77,0.15805125860931993],[124,182,78,0.15376332546645877],[124,182,79,0.14963494774733693],[124,183,64,0.20987995591020012],[124,183,65,0.20612671680396227],[124,183,66,0.20204180245299674],[124,183,67,0.1976631774261622],[124,183,68,0.19304395518706208],[124,183,69,0.18824145043510895],[124,183,70,0.18331338420945406],[124,183,71,0.1783159348261002],[124,183,72,0.17330200695875203],[124,183,73,0.16831972505250123],[124,183,74,0.16341115726092634],[124,183,75,0.15861127573090145],[124,183,76,0.153947158689664],[124,183,77,0.14943743941871573],[124,183,78,0.14509200683231832],[124,183,79,0.14091196201825015],[124,184,64,0.20249579573861073],[124,184,65,0.19863482308400146],[124,184,66,0.19444378365305987],[124,184,67,0.18995666161005967],[124,184,68,0.18522718581737493],[124,184,69,0.18031626212563856],[124,184,70,0.1752844073557618],[124,184,71,0.17018981367534697],[124,184,72,0.16508671258775592],[124,184,73,0.16002395867009536],[124,184,74,0.1550438389781931],[124,184,75,0.15018111368021833],[124,184,76,0.14546229312114534],[124,184,77,0.14090515616092497],[124,184,78,0.1365185142733208],[124,184,79,0.1323022255433531],[124,185,64,0.19503536006563094],[124,185,65,0.19107830803765913],[124,185,66,0.18679400469239296],[124,185,67,0.18221253263334025],[124,185,68,0.17738817252877315],[124,185,69,0.17238526027793083],[124,185,70,0.16726691437772417],[124,185,71,0.1620931235654251],[124,185,72,0.15691921383511312],[124,185,73,0.15179453006891208],[124,185,74,0.14676133791030857],[124,185,75,0.14185395116105057],[124,185,76,0.13709808963479603],[124,185,77,0.13251047205281952],[124,185,78,0.1280986482229815],[124,185,79,0.12386107440611263],[124,186,64,0.19598773252893653],[124,186,65,0.1910207072552427],[124,186,66,0.18583059835825913],[124,186,67,0.1804377262187262],[124,186,68,0.17489104994994745],[124,186,69,0.1692525158571016],[124,186,70,0.1635822158831748],[124,186,71,0.15793649686802155],[124,186,72,0.1523665263806919],[124,186,73,0.14691706858355927],[124,186,74,0.14162547544991222],[124,186,75,0.13652089832268938],[124,186,76,0.13162372446545673],[124,186,77,0.1269452429207712],[124,186,78,0.12248754365984696],[124,186,79,0.11824365368309306],[124,187,64,0.19806437212050623],[124,187,65,0.1929815984509951],[124,187,66,0.18768041317515555],[124,187,67,0.1821775594640473],[124,187,68,0.1765222724200667],[124,187,69,0.17077924663107835],[124,187,70,0.16501047083012302],[124,187,71,0.15927338160619509],[124,187,72,0.1536195444745603],[124,187,73,0.14809353894144675],[124,187,74,0.14273205256910731],[124,187,75,0.13756318872513842],[124,187,76,0.13260599237571957],[124,187,77,0.12787019795927623],[124,187,78,0.12335620305899017],[124,187,79,0.11905527128158572],[124,188,64,0.20016680056188987],[124,188,65,0.19497080637693479],[124,188,66,0.18956229608558522],[124,188,67,0.1839548107628462],[124,188,68,0.1781977977012952],[124,188,69,0.1723583392430774],[124,188,70,0.1664999674006195],[124,188,71,0.16068087253559152],[124,188,72,0.15495270324918237],[124,188,73,0.14935956390018998],[124,188,74,0.14393721443519264],[124,188,75,0.1387124769052086],[124,188,76,0.13370285273180446],[124,188,77,0.12891635447567562],[124,188,78,0.12435155555621688],[124,188,79,0.11999786107340203],[124,189,64,0.20230811691543457],[124,189,65,0.19700170595825528],[124,189,66,0.19148981441723997],[124,189,67,0.18578322622839746],[124,189,68,0.17993153816879695],[124,189,69,0.17400381474718193],[124,189,70,0.16806474469728655],[124,189,71,0.1621729147481597],[124,189,72,0.15637973027595395],[124,189,73,0.15072852698329522],[124,189,74,0.14525387796700368],[124,189,75,0.13998110023757568],[124,189,76,0.13492596445541144],[124,189,77,0.1300946113522992],[124,189,78,0.12548367801601276],[124,189,79,0.12108063693273702],[124,190,64,0.20449272561177836],[124,190,65,0.19907876133799182],[124,190,66,0.19346738978592948],[124,190,67,0.18766713202505367],[124,190,68,0.1817276768167534],[124,190,69,0.17571964079495445],[124,190,70,0.16970846818730606],[124,190,71,0.16375277905156496],[124,190,72,0.15790341105965675],[124,190,73,0.1522026455790907],[124,190,74,0.1466836220914136],[124,190,75,0.1413699447025671],[124,190,76,0.1362754842147021],[124,190,77,0.13140437894606272],[124,190,78,0.12675123720883047],[124,190,79,0.12230154408580524],[124,191,64,0.2067147222270831],[124,191,65,0.20119588822187945],[124,191,66,0.19548864517479836],[124,191,67,0.18959976895092687],[124,191,68,0.18357899320967475],[124,191,69,0.17749805820605843],[124,191,70,0.17142277039590897],[124,191,71,0.1654114333891764],[124,191,72,0.15951400983757638],[124,191,73,0.15377146087004193],[124,191,74,0.14821526680076513],[124,191,75,0.14286713256227238],[124,191,76,0.13773888104364243],[124,191,77,0.13283253724449046],[124,191,78,0.12814060589241827],[124,191,79,0.1236465449166622],[124,192,64,0.20895619105778282],[124,192,65,0.20333472968761715],[124,192,66,0.19753466932866476],[124,192,67,0.19156155008961273],[124,192,68,0.18546512036195648],[124,192,69,0.17931784893512218],[124,192,70,0.1731855464231623],[124,192,71,0.16712588566911274],[124,192,72,0.16118768159449845],[124,192,73,0.15541034194424963],[124,192,74,0.14982349234640954],[124,192,75,0.14444677884585633],[124,192,76,0.13928985081164305],[124,192,77,0.13435252686121468],[124,192,78,0.1296251461953639],[124,192,79,0.12508910749655894],[124,193,64,0.21118541263470564],[124,193,65,0.20546284363162154],[124,193,66,0.19957219669592258],[124,193,67,0.19351823984359276],[124,193,68,0.18735073096089297],[124,193,69,0.18114254398175914],[124,193,70,0.1749592029958544],[124,193,71,0.16885749691390028],[124,193,72,0.1628848744393042],[124,193,73,0.1570790035013128],[124,193,74,0.15146749827571004],[124,193,75,0.14606781667064248],[124,193,76,0.1408873309077876],[124,193,77,0.13592357358539894],[124,193,78,0.13116466137343166],[124,193,79,0.12658989826299383],[124,194,64,0.21335497925763744],[124,194,65,0.20753179996705123],[124,194,66,0.20155170109440948],[124,194,67,0.19541905261067033],[124,194,68,0.1891836513034116],[124,194,69,0.18291856975384252],[124,194,70,0.17668885973960796],[124,194,71,0.1705502636277518],[124,194,72,0.16454872148842084],[124,194,73,0.15872003658007203],[124,194,74,0.15308970205250036],[124,194,75,0.1476728914766448],[124,194,76,0.1424746155743596],[124,194,77,0.13749004728968797],[124,194,78,0.13270501711925065],[124,194,79,0.1280966804040608],[124,195,64,0.21540049232458122],[124,195,65,0.20947589291897756],[124,195,66,0.203406137500847],[124,195,67,0.19719543363770525],[124,195,68,0.19089369147576832],[124,195,69,0.18457414217555604],[124,195,70,0.17830132489797623],[124,195,71,0.17212989465813913],[124,195,72,0.16610423915639405],[124,195,73,0.16025824836057664],[124,195,74,0.154615239420178],[124,195,75,0.14918803926606172],[124,195,76,0.1439792270243549],[124,195,77,0.13898153815269823],[124,195,78,0.13417843199474205],[124,195,79,0.1295448242453476],[124,196,64,0.21727458521125467],[124,196,65,0.211247714453629],[124,196,66,0.20508794661276172],[124,196,67,0.19879945594088239],[124,196,68,0.19243233672630414],[124,196,69,0.18606000262734826],[124,196,70,0.17974649833748912],[124,196,71,0.17354540236021684],[124,196,72,0.16749955146713286],[124,196,73,0.16164091274838513],[124,196,74,0.15599060558370148],[124,196,75,0.15055907564464682],[124,196,76,0.14534642282371021],[124,196,77,0.1403428847758102],[124,196,78,0.13552947755634967],[124,196,79,0.13087879464766797],[124,197,64,0.21897321839500458],[124,197,65,0.21284509622931597],[124,197,66,0.20659654355966645],[124,197,67,0.20023182554077312],[124,197,68,0.19380121220861496],[124,197,69,0.1873781945185244],[124,197,70,0.18102623785014282],[124,197,71,0.1747977792088597],[124,197,72,0.16873405634196578],[124,197,73,0.16286507956339097],[124,197,74,0.15720974837461496],[124,197,75,0.15177611476063865],[124,197,76,0.146561794834331],[124,197,77,0.141554530302339],[124,197,78,0.13673290103459598],[124,197,79,0.13206718983779225],[124,198,64,0.22049574062107463],[124,198,65,0.21426898889443888],[124,198,66,0.20793417312456428],[124,198,67,0.20149577877927327],[124,198,68,0.19500417228716196],[124,198,69,0.1885326947550347],[124,198,70,0.18214405143802587],[124,198,71,0.17588940374387124],[124,198,72,0.16980829898105146],[124,198,73,0.1639287380394647],[124,198,74,0.15826738286150124],[124,198,75,0.15282990536136884],[124,198,76,0.14761147925408932],[124,198,77,0.14259741606503348],[124,198,78,0.13776394640969183],[124,198,79,0.1330791474619539],[124,199,64,0.22184145828687993],[124,199,65,0.21551989393747048],[124,199,66,0.20910223301204212],[124,199,67,0.2025933165726708],[124,199,68,0.19604347151988974],[124,199,69,0.18952556366992523],[124,199,70,0.1831012816030387],[124,199,71,0.17682032441925233],[124,199,72,0.1707204270522909],[124,199,73,0.16482751871039786],[124,199,74,0.15915601608271043],[124,199,75,0.15370925275846462],[124,199,76,0.14848004611890353],[124,199,77,0.14345140278066018],[124,199,78,0.13859736349800184],[124,199,79,0.1338839882699675],[124,200,64,0.2230099448403424],[124,200,65,0.21659822694390402],[124,200,66,0.21010170737915312],[124,200,67,0.20352572435164554],[124,200,68,0.1969203862157689],[124,200,69,0.19035768197526545],[124,200,70,0.1838979695492734],[124,200,71,0.17758926060730656],[124,200,72,0.17146733546195414],[124,200,73,0.16555598614056535],[124,200,74,0.15986738906566908],[124,200,75,0.15440260859115293],[124,200,76,0.14915223246293233],[124,200,77,0.1440971401011654],[124,200,78,0.13920940443946006],[124,200,79,0.13445332790511086],[124,201,64,0.2240013279153202],[124,201,65,0.2175046619909348],[124,201,66,0.21093358630605707],[124,201,67,0.20429408448857433],[124,201,68,0.19763583690029768],[124,201,69,0.19102949886592638],[124,201,70,0.184533742498765],[124,201,71,0.1781946402433167],[124,201,72,0.17204586266725444],[124,201,73,0.16610899924875483],[124,201,74,0.1603940033899158],[124,201,75,0.15489976271316713],[124,201,76,0.14961479552856977],[124,201,77,0.14451807419778237],[124,201,78,0.13957997596869584],[124,201,79,0.13476336171328818],[124,202,64,0.22481655407726117],[124,202,65,0.21824045712886767],[124,202,66,0.21159927125462696],[124,202,67,0.2048997813859319],[124,202,68,0.19819101201442496],[124,202,69,0.19154179177574931],[124,202,70,0.1850087248161538],[124,202,71,0.1786356750172641],[124,202,72,0.1724540396598443],[124,202,73,0.16648314058363292],[124,202,74,0.16073073388420248],[124,202,75,0.15519363902326114],[124,202,76,0.14985848806935562],[124,202,77,0.1447025956336214],[124,202,78,0.1396949499234267],[124,202,79,0.13479732520537807],[124,203,64,0.22545763103023145],[124,203,65,0.2188077608801639],[124,203,66,0.21210096654999128],[124,203,67,0.20534499939239498],[124,203,68,0.19858799317251957],[124,203,69,0.19189643829528136],[124,203,70,0.18532447365591076],[124,203,71,0.17891347404745736],[124,203,72,0.17269239278849685],[124,203,73,0.16667821595991797],[124,203,74,0.16087652911008612],[124,203,75,0.15528219713288713],[124,203,76,0.14988015787364722],[124,203,77,0.1446463298757508],[124,203,78,0.13954863454922453],[124,203,79,0.13454813292144344],[124,204,64,0.22592784711291458],[124,204,65,0.21920989966708943],[124,204,66,0.2124420569045097],[124,204,67,0.20563321370342147],[124,204,68,0.19883038230199815],[124,204,69,0.19209720076516296],[124,204,70,0.1854849398595587],[124,204,71,0.17903219699438785],[124,204,72,0.17276530162295642],[124,204,73,0.1666988259087178],[124,204,74,0.16083620133970594],[124,204,75,0.1551704418307349],[124,204,76,0.14968497371371803],[124,204,77,0.14435457288485387],[124,204,78,0.13914640925651905],[124,204,79,0.13402119855115438],[124,205,64,0.2262319678862552],[124,205,65,0.21945164605729992],[124,205,66,0.21262747098612045],[124,205,67,0.20576967439062754],[124,205,68,0.1989239309810101],[124,205,69,0.1921505240602963],[124,205,70,0.18549745483951494],[124,205,71,0.17900024759120914],[124,205,72,0.17268241308850027],[124,205,73,0.16655601043293672],[124,205,74,0.1606223077829865],[124,205,75,0.15487254236150577],[124,205,76,0.14928877999259904],[124,205,77,0.1438448742978442],[124,205,78,0.13850752557211043],[124,205,79,0.13323743925965842],[124,206,64,0.22637640958985172],[124,206,65,0.219539467694092],[124,206,66,0.21266403101402082],[124,206,67,0.2057618836898835],[124,206,68,0.19887717228175972],[124,206,69,0.19206634707761472],[124,206,70,0.1853737441912039],[124,206,71,0.17883150858027877],[124,206,72,0.1724601131223568],[124,206,73,0.16626896858920914],[124,206,74,0.16025712485924726],[124,206,75,0.1544140635852806],[124,206,76,0.148720582419096],[124,206,77,0.1431497707857895],[124,206,78,0.13766807710288204],[124,206,79,0.13223646725138097],[124,207,64,0.22637071370931167],[124,207,65,0.21948348232389084],[124,207,66,0.21256274285332488],[124,207,67,0.20562205792274518],[124,207,68,0.19870387990994062],[124,207,69,0.19186037930179956],[124,207,70,0.18513184306219757],[124,207,71,0.1785467242071086],[124,207,72,0.17212221672380199],[124,207,73,0.16586491317564536],[124,207,74,0.1597715451538257],[124,207,75,0.15382980662839796],[124,207,76,0.1480192601479426],[124,207,77,0.14231232574144442],[124,207,78,0.1366753522908897],[124,207,79,0.1304939495862948],[124,208,64,0.22623061440346692],[124,208,65,0.21930143969794577],[124,208,66,0.21234314050294256],[124,208,67,0.20537122167938165],[124,208,68,0.19842626568552602],[124,208,69,0.19155574687928414],[124,208,70,0.18479555126091732],[124,208,71,0.1781701607977243],[124,208,72,0.17169328463797612],[124,208,73,0.16536856393554084],[124,208,74,0.15919035026180292],[124,208,75,0.15314455748657654],[124,208,76,0.14720958692062514],[124,208,77,0.14135732543071308],[124,208,78,0.13554329778079016],[124,208,79,0.12655360532547194],[124,209,64,0.2259723274572696],[124,209,65,0.21901122512186977],[124,209,66,0.2120244338642556],[124,209,67,0.20502948601812143],[124,209,68,0.19806490904963217],[124,209,69,0.19117310869684537],[124,209,70,0.18438526767060612],[124,209,71,0.1777216713716356],[124,209,72,0.17119239527748906],[124,209,73,0.164798055912084],[124,209,74,0.15853062518295594],[124,209,75,0.1523743077917946],[124,209,76,0.14630648135000135],[124,209,77,0.1402986987645201],[124,209,78,0.131582305878717],[124,209,79,0.12255157850432334],[124,210,64,0.22561107687737697],[124,210,65,0.21862897407071266],[124,210,66,0.21162337534119124],[124,210,67,0.2046138509186888],[124,210,68,0.197636689615275],[124,210,69,0.19072891516701063],[124,210,70,0.18391676662598827],[124,210,71,0.17721617022785174],[124,210,72,0.17063348214130214],[124,210,73,0.16416628378619605],[124,210,74,0.1578042293082188],[124,210,75,0.1515299447350903],[124,210,76,0.1451832006623454],[124,210,77,0.13645866442030574],[124,210,78,0.1275499272252114],[124,210,79,0.1184961874874471],[124,211,64,0.2251611981585866],[124,211,65,0.21816926338087708],[124,211,66,0.21115454233352193],[124,211,67,0.20413858286507172],[124,211,68,0.19715526232362018],[124,211,69,0.19023598090584884],[124,211,70,0.18340186562156688],[124,211,71,0.1766643909315042],[124,211,72,0.17002617529102165],[124,211,73,0.16348181828231695],[124,211,74,0.15701877772187542],[124,211,75,0.14978082616759622],[124,211,76,0.14118458340637058],[124,211,77,0.13239845829881108],[124,211,78,0.12345724817897713],[124,211,79,0.11439854397995053],[124,212,64,0.22463621302612952],[124,212,65,0.21764527371558565],[124,212,66,0.21063058978392954],[124,212,67,0.20361556034506145],[124,212,68,0.19663149743602037],[124,212,69,0.1897040181070032],[124,212,70,0.18284904844930178],[124,212,71,0.17607359331270964],[124,212,72,0.16937658429089034],[124,212,73,0.1625323262186463],[124,212,74,0.15426354480448123],[124,212,75,0.1457793282053067],[124,212,76,0.1371060749054965],[124,212,77,0.1282742976299524],[124,212,78,0.11931758301495463],[124,212,79,0.11027152935406252],[124,213,64,0.2240488752818378],[124,213,65,0.21706892298515318],[124,213,66,0.21006247249761203],[124,213,67,0.20305458700941165],[124,213,68,0.1960738851151948],[124,213,69,0.18914013035971694],[124,213,70,0.18226404349046701],[124,213,71,0.17483730623794863],[124,213,72,0.1668670533903022],[124,213,73,0.15867485738955475],[124,213,74,0.15027784017730392],[124,213,75,0.14169833363815396],[124,213,76,0.13296289317103208],[124,213,77,0.1241013019453476],[124,213,78,0.11514556684876122],[124,213,79,0.10612890711240985],[124,214,64,0.2227212887310646],[124,214,65,0.2158657891070522],[124,214,66,0.20888624460426336],[124,214,67,0.2017507913736664],[124,214,68,0.19442926048262482],[124,214,69,0.18690437088829778],[124,214,70,0.1791681262860566],[124,214,71,0.17122071251710477],[124,214,72,0.1630695140196371],[124,214,73,0.15472813121776216],[124,214,74,0.1462154000643838],[124,214,75,0.13755441494179976],[124,214,76,0.12877155610392468],[124,214,77,0.11989552281708671],[124,214,78,0.11095637332423104],[124,214,79,0.10198457271774143],[124,215,64,0.22083797501057692],[124,215,65,0.2136814840902289],[124,215,66,0.20641071106967168],[124,215,67,0.19899294297250977],[124,215,68,0.1914011355980626],[124,215,69,0.18362398124445548],[124,215,70,0.17565868876259105],[124,215,71,0.16750974519396708],[124,215,72,0.1591878921104253],[124,215,73,0.1507091177309798],[124,215,74,0.14209366622459552],[124,215,75,0.13336506557408287],[124,215,76,0.1245491753354322],[124,215,77,0.11567325557938712],[124,215,78,0.10676505825010527],[124,215,79,0.09785194211712955],[124,216,64,0.21885074733751803],[124,216,65,0.21139026835228356],[124,216,66,0.20382733739287096],[124,216,67,0.19612873438387535],[124,216,68,0.18827057517201987],[124,216,69,0.18024732378775032],[124,216,70,0.17206115204997582],[124,216,71,0.16372057448755623],[124,216,72,0.15523938960471176],[124,216,73,0.14663565208106139],[124,216,74,0.13793067749888513],[124,216,75,0.12914808113493828],[124,216,76,0.12031285229205851],[124,216,77,0.11145046557756602],[124,216,78,0.1025860304635259],[124,216,79,0.0937434803862818],[124,217,64,0.21676342587817024],[124,217,65,0.20899825585612175],[124,217,66,0.20114442969068952],[124,217,67,0.193168593235196],[124,217,68,0.1850500185293522],[124,217,69,0.1767886507513856],[124,217,70,0.16839130496470445],[124,217,71,0.15987018535419065],[124,217,72,0.15124179687135778],[124,217,73,0.14252590309985713],[124,217,74,0.13374453210617437],[124,217,75,0.12492103196350504],[124,217,76,0.116079177553499],[124,217,77,0.10724233016166893],[124,217,78,0.0984326512904872],[124,217,79,0.08967037201768124],[124,218,64,0.2145809362410857],[124,218,65,0.20651271895065026],[124,218,66,0.19837145684205618],[124,218,67,0.1901240557512815],[124,218,68,0.18175290130800906],[124,218,69,0.17326304860381234],[124,218,70,0.16466556770042845],[124,218,71,0.15597595988860857],[124,218,72,0.1472130454405519],[124,218,73,0.13839791280379715],[124,218,74,0.1295529311599673],[124,218,75,0.1207008281735785],[124,218,76,0.11186383465187516],[124,218,77,0.1030628977274541],[124,218,78,0.09431696406419003],[124,218,79,0.08564233447203211],[124,219,64,0.2123094241201129],[124,219,65,0.2039421149333202],[124,219,66,0.19551899421004826],[124,219,67,0.1870076315918684],[124,219,68,0.17839344689372624],[124,219,69,0.16968616507833112],[124,219,70,0.16090066647382664],[124,219,71,0.15205531406212863],[124,219,72,0.14317082318315616],[124,219,73,0.13426920764933795],[124,219,74,0.1253728043368564],[124,219,75,0.11650337820102871],[124,219,76,0.10768130953859123],[124,219,77,0.0989248651906846],[124,219,78,0.09024955525023928],[124,219,79,0.08166757670470258],[124,220,64,0.20995640197819898],[124,220,65,0.201296144505516],[124,220,66,0.19259870027294512],[124,220,67,0.18383270365779447],[124,220,68,0.1749864959551477],[124,220,69,0.1660739786390983],[124,220,70,0.1571133562250072],[124,220,71,0.14812538944048487],[124,220,72,0.13913225267831114],[124,220,73,0.13015648240162178],[124,220,74,0.12122001869401809],[124,220,75,0.11234334200806449],[124,220,76,0.10354470702134917],[124,220,77,0.09483947536135313],[124,220,78,0.08623954881221732],[124,220,79,0.07775290446675048],[124,221,64,0.20753092827483618],[124,221,65,0.198585842591226],[124,221,66,0.18962332662323161],[124,221,67,0.18061346333159614],[124,221,68,0.17154737457042046],[124,221,69,0.16244261091997975],[124,221,70,0.15332019197520136],[124,221,71,0.1442028005710868],[124,221,72,0.13511363356567316],[124,221,73,0.12607535753716603],[124,221,74,0.1171091716964213],[124,221,75,0.10823398015753351],[124,221,76,0.09946567554630568],[124,221,77,0.09081653576043464],[124,221,78,0.08229473553001376],[124,221,79,0.07390397426120639],[124,222,64,0.20504381974505392],[124,222,65,0.1958237019996401],[124,222,66,0.1866067618091767],[124,222,67,0.1773648816398142],[124,222,68,0.16809180146385558],[124,222,69,0.1588081827063979],[124,222,70,0.14953734948426775],[124,222,71,0.14030343877507984],[124,222,72,0.13113024972977375],[124,222,73,0.12204021115757133],[124,222,74,0.11305346957510647],[124,222,75,0.10418710003493103],[124,222,76,0.09545444176799162],[124,222,77,0.08686456049183],[124,222,78,0.07842183905505612],[124,222,79,0.07012569790797274],[124,223,64,0.20250789723907323],[124,223,65,0.19302383041941093],[124,223,66,0.1835641095067035],[124,223,67,0.1741027168436275],[124,223,68,0.16463583489695924],[124,223,69,0.15518671406234727],[124,223,70,0.1457804958886497],[124,223,71,0.1364423331233573],[124,223,72,0.12719624221290196],[124,223,73,0.11806408644459877],[124,223,74,0.10906469219498516],[124,223,75,0.10021310055577985],[124,223,76,0.09151995641164548],[124,223,77,0.08299103684537629],[124,223,78,0.07462692055010793],[124,223,79,0.06642279973373326],[124,224,64,0.19993826562852007],[124,224,65,0.19020214123560186],[124,224,66,0.1805118015190963],[124,224,67,0.17084355898089504],[124,224,68,0.16119585978124717],[124,224,69,0.15159406923428043],[124,224,70,0.14206471103591903],[124,224,71,0.13263356941654764],[124,224,72,0.12332454879836968],[124,224,73,0.1141586757361581],[124,224,74,0.10515324566255307],[124,224,75,0.09632111674973826],[124,224,76,0.08767015298704509],[124,224,77,0.07920281836093833],[124,224,78,0.07091592381418138],[124,224,79,0.06280052845394377],[124,225,64,0.19735262827716213],[124,225,65,0.18737657865961768],[124,225,66,0.1774677461083714],[124,225,67,0.16760491189596752],[124,225,68,0.15778861560040058],[124,225,69,0.14804594699017137],[124,225,70,0.13840446026446723],[124,225,71,0.12889026802637113],[124,225,72,0.11952691124736704],[124,225,73,0.11033438234693375],[124,225,74,0.10132830394975496],[124,225,75,0.0925192656590828],[124,225,76,0.08391232095841263],[124,225,77,0.07550664612712686],[124,225,78,0.06729536283355704],[124,225,79,0.059265525850352156],[124,226,64,0.19477163656080143],[124,226,65,0.1845673776570155],[124,226,66,0.17445151216435847],[124,226,67,0.16440531330327698],[124,226,68,0.15443126574609514],[124,226,69,0.14455791707533935],[124,226,70,0.13481361940579453],[124,226,71,0.1252246214891971],[124,226,72,0.1158139512092972],[124,226,73,0.10660046129594732],[124,226,74,0.09759804084925915],[124,226,75,0.08881499502720408],[124,226,76,0.08025359501053406],[124,226,77,0.07190980011994505],[124,226,78,0.0637731537266143],[124,226,79,0.055826854368019915],[124,227,64,0.1922227499564543],[124,227,65,0.18180157986428785],[124,227,66,0.1714894715854503],[124,227,67,0.16127010023330224],[124,227,68,0.15114777350004457],[124,227,69,0.1411523564188225],[124,227,70,0.13131288501828176],[124,227,71,0.121655660053337],[124,227,72,0.11220314389446531],[124,227,73,0.10297303005340616],[124,227,74,0.09397748795306145],[124,227,75,0.08522258529894983],[124,227,76,0.0767078901578292],[124,227,77,0.06842625459858258],[124,227,78,0.06036378150591652],[124,227,79,0.0524999759383618],[124,228,64,0.18975044738801786],[124,228,65,0.17912620389846876],[124,228,66,0.16863076245944758],[124,228,67,0.15825011240922063],[124,228,68,0.1479902488794437],[124,228,69,0.13788217283803403],[124,228,70,0.127955450352663],[124,228,71,0.11823631520493795],[124,228,72,0.10874658467791073],[124,228,73,0.09950275626614437],[124,228,74,0.09051528791507805],[124,228,75,0.08178806413475936],[124,228,76,0.07331805007056248],[124,228,77,0.06509513535292123],[124,228,78,0.057102169294264725],[124,228,79,0.049315188753867575],[124,229,64,0.187396531114866],[124,229,65,0.17658606562810664],[124,229,66,0.16592278277090722],[124,229,67,0.15539492508497893],[124,229,68,0.14501001981587333],[124,229,69,0.13479995028707348],[124,229,70,0.12479458962839642],[124,229,71,0.11501992440429083],[124,229,72,0.10549699688402835],[124,229,73,0.09624103487305359],[124,229,74,0.08726077168675109],[124,229,75,0.07855795857728463],[124,229,76,0.07012707165326015],[124,229,77,0.06195521506355948],[124,229,78,0.05402222195573981],[124,229,79,0.046300954465608626],[124,230,64,0.1851938799158823],[124,230,65,0.17421638046221585],[124,230,66,0.16340271842213908],[124,230,67,0.1527433401006746],[124,230,68,0.14224713928981744],[124,230,69,0.1319465859475625],[124,230,70,0.12187159592861332],[124,230,71,0.11204769141204286],[124,230,72,0.10249497971900531],[124,230,73,0.09322732427554307],[124,230,74,0.08425171024719197],[124,230,75,0.07556780709540104],[124,230,76,0.06716773002933467],[124,230,77,0.05903600205320377],[124,230,78,0.05114971804399607],[124,230,79,0.04347891203702288],[124,231,64,0.18316702433667684],[124,231,65,0.1720433309298399],[124,231,66,0.16109811254952286],[124,231,67,0.15032397051679214],[124,231,68,0.13973099851074214],[124,231,69,0.12935194151807222],[124,231,70,0.11921647653507099],[124,231,71,0.10934942812756984],[124,231,72,0.09976979577739832],[124,231,73,0.09048997560392977],[124,231,74,0.0815151789008714],[124,231,75,0.0728430496490392],[124,231,76,0.06446348288715478],[124,231,77,0.05635864554755365],[124,231,78,0.048503201097259835],[124,231,79,0.04086473906685733],[124,232,64,0.18133270409362257],[124,232,65,0.1700846176454916],[124,232,66,0.1590274205746368],[124,232,67,0.14815581449234502],[124,232,68,0.1374809342082274],[124,232,69,0.12703549510751574],[124,232,70,0.11684865716037347],[124,232,71,0.1069443155046698],[124,232,72,0.0973401896995091],[124,232,73,0.08804710703704961],[124,232,74,0.07906848223292337],[124,232,75,0.07039999553706339],[124,232,76,0.062029471029391395],[124,232,77,0.05393695659150103],[124,232,78,0.04609500678135511],[124,232,79,0.03846916958277393],[124,233,64,0.17970040568347367],[124,233,65,0.16834999138740622],[124,233,66,0.1572005484301082],[124,233,67,0.1462488155804738],[124,233,68,0.13550682696965038],[124,233,69,0.12500699048239636],[124,233,70,0.11477769171529698],[124,233,71,0.1048416801614663],[124,233,72,0.09521523468046597],[124,233,73,0.08590752007519359],[124,233,74,0.07692013694299597],[124,233,75,0.0682468666944352],[124,233,76,0.05987361336089594],[124,233,77,0.05177854354444816],[124,233,78,0.04393242560517502],[124,233,79,0.03629916893223814],[124,234,64,0.17827288022882276],[124,234,65,0.16684176637838907],[124,234,66,0.15561937412064605],[124,234,67,0.14460440968354574],[124,234,68,0.1338096909612891],[124,234,69,0.12326708411580549],[124,234,70,0.11300397818771504],[124,234,71,0.10304178740712243],[124,234,72,0.09339520771600182],[124,234,73,0.08407165882785507],[124,234,74,0.07507091380687496],[124,234,75,0.0663849178834638],[124,234,76,0.05799779795963532],[124,234,77,0.04988606399926546],[124,234,78,0.042019003249529736],[124,234,79,0.03435926800069098],[124,235,64,0.1770466415643788],[124,235,65,0.16555531483805344],[124,235,66,0.15427825276156257],[124,235,67,0.14321605889273664],[124,235,68,0.13238225535188514],[124,235,69,0.12180799046596218],[124,235,70,0.11151948118596945],[124,235,71,0.10153665137975873],[124,235,72,0.09187249443637978],[124,235,73,0.0825326133383938],[124,235,74,0.0735149399695811],[124,235,75,0.06480963517224402],[124,235,76,0.05639917081746872],[124,235,77,0.048258594905990215],[124,235,78,0.040355980481715896],[124,235,79,0.03265305891396141],[124,236,64,0.17601244454340242],[124,236,65,0.16447954285378902],[124,236,66,0.15316450521814534],[124,236,67,0.14206977241848753],[124,236,68,0.13120953773738955],[124,236,69,0.12061412588810592],[124,236,70,0.11030846167023894],[124,236,71,0.10031086295399744],[124,236,72,0.09063252433619565],[124,236,73,0.08127716791542978],[124,236,74,0.07224086271228722],[124,236,75,0.06351201402270124],[124,236,76,0.055071523757603484],[124,236,77,0.04689312259243924],[124,236,78,0.03894387453082317],[124,236,79,0.031184854276915253],[124,237,64,0.1751557108654184],[124,237,65,0.16359731470664457],[124,237,66,0.15225885734630548],[124,237,67,0.14114458150575734],[124,237,68,0.13026937638715388],[124,237,69,0.11966271796429048],[124,237,70,0.10934818066208757],[124,237,71,0.09934240225724127],[124,237,72,0.08965470333208374],[124,237,73,0.08028686153967866],[124,237,74,0.07123304194111629],[124,237,75,0.0624798844566903],[124,237,76,0.05400674925649151],[124,237,77,0.04578612070542219],[124,237,78,0.03778417027750639],[124,237,79,0.02996147866376741],[124,238,64,0.17444999794329782],[124,238,65,0.16287887029085554],[124,238,66,0.1515288285539988],[124,238,67,0.14040592641591945],[124,238,68,0.129525844345816],[124,238,69,0.11891727412104897],[124,238,70,0.10860244779606294],[124,238,71,0.0985962900672254],[124,238,72,0.08890618798299116],[124,238,73,0.07953190161740671],[124,238,74,0.07046561668351473],[124,238,75,0.061692139864783085],[124,238,76,0.05318923744775233],[124,238,77,0.04492811765001312],[124,238,78,0.03687405685901482],[124,238,79,0.028987169828020944],[124,239,64,0.1738413418032947],[124,239,65,0.16226706973586882],[124,239,66,0.15091476708884793],[124,239,67,0.1397923596132947],[124,239,68,0.12891648981545092],[124,239,69,0.11831522424099239],[124,239,70,0.1080095319039368],[124,239,71,0.0980126373794609],[124,239,72,0.08832995440828294],[124,239,73,0.07895914558141684],[124,239,74,0.06989030878238829],[124,239,75,0.061106290888117],[124,239,76,0.05258312905769097],[124,239,77,0.04429061977235609],[124,239,78,0.036193015634703486],[124,239,79,0.02824984978899706],[124,240,64,0.17324634276013345],[124,240,65,0.16167851574435235],[124,240,66,0.15033350262186962],[124,240,67,0.1392211603206832],[124,240,68,0.12835930490084713],[124,240,69,0.11777561727542235],[124,240,70,0.10748996145076713],[124,240,71,0.09751394699861154],[124,240,72,0.08785103699990744],[124,240,73,0.07849676666125137],[124,240,74,0.06943907297323328],[124,240,75,0.060658735627706725],[124,240,76,0.05212992926293647],[124,240,77,0.04382088696388145],[124,240,78,0.03569467481382162],[124,240,79,0.02771007717167602],[124,241,64,0.17259071607856674],[124,241,65,0.16103929227251398],[124,241,66,0.14971151393941587],[124,241,67,0.13861919818040233],[124,241,68,0.12778156292296378],[124,241,69,0.1172262070614293],[124,241,70,0.10697212018158209],[124,241,71,0.09702945767445177],[124,241,72,0.08739982938221184],[124,241,73,0.07807668345871613],[124,241,74,0.06904578550524694],[124,241,75,0.060285792913481406],[124,241,76,0.051768924223865725],[124,241,77,0.043461723190395075],[124,241,78,0.035325917136367374],[124,241,79,0.027319369088341126],[124,242,64,0.17181727465424046],[124,242,65,0.16029205598312685],[124,242,66,0.14899125740951832],[124,242,67,0.13792864349828984],[124,242,68,0.12712506378004798],[124,242,69,0.11660838737733578],[124,242,70,0.10639702207976834],[124,242,71,0.09649989987028582],[124,242,72,0.08691694830967872],[124,242,73,0.07763964206577252],[124,242,74,0.06865163434493288],[124,242,75,0.05992946787838376],[124,242,76,0.05144336501584407],[124,242,77,0.04315809638593089],[124,242,78,0.03503392750061845],[124,242,79,0.0270276426079133],[124,243,64,0.17088396758139301],[124,243,65,0.15939415462635512],[124,243,66,0.14812938160223127],[124,243,67,0.1371052981197854],[124,243,68,0.12634460285500262],[124,243,69,0.11587582055011506],[124,243,70,0.10571712035044929],[124,243,71,0.09587650406089232],[124,243,72,0.08635245785401183],[124,243,73,0.07713466983964615],[124,243,74,0.06820481296313707],[124,243,75,0.05953739261654754],[124,243,76,0.05110065827005174],[124,243,77,0.04285757836074355],[124,243,78,0.03476687761723853],[124,243,79,0.026784135948585332],[124,244,64,0.1697620297241365],[124,244,65,0.15831585505918025],[124,244,66,0.1470950489452054],[124,244,67,0.13611702923369495],[124,244,68,0.12540653731838314],[124,244,69,0.11499315679946927],[124,244,70,0.104895199639262],[124,244,71,0.09512008418933965],[124,244,72,0.08566516034780917],[124,244,73,0.07651858743847444],[124,244,74,0.06766026400703219],[124,244,75,0.05906280866734809],[124,244,76,0.050692591074923785],[124,244,77,0.04251081205625301],[124,244,78,0.03447463188561714],[124,244,79,0.026538345672736316],[124,245,64,0.16843424410471877],[124,245,65,0.15703868264580484],[124,245,66,0.14586836606414313],[124,245,67,0.1349423076346901],[124,245,68,0.12428745121619791],[124,245,69,0.11393484554936696],[124,245,70,0.10390335254898159],[124,245,71,0.09420019717277761],[124,245,72,0.08482195480410765],[124,245,73,0.07575557967238758],[124,245,74,0.06697947325830624],[124,245,75,0.058464591587372175],[124,245,76,0.0501755902784977],[124,245,77,0.042072006185330094],[124,245,78,0.0341094744504972],[124,245,79,0.026240979784461035],[124,246,64,0.16689331904836935],[124,246,65,0.155553873898556],[124,246,66,0.14443892456479684],[124,246,67,0.13356885207113242],[124,246,68,0.12297292081418465],[124,246,69,0.11268404000568258],[124,246,70,0.10272204156797514],[124,246,71,0.09309437938108311],[124,246,72,0.08379726354580538],[124,246,73,0.0748168257195939],[124,246,74,0.06613031425275746],[124,246,75,0.05770731782524327],[124,246,76,0.04951101626385699],[124,246,77,0.04149945720761686],[124,246,78,0.033626857288418084],[124,246,79,0.025844926502836034],[124,247,64,0.16514038213912546],[124,247,65,0.15386094432445893],[124,247,66,0.14280445410874484],[124,247,67,0.13199238138913968],[124,247,68,0.12145638174191264],[124,247,69,0.11123159635598269],[124,247,70,0.10133924756601033],[124,247,71,0.09178746103633374],[124,247,72,0.08257252778424197],[124,247,73,0.07368018924235206],[124,247,74,0.06508694390101162],[124,247,75,0.056761374057459665],[124,247,76,0.04866549119163224],[124,247,77,0.04075609849013642],[124,247,78,0.03298616905346365],[124,247,79,0.025306238344324515],[124,248,64,0.163183593141694],[124,248,65,0.1519663735341424],[124,248,66,0.14096958971672618],[124,248,67,0.13021547625445665],[124,248,68,0.11973809953852287],[124,248,69,0.10957516899229937],[124,248,70,0.09974970604239079],[124,248,71,0.09027095949359243],[124,248,72,0.08113577288029131],[124,248,73,0.07232996891206049],[124,248,74,0.06382974940368225],[124,248,75,0.05560310907556804],[124,248,76,0.047611261613916],[124,248,77,0.03981007639210595],[124,248,78,0.03215152427911738],[124,248,79,0.02458513099446769],[124,249,64,0.16103687812929712],[124,249,65,0.149882409745411],[124,249,66,0.13894475529921202],[124,249,67,0.12824655228907722],[124,249,68,0.11782424524572786],[124,249,69,0.10771840318848977],[124,249,70,0.09795423232752659],[124,249,71,0.08854255236330652],[124,249,72,0.07948124400323006],[124,249,73,0.0707567098152515],[124,249,74,0.06234534669631221],[124,249,75,0.05421502823557427],[124,249,76,0.046326595262536116],[124,249,77,0.03863535288926205],[124,249,78,0.031092572387426243],[124,249,79,0.023646996281969878],[124,250,64,0.15871878712439727],[124,250,65,0.14762599587157588],[124,250,66,0.13674516546209028],[124,250,67,0.12609894649774173],[124,250,68,0.11572607772095668],[124,250,69,0.10567022667886401],[124,250,70,0.0959591369403095],[124,250,71,0.08660563142137402],[124,250,72,0.0776091128711554],[124,250,73,0.06895707616197667],[124,250,74,0.06062663058892682],[124,250,75,0.052586030388680025],[124,250,76,0.04479621170072791],[124,250,77,0.037212334216608065],[124,250,78,0.02978532579771718],[124,250,79,0.022463428387087925],[124,251,64,0.15625147760484265],[124,251,65,0.1452178194211021],[124,251,66,0.1343899476625387],[124,251,67,0.12379011887719134],[124,251,68,0.11345923435124407],[124,251,69,0.10344424158120387],[124,251,70,0.09377573228732104],[124,251,71,0.08446893822202452],[124,251,72,0.0755252562094801],[124,251,73,0.06693378565272029],[124,251,74,0.05867287668000608],[124,251,75,0.05071168710640242],[124,251,76,0.04301174639917232],[124,251,77,0.035528524857676574],[124,251,78,0.028213006253262094],[124,251,79,0.021013262219431963],[124,252,64,0.15365982625123784],[124,252,65,0.14268148844929412],[124,252,66,0.1319013867953915],[124,252,67,0.12134097109750672],[124,252,68,0.11104313183576041],[124,252,69,0.10105821808446082],[124,252,70,0.09141993185541422],[124,252,71,0.08214628228077143],[124,252,72,0.07324110650079786],[124,252,73,0.06469560577950971],[124,252,74,0.056489895025207654],[124,252,75,0.048594563893062166],[124,252,76,0.040972247655428846],[124,252,77,0.0335792060436495],[124,252,78,0.026366908296108812],[124,252,79,0.019283622688485484],[124,253,64,0.1509706713081671],[124,253,65,0.1400428357905433],[124,253,66,0.12930429426956952],[124,253,67,0.11877528411612112],[124,253,68,0.10850047866811022],[124,253,69,0.09853369127575734],[124,253,70,0.08891194299325507],[124,253,71,0.07965634262663229],[124,253,72,0.07077357551727313],[124,253,73,0.06225741223861328],[124,253,74,0.05409023542473801],[124,253,75,0.04624458294225116],[124,253,76,0.0386847056178744],[124,253,77,0.03136813774496314],[124,253,78,0.024247278615914178],[124,253,79,0.01727098336157674],[124,254,64,0.1482121879003786],[124,254,65,0.13732935375925914],[124,254,66,0.12662550358567426],[124,254,67,0.1161192765294818],[124,254,68,0.10585690088705575],[124,254,69,0.09589566241139845],[124,254,70,0.08627605429871092],[124,254,71,0.07702255343355281],[124,254,72,0.06814505102477447],[124,254,73,0.059640309515381414],[124,254,74,0.051493444059359746],[124,254,75,0.04367942684076879],[124,254,76,0.03616461250110116],[124,254,77,0.028908282941254693],[124,254,78,0.021864209777980516],[124,254,79,0.014982232758717445],[124,255,64,0.14541339858225438],[124,255,65,0.13456976143609498],[124,255,66,0.12389349434679126],[124,255,67,0.11340128538211221],[124,255,68,0.10314068257363465],[124,255,69,0.09317240584003265],[124,255,70,0.08354051852535145],[124,255,71,0.0742730743284803],[124,255,72,0.06538346692445374],[124,255,73,0.056871813564869256],[124,255,74,0.048726371052226276],[124,255,75,0.040924982452534495],[124,255,76,0.0334365528883408],[124,255,77,0.026222552741803393],[124,255,78,0.019238546598127695],[124,255,79,0.012435746271066824],[124,256,64,0.14260382130123933],[124,256,65,0.13179370654989017],[124,256,66,0.12113814652142355],[124,256,67,0.11065157103461923],[124,256,68,0.10038262245044599],[124,256,69,0.09039538265984161],[124,256,70,0.08073753178990603],[124,256,71,0.07144084583520552],[124,256,72,0.06252244694997308],[124,256,73,0.05398609635264252],[124,256,74,0.04582352836013208],[124,256,75,0.03801582402431394],[124,256,76,0.03053482280625893],[124,256,77,0.02334457069657843],[124,256,78,0.016402803176180827],[124,256,79,0.009662461408554696],[124,257,64,0.1398132562415922],[124,257,65,0.12903160285846177],[124,257,66,0.11839062534348108],[124,257,67,0.10790224600389058],[124,257,68,0.09761600609823357],[124,257,69,0.08759926034159214],[124,257,70,0.07790330817720015],[124,257,71,0.06856372908785546],[124,257,72,0.05960152128079827],[124,257,73,0.051024292040566036],[124,257,74,0.042827498402365584],[124,257,75,0.03499573673809549],[124,257,76,0.02750407979466073],[124,257,77,0.020319459681218253],[124,257,78,0.013402095272230834],[124,257,79,0.006706962474328311],[124,258,64,0.13707252425526248],[124,258,65,0.12631538370038733],[124,258,66,0.11568414625611735],[124,258,67,0.10518804582657654],[124,258,68,0.09487737514717734],[124,258,69,0.08482267111518765],[124,258,70,0.07507881774726147],[124,258,71,0.06568521435928147],[124,258,72,0.05666679770406136],[124,258,73,0.04803512467222466],[124,258,74,0.03978951434682268],[124,258,75,0.0319182481264506],[124,258,76,0.024399826563503035],[124,258,77,0.01720428150543112],[124,258,78,0.010294542081283465],[124,258,79,0.0036278530411651064],[124,259,64,0.1344294781853188],[124,259,65,0.12369377183407644],[124,259,66,0.11306851385493955],[124,259,67,0.10256012707443159],[124,259,68,0.09221945872361151],[124,259,69,0.08212000915036402],[124,259,70,0.07232008775613107],[124,259,71,0.06286281352389676],[124,259,72,0.05377701785952081],[124,259,73,0.045078216428191105],[124,259,74,0.03676964891481682],[124,259,75,0.028843385546519874],[124,259,76,0.0212814991321428],[124,259,77,0.014057301299601348],[124,259,78,0.0071366415509279465],[124,259,79,4.7926770479423536E-4],[124,260,64,0.13193936566119416],[124,260,65,0.12122228833739118],[124,260,66,0.11059977218622072],[124,260,67,0.10007535155762205],[124,260,68,0.08970008822072646],[124,260,69,0.0795499836307414],[124,260,70,0.06968641318748373],[124,260,71,0.06015595836009089],[124,260,72,0.05099118412187169],[124,260,73,0.04221149337726885],[124,260,74,0.033824057452863966],[124,260,75,0.025824821619319555],[124,260,76,0.018199584513208786],[124,260,77,0.010925150238666768],[124,260,78,0.003970551852718071],[124,260,79,-0.0027016551271054137],[124,261,64,0.12964272598452659],[124,261,65,0.11894171220882527],[124,261,66,0.10831920230999492],[124,261,67,0.09777581384507596],[124,261,68,0.08736236786646244],[124,261,69,0.07715669994232624],[124,261,70,0.0672227219003689],[124,261,71,0.057610084841062364],[124,261,72,0.04835482241905642],[124,261,73,0.03948007870950887],[124,261,74,0.030996919882954985],[124,261,75,0.022905228793335074],[124,261,76,0.015194681471534823],[124,261,77,0.007845804413118662],[124,261,78,8.311114579761638E-4],[124,261,79,-0.005883681020680025],[124,262,64,0.1275654849786201],[124,262,65,0.11687822097673911],[124,262,66,0.10625349668655108],[124,262,67,0.0956890359831457],[124,262,68,0.08523487987484545],[124,262,69,0.07496987105885677],[124,262,70,0.06495979245744432],[124,262,71,0.05525686083359239],[124,262,72,0.04590022542728475],[124,262,73,0.036916558387752756],[124,262,74,0.02832073638816448],[124,262,75,0.020116612676675114],[124,262,76,0.012297878691463855],[124,262,77,0.0048490142493110965],[124,262,78,-0.0022536747884382216],[124,262,79,-0.009040932563944542],[124,263,64,0.1257202313037761],[124,263,65,0.11504468067921611],[124,263,66,0.10441604958161796],[124,263,67,0.09382924266939237],[124,263,68,0.08333292646930222],[124,263,69,0.07300600690493768],[124,263,70,0.06291537084465226],[124,263,71,0.053115210696823775],[124,263,72,0.04364736691268859],[124,263,73,0.03454176913375062],[124,263,74,0.025816975545941673],[124,263,75,0.017480809856951263],[124,263,76,0.009531095173116455],[124,263,77,0.001956483919975368],[124,263,78,-0.00526261716973911],[124,263,79,-0.012153028087144387],[124,264,64,0.1241077242644063],[124,264,65,0.1134421645025901],[124,264,66,0.10280847128890769],[124,264,67,0.09219885333179255],[124,264,68,0.08165997966715782],[124,264,69,0.07126979990595819],[124,264,70,0.061095469288765816],[124,264,71,0.05119250539589479],[124,264,72,0.04160496262366248],[124,264,73,0.03236571181302725],[124,264,74,0.02349682478223561],[124,264,75,0.015010063356486228],[124,264,76,0.00690747233410488],[124,264,77,-8.17924317590684E-4],[124,264,78,-0.008181324878450424],[124,264,79,-0.015205249870622491],[124,265,64,0.12271863250847713],[124,265,65,0.11206169941348383],[124,265,66,0.10142232544037094],[124,265,67,0.09079019032342187],[124,265,68,0.08020933798310176],[124,265,69,0.06975570584203154],[124,265,70,0.05949584626396892],[124,265,71,0.04948591721185025],[124,265,72,0.03977167682296895],[124,265,73,0.03038858933294657],[124,265,74,0.021362042303701277],[124,265,75,0.012707674939415664],[124,265,76,0.004431817107737064],[124,265,77,-0.0034679614767764455],[124,265,78,-0.010861866792161263],[124,265,79,-0.011863492403146228],[124,266,64,0.12153550280756692],[124,266,65,0.1108862399163196],[124,266,66,0.10024108848307142],[124,266,67,0.0895874022645367],[124,266,68,0.07896598904627218],[124,266,69,0.06844971897665539],[124,266,70,0.05810366665010941],[124,266,71,0.04798393801993139],[124,266,72,0.03813747345947524],[124,266,73,0.02860196809996309],[124,266,74,0.019405909617826178],[124,266,75,0.01056873346093974],[124,266,76,0.002101095323256464],[124,266,77,-7.663741965471924E-4],[124,266,78,-0.0021011440502999353],[124,266,79,-0.003355996305863229],[124,267,64,0.1205349579061006],[124,267,65,0.10989286787792799],[124,267,66,0.09924233022251115],[124,267,67,0.08856860139782646],[124,267,68,0.07790867697394453],[124,267,69,0.06733134029502698],[124,267,70,0.05689934088662339],[124,267,71,0.04666806000781926],[124,267,72,0.036685110897715464],[124,267,73,0.026990062019664605],[124,267,74,0.017614283707885356],[124,267,75,0.012064020826969404],[124,267,76,0.010263745014313735],[124,267,77,0.008555974501208501],[124,267,78,0.006938981000751493],[124,267,79,0.005404214438797259],[124,268,64,0.11969012224220577],[124,268,65,0.10905521718409683],[124,268,66,0.09840011416651828],[124,268,67,0.08770821366949966],[124,268,68,0.07701217320565375],[124,268,69,0.06637573756296755],[124,268,70,0.05585854185837124],[124,268,71,0.045514617614683034],[124,268,72,0.03539177905031984],[124,268,73,0.026614256261681006],[124,268,74,0.024401399179494136],[124,268,75,0.02224222548571913],[124,268,76,0.02015427037234864],[124,268,77,0.018148016479918323],[124,268,78,0.016227057246517584],[124,268,79,0.014388388466256802],[124,269,64,0.1189732741701353],[124,269,65,0.10834612182970552],[124,269,66,0.09768761625147769],[124,269,67,0.08697954010873749],[124,269,68,0.076249749374861],[124,269,69,0.06555609580515728],[124,269,70,0.05495439815268556],[124,269,71,0.04449678939087558],[124,269,72,0.04007655814668357],[124,269,73,0.03759923256910352],[124,269,74,0.03512473541502419],[124,269,75,0.03268123972221382],[124,269,76,0.030290683853164625],[124,269,77,0.02796861094780038],[124,269,78,0.02572414369534206],[124,269,79,0.023560094269435724],[124,270,64,0.11835872315500302],[124,270,65,0.10774048589410169],[124,270,66,0.09707996039331511],[124,270,67,0.08635752795050672],[124,270,68,0.07559585068055723],[124,270,69,0.06484615670035],[124,270,70,0.056750167073569495],[124,270,71,0.05419506930251196],[124,270,72,0.051537100650792485],[124,270,73,0.04881692157415291],[124,270,74,0.046071054146211696],[124,270,75,0.0433312313122802],[124,270,76,0.040623887696267985],[124,270,77,0.03796979245031211],[124,270,78,0.035383824411616235],[124,270,79,0.032874889612239666],[124,271,64,0.11779749306095122],[124,271,65,0.10720295238577232],[124,271,66,0.0965421170971967],[124,271,67,0.08580714053527971],[124,271,68,0.07501518368176396],[124,271,69,0.07135091449650519],[124,271,70,0.06879251599847688],[124,271,71,0.06605426462262748],[124,271,72,0.06317939679337423],[124,271,73,0.06020949991296787],[124,271,74,0.05718348288871783],[124,271,75,0.05413669410943548],[124,271,76,0.051100187853491526],[124,271,77,0.04810013986537658],[124,271,78,0.045157412595896236],[124,271,79,0.042287270364829856],[124,272,64,0.11226921454117611],[124,272,65,0.10664505750967115],[124,272,66,0.09598676695118205],[124,272,67,0.08824297360084192],[124,272,68,0.08608301780692634],[124,272,69,0.08363132361085931],[124,272,70,0.08092548777779675],[124,272,71,0.07800622362471588],[124,272,72,0.07491578310363509],[124,272,73,0.07169652994605387],[124,272,74,0.06838966564685123],[124,272,75,0.06503410980366532],[124,272,76,0.06166553606498066],[124,272,77,0.058315564678387555],[124,272,78,0.055011112371447075],[124,272,79,0.05177390004308249],[124,273,64,0.10706084067384952],[124,273,65,0.10053733473438868],[124,273,66,0.09840174120633015],[124,273,67,0.09810740457157494],[124,273,68,0.09785082684342634],[124,273,69,0.09589151979906099],[124,273,70,0.09304575757488515],[124,273,71,0.08995347641152515],[124,273,72,0.08665571970679574],[124,273,73,0.08319542324840908],[124,273,74,0.07961589604503347],[124,273,75,0.07595946261196382],[124,273,76,0.07226626823622687],[124,273,77,0.06857324846757776],[124,273,78,0.06491326380520564],[124,273,79,0.06131440027692378],[124,274,64,0.10219315349641322],[124,274,65,0.1001062747331316],[124,274,66,0.09856804397190477],[124,274,67,0.09755987102882557],[124,274,68,0.09705283588745922],[124,274,69,0.09700756516562892],[124,274,70,0.09737436661751853],[124,274,71,0.09809635326573651],[124,274,72,0.09831446692333205],[124,274,73,0.09462816538963494],[124,274,74,0.09079174955736809],[124,274,75,0.08685068060326553],[124,274,76,0.08284930119349028],[124,274,77,0.07882958718326283],[124,274,78,0.07483007244439334],[124,274,79,0.07088494773036158],[124,275,64,0.09768623043402191],[124,275,65,0.09566536017198524],[124,275,66,0.09423044091893662],[124,275,67,0.09336123737312008],[124,275,68,0.09302619010028262],[124,275,69,0.09318220770239227],[124,275,70,0.09377471662225834],[124,275,71,0.09474072377814968],[124,275,72,0.09600847036083249],[124,275,73,0.0974920481389932],[124,275,74,0.09907808740640378],[124,275,75,0.09764822958552277],[124,275,76,0.09336275004114039],[124,275,77,0.08904082424234044],[124,275,78,0.08472625047278218],[124,275,79,0.08045891590981302],[124,276,64,0.09355904443978447],[124,276,65,0.09160127799610118],[124,276,66,0.0902656345524992],[124,276,67,0.08953033817439543],[124,276,68,0.0893613177102367],[124,276,69,0.08971191382546623],[124,276,70,0.09052284297988766],[124,276,71,0.09172519694689535],[124,276,72,0.09324000250960152],[124,276,73,0.09497337596631794],[124,276,74,0.09680873057622008],[124,276,75,0.09863857371413404],[124,276,76,0.10037911049967141],[124,276,77,0.09916369775267685],[124,276,78,0.09456566869960294],[124,276,79,0.09000752414463563],[124,277,64,0.08982910360287993],[124,277,65,0.08793136513340089],[124,277,66,0.0866905771054528],[124,277,67,0.08608353819889131],[124,277,68,0.08607380918247914],[124,277,69,0.08661133424085327],[124,277,70,0.08763231824870832],[124,277,71,0.08906216182862109],[124,277,72,0.09081492551401998],[124,277,73,0.09278899968247839],[124,277,74,0.09486465383713538],[124,277,75,0.09693370513187483],[124,277,76,0.09891120928850838],[124,277,77,0.10073405640103206],[124,277,78,0.10235968264249728],[124,277,79,0.09950049317234176],[124,278,64,0.0865121302245716],[124,278,65,0.08467122559165374],[124,278,66,0.08352055327939006],[124,278,67,0.08303561124775305],[124,278,68,0.08317775016928441],[124,278,69,0.08389370875545415],[124,278,70,0.0851154037233236],[124,278,71,0.08676279934051695],[124,278,72,0.08874327487102729],[124,278,73,0.09094778488599381],[124,278,74,0.09325355130581098],[124,278,75,0.09555169448464784],[124,278,76,0.09775612140816925],[124,278,77,0.09980216033915829],[124,278,78,0.10164533166770123],[124,278,79,0.1032603235436449],[124,279,64,0.08362177936196324],[124,279,65,0.08183444301356313],[124,279,66,0.08076888761109224],[124,279,67,0.08039944316262215],[124,279,68,0.08068542098662729],[124,279,69,0.0815705630335648],[124,279,70,0.0829827442264161],[124,279,71,0.0848367757548637],[124,279,72,0.08703367488862551],[124,279,73,0.08945728854056528],[124,279,74,0.09198190911154935],[124,279,75,0.09449796593927734],[124,279,76,0.09691823093528407],[124,279,77,0.09917648681029939],[124,279,78,0.10122635031218546],[124,279,79,0.10304029117399327],[124,280,64,0.08116939683968649],[124,280,65,0.07943233310543552],[124,280,66,0.07844669207172916],[124,280,67,0.07818577537691634],[124,280,68,0.0786070369046089],[124,280,69,0.07965144639322158],[124,280,70,0.0812431041282109],[124,280,71,0.08329197757632673],[124,280,72,0.08569307293650547],[124,280,73,0.08832349296776909],[124,280,74,0.09105473943692577],[124,280,75,0.09377656862172301],[124,280,76,0.09640064382347086],[124,280,77,0.09885923162587223],[124,280,78,0.10110407040267821],[124,280,79,0.10310542525034572],[124,281,64,0.07916381672943795],[124,281,65,0.0774737359393537],[124,281,66,0.07656265389872019],[124,281,67,0.07640298901271814],[124,281,68,0.07695052925164325],[124,281,69,0.07814371064231845],[124,281,70,0.07990314459355263],[124,281,71,0.082134287801932],[124,281,72,0.08472651520855068],[124,281,73,0.08755058146209321],[124,281,74,0.0904753562686052],[124,281,75,0.09338995275992745],[124,281,76,0.09620496465350548],[124,281,77,0.09885118476408117],[124,281,78,0.10127851136316812],[124,281,79,0.10345503148943852],[124,282,64,0.07761134931779884],[124,282,65,0.07596499921224342],[124,282,66,0.07512301478488498],[124,282,67,0.0750570806718392],[124,282,68,0.07572151849229813],[124,282,69,0.07705248111803309],[124,282,70,0.0789673932208867],[124,282,71,0.08136755472290003],[124,282,72,0.08413711513558142],[124,282,73,0.08714090662052265],[124,282,74,0.09024534386989941],[124,282,75,0.09333893848078273],[124,282,76,0.09633126587959495],[124,282,77,0.099151700120922],[124,282,78,0.10174835044272262],[124,282,79,0.10408716513539279],[124,283,64,0.0765162376557541],[124,283,65,0.07491043066995734],[124,283,66,0.07413201970807548],[124,283,67,0.07415210824777657],[124,283,68,0.07492375762602788],[124,283,69,0.07638109828333545],[124,283,70,0.07843868442821367],[124,283,71,0.08099403161449248],[124,283,72,0.08392649275822295],[124,283,73,0.08709542961618272],[124,283,74,0.09036499606413367],[124,283,75,0.09362315513462871],[124,283,76,0.09677852713994406],[124,283,77,0.09975913465524006],[124,283,78,0.10251136143590384],[124,283,79,0.10499906887643606],[124,284,64,0.07588011503834902],[124,284,65,0.07431175143298385],[124,284,66,0.07359136673714445],[124,284,67,0.07368963786173865],[124,284,68,0.0745585768999012],[124,284,69,0.07613056083821529],[124,284,70,0.07831760153626632],[124,284,71,0.08101381831368076],[124,284,72,0.08409421626183827],[124,284,73,0.08741316206618388],[124,284,74,0.09083275876219182],[124,284,75,0.09424048478334718],[124,284,76,0.09754407996988856],[124,284,77,0.10067029454359555],[124,284,78,0.10356386243583077],[124,284,79,0.10618662227865355],[124,285,64,0.07570175997683248],[124,285,65,0.07416784732978882],[124,285,66,0.07349995527653375],[124,285,67,0.07366848959204275],[124,285,68,0.07462462760274569],[124,285,69,0.07629926814487603],[124,285,70,0.07860221835497061],[124,285,71,0.08142460244568245],[124,285,72,0.0846375432506638],[124,285,73,0.08809090766288746],[124,285,74,0.09164497219057233],[124,285,75,0.09518680521368095],[124,285,76,0.09862335172986197],[124,285,77,0.10188018008425476],[124,285,78,0.10490046169759049],[124,285,79,0.10764408850287821],[124,286,64,0.07597709168279798],[124,286,65,0.07447476123200197],[124,286,66,0.07385387572703367],[124,286,67,0.07408472496468643],[124,286,68,0.07511786790380187],[124,286,69,0.0768830049283673],[124,286,70,0.07928808323423098],[124,286,71,0.08222164326294479],[124,286,72,0.08555140473523537],[124,286,73,0.0891232465660422],[124,286,74,0.09279585585826544],[124,286,75,0.09645597557683838],[124,286,76,0.100009851938065],[124,286,77,0.10338197265898863],[124,286,78,0.10651404507320594],[124,286,79,0.1093641019556637],[124,287,64,0.07669920505994576],[124,287,65,0.07522572530289234],[124,287,66,0.07464643941900245],[124,287,67,0.07493167502932563],[124,287,68,0.07603158954493971],[124,287,69,0.07787496705678587],[124,287,70,0.08036824438212259],[124,287,71,0.0833977969065951],[124,287,72,0.08682843067147061],[124,287,73,0.09050256145702867],[124,287,74,0.09427753527355653],[124,287,75,0.09803986383420649],[124,287,76,0.10169520042645463],[124,287,77,0.10516706349078137],[124,287,78,0.10839580516648273],[124,287,79,0.11133769753305917],[124,288,64,0.07785844517676488],[124,288,65,0.0764112331324216],[124,288,66,0.07586824879132115],[124,288,67,0.07620000899393864],[124,288,68,0.0773564853597139],[124,288,69,0.07926582837432633],[124,288,70,0.08183331642377345],[124,288,71,0.08494358306364624],[124,288,72,0.0884590170247016],[124,288,73,0.09221910522851628],[124,288,74,0.09608011038407988],[124,288,75,0.09992841598252322],[124,288,76,0.10366919729343715],[124,288,77,0.10722512417088148],[124,288,78,0.1105353121812202],[124,288,79,0.11355438143074398],[124,289,64,0.07944252122028961],[124,289,65,0.07801915175902907],[124,289,66,0.07750730781624321],[124,289,67,0.07787784341833098],[124,289,68,0.07908075761941225],[124,289,69,0.08104384858733188],[124,289,70,0.08367158820108372],[124,289,71,0.08684729302009986],[124,289,72,0.0904314343588003],[124,289,73,0.09426111030967199],[124,289,74,0.09819176574025806],[124,289,75,0.10210976705863734],[124,289,76,0.10591993465338972],[124,289,77,0.1095442189553153],[124,289,78,0.11292062646290751],[124,289,79,0.1160022435206372],[124,290,64,0.08143665993082116],[124,290,65,0.08003487357803718],[124,290,66,0.07954917267002665],[124,290,67,0.0799508919663704],[124,290,68,0.08119026720598777],[124,290,69,0.08319502220323782],[124,290,70,0.08586917181317799],[124,290,71,0.08909513910984962],[124,290,72,0.09273197795029625],[124,290,73,0.09661493962682394],[124,290,74,0.1005989223820341],[124,290,75,0.10457039392377099],[124,290,76,0.10843395018292884],[124,290,77,0.11211095883078348],[124,290,78,0.11553845273382618],[124,290,79,0.11866811129390775],[124,291,64,0.08382379851758853],[124,291,65,0.08244150813665685],[124,291,66,0.08197714264932376],[124,291,67,0.08240265571692656],[124,291,68,0.0836687236118474],[124,291,69,0.08570326852237942],[124,291,70,0.08841019289756002],[124,291,71,0.09167144555934592],[124,291,72,0.09534515942745209],[124,291,73,0.09926527919954165],[124,291,74,0.10328643144885241],[124,291,75,0.10729530982723406],[124,291,76,0.11119642246387368],[124,291,77,0.11491069734988751],[124,291,78,0.11837433602150282],[124,291,79,0.12153774537032572],[124,292,64,0.08658481705547838],[124,292,65,0.08522011381571587],[124,292,66,0.08477249133345888],[124,292,67,0.08521465403364653],[124,292,68,0.08649791576663013],[124,292,69,0.08855066268279782],[124,292,70,0.09127702215210476],[124,292,71,0.09455888072816399],[124,292,72,0.09825393993443526],[124,292,73,0.10219537237227566],[124,292,74,0.1062378095130383],[124,292,75,0.11026830074974425],[124,292,76,0.11419140812305661],[124,292,77,0.11792776823584],[124,292,78,0.12141289928067031],[124,292,79,0.12459607657411534],[124,293,64,0.08969881036272243],[124,293,65,0.0883499693980041],[124,293,66,0.0879147379924804],[124,293,67,0.0883666959934512],[124,293,68,0.08965798369085892],[124,293,69,0.09171770775792887],[124,293,70,0.09445054809777242],[124,293,71,0.09773873074535638],[124,293,72,0.10144000482046978],[124,293,73,0.10538729568143584],[124,293,74,0.10943551563644904],[124,293,75,0.11347220352622472],[124,293,76,0.11740212076885681],[124,293,77,0.12114576475653252],[124,293,78,0.1246381227086078],[124,293,79,0.12782748457617943],[124,294,64,0.09314339935952576],[124,294,65,0.09180888552321487],[124,294,66,0.09138195924097287],[124,294,67,0.09183719237373988],[124,294,68,0.09312773097645266],[124,294,69,0.09518364790715855],[124,294,70,0.09791049108202687],[124,294,71,0.1011912145415717],[124,294,72,0.10488407985394704],[124,294,73,0.10882227635789071],[124,294,74,0.11286127015038289],[124,294,75,0.11688922574806432],[124,294,76,0.12081125172443691],[124,294,77,0.12454786086794159],[124,294,78,0.12803366475384126],[124,294,79,0.13121611810267536],[124,295,64,0.09689508190778823],[124,295,65,0.09557355602963924],[124,295,66,0.09515114093778138],[124,295,67,0.09560350819845415],[124,295,68,0.09688497809425095],[124,295,69,0.09892682257940189],[124,295,70,0.10163575852311768],[124,295,71,0.10489584027710286],[124,295,72,0.10856628896166198],[124,295,73,0.11248105146505216],[124,295,74,0.1164964151589093],[124,295,75,0.12050130744500692],[124,295,76,0.12440133255785324],[124,295,77,0.12811717412704632],[124,295,78,0.1315832248183783],[124,295,79,0.13474625671011925],[124,296,64,0.10092962313170073],[124,296,65,0.09961994918238953],[124,296,66,0.0991985703314271],[124,296,67,0.09964235584277908],[124,296,68,0.10090695652832937],[124,296,69,0.10292506176947835],[124,296,70,0.10560484139499637],[124,296,71,0.10883180316562963],[124,296,72,0.11246655349293633],[124,296,73,0.11634426867230885],[124,296,74,0.12032231676538196],[124,296,75,0.1242905245464273],[124,296,76,0.12815513940879494],[124,296,77,0.13183717037400697],[124,296,78,0.13527094765322648],[124,296,79,0.13840271412676491],[124,297,64,0.10522248521944833],[124,297,65,0.10392373878838901],[124,297,66,0.10350026845144872],[124,297,67,0.10393022869672075],[124,297,68,0.10517074373734309],[124,297,69,0.10715612232752625],[124,297,70,0.10979625195311188],[124,297,71,0.11297842469390634],[124,297,72,0.11656503300888255],[124,297,73,0.1203929286640606],[124,297,74,0.12432080902238982],[124,297,75,0.12823953412225278],[124,297,76,0.13205613911221215],[124,297,77,0.13569211018387148],[124,297,78,0.13908186944746137],[124,297,79,0.14217128316052585],[124,298,64,0.10974929670579714],[124,298,65,0.10846077519790198],[124,298,66,0.10803246274544703],[124,298,67,0.10844387538733041],[124,298,68,0.10965373894267011],[124,298,69,0.11159816532122313],[124,298,70,0.11418900270084925],[124,298,71,0.11731563323715383],[124,298,72,0.12084260759656554],[124,298,73,0.12460886918411138],[124,298,74,0.1284746796049016],[124,298,75,0.13233206140328274],[124,298,76,0.13608897711858498],[124,298,77,0.13966753708755553],[124,298,78,0.1430024056105913],[124,298,79,0.146039222173185],[124,299,64,0.11448636123572264],[124,299,65,0.11320759619276172],[124,299,66,0.11277209996198756],[124,299,67,0.11316081455973626],[124,299,68,0.1143341797435159],[124,299,69,0.11623027445097683],[124,299,70,0.1187631265967789],[124,299,71,0.12182448607032664],[124,299,72,0.12528140170823443],[124,299,73,0.12897529071559277],[124,299,74,0.1327681972067765],[124,299,75,0.13655342858108144],[124,299,76,0.14024000721100824],[124,299,77,0.14375080756227587],[124,299,78,0.14702088024839732],[124,299,79,0.14999578312107373],[124,300,64,0.11941120580906384],[124,300,65,0.11814197776128288],[124,300,66,0.11769739927934852],[124,300,67,0.11805989021696883],[124,300,68,0.11919169955896258],[124,300,69,0.12103301551807005],[124,300,70,0.1235002385026987],[124,300,71,0.12648773277523515],[124,300,72,0.12986534952560347],[124,300,73,0.13347732379639837],[124,300,74,0.137187680660622],[124,300,75,0.1408911253874226],[124,300,76,0.14449786301907214],[124,300,77,0.1479316627914144],[124,300,78,0.15112809733222649],[124,300,79,0.15403278116219518],[124,301,64,0.12450316850608065],[124,301,65,0.1232435247597326],[124,301,66,0.12278844567998834],[124,301,67,0.12312186761844998],[124,301,68,0.12420792589683666],[124,301,69,0.12598903694563063],[124,301,70,0.12838413787233854],[124,301,71,0.13129042004339433],[124,301,72,0.1345808018490527],[124,301,73,0.13810263796999808],[124,301,74,0.14172210978086536],[124,301,75,0.14533542145315498],[124,301,76,0.14885407132940534],[124,301,77,0.1522028421936798],[124,301,78,0.15531795356160485],[124,301,79,0.15814520582966002],[124,302,64,0.12974402569406102],[124,302,65,0.12849430146051022],[124,302,66,0.12802782357088488],[124,302,67,0.128330069737304],[124,302,68,0.12936711944955],[124,302,69,0.1310837113525842],[124,302,70,0.13340145268088932],[124,302,71,0.13622053787475902],[124,302,72,0.13941717451191232],[124,302,73,0.1428420923717959],[124,302,74,0.14636377793020677],[124,302,75,0.1498800204466545],[124,302,76,0.15330370719304895],[124,302,77,0.15656073872173668],[124,302,78,0.15958809292034098],[124,302,79,0.16233187377160557],[124,303,64,0.1351186587149375],[124,303,65,0.13387950198699342],[124,303,66,0.13340129064969797],[124,303,67,0.1336710542764378],[124,303,68,0.13465685401686384],[124,303,69,0.13630581818053775],[124,303,70,0.13854232459529786],[124,303,71,0.14126970717228943],[124,303,72,0.14436763831976784],[124,303,73,0.14769042795097187],[124,303,74,0.15110898630938996],[124,303,75,0.1545227559917992],[124,303,76,0.15784609082959528],[124,303,77,0.16100609593023385],[124,303,78,0.16394060292604976],[124,303,79,0.16659612305752725],[124,304,64,0.1406157600538136],[124,304,65,0.13938816063494897],[124,304,66,0.13889849201666302],[124,304,67,0.13913533124330008],[124,304,68,0.14006873725548397],[124,304,69,0.14164826737350308],[124,304,70,0.14380113538524436],[124,304,71,0.1464339087322619],[124,304,72,0.1494298505147079],[124,304,73,0.15264700132772474],[124,304,74,0.15595877997021007],[124,304,75,0.15926632936538962],[124,304,76,0.16248552632801588],[124,304,77,0.1655447468131583],[124,304,78,0.16838275257302615],[124,304,79,0.17094654905095205],[124,305,64,0.1462285789885408],[124,305,65,0.14501390208065576],[124,305,66,0.14451371453235212],[124,305,67,0.1447181210834551],[124,305,68,0.14559917225562344],[124,305,69,0.14710886411059665],[124,305,70,0.14917727457493224],[124,305,71,0.1517142536304547],[124,305,72,0.15460672776463957],[124,305,73,0.15771656028604436],[124,305,74,0.16091972555188758],[124,305,75,0.16411908897413832],[124,305,76,0.16723208214430102],[124,305,77,0.17018839441063582],[124,305,78,0.1729277719685862],[124,305,79,0.17539778184857224],[124,306,64,0.15195570672032455],[124,306,65,0.15075573147570961],[124,306,66,0.1502466814212835],[124,306,67,0.150420153372952],[124,306,68,0.15125015994451368],[124,306,69,0.1526911145916947],[124,306,70,0.15467594833567364],[124,306,71,0.15711779500419307],[124,306,72,0.15990726067765837],[124,306,73,0.1629100609019992],[124,306,74,0.16600473074079097],[124,306,75,0.16909585161121587],[124,306,76,0.17210241339589877],[124,306,77,0.17495543418516668],[124,306,78,0.17759567366286613],[124,306,79,0.17997130528582894],[124,307,64,0.15780083056811203],[124,307,65,0.15661779222747926],[124,307,66,0.1561023055848228],[124,307,67,0.1562474079441358],[124,307,68,0.1570290208547232],[124,307,69,0.1584039220584322],[124,307,70,0.1603078443982517],[124,307,71,0.1626571577878148],[124,307,72,0.16534610586667026],[124,307,73,0.1682442212728467],[124,307,74,0.1712325606193842],[124,307,75,0.17421738363202674],[124,307,76,0.17711921108728404],[124,307,77,0.1798703753172549],[124,307,78,0.1824126506281562],[124,307,79,0.18469483661717673],[124,308,64,0.16375108288672163],[124,308,65,0.16258766466575922],[124,308,66,0.16206878722835263],[124,308,67,0.16218886667521257],[124,308,68,0.1629256663890326],[124,308,69,0.1642382574192361],[124,308,70,0.16606510130078905],[124,308,71,0.1683257303800467],[124,308,72,0.1709179538786106],[124,308,73,0.17371505507459722],[124,308,74,0.17660056173444882],[124,308,75,0.17948237052064347],[124,308,76,0.18228249713147993],[124,308,77,0.18493456129614821],[124,308,78,0.1873813381879873],[124,308,79,0.18957225701075542],[124,309,64,0.1697734422939542],[124,309,65,0.16863269013304502],[124,309,66,0.16811386443716084],[124,309,67,0.16821269411106254],[124,309,68,0.16890871286346335],[124,309,69,0.17016320977664373],[124,309,70,0.17191729799911246],[124,309,71,0.17409359530921104],[124,309,72,0.17659340207956806],[124,309,73,0.17929368685999306],[124,309,74,0.18208041931949911],[124,309,75,0.18486311558926505],[124,309,76,0.18756526474073784],[124,309,77,0.19012175337840748],[124,309,78,0.19247634347181677],[124,309,79,0.19457909176333982],[124,310,64,0.17583306828394787],[124,310,65,0.1747183100680444],[124,310,66,0.17420329563133236],[124,310,67,0.1742849967389281],[124,310,68,0.17494464178535435],[124,310,69,0.17614565848626995],[124,310,70,0.177831730622108],[124,310,71,0.17992848094756847],[124,310,72,0.1823406238125113],[124,310,73,0.1849487482489728],[124,310,74,0.18764125714573598],[124,310,75,0.19032929242412577],[124,310,76,0.1929378098105047],[124,310,77,0.195402949392673],[124,310,78,0.1976694466389171],[124,310,79,0.19968797948622496],[124,311,64,0.18189451070433135],[124,311,65,0.18080928186605028],[124,311,66,0.18030208612508253],[124,311,67,0.18037106439999645],[124,311,68,0.18099905998402913],[124,311,69,0.1821515554512602],[124,311,70,0.18377471980483442],[124,311,71,0.1857970960280655],[124,311,72,0.18812673133997182],[124,311,73,0.19064776944379866],[124,311,74,0.19325105648508262],[124,311,75,0.19584938900312038],[124,311,76,0.1983691969246356],[124,311,77,0.20074786757454277],[124,311,78,0.20293109786371913],[124,311,79,0.2048701770970001],[124,312,64,0.18792221815627028],[124,312,65,0.18687018737116223],[124,312,66,0.1863749953390028],[124,312,67,0.18643587492453131],[124,312,68,0.1870372004790414],[124,312,69,0.1881464211748999],[124,312,70,0.18971210105259148],[124,312,71,0.19166561365868007],[124,312,72,0.19391825309599098],[124,312,73,0.1963576495710608],[124,312,74,0.19887711949388848],[124,312,75,0.20139116406471128],[124,312,76,0.20382770863377875],[124,312,77,0.2061253886502648],[124,312,78,0.20823085208350678],[124,312,79,0.21009598704428833],[124,313,64,0.19388210942982487],[124,313,65,0.19286691086925145],[124,313,66,0.19238792037770816],[124,313,67,0.1924453826372276],[124,313,68,0.19302511560162464],[124,313,69,0.19409644256174066],[124,313,70,0.19561022769062675],[124,313,71,0.19750058032522064],[124,313,72,0.1996819501124461],[124,313,73,0.20204538237837538],[124,313,74,0.20448670634018917],[124,313,75,0.2069221980290231],[124,313,76,0.20928131271595132],[124,313,77,0.21150394214515822],[124,313,78,0.2135376772058888],[124,313,79,0.21533499038784362],[124,314,64,0.1997414625590293],[124,314,65,0.19876654439086566],[124,314,66,0.198307816291286],[124,314,67,0.1983664523128818],[124,314,68,0.19892962343586812],[124,314,69,0.199968430723202],[124,314,70,0.20143593903398807],[124,314,71,0.20326889358055672],[124,314,72,0.20538480257346],[124,314,73,0.20767805120815652],[124,314,74,0.21004703821445703],[124,314,75,0.21240990363047324],[124,314,76,0.2146976799718187],[124,314,77,0.2168515308288545],[124,314,78,0.21881998462940236],[124,314,79,0.22055608275005836],[124,315,64,0.20546809864399188],[124,315,65,0.20453666590968894],[124,315,66,0.2041020670512448],[124,315,67,0.20416632114877847],[124,315,68,0.20471785885601823],[124,315,69,0.20572945903154066],[124,315,70,0.20715628332883732],[124,315,71,0.20893760770030156],[124,315,72,0.21099389600790294],[124,315,73,0.21322279356806517],[124,315,74,0.2155253380089783],[124,315,75,0.2178216402425977],[124,315,76,0.22004436953229733],[124,315,77,0.22213598414189897],[124,315,78,0.22404594772395925],[124,315,79,0.22572785458474326],[124,316,64,0.21103080735218382],[124,316,65,0.21014577339764018],[124,316,66,0.2097389268789641],[124,316,67,0.20981304612524138],[124,316,68,0.2103577257462667],[124,316,69,0.2113473191247791],[124,316,70,0.2127389765986721],[124,316,71,0.21447439458916345],[124,316,72,0.21647688367064763],[124,316,73,0.21864726461570733],[124,316,74,0.2208892946231374],[124,316,75,0.22312517872324178],[124,316,76,0.2252892939516889],[124,316,77,0.22732542322217675],[124,316,78,0.22918396644276173],[124,316,79,0.23081905498370286],[124,317,64,0.21639982056371687],[124,317,65,0.2155637638324475],[124,317,66,0.2151880033771239],[124,317,67,0.215275990066644],[124,317,68,0.21581838486949695],[124,317,69,0.21679100956318914],[124,317,70,0.218152891200821],[124,317,71,0.21984803151332527],[124,317,72,0.22180247292237598],[124,317,73,0.2239201218708483],[124,317,74,0.2261075457911016],[124,317,75,0.22828918215720465],[124,317,76,0.23040119766665562],[124,317,77,0.23238873687097114],[124,317,78,0.23420314056408392],[124,317,79,0.2357990619299063],[124,318,64,0.22154729138731286],[124,318,65,0.22076241759150636],[124,318,66,0.2204207460936275],[124,318,67,0.2205263132083035],[124,318,68,0.2210707473382079],[124,318,69,0.2220312302019939],[124,318,70,0.22336855022486923],[124,318,71,0.22502889480509333],[124,318,72,0.22694091770857977],[124,318,73,0.22901151614245252],[124,318,74,0.23115016723082213],[124,318,75,0.2332836930247548],[124,318,76,0.2353501419900948],[124,318,77,0.2372960641730758],[124,318,78,0.23907374972135487],[124,318,79,0.24063835949268217],[124,319,64,0.22644777854696102],[124,319,65,0.22571588823201344],[124,319,66,0.22541094051801025],[124,319,67,0.22553747026925092],[124,319,68,0.22608797368761224],[124,319,69,0.22704088228028443],[124,319,70,0.22835862773300572],[124,319,71,0.22998945953980515],[124,319,72,0.23186451713774592],[124,319,73,0.23389358867053633],[124,319,74,0.23598916811433804],[124,319,75,0.23808062679600123],[124,319,76,0.2401079966398983],[124,319,77,0.24201928377094423],[124,319,78,0.24376774022153058],[124,319,79,0.24202824495862063],[125,-64,64,0.3446483157903033],[125,-64,65,0.35075636097475915],[125,-64,66,0.35696447707010653],[125,-64,67,0.3632584955743884],[125,-64,68,0.3696375627269298],[125,-64,69,0.37611296295413527],[125,-64,70,0.3826938260034206],[125,-64,71,0.38938593587372367],[125,-64,72,0.3961909964607191],[125,-64,73,0.403106036975184],[125,-64,74,0.4101229610514325],[125,-64,75,0.41722824332091746],[125,-64,76,0.42440277706204954],[125,-64,77,0.4316218763529298],[125,-64,78,0.43885543595070076],[125,-64,79,0.44606825190261096],[125,-63,64,0.3475595590626176],[125,-63,65,0.3537575941911477],[125,-63,66,0.3600604791776855],[125,-63,67,0.36645399246337884],[125,-63,68,0.37293642321543913],[125,-63,69,0.3795177956098013],[125,-63,70,0.3862060604870521],[125,-63,71,0.3930059205507435],[125,-63,72,0.3999181019777347],[125,-63,73,0.4069387651405202],[125,-63,74,0.4140590582717512],[125,-63,75,0.42126481775927466],[125,-63,76,0.4285364185963485],[125,-63,77,0.4358487783282084],[125,-63,78,0.443171517634486],[125,-63,79,0.4504692804701701],[125,-62,64,0.35066568362675127],[125,-62,65,0.3569469664650998],[125,-62,66,0.36333634791095354],[125,-62,67,0.36981991782474527],[125,-62,68,0.3763950753544651],[125,-62,69,0.3830702720614726],[125,-62,70,0.3898520606371994],[125,-62,71,0.39674393696231247],[125,-62,72,0.403745609530977],[125,-62,73,0.4108524072126741],[125,-62,74,0.4180548290997885],[125,-62,75,0.42533824004813536],[125,-62,76,0.4326827153551661],[125,-62,77,0.4400630378387355],[125,-62,78,0.44744885037967186],[125,-62,79,0.45480496677699195],[125,-61,64,0.35395012898902084],[125,-61,65,0.36030754082600236],[125,-61,66,0.366774718489597],[125,-61,67,0.3733383982554394],[125,-61,68,0.37999506930715127],[125,-61,69,0.3867513390241322],[125,-61,70,0.39361217904629137],[125,-61,71,0.4005797841970122],[125,-61,72,0.40765283170732125],[125,-61,73,0.414825877902528],[125,-61,74,0.4220888960225844],[125,-61,75,0.42942695870803094],[125,-61,76,0.436820068522959],[125,-61,77,0.4442431397068919],[125,-61,78,0.4516661341504923],[125,-61,79,0.45905435437856695],[125,-60,64,0.3573921988697672],[125,-60,65,0.3638182637446818],[125,-60,66,0.37035418278166693],[125,-60,67,0.3769876281913144],[125,-60,68,0.3837141687088305],[125,-60,69,0.39053834295670725],[125,-60,70,0.39746339905767053],[125,-60,71,0.40449016976035995],[125,-60,72,0.41161631379265123],[125,-60,73,0.4188356937163849],[125,-60,74,0.42613789388296225],[125,-60,75,0.43350788195226514],[125,-60,76,0.44092581727959806],[125,-60,77,0.44836700929872225],[125,-60,78,0.4558020288352547],[125,-60,79,0.4631969750766715],[125,-59,64,0.36096765876255077],[125,-59,65,0.36745456622072403],[125,-59,66,0.3740498974537662],[125,-59,67,0.3807424870748944],[125,-59,68,0.3875269769867296],[125,-59,69,0.39440566403374355],[125,-59,70,0.40137997351893945],[125,-59,71,0.40844934912516834],[125,-59,72,0.4156104692670721],[125,-59,73,0.4228565989130212],[125,-59,74,0.4301770804098779],[125,-59,75,0.4375569667094118],[125,-59,76,0.4449768002406348],[125,-59,77,0.4524125404990981],[125,-59,78,0.45983564323400505],[125,-59,79,0.4672132939097183],[125,-58,64,0.36464946880889565],[125,-58,65,0.37118909963615937],[125,-58,66,0.3778343259019341],[125,-58,67,0.38457528880449676],[125,-58,68,0.391405693757302],[125,-58,69,0.39832547705152044],[125,-58,70,0.40533418621553285],[125,-58,71,0.4124298824865246],[125,-58,72,0.41960832575370316],[125,-58,73,0.42686229388515606],[125,-58,74,0.43418103990952783],[125,-58,75,0.4415498903931473],[125,-58,76,0.44894998820229404],[125,-58,77,0.4563581826708524],[125,-58,78,0.4637470700072981],[125,-58,79,0.4710851865747222],[125,-57,64,0.36840865110784016],[125,-57,65,0.37499260542607243],[125,-57,66,0.3816781129665659],[125,-57,67,0.38845666243893856],[125,-57,68,0.3953210002634728],[125,-57,69,0.4022686382377117],[125,-57,70,0.40929723498083553],[125,-57,71,0.4164035077667217],[125,-57,72,0.4235823805383056],[125,-57,73,0.4308262651781839],[125,-57,74,0.4381244794495644],[125,-57,75,0.44546280489492024],[125,-57,76,0.45282318783266184],[125,-57,77,0.4601835864267071],[125,-57,78,0.4675179666216303],[125,-57,79,0.47479644953997163],[125,-56,64,0.37221238968326154],[125,-56,65,0.378832012106227],[125,-56,66,0.3855481642811065],[125,-56,67,0.39235360877267333],[125,-56,68,0.39924009326211024],[125,-56,69,0.40620269710964074],[125,-56,70,0.4132372223497789],[125,-56,71,0.42033911080755065],[125,-56,72,0.42750255076937094],[125,-56,73,0.43471971575022095],[125,-56,74,0.4419801387180604],[125,-56,75,0.44927022501362707],[125,-56,76,0.45657290706080034],[125,-56,77,0.46386744380138095],[125,-56,78,0.47112936761011925],[125,-56,79,0.47833058125391487],[125,-55,64,0.37600830418413683],[125,-55,65,0.3826546998869549],[125,-55,66,0.3893917849270954],[125,-55,67,0.39621347418197334],[125,-55,68,0.40311050385612396],[125,-55,69,0.4100755857705712],[125,-55,70,0.41710275170360656],[125,-55,71,0.42418627200033016],[125,-55,72,0.4313197182299897],[125,-55,73,0.4384951567361943],[125,-55,74,0.44570247639005095],[125,-55,75,0.4529288537374749],[125,-55,76,0.46015835859300364],[125,-55,77,0.4673717029752442],[125,-55,78,0.47454613610518154],[125,-55,79,0.48165548800082414],[125,-54,64,0.3797416224450898],[125,-54,65,0.38640574122863025],[125,-54,66,0.39315403356349826],[125,-54,67,0.39998143214160203],[125,-54,68,0.40687769404365526],[125,-54,69,0.413833303126925],[125,-54,70,0.4208406613098375],[125,-54,71,0.42789300568227856],[125,-54,72,0.4349834263866193],[125,-54,73,0.442104014131801],[125,-54,74,0.4492451406001544],[125,-54,75,0.4563948748916869],[125,-54,76,0.4635385390155767],[125,-54,77,0.470658405285373],[125,-54,78,0.47773353830452475],[125,-54,79,0.48473978404509055],[125,-53,64,0.3833660716441824],[125,-53,65,0.3900388163298687],[125,-53,66,0.3967887100610783],[125,-53,67,0.40361155740424043],[125,-53,68,0.41049620808330595],[125,-53,69,0.4174311232643996],[125,-53,70,0.4244072618882487],[125,-53,71,0.4314169940431511],[125,-53,72,0.43845307507950243],[125,-53,73,0.4455077480354139],[125,-53,74,0.45257197758178097],[125,-53,75,0.45963481858378247],[125,-53,76,0.4666829222444578],[125,-53,77,0.47370018264649166],[125,-53,78,0.4806675263422468],[125,-53,79,0.4875628474620919],[125,-52,64,0.3868441046636343],[125,-52,65,0.39351643589098295],[125,-52,66,0.4002585710037589],[125,-52,67,0.4070670315660331],[125,-52,68,0.4139298655445071],[125,-52,69,0.42083377278952566],[125,-52,70,0.4277684945648466],[125,-52,71,0.4347257216726557],[125,-52,72,0.44169802744467124],[125,-52,73,0.44867792766061304],[125,-52,74,0.45565707054889903],[125,-52,75,0.4626255599162031],[125,-52,76,0.4695714143244588],[125,-52,77,0.47648016508776],[125,-52,78,0.4833345956989827],[125,-52,79,0.4901146251194776],[125,-51,64,0.3894738455434846],[125,-51,65,0.3968102234648309],[125,-51,66,0.40353560331335514],[125,-51,67,0.4103204048624325],[125,-51,68,0.41715200837465616],[125,-51,69,0.42401565984136125],[125,-51,70,0.43090013818159195],[125,-51,71,0.43779665732344797],[125,-51,72,0.44469776220494384],[125,-51,73,0.4515963502622981],[125,-51,74,0.45848482150379904],[125,-51,75,0.46535436016180254],[125,-51,76,0.47219435079017463],[125,-51,77,0.47899193153131686],[125,-51,78,0.4857316871173719],[125,-51,79,0.49239548399690064],[125,-50,64,0.39076804018075595],[125,-50,65,0.39880708940508275],[125,-50,66,0.4066014058023535],[125,-50,67,0.41335396440423283],[125,-50,68,0.42014585256361137],[125,-50,69,0.42696120563928536],[125,-50,70,0.4337881169916688],[125,-50,71,0.4406175339374584],[125,-50,72,0.4474421222359932],[125,-50,73,0.4542552545766773],[125,-50,74,0.4610501261048104],[125,-50,75,0.4678189999196167],[125,-50,76,0.4745525853552687],[125,-50,77,0.481239551714994],[125,-50,78,0.487866179971455],[125,-50,79,0.4944161547760805],[125,-49,64,0.39214240147744767],[125,-49,65,0.40017460366468693],[125,-49,66,0.4081981420948173],[125,-49,67,0.4161559807482263],[125,-49,68,0.42290132681632236],[125,-49,69,0.4296622894929762],[125,-49,70,0.4364265542128867],[125,-49,71,0.4431850000214353],[125,-49,72,0.4499305399144829],[125,-49,73,0.45665708358406637],[125,-49,74,0.46335862553992446],[125,-49,75,0.47002846147464966],[125,-49,76,0.47665853561899324],[125,-49,77,0.4832389216951435],[125,-49,78,0.4897574399211734],[125,-49,79,0.49619941235181403],[125,-48,64,0.39361208298724326],[125,-48,65,0.40162840425567276],[125,-48,66,0.4096454399460529],[125,-48,67,0.41764691251699904],[125,-48,68,0.42540363890557137],[125,-48,69,0.43210833495491974],[125,-48,70,0.43880936963172545],[125,-48,71,0.4454976873897262],[125,-48,72,0.4521665006064062],[125,-48,73,0.45881023772224994],[125,-48,74,0.4654236146319892],[125,-48,75,0.4720008321140917],[125,-48,76,0.4785349019650176],[125,-48,77,0.48501710436801065],[125,-48,78,0.49143657887390535],[125,-48,79,0.49778005120605423],[125,-47,64,0.395187969134928],[125,-47,65,0.403176734209226],[125,-47,66,0.4111744984086994],[125,-47,67,0.41916536082093064],[125,-47,68,0.4271430441580021],[125,-47,69,0.4342927871518584],[125,-47,70,0.4409342070577307],[125,-47,71,0.44755758025894826],[125,-47,72,0.45415639609075753],[125,-47,73,0.46072550613601365],[125,-47,74,0.4672601927246862],[125,-47,75,0.47375536043257044],[125,-47,76,0.4802048531431471],[125,-47,77,0.48660089910211785],[125,-47,78,0.4929336862447694],[125,-47,79,0.49919106991432055],[125,-46,64,0.39687171886093203],[125,-46,65,0.4048191879693188],[125,-46,66,0.41278257824652725],[125,-46,67,0.42074657189432585],[125,-46,68,0.42870513023637524],[125,-46,69,0.4362151012581967],[125,-46,70,0.44280375866212424],[125,-46,71,0.44937068235279987],[125,-46,72,0.4559095551365847],[125,-46,73,0.462415494856979],[125,-46,74,0.46888413608013013],[125,-46,75,0.47531083062878365],[125,-46,76,0.4816899693992648],[125,-46,77,0.4880144277648503],[125,-46,78,0.49427513672340884],[125,-46,79,0.5004607817897486],[125,-45,64,0.3986567948641249],[125,-45,65,0.4065476982856487],[125,-45,66,0.4144598943357583],[125,-45,67,0.4223788565999462],[125,-45,68,0.43029874156847364],[125,-45,69,0.4378800238104452],[125,-45,70,0.44442512075505336],[125,-45,71,0.45094645193543326],[125,-45,72,0.4574377613439998],[125,-45,73,0.46389422959269183],[125,-45,74,0.47031158624712405],[125,-45,75,0.4766853355418506],[125,-45,76,0.4830100977533814],[125,-45,77,0.4892790683807018],[125,-45,78,0.4954835971428582],[125,-45,79,0.5016128886518167],[125,-44,64,0.40052946902788],[125,-44,65,0.4083475005831423],[125,-44,66,0.4161905327365471],[125,-44,67,0.4240450351558207],[125,-44,68,0.4319053433856526],[125,-44,69,0.4392968898151186],[125,-44,70,0.4458091640406061],[125,-44,71,0.45229725030174667],[125,-44,72,0.45875478381366513],[125,-44,73,0.4651767711866893],[125,-44,74,0.4715587514733336],[125,-44,75,0.4778960636755808],[125,-44,76,0.4841832228026579],[125,-44,77,0.49041340644846765],[125,-44,78,0.49657805372460123],[125,-44,79,0.5026665782414447],[125,-43,64,0.4024698070484566],[125,-43,65,0.4101980776830194],[125,-43,66,0.41795334923613936],[125,-43,67,0.42572328314884483],[125,-43,68,0.43350240406442275],[125,-43,69,0.4404789334883387],[125,-43,70,0.44696991639364725],[125,-43,71,0.4534378019784337],[125,-43,72,0.4598759191075024],[125,-43,73,0.4662788424151724],[125,-43,74,0.4726416200187705],[125,-43,75,0.47895909924381286],[125,-43,76,0.4852253522379165],[125,-43,77,0.491433203237042],[125,-43,78,0.49757385912331975],[125,-43,79,0.5036366447802941],[125,-42,64,0.40445263528535913],[125,-42,65,0.4120740877531883],[125,-42,66,0.4197228520845758],[125,-42,67,0.4273879628094438],[125,-42,68,0.434949663865627],[125,-42,69,0.4414426104642305],[125,-42,70,0.4479239562055505],[125,-42,71,0.45438466489917817],[125,-42,72,0.4608175429820026],[125,-42,73,0.4672164648163366],[125,-42,74,0.47357568427285035],[125,-42,75,0.47988923433188924],[125,-42,76,0.48615041634346023],[125,-42,77,0.4923513804822828],[125,-42,78,0.49848279882092483],[125,-42,79,0.5045336323228438],[125,-41,64,0.4064484928445614],[125,-41,65,0.4139462783595616],[125,-41,66,0.42147007163895245],[125,-41,67,0.4290104420920936],[125,-41,68,0.4357165073476382],[125,-41,69,0.4422069293155463],[125,-41,70,0.44868981435575134],[125,-41,71,0.45515570883304135],[125,-41,72,0.4615966703995343],[125,-41,73,0.4680056042834215],[125,-41,74,0.47437567462597585],[125,-41,75,0.4806997923342553],[125,-41,76,0.48697018083360255],[125,-41,77,0.49317802101179375],[125,-41,78,0.4993131765464912],[125,-41,79,0.5053640007009604],[125,-40,64,0.40842457188657044],[125,-40,65,0.4157823894739082],[125,-40,66,0.42316341961803877],[125,-40,67,0.429808423936525],[125,-40,68,0.43629587572709067],[125,-40,69,0.44279279024300294],[125,-40,70,0.4492873828818584],[125,-40,71,0.4557696003658816],[125,-40,72,0.4622305223513038],[125,-40,73,0.4686618241908975],[125,-40,74,0.4750553020976874],[125,-40,75,0.48140246189459496],[125,-40,76,0.48769417246347857],[125,-40,77,0.4939203849285866],[125,-40,78,0.5000699185246593],[125,-40,79,0.5061303140100258],[125,-39,64,0.41034564912255556],[125,-39,65,0.4173270008013532],[125,-39,66,0.4237498662389742],[125,-39,67,0.4302157728841607],[125,-39,68,0.43671113943027773],[125,-39,69,0.4432223288107137],[125,-39,70,0.44973732844399317],[125,-39,71,0.45624529276178527],[125,-39,72,0.4627360980593759],[125,-39,73,0.4691999448661389],[125,-39,74,0.47562700877815606],[125,-39,75,0.48200714064400607],[125,-39,76,0.4883296169376046],[125,-39,77,0.4945829410895129],[125,-39,78,0.5007546964809891],[125,-39,79,0.5068314517341845],[125,-38,64,0.41122269261707023],[125,-38,65,0.41758343724522284],[125,-38,66,0.42400564914364064],[125,-38,67,0.4304779808933517],[125,-38,68,0.4369866167858347],[125,-38,69,0.443518262633458],[125,-38,70,0.45006050870862824],[125,-38,71,0.45660151906439245],[125,-38,72,0.4631297511637244],[125,-38,73,0.46963370826566114],[125,-38,74,0.47610172519726585],[125,-38,75,0.4825217881034922],[125,-38,76,0.48888138872615167],[125,-38,77,0.4951674137188267],[125,-38,78,0.5013660694571805],[125,-38,79,0.5074628427543714],[125,-37,64,0.411363124259102],[125,-37,65,0.41771585378115755],[125,-37,66,0.4241395215819803],[125,-37,67,0.4306212465554498],[125,-37,68,0.4371468592762856],[125,-37,69,0.4437032389574198],[125,-37,70,0.4502773898135068],[125,-37,71,0.45685628683670815],[125,-37,72,0.4634267685436369],[125,-37,73,0.4699754467654397],[125,-37,74,0.476488633795567],[125,-37,75,0.4829522871891824],[125,-37,76,0.48935197248557744],[125,-37,77,0.49567284410072093],[125,-37,78,0.492100220169599],[125,-37,79,0.4753404706711559],[125,-36,64,0.3928850587405852],[125,-36,65,0.39498238978481987],[125,-36,66,0.40330382379896396],[125,-36,67,0.4106026648785455],[125,-36,68,0.41278691940255013],[125,-36,69,0.4207178855090671],[125,-36,70,0.43415510977597926],[125,-36,71,0.4472949697149274],[125,-36,72,0.45699713390639396],[125,-36,73,0.4702357550296583],[125,-36,74,0.476794937734625],[125,-36,75,0.47421720201401085],[125,-36,76,0.4714570559090425],[125,-36,77,0.4618577297707988],[125,-36,78,0.4527615447799918],[125,-36,79,0.43746154059304143],[125,-35,64,0.3773234773583276],[125,-35,65,0.3735707866199471],[125,-35,66,0.37783735197815493],[125,-35,67,0.3828088990893644],[125,-35,68,0.388745010510901],[125,-35,69,0.40355671761665707],[125,-35,70,0.4136306534093793],[125,-35,71,0.4276576036824071],[125,-35,72,0.43911493862368933],[125,-35,73,0.4454351422733851],[125,-35,74,0.45600087984367904],[125,-35,75,0.4545644634514194],[125,-35,76,0.4482953472126906],[125,-35,77,0.43393704996843163],[125,-35,78,0.4230754302914936],[125,-35,79,0.40916982704244165],[125,-34,64,0.3662666711263773],[125,-34,65,0.3618975730650442],[125,-34,66,0.36317274090951196],[125,-34,67,0.372911128936674],[125,-34,68,0.3824718628778807],[125,-34,69,0.3944556644373902],[125,-34,70,0.3989512492261415],[125,-34,71,0.41540083820275375],[125,-34,72,0.42897326790629664],[125,-34,73,0.42566658633800825],[125,-34,74,0.43936633137431],[125,-34,75,0.4430417052371351],[125,-34,76,0.4322103015596753],[125,-34,77,0.41765652921473134],[125,-34,78,0.409211010604753],[125,-34,79,0.3984295070364963],[125,-33,64,0.3630987414776723],[125,-33,65,0.36638467636830846],[125,-33,66,0.3683463567554696],[125,-33,67,0.3790885055532142],[125,-33,68,0.3873119618263546],[125,-33,69,0.39033195261731357],[125,-33,70,0.39221101407350245],[125,-33,71,0.4074315524522421],[125,-33,72,0.42200407403383416],[125,-33,73,0.42611623705325197],[125,-33,74,0.43990285940441015],[125,-33,75,0.44087669202151414],[125,-33,76,0.4270640337207242],[125,-33,77,0.41091027662797314],[125,-33,78,0.4046909437006167],[125,-33,79,0.39615815110418434],[125,-32,64,0.37101908864007077],[125,-32,65,0.3768990912087155],[125,-32,66,0.3802266185265448],[125,-32,67,0.39032562520115016],[125,-32,68,0.39350617765077983],[125,-32,69,0.3988731778116647],[125,-32,70,0.40045895861699754],[125,-32,71,0.4088355325182641],[125,-32,72,0.4243044561386945],[125,-32,73,0.43647992636690514],[125,-32,74,0.4418770446927548],[125,-32,75,0.4395135615185903],[125,-32,76,0.4279378358963856],[125,-32,77,0.4152664797843631],[125,-32,78,0.4060121388768569],[125,-32,79,0.39517588757834526],[125,-31,64,0.38676162030941397],[125,-31,65,0.38617164882831395],[125,-31,66,0.3902660085972318],[125,-31,67,0.4006766064600099],[125,-31,68,0.4000988400831262],[125,-31,69,0.41296385805990604],[125,-31,70,0.416820055805156],[125,-31,71,0.4245217732752215],[125,-31,72,0.43992099130806533],[125,-31,73,0.44608158872651504],[125,-31,74,0.4427199442672452],[125,-31,75,0.44258008400330306],[125,-31,76,0.4330884861675235],[125,-31,77,0.4212294199299322],[125,-31,78,0.4076869346253065],[125,-31,79,0.3917900175006842],[125,-30,64,0.40102734898685294],[125,-30,65,0.4004677657921599],[125,-30,66,0.4057293886343251],[125,-30,67,0.4157263989317334],[125,-30,68,0.4141699278360982],[125,-30,69,0.42435115702242676],[125,-30,70,0.42865651129068005],[125,-30,71,0.44171701167432514],[125,-30,72,0.45645996211592954],[125,-30,73,0.458066145004434],[125,-30,74,0.4550970589874856],[125,-30,75,0.454894465659193],[125,-30,76,0.44227431533697714],[125,-30,77,0.42785123943522907],[125,-30,78,0.41410780818736126],[125,-30,79,0.39705646739393513],[125,-29,64,0.41124135399991807],[125,-29,65,0.4174164265647842],[125,-29,66,0.4237379219549908],[125,-29,67,0.4279903365554459],[125,-29,68,0.42725201685520137],[125,-29,69,0.4400017018457425],[125,-29,70,0.4445880556076681],[125,-29,71,0.4542503603009496],[125,-29,72,0.45926442129248957],[125,-29,73,0.46429570589262237],[125,-29,74,0.4693519011817228],[125,-29,75,0.47222522451380333],[125,-29,76,0.45647999816874124],[125,-29,77,0.4411259403331023],[125,-29,78,0.42800185608180996],[125,-29,79,0.4107890684984439],[125,-28,64,0.4113470762668555],[125,-28,65,0.4174648665598949],[125,-28,66,0.42373469062669095],[125,-28,67,0.430133881116501],[125,-28,68,0.43663910244018],[125,-28,69,0.4423635359316136],[125,-28,70,0.44715695209141937],[125,-28,71,0.4519572648099506],[125,-28,72,0.45677634369181336],[125,-28,73,0.46162534685573253],[125,-28,74,0.4665138501849149],[125,-28,75,0.4714491062414594],[125,-28,76,0.4716629353913433],[125,-28,77,0.45926156908671084],[125,-28,78,0.4453309718136186],[125,-28,79,0.42880140926303906],[125,-27,64,0.4114910018712547],[125,-27,65,0.4175396103061773],[125,-27,66,0.4237444101020997],[125,-27,67,0.4300824394732435],[125,-27,68,0.4356130656708974],[125,-27,69,0.4402028011083615],[125,-27,70,0.44479483340199855],[125,-27,71,0.4494032210886268],[125,-27,72,0.4540420888376065],[125,-27,73,0.4587245608382866],[125,-27,74,0.463461835027817],[125,-27,75,0.4682623996939741],[125,-27,76,0.4731313937701955],[125,-27,77,0.47148420021474696],[125,-27,78,0.4574043323472408],[125,-27,79,0.4416714698541747],[125,-26,64,0.4116549492775392],[125,-26,65,0.41762165266046736],[125,-26,66,0.4237472014139098],[125,-26,67,0.42899026115491534],[125,-26,68,0.43338875073442745],[125,-26,69,0.437782501564591],[125,-26,70,0.44218684780233025],[125,-26,71,0.44661817077356486],[125,-26,72,0.45109263213720535],[125,-26,73,0.4556250573542162],[125,-26,74,0.4602279712325295],[125,-26,75,0.4649107870892105],[125,-26,76,0.46967915083214573],[125,-26,77,0.4745344410170774],[125,-26,78,0.46598178693159775],[125,-26,79,0.450435062007199],[125,-25,64,0.41181048790752195],[125,-25,65,0.41768199029673614],[125,-25,66,0.42249649628409475],[125,-25,67,0.42671884291072915],[125,-25,68,0.43092787729429494],[125,-25,69,0.43513917502384886],[125,-25,70,0.43937044831163596],[125,-25,71,0.44364016987065685],[125,-25,72,0.4479662629150866],[125,-25,73,0.45236495119651676],[125,-25,74,0.4568497708439343],[125,-25,75,0.4614307455259035],[125,-25,76,0.4661137261945391],[125,-25,77,0.47089989640512303],[125,-25,78,0.4753157666556127],[125,-25,79,0.4562730312998231],[125,-24,64,0.41192353573346957],[125,-24,65,0.4161322534533212],[125,-24,66,0.42019707901310427],[125,-24,67,0.42423705754243],[125,-24,68,0.4282694417856824],[125,-24,69,0.4323122242548828],[125,-24,70,0.43638525872549794],[125,-24,71,0.44050882897776095],[125,-24,72,0.44470231195834686],[125,-24,73,0.44898300924120993],[125,-24,74,0.45336514852500914],[125,-24,75,0.4578590566369356],[125,-24,76,0.46247050523617483],[125,-24,77,0.46720023012743794],[125,-24,78,0.47204362480919426],[125,-24,79,0.46447761326353576],[125,-23,64,0.4098985500360763],[125,-23,65,0.4138204656363923],[125,-23,66,0.4177087062029087],[125,-23,67,0.42157748783895516],[125,-23,68,0.42544567803172617],[125,-23,69,0.4293335031277857],[125,-23,70,0.43326272129487664],[125,-23,71,0.437255152163357],[125,-23,72,0.44133132812121306],[125,-23,73,0.44550932079909156],[125,-23,74,0.4498037444281572],[125,-23,75,0.4542249374696876],[125,-23,76,0.45877832362306786],[125,-23,77,0.4634639530211441],[125,-23,78,0.4682762241221119],[125,-23,79,0.47320378650790484],[125,-22,64,0.4075927733983787],[125,-22,65,0.41134091035174397],[125,-22,66,0.4150616289487176],[125,-22,67,0.4187696247681615],[125,-22,68,0.42248524777421104],[125,-22,69,0.42623077664027503],[125,-22,70,0.4300296465624583],[125,-22,71,0.4339049538365333],[125,-22,72,0.43787810850913184],[125,-22,73,0.4419676678763982],[125,-22,74,0.44618835243790816],[125,-22,75,0.45055024561525236],[125,-22,76,0.4550581782386888],[125,-22,77,0.45971129849467235],[125,-22,78,0.4645028277154229],[125,-22,79,0.46942000208170037],[125,-21,64,0.4051423854760679],[125,-21,65,0.4087234084860172],[125,-21,66,0.4122845619311722],[125,-21,67,0.4158409603400475],[125,-21,68,0.41941429606106906],[125,-21,69,0.42302872541767306],[125,-21,70,0.42670915049742997],[125,-21,71,0.43047971015234565],[125,-21,72,0.4343624449453805],[125,-21,73,0.43837614755725346],[125,-21,74,0.44253540016999326],[125,-21,75,0.4468498000324153],[125,-21,76,0.4513233740946389],[125,-21,77,0.45595418327705645],[125,-21,78,0.46073411661749186],[125,-21,79,0.46564887522141163],[125,-20,64,0.40257831016813816],[125,-20,65,0.4059974763281936],[125,-20,66,0.4094054474948697],[125,-20,67,0.4128176813987896],[125,-20,68,0.41625707002880374],[125,-20,69,0.41974948659699535],[125,-20,70,0.42332111655332805],[125,-20,71,0.4269969433114446],[125,-20,72,0.4307994335341954],[125,-20,73,0.43474741169558695],[125,-20,74,0.43885512533238613],[125,-20,75,0.4431315020757209],[125,-20,76,0.4475795992242558],[125,-20,77,0.4521962462891182],[125,-20,78,0.4569718806105062],[125,-20,79,0.46189057581963816],[125,-19,64,0.3999324455605518],[125,-19,65,0.4031931433778348],[125,-19,66,0.4064522069513418],[125,-19,67,0.4097253481973267],[125,-19,68,0.41303651985264],[125,-19,69,0.41641317402965244],[125,-19,70,0.419882633921176],[125,-19,71,0.42347057863625964],[125,-19,72,0.4271997532810223],[125,-19,73,0.4310888716521791],[125,-19,74,0.4351517128461543],[125,-19,75,0.4393964127530017],[125,-19,76,0.44382495106576164],[125,-19,77,0.44843283409567875],[125,-19,78,0.4532089733458168],[125,-19,79,0.45813575946289115],[125,-18,64,0.3972350275131782],[125,-18,65,0.40033809729932773],[125,-18,66,0.40344965793725374],[125,-18,67,0.4065855758147832],[125,-18,68,0.40977073719008555],[125,-18,69,0.41303406851138935],[125,-18,70,0.41640393629182504],[125,-18,71,0.4199066306915433],[125,-18,72,0.4235651004863884],[125,-18,73,0.4273978839013387],[125,-18,74,0.43141823649929945],[125,-18,75,0.4356334569715653],[125,-18,76,0.4400444113280689],[125,-18,77,0.44464525563672963],[125,-18,78,0.4494233571159319],[125,-18,79,0.4543594130452145],[125,-17,64,0.3944992074002169],[125,-17,65,0.3974430885436741],[125,-17,66,0.4004059211857636],[125,-17,67,0.4034036210969284],[125,-17,68,0.4064618910236389],[125,-17,69,0.4096110522561644],[125,-17,70,0.41288045802922957],[125,-17,71,0.4162969719737423],[125,-17,72,0.4198837248293586],[125,-17,73,0.42365907049608664],[125,-17,74,0.42763574250469255],[125,-17,75,0.43182021163049134],[125,-17,76,0.4362122450169415],[125,-17,77,0.4408046668177493],[125,-17,78,0.4455833200131422],[125,-17,79,0.45052722871049994],[125,-16,64,0.39169577113993864],[125,-16,65,0.3944802239943377],[125,-16,66,0.3972948044411867],[125,-16,67,0.4001553744460632],[125,-16,68,0.4030883108591405],[125,-16,69,0.4061252042635608],[125,-16,70,0.40929627769588794],[125,-16,71,0.41262886014170486],[125,-16,72,0.4161461655380499],[125,-16,73,0.4198662744886627],[125,-16,74,0.4238013196587395],[125,-16,75,0.4279568754500262],[125,-16,76,0.4323315521891714],[125,-16,77,0.43691679469589806],[125,-16,78,0.4416968847369966],[125,-16,79,0.4466491465204201],[125,-15,64,0.38879496347751286],[125,-15,65,0.3914216460964474],[125,-15,66,0.3940907229957224],[125,-15,67,0.396817894527364],[125,-15,68,0.3996300357042],[125,-15,69,0.4025598244232369],[125,-15,70,0.40563816494589444],[125,-15,71,0.4088926615185847],[125,-15,72,0.4123464246356882],[125,-15,73,0.4160170828577323],[125,-15,74,0.4199160010322585],[125,-15,75,0.4240477053892872],[125,-15,76,0.42840951560669377],[125,-15,77,0.43299138356682293],[125,-15,78,0.43777593815870774],[125,-15,79,0.442738735123333],[125,-14,64,0.37570743836412623],[125,-14,65,0.38824930102069816],[125,-14,66,0.39077726150069153],[125,-14,67,0.3933765934288286],[125,-14,68,0.3960744635916904],[125,-14,69,0.3989044093235424],[125,-14,70,0.4018977726579064],[125,-14,71,0.4050821828343936],[125,-14,72,0.4084803980470799],[125,-14,73,0.4121093546963647],[125,-14,74,0.41597942486424827],[125,-14,75,0.420093882349393],[125,-14,76,0.42444857721477874],[125,-14,77,0.4290318184209288],[125,-14,78,0.4338244637460763],[125,-14,79,0.4388002158342953],[125,-13,64,0.21220181249062897],[125,-13,65,0.2541063845266166],[125,-13,66,0.30028214455997787],[125,-13,67,0.3506756635723576],[125,-13,68,0.39241470481359575],[125,-13,69,0.39515317369237896],[125,-13,70,0.3980703563046507],[125,-13,71,0.40119361627859346],[125,-13,72,0.4045450712739466],[125,-13,73,0.408140688926108],[125,-13,74,0.41198959163507065],[125,-13,75,0.41609357039327527],[125,-13,76,0.42044680745830104],[125,-13,77,0.42503580729299356],[125,-13,78,0.4298395348217376],[125,-13,79,0.4348297596901523],[125,-12,64,0.1046314780315218],[125,-12,65,0.13087239170915566],[125,-12,66,0.16071787160457277],[125,-12,67,0.19418572660240188],[125,-12,68,0.23127433538300668],[125,-12,69,0.27196052967285045],[125,-12,70,0.31619218628742213],[125,-12,71,0.3638898672936103],[125,-12,72,0.40053781150856765],[125,-12,73,0.40410796961721684],[125,-12,74,0.4079426781432216],[125,-12,75,0.41204201087059067],[125,-12,76,0.41639828622481867],[125,-12,77,0.4209960511292358],[125,-12,78,0.4258122707704399],[125,-12,79,0.4308167228118816],[125,-11,64,0.04124625048460913],[125,-11,65,0.055384814387688934],[125,-11,66,0.07238129594240139],[125,-11,67,0.09232456548461457],[125,-11,68,0.11528223946703414],[125,-11,69,0.14129859907392336],[125,-11,70,0.17038609655532133],[125,-11,71,0.20252690706986773],[125,-11,72,0.2376749087156189],[125,-11,73,0.27575784824916644],[125,-11,74,0.3166796781243356],[125,-11,75,0.3603230509658918],[125,-11,76,0.4065519581824625],[125,-11,77,0.41690090294949794],[125,-11,78,0.4217287582617357],[125,-11,79,0.4267448224404365],[125,-10,64,0.010298514003577777],[125,-10,65,0.01589626818825337],[125,-10,66,0.02352502341570855],[125,-10,67,0.03334451782200594],[125,-10,68,0.045491426756208916],[125,-10,69,0.06007737188917174],[125,-10,70,0.07717936505108675],[125,-10,71,0.09684128822608729],[125,-10,72,0.11907582962382599],[125,-10,73,0.1438666082074211],[125,-10,74,0.17117047231738416],[125,-10,75,0.2009199584765735],[125,-10,76,0.23302589701159393],[125,-10,77,0.26738015177581553],[125,-10,78,0.3038584820268035],[125,-10,79,0.3423235153812901],[125,-9,64,4.190206733403149E-5],[125,-9,65,6.603796031922635E-4],[125,-9,66,0.0024023753049288252],[125,-9,67,0.005498287254935907],[125,-9,68,0.010153670975628491],[125,-9,69,0.016547385809468563],[125,-9,70,0.024821000578326827],[125,-9,71,0.03508021769106551],[125,-9,72,0.047396779456044036],[125,-9,73,0.061810563887892585],[125,-9,74,0.07833185565344608],[125,-9,75,0.09694377821290524],[125,-9,76,0.1176048737279451],[125,-9,77,0.14025181792386351],[125,-9,78,0.16480225781877902],[125,-9,79,0.19115776106033905],[125,-8,64,-0.0012698452955315445],[125,-8,65,-0.0020693178532361117],[125,-8,66,-0.0012224287697937008],[125,-8,67,8.681010717627087E-4],[125,-8,68,0.0029879291613044284],[125,-8,69,0.005172074430225866],[125,-8,70,0.007451460955463459],[125,-8,71,0.009851670587643368],[125,-8,72,0.012392187652232963],[125,-8,73,0.017830168183476137],[125,-8,74,0.02640158626440858],[125,-8,75,0.03662947243278951],[125,-8,76,0.048521002283418734],[125,-8,77,0.0620587609547107],[125,-8,78,0.077203559531394],[125,-8,79,0.09389736191293135],[125,-7,64,-0.005383844995881412],[125,-7,65,-0.0040403109825527545],[125,-7,66,-0.003631288476211822],[125,-7,67,-0.002418691102617307],[125,-7,68,-2.527860880391147E-4],[125,-7,69,0.0019936139549592436],[125,-7,70,0.004349679536273889],[125,-7,71,0.006838858400118162],[125,-7,72,0.00947823422622759],[125,-7,73,0.012278065351020603],[125,-7,74,0.015241503160440529],[125,-7,75,0.01836448945275771],[125,-7,76,0.02163583172347021],[125,-7,77,0.025037454990267674],[125,-7,78,0.029286436997076847],[125,-7,79,0.038763812939334646],[125,-6,64,-0.011982296516620758],[125,-6,65,-0.009910544145210977],[125,-6,66,-0.007803783725156375],[125,-6,67,-0.0056550644788290055],[125,-6,68,-0.0034430147586026107],[125,-6,69,-0.0011353896475644045],[125,-6,70,0.0012950241758319042],[125,-6,71,0.0038693665913520072],[125,-6,72,0.006602184129950344],[125,-6,73,0.00950107932003913],[125,-6,74,0.012566528788010066],[125,-6,75,0.01579186927964019],[125,-6,76,0.019163450442751532],[125,-6,77,0.02266095289783534],[125,-6,78,0.026257869823551702],[125,-6,79,0.0299221500033842],[125,-5,64,-0.015194488171604922],[125,-5,65,-0.013130674824635657],[125,-5,66,-0.011012272110633336],[125,-5,67,-0.008834447464307456],[125,-5,68,-0.0065779049302061654],[125,-5,69,-0.004212084972297959],[125,-5,70,-0.0017118898360041724],[125,-5,71,9.413892422940264E-4],[125,-5,72,0.003759679038131801],[125,-5,73,0.006747888365341058],[125,-5,74,0.00990382848477402],[125,-5,75,0.0132182889425021],[125,-5,76,0.01667526758160873],[125,-5,77,0.020252353181738042],[125,-5,78,0.023921258904733823],[125,-5,79,0.027648504468108022],[125,-4,64,-0.018343872907903423],[125,-4,65,-0.016287443450212425],[125,-4,66,-0.014157962112109412],[125,-4,67,-0.011952909843648135],[125,-4,68,-0.009655228423100265],[125,-4,69,-0.007236186497967943],[125,-4,70,-0.004672910578128018],[125,-4,71,-0.0019491924743899082],[125,-4,72,9.442481437961789E-4],[125,-4,73,0.004009644698679033],[125,-4,74,0.007242207390336152],[125,-4,75,0.010630288560406187],[125,-4,76,0.01415568839850924],[125,-4,77,0.01779409939304683],[125,-4,78,0.021515687678877016],[125,-4,79,0.025285809204247174],[125,-3,64,-0.021425960362166614],[125,-3,65,-0.01937717312260722],[125,-3,66,-0.017238287220010532],[125,-3,67,-0.015009273947050615],[125,-3,68,-0.01267543563861739],[125,-3,69,-0.010209964376618669],[125,-3,70,-0.007592267043331484],[125,-3,71,-0.004808650083543978],[125,-3,72,-0.0018524501377560703],[125,-3,73,0.0012759642423972681],[125,-3,74,0.004569318906108445],[125,-3,75,0.008013687294982978],[125,-3,76,0.011588869118651372],[125,-3,77,0.015268892884438966],[125,-3,78,0.019022640430797953],[125,-3,79,0.022814591412598208],[125,-2,64,-0.02443900222330404],[125,-2,65,-0.022398953587855014],[125,-2,66,-0.02025342817324329],[125,-2,67,-0.018005040796888826],[125,-2,68,-0.015641534406799773],[125,-2,69,-0.013138069572362656],[125,-2,70,-0.010476335738244854],[125,-2,71,-0.007645112680474471],[125,-2,72,-0.004640269780444944],[125,-2,73,-0.0014646518067482856],[125,-2,74,0.0018721478010888812],[125,-2,75,0.005354124926390239],[125,-2,76,0.0089593126092589],[125,-2,77,0.012660337079868592],[125,-2,78,0.016425080160664254],[125,-2,79,0.020217446035456166],[125,-1,64,-0.027383803849730437],[125,-1,65,-0.025354435688982463],[125,-1,66,-0.02320608219946647],[125,-1,67,-0.020944126982459656],[125,-1,68,-0.018558788830484996],[125,-1,69,-0.016027190623914344],[125,-1,70,-0.013333252942095834],[125,-1,71,-0.01046813386235238],[125,-1,72,-0.007430099456480901],[125,-1,73,-0.004224296792857871],[125,-1,74,-8.624305264354631E-4],[125,-1,75,0.002637655647194183],[125,-1,76,0.006252491213321739],[125,-1,77,0.00995358310387803],[125,-1,78,0.013708110218277544],[125,-1,79,0.01747970626973103],[125,0,64,-0.030263326248641687],[125,0,65,-0.028247419729118154],[125,0,66,-0.026101031414578403],[125,0,67,-0.02383240795350959],[125,0,68,-0.021434234065724006],[125,0,69,-0.01888553826955172],[125,0,70,-0.016172369209788585],[125,0,71,-0.013288117695222647],[125,0,72,-0.01023326295179586],[125,0,73,-0.007015037669560402],[125,0,74,-0.0036470129979500167],[125,0,75,-1.4860480402049264E-4],[125,0,76,0.0034554973411441],[125,0,77,0.007135976844895673],[125,0,78,0.010859610716141197],[125,0,79,0.014590062292000196],[125,1,64,-0.033082075836530604],[125,1,65,-0.031083235814758987],[125,1,66,-0.02894450890555661],[125,1,67,-0.02667706653600302],[125,1,68,-0.024276005941615855],[125,1,69,-0.021722156734631664],[125,1,70,-0.01900354459734286],[125,1,71,-0.016115601643812368],[125,1,72,-0.013060794832534205],[125,1,73,-0.009848189456339194],[125,1,74,-0.006492948920311836],[125,1,75,-0.003015772144346036],[125,1,76,5.577299564795248E-4],[125,1,77,0.004197717356201175],[125,1,78,0.007870861516809113],[125,1,79,0.010865772650790938],[125,2,64,-0.009167885041531824],[125,2,65,-0.014768661537378526],[125,2,66,-0.021923592856803516],[125,2,67,-0.02948574551772141],[125,2,68,-0.027092483660787557],[125,2,69,-0.024546058802513995],[125,2,70,-0.021836280079990136],[125,2,71,-0.01896038975640739],[125,2,72,-0.015922581969035163],[125,2,73,-0.012733472529932361],[125,2,74,-0.009409521030813533],[125,2,75,-0.005972406595269152],[125,2,76,-0.0024483587043993855],[125,2,77,0.0011325554067696444],[125,2,78,0.004737185224142123],[125,2,79,0.006909454105760519],[125,3,64,-0.0016602263979695897],[125,3,65,-0.002961628357641693],[125,3,66,-0.004909231678586735],[125,3,67,-0.007737591545235829],[125,3,68,-0.011625774628952503],[125,3,69,-0.01670179108878544],[125,3,70,-0.023068321082071113],[125,3,71,-0.0218305243769574],[125,3,72,-0.01882637421917771],[125,3,73,-0.015678074157153648],[125,3,74,-0.012403069893054928],[125,3,75,-0.009023711885255144],[125,3,76,-0.005566547836532455],[125,3,77,-0.0020615870218686164],[125,3,78,0.0014584620890855885],[125,3,79,0.003104525637976323],[125,4,64,-8.445407946354303E-4],[125,4,65,-0.001335480952925652],[125,4,66,-0.0014862374983711133],[125,4,67,-0.0016046255188732626],[125,4,68,-0.0019403088389531153],[125,4,69,-0.0026891964316433717],[125,4,70,-0.004019864383625638],[125,4,71,-0.006076041840011459],[125,4,72,-0.008978507599914415],[125,4,73,-0.01282696585829706],[125,4,74,-0.015476045068190222],[125,4,75,-0.012170684438851227],[125,4,76,-0.008796106902771241],[125,4,77,-0.0053819954747715525],[125,4,78,-0.0019603772008697003],[125,4,79,-5.437439439568443E-4],[125,5,64,0.004955405038756171],[125,5,65,0.0017853455122369122],[125,5,66,2.0472168694073796E-5],[125,5,67,-7.202416313921245E-4],[125,5,68,-7.569860631541815E-4],[125,5,69,-3.535348322756708E-4],[125,5,70,2.556143914454025E-4],[125,5,71,8.629432625012804E-4],[125,5,72,0.001286207272985324],[125,5,73,0.0013667310798783374],[125,5,74,9.677169915783389E-4],[125,5,75,-2.7421737897095552E-5],[125,5,76,-0.0017166919383567545],[125,5,77,-0.0041811058645248745],[125,5,78,-0.005508868201738237],[125,5,79,-0.004035575519182022],[125,6,64,0.027420636486440976],[125,6,65,0.018081212328294193],[125,6,66,0.011290838344575373],[125,6,67,0.006595330228817182],[125,6,68,0.0036040386812596936],[125,6,69,0.001985360042848813],[125,6,70,0.001438851655203922],[125,6,71,0.0016931058006732528],[125,6,72,0.0025042182145492823],[125,6,73,0.0036542388299735076],[125,6,74,0.004949616950980065],[125,6,75,0.006219652418243265],[125,6,76,0.007314963621528176],[125,6,77,0.008105982426918032],[125,6,78,0.008481485231155602],[125,6,79,0.006983202411548434],[125,7,64,0.07824157661659237],[125,7,65,0.059242060599614274],[125,7,66,0.04401457192339111],[125,7,67,0.03203184178899823],[125,7,68,0.022832822825576533],[125,7,69,0.016018101589214125],[125,7,70,0.011221253337213149],[125,7,71,0.008106867047820454],[125,7,72,0.006369169857556625],[125,7,73,0.005730616808072094],[125,7,74,0.005940457959099926],[125,7,75,0.006773294354894185],[125,7,76,0.008027633686685454],[125,7,77,0.009524455775584431],[125,7,78,0.011105797214480722],[125,7,79,0.011938955208465473],[125,8,64,0.1691251762045869],[125,8,65,0.13697531104142208],[125,8,66,0.10989965399036979],[125,8,67,0.08729806032555402],[125,8,68,0.06863919789221015],[125,8,69,0.053455843308409884],[125,8,70,0.041315520931326455],[125,8,71,0.031818662759509085],[125,8,72,0.024597372623021165],[125,8,73,0.01931414032943051],[125,8,74,0.015660517691454205],[125,8,75,0.01335576785047034],[125,8,76,0.01214549872764072],[125,8,77,0.011800290781365342],[125,8,78,0.012114328529870948],[125,8,79,0.012904044520045668],[125,9,64,0.28173753420184183],[125,9,65,0.26298860634672194],[125,9,66,0.22065465946625037],[125,9,67,0.18410371000991804],[125,9,68,0.152734311787904],[125,9,69,0.12601140626946988],[125,9,70,0.1034363588116917],[125,9,71,0.08454524175633078],[125,9,72,0.06890772497229843],[125,9,73,0.05612590237765629],[125,9,74,0.04583306624121451],[125,9,75,0.037692440606067926],[125,9,76,0.031395884654419615],[125,9,77,0.026662576242764927],[125,9,78,0.023237685179105648],[125,9,79,0.02089104510309528],[125,10,64,0.2756718012599201],[125,10,65,0.2750554498042729],[125,10,66,0.27470537298792186],[125,10,67,0.27458744717445177],[125,10,68,0.27469169938283633],[125,10,69,0.24539471647706046],[125,10,70,0.20929562743963848],[125,10,71,0.17800052039594833],[125,10,72,0.15101626300433657],[125,10,73,0.1278840622802147],[125,10,74,0.10817832885715414],[125,10,75,0.09150548735005236],[125,10,76,0.07750274362402523],[125,10,77,0.06583681924332037],[125,10,78,0.05620266277670717],[125,10,79,0.04832214698966095],[125,11,64,0.26955644625648034],[125,11,65,0.26877806085734984],[125,11,66,0.26825759945127037],[125,11,67,0.26795975490492846],[125,11,68,0.26787410715469556],[125,11,69,0.26801168206722314],[125,11,70,0.26837606089562005],[125,11,71,0.26896368152583655],[125,11,72,0.269764801046616],[125,11,73,0.24630537451453127],[125,11,74,0.2144148106490442],[125,11,75,0.18651499408669656],[125,11,76,0.16218752424634605],[125,11,77,0.14104557085225902],[125,11,78,0.12273262069529348],[125,11,79,0.1069211984201734],[125,12,64,0.2634167123407664],[125,12,65,0.2624739585207887],[125,12,66,0.2617799250998263],[125,12,67,0.26129872118808883],[125,12,68,0.2610197916088347],[125,12,69,0.2609542582385788],[125,12,70,0.2611059608315754],[125,12,71,0.2614717660500457],[125,12,72,0.2620425343159805],[125,12,73,0.2628040389921745],[125,12,74,0.2637378368126336],[125,12,75,0.2648220886071556],[125,12,76,0.26603232949180067],[125,12,77,0.2640091107729083],[125,12,78,0.2345478833126206],[125,12,79,0.20840822891736724],[125,13,64,0.25728255962636226],[125,13,65,0.25617427698873335],[125,13,66,0.25530470107249503],[125,13,67,0.2546379714344314],[125,13,68,0.25416368430435826],[125,13,69,0.25389304608215296],[125,13,70,0.2538301317731934],[125,13,71,0.2539722086047481],[125,13,72,0.25431070738520123],[125,13,73,0.25483214198354476],[125,13,74,0.2555189758821936],[125,13,75,0.2563504348913147],[125,13,76,0.2573032652496908],[125,13,77,0.25835243647532896],[125,13,78,0.2594717884694427],[125,13,79,0.2606346225176162],[125,14,64,0.25119199067246883],[125,14,65,0.24991824704865975],[125,14,66,0.24887236086834744],[125,14,67,0.2480190916490352],[125,14,68,0.24734842372146956],[125,14,69,0.24687157015154745],[125,14,70,0.24659275281190376],[125,14,71,0.24650955083426818],[125,14,72,0.24661387936402507],[125,14,73,0.24689291196162652],[125,14,74,0.2473299456352589],[125,14,75,0.24790520763552878],[125,14,76,0.24859660329044575],[125,14,77,0.24938040430717967],[125,14,78,0.25023187711678596],[125,14,79,0.25112585098668494],[125,15,64,0.24519256358250402],[125,15,65,0.2437545187334196],[125,15,66,0.2425324646297177],[125,15,67,0.24149231093740195],[125,15,68,0.2406246034460067],[125,15,69,0.23994042306869387],[125,15,70,0.23944399852960793],[125,15,71,0.2391330918212159],[125,15,72,0.2389999886533472],[125,15,73,0.23903242740167677],[125,15,74,0.23921446557201143],[125,15,75,0.23952728295605882],[125,15,76,0.239949920814189],[125,15,77,0.24045995658051852],[125,15,78,0.2410341137461583],[125,15,79,0.24164880673492303],[125,16,64,0.23932405724648095],[125,16,65,0.23772332976913102],[125,16,66,0.23632528266946987],[125,16,67,0.23509744639356725],[125,16,68,0.23403107112239543],[125,16,69,0.2331369651069632],[125,16,70,0.23241924351546378],[125,16,71,0.23187575992447246],[125,16,72,0.2314991098265332],[125,16,73,0.23127756690817963],[125,16,74,0.2311959511513527],[125,16,75,0.23123642798486954],[125,16,76,0.23137923788611037],[125,16,77,0.23160335600579007],[125,16,78,0.23188708156117008],[125,16,79,0.2322085569124505],[125,17,64,0.23360268672442597],[125,17,65,0.2318412295585964],[125,17,66,0.23026738212511544],[125,17,67,0.2288507104296429],[125,17,68,0.22758329298025057],[125,17,69,0.22647554051129654],[125,17,70,0.22553136794322776],[125,17,71,0.22474867710746688],[125,17,72,0.22412037137854285],[125,17,73,0.22363529698250112],[125,17,74,0.22327911007905055],[125,17,75,0.2230350689038064],[125,17,76,0.2228847504449549],[125,17,77,0.22280869131492126],[125,17,78,0.22278695266267354],[125,17,79,0.2227996091530807],[125,18,64,0.2280229040846438],[125,18,65,0.22610302383558104],[125,18,66,0.22435377819737062],[125,18,67,0.2227471271459892],[125,18,68,0.22127608323912806],[125,18,69,0.2199505522376167],[125,18,70,0.21877419139136486],[125,18,71,0.21774494537603062],[125,18,72,0.21685606760015],[125,18,73,0.21609706193295847],[125,18,74,0.21545454400477976],[125,18,75,0.21491302143628202],[125,18,76,0.21445559255553556],[125,18,77,0.21395705270204815],[125,18,78,0.21299178108600703],[125,18,79,0.21209360281354703],[125,19,64,0.2187401271251733],[125,19,65,0.2173732795517847],[125,19,66,0.21599854116068926],[125,19,67,0.21464570811791409],[125,19,68,0.2133235866767019],[125,19,69,0.21202418100091736],[125,19,70,0.21074399958313045],[125,19,71,0.20948354887012727],[125,19,72,0.2082463917373399],[125,19,73,0.20703828988973758],[125,19,74,0.20586643097080484],[125,19,75,0.20473874094314712],[125,19,76,0.20366328208708961],[125,19,77,0.20264773674917824],[125,19,78,0.20169897676383824],[125,19,79,0.2008227182683519],[125,20,64,0.2079188702794647],[125,20,65,0.20640150117572315],[125,20,66,0.20489392602876313],[125,20,67,0.20342316717369258],[125,20,68,0.20199713953354304],[125,20,69,0.20060874561472927],[125,20,70,0.19925506342228497],[125,20,71,0.1979367880356176],[125,20,72,0.1966572947444708],[125,20,73,0.1954217921828817],[125,20,74,0.19423656616643828],[125,20,75,0.19310831470539647],[125,20,76,0.19204357443534842],[125,20,77,0.19104823848007854],[125,20,78,0.1901271655412448],[125,20,79,0.18928387979645567],[125,21,64,0.1967928172114867],[125,21,65,0.19512189442661673],[125,21,66,0.19347988997357998],[125,21,67,0.19189086702914535],[125,21,68,0.1903617927818725],[125,21,69,0.18888651189075656],[125,21,70,0.1874626603525083],[125,21,71,0.18609105968466189],[125,21,72,0.18477479282708925],[125,21,73,0.18351837575200103],[125,21,74,0.18232702540111642],[125,21,75,0.18120602432234567],[125,21,76,0.18016018213487092],[125,21,77,0.17919339371300042],[125,21,78,0.1783082937490132],[125,21,79,0.17750600713337913],[125,22,64,0.1854255770790255],[125,22,65,0.18359769004413962],[125,22,66,0.1818189836554129],[125,22,67,0.18011043954441533],[125,22,68,0.1784780385826337],[125,22,69,0.1769165889870273],[125,22,70,0.17542425606919276],[125,22,71,0.1740019151106282],[125,22,72,0.17265224835239387],[125,22,73,0.17137894290074904],[125,22,74,0.17018599007184324],[125,22,75,0.1690770864400112],[125,22,76,0.16805513659962823],[125,22,77,0.16712185740196903],[125,22,78,0.16627748318967553],[125,22,79,0.16552057132232548],[125,23,64,0.17388658882635033],[125,23,65,0.1718980041361127],[125,23,66,0.1699796387362974],[125,23,67,0.16814933454427353],[125,23,68,0.16641206532164401],[125,23,69,0.1647636011432794],[125,23,70,0.16320259267093085],[125,23,71,0.1617298899112818],[125,23,72,0.1603476684469919],[125,23,73,0.15905866116424489],[125,23,74,0.15786549589706253],[125,23,75,0.15677013913967702],[125,23,76,0.15577344571422633],[125,23,77,0.15487481402427034],[125,23,78,0.15407194627879628],[125,23,79,0.15336071283667885],[125,24,64,0.16224832258707014],[125,24,65,0.1600950510737503],[125,24,66,0.15803341151219866],[125,24,67,0.156078112838103],[125,24,68,0.15423311859758185],[125,24,69,0.15249513561136002],[125,24,70,0.1508632422848769],[125,24,71,0.149338181260882],[125,24,72,0.14792152255320698],[125,24,73,0.1466149360256263],[125,24,74,0.14541957352820153],[125,24,75,0.1443355607260465],[125,24,76,0.14336159838397042],[125,24,77,0.14249467260734114],[125,24,78,0.14172987328859304],[125,24,79,0.14106031977032724],[125,25,64,0.15058358708831257],[125,25,65,0.14826145938411667],[125,25,66,0.14605232544845098],[125,25,67,0.14396783270455094],[125,25,68,0.14201094882165916],[125,25,69,0.14017926900416167],[125,25,70,0.13847222968864772],[125,25,71,0.1368903836691436],[125,25,72,0.1354346070409502],[125,25,73,0.13410541852127625],[125,25,74,0.1329024113484933],[125,25,75,0.13182379767807917],[125,25,76,0.13086606511650178],[125,25,77,0.13002374476691497],[125,25,78,0.1292892899065358],[125,25,79,0.12865306417524625],[125,26,64,0.1389629443533773],[125,26,65,0.13646769178279228],[125,26,66,0.1341063135898363],[125,26,67,0.1318875306183192],[125,26,68,0.1298133459903047],[125,26,69,0.12788217238994679],[125,26,70,0.12609372400737565],[125,26,71,0.12444828304858853],[125,26,72,0.1229459564358815],[125,26,73,0.12158604703605695],[125,26,74,0.1203665395074529],[125,26,75,0.11928370056908498],[125,26,76,0.11833179321528138],[125,26,77,0.11750290412972475],[125,26,78,0.11678688329778862],[125,26,79,0.11617139457585025],[125,27,64,0.1274522331799894],[125,27,65,0.12477957067339504],[125,27,66,0.12226076200213352],[125,27,67,0.11990179718152222],[125,27,68,0.11770376237398571],[125,27,69,0.1156657956347362],[125,27,70,0.11378779973140676],[125,27,71,0.112069709066748],[125,27,72,0.11051080096455423],[125,27,73,0.1091091227119891],[125,27,74,0.1078610343408581],[125,27,75,0.10676086684098476],[125,27,76,0.10580069521816743],[125,27,77,0.10497022553982616],[125,27,78,0.10425679485749385],[125,27,79,0.10364548265716786],[125,28,64,0.11611020309221276],[125,28,65,0.11325591066553684],[125,28,66,0.1105741556287716],[125,28,67,0.1080684494481325],[125,28,68,0.1057390240877732],[125,28,69,0.10358563171116775],[125,28,70,0.1016082675058817],[125,28,71,0.09980644595211566],[125,28,72,0.0981785702931],[125,28,73,0.09672141804991541],[125,28,74,0.09542974245944186],[125,28,75,0.0942959894255378],[125,28,76,0.09331012929438127],[125,28,77,0.09245960249782488],[125,28,78,0.09172937785777917],[125,28,79,0.0911021221104414],[125,29,64,0.10498626071760883],[125,29,65,0.10194625992068523],[125,29,66,0.09909582820613648],[125,29,67,0.09643630108918667],[125,29,68,0.09396713276452368],[125,29,69,0.09168856194029765],[125,29,70,0.08960057538081219],[125,29,71,0.08770220214590797],[125,29,72,0.08599094354145155],[125,29,73,0.08446231846802212],[125,29,74,0.0831095239495509],[125,29,75,0.0819232103381924],[125,29,76,0.08089137041629207],[125,29,77,0.0799993413536252],[125,29,78,0.07922991823229936],[125,29,79,0.07856357762324527],[125,30,64,0.09411834805820454],[125,30,65,0.09088877043458744],[125,30,66,0.08786383695599354],[125,30,67,0.08504305168922321],[125,30,68,0.08242517915314992],[125,30,69,0.0800108044829559],[125,30,70,0.07779980329765039],[125,30,71,0.07579066200405885],[125,30,72,0.07397996917931544],[125,30,73,0.07236202080330656],[125,30,74,0.07092853903474305],[125,30,75,0.06966850394442357],[125,30,76,0.06856809734969933],[125,30,77,0.0676107576378125],[125,30,78,0.06677734422685692],[125,30,79,0.06604641009197801],[125,31,64,0.08353552276235515],[125,31,65,0.08011297016135248],[125,31,66,0.07690793668461318],[125,31,67,0.07391847020204606],[125,31,68,0.07114274249778807],[125,31,69,0.06858153695569946],[125,31,70,0.0662345166645559],[125,31,71,0.0640995781073631],[125,31,72,0.06217240357111861],[125,31,73,0.060446125015721955],[125,31,74,0.05891109901817769],[125,31,75,0.05755479213554542],[125,31,76,0.05636177576830276],[125,31,77,0.05531382935757627],[125,31,78,0.054390150519221775],[125,31,79,0.053567670505343744],[125,32,64,0.07326271927543418],[125,32,65,0.06964478480141598],[125,32,66,0.06625487064919441],[125,32,67,0.0630899602075127],[125,32,68,0.060147734516037256],[125,32,69,0.05742902421686578],[125,32,70,0.054933183498749386],[125,32,71,0.05265748345007726],[125,32,72,0.05059672374304228],[125,32,73,0.04874295263167806],[125,32,74,0.04708529481427566],[125,32,75,0.04560988644719974],[125,32,76,0.04429991634477222],[125,32,77,0.043135772161301836],[125,32,78,0.042095290130653266],[125,32,79,0.041154106736242195],[125,33,64,0.06331033526167067],[125,33,65,0.059495696776733706],[125,33,66,0.055917112745354644],[125,33,67,0.05257089336292346],[125,33,68,0.04945433192562387],[125,33,69,0.04656815944471389],[125,33,70,0.04391133493801511],[125,33,71,0.04148048337524974],[125,33,72,0.03926956355804425],[125,33,73,0.0372696405322514],[125,33,74,0.035468762030316944],[125,33,75,0.03385193818859877],[125,33,76,0.03240122354295647],[125,33,77,0.031095900078145052],[125,33,78,0.02991275989665788],[125,33,79,0.028826485880889496],[125,34,64,0.053671121457169076],[125,34,65,0.04965954318300228],[125,34,66,0.04588958119323821],[125,34,67,0.04235724312905843],[125,34,68,0.039059533790525555],[125,34,69,0.035996950049899126],[125,34,70,0.03316798582338047],[125,34,71,0.03056861783372421],[125,34,72,0.028192025312320082],[125,34,73,0.026028409965582453],[125,34,74,0.024064915664044298],[125,34,75,0.02228564707145198],[125,34,76,0.020671786201255576],[125,34,77,0.019201805671696062],[125,34,78,0.017851777232246707],[125,34,79,0.016595773953581586],[125,35,64,0.04431868919168519],[125,35,65,0.040110995111436856],[125,35,66,0.036148095579305525],[125,35,67,0.03242602172021747],[125,35,68,0.02894157967643263],[125,35,69,0.02569491972229679],[125,35,70,0.022684024551516378],[125,35,71,0.019904243967749466],[125,35,72,0.017348060771885488],[125,35,73,0.01500495234219489],[125,35,74,0.012861347340086919],[125,35,75,0.010900676745387436],[125,35,76,0.00910351820728266],[125,35,77,0.0074478324927990305],[125,35,78,0.005909290627880379],[125,35,79,0.0044616901567939736],[125,36,64,0.035206153768940346],[125,36,65,0.030804168406045693],[125,36,66,0.02664795949873812],[125,36,67,0.022733835078848873],[125,36,68,0.019058476426679634],[125,36,69,0.015621607970463],[125,36,70,0.012420687721066711],[125,36,71,0.009450489410362388],[125,36,72,0.006702907690585036],[125,36,73,0.004166854369558959],[125,36,74,0.0018282451024079277],[125,36,75,-3.299242561994927E-4],[125,36,76,-0.0023274126409712614],[125,36,77,-0.0041864813003380415],[125,36,78,-0.005931555225984204],[125,36,79,-0.007588800015807301],[125,37,64,0.026264918173649673],[125,37,65,0.021671370235050887],[125,37,66,0.017322673043136814],[125,37,67,0.013215559932683345],[125,37,68,0.009346637373749817],[125,37,69,0.005715170670965865],[125,37,70,0.002318122739763815],[125,37,71,-8.502209315921546E-4],[125,37,72,-0.0037984158651348434],[125,37,73,-0.006537935628692207],[125,37,74,-0.009083162902139163],[125,37,75,-0.011451295357803128],[125,37,76,-0.01366216733290428],[125,37,77,-0.01573798845359851],[125,37,78,-0.017703000535257724],[125,37,79,-0.01958305423223796],[125,38,64,0.017406143198874423],[125,38,65,0.012624525022962275],[125,38,66,0.008085305356027153],[125,38,67,0.0037856560193672267],[125,38,68,-2.7787218722153187E-4],[125,38,69,-0.004106448379420194],[125,38,70,-0.007703522183841009],[125,38,71,-0.011075164253897572],[125,38,72,-0.014230207956031471],[125,38,73,-0.017180308539450524],[125,38,74,-0.019939920354286236],[125,38,75,-0.022526192877976834],[125,38,76,-0.024958786494395913],[125,38,77,-0.027259609142565342],[125,38,78,-0.029452475107980738],[125,38,79,-0.03156268736988436],[125,39,64,0.008576722435954877],[125,39,65,0.0036110783855752646],[125,39,66,-0.0011159042532519134],[125,39,67,-0.005606622183544874],[125,39,68,-0.009864564660586706],[125,39,69,-0.013891293191975435],[125,39,70,-0.01769057097194942],[125,39,71,-0.021268679091792406],[125,39,72,-0.024634546829346418],[125,39,73,-0.027799802772401967],[125,39,74,-0.030778747314661684],[125,39,75,-0.0335882472498201],[125,39,76,-0.03624755336631141],[125,39,77,-0.03877804211030912],[125,39,78,-0.041202882533941214],[125,39,79,-0.04354662987973047],[125,40,64,-2.2916810906470006E-4],[125,40,65,-0.005374383583171072],[125,40,66,-0.010285875573292271],[125,40,67,-0.014965517324951097],[125,40,68,-0.019416800670184767],[125,40,69,-0.023641668597489625],[125,40,70,-0.02764412686322829],[125,40,71,-0.03143054577886267],[125,40,72,-0.03500979042484156],[125,40,73,-0.038393274255227136],[125,40,74,-0.041594936591866236],[125,40,75,-0.04463114468808958],[125,40,76,-0.04752052121361438],[125,40,77,-0.05028369817245052],[125,40,78,-0.04503879774211036],[125,40,79,-0.03960682591156542],[125,41,64,-0.009015997714704462],[125,41,65,-0.014336005899966373],[125,41,66,-0.019428300442327927],[125,41,67,-0.024294060960097615],[125,41,68,-0.028936732068218528],[125,41,69,-0.03335865966374538],[125,41,70,-0.03756405200306618],[125,41,71,-0.041559276337675775],[125,41,72,-0.04535300072208795],[125,41,73,-0.04895626090862543],[125,41,74,-0.05238245277372092],[125,41,75,-0.05379950304861634],[125,41,76,-0.048462294814056374],[125,41,77,-0.043108913838840614],[125,41,78,-0.037766644428084035],[125,41,79,-0.032463762258624365],[125,42,64,-0.017786697854250848],[125,42,65,-0.02327652453168542],[125,42,66,-0.02854555308798863],[125,42,67,-0.03359404645339882],[125,42,68,-0.03842535017972251],[125,42,69,-0.04304226590859778],[125,42,70,-0.04744919595291405],[125,42,71,-0.05165244326869272],[125,42,72,-0.055660376443214865],[125,42,73,-0.056638294507981836],[125,42,74,-0.051525251112014316],[125,42,75,-0.04635130258990701],[125,42,76,-0.04113997958710323],[125,42,77,-0.03591636191610239],[125,42,78,-0.030706812296756415],[125,42,79,-0.025538640708086986],[125,43,64,-0.02653997487022279],[125,43,65,-0.03219462925399113],[125,43,66,-0.037636122206237764],[125,43,67,-0.04286354789152031],[125,43,68,-0.047880108568788333],[125,43,69,-0.0526891450553207],[125,43,70,-0.05729527717387684],[125,43,71,-0.05888070573150733],[125,43,72,-0.05406242873117267],[125,43,73,-0.04914835447780051],[125,43,74,-0.044157787186011564],[125,43,75,-0.03911173926550224],[125,43,76,-0.03403283987463248],[125,43,77,-0.028945171597882166],[125,43,78,-0.023874036198891443],[125,43,79,-0.018845650533905665],[125,44,64,-0.0352673309787293],[125,44,65,-0.04108203888315811],[125,44,66,-0.04669176130434978],[125,44,67,-0.05209416538644263],[125,44,68,-0.057292282811699555],[125,44,69,-0.06043367133086921],[125,44,70,-0.05595840341567601],[125,44,71,-0.05136159805086507],[125,44,72,-0.04665892348219598],[125,44,73,-0.04186746179324165],[125,44,74,-0.037005805310829275],[125,44,75,-0.03209407871225587],[125,44,76,-0.027153887390203958],[125,44,77,-0.02220819279663985],[125,44,78,-0.017281115639943678],[125,44,79,-0.012397667948382993],[125,45,64,-0.04394978708338139],[125,45,65,-0.04992028232816432],[125,45,66,-0.05569435077087891],[125,45,67,-0.06123781571584765],[125,45,68,-0.05713864857278995],[125,45,69,-0.05289754989793043],[125,45,70,-0.04852843702194881],[125,45,71,-0.04404582803944416],[125,45,72,-0.03946514061208025],[125,45,73,-0.03480291444324893],[125,45,74,-0.03007695750694752],[125,45,75,-0.025306416305619972],[125,45,76,-0.020511770614848213],[125,45,77,-0.01571475334539515],[125,45,78,-0.010938196313585861],[125,45,79,-0.006205802857617928],[125,46,64,-0.05255430109713797],[125,46,65,-0.05867717912056267],[125,46,66,-0.05753874117479865],[125,46,67,-0.05368561009181648],[125,46,68,-0.04968345797447948],[125,46,69,-0.045547024838084295],[125,46,70,-0.04129082602296004],[125,46,71,-0.03692952965122378],[125,46,72,-0.03247831643826958],[125,46,73,-0.027953161218435173],[125,46,74,-0.023371036141971314],[125,46,75,-0.018750035700824737],[125,46,76,-0.014109423932517023],[125,46,77,-0.009469604332913361],[125,46,78,-0.004852013178316685],[125,46,79,-2.789371132817797E-4],[125,47,64,-0.05710010446643059],[125,47,65,-0.05365483204987283],[125,47,66,-0.050053715715595415],[125,47,67,-0.046298273480237725],[125,47,68,-0.04240041332427302],[125,47,69,-0.038376137705569156],[125,47,70,-0.0342406953085843],[125,47,71,-0.030008987381857238],[125,47,72,-0.025695995450951976],[125,47,73,-0.021317128472143135],[125,47,74,-0.016888489244981503],[125,47,75,-0.012427060111753829],[125,47,76,-0.007950808173426503],[125,47,77,-0.0034787104432768227],[125,47,78,9.693004606134443E-4],[125,47,79,0.006406503821779753],[125,48,64,-0.04962883128675844],[125,48,65,-0.046273095591171876],[125,48,66,-0.042769954592065104],[125,48,67,-0.03911881695148475],[125,48,68,-0.035331677716603754],[125,48,69,-0.03142599466932566],[125,48,70,-0.02741789585973617],[125,48,71,-0.023322616987247795],[125,48,72,-0.019155002534400764],[125,48,73,-0.014929923812322873],[125,48,74,-0.010662613585497256],[125,48,75,-0.006368917163805639],[125,48,76,4.1818414727549935E-6],[125,48,77,0.006473706168389411],[125,48,78,0.012900541166847124],[125,48,79,0.019267483688723358],[125,49,64,-0.042398087494562586],[125,49,65,-0.03913839361322397],[125,49,66,-0.035739334139486684],[125,49,67,-0.0321981005031724],[125,49,68,-0.028526858573088187],[125,49,69,-0.024744706577916532],[125,49,70,-0.020868800596436324],[125,49,71,-0.016914824327791185],[125,49,72,-0.012897567786145335],[125,49,73,-0.0070113314658353165],[125,49,74,-4.737193187021715E-4],[125,49,75,0.006062448638062564],[125,49,76,0.01258313988776528],[125,49,77,0.019073746386477276],[125,49,78,0.02551902893275807],[125,49,79,0.031903147531504306],[125,50,64,-0.03545324549804641],[125,50,65,-0.03229561403118111],[125,50,66,-0.029006026348864573],[125,50,67,-0.02557938169201754],[125,50,68,-0.022028106218568606],[125,50,69,-0.018373111180688382],[125,50,70,-0.01438040100232872],[125,50,71,-0.00786373382221943],[125,50,72,-0.0013160715506524891],[125,50,73,0.005249249600909665],[125,50,74,0.011819365912148836],[125,50,75,0.018381500624439672],[125,50,76,0.02492266893117564],[125,50,77,0.03142947344072032],[125,50,78,0.0378879898480144],[125,50,79,0.044283742347593406],[125,51,64,-0.028832150463235492],[125,51,65,-0.025782137334383032],[125,51,66,-0.022606753969298423],[125,51,67,-0.0192985694239031],[125,51,68,-0.015530670600833048],[125,51,69,-0.009052464362714976],[125,51,70,-0.002519896873759654],[125,51,71,0.004050337482257086],[125,51,72,0.010643582344918648],[125,51,73,0.017246576625353442],[125,51,74,0.02384690492586572],[125,51,75,0.03043254170555257],[125,51,76,0.03699148951781516],[125,51,77,0.04351151140645749],[125,51,78,0.049979957317138925],[125,51,79,0.05638368416437699],[125,52,64,-0.02256538693982288],[125,52,65,-0.019628103497916487],[125,52,66,-0.01657105786206594],[125,52,67,-0.010561789445965154],[125,52,68,-0.004086890664941053],[125,52,69,0.0024572072744893543],[125,52,70,0.009049407313962766],[125,52,71,0.015671997165264857],[125,52,72,0.022309833966590874],[125,52,73,0.028949624450662154],[125,52,74,0.035579301630379825],[125,52,75,0.04218749873845736],[125,52,76,0.04876312089596253],[125,52,77,0.055295014732375726],[125,52,78,0.06177173593650024],[125,52,79,0.06818141448754626],[125,53,64,-0.01667655778593924],[125,53,65,-0.012298363020067385],[125,53,66,-0.00595445880812563],[125,53,67,4.961616130955068E-4],[125,53,68,0.007039468328834224],[125,53,69,0.013648034405143098],[125,53,70,0.02029901922235647],[125,53,71,0.02697357752365042],[125,53,72,0.033655964812944764],[125,53,73,0.040332741484252144],[125,53,74,0.046992076863366594],[125,53,75,0.05362315406089985],[125,53,76,0.060215676261253986],[125,53,77,0.06675947480663025],[125,53,78,0.0732442191785852],[125,53,79,0.07965922873617559],[125,54,64,-0.00803260178026274],[125,54,65,-0.0017143587863027703],[125,54,66,0.004696822716879264],[125,54,67,0.011214802696811375],[125,54,68,0.017824757802765427],[125,54,69,0.024496793862730737],[125,54,70,0.03120623235966656],[125,54,71,0.037932991170643984],[125,54,72,0.044660612847279194],[125,54,73,0.051375394844458216],[125,54,74,0.058065623052210136],[125,54,75,0.06472090969119901],[125,54,76,0.0713316363451],[125,54,77,0.07788850262465596],[125,54,78,0.08438218068848179],[125,54,79,0.09080307558899531],[125,55,64,0.002134869867589012],[125,55,65,0.008517989255328632],[125,55,66,0.01499311647431153],[125,55,67,0.021576070961117508],[125,55,68,0.028251146139391933],[125,55,69,0.03498592847351799],[125,55,70,0.04175383000268696],[125,55,71,0.04853344254157577],[125,55,72,0.05530749205157841],[125,55,73,0.06206189812360673],[125,55,74,0.06878494009815235],[125,55,75,0.07546653104170639],[125,55,76,0.08209760049898802],[125,55,77,0.08866958664933927],[125,55,78,0.09517403821315709],[125,55,79,0.1016023261847374],[125,56,64,0.011705421150160437],[125,56,65,0.018385946820595966],[125,56,66,0.024921842999569378],[125,56,67,0.031567515855167066],[125,56,68,0.03830629508622932],[125,56,69,0.045103228840692344],[125,56,70,0.051929773462697795],[125,56,71,0.05876312323554584],[125,56,72,0.06558509502441352],[125,56,73,0.07238112109070917],[125,56,74,0.07913935176965145],[125,56,75,0.08584986938434841],[125,56,76,0.09250401445808752],[125,56,77,0.09909382498335761],[125,56,78,0.10561158921145895],[125,56,79,0.11204951214483934],[125,57,64,0.02009889639817486],[125,57,65,0.027703067545157972],[125,57,66,0.0344757811703984],[125,57,67,0.04118195603575259],[125,57,68,0.047983020324628756],[125,57,69,0.054841499191019986],[125,57,70,0.061726874131977846],[125,57,71,0.06861489061164347],[125,57,72,0.07548637801739355],[125,57,73,0.08232618069723438],[125,57,74,0.08912220192931991],[125,57,75,0.09586456234510665],[125,57,76,0.10254487400485188],[125,57,77,0.10915563100959043],[125,57,78,0.11568971722761245],[125,57,79,0.12214003142027591],[125,58,64,0.02843821582352029],[125,58,65,0.03612876122279214],[125,58,66,0.04365270762593987],[125,58,67,0.05041711996597823],[125,58,68,0.057278935709896756],[125,58,69,0.06419820678101239],[125,58,70,0.07114244879441686],[125,58,71,0.07808592910487579],[125,58,72,0.08500842785076607],[125,58,73,0.0918941127947958],[125,58,74,0.09873052996356041],[125,58,75,0.10550771174839406],[125,58,76,0.11221740379675174],[125,58,77,0.1188524116982815],[125,58,78,0.1254060681530506],[125,58,79,0.13187182100564165],[125,59,64,0.03669815112001846],[125,59,65,0.04446690815701125],[125,59,66,0.052107079444834475],[125,59,67,0.05927526976512655],[125,59,68,0.06619608074104463],[125,59,69,0.07317511441063564],[125,59,70,0.08017795773444952],[125,59,71,0.08717739377726033],[125,59,72,0.09415211019866573],[125,59,73,0.10108552402311798],[125,59,74,0.10796472483322102],[125,59,75,0.11477953818122592],[125,59,76,0.12152171067101072],[125,59,77,0.1281842178282096],[125,59,78,0.13476069554991077],[125,59,79,0.14124499561204276],[125,60,64,0.044849837481144836],[125,60,65,0.05268848364096747],[125,60,66,0.06039626320161856],[125,60,67,0.0677628075527344],[125,60,68,0.07474053049242993],[125,60,69,0.0817778952641488],[125,60,70,0.08883862484769071],[125,60,71,0.09589403528632422],[125,60,72,0.10292169839900682],[125,60,73,0.1099042229889846],[125,60,74,0.11682815682392196],[125,60,75,0.12368301130558161],[125,60,76,0.13046041039605558],[125,60,77,0.13715336502449368],[125,60,78,0.14375567386357535],[125,60,79,0.15026145104324418],[125,61,64,0.05286120586127794],[125,61,65,0.060761328132700784],[125,61,66,0.06852754858403885],[125,61,67,0.07588985326183662],[125,61,68,0.08292197691138589],[125,61,69,0.09001571891000333],[125,61,70,0.0971330285102846],[125,61,71,0.10424379494906755],[125,61,72,0.11132447138202604],[125,61,73,0.118356819240154],[125,61,74,0.12532677540342912],[125,61,75,0.13222344422269727],[125,61,76,0.13903821606258843],[125,61,77,0.14576401368794767],[125,61,78,0.15239466747428804],[125,61,79,0.1589244200937979],[125,62,64,0.060697441836771615],[125,62,65,0.06865061211756993],[125,62,66,0.07646624663197159],[125,62,67,0.08366981528779437],[125,62,68,0.0907533029643618],[125,62,69,0.09790083005436492],[125,62,70,0.10507268490808533],[125,62,71,0.1122373917023469],[125,62,72,0.11937030261044959],[125,62,73,0.12645231201054274],[125,62,74,0.13346869523630467],[125,62,75,0.1404080740036027],[125,62,76,0.14726151028256493],[125,62,77,0.15402173002809294],[125,62,78,0.16068247783380113],[125,62,79,0.16723800323937515],[125,63,64,0.06832147570368757],[125,63,65,0.07631933300144687],[125,63,66,0.08410502939178799],[125,63,67,0.09111895834606636],[125,63,68,0.09825015402521695],[125,63,69,0.10544812445949463],[125,63,70,0.11267162825060724],[125,63,71,0.11988790539331488],[125,63,72,0.1270712444676958],[125,63,73,0.13420167316914786],[125,63,74,0.14126377477706245],[125,63,75,0.14824563278816458],[125,63,76,0.15513790557144785],[125,63,77,0.1619330325403606],[125,63,78,0.16862457298500866],[125,63,79,0.17520667836730136],[125,64,64,0.0756944759748908],[125,64,65,0.08372881604195602],[125,64,66,0.09120315976363506],[125,64,67,0.09825593997509291],[125,64,68,0.1054304777689404],[125,64,69,0.11267469311706454],[125,64,70,0.11994595878538059],[125,64,71,0.12721032713903221],[125,64,72,0.1344410786538776],[125,64,73,0.14161739474969168],[125,64,74,0.14872315763215016],[125,64,75,0.15574587945212928],[125,64,76,0.16267576271811465],[125,64,77,0.16950489353254858],[125,64,78,0.17622656886634172],[125,64,79,0.18283475874226854],[125,65,64,0.08277635856801442],[125,65,65,0.09083923169760524],[125,65,66,0.09801467103205186],[125,65,67,0.10510132811294404],[125,65,68,0.11231404506346487],[125,65,69,0.11959934722940349],[125,65,70,0.12691337122147558],[125,65,71,0.13422108941440494],[125,65,72,0.14149484529304351],[125,65,73,0.14871301380198182],[125,65,74,0.1558587894620719],[125,65,75,0.16291910463621295],[125,65,76,0.1698836799514297],[125,65,77,0.1767442085166724],[125,65,78,0.18349367521652782],[125,65,79,0.1901258120148973],[125,66,64,0.08952631248220097],[125,66,65,0.09760479946786535],[125,66,66,0.10456225578091086],[125,66,67,0.11167710061608271],[125,66,68,0.11892195272557196],[125,66,69,0.1262421248595202],[125,66,70,0.13359266441445725],[125,66,71,0.14093757670807477],[125,66,72,0.14824835157402236],[125,66,73,0.1555026153649675],[125,66,74,0.16268291119572464],[125,66,75,0.16977560987560175],[125,66,76,0.17676995360215617],[125,66,77,0.18365723411923518],[125,66,78,0.1904301066812331],[125,66,79,0.19708204081761135],[125,67,64,0.09590334185566238],[125,67,65,0.10389473147688544],[125,67,66,0.11086957765818786],[125,67,67,0.11800612680965805],[125,67,68,0.12527610822349622],[125,67,69,0.1326237793229249],[125,67,70,0.14000323237301893],[125,67,71,0.14737761679009576],[125,67,72,0.15471765994823594],[125,67,73,0.16200031355993885],[125,67,74,0.1692075285257097],[125,67,75,0.17632516076392166],[125,67,76,0.1833420101544264],[125,67,77,0.19024899435912307],[125,67,78,0.19703845892073002],[125,67,79,0.2037036246920812],[125,68,64,0.10186682422629603],[125,68,65,0.10997180293677239],[125,68,66,0.11696073456310639],[125,68,67,0.12411163123341745],[125,68,68,0.1313986964840546],[125,68,69,0.13876524947002158],[125,68,70,0.1461645367240178],[125,68,71,0.1535589527128501],[125,68,72,0.16091855598715227],[125,68,73,0.16821971088398077],[125,68,74,0.1754438577381493],[125,68,75,0.18257641417441872],[125,68,76,0.18960580967440224],[125,68,77,0.19652265524129545],[125,68,78,0.20331904962302588],[125,68,79,0.20998802320485266],[125,69,64,0.10737709088952258],[125,69,65,0.11548363266584172],[125,69,66,0.12285969830160316],[125,69,67,0.13001663381967066],[125,69,68,0.13731162310494346],[125,69,69,0.14468710625797687],[125,69,70,0.1520955551820987],[125,69,71,0.1594986902974085],[125,69,72,0.16686599092148308],[125,69,73,0.17417333106074404],[125,69,74,0.18140174363187092],[125,69,75,0.18853631574884774],[125,69,76,0.19556521733278184],[125,69,77,0.20247886493056355],[125,69,78,0.20926922226548658],[125,69,79,0.21592923869284264],[125,70,64,0.11241215237029134],[125,70,65,0.12051527149985522],[125,70,66,0.12845153340229853],[125,70,67,0.13572765236906809],[125,70,68,0.14302041805328194],[125,70,69,0.15039375629517385],[125,70,70,0.15779942150257664],[125,70,71,0.16519853570197243],[125,70,72,0.17256009096728503],[125,70,73,0.17985957702038755],[125,70,74,0.18707773709076092],[125,70,75,0.19419945473800462],[125,70,76,0.2012127739623183],[125,70,77,0.20810805455670553],[125,70,78,0.21487726429126042],[125,70,79,0.22151340916916148],[125,71,64,0.1170004536828221],[125,71,65,0.12509565082524032],[125,71,66,0.13302257519581362],[125,71,67,0.14074860135818212],[125,71,68,0.1482936891864407],[125,71,69,0.1557046391924496],[125,71,70,0.16301753216894976],[125,71,71,0.170258585252689],[125,71,72,0.17744571305492013],[125,71,73,0.1845899629248205],[125,71,74,0.19169682119444545],[125,71,75,0.1987673876352269],[125,71,76,0.2057994157342452],[125,71,77,0.21278821677077878],[125,71,78,0.21972742603571954],[125,71,79,0.22660962988739355],[125,72,64,0.12117630512777083],[125,72,65,0.12925942901531745],[125,72,66,0.13717352164999608],[125,72,67,0.14488697833251485],[125,72,68,0.15242045716541114],[125,72,69,0.1598210875302289],[125,72,70,0.16712518460764858],[125,72,71,0.17435911469624724],[125,72,72,0.18154085960150268],[125,72,73,0.18868145594506558],[125,72,74,0.19578630618886997],[125,72,75,0.2028563585482406],[125,72,76,0.20988915334475422],[125,72,77,0.2168797337204545],[125,72,78,0.2238214189959472],[125,72,79,0.23070643930489707],[125,73,64,0.12497062693038026],[125,73,65,0.13303778797281116],[125,73,66,0.14093575881695514],[125,73,67,0.14863418639032552],[125,73,68,0.1561542729756068],[125,73,69,0.16354309798619254],[125,73,70,0.17083690214209762],[125,73,71,0.17806196019186427],[125,73,72,0.18523614057299598],[125,73,73,0.19237034124416932],[125,73,74,0.19946979844766494],[125,73,75,0.20653526553665597],[125,73,76,0.21356405937538933],[125,73,77,0.22055097218814593],[125,73,78,0.22748904709106074],[125,73,79,0.23437021588840912],[125,74,64,0.1284124236718497],[125,74,65,0.1364599040531813],[125,74,66,0.1443385587949323],[125,74,67,0.15201953613644353],[125,74,68,0.1595243874325757],[125,74,69,0.16689969047151332],[125,74,70,0.17418125044927854],[125,74,71,0.18139497708454763],[125,74,72,0.1885584292809807],[125,74,73,0.19568223774477392],[125,74,74,0.2027714023031843],[125,74,75,0.20982646104070904],[125,74,76,0.2168445287378997],[125,74,77,0.22382020246076076],[125,74,78,0.23074633250225804],[125,74,79,0.2376146572206381],[125,75,64,0.13153027955883903],[125,75,65,0.1395544402661139],[125,75,66,0.14741056373519076],[125,75,67,0.1550715558623076],[125,75,68,0.16255909218407713],[125,75,69,0.16991874898140183],[125,75,70,0.17718550209319792],[125,75,71,0.18438460445579122],[125,75,72,0.1915331038002892],[125,75,73,0.1986412406590001],[125,75,74,0.20571372344175362],[125,75,75,0.21275087770656279],[125,75,76,0.21974966711017924],[125,75,77,0.22670458388006473],[125,75,78,0.2336084069961311],[125,75,79,0.24045282660734624],[125,76,64,0.13435387314714894],[125,76,65,0.1423510583836267],[125,76,66,0.15018129015657902],[125,76,67,0.15781948305672855],[125,76,68,0.16528719204422088],[125,76,69,0.17262846628036044],[125,76,70,0.17987704369524984],[125,76,71,0.18705722417666654],[125,76,72,0.19418534714437896],[125,76,73,0.20127115236916696],[125,76,74,0.20831902084357878],[125,76,75,0.21532909286553584],[125,76,76,0.22229826084760276],[125,76,77,0.22922103471147018],[125,76,78,0.23609027806505356],[125,76,79,0.242897813687641],[125,77,64,0.13691550997485716],[125,77,65,0.14488194941811305],[125,77,66,0.15268265204653844],[125,77,67,0.1602947750791946],[125,77,68,0.16773949680281267],[125,77,69,0.17505880827341827],[125,77,70,0.18228480286977886],[125,77,71,0.18944053965300678],[125,77,72,0.19654146689498803],[125,77,73,0.20359673235570325],[125,77,74,0.21061037719607628],[125,77,75,0.2175824107553563],[125,77,76,0.22450976376210394],[125,77,77,0.23138711788306535],[125,77,78,0.23820760984079525],[125,77,79,0.24496340864789926],[125,78,64,0.1392516714039529],[125,78,65,0.14718338077286852],[125,78,66,0.15495050106247832],[125,78,67,0.16253263732944315],[125,78,68,0.16995033087318034],[125,78,69,0.17724299646745778],[125,78,70,0.18444069338192368],[125,78,71,0.19156497278510162],[125,78,72,0.19863023288587756],[125,78,73,0.20564496486073278],[125,78,74,0.21261288656789967],[125,78,75,0.21953396137813763],[125,78,76,0.2264052997780433],[125,78,77,0.23322194172328328],[125,78,78,0.23997751803212752],[125,78,79,0.24666478941337763],[125,79,64,0.14138430564126528],[125,79,65,0.14927706143184696],[125,79,66,0.15700627942138623],[125,79,67,0.16455419833683516],[125,79,68,0.17194047278573815],[125,79,69,0.17920145061320655],[125,79,70,0.1863647878271053],[125,79,71,0.193450274515222],[125,79,72,0.20047110832366463],[125,79,73,0.20743506320902616],[125,79,74,0.21434555061323712],[125,79,75,0.22120257052281192],[125,79,76,0.22800355018463878],[125,79,77,0.23474406855617969],[125,79,78,0.24141846486535018],[125,79,79,0.24802032994368023],[125,80,64,0.14326520303578116],[125,80,65,0.15111471521700512],[125,80,66,0.1588023725476753],[125,80,67,0.16631327945554494],[125,80,68,0.1736660030165922],[125,80,69,0.18089337058591184],[125,80,70,0.18802026056967935],[125,80,71,0.19506440642641437],[125,80,72,0.20203758091928714],[125,80,73,0.20894668039218844],[125,80,74,0.215794706387689],[125,80,75,0.2225816422210201],[125,80,76,0.22930522241777365],[125,80,77,0.23596159321188287],[125,80,78,0.24254586258111233],[125,80,79,0.249052538569098],[125,81,64,0.14484349300206412],[125,81,65,0.15264531884146162],[125,81,66,0.1602883121652601],[125,81,67,0.16776071452357325],[125,81,68,0.17507985887665764],[125,81,69,0.18227464811463204],[125,81,70,0.1893668137689347],[125,81,71,0.19637170280479033],[125,81,72,0.20329937103493506],[125,81,73,0.21015558136992304],[125,81,74,0.2169427044012002],[125,81,75,0.22366051909215715],[125,81,76,0.2303069116288621],[125,81,77,0.23687847075398197],[125,81,78,0.24337097817114012],[125,81,79,0.24977979286205093],[125,82,64,0.14608446498087133],[125,82,65,0.1538338797513206],[125,82,66,0.16142930085798723],[125,82,67,0.16886239203837192],[125,82,68,0.17614915551812743],[125,82,69,0.18331422707165146],[125,82,70,0.19037584597413568],[125,82,71,0.19734663323178114],[125,82,72,0.20423459748532707],[125,82,73,0.21104405044536223],[125,82,74,0.21777642953168297],[125,82,75,0.224431025651548],[125,82,76,0.23100561431166922],[125,82,77,0.23749698851410628],[125,82,78,0.24390139213364517],[125,82,79,0.25021485271324323],[125,83,64,0.146966924430048],[125,83,65,0.15465883296636956],[125,83,66,0.16220367931272844],[125,83,67,0.16959682611345236],[125,83,68,0.17685289419331982],[125,83,69,0.1839919804541579],[125,83,70,0.19102852640292065],[125,83,71,0.19797209933639137],[125,83,72,0.20482831808681856],[125,83,73,0.211599692715439],[125,83,74,0.21828637599104928],[125,83,75,0.22488682473812285],[125,83,76,0.23139836938367428],[125,83,77,0.23781769027215585],[125,83,78,0.2441411995500514],[125,83,79,0.2503653276460126],[125,84,64,0.14748076035550284],[125,84,65,0.15510964619698314],[125,84,66,0.1626005972828003],[125,84,67,0.16995292518717442],[125,84,68,0.177179860823316],[125,84,69,0.18429676875001239],[125,84,70,0.1913140402391464],[125,84,71,0.19823789085467045],[125,84,72,0.2050712165857342],[125,84,73,0.2118143679224999],[125,84,74,0.21846583985785595],[125,84,75,0.22502287603203153],[125,84,76,0.23148198546827978],[125,84,77,0.23783937057445087],[125,84,78,0.24409126530441289],[125,84,79,0.2502341825845192],[125,85,64,0.14762473119541475],[125,85,65,0.15518463998394066],[125,85,66,0.16261789488460288],[125,85,67,0.1699279648858364],[125,85,68,0.17712672098435933],[125,85,69,0.18422468541496606],[125,85,70,0.1912280102103862],[125,85,71,0.19813930570564953],[125,85,72,0.20495844004563651],[125,85,73,0.21168326008627225],[125,85,74,0.2183102317934885],[125,85,75,0.22483499846646726],[125,85,76,0.23122240697236995],[125,85,77,0.23714603710713947],[125,85,78,0.24299100282206335],[125,85,79,0.2487453322396298],[125,86,64,0.14740447607234963],[125,86,65,0.15488902988198888],[125,86,66,0.16226020118252568],[125,86,67,0.16952577184779943],[125,86,68,0.17669631788314677],[125,86,69,0.18377749570940918],[125,86,70,0.19077110028487168],[125,86,71,0.1976759394342889],[125,86,72,0.20448859148017087],[125,86,73,0.21120408707230837],[125,86,74,0.21749836302236908],[125,86,75,0.22337571665631828],[125,86,76,0.22920449445802565],[125,86,77,0.23497502843256837],[125,86,78,0.24067688509877555],[125,86,79,0.2462987289816667],[125,87,64,0.14683075789244124],[125,87,65,0.15423319717832362],[125,87,66,0.16153725649838568],[125,87,67,0.1687551248130897],[125,87,68,0.17589617941214766],[125,87,69,0.18296127469071058],[125,87,70,0.18994780690894766],[125,87,71,0.19685064899150725],[125,87,72,0.20366288218025652],[125,87,73,0.20967727913721074],[125,87,74,0.2154012323633888],[125,87,75,0.22109119921264886],[125,87,76,0.22674004881079318],[125,87,77,0.23233976132539647],[125,87,78,0.23788122264176187],[125,87,79,0.24335409852300666],[125,88,64,0.14591794427090365],[125,88,65,0.1532311941425348],[125,88,66,0.16046246439699324],[125,88,67,0.16762837881347192],[125,88,68,0.17473723992728407],[125,88,69,0.18178524973432814],[125,88,70,0.1887654428142036],[125,88,71,0.1956686954650136],[125,88,72,0.20185102730277016],[125,88,73,0.20739334604069914],[125,88,74,0.2129102413421119],[125,88,75,0.21839784530771747],[125,88,76,0.22385135312774898],[125,88,77,0.22926474209593983],[125,88,78,0.23463056797653853],[125,88,79,0.23993983947133954],[125,89,64,0.1446827317981057],[125,89,65,0.15189948934426864],[125,89,66,0.15905167884830035],[125,89,67,0.16616031786091556],[125,89,68,0.1732327819723828],[125,89,69,0.1802608525630731],[125,89,70,0.18723331805844046],[125,89,71,0.19407482376686747],[125,89,72,0.19942229578840803],[125,89,73,0.20474538327170538],[125,89,74,0.21004400515084987],[125,89,75,0.2153172075030616],[125,89,76,0.22056279747233146],[125,89,77,0.22577705321009864],[125,89,78,0.23095451078244267],[125,89,79,0.23608782880756957],[125,90,64,0.14314311872716176],[125,90,65,0.15025595814578518],[125,90,66,0.15732223164581438],[125,90,67,0.16436724112453324],[125,90,68,0.17139760278464766],[125,90,69,0.1784009853960689],[125,90,70,0.18536212262353402],[125,90,71,0.1915283099473163],[125,90,72,0.19665306878459274],[125,90,73,0.2017500052759342],[125,90,74,0.2068223922759717],[125,90,75,0.2118723830563231],[125,90,76,0.21690062390631842],[125,90,77,0.22190594333236452],[125,90,78,0.22688511884960355],[125,90,79,0.2318327221700734],[125,91,64,0.14131763076053439],[125,91,65,0.14831912307676529],[125,91,66,0.15529220476864755],[125,91,67,0.16226628720556655],[125,91,68,0.16924741005118712],[125,91,69,0.17621950548536852],[125,91,70,0.1831635145744385],[125,91,71,0.18865819119666702],[125,91,72,0.19355768900979783],[125,91,73,0.198424873541405],[125,91,74,0.20326644820123624],[125,91,75,0.20808779900503632],[125,91,76,0.21289257398643238],[125,91,77,0.2176823407697088],[125,91,78,0.22245632336772936],[125,91,79,0.22721121907326133],[125,92,64,0.13922480423843428],[125,92,65,0.14610764842715482],[125,92,66,0.15297995200974718],[125,92,67,0.15987500076598277],[125,92,68,0.16679845104758895],[125,92,69,0.17373093198822712],[125,92,70,0.18064991748656745],[125,92,71,0.18547662559133002],[125,92,72,0.19015145957108306],[125,92,73,0.19478859750588556],[125,92,74,0.19939817874864554],[125,92,75,0.2039888773423299],[125,92,76,0.2085674374702961],[125,92,77,0.21313828957972114],[125,92,78,0.21770324833859228],[125,92,79,0.2222612933814787],[125,93,64,0.13688293068346816],[125,93,65,0.1436400930480887],[125,93,66,0.15040387385308873],[125,93,67,0.15721114543624998],[125,93,68,0.1640673789732566],[125,93,69,0.17095037882429337],[125,93,70,0.17748465452749904],[125,93,71,0.18199669688144013],[125,93,72,0.1864504785562869],[125,93,73,0.1908604731503138],[125,93,74,0.1952401909919376],[125,93,75,0.199601578658584],[125,93,76,0.2039545010708517],[125,93,77,0.20830630766554734],[125,93,78,0.2126614839282466],[125,93,79,0.2170213893491751],[125,94,64,0.13431006633240275],[125,94,65,0.14093492502942073],[125,94,66,0.14758244926633696],[125,94,67,0.15429276662038782],[125,94,68,0.16107136000322947],[125,94,69,0.16789371688808769],[125,94,70,0.1739249100016817],[125,94,71,0.17823214037203072],[125,94,72,0.1824712900994823],[125,94,73,0.18666005699000154],[125,94,74,0.190815189830111],[125,94,75,0.1949518227438059],[125,94,76,0.19908289618658587],[125,94,77,0.20321866623547413],[125,94,78,0.20736630359750746],[125,94,79,0.21152958352864304],[125,95,64,0.13152430998659456],[125,95,65,0.13801080162463222],[125,95,66,0.14453452778226342],[125,95,67,0.15113850753105884],[125,95,68,0.1578284243022345],[125,95,69,0.1645779687279133],[125,95,70,0.1700854446545103],[125,95,71,0.1741968652562819],[125,95,72,0.17823034949076128],[125,95,73,0.18220657334667065],[125,95,74,0.18614532845169723],[125,95,75,0.19006478475946273],[125,95,76,0.19398084461854279],[125,95,77,0.19790659005788253],[125,95,78,0.20185182487139647],[125,95,79,0.2058227128386959],[125,96,64,0.12854435223551586],[125,96,65,0.13488711751782123],[125,96,66,0.14127988496997915],[125,96,67,0.147768181522212],[125,96,68,0.15435806399169777],[125,96,69,0.1610219385607609],[125,96,70,0.16597770671101664],[125,96,71,0.16990427090594984],[125,96,72,0.1737433000853782],[125,96,73,0.17751815294420692],[125,96,74,0.18125141105437872],[125,96,75,0.18496406569501264],[125,96,76,0.18867480136330084],[125,96,77,0.1923993779916865],[125,96,78,0.19615011362889015],[125,96,79,0.1999354690800119],[125,97,64,0.12539029885153177],[125,97,65,0.131584824271726],[125,97,66,0.13784004414442383],[125,97,67,0.1442036035402614],[125,97,68,0.15068208082306367],[125,97,69,0.15724708026756054],[125,97,70,0.1616120798510127],[125,97,71,0.1653663548153993],[125,97,72,0.1690240599383549],[125,97,73,0.17261090101973006],[125,97,74,0.17615194630913733],[125,97,75,0.17967073592347174],[125,97,76,0.18318849364373765],[125,97,77,0.18672344331809923],[125,97,78,0.19029023181304186],[125,97,79,0.19389946017505563],[125,98,64,0.12208477091919481],[125,98,65,0.12812752356090926],[125,98,66,0.13423936693024735],[125,98,67,0.14046968328775794],[125,98,68,0.14682568609192576],[125,98,69,0.15326915344234204],[125,98,70,0.15699678715194582],[125,98,71,0.16059261007507944],[125,98,72,0.16408371625148646],[125,98,73,0.16749779328179315],[125,98,74,0.1708620501759903],[125,98,75,0.174202250764542],[125,98,76,0.1775418554089769],[125,98,77,0.18090127344396903],[125,98,78,0.18429722848070976],[125,98,79,0.18774223840472343],[125,99,64,0.11865428404554165],[125,99,65,0.12454283657697654],[125,99,66,0.1305064150807783],[125,99,67,0.1365957824825001],[125,99,68,0.1428188551235867],[125,99,69,0.14854434032161204],[125,99,70,0.1521365661485629],[125,99,71,0.15558871041543604],[125,99,72,0.15892922586772776],[125,99,73,0.16218739817647915],[125,99,74,0.16539219678660008],[125,99,75,0.16857123705000748],[125,99,76,0.17174985659808767],[125,99,77,0.1749503085865634],[125,99,78,0.17819107412704316],[125,99,79,0.18148629590632415],[125,100,64,0.1151309088008107],[125,100,65,0.12086405179471181],[125,100,66,0.12667558575601046],[125,100,67,0.13261733840192458],[125,100,68,0.1386979384737935],[125,100,69,0.14356087049842345],[125,100,70,0.14703111305842745],[125,100,71,0.15035498101668066],[125,100,72,0.1535619201867376],[125,100,73,0.15668242404345936],[125,100,74,0.15974681621120976],[125,100,75,0.1627841497678527],[125,100,76,0.16582122652248749],[125,100,77,0.16888173908808843],[125,100,78,0.17198553823611293],[125,100,79,0.17514802769173662],[125,101,64,0.11155136203767504],[125,101,65,0.1171290835769539],[125,101,66,0.12278593961756122],[125,101,67,0.12857456170892004],[125,101,68,0.13450423230459396],[125,101,69,0.13831502001162876],[125,101,70,0.14167675491780163],[125,101,71,0.14488815651879058],[125,101,72,0.14797932694229352],[125,101,73,0.15098157976207574],[125,101,74,0.15392616712662524],[125,101,75,0.15684312879633097],[125,101,76,0.15976026642520882],[125,101,77,0.16270224607314968],[125,101,78,0.1656898315873564],[125,101,79,0.16873925115020955],[125,102,64,0.10792399381136895],[125,102,65,0.1133461451464931],[125,102,66,0.11884561002723998],[125,102,67,0.12447560148884804],[125,102,68,0.12939206806775538],[125,102,69,0.13283895250600303],[125,102,70,0.13610624481063502],[125,102,71,0.13922161250367404],[125,102,72,0.1422154675823742],[125,102,73,0.14511953299889058],[125,102,74,0.14796553148424058],[125,102,75,0.1507840005554501],[125,102,76,0.15360323718328012],[125,102,77,0.156448375237671],[125,102,78,0.15934059847069693],[125,102,79,0.16229649144554145],[125,103,64,0.10423432860470591],[125,103,65,0.10949989908542646],[125,103,66,0.11483856376818048],[125,103,67,0.12025723369978544],[125,103,68,0.1238257673567647],[125,103,69,0.12719220814304455],[125,103,70,0.13037972595889538],[125,103,71,0.1334158663257736],[125,103,72,0.136330974585889],[125,103,73,0.1391567410969279],[125,103,74,0.1419248717292321],[125,103,75,0.1446658876057357],[125,103,76,0.14740805765726456],[125,103,77,0.15017646719944341],[125,103,78,0.15299222537416113],[125,103,79,0.15587181394154315],[125,104,64,0.1004683030123058],[125,104,65,0.10557567870609932],[125,104,66,0.11074976939845568],[125,104,67,0.11463807853288863],[125,104,68,0.11813546789667871],[125,104,69,0.1214339937239246],[125,104,70,0.12455643346585928],[125,104,71,0.12752990757828306],[125,104,72,0.13038430427588868],[125,104,73,0.13315082673456763],[125,104,74,0.13586066709402647],[125,104,75,0.13854381124452034],[125,104,76,0.14122797801236278],[125,104,77,0.1439376959911972],[125,104,78,0.14669352090157317],[125,104,79,0.14951139600341723],[125,105,64,0.09661499735146521],[125,105,65,0.10146164556289804],[125,105,66,0.10529539572832483],[125,105,67,0.10894119596416757],[125,105,68,0.11237776922113707],[125,105,69,0.11562076497119776],[125,105,70,0.11869237578893066],[125,105,71,0.12161899354043373],[125,105,72,0.12442966064155532],[125,105,73,0.1271546436203592],[125,105,74,0.12982413331311296],[125,105,75,0.13246707565816895],[125,105,76,0.1351101366867238],[125,105,77,0.13777680494564523],[125,105,78,0.14048663422719584],[125,105,79,0.1432546291267344],[125,106,64,0.09197758128044284],[125,106,65,0.09586292834166191],[125,106,66,0.09963100993179583],[125,106,67,0.10321872786614805],[125,106,68,0.10660468877951201],[125,106,69,0.10980407591990785],[125,106,70,0.11283831123940495],[125,106,71,0.11573276587872011],[125,106,72,0.11851526404008633],[125,106,73,0.12121470731147882],[125,106,74,0.12385982367780049],[125,106,75,0.12647804509865376],[125,106,76,0.12909451717605017],[125,106,77,0.1317312440808991],[125,106,78,0.134406371556184],[125,106,79,0.13713361047051353],[125,107,64,0.08644971985647919],[125,107,65,0.09026811884801116],[125,107,66,0.09397772886022711],[125,107,67,0.09751586644460197],[125,107,68,0.10086112102525134],[125,107,69,0.10402816418012542],[125,107,70,0.10703747602554865],[125,107,71,0.10991313714820836],[125,107,72,0.11268141035761521],[125,107,73,0.11536943930014885],[125,107,74,0.11800406800621495],[125,107,75,0.12061078510026117],[125,107,76,0.12321279606153775],[125,107,77,0.12583022658356632],[125,107,78,0.12847945974405303],[125,107,79,0.13117260936749406],[125,108,64,0.0809538218758706],[125,108,65,0.08471210696116083],[125,108,66,0.08837083761239514],[125,108,67,0.09186791523994343],[125,108,68,0.09518201796120489],[125,108,69,0.09832727064508508],[125,108,70,0.1013230624387129],[125,108,71,0.10419194574118035],[125,108,72,0.10695831934686013],[125,108,73,0.10964722317946113],[125,108,74,0.11228324845683404],[125,108,75,0.11488956680391496],[125,108,76,0.1174870815087452],[125,108,77,0.12009370379615794],[125,108,78,0.12272375667716601],[125,108,79,0.1253875086222268],[125,109,64,0.07551069622566708],[125,109,65,0.0792165064388422],[125,109,66,0.08283238949641851],[125,109,67,0.08629700459947989],[125,109,68,0.08958923404061574],[125,109,69,0.09272263619185339],[125,109,70,0.09571538941111116],[125,109,71,0.09858832122938993],[125,109,72,0.10136371384345247],[125,109,73,0.10406421438582131],[125,109,74,0.10671185351867966],[125,109,75,0.10932717559922991],[125,109,76,0.1119284833654856],[125,109,77,0.11453119979517178],[125,109,78,0.1171473494979517],[125,109,79,0.11978516171534032],[125,110,64,0.070112333550099],[125,110,65,0.07377412842090131],[125,110,66,0.07735568591334072],[125,110,67,0.0807966036996081],[125,110,68,0.08407609740348643],[125,110,69,0.08720716014173686],[125,110,70,0.09020667613754274],[125,110,71,0.09309360010652017],[125,110,72,0.09588790282272869],[125,110,73,0.09860961332666311],[125,110,74,0.10127796097440178],[125,110,75,0.10391062025534845],[125,110,76,0.10652306103504303],[125,110,77,0.1091280066109847],[125,110,78,0.11173500170477824],[125,110,79,0.11435009225570085],[125,111,64,0.06470374579221454],[125,111,65,0.06833043998363755],[125,111,66,0.071886552270098],[125,111,67,0.07531283011938394],[125,111,68,0.07858897755222727],[125,111,69,0.08172744959695209],[125,111,70,0.08474378726915781],[125,111,71,0.08765496435940301],[125,111,72,0.09047848803786004],[125,111,73,0.09323158691981717],[125,111,74,0.09593048939751551],[125,111,75,0.09858979480227528],[125,111,76,0.1012219397204504],[125,111,77,0.10383676154895248],[125,111,78,0.10644116114221101],[125,111,79,0.10903886617479874],[125,112,64,0.059221329598360316],[125,112,65,0.06282094933044656],[125,112,66,0.06636015502344045],[125,112,67,0.06978114229833449],[125,112,68,0.07306430695792258],[125,112,69,0.07622161345287304],[125,112,70,0.07926721389415708],[125,112,71,0.08221597997438265],[125,112,72,0.08508277411406233],[125,112,73,0.08788179806657945],[125,112,74,0.09062602134790146],[125,112,75,0.09332669164819413],[125,112,76,0.0959929291751237],[125,112,77,0.09863140667411442],[125,112,78,0.10124611667029705],[125,112,79,0.10383822728241668],[125,113,64,0.05362340039076058],[125,113,65,0.057202533500430475],[125,113,66,0.060732412806336414],[125,113,67,0.06415704975929944],[125,113,68,0.06745777009038575],[125,113,69,0.07064610797475399],[125,113,70,0.07373478122474274],[125,113,71,0.07673642621630805],[125,113,72,0.07966305524579913],[125,113,73,0.08252558072718469],[125,113,74,0.08533340811195117],[125,113,75,0.0880940992396262],[125,113,76,0.09081310765462937],[125,113,77,0.09349358725606763],[125,113,78,0.09613627548211581],[125,113,79,0.09873945207159562],[125,114,64,0.047890362996873846],[125,114,65,0.05145397712352806],[125,114,66,0.05498073904079202],[125,114,67,0.05841687900472901],[125,114,68,0.06174490528251599],[125,114,69,0.06497598875958385],[125,114,70,0.06812137306515946],[125,114,71,0.0711913291897102],[125,114,72,0.07419481360349174],[125,114,73,0.07713918218396539],[125,114,74,0.08002996131037908],[125,114,75,0.08287067734562344],[125,114,76,0.08566274558990267],[125,114,77,0.08840541965876136],[125,114,78,0.0910958021103278],[125,114,79,0.09372891702486391],[125,115,64,0.04202087740173945],[125,115,65,0.04557220579624196],[125,115,66,0.049100382764375436],[125,115,67,0.0525542657017443],[125,115,68,0.05591779466635717],[125,115,69,0.05920184551274009],[125,115,70,0.062416157336958246],[125,115,71,0.06556852118794722],[125,115,72,0.06866465132969388],[125,115,73,0.07170810106569254],[125,115,74,0.07470022392662388],[125,115,75,0.07764018092098876],[125,115,76,0.08052499445052706],[125,115,77,0.08334964939842299],[125,115,78,0.08610724180909406],[125,115,79,0.08878917549511874],[125,116,64,0.036028266339107023],[125,116,65,0.03956875720787738],[125,116,66,0.043101000414482116],[125,116,67,0.04657686830395041],[125,116,68,0.04998196329587948],[125,116,69,0.053326931043726815],[125,116,70,0.05661998823701107],[125,116,71,0.05986635664781312],[125,116,72,0.0630683569183312],[125,116,73,0.06622553564072747],[125,116,74,0.0693348259480086],[125,116,75,0.07239074177071171],[125,116,76,0.07538560585431203],[125,116,77,0.07830981157707437],[125,116,78,0.08115211855791299],[125,116,79,0.08389998199976018],[125,117,64,0.029937168782169003],[125,117,65,0.033466494111700565],[125,117,66,0.03700346264851364],[125,117,67,0.04050330711572124],[125,117,68,0.04395349132826673],[125,117,69,0.047364488153343105],[125,117,70,0.050742988433690926],[125,117,71,0.05409158778058529],[125,117,72,0.0574091086479398],[125,117,73,0.06069094458801727],[125,117,74,0.06392942631037357],[125,117,75,0.06711420913860397],[125,117,76,0.0702326814373872],[125,117,77,0.0732703935656013],[125,117,78,0.07621150690007987],[125,117,79,0.08120474320225585],[125,118,64,0.02378044310210429],[125,118,65,0.027296562945641457],[125,118,66,0.030836899994511918],[125,118,67,0.03436033253080488],[125,118,68,0.0378563428751608],[125,118,69,0.0413352778417098],[125,118,70,0.04480231448493301],[125,118,71,0.048257402753634715],[125,118,72,0.052310512269355985],[125,118,73,0.058059371940207494],[125,118,74,0.06375274058425748],[125,118,75,0.06937874446571685],[125,118,76,0.07492344742885625],[125,118,77,0.08037144312459711],[125,118,78,0.08570645539726247],[125,118,79,0.09056771742068336],[125,119,64,0.017596323388567977],[125,119,65,0.021095601635363545],[125,119,66,0.024635990860394523],[125,119,67,0.030295139752434582],[125,119,68,0.03638896476401572],[125,119,69,0.04245783018689795],[125,119,70,0.04850716187599635],[125,119,71,0.05453637644419724],[125,119,72,0.06053964618851272],[125,119,73,0.06650666661955137],[125,119,74,0.07242342502078321],[125,119,75,0.07827296850760358],[125,119,76,0.08403617010640135],[125,119,77,0.08969249143089655],[125,119,78,0.09425880216939359],[125,119,79,0.09739106041756734],[125,120,64,0.01910868457603341],[125,120,65,0.025318836152972507],[125,120,66,0.03155281329183586],[125,120,67,0.037777847701074924],[125,120,68,0.043988646278203196],[125,120,69,0.050196699145802895],[125,120,70,0.05640593586538155],[125,120,71,0.06261315479466119],[125,120,72,0.06880900867622865],[125,120,73,0.07497898315420284],[125,120,74,0.08110436607017826],[125,120,75,0.0871632054655902],[125,120,76,0.09313125430120726],[125,120,77,0.09829531072653354],[125,120,78,0.1013041782850023],[125,120,79,0.10424015491505419],[125,121,64,0.026561626708926287],[125,121,65,0.03281254188724063],[125,121,66,0.03910300733809356],[125,121,67,0.045404231710030364],[125,121,68,0.05171304830893741],[125,121,69,0.05804082916425812],[125,121,70,0.06439007071425214],[125,121,71,0.07075506084761277],[125,121,72,0.0771230740330415],[125,121,73,0.08347555045564525],[125,121,74,0.08978925646582259],[125,121,75,0.09603742375199026],[125,121,76,0.10219086476286034],[125,121,77,0.10557639554249859],[125,121,78,0.1083769442665313],[125,121,79,0.11111960684474034],[125,122,64,0.03423805651907785],[125,122,65,0.04051136506531204],[125,122,66,0.04683899332718109],[125,122,67,0.05319607557708935],[125,122,68,0.05958151091417013],[125,122,69,0.06600654427614217],[125,122,70,0.07247231461323823],[125,122,71,0.07897074457916986],[125,122,72,0.08548593013091361],[125,122,73,0.09199550607116594],[125,122,74,0.09847198433335551],[125,122,75,0.10488406194163405],[125,122,76,0.11019668391256329],[125,122,77,0.11287356052521302],[125,122,78,0.11547498027611063],[125,122,79,0.11803250506100421],[125,123,64,0.042159663757629244],[125,123,65,0.048436306818916294],[125,123,66,0.05478070739362929],[125,123,67,0.061171782428206097],[125,123,68,0.0676103783864947],[125,123,69,0.07410758753249488],[125,123,70,0.08066327739209489],[125,123,71,0.0872671841469614],[125,123,72,0.09390047809727865],[125,123,73,0.10053729793932123],[125,123,74,0.10714625020085201],[125,123,75,0.1136918703334223],[125,123,76,0.11769491567249407],[125,123,77,0.12017793031201335],[125,123,78,0.1225944238635748],[125,123,79,0.12497980415176106],[125,124,64,0.05034234523914015],[125,124,65,0.056602908404850064],[125,124,66,0.06294299944764799],[125,124,67,0.06934508841703214],[125,124,68,0.07581179682157026],[125,124,69,0.0823540230059227],[125,124,70,0.08897045716055309],[125,124,71,0.09564885612139255],[125,124,72,0.10236776309827204],[125,124,73,0.10909819007939286],[125,124,74,0.11580525885437551],[125,124,75,0.12244979677452728],[125,124,76,0.1251704097188548],[125,124,77,0.1274791154985683],[125,124,78,0.12972928132254247],[125,124,79,0.13195974816885583],[125,125,64,0.05879504260586539],[125,125,65,0.0650201176373548],[125,125,66,0.07133453916873503],[125,125,67,0.07772402276128036],[125,125,68,0.08419274494024045],[125,125,69,0.0907513547836359],[125,125,70,0.09739746457109746],[125,125,71,0.10411708104346874],[125,125,72,0.1108864554792783],[125,125,73,0.11767389132053609],[125,125,74,0.12444150495212682],[125,125,75,0.13035533241778613],[125,125,76,0.13260741104531057],[125,125,77,0.1347650146732477],[125,125,78,0.13687106724315712],[125,125,79,0.13896735456879863],[125,126,64,0.06751885030151002],[125,126,65,0.07368942182556928],[125,126,66,0.07995698172463282],[125,126,67,0.08631011757449092],[125,126,68,0.09275430158120289],[125,126,69,0.0992998662874482],[125,126,70,0.10594344792472873],[125,126,71,0.1126695473733484],[125,126,72,0.11945248513066292],[125,126,73,0.12625830970404836],[125,126,74,0.1330466547603913],[125,126,75,0.1378657211990067],[125,126,76,0.13998919653719472],[125,126,77,0.14202161369443345],[125,126,78,0.1440084741541231],[125,126,79,0.14599396065241943],[125,127,64,0.07650639567767058],[125,127,65,0.08260424917729149],[125,127,66,0.08880439519014047],[125,127,67,0.09509786945273317],[125,127,68,0.10149115177735275],[125,127,69,0.10799418175324797],[125,127,70,0.11460272083555638],[125,127,71,0.12130001539188265],[125,127,72,0.1280588304505741],[125,127,73,0.13484343370463822],[125,127,74,0.1416115248976432],[125,127,75,0.14527517970036383],[125,127,76,0.1472979717841581],[125,127,77,0.14923278226962036],[125,127,78,0.1511270726673158],[125,127,79,0.1530268332814265],[125,128,64,0.08574149303254522],[125,128,65,0.09174964050434206],[125,128,66,0.09786295151359456],[125,128,67,0.10407445465020003],[125,128,68,0.1103913332065769],[125,128,69,0.11682305158562614],[125,128,70,0.12336459406115169],[125,128,71,0.12999820251881516],[125,128,72,0.13669546319081233],[125,128,73,0.1434193413456197],[125,128,74,0.15012615891922146],[125,128,75,0.15256424949945085],[125,128,76,0.1545147318222243],[125,128,77,0.15638006788725203],[125,128,78,0.1582090425078641],[125,128,79,0.16004884259652946],[125,129,64,0.09519907327416528],[125,129,65,0.10110219295472825],[125,129,66,0.10711088276734938],[125,129,67,0.1132196995664827],[125,129,68,0.11943622469890018],[125,129,69,0.12576936319890322],[125,129,70,0.13221341300784023],[125,129,71,0.13874985142254304],[125,129,72,0.14534945039424355],[125,129,73,0.15197433821887102],[125,129,74,0.15767542812011537],[125,129,75,0.15971325556547272],[125,129,76,0.16161908555213544],[125,129,77,0.16344248714461523],[125,129,78,0.1652329347839952],[125,129,79,0.16703820041163855],[125,130,64,0.10484539080949187],[125,130,65,0.11063027740266566],[125,130,66,0.11651870432245927],[125,130,67,0.12250630817174903],[125,130,68,0.1286007783866559],[125,130,69,0.1348103788639075],[125,130,70,0.1411288023336754],[125,130,71,0.14753698221754213],[125,130,72,0.1540052145632434],[125,130,73,0.1604952253633262],[125,130,74,0.16468573503186154],[125,130,75,0.16670209665481073],[125,130,76,0.1685890435921734],[125,130,77,0.17039631450790454],[125,130,78,0.1721734658241926],[125,130,79,0.17396826391176973],[125,131,64,0.1146385091849496],[125,131,65,0.12029453104808999],[125,131,66,0.12604970650570343],[125,131,67,0.131900347912717],[125,131,68,0.13785399700142104],[125,131,69,0.1439182019991515],[125,131,70,0.1500861189953366],[125,131,71,0.15633832997532096],[125,131,72,0.16264495313675958],[125,131,73,0.16896769790422728],[125,131,74,0.17149310211380364],[125,131,75,0.17350996533568225],[125,131,76,0.17540076933210666],[125,131,77,0.17721486853202867],[125,131,78,0.1790013428826772],[125,131,79,0.18080740523701377],[125,132,64,0.12452894174220422],[125,132,65,0.13004849328074475],[125,132,66,0.13566057475738047],[125,132,67,0.14136184611212763],[125,132,68,0.1471595003779203],[125,132,69,0.15306030826797523],[125,132,70,0.1590569428949904],[125,132,71,0.1651297902512217],[125,132,72,0.17124903453990856],[125,132,73,0.17587600954852325],[125,132,74,0.17808010454332995],[125,132,75,0.1801151881619521],[125,132,76,0.1820284827874376],[125,132,77,0.18386848222566554],[125,132,78,0.18568330342578457],[125,132,79,0.18751912162237935],[125,133,64,0.1344407791088283],[125,133,65,0.13981831555050891],[125,133,66,0.1452797028120923],[125,133,67,0.15082170446062665],[125,133,68,0.15645104243342978],[125,133,69,0.16217369860320885],[125,133,70,0.16798193893842486],[125,133,71,0.17385610639107352],[125,133,72,0.17976667144453828],[125,133,73,0.1822314626679795],[125,133,74,0.18446030459677978],[125,133,75,0.18652627464265834],[125,133,76,0.1884754852483142],[125,133,77,0.190355172739791],[125,133,78,0.1922120863990049],[125,133,79,0.19409096130458142],[125,134,64,0.14425953428010568],[125,134,65,0.14948895844804638],[125,134,66,0.15479178077278577],[125,134,67,0.16016467800033704],[125,134,68,0.1656138673124441],[125,134,69,0.1711446393660413],[125,134,70,0.17674902043303745],[125,134,71,0.18240753559240708],[125,134,72,0.18598526592654432],[125,134,73,0.18844443933107893],[125,134,74,0.19070520588365125],[125,134,75,0.19280959747236],[125,134,76,0.19480226909397177],[125,134,77,0.19672885404176488],[125,134,78,0.19863439910490452],[125,134,79,0.20056188348745824],[125,135,64,0.1538804628520429],[125,135,65,0.1589550727398697],[125,135,66,0.16409117424407554],[125,135,67,0.16928522290766482],[125,135,68,0.17454297533846125],[125,135,69,0.17986921957115237],[125,135,70,0.18525598529688553],[125,135,71,0.18938195848567177],[125,135,72,0.1920952885189862],[125,135,73,0.19458159322430038],[125,135,74,0.19687720636129746],[125,135,75,0.1990225703573745],[125,135,76,0.20106057057516624],[125,135,77,0.2030349450113268],[125,135,78,0.20498877329362095],[125,135,79,0.20696304859164255],[125,136,64,0.16321512811510064],[125,136,65,0.1681278712844285],[125,136,66,0.17308907977176838],[125,136,67,0.17809491477034278],[125,136,68,0.18315078167510765],[125,136,69,0.1882612199443114],[125,136,70,0.1924693319303589],[125,136,71,0.19544800506774782],[125,136,72,0.19817926126702634],[125,136,73,0.20069220322374745],[125,136,74,0.2030214971099289],[125,136,75,0.20520570058392104],[125,136,76,0.20728566065595183],[125,136,77,0.20930298538380884],[125,136,78,0.21129859313880162],[125,136,79,0.21331134293940995],[125,137,64,0.17219199406847935],[125,137,65,0.1769356372199325],[125,137,66,0.18171393015858797],[125,137,67,0.18652272928694907],[125,137,68,0.19136725054544754],[125,137,69,0.19529994869785844],[125,137,70,0.19854254433748827],[125,137,71,0.20152680390051952],[125,137,72,0.20427316954997118],[125,137,73,0.20680904764527314],[125,137,74,0.20916714743016693],[125,137,75,0.21138388292837118],[125,137,76,0.2134978420686506],[125,137,77,0.21554832684673142],[125,137,78,0.21757396810827045],[125,137,79,0.21961141830584555],[125,138,64,0.1807573875616775],[125,138,65,0.1853245971448863],[125,138,66,0.18991215748304863],[125,138,67,0.194176539928372],[125,138,68,0.1979282072949146],[125,138,69,0.20142071249132884],[125,138,70,0.20465458346610504],[125,138,71,0.20764031107163253],[125,138,72,0.21039666660474077],[125,138,73,0.21294907066430557],[125,138,74,0.2153280175069835],[125,138,75,0.21756755890123852],[125,138,76,0.21970385128856806],[125,138,77,0.22177376985995564],[125,138,78,0.22381359294607533],[125,138,79,0.22585775990257612],[125,139,64,0.18788053838854643],[125,139,65,0.19227899244538268],[125,139,66,0.1964550806773493],[125,139,67,0.20040686369744617],[125,139,68,0.2041227382599078],[125,139,69,0.2075912955186805],[125,139,70,0.2108119754310188],[125,139,71,0.21379369226583775],[125,139,72,0.2165532557212473],[125,139,73,0.21911383885917893],[125,139,74,0.2215034967597487],[125,139,75,0.22375373963213402],[125,139,76,0.22589816394304785],[125,139,77,0.22797114493901113],[125,139,78,0.23000659374548157],[125,139,79,0.23203678202533926],[125,140,64,0.19434720852831117],[125,140,65,0.198670069080347],[125,140,66,0.20278267619009555],[125,140,67,0.20668328912713244],[125,140,68,0.21036002687726088],[125,140,69,0.2138006848276595],[125,140,70,0.21700331529333539],[125,140,71,0.2199749684869196],[125,140,72,0.2227302277624315],[125,140,73,0.22528978590884877],[125,140,74,0.22767906607804497],[125,140,75,0.22992689078345557],[125,140,76,0.23206420224830815],[125,140,77,0.2341228372159844],[125,140,78,0.23613435916084727],[125,140,79,0.23812895065644177],[125,141,64,0.2008345280974487],[125,141,65,0.2050796904049546],[125,141,66,0.20912669307612963],[125,141,67,0.21297383052070204],[125,141,68,0.21660872096063422],[125,141,69,0.22001809264357444],[125,141,70,0.223198338653549],[125,141,71,0.22615438539210472],[125,141,72,0.22889835195090982],[125,141,73,0.231448243542008],[125,141,74,0.23382668221402964],[125,141,75,0.23605967795456786],[125,141,76,0.23817544314204034],[125,141,77,0.24020325316513524],[125,141,78,0.24217235587501856],[125,141,79,0.24411093237552323],[125,142,64,0.20728347426000376],[125,142,65,0.21145007191110463],[125,142,66,0.21543065355402446],[125,142,67,0.21922337786255103],[125,142,68,0.22281516039517152],[125,142,69,0.22619143140324544],[125,142,70,0.2293466885617155],[125,142,71,0.23228350407971105],[125,142,72,0.23501131790877564],[125,142,73,0.23754525688815092],[125,142,74,0.23990498266278823],[125,142,75,0.24211357110397005],[125,142,76,0.2441964258483989],[125,142,77,0.24618022844963494],[125,142,78,0.2480919275063439],[125,142,79,0.24995776899545236],[125,143,64,0.21361883724743788],[125,143,65,0.2177072334411943],[125,143,66,0.22162197338310755],[125,143,67,0.22536091365887012],[125,143,68,0.22891009428927464],[125,143,69,0.23225346160471091],[125,143,70,0.2353834173881602],[125,143,71,0.23829997516878507],[125,143,72,0.241009697073783],[125,143,73,0.24352464746968705],[125,143,74,0.24586136580090945],[125,143,75,0.24803986095184088],[125,143,76,0.2500826293696365],[125,143,77,0.2520136990880903],[125,143,78,0.2538577016890681],[125,143,79,0.25563897412713926],[125,144,64,0.21979234209898785],[125,144,65,0.22380261168511748],[125,144,66,0.22765177164265243],[125,144,67,0.23133718241876952],[125,144,68,0.2348438384690199],[125,144,69,0.23815404193951975],[125,144,70,0.24125792200500024],[125,144,71,0.24415275049216834],[125,144,72,0.2468420323081392],[125,144,73,0.24933460245053843],[125,144,74,0.25164373154309566],[125,144,75,0.25378624178533776],[125,144,76,0.25578163514265567],[125,144,77,0.2576512355335429],[125,144,78,0.2594173466943384],[125,144,79,0.26110242731847766],[125,145,64,0.22576884156534566],[125,145,65,0.2297002438623725],[125,145,66,0.23348315612548873],[125,145,67,0.23711421665437113],[125,145,68,0.24057720567434612],[125,145,69,0.24357072626535847],[125,145,70,0.24632688149418439],[125,145,71,0.24903527824214228],[125,145,72,0.2516924711590524],[125,145,73,0.2542902974682684],[125,145,74,0.256816646803661],[125,145,75,0.25925623305660606],[125,145,76,0.2612427452505932],[125,145,77,0.26304091554727616],[125,145,78,0.26471784998051945],[125,145,79,0.2662941793862898],[125,146,64,0.23151747223511418],[125,146,65,0.23536835733868414],[125,146,66,0.23908331409852832],[125,146,67,0.24259443544212111],[125,146,68,0.24517735707451707],[125,146,69,0.24769218282559585],[125,146,70,0.2501499857402618],[125,146,71,0.25255607398730817],[125,146,72,0.2549105797326171],[125,146,73,0.2572090651711255],[125,146,74,0.2594431448064176],[125,146,75,0.2616011230638424],[125,146,76,0.26366864632601333],[125,146,77,0.26562936848882457],[125,146,78,0.26746562915204236],[125,146,79,0.2691591435813426],[125,147,64,0.23701114499076342],[125,147,65,0.24077889675258404],[125,147,66,0.24442308283883502],[125,147,67,0.246970994103118],[125,147,68,0.24926969576880526],[125,147,69,0.25149098091967764],[125,147,70,0.253648786921051],[125,147,71,0.25575176894151674],[125,147,72,0.2578037089168859],[125,147,73,0.25980395491876385],[125,147,74,0.26174789057897985],[125,147,75,0.2636274341866519],[125,147,76,0.26543156704553256],[125,147,77,0.26714689065607655],[125,147,78,0.26875821226992774],[125,147,79,0.27024915835479824],[125,148,64,0.24222609246787857],[125,148,65,0.24590710688121195],[125,148,66,0.24892034125322982],[125,148,67,0.25104127781408114],[125,148,68,0.25305464626492513],[125,148,69,0.25498205913975536],[125,148,70,0.25684034579334214],[125,148,71,0.2586415359390349],[125,148,72,0.26039308317990256],[125,148,73,0.2620981330230214],[125,148,74,0.2637558356144551],[125,148,75,0.26536170336539106],[125,148,76,0.266908013577503],[125,148,77,0.2683842561187444],[125,148,78,0.2697776261502651],[125,148,79,0.2710735618617288],[125,149,64,0.24714147392342936],[125,149,65,0.2507311716542337],[125,149,66,0.25296798740970194],[125,149,67,0.25481433472803067],[125,149,68,0.2565432248809104],[125,149,69,0.2581784725908871],[125,149,70,0.2597397773346718],[125,149,71,0.26124251877788796],[125,149,72,0.2626977913401172],[125,149,73,0.2641124979949054],[125,149,74,0.2654895041460704],[125,149,75,0.26682785232117456],[125,149,76,0.26812303832659834],[125,149,77,0.2693673494173999],[125,149,78,0.2705502649500876],[125,149,79,0.2716589199086727],[125,150,64,0.25173903790770064],[125,150,65,0.25500335860786244],[125,150,66,0.2567241091178657],[125,150,67,0.2582976460255683],[125,150,68,0.2597448053092036],[125,150,69,0.26109153896314696],[125,150,70,0.2623603448986001],[125,150,71,0.26356987553760053],[125,150,72,0.2647347820562017],[125,150,73,0.26586563310217676],[125,150,74,0.26696890944255613],[125,150,75,0.26804707586210236],[125,150,76,0.269098731503065],[125,150,77,0.2701188397105902],[125,150,78,0.2710990383283018],[125,150,79,0.27202803127616526],[125,151,64,0.25600284312561555],[125,151,65,0.2587316778118942],[125,151,66,0.2601931128478499],[125,151,67,0.261497316277712],[125,151,68,0.2626672635767153],[125,151,69,0.26373093606883363],[125,151,70,0.2647135099701092],[125,151,71,0.2656367819722654],[125,151,72,0.26651882409108774],[125,151,73,0.26737372851232927],[125,151,74,0.26821144450674234],[125,151,75,0.26903770931804943],[125,151,76,0.26985407476272],[125,151,77,0.27065803111990516],[125,151,78,0.27144322973538587],[125,151,79,0.27219980561655505],[125,152,64,0.25991903786959025],[125,152,65,0.26217222144004637],[125,152,66,0.26337830112301364],[125,152,67,0.2644182081322382],[125,152,68,0.2653170704271121],[125,152,69,0.2661047504912535],[125,152,70,0.26680893718733917],[125,152,71,0.26745439466852655],[125,152,72,0.26806243106599353],[125,152,73,0.2686504727647873],[125,152,74,0.2692317469501124],[125,152,75,0.26981507490542705],[125,152,76,0.2704047783452008],[125,152,77,0.2710007008707691],[125,152,78,0.2715983464492307],[125,152,79,0.27218913663472544],[125,153,64,0.2634756984047304],[125,153,65,0.2653259728116674],[125,153,66,0.2662819883109074],[125,153,67,0.2670640209443435],[125,153,68,0.26769933075626967],[125,153,69,0.2682194769908912],[125,153,70,0.2686544542945324],[125,153,71,0.26903177365592496],[125,153,72,0.26937575041720563],[125,153,73,0.2697069133122754],[125,153,74,0.2700415378113631],[125,153,75,0.2703913068179575],[125,153,76,0.2707631015332875],[125,153,77,0.27115892507628164],[125,153,78,0.27157596122558725],[125,153,79,0.2720067704369365],[125,154,64,0.2666627266901096],[125,154,65,0.26819316463321374],[125,154,66,0.2689055575839302],[125,154,67,0.2694373129700384],[125,154,68,0.26981776972928956],[125,154,69,0.27007996831195386],[125,154,70,0.2702559666878211],[125,154,71,0.2703757641533063],[125,154,72,0.27046641626407064],[125,154,73,0.2705512858664402],[125,154,74,0.2706494340816287],[125,154,75,0.27077515483367276],[125,154,76,0.2709376562500344],[125,154,77,0.2711408920052925],[125,154,78,0.27138354542565213],[125,154,79,0.271659168927575],[125,155,64,0.26947180782676644],[125,155,65,0.2707733074427983],[125,155,66,0.27124945865761924],[125,155,67,0.2715394667352912],[125,155,68,0.2716746652021492],[125,155,69,0.2716893350269133],[125,155,70,0.2716173262099846],[125,155,71,0.2714908371292602],[125,155,72,0.2713393658906495],[125,155,73,0.27118881227651037],[125,155,74,0.2710607346924985],[125,155,75,0.27097176622168695],[125,155,76,0.270933193603791],[125,155,77,0.27095070266943716],[125,155,78,0.2710242934773016],[125,155,79,0.2711483681282973],[125,156,64,0.2718964276329152],[125,156,65,0.2730651567391025],[125,156,66,0.273313145904804],[125,156,67,0.27337059718457557],[125,156,68,0.2732707260619806],[125,156,69,0.27304879504779167],[125,156,70,0.27274015384155004],[125,156,71,0.2723788883458595],[125,156,72,0.2719966195347955],[125,156,73,0.271621466661114],[125,156,74,0.2712771797143375],[125,156,75,0.2709824457238107],[125,156,76,0.2707503731829755],[125,156,77,0.27058815855609697],[125,156,78,0.2704969385193901],[125,156,79,0.27047183128787405],[125,157,64,0.2739319507608236],[125,157,65,0.2750666183787026],[125,157,66,0.2750949564311195],[125,157,67,0.27492940220024953],[125,157,68,0.27460491608823184],[125,157,69,0.2741574724216592],[125,157,70,0.27362361592472617],[125,157,71,0.2730389955444344],[125,157,72,0.2724370231682062],[125,157,73,0.2718477095034676],[125,157,74,0.2712966825028667],[125,157,75,0.270804393376945],[125,157,76,0.2703855148938877],[125,157,77,0.27004853632636827],[125,157,78,0.26979555907155195],[125,157,79,0.2696222966452094],[125,158,64,0.2755757597876834],[125,158,65,0.27677459180929087],[125,158,66,0.2765919276814536],[125,158,67,0.27621295506895893],[125,158,68,0.2756742229224618],[125,158,69,0.2750121450139975],[125,158,70,0.27426415354352074],[125,158,71,0.27346713341960927],[125,158,72,0.2726559539391046],[125,158,73,0.2718621894088751],[125,158,74,0.271113034521337],[125,158,75,0.2704304199322893],[125,158,76,0.2698303331257554],[125,158,77,0.2693223492890005],[125,158,78,0.2689093765649579],[125,158,79,0.26858761970234996],[125,159,64,0.2768274557337079],[125,159,65,0.27818475068551834],[125,159,66,0.2777995541269385],[125,159,67,0.27721643845215377],[125,159,68,0.27647337171632547],[125,159,69,0.27560694066635244],[125,159,70,0.27465516466709783],[125,159,71,0.27365584601246706],[125,159,72,0.2726449879347546],[125,159,73,0.27165541220994777],[125,159,74,0.2707155825530406],[125,159,75,0.26984863961580835],[125,159,76,0.26907165301672026],[125,159,77,0.26839509545198614],[125,159,78,0.26782254356157276],[125,159,79,0.26735060985796444],[125,160,64,0.2776891204855907],[125,160,65,0.27929126039029134],[125,160,66,0.2787114825591159],[125,160,67,0.27793281939584996],[125,160,68,0.27699448300650775],[125,160,69,0.2759329813950857],[125,160,70,0.27478663864504316],[125,160,71,0.2735938761365354],[125,160,72,0.27239152990506654],[125,160,73,0.27121337709022314],[125,160,74,0.2700888780054285],[125,160,75,0.26904213996222864],[125,160,76,0.2680911085836641],[125,160,77,0.26724699194416435],[125,160,78,0.2665139224817486],[125,160,79,0.26588886124581573],[125,161,64,0.2781656416321781],[125,161,65,0.2800864319572224],[125,161,66,0.279319145491822],[125,161,67,0.27835246488989435],[125,161,68,0.2772266743418371],[125,161,69,0.2759779751759709],[125,161,70,0.27464474262263233],[125,161,71,0.27326575143122667],[125,161,72,0.2718784045710073],[125,161,73,0.2705171793808601],[125,161,74,0.2692122979926493],[125,161,75,0.26798862844196913],[125,161,76,0.26686482246756055],[125,161,77,0.26585269558971036],[125,161,78,0.26495685465233637],[125,161,79,0.2641745776170742],[125,162,64,0.27826510025069384],[125,162,65,0.2800180406163575],[125,162,66,0.2796113321411777],[125,162,67,0.2784626974581915],[125,162,68,0.2771556051605854],[125,162,69,0.2757257548338404],[125,162,70,0.2742113594204231],[125,162,71,0.2726513266154039],[125,162,72,0.2710834091213918],[125,162,73,0.2695425796667755],[125,162,74,0.26805963786686804],[125,162,75,0.2666600555858354],[125,162,76,0.26536306703339047],[125,162,77,0.2641810094077311],[125,162,78,0.26311891947892907],[125,162,79,0.2621743910989202],[125,163,64,0.2779992222177278],[125,163,65,0.279571890392473],[125,163,66,0.2795736964216274],[125,163,67,0.278247290230459],[125,163,68,0.27676296438685083],[125,163,69,0.2751557635293251],[125,163,70,0.27346357639737817],[125,163,71,0.2717252814907114],[125,163,72,0.2699788264807225],[125,163,73,0.26825953881983133],[125,163,74,0.2665986748521125],[125,163,75,0.26502221429786815],[125,163,76,0.26354990655141525],[125,163,77,0.26219457479918584],[125,163,78,0.26096168353813765],[125,163,79,0.25984917465655866],[125,164,64,0.27738427074635547],[125,164,65,0.27877820004357656],[125,164,66,0.27918814758267374],[125,164,67,0.2776860186150306],[125,164,68,0.2760261903142976],[125,164,69,0.27424294774612995],[125,164,70,0.2723737524740702],[125,164,71,0.2704573577197814],[125,164,72,0.2685318215234718],[125,164,73,0.2666327568630452],[125,164,74,0.2647918262369196],[125,164,75,0.26303548777686747],[125,164,76,0.2613839995158152],[125,164,77,0.25985068799505007],[125,164,78,0.2584414869597038],[125,164,79,0.25715475146491285],[125,165,64,0.2764417252757283],[125,165,65,0.2776598371871219],[125,165,66,0.2784345218449145],[125,165,67,0.2767575976870855],[125,165,68,0.2749226890887819],[125,165,69,0.2729632590624002],[125,165,70,0.2709162788754277],[125,165,71,0.2688203175286782],[125,165,72,0.26671349334745603],[125,165,73,0.26463166758306594],[125,165,74,0.2626068877077466],[125,165,75,0.26066608764119403],[125,165,76,0.25883005169875584],[125,165,77,0.25711264860397476],[125,165,78,0.25552034146546454],[125,165,79,0.25405197918438277],[125,166,64,0.27519116366341845],[125,166,65,0.2762372343326288],[125,166,66,0.2772584093125136],[125,166,67,0.2754456225570834],[125,166,68,0.2734353946625248],[125,166,69,0.271298851809576],[125,166,70,0.26907244804815594],[125,166,71,0.26679453678719334],[125,166,72,0.26450326706100663],[125,166,73,0.2622347260122732],[125,166,74,0.26002133542431466],[125,166,75,0.25789050968578925],[125,166,76,0.2558635821177828],[125,166,77,0.25395500614058003],[125,166,78,0.25217183730917503],[125,166,79,0.25051350180717635],[125,167,64,0.2736484394712533],[125,167,65,0.2745270467642422],[125,167,66,0.27538270584775226],[125,167,67,0.27373886595551733],[125,167,68,0.2715525547550895],[125,167,69,0.269237367372088],[125,167,70,0.26682925776074573],[125,167,71,0.2643663667840315],[125,167,72,0.2618868707329671],[125,167,73,0.25942707932784975],[125,167,74,0.2570197911512416],[125,167,75,0.2546929140100207],[125,167,76,0.2524683572674367],[125,167,77,0.2503612027298735],[125,167,78,0.24837916022102352],[125,167,79,0.24652231353278817],[125,168,64,0.2718269450677564],[125,168,65,0.2725434020064536],[125,168,66,0.2732394096939835],[125,168,67,0.27163004640833005],[125,168,68,0.26926652926280364],[125,168,69,0.2667707680534716],[125,168,70,0.26417828305160757],[125,168,71,0.2615270446288794],[125,168,72,0.2588552826856593],[125,168,73,0.25619954783252147],[125,168,74,0.2535930323566941],[125,168,75,0.25106415855155245],[125,168,76,0.24863544152948555],[125,168,77,0.24632263318054215],[125,168,78,0.2441341534853134],[125,168,79,0.24207081494493385],[125,169,64,0.2697391199673996],[125,169,65,0.27029939166092853],[125,169,66,0.2708422725846319],[125,169,67,0.269114361483215],[125,169,68,0.26657236047139876],[125,169,69,0.2638939510448074],[125,169,70,0.26111433835326553],[125,169,71,0.25827140575915214],[125,169,72,0.25540349464586415],[125,169,73,0.25254743724753215],[125,169,74,0.2497368505769765],[125,169,75,0.24700069907592137],[125,169,76,0.24436213315415084],[125,169,77,0.24183761032652593],[125,169,78,0.23943630520271786],[125,169,79,0.23715981413853976],[125,170,64,0.2673981948775498],[125,170,65,0.2678087989905843],[125,170,66,0.2682055926143193],[125,170,67,0.26618778647947416],[125,170,68,0.26346611228110717],[125,170,69,0.260603136581592],[125,170,70,0.2576339208765821],[125,170,71,0.25459638686114067],[125,170,72,0.25152907664066393],[125,170,73,0.248469166264327],[125,170,74,0.2454507406664653],[125,170,75,0.24250333765074547],[125,170,76,0.23965076809682337],[125,170,77,0.236910219113342],[125,170,78,0.23429164640869446],[125,170,79,0.23179746170635884],[125,171,64,0.2648201738206027],[125,171,65,0.2650880645675534],[125,171,66,0.26534615690875657],[125,171,67,0.2628451363794236],[125,171,68,0.25994297634580554],[125,171,69,0.2568940282869043],[125,171,70,0.2537334333627909],[125,171,71,0.2504993174372788],[125,171,72,0.24723054200766337],[125,171,73,0.24396470787550847],[125,171,74,0.24073641961671588],[125,171,75,0.23757581846250603],[125,171,76,0.23450739075153557],[125,171,77,0.23154905866105593],[125,171,78,0.228711559475843],[125,171,79,0.225998119211967],[125,172,64,0.2620260568870051],[125,172,65,0.2621584924847043],[125,172,66,0.26197747322298437],[125,172,67,0.25907788870921244],[125,172,68,0.2559951428653415],[125,172,69,0.2527597435448006],[125,172,70,0.24940718416651006],[125,172,71,0.24597599811663412],[125,172,72,0.24250551076500632],[125,172,73,0.23903384289234036],[125,172,74,0.23559617352618628],[125,172,75,0.2322232697422249],[125,172,76,0.22894029054119555],[125,172,77,0.22576587146430607],[125,172,78,0.22271149616545666],[125,172,79,0.21978116072130213],[125,173,64,0.25904430637339876],[125,173,65,0.25904869982389056],[125,173,66,0.2579442924681046],[125,173,67,0.2548717647760752],[125,173,68,0.2516094335970169],[125,173,69,0.24818851158331404],[125,173,70,0.244645162477859],[125,173,71,0.24101856366098146],[125,173,72,0.23734866945278768],[125,173,73,0.2336742239336424],[125,173,74,0.23003103119117854],[125,173,75,0.22645049046707075],[125,173,76,0.2229584032366027],[125,173,77,0.21957405881257977],[125,173,78,0.21630960462634605],[125,173,79,0.21316970690685713],[125,174,64,0.25591355926830894],[125,174,65,0.2557973122774732],[125,174,66,0.25344688173809493],[125,174,67,0.2502040665582866],[125,174,68,0.24676469446908755],[125,174,69,0.24316113677198956],[125,174,70,0.23943058632700376],[125,174,71,0.23561312846458368],[125,174,72,0.2317495254145608],[125,174,73,0.22787924803989362],[125,174,74,0.2240387626697991],[125,174,75,0.22026008039844866],[125,174,76,0.21656957578193703],[125,174,77,0.21298708143136136],[125,174,78,0.2095252645675471],[125,174,79,0.20618929117738566],[125,175,64,0.252673767032512],[125,175,65,0.2516194003489831],[125,175,66,0.24846121815094538],[125,175,67,0.24505205341398067],[125,175,68,0.24143983677592276],[125,175,69,0.2376585866336415],[125,175,70,0.23374690805876341],[125,175,71,0.22974607157405388],[125,175,72,0.22569782830626273],[125,175,73,0.2216424701166809],[125,175,74,0.21761714237021132],[125,175,75,0.2136544165823544],[125,175,76,0.2097811297570238],[125,175,77,0.20601749680023385],[125,175,78,0.20237650196927423],[125,175,79,0.1988635748981599],[125,176,64,0.24931066566460655],[125,176,65,0.24631560004201772],[125,176,66,0.24300262555730373],[125,176,67,0.23943161069999697],[125,176,68,0.23565132199444674],[125,176,69,0.23169788646697298],[125,176,70,0.22761167871265234],[125,176,71,0.22343540781900828],[125,176,72,0.21921197351380636],[125,176,73,0.2149825647405848],[125,176,74,0.21078500816665707],[125,176,75,0.20665237371426098],[125,176,76,0.2026118437865042],[125,176,77,0.1986838524393557],[125,176,78,0.19488150033297907],[125,176,79,0.19121025088424615],[125,177,64,0.24370533913487769],[125,177,65,0.24056538034195063],[125,177,66,0.23710252832124654],[125,177,67,0.23337476006230704],[125,177,68,0.22943175726571866],[125,177,69,0.2253121702155334],[125,177,70,0.22105845751926415],[125,177,71,0.21671498261214106],[125,177,72,0.2123259218829469],[125,177,73,0.207933412303042],[125,177,74,0.20357594588192926],[125,177,75,0.19928701786660036],[125,177,76,0.19509403519098453],[125,177,77,0.1910174912696425],[125,177,78,0.18707041282013626],[125,177,79,0.18325808399525667],[125,178,64,0.23768485874026005],[125,178,65,0.23440496304876113],[125,178,66,0.2307978932354472],[125,178,67,0.22691930226531298],[125,178,68,0.22281983621367776],[125,178,69,0.21854102995020325],[125,178,70,0.2141276918257718],[125,178,71,0.20962601231248065],[125,178,72,0.20508153553065148],[125,178,73,0.20053736687348048],[125,178,74,0.19603262384426356],[125,178,75,0.1916011368237068],[125,178,76,0.18727040608284876],[125,178,77,0.18306082095401627],[125,178,78,0.17898514667170093],[125,178,79,0.17504828400117212],[125,179,64,0.23128931055425273],[125,179,65,0.2278751968122957],[125,179,66,0.22413043514578593],[125,179,67,0.2201079537589405],[125,179,68,0.2158593868394687],[125,179,69,0.2114294552376736],[125,179,70,0.20686552833223007],[125,179,71,0.2022157484284726],[125,179,72,0.19752707725433477],[125,179,73,0.19284357460083706],[125,179,74,0.18820491598608483],[125,179,75,0.1836451558338568],[125,179,76,0.17919174226567686],[125,179,77,0.17486478921220358],[125,179,78,0.17067661115940652],[125,179,79,0.166631525461141],[125,180,64,0.22456251959344176],[125,180,65,0.22102073185928683],[125,180,66,0.21714574444818666],[125,180,67,0.21298741018327905],[125,180,68,0.20859835333253735],[125,180,69,0.2040267157463073],[125,180,70,0.19932257952527038],[125,180,71,0.19453611178788371],[125,180,72,0.18971569753918263],[125,180,73,0.18490630015176937],[125,180,74,0.18014805607504975],[125,180,75,0.1754751100112615],[125,180,76,0.17091469641540274],[125,180,77,0.16648647279409887],[125,180,78,0.16220210989928827],[125,180,79,0.15806514354000525],[125,181,64,0.21755117364218082],[125,181,65,0.21388911223335522],[125,181,66,0.209892335466208],[125,181,67,0.20560733586223556],[125,181,68,0.20108771090341201],[125,181,69,0.19638518626208562],[125,181,70,0.1915526445667515],[125,181,71,0.18664229603569055],[125,181,72,0.1817039086477922],[125,181,73,0.1767832608122932],[125,181,74,0.17192082286525281],[125,181,75,0.16715067335428732],[125,181,76,0.16249965570326785],[125,181,77,0.15798678047857925],[125,181,78,0.1536228781115497],[125,181,79,0.14941050657135907],[125,182,64,0.21030386204127308],[125,182,65,0.20652978444038453],[125,182,66,0.20242061463790975],[125,182,67,0.1980192782603352],[125,182,68,0.19338031266884914],[125,182,69,0.1885591132167546],[125,182,70,0.18361138382854933],[125,182,71,0.17859133975945543],[125,182,72,0.17355004521984752],[125,182,73,0.16853396782839325],[125,182,74,0.16358375591064364],[125,182,75,0.15873324430550292],[125,182,76,0.15400869398465275],[125,182,77,0.14942827043272383],[125,182,78,0.1450017653821135],[125,182,79,0.14073056614930082],[125,183,64,0.20287002822323197],[125,183,65,0.19899302130699986],[125,183,66,0.19478176735823113],[125,183,67,0.19027550629747042],[125,183,68,0.18552966754416733],[125,183,69,0.18060332175859245],[125,183,70,0.1755549461978825],[125,183,71,0.17044066648050205],[125,183,72,0.16531271075447665],[125,183,73,0.16021807451262685],[125,183,74,0.15519740174085467],[125,183,75,0.15028408774391191],[125,183,76,0.1455036086489096],[125,183,77,0.140873082243152],[125,183,78,0.1364010644628945],[125,183,79,0.13208758551666197],[125,184,64,0.19919785366779658],[125,184,65,0.1943680888771245],[125,184,66,0.18930107840740212],[125,184,67,0.1840268533947501],[125,184,68,0.1785964032307062],[125,184,69,0.17306733921643186],[125,184,70,0.16749593668851165],[125,184,71,0.1622465916895963],[125,184,72,0.15704920929547886],[125,184,73,0.15189373059892794],[125,184,74,0.14682059006281215],[125,184,75,0.1418625332709438],[125,184,76,0.1370440422043711],[125,184,77,0.13238098391761519],[125,184,78,0.1278804866409055],[125,184,79,0.12354104701629023],[125,185,64,0.20107749943590747],[125,185,65,0.1961423040913087],[125,185,66,0.1909725875267794],[125,185,67,0.18559457965013235],[125,185,68,0.18005987062646386],[125,185,69,0.1744293581815153],[125,185,70,0.16876163781790077],[125,185,71,0.163111333386272],[125,185,72,0.15752779561537517],[125,185,73,0.15205399862994973],[125,185,74,0.14672563943784184],[125,185,75,0.1415704450535206],[125,185,76,0.13660769160903732],[125,185,77,0.13184793948845203],[125,185,78,0.12729298821182494],[125,185,79,0.12293605449199546],[125,186,64,0.20291920614978232],[125,186,65,0.19787891189664703],[125,186,66,0.19260823544130587],[125,186,67,0.18712978527522955],[125,186,68,0.18149568525490328],[125,186,69,0.17576989948027658],[125,186,70,0.170013111184616],[125,186,71,0.16428111522093408],[125,186,72,0.15862365196631173],[125,186,73,0.15308343192922053],[125,186,74,0.14769535567644393],[125,186,75,0.14248593339599808],[125,186,76,0.1374729081108843],[125,186,77,0.1326650862585562],[125,186,78,0.12806237905653248],[125,186,79,0.12365605778742401],[125,187,64,0.20475180366158358],[125,187,65,0.1996072155238561],[125,187,66,0.1942377639551276],[125,187,67,0.18866270553633482],[125,187,68,0.18293462438256786],[125,187,69,0.1771202617469109],[125,187,70,0.17128210166279909],[125,187,71,0.16547683291595594],[125,187,72,0.15975432107528484],[125,187,73,0.1541567637523973],[125,187,74,0.14871803333943273],[125,187,75,0.1434632111887319],[125,187,76,0.13840831691109082],[125,187,77,0.1335602361845906],[125,187,78,0.12891685018720966],[125,187,79,0.12446736949515423],[125,188,64,0.20659862049259384],[125,188,65,0.2013508984674452],[125,188,66,0.19588514541088314],[125,188,67,0.19021761537428544],[125,188,68,0.18440127583116853],[125,188,69,0.17850529772017354],[125,188,70,0.17259363469744768],[125,188,71,0.16672356183769627],[125,188,72,0.16094478674095608],[125,188,73,0.1552987363033509],[125,188,74,0.14981802303697397],[125,188,75,0.14452609455204707],[125,188,76,0.13943706954236645],[125,188,77,0.13455576334553204],[125,188,78,0.12987790588631945],[125,188,79,0.12539055455617695],[125,189,64,0.20847591125745976],[125,189,65,0.20312643307652042],[125,189,66,0.1975669763056083],[125,189,67,0.1918112073454932],[125,189,68,0.18591240030926565],[125,189,69,0.17994176525975988],[125,189,70,0.1739643636547296],[125,189,71,0.1680377304741605],[125,189,72,0.16221112361839993],[125,189,73,0.1565249414161624],[125,189,74,0.1510103117698649],[125,189,75,0.14568885620764496],[125,189,76,0.14057263185379526],[125,189,77,0.13566425407486807],[125,189,78,0.130957202311022],[125,189,79,0.12643631136254377],[125,190,64,0.2103911880612435],[125,190,65,0.2049413948299412],[125,190,66,0.1992907804069383],[125,190,67,0.1934508847341278],[125,190,68,0.187475216637323],[125,190,69,0.18143661150356433],[125,190,70,0.17540086341411182],[125,190,71,0.16942543662448467],[125,190,72,0.1635588509057532],[125,190,73,0.15784022755203955],[125,190,74,0.15229899923470228],[125,190,75,0.14695478663914147],[125,190,76,0.1418174445767142],[125,190,77,0.13688728002445621],[125,190,78,0.13215544431272722],[125,190,79,0.1276045014566403],[125,191,64,0.2123414539496295],[125,191,65,0.20679268041380539],[125,191,66,0.20105321954961847],[125,191,67,0.19513296809567413],[125,191,68,0.1890856082262169],[125,191,69,0.18298518865132518],[125,191,70,0.17689786884238648],[125,191,71,0.1708807247948704],[125,191,72,0.16498126668500102],[125,191,73,0.15923710995588272],[125,191,74,0.15367580268052322],[125,191,75,0.14831481181776163],[125,191,76,0.14316167074733352],[125,191,77,0.13821429024469523],[125,191,78,0.13346143483825665],[125,191,79,0.1288833662822878],[125,192,64,0.214311336412693],[125,192,65,0.20866462764090157],[125,192,66,0.20283821021732895],[125,192,67,0.19684081342178977],[125,192,68,0.19072624910512498],[125,192,69,0.18456939980383827],[125,192,70,0.17843645674301006],[125,192,71,0.17238382359103585],[125,192,72,0.1664577619355153],[125,192,73,0.16069418324946694],[125,192,74,0.15511858987862082],[125,192,75,0.1497461673615794],[125,192,76,0.14458203017792998],[125,192,77,0.1396216228073097],[125,192,78,0.13485127777843842],[125,192,79,0.13024893219195752],[125,193,64,0.21627111886667175],[125,193,65,0.21052703517739138],[125,193,66,0.20461494394377838],[125,193,67,0.19854284005011635],[125,193,68,0.1923646477347151],[125,193,69,0.18615577323496654],[125,193,70,0.17998216983215226],[125,193,71,0.17389934186706302],[125,193,72,0.16795211322242826],[125,193,73,0.16217453573695487],[125,193,74,0.15658993978263472],[125,193,75,0.15121112902979336],[125,193,76,0.14604072121995473],[125,193,77,0.1410716365673238],[125,193,78,0.13628773521890117],[125,193,79,0.13166460502156466],[125,194,64,0.21817466796709184],[125,194,65,0.2123330799724403],[125,194,66,0.2063358095008288],[125,194,67,0.20019046638131746],[125,194,68,0.1939511067865479],[125,194,69,0.1876934634268303],[125,194,70,0.18148308125614257],[125,194,71,0.17537442236590378],[125,194,72,0.16941075305127434],[125,194,73,0.16362416470345065],[125,194,74,0.15803573047809405],[125,194,75,0.15265579949380426],[125,194,76,0.14748443012163925],[125,194,77,0.14251196373937305],[125,194,78,0.13771974014578003],[125,194,79,0.13308095566122632],[125,195,64,0.2199579273218632],[125,195,65,0.2140178273782944],[125,195,66,0.2079349342758721],[125,195,67,0.20171669245821575],[125,195,68,0.1954173574223461],[125,195,69,0.18911295165153513],[125,195,70,0.18286857896321218],[125,195,71,0.17673762906384646],[125,195,72,0.17076178000759665],[125,195,73,0.16497112888750953],[125,195,74,0.1593844524439196],[125,195,75,0.1540095990885292],[125,195,76,0.14884401366034183],[125,195,77,0.14387539605339095],[125,195,78,0.13908249468931755],[125,195,79,0.13443603565065418],[125,196,64,0.22157286235826784],[125,196,65,0.21553337139399503],[125,196,66,0.20936442522233906],[125,196,67,0.20307341064582457],[125,196,68,0.19671484035198017],[125,196,69,0.19036504777767677],[125,196,70,0.18408871596181903],[125,196,71,0.17793817937997386],[125,196,72,0.1719535390061992],[125,196,73,0.16616290049973556],[125,196,74,0.16058273695038466],[125,196,75,0.1552183774394503],[125,196,76,0.15006462250057004],[125,196,77,0.14510648739878287],[125,196,78,0.14032007398997776],[125,196,79,0.13567357177669803],[125,197,64,0.22301499856134122],[125,197,65,0.21687683216633902],[125,197,66,0.210622733372469],[125,197,67,0.204260109440549],[125,197,68,0.19784369159758372],[125,197,69,0.19145001121021302],[125,197,70,0.1851432479035549],[125,197,71,0.17897462620903012],[125,197,72,0.1729826386654198],[125,197,73,0.1671933872978454],[125,197,74,0.16162104467304506],[125,197,75,0.15626843556094036],[125,197,76,0.15112774006904164],[125,197,77,0.14618131895979564],[125,197,78,0.14140266171480131],[125,197,79,0.13675745777396187],[125,198,64,0.22428424122364762],[125,198,65,0.2180494692538336],[125,198,66,0.2117121821633307],[125,198,67,0.205279872233913],[125,198,68,0.19880736470357233],[125,198,69,0.1923711478228883],[125,198,70,0.18603471790694498],[125,198,71,0.17984806822641722],[125,198,72,0.17384801370870107],[125,198,73,0.16805862951823483],[125,198,74,0.162491804495317],[125,198,75,0.15714791027240088],[125,198,76,0.15201658673197374],[125,198,77,0.14707764432269435],[125,198,78,0.14230208361368207],[125,198,79,0.1376532323407427],[125,199,64,0.225381182377605],[125,199,65,0.2190528873283102],[125,199,66,0.21263509966491503],[125,199,67,0.2061354556338443],[125,199,68,0.199608681884752],[125,199,69,0.19313087740961746],[125,199,70,0.18676459681516674],[125,199,71,0.18055842874157468],[125,199,72,0.17454741403019086],[125,199,73,0.16875357342471659],[125,199,74,0.16318654558330262],[125,199,75,0.1578443360264489],[125,199,76,0.15271417749887956],[125,199,77,0.14777350208466983],[125,199,78,0.14299102528706825],[125,199,79,0.13832794216752306],[125,200,64,0.2263071168254276],[125,200,65,0.21988910075244633],[125,200,66,0.21339394997827218],[125,200,67,0.2068295047528078],[125,200,68,0.20025014917208794],[125,200,69,0.19373116366980653],[125,200,70,0.18733384148668625],[125,200,71,0.18110515379780198],[125,200,72,0.1750782517981994],[125,200,73,0.1692730740467792],[125,200,74,0.1636970596619529],[125,200,75,0.158345967817492],[125,200,76,0.15320480384813862],[125,200,77,0.14824885214385897],[125,200,78,0.14344481589229258],[125,200,79,0.13875206362073672],[125,201,64,0.2270640534295751],[125,201,65,0.22056059701911954],[125,201,66,0.21399146842195357],[125,201,67,0.2073647789326655],[125,201,68,0.20073429048928054],[125,201,69,0.19417397337097483],[125,201,70,0.18774349412084929],[125,201,71,0.1814879645966131],[125,201,72,0.1754385173936519],[125,201,73,0.1696129822476093],[125,201,74,0.16401666384404584],[125,201,75,0.15864322132502343],[125,201,76,0.153475649651284],[125,201,77,0.14848736285593964],[125,201,78,0.1436433791144321],[125,201,79,0.13890160745564034],[125,202,64,0.2276547216131518],[125,202,65,0.22107039907582632],[125,202,66,0.2144308006272775],[125,202,67,0.20774438815081245],[125,202,68,0.20106400105507272],[125,202,69,0.19446176525733336],[125,202,70,0.18799532338050637],[125,202,71,0.1817076652176577],[125,202,72,0.1756277653746636],[125,202,73,0.16977131753964128],[125,202,74,0.16414156565828927],[125,202,75,0.15873023216391335],[125,202,76,0.1535185432873072],[125,202,77,0.1484783513566737],[125,202,78,0.14357335389454212],[125,202,79,0.13876040922674995],[125,203,64,0.228082573014594],[125,203,65,0.2214221265556997],[125,203,66,0.21471564566551957],[125,203,67,0.20797204036016845],[125,203,68,0.20124292052092468],[125,203,69,0.1945980092954184],[125,203,70,0.1880925081047899],[125,203,71,0.18176700664560583],[125,203,72,0.17564817170853278],[125,203,73,0.1697495281256533],[125,203,74,0.16407233199331933],[125,203,75,0.15860653619450418],[125,203,76,0.15333184812861103],[125,203,77,0.1482188794494178],[125,203,78,0.14323038751639103],[125,203,79,0.13832260818047368],[125,204,64,0.22835177823541478],[125,204,65,0.22162005593426973],[125,204,66,0.21485040333168268],[125,204,67,0.20805230002220387],[125,204,68,0.2012758262664638],[125,204,69,0.1945877368678274],[125,204,70,0.18804036443312888],[125,204,71,0.18167160815202782],[125,204,72,0.1755056635582256],[125,204,73,0.1695538396986625],[125,204,74,0.16381546373914255],[125,204,75,0.15827887291956558],[125,204,76,0.15292249366369076],[125,204,77,0.14771600754883402],[125,204,78,0.14262160375324273],[125,204,79,0.13759531752242993],[125,205,64,0.22846721861392325],[125,205,65,0.22166917962813076],[125,205,66,0.21484032571007614],[125,205,67,0.20799085809730264],[125,205,68,0.20116904728585638],[125,205,69,0.19443812254336568],[125,205,70,0.18784711718614816],[125,205,71,0.18143093711276823],[125,205,72,0.17521112295125907],[125,205,73,0.16919669458332373],[125,205,74,0.1633850779657465],[125,205,75,0.15776311406201474],[125,205,76,0.15230814959691943],[125,205,77,0.14698920925539627],[125,205,78,0.14176824886713177],[125,205,79,0.13660148904974675],[125,206,64,0.22843447295236624],[125,206,65,0.22157526404879596],[125,206,66,0.21469167314719662],[125,206,67,0.20779481376106085],[125,206,68,0.2009308991075046],[125,206,69,0.19415909806697457],[125,206,70,0.18752471637063056],[125,206,71,0.18105934836987958],[125,206,72,0.17478166569487347],[125,206,73,0.16869828284520585],[125,206,74,0.16280469953007487],[125,206,75,0.1570863194765106],[125,206,76,0.15151954533256362],[125,206,77,0.14607294920927916],[125,206,78,0.1407085183338409],[125,206,79,0.13538297522561937],[125,207,64,0.22826189472016742],[125,207,65,0.221347394817095],[125,207,66,0.21441457785357257],[125,207,67,0.207475687722074],[125,207,68,0.20057466620196196],[125,207,69,0.19376611805234986],[125,207,70,0.1870912017670313],[125,207,71,0.18057787071971107],[125,207,72,0.17424168550522104],[125,207,73,0.1680866972199249],[125,207,74,0.16210640139519616],[125,207,75,0.15628476220849993],[125,207,76,0.15059730651416917],[125,207,77,0.1450122871619876],[125,207,78,0.13949191500920158],[125,207,79,0.13330743366952277],[125,208,64,0.22796615792244027],[125,208,65,0.22100440451348816],[125,208,66,0.21402978393362293],[125,208,67,0.20705584121159887],[125,208,68,0.20012403159848086],[125,208,69,0.19328392322820595],[125,208,70,0.18657213839978753],[125,208,71,0.18001269034968626],[125,208,72,0.1736178171364913],[125,208,73,0.16738887975275413],[125,208,74,0.16131732407125512],[125,208,75,0.15538570615393435],[125,208,76,0.14956878037945853],[125,208,77,0.14383464978144347],[125,208,78,0.13814597793661781],[125,208,79,0.12946739470738447],[125,209,64,0.22756465166023293],[125,209,65,0.2205654977125802],[125,209,66,0.21355794633898867],[125,209,67,0.20655694994315887],[125,209,68,0.19960126226348493],[125,209,69,0.19273498838457737],[125,209,70,0.18598987456108357],[125,209,71,0.1793857459578439],[125,209,72,0.1729313598582287],[125,209,73,0.1666253155409953],[125,209,74,0.16045702032199352],[125,209,75,0.1544077111894171],[125,209,76,0.14845153140034267],[125,209,77,0.142556661353383],[125,209,78,0.1349473037374515],[125,209,79,0.1255594949176972],[125,210,64,0.22707325188911326],[125,210,65,0.2200476141905873],[125,210,66,0.21301675520018065],[125,210,67,0.20599707931072886],[125,210,68,0.19902443538511563],[125,210,69,0.19213710196472075],[125,210,70,0.18536167211113666],[125,210,71,0.1787135962394617],[125,210,72,0.17219805229025106],[125,210,73,0.1658108640932217],[125,210,74,0.15953946730340973],[125,210,75,0.15336392223552586],[125,210,76,0.14725797287372816],[125,210,77,0.1402436385786913],[125,210,78,0.1309854463689895],[125,210,79,0.12158937047989514],[125,211,64,0.22650639519219212],[125,211,65,0.21946558640073008],[125,211,66,0.21242118093068216],[125,211,67,0.20539102108499033],[125,211,68,0.19840786906762514],[125,211,69,0.1915038905677747],[125,211,70,0.184700322169812],[125,211,71,0.17800812194980545],[125,211,72,0.1714288540846335],[125,211,73,0.16495561223699437],[125,211,74,0.15857398097712697],[125,211,75,0.15226303446096004],[125,211,76,0.14534314450387717],[125,211,77,0.13622295378370428],[125,211,78,0.12695032015721427],[125,211,79,0.11756566750241443],[125,212,64,0.22587714449792082],[125,212,65,0.2188322888305879],[125,212,66,0.21178371004543134],[125,212,67,0.20475061870869576],[125,212,68,0.19776253852950185],[125,212,69,0.1908453247160759],[125,212,70,0.18401473658249587],[125,212,71,0.17727719694757613],[125,212,72,0.1706306884908797],[125,212,73,0.16406567855379003],[125,212,74,0.15756607152319524],[125,212,75,0.15025323945332625],[125,212,76,0.14126728046889495],[125,212,77,0.1321219354332239],[125,212,78,0.12285320244539293],[125,212,79,0.11349908290904274],[125,213,64,0.2251972466802499],[125,213,65,0.21815877922651306],[125,213,66,0.21111457170932413],[125,213,67,0.20408508122349822],[125,213,68,0.19709647783994946],[125,213,69,0.19016820590665015],[125,213,70,0.183310515145441],[125,213,71,0.1765253281499721],[125,213,72,0.16980714566113259],[125,213,73,0.16314396910511333],[125,213,74,0.15500113424694045],[125,213,75,0.14613411266349582],[125,213,76,0.13710793028783602],[125,213,77,0.1279542658873679],[125,213,78,0.11870707171134137],[125,213,79,0.10940153075414331],[125,214,64,0.22447718197470962],[125,214,65,0.21745443166544054],[125,214,66,0.21042195502497285],[125,214,67,0.20340128585174397],[125,214,68,0.19641516721630028],[125,214,69,0.18947663495036376],[125,214,70,0.1825904885549533],[125,214,71,0.17575426430389804],[125,214,72,0.16822795360079024],[125,214,73,0.15963159171740743],[125,214,74,0.15085813028138845],[125,214,75,0.1419319818929562],[125,214,76,0.13288090015333054],[125,214,77,0.1237350141176461],[125,214,78,0.11452586342336182],[125,214,79,0.10528543511168903],[125,215,64,0.2237262051404389],[125,215,65,0.21672706144978696],[125,215,66,0.20971221706228335],[125,215,67,0.20270406924728387],[125,215,68,0.19572190589198718],[125,215,69,0.18877246158499125],[125,215,70,0.18112521464153536],[125,215,71,0.17275408515439497],[125,215,72,0.16420341052531728],[125,215,73,0.1554902229302539],[125,215,74,0.1466357374873366],[125,215,75,0.13766442345253976],[125,215,76,0.1286030868621033],[125,215,77,0.11947996576956108],[125,215,78,0.1103238391843686],[125,215,79,0.1011631507714442],[125,216,64,0.22295237829432646],[125,216,65,0.21598304179563227],[125,216,66,0.2089900816244395],[125,216,67,0.2019708682979862],[125,216,68,0.19393074196085983],[125,216,69,0.185715975850772],[125,216,70,0.1773306912641485],[125,216,71,0.16878489566302998],[125,216,72,0.16009352649732003],[125,216,73,0.151275515900855],[125,216,74,0.14235287761948323],[125,216,75,0.13334981748834096],[125,216,76,0.12429186872797056],[125,216,77,0.1152050532753876],[125,216,78,0.1061150703090142],[125,216,79,0.09704651306338652],[125,217,64,0.22216259534012242],[125,217,65,0.21488954176657285],[125,217,66,0.20689378524773883],[125,217,67,0.19875927305851604],[125,217,68,0.1904705364878499],[125,217,69,0.18203065023382173],[125,217,70,0.17344872752290194],[125,217,71,0.16473862001736764],[125,217,72,0.1559179641943972],[125,217,73,0.1470072619869633],[125,217,74,0.13802899716150374],[125,217,75,0.12900678884775932],[125,217,76,0.11996458357052185],[125,217,77,0.11092588706207535],[125,217,78,0.10191303706040863],[125,217,79,0.0929465182197887],[125,218,64,0.22029905390745777],[125,218,65,0.21212183660632078],[125,218,66,0.203848907612535],[125,218,67,0.19545325110743858],[125,218,68,0.1869229528067916],[125,218,69,0.1782667483406836],[125,218,70,0.1694983522346544],[125,218,71,0.1606350787015128],[125,218,72,0.15169689320731922],[125,218,73,0.14270551184511737],[125,218,74,0.13368355010182167],[125,218,75,0.12465372252539092],[125,218,76,0.11563809471561218],[125,218,77,0.10665738897341571],[125,218,78,0.09773034485343578],[125,218,79,0.0888731357706129],[125,219,64,0.2177309685195133],[125,219,65,0.20926381946895128],[125,219,66,0.2007184322519302],[125,219,67,0.19206840394657482],[125,219,68,0.18330523245636662],[125,219,69,0.17444284549060465],[125,219,70,0.16549910525941147],[125,219,71,0.1564943601012371],[125,219,72,0.14745050362693465],[125,219,73,0.13839009520586343],[125,219,74,0.12933554348204945],[125,219,75,0.12030835451159763],[125,219,76,0.11132844601074889],[125,219,77,0.10241352909831763],[125,219,78,0.0935785588097404],[125,219,79,0.08483525455086999],[125,220,64,0.2150802645879508],[125,220,65,0.206328331222641],[125,220,66,0.19751712163530755],[125,220,67,0.1886211789264641],[125,220,68,0.1796352347194109],[125,220,69,0.17057787863906507],[125,220,70,0.16147061971539128],[125,220,71,0.1523363795556324],[125,220,72,0.143198561170624],[125,220,73,0.13408019250148545],[125,220,74,0.12500314642831328],[125,220,75,0.11598743892746113],[125,220,76,0.10705060692457265],[125,220,77,0.09820716726799344],[125,220,78,0.08946815812479676],[125,220,79,0.08084076397777964],[125,221,64,0.21235886665942283],[125,221,65,0.20332927900156744],[125,221,66,0.19426059419601371],[125,221,67,0.1851286249257282],[125,221,68,0.1759311292901732],[125,221,69,0.16669078851650454],[125,221,70,0.15743222965770837],[125,221,71,0.14818047138909168],[125,221,72,0.13896000430525304],[125,221,73,0.1297939589479685],[125,221,74,0.120703363430246],[125,221,75,0.11170649238910543],[125,221,76,0.1028183088631389],[125,221,77,0.09405000055207746],[125,221,78,0.0854086117778476],[125,221,79,0.07689677232852435],[125,222,64,0.2095799426122634],[125,222,65,0.20028154894666247],[125,222,66,0.19096516073593384],[125,222,67,0.18160815975290773],[125,222,68,0.1722111039458113],[125,222,69,0.16280018139870744],[125,222,70,0.15340260348589818],[125,222,71,0.14404501429574104],[125,222,72,0.13475258386791655],[125,222,73,0.12554820173203135],[125,222,74,0.11645177268580421],[125,222,75,0.1074796166014244],[125,222,76,0.09864397389583313],[125,222,77,0.08995261814623248],[125,222,78,0.08140857717976771],[125,222,79,0.07300996381471814],[125,223,64,0.20675791099268745],[125,223,65,0.19720092759927704],[125,223,66,0.18764767049919784],[125,223,67,0.17807734937063566],[125,223,68,0.16849308736641055],[125,223,69,0.158924010719452],[125,223,70,0.1493994033801792],[125,223,71,0.1399470904883412],[125,223,72,0.13059254573032725],[125,223,73,0.12135811100267208],[125,223,74,0.11226233038197615],[125,223,75,0.10331940023570059],[125,223,76,0.09453873713991727],[125,223,77,0.08592466510088431],[125,223,78,0.07747622341112294],[125,223,79,0.06918709630631091],[125,224,64,0.2039084574088546],[125,224,65,0.19410403202309093],[125,224,66,0.18432536700146931],[125,224,67,0.17455369905955836],[125,224,68,0.16479448727151555],[125,224,69,0.15507927876566263],[125,224,70,0.1454389711014085],[125,224,71,0.13590217906353283],[125,224,72,0.12649435709658255],[125,224,73,0.11723704541364342],[125,224,74,0.10814724183058472],[125,224,75,0.09923690119588527],[125,224,76,0.09051256410315518],[125,224,77,0.08197511639036102],[125,224,78,0.07361968075059952],[125,224,79,0.06543564160297106],[125,225,64,0.2010485600688955],[125,225,65,0.1910082487346554],[125,225,66,0.18101575371282042],[125,225,67,0.17105445665743413],[125,225,68,0.1611319440655206],[125,225,69,0.151281758725516],[125,225,70,0.14153604052507732],[125,225,71,0.1319238840749539],[125,225,72,0.12247047706687521],[125,225,73,0.11319637300816784],[125,225,74,0.10411690042408962],[125,225,75,0.09524171042360954],[125,225,76,0.08657446432763918],[125,225,77,0.07811266286261208],[125,225,78,0.06984761823103841],[125,225,79,0.061764570183270175],[125,226,64,0.19819652454628256],[125,226,65,0.1879316815275601],[125,226,66,0.17773646970380913],[125,226,67,0.16759642802730282],[125,226,68,0.15752110020923182],[125,226,69,0.14754573739076643],[125,226,70,0.1377034773153722],[125,226,71,0.1280236978450958],[125,226,72,0.11853117214139501],[125,226,73,0.10924536827973046],[125,226,74,0.10017989541819433],[125,226,75,0.09134209843175714],[125,226,76,0.08273280271412767],[125,226,77,0.07434621064094386],[125,226,78,0.06616995098542573],[125,226,79,0.05818528237989591],[125,227,64,0.19537544232459525],[125,227,65,0.18489725512441035],[125,227,66,0.1745100171213694],[125,227,67,0.16420132741856486],[125,227,68,0.15398255719723206],[125,227,69,0.14389051999230904],[125,227,70,0.13395923398626097],[125,227,71,0.12421827458761454],[125,227,72,0.11469194799427307],[125,227,73,0.1053986185793634],[125,227,74,0.09635019223783255],[125,227,75,0.08755175761075931],[125,227,76,0.07900138688275277],[125,227,77,0.07069009762820373],[125,227,78,0.06260197696907013],[125,227,79,0.054714469099594966],[125,228,64,0.19262426919466127],[125,228,65,0.1819466778636091],[125,228,66,0.17138046536305973],[125,228,67,0.16091517701989894],[125,228,68,0.15056385469219954],[125,228,69,0.140364679598367],[125,228,70,0.13035238687507564],[125,228,71,0.12055662400482944],[125,228,72,0.11100114691974086],[125,228,73,0.10170317819725642],[125,228,74,0.09267292948655435],[125,228,75,0.08391329007203764],[125,228,76,0.0754196832482486],[125,228,77,0.06718009195106071],[125,228,78,0.05917525486786965],[125,228,79,0.051379034034025675],[125,229,64,0.18998094947249045],[125,229,65,0.17912108067680105],[125,229,66,0.16839172725574109],[125,229,67,0.15778427517510737],[125,229,68,0.1473132421574305],[125,229,69,0.13701789599038036],[125,229,70,0.1269334455884186],[125,229,71,0.11708941653874813],[125,229,72,0.10750887661833339],[125,229,73,0.09820783004799455],[125,229,74,0.08919478259920936],[125,229,75,0.08047047942815082],[125,229,76,0.07202781727110193],[125,229,77,0.06385193239826412],[125,229,78,0.055920465493895434],[125,229,79,0.0482040044091068],[125,230,64,0.1874764529233037],[125,230,65,0.1764539149381091],[125,230,66,0.16557938355581153],[125,230,67,0.15484598160164037],[125,230,68,0.14426948441702103],[125,230,69,0.13388991034325973],[125,230,70,0.12374264799152221],[125,230,71,0.11385686356830932],[125,230,72,0.10425476484805625],[125,230,73,0.09495103850536714],[125,230,74,0.08595246287155284],[125,230,75,0.07725769793303033],[125,230,76,0.06885725414329263],[125,230,77,0.06073364137810708],[125,230,78,0.052861699130274026],[125,230,79,0.04520910881511071],[125,231,64,0.18513504843639458],[125,231,65,0.1739712180046994],[125,231,66,0.16297095183670515],[125,231,67,0.1521290039196986],[125,231,68,0.14146217924087998],[125,231,69,0.1310108837896173],[125,231,70,0.12081036620685286],[125,231,71,0.11088917394794374],[125,231,72,0.10126846641423153],[125,231,73,0.09196150375143217],[125,231,74,0.08297331329805939],[125,231,75,0.07430053541726375],[125,231,76,0.06593145019736042],[125,231,77,0.057846186262531935],[125,231,78,0.05001711270070101],[125,231,79,0.04240941488981978],[125,232,64,0.1829745773277046],[125,232,65,0.17169187990579218],[125,232,66,0.16058615904593151],[125,232,67,0.14965369149023217],[125,232,68,0.13891208720846968],[125,232,69,0.12840177479733464],[125,232,70,0.11815753967301441],[125,232,71,0.1082070476321071],[125,232,72,0.09857021904284184],[125,232,73,0.08925877850637921],[125,232,74,0.08027598185838297],[125,232,75,0.07161652213205111],[125,232,76,0.06326661585692807],[125,232,77,0.05520427082576276],[125,232,78,0.04739973622937193],[125,232,79,0.0398161358363841],[125,233,64,0.18100672466299253],[125,233,65,0.16962790925754878],[125,233,66,0.15843721552284482],[125,233,67,0.14743233408571105],[125,233,68,0.13663147113791613],[125,233,69,0.126074732466322],[125,233,70,0.11579613226801339],[125,233,71,0.10582220338530784],[125,233,72,0.09617144524359965],[125,233,73,0.08685394447320854],[125,233,74,0.07787116994107364],[125,233,75,0.06921594367362266],[125,233,76,0.060872588910199685],[125,233,77,0.05281725628968448],[125,233,78,0.04501842894631746],[125,233,79,0.03743760707369177],[125,234,64,0.1792372888856428],[125,234,65,0.16778469874821295],[125,234,66,0.15652909089119285],[125,234,67,0.14546946588770882],[125,234,68,0.13462444566728793],[125,234,69,0.12403350643927158],[125,234,70,0.11372961431586354],[125,234,71,0.10373794153664814],[125,234,72,0.09407540127632218],[125,234,73,0.08475034977769436],[125,234,74,0.07576245736143011],[125,234,75,0.06710274962770203],[125,234,76,0.05875381993153635],[125,234,77,0.0506902139857908],[125,234,78,0.04287898722828476],[125,234,79,0.03528043538193224],[125,235,64,0.17766645003118514],[125,235,65,0.16616129054006348],[125,235,66,0.154859792245222],[125,235,67,0.14376217531078972],[125,235,68,0.1328873375792186],[125,235,69,0.12227387412289063],[125,235,70,0.11195347029319987],[125,235,71,0.10194974273050918],[125,235,72,0.0922778743208594],[125,235,73,0.08294440866420792],[125,235,74,0.07394720540355045],[125,235,75,0.06527555753970624],[125,235,76,0.05691047163527478],[125,235,77,0.04882511159579566],[125,235,78,0.04098540651128612],[125,235,79,0.033350822846315534],[125,236,64,0.17628903680737706],[125,236,65,0.16475064193557476],[125,236,66,0.15342064505117603],[125,236,67,0.14230042115530345],[125,236,68,0.13140905746104045],[125,236,69,0.12078408591308],[125,236,70,0.110455733043812],[125,236,71,0.10044590360908959],[125,236,72,0.09076792892658168],[125,236,73,0.08142646467454419],[125,236,74,0.07241753927339761],[125,236,75,0.06372875376297996],[125,236,76,0.055339633882397446],[125,236,77,0.04722213485951706],[125,236,78,0.03934129922796887],[125,236,79,0.0316560678101873],[125,237,64,0.1750947588258105],[125,237,65,0.16353985744952035],[125,237,66,0.15219654278850517],[125,237,67,0.1410673210243689],[125,237,68,0.13017144857891985],[125,237,69,0.11954529428244504],[125,237,70,0.10921751037901976],[125,237,71,0.09920817536551256],[125,237,72,0.08952866878275596],[125,237,73,0.08018168349517218],[125,237,74,0.07116137633286687],[125,237,75,0.06245365777858072],[125,237,76,0.054036621194160694],[125,237,77,0.04588111189971224],[125,237,78,0.03795143624787958],[125,237,79,0.030206210674699273],[125,238,64,0.17406121296941424],[125,238,65,0.1625031497598933],[125,238,66,0.15115888622507967],[125,238,67,0.14003209657358304],[125,238,68,0.1291422667671138],[125,238,69,0.11852459561151213],[125,238,70,0.10820611414419332],[125,238,71,0.09820500281827699],[125,238,72,0.0885306056375981],[125,238,73,0.07918356830171883],[125,238,74,0.07015610096882305],[125,238,75,0.06143236607296619],[125,238,76,0.05298899146496172],[125,238,77,0.04479570898537391],[125,238,78,0.03681611842809764],[125,238,79,0.029008576712548115],[125,239,64,0.17313695090631853],[125,239,65,0.16158582489211953],[125,239,66,0.1502503818216384],[125,239,67,0.1391355689076181],[125,239,68,0.12826124861092955],[125,239,69,0.11766154268886439],[125,239,70,0.10736188908095319],[125,239,71,0.09737854657210854],[125,239,72,0.08771876051626827],[125,239,73,0.07838103808447155],[125,239,74,0.06935553336562912],[125,239,75,0.0606245424986883],[125,239,76,0.05216310886990781],[125,239,77,0.04393973827050279],[125,239,78,0.03591722378231031],[125,239,79,0.028053580040868185],[125,240,64,0.17223797594410856],[125,240,65,0.16070383220276677],[125,240,66,0.14938715426991286],[125,240,67,0.13829428229801916],[125,240,68,0.1274456560125086],[125,240,69,0.11687450136937731],[125,240,70,0.10660477464923346],[125,240,71,0.09665086348740952],[125,240,72,0.0870179135410746],[125,240,73,0.07770224969303778],[125,240,74,0.06869189183382345],[125,240,75,0.059967165136846357],[125,240,76,0.05150140461965495],[125,240,77,0.04326175366908218],[125,240,78,0.035210056103880547],[125,240,79,0.02730384125333428],[125,241,64,0.17128900711353606],[125,241,65,0.15978218730598548],[125,241,66,0.14849454983062135],[125,241,67,0.13743393270226886],[125,241,68,0.12662158377279614],[125,241,69,0.11609008774729625],[125,241,70,0.10586210914477566],[125,241,71,0.09595029355700697],[125,241,72,0.08635776087027504],[125,241,73,0.077078678002644],[125,241,74,0.06809891091142606],[125,241,75,0.059396755521814296],[125,241,76,0.05094374712915966],[125,241,77,0.04270554773583897],[125,241,78,0.034642910703029405],[125,241,79,0.026712722026096737],[125,242,64,0.17023215828408317],[125,242,65,0.15876275384692784],[125,242,66,0.14751414378073838],[125,242,67,0.13649573937094792],[125,242,68,0.12572984173604926],[125,242,69,0.11524870815808101],[125,242,70,0.1050739705069399],[125,242,71,0.09521673542413547],[125,242,72,0.08567824572871428],[125,242,73,0.07645060671554849],[125,242,74,0.0675175768200611],[125,242,75,0.05885542204233056],[125,242,76,0.05043383344804025],[125,242,77,0.042216906995388416],[125,242,78,0.034164184879717334],[125,242,79,0.026231757539153234],[125,243,64,0.16902485768972048],[125,243,65,0.15760224634361555],[125,243,66,0.146401843791387],[125,243,67,0.13543466930501866],[125,243,68,0.12472432235162756],[125,243,69,0.11430309153760657],[125,243,70,0.10419189399735801],[125,243,71,0.09440056802953835],[125,243,72,0.08492870021018449],[125,243,73,0.07576650356480447],[125,243,74,0.06689574600526722],[125,243,75,0.058290728177805694],[125,243,76,0.049919309814906554],[125,243,77,0.0417439836377276],[125,243,78,0.033722995820602675],[125,243,79,0.025811512002943092],[125,244,64,0.16763789916929603],[125,244,65,0.15627036370305777],[125,244,66,0.14512612155444957],[125,244,67,0.13421778598539197],[125,244,68,0.12357048708201111],[125,244,69,0.11321693401170055],[125,244,70,0.1031776945569185],[125,244,71,0.0934616686926949],[125,244,72,0.08406707481113766],[125,244,73,0.07498247431070217],[125,244,74,0.0661878335058478],[125,244,75,0.057655621773188004],[125,244,76,0.04935194481707588],[125,244,77,0.04123771191206583],[125,244,78,0.03326983596536121],[125,244,79,0.025402465236787707],[125,245,64,0.16605362732700926],[125,245,65,0.15474805554508458],[125,245,66,0.14366637469488852],[125,245,67,0.1328227242885664],[125,245,68,0.12224397342404868],[125,245,69,0.11196365731893504],[125,245,70,0.10200239526871263],[125,245,71,0.09236852887404465],[125,245,72,0.0830592567616867],[125,245,73,0.07406179641959774],[125,245,74,0.06535457187472865],[125,245,75,0.05690842592037575],[125,245,76,0.04868785558512025],[125,245,77,0.0406522695284137],[125,245,78,0.03275726605222264],[125,245,79,0.024955930431268043],[125,246,64,0.16426425894458754],[125,246,65,0.15302592358385902],[125,246,66,0.14201142111152754],[125,246,67,0.13123629359582664],[125,246,68,0.12072932439053319],[125,246,69,0.11052528273452435],[125,246,70,0.1006452634028509],[125,246,71,0.09109746889536245],[125,246,72,0.08187847823104917],[125,246,73,0.07297453330612394],[125,246,74,0.06436284134466687],[125,246,75,0.05601289196447417],[125,246,76,0.047887787381641234],[125,246,77,0.03994558428646067],[125,246,78,0.03214064594375103],[125,246,79,0.024425003100050097],[125,247,64,0.16227034308749988],[125,247,65,0.15110276041792092],[125,247,66,0.140158127979216],[125,247,67,0.12945321118176675],[125,247,68,0.11901884236421491],[125,247,69,0.10889142221343028],[125,247,70,0.09909295555305585],[125,247,71,0.08963195291182521],[125,247,72,0.08050481548215888],[125,247,73,0.07169722999763431],[125,247,74,0.06318557188966464],[125,247,75,0.05493831509006502],[125,247,76,0.04691744685992422],[125,247,77,0.039079886047355426],[125,247,78,0.03137890321050451],[125,247,79,0.023765541084869075],[125,248,64,0.1600793624397066],[125,248,65,0.1489842281618188],[125,248,66,0.1381101777168596],[125,248,67,0.12747496802787545],[125,248,68,0.11711156928350193],[125,248,69,0.1070583885036769],[125,248,70,0.09733877339214826],[125,248,71,0.08796200542942234],[125,248,72,0.07892478003194002],[125,248,73,0.07021269104212632],[125,248,74,0.061801717775197204],[125,248,75,0.053659712864320835],[125,248,76,0.04574788916911466],[125,248,77,0.03802230404450539],[125,248,78,0.030435339310840206],[125,248,79,0.022937175319014333],[125,249,64,0.1577044784729212],[125,249,65,0.14668167941379492],[125,249,66,0.13587697327666456],[125,249,67,0.12530882924653164],[125,249,68,0.1150123951464189],[125,249,69,0.10502842599460115],[125,249,70,0.09538203157225404],[125,249,71,0.08608373064364036],[125,249,72,0.07713100283827184],[125,249,73,0.0685098414265303],[125,249,74,0.06019630511622653],[125,249,75,0.0521580670192867],[125,249,76,0.04435595896737207],[125,249,77,0.03674550939373229],[125,249,78,0.029278473049106794],[125,249,79,0.021904350879131302],[125,250,64,0.1551634231045625],[125,250,65,0.14421112309200265],[125,250,66,0.1334726851375732],[125,250,67,0.12296697131756061],[125,250,68,0.11273129682454236],[125,250,69,0.1028090640571063],[125,250,70,0.09322753927371427],[125,250,71,0.08399893583790771],[125,250,72,0.07512201248024178],[125,250,73,0.06658367119960386],[125,250,74,0.0583605528700783],[125,250,75,0.05042062864373495],[125,250,76,0.04272478527205466],[125,250,77,0.03522840251008093],[125,250,78,0.027882920821004367],[125,250,79,0.020637397661766466],[125,251,64,0.15247753951963336],[125,251,65,0.14159233768254456],[125,251,66,0.13091544238651634],[125,251,67,0.12046575832984878],[125,251,68,0.11028270915810771],[125,251,69,0.10041259460055366],[125,251,70,0.09088519686108305],[125,251,71,0.08171486002008897],[125,251,72,0.0729021082220606],[125,251,73,0.06443526440007538],[125,251,74,0.056292067579111406],[125,251,75,0.04844128682336048],[125,251,76,0.04084432992421258],[125,251,77,0.03345684496629489],[125,251,78,0.026230312962063813],[125,251,79,0.019113629808022572],[125,252,64,0.1496709748241149],[125,252,65,0.1388481344246446],[125,252,66,0.12822667024321022],[125,252,67,0.11782515938290808],[125,252,68,0.10768503025586222],[125,252,69,0.09785567551249374],[125,252,70,0.0883697090341275],[125,252,71,0.0792440088914168],[125,252,72,0.07048132875221211],[125,252,73,0.06207191277552799],[125,252,74,0.05399511204529331],[125,252,75,0.046221000616475647],[125,252,76,0.038711989273371814],[125,252,77,0.03142443513643943],[125,252,78,0.02431024530315451],[125,252,79,0.017318472767181542],[125,253,64,0.1467700271565165],[125,253,65,0.13600377290697063],[125,253,66,0.12543057632334126],[125,253,67,0.11506830923338564],[125,253,68,0.10496026284436089],[125,253,69,0.09515906155893838],[125,253,70,0.08570041576257026],[125,253,71,0.07660409713103307],[125,253,72,0.06787551726461083],[125,253,73,0.0595073146375972],[125,253,74,0.051480947962280615],[125,253,75,0.04376829407795245],[125,253,76,0.03633324849520376],[125,253,77,0.029133326754933984],[125,253,78,0.02212126480336009],[125,253,79,0.015246616636038098],[125,254,64,0.14380264980753743],[125,254,65,0.1330865314620653],[125,254,66,0.12255378783869861],[125,254,67,0.11222121416700967],[125,254,68,0.10213379339905451],[125,254,69,0.09234746420230379],[125,254,70,0.0829012421635605],[125,254,71,0.07381809883904979],[125,254,72,0.0651064833962481],[125,254,73,0.05676185903308333],[125,254,74,0.04876825234932633],[125,254,75,0.041099813846051866],[125,254,76,0.033722387738404344],[125,254,77,0.026595089285757982],[125,254,78,0.019671887875025412],[125,254,79,0.012903194134589221],[125,255,64,0.14079811478190526],[125,255,65,0.13012543461958415],[125,255,66,0.11962514179776743],[125,255,67,0.10931260493409165],[125,255,68,0.09923431064056176],[125,255,69,0.08944954163851512],[125,255,70,0.08000076831776573],[125,255,71,0.07091440680922723],[125,255,72,0.06220226235368983],[125,255,73,0.053862995216413266],[125,255,74,0.045883607423355496],[125,255,75,0.03824094858326176],[125,255,76,0.030903239056478408],[125,255,77,0.023831608737470533],[125,255,78,0.016981649737054662],[125,255,79,0.010304981279613143],[125,256,64,0.13778683807713119],[125,256,65,0.127151139709387],[125,256,66,0.11667563009235411],[125,256,67,0.10637393840242197],[125,256,68,0.09629386479011612],[125,256,69,0.08649802016040153],[125,256,70,0.07703241982004988],[125,256,71,0.06792710109569981],[125,256,72,0.0591974713457935],[125,256,73,0.05084568718375199],[125,256,74,0.04286206330830765],[125,256,75,0.03522650931099449],[125,256,76,0.027909992812976507],[125,256,77,0.020876027275004774],[125,256,78,0.014082182828896624],[125,256,79,0.00748161849388995],[125,257,64,0.1348003671129956],[125,257,65,0.12419598257409674],[125,257,66,0.11373849900160454],[125,257,67,0.10343954707748099],[125,257,68,0.09334806642640008],[125,257,69,0.08352994549666602],[125,257,70,0.0740347776684507],[125,257,71,0.06489632560314637],[125,257,72,0.05613376236454409],[125,257,73,0.047752952817577986],[125,257,74,0.03974777383207238],[125,257,75,0.032101471777797395],[125,257,76,0.02478805576392249],[125,257,77,0.017773725052125627],[125,257,78,0.011018329061755188],[125,257,79,0.004476858385090999],[125,258,64,0.13187243326332027],[125,258,65,0.12129503454977585],[125,258,66,0.11085030498384699],[125,258,67,0.1005476879404203],[125,258,68,0.09043712122038201],[125,258,69,0.08058769481060354],[125,258,70,0.07105255854333996],[125,258,71,0.06186922826462311],[125,258,72,0.05306071523680136],[125,258,73,0.044636704716736975],[125,258,74,0.03659478237119259],[125,258,75,0.02892170713464071],[125,258,76,0.02159472906614467],[125,258,77,0.014582950722644598],[125,258,78,0.007848730539622513],[125,258,79,0.0013491266943541705],[125,259,64,0.12905672567449758],[125,259,65,0.118502716918333],[125,259,66,0.10806637634916977],[125,259,67,0.09775484125415045],[125,259,68,0.08761885380584858],[125,259,69,0.07773049092978428],[125,259,70,0.06814630736874851],[125,259,71,0.05890748250876375],[125,259,72,0.05004083464254107],[125,259,73,0.0415598928829041],[125,259,74,0.03346602552271828],[125,259,75,0.025749623566857657],[125,259,76,0.018391338098220446],[125,259,77,0.011363370085381899],[125,259,78,0.004630811197967528],[125,259,79,-0.0018469658350891826],[125,260,64,0.12641504166434128],[125,260,65,0.11588060398829034],[125,260,66,0.10544827905773638],[125,260,67,0.09512283704972622],[125,260,68,0.08495549518191116],[125,260,69,0.07502086513772588],[125,260,70,0.06537856342402021],[125,260,71,0.05607319673243893],[125,260,72,0.04713525352496817],[125,260,73,0.03858206141870239],[125,260,74,0.030418809307833295],[125,260,75,0.022639633075452612],[125,260,76,0.01522876366952097],[125,260,77,0.008161736248017129],[125,260,78,0.001406659041720961],[125,260,79,-0.005074459462925712],[125,261,64,0.12399226965900291],[125,261,65,0.11347340181700989],[125,261,66,0.10304077795538721],[125,261,67,0.09269679420587203],[125,261,68,0.08249270164550099],[125,261,69,0.0725049944720843],[125,261,70,0.06279584441721264],[125,261,71,0.05341292191359302],[125,261,72,0.044390154205805867],[125,261,73,0.03574855717270902],[125,261,74,0.02749713995187918],[125,261,75,0.01963388135677466],[125,261,76,0.012146776984434834],[125,261,77,0.005014955827259163],[125,261,78,-0.0017901348692850871],[125,261,79,-0.008303477822444132],[125,262,64,0.12181662770084097],[125,262,65,0.1113092498935591],[125,262,66,0.10087218836549479],[125,262,67,0.09050550838120482],[125,262,68,0.08025996923896117],[125,262,69,0.07021313800145013],[125,262,70,0.06042910381408795],[125,262,71,0.05095813201853948],[125,262,72,0.041837275761542725],[125,262,73,0.03309106905720888],[125,262,74,0.024732300559613885],[125,262,75,0.016762867188533124],[125,262,76,0.009174706643601148],[125,262,77,0.0019508077428423585],[125,262,78,-0.004933702565524213],[125,262,79,-0.011510396745953626],[125,263,64,0.11990118507992024],[125,263,65,0.10940125336398128],[125,263,66,0.09895590408848233],[125,263,67,0.08856295995088677],[125,263,68,0.07827210435026544],[125,263,69,0.06816105152994448],[125,263,70,0.058295070874968276],[125,263,71,0.04872647132730134],[125,263,72,0.03949505211481427],[125,263,73,0.03062864255534287],[125,263,74,0.02214373037511711],[125,263,75,0.014046177852575812],[125,263,76,0.006332024976165322],[125,263,77,-0.0010116213098972878],[125,263,78,-0.008005612800642235],[125,263,79,-0.014677701787715044],[125,264,64,0.11824559594214572],[125,264,65,0.10774922400611872],[125,264,66,0.09729212905742017],[125,264,67,0.08687001848314922],[125,264,68,0.07653088149733335],[125,264,69,0.06635157767716116],[125,264,70,0.05639775170997906],[125,264,71,0.04672314588510147],[125,264,72,0.03736987493286016],[125,264,73,0.028368797480909612],[125,264,74,0.01973998376672888],[125,264,75,0.011493279102522262],[125,264,76,0.0036289624512561556],[125,264,77,-0.003861500657629189],[125,264,78,-0.010994611763074993],[125,264,79,-0.017793900657352556],[125,265,64,0.11683804373899402],[125,265,65,0.10634162876336863],[125,265,66,0.09586981140831687],[125,265,67,0.08541634246855888],[125,265,68,0.07502688697081931],[125,265,69,0.06477640997973745],[125,265,70,0.054730089983560104],[125,265,71,0.04494245770965891],[125,265,72,0.035457479976436515],[125,265,73,0.026308747662980685],[125,265,74,0.01751976765259263],[125,265,75,0.009104358448946318],[125,265,76,0.001067149010856484],[125,265,77,-0.006595819794482786],[125,265,78,-0.01136986156768425],[125,265,79,-0.012248685874255465],[125,266,64,0.11565739522342948],[125,266,65,0.10515774449577003],[125,266,66,0.09466877858380521],[125,266,67,0.08418247288780638],[125,266,68,0.07374154689723567],[125,266,69,0.06341802956458889],[125,266,70,0.053275785820714835],[125,266,71,0.043369480324741465],[125,266,72,0.033744455503695925],[125,266,73,0.024436721209845268],[125,266,74,0.015473056086534834],[125,266,75,0.006871220561044193],[125,266,76,1.7301885763702958E-4],[125,266,77,-0.0011080913660584],[125,266,78,-0.0023028900236586386],[125,266,79,-0.0034261979284344497],[125,267,64,0.11467556254577105],[125,267,65,0.10417001746534449],[125,267,66,0.09366207195832135],[125,267,67,0.0831421190856433],[125,267,68,0.07264933818014851],[125,267,69,0.062251812855271246],[125,267,70,0.052011271395810965],[125,267,71,0.04198187413687001],[125,267,72,0.03220987129902168],[125,267,73,0.022733379991977568],[125,267,74,0.013582280729299921],[125,267,75,0.01169897868018006],[125,267,76,0.010054219553454464],[125,267,77,0.008497568408314516],[125,267,78,0.007026120433083466],[125,267,79,0.00563032106248643],[125,268,64,0.1138600718632356],[125,268,65,0.10334662594181894],[125,268,66,0.09281847935272615],[125,268,67,0.08226463531053214],[125,268,68,0.0717201806826226],[125,268,69,0.061248308693187745],[125,268,70,0.0509078416209971],[125,268,71,0.04075184012528737],[125,268,72,0.030827026867755847],[125,268,73,0.026197893679545014],[125,268,74,0.024141799837850475],[125,268,75,0.022139398079151176],[125,268,76,0.02020698480594922],[125,268,77,0.01835386594025716],[125,268,78,0.016582545643494175],[125,268,79,0.014889041347442249],[125,269,64,0.11317683674776667],[125,269,65,0.10265424419490898],[125,269,66,0.09210526369679656],[125,269,67,0.08151768618174174],[125,269,68,0.07092200892918327],[125,269,69,0.06037568318452566],[125,269,70,0.04993393829553256],[125,269,71,0.04206508259849689],[125,269,72,0.03976389055254631],[125,269,73,0.03743518177060777],[125,269,74,0.03511208077895023],[125,269,75,0.03282175228083048],[125,269,76,0.03058512092836901],[125,269,77,0.028416726861123395],[125,269,78,0.026324717048677643],[125,269,79,0.024310972274290507],[125,270,64,0.11259313455836106],[125,270,65,0.10206100602999368],[125,270,66,0.09149108599881171],[125,270,67,0.08087009925769326],[125,270,68,0.07022352152997333],[125,270,69,0.059602330521510594],[125,270,70,0.05641420536750688],[125,270,71,0.05398869421285254],[125,270,72,0.05146593907145436],[125,270,73,0.04888597764367873],[125,270,74,0.046284664061648925],[125,270,75,0.04369301577546311],[125,270,76,0.0411367050300072],[125,270,77,0.038635695425971575],[125,270,78,0.03620402383106207],[125,270,79,0.033849727686460586],[125,271,64,0.11206702675519517],[125,271,65,0.10152590924985284],[125,271,66,0.09093560545514087],[125,271,67,0.08028189115034585],[125,271,68,0.07337774789250978],[125,271,69,0.07114695693523297],[125,271,70,0.06869965463167096],[125,271,71,0.06607929368090938],[125,271,72,0.06332885986483947],[125,271,73,0.060489663938111324],[125,271,74,0.05760028539799608],[125,271,75,0.05469566939756229],[125,271,76,0.05180637781057441],[125,271,77,0.04895799520386256],[125,271,78,0.04617069022432032],[125,271,79,0.0434589326649475],[125,272,64,0.10880087924264131],[125,272,65,0.10096107211584096],[125,272,66,0.09035235186577116],[125,272,67,0.08810445823278953],[125,272,68,0.0860276857445264],[125,272,69,0.0836665468028],[125,272,70,0.08105856609329049],[125,272,71,0.07824449964291172],[125,272,72,0.07526669090684304],[125,272,73,0.07216758625308817],[125,272,74,0.06898841169292211],[125,272,75,0.06576801243110325],[125,272,76,0.06254185653486055],[125,272,77,0.0593412037471214],[125,272,78,0.05619244019902951],[125,272,79,0.05311657951137788],[125,273,64,0.10329795089165367],[125,273,65,0.10005086352440065],[125,273,66,0.09972811790176529],[125,273,67,0.0994360758211999],[125,273,68,0.09863772391643477],[125,273,69,0.09615229024241126],[125,273,70,0.09339034211996197],[125,273,71,0.09038969485594749],[125,273,72,0.08719183093269336],[125,273,73,0.0838401373394731],[125,273,74,0.08037831376945648],[125,273,75,0.0768489535680305],[125,273,76,0.07329229902315468],[125,273,77,0.0697451722934975],[125,273,78,0.0662400829773812],[125,273,79,0.06280451303700708],[125,274,64,0.09814079979753842],[125,274,65,0.09646753850755785],[125,274,66,0.09532409835119382],[125,274,67,0.09468770096359846],[125,274,68,0.09452584709993145],[125,274,69,0.09479633369787588],[125,274,70,0.09544753572220194],[125,274,71,0.09642168384788696],[125,274,72,0.0976547716846703],[125,274,73,0.09543238692426531],[125,274,74,0.0917027077528795],[125,274,75,0.08787957213206105],[125,274,76,0.08400773603438691],[125,274,77,0.08012932461744955],[125,274,78,0.07628271745450252],[125,274,79,0.07250162216592734],[125,275,64,0.09335049103999843],[125,275,65,0.09175160248328579],[125,275,66,0.09072018511630409],[125,275,67,0.09023175507398656],[125,275,68,0.09025111405973313],[125,275,69,0.09073228392746746],[125,275,70,0.09161870578146075],[125,275,71,0.09284645824832127],[125,275,72,0.09434407448037446],[125,275,73,0.09602686687399375],[125,275,74,0.09777987618867157],[125,275,75,0.09880371497770157],[125,275,76,0.09463968512314641],[125,275,77,0.09045328120602238],[125,275,78,0.08628836021810588],[125,275,79,0.08218446566219151],[125,276,64,0.08894707077914676],[125,276,65,0.08742001731609383],[125,276,66,0.08649692483684768],[125,276,67,0.08615170581198178],[125,276,68,0.08634658840706982],[125,276,69,0.08703196777339861],[125,276,70,0.08814652129374412],[125,276,71,0.08962036584027266],[125,276,72,0.09137478291046985],[125,276,73,0.09331708104064546],[125,276,74,0.09532903296227646],[125,276,75,0.09730044955044476],[125,276,76,0.09914606390120484],[125,276,77,0.10067747103861911],[125,276,78,0.09622455724178278],[125,276,79,0.09182787719860847],[125,277,64,0.08494918268700674],[125,277,65,0.0834912148987037],[125,277,66,0.0826723220165193],[125,277,67,0.08246492572613129],[125,277,68,0.08282882240093498],[125,277,69,0.08371095054641192],[125,277,70,0.08504542132694354],[125,277,71,0.08675661346824681],[125,277,72,0.08875880509216078],[125,277,73,0.09095155122307441],[125,277,74,0.09321343272814686],[125,277,75,0.09543348776756017],[125,277,76,0.09752519519983438],[125,277,77,0.09942516470367879],[125,277,78,0.1010919263397621],[125,277,79,0.10140554917568295],[125,278,64,0.0813737251292802],[125,278,65,0.07998192820316108],[125,278,66,0.07926274158937241],[125,278,67,0.07918721882063068],[125,278,68,0.07971288090971851],[125,278,69,0.08078339966198722],[125,278,70,0.0823285428798709],[125,278,71,0.08426720585223113],[125,278,72,0.08650694869086034],[125,278,73,0.08893986405234416],[125,278,74,0.09144144034954105],[125,278,75,0.0938999410337989],[125,278,76,0.09622759631114941],[125,278,77,0.09835933879499659],[125,278,78,0.10025165831872429],[125,278,79,0.10188166698400464],[125,279,64,0.07823554909723046],[125,279,65,0.07690688420818248],[125,279,66,0.07628259761537803],[125,279,67,0.07633250581183582],[125,279,68,0.07701202401836832],[125,279,69,0.07826176535847928],[125,279,70,0.08000740041256549],[125,279,71,0.08216262453888346],[125,279,72,0.08462859977136389],[125,279,73,0.08729028580574127],[125,279,74,0.0900202002276384],[125,279,75,0.09270584260677023],[125,279,76,0.0952582136045158],[125,279,77,0.09761059079486373],[125,279,78,0.09971744188082937],[125,279,79,0.10155353857431432],[125,280,64,0.0755471968898681],[125,280,65,0.07427853795043765],[125,280,66,0.07374408342809291],[125,280,67,0.07391255112014583],[125,280,68,0.07473743161092727],[125,280,69,0.07615650359025078],[125,280,70,0.07809160771499923],[125,280,71,0.08045154932386245],[125,280,72,0.08313144422928642],[125,280,73,0.08600948415381521],[125,280,74,0.08895535860597575],[125,280,75,0.09185582669187847],[125,280,76,0.09462069191154471],[125,280,77,0.09718161247006768],[125,280,78,0.09949106565970517],[125,280,79,0.10152150312146724],[125,281,64,0.07331868154635784],[125,281,65,0.07210684769968279],[125,281,66,0.07165694323435523],[125,281,67,0.07193673159717501],[125,281,68,0.07289796992836939],[125,281,69,0.07447584109572825],[125,281,70,0.07658864211411165],[125,281,71,0.07914062214523587],[125,281,72,0.08202123180270393],[125,281,73,0.08510229258036767],[125,281,74,0.0882508286204764],[125,281,75,0.09135289431558213],[125,281,76,0.0943171413738162],[125,281,77,0.09707365767771436],[125,281,78,0.0995729752659269],[125,281,79,0.10178525922452353],[125,282,64,0.07155745880510284],[125,282,65,0.07039924309813694],[125,282,66,0.07002843704849121],[125,282,67,0.07041199889539729],[125,282,68,0.07150015202092913],[125,282,69,0.07322573456386716],[125,282,70,0.07550380294404968],[125,282,71,0.07823440536835496],[125,282,72,0.08130173456416451],[125,282,73,0.08457166932995103],[125,282,74,0.087908749869468],[125,282,75,0.0911983736389077],[125,282,76,0.09434809856340987],[125,282,77,0.09728650428656277],[125,282,78,0.09996223592021836],[125,282,79,0.10234321857579654],[125,283,64,0.07026887091901551],[125,283,65,0.06916106570996972],[125,283,66,0.0688637784834174],[125,283,67,0.069343315047459],[125,283,68,0.07054857168381484],[125,283,69,0.07241030349555494],[125,283,70,0.07484064387850942],[125,283,71,0.07773581405322932],[125,283,72,0.08097517944884725],[125,283,73,0.08441913035921106],[125,283,74,0.08792992184041448],[125,283,75,0.09139235383299454],[125,283,76,0.09471296069333629],[125,283,77,0.09781888851162324],[125,283,78,0.10065696659445417],[125,283,79,0.10319293947207403],[125,284,64,0.06945558733698232],[125,284,65,0.0683950063695854],[125,284,66,0.06816556937825946],[125,284,67,0.06873308499472214],[125,284,68,0.07004533449908912],[125,284,69,0.0720312603409678],[125,284,70,0.07460040269265605],[125,284,71,0.07764554581539534],[125,284,72,0.08104167862621736],[125,284,73,0.08464418054230405],[125,284,74,0.0883132362221059],[125,284,75,0.09193311874416549],[125,284,76,0.09540942084456766],[125,284,77,0.09866794186426503],[125,284,78,0.10165377878628318],[125,284,79,0.10433056744267899],[125,285,64,0.06911734570336059],[125,285,65,0.06810084333297084],[125,285,66,0.06793353563070653],[125,285,67,0.06858089064709277],[125,285,68,0.06998979067007632],[125,285,69,0.072087642636877],[125,285,70,0.07478173319110876],[125,285,71,0.0779618129773223],[125,285,72,0.08149896223363406],[125,285,73,0.08524404724582174],[125,285,74,0.08905541150917656],[125,285,75,0.09281688266429083],[125,285,76,0.0964332049787961],[125,285,77,0.0998289294157298],[125,285,78,0.10294751596423135],[125,285,79,0.10575057571893748],[125,286,64,0.06925093570751789],[125,286,65,0.06827542373825912],[125,286,66,0.0681645067231087],[125,286,67,0.06888346895295361],[125,286,68,0.07037851212201518],[125,286,69,0.07257578961563826],[125,286,70,0.07538068177292928],[125,286,71,0.07868031948348597],[125,286,72,0.08234235595521627],[125,286,73,0.08621365877958886],[125,286,74,0.09015097244591291],[125,286,75,0.09403777081594511],[125,286,76,0.09777805343507939],[125,286,77,0.10129523219094361],[125,286,78,0.10453123665270336],[125,286,79,0.10744574870429835],[125,287,64,0.06985022372349964],[125,287,65,0.06891268623006824],[125,287,66,0.06885243674053165],[125,287,67,0.06963473174431883],[125,287,68,0.07120531161794541],[125,287,69,0.07348936102903114],[125,287,70,0.07639070637486828],[125,287,71,0.07979428032644015],[125,287,72,0.08356480122082333],[125,287,73,0.08754566556030907],[125,287,74,0.09159227225552985],[125,287,75,0.09558784266669912],[125,287,76,0.09943574526308924],[125,287,77,0.10305837236456339],[125,287,78,0.10639624023894617],[125,287,79,0.10940720803767229],[125,288,64,0.07090621821298632],[125,288,65,0.07000372472076288],[125,288,66,0.06998846685391313],[125,288,67,0.07082582733035603],[125,288,68,0.07246130386296612],[125,288,69,0.07481939816009714],[125,288,70,0.07780273776601343],[125,288,71,0.08129448345703805],[125,288,72,0.08515691799831204],[125,288,73,0.08923050396122911],[125,288,74,0.09336955762810573],[125,288,75,0.09745715804576316],[125,288,76,0.10139616536621154],[125,288,77,0.105108081232554],[125,288,78,0.10853213547532709],[125,288,79,0.11162448122341079],[125,289,64,0.07240717589169576],[125,289,65,0.07153689328879614],[125,289,66,0.0715610292684779],[125,289,67,0.07244524383942541],[125,289,68,0.07413500859702182],[125,289,69,0.07655442702312376],[125,289,70,0.07960528319398746],[125,289,71,0.08316939417894664],[125,289,72,0.0871071101792068],[125,289,73,0.09125650284795772],[125,289,74,0.09547107646730696],[125,289,75,0.0996338860631083],[125,289,76,0.10364741445462156],[125,289,77,0.1074324099594155],[125,289,78,0.11092695167704275],[125,289,79,0.11408561282803958],[125,290,64,0.07433874865911988],[125,290,65,0.07349795221402211],[125,290,66,0.07355599263730028],[125,290,67,0.07447895430953172],[125,290,68,0.07621249567610605],[125,290,69,0.07868060375166963],[125,290,70,0.08178457238259329],[125,290,71,0.08540530202735525],[125,290,72,0.08940171355768944],[125,290,73,0.09361003280034685],[125,290,74,0.09788322839581443],[125,290,75,0.10210445683098124],[125,290,76,0.10617596180825434],[125,290,77,0.11001788310098248],[125,290,78,0.11356729261518383],[125,290,79,0.11677731824367382],[125,291,64,0.07668417129157157],[125,291,65,0.07587025514994994],[125,291,66,0.07595684893998633],[125,291,67,0.07691060352715728],[125,291,68,0.07867757214185422],[125,291,69,0.08118190217459953],[125,291,70,0.08432474588087135],[125,291,71,0.08798651013183928],[125,291,72,0.09202518640286594],[125,291,73,0.09627569802038988],[125,291,74,0.10059075801940237],[125,291,75,0.10485375598776114],[125,291,76,0.10896684084961361],[125,291,77,0.112849694902738],[125,291,78,0.11643853310509578],[125,291,79,0.11968518001805212],[125,292,64,0.07942448989867024],[125,292,65,0.07863497743307413],[125,292,66,0.07874494182661007],[125,292,67,0.0797217366146108],[125,292,68,0.08151201127966085],[125,292,69,0.08404034358026569],[125,292,70,0.08720808576370986],[125,292,71,0.09089556706352342],[125,292,72,0.0949603426244558],[125,292,73,0.09923657092628607],[125,292,74,0.10357699094982303],[125,292,75,0.10786536202431313],[125,292,76,0.11200388752657897],[125,292,77,0.11591194837380187],[125,292,78,0.11952505829019655],[125,292,79,0.12279388675135416],[125,293,64,0.08253883114315475],[125,293,65,0.08177138552916641],[125,293,66,0.08189973642678944],[125,293,67,0.0828920693657797],[125,293,68,0.08469582366520512],[125,293,69,0.08723626866871925],[125,293,70,0.09041528868388837],[125,293,71,0.09411354116642318],[125,293,72,0.09818862753178431],[125,293,73,0.10247446943254912],[125,293,74,0.10682411258637087],[125,293,75,0.11112182641271146],[125,293,76,0.1152700215050802],[125,293,77,0.1191879371364642],[125,293,78,0.1228105456211222],[125,293,79,0.12608751455966913],[125,294,64,0.08600471222400752],[125,294,65,0.0852571476165116],[125,294,66,0.08539913062388205],[125,294,67,0.08639980033026323],[125,294,68,0.0882075701993672],[125,294,69,0.09074865169193369],[125,294,70,0.0939257812755373],[125,294,71,0.09762033737294679],[125,294,72,0.10169043618605594],[125,294,73,0.10597027691613747],[125,294,74,0.11031348965610693],[125,294,75,0.1146049965373136],[125,294,76,0.11874757017162169],[125,294,77,0.12266047005124234],[125,294,78,0.12627828953017747],[125,294,79,0.1295498511050951],[125,295,64,0.0897983916230426],[125,295,65,0.08906868530624462],[125,295,66,0.08921980779446292],[125,295,67,0.09022196464605081],[125,295,68,0.09202471713169524],[125,295,69,0.09455545678220134],[125,295,70,0.0977180779091768],[125,295,71,0.1013950565037216],[125,295,72,0.1054454743460781],[125,295,73,0.10970430486877897],[125,295,74,0.11402603451291532],[125,295,75,0.11829638142835586],[125,295,76,0.12241863544582932],[125,295,77,0.1263122386176399],[125,295,78,0.12991156880127153],[125,295,79,0.13316476219264684],[125,296,64,0.09389526061473696],[125,296,65,0.0931815664995631],[125,296,66,0.09333763101285297],[125,296,67,0.09433482962051293],[125,296,68,0.09612403307219314],[125,296,69,0.09863403646847069],[125,296,70,0.10177018079809885],[125,296,71,0.10541639705150946],[125,296,72,0.1094331620071945],[125,296,73,0.11365669823524477],[125,296,74,0.11794261219514479],[125,296,75,0.12217756029782595],[125,296,76,0.12626550340277037],[125,296,77,0.13012622715035277],[125,296,78,0.1336940566350826],[125,296,79,0.13691660093371852],[125,297,64,0.09827027553954026],[125,297,65,0.09757093938205558],[125,297,66,0.0977280787209418],[125,297,67,0.0987143320599499],[125,297,68,0.10048202799167327],[125,297,69,0.10296157238087289],[125,297,70,0.10606002245634422],[125,297,71,0.10966309944946195],[125,297,72,0.11363307953368301],[125,297,73,0.11780788343783127],[125,297,74,0.12204449024209799],[125,297,75,0.12623063387787217],[125,297,76,0.1302710967053126],[125,297,77,0.1340861657311922],[125,297,78,0.1376102734097221],[125,297,79,0.1407906594763694],[125,298,64,0.1028984308404382],[125,298,65,0.10221200755491483],[125,298,66,0.10236672186307372],[125,298,67,0.10333655734746422],[125,298,68,0.10507543421044063],[125,298,69,0.10751555814319819],[125,298,70,0.11056595050803336],[125,298,71,0.1141144328234735],[125,298,72,0.1180254563843745],[125,298,73,0.12213905908680367],[125,298,74,0.12631383126911738],[125,298,75,0.13043871856150074],[125,298,76,0.13441946984626735],[125,298,77,0.13817702593646736],[125,298,78,0.14164608213664043],[125,298,79,0.1447736633021764],[125,299,64,0.10775527286292608],[125,299,65,0.10708054630319946],[125,299,66,0.10722974248615885],[125,299,67,0.1081782602693222],[125,299,68,0.10988172937547247],[125,299,69,0.11227432445349184],[125,299,70,0.11526725484822142],[125,299,71,0.11875072422880545],[125,299,72,0.12259170243166481],[125,299,73,0.12663272937697434],[125,299,74,0.13073422830144588],[125,299,75,0.13478648334573712],[125,299,76,0.13869634720049867],[125,299,77,0.14238555934001074],[125,299,78,0.14578922661195823],[125,299,79,0.14885430808983663],[125,300,64,0.11281745441838081],[125,300,65,0.11215346000112592],[125,300,66,0.11229449380499401],[125,300,67,0.11321742758978692],[125,300,68,0.11487970142607801],[125,300,69,0.11721760635275136],[125,300,70,0.12014473715525895],[125,300,71,0.12355393037095946],[125,300,72,0.12731498187390045],[125,300,73,0.13127328017039852],[125,300,74,0.13529128286683947],[125,300,75,0.13926072957723143],[125,300,76,0.14308970388697337],[125,300,77,0.14670087879182114],[125,300,78,0.15002991226319756],[125,300,79,0.15302383914549444],[125,301,64,0.11806333011070269],[125,301,65,0.11740938065426665],[125,301,66,0.11754010173266494],[125,301,67,0.11843388237429503],[125,301,68,0.12005005554790782],[125,301,69,0.12232715268159394],[125,301,70,0.12518132275452654],[125,301,71,0.12850825181067105],[125,301,72,0.1321808297410062],[125,301,73,0.13604759776505132],[125,301,74,0.13997322584680094],[125,301,75,0.143851013500173],[125,301,76,0.14759038944062075],[125,301,77,0.15111508247219174],[125,301,78,0.15436142969127956],[125,301,79,0.1572766733996595],[125,302,64,0.1234735924263815],[125,302,65,0.1228293075788057],[125,302,66,0.12294810787618635],[125,302,67,0.12380993006113414],[125,302,68,0.12537606311547328],[125,302,69,0.12758737772505602],[125,302,70,0.13036271483370798],[125,302,71,0.13360078965318561],[125,302,72,0.13717781099352006],[125,302,73,0.14094573034965524],[125,302,74,0.14477158108660032],[125,302,75,0.1485503116066843],[125,302,76,0.15219279429417043],[125,302,77,0.15562392072149397],[125,302,78,0.1587808209079618],[125,302,79,0.16161106397088945],[125,303,64,0.1290319485879373],[125,303,65,0.12839728821780566],[125,303,66,0.1285031539973295],[125,303,67,0.12933104628156925],[125,303,68,0.13084425262311955],[125,303,69,0.1329860550454693],[125,303,70,0.13567809100954137],[125,303,71,0.13882224472175853],[125,303,72,0.14229822221497332],[125,303,73,0.14596159214459448],[125,303,74,0.14968187176401976],[125,303,75,0.15335572878962767],[125,303,76,0.1568955590699021],[125,303,77,0.16022750564554802],[125,303,78,0.16328958826864304],[125,303,79,0.1660298072961644],[125,304,64,0.1347258381706449],[125,304,65,0.13410114009439122],[125,304,66,0.1341937079385443],[125,304,67,0.13498660642832697],[125,304,68,0.13644514260436624],[125,304,69,0.13851505350332444],[125,304,70,0.1411208422459656],[125,304,71,0.14416765921529512],[125,304,72,0.14753883589753547],[125,304,73,0.15109371022883583],[125,304,74,0.15470436951674207],[125,304,75,0.15826924929774855],[125,304,76,0.1617023266812302],[125,304,77,0.164931063496507],[125,304,78,0.16789444610046533],[125,304,79,0.17054099282788288],[125,305,64,0.14054719148267678],[125,305,65,0.13993321390198643],[125,305,66,0.14001283101411327],[125,305,67,0.1407706569725738],[125,305,68,0.1421740165397483],[125,305,69,0.14417111546625705],[125,305,70,0.14668935412379067],[125,305,71,0.1496372008502597],[125,305,72,0.15290168732105075],[125,305,73,0.15634601405298243],[125,305,74,0.15984488632851068],[125,305,75,0.1632985304932774],[125,305,76,0.1666225372442483],[125,305,77,0.16974572982937441],[125,305,78,0.1726081150258307],[125,305,79,0.17515879529759823],[125,306,64,0.14649322870864717],[125,306,65,0.14589119773158749],[125,306,66,0.14595898686651942],[125,306,67,0.14668272852936964],[125,306,68,0.14803173975313944],[125,306,69,0.149956677206138],[125,306,70,0.15238783046187876],[125,306,71,0.1552369894868406],[125,306,72,0.15839490402545303],[125,306,73,0.16172866763844854],[125,306,74,0.16511560917404627],[125,306,75,0.16845773941198128],[125,306,76,0.17167226579922001],[125,306,77,0.17468938743414697],[125,306,78,0.17745015898132543],[125,306,79,0.17990430954648606],[125,307,64,0.15256627300129477],[125,307,65,0.15197793120872216],[125,307,66,0.15203584862702152],[125,307,67,0.152727628369952],[125,307,68,0.15402453016432416],[125,307,69,0.15587961156702484],[125,307,70,0.1582260026034069],[125,307,71,0.16097876902098257],[125,307,72,0.16403233785261767],[125,307,73,0.16725766111396634],[125,307,74,0.17053465197874473],[125,307,75,0.1737670672976484],[125,307,76,0.1768737025701795],[125,307,77,0.17978611626072719],[125,307,78,0.1824464093424033],[125,307,79,0.1848049537956211],[125,308,64,0.1587529303218657],[125,308,65,0.15818048279403926],[125,308,66,0.1582311234172475],[125,308,67,0.15889386817489146],[125,308,68,0.16014185569076317],[125,308,69,0.16193047611340114],[125,308,70,0.16419562878500749],[125,308,71,0.16685558282635016],[125,308,72,0.1698083710204657],[125,308,73,0.17292873695080918],[125,308,74,0.17609912632669597],[125,308,75,0.17922499862604588],[125,308,76,0.1822266987915306],[125,308,77,0.185037114580688],[125,308,78,0.18759937567811563],[125,308,79,0.1898644959308194],[125,309,64,0.16502026823353563],[125,309,65,0.164466252721366],[125,309,66,0.16451258273319716],[125,309,67,0.16514962508981684],[125,309,68,0.16635232902053745],[125,309,69,0.16807834436882835],[125,309,70,0.17026626416337576],[125,309,71,0.17283748432270254],[125,309,72,0.1756935682628229],[125,309,73,0.17871298384725573],[125,309,74,0.18178067677051474],[125,309,75,0.1848037877664966],[125,309,76,0.18770418549072002],[125,309,77,0.19041606198068883],[125,309,78,0.19288355673074314],[125,309,79,0.19505831819073782],[125,310,64,0.17133328010479265],[125,310,65,0.17080049016934237],[125,310,66,0.1708457707951828],[125,310,67,0.1714607737135715],[125,310,68,0.1726221862186269],[125,310,69,0.17428984051276286],[125,310,70,0.1764049432385032],[125,310,71,0.17889193629029398],[125,310,72,0.18165583478451808],[125,310,73,0.18457876275956714],[125,310,74,0.18754815219709958],[125,310,75,0.1904728258951278],[125,310,76,0.1932761639762981],[125,310,77,0.19589364378774743],[125,310,78,0.19827039567097476],[125,310,79,0.20035869055140623],[125,311,64,0.17765609023355944],[125,311,65,0.17714750647964556],[125,311,66,0.17719523014301092],[125,311,67,0.1777921281819415],[125,311,68,0.17891654911881752],[125,311,69,0.18053042547672907],[125,311,70,0.18257749248385133],[125,311,71,0.18498515214313274],[125,311,72,0.18766178740006317],[125,311,73,0.1904931080555727],[125,311,74,0.19336903589631765],[125,311,75,0.19620009772268854],[125,311,76,0.19891118599983737],[125,311,77,0.20143905064706324],[125,311,78,0.20372979444412653],[125,311,79,0.20573629471565416],[125,312,64,0.18395250048189193],[125,312,65,0.18347122188613213],[125,312,66,0.1835250470732515],[125,312,67,0.1841079850046753],[125,312,68,0.18519996436228528],[125,312,69,0.18676493112991224],[125,312,70,0.18874905880252585],[125,312,71,0.19108261799285114],[125,312,72,0.19367726979206373],[125,312,73,0.19642223581914217],[125,312,74,0.19920994685282734],[125,312,75,0.2019526756941958],[125,312,76,0.20457684075370453],[125,312,77,0.20702045817045],[125,312,78,0.2092305858767526],[125,312,79,0.21116068843315786],[125,313,64,0.19018771875685242],[125,313,65,0.18973680596688572],[125,313,66,0.1898004029384153],[125,313,67,0.19037358439378],[125,313,68,0.1914377742729582],[125,313,69,0.19295884058575624],[125,313,70,0.19488529954597913],[125,313,71,0.19715019308762144],[125,313,72,0.1996683645361529],[125,313,73,0.20233246909424038],[125,313,74,0.20503748013874712],[125,313,75,0.2076974776435413],[125,313,76,0.21024043206658913],[125,313,77,0.21260562610020406],[125,313,78,0.21474105736710383],[125,313,79,0.2166007563882089],[125,314,64,0.19632825727518832],[125,314,65,0.1959105912925143],[125,314,66,0.19598750189974273],[125,314,67,0.19655505087177597],[125,314,68,0.197596069132683],[125,314,69,0.19907825104759258],[125,314,70,0.20095235495849256],[125,314,71,0.20315409104243987],[125,314,72,0.20560138249713614],[125,314,73,0.20819023503595313],[125,314,74,0.21081821146403731],[125,314,75,0.21340127834380773],[125,314,76,0.21586899650043093],[125,314,77,0.21816192243738375],[125,314,78,0.22022898046021924],[125,314,79,0.22202474456078342],[125,315,64,0.20234103104582218],[125,315,65,0.2019592607867891],[125,315,66,0.20205284569626103],[125,315,67,0.2026187538137105],[125,315,68,0.20364113172585674],[125,315,69,0.20508940048339236],[125,315,70,0.20691645504184408],[125,315,71,0.20906056492185557],[125,315,72,0.21144262416379297],[125,315,73,0.21396190055791295],[125,315,74,0.21651860508581028],[125,315,75,0.2190306874282542],[125,315,76,0.22142934882923643],[125,315,77,0.22365643381947498],[125,315,78,0.22566178326027475],[125,315,79,0.2274004916052749],[125,316,64,0.20819381284038052],[125,316,65,0.20785031063208817],[125,316,66,0.20796370321024046],[125,316,67,0.20853178244190748],[125,316,68,0.20953991660579216],[125,316,69,0.21095915010905353],[125,316,70,0.21274440433470326],[125,316,71,0.2148363935602339],[125,316,72,0.21715886695270437],[125,316,73,0.2196142602762905],[125,316,74,0.22210550212984062],[125,316,75,0.22455263781805312],[125,316,76,0.22688857028091172],[125,316,77,0.22905645325308432],[125,316,78,0.2310070372902921],[125,316,79,0.23269591442366594],[125,317,64,0.21385574109957511],[125,317,65,0.21355256306809872],[125,317,66,0.2136886269224002],[125,317,67,0.21426246475077487],[125,317,68,0.21526057037908186],[125,317,69,0.21665550502809075],[125,317,70,0.2184041020390452],[125,317,71,0.22044940047248396],[125,317,72,0.22271788239822315],[125,317,73,0.22511505168718202],[125,317,74,0.22754663355374602],[125,317,75,0.22993489627532498],[125,317,76,0.23221451647655747],[125,317,77,0.23432998521681497],[125,317,78,0.23623295950622705],[125,317,79,0.23787950679861944],[125,318,64,0.21929783380808568],[125,318,65,0.21903668513884358],[125,318,66,0.2191979753276474],[125,318,67,0.21978089243353333],[125,318,68,0.2207729580583626],[125,318,69,0.22214814102627542],[125,318,70,0.2238650684021606],[125,318,71,0.2258689791281296],[125,318,72,0.2280889598125811],[125,318,73,0.23043347691205582],[125,318,74,0.232811139769659],[125,318,75,0.23514658070812652],[125,318,76,0.23737633222183907],[125,318,77,0.23944625772977185],[125,318,78,0.2413089214086619],[125,318,79,0.24292084527886204],[125,319,64,0.22449350833794152],[125,319,65,0.2242757133880228],[125,319,66,0.224464441311345],[125,319,67,0.2250594518108633],[125,319,68,0.22604919548347124],[125,319,69,0.22740893752121802],[125,319,70,0.22909897735425216],[125,319,71,0.23106662458871127],[125,319,72,0.23324343641612005],[125,319,73,0.23554073101124623],[125,319,74,0.23787009692637942],[125,319,75,0.2401586842273795],[125,319,76,0.2423449731504203],[125,319,77,0.24437624138568192],[125,319,78,0.2462059652520851],[125,319,79,0.24779110231684665],[126,-64,64,0.34353700903815304],[126,-64,65,0.3496782773167809],[126,-64,66,0.35591840751414583],[126,-64,67,0.3622439824120314],[126,-64,68,0.3686526119689096],[126,-64,69,0.37515357014839185],[126,-64,70,0.38175494252839426],[126,-64,71,0.38846228145561107],[126,-64,72,0.39527769920979244],[126,-64,73,0.40219911302835615],[126,-64,74,0.4092196463809559],[126,-64,75,0.4163271907452154],[126,-64,76,0.4235041319708921],[126,-64,77,0.43072724513231114],[126,-64,78,0.4379677615598128],[126,-64,79,0.4451916115134115],[126,-63,64,0.34659714626727883],[126,-63,65,0.3528249331104344],[126,-63,66,0.35915622718772866],[126,-63,67,0.3655774276636404],[126,-63,68,0.3720852478308041],[126,-63,69,0.37868778089428357],[126,-63,70,0.3853920540325708],[126,-63,71,0.39220268667541514],[126,-63,72,0.39912097911203465],[126,-63,73,0.40614415316912633],[126,-63,74,0.4132647492846885],[126,-63,75,0.4204701841645772],[126,-63,76,0.4277424730443793],[126,-63,77,0.4350581203916977],[126,-63,78,0.4423881826751205],[126,-63,79,0.449698506599208],[126,-62,64,0.3498596071622786],[126,-62,65,0.3561681592910679],[126,-62,66,0.36258335209522125],[126,-62,67,0.36909176884232353],[126,-62,68,0.3756891962023629],[126,-62,69,0.3823822254379332],[126,-62,70,0.3891765874891221],[126,-62,71,0.39607581757127225],[126,-62,72,0.4030803334558344],[126,-62,73,0.4101866657346761],[126,-62,74,0.4173868443274139],[126,-62,75,0.4246679453524885],[126,-62,76,0.43201180231889913],[126,-62,77,0.4393948854088609],[126,-62,78,0.44678835241396037],[126,-62,79,0.4541582746619009],[126,-61,64,0.3533074343324041],[126,-61,65,0.35969057779307223],[126,-61,66,0.36618193186637155],[126,-61,67,0.3727686043821866],[126,-61,68,0.3794454372544677],[126,-61,69,0.38621723659293994],[126,-61,70,0.39308823371077656],[126,-61,71,0.4000607585667479],[126,-61,72,0.40713430195089934],[126,-61,73,0.4143047292901282],[126,-61,74,0.42156365026479237],[126,-61,75,0.4288979482897343],[126,-61,76,0.4362894737506994],[126,-61,77,0.44371490470211766],[126,-61,78,0.4511457785264743],[126,-61,79,0.4585486978322083],[126,-60,64,0.35691927705257215],[126,-60,65,0.3633703895837466],[126,-60,66,0.369929721738417],[126,-60,67,0.3765852025467366],[126,-60,68,0.3833307195328691],[126,-60,69,0.3901690557880723],[126,-60,70,0.3971027795659428],[126,-60,71,0.40413292823701996],[126,-60,72,0.41125804873489824],[126,-60,73,0.4184733890102239],[126,-60,74,0.42577024461421936],[126,-60,75,0.433135464397522],[126,-60,76,0.4405511191498462],[126,-60,77,0.4479943368233527],[126,-60,78,0.45543730777948643],[126,-60,79,0.46284746327861737],[126,-59,64,0.3606699226114883],[126,-59,65,0.3671819051130838],[126,-59,66,0.37380061587844166],[126,-59,67,0.3805150396193388],[126,-59,68,0.3873181033041153],[126,-59,69,0.3942103805658684],[126,-59,70,0.4011926575736911],[126,-59,71,0.4082646281080691],[126,-59,72,0.41542390685294284],[126,-59,73,0.4226651928739162],[126,-59,74,0.4299795873347631],[126,-59,75,0.4373540693710628],[126,-59,76,0.4447711338822762],[126,-59,77,0.4522085948239311],[126,-59,78,0.45963955738164497],[126,-59,79,0.467032562191676],[126,-58,64,0.36453095624535387],[126,-58,65,0.37109620275153254],[126,-58,66,0.37776530769281813],[126,-58,67,0.3845284635835954],[126,-58,68,0.39137762721818],[126,-58,69,0.3983110323409404],[126,-58,70,0.40532761166773673],[126,-58,71,0.41242570240582027],[126,-58,72,0.4196020272957958],[126,-58,73,0.42685082485675935],[126,-58,74,0.4341631328183742],[126,-58,75,0.44152622859337265],[126,-58,76,0.44892323048969707],[126,-58,77,0.4563328631852694],[126,-58,78,0.46372939079205155],[126,-58,79,0.47108272062278045],[126,-57,64,0.368471548642506],[126,-57,65,0.37508191412169745],[126,-57,66,0.3817920759722446],[126,-57,67,0.38859348210291317],[126,-57,68,0.3954770970752165],[126,-57,69,0.40243874320310175],[126,-57,70,0.4094754779338571],[126,-57,71,0.4165843076024389],[126,-57,72,0.42376113151172645],[126,-57,73,0.43099983412967274],[126,-57,74,0.4382915293210065],[126,-57,75,0.4456239604042458],[126,-57,76,0.45298105967407004],[126,-57,77,0.4603426708565937],[126,-57,78,0.46768443777260515],[126,-57,79,0.47497786227452937],[126,-56,64,0.3724566460417989],[126,-56,65,0.3791034699509081],[126,-56,66,0.38584507018143216],[126,-56,67,0.39267408171544793],[126,-56,68,0.39958043931263165],[126,-56,69,0.4065575443258363],[126,-56,70,0.41360060785989644],[126,-56,71,0.4207053690798909],[126,-56,72,0.42786699825319285],[126,-56,73,0.4350791467717634],[126,-56,74,0.44233314800925416],[126,-56,75,0.4496173727441526],[126,-56,76,0.4569167427331946],[126,-56,77,0.4642124058505878],[126,-56,78,0.47148157602006596],[126,-56,79,0.4786975409614912],[126,-55,64,0.37643253281621253],[126,-55,65,0.383107055812778],[126,-55,66,0.38987053060951593],[126,-55,67,0.3967166701742919],[126,-55,68,0.40363437539701796],[126,-55,69,0.4106146928781545],[126,-55,70,0.41765107096189746],[126,-55,71,0.4247380796754007],[126,-55,72,0.43187027080437873],[126,-55,73,0.4390411837220665],[126,-55,74,0.44624250076359023],[126,-55,75,0.4534633558180505],[126,-55,76,0.4606897996673247],[126,-55,77,0.46790442543575816],[126,-55,78,0.47508615733033227],[126,-55,79,0.4822102056496116],[126,-54,64,0.3803438409150575],[126,-54,65,0.3870374301405494],[126,-54,66,0.39381346865709066],[126,-54,67,0.40066663484366094],[126,-54,68,0.40758484432169934],[126,-54,69,0.41455693124349174],[126,-54,70,0.42157471692119175],[126,-54,71,0.42863173009452543],[126,-54,72,0.43572202471648347],[126,-54,73,0.44283914210717085],[126,-54,74,0.44997522120266625],[126,-54,75,0.45712026050945226],[126,-54,76,0.4642615352353221],[126,-54,77,0.4713831729066035],[126,-54,78,0.4784658906008614],[126,-54,79,0.48548689672695033],[126,-53,64,0.3841439887551638],[126,-53,65,0.39084818136899363],[126,-53,66,0.39762779622861394],[126,-53,67,0.4044783603616568],[126,-53,68,0.4113868985062503],[126,-53,69,0.41834024227988903],[126,-53,70,0.42532876739697395],[126,-53,71,0.4323451143536324],[126,-53,72,0.43938296691991624],[126,-53,73,0.4464359734071839],[126,-53,74,0.4534968143671076],[126,-53,75,0.46055642026569504],[126,-53,76,0.46760334253951424],[126,-53,77,0.4746232812838907],[126,-53,78,0.48159877264598944],[126,-53,79,0.48850903880234176],[126,-52,64,0.38779540597118795],[126,-52,65,0.3945019533376356],[126,-52,66,0.40127654787618633],[126,-52,67,0.40811544473690625],[126,-52,68,0.41500491112689686],[126,-52,69,0.4219300443622788],[126,-52,70,0.42887999457297743],[126,-52,71,0.435846687082908],[126,-52,72,0.4428235666434081],[126,-52,73,0.44980448260855266],[126,-52,74,0.4567827186313098],[126,-52,75,0.4637501703493531],[126,-52,76,0.4706966743963495],[126,-52,77,0.47760949192058083],[126,-52,78,0.4844729496195895],[126,-52,79,0.4912682411100611],[126,-51,64,0.39019972132893027],[126,-51,65,0.3979707337770891],[126,-51,66,0.4047321653783129],[126,-51,67,0.41155097679744657],[126,-51,68,0.4184128434121413],[126,-51,69,0.42530144489715366],[126,-51,70,0.4322049567439898],[126,-51,71,0.43911477663148624],[126,-51,72,0.44602424119804057],[126,-51,73,0.45292748166461044],[126,-51,74,0.45981842180156884],[126,-51,75,0.4666899216248765],[126,-51,76,0.4735330700769146],[126,-51,77,0.48033662979656694],[126,-51,78,0.4870866369135185],[126,-51,79,0.4937661586160301],[126,-50,64,0.3916945630163167],[126,-50,65,0.3999117166777435],[126,-50,66,0.407976890053183],[126,-50,67,0.4147679197276937],[126,-50,68,0.421594616038527],[126,-50,69,0.4284395957660813],[126,-50,70,0.4352903336252419],[126,-50,71,0.4421378957894537],[126,-50,72,0.4489756374920453],[126,-50,73,0.45579803712522515],[126,-50,74,0.4625996702347639],[126,-50,75,0.4693743267027707],[126,-50,76,0.4761142742833732],[126,-50,77,0.48280967150828535],[126,-50,78,0.48944813281295707],[126,-50,79,0.49601444855197385],[126,-49,64,0.3932728403236715],[126,-49,65,0.4014769474974453],[126,-49,66,0.4096629869885714],[126,-49,67,0.41775515328024576],[126,-49,68,0.424540744342548],[126,-49,69,0.43133693557996466],[126,-49,70,0.4381307775649],[126,-49,71,0.44491319083776965],[126,-49,72,0.4516776545535345],[126,-49,73,0.4584190289433735],[126,-49,74,0.4651325148829508],[126,-49,75,0.47181275375473636],[126,-49,76,0.4784530706664016],[126,-49,77,0.4850448639421994],[126,-49,78,0.4915771436411622],[126,-49,79,0.49803622167756734],[126,-48,64,0.3949488941777252],[126,-48,65,0.4031297192430187],[126,-48,66,0.4113020030263657],[126,-48,67,0.4194492719679132],[126,-48,68,0.42723618341631203],[126,-48,69,0.43398255529568247],[126,-48,70,0.4407197923951194],[126,-48,71,0.44743879334215175],[126,-48,72,0.4541331948101958],[126,-48,73,0.4607981960313138],[126,-48,74,0.467429516944625],[126,-48,75,0.4740224930431514],[126,-48,76,0.48057130985863056],[126,-48,77,0.4870683798815963],[126,-48,78,0.4935038645544959],[126,-48,79,0.499865343801344],[126,-47,64,0.3967329614955895],[126,-47,65,0.4048777135340395],[126,-47,66,0.4130224232110927],[126,-47,67,0.42115079682829737],[126,-47,68,0.4292575900162989],[126,-47,69,0.4363692669961475],[126,-47,70,0.44305427953364235],[126,-47,71,0.4497158359001691],[126,-47,72,0.4563476924477413],[126,-47,73,0.4629452704485636],[126,-47,74,0.4695046288561492],[126,-47,75,0.4760215691235341],[126,-47,76,0.48249087486974257],[126,-47,77,0.48890568904692355],[126,-47,78,0.4952570311054082],[126,-47,79,0.5015334564847583],[126,-46,64,0.3986260370797719],[126,-46,65,0.40671997218372963],[126,-46,66,0.4148210685079249],[126,-46,67,0.42291338729856287],[126,-46,68,0.43099167313964526],[126,-46,69,0.4384958187937994],[126,-46,70,0.4451360972207693],[126,-46,71,0.4517493622656228],[126,-46,72,0.458329394553463],[126,-46,73,0.4648716628918752],[126,-46,74,0.4713723297204311],[126,-46,75,0.477827382670756],[126,-46,76,0.484231894850614],[126,-46,77,0.4905794163313104],[126,-46,78,0.4968614991680904],[126,-46,79,0.503067358120569],[126,-45,64,0.40062091120811405],[126,-45,65,0.4086478882683309],[126,-45,66,0.4166877454988589],[126,-45,67,0.4247250801060255],[126,-45,68,0.43275455019620457],[126,-45,69,0.440366189423933],[126,-45,70,0.44697143273210727],[126,-45,71,0.45354778159972564],[126,-45,72,0.46008890045743744],[126,-45,73,0.46659008863759954],[126,-45,74,0.4730473377267296],[126,-45,75,0.4794565075956074],[126,-45,76,0.485812623512507],[126,-45,77,0.49210929661678376],[126,-45,78,0.4983382698876139],[126,-45,79,0.504489091588295],[126,-44,64,0.402703183066261],[126,-44,65,0.410646174409119],[126,-44,66,0.41860616357269886],[126,-44,67,0.42656846597527304],[126,-44,68,0.4345276082543386],[126,-44,69,0.44198889869986113],[126,-44,70,0.44857018914845814],[126,-44,71,0.45512233632799565],[126,-44,72,0.461638714189204],[126,-44,73,0.46811420665682435],[126,-44,74,0.4745443364128535],[126,-44,75,0.48092450332917336],[126,-44,76,0.48724933471775145],[126,-44,77,0.49351214944595634],[126,-44,78,0.4997045378311329],[126,-44,79,0.5058160590845105],[126,-43,64,0.4048522530758713],[126,-43,65,0.4126938111620707],[126,-43,66,0.42055483340545274],[126,-43,67,0.42842153201488914],[126,-43,68,0.43628828718520973],[126,-43,69,0.4433763316962138],[126,-43,70,0.4499453847645272],[126,-43,71,0.45648658190202296],[126,-43,72,0.4629928085632576],[126,-43,73,0.46945827062180273],[126,-43,74,0.4758777136788798],[126,-43,75,0.48224574135485504],[126,-43,76,0.4885562344678363],[126,-43,77,0.49480187289250316],[126,-43,78,0.5009737617700172],[126,-43,79,0.507061163608328],[126,-42,64,0.40704229717237855],[126,-42,65,0.4147649784130393],[126,-42,66,0.42250794945913306],[126,-42,67,0.4302584892413371],[126,-42,68,0.4379600587501602],[126,-42,69,0.44454407452561967],[126,-42,70,0.4511125632216629],[126,-42,71,0.4576558767760024],[126,-42,72,0.46416619942747067],[126,-42,73,0.47063679055603486],[126,-42,74,0.4770613125113617],[126,-42,75,0.48343324513660413],[126,-42,76,0.4897453886050613],[126,-42,77,0.4959894560878321],[126,-42,78,0.5021557576616846],[126,-42,79,0.508232976749682],[126,-41,64,0.40924322607721353],[126,-41,65,0.41682997267010025],[126,-41,66,0.42443625922218703],[126,-41,67,0.4320505877797617],[126,-41,68,0.4389201621033216],[126,-41,69,0.4455102595803444],[126,-41,70,0.4520892124600461],[126,-41,71,0.45864688092457656],[126,-41,72,0.4651745286344907],[126,-41,73,0.4716642039185043],[126,-41,74,0.47810819243035463],[126,-41,75,0.4844985426633682],[126,-41,76,0.4908266656360987],[126,-41,77,0.4970830099767025],[126,-41,78,0.5032568135404554],[126,-41,79,0.5093359325954023],[126,-40,64,0.41142163259024356],[126,-40,65,0.41885611312868376],[126,-40,66,0.4263079219006372],[126,-40,67,0.43309181994548895],[126,-40,68,0.4396900453495623],[126,-40,69,0.44629491812341165],[126,-40,70,0.45289419060179575],[126,-40,71,0.45947706125014454],[126,-40,72,0.4660336543261224],[126,-40,73,0.472554554953821],[126,-40,74,0.479030400727082],[126,-40,75,0.48545153090236065],[126,-40,76,0.4918076941782672],[126,-40,77,0.4980878159892869],[126,-40,78,0.504279826165875],[126,-40,79,0.5103705477333129],[126,-39,64,0.4135417298990536],[126,-39,65,0.42054344183160214],[126,-39,66,0.4270917446100577],[126,-39,67,0.4336787009222882],[126,-39,68,0.4402923879112997],[126,-39,69,0.4469193381344237],[126,-39,70,0.4535471568994516],[126,-39,71,0.4601642022555374],[126,-39,72,0.4667592471558831],[126,-39,73,0.4733211811855331],[126,-39,74,0.47983875261881315],[126,-39,75,0.4863003515286701],[126,-39,76,0.49269383462307675],[126,-39,77,0.49900639243228323],[126,-39,78,0.5052244594156252],[126,-39,79,0.5113336674986032],[126,-38,64,0.41446038941469976],[126,-38,65,0.42096166361401577],[126,-38,66,0.4275166427546354],[126,-38,67,0.43411695890687335],[126,-38,68,0.44075084388172114],[126,-38,69,0.4474054253433329],[126,-38,70,0.4540680059138074],[126,-38,71,0.4607259203912659],[126,-38,72,0.4673663911146754],[126,-38,73,0.47397640597887064],[126,-38,74,0.4805426195086982],[126,-38,75,0.48705127737489623],[126,-38,76,0.4934881647055332],[126,-38,77,0.4998385785158798],[126,-38,78,0.5060873245468154],[126,-38,79,0.5122187387677785],[126,-37,64,0.4147527819710996],[126,-37,65,0.4212533385911208],[126,-37,66,0.4278163850748193],[126,-37,67,0.43443229855370663],[126,-37,68,0.44108933843060305],[126,-37,69,0.44777506542089157],[126,-37,70,0.4544763031211397],[126,-37,71,0.46117918052543944],[126,-37,72,0.4678691876687704],[126,-37,73,0.47453123615155],[126,-37,74,0.4811497246016091],[126,-37,75,0.48770860912158626],[126,-37,76,0.49419147876128977],[126,-37,77,0.5005816360460418],[126,-37,78,0.4948877215073461],[126,-37,79,0.47938365622332185],[126,-36,64,0.40147575541962355],[126,-36,65,0.4085277674219493],[126,-36,66,0.4146330482567093],[126,-36,67,0.42617217099891086],[126,-36,68,0.4292036308952633],[126,-36,69,0.4300856330732805],[126,-36,70,0.4414999838192396],[126,-36,71,0.45708409400880096],[126,-36,72,0.4656274026549493],[126,-36,73,0.4749950636676748],[126,-36,74,0.48166594519313277],[126,-36,75,0.48780866578989684],[126,-36,76,0.4801886162505753],[126,-36,77,0.46876846317651405],[126,-36,78,0.4569865382965179],[126,-36,79,0.44271304489045976],[126,-35,64,0.38771870832716776],[126,-35,65,0.38999883775112754],[126,-35,66,0.38949365671599656],[126,-35,67,0.39883780488427384],[126,-35,68,0.4031322091264862],[126,-35,69,0.41119380560480945],[126,-35,70,0.4198477793119481],[126,-35,71,0.42937326415383514],[126,-35,72,0.43613662609145054],[126,-35,73,0.4498155054071519],[126,-35,74,0.45861211874601565],[126,-35,75,0.459254863415552],[126,-35,76,0.4522161324826154],[126,-35,77,0.4394769224822528],[126,-35,78,0.42593833025446315],[126,-35,79,0.4145399524494755],[126,-34,64,0.37960766717028954],[126,-34,65,0.38296710352303853],[126,-34,66,0.37727647215264026],[126,-34,67,0.3878766202834234],[126,-34,68,0.393274815314695],[126,-34,69,0.4001890655446784],[126,-34,70,0.4042328888578367],[126,-34,71,0.4169323918328053],[126,-34,72,0.42264054755195457],[126,-34,73,0.4287373521281848],[126,-34,74,0.44122315699922643],[126,-34,75,0.44007311508186236],[126,-34,76,0.4345265076873799],[126,-34,77,0.42381836397599193],[126,-34,78,0.4089023015308134],[126,-34,79,0.40282662118569],[126,-33,64,0.37105493888252705],[126,-33,65,0.3789048416779585],[126,-33,66,0.374214076389157],[126,-33,67,0.3886852121758797],[126,-33,68,0.393231199193907],[126,-33,69,0.3923352010089176],[126,-33,70,0.3950992254400827],[126,-33,71,0.41375306317953225],[126,-33,72,0.4187130998333336],[126,-33,73,0.41883731070348634],[126,-33,74,0.43258935733023335],[126,-33,75,0.4330770174502233],[126,-33,76,0.4275535402886523],[126,-33,77,0.4187914751020095],[126,-33,78,0.40383478723483396],[126,-33,79,0.39895199858138886],[126,-32,64,0.36878145371744653],[126,-32,65,0.3777689044739042],[126,-32,66,0.37890581688501324],[126,-32,67,0.3877189603821282],[126,-32,68,0.39305862712282963],[126,-32,69,0.3918929723203638],[126,-32,70,0.3955164903177299],[126,-32,71,0.41791865334410755],[126,-32,72,0.42706860268745167],[126,-32,73,0.4219909788003179],[126,-32,74,0.42917497801803256],[126,-32,75,0.43051283655746436],[126,-32,76,0.4293021455957542],[126,-32,77,0.421602671863349],[126,-32,78,0.40511700234599696],[126,-32,79,0.3941016168478251],[126,-31,64,0.38022793681050904],[126,-31,65,0.3840352283889739],[126,-31,66,0.3914802273282911],[126,-31,67,0.39423544919277237],[126,-31,68,0.40157154479198787],[126,-31,69,0.4046066730862264],[126,-31,70,0.4084590365999831],[126,-31,71,0.4220344749169049],[126,-31,72,0.4381899058819715],[126,-31,73,0.43777735912717214],[126,-31,74,0.43650286626657725],[126,-31,75,0.43443656112602486],[126,-31,76,0.4380171685334774],[126,-31,77,0.42621161998149126],[126,-31,78,0.4102272233867232],[126,-31,79,0.3918831298733301],[126,-30,64,0.3949731454591586],[126,-30,65,0.39813693682895396],[126,-30,66,0.4075227324698014],[126,-30,67,0.41448514497335065],[126,-30,68,0.42200543553816516],[126,-30,69,0.42364751978919946],[126,-30,70,0.42594957290201885],[126,-30,71,0.42940183687632355],[126,-30,72,0.44582181952535843],[126,-30,73,0.4544816732580006],[126,-30,74,0.4528958644703322],[126,-30,75,0.4461597384699807],[126,-30,76,0.4489838401944615],[126,-30,77,0.4323246795287412],[126,-30,78,0.4169169931105404],[126,-30,79,0.3986376024395383],[126,-29,64,0.4086720685091905],[126,-29,65,0.4138472280606282],[126,-29,66,0.4222094731747557],[126,-29,67,0.4351838349841659],[126,-29,68,0.4418766103290008],[126,-29,69,0.4414695498607197],[126,-29,70,0.4437013093450475],[126,-29,71,0.44297746805666316],[126,-29,72,0.4521088254499571],[126,-29,73,0.4658056489255912],[126,-29,74,0.46973791852153496],[126,-29,75,0.46091233946367555],[126,-29,76,0.46120741379434793],[126,-29,77,0.4430560287987393],[126,-29,78,0.4262248871890739],[126,-29,79,0.40813101276800073],[126,-28,64,0.4160036593516789],[126,-28,65,0.4222880314555697],[126,-28,66,0.42871174811410084],[126,-28,67,0.4352565005283979],[126,-28,68,0.4419036914198546],[126,-28,69,0.44725758037930013],[126,-28,70,0.4519869188236999],[126,-28,71,0.45671054741117567],[126,-28,72,0.4609388900467684],[126,-28,73,0.4661947582215053],[126,-28,74,0.4709815682512966],[126,-28,75,0.47528594621819625],[126,-28,76,0.47369514788139844],[126,-28,77,0.4603206864899345],[126,-28,78,0.44111074148198376],[126,-28,79,0.4215995453564653],[126,-27,64,0.4162736915258247],[126,-27,65,0.4224859392217736],[126,-27,66,0.42884152996887154],[126,-27,67,0.43532182156878607],[126,-27,68,0.4406834618129146],[126,-27,69,0.4452192071388304],[126,-27,70,0.4497438838761496],[126,-27,71,0.4542719559672297],[126,-27,72,0.4588191041555639],[126,-27,73,0.463400873618591],[126,-27,74,0.46803148557108354],[126,-27,75,0.4727228147338172],[126,-27,76,0.47748353431633456],[126,-27,77,0.47347232258543626],[126,-27,78,0.4546917287725079],[126,-27,79,0.43680978799942466],[126,-26,64,0.4165597762284666],[126,-26,65,0.422686689976851],[126,-26,66,0.4289594948634586],[126,-26,67,0.43422709977690466],[126,-26,68,0.438581260198636],[126,-26,69,0.44291823110374484],[126,-26,70,0.4472521684721594],[126,-26,71,0.451599764062006],[126,-26,72,0.4559786674559878],[126,-26,73,0.46040608126701943],[126,-26,74,0.46489753165436976],[126,-26,75,0.4694658160455538],[126,-26,76,0.47412012969100376],[126,-26,77,0.4788653724008375],[126,-26,78,0.469011067075789],[126,-26,79,0.4514554562452906],[126,-25,64,0.4168331000285974],[126,-25,65,0.4228612009255869],[126,-25,66,0.42789193220715477],[126,-25,67,0.43207670885587596],[126,-25,68,0.43623871597006464],[126,-25,69,0.44039037548262416],[126,-25,70,0.44454809988827176],[126,-25,71,0.4487305787872166],[126,-25,72,0.45295715552883775],[126,-25,73,0.45724638681875956],[126,-25,74,0.46161478743197765],[126,-25,75,0.46607576189791305],[126,-25,76,0.47063872473466584],[126,-25,77,0.47530841051215816],[126,-25,78,0.48008437472066895],[126,-25,79,0.4615037003735135],[126,-24,64,0.4170599520752569],[126,-24,65,0.42168327880186185],[126,-24,66,0.4257122839683906],[126,-24,67,0.4297118936633342],[126,-24,68,0.43369441360600447],[126,-24,69,0.4376745376753575],[126,-24,70,0.4416707017314546],[126,-24,71,0.4457033153717026],[126,-24,72,0.44979310971701747],[126,-24,73,0.45395967647464924],[126,-24,74,0.4582202003841305],[126,-24,75,0.46258838685714276],[126,-24,76,0.4670735863151268],[126,-24,77,0.4716801164132246],[126,-24,78,0.4764067830191818],[126,-24,79,0.4699196284779055],[126,-23,64,0.4156054556180565],[126,-23,65,0.4194894831929203],[126,-23,66,0.4233392154464737],[126,-23,67,0.42716492572545783],[126,-23,68,0.4309804918081009],[126,-23,69,0.43480270984614017],[126,-23,70,0.4386518091452419],[126,-23,71,0.4425496463652722],[126,-23,72,0.4465180404931477],[126,-23,73,0.4505773059461977],[126,-23,74,0.4547449858512587],[126,-23,75,0.45903478723211477],[126,-23,76,0.46345571951469383],[126,-23,77,0.46801143742878376],[126,-23,78,0.4726997890506704],[126,-23,79,0.4775125693960167],[126,-22,64,0.41341468408704757],[126,-22,65,0.4171227556133654],[126,-22,66,0.4208026119693364],[126,-22,67,0.4244651251880919],[126,-22,68,0.42812564586609053],[126,-22,69,0.4318029134185576],[126,-22,70,0.4355187348143699],[126,-22,71,0.43929615727732285],[126,-22,72,0.44315780552734546],[126,-22,73,0.4471244226280227],[126,-22,74,0.45121361640227914],[126,-22,75,0.4554388130505141],[126,-22,76,0.4598084192681353],[126,-22,77,0.4643251938156089],[126,-22,78,0.46898582914769293],[126,-22,79,0.4737807433625295],[126,-21,64,0.41107321729322127],[126,-21,65,0.4146125690335774],[126,-21,66,0.41813100039704015],[126,-21,67,0.4216399560563882],[126,-21,68,0.425156162437111],[126,-21,69,0.4287001583028595],[126,-21,70,0.4322951340064062],[126,-21,71,0.43596509684341794],[126,-21,72,0.4397332239998399],[126,-21,73,0.44362042334625695],[126,-21,74,0.4476441039390946],[126,-21,75,0.4518171577478645],[126,-21,76,0.4561471537781638],[126,-21,77,0.4606357454051973],[126,-21,78,0.46527829137619736],[126,-21,79,0.47006369058542263],[126,-20,64,0.40861170752961884],[126,-20,65,0.41198829483434607],[126,-20,66,0.4153523038928798],[126,-20,67,0.4187157143463885],[126,-20,68,0.4220965364062163],[126,-20,69,0.4255169854446441],[126,-20,70,0.42900147154854046],[126,-20,71,0.4325747689647532],[126,-20,72,0.43626039579654247],[126,-20,73,0.44007920476580664],[126,-20,74,0.4440481867843658],[126,-20,75,0.44817948872545227],[126,-20,76,0.4524796464266435],[126,-20,77,0.4569490335912045],[126,-20,78,0.4615815268903178],[126,-20,79,0.4663643872071599],[126,-19,64,0.40606200764085465],[126,-19,65,0.40928000793654823],[126,-19,66,0.41249458428660774],[126,-19,67,0.41571820139142796],[126,-19,68,0.41897007031051925],[126,-19,69,0.42227398915629927],[126,-19,70,0.42565546559776785],[126,-19,71,0.4291398982382894],[126,-19,72,0.4327509908858627],[126,-19,73,0.4365093803787268],[126,-19,74,0.44043147958288786],[126,-19,75,0.4445285368158473],[126,-19,76,0.44880591258176794],[126,-19,77,0.4532625741310776],[126,-19,78,0.45789080798631115],[126,-19,79,0.46267615020904307],[126,-18,64,0.40345458997372474],[126,-18,65,0.40651569343545174],[126,-18,66,0.4095830269148875],[126,-18,67,0.4126694784542878],[126,-18,68,0.41579539173907143],[126,-18,69,0.4189860919774707],[126,-18,70,0.4222681164582487],[126,-18,71,0.425667411133819],[126,-18,72,0.4292077831718173],[126,-18,73,0.4329095692033919],[126,-18,74,0.4367885207530598],[126,-18,75,0.4408549079631459],[126,-18,76,0.44511284234836],[126,-18,77,0.4495598189365788],[126,-18,78,0.4541864777747346],[126,-18,79,0.45897658440708733],[126,-17,64,0.4008034438002004],[126,-17,65,0.4037069668914653],[126,-17,66,0.40662665507297463],[126,-17,67,0.40957574951868786],[126,-17,68,0.4125756694331171],[126,-17,69,0.4156532400414152],[126,-17,70,0.4188360006177937],[126,-17,71,0.4221504160655333],[126,-17,72,0.425620368329767],[126,-17,73,0.42926586560207025],[126,-17,74,0.4331019706683736],[126,-17,75,0.4371379493705534],[126,-17,76,0.4413766397663675],[126,-17,77,0.4458140421858767],[126,-17,78,0.45043912999957303],[126,-17,79,0.45523388053735425],[126,-16,64,0.39808137624084383],[126,-16,65,0.40082791683033897],[126,-16,66,0.4036012190606474],[126,-16,67,0.40641480342011016],[126,-16,68,0.4092910809470014],[126,-16,69,0.4122583061912675],[126,-16,70,0.415344935121528],[126,-16,71,0.41857785536856545],[126,-16,72,0.42198092067950377],[126,-16,73,0.4255737048979449],[126,-16,74,0.4293704766831832],[126,-16,75,0.4333793957918732],[126,-16,76,0.4376019313523821],[126,-16,77,0.4420325021692844],[126,-16,78,0.44665833870758326],[126,-16,79,0.4514595660265339],[126,-15,64,0.3952607201770649],[126,-15,65,0.39785270222013175],[126,-15,66,0.40048308012367456],[126,-15,67,0.40316556854246466],[126,-15,68,0.40592345012538106],[126,-15,69,0.4087862826721331],[126,-15,70,0.41178328389237395],[126,-15,71,0.4149415885909384],[126,-15,72,0.41828483456051285],[126,-15,73,0.4218319689592222],[126,-15,74,0.42559627623924307],[126,-15,75,0.4295846282957427],[126,-15,76,0.43379695710639055],[126,-15,77,0.43822594973425344],[126,-15,78,0.4428569651756609],[126,-15,79,0.4476681721528753],[126,-14,64,0.36005904214750156],[126,-14,65,0.3947650193418188],[126,-14,66,0.3972574877915177],[126,-14,67,0.3998150337755092],[126,-14,68,0.40246165637772596],[126,-14,69,0.40522804420563807],[126,-14,70,0.4081439679037814],[126,-14,71,0.4112365758621461],[126,-14,72,0.41452904290479514],[126,-14,73,0.41803943930772375],[126,-14,74,0.42177982105468037],[126,-14,75,0.4257555418379679],[126,-14,76,0.42996478690854645],[126,-14,77,0.4343983284798947],[126,-14,78,0.4390395019977871],[126,-14,79,0.4438644022066089],[126,-13,64,0.20154863211221843],[126,-13,65,0.24217048167027613],[126,-13,66,0.28706020735227683],[126,-13,67,0.336172136681607],[126,-13,68,0.3894410137666692],[126,-13,69,0.4015788954899074],[126,-13,70,0.40442321191443115],[126,-13,71,0.40745985130702034],[126,-13,72,0.41071124188898683],[126,-13,73,0.414194293965363],[126,-13,74,0.4179195629442907],[126,-13,75,0.421890632225842],[126,-13,76,0.42610371589356205],[126,-13,77,0.4305474807425663],[126,-13,78,0.43520308678744635],[126,-13,79,0.4400444450146909],[126,-12,64,0.09801383416924311],[126,-12,65,0.12320585218172424],[126,-12,66,0.15198197145092807],[126,-12,67,0.18436825513777652],[126,-12,68,0.2203695087638674],[126,-12,69,0.25996852060164777],[126,-12,70,0.30311951189250724],[126,-12,71,0.34974964640121137],[126,-12,72,0.39976093178639266],[126,-12,73,0.4102936826879728],[126,-12,74,0.41401179807523186],[126,-12,75,0.4179851201750364],[126,-12,76,0.42220767449245816],[126,-12,77,0.4266658450794316],[126,-12,78,0.43133848382355633],[126,-12,79,0.4361972328404732],[126,-11,64,0.03770513261834075],[126,-11,65,0.051043526200988225],[126,-11,66,0.0672024350430846],[126,-11,67,0.08627946848619351],[126,-11,68,0.10834934656762393],[126,-11,69,0.13346288893429936],[126,-11,70,0.16163929253941792],[126,-11,71,0.19286758740590473],[126,-11,72,0.22710851267851262],[126,-11,73,0.2642965866331099],[126,-11,74,0.30434235634346096],[126,-11,75,0.3471348131689395],[126,-11,76,0.3925439607947329],[126,-11,77,0.4227411471912695],[126,-11,78,0.4274310358904237],[126,-11,79,0.4323056462276088],[126,-10,64,0.008875435461807739],[126,-10,65,0.01393650040805362],[126,-10,66,0.0209744541386133],[126,-10,67,0.030158238264444085],[126,-10,68,0.04163232446389335],[126,-10,69,0.05551548818129292],[126,-10,70,0.0718919091876858],[126,-10,71,0.09081259076859101],[126,-10,72,0.11229722658042114],[126,-10,73,0.1363362615207594],[126,-10,74,0.16289313228856878],[126,-10,75,0.19190667373976986],[126,-10,76,0.2232936776782407],[126,-10,77,0.2569515913562476],[126,-10,78,0.2927613437101986],[126,-10,79,0.3305902882124192],[126,-9,64,-2.212365096891754E-4],[126,-9,65,1.3864363597224354E-4],[126,-9,66,0.0015514597443093896],[126,-9,67,0.004257250868364161],[126,-9,68,0.00847006819428586],[126,-9,69,0.014376566243385527],[126,-9,70,0.022125924181278317],[126,-9,71,0.03183124453944894],[126,-9,72,0.0435714257803595],[126,-9,73,0.05739322716861412],[126,-9,74,0.07331351159721765],[126,-9,75,0.09132165241821273],[126,-9,76,0.11138209083199639],[126,-9,77,0.13343703099450938],[126,-9,78,0.1574092607170484],[126,-9,79,0.18320508645082564],[126,-8,64,-0.001330885228195931],[126,-8,65,-0.0020963964955892085],[126,-8,66,-0.0028135748021831174],[126,-8,67,-0.0029163103300005573],[126,-8,68,-8.62922400765115E-4],[126,-8,69,0.0012540273495494966],[126,-8,70,0.0034652462358610806],[126,-8,71,0.005796156031968388],[126,-8,72,0.00917317473947624],[126,-8,73,0.01570679621966153],[126,-8,74,0.02383989747648544],[126,-8,75,0.033613137909329474],[126,-8,76,0.04503952406337109],[126,-8,77,0.05810710602000129],[126,-8,78,0.07278179556157563],[126,-8,79,0.08901029463396488],[126,-7,64,-0.006200492743489621],[126,-7,65,-0.004516111581498063],[126,-7,66,-0.003868995346393745],[126,-7,67,-0.0038776727530239483],[126,-7,68,-0.003906919923481446],[126,-7,69,-0.0017219977280962737],[126,-7,70,5.72455241976742E-4],[126,-7,71,0.0029998399040082517],[126,-7,72,0.005577107774240761],[126,-7,73,0.008314341604551877],[126,-7,74,0.011214510591409583],[126,-7,75,0.014273399429052357],[126,-7,76,0.01747971014584636],[126,-7,77,0.02081533534173269],[126,-7,78,0.027100641462278894],[126,-7,79,0.03622485718660121],[126,-6,64,-0.015218846621345703],[126,-6,65,-0.013198639345858939],[126,-6,66,-0.011146153222769642],[126,-6,67,-0.009053394038679781],[126,-6,68,-0.0068978027935671865],[126,-6,69,-0.004646330163529395],[126,-6,70,-0.0022713656952833188],[126,-6,71,2.4830938815645354E-4],[126,-6,72,0.002927083954193797],[126,-6,73,0.005772240400750391],[126,-6,74,0.008783839201381323],[126,-6,75,0.011954763670760754],[126,-6,76,0.015270923757825341],[126,-6,77,0.01871161737843542],[126,-6,78,0.02225004751776498],[126,-6,79,0.025853993069935306],[126,-5,64,-0.018248807931272634],[126,-5,65,-0.016230935985970984],[126,-5,66,-0.014161936701516593],[126,-5,67,-0.01203574104186892],[126,-5,68,-0.009831346338503948],[126,-5,69,-0.007516863386612097],[126,-5,70,-0.005066482467742251],[126,-5,71,-0.002461280663222418],[126,-5,72,3.104998400834721E-4],[126,-5,73,0.003253320507077191],[126,-5,74,0.006364361536418119],[126,-5,75,0.00963368223995273],[126,-5,76,0.01304452541237738],[126,-5,77,0.016573764117132034],[126,-5,78,0.02019248906178573],[126,-5,79,0.023866734502438564],[126,-4,64,-0.021212285109133804],[126,-4,65,-0.01919683266082627],[126,-4,66,-0.017112463708803125],[126,-4,67,-0.014955271806960256],[126,-4,68,-0.012706008349031957],[126,-4,69,-0.010334102377254045],[126,-4,70,-0.007815656826198355],[126,-4,71,-0.005134107818051825],[126,-4,72,-0.0022803417319912913],[126,-4,73,7.473190707702377E-4],[126,-4,74,0.0039432609712278955],[126,-4,75,0.007294853112526323],[126,-4,76,0.01078284931295746],[126,-4,77,0.014381916233796217],[126,-4,78,0.018061285942318844],[126,-4,79,0.021785530807728444],[126,-3,64,-0.024105198268064624],[126,-3,65,-0.022093150811083997],[126,-3,66,-0.01999574694073568],[126,-3,67,-0.017811462589853652],[126,-3,68,-0.015522969655428197],[126,-3,69,-0.013101135706350958],[126,-3,70,-0.010524042037544853],[126,-3,71,-0.007777495056203685],[126,-3,72,-0.004854983333932615],[126,-3,73,-0.0017575198977274084],[126,-3,74,0.0015066292040838204],[126,-3,75,0.004922328799054321],[126,-3,76,0.00846806947323718],[126,-3,77,0.012116571759207606],[126,-3,78,0.015835497761237192],[126,-3,79,0.019588268179519884],[126,-2,64,-0.02692631804877923],[126,-2,65,-0.024919566093816844],[126,-2,66,-0.022812614832979236],[126,-2,67,-0.02060651839828002],[126,-2,68,-0.018285999586333576],[126,-2,69,-0.015823443575825297],[126,-2,70,-0.013198927914940076],[126,-2,71,-0.01040058870644584],[126,-2,72,-0.00742442132076143],[126,-2,73,-0.004273983528797123],[126,-2,74,-9.60002214450561E-4],[126,-2,75,0.0025001149823060476],[126,-2,76,0.0060828615598574574],[126,-2,77,0.00975930588762115],[126,-2,78,0.013495854923965865],[126,-2,79,0.017255105930413205],[126,-1,64,-0.029677077972663522],[126,-1,65,-0.02767840015182207],[126,-1,66,-0.025566474818542535],[126,-1,67,-0.023345100716576854],[126,-1,68,-0.021001142317559684],[126,-1,69,-0.018508538147531513],[126,-1,70,-0.01584933183493786],[126,-1,71,-0.013013898304988383],[126,-1,72,-0.010000594162224062],[126,-1,73,-0.0068153279884046476],[126,-1,74,-0.0034710518208506966],[126,-1,75,1.2824768574744901E-5],[126,-1,76,0.003611096428750314],[126,-1,77,0.007293497922176915],[126,-1,78,0.011025512340332928],[126,-1,79,0.01476924972485527],[126,0,64,-0.03236117842697441],[126,0,65,-0.030374207543117555],[126,0,66,-0.028262876915246354],[126,0,67,-0.026033862713196645],[126,0,68,-0.023676220072525338],[126,0,69,-0.02116543241986555],[126,0,70,-0.01848543234332005],[126,0,71,-0.01562869536224576],[126,0,72,-0.012595748139199428],[126,0,73,-0.009394614124151273],[126,0,74,-0.006040197982256135],[126,0,75,-0.00255361027486702],[126,0,76,0.0010385660281495212],[126,0,77,0.0047050655312868995],[126,0,78,0.008410785134911046],[126,0,79,0.010890100711519076],[126,1,64,-0.03190587139841854],[126,1,65,-0.0330131557402142],[126,1,66,-0.030908875968796656],[126,1,67,-0.028680790499183206],[126,1,68,-0.026320151802759244],[126,1,69,-0.02380393613038271],[126,1,70,-0.021117843447604846],[126,1,71,-0.018256268514044743],[126,1,72,-0.01522167701498329],[126,1,73,-0.012023936366864217],[126,1,74,-0.008679602615050583],[126,1,75,-0.005211164923933586],[126,1,76,-0.001646249231510793],[126,1,77,0.00198321729980736],[126,1,78,0.005641879356291258],[126,1,79,0.006839416890767303],[126,2,64,-0.007904937644215912],[126,2,65,-0.013013225168810904],[126,2,66,-0.019629477300333396],[126,2,67,-0.027922732326764434],[126,2,68,-0.028942084443576946],[126,2,69,-0.026433774531187063],[126,2,70,-0.02375672363805852],[126,2,71,-0.02090702673623561],[126,2,72,-0.01788882445909213],[126,2,73,-0.014713530263196392],[126,2,74,-0.011399030403836882],[126,2,75,-0.007968858236877287],[126,2,76,-0.004451344396099339],[126,2,77,-8.787444200054426E-4],[126,2,78,0.0027136545836791356],[126,2,79,0.002942976993651229],[126,3,64,-0.0013326756391732685],[126,3,65,-0.002401207313744479],[126,3,66,-0.004054534122273889],[126,3,67,-0.006535195607512628],[126,3,68,-0.010027089473516876],[126,3,69,-0.01466244645214531],[126,3,70,-0.02054940616844443],[126,3,71,-0.023589444428739302],[126,3,72,-0.02060525896297665],[126,3,73,-0.017470787485234056],[126,3,74,-0.01420491440730167],[126,3,75,-0.01083188016754593],[126,3,76,-0.007380387585832197],[126,3,77,-0.003882701408453898],[126,3,78,-3.737425283283427E-4],[126,3,79,-7.893987952814503E-4],[126,4,64,-5.170625701200468E-4],[126,4,65,-0.0010498520612432574],[126,4,66,-0.0011660155493034032],[126,4,67,-0.0011815756189271118],[126,4,68,-0.0013510954384010976],[126,4,69,-0.0018746966669205669],[126,4,70,-0.0029264659342123234],[126,4,71,-0.004656674845393581],[126,4,72,-0.007193391311690231],[126,4,73,-0.010644093540756964],[126,4,74,-0.015097274382418195],[126,4,75,-0.013800665083381892],[126,4,76,-0.010431887194345521],[126,4,77,-0.007024989781007336],[126,4,78,-0.00381863596776587],[126,4,79,-0.00435400717317568],[126,5,64,0.006216824409186312],[126,5,65,0.002715270156961039],[126,5,66,7.101930973062473E-4],[126,5,67,-1.8787108225793358E-4],[126,5,68,-3.0411029211918747E-4],[126,5,69,9.346540268786323E-5],[126,5,70,7.647790815116229E-4],[126,5,71,0.0014956567453040814],[126,5,72,0.002096410301870028],[126,5,73,0.002400397807093767],[126,5,74,0.0022625731018524743],[126,5,75,0.0015580363497110167],[126,5,76,1.8059626301354138E-4],[126,5,77,-0.0019586459898502974],[126,5,78,-0.0052175970516547075],[126,5,79,-0.0077537357260326414],[126,6,64,0.030548543234484925],[126,6,65,0.020573276859463138],[126,6,66,0.01325300399229683],[126,6,67,0.008124872127824591],[126,6,68,0.004793121050044332],[126,6,69,0.0029218704677434772],[126,6,70,0.002205020751307285],[126,6,71,0.002364392912904413],[126,6,72,0.003148487686818191],[126,6,73,0.004331203321920658],[126,6,74,0.005710524074231984],[126,6,75,0.007107190819058716],[126,6,76,0.00836336455413632],[126,6,77,0.009341292841321996],[126,6,78,0.009827958710205477],[126,6,79,0.006362546757320613],[126,7,64,0.08416682020270705],[126,7,65,0.06421261461249225],[126,7,66,0.04815083105469394],[126,7,67,0.03544530511495548],[126,7,68,0.025629765914324896],[126,7,69,0.018300483981140182],[126,7,70,0.013085301683386338],[126,7,71,0.00964192369998985],[126,7,72,0.007656833994335578],[126,7,73,0.0068441546315498045],[126,7,74,0.006944458286270632],[126,7,75,0.007723545781095222],[126,7,76,0.008971199413734338],[126,7,77,0.010499922175064201],[126,7,78,0.012143672235677992],[126,7,79,0.010726747178225979],[126,8,64,0.17877675388049957],[126,8,65,0.1453387506645955],[126,8,66,0.11710961576409437],[126,8,67,0.09348007416028586],[126,8,68,0.07391345620545907],[126,8,69,0.05793818915598492],[126,8,70,0.04511599554677333],[126,8,71,0.03504031748071473],[126,8,72,0.027335375045270293],[126,8,73,0.021655151313780707],[126,8,74,0.017682315644721763],[126,8,75,0.015127096543350678],[126,8,76,0.01372611483053799],[126,8,77,0.013241187272982017],[126,8,78,0.013458110170387415],[126,8,79,0.01191059180970723],[126,9,64,0.2917090939500679],[126,9,65,0.27565792973672393],[126,9,66,0.23183638249209002],[126,9,67,0.1939372039215475],[126,9,68,0.16135348855191023],[126,9,69,0.1335458007507862],[126,9,70,0.11000964379811026],[126,9,71,0.09027400522886884],[126,9,72,0.07390054254584848],[126,9,73,0.060482681718566744],[126,9,74,0.049644640053085595],[126,9,75,0.04104038462248481],[126,9,76,0.034352536987528326],[126,9,77,0.029291234409222832],[126,9,78,0.02559295715868669],[126,9,79,0.021552124670265058],[126,10,64,0.28581869461812437],[126,10,65,0.28522369818000215],[126,10,66,0.2848814858760449],[126,10,67,0.2847581770392093],[126,10,68,0.28484788290074403],[126,10,69,0.2568321002555878],[126,10,70,0.21947682151364423],[126,10,71,0.1870554728287355],[126,10,72,0.15906679584866992],[126,10,73,0.13504318480164793],[126,10,74,0.11454979970989418],[126,10,75,0.09718360243420528],[126,10,76,0.08257232626009724],[126,10,77,0.07037338926909649],[126,10,78,0.06027276120154779],[126,10,79,0.05129259652725014],[126,11,64,0.2798728907887088],[126,11,65,0.27911456939624496],[126,11,66,0.27860102475101256],[126,11,67,0.2782969525160444],[126,11,68,0.27819594929406416],[126,11,69,0.2783141560411648],[126,11,70,0.2786584948702939],[126,11,71,0.27922720624503156],[126,11,72,0.2800110897762479],[126,11,73,0.25705249151209913],[126,11,74,0.2241152300014819],[126,11,75,0.1952756229907646],[126,11,76,0.17010558177753232],[126,11,77,0.14820872749950365],[126,11,78,0.12921929436076288],[126,11,79,0.11277637557248131],[126,12,64,0.2738974678617907],[126,12,65,0.27297315371219394],[126,12,66,0.27228482166727436],[126,12,67,0.27179631341735083],[126,12,68,0.27150099869520855],[126,12,69,0.27141518829671635],[126,12,70,0.2715461454805027],[126,12,71,0.27189262258803426],[126,12,72,0.2724461019294801],[126,12,73,0.273191969081273],[126,12,74,0.274110617282086],[126,12,75,0.2751784817877496],[126,12,76,0.27636900322184077],[126,12,77,0.27451670530769395],[126,12,78,0.2441519112721645],[126,12,79,0.2171898270071196],[126,13,64,0.2679234029029677],[126,13,65,0.26683156069518527],[126,13,66,0.2659661504888421],[126,13,67,0.2652907478047239],[126,13,68,0.26479875679951514],[126,13,69,0.2645066349871184],[126,13,70,0.26442196174074023],[126,13,71,0.26454397890907044],[126,13,72,0.2648648300585851],[126,13,73,0.2653707286327942],[126,13,74,0.2660430537492182],[126,13,75,0.26685937253787084],[126,13,76,0.26779438810987294],[126,13,77,0.26882081243086586],[126,13,78,0.2699101635617893],[126,13,79,0.27103348691644563],[126,14,64,0.261990118096274],[126,14,65,0.2607304213383837],[126,14,66,0.2596868106953957],[126,14,67,0.25882316423887913],[126,14,68,0.2581331320771614],[126,14,69,0.25763322533822397],[126,14,70,0.2573312468962326],[126,14,71,0.2572268439631216],[126,14,72,0.2573127464728593],[126,14,73,0.25757593080351615],[126,14,74,0.2579987075918863],[126,14,75,0.2585597325878878],[126,14,76,0.259234939689708],[126,14,77,0.25999839549498044],[126,14,78,0.2608230748987208],[126,14,79,0.26168155746235916],[126,15,64,0.25614641749437833],[126,15,65,0.25471963947285403],[126,15,66,0.25349761057296855],[126,15,67,0.2524450281961927],[126,15,68,0.25155593774082674],[126,15,69,0.25084674638548743],[126,15,70,0.2503253334723962],[126,15,71,0.24999162503799197],[126,15,72,0.24983883347655206],[126,15,73,0.249854618467586],[126,15,74,0.2500221679580533],[126,15,75,0.2503211981936091],[126,15,76,0.2507288719968932],[126,15,77,0.2512206346945554],[126,15,78,0.25177096729874715],[126,15,79,0.25235405675012507],[126,16,64,0.2504316368516718],[126,16,65,0.24883906621278232],[126,16,66,0.24743849034072607],[126,16,67,0.24619589276958254],[126,16,68,0.24510583550056042],[126,16,69,0.24418445905210412],[126,16,70,0.2434395881239036],[126,16,71,0.24287133512312062],[126,16,72,0.24247334040544433],[126,16,73,0.24223392929371873],[126,16,74,0.24213718470783951],[126,16,75,0.24216393445438708],[126,16,76,0.2422926524392057],[126,16,77,0.24250027327998624],[126,16,78,0.24276292000924288],[126,16,79,0.24249674286336548],[126,17,64,0.24486145845380242],[126,17,65,0.24310479463886403],[126,17,66,0.24152563731672114],[126,17,67,0.24009167715723814],[126,17,68,0.2387980981184165],[126,17,69,0.23766062393715354],[126,17,70,0.23668692362362836],[126,17,71,0.23587724751564298],[126,17,72,0.2352256642614241],[126,17,73,0.2347212098826578],[126,17,74,0.23434894780361892],[126,17,75,0.23409093895903405],[126,17,76,0.2339271213193166],[126,17,77,0.23383609839605632],[126,17,78,0.233209829503843],[126,17,79,0.2321050568449662],[126,18,64,0.23943016023355074],[126,18,65,0.237511541701534],[126,18,66,0.23575405986909023],[126,18,67,0.23412748693470167],[126,18,68,0.23262771939069274],[126,18,69,0.23126992901406349],[126,18,70,0.23006155412211426],[126,18,71,0.2290029688054248],[126,18,72,0.22808871050439528],[126,18,73,0.22730861494159826],[126,18,74,0.22664885735944293],[126,18,75,0.22609289925133425],[126,18,76,0.22487073555158774],[126,18,77,0.22366345993954662],[126,18,78,0.22250627875003046],[126,18,79,0.22140946331407488],[126,19,64,0.22987395007544648],[126,19,65,0.22849222060751398],[126,19,66,0.2270951255704991],[126,19,67,0.22571516767694974],[126,19,68,0.22435875817219456],[126,19,69,0.22301299232047203],[126,19,70,0.2216708962137394],[126,19,71,0.22033080801998597],[126,19,72,0.2189952475605409],[126,19,73,0.21766988114399363],[126,19,74,0.21636258263003907],[126,19,75,0.2150825914481984],[126,19,76,0.21383976804870916],[126,19,77,0.21264394701786543],[126,19,78,0.21150438785103148],[126,19,79,0.21042932314334672],[126,20,64,0.2192658442603386],[126,20,65,0.21774217413318125],[126,20,66,0.2162201370521112],[126,20,67,0.21472970876267955],[126,20,68,0.21327664222714693],[126,20,69,0.21184903035891892],[126,20,70,0.2104404767800514],[126,20,71,0.2090494466247184],[126,20,72,0.20767815953698587],[126,20,73,0.20633158226855974],[126,20,74,0.20501652176147891],[126,20,75,0.20374081934197574],[126,20,76,0.20251264639460081],[126,20,77,0.20133990163227541],[126,20,78,0.20022970983163205],[126,20,79,0.19918802166380528],[126,21,64,0.2083522543936918],[126,21,65,0.20668388260427908],[126,21,66,0.2050355829887238],[126,21,67,0.20343457825599337],[126,21,68,0.20188590966700595],[126,21,69,0.20037874154521887],[126,21,70,0.19890726676179338],[126,21,71,0.19747003194355436],[126,21,72,0.19606886288932923],[126,21,73,0.19470789351167253],[126,21,74,0.19339269908912757],[126,21,75,0.19212953434629645],[126,21,76,0.19092467661372964],[126,21,77,0.189783874059142],[126,21,78,0.18871189872929642],[126,21,79,0.18771220389812243],[126,22,64,0.19719560142324044],[126,22,65,0.1953792726523532],[126,22,66,0.19360260341779184],[126,22,67,0.19188989461431968],[126,22,68,0.19024543613966216],[126,22,69,0.18865951421599236],[126,22,70,0.18712690615654],[126,22,71,0.18564618586648693],[126,22,72,0.18421869057631313],[126,22,73,0.18284759449568036],[126,22,74,0.18153709006315927],[126,22,75,0.1802916771916784],[126,22,76,0.17911556063773978],[126,22,77,0.17801215535648135],[126,22,78,0.17698369944823217],[126,22,79,0.1760309740554671],[126,23,64,0.18586410985545165],[126,23,65,0.1838961306451918],[126,23,66,0.18198819424710944],[126,23,67,0.18016157104539643],[126,23,68,0.17841977370236908],[126,23,69,0.17675423594258924],[126,23,70,0.17516029928972435],[126,23,71,0.17363650547551915],[126,23,72,0.17218361288583786],[126,23,73,0.17080372269847602],[126,23,74,0.16949951527019286],[126,23,75,0.16827359704920272],[126,23,76,0.16712795801275482],[126,23,77,0.16606353935977472],[126,23,78,0.16507991092961063],[126,23,79,0.16417505756994394],[126,24,64,0.1744290563256327],[126,24,65,0.17230536496228493],[126,24,66,0.17026250201507573],[126,24,67,0.168318661035669],[126,24,68,0.16647656541869107],[126,24,69,0.1647287959229582],[126,24,70,0.16307122350889344],[126,24,71,0.16150229573047267],[126,24,72,0.16002211045599943],[126,24,73,0.15863160135327464],[126,24,74,0.15733183557309394],[126,24,75,0.15612342377997887],[126,24,76,0.15500604239958682],[126,24,77,0.15397806768080044],[126,24,78,0.15303632091093053],[126,24,79,0.15217592387504045],[126,25,64,0.1629621165462998],[126,25,65,0.16067836361506554],[126,25,66,0.15849620995888156],[126,25,67,0.15643078984044462],[126,25,68,0.15448403919058712],[126,25,69,0.15264965860833746],[126,25,70,0.15092399997521266],[126,25,71,0.14930535413582807],[126,25,72,0.14779308835892166],[126,25,73,0.14638689688130538],[126,25,74,0.1450861648421471],[126,25,75,0.1438894456281868],[126,25,76,0.14279405137020895],[126,25,77,0.14179575605983508],[126,25,78,0.1408886104973858],[126,25,79,0.14006486803652543],[126,26,64,0.15153281171706295],[126,26,65,0.14908444814100208],[126,26,66,0.14675801615039563],[126,26,67,0.1445656725052058],[126,26,68,0.14250858118357798],[126,26,69,0.1405815086949885],[126,26,70,0.13878122644365382],[126,26,71,0.13710580703559627],[126,26,72,0.13555383064964435],[126,26,73,0.13412370501988186],[126,26,74,0.13281309921014128],[126,26,75,0.13161849107471058],[126,26,76,0.1305348280203631],[126,26,77,0.12955530041572688],[126,26,78,0.12867122673885287],[126,26,79,0.12787204931296195],[126,27,64,0.1402060556503831],[126,27,65,0.13758842487472586],[126,27,66,0.13511220463491896],[126,27,67,0.13278671916181725],[126,27,68,0.13061238937361097],[126,27,69,0.12858496777541314],[126,27,70,0.12670157207825167],[126,27,71,0.12495999732601565],[126,27,72,0.12335799491020749],[126,27,73,0.12189266491859774],[126,27,74,0.1205599618741058],[126,27,75,0.1193543136362633],[126,27,76,0.11826835296184814],[126,27,77,0.1172927609562768],[126,27,78,0.11641622139717385],[126,27,79,0.11562548467652146],[126,28,64,0.12903980408004662],[126,28,65,0.12624823491519865],[126,28,66,0.12361631072506843],[126,28,67,0.12115072855918295],[126,28,68,0.11885120795585141],[126,28,69,0.11671438314787039],[126,28,70,0.11473763454279044],[126,28,71,0.11291842355632471],[126,28,72,0.11125364648288233],[126,28,73,0.10973910062063781],[126,28,74,0.10836906258840379],[126,28,75,0.10713597849215016],[126,28,76,0.10603026532847813],[126,28,77,0.10504022275332504],[126,28,78,0.1041520541007035],[126,28,79,0.10334999530870397],[126,29,64,0.11808280786491672],[126,29,65,0.11511270435730478],[126,29,66,0.11231888185284578],[126,29,67,0.10970567103731466],[126,29,68,0.1072721436005682],[126,29,69,0.10501568952016556],[126,29,70,0.10293385983329391],[126,29,71,0.10102373059932349],[126,29,72,0.09928133228014528],[126,29,73,0.09770118951883143],[126,29,74,0.09627597114257666],[126,29,75,0.09499624994295122],[126,29,76,0.09385037152304465],[126,29,77,0.09282443124971856],[126,29,78,0.09190235811399394],[126,29,79,0.09106610408386452],[126,30,64,0.10737248956903216],[126,30,65,0.10421941492723938],[126,30,66,0.10125735475005097],[126,30,67,0.0984885823092298],[126,30,68,0.09591158547598921],[126,30,69,0.09352436604745712],[126,30,70,0.09132454778027549],[126,30,71,0.08930877528065059],[126,30,72,0.0874722179987716],[126,30,73,0.08580818203470775],[126,30,74,0.08430782948044824],[126,30,75,0.08296000475810018],[126,30,76,0.08175116715956367],[126,30,77,0.08066542855084842],[126,30,78,0.07968469497864825],[126,30,79,0.07878891070810484],[126,31,64,0.09693758005406357],[126,31,65,0.09359753999943293],[126,31,66,0.09046110122267875],[126,31,67,0.08752882629023837],[126,31,68,0.08479869168670502],[126,31,69,0.08226915395407813],[126,31,70,0.0799378090257357],[126,31,71,0.07780083104550203],[126,31,72,0.07585254857864246],[126,31,73,0.07408512538490747],[126,31,74,0.07248834538892329],[126,31,75,0.07104950122843649],[126,31,76,0.0697533855164244],[126,31,77,0.06858238372142608],[126,31,78,0.06751666735569238],[126,31,79,0.06653448596307283],[126,32,64,0.08680294626271479],[126,32,65,0.08327294296846528],[126,32,66,0.0799568058745212],[126,32,67,0.0768537574490217],[126,32,68,0.07396134061469985],[126,32,69,0.07127830229269325],[126,32,70,0.0688021113071964],[126,32,71,0.06652844114445725],[126,32,72,0.06445081456357409],[126,32,73,0.06256034894781376],[126,32,74,0.06084560195584394],[126,32,75,0.05929251678862934],[126,32,76,0.057884466154620916],[126,32,77,0.05660239379573478],[126,32,78,0.05542505223350755],[126,32,79,0.05432933520883403],[126,33,64,0.07697900876839334],[126,33,65,0.07325715867622405],[126,33,66,0.06975702244368917],[126,33,67,0.06647686007751255],[126,33,68,0.06341386099280702],[126,33,69,0.06056689872815003],[126,33,70,0.057933222533228274],[126,33,71,0.0555079868621858],[126,33,72,0.05328395925848883],[126,33,73,0.05125132470035886],[126,33,74,0.04939758590477777],[126,33,75,0.04770755885656341],[126,33,76,0.046163462608094785],[126,33,77,0.04474510218737238],[126,33,78,0.043430143261181525],[126,33,79,0.04219447702622744],[126,34,64,0.06745856971980015],[126,34,65,0.06354412954527051],[126,34,66,0.059856826270220195],[126,34,67,0.05639432143484423],[126,34,68,0.053153529416376494],[126,34,69,0.05013329687837662],[126,34,70,0.047330574864481015],[126,34,71,0.0447399963368195],[126,34,72,0.042353641033366835],[126,34,73,0.04016089218509607],[126,34,74,0.0381483845446532],[126,34,75,0.03630004295948276],[126,34,76,0.03459721051409766],[126,34,77,0.03301886507086175],[126,34,78,0.03154192286012939],[126,34,79,0.03014162760881553],[126,35,64,0.058215271245410594],[126,35,65,0.05410863762620735],[126,35,66,0.05023222653620129],[126,35,67,0.04658342645536731],[126,35,68,0.043158948974787274],[126,35,69,0.039957482158997276],[126,35,70,0.03697562261288484],[126,35,71,0.034207500573660836],[126,35,72,0.031644594413509],[126,35,73,0.02927563224286641],[126,35,74,0.027086580034922546],[126,35,75,0.025060715486010805],[126,35,76,0.02317878663104881],[126,35,77,0.021419254050358452],[126,35,78,0.019758615337879985],[126,35,79,0.01817181035081751],[126,36,64,0.0492021793868478],[126,36,65,0.04490485768289016],[126,36,66,0.04083869375725648],[126,36,67,0.037001060228797136],[126,36,68,0.03338852639444874],[126,36,69,0.029999525246187486],[126,36,70,0.026830275420929164],[126,36,71,0.023874451172144866],[126,36,72,0.021123038326454784],[126,36,73,0.018564272611361406],[126,36,74,0.016183659758271296],[126,36,75,0.013964076591556207],[126,36,76,0.011885952131184568],[126,36,77,0.009927527565593867],[126,36,78,0.008065193796741331],[126,36,79,0.0062739051203883475],[126,37,64,0.04035049776824194],[126,37,65,0.035865035425287364],[126,37,66,0.03160980649632718],[126,37,67,0.027582322032842402],[126,37,68,0.02377905122800916],[126,37,69,0.020198126394012028],[126,37,70,0.016835409609540643],[126,37,71,0.01368420226236451],[126,37,72,0.01073513357089501],[126,37,73,0.007976126991803537],[126,37,74,0.005392443915089031],[126,37,75,0.0029668038662157515],[126,37,76,6.795802630398381E-4],[126,37,77,-0.0014909293846663654],[126,37,78,-0.0035681600895349423],[126,37,79,-0.00557686420014172],[126,38,64,0.03157089743968362],[126,38,65,0.026900763361493864],[126,38,66,0.022458465035648793],[126,38,67,0.01824167014280106],[126,38,68,0.014246765755496814],[126,38,69,0.01047160435478023],[126,38,70,0.006911770225743184],[126,38,71,0.0035603201722209273],[126,38,72,4.076951589165826E-4],[126,38,73,-0.0025582941605398384],[126,38,74,-0.005352408618701107],[126,38,75,-0.007991849173359331],[126,38,76,-0.010496053933453152],[126,38,77,-0.01288642464528156],[126,38,78,-0.015185983847825366],[126,38,79,-0.017418964026601723],[126,39,64,0.022808418379830008],[126,39,65,0.017957574187891973],[126,39,66,0.013330944345448065],[126,39,67,0.008926348195145565],[126,39,68,0.0047401133734549655],[126,39,69,7.698648190027062E-4],[126,39,70,-0.0029889850252418568],[126,39,71,-0.006543474525508773],[126,39,72,-0.009903168404132637],[126,39,73,-0.013080162697317224],[126,39,74,-0.016089019691465284],[126,39,75,-0.018946633569458565],[126,39,76,-0.02167202765272299],[126,39,77,-0.02428608426820717],[126,39,78,-0.02681120839794671],[126,39,79,-0.029270926383239852],[126,40,64,0.014055085518275473],[126,40,65,0.009027645428860701],[126,40,66,0.004219662807943626],[126,40,67,-3.7079865360943945E-4],[126,40,68,-0.004747418750045097],[126,40,69,-0.008912765109404438],[126,40,70,-0.012871506649936512],[126,40,71,-0.01663064115088124],[126,40,72,-0.020199569274962515],[126,40,73,-0.023590100444941215],[126,40,74,-0.02681639110782079],[126,40,75,-0.02989481607848004],[126,40,76,-0.032843773803815764],[126,40,77,-0.035683426526992836],[126,40,78,-0.03843537645560204],[126,40,79,-0.03931637473347138],[126,41,64,0.0053055281749944784],[126,41,65,1.0571566343087722E-4],[126,41,66,-0.004880404603272653],[126,41,67,-0.009654352798251883],[126,41,68,-0.014219746654765105],[126,41,69,-0.018579335160857267],[126,41,70,-0.022737800866646046],[126,41,71,-0.026701986639643606],[126,41,72,-0.030480979993065885],[126,41,73,-0.03408613075906351],[126,41,74,-0.03753100259294456],[126,41,75,-0.040831258949967385],[126,41,76,-0.04400448432321366],[126,41,77,-0.04289037895435274],[126,41,78,-0.03752964158537411],[126,41,79,-0.032215245950659416],[126,42,64,-0.003442960501749595],[126,42,65,-0.008810892338190341],[126,42,66,-0.013971746376673519],[126,42,67,-0.018926399341187207],[126,42,68,-0.02367833226532157],[126,42,69,-0.02823049175993902],[126,42,70,-0.032587533604297045],[126,42,71,-0.03675605806755448],[126,42,72,-0.04074471649585287],[126,42,73,-0.04456425173555907],[126,42,74,-0.04822747281734214],[126,42,75,-0.04626995710120911],[126,42,76,-0.04101836913908168],[126,42,77,-0.035761435727418044],[126,42,78,-0.03052516191774672],[126,42,79,-0.02533631132839335],[126,43,64,-0.012187913950895869],[126,43,65,-0.017719816133288983],[126,43,66,-0.02305193142094939],[126,43,67,-0.02818423290849624],[126,43,68,-0.033119996635259955],[126,43,69,-0.03786241363620586],[126,43,70,-0.04241610340506243],[126,43,71,-0.04678736640269851],[126,43,72,-0.05098432460369502],[126,43,73,-0.04926548409916207],[126,43,74,-0.044216141002063135],[126,43,75,-0.039117070917181695],[126,43,76,-0.03399091879868122],[126,43,77,-0.028861646414839487],[126,43,78,-0.023754284519758136],[126,43,79,-0.018694622643452775],[126,44,64,-0.020918880648061758],[126,44,65,-0.02661090021526374],[126,44,66,-0.03211093406612215],[126,44,67,-0.037417780709863666],[126,44,68,-0.042534460150361664],[126,44,69,-0.04746448778067654],[126,44,70,-0.05221247077607111],[126,44,71,-0.05172365145151432],[126,44,72,-0.046949743518182825],[126,44,73,-0.042090992012007715],[126,44,74,-0.03716612215051209],[126,44,75,-0.03219535346040956],[126,44,76,-0.027200317663441432],[126,44,77,-0.02220391050683984],[126,44,78,-0.017230078401664357],[126,44,79,-0.012303540854002296],[126,45,64,-0.029614303734501177],[126,45,65,-0.035463137830218074],[126,45,66,-0.0411281602488349],[126,45,67,-0.04660673506781364],[126,45,68,-0.05190160307094998],[126,45,69,-0.053529494031943625],[126,45,70,-0.04908335901289423],[126,45,71,-0.04452618249301693],[126,45,72,-0.03987326236189247],[126,45,73,-0.03514111674598354],[126,45,74,-0.030347585829978766],[126,45,75,-0.02551186391312168],[126,45,76,-0.0206544621943237],[126,45,77,-0.015797102935564192],[126,45,78,-0.010962545797172948],[126,45,79,-0.006174347269461398],[126,46,64,-0.038238085162906756],[126,46,65,-0.04424130130217799],[126,46,66,-0.050069168195071415],[126,46,67,-0.0545917400978189],[126,46,68,-0.05051102469820464],[126,46,69,-0.04629849172554161],[126,46,70,-0.04196784515050382],[126,46,71,-0.037533199082755785],[126,46,72,-0.0330093835511896],[126,46,73,-0.02841217719175786],[126,46,74,-0.023758466876634923],[126,46,75,-0.019066334503434753],[126,46,76,-0.014355071339804449],[126,46,77,-0.009645120485340195],[126,46,78,-0.004957948167900288],[126,46,79,-3.15844733357034E-4],[126,47,64,-0.046754011057943426],[126,47,65,-0.052910036117329036],[126,47,66,-0.051146095804299865],[126,47,67,-0.04731424400619578],[126,47,68,-0.043343178481009915],[126,47,69,-0.039247410392687386],[126,47,70,-0.03504102440925418],[126,47,71,-0.03073806462605581],[126,47,72,-0.026352912181699148],[126,47,73,-0.021900586480247473],[126,47,74,-0.017396969918460466],[126,47,75,-0.012858956214018825],[126,47,76,-0.008304522619593907],[126,47,77,-0.003752726486756076],[126,47,78,7.76373188544139E-4],[126,47,79,0.005261868452563738],[126,48,64,-0.05096736488273136],[126,48,65,-0.04753727609017001],[126,48,66,-0.04396107934592236],[126,48,67,-0.040240185362297974],[126,48,68,-0.0363861407005702],[126,48,69,-0.032414519223450844],[126,48,70,-0.028339925055856977],[126,48,71,-0.024176422047823165],[126,48,72,-0.01993799014292846],[126,48,73,-0.015638901668200075],[126,48,74,-0.011294017295742854],[126,48,75,-0.006919001636945422],[126,48,76,-0.0025304586327256073],[126,48,77,0.0018540129037550295],[126,48,78,0.0062158430537915445],[126,48,79,0.010535593162525586],[126,49,64,-0.04381184060067678],[126,49,65,-0.04048575953355729],[126,49,66,-0.03702132272595006],[126,49,67,-0.03341783806465209],[126,49,68,-0.029686858348652673],[126,49,69,-0.025845213438496745],[126,49,70,-0.021908176776460227],[126,49,71,-0.017889940742837025],[126,49,72,-0.013804157338001891],[126,49,73,-0.009664394764282488],[126,49,74,-0.005484509497643416],[126,49,75,-0.0012789336643934442],[126,49,76,0.0029371222444280892],[126,49,77,0.007147551080385098],[126,49,78,0.011335314729333005],[126,49,79,0.015482493166406082],[126,50,64,-0.03693064234571788],[126,50,65,-0.033715240158395214],[126,50,66,-0.030368671427581508],[126,50,67,-0.026888026343031224],[126,50,68,-0.02328495023115313],[126,50,69,-0.019577719537860073],[126,50,70,-0.01578243298851869],[126,50,71,-0.011913534293222483],[126,50,72,-0.007984441336878966],[126,50,73,-0.004008086966823299],[126,50,74,2.6292020595831272E-6],[126,50,75,0.004034478303963668],[126,50,76,0.00807362916660449],[126,50,77,0.014443664020128399],[126,50,78,0.020937103546795732],[126,50,79,0.02738280490521531],[126,51,64,-0.030359818868905156],[126,51,65,-0.02726116643917449],[126,51,66,-0.02403778628697382],[126,51,67,-0.020684470618595047],[126,51,68,-0.017213052390929708],[126,51,69,-0.013643437423304577],[126,51,70,-0.009992706698247646],[126,51,71,-0.006275687040436401],[126,51,72,-0.0025056716383787293],[126,51,73,0.0013049523551894714],[126,51,74,0.006646286419313075],[126,51,75,0.013216326588470113],[126,51,76,0.0197777919368362],[126,51,77,0.02631839575669046],[126,51,78,0.03282514397224136],[126,51,79,0.03928428095655022],[126,52,64,-0.024128524819630442],[126,52,65,-0.02115210001385222],[126,52,66,-0.018056484865561485],[126,52,67,-0.014834131245715336],[126,52,68,-0.01149716155266407],[126,52,69,-0.008067280869496731],[126,52,70,-0.004562705332951706],[126,52,71,-9.98780641057937E-4],[126,52,72,0.00501588444190299],[126,52,73,0.01159682335169958],[126,52,74,0.018186710486980638],[126,52,75,0.024774945915893826],[126,52,76,0.031350805990762426],[126,52,77,0.03790313399557353],[126,52,78,0.04442013094671299],[126,52,79,0.050889246210800744],[126,53,64,-0.018259350846948554],[126,53,65,-0.015410050600944282],[126,53,66,-0.012446080847034907],[126,53,67,-0.0093575503855825],[126,53,68,-0.006156976848197241],[126,53,69,-0.0028680166142833995],[126,53,70,0.0030363252340236385],[126,53,71,0.009606060485498436],[126,53,72,0.016201127384564015],[126,53,73,0.022809935312185198],[126,53,74,0.02942203843122819],[126,53,75,0.03602754951532347],[126,53,76,0.042616659126942444],[126,53,77,0.049179260425228716],[126,53,78,0.055704679619784],[126,53,79,0.062181511836194525],[126,54,64,-0.012768651164582593],[126,54,65,-0.010050808900214972],[126,54,66,-0.0072217216625348486],[126,54,67,-0.004269192222784572],[126,54,68,7.223590021905053E-4],[126,54,69,0.0072482918299680565],[126,54,70,0.013824584227179635],[126,54,71,0.0204341909610254],[126,54,72,0.027063217187329354],[126,54,73,0.03370003825912753],[126,54,74,0.0403345284032389],[126,54,75,0.046957399275232944],[126,54,76,0.05355964910262877],[126,54,77,0.06013212283509892],[126,54,78,0.0666651834390088],[126,54,79,0.07314849420620805],[126,55,64,-0.007666868711674636],[126,55,65,-0.00508427762885106],[126,55,66,-0.0018358299952664602],[126,55,67,0.0045719550459367864],[126,55,68,0.011077505351547199],[126,55,69,0.01765244130229094],[126,55,70,0.024273867366357477],[126,55,71,0.03092362918344723],[126,55,72,0.03758723828050083],[126,55,73,0.044252908979055205],[126,55,74,0.0509107090019228],[126,55,75,0.057551824961922876],[126,55,76,0.06416794359813958],[126,55,77,0.07075074931737135],[126,55,78,0.07729153830025369],[126,55,79,0.08378094914748832],[126,56,64,-0.0029588580025685218],[126,56,65,0.0017271985064835037],[126,56,66,0.00807029760519486],[126,56,67,0.014527072296137786],[126,56,68,0.021082599985151787],[126,56,69,0.027706069224552606],[126,56,70,0.03437278017476658],[126,56,71,0.04106336265779944],[126,56,72,0.04776261697225051],[126,56,73,0.05445847138872007],[126,56,74,0.061141058019721105],[126,56,75,0.06780190841729794],[126,56,76,0.07443326991820919],[126,56,77,0.0810275434325669],[126,56,78,0.08757684305751416],[126,56,79,0.09407267759746506],[126,57,64,0.004945029556712678],[126,57,65,0.011234149516964208],[126,57,66,0.01762179061116996],[126,57,67,0.02412579260552332],[126,57,68,0.03073028127379735],[126,57,69,0.037401971772649034],[126,57,70,0.04411429316319036],[126,57,71,0.05084657052698738],[126,57,72,0.05758278662788304],[126,57,73,0.0643104645188658],[126,57,74,0.07101967297006766],[126,57,75,0.07770215623793462],[126,57,76,0.08435058934699965],[126,57,77,0.09095795971640744],[126,57,78,0.09751707563373498],[126,57,79,0.10402020176344182],[126,58,64,0.013951328894354968],[126,58,65,0.020385674973804283],[126,58,66,0.026815448067944204],[126,58,67,0.033365027015799784],[126,58,68,0.04001750789585537],[126,58,69,0.046737126202981975],[126,58,70,0.05349540091354527],[126,58,71,0.060270284152032436],[126,58,72,0.06704484943577403],[126,58,73,0.07380610484042971],[126,58,74,0.08054393313791432],[126,58,75,0.0872501605882966],[126,58,76,0.0939177557043668],[126,58,77,0.10054015895401863],[126,58,78,0.10711074402175225],[126,58,79,0.11362241092128003],[126,59,64,0.022160277978704335],[126,59,65,0.02918266038853519],[126,59,66,0.03565226712440049],[126,59,67,0.042245784472441664],[126,59,68,0.04894521645647867],[126,59,69,0.05571234873798299],[126,59,70,0.06251678059253085],[126,59,71,0.06933504592524715],[126,59,72,0.07614923467985225],[126,59,73,0.0829457427977942],[126,59,74,0.08971415294656039],[126,59,75,0.09644624785324546],[126,59,76,0.10313515770362534],[126,59,77,0.10977464270039686],[126,59,78,0.11635851151742131],[126,59,79,0.12288017604459103],[126,60,64,0.030257531635021644],[126,60,65,0.03762993609876945],[126,60,66,0.0441371055466115],[126,60,67,0.05077283084881867],[126,60,68,0.05751797934716668],[126,60,69,0.06433195229699915],[126,60,70,0.07118244955344707],[126,60,71,0.07804456594635366],[126,60,72,0.08489935310736654],[126,60,73,0.09173251308168613],[126,60,74,0.09853322610124081],[126,60,75,0.10529311450153496],[126,60,76,0.11200534437700135],[126,60,77,0.11866386619145494],[126,60,78,0.12526279519182135],[126,60,79,0.13179593211959342],[126,61,64,0.038213110862761114],[126,61,65,0.04573593678138036],[126,61,66,0.052278334401320445],[126,61,67,0.058954337956535735],[126,61,68,0.06574365236047403],[126,61,69,0.07260339352433315],[126,61,70,0.07949941140744979],[126,61,71,0.0864053658621931],[126,61,72,0.09330123659976275],[126,61,73,0.10017196774294213],[126,61,74,0.10700624948920064],[126,61,75,0.11379543900303295],[126,61,76,0.12053262225892046],[126,61,77,0.1272118181679373],[126,61,78,0.13382732594250069],[126,61,79,0.14037321629003469],[126,62,64,0.045994414447754386],[126,62,65,0.0535123726895441],[126,62,66,0.06008750224275082],[126,62,67,0.06680154399575626],[126,62,68,0.07363303363030838],[126,62,69,0.08053693079454197],[126,62,70,0.08747731234403466],[126,62,71,0.09442643173699196],[126,62,72,0.1013631850862285],[126,62,73,0.10827171414305346],[126,62,74,0.11514014887112163],[126,62,75,0.12195949185540127],[126,62,76,0.12872264638540928],[126,62,77,0.1354235896549565],[126,62,78,0.14205669213359648],[126,62,79,0.14861618379277924],[126,63,64,0.0535665871393324],[126,63,65,0.060973917227967356],[126,63,66,0.0675790154454257],[126,63,67,0.07432843011819949],[126,63,68,0.08119953859799925],[126,63,69,0.08814529791708274],[126,63,70,0.0951281124364446],[126,63,71,0.10211888069184015],[126,63,72,0.10909542542889139],[126,63,73,0.11604106244665842],[126,63,74,0.12294331103000025],[126,63,75,0.1297927483313476],[126,63,76,0.13658200964961534],[126,63,77,0.14330493615014026],[126,63,78,0.1499558711755386],[126,63,79,0.15652910591829491],[126,64,64,0.06089287200238742],[126,64,65,0.0681378834253296],[126,64,66,0.07476980708822428],[126,64,67,0.08155138535753995],[126,64,68,0.08845886310783911],[126,64,69,0.09544336548975887],[126,64,70,0.10246574372158304],[126,64,71,0.10949561293537191],[126,64,72,0.11650975372462505],[126,64,73,0.12349065391307079],[126,64,74,0.13042519343489936],[126,64,75,0.13730347479184],[126,64,76,0.14411780113428],[126,64,77,0.1508618036044002],[126,64,78,0.15752971917992734],[126,64,79,0.16411581987264115],[126,65,64,0.06793495875336245],[126,65,65,0.07502390174836185],[126,65,66,0.08167900690829703],[126,65,67,0.08848887252001106],[126,65,68,0.09542864729536203],[126,65,69,0.1024478026284704],[126,65,70,0.1095057678376817],[126,65,71,0.11657096201414173],[126,65,72,0.12361917388497601],[126,65,73,0.13063208286777822],[126,65,74,0.1375959243052889],[126,65,75,0.14450030144048706],[126,65,76,0.15133714627029132],[126,65,77,0.15809983100292932],[126,65,78,0.16478243144071186],[126,65,79,0.17137914322152942],[126,66,64,0.07465332858379042],[126,66,65,0.08165360041105406],[126,66,66,0.08832761349021065],[126,66,67,0.09516109621277022],[126,66,68,0.10212814145505038],[126,66,69,0.10917674026390908],[126,66,70,0.11626503440716666],[126,66,71,0.12336034445802947],[126,66,72,0.1304375336469919],[126,66,73,0.13747751347244175],[126,66,74,0.14446589414763167],[126,66,75,0.15139178253061836],[126,66,76,0.1582467297592167],[126,66,77,0.16502383039725985],[126,66,78,0.17171697449246015],[126,66,79,0.1783202535550086],[126,67,64,0.08100759511314058],[126,67,65,0.0880502885419498],[126,67,66,0.0947381690621711],[126,67,67,0.1015896733906162],[126,67,68,0.10857787427363243],[126,67,69,0.11564943639199161],[126,67,70,0.12276134054554821],[126,67,71,0.12987990918740466],[126,67,72,0.1369791583581238],[126,67,73,0.14403929160241905],[126,67,74,0.151045339027616],[126,67,75,0.15798594423080004],[126,67,76,0.16485230139555007],[126,67,77,0.17163724444182898],[126,67,78,0.17833448970493437],[126,67,79,0.18493803322650124],[126,68,64,0.08695684107779626],[126,68,65,0.09423864260999033],[126,68,66,0.10093443731039553],[126,68,67,0.1077973068420487],[126,68,68,0.11479932385654211],[126,68,69,0.1218859437074763],[126,68,70,0.12901309192161914],[126,68,71,0.13614618709587906],[126,68,72,0.1432584829291219],[126,68,73,0.15032955219639343],[126,68,74,0.15734391590306512],[126,68,75,0.16428982042348483],[126,68,76,0.17115816500198153],[126,68,77,0.1779415815758747],[126,68,78,0.18463366847148965],[126,68,79,0.19122837913013502],[126,69,64,0.09245995651116944],[126,69,65,0.10024439046184588],[126,69,66,0.10694107868803408],[126,69,67,0.11380745621911861],[126,69,68,0.12081458629305934],[126,69,69,0.12790677453925392],[126,69,70,0.1350389605053227],[126,69,71,0.1421757362153439],[126,69,72,0.14928967768733742],[126,69,73,0.156359818190606],[126,69,74,0.1633702665602693],[126,69,75,0.17030897345319568],[126,69,76,0.17716664800241474],[126,69,77,0.18393582690832005],[126,69,78,0.19061009759557385],[126,69,79,0.1971834766696706],[126,70,64,0.09749236852333941],[126,70,65,0.10555059610180788],[126,70,66,0.11276751814215616],[126,70,67,0.11962852658474785],[126,70,68,0.12663093130525105],[126,70,69,0.13371792020743875],[126,70,70,0.14084349947885955],[126,70,71,0.14797150526491407],[126,70,72,0.15507392276727128],[126,70,73,0.1621293467547619],[126,70,74,0.16912158688796455],[126,70,75,0.17603842082554833],[126,70,76,0.18287049765308244],[126,70,77,0.18961039375577043],[126,70,78,0.19625182284649492],[126,70,79,0.20278900146468296],[126,71,64,0.10208027444039118],[126,71,65,0.11012854942154078],[126,71,66,0.118024663772547],[126,71,67,0.12522185671218175],[126,71,68,0.13220966668015585],[126,71,69,0.1392808053019295],[126,71,70,0.14638848204366967],[126,71,71,0.1534959016023561],[126,71,72,0.16057457278358853],[126,71,73,0.16760275813901068],[126,71,74,0.1745640678438335],[126,71,75,0.18144620086269359],[126,71,76,0.1882398360253617],[126,71,77,0.19493767521493247],[126,71,78,0.20153364046117553],[126,71,79,0.20802222633567635],[126,72,64,0.10625690297877026],[126,72,65,0.11429042772605234],[126,72,66,0.12217115827703523],[126,72,67,0.1298665129547872],[126,72,68,0.13739662831617452],[126,72,69,0.14455220784944947],[126,72,70,0.15163141498734245],[126,72,71,0.15870749988072994],[126,72,72,0.1657516366980353],[126,72,73,0.17274186486193274],[126,72,74,0.17966167703094035],[126,72,75,0.1864987533212302],[126,72,76,0.19324384446000353],[126,72,77,0.19988980614487023],[126,72,78,0.20643078647540733],[126,72,79,0.21286156792837013],[126,73,64,0.1100530720783807],[126,73,65,0.11806705009003482],[126,73,66,0.1259281759697924],[126,73,67,0.13360505466142655],[126,73,68,0.14111853234371333],[126,73,69,0.1485150806400548],[126,73,70,0.15582951930014022],[126,73,71,0.163086076366059],[126,73,72,0.17030013413944647],[126,73,73,0.17747983632032832],[126,73,74,0.18438206529731765],[126,73,75,0.19116602181072978],[126,73,76,0.19785498978120847],[126,73,77,0.20444195689498204],[126,73,78,0.21092125922272026],[126,73,79,0.217287917821122],[126,74,64,0.11349845276376336],[126,74,65,0.12148807092764251],[126,74,66,0.12932527168890723],[126,74,67,0.13698011170984423],[126,74,68,0.14447395686974324],[126,74,69,0.15185309723575496],[126,74,70,0.15915220555432746],[126,74,71,0.16639539380740626],[126,74,72,0.17359794094929298],[126,74,73,0.1807678844169314],[126,74,74,0.1879074718134333],[126,74,75,0.19501446958053067],[126,74,76,0.20204827319305405],[126,74,77,0.20857165313317427],[126,74,78,0.21498521018934333],[126,74,79,0.22128410309000232],[126,75,64,0.1166228670885734],[126,75,65,0.12458326967992266],[126,75,66,0.13239207594787478],[126,75,67,0.14002107008367806],[126,75,68,0.14749191426644156],[126,75,69,0.15485021797747606],[126,75,70,0.16213012753134542],[126,75,71,0.16935537192422048],[126,75,72,0.17654095717245186],[126,75,73,0.18369472787103477],[126,75,74,0.190818792393185],[126,75,75,0.1979108085577969],[126,75,76,0.2049651269944056],[126,75,77,0.21197378983252402],[126,75,78,0.2186043179291871],[126,75,79,0.22483433334538377],[126,76,64,0.11945761928800534],[126,76,65,0.12738387402254764],[126,76,66,0.13515960538186403],[126,76,67,0.14275859929143456],[126,76,68,0.15020256626199463],[126,76,69,0.1575359014038346],[126,76,70,0.16479182391589037],[126,76,71,0.17199340418046558],[126,76,72,0.17915520805910753],[126,76,73,0.18628481271998104],[126,76,74,0.19338419047825717],[126,76,75,0.20045095752323047],[126,76,76,0.20747948479555017],[126,76,77,0.2144618686623343],[126,76,78,0.2213887594128469],[126,76,79,0.2279236346495031],[126,77,64,0.12203685910190179],[126,77,65,0.1299239155724122],[126,77,66,0.13766160593611154],[126,77,67,0.14522597816850677],[126,77,68,0.1526385265022894],[126,77,69,0.15994188243422955],[126,77,70,0.16716793133421481],[126,77,71,0.17433881202380533],[126,77,72,0.18146849345025545],[126,77,73,0.18856422805283468],[126,77,74,0.19562787840519344],[126,77,75,0.2026571140932659],[126,77,76,0.2096464761615992],[126,77,77,0.21658830682935246],[126,77,78,0.22347354253649282],[126,77,79,0.23029236872983525],[126,78,64,0.12439897607054597],[126,78,65,0.13224161690755454],[126,78,66,0.13993592762988083],[126,78,67,0.14746045246416267],[126,78,68,0.15483619499709167],[126,78,69,0.1621034762078985],[126,78,70,0.16929244925142511],[126,78,71,0.17642406221231097],[126,78,72,0.18351154910299244],[126,78,73,0.1905618035152672],[126,78,74,0.1975766316552769],[126,78,75,0.2045538818480661],[126,78,76,0.21148844795194527],[126,78,77,0.21837314447213202],[126,78,78,0.2251994515036737],[126,78,79,0.23195812796449009],[126,79,64,0.1265675476610064],[126,79,65,0.134360408297442],[126,79,66,0.14200582258009223],[126,79,67,0.14948504760487788],[126,79,68,0.1568183270419156],[126,79,69,0.16404314171923226],[126,79,70,0.17118752559068987],[126,79,71,0.1782709831567439],[126,79,72,0.18530587784468935],[126,79,73,0.19229870970093882],[126,79,74,0.19925127931364417],[126,79,75,0.20616173521816591],[126,79,76,0.2130255023699032],[126,79,77,0.2198360895963344],[126,79,78,0.22658577425909307],[126,79,79,0.23326616266660255],[126,80,64,0.1284950660603364],[126,80,65,0.13623284722720042],[126,80,66,0.14382463606461407],[126,80,67,0.1512546659474646],[126,80,68,0.15854219487262106],[126,80,69,0.16572136143097563],[126,80,70,0.1728176795285145],[126,80,71,0.17984890733588416],[126,80,72,0.18682632195493143],[126,80,73,0.1937558905343731],[126,80,74,0.20063933497199737],[126,80,75,0.20747508765112357],[126,80,76,0.21425913596716148],[126,80,77,0.22098575370373896],[126,80,78,0.22764811761340056],[126,80,79,0.2342388078446125],[126,81,64,0.13013110261039054],[126,81,65,0.13780851771877534],[126,81,66,0.14534266864920042],[126,81,67,0.1527210676217299],[126,81,68,0.15996181073114207],[126,81,69,0.16709523349992572],[126,81,70,0.17414392593928688],[126,81,71,0.18112355537711577],[126,81,72,0.18804402249687227],[126,81,73,0.19491052120658514],[126,81,74,0.2017244997122483],[126,81,75,0.20848452045552118],[126,81,76,0.21518701685907024],[126,81,77,0.22182694510194476],[126,81,78,0.22839832941869034],[126,81,79,0.23489469967881554],[126,82,64,0.13144127495356442],[126,82,65,0.13905294806294705],[126,82,66,0.14652583539009537],[126,82,67,0.15385104322985227],[126,82,68,0.16104537566794108],[126,82,69,0.1681349589101615],[126,82,70,0.17513907197940654],[126,82,71,0.18207093013096098],[126,82,72,0.1889387226182432],[126,82,73,0.19574656169262292],[126,82,74,0.2024953404549132],[126,82,75,0.20918349743711956],[126,82,76,0.21580768605182146],[126,82,77,0.2223633473011425],[126,82,78,0.22884518438440055],[126,82,79,0.23524753808275267],[126,83,64,0.13240453590712747],[126,83,65,0.1399449344699677],[126,83,66,0.14735305364033968],[126,83,67,0.1546238989217864],[126,83,68,0.1617728954321356],[126,83,69,0.16882161985596744],[126,83,70,0.1757856870995385],[126,83,71,0.18267550434772103],[126,83,72,0.18949719534852594],[126,83,73,0.19625344315311266],[126,83,74,0.20294424916867054],[126,83,75,0.2095676066187322],[126,83,76,0.21612008674048022],[126,83,77,0.22259733627955725],[126,83,78,0.22899448506674044],[126,83,79,0.23530646267726313],[126,84,64,0.13301068893860088],[126,84,65,0.14047408804674166],[126,84,66,0.147813849584117],[126,84,67,0.15502915418176955],[126,84,68,0.16213400153380647],[126,84,69,0.1691451541474944],[126,84,70,0.17607425830113665],[126,84,71,0.1829285812359372],[126,84,72,0.18971183043225415],[126,84,73,0.1964248981916299],[126,84,74,0.20306652960958524],[126,84,75,0.20963391223900882],[126,84,76,0.21612318595669927],[126,84,77,0.22252987175448616],[126,84,78,0.2286459140096231],[126,84,79,0.23429460842826574],[126,85,64,0.13325813746031426],[126,85,65,0.14063861225961977],[126,85,66,0.1479061905305382],[126,85,67,0.15506445915181855],[126,85,68,0.16212598401371617],[126,85,69,0.16910253179370072],[126,85,70,0.17600153631941987],[126,85,71,0.18282683302222053],[126,85,72,0.18957938466924748],[126,85,73,0.1962579387105387],[126,85,74,0.20285961453402324],[126,85,75,0.20938041911591787],[126,85,76,0.2157931948152546],[126,85,77,0.22151050049766963],[126,85,78,0.22714442957587624],[126,85,79,0.2326840072141743],[126,86,64,0.13315187531186612],[126,86,65,0.14044331827079004],[126,86,66,0.14763455030173228],[126,86,67,0.15473373869128698],[126,86,68,0.16175204289544712],[126,86,69,0.16869614042356632],[126,86,70,0.1755690789905951],[126,86,71,0.1823710232809066],[126,86,72,0.1890999009599938],[126,86,73,0.19575198591956305],[126,86,74,0.20232241723081595],[126,86,75,0.2084239783474922],[126,86,76,0.21406671402767963],[126,86,77,0.21964398626419376],[126,86,78,0.2251456557835892],[126,86,79,0.23056108008694914],[126,87,64,0.13270172524434853],[126,87,65,0.1398978849864835],[126,87,66,0.14700821451044888],[126,87,67,0.1540455698475435],[126,87,68,0.16101976479244082],[126,87,69,0.1679323857313382],[126,87,70,0.17478199761876761],[126,87,71,0.1815649183977913],[126,87,72,0.18827580089309104],[126,87,73,0.1949081567370881],[126,87,74,0.2008849293560802],[126,87,75,0.20641388362783672],[126,87,76,0.21189342388123011],[126,87,77,0.21731501836501071],[126,87,78,0.2226694604229867],[126,87,79,0.22794677448210676],[126,88,64,0.1319208317020601],[126,88,65,0.13901537014162532],[126,88,66,0.1460398320180155],[126,88,67,0.15301179892292685],[126,88,68,0.15993983067242099],[126,88,69,0.16682051268687506],[126,88,70,0.17364791174384542],[126,88,71,0.18041439315352803],[126,88,72,0.18711115537291614],[126,88,73,0.19326203120003954],[126,88,74,0.19864488020015816],[126,88,75,0.2039905810759921],[126,88,76,0.20929301030141279],[126,88,77,0.2145452029212849],[126,88,78,0.2197392189204179],[126,88,79,0.22486606747058724],[126,89,64,0.13082441371521933],[126,89,65,0.13781097826742617],[126,89,66,0.14474421839383406],[126,89,67,0.15164640386682698],[126,89,68,0.15852496034381158],[126,89,69,0.16537165283781993],[126,89,70,0.17217611732584984],[126,89,71,0.17892673505942575],[126,89,72,0.18561113747007968],[126,89,73,0.19083764820769453],[126,89,74,0.1960223291849781],[126,89,75,0.2011735750879637],[126,89,76,0.20628744538543173],[126,89,77,0.21135884496872295],[126,89,78,0.21638140209736997],[126,89,79,0.221347400989939],[126,90,64,0.12942878326772192],[126,90,65,0.1363010909425056],[126,90,66,0.1431374167593642],[126,90,67,0.14996460729575573],[126,90,68,0.15678909881981068],[126,90,69,0.16359810264316843],[126,90,70,0.17037697300027307],[126,90,71,0.17711015174832573],[126,90,72,0.18304827029537488],[126,90,73,0.18805705540141746],[126,90,74,0.19303577550116333],[126,90,75,0.19798419468589515],[126,90,76,0.2029007975958397],[126,90,77,0.20778261576823376],[126,90,78,0.212625106164801],[126,90,79,0.2174220823617008],[126,91,64,0.12775063408524182],[126,91,65,0.13450256431243998],[126,91,66,0.14123602099073837],[126,91,67,0.14798224504666022],[126,91,68,0.15474684933383842],[126,91,69,0.1615128374159811],[126,91,70,0.16826150872175083],[126,91,71,0.17497348541436797],[126,91,72,0.18013889507905773],[126,91,73,0.18493726991936524],[126,91,74,0.18970523067780307],[126,91,75,0.19444542136348272],[126,91,76,0.19915893650452282],[126,91,77,0.20384513818632288],[126,91,78,0.20850152456007726],[126,91,79,0.21312365031342262],[126,92,64,0.1258066053998944],[126,92,65,0.13243229847610943],[126,92,66,0.1390567658738209],[126,92,67,0.14571539479858867],[126,92,68,0.15241315742432845],[126,92,69,0.15912926511584558],[126,92,70,0.16584126079882805],[126,92,71,0.17228422237451108],[126,92,72,0.17690971380387682],[126,92,73,0.18149659815217897],[126,92,74,0.18605201823074893],[126,92,75,0.1905815865730635],[126,92,76,0.1950891306122342],[126,92,77,0.19957648922088522],[126,92,78,0.20404336126810463],[126,92,79,0.20848720671881146],[126,93,64,0.1236131248857771],[126,93,65,0.13010708297736895],[126,93,66,0.13661638845108925],[126,93,67,0.1431802689526152],[126,93,68,0.14980325017479354],[126,93,69,0.1564612239167314],[126,93,70,0.1631283370285539],[126,93,71,0.1689565245356453],[126,93,72,0.17337716338248346],[126,93,73,0.1777543613404219],[126,93,74,0.18209841818984254],[126,93,75,0.18641793699658218],[126,93,76,0.1907195368754346],[126,93,77,0.19500761881747988],[126,93,78,0.19928418530039016],[126,93,79,0.20354871426481033],[126,94,64,0.1211865346233684],[126,94,65,0.12754372230576153],[126,94,66,0.13393176446963964],[126,94,67,0.14039337563808466],[126,94,68,0.14693283438520943],[126,94,69,0.1535232271816744],[126,94,70,0.16013571536467655],[126,94,71,0.16533760317294036],[126,94,72,0.16955837964313586],[126,94,73,0.17373044195895848],[126,94,74,0.1778671543556524],[126,94,75,0.18198006587635815],[126,94,76,0.18607858067194075],[126,94,77,0.19016968418615343],[126,94,78,0.19425772603579827],[126,94,79,0.19834426024989318],[126,95,64,0.11854350363946187],[126,95,65,0.12475944499975264],[126,95,66,0.13102032353339255],[126,95,67,0.13737195141440284],[126,95,68,0.1438185571627691],[126,95,69,0.15033095920206063],[126,95,70,0.15687777929728505],[126,95,71,0.16144231074385315],[126,95,72,0.1654706023363708],[126,95,73,0.16944464853558244],[126,95,74,0.1733807222930308],[126,95,75,0.17729320880787103],[126,95,76,0.18119422503143406],[126,95,77,0.1850932988909359],[126,95,78,0.18899710915610518],[126,95,79,0.19290928671477314],[126,96,64,0.11570173028096285],[126,96,65,0.1217725996581585],[126,96,66,0.1279007462781214],[126,96,67,0.1341346689595901],[126,96,68,0.14047873215181297],[126,96,69,0.14690202480406284],[126,96,70,0.1533594617929322],[126,96,71,0.15728502553887094],[126,96,72,0.16113037552861964],[126,96,73,0.16491589672442822],[126,96,74,0.16866055621536644],[126,96,75,0.17238140251495232],[126,96,76,0.1760931280454205],[126,96,77,0.17980769604224772],[126,96,78,0.18353403293686343],[126,96,79,0.1872777871036597],[126,97,64,0.11268093741408515],[126,97,65,0.11860364089867974],[126,97,66,0.12459394662381366],[126,97,67,0.13070262277831485],[126,97,68,0.13693433437290242],[126,97,69,0.14325695568672547],[126,97,70,0.14911678833020087],[126,97,71,0.15287864929276415],[126,97,72,0.15655254109194655],[126,97,73,0.1601612046161043],[126,97,74,0.16372603305002487],[126,97,75,0.16726650523795125],[126,97,76,0.17079968745371332],[126,97,77,0.17433980497645823],[126,97,78,0.17789788467927864],[126,97,79,0.18148146965072795],[126,98,64,0.10950416319582464],[126,98,65,0.1152764080573875],[126,98,66,0.12112434191583812],[126,98,67,0.12710059572387616],[126,98,68,0.1332102664104777],[126,98,69,0.13942047613628078],[126,98,70,0.14462280557967866],[126,98,71,0.14823337649055526],[126,98,72,0.15174902317229427],[126,98,73,0.15519450041872032],[126,98,74,0.1585933121047602],[126,98,75,0.16196707747016179],[126,98,76,0.1653349714834389],[126,98,77,0.16871324085914804],[126,98,78,0.1721147970941353],[126,98,79,0.17554888768489202],[126,99,64,0.10619934993873678],[126,99,65,0.11181969919617821],[126,99,66,0.11752141354091478],[126,99,67,0.12335860890707584],[126,99,68,0.1293368984736785],[126,99,69,0.13542303055585805],[126,99,70,0.13988233278671347],[126,99,71,0.14335523321260188],[126,99,72,0.14672740167832532],[126,99,73,0.15002524078430585],[126,99,74,0.1532740088739223],[126,99,75,0.1564971218739769],[126,99,76,0.15971553508865247],[126,99,77,0.16294720669579008],[126,99,78,0.16620664447061229],[126,99,79,0.16950453704241414],[126,100,64,0.10280123338461816],[126,100,65,0.10826914277840537],[126,100,66,0.11382156039781355],[126,100,67,0.11951375736203927],[126,100,68,0.12535188465780248],[126,100,69,0.13130257506100773],[126,100,70,0.1348944983643207],[126,100,71,0.13824438352868185],[126,100,72,0.1414892729827662],[126,100,73,0.14465683818717354],[126,100,74,0.14777370163572523],[126,100,75,0.15086468129950276],[126,100,76,0.15395212080752183],[126,100,77,0.15705530727919245],[126,100,78,0.16018997848473016],[126,100,79,0.16336792077498402],[126,101,64,0.09935059324712366],[126,101,65,0.10466634502582352],[126,101,66,0.11006714509880818],[126,101,67,0.11560915533441224],[126,101,68,0.12129901022616729],[126,101,69,0.12627568480759221],[126,101,70,0.12965408036639722],[126,101,71,0.1328965289169212],[126,101,72,0.13603168867280369],[126,101,73,0.13908811759807668],[126,101,74,0.14209338369551439],[126,101,75,0.1450732640799849],[126,101,76,0.14805103515092202],[126,101,77,0.15104685592368775],[126,101,78,0.15407724632728909],[126,101,79,0.157154662028163],[126,102,64,0.09585980940063106],[126,102,65,0.10102352732467695],[126,102,66,0.10627027215124843],[126,102,67,0.11165687980312486],[126,102,68,0.117190382210939],[126,102,69,0.1209021972177016],[126,102,70,0.12419016700623361],[126,102,71,0.12734148776669446],[126,102,72,0.13038525623636849],[126,102,73,0.1333505150948114],[126,102,74,0.136265329174974],[126,102,75,0.13915595490048713],[126,102,76,0.14204610538643808],[126,102,77,0.1449563133760614],[126,102,78,0.14790339392314308],[126,102,79,0.15090000847214566],[126,103,64,0.09231678955958296],[126,103,65,0.09732794210807841],[126,103,66,0.10241769821844096],[126,103,67,0.10764337309310193],[126,103,68,0.11197225084072152],[126,103,69,0.1153475380203645],[126,103,70,0.11855940425244291],[126,103,71,0.121636061396142],[126,103,72,0.12460668307682521],[126,103,73,0.12750037181146576],[126,103,74,0.13034521991441006],[126,103,75,0.1331674669747442],[126,103,76,0.13599075642335526],[126,103,77,0.1388354934360499],[126,103,78,0.1417183061499281],[126,103,79,0.14465161190616568],[126,104,64,0.08870845644045246],[126,104,65,0.09356606718543116],[126,104,66,0.09849569319455322],[126,104,67,0.102863747861795],[126,104,68,0.10635947081480807],[126,104,69,0.10966929324369355],[126,104,70,0.1128192075752311],[126,104,71,0.11583721073818186],[126,104,72,0.11875218143361589],[126,104,73,0.12159285004357785],[126,104,74,0.1243868642810827],[126,104,75,0.1271599534083914],[126,104,76,0.1299351935746253],[126,104,77,0.13273237654955175],[126,104,78,0.13556748385898237],[126,104,79,0.13845226806123673],[126,105,64,0.08502368954825792],[126,105,65,0.08972651277486539],[126,105,66,0.09359300702988191],[126,105,67,0.09723138914078228],[126,105,68,0.1006676917350158],[126,105,69,0.10392375922006852],[126,105,70,0.10702525781897147],[126,105,71,0.109999677365625],[126,105,72,0.11287523273042495],[126,105,73,0.11567985839984479],[126,105,74,0.11844029929137831],[126,105,75,0.12118130061090475],[126,105,76,0.1239248992855606],[126,105,77,0.1266898192331064],[126,105,78,0.12949097245979366],[126,105,79,0.1323390677154049],[126,106,64,0.08035948132478044],[126,106,65,0.08422565844461075],[126,106,66,0.08798289347665547],[126,106,67,0.09156379610840591],[126,106,68,0.09495014836449518],[126,106,69,0.09816359375260093],[126,106,70,0.10122928033376973],[126,106,71,0.10417390648711528],[126,106,72,0.10702466951636974],[126,106,73,0.10980830642655351],[126,106,74,0.11255022986916297],[126,106,75,0.11527376198633366],[126,106,76,0.1179994686170786],[126,106,77,0.12074459606349595],[126,106,78,0.12352261235296248],[126,106,79,0.12634285467633785],[126,107,64,0.07487963599898247],[126,107,65,0.07867866093232243],[126,107,66,0.08237731640549147],[126,107,67,0.08590848595006126],[126,107,68,0.08925399920272041],[126,107,69,0.09243521953738605],[126,107,70,0.09547659154794637],[126,107,71,0.09840375490641089],[126,107,72,0.10124256201971506],[126,107,73,0.10401818535433045],[126,107,74,0.1067543172838512],[126,107,75,0.10947246505776287],[126,107,76,0.11219134323350785],[126,107,77,0.1149263656602472],[126,107,78,0.11768923885256063],[126,107,79,0.12048765834819802],[126,108,64,0.0694298883018521],[126,108,65,0.07316785193397883],[126,108,66,0.07681475721223048],[126,108,67,0.08030393775098267],[126,108,68,0.08361734375681613],[126,108,69,0.08677597870376866],[126,108,70,0.08980341187470282],[126,108,71,0.09272398288683495],[126,108,72,0.09556190832186984],[126,108,73,0.09834047405779954],[126,108,74,0.1010813159576226],[126,108,75,0.10380379132854703],[126,108,76,0.1065244433247142],[126,108,77,0.10925656022857727],[126,108,78,0.11200983131189514],[126,108,79,0.11479010074924641],[126,109,64,0.06403488772209344],[126,109,65,0.06771870746533279],[126,109,66,0.07132114318781917],[126,109,67,0.07477616441613727],[126,109,68,0.07806592074478903],[126,109,69,0.08121098067745205],[126,109,70,0.08423388686431268],[126,109,71,0.08715747157069957],[126,109,72,0.0900040695729363],[126,109,73,0.09279481145458097],[126,109,74,0.09554899970746199],[126,109,75,0.09828356981929226],[126,109,76,0.1010126383085028],[126,109,77,0.10374713944863814],[126,109,78,0.1064945522102387],[126,109,79,0.1092587187398425],[126,110,64,0.05869081443991626],[126,110,65,0.06232827995791148],[126,110,66,0.06589405868475481],[126,110,67,0.06932295647894764],[126,110,68,0.0725974119519518],[126,110,69,0.07573749497969151],[126,110,70,0.07876459826959178],[126,110,71,0.08169988108722512],[126,110,72,0.0845636025079256],[126,110,73,0.08737452863576622],[126,110,74,0.09014941590035518],[126,110,75,0.09290257234146962],[126,110,76,0.09564549859290811],[126,110,77,0.09838661008136404],[126,110,78,0.1011310417645477],[126,110,79,0.10388053654728466],[126,111,64,0.05334623935917211],[126,111,65,0.056945678010890385],[126,111,66,0.06048304296619812],[126,111,67,0.06389421393354686],[126,111,68,0.067162032149698],[126,111,69,0.07030602292259065],[126,111,70,0.0733463323019552],[126,111,71,0.07630231390412474],[126,111,72,0.07919199398425066],[126,111,73,0.08203160316367442],[126,111,74,0.08483517659316639],[126,111,75,0.08761422415685932],[126,111,76,0.09037747214797508],[126,111,77,0.09313067767698241],[126,111,78,0.09587651690647353],[126,111,79,0.09861454804668009],[126,112,64,0.0479385729940941],[126,112,65,0.051507525197536624],[126,112,66,0.05502446841367652],[126,112,67,0.05842668637424421],[126,112,68,0.06169758390835144],[126,112,69,0.06485610977059517],[126,112,70,0.06792106356556213],[126,112,71,0.07090984140693542],[126,112,72,0.07383804503294611],[126,112,73,0.07671914958176865],[126,112,74,0.07956423144188633],[126,112,75,0.08238175744312508],[126,112,76,0.08517743650726901],[126,112,77,0.08795413473390493],[126,112,78,0.09071185475810567],[126,112,79,0.09344778008344203],[126,113,64,0.04242643467874237],[126,113,65,0.04597111816065817],[126,113,66,0.04947478013672278],[126,113,67,0.05287651268906559],[126,113,68,0.05616048021390094],[126,113,69,0.05934503151949975],[126,113,70,0.062447515312767585],[126,113,71,0.06548320099034127],[126,113,72,0.06846504449619166],[126,113,73,0.07140350433369187],[126,113,74,0.07430640874600138],[126,113,75,0.07717887495747336],[126,113,76,0.08002328125066638],[126,113,77,0.08283929253923408],[126,113,78,0.08562393998707006],[126,113,79,0.08837175512006823],[126,114,64,0.03679039988996278],[126,114,65,0.0403155381601437],[126,114,66,0.04381180825850465],[126,114,67,0.04722055412703458],[126,114,68,0.050526911670918995],[126,114,69,0.053748611265533736],[126,114,70,0.05690144850802218],[126,114,71,0.05999839571790015],[126,114,72,0.06304953651212605],[126,114,73,0.06606204168705915],[126,114,74,0.0690401869875796],[126,114,75,0.07198541325192648],[126,114,76,0.07489642933261938],[126,114,77,0.07776935810987738],[126,114,78,0.08059792583462468],[126,114,79,0.0833736949647825],[126,115,64,0.0310291010944694],[126,115,65,0.03453781567768131],[126,115,66,0.03803103614716928],[126,115,67,0.041452809909200666],[126,115,68,0.04478945570366931],[126,115,69,0.04805806903862379],[126,115,70,0.051272798323849005],[126,115,71,0.05444416086927307],[126,115,72,0.05757915645000672],[126,115,73,0.06068141315086167],[126,115,74,0.06375136560994853],[126,115,75,0.06678646571938641],[126,115,76,0.06978142578376036],[126,115,77,0.07272849408426968],[126,115,78,0.07561776274875988],[126,115,79,0.0784375077861354],[126,116,64,0.025155586587604015],[126,116,65,0.028649349078649706],[126,116,66,0.032142115999090184],[126,116,67,0.03558107074614491],[126,116,68,0.03895391144549391],[126,116,69,0.042277082258321066],[126,116,70,0.04556300337542075],[126,116,71,0.04881960264802082],[126,116,72,0.05205061594208957],[126,116,73,0.0552559107199999],[126,116,74,0.05843183248833311],[126,116,75,0.0615715737194667],[126,116,76,0.06466556482830767],[126,116,77,0.06770188676451712],[126,116,78,0.07066670476489005],[126,116,79,0.07354472280112175],[126,117,64,0.01919394162891258],[126,117,65,0.02267258167585794],[126,117,66,0.026165636107093857],[126,117,67,0.02962381452634535],[126,117,68,0.03303636444955882],[126,117,69,0.03641906074675739],[126,117,70,0.039782531359258654],[126,117,71,0.043132012375847795],[126,117,72,0.04646783992906717],[126,117,73,0.04978595638862486],[126,117,74,0.053078429997997056],[126,117,75,0.0571075841109035],[126,117,76,0.062439942988201394],[126,117,77,0.06769482501653311],[126,117,78,0.07285888515113115],[126,117,79,0.07791795742719701],[126,118,64,0.013176175876700651],[126,118,65,0.016637941239251552],[126,118,66,0.020130143851956484],[126,118,67,0.023607348154373833],[126,118,68,0.027060485081792783],[126,118,69,0.031426542471845495],[126,118,70,0.03723538600065855],[126,118,71,0.04301410869786541],[126,118,72,0.04876232064351128],[126,118,73,0.054475021553115094],[126,118,74,0.06014328453979281],[126,118,75,0.06575494425675525],[126,118,76,0.07129528813406105],[126,118,77,0.07674774946482997],[126,118,78,0.0820946011440511],[126,118,79,0.08626205926500517],[126,119,64,0.008713412281686879],[126,119,65,0.014797024810225084],[126,119,66,0.020886152259674686],[126,119,67,0.026940333497653905],[126,119,68,0.03295354074899978],[126,119,69,0.03894179516585172],[126,119,70,0.04491404326209038],[126,119,71,0.05087235177008727],[126,119,72,0.056812769291064005],[126,119,73,0.06272618669458573],[126,119,74,0.06859919442857948],[126,119,75,0.07441493495808908],[126,119,76,0.08015394861489639],[126,119,77,0.08579501121121594],[126,119,78,0.0902360052200672],[126,119,79,0.09316014248333845],[126,120,64,0.01588502500582969],[126,120,65,0.022018865158943135],[126,120,66,0.028173932392033214],[126,120,67,0.03431399450718697],[126,120,68,0.040434797626005096],[126,120,69,0.04655157974480621],[126,120,70,0.05267138338006966],[126,120,71,0.05879347358284665],[126,120,72,0.06491038417198224],[126,120,73,0.0710089549103433],[126,120,74,0.07707135731257204],[126,120,75,0.0830761068562117],[126,120,76,0.08899905945932611],[126,120,77,0.09450641426481442],[126,120,78,0.09733341903471088],[126,120,79,0.10008010158601076],[126,121,64,0.023257747296202277],[126,121,65,0.029424975251300316],[126,121,66,0.035628550938502215],[126,121,67,0.04183654423406498],[126,121,68,0.04804647273382432],[126,121,69,0.05427276935568435],[126,121,70,0.06052060351693695],[126,121,71,0.0667865137782028],[126,121,72,0.073059628993156],[126,121,73,0.07932287318865522],[126,121,74,0.08555415141618884],[126,121,75,0.09172751392329893],[126,121,76,0.0978142961101886],[126,121,77,0.10181108385832865],[126,121,78,0.10445040684820492],[126,121,79,0.10702394060035954],[126,122,64,0.030856088516247725],[126,122,65,0.03703895930466236],[126,122,66,0.043272317001322703],[126,122,67,0.049528507526934946],[126,122,68,0.05580676598118644],[126,122,69,0.06212069655283142],[126,122,70,0.06847364940357546],[126,122,71,0.07485955541637941],[126,122,72,0.08126430921934494],[126,122,73,0.08766712940212075],[126,122,74,0.09404189275190104],[126,122,75,0.10035843946584072],[126,122,76,0.10657634743893793],[126,122,77,0.10912140552033134],[126,122,78,0.11158284933110568],[126,122,79,0.11399225832517519],[126,123,64,0.03870007910705003],[126,123,65,0.04488022502398103],[126,123,66,0.05112365301898178],[126,123,67,0.05740686048210062],[126,123,68,0.06373069596637367],[126,123,69,0.07010791028306335],[126,123,70,0.07654010974729689],[126,123,71,0.08301877685037122],[126,123,72,0.08952679909737746],[126,123,73,0.09603996923669642],[126,123,74,0.10252845333590177],[126,123,75,0.10895822330766486],[126,123,76,0.11405513009253403],[126,123,77,0.11642723384210285],[126,123,78,0.11872510885829703],[126,123,79,0.12098371767968294],[126,124,64,0.04680392961071542],[126,124,65,0.052962672719349735],[126,124,66,0.05919582732022908],[126,124,67,0.06548382374163224],[126,124,68,0.07182897330823887],[126,124,69,0.07824314853677344],[126,124,70,0.08472630664181643],[126,124,71,0.09126767677891842],[126,124,72,0.09784741608873129],[126,124,73,0.10443823211111895],[126,124,74,0.11100696769882232],[126,124,75,0.11751614472573116],[126,124,76,0.12149906910042914],[126,124,77,0.12371719500300893],[126,124,78,0.12586970448627585],[126,124,79,0.12799455531091294],[126,125,64,0.055174974562781476],[126,125,65,0.06129366573117038],[126,125,66,0.06749596129854164],[126,125,67,0.0737659205851714],[126,125,68,0.08010712572962708],[126,125,69,0.08653054638305256],[126,125,70,0.093034601671059],[126,125,71,0.09960649209673439],[126,125,72,0.10622396220992822],[126,125,73,0.11285702542133688],[126,125,74,0.11946964681833554],[126,125,75,0.1260213800183866],[126,125,76,0.12889219141700467],[126,125,77,0.13097852406807436],[126,125,78,0.13300701133585072],[126,125,79,0.13501815079413237],[126,126,64,0.06381290483248792],[126,126,65,0.06987328579320387],[126,126,66,0.07602431486102482],[126,126,67,0.08225330346183747],[126,126,68,0.08856487849710909],[126,126,69,0.09496908291189388],[126,126,70,0.10146292110836297],[126,126,71,0.10803181178018346],[126,126,72,0.11465143531366709],[126,126,73,0.12128953989682058],[126,126,74,0.12790770197592075],[126,126,75,0.13414415100469745],[126,126,76,0.13621784831710718],[126,126,77,0.13819689274125696],[126,126,78,0.14012498622916816],[126,126,79,0.14204465769827462],[126,127,64,0.07270929050869636],[126,127,65,0.0786938754711676],[126,127,66,0.08477385230346418],[126,127,67,0.09093935109889766],[126,127,68,0.09719579230616439],[126,127,69,0.10355226908938883],[126,127,70,0.11000450209581662],[126,127,71,0.11653638853286423],[126,127,72,0.1231219118356904],[126,127,73,0.12972700735609588],[126,127,74,0.13631137955135794],[126,127,75,0.14147068653705624],[126,127,76,0.1434586052143566],[126,127,77,0.14535622756422611],[126,127,78,0.1472089199494131],[126,127,79,0.14906069727554647],[126,128,64,0.08184739630316448],[126,128,65,0.08773986968571912],[126,128,66,0.09373009063324378],[126,128,67,0.09981053819458256],[126,128,68,0.10598716057450983],[126,128,69,0.11226807841051462],[126,128,70,0.11864786157470875],[126,128,71,0.12510914981181676],[126,128,72,0.13162460244108182],[126,128,73,0.13815880207234604],[126,128,74,0.14467010770901123],[126,128,75,0.14866747683858503],[126,128,76,0.15059608578215616],[126,128,77,0.1524385185472203],[126,128,78,0.15424121646517236],[126,128,79,0.15604911548424164],[126,129,64,0.09120229133398773],[126,129,65,0.09698791821658345],[126,129,66,0.10287123224797727],[126,129,67,0.10884657958846908],[126,129,68,0.11492016799418771],[126,129,69,0.12109912212606679],[126,129,70,0.12737698963632826],[126,129,71,0.13373540976195586],[126,129,72,0.1401460819215475],[126,129,73,0.14657268689099445],[126,129,74,0.1529727558763774],[126,129,75,0.15571572690769123],[126,129,76,0.15761077004327198],[126,129,77,0.1594236182153451],[126,129,78,0.1612011994366854],[126,129,79,0.16298880400673904],[126,130,64,0.10074125506051697],[126,130,65,0.10640730098943182],[126,130,66,0.11216858378012357],[126,130,67,0.11802085070441361],[126,130,68,0.12397031209552585],[126,130,69,0.13002307072570524],[126,130,70,0.13617176887281462],[126,130,71,0.14239728350404712],[126,130,72,0.14867069462239732],[126,130,73,0.15495520517999153],[126,130,74,0.1605854326710299],[126,130,75,0.16259624452545685],[126,130,76,0.16448174610948899],[126,130,77,0.1662890310505348],[126,130,78,0.16806494629816413],[126,130,79,0.16985458588088634],[126,131,64,0.11042448106564594],[126,131,65,0.11596063786760874],[126,131,66,0.1215872628352949],[126,131,67,0.1273010859767839],[126,131,68,0.13310808949180913],[126,131,69,0.13901332327661153],[126,131,70,0.14500862122905386],[126,131,71,0.15107430514866788],[126,131,72,0.15718113661301245],[126,131,73,0.1632922196385998],[126,131,74,0.16727107357815107],[126,131,75,0.169289078413231],[126,131,76,0.17118641526517075],[126,131,77,0.17300969330464985],[126,131,78,0.17480515018731993],[126,131,79,0.17661716632074365],[126,132,64,0.12020595005361893],[126,132,65,0.12560475610152017],[126,132,66,0.13108704774699054],[126,132,67,0.13665020239126496],[126,132,68,0.1422997860342795],[126,132,69,0.14803975628106048],[126,132,70,0.15386120705734546],[126,132,71,0.15974406815644568],[126,132,72,0.1656590282885008],[126,132,73,0.1715290285486352],[126,132,74,0.1737310417141481],[126,132,75,0.17577326558653053],[126,132,76,0.17770034040999558],[126,132,77,0.1795579293128934],[126,132,78,0.18139118988618053],[126,132,79,0.1832433208651731],[126,133,64,0.13001372878361],[126,133,65,0.13526957494864753],[126,133,66,0.1405998713687568],[126,133,67,0.14600240198262873],[126,133,68,0.15148219559549783],[126,133,69,0.15704210630758358],[126,133,70,0.1626725636447957],[126,133,71,0.16835325777968563],[126,133,72,0.17405502400211492],[126,133,73,0.17774750040153164],[126,133,74,0.17997895068599207],[126,133,75,0.18205804944574908],[126,133,76,0.184028279158632],[126,133,77,0.18593396145746335],[126,133,78,0.18781877058488233],[126,133,79,0.18972432239229686],[126,134,64,0.13973554498618967],[126,134,65,0.14484206606483985],[126,134,66,0.15001221749440657],[126,134,67,0.1552440094133602],[126,134,68,0.16054189895047882],[126,134,69,0.16590772758366787],[126,134,70,0.17133142308942068],[126,134,71,0.17679265822860313],[126,134,72,0.1813659064955736],[126,134,73,0.18381866958001758],[126,134,74,0.18608708360288562],[126,134,75,0.18821095834726562],[126,134,76,0.19023226844192115],[126,134,77,0.1921936454177643],[126,134,78,0.19413694198651926],[126,134,79,0.196101871892333],[126,135,64,0.1492678145083427],[126,135,65,0.15421786764158682],[126,135,66,0.1592192604023257],[126,135,67,0.16427010711013756],[126,135,68,0.1693743365179353],[126,135,69,0.17453295874347757],[126,135,70,0.17973563827350578],[126,135,71,0.184631704289262],[126,135,72,0.18732588624447602],[126,135,73,0.1898100285513607],[126,135,74,0.19211887928232985],[126,135,75,0.19429064587195305],[126,135,76,0.19636547848646324],[126,135,77,0.1983840214813783],[126,135,78,0.20038603642601335],[126,135,79,0.20240909994402298],[126,136,64,0.15852248814150163],[126,136,65,0.16330843912898202],[126,136,66,0.16813230252569478],[126,136,67,0.17299223450812806],[126,136,68,0.17789174460436058],[126,136,69,0.18283126124062246],[126,136,70,0.1875965091339807],[126,136,71,0.19054060548496338],[126,136,72,0.19325628541723133],[126,136,73,0.19577195305118983],[126,136,74,0.1981207181977114],[126,136,75,0.20033888552408483],[126,136,76,0.2024645066820999],[126,136,77,0.20453599895324545],[126,136,78,0.20659083375313025],[126,136,79,0.20866429811676085],[126,137,64,0.16742773357024898],[126,137,65,0.17204165763672064],[126,137,66,0.17667926600722844],[126,137,67,0.18133875261909752],[126,137,68,0.18602337054713242],[126,137,69,0.1903153543494648],[126,137,70,0.19350663357019426],[126,137,71,0.1964593427377858],[126,137,72,0.19919438452683072],[126,137,73,0.2017385423765818],[126,137,74,0.2041229922577764],[126,137,75,0.20638187120080254],[126,137,76,0.20855090615585034],[126,137,77,0.21066610656217027],[126,137,78,0.21276252380196933],[126,137,79,0.21487308050567605],[126,138,64,0.17592897651637457],[126,138,65,0.18036276921815297],[126,138,66,0.1848055317775982],[126,138,67,0.18917478681199418],[126,138,68,0.19284338461630093],[126,138,69,0.19626831576562373],[126,138,70,0.19945353474617078],[126,138,71,0.20241144284873508],[126,138,72,0.20516139611034345],[126,138,73,0.20772825906849562],[126,138,74,0.21014100800762392],[126,138,75,0.2124313872151115],[126,138,76,0.21463262159277402],[126,138,77,0.21677818878972635],[126,138,78,0.21890065383493856],[126,138,79,0.22103056905334084],[126,139,64,0.18300912856700574],[126,139,65,0.1872961807120894],[126,139,66,0.19137200214779987],[126,139,67,0.19523191163179],[126,139,68,0.1988666656267151],[126,139,69,0.20227019962053472],[126,139,70,0.20544561981641096],[126,139,71,0.20840392299388535],[126,139,72,0.2111626142435149],[126,139,73,0.21374436594391383],[126,139,74,0.21617572136896218],[126,139,75,0.21848584616591818],[126,139,76,0.22070533078955826],[126,139,77,0.22286504681379934],[126,139,78,0.2249950598713491],[126,139,79,0.22712360179449698],[126,140,64,0.18929602174359478],[126,140,65,0.19350915511650463],[126,140,66,0.19752371591783932],[126,140,67,0.20133490635855786],[126,140,68,0.20493325992660152],[126,140,69,0.20831219622497413],[126,140,70,0.21147364916883887],[126,140,71,0.21442690242022444],[126,140,72,0.2171873277108123],[126,140,73,0.21977515851321386],[126,140,74,0.22221430211600196],[126,140,75,0.22453119302872937],[126,140,76,0.22675369050608907],[126,140,77,0.22891002283572648],[126,140,78,0.23102778088263295],[126,140,79,0.23313296322524174],[126,141,64,0.1956035076565597],[126,141,65,0.19974143803993882],[126,141,66,0.20369340053231502],[126,141,67,0.2074543433839947],[126,141,68,0.2110143457076582],[126,141,69,0.21436600391603108],[126,141,70,0.21750977628574833],[126,141,71,0.22045294692066458],[126,141,72,0.2232084947809652],[126,141,73,0.22579399088298588],[126,141,74,0.22823052635358737],[126,141,75,0.23054167391444563],[126,141,76,0.2327524852556381],[126,141,77,0.2348885266347922],[126,141,78,0.2369749549083342],[126,141,79,0.23903563606555325],[126,142,64,0.20187554140951328],[126,142,65,0.20593819749762898],[126,142,66,0.20982749069771692],[126,142,67,0.21353797914271036],[126,142,68,0.21705907541128494],[126,142,69,0.22038227730624507],[126,142,70,0.22350629266748517],[126,142,71,0.22643614393844866],[126,142,72,0.22918217758139767],[126,142,73,0.23175909329706557],[126,142,74,0.2341849953242903],[126,142,75,0.23648046800957004],[126,142,76,0.23866767774392367],[126,142,77,0.24076950326513663],[126,142,78,0.24280869621784829],[126,142,79,0.24480707375231447],[126,143,64,0.20803952134652726],[126,143,65,0.21202801187666107],[126,143,66,0.2158558973347077],[126,143,67,0.21951722196360315],[126,143,68,0.22300054705058475],[126,143,69,0.22629603368453863],[126,143,70,0.22940039421223515],[126,143,71,0.2323161489426635],[126,143,72,0.23505078558266917],[126,143,73,0.2376159290240909],[126,143,74,0.24002652331434596],[126,143,75,0.24230002758167477],[126,143,76,0.24445562761915776],[126,143,77,0.24651346475822675],[126,143,78,0.2484938835829057],[126,143,79,0.25041669995060206],[126,144,64,0.2140471568315086],[126,144,65,0.21796222776383192],[126,144,66,0.22172956410921285],[126,144,67,0.22534255166168837],[126,144,68,0.22878871731157496],[126,144,69,0.23205666681770495],[126,144,70,0.23514089099254565],[126,144,71,0.23804118567242125],[126,144,72,0.24076197079182293],[126,144,73,0.2433116092392181],[126,144,74,0.24570172684671296],[126,144,75,0.24794653483213933],[126,144,76,0.25006215597258824],[126,144,77,0.25206595574298246],[126,144,78,0.2539758796019697],[126,144,79,0.2558097975502152],[126,145,64,0.21986272047344496],[126,145,65,0.22370420950271608],[126,145,66,0.22741082487941858],[126,145,67,0.23097512296751854],[126,145,68,0.2343834137180578],[126,145,69,0.2373187457907819],[126,145,70,0.2398212378135284],[126,145,71,0.24225244144854882],[126,145,72,0.24460831034924418],[126,145,73,0.24688147677281058],[126,145,74,0.24906180179682594],[126,145,75,0.2511369359544758],[126,145,76,0.25309288946571884],[126,145,77,0.25491461125715936],[126,145,78,0.25658657598456486],[126,145,79,0.25809337829903667],[126,146,64,0.22545487160119496],[126,146,65,0.22922159981651147],[126,146,66,0.2328661691028452],[126,146,67,0.23638011523227295],[126,146,68,0.2390566571800239],[126,146,69,0.24132990693696532],[126,146,70,0.24352500744537572],[126,146,71,0.24564510979723955],[126,146,72,0.2476898180246292],[126,146,73,0.24965556309279222],[126,146,74,0.25153600144225],[126,146,75,0.25332243776386976],[126,146,76,0.25500427166949763],[126,146,77,0.25656946790444596],[126,146,78,0.2580050497373637],[126,146,79,0.2592976151582375],[126,147,64,0.2307961020475603],[126,147,65,0.2344858048622423],[126,147,66,0.23806577314961302],[126,147,67,0.24098130430230763],[126,147,68,0.24304601007771215],[126,147,69,0.2450164318668812],[126,147,70,0.24690259280112495],[126,147,71,0.24871110068046964],[126,147,72,0.25044531281417043],[126,147,73,0.2521055394493342],[126,147,74,0.25368928607331137],[126,147,75,0.2551915348172845],[126,147,76,0.25660506513421133],[126,147,77,0.25792081387468824],[126,147,78,0.25912827484011997],[126,147,79,0.2602159378544975],[126,148,64,0.23586224788584653],[126,148,65,0.2394715441735986],[126,148,66,0.2429830948841055],[126,148,67,0.24495740315929726],[126,148,68,0.2467272064188239],[126,148,69,0.24839452874680967],[126,148,70,0.2499724498437383],[126,148,71,0.25147110249812044],[126,148,72,0.25289764831573563],[126,148,73,0.2542563066509326],[126,148,74,0.25554843762415724],[126,148,75,0.25677268001818787],[126,148,76,0.25792514475718487],[126,148,77,0.2589996645886515],[126,148,78,0.2599881005096493],[126,148,79,0.26088070540615477],[126,149,64,0.24063206759654146],[126,149,65,0.24415646597492272],[126,149,66,0.24703269643990383],[126,149,67,0.2486365735410607],[126,149,68,0.25011241272906165],[126,149,69,0.25147852949206145],[126,149,70,0.252751088048098],[126,149,71,0.25394375943933056],[126,149,72,0.25506750539133743],[126,149,73,0.25613043068502406],[126,149,74,0.2571377055399156],[126,149,75,0.25809155938167355],[126,149,76,0.2589913472434911],[126,149,77,0.2598336899318126],[126,149,78,0.2606126889728321],[126,149,79,0.26132021724868737],[126,150,64,0.24508688712983956],[126,150,65,0.2485208283370675],[126,150,66,0.25070578850498626],[126,150,67,0.2520273315761562],[126,150,68,0.25321216764107],[126,150,69,0.254281037672007],[126,150,70,0.255253163650325],[126,150,71,0.2561457114213261],[126,150,72,0.25697338212628373],[126,150,73,0.25774808795892634],[126,150,74,0.25847871436839603],[126,150,75,0.25917097067023037],[126,150,76,0.2598273308686175],[126,150,77,0.2604470663385114],[126,150,78,0.2610263718666943],[126,150,79,0.261558586408069],[126,151,64,0.24921031232055585],[126,151,65,0.2525472466366623],[126,151,66,0.25409384166020044],[126,151,67,0.25513683211324156],[126,151,68,0.25603552211019887],[126,151,69,0.2568130184841961],[126,151,70,0.25749151941259485],[126,151,71,0.2580915855682421],[126,151,72,0.2586315408482587],[126,151,73,0.2591269735258096],[126,151,74,0.25959034057083347],[126,151,75,0.2600306776908822],[126,151,76,0.2604534174499997],[126,151,77,0.2608603176336669],[126,151,78,0.26124950184306256],[126,151,79,0.2616156141240684],[126,152,64,0.2529880091086658],[126,152,65,0.2562205077769272],[126,152,66,0.2572010905602758],[126,152,67,0.25797099215441094],[126,152,68,0.25859011746210053],[126,152,69,0.2590838303718926],[126,152,70,0.25947717050014024],[126,152,71,0.259793938854209],[126,152,72,0.260055911862762],[126,152,73,0.26028217198805176],[126,152,74,0.2604885582827231],[126,152,75,0.2606872400251343],[126,152,76,0.260886416339711],[126,152,77,0.2610901444844275],[126,152,78,0.26129829926815656],[126,152,79,0.2615066658485216],[126,153,64,0.25640755201820636],[126,153,65,0.25934538179171895],[126,153,66,0.26003077544168596],[126,153,67,0.260534548575271],[126,153,68,0.26088220082899655],[126,153,69,0.26110119785810604],[126,153,70,0.26121923606530423],[126,153,71,0.261263151532459],[126,153,72,0.26125795355806675],[126,153,73,0.26122599076626773],[126,153,74,0.2611862537509771],[126,153,75,0.26115381795762965],[126,153,76,0.2611394302444719],[126,153,77,0.2611492423075215],[126,153,78,0.26118469390059745],[126,153,79,0.2612425485366118],[126,154,64,0.25945834135158774],[126,154,65,0.26215126900182356],[126,154,66,0.262585171797328],[126,154,67,0.26283104967442755],[126,154,68,0.2629165775276943],[126,154,69,0.26287112516525607],[126,154,70,0.262724816129264],[126,154,71,0.2625072709675984],[126,154,72,0.2622464685278263],[126,154,73,0.2619677554168619],[126,154,74,0.26169300816778956],[126,154,75,0.26143995236325196],[126,154,76,0.2612216426727443],[126,154,77,0.26104610747158974],[126,154,78,0.26091616142488966],[126,154,79,0.260829389143047],[126,155,64,0.26213158956521],[126,155,65,0.26467504670821373],[126,155,66,0.2648655510792654],[126,155,67,0.26486278008781566],[126,155,68,0.26469649992534094],[126,155,69,0.26439775018257183],[126,155,70,0.26399881334500375],[126,155,71,0.26353180548109156],[126,155,72,0.263027375352302],[126,155,73,0.262513566673721],[126,155,74,0.26201484861435936],[126,155,75,0.2615513193052211],[126,155,76,0.2611380868016336],[126,155,77,0.26078483162702853],[126,155,78,0.2604955547111302],[126,155,79,0.26026851422934455],[126,156,64,0.2644203773046446],[126,156,65,0.2669161097106827],[126,156,66,0.2668720719478276],[126,156,67,0.26663061859152687],[126,156,68,0.2662234923274683],[126,156,69,0.2656831383322048],[126,156,70,0.26504369921427884],[126,156,71,0.26433946780943923],[126,156,72,0.2636034356688748],[126,156,73,0.26286601887966665],[126,156,74,0.26215396681795405],[126,156,75,0.2614894590875051],[126,156,76,0.26088939554765606],[126,156,77,0.2603648839878678],[126,156,78,0.2599209296645168],[126,156,79,0.25955633058222743],[126,157,64,0.2663197795946572],[126,157,65,0.26887285357444685],[126,157,66,0.2686036015695797],[126,157,67,0.2681338283015641],[126,157,68,0.2674971114082413],[126,157,69,0.26672701587096825],[126,157,70,0.26585922431781855],[126,157,71,0.26492986776162375],[126,157,72,0.26397393615022435],[126,157,73,0.263023879461668],[126,157,74,0.26210840541493546],[126,157,75,0.2612514794948204],[126,157,76,0.26047153261629036],[126,157,77,0.259780881382143],[126,157,78,0.2591853655213559],[126,157,79,0.258684206737636],[126,158,64,0.2678270627008589],[126,158,65,0.27024984588799356],[126,158,66,0.27005746644714895],[126,158,67,0.26936977876017876],[126,158,68,0.2685146416848244],[126,158,69,0.2675264421474509],[126,158,70,0.2664420721017248],[126,158,71,0.2652991536470239],[126,158,72,0.2641343249941589],[126,158,73,0.2629817290904525],[126,158,74,0.26187171140011134],[126,158,75,0.2608297329424655],[126,158,76,0.259875504295548],[126,158,77,0.2590223458789723],[126,158,78,0.25827677944161753],[126,158,79,0.25763835529992285],[126,159,64,0.2689419522048509],[126,159,65,0.27119970656613385],[126,159,66,0.2712291322397448],[126,159,67,0.27033359937519463],[126,159,68,0.26927072551554976],[126,159,69,0.26807542031310355],[126,159,70,0.26678545574303775],[126,159,71,0.2654396020262557],[126,159,72,0.2640758025116504],[126,159,73,0.2627295621491368],[126,159,74,0.26143255642827207],[126,159,75,0.26021146724532357],[126,159,76,0.25908705174760327],[126,159,77,0.25807344979121105],[126,159,78,0.2571777352407106],[126,159,79,0.25639971594052396],[126,160,64,0.2696669728643589],[126,160,65,0.27175298737392833],[126,160,66,0.2721118120054889],[126,160,67,0.2710177636520961],[126,160,68,0.2697569270761523],[126,160,69,0.268364445961835],[126,160,70,0.26687865759483814],[126,160,71,0.2653391553163617],[126,160,72,0.26378486538027096],[126,160,73,0.26225234711791706],[126,160,74,0.2607743236180741],[126,160,75,0.25937844970169116],[126,160,76,0.25808632354096334],[126,160,77,0.2569127478432271],[126,160,78,0.2558652460961769],[126,160,79,0.2549438389559012],[126,161,64,0.2700078608638494],[126,161,65,0.2719169079896384],[126,161,66,0.2726960022653039],[126,161,67,0.27141160362852956],[126,161,68,0.269961229739662],[126,161,69,0.2683799931455771],[126,161,70,0.2667065106859379],[126,161,71,0.26498090675834735],[126,161,72,0.263242804108834],[126,161,73,0.2615295464626216],[126,161,74,0.2598746604914804],[126,161,75,0.25830656417301967],[126,161,76,0.2568475281536098],[126,161,77,0.2555128962839222],[126,161,78,0.2543105710583286],[126,161,79,0.25324076926071076],[126,162,64,0.2699740490983936],[126,162,65,0.2717027796106169],[126,162,66,0.2729689462520967],[126,162,67,0.2715007538862852],[126,162,68,0.26986746625260594],[126,162,69,0.2681039371822063],[126,162,70,0.26624882172118236],[126,162,71,0.26434253222825854],[126,162,72,0.2624251532346056],[126,162,73,0.26053459559301745],[126,162,74,0.2587049976627076],[126,162,75,0.25696538082420184],[126,162,76,0.2553385661639947],[126,162,77,0.2538403587145999],[126,162,78,0.25247900518644156],[126,162,79,0.25125493068794835],[126,163,64,0.2695792261757529],[126,163,65,0.2711265866674161],[126,163,66,0.27265467626372025],[126,163,67,0.2712665244786208],[126,163,68,0.26945468106483517],[126,163,69,0.2675129136389879],[126,163,70,0.2654797349975071],[126,163,71,0.2633956683446501],[126,163,72,0.2613010937488463],[126,163,73,0.25923434043403987],[126,163,74,0.2572300328709602],[126,163,75,0.25531769817253014],[126,163,76,0.2535206418335688],[126,163,77,0.2518550983914736],[126,163,78,0.25032966312581],[126,163,79,0.24894501046508147],[126,164,64,0.26884197882247285],[126,164,65,0.2702094232641292],[126,164,66,0.2715581033053125],[126,164,67,0.2706858943944414],[126,164,68,0.2686973546839051],[126,164,69,0.26657877714170414],[126,164,70,0.2643684239810011],[126,164,71,0.2621068285191723],[126,164,72,0.2598345778700567],[126,164,73,0.25759034733229336],[126,164,74,0.2554091946347189],[126,164,75,0.25332112173153126],[126,164,76,0.2513499113680468],[126,164,77,0.2495122451663359],[126,164,78,0.24781710951306726],[126,164,79,0.24626549507395726],[126,165,64,0.2677840662935251],[126,165,65,0.26897416367538185],[126,165,66,0.270146305878892],[126,165,67,0.26973819914577385],[126,165,68,0.2675737989156766],[126,165,69,0.26527868181971054],[126,165,70,0.26289079205890825],[126,165,71,0.26045060761871963],[126,165,72,0.25799886456932913],[126,165,73,0.25557453816002135],[126,165,74,0.25321308903916545],[126,165,75,0.25094498245710356],[126,165,76,0.24879448783101477],[126,165,77,0.24677876557272035],[126,165,78,0.2449072476066932],[126,165,79,0.24318131754075192],[126,166,64,0.26642469274923225],[126,166,65,0.26744043218793573],[126,166,66,0.2684394579787251],[126,166,67,0.26840875799510416],[126,166,68,0.26606910056636135],[126,166,69,0.2635973640016575],[126,166,70,0.26103113771397213],[126,166,71,0.25841079879250367],[126,166,72,0.2557771855862765],[126,166,73,0.2531695322202153],[126,166,74,0.25062367251295536],[126,166,75,0.2481705212871873],[126,166,76,0.24583484058064062],[126,166,77,0.2436342977829742],[126,166,78,0.24157882224520694],[126,166,79,0.23967026643846956],[126,167,64,0.2647798245965245],[126,167,65,0.26562465531113977],[126,167,66,0.2664545403071124],[126,167,67,0.26668729449060896],[126,167,68,0.26417279365160146],[126,167,69,0.2615240858993977],[126,167,70,0.2587784081596343],[126,167,71,0.25597601896976185],[126,167,72,0.2531578309276826],[126,167,73,0.2503633071082844],[126,167,74,0.24762863001617044],[126,167,75,0.24498515116231145],[126,167,76,0.24245812886724113],[126,167,77,0.24006576140794494],[126,167,78,0.23781852214407745],[126,167,79,0.23571880278623553],[126,168,64,0.2628633038803718],[126,168,65,0.2635411563520438],[126,168,66,0.26420641358485303],[126,168,67,0.2645668702198434],[126,168,68,0.26187782890722605],[126,168,69,0.2590516464315903],[126,168,70,0.2561252545417795],[126,168,71,0.2531388092914296],[126,168,72,0.250133293430484],[126,168,73,0.2471483846078194],[126,168,74,0.24422059800967644],[126,168,75,0.2413817115780705],[126,168,76,0.2386574814680786],[126,168,77,0.236066654916994],[126,168,78,0.2336202872161613],[126,168,79,0.23132136900249625],[126,169,64,0.26068820843559587],[126,169,65,0.26120349242475005],[126,169,66,0.2617091285359149],[126,169,67,0.26204258630256855],[126,169,68,0.25917931908570596],[126,169,69,0.25617517736050216],[126,169,70,0.2530668836148385],[126,169,71,0.249894544840353],[126,169,72,0.2466992370349598],[126,169,73,0.2435208561331351],[126,169,74,0.24039624400016024],[126,169,75,0.2373575976482589],[126,169,76,0.2344311693493591],[126,169,77,0.231636264835123],[126,169,78,0.2289845462942873],[126,169,79,0.22647964640487664],[126,170,64,0.2582684566284846],[126,170,65,0.25862603607499557],[126,170,66,0.2589774791996735],[126,170,67,0.25911004145123434],[126,170,68,0.2560730443625025],[126,170,69,0.2528907046622018],[126,170,70,0.24959968163195062],[126,170,71,0.2462401256006953],[126,170,72,0.24285325742284541],[126,170,73,0.23947921379566234],[126,170,74,0.23615516701817152],[126,170,75,0.23291372732004206],[126,170,76,0.2297816354098836],[126,170,77,0.22677875241235243],[126,170,78,0.22391735388662476],[126,170,79,0.22120173414980907],[126,171,64,0.25562065910499],[126,171,65,0.2558258038878112],[126,171,66,0.25602880187860844],[126,171,67,0.2557635443614111],[126,171,68,0.2525537156956584],[126,171,69,0.2491934730670477],[126,171,70,0.24571960849310623],[126,171,71,0.24217244681134906],[126,171,72,0.23859343331979652],[126,171,73,0.23502298554135537],[126,171,74,0.231498617636205],[126,171,75,0.22805334551887163],[126,171,76,0.22471438026390803],[126,171,77,0.22150211691009916],[126,171,78,0.21842942530208787],[126,171,79,0.21550124914488003],[126,172,64,0.2527662201487386],[126,172,65,0.25282453462680204],[126,172,66,0.2528850222034747],[126,172,67,0.2519940780277315],[126,172,68,0.2486129938234148],[126,172,69,0.24507603155779498],[126,172,70,0.2414203600553879],[126,172,71,0.23768664674878062],[126,172,72,0.23391666664313818],[126,172,73,0.2301511726989687],[126,172,74,0.22642803603777462],[126,172,75,0.22278066391580464],[126,172,76,0.21923670294635061],[126,172,77,0.2158170345848562],[126,172,78,0.21253506942773095],[126,172,79,0.20939634641965427],[126,173,64,0.2497336914495168],[126,173,65,0.24965101964544162],[126,173,66,0.24957495298334073],[126,173,67,0.24778701340275072],[126,173,68,0.24423726141467136],[126,173,69,0.24052607745178312],[126,173,70,0.2366912963585351],[126,173,71,0.23277412983456208],[126,173,72,0.2288168095469964],[126,173,73,0.2248604881619382],[126,173,74,0.2209434065432104],[126,173,75,0.21709933491650238],[126,173,76,0.213356295341612],[126,173,77,0.20973557237859886],[126,173,78,0.20625101837941168],[126,173,79,0.20290865938930436],[126,174,64,0.24656138129070929],[126,174,65,0.24634368851320085],[126,174,66,0.24613684570396355],[126,174,67,0.24311956962740672],[126,174,68,0.23940514570653637],[126,174,69,0.2355240565222393],[126,174,70,0.2315151333577356],[126,174,71,0.22742036281251582],[126,174,72,0.22328257627828357],[126,174,73,0.21914339330020993],[126,174,74,0.21504142688404507],[126,174,75,0.2110107583698912],[126,174,76,0.2070796890483696],[126,174,77,0.2032697752483379],[126,174,78,0.19959515318124313],[126,174,79,0.196062159389949],[126,175,64,0.24328944089373924],[126,175,65,0.24294275395083909],[126,175,66,0.24163537634224355],[126,175,67,0.23796829674569203],[126,175,68,0.2340946948569575],[126,175,69,0.23004992166336385],[126,175,70,0.22587416079825404],[126,175,71,0.2216104198363617],[126,175,72,0.21730227780791267],[126,175,73,0.21299188225995516],[126,175,74,0.20871820371213376],[126,175,75,0.20451555492514956],[126,175,76,0.20041238196599004],[126,175,77,0.196430333618384],[126,175,78,0.19258361525378218],[126,175,79,0.18887863285168455],[126,176,64,0.2399225477530004],[126,176,65,0.23945312536633578],[126,176,66,0.23615924360124937],[126,176,67,0.23234487901531467],[126,176,68,0.22831806372343086],[126,176,69,0.22411631161871146],[126,176,70,0.21978149049630183],[126,176,71,0.21535785317152178],[126,176,72,0.21088985509890318],[126,176,73,0.2064202168181087],[126,176,74,0.2019882388336101],[126,176,75,0.1976283761174084],[126,176,76,0.19336907900149355],[126,176,77,0.18923190680281338],[126,176,78,0.18523092010209344],[126,176,79,0.18137235718300698],[126,177,64,0.23645051823946706],[126,177,65,0.233919410287281],[126,177,66,0.23023241154915491],[126,177,67,0.22627686834367486],[126,177,68,0.22210325772745032],[126,177,69,0.21775165328119384],[126,177,70,0.2132658983249554],[126,177,71,0.20869168038983532],[126,177,72,0.20407443139697704],[126,177,73,0.19945746744446435],[126,177,74,0.19488037553988818],[126,177,75,0.19037765421087383],[126,177,76,0.18597761451568048],[126,177,77,0.18170154756465476],[126,177,78,0.17756316425456808],[126,177,79,0.17356831251567809],[126,178,64,0.2311878083079082],[126,178,65,0.22770337330522727],[126,178,66,0.2238883552044268],[126,178,67,0.21979837944247735],[126,178,68,0.21548510954426808],[126,178,69,0.2109915242321141],[126,178,70,0.20636368802953506],[126,178,71,0.20164887326824288],[126,178,72,0.1968935553474984],[126,178,73,0.1921416418153771],[126,178,74,0.187432942311421],[126,178,75,0.18280188601763658],[126,178,76,0.17827649286793668],[126,178,77,0.1738776043683519],[126,178,78,0.1696183794852926],[126,178,79,0.16550406067067097],[126,179,64,0.22470406060768996],[126,179,65,0.22110211183396394],[126,179,66,0.21716611411211262],[126,179,67,0.2129492298955959],[126,179,68,0.20850433888532638],[126,179,69,0.20387761284860217],[126,179,70,0.19911753243570565],[126,179,71,0.1942730614475574],[126,179,72,0.18939174942808096],[126,179,73,0.18451806169877302],[126,179,74,0.17969194354837653],[126,179,75,0.17494762491185317],[126,179,76,0.1703126714902059],[126,179,77,0.16580728787946955],[126,179,78,0.16144387789687883],[126,179,79,0.1572268669185368],[126,180,64,0.2178713869655439],[126,180,65,0.21415865944442913],[126,180,66,0.2101094054817985],[126,180,67,0.20577399720173462],[126,180,68,0.20120653620952425],[126,180,69,0.1964566116043451],[126,180,70,0.19157525971063363],[126,180,71,0.18661319575917373],[126,180,72,0.18161903546414923],[126,180,73,0.17663773707805555],[126,180,74,0.1717092702845351],[126,180,75,0.16686751792509177],[126,180,76,0.16213941618810598],[126,180,77,0.15754433852078378],[126,180,78,0.15309372816007927],[126,180,79,0.14879098382074848],[126,181,64,0.210735924932859],[126,181,65,0.20691973061148436],[126,181,66,0.20276564816851833],[126,181,67,0.1983209917638528],[126,181,68,0.1936410693944621],[126,181,69,0.18877904266834997],[126,181,70,0.18378858387259892],[126,181,71,0.1787221705244177],[126,181,72,0.1736294366607673],[126,181,73,0.16855573709603158],[126,181,74,0.16354093063169725],[126,181,75,0.15861838785323876],[126,181,76,0.153814228797716],[126,181,77,0.14914679542411238],[126,181,78,0.14462636347040794],[126,181,79,0.14025509794022487],[126,182,64,0.20334645735152931],[126,182,65,0.1994346872820558],[126,182,66,0.1951848963327492],[126,182,67,0.19064114471313667],[126,182,68,0.1858599123181807],[126,182,69,0.18089801482994353],[126,182,70,0.17581177867255648],[126,182,71,0.1706554040644514],[126,182,72,0.16547945552275725],[126,182,73,0.1603295573443255],[126,182,74,0.15524529965184597],[126,182,75,0.15025936026065986],[126,182,76,0.14539684728670393],[126,182,77,0.14067486708150806],[126,182,78,0.13610232174945594],[126,182,79,0.13167994017883777],[126,183,64,0.20462176311637173],[126,183,65,0.19978714588958923],[126,183,66,0.19470462617691936],[126,183,67,0.18940981648723115],[126,183,68,0.1839554552716188],[126,183,69,0.17839735880464563],[126,183,70,0.1727899951305832],[126,183,71,0.16718491001306793],[126,183,72,0.1616293542846016],[126,183,73,0.15616510868480066],[126,183,74,0.15082751136508532],[126,183,75,0.14564469292151466],[126,183,76,0.14063702349925802],[126,183,77,0.13581677619483082],[126,183,78,0.13118801066975627],[126,183,79,0.12674668058367597],[126,184,64,0.20638436954472905],[126,184,65,0.20145946705973192],[126,184,66,0.19628844112933838],[126,184,67,0.1909033290213696],[126,184,68,0.1853577487747478],[126,184,69,0.17971093159225118],[126,184,70,0.17401967768429574],[126,184,71,0.16833686226168887],[126,184,72,0.1627102166776224],[126,184,73,0.15718129837087708],[126,184,74,0.15178465436759683],[126,184,75,0.1465471827996464],[126,184,76,0.14148769659664662],[126,184,77,0.13661669320926145],[126,184,78,0.13193633392708617],[126,184,79,0.12744063606734463],[126,185,64,0.20805598417395527],[126,185,65,0.20303964266025998],[126,185,66,0.1977804818909447],[126,185,67,0.19230703700655938],[126,185,68,0.18667373854038796],[126,185,69,0.18094309513276366],[126,185,70,0.17517408072243287],[126,185,71,0.1694207259167847],[126,185,72,0.16373105728878273],[126,185,73,0.15814621659572442],[126,185,74,0.15269976425220935],[126,185,75,0.14741717110709723],[126,185,76,0.14231550229071885],[126,185,77,0.1374032966170732],[126,185,78,0.13268064474993072],[126,185,79,0.1281394690733064],[126,186,64,0.20967184078410497],[126,186,65,0.20456327962575072],[126,186,66,0.19921672567994614],[126,186,67,0.19365737319220244],[126,186,68,0.18794038736247837],[126,186,69,0.1821313438853607],[126,186,70,0.17629117489892285],[126,186,71,0.1704748507118201],[126,186,72,0.1647304796108824],[126,186,73,0.15909857863322535],[126,186,74,0.15361151921102634],[126,186,75,0.14829315133115448],[126,186,76,0.14315860958566243],[126,186,77,0.1382143042255269],[126,186,78,0.13345810007260703],[126,186,79,0.128879685894979],[126,187,64,0.21126350251158024],[126,187,65,0.2060622550763986],[126,187,66,0.20062932481111617],[126,187,67,0.19498680948333522],[126,187,68,0.18919052302106423],[126,187,69,0.1833088317590215],[126,187,70,0.17740436011684202],[126,187,71,0.17153276718314328],[126,187,72,0.16574200735049865],[126,187,73,0.16007175299505852],[126,187,74,0.15455298269074008],[126,187,75,0.14920773819831365],[126,187,76,0.14404905322060108],[126,187,77,0.13908105666903606],[126,187,78,0.13429925294755374],[126,187,79,0.12969098152839134],[126,188,64,0.2128572698106934],[126,188,65,0.2075631115997044],[126,188,66,0.20204499104667906],[126,188,67,0.1963222280973183],[126,188,68,0.1904511946267004],[126,188,69,0.18450271562367185],[126,188,70,0.1785408010119941],[126,188,71,0.17262152099616676],[126,188,72,0.1667924258577353],[126,188,73,0.16109211902656287],[126,188,74,0.1555499865097318],[126,188,75,0.15018608552704654],[126,188,76,0.145011194969629],[126,188,77,0.14002703006932116],[126,188,78,0.1352266234450325],[126,188,79,0.13059487447876875],[126,189,64,0.21447248306146036],[126,189,65,0.20908534894812672],[126,189,66,0.20348328018579656],[126,189,67,0.19768319860872743],[126,189,68,0.1917419425219527],[126,189,69,0.18573242251785504],[126,189,70,0.17971969905331717],[126,189,71,0.17375995976184838],[126,189,72,0.1679000949193032],[126,189,73,0.16217741767134009],[126,189,74,0.15661953171340395],[126,189,75,0.15124434889562616],[126,189,76,0.1460602590085563],[126,189,77,0.1410664537934416],[126,189,78,0.1362534070162637],[126,189,79,0.13160351224871772],[126,190,64,0.21611971780458378],[126,190,65,0.21063961017865235],[126,190,66,0.2049547749861213],[126,190,67,0.19908015906038248],[126,190,68,0.19307298002084744],[126,190,69,0.18700783896056078],[126,190,70,0.18095049982165193],[126,190,71,0.17495697108725305],[126,190,72,0.16907323186886558],[126,190,73,0.16333509459473128],[126,190,74,0.15776820661715046],[126,190,75,0.15238819285285732],[126,190,76,0.14720094136932357],[126,190,77,0.1422030336334711],[126,190,78,0.1373823209510513],[126,190,79,0.13271864844553038],[126,191,64,0.21779887049007796],[126,191,65,0.21222576016755448],[126,191,66,0.20645916442164125],[126,191,67,0.200512499233983],[126,191,68,0.19444328518878065],[126,191,69,0.188327420704238],[126,191,70,0.18223103396722903],[126,191,71,0.17620967055394976],[126,191,72,0.17030816393129175],[126,191,73,0.16456063483315161],[126,191,74,0.1589906214784833],[126,191,75,0.15361134240779103],[126,191,76,0.14842609352786823],[126,191,77,0.1434287807731165],[126,191,78,0.13860458961894256],[126,191,79,0.13393079251900056],[126,192,64,0.21949713253544365],[126,192,65,0.21383085434484478],[126,192,66,0.2079832171957717],[126,192,67,0.20196654409342935],[126,192,68,0.1958386007912979],[126,192,69,0.18967622119988403],[126,192,70,0.18354559028988032],[126,192,71,0.17750153827320658],[126,192,72,0.17158754868592413],[126,192,73,0.1658358881194597],[126,192,74,0.16026785923899403],[126,192,75,0.1548941785505341],[126,192,76,0.14971548020469866],[126,192,77,0.14472294695770022],[126,192,78,0.139899069251569],[126,192,79,0.13521853322664742],[126,193,64,0.22118685040286676],[126,193,65,0.21542699540822083],[126,193,66,0.20949864734740023],[126,193,67,0.20341343533754497],[126,193,68,0.19722934047018728],[126,193,69,0.19102383698327136],[126,193,70,0.1848629193341279],[126,193,71,0.17880050262694563],[126,193,72,0.17287856150756098],[126,193,73,0.16712738402331892],[126,193,74,0.16156594178209274],[126,193,75,0.15620237757900451],[126,193,76,0.1510346114983],[126,193,77,0.1460510663431805],[126,193,78,0.1412315131013358],[126,193,79,0.13654803701857865],[126,194,64,0.2228232693235656],[126,194,65,0.21696907569659238],[126,194,66,0.21095986971127564],[126,194,67,0.20480690892750156],[126,194,68,0.1985683991403466],[126,194,69,0.19232226813460956],[126,194,70,0.18613416584469414],[126,194,71,0.18005696976886928],[126,194,72,0.17413104882318964],[126,194,73,0.16838463604033088],[126,194,74,0.1628343111641587],[126,194,75,0.15748559403610876],[126,194,76,0.15233364951974493],[126,194,77,0.14736410456711282],[126,194,78,0.14255397789778715],[126,194,79,0.13787272263885078],[126,195,64,0.22434282179196652],[126,195,65,0.21839308352871173],[126,195,66,0.21230233926195266],[126,195,67,0.20608167774786917],[126,195,68,0.1997895897022985],[126,195,69,0.19350442365065276],[126,195,70,0.18729146010189912],[126,195,71,0.18120251977272378],[126,195,72,0.1752763484502523],[126,195,73,0.1695391051344945],[126,195,74,0.16400495424600675],[126,195,75,0.1586767625393635],[126,195,76,0.15354690122374767],[126,195,77,0.14859815366015958],[126,195,78,0.14380472888341775],[126,195,79,0.13913338108622036],[126,196,64,0.22569669173209844],[126,196,65,0.2196505034354169],[126,196,66,0.21347771904238252],[126,196,67,0.20718934460060193],[126,196,68,0.2008442009968794],[126,196,69,0.19452107662158485],[126,196,70,0.18828490564473965],[126,196,71,0.18218647582618397],[126,196,72,0.17626293091067777],[126,196,73,0.17053837124796775],[126,196,74,0.16502455317414647],[126,196,75,0.159721687554726],[126,196,76,0.1546193377601041],[126,196,77,0.1496974172223391],[126,196,78,0.14492728661137136],[126,196,79,0.14027295056881325],[126,197,64,0.22687948404691355],[126,197,65,0.22073725527539276],[126,197,66,0.2144830052591148],[126,197,67,0.2081276883728124],[126,197,68,0.20173038764123769],[126,197,69,0.19537021248584108],[126,197,70,0.18911167191581937],[126,197,71,0.18300447747687276],[126,197,72,0.1770841570467861],[126,197,73,0.17137276224849674],[126,197,74,0.165879669786784],[126,197,75,0.1606024768870125],[126,197,76,0.15552799089332325],[126,197,77,0.15063331297115137],[126,197,78,0.14588701575784258],[126,197,79,0.14125041471517627],[126,198,64,0.2278912462323607],[126,198,65,0.2216544903003011],[126,198,66,0.21532018103372402],[126,198,67,0.20889921930535488],[126,198,68,0.202450781922683],[126,198,69,0.1960540475530613],[126,198,70,0.18977292359936782],[126,198,71,0.18365593875525452],[126,198,72,0.1777369593891724],[126,198,73,0.17203599532855623],[126,198,74,0.1665600951418629],[126,198,75,0.16130433089591747],[126,198,76,0.1562528722529866],[126,198,77,0.15138014966787244],[126,198,78,0.14665210635309753],[126,198,79,0.14202753859946668],[126,199,64,0.22873354502198],[126,199,65,0.22240460328823874],[126,199,66,0.21599219041805012],[126,199,67,0.20950713439233573],[126,199,68,0.2030084582284208],[126,199,69,0.196575047026878],[126,199,70,0.1902699495815161],[126,199,71,0.18414035413990487],[126,199,72,0.178218396225458],[126,199,73,0.17252205197966117],[126,199,74,0.16705611693764938],[126,199,75,0.1618132700369484],[126,199,76,0.15677522255343168],[126,199,77,0.15191395156208307],[126,199,78,0.1471930174359782],[126,199,79,0.14256896482444364],[126,200,64,0.22940918371823824],[126,200,65,0.22299099303792094],[126,200,66,0.2165027621948275],[126,200,67,0.20995522249271825],[126,200,68,0.20340693620395003],[126,200,69,0.19693604242683108],[126,200,70,0.1906044097582031],[126,200,71,0.1844576882685488],[126,200,72,0.17852619570934078],[126,200,73,0.17282588564584417],[126,200,74,0.1673593972695565],[126,200,75,0.16211718653736243],[126,200,76,0.15707873818534937],[126,200,77,0.15221385807572396],[126,200,78,0.14748404525835912],[126,200,79,0.14284394306352724],[126,201,64,0.22992193230819713],[126,201,65,0.22341783944702515],[126,201,66,0.21685625531103575],[126,201,67,0.21024779782134742],[126,201,68,0.2036502208555312],[126,201,69,0.1971403962003634],[126,201,70,0.1907786407837161],[126,201,71,0.1846088376383286],[126,201,72,0.17865938607505472],[126,201,73,0.17294423041756754],[126,201,74,0.16746396691978468],[126,201,75,0.16220702838598167],[126,201,76,0.15715094592049578],[126,201,77,0.15226368715072577],[126,201,78,0.14750507019674183],[126,201,79,0.1428282526025397],[126,202,64,0.2302762703937468],[126,202,65,0.22368989727694322],[126,202,66,0.21705752614184604],[126,202,67,0.21038966213998817],[126,202,68,0.2037428800666188],[126,202,69,0.19719221416737806],[126,202,70,0.1907960215943261],[126,202,71,0.18459616533685919],[126,202,72,0.17861901321652346],[126,202,73,0.1728765122490839],[126,202,74,0.1673673378879395],[126,202,75,0.16207811756709495],[126,202,76,0.15698472787441967],[126,202,77,0.15205366460847755],[126,202,78,0.14724348490768469],[126,202,79,0.14250632058819868],[126,203,64,0.23047714297787242],[126,203,65,0.22381230672035568],[126,203,66,0.21711181780091673],[126,203,67,0.21038609599168856],[126,203,68,0.20369016002687587],[126,203,69,0.19709660647553223],[126,203,70,0.1906613995849069],[126,203,71,0.18442410989739907],[126,203,72,0.1784089469509843],[126,203,73,0.17262586425167362],[126,203,74,0.16707173594911928],[126,203,75,0.16173160455575616],[126,203,76,0.1565799989676268],[126,203,77,0.15158232197285537],[126,203,78,0.14669630637453873],[126,203,79,0.14187353880776593],[126,204,64,0.23052972916035996],[126,204,65,0.22379042090269083],[126,204,66,0.2170246717308397],[126,204,67,0.2102428793442761],[126,204,68,0.20349813910041467],[126,204,69,0.1968599977788937],[126,204,70,0.19038157835805952],[126,204,71,0.18409986942078474],[126,204,72,0.17803677734422715],[126,204,73,0.17220024768079195],[126,204,74,0.16658545509980466],[126,204,75,0.1611760611737007],[126,204,76,0.15594553921530277],[126,204,77,0.15085856530554193],[126,204,78,0.14587247459670866],[126,204,79,0.14093878193404386],[126,205,64,0.2304392238090902],[126,205,65,0.2236296504637323],[126,205,66,0.2168018618257757],[126,205,67,0.20996634203100653],[126,205,68,0.20317392068708512],[126,205,69,0.1964904873855744],[126,205,70,0.18996586800466908],[126,205,71,0.1836341621531175],[126,205,72,0.17751480252817728],[126,205,73,0.1716136802961208],[126,205,74,0.1659243358202458],[126,205,75,0.16042921398071194],[126,205,76,0.15510098325825467],[126,205,77,0.14990391769146533],[126,205,78,0.14479534076776393],[126,205,79,0.13972713027042394],[126,206,64,0.23021063228722202],[126,206,65,0.22333532538198653],[126,206,66,0.21644935135732576],[126,206,67,0.2095634443988725],[126,206,68,0.20272586565748363],[126,206,69,0.19599826015186494],[126,206,70,0.18942669891239197],[126,206,71,0.18304206475179374],[126,206,72,0.176861109491453],[126,206,73,0.17088757382986428],[126,206,74,0.1651133691447817],[126,206,75,0.1595198204452699],[126,206,76,0.15407896962276335],[126,206,77,0.14875493809283205],[126,206,78,0.14350534787456024],[126,206,79,0.13828280012113964],[126,207,64,0.22985141350798868],[126,207,65,0.22291579321336885],[126,207,66,0.21597669268140263],[126,207,67,0.2090453045251195],[126,207,68,0.20216706059983017],[126,207,69,0.19539880413087402],[126,207,70,0.18878239886812076],[126,207,71,0.18234516675042167],[126,207,72,0.17610093717697958],[126,207,73,0.1700511551682853],[126,207,74,0.16418604767909442],[126,207,75,0.15848584725641543],[126,207,76,0.15292207217398623],[126,207,77,0.1474588621226942],[126,207,78,0.14205436849669822],[126,207,79,0.13579091850154854],[126,208,64,0.22937940161788997],[126,208,65,0.22239118930396592],[126,208,66,0.21540605906557883],[126,208,67,0.20843583835070317],[126,208,68,0.20152287647135803],[126,208,69,0.19471868896897665],[126,208,70,0.18806050848044836],[126,208,71,0.18157177859053772],[126,208,72,0.17526319045087943],[126,208,73,0.16913377396080528],[126,208,74,0.16317204274380298],[126,208,75,0.1573571920905025],[126,208,76,0.1516603489839501],[126,208,77,0.1460458732769476],[126,208,78,0.14047270905728054],[126,208,79,0.13205672579648617],[126,209,64,0.22881338975859852],[126,209,65,0.22178226809050233],[126,209,66,0.21475978043844077],[126,209,67,0.20775851541909568],[126,209,68,0.20081749582240954],[126,209,69,0.19398243119403472],[126,209,70,0.18728554734283911],[126,209,71,0.18074614040853323],[126,209,72,0.17437159653399412],[126,209,73,0.16815846103263535],[126,209,74,0.1620935562539692],[126,209,75,0.15615514729519728],[126,209,76,0.15031415465880585],[126,209,77,0.14453541291710134],[126,209,78,0.13798283927866706],[126,209,79,0.12824894478462606],[126,210,64,0.22817016859233794],[126,210,65,0.22110703678049923],[126,210,66,0.21405674751221598],[126,210,67,0.20703272893288513],[126,210,68,0.20007045485441455],[126,210,69,0.19320941646641548],[126,210,70,0.18647651982560878],[126,210,71,0.17988670362515147],[126,210,72,0.17344393802482802],[126,210,73,0.1671422670597836],[126,210,74,0.16096689379673132],[126,210,75,0.15489530735996032],[126,210,76,0.1488984509099744],[126,210,77,0.14294192962646857],[126,210,78,0.13409968567247063],[126,210,79,0.12437043944758243],[126,211,64,0.22746456086388062],[126,211,65,0.22038086931833417],[126,211,66,0.21331260966026866],[126,211,67,0.20627408170244682],[126,211,68,0.19929701979845282],[126,211,69,0.1924143661115336],[126,211,70,0.1856474690840689],[126,211,71,0.17900676762783066],[126,211,72,0.17249276563170318],[126,211,73,0.16609704321986463],[126,211,74,0.15980330389065064],[126,211,75,0.153588456629628],[126,211,76,0.14742373206038345],[126,211,77,0.1397275717745422],[126,211,78,0.13013056462541395],[126,211,79,0.1204272857314818],[126,212,64,0.22670946855090862],[126,212,65,0.21961663301652457],[126,212,66,0.21253998434368654],[126,212,67,0.2054946815485542],[126,212,68,0.19850856963519328],[126,212,69,0.19160780565152033],[126,212,70,0.18480802734725943],[126,212,71,0.17811510555809376],[126,212,72,0.17152609135706937],[126,212,73,0.1650301921991552],[126,212,74,0.15860977614561578],[126,212,75,0.15224140322923496],[126,212,76,0.1451135967630269],[126,212,77,0.13565994816012358],[126,212,78,0.12608457010759466],[126,212,79,0.11642788140904918],[126,213,64,0.225915932851301],[126,213,65,0.2188248281426678],[126,213,66,0.21174867840107045],[126,213,67,0.20470344648239613],[126,213,68,0.19771298547394373],[126,213,69,0.19079653562927135],[126,213,70,0.1839639627349928],[126,213,71,0.17721657938409857],[126,213,72,0.17054806222445593],[126,213,73,0.1639453895358079],[126,213,74,0.15738979817353654],[126,213,75,0.15026274380093924],[126,213,76,0.1409497165583302],[126,213,77,0.13150778222344087],[126,213,78,0.12197287184718003],[126,213,79,0.11238217057219109],[126,214,64,0.2250932072700085],[126,214,65,0.2180137407658906],[126,214,66,0.21094592152732983],[126,214,67,0.2039064199956113],[126,214,68,0.19691504691435624],[126,214,69,0.18998410501975505],[126,214,70,0.18311772284748257],[126,214,71,0.17631274442903055],[126,214,72,0.16955961462233787],[126,214,73,0.1628432752553775],[126,214,74,0.15520323675966616],[126,214,75,0.14601492674848857],[126,214,76,0.13669830784074605],[126,214,77,0.12728497932237545],[126,214,78,0.11780801445059542],[126,214,79,0.10830098381158478],[126,215,64,0.2242488440820552],[126,215,65,0.2171896091794908],[126,215,66,0.21013661227808883],[126,215,67,0.203107096800928],[126,215,68,0.19611683571871355],[126,215,69,0.18917128752341883],[126,215,70,0.18226897536651998],[126,215,71,0.1754024435146605],[126,215,72,0.16855910932099658],[126,215,73,0.15998397923247867],[126,215,74,0.15089305063502118],[126,215,75,0.14168108007192282],[126,215,76,0.1323758535683188],[126,215,77,0.12300664053181201],[126,215,78,0.11360331704270234],[126,215,79,0.10419549521847551],[126,216,64,0.22338879446066306],[126,216,65,0.21635680422741244],[126,216,66,0.20932357694481724],[126,216,67,0.20230675936925882],[126,216,68,0.19531814712402415],[126,216,69,0.1883565610331147],[126,216,70,0.1814151458982729],[126,216,71,0.17356854384834722],[126,216,72,0.16467032723560387],[126,216,73,0.1556406785481352],[126,216,74,0.14650228823433498],[126,216,75,0.13727996419998775],[126,216,76,0.12799982400221532],[126,216,77,0.1186885022839691],[126,216,78,0.10937237443567825],[126,216,79,0.10007679742185593],[126,217,64,0.22251752257134175],[126,217,65,0.21551802387216662],[126,217,66,0.2085078416529808],[126,217,67,0.20150482561276944],[126,217,68,0.19451690912261377],[126,217,69,0.18699576857829248],[126,217,70,0.17823379652550933],[126,217,71,0.1693385554134665],[126,217,72,0.16032869596753446],[126,217,73,0.15122538922313014],[126,217,74,0.14205154867959904],[126,217,75,0.13283107717376827],[126,217,76,0.12358813957265787],[126,217,77,0.11434646233140469],[126,217,78,0.10512866090641854],[126,217,79,0.09595559595285207],[126,218,64,0.22163813394327586],[126,218,65,0.21467450234994184],[126,218,66,0.2076889180404709],[126,218,67,0.20050565592578418],[126,218,68,0.19182171010510052],[126,218,69,0.18300430912483964],[126,218,70,0.17406955609439556],[126,218,71,0.16503638660967476],[126,218,72,0.15592577885411313],[126,218,73,0.14675999793316882],[126,218,74,0.13756187569509168],[126,218,75,0.12835412723209297],[126,218,76,0.11915870519233257],[126,218,77,0.10999619296514562],[126,218,78,0.10088523773232064],[126,218,79,0.09184202430489646],[126,219,64,0.22075251843830992],[126,219,65,0.21382623426479586],[126,219,66,0.20564405287045534],[126,219,67,0.19686109764771353],[126,219,68,0.1879546314227637],[126,219,69,0.17894243347304298],[126,219,70,0.16984506807138813],[126,219,71,0.1606846590399564],[126,219,72,0.15148413274953285],[126,219,73,0.14226650743496974],[126,219,74,0.13305423014177864],[126,219,75,0.1238685625439743],[126,219,76,0.1147290167939617],[126,219,77,0.1056528424825039],[126,219,78,0.09665456570346131],[126,219,79,0.08774558113206511],[126,220,64,0.21986150814547448],[126,220,65,0.21108759877756506],[126,220,66,0.20216841362704657],[126,220,67,0.1931484869042253],[126,220,68,0.18402869850852788],[126,220,69,0.17483195081634662],[126,220,70,0.16558275778157883],[126,220,71,0.15630597685574163],[126,220,72,0.14702608335915418],[126,220,73,0.13776650332766538],[126,220,74,0.12854900621096238],[126,220,75,0.11939315870730166],[126,220,76,0.11031584092459848],[126,220,77,0.10133082596027874],[126,220,78,0.0924484238951965],[126,220,79,0.08367519109842661],[126,221,64,0.21691263957852858],[126,221,65,0.20780443276878852],[126,221,66,0.19863560068329228],[126,221,67,0.18938770992303272],[126,221,68,0.18006490361556962],[126,221,69,0.17069459915422183],[126,221,70,0.16130471585669554],[126,221,71,0.15192237120937382],[126,221,72,0.14257318466808025],[126,221,73,0.13328065202012307],[126,221,74,0.12406559174239519],[126,221,75,0.11494566468301089],[126,221,76,0.10593496828362287],[126,221,77,0.0970437064474116],[126,221,78,0.08827793604705532],[126,221,79,0.07963939095605667],[126,222,64,0.2138445357838902],[126,222,65,0.2044739878803399],[126,222,66,0.19506440068163336],[126,222,67,0.18559868393022175],[126,222,68,0.17608395522002177],[126,222,69,0.16655152067460524],[126,222,70,0.15703215213577287],[126,222,71,0.1475547548210666],[126,222,72,0.13814569835369211],[126,222,73,0.12882823022473297],[126,222,74,0.11962197317780729],[126,222,75,0.11054250788328784],[126,222,76,0.10160104214375969],[126,222,77,0.09280416774595758],[126,222,78,0.08415370595045192],[126,222,79,0.07564664248727195],[126,223,64,0.2107374131982463],[126,223,65,0.20111386409320942],[126,223,66,0.19147354228235844],[126,223,67,0.1818009156237932],[126,223,68,0.17210578440973948],[126,223,69,0.16242273247480618],[126,223,70,0.1527848514466633],[126,223,71,0.14322238670020235],[126,223,72,0.13376209337263778],[126,223,73,0.12442668634157873],[126,223,74,0.11523438570714525],[126,223,75,0.1061985591809214],[126,223,76,0.09732746264448511],[126,223,77,0.08862407999999436],[126,223,78,0.08008606329848567],[126,223,79,0.07170577399672871],[126,224,64,0.20760775996486738],[126,224,65,0.1977416040629138],[126,224,66,0.18788130217843954],[126,224,67,0.17801304636104376],[126,224,68,0.1681490414732184],[126,224,69,0.15832659246351014],[126,224,70,0.1485806312162524],[126,224,71,0.13894234709904055],[126,224,72,0.1294385659544542],[126,224,73,0.12009123414114285],[126,224,74,0.11091700921064145],[126,224,75,0.10192695865338133],[126,224,76,0.09312636799330234],[126,224,77,0.08451465935695424],[126,224,78,0.07608542149386223],[126,224,79,0.06782655207887611],[126,225,64,0.20447214474320552],[126,225,65,0.19437435292670113],[126,225,66,0.18430509526175579],[126,225,67,0.17425238378685706],[126,225,68,0.16423058247858602],[126,225,69,0.1542792603195226],[126,225,70,0.14443480089482225],[126,225,71,0.13472902281806798],[126,225,72,0.12518858027765703],[126,225,73,0.11583447919865375],[126,225,74,0.10668171064486072],[126,225,75,0.0977390029190399],[126,225,76,0.08900869365183268],[126,225,77,0.0804867230038238],[126,225,78,0.07216274894439317],[126,225,79,0.06402038541429855],[126,226,64,0.20134694348778887],[126,226,65,0.1910285008657059],[126,226,66,0.18076104864527728],[126,226,67,0.17053441965630803],[126,226,68,0.16036494566484516],[126,226,69,0.15029415342033728],[126,226,70,0.1403596232215965],[126,226,71,0.1305936030267031],[126,226,72,0.12102243015004652],[126,226,73,0.11166607857900765],[126,226,74,0.10253783356504577],[126,226,75,0.09364409496395097],[126,226,76,0.08498431062003843],[126,226,77,0.07655104091105935],[126,226,78,0.06833015539879822],[126,226,79,0.06030116236358393],[126,227,64,0.1982513177172404],[126,227,65,0.1877232954600715],[126,227,66,0.17726823503112896],[126,227,67,0.16687768579617404],[126,227,68,0.15656981019247526],[126,227,69,0.14638794165254396],[126,227,70,0.13637073672171482],[126,227,71,0.12655078569570077],[126,227,72,0.11695405672903678],[126,227,73,0.10759947491793616],[126,227,74,0.09849863803141361],[126,227,75,0.08965567037219899],[126,227,76,0.08106721605719641],[126,227,77,0.07272257281817168],[126,227,78,0.06460396724130218],[126,227,79,0.05668697218820673],[126,228,64,0.19521879549658716],[126,228,65,0.18449523059281492],[126,228,66,0.17386575068751442],[126,228,67,0.1633234819035541],[126,228,68,0.15288823981872202],[126,228,69,0.1426049570856796],[126,228,70,0.13251319374273554],[126,228,71,0.12264575069765332],[126,228,72,0.11302814006368414],[126,228,73,0.1036781987179301],[126,228,74,0.09460584675793382],[126,228,75,0.08581299232918276],[126,228,76,0.07729358409416291],[126,228,77,0.06903381241489341],[126,228,78,0.061012460129977755],[126,228,79,0.053201403623272726],[126,229,64,0.19228345160504426],[126,229,65,0.1813817405635985],[126,229,66,0.17059401103185834],[126,229,67,0.15991481642433228],[126,229,68,0.14936539197496448],[126,229,69,0.13899196166767974],[126,229,70,0.12883472625855705],[126,229,71,0.11892649001846411],[126,229,72,0.1092921634649341],[126,229,73,0.09994841596409063],[126,229,74,0.0909034798577689],[126,229,75,0.08215710755913329],[126,229,76,0.0737006828499053],[126,229,77,0.06551748740610698],[126,229,78,0.057583123381583765],[126,229,79,0.04986609268867085],[126,230,64,0.1894743487510845],[126,230,65,0.17841451458562532],[126,230,66,0.1674869930467669],[126,230,67,0.15668760763618356],[126,230,68,0.1460387434033062],[126,230,69,0.1355875403547665],[126,230,70,0.12537451693793286],[126,230,71,0.11543222358575758],[126,230,72,0.1057847858736085],[126,230,73,0.09644760220435411],[126,230,74,0.08742719762943209],[126,230,75,0.07872123519589472],[126,230,76,0.07031868599382768],[126,230,77,0.06220015886752198],[126,230,78,0.054338390551965834],[126,230,79,0.046698896802869115],[126,231,64,0.18681550714212358],[126,231,65,0.1756194578015589],[126,231,66,0.1645722013062137],[126,231,67,0.15367066969901574],[126,231,68,0.14293810984147012],[126,231,69,0.13242216472909013],[126,231,70,0.12216331368857397],[126,231,71,0.11219356851542758],[126,231,72,0.10253606649193463],[126,231,73,0.09320482031582769],[126,231,74,0.08420462647100749],[126,231,75,0.0755311333511862],[126,231,76,0.06717107022949542],[126,231,77,0.059102637954324085],[126,231,78,0.051296062048679855],[126,231,79,0.04371430869642315],[126,232,64,0.1843258909114477],[126,232,65,0.17301667097302342],[126,232,66,0.1618706553731454],[126,232,67,0.15088572385204196],[126,232,68,0.14008569593363415],[126,232,69,0.12951829342671115],[126,232,70,0.11922358922164492],[126,232,71,0.10923276326059955],[126,232,72,0.09956775585101678],[126,232,73,0.09024107781230432],[126,232,74,0.08125577888085148],[126,232,75,0.07260557557874976],[126,232,76,0.06427513953491987],[126,232,77,0.05624054703617868],[126,232,78,0.04846989038488657],[126,232,79,0.04092405144840161],[126,233,64,0.18201941018237242],[126,233,65,0.1706204473149778],[126,233,66,0.15939689675466517],[126,233,67,0.14834743267563893],[126,233,68,0.13749617304910713],[126,233,69,0.126890506881794],[126,233,70,0.11656974305053419],[126,233,71,0.10656394408783124],[126,233,72,0.09689365086700848],[126,233,73,0.08756976150005294],[126,233,74,0.07859356573759041],[126,233,75,0.0699569359449896],[126,233,76,0.061642675516629726],[126,233,77,0.05362502538429581],[126,233,78,0.045870329080208855],[126,233,79,0.038337856629574764],[126,234,64,0.17990493930855253],[126,234,65,0.16843928707523934],[126,234,66,0.15715901608388913],[126,234,67,0.1460634581656461],[126,234,68,0.13517678584740908],[126,234,69,0.12454567733071231],[126,234,70,0.11420834698754316],[126,234,71,0.10419347507836318],[126,234,72,0.09452001523069353],[126,234,73,0.08519715098403235],[126,234,74,0.07622440252679433],[126,234,75,0.06759188454344021],[126,234,76,0.05928071588626173],[126,234,77,0.051263581588776384],[126,234,78,0.04350544755108068],[126,234,79,0.03596442805087522],[126,235,64,0.1779863518506828],[126,235,65,0.1664759304847291],[126,235,66,0.15515870122513922],[126,235,67,0.14403454439569305],[126,235,68,0.1331274884547695],[126,235,69,0.12248317504315177],[126,235,70,0.11213843522105373],[126,235,71,0.10212033286551078],[126,235,72,0.09244606648190744],[126,235,73,0.08312301252611556],[126,235,74,0.07414891117339857],[126,235,75,0.06551219527409272],[126,235,76,0.05719246304405],[126,235,77,0.04916109485224158],[126,235,78,0.04138201429338916],[126,235,79,0.03381259356900921],[126,236,64,0.17626257286910557],[126,236,65,0.16472740972718733],[126,236,66,0.1533913070242061],[126,236,67,0.14225462556790516],[126,236,68,0.13134111113936645],[126,236,69,0.12069511176516584],[126,236,70,0.11035184006743197],[126,236,71,0.10033654732332428],[126,236,72,0.09066453111534692],[126,236,73,0.08134127474216192],[126,236,74,0.07236271911364388],[126,236,75,0.0637156676723312],[126,236,76,0.05537832470624264],[126,236,77,0.04732096724745579],[126,236,78,0.03950675059140652],[126,236,79,0.03189264732241647],[126,237,64,0.17472761381813792],[126,237,65,0.16318508509085689],[126,237,66,0.15184591176725332],[126,237,67,0.14071092444413813],[126,237,68,0.12980352243765797],[126,237,69,0.11916658632216935],[126,237,70,0.10883353837920108],[126,237,71,0.09882766326082401],[126,237,72,0.08916223288445059],[126,237,73,0.07984075145620065],[126,237,74,0.07085732111461233],[126,237,75,0.06219712852223067],[126,237,76,0.05383705257301888],[126,237,77,0.04574639323069682],[126,237,78,0.037887721371413066],[126,237,79,0.030217849372293878],[126,238,64,0.1733631154601334],[126,238,65,0.1618271485876516],[126,238,66,0.15049780640509725],[126,238,67,0.13937645520766354],[126,238,68,0.12848617429932896],[126,238,69,0.11786829927673008],[126,238,70,0.10755436090842346],[126,238,71,0.09756556715060596],[126,238,72,0.08791305661907484],[126,238,73,0.0785982590852836],[126,238,74,0.06961336324028847],[126,238,75,0.06094189182572749],[126,238,76,0.05255938409122758],[126,238,77,0.04443418540473018],[126,238,78,0.036528343720456435],[126,238,79,0.028798612497053854],[126,239,64,0.17212017274212957],[126,239,65,0.16060138125642334],[126,239,66,0.1492920863301924],[126,239,67,0.13819433990972096],[126,239,68,0.1273310253829352],[126,239,69,0.11674196099701335],[126,239,70,0.10645676340166446],[126,239,71,0.09649450403376207],[126,239,72,0.08686410202627709],[126,239,73,0.07756481005792541],[126,239,74,0.06858679312739757],[126,239,75,0.059911800112564945],[126,239,76,0.051513927856737564],[126,239,77,0.04336047741269362],[126,239,78,0.035412901974913855],[126,239,79,0.027627845939541228],[126,240,64,0.17091433066087153],[126,240,65,0.15942321472691726],[126,240,66,0.1481443035748713],[126,240,67,0.13708051647506184],[126,240,68,0.12625473163690934],[126,240,69,0.1157053732913964],[126,240,70,0.1054602091713888],[126,240,71,0.09553619039965537],[126,240,72,0.08593999210382268],[126,240,73,0.07666863240919924],[126,240,74,0.06771016952757333],[126,240,75,0.05904447655867726],[126,240,76,0.050644093525011084],[126,240,77,0.04247515607181459],[126,240,78,0.034498400186087116],[126,240,79,0.026670242219812797],[126,241,64,0.1696694562100028],[126,241,65,0.15821673663267258],[126,241,66,0.14697880819756326],[126,241,67,0.1359596390410805],[126,241,68,0.1251823360880181],[126,241,69,0.11468413526893351],[126,241,70,0.1044911048121752],[126,241,71,0.09461817310279737],[126,241,72,0.08506982186386702],[126,241,73,0.07584084313601792],[126,241,74,0.06691715950817159],[126,241,75,0.05827670697320683],[126,241,76,0.049890379708895656],[126,241,77,0.04172303601820222],[126,241,78,0.033734564607794254],[126,241,79,0.025881010337315803],[126,242,64,0.16832708082524334],[126,242,65,0.156923130874524],[126,242,66,0.14573640426422108],[126,242,67,0.13477208198644003],[126,242,68,0.12405376046234574],[126,242,69,0.11361776274797633],[126,242,70,0.10348868321528333],[126,242,71,0.09367960300657216],[126,242,72,0.08419293700148321],[126,242,73,0.07502133041048648],[126,242,74,0.06614860418931791],[126,242,75,0.05755074841146923],[126,242,76,0.04919696268451592],[126,242,77,0.04105074265209924],[126,242,78,0.03307101159042171],[126,242,79,0.025213296083874105],[126,243,64,0.16684420193430002],[126,243,65,0.15549856597611217],[126,243,66,0.14437234301058238],[126,243,67,0.1334720589618368],[126,243,68,0.12282207235545882],[126,243,69,0.11245812528396949],[126,243,70,0.10240363082760157],[126,243,71,0.09267007084146618],[126,243,72,0.08325799416263847],[126,243,73,0.07415805106442715],[126,243,74,0.0653520629061328],[126,243,75,0.05681412589010352],[126,243,76,0.048511747807662264],[126,243,77,0.04040701663279857],[126,243,78,0.032457799810845636],[126,243,79,0.02461897308626845],[126,244,64,0.16519123705437805],[126,244,65,0.15391223527252496],[126,244,66,0.14285446559030268],[126,244,67,0.13202588766138576],[126,244,68,0.12145189282303426],[126,244,69,0.11116801704449572],[126,244,70,0.10119684115430103],[126,244,71,0.09154856089385667],[126,244,72,0.08222213003765867],[126,244,73,0.07320642751574649],[126,244,74,0.06448144725817695],[126,244,75,0.05601950946403976],[126,244,76,0.04778649198685217],[126,244,77,0.03974308052521641],[126,244,78,0.03184603631572014],[126,244,79,0.024049480041648384],[126,245,64,0.1633501330390175],[126,245,65,0.15214455146085393],[126,245,66,0.14116149783750626],[126,245,67,0.1304104026353637],[126,245,68,0.11991794654096581],[126,245,69,0.10971986351075809],[126,245,70,0.09983829630210847],[126,245,71,0.09028252413301159],[126,245,72,0.08105024069671027],[126,245,73,0.07212884536496354],[126,245,74,0.06349674609344433],[126,245,75,0.055124672542705797],[126,245,76,0.046976997934959956],[126,245,77,0.03901306818164902],[126,245,78,0.031188536842649262],[126,245,79,0.023456704512236838],[126,246,64,0.16131263320198044],[126,246,65,0.15018549815716825],[126,246,66,0.13928149957668526],[126,246,67,0.12861151853674788],[126,246,68,0.11820375676150208],[126,246,69,0.10809456604655332],[126,246,70,0.09830607840495473],[126,246,71,0.08884707241057777],[126,246,72,0.07971437259131674],[126,246,73,0.07089425287790638],[126,246,74,0.06236384244181507],[126,246,75,0.054092532270360344],[126,246,76,0.046043380849023346],[126,246,77,0.03817451735088917],[126,246,78,0.03044054077431401],[126,246,79,0.02279391351952491],[126,247,64,0.15907870515244177],[126,247,65,0.14803314120041502],[126,247,66,0.13721047109750223],[126,247,67,0.1266229462660901],[126,247,68,0.11630048735017505],[126,247,69,0.10628048641872606],[126,247,70,0.09658551280005918],[126,247,71,0.08722429537533455],[126,247,72,0.07819322663562495],[126,247,73,0.06947786354078712],[126,247,74,0.06105442336315911],[126,247,75,0.05289127272571856],[126,247,76,0.04495040807834436],[126,247,77,0.03718892589815302],[126,247,78,0.029560480953569376],[126,247,79,0.022016731033921204],[126,248,64,0.1566551322592748],[126,248,65,0.14569230251654897],[126,248,66,0.13495111947350102],[126,248,67,0.12444506452842163],[126,248,68,0.11420593422394934],[126,248,69,0.10427257337396369],[126,248,70,0.0946684448273185],[126,248,71,0.08540270173352896],[126,248,72,0.07647177675042138],[126,248,73,0.06786096282410001],[126,248,74,0.05954598360596718],[126,248,75,0.051494551606964145],[126,248,76,0.043667912232281794],[126,248,77,0.03602237189136748],[126,248,78,0.028510808441150417],[126,248,79,0.021084162292004792],[126,249,64,0.15405427172018843],[126,249,65,0.1431733994032081],[126,249,66,0.13251178743943273],[126,249,67,0.12208394933958557],[126,249,68,0.11192366852172128],[126,249,69,0.10207163337332653],[126,249,70,0.09255265210600179],[126,249,71,0.08337678644969197],[126,249,72,0.0745410041998672],[126,249,73,0.0660308202203197],[126,249,74,0.057821923881890044],[126,249,75,0.04988179095840491],[126,249,76,0.0421712780499488],[126,249,77,0.034646197661091685],[126,249,78,0.027258872130874814],[126,249,79,0.019959664689164228],[126,250,64,0.15129298224079546],[126,250,65,0.14049145211340933],[126,250,66,0.12990554754884898],[126,250,67,0.11955056401470862],[126,250,68,0.10946233382120023],[126,250,69,0.09968374755537478],[126,250,70,0.09024139409766357],[126,250,71,0.08114672542203735],[126,250,72,0.0723977489733892],[126,250,73,0.06398070752519938],[126,250,74,0.05587174444805804],[126,250,75,0.048038552362760015],[126,250,76,0.040442003202836904],[126,250,77,0.033037757771390105],[126,250,78,0.025777852948923034],[126,250,79,0.01861226478947136],[126,251,64,0.14839172432506492],[126,251,65,0.13766526260176815],[126,251,66,0.12714946430756627],[126,251,67,0.11686011213431316],[126,251,68,0.10683509966729811],[126,251,69,0.09711983693732207],[126,251,70,0.0877431006891898],[126,251,71,0.07871819907690014],[126,251,72,0.07004467935979744],[126,251,73,0.06171002421044297],[126,251,74,0.05369133454959871],[126,251,75,0.04595699686562807],[126,251,76,0.038468333025665054],[126,251,77,0.031181230644935852],[126,251,78,0.02404775215166338],[126,251,79,0.01701772076495808],[126,252,64,0.14537383613992313],[126,252,65,0.1347167672465143],[126,252,66,0.12426402691748922],[126,252,67,0.11403155591180689],[126,252,68,0.104059273594516],[126,252,69,0.09439537776946871],[126,252,70,0.08507120142330263],[126,252,71,0.07610234620663915],[126,252,72,0.06749038072617104],[126,252,73,0.0592245305855101],[126,252,74,0.05128335810839486],[126,252,75,0.04363642971526867],[126,252,76,0.03624596896984508],[126,252,77,0.02906849336700193],[126,252,78,0.022056433000230073],[126,252,79,0.015159729322884584],[126,253,64,0.14226498783794223],[126,253,65,0.13167056627005796],[126,253,66,0.121272755164095],[126,253,67,0.11108730227490092],[126,253,68,0.10115607370469204],[126,253,69,0.09153026882673222],[126,253,70,0.08224409686133283],[126,253,71,0.07331584922088151],[126,253,72,0.06474956434644771],[126,253,73,0.05653668926459334],[126,253,74,0.04865773584735353],[126,253,75,0.04108392978819743],[126,253,76,0.033778850344833376],[126,253,77,0.026700058947006403],[126,253,78,0.01980071482700915],[126,253,79,0.013031175899554666],[126,254,64,0.1390928171000948],[126,254,65,0.1285536324470352],[126,254,66,0.11820198083669545],[126,254,67,0.10805305882001368],[126,254,68,0.09815056369913742],[126,254,69,0.08854885224973112],[126,254,70,0.07928527338213812],[126,254,71,0.07038115178963988],[126,254,72,0.06184339692186258],[126,254,73,0.05366611523952261],[126,254,74,0.04583222381062277],[126,254,75,0.03831506332776739],[126,254,76,0.031080008654018894],[126,254,77,0.024086075041745154],[126,254,78,0.017287518218373883],[126,254,79,0.010635426591984593],[126,255,64,0.13588674849142188],[126,255,65,0.12539520150762878],[126,255,66,0.11508080687941707],[126,255,67,0.1049578615990608],[126,255,68,0.09507175205686197],[126,255,69,0.08548008933306671],[126,255,70,0.07622356249836573],[126,255,71,0.0673268096255402],[126,255,72,0.05879995119451401],[126,255,73,0.05064013460780228],[126,255,74,0.04283308797683259],[126,255,75,0.03535468134664857],[126,255,76,0.02817249354166672],[126,255,77,0.02124738283962091],[126,255,78,0.014535059717842068],[126,255,79,0.007987659962775348],[126,256,64,0.13267799900136748],[126,256,65,0.12222684641073611],[126,256,66,0.11194124622797398],[126,256,67,0.10183427644758719],[126,256,68,0.0919528567938537],[126,256,69,0.0823578923958779],[126,256,70,0.07309354550271611],[126,256,71,0.06418797487729376],[126,256,72,0.05565477777274198],[126,256,73,0.04749445171378149],[126,256,74,0.03969587436141091],[126,256,75,0.03223779973203907],[126,256,76,0.02509036904312285],[126,256,77,0.018216634467573226],[126,256,78,0.01157409410202196],[126,256,79,0.0051162364868141685],[126,257,64,0.12949976929482437],[126,257,65,0.11908273462766651],[126,257,66,0.10881853913412354],[126,257,67,0.09871877236428994],[126,257,68,0.08883173409538077],[126,257,69,0.07922161092293671],[126,257,70,0.06993610167506721],[126,257,71,0.06100701257715712],[126,257,72,0.052451597006781966],[126,257,73,0.04427392412754396],[126,257,74,0.03646627480818773],[126,257,75,0.029010563211243012],[126,257,76,0.021879782421236005],[126,257,77,0.015039472477530801],[126,257,78,0.008449209184572806],[126,257,79,0.002064112090096333],[126,258,64,0.1263886021529497],[126,258,65,0.1160009802414799],[126,258,66,0.10575249136220924],[126,258,67,0.0956530397375001],[126,258,68,0.08575216987409372],[126,258,69,0.07611728835329712],[126,258,70,0.06679962196150059],[126,258,71,0.05783466361352103],[126,258,72,0.04924340517211156],[126,258,73,0.041033608044265764],[126,258,74,0.033201110091028885],[126,258,75,0.02573116735049477],[126,258,76,0.018599829044348693],[126,258,77,0.01177534431815036],[126,258,78,0.0052195991580913995],[126,258,79,-0.0011104180703206748],[126,259,64,0.12340366515765247],[126,259,65,0.11304134663862593],[126,259,66,0.1028035997984222],[126,259,67,0.092698528850509],[126,259,68,0.08277673300075492],[126,259,69,0.07310862911429133],[126,259,70,0.06374882862060074],[126,259,71,0.0547364323976087],[126,259,72,0.04609615257714308],[126,259,73,0.037839480641180506],[126,259,74,0.0299659004775189],[126,259,75,0.022464145011941654],[126,259,76,0.015313494989864295],[126,259,77,0.008485118445401979],[126,259,78,0.0019434493734251015],[126,259,79,-0.004352395891967717],[126,260,64,0.12061274691559522],[126,260,65,0.11027090187754596],[126,260,66,0.10003839188365407],[126,260,67,0.08992147684500791],[126,260,68,0.07997149344553427],[126,260,69,0.07026142881263506],[126,260,70,0.060848953679393865],[126,260,71,0.05177656274284301],[126,260,72,0.04307257651591423],[126,260,73,0.03475219776995654],[126,260,74,0.02681862137643748],[126,260,75,0.01926419629041618],[126,260,76,0.01207163835958772],[126,260,77,0.0052152925927448695],[126,260,78,-0.0013375565158708878],[126,260,79,-0.007625328037004402],[126,261,64,0.11806462274974015],[126,261,65,0.10773781590827668],[126,261,66,0.09750465230411817],[126,261,67,0.08736956243112848],[126,261,68,0.0773841955029408],[126,261,69,0.06762347440681042],[126,261,70,0.05814764803586589],[126,261,71,0.04900227237805576],[126,261,72,0.04021907960807198],[126,261,73,0.03181691000156327],[126,261,74,0.023802705633428997],[126,261,75,0.01617256474135466],[126,261,76,0.008912855562015666],[126,261,77,0.002001388382226272],[126,261,78,-0.004591355505441122],[126,261,79,-0.010900939295653498],[126,262,64,0.11578944667447179],[126,262,65,0.10547183319632683],[126,262,66,0.09523196168510449],[126,262,67,0.08507249694362805],[126,262,68,0.0750448914455431],[126,262,69,0.06522521526147401],[126,262,70,0.05567568812103751],[126,262,71,0.046444495806711575],[126,262,72,0.03756651097265519],[126,262,73,0.02906408505984836],[126,262,74,0.02094791043937051],[126,262,75,0.013217951820052006],[126,262,76,0.005864445867634682],[126,262,77,-0.0011310320982779098],[126,262,78,-0.0077944355319140525],[126,262,79,-0.014158049474859458],[126,263,64,0.11380051467483059],[126,263,65,0.10348604345430265],[126,263,66,0.09323345835978852],[126,263,67,0.08304376112090311],[126,263,68,0.0729676366897657],[126,263,69,0.06308139911325303],[126,263,70,0.05344853513992018],[126,263,71,0.04411935026031109],[126,263,72,0.03513152404113311],[126,263,73,0.02651074495375356],[126,263,74,0.018271424018060655],[126,263,75,0.010417486471709753],[126,263,76,0.002943240569743939],[126,263,77,-0.004165677477630487],[126,263,78,-0.01093128350675289],[126,263,79,-0.017382151495062136],[126,264,64,0.1120962202036639],[126,264,65,0.1017788409688146],[126,264,66,0.09150778338680668],[126,264,67,0.08128251781182805],[126,264,68,0.07115235132218894],[126,264,69,0.06119286235465815],[126,264,70,0.051468034007237026],[126,264,71,0.04202972414780095],[126,264,72,0.03291803719629259],[126,264,73,0.024161783983397588],[126,264,74,0.015779029216426342],[126,264,75,0.007777725956097548],[126,264,76,1.5643638627471125E-4],[126,264,77,-0.007094861955602275],[126,264,78,-0.013993885422615822],[126,264,79,-0.020565070005826063],[126,265,64,0.11066220023392731],[126,265,65,0.10033607081445256],[126,265,66,0.09004120707139623],[126,265,67,0.07977569883408898],[126,265,68,0.06958684618535996],[126,265,69,0.059548472819501035],[126,265,70,0.049724250156514285],[126,265,71,0.040166986186747376],[126,265,72,0.030918795442274313],[126,265,73,0.022011365857166575],[126,265,74,0.013466322277956043],[126,265,75,0.005295686241866849],[126,265,76,-0.002497568498565241],[126,265,77,-0.009918865358134632],[126,265,78,-0.011704098269911478],[126,265,79,-0.01246264094061511],[126,266,64,0.10947367009413161],[126,266,65,0.09913336014680066],[126,266,66,0.08880993515578799],[126,266,67,0.0785002641309258],[126,266,68,0.06824901165952092],[126,266,69,0.058127223206539506],[126,266,70,0.04819744237214387],[126,266,71,0.03851281339225197],[126,266,72,0.02911703132185676],[126,266,73,0.02004439818945036],[126,266,74,0.011319985135114796],[126,266,75,0.0029599003837205303],[126,266,76,-1.4729554210077137E-4],[126,266,77,-0.0012820157894278643],[126,266,78,-0.002338196268536062],[126,266,79,-0.0033315830857042206],[126,267,64,0.10849794521237123],[126,267,65,0.09813863267319389],[126,267,66,0.08778259276176427],[126,267,67,0.07742563130238683],[126,267,68,0.06710916721944853],[126,267,69,0.056900473236075076],[126,267,70,0.04686016976873779],[126,267,71,0.037041136092371016],[126,267,72,0.02748822330910445],[126,267,73,0.018238082680816205],[126,267,74,0.01306125145153239],[126,267,75,0.011491784144502065],[126,267,76,0.01000274969921133],[126,267,77,0.008597112200630934],[126,267,78,0.007270848481699007],[126,267,79,0.006013465758295],[126,268,64,0.10769714779981159],[126,268,65,0.09731480431454742],[126,268,66,0.08692288409316322],[126,268,67,0.07651627352365568],[126,268,68,0.06613256979508447],[126,268,69,0.055834338598163974],[126,268,70,0.045679531021808745],[126,268,71,0.035720198135457244],[126,268,72,0.02785212621357002],[126,268,73,0.025923053519359616],[126,268,74,0.024025328943609637],[126,268,75,0.022181046645563376],[126,268,76,0.020405293420006406],[126,268,77,0.018706236188545253],[126,268,78,0.01708533432821845],[126,268,79,0.015537676468055804],[126,269,64,0.10703109641829182],[126,269,65,0.09662265799440106],[126,269,66,0.08619242583890833],[126,269,67,0.07573448380697015],[126,269,68,0.06528207892106],[126,269,69,0.05489222472122836],[126,269,70,0.044619533938754584],[126,269,71,0.041727464555234475],[126,269,72,0.03957369905536599],[126,269,73,0.0373960505456203],[126,269,74,0.03522666663115752],[126,269,75,0.033091720766072384],[126,269,76,0.03101114628970026],[126,269,77,0.028998506787732442],[126,269,78,0.027061002808485994],[126,269,79,0.025199614766102982],[126,270,64,0.10646037629867838],[126,270,65,0.0960238954221794],[126,270,66,0.08555375215770136],[126,270,67,0.07504330351495905],[126,270,68,0.06452097662336237],[126,270,69,0.05833442905889295],[126,270,70,0.05617595914030304],[126,270,71,0.0538830370597147],[126,270,72,0.051498514877470675],[126,270,73,0.049061820625409286],[126,270,74,0.046608155029480076],[126,270,75,0.044167835204046005],[126,270,76,0.041765786052251994],[126,270,77,0.03942117987141849],[126,270,78,0.03714722443225611],[126,270,79,0.0349510995775295],[126,271,64,0.10593749411688612],[126,271,65,0.09547225302446276],[126,271,66,0.08496159267809675],[126,271,67,0.0750125806626212],[126,271,68,0.07314052137301284],[126,271,69,0.07101681795050946],[126,271,70,0.06868376861933527],[126,271,71,0.06618460334578247],[126,271,72,0.06356208682338482],[126,271,73,0.06085727753097567],[126,271,74,0.058108444424510464],[126,271,75,0.05535014256019986],[126,271,76,0.052612448684052696],[126,271,77,0.04992035756308908],[126,271,78,0.04729333957804789],[126,271,79,0.04474505984821773],[126,272,64,0.10537433538112626],[126,272,65,0.09488078525550064],[126,272,66,0.08969369913523795],[126,272,67,0.08801193115893417],[126,272,68,0.08602126753537673],[126,272,69,0.0837537674439933],[126,272,70,0.081246958970005],[126,272,71,0.07854170311641223],[126,272,72,0.07568048395005829],[126,272,73,0.07270586659393975],[126,272,74,0.06965912498412216],[126,272,75,0.06657904102284135],[126,272,76,0.06350087647243217],[126,272,77,0.06045551864942021],[126,272,78,0.057468800696334615],[126,272,79,0.05456099693251507],[126,273,64,0.10006707556738836],[126,273,65,0.09872251394450204],[126,273,66,0.09785051850236232],[126,273,67,0.09742604003110772],[126,273,68,0.09741588482326624],[126,273,69,0.09644266980792765],[126,273,70,0.09376800934150913],[126,273,71,0.09086291518101774],[126,273,72,0.08776937799115504],[126,273,73,0.08453128411571242],[126,273,74,0.08119275203092903],[126,273,75,0.0777966529780026],[126,273,76,0.0743833174302083],[126,273,77,0.07098942873867671],[126,273,78,0.06764710499215937],[126,273,79,0.064383169822149],[126,274,64,0.0946402228069873],[126,274,65,0.09337911752100297],[126,274,66,0.09262939685991678],[126,274,67,0.09236417382168693],[126,274,68,0.09254740766250469],[126,274,69,0.09313405143165254],[126,274,70,0.09407047025347631],[126,274,71,0.09529786068173818],[126,274,72,0.09675230649121952],[126,274,73,0.09626201489358405],[126,274,74,0.09264549856123012],[126,274,75,0.08894750746646543],[126,274,76,0.08521319403043648],[126,274,77,0.08148479383589072],[126,274,78,0.07780047335133537],[126,274,79,0.07419338056234427],[126,275,64,0.08958514063993761],[126,275,65,0.08840558211141347],[126,275,66,0.08777526921563256],[126,275,67,0.08766556409701448],[126,275,68,0.08803768458548683],[126,275,69,0.08884277090821652],[126,275,70,0.09002222299349766],[126,275,71,0.0915110622875967],[126,275,72,0.093237899311368],[126,275,73,0.09511903178293807],[126,275,74,0.09703828194048902],[126,275,75,0.09888423717721118],[126,275,76,0.09594570706130963],[126,275,77,0.09190486953058621],[126,275,78,0.08790045964588783],[126,275,79,0.0839715788647856],[126,276,64,0.08492280237373945],[126,276,65,0.08382258786382824],[126,276,66,0.08330829295526809],[126,276,67,0.08334962840188337],[126,276,68,0.08390519416985887],[126,276,69,0.0849224645380206],[126,276,70,0.08633804333197637],[126,276,71,0.08808096661308029],[126,276,72,0.09007258036162163],[126,276,73,0.0922211729093908],[126,276,74,0.09440724885633844],[126,276,75,0.09651854692460637],[126,276,76,0.09846883414790247],[126,276,77,0.10019663569459925],[126,276,78,0.09791851645370314],[126,276,79,0.09369641813471903],[126,277,64,0.08067284573848565],[126,277,65,0.07964952432421596],[126,277,66,0.07924739241644374],[126,277,67,0.07943462010990182],[126,277,68,0.08016732952860722],[126,277,69,0.08138949777435744],[126,277,70,0.08303312923517675],[126,277,71,0.08502149780817786],[126,277,72,0.08726893327323987],[126,277,73,0.08967596558340818],[126,277,74,0.09211986037868874],[126,277,75,0.09448749627109881],[126,277,76,0.09669128353236439],[126,277,77,0.0986679499729809],[126,277,78,0.10037741273998291],[126,277,79,0.10180187500991772],[126,278,64,0.07685320973590615],[126,278,65,0.07590412282872172],[126,278,66,0.07560988761352472],[126,278,67,0.07593725428265463],[126,278,68,0.07684002209402391],[126,278,69,0.078258859888516],[126,278,70,0.08012139486920566],[126,278,71,0.08234539329379553],[126,278,72,0.084838454328653],[126,278,73,0.0874936414836685],[126,278,74,0.09018508369559725],[126,278,75,0.0927988015592015],[126,278,76,0.09524585854128353],[126,278,77,0.09746119785933177],[126,278,78,0.0994025843653687],[126,278,79,0.10104976157309797],[126,279,64,0.07347981339782017],[126,279,65,0.0726021311494886],[126,279,66,0.07241116551563398],[126,279,67,0.07287237633789179],[126,279,68,0.07393740842475821],[126,279,69,0.0755438296294817],[126,279,70,0.07761513576231466],[126,279,71,0.08006386898038204],[126,279,72,0.08279121815785045],[126,279,73,0.08568311069054257],[126,279,74,0.08861066359624042],[126,279,75,0.09145905483103989],[126,279,76,0.09413802503739871],[126,279,77,0.09658075997262483],[126,279,78,0.09874289555364146],[126,279,79,0.10060172805710632],[126,280,64,0.07056627645418856],[126,280,65,0.0697570303941879],[126,280,66,0.06966439387798923],[126,280,67,0.0702526735269341],[126,280,68,0.07147154003614498],[126,280,69,0.07325568408220917],[126,280,70,0.07552473730664783],[126,280,71,0.07818632793816577],[126,280,72,0.08113558697699569],[126,280,73,0.08425167174245879],[126,280,74,0.08740283352795725],[126,280,75,0.09047343604753932],[126,280,76,0.093371934832301],[126,280,77,0.09602979941778905],[126,280,78,0.09840057421007065],[126,280,79,0.10045913430797337],[126,281,64,0.06812368191067969],[126,281,65,0.06737979415917839],[126,281,66,0.0673802776264808],[126,281,67,0.06808842922121738],[126,281,68,0.06945213625373237],[126,281,69,0.07140345072439014],[126,281,70,0.07385842659936687],[126,281,71,0.07672011251893979],[126,281,72,0.07987796336920888],[126,281,73,0.0832047653108432],[126,281,74,0.0865660703304802],[126,281,75,0.08984546901690993],[126,281,76,0.09295018290111279],[126,281,77,0.09581002032196301],[126,281,78,0.09837648542321009],[126,281,79,0.10062207172337495],[126,282,64,0.06616053303766534],[126,282,65,0.06547884250333907],[126,282,66,0.06556701040571156],[126,282,67,0.06638747264388145],[126,282,68,0.06788653273884765],[126,282,69,0.06999385533572727],[126,282,70,0.07262222027940962],[126,282,71,0.0756704525820146],[126,282,72,0.07902273924073738],[126,282,73,0.08254592408202382],[126,282,74,0.08610304515629774],[126,282,75,0.0895769734185829],[126,282,76,0.09287376051664237],[126,282,77,0.09592162201549226],[126,282,78,0.09867008654724885],[126,282,79,0.10108931899574236],[126,283,64,0.06468318528322897],[126,283,65,0.06406047137355309],[126,283,66,0.06423070199982106],[126,283,67,0.0651556048022065],[126,283,68,0.06678010646525179],[126,283,69,0.06903174654788474],[126,283,70,0.07182034915188817],[126,283,71,0.07504089060993074],[126,283,72,0.07857272170424956],[126,283,73,0.08227719951971924],[126,283,74,0.08601505111238172],[126,283,75,0.08966849324398007],[126,283,76,0.09314248432066147],[126,283,77,0.09636372846806168],[126,283,78,0.09927985663080591],[126,283,79,0.10185877104459806],[126,284,64,0.06369527107862166],[126,284,65,0.06312827481728944],[126,284,66,0.06337479854197653],[126,284,67,0.06439601728714439],[126,284,68,0.06613569368744082],[126,284,69,0.06851951352539942],[126,284,70,0.07145467606849826],[126,284,71,0.07483270021754657],[126,284,72,0.07852855258122682],[126,284,73,0.08239858263540567],[126,284,74,0.08630142552212738],[126,284,75,0.09011872074550648],[126,284,76,0.09375442211759577],[126,284,77,0.09713381603654725],[126,284,78,0.10020272616926701],[126,284,79,0.10292687075263263],[126,285,64,0.0631974276067171],[126,285,65,0.06268287061604089],[126,285,66,0.06299980651993997],[126,285,67,0.06410901517002776],[126,285,68,0.06595331224320222],[126,285,69,0.06845680816564798],[126,285,70,0.07152441847224544],[126,285,71,0.07504460943099434],[126,285,72,0.07888843272872498],[126,285,73,0.08290772957577375],[126,285,74,0.08695927691455052],[126,285,75,0.09092422491539942],[126,285,76,0.09470562287046114],[126,285,77,0.09822744493704255],[126,285,78,0.10143380993481554],[126,285,79,0.10428834294887457],[126,286,64,0.06318726959375631],[126,286,65,0.06272187137336299],[126,286,66,0.06310326259368737],[126,286,67,0.06429198600169012],[126,286,68,0.06623013019004242],[126,286,69,0.06884051381499884],[126,286,70,0.07202611760233907],[126,286,71,0.07567277073405887],[126,286,72,0.07964809319777755],[126,286,73,0.08379993405717046],[126,286,74,0.08798345881084157],[126,286,75,0.09207942662672663],[126,286,76,0.09599009311971873],[126,286,77,0.09963823678025058],[126,286,78,0.10296638537574021],[126,286,79,0.10593617332031557],[126,287,64,0.06365940405064396],[126,287,65,0.06323989789658946],[126,287,66,0.06367974600632997],[126,287,67,0.06493941166078404],[126,287,68,0.06696047750487633],[126,287,69,0.06966475722352056],[126,287,70,0.07295365107851953],[126,287,71,0.07671077460615588],[126,287,72,0.08080080997400807],[126,287,73,0.08506814345864316],[126,287,74,0.0893665872281118],[126,287,75,0.09357661752365759],[126,287,76,0.09759981714979671],[126,287,77,0.10135789581361787],[126,287,78,0.10479191463810106],[126,287,79,0.10786163081534395],[126,288,64,0.064605486936827],[126,288,65,0.06422863484524632],[126,288,66,0.06472093356134834],[126,288,67,0.06604292302431258],[126,288,68,0.06813590081998888],[126,288,69,0.07092096371125967],[126,288,70,0.07429828883783351],[126,288,71,0.07814970652492681],[126,288,72,0.08233746227347899],[126,288,73,0.08670301854662332],[126,288,74,0.09109910187338882],[126,288,75,0.09540602263409192],[126,288,76,0.09952482087639675],[126,288,77,0.10337627384337428],[126,288,78,0.10690011018297296],[126,288,79,0.1100543335122745],[126,289,64,0.06601432174691024],[126,289,65,0.06567692864631725],[126,289,66,0.066215697166295],[126,289,67,0.06759139746052423],[126,289,68,0.06974526119542179],[126,289,69,0.07259795554623694],[126,289,70,0.07604879242400309],[126,289,71,0.07997824743359461],[126,289,72,0.08424663439391483],[126,289,73,0.08869303683138385],[126,289,74,0.09316937102799189],[126,289,75,0.0975559067047681],[126,289,76,0.10175327945470763],[126,289,77,0.10568147883659601],[126,289,78,0.10927904399938232],[126,289,79,0.11250235795308705],[126,290,64,0.0678720000198999],[126,290,65,0.06757092767625444],[126,290,66,0.06815024394285646],[126,290,67,0.06957109914406562],[126,290,68,0.0717748749276777],[126,290,69,0.07468209353405902],[126,290,70,0.07819155762928831],[126,290,71,0.08218281767298247],[126,290,72,0.0865147611212072],[126,290,73,0.09102463955518153],[126,290,74,0.09556384012220037],[126,290,75,0.10001272425877367],[126,290,76,0.1042716686084465],[126,290,77,0.10826002720321742],[126,290,78,0.11191530041286435],[126,290,79,0.11519239194230568],[126,291,64,0.07016208377104893],[126,291,65,0.06989426470970267],[126,291,66,0.07050829890324667],[126,291,67,0.0719658621933616],[126,291,68,0.07420869739471136],[126,291,69,0.07715746181910949],[126,291,70,0.08071080048880597],[126,291,71,0.08474776437815412],[126,291,72,0.08912631669115567],[126,291,73,0.09368242231203505],[126,291,74,0.09826722400016419],[126,291,75,0.10276131337539846],[126,291,76,0.10706495967966984],[126,291,77,0.11109703975792978],[126,291,78,0.11479417248957596],[126,291,79,0.11810993081094906],[126,292,64,0.07286582984643308],[126,292,65,0.07262828163507296],[126,292,66,0.07327133019306464],[126,292,67,0.07475731663035656],[126,292,68,0.07702854993734481],[126,292,69,0.08000609589746038],[126,292,70,0.08358878662744584],[126,292,71,0.08765559233982234],[126,292,72,0.09206404730659468],[126,292,73,0.09664936929929208],[126,292,74,0.10126274287521131],[126,292,75,0.10578513319249166],[126,292,76,0.1101168583995154],[126,292,77,0.11417648136213038],[126,292,78,0.11789990203613221],[126,292,79,0.12123951714572237],[126,293,64,0.07596245620014902],[126,293,65,0.075752296436852],[126,293,66,0.07641881690050412],[126,293,67,0.07792515716250425],[126,293,68,0.0802143897769893],[126,293,69,0.08320825384138691],[126,293,70,0.0868061039592678],[126,293,71,0.0908872383304038],[126,293,72,0.09530924720978307],[126,293,73,0.09990713120085909],[126,293,74,0.10453240197542524],[126,293,75,0.1090665451311934],[126,293,76,0.11341008737974478],[126,293,77,0.11748144424579088],[126,293,78,0.1212159631950313],[126,293,79,0.12456502398331634],[126,294,64,0.07942945009411334],[126,294,65,0.07924391244462636],[126,294,66,0.07992855943189353],[126,294,67,0.08144745478698612],[126,294,68,0.08374462296965646],[126,294,69,0.08674273073546429],[126,294,70,0.09034197873935662],[126,294,71,0.09442238889470073],[126,294,72,0.098842078310036],[126,294,73,0.10343634670207524],[126,294,74,0.10805731487947307],[126,294,75,0.11258713784301905],[126,294,76,0.11692671232506524],[126,294,77,0.12099447500922345],[126,294,78,0.12472538963564805],[126,294,79,0.12806998146979026],[126,295,64,0.08324291822061958],[126,295,65,0.08307936984898323],[126,295,66,0.08377703245372897],[126,295,67,0.08530101121731787],[126,295,68,0.0875964603964191],[126,295,69,0.09058721632441191],[126,295,70,0.0941746349683033],[126,295,71,0.09823984160537674],[126,295,72,0.10264193336676847],[126,295,73,0.1072170076364003],[126,295,74,0.11181807054285636],[126,295,75,0.11632809587947368],[126,295,76,0.12064851196640933],[126,295,77,0.12469794530492395],[126,295,78,0.12841114534097559],[126,295,79,0.1317379469852232],[126,296,64,0.0873779787474312],[126,296,65,0.08723393948405844],[126,296,66,0.08793978040096984],[126,296,67,0.0894617561321166],[126,296,68,0.09174631679009132],[126,296,69,0.09471869587245013],[126,296,70,0.09828169714907387],[126,296,71,0.10231790978298794],[126,296,72,0.10668784272770926],[126,296,73,0.11122886776367225],[126,296,74,0.11579514401433738],[126,296,75,0.12027061208394454],[126,296,76,0.12455739171491748],[126,296,77,0.12857446619923588],[126,296,78,0.13225653898985856],[126,296,79,0.135552918733372],[126,297,64,0.09180919528564413],[126,297,65,0.09168235887697385],[126,297,66,0.0923918555518401],[126,297,67,0.09390518724627034],[126,297,68,0.0961702527983736],[126,297,69,0.09911389423441852],[126,297,70,0.10264063639651866],[126,297,71,0.10663487068082245],[126,297,72,0.11095892462254142],[126,297,73,0.11545189518019555],[126,297,74,0.11996935084280436],[126,297,75,0.12439634370613778],[126,297,76,0.12863584103689338],[126,297,77,0.1326073462141074],[126,297,78,0.1362456819349897],[126,297,79,0.13949979279661157],[126,298,64,0.09651105278009697],[126,298,65,0.09639931056393214],[126,298,66,0.09710829866890275],[126,298,67,0.09860685320427731],[126,298,68,0.10084446008322545],[126,298,69,0.10374976313841627],[126,298,70,0.1072292598992799],[126,298,71,0.11116945713430543],[126,298,72,0.11543487901172339],[126,298,73,0.11986676836040855],[126,298,74,0.12432234517432283],[126,298,75,0.12868791223880516],[126,298,76,0.13286743454947447],[126,298,77,0.13678109304868022],[126,298,78,0.14036398977640943],[126,298,79,0.1435648636558955],[126,299,64,0.10145847532248276],[126,299,65,0.10135994267313331],[126,299,66,0.10206466220657145],[126,299,67,0.10354287929591932],[126,299,68,0.10574578945663493],[126,299,69,0.10860401168013545],[126,299,70,0.11202624373426828],[126,299,71,0.11590139267514221],[126,299,72,0.1200965249906649],[126,299,73,0.12445541583030961],[126,299,74,0.12883716153955277],[126,299,75,0.13312944697694196],[126,299,76,0.13723737683720083],[126,299,77,0.14108195898089748],[126,299,78,0.14459872753069508],[126,299,79,0.14773636817592295],[126,300,64,0.10662738588715226],[126,300,65,0.10654043177449551],[126,300,66,0.10723757608504375],[126,300,67,0.10869053599425427],[126,300,68,0.1108523220527659],[126,300,69,0.11365568002886689],[126,300,70,0.11701170903369135],[126,300,71,0.12081197011018091],[126,300,72,0.12492638174923842],[126,300,73,0.12920159947261894],[126,300,74,0.13349880033150932],[126,300,75,0.13770717229943227],[126,300,76,0.14173309098945874],[126,300,77,0.14549852994910384],[126,300,78,0.14893959839581267],[126,300,79,0.15200507305548722],[126,301,64,0.11199530798947965],[126,301,65,0.11191858799605353],[126,301,66,0.1126053560305254],[126,301,67,0.1140288503157954],[126,301,68,0.11614398353635336],[126,301,69,0.11888575634504822],[126,301,70,0.12216784150450027],[126,301,71,0.1258846735648591],[126,301,72,0.12990929308649246],[126,301,73,0.13409154146354307],[126,301,74,0.138294856973533],[126,301,75,0.1424100386730079],[126,301,76,0.146344850858663],[126,301,77,0.1500223583135037],[126,301,78,0.15337937611149804],[126,301,79,0.15636490574286965],[126,302,64,0.11754200926694341],[126,302,65,0.11747450240718843],[126,302,66,0.11814865448190487],[126,302,67,0.1195392600030391],[126,302,68,0.12160320134750749],[126,302,69,0.12427783690951916],[126,302,70,0.12747955430041905],[126,302,71,0.1311058439914046],[126,302,72,0.13503309548073367],[126,302,73,0.13911459484131128],[126,302,74,0.14321619477763908],[126,302,75,0.14723039737869226],[126,302,76,0.15106645703935265],[126,302,77,0.15464863929765085],[126,302,78,0.15791458091534039],[126,302,79,0.1608136288164544],[126,303,64,0.12325018698287799],[126,303,65,0.1231912366686431],[126,303,66,0.12385115406382632],[126,303,67,0.12520631052928646],[126,303,68,0.12721560498287163],[126,303,69,0.12981882946442197],[126,303,70,0.1329351942464992],[126,303,71,0.13646538814172599],[126,303,72,0.1402893297149161],[126,303,73,0.14426395770641856],[126,303,74,0.148257661493181],[126,303,75,0.15216471896066142],[126,303,76,0.15589595656812846],[126,303,77,0.15937693110990003],[126,303,78,0.16254619909449697],[126,303,79,0.16535355783049135],[126,304,64,0.12910619545279675],[126,304,65,0.12905555494922372],[126,304,66,0.12970030362606794],[126,304,67,0.13101839492566847],[126,304,68,0.13297076931304505],[126,304,69,0.13549969976566473],[126,304,70,0.1385272914161117],[126,304,71,0.14195753100491065],[126,304,72,0.14567399605725434],[126,304,73,0.1495374310534959],[126,304,74,0.15341884954574891],[126,304,75,0.15721435539744513],[126,304,76,0.1608364063443595],[126,304,77,0.16421191874474436],[126,304,78,0.16728044613296633],[126,304,79,0.16999232262593572],[126,305,64,0.13510081539343016],[126,305,65,0.1350586981093321],[126,305,66,0.13568809684936373],[126,305,67,0.13696853643051102],[126,305,68,0.13886300093640425],[126,305,69,0.1413162613470776],[126,305,70,0.14425335206051085],[126,305,71,0.14758161170946155],[126,305,72,0.15118835299719136],[126,305,73,0.15493822023493484],[126,305,74,0.15870489996642828],[126,305,75,0.16238634599559318],[126,305,76,0.16589668027177926],[126,305,77,0.16916422146416255],[126,305,78,0.1721295734545413],[126,305,79,0.17474367210648414],[126,306,64,0.14123006519445558],[126,306,65,0.14119720015130527],[126,306,66,0.14181189341765038],[126,306,67,0.14305521396102094],[126,306,68,0.14489216756930784],[126,306,69,0.14727000849624777],[126,306,70,0.15011669489095236],[126,306,71,0.1533429228902557],[126,306,72,0.15683975953670504],[126,306,73,0.16047578005625296],[126,306,74,0.1641273500114085],[126,306,75,0.1676942670057951],[126,306,76,0.17109232012096318],[126,306,77,0.17425124395896605],[126,306,78,0.17711271876143103],[126,306,79,0.17962832247979824],[126,307,64,0.14749506804519524],[126,307,65,0.14747275411796645],[126,307,66,0.14807427572487386],[126,307,67,0.14928220202597314],[126,307,68,0.1510635141298866],[126,307,69,0.15336790226292296],[126,307,70,0.15612620178846487],[126,307,71,0.15925242214890445],[126,307,72,0.16264134498638327],[126,307,73,0.16616544226369323],[126,307,74,0.16970371924820332],[126,307,75,0.17315777841436683],[126,307,76,0.17644504611729322],[126,307,77,0.17949665460820852],[126,307,78,0.18225535643505453],[126,307,79,0.18467338468734634],[126,308,64,0.1538820093375002],[126,308,65,0.15387202044116355],[126,308,66,0.1544625590213549],[126,308,67,0.15563764006272435],[126,308,68,0.1573661591490757],[126,308,69,0.15960017656609393],[126,308,70,0.1622733355166042],[126,308,71,0.1653028874216827],[126,308,72,0.1685872573361639],[126,308,73,0.17200274663716536],[126,308,74,0.175430947224935],[126,308,75,0.1787752211146528],[126,308,76,0.18195459092663147],[126,308,77,0.1849015535543531],[126,308,78,0.187559912766136],[126,308,79,0.18988255172161264],[126,309,64,0.16035811488125715],[126,309,65,0.16036253053890254],[126,309,66,0.16094462338898013],[126,309,67,0.16208979570327098],[126,309,68,0.1637687920646679],[126,309,69,0.16593597197541038],[126,309,70,0.1685277120593171],[126,309,71,0.17146442942933196],[126,309,72,0.17464811672445144],[126,309,73,0.17795883563455644],[126,309,74,0.18128072912535698],[126,309,75,0.18451889383979525],[126,309,76,0.18759391913988613],[126,309,77,0.19043963747595738],[126,309,78,0.19300088055773695],[126,309,79,0.1952311696469276],[126,310,64,0.16688830357856554],[126,310,65,0.16690943563887078],[126,310,66,0.16748589571110833],[126,310,67,0.16860441092309042],[126,310,68,0.17023750497470108],[126,310,69,0.17234176096664028],[126,310,70,0.17485620954530234],[126,310,71,0.1777043522195632],[126,310,72,0.1807916685564449],[126,310,73,0.18400190934299815],[126,310,74,0.18722175033110078],[126,310,75,0.19035801859959592],[126,310,76,0.19333285299575248],[126,310,77,0.19608139750253567],[126,310,78,0.1985494876800983],[126,310,79,0.2006912655348177],[126,311,64,0.17343638689594398],[126,311,65,0.17347671584530025],[126,311,66,0.1740505725658391],[126,311,67,0.17514594281542553],[126,311,68,0.1767370550528922],[126,311,69,0.17878263531633207],[126,311,70,0.1812242833998428],[126,311,71,0.18398849814503868],[126,311,72,0.18698415950844938],[126,311,73,0.19009863266090266],[126,311,74,0.19322112370300423],[126,311,75,0.19626020583638457],[126,311,76,0.19913956222059764],[126,311,77,0.20179562975247328],[126,311,78,0.20417522368425506],[126,311,79,0.20623308504236543],[126,312,64,0.17996565005641202],[126,312,65,0.18002776144216573],[126,312,66,0.18060220024321105],[126,312,67,0.18167814100573015],[126,312,68,0.18323143815604592],[126,312,69,0.18522287484358002],[126,312,70,0.18759652934215432],[126,312,71,0.1902818044523244],[126,312,72,0.1931908872948578],[126,312,73,0.19621467809327747],[126,312,74,0.19924492533660448],[126,312,75,0.20219198304084315],[126,312,76,0.20498108536518778],[126,312,77,0.20754994920540631],[126,312,78,0.20984634597295734],[126,312,79,0.21182559058649872],[126,313,64,0.18644073333701355],[126,313,65,0.18652717163815372],[126,313,66,0.18710538966580464],[126,313,67,0.1881656777715851],[126,313,68,0.18968543349286343],[126,313,69,0.19162740633388628],[126,313,70,0.19393805665786484],[126,313,71,0.19654959141475775],[126,313,72,0.19937740462201764],[126,313,73,0.20231584694496035],[126,313,74,0.20525923469360707],[126,313,75,0.20811975568680344],[126,313,76,0.21082421355824663],[126,313,77,0.21331159842527797],[126,313,78,0.21553061576371121],[126,313,79,0.21743712692080278],[126,314,64,0.19282753590720142],[126,314,65,0.19294067294411185],[126,314,66,0.1935257480391813],[126,314,67,0.1945740917347598],[126,314,68,0.19606455819103885],[126,314,69,0.19796176791070763],[126,314,70,0.20021446143263388],[126,314,71,0.20275754364703008],[126,314,72,0.20550950799769346],[126,314,73,0.20836806524811258],[126,314,74,0.2112301373191654],[126,314,75,0.21400981635668098],[126,314,76,0.21663550559619268],[126,314,77,0.21904746810132567],[126,314,78,0.22119532349231233],[126,314,79,0.22303545073097092],[126,315,64,0.1990922258085145],[126,315,65,0.19923421251513007],[126,315,66,0.1998290542183087],[126,315,67,0.20086904376418652],[126,315,68,0.20233440212922438],[126,315,69,0.20419152110077182],[126,315,70,0.20639131410037076],[126,315,71,0.20887127136575404],[126,315,72,0.21155287094932693],[126,315,73,0.21433708721771705],[126,315,74,0.21712349670289918],[126,315,75,0.21982818297354417],[126,315,76,0.22238119030519735],[126,315,77,0.22472406109116017],[126,315,78,0.22680731188004674],[126,315,79,0.22858780986219107],[126,316,64,0.2052017207524699],[126,316,65,0.20537444628748813],[126,316,66,0.20598175291672996],[126,316,67,0.20701681603910718],[126,316,68,0.2084611307130387],[126,316,69,0.210282756288466],[126,316,70,0.2124346666784687],[126,316,71,0.21485681867594697],[126,316,72,0.21747355283162903],[126,316,73,0.22018900426390503],[126,316,74,0.22290546325355504],[126,316,75,0.22554110747782125],[126,316,76,0.2280276746306241],[126,316,77,0.2303079995952597],[126,316,78,0.23233348181846233],[126,316,79,0.23406144748382615],[126,317,64,0.21112422662461797],[126,317,65,0.21132928193270958],[126,317,66,0.21195150087971928],[126,317,67,0.21298486026353305],[126,317,68,0.21441203403373324],[126,317,69,0.2162026418308049],[126,317,70,0.2183116009896],[126,317,71,0.22068121021844447],[126,317,72,0.22323854341693697],[126,317,73,0.22589078725537975],[126,317,74,0.2285430140489635],[126,317,75,0.2311156128737313],[126,317,76,0.23354207777400401],[126,317,77,0.2357665561521314],[126,317,78,0.2377413199540383],[126,317,79,0.2394241259489896],[126,318,64,0.21682978255146404],[126,318,65,0.2170684283216994],[126,318,66,0.21770771954869186],[126,318,67,0.21874235238407366],[126,318,68,0.2201560825693775],[126,318,69,0.22191997977623493],[126,318,70,0.223990783564951],[126,318,71,0.2263130045856945],[126,318,72,0.22881631434218933],[126,318,73,0.2314108357210503],[126,318,74,0.23400449960172515],[126,318,75,0.2365200373726693],[126,318,76,0.23889277251870306],[126,318,77,0.24106819193027837],[126,318,78,0.2429994336991392],[126,318,79,0.24464465823545764],[126,319,64,0.2222908125302569],[126,319,65,0.2225639514989629],[126,319,66,0.22322215421686242],[126,319,67,0.22426075381113086],[126,319,68,0.22566448942856224],[126,319,69,0.2274057681872706],[126,319,70,0.2294430272288838],[126,319,71,0.23172285450592378],[126,319,72,0.23417737741251118],[126,319,73,0.2367195339898658],[126,319,74,0.239260197640615],[126,319,75,0.24172458563353166],[126,319,76,0.2440499337442688],[126,319,77,0.24618310231695914],[126,319,78,0.24807809366924],[126,319,79,0.24969344696790424],[127,-64,64,0.34199033504144544],[127,-64,65,0.34816791310337897],[127,-64,66,0.35444348481081456],[127,-64,67,0.3608043544373043],[127,-64,68,0.36724652812932546],[127,-64,69,0.3737771693306296],[127,-64,70,0.38040321255244397],[127,-64,71,0.38712987020707174],[127,-64,72,0.39395955777474734],[127,-64,73,0.40089098242219584],[127,-64,74,0.40791839992079787],[127,-64,75,0.4150310445788279],[127,-64,76,0.4222127367400007],[127,-64,77,0.4294416722117295],[127,-64,78,0.43669039777299334],[127,-64,79,0.44392597667695216],[127,-63,64,0.3452012770620808],[127,-63,65,0.3514620431537554],[127,-63,66,0.357825303299299],[127,-63,67,0.36427805264998336],[127,-63,68,0.37081536068124965],[127,-63,69,0.377443284367248],[127,-63,70,0.38416781524791943],[127,-63,71,0.3909933765252364],[127,-63,72,0.3979217333016944],[127,-63,73,0.4049510673272599],[127,-63,74,0.412075221061878],[127,-63,75,0.4192831157259848],[127,-63,76,0.4265583478481864],[127,-63,77,0.43387896862952846],[127,-63,78,0.4412174502295957],[127,-63,79,0.44854084284444923],[127,-62,64,0.34862243570921775],[127,-62,65,0.35496160565356943],[127,-62,66,0.36140627708279754],[127,-62,67,0.3679435061777088],[127,-62,68,0.37456739891647983],[127,-62,69,0.38128257679927585],[127,-62,70,0.38809383299990347],[127,-62,71,0.395004625463136],[127,-62,72,0.4020159687847346],[127,-62,73,0.40912549118300573],[127,-62,74,0.41632666131791035],[127,-62,75,0.42360818957880636],[127,-62,76,0.43095360829853796],[127,-62,77,0.4383410351619649],[127,-62,78,0.445743123863159],[127,-62,79,0.45312720583082694],[127,-61,64,0.35223639468477663],[127,-61,65,0.358648720104354],[127,-61,66,0.36516800967838675],[127,-61,67,0.3717817257386657],[127,-61,68,0.3784829946117201],[127,-61,69,0.3852747084939393],[127,-61,70,0.3921602393655675],[127,-61,71,0.3991419330758467],[127,-61,72,0.4062199793068856],[127,-61,73,0.41339144676293604],[127,-61,74,0.4206494882810866],[127,-61,75,0.42798272042507485],[127,-61,76,0.43537478196138235],[127,-61,77,0.44280407542819655],[127,-61,78,0.45024369579523504],[127,-61,79,0.4576615499792663],[127,-60,64,0.3560210752654698],[127,-60,65,0.362500770062155],[127,-60,66,0.3690873495224733],[127,-60,67,0.3757689851362098],[127,-60,68,0.38253781497598127],[127,-60,69,0.38939475176905586],[127,-60,70,0.3963415629007571],[127,-60,71,0.4033793694304801],[127,-60,72,0.41050749048939095],[127,-60,73,0.41772245263069285],[127,-60,74,0.4250171687612887],[127,-60,75,0.4323802911507909],[127,-60,76,0.439795742852935],[127,-60,77,0.4472424316877525],[127,-60,78,0.4546941507223841],[127,-60,79,0.4621196689575776],[127,-59,64,0.3599502021098333],[127,-59,65,0.36649086372174755],[127,-59,66,0.3731368493228923],[127,-59,67,0.37987728140464666],[127,-59,68,0.3867033040161912],[127,-59,69,0.39361365144808064],[127,-59,70,0.40060834862833733],[127,-59,71,0.40768721764687094],[127,-59,72,0.4148486928620904],[127,-59,73,0.4220888003418096],[127,-59,74,0.42940030619500164],[127,-59,75,0.43677203822017996],[127,-59,76,0.4441883851376331],[127,-59,77,0.45162897748860625],[127,-59,78,0.45906855407685826],[127,-59,79,0.4664770176001882],[127,-58,64,0.36399389107020147],[127,-58,65,0.3705884158613562],[127,-58,66,0.37728534575538547],[127,-58,67,0.38407491380313824],[127,-58,68,0.39094726060535967],[127,-58,69,0.3978988006417174],[127,-58,70,0.40492772929782],[127,-58,71,0.4120325377556691],[127,-58,72,0.4192107950049096],[127,-58,73,0.426458093305421],[127,-58,74,0.4337671615828168],[127,-58,75,0.44112715111029405],[127,-58,76,0.44852309767458765],[127,-58,77,0.45593556424275333],[127,-58,78,0.4633404679421505],[127,-58,79,0.47070909494167706],[127,-57,64,0.36811935786256494],[127,-57,65,0.37475984991090033],[127,-57,66,0.3814986581999239],[127,-57,67,0.3883271803039362],[127,-57,68,0.3952345318678497],[127,-57,69,0.40221472885924964],[127,-57,70,0.40926410505083377],[127,-57,71,0.4163798340248403],[127,-57,72,0.4235586741747668],[127,-57,73,0.4307958761116414],[127,-57,74,0.43808425688143676],[127,-57,75,0.4454134452750719],[127,-57,76,0.4527693023599799],[127,-57,77,0.46013352118461714],[127,-57,78,0.46748340940654565],[127,-57,79,0.474791858374207],[127,-56,64,0.3722892102271383],[127,-56,65,0.3789670034306675],[127,-56,66,0.38573808966619627],[127,-56,67,0.39259496800126964],[127,-56,68,0.3995256937805556],[127,-56,69,0.40652187347157476],[127,-56,70,0.41357800488248486],[127,-56,71,0.42069000299174064],[127,-56,72,0.4278539041984992],[127,-56,73,0.4350647318631972],[127,-56,74,0.4423155274720669],[127,-56,75,0.44959655163736817],[127,-56,76,0.456894658996004],[127,-56,77,0.46419285089511586],[127,-56,78,0.4714700095562304],[127,-56,79,0.47870081719286023],[127,-55,64,0.3764483726464978],[127,-55,65,0.38315484030569896],[127,-55,66,0.3899487861400608],[127,-55,67,0.39682371414790835],[127,-55,68,0.4037666240780016],[127,-55,69,0.4107667805866836],[127,-55,70,0.4178169265346412],[127,-55,71,0.42491181057260113],[127,-55,72,0.4320468494434476],[127,-55,73,0.43921695032449376],[127,-55,74,0.44641549746976356],[127,-55,75,0.4536335072933058],[127,-55,76,0.4608589558888316],[127,-55,77,0.4680762828104586],[127,-55,78,0.47526607474606414],[127,-55,79,0.48240493250196304],[127,-54,64,0.38054089602579766],[127,-54,65,0.38726781445288766],[127,-54,66,0.39407571603120667],[127,-54,67,0.40095901913730064],[127,-54,68,0.40790373295890503],[127,-54,69,0.4148969257157498],[127,-54,70,0.42192971676128765],[127,-54,71,0.4289958062838851],[127,-54,72,0.4360900977536613],[127,-54,73,0.4432074789019904],[127,-54,74,0.4503417654137675],[127,-54,75,0.45748481139676905],[127,-54,76,0.4646257905500355],[127,-54,77,0.4717506517862603],[127,-54,78,0.47884175287367275],[127,-54,79,0.4858776754540624],[127,-53,64,0.38451991069733477],[127,-53,65,0.39125943898670745],[127,-53,66,0.398072915541268],[127,-53,67,0.40495558564301465],[127,-53,68,0.4118925851538385],[127,-53,69,0.4188690008670579],[127,-53,70,0.4258745051343766],[127,-53,71,0.4329018900577089],[127,-53,72,0.4399456550308808],[127,-53,73,0.44700075095696346],[127,-53,74,0.45406148523219747],[127,-53,75,0.46112059147458395],[127,-53,76,0.4681684678360374],[127,-53,77,0.4751925875735743],[127,-53,78,0.4821770853693562],[127,-53,79,0.4891025226846135],[127,-52,64,0.38834785023651636],[127,-52,65,0.3950925148593366],[127,-52,66,0.40190371795360263],[127,-52,67,0.4087774456427494],[127,-52,68,0.41569812181515314],[127,-52,69,0.42264912744876004],[127,-52,70,0.42961890322661056],[127,-52,71,0.43659949223694766],[127,-52,72,0.4435850999953584],[127,-52,73,0.45057080887128304],[127,-52,74,0.45755145090885024],[127,-52,75,0.4645206429217436],[127,-52,76,0.47146998760567754],[127,-52,77,0.4783884442521334],[127,-52,78,0.4852618724652009],[127,-52,79,0.492072752082771],[127,-51,64,0.3905374479019471],[127,-51,65,0.3987394262487257],[127,-51,66,0.4055410498164995],[127,-51,67,0.41239825404042507],[127,-51,68,0.4192949484207263],[127,-51,69,0.42621313452238196],[127,-51,70,0.43314026857061916],[127,-51,71,0.44006781798892536],[127,-51,72,0.4469898033167831],[127,-51,73,0.4539014918062999],[127,-51,74,0.4607982465732662],[127,-51,75,0.4676745350702183],[127,-51,76,0.4745231005158369],[127,-51,77,0.4813342997584957],[127,-51,78,0.4880956108738405],[127,-51,79,0.4947913136000358],[127,-50,64,0.39223542374209974],[127,-50,65,0.40063098336148667],[127,-50,66,0.40896783468562575],[127,-50,67,0.41580168803813683],[127,-50,68,0.4226677262887242],[127,-50,69,0.42954693837831903],[127,-50,70,0.43642606766882475],[127,-50,71,0.4432961886676791],[127,-50,72,0.4501512418949794],[127,-50,73,0.45698671723203327],[127,-50,74,0.4637984894981961],[127,-50,75,0.4705818098968619],[127,-50,76,0.4773304568408895],[127,-50,77,0.48403604951453244],[127,-50,78,0.49068752735494053],[127,-50,79,0.4972707984445007],[127,-49,64,0.39402014687608694],[127,-49,65,0.40239663791838337],[127,-49,66,0.4107456777786022],[127,-49,67,0.4189772731982131],[127,-49,68,0.4258075919142407],[127,-49,69,0.43264356888698874],[127,-49,70,0.4394715108900299],[127,-49,71,0.44628227365871714],[127,-49,72,0.4530698027165757],[127,-49,73,0.45982981894116287],[127,-49,74,0.46655865247140377],[127,-49,75,0.4732522284540533],[127,-49,76,0.4799052079988632],[127,-49,77,0.4865102875620982],[127,-49,78,0.4930576598080897],[127,-49,79,0.4995346388114091],[127,-48,64,0.3959051381421821],[127,-48,65,0.4042511486046549],[127,-48,66,0.41257938755112766],[127,-48,67,0.4208731893781461],[127,-48,68,0.4286992405241755],[127,-48,69,0.43549177310490045],[127,-48,70,0.44226966974671206],[127,-48,71,0.44902368193425857],[127,-48,72,0.45574777608092015],[127,-48,73,0.4624378375004315],[127,-48,74,0.46909051793648765],[127,-48,75,0.47570222998099115],[127,-48,76,0.4822682915862082],[127,-48,77,0.48878222372984115],[127,-48,78,0.49523520412667105],[127,-48,79,0.5016156796987337],[127,-47,64,0.39789999001143694],[127,-47,65,0.4062016385173125],[127,-47,66,0.41449423506456573],[127,-47,67,0.4227610954120281],[127,-47,68,0.4309980686174803],[127,-47,69,0.4380837132071813],[127,-47,70,0.444816682617551],[127,-47,71,0.45152066915740385],[127,-47,72,0.45818960773209505],[127,-47,73,0.46481941068357513],[127,-47,74,0.4714068471189776],[127,-47,75,0.4779485629253266],[127,-47,76,0.48444024448219847],[127,-47,77,0.4908759289424181],[127,-47,78,0.4972474637911454],[127,-47,79,0.5035441182186605],[127,-46,64,0.4000050358878223],[127,-46,65,0.4082465984760673],[127,-46,66,0.41648660245636876],[127,-46,67,0.42470848880762085],[127,-46,68,0.4329078438241658],[127,-46,69,0.4404174202059794],[127,-46,70,0.4471135619095224],[127,-46,71,0.4537773045994854],[127,-46,72,0.4604024451830859],[127,-46,73,0.4669847318069837],[127,-46,74,0.47352079500827376],[127,-46,75,0.48000721185582357],[127,-46,76,0.4864397058686037],[127,-46,77,0.49281248536162886],[127,-46,78,0.4991177227174854],[127,-46,79,0.505345176914652],[127,-45,64,0.402212396014779],[127,-45,65,0.4103768823604228],[127,-45,66,0.4185458868495755],[127,-45,67,0.4267031296531804],[127,-45,68,0.43484382701062535],[127,-45,69,0.44249610100845016],[127,-45,70,0.44916558165552367],[127,-45,71,0.45580094331236465],[127,-45,72,0.4623956970113014],[127,-45,73,0.4689451970338731],[127,-45,74,0.4754456448021757],[127,-45,75,0.4818932164135536],[127,-45,76,0.48828331634816236],[127,-45,77,0.4946099597502065],[127,-45,78,0.5008652855398561],[127,-45,79,0.5070392024563399],[127,-44,64,0.40450699888402303],[127,-44,65,0.4125766793939298],[127,-44,66,0.42065541789419014],[127,-44,67,0.42872737378274767],[127,-44,68,0.4367873195530978],[127,-44,69,0.444327461432186],[127,-44,70,0.45098167978518305],[127,-44,71,0.4576017121019304],[127,-44,72,0.46418060561356406],[127,-44,73,0.47071306642031374],[127,-44,74,0.47719455706962133],[127,-44,75,0.4836205066976929],[127,-44,76,0.48998563597684125],[127,-44,77,0.49628339899138585],[127,-44,78,0.5025055440319965],[127,-44,79,0.5086417951543072],[127,-43,64,0.40686758123369604],[127,-43,65,0.4148244662906195],[127,-43,66,0.4227933564126841],[127,-43,67,0.4307590119269784],[127,-43,68,0.4387157218143829],[127,-43,69,0.44592304307051134],[127,-43,70,0.45257387318554787],[127,-43,71,0.45919200764392415],[127,-43,72,0.46576983198034366],[127,-43,73,0.4723011374695586],[127,-43,74,0.47878033258667024],[127,-43,75,0.48520175420579037],[127,-43,76,0.4915590804657266],[127,-43,77,0.4978448471229754],[127,-43,78,0.5040500690925569],[127,-43,79,0.510163968748019],[127,-42,64,0.4092676697235405],[127,-42,65,0.4170939421815311],[127,-42,66,0.42493357688505645],[127,-42,67,0.43277209386772303],[127,-42,68,0.44060329270689],[127,-42,69,0.4472975718992029],[127,-42,70,0.4539566836724882],[127,-42,71,0.4605860050952503],[127,-42,72,0.4671770510720795],[127,-42,73,0.4737224299985059],[127,-42,74,0.4802151878557689],[127,-42,75,0.48664823752409453],[127,-42,76,0.49301387490775334],[127,-42,77,0.499303383370228],[127,-42,78,0.5055067278735714],[127,-42,79,0.5116123401041155],[127,-41,64,0.4116765473657351],[127,-41,65,0.4193549492330225],[127,-41,66,0.4270465365041725],[127,-41,67,0.43473774013178185],[127,-41,68,0.44177528176824876],[127,-41,69,0.4484683165225854],[127,-41,70,0.4551465730043275],[127,-41,71,0.4617991755717029],[127,-41,72,0.4684165564084226],[127,-41,73,0.4749898811615956],[127,-41,74,0.48151054237654384],[127,-41,75,0.4879697220416893],[127,-41,76,0.4943580244855087],[127,-41,77,0.5006651807883477],[127,-41,78,0.5068798257855415],[127,-41,79,0.5129893486461201],[127,-40,64,0.4140602077706256],[127,-40,65,0.4215743818524232],[127,-40,66,0.42910013351800147],[127,-40,67,0.43602661518590513],[127,-40,68,0.44273860851744556],[127,-40,69,0.44945445396990047],[127,-40,70,0.4561613850855952],[127,-40,71,0.4628478108856102],[127,-40,72,0.4695028725130504],[127,-40,73,0.4761160495217533],[127,-40,74,0.4826768167964506],[127,-40,75,0.4891743530411893],[127,-40,76,0.49559730171729705],[127,-40,77,0.5019335852510561],[127,-40,78,0.5081702732651597],[127,-40,79,0.5142935055180233],[127,-39,64,0.4163823002370786],[127,-39,65,0.4234091833309706],[127,-39,66,0.43008550193152734],[127,-39,67,0.43679619949200144],[127,-39,68,0.44353096750572785],[127,-39,69,0.45027644097341446],[127,-39,70,0.45701979353197925],[127,-39,71,0.46374855396537856],[127,-39,72,0.47045037389349387],[127,-39,73,0.47711282710626884],[127,-39,74,0.48372324113261944],[127,-39,75,0.4902685615997009],[127,-39,76,0.4967352499005347],[127,-39,77,0.5031092146472141],[127,-39,78,0.5093757773433689],[127,-39,79,0.5155196726639528],[127,-38,64,0.4173486551014529],[127,-38,65,0.42399277277964104],[127,-38,66,0.43068291257838],[127,-38,67,0.4374136967546824],[127,-38,68,0.4441753604093589],[127,-38,69,0.45095538868753776],[127,-38,70,0.45774075279710325],[127,-38,71,0.4645179334127868],[127,-38,72,0.47127290927651955],[127,-38,73,0.4779911584369733],[127,-38,74,0.4846576723212887],[127,-38,75,0.4912569828155558],[127,-38,76,0.497773202513137],[127,-38,77,0.5041900782716705],[127,-38,78,0.5104910582006724],[127,-38,79,0.5166593721824817],[127,-37,64,0.4177967491830863],[127,-37,65,0.42444729481384674],[127,-37,66,0.431151938058764],[127,-37,67,0.43790432466944595],[127,-37,68,0.44469509821304104],[127,-37,69,0.4515124388433884],[127,-37,70,0.4583429510976969],[127,-37,71,0.4651719006930993],[127,-37,72,0.47198342986495045],[127,-37,73,0.47876076557858366],[127,-37,74,0.48548642041805884],[127,-37,75,0.4921423859586298],[127,-37,76,0.49871031843437313],[127,-37,77,0.5051717165186409],[127,-37,78,0.49298351554354025],[127,-37,79,0.4813724460312943],[127,-36,64,0.4145405669792656],[127,-36,65,0.4162228948439186],[127,-36,66,0.42437724874191624],[127,-36,67,0.43603301378038123],[127,-36,68,0.44333062084322916],[127,-36,69,0.4519681393764549],[127,-36,70,0.4588442634168248],[127,-36,71,0.46572536849839824],[127,-36,72,0.4725936204320799],[127,-36,73,0.4794298783072762],[127,-36,74,0.4862140828413793],[127,-36,75,0.4866685297550756],[127,-36,76,0.47881601546703756],[127,-36,77,0.4686802688500895],[127,-36,78,0.45396661886276274],[127,-36,79,0.44342375511416565],[127,-35,64,0.39845496891596177],[127,-35,65,0.39715766135129177],[127,-35,66,0.3977012600436773],[127,-35,67,0.40612785193324263],[127,-35,68,0.4133236728097497],[127,-35,69,0.43559609688663503],[127,-35,70,0.44524811432063466],[127,-35,71,0.4452460487120267],[127,-35,72,0.44761306905096643],[127,-35,73,0.4561521547814239],[127,-35,74,0.46262764651828164],[127,-35,75,0.4586815545406245],[127,-35,76,0.4498724782388328],[127,-35,77,0.43708768573653944],[127,-35,78,0.4224236697646485],[127,-35,79,0.4122687253848508],[127,-34,64,0.3885597335273725],[127,-34,65,0.39077900323334364],[127,-34,66,0.3845322108637571],[127,-34,67,0.390291863383944],[127,-34,68,0.3970932220760842],[127,-34,69,0.4195530676442239],[127,-34,70,0.42593742046582006],[127,-34,71,0.42786686134012386],[127,-34,72,0.4282934307770755],[127,-34,73,0.43850813706870445],[127,-34,74,0.44976398258656297],[127,-34,75,0.4401966478435424],[127,-34,76,0.43079723621411353],[127,-34,77,0.42096224648535807],[127,-34,78,0.40658660000143404],[127,-34,79,0.3953087724258161],[127,-33,64,0.37933072202003615],[127,-33,65,0.3851511796118777],[127,-33,66,0.3793262780037018],[127,-33,67,0.3881983182646874],[127,-33,68,0.39381832020119206],[127,-33,69,0.40839876992342816],[127,-33,70,0.4135944845260158],[127,-33,71,0.4216466649822875],[127,-33,72,0.4206882217442418],[127,-33,73,0.4241677399471757],[127,-33,74,0.4375962861606639],[127,-33,75,0.43069646849185356],[127,-33,76,0.4219857810671208],[127,-33,77,0.4161816223586649],[127,-33,78,0.4021635047974514],[127,-33,79,0.3906500156881749],[127,-32,64,0.37552063565864996],[127,-32,65,0.381816926845168],[127,-32,66,0.38243039983986254],[127,-32,67,0.3870458701072304],[127,-32,68,0.3943447920841499],[127,-32,69,0.4023308941154964],[127,-32,70,0.40688278016151036],[127,-32,71,0.4207367221640929],[127,-32,72,0.4248459894497975],[127,-32,73,0.41688726085790906],[127,-32,74,0.4247264818675218],[127,-32,75,0.42303081196661146],[127,-32,76,0.4205058071809657],[127,-32,77,0.4166255942545207],[127,-32,78,0.4027960854259165],[127,-32,79,0.3925063674823439],[127,-31,64,0.3822104327280198],[127,-31,65,0.38451846810687346],[127,-31,66,0.39239622679159386],[127,-31,67,0.39418376635341695],[127,-31,68,0.40425222117208426],[127,-31,69,0.4082789056271235],[127,-31,70,0.41089738809562537],[127,-31,71,0.4188028040472603],[127,-31,72,0.43231749524049606],[127,-31,73,0.42468862648282557],[127,-31,74,0.4241026920612851],[127,-31,75,0.4221493540854995],[127,-31,76,0.4263311902626261],[127,-31,77,0.418706066453231],[127,-31,78,0.4069021863650158],[127,-31,79,0.39903793796971104],[127,-30,64,0.3946460238264128],[127,-30,65,0.3975591331439233],[127,-30,66,0.4073170823904659],[127,-30,67,0.4142472266292336],[127,-30,68,0.42416226056694234],[127,-30,69,0.4248597789980204],[127,-30,70,0.42523795493862293],[127,-30,71,0.42290958468083556],[127,-30,72,0.4374590746953309],[127,-30,73,0.4405940235295937],[127,-30,74,0.4396816163104033],[127,-30,75,0.43303285585002443],[127,-30,76,0.4375709433788506],[127,-30,77,0.42600623669993426],[127,-30,78,0.414966873745485],[127,-30,79,0.4087338808227148],[127,-29,64,0.40833451565294576],[127,-29,65,0.41480151097067225],[127,-29,66,0.42293949045031665],[127,-29,67,0.4370484200601624],[127,-29,68,0.44466616967670236],[127,-29,69,0.4369367819483591],[127,-29,70,0.43816206969720073],[127,-29,71,0.43863836220525276],[127,-29,72,0.4452506090024021],[127,-29,73,0.4554786450289356],[127,-29,74,0.46011983001630924],[127,-29,75,0.4519450411833585],[127,-29,76,0.45531288439008305],[127,-29,77,0.4415583636695476],[127,-29,78,0.4273064664711639],[127,-29,79,0.41950710414105535],[127,-28,64,0.4203474200270853],[127,-28,65,0.42680008715708373],[127,-28,66,0.43337928374382023],[127,-28,67,0.4400710696010409],[127,-28,68,0.44686152860715644],[127,-28,69,0.4486173639159052],[127,-28,70,0.451950096729284],[127,-28,71,0.46015090777708884],[127,-28,72,0.4581699504865024],[127,-28,73,0.4630464177946582],[127,-28,74,0.4742293803464245],[127,-28,75,0.47113178361992547],[127,-28,76,0.47301374113286443],[127,-28,77,0.46038040117332635],[127,-28,78,0.44239344228567534],[127,-28,79,0.4342057199850259],[127,-27,64,0.42074710718363323],[127,-27,65,0.4271247708614954],[127,-27,66,0.43363279147074796],[127,-27,67,0.44025685727678204],[127,-27,68,0.445464105589498],[127,-27,69,0.44995384201657085],[127,-27,70,0.4544196924445319],[127,-27,71,0.4588765092690253],[127,-27,72,0.4633414795568264],[127,-27,73,0.46783249419827216],[127,-27,74,0.47236670365430744],[127,-27,75,0.47695926254033655],[127,-27,76,0.4816222650168184],[127,-27,77,0.4730436403253842],[127,-27,78,0.455748849695105],[127,-27,79,0.45022446232421914],[127,-26,64,0.4211588667205867],[127,-26,65,0.427447844905213],[127,-26,66,0.4338696125284191],[127,-26,67,0.43917033586675813],[127,-26,68,0.44348775831828113],[127,-26,69,0.44777607750193715],[127,-26,70,0.452048296328831],[127,-26,71,0.4563214004848937],[127,-26,72,0.460614477281516],[127,-26,73,0.46494703002062193],[127,-26,74,0.4693374903909803],[127,-26,75,0.47380193113198726],[127,-26,76,0.4783529809059694],[127,-26,77,0.48299894301324015],[127,-26,78,0.4713108832769076],[127,-26,79,0.4638089621044673],[127,-25,64,0.4215535073985068],[127,-25,65,0.427740145835651],[127,-25,66,0.4329900675352821],[127,-25,67,0.4371445138255418],[127,-25,68,0.4412672038718747],[127,-25,69,0.44536748255180564],[127,-25,70,0.4494604895203806],[127,-25,71,0.45356511558957147],[127,-25,72,0.45770207406615676],[127,-25,73,0.4618921774759474],[127,-25,74,0.4661548221765804],[127,-25,75,0.4705066830590799],[127,-25,76,0.47496062022217705],[127,-25,77,0.4795247991761212],[127,-25,78,0.48420202579808147],[127,-25,79,0.47417189621544853],[127,-24,64,0.4218976131584217],[127,-24,65,0.4269335251752287],[127,-24,66,0.4309336417013254],[127,-24,67,0.43490022320863886],[127,-24,68,0.43884069473284015],[127,-24,69,0.4427665307124236],[127,-24,70,0.446694777730571],[127,-24,71,0.450645956509131],[127,-24,72,0.45464210247068576],[127,-24,73,0.4587050200460494],[127,-24,74,0.4628547531873186],[127,-24,75,0.46710827422496304],[127,-24,76,0.47147839287221044],[127,-24,77,0.47597288683449057],[127,-24,78,0.4805938551297737],[127,-24,79,0.48360172844678606],[127,-23,64,0.42100853867078786],[127,-23,65,0.42486127409435653],[127,-23,66,0.4286795152465371],[127,-23,67,0.43246958117334694],[127,-23,68,0.4362404269527801],[127,-23,69,0.44000549948980977],[127,-23,70,0.4437835291722122],[127,-23,71,0.44759639586514577],[127,-23,72,0.45146715575952573],[127,-23,73,0.4554182887814936],[127,-23,74,0.4594701689551032],[127,-23,75,0.4636397597711276],[127,-23,76,0.46793953626285356],[127,-23,77,0.4723766351283176],[127,-23,78,0.4769522338716933],[127,-23,79,0.48166115956779765],[127,-22,64,0.41893659027137026],[127,-22,65,0.42261126321869397],[127,-22,66,0.42625734439966534],[127,-22,67,0.4298818702242564],[127,-22,68,0.43349525882931633],[127,-22,69,0.43711279166959066],[127,-22,70,0.4407546778811402],[127,-22,71,0.4444439023013679],[127,-22,72,0.4482042554676707],[127,-22,73,0.45205858947426986],[127,-22,74,0.45602730198762637],[127,-22,75,0.46012705036618134],[127,-22,76,0.4643696974635928],[127,-22,77,0.468761490319728],[127,-22,78,0.47330247256460595],[127,-22,79,0.47798613098067155],[127,-21,64,0.4167083227578341],[127,-21,65,0.4202127262588699],[127,-21,66,0.42369557432847593],[127,-21,67,0.42716463009431244],[127,-21,68,0.43063171988357163],[127,-21,69,0.43411384466948527],[127,-21,70,0.4376325127193204],[127,-21,71,0.44121158639218055],[127,-21,72,0.44487533113076966],[127,-21,73,0.4486466941878308],[127,-21,74,0.4525458152751666],[127,-21,75,0.45658877095515954],[127,-21,76,0.46078655421586545],[127,-21,77,0.4651442902846858],[127,-21,78,0.4696606893466748],[127,-21,79,0.4743277364451573],[127,-20,64,0.4143541978591181],[127,-20,65,0.417694969158555],[127,-20,66,0.42102218689720217],[127,-20,67,0.4243443424912046],[127,-20,68,0.427674627970922],[127,-20,69,0.4310316768545226],[127,-20,70,0.4344381512939261],[127,-20,71,0.4379186021579449],[127,-20,72,0.44149755095367643],[127,-20,73,0.44519780411765697],[127,-20,74,0.44903900173504896],[127,-20,75,0.4530364023657964],[127,-20,76,0.4571999052676288],[127,-20,77,0.46153331091072636],[127,-20,78,0.4660338202822347],[127,-20,79,0.4706917730841109],[127,-19,64,0.4119060766394303],[127,-19,65,0.41508816489315364],[127,-19,66,0.4182654363761771],[127,-19,67,0.42144710135749125],[127,-19,68,0.4246476893306944],[127,-19,69,0.4278874140693928],[127,-19,70,0.4311899912266358],[127,-19,71,0.4345805229298509],[127,-19,72,0.4380836237125497],[127,-19,73,0.4417217804781076],[127,-19,74,0.4455139484114166],[127,-19,75,0.4494743843651766],[127,-19,76,0.4536117188500489],[127,-19,77,0.4579282673556007],[127,-19,78,0.4624195813264925],[127,-19,79,0.4670742387191644],[127,-18,64,0.409394698304618],[127,-18,65,0.4124206262143277],[127,-18,66,0.4154509061287849],[127,-18,67,0.41849544497029995],[127,-18,68,0.42157009915468735],[127,-18,69,0.4246966532485958],[127,-18,70,0.42789983303723855],[127,-18,71,0.4312052214712938],[127,-18,72,0.4346374358163849],[127,-18,73,0.43821853989075626],[127,-18,74,0.4419666931565221],[127,-18,75,0.44589503803227226],[127,-18,76,0.45001082638995943],[127,-18,77,0.4543147857906828],[127,-18,78,0.45880072560687213],[127,-18,79,0.4634553827759523],[127,-17,64,0.4068349372940186],[127,-17,65,0.4097048806148047],[127,-17,66,0.4125885682103176],[127,-17,67,0.41549656990907163],[127,-17,68,0.41844607050688026],[127,-17,69,0.42146044786029413],[127,-17,70,0.42456543727067814],[127,-17,71,0.42778708217411443],[127,-17,72,0.43114996669611316],[127,-17,73,0.4346756840416779],[127,-17,74,0.4383815423312092],[127,-17,75,0.44227950908728786],[127,-17,76,0.44637539516590075],[127,-17,77,0.450668278512078],[127,-17,78,0.4551501677089092],[127,-17,79,0.45980590488398904],[127,-16,64,0.40420177049403916],[127,-16,65,0.40691714362865633],[127,-16,66,0.40965625558837987],[127,-16,67,0.41243029610205617],[127,-16,68,0.4152577519512621],[127,-16,69,0.41816357563763057],[127,-16,70,0.4211744564755443],[127,-16,71,0.42431681310504554],[127,-16,72,0.42761508913964846],[127,-16,73,0.43109028478131745],[127,-16,74,0.4347587258505618],[127,-16,75,0.438631071267531],[127,-16,76,0.442711559603198],[127,-16,77,0.4469974949021438],[127,-16,78,0.4514789715648923],[127,-16,79,0.4561388376716796],[127,-15,64,0.40146973220210735],[127,-15,65,0.4040337014037974],[127,-15,66,0.40663238156054576],[127,-15,67,0.4092775210785271],[127,-15,68,0.41198884281485104],[127,-15,69,0.4147928010555537],[127,-15,70,0.4177169161262642],[127,-15,71,0.42078782011621607],[127,-15,72,0.42402962730906474],[127,-15,73,0.42746253969983117],[127,-15,74,0.43110168887255546],[127,-15,75,0.4349562150965557],[127,-15,76,0.43902858407914],[127,-15,77,0.4433141413931372],[127,-15,78,0.4478009041835875],[127,-15,79,0.4524695893528176],[127,-14,64,0.3452240359631827],[127,-14,65,0.401040045159984],[127,-14,66,0.4035039029006384],[127,-14,67,0.4060268489917279],[127,-14,68,0.40862973706160327],[127,-14,69,0.4113404036762187],[127,-14,70,0.4141870245344202],[127,-14,71,0.4171962277139217],[127,-14,72,0.4203915532407666],[127,-14,73,0.4237921455347678],[127,-14,74,0.4274116798199349],[127,-14,75,0.43125752317027427],[127,-14,76,0.43533013044072166],[127,-14,77,0.4396226749143386],[127,-14,78,0.4441209130851453],[127,-14,79,0.4488032825945004],[127,-13,64,0.19152640134122],[127,-13,65,0.23091224003134975],[127,-13,66,0.27456258686505625],[127,-13,67,0.322439552666603],[127,-13,68,0.37448366002159345],[127,-13,69,0.4078027588140506],[127,-13,70,0.41058195347214826],[127,-13,71,0.41353988668426034],[127,-13,72,0.416699245567917],[127,-13,73,0.4200778284122792],[127,-13,74,0.42368756831692445],[127,-13,75,0.4275337872945595],[127,-13,76,0.4316146808937241],[127,-13,77,0.4359210329830112],[127,-13,78,0.44043615993207436],[127,-13,79,0.44513608303007995],[127,-12,64,0.09186740700277797],[127,-12,65,0.11605210993209274],[127,-12,66,0.1438003613790146],[127,-12,67,0.1751465109226158],[127,-12,68,0.21010177602286031],[127,-12,69,0.24865484501894577],[127,-12,70,0.2907662296302459],[127,-12,71,0.3363696462909362],[127,-12,72,0.3853737813069249],[127,-12,73,0.4163169530734722],[127,-12,74,0.41992572283115653],[127,-12,75,0.4237801647627146],[127,-12,76,0.4278759784813985],[127,-12,77,0.4322013591771327],[127,-12,78,0.43673702702249495],[127,-12,79,0.44145647815910777],[127,-11,64,0.03449809836221439],[127,-11,65,0.047072897816861865],[127,-11,66,0.062430690007118504],[127,-11,67,0.08067786130172434],[127,-11,68,0.10189620096053104],[127,-11,69,0.12614297933915053],[127,-11,70,0.15344406300411662],[127,-11,71,0.1837952759067277],[127,-11,72,0.2171641713683311],[127,-11,73,0.25349200622314927],[127,-11,74,0.2926959028875305],[127,-11,75,0.3346711855673901],[127,-11,76,0.3792938773629911],[127,-11,77,0.4264233456761054],[127,-11,78,0.4330080990753524],[127,-11,79,0.4377465093988092],[127,-10,64,0.0076717657902566445],[127,-10,65,0.012227842964776026],[127,-10,66,0.01870654416930384],[127,-10,67,0.02728605872208728],[127,-10,68,0.03811860003712911],[127,-10,69,0.05132997702432506],[127,-10,70,0.06701144052518616],[127,-10,71,0.08522104222069307],[127,-10,72,0.10598543076162338],[127,-10,73,0.12930184746857795],[127,-10,74,0.15514030731630038],[127,-10,75,0.1834459513305423],[127,-10,76,0.21414155704443336],[127,-10,77,0.24713019427974306],[127,-10,78,0.2822980142545652],[127,-10,79,0.3195171608583194],[127,-9,64,-3.5735030271207593E-4],[127,-9,65,-2.291074886344917E-4],[127,-9,66,8.813052093975451E-4],[127,-9,67,0.0032236184187827673],[127,-9,68,0.007020303639140569],[127,-9,69,0.012465656870641616],[127,-9,70,0.01971634861328178],[127,-9,71,0.028892796715715607],[127,-9,72,0.040081002192188485],[127,-9,73,0.053334580225335736],[127,-9,74,0.06867697201270331],[127,-9,75,0.08610382350416032],[127,-9,76,0.10558551757145804],[127,-9,77,0.12706984674553226],[127,-9,78,0.150484814362099],[127,-9,79,0.17574155276320644],[127,-8,64,-0.0013351803863973172],[127,-8,65,-0.00204437426870263],[127,-8,66,-0.0027922480929865835],[127,-8,67,-0.0032578137712340623],[127,-8,68,-0.0031485194706876328],[127,-8,69,-0.0022016343430207213],[127,-8,70,-1.950184437326894E-4],[127,-8,71,0.003054278071138795],[127,-8,72,0.0076919037324162925],[127,-8,73,0.013828283640396934],[127,-8,74,0.021540872045053987],[127,-8,75,0.03087656559597606],[127,-8,76,0.041854263707610334],[127,-8,77,0.05446756305888772],[127,-8,78,0.06868757392441004],[127,-8,79,0.08446584681278989],[127,-7,64,-0.00700877003440758],[127,-7,65,-0.004965647702405436],[127,-7,66,-0.004062782168722079],[127,-7,67,-0.003908227166182318],[127,-7,68,-0.004139532841096575],[127,-7,69,-0.004425579639123667],[127,-7,70,-0.0032885701834851353],[127,-7,71,-9.297375094604113E-4],[127,-7,72,0.001577887990087008],[127,-7,73,0.004244216490861195],[127,-7,74,0.007072071008354396],[127,-7,75,0.010057143041813755],[127,-7,76,0.013188116074448468],[127,-7,77,0.017545800862116212],[127,-7,78,0.025125657375036085],[127,-7,79,0.03390649065361023],[127,-6,64,-0.018492795023157343],[127,-6,65,-0.016528204881078496],[127,-6,66,-0.014534565071401434],[127,-6,67,-0.010479845158626561],[127,-6,68,-0.007706744147313737],[127,-6,69,-0.0059623007626859546],[127,-6,70,-0.004893193567302111],[127,-6,71,-0.00344979089934212],[127,-6,72,-8.337282559421322E-4],[127,-6,73,0.0019481141193560736],[127,-6,74,0.004895433371466959],[127,-6,75,0.008000744694083085],[127,-6,76,0.01124963001911522],[127,-6,77,0.01462113679825365],[127,-6,78,0.018088325117692525],[127,-6,79,0.02161896114140498],[127,-5,64,-0.021323034174575494],[127,-5,65,-0.01935545846825387],[127,-5,66,-0.017340817398928742],[127,-5,67,-0.015271662746506164],[127,-5,68,-0.013125382534597947],[127,-5,69,-0.01086899042177368],[127,-5,70,-0.008476123170134436],[127,-5,71,-0.005927732351981665],[127,-5,72,-0.003212256695282526],[127,-5,73,-3.256569916395397E-4],[127,-5,74,0.002728685610931589],[127,-5,75,0.005940206841073945],[127,-5,76,0.009291530715757852],[127,-5,77,0.01275897353856665],[127,-5,78,0.016313178661853726],[127,-5,79,0.019919879977976312],[127,-4,64,-0.024083600424405945],[127,-4,65,-0.022113751401060623],[127,-4,66,-0.020079820654517053],[127,-4,67,-0.017976359976990833],[127,-4,68,-0.015782040323455954],[127,-4,69,-0.0134647076003311],[127,-4,70,-0.010999612934862305],[127,-4,71,-0.008369929127215308],[127,-4,72,-0.005566732411174287],[127,-4,73,-0.0025888646298629758],[127,-4,74,5.573231714594965E-4],[127,-4,75,0.0038583445010774275],[127,-4,76,0.007294067067874543],[127,-4,77,0.010838316653572686],[127,-4,78,0.014459593348891556],[127,-4,79,0.018121898115803253],[127,-3,64,-0.0267710126201985],[127,-3,65,-0.024800587447305518],[127,-3,66,-0.0227503447489456],[127,-3,67,-0.020617099850325317],[127,-3,68,-0.018381015579421615],[127,-3,69,-0.01601091340084934],[127,-3,70,-0.01348373274527187],[127,-3,71,-0.010784875281915384],[127,-3,72,-0.007907999939004866],[127,-3,73,-0.0048547168493437735],[127,-3,74,-0.001634181384769784],[127,-3,75,0.001737410361180454],[127,-3,76,0.005237423097651547],[127,-3,77,0.008837479151442503],[127,-3,78,0.012504248698298148],[127,-3,79,0.016200331396472603],[127,-2,64,-0.029384728759351914],[127,-2,65,-0.02741639271151554],[127,-2,66,-0.025354024847677646],[127,-2,67,-0.023196943393766514],[127,-2,68,-0.020926982482669335],[127,-2,69,-0.01851404991309556],[127,-2,70,-0.015936805464218814],[127,-2,71,-0.013182838970802262],[127,-2,72,-0.010248285294681499],[127,-2,73,-0.0071373570961384344],[127,-2,74,-0.0038617967105610634],[127,-2,75,-4.4024859304930266E-4],[127,-2,76,0.0031024460595310503],[127,-2,77,0.0067360307663743],[127,-2,78,0.010425689438116732],[127,-2,79,0.014132974305167365],[127,-1,64,-0.03192695351426952],[127,-1,65,-0.029964299289580713],[127,-1,66,-0.02789511339543458],[127,-1,67,-0.025721425544587062],[127,-1,68,-0.0234268860429145],[127,-1,69,-0.020982564070377775],[127,-1,70,-0.018368829151127867],[127,-1,71,-0.015575371727292687],[127,-1,72,-0.012600647399507447],[127,-1,73,-0.009451257904328329],[127,-1,74,-0.006141270254250668],[127,-1,75,-0.002691475584114522],[127,-1,76,8.714106447334632E-4],[127,-1,77,0.004515605336997337],[127,-1,78,0.008205169525992474],[127,-1,79,0.010809374166833157],[127,0,64,-0.034402238940203764],[127,0,65,-0.03244972560762238],[127,0,66,-0.030380033909472907],[127,0,67,-0.028198077503035143],[127,0,68,-0.02588942921187036],[127,0,69,-0.023426356594517257],[127,0,70,-0.020790885987191296],[127,0,71,-0.01797467672689323],[127,0,72,-0.014978306315253445],[127,0,73,-0.011810511014420237],[127,0,74,-0.008487383399050596],[127,0,75,-0.0050315284671462596],[127,0,76,-0.0014711799808041076],[127,0,77,0.0021607212367271474],[127,0,78,0.005827485278193436],[127,0,79,0.006664686752032691],[127,1,64,-0.028865450651564636],[127,1,65,-0.03487975101200509],[127,1,66,-0.03281673448780062],[127,1,67,-0.03063575604563944],[127,1,68,-0.028324376189078286],[127,1,69,-0.025856058394732297],[127,1,70,-0.023214391908692223],[127,1,71,-0.020392832908288153],[127,1,72,-0.01739384422645393],[127,1,73,-0.014228008663581858],[127,1,74,-0.010913117487307956],[127,1,75,-0.007473235760489639],[127,1,76,-0.00393774616738869],[127,1,77,-3.403730254019459E-4],[127,1,78,0.00328181182430372],[127,1,79,0.0026717128345162978],[127,2,64,-0.006615188461023507],[127,2,65,-0.011262070854204609],[127,2,66,-0.01737185642073904],[127,2,67,-0.025121121681848567],[127,2,68,-0.030741667408603512],[127,2,69,-0.02828212855058024],[127,2,70,-0.025650179143178613],[127,2,71,-0.022840864628162434],[127,2,72,-0.019858265763311497],[127,2,73,-0.0167144990347609],[127,2,74,-0.01342870964463336],[127,2,75,-0.010026058731695644],[127,2,76,-0.006536706475288508],[127,2,77,-0.002994792713594341],[127,2,78,-4.268805176235995E-4],[127,2,79,-0.0011540355032833086],[127,3,64,-8.804203829290534E-4],[127,3,65,-0.001742738398876806],[127,3,66,-0.003129680670189253],[127,3,67,-0.005291523330094562],[127,3,68,-0.008417123024476631],[127,3,69,-0.012643261685754048],[127,3,70,-0.018083740732465162],[127,3,71,-0.02483155590666261],[127,3,72,-0.0223799355355572],[127,3,73,-0.019277553676866843],[127,3,74,-0.016040659145346137],[127,3,75,-0.012695145845953219],[127,3,76,-0.00927158915456911],[127,3,77,-0.005804193868282244],[127,3,78,-0.0041155628899549376],[127,3,79,-0.004803400617555723],[127,4,64,9.778700423897918E-6],[127,4,65,-5.872102035822294E-4],[127,4,66,-6.924716067257036E-4],[127,4,67,-6.299771889865179E-4],[127,4,68,-6.593121777300122E-4],[127,4,69,-9.851392382023722E-4],[127,4,70,-0.0017872528430635769],[127,4,71,-0.003222543601037767],[127,4,72,-0.0054263415629109],[127,4,73,-0.008513784945826101],[127,4,74,-0.012581202148176136],[127,4,75,-0.015480330852129305],[127,4,76,-0.012140108674110004],[127,4,77,-0.008763936707683318],[127,4,78,-0.007636502812604843],[127,4,79,-0.008274271064928694],[127,5,64,0.007729140096269827],[127,5,65,0.0038779246068252208],[127,5,66,0.0016130317067505804],[127,5,67,5.368281280959331E-4],[127,5,68,3.190118610716178E-4],[127,5,69,6.870122430572821E-4],[127,5,70,0.0013949817691434926],[127,5,71,0.0022220218348394253],[127,5,72,0.002971036615622492],[127,5,73,0.003467541421932895],[127,5,74,0.003558437490886978],[127,5,75,0.0031107646011761247],[127,5,76,0.0020104422399047717],[127,5,77,1.6100931451517794E-4],[127,5,78,-0.004912418202544519],[127,5,79,-0.011572206228644867],[127,6,64,0.03395592852153984],[127,6,65,0.023330710421249838],[127,6,66,0.015464879031273719],[127,6,67,0.009887192801526144],[127,6,68,0.006196671378215462],[127,6,69,0.004052838672540558],[127,6,70,0.0031437530955473695],[127,6,71,0.003184402866753789],[127,6,72,0.003915737834281389],[127,6,73,0.005103637282982277],[127,6,74,0.006537825538566785],[127,6,75,0.008030746667238301],[127,6,76,0.009416408982196684],[127,6,77,0.010549209403867759],[127,6,78,0.009044397195610714],[127,6,79,0.005694783103225277],[127,7,64,0.09037730421475455],[127,7,65,0.06945822625471225],[127,7,66,0.052550309811335676],[127,7,67,0.03910878495234508],[127,7,68,0.028662055688003896],[127,7,69,0.020801762743295683],[127,7,70,0.015149836863061216],[127,7,71,0.01135704389210322],[127,7,72,0.009102176267227747],[127,7,73,0.008091163699826829],[127,7,74,0.008056114713834245],[127,7,75,0.008754300257423301],[127,7,76,0.009967090084749336],[127,7,77,0.01149885200770986],[127,7,78,0.01128217471986267],[127,7,79,0.009529275929342206],[127,8,64,0.18869622468815375],[127,8,65,0.15396369787492872],[127,8,66,0.12457293907952616],[127,8,67,0.09990584411857598],[127,8,68,0.07942031267791418],[127,8,69,0.06264011534918226],[127,8,70,0.04912100086712454],[127,8,71,0.038449373874128945],[127,8,72,0.03024162943504974],[127,8,73,0.024143391590968608],[127,8,74,0.019828667480805043],[127,8,75,0.016998928171014366],[127,8,76,0.015382126874186271],[127,8,77,0.01473166470634443],[127,8,78,0.013443901735417653],[127,8,79,0.010857563804813298],[127,9,64,0.3016410311400234],[127,9,65,0.2885516272997002],[127,9,66,0.243237897938239],[127,9,67,0.2039843545700706],[127,9,68,0.1701785489547188],[127,9,69,0.1412763696803959],[127,9,70,0.11676729405253615],[127,9,71,0.0961731847699654],[127,9,72,0.07904775267375197],[127,9,73,0.06497590992290767],[127,9,74,0.053573024994692055],[127,9,75,0.04448409057231796],[127,9,76,0.037382814982830574],[127,9,77,0.031970647379585444],[127,9,78,0.027171539625393808],[127,9,79,0.021320538577920614],[127,10,64,0.295924672442629],[127,10,65,0.29535511811683335],[127,10,66,0.29502367633411164],[127,10,67,0.2948969393330795],[127,10,68,0.2949729475712433],[127,10,69,0.26841790804828797],[127,10,70,0.22979775399825933],[127,10,71,0.19623928444061814],[127,10,72,0.16723318795409758],[127,10,73,0.14230320610409294],[127,10,74,0.12100547929657592],[127,10,75,0.10292779308355833],[127,10,76,0.08768873556081466],[127,10,77,0.07493677609057402],[127,10,78,0.06410921617781855],[127,10,79,0.05256164422203784],[127,11,64,0.2901454057005093],[127,11,65,0.2894113101975799],[127,11,66,0.28890767772997145],[127,11,67,0.2885994368500246],[127,11,68,0.28848405169228275],[127,11,69,0.2885824245713059],[127,11,70,0.2889046027273336],[127,11,71,0.2894505402911978],[127,11,72,0.29021159907474486],[127,11,73,0.2678400153942191],[127,11,74,0.23384223014569094],[127,11,75,0.20404753802997505],[127,11,76,0.17801849066924338],[127,11,77,0.15534951536524405],[127,11,78,0.135665962414277],[127,11,79,0.1162268196281298],[127,12,64,0.2843294590998679],[127,12,65,0.28342783575892766],[127,12,66,0.28274831241839643],[127,12,67,0.2822546913881586],[127,12,68,0.2819441259134595],[127,12,69,0.2818377744639009],[127,12,70,0.2819461168391299],[127,12,71,0.2822697074018633],[127,12,72,0.282800672146602],[127,12,73,0.28352411910373826],[127,12,74,0.2844194605616732],[127,12,75,0.2854616458097497],[127,12,76,0.2866223033274445],[127,12,77,0.2849273915388094],[127,12,78,0.2536440931686071],[127,12,79,0.22396444644427935],[127,13,64,0.2785087963527534],[127,13,65,0.2774377475708279],[127,13,66,0.27657974222627996],[127,13,67,0.2758980152146986],[127,13,68,0.2753896469274591],[127,13,69,0.2750760217450845],[127,13,70,0.2749680284625594],[127,13,71,0.27506680718723875],[127,13,72,0.2753652391358222],[127,13,73,0.27584934697393915],[127,13,74,0.2764996042153404],[127,13,75,0.2772921524258359],[127,13,76,0.2781999252071543],[127,13,77,0.2791936781669396],[127,13,78,0.2802429243135068],[127,13,79,0.279731070202655],[127,14,64,0.27272429028967343],[127,14,65,0.2714831053437592],[127,14,66,0.27044515762670823],[127,14,67,0.26957365968993724],[127,14,68,0.26886580741271804],[127,14,69,0.2683431074711862],[127,14,70,0.26801676430014565],[127,14,71,0.26788842641327887],[127,14,72,0.2679516677463937],[127,14,73,0.2681933768421096],[127,14,74,0.2685950524284739],[127,14,75,0.26913400417991257],[127,14,76,0.26978445768615483],[127,14,77,0.27051856289238896],[127,14,78,0.27130730551221194],[127,14,79,0.27054889490368406],[127,15,64,0.26702602429739564],[127,15,65,0.2656150980709907],[127,15,66,0.264396643658764],[127,15,67,0.263334351609583],[127,15,68,0.2624256605345008],[127,15,69,0.2616920278798401],[127,15,70,0.2611448232452777],[127,15,71,0.26078608192410396],[127,15,72,0.26060997789597545],[127,15,73,0.2606042016406026],[127,15,74,0.26075124136413885],[127,15,75,0.26102956647442455],[127,15,76,0.26141471238636754],[127,15,77,0.261880265983554],[127,15,78,0.26230294511332963],[127,15,79,0.26105543521202434],[127,16,64,0.26145279802517923],[127,16,65,0.2598730986541527],[127,16,66,0.25847372110449157],[127,16,67,0.2572192938551826],[127,16,68,0.2561075997150116],[127,16,69,0.2551598665470901],[127,16,70,0.2543874906557011],[127,16,71,0.25379280267679555],[127,16,72,0.2533705295843502],[127,16,73,0.2531091582502798],[127,16,74,0.2529921991967154],[127,16,75,0.25299934943280067],[127,16,76,0.2531075535215726],[127,16,77,0.25329196227485234],[127,16,78,0.2525213016567349],[127,16,79,0.2512489941821039],[127,17,64,0.2560197377766255],[127,17,65,0.25427272187985356],[127,17,66,0.2526921775572401],[127,17,67,0.25124409547074156],[127,17,68,0.2499266909547554],[127,17,69,0.24876079108709281],[127,17,70,0.2477577064870082],[127,17,71,0.24692001147368642],[127,17,72,0.2462429894830174],[127,17,73,0.2457159767086447],[127,17,74,0.24532360266402062],[127,17,75,0.24504692662445843],[127,17,76,0.24486446916975912],[127,17,77,0.24375192266745882],[127,17,78,0.24241928178996916],[127,17,79,0.24113725532345534],[127,18,64,0.2507210362170052],[127,18,65,0.24880868493559488],[127,18,66,0.2470471040324589],[127,18,67,0.24540403387932627],[127,18,68,0.2438781990620486],[127,18,69,0.2424898666865804],[127,18,70,0.24125017172043955],[127,18,71,0.24016191079733845],[127,18,72,0.23922096332813553],[127,18,73,0.238417607608921],[127,18,74,0.2375198579276437],[127,18,75,0.2361080817998067],[127,18,76,0.23471006231566766],[127,18,77,0.23333940028644592],[127,18,78,0.23200951731260536],[127,18,79,0.23073305359858928],[127,19,64,0.24081502152942186],[127,19,65,0.2394264519525389],[127,19,66,0.23801605150807287],[127,19,67,0.23661889160795677],[127,19,68,0.23523902035285515],[127,19,69,0.23385874713779276],[127,19,70,0.23246766356024579],[127,19,71,0.23106192049688906],[127,19,72,0.22964292025243668],[127,19,73,0.22821611462840807],[127,19,74,0.22678991005891008],[127,19,75,0.22537468068401761],[127,19,76,0.22398188995534327],[127,19,77,0.22262332109501407],[127,19,78,0.22131041646200017],[127,19,79,0.2200537256186474],[127,20,64,0.23044590575131865],[127,20,65,0.22892381410487614],[127,20,66,0.22739612323128552],[127,20,67,0.2258956486900021],[127,20,68,0.22442599325516108],[127,20,69,0.22297051845215257],[127,20,70,0.22151936932912145],[127,20,71,0.22006874208820898],[127,20,72,0.21861961700424884],[127,20,73,0.21717659992275434],[127,20,74,0.21574687338654247],[127,20,75,0.21433925815752486],[127,20,76,0.21296338561880263],[127,20,77,0.21162898126440005],[127,20,78,0.21034525921335123],[127,20,79,0.209120427421556],[127,21,64,0.219771678549602],[127,21,65,0.21811356488799108],[127,21,66,0.21646751894539001],[127,21,67,0.2148638357302243],[127,21,68,0.2133056219298067],[127,21,69,0.2117773930898242],[127,21,70,0.21026988149371256],[127,21,71,0.20877929934577275],[127,21,72,0.20730612226293593],[127,21,73,0.2058539835351158],[127,21,74,0.2044286800932144],[127,21,75,0.20303729083623728],[127,21,76,0.2016874076836662],[127,21,77,0.20038647943857074],[127,21,78,0.19914126827454115],[127,21,79,0.1979574183956055],[127,22,64,0.20885319978992314],[127,22,65,0.20705595674917032],[127,22,66,0.20528960194110915],[127,22,67,0.20358169641201035],[127,22,68,0.20193481004458905],[127,22,69,0.20033469089648753],[127,22,70,0.1987726769151756],[127,22,71,0.19724496032904346],[127,22,72,0.19575143111863127],[127,22,73,0.19429463289246884],[127,22,74,0.1928788319854227],[127,22,75,0.19150920030668336],[127,22,76,0.1901911121770489],[127,22,77,0.18892955511331708],[127,22,78,0.18772865424515345],[127,22,79,0.18659130978697527],[127,23,64,0.19775707459620886],[127,23,65,0.1958170444777441],[127,23,66,0.1939275350080393],[127,23,67,0.192113215401108],[127,23,68,0.19037608815789758],[127,23,69,0.18870318644614098],[127,23,70,0.18708645729900605],[127,23,71,0.18552203322749608],[127,23,72,0.18400914426479012],[127,23,73,0.18254914343399428],[127,23,74,0.18114464632726346],[127,23,75,0.17979878519217585],[127,23,76,0.1785145776334138],[127,23,77,0.1772944097566167],[127,23,78,0.17613963331057558],[127,23,79,0.1750502761239806],[127,24,64,0.1865529637517102],[127,24,65,0.18446601138693355],[127,24,66,0.1824496406523676],[127,24,67,0.18052553046320502],[127,24,68,0.17869509569639513],[127,24,69,0.17694667927972862],[127,24,70,0.17527282586877269],[127,24,71,0.17366956680293127],[127,24,72,0.17213540816615716],[127,24,73,0.17067043262748308],[127,24,74,0.16927551561317605],[127,24,75,0.16795165607085555],[127,24,76,0.16669942179963143],[127,24,77,0.16551850904165297],[127,24,78,0.1644074157633377],[127,24,79,0.16336322779923054],[127,25,64,0.1753109844215069],[127,25,65,0.17307258276332874],[127,25,66,0.17092484461243604],[127,25,67,0.16888642263851955],[127,25,68,0.16695813440536042],[127,25,69,0.16512962782680005],[127,25,70,0.16339401888853627],[127,25,71,0.16174719597662948],[127,25,72,0.16018688998463257],[127,25,73,0.15871185786772127],[127,25,74,0.1573211800560964],[127,25,75,0.15601367185103313],[127,25,76,0.154787408644113],[127,25,77,0.15363936452590118],[127,25,78,0.15256516358856664],[127,25,79,0.1515589429779749],[127,26,64,0.1640992020638141],[127,26,65,0.16170452729791673],[127,26,66,0.15942020321992018],[127,26,67,0.15726188483512205],[127,26,68,0.15522979342749818],[127,26,69,0.15331484694585656],[127,26,70,0.1515106917410535],[127,26,71,0.1498130320373004],[127,26,72,0.14821878651087017],[127,26,73,0.14672535728485328],[127,26,74,0.1453300116123215],[127,26,75,0.14402937623584894],[127,26,76,0.1428190441338247],[127,26,77,0.14169329309589163],[127,26,78,0.1406449153151585],[127,26,79,0.13966515694381754],[127,27,64,0.15298121455834926],[127,27,65,0.1504252473758387],[127,27,66,0.14799851531834568],[127,27,67,0.14571376936506275],[127,27,68,0.14357064632417363],[127,27,69,0.14156126917028328],[127,27,70,0.13967975941050997],[127,27,71,0.13792159707514848],[127,27,72,0.13628286646394544],[127,27,73,0.1347596125879682],[127,27,74,0.1333473084421715],[127,27,75,0.1320404329656852],[127,27,76,0.13083215927644182],[127,27,77,0.12971415250652085],[127,27,78,0.12867647631854778],[127,27,79,0.12770760695189218],[127,28,64,0.1420138297825152],[127,28,65,0.13929145930716974],[127,28,66,0.13671601965644634],[127,28,67,0.13429751515128666],[127,28,68,0.13203502055216523],[127,28,69,0.12992176993815624],[127,28,70,0.12795229139913838],[127,28,71,0.1261218024142414],[127,28,72,0.12442554567168974],[127,28,73,0.12285823320011054],[127,28,74,0.12141359881475729],[127,28,75,0.12008405861210524],[127,28,76,0.11886047898460042],[127,28,77,0.11773205137650528],[127,28,78,0.11668627276579827],[127,28,79,0.11570903063617453],[127,29,64,0.13124483810226445],[127,29,65,0.1283509648200538],[127,29,66,0.12562017891366858],[127,29,67,0.12305995557111336],[127,29,68,0.1206688401417364],[127,29,69,0.11844105730859883],[127,29,70,0.11637146131989505],[127,29,71,0.1144549710133845],[127,29,72,0.11268599482439488],[127,29,73,0.11105796110019797],[127,29,74,0.1095629536009575],[127,29,75,0.10819145180710087],[127,29,76,0.10693217540148905],[127,29,77,0.10577203205465502],[127,29,78,0.10469616741665733],[127,29,79,0.10368811600991625],[127,30,64,0.12071089925449796],[127,30,65,0.11764053396981883],[127,30,66,0.11474757116351217],[127,30,67,0.1120372283588197],[127,30,68,0.10950756357789511],[127,30,69,0.10715364871259692],[127,30,70,0.10497057423058724],[127,30,71,0.10295292739483529],[127,30,72,0.10109430383672502],[127,30,73,0.09938692086885613],[127,30,74,0.09782133230540069],[127,30,75,0.09638624430852379],[127,30,76,0.09506843153934254],[127,30,77,0.093852752663642],[127,30,78,0.09272226405005843],[127,30,79,0.09165843030180423],[127,31,64,0.11044024465885509],[127,31,65,0.10718881428005192],[127,31,66,0.10412701633473305],[127,31,67,0.10125812656966804],[127,31,68,0.09857976577083952],[127,31,69,0.09608769170161736],[127,31,70,0.09377713469986643],[127,31,71,0.0916423218278601],[127,31,72,0.08967607075474852],[127,31,73,0.08786948132633059],[127,31,74,0.08621172449069506],[127,31,75,0.08468992801105678],[127,31,76,0.08328915816950665],[127,31,77,0.0819924964498275],[127,31,78,0.08078120998794679],[127,31,79,0.07963501439503078],[127,32,64,0.10045757991223811],[127,32,65,0.09702151358398074],[127,32,66,0.09378504843351697],[127,32,67,0.09074986539531114],[127,32,68,0.08791320382385934],[127,32,69,0.08527133437676948],[127,32,70,0.08281952848191988],[127,32,71,0.0805516302194825],[127,32,72,0.07845972677713277],[127,32,73,0.07653391214671278],[127,32,74,0.07476214364635426],[127,32,75,0.07313019062776284],[127,32,76,0.07162167451388347],[127,32,77,0.07021819910984967],[127,32,78,0.06889956994387267],[127,32,79,0.06764410122448472],[127,33,64,0.09077334816343484],[127,33,65,0.08715021878603738],[127,33,66,0.08373430104658824],[127,33,67,0.08052604238046748],[127,33,68,0.0775223598606837],[127,33,69,0.07471986110396528],[127,33,70,0.07211376331868809],[127,33,71,0.06969751364076077],[127,33,72,0.06746252913680112],[127,33,73,0.06539802531807667],[127,33,74,0.06349093268055493],[127,33,75,0.061725900575540844],[127,33,76,0.060085387514400374],[127,33,77,0.05854983682204578],[127,33,78,0.05709793638105139],[127,33,79,0.05570696105129733],[127,34,64,0.08138050687583387],[127,34,65,0.07756908092327655],[127,34,66,0.07397010930868315],[127,34,67,0.07058316065396653],[127,34,68,0.06740488929481961],[127,34,69,0.06443207174093067],[127,34,70,0.06165978676289354],[127,34,71,0.05908108364146146],[127,34,72,0.056686783635224225],[127,34,73,0.054465365068555927],[127,34,74,0.05240293150299171],[127,34,75,0.050483262257898724],[127,34,76,0.04868794435886207],[127,34,77,0.046996584816797284],[127,34,78,0.04538710198119522],[127,34,79,0.04383609456686124],[127,35,64,0.07225294660352335],[127,35,65,0.06825320942692961],[127,35,66,0.06446888678173888],[127,35,67,0.060898990770619096],[127,35,68,0.05753996922411452],[127,35,69,0.054388620422888126],[127,35,70,0.051439821045280415],[127,35,71,0.04868624029855202],[127,35,72,0.04611819397028615],[127,35,73,0.04372357719134361],[127,35,74,0.04148787533772309],[127,35,75,0.03939425231473675],[127,35,76,0.037423715292653315],[127,35,77,0.035555354800511606],[127,35,78,0.03376665893785462],[127,35,79,0.032033900332335496],[127,36,64,0.06334402440724692],[127,36,65,0.05915717648060999],[127,36,66,0.05518660670995351],[127,36,67,0.05143102956753549],[127,36,68,0.04788673474752948],[127,36,69,0.04455043163926672],[127,36,70,0.04141676328400583],[127,36,71,0.03847806258017236],[127,36,72,0.035724249528605284],[127,36,73,0.03314280242071176],[127,36,74,0.03071880237669848],[127,36,75,0.02843505046979173],[127,36,76,0.026272256510557583],[127,36,77,0.02420929841511736],[127,36,78,0.022223550945851114],[127,36,79,0.020291282492617486],[127,37,64,0.054585215831123746],[127,37,65,0.05021363529138741],[127,37,66,0.046057391323635385],[127,37,67,0.042115059514044276],[127,37,68,0.038382806435607375],[127,37,69,0.034857196534776376],[127,37,70,0.03153265362554582],[127,37,71,0.028401253230244387],[127,37,72,0.025452653429406905],[127,37,73,0.022674095201274107],[127,37,74,0.020050471652023512],[127,37,75,0.01756446537816331],[127,37,76,0.015196753052016947],[127,37,77,0.012926276181839686],[127,37,78,0.01073057687336954],[127,37,79,0.008586197308993333],[127,38,64,0.04588728636221402],[127,38,65,0.0413344279871308],[127,38,66,0.03699454901150109],[127,38,67,0.03286610877256155],[127,38,68,0.02894516764436683],[127,38,69,0.025228162561202357],[127,38,70,0.021709373165323162],[127,38,71,0.018380741835500786],[127,38,72,0.01523182863412154],[127,38,73,0.012249831799178785],[127,38,74,0.009419673188133519],[127,38,75,0.006724147930973992],[127,38,76,0.004144137408990261],[127,38,77,0.0016588845456953511],[127,38,78,-7.536697195784652E-4],[127,38,79,-0.0031164900072333593],[127,39,64,0.037193568676338606],[127,39,65,0.03246332135926893],[127,39,66,0.02794253733981821],[127,39,67,0.02362955633601705],[127,39,68,0.019520362096900362],[127,39,69,0.015611326528880202],[127,39,70,0.011896697728549784],[127,39,71,0.008368437562117935],[127,39,72,0.005016190642475555],[127,39,73,0.001827315627743983],[127,39,74,-0.0012130217348434212],[127,39,75,-0.004121694537625832],[127,39,76,-0.006917400464901416],[127,39,77,-0.009620388343060829],[127,39,78,-0.012252126571673553],[127,39,79,-0.014834914614875353],[127,40,64,0.028493616169724297],[127,40,65,0.02358976733342559],[127,40,66,0.01889079982466553],[127,40,67,0.01439502595373522],[127,40,68,0.010098419299171544],[127,40,69,0.005997346333515062],[127,40,70,0.002086133732513243],[127,40,71,-0.001643087019498001],[127,40,72,-0.005200407805078917],[127,40,73,-0.008598112042781839],[127,40,74,-0.01185058339745379],[127,40,75,-0.014974155715830523],[127,40,76,-0.017986904999802707],[127,40,77,-0.020908384348046434],[127,40,78,-0.023759302901684567],[127,40,79,-0.026561149922055348],[127,41,64,0.019780884220241053],[127,41,65,0.014707117865983086],[127,41,66,0.009832710807654037],[127,41,67,0.005156119500352263],[127,41,68,6.733965843676634E-4],[127,41,69,-0.0036190518916132406],[127,41,70,-0.007726724626944845],[127,41,71,-0.011657183968774312],[127,41,72,-0.015420093146650897],[127,41,73,-0.019027194777735946],[127,41,74,-0.022492231149267742],[127,41,75,-0.025830806919177128],[127,41,76,-0.029060195002070306],[127,41,77,-0.03219908652444411],[127,41,78,-0.03526728583664383],[127,41,79,-0.03185726405791567],[127,42,64,0.011052679931794498],[127,42,65,0.005812544998845595],[127,42,66,7.654595726766956E-4],[127,42,67,-0.004089746600005423],[127,42,68,-0.008756844219507147],[127,42,69,-0.01323936562483796],[127,42,70,-0.017542561432741858],[127,42,71,-0.021673573168131025],[127,42,72,-0.025641491782893176],[127,42,73,-0.02945735761319083],[127,42,74,-0.03313410222791377],[127,42,75,-0.03668643275615886],[127,42,76,-0.04013065940912654],[127,42,77,-0.03548002753262747],[127,42,78,-0.030223568340635543],[127,42,79,-0.02502147414824613],[127,43,64,0.0023124831613495047],[127,43,65,-0.0030906959757603944],[127,43,66,-0.00830776195580333],[127,43,67,-0.01333924632399491],[127,43,68,-0.018188650466847478],[127,43,69,-0.022859453062546883],[127,43,70,-0.027356612658584144],[127,43,71,-0.031686763676956615],[127,43,72,-0.035858308393755596],[127,43,73,-0.039881449404590215],[127,43,74,-0.04376816296083401],[127,43,75,-0.038985808350739774],[127,43,76,-0.033816156167879675],[127,43,77,-0.028650286870381063],[127,43,78,-0.023512795189098813],[127,43,79,-0.01842885287469391],[127,44,64,-0.006427421768245184],[127,44,65,-0.011990696724857362],[127,44,66,-0.017375270888394877],[127,44,67,-0.022580756626722407],[127,44,68,-0.027610310782942415],[127,44,69,-0.03246740214720362],[127,44,70,-0.037156688016251875],[127,44,71,-0.04168424240645217],[127,44,72,-0.04605769330549854],[127,44,73,-0.042176410408417006],[127,44,74,-0.03718873200891579],[127,44,75,-0.03216078437669538],[127,44,76,-0.02711413868168493],[127,44,77,-0.02207149784475873],[127,44,78,-0.017056474322364568],[127,44,79,-0.012093310187675867],[127,45,64,-0.015142996526811541],[127,45,65,-0.02086401229428758],[127,45,66,-0.02641409728702183],[127,45,67,-0.03179167060655498],[127,45,68,-0.03699949868787942],[127,45,69,-0.04204112488442922],[127,45,70,-0.04692093473247812],[127,45,71,-0.044876308554426626],[127,45,72,-0.04014809650482999],[127,45,73,-0.03534441486463311],[127,45,74,-0.030483157372989816],[127,45,75,-0.025583532019873484],[127,45,76,-0.020666000079608355],[127,45,77,-0.015752152404077395],[127,45,78,-0.010864523757790265],[127,45,79,-0.006026346093521541],[127,46,64,-0.02379517442765029],[127,46,65,-0.02967245672740653],[127,46,66,-0.035386873330503284],[127,46,67,-0.04093540434645279],[127,46,68,-0.04632042099650672],[127,46,69,-0.046936616429288834],[127,46,70,-0.042525455968996866],[127,46,71,-0.03801254655754823],[127,46,72,-0.033412524133668325],[127,46,73,-0.028741057490591783],[127,46,74,-0.024014972836028017],[127,46,75,-0.019252310514275683],[127,46,76,-0.014472314315959231],[127,46,77,-0.009695353953845093],[127,46,78,-0.004942781425101675],[127,46,79,-2.3672210965729537E-4],[127,47,64,-0.03234461053505925],[127,47,65,-0.03837752162632091],[127,47,66,-0.044255881253322485],[127,47,67,-0.048240972395215166],[127,47,68,-0.044188729601325076],[127,47,69,-0.040014050408361646],[127,47,70,-0.03573016815941715],[127,47,71,-0.031350498767037153],[127,47,72,-0.026888976793249503],[127,47,73,-0.022360319025974885],[127,47,74,-0.017780215514217983],[127,47,75,-0.01316544820993194],[127,47,76,-0.008533937541846824],[127,47,77,-0.0039047174143578478],[127,47,78,7.021607187287105E-4],[127,47,79,0.005265793911857948],[127,48,64,-0.04080894111134322],[127,48,65,-0.046996325500391144],[127,48,66,-0.045082934238929145],[127,48,67,-0.04128376691501424],[127,48,68,-0.037354428543164175],[127,48,69,-0.033308987275154925],[127,48,70,-0.029160822196457683],[127,48,71,-0.024923045733309026],[127,48,72,-0.020608923190077934],[127,48,73,-0.01623221496244202],[127,48,74,-0.011807441243595465],[127,48,75,-0.007350069242608678],[127,48,76,-0.002876623127950991],[127,48,77,0.0015952829064582279],[127,48,78,0.0060469878821603675],[127,48,79,0.010458902853245659],[127,49,64,-0.04518803441943739],[127,49,65,-0.04178644773796601],[127,49,66,-0.03824773697866365],[127,49,67,-0.034573077927726896],[127,49,68,-0.03077353588914367],[127,49,69,-0.026864027863369916],[127,49,70,-0.02285822711491657],[127,49,71,-0.01876904474954112],[127,49,72,-0.014609139614468757],[127,49,73,-0.010391345605937862],[127,49,74,-0.006129016042175715],[127,49,75,-0.0018362849796959837],[127,49,76,0.0024717544373014655],[127,49,77,0.006778954302297916],[127,49,78,0.011068098463383764],[127,49,79,0.015320970570522797],[127,50,64,-0.03838661473118082],[127,50,65,-0.03510397300550531],[127,50,66,-0.0316911292701602],[127,50,67,-0.028147138551463894],[127,50,68,-0.024482983046359826],[127,50,69,-0.020714634003792164],[127,50,70,-0.01685622204938926],[127,50,71,-0.012920580212085747],[127,50,72,-0.00891984971941235],[127,50,73,-0.004865997558425797],[127,50,74,-7.712452889539591E-4],[127,50,75,0.003351591165246647],[127,50,76,0.007488850790711758],[127,50,77,0.011625865645593455],[127,50,78,0.015746887519607],[127,50,79,0.019835102507190245],[127,51,64,-0.031883681688785546],[127,51,65,-0.028726562951301226],[127,51,66,-0.02544548305984405],[127,51,67,-0.022037256295824544],[127,51,68,-0.018512877390778],[127,51,69,-0.014889579039764147],[127,51,70,-0.01118212183206808],[127,51,71,-0.0074033999717481565],[127,51,72,-0.003565147085191984],[127,51,73,3.214521355410973E-4],[127,51,74,0.0042452451489151735],[127,51,75,0.008194690075970606],[127,51,76,0.01215752969327089],[127,51,77,0.016120560850056313],[127,51,78,0.02006949902268006],[127,51,79,0.023988937502664485],[127,52,64,-0.025706671637402728],[127,52,65,-0.022680914573945346],[127,52,66,-0.019536609218794375],[127,52,67,-0.01626824556074565],[127,52,68,-0.012886937726918775],[127,52,69,-0.00941138296232898],[127,52,70,-0.0058571482314290135],[127,52,71,-0.002237338887196451],[127,52,72,0.0014365928387653458],[127,52,73,0.005154139635559347],[127,52,74,0.00890513208780382],[127,52,75,0.012679233432231872],[127,52,76,0.016465536430285407],[127,52,77,0.020552048187478182],[127,52,78,0.027097901097458816],[127,52,79,0.03361450108204172],[127,53,64,-0.019876828550936226],[127,53,65,-0.01698753625818381],[127,53,66,-0.013984167452177556],[127,53,67,-0.010858843673255136],[127,53,68,-0.0076229136080237115],[127,53,69,-0.004296732013391303],[127,53,70,-8.968467071168301E-4],[127,53,71,0.0025632705022398464],[127,53,72,0.006072311437838028],[127,53,73,0.009620325689092974],[127,53,74,0.013198022341749601],[127,53,75,0.01847398162304642],[127,53,76,0.02505084554739216],[127,53,77,0.03162280757591156],[127,53,78,0.03817890697775202],[127,53,79,0.044707086180982625],[127,54,64,-0.01440957918940325],[127,54,65,-0.01166113219637148],[127,54,66,-0.00880205927551184],[127,54,67,-0.005822110233688367],[127,54,68,-0.002732988295285276],[127,54,69,4.4311745048242375E-4],[127,54,70,0.0036885115005027332],[127,54,71,0.006989200324423435],[127,54,72,0.010333876361965515],[127,54,73,0.01606027634602283],[127,54,74,0.02263258591781836],[127,54,75,0.029216055280890295],[127,54,76,0.0358023046614765],[127,54,77,0.04238234712959601],[127,54,78,0.04894627449747441],[127,54,79,0.05548305956337622],[127,55,64,-0.009314890138050777],[127,55,65,-0.006710969244307672],[127,55,66,-0.00399880377350811],[127,55,67,-0.0011658094905214224],[127,55,68,0.0017758349197363014],[127,55,69,0.004801951097150458],[127,55,70,0.007893542185039404],[127,55,71,0.013336850585630885],[127,55,72,0.019885424543136236],[127,55,73,0.026457408159206997],[127,55,74,0.033044618535041724],[127,55,75,0.039639493794671285],[127,55,76,0.04623447118543581],[127,55,77,0.052821488494984234],[127,55,78,0.059391608958115925],[127,55,79,0.06593476952801833],[127,56,64,-0.004597606380119442],[127,56,65,-0.0021412258743790415],[127,56,66,4.221041910841515E-4],[127,56,67,0.003107224587686549],[127,56,68,0.005901363358089396],[127,56,69,0.010315543114959776],[127,56,70,0.016818916279443465],[127,56,71,0.023363127472466813],[127,56,72,0.02993589319271043],[127,56,73,0.03652758405761758],[127,56,74,0.04313027289266244],[127,56,75,0.04973691112658958],[127,56,76,0.056340634469180806],[127,56,77,0.06293419850325185],[127,56,78,0.06950954448855516],[127,56,79,0.07605749535682983],[127,57,64,-2.577710129931868E-4],[127,57,65,0.0020486771558752004],[127,57,66,0.00446185369861974],[127,57,67,0.0070584746730651855],[127,57,68,0.013463207492174008],[127,57,69,0.019945081636224972],[127,57,70,0.026481403644426187],[127,57,71,0.03305501531834444],[127,57,72,0.039652996811331935],[127,57,73,0.04626550060057566],[127,57,74,0.052884718239619884],[127,57,75,0.05950398140643368],[127,57,76,0.0661169983876781],[127,57,77,0.07271722677581395],[127,57,78,0.0792973828026747],[127,57,79,0.08584908739594005],[127,58,64,0.0037090743231458848],[127,58,65,0.005863764845047555],[127,58,66,0.009946436921234448],[127,58,67,0.016278112171607156],[127,58,68,0.022718450486803543],[127,58,69,0.029235829861948802],[127,58,70,0.03580572958469842],[127,58,71,0.042409742401596055],[127,58,72,0.04903419051311092],[127,58,73,0.05566887767344974],[127,58,74,0.062305979490840845],[127,58,75,0.06893907362333111],[127,58,76,0.07556231117276738],[127,58,77,0.08216973019770574],[127,58,78,0.08875471189517825],[127,58,79,0.0953095796465267],[127,59,64,0.0073116087724159305],[127,59,65,0.012558913525723116],[127,59,66,0.018795297618689893],[127,59,67,0.0251593356743283],[127,59,68,0.031634935775919346],[127,59,69,0.03818800010317198],[127,59,70,0.04479212323852927],[127,59,71,0.05142756398452235],[127,59,72,0.058079781009647224],[127,59,73,0.06473810936345817],[127,59,74,0.07139458014761804],[127,59,75,0.07804288521260615],[127,59,76,0.08467748834095673],[127,59,77,0.09129288397952585],[127,59,78,0.09788300419614356],[127,59,79,0.1044407741651716],[127,60,64,0.014893905227021883],[127,60,65,0.021046632373742456],[127,60,66,0.02731004769563441],[127,60,67,0.03370558945811748],[127,60,68,0.040216043511212704],[127,60,69,0.046804850188346965],[127,60,70,0.053443693816854376],[127,60,71,0.06011143941607013],[127,60,72,0.06679259565588756],[127,60,73,0.07347592292747371],[127,60,74,0.08015318899505158],[127,60,75,0.08681807426593262],[127,60,76,0.09346522829239248],[127,60,77,0.10008947870585905],[127,60,78,0.10668519338205956],[127,60,79,0.11324579625046417],[127,61,64,0.02303338752293002],[127,61,65,0.029208171321092345],[127,61,66,0.03549727076459402],[127,61,67,0.041923360877117836],[127,61,68,0.04846805347816475],[127,61,69,0.05509237956743343],[127,61,70,0.06176612017556555],[127,61,71,0.06846671337176598],[127,61,72,0.0751776528951484],[127,61,73,0.08188703557037351],[127,61,74,0.08858626014795],[127,61,75,0.09526887976503556],[127,61,76,0.10192960978610308],[127,61,77,0.10856349235677173],[127,61,78,0.11516521858945673],[127,61,79,0.1217286089014614],[127,62,64,0.03085820766032022],[127,62,65,0.037053123588919004],[127,62,66,0.04336646921885127],[127,62,67,0.04982191826888712],[127,62,68,0.056399876620997255],[127,62,69,0.06305905454128863],[127,62,70,0.06976736834625782],[127,62,71,0.07650082317803614],[127,62,72,0.08324185610275611],[127,62,73,0.08997783106187104],[127,62,74,0.09669968847612559],[127,62,75,0.1034007518465178],[127,62,76,0.11007569324918932],[127,62,77,0.11671965918415138],[127,62,78,0.12332755781217952],[127,62,79,0.12989350820535236],[127,63,64,0.03838087591145787],[127,63,65,0.044593919207397456],[127,63,66,0.050929845585727815],[127,63,67,0.057413083841537094],[127,63,68,0.06402282133173642],[127,63,69,0.07071556767135435],[127,63,70,0.0774574420933347],[127,63,71,0.08422303728528904],[127,63,72,0.09099371586974324],[127,63,73,0.09775606118862812],[127,63,74,0.10450048533797301],[127,63,75,0.11121999693459694],[127,63,76,0.11790913064026994],[127,63,77,0.12456304002281826],[127,63,78,0.13117675489909067],[127,63,79,0.13774460388695065],[127,64,64,0.04561667638439744],[127,64,65,0.051845626712736334],[127,64,66,0.05820209220153625],[127,64,67,0.06471101465034818],[127,64,68,0.07135036748244332],[127,64,69,0.07807460421300624],[127,64,70,0.08484813919502357],[127,64,71,0.09164419742801848],[127,64,72,0.09844307308934938],[127,64,73,0.1052305442105444],[127,64,74,0.11199644657752039],[127,64,75,0.11873340946257886],[127,64,76,0.1254357553327998],[127,64,77,0.13209856522644406],[127,64,78,0.13871691104737682],[127,64,79,0.14528525560272498],[127,65,64,0.05258350559620048],[127,65,65,0.05882577613968532],[127,65,66,0.06520020190916337],[127,65,67,0.07173200444613513],[127,65,68,0.07839796105943003],[127,65,69,0.08515062849905546],[127,65,70,0.09195282642989919],[127,65,71,0.09877647749284885],[127,65,72,0.10560083588808276],[127,65,73,0.11241087336317615],[127,65,74,0.11919582580493168],[127,65,75,0.12594790315794213],[127,65,76,0.13266116492457414],[127,65,77,0.1393305630428745],[127,65,78,0.1459511534920577],[127,65,79,0.15251747754517242],[127,66,64,0.05930173432186542],[127,66,65,0.06555420477775438],[127,66,66,0.07194330127098562],[127,66,67,0.07849430791244716],[127,66,68,0.0851828309368761],[127,66,69,0.09195969182345404],[127,66,70,0.09878623482058095],[127,66,71,0.10563316063385977],[127,66,72,0.11247873191190377],[127,66,73,0.11930713686963869],[127,66,74,0.1261070143566856],[127,66,75,0.13287014319928753],[127,66,76,0.13959029817252114],[127,66,77,0.14626227449781398],[127,66,78,0.15288108231032432],[127,66,79,0.1594413121069516],[127,67,64,0.06579409335984852],[127,67,65,0.07205292635113306],[127,67,66,0.0784525069793429],[127,67,67,0.08501798799558988],[127,67,68,0.09172382851152242],[127,67,69,0.09851926255733343],[127,67,70,0.10536427586702328],[127,67,71,0.112228435355081],[127,67,72,0.1190890766598269],[127,67,73,0.12592965010973442],[127,67,74,0.13273822852027012],[127,67,75,0.1395061797478303],[127,67,76,0.1462270064536061],[127,67,77,0.15289535506629728],[127,67,78,0.1595061954798064],[127,67,79,0.16605417258578664],[127,68,64,0.07208558385656433],[127,68,65,0.07834602428634341],[127,68,66,0.0847508061528393],[127,68,67,0.09132478703905267],[127,68,68,0.09804129092923858],[127,68,69,0.10484807924062532],[127,68,70,0.11170387951582698],[127,68,71,0.11857721129820076],[127,68,72,0.1254445585809695],[127,68,73,0.1322887006250227],[127,68,74,0.13909720464815625],[127,68,75,0.14586108340668907],[127,68,76,0.1525736202156081],[127,68,77,0.15922936348821964],[127,68,78,0.1658232924220563],[127,68,79,0.1723501550199209],[127,69,64,0.07772917732866988],[127,69,65,0.08445956375798837],[127,69,66,0.09086295540785258],[127,69,67,0.09743801681582484],[127,69,68,0.10415692321330576],[127,69,69,0.11096602220478023],[127,69,70,0.11782284970695552],[127,69,71,0.12469495090822989],[127,69,72,0.13155803748528977],[127,69,73,0.1383943029305072],[127,69,74,0.14519089958890552],[127,69,75,0.15193858052129747],[127,69,76,0.1586305088347993],[127,69,77,0.16526123665591155],[127,69,78,0.17182585546607249],[127,69,79,0.1783193190803991],[127,70,64,0.08275820780626461],[127,70,65,0.09040554718823894],[127,70,66,0.09679989870776597],[127,70,67,0.10336746005024063],[127,70,68,0.11007922906209658],[127,70,69,0.11688016749083063],[127,70,70,0.12372666751591403],[127,70,71,0.13058536555633196],[127,70,72,0.13743128261930063],[127,70,73,0.1442461223494018],[127,70,74,0.1510167304765163],[127,70,75,0.1577337188786941],[127,70,76,0.16439025700032014],[127,70,77,0.1709810328992762],[127,70,78,0.1775013857405663],[127,70,79,0.18394661111348473],[127,71,64,0.08734462877245233],[127,71,65,0.09533664420686822],[127,71,66,0.10252576404072551],[127,71,67,0.10907750098336774],[127,71,68,0.11577287715316732],[127,71,69,0.1225556054307679],[127,71,70,0.1293810570057612],[127,71,71,0.13621506881324116],[127,71,72,0.14303207010947394],[127,71,73,0.14981336591783262],[127,71,74,0.15654558113680886],[127,71,75,0.163219268620763],[127,71,76,0.169827684069092],[127,71,77,0.17636573009326534],[127,71,78,0.18282907137509313],[127,71,79,0.18921342238896152],[127,72,64,0.09152034563456646],[127,72,65,0.09949498472363195],[127,72,66,0.10733255709779381],[127,72,67,0.11452626108736948],[127,72,68,0.12119658694926212],[127,72,69,0.12795184357491737],[127,72,70,0.13474658698961767],[127,72,71,0.1415460120592358],[127,72,72,0.14832407352536078],[127,72,73,0.15506176239076566],[127,72,74,0.1617455415231959],[127,72,75,0.16836594386754528],[127,72,76,0.17491633618439936],[127,72,77,0.18139185076920714],[127,72,78,0.1877884871524148],[127,72,79,0.19410238534198368],[127,73,64,0.09531587749116777],[127,73,65,0.10326746312863262],[127,73,66,0.11108203699946279],[127,73,67,0.118727338777837],[127,73,68,0.1262238110957671],[127,73,69,0.13303087537651342],[127,73,70,0.13978630711410459],[127,73,71,0.1465425983327364],[127,73,72,0.15327336124547228],[127,73,73,0.1599593509507676],[127,73,74,0.16658690313729502],[127,73,75,0.17314653209000966],[127,73,76,0.17963169197665135],[127,73,77,0.1860377039355131],[127,73,78,0.19236085103627845],[127,73,79,0.19859764275127714],[127,74,64,0.09876140501253913],[127,74,65,0.10668405672540027],[127,74,66,0.11447021735301813],[127,74,67,0.12208902227043751],[127,74,68,0.1295616007516341],[127,74,69,0.1369337701850457],[127,74,70,0.14423893474014862],[127,74,71,0.15117085656769247],[127,74,72,0.15784761440440753],[127,74,73,0.1644757453265016],[127,74,74,0.17104147069330314],[127,74,75,0.17753525353562166],[127,74,76,0.18395056878391822],[127,74,77,0.1902828359677742],[127,74,78,0.19652851650864098],[127,74,79,0.20268437730107247],[127,75,64,0.10188786450716684],[127,75,65,0.10977553793633789],[127,75,66,0.11752759431673615],[127,75,67,0.12511485631847022],[127,75,68,0.13255891777076892],[127,75,69,0.13990523669621316],[127,75,70,0.14718699281359163],[127,75,71,0.15442630184408163],[127,75,72,0.16163608254494632],[127,75,73,0.1685813596514899],[127,75,74,0.17508183884279255],[127,75,75,0.1815070895823122],[127,75,76,0.1878505021624339],[127,75,77,0.19410745957330874],[127,75,78,0.20027444810496325],[127,75,79,0.20634832971030856],[127,76,64,0.1047280877976093],[127,76,65,0.11257460100730486],[127,76,66,0.12028658453011772],[127,76,67,0.1278368418059633],[127,76,68,0.13524717996319188],[127,76,69,0.142562158073971],[127,76,70,0.14981434027463972],[127,76,71,0.15702547711366707],[127,76,72,0.1642083129974709],[127,76,73,0.17136825331610936],[127,76,74,0.17850488741797274],[127,76,75,0.18503708017751905],[127,76,76,0.19130909888294298],[127,76,77,0.19749186108135255],[127,76,78,0.20358168046989897],[127,76,79,0.2095753058375676],[127,77,64,0.1073179873692567],[127,77,65,0.11511703417796448],[127,77,66,0.12278267975882877],[127,77,67,0.13028999105637867],[127,77,68,0.1376607154180958],[127,77,69,0.14493794807056556],[127,77,70,0.15215323264786035],[127,77,71,0.15932769755877219],[127,77,72,0.166473782704947],[127,77,73,0.17359683266804765],[127,77,74,0.18069655265830176],[127,77,75,0.1877683239260517],[127,77,76,0.19430336372246595],[127,77,77,0.2004157864127601],[127,77,78,0.20643276134699665],[127,77,79,0.21235067325007845],[127,78,64,0.10969778609348445],[127,78,65,0.11744293664028549],[127,78,66,0.12505564642395278],[127,78,67,0.1325135052042534],[127,78,68,0.13983791230480624],[127,78,69,0.14706992624198373],[127,78,70,0.1542396649273869],[127,78,71,0.16136738458789587],[127,78,72,0.16846510408498097],[127,78,73,0.1755381035571035],[127,78,74,0.18258629385329397],[127,78,75,0.189605453610328],[127,78,76,0.19658833120801714],[127,78,77,0.20285780618813273],[127,78,78,0.2088091790088425],[127,78,79,0.21465884782553127],[127,79,64,0.11189262707546158],[127,79,65,0.1195773929329683],[127,79,66,0.12713047614935066],[127,79,67,0.13453223301464962],[127,79,68,0.14180342630934578],[127,79,69,0.1489825120794438],[127,79,70,0.15609777977843156],[127,79,71,0.1631683622706905],[127,79,72,0.17020573723717758],[127,79,73,0.17721511169872714],[127,79,74,0.18419668635194936],[127,79,75,0.19114679676868349],[127,79,76,0.19805892886383875],[127,79,77,0.20479822560813637],[127,79,78,0.21069226871374971],[127,79,79,0.21648226414663888],[127,80,64,0.11385570875368971],[127,80,65,0.1214737998694788],[127,80,66,0.1289614799487835],[127,80,67,0.1363021631389292],[127,80,68,0.14351572542837068],[127,80,69,0.15063747267802147],[127,80,70,0.15769344070331248],[127,80,71,0.1647013305250682],[127,80,72,0.17167187231299394],[127,80,73,0.178610081934705],[127,80,74,0.18551640707168124],[127,80,75,0.19238776018867407],[127,80,76,0.19921843596623706],[127,80,77,0.2060009111248254],[127,80,78,0.21206934756012777],[127,80,79,0.21780219238385723],[127,81,64,0.11553709887758566],[127,81,65,0.12308240492865372],[127,81,66,0.13049978390999767],[127,81,67,0.137776038403221],[127,81,68,0.14492995225487793],[127,81,69,0.15199316630532744],[127,81,70,0.15898902651607147],[127,81,71,0.1659334444595625],[127,81,72,0.17283611565100113],[127,81,73,0.17970164039761044],[127,81,74,0.18653054441964],[127,81,75,0.1933201967902346],[127,81,76,0.20006562303228476],[127,81,77,0.20676021149725662],[127,81,78,0.21293280753128055],[127,81,79,0.21860489214969944],[127,82,64,0.11690283474553168],[127,82,65,0.1243693494358854],[127,82,66,0.1317121075192096],[127,82,67,0.1389216427094658],[127,82,68,0.14601548373317788],[127,82,69,0.15302113929023123],[127,82,70,0.15995883884292494],[127,82,71,0.1668423231068585],[127,82,72,0.17367991420287326],[127,82,73,0.1804754984019738],[127,82,74,0.18722941902499743],[127,82,75,0.19393927731898794],[127,82,76,0.2006006393906101],[127,82,77,0.2072076475314859],[127,82,78,0.21327918315654573],[127,82,79,0.21888257924614452],[127,83,64,0.1179321426047302],[127,83,65,0.125313916754029],[127,83,66,0.13257806981948966],[127,83,67,0.1397191980291115],[127,83,68,0.1467534524368158],[127,83,69,0.15370380347004536],[127,83,70,0.160586965390662],[127,83,71,0.1674141253625721],[127,83,72,0.17419186769166142],[127,83,73,0.1809230206490871],[127,83,74,0.18760742375118847],[127,83,75,0.19424261359723505],[127,83,76,0.20082442659246436],[127,83,77,0.20734751710655341],[127,83,78,0.21310918042080754],[127,83,79,0.21863317076265096],[127,84,64,0.11861489803881416],[127,84,65,0.12590601817877123],[127,84,66,0.1330877286382601],[127,84,67,0.14015898840948918],[127,84,68,0.14713448723761438],[127,84,69,0.15403232367598957],[127,84,70,0.16086534208925848],[127,84,71,0.16764181182267188],[127,84,72,0.17436621195184998],[127,84,73,0.18103994828708478],[127,84,74,0.1876620008112875],[127,84,75,0.19422949992769423],[127,84,76,0.20073823008879826],[127,84,77,0.2068934854453409],[127,84,78,0.21242765132669303],[127,84,79,0.21785999677058465],[127,85,64,0.11894933495958095],[127,85,65,0.12614392410297603],[127,85,66,0.13323936032683695],[127,85,67,0.14023921823569396],[127,85,68,0.14715668032176593],[127,85,69,0.15400472183254518],[127,85,70,0.16079202020736333],[127,85,71,0.16752359804464573],[127,85,72,0.174201478309247],[127,85,73,0.18082528092969782],[127,85,74,0.18739275925605525],[127,85,75,0.19390027501706192],[127,85,76,0.2003049184042865],[127,85,77,0.20581798944758029],[127,85,78,0.21124351188621782],[127,85,79,0.21657147739110888],[127,86,64,0.11894001093021746],[127,86,65,0.12603224820947986],[127,86,66,0.1330374877308969],[127,86,67,0.1399641123435289],[127,86,68,0.14682378793614548],[127,86,69,0.15362420474913496],[127,86,70,0.16036964512131793],[127,86,71,0.16706160542407705],[127,86,72,0.17369933461628462],[127,86,73,0.18028032259240742],[127,86,74,0.1868007370641017],[127,86,75,0.19325580785725116],[127,86,76,0.19888128005443384],[127,86,77,0.20426645278295488],[127,86,78,0.20956960272903685],[127,86,79,0.2147807653362801],[127,87,64,0.11859603597410026],[127,87,65,0.12558019188289274],[127,87,66,0.13249116355114823],[127,87,67,0.13934226503432132],[127,87,68,0.14614367172391873],[127,87,69,0.15289772218503375],[127,87,70,0.15960415295325378],[127,87,71,0.16626071545112714],[127,87,72,0.1728636131742318],[127,87,73,0.17940789616832198],[127,87,74,0.18588781177878191],[127,87,75,0.1917008090855802],[127,87,76,0.19701076753353713],[127,87,77,0.2022544240416521],[127,87,78,0.20742249157195203],[127,87,79,0.21250535402236626],[127,88,64,0.11792957148768017],[127,88,65,0.12480005549923551],[127,88,66,0.131612515730291],[127,88,67,0.13838524453290216],[127,88,68,0.14512698701812957],[127,88,69,0.15183476130270193],[127,88,70,0.1585036908581965],[127,88,71,0.16512763271113187],[127,88,72,0.17169953041365746],[127,88,73,0.17821173075034868],[127,88,74,0.1843579710076499],[127,88,75,0.18956017405352588],[127,88,76,0.19471028695152243],[127,88,77,0.19980043752699772],[127,88,78,0.20482221684700763],[127,88,79,0.20976665135265302],[127,89,64,0.1169546053772526],[127,89,65,0.12370602275697445],[127,89,66,0.13041556101488],[127,89,67,0.13710645895521562],[127,89,68,0.1437861240048759],[127,89,69,0.15044638319056688],[127,89,70,0.1570777663339869],[127,89,71,0.16367016162030665],[127,89,72,0.1702131028686878],[127,89,73,0.17669602581189606],[127,89,74,0.18199250911619477],[127,89,75,0.18701928827486217],[127,89,76,0.19199920855537908],[127,89,77,0.1969258491229064],[127,89,78,0.20179197183637046],[127,89,79,0.20658951926697772],[127,90,64,0.1156860090743162],[127,90,65,0.12231322375087675],[127,90,66,0.12891529238562266],[127,90,67,0.13552028940852445],[127,90,68,0.14213440724054177],[127,90,69,0.14874450673038705],[127,90,70,0.1553366305479482],[127,90,71,0.16189670153826027],[127,90,72,0.1684107636661474],[127,90,73,0.17437263852673826],[127,90,74,0.1792541123891104],[127,90,75,0.18409752116224437],[127,90,76,0.18889924769082445],[127,90,77,0.19365458619368936],[127,90,78,0.1983577287097859],[127,90,79,0.20300177915519615],[127,91,64,0.11413888165066971],[127,91,65,0.12063708205902146],[127,91,66,0.12712704562486338],[127,91,67,0.13364149543297513],[127,91,68,0.14018555860841078],[127,91,69,0.14674144470478737],[127,91,70,0.15329090031878845],[127,91,71,0.15981596457199934],[127,91,72,0.166299183456032],[127,91,73,0.17147163935882667],[127,91,74,0.17616156588834436],[127,91,75,0.1808162270445484],[127,91,76,0.185434232581368],[127,91,77,0.19001281031085912],[127,91,78,0.1945478019049403],[127,91,79,0.19903368323170328],[127,92,64,0.11232818585127763],[127,92,65,0.118692950712217],[127,92,66,0.12506614989455078],[127,92,67,0.13148489760743687],[127,92,68,0.13795342842796016],[127,92,69,0.144449696686645],[127,92,70,0.1509514230606569],[127,92,71,0.15743692008089513],[127,92,72,0.16370784738583247],[127,92,73,0.16823932890080492],[127,92,74,0.17273533448915918],[127,92,75,0.17719848134827137],[127,92,76,0.18162975722201039],[127,92,77,0.1860284916866744],[127,92,78,0.1903923503341012],[127,92,79,0.1947173519693278],[127,93,64,0.11026868048774797],[127,93,65,0.11649604154141494],[127,93,66,0.12274786682922967],[127,93,67,0.12906534178244042],[127,93,68,0.13545199908266187],[127,93,69,0.14188200292116776],[127,93,70,0.14832938868604306],[127,93,71,0.15476896960628925],[127,93,72,0.16035636425324148],[127,93,73,0.16469489160045722],[127,93,74,0.168997218101261],[127,93,75,0.1732686741305183],[127,93,76,0.17751271780357136],[127,93,77,0.1817308942739402],[127,93,78,0.1859228179407549],[127,93,79,0.19008617769203806],[127,94,64,0.10797515328633535],[127,94,65,0.11406165205081636],[127,94,66,0.1201876223049157],[127,94,67,0.12639794906708626],[127,94,68,0.1326956652076077],[127,94,69,0.13905166310223455],[127,94,70,0.14543669217390826],[127,94,71,0.15182235568168279],[127,94,72,0.15670962510949735],[127,94,73,0.16085840538206067],[127,94,74,0.16496983700692505],[127,94,75,0.16905195901191372],[127,94,76,0.17311073119489506],[127,94,77,0.17714997056637086],[127,94,78,0.18117131216777246],[127,94,79,0.18517419442680838],[127,95,64,0.10546295796118514],[127,95,65,0.11140569364175176],[127,95,66,0.11740153472564618],[127,95,67,0.12349865538459218],[127,95,68,0.12969979417643895],[127,95,69,0.13597312365664835],[127,95,70,0.14228655023898137],[127,95,71,0.14860880772984603],[127,95,72,0.15278555774476604],[127,95,73,0.1567501722391577],[127,95,74,0.1606759450909503],[127,95,75,0.1645735556963765],[127,95,76,0.16845143411570226],[127,95,77,0.17231566520518976],[127,95,78,0.17616991993532732],[127,95,79,0.18001541411705718],[127,96,64,0.10274885898396012],[127,96,65,0.10854552471291543],[127,96,66,0.11440724337287227],[127,96,67,0.12038504412050259],[127,96,68,0.12648157034568458],[127,96,69,0.1326628368812168],[127,96,70,0.13889437528536788],[127,96,71,0.14475729427966585],[127,96,72,0.1486015605596129],[127,96,73,0.1523898503807176],[127,96,74,0.1561375688964989],[127,96,75,0.1598579043945414],[127,96,76,0.16356166173180595],[127,96,77,0.1672571265645908],[127,96,78,0.17094996076118565],[127,96,79,0.17464312930188067],[127,97,64,0.0998521872436102],[127,97,65,0.10550109188473422],[127,97,66,0.1112250400872484],[127,97,67,0.11707747511710187],[127,97,68,0.1230611262523645],[127,97,69,0.12914039502671348],[127,97,70,0.13527890959130262],[127,97,71,0.14049127914287918],[127,97,72,0.14417341241824644],[127,97,73,0.14779538569358902],[127,97,74,0.1513749705895085],[127,97,75,0.1549276705889048],[127,97,76,0.15846650449679234],[127,97,77,0.1620018255511139],[127,97,78,0.16554117668784515],[127,97,79,0.1690891823664697],[127,98,64,0.09679630953548296],[127,98,65,0.10229638234021253],[127,98,66,0.10787930729852677],[127,98,67,0.1136005130180644],[127,98,68,0.11946296371845642],[127,98,69,0.1254299421907633],[127,98,70,0.13146362245308704],[127,98,71,0.13598222949280106],[127,98,72,0.1395139570534149],[127,98,73,0.14298174044841094],[127,98,74,0.14640543305511158],[127,98,75,0.14980259869407891],[127,98,76,0.15318824215265459],[127,98,77,0.15657458091233953],[127,98,78,0.1599708587126813],[127,98,79,0.16338320147194166],[127,99,64,0.09361041458382126],[127,99,65,0.0989611900380356],[127,99,66,0.10440026518360158],[127,99,67,0.10998465773519875],[127,99,68,0.11571766758990351],[127,99,69,0.12156186666483408],[127,99,70,0.12747837281126126],[127,99,71,0.1312366898030863],[127,99,72,0.13463155986268438],[127,99,73,0.13795941732790723],[127,99,74,0.14124186547941703],[127,99,75,0.1444982132718034],[127,99,76,0.14774515388297024],[127,99,77,0.1509964904051484],[127,99,78,0.15426290944515758],[127,99,79,0.15755180327352028],[127,100,64,0.09033161808766155],[127,100,65,0.09553319833783346],[127,100,66,0.10082603051716647],[127,100,67,0.10626837959631212],[127,100,68,0.11186391463033588],[127,100,69,0.11757477618100852],[127,100,70,0.12288768109728113],[127,100,71,0.12625492303669142],[127,100,72,0.1295283350967617],[127,100,73,0.13273277699939262],[127,100,74,0.13589122789281086],[127,100,75,0.13902436656124983],[127,100,76,0.14215020368970438],[127,100,77,0.14528376722677983],[127,100,78,0.148436841742901],[127,100,79,0.15161776253817094],[127,101,64,0.08700440534936778],[127,101,65,0.09205734873180252],[127,101,66,0.09720191326668043],[127,101,67,0.1024973440191118],[127,101,68,0.10794762922016969],[127,101,69,0.11351459288781665],[127,101,70,0.11776749724163654],[127,101,71,0.12103192212233618],[127,101,72,0.12420117336491036],[127,101,73,0.12730106395494054],[127,101,74,0.13035553769365393],[127,101,75,0.13338620879828067],[127,101,76,0.13641195899195022],[127,101,77,0.13944859325085956],[127,101,78,0.1425085552173059],[127,101,79,0.14560070313114437],[127,102,64,0.08364529061250736],[127,102,65,0.08854997279312589],[127,102,66,0.09354408838723677],[127,102,67,0.09868765199632397],[127,102,68,0.10398488745726693],[127,102,69,0.10911604172759465],[127,102,70,0.11241605800399007],[127,102,71,0.11559386450195967],[127,102,72,0.11867719299271198],[127,102,73,0.12169241731460938],[127,102,74,0.12466400685130252],[127,102,75,0.12761404075957664],[127,102,76,0.1305617843803223],[127,102,77,0.13352332909475656],[127,102,78,0.13651129671831266],[127,102,79,0.13953460935840292],[127,103,64,0.08024498007458379],[127,103,65,0.085001323938236],[127,103,66,0.08984250812357403],[127,103,67,0.09482913283576255],[127,103,68,0.09996558228826041],[127,103,69,0.10365886319600988],[127,103,70,0.10688613398944945],[127,103,71,0.10999347409432919],[127,103,72,0.11300883547200348],[127,103,73,0.11595874550359916],[127,103,74,0.11886774810304214],[127,103,75,0.12175790919179223],[127,103,76,0.12464838803508459],[127,103,77,0.12755507576073072],[127,103,78,0.13049030220469207],[127,103,79,0.13346261205471388],[127,104,64,0.0767917314748065],[127,104,65,0.08139937060261662],[127,104,66,0.0860850858148253],[127,104,67,0.09090989361352986],[127,104,68,0.0947521179454287],[127,104,69,0.09806483014975219],[127,104,70,0.10123299956820159],[127,104,71,0.10428537606720593],[127,104,72,0.10724977962481923],[127,104,73,0.11015248231151477],[127,104,74,0.11301765535719122],[127,104,75,0.11586688301214307],[127,104,76,0.11871874472558579],[127,104,77,0.1215884669829407],[127,104,78,0.12448764596298989],[127,104,79,0.1274240420001873],[127,105,64,0.07327449551208268],[127,105,65,0.07773290211385746],[127,105,66,0.08207784428383161],[127,105,67,0.08570119903305477],[127,105,68,0.08912927477246722],[127,105,69,0.09238981506918693],[127,105,70,0.0955117521867459],[127,105,71,0.09852355192253519],[127,105,72,0.10145255428233924],[127,105,73,0.10432437850377459],[127,105,74,0.107162394300758],[127,105,75,0.10998726101603092],[127,105,76,0.11281653618472703],[127,105,77,0.11566435483001891],[127,105,78,0.11854118063257338],[127,105,79,0.1214536299408786],[127,106,64,0.06894398858130385],[127,106,65,0.07278449199434647],[127,106,66,0.0765235668332153],[127,106,67,0.08008996272749],[127,106,68,0.08346863129537936],[127,106,69,0.0866873854733497],[127,106,70,0.08977489608787284],[127,106,71,0.0927590703933279],[127,106,72,0.09566643465875618],[127,106,73,0.09852158096885844],[127,106,74,0.10134668003831764],[127,106,75,0.10416106165732933],[127,106,76,0.10698086420640332],[127,106,77,0.10981875450106782],[127,106,78,0.1126837190526829],[127,106,79,0.11558092766209026],[127,107,64,0.0635118913335714],[127,107,65,0.06728504574052324],[127,107,66,0.07096541598323519],[127,107,67,0.07448187439223052],[127,107,68,0.07781948701727122],[127,107,69,0.08100602747600309],[127,107,70,0.0840697090711808],[127,107,71,0.08703761814558825],[127,107,72,0.08993515714871869],[127,107,73,0.09278555048268851],[127,107,74,0.095609414803042],[127,107,75,0.09842439527674217],[127,107,76,0.10124486912798601],[127,107,77,0.10408171763353219],[127,107,78,0.10694216756359846],[127,107,79,0.10982970290396636],[127,108,64,0.05810609620154979],[127,108,65,0.061817270413951866],[127,108,66,0.06544502815557707],[127,108,67,0.06891854475618109],[127,108,68,0.072223042865931],[127,108,69,0.07538613687084582],[127,108,70,0.07843539149204079],[127,108,71,0.0813968295320064],[127,108,72,0.08429445185556098],[127,108,73,0.08714981746815371],[127,108,74,0.0899816851974818],[127,108,75,0.0928057183224883],[127,108,76,0.09563425333395068],[127,108,77,0.09847613385403976],[127,108,78,0.10133661058897703],[127,108,79,0.10421730804109547],[127,109,64,0.05275514594479397],[127,109,65,0.05641055175789963],[127,109,66,0.05999224707508266],[127,109,67,0.06342990679514428],[127,109,68,0.0667089544920248],[127,109,69,0.06985671963924789],[127,109,70,0.07289993912304339],[127,109,71,0.07586335677987947],[127,109,72,0.07876933401898475],[127,109,73,0.08163751673229311],[127,109,74,0.08448455978780553],[127,109,75,0.08732391025508678],[127,109,76,0.09016565036672894],[127,109,77,0.09301640107803485],[127,109,78,0.09587928694942116],[127,109,79,0.09875396294384134],[127,110,64,0.047459556763394],[127,110,65,0.051066322943233364],[127,110,66,0.05460907227572728],[127,110,67,0.05801819716226001],[127,110,68,0.06127937429558931],[127,110,69,0.06441952429095901],[127,110,70,0.06746439645823903],[127,110,71,0.07043727479339253],[127,110,72,0.07335868979749055],[127,110,73,0.07624618183122392],[127,110,74,0.07911411705839796],[127,110,75,0.0819735569017637],[127,110,76,0.08483218180714781],[127,110,77,0.0876942699880206],[127,110,78,0.09056073170284883],[127,110,79,0.09342919950341362],[127,111,64,0.04217169825424612],[127,111,65,0.04573756672730594],[127,111,66,0.04924898172500439],[127,111,67,0.05263731458042379],[127,111,68,0.05588856917631775],[127,111,69,0.059029142618862794],[127,111,70,0.06208365567550907],[127,111,71,0.0650737777125264],[127,111,72,0.06801804776743252],[127,111,73,0.07093174169184596],[127,111,74,0.07382678615010849],[127,111,75,0.07671172014789807],[127,111,76,0.0795917046570133],[127,111,77,0.08246858079829579],[127,111,78,0.08534097694465062],[127,111,79,0.08820446501177714],[127,112,64,0.036830256163144656],[127,112,65,0.04036228269618378],[127,112,66,0.043849812513030474],[127,112,67,0.04722555554351019],[127,112,68,0.050475963072339786],[127,112,69,0.05362680126048609],[127,112,70,0.056701411610995935],[127,112,71,0.05971966860225028],[127,112,72,0.06269791903835846],[127,112,73,0.06564896145909711],[127,112,74,0.06858206610021185],[127,112,75,0.0715030358043345],[127,112,76,0.07441430819566688],[127,112,77,0.07731509934858527],[127,112,78,0.08020158910171003],[127,112,79,0.08306714809607554],[127,113,64,0.03139438769569939],[127,113,65,0.03489842237833723],[127,113,66,0.03836877208942151],[127,113,67,0.04173992409125744],[127,113,68,0.0449989322715268],[127,113,69,0.048170828357903955],[127,113,70,0.05127751391031641],[127,113,71,0.05433686537902577],[127,113,72,0.05736280153311837],[127,113,73,0.06036538453234057],[127,113,74,0.06335095481172545],[127,113,75,0.06632229987975136],[127,113,76,0.06927885706595555],[127,113,77,0.07221695019354071],[127,113,78,0.07513006009673519],[127,113,79,0.07800912885266058],[127,114,64,0.02584504906161902],[127,114,65,0.02932557529650833],[127,114,66,0.03278432018734187],[127,114,67,0.036158030341309745],[127,114,68,0.03943453466152974],[127,114,69,0.042638029558496375],[127,114,70,0.04578881453809329],[127,114,71,0.048902559156229125],[127,114,72,0.05199050798482475],[127,114,73,0.05505971253320707],[127,114,74,0.05811328994811514],[127,114,75,0.061150708269645714],[127,114,76,0.06416809797897922],[127,114,77,0.06715858953705614],[127,114,78,0.0701126765815881],[127,114,79,0.0730186044238925],[127,115,64,0.020181037241249228],[127,115,65,0.02364107051689414],[127,115,66,0.02709236995697901],[127,115,67,0.030474434676379336],[127,115,68,0.03377604286776912],[127,115,69,0.03702045697685681],[127,115,70,0.04022621860655209],[127,115,71,0.043406590543193034],[127,115,72,0.046569907471812055],[127,115,73,0.04971994681351352],[127,115,74,0.0528563191409682],[127,115,75,0.05597487760560642],[127,115,76,0.059068145792618085],[127,115,77,0.062125763407666644],[127,115,78,0.06513494919224176],[127,115,79,0.06808098046367009],[127,116,64,0.014415304760643163],[127,116,65,0.017856347436043134],[127,116,66,0.021302751739054056],[127,116,67,0.024697245231762043],[127,116,68,0.02802971854676677],[127,116,69,0.03132240420270807],[127,116,70,0.0345919431366145],[127,116,71,0.03784901283076177],[127,116,72,0.041098830031108674],[127,116,73,0.044341666727992037],[127,116,74,0.047573378472375756],[127,116,75,0.050785944102206125],[127,116,76,0.05396801596027039],[127,116,77,0.05710547969757801],[127,116,78,0.06034375279302731],[127,116,79,0.06526504050664125],[127,117,64,0.008571552022458387],[127,117,65,0.01199360039823005],[127,117,66,0.015435944064264741],[127,117,67,0.018844973204436493],[127,117,68,0.02221183222782093],[127,117,69,0.025557631550424786],[127,117,70,0.028896987677021167],[127,117,71,0.03223784564486432],[127,117,72,0.03722169860866197],[127,117,73,0.04268666264831375],[127,117,74,0.048115566424335614],[127,117,75,0.05350032849570438],[127,117,76,0.058829836230498894],[127,117,77,0.06409061769021013],[127,117,78,0.06926751507612122],[127,117,79,0.07434435860618355],[127,118,64,0.0026811014273035137],[127,118,65,0.006082701425419814],[127,118,66,0.010476825341374302],[127,118,67,0.016347264691151418],[127,118,68,0.022150746525723797],[127,118,69,0.027909156796068896],[127,118,70,0.03363733099993206],[127,118,71,0.03934306172401169],[127,118,72,0.0450279010502289],[127,118,73,0.050687964203056886],[127,118,74,0.056314732726004575],[127,118,75,0.06189585552331743],[127,118,76,0.0674159461576682],[127,118,77,0.07285737485615927],[127,118,78,0.07820105374538357],[127,118,79,0.08169784859685077],[127,119,64,0.005492341196981864],[127,119,65,0.011494299588382759],[127,119,66,0.0174989399114844],[127,119,67,0.02346219326319645],[127,119,68,0.029379575989073703],[127,119,69,0.03527164074469064],[127,119,70,0.04115097962640004],[127,119,71,0.04702243234952759],[127,119,72,0.05288404335862221],[127,119,73,0.05872801385522242],[127,119,74,0.06454164664380818],[127,119,75,0.07030828176661266],[127,119,76,0.07600822097543883],[127,119,77,0.08161963917358585],[127,119,78,0.08596062175736725],[127,119,79,0.08867319590833173],[127,120,64,0.012562546656756485],[127,120,65,0.018607000427088842],[127,120,66,0.024669301521435157],[127,120,67,0.030709874915923637],[127,120,68,0.03672567305251481],[127,120,69,0.042735850802247906],[127,120,70,0.0487507216209397],[127,120,71,0.054772163831845126],[127,120,72,0.060794727218373194],[127,120,73,0.06680672857274135],[127,120,74,0.07279133372744245],[127,120,75,0.07872762368712531],[127,120,76,0.08459164257746017],[127,120,77,0.0903574252346134],[127,120,78,0.09311312006185485],[127,120,79,0.09566598379816757],[127,121,64,0.019837856499485513],[127,121,65,0.025908526194147345],[127,121,66,0.03201158278504538],[127,121,67,0.03811205109032684],[127,121,68,0.044208315357242366],[127,121,69,0.050318079181042315],[127,121,70,0.0564493744317198],[127,121,71,0.06260115930525567],[127,121,72,0.06876456616543236],[127,121,73,0.07492413281399568],[127,121,74,0.08105901436324904],[127,121,75,0.0871441729950402],[127,121,76,0.09315154300889623],[127,121,77,0.0978038571351184],[127,121,78,0.10027672892707366],[127,121,79,0.10267551072039707],[127,122,64,0.02734137220418196],[127,122,65,0.033421157574281615],[127,122,66,0.03954686709150161],[127,122,67,0.04568812654452721],[127,122,68,0.05184470381570267],[127,122,69,0.05803281044659374],[127,122,70,0.06425822664860267],[127,122,71,0.07051708111678212],[127,122,72,0.07679722907361763],[127,122,73,0.08307960870728537],[127,122,74,0.08933957285356649],[127,122,75,0.0955481928977168],[127,122,76,0.10167353200930437],[127,122,77,0.10513003279323069],[127,122,78,0.10744523348158114],[127,122,79,0.10969980075539111],[127,123,64,0.035091589174274164],[127,123,65,0.041162832948149194],[127,123,66,0.04729218738905362],[127,123,67,0.0534537753952555],[127,123,68,0.0596486577746604],[127,123,69,0.06589152722262395],[127,123,70,0.0721859744262257],[127,123,71,0.07852543623702761],[127,123,72,0.08489469036006536],[127,123,73,0.09127132394317579],[127,123,74,0.09762717262486495],[127,123,75,0.10392972674116455],[127,123,76,0.11014350154439821],[127,123,77,0.11243919843318001],[127,123,78,0.1146111471131262],[127,123,79,0.11673516287885835],[127,124,64,0.04310113936785494],[127,124,65,0.04914591877024323],[127,124,66,0.05525933703940632],[127,124,67,0.06141980942986809],[127,124,68,0.0676295594332144],[127,124,69,0.07390174872136414],[127,124,70,0.08023787082285543],[127,124,71,0.08662885125699885],[127,124,72,0.09305664319894791],[127,124,73,0.09949579312125094],[127,124,74,0.10591497271803221],[127,124,75,0.11227847357308245],[127,124,76,0.11759912656317748],[127,124,77,0.1197189375451804],[127,124,78,0.12176545356196335],[127,124,79,0.12377578951104548],[127,125,64,0.051375835711260705],[127,125,65,0.05737627837143194],[127,125,66,0.06345397254619146],[127,125,67,0.06959132859376546],[127,125,68,0.07579156748189446],[127,125,69,0.08206632208219881],[127,125,70,0.08841510800761143],[127,125,71,0.09482655684419652],[127,125,72,0.10128009548826122],[127,125,73,0.10774759211941594],[127,125,74,0.11419496490639396],[127,125,75,0.12058374970809979],[127,125,76,0.12494941794118467],[127,125,77,0.12695579310595279],[127,125,78,0.12889736947224173],[127,125,79,0.13081341371933886],[127,126,64,0.059914022059240964],[127,126,65,0.06585264300321977],[127,126,66,0.07187501199967287],[127,126,67,0.07796715748839342],[127,126,68,0.0841331037551698],[127,126,69,0.0903829702283413],[127,126,70,0.09671443592056883],[127,126,71,0.1031140850732087],[127,126,72,0.10955915177124223],[127,126,73,0.11601922843016581],[127,126,74,0.1224579340873992],[127,126,75,0.12883453860457253],[127,126,76,0.1322190739271427],[127,126,77,0.13413512768900138],[127,126,78,0.1359941292010155],[127,126,79,0.1378370273238841],[127,127,64,0.06870623097401682],[127,127,65,0.07456628743795835],[127,127,66,0.08051433156700842],[127,127,67,0.08653957019438178],[127,127,68,0.09264661516375186],[127,127,69,0.09884409842260274],[127,127,70,0.10512801944168938],[127,127,71,0.11148318152035708],[127,127,72,0.11788498279397354],[127,127,73,0.12430116889662096],[127,127,74,0.1306935430932189],[127,127,75,0.13701962987489968],[127,127,76,0.1393910564639579],[127,127,77,0.14124096716074322],[127,127,78,0.1430407922027946],[127,127,79,0.14483266064112946],[127,128,64,0.07773515146667714],[127,128,65,0.08350101230725776],[127,128,66,0.08935676222386395],[127,128,67,0.09529430560119463],[127,128,68,0.10131861304234227],[127,128,69,0.10743686157734317],[127,128,70,0.11364353600576349],[127,128,71,0.1199219339029022],[127,128,72,0.12624598428390396],[127,128,73,0.13258202619895326],[127,128,74,0.13889054300029405],[127,128,75,0.1445515087375419],[127,128,76,0.14644769866596188],[127,128,77,0.14825582787947145],[127,128,78,0.1500200732853877],[127,128,79,0.1517832245534005],[127,129,64,0.08697590873356445],[127,129,65,0.09263343524646879],[127,129,66,0.09838038880660592],[127,129,67,0.10421087530762072],[127,129,68,0.11012999193293825],[127,129,69,0.11614349426181671],[127,129,70,0.12224451549459897],[127,129,71,0.12841511894565627],[127,129,72,0.13462812644703234],[127,129,73,0.14084890536786626],[127,129,74,0.1470371099591676],[127,129,75,0.15149758403752683],[127,129,76,0.15337048154796418],[127,129,77,0.1551605273154663],[127,129,78,0.15691219601206477],[127,129,79,0.1586684155488783],[127,130,64,0.096396657827743],[127,130,65,0.10193359281650653],[127,130,66,0.10755715336489403],[127,130,67,0.11326316605678294],[127,130,68,0.11905662972369346],[127,130,69,0.12494190525252667],[127,130,70,0.13091092414476155],[127,130,71,0.13694476907180636],[127,130,72,0.14301549560459473],[127,130,73,0.14908791153625855],[127,130,74,0.1551213095139254],[127,130,75,0.15826785539199126],[127,130,76,0.16013975476101186],[127,130,77,0.16193397801170795],[127,130,78,0.1636947695058783],[127,130,79,0.16546468433584544],[127,131,64,0.1059594931300747],[127,131,65,0.11136585509422446],[127,131,66,0.1168537647109829],[127,131,67,0.12242033858375467],[127,131,68,0.12807027097731663],[127,131,69,0.13380653838759196],[127,131,70,0.1396199941279161],[127,131,71,0.1454909604389195],[127,131,72,0.15139102932181908],[127,131,73,0.15728482008160932],[127,131,74,0.1628362539366069],[127,131,75,0.16484348131022447],[127,131,76,0.16673440095138903],[127,131,77,0.16855296480385984],[127,131,78,0.17034268889263085],[127,131,79,0.17214526859607043],[127,132,64,0.11562154147046498],[127,132,65,0.12089001256408793],[127,132,66,0.12623276577902848],[127,132,67,0.1316478665156994],[127,132,68,0.13713952923881534],[127,132,69,0.1427093280744403],[127,132,70,0.1483471204185289],[127,132,71,0.15403263819603277],[127,132,72,0.15973725643380526],[127,132,73,0.1654257176065704],[127,132,74,0.16916785797619807],[127,132,75,0.17120453385684092],[127,132,76,0.17313163320764519],[127,132,77,0.1749920900220468],[127,132,78,0.1768282372749184],[127,132,79,0.17868045889738093],[127,133,64,0.12531466246120004],[127,133,65,0.1304395661695917],[127,133,66,0.13562943943979652],[127,133,67,0.14088305900968576],[127,133,68,0.14620404000283266],[127,133,69,0.15159254298131347],[127,133,70,0.1570375046013057],[127,133,71,0.16251821811261072],[127,133,72,0.16800605996417126],[127,133,73,0.17306069082592024],[127,133,74,0.1752824537703709],[127,133,75,0.17736120549581297],[127,133,76,0.17933787327859763],[127,133,77,0.1812539795414877],[127,133,78,0.18315027276945206],[127,133,79,0.18506542603953938],[127,134,64,0.1349290624982661],[127,134,65,0.1399037610445572],[127,134,66,0.1449323237455687],[127,134,67,0.15001406772468265],[127,134,68,0.15515197276835183],[127,134,69,0.16034486949720367],[127,134,70,0.16558093125900028],[127,134,71,0.17083923153835254],[127,134,72,0.17609141733011802],[127,134,73,0.17898991725636862],[127,134,74,0.1812529519391211],[127,134,75,0.18338205290145912],[127,134,76,0.18541660220566866],[127,134,77,0.18739635909986377],[127,134,78,0.18936014607281293],[127,134,79,0.19134460263369715],[127,135,64,0.14436261552954477],[127,135,65,0.14917951935672555],[127,135,66,0.15403769626374597],[127,135,67,0.15893689256440777],[127,135,68,0.16387949369698668],[127,135,69,0.16886317319951213],[127,135,70,0.173875574103297],[127,135,71,0.1788958287434459],[127,135,72,0.18236571578278837],[127,135,73,0.1848352945991651],[127,135,74,0.1871436553054839],[127,135,75,0.18932682044319976],[127,135,76,0.19142230556144038],[127,135,77,0.193467804486008],[127,135,78,0.19549993870500157],[127,135,79,0.19755307377512948],[127,136,64,0.1535279221042099],[127,136,65,0.15817880832472192],[127,136,66,0.16285722458055438],[127,136,67,0.16756329272508952],[127,136,68,0.1722989107585484],[127,136,69,0.17706083886630897],[127,136,70,0.18183647909066936],[127,136,71,0.1854542434256146],[127,136,72,0.18814272805097826],[127,136,73,0.19064812357892172],[127,136,74,0.19300198470717375],[127,136,75,0.1952384243969518],[127,136,76,0.19739281172096107],[127,136,77,0.19950052917635686],[127,136,78,0.20159579242937115],[127,136,79,0.20371053525914293],[127,137,64,0.1623530731575636],[127,137,65,0.16682931793389408],[127,137,66,0.17131853752869905],[127,137,67,0.1758212290170624],[127,137,68,0.1803389642510308],[127,137,69,0.18486788715945215],[127,137,70,0.18830273201604744],[127,137,71,0.19121316001768818],[127,137,72,0.1939247766663392],[127,137,73,0.19646368316320034],[127,137,74,0.19885953303211898],[127,137,75,0.20114425820560758],[127,137,76,0.20335084878385074],[127,137,77,0.20551218943752567],[127,137,78,0.2076599552444281],[127,137,79,0.20982356956263426],[127,138,64,0.1707827623366233],[127,138,65,0.1750754827217863],[127,138,66,0.17936613308315477],[127,138,67,0.18365563217799996],[127,138,68,0.18760913092238235],[127,138,69,0.19095773830708557],[127,138,70,0.19408449091075441],[127,138,71,0.19700347862136405],[127,138,72,0.19973451066868816],[127,138,73,0.2023018445528061],[127,138,74,0.20473295864739446],[127,138,75,0.20705737153830558],[127,138,76,0.20930551100558833],[127,138,77,0.21150763539724673],[127,138,78,0.2136928099764246],[127,138,79,0.21588794065107447],[127,139,64,0.17801914109868933],[127,139,65,0.18218730587086324],[127,139,66,0.18615518617956425],[127,139,67,0.18991542557213686],[127,139,68,0.1934608858207166],[127,139,69,0.19679042549516895],[127,139,70,0.19991050109203715],[127,139,71,0.20283397711509332],[127,139,72,0.2055789303488034],[127,139,73,0.20816748996215276],[127,139,74,0.21062471634269953],[127,139,75,0.21297752143191948],[127,139,76,0.21525363319664625],[127,139,77,0.2174806067281594],[127,139,78,0.21968488431091798],[127,139,79,0.22189090664769162],[127,140,64,0.18412530926639006],[127,140,65,0.18822128084518394],[127,140,66,0.192130094428249],[127,140,67,0.19584397492285477],[127,140,68,0.19935562711435878],[127,140,69,0.20266368130262286],[127,140,70,0.20577364514335342],[127,140,71,0.20869682937230422],[127,140,72,0.21144927898642377],[127,140,73,0.21405073423682408],[127,140,74,0.21652362398681416],[127,140,75,0.21889209387775518],[127,140,76,0.22118107162814357],[127,140,77,0.22341537166747735],[127,140,78,0.22561884117669387],[127,140,79,0.2278135494717648],[127,141,64,0.19025111881579396],[127,141,65,0.1942744394936072],[127,141,66,0.19812364121125248],[127,141,67,0.2017904214159057],[127,141,68,0.20526709110084393],[127,141,69,0.2085517118793413],[127,141,70,0.2116485095816476],[127,141,71,0.2145669295188388],[127,141,72,0.2173207048529002],[127,141,73,0.21992694741869953],[127,141,74,0.2224052631647371],[127,141,75,0.22477689429004036],[127,141,76,0.22706389005876587],[127,141,77,0.22928830817225734],[127,141,78,0.2314714484708763],[127,141,79,0.23363312062527408],[127,142,64,0.19634363710457653],[127,142,65,0.2002950312536316],[127,142,66,0.20408529610752732],[127,142,67,0.20770550227835508],[127,142,68,0.21114734734255838],[127,142,69,0.2144080070568332],[127,142,70,0.21749011419638722],[127,142,71,0.22040095641332438],[127,142,72,0.22315169148720046],[127,142,73,0.22575657642058214],[127,142,74,0.2282322121227747],[127,142,75,0.23059680535872004],[127,142,76,0.2328694495682209],[127,142,77,0.2350694260832144],[127,142,78,0.23721552718807848],[127,142,79,0.23932540238010458],[127,143,64,0.20233306292017306],[127,143,65,0.20621437910675422],[127,143,66,0.2099476436492241],[127,143,67,0.21352322068174473],[127,143,68,0.2169320002209149],[127,143,69,0.22016998461204657],[127,143,70,0.22323792614704924],[127,143,71,0.2261406800432054],[127,143,72,0.22888657606196525],[127,143,73,0.23148679422162421],[127,143,74,0.23395474588773837],[127,143,75,0.23630546148447104],[127,143,76,0.23855498602432343],[127,143,77,0.24071978360279883],[127,143,78,0.24281615194860534],[127,143,79,0.24485964805901833],[127,144,64,0.20817118612960653],[127,144,65,0.21198383295596143],[127,144,66,0.21566154357856562],[127,144,67,0.21919388182872415],[127,144,68,0.22257073625728324],[127,144,69,0.22578666144771808],[127,144,70,0.22884025595896829],[127,144,71,0.23149338708722023],[127,144,72,0.23386915573389863],[127,144,73,0.23613808905137812],[127,144,74,0.2382881981727891],[127,144,75,0.24030629717234406],[127,144,76,0.2421785044400774],[127,144,77,0.24389074803962663],[127,144,78,0.24542927434019074],[127,144,79,0.24678115924588123],[127,145,64,0.21382176592609944],[127,145,65,0.21756615013236513],[127,145,66,0.22118862233921183],[127,145,67,0.22467783109733253],[127,145,68,0.2280224691057645],[127,145,69,0.23070927160307778],[127,145,70,0.2329579458567871],[127,145,71,0.23511345814783344],[127,145,72,0.2371712265666737],[127,145,73,0.23912466950525554],[127,145,74,0.24096554619172966],[127,145,75,0.24268431579624114],[127,145,76,0.24427051481957684],[127,145,77,0.24571315246798447],[127,145,78,0.24700112371368232],[127,145,79,0.2481236397418085],[127,146,64,0.2192530560692817],[127,146,65,0.22292846042192557],[127,146,66,0.22649474484566154],[127,146,67,0.22993951103613305],[127,146,68,0.23258217514685622],[127,146,69,0.23461271152647956],[127,146,70,0.23654546662570577],[127,146,71,0.23838156643710162],[127,146,72,0.24012013720684453],[127,146,73,0.24175845750312325],[127,146,74,0.2432921428914858],[127,146,75,0.24471536347193132],[127,146,76,0.24602109448762818],[127,146,77,0.24720140017416223],[127,146,78,0.2482477509817404],[127,146,79,0.249151374271426],[127,147,64,0.22443720647557364],[127,147,65,0.22804170938825402],[127,147,66,0.23154950672109875],[127,147,67,0.23464238447935112],[127,147,68,0.23647119859555138],[127,147,69,0.23819013300199943],[127,147,70,0.2398054982259616],[127,147,71,0.24132196771800932],[127,147,72,0.2427425088388437],[127,147,73,0.2440683603850571],[127,147,74,0.24529905754593798],[127,147,75,0.24643250510215778],[127,147,76,0.24746509959858368],[127,147,77,0.24839190114841708],[127,147,78,0.24920685545521565],[127,147,79,0.2499030665739869],[127,148,64,0.22934973926475644],[127,148,65,0.23288017529200986],[127,148,66,0.23632579861605654],[127,148,67,0.23852696384198996],[127,148,68,0.24005181048436514],[127,148,69,0.24145891597742902],[127,148,70,0.24275778858183467],[127,148,71,0.24395675750893686],[127,148,72,0.24506271103817096],[127,148,73,0.24608089630289753],[127,148,74,0.24701478224749907],[127,148,75,0.24786598714296848],[127,148,76,0.24863427193477516],[127,148,77,0.24931760058654023],[127,148,78,0.2499122684771235],[127,148,79,0.2504130998082808],[127,149,64,0.23396909981373556],[127,149,65,0.23742106016459025],[127,149,66,0.2407558446831755],[127,149,67,0.2421153399862011],[127,149,68,0.2433372282842311],[127,149,69,0.24443456461583243],[127,149,70,0.24542013199990284],[127,149,71,0.24630596613399344],[127,149,72,0.24710289864001506],[127,149,73,0.24782017782530114],[127,149,74,0.24846516908719227],[127,149,75,0.2490431369387387],[127,149,76,0.24955711048405707],[127,149,77,0.2500078340257117],[127,149,78,0.25039380434459224],[127,149,79,0.25071139605660603],[127,150,64,0.23827628335558637],[127,150,65,0.24164415558097183],[127,150,66,0.2443488592058658],[127,150,67,0.2454169643900949],[127,150,68,0.2463390509743052],[127,150,69,0.24713085881241575],[127,150,70,0.24780846351765146],[127,150,71,0.24838759750440803],[127,150,72,0.24888299858717666],[127,150,73,0.2493078524542202],[127,150,74,0.24967333177667506],[127,150,75,0.2499882345278723],[127,150,76,0.25025872390276926],[127,150,77,0.2504881720450449],[127,150,78,0.2506771096113643],[127,150,79,0.25082328303026613],[127,151,64,0.24225453765226357],[127,151,65,0.24553158366682265],[127,151,66,0.24765915274313374],[127,151,67,0.248439938865726],[127,151,68,0.24906739645706436],[127,151,69,0.2495599387477257],[127,151,70,0.24993689100963565],[127,151,71,0.25021761118623204],[127,151,72,0.2504206463516765],[127,151,73,0.25056299969211676],[127,151,74,0.25065951140128145],[127,151,75,0.2507223566617322],[127,151,76,0.25076066366257216],[127,151,77,0.25078025438618756],[127,151,78,0.25078351068265947],[127,151,79,0.2507693679428819],[127,152,64,0.24588914226606096],[127,152,65,0.24906761387160303],[127,152,66,0.25069179133405173],[127,152,67,0.25119112989915426],[127,152,68,0.25153096760538957],[127,152,69,0.2517323219779044],[127,152,70,0.2518176645767641],[127,152,71,0.2518098473116085],[127,152,72,0.2517310715253989],[127,152,73,0.2516019842990614],[127,152,74,0.25144090599183794],[127,152,75,0.25126319277684195],[127,152,76,0.25108073767591255],[127,152,77,0.25090161334450073],[127,152,78,0.2507298596082934],[127,152,79,0.2505654185109059],[127,153,64,0.24916726495493258],[127,153,65,0.2522385560391702],[127,153,66,0.253450840896096],[127,153,67,0.25367620803095514],[127,153,68,0.25373704642335293],[127,153,69,0.253656852561166],[127,153,70,0.25346108274221896],[127,153,71,0.2531758938882168],[127,153,72,0.2528269321717946],[127,153,73,0.2524382653748283],[127,153,74,0.2520314635982185],[127,153,75,0.25162483265488583],[127,153,76,0.2512328041886548],[127,153,77,0.2508654862744648],[127,153,78,0.25052837797247285],[127,153,79,0.2502222510327458],[127,154,64,0.25207789572215367],[127,154,65,0.25503273031247514],[127,154,66,0.2559393724620878],[127,154,67,0.25589961174357617],[127,154,68,0.25569141579777066],[127,154,69,0.25534058171489254],[127,154,70,0.2548753349725586],[127,154,71,0.25432489605628045],[127,154,72,0.25371809752517227],[127,154,73,0.2530821608953038],[127,154,74,0.25244163854153606],[127,154,75,0.25181752549868897],[127,154,76,0.25122654572185094],[127,154,77,0.2506806170462213],[127,154,78,0.25018649877186],[127,154,79,0.24974562549107202],[127,155,64,0.25461185906124095],[127,155,65,0.2574405144189828],[127,155,66,0.2581593891222653],[127,155,67,0.25786443531320113],[127,155,68,0.2573982083090421],[127,155,69,0.25678857948934675],[127,155,70,0.2560662800342682],[127,155,71,0.25526330683435],[127,155,72,0.25441137861603946],[127,155,73,0.2535405673245934],[127,155,74,0.25267811051408906],[127,155,75,0.25184741014480727],[127,155,76,0.251067222837336],[127,155,77,0.25035104628322435],[127,155,78,0.24970670616698049],[127,155,79,0.24913614761685376],[127,156,64,0.25676190495153495],[127,156,65,0.25945446889744417],[127,156,66,0.26011167411017916],[127,156,67,0.2595722400699361],[127,156,68,0.2588596815563613],[127,156,69,0.2580036769309816],[127,156,70,0.25703715968343516],[127,156,71,0.2559945788829382],[127,156,72,0.2549102063893139],[127,156,73,0.2538166339131217],[127,156,74,0.2527434661857172],[127,156,75,0.2517162161235744],[127,156,76,0.25075540749282615],[127,156,77,0.24987589020281278],[127,156,78,0.2490863729848079],[127,156,79,0.2483891778474457],[127,157,64,0.25852287917952227],[127,157,65,0.26106954084575645],[127,157,66,0.2617955594526747],[127,157,67,0.261022788492313],[127,157,68,0.26007591943521],[127,157,69,0.2589861381918185],[127,157,70,0.2577882471704467],[127,157,71,0.2565187968001224],[127,157,72,0.25521425686816557],[127,157,73,0.2539093912789456],[127,157,74,0.25263584296322833],[127,157,75,0.2514209352666442],[127,157,76,0.2502866957426599],[127,157,77,0.2492491078733372],[127,157,78,0.24831759584364785],[127,157,79,0.2474947471058546],[127,158,64,0.2598919735856828],[127,158,65,0.26228334679370086],[127,158,66,0.2632086145815106],[127,158,67,0.2622137005401787],[127,158,68,0.26104445878395893],[127,158,69,0.2597332620212432],[127,158,70,0.2583164300225442],[127,158,71,0.25683224944532695],[127,158,72,0.2553190228996403],[127,158,73,0.2538133338543208],[127,158,74,0.25234853453592276],[127,158,75,0.2509534635501014],[127,158,76,0.2496513995301448],[127,158,77,0.24845925669319074],[127,158,78,0.24738702776511637],[127,158,79,0.24643747932405125],[127,159,64,0.26086905686544487],[127,159,65,0.2630965353324031],[127,159,66,0.2643462542762718],[127,159,67,0.2631400316030975],[127,159,68,0.2617598407905434],[127,159,69,0.26023891205190075],[127,159,70,0.25861472654376433],[127,159,71,0.25692694176573255],[127,159,72,0.255215331998138],[127,159,73,0.253517955761333],[127,159,74,0.2518695578240306],[127,159,75,0.2503002128471593],[127,159,76,0.24883421730570307],[127,159,77,0.24748923588773045],[127,159,78,0.24627570813116573],[127,159,79,0.24519652062891778],[127,160,64,0.2614570865867118],[127,160,65,0.26351323016542616],[127,160,66,0.2652012652762383],[127,160,67,0.26379377141052296],[127,160,68,0.2622130865205915],[127,160,69,0.26049297526327597],[127,160,70,0.2586717354453779],[127,160,71,0.2567900455752137],[127,160,72,0.25488880978037703],[127,160,73,0.2530072396602577],[127,160,74,0.25118118092920716],[127,160,75,0.24944169224945056],[127,160,76,0.2478138831928077],[127,160,77,0.24631601781080242],[127,160,78,0.2449588898378607],[127,160,79,0.24374547510628392],[127,161,64,0.26166260312519835],[127,161,65,0.263541554284274],[127,161,66,0.2654087118697286],[127,161,67,0.2641632632151169],[127,161,68,0.26239109589501725],[127,161,69,0.26048074797491483],[127,161,70,0.2584710179903012],[127,161,71,0.25640328870832574],[127,161,72,0.2543192884605726],[127,161,73,0.25225909809214153],[127,161,74,0.25025941166701265],[127,161,75,0.2483520585998372],[127,161,76,0.2465627944109319],[127,161,77,0.24491036682827153],[127,161,78,0.24340586349185508],[127,161,79,0.24205234705637554],[127,162,64,0.2614963062613588],[127,162,65,0.263194236012652],[127,162,66,0.26488066349091877],[127,162,67,0.264232542520703],[127,162,68,0.26227596940691705],[127,162,69,0.26018224868507833],[127,162,70,0.2579904120010926],[127,162,71,0.25574228194059123],[127,162,72,0.2534801598461883],[127,162,73,0.25124476681188374],[127,162,74,0.2490734462394925],[127,162,75,0.2469986358614918],[127,162,76,0.24504661665038205],[127,162,77,0.2432365455505743],[127,162,78,0.2415797784892229],[127,162,79,0.24007948965185474],[127,163,64,0.26097371523068036],[127,163,65,0.26248929771076274],[127,163,66,0.26399357988651556],[127,163,67,0.2639805945833458],[127,163,68,0.2618442518265504],[127,163,69,0.25957145703183115],[127,163,70,0.25720127704496737],[127,163,71,0.2547757830331087],[127,163,72,0.25233767224466175],[127,163,73,0.24992814958172996],[127,163,74,0.24758507758348344],[127,163,75,0.24534140292962422],[127,163,76,0.24322386707982363],[127,163,77,0.2412520081717344],[127,163,78,0.2394374608113093],[127,163,79,0.237783559909302],[127,164,64,0.2601155590375809],[127,164,65,0.2614501752868868],[127,164,66,0.26277381743127737],[127,164,67,0.2633817893822769],[127,164,68,0.26106765975274876],[127,164,69,0.25861733611364063],[127,164,70,0.25606980717909433],[127,164,71,0.253467287570346],[127,164,72,0.2508527782042444],[127,164,73,0.24826789243578884],[127,164,74,0.24575095674373743],[127,164,75,0.24333539425181994],[127,164,76,0.2410483988772157],[127,164,77,0.23890990739689005],[127,164,78,0.23693187622558856],[127,164,79,0.235117869211477],[127,165,64,0.25894369809136086],[127,165,65,0.26009957174966897],[127,165,66,0.26124510439912285],[127,165,67,0.26232988385769135],[127,165,68,0.2599255808407301],[127,165,69,0.25729841332720155],[127,165,70,0.2545735885682054],[127,165,71,0.2517933924597041],[127,165,72,0.2490010632808371],[127,165,73,0.24623856763922666],[127,165,74,0.24354465624910146],[127,165,75,0.24095320799226982],[127,165,76,0.2384918702051248],[127,165,77,0.2361810026275918],[127,165,78,0.2340329319467771],[127,165,79,0.23205152337381907],[127,166,64,0.2574768231440734],[127,166,65,0.2584561653383993],[127,166,66,0.2594262463793579],[127,166,67,0.26033484054771777],[127,166,68,0.25840537856855367],[127,166,69,0.25560212959802237],[127,166,70,0.2527000468811992],[127,166,71,0.24974142725308132],[127,166,72,0.24676968211920233],[127,166,73,0.24382707120934421],[127,166,74,0.24095272034576956],[127,166,75,0.23818093179836652],[127,166,76,0.23553979528832025],[127,166,77,0.2330501071905105],[127,166,78,0.23072460497735375],[127,166,79,0.22856752344808653],[127,167,64,0.2557309052469869],[127,167,65,0.25653604668084773],[127,167,66,0.25733355669110575],[127,167,67,0.2580695735169033],[127,167,68,0.25649796893444793],[127,167,69,0.2535194635426917],[127,167,70,0.25044017421374704],[127,167,71,0.2473023695127569],[127,167,72,0.24414958070651338],[127,167,73,0.24102430360961108],[127,167,74,0.23796598732058907],[127,167,75,0.23500931850049517],[127,167,76,0.23218280933398783],[127,167,77,0.22950769679991326],[127,167,78,0.22699716036884557],[127,167,79,0.22465586474421656],[127,168,64,0.25372015492666816],[127,168,65,0.2543536540628305],[127,168,66,0.25498176522977245],[127,168,67,0.2555492168769553],[127,168,68,0.2541969647655791],[127,168,69,0.2510441225275007],[127,168,70,0.24778777029807025],[127,168,71,0.2444701373959291],[127,168,72,0.24113483958997284],[127,168,73,0.23782456110368355],[127,168,74,0.2345790249485916],[127,168,75,0.23143326027197142],[127,168,76,0.22841617489259539],[127,168,77,0.22554944068600744],[127,168,78,0.22284669897192974],[127,168,79,0.22031309255594655],[127,169,64,0.25145822919604455],[127,169,65,0.2519229507614548],[127,169,66,0.2523851622709888],[127,169,67,0.25278845681169404],[127,169,68,0.25149760013494427],[127,169,69,0.24817152454820884],[127,169,70,0.244738486735272],[127,169,71,0.2412406989309006],[127,169,72,0.23772184880288247],[127,169,73,0.23422477498205446],[127,169,74,0.2307894308620082],[127,169,75,0.22745114533591318],[127,169,76,0.2242391886302826],[127,169,77,0.2211756508866211],[127,169,78,0.2182746406363031],[127,169,79,0.21554180981656115],[127,170,64,0.2489596915251726],[127,170,65,0.24925885535363607],[127,170,66,0.2495589939796353],[127,170,67,0.24980288254672894],[127,170,68,0.24839540645118735],[127,170,69,0.24489753682783622],[127,170,70,0.24128863480409565],[127,170,71,0.23761095370923005],[127,170,72,0.23390826610677987],[127,170,73,0.23022354706392387],[127,170,74,0.2265969441380467],[127,170,75,0.22306404267898605],[127,170,76,0.21965443454407554],[127,170,77,0.21639059782030623],[127,170,78,0.2132870946482018],[127,170,79,0.21035009375014554],[127,171,64,0.24624172723535637],[127,171,65,0.24637892741685932],[127,171,66,0.24652111198353835],[127,171,67,0.24661058898517677],[127,171,68,0.24488463800701768],[127,171,69,0.24121696900831818],[127,171,70,0.23743375482532988],[127,171,71,0.23357738509009648],[127,171,72,0.2296917567764329],[127,171,73,0.2258199798445817],[127,171,74,0.22200236663121928],[127,171,75,0.21827471346401642],[127,171,76,0.21466688248727714],[127,171,77,0.2112016911909294],[127,171,78,0.2078941166437579],[127,171,79,0.20475082094797178],[127,172,64,0.24332611696428513],[127,172,65,0.24330531121690213],[127,172,66,0.24329387954208673],[127,172,67,0.24323403346450498],[127,172,68,0.2409564446177438],[127,172,69,0.23712181866712764],[127,172,70,0.2331669449265348],[127,172,71,0.22913448088935778],[127,172,72,0.22506851304194597],[127,172,73,0.2210122995575197],[127,172,74,0.21700629248641512],[127,172,75,0.21308644775514],[127,172,76,0.20928283080486235],[127,172,77,0.20561852521643834],[127,172,78,0.20210885118826835],[127,172,79,0.1987609002597554],[127,173,64,0.24024147104553806],[127,173,65,0.24006694016679025],[127,173,66,0.23990633702259911],[127,173,67,0.23970214926436245],[127,173,68,0.23659678881522656],[127,173,69,0.23259926673330514],[127,173,70,0.22847694690545653],[127,173,71,0.2242729203905822],[127,173,72,0.22003155117869042],[127,173,73,0.21579627030896778],[127,173,74,0.21160764416953737],[127,173,75,0.20750172508180936],[127,173,76,0.20350869180306308],[127,173,77,0.19965178710995143],[127,173,78,0.1959465591572198],[127,173,79,0.19240041284460735],[127,174,64,0.23702572785256854],[127,174,65,0.23670200504207586],[127,174,66,0.23639662959121543],[127,174,67,0.23576974735811362],[127,174,68,0.23178410488507642],[127,174,69,0.22762942020944182],[127,174,70,0.223345986733146],[127,174,71,0.2189775253693359],[127,174,72,0.21456878410180658],[127,174,73,0.21016339732109665],[127,174,74,0.20580201324383357],[127,174,75,0.20152069727206295],[127,174,76,0.19734961869391582],[127,174,77,0.19331202766993602],[127,174,78,0.18942352899484058],[127,174,79,0.185691658676805],[127,175,64,0.2337191351138931],[127,175,65,0.23325098199880584],[127,175,66,0.23280514373510647],[127,175,67,0.2306267949515521],[127,175,68,0.22649566172810268],[127,175,69,0.22219129329308765],[127,175,70,0.21775525730939038],[127,175,71,0.21323211863083402],[127,175,72,0.20866712361988418],[127,175,73,0.20410413791079257],[127,175,74,0.19958384563339565],[127,175,75,0.19514221767743548],[127,175,76,0.1908092561366287],[127,175,77,0.1866080216295382],[127,175,78,0.18255394975460862],[127,175,79,0.17865446250376008],[127,176,64,0.2303298061820207],[127,176,65,0.22972239881575063],[127,176,66,0.22906317284426966],[127,176,67,0.225009040966309],[127,176,68,0.22073955218809482],[127,176,69,0.2162933774420836],[127,176,70,0.21171366397176733],[127,176,71,0.2070460151369479],[127,176,72,0.20233627330510873],[127,176,73,0.1976285493168729],[127,176,74,0.19296350621775135],[127,176,75,0.1883769045283617],[127,176,76,0.18389841590029513],[127,176,77,0.17955071157847527],[127,176,78,0.1753488316670558],[127,176,79,0.1712998407787592],[127,177,64,0.22685120697548436],[127,177,65,0.2261100959923285],[127,177,66,0.22311952800852727],[127,177,67,0.21893978002547623],[127,177,68,0.2145393903469246],[127,177,69,0.2099596000236069],[127,177,70,0.20524540340317726],[127,177,71,0.20044360516019596],[127,177,72,0.1956007156462158],[127,177,73,0.190761085321045],[127,177,74,0.1859652856021715],[127,177,75,0.18124874306553837],[127,177,76,0.17664063352249326],[127,177,77,0.17216304208828467],[127,177,78,0.16783039495070978],[127,177,79,0.1636491681473696],[127,178,64,0.2232707620538815],[127,178,65,0.22076728784124677],[127,178,66,0.21674739259758063],[127,178,67,0.2124495703520994],[127,178,68,0.20792627672743905],[127,178,69,0.20322165174424284],[127,178,70,0.19838276206000396],[127,178,71,0.19345774101899263],[127,178,72,0.18849381004386137],[127,178,73,0.18353553096319716],[127,178,74,0.17862329622549253],[127,178,75,0.17379206356337537],[127,178,76,0.16907034128118337],[127,178,77,0.1644794299474791],[127,178,78,0.16003292588547816],[127,178,79,0.1557364914723821],[127,179,64,0.21789460437409663],[127,179,65,0.21410737288747939],[127,179,66,0.2099831843540327],[127,179,67,0.20557538499872646],[127,179,68,0.2009378774627546],[127,179,69,0.19611797479036652],[127,179,70,0.19116499439153467],[127,179,71,0.18612848692356962],[127,179,72,0.18105639663535547],[127,179,73,0.17599344386274782],[127,179,74,0.1709797362100641],[127,179,75,0.16604961458398113],[127,179,76,0.16123073987395636],[127,179,77,0.15654342570075652],[127,179,78,0.15200022228524537],[127,179,79,0.14760575612687474],[127,180,64,0.21097032306212044],[127,180,65,0.20708924596510792],[127,180,66,0.2028687326810314],[127,180,67,0.1983596702531654],[127,180,68,0.19361741757360626],[127,180,69,0.18869267428850867],[127,180,70,0.18363713614322713],[127,180,71,0.17850181837119466],[127,180,72,0.1733353668733595],[127,180,73,0.16818258217390472],[127,180,74,0.16308316224602548],[127,180,75,0.15807066995169006],[127,180,76,0.153171730486486],[127,180,77,0.1484054638679476],[127,180,78,0.1437831571564576],[127,180,79,0.1393081807553445],[127,181,64,0.2081009659987162],[127,181,65,0.20330564066578827],[127,181,66,0.1982535296142846],[127,181,67,0.1929883742218273],[127,181,68,0.1875627428193016],[127,181,69,0.18202682697301964],[127,181,70,0.1764309091529422],[127,181,71,0.17082377491292766],[127,181,72,0.16538220023967787],[127,181,73,0.16015531870843377],[127,181,74,0.1549867712140283],[127,181,75,0.14990916933936466],[127,181,76,0.14494790734318905],[127,181,77,0.14012070214980438],[127,181,78,0.13543736107358295],[127,181,79,0.1308997812643695],[127,182,64,0.21002536098896707],[127,182,65,0.20515931126705342],[127,182,66,0.20003551600001956],[127,182,67,0.1946946148863146],[127,182,68,0.1891903821423454],[127,182,69,0.18357642596156193],[127,182,70,0.1779053049483012],[127,182,71,0.17222704550360393],[127,182,72,0.1665877746131038],[127,182,73,0.16102854606322706],[127,182,74,0.15558436523829744],[127,182,75,0.1502834173409705],[127,182,76,0.14514650356605893],[127,182,77,0.14018668944633209],[127,182,78,0.1354091692822568],[127,182,79,0.13081135026781285],[127,183,64,0.21176070249059076],[127,183,65,0.20682148004186088],[127,183,66,0.20162507979455768],[127,183,67,0.19620893732578898],[127,183,68,0.1906279889832459],[127,183,69,0.18493927643754332],[127,183,70,0.17919760376211746],[127,183,71,0.17345416444871709],[127,183,72,0.1677553516485269],[127,183,73,0.16214175126573832],[127,183,74,0.15664732256743102],[127,183,75,0.15129877068344239],[127,183,76,0.1461151150782699],[127,183,77,0.14110745778687903],[127,183,78,0.13627895492143915],[127,183,79,0.13162499467815306],[127,184,64,0.21334638219850716],[127,184,65,0.20833173426740606],[127,184,66,0.20306207567181078],[127,184,67,0.1975716142932569],[127,184,68,0.19191638755446705],[127,184,69,0.18615681380131147],[127,184,70,0.18034985400312628],[127,184,71,0.174547752180483],[127,184,72,0.1687970278936201],[127,184,73,0.16313764085442067],[127,184,74,0.1576023318328768],[127,184,75,0.152216143758766],[127,184,76,0.14699612664836076],[127,184,77,0.14195122971717034],[127,184,78,0.13708238377669707],[127,184,79,0.13238277675742444],[127,185,64,0.21482151767141014],[127,185,65,0.20972938168987426],[127,185,66,0.2043860372069759],[127,185,67,0.1988225222398075],[127,185,68,0.19309589899813087],[127,185,69,0.18726983298608663],[127,185,70,0.1814032973727515],[127,185,71,0.175549429885035],[127,185,72,0.16975471007982507],[127,185,73,0.1640582979970712],[127,185,74,0.15849153787389447],[127,185,75,0.15307763034930705],[127,185,76,0.14783147633872096],[127,185,77,0.14275969550975234],[127,185,78,0.1378608220494637],[127,185,79,0.13312568017934873],[127,186,64,0.21622348258413335],[127,186,65,0.2110519723050199],[127,186,66,0.20563468787351596],[127,186,67,0.19999963592393244],[127,186,68,0.19420481434925463],[127,186,69,0.18831693708751301],[127,186,70,0.1823967925064495],[127,186,71,0.17649821901665877],[127,186,72,0.17066746734734115],[127,186,73,0.16494271358685586],[127,186,74,0.15935372618553387],[127,186,75,0.15392168988694535],[127,186,76,0.14865918932344907],[127,186,77,0.14357035478488864],[127,186,78,0.13865117244915104],[127,186,79,0.1338899611510001],[127,187,64,0.217586324731221],[127,187,65,0.21233370965163778],[127,187,66,0.20684234529910378],[127,187,67,0.20113742181139974],[127,187,68,0.19527777379345923],[127,187,69,0.18933290218843513],[127,187,70,0.18336516739812878],[127,187,71,0.17742888502884785],[127,187,72,0.1715698711039282],[127,187,73,0.16582512768712612],[127,187,74,0.16022267164576934],[127,187,75,0.15478150906985919],[127,187,76,0.14951175765231248],[127,187,77,0.14441491912858753],[127,187,78,0.13948430367435788],[127,187,79,0.1347056079684891],[127,188,64,0.2189390698018147],[127,188,65,0.21360374968734064],[127,188,66,0.20803821691840607],[127,188,67,0.2022651284866472],[127,188,68,0.1963440505393103],[127,188,69,0.19034695681912278],[127,188,70,0.18433749919163697],[127,188,71,0.17837022407477515],[127,188,72,0.17249029636472576],[127,188,73,0.16673335380716928],[127,188,74,0.1611254940934987],[127,188,75,0.1556833967666936],[127,188,76,0.15041458182899864],[127,188,77,0.1453178067557566],[127,188,78,0.14038360343985665],[127,188,79,0.13559495641986602],[127,189,64,0.22030390883771886],[127,189,65,0.21488438521002554],[127,189,66,0.20924458505824414],[127,189,67,0.20340497219919937],[127,189,68,0.19742573753403006],[127,189,69,0.1913809744091706],[127,189,70,0.18533531984823404],[127,189,71,0.17934329136506877],[127,189,72,0.17344918346573562],[127,189,73,0.1676870851303249],[127,189,74,0.1620810201288565],[127,189,75,0.15664521184718275],[127,189,76,0.15138447412375894],[127,189,77,0.14629472942842964],[127,189,78,0.1413636555531263],[127,189,79,0.13657146183196087],[127,190,64,0.22169426717947807],[127,190,65,0.2161891136835186],[127,190,66,0.2104748793894801],[127,190,67,0.20457021557234495],[127,190,68,0.19853583516125706],[127,190,69,0.1924475770049388],[127,190,70,0.18637074612588145],[127,190,71,0.18035956980851328],[127,190,72,0.17445725899362463],[127,190,73,0.16869618177942408],[127,190,74,0.1630981504852809],[127,190,75,0.1576748235714333],[127,190,76,0.15242822354915236],[127,190,77,0.1473513718630372],[127,190,78,0.14242904158330813],[127,190,79,0.13763862861132367],[127,191,64,0.22311275260050745],[127,191,65,0.2175205862231308],[127,191,66,0.21173163458087782],[127,191,67,0.20576313740721275],[127,191,68,0.19967623797176529],[127,191,69,0.19354814844654855],[127,191,70,0.18744453223591],[127,191,71,0.18141907750229344],[127,191,72,0.17551371472828492],[127,191,73,0.16975893817240525],[127,191,74,0.16417423230587674],[127,191,75,0.1587686041691257],[127,191,76,0.1535412224430097],[127,191,77,0.14848216389257263],[127,191,78,0.14357326771345108],[127,191,79,0.1387890981929161],[127,192,64,0.22454898022851175],[127,192,65,0.21886843539804698],[127,192,66,0.21300433089505422],[127,192,67,0.20697289142527908],[127,192,68,0.20083561841442168],[127,192,69,0.1946707551229264],[127,192,70,0.18854404347700532],[127,192,71,0.1825084125843902],[127,192,72,0.17660434335382752],[127,192,73,0.1708603294948846],[127,192,74,0.16529343564638008],[127,192,75,0.15990995324635005],[127,192,76,0.15470615462640955],[127,192,77,0.1496691456904833],[127,192,78,0.1447778174250161],[127,192,79,0.14000389638480204],[127,193,64,0.22597727175684632],[127,193,65,0.22020697941274664],[127,193,66,0.2142671153754914],[127,193,67,0.20817325170624015],[127,193,68,0.20198720545506293],[127,193,69,0.19578797235203851],[127,193,70,0.1896411490851388],[127,193,71,0.18359873391129874],[127,193,72,0.17769962965783306],[127,193,73,0.17197023629568262],[127,193,74,0.16642513352257782],[127,193,75,0.16106785367060794],[127,193,76,0.1558917451350993],[127,193,77,0.15088092641182194],[127,193,78,0.14601133073019104],[127,193,79,0.14125184118103007],[127,194,64,0.22735422635711683],[127,194,65,0.22149280014004627],[127,194,66,0.2154764011874702],[127,194,67,0.2093202424970426],[127,194,68,0.2030864558963608],[127,194,69,0.1968546143671259],[127,194,70,0.19069003248191643],[127,194,71,0.1846436759801273],[127,194,72,0.17875279590835644],[127,194,73,0.17304164619635676],[127,194,74,0.1675222848217679],[127,194,75,0.16219545860389717],[127,194,76,0.15705157156051217],[127,194,77,0.15207173666352172],[127,194,78,0.1472289107423997],[127,194,79,0.14248911220775726],[127,195,64,0.22861680876333104],[127,195,65,0.22266285045656084],[127,195,66,0.21656900965171846],[127,195,67,0.2103503256012038],[127,195,68,0.20406929807939952],[127,195,69,0.19780604894037368],[127,195,70,0.19162559394437936],[127,195,71,0.18557785817202804],[127,195,72,0.17969843661943666],[127,195,73,0.17400943269028146],[127,195,74,0.16852037447291365],[127,195,75,0.1632292085874012],[127,195,76,0.1581233712912816],[127,195,77,0.1531809364455232],[127,195,78,0.14837183986644967],[127,195,79,0.143659179524611],[127,196,64,0.2297152329481921],[127,196,65,0.22366781634086463],[127,196,66,0.21749596978046248],[127,196,67,0.21121462346369393],[127,196,68,0.2048866783699265],[127,196,69,0.19859282305287568],[127,196,70,0.19239780073706342],[127,196,71,0.1863505265215896],[127,196,72,0.1804849702942634],[127,196,73,0.17482111253921997],[127,196,74,0.16936597267878495],[127,196,75,0.16411470949578738],[127,196,76,0.15905179309577014],[127,196,77,0.15415224779111947],[127,196,78,0.14938296522376213],[127,196,79,0.14470408698908838],[127,197,64,0.23064263091460008],[127,197,65,0.22450186646118372],[127,197,66,0.21825227442906023],[127,197,67,0.21190866001982772],[127,197,68,0.2055342295041151],[127,197,69,0.1992101156415158],[127,197,70,0.1930007156307824],[127,197,71,0.18695390370450543],[127,197,72,0.18110202872040643],[127,197,73,0.1754629801762963],[127,197,74,0.17004132206454414],[127,197,75,0.16482949389514698],[127,197,76,0.15980907813811024],[127,197,77,0.15495213326730772],[127,197,78,0.15022259153198142],[127,197,79,0.14557772053783288],[127,198,64,0.23139871017600408],[127,198,65,0.22516556281407243],[127,198,66,0.21883908761344034],[127,198,67,0.21243389642376306],[127,198,68,0.20601329086064615],[127,198,69,0.19965858874345704],[127,198,70,0.193433670703633],[127,198,71,0.1873852797151974],[127,198,72,0.18154412226308952],[127,198,73,0.1759260339968074],[127,198,74,0.17053320908730255],[127,198,75,0.1653554924252029],[127,198,76,0.1603717337274327],[127,198,77,0.1555512025586147],[127,198,78,0.15085506322593006],[127,198,79,0.14623790847056106],[127,199,64,0.23198563980123119],[127,199,65,0.2256617187952607],[127,199,66,0.21925959948476748],[127,199,67,0.21279360229483074],[127,199,68,0.20632682443484043],[127,199,69,0.19994039364484337],[127,199,70,0.19369742157139797],[127,199,71,0.18764338019347435],[127,199,72,0.18180729250619673],[127,199,73,0.17620298427225303],[127,199,74,0.17083039589153556],[127,199,75,0.1656769533656762],[127,199,76,0.16071899726954073],[127,199,77,0.15592326858783145],[127,199,78,0.15124845023443395],[127,199,79,0.14664676304405938],[127,200,64,0.23240747172482826],[127,200,65,0.2259948582964666],[127,200,66,0.2195185452010627],[127,200,67,0.2129924532806911],[127,200,68,0.2064791085847764],[127,200,69,0.20005897826174585],[127,200,70,0.19379408519338187],[127,200,71,0.18772845020472953],[127,200,72,0.1818893558273153],[127,200,73,0.17628866821128247],[127,200,74,0.17092421610253175],[127,200,75,0.1657812257321523],[127,200,76,0.16083381040623948],[127,200,77,0.1560465135360069],[127,200,78,0.15137590381362862],[127,200,79,0.1467722212174238],[127,201,64,0.23266959213187505],[127,201,65,0.22617070886910184],[127,201,66,0.21962176303145695],[127,201,67,0.2130361746933105],[127,201,68,0.20647548648081399],[127,201,69,0.20001895946632872],[127,201,70,0.19372715426471926],[127,201,71,0.18764242741407589],[127,201,72,0.18179025009091473],[127,201,73,0.17618058251907265],[127,201,74,0.1708093028879513],[127,201,75,0.16565968953121915],[127,201,76,0.16070395506237306],[127,201,77,0.15590483112008569],[127,201,78,0.15121720234668254],[127,201,79,0.14658978820636293],[127,202,64,0.23277820303296695],[127,202,65,0.22619572914112224],[127,202,66,0.21957579197357185],[127,202,67,0.21293123161988467],[127,202,68,0.2063221698090909],[127,202,69,0.19982606108039946],[127,202,70,0.19350158910799584],[127,202,71,0.18738920577259563],[127,202,72,0.18151248579323273],[127,202,73,0.17587953500954057],[127,202,74,0.17048445106354004],[127,202,75,0.16530883516892164],[127,202,76,0.16032335360474173],[127,202,77,0.15548934753070226],[127,202,78,0.15076048969548028],[127,202,79,0.14608448659673418],[127,203,64,0.23273983417179048],[127,203,65,0.22607667070245768],[127,203,66,0.2193875091968413],[127,203,67,0.21268456594740798],[127,203,68,0.2060260983214565],[127,203,69,0.19948711830664506],[127,203,70,0.19312398803206438],[127,203,71,0.18697499089629918],[127,203,72,0.1810617030625471],[127,203,73,0.17539041690266863],[127,203,74,0.1699536151046284],[127,203,75,0.16473149409965412],[127,203,76,0.1596935354172636],[127,203,77,0.15480012353946881],[127,203,78,0.1500042088026567],[127,203,79,0.1452530138856809],[127,204,64,0.23256088543630057],[127,204,65,0.22582017470528293],[127,204,66,0.219063807658288],[127,204,67,0.2123033807771281],[127,204,68,0.20559485586674192],[127,204,69,0.19901014941599304],[127,204,70,0.1926028371803928],[127,204,71,0.18640874837959484],[127,204,72,0.1804473359866904],[127,204,73,0.17472309751446216],[127,204,74,0.169227045007277],[127,204,75,0.1639382228915843],[127,204,76,0.15882527229213675],[127,204,77,0.15384804038641553],[127,204,78,0.14895923334906253],[127,204,79,0.14410611143013685],[127,205,64,0.23224719997495047],[127,205,65,0.22543240345787594],[127,205,66,0.21861131427226527],[127,205,67,0.21179497274354406],[127,205,68,0.20503664358102322],[127,205,69,0.19840449555736145],[127,205,70,0.19194884094472167],[127,205,71,0.18570274634447118],[127,205,72,0.17968338580523077],[127,205,73,0.17389344311882166],[127,205,74,0.1683225620207649],[127,205,75,0.16294884296842604],[127,205,76,0.1577403851259872],[127,205,77,0.15265687215256032],[127,205,78,0.14765120037062518],[127,205,79,0.14267114788531793],[127,206,64,0.23180366825232848],[127,206,65,0.22491870732551117],[127,206,66,0.2180361490525397],[127,206,67,0.21116661279239762],[127,206,68,0.2043603109580774],[127,206,69,0.19768102960398354],[127,206,70,0.19117533407253381],[127,206,71,0.1848731935844078],[127,206,72,0.17878930456676478],[127,206,73,0.17292446182883792],[127,206,74,0.16726697634645019],[127,206,75,0.16179413836553394],[127,206,76,0.15647372449267521],[127,206,77,0.15126554740939108],[127,206,78,0.1461230468290164],[127,206,79,0.14099492030939062],[127,207,64,0.23123733129893925],[127,207,65,0.22428716931779932],[127,207,66,0.2173477536414246],[127,207,67,0.21042947987464275],[127,207,68,0.20357920289544598],[127,207,69,0.19685571965976947],[127,207,70,0.19030136670673112],[127,207,71,0.18394265952734884],[127,207,72,0.1777915773745805],[127,207,73,0.17184689439249304],[127,207,74,0.16609555587003355],[127,207,75,0.16051409837579633],[127,207,76,0.15507011249017125],[127,207,77,0.1497237468216395],[127,207,78,0.14442925197754083],[127,207,79,0.13788056217184122],[127,208,64,0.23056734707192683],[127,208,65,0.2235593841696913],[127,208,66,0.21656988017124235],[127,208,67,0.2096091877517292],[127,208,68,0.2027205147888515],[127,208,69,0.19595709356242544],[127,208,70,0.18935657595579047],[127,208,71,0.18294168995708135],[127,208,72,0.17672147876976516],[127,208,73,0.17069258428186926],[127,208,74,0.16484057374725652],[127,208,75,0.15914130848617672],[127,208,76,0.15356235337489166],[127,208,77,0.14806442586672958],[127,208,78,0.14260288327223958],[127,208,79,0.13425574726453327],[127,209,64,0.2298140608272932],[127,209,65,0.2227577972699744],[127,209,66,0.2157266678488634],[127,209,67,0.20873112776488334],[127,209,68,0.2018104664832565],[127,209,69,0.19501182438819947],[127,209,70,0.18836775942068645],[127,209,71,0.18189692343689573],[127,209,72,0.17560524930801497],[127,209,73,0.16948717978659758],[127,209,74,0.1635269370410792],[127,209,75,0.15769983171772556],[127,209,76,0.15197361035522386],[127,209,77,0.14630983995256452],[127,209,78,0.14061579822576878],[127,209,79,0.13055228867305602],[127,210,64,0.22899540105176522],[127,210,65,0.2219017005665071],[127,210,66,0.21483841934958417],[127,210,67,0.20781622651429144],[127,210,68,0.20087025268250805],[127,210,69,0.1940410872835105],[127,210,70,0.1873558472829873],[127,210,71,0.18082887625004748],[127,210,72,0.17446287405423033],[127,210,73,0.16825006495608458],[127,210,74,0.16217340303868405],[127,210,75,0.15620781388997243],[127,210,76,0.15032147141607363],[127,210,77,0.14447710864494098],[127,210,78,0.13681830350904237],[127,210,79,0.12677028207233862],[127,211,64,0.22812685963144877],[127,211,65,0.2210072878050641],[127,211,66,0.21392173626609556],[127,211,67,0.20688116592739955],[127,211,68,0.19991635001801417],[127,211,69,0.193060953264993],[127,211,70,0.18633638020848745],[127,211,71,0.17975249974205432],[127,211,72,0.17330871299131798],[127,211,73,0.1669950553301304],[127,211,74,0.16079333152270653],[127,211,75,0.15467828294870384],[127,211,76,0.14861878584389238],[127,211,77,0.14257907947311838],[127,211,78,0.1329228271246977],[127,211,79,0.12291319809680995],[127,212,64,0.22722150548987108],[127,212,65,0.2200877434501091],[127,212,66,0.21298968716921463],[127,212,67,0.20593863385574038],[127,212,68,0.19896085150526016],[127,212,69,0.1920828059489813],[127,212,70,0.18532000421926248],[127,212,71,0.17867774705880768],[127,212,72,0.1721521316011772],[127,212,73,0.16573108299078038],[127,212,74,0.1593954139655966],[127,212,75,0.15311991140156908],[127,212,76,0.14687444879989772],[127,212,77,0.138808532811905],[127,212,78,0.1289361761220394],[127,212,79,0.11898706744075996],[127,213,64,0.22629003225401984],[127,213,65,0.2191533658824346],[127,213,66,0.2120520088921865],[127,213,67,0.2049976058141753],[127,213,68,0.19801182898839936],[127,213,69,0.19111378177692717],[127,213,70,0.18431298304406318],[127,213,71,0.1776101497096576],[127,213,72,0.17099813194211522],[127,213,73,0.1644628711316471],[127,213,74,0.15798437969429152],[127,213,75,0.15153774174137197],[127,213,76,0.14440539498224814],[127,213,77,0.13468251701215037],[127,213,78,0.12486757995612933],[127,213,79,0.11499976971914375],[127,214,64,0.225340840539536],[127,214,65,0.218211725500436],[127,214,66,0.21111534168038265],[127,214,67,0.2040636585037762],[127,214,68,0.19707372419697353],[127,214,69,0.1901572343226516],[127,214,70,0.18331772847092462],[127,214,71,0.17655140439219114],[127,214,72,0.1698479845471145],[127,214,73,0.16319159833288863],[127,214,74,0.15656167905534957],[127,214,75,0.149719012795447],[127,214,76,0.1401422474411544],[127,214,77,0.13046704232976186],[127,214,78,0.12072804019271936],[127,214,79,0.11096042705457175],[127,215,64,0.22438015547787551],[127,215,65,0.21726785838246396],[127,215,66,0.2101834988768081],[127,215,67,0.20313931578521388],[127,215,68,0.19614776906074677],[127,215,69,0.18921322328461943],[127,215,70,0.18233334923763586],[127,215,71,0.1754999705207189],[127,215,72,0.16869986146534857],[127,215,73,0.16191555271988722],[127,215,74,0.15478161526797266],[127,215,75,0.1453329480209654],[127,215,76,0.1357877309954208],[127,215,77,0.12617632526110517],[127,215,78,0.11652976788284365],[127,215,79,0.10687890342535658],[127,216,64,0.22341218013753067],[127,216,65,0.2163244961955584],[127,216,66,0.2092577718392221],[127,216,67,0.20222442779164687],[127,216,68,0.1952324359467101],[127,216,69,0.1882790287796594],[127,216,70,0.18135621900322568],[127,216,71,0.17445167890146127],[127,216,72,0.16754947076299917],[127,216,73,0.15964885093712455],[127,216,74,0.15029779781054958],[127,216,75,0.140858981959494],[127,216,76,0.13135917359673674],[127,216,77,0.12182570208132934],[127,216,78,0.11228570947793659],[127,216,79,0.10276541087780193],[127,217,64,0.22243928551896033],[127,217,65,0.21538233306168145],[127,217,66,0.20833727080776362],[127,217,67,0.20131658388965568],[127,217,68,0.19432391849764172],[127,217,69,0.18734969156488157],[127,217,70,0.18038056394822033],[127,217,71,0.17340035199556975],[127,217,72,0.1643945828062217],[127,217,73,0.15510145475610004],[127,217,74,0.14573425735678608],[127,217,75,0.13631723409531504],[127,217,76,0.12687485113919517],[127,217,77,0.1174311577632458],[127,217,78,0.1080091622168487],[127,217,79,0.09863022377499028],[127,218,64,0.22146223782763746],[127,218,65,0.21444033011516772],[127,218,66,0.20741930246147536],[127,218,67,0.20041156021246073],[127,218,68,0.19341664376281928],[127,218,69,0.18641857982063226],[127,218,70,0.17830350654755897],[127,218,71,0.16910417786485996],[127,218,72,0.15982414026174857],[127,218,73,0.15048618263485877],[127,218,74,0.14111337729834922],[127,218,75,0.1317285042194521],[127,218,76,0.12235349924133457],[127,218,77,0.11300892709802163],[127,218,78,0.10371347997582481],[127,218,79,0.09448350232163683],[127,219,64,0.2204804637511865],[127,219,65,0.21349605850406364],[127,219,66,0.20649978491764898],[127,219,67,0.1995038025010687],[127,219,68,0.19227051778729845],[127,219,69,0.18311355345177213],[127,219,70,0.1738669803330345],[127,219,71,0.1645545224856555],[127,219,72,0.15520004133372017],[127,219,73,0.14582698267599858],[127,219,74,0.13645785657600767],[127,219,75,0.12711375104367761],[127,219,76,0.11781388035732096],[127,219,77,0.10857516881347899],[127,219,78,0.09941187063070119],[127,219,79,0.09033522666921356],[127,220,64,0.21949235448485152],[127,220,65,0.21254608160329547],[127,220,66,0.20557370093942748],[127,220,67,0.19734764272920816],[127,220,68,0.18809968619483944],[127,220,69,0.17876878169855254],[127,220,70,0.1693821576384058],[127,220,71,0.15996641355526978],[127,220,72,0.15054698769900932],[127,220,73,0.14114766747255753],[127,220,74,0.1317901437435328],[127,220,75,0.12249360994454267],[127,220,76,0.11327440681169357],[127,220,77,0.10414571353699761],[127,220,78,0.09511728603723076],[127,220,79,0.0861952429672793],[127,221,64,0.2184956092635385],[127,221,65,0.21158637721809787],[127,221,66,0.2026850066557217],[127,221,67,0.19332725634230702],[127,221,68,0.18388511811157932],[127,221,69,0.1743903216555152],[127,221,70,0.1648737664820699],[127,221,71,0.15536445959407666],[127,221,72,0.14588902999958528],[127,221,73,0.13647129723190318],[127,221,74,0.12713189490302723],[127,221,75,0.11788795023110521],[127,221,76,0.10875282039712968],[127,221,77,0.09973588649931758],[127,221,78,0.09084240578860764],[127,221,79,0.08207342278353942],[127,222,64,0.2174876191680743],[127,222,65,0.20834070551870243],[127,222,66,0.19884411135205537],[127,222,67,0.1892761043602527],[127,222,68,0.1796500143619496],[127,222,69,0.1700018195845477],[127,222,70,0.1603655229008084],[127,222,71,0.15077206872465015],[127,222,72,0.14124889872370044],[127,222,73,0.13181957270181968],[127,222,74,0.12250345571309695],[127,222,75,0.11331547237123407],[127,222,76,0.10426592921896098],[127,222,77,0.09536040592237291],[127,222,78,0.08659971595813887],[127,222,79,0.07797993736555854],[127,223,64,0.21438845556582942],[127,223,65,0.20470463467450922],[127,223,66,0.1949838359455638],[127,223,67,0.18521571091306158],[127,223,68,0.1754163803834519],[127,223,69,0.16562542302213612],[127,223,70,0.1558793952780192],[127,223,71,0.14621073088511657],[127,223,72,0.13664733222856143],[127,223,73,0.12721223792396638],[127,223,74,0.11792336771143061],[127,223,75,0.10879334565352755],[127,223,76,0.09982940251363734],[127,223,77,0.09103335807837792],[127,223,78,0.08240168407906771],[127,223,79,0.07392564826045896],[127,224,64,0.21097980853688997],[127,224,65,0.20105863303250027],[127,224,66,0.19112368606845656],[127,224,67,0.18116604372573553],[127,224,68,0.171204293479475],[127,224,69,0.1612810230416436],[127,224,70,0.151434845765187],[127,224,71,0.1416992861067622],[127,224,72,0.13210240177470312],[127,224,73,0.12266649288058513],[127,224,74,0.11340789923521935],[127,224,75,0.10433688680393652],[127,224,76,0.09545762420966657],[127,224,77,0.0867682500471102],[127,224,78,0.07826103165086727],[127,224,79,0.06992261584314627],[127,225,64,0.20756807927491364],[127,225,65,0.1974199323289583],[127,225,66,0.1872813100362326],[127,225,67,0.1771447860855844],[127,225,68,0.16703113430488611],[127,225,69,0.1569854660528686],[127,225,70,0.14704804839075344],[127,225,71,0.13725317859697797],[127,225,72,0.12762883348581422],[127,225,73,0.11819641614450725],[127,225,74,0.10897060126638464],[127,225,75,0.09995928011789036],[127,225,76,0.09116360603822161],[127,225,77,0.08257814123288282],[127,225,78,0.07419110549079265],[127,225,79,0.06598472732716314],[127,226,64,0.20416818595158218],[127,226,65,0.19380367540333415],[127,226,66,0.1834717828698205],[127,226,67,0.1731665687080431],[127,226,68,0.16291078200271394],[127,226,69,0.15275173465562122],[127,226,70,0.1427310834968196],[127,226,71,0.13288369641704595],[127,226,72,0.12323732719681149],[127,226,73,0.1138123976906116],[127,226,74,0.10462188857416671],[127,226,75,0.09567133971018138],[127,226,76,0.08695896103651975],[127,226,77,0.07847585473173078],[127,226,78,0.07020634927047674],[127,226,79,0.06212844584430001],[127,227,64,0.20079590407141173],[127,227,65,0.19022597096882882],[127,227,66,0.17971127923874916],[127,227,67,0.16924726496707315],[127,227,68,0.1588585086365546],[127,227,69,0.1485943671575899],[127,227,70,0.13849776406657308],[127,227,71,0.12860404980080697],[127,227,72,0.11894070301423161],[127,227,73,0.1095271485553527],[127,227,74,0.1003746933352523],[127,227,75,0.09148658114904233],[127,227,76,0.08285816735101151],[127,227,77,0.07447721412393252],[127,227,78,0.0663243069306597],[127,227,79,0.05837339259003964],[127,228,64,0.19747959599676296],[127,228,65,0.18671835444002713],[127,228,66,0.17603417089788856],[127,228,67,0.1654236927042861],[127,228,68,0.1549131344662719],[127,228,69,0.14455367860610302],[127,228,70,0.1343893338471092],[127,228,71,0.12445579549317796],[127,228,72,0.11478017671667136],[127,228,73,0.10538086472259996],[127,228,74,0.09626750302021866],[127,228,75,0.08744110085805905],[127,228,76,0.07889427070521254],[127,228,77,0.07061159449250375],[127,228,78,0.06257011916627103],[127,228,79,0.054739981953686054],[127,229,64,0.19424960865645324],[127,229,65,0.1833146995833339],[127,229,66,0.1724775052113593],[127,229,67,0.1617356924994909],[127,229,68,0.15111683960922698],[127,229,69,0.1406736210165525],[127,229,70,0.13045084915241803],[127,229,71,0.12048434426088205],[127,229,72,0.11080070114014211],[127,229,73,0.1014171873991589],[127,229,74,0.09234177444239781],[127,229,75,0.08357330221155462],[127,229,76,0.07510177853198972],[127,229,77,0.06690881373509726],[127,229,78,0.05896819106033446],[127,229,79,0.05124657318110397],[127,230,64,0.1911332218735512],[127,230,65,0.18004505287242523],[127,230,66,0.1690737691157032],[127,230,67,0.15821784866130892],[127,230,68,0.14750591381808886],[127,230,69,0.1369917181161874],[127,230,70,0.12672052694086489],[127,230,71,0.11672800941739278],[127,230,72,0.10704004764277542],[127,230,73,0.09767268211743026],[127,230,74,0.08863219454523467],[127,230,75,0.07991532898088896],[127,230,76,0.07150965211709763],[127,230,77,0.06339405332285308],[127,230,78,0.05553938487255657],[127,230,79,0.047909242642820746],[127,231,64,0.18815431377294942],[127,231,65,0.17693529008287764],[127,231,66,0.1658505525334292],[127,231,67,0.15489917520107635],[127,231,68,0.14411047884110553],[127,231,69,0.13353883478538467],[127,231,70,0.12322956889109239],[127,231,71,0.11321789000021316],[127,231,72,0.1035287498557582],[127,231,73,0.09417684166770707],[127,231,74,0.08516673842548471],[127,231,75,0.0764931718616182],[127,231,76,0.0681414527825244],[127,231,77,0.06008803329942831],[127,231,78,0.05230121131969312],[127,231,79,0.04474197749538474],[127,232,64,0.18533305923712906],[127,232,65,0.17400680805173138],[127,232,66,0.16283024983605854],[127,232,67,0.1518028437818027],[127,232,68,0.1409542579653904],[127,232,69,0.13033900034060544],[127,232,70,0.12000204752291091],[127,232,71,0.10997782576747134],[127,232,72,0.10029013056473908],[127,232,73,0.09095218492109702],[127,232,74,0.0819668373216459],[127,232,75,0.07332690018069757],[127,232,76,0.06501562939792618],[127,232,77,0.057007345456669814],[127,232,78,0.049268196330146986],[127,232,79,0.04175706230029294],[127,233,64,0.1826856606018056],[127,233,65,0.171276250492195],[127,233,66,0.16002979796329475],[127,233,67,0.14894595198066254],[127,233,68,0.1380543908468883],[127,233,69,0.12740928359161946],[127,233,70,0.11705485221338645],[127,233,71,0.10702442188977992],[127,233,72,0.09734040974555924],[127,233,73,0.0880144498459394],[127,233,74,0.07904765528480091],[127,233,75,0.07043101805019243],[127,233,76,0.06214594716638055],[127,233,77,0.05416494543514733],[127,233,78,0.04645242493350459],[127,233,79,0.038965661269488666],[127,234,64,0.18022411137325048],[127,234,65,0.1687552687079582],[127,234,66,0.15746045211116003],[127,234,67,0.146339332855415],[127,234,68,0.13542129470693628],[127,234,69,0.12475972085577598],[127,234,70,0.11439769640723382],[127,234,71,0.10436714476543608],[127,234,72,0.09468889532236943],[127,234,73,0.08537288243454397],[127,234,74,0.07641847640357703],[127,234,75,0.06781494699723126],[127,234,76,0.05954205987230876],[127,234,77,0.05157080609246488],[127,234,78,0.043864264776971994],[127,234,79,0.03666617242129728],[127,235,64,0.17795599379362367],[127,235,65,0.16645031809993824],[127,235,66,0.1551275999522056],[127,235,67,0.14398740685538647],[127,235,68,0.13305857302372429],[127,235,69,0.12239329815695038],[127,235,70,0.11203318736051507],[127,235,71,0.10200849042073085],[127,235,72,0.09233825824264738],[127,235,73,0.0830306232755021],[127,235,74,0.07408320446473501],[127,235,75,0.06548363710080873],[127,235,76,0.05721022777120316],[127,235,77,0.049232734465100327],[127,235,78,0.04151327173484667],[127,235,79,0.036886859219252825],[127,236,64,0.17588431112259795],[127,236,65,0.16436249140390952],[127,236,66,0.15303061539808555],[127,236,67,0.1418880771641397],[127,236,68,0.1309629728905518],[127,236,69,0.12030598887552961],[127,236,70,0.10995695978869949],[127,236,71,0.0999442269809614],[127,236,72,0.09028489347794523],[127,236,73,0.08098519351055213],[127,236,74,0.07204097692330852],[127,236,75,0.06343830864660395],[127,236,76,0.05515418326933554],[127,236,77,0.04715735460609544],[127,236,78,0.03940928002210745],[127,236,79,0.03679143841995227],[127,237,64,0.17400731892462357],[127,237,65,0.1624873528461965],[127,237,66,0.15116271601152703],[127,237,67,0.1400326325273774],[127,237,68,0.12912435507199646],[127,237,69,0.1184868108923608],[127,237,70,0.10815783751005706],[127,237,71,0.09816367538839955],[127,237,72,0.08851933124930221],[127,237,73,0.079229044634602],[127,237,74,0.07028685783657888],[127,237,75,0.06167728918455373],[127,237,76,0.05337610954189527],[127,237,77,0.04535122174244223],[127,237,78,0.037563642581479706],[127,237,79,0.03638860247160646],[127,238,64,0.17231060048908364],[127,238,65,0.16080698059806003],[127,238,66,0.14950299857429697],[127,238,67,0.13839780438773408],[127,238,68,0.12751780138307037],[127,238,69,0.11691001142466255],[127,238,70,0.10661012088780929],[127,238,71,0.0966421220536611],[127,238,72,0.08701879455188707],[127,238,73,0.07774227731679523],[127,238,74,0.06880473095135886],[127,238,75,0.06018909027470649],[127,238,76,0.05186990671522071],[127,238,77,0.04381428010529282],[127,238,78,0.03598287933900545],[127,238,79,0.03569299540573311],[127,239,64,0.17074774329934134],[127,239,65,0.15927158666342459],[127,239,66,0.14799891060638817],[127,239,67,0.13692898631524622],[127,239,68,0.1260874702608146],[127,239,69,0.11551944273547149],[127,239,70,0.10525836684622342],[127,239,71,0.09532589155028917],[127,239,72,0.08573246072550905],[127,239,73,0.07647799907231681],[127,239,74,0.06755267450099287],[127,239,75,0.058937736559526124],[127,239,76,0.050606430364672335],[127,239,77,0.042524985413425274],[127,239,78,0.034653678577968965],[127,239,79,0.03471920314436487],[127,240,64,0.1692341129038265],[127,240,65,0.15779635703248684],[127,240,66,0.14656569619699766],[127,240,67,0.13554176612668362],[127,240,68,0.12474965792611009],[127,240,69,0.11423257697740977],[127,240,70,0.10402178310099404],[127,240,71,0.09413656461652503],[127,240,72,0.08458498224236703],[127,240,73,0.07536467568767458],[127,240,74,0.0664637323454544],[127,240,75,0.05786161741786303],[127,240,76,0.04953016473380218],[127,240,77,0.04143462745506241],[127,240,78,0.03353478781460572],[127,240,79,0.03345540586536589],[127,241,64,0.16769302896114155],[127,241,65,0.1563047475367946],[127,241,66,0.14512699617474056],[127,241,67,0.1341600327181049],[127,241,68,0.12342862018721205],[127,241,69,0.11297424686890704],[127,241,70,0.1028260790489263],[127,241,71,0.09300111116396327],[127,241,72,0.08350504864695721],[127,241,73,0.07433323932567318],[127,241,74,0.06547165253891625],[127,241,75,0.05689790507913122],[127,241,76,0.04858233302065847],[127,241,77,0.04048910845088195],[127,241,78,0.032577400090513964],[127,241,79,0.031879844091566814],[127,242,64,0.1660656762466251],[127,242,65,0.15473749168710021],[127,242,66,0.14362306588823426],[127,242,67,0.13272353032547168],[127,242,68,0.12206359627523648],[127,242,69,0.1116832725555014],[127,242,70,0.1016098247062125],[127,242,71,0.09185810176783944],[127,242,72,0.08243155887874175],[127,242,73,0.07332331470400834],[127,242,74,0.06451724262318832],[127,242,75,0.055989094569807184],[127,242,76,0.047707656387349626],[127,242,77,0.039635933545704785],[127,242,78,0.03173236605237095],[127,242,79,0.029968228097745964],[127,243,64,0.16430879393862746],[127,243,65,0.153050380113654],[127,243,66,0.142008663551906],[127,243,67,0.13118587733290354],[127,243,68,0.12060698061689068],[127,243,69,0.11031080808330747],[127,243,70,0.10032299210659006],[127,243,71,0.09065646208127712],[127,243,72,0.08131260414499152],[127,243,73,0.07228244280591473],[127,243,74,0.06354784317763158],[127,243,75,0.0550827325097318],[127,243,76,0.04685433969460899],[127,243,77,0.038824451430565836],[127,243,78,0.03095068373195197],[127,243,79,0.027694474030648314],[127,244,64,0.16239253811667273],[127,244,65,0.1512122128239007],[127,244,66,0.14025110933576854],[127,244,67,0.12951275210674207],[127,244,68,0.11902265641482496],[127,244,69,0.10881884314631261],[127,244,70,0.09892564431603783],[127,244,71,0.08935436628315152],[127,244,72,0.08010458052061512],[127,244,73,0.07116542449162354],[127,244,74,0.06251691112848001],[127,244,75,0.054131245413451476],[127,244,76,0.04597414657190157],[127,244,77,0.03800617440651049],[127,244,78,0.030184058330821932],[127,244,79,0.025031499926425116],[127,245,64,0.16029852046857948],[127,245,65,0.14920292720073064],[127,245,66,0.13832851801829849],[127,245,67,0.127680248542118],[127,245,68,0.11728449356563464],[127,245,69,0.10717886246192264],[127,245,70,0.09738677422915305],[127,245,71,0.0879182715269141],[127,245,72,0.07877143304098391],[127,245,73,0.06993378557642503],[127,245,74,0.06138371418860972],[127,245,75,0.053091868682282106],[127,245,76,0.0450225648362429],[127,245,77,0.03713517874658626],[127,245,78,0.02938553272771396],[127,245,79,0.021952082225145487],[127,246,64,0.15801802632908316],[127,246,65,0.1470119047790174],[127,246,66,0.13622820812419584],[127,246,67,0.1256734040980948],[127,246,68,0.11537501352018407],[127,246,69,0.1053706651876789],[127,246,70,0.09568329535345754],[127,246,71,0.08632209538040828],[127,246,72,0.07728403305723394],[127,246,73,0.06855536492493618],[127,246,74,0.0601131377627796],[127,246,75,0.05192667741709541],[127,246,76,0.04395906319805317],[127,246,77,0.036168586119302404],[127,246,78,0.028510189316150875],[127,246,79,0.02093688904669062],[127,247,64,0.1555504152745083],[127,247,65,0.14463645992895943],[127,247,66,0.13394529054759627],[127,247,67,0.12348490316308425],[127,247,68,0.11328422374206482],[127,247,69,0.10338134682741523],[127,247,70,0.09379918680623424],[127,247,71,0.08454653824705602],[127,247,72,0.07561969060510537],[127,247,73,0.0670040270734586],[127,247,74,0.05867560559616115],[127,247,75,0.05060272010523969],[127,247,76,0.04274744009682266],[127,247,77,0.035067126723035316],[127,247,78,0.02751592364883971],[127,247,79,0.02004622100347487],[127,248,64,0.15290170757266783],[127,248,65,0.14208051363788107],[127,248,66,0.1314814397123758],[127,248,67,0.12111395863033793],[127,248,68,0.11100862444396697],[127,248,69,0.10120444608376925],[127,248,70,0.09172479474071472],[127,248,71,0.08257855273359498],[127,248,72,0.07376180349498421],[127,248,73,0.06525950083020107],[127,248,74,0.05704711536288303],[127,248,75,0.049092256134979806],[127,248,76,0.041356265390725205],[127,248,77,0.03379578464424286],[127,248,78,0.026364290211678923],[127,248,79,0.019013596478023437],[127,249,64,0.15008335983136817],[127,249,65,0.13935345561451506],[127,249,66,0.12884385034152454],[127,249,67,0.11856537457092292],[127,249,68,0.10855039027566403],[127,249,69,0.09883925909315028],[127,249,70,0.08945629238185278],[127,249,71,0.08041096187628187],[127,249,72,0.0716996447601021],[127,249,73,0.06330734521443858],[127,249,74,0.05520939028432528],[127,249,75,0.047373097965515865],[127,249,76,0.03975941548091616],[127,249,77,0.03232452579139125],[127,249,78,0.025021420472484734],[127,249,79,0.017801437183475925],[127,250,64,0.14711123319916147],[127,250,65,0.13646919793795098],[127,250,66,0.1260443828936858],[127,250,67,0.11584879286529746],[127,250,68,0.10591672959786455],[127,250,69,0.09629032342579655],[127,250,70,0.08699530078353247],[127,250,71,0.0780422280533083],[127,250,72,0.06942828999916469],[127,250,73,0.06113904397791491],[127,250,74,0.05315014773171005],[127,250,75,0.04542905862794073],[127,250,76,0.0379367022811818],[127,250,77,0.030629108569469286],[127,250,78,0.023459013146216907],[127,250,79,0.016377422646316666],[127,251,64,0.14400475744354824],[127,251,65,0.13344542343255786],[127,251,66,0.12309890067213546],[127,251,67,0.11297812658978465],[127,251,68,0.10311942389888876],[127,251,69,0.0935670741431008],[127,251,70,0.08434867231467022],[127,251,71,0.07547637429207515],[127,251,72,0.06694868601519259],[127,251,73,0.0587522298013612],[127,251,74,0.050863485600768046],[127,251,75,0.04325050504920963],[127,251,76,0.03587459624386284],[127,251,77,0.028691977244054694],[127,251,78,0.02165539638692095],[127,251,79,0.014715717604167938],[127,252,64,0.1407862941620355],[127,252,65,0.1303030318676888],[127,252,66,0.12002680151713421],[127,252,67,0.10997118284834496],[127,252,68,0.10017454979350518],[127,252,69,0.0906836740745743],[127,252,70,0.08152843873907276],[127,252,71,0.07272305952395075],[127,252,72,0.0642678619822336],[127,252,73,0.05615103907423436],[127,252,74,0.04835038704643344],[127,252,75,0.040835017476067936],[127,252,76,0.03356704342249145],[127,252,77,0.026503237698205413],[127,252,78,0.01959666135607092],[127,252,79,0.012798260581390445],[127,253,64,0.13748070226477577],[127,253,65,0.1270657869512718],[127,253,66,0.11685074685118832],[127,253,67,0.10684947758768823],[127,253,68,0.0971023858800601],[127,253,69,0.08765902030259251],[127,253,70,0.07855192556824625],[127,253,71,0.06979780914145595],[127,253,72,0.06139928416138494],[127,253,73,0.05334659794246478],[127,253,74,0.0456193439286508],[127,253,75,0.038188155025155976],[127,253,76,0.031016376286827026],[127,253,77,0.024061715006689157],[127,253,78,0.017277866324436158],[127,253,79,0.010616112559691065],[127,254,64,0.13411510870035653],[127,254,65,0.12376016690592966],[127,254,66,0.11359659065481352],[127,254,67,0.10363824473147541],[127,254,68,0.09392750651992039],[127,254,69,0.0845169286212076],[127,254,70,0.0754420341345385],[127,254,71,0.06672240197069502],[127,254,72,0.05836335493460538],[127,254,73,0.05035764004470308],[127,254,74,0.042687099044292784],[127,254,75,0.035324327097208987],[127,254,76,0.02823431770520509],[127,254,77,0.021376091938683936],[127,254,78,0.014704310138589907],[127,254,79,0.00817086432252347],[127,255,64,0.13071888717412544],[127,255,65,0.12041542118049377],[127,255,66,0.11029351070336899],[127,255,67,0.1003666417127291],[127,255,68,0.09067906433792111],[127,255,69,0.08128649746169657],[127,255,70,0.07222769255013944],[127,255,71,0.063525414481512],[127,255,72,0.05518805662559825],[127,255,73,0.047211256049042666],[127,255,74,0.03957950690181627],[127,255,75,0.032267770064626194],[127,255,76,0.02524307716977553],[127,255,77,0.01846612714974412],[127,255,78,0.011892873521700717],[127,255,79,0.00547610067933239],[127,256,64,0.12732384732584626],[127,256,65,0.11706383555329383],[127,256,66,0.10697434408810096],[127,256,67,0.09706815316737451],[127,256,68,0.08739126291888248],[127,256,69,0.07800265244723534],[127,256,70,0.06894447638083512],[127,256,71,0.06024292271484288],[127,256,72,0.051909740227402204],[127,256,73,0.04394377474545624],[127,256,74,0.03633251243099153],[127,256,75,0.029053628269254037],[127,256,76,0.022076537959133356],[127,256,77,0.015363951433655161],[127,256,78,0.008873426278526973],[127,256,79,0.0025589193661695302],[127,257,64,0.12396463313429731],[127,257,65,0.11374120409614474],[127,257,66,0.1036761252384113],[127,257,67,0.09378119080088555],[127,257,68,0.08410401758064683],[127,257,69,0.07470686943918008],[127,257,70,0.06563539702368722],[127,257,71,0.05691936020985386],[127,257,72,0.04857405779290145],[127,257,73,0.04060177510952697],[127,257,74,0.03299324788650118],[127,257,75,0.0257291406076452],[127,257,76,0.018781537694682222],[127,257,77,0.012115445810286625],[127,257,78,0.0056903056168656554],[127,257,79,-5.38488640565769E-4],[127,258,64,0.12068037675120954],[127,258,65,0.11048846582883542],[127,258,66,0.10044169592039742],[127,258,67,0.09055067034898824],[127,258,68,0.08086449304415344],[127,258,69,0.07144866536591213],[127,258,70,0.062352338035624275],[127,258,71,0.053608893072827644],[127,258,72,0.045237271165819645],[127,258,73,0.03724332587071633],[127,258,74,0.029621203061641583],[127,258,75,0.022354744035955162],[127,258,76,0.015418910667343976],[127,258,77,0.008781230997538527],[127,258,78,0.0024032636677624227],[127,258,79,-0.0037579203888597045],[127,259,64,0.11753519455878253],[127,259,65,0.10737020416256414],[127,259,66,0.09733620766227198],[127,259,67,0.08744250713783126],[127,259,68,0.07773950799484469],[127,259,69,0.0682957449867385],[127,259,70,0.05916373423567758],[127,259,71,0.050380412249947264],[127,259,72,0.041968356266388715],[127,259,73,0.033937039974580974],[127,259,74,0.02628412317451452],[127,259,75,0.018996773886346126],[127,259,76,0.01205302140518891],[127,259,77,0.005423138777144652],[127,259,78,-9.28946831537018E-4],[127,259,79,-0.007044217394759555],[127,260,64,0.11460212008522],[127,260,65,0.10445824507905974],[127,260,66,0.09443042491073622],[127,260,67,0.08452663312123647],[127,260,68,0.07479827286516505],[127,260,69,0.06531648625692923],[127,260,70,0.05613684854056993],[127,260,71,0.047299659372603046],[127,260,72,0.038831045853892604],[127,260,73,0.030744109392197953],[127,260,74,0.02304011508576864],[127,260,75,0.01570972227074649],[127,260,76,0.008734254834751848],[127,260,77,0.002087009867420075],[127,260,78,-0.004265396800625832],[127,260,79,-0.010361649628282376],[127,261,64,0.11193321209796397],[127,261,65,0.10180362794964512],[127,261,66,0.09177456730683334],[127,261,67,0.08185271220955928],[127,261,68,0.07209005690475757],[127,261,69,0.06255973685627143],[127,261,70,0.05331993261572034],[127,261,71,0.04441400666218261],[127,261,72,0.03587147438835947],[127,261,73,0.027709027465519044],[127,261,74,0.019931608431636025],[127,261,75,0.012533535284587964],[127,261,76,0.005499674806674324],[127,261,77,-0.001193336700366381],[127,261,78,-0.007575826625549564],[127,261,79,-0.013683774584821297],[127,262,64,0.10956011118723773],[127,262,65,0.09943725990990862],[127,262,66,0.08939904594584067],[127,262,67,0.07945094454859644],[127,262,68,0.06964505074942863],[127,262,69,0.06005572931454108],[127,262,70,0.05074319172187475],[127,262,71,0.0417534706254248],[127,262,72,0.033119240895629294],[127,262,73,0.024860701839962984],[127,262,74,0.016986519621709065],[127,262,75,0.009494828816718526],[127,262,76,0.002374291976344925],[127,262,77,-0.004394783998676904],[127,262,78,-0.010839275920072854],[127,262,79,-0.01699201809801439],[127,263,64,0.10749604006307965],[127,263,65,0.0973719203429828],[127,263,66,0.08731645403914794],[127,263,67,0.077334027129691],[127,263,68,0.06747628099346946],[127,263,69,0.057817932931315846],[127,263,70,0.04842055771485991],[127,263,71,0.03933239107067752],[127,263,72,0.03058898084144013],[127,263,73,0.02221390849468448],[127,263,74,0.01421958019293813],[127,263,75,0.006608086544252456],[127,263,76,-6.278699364339261E-4],[127,263,77,-0.007503980705477389],[127,263,78,-0.014043271527781426],[127,263,79,-0.020274978452314612],[127,264,64,0.10573797639364746],[127,264,65,0.09560443389033979],[127,264,66,0.08552372050692077],[127,264,67,0.07549926980737676],[127,264,68,0.06558167039364221],[127,264,69,0.05584503905553043],[127,264,70,0.04635158052090535],[127,264,71,0.03715121110175224],[127,264,72,0.028282018971015038],[127,264,73,0.019770804399853823],[127,264,74,0.011633699388441868],[127,264,75,0.0038768660111806524],[127,264,76,-0.0035027273095244007],[127,264,77,-0.010516452486188299],[127,264,78,-0.01718309237925997],[127,264,79,-0.02172882593450021],[127,265,64,0.10426899600866847],[127,265,65,0.09411800977864905],[127,265,66,0.08400442426681064],[127,265,67,0.07393086447326282],[127,265,68,0.06394624144265615],[127,265,69,0.05412307745937321],[127,265,70,0.04452343582786576],[127,265,71,0.03519835584506876],[127,265,72,0.02618810089500466],[127,265,73,0.017522496616412454],[127,265,74,0.009221358819961854],[127,265,75,0.001295010700695983],[127,265,76,-0.006255111234712738],[127,265,77,-0.011185246383058112],[127,265,78,-0.011875220968431322],[127,265,79,-0.012520666987963171],[127,266,64,0.10306078423238643],[127,266,65,0.09288474520113771],[127,266,66,0.08273126694424232],[127,266,67,0.07260230510701748],[127,266,68,0.06254446103585451],[127,266,69,0.05262766154265049],[127,266,70,0.042913046751683843],[127,266,71,0.0334522077040399],[127,266,72,0.02428720126169579],[127,266,73,0.015450665735004797],[127,266,74,0.0069660371773415854],[127,266,75,7.759393481524359E-4],[127,266,76,-2.996908100728786E-4],[127,266,77,-0.0012943523365761293],[127,266,78,-0.0022183176911193493],[127,266,79,-0.003088128965383099],[127,267,64,0.10207631305471968],[127,267,65,0.09186829044553198],[127,267,66,0.08166870169355771],[127,267,67,0.0714789564005521],[127,267,68,0.06134272394324269],[127,267,69,0.05132636010701741],[127,267,70,0.041489317257239304],[127,267,71,0.03188317597250924],[127,267,72,0.022551406412686992],[127,267,73,0.014344793328316568],[127,267,74,0.01286176579698976],[127,267,75,0.011446440558275317],[127,267,76,0.01010787926738687],[127,267,77,0.008847883201453454],[127,267,78,0.007661423947814433],[127,267,79,0.006537183780320456],[127,268,64,0.10127268179909069],[127,268,65,0.09102667341950871],[127,268,66,0.08077571578799396],[127,268,67,0.07052076863129732],[127,268,68,0.060301972791360535],[127,268,69,0.05018119344595877],[127,268,70,0.040215475134769606],[127,268,71,0.030455858677974495],[127,268,72,0.027579219143086888],[127,268,73,0.02580396044461758],[127,268,74,0.02406075802335185],[127,268,75,0.022370532161572056],[127,268,76,0.020747250051954037],[127,268,77,0.019198034667037317],[127,268,78,0.017723397029985738],[127,268,79,0.016317591510335842],[127,269,64,0.10060411890096509],[127,269,65,0.09031528118907767],[127,269,66,0.08000876461052989],[127,269,67,0.06968513644518345],[127,269,68,0.05938045225620846],[127,269,69,0.04915125150642874],[127,269,70,0.04348473322435153],[127,269,71,0.04153320646670653],[127,269,72,0.0395243801166888],[127,269,73,0.03749507784735596],[127,269,74,0.03547653546795013],[127,269,75,0.03349400855293594],[127,269,76,0.03156651708808043],[127,269,77,0.0297067273663796],[127,269,78,0.02792097116127324],[127,269,79,0.02620940200713357],[127,270,64,0.10002514237252111],[127,270,65,0.089689996115428],[127,270,66,0.07932485465699668],[127,270,67,0.06892989919949626],[127,270,68,0.05995581559280763],[127,270,69,0.05809555278148395],[127,270,70,0.05606205398784442],[127,270,71,0.053900136975154035],[127,270,72,0.05165212955661788],[127,270,73,0.04935690713923639],[127,270,74,0.04704907969028842],[127,270,75,0.044758329115669175],[127,270,76,0.042508897796790825],[127,270,77,0.04031922879403899],[127,270,78,0.038201757991599014],[127,270,79,0.03616285823257254],[127,271,64,0.09948338371683185],[127,271,65,0.08909996002278488],[127,271,66,0.07867443844142692],[127,271,67,0.07478016678700766],[127,271,68,0.07300712441732757],[127,271,69,0.07098971887395901],[127,271,70,0.06877003522771313],[127,271,71,0.0663911373979231],[127,271,72,0.06389562950344523],[127,271,73,0.061324379298716536],[127,271,74,0.058715405301330306],[127,271,75,0.05610292894620805],[127,271,76,0.053516592831167276],[127,271,77,0.05098084585128377],[127,271,78,0.04851449575679894],[127,271,79,0.046130429413324604],[127,272,64,0.0988919018730659],[127,272,65,0.09088947393109494],[127,272,66,0.08960341707372975],[127,272,67,0.08799994081573626],[127,272,68,0.08609505445765997],[127,272,69,0.0839208047923071],[127,272,70,0.08151480603041308],[127,272,71,0.07891810337377585],[127,272,72,0.07617339518592228],[127,272,73,0.07332343173412627],[127,272,74,0.07040959249346446],[127,272,75,0.06747064370423526],[127,272,76,0.06454167757477339],[127,272,77,0.06165323422436142],[127,272,78,0.05883060716755177],[127,272,79,0.05609333285385234],[127,273,64,0.09734845319880503],[127,273,65,0.09640223044343321],[127,273,66,0.09591063443420894],[127,273,67,0.09584466902197059],[127,273,68,0.09616771058762619],[127,273,69,0.09678953843627933],[127,273,70,0.09420232784492358],[127,273,71,0.09139320244269758],[127,273,72,0.08840474839113173],[127,273,73,0.08528142290051963],[127,273,74,0.08206781848645227],[127,273,75,0.07880712308698554],[127,273,76,0.07553977776113674],[127,273,77,0.07230233336137407],[127,273,78,0.069126507247909],[127,273,79,0.06603844079314844],[127,274,64,0.09167179451117885],[127,274,65,0.09081468214211141],[127,274,66,0.09045112462289495],[127,274,67,0.0905502591331886],[127,274,68,0.09107259070710666],[127,274,69,0.09197025925993724],[127,274,70,0.09318758253225512],[127,274,71,0.09466460432564511],[127,274,72,0.09633728555649657],[127,274,73,0.09713060030845837],[127,274,74,0.09363004098031995],[127,274,75,0.09006065131136838],[127,274,76,0.08646798834136116],[127,274,77,0.08289438556028887],[127,274,78,0.07937776460220873],[127,274,79,0.07595066457549937],[127,275,64,0.08637068446796431],[127,275,65,0.08560110178281866],[127,275,66,0.08536302159802384],[127,275,67,0.08562379914055313],[127,275,68,0.08634117186748974],[127,275,69,0.08746344715960741],[127,275,70,0.08892996586192314],[127,275,71,0.09067459463771343],[127,275,72,0.09262583053211398],[127,275,73,0.09470073509611626],[127,275,74,0.09678227503066594],[127,275,75,0.0987576649379936],[127,275,76,0.09728546084363521],[127,275,77,0.09339652391236598],[127,275,78,0.08955968602619686],[127,275,79,0.08581353248047624],[127,276,64,0.08146687768662109],[127,276,65,0.08078292486858613],[127,276,66,0.08066721095717277],[127,276,67,0.0810854065909205],[127,276,68,0.08199260349253346],[127,276,69,0.08333342206042937],[127,276,70,0.08504239442902384],[127,276,71,0.08704739936101813],[127,276,72,0.08926967868840147],[127,276,73,0.0916182998478623],[127,276,74,0.09397286465372329],[127,276,75,0.09621964588790222],[127,276,76,0.09827192650201355],[127,276,77,0.1000688208215999],[127,276,78,0.09964783076799721],[127,276,79,0.09560969156249002],[127,277,64,0.07698086398109771],[127,277,65,0.07638036101288026],[127,277,66,0.07638340428948742],[127,277,67,0.07695408866416797],[127,277,68,0.07804499858983738],[127,277,69,0.07959723508049055],[127,277,70,0.08154071744238545],[127,277,71,0.0837975593682675],[127,277,72,0.08628199581659068],[127,277,73,0.08889535163650952],[127,277,74,0.09151394457318096],[127,277,75,0.09402309722997593],[127,277,76,0.09633463723888669],[127,277,77,0.09838577886699246],[127,277,78,0.10013807990363677],[127,277,79,0.10157662811906143],[127,278,64,0.0729314865323536],[127,278,65,0.0724120084762192],[127,278,66,0.07252975083875524],[127,278,67,0.07324735172930796],[127,278,68,0.07451504194985664],[127,278,69,0.0762705910515239],[127,278,70,0.07843952713196833],[127,278,71,0.0809384530602707],[127,278,72,0.08367488257169503],[127,278,73,0.08654269042265422],[127,278,74,0.08941501499300619],[127,278,75,0.09217623437324857],[127,278,76,0.09473673464071142],[127,278,77,0.09703184675957643],[127,278,78,0.09902087717889835],[127,278,79,0.10068635791798275],[127,279,64,0.06933560299955421],[127,279,65,0.06889451196074475],[127,279,66,0.06912249269809018],[127,279,67,0.06998085466324006],[127,279,68,0.07141764229803305],[127,279,69,0.0733675001741787],[127,279,70,0.07575181050936175],[127,279,71,0.07848194873459369],[127,279,72,0.08145902781807657],[127,279,73,0.08456980335136072],[127,279,74,0.08768436186988765],[127,279,75,0.09068615636349897],[127,279,76,0.09348415961570355],[127,279,77,0.09601185087413122],[127,279,78,0.09822631316932995],[127,279,79,0.1001075397993626],[127,280,64,0.06620778957212753],[127,280,65,0.06584226366294194],[127,280,66,0.0661756635364229],[127,280,67,0.06716810593233247],[127,280,68,0.06876562840023381],[127,280,69,0.07089997377978435],[127,280,70,0.07348864535517352],[127,280,71,0.0764381012745694],[127,280,72,0.07964340636915856],[127,280,73,0.08298456374026209],[127,280,74,0.08632875727933448],[127,280,75,0.08955854773361022],[127,280,76,0.09258153701982258],[127,280,77,0.09532939878002022],[127,280,78,0.0977570349983688],[127,280,79,0.09984193125065566],[127,281,64,0.06356008796259877],[127,281,65,0.0632671475844232],[127,281,66,0.06370083085671252],[127,281,67,0.06482020443675457],[127,281,68,0.06656948912142069],[127,281,69,0.06887776419853242],[127,281,70,0.07165894043324306],[127,281,71,0.07481489315859946],[127,281,72,0.07823502112122671],[127,281,73,0.08179297452329859],[127,281,74,0.08535320428325721],[127,281,75,0.08879742487694087],[127,281,76,0.09203192357375295],[127,281,77,0.09498662868275909],[127,281,78,0.09761431767608764],[127,281,79,0.09989001322868912],[127,282,64,0.06140194853278047],[127,282,65,0.06117848035994389],[127,282,66,0.06170703508955999],[127,282,67,0.06294577744816554],[127,282,68,0.0648373107822649],[127,282,69,0.06730830208509814],[127,282,70,0.07026937328606941],[127,282,71,0.07361817314161245],[127,282,72,0.07723884291486899],[127,282,73,0.08099910943985644],[127,282,74,0.08476087951032457],[127,282,75,0.08840508003312264],[127,282,76,0.09183675320881574],[127,282,77,0.09498415601439347],[127,282,78,0.09779801173687991],[127,282,79,0.10025093855403178],[127,283,64,0.059740651188632976],[127,283,65,0.05958343035881647],[127,283,66,0.060201207358996256],[127,283,67,0.06155139752612837],[127,283,68,0.06357519372431869],[127,283,69,0.06619711312336007],[127,283,70,0.06932480753884873],[127,283,71,0.07285207453154446],[127,283,72,0.07665823001490368],[127,283,73,0.08060553378381052],[127,283,74,0.08455355512689072],[127,283,75,0.08838250435177342],[127,283,76,0.0919962610049686],[127,283,77,0.09532149792981603],[127,283,78,0.09830696787208326],[127,283,79,0.10092295614245184],[127,284,64,0.05858071530854897],[127,284,65,0.0584864256773574],[127,284,66,0.059187576105533546],[127,284,67,0.06064098833660936],[127,284,68,0.06278665786998927],[127,284,69,0.06554722383516098],[127,284,70,0.06882769940426164],[127,284,71,0.07251842277743653],[127,284,72,0.07649433710321968],[127,284,73,0.08061271503210898],[127,284,74,0.08473101128015526],[127,284,75,0.08872880229953978],[127,284,76,0.09250889967229625],[127,284,77,0.09599649192483245],[127,284,78,0.09913845768813356],[127,284,79,0.10190283383703413],[127,285,64,0.057923615086126146],[127,285,65,0.057888867979692504],[127,285,66,0.058667379909440764],[127,285,67,0.06021553694936216],[127,285,68,0.06247235497717896],[127,285,69,0.06535887424863024],[127,285,70,0.06877781117378656],[127,285,71,0.07261645013306223],[127,285,72,0.07674583138692914],[127,285,73,0.08101874056854369],[127,285,74,0.08529075553579807],[127,285,75,0.0894409128553712],[127,285,76,0.09337106248633831],[127,285,77,0.09700502042522763],[127,285,78,0.10028789978639324],[127,285,79,0.10318558573028114],[127,286,64,0.05776774189395373],[127,286,65,0.05778909376606739],[127,286,66,0.0586388280748662],[127,286,67,0.06027305416335521],[127,286,68,0.06263002913147164],[127,286,69,0.06562947896582372],[127,286,70,0.06917217323338215],[127,286,71,0.07314275893500621],[127,286,72,0.07740885736985725],[127,286,73,0.08181928407278],[127,286,74,0.0862279909198197],[127,286,75,0.09051357916545832],[127,286,76,0.09457705443663084],[127,286,77,0.09834098322436202],[127,286,78,0.10174883319428646],[127,286,79,0.10476444619540948],[127,287,64,0.05810840962833641],[127,287,65,0.058182378939396484],[127,287,66,0.05909710478586444],[127,287,67,0.06080857863513617],[127,287,68,0.0632545212317358],[127,287,69,0.06635363237696479],[127,287,70,0.07000509034617325],[127,287,71,0.07409132924120765],[127,287,72,0.07847704605828532],[127,287,73,0.08300761640517368],[127,287,74,0.08753562850199137],[127,287,75,0.09193936276128367],[127,287,76,0.0961191079284221],[127,287,77,0.09999631442691709],[127,287,78,0.10351293521426524],[127,287,79,0.10663088820302052],[127,288,64,0.05893790300785756],[127,288,65,0.059060986642941016],[127,288,66,0.06003441680721355],[127,288,67,0.061814224783014904],[127,288,68,0.06433781744202605],[127,288,69,0.0675231579941728],[127,288,70,0.07126819217502761],[127,288,71,0.07545357080286086],[127,288,72,0.0799415685738466],[127,288,73,0.08457466096028815],[127,288,74,0.0892043444938444],[127,288,75,0.09370870231374201],[127,288,76,0.09798744301055129],[127,288,77,0.10196104387182736],[127,288,78,0.10557008366369774],[127,288,79,0.10877468589630596],[127,289,64,0.0602455688259429],[127,289,65,0.060414258369276],[127,289,66,0.061440084730180644],[127,289,67,0.06327927446722059],[127,289,68,0.06586914160993845],[127,289,69,0.0691272019048293],[127,289,70,0.07295052804517055],[127,289,71,0.0772184193698161],[127,289,72,0.08179123417371381],[127,289,73,0.08650909348924624],[127,289,74,0.09122268186132848],[127,289,75,0.09581001692345459],[127,289,76,0.10017037212961344],[127,289,77,0.10422340303451383],[127,289,78,0.10790846350579308],[127,289,79,0.11118402142490064],[127,290,64,0.06201795015731082],[127,290,65,0.062228748340435125],[127,290,66,0.06330067776312504],[127,290,67,0.06519031244592571],[127,290,68,0.06783509165131207],[127,290,69,0.07115237034447802],[127,290,70,0.0750387059467375],[127,290,71,0.07937247732938485],[127,290,72,0.08401263267798531],[127,290,73,0.08879748639082785],[127,290,74,0.09357719645205542],[127,290,75,0.09822985394719824],[127,290,76,0.1026544494103323],[127,290,77,0.1067699754083491],[127,290,78,0.11051471787149347],[127,290,79,0.1138456360373144],[127,291,64,0.06423896351828301],[127,291,65,0.06448840115920279],[127,291,66,0.06560019206690887],[127,291,67,0.06753140560710319],[127,291,68,0.07021981990124293],[127,291,69,0.07358291138922313],[127,291,70,0.0775170757772245],[127,291,71,0.08190019867850373],[127,291,72,0.08659032130422362],[127,291,73,0.0914244974712618],[127,291,74,0.0962526476370722],[127,291,75,0.10095308136038827],[127,291,76,0.1054246644620806],[127,291,77,0.10958589136528535],[127,291,78,0.11337414347226471],[127,291,79,0.1167450254318727],[127,292,64,0.06689011898108754],[127,292,65,0.0671747727316917],[127,292,66,0.0683202726352527],[127,292,67,0.07028432597635759],[127,292,68,0.07300525743155056],[127,292,69,0.07640094076776627],[127,292,70,0.08036795682398173],[127,292,71,0.08478411832940902],[127,292,72,0.08950705590929664],[127,292,73,0.09437310317286857],[127,292,74,0.09923223346732268],[127,292,75,0.10396312465578056],[127,292,76,0.108464680711711],[127,292,77,0.11265506749581589],[127,292,78,0.11647093040395484],[127,292,79,0.11986667936633899],[127,293,64,0.06995078324204462],[127,293,65,0.07026729446108865],[127,293,66,0.07144047871991965],[127,293,67,0.07342881750061142],[127,293,68,0.07617138233458087],[127,293,69,0.079586711792966],[127,293,70,0.08357190948663051],[127,293,71,0.08800512574869696],[127,293,72,0.09274406663839974],[127,293,73,0.0976248762714268],[127,293,74,0.1024978703446705],[127,293,75,0.10724224827825984],[127,293,76,0.11175711826256784],[127,293,77,0.11596049042813511],[127,293,78,0.11978844634158825],[127,293,79,0.12319436552608096],[127,294,64,0.07339848564360979],[127,294,65,0.0737435807125505],[127,294,66,0.07493859280070897],[127,294,67,0.07694290660762765],[127,294,68,0.07969653197332294],[127,294,69,0.08311892941289728],[127,294,70,0.08710805123938176],[127,294,71,0.09154278292974927],[127,294,72,0.09628137798123437],[127,294,73,0.10116030804224102],[127,294,74,0.10603051720745932],[127,294,75,0.11077188159569312],[127,294,76,0.11528388127965516],[127,294,77,0.11948454512647422],[127,294,78,0.12330956512506897],[127,294,79,0.1267114576507597],[127,295,64,0.07720926715043952],[127,295,65,0.07757977954941014],[127,295,66,0.0787909731004201],[127,295,67,0.08080325654153192],[127,295,68,0.08355775919800557],[127,295,69,0.08697510838157801],[127,295,70,0.09095441683342442],[127,295,71,0.0953756866986949],[127,295,72,0.10009817323551845],[127,295,73,0.10495917489508777],[127,295,74,0.10981054423078923],[127,295,75,0.11453298940602741],[127,295,76,0.11902652990114326],[127,295,77,0.12320938766879672],[127,295,78,0.1270170397359806],[127,295,79,0.13040130791972632],[127,296,64,0.08135807227924874],[127,296,65,0.08175096674046423],[127,296,66,0.08297294964455798],[127,296,67,0.08498556547410158],[127,296,68,0.08773123252893955],[127,296,69,0.09113197554912589],[127,296,70,0.09508836273914606],[127,296,71,0.09948187535366493],[127,296,72,0.10417320337758074],[127,296,73,0.10900094947778882],[127,296,74,0.11381814604125684],[127,296,75,0.11850648698037702],[127,296,76,0.1229666966759572],[127,296,77,0.1271173625035927],[127,296,78,0.1308939196652196],[127,296,79,0.13424766359586232],[127,297,64,0.085819183982702],[127,297,65,0.08623158303858514],[127,297,66,0.08745926386602237],[127,297,67,0.08946500839206778],[127,297,68,0.09219268030585342],[127,297,69,0.09556591627159572],[127,297,70,0.09948701582843611],[127,297,71,0.1038392796375977],[127,297,72,0.10848524034030188],[127,297,73,0.113265256248677],[127,297,74,0.11803379944642511],[127,297,75,0.12267369964236935],[127,297,76,0.1270865475277168],[127,297,77,0.13119146418604677],[127,297,78,0.13492401267173806],[127,297,79,0.13823512792814202],[127,298,64,0.09056670148710749],[127,298,65,0.09099591473042357],[127,298,66,0.09222455175454808],[127,298,67,0.09421672276019488],[127,298,68,0.09691787880348401],[127,298,69,0.10025346494025839],[127,298,70,0.10412776629683168],[127,298,71,0.10842621804434793],[127,298,72,0.11301357469814938],[127,298,73,0.11773237151770044],[127,298,74,0.12243876567876893],[127,298,75,0.12701686688349226],[127,298,76,0.13136928724477054],[127,298,77,0.13541584359331763],[127,298,78,0.13909239093213355],[127,298,79,0.14234966531265267],[127,299,64,0.09557506108407676],[127,299,65,0.09601861745736712],[127,299,66,0.09724387055106087],[127,299,67,0.09921633796030238],[127,299,68,0.10188318431359139],[127,299,69,0.10517183963048904],[127,299,70,0.10898880482567624],[127,299,71,0.11322193645827439],[127,299,72,0.11773855775948705],[127,299,73,0.12238376795634645],[127,299,74,0.12701563715427658],[127,299,75,0.13151969101462593],[127,299,76,0.1357997094965082],[127,299,77,0.1397763586191165],[127,299,78,0.1433859415812725],[127,299,79,0.1465791507122602],[127,300,64,0.10081959987613409],[127,300,65,0.10127528330773922],[127,300,66,0.102493268986933],[127,300,67,0.1044405485062167],[127,300,68,0.10706610919338055],[127,300,69,0.11029952087025019],[127,300,70,0.11404970398427411],[127,300,71,0.11820719212728659],[127,300,72,0.12264218806613594],[127,300,73,0.127202703576362],[127,300,74,0.13174892874568572],[127,300,75,0.13616793035373592],[127,300,76,0.14036479137592617],[127,300,77,0.1442611693475578],[127,300,78,0.1477939616439225],[127,300,79,0.15091396333489476],[127,301,64,0.10627716247614771],[127,301,65,0.10674305118010652],[127,301,66,0.10795040106800868],[127,301,67,0.10986773103451619],[127,301,68,0.11244594188019724],[127,301,69,0.11561687452803204],[127,301,70,0.11929204387190517],[127,301,71,0.12336488196921624],[127,301,72,0.12770874230005297],[127,301,73,0.13217485517713576],[127,301,74,0.13662571357021755],[127,301,75,0.14095003694959135],[127,301,76,0.14505433246831123],[127,301,77,0.14886137770614782],[127,301,78,0.15230879735725658],[127,301,79,0.1553476245703194],[127,302,64,0.11192675066073754],[127,302,65,0.11240126041785548],[127,302,66,0.11359518340355634],[127,302,67,0.1154786050712347],[127,302,68,0.11800441087266117],[127,302,69,0.12110681882042035],[127,302,70,0.12470008199986773],[127,302,71,0.12868071521168206],[127,302,72,0.1329254505972969],[127,302,73,0.13728899626191363],[127,302,74,0.14163630329198115],[127,302,75,0.1458578388416814],[127,302,76,0.14986163844621664],[127,302,77,0.1535717115980848],[127,302,78,0.1569265278844053],[127,302,79,0.15987748018555856],[127,303,64,0.11775021597761337],[127,303,65,0.11823214771498602],[127,303,66,0.11941049608009968],[127,303,67,0.12125693757446754],[127,303,68,0.12372639267818109],[127,303,69,0.12675553543922924],[127,303,70,0.13026146741348937],[127,303,71,0.13414393036538425],[127,303,72,0.13828321626921702],[127,303,73,0.1425377194227812],[127,303,74,0.14677497293898215],[127,303,75,0.15088726685626264],[127,303,76,0.15478424919065945],[127,303,77,0.15839125351380057],[127,303,78,0.16164769341898538],[127,303,79,0.16450542677891394],[127,304,64,0.12373299530674303],[127,304,65,0.1242215872930279],[127,304,66,0.12538292708003052],[127,304,67,0.12719029125278936],[127,304,68,0.12960066372676132],[127,304,69,0.13255322479811335],[127,304,70,0.13596799905401913],[127,304,71,0.13974805653074673],[127,304,72,0.1437773799307828],[127,304,73,0.14791820319433258],[127,304,74,0.15204073023465509],[127,304,75,0.15603912593845776],[127,304,76,0.15982471143846533],[127,304,77,0.16332421362166805],[127,304,78,0.16647806768052967],[127,304,79,0.16923868249249405],[127,305,64,0.12986488937549714],[127,305,65,0.1303598743492193],[127,305,66,0.13150356024514392],[127,305,67,0.1332708166596209],[127,305,68,0.1356206962512354],[127,305,69,0.13849490539879264],[127,305,70,0.14181642836053437],[127,305,71,0.14549171903803726],[127,305,72,0.14940852803618504],[127,305,73,0.15343302337615478],[127,305,74,0.15743812944404773],[127,305,75,0.16131991102053378],[127,305,76,0.1649913959558827],[127,305,77,0.168380747337999],[127,305,78,0.1714294748009427],[127,305,79,0.17409060198337895],[127,306,64,0.13614088422774542],[127,306,65,0.1366425517759297],[127,306,66,0.13776880678507747],[127,306,67,0.13949608806352648],[127,306,68,0.14178549813391206],[127,306,69,0.14458125731687516],[127,306,70,0.1478093061118476],[127,306,71,0.15137948942095117],[127,306,72,0.15518334582169407],[127,306,73,0.1590910088241148],[127,306,74,0.16297812973464515],[127,306,75,0.16674266742634614],[127,306,76,0.1702993592384579],[127,306,77,0.1735778173763205],[127,306,78,0.17652065060197059],[127,306,79,0.1790815356534124],[127,307,64,0.14256106752383332],[127,307,65,0.14307032323221788],[127,307,66,0.14418030723771474],[127,307,67,0.1458689867834752],[127,307,68,0.1480994706734757],[127,307,69,0.1508184482434493],[127,307,70,0.15395477160099313],[127,307,71,0.1574216338395717],[127,307,72,0.16111432260550096],[127,307,73,0.164906902994999],[127,307,74,0.16867771385650607],[127,307,75,0.17232656875850563],[127,307,76,0.17576988365005533],[127,307,77,0.1789386999619283],[127,307,78,0.1817767193044243],[127,307,79,0.18423828169491477],[127,308,64,0.1491113111855223],[127,308,65,0.14962954607424647],[127,308,66,0.15072508716034197],[127,308,67,0.15237737880390756],[127,308,68,0.1545514778371308],[127,308,69,0.1571964787811333],[127,308,70,0.16024407750252292],[127,308,71,0.16361074487839938],[127,308,72,0.16719544670618036],[127,308,73,0.1708761119176847],[127,308,74,0.1745337126693037],[127,308,75,0.17806987020325865],[127,308,76,0.18140263592032385],[127,308,77,0.18446444484247157],[127,308,78,0.18720006722058763],[127,308,79,0.18956449765367633],[127,309,64,0.15575907109176454],[127,309,65,0.15628795761313452],[127,309,66,0.15737121265996296],[127,309,67,0.15898970220019892],[127,309,68,0.16111036803533393],[127,309,69,0.16368464076435713],[127,309,70,0.16664698657878435],[127,309,71,0.16991707801624242],[127,309,72,0.17339748247463352],[127,309,73,0.17696992192828384],[127,309,74,0.18051796355565758],[127,309,75,0.18394500819483486],[127,309,76,0.18717070978591707],[127,309,77,0.19012886421981048],[127,309,78,0.19276528320193434],[127,309,79,0.19503559974880125],[127,310,64,0.16246928622622092],[127,310,65,0.16301070819793223],[127,310,66,0.1640840927403241],[127,310,67,0.1656716679783664],[127,310,68,0.16774219302774612],[127,310,69,0.1702493603324986],[127,310,70,0.17313032746667187],[127,310,71,0.17630788677040757],[127,310,72,0.1796881249207525],[127,310,73,0.18315648283926647],[127,310,74,0.18659910032317234],[127,310,75,0.18992114914877023],[127,310,76,0.1930438640653103],[127,310,77,0.1959023732985154],[127,310,78,0.19844350134432148],[127,310,79,0.20062349762005388],[127,311,64,0.16920557112184392],[127,311,65,0.16976156454536612],[127,311,66,0.17082769768166495],[127,311,67,0.1723874974894019],[127,311,68,0.17441146806244803],[127,311,69,0.17685548406632284],[127,311,70,0.17965930953209305],[127,311,71,0.1827487682947664],[127,311,72,0.18603337723139346],[127,311,73,0.1894022175296191],[127,311,74,0.1927439938064283],[127,311,75,0.19596565887632972],[127,311,76,0.19899001772260416],[127,311,77,0.2017535070382803],[127,311,78,0.2042039348259312],[127,311,79,0.20629814015056763],[127,312,64,0.17593082785836553],[127,312,65,0.1765035218824199],[127,312,66,0.17756516992357013],[127,312,67,0.17910053072984303],[127,312,68,0.18108177638589606],[127,312,69,0.18346687864615904],[127,312,70,0.186198116796184],[127,312,71,0.18920425090932846],[127,312,72,0.192398131489196],[127,312,73,0.19567239570156653],[127,312,74,0.1989183185847609],[127,312,75,0.2020446621456995],[127,312,76,0.20497580210700245],[127,312,77,0.20764946485393887],[127,312,78,0.2100144127923974],[127,312,79,0.2120280441986163],[127,313,64,0.18260927543254557],[127,313,65,0.1832007562933865],[127,313,66,0.1842606979726267],[127,313,67,0.18577502067819973],[127,313,68,0.18771748319149656],[127,313,69,0.1900480639423115],[127,313,70,0.19271146007472462],[127,313,71,0.19563926560439232],[127,313,72,0.19874756029659724],[127,313,73,0.20193244682742867],[127,313,74,0.20508778872061167],[127,313,75,0.20812420283074595],[127,313,76,0.2109676472672987],[127,313,77,0.21355712497432278],[127,313,78,0.21584232474828233],[127,313,79,0.21778117110481568],[127,314,64,0.18920635554581186],[127,314,65,0.1898185442268256],[127,314,66,0.19087944837824466],[127,314,67,0.1923760765279536],[127,314,68,0.19428368896663206],[127,314,69,0.19656417543229204],[127,314,70,0.1991645475527767],[127,314,71,0.2020191240232347],[127,314,72,0.20504710161367587],[127,314,73,0.2081479514989488],[127,314,74,0.21121815531953914],[127,314,75,0.2141702473196977],[127,314,76,0.21693179077810484],[127,314,77,0.2194430581796464],[127,314,78,0.22165463861820556],[127,314,79,0.22352494840284343],[127,315,64,0.19568765127038712],[127,315,65,0.19632225900683592],[127,315,66,0.19738663888462207],[127,315,67,0.1988688121415238],[127,315,68,0.2007454518047792],[127,315,69,0.20298025885274334],[127,315,70,0.2055224502156616],[127,315,71,0.20830895310237887],[127,315,72,0.21126196106346964],[127,315,73,0.2142842098950888],[127,315,74,0.2172748395478403],[127,315,75,0.22014838026558536],[127,315,76,0.22283403419800987],[127,315,77,0.22527334273285543],[127,315,78,0.22741777170721955],[127,315,79,0.22922619415561268],[127,316,64,0.20201938996327962],[127,316,65,0.20267788051797647],[127,316,66,0.20374805363001613],[127,316,67,0.20521886555974803],[127,316,68,0.20706831010169963],[127,316,69,0.20926179506854492],[127,316,70,0.21175062801665848],[127,316,71,0.21447422183335785],[127,316,72,0.2173576387837915],[127,316,73,0.22030676843327468],[127,316,74,0.22322345886084358],[127,316,75,0.22602433014364043],[127,316,76,0.22864026767227796],[127,316,77,0.23101408769934167],[127,316,78,0.23309811235663946],[127,316,79,0.23485163650564544],[127,317,64,0.20816900861115784],[127,317,65,0.20885256458990342],[127,317,66,0.20993061534716467],[127,317,67,0.21139297285080053],[127,317,68,0.213218856969525],[127,317,69,0.21537527408073767],[127,317,70,0.21781550264811675],[127,317,71,0.2204813121361894],[127,317,72,0.223300497941535],[127,317,73,0.2261819856751166],[127,317,74,0.2290303901281316],[127,317,75,0.2317645294128753],[127,317,76,0.23431702692486175],[127,317,77,0.23663198653081388],[127,317,78,0.23866256983919104],[127,317,79,0.24036845954971575],[127,318,64,0.21410572632020144],[127,318,65,0.21481521944493212],[127,318,66,0.2159029645798807],[127,318,67,0.21735954896102047],[127,318,68,0.21916532166723124],[127,318,69,0.22128877608932393],[127,318,70,0.22368503742415882],[127,318,71,0.22629809691250286],[127,318,72,0.2290583404980065],[127,318,73,0.2318776055498995],[127,318,74,0.23466334014137297],[127,318,75,0.23733668213119588],[127,318,76,0.2398320577878992],[127,318,77,0.24209487828955084],[127,318,78,0.2440791320213664],[127,318,79,0.24574485713556288],[127,319,64,0.21980112395092688],[127,319,65,0.22053708920852005],[127,319,66,0.22163604591581432],[127,319,67,0.22308927556764474],[127,319,68,0.22487815804749753],[127,319,69,0.22697255961093926],[127,319,70,0.22932932427496588],[127,319,71,0.23189452527830914],[127,319,72,0.23460099022527692],[127,319,73,0.23736333789583342],[127,319,74,0.24009192350475367],[127,319,75,0.24271033902403627],[127,319,76,0.24515488826868234],[127,319,77,0.24737231651302422],[127,319,78,0.24931743079297325],[127,319,79,0.25095059458066277]] diff --git a/pumpkin-world/assets/converted_cave_entrances_overworld_7_4.json b/pumpkin-world/assets/converted_cave_entrances_overworld_7_4.json new file mode 100644 index 000000000..dbb92c373 --- /dev/null +++ b/pumpkin-world/assets/converted_cave_entrances_overworld_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,0.321811714890378],[112,-64,65,0.3273881843818058],[112,-64,66,0.33308182280495174],[112,-64,67,0.3388742406260318],[112,-64,68,0.3447711614596969],[112,-64,69,0.35078956077571355],[112,-64,70,0.35693883203531596],[112,-64,71,0.3632208999956168],[112,-64,72,0.3696307670120518],[112,-64,73,0.37615708600396036],[112,-64,74,0.3827827599826234],[112,-64,75,0.38948556795359074],[112,-64,76,0.39623881692075485],[112,-64,77,0.4030120196389912],[112,-64,78,0.409771597685285],[112,-64,79,0.41648160934622247],[112,-63,64,0.32263369493977206],[112,-63,65,0.3283034539659061],[112,-63,66,0.3340922428987884],[112,-63,67,0.3399831520551359],[112,-63,68,0.345981848877187],[112,-63,69,0.3521038721633531],[112,-63,70,0.35835709918779624],[112,-63,71,0.3647419361589651],[112,-63,72,0.3712519084561258],[112,-63,73,0.37787427387842026],[112,-63,74,0.3845906586776196],[112,-63,75,0.39137771606289284],[112,-63,76,0.39820780678690715],[112,-63,77,0.40504970134802704],[112,-63,78,0.4118693032732352],[112,-63,79,0.4186303928817097],[112,-62,64,0.3236553596436988],[112,-62,65,0.32940530256694645],[112,-62,66,0.33527471919089014],[112,-62,67,0.34124845773563944],[112,-62,68,0.34733203764460974],[112,-62,69,0.3535393105070185],[112,-62,70,0.35987655220696796],[112,-62,71,0.3663427107683738],[112,-62,72,0.3729300145680958],[112,-62,73,0.379624601210035],[112,-62,74,0.38640716676052256],[112,-62,75,0.39325363496672594],[112,-62,76,0.40013584600540963],[112,-62,77,0.4070222642397911],[112,-62,78,0.41387870439736885],[112,-62,79,0.42066907552246235],[112,-61,64,0.3248613355097535],[112,-61,65,0.33067871998102755],[112,-61,66,0.3366146518986968],[112,-61,67,0.34265597374489815],[112,-61,68,0.3488079873221303],[112,-61,69,0.3550826641279644],[112,-61,70,0.3614846344233486],[112,-61,71,0.36801147376881155],[112,-61,72,0.3746543054134081],[112,-61,73,0.3813984221932684],[112,-61,74,0.38822392762036084],[112,-61,75,0.39510639576726664],[112,-61,76,0.4020175494831925],[112,-61,77,0.40892595641067647],[112,-61,78,0.4157977422114314],[112,-61,79,0.42259732035445424],[112,-60,64,0.3262315145499725],[112,-60,65,0.33210434509474096],[112,-60,66,0.33809351538211235],[112,-60,67,0.3441880477319259],[112,-60,68,0.3503929742591998],[112,-60,69,0.356718247142155],[112,-60,70,0.36316684013982253],[112,-60,71,0.36973505701674514],[112,-60,72,0.37641310732429],[112,-60,73,0.38318570157722776],[112,-60,74,0.3900326655294973],[112,-60,75,0.3969295731815692],[112,-60,76,0.4038483980843062],[112,-60,77,0.4107581824412532],[112,-60,78,0.4176257234528213],[112,-60,79,0.42441627629282125],[112,-59,64,0.3277421768305084],[112,-59,65,0.3336596216861529],[112,-59,66,0.33969004546969256],[112,-59,67,0.3458247761850884],[112,-59,68,0.3520685344266787],[112,-59,69,0.3584291588677174],[112,-59,70,0.36490797766857613],[112,-59,71,0.3715001247643356],[112,-59,72,0.37819507213599757],[112,-59,73,0.3849771821644261],[112,-59,74,0.391826279827247],[112,-59,75,0.39871824443034903],[112,-59,76,0.4056256205005469],[112,-59,77,0.4125182474049704],[112,-59,78,0.4193639072057973],[112,-59,79,0.42612899020700845],[112,-58,64,0.3293673421915875],[112,-58,65,0.33532018324828944],[112,-58,66,0.34138165479062366],[112,-58,67,0.3475454478724452],[112,-58,68,0.3538159294689508],[112,-58,69,0.36019876188596456],[112,-58,70,0.3666936444696273],[112,-58,71,0.37329462745659237],[112,-58,72,0.379990588571178],[112,-58,73,0.3867657308791248],[112,-58,74,0.3936001017356587],[112,-58,75,0.4004701325996744],[112,-58,76,0.40734919942284603],[112,-58,77,0.414208203262941],[112,-58,78,0.4210161707145607],[112,-58,79,0.42774087369889097],[112,-57,64,0.3310803510823371],[112,-57,65,0.33706146675362414],[112,-57,66,0.3431460760137344],[112,-57,67,0.3493302133483284],[112,-57,68,0.3556178358696479],[112,-57,69,0.3620123786541766],[112,-57,70,0.36851191429605135],[112,-57,71,0.3751094587544438],[112,-57,72,0.3817933856933065],[112,-57,73,0.38854786333407126],[112,-57,74,0.3953533137440317],[112,-57,75,0.4021868944200541],[112,-57,76,0.4090230019663751],[112,-57,77,0.415833797607161],[112,-57,78,0.4225897542192673],[112,-57,79,0.4292602245191724],[112,-56,64,0.3328524409770311],[112,-56,65,0.33885677058340435],[112,-56,66,0.3449588980481358],[112,-56,67,0.35115709537120043],[112,-56,68,0.35745482591800526],[112,-56,69,0.3638532455996139],[112,-56,70,0.3703487771507009],[112,-56,71,0.376933406950023],[112,-56,72,0.38359503587283555],[112,-56,73,0.39031785359521004],[112,-56,74,0.39708273635310415],[112,-56,75,0.40386766809920244],[112,-56,76,0.4106481849422554],[112,-56,77,0.4173978426975104],[112,-56,78,0.42408870732290815],[112,-56,79,0.4306918679649384],[112,-55,64,0.33463439169423803],[112,-55,65,0.34065540329326305],[112,-55,66,0.34676821202468217],[112,-55,67,0.3529731250351836],[112,-55,68,0.3592730153097859],[112,-55,69,0.3656667710299844],[112,-55,70,0.372149202514158],[112,-55,71,0.37871132534344465],[112,-55,72,0.38534064493409564],[112,-55,73,0.3920214654355029],[112,-55,74,0.39873522303795117],[112,-55,75,0.4054608437176455],[112,-55,76,0.4121751253909405],[112,-55,77,0.4188531443955572],[112,-55,78,0.4254686861640091],[112,-55,79,0.4319946999043814],[112,-54,64,0.336372231425382],[112,-54,65,0.3424006758660741],[112,-54,66,0.3485148596869834],[112,-54,67,0.3547168362145536],[112,-54,68,0.3610087898873105],[112,-54,69,0.3673874381418424],[112,-54,70,0.3738461068503173],[112,-54,71,0.3803749885677996],[112,-54,72,0.3869613538997942],[112,-54,73,0.3935897885058314],[112,-54,74,0.4002424559175128],[112,-54,75,0.40689938629564776],[112,-54,76,0.41353879119744474],[112,-54,77,0.4201374043718083],[112,-54,78,0.4266708485487391],[112,-54,79,0.4331140281385485],[112,-53,64,0.3380187503226479],[112,-53,65,0.3440432064266948],[112,-53,66,0.3501475153781594],[112,-53,67,0.3563351182674911],[112,-53,68,0.36260741281333086],[112,-53,69,0.36895911302699297],[112,-53,70,0.37538226165797656],[112,-53,71,0.38186644711232237],[112,-53,72,0.388398931390926],[112,-53,73,0.39496480583551796],[112,-53,74,0.40154717497733566],[112,-53,75,0.408127368731192],[112,-53,76,0.4146851831245577],[112,-53,77,0.4211991496980957],[112,-53,78,0.4276468336609294],[112,-53,79,0.4340051608317548],[112,-52,64,0.33953403478785205],[112,-52,65,0.3455414036737822],[112,-52,66,0.3516231126733429],[112,-52,67,0.35778357979559183],[112,-52,68,0.36402332000328247],[112,-52,69,0.37033526778244397],[112,-52,70,0.3767104420565016],[112,-52,71,0.3831381011927619],[112,-52,72,0.38960577472114755],[112,-52,73,0.3960993262482065],[112,-52,74,0.4026030480067389],[112,-52,75,0.4090997874287104],[112,-52,76,0.4155711060746608],[112,-52,77,0.42199747119722664],[112,-52,78,0.4283584801599078],[112,-52,79,0.4346331178757519],[112,-51,64,0.3408860928123243],[112,-51,65,0.3468620322575098],[112,-51,66,0.35290734351418185],[112,-51,67,0.3590269748843965],[112,-51,68,0.36522046737739067],[112,-51,69,0.3714792442855025],[112,-51,70,0.3777936046033805],[112,-51,71,0.38415279240295847],[112,-51,72,0.3905449175938851],[112,-51,73,0.3969569127763395],[112,-51,74,0.4033745268048756],[112,-51,75,0.4097823556266144],[112,-51,76,0.41616391089875554],[112,-51,77,0.4225017268297353],[112,-51,78,0.4287775056257105],[112,-51,79,0.4349723018604007],[112,-50,64,0.34205162413397017],[112,-50,65,0.3479809225853682],[112,-50,66,0.35397530100373154],[112,-50,67,0.36003977164868173],[112,-50,68,0.36617281835666277],[112,-50,69,0.3723646554049139],[112,-50,70,0.37860519897255346],[112,-50,71,0.3848840248831164],[112,-50,72,0.3911901622199262],[112,-50,73,0.39751192968145727],[112,-50,74,0.4038368155090999],[112,-50,75,0.4101514017590159],[112,-50,76,0.41644133362458097],[112,-50,77,0.4226913344470861],[112,-50,78,0.4288852669802842],[112,-50,79,0.4350062414001403],[112,-49,64,0.3418629991051399],[112,-49,65,0.3482127625588628],[112,-49,66,0.35470824393977923],[112,-49,67,0.3608045130403342],[112,-49,68,0.36686347976420886],[112,-49,69,0.37297536576962137],[112,-49,70,0.37913004970229575],[112,-49,71,0.3853177879065274],[112,-49,72,0.39152886469899],[112,-49,73,0.3977532938868327],[112,-49,74,0.4039805726104687],[112,-49,75,0.41019948852229515],[112,-49,76,0.4163979812373256],[112,-49,77,0.42256305891130397],[112,-49,78,0.4286807707168424],[112,-49,79,0.43473623589968197],[112,-48,64,0.34101311916906674],[112,-48,65,0.34741648146645526],[112,-48,66,0.3539718967849312],[112,-48,67,0.36065839828437923],[112,-48,68,0.3672793811239767],[112,-48,69,0.37330263104509315],[112,-48,70,0.3793641058145301],[112,-48,71,0.3854550162567168],[112,-48,72,0.3915671520532442],[112,-48,73,0.39769243807662813],[112,-48,74,0.403822553397346],[112,-48,75,0.40994861423544454],[112,-48,76,0.41606092203974043],[112,-48,77,0.4221487777825963],[112,-48,78,0.42820036345716167],[112,-48,79,0.4342026916581549],[112,-47,64,0.3402627264170487],[112,-47,65,0.34671972681583757],[112,-47,66,0.3533333842959869],[112,-47,67,0.3600842450222693],[112,-47,68,0.366958432398047],[112,-47,69,0.3733437432549596],[112,-47,70,0.3793095538026231],[112,-47,71,0.385303010359437],[112,-47,72,0.3913175593820867],[112,-47,73,0.39734714867851734],[112,-47,74,0.40338570700065773],[112,-47,75,0.40942669940803184],[112,-47,76,0.4154627598386462],[112,-47,77,0.4214854022113495],[112,-47,78,0.4274848112641579],[112,-47,79,0.4334497142073587],[112,-46,64,0.33962238070816186],[112,-46,65,0.3461304502145842],[112,-46,66,0.35279773864863484],[112,-46,67,0.35960672881386224],[112,-46,68,0.36654520379717076],[112,-46,69,0.37310173460982254],[112,-46,70,0.378973497674604],[112,-46,71,0.38487305704616154],[112,-46,72,0.39079557754550054],[112,-46,73,0.39673704910581353],[112,-46,74,0.402693626096717],[112,-46,75,0.40866105507337974],[112,-46,76,0.41463419263684215],[112,-46,77,0.42060661496049584],[112,-46,78,0.4265703203974669],[112,-46,79,0.43251552643620716],[112,-45,64,0.33909533853432916],[112,-45,65,0.34564954582904445],[112,-45,66,0.35236329800572597],[112,-45,67,0.3592214023811872],[112,-45,68,0.3662134499233239],[112,-45,69,0.3725849001093209],[112,-45,70,0.37836754000765777],[112,-45,71,0.3841800816010337],[112,-45,72,0.39001938866231034],[112,-45,73,0.3958834308002914],[112,-45,74,0.401770484950685],[112,-45,75,0.4076784383961019],[112,-45,76,0.41360419523951975],[112,-45,77,0.4195431881037456],[112,-45,78,0.4254889966673316],[112,-45,79,0.43143307447699736],[112,-44,64,0.33867816095264525],[112,-44,65,0.3452714581461566],[112,-44,66,0.35202230328712253],[112,-44,67,0.3589181723064927],[112,-44,68,0.3659506179018755],[112,-44,69,0.37180629566443635],[112,-44,70,0.37750733578606505],[112,-44,71,0.3832422694231119],[112,-44,72,0.38900956764376793],[112,-44,73,0.3948090463474778],[112,-44,74,0.4006409352239608],[112,-44,75,0.40650506143380527],[112,-44,76,0.41240015015449244],[112,-44,77,0.4183232439623867],[112,-44,78,0.4242692428365862],[112,-44,79,0.430230566376573],[112,-43,64,0.33836133836781157],[112,-43,65,0.3449848075283496],[112,-43,66,0.35176151378751913],[112,-43,67,0.3586818945513371],[112,-43,68,0.3651967369012258],[112,-43,69,0.37078321045560525],[112,-43,70,0.37641211790641105],[112,-43,71,0.3820806563868396],[112,-43,72,0.3877887490749996],[112,-43,73,0.39353786423597453],[112,-43,74,0.39932995940380034],[112,-43,75,0.4051665532233373],[112,-43,76,0.41104792729106787],[112,-43,77,0.416972460138847],[112,-43,78,0.4229360952972754],[112,-43,79,0.4289319451579312],[112,-42,64,0.3381299339784135],[112,-42,65,0.3447730353530351],[112,-42,66,0.3515628433818354],[112,-42,67,0.35849299183864525],[112,-42,68,0.36401779773117654],[112,-42,69,0.36953661210766386],[112,-42,70,0.3751041930964933],[112,-42,71,0.3807186868431646],[112,-42,72,0.3863812586130586],[112,-42,73,0.3920947846852336],[112,-42,74,0.3978626815629743],[112,-42,75,0.40368787520821936],[112,-42,76,0.4095719128056486],[112,-42,77,0.4155142193457637],[112,-42,78,0.4215115010867135],[112,-42,79,0.4275572977143083],[112,-41,64,0.33796424781723794],[112,-41,65,0.3446150706469684],[112,-41,66,0.3514040191783786],[112,-41,67,0.3572306576804909],[112,-41,68,0.36262932685278626],[112,-41,69,0.36809056313525745],[112,-41,70,0.3736084068636722],[112,-41,71,0.3791817380694087],[112,-41,72,0.38481270793208605],[112,-41,73,0.39050531582386233],[112,-41,74,0.3962641350107427],[112,-41,75,0.4020931898732206],[112,-41,76,0.40799498728741257],[112,-41,77,0.41396970457079485],[112,-41,78,0.4200145361458328],[112,-41,79,0.42612320081283084],[112,-40,64,0.33784050342349115],[112,-40,65,0.3444860202356816],[112,-40,66,0.350456161359069],[112,-40,67,0.3557146050850106],[112,-40,68,0.3610573465637642],[112,-40,69,0.3664716069916935],[112,-40,70,0.37195157596395567],[112,-40,71,0.37749660984728733],[112,-40,72,0.3831095521127786],[112,-40,73,0.388795209362335],[112,-40,74,0.3945589862531618],[112,-40,75,0.4004056823036189],[112,-40,76,0.406338453323942],[112,-40,77,0.4123579399589825],[112,-40,78,0.41846156555961117],[112,-40,79,0.4246430053175113],[112,-39,64,0.3377315592837332],[112,-39,65,0.34374716961857055],[112,-39,66,0.3488325620404383],[112,-39,67,0.3540338568544502],[112,-39,68,0.35933014289161547],[112,-39,69,0.3647081219421708],[112,-39,70,0.37016188676684286],[112,-39,71,0.37569097772746485],[112,-39,72,0.38129860824710515],[112,-39,73,0.3869900547721278],[112,-39,74,0.39277121454297687],[112,-39,75,0.3986473342428863],[112,-39,76,0.40462191233674993],[112,-39,77,0.4106957776385626],[112,-39,78,0.4168663463576473],[112,-39,79,0.42312705957418417],[112,-38,64,0.3371740407139119],[112,-38,65,0.34204367802875635],[112,-38,66,0.34706584740197505],[112,-38,67,0.3522182759079648],[112,-38,68,0.357477552565942],[112,-38,69,0.3628296408789152],[112,-38,70,0.3682682577828802],[112,-38,71,0.3737928084256308],[112,-38,72,0.37940653390994417],[112,-38,73,0.38511483085765086],[112,-38,74,0.3909237461669807],[112,-38,75,0.39683865008315594],[112,-38,76,0.40286309043015406],[112,-38,77,0.40899783056248107],[112,-38,78,0.4152400732923361],[112,-38,79,0.42158287273265876],[112,-37,64,0.33542568539138845],[112,-37,65,0.3402209467393593],[112,-37,66,0.34518712029048354],[112,-37,67,0.35029886891185746],[112,-37,68,0.35553021535394774],[112,-37,69,0.36086613510172444],[112,-37,70,0.3662996645217244],[112,-37,71,0.3718297356900834],[112,-37,72,0.3774592640377834],[112,-37,73,0.38319341348872754],[112,-37,74,0.3890380424925105],[112,-37,75,0.39499833408869367],[112,-37,76,0.40107761285465415],[112,-37,77,0.40727635128735334],[112,-37,78,0.4135913678534093],[112,-37,79,0.4200152186147238],[112,-36,64,0.33358320754500836],[112,-36,65,0.3383107929173855],[112,-36,66,0.34322811968100514],[112,-36,67,0.34830698053329956],[112,-36,68,0.353518789586919],[112,-36,69,0.35884726000413875],[112,-36,70,0.3642844247597067],[112,-36,71,0.3698283948856453],[112,-36,72,0.37548140465234703],[112,-36,73,0.3812480381512779],[112,-36,74,0.3871336406762798],[112,-36,75,0.3931429180252784],[112,-36,76,0.3992787265494974],[112,-36,77,0.40554105646581123],[112,-36,78,0.4119262106224876],[112,-36,79,0.41842618057234576],[112,-35,64,0.33167842648377116],[112,-35,65,0.33634508480174413],[112,-35,66,0.34122036455659327],[112,-35,67,0.3462734496289844],[112,-35,68,0.35147312863815827],[112,-35,69,0.35680156053318485],[112,-35,70,0.3622494422176684],[112,-35,71,0.36781371445364214],[112,-35,72,0.37349558177417486],[112,-35,73,0.3792987158725075],[112,-35,74,0.38522764582818114],[112,-35,75,0.3912863382480831],[112,-35,76,0.3974769700986386],[112,-35,77,0.4037988966872951],[112,-35,78,0.4102478169198943],[112,-35,79,0.41681513761859157],[112,-34,64,0.329742582421928],[112,-34,65,0.3343548429613107],[112,-34,66,0.33919425808005044],[112,-34,67,0.344227724994733],[112,-34,68,0.349421416057547],[112,-34,69,0.3547556342300072],[112,-34,70,0.36021940658285323],[112,-34,71,0.36580816233331587],[112,-34,72,0.3715217437884809],[112,-34,73,0.37736260098496816],[112,-34,74,0.38333417332075154],[112,-34,75,0.38943946118803474],[112,-34,76,0.3956797903105285],[112,-34,77,0.40205377116705276],[112,-34,78,0.4085564555490232],[112,-34,79,0.4151786919551833],[112,-33,64,0.3278054051840933],[112,-33,65,0.3323693000116111],[112,-33,66,0.337178149591877],[112,-33,67,0.342196938264781],[112,-33,68,0.34738925702612855],[112,-33,69,0.3527332496113343],[112,-33,70,0.3582159477545489],[112,-33,71,0.3638309453681072],[112,-33,72,0.3695764154547705],[112,-33,73,0.37545330911311353],[112,-33,74,0.3814637398434641],[112,-33,75,0.3876095560735741],[112,-33,76,0.39389110451695614],[112,-33,77,0.40030618665534645],[112,-33,78,0.40684921030296006],[112,-33,79,0.4135105378671333],[112,-32,64,0.3258941396785334],[112,-32,65,0.3304149162754424],[112,-32,66,0.3351973519488701],[112,-32,67,0.34020493152609155],[112,-32,68,0.34539872376602504],[112,-32,69,0.35075441761774756],[112,-32,70,0.35625674215207814],[112,-32,71,0.36189715967083586],[112,-32,72,0.367671901692804],[112,-32,73,0.37358018369650275],[112,-32,74,0.37962260171997403],[112,-32,75,0.38579971363127274],[112,-32,76,0.39211080757959155],[112,-32,77,0.39855285981863076],[112,-32,78,0.40511968376385055],[112,-32,79,0.4118012718065819],[112,-31,64,0.32500993425290586],[112,-31,65,0.32851434887035286],[112,-31,66,0.33327311171274693],[112,-31,67,0.33827123720425206],[112,-31,68,0.34346735252729793],[112,-31,69,0.348834413834851],[112,-31,70,0.35435456889639866],[112,-31,71,0.36001688988568226],[112,-31,72,0.3658154392313237],[112,-31,73,0.37174750930639366],[112,-31,74,0.3778120389367037],[112,-31,75,0.3840082094257316],[112,-31,76,0.3903342224957562],[112,-31,77,0.39678626223263835],[112,-31,78,0.4033576427985476],[112,-31,79,0.4100381433456768],[112,-30,64,0.3266859753813445],[112,-30,65,0.32668537171987466],[112,-30,66,0.33142152970944927],[112,-30,67,0.33641000778498537],[112,-30,68,0.34160708977576926],[112,-30,69,0.3469827491894215],[112,-30,70,0.3525163136647397],[112,-30,71,0.3581942552638432],[112,-30,72,0.36400829417436503],[112,-30,73,0.3699536699690011],[112,-30,74,0.37602758327462177],[112,-30,75,0.3822278104285331],[112,-30,76,0.3885514934092568],[112,-30,77,0.3949941070258835],[112,-30,78,0.4015486050363981],[112,-30,79,0.4082047465441198],[112,-29,64,0.32835063278191107],[112,-29,65,0.3261556833571278],[112,-29,66,0.3296524295075802],[112,-29,67,0.33462889295916204],[112,-29,68,0.33982318522441235],[112,-29,69,0.3452020868345453],[112,-29,70,0.35074191802149235],[112,-29,71,0.356426400463891],[112,-29,72,0.36224480352302624],[112,-29,73,0.3681902506792606],[112,-29,74,0.3742581888928358],[112,-29,75,0.3804450233478081],[112,-29,76,0.38674691975794845],[112,-29,77,0.3931587761211333],[112,-29,78,0.3996733655066878],[112,-29,79,0.40628065115092515],[112,-28,64,0.3300023409746476],[112,-28,65,0.32791934444707066],[112,-28,66,0.32796817140928214],[112,-28,67,0.3329278618200211],[112,-28,68,0.3381130293863244],[112,-28,69,0.34348710296623225],[112,-28,70,0.34902327204857864],[112,-28,71,0.354702428997819],[112,-28,72,0.36051135868892437],[112,-28,73,0.3664410802741648],[112,-28,74,0.3724853436833288],[112,-28,75,0.37863928320490675],[112,-28,76,0.38489823022771313],[112,-28,77,0.3912566869426116],[112,-28,78,0.3977074625149808],[112,-28,79,0.40424097294270267],[112,-27,64,0.33163203686443843],[112,-27,65,0.3296551265339437],[112,-27,66,0.32761631601570035],[112,-27,67,0.33129796780149345],[112,-27,68,0.3364649333819318],[112,-27,69,0.34182328936153566],[112,-27,70,0.3473430481373249],[112,-27,71,0.3530022772721587],[112,-27,72,0.35878532905188704],[112,-27,73,0.3646812138373993],[112,-27,74,0.3706821197036322],[112,-27,75,0.3767820806155456],[112,-27,76,0.38297579513564634],[112,-27,77,0.38925759739101173],[112,-27,78,0.3956205817523235],[112,-27,79,0.40205588239540513],[112,-26,64,0.33322188995803587],[112,-26,65,0.3313420723866426],[112,-26,66,0.3294048822622708],[112,-26,67,0.32972005412461025],[112,-26,68,0.3348568488054663],[112,-26,69,0.3401856954932538],[112,-26,70,0.3456734738598597],[112,-26,71,0.35129552721871893],[112,-26,72,0.3570339236470332],[112,-26,73,0.36287585282531665],[112,-26,74,0.36881216099665726],[112,-26,75,0.3748360262178578],[112,-26,76,0.3809417758315992],[112,-26,77,0.38712384783494],[112,-26,78,0.3933758975571423],[112,-26,79,0.3996900507910285],[112,-25,64,0.33474385569645315],[112,-25,65,0.33294869774848357],[112,-25,66,0.3310988703997117],[112,-25,67,0.3291641251231546],[112,-25,68,0.3332551291119421],[112,-25,69,0.33853776575431643],[112,-25,70,0.34397525319123945],[112,-25,71,0.3495404191039884],[112,-25,72,0.3552133020734882],[112,-25,73,0.36097955912127405],[112,-25,74,0.36682900409332264],[112,-25,75,0.3727542790063344],[112,-25,76,0.37874966024398005],[112,-25,77,0.38481000124804154],[112,-25,78,0.3909298130984544],[112,-25,79,0.39710248411889165],[112,-24,64,0.3361548837319876],[112,-24,65,0.33443093126561285],[112,-24,66,0.3326532566062313],[112,-24,67,0.33079218189798],[112,-24,68,0.33162000303112626],[112,-24,69,0.33683933891034523],[112,-24,70,0.34220807794739344],[112,-24,71,0.3476968098521646],[112,-24,72,0.3532838496431873],[112,-24,73,0.35895364395748325],[112,-24,74,0.3646953019136025],[112,-24,75,0.3705012526178657],[112,-24,76,0.3763660311810151],[112,-24,77,0.3822851948792945],[112,-24,78,0.38825437085250836],[112,-24,79,0.39426843648361587],[112,-23,64,0.3374041362402547],[112,-23,65,0.33574056647508066],[112,-23,66,0.3340223675448533],[112,-23,67,0.33222053160414006],[112,-23,68,0.3302852645841466],[112,-23,69,0.33505955939802834],[112,-23,70,0.3403446040809806],[112,-23,71,0.3457411497889015],[112,-23,72,0.3512260585684296],[112,-23,73,0.35678282506504805],[112,-23,74,0.3624000968496593],[112,-23,75,0.3680703153999659],[112,-23,76,0.373788479594269],[112,-23,77,0.3795510333508935],[112,-23,78,0.385354878813751],[112,-23,79,0.3911965162451915],[112,-22,64,0.33844465983222144],[112,-22,65,0.33683338548184766],[112,-22,66,0.33516470707809976],[112,-22,67,0.33341046687180986],[112,-22,68,0.3315195960361074],[112,-22,69,0.33317199348494186],[112,-22,70,0.3383623103229096],[112,-22,71,0.34365514562648947],[112,-22,72,0.34902613860983867],[112,-22,73,0.35445802242770164],[112,-22,74,0.35993913861866683],[112,-22,75,0.36546206588792085],[112,-22,76,0.3710223650788073],[112,-22,77,0.3766174419674946],[112,-22,78,0.3822455292917176],[112,-22,79,0.3879047891944248],[112,-21,64,0.3392326165566277],[112,-21,65,0.337668171551767],[112,-21,66,0.3360417726082093],[112,-21,67,0.334326349698209],[112,-21,68,0.3324700363591513],[112,-21,69,0.3311528809857832],[112,-21,70,0.33624156536367134],[112,-21,71,0.341423643143176],[112,-21,72,0.3466737188555596],[112,-21,73,0.3519738875418704],[112,-21,74,0.357312254882343],[112,-21,75,0.3626815644380661],[112,-21,76,0.3680779338393751],[112,-21,77,0.3734997015515659],[112,-21,78,0.3789463856363746],[112,-21,79,0.38441775570851877],[112,-20,64,0.33874824630057754],[112,-20,65,0.33779958585241526],[112,-20,66,0.336483128774818],[112,-20,67,0.3348254344004973],[112,-20,68,0.3328802258605228],[112,-20,69,0.33070079205169595],[112,-20,70,0.3334697231414437],[112,-20,71,0.3385166766516567],[112,-20,72,0.343746733660644],[112,-20,73,0.3491563390213038],[112,-20,74,0.35452251143568525],[112,-20,75,0.35973752442402424],[112,-20,76,0.36496952182091014],[112,-20,77,0.3702176430774107],[112,-20,78,0.37548254716209356],[112,-20,79,0.3807654645686157],[112,-19,64,0.3375415678190022],[112,-19,65,0.33657062151775424],[112,-19,66,0.3352436066255265],[112,-19,67,0.33358541697368077],[112,-19,68,0.33164940724365394],[112,-19,69,0.32948999710619264],[112,-19,70,0.32951922060224836],[112,-19,71,0.33449911053067577],[112,-19,72,0.33967681546165585],[112,-19,73,0.3450496502890256],[112,-19,74,0.3506066759069611],[112,-19,75,0.3563301526533859],[112,-19,76,0.36171471604725525],[112,-19,77,0.36679480896876754],[112,-19,78,0.37188329010099225],[112,-19,79,0.3769826129700275],[112,-18,64,0.33621432235828763],[112,-18,65,0.3352084515552627],[112,-18,66,0.3338593308388768],[112,-18,67,0.33218990017612265],[112,-18,68,0.3302525325665677],[112,-18,69,0.32810219591014267],[112,-18,70,0.3257808692374427],[112,-18,71,0.3304581937988102],[112,-18,72,0.33557414087042864],[112,-18,73,0.34089976496568536],[112,-18,74,0.3464249352288134],[112,-18,75,0.35213249305435707],[112,-18,76,0.3579995637449889],[112,-18,77,0.3632509067790448],[112,-18,78,0.3681743169473752],[112,-18,79,0.3731005725519888],[112,-17,64,0.3347889259399885],[112,-17,65,0.3337334527440275],[112,-17,66,0.3323483199997348],[112,-17,67,0.3306542438339447],[112,-17,68,0.32870199999472094],[112,-17,69,0.3265465118125724],[112,-17,70,0.3242302066543556],[112,-17,71,0.32638118273334593],[112,-17,72,0.3314215830175841],[112,-17,73,0.33668499490824294],[112,-17,74,0.34216235520323235],[112,-17,75,0.3478374189564757],[112,-17,76,0.35368799402524004],[112,-17,77,0.35958902824522476],[112,-17,78,0.36436263415642123],[112,-17,79,0.36913005690631323],[112,-16,64,0.3332181139473617],[112,-16,65,0.3320993931591504],[112,-16,66,0.3306657807632877],[112,-16,67,0.32893556639588056],[112,-16,68,0.32695732151417983],[112,-16,69,0.32478529128468747],[112,-16,70,0.3224619437136783],[112,-16,71,0.3222218179003983],[112,-16,72,0.3271762839414308],[112,-16,73,0.3323660261535254],[112,-16,74,0.33778321922475274],[112,-16,75,0.34341277478403925],[112,-16,76,0.3492334745283861],[112,-16,77,0.35521905758338235],[112,-16,78,0.3604316526625224],[112,-16,79,0.36505122237245785],[112,-15,64,0.3314487759536382],[112,-15,65,0.3302549136586106],[112,-15,66,0.32876251273811596],[112,-15,67,0.3269873036584396],[112,-15,68,0.3249750643380325],[112,-15,69,0.3227786936190456],[112,-15,70,0.3204402329149521],[112,-15,71,0.31799154674501023],[112,-15,72,0.3227963862403607],[112,-15,73,0.3279053167113009],[112,-15,74,0.3332543200780568],[112,-15,75,0.3388296005559046],[112,-15,76,0.34461110083500424],[112,-15,77,0.3505734878304448],[112,-15,78,0.3563630984741009],[112,-15,79,0.36084224114109026],[112,-14,64,0.3294405717443709],[112,-14,65,0.3281613492739092],[112,-14,66,0.3266017334031329],[112,-14,67,0.32477482306851063],[112,-14,68,0.3227230419060227],[112,-14,69,0.3204972594502907],[112,-14,70,0.3181385845202493],[112,-14,71,0.31567878811149297],[112,-14,72,0.3182477673449306],[112,-14,73,0.3232716984423208],[112,-14,74,0.32854739568471303],[112,-14,75,0.3340624086074647],[112,-14,76,0.3397979475663717],[112,-14,77,0.3457297522587933],[112,-14,78,0.35182895605737663],[112,-14,79,0.3564867360445159],[112,-13,64,0.32716401821075813],[112,-13,65,0.32579082418757627],[112,-13,66,0.32415721216717264],[112,-13,67,0.32227362871353277],[112,-13,68,0.32017862186827906],[112,-13,69,0.3179203540193341],[112,-13,70,0.3155384769028795],[112,-13,71,0.31306428275266873],[112,-13,72,0.3135030435575983],[112,-13,73,0.3184396340482283],[112,-13,74,0.32363866229985905],[112,-13,75,0.32908901271498003],[112,-13,76,0.3347732091858789],[112,-13,77,0.3406681535401135],[112,-13,78,0.3467458833924232],[112,-13,79,0.35197256824278333],[112,-12,64,0.3245987346938984],[112,-12,65,0.3231245027437105],[112,-12,66,0.32141155622379464],[112,-12,67,0.31946771197220686],[112,-12,68,0.3173271713898087],[112,-12,69,0.3150347368057536],[112,-12,70,0.31262807943773696],[112,-12,71,0.31013761010376584],[112,-12,72,0.30854064981941476],[112,-12,73,0.3133885270824316],[112,-12,74,0.31850837535555154],[112,-12,75,0.32389035712055125],[112,-12,76,0.3295183109510178],[112,-12,77,0.33537034969019675],[112,-12,78,0.34141950246096237],[112,-12,79,0.3472907507831846],[112,-11,64,0.32173184701045626],[112,-11,65,0.32015099659388013],[112,-11,66,0.3183546481920432],[112,-11,67,0.3163480477261912],[112,-11,68,0.31416063960407564],[112,-11,69,0.31183325729682704],[112,-11,70,0.3094010876506602],[112,-11,71,0.3068932576728469],[112,-11,72,0.3043328447923589],[112,-11,73,0.3081020845965962],[112,-11,74,0.313140417553339],[112,-11,75,0.3184503450638631],[112,-11,76,0.324016989644345],[112,-11,77,0.32981969528248334],[112,-11,78,0.33583254636976734],[112,-11,79,0.34202495408365075],[112,-10,64,0.31855655095421065],[112,-10,65,0.31686492864161137],[112,-10,66,0.3149822360831529],[112,-10,67,0.3129112365621441],[112,-10,68,0.31067627754337246],[112,-10,69,0.30831367712156665],[112,-10,70,0.3058556707544282],[112,-10,71,0.3033297156228834],[112,-10,72,0.30075822666705226],[112,-10,73,0.30256773223696004],[112,-10,74,0.3075219139189102],[112,-10,75,0.3127556664397565],[112,-10,76,0.31825534362040864],[112,-10,77,0.3240015206262565],[112,-10,78,0.3299693846799139],[112,-10,79,0.3361292179184014],[112,-9,64,0.31507083659865287],[112,-9,65,0.31326565497761405],[112,-9,66,0.3112946766521195],[112,-9,67,0.30915829389392246],[112,-9,68,0.30687549634681965],[112,-9,69,0.3044776192144792],[112,-9,70,0.3019935320887555],[112,-9,71,0.29944866712784607],[112,-9,72,0.29686448108171143],[112,-9,73,0.2967760817951825],[112,-9,74,0.30164287363791287],[112,-9,75,0.30679562421484474],[112,-9,76,0.3122218516209652],[112,-9,77,0.3179033481912619],[112,-9,78,0.3238164399448425],[112,-9,79,0.32993236231932804],[112,-8,64,0.31127637521835355],[112,-8,65,0.30935614649010074],[112,-8,66,0.30729583367697394],[112,-8,67,0.30509358740224535],[112,-8,68,0.30276286498942645],[112,-8,69,0.3003296450825031],[112,-8,70,0.29781908334727347],[112,-8,71,0.2952542751734257],[112,-8,72,0.2926554486146296],[112,-8,73,0.2907204514004086],[112,-8,74,0.2954958585953114],[112,-8,75,0.30056195925352047],[112,-8,76,0.3059073597353142],[112,-8,77,0.3115150453870638],[112,-8,78,0.31736250777364383],[112,-8,79,0.3234220113639997],[112,-7,64,0.30717757109893157],[112,-7,65,0.30514203228778236],[112,-7,66,0.3029921331553772],[112,-7,67,0.3007239246216545],[112,-7,68,0.29834524918587074],[112,-7,69,0.29587646162808834],[112,-7,70,0.29333873381462655],[112,-7,71,0.2907525667650926],[112,-7,72,0.28813672400437157],[112,-7,73,0.28550732787578226],[112,-7,74,0.2890756786387429],[112,-7,75,0.2940486732221879],[112,-7,76,0.29930503581530254],[112,-7,77,0.3048289126472559],[112,-7,78,0.3105989790176876],[112,-7,79,0.3165885967177833],[112,-6,64,0.30278078091348115],[112,-6,65,0.3006308074837604],[112,-6,66,0.29839177781424603],[112,-6,67,0.29605779289874445],[112,-6,68,0.293631093497289],[112,-6,69,0.29112625932869146],[112,-6,70,0.28856029614885315],[112,-6,71,0.28595091577499065],[112,-6,72,0.28331522371070994],[112,-6,73,0.28066858911299863],[112,-6,74,0.28237911367853996],[112,-6,75,0.28725184926035097],[112,-6,76,0.29241029059611284],[112,-6,77,0.2978397056270538],[112,-6,78,0.30351996245008184],[112,-6,79,0.30942557900022594],[112,-5,64,0.2980937037022443],[112,-5,65,0.2958312082516974],[112,-5,66,0.2935041236887926],[112,-5,67,0.29110475429684873],[112,-5,68,0.288629849004088],[112,-5,69,0.28608818388405877],[112,-5,70,0.28349251052448193],[112,-5,71,0.28085762590138635],[112,-5,72,0.2781988322083855],[112,-5,73,0.27553059634638866],[112,-5,74,0.27540466282458503],[112,-5,75,0.28016947013012966],[112,-5,76,0.2852206647269234],[112,-5,77,0.2905445902011461],[112,-5,78,0.29612230610739504],[112,-5,79,0.30192953318805366],[112,-4,64,0.2931249447997114],[112,-4,65,0.290752757378894],[112,-4,66,0.28833922184024513],[112,-4,67,0.285874998328401],[112,-4,68,0.2833515492005334],[112,-4,69,0.2807719437157046],[112,-4,70,0.27814468919871943],[112,-4,71,0.2754816154289078],[112,-4,72,0.2727961282771777],[112,-4,73,0.2701016779843943],[112,-4,74,0.26815232084062346],[112,-4,75,0.2728012335801885],[112,-4,76,0.2777356808789272],[112,-4,77,0.2829430288467082],[112,-4,78,0.2884055152920983],[112,-4,79,0.29410009547324667],[112,-3,64,0.28788375730535914],[112,-3,65,0.2854054838004694],[112,-3,66,0.2829075285429463],[112,-3,67,0.28037905565352184],[112,-3,68,0.2778065370142936],[112,-3,69,0.27518755593491007],[112,-3,70,0.2725264837740167],[112,-3,71,0.26983220566228394],[112,-3,72,0.2671161927044777],[112,-3,73,0.26439080125229464],[112,-3,74,0.26166780054043914],[112,-3,75,0.26514836468569],[112,-3,76,0.26995666007249314],[112,-3,77,0.275036596915438],[112,-3,78,0.28037156509433564],[112,-3,79,0.28593976879319166],[112,-2,64,0.2823799648852266],[112,-2,65,0.27979981979918406],[112,-2,66,0.27721978747611553],[112,-2,67,0.2746276760868422],[112,-2,68,0.27200534605134297],[112,-2,69,0.2693452335817922],[112,-2,70,0.2666477776009861],[112,-2,71,0.2639190150570211],[112,-2,72,0.26116849894296174],[112,-2,73,0.25840745312255786],[112,-2,74,0.25564716540101246],[112,-2,75,0.2572134249556145],[112,-2,76,0.2618865013540981],[112,-2,77,0.26682872724279577],[112,-2,78,0.27202460518818106],[112,-2,79,0.2774535840959092],[112,-1,64,0.2766240698204098],[112,-1,65,0.2739466796954383],[112,-1,66,0.27128708760221354],[112,-1,67,0.2686318744031276],[112,-1,68,0.2659587393127165],[112,-1,69,0.26325541707779476],[112,-1,70,0.2605187058956506],[112,-1,71,0.2577519611873228],[112,-1,72,0.25496288836638853],[112,-1,73,0.25216157939305517],[112,-1,74,0.24935879467665062],[112,-1,75,0.24900011802820354],[112,-1,76,0.2535294239533426],[112,-1,77,0.2583243815093843],[112,-1,78,0.26337055458833536],[112,-1,79,0.2686486142954397],[112,0,64,0.2706275502783645],[112,0,65,0.26785772392484364],[112,0,66,0.2651211004959774],[112,0,67,0.2624031475195775],[112,0,68,0.2596779087185459],[112,0,69,0.2569289529216836],[112,0,70,0.25414980622912553],[112,0,71,0.25134137276985896],[112,0,72,0.24850963183687866],[112,0,73,0.24566358305957445],[112,0,74,0.24281344127756796],[112,0,75,0.2405130918088527],[112,0,76,0.24489067106617782],[112,0,77,0.24952964676471034],[112,0,78,0.2544165840252468],[112,0,79,0.25953333781852966],[112,1,64,0.2644033543513013],[112,1,65,0.26154581503425534],[112,1,66,0.25873450278020915],[112,1,67,0.25595386795895547],[112,1,68,0.2531748396805595],[112,1,69,0.25037742326824414],[112,1,70,0.24755230247306756],[112,1,71,0.2446982143125666],[112,1,72,0.24181957968387785],[112,1,73,0.23892438366811744],[112,1,74,0.23602230726869522],[112,1,75,0.23312311174446124],[112,1,76,0.23597617616377622],[112,1,77,0.24045125794939112],[112,1,78,0.24517048682998543],[112,1,79,0.2501168528149284],[112,2,64,0.25796659741087075],[112,2,65,0.25502566973476576],[112,2,66,0.2521415858549399],[112,2,67,0.24929785423802492],[112,2,68,0.24646284013546096],[112,2,69,0.243613624795428],[112,2,70,0.24073851977270017],[112,2,71,0.23783442027209523],[112,2,72,0.2349043964286732],[112,2,73,0.23195553357641976],[112,2,74,0.22899702330536914],[112,2,75,0.22603850652189011],[112,2,76,0.22679218759750572],[112,2,77,0.23109604255645969],[112,2,78,0.2356399350809731],[112,2,79,0.24040793964529283],[112,3,64,0.2513354260968208],[112,3,65,0.24831468127145342],[112,3,66,0.24535903574873663],[112,3,67,0.24245110740609246],[112,3,68,0.2395572278567899],[112,3,69,0.2366521937361379],[112,3,70,0.23372242909383598],[112,3,71,0.2307633376018543],[112,3,72,0.2277768781264866],[112,3,73,0.22476938659093074],[112,3,74,0.22174964596739213],[112,3,75,0.218727205653736],[112,3,76,0.21734483070980407],[112,3,77,0.22147025805113615],[112,3,78,0.22583158145218654],[112,3,79,0.2304139203786215],[112,4,64,0.2445321055248359],[112,4,65,0.2414339596104888],[112,4,66,0.23840692321446208],[112,4,67,0.23543274803821718],[112,4,68,0.23247620585410045],[112,4,69,0.22951040356925032],[112,4,70,0.2265203456566476],[112,4,71,0.223500299970595],[112,4,72,0.22045137578206708],[112,4,73,0.21737934390277106],[112,4,74,0.2142927007625089],[112,4,75,0.21120097772536853],[112,4,76,0.20811329635328646],[112,4,77,0.2115788673118418],[112,4,78,0.2157500609157215],[112,4,79,0.22013937981129206],[112,5,64,0.23758432586642583],[112,5,65,0.23440958508418994],[112,5,66,0.2313098993225512],[112,5,67,0.22826614865668257],[112,5,68,0.22524192059883782],[112,5,69,0.22220912984615784],[112,5,70,0.2191517753839498],[112,5,71,0.2160633273050577],[112,5,72,0.21294431786646226],[112,5,73,0.20980016955955946],[112,5,74,0.2066392620779472],[112,5,75,0.2034712394945917],[112,5,76,0.20030555839037395],[112,5,77,0.20142473959398505],[112,5,78,0.2053968783067407],[112,5,79,0.20958473244873654],[112,6,64,0.23052672385670617],[112,6,65,0.22727407260758128],[112,6,66,0.2240985948548425],[112,6,67,0.22098026073210605],[112,6,68,0.2178817027700114],[112,6,69,0.21477398209306323],[112,6,70,0.21164040925676095],[112,6,71,0.2084739501999292],[112,6,72,0.20527483081539874],[112,6,73,0.2020483733656964],[112,6,74,0.19880306665031283],[112,6,75,0.19554887126659404],[112,6,76,0.19229576074382315],[112,6,77,0.19100776759743163],[112,6,78,0.1947691696922535],[112,6,79,0.19874462046729127],[112,7,64,0.22340069849935085],[112,7,65,0.22006694365004364],[112,7,66,0.21681087740254432],[112,7,67,0.21361152727150984],[112,7,68,0.2104306568200723],[112,7,69,0.2072386284630614],[112,7,70,0.2040182595496904],[112,7,71,0.200762237605774],[112,7,72,0.197470729430983],[112,7,73,0.194149217475813],[112,7,74,0.19080656544077268],[112,7,75,0.18745331448177996],[112,7,76,0.184100210849201],[112,7,77,0.18075696523692109],[112,7,78,0.18387159719108123],[112,7,79,0.18762055215388315],[112,8,64,0.2162420746600443],[112,8,65,0.21282554928126501],[112,8,66,0.20948561601420596],[112,8,67,0.20620051213002752],[112,8,68,0.202931302079587],[112,8,69,0.19964778756549986],[112,8,70,0.19633244918347767],[112,8,71,0.19297786749424617],[112,8,72,0.18958433192395518],[112,8,73,0.18615767266261768],[112,8,74,0.18270731754773858],[112,8,75,0.1792445753671579],[112,8,76,0.17578114646380763],[112,8,77,0.17232786097908143],[112,8,78,0.17276476783153652],[112,8,79,0.17627420428911253],[112,9,64,0.2090759185470597],[112,9,65,0.20557728901188224],[112,9,66,0.2021525471425407],[112,9,67,0.1987794835336977],[112,9,68,0.19541876576728417],[112,9,69,0.19203981286932573],[112,9,70,0.1886249195845839],[112,9,71,0.18516668938033168],[112,9,72,0.181665646325748],[112,9,73,0.1781280654026836],[112,9,74,0.1745640232798418],[112,9,75,0.1709856710354758],[112,9,76,0.16740572976842888],[112,9,77,0.16383620949712865],[112,9,78,0.1615181205047372],[112,9,79,0.16477788368059998],[112,10,64,0.20191903478595474],[112,10,65,0.19834095513466193],[112,10,66,0.1948325402820803],[112,10,67,0.19137161324897237],[112,10,68,0.18791884777324877],[112,10,69,0.18444349433084417],[112,10,70,0.18092780866827893],[112,10,71,0.17736451078007517],[112,10,72,0.17375440983149448],[112,10,73,0.1701042421757788],[112,10,74,0.16642472453539311],[112,10,75,0.1627288238781561],[112,10,76,0.15903024498200163],[112,10,77,0.1553421361497859],[112,10,78,0.15167601301163525],[112,10,79,0.15319327513287087],[112,11,64,0.19478216092955095],[112,11,65,0.1911289283990883],[112,11,66,0.18753976843555792],[112,11,67,0.18399309968578226],[112,11,68,0.18045007495431972],[112,11,69,0.17688002014113785],[112,11,70,0.1732652946376396],[112,11,71,0.16959879673095038],[112,11,72,0.16588161750981525],[112,11,73,0.1621209013445662],[112,11,74,0.15832791503399746],[112,11,75,0.15451632718494926],[112,11,76,0.15070069886465973],[112,11,77,0.14689518604471621],[112,11,78,0.14311245384220742],[112,11,79,0.14157112083468323],[112,12,64,0.18767239855680673],[112,12,65,0.18394960570274296],[112,12,66,0.1802841040391421],[112,12,67,0.17665550740400335],[112,12,68,0.17302596014325952],[112,12,69,0.16936512900562023],[112,12,70,0.16565561383676336],[112,12,71,0.16189052483179983],[112,12,72,0.15807118621890828],[112,12,73,0.1542050384596771],[112,12,74,0.15030374106258262],[112,12,75,0.14638147759484102],[112,12,76,0.14245346396778436],[112,12,77,0.1385346605650205],[112,12,78,0.13463868828428535],[112,12,79,0.13077694807675164],[112,13,64,0.18059588605629773],[112,13,65,0.1768100646045763],[112,13,66,0.17307374483819057],[112,13,67,0.16936832714950212],[112,13,68,0.16565746955656133],[112,13,69,0.16191145611090604],[112,13,70,0.15811325519026614],[112,13,71,0.154256197619089],[112,13,72,0.1503417547445866],[112,13,73,0.14637750512953746],[112,13,74,0.14237529193772303],[112,13,75,0.13834957259767286],[112,13,76,0.13431596184112604],[112,13,77,0.1302899687271592],[112,13,78,0.12628592778451742],[112,13,79,0.12231612393673899],[112,14,64,0.17356071821894276],[112,14,65,0.16971896974054582],[112,14,66,0.1659180747043622],[112,14,67,0.16214176125924712],[112,14,68,0.15835570322013234],[112,14,69,0.1545310771087534],[112,14,70,0.15065133520139368],[112,14,71,0.14671001582911797],[112,14,72,0.142708623225937],[112,14,73,0.13865468398056763],[112,14,74,0.1345599821199886],[112,14,75,0.1304389743897235],[112,14,76,0.12630738683325365],[112,14,77,0.12218099331384508],[112,14,78,0.11807457616936742],[112,14,79,0.11400106874763903],[112,15,64,0.16658817143536303],[112,15,65,0.16269780200197448],[112,15,66,0.1588387975909742],[112,15,67,0.15499766610691748],[112,15,68,0.151142555305506],[112,15,69,0.1472458032873217],[112,15,70,0.14329145605796692],[112,15,71,0.1392732414749383],[112,15,72,0.1351925791302908],[112,15,73,0.13105675254342983],[112,15,74,0.1268772456166704],[112,15,75,0.12266824487634226],[112,15,76,0.11844530859284517],[112,15,77,0.11422420344662702],[112,15,78,0.11001990898631905],[112,15,79,0.10584578971319297],[112,16,64,0.15972739059599708],[112,16,65,0.15579570861721107],[112,16,66,0.151884823439644],[112,16,67,0.14798436306139476],[112,16,68,0.14406536366026093],[112,16,69,0.14010161244762684],[112,16,70,0.13607789479012275],[112,16,71,0.13198815906113193],[112,16,72,0.1278336817787248],[112,16,73,0.12362137866371545],[112,16,74,0.11936226346980074],[112,16,75,0.11507005604732604],[112,16,76,0.11075994071198991],[112,16,77,0.10644747560196724],[112,16,78,0.10214765332394049],[112,16,79,0.09787411281307547],[112,17,64,0.15301202497791744],[112,17,65,0.14904626615874647],[112,17,66,0.1450895021665716],[112,17,67,0.14113470816632548],[112,17,68,0.13715617637429267],[112,17,69,0.13312944933263227],[112,17,70,0.12904023539295134],[112,17,71,0.12488278652473885],[112,17,72,0.12065824005028258],[112,17,73,0.11637308811765802],[112,17,74,0.11203777664098646],[112,17,75,0.10766543509148675],[112,17,76,0.1032707381770054],[112,17,77,0.09886890010362466],[112,17,78,0.09447480177276026],[112,17,79,0.09010225093319649],[112,18,64,0.14645269526041588],[112,18,65,0.14245995074152876],[112,18,66,0.1384631595147196],[112,18,67,0.13445876046718802],[112,18,68,0.130424616501027],[112,18,69,0.1263383414745745],[112,18,70,0.12218677809658604],[112,18,71,0.11796460555797753],[112,18,72,0.11367287537123126],[112,18,73,0.10931765531248498],[112,18,74,0.10490878305328746],[112,18,75,0.10045873077253113],[112,18,76,0.09598158174202841],[112,18,77,0.09149211958319708],[112,18,78,0.08700503059913213],[112,18,79,0.08253421929796805],[112,19,64,0.14004072547814828],[112,19,65,0.13602786806069272],[112,19,66,0.13199679810436232],[112,19,67,0.12794742899202555],[112,19,68,0.12386145088807878],[112,19,69,0.1197188655490196],[112,19,70,0.11550787915235008],[112,19,71,0.11122375148497635],[112,19,72,0.10686753958743336],[112,19,73,0.10244492877722254],[112,19,74,0.09796515247893556],[112,19,75,0.0934400020451091],[112,19,76,0.08888292750700051],[112,19,77,0.0843082299499739],[112,19,78,0.07973034596533156],[112,19,79,0.07516322439086336],[112,20,64,0.1337517068186328],[112,20,65,0.12972531703456988],[112,20,66,0.12566563549223855],[112,20,67,0.1215759615967067],[112,20,68,0.11744200723769262],[112,20,69,0.11324647004547211],[112,20,70,0.10897915686315202],[112,20,71,0.10463608118228897],[112,20,72,0.10021842450428492],[112,20,73,0.09573156365287436],[112,20,74,0.09118416529118788],[112,20,75,0.08658734870845665],[112,20,76,0.08195391775147856],[112,20,77,0.07729766258542145],[112,20,78,0.07263273177842748],[112,20,79,0.06797307501602289],[112,21,64,0.12533610040823942],[112,21,65,0.12272956898887669],[112,21,66,0.11943247628132436],[112,21,67,0.1153072729407481],[112,21,68,0.11112943691425935],[112,21,69,0.10688465205266327],[112,21,70,0.10256456196694412],[112,21,71,0.09816611749095726],[112,21,72,0.093690761906021],[112,21,73,0.08914366037845958],[112,21,74,0.08453297467671388],[112,21,75,0.07986918410305535],[112,21,76,0.07516445344130632],[112,21,77,0.07043204858685552],[112,21,78,0.06568580038930702],[112,21,79,0.060939617102131236],[112,22,64,0.11440768719200706],[112,22,65,0.11169039049951199],[112,22,66,0.10892369211356677],[112,22,67,0.10610512622988477],[112,22,68,0.10324778581213324],[112,22,69,0.10037007467730195],[112,22,70,0.09621931049233962],[112,22,71,0.09176986857849369],[112,22,72,0.08724151287967309],[112,22,73,0.08263930878856471],[112,22,74,0.07797099193276137],[112,22,75,0.07324644989534836],[112,22,76,0.06847722887965924],[112,22,77,0.06367606595717981],[112,22,78,0.05885644745623007],[112,22,79,0.05403219396600498],[112,23,64,0.10342025882249245],[112,23,65,0.10059271808965867],[112,23,66,0.09774002706566039],[112,23,67,0.09485728079987164],[112,23,68,0.09195352231603973],[112,23,69,0.08904381978940815],[112,23,70,0.08613981401287511],[112,23,71,0.08324986722954052],[112,23,72,0.08037940900577632],[112,23,73,0.07617103680000024],[112,23,74,0.07145219444751702],[112,23,75,0.06667477298536745],[112,23,76,0.06184972898278763],[112,23,77,0.056989270668606824],[112,23,78,0.052106512343507966],[112,23,79,0.047215133837383516],[112,24,64,0.09245090740877424],[112,24,65,0.08951457864368831],[112,24,66,0.08657679391708036],[112,24,67,0.08363059433712652],[112,24,68,0.08068103858055797],[112,24,69,0.0777396652985243],[112,24,70,0.07481578404121554],[112,24,71,0.07191639670572841],[112,24,72,0.06904632386405705],[112,24,73,0.06620834949612339],[112,24,74,0.0634033836746183],[112,24,75,0.06010656451579788],[112,24,76,0.05523618962658969],[112,24,77,0.05032791251960168],[112,24,78,0.04539444544586185],[112,24,79,0.04044926649773023],[112,25,64,0.08157742716765355],[112,25,65,0.07853473255538419],[112,25,66,0.07551334240509339],[112,25,67,0.07250467528201858],[112,25,68,0.06950993516503515],[112,25,69,0.06653698439943807],[112,25,70,0.06359264199290234],[112,25,71,0.06068239322775135],[112,25,72,0.057810304729887824],[112,25,73,0.05497897712116923],[112,25,74,0.0521895350154198],[112,25,75,0.049441654028144086],[112,25,76,0.046733624384011616],[112,25,77,0.04364673666121004],[112,25,78,0.03867698381725289],[112,25,79,0.03369347090818799],[112,26,64,0.07087579638096822],[112,26,65,0.0677301415545561],[112,26,66,0.06462726159189712],[112,26,67,0.061557417106107466],[112,26,68,0.0585181476099961],[112,26,69,0.05551354425762116],[112,26,70,0.05254781144002377],[112,26,71,0.04962478356706515],[112,26,72,0.04674764040475525],[112,26,73,0.0439186776389487],[112,26,74,0.041139132638706284],[112,26,75,0.03840906525354348],[112,26,76,0.03572729334425926],[112,26,77,0.03309138261816158],[112,26,78,0.03049769021732112],[112,26,79,0.026906255695409803],[112,27,64,0.06041785139528708],[112,27,65,0.05717362586029588],[112,27,66,0.053992033109692555],[112,27,67,0.05086266028432394],[112,27,68,0.04777962831995505],[112,27,69,0.044743217441918615],[112,27,70,0.04175493233356459],[112,27,71,0.03881684806428264],[112,27,72,0.03593114019627736],[112,27,73,0.03309968593962552],[112,27,74,0.030323736538583376],[112,27,75,0.027603660888480396],[112,27,76,0.024938760203812874],[112,27,77,0.02232715338567337],[112,27,78,0.01976573257178125],[112,27,79,0.017250188196501953],[112,28,64,0.05026915684708859],[112,28,65,0.04693171473980773],[112,28,66,0.043674873041329325],[112,28,67,0.04048803642037547],[112,28,68,0.03736220234608399],[112,28,69,0.03429385698788667],[112,28,70,0.031281761613040436],[112,28,71,0.02832615204773571],[112,28,72,0.02542810067817113],[112,28,73,0.022588963262920782],[112,28,74,0.01980991094259387],[112,28,75,0.0170915476097453],[112,28,76,0.014433612584117479],[112,28,77,0.011834768327161467],[112,28,78,0.009292472726991774],[112,28,79,0.00680293529213351],[112,29,64,0.04048707655802499],[112,29,65,0.03706269482343025],[112,29,66,0.03373476664581948],[112,29,67,0.030492998552066553],[112,29,68,0.027325600870269466],[112,29,69,0.024225338619464437],[112,29,70,0.021188228228851903],[112,29,71,0.01821261668627863],[112,29,72,0.015298394738284711],[112,29,73,0.012446306423817584],[112,29,74,0.00965735552088105],[112,29,75,0.006932309228642835],[112,29,76,0.004271299156133286],[112,29,77,0.0016735194443722795],[112,29,78,-8.629783866177711E-4],[112,29,79,-0.0033413944990491468],[112,30,64,0.031119049817437138],[112,30,65,0.02761486080962166],[112,30,66,0.024220700429442604],[112,30,67,0.020927041960563553],[112,30,68,0.017719676492805297],[112,30,69,0.014587773957857583],[112,30,70,0.011524646077212078],[112,30,71,0.008526732389895054],[112,30,72,0.0055926855853241884],[112,30,73,0.0027225623345940764],[112,30,74,-8.287961997940517E-5],[112,30,75,-0.0028227776415310725],[112,30,76,-0.0054966534448718],[112,30,77,-0.008104795487153125],[112,30,78,-0.010648534840098072],[112,30,79,-0.013130415131817359],[112,31,64,0.022201078046617764],[112,31,65,0.018624973482071018],[112,31,66,0.0151700963603455],[112,31,67,0.011828120111281279],[112,31,68,0.00858280473360858],[112,31,69,0.005419898855337565],[112,31,70,0.002330088654392261],[112,31,71,-6.920818267887044E-4],[112,31,72,-0.003649231322516382],[112,31,73,-0.0065420497232182365],[112,31,74,-0.009370093267755435],[112,31,75,-0.012132465929028205],[112,31,76,-0.014828386673291404],[112,31,77,-0.017457642566267667],[112,31,78,-0.020020927982324483],[112,31,79,-0.022520070444458456],[112,32,64,0.013756427114994897],[112,32,65,0.010116930248193616],[112,32,66,0.006607453320904809],[112,32,67,0.003221260657479026],[112,32,68,-5.952353508114879E-5],[112,32,69,-0.0032523586982691668],[112,32,70,-0.00636907045384209],[112,32,71,-0.00941696929798643],[112,32,72,-0.012399955166380542],[112,32,73,-0.015319505337061499],[112,32,74,-0.01817554459773027],[112,32,75,-0.020967196924452654],[112,32,76,-0.023693418233752508],[112,32,77,-0.023355573450261995],[112,32,78,-0.02076070731237626],[112,32,79,-0.018285229622300943],[112,33,64,0.005794550846343827],[112,33,65,0.00210065368797351],[112,33,66,-0.0014567988184016481],[112,33,67,-0.004882613265211391],[112,33,68,-0.008195913703985168],[112,33,69,-0.011417126343071068],[112,33,70,-0.014560446825917204],[112,33,71,-0.017634972954016163],[112,33,72,-0.02064587191512616],[112,33,73,-0.02150233076103794],[112,33,74,-0.018262640205793965],[112,33,75,-0.015148408564983042],[112,33,76,-0.012159689194105351],[112,33,77,-0.009296131457734428],[112,33,78,-0.00655743946800606],[112,33,79,-0.0039437097320030295],[112,34,64,-0.0016897584911480792],[112,34,65,-0.005428796130006951],[112,34,66,-0.00902722684161866],[112,34,67,-0.012487650938402385],[112,34,68,-0.015830077776411718],[112,34,69,-0.019077645739971946],[112,34,70,-0.018628589356783316],[112,34,71,-0.014844942733636988],[112,34,72,-0.011183028676588207],[112,34,73,-0.007649163235484917],[112,34,74,-0.0042467839015392864],[112,34,75,-9.773139326859459E-4],[112,34,76,0.002159095037747103],[112,34,77,0.005162942444935574],[112,34,78,0.008034880312786237],[112,34,79,0.01077533657412046],[112,35,64,-0.008716986679990126],[112,35,65,-0.012491879558973584],[112,35,66,-0.016124097624067153],[112,35,67,-0.017410160916406237],[112,35,68,-0.013157734256907713],[112,35,69,-0.008980947323220679],[112,35,70,-0.004903413408798267],[112,35,71,-9.42119992230392E-4],[112,35,72,0.0028913213566480887],[112,35,73,0.006589542245688293],[112,35,74,0.010148403317707276],[112,35,75,0.013566099777843569],[112,35,76,0.016842387346346858],[112,35,77,0.019977929072628454],[112,35,78,0.022973763134475387],[112,35,79,0.025830891445926568],[112,36,64,-0.015323274787336257],[112,36,65,-0.01287424404796],[112,36,66,-0.00837728453013579],[112,36,67,-0.0038964682881788503],[112,36,68,5.407918645667127E-4],[112,36,69,0.00490069759552454],[112,36,70,0.009157532548754618],[112,36,71,0.013292592086195154],[112,36,72,0.01729291927357929],[112,36,73,0.021150155230761962],[112,36,74,0.024859505344974074],[112,36,75,0.02841882251880258],[112,36,76,0.03182780830275178],[112,36,77,0.03508733244664083],[112,36,78,0.03819887109553922],[112,36,79,0.04116406355830717],[112,37,64,-0.004160991596417992],[112,37,65,5.340806396043815E-4],[112,37,66,0.005215102965059337],[112,37,67,0.00987979095795622],[112,37,68,0.014500407430718384],[112,37,69,0.01904087745746944],[112,37,70,0.023473526968361],[112,37,71,0.02777805837576196],[112,37,72,0.03194027773641353],[112,37,73,0.03595093281384584],[112,37,74,0.03980466361991611],[112,37,75,0.04349906669426555],[112,37,76,0.04703387406473977],[112,37,77,0.05041024752184322],[112,37,78,0.0536301885367443],[112,37,79,0.05669606385902281],[112,38,64,0.0092287587486677],[112,38,65,0.0141118238662464],[112,38,66,0.018977003225319835],[112,38,67,0.02382446626898661],[112,38,68,0.028626215877611626],[112,38,69,0.0333439876027329],[112,38,70,0.03794825266276595],[112,38,71,0.04241723691155155],[112,38,72,0.04673563656846514],[112,38,73,0.05089344140877061],[112,38,74,0.05488486707806358],[112,38,75,0.058707397881087746],[112,38,76,0.06236094108543502],[112,38,77,0.06584709347607873],[112,38,78,0.06916852059786446],[112,38,79,0.07232844883378212],[112,39,64,0.02271357293203166],[112,39,65,0.02778612860944562],[112,39,66,0.03283597327542597],[112,39,67,0.037865740827644816],[112,39,68,0.04284716731997823],[112,39,69,0.047739781557788574],[112,39,70,0.05251222544457538],[112,39,71,0.05714131108669646],[112,39,72,0.061610718780051636],[112,39,73,0.06590979930250494],[112,39,74,0.0700324822708312],[112,39,75,0.0739762920129462],[112,39,76,0.07774147210141152],[112,39,77,0.08133021939402824],[112,39,78,0.0847460281322146],[112,39,79,0.08799314436152965],[112,40,64,0.036242018607008465],[112,40,65,0.04150729163636038],[112,40,66,0.04674417249915428],[112,40,67,0.051957835032664185],[112,40,68,0.05711972504217132],[112,40,69,0.06218706760689921],[112,40,70,0.06712662041470215],[112,40,71,0.07191376714146577],[112,40,72,0.07653119313736037],[112,40,73,0.08096766234788651],[112,40,74,0.08521689733182693],[112,40,75,0.08927656393534852],[112,40,76,0.0931473618812887],[112,40,77,0.09683222223641895],[112,40,78,0.10033561242755983],[112,40,79,0.1036629491935312],[112,41,64,0.049758600989632557],[112,41,65,0.0552211228478474],[112,41,66,0.06064890835796792],[112,41,67,0.06604977574066405],[112,41,68,0.07139484604136666],[112,41,69,0.07663889796620091],[112,41,70,0.08174669747210556],[112,41,71,0.08669212853824952],[112,41,72,0.09145684419582537],[112,41,73,0.09602901561701152],[112,41,74,0.10040218123414633],[112,41,75,0.10457419756260854],[112,41,76,0.1085462931053855],[112,41,77,0.11232222642508399],[112,41,78,0.11590754918047219],[112,41,79,0.11930897464319315],[112,42,64,0.06320623649281912],[112,42,65,0.06887132640617342],[112,42,66,0.07449490558547701],[112,42,67,0.08008753620579524],[112,42,68,0.0856199709099203],[112,42,69,0.09104438195203132],[112,42,70,0.09632340779716973],[112,42,71,0.1014293247676994],[112,42,72,0.10634267336459238],[112,42,73,0.1110509792088372],[112,42,74,0.11554757068509612],[112,42,75,0.11983049507816194],[112,42,76,0.12390153470258203],[112,42,77,0.12776532423819112],[112,42,78,0.1314285701994248],[112,42,79,0.13489937318777212],[112,43,64,0.07653021850748519],[112,43,65,0.08240345459580198],[112,43,66,0.08822822145275808],[112,43,67,0.0940178912975257],[112,43,68,0.09974279623871314],[112,43,69,0.10535234702144551],[112,43,70,0.1108069107771394],[112,43,71,0.11607702880980544],[112,43,72,0.12099357789196385],[112,43,73,0.12553306018822522],[112,43,74,0.1299637557671432],[112,43,75,0.13428623473675907],[112,43,76,0.1384976720953132],[112,43,77,0.14259276092246326],[112,43,78,0.14656452569037817],[112,43,79,0.15040008902453927],[112,44,64,0.08813047288172819],[112,44,65,0.09435520884516928],[112,44,66,0.10034143490114357],[112,44,67,0.10606542485703402],[112,44,68,0.11155050875051647],[112,44,69,0.11684406788238935],[112,44,70,0.12198275746951942],[112,44,71,0.12699323580769672],[112,44,72,0.13189357700926885],[112,44,73,0.1366945962614221],[112,44,74,0.14140108531086312],[112,44,75,0.1460129561549171],[112,44,76,0.15052629119514252],[112,44,77,0.1549342983855053],[112,44,78,0.1592281701799289],[112,44,79,0.16339784535359597],[112,45,64,0.0973721157462717],[112,45,65,0.10375828068353128],[112,45,66,0.10991584345251261],[112,45,67,0.1158180883439621],[112,45,68,0.12148860452418453],[112,45,69,0.12697741949761068],[112,45,70,0.13232331454130097],[112,45,71,0.13755449779488396],[112,45,72,0.14269003236877567],[112,45,73,0.14774118187549604],[112,45,74,0.15271267099515431],[112,45,75,0.15760385894997914],[112,45,76,0.1624098240291416],[112,45,77,0.16712235757218233],[112,45,78,0.1717308660841698],[112,45,79,0.17622318041834864],[112,46,64,0.10660228686377556],[112,46,65,0.11313864071660175],[112,46,66,0.11945591456278103],[112,46,67,0.1255245733298347],[112,46,68,0.13136856007697714],[112,46,69,0.1370406132890812],[112,46,70,0.14258173104724658],[112,46,71,0.14802178079311673],[112,46,72,0.15338093494494434],[112,46,73,0.15867102956943016],[112,46,74,0.16389684363795318],[112,46,75,0.16905729664697614],[112,46,76,0.17414656263689077],[112,46,77,0.17915509889961667],[112,46,78,0.18407058792003891],[112,46,79,0.18887879135004565],[112,47,64,0.1158112931654925],[112,47,65,0.12248760250923113],[112,47,66,0.1289538460981323],[112,47,67,0.13517793574024195],[112,47,68,0.14118427601385575],[112,47,69,0.14702833424343942],[112,47,70,0.15275337990021282],[112,47,71,0.15839102397068788],[112,47,72,0.16396265284566494],[112,47,73,0.16948079170373],[112,47,74,0.17495039485072966],[112,47,75,0.1803700607127695],[112,47,76,0.18573316942045381],[112,47,77,0.1910289411647178],[112,47,78,0.19624341374698578],[112,47,79,0.2013603379888312],[112,48,64,0.12503746733896903],[112,48,65,0.13184339700621353],[112,48,66,0.138447318949085],[112,48,67,0.14481490518223059],[112,48,68,0.15097110858045218],[112,48,69,0.15697407646195213],[112,48,70,0.16286936139566557],[112,48,71,0.16869038273058487],[112,48,72,0.1744598474644454],[112,48,73,0.18019110779350533],[112,48,74,0.18588945275850685],[112,48,75,0.19155333162045043],[112,48,76,0.1971755068232329],[112,48,77,0.20274413462699425],[112,48,78,0.20824377172359373],[112,48,79,0.21365630637445215],[112,49,64,0.1343225809555223],[112,49,65,0.1412476379888188],[112,49,66,0.14797733904122579],[112,49,67,0.154475464779718],[112,49,68,0.16076757520979687],[112,49,69,0.16691437809489598],[112,49,70,0.1729636734866725],[112,49,71,0.17895072992839556],[112,49,72,0.18489967931726148],[112,49,73,0.1908248562725017],[112,49,74,0.19673207940373866],[112,49,75,0.20261987207280663],[112,49,76,0.20848062044660945],[112,49,77,0.21430166684719834],[112,49,78,0.22006633661566774],[112,49,79,0.2257548969193043],[112,50,64,0.1436958606134381],[112,50,65,0.15072968651345328],[112,50,66,0.15757305714890807],[112,50,67,0.16418824370548551],[112,50,68,0.17060144645377132],[112,50,69,0.1768757469584454],[112,50,70,0.18306110838831893],[112,50,71,0.18919465939708002],[112,50,72,0.19530204897451556],[112,50,73,0.20139875413931074],[112,50,74,0.20749133787670196],[112,50,75,0.21357865490118547],[112,50,76,0.21965300300768756],[112,50,77,0.22570121796287032],[112,50,78,0.23170571007929083],[112,50,79,0.2376454408097409],[112,51,64,0.15317412758907656],[112,51,65,0.16030674492285915],[112,51,66,0.1672518132737095],[112,51,67,0.17397050433175057],[112,51,68,0.18048966821473467],[112,51,69,0.18687451269216454],[112,51,70,0.19317703202126116],[112,51,71,0.19943619243179575],[112,51,72,0.20567923258050957],[112,51,73,0.21192292555390807],[112,51,74,0.21817479986331073],[112,51,75,0.2244343170294012],[112,51,76,0.23069400351375668],[112,51,77,0.23694053492085407],[112,51,78,0.24315577056375512],[112,51,79,0.24931773666099005],[112,52,64,0.16276209022723162],[112,52,65,0.16998410462167682],[112,52,66,0.17701933504025943],[112,52,67,0.18382828351210198],[112,52,68,0.1904384381166938],[112,52,69,0.19691683257228013],[112,52,70,0.20331731582242094],[112,52,71,0.20968063431356387],[112,52,72,0.21603566388086426],[112,52,73,0.2224006121111952],[112,52,74,0.22878418870065384],[112,52,75,0.2351867414523061],[112,52,76,0.24160135569568972],[112,52,77,0.24801491505179843],[112,52,78,0.254409121613943],[112,52,79,0.2607614737671419],[112,53,64,0.1724527930027713],[112,53,65,0.17975555165355567],[112,53,66,0.1868700942311666],[112,53,67,0.1937566921963146],[112,53,68,0.20044344029255157],[112,53,69,0.20699885531576448],[112,53,70,0.21347842528972222],[112,53,71,0.21992458523572755],[112,53,72,0.2263678670777316],[112,53,73,0.23282802902167052],[112,53,74,0.23931516203235953],[112,53,75,0.24583077113380547],[112,53,76,0.25236882936905236],[112,53,77,0.2589168023728316],[112,53,78,0.2654566416326281],[112,53,79,0.2719657446425136],[112,54,64,0.1822282260985818],[112,54,65,0.18960393403751746],[112,54,66,0.19678782551183624],[112,54,67,0.20374037751823834],[112,54,68,0.21049024281336048],[112,54,69,0.21710704717141557],[112,54,70,0.22364766960153865],[112,54,71,0.23015610998413846],[112,54,72,0.23666454483319693],[112,54,73,0.2431943714434918],[112,54,74,0.24975723818328624],[112,54,75,0.2563560587691179],[112,54,76,0.2629860084433681],[112,54,77,0.26963550006664067],[112,54,78,0.2762871382340357],[112,54,79,0.2829186496285891],[112,55,64,0.19206009922974226],[112,55,65,0.19950189471311744],[112,55,66,0.20674621129589982],[112,55,67,0.2137541514061218],[112,55,68,0.2205548619050716],[112,55,69,0.22721868452520547],[112,55,70,0.23380361659517057],[112,55,71,0.2403550706790733],[112,55,72,0.24690682571235179],[112,55,73,0.25348197519560905],[112,55,74,0.2600938703728166],[112,55,75,0.26674705636987295],[112,55,76,0.27343819932713315],[112,55,77,0.2801570026247061],[112,55,78,0.2868871103706153],[112,55,79,0.29360699640090504],[112,56,64,0.20191078329970802],[112,56,65,0.20941277380608736],[112,56,66,0.2167097365717272],[112,56,67,0.22376378964323823],[112,56,68,0.2306044969867402],[112,56,69,0.2373025171468609],[112,56,70,0.24391667730079047],[112,56,71,0.2504936268125194],[112,56,72,0.2570686752975555],[112,56,73,0.2636666360367156],[112,56,74,0.2703026728564253],[112,56,75,0.27698314861638607],[112,56,76,0.2837064734769365],[112,56,77,0.2904639511575528],[112,56,78,0.2972406214434437],[112,56,79,0.3040160972507873],[112,57,64,0.21173442330228784],[112,57,65,0.21929168375973707],[112,57,66,0.22663471735110946],[112,57,67,0.2337270051555456],[112,57,68,0.24059844042246042],[112,57,69,0.2473196060737716],[112,57,70,0.253949864108638],[112,57,71,0.26053690670933427],[112,57,72,0.26711747511494915],[112,57,73,0.2737180916199201],[112,57,74,0.28035580302664304],[112,57,75,0.2870389338795102],[112,57,76,0.2937678478137184],[112,57,77,0.3005357153658347],[112,57,78,0.30732928661323045],[112,57,79,0.31412966703798784],[112,58,64,0.22147822568355952],[112,58,65,0.22908676068255318],[112,58,66,0.23647050621276788],[112,58,67,0.24359459912229167],[112,58,68,0.25048916570735885],[112,58,69,0.2572243399667037],[112,58,70,0.26385972649752504],[112,58,71,0.270443854404509],[112,58,72,0.2770147733929007],[112,58,73,0.28360067012779167],[112,58,74,0.29022050341639655],[112,58,75,0.29688465674414],[112,58,76,0.3035956066770432],[112,58,77,0.31034860563206523],[112,58,78,0.31713237751268747],[112,58,79,0.3239298247111309],[112,59,64,0.23108392315014817],[112,59,65,0.23874059503870051],[112,59,66,0.2461608781953178],[112,59,67,0.25331179329440234],[112,59,68,0.26022359760510044],[112,59,69,0.26696563357869685],[112,59,70,0.2735974680711057],[112,59,71,0.28016825576043664],[112,59,72,0.2867172115187204],[112,59,73,0.2932741094556537],[112,59,74,0.29985980742882296],[112,59,75,0.30648679576649346],[112,59,76,0.3131597689079497],[112,59,77,0.3198762186324935],[112,59,78,0.32662704752065674],[112,59,79,0.33339720127205436],[112,60,64,0.2404894192237013],[112,60,65,0.24819184412043957],[112,60,66,0.2556455996074132],[112,60,67,0.26281974622068976],[112,60,68,0.26974456707298367],[112,60,69,0.2764883113022626],[112,60,70,0.28311024797919027],[112,60,71,0.2896599469880551],[112,60,72,0.29617762941115294],[112,60,73,0.3026945501752941],[112,60,74,0.30923341199682836],[112,60,75,0.3158088095928073],[112,60,76,0.32242770306393265],[112,60,77,0.32908991929983983],[112,60,78,0.33578868020822705],[112,60,79,0.3425111565285422],[112,61,64,0.24963060275065668],[112,61,65,0.2573770165368774],[112,61,66,0.26486217000764073],[112,61,67,0.2720572436587988],[112,61,68,0.2789924412823046],[112,61,69,0.2857346661295266],[112,61,70,0.2923426570723855],[112,61,71,0.2988661959119972],[112,61,72,0.30534634011154493],[112,61,73,0.31181569250962476],[112,61,74,0.318298707290681],[112,61,75,0.32481203140224935],[112,61,76,0.33136488052811847],[112,61,77,0.33795944865233474],[112,61,78,0.34459135018048226],[112,61,79,0.3512500935241339],[112,62,64,0.2584433590545452],[112,62,65,0.26623245578798055],[112,62,66,0.2737477647955356],[112,62,67,0.2809625909878927],[112,62,68,0.28790695692984586],[112,62,69,0.29464622259346623],[112,62,70,0.3012383977146674],[112,62,71,0.3077332852366146],[112,62,72,0.3141726031512758],[112,62,73,0.3205901471388599],[112,62,74,0.3270119935144501],[112,62,75,0.33345674188862273],[112,62,76,0.33993579685206343],[112,62,77,0.3464536879033072],[112,62,78,0.3530084267531012],[112,62,79,0.35959190106082484],[112,63,64,0.26557487642248623],[112,63,65,0.27469653039404635],[112,63,66,0.28224138608681487],[112,63,67,0.2894757155057939],[112,63,68,0.29642926493968763],[112,63,69,0.3031657120036744],[112,63,70,0.30974217577058105],[112,63,71,0.3162083065138519],[112,63,72,0.32260630555461295],[112,63,73,0.3289709888233144],[112,63,74,0.33532989386503814],[112,63,75,0.3417034299020628],[112,63,76,0.3481050704569403],[112,63,77,0.35454158793432183],[112,63,78,0.3610133294595082],[112,63,79,0.36751453317854305],[112,64,64,0.2708740836109211],[112,64,65,0.28074899570147943],[112,64,66,0.29028619057203986],[112,64,67,0.2975404471542537],[112,64,68,0.30450415495606636],[112,64,69,0.3112392282387976],[112,64,70,0.3178017728869657],[112,64,71,0.32424113277947325],[112,64,72,0.3305998182721669],[112,64,73,0.3369134804428065],[112,64,74,0.3432109310297355],[112,64,75,0.3495142078697749],[112,64,76,0.3558386855196057],[112,64,77,0.3621932306284094],[112,64,78,0.3685804015172438],[112,64,79,0.37499669131492436],[112,65,64,0.2759965088634202],[112,65,65,0.28595745617969714],[112,65,66,0.2959878302568102],[112,65,67,0.3051069937495135],[112,65,68,0.31208247599807193],[112,65,69,0.31881858076064623],[112,65,70,0.32537031602139527],[112,65,71,0.33178658708278685],[112,65,72,0.33811004552213497],[112,65,73,0.34437698515497556],[112,65,74,0.3506172851176225],[112,65,75,0.3568544000477709],[112,65,76,0.3631053972124666],[112,65,77,0.36938104030738567],[112,65,78,0.37568591952962715],[112,65,79,0.38201862741054005],[112,66,64,0.28096828497474013],[112,66,65,0.29100107103430417],[112,66,66,0.3011141119600616],[112,66,67,0.31131571968673627],[112,66,68,0.3191237555798707],[112,66,69,0.3258638473324786],[112,66,70,0.3324087468760857],[112,66,71,0.3388068097356386],[112,66,72,0.34510067001656575],[112,66,73,0.35132706977986444],[112,66,74,0.35751673623577956],[112,66,75,0.3636943068872845],[112,66,76,0.3698783026191629],[112,66,77,0.3760811485966693],[112,66,78,0.38230924270903555],[112,66,79,0.38856307116984806],[112,67,64,0.28580377152919795],[112,67,65,0.2958947782399565],[112,67,66,0.30607534040831685],[112,67,67,0.3163523031869844],[112,67,68,0.3255990181739163],[112,67,69,0.3323461274913741],[112,67,70,0.3388884924600792],[112,67,71,0.3452738256707018],[112,67,72,0.3515445956182902],[112,67,73,0.35773780109480874],[112,67,74,0.36388479351042563],[112,67,75,0.37001114740526725],[112,67,76,0.37613657927418476],[112,67,77,0.382274914690976],[112,67,78,0.38843410358497865],[112,67,79,0.394616283394365],[112,68,64,0.29050243688937694],[112,68,65,0.3006389217807617],[112,68,66,0.31087267814967007],[112,68,67,0.3212092014505396],[112,68,68,0.33149380345204527],[112,68,69,0.33825049738335533],[112,68,70,0.3447943375655241],[112,68,71,0.35117231286998596],[112,68,72,0.3574265885569734],[112,68,73,0.36359423632270954],[112,68,74,0.3697070119727292],[112,68,75,0.37579118109283993],[112,68,76,0.38186739294794936],[112,68,77,0.3879506027002978],[112,68,78,0.39405004190204695],[112,68,79,0.40016923708501817],[112,69,64,0.29504554944677697],[112,69,65,0.3052159497068068],[112,69,66,0.31548981295399986],[112,69,67,0.32587128999033627],[112,69,68,0.33632170395642796],[112,69,69,0.3435791685199319],[112,69,70,0.3501275023231737],[112,69,71,0.3565025755868025],[112,69,72,0.36274612141929197],[112,69,73,0.36889511243744305],[112,69,74,0.37498150224406024],[112,69,75,0.3810320144974871],[112,69,76,0.3870679798946971],[112,69,77,0.3931052212494281],[112,69,78,0.3991539867083601],[112,69,79,0.4052189310138219],[112,70,64,0.2993947020634359],[112,70,65,0.30958773458339556],[112,70,66,0.3198890190688731],[112,70,67,0.330301243525901],[112,70,68,0.34078608490685053],[112,70,69,0.3483591575874251],[112,70,70,0.35491439446031825],[112,70,71,0.3612902398233848],[112,70,72,0.3675278382797193],[112,70,73,0.37366387706332954],[112,70,74,0.37973029804577474],[112,70,75,0.3857540567938574],[112,70,76,0.3917569290786351],[112,70,77,0.3977553650951383],[112,70,78,0.403760391512631],[112,70,79,0.4097775613393024],[112,71,64,0.3035077322117843],[112,71,65,0.3137090676455344],[112,71,66,0.3240220261497892],[112,71,67,0.33444771594562495],[112,71,68,0.3449482335339987],[112,71,69,0.3526394507799995],[112,71,70,0.35920633022157034],[112,71,71,0.36558839824441214],[112,71,72,0.37182593805948677],[112,71,73,0.3779550715932205],[112,71,74,0.3840074499901726],[112,71,75,0.39000999004862885],[112,71,76,0.3959846570532484],[112,71,77,0.4019482943292296],[112,71,78,0.4079124997037747],[112,71,79,0.4138835489251468],[112,72,64,0.30735293727734575],[112,72,65,0.3175452346879828],[112,72,66,0.32785107996277574],[112,72,67,0.33826992090498376],[112,72,68,0.34876442744035535],[112,72,69,0.35645979277886924],[112,72,70,0.3630454615711417],[112,72,71,0.36944115191801097],[112,72,72,0.37568591557356557],[112,72,73,0.38181494815243916],[112,72,74,0.38785926798931303],[112,72,75,0.39384543878747846],[112,72,76,0.3997953365659219],[112,72,77,0.4057259612789961],[112,72,78,0.41164929334792566],[112,72,79,0.4175721952113437],[112,73,64,0.3109073008058597],[112,73,65,0.3210709948552395],[112,73,66,0.3313487185191682],[112,73,67,0.34173822108507557],[112,73,68,0.3522029535681159],[112,73,69,0.35984852759628855],[112,73,70,0.3664618758807192],[112,73,71,0.3728800313866121],[112,73,72,0.37914038593455274],[112,73,73,0.3852767974141351],[112,73,74,0.39131926864271727],[112,73,75,0.3972936665036251],[112,73,76,0.40322148189574103],[112,73,77,0.40911963089918885],[112,73,78,0.4150002974347558],[112,73,79,0.4208708175698429],[112,74,64,0.3141534478678736],[112,74,65,0.3242674889978096],[112,74,66,0.33449463888123054],[112,74,67,0.3448309572891379],[112,74,68,0.355240908989875],[112,74,69,0.3628258268528811],[112,74,70,0.36947680622844126],[112,74,71,0.3759271557881047],[112,74,72,0.3822121549575511],[112,74,73,0.38836389007261884],[112,74,74,0.39441094644188324],[112,74,75,0.4003781355733704],[112,74,76,0.4062862580924728],[112,74,77,0.41215190276365227],[112,74,78,0.41798728191365603],[112,74,79,0.4238001034406882],[112,75,64,0.3170767091215168],[112,75,65,0.32711925445886864],[112,75,66,0.3372726673463266],[112,75,67,0.3475313772140907],[112,75,68,0.3578610967222716],[112,75,69,0.36540682777183936],[112,75,70,0.37210575937715534],[112,75,71,0.3785983197139621],[112,75,72,0.3849172295781349],[112,75,73,0.391092372839183],[112,75,74,0.3971505161599938],[112,75,75,0.40311505701121114],[112,75,76,0.4090058004708808],[112,75,77,0.4148387652031999],[112,75,78,0.42062601891242984],[112,75,79,0.42637554347105855],[112,76,64,0.319662299018878],[112,76,65,0.32961135179587764],[112,76,66,0.33966783855111055],[112,76,67,0.3498246694563994],[112,76,68,0.36004902210859224],[112,76,69,0.3676046754094952],[112,76,70,0.374361556086382],[112,76,71,0.3809060026763892],[112,76,72,0.38726776346510644],[112,76,73,0.3934741145493979],[112,76,74,0.3995496225227239],[112,76,75,0.40551592676567644],[112,76,76,0.41139154176069165],[112,76,77,0.4171916797759166],[112,76,78,0.42292809418754984],[112,76,79,0.4286089436342385],[112,77,64,0.32189261363975097],[112,77,65,0.33172660899441747],[112,77,66,0.3416635891054209],[112,77,67,0.35169510839630597],[112,77,68,0.361789995418623],[112,77,69,0.36943346352098144],[112,77,70,0.3762572782724252],[112,77,71,0.382862295896962],[112,77,72,0.38927493283062836],[112,77,73,0.39551949777275125],[112,77,74,0.40161801304003764],[112,77,75,0.4075900450247246],[112,77,76,0.41345254406600584],[112,77,77,0.419219693997892],[112,77,78,0.42490277158812756],[112,77,79,0.4305100160332088],[112,78,64,0.32374465364348765],[112,78,65,0.3334429887525781],[112,78,66,0.3432390714020252],[112,78,67,0.35312331565747535],[112,78,68,0.36306634638479063],[112,78,69,0.37091106836988563],[112,78,70,0.37780911742105305],[112,78,71,0.38448174099808546],[112,78,72,0.3909517372874989],[112,78,73,0.39724015114089745],[112,78,74,0.4033661696828348],[112,78,75,0.4093470147829896],[112,78,76,0.41519783255232795],[112,78,77,0.42093158000963343],[112,78,78,0.42655890904823884],[112,78,79,0.4320880478140437],[112,79,64,0.3252077000812904],[112,79,65,0.3347509334850774],[112,79,66,0.34438593885804886],[112,79,67,0.35410223512491473],[112,79,68,0.36387233440870914],[112,79,69,0.37204556317843185],[112,79,70,0.3790243247309462],[112,79,71,0.38577101653516754],[112,79,72,0.39230459216367963],[112,79,73,0.3986425810733149],[112,79,74,0.40480107466186377],[112,79,75,0.41079469529625684],[112,79,76,0.4166365482794248],[112,79,77,0.4223381567472609],[112,79,78,0.427909379507147],[112,79,79,0.43335831184621243],[112,80,64,0.3263379870063023],[112,80,65,0.33570727023419467],[112,80,66,0.34516087395967776],[112,80,67,0.35468761950644],[112,80,68,0.3642619109924131],[112,80,69,0.3727909095669245],[112,80,70,0.37986092619947515],[112,80,71,0.38669324770849134],[112,80,72,0.39330272728680693],[112,80,73,0.39970306378127296],[112,80,74,0.40590689908947597],[112,80,75,0.4119258829573096],[112,80,76,0.41777070489798335],[112,80,77,0.4234510930198142],[112,80,78,0.4289757796118609],[112,80,79,0.4343524333936067],[112,81,64,0.3271915592183628],[112,81,65,0.33636900950276116],[112,81,66,0.34562115489907824],[112,81,67,0.3549362643820356],[112,81,68,0.36429055257670084],[112,81,69,0.3731006102001425],[112,81,70,0.38027596554591797],[112,81,71,0.3872100257316129],[112,81,72,0.393913265599171],[112,81,73,0.40039518324093176],[112,81,74,0.4066645337817815],[112,81,75,0.4127295133320541],[112,81,76,0.41859789252084095],[112,81,77,0.42427709913399553],[112,81,78,0.42977424948979137],[112,81,79,0.43509612828815625],[112,82,64,0.3278054297363409],[112,82,65,0.33677469977101],[112,82,66,0.3458064285248077],[112,82,67,0.3548884401612694],[112,82,68,0.3639986024288373],[112,82,69,0.3729431615968328],[112,82,70,0.3802395492050937],[112,82,71,0.38729381728549406],[112,82,72,0.39411179344689806],[112,82,73,0.4006983888146778],[112,82,74,0.4070579956039375],[112,82,75,0.4131948160716376],[112,82,76,0.4191131218757633],[112,82,77,0.42481744303731744],[112,82,78,0.43031268586190274],[112,82,79,0.4356041793317095],[112,83,64,0.3282001699774528],[112,83,65,0.3369469119223531],[112,83,66,0.34574105623550555],[112,83,67,0.35457006340136304],[112,83,68,0.3634132324391664],[112,83,69,0.37225019157126177],[112,83,70,0.3797333950284293],[112,83,71,0.38692679818564263],[112,83,72,0.3938814926343805],[112,83,73,0.4005974327200778],[112,83,74,0.40707417095050946],[112,83,75,0.4133113586954231],[112,83,76,0.4193091566498007],[112,83,77,0.425068553859522],[112,83,78,0.4305915943264357],[112,83,79,0.4358815104200619],[112,84,64,0.3283824173491956],[112,84,65,0.33689464449176343],[112,84,66,0.34543638518841696],[112,84,67,0.35399479937748146],[112,84,68,0.3625503432586741],[112,84,69,0.3710856020337555],[112,84,70,0.37874942876548057],[112,84,71,0.3860997280851731],[112,84,72,0.39321230783805217],[112,84,73,0.4000818385836187],[112,84,74,0.40670258769139644],[112,84,75,0.41306911805293356],[112,84,76,0.4191768746649756],[112,84,77,0.4250226574170453],[112,84,78,0.4306049786965436],[112,84,79,0.4359243046954207],[112,85,64,0.3275311858601207],[112,85,65,0.3363815900766991],[112,85,66,0.34489293875505916],[112,85,67,0.3531660900532446],[112,85,68,0.36141639721255364],[112,85,69,0.3695421325020334],[112,85,70,0.37728843066479417],[112,85,71,0.3848108680847257],[112,85,72,0.3921001507567954],[112,85,73,0.39914540195099607],[112,85,74,0.4059352159516612],[112,85,75,0.41245857934564073],[112,85,76,0.41870565730789777],[112,85,77,0.42466844268648346],[112,85,78,0.4303412660340612],[112,85,79,0.43572116506858566],[112,86,64,0.3248901787823081],[112,86,65,0.3338030990047193],[112,86,66,0.342510500977493],[112,86,67,0.35101563953621484],[112,86,68,0.35932574659277566],[112,86,69,0.3674420250079],[112,86,70,0.37535873532392416],[112,86,71,0.3830649438515754],[112,86,72,0.39054614304245483],[112,86,73,0.3977857242217421],[112,86,74,0.4047662986153053],[112,86,75,0.41147086303339675],[112,86,76,0.4178838069994871],[112,86,77,0.4239917585345212],[112,86,78,0.42978426622020033],[112,86,79,0.43525431556777144],[112,87,64,0.32181192576866113],[112,87,65,0.33077913066889275],[112,87,66,0.3395656440881609],[112,87,67,0.34817504051105885],[112,87,68,0.3566145386195668],[112,87,69,0.36488406958606817],[112,87,70,0.3729749876750736],[112,87,71,0.3806287873990187],[112,87,72,0.3879017552640813],[112,87,73,0.3951057937415943],[112,87,74,0.4022502535654348],[112,87,75,0.40934397558433233],[112,87,76,0.41639413083363064],[112,87,77,0.42297634002261203],[112,87,78,0.4289141649609431],[112,87,79,0.4345008420487782],[112,88,64,0.31833750541880146],[112,88,65,0.32734838445642517],[112,88,66,0.3362048272908015],[112,88,67,0.34491070516869016],[112,88,68,0.35347358741808627],[112,88,69,0.3618927149610823],[112,88,70,0.37015695776473795],[112,88,71,0.37750345504424365],[112,88,72,0.384358722447923],[112,88,73,0.39113681416919205],[112,88,74,0.3978534834658748],[112,88,75,0.40452417505746785],[112,88,76,0.4111626129837904],[112,88,77,0.4177795953619548],[112,88,78,0.42438199960985384],[112,88,79,0.4309720011619851],[112,89,64,0.3145122509776381],[112,89,65,0.3235539355665301],[112,89,66,0.3324683333086731],[112,89,67,0.34125959499974884],[112,89,68,0.3499359934284289],[112,89,69,0.3584966553498222],[112,89,70,0.36692841677316035],[112,89,71,0.37405591567384516],[112,89,72,0.3804826016821556],[112,89,73,0.38682097825450834],[112,89,74,0.3930932205613506],[112,89,75,0.3993214892180239],[112,89,76,0.4055262564025961],[112,89,77,0.41172486316171897],[112,89,78,0.41793031212308],[112,89,79,0.4241502992206247],[112,90,64,0.3103838415878842],[112,90,65,0.3194414058813959],[112,90,66,0.32839915997284475],[112,90,67,0.33726152344426813],[112,90,68,0.34603780340418033],[112,90,69,0.3547275653959514],[112,90,70,0.3633160765205731],[112,90,71,0.37028676329064714],[112,90,72,0.37628049848564443],[112,90,73,0.3821722775531788],[112,90,74,0.3879906066837525],[112,90,75,0.39376435390305653],[112,90,76,0.3995208086989724],[112,90,77,0.40528399649110114],[112,90,78,0.41107325283390284],[112,90,79,0.4169020615634785],[112,91,64,0.3060005052585214],[112,91,65,0.31505724251390316],[112,91,66,0.3240413967616698],[112,91,67,0.3329576529186633],[112,91,68,0.34181665167827696],[112,91,69,0.35061891081183105],[112,91,70,0.35934859452114876],[112,91,71,0.36619615945831624],[112,91,72,0.3717590850373638],[112,91,73,0.3772043428661365],[112,91,74,0.382566571917907],[112,91,75,0.38788121913060175],[112,91,76,0.3931823327134454],[112,91,77,0.3985006329913204],[112,91,78,0.40386186636110116],[112,91,79,0.40928544718690596],[112,92,64,0.30140933641121626],[112,92,65,0.310447106847216],[112,92,66,0.31943870621715675],[112,92,67,0.32838908914167353],[112,92,68,0.3373104894786227],[112,92,69,0.3462048368920782],[112,92,70,0.35505564647220766],[112,92,71,0.3617845474638898],[112,92,72,0.36692508418729],[112,92,73,0.3719306790377488],[112,92,74,0.3768418048081005],[112,92,75,0.3817002435783312],[112,92,76,0.3865466187538039],[112,92,77,0.39141822608228094],[112,92,78,0.39634716990610536],[112,92,79,0.40135881009574637],[112,93,64,0.29665473059199127],[112,93,65,0.3056543766163745],[112,93,66,0.3146329127123525],[112,93,67,0.3235955751125085],[112,93,68,0.33255640447953844],[112,93,69,0.3415191368740905],[112,93,70,0.35046706790400584],[112,93,71,0.35705330630696147],[112,93,72,0.361785702862836],[112,93,73,0.3663648574727035],[112,93,74,0.3708366870029372],[112,93,75,0.37524895833376193],[112,93,76,0.37964856883933457],[112,93,77,0.38407914577830027],[112,93,78,0.38857897152072496],[112,93,79,0.3931792406685811],[112,94,64,0.2917769386794646],[112,94,65,0.3007187633348697],[112,94,66,0.3096627008089252],[112,94,67,0.31861428687553767],[112,94,68,0.32758953257588075],[112,94,69,0.3365943019442129],[112,94,70,0.3456120665635823],[112,94,71,0.35200534319898497],[112,94,72,0.3563490138376546],[112,94,73,0.3605206656409939],[112,94,74,0.36457119192204124],[112,94,75,0.3685538998173743],[112,94,76,0.37252155316838137],[112,94,77,0.37652375252936476],[112,94,78,0.380604659874558],[112,94,79,0.38480107465388746],[112,95,64,0.28681074268298473],[112,95,65,0.2956750471393511],[112,95,66,0.30456242522552346],[112,95,67,0.31347873300208323],[112,95,68,0.3224420636811232],[112,95,69,0.3314606545237147],[112,95,70,0.3405185069647532],[112,95,71,0.3466456233735835],[112,95,72,0.35062428492194836],[112,95,73,0.35441221290766417],[112,95,74,0.3580647470711916],[112,95,75,0.3616402118002813],[112,95,76,0.3651967390235384],[112,95,77,0.3687894445849286],[112,95,78,0.37246796628454476],[112,95,79,0.3762743708007486],[112,96,64,0.28178425500252635],[112,96,65,0.29055193091152237],[112,96,66,0.2993610342337139],[112,96,67,0.3082177595297432],[112,96,68,0.31714234317741863],[112,96,69,0.32614556631495994],[112,96,70,0.33521226840407015],[112,96,71,0.34098163611828597],[112,96,72,0.3446222547194931],[112,96,73,0.3480539920865856],[112,96,74,0.35133605967235026],[112,96,75,0.35453121645654245],[112,96,76,0.3577023923276973],[112,96,77,0.360909679359102],[112,96,78,0.36420769973667366],[112,96,79,0.36764335808427945],[112,97,64,0.2767178428159861],[112,97,65,0.28537101533674286],[112,97,66,0.2940811081081476],[112,97,67,0.3028546619220548],[112,97,68,0.3117140704835878],[112,97,69,0.32067276244414944],[112,97,70,0.3297166776185231],[112,97,71,0.33502379604000093],[112,97,72,0.3383553541764677],[112,97,73,0.34146089617543524],[112,97,74,0.34440290531155165],[112,97,75,0.3472479544065544],[112,97,76,0.3500631520621171],[112,97,77,0.3529129692578439],[112,97,78,0.3558564555981745],[112,97,79,0.3589448534438077],[112,98,64,0.2716231790687145],[112,98,65,0.2801458963741037],[112,98,66,0.28873801408147876],[112,98,67,0.2974064054467182],[112,98,68,0.30617559605677724],[112,98,69,0.31506171290355955],[112,98,70,0.3240520171459555],[112,98,71,0.3287857786727571],[112,98,72,0.33183787322290115],[112,98,73,0.3346481897841641],[112,98,74,0.33728187934268516],[112,98,75,0.3398086937240546],[112,98,76,0.342299277756453],[112,98,77,0.344821852412354],[112,98,78,0.3474392986894117],[112,98,79,0.3502066509129245],[112,99,64,0.26650242136222035],[112,99,65,0.2748813864402329],[112,99,66,0.2833391790897989],[112,99,67,0.2918829552163389],[112,99,68,0.3005393180024278],[112,99,69,0.30932711237056254],[112,99,70,0.31823511034073804],[112,99,71,0.32228478962485574],[112,99,72,0.3250860718768833],[112,99,73,0.32763143481920964],[112,99,74,0.3299881108162266],[112,99,75,0.3322284078923553],[112,99,76,0.3344258702573272],[112,99,77,0.3366518387450193],[112,99,78,0.3389724213547644],[112,99,79,0.34144588298121176],[112,100,64,0.2613475198748256],[112,100,65,0.26957286044975387],[112,100,66,0.2778834814420839],[112,100,67,0.28628671699299674],[112,100,68,0.2948111793366824],[112,100,69,0.3034784493644851],[112,100,70,0.31227898389707376],[112,100,71,0.31554176654629407],[112,100,72,0.3181182352474449],[112,100,73,0.3204263700332857],[112,100,74,0.3225349387317579],[112,100,75,0.3245182227082873],[112,100,76,0.326452065979352],[112,100,77,0.32841033177790563],[112,100,78,0.33046177714394537],[112,100,79,0.3326673549907053],[112,101,64,0.25614022352210125],[112,101,65,0.26420590278660416],[112,101,66,0.27236053410988914],[112,101,67,0.28061145337207577],[112,101,68,0.2889892147008622],[112,101,69,0.2975181850418495],[112,101,70,0.3058717375872946],[112,101,71,0.3085838849258158],[112,101,72,0.3109574953430595],[112,101,73,0.31305201196442045],[112,101,74,0.3149372450363219],[112,101,75,0.31668892472534615],[112,101,76,0.3183846557553194],[112,101,77,0.32010028594995077],[112,101,78,0.32190669960203316],[112,101,79,0.32386704545123585],[112,102,64,0.2508614889332544],[112,102,65,0.2587612415173627],[112,102,66,0.26675101527610884],[112,102,67,0.2748379495863391],[112,102,68,0.28305445333388657],[112,102,69,0.2914277313223994],[112,102,70,0.2989283490624796],[112,102,71,0.30146888063997607],[112,102,72,0.3036614354185733],[112,102,73,0.30556549780401937],[112,102,74,0.3072513766743713],[112,102,75,0.30879567934151203],[112,102,76,0.3102771918635642],[112,102,77,0.31177317808618926],[112,102,78,0.3133561086334937],[112,102,79,0.3150908299191131],[112,103,64,0.24549997873399146],[112,103,65,0.253224859145073],[112,103,66,0.26103838296551296],[112,103,67,0.26894732630933305],[112,103,68,0.276985818988901],[112,103,69,0.28518390103475905],[112,103,70,0.29187413438262994],[112,103,71,0.29426575626534807],[112,103,72,0.29630162596678755],[112,103,73,0.2980406853070596],[112,103,74,0.29955309734208846],[112,103,75,0.3009156714522925],[112,103,76,0.3022076967468743],[112,103,77,0.3035071963931366],[112,103,78,0.30488761431981304],[112,103,79,0.30641494458962687],[112,104,64,0.2400511975727295],[112,104,65,0.2475903525551302],[112,104,66,0.25521452483742524],[112,104,67,0.2629300045849548],[112,104,68,0.2707724567931335],[112,104,69,0.2787746750213137],[112,104,70,0.2847646352211857],[112,104,71,0.2870319380535429],[112,104,72,0.28893726973115713],[112,104,73,0.2905383957169978],[112,104,74,0.2919046263744364],[112,104,75,0.2931122297228225],[112,104,76,0.29424025118369357],[112,104,77,0.295366753057788],[112,104,78,0.29656548531885285],[112,104,79,0.2979029981621873],[112,105,64,0.23451827678582648],[112,105,65,0.24185970210344718],[112,105,66,0.24928050721691425],[112,105,67,0.2567864255859263],[112,105,68,0.2644144174966717],[112,105,69,0.2721998523006919],[112,105,70,0.27764404403288184],[112,105,71,0.2798126416306105],[112,105,72,0.2816145633878227],[112,105,73,0.28310575166939794],[112,105,74,0.2843539312877038],[112,105,75,0.28543405128776544],[112,105,76,0.2864241285967739],[112,105,77,0.2874015062911595],[112,105,78,0.28843953809723955],[112,105,79,0.28960470960972917],[112,106,64,0.22891327438286602],[112,106,65,0.23604448924507276],[112,106,66,0.24324770174622354],[112,106,67,0.2505280736759553],[112,106,68,0.2579235663456514],[112,106,69,0.2654718404136892],[112,106,70,0.2705445058567663],[112,106,71,0.2726402829575512],[112,106,72,0.2743662052553122],[112,106,73,0.27577576473721255],[112,106,74,0.27693437439580915],[112,106,75,0.277914883529025],[112,106,76,0.2787934856826593],[112,106,77,0.2796460318719285],[112,106,78,0.2805447606096144],[112,106,79,0.28155545516430314],[112,107,64,0.2232589325686866],[112,107,65,0.23016756906255276],[112,107,66,0.2371393616606788],[112,107,67,0.2441789411161508],[112,107,68,0.25132492236968085],[112,107,69,0.25861686093274633],[112,107,70,0.2634850233610911],[112,107,71,0.26553351715771545],[112,107,72,0.2672105604100402],[112,107,73,0.2685666147172414],[112,107,74,0.2696640900103052],[112,107,75,0.2705729793476021],[112,107,76,0.27136687294708633],[112,107,77,0.2721193638378602],[112,107,78,0.272900856444736],[112,107,79,0.27377578835440963],[112,108,64,0.2175908945805927],[112,108,65,0.22426519961629285],[112,108,66,0.2309926497486102],[112,108,67,0.2377774366066117],[112,108,68,0.24465843039412172],[112,108,69,0.2516765725428377],[112,108,70,0.25646996265753075],[112,108,71,0.25849590271713274],[112,108,72,0.26015048074376],[112,108,73,0.2614806182830442],[112,108,74,0.2625450900033319],[112,108,75,0.2634103239318584],[112,108,76,0.2641465634429051],[112,108,77,0.2648244029876357],[112,108,78,0.2655117085371181],[112,108,79,0.26627093269520724],[112,109,64,0.21196033863635586],[112,109,65,0.21838958540729175],[112,109,66,0.2248610747827188],[112,109,67,0.2313786939517107],[112,109,68,0.23798112156685572],[112,109,69,0.24471006697592623],[112,109,70,0.24948711026412457],[112,109,71,0.25151414083266216],[112,109,72,0.2531717291937979],[112,109,73,0.25450283575981814],[112,109,74,0.2555620460895048],[112,109,75,0.256411581059889],[112,109,76,0.2571176475149854],[112,109,77,0.2577471408513676],[112,109,78,0.2583647100435143],[112,109,79,0.2590301946575103],[112,110,64,0.20642771074301763],[112,110,65,0.21260237972082244],[112,110,66,0.21880774573184256],[112,110,67,0.22504755645258026],[112,110,68,0.23135980628877997],[112,110,69,0.23778625220647048],[112,110,70,0.24249516475784402],[112,110,71,0.24454564912039142],[112,110,72,0.24623064610891116],[112,110,73,0.2475888360924291],[112,110,74,0.24867015464472872],[112,110,75,0.24953205442016335],[112,110,76,0.25023608290181815],[112,110,77,0.25084478682250233],[112,110,78,0.25141895317245044],[112,110,79,0.25201519582283827],[112,111,64,0.2010470123656781],[112,111,65,0.2069587567144054],[112,111,66,0.2128890596629573],[112,111,67,0.21884169913577992],[112,111,68,0.22485344920983658],[112,111,69,0.2309653095112602],[112,111,70,0.23541852915436998],[112,111,71,0.23751423168090946],[112,111,72,0.23925080331093124],[112,111,73,0.24066240970724223],[112,111,74,0.24179394966127002],[112,111,75,0.24269760759508865],[112,111,76,0.24342969454635924],[112,111,77,0.24404778765673205],[112,111,78,0.24460817737562876],[112,111,79,0.24516363078389125],[112,112,64,0.19584818642287868],[112,112,65,0.20149024116922565],[112,112,66,0.20713761042904116],[112,112,67,0.21279423412377668],[112,112,68,0.21849509737924788],[112,112,69,0.22427960049436482],[112,112,70,0.22820825655586569],[112,112,71,0.23037306197042995],[112,112,72,0.23218818238412164],[112,112,73,0.23368302548007142],[112,112,74,0.23489704388599067],[112,112,75,0.23587661701508433],[112,112,76,0.23667219157800704],[112,112,77,0.23733568988862036],[112,112,78,0.23791819436251135],[112,112,79,0.23846791588407434],[112,113,64,0.190838505381739],[112,113,65,0.19620607750370508],[112,113,66,0.2015641521251863],[112,113,67,0.2069169292302984],[112,113,68,0.2122970276652378],[112,113,69,0.21774140056216384],[112,113,70,0.22083733012320178],[112,113,71,0.22309628665395875],[112,113,72,0.22501863173695133],[112,113,73,0.2266287658571352],[112,113,74,0.2279602724486812],[112,113,75,0.22905316666088535],[112,113,76,0.22995137092777257],[112,113,77,0.23070042545357594],[112,113,78,0.23134544109323665],[112,113,79,0.23192930147429883],[112,114,64,0.1860089743555809],[112,114,65,0.19109951710776196],[112,114,66,0.19616391975354988],[112,114,67,0.20120671986528949],[112,114,68,0.20625760814264094],[112,114,69,0.210586828980805],[112,114,70,0.21329253196597128],[112,114,71,0.21567013078262323],[112,114,72,0.21772810723355054],[112,114,73,0.21948562622342446],[112,114,74,0.22097000034321135],[112,114,75,0.2222143402327672],[112,114,76,0.22325539825408033],[112,114,77,0.22413161247367377],[112,114,78,0.2248813574152108],[112,114,79,0.22554140750595153],[112,115,64,0.18133674574595016],[112,115,65,0.18615014745664774],[112,115,66,0.19091884515387272],[112,115,67,0.1956477808550967],[112,115,68,0.19963178707618576],[112,115,69,0.2027507661823814],[112,115,70,0.20557287035292898],[112,115,71,0.20809159145606418],[112,115,72,0.2103116549390559],[112,115,73,0.21224680379431238],[112,115,74,0.21391772830264225],[112,115,75,0.21535014821437642],[112,115,76,0.2165730535994333],[112,115,77,0.21761711016180632],[112,115,78,0.21851323437554107],[112,115,79,0.21929134336091308],[112,116,64,0.17642037026917418],[112,116,65,0.18047863726703964],[112,116,66,0.18435620847546147],[112,116,67,0.1880434677840411],[112,116,68,0.19151298235262193],[112,116,69,0.19473399946285075],[112,116,70,0.19768799364262452],[112,116,71,0.20036711079588448],[112,116,72,0.20277236698293383],[112,116,73,0.2049119550351163],[112,116,74,0.20679966451500217],[112,116,75,0.2084534202086706],[112,116,76,0.20989394400572425],[112,116,77,0.2111435446872415],[112,116,78,0.21222503980452684],[112,116,79,0.21316081349446578],[112,117,64,0.1679559314862321],[112,117,65,0.17202614997408833],[112,117,66,0.17593694219065512],[112,117,67,0.1796783429541048],[112,117,68,0.18322741572749748],[112,117,69,0.1865590050872145],[112,117,70,0.18965659192655626],[112,117,71,0.19251122902879483],[112,117,72,0.19512031112300812],[112,117,73,0.1974864219586129],[112,117,74,0.19961626228630042],[112,117,75,0.2015196624050333],[112,117,76,0.20320868270258577],[112,117,77,0.20469680538212942],[112,117,78,0.20599822033160642],[112,117,79,0.20712720785756092],[112,118,64,0.1593588865451029],[112,118,65,0.16343878006436857],[112,118,66,0.16738203686749586],[112,118,67,0.1711782761162022],[112,118,68,0.17480935747331672],[112,118,69,0.17825623766217902],[112,118,70,0.18150478731036826],[112,118,71,0.18454521842912988],[112,118,72,0.18737143456220895],[112,118,73,0.1899804276378731],[112,118,74,0.19237172376204306],[112,118,75,0.1945468800573492],[112,118,76,0.19650903451809915],[112,118,77,0.19826251071539125],[112,118,78,0.1998124790513456],[112,118,79,0.20116467612748554],[112,119,64,0.1506814295517696],[112,119,65,0.1547663652669369],[112,119,66,0.15873863886394715],[112,119,67,0.16258738395274114],[112,119,68,0.16629945417500766],[112,119,69,0.16986230426220214],[112,119,70,0.1732645136929279],[112,119,71,0.17649569882175084],[112,119,72,0.1795464425388886],[112,119,73,0.1824082412580111],[112,119,74,0.18507346982150505],[112,119,75,0.18753536487138164],[112,119,76,0.18978802719364915],[112,119,77,0.191826443504656],[112,119,78,0.19364652811057756],[112,119,79,0.19524518483593514],[112,120,64,0.14197973328278157],[112,120,65,0.14606290378434095],[112,120,66,0.15005818414919378],[112,120,67,0.15395414986728018],[112,120,68,0.1577427357263159],[112,120,69,0.16141813709730055],[112,120,70,0.16497188636622193],[112,120,71,0.16839323482253057],[112,120,72,0.17166965170140408],[112,120,73,0.17478731253404073],[112,120,74,0.17773157577586288],[112,120,75,0.18048744672892644],[112,120,76,0.1830400278246203],[112,120,77,0.1853749543856967],[112,120,78,0.18747881504313188],[112,120,79,0.18933955604278263],[112,121,64,0.13331157569667507],[112,121,65,0.13738424221648088],[112,121,66,0.14139416781847458],[112,121,67,0.14532929618568521],[112,121,68,0.14918661503216693],[112,121,69,0.15296714992368435],[112,121,70,0.15666554642915623],[112,121,71,0.16027089958087384],[112,121,72,0.16376780278457495],[112,121,73,0.16713735975062666],[112,121,74,0.17035815685316374],[112,121,75,0.17340719345241093],[112,121,76,0.1762607678498006],[112,121,77,0.1788953166851433],[112,121,78,0.18128820572993412],[112,121,79,0.18341847017971347],[112,122,64,0.12473401055182087],[112,122,65,0.12878580388964297],[112,122,66,0.13279994899410114],[112,122,67,0.13676368500003666],[112,122,68,0.14067890819420448],[112,122,69,0.14455340611330464],[112,122,70,0.1483850080441047],[112,122,71,0.15216283314081697],[112,122,72,0.15586886076909973],[112,122,73,0.15947943964891245],[112,122,74,0.1629667317223218],[112,122,75,0.16630008687605757],[112,122,76,0.16944734486083576],[112,122,77,0.17237606096910726],[112,122,78,0.17430154744855972],[112,122,79,0.17503467924459468],[112,123,64,0.11630109602643625],[112,123,65,0.12032037157320254],[112,123,66,0.1243266051655067],[112,123,67,0.12830626175887117],[112,123,68,0.13226588931208536],[112,123,69,0.13621981252129306],[112,123,70,0.1401690226589247],[112,123,71,0.14410280950524634],[112,123,72,0.14800081654993058],[112,123,73,0.151835013109766],[112,123,74,0.1555715779136832],[112,123,75,0.15917268897768863],[112,123,76,0.16259821487471374],[112,123,77,0.16364490552393665],[112,123,78,0.16394505325027653],[112,123,79,0.1649212277380969],[112,124,64,0.10806164134935503],[112,124,65,0.1120358842964729],[112,124,66,0.11602079537617732],[112,124,67,0.1200020006955908],[112,124,68,0.12399033866307094],[112,124,69,0.12800629757040263],[112,124,70,0.13205391825581383],[112,124,71,0.13612277009311782],[112,124,72,0.14019044741945288],[112,124,73,0.1442249635446759],[112,124,74,0.14945684709771306],[112,124,75,0.15668408681745644],[112,124,76,0.16200187873819616],[112,124,77,0.16537863146508278],[112,124,78,0.16874516896368533],[112,124,79,0.1721408951307679],[112,125,64,0.10005698772020931],[112,125,65,0.10397326470612778],[112,125,66,0.10792264884555738],[112,125,67,0.1118898688139387],[112,125,68,0.1158896010908482],[112,125,69,0.12214774154759984],[112,125,70,0.12950344667789576],[112,125,71,0.13696110476091153],[112,125,72,0.14449526452397393],[112,125,73,0.15206954558739785],[112,125,74,0.1596392584223686],[112,125,75,0.1671538923905763],[112,125,76,0.17035479109779555],[112,125,77,0.1733694484217041],[112,125,78,0.17637598999869966],[112,125,79,0.17942103274407817],[112,126,64,0.09585920013533203],[112,126,65,0.10275821387297182],[112,126,66,0.10976869321739205],[112,126,67,0.11687066571713796],[112,126,68,0.12407890758061542],[112,126,69,0.13142189336797508],[112,126,70,0.13890686259571672],[112,126,71,0.14652232168831553],[112,126,72,0.15424124388443522],[112,126,73,0.16202413850681427],[112,126,74,0.16982198083808495],[112,126,75,0.1759357681251191],[112,126,76,0.1786823682490574],[112,126,77,0.1813663338240288],[112,126,78,0.18404287950047651],[112,126,79,0.18676505806055416],[112,127,64,0.10517653643972528],[112,127,65,0.11207181948076975],[112,127,66,0.11909529690354545],[112,127,67,0.12622589470477993],[112,127,68,0.13348102690799354],[112,127,69,0.1408934134483138],[112,127,70,0.1484724573068167],[112,127,71,0.15620695500983364],[112,127,72,0.16406858014169906],[112,127,73,0.17201522496065583],[112,127,74,0.17999419056492275],[112,127,75,0.18451236427493378],[112,127,76,0.18696990997294632],[112,127,77,0.18935872900973863],[112,127,78,0.1917396545305119],[112,127,79,0.1941713208972479],[112,128,64,0.11480698126841125],[112,128,65,0.12167794693293243],[112,128,66,0.12869168281951782],[112,128,67,0.13582597036589353],[112,128,68,0.14310027280035406],[112,128,69,0.1505508287877359],[112,128,70,0.15818885569923055],[112,128,71,0.16600342336014223],[112,128,72,0.17396516644981472],[112,128,73,0.182029846282152],[112,128,74,0.19014175177492681],[112,128,75,0.1929962404690437],[112,128,76,0.19520249192127087],[112,128,77,0.1973339163803093],[112,128,78,0.19945604682349347],[112,128,79,0.20163220644385452],[112,129,64,0.12471861683497731],[112,129,65,0.13154653422144666],[112,129,66,0.13852952867431687],[112,129,67,0.14564418881635002],[112,129,68,0.15291145522847],[112,129,69,0.16037037477351945],[112,129,70,0.1680336322991258],[112,129,71,0.17589054539185517],[112,129,72,0.18391095404718916],[112,129,73,0.19204895327859264],[112,129,74,0.19923064633790868],[112,129,75,0.20137276189341513],[112,129,76,0.203365181655842],[112,129,77,0.2052768866611702],[112,129,78,0.20717720413365096],[112,129,79,0.20913326018042963],[112,130,64,0.1348612781981703],[112,130,65,0.14162991801664104],[112,130,66,0.1485636453122308],[112,130,67,0.15563779355280535],[112,130,68,0.16287426792768656],[112,130,69,0.17031429246944582],[112,130,70,0.17797171505411613],[112,130,71,0.18583608608153185],[112,130,72,0.19387667988865437],[112,130,73,0.2020463545660345],[112,130,74,0.2076588274366702],[112,130,75,0.20963009125798165],[112,130,76,0.21144328936656304],[112,130,77,0.21317023903311202],[112,130,78,0.21488322029510856],[112,130,79,0.21665233501541584],[112,131,64,0.14516464997158388],[112,131,65,0.15186095556430698],[112,131,66,0.15873013028779148],[112,131,67,0.16574616392582647],[112,131,68,0.17293152171484907],[112,131,69,0.18032912859062744],[112,131,70,0.18795378257736248],[112,131,71,0.1957952877286019],[112,131,72,0.203822571159736],[112,131,73,0.21198763535090748],[112,131,74,0.21593160314426973],[112,131,75,0.21775979873497173],[112,131,76,0.21942265334365174],[112,131,77,0.2209941142758342],[112,131,78,0.22254869421062706],[112,131,79,0.22415876093797243],[112,132,64,0.15553640166405971],[112,132,65,0.1621511738200454],[112,132,66,0.16894453585188335],[112,132,67,0.1758890032916257],[112,132,68,0.1830073608010584],[112,132,69,0.19034400019574124],[112,132,70,0.1979146067172082],[112,132,71,0.20570932634529285],[112,132,72,0.21369695533281344],[112,132,73,0.22182896264597415],[112,132,74,0.2240533461812559],[112,132,75,0.22575761603973357],[112,132,76,0.22729008262276118],[112,132,77,0.2287262949718953],[112,132,78,0.23014246220509224],[112,132,79,0.23161269041259966],[112,133,64,0.16586450300812589],[112,133,65,0.17239170385891892],[112,133,66,0.17910141078070294],[112,133,67,0.18596447157393386],[112,133,68,0.19300391213778972],[112,133,69,0.20026561942663781],[112,133,70,0.2077662790516095],[112,133,71,0.21549656411918164],[112,133,72,0.2234253849641247],[112,133,73,0.2302099292479106],[112,133,74,0.2320510676513303],[112,133,75,0.23364121048411343],[112,133,76,0.23505334819557883],[112,133,77,0.2363642696906807],[112,133,78,0.2376515240007551],[112,133,79,0.2389906135147095],[112,134,64,0.17604139127380006],[112,134,65,0.18247561945215734],[112,134,66,0.189094728303757],[112,134,67,0.1958676531707582],[112,134,68,0.20281763905485706],[112,134,69,0.20999221864979048],[112,134,70,0.21740929345356766],[112,134,71,0.22506032923154565],[112,134,72,0.2329146536997588],[112,134,73,0.23824026451976632],[112,134,74,0.23997920361368882],[112,134,75,0.24145979080212054],[112,134,76,0.24275577641155047],[112,134,77,0.24394486969683848],[112,134,78,0.24510566215671012],[112,134,79,0.24631478456139422],[112,135,64,0.18597906781786247],[112,135,65,0.1923153296591188],[112,135,66,0.19883753206583038],[112,135,67,0.20551245072977972],[112,135,68,0.21236355736752427],[112,135,69,0.21944023208613855],[112,135,70,0.2267618537307804],[112,135,71,0.23432098499320453],[112,135,72,0.24208770450948633],[112,135,73,0.24624101338418167],[112,135,74,0.2478792028384829],[112,135,75,0.249251171063978],[112,135,76,0.25043110633664817],[112,135,77,0.2514973413089931],[112,135,78,0.25252924592957227],[112,135,79,0.25360435518095054],[112,136,64,0.19560879995252842],[112,136,65,0.20184258872068608],[112,136,66,0.20826225847519378],[112,136,67,0.21483221747472306],[112,136,68,0.22157619099356732],[112,136,69,0.22854561267759924],[112,136,70,0.23576160414198963],[112,136,71,0.24321813188023156],[112,136,72,0.2508863591878988],[112,136,73,0.25423921076531864],[112,136,74,0.25577567061970785],[112,136,75,0.25703728247064134],[112,136,76,0.2580983668731933],[112,136,77,0.25903760420779404],[112,136,78,0.2599349051260312],[112,136,79,0.26086851568021147],[112,137,64,0.20488040012456415],[112,137,65,0.2110077200295059],[112,137,66,0.21731990904545967],[112,137,67,0.2237788712161035],[112,137,68,0.23040862212381943],[112,137,69,0.2372628219874498],[112,137,70,0.24436457047263155],[112,137,71,0.251709517743965],[112,137,72,0.2592702208607332],[112,137,73,0.2622454307848283],[112,137,74,0.2636774550783256],[112,137,75,0.2648251784589125],[112,137,76,0.2657627686183581],[112,137,77,0.2665689984226144],[112,137,78,0.26732410192486433],[112,137,79,0.268106863568599],[112,138,64,0.21376187010923997],[112,138,65,0.21977920430722225],[112,138,66,0.22597958320415837],[112,138,67,0.23232236264750694],[112,138,68,0.23883188676885936],[112,138,69,0.24556415305410859],[112,138,70,0.25254441755946433],[112,138,71,0.25977024353202305],[112,138,72,0.26721584647806146],[112,138,73,0.2702546801160263],[112,138,74,0.27157852522498654],[112,138,75,0.2726078700165045],[112,138,76,0.27341646795071567],[112,138,77,0.2740829485650798],[112,138,78,0.2746876673125179],[112,138,79,0.27530978569230635],[112,139,64,0.22223941157388982],[112,139,65,0.22814363337915433],[112,139,66,0.23422837298861618],[112,139,67,0.24045049937462437],[112,139,68,0.24683471715085872],[112,139,69,0.2534393876797996],[112,139,70,0.260292024744235],[112,139,71,0.26739226598075694],[112,139,72,0.27471619071292436],[112,139,73,0.27824704732523514],[112,139,74,0.27945863952733135],[112,139,75,0.2803649900793023],[112,139,76,0.28103920237680347],[112,139,77,0.28155954453419313],[112,139,78,0.2820063015826815],[112,139,79,0.28245885368641555],[112,140,64,0.2303178043423377],[112,140,65,0.23610603090303323],[112,140,66,0.24207162100587182],[112,140,67,0.24816912707046107],[112,140,68,0.2544236323461605],[112,140,69,0.2608957895634096],[112,140,70,0.2676153806571241],[112,140,71,0.2745841986551953],[112,140,72,0.28178032259718366],[112,140,73,0.2861881069351949],[112,140,74,0.28728380380907875],[112,140,75,0.28806328595767466],[112,140,76,0.28859879623288864],[112,140,77,0.28896803796589343],[112,140,78,0.28925103837950394],[112,140,79,0.2895272324596357],[112,141,64,0.23802115369196786],[112,141,65,0.2436905413984241],[112,141,66,0.24953354301299593],[112,141,67,0.25550266911929825],[112,141,68,0.2616233785429685],[112,141,69,0.26795843463603447],[112,141,70,0.274539798671537],[112,141,71,0.2813714126468836],[112,141,72,0.28843341615657725],[112,141,73,0.2940290770175316],[112,141,74,0.29500651737838846],[112,141,75,0.2956569388037495],[112,141,76,0.2960515358933686],[112,141,77,0.29626725374366525],[112,141,78,0.29638367179181146],[112,141,79,0.2964801014345238],[112,142,64,0.24539400803842562],[112,142,65,0.25094148893600154],[112,142,66,0.25665821647598064],[112,142,67,0.26249502610278563],[112,142,68,0.26847772025827943],[112,142,69,0.27467087992689027],[112,142,70,0.2811084543314901],[112,142,71,0.28779643819176287],[112,142,72,0.29471701625286556],[112,142,73,0.3017067291776995],[112,142,74,0.30256580633981084],[112,142,75,0.3030877091855531],[112,142,76,0.30334241368499376],[112,142,77,0.30340591592480654],[112,142,78,0.303357146030385],[112,142,79,0.3032750882740285],[112,143,64,0.2524884389792941],[112,143,65,0.25791075315239254],[112,143,66,0.26349727220861846],[112,143,67,0.269197603615352],[112,143,68,0.2750378320180308],[112,143,69,0.28108395794952096],[112,143,70,0.2873716314209929],[112,143,71,0.29390872013207986],[112,143,72,0.30067936824148755],[112,143,73,0.3076479155271301],[112,143,74,0.3098955728186227],[112,143,75,0.31029249344793525],[112,143,76,0.310411817602118],[112,143,77,0.3103283999461667],[112,143,78,0.3101203041899843],[112,143,79,0.3098659550869301],[112,144,64,0.2593155611367424],[112,144,65,0.264610371144647],[112,144,66,0.270063684974497],[112,144,67,0.27562441918679265],[112,144,68,0.2813188736281559],[112,144,69,0.28721399768040806],[112,144,70,0.29334678743869946],[112,144,71,0.29972674340059635],[112,144,72,0.3063398304286071],[112,144,73,0.31315230522510934],[112,144,74,0.3169549486494856],[112,144,75,0.31723069842866114],[112,144,76,0.31721971325279835],[112,144,77,0.316995526239217],[112,144,78,0.3166351217142848],[112,144,79,0.31621612865077925],[112,145,64,0.2658773767054586],[112,145,65,0.2710434034098351],[112,145,66,0.2763615924292712],[112,145,67,0.28178078198176176],[112,145,68,0.28732741898157876],[112,145,69,0.2930688755744892],[112,145,70,0.29904308645610544],[112,145,71,0.30526089633045833],[112,145,72,0.31170990846921653],[112,145,73,0.31835820824680217],[112,145,74,0.32371144594897294],[112,145,75,0.3238697091497332],[112,145,76,0.3237335815745613],[112,145,77,0.3233751088575625],[112,145,78,0.32286999078693907],[112,145,79,0.32229482567922724],[112,146,64,0.27217846505158855],[112,146,65,0.27721528774323195],[112,146,66,0.2823972937988766],[112,146,67,0.28767390748624283],[112,146,68,0.29307165192483836],[112,146,69,0.2986577542771896],[112,146,70,0.30447063918894657],[112,146,71,0.31052216799212656],[112,146,72,0.3168013640172016],[112,146,73,0.32327802060944427],[112,146,74,0.3299061821607723],[112,146,75,0.33017885783810064],[112,146,76,0.32992315828772323],[112,146,77,0.32943750494814694],[112,146,78,0.32879611469254594],[112,146,79,0.3280743211821022],[112,147,64,0.2782248283620697],[112,147,65,0.28313269538453656],[112,147,66,0.2881781256217149],[112,147,67,0.2933118211010774],[112,147,68,0.29856030707218006],[112,147,69,0.303990072418187],[112,147,70,0.3096395554585135],[112,147,71,0.31552127843460626],[112,147,72,0.32162543878028443],[112,147,73,0.32792339099648893],[112,147,74,0.3343710098705651],[112,147,75,0.3361298493317358],[112,147,76,0.3357607011294151],[112,147,77,0.33515571026076874],[112,147,78,0.33438741978370395],[112,147,79,0.33352966713096494],[112,148,64,0.2840228880639165],[112,148,65,0.28880253924206],[112,148,66,0.29371148934738],[112,148,67,0.2987024125196143],[112,148,68,0.30380175929083303],[112,148,69,0.30907467915214915],[112,148,70,0.3145591350511024],[112,148,71,0.32026793810172366],[112,148,72,0.3261921953559358],[112,148,73,0.3323046561463256],[112,148,74,0.33856294819193383],[112,148,75,0.34169712401967034],[112,148,76,0.34122121998806965],[112,148,77,0.34050544569537405],[112,148,78,0.3396204890238609],[112,148,79,0.33863846520281116],[112,149,64,0.2895786322777868],[112,149,65,0.2942311344809623],[112,149,66,0.2990040310963882],[112,149,67,0.3038526412095113],[112,149,68,0.3088032621893174],[112,149,69,0.3139191137842703],[112,149,70,0.3192371973115828],[112,149,71,0.3247702367479623],[112,149,72,0.33050997515002206],[112,149,73,0.3364303775680605],[112,149,74,0.3424907321133759],[112,149,75,0.3468581581625478],[112,149,76,0.3462826698640905],[112,149,77,0.3454652349074272],[112,149,78,0.344474517236095],[112,149,79,0.3433806938566101],[112,150,64,0.29489691455725875],[112,150,65,0.2994235117459065],[112,150,66,0.3040609738668928],[112,150,67,0.30876789329768256],[112,150,68,0.3135703359173526],[112,150,69,0.31852903079328987],[112,150,70,0.32367954978059454],[112,150,71,0.32903416215126613],[112,150,72,0.33458497365315787],[112,150,73,0.3403069798253776],[112,150,74,0.34616102570962376],[112,150,75,0.35159370145931834],[112,150,76,0.3509261065953152],[112,150,77,0.3500164729965115],[112,150,78,0.34893128818283975],[112,150,79,0.3477385899802974],[112,151,64,0.29998090416102163],[112,151,65,0.3043828832814705],[112,151,66,0.3088856024644811],[112,151,67,0.31345149014482643],[112,151,68,0.31810630457092176],[112,151,69,0.3229077705474873],[112,151,70,0.3278895961658824],[112,151,71,0.33306324889995115],[112,151,72,0.33842093332894585],[112,151,73,0.34393849060915843],[112,151,74,0.3495782123172819],[112,151,75,0.35529156152704344],[112,151,76,0.3551358052952973],[112,151,77,0.35414348630637427],[112,151,78,0.35297517359643416],[112,151,79,0.351696585330667],[112,152,64,0.30483168811218536],[112,152,65,0.3091102622179225],[112,152,66,0.31347890143252183],[112,152,67,0.3179043488945553],[112,152,68,0.3224119834920326],[112,152,69,0.32705607600267356],[112,152,70,0.3318680839295747],[112,152,71,0.3368583575203029],[112,152,72,0.342018954356417],[112,152,73,0.3473263828071176],[112,152,74,0.3527442674510336],[112,152,75,0.35822592978826956],[112,152,76,0.3588993414613373],[112,152,77,0.3578335833689183],[112,152,78,0.3565931542783812],[112,152,79,0.3552412979785126],[112,153,64,0.3094480253145616],[112,153,65,0.3136042353029105],[112,153,66,0.3178393462705182],[112,153,67,0.3221247952892482],[112,153,68,0.3264855167570277],[112,153,69,0.3309719556727644],[112,153,70,0.3356129917721041],[112,153,71,0.3404175842078369],[112,153,72,0.3453774234632386],[112,153,73,0.3504695187714002],[112,153,74,0.35565871461627124],[112,153,75,0.360900130090097],[112,153,76,0.36220763471453654],[112,153,77,0.361077097027117],[112,153,78,0.3597748633832064],[112,153,79,0.35836157896328996],[112,154,64,0.31382625302176687],[112,154,65,0.3178608893829862],[112,154,66,0.32196284824831084],[112,154,67,0.326108529062156],[112,154,68,0.33032236516176716],[112,154,69,0.3346506931749824],[112,154,70,0.3391195573018352],[112,154,71,0.3437363014304761],[112,154,72,0.34849206108860925],[112,154,73,0.35336419698485894],[112,154,74,0.3583186641717604],[112,154,75,0.3633123110433352],[112,154,76,0.3650549551378511],[112,154,77,0.36386741777442744],[112,154,78,0.36251265200290494],[112,154,79,0.361048614357557],[112,155,64,0.3179603459910567],[112,155,65,0.3218738919723868],[112,155,66,0.3258428531544717],[112,155,67,0.3298487422427383],[112,155,68,0.33391544503637544],[112,155,69,0.3380850036728264],[112,155,70,0.3423804451970445],[112,155,71,0.3468073296857892],[112,155,72,0.35135608712491456],[112,155,73,0.3560043013332868],[112,155,74,0.360718935399293],[112,155,75,0.3654584932610769],[112,155,76,0.36743889217979314],[112,155,77,0.3662010183506409],[112,155,78,0.3648016771697388],[112,155,79,0.3632960829412227],[112,156,64,0.3218421286990601],[112,156,65,0.32563472628928897],[112,156,66,0.32947059435699677],[112,156,67,0.33333639074884625],[112,156,68,0.33725541825566235],[112,156,69,0.3412653375698334],[112,156,70,0.3453860561928659],[112,156,71,0.3496212407161209],[112,156,72,0.3539605055043598],[112,156,73,0.358381553203426],[112,156,74,0.3628522619453664],[112,156,75,0.3673327142751243],[112,156,76,0.36936028609011334],[112,156,77,0.3680774696353036],[112,156,78,0.3666400123977063],[112,156,79,0.36510036968823584],[112,157,64,0.3254616410519759],[112,157,65,0.3291330811927631],[112,157,66,0.3328355006043976],[112,157,67,0.3365606196861824],[112,157,68,0.34033113385479297],[112,157,69,0.3441803318468624],[112,157,70,0.3481249772611973],[112,157,71,0.35216679251594735],[112,157,72,0.3562945079219867],[112,157,73,0.36048586664614185],[112,157,74,0.36470958081382077],[112,157,75,0.36892723413884],[112,157,76,0.3708231218505323],[112,157,77,0.36949944788088873],[112,157,78,0.3680287808874241],[112,157,79,0.3664608352749223],[112,158,64,0.32880765808810347],[112,158,65,0.33235739651670704],[112,158,66,0.33592575905533056],[112,158,67,0.3395093428322779],[112,158,68,0.34313022171314206],[112,158,69,0.34681740948497874],[112,158,70,0.35058457339620863],[112,158,71,0.3544314965050073],[112,158,72,0.35834599701957726],[112,158,73,0.3623058068706401],[112,158,74,0.366280405107946],[112,158,75,0.3702328018400556],[112,158,76,0.3718343855581643],[112,158,77,0.37047273332864394],[112,158,78,0.36897231152524934],[112,158,79,0.36738014182958034],[112,159,64,0.33186836424499705],[112,159,65,0.33529556436929137],[112,159,66,0.33872903409415905],[112,159,67,0.34216997684822],[112,159,68,0.3456398388316914],[112,159,69,0.349163527474228],[112,159,70,0.3527517214712181],[112,159,71,0.356402317287854],[112,159,72,0.36010222939516956],[112,159,73,0.36382915236821417],[112,159,74,0.36755328074506266],[112,159,75,0.3712389826637909],[112,159,76,0.3724038832108963],[112,159,77,0.3710062002496443],[112,159,78,0.3694783178144292],[112,159,79,0.36786463515632056],[112,160,64,0.33463218284779783],[112,160,65,0.33793578704869415],[112,160,66,0.3412333425691231],[112,160,67,0.3445303308373502],[112,160,68,0.3478475688016616],[112,160,69,0.3512060739764811],[112,160,70,0.35461368669514043],[112,160,71,0.35806650547636676],[112,160,72,0.3615505788511566],[112,160,73,0.36504356100366564],[112,160,74,0.3685163273969025],[112,160,75,0.3719345466650583],[112,160,76,0.3725440218335432],[112,160,77,0.3711117984529709],[112,160,78,0.3695580998848189],[112,160,79,0.3679247836834849],[112,161,64,0.33708876156914364],[112,161,65,0.34026759231784237],[112,161,66,0.3434280861788093],[112,161,67,0.34657965195587076],[112,161,68,0.3497424751440496],[112,161,69,0.352933915287889],[112,161,70,0.35615914226826806],[112,161,71,0.3594125641162051],[112,161,72,0.36267942034999495],[112,161,73,0.365937340459039],[112,161,74,0.36915786394509287],[112,161,75,0.37230791843678623],[112,161,76,0.3722695528709394],[112,161,77,0.37080452630192856],[112,161,78,0.36922676973807445],[112,161,79,0.3675756744080875],[112,162,64,0.3392301147134844],[112,162,65,0.342283006881556],[112,162,66,0.34530524183040534],[112,162,67,0.3483098278747709],[112,162,68,0.35131630929040497],[112,162,69,0.35433859333232753],[112,162,70,0.3573793329168451],[112,162,71,0.36043134933026333],[112,162,72,0.3634791352095047],[112,162,73,0.36650032346676087],[112,162,74,0.3694671187818001],[112,162,75,0.37234768838601784],[112,162,76,0.3715972777584041],[112,162,77,0.3701023952769704],[112,162,78,0.36850349989632103],[112,162,79,0.3668375661316928],[112,163,64,0.3410519232908236],[112,163,65,0.3439778890200674],[112,163,66,0.34686071090099524],[112,163,67,0.3497167469969604],[112,163,68,0.35256487407578246],[112,163,69,0.3554156745128329],[112,163,70,0.3582693830750439],[112,163,71,0.36111730587321217],[112,163,72,0.3639432381409505],[112,163,73,0.3667248483290421],[112,163,74,0.3694350253325075],[112,163,75,0.37193440821034096],[112,163,76,0.3705457155626962],[112,163,77,0.3690263861219258],[112,163,78,0.3674117956355772],[112,163,79,0.36573650031143373],[112,164,64,0.3425505391341209],[112,164,65,0.34534855499528355],[112,164,66,0.3480905759595959],[112,164,67,0.35079618758719866],[112,164,68,0.3534835487942139],[112,164,69,0.35615992287108317],[112,164,70,0.3588231387202124],[112,164,71,0.3614630059415558],[112,164,72,0.3640626481991376],[112,164,73,0.36659980301068434],[112,164,74,0.3690480849634552],[112,164,75,0.37055657581672863],[112,164,76,0.3691414333410661],[112,164,77,0.36760680740940677],[112,164,78,0.3659858308691208],[112,164,79,0.36431056560855934],[112,165,64,0.3436952202674213],[112,165,65,0.34636143279948894],[112,165,66,0.348958367992769],[112,165,67,0.3515087652450159],[112,165,68,0.35403001071799534],[112,165,69,0.3565260346885365],[112,165,70,0.3589922779560502],[112,165,71,0.3614170983161259],[112,165,72,0.3637830151066356],[112,165,73,0.36606792039439595],[112,165,74,0.36824625399909017],[112,165,75,0.3688878400566329],[112,165,76,0.3674580639288243],[112,165,77,0.3659198694433029],[112,165,78,0.36430402840591036],[112,165,79,0.36263999518507123],[112,166,64,0.3444486188920206],[112,166,65,0.34697564156858934],[112,166,66,0.34941972436645186],[112,166,67,0.351806668209274],[112,166,68,0.3541530424620005],[112,166,69,0.35645948502794605],[112,166,70,0.35871913195215394],[112,166,71,0.36091900514392883],[112,166,72,0.36304115945303417],[112,166,73,0.3650637971229783],[112,166,74,0.36696234703362185],[112,166,75,0.3670060628686016],[112,166,76,0.36557478623025885],[112,166,77,0.364045490830676],[112,166,78,0.3624464531197677],[112,166,79,0.3608044066998839],[112,167,64,0.34478214421294096],[112,167,65,0.347159881222735],[112,167,66,0.34944072828271233],[112,167,67,0.35165342016690093],[112,167,68,0.35381368049394335],[112,167,69,0.3559189629844667],[112,167,70,0.3579602533182704],[112,167,71,0.35992342353949464],[112,167,72,0.36179027003479536],[112,167,73,0.36353952048089117],[112,167,74,0.365147807421485],[112,167,75,0.3649705862272112],[112,167,76,0.3635511312700465],[112,167,77,0.36204284729097774],[112,167,78,0.3604713809049439],[112,167,79,0.35886064635780296],[112,168,64,0.34467489505338106],[112,168,65,0.34689132962350394],[112,168,66,0.34899675942894515],[112,168,67,0.35102267891684263],[112,168,68,0.35298395516804293],[112,168,69,0.3548750410739414],[112,168,70,0.35668499889278565],[112,168,71,0.3583988032772577],[112,168,72,0.3599982566531793],[112,168,73,0.36146287628359725],[112,168,74,0.36277075096522265],[112,168,75,0.36282434043974865],[112,168,76,0.36142928685941594],[112,168,77,0.3599528856269313],[112,168,78,0.358418031808388],[112,168,79,0.356845747710226],[112,169,64,0.3441124878158506],[112,169,65,0.34615442482156905],[112,169,66,0.3480712202262648],[112,169,67,0.349896901088358],[112,169,68,0.3516454873603634],[112,169,69,0.35330869271137716],[112,169,70,0.35487395378433484],[112,169,71,0.3563256611753719],[112,169,72,0.3576459377889447],[112,169,73,0.3588153929221045],[112,169,74,0.3598138503551065],[112,169,75,0.3605961008595183],[112,169,76,0.3592365392025482],[112,169,77,0.35780095983524385],[112,169,78,0.356309407375264],[112,169,79,0.354779973900588],[112,170,64,0.3430858698274064],[112,170,65,0.34493963093856056],[112,170,66,0.34665424428626035],[112,170,67,0.3482659874417289],[112,170,68,0.349788063942259],[112,170,69,0.3512097871614642],[112,170,70,0.35251733231887555],[112,170,71,0.3536948729566306],[112,170,72,0.3547252077244495],[112,170,73,0.35559036841037894],[112,170,74,0.35627220786949104],[112,170,75,0.35675296655220523],[112,170,76,0.35698770763490395],[112,170,77,0.355599449875589],[112,170,78,0.3541550986020676],[112,170,79,0.3526698170432128],[112,171,64,0.3415901176112877],[112,171,65,0.34324218723564726],[112,171,66,0.3447413866387366],[112,171,67,0.34612590832369483],[112,171,68,0.3474081916738329],[112,171,69,0.34857556155348485],[112,171,70,0.34961335549687445],[112,171,71,0.3505059422063772],[112,171,72,0.35123718275222776],[112,171,73,0.3517908800987851],[112,171,74,0.35215121602884525],[112,171,75,0.3523031745715157],[112,171,76,0.3522329510765219],[112,171,77,0.3519283461184953],[112,171,78,0.35137914345861704],[112,171,79,0.3505109547929108],[112,172,64,0.3396232195739184],[112,172,65,0.3410608398646631],[112,172,66,0.34233229523292724],[112,172,67,0.34347730878609134],[112,172,68,0.3445076290315575],[112,172,69,0.3454090694811276],[112,172,70,0.3461666044893046],[112,172,71,0.34676524596720054],[112,172,72,0.3471903260248838],[112,172,73,0.34742777662832147],[112,172,74,0.34746440580379995],[112,172,75,0.3472881699386126],[112,172,76,0.34688844174499367],[112,172,77,0.34625627347486987],[112,172,78,0.3453846549959498],[112,172,79,0.344268766365024],[112,173,64,0.3371848425434344],[112,173,65,0.3383965557412835],[112,173,66,0.3394293631547706],[112,173,67,0.34032409281242754],[112,173,68,0.3410918954163742],[112,173,69,0.34171760563571457],[112,173,70,0.34218634962495786],[112,173,71,0.34248425642987573],[112,173,72,0.3425985505167576],[112,173,73,0.3425176516120547],[112,173,74,0.34223128188529583],[112,173,75,0.3417305805033385],[112,173,76,0.3410082255804143],[112,173,77,0.34005856354628744],[112,173,78,0.33887774595428694],[112,173,79,0.33746387375223724],[112,174,64,0.3342750815438208],[112,174,65,0.33525121792400875],[112,174,66,0.3360363609433892],[112,174,67,0.336671986033725],[112,174,68,0.33716875712095584],[112,174,69,0.337511105849412],[112,174,70,0.33768485424538197],[112,174,71,0.33767773809970275],[112,174,72,0.33747929948355687],[112,174,73,0.33708079844214434],[112,174,74,0.3364751444333112],[112,174,75,0.3356568480501836],[112,174,76,0.33462199353896316],[112,174,77,0.33336823259567383],[112,174,78,0.3318947998991108],[112,174,79,0.33020255081198946],[112,175,64,0.33089868509524684],[112,175,65,0.33163154712501286],[112,175,66,0.33216201670732914],[112,175,67,0.33253173166439304],[112,175,68,0.33275098961055877],[112,175,69,0.33280441940082034],[112,175,70,0.3326790957647507],[112,175,71,0.33236485334762406],[112,175,72,0.3318539711975899],[112,175,73,0.33114088976799916],[112,175,74,0.33022196156458666],[112,175,75,0.3290952365137441],[112,175,76,0.32776028307367233],[112,175,77,0.32621804605536125],[112,175,78,0.3244707420656199],[112,175,79,0.32252179343043164],[112,176,64,0.32708255248955453],[112,176,65,0.32756587009821303],[112,176,66,0.3278360009453012],[112,176,67,0.32793422254681753],[112,176,68,0.3278705713610581],[112,176,69,0.327630463071279],[112,176,70,0.3272027644062642],[112,176,71,0.32657987904637975],[112,176,72,0.3257572185948154],[112,176,73,0.32473272060612773],[112,176,74,0.32350641538357267],[112,176,75,0.3220800431760567],[112,176,76,0.32045672332279074],[112,176,77,0.31864067680968056],[112,176,78,0.3166370036168644],[112,176,79,0.31445151615251377],[112,177,64,0.3228620201244672],[112,177,65,0.3230912096448431],[112,177,66,0.3230969684526374],[112,177,67,0.3229196719381417],[112,177,68,0.32256918312555766],[112,177,69,0.32203226532979073],[112,177,70,0.32130008038178526],[112,177,71,0.32036803096704464],[112,177,72,0.31923501556854894],[112,177,73,0.3179027459043135],[112,177,74,0.3163751291615304],[112,177,75,0.3146577172201881],[112,177,76,0.31275722494685887],[112,177,77,0.31068111952492683],[112,177,78,0.30843728267189036],[112,177,79,0.3060337474786416],[112,178,64,0.31827507893798024],[112,178,65,0.318247677684153],[112,178,66,0.31798714955483454],[112,178,67,0.31753243205525117],[112,178,68,0.31689328857534604],[112,178,69,0.3160583488558868],[112,178,70,0.3150215226536334],[112,178,71,0.3137815870269827],[112,178,72,0.31234122593967933],[112,178,73,0.3107061483774551],[112,178,74,0.3088842878679866],[112,178,75,0.30688508615651616],[112,178,76,0.30471886364721895],[112,178,77,0.3023962790750552],[112,178,78,0.2999278807256525],[112,178,79,0.2973237513731195],[112,179,64,0.313361603216978],[112,179,65,0.31307760974714627],[112,179,66,0.312551374149692],[112,179,67,0.31181988965235474],[112,179,68,0.31089288224651324],[112,179,69,0.3097613116032393],[112,179,70,0.3084222247025705],[112,179,71,0.3068780809755888],[112,179,72,0.3051355805533681],[112,179,73,0.3032045873129736],[112,179,74,0.3010971501868086],[112,179,75,0.2988266260345334],[112,179,76,0.2964069072044209],[112,179,77,0.29385175673476965],[112,179,78,0.29117425396730184],[112,179,79,0.28838635316501093],[112,180,64,0.30816257735528285],[112,180,65,0.30762469837664363],[112,180,66,0.3068360975908733],[112,180,67,0.3058313680076796],[112,180,68,0.30462025029456535],[112,180,69,0.3031964294533485],[112,180,70,0.3015604034583853],[112,180,71,0.2997185438669701],[112,180,72,0.29768171996506615],[112,180,73,0.29546403394819676],[112,180,74,0.2930816711570921],[112,180,75,0.2905518691920329],[112,180,76,0.2878920095279396],[112,180,77,0.2851188350456798],[112,180,78,0.2822477966855117],[112,180,79,0.27929253221795736],[112,181,64,0.3027193201350925],[112,181,65,0.30193312497804137],[112,181,66,0.30088842793519754],[112,181,67,0.299617034824],[112,181,68,0.29812874354938684],[112,181,69,0.29642027994766584],[112,181,70,0.2944958208882164],[112,181,71,0.29236579283391967],[112,181,72,0.29004530226280106],[112,181,73,0.28755269301302316],[112,181,74,0.28490823509204743],[112,181,75,0.28213294926758004],[112,181,76,0.27924757152754004],[112,181,77,0.2762716612605208],[112,181,78,0.2732228567689553],[112,181,79,0.27011628148664335],[112,182,64,0.2970727060825649],[112,182,65,0.29604668963915787],[112,182,66,0.29475515404813757],[112,182,67,0.2932268155184686],[112,182,68,0.29147156233268756],[112,182,69,0.2894893865560496],[112,182,70,0.28728827770796556],[112,182,71,0.28488276664936385],[112,182,72,0.2822921755470953],[112,182,73,0.27953901000898107],[112,182,74,0.27664749841098096],[112,182,75,0.27364228318868145],[112,182,76,0.2705472686080101],[112,182,77,0.2673846292667411],[112,182,78,0.2641739833111004],[112,182,79,0.2609317340829855],[112,183,64,0.29126238342639427],[112,183,65,0.29000793841301875],[112,183,66,0.2884817740359006],[112,183,67,0.2867093113501094],[112,183,68,0.284700552472498],[112,183,69,0.2824588829123132],[112,183,70,0.27999613865647327],[112,183,71,0.27733090753842654],[112,183,72,0.27448661457057394],[112,183,73,0.2714897637812729],[112,183,74,0.2683683420105835],[112,183,75,0.2651503898454906],[112,183,76,0.261862744593149],[112,183,77,0.25852995990186967],[112,183,78,0.25517340634644886],[112,183,79,0.2518105569996124],[112,184,64,0.2853259881685499],[112,184,65,0.28385728753536843],[112,184,66,0.2821115234491448],[112,184,67,0.2801107218094046],[112,184,68,0.27786501192541485],[112,184,69,0.2753811964248137],[112,184,70,0.2726748887516404],[112,184,71,0.26976858868735537],[112,184,72,0.26668962102733357],[112,184,73,0.26346824393452273],[112,184,74,0.26013593280303254],[112,184,75,0.25672384516917085],[112,184,76,0.25326147190276943],[112,184,77,0.24977547959982171],[112,184,78,0.24628874878102813],[112,184,79,0.24281961218257075],[112,185,64,0.27929835375842904],[112,185,65,0.2776321440285761],[112,185,66,0.2756844026823402],[112,185,67,0.2734737706731702],[112,185,68,0.2710105073966428],[112,185,69,0.26830475065111214],[112,185,70,0.2653757199318374],[112,185,71,0.2622495868843028],[112,185,72,0.2589572869769499],[112,185,73,0.25553251264517995],[112,185,74,0.2520098940592863],[112,185,75,0.24842337335455408],[112,185,76,0.24480477783734292],[112,185,77,0.24118259734899697],[112,185,78,0.23758097063257344],[112,185,79,0.234018885208596],[112,186,64,0.27321071584527185],[112,186,65,0.27136602212525407],[112,186,66,0.26923620297382944],[112,186,67,0.26683663510919403],[112,186,68,0.26417770033026194],[112,186,69,0.2612726858104959],[112,186,70,0.2581441474746141],[112,186,71,0.25482159972115326],[112,186,72,0.2513392208893619],[112,186,73,0.2477337504336093],[112,186,74,0.24404258421611869],[112,186,75,0.2403020739981235],[112,186,76,0.23654603686840997],[112,186,77,0.23280447999915838],[112,186,78,0.22910254576488187],[112,186,79,0.22545968190414348],[112,187,64,0.2670899115707279],[112,187,65,0.26508765493024405],[112,187,66,0.2627975303967196],[112,187,67,0.26023187720085167],[112,187,68,0.25740118162954373],[112,187,69,0.2543215967985756],[112,187,70,0.2510186555798315],[112,187,71,0.24752480678716954],[112,187,72,0.24387703580671377],[112,187,73,0.24011468547869566],[112,187,74,0.23627748383671487],[112,187,75,0.23240378496638928],[112,187,76,0.2285290288906798],[112,187,77,0.2246844260263337],[112,187,78,0.22089587138783412],[112,187,79,0.21718309334514888],[112,188,64,0.2609575728514821],[112,188,65,0.25882010072621514],[112,188,66,0.256392827217416],[112,188,67,0.2536853772496856],[112,188,68,0.2507083144570621],[112,188,69,0.24748028806176647],[112,188,70,0.24402937150337936],[112,188,71,0.24039047429163857],[112,188,72,0.23660289913394822],[112,188,73,0.2327081060846393],[112,188,74,0.22874769045430463],[112,188,75,0.22476158086360234],[112,188,76,0.22078646346095654],[112,188,77,0.21685443795030923],[112,188,78,0.2129919106964685],[112,188,79,0.20921872979497247],[112,189,64,0.254829313093669],[112,189,65,0.2525798433187957],[112,189,66,0.2500393899897437],[112,189,67,0.24721526820661208],[112,189,68,0.2441180844597359],[112,189,69,0.2407685446891615],[112,189,70,0.23719676763355502],[112,189,71,0.23343960256686364],[112,189,72,0.22953814359441083],[112,189,73,0.22553545594637225],[112,189,74,0.22147452107912813],[112,189,75,0.21739640703417432],[112,189,76,0.21333867013229268],[112,189,77,0.20933399370027012],[112,189,78,0.20540906914168988],[112,189,79,0.20158372427553264],[112,190,64,0.24871390677500999],[112,190,65,0.24637588581052475],[112,190,66,0.2437463837467826],[112,190,67,0.2408308705785748],[112,190,68,0.2376399567633136],[112,190,69,0.2341959190835991],[112,190,70,0.23053039091339728],[112,190,71,0.22668161592314137],[112,190,72,0.22269193891827707],[112,190,73,0.21860551190490538],[112,190,74,0.21446622220914577],[112,190,75,0.21031584911217366],[112,190,76,0.20619245508697825],[112,190,77,0.20212901733853375],[112,190,78,0.19815230495935873],[112,190,79,0.194282006620732],[112,191,64,0.24261246132736172],[112,191,65,0.2402088371891543],[112,191,66,0.23751385164999148],[112,191,67,0.23453162715733908],[112,191,68,0.23127273908442653],[112,191,69,0.22776053258287748],[112,191,70,0.2240276190290352],[112,191,71,0.2201130943539958],[112,191,72,0.2160600238703796],[112,191,73,0.2119131439370017],[112,191,74,0.20771678725431594],[112,191,75,0.2035130382177319],[112,191,76,0.19934012437891446],[112,191,77,0.19523104967977215],[112,191,78,0.1912124747331167],[112,191,79,0.18730384903129005],[112,192,64,0.23651758075316295],[112,192,65,0.2340699911164533],[112,192,66,0.2313317194574068],[112,192,67,0.2283060369222021],[112,192,68,0.22500345031768115],[112,192,69,0.22144789141752053],[112,192,70,0.21767244280784906],[112,192,71,0.2137165466242888],[112,192,72,0.20962349827131982],[112,192,73,0.20543815718610364],[112,192,74,0.20120488136407852],[112,192,75,0.19696569199912245],[112,192,76,0.19275867421544007],[112,192,77,0.1886166194843528],[112,192,78,0.18456591492994998],[112,192,79,0.18062568433642334],[112,193,64,0.23041252041315197],[112,193,65,0.2279403963077467],[112,193,66,0.2251787941787588],[112,193,67,0.22213058747776634],[112,193,68,0.21880619396938247],[112,193,69,0.21522971641229563],[112,193,70,0.21143427429993158],[112,193,71,0.20745922431478622],[112,193,72,0.20334767472039425],[112,193,73,0.19914421591209494],[112,193,74,0.19489287373650002],[112,193,75,0.19063529182810637],[112,193,76,0.18640914883907211],[112,193,77,0.18224681605753448],[112,193,78,0.1781742605240579],[112,193,79,0.1742101983681624],[112,194,64,0.22427033242970312],[112,194,65,0.22178991789996508],[112,194,66,0.219021756295276],[112,194,67,0.21596868540160064],[112,194,68,0.21264103582841376],[112,194,69,0.20906278586481697],[112,194,70,0.20526678005193089],[112,194,71,0.20129197644425595],[112,194,72,0.19718098979070622],[112,194,73,0.19297784931601478],[112,194,74,0.1887259775849325],[112,194,75,0.18446639657432032],[112,194,76,0.18023616671015646],[112,194,77,0.17606706425034147],[112,194,78,0.17198450201301768],[112,194,79,0.16800669806717922],[112,195,64,0.21805343613486602],[112,195,65,0.2155768038371671],[112,195,66,0.21281473462555725],[112,195,67,0.20977024716828227],[112,195,68,0.20645362083289112],[112,195,69,0.20288859499958603],[112,195,70,0.19910760488557888],[112,195,71,0.19514906275374458],[112,195,72,0.19105493395369325],[112,195,73,0.18686852585773714],[112,195,74,0.18263249603982307],[112,195,75,0.17838708569254155],[112,195,76,0.17416858391381806],[112,195,77,0.1700080281235193],[112,195,78,0.1659301454939423],[112,195,79,0.16195253990023933],[112,196,64,0.209158626277178],[112,196,65,0.2092730941779366],[112,196,66,0.2065284285552678],[112,196,67,0.20350446885610218],[112,196,68,0.20021153269060818],[112,196,69,0.1966731229633473],[112,196,70,0.19292123288289484],[112,196,71,0.1889936669907055],[112,196,72,0.18493165464698946],[112,196,73,0.18077767462134464],[112,196,74,0.17657349699513378],[112,196,75,0.17235844823407281],[112,196,76,0.16816790493070788],[112,196,77,0.16403202134999795],[112,196,78,0.15997469554006225],[112,196,79,0.156012778397472],[112,197,64,0.19946694157447317],[112,197,65,0.20129533673274327],[112,197,66,0.20016667832440777],[112,197,67,0.19717815054392632],[112,197,68,0.19392432760920816],[112,197,69,0.19042844472062762],[112,197,70,0.1867219636792878],[112,197,71,0.18284194876758164],[112,197,72,0.17882872902769362],[112,197,73,0.1747237691108483],[112,197,74,0.1705677547384801],[112,197,75,0.16639889847359488],[112,197,76,0.16225147114772218],[112,197,77,0.15815456392859012],[112,197,78,0.15413108564891648],[112,197,79,0.1501969996506078],[112,198,64,0.18972927973224674],[112,198,65,0.1915744462972725],[112,198,66,0.19328127169024525],[112,198,67,0.19079336900472232],[112,198,68,0.18759631957549291],[112,198,69,0.18416087001814882],[112,198,70,0.18051781471479242],[112,198,71,0.17670328692799525],[112,198,72,0.17275648707946786],[112,198,73,0.16871761573517335],[112,198,74,0.16462601713250966],[112,198,75,0.16051853874997868],[112,198,76,0.15642811207499438],[112,198,77,0.1523825593736495],[112,198,78,0.14840363091021982],[112,198,79,0.14450627670699356],[112,199,64,0.17997958482508708],[112,199,65,0.18183353817117093],[112,199,66,0.1835438954651034],[112,199,67,0.18434565978999318],[112,199,68,0.18122443065343163],[112,199,69,0.17786848842808595],[112,199,70,0.17430779901624313],[112,199,71,0.17057733928928723],[112,199,72,0.166714913045868],[112,199,73,0.16275916602661433],[112,199,74,0.15874780556495988],[112,199,75,0.1547160301289618],[112,199,76,0.15069517367521756],[112,199,77,0.14671156939556992],[112,199,78,0.14278563709298242],[112,199,79,0.13893119807773321],[112,200,64,0.1702534830637318],[112,200,65,0.17210647206441831],[112,200,66,0.17381146082060975],[112,200,67,0.17536113063307743],[112,200,68,0.17480019097316107],[112,200,69,0.1715432769724502],[112,200,70,0.16808414346478806],[112,200,71,0.1644563707109408],[112,200,72,0.16069607861934182],[112,200,73,0.15684004656068787],[112,200,74,0.15292402973520935],[112,200,75,0.14898127704778774],[112,200,76,0.14504125512673044],[112,200,77,0.1411285827965125],[112,200,78,0.13726217998578072],[112,200,79,0.13345463472221938],[112,201,64,0.1605866931923622],[112,201,65,0.16242790896444473],[112,201,66,0.16411774834875656],[112,201,67,0.16564642339900068],[112,201,68,0.1670020817884036],[112,201,69,0.1651730735556197],[112,201,70,0.16183438365076677],[112,201,71,0.15832747081729803],[112,201,72,0.15468648111703254],[112,201,73,0.1509460113596007],[112,201,74,0.14713954441447688],[112,201,75,0.1432980751853733],[112,201,76,0.13944893154373958],[112,201,77,0.1356147942113502],[112,201,78,0.1318129192721338],[112,201,79,0.12805456668315865],[112,202,64,0.15101359342782347],[112,202,65,0.15283179501403177],[112,202,66,0.15449637701347552],[112,202,67,0.15599463659242144],[112,202,68,0.1573131769681031],[112,202,69,0.15843337146081513],[112,202,70,0.15554333545946541],[112,202,71,0.15217466172001748],[112,202,72,0.1486692872011358],[112,202,73,0.1450593175555048],[112,202,74,0.1413756491759135],[112,202,75,0.13764672377145226],[112,202,76,0.133897464077063],[112,202,77,0.13014839431577974],[112,202,78,0.1264149487464074],[112,202,79,0.12270697134268557],[112,203,64,0.14156594580468912],[112,203,65,0.14335000123440805],[112,203,66,0.1449793506376325],[112,203,67,0.14643797465762914],[112,203,68,0.14771063505172324],[112,203,69,0.1487791558364984],[112,203,70,0.1491949434344473],[112,203,71,0.1459808960050029],[112,203,72,0.14262648263854458],[112,203,73,0.13916102504577418],[112,203,74,0.13561253206705742],[112,203,75,0.13200660354527852],[112,203,76,0.12836549883720366],[112,203,77,0.12470737316324335],[112,203,78,0.12104568473623302],[112,203,79,0.11738877535078857],[112,204,64,0.1322717789547715],[112,204,65,0.13401112001483712],[112,204,66,0.1355957577112393],[112,204,67,0.1370060096251073],[112,204,68,0.1382245074094485],[112,204,69,0.13923348256493928],[112,204,70,0.14001228317607073],[112,204,71,0.13972994515679463],[112,204,72,0.1365409285199185],[112,204,73,0.13323322081655045],[112,204,74,0.12983165816091818],[112,204,75,0.12635872155889954],[112,204,76,0.12283375608712213],[112,204,77,0.11927233833911965],[112,204,78,0.11568579464522048],[112,204,79,0.11208087234540699],[112,205,64,0.12900835115707607],[112,205,65,0.12690195640783636],[112,205,66,0.12637062547208777],[112,205,67,0.1277244172246354],[112,205,68,0.12888102095894807],[112,205,69,0.12982300043998693],[112,205,70,0.13053117728249947],[112,205,71,0.13098570610879887],[112,205,72,0.1303983242725522],[112,205,73,0.12726116854297728],[112,205,74,0.12401810387332396],[112,205,75,0.12068822399153865],[112,205,76,0.11728771114437837],[112,205,77,0.11382934963396615],[112,205,78,0.11032216756397395],[112,205,79,0.10677120863818822],[112,206,64,0.1292386319134809],[112,206,65,0.12682389050777382],[112,206,66,0.12442389680863164],[112,206,67,0.12200364123776104],[112,206,68,0.11970131952822233],[112,206,69,0.12056908889960129],[112,206,70,0.12119948483241093],[112,206,71,0.12157508284876767],[112,206,72,0.12167952049373246],[112,206,73,0.12123538399650115],[112,206,74,0.11816283787453055],[112,206,75,0.11498687810143247],[112,206,76,0.11172026841229045],[112,206,77,0.10837277193812835],[112,206,78,0.10495092891852699],[112,206,79,0.10145793908123547],[112,207,64,0.12960318388255637],[112,207,65,0.1268677077575123],[112,207,66,0.12414953117339593],[112,207,67,0.12140951850394195],[112,207,68,0.11861561356626074],[112,207,69,0.115744234184247],[112,207,70,0.11277294651126457],[112,207,71,0.11232020008851863],[112,207,72,0.1123402162310567],[112,207,73,0.11208013921169635],[112,207,74,0.1115316195298454],[112,207,75,0.1092524716389423],[112,207,76,0.10613040430251865],[112,207,77,0.10290311895162253],[112,207,78,0.09957446527365933],[112,207,79,0.09614563691575588],[112,208,64,0.13010521181439857],[112,208,65,0.12703675722570543],[112,208,66,0.12398874744472894],[112,208,67,0.1209179065335884],[112,208,68,0.11778932382988472],[112,208,69,0.11457957187657149],[112,208,70,0.11126785388049668],[112,208,71,0.10783597448938861],[112,208,72,0.10426849963803318],[112,208,73,0.1028124164100584],[112,208,74,0.10218929420268709],[112,208,75,0.1012862737881614],[112,208,76,0.10010466660119816],[112,208,77,0.09740881380274544],[112,208,78,0.09417983574820922],[112,208,79,0.09082042671938227],[112,209,64,0.13074268036039652],[112,209,65,0.12732937319929757],[112,209,66,0.12394048310172145],[112,209,67,0.12052871662935113],[112,209,68,0.11705622341204161],[112,209,69,0.11349958789215198],[112,209,70,0.10983957306787141],[112,209,71,0.10606069465629073],[112,209,72,0.10215104554850377],[112,209,73,0.09810210277616208],[112,209,74,0.09390851701027339],[112,209,75,0.09203680572336348],[112,209,76,0.09081053689063495],[112,209,77,0.08933157716332797],[112,209,78,0.08760941254367695],[112,209,79,0.08546216445335332],[112,210,64,0.1315082440187576],[112,210,65,0.1277392423630491],[112,210,66,0.12399964175212644],[112,210,67,0.12023838158470904],[112,210,68,0.1164146571556317],[112,210,69,0.11250491590735004],[112,210,70,0.10849136536839606],[112,210,71,0.10436114469891475],[112,210,72,0.10010580515092712],[112,210,73,0.09572080117398091],[112,210,74,0.09120499293623881],[112,210,75,0.08656016101453753],[112,210,76,0.08179053398657132],[112,210,77,0.08018482174041947],[112,210,78,0.0784653505926112],[112,210,79,0.07654076506181759],[112,211,64,0.13238936124291636],[112,211,65,0.128255414167239],[112,211,66,0.1241570018640265],[112,211,67,0.12003966262177371],[112,211,68,0.11585969093702853],[112,211,69,0.11159324539781493],[112,211,70,0.1072238279268844],[112,211,71,0.10274105392406116],[112,211,72,0.09813978605607672],[112,211,73,0.09341930752735068],[112,211,74,0.08858253634488286],[112,211,75,0.08363528202830373],[112,211,76,0.07858554614874176],[112,211,77,0.07344286800840066],[112,211,78,0.06951203855052138],[112,211,79,0.06761910570104207],[112,212,64,0.1333685856999826],[112,212,65,0.12886248926373922],[112,212,66,0.12439930465297044],[112,212,67,0.11992163702735036],[112,212,68,0.11538299841652062],[112,212,69,0.11075910750820814],[112,212,70,0.1060345798855769],[112,212,71,0.10120130514106179],[112,212,72,0.09625723730947595],[112,212,73,0.091205253913687],[112,212,74,0.08605208586075554],[112,212,75,0.08080732031840293],[112,212,76,0.07548247858702829],[112,212,77,0.07009017086245785],[112,212,78,0.06464332966154022],[112,212,79,0.059154523555776724],[112,213,64,0.13442403730978822],[112,213,65,0.12954098853872148],[112,213,66,0.12470952355508937],[112,213,67,0.11986986882705446],[112,213,68,0.11497293270595263],[112,213,69,0.10999384789464152],[112,213,70,0.10491813752042967],[112,213,71,0.09973971453039988],[112,213,72,0.09445933799560316],[112,213,73,0.08908316703361256],[112,213,74,0.08362141528188959],[112,213,75,0.07808710870083649],[112,213,76,0.07249494932392606],[112,213,77,0.06686028740449226],[112,213,78,0.06119820423744237],[112,213,79,0.05552270775876815],[112,214,64,0.13553005585138347],[112,214,65,0.13026790542856864],[112,214,66,0.1250673178769362],[112,214,67,0.1198667649997347],[112,214,68,0.11461478537332666],[112,214,69,0.10928578887979516],[112,214,70,0.10386598062661417],[112,214,71,0.09835100447846205],[112,214,72,0.09274408015967564],[112,214,73,0.08705426642913014],[112,214,74,0.08129485391339152],[112,214,75,0.0754818909858443],[112,214,76,0.06963284587228032],[112,214,77,0.06376540794908],[112,214,78,0.05789643098181719],[112,214,79,0.05204102082968413],[112,215,64,0.13665804006960386],[112,215,65,0.13101744435419502],[112,215,66,0.1254496733642188],[112,215,67,0.11989211988892409],[112,215,68,0.11429123536192609],[112,215,69,0.10862058342187254],[112,215,70,0.1028668125781581],[112,215,71,0.09702697172563751],[112,215,72,0.09110634831408265],[112,215,73,0.08511646007515028],[112,215,74,0.07907320449499157],[112,215,75,0.07299516997952683],[112,215,76,0.06690211240824752],[112,215,77,0.06081360051335388],[112,215,78,0.05474783325777089],[112,215,79,0.048720632118168426],[112,216,64,0.1377774753480631],[112,216,65,0.13176194824632345],[112,216,66,0.12583173257242977],[112,216,67,0.11992385061261912],[112,216,68,0.11398299055010895],[112,216,69,0.10798176355118018],[112,216,70,0.10190701664318076],[112,216,71,0.09575685333503355],[112,216,72,0.08953819795958358],[112,216,73,0.0832645396938625],[112,216,74,0.0769538609879178],[112,216,75,0.0706267548510522],[112,216,76,0.06430473515154697],[112,216,77,0.05800874378473612],[112,216,78,0.05175785825866808],[112,216,79,0.04556820293692445],[112,217,64,0.13885715313365368],[112,217,65,0.13247301825749763],[112,217,66,0.12618781804998205],[112,217,67,0.11993892640488679],[112,217,68,0.11366962481499499],[112,217,69,0.10735148607011691],[112,217,70,0.10097131128292561],[112,217,71,0.09452789314021241],[112,217,72,0.08802933570638133],[112,217,73,0.08149057829959878],[112,217,74,0.07493112864699296],[112,217,75,0.06837301020553133],[112,217,76,0.06183892820379407],[112,217,77,0.055350658619562475],[112,217,78,0.04892766396334781],[112,217,79,0.042585939389371365],[112,218,64,0.13986658539938499],[112,218,65,0.1331228288636721],[112,218,66,0.12649265145671404],[112,218,67,0.11991449494044297],[112,218,68,0.11333061358651453],[112,218,69,0.10671147844126878],[112,218,70,0.10004360729722088],[112,218,71,0.09332611146997243],[112,218,72,0.08656780372443634],[112,218,73,0.0797845326300637],[112,218,74,0.07299674895519342],[112,218,75,0.06622730935620033],[112,218,76,0.05949952225044554],[112,218,77,0.05283544038622903],[112,218,78,0.04625440424267086],[112,218,79,0.039771840008654274],[112,219,64,0.1407776175145721],[112,219,65,0.13368564164659624],[112,219,66,0.12672277183499847],[112,219,67,0.11982920879387374],[112,219,68,0.11294657098522436],[112,219,69,0.10604418790168321],[112,219,70,0.09910806979868364],[112,219,71,0.09213728107383164],[112,219,72,0.08514087138350636],[112,219,73,0.07813505325569213],[112,219,74,0.07114063213776306],[112,219,75,0.06418069443239839],[112,219,76,0.057278558676697684],[112,219,77,0.050455994612174405],[112,219,78,0.04373171448163066],[112,219,79,0.03712014047410167],[112,220,64,0.14156624295102083],[112,220,65,0.13413952111492228],[112,220,66,0.12685815632431982],[112,220,67,0.11966475526583754],[112,220,68,0.11250069172517534],[112,220,69,0.10533413693655552],[112,220,70,0.09815038810027696],[112,220,71,0.09094811228102194],[112,220,72,0.08373613705885696],[112,220,73,0.07653050528004401],[112,220,74,0.06935180009896788],[112,220,75,0.0622227460897248],[112,220,76,0.055166091780421506],[112,220,77,0.04820277852844925],[112,220,78,0.04135040021623672],[112,220,79,0.03462195780553704],[112,221,64,0.14221462328833936],[112,221,65,0.13446825596443931],[112,221,66,0.1268840466604036],[112,221,67,0.1194075928666383],[112,221,68,0.11198040102917968],[112,221,69,0.10456948831965046],[112,221,70,0.09715925668286403],[112,221,71,0.08974765051545604],[112,221,72,0.08234284317543425],[112,221,73,0.07496020264750172],[112,221,74,0.06761954273365763],[112,221,75,0.06034266570260563],[112,221,76,0.05315120188274957],[112,221,77,0.046064751225704],[112,221,78,0.03909933140578181],[112,221,79,0.03226613655734235],[112,222,64,0.14271331698804013],[112,222,65,0.13466348919322155],[112,222,66,0.12679298482399642],[112,222,67,0.11905089778022272],[112,222,68,0.11137921584524965],[112,222,69,0.10374382297803712],[112,222,70,0.09612807046835008],[112,222,71,0.0885288893565389],[112,222,72,0.08095340763870108],[112,222,73,0.07341585915734689],[112,222,74,0.06593479065520766],[112,222,75,0.05853057301456628],[112,222,76,0.05122322223659876],[112,222,77,0.04403053523850385],[112,222,78,0.03696654506636348],[112,222,79,0.03004029964033347],[112,223,64,0.1430637203810175],[112,223,65,0.13472706047223823],[112,223,66,0.12658706119870164],[112,223,67,0.11859672363547046],[112,223,68,0.11069882066641286],[112,223,69,0.10285813396176456],[112,223,70,0.09505683765661882],[112,223,71,0.08729060237762054],[112,223,72,0.07956517485117195],[112,223,73,0.07189325934245505],[112,223,74,0.06429170744814763],[112,223,75,0.05677902229489107],[112,223,76,0.04937318271237183],[112,223,77,0.04208979245825367],[112,223,78,0.03494055907803134],[112,223,79,0.027932106487844367],[112,224,64,0.14328072425345417],[112,224,65,0.13467356412317122],[112,224,66,0.12628037855890117],[112,224,67,0.1180583778836175],[112,224,68,0.1099513612384363],[112,224,69,0.1019230397918304],[112,224,70,0.09395431338750775],[112,224,71,0.08603939700704755],[112,224,72,0.0781823895366133],[112,224,73,0.07039415240299166],[112,224,74,0.06268950459442688],[112,224,75,0.05508474009858847],[112,224,76,0.047595473294873805],[112,224,77,0.04023481733517045],[112,224,78,0.033011900042206714],[112,224,79,0.02593072134944092],[112,225,64,0.14339558931893773],[112,225,65,0.1345331259695739],[112,225,66,0.1259017351345029],[112,225,67,0.11746301801749097],[112,225,68,0.10916195938796144],[112,225,69,0.10096122041888665],[112,225,70,0.09284035745924318],[112,225,71,0.08479199363787926],[112,225,72,0.07681839658558158],[112,225,73,0.06892837238732111],[112,225,74,0.0611344822335387],[112,225,75,0.05345058774644766],[112,225,76,0.04588973045290665],[112,225,77,0.03846235036357197],[112,225,78,0.031174848104947812],[112,225,79,0.024028494538391097],[112,226,64,0.14345904372513282],[112,226,65,0.13435440220073988],[112,226,66,0.12549752988476268],[112,226,67,0.1168544707657836],[112,226,68,0.10837145211303907],[112,226,69,0.10001007894656434],[112,226,70,0.09174851926811077],[112,226,71,0.08357773315747183],[112,226,72,0.07549807009266173],[112,226,73,0.06751618778014533],[112,226,74,0.05964229889501019],[112,226,75,0.05188775162992349],[112,226,76,0.04426294943964593],[112,226,77,0.036775614848927315],[112,226,78,0.02942940167209739],[112,226,79,0.02222285947436698],[112,227,64,0.14354285416454615],[112,227,65,0.13420686680997232],[112,227,66,0.12513468840791253],[112,227,67,0.11629677839862032],[112,227,68,0.10764058369707134],[112,227,69,0.09912661779931231],[112,227,70,0.09073163541348954],[112,227,71,0.08244492199178918],[112,227,72,0.07426491250967052],[112,227,73,0.06619613652228021],[112,227,74,0.058246495822106774],[112,227,75,0.050424880513422594],[112,227,76,0.042739128800005126],[112,227,77,0.035194335257264765],[112,227,78,0.027791511834614525],[112,227,79,0.02052660531053616],[112,228,64,0.14372070122469746],[112,228,65,0.13416507610461176],[112,228,66,0.12488803457589905],[112,228,67,0.11586459735723008],[112,228,68,0.10704352546313421],[112,228,69,0.09838424759155893],[112,228,70,0.08986210788634312],[112,228,71,0.08146472356804485],[112,228,72,0.07318862995398123],[112,228,73,0.06503625569041045],[112,228,74,0.057013234432932755],[112,228,75,0.04912605869640091],[112,228,76,0.0413800810707733],[112,228,77,0.033777867468732126],[112,228,78,0.02631790654099527],[112,228,79,0.018993678867904443],[112,229,64,0.14404603645245087],[112,229,65,0.1342841292767351],[112,229,66,0.12481372963755301],[112,229,67,0.11561474461843277],[112,229,68,0.1066374949112711],[112,229,69,0.09784040818831022],[112,229,70,0.08919746452624332],[112,229,71,0.08069463737688548],[112,229,72,0.07232657561909735],[112,229,73,0.06409361840195454],[112,229,74,0.055999148905025095],[112,229,75,0.04804729262255234],[112,229,76,0.04024096524973285],[112,229,77,0.03258027471546718],[112,229,78,0.025061281373483072],[112,229,79,0.01767511983443217],[112,230,64,0.14455229721789906],[112,230,65,0.13459869020113455],[112,230,66,0.12494723746327334],[112,230,67,0.11558315757056746],[112,230,68,0.10645869278871932],[112,230,69,0.09753143916617157],[112,230,70,0.08877411485363065],[112,230,71,0.08017110516218993],[112,230,72,0.0717151974268033],[112,230,73,0.06340464947376397],[112,230,74,0.05524059767790454],[112,230,75,0.04722481007458736],[112,230,76,0.03935778946190223],[112,230,77,0.031637230894204164],[112,230,78,0.024056837435790634],[112,230,79,0.016605497514951495],[112,231,64,0.14525563436433375],[112,231,65,0.13512571611835272],[112,231,66,0.12530604649071864],[112,231,67,0.11578761498191675],[112,231,68,0.10652503224395787],[112,231,69,0.09747532162181324],[112,231,70,0.0886101044265832],[112,231,71,0.079912273501413],[112,231,72,0.07137280068806767],[112,231,73,0.06298787664154887],[112,231,74,0.0547563888029098],[112,231,75,0.04667774282136329],[112,231,76,0.038750032189314935],[112,231,77,0.030968560322450815],[112,231,78,0.023324718788048676],[112,231,79,0.015805224860076714],[112,232,64,0.14615749264825936],[112,232,65,0.1358670379105381],[112,232,66,0.12589224376557834],[112,232,67,0.11623031170867122],[112,232,68,0.10683872458783263],[112,232,69,0.09767428119142199],[112,232,70,0.08870773713226696],[112,232,71,0.07992063341658079],[112,232,72,0.07130219939616815],[112,232,73,0.06284658454461889],[112,232,74,0.05455042465310737],[112,232,75,0.04641074752748027],[112,232,76,0.038423222746612695],[112,232,77,0.03058075951689292],[112,232,78,0.022872456135727356],[112,232,79,0.01528290405988578],[112,233,64,0.14724704259438512],[112,233,65,0.13681179024069698],[112,233,66,0.12669493905599535],[112,233,67,0.1169002848543636],[112,233,68,0.10738871911116174],[112,233,69,0.0981172494708581],[112,233,70,0.08905606234954203],[112,233,71,0.0801855337125953],[112,233,72,0.07149325263171454],[112,233,73,0.06297136777228589],[112,233,74,0.05461426215139426],[112,233,75,0.046416561001643264],[112,233,76,0.03837147706380633],[112,233,77,0.03046949711639947],[112,233,78,0.02269741303912147],[112,233,79,0.015037700201330911],[112,234,64,0.14850346215724555],[112,234,65,0.1379386899996857],[112,234,66,0.12769253755531298],[112,234,67,0.11777568997601136],[112,234,68,0.10815299564672314],[112,234,69,0.09878218263607756],[112,234,70,0.08963322591728255],[112,234,71,0.08068556713778376],[112,234,72,0.07192528536029263],[112,234,73,0.06334258246228379],[112,234,74,0.05492958823772978],[112,234,75,0.04667848975233397],[112,234,76,0.03857998900475473],[112,234,77,0.030622092445460103],[112,234,78,0.022789235408390958],[112,234,79,0.015061744020026318],[112,235,64,0.14989806636154673],[112,235,65,0.1392181612894349],[112,235,66,0.12885485947571151],[112,235,67,0.11882592572278027],[112,235,68,0.10910070835546466],[112,235,69,0.09963823585585815],[112,235,70,0.09040868363566004],[112,235,71,0.0813908282545846],[112,235,72,0.07256939269712741],[112,235,73,0.06393269573670014],[112,235,74,0.055470610094046274],[112,235,75,0.04717283362066402],[112,235,76,0.03902747725633503],[112,235,77,0.031019973026874773],[112,235,78,0.02313230487028236],[112,235,79,0.015342564607867044],[112,236,64,0.15139628287964685],[112,236,65,0.1406143049608551],[112,236,66,0.1301451046287383],[112,236,67,0.12001360508852123],[112,236,68,0.11019417901282991],[112,236,69,0.10064779188428007],[112,236,70,0.0913452758216596],[112,236,71,0.08226504170059028],[112,236,72,0.07339062650387054],[112,236,73,0.06470853205042502],[112,236,74,0.05620635943444269],[112,236,75,0.04787124304988989],[112,236,76,0.03968858761465613],[112,236,77,0.031641111147095266],[112,236,78,0.02370819639193582],[112,236,79,0.015865552743546722],[112,237,64,0.15295945517316764],[112,237,65,0.14208669392725698],[112,237,66,0.1315216428482691],[112,237,67,0.12129635380012722],[112,237,68,0.11139072001789731],[112,237,69,0.10176832380046119],[112,237,70,0.09240114268227537],[112,237,71,0.08326754045510366],[112,237,72,0.07435004384260736],[112,237,73,0.06563339594606056],[112,237,74,0.057102890381530144],[112,237,75,0.04874298959539124],[112,237,76,0.04053623040808069],[112,237,77,0.03246241939926396],[112,237,78,0.02449812031727023],[112,237,79,0.01661643527263855],[112,238,64,0.154543116315441],[112,238,65,0.14358853647585287],[112,238,66,0.13293607670152374],[112,238,67,0.12262479196692966],[112,238,68,0.11264055872336502],[112,238,69,0.10295028508848607],[112,238,70,0.09352760172603156],[112,238,71,0.08435115008487101],[112,238,72,0.07540261501365626],[112,238,73,0.06666501795147392],[112,238,74,0.058121274170688936],[112,238,75,0.04975301714039168],[112,238,76,0.04153969266862546],[112,238,77,0.03345792507249589],[112,238,78,0.025481157223341006],[112,238,79,0.01757956592001665],[112,239,64,0.15609746914631561],[112,239,65,0.1450679100210436],[112,239,66,0.13433506150813107],[112,239,67,0.12394475953181677],[112,239,68,0.1138892780564353],[112,239,69,0.10413956951687962],[112,239,70,0.09467143190897741],[112,239,71,0.08546410920624477],[112,239,72,0.07649860499246215],[112,239,73,0.06775623923950891],[112,239,74,0.05921745123364165],[112,239,75,0.05086085127350651],[112,239,76,0.042662523381979955],[112,239,77,0.034595580894869325],[112,239,78,0.026629976418403242],[112,239,79,0.018732567284702767],[112,240,64,0.15758598032029836],[112,240,65,0.14648920481860606],[112,240,66,0.13568398273917617],[112,240,67,0.1252225418446087],[112,240,68,0.11510386112529433],[112,240,69,0.10530362592311823],[112,240,70,0.09580031456614621],[112,240,71,0.08657411985719163],[112,240,72,0.0776055641630904],[112,240,73,0.06887433928100761],[112,240,74,0.06035837359045164],[112,240,75,0.0520331286494101],[112,240,76,0.04387112704265915],[112,240,77,0.0358417129431297],[112,240,78,0.027911046508829446],[112,240,79,0.020042332908420352],[112,241,64,0.1589828291628473],[112,241,65,0.14782789699128818],[112,241,66,0.1369594800522733],[112,241,67,0.12643563113574444],[112,241,68,0.11626221242758052],[112,241,69,0.10642027489790197],[112,241,70,0.09689147598019583],[112,241,71,0.08765732404454704],[112,241,72,0.07869810944243188],[112,241,73,0.06999204131854299],[112,241,74,0.06151459219104242],[112,241,75,0.05323805198224964],[112,241,76,0.045131292863561386],[112,241,77,0.03715974596443279],[112,241,78,0.029285590690951307],[112,241,79,0.02146815710484574],[112,242,64,0.1602701558372574],[112,242,65,0.1490669519941174],[112,242,66,0.13814517955997033],[112,242,67,0.12756798778386683],[112,242,68,0.11734816470064838],[112,242,69,0.10747268404036947],[112,242,70,0.09792685199404956],[112,242,71,0.08869386950800463],[112,242,72,0.07975408734601559],[112,242,73,0.07108444757659624],[112,242,74,0.06265811297585225],[112,242,75,0.0544442855486536],[112,242,76,0.04640821508551923],[112,242,77,0.03851139839260541],[112,242,78,0.03071196956275407],[112,242,79,0.022682748531765752],[112,243,64,0.16143723907263655],[112,243,65,0.1501960646489246],[112,243,66,0.13923100527182422],[112,243,67,0.12860943742764494],[112,243,68,0.11835097972852539],[112,243,69,0.1084489921854013],[112,243,70,0.09889285578480096],[112,243,71,0.08966784046671152],[112,243,72,0.08075468550507844],[112,243,73,0.07212934695660625],[112,243,74,0.0637629131631714],[112,243,75,0.055621689037202104],[112,243,76,0.04766744960713188],[112,243,77,0.03985786305415505],[112,243,78,0.03214708323706552],[112,243,79,0.02107601739035075],[112,244,64,0.162479643954],[112,244,65,0.15121086560829342],[112,244,66,0.14021245309865882],[112,244,67,0.129555025563246],[112,244,68,0.11926480027626739],[112,244,69,0.10934187768439789],[112,244,70,0.09978008240554169],[112,244,71,0.09056711806769441],[112,244,72,0.08168446740165737],[112,244,73,0.07310744034752574],[112,244,74,0.0648053706701073],[112,244,75,0.056741961353961645],[112,244,76,0.04887577882916204],[112,244,77,0.0411608958666987],[112,244,78,0.03131332860516785],[112,244,79,0.019555632044477717],[112,245,64,0.16339833927185063],[112,245,65,0.15211209368979192],[112,245,66,0.14108982680000912],[112,245,67,0.13040432892796158],[112,245,68,0.12008805234965951],[112,245,69,0.11014806982250758],[112,245,70,0.10058294905940099],[112,245,71,0.09138316938557187],[112,245,72,0.08253132906660005],[112,245,73,0.07400248220775535],[112,245,74,0.0657646052537888],[112,245,75,0.057779192924383146],[112,245,76,0.05000198323259715],[112,245,77,0.04191959393551832],[112,245,78,0.030054983871489166],[112,245,79,0.018146088748922252],[112,246,64,0.1641987840401617],[112,246,65,0.1529047336274457],[112,246,66,0.141867435355362],[112,246,67,0.131160723062389],[112,246,68,0.1208227970606993],[112,246,69,0.11086780252607945],[112,246,70,0.10129927012663335],[112,246,71,0.0921107638626291],[112,246,72,0.08328637650545229],[112,246,73,0.07480133707248407],[112,246,74,0.06662272993363791],[112,246,75,0.058710324980523004],[112,246,76,0.05101751813150999],[112,246,77,0.040925593500067005],[112,246,78,0.02891919279067828],[112,246,79,0.01687121024877975],[112,247,64,0.16488998291826193],[112,247,65,0.15359711890898392],[112,247,66,0.14255275135526588],[112,247,67,0.13183060555187204],[112,247,68,0.12147403147885548],[112,247,69,0.11150420960263994],[112,247,70,0.10192976604032654],[112,247,71,0.0927476161362954],[112,247,72,0.08394372265543926],[112,247,73,0.07549394965620719],[112,247,74,0.06736501124629243],[112,247,75,0.05951551428627981],[112,247,76,0.05189709397699285],[112,247,77,0.04005084486583608],[112,247,78,0.027922172334355167],[112,247,79,0.015752862056823205],[112,248,64,0.16548351041383605],[112,248,65,0.15419999950463015],[112,248,66,0.14315553014001817],[112,248,67,0.13242257457305417],[112,248,68,0.12204893796533309],[112,248,69,0.11206266086268427],[112,248,70,0.10247750520011024],[112,248,71,0.09329395427845315],[112,248,72,0.08450020273436107],[112,248,73,0.07607322725479257],[112,248,74,0.06797993689340205],[112,248,75,0.0601784017334633],[112,248,76,0.051414615006423595],[112,248,77,0.039303171071746974],[112,248,78,0.027077163459741517],[112,248,79,0.014809764841209563],[112,249,64,0.16599250390264403],[112,249,65,0.15472557444772506],[112,249,66,0.1436868895631084],[112,249,67,0.13294656251514014],[112,249,68,0.12255608162436019],[112,249,69,0.11255003860004786],[112,249,70,0.10294727822829682],[112,249,71,0.09375201257007187],[112,249,72,0.08495500692155737],[112,249,73,0.07653483320736554],[112,249,74,0.06845918937151939],[112,249,75,0.06068628324055237],[112,249,76,0.0508622210029627],[112,249,77,0.038687006867671486],[112,249,78,0.026393573275572745],[112,249,79,0.014056404909935026],[112,250,64,0.16643062567666325],[112,250,65,0.15518648940038404],[112,250,66,0.14415835042512004],[112,250,67,0.13341292460916243],[112,250,68,0.12300455566332517],[112,250,69,0.11297395405721258],[112,250,70,0.10334490401098523],[112,250,71,0.09412544805736531],[112,250,72,0.08530922941425523],[112,250,73,0.07687689025768851],[112,250,74,0.06879752422496666],[112,250,75,0.0610301814062752],[112,250,76,0.050407011161260354],[112,250,77,0.03820287345878483],[112,250,78,0.025876220177352714],[112,250,79,0.01350204490880423],[112,251,64,0.16681099442593098],[112,251,65,0.1555947995285707],[112,251,66,0.14458083781135808],[112,251,67,0.1338314826822946],[112,251,68,0.12340307463274046],[112,251,69,0.11334190367410737],[112,251,70,0.10367646712843133],[112,251,71,0.09441868028284311],[112,251,72,0.08556533303054663],[112,251,73,0.07709959275871096],[112,251,74,0.06899255163802609],[112,251,75,0.06120481641283586],[112,251,76,0.050042007474139096],[112,251,77,0.037846959170949435],[112,251,78,0.025524684036100434],[112,251,79,0.013149836967579041],[112,252,64,0.1671450867730538],[112,252,65,0.15596089822314935],[112,252,66,0.1449636437758688],[112,252,67,0.13421052436097847],[112,252,68,0.12375901572051039],[112,252,69,0.11366036511694402],[112,252,70,0.10394748646782383],[112,252,71,0.09463615375973998],[112,252,72,0.08572652868659669],[112,252,73,0.07720472679625498],[112,252,74,0.06904442018584463],[112,252,75,0.06120847474253871],[112,252,76,0.04975672172579498],[112,252,77,0.03761080795943696],[112,252,78,0.0253327635824015],[112,252,79,0.012996040633868913],[112,253,64,0.16744160971250116],[112,253,65,0.15629241243607678],[112,253,66,0.1453133520453159],[112,253,67,0.13455575827603644],[112,253,68,0.1240774085027671],[112,253,69,0.11393383330750943],[112,253,70,0.1041620150277748],[112,253,71,0.09478152296189882],[112,253,72,0.08579606926110844],[112,253,73,0.07719509746922326],[112,253,74,0.06895540169501284],[112,253,75,0.06104277436770366],[112,253,76,0.049537171287254864],[112,253,77,0.03748111767206331],[112,253,78,0.02528804316482203],[112,253,79,0.013029348022690176],[112,254,64,0.1677053450613696],[112,254,65,0.1565930656560265],[112,254,66,0.14563272567056323],[112,254,67,0.13486922607735083],[112,254,68,0.12435987380805506],[112,254,69,0.11416379692578717],[112,254,70,0.10432167117021376],[112,254,71,0.09485675983622312],[112,254,72,0.08577645757773264],[112,254,73,0.0770738627575274],[112,254,74,0.06872937632820053],[112,254,75,0.060712325200502015],[112,254,76,0.0493660048293543],[112,254,77,0.03743964994117567],[112,254,78,0.025371571076999062],[112,254,79,0.013230318680076387],[112,255,64,0.16676374756686177],[112,255,65,0.15686150982641822],[112,255,66,0.14591955883294522],[112,255,67,0.13514817234641066],[112,255,68,0.12460351263443341],[112,255,69,0.1143476561414777],[112,255,70,0.10442460185384309],[112,255,71,0.09486118411344878],[112,255,72,0.0856685684883015],[112,255,73,0.0768437736375561],[112,255,74,0.06837121720503321],[112,255,75,0.06022428374925913],[112,255,76,0.049222739383380114],[112,255,77,0.03746325351429435],[112,255,78,0.025557651638486976],[112,255,79,0.013570926709306935],[112,256,64,0.16540385474405422],[112,256,65,0.1570901278116285],[112,256,66,0.14616549431675188],[112,256,67,0.13538387380289135],[112,256,68,0.12479974637110254],[112,256,69,0.11447758264418474],[112,256,70,0.10446437869534422],[112,256,71,0.09479041699682415],[112,256,72,0.08547068532829218],[112,256,73,0.07650632037042591],[112,256,74,0.06788607410567653],[112,256,75,0.05958780112302242],[112,256,76,0.04908411003035687],[112,256,77,0.03752400273727071],[112,256,78,0.025813753177550285],[112,256,79,0.014014222735200777],[112,257,64,0.1638307922554935],[112,257,65,0.15550832644556148],[112,257,66,0.14635482306248387],[112,257,67,0.13556044338585016],[112,257,68,0.12493312316212728],[112,257,69,0.11453933619323739],[112,257,70,0.10442884061718727],[112,257,71,0.09463527170045141],[112,257,72,0.08517746411728298],[112,257,73,0.07606079843095914],[112,257,74,0.06727857001371734],[112,257,75,0.05881337861604467],[112,257,76,0.04892454804423153],[112,257,77,0.03758946630285096],[112,257,78,0.026100546181431327],[112,257,79,0.01451412401650972],[112,258,64,0.16206491564057865],[112,258,65,0.15371559460650214],[112,258,66,0.14527301121771138],[112,258,67,0.13565377684825203],[112,258,68,0.1249803518427504],[112,258,69,0.11451137105099864],[112,258,70,0.10429925698891876],[112,258,71,0.09438095717405236],[112,258,72,0.08477916196958736],[112,258,73,0.0755035464465164],[112,258,74,0.06655203462637714],[112,258,75,0.05791208443942444],[112,258,76,0.04871711822531494],[112,258,77,0.03762368120182595],[112,258,78,0.026372919577235907],[112,258,79,0.01501647613793352],[112,259,64,0.1601392464057984],[112,259,65,0.15176930396547522],[112,259,66,0.1433316811721103],[112,259,67,0.13482149426349674],[112,259,68,0.12491635944436277],[112,259,69,0.11437238777052243],[112,259,70,0.10405865952447645],[112,259,71,0.09401532855305803],[112,259,72,0.08426885457725834],[112,259,73,0.07483314039335381],[112,259,74,0.06571069120465337],[112,259,75,0.05689379454375835],[112,259,76,0.048365719222811146],[112,259,77,0.037599163027182664],[112,259,78,0.02659817578246004],[112,259,79,0.015483911559518681],[112,260,64,0.15808819037254918],[112,260,65,0.14969997632659598],[112,260,66,0.14126897836095664],[112,260,67,0.13279806122507734],[112,260,68,0.12424697086770489],[112,260,69,0.11410985489276212],[112,260,70,0.10369962889822275],[112,260,71,0.09353585739883208],[112,260,72,0.08364851371750653],[112,260,73,0.07405551341544273],[112,260,74,0.06476377003807865],[112,260,75,0.055770270792314655],[112,260,76,0.04706317071536035],[112,260,77,0.03749583705774276],[112,260,78,0.02675595110447191],[112,260,79,0.015896699655466688],[112,261,64,0.15593889346512682],[112,261,65,0.14753138214332967],[112,261,66,0.13910481333814023],[112,261,67,0.13066989107367286],[112,261,68,0.1221895218271187],[112,261,69,0.11359765013254591],[112,261,70,0.10321960699952128],[112,261,71,0.09294445474557878],[112,261,72,0.0829242561717959],[112,261,73,0.07318059533252334],[112,261,74,0.06372450984432379],[112,261,75,0.05455746423875489],[112,261,76,0.045672340467252354],[112,261,77,0.03705444422299176],[112,261,78,0.02682114146988033],[112,261,79,0.016229508371734713],[112,262,64,0.15371149887211885],[112,262,65,0.1452808666765083],[112,262,66,0.13685335055145614],[112,262,67,0.12844752050368566],[112,262,68,0.12002986953114418],[112,262,69,0.11153441869132391],[112,262,70,0.1026200871084705],[112,262,71,0.09224656984482385],[112,262,72,0.08210536580605361],[112,262,73,0.07222127592228669],[112,262,74,0.06260908200861366],[112,262,75,0.05327442092082743],[112,262,76,0.044214673517761774],[112,262,77,0.035419867215614666],[112,262,78,0.02676493259518706],[112,262,79,0.01645237891928257],[112,263,64,0.15141935446448032],[112,263,65,0.14295951628133066],[112,263,66,0.134523137181387],[112,263,67,0.12613658268949898],[112,263,68,0.11777037024699666],[112,263,69,0.10935937179305955],[112,263,70,0.10085045298053646],[112,263,71,0.09145088141058585],[112,263,72,0.08120385870536612],[112,263,73,0.07119281352015976],[112,263,74,0.06143581429990526],[112,263,75,0.05194229523843957],[112,263,76,0.04271384685761101],[112,263,77,0.03374501680438059],[112,263,78,0.025024119765764498],[112,263,79,0.016532730944507676],[112,264,64,0.14906886057202923],[112,264,65,0.14057196517965684],[112,264,66,0.13211687558392576],[112,264,67,0.12373756451022475],[112,264,68,0.11540899044050099],[112,264,69,0.10706770604133949],[112,264,70,0.09866120530429348],[112,264,71,0.09014832261830445],[112,264,72,0.08023434082882236],[112,264,73,0.07011251817212437],[112,264,74,0.060224669649547584],[112,264,75,0.05058359767797109],[112,264,76,0.04119476335168339],[112,264,77,0.03205698836057208],[112,264,78,0.023163161539248734],[112,264,79,0.014500949072621873],[112,265,64,0.1466589550028034],[112,265,65,0.13811583973719735],[112,265,66,0.12963083651326782],[112,265,67,0.1212452102155884],[112,265,68,0.11293873015811601],[112,265,69,0.10465048001412607],[112,265,70,0.0963294005127121],[112,265,71,0.08793477424200391],[112,265,72,0.0792141604282626],[112,265,73,0.06899971159540524],[112,265,74,0.05899698229335458],[112,265,75,0.049221679263915616],[112,265,76,0.03968276088859089],[112,265,77,0.03038304381489041],[112,265,78,0.02131980845810012],[112,265,79,0.018569779693225395],[112,266,64,0.1441802327831316],[112,266,65,0.1355808378477295],[112,266,66,0.1270539108671972],[112,266,67,0.1186475694125072],[112,266,68,0.11034669864275289],[112,266,69,0.10209375266095275],[112,266,70,0.09383993208706283],[112,266,71,0.08554573080681885],[112,266,72,0.07718033136716371],[112,266,73,0.06787596576594947],[112,266,74,0.05777545315700171],[112,266,75,0.047880454710596335],[112,266,76,0.0382030388523146],[112,266,77,0.028749722248084173],[112,266,78,0.02556630166499122],[112,266,79,0.023161466858765113],[112,267,64,0.14161369864889697],[112,267,65,0.13294744156791263],[112,267,66,0.12436629822395785],[112,267,67,0.11592468776022564],[112,267,68,0.1076128406724652],[112,267,69,0.09937738258866004],[112,267,70,0.09117255262502091],[112,267,71,0.08296078784934749],[112,267,72,0.07471216383410653],[112,267,73,0.06640384971374357],[112,267,74,0.056584405976327634],[112,267,75,0.046584365869748],[112,267,76,0.03678030364303999],[112,267,77,0.03342346677957303],[112,267,78,0.03071030300169718],[112,267,79,0.02800209919900228],[112,268,64,0.13892915083245222],[112,268,65,0.13018526164884325],[112,268,66,0.1215378309265666],[112,268,67,0.11304693923171974],[112,268,68,0.10470831256290752],[112,268,69,0.09647348723616493],[112,268,70,0.08830045774894521],[112,268,71,0.0801542754537702],[112,268,72,0.07200652549873644],[112,268,73,0.06383482805175092],[112,268,74,0.055450305288295074],[112,268,75,0.04535858672396193],[112,268,76,0.04211499781263241],[112,268,77,0.03911988789563224],[112,268,78,0.03611369089460309],[112,268,79,0.03310069143482387],[112,269,64,0.1360831951656882],[112,269,65,0.1272510130748977],[112,269,66,0.11852593291967553],[112,269,67,0.10997299923126484],[112,269,68,0.10159350718917844],[112,269,69,0.09334456133596603],[112,269,70,0.08518854164822423],[112,269,71,0.07709369497364676],[112,269,72,0.06903364163634082],[112,269,73,0.06098691707041577],[112,269,74,0.05328370749483495],[112,269,75,0.05157768258350465],[112,269,76,0.04834975397132059],[112,269,77,0.045080378293441276],[112,269,78,0.04178103258942826],[112,269,79,0.038460398855745356],[112,270,64,0.13301688895809738],[112,270,65,0.12408612114693789],[112,270,66,0.11527321295547503],[112,270,67,0.10664745825285601],[112,270,68,0.09821572776053389],[112,270,69,0.0899412544212094],[112,270,70,0.0817913240137639],[112,270,71,0.07373784145064712],[112,270,72,0.06575686345883727],[112,270,73,0.05902880384334307],[112,270,74,0.058188196737333754],[112,270,75,0.05717063539929346],[112,270,76,0.05485366364341921],[112,270,77,0.05130838753693101],[112,270,78,0.04771198645383624],[112,270,79,0.04407759949925437],[112,271,64,0.12968604687419566],[112,271,65,0.12064721761020253],[112,271,66,0.11173783437392548],[112,271,67,0.10303071538252614],[112,271,68,0.09453823682375215],[112,271,69,0.08623020225351175],[112,271,70,0.07807919819206532],[112,271,71,0.07006112122740624],[112,271,72,0.06444124141183356],[112,271,73,0.06372678146859656],[112,271,74,0.06289253790309987],[112,271,75,0.061922219550063835],[112,271,76,0.06080127300715739],[112,271,77,0.057796914223220544],[112,271,78,0.0538969578802036],[112,271,79,0.049940685921452274],[112,272,64,0.1261615869089093],[112,272,65,0.11700715672066142],[112,272,66,0.10799413802439976],[112,272,67,0.09919802344515959],[112,272,68,0.09063646979251283],[112,272,69,0.08228613330705539],[112,272,70,0.07412517664580782],[112,272,71,0.06972936679562954],[112,272,72,0.06902985457671189],[112,272,73,0.06827068319697174],[112,272,74,0.06743412553691835],[112,272,75,0.06650322539929922],[112,272,76,0.06546167552761668],[112,272,77,0.0642937663474591],[112,272,78,0.06030507778142308],[112,272,79,0.056028794119588984],[112,273,64,0.1225354219680298],[112,273,65,0.11326021180985707],[112,273,66,0.10413809752802936],[112,273,67,0.09524627587892036],[112,273,68,0.08660730074042666],[112,273,69,0.0782047929167573],[112,273,70,0.07513884418174947],[112,273,71,0.07434004817243516],[112,273,72,0.07353944085481913],[112,273,73,0.07272027242836437],[112,273,74,0.07186554991293381],[112,273,75,0.07095789980479203],[112,273,76,0.0699795134763231],[112,273,77,0.06891217527093732],[112,273,78,0.06689684607582747],[112,273,79,0.06231416048379912],[112,274,64,0.11888888221484042],[112,274,65,0.10949021175519458],[112,274,66,0.10025549441183035],[112,274,67,0.09126258548135922],[112,274,68,0.08253841585369359],[112,274,69,0.08090730999723934],[112,274,70,0.07990416500852078],[112,274,71,0.07894953356636794],[112,274,72,0.07803004438648105],[112,274,73,0.07713111116177812],[112,274,74,0.0762367485878689],[112,274,75,0.07532948279287294],[112,274,76,0.07439035616637482],[112,274,77,0.0733990264289757],[112,274,78,0.07233395963636773],[112,274,79,0.06876300490527515],[112,275,64,0.11529356817728714],[112,275,65,0.10577132872415253],[112,275,66,0.09642263001357765],[112,275,67,0.08862550766973175],[112,275,68,0.08724014347435613],[112,275,69,0.08594757485084559],[112,275,70,0.08474163532680137],[112,275,71,0.08361447419253759],[112,275,72,0.08255618912201018],[112,275,73,0.08155456383188738],[112,275,74,0.08059491105317726],[112,275,75,0.0796600209085904],[112,275,76,0.07873021461162774],[112,275,77,0.07778350323154543],[112,275,78,0.0767958511032417],[112,275,79,0.07533601502143476],[112,276,64,0.1118120204062686],[112,276,65,0.1021686802585572],[112,276,66,0.0960369476297859],[112,276,67,0.09429141414858053],[112,276,68,0.09265270899154779],[112,276,69,0.09112294544343198],[112,276,70,0.08970144088673274],[112,276,71,0.08838485031161089],[112,276,72,0.0871667951706353],[112,276,73,0.08603760733578857],[112,276,74,0.08498418840464866],[112,276,75,0.08398998440304853],[112,276,76,0.08303507573650187],[112,276,77,0.08209638205365982],[112,276,78,0.08114798150357962],[112,276,79,0.0801615436962783],[112,277,64,0.10849820392984247],[112,277,65,0.1042370482346413],[112,277,66,0.1021510931335647],[112,277,67,0.10014344706704753],[112,277,68,0.09824868631339369],[112,277,69,0.09647476164713846],[112,277,70,0.09482613722258701],[112,277,71,0.09330380521070573],[112,277,72,0.09190490172590479],[112,277,73,0.09062244665042957],[112,277,74,0.08944520758973895],[112,277,75,0.08835768797623524],[112,277,76,0.0873402391277054],[112,277,77,0.08636929586233552],[112,277,78,0.08541773507582544],[112,277,79,0.08445535649972374],[112,278,64,0.11317720262985778],[112,278,65,0.11082159936992675],[112,278,66,0.10847631818666086],[112,278,67,0.10621008545915907],[112,278,68,0.10405892236349713],[112,278,69,0.10203597344120714],[112,278,70,0.10015040356425495],[112,278,71,0.09840728600531781],[112,278,72,0.09680719601558728],[112,278,73,0.09534593563566338],[112,278,74,0.09401438997470613],[112,278,75,0.0927985149629143],[112,278,76,0.09167945635758798],[112,278,77,0.09063379956507711],[112,278,78,0.08963394963157638],[112,278,79,0.08864864055685143],[112,279,64,0.1202329646797197],[112,279,65,0.1176251488441271],[112,279,66,0.11502957952240156],[112,279,67,0.11251075522020582],[112,279,68,0.11010530524539654],[112,279,69,0.10783081400495413],[112,279,70,0.10570060368226138],[112,279,71,0.10372349076344412],[112,279,72,0.10190334790971331],[112,279,73,0.10023880279104394],[112,279,74,0.09872307413431758],[112,279,75,0.09734394499747147],[112,279,76,0.09608387304503128],[112,279,77,0.09492023737127091],[112,279,78,0.09382572119698494],[112,279,79,0.09276882955638968],[112,280,64,0.12749965934277924],[112,280,65,0.12465317362447412],[112,280,66,0.12181859576403083],[112,280,67,0.11905551823905605],[112,280,68,0.11640035254383965],[112,280,69,0.11387427974198339],[112,280,70,0.11149415322733534],[112,280,71,0.10927212162961407],[112,280,72,0.10721514998477127],[112,280,73,0.1053246818865169],[112,280,74,0.10359644290658918],[112,280,75,0.10202038532109158],[112,280,76,0.10058077393535106],[112,280,77,0.09925641256191976],[112,280,78,0.09802101047744768],[112,280,79,0.09684368796613645],[112,281,64,0.1349715049172368],[112,281,65,0.13190180154928427],[112,281,66,0.12884143409005291],[112,281,67,0.12584456858814105],[112,281,68,0.122946606464303],[112,281,69,0.12017141686342922],[112,281,70,0.11753869329207159],[112,281,71,0.11506344378118386],[112,281,72,0.11275546298458264],[112,281,73,0.11061894751742946],[112,281,74,0.10865225487308525],[112,281,75,0.10684780600068555],[112,281,76,0.10519213137499081],[112,281,77,0.10366606014614912],[112,281,78,0.10224505172186879],[112,281,79,0.10089966891012304],[112,282,64,0.14263329623459023],[112,282,65,0.13935728643012008],[112,282,66,0.1360859036924873],[112,282,67,0.13286753539978327],[112,282,68,0.1297358355132784],[112,282,69,0.1267164143146569],[112,282,70,0.12383107006736588],[112,282,71,0.12109715018253933],[112,282,72,0.11852696673960651],[112,282,73,0.11612735574337459],[112,282,74,0.11389938052233256],[112,282,75,0.11183817941414519],[112,282,76,0.10993295763041605],[112,282,77,0.10816712294544194],[112,282,78,0.10651856461476444],[112,282,79,0.104960074700818],[112,283,64,0.15045976884942894],[112,283,65,0.1469952901408273],[112,283,66,0.14352875575877985],[112,283,67,0.14010259221409677],[112,283,68,0.1367480425679861],[112,283,69,0.13349150296492795],[112,283,70,0.13035612058984905],[112,283,71,0.12736103221453576],[112,283,72,0.1245207167060791],[112,283,73,0.12184449005799218],[112,283,74,0.11933614342957678],[112,283,75,0.11699372442049308],[112,283,76,0.11480946155327405],[112,283,77,0.11276983168835947],[112,283,78,0.1108557698559583],[112,283,79,0.10904302075864272],[112,284,64,0.1584147718156058],[112,284,65,0.15477997153052514],[112,284,66,0.15113468985224482],[112,284,67,0.14751537271803555],[112,284,68,0.14395027930796217],[112,284,69,0.1404656610921566],[112,284,70,0.13708526467756796],[112,284,71,0.13382945634565876],[112,284,72,0.13071450636356427],[112,284,73,0.1277520130020588],[112,284,74,0.12494846683952143],[112,284,75,0.12230495567538098],[112,284,76,0.1198170101246434],[112,284,77,0.11747458971861735],[112,284,78,0.11526220909767446],[112,284,79,0.1131592036517152],[112,285,64,0.1664502489889881],[112,285,65,0.16266288212882882],[112,285,66,0.15885516668816407],[112,285,67,0.15505769290747562],[112,285,68,0.15129526708257182],[112,285,69,0.14759312628522672],[112,285,70,0.14397490322983997],[112,285,71,0.14046164707818587],[112,285,72,0.13707103576433105],[112,285,73,0.13381672377515996],[112,285,74,0.1307078260699708],[112,285,75,0.12774853857232915],[112,285,76,0.12493789542021996],[112,285,77,0.12226966291802234],[112,285,78,0.119732369897675],[112,285,79,0.11730947396844453],[112,286,64,0.1745050289138467],[112,286,65,0.17058166872044628],[112,286,66,0.16662702740236157],[112,286,67,0.1626660797937842],[112,286,68,0.15871982436722512],[112,286,69,0.1548117139536747],[112,286,70,0.15096462312282222],[112,286,71,0.14719977644633636],[112,286,72,0.14353588655976487],[112,286,73,0.13998842222122881],[112,286,74,0.13656900716275247],[112,286,75,0.13328495028737664],[112,286,76,0.13013890752486315],[112,286,77,0.12712867542220935],[112,286,78,0.1242471163140147],[112,286,79,0.12148221469370728],[112,287,64,0.1825034234437476],[112,287,65,0.17845858295169736],[112,287,66,0.17437091948505978],[112,287,67,0.17026010684203235],[112,287,68,0.16614310101577195],[112,287,69,0.1620409426777534],[112,287,70,0.15797520896373832],[112,287,71,0.15396686036286567],[112,287,72,0.15003530383657368],[112,287,73,0.14619757955906737],[112,287,74,0.14246767219270345],[112,287,75,0.13885594737822643],[112,287,76,0.13536871388786317],[112,287,77,0.1320079116601769],[112,287,78,0.12877092571082835],[112,287,79,0.12565052569466365],[112,288,64,0.19035363531821167],[112,288,65,0.18619879819311075],[112,288,66,0.1819895296047893],[112,288,67,0.17774053636950765],[112,288,68,0.1734646195469129],[112,288,69,0.16917996665063234],[112,288,70,0.16490646197355868],[112,288,71,0.16066446210544305],[112,288,72,0.15647378507855866],[112,288,73,0.15235281620031668],[112,288,74,0.14831773160556833],[112,288,75,0.14438184033821552],[112,288,76,0.14055504554928722],[112,288,77,0.13684342517800935],[112,288,78,0.13324893226504955],[112,288,79,0.12976921483460063],[112,289,64,0.19794597441192496],[112,289,65,0.1936885338737163],[112,289,66,0.189365624037523],[112,289,67,0.18498727012203883],[112,289,68,0.18056212518251144],[112,289,69,0.17610531741725644],[112,289,70,0.17163482866276375],[112,289,71,0.16717020602802726],[112,289,72,0.16273147970765697],[112,289,73,0.1583381904133756],[112,289,74,0.15400852757418843],[112,289,75,0.14975857924306957],[112,289,76,0.14560169443534912],[112,289,77,0.14154795841219245],[112,289,78,0.13760378121297903],[112,289,79,0.13377159953445003],[112,290,64,0.20363643219511934],[112,290,65,0.2007955428856832],[112,290,66,0.19636464814805069],[112,290,67,0.19186405114391386],[112,290,68,0.18729834880437624],[112,290,69,0.18267963775647958],[112,290,70,0.17802396348384442],[112,290,71,0.17334997474618286],[112,290,72,0.16867777683455448],[112,290,73,0.16402788743488717],[112,290,74,0.1594202963593239],[112,290,75,0.15487363020323047],[112,290,76,0.15040442278294858],[112,290,77,0.1460264920065688],[112,290,78,0.14175042362837323],[112,290,79,0.13758316213848681],[112,291,64,0.20673168765222544],[112,291,65,0.2045003531320831],[112,291,66,0.20157510764373796],[112,291,67,0.1961792267427645],[112,291,68,0.1917512183275104],[112,291,69,0.1882744302015296],[112,291,70,0.1839721047666193],[112,291,71,0.17910904883776366],[112,291,72,0.17422558939494304],[112,291,73,0.16934292333904277],[112,291,74,0.16448247994269832],[112,291,75,0.1596650164746544],[112,291,76,0.15490981226162925],[112,291,77,0.1502339619610399],[112,291,78,0.14565176862594076],[112,291,79,0.14117423695295933],[112,292,64,0.20994135003642841],[112,292,65,0.2075723464045583],[112,292,66,0.20350566756703264],[112,292,67,0.19798144833139575],[112,292,68,0.19342641196915789],[112,292,69,0.18982574847160238],[112,292,70,0.18712936865559904],[112,292,71,0.18438134390041144],[112,292,72,0.17931627587439689],[112,292,73,0.17423241547328502],[112,292,74,0.16915212523732948],[112,292,75,0.1640977255958858],[112,292,76,0.1590906360807843],[112,292,77,0.1541506070621821],[112,292,78,0.1492950426952496],[112,292,79,0.14453841558725583],[112,293,64,0.21331868878221158],[112,293,65,0.2108040046228132],[112,293,66,0.20543267843897187],[112,293,67,0.19978486167818588],[112,293,68,0.19510586407497638],[112,293,69,0.1913828459675179],[112,293,70,0.18856747920050404],[112,293,71,0.18657517649556127],[112,293,72,0.1839101187165852],[112,293,73,0.17866310557454873],[112,293,74,0.17340264167258237],[112,293,75,0.1681519152045906],[112,293,76,0.1629337455178425],[112,293,77,0.15776978128088034],[112,293,78,0.15267977921127365],[112,293,79,0.14768096396584685],[112,294,64,0.21689205882084966],[112,294,65,0.21405320211351497],[112,294,66,0.20734149422148757],[112,294,67,0.20157575255305232],[112,294,68,0.19677680386860674],[112,294,69,0.19293389186263832],[112,294,70,0.19000062447214877],[112,294,71,0.18789414798295695],[112,294,72,0.18649013277917992],[112,294,73,0.18261739298492818],[112,294,74,0.1772217237776689],[112,294,75,0.1718206991052439],[112,294,76,0.1664376944316847],[112,294,77,0.16109539320312674],[112,294,78,0.15581505140542165],[112,294,79,0.15061583021431815],[112,295,64,0.22066669658560573],[112,295,65,0.21603580186234134],[112,295,66,0.20921857360083904],[112,295,67,0.20334144735763798],[112,295,68,0.19842744993429484],[112,295,69,0.19446800556387],[112,295,70,0.19141881654368176],[112,295,71,0.1891989876913988],[112,295,72,0.18768592907333487],[112,295,73,0.18609157692751938],[112,295,74,0.1806094893426081],[112,295,75,0.17510815653952763],[112,295,76,0.16961059564451103],[112,295,77,0.16413958693602979],[112,295,78,0.15871695723314555],[112,295,79,0.15336291552953374],[112,296,64,0.22462632687438866],[112,296,65,0.21796559106098895],[112,296,66,0.21105180678168325],[112,296,67,0.20507063284259852],[112,296,68,0.20004732296779004],[112,296,69,0.19597556270572672],[112,296,70,0.19281328910777018],[112,296,71,0.19048177124576987],[112,296,72,0.1888604359462076],[112,296,73,0.18778875473578588],[112,296,74,0.18357683409121173],[112,296,75,0.17802756552910792],[112,296,76,0.1724682099996585],[112,296,77,0.1669206652368961],[112,296,78,0.1614063568285733],[112,296,79,0.15594560866877819],[112,297,64,0.22770114822830254],[112,297,65,0.2198315846957317],[112,297,66,0.2128308625571739],[112,297,67,0.20675369685145822],[112,297,68,0.20162758023683586],[112,297,69,0.1974485234689081],[112,297,70,0.19417681988581975],[112,297,71,0.19173608774144976],[112,297,72,0.19000802504139075],[112,297,73,0.18883404411918187],[112,297,74,0.1861440036064257],[112,297,75,0.18059986095759598],[112,297,76,0.1750322686898444],[112,297,77,0.16946125538875],[112,297,78,0.16390686299958396],[112,297,79,0.1583885844423956],[112,298,64,0.2295587714345653],[112,298,65,0.2216250396341637],[112,298,66,0.21454755565490352],[112,298,67,0.20838309009084954],[112,298,68,0.2031613717510677],[112,298,69,0.1988807832232045],[112,298,70,0.1955040759094597],[112,298,71,0.1929573799134306],[112,298,72,0.19112489408253114],[112,298,73,0.18985025913803963],[112,298,74,0.18833938307730275],[112,298,75,0.18285231787924766],[112,298,76,0.17732902926144084],[112,298,77,0.17178671814597565],[112,298,78,0.16624308500532348],[112,298,79,0.16071586637061536],[112,299,64,0.2313257787239456],[112,299,65,0.22333984688126976],[112,299,66,0.21619623435881263],[112,299,67,0.20995370892725956],[112,299,68,0.20464421814144035],[112,299,69,0.20026854549485362],[112,299,70,0.1967919816744173],[112,299,71,0.19414330766174848],[112,299,72,0.19220942603187552],[112,299,73,0.1908364654628423],[112,299,74,0.18992021182961977],[112,299,75,0.18481746038663066],[112,299,76,0.17938806553593697],[112,299,77,0.17392379989910745],[112,299,78,0.16843912567246228],[112,299,79,0.16294915346799912],[112,300,64,0.2329988684159225],[112,300,65,0.22497294329554277],[112,300,66,0.21777418840706406],[112,300,67,0.21146329921028031],[112,300,68,0.20607441024918433],[112,300,69,0.20161071725834684],[112,300,70,0.19804011016677875],[112,300,71,0.1952941349332311],[112,300,72,0.19326257203002906],[112,300,73,0.1917942669951943],[112,300,74,0.1907859294641783],[112,300,75,0.18653219623830775],[112,300,76,0.18124129154985696],[112,300,77,0.1758995280582415],[112,300,78,0.17051733174657172],[112,300,79,0.16510641094820075],[112,301,64,0.23457833460833621],[112,301,65,0.22652474276504062],[112,301,66,0.21928207716577328],[112,301,67,0.21291288112225804],[112,301,68,0.20745343042418135],[112,301,69,0.20290932655257637],[112,301,70,0.19925109676152794],[112,301,71,0.1964131399594492],[112,301,72,0.19428825811681658],[112,301,73,0.19272820926504378],[112,301,74,0.19163078071248185],[112,301,75,0.18803717734118675],[112,301,76,0.18292221949968135],[112,301,77,0.17774034953062312],[112,301,78,0.17249729724128207],[112,301,79,0.16720072449790274],[112,302,64,0.2360685195255135],[112,302,65,0.2279995868435001],[112,302,66,0.22072437807871462],[112,302,67,0.2143071950544551],[112,302,68,0.20878639553288014],[112,302,69,0.20416996242144195],[112,302,70,0.20043107599348373],[112,302,71,0.1975070488509953],[112,302,72,0.1952938157333688],[112,302,73,0.193646206980481],[112,302,74,0.1924632193027232],[112,302,75,0.1893763861012126],[112,302,76,0.1844654515893472],[112,302,77,0.17947151207023987],[112,302,78,0.17439511944089225],[112,302,79,0.1692394176523011],[112,303,64,0.23747828444868035],[112,303,65,0.22940621484648877],[112,303,66,0.22210985539298223],[112,303,67,0.21565516850970878],[112,303,68,0.21008252167572872],[112,303,69,0.20540223717889733],[112,303,70,0.20159014120061275],[112,303,71,0.19858649254806535],[112,303,72,0.1962904360054097],[112,303,73,0.19455999573008292],[112,303,74,0.19329548365622248],[112,303,75,0.1905884026540782],[112,303,76,0.18589982438063957],[112,303,77,0.1811121047141255],[112,303,78,0.1762203220677008],[112,303,79,0.17122281243272242],[112,304,64,0.23730364066924245],[112,304,65,0.23075825340748876],[112,304,66,0.22345204916050151],[112,304,67,0.21697040403147988],[112,304,68,0.21135561061402197],[112,304,69,0.2066202709983319],[112,304,70,0.20274282703961594],[112,304,71,0.19966648712724105],[112,304,72,0.19729364780764314],[112,304,73,0.19548560783770896],[112,304,74,0.19414407034200298],[112,304,75,0.19167852654043918],[112,304,76,0.1872266259098798],[112,304,77,0.18265948876756938],[112,304,78,0.1779665137817013],[112,304,79,0.17314102387400368],[112,305,64,0.23598429493852258],[112,305,65,0.2319814678322321],[112,305,66,0.22476978451553467],[112,305,67,0.2182716881594352],[112,305,68,0.2126245579063057],[112,305,69,0.20784319882643015],[112,305,70,0.2039086148739297],[112,305,71,0.200766937464616],[112,305,72,0.19832381960938006],[112,305,73,0.19644387236988356],[112,305,74,0.19503023199436686],[112,305,75,0.1926405870258297],[112,305,76,0.18843605905907115],[112,305,77,0.1841003543237401],[112,305,78,0.17961706697923374],[112,305,79,0.1749064379041229],[112,306,64,0.2344697010892295],[112,306,65,0.23060284621609828],[112,306,66,0.22608770122813654],[112,306,67,0.2195835214115211],[112,306,68,0.21391388275429532],[112,306,69,0.20909569962146668],[112,306,70,0.20511246103410022],[112,306,71,0.20191316425522005],[112,306,72,0.19940668510136417],[112,306,73,0.19746093929572572],[112,306,74,0.1959804996934311],[112,306,75,0.19346463347441986],[112,306,76,0.1887813746636586],[112,306,77,0.18305640509912252],[112,306,78,0.17752320785371972],[112,306,79,0.1722095349687915],[112,307,64,0.23279148118186602],[112,307,65,0.22906536630981442],[112,307,66,0.22543958197892922],[112,307,67,0.22093502210693283],[112,307,68,0.21525265988340367],[112,307,69,0.21040695078022248],[112,307,70,0.2063837689373876],[112,307,71,0.2031348899823976],[112,307,72,0.200572340578303],[112,307,73,0.19856728770795581],[112,307,74,0.197025703708651],[112,307,75,0.19262531467157157],[112,307,76,0.18642651114714343],[112,307,77,0.18040481970444094],[112,307,78,0.17459950190112095],[112,307,79,0.16904347198774733],[112,308,64,0.2309809687551948],[112,308,65,0.22739770172926232],[112,308,66,0.22392547974314428],[112,308,67,0.2205129108591511],[112,308,68,0.216642484223739],[112,308,69,0.21177903013031352],[112,308,70,0.20772514116019206],[112,308,71,0.2044352716360564],[112,308,72,0.20182451432102927],[112,308,73,0.19976722293074353],[112,308,74,0.19675631708954444],[112,308,75,0.19010989263230205],[112,308,76,0.18360832878236485],[112,308,77,0.17730188686097678],[112,308,78,0.1712354256803526],[112,308,79,0.16544683173317007],[112,309,64,0.22906710844562392],[112,309,65,0.2256260727951797],[112,309,66,0.22230456491156525],[112,309,67,0.2190530285809828],[112,309,68,0.21586867589400033],[112,309,69,0.21277111461973466],[112,309,70,0.20911204525916854],[112,309,71,0.20579051895010078],[112,309,72,0.20314014054240953],[112,309,73,0.2009864468418202],[112,309,74,0.1940792236387195],[112,309,75,0.18713779688856816],[112,309,76,0.18035272424469498],[112,309,77,0.17377992369773676],[112,309,78,0.16746951811105742],[112,309,79,0.16146406023353677],[112,310,64,0.22707474353875853],[112,310,65,0.22377264429016525],[112,310,66,0.22059612447548124],[112,310,67,0.21749801764875049],[112,310,68,0.21447929340590674],[112,310,69,0.2115621814805974],[112,310,70,0.2087456112035548],[112,310,71,0.20600931302156267],[112,310,72,0.2033185950549824],[112,310,73,0.19825603639428144],[112,310,74,0.1909432069796586],[112,310,75,0.18373288086395273],[112,310,76,0.17668995213198554],[112,310,77,0.16987552759316654],[112,310,78,0.16334454308205132],[112,310,79,0.15714379866065162],[112,311,64,0.22502329041273997],[112,311,65,0.22185430795599947],[112,311,66,0.21881437240730403],[112,311,67,0.21585916491550783],[112,311,68,0.2129934051749907],[112,311,69,0.21024171637153213],[112,311,70,0.2076033386813776],[112,311,71,0.205056623485749],[112,311,72,0.20251880259940305],[112,311,73,0.19492540896625365],[112,311,74,0.1873698412561956],[112,311,75,0.1799226736385344],[112,311,76,0.17265356866861833],[112,311,77,0.16562824442573162],[112,311,78,0.15890588923600696],[112,311,79,0.15253702630397087],[112,312,64,0.2229257933625318],[112,312,65,0.21988184320622356],[112,312,66,0.21696772446924592],[112,312,67,0.21414231407376885],[112,312,68,0.21141396584937674],[112,312,69,0.20880939710354332],[112,312,70,0.2063281018185454],[112,312,71,0.20394720571083247],[112,312,72,0.19894662312405764],[112,312,73,0.1911452899215077],[112,312,74,0.18338398436487408],[112,312,75,0.17573734425487772],[112,312,76,0.16827913511172346],[112,312,77,0.16107901256536294],[112,312,78,0.1541997606310631],[112,312,79,0.1476950084073761],[112,313,64,0.22078835228621038],[112,313,65,0.21785944853392658],[112,313,66,0.21505843817191753],[112,313,67,0.21234762415216088],[112,313,68,0.20973877470167612],[112,313,69,0.2072603405564271],[112,313,70,0.20491198443073338],[112,313,71,0.20266975981717003],[112,313,72,0.19490773111589094],[112,313,73,0.18693849717281646],[112,313,74,0.1790127195332757],[112,313,75,0.17120840234355558],[112,313,76,0.16360267394753622],[112,313,77,0.1562683754956234],[112,313,78,0.14927115097178234],[112,313,79,0.1426670413660816],[112,314,64,0.21860996588190307],[112,314,65,0.2157846867554973],[112,314,66,0.21308266151551],[112,314,67,0.2104697290557032],[112,314,68,0.20796075863461372],[112,314,69,0.205585525106114],[112,314,70,0.20334375092118884],[112,314,71,0.19848890654503945],[112,314,72,0.1904239795589703],[112,314,73,0.18232987149418498],[112,314,74,0.17428406399654456],[112,314,75,0.16636718277078122],[112,314,76,0.15865892568142279],[112,314,77,0.15123451095769952],[112,314,78,0.144161649377143],[112,314,79,0.13749804331932985],[112,315,64,0.21638274671488503],[112,315,65,0.21364880014112644],[112,315,66,0.21103084627941135],[112,315,67,0.20849825365326088],[112,315,68,0.20606860158485374],[112,315,69,0.20377254743876375],[112,315,70,0.2016097464236412],[112,315,71,0.1936687017965537],[112,315,72,0.18551911164453225],[112,315,73,0.1773449060737613],[112,315,74,0.1692253986862967],[112,315,75,0.16124306773627567],[112,315,76,0.1534793591718103],[112,315,77,0.14601102909914132],[112,315,78,0.1389070297141936],[112,315,79,0.1322259417286614],[112,316,64,0.2140925115245674],[112,316,65,0.21143739896351957],[112,316,66,0.20888852956229745],[112,316,67,0.2064186902933238],[112,316,68,0.2040477243950866],[112,316,69,0.20180671802182917],[112,316,70,0.19650986958202152],[112,316,71,0.1884087145810778],[112,316,72,0.18021727241160548],[112,316,73,0.17200808522386477],[112,316,74,0.16386162337004284],[112,316,75,0.15586145056968279],[112,316,76,0.14808993956248762],[112,316,77,0.14062454348677417],[112,316,78,0.1335346271634274],[112,316,79,0.12687886141886764],[112,317,64,0.21171975122499198],[112,317,65,0.20913152810694993],[112,317,66,0.20663748841011334],[112,317,67,0.20421364078822912],[112,317,68,0.20188162040671725],[112,317,69,0.19881119664726918],[112,317,70,0.1908428521479853],[112,317,71,0.18273290654895752],[112,317,72,0.17454121898266328],[112,317,73,0.16634093752208262],[112,317,74,0.15821304231810937],[112,317,75,0.15024144609887788],[112,317,76,0.14250865847933158],[112,317,77,0.1350920194420335],[112,317,78,0.12806050626890347],[112,317,79,0.12147211713503107],[112,318,64,0.20924097982227463],[112,318,65,0.2067091111160225],[112,318,66,0.2042572670730288],[112,318,67,0.2018644235771909],[112,318,68,0.19955354666347638],[112,318,69,0.19269774006191884],[112,318,70,0.18474591889867775],[112,318,71,0.1766633605280116],[112,318,72,0.16851022864923335],[112,318,73,0.16035980239394118],[112,318,74,0.15229297925610927],[112,318,75,0.14439334609077964],[112,318,76,0.13674282473292954],[112,318,77,0.1294178976827343],[112,318,78,0.12248641820471677],[112,318,79,0.11600500810306075],[112,319,64,0.20663046178535413],[112,319,65,0.20414677139579088],[112,319,66,0.20172707678080098],[112,319,67,0.19935304614103097],[112,319,68,0.19389443829895886],[112,319,69,0.18614711261723182],[112,319,70,0.17824119924937698],[112,319,71,0.17021800022283246],[112,319,72,0.1621377036300897],[112,319,73,0.15407330870063818],[112,319,74,0.14610511989917405],[112,319,75,0.13831581778873622],[112,319,76,0.13078611327771686],[112,319,77,0.12359099075077996],[112,319,78,0.11679654447211309],[112,319,79,0.1104574115520979],[113,-64,64,0.3260927810522614],[113,-64,65,0.33172595676327216],[113,-64,66,0.33747369029626784],[113,-64,67,0.34331701819728544],[113,-64,68,0.3492619680849109],[113,-64,69,0.35532651702777757],[113,-64,70,0.3615209051579431],[113,-64,71,0.36784772056439413],[113,-64,72,0.37430243956580156],[113,-64,73,0.38087399654330206],[113,-64,74,0.38754538331056704],[113,-64,75,0.39429427790571053],[113,-64,76,0.40109370259963995],[113,-64,77,0.4079127108289675],[113,-64,78,0.41471710267861084],[113,-64,79,0.42147016846088514],[113,-63,64,0.32706149059901557],[113,-63,65,0.33279229177665126],[113,-63,66,0.338640262911755],[113,-63,67,0.3445878562516785],[113,-63,68,0.35064096083674795],[113,-63,69,0.356816028369894],[113,-63,70,0.36312166679663],[113,-63,71,0.36955880982401806],[113,-63,72,0.3761213087026786],[113,-63,73,0.38279654926711837],[113,-63,74,0.38956609406070014],[113,-63,75,0.3964063492839827],[113,-63,76,0.40328925622123846],[113,-63,77,0.4101830067203045],[113,-63,78,0.41705278222558806],[113,-63,79,0.4238615157940784],[113,-62,64,0.3282236137278242],[113,-62,65,0.33403873519415395],[113,-62,66,0.33997217929868245],[113,-62,67,0.3460080983714517],[113,-62,68,0.35215215796463906],[113,-62,69,0.3584190388454389],[113,-62,70,0.36481563629683006],[113,-62,71,0.371341294522004],[113,-62,72,0.37798842395339516],[113,-62,73,0.3847431408186474],[113,-62,74,0.3915859286968356],[113,-62,75,0.39849232171549365],[113,-62,76,0.40543360896039116],[113,-62,77,0.4123775595961444],[113,-62,78,0.41928916812663897],[113,-62,79,0.42613141916087915],[113,-61,64,0.3295642044222755],[113,-61,65,0.33545063050813273],[113,-61,66,0.3414551013356747],[113,-61,67,0.34756371121755497],[113,-61,68,0.35378183933119806],[113,-61,69,0.3601222081971735],[113,-61,70,0.366589962516103],[113,-61,71,0.3731829496057295],[113,-61,72,0.3798923382283254],[113,-61,73,0.38670325788647036],[113,-61,74,0.393595458279704],[113,-61,75,0.40054398853621315],[113,-61,76,0.4075198957596794],[113,-61,77,0.4144909423622797],[113,-61,78,0.42142234159054975],[113,-61,79,0.42827751059238867],[113,-60,64,0.33106388739942316],[113,-60,65,0.33700927441346973],[113,-60,66,0.34307106978476265],[113,-60,67,0.34923749985347874],[113,-60,68,0.3555136118329619],[113,-60,69,0.36191003699277385],[113,-60,70,0.36843016650198823],[113,-60,71,0.3750704607464943],[113,-60,72,0.38182104849946374],[113,-60,73,0.38866634583317916],[113,-60,74,0.39558569446838654],[113,-60,75,0.40255401918299566],[113,-60,76,0.40954250383177465],[113,-60,77,0.4165192854632646],[113,-60,78,0.4234501659594243],[113,-60,79,0.4302993405684615],[113,-59,64,0.33269996224620246],[113,-59,65,0.33869305508429165],[113,-59,66,0.34479967559223657],[113,-59,67,0.3510103110743676],[113,-59,68,0.35732964098592546],[113,-59,69,0.3637661181264307],[113,-59,70,0.3703214006259631],[113,-59,71,0.3769906755714509],[113,-59,72,0.38376322104467236],[113,-59,73,0.3906229880132983],[113,-59,74,0.3975492018096409],[113,-59,75,0.40451698286106663],[113,-59,76,0.4114979862691178],[113,-59,77,0.41846105977183806],[113,-59,78,0.42537291956560835],[113,-59,79,0.4321988434098948],[113,-58,64,0.3344477294528313],[113,-58,65,0.3404788122135579],[113,-58,66,0.34661945198013516],[113,-58,67,0.3528624557679084],[113,-58,68,0.35921209869893067],[113,-58,69,0.3656746000927516],[113,-58,70,0.3722499131359116],[113,-58,71,0.378932051773724],[113,-58,72,0.38570960270436006],[113,-58,73,0.3925662578736967],[113,-58,74,0.39948136726743166],[113,-58,75,0.4064305117296846],[113,-58,76,0.4133860954732719],[113,-58,77,0.4203179578866503],[113,-58,78,0.4271940041861792],[113,-58,79,0.43398085441077827],[113,-57,64,0.336282038269223],[113,-57,65,0.3423434187218991],[113,-57,66,0.34850948722550906],[113,-57,67,0.3547753502059429],[113,-57,68,0.3611448271447589],[113,-57,69,0.3676218619597022],[113,-57,70,0.37420471807448397],[113,-57,71,0.3808863020709568],[113,-57,72,0.38765461814495317],[113,-57,73,0.39449324385571444],[113,-57,74,0.4013818270372978],[113,-57,75,0.40829660367654946],[113,-57,76,0.4152109365010801],[113,-57,77,0.42209587396276915],[113,-57,78,0.42892072924767083],[113,-57,79,0.4356536788927319],[113,-56,64,0.3381757201399515],[113,-56,65,0.34426170781793086],[113,-56,66,0.3504468422465481],[113,-56,67,0.3567284205797791],[113,-56,68,0.3631097270643557],[113,-56,69,0.3695923881750321],[113,-56,70,0.37617296907132564],[113,-56,71,0.38284329188404065],[113,-56,72,0.38959083036397923],[113,-56,73,0.3963991263731667],[113,-56,74,0.4032482281566284],[113,-56,75,0.41011515027283374],[113,-56,76,0.4169743550030642],[113,-56,77,0.42379825500472645],[113,-56,78,0.43055773692108035],[113,-56,79,0.43722270561087495],[113,-55,64,0.3400804808938816],[113,-55,65,0.3461839418245221],[113,-55,66,0.3523805868123352],[113,-55,67,0.358669698884178],[113,-55,68,0.3650539339343132],[113,-55,69,0.3715326206291744],[113,-55,70,0.37810067631189054],[113,-55,71,0.3847489142239882],[113,-55,72,0.39146437455654254],[113,-55,73,0.39823067789462196],[113,-55,74,0.4050284010662619],[113,-55,75,0.4118354753512068],[113,-55,76,0.41862760695007756],[113,-55,77,0.42537871956204953],[113,-55,78,0.43206141886860444],[113,-55,79,0.43864747867335574],[113,-54,64,0.3419428580217017],[113,-54,65,0.3480540129269704],[113,-54,66,0.35425221637754023],[113,-54,67,0.3605384472019185],[113,-54,68,0.36691463755620884],[113,-54,69,0.3733779207469567],[113,-54,70,0.3799217043087354],[113,-54,71,0.3865359541312792],[113,-54,72,0.39320745412305175],[113,-54,73,0.39992008930790446],[113,-54,74,0.406655152454502],[113,-54,75,0.4133916742854673],[113,-54,76,0.42010677726118595],[113,-54,77,0.4267760528824532],[113,-54,78,0.43337396240677795],[113,-54,79,0.4398742608260134],[113,-53,64,0.34371599288250687],[113,-53,65,0.3498229723906003],[113,-53,66,0.3560109269553958],[113,-53,67,0.3622821730691081],[113,-53,68,0.3686378231142565],[113,-53,69,0.3750729852848008],[113,-53,70,0.38157976566092366],[113,-53,71,0.38814751215321597],[113,-53,72,0.3947629918516686],[113,-53,73,0.40141059374571325],[113,-53,74,0.4080725570273052],[113,-53,75,0.4147292251383657],[113,-53,76,0.42135932567305134],[113,-53,77,0.4279402761948954],[113,-53,78,0.434448515978992],[113,-53,79,0.4408598636409584],[113,-52,64,0.3453601046613546],[113,-52,65,0.3514494564900659],[113,-52,66,0.35761398780531617],[113,-52,67,0.36385694362271903],[113,-52,68,0.37017852207155183],[113,-52,69,0.376572030628787],[113,-52,70,0.3830285370790941],[113,-52,71,0.38953705229270935],[113,-52,72,0.39608461196633027],[113,-52,73,0.4026563869089954],[113,-52,74,0.4092358222271282],[113,-52,75,0.4158048057125131],[113,-52,76,0.42234386568534865],[113,-52,77,0.4288323984923093],[113,-52,78,0.43524892580693925],[113,-52,79,0.44157138182758615],[113,-51,64,0.34684304758423884],[113,-51,65,0.3529001868595818],[113,-51,66,0.35902717939205203],[113,-51,67,0.36522775532835916],[113,-51,68,0.3715011083531577],[113,-51,69,0.377839011626677],[113,-51,70,0.38423179894058546],[113,-51,71,0.39066846248499254],[113,-51,72,0.3971366239824551],[113,-51,73,0.4036225390515533],[113,-51,74,0.41011113533000787],[113,-51,75,0.4165860848349166],[113,-51,76,0.4230299109828413],[113,-51,77,0.42942413063586254],[113,-51,78,0.43574943148159995],[113,-51,79,0.4419858849965177],[113,-50,64,0.3481410065827211],[113,-50,65,0.35415060900262135],[113,-50,66,0.36022536887212186],[113,-50,67,0.3663690400555791],[113,-50,68,0.37257972903531883],[113,-50,69,0.3788479723834268],[113,-50,70,0.38516370354385004],[113,-50,71,0.39151623978481487],[113,-50,72,0.39789412657322354],[113,-50,73,0.40428502159348567],[113,-50,74,0.41067561915204553],[113,-50,75,0.41705161565180865],[113,-50,76,0.4233977167597371],[113,-50,77,0.42969768682681697],[113,-50,78,0.4359344410527653],[113,-50,79,0.44209018081929374],[113,-49,64,0.34803052141824065],[113,-49,65,0.35445906629525736],[113,-49,66,0.3610198492982451],[113,-49,67,0.3672629778191645],[113,-49,68,0.37339736066889695],[113,-49,69,0.3795829069037363],[113,-49,70,0.38580948757066674],[113,-49,71,0.3920670866185986],[113,-49,72,0.39834550264709345],[113,-49,73,0.404634098528482],[113,-49,74,0.4109215998895707],[113,-49,75,0.4171959433745027],[113,-49,76,0.4234441755401769],[113,-49,77,0.4296524031608429],[113,-49,78,0.43580579563953054],[113,-49,79,0.44188864014202367],[113,-48,64,0.3473309151088706],[113,-48,65,0.3538109191285239],[113,-48,66,0.36042985363374297],[113,-48,67,0.36716791782826697],[113,-48,68,0.37394060564803466],[113,-48,69,0.3800348529115986],[113,-48,70,0.38616498509724045],[113,-48,71,0.392321917793335],[113,-48,72,0.3984969444797213],[113,-48,73,0.4046813417855677],[113,-48,74,0.4108660336185158],[113,-48,75,0.4170413153438277],[113,-48,76,0.4231966391100637],[113,-48,77,0.429320461329376],[113,-48,78,0.4354001532264388],[113,-48,79,0.44142197527166155],[113,-47,64,0.34673034394395685],[113,-47,65,0.35326128024193554],[113,-47,66,0.3599361291297942],[113,-47,67,0.36673663423833386],[113,-47,68,0.3736492723249294],[113,-47,69,0.3802010293341041],[113,-47,70,0.38623235667564715],[113,-47,71,0.3922880443601236],[113,-47,72,0.3983610234270615],[113,-47,73,0.40444458866778576],[113,-47,74,0.41053192416362866],[113,-47,75,0.4166157002918272],[113,-47,76,0.4226877435464267],[113,-47,77,0.4287387804170061],[113,-47,78,0.4347582564564823],[113,-47,79,0.4407342315520703],[113,-46,64,0.3462388783772276],[113,-46,65,0.3528175546964802],[113,-46,66,0.35954310666923756],[113,-46,67,0.36639924538936075],[113,-46,68,0.3733741527140075],[113,-46,69,0.3800845882605855],[113,-46,70,0.3860188667121097],[113,-46,71,0.3919769484693776],[113,-46,72,0.39795345496831236],[113,-46,73,0.40394371100440735],[113,-46,74,0.40994313117496234],[113,-46,75,0.4159466899598947],[113,-46,76,0.4219484770351055],[113,-46,77,0.4279413392899782],[113,-46,78,0.4339166108897258],[113,-46,79,0.4398639325855947],[113,-45,64,0.3458590855958681],[113,-45,65,0.35247991306215654],[113,-45,66,0.35924836677764455],[113,-45,67,0.36615051383744784],[113,-45,68,0.37317639474492426],[113,-45,69,0.37969407468363725],[113,-45,70,0.3855364007709221],[113,-45,71,0.39140387005914307],[113,-45,72,0.39729276648704037],[113,-45,73,0.40320037535562736],[113,-45,74,0.40912423345792687],[113,-45,75,0.4150614753917791],[113,-45,76,0.4210082778839494],[113,-45,77,0.4269594038121679],[113,-45,78,0.4329078474603768],[113,-45,79,0.4388445823831333],[113,-44,64,0.3455867005088084],[113,-44,65,0.35224196047136386],[113,-44,66,0.3590432962844179],[113,-44,67,0.36597947680759935],[113,-44,68,0.37304256055155305],[113,-44,69,0.37904286864768716],[113,-44,70,0.3848009627580213],[113,-44,71,0.3905873705091172],[113,-44,72,0.3963999387375911],[113,-44,73,0.40223777328327875],[113,-44,74,0.40810035844586856],[113,-44,75,0.41398678518210275],[113,-44,76,0.41989509008678283],[113,-44,77,0.42582170703929095],[113,-44,78,0.431761033224894],[113,-44,79,0.4377051110586894],[113,-43,64,0.3454113073990996],[113,-43,65,0.3520914172426324],[113,-43,66,0.35891375754858224],[113,-43,67,0.36587009424230277],[113,-43,68,0.37250159860127247],[113,-43,69,0.3781486083379797],[113,-43,70,0.3838321506811906],[113,-43,71,0.3895488721502775],[113,-43,72,0.39529802010799536],[113,-43,73,0.4010803210473256],[113,-43,74,0.4068969774490246],[113,-43,75,0.41274878561156575],[113,-43,76,0.41863537668706907],[113,-43,77,0.4245545829751815],[113,-43,78,0.4305019313333209],[113,-43,79,0.43647026535836475],[113,-42,64,0.3453170342196477],[113,-42,65,0.3520108130284406],[113,-42,66,0.3588407721488099],[113,-42,67,0.3658019124985313],[113,-42,68,0.37145460122687346],[113,-42,69,0.3770325925304042],[113,-42,70,0.382652609569294],[113,-42,71,0.3883121724031707],[113,-42,72,0.3940117126713612],[113,-42,73,0.39975332796634055],[113,-42,74,0.4055396661899067],[113,-42,75,0.4113729424741599],[113,-42,76,0.41725409106254685],[113,-42,77,0.4231820543448402],[113,-42,78,0.4291532110258294],[113,-42,79,0.43516094518297105],[113,-41,64,0.3452832616073679],[113,-41,65,0.35197819653885554],[113,-41,66,0.35880122103683765],[113,-41,67,0.3647360623468326],[113,-41,68,0.3701998603782801],[113,-41,69,0.375719160717529],[113,-41,70,0.38128746002527686],[113,-41,71,0.38690293120743235],[113,-41,72,0.39256692890430733],[113,-41,73,0.39828263256369845],[113,-41,74,0.40405383001565076],[113,-41,75,0.40988384427924446],[113,-41,76,0.41577460612686873],[113,-41,77,0.4217258747112011],[113,-41,78,0.42773460832655097],[113,-41,79,0.43379448713177693],[113,-40,64,0.34528534877769107],[113,-40,65,0.35196786298177557],[113,-40,66,0.358024935976826],[113,-40,67,0.3633558399241026],[113,-40,68,0.36876361120818074],[113,-40,69,0.37423504912798944],[113,-40,70,0.3797637007863811],[113,-40,71,0.38534813030042675],[113,-40,72,0.39099031784266475],[113,-40,73,0.39669420550906914],[113,-40,74,0.4024643930618299],[113,-40,75,0.40830498639140744],[113,-40,76,0.4142186013205487],[113,-40,77,0.42020552513524073],[113,-40,78,0.42626303797612997],[113,-40,79,0.43238489596133484],[113,-39,64,0.3452953785394592],[113,-39,65,0.35137245945703954],[113,-39,66,0.35653828818024375],[113,-39,67,0.36181283374880313],[113,-39,68,0.36717425389315517],[113,-39,69,0.37260872076681484],[113,-39,70,0.37810958357194696],[113,-39,71,0.383675502805914],[113,-39,72,0.389308759343445],[113,-39,73,0.39501371825906045],[113,-39,74,0.4007954505317925],[113,-39,75,0.40665851555581495],[113,-39,76,0.41260590714354395],[113,-39,77,0.41863816545443283],[113,-39,78,0.42475265701538945],[113,-39,79,0.4309430247201886],[113,-38,64,0.3448483890838069],[113,-38,65,0.3498061616916559],[113,-38,66,0.35491032509990994],[113,-38,67,0.3601369499323508],[113,-38,68,0.3654616219924194],[113,-38,69,0.3708696675233001],[113,-38,70,0.37635395841424435],[113,-38,71,0.38191293150426453],[113,-38,72,0.38754882502778937],[113,-38,73,0.39326607620131016],[113,-38,74,0.3990698831505144],[113,-38,75,0.40496493414598583],[113,-38,76,0.4109543068652592],[113,-38,77,0.4170385401322883],[113,-38,78,0.4232148803046807],[113,-38,79,0.429476704187144],[113,-37,64,0.34323672763892255],[113,-37,65,0.3481223196752969],[113,-37,66,0.3531721303700389],[113,-37,67,0.35835911563467326],[113,-37,68,0.36365622208541737],[113,-37,69,0.3690476823212697],[113,-37,70,0.3745255875916073],[113,-37,71,0.38008781407457537],[113,-37,72,0.38573620439292405],[113,-37,73,0.3914749150136624],[113,-37,74,0.3973089327529341],[113,-37,75,0.40324276336528597],[113,-37,76,0.409279294935359],[113,-37,77,0.4154188385125168],[113,-37,78,0.4216583481375637],[113,-37,79,0.42799082210836176],[113,-36,64,0.34153257020530503],[113,-36,65,0.3463526771491823],[113,-36,66,0.3513552982756263],[113,-36,67,0.3565104649958356],[113,-36,68,0.3617884424876579],[113,-36,69,0.3671720992253425],[113,-36,70,0.37265242621708883],[113,-36,71,0.37822639352748344],[113,-36,72,0.383895094503448],[113,-36,73,0.38966205886566724],[113,-36,74,0.39553173787519774],[113,-36,75,0.4015081645343889],[113,-36,76,0.40759379151196595],[113,-36,77,0.4137885091966811],[113,-36,78,0.4200888459849623],[113,-36,79,0.4264873525983438],[113,-35,64,0.3397676153948712],[113,-35,65,0.34452890227129973],[113,-35,66,0.34949107320773415],[113,-35,67,0.3546214927477734],[113,-35,68,0.35988772879805914],[113,-35,69,0.3652709993662181],[113,-35,70,0.37076086748001524],[113,-35,71,0.3763530519856042],[113,-35,72,0.3820475516036636],[113,-35,73,0.3878469390136289],[113,-35,74,0.3937548281332496],[113,-35,75,0.3997745175045389],[113,-35,76,0.40590781242267415],[113,-35,77,0.4121540281541197],[113,-35,78,0.41850917628684686],[113,-35,79,0.42496533594188757],[113,-34,64,0.3379728556303614],[113,-34,65,0.3426816879828788],[113,-34,66,0.34760945505552227],[113,-34,67,0.352721173142368],[113,-34,68,0.3579817239964668],[113,-34,69,0.36337038050863535],[113,-34,70,0.36887495049277425],[113,-34,71,0.3744895659169326],[113,-34,72,0.3802128029336973],[113,-34,73,0.3860459712733312],[113,-34,74,0.3919915760973355],[113,-34,75,0.39805195515125275],[113,-34,76,0.4042280937788581],[113,-34,77,0.4105186200679437],[113,-34,78,0.41691898209337813],[113,-34,79,0.423420808908842],[113,-33,64,0.33617764819624835],[113,-33,65,0.34083981641351924],[113,-33,66,0.3457382680954819],[113,-33,67,0.3508360418146241],[113,-33,68,0.35609537078844083],[113,-33,69,0.36149328805899794],[113,-33,70,0.3670155286624509],[113,-33,71,0.372654320886795],[113,-33,72,0.3784065169844562],[113,-33,73,0.3842718907980753],[113,-33,74,0.3902516053049245],[113,-33,75,0.396346852826833],[113,-33,76,0.40255767037677115],[113,-33,77,0.40888193232284625],[113,-33,78,0.41531452224809395],[113,-33,79,0.4218466855728323],[113,-32,64,0.33440874860270337],[113,-32,65,0.3390291848514608],[113,-32,66,0.34390219093750646],[113,-32,67,0.34898923819554833],[113,-32,68,0.3542499738858896],[113,-32,69,0.359658905295751],[113,-32,70,0.3651993964865502],[113,-32,71,0.3708614838660337],[113,-32,72,0.37664003039001254],[113,-32,73,0.38253304254369913],[113,-32,74,0.3885401529982278],[113,-32,75,0.39466127158263153],[113,-32,76,0.40089540693979314],[113,-32,77,0.4072396609491682],[113,-32,78,0.413688397701983],[113,-32,79,0.42023258850883055],[113,-31,64,0.33268930380267664],[113,-31,65,0.33727179082129216],[113,-31,66,0.34212174510067117],[113,-31,67,0.3471995060990577],[113,-31,68,0.35246221991728643],[113,-31,69,0.35788160060503754],[113,-31,70,0.3634383726646187],[113,-31,71,0.36912013111766656],[113,-31,72,0.3749195296314305],[113,-31,73,0.3808326257674846],[113,-31,74,0.3868573861265827],[113,-31,75,0.3929923539140965],[113,-31,76,0.3992354811855814],[113,-31,77,0.4055831277538284],[113,-31,78,0.412029228449863],[113,-31,79,0.4185646301332634],[113,-30,64,0.331037802835326],[113,-30,65,0.3355846738428209],[113,-30,66,0.3404122398204138],[113,-30,67,0.34548015013243016],[113,-30,68,0.3507431526816131],[113,-30,69,0.3561699295186042],[113,-30,70,0.36173833742480127],[113,-30,71,0.3674333296830083],[113,-30,72,0.3732451857151016],[113,-30,73,0.3791678908860649],[113,-30,74,0.385197669120257],[113,-30,75,0.3913316707350759],[113,-30,76,0.39756681764166796],[113,-30,77,0.4038988077942297],[113,-30,78,0.41032128049125566],[113,-30,79,0.41682514384614705],[113,-29,64,0.32946698251774614],[113,-29,65,0.33397881149190667],[113,-29,66,0.3387826707332324],[113,-29,67,0.34383794562046466],[113,-29,68,0.3490971014958588],[113,-29,69,0.3545255893803322],[113,-29,70,0.3600982219861738],[113,-29,71,0.36579717050110955],[113,-29,72,0.37161023999127185],[113,-29,73,0.3775292870085364],[113,-29,74,0.38354878192064956],[113,-29,75,0.3896645182525355],[113,-29,76,0.3958724710831123],[113,-29,77,0.40216780628597804],[113,-29,78,0.4085440421368016],[113,-29,79,0.4149923645373916],[113,-28,64,0.32798268587169654],[113,-28,65,0.33245796744728495],[113,-28,66,0.33723457014554353],[113,-28,67,0.34227199979013007],[113,-28,68,0.34752056043732155],[113,-28,69,0.3529423245126489],[113,-28,70,0.3585089481146075],[113,-28,71,0.3641997512228848],[113,-28,72,0.3700000392951357],[113,-28,73,0.3758995584655086],[113,-28,74,0.3818910867429344],[113,-28,75,0.38796916338932835],[113,-28,76,0.39412895842670137],[113,-28,77,0.40036528397972093],[113,-28,78,0.40667174890870655],[113,-28,79,0.4130400579294564],[113,-27,64,0.32680103829535323],[113,-27,65,0.33101748928892466],[113,-27,66,0.33576080667217717],[113,-27,67,0.3407725620373275],[113,-27,68,0.3460010163514755],[113,-27,69,0.351404779816816],[113,-27,70,0.3569523157843867],[113,-27,71,0.3626201068259571],[113,-27,72,0.3683910186262116],[113,-27,73,0.37425278867536305],[113,-27,74,0.38019664205357306],[113,-27,75,0.3862160363936176],[113,-27,76,0.3923055378906408],[113,-27,77,0.3984598299994401],[113,-27,78,0.4046728562226005],[113,-27,79,0.41093709814881024],[113,-26,64,0.32847322676637425],[113,-26,65,0.3296430539118584],[113,-26,66,0.33434433212564824],[113,-26,67,0.3393197811889034],[113,-26,68,0.34451572358213783],[113,-26,69,0.34988730082000297],[113,-26,70,0.35539983702806766],[113,-26,71,0.36102708619624796],[113,-26,72,0.3667496296298309],[113,-26,73,0.3725533897236719],[113,-26,74,0.37842826226487214],[113,-26,75,0.3843668692770132],[113,-26,76,0.3903634342146548],[113,-26,77,0.39641278110200545],[113,-26,78,0.4025094589863817],[113,-26,79,0.4086469928469982],[113,-25,64,0.33007872168606894],[113,-25,65,0.32834727615550197],[113,-25,66,0.33295687271844454],[113,-25,67,0.337882459259307],[113,-25,68,0.34303052766423053],[113,-25,69,0.3483528354418959],[113,-25,70,0.3538117239436091],[113,-25,71,0.3593784339389756],[113,-25,72,0.36503152266719824],[113,-25,73,0.3707553896539558],[113,-25,74,0.3765389134401865],[113,-25,75,0.3823742011882289],[113,-25,76,0.3882554529381346],[113,-25,77,0.3941779420841098],[113,-25,78,0.4001371134298196],[113,-25,79,0.40612779996321574],[113,-24,64,0.33157407986189535],[113,-24,65,0.32991587739590245],[113,-24,66,0.33155956714984886],[113,-24,67,0.336421135742469],[113,-24,68,0.34150541421947495],[113,-24,69,0.34676096369193915],[113,-24,70,0.35214738517300415],[113,-24,71,0.35763368948125945],[113,-24,72,0.36319672065244785],[113,-24,73,0.3688196815768335],[113,-24,74,0.37449076397472014],[113,-24,75,0.38020188465145394],[113,-24,76,0.38594752979053754],[113,-24,77,0.3917237088506659],[113,-24,78,0.3975270194313003],[113,-24,79,0.40335382426321315],[113,-23,64,0.3329084337321495],[113,-23,65,0.33131217677433034],[113,-23,66,0.330112555017665],[113,-23,67,0.33489877227011483],[113,-23,68,0.3399062897119651],[113,-23,69,0.3450807611250571],[113,-23,70,0.3503793364855439],[113,-23,71,0.3557690814973815],[113,-23,72,0.36122540318086915],[113,-23,73,0.36673057152247246],[113,-23,74,0.3722723392771309],[113,-23,75,0.37784266185222026],[113,-23,76,0.3834365190288913],[113,-23,77,0.3890508400929847],[113,-23,78,0.39468353375576815],[113,-23,79,0.40033262404558434],[113,-22,64,0.33403488108441903],[113,-22,65,0.33249198312761113],[113,-22,66,0.3308905663794822],[113,-22,67,0.33328227093725243],[113,-22,68,0.33820333659474183],[113,-22,69,0.3432859618977172],[113,-22,70,0.34848517360913556],[113,-22,71,0.3537663719796191],[113,-22,72,0.35910376311576925],[113,-22,73,0.364478880994876],[113,-22,74,0.36987920119694534],[113,-22,75,0.37529684827254434],[113,-22,76,0.3807273985012584],[113,-22,77,0.38616877962179325],[113,-22,78,0.391620268932487],[113,-22,79,0.3970815909712895],[113,-21,64,0.33405050988356183],[113,-21,65,0.33299566555147053],[113,-21,66,0.3315692997066703],[113,-21,67,0.3311395316137298],[113,-21,68,0.33571371046003007],[113,-21,69,0.34040815797534174],[113,-21,70,0.345253202086477],[113,-21,71,0.35026641058032604],[113,-21,72,0.35545427737972896],[113,-21,73,0.36081382439845655],[113,-21,74,0.3663341169332313],[113,-21,75,0.37199769069245564],[113,-21,76,0.3777818887136166],[113,-21,77,0.3830928427479386],[113,-21,78,0.38835723610375295],[113,-21,79,0.3936250867341984],[113,-20,64,0.3329996480182308],[113,-20,65,0.3319329753449758],[113,-20,66,0.3305051132210149],[113,-20,67,0.3287453832491845],[113,-20,68,0.3319602055571174],[113,-20,69,0.33655998915632934],[113,-20,70,0.34132342816974603],[113,-20,71,0.34626953278335076],[113,-20,72,0.35140594443914225],[113,-20,73,0.35673050672986173],[113,-20,74,0.36223275844319414],[113,-20,75,0.367895346888009],[113,-20,76,0.37369535977355106],[113,-20,77,0.3796055740605893],[113,-20,78,0.3849201437326202],[113,-20,79,0.38999369498367636],[113,-19,64,0.3317930045512613],[113,-19,65,0.33070494426573516],[113,-19,66,0.3292675445073546],[113,-19,67,0.3275084967483934],[113,-19,68,0.3281829451533527],[113,-19,69,0.33268657565358933],[113,-19,70,0.3373664652138872],[113,-19,71,0.3422428445080218],[113,-19,72,0.3473244105047616],[113,-19,73,0.352609841770729],[113,-19,74,0.35808924635929407],[113,-19,75,0.36374554047227675],[113,-19,76,0.3695557562019387],[113,-19,77,0.37549227679100317],[113,-19,78,0.3813396827733794],[113,-19,79,0.3862234700290103],[113,-18,64,0.33046680426279684],[113,-18,65,0.3293450250877767],[113,-18,66,0.32788685129663014],[113,-18,67,0.32611805188631227],[113,-18,68,0.32440276769713533],[113,-18,69,0.3288043596767639],[113,-18,70,0.3333939036596041],[113,-18,71,0.33819267326850405],[113,-18,72,0.3432103957982226],[113,-18,73,0.3484466815268625],[113,-18,74,0.35389239833676966],[113,-18,75,0.3595309899127757],[113,-18,76,0.3653397358839756],[113,-18,77,0.37129095238283705],[113,-18,78,0.37735313161214656],[113,-18,79,0.38234818223673517],[113,-17,64,0.32904255164455837],[113,-17,65,0.32787261221616326],[113,-17,66,0.326379998527813],[113,-17,67,0.3245882828521588],[113,-17,68,0.3225501918975681],[113,-17,69,0.3249080111453705],[113,-17,70,0.3293964843530268],[113,-17,71,0.3341055577289372],[113,-17,72,0.3390460087372441],[113,-17,73,0.34421853142814984],[113,-17,74,0.3496150062513863],[113,-17,75,0.3552197288894661],[113,-17,76,0.36101059655988244],[113,-17,77,0.3669602503147149],[113,-17,78,0.3730371719544066],[113,-17,79,0.3783810003827805],[113,-16,64,0.32747469338375584],[113,-16,65,0.32624333251156346],[113,-16,66,0.32470419622160784],[113,-16,67,0.32287844885354855],[113,-16,68,0.32081665832030326],[113,-16,69,0.320948239083485],[113,-16,70,0.3253278857848589],[113,-16,71,0.3299384312280564],[113,-16,72,0.3347916401505749],[113,-16,73,0.33988935411690707],[113,-16,74,0.34522462805652804],[113,-16,75,0.35078284366113804],[113,-16,76,0.3565427981928077],[113,-16,77,0.36247776730034087],[113,-16,78,0.3685565404957293],[113,-16,79,0.3743007307812233],[113,-15,64,0.32571240157208586],[113,-15,65,0.3244082762369843],[113,-15,66,0.322812856836262],[113,-15,67,0.32094475399619515],[113,-15,68,0.3188517861795228],[113,-15,69,0.316875008388229],[113,-15,70,0.32114183326574214],[113,-15,71,0.3256490724172396],[113,-15,72,0.33040931949405217],[113,-15,73,0.33542552349482835],[113,-15,74,0.3406919680192151],[113,-15,75,0.34619524720885897],[113,-15,76,0.3519152370438866],[113,-15,77,0.35782606067042044],[113,-15,78,0.3638970464509012],[113,-15,79,0.3700835127388924],[113,-14,64,0.3237174281047058],[113,-14,65,0.3223309940722947],[113,-14,66,0.3206715336132782],[113,-14,67,0.3187550145359604],[113,-14,68,0.3166259395590336],[113,-14,69,0.3143367480069208],[113,-14,70,0.3168017345333881],[113,-14,71,0.32120375475885793],[113,-14,72,0.32586827413321057],[113,-14,73,0.3307992289202657],[113,-14,74,0.3359921019270568],[113,-14,75,0.3414347427833794],[113,-14,76,0.34710820508689],[113,-14,77,0.35298759917323513],[113,-14,78,0.3590429592447265],[113,-14,79,0.36524012357381525],[113,-13,64,0.32146216313922343],[113,-13,65,0.31998556699575065],[113,-13,66,0.3182560329720322],[113,-13,67,0.3162868457082329],[113,-13,68,0.3141186618354133],[113,-13,69,0.31180124888942157],[113,-13,70,0.3122792531326895],[113,-13,71,0.3165760210738475],[113,-13,72,0.32114393355809495],[113,-13,73,0.32598773504087913],[113,-13,74,0.3311040153798962],[113,-13,75,0.33648185989220486],[113,-13,76,0.34210353889957495],[113,-13,77,0.3479452356083735],[113,-13,78,0.35397781109916343],[113,-13,79,0.3601676051391249],[113,-12,64,0.31892785565744985],[113,-12,65,0.3173548358461619],[113,-12,66,0.31555068233308986],[113,-12,67,0.3135259978209719],[113,-12,68,0.3113171099239792],[113,-12,69,0.30897045410739343],[113,-12,70,0.3075529975866886],[113,-12,71,0.31174555698971984],[113,-12,72,0.3162170126178725],[113,-12,73,0.320972697892113],[113,-12,74,0.3260101729343833],[113,-12,75,0.3313196933663021],[113,-12,76,0.33688474187015427],[113,-12,77,0.3426826214462108],[113,-12,78,0.3486851091820287],[113,-12,79,0.3548591692404752],[113,-11,64,0.3161029963999321],[113,-11,65,0.3144287907133372],[113,-11,66,0.3125467534127752],[113,-11,67,0.3104648415707476],[113,-11,68,0.30821462929801463],[113,-11,69,0.30583860141606445],[113,-11,70,0.30337344739027644],[113,-11,71,0.3066971630557474],[113,-11,72,0.31107267351644735],[113,-11,73,0.3157395369874271],[113,-11,74,0.3206961178247982],[113,-11,75,0.3259337452425995],[113,-11,76,0.33143707948616064],[113,-11,77,0.3371845632523768],[113,-11,78,0.3431489572113996],[113,-11,79,0.3492979583273807],[113,-10,64,0.3129818640248204],[113,-10,65,0.31120312088236707],[113,-10,66,0.30924104159724164],[113,-10,67,0.307101003085769],[113,-10,68,0.30480947019039756],[113,-10,69,0.30240441884839553],[113,-10,70,0.29991954155789613],[113,-10,71,0.3014198256543694],[113,-10,72,0.30569976660117026],[113,-10,73,0.3102768633359054],[113,-10,74,0.3151501021028809],[113,-10,75,0.320311769219524],[113,-10,76,0.32574764738879286],[113,-10,77,0.3314373205414477],[113,-10,78,0.3373545861000124],[113,-10,79,0.3434679733512112],[113,-9,64,0.30956323588954787],[113,-9,65,0.30767792660194826],[113,-9,66,0.30563460253832964],[113,-9,67,0.3034361497147668],[113,-9,68,0.3011036458735353],[113,-9,69,0.29867007730777256],[113,-9,70,0.2961657109339419],[113,-9,71,0.2959058871810667],[113,-9,72,0.3000901502527121],[113,-9,73,0.30457596352225147],[113,-9,74,0.3093627471535514],[113,-9,75,0.31444361746391064],[113,-9,76,0.31980541179721034],[113,-9,77,0.32542884450034615],[113,-9,78,0.3312887929310519],[113,-9,79,0.3373547121726568],[113,-8,64,0.3058492653611491],[113,-8,65,0.30385659445342533],[113,-8,66,0.30173164761108223],[113,-8,67,0.299474928061062],[113,-8,68,0.2971019343683021],[113,-8,69,0.29464027514461705],[113,-8,70,0.29211642929203036],[113,-8,71,0.2901503162885154],[113,-8,72,0.29423809044510263],[113,-8,73,0.29863034017368667],[113,-8,74,0.3033267346532606],[113,-8,75,0.30832108957042026],[113,-8,76,0.31360122183655803],[113,-8,77,0.3191489568524979],[113,-8,78,0.32494028728459096],[113,-8,79,0.33094568201776653],[113,-7,64,0.3018445280263886],[113,-7,65,0.2997448385631423],[113,-7,66,0.2975386003316319],[113,-7,67,0.29522405620505066],[113,-7,68,0.2928110253535063],[113,-7,69,0.29032145629247164],[113,-7,70,0.28777775582022136],[113,-7,71,0.2852012746657392],[113,-7,72,0.28813974078744725],[113,-7,73,0.2924353093149857],[113,-7,74,0.29703652814095866],[113,-7,75,0.30193778349736716],[113,-7,76,0.30712779323969297],[113,-7,77,0.3125894679783389],[113,-7,78,0.3182999436829358],[113,-7,79,0.32423078441778747],[113,-6,64,0.297555239592422],[113,-6,65,0.2953499103223237],[113,-6,66,0.293063316250654],[113,-6,67,0.29069157246216476],[113,-6,68,0.2882388144309754],[113,-6,69,0.2857211638945266],[113,-6,70,0.28315675953372643],[113,-6,71,0.2805640265002799],[113,-6,72,0.2817927040810004],[113,-6,73,0.2859876552754637],[113,-6,74,0.29048812546750424],[113,-6,75,0.2952889483254642],[113,-6,76,0.30037966283619677],[113,-6,77,0.30574423326754935],[113,-6,78,0.3113609586952838],[113,-6,79,0.3172025707498998],[113,-5,64,0.2929886486373602],[113,-5,65,0.2906799796510223],[113,-5,66,0.28831446920676734],[113,-5,67,0.2858862433824152],[113,-5,68,0.2833938472431522],[113,-5,69,0.28084753166893583],[113,-5,70,0.27826106630221165],[113,-5,71,0.2756498151459374],[113,-5,72,0.27519567662700783],[113,-5,73,0.2792853439605916],[113,-5,74,0.28367884247887354],[113,-5,75,0.28837133871019516],[113,-5,76,0.293353113195796],[113,-5,77,0.298609146556683],[113,-5,78,0.304118911041479],[113,-5,79,0.3098563662137175],[113,-4,64,0.28815260768523093],[113,-4,65,0.2857436911630913],[113,-4,66,0.28330110714370793],[113,-4,67,0.2808171340095285],[113,-4,68,0.2782849162379725],[113,-4,69,0.2757089155386665],[113,-4,70,0.2730985306978772],[113,-4,71,0.2704660039783568],[113,-4,72,0.2683481766984452],[113,-4,73,0.2723272954330586],[113,-4,74,0.2766071283692924],[113,-4,75,0.28118307092253475],[113,-4,76,0.2860460667556711],[113,-4,77,0.29118206940231356],[113,-4,78,0.29657172286164585],[113,-4,79,0.3021902598332862],[113,-3,64,0.283055326337508],[113,-3,65,0.2805498988537769],[113,-3,66,0.2780323809609703],[113,-3,67,0.27549334367878775],[113,-3,68,0.27292081312627153],[113,-3,69,0.2703136682858334],[113,-3,70,0.26767703508291757],[113,-3,71,0.26502005024073305],[113,-3,72,0.26235397918437103],[113,-3,73,0.2651132168618568],[113,-3,74,0.2692724132114103],[113,-3,75,0.273723480396216],[113,-3,76,0.2784579487327211],[113,-3,77,0.28346269485557973],[113,-3,78,0.28871952017507985],[113,-3,79,0.2942049578690333],[113,-2,64,0.27770531038775575],[113,-2,65,0.2751075831346905],[113,-2,66,0.272517450074391],[113,-2,67,0.2699239108376675],[113,-2,68,0.2673102402750135],[113,-2,69,0.2646700601767977],[113,-2,70,0.2620044185250247],[113,-2,71,0.2593194386668634],[113,-2,72,0.2566242984900443],[113,-2,73,0.2576434969947472],[113,-2,74,0.26167498823391694],[113,-2,75,0.26599298072548977],[113,-2,76,0.27058951810623005],[113,-2,77,0.2754523443434947],[113,-2,78,0.280564390443192],[113,-2,79,0.28590349786482544],[113,-1,64,0.2721114909758198],[113,-1,65,0.26942595418132825],[113,-1,66,0.266765568509594],[113,-1,67,0.2641178905210454],[113,-1,68,0.2614618844241844],[113,-1,69,0.2587863486418767],[113,-1,70,0.25608853825666616],[113,-1,71,0.2533717277623104],[113,-1,72,0.25064307970853217],[113,-1,73,0.24991916338347225],[113,-1,74,0.25381591946737636],[113,-1,75,0.25799292408079716],[113,-1,76,0.2624426659497305],[113,-1,77,0.2671536962224939],[113,-1,78,0.27211003507526993],[113,-1,79,0.2772908204404581],[113,0,64,0.26628354789626785],[113,0,65,0.26351474562904875],[113,0,66,0.26078635543059336],[113,0,67,0.2580846081966936],[113,0,68,0.2553846562000942],[113,0,69,0.2526710001765586],[113,0,70,0.24993746647266207],[113,0,71,0.2471847110985265],[113,0,72,0.24441800653433923],[113,0,73,0.2419419036452373],[113,0,74,0.24569699542015405],[113,0,75,0.24972546303537216],[113,0,76,0.25402018039839963],[113,0,77,0.2585704445565391],[113,0,78,0.2633613146792995],[113,0,79,0.2683731958774452],[113,1,64,0.2602324341441404],[113,1,65,0.2573847046993572],[113,1,66,0.2545902553314676],[113,1,67,0.2518340944867716],[113,1,68,0.24908809930698347],[113,1,69,0.2463330677932862],[113,1,70,0.24355982529852563],[113,1,71,0.24076669600725362],[113,1,72,0.23795723593197166],[113,1,73,0.23513820944341426],[113,1,74,0.23732071019678005],[113,1,75,0.2411934150457507],[113,1,76,0.24532547942422017],[113,1,77,0.24970688933103752],[113,1,78,0.2543236884265334],[113,1,79,0.25915750714791286],[113,2,64,0.2539711077900453],[113,2,65,0.25104828253867817],[113,2,66,0.24818918984255336],[113,2,67,0.2453777013147316],[113,2,68,0.24258296887264397],[113,2,69,0.2397827226689393],[113,2,70,0.23696525793278073],[113,2,71,0.2341268971954276],[113,2,72,0.23126969546395837],[113,2,73,0.22839938650728242],[113,2,74,0.2286902790390172],[113,2,75,0.23240012672552138],[113,2,76,0.2363623089153242],[113,2,77,0.24056745617052488],[113,2,78,0.2450025463959754],[113,2,79,0.2496503892837614],[113,3,64,0.24751544142842863],[113,3,65,0.24452050579198226],[113,3,66,0.24159739047875953],[113,3,67,0.2387288948340425],[113,3,68,0.23588197842109068],[113,3,69,0.23303194192933632],[113,3,70,0.23016503887105244],[113,3,71,0.22727594771240567],[113,3,72,0.22436547157972098],[113,3,73,0.22143847479717005],[113,3,74,0.21980967847141172],[113,3,75,0.22334932358055765],[113,3,76,0.2271343836006501],[113,3,77,0.2311561133584537],[113,3,78,0.23540239137520647],[113,3,79,0.23985716874281876],[113,4,64,0.2408853575153359],[113,4,65,0.23782006855419102],[113,4,66,0.23483244409218504],[113,4,67,0.2319042511761004],[113,4,68,0.22900073721303046],[113,4,69,0.2260953713128693],[113,4,70,0.22317284020975206],[113,4,71,0.22022654379495193],[113,4,72,0.2172563062466934],[113,4,73,0.21426631835797347],[113,4,74,0.21126331276726135],[113,4,75,0.2140449738784233],[113,4,76,0.21764500637004197],[113,4,77,0.2214757301821672],[113,4,78,0.22552592417566542],[113,4,79,0.2297806683487514],[113,5,64,0.2341061868749772],[113,5,65,0.2309706415784099],[113,5,66,0.22791654763434122],[113,5,67,0.2249246514554018],[113,5,68,0.22195887426585745],[113,5,69,0.21899135886292623],[113,5,70,0.21600564992202395],[113,5,71,0.21299421908778285],[113,5,72,0.20995619686034095],[113,5,73,0.20689532933388266],[113,5,74,0.20381816151053841],[113,5,75,0.20449115880604388],[113,5,76,0.20789665686668649],[113,5,77,0.21152736605561503],[113,5,78,0.21537302036882458],[113,5,79,0.21941986407250338],[113,6,64,0.22721024744666232],[113,6,65,0.224002397378534],[113,6,66,0.22087797204792795],[113,6,67,0.21781667667621069],[113,6,68,0.21478135019633676],[113,6,69,0.21174316097631107],[113,6,70,0.2086848433016754],[113,6,71,0.20559824898102433],[113,6,72,0.20248209938680656],[113,6,73,0.19933995607280075],[113,6,74,0.19617841171355835],[113,6,75,0.19469194442127002],[113,6,76,0.19789054267329795],[113,6,77,0.201309481220404],[113,6,78,0.20493958640752863],[113,6,79,0.20876837849789392],[113,7,64,0.22023706263389115],[113,7,65,0.21695297584778414],[113,7,66,0.21375270296610224],[113,7,67,0.210614893246382],[113,7,68,0.20750140738870562],[113,7,69,0.20438261205461083],[113,7,70,0.20124064419950394],[113,7,71,0.19806697826132033],[113,7,72,0.19486018841308383],[113,7,73,0.19162392388310995],[113,7,74,0.1883650991235859],[113,7,75,0.18509230008651056],[113,7,76,0.18763678049093693],[113,7,77,0.1908290213604636],[113,7,78,0.19422945480196938],[113,7,79,0.1978270675326645],[113,8,64,0.2132223764827435],[113,8,65,0.20985961279595394],[113,8,66,0.20657946043797792],[113,8,67,0.20335968499653018],[113,8,68,0.20016135556589848],[113,8,69,0.19695418998898073],[113,8,70,0.19371990010515922],[113,8,71,0.19044976988593085],[113,8,72,0.18714242208467924],[113,8,73,0.18380179290231793],[113,8,74,0.18043531649386807],[113,8,75,0.17705232062662316],[113,8,76,0.17719206636822385],[113,8,77,0.18014441499549452],[113,8,78,0.18330244827841172],[113,8,79,0.18665675891691424],[113,9,64,0.20619187447618323],[113,9,65,0.2027503072120969],[113,9,66,0.19938855891210983],[113,9,67,0.1960838771942625],[113,9,68,0.19279685580873007],[113,9,69,0.18949675146787057],[113,9,70,0.1861650137549864],[113,9,71,0.18279287903833052],[113,9,72,0.17937914342889147],[113,9,73,0.17592813859923584],[113,9,74,0.1724479123334682],[113,9,75,0.1689486151716945],[113,9,76,0.16661859852126024],[113,9,77,0.16932144623350398],[113,9,78,0.17222755090307873],[113,9,79,0.17532915956130948],[113,10,64,0.1991632807561921],[113,10,65,0.19564478630282184],[113,10,66,0.19220181533731112],[113,10,67,0.18881160020441928],[113,10,68,0.1854346734297477],[113,10,69,0.18204004918948904],[113,10,70,0.17860906964059003],[113,10,71,0.17513302735585856],[113,10,72,0.17161095328422882],[113,10,73,0.16804760182885659],[113,10,74,0.164451634951334],[113,10,75,0.16083400671310805],[113,10,76,0.15720654916932297],[113,10,77,0.15841562497756906],[113,10,78,0.1610635269257863],[113,10,79,0.16390588474403692],[113,11,64,0.19214865940279904],[113,11,65,0.18855681054909215],[113,11,66,0.18503483148499572],[113,11,67,0.18156052660989208],[113,11,68,0.178094847993523],[113,11,69,0.1746068104841275],[113,11,70,0.17107779519029626],[113,11,71,0.1674992196313992],[113,11,72,0.1638703552363965],[113,11,73,0.16019633520626445],[113,11,74,0.1564863546733359],[113,11,75,0.15275206460592775],[113,11,76,0.149006160422813],[113,11,77,0.14747257047281187],[113,11,78,0.14985900240636482],[113,11,79,0.15243822721749004],[113,12,64,0.18515695973239185],[113,12,65,0.18149671824195082],[113,12,66,0.17789950919538322],[113,12,67,0.174344332179785],[113,12,68,0.1707930754466949],[113,12,69,0.16721501378193984],[113,12,70,0.16359170319509658],[113,12,71,0.15991472305787396],[113,12,72,0.1561835425711982],[113,12,73,0.15240356945845665],[113,12,74,0.14858438282453384],[113,12,75,0.14473815165148055],[113,12,76,0.14087823993380252],[113,12,77,0.1370179989922043],[113,12,78,0.13865254616071146],[113,12,79,0.14096690214315588],[113,13,64,0.178196810800529],[113,13,65,0.174474214400285],[113,13,66,0.17080680314523797],[113,13,67,0.1671753849243718],[113,13,68,0.16354330616263524],[113,13,69,0.15988036620781354],[113,13,70,0.15616841814391183],[113,13,71,0.15239921097125475],[113,13,72,0.14857232840500412],[113,13,73,0.14469330004425573],[113,13,74,0.14077188683473596],[113,13,75,0.13682054230033242],[113,13,76,0.13285305057158606],[113,13,77,0.12888334179549638],[113,13,78,0.12747274538234188],[113,13,79,0.12952176223441514],[113,14,64,0.1712795704405968],[113,14,65,0.16750140936276323],[113,14,66,0.16376971634363874],[113,14,67,0.16006766729506033],[113,14,68,0.15636056374066398],[113,14,69,0.15261898685440656],[113,14,70,0.14882519066090558],[113,14,71,0.1449710748595323],[113,14,72,0.14105622227183873],[113,14,73,0.1370860967750074],[113,14,74,0.13307040360196787],[113,14,75,0.12902161346773738],[113,14,76,0.12495365156088833],[113,14,77,0.12088075202130011],[113,14,78,0.11681647811317883],[113,14,79,0.11812148175890275],[113,15,64,0.16442976131004422],[113,15,65,0.16060321759545843],[113,15,66,0.15681355755420312],[113,15,67,0.15304679141713556],[113,15,68,0.1492706238073016],[113,15,69,0.1454566636741657],[113,15,70,0.1415876596207611],[113,15,71,0.13765563435871114],[113,15,72,0.13366004817918012],[113,15,73,0.12960610878882797],[113,15,74,0.12550322932267294],[113,15,75,0.12136363595768901],[113,15,76,0.11720112616305545],[113,15,77,0.11302997823744514],[113,15,78,0.10886401240303642],[113,15,79,0.10677742107567505],[113,16,64,0.15769673065089962],[113,16,65,0.15382903466668343],[113,16,66,0.14998749744614245],[113,16,67,0.14616131527097628],[113,16,68,0.14232099890468725],[113,16,69,0.13843944938923125],[113,16,70,0.1345000404482348],[113,16,71,0.13049494123694327],[113,16,72,0.1264234300502908],[113,16,73,0.12229033821899608],[113,16,74,0.11810462591348052],[113,16,75,0.1138780912262475],[113,16,76,0.10962421355403959],[113,16,77,0.1053571319535321],[113,16,78,0.10109075880073745],[113,16,79,0.09683802874703584],[113,17,64,0.1511134904842812],[113,17,65,0.14721181002231795],[113,17,66,0.1433242380469481],[113,17,67,0.13944339316342072],[113,17,68,0.13554294860411645],[113,17,69,0.13159738225106368],[113,17,70,0.12759086412059845],[113,17,71,0.12351578870984081],[113,17,72,0.11937125913475151],[113,17,73,0.11516168353255338],[113,17,74,0.11089548533607248],[113,17,75,0.1065839287224753],[113,17,76,0.10224006023320545],[113,17,77,0.09787776725735442],[113,17,78,0.09351095376907852],[113,17,79,0.0891528334130532],[113,18,64,0.14469002222689129],[113,18,65,0.14076139448144223],[113,18,66,0.13683347070369473],[113,18,67,0.13290241561027946],[113,18,68,0.12894536889670838],[113,18,69,0.12493868203204751],[113,18,70,0.12086752290301249],[113,18,71,0.11672463377130071],[113,18,72,0.1125090021234034],[113,18,73,0.1082246244554272],[113,18,74,0.10387936447084967],[113,18,75,0.09948390691240891],[113,18,76,0.09505080799155952],[113,18,77,0.09059364312148412],[113,18,78,0.0861262524040227],[113,18,79,0.08166208406880644],[113,19,64,0.13841700028006088],[113,19,65,0.13446826108374565],[113,19,66,0.13050556654729945],[113,19,67,0.12652864370340788],[113,19,68,0.12251834568291237],[113,19,69,0.118453197559259],[113,19,70,0.11431958707515323],[113,19,71,0.11011075904055656],[113,19,72,0.10582568535087057],[113,19,73,0.10146800757026261],[113,19,74,0.09704505341340154],[113,19,75,0.09256692825387453],[113,19,76,0.08804568258101565],[113,19,77,0.08349455611979265],[113,19,78,0.07892729912192793],[113,19,79,0.07435757113191481],[113,20,64,0.13226934988705022],[113,20,65,0.1283070619920979],[113,20,66,0.12431510643452068],[113,20,67,0.12029668783514931],[113,20,68,0.11623655901407853],[113,20,69,0.11211571311669287],[113,20,70,0.1079219904793516],[113,20,71,0.10364931524803897],[113,20,72,0.09929677326849144],[113,20,73,0.0948677415128357],[113,20,74,0.09036907021845542],[113,20,75,0.0858103187639622],[113,20,76,0.08120304615416184],[113,20,77,0.07656015683148146],[113,20,78,0.071895302376226],[113,20,79,0.06722233950319152],[113,21,64,0.122844198961044],[113,21,65,0.12016077976445265],[113,21,66,0.1173999397357794],[113,21,67,0.11416882815267977],[113,21,68,0.110062535710778],[113,21,69,0.10588911162160383],[113,21,70,0.10163808310571201],[113,21,71,0.0973042429123511],[113,21,72,0.09288694010048962],[113,21,73,0.08838940105952899],[113,21,74,0.08381808177705677],[113,21,75,0.07918205226566422],[113,21,76,0.07449241396278013],[113,21,77,0.06976175081701194],[113,21,78,0.0650036146720041],[113,21,79,0.060232045454889374],[113,22,64,0.11194175348288789],[113,22,65,0.10914872942031112],[113,22,66,0.10630344427059761],[113,22,67,0.10340335931097223],[113,22,68,0.10046281050654425],[113,22,69,0.09750241250551658],[113,22,70,0.09453823902941245],[113,22,71,0.09103107177559594],[113,22,72,0.08655273361369534],[113,22,73,0.08199073942113094],[113,22,74,0.07735125054376557],[113,22,75,0.07264291944253526],[113,22,76,0.06787643586011159],[113,22,77,0.06306408512443147],[113,22,78,0.05821931924123469],[113,22,79,0.05335634137498969],[113,23,64,0.1009785159616894],[113,23,65,0.0980763739069092],[113,23,66,0.0951470894117574],[113,23,67,0.09218559212209708],[113,23,68,0.08920230501167478],[113,23,69,0.08621475565491012],[113,23,70,0.08323702356066626],[113,23,71,0.080279772826692],[113,23,72,0.07735051719945711],[113,23,73,0.07445389613172745],[113,23,74,0.07092250680798527],[113,23,75,0.06614864182305495],[113,23,76,0.06131284316351536],[113,23,77,0.056427121318310014],[113,23,78,0.0515048248001413],[113,23,79,0.046560290205330146],[113,24,64,0.09003215390787911],[113,24,65,0.08702229445928125],[113,24,66,0.08400997592474307],[113,24,67,0.080987983958356],[113,24,68,0.07796289458997507],[113,24,69,0.07494895322402413],[113,24,70,0.0719580498291485],[113,24,71,0.06899953324703122],[113,24,72,0.06608027019901666],[113,24,73,0.0632047351486962],[113,24,74,0.06037513056219663],[113,24,75,0.0575915370387768],[113,24,76,0.054756361403251894],[113,24,77,0.04980779601823661],[113,24,78,0.044819469833702295],[113,24,79,0.03980581146638091],[113,25,64,0.07918104591301395],[113,25,65,0.07606581608890764],[113,25,66,0.07297198324631819],[113,25,67,0.06989062434141954],[113,25,68,0.0668245964078075],[113,25,69,0.06378471078195136],[113,25,70,0.060780500516279465],[113,25,71,0.05781983235703893],[113,25,72,0.05490876844382693],[113,25,73,0.05205147749782896],[113,25,74,0.04925019523060319],[113,25,75,0.046505233585364444],[113,25,76,0.043815038307969345],[113,25,77,0.0411762942362221],[113,25,78,0.03812113784498374],[113,25,79,0.033053160788715015],[113,26,64,0.06850175299526877],[113,26,65,0.06528446538954327],[113,26,66,0.06211122922379469],[113,26,67,0.05897188264698571],[113,26,68,0.05586575010688732],[113,26,69,0.05280010506019828],[113,26,70,0.049781989386447165],[113,26,71,0.04681764235693749],[113,26,72,0.043912176795918204],[113,26,73,0.04106932182166478],[113,26,74,0.038291232088758856],[113,26,75,0.03557836328579227],[113,26,76,0.032929413481340084],[113,26,77,0.03034132975658408],[113,26,78,0.027809379416778773],[113,26,79,0.025327284937128786],[113,27,64,0.05806667879976909],[113,27,65,0.054751614436756205],[113,27,66,0.05150171129303062],[113,27,67,0.0483060598048832],[113,27,68,0.04516069187919233],[113,27,69,0.04206929081459429],[113,27,70,0.039036310175735674],[113,27,71,0.03606624188988867],[113,27,72,0.033163121386007265],[113,27,73,0.03033011458656166],[113,27,74,0.02756918685948035],[113,27,75,0.024880853827737213],[113,27,76,0.02226401373041735],[113,27,77,0.01971586083302435],[113,27,78,0.01723187919794588],[113,27,79,0.014805915949965087],[113,28,64,0.0479419227313024],[113,28,65,0.04453431475107418],[113,28,66,0.04121113291299992],[113,28,67,0.03796121873557926],[113,28,68,0.03477759898560998],[113,28,69,0.03166036782865654],[113,28,70,0.028611333182308917],[113,28,71,0.025633148327006416],[113,28,72,0.022728662936709144],[113,28,73,0.019900369187575852],[113,28,74,0.01714994323183295],[113,28,75,0.014477882076601402],[113,28,76,0.011883235666471696],[113,28,77,0.009363433735836202],[113,28,78,0.006914206774240456],[113,28,79,0.004529600237161474],[113,29,64,0.03818533036283289],[113,29,65,0.03469132557055495],[113,29,66,0.031298919358295096],[113,29,67,0.027997197439013917],[113,29,68,0.02477650840659216],[113,29,69,0.02163341147092093],[113,29,70,0.018567052643560372],[113,29,71,0.0155781858576287],[113,29,72,0.012668388764137672],[113,29,73,0.009839384610425042],[113,29,74,0.007092470658780004],[113,29,75,0.004428053323991464],[113,29,76,0.0018452899358667183],[113,29,77,-6.581632312546741E-4],[113,29,78,-0.00308629727335489],[113,29,79,-0.005444792167934731],[113,30,64,0.028844745741284854],[113,30,65,0.025271340967063093],[113,30,66,0.02181442726742231],[113,30,67,0.01846380895376512],[113,30,68,0.0152075136181208],[113,30,69,0.012038670523685673],[113,30,70,0.00895378828661389],[113,30,71,0.005951692384125486],[113,30,72,0.003032626014221359],[113,30,73,1.9746571106442638E-4],[113,30,74,-0.0025529476664876974],[113,30,75,-0.005218362260964461],[113,30,76,-0.007799552843145443],[113,30,77,-0.010298643015340711],[113,30,78,-0.012719312545079521],[113,30,79,-0.015066890648191129],[113,31,64,0.019956470495915566],[113,31,65,0.016311420635316046],[113,31,66,0.012795352648061566],[113,31,67,0.009399232713977617],[113,31,68,0.006109143799225839],[113,31,69,0.0029149363141427],[113,31,70,-1.894552503867407E-4],[113,31,71,-0.0032071314748607924],[113,31,72,-0.006139221015343527],[113,31,73,-0.008985752545917469],[113,31,74,-0.011746404876265593],[113,31,75,-0.0144211348060957],[113,31,76,-0.017010682596096362],[113,31,77,-0.019516955243998116],[113,31,78,-0.021943288051832432],[113,31,79,-0.02429458525424854],[113,32,64,0.011543934937774251],[113,32,65,0.00783562947822133],[113,32,66,0.004266342343957884],[113,32,67,8.286021416566746E-4],[113,32,68,-0.0024930699083494717],[113,32,69,-0.005711912505409431],[113,32,70,-0.008836467114793169],[113,32,71,-0.01187172765998483],[113,32,72,-0.014820206316397733],[113,32,73,-0.017682874261129043],[113,32,74,-0.020459976485277795],[113,32,75,-0.023151720113584066],[113,32,76,-0.025758836007559165],[113,32,77,-0.028283013750595526],[113,32,78,-0.030727210424427942],[113,32,79,-0.03146560302842313],[113,33,64,0.0036165866151125613],[113,33,65,-1.4610859994831742E-4],[113,33,66,-0.0037621857343496925],[113,33,67,-0.0072372063832241],[113,33,68,-0.010587836157966652],[113,33,69,-0.013830184869489255],[113,33,70,-0.016975142730843218],[113,33,71,-0.02002953630499854],[113,33,72,-0.022997246923006438],[113,33,73,-0.025880202267234014],[113,33,74,-0.02867924011192372],[113,33,75,-0.02964635745477026],[113,33,76,-0.02637743400761527],[113,33,77,-0.023208436546634004],[113,33,78,-0.020142512759447954],[113,33,79,-0.01718364836904053],[113,34,64,-0.0038309979453754334],[113,34,65,-0.007638937003925735],[113,34,66,-0.01129500802553414],[113,34,67,-0.014802577737066312],[113,34,68,-0.018179147941830908],[113,34,69,-0.02144346694002006],[113,34,70,-0.02460862545742538],[113,34,71,-0.02768319750460324],[113,34,72,-0.026454039562061504],[113,34,73,-0.02272543758863539],[113,34,74,-0.019095560335132343],[113,34,75,-0.015567554827762092],[113,34,76,-0.012144041193553438],[113,34,77,-0.008827639058478495],[113,34,78,-0.005621365322757536],[113,34,79,-0.0025289038581369104],[113,35,64,-0.010819772334351309],[113,35,65,-0.014663766913186603],[113,35,66,-0.018352840520634357],[113,35,67,-0.02188794973478546],[113,35,68,-0.025287124403390652],[113,35,69,-0.024747144258189312],[113,35,70,-0.020573936785816125],[113,35,71,-0.016483240695225065],[113,35,72,-0.012485752148330725],[113,35,73,-0.008588944231911939],[113,35,74,-0.00479800102933302],[113,35,75,-0.0011166250290917373],[113,35,76,0.00245228263681166],[113,35,77,0.005906069301324899],[113,35,78,0.009241905073505294],[113,35,79,0.012456483901277331],[113,36,64,-0.017386643989321247],[113,36,65,-0.02125774571601284],[113,36,66,-0.0243547384155482],[113,36,67,-0.01986565093535201],[113,36,68,-0.015394911142804849],[113,36,69,-0.010971960503341142],[113,36,70,-0.006619353855659379],[113,36,71,-0.002353834526300136],[113,36,72,0.0018124735338318572],[113,36,73,0.005870995191591791],[113,36,74,0.009815756420017922],[113,36,75,0.013642560360438375],[113,36,76,0.017348287751903807],[113,36,77,0.020930321996087665],[113,36,78,0.024386098809377116],[113,36,79,0.027712780110626882],[113,37,64,-0.020171955805213533],[113,37,65,-0.01551982640645493],[113,37,66,-0.010857313822305415],[113,37,67,-0.006187574919001436],[113,37,68,-0.0015358624110993263],[113,37,69,0.003066138264700078],[113,37,70,0.007593907810067949],[113,37,71,0.012029068198605811],[113,37,72,0.016358187137162493],[113,37,73,0.020571700447809142],[113,37,74,0.02466295371062385],[113,37,75,0.02862736417456734],[113,37,76,0.03246170361692543],[113,37,77,0.03616350251270984],[113,37,78,0.039730575564786534],[113,37,79,0.04316066834738501],[113,38,64,-0.006863533503173972],[113,38,65,-0.0020283147726837284],[113,38,66,0.002814143057865264],[113,38,67,0.0076631278268220575],[113,38,68,0.012493144253250633],[113,38,69,0.017270348066733675],[113,38,70,0.021968362769867498],[113,38,71,0.026567301628582795],[113,38,72,0.03105256522259056],[113,38,73,0.03541375331886718],[113,38,74,0.0396436924869107],[113,38,75,0.043737580548737116],[113,38,76,0.04769224863639645],[113,38,77,0.05150554131675848],[113,38,78,0.055175814938097374],[113,38,79,0.058701554059590676],[113,39,64,0.006545787943074563],[113,39,65,0.011565543720962088],[113,39,66,0.016588275392662114],[113,39,67,0.02161571823839071],[113,39,68,0.026622123097657036],[113,39,69,0.03157146928417931],[113,39,70,0.03643555416937529],[113,39,71,0.041193055960799356],[113,39,72,0.04582831713905252],[113,39,73,0.050330238941735564],[113,39,74,0.054691288403112125],[113,39,75,0.05890661913840846],[113,39,76,0.06297330674698698],[113,39,77,0.0668896994005051],[113,39,78,0.07065488388118535],[113,39,79,0.07426826704541829],[113,40,64,0.02000797608887917],[113,40,65,0.025215422239157927],[113,40,66,0.03042058645002191],[113,40,67,0.035627723292379225],[113,40,68,0.0408108002780531],[113,40,69,0.04593151793391917],[113,40,70,0.0509597946241344],[113,40,71,0.05587286733831194],[113,40,72,0.060654055408508725],[113,40,73,0.06529163212225858],[113,40,74,0.06977780584038104],[113,40,75,0.07410781191404445],[113,40,76,0.07827911638578768],[113,40,77,0.08229073215536778],[113,40,78,0.08614264799388492],[113,40,79,0.08983537050255161],[113,41,64,0.03347053069942322],[113,41,65,0.03887010824842938],[113,41,66,0.044261339816150574],[113,41,67,0.049651104425197996],[113,41,68,0.05501304434107769],[113,41,69,0.06030642840564688],[113,41,70,0.06549918673542623],[113,41,71,0.07056704970400166],[113,41,72,0.0754922884176366],[113,41,73,0.08026255987592108],[113,41,74,0.08486985853387563],[113,41,75,0.08930957567315986],[113,41,76,0.0935796676851443],[113,41,77,0.09767993406896622],[113,41,78,0.10161140565371961],[113,41,79,0.10537584326947733],[113,42,64,0.04687882534445255],[113,42,65,0.05247575276892756],[113,42,66,0.0580576977340337],[113,42,67,0.06363426823337773],[113,42,68,0.06917872920535822],[113,42,69,0.07464774313946343],[113,42,70,0.08000711081156756],[113,42,71,0.08523095103779364],[113,42,72,0.09030041662902598],[113,42,73,0.09520251160151293],[113,42,74,0.09992901147201211],[113,42,75,0.10447548816315261],[113,42,76,0.10884044074512186],[113,42,77,0.1130245329447599],[113,42,78,0.11702993806297293],[113,42,79,0.12085979165985974],[113,43,64,0.06018006084121733],[113,43,65,0.06597981055758716],[113,43,66,0.07175762180965026],[113,43,67,0.07752590668313303],[113,43,68,0.08325749155024897],[113,43,69,0.08890625912422741],[113,43,70,0.0944357282178082],[113,43,71,0.09981827869871379],[113,43,72,0.10503384392819123],[113,43,73,0.11006870067175177],[113,43,74,0.11491435842322664],[113,43,75,0.11956654978739788],[113,43,76,0.12402432327313513],[113,43,77,0.12828923955940327],[113,43,78,0.13236467201094695],[113,43,79,0.13625521194262957],[113,44,64,0.07332741444582094],[113,44,65,0.07933517239161732],[113,44,66,0.08531396088522168],[113,44,67,0.09127901754952947],[113,44,68,0.09720265933624114],[113,44,69,0.10303583452519542],[113,44,70,0.1087396322233555],[113,44,71,0.11377422667128197],[113,44,72,0.11865369274422737],[113,44,73,0.12341247255720167],[113,44,74,0.12805659795566937],[113,44,75,0.13258811030567308],[113,44,76,0.1370059987488719],[113,44,77,0.14130703781842022],[113,44,78,0.14548652350067165],[113,44,79,0.14953890710080814],[113,45,64,0.08375127475556315],[113,45,65,0.09021856614582371],[113,45,66,0.0964483976681024],[113,45,67,0.10241486682512436],[113,45,68,0.10813899641079068],[113,45,69,0.11366628862610438],[113,45,70,0.11903225505854295],[113,45,71,0.1242630859665553],[113,45,72,0.12937699493253021],[113,45,73,0.13438547413661858],[113,45,74,0.1392944580996613],[113,45,75,0.14410539401937592],[113,45,76,0.1488162171006743],[113,45,77,0.15342222955648124],[113,45,78,0.15791688222655428],[113,45,79,0.16229245802850628],[113,46,64,0.09291260645719415],[113,46,65,0.09952764378042278],[113,46,66,0.10591499460028252],[113,46,67,0.11204589737981763],[113,46,68,0.11794177943855877],[113,46,69,0.12365094968080638],[113,46,70,0.1292111986978604],[113,46,71,0.13465040723904034],[113,46,72,0.13998790252453377],[113,46,73,0.14523573066091847],[113,46,74,0.15039984291549874],[113,46,75,0.15548119386941658],[113,46,76,0.16047674973490608],[113,46,77,0.16538040538715196],[113,46,78,0.1701838089229233],[113,46,79,0.1748770928165472],[113,47,64,0.10204319815508076],[113,47,65,0.10879586123822538],[113,47,66,0.11533015388532714],[113,47,67,0.12161469900666418],[113,47,68,0.12767144445411394],[113,47,69,0.1335515509946804],[113,47,70,0.13929516306051434],[113,47,71,0.14493194949176094],[113,47,72,0.1504824630033772],[113,47,73,0.1559594220275134],[113,47,74,0.16136891260910058],[113,47,75,0.16671150828163528],[113,47,76,0.1719833061019169],[113,47,77,0.177176877274855],[113,47,78,0.1822821310495087],[113,47,79,0.1872870908154164],[113,48,64,0.1111816378044057],[113,48,65,0.11806173593079353],[113,48,66,0.1247318890052405],[113,48,67,0.13115839689961287],[113,48,68,0.1373638241128476],[113,48,69,0.1434021619647263],[113,48,70,0.14931594043842614],[113,48,71,0.15513669393723342],[113,48,72,0.16088631337178397],[113,48,73,0.16657832763332103],[113,48,74,0.17221911207105575],[113,48,75,0.17780902182424027],[113,48,76,0.18334344809530695],[113,48,77,0.18881379568771556],[113,48,78,0.19420838036818594],[113,48,79,0.19951324484810948],[113,49,64,0.12037027133140418],[113,49,65,0.12736747746585003],[113,49,66,0.13416184059780772],[113,49,67,0.1407176680149179],[113,49,68,0.14705820979150847],[113,49,69,0.153240195113106],[113,49,70,0.15930852277028773],[113,49,71,0.1652966446846763],[113,49,72,0.17122789843035569],[113,49,73,0.177116776782926],[113,49,74,0.18297013187859062],[113,49,75,0.18878831177915567],[113,49,76,0.1945662274563052],[113,49,77,0.20029434842845895],[113,49,78,0.20595962550328353],[113,49,79,0.2115463392989676],[113,50,64,0.1296392999455015],[113,50,65,0.13674342822297017],[113,50,66,0.14365015669020073],[113,50,67,0.15032216659270548],[113,50,68,0.15678343694744326],[113,50,69,0.16309327354696102],[113,50,70,0.16929887702541824],[113,50,71,0.17543563742176557],[113,50,72,0.18152843392098506],[113,50,73,0.1875928797721927],[113,50,74,0.19363650995785878],[113,50,75,0.19965990938085543],[113,50,76,0.20565777953323497],[113,50,77,0.21161994181114693],[113,50,78,0.21753227584164997],[113,50,79,0.2233775913899882],[113,51,64,0.13900687916127588],[113,51,65,0.1462081191740473],[113,51,66,0.15321550237330828],[113,51,67,0.15999048121080314],[113,51,68,0.16655778305286414],[113,51,69,0.17297906586087294],[113,51,70,0.17930371567364725],[113,51,71,0.18556904639326646],[113,51,72,0.19180155309844282],[113,51,73,0.198018119054923],[113,51,74,0.20422717401902388],[113,51,75,0.21042980160016023],[113,51,76,0.21662079362333508],[113,51,77,0.22278964961179448],[113,51,78,0.22892151969106644],[113,51,79,0.23499808939920006],[113,52,64,0.14847936644363535],[113,52,65,0.15576847523913734],[113,52,66,0.16286521912457028],[113,52,67,0.16973024141772944],[113,52,68,0.17638901489020914],[113,52,69,0.1829052696598744],[113,52,70,0.18933041421165064],[113,52,71,0.1957036358246443],[113,52,72,0.20205309393516793],[113,52,73,0.20839707594220622],[113,52,74,0.21474511310449956],[113,52,75,0.22109905432411522],[113,52,76,0.2274540957629845],[113,52,77,0.2337997643952943],[113,52,78,0.2401208537576776],[113,52,79,0.2463983103218143],[113,53,64,0.15805172137845058],[113,53,65,0.16542017417963872],[113,53,66,0.1725956378591143],[113,53,67,0.17953837809618964],[113,53,68,0.1862745894251802],[113,53,69,0.19286974796703182],[113,53,70,0.19937708002955062],[113,53,71,0.20583756005870502],[113,53,72,0.2122810311699867],[113,53,73,0.21872729694217022],[113,53,74,0.22518718220695919],[113,53,75,0.23166356068870067],[113,53,76,0.23815234747537617],[113,53,77,0.24464345443448998],[113,53,78,0.251121706823287],[113,53,79,0.2575677194830516],[113,54,64,0.16770806219426168],[113,54,65,0.17514816296158425],[113,54,66,0.1823925497281349],[113,54,67,0.18940154165685583],[113,54,68,0.19620201243275426],[113,54,69,0.2028608227494653],[113,54,70,0.20943277688322504],[113,54,71,0.21596051666714125],[113,54,72,0.22247555741764385],[113,54,73,0.22899930386610653],[113,54,74,0.2355440439435805],[113,54,75,0.24211391836173174],[113,54,76,0.24870586403486666],[113,54,77,0.2553105294955718],[113,54,78,0.2619131605681394],[113,54,79,0.26849445468089883],[113,55,64,0.177422382356378],[113,55,65,0.1849273354244],[113,55,66,0.192231838593956],[113,55,67,0.19929668208165538],[113,55,68,0.2061493589808866],[113,55,69,0.21285772973705938],[113,55,70,0.21947790918997873],[113,55,71,0.2260540567635389],[113,55,72,0.23261931753353826],[113,55,73,0.23919675181740185],[113,55,74,0.24580025127617774],[113,55,75,0.25243543958867426],[113,55,76,0.25910055583395086],[113,55,77,0.2657873188008827],[113,55,78,0.2724817705305181],[113,55,79,0.27916509748988777],[113,56,64,0.1871594308216915],[113,56,65,0.19472337496374917],[113,56,66,0.2020802789919405],[113,56,67,0.20919179472504684],[113,56,68,0.21608595977550138],[113,56,69,0.22283123861771495],[113,56,70,0.2294847702865685],[113,56,71,0.23609205667835118],[113,56,72,0.24268780037531135],[113,56,73,0.24929673914065778],[113,56,74,0.2559344752416301],[113,56,75,0.26260829780247097],[113,56,76,0.2693179964402443],[113,56,77,0.27605666449389504],[113,56,78,0.28281149021926333],[113,56,79,0.28956453439146845],[113,57,64,0.19687575938200386],[113,57,65,0.20449376578214248],[113,57,66,0.21189650324140608],[113,57,67,0.21904683564180316],[113,57,68,0.2259732572395558],[113,57,69,0.23274444257256352],[113,57,70,0.2394182586797499],[113,57,71,0.24604135506025585],[113,57,72,0.2526498920205169],[113,57,73,0.25927027334035296],[113,57,74,0.26591988160381413],[113,57,75,0.27260781456022026],[113,57,76,0.2793356209073767],[113,57,77,0.2860980339218896],[113,57,78,0.29288370139949155],[113,57,79,0.29967591041302166],[113,58,64,0.20652094033573729],[113,58,65,0.21418897607791373],[113,58,66,0.22163214119095695],[113,58,67,0.2288148100405579],[113,58,68,0.2357658350383577],[113,58,69,0.24255372096392896],[113,58,70,0.2492367661802446],[113,58,71,0.25586255934177327],[113,58,72,0.26246859438701675],[113,58,73,0.26908289688080933],[113,58,74,0.27572466025643105],[113,58,75,0.28240489050398554],[113,58,76,0.2891270578545413],[113,58,77,0.2958877540189305],[113,58,78,0.3026773535545825],[113,58,79,0.3094806779551972],[113,59,64,0.21603895751210012],[113,59,65,0.2237538163314019],[113,59,66,0.23123313587757854],[113,59,67,0.23844303726317131],[113,59,68,0.24541262457213986],[113,59,69,0.2522098788071373],[113,59,70,0.25889324164040983],[113,59,71,0.2655110253490569],[113,59,72,0.27210191305897524],[113,59,73,0.2786954766509889],[113,59,74,0.2853127110945319],[113,59,75,0.2919665839489273],[113,59,76,0.29866259875335677],[113,59,77,0.3053993710138092],[113,59,78,0.31216921548753557],[113,59,79,0.31895874346472086],[113,60,64,0.2253697730010519],[113,60,65,0.23312897517560613],[113,60,66,0.2406412377082176],[113,60,67,0.24787459502156384],[113,60,68,0.2548582912919637],[113,60,69,0.2616594659973966],[113,60,70,0.2683364333628701],[113,60,71,0.27493801319151295],[113,60,72,0.28150391748767056],[113,60,73,0.28806516025634643],[113,60,74,0.294644489465132],[113,60,75,0.301256840109659],[113,60,76,0.3079098072844853],[113,60,77,0.31460413812807436],[113,60,78,0.3213342414821085],[113,60,79,0.32808871408381823],[113,61,64,0.23445105997023458],[113,61,65,0.24225272325654576],[113,61,66,0.24979566758387423],[113,61,67,0.2570499333308248],[113,61,68,0.2640447913006184],[113,61,69,0.27084626677005097],[113,61,70,0.2775123006593424],[113,61,71,0.28409200988732225],[113,61,72,0.29062596396885715],[113,61,73,0.29714648944814553],[113,61,74,0.30367800137460443],[113,61,75,0.3102373609653848],[113,61,76,0.3168342585414045],[113,61,77,0.32347162077212843],[113,61,78,0.3301460412171939],[113,61,79,0.33684823311250467],[113,62,64,0.24322012811924582],[113,62,65,0.2510628120026662],[113,62,66,0.25863497624324555],[113,62,67,0.26590868577441595],[113,62,68,0.27291312623411346],[113,62,69,0.2797129877406721],[113,62,70,0.2863656232387621],[113,62,71,0.29292024771012937],[113,62,72,0.29941811065444546],[113,62,73,0.3058927001808986],[113,62,74,0.3123699781320886],[113,62,75,0.31886864558395345],[113,62,76,0.32540043799263985],[113,62,77,0.33197044919146407],[113,62,78,0.338577483377482],[113,62,79,0.345214434169886],[113,63,64,0.2515398670566336],[113,63,65,0.2594985747910289],[113,63,66,0.2670991075072537],[113,63,67,0.2743916859809443],[113,63,68,0.2814053045059166],[113,63,69,0.28820315280508446],[113,63,70,0.2948418168892343],[113,63,71,0.30137042688438076],[113,63,72,0.30783073336048655],[113,63,73,0.31425721816005114],[113,63,74,0.32067723935205794],[113,63,75,0.327111209846323],[113,63,76,0.33357280911734793],[113,63,77,0.3400692274053457],[113,63,78,0.34660144168440027],[113,63,79,0.3531645226159028],[113,64,64,0.25696038977850877],[113,64,65,0.2666397470722088],[113,64,66,0.27513163451783673],[113,64,67,0.2824431582515058],[113,64,68,0.2894664777086754],[113,64,69,0.29626317355146653],[113,64,70,0.30288892395689765],[113,64,71,0.30939261096941784],[113,64,72,0.3158163103279948],[113,64,73,0.3221953178265553],[113,64,74,0.3285582120217475],[113,64,75,0.33492695300153785],[113,64,76,0.3413170168316357],[113,64,77,0.3477375652042079],[113,64,78,0.35419164972402417],[113,64,79,0.36067645018329103],[113,65,64,0.2621933439919016],[113,65,65,0.2719546580879019],[113,65,66,0.2817965530447172],[113,65,67,0.29001309837167644],[113,65,68,0.29704726848584556],[113,65,69,0.30384461177333144],[113,65,70,0.31045979547718117],[113,65,71,0.31694131203754966],[113,65,72,0.3233313932680627],[113,65,73,0.329665962306671],[113,65,74,0.3359746233244255],[113,65,75,0.34228068886764834],[113,65,76,0.3486012446044069],[113,65,77,0.3549472511450645],[113,65,78,0.3613236825082402],[113,65,79,0.3677297007100064],[113,66,64,0.26726556332711426],[113,66,65,0.27709497123536336],[113,66,66,0.2870154089479215],[113,66,67,0.2970366091953803],[113,66,68,0.30410629225924185],[113,66,69,0.3109066366345793],[113,66,70,0.31751446766947716],[113,66,71,0.3239777685048878],[113,66,72,0.3303387676794779],[113,66,73,0.33663382742067927],[113,66,74,0.34289337038878226],[113,66,75,0.34914184489252076],[113,66,76,0.3553977284843187],[113,66,77,0.3616735697359909],[113,66,78,0.36797606789049203],[113,66,79,0.3743061899845119],[113,67,64,0.27219294249221865],[113,67,65,0.28207714878352136],[113,67,66,0.2920614165908386],[113,67,67,0.30215404226519804],[113,67,68,0.3106128737947168],[113,67,69,0.317418677628396],[113,67,70,0.32402273409416577],[113,67,71,0.3304724170624519],[113,67,72,0.33680980402043814],[113,67,73,0.34307151144622366],[113,67,74,0.3492885687494534],[113,67,75,0.3554863309198392],[113,67,76,0.36168442991105715],[113,67,77,0.3678967646759441],[113,67,78,0.3741315296590537],[113,67,79,0.3803912814466488],[113,68,64,0.2769774268398001],[113,68,65,0.2869039931394827],[113,68,66,0.2969381698076186],[113,68,67,0.3070869278983272],[113,68,68,0.31654995915823175],[113,68,69,0.32336327404366955],[113,68,70,0.32996691434762065],[113,68,71,0.3364075597400979],[113,68,72,0.34272700091329467],[113,68,73,0.348961931945821],[113,68,74,0.35514378093821236],[113,68,75,0.36129857916495217],[113,68,76,0.3674468688722255],[113,68,77,0.373603649736538],[113,68,78,0.3797783638864723],[113,68,79,0.3859749192803931],[113,69,64,0.28160381376463595],[113,69,65,0.29156145543679984],[113,69,66,0.30163281947547954],[113,69,67,0.31182355698688125],[113,69,68,0.3219172256316847],[113,69,69,0.3287391241196633],[113,69,70,0.33534482305235247],[113,69,71,0.3417802303825887],[113,69,72,0.3480867251113238],[113,69,73,0.35430091474814296],[113,69,74,0.3604544305526102],[113,69,75,0.366573760889375],[113,69,76,0.3726801229128667],[113,69,77,0.37878937268183976],[113,69,78,0.3849119536892747],[113,69,79,0.3910528836813676],[113,70,64,0.2860368327570468],[113,70,65,0.2960145325729817],[113,70,66,0.30611073719959575],[113,70,67,0.3163296651619914],[113,70,68,0.32663338883086596],[113,70,69,0.3335700598857697],[113,70,70,0.3401797853882714],[113,70,71,0.34661310395390504],[113,70,72,0.3529108328426221],[113,70,73,0.3591093153085449],[113,70,74,0.36524018678948217],[113,70,75,0.3713301786734256],[113,70,76,0.37740095993234757],[113,70,77,0.383469016797343],[113,70,78,0.389545570533356],[113,70,79,0.3956365332585023],[113,71,64,0.2902333573237199],[113,71,65,0.3002170938623912],[113,71,66,0.3103227696651749],[113,71,67,0.32055305597171835],[113,71,68,0.3308704313816053],[113,71,69,0.33790562707151095],[113,71,70,0.344523677240044],[113,71,71,0.3509598422906299],[113,71,72,0.357254111780379],[113,71,73,0.36344229394476274],[113,71,74,0.36955576035759946],[113,71,75,0.37562122706560247],[113,71,76,0.38166057254852526],[113,71,77,0.38769069274080104],[113,71,78,0.3937233932355627],[113,71,79,0.3997653186791151],[113,72,64,0.29416001175949996],[113,72,65,0.30413279102090574],[113,72,66,0.3142295651101575],[113,72,67,0.3244513750250158],[113,72,68,0.33476126158939956],[113,72,69,0.34178684432525813],[113,72,70,0.3484199221928986],[113,72,71,0.3548658204915274],[113,72,72,0.3611633376528398],[113,72,73,0.3673473949979806],[113,72,74,0.373448769195845],[113,72,75,0.37949385908993416],[113,72,76,0.3855044872881781],[113,72,77,0.3914977367991035],[113,72,78,0.39748582288642653],[113,72,79,0.4034760002046023],[113,73,64,0.29779232991458354],[113,73,65,0.3077349576888681],[113,73,66,0.31780225580559257],[113,73,67,0.32799359051120136],[113,73,68,0.3382727741994697],[113,73,69,0.3452431884364032],[113,73,70,0.35189975816105146],[113,73,71,0.3583637421215766],[113,73,72,0.36467232500503594],[113,73,73,0.37085913834191025],[113,73,74,0.3769539918081181],[113,73,75,0.3829826354538136],[113,73,76,0.38896655327529844],[113,73,77,0.39492278844324186],[113,73,78,0.40086380039658137],[113,73,79,0.4067973539088619],[113,74,64,0.301111731554557],[113,74,65,0.3110035407946165],[113,74,66,0.32101935036729706],[113,74,67,0.3311568508370054],[113,74,68,0.34136984393061787],[113,74,69,0.3482957876223354],[113,74,70,0.3549854086479067],[113,74,71,0.3614767551891244],[113,74,72,0.3678049504253301],[113,74,73,0.37400190983303],[113,74,74,0.3800960838974206],[113,74,75,0.3861122267386553],[113,74,76,0.39207119106529253],[113,74,77,0.3979897497765994],[113,74,78,0.4038804444433736],[113,74,79,0.4097514608055076],[113,75,64,0.30410260375995246],[113,75,65,0.3139221348348132],[113,75,66,0.32386372616850434],[113,75,67,0.33392343899262933],[113,75,68,0.34398834515599314],[113,75,69,0.35096052653888377],[113,75,70,0.35769317299420306],[113,75,71,0.36422149633294876],[113,75,72,0.3705781152863987],[113,75,73,0.37679280468407245],[113,75,74,0.38289226336750287],[113,75,75,0.38889990129117935],[113,75,76,0.39483564618932626],[113,75,77,0.4007157701135749],[113,75,78,0.40655273607113723],[113,75,79,0.41235506491742974],[113,76,64,0.306749492753447],[113,76,65,0.3164751245165831],[113,76,66,0.32631972733376835],[113,76,67,0.3362778291439451],[113,76,68,0.3462229719557696],[113,76,69,0.353251057594505],[113,76,70,0.3600364303262194],[113,76,71,0.36661105814388506],[113,76,72,0.3730046432276521],[113,76,73,0.3792444193853874],[113,76,74,0.3853549598115099],[113,76,75,0.39135799552545764],[113,76,76,0.39727224480117346],[113,76,77,0.4031132538475389],[113,76,78,0.4088932489457],[113,76,79,0.41462100019414355],[113,77,64,0.3090344115915911],[113,77,65,0.31864494126930726],[113,77,66,0.32837037387224677],[113,77,67,0.33820385104165873],[113,77,68,0.3480889792155168],[113,77,69,0.35518171302091395],[113,77,70,0.3620285517709003],[113,77,71,0.36865787438266995],[113,77,72,0.37509610742574623],[113,77,73,0.3813675876019248],[113,77,74,0.3874944243950295],[113,77,75,0.39349636312048775],[113,77,76,0.39939064858252066],[113,77,77,0.4051918895224175],[113,77,78,0.4109119240137265],[113,77,79,0.4165596859304577],[113,78,64,0.3109342691757175],[113,78,65,0.3204094391655037],[113,78,66,0.3299946875549624],[113,78,67,0.3396819679005635],[113,78,68,0.34944224663696277],[113,78,69,0.3567703120560044],[113,78,70,0.3636857153893016],[113,78,71,0.37037651772100394],[113,78,72,0.37686558254574926],[113,78,73,0.38317405530028853],[113,78,74,0.3893212958491114],[113,78,75,0.3953247993888784],[113,78,76,0.40120010583780685],[113,78,77,0.4069606977837303],[113,78,78,0.4126178870679491],[113,78,79,0.41818069008219333],[113,79,64,0.3124383156551651],[113,79,65,0.32175904210918915],[113,79,66,0.33118431150620986],[113,79,67,0.3407051171651417],[113,79,68,0.35029431721115234],[113,79,69,0.35802465192860566],[113,79,70,0.3650149060682553],[113,79,71,0.37177341149396015],[113,79,72,0.37831924028421665],[113,79,73,0.3846700964587817],[113,79,74,0.3908423338726303],[113,79,75,0.39685094893092726],[113,79,76,0.4027095480083715],[113,79,77,0.4084302895003153],[113,79,78,0.4140238004720333],[113,79,79,0.419499067907101],[113,80,64,0.31360218156115216],[113,80,65,0.32275009371197205],[113,80,66,0.3319955571662653],[113,80,67,0.3413287842199067],[113,80,68,0.35072453192525743],[113,80,69,0.3588984986678334],[113,80,70,0.36597388506001577],[113,80,71,0.3728113581554827],[113,80,72,0.3794259407311078],[113,80,73,0.38583158111241667],[113,80,74,0.39204127675439343],[113,80,75,0.39806715741072835],[113,80,76,0.4039205275397084],[113,80,77,0.40961186768040725],[113,80,78,0.41515079461229776],[113,80,79,0.42054598018527745],[113,81,64,0.3144815346276273],[113,81,65,0.32343934293216753],[113,81,66,0.3324855478481673],[113,81,67,0.3416097070044687],[113,81,68,0.35078839628430847],[113,81,69,0.35934496796445037],[113,81,70,0.36651924994385243],[113,81,71,0.3734514566671077],[113,81,72,0.3801522814184115],[113,81,73,0.3866315470976111],[113,81,74,0.39289845994865963],[113,81,75,0.3989618060333144],[113,81,76,0.4048300898006464],[113,81,77,0.41051161423493754],[113,81,78,0.41601450218969616],[113,81,79,0.4213466586338721],[113,82,64,0.3151134440439448],[113,82,65,0.3238654748608994],[113,82,66,0.33269413870386044],[113,82,67,0.341588427345497],[113,82,68,0.3505265785868287],[113,82,69,0.359331908925536],[113,82,70,0.3666204313454725],[113,82,71,0.3736654816785216],[113,82,72,0.3804731524178307],[113,82,73,0.387048754585301],[113,82,74,0.39339722847852443],[113,82,75,0.39952347880968253],[113,82,76,0.405432633220481],[113,82,77,0.41113022334081856],[113,82,78,0.41662228773489046],[113,82,79,0.42191539624644675],[113,83,64,0.315518922692095],[113,83,65,0.32405155035308186],[113,83,66,0.33264622113990217],[113,83,67,0.3412914242272514],[113,83,68,0.3499668371807498],[113,83,69,0.3586520803587379],[113,83,70,0.3662582705116958],[113,83,71,0.37343474252786024],[113,83,72,0.38037089027897003],[113,83,73,0.3870671421286349],[113,83,74,0.3935236958863016],[113,83,75,0.399741018945413],[113,83,76,0.4057202516611304],[113,83,77,0.4114635127534414],[113,83,78,0.4169741057531634],[113,83,79,0.42225662573095846],[113,84,64,0.31570538535158105],[113,84,65,0.32400736502348426],[113,84,66,0.33235395106707577],[113,84,67,0.34073317679166054],[113,84,68,0.34912588448364207],[113,84,69,0.3575147486042576],[113,84,70,0.3654236464050969],[113,84,71,0.3727489850320528],[113,84,72,0.3798344690635403],[113,84,73,0.386675315476832],[113,84,74,0.3932665332337711],[113,84,75,0.39960361435152014],[113,84,76,0.4056831068782159],[113,84,77,0.4115030681103044],[113,84,78,0.4170633966800059],[113,84,79,0.4223660424229805],[113,85,64,0.3144975699785803],[113,85,65,0.323330568493002],[113,85,66,0.3318188949034362],[113,85,67,0.3399181512039903],[113,85,68,0.3480111821910736],[113,85,69,0.35608324623565407],[113,85,70,0.3641161546594055],[113,85,71,0.37160533793864864],[113,85,72,0.378858729851879],[113,85,73,0.38586607002431794],[113,85,74,0.3926167885160937],[113,85,75,0.3991009121516281],[113,85,76,0.40530983048424285],[113,85,77,0.4112369192191736],[113,85,78,0.41687801927338725],[113,85,79,0.42223176999496514],[113,86,64,0.31205436863226865],[113,86,65,0.32094401252795746],[113,86,66,0.32962617769030517],[113,86,67,0.3381034658226666],[113,86,68,0.34638259118042547],[113,86,69,0.3543612792830065],[113,86,70,0.36205183471613445],[113,86,71,0.3696919227286544],[113,86,72,0.3772819335530105],[113,86,73,0.3846359483697357],[113,86,74,0.39156773738774814],[113,86,75,0.39822316251950235],[113,86,76,0.404587955209589],[113,86,77,0.41065024762742935],[113,86,78,0.4164012182917027],[113,86,79,0.4218355674250677],[113,87,64,0.30917699405093724],[113,87,65,0.3181146911605926],[113,87,66,0.32686927053961445],[113,87,67,0.33544383811463174],[113,87,68,0.34384508788324825],[113,87,69,0.35207242020815976],[113,87,70,0.35967178174301534],[113,87,71,0.36692998187359477],[113,87,72,0.37412743325706044],[113,87,73,0.38127180268713246],[113,87,74,0.3883713167602156],[113,87,75,0.39543345143427894],[113,87,76,0.40246380464828374],[113,87,77,0.40946515537760714],[113,87,78,0.41561262636336344],[113,87,79,0.42115407576722697],[113,88,64,0.3059047080625802],[113,88,65,0.3148795496848948],[113,88,66,0.32369710284024883],[113,88,67,0.33236096037151097],[113,88,68,0.3408781624252973],[113,88,69,0.3492473038452811],[113,88,70,0.35698350216292923],[113,88,71,0.3638461670291204],[113,88,72,0.37063418370752854],[113,88,73,0.377361082235307],[113,88,74,0.38404140771582534],[113,88,75,0.39068914115555375],[113,88,76,0.3973163265559932],[113,88,77,0.4039319083043132],[113,88,78,0.4105407823476153],[113,88,79,0.41714306409012],[113,89,64,0.30228097801381293],[113,89,65,0.31127987279829195],[113,89,66,0.3201482461236945],[113,89,67,0.32889016274984323],[113,89,68,0.3375133646364908],[113,89,69,0.34601621963881846],[113,89,70,0.3539840665651793],[113,89,71,0.3604433447579608],[113,89,72,0.36681122196962523],[113,89,73,0.37310701338021945],[113,89,74,0.37935160771074106],[113,89,75,0.3855656099466723],[113,89,76,0.3917677131721941],[113,89,77,0.3979733042594142],[113,89,78,0.40419330752993965],[113,89,79,0.4104332698924194],[113,90,64,0.29835162783008107],[113,90,65,0.30735951227385694],[113,90,66,0.3162640159629381],[113,90,67,0.32506966356918454],[113,90,68,0.33378523283201483],[113,90,69,0.34240942246752093],[113,90,70,0.35066915697881534],[113,90,71,0.35672313968731345],[113,90,72,0.36266658009607555],[113,90,73,0.36852440573922335],[113,90,74,0.37432376442384],[113,90,75,0.38009188445327974],[113,90,76,0.38585418615679246],[113,90,77,0.3916326501912881],[113,90,78,0.39744444738727536],[113,90,79,0.40330083423053237],[113,91,64,0.2941631022187721],[113,91,65,0.3031632237720516],[113,91,66,0.31208690371780395],[113,91,67,0.32093911851068363],[113,91,68,0.3297299842273196],[113,91,69,0.33845905111887864],[113,91,70,0.34703401717797266],[113,91,71,0.3526866699345223],[113,91,72,0.3582077846916583],[113,91,73,0.3636276392191528],[113,91,74,0.3689794489897819],[113,91,75,0.37429694565109195],[113,91,76,0.37961222803750455],[113,91,77,0.38495389191865237],[113,91,78,0.39034544392175485],[113,91,79,0.3958040043209494],[113,92,64,0.28976084687642817],[113,92,65,0.2987351156085897],[113,92,66,0.3076591146684707],[113,92,67,0.31653826868799406],[113,92,68,0.3253842950472864],[113,92,69,0.3341980645670851],[113,92,70,0.3429626180016051],[113,92,71,0.34833522208260054],[113,92,72,0.3534423052968155],[113,92,73,0.35843086695280707],[113,92,74,0.3633398983000319],[113,92,75,0.3682093995388086],[113,92,76,0.3730779749079233],[113,92,77,0.3779807272347347],[113,92,78,0.38294745805096814],[113,92,79,0.3880011785714021],[113,93,64,0.2851878072902399],[113,93,65,0.29411721203327806],[113,93,66,0.30302121501749457],[113,93,67,0.3119056899508705],[113,93,68,0.3207841725231169],[113,93,69,0.32965925981622096],[113,93,70,0.3385137307387023],[113,93,71,0.3436708642569348],[113,93,72,0.34837795045215886],[113,93,73,0.3529481742899372],[113,93,74,0.3574259201719534],[113,93,75,0.3618571156722372],[113,93,76,0.3662865798904756],[113,93,77,0.37075569051041274],[113,93,78,0.37530037632025653],[113,93,79,0.3799494410891142],[113,94,64,0.2804830484714679],[113,94,65,0.28934813333065135],[113,94,66,0.29821089000843526],[113,94,67,0.3070776455651934],[113,94,68,0.315963920773121],[113,94,69,0.32487437311628603],[113,94,70,0.33379192260993307],[113,94,71,0.33869699597890546],[113,94,72,0.3430232104035591],[113,94,73,0.3471936931054186],[113,94,74,0.35125776096311556],[113,94,75,0.35526683343472326],[113,94,76,0.359271547572663],[113,94,77,0.3633192093052808],[113,94,78,0.3674515883734899],[113,94,79,0.37170306339598064],[113,95,64,0.27568049772378445],[113,95,65,0.28446189482634293],[113,95,66,0.2932618151931814],[113,95,67,0.3020870442115976],[113,95,68,0.310955202379869],[113,95,69,0.31987326619661294],[113,95,70,0.32882465879596173],[113,95,71,0.3334188335888935],[113,95,72,0.3373875454994584],[113,95,73,0.34118167075451183],[113,95,74,0.3448549352511704],[113,95,75,0.34846373595954266],[113,95,76,0.3520640396248518],[113,95,77,0.35570863347728465],[113,95,78,0.3594447359377593],[113,95,79,0.3633119743463612],[113,96,64,0.2708078123311934],[113,96,65,0.27948682667186486],[113,96,66,0.28820264267876633],[113,96,67,0.2969625050568746],[113,96,68,0.3057861973046379],[113,96,69,0.31468319900880265],[113,96,70,0.32363775287913277],[113,96,71,0.3278438301400117],[113,96,72,0.33148161941773546],[113,96,73,0.3349264930676137],[113,96,74,0.3382360172396027],[113,96,75,0.3414709916385885],[113,96,76,0.34469215180711676],[113,96,77,0.3479572372636942],[113,96,78,0.35131843404519913],[113,96,79,0.35482019919975694],[113,97,64,0.26588537384695904],[113,97,65,0.2744446160836133],[113,97,66,0.2830561039966844],[113,97,67,0.2917275314767238],[113,97,68,0.3004808606197107],[113,97,69,0.3093281903286477],[113,97,70,0.3182548530237977],[113,97,71,0.3219820287650746],[113,97,72,0.3253174764389352],[113,97,73,0.32844266083464096],[113,97,74,0.3314183935862252],[113,97,75,0.33430926316822346],[113,97,76,0.3371801625708488],[113,97,77,0.3400931947882495],[113,97,78,0.34310496518370787],[113,97,79,0.3462642687586214],[113,98,64,0.2609254104770436],[113,98,65,0.26934947352976096],[113,98,66,0.27783823106387817],[113,98,67,0.28639979484582484],[113,98,68,0.29505828039052695],[113,98,69,0.3038284674344001],[113,98,70,0.31250261420319253],[113,98,71,0.31584634861486804],[113,98,72,0.31890866205797785],[113,98,73,0.32174471928414006],[113,98,74,0.3244179773863816],[113,98,75,0.32699618409945536],[113,98,76,0.3295477534598962],[113,98,77,0.3321385294332037],[113,98,78,0.3348289470394861],[113,98,79,0.3376715994427866],[113,99,64,0.25593124887638286],[113,99,65,0.2642074241886425],[113,99,66,0.27255769654199685],[113,99,67,0.28099052965883153],[113,99,68,0.289532136900189],[113,99,69,0.298200005954378],[113,99,70,0.30633807819366143],[113,99,71,0.30945280255365776],[113,99,72,0.3122702862953545],[113,99,73,0.31484714011197407],[113,99,74,0.317248883073835],[113,99,75,0.31954580287281553],[113,99,76,0.32180920151288656],[113,99,77,0.32410803749741335],[113,99,78,0.32650597446463425],[113,99,79,0.32905884513283684],[113,100,64,0.2508966965148222],[113,100,65,0.2590157258453067],[113,100,66,0.26721527475138884],[113,100,67,0.2755040411051009],[113,100,68,0.28391026427988414],[113,100,69,0.2924541608619819],[113,100,70,0.2999114353849882],[113,100,71,0.3028206458808814],[113,100,72,0.30541902913409724],[113,100,73,0.30776415566177556],[113,100,74,0.3099230620320586],[113,100,75,0.3119679943312907],[113,100,76,0.3139725438659217],[113,100,77,0.31600818654554297],[113,100,78,0.3181412362754759],[113,100,79,0.3204302215782205],[113,101,64,0.245805875560814],[113,101,65,0.253762345257914],[113,101,66,0.2618029569380849],[113,101,67,0.2699364563280284],[113,101,68,0.278193035967497],[113,101,69,0.28659568856991136],[113,101,70,0.2932516853422298],[113,101,71,0.29597502903051437],[113,101,72,0.2983761012813561],[113,101,73,0.30051298981315655],[113,101,74,0.30245375563979543],[113,101,75,0.30427207761578823],[113,101,76,0.3060432950071036],[113,101,77,0.3078408598900532],[113,101,78,0.3097332100475884],[113,101,79,0.31178107190764204],[113,102,64,0.24063975152124667],[113,102,65,0.248428058175021],[113,102,66,0.25630150468942814],[113,102,67,0.2642686746803508],[113,102,68,0.2723616197932693],[113,102,69,0.2806061571511881],[113,102,70,0.2864164781776965],[113,102,71,0.28897367845756156],[113,102,72,0.2911990712243205],[113,102,73,0.29315076843491494],[113,102,74,0.2948973118503248],[113,102,75,0.296513240242557],[113,102,76,0.2980750588947945],[113,102,77,0.29965762350088526],[113,102,78,0.30133094942708516],[113,102,79,0.3031574561636586],[113,103,64,0.23538533768775577],[113,103,65,0.2429972478366876],[113,103,66,0.2506928311292295],[113,103,67,0.2584803250118632],[113,103,68,0.26639349949220226],[113,103,69,0.27446099342121466],[113,103,70,0.2794736028066646],[113,103,71,0.2818870650269778],[113,103,72,0.28396089474738095],[113,103,73,0.2857526459198314],[113,103,74,0.28733069763917396],[113,103,75,0.28876977368109374],[113,103,76,0.29014686611926954],[113,103,77,0.29153757535409847],[113,103,78,0.29301287773933227],[113,103,79,0.2946363308543825],[113,104,64,0.23003680749065158],[113,104,65,0.23746220483291014],[113,104,66,0.24496754692614986],[113,104,67,0.2525605804059262],[113,104,68,0.2602766013900703],[113,104,69,0.26814699224749816],[113,104,70,0.2724800155678791],[113,104,71,0.27477396953728483],[113,104,72,0.27672206076004274],[113,104,73,0.27838065312165144],[113,104,74,0.2798172578818908],[113,104,75,0.28110604166191205],[113,104,76,0.28232373708251557],[113,104,77,0.28354596851339126],[113,104,78,0.28484400425354106],[113,104,79,0.28628194533043266],[113,105,64,0.22459632597913726],[113,105,65,0.23182394095612052],[113,105,66,0.23912575208914116],[113,105,67,0.24650891890525908],[113,105,68,0.2540100179911168],[113,105,69,0.261663004436082],[113,105,70,0.2654811599215374],[113,105,71,0.2676808172737144],[113,105,72,0.2695299240764607],[113,105,73,0.2710830089535587],[113,105,74,0.2724059845798975],[113,105,75,0.2735716849596195],[113,105,76,0.27465580020645225],[113,105,77,0.27573322129800176],[113,105,78,0.2768748061531704],[113,105,79,0.2781445772655564],[113,106,64,0.21907535326950223],[113,106,65,0.22609340888874777],[113,106,66,0.2331781634930158],[113,106,67,0.24033614653878757],[113,106,68,0.24760491617249006],[113,106,69,0.2550207259635021],[113,106,70,0.2585102726200215],[113,106,71,0.2606410935396519],[113,106,72,0.26241821787819614],[113,106,73,0.26389371290970354],[113,106,74,0.2651311687772509],[113,106,75,0.26620130895289196],[113,106,76,0.26717798903628004],[113,106,77,0.26813459624842584],[113,106,78,0.2691408608825891],[113,106,79,0.2702600898854569],[113,107,64,0.2134964016166731],[113,107,65,0.2202931728387315],[113,107,66,0.2271476880580663],[113,107,67,0.23406585801617166],[113,107,68,0.24108587182944896],[113,107,69,0.24824589845673448],[113,107,70,0.2515872970064922],[113,107,71,0.2536743907901271],[113,107,72,0.25540622710451577],[113,107,73,0.2568318325703223],[113,107,74,0.25801178595748636],[113,107,75,0.25901394716390025],[113,107,76,0.2599095612626868],[113,107,77,0.26076974972487343],[113,107,78,0.26166239986925083],[113,107,79,0.2626494625410672],[113,108,64,0.2078952480305327],[113,108,65,0.21445953218668498],[113,108,66,0.2210714437823334],[113,108,67,0.22773633741669866],[113,108,68,0.23449263341340176],[113,108,69,0.2413799234548921],[113,108,70,0.24471740084969115],[113,108,71,0.2467850847623383],[113,108,72,0.248497620204606],[113,108,73,0.24990048362425163],[113,108,74,0.25105061261956174],[113,108,75,0.25201229871112063],[113,108,76,0.2528534379035407],[113,108,77,0.2536421507576576],[113,108,78,0.25444378268908874],[113,108,79,0.2553182942085828],[113,109,64,0.20232355950525027],[113,109,65,0.20864505472323083],[113,109,66,0.21500318471705254],[113,109,67,0.22140285447849783],[113,109,68,0.22788226948340606],[113,109,69,0.23448184507845632],[113,109,70,0.2378890482051315],[113,109,71,0.23996058851558066],[113,109,72,0.2416788876482375],[113,109,73,0.24308545035975765],[113,109,74,0.24423302161523272],[113,109,75,0.24518168697158835],[113,109,76,0.2459953097407122],[113,109,77,0.2467383161323293],[113,109,78,0.24747283863262126],[113,109,79,0.24825622693392677],[113,110,64,0.19684242325315174],[113,110,65,0.202911878504868],[113,110,66,0.20900635713060253],[113,110,67,0.2151304537642993],[113,110,68,0.22132166963000058],[113,110,69,0.2276205448409862],[113,110,70,0.2310613418400867],[113,110,71,0.23315878058490835],[113,110,72,0.23490686620769133],[113,110,73,0.23634281186435532],[113,110,74,0.23751471141481784],[113,110,75,0.2384778885232181],[113,110,76,0.23929155824146575],[113,110,77,0.24001581162848565],[113,110,78,0.24070893308304422],[113,110,79,0.2414250591961734],[113,111,64,0.19150691236848713],[113,111,65,0.19731610886149356],[113,111,66,0.2031381524174436],[113,111,67,0.2089774735551675],[113,111,68,0.21487033799554298],[113,111,69,0.2208566281759942],[113,111,70,0.22415794031272898],[113,111,71,0.22630282288093959],[113,111,72,0.22810457669914475],[113,111,73,0.22959588703048758],[113,111,74,0.23081981186743336],[113,111,75,0.2318264180439711],[113,111,76,0.23266970278198637],[113,111,77,0.23340481045811465],[113,111,78,0.2340855535800198],[113,111,79,0.23476224616560348],[113,112,64,0.18634996703216214],[113,112,65,0.19189228092442132],[113,112,66,0.19743416832411378],[113,112,67,0.20298000134606226],[113,112,68,0.2085642431045599],[113,112,69,0.21422529542931687],[113,112,70,0.21712665211517956],[113,112,71,0.21934279939741053],[113,112,72,0.22122509966728462],[113,112,73,0.22280146471046597],[113,112,74,0.22410950765641033],[113,112,75,0.22519350424986584],[113,112,76,0.22610161013229443],[113,112,77,0.22688334303778324],[113,112,78,0.2275873380944951],[113,112,79,0.22825938371054516],[113,113,64,0.18138141539769953],[113,113,65,0.18665224970552557],[113,113,66,0.1919078091954006],[113,113,67,0.197152477958695],[113,113,68,0.20241833721732433],[113,113,69,0.20729278587114755],[113,113,70,0.2099373449888042],[113,113,71,0.2122498297873336],[113,113,72,0.2142413768850488],[113,113,73,0.2159348733007922],[113,113,74,0.21736206388941243],[113,113,75,0.21856087483888995],[113,113,76,0.21957296176197993],[113,113,77,0.22044149029465335],[113,113,78,0.2212091564897382],[113,113,79,0.2219164536712394],[113,114,64,0.17659387945168495],[113,114,65,0.1815909369680136],[113,114,66,0.1865560290110448],[113,114,67,0.19149360212237843],[113,114,68,0.1964327894702294],[113,114,69,0.19982968542072133],[113,114,70,0.20257445455998702],[113,114,71,0.20500780314910932],[113,114,72,0.20713705775757546],[113,114,73,0.20897985135237873],[113,114,74,0.21056165891645592],[113,114,75,0.21191351735004205],[113,114,76,0.21306993700087523],[113,114,77,0.21406701164243536],[113,114,78,0.21494073318980192],[113,114,79,0.21572551691387862],[113,115,64,0.1719653623000536],[113,115,65,0.17668883096024798],[113,115,66,0.1813617137614032],[113,115,67,0.18562688203707978],[113,115,68,0.18902890239009737],[113,115,69,0.19217183682274863],[113,115,70,0.1950352882829561],[113,115,71,0.19761196584731183],[113,115,72,0.199905396085839],[113,115,73,0.20192777255025557],[113,115,74,0.20369795029588897],[113,115,75,0.2052395919305905],[113,115,76,0.206579471259469],[113,115,77,0.20774594016444925],[113,115,78,0.2087675639256713],[113,115,79,0.20967192976048962],[113,116,64,0.1660636749175341],[113,116,65,0.17007771551880127],[113,116,66,0.17392825074756144],[113,116,67,0.17760598786134127],[113,116,68,0.18108374419556383],[113,116,69,0.18433083852521337],[113,116,70,0.1873283272801447],[113,116,71,0.19006749837273818],[113,116,72,0.19254812802353863],[113,116,73,0.1947768454560533],[113,116,74,0.19676561082984667],[113,116,75,0.19853031145939448],[113,116,76,0.20008948103875465],[113,116,77,0.20146314626087447],[113,116,78,0.20267180488782846],[113,116,79,0.20373553899669272],[113,117,64,0.1577647059600283],[113,117,65,0.1617918499258359],[113,117,66,0.16567671810236073],[113,117,67,0.1694099937687308],[113,117,68,0.1729690191066976],[113,117,69,0.1763285475590883],[113,117,70,0.1794715272073538],[113,117,71,0.18238808215797858],[113,117,72,0.18507433190689676],[113,117,73,0.18753128843629963],[113,117,74,0.1897638348218992],[113,117,75,0.19177978890188632],[113,117,76,0.1935890553284707],[113,117,77,0.1952028690903636],[113,117,78,0.19663313336183683],[113,117,79,0.19789185430261402],[113,118,64,0.14933148951721922],[113,118,65,0.15336916848709958],[113,118,66,0.15728729121574486],[113,118,67,0.16107645911538018],[113,118,68,0.1647188448264275],[113,118,69,0.16819515514503333],[113,118,70,0.17149061919219702],[113,118,71,0.1745944572052581],[113,118,72,0.1774992705974758],[113,118,73,0.18020048018003826],[113,118,74,0.1826958147095991],[113,118,75,0.18498485179074373],[113,118,76,0.1870686130279162],[113,118,77,0.1889492151861319],[113,118,78,0.19062957898565386],[113,118,79,0.19211319702362376],[113,119,64,0.14081654324782755],[113,119,65,0.14485981276300566],[113,119,66,0.14880738264378032],[113,119,67,0.15264970432929725],[113,119,68,0.1563739835138949],[113,119,69,0.159967273217754],[113,119,70,0.16341741181752623],[113,119,71,0.1667129713248499],[113,119,72,0.16984321693872553],[113,119,73,0.17279808618910675],[113,119,74,0.1755681882232592],[113,119,75,0.17814482374272364],[113,119,76,0.1805200260563121],[113,119,77,0.18268662367377753],[113,119,78,0.18463832482649614],[113,119,79,0.18636982426593204],[113,120,64,0.13227651559127163],[113,120,65,0.13631824592088346],[113,120,66,0.1402888646311162],[113,120,67,0.14417859519359794],[113,120,68,0.14797976717705352],[113,120,69,0.15168603242332934],[113,120,70,0.15528809457238135],[113,120,71,0.1587741212475206],[113,120,72,0.1621302624072761],[113,120,73,0.1653411611201451],[113,120,74,0.16839045573321648],[113,120,75,0.17126127244745742],[113,120,76,0.17393670735809305],[113,120,77,0.17640029706782084],[113,120,78,0.17863647703394855],[113,120,79,0.1806310268675289],[113,121,64,0.1237697351904298],[113,121,65,0.12780086407485136],[113,121,66,0.13178576363534528],[113,121,67,0.13571434302955515],[113,121,68,0.13958402980193918],[113,121,69,0.14339517682712583],[113,121,70,0.14714152779102485],[113,121,71,0.15081107039140204],[113,121,72,0.1543870934786236],[113,121,73,0.15784921122001402],[113,121,74,0.16117435173619213],[113,121,75,0.16433770777938178],[113,121,76,0.16731364715171515],[113,121,77,0.17007658069533338],[113,121,78,0.17260178582552063],[113,121,79,0.17486618372222457],[113,122,64,0.11535382083703088],[113,122,65,0.11936366419434816],[113,122,66,0.12335200596457117],[113,122,67,0.12730834861684115],[113,122,68,0.13123507421537614],[113,122,69,0.13513918345985362],[113,122,70,0.1390175473099902],[113,122,71,0.14285817158829248],[113,122,72,0.1466417640619637],[113,122,73,0.1503432452366344],[113,122,74,0.15393319887105195],[113,122,75,0.1573792584165935],[113,122,76,0.16064742578909177],[113,122,77,0.16325077967126117],[113,122,78,0.16391997123450935],[113,122,79,0.16454095918513773],[113,123,64,0.10708336598282155],[113,123,65,0.11105998271217865],[113,123,66,0.11503922872879907],[113,123,67,0.11901010409975478],[113,123,68,0.12297968795420355],[113,123,69,0.1269614209744186],[113,123,70,0.13095529809061776],[113,123,71,0.1349495089677286],[113,123,72,0.13892247813106526],[113,123,73,0.14284482784074498],[113,123,74,0.14668125839120993],[113,123,75,0.15039234077245894],[113,123,76,0.15326542504796645],[113,123,77,0.15533457884675506],[113,123,78,0.15893899248173185],[113,123,79,0.16255933372025833],[113,124,64,0.09900765772230653],[113,124,65,0.10293826444503966],[113,124,66,0.10689461541535586],[113,124,67,0.11086511187368468],[113,124,68,0.1148611668040774],[113,124,69,0.1189023057293529],[113,124,70,0.12299155475938993],[113,124,71,0.1271174165720751],[113,124,72,0.13384250346822824],[113,124,73,0.14123814636685594],[113,124,74,0.14861353798825538],[113,124,75,0.1559229223531665],[113,124,76,0.15998580630483822],[113,124,77,0.16322449527805227],[113,124,78,0.16644895964279602],[113,124,79,0.16970040356931113],[113,125,64,0.09116844668170565],[113,125,65,0.09503987842322213],[113,125,66,0.0994455089449691],[113,125,67,0.10650442489259393],[113,125,68,0.11365931057082529],[113,125,69,0.12093292962359695],[113,125,70,0.1283292676183639],[113,125,71,0.13583577095539562],[113,125,72,0.14342616974061523],[113,125,73,0.15106319153952782],[113,125,74,0.15870115841759094],[113,125,75,0.16530825804356236],[113,125,76,0.16825358585287806],[113,125,77,0.1711360145904685],[113,125,78,0.17400584073170264],[113,125,79,0.17691136457236806],[113,126,64,0.094574293212554],[113,126,65,0.1014617922086367],[113,126,66,0.10846640795639914],[113,126,67,0.11557157869696746],[113,126,68,0.12279299054505952],[113,126,69,0.13015830861968078],[113,126,70,0.13767402841144571],[113,126,71,0.1453279600083],[113,126,72,0.1530923775633792],[113,126,73,0.16092704656474585],[113,126,74,0.16878212040022067],[113,126,75,0.17387315073220466],[113,126,76,0.17650110593696403],[113,126,77,0.17906000348562323],[113,126,78,0.18160649110735405],[113,126,79,0.18419516953772677],[113,127,64,0.10388629257770358],[113,127,65,0.11076302886078469],[113,127,66,0.11777271022661373],[113,127,67,0.12489780136621643],[113,127,68,0.1321566614784911],[113,127,69,0.13958118527704222],[113,127,70,0.14718007818044676],[113,127,71,0.15494153904014651],[113,127,72,0.1628366811368576],[113,127,73,0.1708228205412934],[113,127,74,0.17884662257738004],[113,127,75,0.1823650508625408],[113,127,76,0.1847127901166424],[113,127,77,0.18698503339342853],[113,127,78,0.18924387353536698],[113,127,79,0.19154933854258704],[113,128,64,0.11351489607750512],[113,128,65,0.1203600860533243],[113,128,66,0.12735177501941908],[113,128,67,0.13447136894289233],[113,128,68,0.1417393043127859],[113,128,69,0.14919099561806015],[113,128,70,0.15683702626940813],[113,128,71,0.16466598422954148],[113,128,72,0.17264809999495717],[113,128,73,0.18073874398904874],[113,128,74,0.18851124420779303],[113,128,75,0.19076598241747916],[113,128,76,0.192872560810395],[113,128,77,0.194897210243468],[113,128,78,0.19690653098228825],[113,128,79,0.1989650666571627],[113,129,64,0.12342879801684617],[113,129,65,0.1302235802100813],[113,129,66,0.1371760326875701],[113,129,67,0.14426641375956273],[113,129,68,0.1515166569631582],[113,129,69,0.15896499987981566],[113,129,70,0.1666235711589438],[113,129,71,0.17448133662242238],[113,129,72,0.18250790285974322],[113,129,73,0.1906571745004536],[113,129,74,0.1969980189013542],[113,129,75,0.19905992915314685],[113,129,76,0.20096404635189355],[113,129,77,0.20278003987798418],[113,129,78,0.20457809345617792],[113,129,79,0.20642636178770266],[113,130,64,0.13357857065716144],[113,130,65,0.14030665460102576],[113,130,66,0.1472011803243242],[113,130,67,0.1542411589430727],[113,130,68,0.1614494986632045],[113,130,69,0.16886663862774212],[113,130,70,0.1765059582852046],[113,130,71,0.1843567968227663],[113,130,72,0.1923883771357542],[113,130,73,0.20055357957701242],[113,130,74,0.20532977190901366],[113,130,75,0.2072333923560929],[113,130,76,0.20897082307152517],[113,130,77,0.21061432929035226],[113,130,78,0.21223681917296436],[113,130,79,0.21390921301804036],[113,131,64,0.14389485101183414],[113,131,65,0.1505431893204814],[113,131,66,0.1573644206090756],[113,131,67,0.16433618869231287],[113,131,68,0.17148196089813092],[113,131,69,0.17884390523833626],[113,131,70,0.18643644363749834],[113,131,71,0.19424931508655932],[113,131,72,0.20225158415765063],[113,131,73,0.2103954967310559],[113,131,74,0.21350184874792555],[113,131,75,0.2152759806355803],[113,131,76,0.21687669248785724],[113,131,77,0.21837812384826485],[113,131,78,0.21985517028998872],[113,131,79,0.22138078977908518],[113,132,64,0.1542865742637239],[113,132,65,0.16084604621687698],[113,132,66,0.16758272232470317],[113,132,67,0.17447272483902054],[113,132,68,0.18153982707637503],[113,132,69,0.1888276877862435],[113,132,70,0.19635170613419597],[113,132,71,0.20410210886447694],[113,132,72,0.21204802050179739],[113,132,73,0.2196003008553386],[113,132,74,0.22151642767028087],[113,132,75,0.22318114855771531],[113,132,76,0.22466612223016846],[113,132,77,0.22604682000923212],[113,132,78,0.22739957229752852],[113,132,79,0.22879882887575337],[113,133,64,0.1646418103950062],[113,133,65,0.17110651769525514],[113,133,66,0.177750872016695],[113,133,67,0.18454926513846495],[113,133,68,0.19152568612005183],[113,133,69,0.19872530365862218],[113,133,70,0.20616460022958755],[113,133,71,0.21383447072524178],[113,133,72,0.22170434230919747],[113,133,73,0.22757520046339497],[113,133,74,0.22939926724635984],[113,133,75,0.23096514579066124],[113,133,76,0.23234530814051485],[113,133,77,0.23361618377694943],[113,133,78,0.23485516714697705],[113,133,79,0.23613784136653376],[113,134,64,0.1748499921681737],[113,134,65,0.1812147201403091],[113,134,66,0.18775995585552807],[113,134,67,0.1944581054890165],[113,134,68,0.201333344522799],[113,134,69,0.20843249704485695],[113,134,70,0.2157733392937707],[113,134,71,0.22334769534932347],[113,134,72,0.2311255948485726],[113,134,73,0.23546912945614884],[113,134,74,0.23720608305778296],[113,134,75,0.23867808425106538],[113,134,76,0.23995808145783407],[113,134,77,0.24112313707175603],[113,134,78,0.24225140430564712],[113,134,79,0.24341932187984067],[113,135,64,0.18481982316503975],[113,135,65,0.1910798052695476],[113,135,66,0.1975198260790046],[113,135,67,0.2041100525055137],[113,135,68,0.2108748518859614],[113,135,69,0.21786290508403616],[113,135,70,0.22509354132583664],[113,135,71,0.23255981458671962],[113,135,72,0.2402326862818003],[113,135,73,0.24332862299848657],[113,135,74,0.2449798579655329],[113,135,75,0.24635891092610487],[113,135,76,0.24753888678391284],[113,135,77,0.2485971845235295],[113,135,78,0.24961245117158165],[113,135,79,0.2506617543092174],[113,136,64,0.19447949668387735],[113,136,65,0.2006304848523039],[113,136,66,0.2069599334958536],[113,136,67,0.213435559308589],[113,136,68,0.22008195063400532],[113,136,69,0.22694985552256894],[113,136,70,0.2340604220932093],[113,136,71,0.24140823850799292],[113,136,72,0.24896552685949447],[113,136,73,0.25118251934085856],[113,136,74,0.252746651406994],[113,136,75,0.25403063070907084],[113,136,76,0.2551074202363626],[113,136,77,0.2560544864920578],[113,136,78,0.25695073814872443],[113,136,79,0.2578736828112379],[113,137,64,0.20377608697625585],[113,137,65,0.20981436281900395],[113,137,66,0.21602860217708628],[113,137,67,0.22238393421561856],[113,137,68,0.2289052112780832],[113,137,69,0.23564543015380887],[113,137,70,0.2426277962542053],[113,137,71,0.24984871032788325],[113,137,72,0.25721598547345315],[113,137,73,0.25904308626037276],[113,137,74,0.26051669583322723],[113,137,75,0.26170134228823333],[113,137,76,0.2626695733740942],[113,137,77,0.26349867971506075],[113,137,78,0.26426762570647616],[113,137,79,0.2650541967974448],[113,138,64,0.21267531860009675],[113,138,65,0.21859764435172996],[113,138,66,0.2246926768903972],[113,138,67,0.2309229152895326],[113,138,68,0.2373135237076202],[113,138,69,0.2439198707346276],[113,138,70,0.2507674031308799],[113,138,71,0.25785456354358127],[113,138,72,0.26515696315477477],[113,138,73,0.26690690156801544],[113,138,74,0.26828528351035535],[113,138,75,0.26936510479574327],[113,138,76,0.2702182518835538],[113,138,77,0.2709216197231274],[113,138,78,0.2715540425327459],[113,138,79,0.2721934379171158],[113,139,64,0.2211617154005523],[113,139,65,0.2269652235018334],[113,139,66,0.23293754485073795],[113,139,67,0.23903861234138393],[113,139,68,0.2452939461225363],[113,139,69,0.25176132899747716],[113,139,70,0.2584685587411488],[113,139,71,0.2654162828672195],[113,139,72,0.27258213837354545],[113,139,73,0.27475548623606866],[113,139,74,0.2760334423499703],[113,139,75,0.27700263402458436],[113,139,76,0.2777340680103708],[113,139,77,0.27830404421679195],[113,139,78,0.2787910942197434],[113,139,79,0.2792731287461289],[113,140,64,0.22923913061068082],[113,140,65,0.23492115084997664],[113,140,66,0.24076753331934136],[113,140,67,0.24673581793127478],[113,140,68,0.25285191315724714],[113,140,69,0.2591759623057667],[113,140,70,0.2657381356207675],[113,140,71,0.27254137044816923],[113,140,72,0.27956546336335025],[113,140,73,0.2825556887865291],[113,140,74,0.28372839951659323],[113,140,75,0.28458182709740687],[113,140,76,0.28518590578577413],[113,140,77,0.285616156650725],[113,140,78,0.2859506419527802],[113,140,79,0.286267122905961],[113,141,64,0.2369316595690186],[113,141,65,0.24248948271815238],[113,141,66,0.24820668456676084],[113,141,67,0.25403868888449965],[113,141,68,0.2600118047089187],[113,141,69,0.26618837645147203],[113,141,70,0.272600871907902],[113,141,71,0.27925451881580005],[113,141,72,0.28613133505643684],[113,141,73,0.29025981965382613],[113,141,74,0.2913238316313994],[113,141,75,0.29205811453748004],[113,141,76,0.2925313581550927],[113,141,77,0.2928181293158066],[113,141,78,0.2929958507023066],[113,141,79,0.29314197634742073],[113,142,64,0.2442849365796583],[113,142,65,0.2497155134606063],[113,142,66,0.25529990972158184],[113,142,67,0.26099179983426063],[113,142,68,0.2668178769652605],[113,142,69,0.2728424170654748],[113,142,70,0.2791000111243973],[113,142,71,0.28559809192610575],[113,142,72,0.2923208886158205],[113,142,73,0.297805534291873],[113,142,74,0.29875990044914236],[113,142,75,0.29937463874743087],[113,142,76,0.29971703516532966],[113,142,77,0.29986052525017987],[113,142,78,0.29988170644677714],[113,142,79,0.29985753954462363],[113,143,64,0.25135318340364293],[113,143,65,0.25665312577043603],[113,143,66,0.26210066407420796],[113,143,67,0.2676481680918212],[113,143,68,0.2733226688234934],[113,143,69,0.27919000080306666],[113,143,70,0.2852866114064736],[113,143,71,0.2916219742335443],[113,143,72,0.29818245489972733],[113,143,73,0.3049350509566497],[113,143,74,0.3059713961465565],[113,143,75,0.30646956199579806],[113,143,76,0.306684961366858],[113,143,77,0.3066897133905222],[113,143,78,0.3065593830567044],[113,143,79,0.3063702176381315],[113,144,64,0.2581492842031694],[113,144,65,0.26331600860999305],[113,144,66,0.2686234424681622],[113,144,67,0.2740231847884118],[113,144,68,0.27954255287579316],[113,144,69,0.2852484956583834],[113,144,70,0.2911789849552065],[113,144,71,0.29734531367968386],[113,144,72,0.30373585983371354],[113,144,73,0.3103197317672334],[113,144,74,0.31291760281782566],[113,144,75,0.31330263053092966],[113,144,76,0.3133956168046241],[113,144,77,0.313267188203423],[113,144,78,0.3129916713830504],[113,144,79,0.3126443737519694],[113,145,64,0.2646758427828766],[113,145,65,0.26970775019203064],[113,145,66,0.27487283741550245],[113,145,67,0.28012254301592016],[113,145,68,0.2854844184435981],[113,145,69,0.2910260279418191],[113,145,70,0.2967864840447884],[113,145,71,0.3027786303974673],[113,145,72,0.30899269122240147],[113,145,73,0.31539980958369923],[113,145,74,0.31956625837657643],[113,145,75,0.3198414805833732],[113,145,76,0.3198167469873009],[113,145,77,0.31956102903650496],[113,145,78,0.3191472167983801],[113,145,79,0.31864945309513176],[113,146,64,0.2709371214313102],[113,146,65,0.27583343202702065],[113,146,66,0.28085476265714915],[113,146,67,0.28595305527675446],[113,146,68,0.291156040871343],[113,146,69,0.2965313577751663],[113,146,70,0.3021188340761381],[113,146,71,0.3079325564405938],[113,146,72,0.3139643929743928],[113,146,73,0.3201874127462747],[113,146,74,0.3258869396406129],[113,146,75,0.3260558212931768],[113,146,76,0.3259183893810318],[113,146,77,0.32554181118144637],[113,146,78,0.32499734994070684],[113,146,79,0.3243577615493327],[113,147,64,0.27693813396034633],[113,147,65,0.2816987275447049],[113,147,66,0.286575564135911],[113,147,67,0.2915217825345269],[113,147,68,0.2965652354391398],[113,147,69,0.30177306709910034],[113,147,70,0.3071853669800826],[113,147,71,0.3128171275167198],[113,147,72,0.3186616292892404],[113,147,73,0.32469373097847504],[113,147,74,0.33087305549914525],[113,147,75,0.3319177918208148],[113,147,76,0.3316730978445793],[113,147,77,0.3311826841273932],[113,147,78,0.3305160066063818],[113,147,79,0.3297442166851432],[113,148,64,0.2826838650649783],[113,148,65,0.28730912858328417],[113,148,66,0.29204125905871064],[113,148,67,0.29683529093982525],[113,148,68,0.3017191377264263],[113,148,69,0.30675887134218893],[113,148,70,0.311994373319761],[113,148,71,0.3174411858318891],[113,148,72,0.32309374943386493],[113,148,73,0.3289285538537994],[113,148,74,0.3349071936921139],[113,148,75,0.3374022653624141],[113,148,76,0.33705613675831014],[113,148,77,0.336459444977824],[113,148,78,0.335679670626479],[113,148,79,0.33478615153757235],[113,149,64,0.28817861626192975],[113,149,65,0.29266930002339964],[113,149,66,0.2972569033406837],[113,149,67,0.3018990365370086],[113,149,68,0.3066236107427204],[113,149,69,0.31149505507253966],[113,149,70,0.316552573411049],[113,149,71,0.32181189435350754],[113,149,72,0.32726835339339344],[113,149,73,0.33289989647285645],[113,149,74,0.3386699972378335],[113,149,75,0.3424870999293926],[113,149,76,0.3420456447847242],[113,149,77,0.3413506070614445],[113,149,78,0.3404673398653191],[113,149,79,0.33946317140252275],[113,150,64,0.2934254786569531],[113,150,65,0.29778256283305576],[113,150,66,0.3022260877103924],[113,150,67,0.30671687824224425],[113,150,68,0.31128277912381586],[113,150,69,0.31598603193355906],[113,150,70,0.32086470775873144],[113,150,71,0.32593436277726345],[113,150,72,0.3311909586594386],[113,150,73,0.33661371258027156],[113,150,74,0.3421678696773158],[113,150,75,0.34715333576876045],[113,150,76,0.3466227682091003],[113,150,77,0.34583746377154856],[113,150,78,0.34486051547477786],[113,150,79,0.3437570638998199],[113,151,64,0.29842593278911406],[113,151,65,0.3026505057857196],[113,151,66,0.30695056274900206],[113,151,67,0.3112907193742342],[113,151,68,0.3156986906807344],[113,151,69,0.3202340291522195],[113,151,70,0.3249332470912801],[113,151,71,0.3298113854671463],[113,151,72,0.3348647684018441],[113,151,73,0.3400736953338235],[113,151,74,0.3454050641926737],[113,151,75,0.35081491912182516],[113,151,76,0.3507717638166249],[113,151,77,0.3499041476705668],[113,151,78,0.34884321453309375],[113,151,79,0.3476517625346112],[113,152,64,0.3031795758084557],[113,152,65,0.30727272611963546],[113,152,66,0.31142999313960307],[113,152,67,0.31562027801998066],[113,152,68,0.3198711055873351],[113,152,69,0.32423889690454266],[113,152,70,0.3287582222712688],[113,152,71,0.33344329163003644],[113,152,72,0.33829054126081504],[113,152,73,0.34328116592838753],[113,152,74,0.3483835903139333],[113,152,75,0.3535558737440143],[113,152,76,0.3544800712700993],[113,152,77,0.3535376849003314],[113,152,78,0.352402006195179],[113,152,79,0.3511333639799971],[113,153,64,0.30768397625853633],[113,153,65,0.31164669941928025],[113,153,66,0.31566184141323006],[113,153,67,0.31970298652582074],[113,153,68,0.32379741349790514],[113,153,69,0.32799804282596023],[113,153,70,0.3323371743589354],[113,153,71,0.336827907984428],[113,153,72,0.34146656299233147],[113,153,73,0.34623505027158646],[113,153,74,0.3511031916612563],[113,153,75,0.35603098093848984],[113,153,76,0.35773835495690665],[113,153,77,0.3567280449407992],[113,153,78,0.35552607147981646],[113,153,79,0.35419019929674334],[113,154,64,0.3119346567591936],[113,154,65,0.31576777902160386],[113,154,66,0.3196413814973592],[113,154,67,0.3235340204206607],[113,154,68,0.3274726789002133],[113,154,69,0.33150649196570053],[113,154,70,0.33566522511507224],[113,154,71,0.3399606341886474],[113,154,72,0.3443887202027443],[113,154,73,0.34893194390852833],[113,154,74,0.35356139487227206],[113,154,75,0.35823891001551744],[113,154,76,0.36054051527731523],[113,154,77,0.3594681857626057],[113,154,78,0.358207286819665],[113,154,79,0.35681295930289],[113,155,64,0.3159252049171968],[113,155,65,0.31962932527997084],[113,155,66,0.3233618424004342],[113,155,67,0.32710645710353636],[113,155,68,0.3308898150320888],[113,155,69,0.3347570725040694],[113,155,70,0.3387352682460162],[113,155,71,0.34283463130715564],[113,155,72,0.3470506764182117],[113,155,73,0.35136626539937044],[113,155,74,0.3557536298674652],[113,155,75,0.36017635061724407],[113,155,76,0.36288366934799743],[113,155,77,0.3617540944214734],[113,155,78,0.3604403315023098],[113,155,79,0.35899487430670457],[113,156,64,0.3196475128323463],[113,156,65,0.32322296505667325],[113,156,66,0.3268146824014405],[113,156,67,0.33041156466051347],[113,156,68,0.334039886719751],[113,156,69,0.33774072757862994],[113,156,70,0.3415382817171882],[113,156,71,0.34544112361334156],[113,156,72,0.3494441507502962],[113,156,73,0.3535304983648335],[113,156,74,0.35767342161375876],[113,156,75,0.3618381409447658],[113,156,76,0.36476810109390484],[113,156,77,0.36358482314423624],[113,156,78,0.3622228191337716],[113,156,79,0.360731948419807],[113,157,64,0.32309214561501004],[113,157,65,0.3265389818614764],[113,157,66,0.3299899941576894],[113,157,67,0.3334392212174584],[113,157,68,0.33691254253487446],[113,157,69,0.3404469536008282],[113,157,70,0.3440637614934069],[113,157,71,0.34776981405465923],[113,157,72,0.3515592994416755],[113,157,73,0.35541552243228036],[113,157,74,0.359312653558663],[113,157,75,0.36321744723717],[113,157,76,0.36619718069941093],[113,157,77,0.3649625209581277],[113,157,78,0.36355545326100425],[113,157,79,0.362023248674532],[113,158,64,0.3262488393878467],[113,158,65,0.3295668371087131],[113,158,66,0.3328770411965978],[113,158,67,0.33617846528523354],[113,158,68,0.33949657671454675],[113,158,69,0.34286436548842797],[113,158,70,0.3463002771039594],[113,158,71,0.3498094137409136],[113,158,72,0.3533852006053925],[113,158,73,0.3570110333384295],[113,158,74,0.3606619029244806],[113,158,75,0.36430599461734564],[113,158,76,0.36717725338569107],[113,158,77,0.36589246091681443],[113,158,78,0.36444220729679183],[113,158,79,0.36287124918055413],[113,159,64,0.329107129308737],[113,159,65,0.332295823028108],[113,159,66,0.33546492631753766],[113,159,67,0.33861817761152735],[113,159,68,0.34178062134305504],[113,159,69,0.3449813892903748],[113,159,70,0.348236149477308],[113,159,71,0.3515482858581326],[113,159,72,0.35491044250656606],[113,159,73,0.3583060524734144],[113,159,74,0.36171084807328824],[113,159,75,0.3650943494329113],[113,159,76,0.36771749747486493],[113,159,77,0.3663830629776305],[113,159,78,0.36489052889828166],[113,159,79,0.363282230569632],[113,160,64,0.3316571082245006],[113,160,65,0.33471584783562025],[113,160,66,0.33774339249860125],[113,160,67,0.34074789511970616],[113,160,68,0.3437539693576812],[113,160,69,0.34678708274028996],[113,160,70,0.3498602515452557],[113,160,71,0.3529752044596885],[113,160,72,0.35612381577794516],[113,160,73,0.35928952618563137],[113,160,74,0.3624487481797007],[113,160,75,0.36557225323792053],[113,160,76,0.36782975169338317],[113,160,77,0.3664459125855012],[113,160,78,0.36491156896009874],[113,160,79,0.36326673499501955],[113,161,64,0.33389031664555896],[113,161,65,0.3368183538498463],[113,161,66,0.3397037569801136],[113,161,67,0.34255875758946575],[113,161,68,0.3454075290121121],[113,161,69,0.3482720843424401],[113,161,70,0.35116293217913447],[113,161,71,0.35408022864292577],[113,161,72,0.3570151100098701],[113,161,73,0.35995101520746964],[113,161,74,0.36286499547955736],[113,161,75,0.3657290085819456],[113,161,76,0.36752831165732636],[113,161,77,0.3660957750199501],[113,161,78,0.36452043539438495],[113,161,79,0.3628400769734267],[113,162,64,0.33580076481933513],[113,162,65,0.33859736932597884],[113,162,66,0.34133997928096904],[113,162,67,0.3440445878157455],[113,162,68,0.3467349105097733],[113,162,69,0.3494296916688075],[113,162,70,0.3521370640901962],[113,162,71,0.3548556926825843],[113,162,72,0.3575760152102338],[113,162,73,0.3602814746076706],[113,162,74,0.362949740397802],[113,162,75,0.36555391679680727],[113,162,76,0.36682969546985267],[113,162,77,0.3653506055615101],[113,162,78,0.36373647188231584],[113,162,79,0.3620229103815066],[113,163,64,0.3373860877760848],[113,163,65,0.34005069487419337],[113,163,66,0.3426498639966168],[113,163,67,0.3452031060725937],[113,163,68,0.34773364560661646],[113,163,69,0.3502570696290945],[113,163,70,0.35277921640418586],[113,163,71,0.3552973127631355],[113,163,72,0.3578011286922485],[113,163,73,0.3602741247281297],[113,163,74,0.3626945898993564],[113,163,75,0.3650367679990985],[113,163,76,0.36575237834745766],[113,163,77,0.3642315555342362],[113,163,78,0.36258356179611645],[113,163,79,0.36084185194713486],[113,164,64,0.3386446061994808],[113,164,65,0.34117659379899556],[113,164,66,0.3436313903953898],[113,164,67,0.34603190241280585],[113,164,68,0.3484008069709934],[113,164,69,0.35075052936941825],[113,164,70,0.35308461346552],[113,164,71,0.3553988533182547],[113,164,72,0.3576823630277004],[113,164,73,0.3599186403007999],[113,164,74,0.3620866216782795],[113,164,75,0.3641617273989969],[113,164,76,0.3643229650923478],[113,164,77,0.36276917327052005],[113,164,78,0.3610963091631294],[113,164,79,0.35933559595360887],[113,165,64,0.3395490195299281],[113,165,65,0.34194495720530593],[113,165,66,0.34425154925496876],[113,165,67,0.34649501424930473],[113,165,68,0.34869741768482015],[113,165,69,0.35086800005613444],[113,165,70,0.3530080179249924],[113,165,71,0.35511186580659104],[113,165,72,0.3571680575179803],[113,165,73,0.359160202210112],[113,165,74,0.3610679732196769],[113,165,75,0.36286806791390125],[113,165,76,0.36261369439472485],[113,165,77,0.3610385981901479],[113,165,78,0.3593523971766097],[113,165,79,0.35758397012368165],[113,166,64,0.3400660987293681],[113,166,65,0.34231905426710557],[113,166,66,0.3444701345334542],[113,166,67,0.34654875826137677],[113,166,68,0.34857632076087663],[113,166,69,0.3505589077410532],[113,166,70,0.35249556057405484],[113,166,71,0.3543793789340556],[113,166,72,0.3561984056881115],[113,166,73,0.35793650785843034],[113,166,74,0.3595742520122827],[113,166,75,0.3610897724678661],[113,166,76,0.36070184614021994],[113,166,77,0.35911824400925957],[113,166,78,0.3574307965011708],[113,166,79,0.35566591891859095],[113,167,64,0.3401711367290957],[113,167,65,0.34227148169041754],[113,167,66,0.34425711384503704],[113,167,67,0.3461604964181307],[113,167,68,0.3480023066573207],[113,167,69,0.34978557173775665],[113,167,70,0.3515072606314508],[113,167,71,0.35315935353072553],[113,167,72,0.35472961931980107],[113,167,73,0.3562023912585968],[113,167,74,0.3575593394842086],[113,167,75,0.3587802389612516],[113,167,76,0.3586453917040775],[113,167,77,0.357066110834429],[113,167,78,0.3553890044173984],[113,167,79,0.35363791384035537],[113,168,64,0.33984667455899026],[113,168,65,0.3417828559753539],[113,168,66,0.3435912777082281],[113,168,67,0.34530723877707226],[113,168,68,0.34695066517709183],[113,168,69,0.3485216959441458],[113,168,70,0.3500154429272946],[113,168,71,0.35142300946647315],[113,168,72,0.3527321475650371],[113,168,73,0.35392791642674837],[113,168,74,0.3549933412479454],[113,168,75,0.3559100711731784],[113,168,76,0.356485345209635],[113,168,77,0.3549223209205296],[113,168,78,0.35326577442190005],[113,168,79,0.3515368832680484],[113,169,64,0.3390811013786199],[113,169,65,0.3408403697620728],[113,169,66,0.3424587440317684],[113,169,67,0.3439740928444399],[113,169,68,0.345405575567701],[113,169,69,0.3467506911525573],[113,169,70,0.34800298072339164],[113,169,71,0.34915297528928235],[113,169,72,0.35018871875003355],[113,169,73,0.35109629662944425],[113,169,74,0.35186036975202956],[113,169,75,0.3524647120865908],[113,169,76,0.35289275199171855],[113,169,77,0.352711778969233],[113,169,78,0.3510839505461567],[113,169,79,0.34938322444628533],[113,170,64,0.3378672138988847],[113,170,65,0.3394363061000233],[113,170,66,0.34085141957538617],[113,170,67,0.34215266898325425],[113,170,68,0.343358451857291],[113,170,69,0.3444639523978356],[113,170,70,0.3454614944008856],[113,170,71,0.34634139591338176],[113,170,72,0.3470923440058114],[113,170,73,0.34770178099079246],[113,170,74,0.34815630167124456],[113,170,75,0.34844206119622667],[113,170,76,0.34854519310057125],[113,170,77,0.34845223710642503],[113,170,78,0.3481505762709213],[113,170,79,0.34718377458334493],[113,171,64,0.3362007344858317],[113,171,65,0.3375665099503753],[113,171,66,0.33876541771532626],[113,171,67,0.33983944122039583],[113,171,68,0.34080624280137495],[113,171,69,0.3416590907435284],[113,171,70,0.3423895054448272],[113,171,71,0.3429879978207854],[113,171,72,0.3434442822284118],[113,171,73,0.34374750800806725],[113,171,74,0.34388650963593026],[113,171,75,0.3438500754590572],[113,171,76,0.34362723496691217],[113,171,77,0.3432075645381862],[113,171,78,0.3425815115900346],[113,171,79,0.3417407370489377],[113,172,64,0.33407878716081935],[113,172,65,0.3352288161514329],[113,172,66,0.3361994317619287],[113,172,67,0.33703406271879693],[113,172,68,0.3377496857268064],[113,172,69,0.3383381188159673],[113,172,70,0.3387905450624022],[113,172,71,0.33909811114468447],[113,172,72,0.33925196577441435],[113,172,73,0.3392433254248789],[113,172,74,0.3390635677994699],[113,172,75,0.3387043534431225],[113,172,76,0.33815777586322643],[113,172,77,0.33741654049178665],[113,172,78,0.3364741727885698],[113,172,79,0.3353252557560614],[113,173,64,0.3314983306332875],[113,173,65,0.33242143299610155],[113,173,66,0.3331530629931529],[113,173,67,0.3337376350947167],[113,173,68,0.3341915134706671],[113,173,69,0.33450558930446794],[113,173,70,0.33467121667756633],[113,173,71,0.3346806479068867],[113,173,72,0.3345268861991605],[113,173,73,0.3342035758108631],[113,173,74,0.3337049306412379],[113,173,75,0.3330257021273089],[113,173,76,0.33216118725174976],[113,173,77,0.3311072774177122],[113,173,78,0.32986054888978306],[113,173,79,0.3284183954479076],[113,174,64,0.32845454742434094],[113,174,65,0.329141280489456],[113,174,66,0.3296251024841033],[113,174,67,0.3299509306733882],[113,174,68,0.33013461352218837],[113,174,69,0.33016668555357626],[113,174,70,0.33003921145003073],[113,174,71,0.329746035584519],[113,174,72,0.3292824392462375],[113,174,73,0.3286448470964466],[113,174,74,0.3278305843005963],[113,174,75,0.3268376857017996],[113,174,76,0.32566475831907776],[113,174,77,0.32431089837249877],[113,174,78,0.32277566395716356],[113,174,79,0.3210591044098808],[113,175,64,0.32494710225127027],[113,175,65,0.32538996780466123],[113,175,66,0.32561917720920724],[113,175,67,0.32567964904868013],[113,175,68,0.3255868280890776],[113,175,69,0.32533148979336973],[113,175,70,0.32490696333310454],[113,175,71,0.324309174144454],[113,175,72,0.3235360979732319],[113,175,73,0.32258727731223835],[113,175,74,0.32146340222336744],[113,175,75,0.3201659574310451],[113,175,76,0.31869693746610395],[113,175,77,0.31705863153120445],[113,175,78,0.31525347965132733],[113,175,79,0.3132840015668754],[113,176,64,0.3210053231523255],[113,176,65,0.32119829788402476],[113,176,66,0.3211674715002147],[113,176,67,0.32095722503932317],[113,176,68,0.3205826947837359],[113,176,69,0.3200354815294359],[113,176,70,0.319310713131081],[113,176,71,0.3184068615188719],[113,176,72,0.3173249883731423],[113,176,73,0.3160680675138263],[113,176,74,0.3146403865615169],[113,176,75,0.3130470302945353],[113,176,76,0.31129344799149283],[113,176,77,0.30938510691245247],[113,176,78,0.30732723393518213],[113,176,79,0.30512464722753496],[113,177,64,0.31666838354115184],[113,177,65,0.3166071827891227],[113,177,66,0.316312562316851],[113,177,67,0.31582780665286786],[113,177,68,0.3151678188333172],[113,177,69,0.3143255771740066],[113,177,70,0.31329850363174205],[113,177,71,0.3120880401545885],[113,177,72,0.31069868379405613],[113,177,73,0.30913711368805746],[113,177,74,0.30741141304287517],[113,177,75,0.3055303890825917],[113,177,76,0.30350299377093126],[113,177,77,0.3013378479446677],[113,177,78,0.29904287133108176],[113,177,79,0.2966250207560365],[113,178,64,0.3119773104006219],[113,178,65,0.31165980731160237],[113,178,66,0.3110997750415509],[113,178,67,0.3103388490011114],[113,178,68,0.30939175878897496],[113,178,69,0.30825336782637003],[113,178,70,0.3069238353430849],[113,178,71,0.30540794093865475],[113,178,72,0.3037139101501777],[113,178,73,0.3018523475538153],[113,178,74,0.2998352810961765],[113,178,75,0.2976753211639895],[113,178,76,0.2953849377079318],[113,178,77,0.2929758585408208],[113,178,78,0.2904585917332181],[113,178,79,0.2878420748327629],[113,179,64,0.3069742707685215],[113,179,65,0.30640082227537113],[113,179,66,0.305576266946893],[113,179,67,0.30454006921191973],[113,179,68,0.30330683289063],[113,179,69,0.30187375695724383],[113,179,70,0.3002441161658347],[113,179,71,0.29842632713539335],[113,179,72,0.29643256868198387],[113,179,73,0.29427752553208497],[113,179,74,0.2919772596671166],[113,179,75,0.28954821333340774],[113,179,76,0.28700634753041127],[113,179,77,0.2843664195645588],[113,179,78,0.2816414030287123],[113,179,79,0.27884205333980144],[113,180,64,0.30170185495397966],[113,180,65,0.30087553557114705],[113,180,66,0.2997901114034741],[113,180,67,0.298482406755868],[113,180,68,0.29696693738733915],[113,180,69,0.29524361900649515],[113,180,70,0.2933191437590002],[113,180,71,0.2912057858765178],[113,180,72,0.288919824332481],[113,180,73,0.2864801045962675],[113,180,74,0.2839067442653204],[113,180,75,0.2812199871117059],[113,180,76,0.27843920982986164],[113,180,77,0.27558208551787167],[113,180,78,0.27266390766760173],[113,180,79,0.26969707818183664],[113,181,64,0.29620235607471007],[113,181,65,0.2951291004845561],[113,181,66,0.293789382368608],[113,181,67,0.2922169887122179],[113,181,68,0.2904263763276527],[113,181,69,0.2884204784075442],[113,181,70,0.2862096201223471],[113,181,71,0.28381006675208376],[113,181,72,0.2812422593255636],[113,181,73,0.2785292046417488],[113,181,74,0.27569502494878556],[113,181,75,0.2727636722869638],[113,181,76,0.2697578122250631],[113,181,77,0.26669788143732476],[113,181,78,0.2636013232830519],[113,181,79,0.2604820052651133],[113,182,64,0.2905170454836126],[113,182,65,0.28920570085479225],[113,182,66,0.28762123867034706],[113,182,67,0.28579409947157075],[113,182,68,0.2837387023063386],[113,182,69,0.28146120852361545],[113,182,70,0.2789756978922008],[113,182,71,0.27630246702421063],[113,182,72,0.27346609150919204],[113,182,73,0.2704936569937612],[113,182,74,0.26741316493631667],[113,182,75,0.2642521184725417],[113,182,76,0.2610362935251865],[113,182,77,0.2577886999833679],[113,182,78,0.25452873746490695],[113,182,79,0.25127154986281974],[113,183,64,0.28468544363289205],[113,183,65,0.2831477325780149],[113,183,66,0.28133100757706536],[113,183,67,0.2792621543474235],[113,183,68,0.2769555676283893],[113,183,69,0.2744207499560699],[113,183,70,0.27167555782362435],[113,183,71,0.26874426296477305],[113,183,72,0.26565545700908627],[113,183,73,0.26244013866022736],[113,183,74,0.25912998953163024],[113,183,75,0.2557558444576675],[113,183,76,0.2523463617728556],[113,183,77,0.2489268987195272],[113,183,78,0.24551859680845026],[113,183,79,0.242137681620053],[113,184,64,0.27874458590562257],[113,184,65,0.2769949809491697],[113,184,66,0.2749612671212629],[113,184,67,0.272666676546799],[113,184,68,0.27012558532938147],[113,184,69,0.26735084766438244],[113,184,70,0.26436401691370026],[113,184,71,0.26119318680360765],[113,184,72,0.25787075672886656],[113,184,73,0.25443139193256603],[113,184,74,0.25091018504610546],[113,184,75,0.2473410251371589],[113,184,76,0.24375518006713467],[113,184,77,0.24018009760624462],[113,184,78,0.2366384303967322],[113,184,79,0.2331472894962355],[113,185,64,0.2727282829280596],[113,185,65,0.2707837933172677],[113,185,66,0.2685509266268093],[113,185,67,0.2660492769306571],[113,185,68,0.26329319947250984],[113,185,69,0.2602988063204275],[113,185,70,0.25709116660695625],[113,185,71,0.25370194876470004],[113,185,72,0.2501670662295511],[113,185,73,0.24652452894178092],[113,185,74,0.24281250742003366],[113,185,75,0.2390676158292007],[113,185,76,0.23532342009884674],[113,185,77,0.2316091767770504],[113,185,78,0.22794880792829042],[113,185,79,0.2243601170066614],[113,186,64,0.2666663748608005],[113,186,65,0.26454624651214786],[113,186,66,0.26213430487139866],[113,186,67,0.2594466359777214],[113,186,68,0.25649756412681074],[113,186,69,0.2533062633064455],[113,186,70,0.2499010405146639],[113,186,71,0.24631680366411937],[113,186,72,0.24259260852479647],[113,186,73,0.23876942078930868],[113,186,74,0.2348881002643498],[113,186,75,0.23098761382329186],[113,186,76,0.22710348337565997],[113,186,77,0.22326647472213176],[113,186,78,0.21950153277199927],[113,186,79,0.21582696820711655],[113,187,64,0.2605839791549692],[113,187,65,0.25830930848729455],[113,187,66,0.2557402053024295],[113,187,67,0.25288948735263117],[113,187,68,0.2497714304201589],[113,187,69,0.24640797875829712],[113,187,70,0.2428303110767928],[113,187,71,0.23907616154705075],[113,187,72,0.23518728934014543],[113,187,73,0.23120717089389836],[113,187,74,0.22717892207801424],[113,187,75,0.22314345704626906],[113,187,76,0.21913789017372107],[113,187,77,0.2151941870778497],[113,187,78,0.21133807031866872],[113,187,79,0.20758818496774423],[113,188,64,0.2545007312485544],[113,188,65,0.25209399361093887],[113,188,66,0.2493909877124229],[113,188,67,0.24640160246848286],[113,188,68,0.2431400410521034],[113,188,69,0.23963064205091528],[113,188,70,0.23590701459626356],[113,188,71,0.2320092418496032],[113,188,72,0.2279812944022054],[113,188,73,0.22386867222458856],[113,188,74,0.21971628243773875],[113,188,75,0.21556655978991526],[113,188,76,0.21145783632333887],[113,188,77,0.20742296630731916],[113,188,78,0.20348821210178644],[113,188,79,0.1996723962012743],[113,189,64,0.24843001767060957],[113,189,65,0.2459145110292764],[113,189,66,0.24310163577232016],[113,189,67,0.23999877542775386],[113,189,68,0.23662003164840878],[113,189,69,0.23299169412412932],[113,189,70,0.2291493040827616],[113,189,71,0.22513477058702958],[113,189,72,0.22099374835001148],[113,189,73,0.21677324812845908],[113,189,74,0.2125194870093648],[113,189,75,0.20827598551176246],[113,189,76,0.20408191802096687],[113,189,77,0.19997072265937102],[113,189,78,0.19596897627988455],[113,189,79,0.19209553984877697],[113,190,64,0.24237820101585678],[113,190,65,0.23977740551977383],[113,190,66,0.23687881981610656],[113,190,67,0.23368780772285833],[113,190,68,0.23021833833981156],[113,190,69,0.2264981650527647],[113,190,70,0.22256422935615555],[113,190,71,0.21845972009197107],[113,190,72,0.2142314348941188],[113,190,73,0.20992737650846544],[113,190,74,0.20559459129204127],[113,190,75,0.20127725679930758],[113,190,76,0.19701502495638182],[113,190,77,0.19284162690879147],[113,190,78,0.18878374520803654],[113,190,79,0.18486015858067148],[113,191,64,0.23634383624946023],[113,191,65,0.23368069024938876],[113,191,66,0.23071995426842595],[113,191,67,0.22746549207838707],[113,191,68,0.2239311109522267],[113,191,69,0.22014552627533948],[113,191,70,0.21614654387776325],[113,191,71,0.21197809085451627],[113,191,72,0.20768757788936193],[113,191,73,0.20332349716142384],[113,191,74,0.19893326307737946],[113,191,75,0.19456130267686325],[113,191,76,0.190247402152262],[113,191,77,0.1860253155093403],[113,191,78,0.18192164097546276],[113,191,79,0.17795497034123176],[113,192,64,0.23031687780282964],[113,192,65,0.22761297085360094],[113,192,66,0.22461224910965874],[113,192,67,0.2213175948229354],[113,192,68,0.21774263120591644],[113,192,69,0.21391655691224504],[113,192,70,0.20987753780270094],[113,192,71,0.2056697350515998],[113,192,72,0.20134068303600652],[113,192,73,0.1969389021502523],[113,192,74,0.19251175368710838],[113,192,75,0.18810354353463823],[113,192,76,0.18375388103421042],[113,192,77,0.1794962989333736],[113,192,78,0.17535713995067348],[113,192,79,0.1713547150516063],[113,193,64,0.2242778769253432],[113,193,65,0.2215525602565035],[113,193,66,0.2185317547794196],[113,193,67,0.21521783618837706],[113,193,68,0.2116242353360255],[113,193,69,0.20778022362603307],[113,193,70,0.2037238967773459],[113,193,71,0.19949922139547047],[113,193,72,0.1951534399800106],[113,193,73,0.19073470915664092],[113,193,74,0.18628997814295814],[113,193,75,0.18186311406981573],[113,193,76,0.17749328038086531],[113,193,77,0.17321357412603317],[113,193,78,0.16904992755292464],[113,193,79,0.16502027898716673],[113,194,64,0.21819716876381084],[113,194,65,0.21546658365983745],[113,194,66,0.21244239992958827],[113,194,67,0.20912686794851837],[113,194,68,0.20553324056638048],[113,194,69,0.20169057350329989],[113,194,70,0.197636586042447],[113,194,71,0.1934147409794988],[113,194,72,0.18907168464610694],[113,194,73,0.18465491784008328],[113,194,74,0.18021070452115642],[113,194,75,0.17578222474879557],[113,194,76,0.1714079779453978],[113,194,77,0.167120442166997],[113,194,78,0.16294499465787024],[113,194,79,0.15889909855847761],[113,195,64,0.2120011434803992],[113,195,65,0.20931060867800316],[113,195,66,0.20629563137696683],[113,195,67,0.2029919306116419],[113,195,68,0.19941262916828154],[113,195,69,0.19558646123840745],[113,195,70,0.1915506419861734],[113,195,71,0.1873479878055532],[113,195,72,0.18302439523755604],[113,195,73,0.1786265483896164],[113,195,74,0.1741998615599826],[113,195,75,0.16978666339314738],[113,195,76,0.16542462850497916],[113,195,77,0.16114546212107705],[113,195,78,0.1569738428722563],[113,195,79,0.15292662849035557],[113,196,64,0.2023069123225605],[113,196,65,0.20305513361736013],[113,196,66,0.2000605825591081],[113,196,67,0.19678063439567417],[113,196,68,0.19322838159595787],[113,196,69,0.1894322460609821],[113,196,70,0.1854289115782255],[113,196,71,0.18126048996622549],[113,196,72,0.17697204319023305],[113,196,73,0.17260933155908295],[113,196,74,0.16821679454495836],[113,196,75,0.16383577039650504],[113,196,76,0.15950296033418454],[113,196,77,0.1552491427276854],[113,196,78,0.15109814226181514],[113,196,79,0.14706605870294803],[113,197,64,0.19254863480360324],[113,197,65,0.19428789760176893],[113,197,66,0.1937410939358425],[113,197,67,0.1904997150455493],[113,197,68,0.18698992214589616],[113,197,69,0.1832397945611773],[113,197,70,0.17928539667475646],[113,197,71,0.1751680045481967],[113,197,72,0.1709316820532839],[113,197,73,0.16662108000355824],[113,197,74,0.16227946464327997],[113,197,75,0.15794698148710445],[113,197,76,0.15365916012908531],[113,197,77,0.14944566525772626],[113,197,78,0.14532929872781566],[113,197,79,0.1413252571529907],[113,198,64,0.18275641239832058],[113,198,65,0.18450903744578057],[113,198,66,0.18612907925879568],[113,198,67,0.18415138519043558],[113,198,68,0.1807016360624393],[113,198,69,0.177015413294711],[113,198,70,0.17312802357671747],[113,198,71,0.16907971567391464],[113,198,72,0.16491332703268294],[113,198,73,0.16067214906830457],[113,198,74,0.15639801727292774],[113,198,75,0.15212963192431653],[113,198,76,0.14790111481043222],[113,198,77,0.14374080701226097],[113,198,78,0.13967031241082625],[113,198,79,0.13570379120725998],[113,199,64,0.1729636477921566],[113,199,65,0.1747220679702761],[113,199,66,0.17634227303121705],[113,199,67,0.1777314675488124],[113,199,68,0.17436067676083014],[113,199,69,0.1707573571472489],[113,199,70,0.16695589131457844],[113,199,71,0.16299527280629858],[113,199,72,0.158916843933358],[113,199,73,0.15476224629007496],[113,199,74,0.150571589823689],[113,199,75,0.14638184598078643],[113,199,76,0.14222547009970157],[113,199,77,0.1381292578574022],[113,199,78,0.13411344021526547],[113,199,79,0.13019102094366264],[113,200,64,0.16320523186225736],[113,200,65,0.16496013328464085],[113,200,66,0.16657200564090352],[113,200,67,0.1680345906177865],[113,200,68,0.16795903896090855],[113,200,69,0.16445801150166597],[113,200,70,0.1607615656934806],[113,200,71,0.15690719560263552],[113,200,72,0.15293445986310172],[113,200,73,0.14888303924401475],[113,200,74,0.14479100443945],[113,200,75,0.14069329929471222],[113,200,76,0.13662044434408224],[113,200,77,0.1325974651897197],[113,200,78,0.12864304990303985],[113,200,79,0.12476893928136062],[113,201,64,0.15351588299629831],[113,201,65,0.15525689801494227],[113,201,66,0.1568510731737872],[113,201,67,0.15828962371186941],[113,201,68,0.15955850683708905],[113,201,69,0.15810594465289798],[113,201,70,0.15453325466064458],[113,201,71,0.15080317347730127],[113,201,72,0.14695318431478363],[113,201,73,0.14302069161297123],[113,201,74,0.13904140886361716],[113,201,75,0.13504795088439311],[113,201,76,0.13106863507262698],[113,201,77,0.127126495842035],[113,201,78,0.12323851611676577],[113,201,79,0.11941507942824722],[113,202,64,0.14392863942297837],[113,202,65,0.14564495507263928],[113,202,66,0.14721173634317639],[113,202,67,0.14861719911914908],[113,202,68,0.149845808712966],[113,202,69,0.15087492313429623],[113,202,70,0.14825686517986558],[113,202,71,0.14466826026382293],[113,202,72,0.14095714123384348],[113,202,73,0.13715832830914113],[113,202,74,0.13330486640247477],[113,202,75,0.12942674610208665],[113,202,76,0.1255498197757222],[113,202,77,0.12169491662557397],[113,202,78,0.11787716021728054],[113,202,79,0.1141054917008306],[113,203,64,0.13739722461068238],[113,203,65,0.1361543855888875],[113,203,66,0.137684185331582],[113,203,67,0.13904769297519817],[113,203,68,0.14022758765095442],[113,203,69,0.14120183150232465],[113,203,70,0.1419179417047164],[113,203,71,0.13848696428980642],[113,203,72,0.1349298126188679],[113,203,73,0.13127843043796475],[113,203,74,0.1275628960414873],[113,203,75,0.12381029180533917],[113,203,76,0.12004375242241785],[113,203,77,0.11628169524805185],[113,203,78,0.11253723588451264],[113,203,79,0.10881779185590543],[113,204,64,0.13732617380151563],[113,204,65,0.1354060634291855],[113,204,66,0.1334961308989054],[113,204,67,0.13156987606677467],[113,204,68,0.13073148256931036],[113,204,69,0.13164328137257805],[113,204,70,0.132319558414984],[113,204,71,0.13224523408986913],[113,204,72,0.1288561941319275],[113,204,73,0.12536516084174565],[113,204,74,0.1217989637169672],[113,204,75,0.11818150501203009],[113,204,76,0.1145329572393716],[113,204,77,0.11086912337767668],[113,204,78,0.10720096248210838],[113,204,79,0.10353428314491928],[113,205,64,0.13736171975736194],[113,205,65,0.13514897475429338],[113,205,66,0.13294745122101193],[113,205,67,0.13072671644582878],[113,205,68,0.1284580062429726],[113,205,69,0.12611362079786936],[113,205,70,0.12366454334430965],[113,205,71,0.1231663149280531],[113,205,72,0.1227248631126313],[113,205,73,0.11940662089579109],[113,205,74,0.11600092570011047],[113,205,75,0.11252823628014673],[113,205,76,0.10900552127069585],[113,205,77,0.10544576363959546],[113,205,78,0.10185760822356622],[113,205,79,0.09824515435961258],[113,206,64,0.13751427633007446],[113,206,65,0.13499507496307697],[113,206,66,0.1324888806556455],[113,206,67,0.1299610957512882],[113,206,68,0.1273805485454641],[113,206,69,0.12472016521755253],[113,206,70,0.12195278419527593],[113,206,71,0.11905200315374642],[113,206,72,0.11599304535177976],[113,206,73,0.11339488532547135],[113,206,74,0.11016342499346529],[113,206,75,0.10684586901585283],[113,206,76,0.10345788722074681],[113,206,77,0.10000942233457998],[113,206,78,0.0965066252014382],[113,206,79,0.09295175618144545],[113,207,64,0.13778871515816773],[113,207,65,0.13495078935883711],[113,207,66,0.13212811896206028],[113,207,67,0.1292817843280659],[113,207,68,0.12637799524177665],[113,207,69,0.12339020607841311],[113,207,70,0.12029312896177158],[113,207,71,0.11706321749503178],[113,207,72,0.11367923622014721],[113,207,73,0.11012274555498089],[113,207,74,0.10637850048155253],[113,207,75,0.1013379908534045],[113,207,76,0.09789310917486595],[113,207,77,0.09456461767146045],[113,207,78,0.09115431043574118],[113,207,79,0.08766245880366255],[113,208,64,0.1381865663188441],[113,208,65,0.13501766446936886],[113,208,66,0.1318668838207468],[113,208,67,0.1286909582597658],[113,208,68,0.12545333327286673],[113,208,69,0.12212788124868657],[113,208,70,0.11869116995584068],[113,208,71,0.11512256298926167],[113,208,72,0.11140447292308696],[113,208,73,0.10752255529549487],[113,208,74,0.10346584241867254],[113,208,75,0.09922681610044279],[113,208,76,0.09480141845659892],[113,208,77,0.08952079140167557],[113,208,78,0.08579016498453935],[113,208,79,0.08236577178656604],[113,209,64,0.1387051628864524],[113,209,65,0.13519329695910653],[113,209,66,0.13170326982672792],[113,209,67,0.12818758573893285],[113,209,68,0.12460685314956724],[113,209,69,0.12093524305802607],[113,209,70,0.11715112107870869],[113,209,71,0.11323675120950843],[113,209,72,0.10917821841891664],[113,209,73,0.10496531887212837],[113,209,74,0.10059141752816297],[113,209,75,0.09605327289074596],[113,209,76,0.09135082874419334],[113,209,77,0.08648697275181082],[113,209,78,0.08146726183932892],[113,209,79,0.0762996143275054],[113,210,64,0.1393370784660692],[113,210,65,0.135471209106228],[113,210,66,0.1316319341391952],[113,210,67,0.1277677767598041],[113,210,68,0.12383650649967363],[113,210,69,0.11981246551384493],[113,210,70,0.11567572044573907],[113,210,71,0.11141136307064205],[113,210,72,0.10700909357898318],[113,210,73,0.10246279944274718],[113,210,74,0.09777013034316784],[113,210,75,0.09293206964435756],[113,210,76,0.08795250290039822],[113,210,77,0.08283778388298321],[113,210,78,0.07759629861433899],[113,210,79,0.0722380278840685],[113,211,64,0.14007018595614654],[113,211,65,0.13584080196933174],[113,211,66,0.13164394580370334],[113,211,67,0.12742452802699025],[113,211,68,0.12313754516285051],[113,211,69,0.1187573772102308],[113,211,70,0.11426565823669502],[113,211,71,0.10965017454456918],[113,211,72,0.10490410565334735],[113,211,73,0.10002528958640544],[113,211,74,0.09501551368156406],[113,211,75,0.0898798321063042],[113,211,76,0.08462591121466957],[113,211,77,0.07926340383478363],[113,211,78,0.07380335352525824],[113,211,79,0.06825762978410706],[113,212,64,0.14088789072520566],[113,212,65,0.1362874839216784],[113,212,66,0.13172681161266842],[113,212,67,0.12714764607408463],[113,212,68,0.12250234063721296],[113,212,69,0.11776517696056966],[113,212,70,0.11291918966321886],[113,212,71,0.10795466973222272],[113,212,72,0.10286806603403553],[113,212,73,0.09766094023607069],[113,212,74,0.09233897708268225],[113,212,75,0.08691105188537837],[113,212,76,0.08138835699631326],[113,212,77,0.07578358893800939],[113,212,78,0.070110197763076],[113,212,79,0.06438170011428643],[113,213,64,0.14176954078324464],[113,213,65,0.13679297703288665],[113,213,66,0.1318646808883536],[113,213,67,0.12692385088821903],[113,213,68,0.12192038609171507],[113,213,69,0.11682833428946994],[113,213,70,0.11163193511182247],[113,213,71,0.10632374327330346],[113,213,72,0.10090319921890437],[113,213,73,0.09537528225871646],[113,213,74,0.08974924883158351],[113,213,75,0.08403745840850549],[113,213,76,0.07825428940904777],[113,213,77,0.07241514736029811],[113,213,78,0.06653556738064409],[113,213,79,0.06063041291902322],[113,214,64,0.14269101668167247],[113,214,65,0.1373358039330441],[113,214,66,0.13203873172948716],[113,214,67,0.12673706249575123],[113,214,68,0.1213784833201948],[113,214,69,0.11593667708389487],[113,214,70,0.11039686968751303],[113,214,71,0.10475359424376837],[113,214,72,0.09900894504984127],[113,214,73,0.09317094267879786],[113,214,74,0.08725201348787821],[113,214,75,0.08126758666694958],[113,214,76,0.07523481176717133],[113,214,77,0.06917139945965042],[113,214,78,0.06309458807966133],[113,214,79,0.057020238313385124],[113,215,64,0.14362550401870128],[113,215,65,0.13789195794010312],[113,215,66,0.13222774141131552],[113,215,67,0.12656887311599682],[113,215,68,0.12086111716800578],[113,215,69,0.11507766886197861],[113,215,70,0.10920450454506256],[113,215,71,0.1032378138559551],[113,215,72,0.09718195646643195],[113,215,73,0.09104755771041327],[113,215,74,0.08484974700648974],[113,215,75,0.07860654276211029],[113,215,76,0.07233738722022055],[113,215,77,0.0660618344740235],[113,215,78,0.05979839463621535],[113,215,79,0.05356353690537143],[113,216,64,0.14454445155873444],[113,216,65,0.13843575936655783],[113,216,66,0.13240884376747364],[113,216,67,0.1263992076322141],[113,216,68,0.12035102010853703],[113,216,69,0.11423687826849427],[113,216,70,0.10804326254944913],[113,216,71,0.10176766943444594],[113,216,72,0.09541629517763683],[113,216,73,0.08900188492742521],[113,216,74,0.08254175170352862],[113,216,75,0.07605596942535506],[113,216,76,0.06956574391970631],[113,216,77,0.06309196555822207],[113,216,78,0.056653946892987604],[113,216,79,0.05026834837255409],[113,217,64,0.1454187180915215],[113,217,65,0.13894090104304344],[113,217,66,0.13255847650803415],[113,217,67,0.12620717525965552],[113,217,68,0.1198299297824022],[113,217,69,0.11339864354642312],[113,217,70,0.10690005095234387],[113,217,71,0.10033258729067114],[113,217,72,0.0937038278079763],[113,217,73,0.08702811705816657],[113,217,74,0.08032439348041706],[113,217,75,0.07361421384803526],[113,217,76,0.06691998192398],[113,217,77,0.060263385341556126],[113,217,78,0.05366404440721316],[113,217,79,0.04713837619679697],[113,218,64,0.14621991125775627],[113,218,65,0.13938168620265254],[113,218,66,0.13265352153939158],[113,218,67,0.12597211540714143],[113,218,68,0.11927954243439065],[113,218,69,0.11254693486211616],[113,218,70,0.1057610339051797],[113,218,71,0.09892083725823139],[113,218,72,0.09203482521851791],[113,218,73,0.08511840003932525],[113,218,74,0.0781915438707282],[113,218,75,0.07127670031162518],[113,218,76,0.06439688425255245],[113,218,77,0.05757402433540781],[113,218,78,0.05082754199850574],[113,218,79,0.044173170714058595],[113,219,64,0.14692192164985984],[113,219,65,0.13973446195791403],[113,219,66,0.13267264144574176],[113,219,67,0.1256748408288902],[113,219,68,0.11868266528995615],[113,219,69,0.11166641747472425],[113,219,70,0.10461260774891946],[113,219,71,0.09752042177658425],[113,219,72,0.09039876783423903],[113,219,73,0.08326355809982436],[113,219,74,0.07613522961459758],[113,219,75,0.06903651025152818],[113,219,76,0.06199043464698631],[113,219,77,0.055018614666761945],[113,219,78,0.04813976858756239],[113,219,79,0.04136851278204912],[113,220,64,0.1475026555570269],[113,220,65,0.13997925166972744],[113,220,66,0.13259781536612658],[113,220,67,0.1252990812445529],[113,220,68,0.11802457100147956],[113,220,69,0.11074371883634558],[113,220,70,0.10344258212362333],[113,220,71,0.09612017252065448],[113,220,72,0.08878535992569601],[113,220,73,0.08145402876768887],[113,220,74,0.07414649259271869],[113,220,75,0.06688517251932741],[113,220,76,0.059692544729729916],[113,220,77,0.05258936174990428],[113,220,78,0.04559315185362456],[113,220,79,0.03871700050491466],[113,221,64,0.14794596975965837],[113,221,65,0.14010158955148017],[113,221,66,0.1324160775526439],[113,221,67,0.12483313066485015],[113,221,68,0.11729455736199298],[113,221,69,0.10976890278486995],[113,221,70,0.10224157002442356],[113,221,71,0.0947110576651325],[113,221,72,0.08718575589139285],[113,221,73,0.07968101079795403],[113,221,74,0.07221646306283108],[113,221,75,0.06481366672400879],[113,221,76,0.05749399337182527],[113,221,77,0.050276826630699926],[113,221,78,0.04317805136223513],[113,221,79,0.03620884157800033],[113,222,64,0.14824381178732346],[113,222,65,0.14009456086937502],[113,222,66,0.1321214619217928],[113,222,67,0.1242717016951841],[113,222,68,0.1164877155278026],[113,222,69,0.10873715404406428],[113,222,70,0.10100458999181312],[113,222,71,0.09328770294200928],[113,222,72,0.0855940016650619],[113,222,73,0.07793782810492433],[113,222,74,0.07033764923348948],[113,222,75,0.06281364263027411],[113,222,76,0.05538558118263697],[113,222,77,0.048071021843539535],[113,222,78,0.04088380292272051],[113,222,79,0.03383285392456514],[113,223,64,0.14839856903285054],[113,223,65,0.1399610510881977],[113,223,66,0.1317171559086007],[113,223,67,0.12361799009677045],[113,223,68,0.11560691000819974],[113,223,69,0.10765067627182325],[113,223,70,0.09973288366008057],[113,223,71,0.09185012969512367],[113,223,72,0.0840086944261953],[113,223,73,0.07622151284451997],[113,223,74,0.06850544627987286],[113,223,75,0.06087885866863119],[113,223,76,0.053359503116845015],[113,223,77,0.04596272370748368],[113,223,78,0.038699977024337626],[113,223,79,0.031577677387602435],[113,224,64,0.14842563006022708],[113,224,65,0.13971620726748005],[113,224,66,0.13121786689928733],[113,224,67,0.12288595286121491],[113,224,68,0.11466497366716283],[113,224,69,0.10652080689457945],[113,224,70,0.09843595189507369],[113,224,71,0.09040571315292072],[113,224,72,0.08243486381927811],[113,224,73,0.07453461082868819],[113,224,74,0.06671986795101655],[113,224,75,0.059006842664044545],[113,224,76,0.05141094225245605],[113,224,77,0.043945004051851276],[113,224,78,0.03661785426767784],[113,224,79,0.029433199310148907],[113,225,64,0.14835616135249682],[113,225,65,0.13939011493311124],[113,225,66,0.1306524044495383],[113,225,67,0.12210280299686449],[113,225,68,0.11368712093543633],[113,225,69,0.10537035193041812],[113,225,70,0.097133812728033],[113,225,71,0.08897136412699887],[113,225,72,0.08088607788403507],[113,225,73,0.07288721246067119],[113,225,74,0.06498750393391067],[113,225,75,0.057200777914351006],[113,225,76,0.049539887825304184],[113,225,77,0.042014984399342245],[113,225,78,0.03463212075058156],[113,225,79,0.027392196883589508],[113,226,64,0.14824010261348403],[113,226,65,0.13903069352967037],[113,226,66,0.13006648138789206],[113,226,67,0.12131172412965978],[113,226,68,0.1127135823476372],[113,226,69,0.10423614393156759],[113,226,70,0.09585948423215657],[113,226,71,0.08757593729558602],[113,226,72,0.07938677686189471],[113,226,73,0.0712992123536787],[113,226,74,0.06332370612385971],[113,226,75,0.05547161774292645],[113,226,76,0.04775318060711512],[113,226,77,0.040175815643520955],[113,226,78,0.03274278638239129],[113,226,79,0.025452199162487886],[113,227,64,0.14814830527922235],[113,227,65,0.13870655181892974],[113,227,66,0.12952620799543968],[113,227,67,0.1205759853873235],[113,227,68,0.1118043639414652],[113,227,69,0.10317448004230402],[113,227,70,0.09466513260498653],[113,227,71,0.08626710793859135],[113,227,72,0.0779798770260955],[113,227,73,0.06980861338143601],[113,227,74,0.06176153769050619],[113,227,75,0.053847594945968386],[113,227,76,0.04607446927865978],[113,227,77,0.038446941175320624],[113,227,78,0.030965591259689826],[113,227,79,0.023625854303441426],[113,228,64,0.14815621303418292],[113,228,65,0.13849406141183135],[113,228,66,0.12910827260749252],[113,228,67,0.11997214731503678],[113,228,68,0.11103556437446695],[113,228,69,0.10226069886781125],[113,228,70,0.09362506097049789],[113,228,71,0.08511788253825402],[113,228,72,0.07673683576659701],[113,228,73,0.06848507711822961],[113,228,74,0.0603686226498524],[113,228,75,0.05239406036556224],[113,228,76,0.044566604710041736],[113,228,77,0.036888497795360034],[113,228,78,0.0293577614368489],[113,228,79,0.0219673035579467],[113,229,64,0.14831976944821051],[113,229,65,0.13845085712230523],[113,229,66,0.12887141000632268],[113,229,67,0.1195596278733524],[113,229,68,0.11046701123680695],[113,229,69,0.10155483242419903],[113,229,70,0.09279933752576582],[113,229,71,0.08418821035564344],[113,229,72,0.07571732350858675],[113,229,73,0.06738781794487422],[113,229,74,0.0592035171361006],[113,229,75,0.051168681294979645],[113,229,76,0.04328610669357105],[113,229,77,0.03555557455077184],[113,229,78,0.027972653448010934],[113,229,79,0.020527858713586027],[113,230,64,0.14867461277503347],[113,230,65,0.13861383438008254],[113,230,66,0.12885333927039466],[113,230,67,0.1193766328793447],[113,230,68,0.11013717033641075],[113,230,69,0.10109545837129194],[113,230,70,0.09222655385132211],[113,230,71,0.08351662625512417],[113,230,72,0.07495975705295607],[113,230,73,0.06655506902563785],[113,230,74,0.05830419142491015],[113,230,75,0.05020906636602861],[113,230,76,0.04227010132277135],[113,230,77,0.03448467207012025],[113,230,78,0.026845979897229397],[113,230,79,0.01934226639467297],[113,231,64,0.1492387604059967],[113,231,65,0.13900183382379094],[113,231,66,0.12907344139882782],[113,231,67,0.1194428330013749],[113,231,68,0.11006583176093143],[113,231,69,0.1009024001451353],[113,231,70,0.09192653954050162],[113,231,71,0.08312297603023097],[113,231,72,0.0744840279645276],[113,231,73,0.06600680272127955],[113,231,74,0.057690728393649846],[113,231,75,0.049535425629925016],[113,231,76,0.04153892433175569],[113,231,77,0.03369622939401264],[113,231,78,0.025998239149449626],[113,231,79,0.018431019665920017],[113,232,64,0.1500151487254408],[113,232,65,0.1396181801960851],[113,232,66,0.12953529186970053],[113,232,67,0.11976189751028872],[113,232,68,0.11025665579493268],[113,232,69,0.10097929182927759],[113,232,70,0.09190294861377868],[113,232,71,0.08301102296976572],[113,232,72,0.07429412419152477],[113,232,73,0.06574735877906762],[113,232,74,0.05736794678197819],[113,232,75,0.049153174777999756],[113,232,76,0.041098689995936806],[113,232,77,0.0331971395752439],[113,232,78,0.025437158440976534],[113,232,79,0.017802708764174627],[113,233,64,0.1509940266754268],[113,233,65,0.14045307349362846],[113,233,66,0.1302290457935693],[113,233,67,0.12032388218323284],[113,233,68,0.11069957582916343],[113,233,69,0.10131600464831404],[113,233,70,0.09214571435870061],[113,233,71,0.08317093208006757],[113,233,72,0.07438064113556264],[113,233,73,0.0657679763613799],[113,233,74,0.05732794520704355],[113,233,75,0.049055479410605236],[113,233,76,0.04094382152794438],[113,233,77,0.03298325008779903],[113,233,78,0.025160146640695456],[113,233,79,0.017456407472087737],[113,234,64,0.15215520144309513],[113,234,65,0.14148583083857164],[113,234,66,0.13113367420051836],[113,234,67,0.12110746998101293],[113,234,68,0.11137305697815027],[113,234,69,0.10189093391475547],[113,234,70,0.0926333715651321],[113,234,71,0.0835816310975641],[113,234,72,0.07472318149639258],[113,234,73,0.0660492294512938],[113,234,74,0.05755256670696472],[113,234,75,0.049225739380239456],[113,234,76,0.04105954325951075],[113,234,77,0.03304184860741088],[113,234,78,0.025156757498446956],[113,234,79,0.01738409624013142],[113,235,64,0.15347013447221902],[113,235,65,0.14268697733031627],[113,235,66,0.13221904979506516],[113,235,67,0.12208206291862002],[113,235,68,0.11224620892237151],[113,235,69,0.10267314506075574],[113,235,70,0.0933352449259799],[113,235,71,0.08421304722613346],[113,235,72,0.07529264301633257],[113,235,73,0.06656336497520096],[113,235,74,0.058015783389725316],[113,235,75,0.04964001304134009],[113,235,76,0.04142433471076607],[113,235,77,0.03335413454271026],[113,235,78,0.025411164040413506],[113,235,79,0.01757312299543338],[113,236,64,0.15490388579463008],[113,236,65,0.14402018393431384],[113,236,66,0.1334478803147693],[113,236,67,0.1232097233522049],[113,236,68,0.11328075129536554],[113,236,69,0.1036243771894982],[113,236,70,0.09421350217518197],[113,236,71,0.08502821833333213],[113,236,72,0.07605339304671885],[113,236,73,0.0672765427780767],[113,236,74,0.05868600055901042],[113,236,75,0.05026938103329851],[113,236,76,0.04201234644331548],[113,236,77,0.03389767649306777],[113,236,78,0.025904644572038494],[113,236,79,0.01800870238170594],[113,237,64,0.15641688697752995],[113,237,65,0.14544403231714859],[113,237,66,0.13477746905631316],[113,237,67,0.12444694393289062],[113,237,68,0.11443281058747361],[113,237,69,0.10470088288351423],[113,237,70,0.09522505051704687],[113,237,71,0.08598525703213605],[113,237,72,0.07696530829370778],[113,237,73,0.06815095579809599],[113,237,74,0.059528258710825836],[113,237,75,0.051082228093324],[113,237,76,0.042795756349115865],[113,237,77,0.034648834489381275],[113,237,78,0.026618059393625583],[113,237,79,0.01867643282453329],[113,238,64,0.15796289018845805],[113,238,65,0.1469098571443466],[113,238,66,0.13615746121610545],[113,238,67,0.12574231845879455],[113,238,68,0.11565054017041716],[113,238,69,0.10585102136233668],[113,238,70,0.09631912535144063],[113,238,71,0.087034955278918],[113,238,72,0.07798141298667234],[113,238,73,0.0691425165370145],[113,238,74,0.060501979827863955],[113,238,75,0.05204205735341074],[113,238,76,0.04374265675561701],[113,238,77,0.03558072140867498],[113,238,78,0.027529884882548858],[113,238,79,0.019560398743628846],[113,239,64,0.15948845056425934],[113,239,65,0.14836198587691563],[113,239,66,0.1375306735676685],[113,239,67,0.12703778049345565],[113,239,68,0.11687557764341354],[113,239,69,0.10701673889903676],[113,239,70,0.0974385992697601],[113,239,71,0.08812173476792634],[113,239,72,0.07904829636981146],[113,239,73,0.07020058519353271],[113,239,74,0.06155987188049443],[113,239,75,0.053105462792464114],[113,239,76,0.04481401526064974],[113,239,77,0.03665910374964507],[113,239,78,0.028611038433649608],[113,239,79,0.02063693732530425],[113,240,64,0.16095082454766252],[113,240,65,0.14975848812373754],[113,240,66,0.1388560730311966],[113,240,67,0.12829311919710537],[113,240,68,0.11806836201611492],[113,240,69,0.10815893170081943],[113,240,70,0.0985446400503831],[113,240,71,0.08920687726966234],[113,240,72,0.08012724092645078],[113,240,73,0.07128638780630564],[113,240,74,0.06266311116541384],[113,240,75,0.05423364553680779],[113,240,76,0.04597120090005589],[113,240,77,0.03784572768261537],[113,240,78,0.029823913727908914],[113,240,79,0.02186941404102782],[113,241,64,0.16231824619873197],[113,241,65,0.15106879883370564],[113,241,66,0.14010417188996427],[113,241,67,0.12947962961539033],[113,241,68,0.1192005560593895],[113,241,69,0.10924916874956382],[113,241,70,0.09960825513885335],[113,241,71,0.09026038780087785],[113,241,72,0.08118686225141392],[113,241,73,0.07236683878695148],[113,241,74,0.06377669034296728],[113,241,75,0.05538955805988975],[113,241,76,0.04717511593128553],[113,241,77,0.03909954559958563],[113,241,78,0.031125722065107303],[113,241,79,0.02321361078412944],[113,242,64,0.16356787079103352],[113,242,65,0.15227082033259406],[113,242,66,0.1412534623715532],[113,242,67,0.13057608033608842],[113,242,68,0.12025076356100149],[113,242,69,0.11026538095566997],[113,242,70,0.10060617266148889],[113,242,71,0.09125727785048662],[113,242,72,0.08219998878365928],[113,242,73,0.07341218978286891],[113,242,74,0.06486798261873031],[113,242,75,0.05653749953332242],[113,242,76,0.048386904835404636],[113,242,77,0.040378585729906144],[113,242,78,0.032471532778080694],[113,242,79,0.024621910129418195],[113,243,64,0.16468490581338424],[113,243,65,0.15335011466341952],[113,243,66,0.14228967964686742],[113,243,67,0.13156806165561624],[113,243,68,0.12120398090468608],[113,243,69,0.11119143604622876],[113,243,70,0.10152055989207903],[113,243,71,0.09217744698204933],[113,243,72,0.0831437244730846],[113,243,73,0.07439628895362058],[113,243,74,0.06590721019235374],[113,243,75,0.057643802578107105],[113,243,76,0.049568864758553],[113,243,77,0.04164108774294353],[113,243,78,0.03381563150269106],[113,243,79,0.025075901914525408],[113,244,64,0.1656617137934278],[113,244,65,0.15429906414699898],[113,244,66,0.1432050291996037],[113,244,67,0.1324472930553266],[113,244,68,0.12205100161755593],[113,244,69,0.11201665936094418],[113,244,70,0.10233868034716473],[113,244,71,0.09300549599562212],[113,244,72,0.08399943650848174],[113,244,73,0.07529675967922285],[113,244,74,0.06686782761695911],[113,244,75,0.058677431696709526],[113,244,76,0.05068526582851411],[113,244,77,0.042846547928274956],[113,244,78,0.03511278927528576],[113,244,79,0.02344833687077784],[113,245,64,0.16649688642774174],[113,245,65,0.15511599958934819],[113,245,66,0.14399737793115625],[113,245,67,0.13321088927015148],[113,245,68,0.12278777306388912],[113,245,69,0.11273529961695809],[113,245,70,0.10305248845053777],[113,245,71,0.09373047047305576],[113,245,72,0.08475266682462455],[113,245,73,0.07609509732798088],[113,245,74,0.0677268186263828],[113,245,75,0.059610491896176156],[113,245,76,0.05170307983487202],[113,245,77,0.04395667244687898],[113,245,78,0.033820738029381577],[113,245,79,0.021943790906601354],[113,246,64,0.16719428961551966],[113,246,65,0.1558042956695012],[113,246,66,0.1446694084664149],[113,246,67,0.13386058432494152],[113,246,68,0.12341470454677217],[113,246,69,0.11334593877553939],[113,246,70,0.10365816076523263],[113,246,71,0.09434553357167891],[113,246,72,0.08539296612795362],[113,246,73,0.07677668271128608],[113,246,74,0.06846490496367096],[113,246,75,0.060418645963306664],[113,246,76,0.05259261568574962],[113,246,77,0.04456577269119145],[113,246,78,0.03259612288434123],[113,246,79,0.020586477042650746],[113,247,64,0.16776207912003957],[113,247,65,0.15637143316352803],[113,247,66,0.14522773624204974],[113,247,67,0.1344019130228726],[113,247,68,0.12393592617938905],[113,247,69,0.11385084523293369],[113,247,70,0.10415556286693436],[113,247,71,0.09484756699033077],[113,247,72,0.08591364921982117],[113,247,73,0.07733071087002971],[113,247,74,0.06906666573673717],[113,247,75,0.06108143881869478],[113,247,76,0.053328059991670035],[113,247,77,0.04361256043570347],[113,247,78,0.03152499423845538],[113,247,79,0.01939823645011067],[113,248,64,0.16821168672421344],[113,248,65,0.15682802779819147],[113,248,66,0.1456819890909753],[113,248,67,0.13484334949592958],[113,248,68,0.12435849800552017],[113,248,69,0.11425526966527705],[113,248,70,0.10454765102725377],[113,248,71,0.0952366991099529],[113,248,72,0.0863114704549213],[113,248,73,0.0777500338731778],[113,248,74,0.06952056583733275],[113,248,75,0.061582527358520545],[113,248,76,0.05388792107899264],[113,248,77,0.04280284798750345],[113,248,78,0.030620240725550377],[113,248,79,0.018397384583606135],[113,249,64,0.1685567769049993],[113,249,65,0.1571868256823442],[113,249,66,0.14604384918635097],[113,249,67,0.13519540257147353],[113,249,68,0.12469156898588464],[113,249,69,0.11456668298528061],[113,249,70,0.1048398079908121],[113,249,71,0.09551575941061055],[113,249,72,0.0865862182526837],[113,249,73,0.07803091636604237],[113,249,74,0.06981889198988069],[113,249,75,0.061909814193776225],[113,249,76,0.05425537470406307],[113,249,77,0.04214030481748152],[113,249,78,0.029890509318550123],[113,249,79,0.017597654175950172],[113,250,64,0.16881217422734066],[113,250,65,0.15746166543691428],[113,250,66,0.14632605737690388],[113,250,67,0.13546966787252418],[113,250,68,0.12494548562474532],[113,250,69,0.11479395601804522],[113,250,70,0.10503911226832542],[113,250,71,0.09568965838984454],[113,250,72,0.08674022768308928],[113,250,73,0.0781727026859966],[113,250,74,0.06995759504953714],[113,250,75,0.06205548371843031],[113,250,76,0.053788002970065064],[113,250,77,0.04162425696695256],[113,250,78,0.029339482533514212],[113,250,79,0.01700723722427122],[113,251,64,0.1689927618513216],[113,251,65,0.15766640733501716],[113,251,66,0.1465413801324656],[113,251,67,0.13567783675273712],[113,251,68,0.1251308501899845],[113,251,69,0.11494648067525022],[113,251,70,0.10515354052947201],[113,251,71,0.0957646923543869],[113,251,72,0.08677781027652356],[113,251,73,0.07817739446790048],[113,251,74,0.06993603724518924],[113,251,75,0.06201593898203958],[113,251,76,0.053406785637295666],[113,251,77,0.041249299077284085],[113,251,78,0.028965259392731844],[113,251,79,0.016627928211566653],[113,252,64,0.16911235175897146],[113,252,65,0.1578138299750002],[113,252,66,0.1467015395271956],[113,252,67,0.13583066237299848],[113,252,68,0.12525752868261367],[113,252,69,0.1150332326042715],[113,252,70,0.10519110286757184],[113,252,71,0.09574777263199986],[113,252,72,0.08670460036346941],[113,252,73,0.07804913779394874],[113,252,74,0.06975664316669905],[113,252,75,0.06179163791225224],[113,252,76,0.053117756374089775],[113,252,77,0.04100501290609837],[113,252,78,0.0287598422984547],[113,252,79,0.016454370909322388],[113,253,64,0.16918252753890262],[113,253,65,0.1579144952405013],[113,253,66,0.14681610691748026],[113,253,67,0.13593688345473545],[113,253,68,0.12533360893826553],[113,253,69,0.1150617755115266],[113,253,70,0.10515891092326876],[113,253,71,0.09564557895294007],[113,253,72,0.08652681743469004],[113,253,73,0.07779361910383684],[113,253,74,0.06942445342744469],[113,253,75,0.06138682752944909],[113,253,76,0.05290443401693894],[113,253,77,0.04087579425237907],[113,253,78,0.028708732003610536],[113,253,79,0.016473411192040748],[113,254,64,0.16921146081968558],[113,254,65,0.15797558255491334],[113,254,66,0.14689136122414198],[113,254,67,0.13600210649774608],[113,254,68,0.125364309496082],[113,254,69,0.11503720761018435],[113,254,70,0.10506217909928008],[113,254,71,0.09546363698428015],[113,254,72,0.08625044422917039],[113,254,73,0.0774173692742655],[113,254,74,0.0689465800963917],[113,254,75,0.06080917492280582],[113,254,76,0.05274660895368596],[113,254,77,0.04084079017463706],[113,254,78,0.028790632878848883],[113,254,79,0.016663558361995786],[113,255,64,0.16920270271739377],[113,255,65,0.157999693713963],[113,255,66,0.14692911300543013],[113,255,67,0.13602764752883595],[113,255,68,0.12535084015096795],[113,255,69,0.11496105092291474],[113,255,70,0.10490315937470225],[113,255,71,0.09520532026709469],[113,255,72,0.08588032050770072],[113,255,73,0.07692697550422825],[113,255,74,0.06833156319101508],[113,255,75,0.060069293916814856],[113,255,76,0.052105814342477554],[113,255,77,0.04087394832043935],[113,255,78,0.028977270664065802],[113,255,79,0.016994557529946018],[113,256,64,0.16888884250003036],[113,256,65,0.1579836298799776],[113,256,66,0.14692549580894304],[113,256,67,0.13600933475258242],[113,256,68,0.12528921541442478],[113,256,69,0.11483008448180135],[113,256,70,0.10468001053674796],[113,256,71,0.09487077710791587],[113,256,72,0.08541915275636583],[113,256,73,0.07632820090620897],[113,256,74,0.06758862775543484],[113,256,75,0.059180166551922736],[113,256,76,0.051072996477561125],[113,256,77,0.0409441800888463],[113,256,78,0.029233324854013722],[113,256,79,0.017427075621889925],[113,257,64,0.16733671772367942],[113,257,65,0.15791715694452313],[113,257,66,0.14686974007558068],[113,257,67,0.1359362865029051],[113,257,68,0.12516903449495476],[113,257,69,0.1146351343713391],[113,257,70,0.10438561426236183],[113,257,71,0.09445579451670502],[113,257,72,0.08486645175974378],[113,257,73,0.07562502378593099],[113,257,74,0.06672685374531193],[113,257,75,0.05815647203020625],[113,257,76,0.049888914221723424],[113,257,77,0.04101565420486546],[113,257,78,0.02951649147596575],[113,257,79,0.01791251583241984],[113,258,64,0.1655845068911011],[113,258,65,0.15720192727508384],[113,258,66,0.14674300769047313],[113,258,67,0.13578984351638745],[113,258,68,0.12497249848493569],[113,258,69,0.1143601613587591],[113,258,70,0.10400671783808617],[113,258,71,0.09395098039095298],[113,258,72,0.08421773891266128],[113,258,73,0.0748188535395964],[113,258,74,0.06575438821207029],[113,258,75,0.05701378352267083],[113,258,76,0.04857706733537909],[113,258,77,0.04041610161778897],[113,258,78,0.02977850876957992],[113,258,79,0.018394084672726928],[113,259,64,0.16365933632764826],[113,259,65,0.1552586989526584],[113,259,66,0.14652039034350686],[113,259,67,0.1355477417893623],[113,259,68,0.12468053647962327],[113,259,69,0.1139898439392306],[113,259,70,0.1035322696456781],[113,259,71,0.09335000199625879],[113,259,72,0.08347175009624859],[113,259,73,0.07391372474263226],[113,259,74,0.06468066133230917],[113,259,75,0.05576688336179697],[113,259,76,0.04715740512981416],[113,259,77,0.038829072206097034],[113,259,78,0.029983052321091788],[113,259,79,0.01883125001916342],[113,260,64,0.16158995613497554],[113,260,65,0.15317335144392427],[113,260,66,0.14472005038162677],[113,260,67,0.13519297897252483],[113,260,68,0.12428108334087971],[113,260,69,0.11351720619412958],[113,260,70,0.10296032406324256],[113,260,71,0.0926556926426279],[113,260,72,0.08263567443002301],[113,260,73,0.0729206099722299],[113,260,74,0.06351973157705366],[113,260,75,0.0544321182872029],[113,260,76,0.04564769085292471],[113,260,77,0.03714824538803915],[113,260,78,0.028908524352445442],[113,260,79,0.019201077839566923],[113,261,64,0.15939897415995108],[113,261,65,0.15096512192504016],[113,261,66,0.14251842227981437],[113,261,67,0.13407016339108024],[113,261,68,0.12376697242886908],[113,261,69,0.11293958077455223],[113,261,70,0.1022927341771931],[113,261,71,0.0918742833674364],[113,261,72,0.08171983069852948],[113,261,73,0.07185349536719964],[113,261,74,0.06228872073147712],[113,261,75,0.05302912264669214],[113,261,76,0.044069377680097194],[113,261,77,0.03539615000993633],[113,261,78,0.026989055769899593],[113,261,79,0.018821663562235375],[113,262,64,0.15710315700399216],[113,262,65,0.14864798408386862],[113,262,66,0.14020232125815638],[113,262,67,0.13178515833891502],[113,262,68,0.12313529076691453],[113,262,69,0.112257859184298],[113,262,70,0.10153430152981834],[113,262,71,0.09101446250564244],[113,262,72,0.08073665156240863],[113,262,73,0.0707283073855024],[113,262,74,0.06100670298860011],[113,262,75,0.05157969045653192],[113,262,76,0.042446484318908406],[113,262,77,0.033598482480752624],[113,262,78,0.025020123590100394],[113,262,79,0.016689779682647794],[113,263,64,0.15471365229566053],[113,263,65,0.14623083096705722],[113,263,66,0.13777811196398396],[113,263,67,0.129382124653755],[113,263,68,0.1210129809880061],[113,263,69,0.11147631718071346],[113,263,70,0.10069253827670141],[113,263,71,0.09008704341018031],[113,263,72,0.07970022582918997],[113,263,73,0.06956229980572287],[113,263,74,0.05969390896375096],[113,263,75,0.050106771615803576],[113,263,76,0.04080436220695476],[113,263,77,0.03178262791153329],[113,263,78,0.023030739382401133],[113,263,79,0.014531874612664177],[113,264,64,0.15223585266802195],[113,264,65,0.14371729969652955],[113,264,66,0.13524751112784267],[113,264,67,0.12686057679634027],[113,264,68,0.11853097086614718],[113,264,69,0.11019400320864722],[113,264,70,0.09977775076693751],[113,264,71,0.08910493933633451],[113,264,72,0.07862613162841112],[113,264,73,0.06837371357954848],[113,264,74,0.05837118297049863],[113,264,75,0.048633700555002754],[113,264,76,0.03916867340938031],[113,264,77,0.029976369665591075],[113,264,78,0.021050563748000687],[113,264,79,0.012379211196347922],[113,265,64,0.14966889835006064],[113,265,65,0.1411052350990898],[113,265,66,0.13260702197944],[113,265,67,0.12421550433008627],[113,265,68,0.11590991523571381],[113,265,69,0.10762809571275536],[113,265,70,0.09880344684770552],[113,265,71,0.08808344773300986],[113,265,72,0.077531562708653],[113,265,73,0.06718171176210068],[113,265,74,0.05705969582888458],[113,265,75,0.04718365966750781],[113,265,76,0.03756458167443144],[113,265,77,0.028206789916605905],[113,265,78,0.019108503622413796],[113,265,79,0.01466979752956785],[113,266,64,0.1470048158698154],[113,266,65,0.1383857898705691],[113,266,66,0.12984700863748536],[113,266,67,0.12143644422770189],[113,266,68,0.1131384204134907],[113,266,69,0.10489418300627566],[113,266,70,0.09665297861628935],[113,266,71,0.08704084571681972],[113,266,72,0.07643574962534222],[113,266,73,0.06600659131514444],[113,266,74,0.05578091506012542],[113,266,75,0.0457793794689261],[113,266,76,0.03601615871239634],[113,266,77,0.026499363426898386],[113,266,78,0.02197316906934181],[113,266,79,0.019574379694352228],[113,267,64,0.1442272909155023],[113,267,65,0.13554215943360387],[113,267,66,0.12695040875743085],[113,267,67,0.11850619737492293],[113,267,68,0.11019919476683254],[113,267,69,0.1019748846973546],[113,267,70,0.09378557897424522],[113,267,71,0.08559125503265341],[113,267,72,0.0753606771737727],[113,267,73,0.06487027317951723],[113,267,74,0.05455683393715183],[113,267,75,0.044443077056257094],[113,267,76,0.03454600739955703],[113,267,77,0.03017501660876092],[113,267,78,0.027448061318828303],[113,267,79,0.024745078492957755],[113,268,64,0.14131007391179248],[113,268,65,0.13254795014783594],[113,268,66,0.12389108320570094],[113,268,67,0.11539918814188146],[113,268,68,0.10706745343851264],[113,268,69,0.09884636847714372],[113,268,70,0.09069205039969461],[113,268,71,0.08256710014079802],[113,268,72,0.07433209904149057],[113,268,73,0.06379707164734126],[113,268,74,0.053410460507213715],[113,268,75,0.043196634096101125],[113,268,76,0.03925056220582406],[113,268,77,0.036220762201887566],[113,268,78,0.03319829849920808],[113,268,79,0.03018807393717016],[113,269,64,0.13821501734233754],[113,269,65,0.12936517999385239],[113,269,66,0.12063180197648354],[113,269,67,0.11207946632336424],[113,269,68,0.10370897363320895],[113,269,69,0.09547649994662039],[113,269,70,0.08734261677050809],[113,269,71,0.07927314389736628],[113,269,72,0.07123890511248326],[113,269,73,0.06281474373046389],[113,269,74,0.05237653962151195],[113,269,75,0.04913443238182945],[113,269,76,0.045851397315782555],[113,269,77,0.042543811788006466],[113,269,78,0.0392245061791563],[113,269,79,0.03590290837363365],[113,270,64,0.1348897442867409],[113,270,65,0.12594191127768548],[113,270,66,0.11712186597776394],[113,270,67,0.1084983511434342],[113,270,68,0.1000778002106558],[113,270,69,0.0918226530830325],[113,270,70,0.08369846929181099],[113,270,71,0.07567475968802644],[113,270,72,0.06772477496454006],[113,270,73,0.06098338117100155],[113,270,74,0.059736759276444236],[113,270,75,0.056268101732830894],[113,270,76,0.05273015861028041],[113,270,77,0.0491423865135642],[113,270,78,0.04552150889608206],[113,270,79,0.04188155062562378],[113,271,64,0.13129728058035195],[113,271,65,0.12224200978309319],[113,271,66,0.11332667808587053],[113,271,67,0.1046234672095469],[113,271,68,0.09614438294733302],[113,271,69,0.08785858219356665],[113,271,70,0.07973701568734061],[113,271,71,0.07175322466461383],[113,271,72,0.06640213098433378],[113,271,73,0.06580849593968213],[113,271,74,0.06508569740481261],[113,271,75,0.0636733904833845],[113,271,76,0.059877291701055574],[113,271,77,0.05600421733116097],[113,271,78,0.05207486763707106],[113,271,79,0.04810799770641414],[113,272,64,0.12751369028295584],[113,272,65,0.11834326470716483],[113,272,66,0.10932529041175043],[113,272,67,0.10053454552937703],[113,272,68,0.09198839409023868],[113,272,69,0.08366300300135618],[113,272,70,0.07553499886432402],[113,272,71,0.07166500709989239],[113,272,72,0.07110481901115881],[113,272,73,0.07047945571247327],[113,272,74,0.06976797181806818],[113,272,75,0.06895034703501993],[113,272,76,0.0672412804497979],[113,272,77,0.06308686413227665],[113,272,78,0.058851871484719806],[113,272,79,0.05455975656208339],[113,273,64,0.12363498295247925],[113,273,65,0.11434381362607929],[113,273,66,0.10521729875683378],[113,273,67,0.0963318540680392],[113,273,68,0.087709831030049],[113,273,69,0.07933453033077119],[113,273,70,0.07702557514978567],[113,273,71,0.07637953964032139],[113,273,72,0.07573018038739202],[113,273,73,0.0750575191406425],[113,273,74,0.0743412701644307],[113,273,75,0.07356089247447758],[113,273,76,0.07269569557515912],[113,273,77,0.07033839634852576],[113,273,78,0.06581199077378994],[113,273,79,0.06120817423633977],[113,274,64,0.11974607348282465],[113,274,65,0.11033088251682847],[113,274,66,0.10109168621046317],[113,274,67,0.09210550714461943],[113,274,68,0.08363797000374151],[113,274,69,0.08273023702448244],[113,274,70,0.08188808530637427],[113,274,71,0.08109672636886028],[113,274,72,0.08033985607840134],[113,274,73,0.07959962985594629],[113,274,74,0.07885670323061607],[113,274,75,0.07809033762145141],[113,274,76,0.0772785711242809],[113,274,77,0.07639845398040385],[113,274,78,0.07291043774428935],[113,274,79,0.06801857576628118],[113,275,64,0.11592162499610376],[113,275,65,0.10638156092691368],[113,275,66,0.09702752011028867],[113,275,67,0.09022096063920429],[113,275,68,0.08899321193588311],[113,275,69,0.0878650593537949],[113,275,70,0.08682897179394891],[113,275,71,0.08587481865022609],[113,275,72,0.08498978993564504],[113,275,73,0.08415839282423208],[113,275,74,0.08336252455383042],[113,275,75,0.0825816215073219],[113,275,76,0.08179288416611623],[113,275,77,0.08097157751137875],[113,275,78,0.08009140633636054],[113,275,79,0.07495077340609867],[113,276,64,0.11222671128179999],[113,276,65,0.10256339445091305],[113,276,66,0.0975655094692931],[113,276,67,0.09597656925560766],[113,276,68,0.09450190439874438],[113,276,69,0.09314365723324132],[113,276,70,0.09189992108675406],[113,276,71,0.09076515828951705],[113,276,72,0.08973012115750852],[113,276,73,0.08878185952338237],[113,276,74,0.08790381472833475],[113,276,75,0.0870759998420482],[113,276,76,0.08627526573665992],[113,276,77,0.08547565250541117],[113,276,78,0.08464882558844905],[113,276,79,0.08195977358404553],[113,277,64,0.10871729700218216],[113,277,65,0.10570882312152101],[113,277,66,0.10377650202018582],[113,277,67,0.10193036240571424],[113,277,68,0.10020502368819398],[113,277,69,0.09860866984780765],[113,277,70,0.0971446926486443],[113,277,71,0.09581199166671053],[113,277,72,0.09460488597420198],[113,277,73,0.0935131213535666],[113,277,74,0.09252197293706123],[113,277,75,0.09161244300505937],[113,277,76,0.09076155351919396],[113,277,77,0.08994273281569791],[113,277,78,0.08912629574135447],[113,277,79,0.0882800163806881],[113,278,64,0.11460862287112945],[113,278,65,0.11240087474928681],[113,278,66,0.11021275972641192],[113,278,67,0.10811186886515564],[113,278,68,0.10613441847182818],[113,278,69,0.1042939967445197],[113,278,70,0.10259885746039579],[113,278,71,0.10105209335631922],[113,278,72,0.09965152800707296],[113,278,73,0.09838971087950853],[113,278,74,0.0972540154570149],[113,278,75,0.09622684015191257],[113,278,76,0.09528591155215897],[113,278,77,0.09440468938437066],[113,278,78,0.09355287241904613],[113,278,79,0.09269700439750454],[113,279,64,0.1217855292228258],[113,279,65,0.11932780250437955],[113,279,66,0.11689186839953333],[113,279,67,0.11454113276768497],[113,279,68,0.11231258263453656],[113,279,69,0.11022446037404444],[113,279,70,0.1082893461623447],[113,279,71,0.1065141987304359],[113,279,72,0.10490021693602436],[113,279,73,0.10344281067543633],[113,279,74,0.10213168104575848],[113,279,75,0.10095100947858017],[113,279,76,0.09987975538363927],[113,279,77,0.09889206166466384],[113,279,78,0.09795776730224945],[113,279,79,0.09704302604127393],[113,280,64,0.12919038408467193],[113,280,65,0.1264952247791538],[113,280,66,0.12382170887566243],[113,280,67,0.12122839989532803],[113,280,68,0.11875223815690832],[113,280,69,0.11641527826200108],[113,280,70,0.11423380636511525],[113,280,71,0.11221824521805457],[113,280,72,0.11037297527126114],[113,280,73,0.10869626969364819],[113,280,74,0.10718034325430087],[113,280,75,0.10581151481117612],[113,280,76,0.10457048295941748],[113,280,77,0.10343271420648635],[113,280,78,0.1023689428645484],[113,280,79,0.10134578168406773],[113,281,64,0.1368170065525887],[113,281,65,0.13389891734845943],[113,281,66,0.131000046225397],[113,281,67,0.12817361376887024],[113,281,68,0.125455727543726],[113,281,69,0.12287134442415289],[113,281,70,0.12043976884616331],[113,281,71,0.11817442204669766],[113,281,72,0.11608261316666144],[113,281,73,0.11416542720655214],[113,281,74,0.1124177298285402],[113,281,75,0.11082828879385667],[113,281,76,0.10938001162490743],[113,281,77,0.10805029888907675],[113,281,78,0.10681151231727268],[113,281,79,0.10563155679656591],[113,282,64,0.14464928123356116],[113,282,65,0.1415242963600018],[113,282,66,0.13841392850410314],[113,282,67,0.13536572114429649],[113,282,68,0.13241421548621812],[113,282,69,0.12958631979512258],[113,282,70,0.12690362249387174],[113,282,71,0.12438202842457621],[113,282,72,0.12203147133226469],[113,282,73,0.11985574448017505],[113,282,74,0.11785244945758767],[113,282,75,0.11601306303208288],[113,282,76,0.11432312169435269],[113,282,77,0.1127625233466131],[113,282,78,0.1113059453968436],[113,282,79,0.10992337834216795],[113,283,64,0.1526605355229816],[113,283,65,0.1493457110487846],[113,283,66,0.14603889474516743],[113,283,67,0.14278178667651983],[113,283,68,0.13960669958704394],[113,283,69,0.13654153157453774],[113,283,70,0.13360939798368932],[113,283,71,0.13082814023246056],[113,283,72,0.12820997220235955],[113,283,73,0.12576124442418182],[113,283,74,0.12348232620253687],[113,283,75,0.1213676056121216],[113,283,76,0.11940560709320494],[113,283,77,0.11757922617448908],[113,283,78,0.11586608066000881],[113,283,79,0.1142389774346295],[113,284,64,0.16081272816971057],[113,284,65,0.15732554597992957],[113,284,66,0.15383799204245038],[113,284,67,0.15038591664557294],[113,284,68,0.1469988301002808],[113,284,69,0.1437046815066607],[113,284,70,0.14052736027139295],[113,284,71,0.1374860853832058],[113,284,72,0.13459497959250855],[113,284,73,0.13186275952842305],[113,284,74,0.1292925419925324],[113,284,75,0.12688176645957863],[113,284,76,0.12462223361056338],[113,284,77,0.12250025952450953],[113,284,78,0.12049694496309823],[113,284,79,0.11858855899907442],[113,285,64,0.16905544903212333],[113,285,65,0.16541313275518932],[113,285,66,0.16176060169026513],[113,285,67,0.15812799175258335],[113,285,68,0.1545415387401248],[113,285,69,0.1510283631997521],[113,285,70,0.14761241006711534],[113,285,71,0.1443137280736071],[113,285,72,0.14114796713369668],[113,285,73,0.13812598843910606],[113,285,74,0.13525358760652165],[113,285,75,0.13253133102009063],[113,285,76,0.12995450530814712],[113,285,77,0.1275131796966582],[113,285,78,0.12519238079128103],[113,285,79,0.12297237915720986],[113,286,64,0.17732473004541252],[113,286,65,0.17354347122748803],[113,286,66,0.16974107444904032],[113,286,67,0.16594220908256957],[113,286,68,0.16216947669090334],[113,286,69,0.15844838865893485],[113,286,70,0.15480229450960611],[113,286,71,0.15125156219723085],[113,286,72,0.1478129958039099],[113,286,73,0.1444993615480985],[113,286,74,0.14131902256807216],[113,286,75,0.13827568274328766],[113,286,76,0.13536823961975103],[113,286,77,0.13259074631264922],[113,286,78,0.1299324820720922],[113,286,79,0.12737813101730402],[113,287,64,0.185541667514676],[113,287,65,0.18163576035369344],[113,287,66,0.17769717508128627],[113,287,67,0.17374543339725884],[113,287,68,0.16979926200615086],[113,287,69,0.16588192424999595],[113,287,70,0.16201562729208172],[113,287,71,0.1582206142068678],[113,287,72,0.15451450088562083],[113,287,73,0.1509117159654211],[113,287,74,0.14742304436589387],[113,287,75,0.14405527482555572],[113,287,76,0.1408109516392597],[113,287,77,0.13768823061093485],[113,287,78,0.13468083905298978],[113,287,79,0.13177813948674408],[113,288,64,0.19361085591949018],[113,288,65,0.18868708079308866],[113,288,66,0.18300144956768383],[113,288,67,0.17827388808434713],[113,288,68,0.17450907789687747],[113,288,69,0.17168181420881304],[113,288,70,0.16914971849865232],[113,288,71,0.1651201557109624],[113,288,72,0.16115488866154806],[113,288,73,0.1572697802173242],[113,288,74,0.1534778673738872],[113,288,75,0.14978891161765814],[113,288,76,0.14620904803577633],[113,288,77,0.14274053333394943],[113,288,78,0.13938159274516662],[113,288,79,0.13612636563957783],[113,289,64,0.19739442985445657],[113,289,65,0.190654721924375],[113,289,66,0.18484532719113655],[113,289,67,0.1799991953734913],[113,289,68,0.17612254214955897],[113,289,69,0.17319132576871477],[113,289,70,0.1711478033761591],[113,289,71,0.16990024376554466],[113,289,72,0.1676119464970798],[113,289,73,0.16345547261092552],[113,289,74,0.15937091562817685],[113,289,75,0.1553708439868321],[113,289,76,0.1514648349272754],[113,289,77,0.1476591164868115],[113,289,78,0.14395630306560778],[113,289,79,0.14035522453031316],[113,290,64,0.19955997576847803],[113,290,65,0.19269772477822353],[113,290,66,0.18676724650004406],[113,290,67,0.18180337414415487],[113,290,68,0.17781397995550766],[113,290,69,0.17477636610022376],[113,290,70,0.17263373001474036],[113,290,71,0.17129480346025472],[113,290,72,0.17062945436651814],[113,290,73,0.1693413709096679],[113,290,74,0.16498099024423216],[113,290,75,0.16068726835125813],[113,290,76,0.15647296152224052],[113,290,77,0.15234799389874693],[113,290,78,0.14831908870537874],[113,290,79,0.1443894878227185],[113,291,64,0.20177790271811777],[113,291,65,0.19479871004188037],[113,291,66,0.18875083253675023],[113,291,67,0.1836710426175551],[113,291,68,0.17956897920030862],[113,291,69,0.17642345748853308],[113,291,70,0.17417884799317052],[113,291,71,0.17274464646674714],[113,291,72,0.17199097238286293],[113,291,73,0.17175135702272215],[113,291,74,0.17023810556383037],[113,291,75,0.1656767052661258],[113,291,76,0.16118040575344633],[113,291,77,0.1567623729068286],[113,291,78,0.15243298413086848],[113,291,79,0.14819945158621614],[113,292,64,0.2040299598667769],[113,292,65,0.19694037163289316],[113,292,66,0.19077973910720664],[113,292,67,0.1855868167192696],[113,292,68,0.1813731071675983],[113,292,69,0.17811909498103434],[113,292,70,0.1757705441247643],[113,292,71,0.17423800367035996],[113,292,72,0.17339220794035742],[113,292,73,0.1730667162185561],[113,292,74,0.1731525335445812],[113,292,75,0.1703047273669235],[113,292,76,0.1655604025834625],[113,292,77,0.16088280760332996],[113,292,78,0.15628536464374976],[113,292,79,0.15177867335279796],[113,293,64,0.20629831250030728],[113,293,65,0.1991057526820998],[113,293,66,0.19283791609647283],[113,293,67,0.1875355689423171],[113,293,68,0.18321216126718776],[113,293,69,0.1798499893893033],[113,293,70,0.17739641723415722],[113,293,71,0.17576332283415252],[113,293,72,0.17482240543756047],[113,293,73,0.17440765619896254],[113,293,74,0.17440967028379614],[113,293,75,0.17455178524281814],[113,293,76,0.16960000634875746],[113,293,77,0.16470274650782474],[113,293,78,0.1598757333742361],[113,293,79,0.15513225054488913],[113,294,64,0.20856584717335674],[113,294,65,0.2012785427473899],[113,294,66,0.19490989879413434],[113,294,67,0.1895027099354623],[113,294,68,0.18507244313803128],[113,294,69,0.18160333424953906],[113,294,70,0.17904453839627438],[113,294,71,0.1773095225994564],[113,294,72,0.17627128537275183],[113,294,73,0.17576463952634244],[113,294,74,0.1756799946095844],[113,294,75,0.17595965005030545],[113,294,76,0.17329775505207917],[113,294,77,0.16822600664357784],[113,294,78,0.16321298397688505],[113,294,79,0.15827385342910083],[113,295,64,0.21081649724685847],[113,295,65,0.2034433962583537],[113,295,66,0.1969811192297498],[113,295,67,0.191474492816859],[113,295,68,0.1869410561261528],[113,295,69,0.18336709674157173],[113,295,70,0.18070373565281328],[113,295,71,0.17886627142139117],[113,295,72,0.17772931796722663],[113,295,73,0.17712888248224434],[113,295,74,0.17695541106536122],[113,295,75,0.17715082230415646],[113,295,76,0.1766615639952457],[113,295,77,0.17146448657489788],[113,295,78,0.16631291272369272],[113,295,79,0.1612230185711707],[113,296,64,0.21303558881648593],[113,296,65,0.20558627219163988],[113,296,66,0.19903823951814775],[113,296,67,0.19343834021284956],[113,296,68,0.18880622613735115],[113,296,69,0.18513033256625733],[113,296,70,0.1823639032060595],[113,296,71,0.18042429143916525],[113,296,72,0.17918802212446536],[113,296,73,0.178492649542628],[113,296,74,0.17822887405238397],[113,296,75,0.178338342625922],[113,296,76,0.17877271898800554],[113,296,77,0.17443611916447235],[113,296,78,0.16919598070102085],[113,296,79,0.16400270344803297],[113,297,64,0.2152102070322694],[113,297,65,0.2076947949772177],[113,297,66,0.20106950721477176],[113,297,67,0.19538319402212115],[113,297,68,0.19065764586488287],[113,297,69,0.18688352478145967],[113,297,70,0.18401633509023685],[113,297,71,0.18197568728136299],[113,297,72,0.18064028972538373],[113,297,73,0.17984957353956],[113,297,74,0.17949470406820123],[113,297,75,0.17951716836722864],[113,297,76,0.17986850213978645],[113,297,77,0.17716306458590284],[113,297,78,0.1718853265800028],[113,297,79,0.16663710262221018],[113,298,64,0.21732958280918913],[113,298,65,0.20975863663535912],[113,298,66,0.203065132680886],[113,298,67,0.19729988790502923],[113,298,68,0.19248684239193337],[113,298,69,0.18861894659642994],[113,298,70,0.1856540833202],[113,298,71,0.18351429980602574],[113,298,72,0.18208073525946933],[113,298,73,0.18119500150915002],[113,298,74,0.18074892992391556],[113,298,75,0.18068395970784462],[113,298,76,0.18095159376816844],[113,298,77,0.1796701439271837],[113,298,78,0.1744050302182735],[113,298,79,0.16914972565894554],[113,299,64,0.21938549992886744],[113,299,65,0.21176992014446228],[113,299,66,0.2050176884587655],[113,299,67,0.19918154249821546],[113,299,68,0.19428756816900258],[113,299,69,0.19033104812470997],[113,299,70,0.1872723405175979],[113,299,71,0.18503608477565558],[113,299,72,0.18350607079193385],[113,299,73,0.1825263662258565],[113,299,74,0.18198965694039076],[113,299,75,0.18183744435085353],[113,299,76,0.18202129343384166],[113,299,77,0.18198351354596265],[113,299,78,0.1767786271643422],[113,299,79,0.171561736767814],[113,300,64,0.22137272253235857],[113,300,65,0.21372364403971794],[113,300,66,0.20692253065687027],[113,300,67,0.2010239833545152],[113,300,68,0.19605621536620346],[113,300,69,0.1920168670955575],[113,300,70,0.18886884701450496],[113,300,71,0.18653951646713934],[113,300,72,0.18491550626687764],[113,300,73,0.18384358342315799],[113,300,74,0.18321746112339773],[113,300,75,0.1829788084192175],[113,300,76,0.18307934468170206],[113,300,77,0.1834762864501744],[113,300,78,0.1790278739747103],[113,300,79,0.17389055597793038],[113,301,64,0.22328944300392833],[113,301,65,0.2156181282425056],[113,301,66,0.20877824234489228],[113,301,67,0.20282618160804688],[113,301,68,0.19779225360036048],[113,301,69,0.19367646352378143],[113,301,70,0.19044432243440806],[113,301,71,0.1880260162164789],[113,301,72,0.1863111751463538],[113,301,73,0.18514947470047718],[113,301,74,0.18443580931758777],[113,301,75,0.1841121135536204],[113,301,76,0.18413034854357127],[113,301,77,0.18444786968897822],[113,301,78,0.18117176411841368],[113,301,79,0.17614872150970284],[113,302,64,0.22513775024594146],[113,302,65,0.21745548112064306],[113,302,66,0.2105870989587974],[113,302,67,0.2045907173646037],[113,302,68,0.19949869103703477],[113,302,69,0.1953133783381122],[113,302,70,0.19200292175067504],[113,302,71,0.189500405898456],[113,302,72,0.18769858538545986],[113,302,73,0.1864502161164865],[113,302,74,0.18565150533942135],[113,302,75,0.18524474021171736],[113,302,76,0.1851822033851488],[113,302,77,0.18542146623017453],[113,302,78,0.18322579413454418],[113,302,79,0.178343012886831],[113,303,64,0.22692411834483708],[113,303,65,0.2192420877794661],[113,303,66,0.21235555571583958],[113,303,67,0.20632426581732505],[113,303,68,0.20118255886744704],[113,303,69,0.1969351159680789],[113,303,70,0.19355271582247738],[113,303,71,0.19097138634120187],[113,303,72,0.1890870957434263],[113,303,73,0.18775581246876355],[113,303,74,0.1868751620890202],[113,303,75,0.1863878571687601],[113,303,76,0.18624657109716147],[113,303,77,0.18640916146928957],[113,303,78,0.18519808602397192],[113,303,79,0.180472478363724],[113,304,64,0.2286599156280864],[113,304,65,0.22098911958363399],[113,304,66,0.2140947570394426],[113,304,67,0.20803810608754464],[113,304,68,0.2028554191602008],[113,304,69,0.19855365088929766],[113,304,70,0.19510619640806728],[113,304,71,0.19245204067557456],[113,304,72,0.19049041743060557],[113,304,73,0.18908059725970147],[113,304,74,0.18812169964084952],[113,304,75,0.18755691721950274],[113,304,76,0.18733936963061856],[113,304,77,0.18742726150425193],[113,304,78,0.18707825809360387],[113,304,79,0.18252361804795653],[113,305,64,0.23036193411227754],[113,305,65,0.2227130649098041],[113,305,66,0.2158210679940945],[113,305,67,0.20974865279095706],[113,305,68,0.20453389608794373],[113,305,69,0.2001859581273054],[113,305,70,0.19668080565554938],[113,305,71,0.1939603626194809],[113,305,72,0.19192714109149994],[113,305,73,0.1904437583488104],[113,305,74,0.18941086931336348],[113,305,75,0.1887721790815245],[113,305,76,0.1884812918763054],[113,305,77,0.1884968079133876],[113,305,78,0.18774808180203517],[113,305,79,0.18270150577004934],[113,306,64,0.2320529393422856],[113,306,65,0.22443628113013636],[113,306,66,0.217556627730212],[113,306,67,0.21147801032906385],[113,306,68,0.20624023052892881],[113,306,69,0.201854567719904],[113,306,70,0.1982994900711075],[113,306,71,0.19551980969710647],[113,306,72,0.19342128912378787],[113,306,73,0.19186988929137122],[113,306,74,0.1907678037175788],[113,306,75,0.19005925549993014],[113,306,76,0.1896983508884791],[113,306,77,0.1896441189341973],[113,306,78,0.18549824847066285],[113,306,79,0.18021017030204906],[113,307,64,0.2337605431711556],[113,307,65,0.22618590943456132],[113,307,66,0.2193283002087109],[113,307,67,0.21325295326703353],[113,307,68,0.2080012839791449],[113,307,69,0.20358658644835267],[113,307,70,0.1999897350682288],[113,307,71,0.19715834666787063],[113,307,72,0.19500136549979413],[113,307,73,0.19338804495330636],[113,307,74,0.19222207976690014],[113,307,75,0.1914481871367332],[113,307,76,0.19102096954404585],[113,307,77,0.18855754567337168],[113,307,78,0.18277936176752568],[113,307,79,0.17725293985385648],[113,308,64,0.23548362090016645],[113,308,65,0.2279610553951216],[113,308,66,0.2211355111959214],[113,308,67,0.2150733094217103],[113,308,68,0.20981735853669686],[113,308,69,0.20538285185432326],[113,308,70,0.2017529624221819],[113,308,71,0.1988780148076087],[113,308,72,0.19667005177900912],[113,308,73,0.19500155487938625],[113,308,74,0.1937776878486327],[113,308,75,0.1929436498739338],[113,308,76,0.1919363950163616],[113,308,77,0.18566013535366627],[113,308,78,0.17962340470320637],[113,308,79,0.17386736902474834],[113,309,64,0.23515805428001127],[113,309,65,0.2297324706536071],[113,309,66,0.2229498478416785],[113,309,67,0.2169114847658065],[113,309,68,0.21166165460563063],[113,309,69,0.20721732986621164],[113,309,70,0.20356387414200733],[113,309,71,0.20065422703725713],[113,309,72,0.1984034566130385],[113,309,73,0.19668722771409658],[113,309,74,0.19541218842411373],[113,309,75,0.19452405807102333],[113,309,76,0.1888879574130524],[113,309,77,0.18234636669920606],[113,309,78,0.17606715493004133],[113,309,79,0.17009610964082406],[113,310,64,0.2331176012926578],[113,310,65,0.22997329567784622],[113,310,66,0.22474454197889868],[113,310,67,0.2187414052309667],[113,310,68,0.21350877470451435],[113,310,69,0.2090652782013716],[113,310,70,0.20539836145903342],[113,310,71,0.20246349046101642],[113,310,72,0.2001786945466007],[113,310,73,0.1984227948857414],[113,310,74,0.1971039834258955],[113,310,75,0.19244269977383074],[113,310,76,0.18543375965899322],[113,310,77,0.1786504357156582],[113,310,78,0.17215099806575507],[113,310,79,0.1659854432733148],[113,311,64,0.23099659945326992],[113,311,65,0.22799183257320277],[113,311,66,0.22513504175164314],[113,311,67,0.22053966852658727],[113,311,68,0.21533586280981434],[113,311,69,0.2109043762409275],[113,311,70,0.20723462786853308],[113,311,71,0.20428452461697766],[113,311,72,0.20197500067530766],[113,311,73,0.20018802171069086],[113,311,74,0.19625029030580843],[113,311,75,0.18884120835809937],[113,311,76,0.18160441775391567],[113,311,77,0.17460902063461417],[113,311,78,0.16791752251490047],[113,311,79,0.16158361054307785],[113,312,64,0.228812552048415],[113,312,65,0.2259399896526542],[113,312,66,0.22321684507945494],[113,312,67,0.2206015294016977],[113,312,68,0.21712252535260518],[113,312,69,0.21271464243909238],[113,312,70,0.2090531022412173],[113,312,71,0.2060981697356714],[113,312,72,0.2037736336936125],[113,312,73,0.2001901857350068],[113,312,74,0.19247246939097734],[113,312,75,0.1848607709239284],[113,312,76,0.17743223710469422],[113,312,77,0.17025991361140044],[113,312,78,0.1634098898684243],[113,312,79,0.15693893112701787],[113,313,64,0.22657651084603697],[113,313,65,0.22382684651263102],[113,313,66,0.22122526783732915],[113,313,67,0.21873347588742692],[113,313,68,0.2163626953225009],[113,313,69,0.21414084827195354],[113,313,70,0.21083535063166578],[113,313,71,0.20788616328939774],[113,313,72,0.2041079304498296],[113,313,73,0.1961893322691644],[113,313,74,0.18830270087943154],[113,313,75,0.18052935968147382],[113,313,76,0.17294984725191184],[113,313,77,0.16564040474827874],[113,313,78,0.15866997372583275],[113,313,79,0.15209770711944418],[113,314,64,0.22429269077553765],[113,314,65,0.2216550882944247],[113,314,66,0.21916147128295826],[113,314,67,0.21677694544597273],[113,314,68,0.2145156674960245],[113,314,69,0.21240672147520506],[113,314,70,0.2104483015305337],[113,314,71,0.20783158209841956],[113,314,72,0.19982602974524213],[113,314,73,0.19177704366579132],[113,314,74,0.18376529271355369],[113,314,75,0.17587477160912413],[113,314,76,0.16818861914875877],[113,314,77,0.16078546576518218],[113,314,78,0.15373631434779975],[113,314,79,0.1471019572332325],[113,315,64,0.22195848287591183],[113,315,65,0.21942112171601003],[113,315,66,0.2170209446126598],[113,315,67,0.21472646134265427],[113,315,68,0.21255438742751132],[113,315,69,0.21053454727654541],[113,315,70,0.20866493697826785],[113,315,71,0.2032066323534832],[113,315,72,0.1951100942554798],[113,315,73,0.18697504313556018],[113,315,74,0.17888404608182137],[113,315,75,0.17092299882766415],[113,315,76,0.16317681869046033],[113,315,77,0.15572568654583405],[113,315,78,0.14864184190978905],[113,315,79,0.1419869341695533],[113,316,64,0.21956486872045378],[113,316,65,0.21711559054090604],[113,316,66,0.2147941168721795],[113,316,67,0.21257225666653795],[113,316,68,0.21046885599152795],[113,316,69,0.2085140460270563],[113,316,70,0.20616361565401198],[113,316,71,0.198125518014685],[113,316,72,0.18998054832973682],[113,316,73,0.18180429541398746],[113,316,74,0.17368054461174745],[113,316,75,0.16569632224688324],[113,316,76,0.15793750056410263],[113,316,77,0.15048496843673537],[113,316,78,0.14341137204354806],[113,316,79,0.13677842865693748],[113,317,64,0.21709724058931196],[113,317,65,0.21472429494178735],[113,317,66,0.21246736749298473],[113,317,67,0.21030137579410585],[113,317,68,0.20824684154194933],[113,317,69,0.20633378044540285],[113,317,70,0.20066245565306093],[113,317,71,0.19260863504470027],[113,317,72,0.18445678797592774],[113,317,73,0.1762831778050218],[113,317,74,0.1681721545682853],[113,317,75,0.1602111333762275],[113,317,76,0.15248614710522726],[113,317,77,0.14507797877982231],[113,317,78,0.13805887794447336],[113,317,79,0.1314898642406429],[113,318,64,0.21453662651030064],[113,318,65,0.21222951403317764],[113,318,66,0.2100244348887592],[113,318,67,0.2078991660676162],[113,318,68,0.2058754589617081],[113,318,69,0.20259193082107724],[113,318,70,0.1947081897545043],[113,318,71,0.186674955359892],[113,318,72,0.17855518899448547],[113,318,73,0.1704253441904688],[113,318,74,0.16236973492421153],[113,318,75,0.15447548290921642],[113,318,76,0.14682805051267503],[113,318,77,0.13950736477397524],[113,318,78,0.13258453688904331],[113,318,79,0.12611918042401354],[113,319,64,0.2118613195909169],[113,319,65,0.20961173117018853],[113,319,66,0.20744822288635867],[113,319,67,0.2053511596459774],[113,319,68,0.20334312900775833],[113,319,69,0.19616477093772608],[113,319,70,0.18832016872895024],[113,319,71,0.18033982720439776],[113,319,72,0.17228679042652384],[113,319,73,0.16423728068033522],[113,319,74,0.15627505571027236],[113,319,75,0.14848635421757594],[113,319,76,0.1409554362848301],[113,319,77,0.13376072425842062],[113,319,78,0.1269715484914956],[113,319,79,0.1206455012367611],[114,-64,64,0.32993431121130107],[114,-64,65,0.3356220978880019],[114,-64,66,0.34142239400491053],[114,-64,67,0.34731586272187015],[114,-64,68,0.353308774403545],[114,-64,69,0.3594199423358556],[114,-64,70,0.36566035357430693],[114,-64,71,0.37203321532395356],[114,-64,72,0.37853447639628757],[114,-64,73,0.38515338214481865],[114,-64,74,0.3918730629704165],[114,-64,75,0.3986711563889024],[114,-64,76,0.40552046255699614],[114,-64,77,0.41238963305930454],[114,-64,78,0.4192438926686723],[114,-64,79,0.4260457937061526],[114,-63,64,0.3310582622702194],[114,-63,65,0.3368472901723879],[114,-63,66,0.3427520908683188],[114,-63,67,0.34875466601700794],[114,-63,68,0.35486106627337255],[114,-63,69,0.36108850707595724],[114,-63,70,0.36744625033321515],[114,-63,71,0.37393574091682463],[114,-63,72,0.3805511855114653],[114,-63,73,0.3872801601255464],[114,-63,74,0.3941042461841261],[114,-63,75,0.4009996950321072],[114,-63,76,0.4079381205858585],[114,-63,77,0.41488721978537674],[114,-63,78,0.4218115204170302],[114,-63,79,0.4286731557999678],[114,-62,64,0.33236979454782345],[114,-62,65,0.3382466670113781],[114,-62,66,0.34424107949742744],[114,-62,67,0.35033666340375674],[114,-62,68,0.3565391713385416],[114,-62,69,0.3628639784673231],[114,-62,70,0.3693185431662438],[114,-62,71,0.3759026141667155],[114,-62,72,0.3826088410104852],[114,-62,73,0.3894234096318651],[114,-62,74,0.39632670287639676],[114,-62,75,0.40329398567728514],[114,-62,76,0.41029611452684656],[114,-62,77,0.4173002708005906],[114,-62,78,0.424270717416451],[114,-62,79,0.4311695782421469],[114,-61,64,0.33385425544810743],[114,-61,65,0.33980579429306995],[114,-61,66,0.3458751567832314],[114,-61,67,0.35204785231499847],[114,-61,68,0.35832927891188626],[114,-61,69,0.36473278762861133],[114,-61,70,0.37126399877460786],[114,-61,71,0.3779210609590233],[114,-61,72,0.3846952691588382],[114,-61,73,0.391571705587801],[114,-61,74,0.3985299031160232],[114,-61,75,0.4055445309070539],[114,-61,76,0.4125861018603341],[114,-61,77,0.41962170137272764],[114,-61,78,0.42661573686334886],[114,-61,79,0.4335307074421886],[114,-60,64,0.33549284455381206],[114,-60,65,0.3415064671566868],[114,-60,66,0.34763677077553096],[114,-60,67,0.35387133837029033],[114,-60,68,0.3602151738128247],[114,-60,69,0.36667947502252896],[114,-60,70,0.37326802615283705],[114,-60,71,0.3799774912930785],[114,-60,72,0.3867980188038436],[114,-60,73,0.39371386719527907],[114,-60,74,0.40070405228401096],[114,-60,75,0.407743015285911],[114,-60,76,0.414801311427529],[114,-60,77,0.4218463185892634],[114,-60,78,0.4288429654282825],[114,-60,79,0.4357544783697911],[114,-59,64,0.33726369802445244],[114,-59,65,0.34332782889825103],[114,-59,66,0.3495061735551455],[114,-59,67,0.3557885217519868],[114,-59,68,0.362179453035339],[114,-59,69,0.3686879297096435],[114,-59,70,0.375315926823368],[114,-59,71,0.38205874565700504],[114,-59,72,0.38890558648706397],[114,-59,73,0.39584014249429605],[114,-59,74,0.40284121457377725],[114,-59,75,0.40988334673022203],[114,-59,76,0.4169374816714526],[114,-59,77,0.42397163614686206],[114,-59,78,0.4309515955160211],[114,-59,79,0.4378416269762446],[114,-58,64,0.33914318757984785],[114,-58,65,0.3452477043318306],[114,-58,66,0.35146278762490385],[114,-58,67,0.3577804954055137],[114,-58,68,0.36420495149455695],[114,-58,69,0.37074283340748954],[114,-58,70,0.37739434371568914],[114,-58,71,0.3841535317548361],[114,-58,72,0.3910088213478924],[114,-58,73,0.39794355984505336],[114,-58,74,0.4049365882852234],[114,-58,75,0.41196283241335707],[114,-58,76,0.4189939142211222],[114,-58,77,0.4259987836153924],[114,-58,78,0.4329443697600723],[114,-58,79,0.43979625158265384],[114,-57,64,0.3411074339782934],[114,-57,65,0.3472441475008207],[114,-57,66,0.3534867857111109],[114,-57,67,0.35982965496507846],[114,-57,68,0.3662763767731654],[114,-57,69,0.37283130930352903],[114,-57,70,0.3794929086710691],[114,-57,71,0.3862540516029344],[114,-57,72,0.3931025098738471],[114,-57,73,0.40002144642785803],[114,-57,74,0.40698993305013165],[114,-57,75,0.41398348938621715],[114,-57,76,0.42097464304294363],[114,-57,77,0.42793351044511596],[114,-57,78,0.4348283980656756],[114,-57,79,0.44162642359482546],[114,-56,64,0.3431306102388277],[114,-56,65,0.3492932550407265],[114,-56,66,0.3555564111386097],[114,-56,67,0.36191652294390186],[114,-56,68,0.3683766343812976],[114,-56,69,0.37493875118366143],[114,-56,70,0.38159958751052203],[114,-56,71,0.3883508864821604],[114,-56,72,0.3951798381472941],[114,-56,73,0.4020695193286303],[114,-56,74,0.40899935526906533],[114,-56,75,0.4159456029396122],[114,-56,76,0.42288185581068627],[114,-56,77,0.4297795698317652],[114,-56,78,0.4366086103107019],[114,-56,79,0.44333781933403205],[114,-55,64,0.34516519191540185],[114,-55,65,0.35134609761165214],[114,-55,66,0.35762157721876753],[114,-55,67,0.36399000739727666],[114,-55,68,0.37045376544707237],[114,-55,69,0.3770125319009365],[114,-55,70,0.3836613409510289],[114,-55,71,0.3903908922969935],[114,-55,72,0.39718790801993853],[114,-55,73,0.4040355115846803],[114,-55,74,0.410913628957878],[114,-55,75,0.41779941177241836],[114,-55,76,0.42466768241279323],[114,-55,77,0.4314914008428403],[114,-55,78,0.4382421529461312],[114,-55,79,0.44489066010141487],[114,-54,64,0.34715816335252625],[114,-54,65,0.3533471064202229],[114,-54,66,0.3596244098314482],[114,-54,67,0.36599009344058464],[114,-54,68,0.3724457764646735],[114,-54,69,0.37898892176070076],[114,-54,70,0.38561303008485953],[114,-54,71,0.39230793061553904],[114,-54,72,0.3990600682933209],[114,-54,73,0.40585281406694373],[114,-54,74,0.4126667981145535],[114,-54,75,0.4194802660560754],[114,-54,76,0.4262694581200139],[114,-54,77,0.43300901117701185],[114,-54,78,0.439672383503134],[114,-54,79,0.44623230208898496],[114,-53,64,0.3490630201928826],[114,-53,65,0.355247782284983],[114,-53,66,0.36151465455563964],[114,-53,67,0.3678649447174997],[114,-53,68,0.374299421652487],[114,-53,69,0.38081350359994],[114,-53,70,0.38739937183917156],[114,-53,71,0.39404622243835563],[114,-53,72,0.4007404726822935],[114,-53,73,0.4074659921017847],[114,-53,74,0.41420435828059393],[114,-53,75,0.42093513756509127],[114,-53,76,0.427636190750845],[114,-53,77,0.43428400377036525],[114,-53,78,0.4408540433569143],[114,-53,79,0.44732113761174114],[114,-52,64,0.3508401903990537],[114,-52,65,0.35700707156878875],[114,-52,66,0.3632500029374269],[114,-52,67,0.36957117539371886],[114,-52,68,0.3759704166140164],[114,-52,69,0.3824413253141815],[114,-52,70,0.38897502910902493],[114,-52,71,0.3955603764026078],[114,-52,72,0.4021840483781582],[114,-52,73,0.4088306985222261],[114,-52,74,0.41548311999620363],[114,-52,75,0.42212244111827707],[114,-52,76,0.4287283491679044],[114,-52,77,0.4352793426736545],[114,-52,78,0.4417530122938474],[114,-52,79,0.4481263503488221],[114,-51,64,0.3524575315137641],[114,-51,65,0.3585918098391514],[114,-51,66,0.3647964776833438],[114,-51,67,0.37107417176281626],[114,-51,68,0.3774236917312],[114,-51,69,0.3838370818100397],[114,-51,70,0.3903047197843379],[114,-51,71,0.3968154253676363],[114,-51,72,0.40335646276971693],[114,-51,73,0.409913575223275],[114,-51,74,0.4164710519535154],[114,-51,75,0.42301182802323833],[114,-51,76,0.4295176174324704],[114,-51,77,0.4359690797967188],[114,-51,78,0.4423460208717157],[114,-51,79,0.44862762713603144],[114,-50,64,0.353890960596389],[114,-50,65,0.35997729799148437],[114,-50,66,0.36612894979481075],[114,-50,67,0.37234854476063545],[114,-50,68,0.3786337748129724],[114,-50,69,0.3849754239034152],[114,-50,70,0.39136344973822323],[114,-50,71,0.39778698329995993],[114,-50,72,0.40423420613603567],[114,-50,73,0.4106922657217198],[114,-50,74,0.4171472295874151],[114,-50,75,0.42358407884471233],[114,-50,76,0.42998674168693146],[114,-50,77,0.4363381673782137],[114,-50,78,0.442620441181111],[114,-50,79,0.4488149406070383],[114,-49,64,0.3538339889550805],[114,-49,65,0.36034919067481397],[114,-49,66,0.3669831514876886],[114,-49,67,0.373376363089618],[114,-49,68,0.3795837384931902],[114,-49,69,0.38584067229919866],[114,-49,70,0.39213703284063517],[114,-49,71,0.39846259589761873],[114,-49,72,0.4048067814082157],[114,-49,73,0.41115843612271585],[114,-49,74,0.41750566312965937],[114,-49,75,0.4238356991199608],[114,-49,76,0.4301348401883617],[114,-49,77,0.43638841690000796],[114,-49,78,0.44258081927464327],[114,-49,79,0.4486955722628793],[114,-48,64,0.3532893751784807],[114,-48,65,0.3598533930467219],[114,-48,66,0.36654320214508074],[114,-48,67,0.37334001975966097],[114,-48,68,0.3802290919503548],[114,-48,69,0.38642372830960275],[114,-48,70,0.3926212448454292],[114,-48,71,0.3988431889167927],[114,-48,72,0.4050804510419313],[114,-48,73,0.41132377672613873],[114,-48,74,0.4175634634609578],[114,-48,75,0.4237891152820738],[114,-48,76,0.4299894559247614],[114,-48,77,0.4361522015317247],[114,-48,78,0.4422639937788582],[114,-48,79,0.44831039419109103],[114,-47,64,0.35284337686110406],[114,-47,65,0.35945506403212363],[114,-47,66,0.36619789111237405],[114,-47,67,0.37305463551894863],[114,-47,68,0.3800121281026979],[114,-47,69,0.3867217494074724],[114,-47,70,0.3928182103500057],[114,-47,71,0.39893605211612065],[114,-47,72,0.40506776900753766],[114,-47,73,0.41120610096426674],[114,-47,74,0.41734359430336754],[114,-47,75,0.42347223090185143],[114,-47,76,0.4295831271069478],[114,-47,77,0.435666303558138],[114,-47,78,0.44171052699979346],[114,-47,79,0.447703225052334],[114,-46,64,0.35250549315350044],[114,-46,65,0.3591609964902175],[114,-46,66,0.36595099941445325],[114,-46,67,0.37286025993720695],[114,-46,68,0.3798773384304925],[114,-46,69,0.38673798305339313],[114,-46,70,0.3927353086907595],[114,-46,71,0.39875279628158844],[114,-46,72,0.40478458767341535],[114,-46,73,0.41082542092312013],[114,-46,74,0.41687005476191835],[114,-46,75,0.42291277305571506],[114,-46,76,0.42894697078344657],[114,-46,77,0.43496482294069777],[114,-46,78,0.4409570376524228],[114,-46,79,0.4469126946485612],[114,-45,64,0.35227755193548016],[114,-45,65,0.35897060345142884],[114,-45,66,0.36579933262032865],[114,-45,67,0.3727508655573504],[114,-45,68,0.37981564831633086],[114,-45,69,0.3864811708782424],[114,-45,70,0.3923846350132518],[114,-45,71,0.39830888227829325],[114,-45,72,0.4042496657795394],[114,-45,73,0.4102036447787192],[114,-45,74,0.4161676761337242],[114,-45,75,0.4221381975723954],[114,-45,76,0.4281107045483721],[114,-45,77,0.43407932229487767],[114,-45,78,0.44003647454992334],[114,-45,79,0.44597265027630684],[114,-44,64,0.3521544381674794],[114,-44,65,0.35887664255692947],[114,-44,66,0.3657334312912923],[114,-44,67,0.37271464465387105],[114,-44,68,0.3798127767336233],[114,-44,69,0.38596494161009565],[114,-44,70,0.39178244775790844],[114,-44,71,0.39762313385101244],[114,-44,72,0.40348425717579667],[114,-44,73,0.40936425172372615],[114,-44,74,0.41526189267543295],[114,-44,75,0.4211755644855723],[114,-44,76,0.42710263452376024],[114,-44,77,0.43303893407565514],[114,-44,78,0.4389783483464295],[114,-44,79,0.44491251693840894],[114,-43,64,0.35212482720760724],[114,-43,65,0.3588659463405601],[114,-43,66,0.36573828821395116],[114,-43,67,0.37273470402463044],[114,-43,68,0.3794968875322757],[114,-43,69,0.3852071911110054],[114,-43,70,0.39094860108739077],[114,-43,71,0.39671723288705024],[114,-43,72,0.40251167925196524],[114,-43,73,0.40833194354976654],[114,-43,74,0.41417848575588995],[114,-43,75,0.42005138340187564],[114,-43,76,0.4259496096265456],[114,-43,77,0.43187043029720673],[114,-43,78,0.43780892198691934],[114,-43,79,0.4437576124032908],[114,-42,64,0.3521719252288761],[114,-42,65,0.3589201604580367],[114,-42,66,0.365794074465779],[114,-42,67,0.37278976971784555],[114,-42,68,0.3785887474660595],[114,-42,69,0.38422944779736395],[114,-42,70,0.3899059606884919],[114,-42,71,0.3956151957600683],[114,-42,72,0.40135685989009956],[114,-42,73,0.4071322719532794],[114,-42,74,0.4129433007223586],[114,-42,75,0.41879142839429706],[114,-42,76,0.4246769420304874],[114,-42,77,0.4305982550128848],[114,-42,78,0.43655136041813153],[114,-42,79,0.44252941800189194],[114,-41,64,0.35227421894764566],[114,-41,65,0.35901649204694164],[114,-41,66,0.3658768764408953],[114,-41,67,0.3719419882684261],[114,-41,68,0.3774746111127606],[114,-41,69,0.38305622163328956],[114,-41,70,0.38867980129524266],[114,-41,71,0.39434282928545095],[114,-41,72,0.4000458616799015],[114,-41,73,0.40579124054061266],[114,-41,74,0.4115819357146648],[114,-41,75,0.4174205219354025],[114,-41,76,0.4233082936362593],[114,-41,77,0.42924451968330657],[114,-41,78,0.43522584001539905],[114,-41,79,0.44124580595297863],[114,-40,64,0.3524062369417631],[114,-40,65,0.3591284704705692],[114,-40,66,0.3652965875647533],[114,-40,67,0.3707037315441029],[114,-40,68,0.3761808317752158],[114,-40,69,0.3817143348091666],[114,-40,70,0.38729718420020703],[114,-40,71,0.39292716473548567],[114,-40,72,0.39860538205271817],[114,-40,73,0.4043348804204336],[114,-40,74,0.41011940157128146],[114,-40,75,0.41596228729179824],[114,-40,76,0.42186552826756346],[114,-40,77,0.42782896146286203],[114,-40,78,0.43384961808089734],[114,-40,79,0.43992122390666566],[114,-39,64,0.352539324895545],[114,-39,65,0.35870209240508033],[114,-39,66,0.3639523604744896],[114,-39,67,0.3693044527354062],[114,-39,68,0.3747358309968973],[114,-39,69,0.38023223214882423],[114,-39,70,0.3857863129494866],[114,-39,71,0.39139586828811535],[114,-39,72,0.39706222791200696],[114,-39,73,0.402788798190316],[114,-39,74,0.4085797518867111],[114,-39,75,0.4144388687131969],[114,-39,76,0.4203685292196571],[114,-39,77,0.4263688643402855],[114,-39,78,0.43243706267120835],[114,-39,79,0.4385668372957856],[114,-38,64,0.3522273657089797],[114,-38,65,0.3572778419168069],[114,-38,66,0.3624684686491012],[114,-38,67,0.3677740216012663],[114,-38,68,0.3731693518774073],[114,-38,69,0.37863926922871566],[114,-38,70,0.384175865353558],[114,-38,71,0.3897766262159971],[114,-38,72,0.39544276326718836],[114,-38,73,0.40117769504931106],[114,-38,74,0.40698568220017844],[114,-38,75,0.41287061866573105],[114,-38,76,0.418834981698662],[114,-38,77,0.4248789429766958],[114,-38,78,0.43099964291582477],[114,-38,79,0.43719062998469616],[114,-37,64,0.35075667566957985],[114,-37,65,0.3557376067581973],[114,-37,66,0.36087590919860607],[114,-37,67,0.36614321269462113],[114,-37,68,0.3715116891148285],[114,-37,69,0.37696497614139796],[114,-37,70,0.3824942998912812],[114,-37,71,0.3880965030636623],[114,-37,72,0.3937723283143085],[114,-37,73,0.39952485569996044],[114,-37,74,0.4053580972222046],[114,-37,75,0.41127575128047134],[114,-37,76,0.4172801196060118],[114,-37,77,0.42337118899521087],[114,-37,78,0.42954587989376886],[114,-37,79,0.43579746360574934],[114,-36,64,0.3491950071408804],[114,-36,65,0.3541130012433166],[114,-36,66,0.35920607122583514],[114,-36,67,0.3644428854843612],[114,-36,68,0.36979289355005096],[114,-36,69,0.37523829479483095],[114,-36,70,0.38076913453949024],[114,-36,71,0.3863812710109567],[114,-36,72,0.3920746283521802],[114,-36,73,0.3978516056428812],[114,-36,74,0.40371564493940704],[114,-36,75,0.40966996111574466],[114,-36,76,0.4157164360437579],[114,-36,77,0.4218546793912885],[114,-36,78,0.42808125804429753],[114,-36,79,0.43438909587636076],[114,-35,64,0.34757389222255203],[114,-35,65,0.3524354440526013],[114,-35,66,0.35748987279086136],[114,-35,67,0.36270313744856],[114,-35,68,0.3680419489616758],[114,-35,69,0.3734867876085508],[114,-35,70,0.379026196025516],[114,-35,71,0.38465470858068124],[114,-35,72,0.39037109087661664],[114,-35,73,0.39617673541471793],[114,-35,74,0.40207421637882723],[114,-35,75,0.408066006265761],[114,-35,76,0.4141533568430958],[114,-35,77,0.42033534665220057],[114,-35,78,0.42660809699952784],[114,-35,79,0.43296415809420985],[114,-34,64,0.34592403542586275],[114,-34,65,0.35073525905151043],[114,-34,66,0.3557568690090885],[114,-34,67,0.3609524277861352],[114,-34,68,0.36628591884471423],[114,-34,69,0.37173581544810047],[114,-34,70,0.3772888374752853],[114,-34,71,0.38293786681788533],[114,-34,72,0.38868018915849395],[114,-34,73,0.39451589027636513],[114,-34,74,0.40044640976165885],[114,-34,75,0.40647325478867175],[114,-34,76,0.41259687635081765],[114,-34,77,0.4188157100979316],[114,-34,78,0.4251253836421772],[114,-34,79,0.4315180919150043],[114,-33,64,0.34427438779393793],[114,-33,65,0.34904074528161816],[114,-33,66,0.35403432886858416],[114,-33,67,0.35921666939500696],[114,-33,68,0.36454906090342915],[114,-33,69,0.3700076826316152],[114,-33,70,0.3755771224167172],[114,-33,71,0.3812483010490986],[114,-33,72,0.3870167305851999],[114,-33,73,0.3928809238244595],[114,-33,74,0.39884095773401673],[114,-33,75,0.4048971933761105],[114,-33,76,0.4110491546480817],[114,-33,77,0.4172945678859549],[114,-33,78,0.4236285641121143],[114,-33,79,0.4300430454280798],[114,-32,64,0.3426511884307174],[114,-32,65,0.34737721368899815],[114,-32,66,0.35234627836905796],[114,-32,67,0.35751828677845804],[114,-32,68,0.36285190699827513],[114,-32,69,0.36832074684710825],[114,-32,70,0.37390697309690224],[114,-32,71,0.3795992663217722],[114,-32,72,0.3853911080293669],[114,-32,73,0.3912792139750617],[114,-32,74,0.39726211632915837],[114,-32,75,0.403338897143269],[114,-32,76,0.40950807532264244],[114,-32,77,0.4157666490584902],[114,-32,78,0.4221092954107526],[114,-32,79,0.42852772845957543],[114,-31,64,0.3410769710295713],[114,-31,65,0.34576598818750093],[114,-31,66,0.350712507615113],[114,-31,67,0.3558752375682809],[114,-31,68,0.36121030630945455],[114,-31,69,0.36668849183628105],[114,-31,70,0.37228928108253256],[114,-31,71,0.3779988746278867],[114,-31,72,0.383808512504223],[114,-31,73,0.3897129397547137],[114,-31,74,0.3957090142918665],[114,-31,75,0.40179445938419434],[114,-31,76,0.40796676287005895],[114,-31,77,0.414222224953523],[114,-31,78,0.4205551561830183],[114,-31,79,0.42695722695152216],[114,-30,64,0.3395695330420088],[114,-30,65,0.34422336870217957],[114,-30,66,0.34914753954146927],[114,-30,67,0.35429999539485807],[114,-30,68,0.35963442951666075],[114,-30,69,0.3651185607321269],[114,-30,70,0.37072897813780775],[114,-30,71,0.37644921203265336],[114,-30,72,0.38226810537301603],[114,-30,73,0.3881783173323403],[114,-30,74,0.3941749613832234],[114,-30,75,0.4002543801129419],[114,-30,76,0.4064130587631138],[114,-30,77,0.41264667925182086],[114,-30,78,0.418949316194442],[114,-30,79,0.4253127761896821],[114,-29,64,0.3381408651911533],[114,-29,65,0.34275955390061874],[114,-29,66,0.3476595580077005],[114,-29,67,0.3527984918905023],[114,-29,68,0.3581277318459862],[114,-29,69,0.3636117479831029],[114,-29,70,0.3692240654124317],[114,-29,71,0.37494541385933455],[114,-29,72,0.3807621484006049],[114,-29,73,0.38666479373554696],[114,-29,74,0.39264671428252024],[114,-29,75,0.3987029121972562],[114,-29,76,0.4048289552014544],[114,-29,77,0.41102003589108743],[114,-29,78,0.4172701639655393],[114,-29,79,0.4235714925830376],[114,-28,64,0.33679603911403455],[114,-28,65,0.3413775213976655],[114,-28,66,0.34624929307504826],[114,-28,67,0.3513690156835529],[114,-28,68,0.35668587290114706],[114,-28,69,0.36216094785656233],[114,-28,70,0.3677645990247289],[114,-28,71,0.3734746961248207],[114,-28,72,0.37927508996887405],[114,-28,73,0.3851541967171519],[114,-28,74,0.3911036987129362],[114,-28,75,0.3971173638879453],[114,-28,76,0.40318998553571284],[114,-28,77,0.4093164440456883],[114,-28,78,0.41549089197743644],[114,-28,79,0.4217060636338059],[114,-27,64,0.33553205101327044],[114,-27,65,0.3400718633141002],[114,-27,66,0.3449088613701708],[114,-27,67,0.3500010663290698],[114,-27,68,0.35529559127932797],[114,-27,69,0.3607500575908027],[114,-27,70,0.3663316301936932],[114,-27,71,0.37201534148012855],[114,-27,72,0.37778260582652],[114,-27,73,0.3836198392747581],[114,-27,74,0.3895171864414349],[114,-27,75,0.395467356556664],[114,-27,76,0.40146457035466454],[114,-27,77,0.4075036193486411],[114,-27,78,0.41357903882433134],[114,-27,79,0.4196843956814504],[114,-26,64,0.33433661931090525],[114,-26,65,0.33882757518059786],[114,-26,66,0.3436205595486781],[114,-26,67,0.3486741612258179],[114,-26,68,0.3539335320703615],[114,-26,69,0.35935283335664947],[114,-26,70,0.36489609815705487],[114,-26,71,0.3705356379834873],[114,-26,72,0.3762505928060306],[114,-26,73,0.38202557737578097],[114,-26,74,0.3878494258389477],[114,-26,75,0.39371403647523034],[114,-26,76,0.3996133182281302],[114,-26,77,0.4055422405195602],[114,-26,78,0.4114959876575185],[114,-26,79,0.4174692189549845],[114,-25,64,0.3331868288821877],[114,-25,65,0.33761874722291213],[114,-25,66,0.34235561228313033],[114,-25,67,0.3473566479564521],[114,-25,68,0.35256513096852143],[114,-25,69,0.3579318542981454],[114,-25,70,0.36341788230777006],[114,-25,71,0.3689930268770541],[114,-25,72,0.37463441865881897],[114,-25,73,0.3803251667593345],[114,-25,74,0.38605310877549287],[114,-25,75,0.39180965297953224],[114,-25,76,0.3975887142890767],[114,-25,77,0.4033857454976175],[114,-25,78,0.4091968650696448],[114,-25,79,0.4150180826266137],[114,-24,64,0.3320449415626777],[114,-24,65,0.3364069933808102],[114,-24,66,0.34107504079515927],[114,-24,67,0.346008955535409],[114,-24,68,0.35115026563051066],[114,-24,69,0.3564465883040642],[114,-24,70,0.3618562665822229],[114,-24,71,0.36734690055978153],[114,-24,72,0.3728939263321623],[114,-24,73,0.3784792765427328],[114,-24,74,0.3840901244491274],[114,-24,75,0.389717713280795],[114,-24,76,0.39535627251772587],[114,-24,77,0.40100202256831485],[114,-24,78,0.406652269164014],[114,-24,79,0.4123045886207731],[114,-23,64,0.33086572654845137],[114,-23,65,0.33514996507400935],[114,-23,66,0.3397392718983947],[114,-23,67,0.3445942713738827],[114,-23,68,0.3496550002224976],[114,-23,69,0.3548661903471468],[114,-23,70,0.36018375581458006],[114,-23,71,0.3655733739495367],[114,-23,72,0.3709187936549019],[114,-23,73,0.3762807217326254],[114,-23,74,0.3817765107358631],[114,-23,75,0.3873895086448315],[114,-23,76,0.39291208861438465],[114,-23,77,0.3983909364427567],[114,-23,78,0.4038655328799937],[114,-23,79,0.4093351503737399],[114,-22,64,0.3292153985149391],[114,-22,65,0.3336863107866848],[114,-22,66,0.3381835800559521],[114,-22,67,0.34269905688866864],[114,-22,68,0.34728163147642],[114,-22,69,0.35197463190924577],[114,-22,70,0.3568076823830002],[114,-22,71,0.36179820879337143],[114,-22,72,0.3669529880543536],[114,-22,73,0.37226962660589247],[114,-22,74,0.3777379662356728],[114,-22,75,0.3833414154520985],[114,-22,76,0.38905820476772784],[114,-22,77,0.3948625643842933],[114,-22,78,0.40072582291136355],[114,-22,79,0.40612633425105743],[114,-21,64,0.32835121687346674],[114,-21,65,0.3303488048677432],[114,-21,66,0.3347175884623833],[114,-21,67,0.3391124087825264],[114,-21,68,0.34358314366632076],[114,-21,69,0.34817550393744073],[114,-21,70,0.35292117554472496],[114,-21,71,0.3578392603234713],[114,-21,72,0.3629378066330091],[114,-21,73,0.3682152764461614],[114,-21,74,0.37366194703658706],[114,-21,75,0.37926124551065077],[114,-21,76,0.3849910145411561],[114,-21,77,0.3908247077805951],[114,-21,78,0.39673251356114586],[114,-21,79,0.40268240562607405],[114,-20,64,0.3272998092367477],[114,-20,65,0.32695818225806306],[114,-20,66,0.33119858640678645],[114,-20,67,0.3354742509573514],[114,-20,68,0.33983550570335624],[114,-20,69,0.34432993445267934],[114,-20,70,0.34899091273498717],[114,-20,71,0.3538389656707556],[114,-20,72,0.3588832612562048],[114,-20,73,0.36412304858988415],[114,-20,74,0.3695490392239186],[114,-20,75,0.3751447299098285],[114,-20,76,0.38088766510553784],[114,-20,77,0.38675063771650275],[114,-20,78,0.3927028266595928],[114,-20,79,0.3987108699621777],[114,-19,64,0.32609411667809707],[114,-19,65,0.32488559962464664],[114,-19,66,0.3276575214517542],[114,-19,67,0.3318125504265706],[114,-19,68,0.3360633338198218],[114,-19,69,0.34045878060054807],[114,-19,70,0.34503358337447104],[114,-19,71,0.34980946898006954],[114,-19,72,0.3547966291548251],[114,-19,73,0.3599951063384469],[114,-19,74,0.3653961328565157],[114,-19,75,0.37098342179773247],[114,-19,76,0.37673440797723107],[114,-19,77,0.38262143746718386],[114,-19,78,0.38861290427416945],[114,-19,79,0.3946743328493854],[114,-18,64,0.32476918327081766],[114,-18,65,0.3235284955345707],[114,-18,66,0.3241218127289623],[114,-18,67,0.32815118510995356],[114,-18,68,0.33228651839744444],[114,-18,69,0.33657748311181224],[114,-18,70,0.3410597346503426],[114,-18,71,0.3457560262949129],[114,-18,72,0.3506775457674412],[114,-18,73,0.35582521928742306],[114,-18,74,0.36119098146539796],[114,-18,75,0.3667590094143837],[114,-18,76,0.37250691951862785],[114,-18,77,0.378406925365644],[114,-18,78,0.38442695542360306],[114,-18,79,0.3905317291308852],[114,-17,64,0.3233456345966176],[114,-17,65,0.3220586339726053],[114,-17,66,0.32059569672865174],[114,-17,67,0.3244913454037648],[114,-17,68,0.3285028973874497],[114,-17,69,0.3326802139345191],[114,-17,70,0.33705957324500857],[114,-17,71,0.3416646118933285],[114,-17,72,0.34650753171123694],[114,-17,73,0.3515902890289788],[114,-17,74,0.35690576473254665],[114,-17,75,0.36243891361644864],[114,-17,76,0.3681678915413829],[114,-17,77,0.3740651589452436],[114,-17,78,0.3800985593043914],[114,-17,79,0.38623237119947906],[114,-16,64,0.3217797606861542],[114,-16,65,0.32043361494654415],[114,-16,66,0.3187874349971722],[114,-16,67,0.32078177793818036],[114,-16,68,0.3246635277483316],[114,-16,69,0.3287207459680706],[114,-16,70,0.3329899288940218],[114,-16,71,0.33749537640182764],[114,-16,72,0.3422502372918019],[114,-16,73,0.3472575540801089],[114,-16,74,0.3525113058459253],[114,-16,75,0.3579974477347726],[114,-16,76,0.3636949457159388],[114,-16,77,0.3695768051982938],[114,-16,78,0.37561109212465293],[114,-16,79,0.38176194518978424],[114,-15,64,0.3200231467348851],[114,-15,65,0.3186070860276282],[114,-15,66,0.31690755092724293],[114,-15,67,0.3169695176233298],[114,-15,68,0.32071852190874517],[114,-15,69,0.324652690294348],[114,-15,70,0.3288082647821461],[114,-15,71,0.33320990292152275],[114,-15,72,0.33787153515069057],[114,-15,73,0.34279724047677274],[114,-15,74,0.34798213927912086],[114,-15,75,0.35341330197426657],[114,-15,76,0.35907067224206385],[114,-15,77,0.36492800348202914],[114,-15,78,0.3709538071477886],[114,-15,79,0.37711231159582587],[114,-14,64,0.3180397444412705],[114,-14,65,0.31654490067990804],[114,-14,66,0.3147849187393973],[114,-14,67,0.3130135815402876],[114,-14,68,0.31662921269991423],[114,-14,69,0.3204399422916226],[114,-14,70,0.32448124010528423],[114,-14,71,0.3287777532651101],[114,-14,72,0.33334395426571],[114,-14,73,0.3381848276030194],[114,-14,74,0.34329659397469736],[114,-14,75,0.34866747093896794],[114,-14,76,0.35427846884193387],[114,-14,77,0.3601042207524266],[114,-14,78,0.3661138450819427],[114,-14,79,0.3722718395154485],[114,-13,64,0.3158039058217714],[114,-13,65,0.3142231668452486],[114,-13,66,0.312397433827689],[114,-13,67,0.31034254158403896],[114,-13,68,0.3123664074745643],[114,-13,69,0.31605507814800526],[114,-13,70,0.3199832805741881],[114,-13,71,0.3241752427057094],[114,-13,72,0.3286456871854248],[114,-13,73,0.333400313519225],[114,-13,74,0.33843633918599486],[114,-13,75,0.34374309873245873],[114,-13,76,0.349302699778914],[114,-13,77,0.35509073474781416],[114,-13,78,0.36107704702264737],[114,-13,79,0.3672265501501834],[114,-12,64,0.3132985823822827],[114,-12,65,0.3116264584580446],[114,-12,66,0.30973118462893623],[114,-12,67,0.3076258824685725],[114,-12,68,0.3079087860718181],[114,-12,69,0.3114778841663337],[114,-12,70,0.3152952677812902],[114,-12,71,0.3193843166738096],[114,-12,72,0.32375967932026306],[114,-12,73,0.32842753959902815],[114,-12,74,0.33338596423997646],[114,-12,75,0.3386253302518454],[114,-12,76,0.3441288313723807],[114,-12,77,0.3498730624272636],[114,-12,78,0.3558286803346044],[114,-12,79,0.36196114035316806],[114,-11,64,0.3105136899526982],[114,-11,65,0.3087461900797685],[114,-11,66,0.3067788645201593],[114,-11,67,0.3046221353882993],[114,-11,68,0.3032414425868536],[114,-11,69,0.306694018775799],[114,-11,70,0.31040334731254904],[114,-11,71,0.31439152925963404],[114,-11,72,0.3186728001321226],[114,-11,73,0.3232535743120604],[114,-11,74,0.32813259206624856],[114,-11,75,0.3333011685438457],[114,-11,76,0.33874354391854106],[114,-11,77,0.3444373336354686],[114,-11,78,0.35035407752828807],[114,-11,79,0.3564598863882251],[114,-10,64,0.3074446400893078],[114,-10,65,0.30557915543732406],[114,-10,66,0.3035383431481091],[114,-10,67,0.301329968137526],[114,-10,68,0.2989824100899991],[114,-10,69,0.3016938076527397],[114,-10,70,0.30529785592178765],[114,-10,71,0.30918712375178525],[114,-10,72,0.31337509636559174],[114,-10,73,0.3178681562086949],[114,-10,74,0.3226655264653762],[114,-10,75,0.32775933812035557],[114,-10,76,0.3331348198500298],[114,-10,77,0.33877060977721435],[114,-10,78,0.3446391878830991],[114,-10,79,0.35070742764162954],[114,-9,64,0.3040910395118971],[114,-9,65,0.30212623120851806],[114,-9,66,0.30001139841160746],[114,-9,67,0.29775171494588487],[114,-9,68,0.29537019959859184],[114,-9,69,0.296471172813023],[114,-9,70,0.29997236849658915],[114,-9,71,0.3037642157962359],[114,-9,72,0.3078591277489521],[114,-9,73,0.31226319637058797],[114,-9,74,0.3169759332110551],[114,-9,75,0.32199015415848264],[114,-9,76,0.32729200789425666],[114,-9,77,0.3328611471059589],[114,-9,78,0.33867104128056164],[114,-9,79,0.3446894296278493],[114,-8,64,0.30045555956365255],[114,-8,65,0.29839124791776156],[114,-8,66,0.29620261082771376],[114,-8,67,0.29389231676668726],[114,-8,68,0.2914778154785173],[114,-8,69,0.29102269696984595],[114,-8,70,0.294422865931327],[114,-8,71,0.2981180800919298],[114,-8,72,0.30211938586179754],[114,-8,73,0.30643234078714937],[114,-8,74,0.3110565551965601],[114,-8,75,0.3159853975380464],[114,-8,76,0.32120586292428865],[114,-8,77,0.32669860406552137],[114,-8,78,0.33243812344233586],[114,-8,79,0.33839312525619647],[114,-7,64,0.29654297815974395],[114,-7,65,0.29438003028288456],[114,-7,66,0.2921184224828055],[114,-7,67,0.28975841938356933],[114,-7,68,0.28731178434084015],[114,-7,69,0.28534682484901164],[114,-7,70,0.2886470253800084],[114,-7,71,0.29224554184649176],[114,-7,72,0.29615179711490636],[114,-7,73,0.3003705933002095],[114,-7,74,0.30490146194371276],[114,-7,75,0.30973819569611666],[114,-7,76,0.3148685611353712],[114,-7,77,0.3202741919709521],[114,-7,78,0.3259306615188724],[114,-7,79,0.3318077329778783],[114,-6,64,0.2923593971208387],[114,-6,65,0.29009960978582117],[114,-6,66,0.2877663631957397],[114,-6,67,0.2853576317980819],[114,-6,68,0.28287947051245355],[114,-6,69,0.28034965372077725],[114,-6,70,0.2826436346864401],[114,-6,71,0.28614447449535113],[114,-6,72,0.2899533110148918],[114,-6,73,0.2940739999255891],[114,-6,74,0.29850583389150137],[114,-6,75,0.30324290930307113],[114,-6,76,0.30827369012543326],[114,-6,77,0.3135807681755005],[114,-6,78,0.31914081874730194],[114,-6,79,0.32492475011510197],[114,-5,64,0.2879116381655603],[114,-5,65,0.28555761262076435],[114,-5,66,0.2831544468973401],[114,-5,67,0.2806979477271027],[114,-5,68,0.2781885369546217],[114,-5,69,0.2756381182207693],[114,-5,70,0.2764121330806503],[114,-5,71,0.279813405439243],[114,-5,72,0.2835215750909734],[114,-5,73,0.28753939551140145],[114,-5,74,0.2918657819724809],[114,-5,75,0.29649502478959056],[114,-5,76,0.30141621341155717],[114,-5,77,0.3066128707484614],[114,-5,78,0.3120627966956644],[114,-5,79,0.3177381193904884],[114,-4,64,0.2832068211583001],[114,-4,65,0.2807618265004779],[114,-4,66,0.2782907415559092],[114,-4,67,0.27578733335617955],[114,-4,68,0.27324656283026594],[114,-4,69,0.27067452833478883],[114,-4,70,0.26995228048397985],[114,-4,71,0.2732512317744345],[114,-4,72,0.27685469804023743],[114,-4,73,0.2807642138255508],[114,-4,74,0.2849782030655849],[114,-4,75,0.28949105277706144],[114,-4,76,0.29429240887518543],[114,-4,77,0.2993666935830392],[114,-4,78,0.3046928434351113],[114,-4,79,0.310244266427181],[114,-3,64,0.278252128471744],[114,-3,65,0.27571995007077316],[114,-3,66,0.27318311624836583],[114,-3,67,0.27063348475933735],[114,-3,68,0.2680608208982411],[114,-3,69,0.26546560753532505],[114,-3,70,0.263263957977566],[114,-3,71,0.26645704817431287],[114,-3,72,0.26995110279869405],[114,-3,73,0.27374636227730237],[114,-3,74,0.2778406719828961],[114,-3,75,0.2822284324845984],[114,-3,76,0.28689978059710636],[114,-3,77,0.2918400007653555],[114,-3,78,0.29702916583415784],[114,-3,79,0.30244200578037217],[114,-2,64,0.273054759521044],[114,-2,65,0.2704395288888807],[114,-2,66,0.2678391691852927],[114,-2,67,0.2652437586020981],[114,-2,68,0.2626382181113922],[114,-2,69,0.26001772401953566],[114,-2,70,0.2573841799686803],[114,-2,71,0.2594300892303449],[114,-2,72,0.26280947136899996],[114,-2,73,0.2664841625713033],[114,-2,74,0.27045137070723996],[114,-2,75,0.27470544220705384],[114,-2,76,0.2792369435225175],[114,-2,77,0.2840319789696439],[114,-2,78,0.28907174405461755],[114,-2,79,0.2943323128956123],[114,-1,64,0.2676220796573678],[114,-1,65,0.26492808206217044],[114,-1,66,0.26226634064427345],[114,-1,67,0.259625279891105],[114,-1,68,0.25698540293800637],[114,-1,69,0.25433699728350667],[114,-1,70,0.25167806636118983],[114,-1,71,0.2521697886679398],[114,-1,72,0.25542878332541125],[114,-1,73,0.2589763586610713],[114,-1,74,0.26280905564182117],[114,-1,75,0.266921115975264],[114,-1,76,0.2713034803827316],[114,-1,77,0.2759430265973248],[114,-1,78,0.28082204624507173],[114,-1,79,0.28591795926654173],[114,0,64,0.2619619676653804],[114,0,65,0.2591934237123236],[114,0,66,0.256472214842533],[114,0,67,0.2537852306142651],[114,0,68,0.2511090430070837],[114,0,69,0.24842956145393583],[114,0,70,0.245741245744634],[114,0,71,0.24467595792005017],[114,0,72,0.24780844997457974],[114,0,73,0.2512221934156127],[114,0,74,0.2549130636661161],[114,0,75,0.25887516652674436],[114,0,76,0.2630997702985583],[114,0,77,0.26757447835507925],[114,0,78,0.2722826413815777],[114,0,79,0.27720300799250114],[114,1,64,0.2560833684608611],[114,1,65,0.2532441848747546],[114,1,66,0.2504650155281058],[114,1,67,0.24773132336041653],[114,1,68,0.24501627658409003],[114,1,69,0.24230198838329323],[114,1,70,0.2395797969503607],[114,1,71,0.2369490862611272],[114,1,72,0.23994854606892835],[114,1,73,0.2432215556616227],[114,1,74,0.2467633585075785],[114,1,75,0.25056791603585216],[114,1,76,0.2546267905568342],[114,1,77,0.25892826691795046],[114,1,78,0.26345671217482003],[114,1,79,0.2681921720502177],[114,2,64,0.24999705660790394],[114,2,65,0.24709053924707988],[114,2,66,0.24425429699632925],[114,2,67,0.2414724603648619],[114,2,68,0.23871533740967815],[114,2,69,0.23596186938959746],[114,2,70,0.2332007404121814],[114,2,71,0.23042796287137268],[114,2,72,0.23185013713530186],[114,2,73,0.23497519571887424],[114,2,74,0.23836061577019246],[114,2,75,0.24200023334854762],[114,2,76,0.24588589090341145],[114,2,77,0.25000652182483896],[114,2,78,0.25434746920890244],[114,2,79,0.25889003767853674],[114,3,64,0.24371658801680154],[114,3,65,0.24074512072658488],[114,3,66,0.23785182648048034],[114,3,67,0.2350195795629687],[114,3,68,0.2322163580957081],[114,3,69,0.22941856267812852],[114,3,70,0.22661271120946694],[114,3,71,0.22379304463385416],[114,3,72,0.22351570542210838],[114,3,73,0.22648500794947746],[114,3,74,0.22970633904413526],[114,3,75,0.23317346240650585],[114,3,76,0.2368785156451646],[114,3,77,0.24081106987525092],[114,3,78,0.24495741798562262],[114,3,79,0.24930009048832164],[114,4,64,0.23725947959378735],[114,4,65,0.23422416328543003],[114,4,66,0.2312726811200722],[114,4,67,0.22838670525886898],[114,4,68,0.22553236562408718],[114,4,69,0.22268411734876303],[114,4,70,0.21982678991293184],[114,4,71,0.21695322531728717],[114,4,72,0.21494968586448412],[114,4,73,0.21775439485238485],[114,4,74,0.22080302635214705],[114,4,75,0.2240893674829495],[114,4,76,0.22760590721560803],[114,4,77,0.231342880366428],[114,4,78,0.23528753349477974],[114,4,79,0.23942361169493842],[114,5,64,0.23064861526918715],[114,5,65,0.2275488613196209],[114,5,66,0.22453655748013843],[114,5,67,0.22159220132437568],[114,5,68,0.2186804668418883],[114,5,69,0.21577437181898415],[114,5,70,0.2128574888967437],[114,5,71,0.20992162102687492],[114,5,72,0.20696469385600347],[114,5,73,0.20878870886842218],[114,5,74,0.21165438220548966],[114,5,75,0.21475008941212048],[114,5,76,0.2180687841091128],[114,5,77,0.2216014466327447],[114,5,78,0.22533633218871435],[114,5,79,0.2292584326573084],[114,6,64,0.22391387702130272],[114,6,65,0.22074695065688676],[114,6,66,0.21766929497605791],[114,6,67,0.21466022907759685],[114,6,68,0.21168322655310798],[114,6,69,0.20871022937796935],[114,6,70,0.20572389660976817],[114,6,71,0.20271531292712872],[114,6,72,0.199681907313123],[114,6,73,0.1995957716130561],[114,6,74,0.20226557333246575],[114,6,75,0.20515810885304642],[114,6,76,0.20826698684158856],[114,6,77,0.21158409481787463],[114,6,78,0.21509882924456358],[114,6,79,0.21879753227442664],[114,7,64,0.21709280686156077],[114,7,65,0.2138541032087896],[114,7,66,0.2107049302031082],[114,7,67,0.20762343047295365],[114,7,68,0.20457199749862176],[114,7,69,0.20152168592422498],[114,7,70,0.19845447001673197],[114,7,71,0.19536097335743327],[114,7,72,0.19223840300106138],[114,7,73,0.190193297152692],[114,7,74,0.19265160699306952],[114,7,75,0.19532557145539037],[114,7,76,0.19820971277299135],[114,7,77,0.2012970620948126],[114,7,78,0.20457836631162707],[114,7,79,0.20804149551147758],[114,8,64,0.2102211631696523],[114,8,65,0.20690752884577832],[114,8,66,0.20368211845881104],[114,8,67,0.20052208858486112],[114,8,68,0.19738895385611416],[114,8,69,0.1942530473097892],[114,8,70,0.19109584440599153],[114,8,71,0.18790770812689292],[114,8,72,0.18468583176683107],[114,8,73,0.18143237401668688],[114,8,74,0.1828644523228095],[114,8,75,0.18530660630408083],[114,8,76,0.18795303844315048],[114,8,77,0.19079809327899944],[114,8,78,0.1938340182141884],[114,8,79,0.19705033927690196],[114,9,64,0.20332541773296575],[114,9,65,0.19993597988037085],[114,9,66,0.19663189333147987],[114,9,67,0.19338971411149317],[114,9,68,0.19017040550779996],[114,9,69,0.1869437738018193],[114,9,70,0.18369096829176063],[114,9,71,0.1804022453814948],[114,9,72,0.17707492066486802],[114,9,73,0.17371150761997703],[114,9,74,0.172958458123327],[114,9,75,0.17515947443468435],[114,9,76,0.17755895182040662],[114,9,77,0.18015261106818478],[114,9,78,0.18293425092596366],[114,9,79,0.18589509331881074],[114,10,64,0.19642438266444343],[114,10,65,0.1929602738108581],[114,10,66,0.18957716144110384],[114,10,67,0.1862515247947811],[114,10,68,0.18294419781619486],[114,10,69,0.17962468021492012],[114,10,70,0.17627395560414727],[114,10,71,0.17288228600468097],[114,10,72,0.1694471805250422],[114,10,73,0.16597154455670265],[114,10,74,0.16297843706477777],[114,10,75,0.1649327880282834],[114,10,76,0.1670797233919838],[114,10,77,0.1694163057640186],[114,10,78,0.17193784524532735],[114,10,79,0.17463721840612953],[114,11,64,0.18953160938227714],[114,11,65,0.1859956981376919],[114,11,66,0.1825350865269812],[114,11,67,0.17912678604043847],[114,11,68,0.17573198645960372],[114,11,69,0.1723201201743669],[114,11,70,0.16887215278926881],[114,11,71,0.16537842592510751],[114,11,72,0.16183665556616533],[114,11,73,0.15825010398860606],[114,11,74,0.15462592702309486],[114,11,75,0.15466654919686185],[114,11,76,0.15655867244319083],[114,11,77,0.1586356104144225],[114,11,78,0.16089406581733445],[114,11,79,0.1633284583213002],[114,12,64,0.18265803897423094],[114,12,65,0.1790546620562453],[114,12,66,0.17551971385726822],[114,12,67,0.1720313827609362],[114,12,68,0.1685517317047673],[114,12,69,0.16505037546836857],[114,12,70,0.1615083942706661],[114,12,71,0.1579162479094874],[114,12,72,0.1542718217439057],[114,12,73,0.15057863809670277],[114,12,74,0.14684423483929157],[114,12,75,0.14439326698053026],[114,12,76,0.14603098666760936],[114,12,77,0.14784820431721152],[114,12,78,0.14984283384774735],[114,12,79,0.1520106715580106],[114,13,64,0.1758149092078545],[114,13,65,0.17214960001522675],[114,13,66,0.16854483965370567],[114,13,67,0.16498062678515968],[114,13,68,0.1614204160340342],[114,13,69,0.15783425389161232],[114,13,70,0.15420344906562136],[114,13,71,0.15051858493330028],[114,13,72,0.14677763513919087],[114,13,73,0.14298423486417122],[114,13,74,0.1391461095157937],[114,13,75,0.13527366218591927],[114,13,76,0.13552459265908115],[114,13,77,0.13708354142729115],[114,13,78,0.13881489905160987],[114,13,79,0.1407156372938077],[114,14,64,0.16901692372425034],[114,14,65,0.16529613264410864],[114,14,66,0.16162713095312758],[114,14,67,0.15799230511097687],[114,14,68,0.15435699018683927],[114,14,69,0.15069190035148683],[114,14,70,0.14697866296832043],[114,14,71,0.14320795911312667],[114,14,72,0.1393777338777093],[114,14,73,0.13549155066069316],[114,14,74,0.1315570911590539],[114,14,75,0.12758480239614822],[114,14,76,0.12506107827226529],[114,14,77,0.12636340393404777],[114,14,78,0.1278320103636167],[114,14,79,0.12946483441648074],[114,15,64,0.162291860272481],[114,15,65,0.15852260068210508],[114,15,66,0.15479547714290756],[114,15,67,0.1510957446991092],[114,15,68,0.1473910542364582],[114,15,69,0.14365300714411863],[114,15,70,0.1398636248737982],[114,15,71,0.13601364787706083],[114,15,72,0.13210086691407266],[114,15,73,0.12812858448551157],[114,15,74,0.12410420804003383],[114,15,75,0.12003797626434108],[114,15,76,0.11594181941746401],[114,15,77,0.11570524862710936],[114,15,78,0.11690980952273859],[114,15,79,0.11827196939896631],[114,16,64,0.15568913175263346],[114,16,65,0.15187851236262997],[114,16,66,0.14809917752811821],[114,16,67,0.14433961518626526],[114,16,68,0.14057018152471978],[114,16,69,0.1367636028418356],[114,16,70,0.1329024078232561],[114,16,71,0.12897741083961664],[114,16,72,0.12498618729884853],[114,16,73,0.12093166325431047],[114,16,74,0.1168208208385652],[114,16,75,0.11266352078542055],[114,16,76,0.10847144299521526],[114,16,77,0.10512791938023704],[114,16,78,0.10606435847849392],[114,16,79,0.10715059064972544],[114,17,64,0.14924095827504877],[114,17,65,0.14539604154954638],[114,17,66,0.1415701466437451],[114,17,67,0.1377552419660697],[114,17,68,0.13392473228427157],[114,17,69,0.13005272849706756],[114,17,70,0.12612242259019246],[114,17,71,0.12212477575792062],[114,17,72,0.11805715670526969],[114,17,73,0.11392207664766713],[114,17,74,0.10972602247729042],[114,17,75,0.10547838930122061],[114,17,76,0.1011905132915691],[114,17,77,0.09687480552326332],[114,17,78,0.09530142048712066],[114,17,79,0.09610523378966183],[114,18,64,0.1429565422725471],[114,18,65,0.1390842808677042],[114,18,66,0.13521731720561042],[114,18,67,0.1313512341103097],[114,18,68,0.12746277688761376],[114,18,69,0.12352771488768911],[114,18,70,0.11953009227947585],[114,18,71,0.11546113610930311],[114,18,72,0.11131807250173356],[114,18,73,0.10710302064978797],[114,18,74,0.1028219659479326],[114,18,75,0.09848381340436763],[114,18,76,0.09409952225088311],[114,18,77,0.0896813224499482],[114,18,78,0.08524201358101706],[114,18,79,0.08512959128588793],[114,19,64,0.13682578122776623],[114,19,65,0.13293295070235026],[114,19,66,0.1290303172789279],[114,19,67,0.12511710345124982],[114,19,68,0.12117363144509809],[114,19,69,0.1171776088867335],[114,19,70,0.11311414394527076],[114,19,71,0.10897488324250747],[114,19,72,0.10475701708842253],[114,19,73,0.10046234261134138],[114,19,74,0.0960963860074518],[114,19,75,0.09166758496793384],[114,19,76,0.08718653217351502],[114,19,77,0.0826652805765881],[114,19,78,0.07811671102100062],[114,19,79,0.07420770343338427],[114,20,64,0.13082281756904818],[114,20,65,0.12691594718140123],[114,20,66,0.12298298986624062],[114,20,67,0.11902673097831831],[114,20,68,0.11503124713004159],[114,20,69,0.11097646168827847],[114,20,70,0.10684877201905241],[114,20,71,0.10264042214066428],[114,20,72,0.09834870444201657],[114,20,73,0.09397519879178853],[114,20,74,0.08952505012364248],[114,20,75,0.08500628546884326],[114,20,76,0.08042917129123019],[114,20,77,0.07580561186081482],[114,20,78,0.071148589281935],[114,20,79,0.06647164567052267],[114,21,64,0.12029877662537505],[114,21,65,0.11754207438591263],[114,21,66,0.11470454223599398],[114,21,67,0.1117868532700735],[114,21,68,0.10880811328752342],[114,21,69,0.10488647691290055],[114,21,70,0.10069667187927614],[114,21,71,0.09642106946136816],[114,21,72,0.09205722288967186],[114,21,73,0.08760662377561096],[114,21,74,0.08307413844960854],[114,21,75,0.07846746277519513],[114,21,76,0.0737965962526678],[114,21,77,0.06907333615931661],[114,21,78,0.0643107924036404],[114,21,79,0.05952292369858518],[114,22,64,0.10941560122991129],[114,22,65,0.1065509673477816],[114,22,66,0.10363131778715443],[114,22,67,0.10065436989041729],[114,22,68,0.0976354718821343],[114,22,69,0.09459687810628425],[114,22,70,0.09155647415323129],[114,22,71,0.08852792136973914],[114,22,72,0.0855210356424433],[114,22,73,0.08131401118363153],[114,22,74,0.0767025526411384],[114,22,75,0.07201175561304182],[114,22,76,0.06725142213819177],[114,22,77,0.06243328926179531],[114,22,78,0.057570619987275834],[114,22,79,0.05267779483650781],[114,23,64,0.09847009641145828],[114,23,65,0.09549797218795175],[114,23,66,0.09249673055381216],[114,23,67,0.08946145660218788],[114,23,68,0.08640374498212086],[114,23,69,0.08334304465704201],[114,23,70,0.08029541820373709],[114,23,71,0.0772734653336671],[114,23,72,0.07428650444564669],[114,23,73,0.0713407775122986],[114,23,74,0.0684396776799418],[114,23,75,0.06558399891422109],[114,23,76,0.06075162063815588],[114,23,77,0.05584584006811326],[114,23,78,0.05089105896515264],[114,23,79,0.045902071859122935],[114,24,64,0.08754059397672044],[114,24,65,0.08446230604766015],[114,24,66,0.08138047833066368],[114,24,67,0.07828794889446644],[114,24,68,0.07519262431220591],[114,24,69,0.0721109538604259],[114,24,70,0.06905697826563147],[114,24,71,0.06604204498503127],[114,24,72,0.06307479863637049],[114,24,73,0.060161213969882804],[114,24,74,0.05730467092619465],[114,24,75,0.054506071225227916],[114,24,76,0.05176399583778092],[114,24,77,0.049074902604431134],[114,24,78,0.04423232736534352],[114,24,79,0.03915876044584288],[114,25,64,0.07670613799758282],[114,25,65,0.07352393280018878],[114,25,66,0.0703630388372205],[114,25,67,0.06721448171341832],[114,25,68,0.06408260482342266],[114,25,69,0.060980702174353904],[114,25,70,0.05792061905414246],[114,25,71,0.05491227539893561],[114,25,72,0.05196347421257428],[114,25,73,0.04907977050342647],[114,25,74,0.046264400447874776],[114,25,75,0.04351827034226706],[114,25,76,0.0408400047637336],[114,25,77,0.038226053226138645],[114,25,78,0.035670854491802725],[114,25,79,0.03240947325636695],[114,26,64,0.06604394443429365],[114,26,65,0.06276100987710027],[114,26,66,0.05952311979255599],[114,26,67,0.05631995824633913],[114,26,68,0.05315248638380772],[114,26,69,0.050030731011356355],[114,26,70,0.04696419893194687],[114,26,71,0.043961227870203234],[114,26,72,0.04102862477454049],[114,26,73,0.03817138107314111],[114,26,74,0.03539246475761479],[114,26,75,0.032692688975622025],[114,26,76,0.03007065662784252],[114,26,77,0.02752278028693055],[114,26,78,0.025043376588006566],[114,26,79,0.022624834083358775],[114,27,64,0.05562704585556736],[114,27,65,0.052247517383615986],[114,27,66,0.04893528659688246],[114,27,67,0.04567918995813942],[114,27,68,0.04247703863599035],[114,27,69,0.03933552756529767],[114,27,70,0.03626171674659109],[114,27,71,0.03326223184704522],[114,27,72,0.030342746779240138],[114,27,73,0.027507557865034643],[114,27,74,0.024759249619694237],[114,27,75,0.022098451958188887],[114,27,76,0.019523688399517344],[114,27,77,0.0170313146277844],[114,27,78,0.014615546562305152],[114,27,79,0.012268576895085799],[114,28,64,0.045522125212229175],[114,28,65,0.042051073348545735],[114,28,66,0.038667771310515325],[114,28,67,0.03536071137790584],[114,28,68,0.03212483228733609],[114,28,69,0.028963481756611644],[114,28,70,0.025881202356711656],[114,28,71,0.022882805990753062],[114,28,72,0.01997271729742926],[114,28,73,0.017154421246254107],[114,28,74,0.014430015115441038],[114,28,75,0.011799864774412978],[114,28,76,0.009262364931716225],[114,28,77,0.006813802757431662],[114,28,78,0.004448324049079615],[114,28,79,0.002158000883540803],[114,29,64,0.03578754289085009],[114,29,65,0.032230939233811595],[114,29,66,0.028780466907758893],[114,29,67,0.025424773424989174],[114,29,68,0.02215624039225985],[114,29,69,0.018974902578456423],[114,29,70,0.01588275380167546],[114,29,71,0.012882720936749482],[114,29,72,0.009977886419247352],[114,29,73,0.007170825359142262],[114,29,74,0.00446305760269434],[114,29,75,0.0018546147822515405],[114,29,76,-6.562778972291671E-4],[114,29,77,-0.0030734056669875394],[114,29,78,-0.005402654799211211],[114,29,79,-0.007651990862405658],[114,30,64,0.026471561556935055],[114,30,65,0.02283622012197558],[114,30,66,0.019323111084351797],[114,30,67,0.015921519370393294],[114,30,68,0.012621613495110968],[114,30,69,0.009420197434343268],[114,30,70,0.006316724373247527],[114,30,71,0.0033121966283731386],[114,30,72,4.0828673815903856E-4],[114,30,73,-0.0023934187090246493],[114,30,74,-0.005092052033197756],[114,30,75,-0.007687974054256928],[114,30,76,-0.010183160478156041],[114,30,77,-0.012581465543621141],[114,30,78,-0.01488876368677874],[114,30,79,-0.017112970257407926],[114,31,64,0.017610773587272095],[114,31,65,0.013904264300939773],[114,31,66,0.01033366420613777],[114,31,67,0.006889347843996854],[114,31,68,0.0035596328198372494],[114,31,69,3.382183755485709E-4],[114,31,70,-0.0027779368377814266],[114,31,71,-0.005789762598031337],[114,31,72,-0.008697037360764921],[114,31,73,-0.011499219962580432],[114,31,74,-0.014196152177498983],[114,31,75,-0.01678863186561241],[114,31,76,-0.019278856785745868],[114,31,77,-0.021670739465801604],[114,31,78,-0.023970093833277903],[114,31,79,-0.026184694601645478],[114,32,64,0.009228736181454422],[114,32,65,0.0054592672665246785],[114,32,66,0.001836886296898133],[114,32,67,-0.0016465323852951274],[114,32,68,-0.005004153987147047],[114,32,69,-0.008245220532437173],[114,32,70,-0.011375187028675496],[114,32,71,-0.01439689168580982],[114,32,72,-0.017311577579690898],[114,32,73,-0.02011978223339928],[114,32,74,-0.022822094402723165],[114,32,75,-0.025419777704717716],[114,32,76,-0.027915261072658085],[114,32,77,-0.030312496354392857],[114,32,78,-0.03261718369159269],[114,32,79,-0.03483686562206436],[114,33,64,0.0013348195272048086],[114,33,65,-0.0024889145402774565],[114,33,66,-0.006156881731370258],[114,33,67,-0.009675350817127074],[114,33,68,-0.013058609737803956],[114,33,69,-0.016318650166881405],[114,33,70,-0.019463230197336614],[114,33,71,-0.022497043485417714],[114,33,72,-0.025422783421523477],[114,33,73,-0.028242073817258784],[114,33,74,-0.030956265296737312],[114,33,75,-0.03356709693891047],[114,33,76,-0.03607722306823907],[114,33,77,-0.03725601575611711],[114,33,78,-0.03387818045679761],[114,33,79,-0.030590614628821726],[114,34,64,-0.006076726331662167],[114,34,65,-0.009945734658433323],[114,34,66,-0.013652727106443552],[114,34,67,-0.01720182147196588],[114,34,68,-0.02060809207489689],[114,34,69,-0.02388607276880905],[114,34,70,-0.027045691560326938],[114,34,71,-0.030093418224662626],[114,34,72,-0.03303335410301568],[114,34,73,-0.035868188918731],[114,34,74,-0.03404958747182883],[114,34,75,-0.030274357989497364],[114,34,76,-0.026576681944159884],[114,34,77,-0.02296214387264669],[114,34,78,-0.019437232124272195],[114,34,79,-0.016009505624543244],[114,35,64,-0.013027480018440313],[114,35,65,-0.016932706321912207],[114,35,66,-0.020671958702956534],[114,35,67,-0.024246981356806186],[114,35,68,-0.027673339909376926],[114,35,69,-0.030967902670181638],[114,35,70,-0.034142621056343574],[114,35,71,-0.032111637918081144],[114,35,72,-0.027956592023171273],[114,35,73,-0.023869512773908686],[114,35,74,-0.01985659873386328],[114,35,75,-0.015923373391422805],[114,35,76,-0.012075271810126692],[114,35,77,-0.008318094780911084],[114,35,78,-0.004658330874980275],[114,35,79,-0.0011033471066961868],[114,36,64,-0.0195553265945273],[114,36,65,-0.02348792484244979],[114,36,66,-0.027252678988709356],[114,36,67,-0.03084881524310686],[114,36,68,-0.03141296001970387],[114,36,69,-0.02692859484143935],[114,36,70,-0.02248356661783453],[114,36,71,-0.01809273658742049],[114,36,72,-0.013767436180876622],[114,36,73,-0.009516454890006755],[114,36,74,-0.005346899649077497],[114,36,75,-0.0012649250418415273],[114,36,76,0.0027236660102690612],[114,36,77,0.006612951091129909],[114,36,78,0.010396546355238524],[114,36,79,0.014067393200504728],[114,37,64,-0.025714698223033162],[114,37,65,-0.02966635631323782],[114,37,66,-0.027017173247412426],[114,37,67,-0.022341107252382402],[114,37,68,-0.017658576179718496],[114,37,69,-0.012996999488050668],[114,37,70,-0.008377838820801458],[114,37,71,-0.0038176158392584443],[114,37,72,6.709742129411159E-4],[114,37,73,0.0050780725607977644],[114,37,74,0.009395791666201594],[114,37,75,0.013617475473007732],[114,37,76,0.01773708555398182],[114,37,77,0.02174871325964025],[114,37,78,0.025646217654352092],[114,37,79,0.029422988724980434],[114,38,64,-0.02305422664879115],[114,38,65,-0.018262744764364586],[114,38,66,-0.01344033768794642],[114,38,67,-0.008588696688953831],[114,38,68,-0.0037309031146770507],[114,38,69,0.0011035098328916004],[114,38,70,0.005891235632454861],[114,38,71,0.010614226384962327],[114,38,72,0.015258576641687633],[114,38,73,0.01981352710909964],[114,38,74,0.024270589404538977],[114,38,75,0.028622792702144108],[114,38,76,0.032864052781157935],[114,38,77,0.036988663670375704],[114,38,78,0.04099091177386502],[114,38,79,0.044864812068327015],[114,39,64,-0.009725270331354691],[114,39,65,-0.004754243397724434],[114,39,66,2.4397988779800706E-4],[114,39,67,0.005270114209954235],[114,39,68,0.010300835754090047],[114,39,69,0.015304480199413948],[114,39,70,0.020255932778892732],[114,39,71,0.025135703131188625],[114,39,72,0.029928798504092125],[114,39,73,0.03462371345332648],[114,39,74,0.03921153729554265],[114,39,75,0.04368518024622095],[114,39,76,0.04803871885183599],[114,39,77,0.05226686101265807],[114,39,78,0.056364530588644206],[114,39,79,0.060326571290136646],[114,40,64,0.003664863550908325],[114,40,65,0.008818487140510648],[114,40,66,0.013994459959821395],[114,40,67,0.01919597204156309],[114,40,68,0.02439942310730883],[114,40,69,0.02957091153423272],[114,40,70,0.03468346427526121],[114,40,71,0.0397161509652781],[114,40,72,0.04465293990706627],[114,40,73,0.04948166734015596],[114,40,74,0.054193121347909545],[114,40,75,0.05878024143584636],[114,40,76,0.06323743449807107],[114,40,77,0.06756000758028671],[114,40,78,0.07174371754785898],[114,40,79,0.07578443747980815],[114,41,64,0.017066652230032175],[114,41,65,0.022407177570870972],[114,41,66,0.027764270146584665],[114,41,67,0.033143702575747135],[114,41,68,0.03852155067280706],[114,41,69,0.04386151454460838],[114,41,70,0.049134653315891834],[114,41,71,0.05431853775498665],[114,41,72,0.05939608439951012],[114,41,73,0.06435449974227261],[114,41,74,0.06918433593871406],[114,41,75,0.07387865918048063],[114,41,76,0.07843233156861101],[114,41,77,0.08284140701576061],[114,41,78,0.08710264141045723],[114,41,79,0.0912131169915816],[114,42,64,0.03042800365342866],[114,42,65,0.03596048989477616],[114,42,66,0.04150305992841831],[114,42,67,0.047064180035751635],[114,42,68,0.05261954371055945],[114,42,69,0.05813026596893494],[114,42,70,0.06356529342209745],[114,42,71,0.06890059708414811],[114,42,72,0.07411798215272705],[114,42,73,0.07920400446185265],[114,42,74,0.08414899518070532],[114,42,75,0.0889461950213111],[114,42,76,0.09359099891221595],[114,42,77,0.09808031179574192],[114,42,78,0.10241201591373007],[114,42,79,0.10658454966475485],[114,43,64,0.043698187831003196],[114,43,65,0.04942793387029509],[114,43,66,0.055160836514410685],[114,43,67,0.06090814175115539],[114,43,68,0.06664509257355815],[114,43,69,0.07233002951857717],[114,43,70,0.07792962711622548],[114,43,71,0.08341813044595776],[114,43,72,0.0887761403421862],[114,43,73,0.09398950158157537],[114,43,74,0.09904829574115082],[114,43,75,0.10394594011213511],[114,43,76,0.10867839375451803],[114,43,77,0.11324347148308946],[114,43,78,0.11764026628731537],[114,43,79,0.12186868040895758],[114,44,64,0.05683196660228995],[114,44,65,0.0627639782023772],[114,44,66,0.06869203039740879],[114,44,67,0.07463018544433597],[114,44,68,0.08055315765924975],[114,44,69,0.08641633902173607],[114,44,70,0.09218397392842427],[114,44,71,0.09782844449489826],[114,44,72,0.10332903319366984],[114,44,73,0.10867078435576612],[114,44,74,0.1138434663392593],[114,44,75,0.11884063587176602],[114,44,76,0.12341478277767123],[114,44,77,0.12761068507435894],[114,44,78,0.13167836829366109],[114,44,79,0.13561655604814565],[114,45,64,0.06979392482405747],[114,45,65,0.07593235950106583],[114,45,66,0.08205975367995723],[114,45,67,0.08819295221947634],[114,45,68,0.09430605075770253],[114,45,69,0.10030921054385873],[114,45,70,0.10568721680912793],[114,45,71,0.11091129961412835],[114,45,72,0.11599874817436417],[114,45,73,0.12096118706584345],[114,45,74,0.12580564120821758],[114,45,75,0.13053550220086885],[114,45,76,0.13515139466985004],[114,45,77,0.13965194156490862],[114,45,78,0.1440344276207907],[114,45,79,0.14829536046547118],[114,46,64,0.07924284344592361],[114,46,65,0.08592059788208321],[114,46,66,0.09236347814708482],[114,46,67,0.09854375099073248],[114,46,68,0.10448038339187593],[114,46,69,0.11021719506298733],[114,46,70,0.11578870202690536],[114,46,71,0.1212207212206945],[114,46,72,0.12653164359980423],[114,46,73,0.13173361739328887],[114,46,74,0.13683363949722133],[114,46,75,0.1418345532672775],[114,46,76,0.14673595124525246],[114,46,77,0.15153498162595969],[114,46,78,0.1562270575372956],[114,46,79,0.16080646846718735],[114,47,64,0.08829479476623373],[114,47,65,0.0951083344372365],[114,47,66,0.10169658353442776],[114,47,67,0.10802913962275636],[114,47,68,0.11412553661236044],[114,47,69,0.12003254033640344],[114,47,70,0.12578707746766],[114,47,71,0.13141677586700318],[114,47,72,0.13694124601255261],[114,47,73,0.1423732786049856],[114,47,74,0.14771995624664172],[114,47,75,0.1529836773522628],[114,47,76,0.15816309071021994],[114,47,77,0.16325393937293212],[114,47,78,0.16824981281074325],[114,47,79,0.17314280651488734],[114,48,64,0.09734469897124229],[114,48,65,0.10428404667877207],[114,48,66,0.11100686584560787],[114,48,67,0.11748035342644325],[114,48,68,0.12372471477782607],[114,48,69,0.12978966833047081],[114,48,70,0.13571460288393916],[114,48,71,0.14152904671455074],[114,48,72,0.14725394767146704],[114,48,73,0.152902876191051],[114,48,74,0.15848314905455738],[114,48,75,0.16399687195854284],[114,48,76,0.1694418992133469],[114,48,77,0.1748127091307625],[114,48,78,0.18010119390459997],[114,48,79,0.18529736302745065],[114,49,64,0.10643534150149758],[114,49,65,0.11349039656827808],[114,49,66,0.12033644849461432],[114,49,67,0.12693860261649814],[114,49,68,0.13331781413761767],[114,49,69,0.1395266892735672],[114,49,70,0.14560708150995186],[114,49,71,0.15159048254015214],[114,49,72,0.15749928975661937],[114,49,73,0.16334800401778318],[114,49,74,0.1691443554647989],[114,49,75,0.1748903553886838],[114,49,76,0.18058327237716318],[114,49,77,0.18621653120007137],[114,49,78,0.19178053311958118],[114,49,79,0.19726339653723193],[114,50,64,0.11559778366483389],[114,50,65,0.12275858362499707],[114,50,66,0.12971634329055903],[114,50,67,0.1364344239099639],[114,50,68,0.14293458386653748],[114,50,69,0.14927218304545506],[114,50,70,0.1554914911403606],[114,50,71,0.16162599401129346],[114,50,72,0.16769963625913867],[114,50,73,0.17372800192965143],[114,50,74,0.17971943109586824],[114,50,75,0.18567607027413122],[114,50,76,0.1915948548385682],[114,50,77,0.1974684218101543],[114,50,78,0.20328595160672372],[114,50,79,0.20903393755000987],[114,51,64,0.12485142654319313],[114,51,65,0.13210836827317413],[114,51,66,0.13916643123983763],[114,51,67,0.14598761334410942],[114,51,68,0.15259450548842968],[114,51,69,0.15904502240330765],[114,51,70,0.16538575083916263],[114,51,71,0.17165216583084109],[114,51,72,0.17786983555266445],[114,51,73,0.18405557252212196],[114,51,74,0.19021852890356528],[114,51,75,0.19636123384813256],[114,51,76,0.2024805709948991],[114,51,77,0.2085686944495165],[114,51,78,0.21461388174782706],[114,51,79,0.2206013225037856],[114,52,64,0.1342042182179654],[114,52,65,0.14154823931630714],[114,52,66,0.14869558746772304],[114,52,67,0.15560730298737796],[114,52,68,0.16230681578328301],[114,52,69,0.16885433874142386],[114,52,70,0.17529862840603666],[114,52,71,0.18167710682577562],[114,52,72,0.18801701591628392],[114,52,73,0.1943365266150865],[114,52,74,0.20064580061206272],[114,52,75,0.20694800260078675],[114,52,76,0.21324026116255143],[114,52,77,0.21951457656466883],[114,52,78,0.2257586739252719],[114,52,79,0.23195680036917807],[114,53,64,0.14365300815074353],[114,53,65,0.15107572946920775],[114,53,66,0.15830195426147875],[114,53,67,0.1652921856090701],[114,53,68,0.1720706772995592],[114,53,69,0.17869963454370416],[114,53,70,0.18522979276846133],[114,53,71,0.1917004421218246],[114,53,72,0.19814051908310562],[114,53,73,0.2045696613882199],[114,53,74,0.21099922411477715],[114,53,75,0.21743325491003035],[114,53,76,0.22386942648800146],[114,53,77,0.23029992466923538],[114,53,78,0.23671229038544545],[114,53,79,0.2430902142227718],[114,54,64,0.15318405249003156],[114,54,65,0.16067788281969878],[114,54,66,0.16797336618603964],[114,54,67,0.17503089133128408],[114,54,68,0.18187550056106153],[114,54,69,0.1885710466660147],[114,54,70,0.19517001545689044],[114,54,71,0.20171345154599035],[114,54,72,0.20823197589979087],[114,54,73,0.21474677516141433],[114,54,74,0.22127056067812934],[114,54,75,0.2278084952830252],[114,54,76,0.2343590859993463],[114,54,77,0.2409150409597124],[114,54,78,0.24746408895854882],[114,54,79,0.25398976018562736],[114,55,64,0.1627736739810599],[114,55,65,0.17033187800513686],[114,55,66,0.17768793114433315],[114,55,67,0.18480252021625168],[114,55,68,0.19170142199676796],[114,55,69,0.1984497645350094],[114,55,70,0.20510152528070905],[114,55,71,0.21169935837084786],[114,55,72,0.2182755281658743],[114,55,73,0.22485282279846663],[114,55,74,0.231445445787439],[114,55,75,0.23805988385895463],[114,55,76,0.24469574921239817],[114,55,77,0.25134659456824476],[114,55,78,0.25800069943815424],[114,55,79,0.26464182616459775],[114,56,64,0.1723890800343672],[114,56,65,0.18000581077362005],[114,56,66,0.18741477114623345],[114,56,67,0.19457733464234492],[114,56,68,0.2015199415313766],[114,56,69,0.20830860726943587],[114,56,70,0.21499852025314106],[114,56,71,0.22163377245661375],[114,56,72,0.22824820067596538],[114,56,73,0.2348662156787937],[114,56,74,0.24150361745302687],[114,56,75,0.24816839481491393],[114,56,76,0.2548615077071945],[114,56,77,0.26157765059476645],[114,56,78,0.26830599544477973],[114,56,79,0.27503091286242404],[114,57,64,0.18198934236035194],[114,57,65,0.18965963945680064],[114,57,66,0.19711492641394834],[114,57,67,0.20431761519360467],[114,57,68,0.21129472365468008],[114,57,69,0.2181127636201908],[114,57,70,0.22482784071443354],[114,57,71,0.23148529175997878],[114,57,72,0.23812042741349818],[114,57,73,0.2447592701206111],[114,57,74,0.2514192857465854],[114,57,75,0.2581101072818179],[114,57,76,0.2648342490689061],[114,57,77,0.27158781005119564],[114,57,78,0.2783611645993374],[114,57,79,0.2851396395342052],[114,58,64,0.1915265414016279],[114,58,65,0.19924629671066166],[114,58,66,0.2067424262872847],[114,58,67,0.2139786836305716],[114,58,68,0.2209825656391385],[114,58,69,0.22782069848616784],[114,58,70,0.23454980747417034],[114,58,71,0.24121626606214547],[114,58,72,0.24785673574109315],[114,58,73,0.25449880804917513],[114,58,74,0.26116164726237573],[114,58,75,0.2678566323163687],[114,58,76,0.27458799654084876],[114,58,77,0.28135346381832815],[114,58,78,0.2881448798138612],[114,58,79,0.29494883696201873],[114,59,64,0.20094707859222138],[114,59,65,0.20871297068188296],[114,59,66,0.2162455301990985],[114,59,67,0.22351009632374896],[114,59,68,0.23053453639636967],[114,59,69,0.23738522959339348],[114,59,70,0.24411922863454744],[114,59,71,0.2507837266214305],[114,59,72,0.257416592298765],[114,59,73,0.26404691358426013],[114,59,74,0.27069554809369295],[114,59,75,0.2773756793869474],[114,59,76,0.2840933776653574],[114,59,77,0.29084816366039357],[114,59,78,0.29763357446714034],[114,59,79,0.3044377300949321],[114,60,64,0.2101931588192747],[114,60,65,0.2180025581033681],[114,60,66,0.2255681413382325],[114,60,67,0.23285701088028124],[114,60,68,0.23989728881594363],[114,60,69,0.2467547772825184],[114,60,70,0.253486578120559],[114,60,71,0.26014048482815677],[114,60,72,0.2667554137034852],[114,60,73,0.2733618486147437],[114,60,74,0.2799822983214823],[114,60,75,0.28663176525151995],[114,60,76,0.29331822462306717],[114,60,77,0.30004311279193463],[114,60,78,0.3068018236975727],[114,60,79,0.313584212281022],[114,61,64,0.21920443361476558],[114,61,65,0.22705527986850588],[114,61,66,0.23465138356045934],[114,61,67,0.24196171653728557],[114,61,68,0.24901453617484656],[114,61,69,0.25587477799971425],[114,61,70,0.2625993365012236],[114,61,71,0.26923639040929176],[114,61,72,0.275825732528276],[114,61,73,0.28239911773110615],[114,61,74,0.2889806282363695],[114,61,75,0.29558705525444706],[114,61,76,0.3022282960570234],[114,61,77,0.30890776549705945],[114,61,78,0.3156228209824621],[114,61,79,0.32236519988813644],[114,62,64,0.22791983145521527],[114,62,65,0.235810485817445],[114,62,66,0.24343536862297224],[114,62,67,0.2507653557388084],[114,62,68,0.2578287203750265],[114,62,69,0.2646892895779368],[114,62,70,0.2714035224982836],[114,62,71,0.2780197778605452],[114,62,72,0.28457854748471934],[114,62,73,0.29111271164511954],[114,62,74,0.2976478155836344],[114,62,75,0.3042023664438295],[114,62,76,0.3107881498455555],[114,62,77,0.31741056527716355],[114,62,78,0.32406897944292623],[114,62,79,0.3307570966688015],[114,63,64,0.23627958245317224],[114,63,65,0.24420865621160662],[114,63,66,0.2518611614022437],[114,63,67,0.2592098447423742],[114,63,68,0.2662828800435868],[114,63,69,0.2731427965248663],[114,63,70,0.27984542356483305],[114,63,71,0.2864391096311314],[114,63,72,0.2929648664466737],[114,63,73,0.2994565378113041],[114,63,74,0.3059409925822547],[114,63,75,0.3124383412536392],[114,63,76,0.3189621755159564],[114,63,77,0.32551983012102226],[114,63,78,0.33211266632485315],[114,63,79,0.33873637613282187],[114,64,64,0.24289021776894734],[114,64,65,0.25219356953098515],[114,64,66,0.2598729125683246],[114,64,67,0.2672399625745444],[114,64,68,0.27432268766923695],[114,64,69,0.28118218434463044],[114,64,70,0.287873494405677],[114,64,71,0.2944447847615277],[114,64,72,0.30093741082140846],[114,64,73,0.3073860065341126],[114,64,74,0.3138186007471968],[114,64,75,0.320256759489234],[114,64,76,0.32671575370910666],[114,64,77,0.3332047519401715],[114,64,78,0.3397270372932019],[114,64,79,0.3462802481223565],[114,65,64,0.24823842865321635],[114,65,65,0.2577913247122759],[114,65,66,0.2674201744199661],[114,65,67,0.2748056242986669],[114,65,68,0.2818986720007675],[114,65,69,0.2887588993774673],[114,65,70,0.2954404401699968],[114,65,71,0.3019911299320957],[114,65,72,0.30845249842776434],[114,65,73,0.3148597898910642],[114,65,74,0.32124201098003224],[114,65,75,0.32762200617684856],[114,65,76,0.3340165603093117],[114,65,77,0.3404365277943183],[114,65,78,0.34688698813142904],[114,65,79,0.3533674271057913],[114,66,64,0.25341542269007383],[114,66,65,0.2630325446341918],[114,66,66,0.27274994862078933],[114,66,67,0.2818643408896786],[114,66,68,0.2889686281544059],[114,66,69,0.29583129675549663],[114,66,70,0.3025054870580503],[114,66,71,0.3090385757934039],[114,66,72,0.31547210786071767],[114,66,73,0.3218417565337398],[114,66,74,0.32817731204171213],[114,66,75,0.3345026984084774],[114,66,76,0.340836018351287],[114,66,77,0.34718962596047764],[114,66,78,0.3535702268021111],[114,66,79,0.35997900500991825],[114,67,64,0.2584386299766539],[114,67,65,0.2681070572055117],[114,67,66,0.27788448054372566],[114,67,67,0.28778066900596344],[114,67,68,0.2955002164986271],[114,67,69,0.3023671776895148],[114,67,70,0.30903684169825696],[114,67,71,0.31555602006495365],[114,67,72,0.3219661259425039],[114,67,73,0.328303084058084],[114,67,74,0.3345972691634455],[114,67,75,0.3408734729719753],[114,67,76,0.34715089949438005],[114,67,77,0.35344318860050794],[114,67,78,0.3597584675512782],[114,67,79,0.3660994301639689],[114,68,64,0.26331256228003097],[114,68,65,0.27302019918150544],[114,68,66,0.2828441652395432],[114,68,67,0.2927929325729378],[114,68,68,0.30147375097071755],[114,68,69,0.30834651688972237],[114,68,70,0.3150143402441811],[114,68,71,0.32152337849077595],[114,68,72,0.32791477947464537],[114,68,73,0.33422455026607545],[114,68,74,0.3404834542027227],[114,68,75,0.3467169362316908],[114,68,76,0.3529450765576924],[114,68,77,0.35918257251672625],[114,68,78,0.36543874850827734],[114,68,79,0.371717593734978],[114,69,64,0.26802574524042627],[114,69,65,0.2777616066366724],[114,69,66,0.28761978067531985],[114,69,67,0.2976074468369131],[114,69,68,0.3068851800342481],[114,69,69,0.3137643839105326],[114,69,70,0.32043229152252034],[114,69,71,0.326934328464219],[114,69,72,0.333311256506355],[114,69,73,0.3395990088429894],[114,69,74,0.345828553069196],[114,69,75,0.3520257820655751],[114,69,76,0.3582114328762121],[114,69,77,0.36440103357844145],[114,69,78,0.3706048780545205],[114,69,79,0.3768280284890012],[114,70,64,0.27254629615864157],[114,70,65,0.28229964305265864],[114,70,66,0.2921800287324843],[114,70,67,0.3021932324517902],[114,70,68,0.3117552585826155],[114,70,69,0.3186412161788741],[114,70,70,0.3253107360300211],[114,70,71,0.33180839976803517],[114,70,72,0.33817443956673676],[114,70,73,0.3444445458636203],[114,70,74,0.3506497022198204],[114,70,75,0.3568160475633953],[114,70,76,0.3629647659715843],[114,70,77,0.3691120040587337],[114,70,78,0.3752688159472854],[114,70,79,0.3814411357114931],[114,71,64,0.2768301845544031],[114,71,65,0.28658734174944867],[114,71,66,0.29647498652756626],[114,71,67,0.3064973846952902],[114,71,68,0.3161311894082192],[114,71,69,0.3230269147655885],[114,71,70,0.32970187485596025],[114,71,71,0.33619955946788355],[114,71,72,0.3425594131911278],[114,71,73,0.348816623161537],[114,71,74,0.35500193281961223],[114,71,75,0.361141481982938],[114,71,76,0.3672566734444337],[114,71,77,0.37336406622049967],[114,71,78,0.379475295484549],[114,71,79,0.385597019134042],[114,72,64,0.2808423163084748],[114,72,65,0.29058670259955643],[114,72,66,0.3004637164464951],[114,72,67,0.31047602355510856],[114,72,68,0.32005244893983253],[114,72,69,0.326963662045436],[114,72,70,0.33365025897903516],[114,72,71,0.34015427819027244],[114,72,72,0.3465140216643439],[114,72,73,0.35276383231763325],[114,72,74,0.3589338953335854],[114,72,75,0.36505006377511073],[114,72,76,0.37113370872588913],[114,72,77,0.3772015941289429],[114,72,78,0.3832657764057791],[114,72,79,0.3893335288551019],[114,73,64,0.2845566752651545],[114,73,65,0.2942695548030289],[114,73,66,0.3041158891826524],[114,73,67,0.3140966911949189],[114,73,68,0.32354764630667676],[114,73,69,0.3304820431719495],[114,73,70,0.3371882237340183],[114,73,71,0.34370634942924555],[114,73,72,0.3500731650805802],[114,73,73,0.35632177749300187],[114,73,74,0.36248145465121134],[114,73,75,0.36857744586856095],[114,73,76,0.3746308231602591],[114,73,77,0.3806583440374208],[114,73,78,0.38667233584057425],[114,73,79,0.392680601653527],[114,74,64,0.2879533352662929],[114,74,65,0.29761452623107315],[114,74,66,0.30740871673530457],[114,74,67,0.31733525343851965],[114,74,68,0.32663766493096],[114,74,69,0.3336041892745978],[114,74,70,0.34033900638616704],[114,74,71,0.34687994848431764],[114,74,72,0.35326176257802466],[114,74,73,0.3595159034713993],[114,74,74,0.36567034254675435],[114,74,75,0.37174939265952023],[114,74,76,0.3777735494149015],[114,74,77,0.3837593490314955],[114,74,78,0.3897192429304169],[114,74,79,0.3956614891213947],[114,75,64,0.2910155724464887],[114,75,65,0.30060411105195517],[114,75,66,0.3103239811062046],[114,75,67,0.32017289390181525],[114,75,68,0.3293387140155229],[114,75,69,0.3363468355479154],[114,75,70,0.3431197851714375],[114,75,71,0.3496926212499615],[114,75,72,0.35609765574765073],[114,75,73,0.36236427616264966],[114,75,74,0.36851877679316164],[114,75,75,0.3745841996217032],[114,75,76,0.3805801850565546],[114,75,77,0.3865228327211797],[114,75,78,0.3924245724315146],[114,75,79,0.39829404544900915],[114,76,64,0.2937270830819524],[114,76,65,0.30322184098572524],[114,76,66,0.3128451640740867],[114,76,67,0.32259320616793696],[114,76,68,0.331665284544724],[114,76,69,0.3387242889132242],[114,76,70,0.34554463461114],[114,76,71,0.35215819787136443],[114,76,72,0.35859444752385894],[114,76,73,0.36488031125975573],[114,76,74,0.3710400431013254],[114,76,75,0.3770950922797525],[114,76,76,0.38306397369767853],[114,76,77,0.38896214012643315],[114,76,78,0.3948018562575208],[114,76,79,0.40059207469554037],[114,77,64,0.2960693123452979],[114,77,65,0.305449565607816],[114,77,66,0.31495468351474837],[114,77,67,0.3245793895038548],[114,77,68,0.3336330042979998],[114,77,69,0.3407512997988504],[114,77,70,0.3476273917587846],[114,77,71,0.35428962611436426],[114,77,72,0.3607642716826054],[114,77,73,0.3670754465463211],[114,77,74,0.3732450358478586],[114,77,75,0.3792926010706053],[114,77,76,0.38523528088924913],[114,77,77,0.3910876836687323],[114,77,78,0.3968617716866734],[114,77,79,0.40256673714585456],[114,78,64,0.2980188993479039],[114,78,65,0.3072648471644171],[114,78,66,0.31663124179161767],[114,78,67,0.32611155368911693],[114,78,68,0.33526138628743507],[114,78,69,0.342445832480168],[114,78,70,0.34938442791529123],[114,78,71,0.35610171915861355],[114,78,72,0.36262048791658813],[114,78,73,0.36896175317815305],[114,78,74,0.37514475336608283],[114,78,75,0.3811869084144051],[114,78,76,0.38710376172127414],[114,78,77,0.39290890195618844],[114,78,78,0.39861386472498866],[114,78,79,0.4042280141164893],[114,79,64,0.29956493579981036],[114,79,65,0.3086579526941255],[114,79,66,0.31786632224310496],[114,79,67,0.3271824686900742],[114,79,68,0.3365590996281923],[114,79,69,0.34381558564709985],[114,79,70,0.3508226481651677],[114,79,71,0.3576008385476826],[114,79,72,0.36416922197343826],[114,79,73,0.37054547153376777],[114,79,74,0.376745929425132],[114,79,75,0.38278563494585965],[114,79,76,0.3886783190761246],[114,79,77,0.39443636548469085],[114,79,78,0.4000707378645602],[114,79,79,0.4055908735529338],[114,80,64,0.30076247250009225],[114,80,65,0.3096847474593031],[114,80,66,0.31871585381021506],[114,80,67,0.32784732715075876],[114,80,68,0.3370541190044036],[114,80,69,0.3448141663533221],[114,80,70,0.3518995873768089],[114,80,71,0.35874949878068746],[114,80,72,0.36537898971769783],[114,80,73,0.37180207576548296],[114,80,74,0.37803185856308824],[114,80,75,0.38408063755480065],[114,80,76,0.3899599734002244],[114,80,77,0.39568070271364114],[114,80,78,0.401252903893097],[114,80,79,0.4066858138905112],[114,81,64,0.3016668560281243],[114,81,65,0.31040175401872255],[114,81,66,0.3192368215661698],[114,81,67,0.328162810296537],[114,81,68,0.33715649065365133],[114,81,69,0.3453943162502406],[114,81,70,0.3525714131186116],[114,81,71,0.35950832059864174],[114,81,72,0.3662158695261988],[114,81,73,0.37270405012613866],[114,81,74,0.3789822937146142],[114,81,75,0.3850596902631568],[114,81,76,0.39094514110324075],[114,81,77,0.39664744619886516],[114,81,78,0.40217532555587876],[114,81,79,0.4075373744702239],[114,82,64,0.30231526861865315],[114,82,65,0.31084782993902643],[114,82,66,0.3194693053889407],[114,82,67,0.3281697304718911],[114,82,68,0.33692754143784387],[114,82,69,0.34552325722765675],[114,82,70,0.35280690802463416],[114,82,71,0.35984841787583827],[114,82,72,0.36665408529639215],[114,82,73,0.3732294896281191],[114,82,74,0.37957992090649356],[114,82,75,0.385710727894275],[114,82,76,0.39162758321388585],[114,82,77,0.397336664708987],[114,82,78,0.4028447523556723],[114,82,79,0.4081592402247694],[114,83,64,0.3027292284315094],[114,83,65,0.3110465689352601],[114,83,66,0.31943874957114543],[114,83,67,0.32789513344020893],[114,83,68,0.3363956038619644],[114,83,69,0.344919607658775],[114,83,70,0.3525860678892373],[114,83,71,0.35975027320521297],[114,83,72,0.3666751731793715],[114,83,73,0.3733615653134552],[114,83,74,0.3798101241458183],[114,83,75,0.3860219054664692],[114,83,76,0.3919987482310701],[114,83,77,0.39774357294235185],[114,83,78,0.40326057551082806],[114,83,79,0.4085553158401495],[114,84,64,0.30291700294330776],[114,84,65,0.3110086185179549],[114,84,66,0.3191581533864448],[114,84,67,0.3273543275015594],[114,84,68,0.33557819922573834],[114,84,69,0.3438123830692773],[114,84,70,0.35189875232433115],[114,84,71,0.3592026592641754],[114,84,72,0.36626718829097216],[114,84,73,0.3730880250006613],[114,84,74,0.3796607828299417],[114,84,75,0.3859816888734592],[114,84,76,0.3920481468538422],[114,84,77,0.39785917558575656],[114,84,78,0.4034157215762068],[114,84,79,0.4087208446934481],[114,85,64,0.3013000904188504],[114,85,65,0.3101042639029235],[114,85,66,0.3186301764912413],[114,85,67,0.32655283352394],[114,85,68,0.3344837998561478],[114,85,69,0.3424084005668182],[114,85,70,0.350316361218311],[114,85,71,0.3582004775206582],[114,85,72,0.365423952804286],[114,85,73,0.3724007304010325],[114,85,74,0.3791221020612757],[114,85,75,0.385578976739724],[114,85,76,0.3917637580107908],[114,85,77,0.3976709447083133],[114,85,78,0.4032975833440922],[114,85,79,0.40864357086878317],[114,86,64,0.29905990761578705],[114,86,65,0.30791407142657606],[114,86,66,0.316560576119584],[114,86,67,0.32500163024505135],[114,86,68,0.3331135154917287],[114,86,69,0.3407124711700411],[114,86,70,0.3482783486859719],[114,86,71,0.35580844040210263],[114,86,72,0.36330259989532426],[114,86,73,0.3707618932817931],[114,86,74,0.37818647680023487],[114,86,75,0.38480325381952196],[114,86,76,0.39113246601793716],[114,86,77,0.3971635298178099],[114,86,78,0.40288898690099606],[114,86,79,0.4083049427368793],[114,87,64,0.29638913885912416],[114,87,65,0.3052844016801396],[114,87,66,0.313995796593219],[114,87,67,0.32252625231883564],[114,87,68,0.3308820840105933],[114,87,69,0.3387241785128024],[114,87,70,0.345932849761922],[114,87,71,0.3530903209579278],[114,87,72,0.36020162312057535],[114,87,73,0.3672735753233393],[114,87,74,0.3743133261106172],[114,87,75,0.3813270764865392],[114,87,76,0.3883189882738941],[114,87,77,0.3952902811406057],[114,87,78,0.40216919377196236],[114,87,79,0.4076813566613264],[114,88,64,0.2933250837279395],[114,88,65,0.30225031572845573],[114,88,66,0.31101696841418136],[114,88,67,0.3196286776406992],[114,88,68,0.32809208151765074],[114,88,69,0.3364051599658245],[114,88,70,0.3432805234154686],[114,88,71,0.3500520860453763],[114,88,72,0.35676400240373535],[114,88,73,0.3634288683352272],[114,88,74,0.37006003331711773],[114,88,75,0.37667006471665243],[114,88,76,0.3832694197191904],[114,88,77,0.389865328866565],[114,88,78,0.39646089458703715],[114,88,79,0.4030544075540991],[114,89,64,0.2899091854936581],[114,89,65,0.2988511628919685],[114,89,66,0.30766082229208036],[114,89,67,0.3163424920380614],[114,89,68,0.3249034884778849],[114,89,69,0.33334140757351083],[114,89,70,0.3403196447217839],[114,89,71,0.34669768236814813],[114,89,72,0.3529997216972826],[114,89,73,0.359244063181998],[114,89,74,0.3654502888887228],[114,89,75,0.3716374584042412],[114,89,76,0.3778225343987161],[114,89,77,0.3840190424388508],[114,89,78,0.3902359690411737],[114,89,79,0.39647690134571373],[114,90,64,0.28618524628167025],[114,90,65,0.2951288692029546],[114,90,66,0.3039668490573244],[114,90,67,0.3127041910571857],[114,90,68,0.32134922413060196],[114,90,69,0.3298997198270047],[114,90,70,0.33704708336677225],[114,90,71,0.3430297945977164],[114,90,72,0.3489177369168542],[114,90,73,0.35473474915130704],[114,90,74,0.36050656911187745],[114,90,75,0.36625875644502415],[114,90,76,0.37201486644297305],[114,90,77,0.3777948801212952],[114,90,78,0.38361389518503647],[114,90,79,0.3894810818304146],[114,91,64,0.28219775832889804],[114,91,65,0.29112633799571364],[114,91,66,0.29997579174517786],[114,91,67,0.3087517860247178],[114,91,68,0.31746396604035654],[114,91,69,0.32611080471716536],[114,91,70,0.33345921037419207],[114,91,71,0.3390505415189991],[114,91,72,0.3445264408452407],[114,91,73,0.34991603029281976],[114,91,74,0.35525102060335634],[114,91,75,0.360563361348758],[114,91,76,0.36588316230653456],[114,91,77,0.3712368921959267],[114,91,78,0.3766458600386866],[114,91,79,0.3821249836721635],[114,92,64,0.2779903542081351],[114,92,65,0.28688596545980444],[114,92,66,0.2957282471236015],[114,92,67,0.3045235120983197],[114,92,68,0.3132829867067371],[114,92,69,0.3220063226680346],[114,92,70,0.3295527311404644],[114,92,71,0.33476210859657735],[114,92,72,0.339834073826443],[114,92,73,0.3448026957592765],[114,92,74,0.3497053754539482],[114,92,75,0.35458022850813076],[114,92,76,0.3594637580083772],[114,92,77,0.3643888247371694],[114,92,78,0.3693829205440864],[114,92,79,0.3744667499931073],[114,93,64,0.273604378621301],[114,93,65,0.2824482737255809],[114,93,66,0.291263379161713],[114,93,67,0.3000566406848675],[114,93,68,0.3088410852616017],[114,93,69,0.31761796044157503],[114,93,70,0.32532544302420485],[114,93,71,0.3301673154919468],[114,93,72,0.334849079090585],[114,93,73,0.3394093433199304],[114,93,74,0.3438908265984115],[114,93,75,0.34833748098171136],[114,93,76,0.35279192519830715],[114,93,77,0.35729319340542137],[114,93,78,0.3618748062054443],[114,93,79,0.3665631696128569],[114,94,64,0.2690775841134669],[114,94,65,0.27785066380908985],[114,94,66,0.2866177467048949],[114,94,67,0.2953863983890297],[114,94,68,0.3041716162696735],[114,94,69,0.3129765916813807],[114,94,70,0.3207769158881387],[114,94,71,0.3252701171874355],[114,94,72,0.32958040164939434],[114,94,73,0.33375045528926145],[114,94,74,0.3378278629693024],[114,94,75,0.3418619896667861],[114,94,76,0.3459011862389608],[114,94,77,0.3499903277504954],[114,94,78,0.3541686915156743],[114,94,79,0.3584681811073907],[114,95,64,0.2644429528270577],[114,95,65,0.2731262905183368],[114,95,66,0.2818242474079833],[114,95,67,0.29054499445447846],[114,95,68,0.2993056174652503],[114,95,69,0.3081115257600751],[114,95,70,0.31590909413219187],[114,95,71,0.32007603748980684],[114,95,72,0.32403772979488066],[114,95,73,0.3278404261822813],[114,95,74,0.3315360640368281],[114,95,75,0.33517891875989714],[114,95,76,0.3388225984941102],[114,95,77,0.34251738649830926],[114,95,78,0.3463079389074149],[114,95,79,0.350231344666577],[114,96,64,0.259727646199439],[114,96,65,0.26830306121342345],[114,96,66,0.27691117977807],[114,96,67,0.28556075847296214],[114,96,68,0.29427103808684457],[114,96,69,0.3030498464428999],[114,96,70,0.3107268188881158],[114,96,71,0.3145925337959778],[114,96,72,0.3182316783203699],[114,96,73,0.321693541471325],[114,96,74,0.32503385337807433],[114,96,75,0.3283112364228647],[114,96,76,0.33158400801451987],[114,96,77,0.33490734427749624],[114,96,78,0.3383308129357877],[114,96,79,0.3418962826864919],[114,97,64,0.25495208430594424],[114,97,65,0.2634027601179497],[114,97,66,0.27190142499203657],[114,97,67,0.28045738996189284],[114,97,68,0.2890920693118047],[114,97,69,0.29781584173755954],[114,97,70,0.3052382691682933],[114,97,71,0.3088292921049087],[114,97,72,0.3121739126632745],[114,97,73,0.31532390687792294],[114,97,74,0.31833821095663833],[114,97,75,0.3212791905898328],[114,97,76,0.3242092728120076],[114,97,77,0.3271879502257839],[114,97,78,0.33026916636951464],[114,97,79,0.33349908999130373],[114,98,64,0.2501291563645451],[114,98,65,0.2584402996986542],[114,98,66,0.2668117499815173],[114,98,67,0.27525332124954077],[114,98,68,0.28378857814511044],[114,98,69,0.29243052616861165],[114,98,70,0.29945532087650406],[114,98,71,0.30279845135562733],[114,98,72,0.3058772132449258],[114,98,73,0.3087453276891851],[114,98,74,0.31146434382983806],[114,98,75,0.31409974986828937],[114,98,76,0.3167174559125643],[114,98,77,0.31938065890091827],[114,98,78,0.32214709883906006],[114,98,79,0.3250667145413473],[114,99,64,0.24526356374519898],[114,99,65,0.25342310046192557],[114,99,66,0.2616522331167933],[114,99,67,0.2699611949556166],[114,99,68,0.27837564597774944],[114,99,69,0.28691125659069733],[114,99,70,0.29339382269451375],[114,99,71,0.2965147562594773],[114,99,72,0.2993554793522074],[114,99,73,0.30197113763861766],[114,99,74,0.3044253150325906],[114,99,75,0.3067860095012476],[114,99,76,0.30912198837729676],[114,99,77,0.31149953390434154],[114,99,78,0.3139795886616298],[114,99,79,0.31661530944548344],[114,100,64,0.2403512966674326],[114,100,65,0.24835060036061188],[114,100,66,0.2564258136724167],[114,100,67,0.26458745721533916],[114,100,68,0.27286321290192217],[114,100,69,0.2812714425404437],[114,100,70,0.28707378795820226],[114,100,71,0.28999563787785204],[114,100,72,0.29262367197144024],[114,100,73,0.29501397693930503],[114,100,74,0.29723163041763373],[114,100,75,0.2993465623716999],[114,100,76,0.3014298024785051],[114,100,77,0.303550124610684],[114,100,78,0.3057710984361211],[114,100,79,0.30814855705992467],[114,101,64,0.23537929559600593],[114,101,65,0.24321356270376515],[114,101,66,0.2511272435460171],[114,101,67,0.2591309507752637],[114,101,68,0.2672543109386592],[114,101,69,0.27551842290384876],[114,101,70,0.2805218518156444],[114,101,71,0.2832639976392091],[114,101,72,0.2857008959150764],[114,101,73,0.28788913373077113],[114,101,74,0.2898947908265123],[114,101,75,0.2917892042384566],[114,101,76,0.29364512446226304],[114,101,77,0.2955332745958852],[114,101,78,0.2975193228085524],[114,101,79,0.2996612773801233],[114,102,64,0.23032881876783037],[114,102,65,0.23799309103374253],[114,102,66,0.2457376435343678],[114,102,67,0.25357296113835576],[114,102,68,0.26153051550108386],[114,102,69,0.2696341881381822],[114,102,70,0.2737953974849815],[114,102,71,0.2763772844050607],[114,102,72,0.27864444081084666],[114,102,73,0.28065346377645795],[114,102,74,0.28247089323691105],[114,102,75,0.284168901249225],[114,102,76,0.28582137683542447],[114,102,77,0.28750041816212035],[114,102,78,0.28927324268971405],[114,102,79,0.29119952481130706],[114,103,64,0.2251852807702095],[114,103,65,0.23267203426022753],[114,103,66,0.24023746123171172],[114,103,67,0.24789171979087601],[114,103,68,0.25566798123338047],[114,103,69,0.2635929083826041],[114,103,70,0.266963601558848],[114,103,71,0.2694072569409678],[114,103,72,0.2715284429379208],[114,103,73,0.2733831879149677],[114,103,74,0.2750378520557496],[114,103,75,0.2765647704912579],[114,103,76,0.27803829366246907],[114,103,77,0.2795312368912768],[114,103,78,0.28111175001021604],[114,103,79,0.2828406167855395],[114,104,64,0.21994148081131745],[114,104,65,0.22724134531396095],[114,104,66,0.23461601084261607],[114,104,67,0.24207514470069816],[114,104,68,0.24965342192972248],[114,104,69,0.25738021408838],[114,104,70,0.2600847886282612],[114,104,71,0.2624139839632122],[114,104,72,0.2644145883673109],[114,104,73,0.26614143344828706],[114,104,74,0.26765999912795185],[114,104,75,0.2690420461659199],[114,104,76,0.270361644438964],[114,104,77,0.2716916090741007],[114,104,78,0.2731003554159297],[114,104,79,0.27464918269882943],[114,105,64,0.21459849876804843],[114,105,65,0.2217009575775614],[114,105,66,0.22887232547589662],[114,105,67,0.23612165957677456],[114,105,68,0.24348489073574733],[114,105,69,0.25059571352294635],[114,105,70,0.25320570195003106],[114,105,71,0.2554451327271955],[114,105,72,0.257351403500648],[114,105,73,0.25897750795173213],[114,105,74,0.2603873203894432],[114,105,75,0.2616512577822749],[114,105,76,0.26284233243837585],[114,105,77,0.26403260744296875],[114,105,78,0.26529006586123377],[114,105,79,0.2666759036211584],[114,106,64,0.20916701555260883],[114,106,65,0.21606102055885223],[114,106,66,0.223016299819119],[114,106,67,0.2300412314038297],[114,106,68,0.2371727023744052],[114,106,69,0.24381515000564036],[114,106,70,0.24636079954822915],[114,106,71,0.24853537518689062],[114,106,72,0.25037375913869936],[114,106,73,0.2519264847431487],[114,106,74,0.25325510250802313],[114,106,75,0.2544279147085055],[114,106,76,0.2555160916069793],[114,106,77,0.25659018128917904],[114,106,78,0.25771702403935165],[114,106,79,0.2589570811104888],[114,107,64,0.20366908185352134],[114,107,65,0.21034358121821128],[114,107,66,0.2170702731544059],[114,107,67,0.2238568403281957],[114,107,68,0.23074077652642846],[114,107,69,0.237067290242666],[114,107,70,0.23957116261059602],[114,107,71,0.24170543071866035],[114,107,72,0.2435020401505011],[114,107,73,0.24500848763045172],[114,107,74,0.2462833168306715],[114,107,75,0.24739196997295057],[114,107,76,0.24840300800904352],[114,107,77,0.2493847111308693],[114,107,78,0.2504020703277692],[114,107,79,0.2515141796795275],[114,108,64,0.1981403372934819],[114,108,65,0.20458471313228171],[114,108,66,0.21107105502965948],[114,108,67,0.21760638433302498],[114,108,68,0.22422840491411875],[114,108,69,0.2303591238680321],[114,108,70,0.23284301349440203],[114,108,71,0.23496074271836992],[114,108,72,0.23674097809994027],[114,108,73,0.23822767240283865],[114,108,74,0.23947573827723564],[114,108,75,0.24054706119912608],[114,108,76,0.2415068640226942],[114,108,77,0.24242043451945727],[114,108,78,0.24335022629343775],[114,108,79,0.24435334248194854],[114,109,64,0.1926326363321651],[114,109,65,0.19883704934737306],[114,109,66,0.20507234896500967],[114,109,67,0.21134497361201376],[114,109,68,0.21769239652546318],[114,109,69,0.2236811194325511],[114,109,70,0.22616579197520725],[114,109,71,0.22828973715403594],[114,109,72,0.23007809442392382],[114,109,73,0.2315708522428749],[114,109,74,0.23281874601852526],[114,109,75,0.23387947525638217],[114,109,76,0.2348142516978204],[114,109,77,0.2356846893132488],[114,109,78,0.23655004609087577],[114,109,79,0.23746482664062152],[114,110,64,0.18720738550968025],[114,110,65,0.19316289382196128],[114,110,66,0.19913762103446989],[114,110,67,0.20513753529409956],[114,110,68,0.21119939755399547],[114,110,69,0.21699433536359594],[114,110,70,0.2194993411443668],[114,110,71,0.2216510981793052],[114,110,72,0.22347107616826076],[114,110,73,0.22499497944430616],[114,110,74,0.2262689124576336],[114,110,75,0.22734584131113295],[114,110,76,0.2282823624346555],[114,110,77,0.2291357886309738],[114,110,78,0.22996156186980427],[114,110,79,0.2308110013529943],[114,111,64,0.18192037861598453],[114,111,65,0.18761893337190186],[114,111,66,0.19332450760279088],[114,111,67,0.1990427201674915],[114,111,68,0.2048090976486367],[114,111,69,0.21022270224096987],[114,111,70,0.21276694762691895],[114,111,71,0.21496772405549294],[114,111,72,0.21684277766555507],[114,111,73,0.21842329133237073],[114,111,74,0.21975035769015047],[114,111,75,0.22087172247208448],[114,111,76,0.221838808430982],[114,111,77,0.22270402932558359],[114,111,78,0.223518402676777],[114,111,79,0.22432946921979074],[114,112,64,0.17680717753410885],[114,112,65,0.18224233077993782],[114,112,66,0.18767122405987302],[114,112,67,0.19309920487455678],[114,112,68,0.1985600045014771],[114,112,69,0.20330948479528163],[114,112,70,0.2059135444429806],[114,112,71,0.20818695952263722],[114,112,72,0.21014370396181475],[114,112,73,0.21181019170078758],[114,112,74,0.21322209678913112],[114,112,75,0.21442141586687077],[114,112,76,0.2154537823501605],[114,112,77,0.21636604094579004],[114,112,78,0.2172040904203639],[114,112,79,0.21801100185364516],[114,113,64,0.17187990551066942],[114,113,65,0.17704728029756703],[114,113,66,0.18219354629358075],[114,113,67,0.1873238206647465],[114,113,68,0.19246946301418064],[114,113,69,0.1962209811537233],[114,113,70,0.19890616212770096],[114,113,71,0.20127716198154563],[114,113,72,0.20334413631654832],[114,113,73,0.2051284769999319],[114,113,74,0.20666001745804294],[114,113,75,0.20797445061281028],[114,113,76,0.20911096772515425],[114,113,77,0.21011012580117328],[114,113,78,0.21101195060650363],[114,113,79,0.2118542817254974],[114,114,64,0.16713267334811005],[114,114,65,0.17203023393364303],[114,114,66,0.17688999700135863],[114,114,67,0.18171687109690096],[114,114,68,0.1858658161718711],[114,114,69,0.18894029787807254],[114,114,70,0.19172706826470018],[114,114,71,0.19422006251625282],[114,114,72,0.19642559227550507],[114,114,73,0.1983597970658691],[114,114,74,0.20004626962911778],[114,114,75,0.20151386279364591],[114,114,76,0.2027946849783866],[114,114,77,0.20392229092173267],[114,114,78,0.20493007370686994],[114,114,79,0.20584986363845306],[114,115,64,0.16254432548122427],[114,115,65,0.16717255847785267],[114,115,66,0.17127150824507187],[114,115,67,0.17488751645084064],[114,115,68,0.17829701839467518],[114,115,69,0.18146527077085683],[114,115,70,0.18437195538370138],[114,115,71,0.18700925311714842],[114,115,72,0.1893796395097066],[114,115,73,0.19149381688542916],[114,115,74,0.19336878972566118],[114,115,75,0.1950260895570344],[114,115,76,0.1964901552149511],[114,115,77,0.19778687392103472],[114,115,78,0.19894228819072754],[114,115,79,0.19998147316635428],[114,116,64,0.15558081159103085],[114,116,65,0.159552155935117],[114,116,66,0.16337717458065068],[114,116,67,0.16704634159552006],[114,116,68,0.17053280249501143],[114,116,69,0.17380640594596838],[114,116,70,0.17684813857608028],[114,116,71,0.1796486733806],[114,116,72,0.1822066996872813],[114,116,73,0.18452736016418192],[114,116,74,0.18662080005199796],[114,116,75,0.18850083348647387],[114,116,76,0.1901837314552782],[114,116,77,0.1916871356094653],[114,116,78,0.19302910182468863],[114,116,79,0.19422727708400134],[114,117,64,0.14745869952815593],[114,117,65,0.1514438512940639],[114,117,66,0.15530377280091706],[114,117,67,0.15902924065867452],[114,117,68,0.16259791042026153],[114,117,69,0.16598484262593455],[114,117,70,0.1691727640964149],[114,117,71,0.1721510977254437],[114,117,72,0.17491484316183328],[114,117,73,0.1774635352011503],[114,117,74,0.1798002835182771],[114,117,75,0.18193089714870214],[114,117,76,0.18386309690011052],[114,117,77,0.18560581864804648],[114,117,78,0.1871686102420103],[114,117,79,0.18856112452293833],[114,118,64,0.13920211911275793],[114,118,65,0.14319825432495545],[114,118,66,0.14709170352404707],[114,118,67,0.15087349884221998],[114,118,68,0.1545261143821031],[114,118,69,0.1580303390183675],[114,118,70,0.1613710301274757],[114,118,71,0.16453662409662848],[114,118,72,0.16751857521247707],[114,118,73,0.1703108435473253],[114,118,74,0.17290943390212335],[114,118,75,0.17531198773304574],[114,118,76,0.17751742985534147],[114,118,77,0.17952567158530602],[114,118,78,0.18133737185000967],[114,118,79,0.1829537576657891],[114,119,64,0.13086359485030893],[114,119,65,0.1348655051579108],[114,119,66,0.13878835428644012],[114,119,67,0.14262336580391766],[114,119,68,0.1463580378192911],[114,119,69,0.1499792825183335],[114,119,70,0.15347442079831755],[114,119,71,0.15683116505802572],[114,119,72,0.16003761452287302],[114,119,73,0.1630822718981196],[114,119,74,0.16595408184289615],[114,119,75,0.16864249171290485],[114,119,76,0.17113753497660694],[114,119,77,0.17342993766883263],[114,119,78,0.17551124820789377],[114,119,79,0.17737399086776126],[114,120,64,0.12249988853355621],[114,120,65,0.1265001797883122],[114,120,66,0.13044569464290195],[114,120,67,0.13432776691255388],[114,120,68,0.13813901217307886],[114,120,69,0.14187272490827627],[114,120,70,0.14551895398385156],[114,120,71,0.149064941630538],[114,120,72,0.15249566405718867],[114,120,73,0.15579436715748415],[114,120,74,0.15894309626885636],[114,120,75,0.16192321898047868],[114,120,76,0.1647159400296983],[114,120,77,0.16730280737298706],[114,120,78,0.1696662085687133],[114,120,79,0.17178985666451294],[114,121,64,0.11416948725014614],[114,121,65,0.1181588402074883],[114,121,66,0.12211791062428308],[114,121,67,0.12603804572651672],[114,121,68,0.12991695495451844],[114,121,69,0.1337544278358019],[114,121,70,0.13754342794012353],[114,121,71,0.14127096467809613],[114,121,72,0.14491915886096843],[114,121,73,0.14846627890757222],[114,121,74,0.15188774518180678],[114,121,75,0.15515710005967281],[114,121,76,0.1582469414472586],[114,121,77,0.16112981759969006],[114,121,78,0.16363703407378627],[114,121,79,0.16462870402404867],[114,122,64,0.10593016865056229],[114,122,65,0.1098976576242293],[114,122,66,0.11385910643873226],[114,122,67,0.11780576576558126],[114,122,68,0.12174029732698666],[114,122,69,0.12566894691531239],[114,122,70,0.12958769521321423],[114,122,71,0.13348353234183555],[114,122,72,0.13733601932209039],[114,122,73,0.14111879782944217],[114,122,74,0.14480104433411328],[114,122,75,0.1483488649049579],[114,122,76,0.15172662715069996],[114,122,77,0.15295043449953916],[114,122,78,0.15351436284542957],[114,122,79,0.15403399768186063],[114,123,64,0.0978366576746393],[114,123,65,0.10177012306390865],[114,123,66,0.10572108777234335],[114,123,67,0.10968058597712449],[114,123,68,0.1136559756246075],[114,123,69,0.11765976886674546],[114,123,70,0.12169097820075978],[114,123,71,0.1257367578411896],[114,123,72,0.1297744241259805],[114,123,73,0.1337734042025912],[114,123,74,0.13769710780093086],[114,123,75,0.14458358908667665],[114,123,76,0.14958376511632157],[114,123,77,0.1530713148044887],[114,123,78,0.15653811766083914],[114,123,79,0.1600192197999263],[114,124,64,0.08993833454729463],[114,124,65,0.09382480486613509],[114,124,66,0.0977511859090252],[114,124,67,0.10170816880050398],[114,124,68,0.10570744537698487],[114,124,69,0.11058062779989261],[114,124,70,0.11785687740644797],[114,124,71,0.1252189205963071],[114,124,72,0.1326414343478719],[114,124,73,0.14008975238907878],[114,124,74,0.14752209521666715],[114,124,75,0.1545930973835632],[114,124,76,0.15776705719761497],[114,124,77,0.16087873128942065],[114,124,78,0.1639726322939476],[114,124,79,0.16709143551468494],[114,125,64,0.0842182499426298],[114,125,65,0.09108190160712146],[114,125,66,0.09805024979442598],[114,125,67,0.10511040243429988],[114,125,68,0.11227533891428244],[114,125,69,0.11956686730872437],[114,125,70,0.12698811799762663],[114,125,71,0.13452576541765554],[114,125,72,0.1421528043804616],[114,125,73,0.1498312245511989],[114,125,74,0.15751457571564673],[114,125,75,0.16311817279468055],[114,125,76,0.16594997520167648],[114,125,77,0.16871378397939385],[114,125,78,0.17146111979833048],[114,125,79,0.17424158871719794],[114,126,64,0.09319667844980127],[114,126,65,0.10006488517019979],[114,126,66,0.10705484204956517],[114,126,67,0.11415295728135337],[114,126,68,0.12137546482264916],[114,126,69,0.12874897502370836],[114,126,70,0.1362791066311583],[114,126,71,0.1439529439395029],[114,126,72,0.1517421262240131],[114,126,73,0.15960582310145469],[114,126,74,0.16749358757889568],[114,126,75,0.17159305689916643],[114,126,76,0.17411707103194154],[114,126,77,0.17656678140589385],[114,126,78,0.1789998680480762],[114,126,79,0.1814720594509845],[114,127,64,0.10250794291255085],[114,127,65,0.1093584395393824],[114,127,66,0.1163455459535168],[114,127,67,0.12345484402783287],[114,127,68,0.1307052457163027],[114,127,69,0.13812751639264947],[114,127,70,0.14572948562561328],[114,127,71,0.15349869278403816],[114,127,72,0.16140573495420754],[114,127,73,0.16940749113803172],[114,127,74,0.1774502137791728],[114,127,75,0.1799975814247],[114,127,76,0.18225197029719548],[114,127,77,0.18442546239080682],[114,127,78,0.18658097810225407],[114,127,79,0.18877948283357526],[114,128,64,0.11213742329400143],[114,128,65,0.11894929883539099],[114,128,66,0.12591026408600128],[114,128,67,0.13300494789728357],[114,128,68,0.1402543422914999],[114,128,69,0.14769268125308824],[114,128,70,0.15532969427877136],[114,128,71,0.16315339478630791],[114,128,72,0.17113363248531743],[114,128,73,0.17922551480213839],[114,128,74,0.18613378257502589],[114,128,75,0.1883127612759861],[114,128,76,0.190337530932804],[114,128,77,0.1922748199381477],[114,128,78,0.1941918391211144],[114,128,79,0.19615386715104552],[114,129,64,0.12205440303833234],[114,129,65,0.12880872475801095],[114,129,66,0.1357221367118366],[114,129,67,0.14277818566727268],[114,129,68,0.14999936009211054],[114,129,69,0.15742268642658477],[114,129,70,0.16505947960442804],[114,129,71,0.17289823186922718],[114,129,72,0.18090831877908317],[114,129,73,0.18904356918697524],[114,129,74,0.19452281357797616],[114,129,75,0.19652129655980033],[114,129,76,0.19835603619875483],[114,129,77,0.20009696285382667],[114,129,78,0.20181464212613048],[114,129,79,0.20357774961033098],[114,130,64,0.1322102954509731],[114,130,65,0.1388907581985895],[114,130,66,0.14573782521195708],[114,130,67,0.15273382504243666],[114,130,68,0.15990221522905018],[114,130,69,0.16728220884099979],[114,130,70,0.17488642571984775],[114,130,71,0.18270384466823478],[114,130,72,0.19070361839615774],[114,130,73,0.19883874912725968],[114,130,74,0.20275478066988176],[114,130,75,0.2046081035405632],[114,130,76,0.2062894221575085],[114,130,77,0.2078710152959995],[114,130,78,0.2094259329128674],[114,130,79,0.21102539016922908],[114,131,64,0.1425369398599138],[114,131,65,0.14913053664276393],[114,131,66,0.15589585552699298],[114,131,67,0.162813856022681],[114,131,68,0.16990854209840917],[114,131,69,0.17722084938461272],[114,131,70,0.18476450207938577],[114,131,71,0.1925289990817163],[114,131,72,0.2004835025353753],[114,131,73,0.20858058497203022],[114,131,74,0.21082316374113957],[114,131,75,0.21256087454285288],[114,131,76,0.2141195397237129],[114,131,77,0.21557305443281377],[114,131,78,0.216996204385714],[114,131,79,0.21846200381082256],[114,132,64,0.15294495212621997],[114,132,65,0.1594426540080702],[114,132,66,0.16611499034214652],[114,132,67,0.17294137502114854],[114,132,68,0.17994609551104318],[114,132,69,0.18717157086263753],[114,132,70,0.19463256404006604],[114,132,71,0.20231918252458472],[114,132,72,0.2102008179539475],[114,132,73,0.21682881367331241],[114,132,74,0.2187278864329564],[114,132,75,0.22037079082816177],[114,132,76,0.22182858636396413],[114,132,77,0.22317623132742082],[114,132,78,0.224489682106126],[114,132,79,0.22584319203114417],[114,133,64,0.16332296571595314],[114,133,65,0.16971900723935493],[114,133,66,0.17629067424610617],[114,133,67,0.18301561291574245],[114,133,68,0.18991829357066448],[114,133,69,0.19704262993562627],[114,133,70,0.20440452334805037],[114,133,71,0.21199486561767772],[114,133,72,0.21978351800676163],[114,133,73,0.22467176754183907],[114,133,74,0.22649339726672202],[114,133,75,0.22805269977815565],[114,133,76,0.2294212752046164],[114,133,77,0.23067476179058183],[114,133,78,0.2318899039903121],[114,133,79,0.2331418219179084],[114,134,64,0.17355766919962068],[114,134,65,0.17984699591643624],[114,134,66,0.18631132411410412],[114,134,67,0.19292626982694558],[114,134,68,0.19971645135738],[114,134,69,0.20672741794613075],[114,134,70,0.21397641502526227],[114,134,71,0.22145537537433307],[114,134,72,0.22913492608268946],[114,134,73,0.23242738774137403],[114,134,74,0.23417675866866247],[114,134,75,0.23565773004741025],[114,134,76,0.2369421033660693],[114,134,77,0.23810586740230585],[114,134,78,0.23922624335862813],[114,134,79,0.24037893258332202],[114,135,64,0.18355465949458236],[114,135,65,0.18973268851456407],[114,135,66,0.19608375525585273],[114,135,67,0.2025811889865405],[114,135,68,0.2092497609754166],[114,135,69,0.21613685759405288],[114,135,70,0.22326132577534583],[114,135,71,0.23061643670562046],[114,135,72,0.23812668887404026],[114,135,73,0.24014415974800388],[114,135,74,0.24182256818350847],[114,135,75,0.24322607623913148],[114,135,76,0.24442636974812834],[114,135,77,0.2454994934412376],[114,135,78,0.24652288074503478],[114,135,79,0.24757258651598166],[114,136,64,0.19323920729603516],[114,136,65,0.19930189179005736],[114,136,66,0.20553455426027395],[114,136,67,0.21190802656928334],[114,136,68,0.2184472662334903],[114,136,69,0.22520171217867932],[114,136,70,0.232192079917762],[114,136,71,0.23941328136334064],[114,136,72,0.24590144636643632],[114,136,73,0.24785277198986713],[114,136,74,0.24945841276053193],[114,136,75,0.25078191653414056],[114,136,76,0.2518945628295365],[114,136,77,0.2528721906021589],[114,136,78,0.2537922199417134],[114,136,79,0.254730875977895],[114,137,64,0.20255576061108393],[114,137,65,0.20849959144705515],[114,137,66,0.21460945661845204],[114,137,67,0.2208535558756685],[114,137,68,0.2272570841006624],[114,137,69,0.23387172395464145],[114,137,70,0.24072030214357493],[114,137,71,0.2477996492557399],[114,137,72,0.25368559967640536],[114,137,73,0.25556723133218684],[114,137,74,0.25709597439690385],[114,137,75,0.2583344791062474],[114,137,76,0.2593533572958553],[114,137,77,0.260228011052628],[114,137,78,0.2610356533653448],[114,137,79,0.26185252905040945],[114,138,64,0.21146783768928595],[114,138,65,0.21728978074537605],[114,138,66,0.22327310757976965],[114,138,67,0.22938334720518064],[114,138,68,0.23564599116925558],[114,138,69,0.24211510290857638],[114,138,70,0.24881581166647743],[114,138,71,0.25574709738163354],[114,138,72,0.2614788520502556],[114,138,73,0.2632857302417626],[114,138,74,0.2647319253783408],[114,138,75,0.26587894018932884],[114,138,76,0.2667964879886745],[114,138,77,0.2675593304682983],[114,138,78,0.26824430433471064],[114,138,79,0.268927545023481],[114,139,64,0.2199583110169329],[114,139,65,0.2256556787492786],[114,139,66,0.23150920796553778],[114,139,67,0.2374818251630873],[114,139,68,0.24359937687929537],[114,139,69,0.2499183677101084],[114,139,70,0.25646634950476566],[114,139,71,0.2632446180792506],[114,139,72,0.269264968162199],[114,139,73,0.27099126409275337],[114,139,74,0.27234861170402813],[114,139,75,0.2733971525416275],[114,139,76,0.27420550011461753],[114,139,77,0.274847595212904],[114,139,78,0.2753997456869203],[114,139,79,0.27593785884898847],[114,140,64,0.2280300840263635],[114,140,65,0.23360033988982248],[114,140,66,0.23932104662644704],[114,140,67,0.24515270509494952],[114,140,68,0.251121565199438],[114,140,69,0.2572865405215438],[114,140,70,0.26367764055259607],[114,140,71,0.270298568202704],[114,140,72,0.2770120223019671],[114,140,73,0.278651997162674],[114,140,74,0.27991452336668793],[114,140,75,0.2808582031297544],[114,140,76,0.28155037471880606],[114,140,77,0.2820639938804451],[114,140,78,0.28247469419265386],[114,140,79,0.28285803438983376],[114,141,64,0.23570716218094537],[114,141,65,0.24114765651154826],[114,141,66,0.24673242121685185],[114,141,67,0.2524198103182027],[114,141,68,0.25823650642307505],[114,141,69,0.26424369730364033],[114,141,70,0.27047379204230765],[114,141,71,0.2769329107748079],[114,141,72,0.2836047172976098],[114,141,73,0.28622137594033203],[114,141,74,0.28738455023066056],[114,141,75,0.2882187989225583],[114,141,76,0.28879002848711527],[114,141,77,0.2891700524649857],[114,141,78,0.2894336802631926],[114,141,79,0.2896559862098524],[114,142,64,0.24303612012970105],[114,142,65,0.2483437560959658],[114,142,66,0.25378894896892185],[114,142,67,0.2593282718180565],[114,142,68,0.26498884072394496],[114,142,69,0.2708338752286008],[114,142,70,0.27689802996258106],[114,142,71,0.283189770618695],[114,142,72,0.2896951274349496],[114,142,73,0.2936379884244325],[114,142,74,0.2947000223094379],[114,142,75,0.2954234797418694],[114,142,76,0.2958726869931497],[114,142,77,0.2961181524662063],[114,142,78,0.2962336924721904],[114,142,79,0.29629372966365264],[114,143,64,0.25007314874388636],[114,143,65,0.2552443562965434],[114,143,66,0.26054575660505513],[114,143,67,0.2659325818608346],[114,143,68,0.2714323519981586],[114,143,69,0.27710997456925457],[114,143,70,0.2830021067699598],[114,143,71,0.28911941393832796],[114,143,72,0.2954502310595708],[114,143,73,0.30083425983933815],[114,143,74,0.30179660481349385],[114,143,75,0.30241163366326124],[114,143,76,0.3027419436703586],[114,143,77,0.30285656100068165],[114,143,78,0.30282811277356675],[114,143,79,0.3027301634835111],[114,144,64,0.25683286006669703],[114,144,65,0.26186477218449594],[114,144,66,0.2670188517166834],[114,144,67,0.2722495180407074],[114,144,68,0.2775846603179806],[114,144,69,0.28309046076124517],[114,144,70,0.2888052735058617],[114,144,71,0.2947417634520295],[114,144,72,0.3008904628371743],[114,144,73,0.3072232222088896],[114,144,74,0.3086335342321477],[114,144,75,0.3091431139394408],[114,144,76,0.30935852782855444],[114,144,77,0.3093471488522605],[114,144,78,0.3091802178154038],[114,144,79,0.3089302266991721],[114,145,64,0.26331853137072814],[114,145,65,0.26820920636878914],[114,145,66,0.27321338479613827],[114,145,67,0.2782852778363369],[114,145,68,0.2834531089363316],[114,145,69,0.2887838673818042],[114,145,70,0.2943172478697614],[114,145,71,0.300067668961694],[114,145,72,0.30602771192372347],[114,145,73,0.31217146160638304],[114,145,74,0.3151785147208981],[114,145,75,0.31558552642765647],[114,145,76,0.3156901462634136],[114,145,77,0.3155579362722858],[114,145,78,0.3152585615110295],[114,145,79,0.3148632291798685],[114,146,64,0.2695342503296654],[114,146,65,0.2742825397984288],[114,146,66,0.27913505371795544],[114,146,67,0.2840464542307991],[114,146,68,0.28904526171402267],[114,146,69,0.29419876234899656],[114,146,70,0.29954759329431985],[114,146,71,0.3051076415304366],[114,146,72,0.31087335273527716],[114,146,73,0.3168209502402886],[114,146,74,0.32140129800058354],[114,146,75,0.3217086792598023],[114,146,76,0.32170685104697216],[114,146,77,0.32145942136121086],[114,146,78,0.3210342993961895],[114,146,79,0.32050119919902353],[114,147,64,0.2754842383725213],[114,147,65,0.2800896559454779],[114,147,66,0.2847894333425703],[114,147,67,0.2895393741236854],[114,147,68,0.2943682547408314],[114,147,69,0.2993431196493569],[114,147,70,0.3045051198697503],[114,147,71,0.30987129451752754],[114,147,72,0.31543773844275613],[114,147,73,0.32118268831917274],[114,147,74,0.3270695192584249],[114,147,75,0.32748487782232133],[114,147,76,0.32738122568466727],[114,147,77,0.32702464394610853],[114,147,78,0.32648111771930177],[114,147,79,0.3258186665239191],[114,148,64,0.2811722770160734],[114,148,65,0.28563486971698016],[114,148,66,0.2901814104710037],[114,148,67,0.29476954228210756],[114,148,68,0.2994282530903726],[114,148,69,0.3042237944667532],[114,148,70,0.3091973850126565],[114,148,71,0.31436687832524746],[114,148,72,0.3197297794547058],[114,148,73,0.32526618841700944],[114,148,74,0.3309416633091771],[114,148,75,0.33288917558305886],[114,148,76,0.33268854735756953],[114,148,77,0.33222924835440487],[114,148,78,0.3315751865218387],[114,148,79,0.33079249651931],[114,149,64,0.28660123741349897],[114,149,65,0.2909214613496966],[114,149,66,0.29531472441748524],[114,149,67,0.2997411911090208],[114,149,68,0.30423001299635444],[114,149,69,0.3088461020047358],[114,149,70,0.3136302941696365],[114,149,71,0.31860090913742845],[114,149,72,0.32375660714698457],[114,149,73,0.32907918180463264],[114,149,74,0.33453628169127303],[114,149,75,0.33789958064394404],[114,149,76,0.337606925203154],[114,149,77,0.33705154512671076],[114,149,78,0.33629513685628687],[114,149,79,0.3354017755316887],[114,150,64,0.29177271335250293],[114,150,65,0.2959513155348453],[114,150,66,0.30019161345814643],[114,150,67,0.3044569364963972],[114,150,68,0.3087765497249858],[114,150,69,0.31321350028000516],[114,150,70,0.3178078018298137],[114,150,71,0.3225778919122735],[114,150,72,0.3275233230807826],[114,150,73,0.33262739860043167],[114,150,74,0.3378597462391399],[114,150,75,0.34249721791184595],[114,150,76,0.34211741459699513],[114,150,77,0.34147257171460743],[114,150,78,0.34062206228433306],[114,150,79,0.3396277478065582],[114,151,64,0.29668675793705446],[114,151,65,0.30072466601889253],[114,151,66,0.30481256741064694],[114,151,67,0.3089175400254264],[114,151,68,0.3130689114108964],[114,151,69,0.3173273771552786],[114,151,70,0.3217317131093263],[114,151,71,0.3263001378794556],[114,151,72,0.3310328339368216],[114,151,73,0.33591442193580373],[114,151,74,0.3409163823001313],[114,151,75,0.34599941830324804],[114,151,76,0.346204107404115],[114,151,77,0.3454761522108851],[114,151,78,0.3445395447932724],[114,151,79,0.34345380417842747],[114,152,64,0.3013417241957901],[114,152,65,0.30523994593352843],[114,152,66,0.30917618660459445],[114,152,67,0.31312177777881045],[114,152,68,0.3171060591247587],[114,152,69,0.32118694187857716],[114,152,70,0.32540158616750914],[114,152,71,0.32976767678634966],[114,152,72,0.3342857723869402],[114,152,73,0.3389416163232697],[114,152,74,0.3437084037239538],[114,152,75,0.3485489995095722],[114,152,76,0.34985419817539776],[114,152,77,0.3490489561631219],[114,152,78,0.3480337052672251],[114,152,79,0.3468655227654647],[114,153,64,0.30573420987457073],[114,153,65,0.3094937441206063],[114,153,66,0.3132791475131708],[114,153,67,0.31706641603865515],[114,153,68,0.32088485344709317],[114,153,69,0.3247892214000266],[114,153,70,0.3288147357162887],[114,153,71,0.3329782641377656],[114,153,72,0.337280504121704],[114,153,73,0.34170813041089276],[114,153,74,0.34623590745998706],[114,153,75,0.35082876192032386],[114,153,76,0.35305802626843363],[114,153,77,0.35218055652352726],[114,153,78,0.35109327864851375],[114,153,79,0.34985076189474607],[114,154,64,0.30985910669233346],[114,154,65,0.31348086773780415],[114,154,66,0.31711627533429976],[114,154,67,0.32074629415925876],[114,154,68,0.32440014783636945],[114,154,69,0.3281291617485493],[114,154,70,0.3319663378930562],[114,154,71,0.335927483679648],[114,154,72,0.34001322125612415],[114,154,73,0.34421097430763103],[114,154,74,0.34849692790042186],[114,154,75,0.3528379570445023],[114,154,76,0.35580909387530946],[114,154,77,0.35486348679064295],[114,154,78,0.35370971392550815],[114,154,79,0.3523998054819035],[114,155,64,0.3137097543679593],[114,155,65,0.31719451145776745],[114,155,66,0.32068072383467844],[114,155,67,0.3241545149269786],[114,155,68,0.32764498910019024],[114,155,69,0.33119983476904324],[114,155,70,0.33484963678272744],[114,155,71,0.33860894538959474],[114,155,72,0.3424781223447632],[114,155,73,0.34644517167025946],[114,155,74,0.35048755111016633],[114,155,75,0.3545739604081073],[114,155,76,0.35810405994185146],[114,155,77,0.35709329740144397],[114,155,78,0.35587729908605875],[114,155,79,0.35450556109038917],[114,156,64,0.3172781997605165],[114,156,65,0.32062653360668614],[114,156,66,0.32396426280118856],[114,156,67,0.3272827427484402],[114,156,68,0.3306109253052042],[114,156,69,0.3339927505449178],[114,156,70,0.3374562528959638],[114,156,71,0.341014579254882],[114,156,72,0.3446676792515648],[114,156,73,0.34840398675262824],[114,156,74,0.3522020890906999],[114,156,75,0.3560323805749927],[114,156,76,0.3598586969192633],[114,156,77,0.35886861143464316],[114,156,78,0.3575933111793462],[114,156,79,0.35616381089958116],[114,157,64,0.3205555615068956],[114,157,65,0.3237678396285562],[114,157,66,0.3269576734825793],[114,157,67,0.330121610044654],[114,157,68,0.3332884214954361],[114,157,69,0.33649827586223746],[114,157,70,0.3397765939386697],[114,157,71,0.3431350251430087],[114,157,72,0.3465729911397654],[114,157,73,0.3500792266333597],[114,157,74,0.3536333142355652],[114,157,75,0.357207210360529],[114,157,76,0.3607667591655359],[114,157,77,0.3601911796886518],[114,157,78,0.3588581916346951],[114,157,79,0.3573735158187208],[114,158,64,0.3235325005893147],[114,158,65,0.32660887330864646],[114,158,66,0.32965125244970217],[114,158,67,0.3326612322719394],[114,158,68,0.33566738362981263],[114,158,69,0.3387061591100323],[114,158,70,0.34180036824274035],[114,158,71,0.3449601191004503],[114,158,72,0.34818422587305475],[114,158,73,0.35146161885850435],[114,158,74,0.3547727541498416],[114,158,75,0.35809102033773194],[114,158,76,0.36138413959748406],[114,158,77,0.3610659352005026],[114,158,78,0.35967574699344007],[114,158,79,0.35813717299499853],[114,159,64,0.32619979731965026],[114,159,65,0.3291402162430717],[114,159,66,0.33203542435414163],[114,159,67,0.3348918320401007],[114,159,68,0.3377377911969402],[114,159,69,0.3406061620557605],[114,159,70,0.3435172012687942],[114,159,71,0.3464794764515237],[114,159,72,0.3494911491499708],[114,159,73,0.3525412647603589],[114,159,74,0.3556110470239597],[114,159,75,0.35867519474653003],[114,159,76,0.3617031784289463],[114,159,77,0.36150104727425886],[114,159,78,0.36005337521845626],[114,159,79,0.3584612269781878],[114,160,64,0.32854903528881124],[114,160,65,0.3313532961017037],[114,160,66,0.3341014641236737],[114,160,67,0.3368044728549151],[114,160,68,0.33949043901955306],[114,160,69,0.34218879898633475],[114,160,70,0.34491735563918746],[114,160,71,0.3476831721119285],[114,160,72,0.3504837417302489],[114,160,73,0.35330816874353815],[114,160,74,0.35613835777450864],[114,160,75,0.35895020993105453],[114,160,76,0.3617148235511424],[114,160,77,0.36150797508996324],[114,160,78,0.36000231775645053],[114,160,79,0.3583565348220134],[114,161,64,0.3305733928971972],[114,161,65,0.3332412042986723],[114,161,66,0.33584232919833734],[114,161,67,0.33839190307542033],[114,161,68,0.34091778882223805],[114,161,69,0.3434461837633067],[114,161,70,0.3459925552137378],[114,161,71,0.34856251858042336],[114,161,72,0.35115290515430536],[114,161,73,0.353752843864307],[114,161,74,0.35634485519112374],[114,161,75,0.35890595544706355],[114,161,76,0.36140876964532265],[114,161,77,0.3611015209668229],[114,161,78,0.3595379375403191],[114,161,79,0.3578388854237575],[114,162,64,0.3322685431556883],[114,162,65,0.33479962375746436],[114,162,66,0.33725360248207337],[114,162,67,0.33964951074579186],[114,162,68,0.3420149312031223],[114,162,69,0.3443729854048164],[114,162,70,0.3467369137803592],[114,162,71,0.3491109421262926],[114,162,72,0.3514912564042856],[114,162,73,0.3538669940681912],[114,162,74,0.3562212503581817],[114,162,75,0.3585320980009918],[114,162,76,0.36077361876482256],[114,162,77,0.36029988335621377],[114,162,78,0.3586800231319562],[114,162,79,0.3569295734275045],[114,163,64,0.3336336625268875],[114,163,65,0.33602786753740316],[114,163,66,0.33833454676316255],[114,163,67,0.3405763900380748],[114,163,68,0.342780658724492],[114,163,69,0.34496749287808176],[114,163,70,0.34714796899958394],[114,163,71,0.34932495775115935],[114,163,72,0.35149401200858627],[114,163,73,0.35364427349545957],[114,163,74,0.35575939665437095],[114,163,75,0.35781848840512326],[114,163,76,0.3597970624430664],[114,163,77,0.359124709642688],[114,163,78,0.35745311922127965],[114,163,79,0.35565602804442503],[114,164,64,0.3346685625429737],[114,164,65,0.33692565200736924],[114,164,66,0.339084530907885],[114,164,67,0.3411714251987497],[114,164,68,0.3432132127458393],[114,164,69,0.3452270374901621],[114,164,70,0.3472218003399327],[114,164,71,0.3491990093732264],[114,164,72,0.3511535831209592],[114,164,73,0.353074674115238],[114,164,74,0.3549465115627075],[114,164,75,0.35674926199253326],[114,164,76,0.3584599067260254],[114,164,77,0.35760707851277146],[114,164,78,0.35589249157548736],[114,164,79,0.35405771747995546],[114,165,64,0.3353489498608091],[114,165,65,0.33746591746743493],[114,165,66,0.3394736142794063],[114,165,67,0.3414017096327182],[114,165,68,0.3432766251933252],[114,165,69,0.3451124775071049],[114,165,70,0.34691598914530575],[114,165,71,0.3486873280086166],[114,165,72,0.35042082277136577],[114,165,73,0.35210570024251164],[114,165,74,0.35372684371032925],[114,165,75,0.35526557132275166],[114,165,76,0.35670043354709446],[114,165,77,0.35582094927947566],[114,165,78,0.35407491649196077],[114,165,79,0.35221384052667937],[114,166,64,0.33564530687486416],[114,166,65,0.33761570888735537],[114,166,66,0.33946540831497934],[114,166,67,0.3412273870637603],[114,166,68,0.342927539058876],[114,166,69,0.34457697414645755],[114,166,70,0.346180298173696],[114,166,71,0.3477364326278776],[114,166,72,0.34923923503484133],[114,166,73,0.35067814326379176],[114,166,74,0.35203884302856164],[114,166,75,0.3533039578548858],[114,166,76,0.35445376076877444],[114,166,77,0.35384301307875093],[114,166,78,0.35207800416869306],[114,166,79,0.3502023581512499],[114,167,64,0.3355364091370818],[114,167,65,0.3373511455328475],[114,167,66,0.33903341965639133],[114,167,67,0.3406193436850116],[114,167,68,0.34213421908043884],[114,167,69,0.3435862348247494],[114,167,70,0.3449780118819986],[114,167,71,0.3463073899347303],[114,167,72,0.34756794257259155],[114,167,73,0.3487495190209012],[114,167,74,0.34983881194817557],[114,167,75,0.35081995086431444],[114,167,76,0.35167512059917866],[114,167,77,0.3517299673962431],[114,167,78,0.34995830491520424],[114,167,79,0.3480791612631889],[114,168,64,0.3350078703116793],[114,168,65,0.336655933980656],[114,168,66,0.3381595238842738],[114,168,67,0.3395576410926501],[114,168,68,0.3408749414945209],[114,168,69,0.3421168522751681],[114,168,70,0.3432842136374808],[114,168,71,0.34437401581419674],[114,168,72,0.3453797969624152],[114,168,73,0.34629207112213234],[114,168,74,0.3470987860592027],[114,168,75,0.3477858107774291],[114,168,76,0.3483374524533546],[114,168,77,0.3487370025213879],[114,168,78,0.34775401415234825],[114,168,79,0.3458809513001512],[114,169,64,0.33405054083827646],[114,169,65,0.3355197255485315],[114,169,66,0.33683227553478806],[114,169,67,0.33802977774721776],[114,169,68,0.33913620508093073],[114,169,69,0.34015445905669806],[114,169,70,0.34108387444414595],[114,169,71,0.34192088699236894],[114,169,72,0.34265930092422936],[114,169,73,0.3432905911017319],[114,169,74,0.3438042400008767],[114,169,75,0.34418810958839346],[114,169,76,0.3444288481504455],[114,169,77,0.3445123320855406],[114,169,78,0.34442414264102567],[114,169,79,0.343628201547054],[114,170,64,0.3326588409821355],[114,170,65,0.33393640690570925],[114,170,66,0.33504515078854225],[114,170,67,0.33602888282585],[114,170,68,0.33691087464993946],[114,170,69,0.33769181538696036],[114,170,70,0.33836987711116934],[114,170,71,0.3389412918059286],[114,170,72,0.3394004750951239],[114,170,73,0.3397401904800278],[114,170,74,0.339951754576536],[114,170,75,0.3400252837892207],[114,170,76,0.33994998280299465],[114,170,77,0.33971447522113596],[114,170,78,0.339307176630699],[114,170,79,0.3387167103336384],[114,171,64,0.33082902732112673],[114,171,65,0.33190232293926253],[114,171,66,0.33279472193644827],[114,171,67,0.3335518416025445],[114,171,68,0.3341962561448646],[114,171,69,0.3347268295120855],[114,171,70,0.33514097512246355],[114,171,71,0.3354351193924165],[114,171,72,0.33560466872370703],[114,171,73,0.33564402416000294],[114,171,74,0.335546644602802],[114,171,75,0.3353051594034906],[114,171,76,0.3349115310769831],[114,171,77,0.3343572688138385],[114,171,78,0.3336336934027718],[114,171,79,0.3327322541149392],[114,172,64,0.3285573916193609],[114,172,65,0.32941443085012123],[114,172,66,0.3300787626239944],[114,172,67,0.33059735138886437],[114,172,68,0.3309921024269666],[114,172,69,0.33126050971970694],[114,172,70,0.33139968535835257],[114,172,71,0.33140668650359206],[114,172,72,0.33127831354452825],[114,172,73,0.3310109644869657],[114,172,74,0.3306005468931338],[114,172,75,0.3300424486047102],[114,172,76,0.3293315683916627],[114,172,77,0.3284624075819833],[114,172,78,0.3274292236427843],[114,172,79,0.32622624660247734],[114,173,64,0.32583839093634515],[114,173,65,0.32646838434935843],[114,173,66,0.32689428277044735],[114,173,67,0.3271639069608577],[114,173,68,0.3272985487014638],[114,173,69,0.3272948469918959],[114,173,70,0.32715011371021857],[114,173,71,0.32686250103365444],[114,173,72,0.32643061998266604],[114,173,73,0.3258532251874606],[114,173,74,0.32512896766571564],[114,173,75,0.32425621729068044],[114,173,76,0.3232329565190849],[114,173,77,0.3220567468396016],[114,173,78,0.32072476929602767],[114,173,79,0.31923394033608843],[114,174,64,0.322662707718422],[114,174,65,0.3230565467209791],[114,174,66,0.3232354919532115],[114,174,67,0.32324771428992716],[114,174,68,0.3231139764338282],[114,174,69,0.32283062718394656],[114,174,70,0.32239571251725757],[114,174,71,0.32180896124200353],[114,174,72,0.32107121472657857],[114,174,73,0.32018393429206254],[114,174,74,0.31914878855499007],[114,174,75,0.3179673228756544],[114,174,76,0.31664071293486035],[114,174,77,0.3151696043298154],[114,174,78,0.3135540399490404],[114,174,79,0.3117934767581718],[114,175,64,0.31902529539083835],[114,175,65,0.3191757780369716],[114,175,66,0.3191012665768996],[114,175,67,0.31884976590386527],[114,175,68,0.31844161450625086],[114,175,69,0.3178734657800844],[114,175,70,0.3171446497576377],[114,175,71,0.31625695618247446],[114,175,72,0.31521386811253205],[114,175,73,0.31401988602006803],[114,175,74,0.3126799451990337],[114,175,75,0.31119892913539043],[114,175,76,0.30958128133871576],[114,175,77,0.3078307179755808],[114,175,78,0.3059500434880589],[114,175,79,0.30394107122595143],[114,176,64,0.31495739725393],[114,176,65,0.3148588285353454],[114,176,66,0.31452576448687464],[114,176,67,0.31400549137985895],[114,176,68,0.313318010269242],[114,176,69,0.3124608582283302],[114,176,70,0.31143517753195604],[114,176,71,0.3102452780023446],[114,176,72,0.3088976697497388],[114,176,73,0.3074002003488291],[114,176,74,0.3057612998020934],[114,176,75,0.3039893364607651],[114,176,76,0.3020920868906026],[114,176,77,0.3000763224845665],[114,176,78,0.29794751543953224],[114,176,79,0.2957096665311374],[114,177,64,0.3105014084063453],[114,177,65,0.3101498659295788],[114,177,66,0.3095548374985464],[114,177,67,0.30876231764465695],[114,177,68,0.3077920344928771],[114,177,69,0.30664295242739065],[114,177,70,0.3053185129448237],[114,177,71,0.3038259616030346],[114,177,72,0.3021751781564587],[114,177,73,0.3003776258319882],[114,177,74,0.29844542364268334],[114,177,75,0.296390545429889],[114,177,76,0.29422414911346834],[114,177,77,0.291956039416624],[114,177,78,0.2895942671180482],[114,177,79,0.28714486767197184],[114,178,64,0.3057009387195356],[114,178,65,0.3050946747520296],[114,178,66,0.30423641644380905],[114,178,67,0.30317030050962357],[114,178,68,0.3019158298207548],[114,178,69,0.30047389261094015],[114,178,70,0.29885066251138803],[114,178,71,0.2970566794627365],[114,178,72,0.2951054786891186],[114,178,73,0.29301235394906605],[114,178,74,0.29079325950149737],[114,178,75,0.28846385499162197],[114,178,76,0.28603869722302333],[114,178,77,0.28353058254046004],[114,178,78,0.28095004330512385],[114,178,79,0.27830500170252337],[114,179,64,0.30060014698049947],[114,179,65,0.29973989898790443],[114,179,66,0.29861964523316625],[114,179,67,0.2972811308525991],[114,179,68,0.2957436683933783],[114,179,69,0.29401050754709873],[114,179,70,0.2920909208334663],[114,179,71,0.28999903227297497],[114,179,72,0.2877522498943307],[114,179,73,0.28536984776075536],[114,179,74,0.28287170247861776],[114,179,75,0.28027718889190056],[114,179,76,0.2776042393999702],[114,179,77,0.27486857106616064],[114,179,78,0.2720830844131021],[114,179,79,0.2692574375300831],[114,180,64,0.2952430698000301],[114,180,65,0.2941322805196303],[114,180,66,0.2927540138032634],[114,180,67,0.2911471444562996],[114,180,68,0.2893308197964769],[114,180,69,0.28731101817640325],[114,180,70,0.28510040067461945],[114,180,71,0.282716886036247],[114,180,72,0.2801818946045324],[114,180,73,0.2775187568048004],[114,180,74,0.27475129164376894],[114,180,75,0.27190256040143607],[114,180,76,0.26899380040001375],[114,180,77,0.2660435434370099],[114,180,78,0.2630669231700624],[114,180,79,0.2600751754422885],[114,181,64,0.2896729448829796],[114,181,65,0.2883178929505747],[114,181,66,0.28668848949983444],[114,181,67,0.2848203350397267],[114,181,68,0.2827324288634923],[114,181,69,0.28043376421999117],[114,181,70,0.27794059398078724],[114,181,71,0.2752747552004812],[114,181,72,0.2724617353974215],[114,181,73,0.269528917912767],[114,181,74,0.26650401227554993],[114,181,75,0.2634136751910631],[114,181,76,0.2602823274517559],[114,181,77,0.2571311717463727],[114,181,78,0.25397741601704],[114,181,79,0.25083370668839416],[114,182,64,0.28393152823608053],[114,182,65,0.28234137035361073],[114,182,66,0.28047064642107866],[114,182,67,0.27835136999295806],[114,182,68,0.2760024028346486],[114,182,69,0.2734359492628955],[114,182,70,0.27067196336708194],[114,182,71,0.26773623138172725],[114,182,72,0.2646582740175508],[114,182,73,0.2614694416094521],[114,182,74,0.25820120843082855],[114,182,75,0.25488367219045743],[114,182,76,0.25154426438637306],[114,182,77,0.24820667684346925],[114,182,78,0.24489000941086492],[114,182,79,0.24160814344458292],[114,183,64,0.27805840486889866],[114,183,65,0.2762451304677804],[114,183,66,0.2741457922229905],[114,183,67,0.2717886083014827],[114,183,68,0.26919230735064686],[114,183,69,0.2663724037936173],[114,183,70,0.26335256356926856],[114,183,71,0.2601624572071129],[114,183,72,0.2568355143427978],[114,183,73,0.2534068837456772],[114,183,74,0.24991160557987321],[114,183,75,0.24638300226625526],[114,183,76,0.24285129394950083],[114,183,77,0.23934244420469125],[114,183,78,0.23587724124484774],[114,183,79,0.23247061951777281],[114,184,64,0.27209029252554007],[114,184,65,0.2700685918462722],[114,184,66,0.26775609186720434],[114,184,67,0.26517712012500205],[114,184,68,0.2623502707381307],[114,184,69,0.2592943656615776],[114,184,70,0.2560366923413586],[114,184,71,0.25261064479672724],[114,184,72,0.24905334846995936],[114,184,73,0.2454035020127384],[114,184,74,0.24169944304724017],[114,184,75,0.23797744456768474],[114,184,76,0.23427024826592385],[114,184,77,0.23060584067553402],[114,184,78,0.2270064776361392],[114,184,79,0.22348796218678993],[114,185,64,0.2660603379682647],[114,185,65,0.2638473844406065],[114,185,66,0.2613396877729776],[114,185,67,0.2585577074768033],[114,185,68,0.2555198960261533],[114,185,69,0.2522482773981153],[114,185,70,0.24877357026813354],[114,185,71,0.24513263839516655],[114,185,72,0.24136600549187964],[114,185,73,0.2375155969923013],[114,185,74,0.23362271601239604],[114,185,75,0.2297262604110662],[114,185,76,0.2258611874607943],[114,185,77,0.22205723223155255],[114,185,78,0.21833788538212434],[114,185,79,0.21471963564322874],[114,186,64,0.25999740531897175],[114,186,65,0.25761255308909614],[114,186,66,0.25492981581784124],[114,186,67,0.25196592543328483],[114,186,68,0.24873918011776353],[114,186,69,0.2452745998342591],[114,186,70,0.24160604895308402],[114,186,71,0.237773520660842],[114,186,72,0.23382056254309866],[114,186,73,0.2297919374087503],[114,186,74,0.22573152684716544],[114,186,75,0.22168048460856915],[114,186,76,0.217675646486783],[114,186,77,0.21374820296448596],[114,186,78,0.20992264045812525],[114,186,79,0.2062159565761943],[114,187,64,0.2539253559524923],[114,187,65,0.2513897533642559],[114,187,66,0.24855391661811327],[114,187,67,0.2454311032908642],[114,187,68,0.24203943953045992],[114,187,69,0.23840664144145057],[114,187,70,0.2345693470401378],[114,187,71,0.23057026212566464],[114,187,72,0.22645551770385852],[114,187,73,0.22227226927377355],[114,187,74,0.21806654560119562],[114,187,75,0.2138813541931825],[114,187,76,0.2097550502664621],[114,187,77,0.20571997557347255],[114,187,78,0.20180137301653123],[114,187,79,0.1980165825468862],[114,188,64,0.24786231942432377],[114,188,65,0.24519843922139964],[114,188,66,0.24223274150845167],[114,188,67,0.23897536507692083],[114,188,68,0.23544424211116838],[114,188,69,0.23166940281728254],[114,188,70,0.22768981352913933],[114,188,71,0.2235504133468672],[114,188,72,0.21929942437084243],[114,188,73,0.21498590864262876],[114,188,74,0.21065757948895383],[114,188,75,0.2063588745481316],[114,188,76,0.20212929733043528],[114,188,77,0.19800203372806305],[114,188,78,0.19400284945013213],[114,188,79,0.19014927391744293],[114,189,64,0.24181995490764555],[114,189,65,0.23905104188205725],[114,189,66,0.23597945263179165],[114,189,67,0.2326126488154587],[114,189,68,0.22896834412848358],[114,189,69,0.2250784357400271],[114,189,70,0.22098371785323742],[114,189,71,0.21673083928937237],[114,189,72,0.2123695867300944],[114,189,73,0.20795041774089965],[114,189,74,0.2035222512850996],[114,189,75,0.19913052301767473],[114,189,76,0.1948155122168888],[114,189,77,0.19061094677210144],[114,189,78,0.18654289220235218],[114,189,79,0.18262893023592472],[114,190,64,0.2358027026087866],[114,190,65,0.23295213937961848],[114,190,66,0.22979871654591794],[114,190,67,0.22634772394539993],[114,190,68,0.22261663214569785],[114,190,69,0.2186387162217557],[114,190,70,0.21445606619957053],[114,190,71,0.21011649549964342],[114,190,72,0.20567081600148712],[114,190,73,0.2011703642678335],[114,190,74,0.1966647865975094],[114,190,75,0.19220009015530556],[114,190,76,0.1878169669951892],[114,190,77,0.18354939735319156],[114,190,78,0.1794235381418702],[114,190,79,0.1754569021332876],[114,191,64,0.22980702462689254],[114,191,65,0.2268976161909791],[114,191,66,0.22368579075080636],[114,191,67,0.22017520629004977],[114,191,68,0.21638306908285584],[114,191,69,0.2123435310004334],[114,191,70,0.208099443573133],[114,191,71,0.20369924566055406],[114,191,72,0.19919424716498715],[114,191,73,0.19463616373761614],[114,191,74,0.19007491005875293],[114,191,75,0.18555665885479303],[114,191,76,0.18112217238471068],[114,191,77,0.17680541269106878],[114,191,78,0.17263243646827098],[114,191,79,0.16862057995801322],[114,192,64,0.2238206347238868],[114,192,65,0.22087381237840745],[114,192,66,0.2176256025431901],[114,192,67,0.2140785699817991],[114,192,68,0.21024964388620299],[114,192,69,0.20617337692794085],[114,192,70,0.20189288112886156],[114,192,71,0.19745672015281598],[114,192,72,0.19291621592811004],[114,192,73,0.18832300478437142],[114,192,74,0.18372685055851662],[114,192,75,0.17917372171012405],[114,192,76,0.17470413906101281],[114,192,77,0.17035180034042147],[114,192,78,0.1661424872794405],[114,192,79,0.1620932605601037],[114,193,64,0.21782171647394918],[114,193,65,0.21485666166944498],[114,193,66,0.2115918196106734],[114,193,67,0.20802915575561937],[114,193,68,0.2041853242379722],[114,193,69,0.20009487273256288],[114,193,70,0.19580074832776986],[114,193,71,0.1913512152908356],[114,193,72,0.1867971957501523],[114,193,73,0.18218985742898353],[114,193,74,0.1775784557299152],[114,193,75,0.17300843706075808],[114,193,76,0.1685198098731268],[114,193,77,0.16414578945765373],[114,193,78,0.15991172210828655],[114,193,79,0.15583429383612504],[114,194,64,0.21177812926768],[114,194,65,0.20881081790940256],[114,194,66,0.2055459117871089],[114,194,67,0.20198517503836194],[114,194,68,0.19814501175849797],[114,194,69,0.1940596826610609],[114,194,70,0.18977166950931185],[114,194,71,0.18532863294937363],[114,194,72,0.18078079480184267],[114,194,73,0.17617856438569798],[114,194,74,0.17157041600137793],[114,194,75,0.1670010242980156],[114,194,76,0.16250966383724505],[114,194,77,0.15812887874581205],[114,194,78,0.15388342792492993],[114,194,79,0.14978951085957076],[114,195,64,0.20532816404834106],[114,195,65,0.2026893273581942],[114,195,66,0.19943683462799847],[114,195,67,0.19589141213999903],[114,195,68,0.19206927224467202],[114,195,69,0.18800429068478697],[114,195,70,0.18373836285149592],[114,195,71,0.17931840832977303],[114,195,72,0.17479379841307313],[114,195,73,0.17021402460331336],[114,195,74,0.1656266150466839],[114,195,75,0.16107530546059254],[114,195,76,0.1565984707014225],[114,195,77,0.15222782270974558],[114,195,78,0.14798738015264118],[114,195,79,0.1438927146653925],[114,196,64,0.19558015190283373],[114,196,65,0.19646127307058994],[114,196,66,0.1932322959782222],[114,196,67,0.1897140436876113],[114,196,68,0.18592264447555873],[114,196,69,0.1818916039153436],[114,196,70,0.17766220874297325],[114,196,71,0.1732805833345112],[114,196,72,0.16879516640524037],[114,196,73,0.16425442569554258],[114,196,74,0.1597048174141829],[114,196,75,0.15518899682103676],[114,196,76,0.15074428593252212],[114,196,77,0.14640140392704712],[114,196,78,0.14218346541805743],[114,196,79,0.13810525135227472],[114,197,64,0.18577843626975746],[114,197,65,0.18740237203903173],[114,197,66,0.18693634668138515],[114,197,67,0.1834599324138025],[114,197,68,0.17971459058865497],[114,197,69,0.1757334251860469],[114,197,70,0.17155702683266458],[114,197,71,0.16723059519961028],[114,197,72,0.16280147503809164],[114,197,73,0.15831692662609811],[114,197,74,0.1538221371966363],[114,197,75,0.14935847953688766],[114,197,76,0.14496202355664106],[114,197,77,0.14066230622648315],[114,197,78,0.1364813648847804],[114,197,79,0.1324330385109546],[114,198,64,0.17595242224002652],[114,198,65,0.1775865121044969],[114,198,66,0.17909184927270821],[114,198,67,0.1771316540276749],[114,198,68,0.1734497752575679],[114,198,69,0.16953624392203595],[114,198,70,0.1654308127682944],[114,198,71,0.1611775647469145],[114,198,72,0.15682252388723794],[114,198,73,0.15241149587297007],[114,198,74,0.14798814465402826],[114,198,75,0.14359231105870185],[114,198,76,0.1392585789887889],[114,198,77,0.1350150943924548],[114,198,78,0.13088264181835693],[114,198,79,0.12687398296345886],[114,199,64,0.16613469892880256],[114,199,65,0.1677718518889289],[114,199,66,0.1692741591000521],[114,199,67,0.17063838322558744],[114,199,68,0.16712580166862537],[114,199,69,0.16329868267209843],[114,199,70,0.15928293506865723],[114,199,71,0.15512129478125425],[114,199,72,0.1508581974356019],[114,199,73,0.14653770706589717],[114,199,74,0.1422016742972613],[114,199,75,0.13788812970157385],[114,199,76,0.13362991765412563],[114,199,77,0.12945357564314663],[114,199,78,0.1253784636059368],[114,199,79,0.12141614748729347],[114,200,64,0.15635918657795142],[114,200,65,0.1579905927450306],[114,200,66,0.15948185527629818],[114,200,67,0.16082770108683395],[114,200,68,0.16073532901165513],[114,200,69,0.15701372502547672],[114,200,70,0.15310647629618818],[114,200,71,0.1490547233968716],[114,200,72,0.1449010254708547],[114,200,73,0.14068739765930793],[114,200,74,0.13645356950315932],[114,200,75,0.13223546970042865],[114,200,76,0.12806394224596887],[114,200,77,0.12396369862087667],[114,200,78,0.11995251033651863],[114,200,79,0.11604064577633481],[114,201,64,0.14665943118047417],[114,201,65,0.1482752353121972],[114,201,66,0.14974658575741462],[114,201,67,0.15106565487539245],[114,201,68,0.15221596987169633],[114,201,69,0.15067081952215858],[114,201,70,0.14689046156591629],[114,201,71,0.14296627828578093],[114,201,72,0.13893866043581388],[114,201,73,0.1348472626788025],[114,201,74,0.13072938230808084],[114,201,75,0.12661855328895844],[114,201,76,0.12254336029814814],[114,201,77,0.11852647709892625],[114,201,78,0.11458393324690783],[114,201,79,0.11072461277927205],[114,202,64,0.1462138861081976],[114,202,65,0.1447018249316666],[114,202,66,0.14319845194536066],[114,202,67,0.141685188402764],[114,202,68,0.1424901635475639],[114,202,69,0.14339418542071825],[114,202,70,0.1406219746155589],[114,202,71,0.13684213248188717],[114,202,72,0.1329562723858761],[114,202,73,0.12900138442233441],[114,202,74,0.12501202949062637],[114,202,75,0.12101906113958152],[114,202,76,0.11704855362904226],[114,202,77,0.11312094017096283],[114,202,78,0.10925036499324373],[114,202,79,0.10544425255081828],[114,203,64,0.14599034693573348],[114,203,65,0.1442200133099246],[114,203,66,0.14245679754896146],[114,203,67,0.14067877154887362],[114,203,68,0.13885907427864266],[114,203,69,0.1369646129497964],[114,203,70,0.13492930435111003],[114,203,71,0.1306683619024858],[114,203,72,0.12693886215316214],[114,203,73,0.12313369896197357],[114,203,74,0.11928440603876156],[114,203,75,0.11541888250744904],[114,203,76,0.11156045124138507],[114,203,77,0.10772711073691721],[114,203,78,0.10393098377621987],[114,203,79,0.10017796583882829],[114,204,64,0.14585188615345038],[114,204,65,0.14380659264260628],[114,204,66,0.14176804284793743],[114,204,67,0.13971058153118787],[114,204,68,0.13760553221692515],[114,204,69,0.13542072926660806],[114,204,70,0.13312201558978196],[114,204,71,0.1301569633391498],[114,204,72,0.12400002288953639],[114,204,73,0.11787031708551007],[114,204,74,0.11353195706852914],[114,204,75,0.10980284641390593],[114,204,76,0.1060634072752589],[114,204,77,0.10232901413351658],[114,204,78,0.09860963340311671],[114,204,79,0.09490955970539519],[114,205,64,0.14581199545037868],[114,205,65,0.143476505016644],[114,205,66,0.14114842375805914],[114,205,67,0.13879805530598413],[114,205,68,0.13639466282034204],[114,205,69,0.13390699452407256],[114,205,70,0.13130287518025846],[114,205,71,0.12855048690213008],[114,205,72,0.12510545795382433],[114,205,73,0.11892461062212625],[114,205,74,0.11278280341994369],[114,205,75,0.10669573188038961],[114,205,76,0.10067515458093942],[114,205,77,0.096917718777844],[114,205,78,0.09327800141053187],[114,205,79,0.08963154154079239],[114,206,64,0.14587818621670537],[114,206,65,0.1432389799743333],[114,206,66,0.14060861132654562],[114,206,67,0.13795309423202015],[114,206,68,0.13523940533731582],[114,206,69,0.13243716349564422],[114,206,70,0.1295162422892728],[114,206,71,0.12644771622289494],[114,206,72,0.12320477707768968],[114,206,73,0.11976353018306513],[114,206,74,0.11360779317476113],[114,206,75,0.10745074427772927],[114,206,76,0.10134186878288479],[114,206,77,0.09528561955194768],[114,206,78,0.08928224429622944],[114,206,79,0.08434849987582141],[114,207,64,0.14605233401597637],[114,207,65,0.14309731308573045],[114,207,66,0.14015304422236785],[114,207,67,0.13718108095073386],[114,207,68,0.1341459167951384],[114,207,69,0.13101797288013348],[114,207,70,0.12776921200000974],[114,207,71,0.12437372494089619],[114,207,72,0.12080835721820124],[114,207,73,0.11705323891350415],[114,207,74,0.11309221566643027],[114,207,75,0.10805490595644125],[114,207,76,0.101863979621515],[114,207,77,0.09570326070312929],[114,207,78,0.08957050027485325],[114,207,79,0.0834598778942046],[114,208,64,0.1463346271953554],[114,208,65,0.14305157594953258],[114,208,66,0.1397818328339271],[114,208,67,0.13648245549446747],[114,208,68,0.13311532345127527],[114,208,69,0.1296515790874237],[114,208,70,0.12606527905609702],[114,208,71,0.12233360079652625],[114,208,72,0.11843716076495471],[114,208,73,0.11436026065833019],[114,208,74,0.1100910603945555],[114,208,75,0.10562167672543288],[114,208,76,0.10094820646992238],[114,208,77,0.09598259389992352],[114,208,78,0.08972343641542943],[114,208,79,0.08345857285143617],[114,209,64,0.1467220062851623],[114,209,65,0.14309886007881276],[114,209,66,0.13949245548330738],[114,209,67,0.13585546301067958],[114,209,68,0.1321470901259479],[114,209,69,0.12833910872866228],[114,209,70,0.12440763390851427],[114,209,71,0.12033293710191159],[114,209,72,0.1160994418235988],[114,209,73,0.11169567376249648],[114,209,74,0.10711416473326127],[114,209,75,0.10235131004557346],[114,209,76,0.09740717892147713],[114,209,77,0.09228527765705294],[114,209,78,0.08699226528911919],[114,209,79,0.08153762158816857],[114,210,64,0.1472071935333306],[114,210,65,0.14323274433091354],[114,210,66,0.1392795359764947],[114,210,67,0.135296095274159],[114,210,68,0.13123896951031588],[114,210,69,0.12708045763869139],[114,210,70,0.12279865734543764],[114,210,71,0.11837687803282372],[114,210,72,0.11380330532635305],[114,210,73,0.10907064750282303],[114,210,74,0.10417576406669013],[114,210,75,0.09911927672916797],[114,210,76,0.09390516306796359],[114,210,77,0.08854033316567896],[114,210,78,0.08303418954283855],[114,210,79,0.07739817071526098],[114,211,64,0.14777870066060317],[114,211,65,0.14344319568061858],[114,211,66,0.13913463877036017],[114,211,67,0.13479777927513134],[114,211,68,0.1303865824607477],[114,211,69,0.12587376233791361],[114,211,70,0.121239284214678],[114,211,71,0.11646937761530858],[114,211,72,0.11155586634540537],[114,211,73,0.10649550887907076],[114,211,74,0.10128935002800277],[114,211,75,0.09594208483484898],[114,211,76,0.0904614356107343],[114,211,77,0.08485754301008193],[114,211,78,0.0791423720063083],[114,211,79,0.07332913359802237],[114,212,64,0.14842100668291708],[114,212,65,0.14371664103429652],[114,212,66,0.13904623642413907],[114,212,67,0.13435123988075515],[114,212,68,0.12958317467387273],[114,212,69,0.12471505047256419],[114,212,70,0.11972854881162426],[114,212,71,0.11461264298359733],[114,212,72,0.10936259605877478],[114,212,73,0.10397899809614886],[114,212,74,0.09846684422271616],[114,212,75,0.09283465519585879],[114,212,76,0.08709364199471507],[114,212,77,0.0812569159123193],[114,212,78,0.07533874554293152],[114,212,79,0.06935386197700887],[114,213,64,0.14911490831033566],[114,213,65,0.1440362124955982],[114,213,66,0.13899985165287218],[114,213,67,0.13394453880242102],[114,213,68,0.12881955189665156],[114,213,69,0.12359807231353068],[114,213,70,0.11826331394085828],[114,213,71,0.11280676384635906],[114,213,72,0.10722685623479422],[114,213,73,0.10152771453265978],[114,213,74,0.09571796396908913],[114,213,75,0.08980961691385915],[114,213,76,0.08381703311832737],[114,213,77,0.07775595688391083],[114,213,78,0.07164263305782691],[114,213,79,0.0654930036262524],[114,214,64,0.14983804558052335],[114,214,65,0.14438216864375722],[114,214,66,0.13897837645260466],[114,214,67,0.1335632922558028],[114,214,68,0.12808419598280832],[114,214,69,0.12251431555368388],[114,214,70,0.11683818582206568],[114,214,71,0.11104953026318107],[114,214,72,0.10514962426811941],[114,214,73,0.09914575515911975],[114,214,74,0.0930497819487157],[114,214,75,0.08687679771349759],[114,214,76,0.08064389729272167],[114,214,77,0.07436905285459061],[114,214,78,0.06807009970160663],[114,214,79,0.06176383451030934],[114,215,64,0.15056560552400394],[114,215,65,0.14473249452748194],[114,215,66,0.1389625709117755],[114,215,67,0.1331910698482907],[114,215,68,0.1273635642580602],[114,215,69,0.12145320579831462],[114,215,70,0.11544561716894959],[114,215,71,0.1093364409944295],[114,215,72,0.10312941096419162],[114,215,73,0.09683454753537386],[114,215,74,0.09046648182814042],[114,215,75,0.08404291114871074],[114,215,76,0.07758318937068587],[114,215,77,0.07110705519318088],[114,215,78,0.06463350107799767],[114,215,79,0.05817978544719314],[114,216,64,0.15127120678671535],[114,216,65,0.1450636832091152],[114,216,66,0.13893174445831039],[114,216,67,0.1328099773672498],[114,216,68,0.12664257479946558],[114,216,69,0.12040249529036312],[114,216,70,0.11407620092108768],[114,216,71,0.10766090484273841],[114,216,72,0.10116237342758519],[114,216,73,0.0945928796780498],[114,216,74,0.08796931207573169],[114,216,75,0.08131144281644233],[114,216,76,0.07464035913070849],[114,216,77,0.06797706113465231],[114,216,78,0.06134122939728163],[114,216,79,0.05475016514694476],[114,217,64,0.15192796825004476],[114,217,65,0.14535170181271354],[114,217,66,0.13886462241519432],[114,217,67,0.13240142627038154],[114,217,68,0.1259052803669629],[114,217,69,0.1193488425499258],[114,217,70,0.11271915725143306],[114,217,71,0.10601463755182665],[114,217,72,0.09924262556137507],[114,217,73,0.09241712924422209],[114,217,74,0.08555674035627468],[114,217,75,0.07868273789373098],[114,217,76,0.07181738116306123],[114,217,77,0.06498239628896338],[114,217,78,0.058197659678192765],[114,217,79,0.0514800816544305],[114,218,64,0.15250976478761974],[114,218,65,0.14557314513392905],[114,218,66,0.13874040084658698],[114,218,67,0.13194709279409816],[114,218,68,0.1251357338454564],[114,218,69,0.11827858573359004],[114,218,70,0.11136301660392998],[114,218,71,0.10438825696555165],[114,218,72,0.09736274882683038],[114,218,73,0.09030169462400947],[114,218,74,0.08322481103588672],[114,218,75,0.0761542924669848],[114,218,76,0.06911298865939176],[114,218,77,0.06212280056264181],[114,218,78,0.055203298255985175],[114,218,79,0.04837056437864959],[114,219,64,0.15299267337925487],[114,219,65,0.14570657995666061],[114,219,66,0.13853999276952647],[114,219,67,0.1314300696949224],[114,219,68,0.12431904816132723],[114,219,69,0.11717871263118843],[114,219,70,0.10999650163420796],[114,219,71,0.10277207927477558],[114,219,72,0.09551450604315585],[114,219,73,0.0882396306703303],[114,219,74,0.0809677084697022],[114,219,75,0.07372125126553922],[114,219,76,0.06652311365303547],[114,219,77,0.05939481997115081],[114,219,78,0.0523551360017164],[114,219,79,0.045418889037335035],[114,220,64,0.15335661286282082],[114,220,65,0.14573408328870852],[114,220,66,0.1382474688802943],[114,220,67,0.13083621371991558],[114,220,68,0.12344265372545314],[114,220,69,0.11603803031310485],[114,220,70,0.10860961102910292],[114,220,71,0.10115711928939373],[114,220,72,0.09368976112329731],[114,220,73,0.08622349191625518],[114,220,74,0.07877852887211205],[114,220,75,0.07137711454314198],[114,220,76,0.06404153639197879],[114,220,77,0.05679240695689365],[114,220,78,0.04964720879552214],[114,220,79,0.04261910798310346],[114,221,64,0.15358718064191984],[114,221,65,0.14564297777354707],[114,221,66,0.1378516959970159],[114,221,67,0.130155691962398],[114,221,68,0.12249775652305865],[114,221,69,0.11484853751755457],[114,221,70,0.10719490826503165],[114,221,71,0.09953629776487481],[114,221,72,0.0918816077411131],[114,221,73,0.08424638623634209],[114,221,74,0.0766502636811631],[114,221,75,0.06911465696776682],[114,221,76,0.061660746647064876],[114,221,77,0.05430773195110212],[114,221,78,0.04707136792161976],[114,221,79,0.039962788502702656],[114,222,64,0.15367768967848344],[114,222,65,0.14542776755520814],[114,222,66,0.13734817644841568],[114,222,67,0.12938473029610612],[114,222,68,0.12148100001632159],[114,222,69,0.11360700292165807],[114,222,70,0.10574901842834783],[114,222,71,0.09790585888422232],[114,222,72,0.09008571000480196],[114,222,73,0.08230324199533222],[114,222,74,0.07457699742233766],[114,222,75,0.06692706147947242],[114,222,76,0.059373019861956644],[114,222,77,0.05193220902525668],[114,222,78,0.044618263162378366],[114,222,79,0.03743996179146195],[114,223,64,0.15363140908134446],[114,223,65,0.1450922778648263],[114,223,66,0.13674109163956907],[114,223,67,0.12852756709126978],[114,223,68,0.12039633404551262],[114,223,69,0.1123167524695426],[114,223,70,0.10427433625970661],[114,223,71,0.09626700104440782],[114,223,72,0.08830185826842848],[114,223,73,0.08039229179276287],[114,223,74,0.07255532314955987],[114,223,75,0.06480927115513296],[114,223,76,0.057171711135917215],[114,223,77,0.04965773856644001],[114,223,78,0.04227854146052774],[114,223,79,0.035040285398434],[114,224,64,0.15346401155173994],[114,224,65,0.1446520015578181],[114,224,66,0.13604555299618312],[114,224,67,0.12759861539694714],[114,224,68,0.11925709390555686],[114,224,69,0.1109896689320838],[114,224,70,0.10278094859602216],[114,224,71,0.09462772411782393],[114,224,72,0.08653574324444546],[114,224,73,0.07851677595206308],[114,224,74,0.0705859785894707],[114,224,75,0.0627595621743392],[114,224,76,0.05505277009210876],[114,224,77,0.047478169977661154],[114,224,78,0.04004426408889435],[114,224,79,0.032754422010378204],[114,225,64,0.15320623086148577],[114,225,65,0.1441366557568935],[114,225,66,0.13529006342625818],[114,225,67,0.12662483672227373],[114,225,68,0.11808829273417779],[114,225,69,0.10964840684312613],[114,225,70,0.1012887743646913],[114,225,71,0.09300489635105066],[114,225,72,0.08480095158210396],[114,225,73,0.0766868689143952],[114,225,74,0.06867570613567747],[114,225,75,0.060781341009458],[114,225,76,0.05301647971976606],[114,225,77,0.04539098744558192],[114,225,78,0.03791054531288717],[114,225,79,0.03057563749163805],[114,226,64,0.15290673241509528],[114,226,65,0.14359295164407973],[114,226,66,0.1345191923380468],[114,226,67,0.12564832946115395],[114,226,68,0.1169291302714187],[114,226,69,0.10832882589234497],[114,226,70,0.09982992523168431],[114,226,71,0.0914265440215396],[114,226,72,0.08312118604600295],[114,226,73,0.07492183167737555],[114,226,74,0.06683933982932676],[114,226,75,0.05888516896137616],[114,226,76,0.05106942228495247],[114,226,77,0.04339922183104289],[114,226,78,0.03587741554921284],[114,226,79,0.02850162111912091],[114,227,64,0.15263478717889647],[114,227,65,0.1430879849909613],[114,227,66,0.1337976050773746],[114,227,67,0.12473097933591541],[114,227,68,0.11583828617762683],[114,227,69,0.10708595643168894],[114,227,70,0.09845536766833085],[114,227,71,0.0899392202131323],[114,227,72,0.08153833008106164],[114,227,73,0.07325873556338584],[114,227,74,0.06510912352712189],[114,227,75,0.05709858100303778],[114,227,76,0.04923467714488048],[114,227,77,0.04152188014361933],[114,227,78,0.03396031318229868],[114,227,79,0.026544853021203522],[114,228,64,0.15246683574927888],[114,228,65,0.1426991910511312],[114,228,66,0.1332031207960991],[114,228,67,0.12395053739986045],[114,228,68,0.1148930941904079],[114,228,69,0.10599639529895284],[114,228,70,0.09724065969613552],[114,228,71,0.08861715264059694],[114,228,72,0.08012499568677618],[114,228,73,0.07176829573589048],[114,228,74,0.06355359912645593],[114,228,75,0.05548767626870427],[114,228,76,0.047575641826065045],[114,228,77,0.039819414940697045],[114,228,78,0.032216523495213895],[114,228,79,0.024759255900917553],[114,229,64,0.15246071735856317],[114,229,65,0.14248615580298274],[114,229,66,0.13279647858580362],[114,229,67,0.12336847050454475],[114,229,68,0.11415545772909631],[114,229,69,0.10512225017686151],[114,229,70,0.0962479105577131],[114,229,71,0.0875222572169626],[114,229,72,0.07894270238871898],[114,229,73,0.07051141338501843],[114,229,74,0.062232802629231275],[114,229,75,0.05411135194410568],[114,229,76,0.04614977599799684],[114,229,77,0.03834752930156094],[114,229,78,0.030699660637920748],[114,229,79,0.023196018303697493],[114,230,64,0.15265388017349255],[114,230,65,0.14248762565654144],[114,230,66,0.13261728474337536],[114,230,67,0.12302489892593471],[114,230,68,0.1136657683032027],[114,230,69,0.10450401194237738],[114,230,70,0.0955175828729476],[114,230,71,0.08669486373034335],[114,230,72,0.07803154923385039],[114,230,73,0.06952785356836054],[114,230,74,0.06118604845858656],[114,230,75,0.05300833722297804],[114,230,76,0.04499506958504468],[114,230,77,0.03714330150636057],[114,230,78,0.029445703794728044],[114,230,79,0.021889822734443582],[114,231,64,0.15306600154373864],[114,231,65,0.14272412695054143],[114,231,66,0.1326866251961129],[114,231,67,0.12294120864482455],[114,231,68,0.11344552784301619],[114,231,69,0.10416319256211695],[114,231,70,0.09507114704728732],[114,231,71,0.08615638348970042],[114,231,72,0.07741288855874869],[114,231,73,0.06883891456750925],[114,231,74,0.06043458090294787],[114,231,75,0.0521998108510894],[114,231,76,0.04413260843856642],[114,231,77,0.03622767939982399],[114,231,78,0.028475399870351203],[114,231,79,0.020861135902253865],[114,232,64,0.15370146765088366],[114,232,65,0.14320044386521605],[114,232,66,0.13300953710844157],[114,232,67,0.12312252480694792],[114,232,68,0.11349983553102057],[114,232,69,0.10410483263394542],[114,232,70,0.09491361266615793],[114,232,71,0.0859118637301916],[114,232,72,0.07709189884387496],[114,232,73,0.06845001122187956],[114,232,74,0.059984156909383315],[114,232,75,0.05169196970426275],[114,232,76,0.04356911279990761],[114,232,77,0.03560797107372167],[114,232,78,0.027796687443158292],[114,232,79,0.020118546213303386],[114,233,64,0.15455171057463699],[114,233,65,0.143907952412619],[114,233,66,0.13357733704111785],[114,233,67,0.12356004346972808],[114,233,68,0.11381973598483061],[114,233,69,0.1043198751785212],[114,233,70,0.09503593324734581],[114,233,71,0.0859524249414842],[114,233,72,0.07706005264244895],[114,233,73,0.06835316809837147],[114,233,74,0.05982755601084014],[114,233,75,0.05147854417772139],[114,233,76,0.04329944440058449],[114,233,77,0.03528032786741356],[114,233,78,0.02740713822777966],[114,233,79,0.019661145089987266],[114,234,64,0.15559740122746735],[114,234,65,0.14482680900964115],[114,234,66,0.1343698042409116],[114,234,67,0.12423322029800643],[114,234,68,0.11438442755160334],[114,234,69,0.10478740455830171],[114,234,70,0.09541728337055418],[114,234,71,0.08625758030591633],[114,234,72,0.07729747896434902],[114,234,73,0.06852942209493548],[114,234,74,0.059947017224049645],[114,234,75,0.051543260479292176],[114,234,76,0.04330908256021684],[114,234,77,0.035232220322116745],[114,234,78,0.027296416959370445],[114,234,79,0.01948095330138464],[114,235,64,0.15681049640617417],[114,235,65,0.14592799194027417],[114,235,66,0.1353572174440932],[114,235,67,0.12511181467914698],[114,235,68,0.11516332928319163],[114,235,69,0.10547674921115568],[114,235,70,0.09602720701275033],[114,235,71,0.08679743624242928],[114,235,72,0.07777521930435437],[114,235,73,0.06895113388539562],[114,235,74,0.06031660256536956],[114,235,75,0.051862249731702025],[114,235,76,0.04357656945886652],[114,235,77,0.035444907545332895],[114,235,78,0.027448760438716],[114,235,79,0.019565393324484825],[114,236,64,0.15815613801201475],[114,236,65,0.1471751938207861],[114,236,66,0.13650224338779143],[114,236,67,0.12615778754077606],[114,236,68,0.11611800497454759],[114,236,69,0.10634944669795066],[114,236,70,0.09682763572820438],[114,236,71,0.08753477286001782],[114,236,72,0.07845737630923988],[114,236,73,0.06958420741565807],[114,236,74,0.06090448663267955],[114,236,75,0.05240640358891688],[114,236,76,0.04407592456004677],[114,236,77,0.03589590024257669],[114,236,78,0.027845476280550056],[114,236,79,0.01989980856278445],[114,237,64,0.15959438341832805],[114,237,65,0.1485265436795946],[114,237,66,0.13776165531536247],[114,237,67,0.12732703086407993],[114,237,68,0.11720392200002665],[114,237,69,0.10736104858489141],[114,237,70,0.09777475403131865],[114,237,71,0.08842698157170117],[114,237,72,0.07930313228546301],[114,237,73,0.07039019466208947],[114,237,74,0.061675149530490025],[114,237,75,0.05314365376517981],[114,237,76,0.04477900575660461],[114,237,77,0.03656139521044777],[114,237,78,0.02846743942503506],[114,237,79,0.02047000778776674],[114,238,64,0.16107781767166213],[114,238,65,0.14993211632156028],[114,238,66,0.1390837512418708],[114,238,67,0.1285667162039838],[114,238,68,0.11836775558586005],[114,238,69,0.10845840523215464],[114,238,70,0.0988162878996309],[114,238,71,0.08942337833259172],[114,238,72,0.08026410552726446],[114,238,73,0.07132371036992587],[114,238,74,0.06258686205006032],[114,238,75,0.05403653625509298],[114,238,76,0.045653157756429905],[114,238,77,0.03741400960119041],[114,238,78,0.029292910736098902],[114,238,79,0.02126016351003923],[114,239,64,0.16254989326307626],[114,239,65,0.15133303567334142],[114,239,66,0.14040805448823038],[114,239,67,0.12981541281337708],[114,239,68,0.11954773583908032],[114,239,69,0.10958004780007165],[114,239,70,0.09989172918854018],[114,239,71,0.09046508537266013],[114,239,72,0.08128371728800673],[114,239,73,0.07233113011459781],[114,239,74,0.06358958288392227],[114,239,75,0.05503918159311113],[114,239,76,0.046657218035156094],[114,239,77,0.03841775618822251],[114,239,78,0.030291467649328486],[114,239,79,0.022245717248343233],[114,240,64,0.1639617230672517],[114,240,65,0.15268112511282741],[114,240,66,0.14168719779078576],[114,240,67,0.13102651151889957],[114,240,68,0.12069787330231906],[114,240,69,0.11068045766839939],[114,240,70,0.10095589630623789],[114,240,71,0.09150715856057448],[114,240,72,0.08231720988918531],[114,240,73,0.07336789006841264],[114,240,74,0.06463901361460082],[114,240,75,0.056107694551099416],[114,240,76,0.04774789731248224],[114,240,77,0.03953021524291867],[114,240,78,0.03142187781977542],[114,240,79,0.02338698741661385],[114,241,64,0.16527557753426064],[114,241,65,0.1539397658168024],[114,241,66,0.14288556201247415],[114,241,67,0.1321651187981016],[114,241,68,0.12178361524021158],[114,241,69,0.11172500125312716],[114,241,70,0.10197365488742105],[114,241,71,0.09251357575921373],[114,241,72,0.08332734451616272],[114,241,73,0.07439528332953822],[114,241,74,0.06569481939301491],[114,241,75,0.05720005310079173],[114,241,76,0.048881532270900356],[114,241,77,0.04070623347706078],[114,241,78,0.03263775125959554],[114,241,79,0.024636695702508277],[114,242,64,0.16646364575782768],[114,242,65,0.15508181733751084],[114,242,66,0.14397652963149954],[114,242,67,0.13320484258127252],[114,242,68,0.12277837866795102],[114,242,69,0.11268643047913618],[114,242,70,0.10291660317248767],[114,242,71,0.0934543146161369],[114,242,72,0.08428206259760393],[114,242,73,0.07537887421622286],[114,242,74,0.06671993895134255],[114,242,75,0.058276426621052396],[114,242,76,0.05001549117107122],[114,242,77,0.04190046096358496],[114,242,78,0.03389121597637813],[114,242,79,0.025944752073172095],[114,243,64,0.1675071076623464],[114,243,65,0.15608875057781144],[114,243,66,0.14494168814180575],[114,243,67,0.1341270809070919],[114,243,68,0.1236629427788107],[114,243,69,0.11354439908199847],[114,243,70,0.10376273261493074],[114,243,71,0.09430517716936088],[114,243,72,0.08515449246041175],[114,243,73,0.07628870263413347],[114,243,74,0.06768099936476389],[114,243,75,0.059299810306490466],[114,243,76,0.051109033420834865],[114,243,77,0.04306843746331107],[114,243,78,0.03513422868676265],[114,243,79,0.027259783603056142],[114,244,64,0.16839518132518144],[114,244,65,0.15694975235754038],[114,244,66,0.14577000122808656],[114,244,67,0.13492027332038578],[114,244,68,0.1244247977998829],[114,244,69,0.11428492829699283],[114,244,70,0.10449603060243091],[114,244,71,0.09504754948490536],[114,244,72,0.08592288448409693],[114,244,73,0.07709941125650345],[114,244,74,0.06854864902325147],[114,244,75,0.06023657445119107],[114,244,76,0.052124082085514195],[114,244,77,0.04416759124618791],[114,244,78,0.03631979910651224],[114,244,79,0.027113997664372787],[114,245,64,0.16912414493520594],[114,245,65,0.15766080101251775],[114,245,66,0.14645694709322793],[114,245,67,0.13557911430542616],[114,245,68,0.12505744946294928],[114,245,69,0.11489982100334789],[114,245,70,0.10510602423715144],[114,245,71,0.09566809515311986],[114,245,72,0.08657047347360208],[114,245,73,0.07779029414396355],[114,245,74,0.06929780736826703],[114,245,75,0.06105692711373669],[114,245,76,0.0530259078225868],[114,245,77,0.04515814889389101],[114,245,78,0.037351243509179795],[114,245,79,0.025517394210727875],[114,246,64,0.1696963330021212],[114,246,65,0.1582237125758047],[114,246,66,0.14700362341775441],[114,246,67,0.13610372814220045],[114,246,68,0.1255596783619888],[114,246,69,0.11538602346469018],[114,246,70,0.10558726417957827],[114,246,71,0.09615838151292104],[114,246,72,0.08708526699249211],[114,246,73,0.0783452654323148],[114,246,74,0.06990782992713496],[114,246,75,0.06173528862264906],[114,246,76,0.05378372265074316],[114,246,77,0.04600395447102516],[114,246,78,0.03603895068790035],[114,246,79,0.024078306211635706],[114,247,64,0.1701191065590585],[114,247,65,0.1586451572137897],[114,247,66,0.14741581854774197],[114,247,67,0.13649880468279313],[114,247,68,0.12593475356980527],[114,247,69,0.11574493389667272],[114,247,70,0.10593874763658247],[114,247,71,0.09651443753289232],[114,247,72,0.08745975843884397],[114,247,73,0.07875274673485733],[114,247,74,0.0703625871717885],[114,247,75,0.06225057634887357],[114,247,76,0.05437118190295882],[114,247,77,0.04667319636299733],[114,247,78,0.03489269224012283],[114,247,79,0.02281852043334165],[114,248,64,0.1704037972432794],[114,248,65,0.15893564572754162],[114,248,66,0.1477030486399212],[114,248,67,0.1367726956708005],[114,248,68,0.12618960000413212],[114,248,69,0.11598165720043703],[114,248,70,0.10616327966903322],[114,248,71,0.09673624235664201],[114,248,72,0.08769056370521805],[114,248,73,0.07900547194238698],[114,248,74,0.07065045573969825],[114,248,75,0.06258639815524254],[114,248,76,0.05476679266676077],[114,248,77,0.04605542341904528],[114,248,78,0.03392505336112435],[114,248,79,0.02175598543582064],[114,249,64,0.17056462529788605],[114,249,65,0.1591084860841004],[114,249,66,0.14787756064191493],[114,249,67,0.13693647137019005],[114,249,68,0.12633391917008469],[114,249,69,0.1161042053278179],[114,249,70,0.10626677210924972],[114,249,71,0.0968271436190526],[114,249,72,0.08777798034395633],[114,249,73,0.07910020816093687],[114,249,74,0.07076422058549568],[114,249,75,0.0627311529343341],[114,249,76,0.05495422698469129],[114,249,77,0.04534245508527367],[114,249,78,0.03314402983920786],[114,249,79,0.020903783077448307],[114,250,64,0.1706175917122454],[114,250,65,0.15917871011399595],[114,250,66,0.14795330115279626],[114,250,67,0.1370029374324196],[114,250,68,0.12637926306234923],[114,250,69,0.11612264289253371],[114,250,70,0.10625747951554682],[114,250,71,0.09679320476190173],[114,250,72,0.08772546826176914],[114,250,73,0.07903739160684228],[114,250,74,0.07070088668425871],[114,250,75,0.06267803666804736],[114,250,76,0.054922538076306766],[114,250,77,0.04478876952081039],[114,250,78,0.032552331793700144],[114,250,79,0.02026919650474136],[114,251,64,0.17057934490999468],[114,251,65,0.15916197070004667],[114,251,66,0.14794485139432006],[114,251,67,0.13698561211197133],[114,251,68,0.1263380611872014],[114,251,69,0.11604817781138929],[114,251,70,0.10614517175065007],[114,251,71,0.0966424807225058],[114,251,72,0.08753905109394096],[114,251,73,0.07882067738173434],[114,251,74,0.0704613989826704],[114,251,75,0.06242495248558652],[114,251,76,0.054666277850967795],[114,251,77,0.04438757283405723],[114,251,78,0.032146788478206775],[114,251,79,0.019852876862838736],[114,252,64,0.17046602260350813],[114,252,65,0.15907340999096817],[114,252,66,0.1478663287289057],[114,252,67,0.13689766414348664],[114,252,68,0.12622260086422427],[114,252,69,0.11589219695380652],[114,252,70,0.10594024295600211],[114,252,71,0.09638422154087398],[114,252,72,0.08722663756200387],[114,252,73,0.0784564021801708],[114,252,74,0.07005026939593346],[114,252,75,0.06197432326507121],[114,252,76,0.054185514011830076],[114,252,77,0.044126723675393616],[114,252,78,0.03191785629402939],[114,252,79,0.01964811106251928],[114,253,64,0.17029206966179544],[114,253,65,0.15892649940085152],[114,253,66,0.14773025538617895],[114,253,67,0.13675081181799656],[114,253,68,0.12604396119023523],[114,253,69,0.11566524699674119],[114,253,70,0.10565275690516451],[114,253,71,0.09602800362973436],[114,253,72,0.08679726229993594],[114,253,73,0.07795295914049168],[114,253,74,0.06947510977722676],[114,253,75,0.06133280541854692],[114,253,76,0.053485745106737176],[114,253,77,0.04398857863289849],[114,253,78,0.0318492321934148],[114,253,79,0.01964019302389],[114,254,64,0.17006903308681004],[114,254,65,0.15873185240407126],[114,254,66,0.14754639530766106],[114,254,67,0.13655418404351213],[114,254,68,0.1258109012957454],[114,254,69,0.11537596092777735],[114,254,70,0.10529142895930216],[114,254,71,0.0955827886805646],[114,254,72,0.08626024584583843],[114,254,73,0.07732008423825729],[114,254,74,0.06874606994583035],[114,254,75,0.060510902623961374],[114,254,76,0.05257771196435489],[114,254,77,0.04394994505412604],[114,254,78,0.03191757466602032],[114,254,79,0.01980590088407175],[114,255,64,0.16980433546185397],[114,255,65,0.1584960114055678],[114,255,66,0.14732056029002136],[114,255,67,0.13631314444761214],[114,255,68,0.12552870379862882],[114,255,69,0.11502993091345382],[114,255,70,0.10486254511790027],[114,255,71,0.09505591043938676],[114,255,72,0.08562427374076802],[114,255,73,0.07656805384358242],[114,255,74,0.06787518005217988],[114,255,75,0.059522478423182326],[114,255,76,0.051477104066362446],[114,255,77,0.04369801771477075],[114,255,78,0.03209233449231812],[114,255,79,0.020113082704071316],[114,256,64,0.16950002852546536],[114,256,65,0.15822021025911331],[114,256,66,0.14705338690172662],[114,256,67,0.1360280798773375],[114,256,68,0.12519797466142685],[114,256,69,0.11462852855373817],[114,256,70,0.10436881895966767],[114,256,71,0.09445198988003858],[114,256,72,0.0848963949556174],[114,256,73,0.075706793320594],[114,256,74,0.0668755967850066],[114,256,75,0.05838416679433366],[114,256,76,0.05020415955081079],[114,256,77,0.042298917626982985],[114,256,78,0.0323356974115018],[114,256,79,0.020520353235591142],[114,257,64,0.16915154283013634],[114,257,65,0.15789912739098783],[114,257,66,0.14673909817145406],[114,257,67,0.1356931663914748],[114,257,68,0.12481341172716313],[114,257,69,0.11416768409685843],[114,257,70,0.10380819749654219],[114,257,71,0.0937717894186912],[114,257,72,0.08408095009853317],[114,257,73,0.07474490712690457],[114,257,74,0.06576076408257402],[114,257,75,0.05711469175893295],[114,257,76,0.04878317048950878],[114,257,77,0.0407342820153202],[114,257,78,0.032602655924528295],[114,257,79,0.020976918037106475],[114,258,64,0.16874634635029917],[114,258,65,0.1575196358874032],[114,258,66,0.14636435321313246],[114,258,67,0.13529531315729051],[114,258,68,0.12436283046606667],[114,258,69,0.11363697999249513],[114,258,70,0.10317300765627185],[114,258,71,0.09301139723509848],[114,258,72,0.08317877883129143],[114,258,73,0.07368889542926213],[114,258,74,0.06454362633852281],[114,258,75,0.05573406623230881],[114,258,76,0.04724165841424943],[114,258,77,0.03903938087621809],[114,258,78,0.031092983653443027],[114,258,79,0.021423625070235354],[114,259,64,0.16701415855944624],[114,259,65,0.15706110073931226],[114,259,66,0.14591064597362474],[114,259,67,0.1348186564870514],[114,259,68,0.1238335358115297],[114,259,69,0.11302741273974587],[114,259,70,0.10245841624120439],[114,259,71,0.09217055172933018],[114,259,72,0.08219448952973742],[114,259,73,0.07254841380698364],[114,259,74,0.06323893088517157],[114,259,75,0.054262035807152505],[114,259,76,0.04560413589271911],[114,259,77,0.0372431299795543],[114,259,78,0.029149541965666242],[114,259,79,0.02128770721635488],[114,260,64,0.16493396704857968],[114,260,65,0.15647728810845096],[114,260,66,0.14536265268220186],[114,260,67,0.13425236176490085],[114,260,68,0.12321954165423882],[114,260,69,0.1123379728603865],[114,260,70,0.10166830309539497],[114,260,71,0.0912577394615742],[114,260,72,0.08114071977498659],[114,260,73,0.07133964600031133],[114,260,74,0.06186567886974667],[114,260,75,0.052719592663147435],[114,260,76,0.04389268903670163],[114,260,77,0.035367768704638564],[114,260,78,0.027120159706573048],[114,260,79,0.019118800929875786],[114,261,64,0.1627065968384311],[114,261,65,0.15423435016078393],[114,261,66,0.14470994889846056],[114,261,67,0.13358986114585514],[114,261,68,0.12251850821025889],[114,261,69,0.1115707275306759],[114,261,70,0.10080913991442295],[114,261,71,0.09028366822244185],[114,261,72,0.08003209620153287],[114,261,73,0.07008069008495685],[114,261,74,0.06044488216616573],[114,261,75,0.05113001545178809],[114,261,76,0.04213214840625791],[114,261,77,0.03343891871313799],[114,261,78,0.025030464901057536],[114,261,79,0.016880404613001537],[114,262,64,0.16034515802995725],[114,262,65,0.15185319198195918],[114,262,66,0.14337604941380389],[114,262,67,0.13282827512861886],[114,262,68,0.12173106458009277],[114,262,69,0.11073004090794146],[114,262,70,0.099889112779741],[114,262,71,0.08926030215716407],[114,262,72,0.07888419700165819],[114,262,73,0.0687904661968772],[114,262,74,0.05899843601788627],[114,262,75,0.04951772737747317],[114,262,76,0.04034895298441049],[114,262,77,0.031484473458706676],[114,262,78,0.022909211368517937],[114,262,79,0.01460152208020915],[114,263,64,0.15785848959089427],[114,263,65,0.14934042722583668],[114,263,66,0.14085795711742613],[114,263,67,0.131968274265082],[114,263,68,0.12086066432120945],[114,263,69,0.10982239593098472],[114,263,70,0.0989178804857555],[114,263,71,0.08820052605168562],[114,263,72,0.07771309183703552],[114,263,73,0.06748810296832927],[114,263,74,0.057548325022526416],[114,263,75,0.04790729766396641],[114,263,76,0.03856992664001063],[114,263,77,0.02953313329938017],[114,263,78,0.020786560715907516],[114,263,79,0.012313335425455187],[114,264,64,0.15525102120334283],[114,264,65,0.1466987548464696],[114,264,66,0.13820100449328243],[114,264,67,0.12979175072554408],[114,264,68,0.11991378144768648],[114,264,69,0.10885654661054561],[114,264,70,0.0979066511789164],[114,264,71,0.08711811358879235],[114,264,72,0.07653516936098442],[114,264,73,0.06619259340458765],[114,264,74,0.056116078834347494],[114,264,75,0.04632267176258097],[114,264,76,0.036821261434673555],[114,264,77,0.027613124989689222],[114,264,78,0.0186925260479216],[114,264,79,0.010047366252924319],[114,265,64,0.15252227665470686],[114,265,65,0.1439264254216753],[114,265,66,0.13540211911161448],[114,265,67,0.12699031516901604],[114,265,68,0.11866955202623754],[114,265,69,0.10784400313706119],[114,265,70,0.09686857954664774],[114,265,71,0.08602800175300987],[114,265,72,0.07536725450382757],[114,265,73,0.06492272236157445],[114,265,74,0.05472247978690714],[114,265,75,0.04478663257984202],[114,265,76,0.03512771015853998],[114,265,77,0.02575110807308871],[114,265,78,0.016655580076146592],[114,265,79,0.010834197831521933],[114,266,64,0.14966601633060775],[114,266,65,0.14101634706679228],[114,266,66,0.13245343473618107],[114,266,67,0.12402479832608876],[114,266,68,0.11571402887635943],[114,266,69,0.10679985163568034],[114,266,70,0.09581948631612952],[114,266,71,0.08494687310434992],[114,266,72,0.07422701723349646],[114,266,73,0.06369726736147616],[114,266,74,0.05338752423049048],[114,266,75,0.04332049460815781],[114,266,76,0.03351199009657397],[114,266,77,0.0239712703209486],[114,266,78,0.018425479703360795],[114,266,79,0.016056659480157665],[114,267,64,0.14666901690864909],[114,267,65,0.13795482914924448],[114,267,66,0.1293410149167189],[114,267,67,0.12088112908173737],[114,267,68,0.11256409819914266],[114,267,69,0.10433430097432898],[114,267,70,0.0947789013803209],[114,267,71,0.08389404721656071],[114,267,72,0.07313367409640484],[114,267,73,0.06253547409222229],[114,267,74,0.05213063900195119],[114,267,75,0.041944032478213725],[114,267,76,0.03199439967214969],[114,267,77,0.026948637548950133],[114,267,78,0.024233775153150942],[114,267,79,0.021560166689391473],[114,268,64,0.143509486855684],[114,268,65,0.134719962507347],[114,268,66,0.1260432167981429],[114,268,67,0.11753822564647409],[114,268,68,0.10919945048509772],[114,268,69,0.10097637255284621],[114,268,70,0.09282340225586491],[114,268,71,0.08289268218519862],[114,268,72,0.07210898346946379],[114,268,73,0.06145780757733749],[114,268,74,0.050971154098181023],[114,268,75,0.040675645116260206],[114,268,76,0.03638158688829259],[114,268,77,0.033344155138951226],[114,268,78,0.03033122574791927],[114,268,79,0.027347969795022773],[114,269,64,0.1401551167991777],[114,269,65,0.13127963533353768],[114,269,66,0.12252869440069257],[114,269,67,0.1139660167781333],[114,269,68,0.1055917147932053],[114,269,69,0.09736107712613863],[114,269,70,0.08923303250646222],[114,269,71,0.08117123613461985],[114,269,72,0.07117853511179582],[114,269,73,0.06048697967389374],[114,269,74,0.049942580147444585],[114,269,75,0.046658090421252546],[114,269,76,0.043347340578882586],[114,269,77,0.04002820268922989],[114,269,78,0.036714475742082565],[114,269,79,0.033415988628410956],[114,270,64,0.13656076427550268],[114,270,65,0.12758918430309354],[114,270,66,0.11875404103146418],[114,270,67,0.11012310836252269],[114,270,68,0.10170218849582621],[114,270,69,0.09345297254763844],[114,270,70,0.08533945416161622],[114,270,71,0.07732900075528383],[114,270,72,0.0693923761916499],[114,270,73,0.0611194180006118],[114,270,74,0.05768346349004899],[114,270,75,0.05416819058361745],[114,270,76,0.050597928935839295],[114,270,77,0.04699377296859441],[114,270,78,0.04337356249812658],[114,270,79,0.03975187046864201],[114,271,64,0.1326971693226913],[114,271,65,0.12362018189318966],[114,271,66,0.11469233648211566],[114,271,67,0.10598474820161703],[114,271,68,0.09750886245070917],[114,271,69,0.08923323791350693],[114,271,70,0.08112734477312251],[114,271,71,0.07316260723034082],[114,271,72,0.06843212993846617],[114,271,73,0.06793037937073622],[114,271,74,0.06569949279583669],[114,271,75,0.06195167196383202],[114,271,76,0.058118203162787305],[114,271,77,0.05422344002942746],[114,271,78,0.05028935424507352],[114,271,79,0.0463354038773806],[114,272,64,0.1286451875700132],[114,272,65,0.11945499174694688],[114,272,66,0.1104269790539607],[114,272,67,0.10163477785168328],[114,272,68,0.093095277697038],[114,272,69,0.08478420984634714],[114,272,70,0.07667681511967968],[114,272,71,0.07370026675125756],[114,272,72,0.07325281390970069],[114,272,73,0.0727336282917742],[114,272,74,0.0721189032461266],[114,272,75,0.06994649516541525],[114,272,76,0.06585463510719838],[114,272,77,0.06167297345612271],[114,272,78,0.05742755678148988],[114,272,79,0.05314270326690172],[114,273,64,0.12450445822256101],[114,273,65,0.11519514413084792],[114,273,66,0.10606071337916538],[114,273,67,0.09717636783541375],[114,273,68,0.08856408752751048],[114,273,69,0.0802069128179792],[114,273,70,0.07903848314694958],[114,273,71,0.07852154371166234],[114,273,72,0.07799835565945168],[114,273,73,0.07744601805822378],[114,273,74,0.0768412844363939],[114,273,75,0.07616079285766816],[114,273,76,0.07374353342171264],[114,273,77,0.06928956144998699],[114,273,78,0.06474689247022107],[114,273,79,0.060144478984308795],[114,274,64,0.1203631289536218],[114,274,65,0.11093090009731509],[114,274,66,0.10168535442391688],[114,274,67,0.09270225920934069],[114,274,68,0.0854705989237323],[114,274,69,0.08470082513250489],[114,274,70,0.0839993747339014],[114,274,71,0.08334930514221353],[114,274,72,0.08273162562143761],[114,274,73,0.08212551442461878],[114,274,74,0.08150857317501933],[114,274,75,0.08085711811492363],[114,274,76,0.0801465077940598],[114,274,77,0.07701793024035443],[114,274,78,0.07220183534449781],[114,274,79,0.06730543168838607],[114,275,64,0.11629867227688767],[114,275,65,0.10674199867735358],[114,275,66,0.0973824550556208],[114,275,67,0.09199421286391535],[114,275,68,0.09090948071686111],[114,275,69,0.08992913261143469],[114,275,70,0.08904440901181811],[114,275,71,0.08824308470776827],[114,275,72,0.08750966677798044],[114,275,73,0.08682564090311315],[114,275,74,0.08616976565882489],[114,275,75,0.08551841434299283],[114,275,76,0.08484596381949538],[114,275,77,0.08412522979420875],[114,275,78,0.07974310358126406],[114,275,79,0.07458478727261939],[114,276,64,0.11237852615013885],[114,276,65,0.10269822606089964],[114,276,66,0.0992769645950456],[114,276,67,0.09783392001254934],[114,276,68,0.0965105369602572],[114,276,69,0.09530906849236642],[114,276,70,0.09422651489327015],[114,276,71,0.09325531599481077],[114,276,72,0.09238355728835151],[114,276,73,0.09159523435824725],[114,276,74,0.09087057522735843],[114,276,75,0.09018642011155684],[114,276,76,0.08951665799147222],[114,276,77,0.08883271932679504],[114,276,78,0.08731834389276191],[114,276,79,0.08193702455361207],[114,277,64,0.10917003932690532],[114,277,65,0.10736180937829452],[114,277,66,0.10557621881077073],[114,277,67,0.10388274149696244],[114,277,68,0.10231595931302682],[114,277,69,0.10088437910943465],[114,277,70,0.0995904459601495],[114,277,71,0.09843112145417962],[114,277,72,0.09739808682457744],[114,277,73,0.09647801334107484],[114,277,74,0.09565289953272763],[114,277,75,0.09490047469723956],[114,277,76,0.09419466804939755],[114,277,77,0.09350614276316149],[114,277,78,0.09280289407137911],[114,277,79,0.08931279540392786],[114,278,64,0.11621302521334351],[114,278,65,0.11414968116538599],[114,278,66,0.11211367629418012],[114,278,67,0.11017115411978184],[114,278,68,0.10835847521263241],[114,278,69,0.10668976914165194],[114,278,70,0.10517249885152824],[114,278,71,0.10380791531698558],[114,278,72,0.10259124607845292],[114,278,73,0.10151195877668275],[114,278,74,0.10055409924545163],[114,278,75,0.09969670359757407],[114,278,76,0.09891428362136885],[114,278,77,0.09817738469339174],[114,278,78,0.09745321530976687],[114,278,79,0.09666003689058407],[114,279,64,0.12349629541422204],[114,279,65,0.12118704477705279],[114,279,66,0.11890752062998508],[114,279,67,0.11671976632849455],[114,279,68,0.11466110727614141],[114,279,69,0.11275054946036175],[114,279,70,0.11100004576607139],[114,279,71,0.10941481998917092],[114,279,72,0.10799352908223886],[114,279,73,0.10672850678566344],[114,279,74,0.10560608821413575],[114,279,75,0.10460701483241835],[114,279,76,0.10370691912428809],[114,279,77,0.1028768881355522],[114,279,78,0.10208410495723254],[114,279,79,0.10129256710959655],[114,280,64,0.1310233502865839],[114,280,65,0.12847969508909768],[114,280,66,0.1259658071290571],[114,280,67,0.12353899708630915],[114,280,68,0.12123674727230543],[114,280,69,0.11908209912062057],[114,280,70,0.11709088063273798],[114,280,71,0.11527189560070233],[114,280,72,0.11362704814409565],[114,280,73,0.11215155356658103],[114,280,74,0.11083423513121739],[114,280,75,0.10965790620790504],[114,280,76,0.10859983710651304],[114,280,77,0.10763230577653377],[114,280,78,0.10672323142973053],[114,280,79,0.10583689002746757],[114,281,64,0.13878770604551172],[114,281,65,0.13602312961537438],[114,281,66,0.13328605078212993],[114,281,67,0.13062856910038986],[114,281,68,0.12808754417351037],[114,281,69,0.12568914110535892],[114,281,70,0.12345237866478444],[114,281,71,0.12138918253499424],[114,281,72,0.11950446133700594],[114,281,73,0.11779627239220962],[114,281,74,0.11625607687087283],[114,281,75,0.11486908382017319],[114,281,76,0.11361468241800607],[114,281,77,0.11246696165849505],[114,281,78,0.11139531654308236],[114,281,79,0.11036513972861521],[114,282,64,0.1467724668183054],[114,282,65,0.14380203639048908],[114,282,66,0.14085462832246698],[114,282,67,0.13797681599833514],[114,282,68,0.135204105959691],[114,282,69,0.13256483158338483],[114,282,70,0.1300804691529845],[114,282,71,0.12776555689339927],[114,282,72,0.12562771259735073],[114,282,73,0.12366774287787444],[114,282,74,0.12187984375898521],[114,282,75,0.12025189215845633],[114,282,76,0.11876582766415004],[114,282,77,0.11739812385956082],[114,282,78,0.1161203483165004],[114,282,79,0.11489981024445858],[114,283,64,0.1549497127661069],[114,283,65,0.15178959613745152],[114,283,66,0.14864599407909818],[114,283,67,0.14555980319655296],[114,283,68,0.14256451498878267],[114,283,69,0.13968966257386986],[114,283,70,0.13695842147418535],[114,283,71,0.13438739895816856],[114,283,72,0.13198658458608914],[114,283,73,0.1297593927652568],[114,283,74,0.12770279710851629],[114,283,75,0.12580755622923834],[114,283,76,0.12405853045064918],[114,283,77,0.12243508875829374],[114,283,78,0.12091160518299875],[114,283,79,0.11945804366916953],[114,284,64,0.16327970400759387],[114,284,65,0.15994659849766604],[114,284,66,0.15662170944331705],[114,284,67,0.15334026233559883],[114,284,68,0.1501331568692694],[114,284,69,0.14703017801992113],[114,284,70,0.14405544438986778],[114,284,71,0.141227074804165],[114,284,72,0.1385570645406479],[114,284,73,0.13605125252852243],[114,284,74,0.13370937940566843],[114,284,75,0.1315252361641161],[114,284,76,0.12948690295718737],[114,284,77,0.12757707749158193],[114,284,78,0.1257734922844959],[114,284,79,0.12404941993095248],[114,285,64,0.17170990021576202],[114,285,65,0.16822037222956318],[114,285,66,0.16472928589119412],[114,285,67,0.1612663392677797],[114,285,68,0.15785936287004113],[114,285,69,0.15453750336237881],[114,285,70,0.1513250987864324],[114,285,71,0.14824123127501407],[114,285,72,0.14529952339932717],[114,285,73,0.1425080231517636],[114,285,74,0.1398691775630458],[114,285,75,0.13737989479389895],[114,285,76,0.13503169438695348],[114,285,77,0.13281094521514825],[114,285,78,0.13069919051976836],[114,285,79,0.1286735592956028],[114,286,64,0.17840951983084907],[114,286,65,0.17231470545735456],[114,286,66,0.16714674517700995],[114,286,67,0.1629289335737518],[114,286,68,0.15965914693767838],[114,286,69,0.15730678458263359],[114,286,70,0.15580982018638367],[114,286,71,0.1550749718944173],[114,286,72,0.15215670851150628],[114,286,73,0.14907695744674274],[114,286,74,0.1461346996648495],[114,286,75,0.14332997866955896],[114,286,76,0.14065788682702188],[114,286,77,0.13810870375416945],[114,286,78,0.13566811898276443],[114,286,79,0.13331753828688003],[114,287,64,0.18020410617817614],[114,287,65,0.1739935055361888],[114,287,66,0.16871791003060982],[114,287,67,0.16440205813483508],[114,287,68,0.16104486861231748],[114,287,69,0.15861628622813365],[114,287,70,0.15705423246077357],[114,287,71,0.15626469268882806],[114,287,72,0.15611788437664076],[114,287,73,0.15568555527653674],[114,287,74,0.15243896561471723],[114,287,75,0.1493149129856624],[114,287,76,0.14631210501961],[114,287,77,0.14342485818719838],[114,287,78,0.1406432113758956],[114,287,79,0.1379531196474803],[114,288,64,0.1821403517257094],[114,288,65,0.17581597927713288],[114,288,66,0.17043277429222178],[114,288,67,0.16601701840833213],[114,288,68,0.1625688262149737],[114,288,69,0.16005889894594227],[114,288,70,0.15842537808853527],[114,288,71,0.1575738530588452],[114,288,72,0.15737341546127703],[114,288,73,0.1576594642248001],[114,288,74,0.1583226680551214],[114,288,75,0.15525241081356317],[114,288,76,0.15191984048615187],[114,288,77,0.14869355783947347],[114,288,78,0.1455680069075304],[114,288,79,0.1425337968815227],[114,289,64,0.18420083917004548],[114,289,65,0.17776570613587403],[114,289,66,0.17227588791597118],[114,289,67,0.1677592977283614],[114,289,68,0.16421738955350176],[114,289,69,0.16162182373050688],[114,289,70,0.15991122734616642],[114,289,71,0.1589911261705353],[114,289,72,0.15872988881414896],[114,289,73,0.15896148805058513],[114,289,74,0.1595753839078339],[114,289,75,0.16051118902920797],[114,289,76,0.1573824944128407],[114,289,77,0.15382556601949357],[114,289,78,0.15036355983734714],[114,289,79,0.1469916572785417],[114,290,64,0.1863675503603791],[114,290,65,0.17982563075744526],[114,290,66,0.17423114612615798],[114,290,67,0.169613718273455],[114,290,68,0.16597627341266613],[114,290,69,0.16329162389570712],[114,290,70,0.16149913959238354],[114,290,71,0.160504608195568],[114,290,72,0.16017607347097806],[114,290,73,0.1603465258432818],[114,290,74,0.1609044327391069],[114,290,75,0.16178873668369492],[114,290,76,0.16259414667214103],[114,290,77,0.15872447220593705],[114,290,78,0.15494369676882122],[114,290,79,0.15125129904086643],[114,291,64,0.18862210619588754],[114,291,65,0.18197829335238094],[114,291,66,0.17628201051545989],[114,291,67,0.17156465323731301],[114,291,68,0.16783074124430997],[114,291,69,0.16505442081341903],[114,291,70,0.16317605164834076],[114,291,71,0.1621019999689994],[114,291,72,0.16170037538759005],[114,291,73,0.16180362515004032],[114,291,74,0.1622994457017662],[114,291,75,0.16312618340881235],[114,291,76,0.16423212793764985],[114,291,77,0.16334561940986028],[114,291,78,0.15927141628570163],[114,291,79,0.15528280089101196],[114,292,64,0.19094602876399297],[114,292,65,0.1842060831140733],[114,292,66,0.1784117539253417],[114,292,67,0.17359626346053136],[114,292,68,0.16976583393347952],[114,292,69,0.16689611527917342],[114,292,70,0.16492869229382195],[114,292,71,0.16377081519302394],[114,292,72,0.1632910399505814],[114,292,73,0.16332170205706015],[114,292,74,0.16374995235265719],[114,292,75,0.16451362400005923],[114,292,76,0.16556056384170265],[114,292,77,0.16684508040831944],[114,292,78,0.16333391458859414],[114,292,79,0.159079339071538],[114,293,64,0.19332102571940202],[114,293,65,0.1864915146772299],[114,293,66,0.18060372910856776],[114,293,67,0.17569275852320476],[114,293,68,0.17176662364040463],[114,293,69,0.16880263450480715],[114,293,70,0.1667438228793088],[114,293,71,0.16549861518659825],[114,293,72,0.16493638141026135],[114,293,73,0.16488976584187448],[114,293,74,0.16524560092617063],[114,293,75,0.16594129758578147],[114,293,76,0.16692433575777105],[114,293,77,0.16814860817894728],[114,293,78,0.16713033725055143],[114,293,79,0.16264549893704314],[114,294,64,0.19572929690392254],[114,294,65,0.1888175276174333],[114,294,66,0.18284166117382186],[114,294,67,0.1778386822984071],[114,294,68,0.173818492718338],[114,294,69,0.17076020473811163],[114,294,70,0.1686085040539261],[114,294,71,0.16727327018093646],[114,294,72,0.16662503923587302],[114,294,73,0.16649717087649452],[114,294,74,0.16677640613268577],[114,294,75,0.1673998314805908],[114,294,76,0.16831464265239385],[114,294,77,0.16947438647877142],[114,294,78,0.17066908190548277],[114,294,79,0.1659943438097782],[114,295,64,0.19815386320717662],[114,295,65,0.1911678089919183],[114,295,66,0.1851099638125489],[114,295,67,0.18001922296666456],[114,295,68,0.17590743770736944],[114,295,69,0.17275564950959285],[114,295,70,0.17051038860937978],[114,295,71,0.16908324716099615],[114,295,72,0.16834626139321082],[114,295,73,0.16813389578152899],[114,295,74,0.16833302448204868],[114,295,75,0.168880512771395],[114,295,76,0.1697233605047372],[114,295,77,0.17081484465383617],[114,295,78,0.17211116938877594],[114,295,79,0.16914473999072233],[114,296,64,0.20057891766802338],[114,296,65,0.193527138921386],[114,296,66,0.18739407930783641],[114,296,67,0.18222054749123787],[114,296,68,0.1780203984040301],[114,296,69,0.17477671350616064],[114,296,70,0.17243804043970587],[114,296,71,0.17091792425276736],[114,296,72,0.17009021454444734],[114,296,73,0.16979084983109374],[114,296,74,0.1699070571318978],[114,296,75,0.1703755876358507],[114,296,76,0.17114333793971503],[114,296,77,0.17216339624808524],[114,296,78,0.17339158646143651],[114,296,79,0.1721189386021708],[114,297,64,0.20299019881689695],[114,297,65,0.19588175921305387],[114,297,66,0.18968084232553825],[114,297,67,0.1844301605544175],[114,297,68,0.1801456120068916],[114,297,69,0.17681241207194942],[114,297,70,0.1743812796170318],[114,297,71,0.17276793165657267],[114,297,72,0.17184832117037563],[114,297,73,0.17146020660871752],[114,297,74,0.17149138026104516],[114,297,75,0.17187858839344683],[114,297,76,0.17256871972559007],[114,297,77,0.17351475855282497],[114,297,78,0.17467222501615864],[114,297,79,0.1749404146879367],[114,298,64,0.2053753862588651],[114,298,65,0.19821976502475264],[114,298,66,0.19195886748744584],[114,298,67,0.18663728795463796],[114,298,68,0.18227299233796473],[114,298,69,0.17885340633607646],[114,298,70,0.17633155358315605],[114,298,71,0.174625519126179],[114,298,72,0.17361362361487184],[114,298,73,0.17313576491404636],[114,298,74,0.1730805029677144],[114,298,75,0.1733846882890216],[114,298,76,0.17399529813585704],[114,298,77,0.17486530007012244],[114,298,78,0.17594999095779046],[114,298,79,0.17720341337115136],[114,299,64,0.2077245184975379],[114,299,65,0.2005315195701951],[114,299,66,0.19421896072663944],[114,299,67,0.1888332844645409],[114,299,68,0.18439453414002963],[114,299,69,0.18089240396746967],[114,299,70,0.17828233445707936],[114,299,71,0.17648494999385694],[114,299,72,0.17538117505170914],[114,299,73,0.1748133369204809],[114,299,74,0.17467095269277014],[114,299,75,0.17489108400884504],[114,299,76,0.17542089217554366],[114,299,77,0.17621341589027423],[114,299,78,0.17722381185318753],[114,299,79,0.1784056680091069],[114,300,64,0.21003043299982369],[114,300,65,0.20281009186541799],[114,300,66,0.1964545544250126],[114,300,67,0.1910120661499831],[114,300,68,0.186504742449892],[114,300,69,0.18292458555675886],[114,300,70,0.18022954245847952],[114,300,71,0.17834292174137995],[114,300,72,0.1771484573737191],[114,300,73,0.17649116358374012],[114,300,74,0.17626168816793292],[114,300,75,0.17639740592926412],[114,300,76,0.17684575467192137],[114,300,77,0.17755993098333892],[114,300,78,0.17849503563038355],[114,300,79,0.17960428674459517],[114,301,64,0.21228922850142073],[114,301,65,0.20505171751628104],[114,301,66,0.19866216633286146],[114,301,67,0.1931705671498779],[114,301,68,0.18860108704745385],[114,301,69,0.184948056625119],[114,301,70,0.18217199544702004],[114,301,71,0.18019901311685163],[114,301,72,0.17891582600418549],[114,301,73,0.17817035730123848],[114,301,74,0.17785453988886504],[114,301,75,0.17790615609779256],[114,301,76,0.17827300722951325],[114,301,77,0.17890853140461865],[114,301,78,0.17976785715544097],[114,301,79,0.18080391992504588],[114,302,64,0.21450074955316686],[114,302,65,0.2072562825471505],[114,302,66,0.2008418822706596],[114,302,67,0.19530922091699543],[114,302,68,0.19068448198072457],[114,302,69,0.1869643252601924],[114,302,70,0.18411188457761885],[114,302,71,0.1820561577974895],[114,302,72,0.18068698163060298],[114,302,73,0.17985537182240655],[114,302,74,0.17945467811326005],[114,302,75,0.17942317394678156],[114,302,76,0.17970910304953097],[114,302,77,0.1802662234142241],[114,302,78,0.1810497726871152],[114,302,79,0.18201249156430785],[114,303,64,0.21666909330822587],[114,303,65,0.20942783027074094],[114,303,66,0.2029978626129973],[114,303,67,0.1974324659196945],[114,303,68,0.19275979016674594],[114,303,69,0.1889788053790614],[114,303,70,0.18605527607164762],[114,303,71,0.18392114459833453],[114,303,72,0.18246946886076496],[114,303,73,0.18155449940992247],[114,303,74,0.1810711083838994],[114,303,75,0.1809581297396323],[114,303,76,0.18116431761370438],[114,303,77,0.18164382051068423],[114,303,78,0.18235206220929456],[114,303,79,0.18324167579357573],[114,304,64,0.2188031385500052],[114,304,65,0.211575091199013],[114,304,66,0.20513887255457952],[114,304,67,0.1995492758044865],[114,304,68,0.19483635306832917],[114,304,69,0.19100134561817145],[114,304,70,0.18801263910396543],[114,304,71,0.18580514422679012],[114,304,72,0.18427520180108908],[114,304,73,0.18328039525175968],[114,304,74,0.18271719457658614],[114,304,75,0.18252504574946132],[114,304,76,0.18265326723241349],[114,304,77,0.1830564583785122],[114,304,78,0.1836902996411266],[114,304,79,0.18450740106680705],[114,305,64,0.220917096960947],[114,305,65,0.21371203599526922],[114,305,66,0.2072788361584276],[114,305,67,0.20167371401957035],[114,305,68,0.1969285454467466],[114,305,69,0.19304678385034654],[114,305,70,0.18999939980592173],[114,305,71,0.18772426258312686],[114,305,72,0.1861210165573131],[114,305,73,0.1850506291241861],[114,305,74,0.18441120947308764],[114,305,75,0.18414284517034996],[114,305,76,0.18419545545725474],[114,305,77,0.1845241377498587],[114,305,78,0.18508489092496289],[114,305,79,0.1858303821207574],[114,306,64,0.2230310866321569],[114,306,65,0.21585845146740984],[114,306,66,0.20943741418624257],[114,306,67,0.203825512899303],[114,306,68,0.1990563551903377],[114,306,69,0.19513552732885653],[114,306,70,0.19203652138429586],[114,306,71,0.18970012060691815],[114,306,72,0.18802925065752787],[114,306,73,0.18688826430567956],[114,306,74,0.18617691285905236],[114,306,75,0.18583592876114458],[114,306,76,0.1858158473580075],[114,306,77,0.18607229518021773],[114,306,78,0.1865616399920859],[114,306,79,0.18723667968960034],[114,307,64,0.22517009375577746],[114,307,65,0.21803894063524976],[114,307,66,0.21163903604858972],[114,307,67,0.2060291309529999],[114,307,68,0.20124445958507745],[114,307,69,0.1972926420428919],[114,307,70,0.1941496014318767],[114,307,71,0.19175895552300082],[114,307,72,0.19002684570429573],[114,307,73,0.18882096101465912],[114,307,74,0.18804265726866784],[114,307,75,0.1876332862254686],[114,307,76,0.18754399122439147],[114,307,77,0.18773094071067276],[114,307,78,0.188150908613157],[114,307,79,0.1855065184185866],[114,308,64,0.22733159880760234],[114,308,65,0.22025123321569598],[114,308,66,0.2138817797689763],[114,308,67,0.2082830853470686],[114,308,68,0.20349189573119653],[114,308,69,0.19951775404707434],[114,308,70,0.19633891059767122],[114,308,71,0.1939017233522543],[114,308,72,0.19211546768830695],[114,308,73,0.19085110476484166],[114,308,74,0.19001156115447834],[114,308,75,0.18953879313622657],[114,308,76,0.1893845504262579],[114,308,77,0.1895055590766464],[114,308,78,0.188085307997289],[114,308,79,0.18235037928268366],[114,309,64,0.22948501920633466],[114,309,65,0.22246553972851454],[114,309,66,0.2161366443740158],[114,309,67,0.21055914972820602],[114,309,68,0.20577119094761867],[114,309,69,0.20178411923114326],[114,309,70,0.19857840772241508],[114,309,71,0.19610306415252343],[114,309,72,0.19427042527458757],[114,309,73,0.19295467819982887],[114,309,74,0.1920603317239978],[114,309,75,0.1915299796906329],[114,309,76,0.19131601132522336],[114,309,77,0.19101308548503348],[114,309,78,0.1847558112701743],[114,309,79,0.17880743914563757],[114,310,64,0.23160132350500692],[114,310,65,0.22465349147314498],[114,310,66,0.2183759237794136],[114,310,67,0.21283027233697982],[114,310,68,0.20805593332904593],[114,310,69,0.20406594749180323],[114,310,70,0.2008429061330549],[114,310,71,0.19833837995324782],[114,310,72,0.19646770283755408],[114,310,73,0.19510825817719096],[114,310,74,0.1941661905476019],[114,310,75,0.1935848090549023],[114,310,76,0.19331720793869533],[114,310,77,0.1875409396689995],[114,310,78,0.18106370332087424],[114,310,79,0.1749212289207455],[114,311,64,0.23365424057003964],[114,311,65,0.22678933065441598],[114,311,66,0.22057438116386055],[114,311,67,0.21507173802639845],[114,311,68,0.21032192475677602],[114,311,69,0.20633954986718428],[114,311,70,0.2031092176242168],[114,311,71,0.2005849776815421],[114,311,72,0.1986851035586798],[114,311,73,0.1972901590919545],[114,311,74,0.1963080155768004],[114,311,75,0.1956828150842018],[114,311,76,0.19069070567840354],[114,311,77,0.18371865179166275],[114,311,78,0.1770484637981642],[114,311,79,0.17073693319612485],[114,312,64,0.23459961353936384],[114,312,65,0.22884989462173388],[114,312,66,0.22270923231244197],[114,312,67,0.21726114970879262],[114,312,68,0.21254715950228747],[114,312,69,0.20858331343774789],[114,312,70,0.2053561229206569],[114,312,71,0.20282203461308862],[114,312,72,0.20090220949730253],[114,312,73,0.19948038744484742],[114,312,74,0.19846629033018645],[114,312,75,0.19413432368801384],[114,312,76,0.18673184163106477],[114,312,77,0.17958064483597255],[114,312,78,0.17274997915633186],[114,312,79,0.1662996866940041],[114,313,64,0.23226537428988264],[114,313,65,0.22968543356718882],[114,313,66,0.22475978621375403],[114,313,67,0.21937792834005956],[114,313,68,0.2147111850602177],[114,313,69,0.21077692489599667],[114,313,70,0.2075634603234085],[114,313,71,0.20502955491315558],[114,313,72,0.20309920935245443],[114,313,73,0.2016593446861869],[114,313,74,0.19775226088722486],[114,313,75,0.19000926111133304],[114,313,76,0.18245231105759],[114,313,77,0.17516081226375133],[114,313,78,0.16820685303638175],[114,313,79,0.1616526430434569],[114,314,64,0.22987677657249078],[114,314,65,0.22741611662340977],[114,314,66,0.22511903993407176],[114,314,67,0.22140302133783474],[114,314,68,0.21679483156422058],[114,314,69,0.21290111971671766],[114,314,70,0.2097118934448794],[114,314,71,0.2071881548410136],[114,314,72,0.20525670017837802],[114,314,73,0.20138825385410591],[114,314,74,0.19341278737793655],[114,314,75,0.1855479733926476],[114,314,76,0.17788006603260476],[114,314,77,0.17049086589248189],[114,314,78,0.1634545198144728],[114,314,79,0.15683486280520811],[114,315,64,0.227436392039786],[114,315,65,0.22508379827546995],[114,315,66,0.22288856501605075],[114,315,67,0.22081875623952335],[114,315,68,0.2187806031750642],[114,315,69,0.21493820581980255],[114,315,70,0.21178356330180492],[114,315,71,0.20927983924570898],[114,315,72,0.20486509754676507],[114,315,73,0.1967740379154121],[114,315,74,0.18871373861875135],[114,315,75,0.1807731114930694],[114,315,76,0.17304021778664183],[114,315,77,0.16559842364165117],[114,315,78,0.15852311483474604],[114,315,79,0.15187897382158866],[114,316,64,0.22494023316524708],[114,316,65,0.22268402546651664],[114,316,66,0.22057629461477077],[114,316,67,0.21858825733717038],[114,316,68,0.21673811610329088],[114,316,69,0.2150554247172689],[114,316,70,0.2135365436224324],[114,316,71,0.20800257844170958],[114,316,72,0.19991118499690722],[114,316,73,0.19177262401510015],[114,316,74,0.18367353354347996],[114,316,75,0.17570400039824127],[114,316,76,0.16795307210621838],[114,316,77,0.16050484105253887],[114,316,78,0.15343510504346985],[114,316,79,0.1468086074260993],[114,317,64,0.22237841284672075],[114,317,65,0.22020716989846745],[114,317,66,0.21817302190223645],[114,317,67,0.21625015685921845],[114,317,68,0.2144583329990143],[114,317,69,0.21282690095707713],[114,317,70,0.21063568167465313],[114,317,71,0.20264696788384445],[114,317,72,0.19454194827571142],[114,317,73,0.18639949676429396],[114,317,74,0.1783068711643224],[114,317,75,0.17035459088061605],[114,317,76,0.1626318957007834],[114,317,77,0.15522279109734854],[114,317,78,0.14820268434093334],[114,317,79,0.14163561463532276],[114,318,64,0.21973623110427468],[114,318,65,0.2176396136067633],[114,318,66,0.2156664145582862],[114,318,67,0.2137935524977301],[114,318,68,0.21204191299605232],[114,318,69,0.21044027809242402],[114,318,70,0.20482599943646235],[114,318,71,0.19685093510501875],[114,318,72,0.18877123284588704],[114,318,73,0.1806660160186321],[114,318,74,0.17262255719912045],[114,318,75,0.16473112304127355],[114,318,76,0.15708041201413392],[114,318,77,0.14975359050123518],[114,318,78,0.1428249316259837],[114,318,79,0.13635706005797718],[114,319,64,0.2169956881802895],[114,319,65,0.2149653591785361],[114,319,66,0.2130427078628633],[114,319,67,0.21120711809194834],[114,319,68,0.2094802231787464],[114,319,69,0.2063296041097526],[114,319,70,0.1985566575064273],[114,319,71,0.19062774348094952],[114,319,72,0.1826082343529976],[114,319,73,0.1745770740174769],[114,319,74,0.1666210230677901],[114,319,75,0.15882949989942421],[114,319,76,0.1512900244775475],[114,319,77,0.14408427030642562],[114,319,78,0.13728472900076397],[114,319,79,0.13095199073676334],[115,-64,64,0.33334096476830216],[115,-64,65,0.33908053257730386],[115,-64,66,0.34493101893493433],[115,-64,67,0.3508729145198034],[115,-64,68,0.356912639591363],[115,-64,69,0.3630696387829514],[115,-64,70,0.3693555255797504],[115,-64,71,0.37577407799050194],[115,-64,72,0.3823217258248828],[115,-64,73,0.3889880764979215],[115,-64,74,0.39575647960761434],[115,-64,75,0.4026046304269163],[115,-64,76,0.40950521234772486],[115,-64,77,0.4164265782130721],[115,-64,78,0.42333347037475305],[115,-64,79,0.43018777921833046],[115,-63,64,0.3346268813144096],[115,-63,65,0.3404704936176745],[115,-63,66,0.34642883748114417],[115,-63,67,0.3524836517860792],[115,-63,68,0.3586410581456504],[115,-63,69,0.3649188492084935],[115,-63,70,0.3713268459985048],[115,-63,71,0.3778669869935906],[115,-63,72,0.38453387680964646],[115,-63,73,0.39131536823100915],[115,-63,74,0.39819317764922324],[115,-63,75,0.405143533872558],[115,-63,76,0.41213786017178344],[115,-63,77,0.4191434893340185],[115,-63,78,0.426124411406142],[115,-63,79,0.4330420537235325],[115,-62,64,0.336095189230675],[115,-62,65,0.34202948040247216],[115,-62,66,0.3480807892806572],[115,-62,67,0.35423240149741325],[115,-62,68,0.3604900678474956],[115,-62,69,0.3668696877200289],[115,-62,70,0.37337921047069],[115,-62,71,0.3800187990046654],[115,-62,72,0.38678141452243275],[115,-62,73,0.3936534306790382],[115,-62,74,0.4006152770913863],[115,-62,75,0.4076421120340923],[115,-62,76,0.41470452407368213],[115,-62,77,0.42176926230405887],[115,-62,78,0.4287999947632798],[115,-62,79,0.4357580945339849],[115,-61,64,0.3377314078990958],[115,-61,65,0.3437431626015385],[115,-61,66,0.34987269243143915],[115,-61,67,0.356105085156165],[115,-61,68,0.36244567007271883],[115,-61,69,0.368908270634258],[115,-61,70,0.37549893013791746],[115,-61,71,0.3822161314535922],[115,-61,72,0.3890513941084925],[115,-61,73,0.3959898980339087],[115,-61,74,0.4030111338334724],[115,-61,75,0.4100895793434734],[115,-61,76,0.41719540217061424],[115,-61,77,0.42429518781163933],[115,-61,78,0.4313526928826302],[115,-61,79,0.43832962291451905],[115,-60,64,0.33951715777541946],[115,-60,65,0.34559367778687394],[115,-60,66,0.35178724609287154],[115,-60,67,0.3580849547003763],[115,-60,68,0.3644916773318295],[115,-60,69,0.37101903397445196],[115,-60,70,0.3776711652339192],[115,-60,71,0.3844449911635211],[115,-60,72,0.3913307994198381],[115,-60,73,0.39831285838476577],[115,-60,74,0.40537005508328133],[115,-60,75,0.4124765576425565],[115,-60,76,0.41960250195786414],[115,-60,77,0.42671470215481966],[115,-60,78,0.4337773843659232],[115,-60,79,0.4407529432731775],[115,-59,64,0.34143122253929736],[115,-59,65,0.34756072787698766],[115,-59,66,0.35380516122274225],[115,-59,67,0.3601537575469427],[115,-59,68,0.3666109099205403],[115,-59,69,0.3731859546448983],[115,-59,70,0.3798811598794429],[115,-59,71,0.38669200867544],[115,-59,72,0.39360776023592503],[115,-59,73,0.4006120353072523],[115,-59,74,0.4076834255383939],[115,-59,75,0.4147961265650084],[115,-59,76,0.42192059449964187],[115,-59,77,0.4290242254378076],[115,-59,78,0.4360720575221967],[115,-59,79,0.4430274950449353],[115,-58,64,0.3434508184682375],[115,-58,65,0.3496228826695135],[115,-58,66,0.3559064974919856],[115,-58,67,0.36229310617193605],[115,-58,68,0.3687865944497616],[115,-58,69,0.37539396934533914],[115,-58,70,0.3821156686450291],[115,-58,71,0.3889458562974372],[115,-58,72,0.39587294296038195],[115,-58,73,0.40288013043548415],[115,-58,74,0.40994597985931025],[115,-58,75,0.41704500344543116],[115,-58,76,0.4241482795002347],[115,-58,77,0.43122409036749837],[115,-58,78,0.4382385828926254],[115,-58,79,0.4451564509381198],[115,-57,64,0.345553070925684],[115,-57,65,0.3517590903410562],[115,-57,66,0.35807220625807656],[115,-57,67,0.3644860521244247],[115,-57,68,0.3710039641783868],[115,-57,69,0.3776305911843771],[115,-57,70,0.3843645748828361],[115,-57,71,0.3911988499269833],[115,-57,72,0.39812111489304614],[115,-57,73,0.4051143271699526],[115,-57,74,0.4121572216439572],[115,-57,75,0.41922485302365897],[115,-57,76,0.4262891615834651],[115,-57,77,0.43331956203933203],[115,-57,78,0.44028355520968143],[115,-57,79,0.4471473620577217],[115,-56,64,0.34771320224654545],[115,-56,65,0.35394639700317093],[115,-56,66,0.36028137844569225],[115,-56,67,0.3667138593093202],[115,-56,68,0.37324655533615486],[115,-56,69,0.3798817318202992],[115,-56,70,0.38661625017716295],[115,-56,71,0.3934418685228407],[115,-56,72,0.4003456591961656],[115,-56,73,0.4073104500312987],[115,-56,74,0.4143152893450328],[115,-56,75,0.4213359345378787],[115,-56,76,0.4283453641449638],[115,-56,77,0.4353143131124494],[115,-56,78,0.44221183101761663],[115,-56,79,0.4490058628969648],[115,-55,64,0.3498842750254453],[115,-55,65,0.3561365112585999],[115,-55,66,0.3624846121796904],[115,-55,67,0.36892616468688466],[115,-55,68,0.37546317965119286],[115,-55,69,0.38209557304951],[115,-55,70,0.38881849788200484],[115,-55,71,0.3956226381785534],[115,-55,72,0.4024945677493341],[115,-55,73,0.40941713266185903],[115,-55,74,0.416369857464715],[115,-55,75,0.42332937511800883],[115,-55,76,0.4302698805317896],[115,-55,77,0.4371636075571306],[115,-55,78,0.44398132922020583],[115,-55,79,0.450692880938504],[115,-54,64,0.3520136395201218],[115,-54,65,0.35827434543368114],[115,-54,66,0.3646246273698137],[115,-54,67,0.37106366067618385],[115,-54,68,0.37759266509735606],[115,-54,69,0.38420931946784814],[115,-54,70,0.39090722176607273],[115,-54,71,0.39767616356242363],[115,-54,72,0.40450242114661084],[115,-54,73,0.41136907090698527],[115,-54,74,0.4182563290561213],[115,-54,75,0.42514191574086635],[115,-54,76,0.43200144351990194],[115,-54,77,0.4388088301381727],[115,-54,78,0.4455367354754369],[115,-54,79,0.4521570224965861],[115,-53,64,0.35405512898535946],[115,-53,65,0.36031184847393377],[115,-53,66,0.36665173095595827],[115,-53,67,0.3730751905100906],[115,-53,68,0.3795825691490009],[115,-53,69,0.38616948433096404],[115,-53,70,0.3928281970239602],[115,-53,71,0.39954784909589675],[115,-53,72,0.4063146752695832],[115,-53,73,0.41311224077361125],[115,-53,74,0.41992170488288066],[115,-53,75,0.42672211048950504],[115,-53,76,0.433490699791907],[115,-53,77,0.44020325613765005],[115,-53,78,0.4468344720041072],[115,-53,79,0.4533583430513304],[115,-52,64,0.35596943514690355],[115,-52,65,0.36220833940921965],[115,-52,66,0.3685241043301109],[115,-52,67,0.37491798560027734],[115,-52,68,0.38138936258706785],[115,-52,69,0.38793201743661593],[115,-52,70,0.3945371412691956],[115,-52,71,0.40119351366172346],[115,-52,72,0.40788762197616873],[115,-52,73,0.4146038090443852],[115,-52,74,0.4213244495330108],[115,-52,75,0.4280301552604853],[115,-52,76,0.4347000096857099],[115,-52,77,0.44131183173505795],[115,-52,78,0.44784246908149794],[115,-52,79,0.4542681209374601],[115,-51,64,0.3577245537689412],[115,-51,65,0.36393090279316265],[115,-51,66,0.3702081443366305],[115,-51,67,0.37655794760089767],[115,-51,68,0.38297864859083575],[115,-51,69,0.3894624584834972],[115,-51,70,0.39599980099454346],[115,-51,71,0.4025794108050176],[115,-51,72,0.40918834560162365],[115,-51,73,0.4158120305852861],[115,-51,74,0.4224343359346902],[115,-51,75,0.42903768765924805],[115,-51,76,0.43560321222154974],[115,-51,77,0.4421109152535409],[115,-51,78,0.4485398946336394],[115,-51,79,0.4548685881347468],[115,-50,64,0.3592963577690965],[115,-50,65,0.36545491152865733],[115,-50,66,0.37167893121903933],[115,-50,67,0.37797005650145443],[115,-50,68,0.38432550635885754],[115,-50,69,0.3907362128471546],[115,-50,70,0.3971921577108208],[115,-50,71,0.40368236524675566],[115,-50,72,0.4101947917905041],[115,-50,73,0.4167162534120736],[115,-50,74,0.4232323925051047],[115,-50,75,0.42972768389777083],[115,-50,76,0.4361854810549296],[115,-50,77,0.44258810287940314],[115,-50,78,0.4489169615562143],[115,-50,79,0.45515273181813976],[115,-49,64,0.35926480534998245],[115,-49,65,0.3658754301858618],[115,-49,66,0.37259143177429577],[115,-49,67,0.379136495005261],[115,-49,68,0.38541330309367894],[115,-49,69,0.39173809577242097],[115,-49,70,0.39810073642165966],[115,-49,71,0.4044908634184182],[115,-49,72,0.41089764260659223],[115,-49,73,0.41730956539048186],[115,-49,74,0.42371429336383803],[115,-49,75,0.43009855032530325],[115,-49,76,0.43644806246495116],[115,-49,77,0.44274754743620104],[115,-49,78,0.44898075295319606],[115,-49,79,0.45513054547688003],[115,-48,64,0.3588800614220284],[115,-48,65,0.3655362771628035],[115,-48,66,0.37230522180495396],[115,-48,67,0.37916897560997803],[115,-48,68,0.386113151412111],[115,-48,69,0.3924589332333307],[115,-48,70,0.3987212908570871],[115,-48,71,0.4050058531699966],[115,-48,72,0.4113032168085638],[115,-48,73,0.4176037369350339],[115,-48,74,0.42389724269492035],[115,-48,75,0.4301728093113068],[115,-48,76,0.43641858783064724],[115,-48,77,0.44262169345298924],[115,-48,78,0.44876815329256475],[115,-48,79,0.45484291432376694],[115,-47,64,0.35859360075544444],[115,-47,65,0.36529357808139495],[115,-47,66,0.3721119858637131],[115,-47,67,0.3790324615654743],[115,-47,68,0.3860422039487989],[115,-47,69,0.39289581459307266],[115,-47,70,0.39905588145883714],[115,-47,71,0.40523455337944736],[115,-47,72,0.41142398061087426],[115,-47,73,0.41761646750923276],[115,-47,74,0.4238040557787256],[115,-47,75,0.4299781745705136],[115,-47,76,0.43612935868082725],[115,-47,77,0.44224703600138826],[115,-47,78,0.44831938527338794],[115,-47,79,0.45433326508922794],[115,-46,64,0.3584142821380061],[115,-46,65,0.36515346240817],[115,-46,66,0.37201482242752076],[115,-46,67,0.3789839722960636],[115,-46,68,0.3860498399980282],[115,-46,69,0.3930520398315482],[115,-46,70,0.39911193820963786],[115,-46,71,0.4051886177938872],[115,-46,72,0.41127581669507673],[115,-46,73,0.41736778293611926],[115,-46,74,0.4234587261359152],[115,-46,75,0.4295423468221222],[115,-46,76,0.43561144484871195],[115,-46,77,0.44165760828396977],[115,-46,78,0.4476709840164611],[115,-46,79,0.45364013120194613],[115,-45,64,0.3583431552235638],[115,-45,65,0.3651145645136825],[115,-45,66,0.37200975917936346],[115,-45,67,0.37901670629108064],[115,-45,68,0.3861262185832994],[115,-45,69,0.3929364760737113],[115,-45,70,0.3989016736698134],[115,-45,71,0.40488361494053543],[115,-45,72,0.41087758115644246],[115,-45,73,0.416879679109281],[115,-45,74,0.422886165086906],[115,-45,75,0.4288928574429346],[115,-45,76,0.4348946394505514],[115,-45,77,0.4408850540037192],[115,-45,78,0.4468559915937176],[115,-45,79,0.4527974728461255],[115,-44,64,0.35837424028057047],[115,-44,65,0.36516879728157353],[115,-44,66,0.37208651078546],[115,-44,67,0.37911804941807864],[115,-44,68,0.38625627300888804],[115,-44,69,0.3925629085774063],[115,-44,70,0.39844148833081866],[115,-44,71,0.40433849792516274],[115,-44,72,0.410250647644362],[115,-44,73,0.41617574996695267],[115,-44,74,0.4221119224380671],[115,-44,75,0.4280568899396861],[115,-44,76,0.43400738824171603],[115,-44,77,0.4399586705738539],[115,-44,78,0.44590411880537356],[115,-44,79,0.45183496065871614],[115,-43,64,0.35849530775421873],[115,-43,65,0.3653021263867782],[115,-43,66,0.3722292382423631],[115,-43,67,0.37927031033105196],[115,-43,68,0.38617351039587555],[115,-43,69,0.39194938439697863],[115,-43,70,0.39775136666003147],[115,-43,71,0.40357506267495563],[115,-43,72,0.40941843745980516],[115,-43,73,0.41528079872132756],[115,-43,74,0.421161887536286],[115,-43,75,0.4270610787501758],[115,-43,76,0.4329766931436427],[115,-43,77,0.43890542325797405],[115,-43,78,0.4448418746009426],[115,-43,79,0.45077822377498306],[115,-42,64,0.35868865992023],[115,-42,65,0.3654953474862111],[115,-42,66,0.37241731197612593],[115,-42,67,0.37945146066336577],[115,-42,68,0.3854109314392791],[115,-42,69,0.3911175468659601],[115,-42,70,0.3968542621373293],[115,-42,71,0.4026173931082358],[115,-42,72,0.40840593429818317],[115,-42,73,0.4142204312600746],[115,-42,74,0.4200619698585538],[115,-42,75,0.42593128480829284],[115,-42,76,0.4318279896613681],[115,-42,77,0.4377499302581646],[115,-42,78,0.4436926634696372],[115,-42,79,0.4496490628623558],[115,-41,64,0.35893191696723337],[115,-41,65,0.36572486862619713],[115,-41,66,0.37262608093790633],[115,-41,67,0.3788389803813775],[115,-41,68,0.3844439606222185],[115,-41,69,0.3900919589768418],[115,-41,70,0.39577546951744597],[115,-41,71,0.4014912916457733],[115,-41,72,0.4072391822572101],[115,-41,73,0.41302063056744986],[115,-41,74,0.41883775823297903],[115,-41,75,0.4246923472374531],[115,-41,76,0.4305849978407993],[115,-41,77,0.4365144186984437],[115,-41,78,0.44247685105619416],[115,-41,79,0.4484656287142088],[115,-40,64,0.3591988098944021],[115,-40,65,0.3659635002227047],[115,-40,66,0.37226114362962887],[115,-40,67,0.37774826684111507],[115,-40,68,0.38329896844151073],[115,-40,69,0.3888994136777003],[115,-40,70,0.39454198249211825],[115,-40,71,0.40022369341669484],[115,-40,72,0.4059447656659284],[115,-40,73,0.41170731094736146],[115,-40,74,0.41751415772117867],[115,-40,75,0.42336781046928657],[115,-40,76,0.4292695463462333],[115,-40,77,0.4352186513816671],[115,-40,78,0.4412117981885869],[115,-40,79,0.4472425669057128],[115,-39,64,0.3594599826518943],[115,-39,65,0.3657252423055913],[115,-39,66,0.3710640241118185],[115,-39,67,0.37649803408861693],[115,-39,68,0.38200430154742265],[115,-39,69,0.3875682290558467],[115,-39,70,0.39318183487428154],[115,-39,71,0.39884206245798637],[115,-39,72,0.4045492692347674],[115,-39,73,0.4103058507721772],[115,-39,74,0.4161150031312366],[115,-39,75,0.42197962602159117],[115,-39,76,0.42790136917395555],[115,-39,77,0.43387982413169585],[115,-39,78,0.4399118634364683],[115,-39,79,0.44599112894532605],[115,-38,64,0.3592989574310318],[115,-38,65,0.36444691056287304],[115,-38,66,0.3697286389868706],[115,-38,67,0.37511803723184045],[115,-38,68,0.3805895246797216],[115,-38,69,0.3861275263375327],[115,-38,70,0.3917234233828144],[115,-38,71,0.397373768160027],[115,-38,72,0.4030787169770005],[115,-38,73,0.4088406024285691],[115,-38,74,0.41466264807491043],[115,-38,75,0.42054782811112035],[115,-38,76,0.42649787445647697],[115,-38,77,0.4325124334687485],[115,-38,78,0.4385883742529101],[115,-38,79,0.4447192502871263],[115,-37,64,0.3579723629632179],[115,-37,65,0.3630539289179268],[115,-37,66,0.36828583707965595],[115,-37,67,0.37363882914750574],[115,-37,68,0.37908464425386074],[115,-37,69,0.3846064886005056],[115,-37,70,0.39019481007100326],[115,-37,71,0.3958454401718996],[115,-37,72,0.40155798830972167],[115,-37,73,0.40733437808570727],[115,-37,74,0.4131775284329819],[115,-37,75,0.4190901822231572],[115,-37,76,0.4250738847545739],[115,-37,77,0.4311281143047818],[115,-37,78,0.43724956668747744],[115,-37,79,0.4434315955014548],[115,-36,64,0.3565561280439914],[115,-36,65,0.3615777355557013],[115,-36,66,0.3667667499123928],[115,-36,67,0.37209093723917636],[115,-36,68,0.3775193113526532],[115,-36,69,0.3830335980740038],[115,-36,70,0.38862300241617836],[115,-36,71,0.3942822999506298],[115,-36,72,0.40001020970865975],[115,-36,73,0.40580790987288934],[115,-36,74,0.4116776990498063],[115,-36,75,0.4176218057122626],[115,-36,76,0.4236413481819901],[115,-36,77,0.4297354472887789],[115,-36,78,0.43590049359714483],[115,-36,79,0.4421295708354763],[115,-35,64,0.3550815848198828],[115,-35,65,0.36004946174125213],[115,-35,66,0.36520192795056045],[115,-35,67,0.37050401794801974],[115,-35,68,0.37592200187008107],[115,-35,69,0.3814358498885855],[115,-35,70,0.38703320907179073],[115,-35,71,0.3927074671178799],[115,-35,72,0.3984561202657031],[115,-35,73,0.4042792830230713],[115,-35,74,0.4101783424420523],[115,-35,75,0.4161547594669124],[115,-35,76,0.42220901966025987],[115,-35,77,0.4283397353786611],[115,-35,78,0.43454290122274736],[115,-35,79,0.4408113043309526],[115,-34,64,0.3535791237833619],[115,-34,65,0.3584990341824875],[115,-34,66,0.36362045267585064],[115,-34,67,0.3689059866747262],[115,-34,68,0.37431917155592564],[115,-34,69,0.37983794013635946],[115,-34,70,0.3854480692769229],[115,-34,71,0.39114123877636703],[115,-34,72,0.3969134094812617],[115,-34,73,0.4027633405160995],[115,-34,74,0.40869124827769543],[115,-34,75,0.41469760963524327],[115,-34,76,0.420782111558888],[115,-34,77,0.4269427491675128],[115,-34,78,0.43317507394282256],[115,-34,79,0.439471593604],[115,-33,64,0.35207727134387207],[115,-33,65,0.35695425119655183],[115,-33,66,0.3620490220951219],[115,-33,67,0.3673221207886588],[115,-33,68,0.3727343837239899],[115,-33,69,0.37826142611205965],[115,-33,70,0.3838868539232313],[115,-33,71,0.3896003399377503],[115,-33,72,0.39539602561695664],[115,-33,73,0.40127105774217714],[115,-33,74,0.40722426236096343],[115,-33,75,0.4132549583813293],[115,-33,76,0.419361912940598],[115,-33,77,0.4255424404483979],[115,-33,78,0.4317916469653633],[115,-33,79,0.43810182133240283],[115,-32,64,0.3506017393962016],[115,-32,65,0.35543983027923576],[115,-32,66,0.36051100732717956],[115,-32,67,0.3657741334301177],[115,-32,68,0.3711874074126772],[115,-32,69,0.37672385662682084],[115,-32,70,0.3823646362953816],[115,-32,71,0.3880971432237326],[115,-32,72,0.3939134529373726],[115,-32,73,0.3998088857019517],[115,-32,74,0.4057807038468526],[115,-32,75,0.4118269426209199],[115,-32,76,0.41794537660213243],[115,-32,77,0.4241326234638389],[115,-32,78,0.4303833866706915],[115,-32,79,0.4366898384396614],[115,-31,64,0.34917444452221624],[115,-31,65,0.3539764247250077],[115,-31,66,0.35902547795488066],[115,-31,67,0.36427921585400846],[115,-31,68,0.36969328382500416],[115,-31,69,0.3752378703198826],[115,-31,70,0.38089143052862023],[115,-31,71,0.3866388560230676],[115,-31,72,0.3924699561831311],[115,-31,73,0.39837806126498915],[115,-31,74,0.4043587494054218],[115,-31,75,0.41040869967283455],[115,-31,76,0.4165246730785702],[115,-31,77,0.4227026232534141],[115,-31,78,0.42893693827577195],[115,-31,79,0.4352198149117284],[115,-30,64,0.3478124945263859],[115,-30,65,0.3525796070077232],[115,-30,66,0.3576061938898952],[115,-30,67,0.36284904611959984],[115,-30,68,0.36826135892718254],[115,-30,69,0.3738102599402187],[115,-30,70,0.3794712958676608],[115,-30,71,0.38522667332054716],[115,-30,72,0.39106379064288355],[115,-30,73,0.39697388302486647],[115,-30,74,0.40295078306291987],[115,-30,75,0.40898979875877634],[115,-30,76,0.415086710764892],[115,-30,77,0.42123689048749874],[115,-30,78,0.42743454045340057],[115,-30,79,0.43367205813395154],[115,-29,64,0.346527140084016],[115,-29,65,0.3512588167086444],[115,-29,66,0.35626056157131164],[115,-29,67,0.3614887620012709],[115,-29,68,0.3668942801504876],[115,-29,69,0.37244100063003815],[115,-29,70,0.3781014048643374],[115,-29,71,0.3838548944596066],[115,-29,72,0.3896863762286833],[115,-29,73,0.3955849513163391],[115,-29,74,0.4015427104635304],[115,-29,75,0.40755363728983324],[115,-29,76,0.41361262130218723],[115,-29,77,0.4197145821565003],[115,-29,78,0.4258537065083585],[115,-29,79,0.43202279859156134],[115,-28,64,0.34532268937390453],[115,-28,65,0.3500162708693839],[115,-28,66,0.3549885524074331],[115,-28,67,0.3601958960794597],[115,-28,68,0.36558695522055773],[115,-28,69,0.37112224031551677],[115,-28,70,0.3767710737177516],[115,-28,71,0.38251000215819236],[115,-28,72,0.3883214340078368],[115,-28,73,0.3941923709982802],[115,-28,74,0.40011323632241536],[115,-28,75,0.40607680089262777],[115,-28,76,0.4120772093776578],[115,-28,77,0.4181091074732187],[115,-28,78,0.42416687168701356],[115,-28,79,0.43024394273731004],[115,-27,64,0.3441953836762145],[115,-27,65,0.34884583475476627],[115,-27,66,0.3537815814746177],[115,-27,67,0.35895927107153847],[115,-27,68,0.36432547123365583],[115,-27,69,0.3698372503991997],[115,-27,70,0.3754607530421788],[115,-27,71,0.3811697021703028],[115,-27,72,0.38694408370712213],[115,-27,73,0.3927689156577461],[115,-27,74,0.3986331038801979],[115,-27,75,0.4045283861543931],[115,-27,76,0.4104483660999486],[115,-27,77,0.41638763834371445],[115,-27,78,0.42234100617950804],[115,-27,79,0.4283027927971293],[115,-26,64,0.3431322320401281],[115,-26,65,0.3477318511327375],[115,-26,66,0.35262134460616484],[115,-26,67,0.35775785357728174],[115,-26,68,0.3630859722089464],[115,-26,69,0.36855933505133387],[115,-26,70,0.37414097744279395],[115,-26,71,0.3798019220710529],[115,-26,72,0.38551990078003645],[115,-26,73,0.3912781519533752],[115,-26,74,0.3970642952187893],[115,-26,75,0.4028692851018784],[115,-26,76,0.4086864451318914],[115,-26,77,0.41451058376682937],[115,-26,78,0.4203371933620527],[115,-26,79,0.4261617332563214],[115,-25,64,0.34210970745093333],[115,-25,65,0.34664788496003346],[115,-25,66,0.3514786212351636],[115,-25,67,0.35655962273015096],[115,-25,68,0.3618336009750185],[115,-25,69,0.36725085449472317],[115,-25,70,0.3727714783682171],[115,-25,71,0.3783640212195952],[115,-25,72,0.38400422989216276],[115,-25,73,0.38967386152135464],[115,-25,74,0.395359564700936],[115,-25,75,0.401051831334182],[115,-25,76,0.4067440206489753],[115,-25,77,0.4124314567338593],[115,-25,78,0.4181106008222042],[115,-25,79,0.4237782994145208],[115,-24,64,0.3410900307761569],[115,-24,65,0.3455555357210653],[115,-24,66,0.3503144400144328],[115,-24,67,0.3553250336140544],[115,-24,68,0.36052827596728004],[115,-24,69,0.3658713259593508],[115,-24,70,0.37131158964208527],[115,-24,71,0.3768154329527038],[115,-24,72,0.382126504937095],[115,-24,73,0.38746999376023833],[115,-24,74,0.3929361966117886],[115,-24,75,0.39850944959162676],[115,-24,76,0.4041694872655373],[115,-24,77,0.40989249879895656],[115,-24,78,0.41563149363629687],[115,-24,79,0.4211256661128233],[115,-23,64,0.3400286136537747],[115,-23,65,0.3444130225266624],[115,-23,66,0.34908971986228005],[115,-23,67,0.35395178948297434],[115,-23,68,0.3585604534409932],[115,-23,69,0.3632690855038739],[115,-23,70,0.36810594601000335],[115,-23,71,0.3730878980921933],[115,-23,72,0.37822178818569757],[115,-23,73,0.3835057705571527],[115,-23,74,0.3889305741929236],[115,-23,75,0.39448071046697875],[115,-23,76,0.4001356200994324],[115,-23,77,0.40587075801701716],[115,-23,78,0.41165861483563093],[115,-23,79,0.41746967380153444],[115,-22,64,0.3372229996875508],[115,-22,65,0.3416395842189293],[115,-22,66,0.346042958005194],[115,-22,67,0.3504635335877301],[115,-22,68,0.35495087883926035],[115,-22,69,0.35954884389213393],[115,-22,70,0.3642880849702008],[115,-22,71,0.36918738916111526],[115,-22,72,0.3742550480606005],[115,-22,73,0.37949018206084756],[115,-22,74,0.38488401362770697],[115,-22,75,0.3904210879824711],[115,-22,76,0.3960804396845271],[115,-22,77,0.40183670370084146],[115,-22,78,0.4076611696469246],[115,-22,79,0.41352277799052],[115,-21,64,0.33405177267658986],[115,-21,65,0.33832714494550326],[115,-21,66,0.3425980423686068],[115,-21,67,0.3468941116194134],[115,-21,68,0.35126593625845476],[115,-21,69,0.35575973927634674],[115,-21,70,0.36040822025772506],[115,-21,71,0.3652318174578594],[115,-21,72,0.37024006420955546],[115,-21,73,0.375432903210036],[115,-21,74,0.38080195704476366],[115,-21,75,0.38633175336464326],[115,-21,76,0.39200090320181424],[115,-21,77,0.3977832309872902],[115,-21,78,0.40364885492099756],[115,-21,79,0.4095652164403237],[115,-20,64,0.3308262293671029],[115,-20,65,0.3349593161328589],[115,-20,66,0.33909832243291727],[115,-20,67,0.34327185060590754],[115,-20,68,0.34753097646281444],[115,-20,69,0.3519237999097828],[115,-20,70,0.3564846981676425],[115,-20,71,0.3612355083652164],[115,-20,72,0.3661868493935438],[115,-20,73,0.37133940999013937],[115,-20,74,0.37668520143688367],[115,-20,75,0.38220877330084696],[115,-20,76,0.38788839070220854],[115,-20,77,0.39369717165761614],[115,-20,78,0.39960418312097273],[115,-20,79,0.4055754944258785],[115,-19,64,0.32758187308159187],[115,-19,65,0.33156922331731603],[115,-19,66,0.3355742448438434],[115,-19,67,0.3396241984487543],[115,-19,68,0.3437700866366068],[115,-19,69,0.3480613559112357],[115,-19,70,0.3525336977044876],[115,-19,71,0.3572101284357863],[115,-19,72,0.3621022530034507],[115,-19,73,0.3672115044483922],[115,-19,74,0.3725303582220428],[115,-19,75,0.378043519519155],[115,-19,76,0.38372908217387813],[115,-19,77,0.38955965766453843],[115,-19,78,0.3955034728292292],[115,-19,79,0.4015254349599035],[115,-18,64,0.3243512614220861],[115,-18,65,0.32818667027539206],[115,-18,66,0.3320524432693068],[115,-18,67,0.3359741985627011],[115,-18,68,0.3400022816142093],[115,-18,69,0.3441869427767371],[115,-18,70,0.34856484510225566],[115,-18,71,0.3531600128725342],[115,-18,72,0.3579850067233784],[115,-18,73,0.3630420869457658],[115,-18,74,0.36832436347212444],[115,-18,75,0.373816931063733],[115,-18,76,0.37949798823160497],[115,-18,77,0.38533993844875514],[115,-18,78,0.3913104722470482],[115,-18,79,0.39737362883635147],[115,-17,64,0.3211435879089815],[115,-17,65,0.32481839351480174],[115,-17,66,0.32853687751482186],[115,-17,67,0.33232273124928324],[115,-17,68,0.33622505949309495],[115,-17,69,0.340294368363926],[115,-17,70,0.34456796574690585],[115,-17,71,0.349070745606752],[115,-17,72,0.3538162406840243],[115,-17,73,0.35880767775907113],[115,-17,74,0.3640390341001796],[115,-17,75,0.3694960936941393],[115,-17,76,0.3751575018473673],[115,-17,77,0.38099581674463245],[115,-17,78,0.38697855656113483],[115,-17,79,0.3930692407419442],[115,-16,64,0.31790586260522835],[115,-16,65,0.32141253559304234],[115,-16,66,0.324977214086156],[115,-16,67,0.3286214323621343],[115,-16,68,0.3323924674689979],[115,-16,69,0.33634048236043484],[115,-16,70,0.34050303557324363],[115,-16,71,0.34490567335465433],[115,-16,72,0.34956282969712477],[115,-16,73,0.3544787454329769],[115,-16,74,0.3596484051401466],[115,-16,75,0.36505849056139217],[115,-16,76,0.3706883491981191],[115,-16,77,0.3765109767074838],[115,-16,78,0.38249401170884123],[115,-16,79,0.38860074159285063],[115,-15,64,0.3145816346073731],[115,-15,65,0.3179145391985774],[115,-15,66,0.3213211806891682],[115,-15,67,0.3248207616818162],[115,-15,68,0.3284581480150114],[115,-15,69,0.3322825133390909],[115,-15,70,0.3363312016249528],[115,-15,71,0.3406301056024548],[115,-15,72,0.34519438939694735],[115,-15,73,0.3500292483685333],[115,-15,74,0.3551307050599416],[115,-15,75,0.36048644007546804],[115,-15,76,0.3660766566371839],[115,-15,77,0.37187497749681886],[115,-15,78,0.3778493728238667],[115,-15,79,0.3839631176428445],[115,-14,64,0.3124553850263171],[115,-14,65,0.31428244283520107],[115,-14,66,0.31752870296084873],[115,-14,67,0.32088277348642985],[115,-14,68,0.3243865413259501],[115,-14,69,0.3280875184464553],[115,-14,70,0.3320223205524568],[115,-14,71,0.33621681637565437],[115,-14,72,0.3406866533658857],[115,-14,73,0.34543783991953675],[115,-14,74,0.3504673832201395],[115,-14,75,0.3557639816448268],[115,-14,76,0.36130877057589567],[115,-14,77,0.3670761203505171],[115,-14,78,0.3730344849854658],[115,-14,79,0.37914730022821563],[115,-13,64,0.31023705127475426],[115,-13,65,0.31048488468679214],[115,-13,66,0.3135699577890113],[115,-13,67,0.31677925122683154],[115,-13,68,0.3201511334212498],[115,-13,69,0.32373077709353876],[115,-13,70,0.3275535293747914],[115,-13,71,0.3316448221421113],[115,-13,72,0.3360204861538401],[115,-13,73,0.3406871417881316],[115,-13,74,0.34564266563791557],[115,-13,75,0.35087673205432884],[115,-13,76,0.35637142857583537],[115,-13,77,0.3621019440334032],[115,-13,78,0.36803732798542094],[115,-13,79,0.37414132001047734],[115,-12,64,0.3077584464401009],[115,-12,65,0.3064992719925108],[115,-12,66,0.3094235878646038],[115,-12,67,0.31248999722070014],[115,-12,68,0.31573285081491254],[115,-12,69,0.3191943201412068],[115,-12,70,0.3229079378029111],[115,-12,71,0.3268982643763353],[115,-12,72,0.33118098110690325],[115,-12,73,0.33576307954958784],[115,-12,74,0.34064314759048625],[115,-12,75,0.345811751084065],[115,-12,76,0.3512519101439327],[115,-12,77,0.35693966893613144],[115,-12,78,0.3628447576454449],[115,-12,79,0.3689313451183458],[115,-11,64,0.30501095689622376],[115,-11,65,0.3031507790058615],[115,-11,66,0.305075077602723],[115,-11,67,0.30800127743250716],[115,-11,68,0.3111186017703027],[115,-11,69,0.31446559456306256],[115,-11,70,0.3180734420831827],[115,-11,71,0.3219653967294216],[115,-11,72,0.32615664294535374],[115,-11,73,0.3306542802530741],[115,-11,74,0.33545742302488296],[115,-11,75,0.34055741637148396],[115,-11,76,0.3459381672862158],[115,-11,77,0.35157658995351593],[115,-11,78,0.3574431639090656],[115,-11,79,0.3635026035305039],[115,-10,64,0.30199116966122996],[115,-10,65,0.30003992199709867],[115,-10,66,0.30051529116355064],[115,-10,67,0.3033044219791621],[115,-10,68,0.30629996469850784],[115,-10,69,0.30953626406758333],[115,-10,70,0.313041660766428],[115,-10,71,0.31683767713277394],[115,-10,72,0.3209386553415604],[115,-10,73,0.32535153227296504],[115,-10,74,0.3300757508767975],[115,-10,75,0.3351033075553251],[115,-10,76,0.3404189348056368],[115,-10,77,0.346000418089273],[115,-10,78,0.35181904563429856],[115,-10,79,0.3578401896252155],[115,-9,64,0.29869956237801276],[115,-9,65,0.29665652023178407],[115,-9,66,0.2957391738645325],[115,-9,67,0.298394582540678],[115,-9,68,0.3012720247689161],[115,-9,69,0.3044011466319431],[115,-9,70,0.3078069932293008],[115,-9,71,0.31150896552596036],[115,-9,72,0.31552023404160384],[115,-9,73,0.319847307800168],[115,-9,74,0.3244897585293391],[115,-9,75,0.32944009977351807],[115,-9,76,0.3346838202620939],[115,-9,77,0.3401995705606968],[115,-9,78,0.34595950173006007],[115,-9,79,0.35192975442739605],[115,-8,64,0.29513936633496923],[115,-8,65,0.29300488135425],[115,-8,66,0.29075395483329414],[115,-8,67,0.29326964835956115],[115,-8,68,0.29603236027782703],[115,-8,69,0.2990572903407723],[115,-8,70,0.30236580216985603],[115,-8,71,0.3059748282389617],[115,-8,72,0.3098960663499846],[115,-8,73,0.31413534856538544],[115,-8,74,0.31869218276375944],[115,-8,75,0.3235594666199371],[115,-8,76,0.3287233734507857],[115,-8,77,0.3341634090150438],[115,-8,78,0.33985263801406657],[115,-8,79,0.3457580787127891],[115,-7,64,0.2913156050783772],[115,-7,65,0.2890909775736768],[115,-7,66,0.2867754441043929],[115,-7,67,0.28792932297665147],[115,-7,68,0.29058018076034076],[115,-7,69,0.2935031893293466],[115,-7,70,0.2967157216634524],[115,-7,71,0.300231950372634],[115,-7,72,0.3040618380510621],[115,-7,73,0.30821031557306067],[115,-7,74,0.31267664866597045],[115,-7,75,0.3174539926947602],[115,-7,76,0.32252913519707666],[115,-7,77,0.32788242531878464],[115,-7,78,0.3334878889230393],[115,-7,79,0.33931352778333934],[115,-6,64,0.2872343116083969],[115,-6,65,0.2849216615321179],[115,-6,66,0.2825431577874927],[115,-6,67,0.2823743642710575],[115,-6,68,0.28491561922889486],[115,-6,69,0.28773814199906006],[115,-6,70,0.29085509269565246],[115,-6,71,0.29427765780584847],[115,-6,72,0.2980138490717633],[115,-6,73,0.30206750379436764],[115,-6,74,0.3064374870539979],[115,-6,75,0.3111170959098552],[115,-6,76,0.31609366521250176],[115,-6,77,0.32134837424248996],[115,-6,78,0.32685625297926135],[115,-6,79,0.3325863864103061],[115,-5,64,0.28290192753693816],[115,-5,65,0.28050406087700297],[115,-5,66,0.2780644943785444],[115,-5,67,0.2766059907454865],[115,-5,68,0.2790391812767294],[115,-5,69,0.281761754001915],[115,-5,70,0.28478252838431584],[115,-5,71,0.28810955071269184],[115,-5,72,0.2917487193973269],[115,-5,73,0.2957026229203373],[115,-5,74,0.29996959108336063],[115,-5,75,0.3045429597357217],[115,-5,76,0.30941054870976153],[115,-5,77,0.3145543522411097],[115,-5,78,0.31995044071484924],[115,-5,79,0.3255690721569119],[115,-4,64,0.2783248879148487],[115,-4,65,0.27584515513144864],[115,-4,66,0.2733465921889445],[115,-4,67,0.27082431566787357],[115,-4,68,0.2729513540910671],[115,-4,69,0.2755735887752021],[115,-4,70,0.27849661135896975],[115,-4,71,0.28172525069405935],[115,-4,72,0.2852631869315971],[115,-4,73,0.28911164540875267],[115,-4,74,0.2932683127670147],[115,-4,75,0.29772647559803317],[115,-4,76,0.30247438143323074],[115,-4,77,0.3074948214211751],[115,-4,78,0.31276493357670726],[115,-4,79,0.3182562250413165],[115,-3,64,0.2735093957038496],[115,-3,65,0.2709515387293797],[115,-3,66,0.26839609352640337],[115,-3,67,0.2658360794156713],[115,-3,68,0.2666523786749126],[115,-3,69,0.26917296864384327],[115,-3,70,0.2719957259784381],[115,-3,71,0.2751222638120033],[115,-3,72,0.27855399914323725],[115,-3,73,0.2822907231689655],[115,-3,74,0.2863294002127597],[115,-3,75,0.2906631956492136],[115,-3,76,0.2952807327258199],[115,-3,77,0.30016557769400654],[115,-3,78,0.3052959521827926],[115,-3,79,0.310644671286067],[115,-2,64,0.2684613900692595],[115,-2,65,0.26582937429059117],[115,-2,66,0.26321909353829465],[115,-2,67,0.26062159068766605],[115,-2,68,0.2601421887770136],[115,-2,69,0.26255892969526246],[115,-2,70,0.265278028237258],[115,-2,71,0.2682979619624495],[115,-2,72,0.2716179004598327],[115,-2,73,0.27523617431851877],[115,-2,74,0.27914897643579295],[115,-2,75,0.28334929615642723],[115,-2,76,0.28782608622647915],[115,-2,77,0.29256366204162665],[115,-2,78,0.29754133217920714],[115,-2,79,0.30273325872791607],[115,-1,64,0.2631867128013627],[115,-1,65,0.26048454035192636],[115,-1,66,0.2578212777915659],[115,-1,67,0.25518611229724536],[115,-1,68,0.2534205201687063],[115,-1,69,0.25573033376237386],[115,-1,70,0.2583415563301144],[115,-1,71,0.26124968512521607],[115,-1,72,0.26445171745654705],[115,-1,73,0.2679445415083107],[115,-1,74,0.27172356064190933],[115,-1,75,0.27578155175699354],[115,-1,76,0.28010775777104563],[115,-1,77,0.2846872137663759],[115,-1,78,0.2895003058551309],[115,-1,79,0.29452256133022503],[115,0,64,0.257691477228889],[115,0,65,0.25492297783752366],[115,0,66,0.2522082527373545],[115,0,67,0.2495347509537069],[115,0,68,0.24688080318780434],[115,0,69,0.2486861409249469],[115,0,70,0.2511844849124664],[115,0,71,0.25397496709128053],[115,0,72,0.257052543936948],[115,0,73,0.26041272335178867],[115,0,74,0.2640501329012032],[115,0,75,0.2679573208398951],[115,0,76,0.2721237900576858],[115,0,77,0.2765352645622404],[115,0,78,0.2811731876156639],[115,0,79,0.2860144501569343],[115,1,64,0.2519826457100391],[115,1,65,0.24915124038483252],[115,1,66,0.24638607337235596],[115,1,67,0.2436729664673132],[115,1,68,0.24098675461453287],[115,1,69,0.24142584520099641],[115,1,70,0.24380552536310843],[115,1,71,0.2464718866822678],[115,1,72,0.24941802770694566],[115,1,73,0.25263818062768184],[115,1,74,0.25612624384119104],[115,1,75,0.25987454374163954],[115,1,76,0.2638728259329605],[115,1,77,0.26810747554686654],[115,1,78,0.27256096585380013],[115,1,79,0.2772115338716332],[115,2,64,0.24606882081783488],[115,2,65,0.24317725154504152],[115,2,66,0.2403619695344451],[115,2,67,0.23760726979016153],[115,2,68,0.2348850226317126],[115,2,69,0.23395007252322875],[115,2,70,0.2362044709030769],[115,2,71,0.23873954327254487],[115,2,72,0.24154675798833153],[115,2,73,0.24461921651427154],[115,2,74,0.24795016910724846],[115,2,75,0.2515317541796918],[115,2,76,0.25535396159053636],[115,2,77,0.25940381961502273],[115,2,78,0.2636648048536753],[115,2,79,0.2681164738652819],[115,3,64,0.23996123485138],[115,3,65,0.23701126382867738],[115,3,66,0.23414527348178354],[115,3,67,0.23134611775285135],[115,3,68,0.22858322387938973],[115,3,69,0.22626135312948736],[115,3,70,0.22838289812466303],[115,3,71,0.23077866589339197],[115,3,72,0.23343875879378978],[115,3,73,0.23635533052672258],[115,3,74,0.23952110090275763],[115,3,75,0.24292808716114747],[115,3,76,0.24656655214523712],[115,3,77,0.25042416914859805],[115,3,78,0.25448540276715503],[115,3,79,0.25873110462751964],[115,4,64,0.23367496872044988],[115,4,65,0.2306670414172626],[115,4,66,0.22774856330745608],[115,4,67,0.22490101361685472],[115,4,68,0.22209185423483113],[115,4,69,0.21929719692415897],[115,4,70,0.22034502728733651],[115,4,71,0.2225923590971571],[115,4,72,0.2250960938597729],[115,4,73,0.2278476558297763],[115,4,74,0.23083939206771525],[115,4,75,0.2340633063555314],[115,4,76,0.23751000184773727],[115,4,77,0.2411678323352275],[115,4,78,0.24502226153311216],[115,4,79,0.24905542935178876],[115,5,64,0.22723039976434084],[115,5,65,0.2241632659182846],[115,5,66,0.22118902151199113],[115,5,67,0.2182878128121063],[115,5,68,0.21542553023705974],[115,5,69,0.21257676310180004],[115,5,70,0.21209874078606702],[115,5,71,0.21418698475464887],[115,5,72,0.2165235818895899],[115,5,73,0.2190994780490122],[115,5,74,0.2219068499737642],[115,5,75,0.22493784715079593],[115,5,76,0.22818353389790436],[115,5,77,0.2316330316094264],[115,5,78,0.23527286065152087],[115,5,79,0.23908648095741933],[115,6,64,0.22065487868072003],[115,6,65,0.2175251669016623],[115,6,66,0.21449001162207473],[115,6,67,0.21152823750841512],[115,6,68,0.2086044272753431],[115,6,69,0.20569201497070166],[115,6,70,0.2036567635599384],[115,6,71,0.20557318286530094],[115,6,72,0.20772962412049498],[115,6,73,0.21011683614435708],[115,6,74,0.21272707896216017],[115,6,75,0.21555287189832484],[115,6,76,0.2185859337695575],[115,6,77,0.22181631518348416],[115,6,78,0.22523172251071666],[115,6,79,0.22881703267313833],[115,7,64,0.21398386985052903],[115,7,65,0.21078637391273697],[115,7,66,0.2076835684291704],[115,7,67,0.2046529738234717],[115,7,68,0.2016579995174099],[115,7,69,0.19867112617968152],[115,7,70,0.19567472331684388],[115,7,71,0.19677175185413903],[115,7,72,0.19873293014963844],[115,7,73,0.20091612973580342],[115,7,74,0.20331398246426208],[115,7,75,0.20591965398320697],[115,7,76,0.20872577466942113],[115,7,77,0.21172355570561227],[115,7,78,0.21490208995374974],[115,7,79,0.21824783686059884],[115,8,64,0.20725322269614907],[115,8,65,0.20398414079168167],[115,8,66,0.20080834650538237],[115,8,67,0.19770226231366272],[115,8,68,0.19462833780975097],[115,8,69,0.1915582766439157],[115,8,70,0.18847389222783065],[115,8,71,0.1878273313041698],[115,8,72,0.18958044290353956],[115,8,73,0.19154661096192077],[115,8,74,0.19371905314116705],[115,8,75,0.19609178387203596],[115,8,76,0.19865853131054115],[115,8,77,0.20141183327797285],[115,8,78,0.20434231192016175],[115,8,79,0.20743812641600437],[115,9,64,0.2004903381427667],[115,9,65,0.1971481009558885],[115,9,66,0.1938962119910258],[115,9,67,0.190710398140667],[115,9,68,0.18755248478896222],[115,9,69,0.18439359799962216],[115,9,70,0.18121517529901643],[115,9,71,0.178782914887074],[115,9,72,0.1803188657665565],[115,9,73,0.1820588135247084],[115,9,74,0.18399667422408456],[115,9,75,0.18612740649585405],[115,9,76,0.18844591487564075],[115,9,77,0.19094612620439075],[115,9,78,0.19362023891470836],[115,9,79,0.19645814462608105],[115,10,64,0.19371526029819144],[115,10,65,0.19030029144172572],[115,10,66,0.18697127570760544],[115,10,67,0.18370378601861656],[115,10,68,0.18045944984488183],[115,10,69,0.17720903450253586],[115,10,70,0.1739337654258414],[115,10,71,0.17062330273515222],[115,10,72,0.1709861872960569],[115,10,73,0.17249440169442842],[115,10,74,0.17419222415879354],[115,10,75,0.17607555597291366],[115,10,76,0.1781404590031723],[115,10,77,0.1803822171728629],[115,10,78,0.18279456473370956],[115,10,79,0.18536908085039638],[115,11,64,0.18694316113661583],[115,11,65,0.18345764486857355],[115,11,66,0.1800523658886854],[115,11,67,0.17670337075378428],[115,11,68,0.1733725747836791],[115,11,69,0.1700306186212576],[115,11,70,0.1666586621799223],[115,11,71,0.16324640930086307],[115,11,72,0.16161348821019333],[115,11,73,0.16288777579952507],[115,11,74,0.16434345395523875],[115,11,75,0.16597728011433668],[115,11,76,0.1677863693410807],[115,11,77,0.1697672489402367],[115,11,78,0.1719150730753868],[115,11,79,0.17422299699914912],[115,12,64,0.18018708381946777],[115,12,65,0.17663473556448492],[115,12,66,0.17315574851644489],[115,12,67,0.16972730626766444],[115,12,68,0.16631212614092558],[115,12,69,0.16288095884843565],[115,12,70,0.15941502567140287],[115,12,71,0.15590411291347608],[115,12,72,0.15234481587853296],[115,12,73,0.1532678101246418],[115,12,74,0.15448197305175193],[115,12,75,0.15586684864111877],[115,12,76,0.15742043148405574],[115,12,77,0.15914031294306916],[115,12,78,0.1610228918864869],[115,12,79,0.1630627372149874],[115,13,64,0.1734609499772303],[115,13,65,0.1698467849172452],[115,13,66,0.1662981000426283],[115,13,67,0.1627938675427879],[115,13,68,0.15929811816745523],[115,13,69,0.1557819432473502],[115,13,70,0.15222672869089446],[115,13,71,0.1486223449986055],[115,13,72,0.14496545743252792],[115,13,73,0.14365972381810735],[115,13,74,0.14463484338200697],[115,13,75,0.14577304384095666],[115,13,76,0.1470729750339966],[115,13,77,0.148533067574669],[115,13,78,0.15015075119295632],[115,13,79,0.1519218155400238],[115,14,64,0.16678283669404395],[115,14,65,0.1631129316631007],[115,14,66,0.15949973812803467],[115,14,67,0.15592461098272442],[115,14,68,0.15235337176460373],[115,14,69,0.1487576637223267],[115,14,70,0.14511911175856873],[115,14,71,0.14142763674740172],[115,14,72,0.13767985557762394],[115,14,73,0.13408708794674434],[115,14,74,0.13482628416668108],[115,14,75,0.13572053552270658],[115,14,76,0.13676889493745428],[115,14,77,0.13797038654743407],[115,14,78,0.1393232440784994],[115,14,79,0.14082428046647755],[115,15,64,0.16018373317643245],[115,15,65,0.15646488171960488],[115,15,66,0.15279305367656076],[115,15,67,0.14915248178211132],[115,15,68,0.14551119843222457],[115,15,69,0.1418415887031236],[115,15,70,0.1381255718109835],[115,15,71,0.13435306926808474],[115,15,72,0.1305205198187197],[115,15,73,0.1266295079082474],[115,15,74,0.12508155144842326],[115,15,75,0.12573311207700036],[115,15,76,0.1265302828754318],[115,15,77,0.1274724571603703],[115,15,78,0.12855847381486374],[115,15,79,0.12978600567140322],[115,16,64,0.15371298991863194],[115,16,65,0.14995212930921684],[115,16,66,0.14622735228650707],[115,16,67,0.14252614731228933],[115,16,68,0.13881913131332185],[115,16,69,0.13507963883573174],[115,16,70,0.1312899768957888],[115,16,71,0.1274400720507032],[115,16,72,0.1235261219073191],[115,16,73,0.11954934471629156],[115,16,74,0.11551482845177703],[115,16,75,0.11583439537573922],[115,16,76,0.116377436886393],[115,16,77,0.11705636437195184],[115,16,78,0.11787050550394938],[115,16,79,0.11881830632089277],[115,17,64,0.1474019064239297],[115,17,65,0.14360595111896154],[115,17,66,0.13983364946683885],[115,17,67,0.13607600661238645],[115,17,68,0.13230655237194947],[115,17,69,0.12849980174340445],[115,17,70,0.12463858782006375],[115,17,71,0.12071290730062009],[115,17,72,0.11671872604111685],[115,17,73,0.11265686562110064],[115,17,74,0.10853197223609054],[115,17,75,0.10603358088810445],[115,17,76,0.10631728720134445],[115,17,77,0.10672699708376651],[115,17,78,0.107262482612997],[115,17,79,0.10792293944553738],[115,18,64,0.1412587924737869],[115,18,65,0.13743457572790443],[115,18,66,0.1336200232930159],[115,18,67,0.12980980413019616],[115,18,68,0.1259806394118275],[115,18,69,0.12210847176052284],[115,18,70,0.11817683353688267],[115,18,71,0.11417590494378782],[115,18,72,0.11010148712169326],[115,18,73,0.10595403790255965],[115,18,74,0.1017377714337367],[115,18,75,0.09745982270632098],[115,18,76,0.09634254640362619],[115,18,77,0.09647639005635048],[115,18,78,0.09672606130636181],[115,18,79,0.09709152285172268],[115,19,64,0.13527266682884798],[115,19,65,0.13142687741165526],[115,19,66,0.12757527487544873],[115,19,67,0.12371623016075325],[115,19,68,0.11982988056407638],[115,19,69,0.11589385216006418],[115,19,70,0.11189257502098324],[115,19,71,0.1078165628987157],[115,19,72,0.10366156359661667],[115,19,73,0.09942775271881349],[115,19,74,0.09511897189681875],[115,19,75,0.09074201246527483],[115,19,76,0.08643364476263149],[115,19,77,0.08628539099878575],[115,19,78,0.08624280347234582],[115,19,79,0.08630665223908107],[115,20,64,0.12847306909431888],[115,20,65,0.1255559123967274],[115,20,66,0.12167243472220096],[115,20,67,0.11776837207993907],[115,20,68,0.11382744598773942],[115,20,69,0.10982922271622603],[115,20,70,0.10575924440652443],[115,20,71,0.10160853435871423],[115,20,72,0.09737293082406531],[115,20,73,0.0930524443386635],[115,20,74,0.08865063957817697],[115,20,75,0.08417404263620315],[115,20,76,0.07963157454825924],[115,20,77,0.07612531586251388],[115,20,78,0.07578557786705364],[115,20,79,0.07554304641367363],[115,21,64,0.11774241628411079],[115,21,65,0.11491673663717016],[115,21,66,0.11200701731863805],[115,21,67,0.10901465335406398],[115,21,68,0.10595931509366212],[115,21,69,0.10286651796564057],[115,21,70,0.09973885784473013],[115,21,71,0.09551450087183858],[115,21,72,0.09119909409724648],[115,21,73,0.08679262455355455],[115,21,74,0.08229849987769514],[115,21,75,0.0777230813504238],[115,21,76,0.07307522293977627],[115,21,77,0.06836581711297758],[115,21,78,0.06531997072732026],[115,21,79,0.0647687222803375],[115,22,64,0.10687239945608489],[115,22,65,0.10394102759375999],[115,22,66,0.10095198868294086],[115,22,67,0.09790362537393163],[115,22,68,0.09481203255182442],[115,22,69,0.09170045366951214],[115,22,70,0.0885880406273738],[115,22,71,0.08548988600086946],[115,22,72,0.08241729908982927],[115,22,73,0.07937809758016547],[115,22,74,0.07602120907925197],[115,22,75,0.07134964151351206],[115,22,76,0.066599507124542],[115,22,77,0.06178188423494186],[115,22,78,0.05690967047081167],[115,22,79,0.053946201415285194],[115,23,64,0.09593864997041938],[115,23,65,0.09290196937552017],[115,23,66,0.08983419428439207],[115,23,67,0.08673092894829444],[115,23,68,0.08360469802801786],[115,23,69,0.08047625400664667],[115,23,70,0.07736312002842202],[115,23,71,0.07427941215248839],[115,23,72,0.07123593413203852],[115,23,73,0.06824030713713816],[115,23,74,0.06529713383769449],[115,23,75,0.06240819618572652],[115,23,76,0.05957268616418371],[115,23,77,0.05524301047372547],[115,23,78,0.05026403323442747],[115,23,79,0.045240745688637035],[115,24,64,0.08502023825580218],[115,24,65,0.08187948098516822],[115,24,66,0.07873398775755013],[115,24,67,0.07557700170522885],[115,24,68,0.07241754110217048],[115,24,69,0.06927367627105346],[115,24,70,0.06616110187337397],[115,24,71,0.06309276225294788],[115,24,72,0.06007877157314964],[115,24,73,0.05712638732076766],[115,24,74,0.05424003673178607],[115,24,75,0.05142139556804161],[115,24,76,0.048669518553504584],[115,24,77,0.04598102066598874],[115,24,78,0.04335030837552929],[115,24,79,0.03850821805640091],[115,25,64,0.07419694368048586],[115,25,65,0.07095422714402955],[115,25,66,0.06773250071354403],[115,25,67,0.06452307488955446],[115,25,68,0.06133158192362958],[115,25,69,0.0581732524651414],[115,25,70,0.055061775107905386],[115,25,71,0.05200874128965474],[115,25,72,0.049023400162390325],[115,25,73,0.04611248401949698],[115,25,74,0.04328010397447277],[115,25,75,0.04052771541348305],[115,25,76,0.03785415257819448],[115,25,77,0.035255731477872594],[115,25,78,0.032726420181956234],[115,25,79,0.030258075407664377],[115,26,64,0.06354670155361462],[115,26,65,0.06020505341282242],[115,26,66,0.05690908253084846],[115,26,67,0.05364863375034539],[115,26,68,0.0504261269359068],[115,26,69,0.04725383413276414],[115,26,70,0.04414328777133351],[115,26,71,0.04110456455188539],[115,26,72,0.038145886936319054],[115,26,73,0.03527331086092691],[115,26,74,0.032490499503451765],[115,26,75,0.02979858272243841],[115,26,76,0.027196101579126337],[115,26,77,0.024679037153607458],[115,26,78,0.02224092267936313],[115,26,79,0.019873037845339128],[115,27,64,0.05314323082393522],[115,27,65,0.04970659915424001],[115,27,66,0.046338913286100486],[115,27,67,0.04302904470128897],[115,27,68,0.03977642328181025],[115,27,69,0.036590285847588805],[115,27,70,0.033479890381301725],[115,27,71,0.03045366079516639],[115,27,72,0.02751864916476591],[115,27,73,0.024680098067875786],[115,27,74,0.021941102997079832],[115,27,75,0.019302374561357433],[115,27,76,0.01676209994635495],[115,27,77,0.014315902867647917],[115,27,78,0.01195690102790425],[115,27,79,0.00967585987946856],[115,28,64,0.043053846294338394],[115,28,65,0.039527092040870584],[115,28,66,0.03609079337099798],[115,28,67,0.03273335260494916],[115,28,68,0.029451475006624952],[115,28,69,0.02625133019789174],[115,28,70,0.023139818429788912],[115,28,71,0.02012360003943858],[115,28,72,0.01720843443884966],[115,28,73,0.014398631104638479],[115,28,74,0.011696612668030664],[115,28,75,0.009102589917576464],[115,28,76,0.006614348248729015],[115,28,77,0.0042271448269123055],[115,28,78,0.0019337154761315273],[115,28,79,-2.7560993422566515E-4],[115,29,64,0.03333745944385175],[115,29,65,0.029726328094736337],[115,29,66,0.026225113631079804],[115,29,67,0.022822251826220434],[115,29,68,0.01951202447292557],[115,29,69,0.016297547403275665],[115,29,70,0.013183316798577923],[115,29,71,0.010174148431916849],[115,29,72,0.007274410906335883],[115,29,73,0.004487380647903348],[115,29,74,0.001814718876758191],[115,29,75,-7.439295355494786E-4],[115,29,76,-0.003191215719839439],[115,29,77,-0.005532245666014368],[115,29,78,-0.007774619255216051],[115,29,79,-0.009928350704524927],[115,30,64,0.02404277223637563],[115,30,65,0.020353841542394578],[115,30,66,0.016792010167285355],[115,30,67,0.01334623501017533],[115,30,68,0.010008702712501462],[115,30,69,0.006779533009451573],[115,30,70,0.0036608092081378916],[115,30,71,6.554529026344151E-4],[115,30,72,-0.0022336300561933897],[115,30,73,-0.005004274316143331],[115,30,74,-0.007655650166245296],[115,30,75,-0.010188729065101793],[115,30,76,-0.012606619881131738],[115,30,77,-0.014914776486581158],[115,30,78,-0.01712107764863649],[115,30,79,-0.019235780445624875],[115,31,64,0.015206668591202933],[115,31,65,0.01144726907578988],[115,31,66,0.007829708255368585],[115,31,67,0.004343923859009662],[115,31,68,9.803527629104808E-4],[115,31,69,-0.0022637825714008396],[115,31,70,-0.00538878386895817],[115,31,71,-0.008393641350180333],[115,31,72,-0.011276956147763993],[115,31,73,-0.014037728186056747],[115,31,74,-0.016676009079857626],[115,31,75,-0.019193419962508992],[115,31,76,-0.02159353449653848],[115,31,77,-0.02388212765149702],[115,31,78,-0.026067291150407956],[115,31,79,-0.028159416785721484],[115,32,64,0.006852808487622543],[115,32,65,0.0030309134171964203],[115,32,66,-6.369398451806724E-4],[115,32,67,-0.004159413494767644],[115,32,68,-0.00754746963826883],[115,32,69,-0.010806648581572556],[115,32,70,-0.013939575076693455],[115,32,71,-0.01694713719249293],[115,32,72,-0.019829458533061197],[115,32,73,-0.02258673285877048],[115,32,74,-0.025219920573312567],[115,32,75,-0.027731306903157386],[115,32,76,-0.030124921949427938],[115,32,77,-0.03240682313362512],[115,32,78,-0.034585240885301065],[115,32,79,-0.03667058872892136],[115,33,64,-0.001009570031537333],[115,33,65,-0.004885488609573872],[115,33,66,-0.008597718108296593],[115,33,67,-0.012153153602517104],[115,33,68,-0.015563813305314433],[115,33,69,-0.01883783808291237],[115,33,70,-0.021980083751197015],[115,33,71,-0.024993292036179445],[115,33,72,-0.02787909512049353],[115,33,73,-0.030638881597208924],[115,33,74,-0.0332745232122355],[115,33,75,-0.0357889621443595],[115,33,76,-0.03818665893021213],[115,33,77,-0.04047390148767566],[115,33,78,-0.042658976022674364],[115,33,79,-0.0441464109747619],[115,34,64,-0.00838663540936221],[115,34,65,-0.012307788004576483],[115,34,66,-0.01605810559566317],[115,34,67,-0.01964241207289165],[115,34,68,-0.023073461789657634],[115,34,69,-0.026361817030277117],[115,34,70,-0.029514448810356936],[115,34,71,-0.03253588048795667],[115,34,72,-0.035429209224454195],[115,34,73,-0.03819698969127121],[115,34,74,-0.04084197933263761],[115,34,75,-0.04336774486199695],[115,34,76,-0.04111318243970627],[115,34,77,-0.03721763258594294],[115,34,78,-0.03339278771283528],[115,34,79,-0.029649791856263295],[115,35,64,-0.015300727861854664],[115,35,65,-0.019258229737251553],[115,35,66,-0.023040125269865135],[115,35,67,-0.026648935679016043],[115,35,68,-0.03009787118284405],[115,35,69,-0.033399733211282985],[115,35,70,-0.036563476257726144],[115,35,71,-0.039595308878920446],[115,35,72,-0.04249971980889289],[115,35,73,-0.0392216295617932],[115,35,74,-0.03499851096835146],[115,35,75,-0.030827328516843347],[115,35,76,-0.0267159017786644],[115,35,77,-0.022672974861270408],[115,35,78,-0.018708438866510458],[115,35,79,-0.014833419784832578],[115,36,64,-0.021790899338892885],[115,36,65,-0.02577603707499603],[115,36,66,-0.029582976816782243],[115,36,67,-0.033211786393878756],[115,36,68,-0.036675909934536725],[115,36,69,-0.0399902197187716],[115,36,70,-0.038402955147033575],[115,36,71,-0.03389242039653135],[115,36,72,-0.02941599247649363],[115,36,73,-0.02498268216124482],[115,36,74,-0.020600678405352187],[115,36,75,-0.01627798459933966],[115,36,76,-0.012022921657095132],[115,36,77,-0.00784449816413806],[115,36,78,-0.0037526481385141324],[115,36,79,2.41662738329808E-4],[115,37,64,-0.027913221871822706],[115,37,65,-0.031917767821351875],[115,37,66,-0.0357434472799973],[115,37,67,-0.03855021051057771],[115,37,68,-0.03383655478788197],[115,37,69,-0.02911709317708729],[115,37,70,-0.02441037575695193],[115,37,71,-0.019731165683222168],[115,37,72,-0.015091466307421987],[115,37,73,-0.01050142048928034],[115,37,74,-0.005970081236203234],[115,37,75,-0.0015060531509279635],[115,37,76,0.0028819954929837016],[115,37,77,0.007184949900749366],[115,37,78,0.011392994668632897],[115,37,79,0.015495487697474946],[115,38,64,-0.03373900925312186],[115,38,65,-0.034563458710386095],[115,38,66,-0.029757362052020817],[115,38,67,-0.02490109931203098],[115,38,68,-0.020015455242374053],[115,38,69,-0.01512582167312372],[115,38,70,-0.010252564661821235],[115,38,71,-0.005411974716574899],[115,38,72,-6.172924684772051E-4],[115,38,73,0.004120389601129844],[115,38,74,0.008791350311038138],[115,38,75,0.013386588401149991],[115,38,76,0.017897296886197532],[115,38,77,0.02231446308414609],[115,38,78,0.026628593952443172],[115,38,79,0.030829566072218907],[115,39,64,-0.02607361483564443],[115,39,65,-0.021145917047083507],[115,39,66,-0.01616852746872395],[115,39,67,-0.011141861619223113],[115,39,68,-0.006086937148620703],[115,39,69,-0.0010312149468830799],[115,39,70,0.0040031650680898215],[115,39,71,0.008998478161510868],[115,39,72,0.013940381812173382],[115,39,73,0.01881700321915212],[115,39,74,0.023618148296775644],[115,39,75,0.02833463283721665],[115,39,76,0.03295773619561302],[115,39,77,0.037478777538235544],[115,39,78,0.041888814390597995],[115,39,79,0.046178462933818436],[115,40,64,-0.012762102327461262],[115,40,65,-0.007656967249580566],[115,40,66,-0.00250659163741611],[115,40,67,0.002691013915003562],[115,40,68,0.007914562032646826],[115,40,69,0.013134414706448818],[115,40,70,0.01832661200692414],[115,40,71,0.023472006239765232],[115,40,72,0.028555214174118205],[115,40,73,0.03356368649390757],[115,40,74,0.03848689557687452],[115,40,75,0.04331564237931344],[115,40,76,0.04804148288553482],[115,40,77,0.05265627427155087],[115,40,78,0.05715184063304484],[115,40,79,0.0615197578425406],[115,41,64,5.712949326244854E-4],[115,41,65,0.005857984745622066],[115,41,66,0.011184417043641743],[115,41,67,0.016555096831317315],[115,41,68,0.02194841624284255],[115,41,69,0.027332393810045243],[115,41,70,0.0326811415201156],[115,41,71,0.037974037276742575],[115,41,72,0.04319465661645898],[115,41,73,0.04832981844014408],[115,41,74,0.05336874596814202],[115,41,75,0.05830234380644068],[115,41,76,0.06312259169746534],[115,41,77,0.06782205522392658],[115,41,78,0.07239351343839742],[115,41,79,0.07682970310903599],[115,42,64,0.013877069342609863],[115,42,65,0.019350147050652102],[115,42,66,0.02485665409082985],[115,42,67,0.03040373029759711],[115,42,68,0.03596938504313448],[115,42,69,0.04151909747578205],[115,42,70,0.047024905420652165],[115,42,71,0.05246461688361023],[115,42,72,0.05782071759675074],[115,42,73,0.06307938926651929],[115,42,74,0.06822963984510748],[115,42,75,0.07326254683050003],[115,42,76,0.07817061429179005],[115,42,77,0.08294724401567741],[115,42,78,0.08758632087792059],[115,42,79,0.09208191226402739],[115,43,64,0.027106708274258894],[115,43,65,0.032771222018717704],[115,43,66,0.038462297104317804],[115,43,67,0.04418980704427903],[115,43,68,0.0499313058877337],[115,43,69,0.05564953110448262],[115,43,70,0.06131428218902048],[115,43,71,0.06690167387676407],[115,43,72,0.07239301805787779],[115,43,73,0.07777381284127419],[115,43,74,0.08303284020654768],[115,43,75,0.08816137337265657],[115,43,76,0.0931524947090203],[115,43,77,0.09800052471885778],[115,43,78,0.10270056233644698],[115,43,79,0.10724813650360299],[115,44,64,0.040216793292304126],[115,44,65,0.04607748491379973],[115,44,66,0.05195757729667748],[115,44,67,0.057869731489730646],[115,44,68,0.06379096320135069],[115,44,69,0.06968107751372508],[115,44,70,0.07550746950536671],[115,44,71,0.0812444233559504],[115,44,72,0.08687196940206628],[115,44,73,0.09237484442373957],[115,44,74,0.09774155671782787],[115,44,75,0.10296355721272168],[115,44,76,0.10803451758216122],[115,44,77,0.11294971602585566],[115,44,78,0.11770553110126422],[115,44,79,0.12164228481944712],[115,45,64,0.05317330483105677],[115,45,65,0.059234064332049446],[115,45,66,0.06530700768255701],[115,45,67,0.07140757133945148],[115,45,68,0.07751213747567814],[115,45,69,0.08357741259116087],[115,45,70,0.08956823203028354],[115,45,71,0.09545691024158087],[115,45,72,0.10122207590543945],[115,45,73,0.10684760588113601],[115,45,74,0.11224797616018545],[115,45,75,0.11689761306844065],[115,45,76,0.12142072781756835],[115,45,77,0.12581903397676825],[115,45,78,0.13009339329168712],[115,45,79,0.13424425901375653],[115,46,64,0.06559705830219156],[115,46,65,0.07221942726177655],[115,46,66,0.07848781084683303],[115,46,67,0.0847794015639414],[115,46,68,0.09098480412321462],[115,46,69,0.0967395170974485],[115,46,70,0.10231445004880599],[115,46,71,0.10773329109159124],[115,46,72,0.11301340624178006],[115,46,73,0.11816693093667613],[115,46,74,0.12320176511257365],[115,46,75,0.12812247034097998],[115,46,76,0.13293106780327354],[115,46,77,0.13762773615925286],[115,46,78,0.14221140863342488],[115,46,79,0.14668026890398556],[115,47,64,0.07457195623092057],[115,47,65,0.08142971763040587],[115,47,66,0.08805686447599823],[115,47,67,0.09442424577097916],[115,47,68,0.10054904480349316],[115,47,69,0.10647356947557678],[115,47,70,0.1122314527272433],[115,47,71,0.11784819046752831],[115,47,72,0.1233423415376724],[115,47,73,0.12872663869717704],[115,47,74,0.13400900875238522],[115,47,75,0.13919350021560925],[115,47,76,0.14428111715047615],[115,47,77,0.14927055812400558],[115,47,78,0.1541588594446785],[115,47,79,0.1589419421183881],[115,48,64,0.08353442023690938],[115,48,65,0.09051700096128534],[115,48,66,0.09727802719474678],[115,48,67,0.10378587825125307],[115,48,68,0.1100584474418438],[115,48,69,0.11614108228939382],[115,48,70,0.12206992298678429],[115,48,71,0.12787237384889816],[115,48,72,0.13356830839882108],[115,48,73,0.1391711918461335],[115,48,74,0.1446891189916814],[115,48,75,0.15012576584691636],[115,48,76,0.1554812535097325],[115,48,77,0.16075292309075],[115,48,78,0.16593602073100555],[115,48,79,0.17102429199415553],[115,49,64,0.09252750378798025],[115,49,65,0.09962509669575217],[115,49,66,0.1065090483181648],[115,49,67,0.1131455520261876],[115,49,68,0.1195532981715715],[115,49,69,0.12578063777546847],[115,49,70,0.13186624040044753],[115,49,71,0.13783949258943515],[115,49,72,0.1437216978391599],[115,49,73,0.1495272009238568],[115,49,74,0.1552644345377381],[115,49,75,0.16093688646178012],[115,49,76,0.16654398569838524],[115,49,77,0.17208190625463915],[115,49,78,0.17754428748814302],[115,49,79,0.18292287015903805],[115,50,64,0.1015829756828073],[115,50,65,0.10878589738832917],[115,50,66,0.11578162803830276],[115,50,67,0.12253449949001449],[115,50,68,0.12906406197510858],[115,50,69,0.13542156473824296],[115,50,70,0.14164817775342695],[115,50,71,0.1477753111247189],[115,50,72,0.15382579865490506],[115,50,73,0.1598150131996076],[115,50,74,0.1657519117324952],[115,50,75,0.17164000826584827],[115,50,76,0.1774782729910634],[115,50,77,0.18326195622410693],[115,50,78,0.1889833359585243],[115,50,79,0.19463238804380292],[115,51,64,0.11072135576982828],[115,51,65,0.1180202537808622],[115,51,66,0.12511671223018747],[115,51,67,0.1319735614443591],[115,51,68,0.13861125077595726],[115,51,69,0.14508375701541762],[115,51,70,0.1514346704577192],[115,51,71,0.157697430095639],[115,51,72,0.1638964789384586],[115,51,73,0.1700483589038642],[115,51,74,0.17616274319154052],[115,51,75,0.1822434042455263],[115,51,76,0.18828911561345346],[115,51,77,0.1942944862128058],[115,51,78,0.20025072571454197],[115,51,79,0.20614633995340975],[115,52,64,0.11995208735648842],[115,52,65,0.1273381102329733],[115,52,66,0.13452458894895733],[115,52,67,0.14147323990939253],[115,52,68,0.14820542791300148],[115,52,69,0.1547776272192028],[115,52,70,0.16123571932441846],[115,52,71,0.16761513990405158],[115,52,72,0.17394199396210216],[115,52,73,0.18023411856116775],[115,52,74,0.1865020910513861],[115,52,75,0.1927501808941948],[115,52,76,0.19897724335724012],[115,52,77,0.2051775535389703],[115,52,78,0.2113415793627862],[115,52,79,0.21745669236183132],[115,53,64,0.12927385004001],[115,53,65,0.13673878137710258],[115,53,66,0.1440051261097348],[115,53,67,0.15103389181957982],[115,53,68,0.15784735298447372],[115,53,69,0.16450419976914957],[115,53,70,0.171052430709781],[115,53,71,0.17752940868203945],[115,53,72,0.18396292433790387],[115,53,73,0.19037221521124137],[115,53,74,0.1967689384485385],[115,53,75,0.20315809527633236],[115,53,76,0.20953890547577514],[115,53,77,0.2159056302960519],[115,53,78,0.2222483423996657],[115,53,79,0.22855364159474778],[115,54,64,0.13867501663447843],[115,54,65,0.1462113737679903],[115,54,66,0.15354815419235596],[115,54,67,0.16064606751052318],[115,54,68,0.1675282710247112],[115,54,69,0.17425534721780706],[115,54,70,0.18087719804671218],[115,54,71,0.1874330086617862],[115,54,72,0.193952248375646],[115,54,73,0.2004556353306855],[115,54,74,0.2069560628868024],[115,54,75,0.21345948588333927],[115,54,76,0.21996576506590837],[115,54,77,0.2264694681084221],[115,54,78,0.23296062580103652],[115,54,79,0.23942544211682476],[115,55,64,0.14813425778648098],[115,55,65,0.15573535622043055],[115,55,66,0.163133997744391],[115,55,67,0.17029099784285417],[115,55,68,0.17723034992523895],[115,55,69,0.18401417382848317],[115,55,70,0.19069402874147942],[115,55,71,0.19731078491161225],[115,55,72,0.20389555254950656],[115,55,73,0.21047058226657375],[115,55,74,0.21705013515781282],[115,55,75,0.22364132075206525],[115,55,76,0.23024490116613236],[115,55,77,0.2368560599168053],[115,55,78,0.24346513396384933],[115,55,79,0.25005830767844217],[115,56,64,0.15762129776176886],[115,56,65,0.16528128242534137],[115,56,66,0.17273415935904496],[115,56,67,0.17994123372010049],[115,56,68,0.18692726993135003],[115,56,69,0.1937555502935026],[115,56,70,0.20047902035473386],[115,56,71,0.20714007035366466],[115,56,72,0.21377138394510775],[115,56,73,0.2203967659651126],[115,56,74,0.22703194746229383],[115,56,75,0.23368536630966522],[115,56,76,0.24035892180309337],[115,56,77,0.24704870174816376],[115,56,78,0.253745680634725],[115,56,79,0.2604363875989373],[115,57,64,0.16709782474948037],[115,57,65,0.1748116693036337],[115,57,66,0.1823121596804566],[115,57,67,0.18956144164080432],[115,57,68,0.19658496893705552],[115,57,69,0.20344680338232046],[115,57,70,0.21020098989703256],[115,57,71,0.21689125090074926],[115,57,72,0.22355174849197446],[115,57,73,0.230207832723677],[115,57,74,0.23687677433648202],[115,57,75,0.2435684803768901],[115,57,76,0.2502861911980202],[115,57,77,0.2570271574144853],[115,57,78,0.2637832954592582],[115,57,79,0.27054182047018044],[115,58,64,0.17651855886842546],[115,58,65,0.18428203440003388],[115,58,66,0.19182453683756454],[115,58,67,0.19910935878079472],[115,58,68,0.20616254716480936],[115,58,69,0.21304856418137308],[115,58,70,0.21982225995162505],[115,58,71,0.22652848444338408],[115,58,72,0.23320275869188054],[115,58,73,0.2398719386124622],[115,58,74,0.246554869918915],[115,58,75,0.2532630327056201],[115,58,76,0.26000117430106895],[115,58,77,0.2667679290536132],[115,58,78,0.2735564237660152],[115,58,79,0.2803548675549075],[115,59,64,0.185832480871179],[115,59,65,0.19364209543424096],[115,59,66,0.201222008528371],[115,59,67,0.20853691092862459],[115,59,68,0.2156133346509991],[115,59,69,0.22251577843076906],[115,59,70,0.22929960519037437],[115,59,71,0.23601057728237446],[115,59,72,0.24268543443001378],[115,59,73,0.2493524701015796],[115,59,74,0.2560321049962371],[115,59,75,0.26273745634418905],[115,59,76,0.26947490175375327],[115,59,77,0.2762446363717119],[115,59,78,0.28304122215944444],[115,59,79,0.2898541281275456],[115,60,64,0.19498422390717415],[115,60,65,0.2028371344917015],[115,60,66,0.21045079934239097],[115,60,67,0.21779149596534383],[115,60,68,0.2248861243296282],[115,60,69,0.23179888183899364],[115,60,70,0.23858536223086801],[115,60,71,0.2452920209920239],[115,60,72,0.25195665985477084],[115,60,73,0.2586089148387054],[115,60,74,0.26527074668743583],[115,60,75,0.271956932557138],[115,60,76,0.2786755578255933],[115,60,77,0.2854285069060178],[115,60,78,0.2922119519680014],[115,60,79,0.29901683848992644],[115,61,64,0.20391561898730265],[115,61,65,0.21180951751572594],[115,61,66,0.21945412398958236],[115,61,67,0.2268174235636742],[115,61,68,0.23392656139626078],[115,61,69,0.24084513105490918],[115,61,70,0.2476286934923384],[115,61,71,0.2543241803232122],[115,61,72,0.260970286853803],[115,61,73,0.26759787298492776],[115,61,74,0.274230371012105],[115,61,75,0.2808841993385592],[115,61,76,0.28756918111241564],[115,61,77,0.29428896679875993],[115,61,78,0.3010414596987626],[115,61,79,0.30781924343353695],[115,62,64,0.21256742031466716],[115,62,65,0.22050039560621731],[115,62,66,0.22817385326712442],[115,62,67,0.23555753826152923],[115,62,68,0.2426787164280715],[115,62,69,0.24960011808138827],[115,62,70,0.25637703312184945],[115,62,71,0.26305666047573467],[115,62,72,0.26967841367785655],[115,62,73,0.2762742378413796],[115,62,74,0.282868937211252],[115,62,75,0.289480512475718],[115,62,76,0.29612050699210885],[115,62,77,0.3027943610681241],[115,62,78,0.3095017734267582],[115,62,79,0.31623706897371995],[115,63,64,0.2208812177283669],[115,63,65,0.22885159555522147],[115,63,66,0.23655237036711096],[115,63,67,0.24395503368657656],[115,63,68,0.25108685021097316],[115,63,69,0.2580094762472702],[115,63,70,0.2647777232560678],[115,63,71,0.2714388621291995],[115,63,72,0.2780328471945547],[115,63,73,0.28459255430522445],[115,63,74,0.2911440323751311],[115,63,75,0.297706767690011],[115,63,76,0.30429396029257644],[115,63,77,0.31091281171354634],[115,63,78,0.3175648232946808],[115,63,79,0.3242461043278608],[115,64,64,0.2286607868714558],[115,64,65,0.2368076696112763],[115,64,66,0.24453458735787953],[115,64,67,0.2519554276111734],[115,64,68,0.2590973398056045],[115,64,69,0.26602074711924056],[115,64,70,0.27277980983941863],[115,64,71,0.2794216932747063],[115,64,72,0.28598671761179206],[115,64,73,0.2925085237629543],[115,64,74,0.29901425472112086],[115,64,75,0.3055247518972154],[115,64,76,0.31205476587494835],[115,64,77,0.3186131809811484],[115,64,78,0.32520325303387276],[115,64,79,0.331822859597744],[115,65,64,0.23412934809150662],[115,65,65,0.2434650463932398],[115,65,66,0.25207013745384127],[115,65,67,0.25950871369697526],[115,65,68,0.266660781957859],[115,65,69,0.2735854246996422],[115,65,70,0.28033601457123464],[115,65,71,0.2869594546258065],[115,65,72,0.2934962626282292],[115,65,73,0.29998067252529415],[115,65,74,0.3064407527362751],[115,65,75,0.3128985408722862],[115,65,76,0.3193701944461069],[115,65,77,0.3258661570893644],[115,65,78,0.33239133974997753],[115,65,79,0.33894531630142394],[115,66,64,0.23941591229958809],[115,66,65,0.24881185261154679],[115,66,66,0.25831580937013215],[115,66,67,0.2665716922704334],[115,66,68,0.2737342763351403],[115,66,69,0.2806611795287174],[115,66,70,0.2874048857280121],[115,66,71,0.2940119014662178],[115,66,72,0.30052278395753823],[115,66,73,0.3069721868122033],[115,66,74,0.3133889232232413],[115,66,75,0.3197960463526049],[115,66,76,0.3262109465922948],[115,66,77,0.3326454653257269],[115,66,78,0.3391060247645336],[115,66,79,0.3455937733881381],[115,67,64,0.2445394178161801],[115,67,65,0.2539831117508618],[115,67,66,0.26354317819044754],[115,67,67,0.2731104811276091],[115,67,68,0.28028388972015034],[115,67,69,0.2872142639559373],[115,67,70,0.29395312925132017],[115,67,71,0.3005464834376487],[115,67,72,0.3070347778238695],[115,67,73,0.31345291595582103],[115,67,74,0.3198302699597219],[115,67,75,0.32619071430063407],[115,67,76,0.3325526767313806],[115,67,77,0.33892920615321115],[115,67,78,0.34532805705524544],[115,67,79,0.35175179014718466],[115,68,64,0.24950700573436785],[115,68,65,0.2589867420306775],[115,68,66,0.2685899265035485],[115,68,67,0.27832656617513546],[115,68,68,0.28628730189872664],[115,68,69,0.29322209945237454],[115,68,70,0.29995812110455905],[115,68,71,0.3065407633923988],[115,68,72,0.31301024065957894],[115,68,73,0.3194015451388217],[115,68,74,0.3257444243511199],[115,68,75,0.33206337573993544],[115,68,76,0.33837765840133754],[115,68,77,0.3447013217145509],[115,68,78,0.3510432506203697],[115,68,79,0.3574072272392052],[115,69,64,0.25431110540857],[115,69,65,0.26381621972372377],[115,69,66,0.2734505937937416],[115,69,67,0.2832229736245586],[115,69,68,0.29173663707116965],[115,69,69,0.29867605033789024],[115,69,70,0.3054106057719712],[115,69,71,0.3119850206190759],[115,69,72,0.3184391556656253],[115,69,73,0.3248079435818748],[115,69,74,0.3311213341313761],[115,69,75,0.33740425623874315],[115,69,76,0.34367659684939644],[115,69,77,0.3499531964570416],[115,69,78,0.35624386111588774],[115,69,79,0.36255339069677195],[115,70,64,0.25892346806470945],[115,70,65,0.26844351049154724],[115,70,66,0.2780974367707456],[115,70,67,0.2878926287009251],[115,70,68,0.2966489654166683],[115,70,69,0.303592963377318],[115,70,70,0.3103271525684872],[115,70,71,0.31689546289839426],[115,70,72,0.3233372647296591],[115,70,73,0.3296872711395192],[115,70,74,0.33597545648316984],[115,70,75,0.3422269913146749],[115,70,76,0.3484621936612637],[115,70,77,0.3546964965882197],[115,70,78,0.3609404319318052],[115,70,79,0.367199630018475],[115,71,64,0.263299255374165],[115,71,65,0.27282093721093487],[115,71,66,0.28247991945689455],[115,71,67,0.2922821069990198],[115,71,68,0.30107166030234717],[115,71,69,0.3080228377472892],[115,71,70,0.31475999726239895],[115,71,71,0.32132603979470237],[115,71,72,0.327759596342689],[115,71,73,0.3340949110869388],[115,71,74,0.3403617397566912],[115,71,75,0.3465852633361131],[115,71,76,0.35278601715666197],[115,71,77,0.3589798353642984],[115,71,78,0.3651778106911845],[115,71,79,0.37138626940261665],[115,72,64,0.2674016387512224],[115,72,65,0.2769088632355455],[115,72,66,0.2865555670343883],[115,72,67,0.29634608622705044],[115,72,68,0.30504528092722033],[115,72,69,0.3120088606069406],[115,72,70,0.31875462143157623],[115,72,71,0.3253240827355899],[115,72,72,0.3317547914299684],[115,72,73,0.338080194810083],[115,72,74,0.3443295266326718],[115,72,75,0.350527706598036],[115,72,76,0.35669525332016916],[115,72,77,0.36284821081350427],[115,72,78,0.36899808846913557],[115,72,79,0.37515181443732487],[115,73,64,0.27120296610878925],[115,73,65,0.28067755184224596],[115,73,66,0.2902925534329215],[115,73,67,0.30005067495977655],[115,73,68,0.30859953552094005],[115,73,69,0.31558267024112535],[115,73,70,0.3223443702307112],[115,73,71,0.3289243538906981],[115,73,72,0.33535867996623187],[115,73,73,0.34167962057822054],[115,73,74,0.34791554435854605],[115,73,75,0.35409080983616814],[115,73,76,0.36022566917547544],[115,73,77,0.36633618232128323],[115,73,78,0.3724341415556844],[115,73,79,0.37852700642206827],[115,74,64,0.27468182666411195],[115,74,65,0.28410419099569806],[115,74,66,0.29366669270614343],[115,74,67,0.3033703758255164],[115,74,68,0.31175635863020984],[115,74,69,0.31876743147805137],[115,74,70,0.32555349905912867],[115,74,71,0.3321520316515411],[115,74,72,0.33859716896965186],[115,74,73,0.3449196054888781],[115,74,74,0.35114648129975623],[115,74,75,0.3573012786243573],[115,74,76,0.3634037240936845],[115,74,77,0.3694696968488016],[115,74,78,0.3755111424898014],[115,74,79,0.3815359928567818],[115,75,64,0.2778202099799734],[115,75,65,0.2871700105123153],[115,75,66,0.2966585204504757],[115,75,67,0.3062851359958322],[115,75,68,0.3145329033004193],[115,75,69,0.32158083046137104],[115,75,70,0.3284001454747454],[115,75,71,0.3350256289069295],[115,75,72,0.34148907262114064],[115,75,73,0.3478191906795042],[115,75,74,0.35404152966222396],[115,75,75,0.3601783784932786],[115,75,76,0.3662486778435658],[115,75,77,0.3722679291619429],[115,75,78,0.37824810336079845],[115,75,79,0.3841975491569227],[115,76,64,0.2806007643941098],[115,76,65,0.28985749682690937],[115,76,66,0.2992504705001627],[115,76,67,0.30877749022560586],[115,76,68,0.3169444429186057],[115,76,69,0.3240379836035868],[115,76,70,0.3308992213045178],[115,76,71,0.3375598392625454],[115,76,72,0.34404887993893796],[115,76,73,0.3503926956053111],[115,76,74,0.3566148906447937],[115,76,75,0.3627362555771242],[115,76,76,0.3687746928226442],[115,76,77,0.37474513421960265],[115,76,78,0.3806594503046186],[115,76,79,0.38652635135867425],[115,77,64,0.2830041600608181],[115,77,65,0.2921477106498767],[115,77,66,0.301424152230841],[115,77,67,0.3108298018039266],[115,77,68,0.3190071773565],[115,77,69,0.3261542554054998],[115,77,70,0.33306521974494696],[115,77,71,0.3397683061823449],[115,77,72,0.34628945525436605],[115,77,73,0.35265231698690047],[115,77,74,0.35887823807464525],[115,77,75,0.36498623138141884],[115,77,76,0.37099292768939407],[115,77,77,0.37691250964930734],[115,77,78,0.3827566279027831],[115,77,79,0.38853429936311357],[115,78,64,0.28500656187050966],[115,78,65,0.2940177128576222],[115,78,66,0.3031577338724945],[115,78,67,0.31242160685906845],[115,78,68,0.32074093795475944],[115,78,69,0.32794797971360273],[115,78,70,0.3349149321179516],[115,78,71,0.3416663098858126],[115,78,72,0.348224666575983],[115,78,73,0.35461066785843254],[115,78,74,0.36084313639285265],[115,78,75,0.36693906806793586],[115,78,76,0.3729136194103298],[115,78,77,0.37878006602480563],[115,78,78,0.38454973197413284],[115,78,79,0.39023189004916775],[115,79,64,0.28659675157545345],[115,79,65,0.2954574503233548],[115,79,66,0.30444236383083634],[115,79,67,0.3135453207327477],[115,79,68,0.3221544706610536],[115,79,69,0.3294269602203975],[115,79,70,0.33645539542722286],[115,79,71,0.3432603672656304],[115,79,72,0.3498608129210674],[115,79,73,0.35627417249834786],[115,79,74,0.3625165050956825],[115,79,75,0.3686025637989442],[115,79,76,0.3745458292503525],[115,79,77,0.38035850153121237],[115,79,78,0.38605145017727904],[115,79,79,0.3916341222181498],[115,80,64,0.2878292168406521],[115,80,65,0.2965223043710844],[115,80,66,0.305333562787511],[115,80,67,0.3142557997768071],[115,80,68,0.32319846418348697],[115,80,69,0.33054470786615553],[115,80,70,0.33764398663254064],[115,80,71,0.34451277341586556],[115,80,72,0.3511661285141368],[115,80,73,0.35761795943410796],[115,80,74,0.3638812263945705],[115,80,75,0.3699680928137561],[115,80,76,0.37589002023362506],[115,80,77,0.3816578072566537],[115,80,78,0.3872815721861316],[115,80,79,0.3927706791690801],[115,81,64,0.2887590325713602],[115,81,65,0.29726859591244653],[115,81,66,0.3058881796393529],[115,81,67,0.3146096504132276],[115,81,68,0.32340980492700255],[115,81,69,0.33125363177735595],[115,81,70,0.3384364927270317],[115,81,71,0.34538372278200824],[115,81,72,0.35210622105721745],[115,81,73,0.3586139980842624],[115,81,74,0.36491649324616754],[115,81,75,0.37102282178822954],[115,81,76,0.37694195059957736],[115,81,77,0.3826828021249825],[115,81,78,0.3882542859231114],[115,81,79,0.3936652575355572],[115,82,64,0.28942354146325827],[115,82,65,0.2977353775972397],[115,82,66,0.306146518181141],[115,82,67,0.3146479331970568],[115,82,68,0.323218083365741],[115,82,69,0.33152037713795085],[115,82,70,0.33880111085683506],[115,82,71,0.3458437386266632],[115,82,72,0.3526547212462777],[115,82,73,0.35923978881184304],[115,82,74,0.3656043951499514],[115,82,75,0.3717540850402423],[115,82,76,0.3776947731006245],[115,82,77,0.3834329334198983],[115,82,78,0.3889756992252403],[115,82,79,0.39433087206502476],[115,83,64,0.2898448196371399],[115,83,65,0.2979468041609131],[115,83,66,0.3061345800050686],[115,83,67,0.31439824267102223],[115,83,68,0.32271770566831853],[115,83,69,0.33107206166597547],[115,83,70,0.33871705710811767],[115,83,71,0.3458725549982171],[115,83,72,0.35279245179525914],[115,83,73,0.3594778267047171],[115,83,74,0.3659296781668679],[115,83,75,0.37214943615527585],[115,83,76,0.3781393677366442],[115,83,77,0.38390287463989753],[115,83,78,0.3894446818355129],[115,83,79,0.39477091636859457],[115,84,64,0.2895208543891652],[115,84,65,0.29791441484924586],[115,84,66,0.3058662239133553],[115,84,67,0.31387670956866787],[115,84,68,0.3219269734569417],[115,84,69,0.3299994057617057],[115,84,70,0.33807964302636023],[115,84,71,0.3454580488603804],[115,84,72,0.35250664060934384],[115,84,73,0.35931510470314987],[115,84,74,0.365879540933878],[115,84,75,0.372196733880572],[115,84,76,0.37826470876421964],[115,84,77,0.38408315941789795],[115,84,78,0.3896537470278323],[115,84,79,0.3949802685971927],[115,85,64,0.2879436217568916],[115,85,65,0.2967062042953732],[115,85,66,0.3052415857668949],[115,85,67,0.31308991938696196],[115,85,68,0.3208553570877275],[115,85,69,0.3286267996336626],[115,85,70,0.33639375233210433],[115,85,71,0.34414864842868836],[115,85,72,0.3517901795710016],[115,85,73,0.3587426570220014],[115,85,74,0.36544346710500436],[115,85,75,0.37188426221441423],[115,85,76,0.37805826542897636],[115,85,77,0.3839608505137126],[115,85,78,0.38958997148280095],[115,85,79,0.39494644032957843],[115,86,64,0.2859106832450566],[115,86,65,0.29471570562652194],[115,86,66,0.30331467660730144],[115,86,67,0.3117096648878074],[115,86,68,0.31950515029917204],[115,86,69,0.32696014365622117],[115,86,70,0.3343948071520914],[115,86,71,0.3418060629237923],[115,86,72,0.34919319293471496],[115,86,73,0.35655651468135924],[115,86,74,0.36389621469403227],[115,86,75,0.37120088512295485],[115,86,76,0.3775064363099929],[115,86,77,0.3835202432611027],[115,86,78,0.3892359523371911],[115,86,79,0.3946507671953468],[115,87,64,0.283451335499948],[115,87,65,0.2922896814577679],[115,87,66,0.30094510061971086],[115,87,67,0.3094206317690889],[115,87,68,0.3177223580966462],[115,87,69,0.3250002440345827],[115,87,70,0.33208799999574506],[115,87,71,0.3391375473294355],[115,87,72,0.3461532790188979],[115,87,73,0.35314114575288635],[115,87,74,0.3601072371337806],[115,87,75,0.36705654475360805],[115,87,76,0.37399191083389616],[115,87,77,0.38091316562664673],[115,87,78,0.38781645628478534],[115,87,79,0.39406963983213567],[115,88,64,0.28060077568343916],[115,88,65,0.28946118588604525],[115,88,66,0.29816331048506045],[115,88,67,0.3067111485036516],[115,88,68,0.31511106275745315],[115,88,69,0.3227441085064369],[115,88,70,0.32947517525650877],[115,88,71,0.33615010865917416],[115,88,72,0.3427783155011702],[115,88,73,0.34937141041459446],[115,88,74,0.3559415306780447],[115,88,75,0.3624998533976674],[115,88,76,0.36905531943579234],[115,88,77,0.37561356789336964],[115,88,78,0.38217608440059603],[115,88,79,0.3887395659329584],[115,89,64,0.2773982673629371],[115,89,65,0.28626749221187847],[115,89,66,0.2950040723594594],[115,89,67,0.30361295109660147],[115,89,68,0.3121011222421594],[115,89,69,0.3201861604137691],[115,89,70,0.3265558407056593],[115,89,71,0.3328487725161982],[115,89,72,0.33907919932865344],[115,89,73,0.3452643356345337],[115,89,74,0.3514224058345486],[115,89,75,0.3575709056884891],[115,89,76,0.3637250913852033],[115,89,77,0.3698967006799724],[115,89,78,0.37609290993214267],[115,89,79,0.38231553027622434],[115,90,64,0.2738854239943252],[115,90,65,0.2827484460561587],[115,90,66,0.2915049120202552],[115,90,67,0.3001606879693812],[115,90,68,0.30872373047107693],[115,90,69,0.3171908248641466],[115,90,70,0.3233281045372631],[115,90,71,0.3292373049017061],[115,90,72,0.33506579792176033],[115,90,73,0.3408362406131542],[115,90,74,0.34657287712155754],[115,90,75,0.3522995392612257],[115,90,76,0.3580378949419701],[115,90,77,0.363805949594342],[115,90,78,0.3696168050271043],[115,90,79,0.3754776794900591],[115,91,64,0.2701046131796476],[115,91,65,0.27894493533732573],[115,91,66,0.28770467248534165],[115,91,67,0.2963905876119671],[115,91,68,0.3050119025391811],[115,91,69,0.31356589990281347],[115,91,70,0.31978953583474795],[115,91,71,0.3253188673597252],[115,91,72,0.330747378813815],[115,91,73,0.3361029240478518],[115,91,74,0.3414155950134148],[115,91,75,0.346715461017788],[115,91,76,0.35203057525610343],[115,91,77,0.3573852544033486],[115,91,78,0.3627986363139473],[115,91,79,0.36828352015631044],[115,92,64,0.2660974845936736],[115,92,65,0.2748974799649209],[115,92,66,0.28364218588019324],[115,92,67,0.2923392330884004],[115,92,68,0.3009993737471138],[115,92,69,0.30962087229180574],[115,92,70,0.315937946505306],[115,92,71,0.3210966038140927],[115,92,72,0.3261329805538013],[115,92,73,0.3310798011736126],[115,92,74,0.33597273478137796],[115,92,75,0.34084787752521817],[115,92,76,0.3457395205135209],[115,92,77,0.3506782097274944],[115,92,78,0.3556891035894144],[115,92,79,0.3607906330730448],[115,93,64,0.26190362420557295],[115,93,65,0.2706449438459642],[115,93,66,0.27935506207947786],[115,93,67,0.2880424458065021],[115,93,68,0.29671959867392245],[115,93,69,0.30538619527027383],[115,93,70,0.31177209289214014],[115,93,71,0.31657415759020396],[115,93,72,0.3212317236746425],[115,93,73,0.325781989711471],[115,93,74,0.3302658417020028],[115,93,75,0.33472508758168823],[115,93,76,0.3391999941780119],[115,93,77,0.34372713374049685],[115,93,78,0.3483375463126553],[115,93,79,0.35305522338652867],[115,94,64,0.25755933717249385],[115,94,65,0.2662233715588012],[115,94,66,0.2748785964192125],[115,94,67,0.2835342807464014],[115,94,68,0.2922048523406771],[115,94,69,0.30089175890671405],[115,94,70,0.30729229542716846],[115,94,71,0.31175611724162555],[115,94,72,0.31605306063098376],[115,94,73,0.32022434393201793],[115,94,74,0.3243156321554323],[115,94,75,0.32837403679150357],[115,94,76,0.3324454334856525],[115,94,77,0.3365721053326824],[115,94,78,0.34079071864758176],[115,94,79,0.3451306371934803],[115,95,64,0.25309656155028154],[115,95,65,0.26166495182449384],[115,95,66,0.2702447985608752],[115,95,67,0.2788461351415235],[115,95,68,0.28748543533004906],[115,95,69,0.2961662120315387],[115,95,70,0.30250097482972527],[115,95,71,0.3066483899212211],[115,95,72,0.31060696370580926],[115,95,73,0.31442143611225915],[115,95,74,0.31814175018321744],[115,95,75,0.32181983401513414],[115,95,76,0.32550671435163897],[115,95,77,0.32924997018216584],[115,95,78,0.3330915337641805],[115,95,79,0.337065845566929],[115,96,64,0.2485419147513432],[115,96,65,0.2569971096968876],[115,96,66,0.2654815443891179],[115,96,67,0.27400597241835695],[115,96,68,0.28258898455525616],[115,96,69,0.29123637906302824],[115,96,70,0.2974031034899503],[115,96,71,0.30125850114779334],[115,96,72,0.3049040499739855],[115,96,73,0.3083874847301172],[115,96,74,0.3117624791190077],[115,96,75,0.3150852295827742],[115,96,76,0.3184113828523858],[115,96,77,0.32179331616315515],[115,96,78,0.32527777807990993],[115,96,79,0.32890389691734384],[115,97,64,0.2439158744795349],[115,97,65,0.25224172919800414],[115,97,66,0.2606118526385541],[115,97,67,0.2690376630265626],[115,97,68,0.27753989121140354],[115,97,69,0.2861267731274555],[115,97,70,0.2920065707992421],[115,97,71,0.2955958199225995],[115,97,72,0.29895564249305434],[115,97,73,0.3021362288017901],[115,97,74,0.30519440794545055],[115,97,75,0.30819005517999415],[115,97,76,0.3111828534473353],[115,97,77,0.3142294185058591],[115,97,78,0.3173807960933726],[115,97,79,0.32068033856041583],[115,98,64,0.23923209568719503],[115,98,65,0.2474145079457488],[115,98,66,0.25565328777303353],[115,98,67,0.26396044362940124],[115,98,68,0.2723588272939618],[115,98,69,0.28085920674156095],[115,98,70,0.2863224613065128],[115,98,71,0.2896717082475783],[115,98,72,0.29277376696939045],[115,98,73,0.2956807478250558],[115,98,74,0.2984520520689394],[115,98,75,0.3011506253336463],[115,98,76,0.3038395741072131],[115,98,77,0.30657915510928685],[115,98,78,0.3094241464360398],[115,98,79,0.31242160832583515],[115,99,64,0.23449686492746138],[115,99,65,0.24252444515338611],[115,99,66,0.2506174904800815],[115,99,67,0.2587884959732145],[115,99,68,0.26706238193002524],[115,99,69,0.2754525012008739],[115,99,70,0.2803652446860924],[115,99,71,0.2834995941865993],[115,99,72,0.28637108321886845],[115,99,73,0.2890332268439348],[115,99,74,0.2915474282377277],[115,99,75,0.29397910044240266],[115,99,76,0.2963941585153044],[115,99,77,0.2988558923934106],[115,99,78,0.30142222974044447],[115,99,79,0.304143397003951],[115,100,64,0.2297086933168013],[115,100,65,0.23757346422598324],[115,100,66,0.2455098369950682],[115,100,67,0.2535306466152559],[115,100,68,0.2616628086397025],[115,100,69,0.26992229570242177],[115,100,70,0.2741528766038397],[115,100,71,0.2770949676953883],[115,100,72,0.27976075080835344],[115,100,73,0.2822046661997949],[115,100,74,0.28448958336131347],[115,100,75,0.2866828113121028],[115,100,76,0.28885248550868853],[115,100,77,0.2910643420636975],[115,100,78,0.2933788888979554],[115,100,79,0.29584898239236795],[115,101,64,0.22485780916088557],[115,101,65,0.23255555865613886],[115,101,66,0.24032823639927003],[115,101,67,0.24818881362946932],[115,101,68,0.2561661207315802],[115,101,69,0.2642787955899599],[115,101,70,0.26770937660964234],[115,101,71,0.2704782739806606],[115,101,72,0.27295960829046095],[115,101,73,0.2752083072491863],[115,101,74,0.27728821782175606],[115,101,75,0.27926802246303284],[115,101,76,0.2812175372834432],[115,101,77,0.28320440317389095],[115,101,78,0.28529117983673735],[115,101,79,0.2875328515973135],[115,102,64,0.21992609782957384],[115,102,65,0.22745248952656127],[115,102,66,0.23505449293448247],[115,102,67,0.24274498775774508],[115,102,68,0.25055461569691484],[115,102,69,0.25813883806049626],[115,102,70,0.2610915480201742],[115,102,71,0.26370637713977146],[115,102,72,0.2660243665070578],[115,102,73,0.26810044471150835],[115,102,74,0.2699988976830604],[115,102,75,0.27178921195215877],[115,102,76,0.27354230373921995],[115,102,77,0.2753271451887492],[115,102,78,0.2772077979719426],[115,102,79,0.27924086339951687],[115,103,64,0.2148974743003788],[115,103,65,0.2222456867180262],[115,103,66,0.2296677200912659],[115,103,67,0.23717615121044627],[115,103,68,0.24480328515596514],[115,103,69,0.2515429970533569],[115,103,70,0.25436973940599794],[115,103,71,0.2568520842235957],[115,103,72,0.25903007740805],[115,103,73,0.260958075223304],[115,103,74,0.2627001685104453],[115,103,75,0.26432598167635185],[115,103,76,0.2659068590784333],[115,103,77,0.2675124503332774],[115,103,78,0.26920770498332147],[115,103,79,0.2710502858707915],[115,104,64,0.209763347980539],[115,104,65,0.21692476322304588],[115,104,66,0.2241559467729373],[115,104,67,0.23146899182344027],[115,104,68,0.23889767029094744],[115,104,69,0.2448816976938909],[115,104,70,0.24760356010562742],[115,104,71,0.24997664658897553],[115,104,72,0.25203949507085227],[115,104,73,0.2538452678376267],[115,104,74,0.25545716781674926],[115,104,75,0.25694422805118766],[115,104,76,0.25837748710114633],[115,104,77,0.25982656201978],[115,104,78,0.26135662946241095],[115,104,79,0.2630258244098766],[115,105,64,0.20452360318681545],[115,105,65,0.2114884741047821],[115,105,66,0.2185170499739744],[115,105,67,0.22562080058483708],[115,105,68,0.23283471811395956],[115,105,69,0.23820208317366015],[115,105,70,0.24084108378319968],[115,105,71,0.24312898562713828],[115,105,72,0.24510230868647304],[115,105,73,0.2468123867320315],[115,105,74,0.2483208182414801],[115,105,75,0.2496952855232878],[115,105,76,0.25100575477481385],[115,105,77,0.2523210687308876],[115,105,78,0.2537059424885576],[115,105,79,0.2552183720307057],[115,106,64,0.19918795217527271],[115,106,65,0.20594598445841975],[115,106,66,0.21275992933185603],[115,106,67,0.2196405407522069],[115,106,68,0.2266237350407021],[115,106,69,0.23153973138101752],[115,106,70,0.2341181173140687],[115,106,71,0.23634507288875709],[115,106,72,0.23825462239246603],[115,106,73,0.2398956549678657],[115,106,74,0.2413274558178545],[115,106,75,0.24261559695194077],[115,106,76,0.24382820006295572],[115,106,77,0.24503258307979475],[115,106,78,0.24629230089834092],[115,106,79,0.24766458975625447],[115,107,64,0.19377772979304572],[115,107,65,0.20031857622256602],[115,107,66,0.20690611519798768],[115,107,67,0.21355034249835744],[115,107,68,0.2202877548255793],[115,107,69,0.22491740532065246],[115,107,70,0.22745708856970095],[115,107,71,0.22964695311153513],[115,107,72,0.23151810666932032],[115,107,73,0.23311642300027907],[115,107,74,0.23449820041187225],[115,107,75,0.23572616738584887],[115,107,76,0.23686584762308574],[115,107,77,0.23798229581731967],[115,107,78,0.23913721446028616],[115,107,79,0.2403864609815485],[115,108,64,0.1883281318892917],[115,108,65,0.19464179611439375],[115,108,66,0.20099181262920396],[115,108,67,0.2073874256065372],[115,108,68,0.21386532348390336],[115,108,69,0.21834340033096522],[115,108,70,0.2208655503527321],[115,108,71,0.22304140740303002],[115,108,72,0.2248988186085661],[115,108,73,0.22648013936333836],[115,108,74,0.2278380659396916],[115,108,75,0.2290317990923793],[115,108,76,0.23012355055313358],[115,108,77,0.23117540335725217],[115,108,78,0.23224653598653927],[115,108,79,0.23339081936138872],[115,109,64,0.18289085305741568],[115,109,65,0.18896799980008838],[115,109,66,0.19507033595176193],[115,109,67,0.20120640440962848],[115,109,68,0.207412654936384],[115,109,69,0.2118094364933794],[115,109,70,0.2143342482968873],[115,109,71,0.21651820386868928],[115,109,72,0.2183856378815507],[115,109,73,0.2199749699697184],[115,109,74,0.22133475649118287],[115,109,75,0.22252005373821654],[115,109,76,0.22358910394192852],[115,109,77,0.22460035451907728],[115,109,78,0.22560982011036135],[115,109,79,0.22666879606522433],[115,110,64,0.17752724228179728],[115,110,65,0.18335928488940545],[115,110,66,0.1892048021941427],[115,110,67,0.19507172090519415],[115,110,68,0.2009957831105243],[115,110,69,0.2052775997962895],[115,110,70,0.2078241410746399],[115,110,71,0.21003721179298385],[115,110,72,0.21193748554001401],[115,110,73,0.21355912771259955],[115,110,74,0.21494610841252498],[115,110,75,0.21614880422302624],[115,110,76,0.2172208995305503],[115,110,77,0.21821659722666556],[115,110,78,0.21918814779274576],[115,110,79,0.22018370494183154],[115,111,64,0.17229340852904282],[115,111,65,0.17787251654245337],[115,111,66,0.18345289139168738],[115,111,67,0.1890419375240342],[115,111,68,0.1946741812242473],[115,111,69,0.19867174375388075],[115,111,70,0.20125855872140683],[115,111,71,0.2035214834482994],[115,111,72,0.2054774687612978],[115,111,73,0.20715618817695985],[115,111,74,0.20859665071764957],[115,111,75,0.20984407751238238],[115,111,76,0.21094705204864936],[115,111,77,0.21195495318499732],[115,111,78,0.21291567927581792],[115,111,79,0.2138736710048859],[115,112,64,0.16722713412457316],[115,112,65,0.17254707499496957],[115,112,66,0.17785502108825202],[115,112,67,0.183157902836273],[115,112,68,0.18848848109273458],[115,112,69,0.19193256659308996],[115,112,70,0.19457996434542993],[115,112,71,0.19691601197687159],[115,112,72,0.19895388065732675],[115,112,73,0.20071850312609713],[115,112,74,0.20224352481439858],[115,112,75,0.2035684915237429],[115,112,76,0.20473628261152554],[115,112,77,0.20579079795922453],[115,112,78,0.20677490632068474],[115,112,79,0.20772866197283546],[115,113,64,0.16234256474268013],[115,113,65,0.16739920770406083],[115,113,66,0.1724290426257599],[115,113,67,0.17743853567417106],[115,113,68,0.18200362753054133],[115,113,69,0.18502379397323732],[115,113,70,0.18775285970688757],[115,113,71,0.1901866904562769],[115,113,72,0.19233462395779644],[115,113,73,0.19421659735154914],[115,113,74,0.1958604736525764],[115,113,75,0.19729957581284419],[115,113,76,0.19857043630113216],[115,113,77,0.19971076953769212],[115,113,78,0.20075767392843857],[115,113,79,0.2017460696537155],[115,114,64,0.15763516630850735],[115,114,65,0.16242674855657677],[115,114,66,0.16717488615368353],[115,114,67,0.1714779824682675],[115,114,68,0.1748265553738412],[115,114,69,0.17792656676604685],[115,114,70,0.18075754782638037],[115,114,71,0.1833132985461631],[115,114,72,0.18559929111961],[115,114,73,0.18763023557805242],[115,114,74,0.1894278154530596],[115,114,75,0.1910186007683287],[115,114,76,0.19243214516456042],[115,114,77,0.1936992734610038],[115,114,78,0.19485056545537435],[115,114,79,0.19591504126400916],[115,115,64,0.15273467356529144],[115,115,65,0.15665043860792777],[115,115,66,0.16041768066942685],[115,115,67,0.16402537061301023],[115,115,68,0.16744302824644905],[115,115,69,0.17063724180715772],[115,115,70,0.17358821200165875],[115,115,71,0.17628789411264373],[115,115,72,0.17873789785307037],[115,115,73,0.1809475210564476],[115,115,74,0.1829319236030246],[115,115,75,0.184710447583448],[115,115,76,0.18630508929716663],[115,115,77,0.18773912827482955],[115,115,78,0.18903591810504589],[115,115,79,0.1902178434390849],[115,116,64,0.1449781391438256],[115,116,65,0.14890841023342163],[115,116,66,0.15270932507102658],[115,116,67,0.15637049644338627],[115,116,68,0.159865494450105],[115,116,69,0.1631652265474612],[115,116,70,0.16625101709567136],[115,116,71,0.16911321557323186],[115,116,72,0.17174961638871267],[115,116,73,0.17416398391309051],[115,116,74,0.17636468767630104],[115,116,75,0.17836345236415452],[115,116,76,0.1801742269399586],[115,116,77,0.18181217690099177],[115,116,78,0.18329280336574458],[115,116,79,0.18463119237586753],[115,117,64,0.13704307972530297],[115,117,65,0.14098734082652145],[115,117,66,0.14482311414590596],[115,117,67,0.14854064219797558],[115,117,68,0.1521179431846552],[115,117,69,0.15553084922658666],[115,117,70,0.15876223451165092],[115,117,71,0.1618010961344886],[115,117,72,0.1646415093811633],[115,117,73,0.16728165984988255],[115,117,74,0.16972295585087643],[115,117,75,0.17196922431108355],[115,117,76,0.17402599318964365],[115,117,77,0.1758998631896963],[115,117,78,0.17759797133246766],[115,117,79,0.1791275487427409],[115,118,64,0.12897477464632437],[115,118,65,0.13292999207828038],[115,118,66,0.13679898779624589],[115,118,67,0.14057260069092092],[115,118,68,0.14423360541095823],[115,118,69,0.14776326606850343],[115,118,70,0.1511463921685009],[115,118,71,0.15437089101378237],[115,118,72,0.1574272652884854],[115,118,73,0.16030815975454263],[115,118,74,0.16300795898449905],[115,118,75,0.1655224379246236],[115,118,76,0.1678484669529943],[115,118,77,0.1699837729688204],[115,118,78,0.17192675792303586],[115,118,79,0.1736763760771491],[115,119,64,0.12082542295992363],[115,119,65,0.12478618357198942],[115,119,66,0.12868400546914005],[115,119,67,0.13251026674861252],[115,119,68,0.13625270471013892],[115,119,69,0.13989840688170072],[115,119,70,0.14343445069103264],[115,119,71,0.14684791865836247],[115,119,72,0.15012593600901442],[115,119,73,0.15325573074666082],[115,119,74,0.15622471659765882],[115,119,75,0.15902059919248507],[115,119,76,0.16163150580817662],[115,119,77,0.16404613895631093],[115,119,78,0.16625395406520202],[115,119,79,0.16824536147306177],[115,120,64,0.11265151992730373],[115,120,65,0.11661023584876058],[115,120,66,0.12052988059377236],[115,120,67,0.12440229000222877],[115,120,68,0.12822025905351175],[115,120,69,0.13197695985852043],[115,120,70,0.13566200645626453],[115,120,71,0.13926191641796348],[115,120,72,0.14276067701833584],[115,120,73,0.14614030866411243],[115,120,74,0.14938142451085173],[115,120,75,0.15246378523500906],[115,120,76,0.15536684796881017],[115,120,77,0.15807030845071657],[115,120,78,0.1605546354945026],[115,120,79,0.1628015969350018],[115,121,64,0.10451130018894406],[115,121,65,0.10845847557537655],[115,121,66,0.11239057072310633],[115,121,67,0.1162997747461325],[115,121,68,0.12018391901804973],[115,121,69,0.12404238090326951],[115,121,70,0.1278675065905575],[115,121,71,0.1316454955028743],[115,121,72,0.13535747455014666],[115,121,73,0.13898054622359018],[115,121,74,0.14248880804249955],[115,121,75,0.14585434097491037],[115,121,76,0.149048164571126],[115,121,77,0.15204115667331322],[115,121,78,0.15307020491937126],[115,121,79,0.15396065265720027],[115,122,64,0.09646227530039608],[115,122,65,0.10038683073418897],[115,122,66,0.10431995150953943],[115,122,67,0.10825405517168175],[115,122,68,0.11219187090472704],[115,122,69,0.11613895606103468],[115,122,70,0.12009050457113359],[115,122,71,0.12403262393084188],[115,122,72,0.1279438885445129],[115,122,73,0.13179684557222682],[115,122,74,0.1355594694550939],[115,122,75,0.1391965614712441],[115,122,76,0.1421064749666524],[115,122,77,0.14294802232113335],[115,122,78,0.14666973553961268],[115,122,79,0.15039134486694694],[115,123,64,0.08855887999373477],[115,123,65,0.09244853028526684],[115,123,66,0.09636958903288094],[115,123,67,0.10031456053749606],[115,123,68,0.10429081933536292],[115,123,69,0.10830993160846296],[115,123,70,0.1123699709499252],[115,123,71,0.11645715190937872],[115,123,72,0.1218470130023265],[115,123,73,0.12906784492450385],[115,123,74,0.13625413553698776],[115,123,75,0.14336460772326481],[115,123,76,0.1472747070713104],[115,123,77,0.15063739377151625],[115,123,78,0.15397631088500854],[115,123,79,0.15732782439793627],[115,124,64,0.08085018688758963],[115,124,65,0.08469186773699514],[115,124,66,0.08858656961731089],[115,124,67,0.09481256671315241],[115,124,68,0.10189660668369827],[115,124,69,0.10908625456022025],[115,124,70,0.11638111089889512],[115,124,71,0.12376678569662652],[115,124,72,0.1312172688435205],[115,124,73,0.1386972196894948],[115,124,74,0.14616416956003236],[115,124,75,0.15230643945613304],[115,124,76,0.1553699047534774],[115,124,77,0.15836687192081275],[115,124,78,0.1613429061947819],[115,124,79,0.1643417952838627],[115,125,64,0.08273173979075385],[115,125,65,0.08957508730657168],[115,125,66,0.09652755684436552],[115,125,67,0.1035785236740052],[115,125,68,0.1107411653629496],[115,125,69,0.11803616594562986],[115,125,70,0.1254657339166378],[115,125,71,0.13301579669878696],[115,125,72,0.1406587215637014],[115,125,73,0.14835594167420982],[115,125,74,0.1560604801141927],[115,125,75,0.16073659674562765],[115,125,76,0.1634687731724607],[115,125,77,0.16612881398443882],[115,125,78,0.16876906979080647],[115,125,79,0.17144004457953874],[115,126,64,0.0917128765183604],[115,126,65,0.09855408591984792],[115,126,66,0.10552054810834557],[115,126,67,0.11260114996430748],[115,126,68,0.11981229196923883],[115,126,69,0.12717928947194035],[115,126,70,0.13470676265564335],[115,126,71,0.14238105627963918],[115,126,72,0.15017325887163388],[115,126,73,0.15804211563774084],[115,126,74,0.16593682713431893],[115,126,75,0.16911941586091012],[115,126,76,0.17155539532897798],[115,126,77,0.17391299036891741],[115,126,78,0.1762504817659703],[115,126,79,0.1786242754920868],[115,127,64,0.10102617327137824],[115,127,65,0.1078428871815595],[115,127,66,0.11479869595368473],[115,127,67,0.12188183167867578],[115,127,68,0.12911134536259955],[115,127,69,0.13651656752224767],[115,127,70,0.14410427847868],[115,127,71,0.15186130660730404],[115,127,72,0.15975779200146026],[115,127,73,0.1677503349630797],[115,127,74,0.17510768547387504],[115,127,75,0.1774341047664119],[115,127,76,0.17961269637330013],[115,127,77,0.18170636302890888],[115,127,78,0.18377839120924377],[115,127,79,0.18589019831159873],[115,128,64,0.11065731124406498],[115,128,65,0.11742857102802702],[115,128,66,0.12435030069113494],[115,128,67,0.13140991021389847],[115,128,68,0.13862850666141727],[115,128,69,0.14603877984641375],[115,128,70,0.1536493845326939],[115,128,71,0.16144767178103997],[115,128,72,0.1694031439437277],[115,128,73,0.1774707879383693],[115,128,74,0.18354077584775388],[115,128,75,0.18566080390238604],[115,128,76,0.18762258430203335],[115,128,77,0.18949290242085304],[115,128,78,0.1913390957920103],[115,128,79,0.19322666521732954],[115,129,64,0.12057615078725534],[115,129,65,0.12728301975476977],[115,129,66,0.13414917570477378],[115,129,67,0.1411610380491945],[115,129,68,0.14834118844965602],[115,129,69,0.15572502766431748],[115,129,70,0.16332279309496583],[115,129,71,0.17112238111355504],[115,129,72,0.1790929434645158],[115,129,73,0.18718835746694673],[115,129,74,0.19182849946913785],[115,129,75,0.19378105597156287],[115,129,76,0.19556612346051272],[115,129,77,0.19725344329936564],[115,129,78,0.19891346409527674],[115,129,79,0.20061484947577327],[115,130,64,0.13073506989897854],[115,130,65,0.137361280054314],[115,130,66,0.14415303883798627],[115,130,67,0.15109560308689976],[115,130,68,0.15821250180634883],[115,130,69,0.16554126336359118],[115,130,70,0.17309344542949676],[115,130,71,0.18085751155917112],[115,130,72,0.1888025251450055],[115,130,73,0.19688171437279564],[115,130,74,0.19995741906743308],[115,130,75,0.20177830052689216],[115,130,76,0.2034237409579663],[115,130,77,0.20496557957518266],[115,130,78,0.20647650101506576],[115,130,79,0.2080274694907014],[115,131,64,0.1410673903828267],[115,131,65,0.14760000855825142],[115,131,66,0.15430198115441934],[115,131,67,0.1611572218180202],[115,131,68,0.16818978142957017],[115,131,69,0.17543886606019726],[115,131,70,0.1829171644062864],[115,131,71,0.19061374951266502],[115,131,72,0.19849783562608714],[115,131,73,0.20594839327106382],[115,131,74,0.20791918052053268],[115,131,75,0.20963839336946774],[115,131,76,0.2111754660915943],[115,131,77,0.21260359842699872],[115,131,78,0.2139969565418741],[115,131,79,0.2154280581097426],[115,132,64,0.1514858659012195],[115,132,65,0.15791596715539072],[115,132,66,0.16451697141476096],[115,132,67,0.17127125167179308],[115,132,68,0.1782031108920101],[115,132,69,0.1853531960997785],[115,132,70,0.19273526324978094],[115,132,71,0.20033908491823874],[115,132,72,0.20813424801392047],[115,132,73,0.21381465811522518],[115,132,74,0.21571141785827053],[115,132,75,0.21735028229274297],[115,132,76,0.21880134450416713],[115,132,77,0.22013860448279446],[115,132,78,0.2214371363799377],[115,132,79,0.22277044155723735],[115,133,64,0.16188021647355716],[115,133,65,0.16820215675975786],[115,133,66,0.1746945845315861],[115,133,67,0.18133809915388618],[115,133,68,0.18815714636941613],[115,133,69,0.19519381861787746],[115,133,70,0.20246303297750512],[115,133,71,0.2099554329261457],[115,133,72,0.21764121543727727],[115,133,73,0.22152368089106964],[115,133,74,0.2233572258323074],[115,133,75,0.2249274539963278],[115,133,76,0.22630473823048788],[115,133,77,0.22756348812794494],[115,133,78,0.2287792937690803],[115,133,79,0.23002625663311013],[115,134,64,0.17213471716462184],[115,134,65,0.17834356776510302],[115,134,66,0.1847208489829424],[115,134,67,0.19124512000854038],[115,134,68,0.19794093053368075],[115,134,69,0.20485195514961796],[115,134,70,0.2119944733997311],[115,134,71,0.219360252090666],[115,134,72,0.2269203908081727],[115,134,73,0.22913938428817657],[115,134,74,0.23091507541963827],[115,134,75,0.23242217237196278],[115,134,76,0.23373098723498045],[115,134,77,0.23491600692084574],[115,134,78,0.2360530216456368],[115,134,79,0.23721644142429552],[115,135,64,0.18215210697323483],[115,135,65,0.18824341433493733],[115,135,66,0.1944997491991423],[115,135,67,0.20089737456127707],[115,135,68,0.20746095024850836],[115,135,69,0.21423593524196868],[115,135,70,0.2212402275477681],[115,135,71,0.22846701184881624],[115,135,72,0.23465640505111718],[115,135,73,0.23671223816193562],[115,135,74,0.23843125437214338],[115,135,75,0.23987599739691695],[115,135,76,0.2411164049391349],[115,135,77,0.24222674915296],[115,135,78,0.24328275731228535],[115,135,79,0.24435892052418326],[115,136,64,0.19185492759117714],[115,136,65,0.19782477563269935],[115,136,66,0.20395516633323396],[115,136,67,0.21021985965459128],[115,136,68,0.2166436646580179],[115,136,69,0.2232740457357109],[115,136,70,0.23013078829941377],[115,136,71,0.23720879598779393],[115,136,72,0.2422723011852472],[115,136,73,0.24427482019281177],[115,136,74,0.24593494836102253],[115,136,75,0.24731438377674403],[115,136,76,0.24848240687449513],[115,136,77,0.24951282098130378],[115,136,78,0.25048107207704196],[115,136,79,0.25146155561720457],[115,137,64,0.20118513889238962],[115,137,65,0.20703014492990746],[115,137,66,0.21303035892215522],[115,137,67,0.21915690874128618],[115,137,68,0.22543481364613335],[115,137,69,0.23191374524369995],[115,137,70,0.23861562430295605],[115,137,71,0.24553735209465022],[115,137,72,0.24989789039654065],[115,137,73,0.2518429187827712],[115,137,74,0.25343935458483674],[115,137,75,0.2547477772805561],[115,137,76,0.25583656029190166],[115,137,77,0.2567788193080469],[115,137,78,0.2576495377174864],[115,137,79,0.2585228769732761],[115,138,64,0.2101041329903978],[115,138,65,0.21582137551525854],[115,138,66,0.22168783520492594],[115,138,67,0.22767197548959012],[115,138,68,0.233799098349471],[115,138,69,0.24012123517007458],[115,138,70,0.24666264236207147],[115,138,71,0.2534224525310585],[115,138,72,0.2575347244770195],[115,138,73,0.2594163862605929],[115,138,74,0.2609425849264744],[115,138,75,0.26217254400615747],[115,138,76,0.2631735136767893],[115,138,77,0.2640177344869111],[115,138,78,0.26477957490278625],[115,138,79,0.26553285044529806],[115,139,64,0.2185931486823782],[115,139,65,0.22418002525391129],[115,139,66,0.22990961896871726],[115,139,67,0.23574780278552862],[115,139,68,0.24172023561520561],[115,139,69,0.24788138915421148],[115,139,70,0.2542579881391641],[115,139,71,0.2608515687414882],[115,139,72,0.2651682146120877],[115,139,73,0.2669797407696654],[115,139,74,0.2684283571713906],[115,139,75,0.2695717312603817],[115,139,76,0.2704758050639209],[115,139,77,0.27121178199269463],[115,139,78,0.2718532829866626],[115,139,79,0.27247367969154396],[115,140,64,0.22665408808567913],[115,140,65,0.23210810162217127],[115,140,66,0.23769791075838226],[115,140,67,0.24338697897150988],[115,140,68,0.24920138823787058],[115,140,69,0.2551980427555555],[115,140,70,0.26140618695844003],[115,140,71,0.26782986062037983],[115,140,72,0.2727678397903623],[115,140,73,0.27450251529912345],[115,140,74,0.27586647288396454],[115,140,75,0.27691565881798874],[115,140,76,0.2777145481126022],[115,140,77,0.27833316224368726],[115,140,78,0.2788442506198297],[115,140,79,0.2793206433585115],[115,141,64,0.23431073728579965],[115,141,65,0.23962920904432217],[115,141,66,0.24507614627485],[115,141,67,0.25061288313797125],[115,141,68,0.2562659727750396],[115,141,69,0.2620946451502304],[115,141,70,0.26813062643479957],[115,141,71,0.27438048260058084],[115,141,72,0.28028706588809726],[115,141,73,0.28193935239217915],[115,141,74,0.28321308061151107],[115,141,75,0.28416233939135876],[115,141,76,0.28484999496478436],[115,141,77,0.28534474781679675],[115,141,78,0.2857183466654667],[115,141,79,0.2860429669761785],[115,142,64,0.24161039285244407],[115,142,65,0.2467901003840566],[115,142,66,0.25209045380133216],[115,142,67,0.2574710212859046],[115,142,68,0.2629588467300681],[115,142,69,0.2686152745861934],[115,142,70,0.27447438261912666],[115,142,71,0.2805452080799675],[115,142,72,0.2868152892120406],[115,142,73,0.2892298431227021],[115,142,74,0.29041072314484623],[115,142,75,0.29125772720141935],[115,142,76,0.2918319749619762],[115,142,77,0.29220069734038906],[115,142,78,0.2924344909344229],[115,142,79,0.29260472933516096],[115,143,64,0.24861095291682295],[115,143,65,0.2536480822896217],[115,143,66,0.2587974043968658],[115,143,67,0.2640171545073001],[115,143,68,0.2693348558542194],[115,143,69,0.2748136572517889],[115,143,70,0.2804897726993111],[115,143,71,0.28637458622086115],[115,143,72,0.292458097961852],[115,143,73,0.29630696977193244],[115,143,74,0.2973959373746223],[115,143,75,0.2981423939291811],[115,143,76,0.29860556850494335],[115,143,77,0.29885105415811664],[115,143,78,0.29894811169856866],[115,143,79,0.29896712193822633],[115,144,64,0.25532869228577093],[115,144,65,0.2602200489943119],[115,144,66,0.26521449240672024],[115,144,67,0.2702694437609468],[115,144,68,0.2754128893168066],[115,144,69,0.28070940449441395],[115,144,70,0.28619706413664026],[115,144,71,0.2918894234015482],[115,144,72,0.29777885560747863],[115,144,73,0.30312921319383607],[115,144,74,0.3041277026000405],[115,144,75,0.30477605317645406],[115,144,76,0.3051314701374994],[115,144,77,0.3052577441629537],[115,144,78,0.30522261370963255],[115,144,79,0.305095266699927],[115,145,64,0.2617676364811477],[115,145,65,0.26651090897126145],[115,145,66,0.2713475360484166],[115,145,67,0.27623471969975566],[115,145,68,0.28120089270753407],[115,145,69,0.2863116259605241],[115,145,70,0.2916065301041489],[115,145,71,0.29710111118690347],[115,145,72,0.30278998745475066],[115,145,73,0.308650020796815],[115,145,74,0.3105734112573417],[115,145,75,0.31112597913665163],[115,145,76,0.31137702369254316],[115,145,77,0.31138838195039004],[115,145,78,0.31122609145967717],[115,145,79,0.31095794991822434],[115,146,64,0.26793185355822824],[115,146,65,0.2725255125616834],[115,146,66,0.2772022027354355],[115,146,67,0.281919556372979],[115,146,68,0.28670643364957],[115,146,69,0.2916289268250266],[115,146,70,0.29672781529992],[115,146,71,0.3020202961613199],[115,146,72,0.3075030676297783],[115,146,73,0.31315533541679896],[115,146,74,0.3167027005280214],[115,146,75,0.31716177919197297],[115,146,76,0.3173119868438721],[115,146,77,0.3172130712722062],[115,146,78,0.3169292012204908],[115,146,79,0.31652659224362173],[115,147,64,0.273824988395739],[115,147,65,0.27826818252144137],[115,147,66,0.28278353846858134],[115,147,67,0.2873298007280931],[115,147,68,0.2919362336557779],[115,147,69,0.29666894677868993],[115,147,70,0.30156948914183174],[115,147,71,0.3066564563989334],[115,147,72,0.3119284295487721],[115,147,73,0.3173668452447734],[115,147,74,0.3224877654794595],[115,147,75,0.32285563388584143],[115,147,76,0.32290868427919545],[115,147,77,0.32270445801000547],[115,147,78,0.32230510102084786],[115,147,79,0.3217750638209524],[115,148,64,0.2794498778806216],[115,148,65,0.2837423273755798],[115,148,66,0.2880955810095049],[115,148,67,0.2924701866207503],[115,148,68,0.29689578482753587],[115,148,69,0.30143798309393444],[115,148,70,0.3061386805975136],[115,148,71,0.31101755500158657],[115,148,72,0.31607484644518746],[115,148,73,0.32129408208544885],[115,148,74,0.326644734440023],[115,148,75,0.32818250119737685],[115,148,76,0.328142142890758],[115,148,77,0.32783778532857155],[115,148,78,0.3273294151614185],[115,148,79,0.3266795482105914],[115,149,64,0.28480824719237335],[115,149,65,0.2889501377990638],[115,149,66,0.29314105706557986],[115,149,67,0.297344033572088],[115,149,68,0.30158905164410255],[115,149,69,0.3059406980219191],[115,149,70,0.3104407949015304],[115,149,71,0.3151097709478153],[115,149,72,0.3199492821791226],[115,149,73,0.3249447825963783],[115,149,74,0.33006803830744624],[115,149,75,0.33312028501983526],[115,149,76,0.33299020895538206],[115,149,77,0.33259095106547076],[115,149,78,0.33198022342318656],[115,149,79,0.33121845535895295],[115,150,64,0.2899004873905954],[115,150,65,0.2938923662390872],[115,150,66,0.2979211637106221],[115,150,67,0.301953030506144],[115,150,68,0.3060182580821177],[115,150,69,0.3101799107637243],[115,150,70,0.31447931240012755],[115,150,71,0.318937307483247],[115,150,72,0.3235567125403566],[115,150,73,0.32832472656215544],[115,150,74,0.33321529473553374],[115,150,75,0.33764996775602407],[115,150,76,0.33743364728317193],[115,150,77,0.336944567415602],[115,150,78,0.33623807512075987],[115,150,79,0.3353723838752419],[115,151,64,0.29472551451222284],[115,151,65,0.2985681899955567],[115,151,66,0.3024354342653891],[115,151,67,0.3062971046977317],[115,151,68,0.3101837603005889],[115,151,69,0.3141564742523355],[115,151,70,0.318255669756015],[115,151,71,0.32250227827341554],[115,151,72,0.32690001724590567],[115,151,73,0.3314376361203908],[115,151,74,0.33609112547653225],[115,151,75,0.3408258841852433],[115,151,76,0.34145622231921],[115,151,77,0.34088202297052655],[115,151,78,0.3400860281476255],[115,151,79,0.3391241328600579],[115,152,64,0.29928071039446663],[115,152,65,0.3029751579844356],[115,152,66,0.3066816888681325],[115,152,67,0.31037437616566854],[115,152,68,0.3140840051294127],[115,152,69,0.31786923698292613],[115,152,70,0.3217692237445378],[115,152,71,0.3258046715370309],[115,152,72,0.329979942828448],[115,152,73,0.3342851361047932],[115,152,74,0.3386981382988133],[115,152,75,0.34318664540912913],[115,152,76,0.34504476118838795],[115,152,77,0.3443895471754982],[115,152,78,0.34350971315938156],[115,152,79,0.34245876352482346],[115,153,64,0.3035619454530874],[115,153,65,0.3071092214208355],[115,153,66,0.3106560699759717],[115,153,67,0.31418119775495845],[115,153,68,0.31771557460633765],[115,153,69,0.3213150901338122],[115,153,70,0.32501729787533923],[115,153,71,0.3288423923783692],[115,153,72,0.33279513661055876],[115,153,73,0.3368667756675313],[115,153,74,0.3410369326235956],[115,153,75,0.34527548245860096],[115,153,76,0.3481891986769496],[115,153,77,0.3474562772690344],[115,153,78,0.34649742304012376],[115,153,79,0.34536371083600276],[115,154,64,0.3075636836649982],[115,154,65,0.3109648486768582],[115,154,66,0.31435316305431404],[115,154,67,0.31771228116624645],[115,154,68,0.32107331682016826],[115,154,69,0.32448910023129823],[115,154,70,0.32799531208220234],[115,154,71,0.33161138354357506],[115,154,72,0.33534225196334966],[115,154,73,0.3391801113443613],[115,154,74,0.3431061539646382],[115,154,75,0.3470922995600582],[115,154,76,0.35088260414733863],[115,154,77,0.35007432777263575],[115,154,78,0.34904022779854377],[115,154,79,0.34782894541677634],[115,155,64,0.31127917002907507],[115,155,65,0.3145352245929151],[115,155,66,0.3177662027336869],[115,155,67,0.32096090921129766],[115,155,68,0.32415056333662634],[115,155,69,0.32738472762816084],[115,155,70,0.3306969957378475],[115,155,71,0.33410582483703677],[115,155,72,0.3376161250565386],[115,155,73,0.34122085173147004],[115,155,74,0.34490259729275236],[115,155,75,0.34863517969258684],[115,155,76,0.3523852243095804],[115,155,77,0.3522388626015199],[115,155,78,0.35113211504355935],[115,155,79,0.34984718594093056],[115,156,64,0.3147007008085376],[115,156,65,0.3178125345497178],[115,156,66,0.32088736474027035],[115,156,67,0.32391923459853045],[115,156,68,0.32693943350676563],[115,156,69,0.32999413108684605],[115,156,70,0.33311468426920765],[115,156,71,0.3363184114497027],[115,156,72,0.3396100233193056],[115,156,73,0.3429830639517354],[115,156,74,0.34642135945213426],[115,156,75,0.34990047149684866],[115,156,76,0.35338915313323804],[115,156,77,0.35394816986999167],[115,156,78,0.3527701561934761],[115,156,79,0.3514141622582596],[115,157,64,0.31781997689333763],[115,157,65,0.32078833364230447],[115,157,66,0.32370814393914205],[115,157,67,0.3265786655837427],[115,157,68,0.329431225987186],[115,157,69,0.3323085587856296],[115,157,70,0.3352396996731308],[115,157,71,0.3382407114723273],[115,157,72,0.3413159658486002],[115,157,73,0.3444594421012154],[115,157,74,0.3476560407642573],[115,157,75,0.35088290976027026],[115,157,76,0.35411078087072173],[115,157,77,0.3552037394684504],[115,157,78,0.35395469857889283],[115,157,79,0.35252892949888776],[115,158,64,0.32062854066146235],[115,158,65,0.3234540013371806],[115,158,66,0.3262198188675694],[115,158,67,0.3289303388579717],[115,158,68,0.33161689783636616],[115,158,69,0.33431882609883623],[115,158,70,0.3370628152624402],[115,158,71,0.33986360289303014],[115,158,72,0.34272511602369354],[115,158,73,0.3456416378840163],[115,158,74,0.3485989959672346],[115,158,75,0.35157576955746983],[115,158,76,0.35454451484464705],[115,158,77,0.35601034349280924],[115,158,78,0.354689583607634],[115,158,79,0.3531942334154503],[115,159,64,0.3231182967631034],[115,159,65,0.32580128203806985],[115,159,66,0.32841400317880104],[115,159,67,0.3309656800860605],[115,159,68,0.3334876315913815],[115,159,69,0.3360158805399231],[115,159,70,0.3385748050069705],[115,159,71,0.34117779040937524],[115,159,72,0.34382824661192035],[115,159,73,0.3465206536644419],[115,159,74,0.3492416346533737],[115,159,75,0.3519710541334012],[115,159,76,0.35468314059643574],[115,159,77,0.35637611961045795],[115,159,78,0.35498239116906],[115,159,79,0.3534169272361814],[115,160,64,0.3252821173020826],[115,160,65,0.32782291203573444],[115,160,66,0.3302832844655641],[115,160,67,0.3326770525568659],[115,160,68,0.33503549077499123],[115,160,69,0.33739145429968015],[115,160,70,0.33976707787451366],[115,160,71,0.3421744024213788],[115,160,72,0.3446162776816569],[115,160,73,0.347087298190436],[115,160,74,0.34957477138604004],[115,160,75,0.35205971662787694],[115,160,76,0.35451789387512933],[115,160,77,0.3563126574507686],[115,160,78,0.35484471046615457],[115,160,79,0.3532084403195969],[115,161,64,0.32711453194454376],[115,161,65,0.3295133333726065],[115,161,66,0.3318219509866315],[115,161,67,0.3340584944588761],[115,161,68,0.3362541643343427],[115,161,69,0.3384388048607893],[115,161,70,0.3406323976223397],[115,161,71,0.34284566861321447],[115,161,72,0.3450808876744276],[115,161,73,0.3473327052716138],[115,161,74,0.34958902569876665],[115,161,75,0.3518319157537813],[115,161,76,0.35403854790096395],[115,161,77,0.35583508811234843],[115,161,78,0.35429243747659944],[115,161,79,0.35258529892246987],[115,162,64,0.32861250354473587],[115,162,65,0.3308694952126116],[115,162,66,0.3330268068784394],[115,162,67,0.3351065453523881],[115,162,68,0.3371398005683862],[115,162,69,0.33915354422353905],[115,162,70,0.3411656885401553],[115,162,71,0.3431856785769661],[115,162,72,0.34521519802772016],[115,162,73,0.3472489157277338],[115,162,74,0.3492752722038787],[115,162,75,0.3512773055565306],[115,162,76,0.35323351592259383],[115,162,77,0.354962176882877],[115,162,78,0.35334609925771926],[115,162,79,0.35156969941621397],[115,163,64,0.32977628994308605],[115,163,65,0.3318917433718988],[115,163,66,0.3338980764981543],[115,163,67,0.3358211624726627],[115,163,68,0.33769193116291246],[115,163,69,0.3395345573370386],[115,163,70,0.341364927701439],[115,163,71,0.3431912219830231],[115,163,72,0.3450145317850476],[115,163,73,0.346829522960737],[115,163,74,0.3486251410662376],[115,163,75,0.3503853594006871],[115,163,76,0.35208996909439755],[115,163,77,0.3537154106672202],[115,163,78,0.35203120532620563],[115,163,79,0.35019013431412616],[115,164,64,0.33060666277991807],[115,164,65,0.33258069842077814],[115,164,66,0.3344359548225147],[115,164,67,0.33620194935330977],[115,164,68,0.3379093838707781],[115,164,69,0.33957961157021077],[115,164,70,0.3412264706249011],[115,164,71,0.3428568559096528],[115,164,72,0.3444712534038135],[115,164,73,0.3460643205040586],[115,164,74,0.3476255120204025],[115,164,75,0.34913975156925287],[115,164,76,0.35058814802407573],[115,164,77,0.35194875663829894],[115,164,78,0.3503839268845515],[115,164,79,0.3484870175587331],[115,165,64,0.331081856686997],[115,165,65,0.33291189422641454],[115,165,66,0.334613140580207],[115,165,67,0.33621865575195076],[115,165,68,0.33775883348936536],[115,165,69,0.3392521669699088],[115,165,70,0.34071043409522983],[115,165,71,0.3421392571621067],[115,165,72,0.3435385504270417],[115,165,73,0.3449030158707521],[115,165,74,0.3462226871480125],[115,165,75,0.34748352164299323],[115,165,76,0.3486680404907494],[115,165,77,0.34975601637274834],[115,165,78,0.3484799214983423],[115,165,79,0.3465386438167959],[115,166,64,0.33117561296445497],[115,166,65,0.33285573734979035],[115,166,66,0.33439668907349696],[115,166,67,0.3358349224486718],[115,166,68,0.33720044045951064],[115,166,69,0.3385088890280458],[115,166,70,0.33977003765883135],[115,166,71,0.3409883191049799],[115,166,72,0.34216318373484655],[115,166,73,0.3432895046311931],[115,166,74,0.34435803363287854],[115,166,75,0.3453559084577438],[115,166,76,0.3462672109791248],[115,166,77,0.34707357666834027],[115,166,78,0.3463951176715163],[115,166,79,0.34442161969259844],[115,167,64,0.3308697399337007],[115,167,65,0.3323914508974005],[115,167,66,0.33376326057948386],[115,167,67,0.33502481070179135],[115,167,68,0.33620563441637186],[115,167,69,0.337318607412613],[115,167,70,0.33837161229050644],[115,167,71,0.33936804587294034],[115,167,72,0.3403070711587382],[115,167,73,0.3411839230687211],[115,167,74,0.3419902684413887],[115,167,75,0.34271462065636654],[115,167,76,0.3433428091897943],[115,167,77,0.34385850433734616],[115,167,78,0.3441849141027505],[115,167,79,0.3421910084384169],[115,168,64,0.3301525064578269],[115,168,65,0.33150543841033286],[115,168,66,0.33269744895089703],[115,168,67,0.33377109580461095],[115,168,68,0.33475537223689067],[115,168,69,0.3356605331360213],[115,168,70,0.336492767573093],[115,168,71,0.3372546578588846],[115,168,72,0.33794531799375543],[115,168,73,0.3385605897308731],[115,168,74,0.3390932969843509],[115,168,75,0.33953355922697753],[115,168,76,0.33986916443906157],[115,168,77,0.3400860020915514],[115,168,78,0.34016855657399503],[115,168,79,0.3398831383771019],[115,169,64,0.32901687048745887],[115,169,65,0.33018947410946525],[115,169,66,0.33118992923224433],[115,169,67,0.33206337288240806],[115,169,68,0.3328382022555727],[115,169,69,0.3335222773156127],[115,169,70,0.3341203580513506],[115,169,71,0.33463449663576095],[115,169,72,0.33506405026239455],[115,169,73,0.3354057563590396],[115,169,74,0.33565387121764856],[115,169,75,0.3358003729825399],[115,169,76,0.3358352298447931],[115,169,77,0.3357467342007258],[115,169,78,0.3355219034474301],[115,169,79,0.33514694800964084],[115,170,64,0.3274586182034031],[115,170,65,0.3284388027662276],[115,170,66,0.32923551479013285],[115,170,67,0.3298960725060163],[115,170,68,0.3304482391291683],[115,170,69,0.330897782440142],[115,170,70,0.3312483653730562],[115,170,71,0.33150185067022053],[115,170,72,0.33165817570361766],[115,170,73,0.3317152955229572],[115,170,74,0.331669195511247],[115,170,75,0.33151397491976364],[115,170,76,0.33124200244734764],[115,170,77,0.33084414492526787],[115,170,78,0.33031007006964785],[115,170,79,0.3296286241698387],[115,171,64,0.32547441257657983],[115,171,65,0.32625014805200936],[115,171,66,0.32683112284869187],[115,171,67,0.3272663850554953],[115,171,68,0.3275830483313974],[115,171,69,0.3277851651771789],[115,171,70,0.3278756953131371],[115,171,71,0.3278567009925505],[115,171,72,0.3277290717282285],[115,171,73,0.3274923242865653],[115,171,74,0.32714447970667937],[115,171,75,0.32668201897910454],[115,171,76,0.3260999188965761],[115,171,77,0.3253917694700331],[115,171,78,0.32454997418724046],[115,171,79,0.3235660342808029],[115,172,64,0.32305975004602966],[115,172,65,0.32361962809839073],[115,172,66,0.32397364719935434],[115,172,67,0.32417209264523267],[115,172,68,0.3242414391365465],[115,172,69,0.32418446963429753],[115,172,70,0.3240038886552322],[115,172,71,0.32370238586695727],[115,172,72,0.3232821994629089],[115,172,73,0.3227447631143875],[115,172,74,0.322090438667529],[115,172,75,0.32131833661381287],[115,172,76,0.32042622622368205],[115,172,77,0.31941053709550865],[115,172,78,0.3182664537378035],[115,172,79,0.31698810467276456],[115,173,64,0.3202068238937027],[115,173,65,0.32054057687691456],[115,173,66,0.3206577367298848],[115,173,67,0.32060930729686216],[115,173,68,0.32042116482553756],[115,173,69,0.32009532986187594],[115,173,70,0.31963474478072523],[115,173,71,0.31904318338312637],[115,173,72,0.3183246428837129],[115,173,73,0.3174828291081376],[115,173,74,0.3165207375102563],[115,173,75,0.31544033246122644],[115,173,76,0.31424232710439803],[115,173,77,0.31292606591243677],[115,173,78,0.31148951192801855],[115,173,79,0.30992934051831045],[115,174,64,0.31690229277080156],[115,174,65,0.31700126988161115],[115,174,66,0.3168734782909901],[115,174,67,0.3165701139191016],[115,174,68,0.31611652872042567],[115,174,69,0.31551454025783127],[115,174,70,0.31476785668852947],[115,174,71,0.31388181076455385],[115,174,72,0.3128625719163024],[115,174,73,0.3117164625421383],[115,174,74,0.3104493815844164],[115,174,75,0.3090663382942773],[115,174,76,0.30757109890788614],[115,174,77,0.3059659487771041],[115,174,78,0.30425157231959066],[115,174,79,0.3024270529788238],[115,175,64,0.31313683609439724],[115,175,65,0.31299424318420616],[115,175,66,0.31261540823935324],[115,175,67,0.31205119103225415],[115,175,68,0.31132651850516746],[115,175,69,0.3104435968504004],[115,175,70,0.3094074447464586],[115,175,71,0.3082254315506145],[115,175,72,0.3069063028111243],[115,175,73,0.30545932231202794],[115,175,74,0.30389353422586773],[115,175,75,0.3022171487491917],[115,175,76,0.30043705439261337],[115,175,77,0.29855845989328167],[115,175,78,0.2965846685147538],[115,175,79,0.29451698729945913],[115,176,64,0.3089430465818902],[115,176,65,0.3085536095407461],[115,176,66,0.3079190582471796],[115,176,67,0.3070893528926251],[115,176,68,0.30608907548325887],[115,176,69,0.3049213943385897],[115,176,70,0.3035931596905326],[115,176,71,0.30211422854115777],[115,176,72,0.3004962994928688],[115,176,73,0.2987518774772385],[115,176,74,0.2968933724675508],[115,176,75,0.2949323360356872],[115,176,76,0.2928788393860027],[115,176,77,0.29074099626922334],[115,176,78,0.28852463395024663],[115,176,79,0.2862331151772426],[115,177,64,0.3043658537338493],[115,177,65,0.30372608284227304],[115,177,66,0.30283282810183465],[115,177,67,0.3017345663899526],[115,177,68,0.300455590514004],[115,177,69,0.29900056593445745],[115,177,70,0.29737865204441144],[115,177,71,0.2956025996581196],[115,177,72,0.29368739400564403],[115,177,73,0.291649041683898],[115,177,74,0.2895035061626318],[115,177,75,0.2872657961947044],[115,177,76,0.2849492112262423],[115,177,77,0.2825647476461592],[115,177,78,0.2801206694582546],[115,177,79,0.2776222467051968],[115,178,64,0.299450940769983],[115,178,65,0.29855951389202817],[115,178,66,0.29740670036730077],[115,178,67,0.29603891807186916],[115,178,68,0.294480208213953],[115,178,69,0.29273721896731636],[115,178,70,0.29082184082761714],[115,178,71,0.28875006670606734],[115,178,72,0.28654044506094334],[115,178,73,0.28421269139749283],[115,178,74,0.28178646324133083],[115,178,75,0.27928030341613724],[115,178,76,0.2767107561767384],[115,178,77,0.27409166046577893],[115,178,78,0.27143362427866347],[115,178,79,0.2687436838399412],[115,179,64,0.2942441158864225],[115,179,65,0.29310217244320913],[115,179,66,0.29169141583330893],[115,179,67,0.29005566323530235],[115,179,68,0.28821872847258106],[115,179,69,0.2861896673844535],[115,179,70,0.28398345633326555],[115,179,71,0.28161960926988794],[115,179,72,0.2791204461435201],[115,179,73,0.276509534121473],[115,179,74,0.2738103072132663],[115,179,75,0.2710448695943301],[115,179,76,0.26823298761919906],[115,179,77,0.2653912752048381],[115,179,78,0.2625325769543373],[115,179,79,0.2596655530825338],[115,180,64,0.28879067544550624],[115,180,65,0.28740202225566935],[115,180,66,0.285737645118353],[115,180,67,0.283838276028273],[115,180,68,0.2817275157581488],[115,180,69,0.2794171812888284],[115,180,70,0.27692561205403676],[115,180,71,0.2742760429868912],[115,180,72,0.2714946964471981],[115,180,73,0.26860906112046096],[115,180,74,0.2656463639452402],[115,180,75,0.2626322408024953],[115,180,76,0.25958961137034764],[115,180,77,0.2565377632129985],[115,180,78,0.2534916498361932],[115,180,79,0.2504614071067658],[115,181,64,0.2831347586900161],[115,181,65,0.28150598873793],[115,181,66,0.27959515597652834],[115,181,67,0.27743950010148744],[115,181,68,0.2750624157494106],[115,181,69,0.2724787530561052],[115,181,70,0.26971040531859064],[115,181,71,0.2667844417904523],[115,181,72,0.2637310342888347],[115,181,73,0.26058158436395773],[115,181,74,0.2573670575143713],[115,181,75,0.25411653058551387],[115,181,76,0.2508559581355122],[115,181,77,0.2476071631934217],[115,181,78,0.24438705747428696],[115,181,79,0.24120709575585633],[115,182,64,0.2773186935521957],[115,182,65,0.2754592187169698],[115,182,66,0.2733119758328954],[115,182,67,0.2709103993229543],[115,182,68,0.2682776788021526],[115,182,69,0.26543187954682845],[115,182,70,0.26239854617503056],[115,182,71,0.2592086036984866],[115,182,72,0.2558961326273965],[115,182,73,0.2524963573884198],[115,182,74,0.24904385492221948],[115,182,75,0.24557098996038218],[115,182,76,0.2421065831062905],[115,182,77,0.2386748174636179],[115,182,78,0.23529438917276416],[115,182,79,0.2319779068332356],[115,183,64,0.27138233310709586],[115,183,65,0.269304331855403],[115,183,66,0.26693354904815186],[115,183,67,0.26429940804442753],[115,183,68,0.2614248897351297],[115,183,69,0.2583313599059562],[115,183,70,0.25504801403621113],[115,183,71,0.2516095597010548],[115,183,72,0.24805385629987586],[115,183,73,0.24441977976498827],[115,183,74,0.2407453194502778],[115,183,75,0.23706591401409535],[115,183,76,0.2334130327160619],[115,183,77,0.22981300814666308],[115,183,78,0.22628612600492817],[115,183,79,0.22284597713679],[115,184,64,0.26536238220086633],[115,184,65,0.263080663214841],[115,184,66,0.2605018883918553],[115,184,67,0.2576513803868427],[115,184,68,0.2545519033988679],[115,184,69,0.2512281084223536],[115,184,70,0.2477127415846904],[115,184,71,0.2440441252882037],[115,184,72,0.24026368057755965],[115,184,73,0.2364136848579382],[115,184,74,0.23253527244186065],[115,184,75,0.22866668500091952],[115,184,76,0.22484177858718118],[115,184,77,0.2210887934709706],[115,184,78,0.21742939262061403],[115,184,79,0.21387797422932645],[115,185,64,0.2592917137670227],[115,185,65,0.25682349644497665],[115,185,66,0.25405472018375685],[115,185,67,0.25100663799255013],[115,185,68,0.2477017854725209],[115,185,69,0.24416798190473776],[115,185,70,0.24044132542246943],[115,185,71,0.23656349415129987],[115,185,72,0.23257917064445127],[115,185,73,0.22853371056455368],[115,185,74,0.22447106330942632],[115,185,75,0.2204319518641974],[115,185,76,0.21645231873657506],[115,185,77,0.21256204439963897],[115,185,78,0.20878394423078006],[115,185,79,0.20513304950028208],[115,186,64,0.2531986743272662],[115,186,65,0.25056328706003295],[115,186,66,0.24762462254482845],[115,186,67,0.24440001567491818],[115,186,68,0.24091175791834848],[115,186,69,0.23719062101777272],[115,186,70,0.23327576294213298],[115,186,71,0.2292118735883787],[115,186,72,0.2250465216041821],[115,186,73,0.22082775274032804],[115,186,74,0.21660194758942852],[115,186,75,0.21241194614167053],[115,186,76,0.2082954461517657],[115,186,77,0.20428368186752005],[115,186,78,0.2004003892232145],[115,186,79,0.19666106315426643],[115,187,64,0.24710637816000144],[115,187,65,0.24432487524959617],[115,187,66,0.24123815618517713],[115,187,67,0.2378599043826829],[115,187,68,0.2342121485123391],[115,187,69,0.23032830501447046],[115,187,70,0.22625021489354258],[115,187,71,0.22202516114830512],[115,187,72,0.21770315863443002],[115,187,73,0.21333450103600266],[115,187,74,0.20896757290065782],[115,187,75,0.20464693425953073],[115,187,76,0.20041168490872832],[115,187,77,0.1962941149771486],[115,187,78,0.1923186479499997],[115,187,79,0.18850108186232362],[115,188,64,0.24103198960686117],[115,188,65,0.2381266876570628],[115,188,66,0.2349149871428539],[115,188,67,0.23140729088482903],[115,188,68,0.22762534386058755],[115,188,69,0.22360481929628798],[115,188,70,0.21938979312131726],[115,188,71,0.21502966205729634],[115,188,72,0.21057639692606978],[115,188,73,0.20608205690229428],[115,188,74,0.2015965727040003],[115,188,75,0.19716580627622576],[115,188,76,0.1928298940735524],[115,188,77,0.1886218805905728],[115,188,78,0.18456664832883077],[115,188,79,0.18068014992866024],[115,189,64,0.2349859929781102],[115,189,65,0.23197992754883584],[115,189,66,0.22866700087840078],[115,189,67,0.22505479357468477],[115,189,68,0.2211647453071621],[115,189,69,0.2170343352332258],[115,189,70,0.21270937295588135],[115,189,71,0.2082408469874698],[115,189,72,0.20368216107088633],[115,189,73,0.19908663355708275],[115,189,74,0.19450526781437974],[115,189,75,0.18998480120513098],[115,189,76,0.18556603971424346],[115,189,77,0.1812824848554481],[115,189,78,0.17715925901885696],[115,189,79,0.17321233496132987],[115,190,64,0.228971449510355],[115,190,65,0.2258877527895722],[115,190,66,0.22249740712344027],[115,190,67,0.21880569378785467],[115,190,68,0.2148337271388634],[115,190,69,0.21062030168131973],[115,190,70,0.20621242975329265],[115,190,71,0.20166214974891425],[115,190,72,0.19702376359497584],[115,190,73,0.1923513377565014],[115,190,74,0.18769647567742084],[115,190,75,0.18310636912353975],[115,190,76,0.17862213544504102],[115,190,77,0.17427744731823644],[115,190,78,0.17009746106501297],[115,190,79,0.1660980491874619],[115,191,64,0.22298324082471782],[115,191,65,0.21984444103343095],[115,191,66,0.21639983487792816],[115,191,67,0.21265296202783507],[115,191,68,0.20862459649576015],[115,191,69,0.20435434764441304],[115,191,70,0.19988989909662003],[115,191,71,0.19528380451455363],[115,191,72,0.19059074237508572],[115,191,73,0.18586503326589543],[115,191,74,0.181158427494122],[115,191,75,0.17651817036394188],[115,191,76,0.1719853520331103],[115,191,77,0.16759354840465673],[115,191,78,0.1633677590523735],[115,191,79,0.159323647721469],[115,192,64,0.21700729833201304],[115,192,65,0.21383454153990228],[115,192,66,0.21035741695132706],[115,192,67,0.20657827849715402],[115,192,68,0.20251755440513697],[115,192,69,0.19821519554245387],[115,192,70,0.1937190601957113],[115,192,71,0.1890817222221052],[115,192,72,0.18435775672337554],[115,192,73,0.17960128599015834],[115,192,74,0.17486379335759203],[115,192,75,0.17019221218317257],[115,192,76,0.16562729671722431],[115,192,77,0.16120228118832935],[115,192,78,0.15694183297438655],[115,192,79,0.1528613052785993],[115,193,64,0.21101981803258382],[115,193,65,0.20783201302447638],[115,193,66,0.20434186344704325],[115,193,67,0.20055104733972154],[115,193,68,0.19647965736958095],[115,193,69,0.19216758456880004],[115,193,70,0.18766244205176602],[115,193,71,0.18301640583864626],[115,193,72,0.1782835419812333],[115,193,73,0.17351739079423067],[115,193,74,0.1687688156552805],[115,193,75,0.16408412341418088],[115,193,76,0.15950346301834933],[115,193,77,0.15505950852094436],[115,193,78,0.15077643219386383],[115,193,79,0.14666917302395324],[115,194,64,0.20498646016230115],[115,194,65,0.20179934695918558],[115,194,66,0.19831252359699897],[115,194,67,0.19452740401179694],[115,194,68,0.19046377895736535],[115,194,69,0.18616120364412592],[115,194,70,0.18166675198813792],[115,194,71,0.17703190422056567],[115,194,72,0.17230992252464497],[115,194,73,0.16755348012324608],[115,194,74,0.16281255108767567],[115,194,75,0.15813256772329304],[115,194,76,0.15355285196213678],[115,194,77,0.1491053267603319],[115,194,78,0.1448135130621826],[115,194,79,0.1406918174573492],[115,195,64,0.1987855485939142],[115,195,65,0.19568725740509121],[115,195,66,0.1922160884461137],[115,195,67,0.1884499381413499],[115,195,68,0.18440836213535428],[115,195,69,0.18013048885069152],[115,195,70,0.17566273854572992],[115,195,71,0.17105576398903174],[115,195,72,0.1663618778824828],[115,195,73,0.16163273011000065],[115,195,74,0.1569172418874451],[115,195,75,0.15225980348195048],[115,195,76,0.14769874175147876],[115,195,77,0.14326506333113098],[115,195,78,0.138981478865213],[115,195,79,0.1348617132569382],[115,196,64,0.18901136193299653],[115,196,65,0.18946353816747322],[115,196,66,0.18601898312153514],[115,196,67,0.18228355059792162],[115,196,68,0.17827667418268334],[115,196,69,0.17403707454909578],[115,196,70,0.16961050048502377],[115,196,71,0.1650467274221807],[115,196,72,0.16039704019969447],[115,196,73,0.15571196213751376],[115,196,74,0.15103923729851076],[115,196,75,0.1464220724181557],[115,196,76,0.14189764457097043],[115,196,77,0.13749588022671524],[115,196,78,0.13323851092990338],[115,196,79,0.12913841041743512],[115,197,64,0.1791915721255131],[115,197,65,0.1806718090130978],[115,197,66,0.17972565340612653],[115,197,67,0.1760353951060809],[115,197,68,0.17207835581568365],[115,197,69,0.16789281375292786],[115,197,70,0.16352375855723147],[115,197,71,0.15901996089501694],[115,197,72,0.15443151990553355],[115,197,73,0.1498076529479946],[115,197,74,0.1451947343143353],[115,197,75,0.14063458918008967],[115,197,76,0.13616304866476],[115,197,77,0.13180877146562162],[115,197,78,0.1275923371186183],[115,197,79,0.12352561553042504],[115,198,64,0.16935461451540865],[115,198,65,0.1708420552591966],[115,198,66,0.1722026460614873],[115,198,67,0.16970862392204916],[115,198,68,0.1658185439458629],[115,198,69,0.16170454785633517],[115,198,70,0.15741071972392862],[115,198,71,0.15298463336692059],[115,198,72,0.14847497881171318],[115,198,73,0.14392942601543335],[115,198,74,0.13939273226941082],[115,198,75,0.1349050993200696],[115,198,76,0.1305007858528203],[115,198,77,0.12620698058766036],[115,198,78,0.12204294083572188],[115,198,79,0.11801940096742705],[115,199,64,0.15953198932899382],[115,199,65,0.16102008246571553],[115,199,66,0.16237468890552373],[115,199,67,0.16330032946644082],[115,199,68,0.1594955077469374],[115,199,69,0.1554714660444583],[115,199,70,0.15127120091879287],[115,199,71,0.1469408569586043],[115,199,72,0.1425274503695124],[115,199,73,0.1380768233353323],[115,199,74,0.1336318352845363],[115,199,75,0.1292307968239341],[115,199,76,0.12490615172310879],[115,199,77,0.12068341194919328],[115,199,78,0.11658035036533358],[115,199,79,0.11260645532106116],[115,200,64,0.155734874417461],[115,200,65,0.15453343621941212],[115,200,66,0.15334354522318183],[115,200,67,0.15377552617183796],[115,200,68,0.1531027771556091],[115,200,69,0.1491873455418034],[115,200,70,0.14509898402324078],[115,200,71,0.1408821556758601],[115,200,72,0.13658191723516314],[115,200,73,0.13224198314675778],[115,200,74,0.127903017937029],[115,200,75,0.12360116234695304],[115,200,76,0.11936679830890556],[115,200,77,0.11522355747812094],[115,200,78,0.11118757766036917],[115,200,79,0.1072670111086642],[115,201,64,0.15535151180823334],[115,201,65,0.15392895506777055],[115,201,66,0.15251345144046216],[115,201,67,0.1510903396289583],[115,201,68,0.14963302511638574],[115,201,69,0.14513984277409994],[115,201,70,0.13897680771879733],[115,201,71,0.134797842825907],[115,201,72,0.13062681369515192],[115,201,73,0.12641226082841492],[115,201,74,0.12219235437372357],[115,201,75,0.1180007868656192],[115,201,76,0.11386563556065493],[115,201,77,0.10980845667005833],[115,201,78,0.10584361552121704],[115,201,79,0.10197785633049145],[115,202,64,0.15500686376176356],[115,202,65,0.15334544784035414],[115,202,66,0.15168780173787594],[115,202,67,0.15001634147509815],[115,202,68,0.14830328858927977],[115,202,69,0.14651035618087613],[115,202,70,0.14068601894893726],[115,202,71,0.13444985352250208],[115,202,72,0.1282363149890545],[115,202,73,0.1220777725842496],[115,202,74,0.11648371203013785],[115,202,75,0.11241218213972021],[115,202,76,0.10838374323099151],[115,202,77,0.1044176916576215],[115,202,78,0.10052649519425522],[115,202,79,0.09671543209265493],[115,203,64,0.1547218579921972],[115,203,65,0.15280444293659737],[115,203,66,0.1508887728596089],[115,203,67,0.148953895201017],[115,203,68,0.1469705960597915],[115,203,69,0.1449016698067342],[115,203,70,0.14221072123908785],[115,203,71,0.13592219870140984],[115,203,72,0.12965396716042749],[115,203,73,0.1234355096631853],[115,203,74,0.11729326453126791],[115,203,75,0.11124951745118229],[115,203,76,0.10532149310531894],[115,203,77,0.0995206499422384],[115,203,78,0.0952164064926615],[115,203,79,0.09145901859640286],[115,204,64,0.1545132138622355],[115,204,65,0.15232368617078634],[115,204,66,0.15013509144290685],[115,204,67,0.14792271843046764],[115,204,68,0.14565567725931133],[115,204,69,0.14329789394070022],[115,204,70,0.14081197914930027],[115,204,71,0.1372079125888658],[115,204,72,0.13089207240207867],[115,204,73,0.12461960566759754],[115,204,74,0.11841375320646191],[115,204,75,0.11229370577304479],[115,204,76,0.10627383738143151],[115,204,77,0.10036312314406318],[115,204,78,0.09456474449856665],[115,204,79,0.08887588442876934],[115,205,64,0.15439233650658227],[115,205,65,0.1519159433255533],[115,205,66,0.14944073151864215],[115,205,67,0.14693790425954423],[115,205,68,0.1443746706696815],[115,205,69,0.14171610968855794],[115,205,70,0.13892699417935753],[115,205,71,0.13597313083282758],[115,205,72,0.1319454287358034],[115,205,73,0.12562506714319627],[115,205,74,0.11936048796489593],[115,205,75,0.11316755642757956],[115,205,76,0.10705759236970927],[115,205,77,0.10103692354162129],[115,205,78,0.0951066049665408],[115,205,79,0.08926230654751553],[115,206,64,0.15436435775943946],[115,206,65,0.15158794726283023],[115,206,66,0.1488137524314721],[115,206,67,0.14600862928635724],[115,206,68,0.1431376794991016],[115,206,69,0.14016712685559454],[115,206,70,0.13706399774204003],[115,206,71,0.13379713280773164],[115,206,72,0.1303381155418537],[115,206,73,0.12645545965135496],[115,206,74,0.12013821602504558],[115,206,75,0.1138772877893259],[115,206,76,0.10768072683137721],[115,206,77,0.10155203265934827],[115,206,78,0.09548999617419386],[115,206,79,0.0894886877605283],[115,207,64,0.1544287773979536],[115,207,65,0.15134047614107654],[115,207,66,0.1482559339540585],[115,207,67,0.14513747632079793],[115,207,68,0.1419479201788342],[115,207,69,0.13865460101928448],[115,207,70,0.1352268647474569],[115,207,71,0.13163672643829077],[115,207,72,0.12785951974095974],[115,207,73,0.12387443930986172],[115,207,74,0.11966497417018435],[115,207,75,0.11443763969358013],[115,207,76,0.10815991597871773],[115,207,77,0.10192734152755892],[115,207,78,0.09573629068816801],[115,207,79,0.08957912646331617],[115,208,64,0.1545847514545861],[115,208,65,0.1511724306237544],[115,208,66,0.14776607818761595],[115,208,67,0.14432344203598846],[115,208,68,0.1408049420873001],[115,208,69,0.13717897894510186],[115,208,70,0.1334172488347207],[115,208,71,0.12949502979053917],[115,208,72,0.12539153379026283],[115,208,73,0.12109017614571532],[115,208,74,0.11657876074747342],[115,208,75,0.11184957988838076],[115,208,76,0.10689942751768047],[115,208,77,0.10172952490261074],[115,208,78,0.09584856104811403],[115,208,79,0.08953642526357158],[115,209,64,0.15482903304244827],[115,209,65,0.1510805950917196],[115,209,66,0.14734123918035846],[115,209,67,0.14356423399256033],[115,209,68,0.1397075614917082],[115,209,69,0.1357406279463664],[115,209,70,0.1316374699883841],[115,209,71,0.12737665466466347],[115,209,72,0.12294132078980152],[115,209,73,0.1183191632752893],[115,209,74,0.11350235974115921],[115,209,75,0.10848743880303353],[115,209,76,0.103275089512306],[115,209,77,0.09786991150934551],[115,209,78,0.09228010552987279],[115,209,79,0.08651710398044528],[115,210,64,0.1551546944986909],[115,210,65,0.15105879692737512],[115,210,66,0.1469761908222732],[115,210,67,0.14285590016778366],[115,210,68,0.13865349576034947],[115,210,69,0.13433931598526574],[115,210,70,0.12988968577309554],[115,210,71,0.12528642342877147],[115,210,72,0.12051656266085495],[115,210,73,0.11557204452899307],[115,210,74,0.11044937933294471],[115,210,75,0.10514927851127957],[115,210,76,0.09967625665898111],[115,210,77,0.09403820381074743],[115,210,78,0.08824592817188057],[115,210,79,0.08231266950902728],[115,211,64,0.1555510891890239],[115,211,65,0.15109776049896909],[115,211,66,0.14666317398611936],[115,211,67,0.14219246788952836],[115,211,68,0.1376388920971521],[115,211,69,0.13297362954671058],[115,211,70,0.12817519944705075],[115,211,71,0.12322857048888694],[115,211,72,0.11812456023225856],[115,211,73,0.11285923225627029],[115,211,74,0.10743329180988287],[115,211,75,0.10185148070370638],[115,211,76,0.09612197217906805],[115,211,77,0.090255766482472],[115,211,78,0.08426608786240748],[115,211,79,0.07816778368941762],[115,212,64,0.15600397719675846],[115,212,65,0.1511851260064918],[115,212,66,0.146391809833945],[115,212,67,0.14156575082866965],[115,212,68,0.13665802679394667],[115,212,69,0.13164056484308445],[115,212,70,0.12649394438429054],[115,212,71,0.12120612304708345],[115,212,72,0.1157715154557154],[115,212,73,0.11019009815340644],[115,212,74,0.10446654211832736],[115,212,75,0.0986093742692456],[115,212,76,0.09263016930970015],[115,212,77,0.08654277320513488],[115,212,78,0.08036255952957216],[115,212,79,0.0741057198555344],[115,213,64,0.1564958173091548],[115,213,65,0.15130563550571063],[115,213,66,0.1461491815157598],[115,213,67,0.14096532619525992],[115,213,68,0.1357031770719487],[115,213,69,0.13033529435251823],[115,213,70,0.1248441467427114],[115,213,71,0.11922046302077098],[115,213,72,0.11346199756049838],[115,213,73,0.10757235055351361],[115,213,74,0.10155984504966672],[115,213,75,0.09543646284728151],[115,213,76,0.08921684117047911],[115,213,77,0.0829173319702449],[115,213,78,0.07655512558153088],[115,213,79,0.07014744035925423],[115,214,64,0.15700622785648385],[115,214,65,0.15144148857123868],[115,214,66,0.14592008663317624],[115,214,67,0.14037868443216153],[115,214,68,0.13476466773494902],[115,214,69,0.12905111084710377],[115,214,70,0.12322216847120783],[115,214,71,0.11727107215527793],[115,214,72,0.1111985951192673],[115,214,73,0.10501160009041652],[115,214,74,0.09872167290986703],[115,214,75,0.09234384454197254],[115,214,76,0.08589540397858167],[115,214,77,0.07939480438456333],[115,214,78,0.07286066468078885],[115,214,79,0.06631086860572692],[115,215,64,0.1575126190931206],[115,215,65,0.15157287019602125],[115,215,66,0.14568746297995183],[115,215,67,0.13979155384199307],[115,215,68,0.13383109500228926],[115,215,69,0.127779551216643],[115,215,70,0.12162253290213776],[115,215,71,0.11535546251800635],[115,215,72,0.10898175615584588],[115,215,73,0.10251111580977122],[115,215,74,0.09595793568827833],[115,215,75,0.08933982575602409],[115,215,76,0.08267625551110651],[115,215,77,0.07598732081338895],[115,215,78,0.06929263638513754],[115,215,79,0.06261035640613277],[115,216,64,0.15799099993357288],[115,216,65,0.1516786536514964],[115,216,66,0.14543299020158063],[115,216,67,0.13918840271714644],[115,216,68,0.13288973002768167],[115,216,69,0.12651070253579647],[115,216,70,0.12003813532179997],[115,216,71,0.11346929471296026],[115,216,72,0.10680981857996502],[115,216,73,0.10007177395797984],[115,216,74,0.09327185590083822],[115,216,75,0.08642973126250293],[115,216,76,0.07956653087568484],[115,216,77,0.07270349336541504],[115,216,78,0.06586076359896437],[115,216,79,0.05905634853252363],[115,217,64,0.15841696196718671],[115,217,65,0.15173728114771695],[115,217,66,0.1451378701352967],[115,217,67,0.13855312166639397],[115,217,68,0.131927104738614],[115,217,69,0.12523369295623127],[115,217,70,0.11846064105040666],[115,217,71,0.11160668629806221],[115,217,72,0.10467923338201988],[115,217,73,0.09769220183139148],[115,217,74,0.09066404043789185],[115,217,75,0.08361591279073463],[115,217,76,0.07657005780932212],[115,217,77,0.06954832888131299],[115,217,78,0.0625709149377901],[115,217,79,0.05565524651713433],[115,218,64,0.15876684377145034],[115,218,65,0.1517278252338674],[115,218,66,0.14478378869798475],[115,218,67,0.13786988894301513],[115,218,68,0.1309297827481217],[115,218,69,0.12393737012823332],[115,218,70,0.11688107369164591],[115,218,71,0.1097607130218258],[115,218,72,0.10258498316014916],[115,218,73,0.09536911921208048],[115,218,74,0.08813275189449665],[115,218,75,0.0808979585529852],[115,218,76,0.0736875138781717],[115,218,77,0.06652334424201138],[115,218,78,0.05942518926277909],[115,218,79,0.052409473891475926],[115,219,64,0.1590190786230048],[115,219,65,0.15163123396463946],[115,219,66,0.14435406228030356],[115,219,67,0.13712422167624405],[115,219,68,0.12988531819395657],[115,219,69,0.12261116996599214],[115,219,70,0.11529059632817337],[115,219,71,0.10792410561842883],[115,219,72,0.10052119868027043],[115,219,73,0.09309788005005916],[115,219,74,0.08567438199914128],[115,219,75,0.07827310628031994],[115,219,76,0.070916788095315],[115,219,77,0.06362688645866747],[115,219,78,0.05642220478854186],[115,219,79,0.049317745206586064],[115,220,64,0.15915572876509487],[115,220,65,0.15143176292426985],[115,220,66,0.14383497167832224],[115,220,67,0.13630421598771486],[115,220,68,0.1287834054472249],[115,220,69,0.12124617866513053],[115,220,70,0.11368148854095249],[115,220,71,0.10609014500882834],[115,220,72,0.09848197628486761],[115,220,73,0.09087321717293531],[115,220,74,0.08328412988318877],[115,220,75,0.07573686246675779],[115,220,76,0.06825354960767939],[115,220,77,0.060854660142628046],[115,220,78,0.05355759530500011],[115,220,79,0.04637554131322501],[115,221,64,0.15916420942779788],[115,221,65,0.1511185972452611],[115,221,66,0.1432172866466704],[115,221,67,0.13540197903493267],[115,221,68,0.12761722270082337],[115,221,69,0.11983639095729276],[115,221,70,0.11204832221457314],[115,221,71,0.10425375884746242],[115,221,72,0.0964623990655082],[115,221,73,0.08869019290986278],[115,221,74,0.08095688804509639],[115,221,75,0.07328383063756319],[115,221,76,0.06569202622390324],[115,221,77,0.05820046507719276],[115,221,78,0.050824716179233974],[115,221,79,0.043575793506415585],[115,222,64,0.1590392058104522],[115,222,65,0.15068766678035458],[115,222,66,0.14249798418707582],[115,222,67,0.13441525606211974],[115,222,68,0.12638497249494024],[115,222,69,0.11838016764225914],[115,222,70,0.11038933915494609],[115,222,71,0.1024128224267403],[115,222,72,0.09445976479467658],[115,222,73,0.0865453586045895],[115,222,74,0.07868833895797511],[115,222,75,0.07090875155765211],[115,222,76,0.06322599565966389],[115,222,77,0.05565714672112022],[115,222,78,0.0482155629135634],[115,222,79,0.04090977924999851],[115,223,64,0.1587847862210388],[115,223,65,0.15014365758109738],[115,223,66,0.14168216369016357],[115,223,67,0.13334925555202812],[115,223,68,0.12509162225953913],[115,223,69,0.1168818954701508],[115,223,70,0.10870803358723746],[115,223,71,0.10056966700208268],[115,223,72,0.09247502367174758],[115,223,73,0.08443812605971031],[115,223,74,0.07647626534362645],[115,223,75,0.06860775837700282],[115,223,76,0.0608499924631517],[115,223,77,0.05321776256403699],[115,223,78,0.04572190512913969],[115,223,79,0.03836823229140224],[115,224,64,0.15841671452220146],[115,224,65,0.14950222280161238],[115,224,66,0.1407851620237189],[115,224,67,0.13221867555770292],[115,224,68,0.1237508479492388],[115,224,69,0.11535385245189841],[115,224,70,0.10701494261751476],[115,224,71,0.09873279862565548],[115,224,72,0.09051442897262145],[115,224,73,0.08237235399762784],[115,224,74,0.07432207718752651],[115,224,75,0.06637984976825916],[115,224,76,0.058560733647538464],[115,224,77,0.05087696732275413],[115,224,78,0.043336638916539875],[115,224,79,0.035942670051087755],[115,225,64,0.15796496495517387],[115,225,65,0.14879239607899677],[115,225,66,0.13983487160438932],[115,225,67,0.13104993424773612],[115,225,68,0.12238718381134991],[115,225,69,0.11381828165225986],[115,225,70,0.10532964772834379],[115,225,71,0.09691883057406546],[115,225,72,0.08859140369963171],[115,225,73,0.08035815264018037],[115,225,74,0.07223255859423061],[115,225,75,0.06422858414432457],[115,225,76,0.05635876609641119],[115,225,77,0.04863262001188573],[115,225,78,0.04105536054321293],[115,225,79,0.03362694122206574],[115,226,64,0.15747644229718838],[115,226,65,0.14805921033835184],[115,226,66,0.13887426439821912],[115,226,67,0.1298836076186166],[115,226,68,0.12103838125945328],[115,226,69,0.11230967646276291],[115,226,70,0.10368299033297217],[115,226,71,0.09515463242075864],[115,226,72,0.08672862630443152],[115,226,73,0.0784139094950151],[115,226,74,0.0702218375780612],[115,226,75,0.062163998047446885],[115,226,76,0.054250338819036466],[115,226,77,0.04648761593902714],[115,226,78,0.03887816452910483],[115,226,79,0.03141899653960341],[115,227,64,0.1570181459023507],[115,227,65,0.14736757716455173],[115,227,66,0.13796591011237822],[115,227,67,0.12877956899319304],[115,227,68,0.11976118923955548],[115,227,69,0.11088122554150706],[115,227,70,0.1021241976266249],[115,227,71,0.09348513729629071],[115,227,72,0.08496649788438324],[115,227,73,0.07657536906871487],[115,227,74,0.06832100291183045],[115,227,75,0.0602126565393976],[115,227,76,0.052257756386912574],[115,227,77,0.04446038846282001],[115,227,78,0.03682011859457278],[115,227,79,0.02933114614511923],[115,228,64,0.15666666831588485],[115,228,65,0.14679516700896753],[115,228,66,0.1371879506069328],[115,228,67,0.12781597435776154],[115,228,68,0.11863341488957083],[115,228,69,0.10961004738236683],[115,228,70,0.10072937212093738],[115,228,71,0.09198511082900994],[115,228,72,0.08337812958521246],[115,228,73,0.07491367311550584],[115,228,74,0.0665989162866069],[115,228,75,0.05844083814734942],[115,228,76,0.05044442337870098],[115,228,77,0.04261119552238017],[115,228,78,0.03493808586895931],[115,228,79,0.027416641400529344],[115,229,64,0.15648107850353823],[115,229,65,0.1464028645975924],[115,229,66,0.13660249405714617],[115,229,67,0.12705572348883676],[115,229,68,0.11771844148757149],[115,229,69,0.10855974926941946],[115,229,70,0.09956210726014317],[115,229,71,0.0907178968786942],[115,229,72,0.0820263681499221],[115,229,73,0.07349090316127921],[115,229,74,0.06511660111050141],[115,229,75,0.05690819020674862],[115,229,76,0.04886827119504578],[115,229,77,0.04099589677722329],[115,229,78,0.033285490708280706],[115,229,79,0.025726109856755146],[115,230,64,0.15650020017768612],[115,230,65,0.14623084477998724],[115,230,66,0.1362506256677055],[115,230,67,0.12654045860456534],[115,230,68,0.11705821015078026],[115,230,69,0.10777237547391942],[115,230,70,0.09866439242043061],[115,230,71,0.08972529027887644],[115,230,72,0.08095267800981894],[115,230,73,0.07234805079835277],[115,230,74,0.06391442056594791],[115,230,75,0.0556542755898095],[115,230,76,0.04756787388189091],[115,230,77,0.03965187448017725],[115,230,78,0.03189831030833879],[115,230,79,0.024293905767895335],[115,231,64,0.15674514305324752],[115,231,65,0.14630110215530878],[115,231,66,0.1361549302813391],[115,231,67,0.12629308748538232],[115,231,68,0.11667575412337614],[115,231,69,0.10727095871241091],[115,231,70,0.09805918299998283],[115,231,71,0.08903012281283894],[115,231,72,0.08017973656620797],[115,231,73,0.07150761226713304],[115,231,74,0.06301465850036617],[115,231,75,0.054701124396340034],[115,231,76,0.0465649530847459],[115,231,77,0.038600472638364795],[115,231,78,0.030797428016555006],[115,231,79,0.023140357027640255],[115,232,64,0.15722169907331607],[115,232,65,0.1466198448180175],[115,232,66,0.13632188001234918],[115,232,67,0.12632017379012306],[115,232,68,0.11657760379284203],[115,232,69,0.10706194771988008],[115,232,70,0.09775285422447116],[115,232,71,0.08863874294940464],[115,232,72,0.07971393583150366],[115,232,73,0.07097610455661803],[115,232,74,0.06242403946436139],[115,232,75,0.054055744716232645],[115,232,76,0.0458668640487096],[115,232,77,0.03784944093856359],[115,232,78,0.029991016517486657],[115,232,79,0.022274068088628935],[115,233,64,0.15792260136551517],[115,233,65,0.14717974962981492],[115,233,66,0.13674408402112745],[115,233,67,0.12661419142068517],[115,233,68,0.11675605903464292],[115,233,69,0.1071375072973791],[115,233,70,0.09773753480701457],[115,233,71,0.08854338528629924],[115,233,72,0.07954778622614073],[115,233,73,0.07074649871979191],[115,233,74,0.062136183555302364],[115,233,75,0.05371258815562075],[115,233,76,0.0454690584716849],[115,233,77,0.03739537944809692],[115,233,78,0.0294769472000068],[115,233,79,0.021694275564969022],[115,234,64,0.1588296444376218],[115,234,65,0.14796207758093205],[115,234,66,0.13740239906651727],[115,234,67,0.12715564165788074],[115,234,68,0.11719132770734556],[115,234,69,0.10747768977597787],[115,234,70,0.0979933195484836],[115,234,71,0.08872442895701638],[115,234,72,0.07966222198307497],[115,234,73,0.07080057007555482],[115,234,74,0.06213399597867182],[115,234,75,0.0536559702966784],[115,234,76,0.04535752465035274],[115,234,77,0.03722618480723385],[115,234,78,0.029245226699877516],[115,234,79,0.021393257785261275],[115,235,64,0.15991566392895984],[115,235,65,0.1489386476160473],[115,235,66,0.13826789928904573],[115,235,67,0.1279150316099675],[115,235,68,0.11785352894036384],[115,235,69,0.10805247665911605],[115,235,70,0.0984903597838003],[115,235,71,0.08915254407619493],[115,235,72,0.08002880743016012],[115,235,73,0.0711111647871682],[115,235,74,0.06239199105845611],[115,235,75,0.053862446081327765],[115,235,76,0.045511205181316974],[115,235,77,0.03732349845565118],[115,235,78,0.029280461443054386],[115,235,79,0.02135879940147391],[115,236,64,0.16114637404753973],[115,236,65,0.1500736671177664],[115,236,66,0.13930370349938287],[115,236,67,0.12885471233879128],[115,236,68,0.1187045596801998],[115,236,69,0.10882368902795062],[115,236,70,0.09919083040017451],[115,236,71,0.08979072511595111],[115,236,72,0.08061184323501214],[115,236,73,0.07164438211849045],[115,236,74,0.06287855023648167],[115,236,75,0.054303139915816],[115,236,76,0.04590439228545952],[115,236,77,0.03766515724122517],[115,236,78,0.02956435082215198],[115,236,79,0.02157671196888715],[115,237,64,0.16248204037444774],[115,237,65,0.15132539638179537],[115,237,66,0.14046663700027745],[115,237,67,0.12993055341856993],[115,237,68,0.11969980101215054],[115,237,69,0.10974674303297349],[115,237,70,0.10005074960787982],[115,237,71,0.09059618730631726],[115,237,72,0.08137034867542034],[115,237,73,0.07236164845871439],[115,237,74,0.06355809023576087],[115,237,75,0.054946006810029674],[115,237,76,0.046509077259532954],[115,237,77,0.038227623152938664],[115,237,78,0.030078186029041262],[115,237,79,0.022033387840299713],[115,238,64,0.16387474106830208],[115,238,65,0.15264331112583818],[115,238,66,0.14170430810051682],[115,238,67,0.13108895564429046],[115,238,68,0.12078509330561749],[115,238,69,0.11076761294618252],[115,238,70,0.10101695376271382],[115,238,71,0.09151737486778312],[115,238,72,0.08225512220317201],[115,238,73,0.07321684604347398],[115,238,74,0.06438827240721108],[115,238,75,0.055753131307851096],[115,238,76,0.0472923443904109],[115,238,77,0.03898347411432809],[115,238,78,0.03080043626586744],[115,238,79,0.022713477213945468],[115,239,64,0.16526544083637826],[115,239,65,0.15396594835625374],[115,239,66,0.1429535619349735],[115,239,67,0.13226573587835966],[115,239,68,0.12189586627880208],[115,239,69,0.11182201558620222],[115,239,70,0.10202614678909591],[115,239,71,0.09249269361884271],[115,239,72,0.08320698843251641],[115,239,73,0.07415392337484701],[115,239,74,0.06531684768961465],[115,239,75,0.05667670369328493],[115,239,76,0.04821140356522398],[115,239,77,0.03989544875294456],[115,239,78,0.03169979344314309],[115,239,79,0.02359195321006711],[115,240,64,0.16659932880520262],[115,240,65,0.15523911243077476],[115,240,66,0.14416093306934072],[115,240,67,0.1334081342416176],[115,240,68,0.12297996481319057],[115,240,69,0.11285829912294593],[115,240,70,0.10302710157275373],[115,240,71,0.09347130258559425],[115,240,72,0.08417550616804645],[115,240,73,0.07512291263344967],[115,240,74,0.0662944588905779],[115,240,75,0.05766817837381022],[115,240,76,0.04921878236218057],[115,240,77,0.04091746410949232],[115,240,78,0.032731926891410565],[115,240,79,0.024626636768068456],[115,241,64,0.16783284508412272],[115,241,65,0.15642026893396888],[115,241,66,0.1452848161160812],[115,241,67,0.13447522421490765],[115,241,68,0.12399679089329947],[115,241,69,0.11383581680285319],[115,241,70,0.10397875495066483],[115,241,71,0.09441139321543636],[115,241,72,0.0851178542040679],[115,241,73,0.07607979173777146],[115,241,74,0.06727578589750066],[115,241,75,0.05868093825928451],[115,241,76,0.05026666865217637],[115,241,77,0.04200071447799991],[115,241,78,0.03384733334816251],[115,241,79,0.025767709518281265],[115,242,64,0.16893335575205037],[115,242,65,0.15747737834364778],[115,242,66,0.14629362959833025],[115,242,67,0.13543560362983587],[115,242,68,0.12491473360960913],[115,242,69,0.11472231267768342],[115,242,70,0.10484776275902956],[115,242,71,0.09527811713078155],[115,242,72,0.08599731871445769],[115,242,73,0.07698569644072686],[115,242,74,0.06821962114133198],[115,242,75,0.05967134215344935],[115,242,76,0.05130900555488324],[115,242,77,0.04309685468687145],[115,242,78,0.03499561337001887],[115,242,79,0.026963051977495992],[115,243,64,0.1698781543507432],[115,243,65,0.15838795822398755],[115,243,66,0.14716494889317067],[115,243,67,0.13626661358050485],[115,243,68,0.1257104928682001],[115,243,69,0.11549337044164411],[115,243,70,0.10560809439482413],[115,243,71,0.09604334623164196],[115,243,72,0.0867832370443288],[115,243,73,0.07780706355555497],[115,243,74,0.06908922501279093],[115,243,75,0.06059930168362112],[115,243,76,0.05230229546443909],[115,243,77,0.0441590328848126],[115,243,78,0.036126730570802665],[115,243,79,0.02815972302187383],[115,244,64,0.17065344364362284],[115,244,65,0.15913812222755652],[115,244,66,0.14788461221733995],[115,244,67,0.13695352538666006],[115,244,68,0.126368364876612],[115,244,69,0.11613181702901718],[115,244,70,0.10624057486745128],[115,244,71,0.09668537318081956],[115,244,72,0.08745087529320411],[115,244,73,0.07851570219190025],[115,244,74,0.06985260455426298],[115,244,75,0.06142877800263896],[115,244,76,0.05320632170992273],[115,244,77,0.045142840278604046],[115,244,78,0.037192188628314624],[115,244,79,0.029305359449867806],[115,245,64,0.17125329719255453],[115,245,65,0.1597215953977722],[115,245,66,0.14844579908134675],[115,245,67,0.1374886949475872],[115,245,68,0.1268794886365659],[115,245,69,0.11662708008180367],[115,245,70,0.10673237332522727],[115,245,71,0.09718855113559088],[115,245,72,0.08798123844314686],[115,245,73,0.07908879166086163],[115,245,74,0.07048271401156445],[115,245,75,0.06212819679598097],[115,245,76,0.053984786357811974],[115,245,77,0.04600717633109484],[115,245,78,0.03814612459666962],[115,245,79,0.02882953483386043],[115,246,64,0.1716786004202345],[115,246,65,0.16013870537305058],[115,246,66,0.14884808074111286],[115,246,67,0.1378706839214364],[115,246,68,0.1272410527600256],[115,246,69,0.1169744984710555],[115,246,70,0.10707643710143182],[115,246,71,0.09754287163308052],[115,246,72,0.08836081180947558],[115,246,73,0.07950880471063844],[115,246,74,0.0709575758093693],[115,246,75,0.0626707800818715],[115,246,76,0.0546058625928645],[115,246,77,0.04671502783086899],[115,246,78,0.038946316938047794],[115,246,79,0.027309322909852364],[115,247,64,0.17193597095456664],[115,247,65,0.16039534921754886],[115,247,66,0.1490964422937208],[115,247,67,0.1381033472748362],[115,247,68,0.12745546202641772],[115,247,69,0.1171745851458433],[115,247,70,0.10727087040125066],[115,247,71,0.09774347959662862],[115,247,72,0.08858123263253698],[115,247,73,0.0797633547733488],[115,247,74,0.07126032050887889],[115,247,75,0.06303479326090199],[115,247,76,0.05504266005504888],[115,247,77,0.04723416015787735],[115,247,78,0.03799116964168077],[115,247,79,0.025975985476377576],[115,248,64,0.1720366581935733],[115,248,65,0.16050193574101002],[115,248,66,0.1492002761957495],[115,248,67,0.13819488687294548],[115,248,68,0.12752946321608638],[115,248,69,0.1172322416907831],[115,248,70,0.1073182568448397],[115,248,71,0.09779012450822039],[115,248,72,0.08863889068746544],[115,248,73,0.07984496593974924],[115,248,74,0.07137914431736728],[115,248,75,0.06320370585530821],[115,248,76,0.05527360146448976],[115,248,77,0.04753771899302216],[115,248,78,0.036956562513713834],[115,248,79,0.024847153234394948],[115,249,64,0.17199542218627836],[115,249,65,0.1604723033231084],[115,249,66,0.14917234713043517],[115,249,67,0.13815687092199586],[115,249,68,0.12747322988984366],[115,249,69,0.11715592409846834],[115,249,70,0.1072249251948465],[115,249,71,0.0976865468894568],[115,249,72,0.08853445686707498],[115,249,73,0.07975076443410928],[115,249,74,0.07130718274886154],[115,249,75,0.06316626437889972],[115,249,76,0.055282708836080705],[115,249,77,0.047604740656445654],[115,249,78,0.0361178067606175],[115,249,79,0.023935380073618614],[115,250,64,0.1718293920974036],[115,250,65,0.16032261342678183],[115,250,66,0.14902772831447286],[115,250,67,0.13800321923595063],[115,250,68,0.12729940593802083],[115,250,69,0.11695675940840426],[115,250,70,0.1070001577305632],[115,250,71,0.09743979935231979],[115,250,72,0.08827233879281382],[115,250,73,0.07948209043836708],[115,250,74,0.07104229908541132],[115,250,75,0.0629164757987602],[115,250,76,0.055059797572584834],[115,250,77,0.04742056921116044],[115,250,78,0.035476838363437346],[115,250,79,0.023247230793624417],[115,251,64,0.1715569047112157],[115,251,65,0.16007022016995207],[115,251,66,0.14878270951645886],[115,251,67,0.13774915447611624],[115,251,68,0.12702210789482682],[115,251,69,0.11664761302939256],[115,251,70,0.10665534088591275],[115,251,71,0.0970595016217372],[115,251,72,0.08786006263083754],[115,251,73,0.07904402921376671],[115,251,74,0.07058678636013409],[115,251,75,0.06245350009026903],[115,251,76,0.05460057673067889],[115,251,77,0.04697717843662029],[115,251,78,0.035029470669696874],[115,251,79,0.022782463530016735],[115,252,64,0.1711963236347837],[115,252,65,0.15973251652822396],[115,252,66,0.14845367725923508],[115,252,67,0.13741011970992467],[115,252,68,0.1266558862077601],[115,252,69,0.11624210675062435],[115,252,70,0.10620305794770449],[115,252,71,0.09655702909781069],[115,252,72,0.08730758043801021],[115,252,73,0.07844486059285963],[115,252,74,0.06994698167995922],[115,252,75,0.06178145045120097],[115,252,76,0.053906653781979036],[115,252,77,0.046273396764334465],[115,252,78,0.034764913538424994],[115,252,79,0.022533309193605706],[115,253,64,0.1707648400823455],[115,253,65,0.15932575796180776],[115,253,66,0.1480559678970932],[115,253,67,0.13700066285218326],[115,253,68,0.126214645867022],[115,253,69,0.11575358765788807],[115,253,70,0.10565612381410365],[115,253,71,0.09594463471686521],[115,253,72,0.08662650253646532],[115,253,73,0.07769542606562016],[115,253,74,0.06913279182842533],[115,253,75,0.06090909982943386],[115,253,76,0.05298544224144853],[115,253,77,0.0453150332754273],[115,253,78,0.03466539351739311],[115,253,79,0.022483850316634357],[115,254,64,0.1702772563621618],[115,254,65,0.15886386449981846],[115,254,66,0.14760269449777902],[115,254,67,0.13653328879084664],[115,254,68,0.12571052703845487],[115,254,69,0.11519404840761754],[115,254,70,0.10502656204356378],[115,254,71,0.09523450408981993],[115,254,72,0.0858292546180834],[115,254,73,0.07680841286344993],[115,254,74,0.06815712924006155],[115,254,75,0.059849492535206716],[115,254,76,0.05184997061176475],[115,254,77,0.0441149028911913],[115,254,78,0.03470587722767894],[115,254,79,0.022609501770176677],[115,255,64,0.169744753445758],[115,255,65,0.15835720257502384],[115,255,66,0.14710354871939],[115,255,67,0.1360172802608307],[115,255,68,0.12515274660672154],[115,255,69,0.11457299957440725],[115,255,70,0.10432452468319295],[115,255,71,0.0944377441456583],[115,255,72,0.08492815951386119],[115,255,73,0.07579755465612925],[115,255,74,0.06703525762002946],[115,255,75,0.058619459855228845],[115,255,76,0.05051859119657989],[115,255,77,0.042692748944466216],[115,255,78,0.03485390012656946],[115,255,79,0.02287659586882389],[115,256,64,0.16917364427700887],[115,256,65,0.15781134818228892],[115,256,66,0.14656357915395363],[115,256,67,0.13545748881407418],[115,256,68,0.12454640182392458],[115,256,69,0.1138962950780113],[115,256,70,0.10355715565376364],[115,256,71,0.09356330578823083],[115,256,72,0.08393444382915784],[115,256,73,0.07467674872100999],[115,256,74,0.065784046697608],[115,256,75,0.057239038764093815],[115,256,76,0.04901458747001023],[115,256,77,0.04107506140395667],[115,256,78,0.03337773578254801],[115,256,79,0.023242074409868762],[115,257,64,0.16856412741540666],[115,257,65,0.1572258449419288],[115,257,66,0.14598195874697534],[115,257,67,0.13485310757611682],[115,257,68,0.12389124691495924],[115,257,69,0.11316492081929053],[115,257,70,0.10272740724684275],[115,257,71,0.09261684971948164],[115,257,72,0.08285717838388885],[115,257,73,0.07345909850775909],[115,257,74,0.06442114522242223],[115,257,75,0.05573080322541448],[115,257,76,0.04736569006658692],[115,257,77,0.03929480156048898],[115,257,78,0.03147981779997965],[115,257,79,0.02365330532840712],[115,258,64,0.16790900133881884],[115,258,65,0.15659300578096785],[115,258,66,0.14535088151225967],[115,258,67,0.13419665790444799],[115,258,68,0.12318075769745693],[115,258,69,0.11237412368386263],[115,258,70,0.10183321914156958],[115,258,71,0.0915999609381649],[115,258,72,0.08170251406654097],[115,258,73,0.07215615762358303],[115,258,74,0.06296422119007253],[115,258,75,0.05411909046381274],[115,258,76,0.04560328089870699],[115,258,77,0.03739057801174567],[115,258,78,0.029447242941613737],[115,258,79,0.021733281774794205],[115,259,64,0.16719279322097286],[115,259,65,0.15589897777504286],[115,259,66,0.14465861298066815],[115,259,67,0.13347901875675314],[115,259,68,0.12240892705064163],[115,259,69,0.11152149611475798],[115,259,70,0.10087621616051749],[115,259,71,0.09051864626422751],[115,259,72,0.08048108328351808],[115,259,73,0.07078330580102019],[115,259,74,0.0614333921990233],[115,259,75,0.052428611854582176],[115,259,76,0.04375638833653611],[115,259,77,0.03539533338581128],[115,259,78,0.027316350372249488],[115,259,79,0.01948380584294788],[115,260,64,0.1663997477879569],[115,260,65,0.15513133792750425],[115,260,66,0.14389659201701638],[115,260,67,0.13269598973436092],[115,260,68,0.12157625470668823],[115,260,69,0.1106123403546717],[115,260,70,0.0998663862197275],[115,260,71,0.08938726527226463],[115,260,72,0.07921112997699749],[115,260,73,0.06936203618977814],[115,260,74,0.05985264413159712],[115,260,75,0.05068499556427784],[115,260,76,0.0418513661769028],[115,260,77,0.033335192083824045],[115,260,78,0.02511206923828361],[115,260,79,0.017150824478112114],[115,261,64,0.1655186125588889],[115,261,65,0.1542816724568077],[115,261,66,0.14305968938138264],[115,261,67,0.13184619266742495],[115,261,68,0.1206854682902911],[115,261,69,0.10965364719978446],[115,261,70,0.0988149561964086],[115,261,71,0.0882210862792472],[115,261,72,0.07791162026000932],[115,261,73,0.06791453995237304],[115,261,74,0.058246812318960145],[115,261,75,0.04891505383207918],[115,261,76,0.039916272183158394],[115,261,77,0.03123868436123714],[115,261,78,0.022862610017032367],[115,261,79,0.014761438933861441],[115,262,64,0.1633939014553432],[115,262,65,0.1533451270394475],[115,262,66,0.14214568983495574],[115,262,67,0.13093047111640752],[115,262,68,0.11974082796698897],[115,262,69,0.10865330275733691],[115,262,70,0.0977335052848146],[115,262,71,0.08703531662310202],[115,262,72,0.07660120426626571],[115,262,73,0.0664626173185904],[115,262,74,0.05664046124256631],[115,262,75,0.04714565154833675],[115,262,76,0.037979745683135585],[115,262,77,0.029135652260439498],[115,262,78,0.020598416659745065],[115,262,79,0.012346081926979023],[115,263,64,0.1608078028660634],[115,263,65,0.15223966186486004],[115,263,66,0.14115516036526968],[115,263,67,0.1299517747631752],[115,263,68,0.11874800329637619],[115,263,69,0.10761993071053796],[115,263,70,0.09663374363642793],[115,263,71,0.08584478784682018],[115,263,72,0.07529777833957443],[115,263,73,0.06502708851603202],[115,263,74,0.05505711808940278],[115,263,75,0.045402739228314566],[115,263,76,0.03606982031480352],[115,263,77,0.027055826575388457],[115,263,78,0.018350496732458726],[115,263,79,0.00993659471890669],[115,264,64,0.15806630894983678],[115,264,65,0.14946575172986315],[115,264,66,0.1400916673698537],[115,264,67,0.12891538716590073],[115,264,68,0.11771428568909142],[115,264,69,0.10656306017580278],[115,264,70,0.09552760432385136],[115,264,71,0.08466393975469512],[115,264,72,0.07401832960574592],[115,264,73,0.06362746876167887],[115,264,74,0.053518750473084326],[115,264,75,0.04371060898354302],[115,264,76,0.034212937661844106],[115,264,77,0.02502758201620288],[115,264,78,0.01614890685586045],[115,264,79,0.007564436760234499],[115,265,64,0.15516953683360502],[115,265,65,0.1465274191202307],[115,265,66,0.13796183214587282],[115,265,67,0.1278294993428714],[115,265,68,0.11664913879750113],[115,265,69,0.10549362136798236],[115,265,70,0.09442765075575986],[115,265,71,0.08350710540937302],[115,265,72,0.07277906496911188],[115,265,73,0.06228190936344276],[115,265,74,0.05204549041022114],[115,265,75,0.04209137565342172],[115,265,76,0.032433164046008586],[115,265,77,0.0230768729731588],[115,265,78,0.014021396001157713],[115,265,79,0.007133778254914919],[115,266,64,0.1521132964218722],[115,266,65,0.14341964151848874],[115,266,66,0.13481813397439854],[115,266,67,0.1263555017924442],[115,266,68,0.11556508866711693],[115,266,69,0.104424770805479],[115,266,70,0.09334780120586213],[115,266,71,0.08238909869316083],[115,266,72,0.07159582614903834],[115,266,73,0.06100740657130302],[115,266,74,0.05065560624794989],[115,266,75,0.04056468488015861],[115,266,76,0.030751612375355272],[115,266,77,0.021226351921178353],[115,266,78,0.014994391765413846],[115,266,79,0.012678858628323008],[115,267,64,0.1488878594912245],[115,267,65,0.14013223608151562],[115,267,66,0.13148285344934335],[115,267,67,0.12299228501627206],[115,267,68,0.11447895500807963],[115,267,69,0.10337304733789451],[115,267,70,0.09230437168816227],[115,267,71,0.08132610564460162],[115,267,72,0.07048479197678789],[115,267,73,0.05982027943879547],[115,267,74,0.049365723874284465],[115,267,75,0.039147649558541345],[115,267,76,0.029186070606338568],[115,267,77,0.0238149918446556],[115,267,78,0.021137854550532464],[115,267,79,0.018517214065157495],[115,268,64,0.1454763696039533],[115,268,65,0.13664823662203252],[115,268,66,0.12793927986187603],[115,268,67,0.11940732334852461],[115,268,68,0.11104590463359357],[115,268,69,0.10235985986407724],[115,268,70,0.09131743801379048],[115,268,71,0.08033688040158006],[115,268,72,0.06946346880968286],[115,268,73,0.05873691760723143],[115,268,74,0.04819129820786675],[115,268,75,0.037855015768315445],[115,268,76,0.03357734645280984],[115,268,77,0.030559438507218456],[115,268,78,0.027581642224329066],[115,268,79,0.02464906699294344],[115,269,64,0.1418528919852269],[115,269,65,0.13294191143721182],[115,269,66,0.12416242982649318],[115,269,67,0.11557686802019768],[115,269,68,0.10718444585557987],[115,269,69,0.0989396298757434],[115,269,70,0.09041251750019356],[115,269,71,0.07944424623402427],[115,269,72,0.06855196958657327],[115,269,73,0.05777479960587684],[115,269,74,0.047514170980378564],[115,269,75,0.04421570209560322],[115,269,76,0.04090504104118349],[115,269,77,0.03760114263194125],[115,269,78,0.034318400407205775],[115,269,79,0.031066718560265938],[115,270,64,0.13798010293142027],[115,270,65,0.12897642162887551],[115,270,66,0.12011669941477349],[115,270,67,0.11146727765097161],[115,270,68,0.10303311985961909],[115,270,69,0.09477523294387906],[115,270,70,0.0866562295751344],[115,270,71,0.07864160992835233],[115,270,72,0.0677745817446015],[115,270,73,0.059099131202373645],[115,270,74,0.05563194288606927],[115,270,75,0.05209762363646367],[115,270,76,0.04852217108663033],[115,270,77,0.04492792153536477],[115,270,78,0.04133346856424518],[115,270,79,0.03775361369017061],[115,271,64,0.1338368652044062],[115,271,65,0.12473142170112951],[115,271,66,0.11578318297766141],[115,271,67,0.10706171936480872],[115,271,68,0.09857770985221928],[115,271,69,0.09029917984206884],[115,271,70,0.08219429445681725],[115,271,71,0.07423262031792387],[115,271,72,0.07048191767596462],[115,271,73,0.06769708821144159],[115,271,74,0.06402509018646453],[115,271,75,0.06025262555107341],[115,271,76,0.05640812941104245],[115,271,77,0.052517364735137496],[115,271,78,0.04860322514433796],[115,271,79,0.04468555978333841],[115,272,64,0.1295084418402637],[115,272,65,0.12029345884058062],[115,272,66,0.11124922881749758],[115,272,67,0.10244774589951512],[115,272,68,0.09390522542477825],[115,272,69,0.08559702927910035],[115,272,70,0.07749717865740981],[115,272,71,0.07578851681496422],[115,272,72,0.07542695665266044],[115,272,73,0.07498622136145505],[115,272,74,0.07262184081345688],[115,272,75,0.06861676295082457],[115,272,76,0.06450769795567382],[115,272,77,0.06032375240017886],[115,272,78,0.05609207001540951],[115,272,79,0.05183753041500131],[115,273,64,0.12509762121851054],[115,273,65,0.11576697006937867],[115,273,66,0.10662024171613305],[115,273,67,0.09773094205470068],[115,273,68,0.08912049105274748],[115,273,69,0.08155977599316062],[115,273,70,0.08113375004925265],[115,273,71,0.08072200958740049],[115,273,72,0.08029980224678869],[115,273,73,0.0798416186903003],[115,273,74,0.07932158911511086],[115,273,75,0.07711547262423628],[115,273,76,0.07275650594931261],[115,273,77,0.06829372090022029],[115,273,78,0.06375827804156016],[115,273,79,0.05917986927385921],[115,274,64,0.12069541454289467],[115,274,65,0.11124487050432269],[115,274,66,0.10199047816537621],[115,274,67,0.09300627848845792],[115,274,68,0.08742849245199134],[115,274,69,0.08677804916232315],[115,274,70,0.08619686131194243],[115,274,71,0.0856660390458949],[115,274,72,0.08516415729053757],[115,274,73,0.08466770238720162],[115,274,74,0.08415152886638066],[115,274,75,0.08358932574763842],[115,274,76,0.08108952046570633],[115,274,77,0.07637146590310379],[115,274,78,0.07155590525709274],[115,274,79,0.06667695213990833],[115,275,64,0.11638182918084687],[115,275,65,0.10680925709237109],[115,275,66,0.09744367014565869],[115,275,67,0.09390696769349527],[115,275,68,0.0929505791222438],[115,275,69,0.09210141288530349],[115,275,70,0.09134961953074948],[115,275,71,0.09068106679875228],[115,275,72,0.09007780491592832],[115,275,73,0.08951855289603505],[115,275,74,0.08897920517705372],[115,275,75,0.08843335789826687],[115,275,76,0.08785285409898648],[115,275,77,0.08449921072079442],[115,275,78,0.07943530986875315],[115,275,79,0.07428774731467658],[115,276,64,0.11222647287502698],[115,276,65,0.10253436703713335],[115,276,66,0.1011352556211335],[115,276,67,0.09982751273788736],[115,276,68,0.09864281116963156],[115,276,69,0.09758359367614411],[115,276,70,0.09664589652863265],[115,276,71,0.09582030487547392],[115,276,72,0.09509243644827259],[115,276,73,0.09444345582149274],[115,276,74,0.09385061850528677],[115,276,75,0.09328784410831899],[115,276,76,0.09272631776966758],[115,276,77,0.09213511902673764],[115,276,78,0.0873438579244359],[115,276,79,0.08196656138861619],[115,277,64,0.11083596205040278],[115,277,65,0.10916188082063319],[115,277,66,0.10751639435252926],[115,277,67,0.10596707994832666],[115,277,68,0.10454838036621276],[115,277,69,0.1032692088692267],[115,277,70,0.10213118340162916],[115,277,71,0.10112947535818274],[115,277,72,0.10025329961143516],[115,277,73,0.09948644373287859],[115,277,74,0.0988078356533704],[115,277,75,0.09819214895024911],[115,277,76,0.09761044489625234],[115,277,77,0.09703085035919796],[115,277,78,0.0952268134379711],[115,277,79,0.08966397000764452],[115,278,64,0.11795788171983784],[115,278,65,0.11603591961107096],[115,278,66,0.1141474935314717],[115,278,67,0.11235695073036975],[115,278,68,0.11070072507448234],[115,278,69,0.10919357587097714],[115,278,70,0.1078422854048657],[115,278,71,0.10664639058013917],[115,278,72,0.10559866653293944],[115,278,73,0.104685657006352],[115,278,74,0.10388825071589006],[115,278,75,0.10318230286323071],[115,278,76,0.10253930089025064],[115,278,77,0.10192707350653082],[115,278,78,0.10131054197201954],[115,278,79,0.09732793318897745],[115,279,64,0.12533453679271991],[115,279,65,0.12317283438228255],[115,279,66,0.12104726237351839],[115,279,67,0.11901819985708205],[115,279,68,0.11712327233008502],[115,279,69,0.11538234271805427],[115,279,70,0.11380683754926625],[115,279,71,0.11240035341391816],[115,279,72,0.11115912120855369],[115,279,73,0.11007252350294322],[115,279,74,0.10912366426125591],[115,279,75,0.10828999006610063],[115,279,76,0.10754396191696812],[115,279,77,0.10685377660449115],[115,279,78,0.1061841365996018],[115,279,79,0.10490509464306433],[115,280,64,0.1329696324770668],[115,280,65,0.13057859305556896],[115,280,66,0.12822390120260668],[115,280,67,0.12596136390412255],[115,280,68,0.12382900111849095],[115,280,69,0.12185093938710247],[115,280,70,0.12004264047255335],[115,280,71,0.11841137733580834],[115,280,72,0.11695666623828363],[115,280,73,0.11567075702014751],[115,280,74,0.11453918080908414],[115,280,75,0.11354135432074086],[115,280,76,0.11265123982535603],[115,280,77,0.1118380597753868],[115,280,78,0.1110670650172421],[115,280,79,0.11030035544737343],[115,281,64,0.14085644379643825],[115,281,65,0.1382484507820799],[115,281,66,0.1356746860486087],[115,281,67,0.13318593068943033],[115,281,68,0.13081982635562875],[115,281,69,0.12860384946745437],[115,281,70,0.12655681630340637],[115,281,71,0.12468922609683929],[115,281,72,0.12300364877791706],[115,281,73,0.12149517457545408],[115,281,74,0.1201519247748773],[115,281,75,0.11895562282789146],[115,281,76,0.11788222491500841],[115,281,77,0.11690260897466771],[115,281,78,0.11598332113320425],[115,281,79,0.11508737839933147],[115,282,64,0.14897739157628895],[115,282,65,0.1461664415574087],[115,282,66,0.1433853740188017],[115,282,67,0.14067964930159252],[115,282,68,0.1380858032397854],[115,282,69,0.13563370195489477],[115,282,70,0.13334478437329195],[115,282,71,0.13123227295511358],[115,282,72,0.12930150576299912],[115,282,73,0.12755033268134258],[115,282,74,0.12596957514320836],[115,282,75,0.12454354861599823],[115,282,76,0.12325064699688254],[115,282,77,0.12206398797571594],[115,282,78,0.12095211833762251],[115,282,79,0.1198797781006123],[115,283,64,0.15730344111954983],[115,283,65,0.15430469077954614],[115,283,66,0.1513294291105325],[115,283,67,0.14810716595301937],[115,283,68,0.14532656224457272],[115,283,69,0.14292018305142737],[115,283,70,0.14038905674621246],[115,283,71,0.1380261795284827],[115,283,72,0.13583932855499642],[115,283,73,0.13382898285272438],[115,283,74,0.13198871920080738],[115,283,75,0.13030567184294553],[115,283,76,0.1287610552530418],[115,283,77,0.12733074907967776],[115,283,78,0.12598594430512586],[115,283,79,0.12469384957307261],[115,284,64,0.16295492938429174],[115,284,65,0.15736368087112595],[115,284,66,0.1526841144708188],[115,284,67,0.14893262131074536],[115,284,68,0.14610154255646918],[115,284,69,0.14415649689804189],[115,284,70,0.14303384202192088],[115,284,71,0.14264123322668848],[115,284,72,0.14259224723140468],[115,284,73,0.14031034664846986],[115,284,74,0.13819302571050537],[115,284,75,0.13623040046932985],[115,284,76,0.13440681742924007],[115,284,77,0.13270136315597303],[115,284,78,0.13108843516745505],[115,284,79,0.12953837314436525],[115,285,64,0.16424747976373155],[115,285,65,0.1585573742976168],[115,285,66,0.1537920472372647],[115,285,67,0.14996890308229804],[115,285,68,0.14708077555257787],[115,285,69,0.14509315574073883],[115,285,70,0.14394154961059663],[115,285,71,0.14353195082197828],[115,285,72,0.14373747777131185],[115,285,73,0.14440072393548894],[115,285,74,0.144551237936105],[115,285,75,0.14229191078049575],[115,285,76,0.14016793890268575],[115,285,77,0.1381619696181787],[115,285,78,0.13625206971975157],[115,285,79,0.13441226680703428],[115,286,64,0.16574691636112052],[115,286,65,0.15995764705893306],[115,286,66,0.1551042575365067],[115,286,67,0.15120528936957867],[115,286,68,0.14825424494989758],[115,286,69,0.1462167190773414],[115,286,70,0.14502765513894278],[115,286,71,0.14459173463821914],[115,286,72,0.14477989670398556],[115,286,73,0.14543176596040644],[115,286,74,0.14643674737016593],[115,286,75,0.1477302791299299],[115,286,76,0.14600870215506323],[115,286,77,0.14368394691856698],[115,286,78,0.14145568429431205],[115,286,79,0.1393020594321043],[115,287,64,0.16743854635901523],[115,287,65,0.16155074029279515],[115,287,66,0.1566078649978859],[115,287,67,0.15262971439312628],[115,287,68,0.14961062905385783],[115,287,69,0.14751653438789766],[115,287,70,0.14628209853830038],[115,287,71,0.14581104150941804],[115,287,72,0.14597254000181578],[115,287,73,0.14660370183656968],[115,287,74,0.14759237504163525],[115,287,75,0.1488733064042541],[115,287,76,0.15039149361243098],[115,287,77,0.14922130410137704],[115,287,78,0.14666180888426444],[115,287,79,0.1441791854595857],[115,288,64,0.1693064545414955],[115,288,65,0.1633216624872887],[115,288,66,0.15828876043539747],[115,288,67,0.15422890066702627],[115,288,68,0.1511374236660599],[115,288,69,0.14898080637321032],[115,288,70,0.14769372522441454],[115,288,71,0.1471792881431138],[115,288,72,0.1473053279688725],[115,288,73,0.1479068931148494],[115,288,74,0.1488704797835206],[115,288,75,0.15013018939834763],[115,288,76,0.15163042973927948],[115,288,77,0.1533229721865001],[115,288,78,0.15181382502662288],[115,288,79,0.14899710160834354],[115,289,64,0.17133369077431876],[115,289,65,0.16525436685770037],[115,289,66,0.16013177349457683],[115,289,67,0.15598851739227404],[115,289,68,0.15282109178987646],[115,289,69,0.15059673861047793],[115,289,70,0.1492504203919536],[115,289,71,0.14868497876869444],[115,289,72,0.14876732014826966],[115,289,73,0.14933089313463455],[115,289,74,0.1502610557377358],[115,289,75,0.15149132048293987],[115,289,76,0.1529655525374001],[115,289,77,0.1546349285820804],[115,289,78,0.15645540434025373],[115,289,79,0.1536882294393169],[115,290,64,0.173502481600523],[115,290,65,0.167331953598633],[115,290,66,0.16212086587648983],[115,290,67,0.15789336506848012],[115,290,68,0.1546472401337881],[115,290,69,0.1523507025244531],[115,290,70,0.15093927108254382],[115,290,71,0.15031586096102056],[115,290,72,0.15034686556254578],[115,290,73,0.15086459230743204],[115,290,74,0.15175348160024912],[115,290,75,0.1529465234421081],[115,290,76,0.1543870970282682],[115,290,77,0.15602583108097057],[115,290,78,0.15781797235969972],[115,290,79,0.15817761259973162],[115,291,64,0.1757944659514678],[115,291,65,0.16953689701139205],[115,291,66,0.16423935013882313],[115,291,67,0.15992758632391366],[115,291,68,0.156600822412458],[115,291,69,0.15422843367412278],[115,291,70,0.1527467560263242],[115,291,71,0.15205910963936012],[115,291,72,0.15203178148040136],[115,291,73,0.15249639223303532],[115,291,74,0.15333669055047783],[115,291,75,0.1544852195343737],[115,291,76,0.15588493783739046],[115,291,77,0.15748598169578454],[115,291,78,0.1592429329892775],[115,291,79,0.16111218959021945],[115,292,64,0.17819095497342152],[115,292,65,0.17185129750674627],[115,292,66,0.16647013407417638],[115,292,67,0.16207490296398666],[115,292,68,0.15866636944564588],[115,292,69,0.156215255355009],[115,292,70,0.15465896325711714],[115,292,71,0.15390153924173278],[115,292,72,0.15380956070989474],[115,292,73,0.15421440864836472],[115,292,74,0.1549993692683756],[115,292,75,0.1560966228337408],[115,292,76,0.157448780974375],[115,292,77,0.15900555105773456],[115,292,78,0.16072090283680945],[115,292,79,0.1625503330042698],[115,293,64,0.18067321596959007],[115,293,65,0.17425715848296403],[115,293,66,0.16879599066545617],[115,293,67,0.1643188792380763],[115,293,68,0.16082824605485907],[115,293,69,0.1582963295169882],[115,293,70,0.15666183550111898],[115,293,71,0.15582984407456296],[115,293,72,0.15566760741799263],[115,293,73,0.15600670320887394],[115,293,74,0.15673018603911187],[115,293,75,0.1577699648505731],[115,293,76,0.15906838501332415],[115,293,77,0.16057479606514768],[115,293,78,0.1622426164566555],[115,293,79,0.16402649165101002],[115,294,64,0.18322278045758886],[115,294,65,0.17673668807912069],[115,294,66,0.171199853618371],[115,294,67,0.16664321132468776],[115,294,68,0.1630709347577424],[115,294,69,0.16045693499763156],[115,294,70,0.1587414433391049],[115,294,71,0.15783086683764141],[115,294,72,0.15759350147647666],[115,294,73,0.15786154410252615],[115,294,74,0.1585180479453426],[115,294,75,0.15949474843231068],[115,294,76,0.16073381167355316],[115,294,77,0.16218430697469513],[115,294,78,0.16379916965378927],[115,294,79,0.16553225251106224],[115,295,64,0.18582177634247593],[115,295,65,0.17927262580380193],[115,295,66,0.17366513847114712],[115,295,67,0.16903204303507596],[115,295,68,0.16537934626032516],[115,295,69,0.16268277307118545],[115,295,70,0.1608842861422748],[115,295,71,0.15989189532451772],[115,295,72,0.15957529133432868],[115,295,73,0.1597676954964605],[115,295,74,0.16035238714719643],[115,295,75,0.16126103094414962],[115,295,76,0.1624357058007559],[115,295,77,0.16382528393545326],[115,295,78,0.16538229219127823],[115,295,79,0.1670598571754589],[115,296,64,0.18845328420516227],[115,296,65,0.18184859403901188],[115,296,66,0.17617608928127887],[115,296,67,0.1714703077351388],[115,296,68,0.167739156746939],[115,296,69,0.1649603003130034],[115,296,70,0.1630776207815463],[115,296,71,0.16200098729813245],[115,296,72,0.16160181541640223],[115,296,73,0.16171473581615747],[115,296,74,0.16222347624978223],[115,296,75,0.16305973672948984],[115,296,76,0.16416560474842545],[115,296,77,0.16548984296560532],[115,296,78,0.16698464990097453],[115,296,79,0.1686024995067223],[115,297,64,0.1911017177064022],[115,297,65,0.18444947441949483],[115,297,66,0.17871815088951798],[115,297,67,0.17394409648578912],[115,297,68,0.1701371719680129],[115,297,69,0.16727708877963762],[115,297,70,0.16530981811050638],[115,297,71,0.16414732354189898],[115,297,72,0.16366305204859122],[115,297,73,0.16369340485731446],[115,297,74,0.1641227727584312],[115,297,75,0.16488299885036706],[115,297,76,0.16591627715974194],[115,297,77,0.16717135137199587],[115,297,78,0.16860017619762924],[115,297,79,0.17015465258100182],[115,298,64,0.19375322810616924],[115,298,65,0.187061809087272],[115,298,66,0.18127836676090742],[115,298,67,0.17644105240160715],[115,298,68,0.1725617181255474],[115,298,69,0.16962221350439233],[115,298,70,0.16757074722182091],[115,298,71,0.16632158908603534],[115,298,72,0.16575049790929547],[115,298,73,0.16569597973022995],[115,298,74,0.16604329262147072],[115,298,75,0.16672453010766203],[115,298,76,0.16768209114972424],[115,298,77,0.16886479261233484],[115,298,78,0.17022443299622678],[115,298,79,0.17171242491106542],[115,299,64,0.19639613289854957],[115,299,65,0.1896742268215273],[115,299,66,0.18384580240299125],[115,299,67,0.17895079122790886],[115,299,68,0.17500305955640294],[115,299,69,0.17198666730847206],[115,299,70,0.1698521874772374],[115,299,71,0.16851638260928103],[115,299,72,0.16785757500731913],[115,299,73,0.16771667963683368],[115,299,74,0.1679800128606674],[115,299,75,0.1685800233412286],[115,299,76,0.16945941188778507],[115,299,77,0.1705671606001901],[115,299,78,0.17185500103267914],[115,299,79,0.17327394595028545],[115,300,64,0.1990213685621472],[115,300,65,0.19227789404383738],[115,300,66,0.186411994361195],[115,300,67,0.18146534813622225],[115,300,68,0.1774538432133955],[115,300,69,0.17436380292772025],[115,300,70,0.17214826831117644],[115,300,71,0.17072665401599332],[115,300,72,0.16998006618619563],[115,300,73,0.16975209948035513],[115,300,74,0.16993030328933373],[115,300,75,0.17044758100993124],[115,300,76,0.17124702858068078],[115,300,77,0.17227788345276085],[115,300,78,0.17349189958787092],[115,300,79,0.17483978087760937],[115,301,64,0.2016229674258906],[115,301,65,0.1948669906986313],[115,301,66,0.18897142479126489],[115,301,67,0.18397965073805994],[115,301,68,0.1799095699440865],[115,301,69,0.17674980245483363],[115,301,70,0.17445593680779467],[115,301,71,0.17295017018850767],[115,301,72,0.17211657915482262],[115,301,73,0.1718016723075157],[115,301,74,0.1718943873179793],[115,301,75,0.17232817405147616],[115,301,76,0.17304661085573972],[115,301,77,0.17399927668131418],[115,301,78,0.17513803561493882],[115,301,79,0.17641337466339915],[115,302,64,0.2041985586503641],[115,302,65,0.19743921100900916],[115,302,66,0.1915220216088923],[115,302,67,0.1864920183171166],[115,302,68,0.18236909256739642],[115,302,69,0.17914417409718253],[115,302,70,0.17677545305165296],[115,302,71,0.1751880089148946],[115,302,72,0.17426903904454302],[115,302,73,0.173868160583378],[115,302,74,0.1738758318476455],[115,302,75,0.1742261300221731],[115,302,76,0.17486319454450663],[115,302,77,0.17573702582442485],[115,302,78,0.17679968226992385],[115,302,79,0.17800152541627812],[115,303,64,0.20674989332464097],[115,303,65,0.19999628910789063],[115,303,66,0.19406568421649673],[115,303,67,0.18900468727986097],[115,303,68,0.18483514074801224],[115,303,69,0.18155027625020628],[115,303,70,0.17911091325195605],[115,303,71,0.17744508099207967],[115,303,72,0.17644320949263403],[115,303,73,0.1759581762988165],[115,303,74,0.1758820662508831],[115,303,75,0.17614965051658743],[115,303,76,0.17670569686676205],[115,303,77,0.1775006985239738],[115,303,78,0.1784869868457542],[115,303,79,0.17961488701094253],[115,304,64,0.2092833936785129],[115,304,65,0.2025445495443936],[115,304,66,0.19660883480706517],[115,304,67,0.1915243628244246],[115,304,68,0.18731487266848912],[115,304,69,0.18397586888628578],[115,304,70,0.18147080064026805],[115,304,71,0.17973068050423083],[115,304,72,0.17864924225211232],[115,304,73,0.17808272991051735],[115,304,74,0.17792493044028354],[115,304,75,0.178111357866994],[115,304,76,0.17858746101482936],[115,304,77,0.17930428604382068],[115,304,78,0.18021450810947276],[115,304,79,0.18126850099685138],[115,305,64,0.2118107264102601],[115,305,65,0.20509548266558247],[115,305,66,0.19916299524519],[115,305,67,0.19406279682792432],[115,305,68,0.18982045349918603],[115,305,69,0.18643369225923162],[115,305,70,0.18386856414183997],[115,305,71,0.1820590632765496],[115,305,72,0.1809022553279896],[115,305,73,0.18025780811363973],[115,305,74,0.18002125202469527],[115,305,75,0.18012887112276382],[115,305,76,0.18052683013829873],[115,305,77,0.18116677423127958],[115,305,78,0.18200178304283748],[115,305,79,0.1829823577879244],[115,306,64,0.21434940012992457],[115,306,65,0.2076663448735516],[115,306,66,0.2017453895252679],[115,306,67,0.1966373919521875],[115,306,68,0.19236966066600034],[115,306,69,0.18894207292435283],[115,306,70,0.18632322482051605],[115,306,71,0.18445005350443291],[115,306,72,0.18322293963994601],[115,306,73,0.18250498044710786],[115,306,74,0.182193452553094],[115,306,75,0.1822254113096517],[115,306,76,0.18254775072913781],[115,306,77,0.18311274392136512],[115,306,78,0.1838739229862636],[115,306,79,0.18478198713321567],[115,307,64,0.21692181594989782],[115,307,65,0.2102792438465564],[115,307,66,0.2043780568114838],[115,307,67,0.19927033569327157],[115,307,68,0.19498503234204037],[115,307,69,0.19152408061749376],[115,307,70,0.18885853590602752],[115,307,71,0.18692820284238623],[115,307,72,0.1856367146104763],[115,307,73,0.1848505507421702],[115,307,74,0.18446869626751347],[115,307,75,0.18442895066455572],[115,307,76,0.18467892682768183],[115,307,77,0.1851715355340685],[115,307,78,0.18586079463552657],[115,307,79,0.18669766180355532],[115,308,64,0.2195240958242949],[115,308,65,0.21293057074732474],[115,308,66,0.20705776555306077],[115,308,67,0.20195887346231287],[115,308,68,0.19766438010324505],[115,308,69,0.19417816980758562],[115,308,70,0.19147365710272302],[115,308,71,0.18949342238002015],[115,308,72,0.18814427100550896],[115,308,73,0.1872960007355125],[115,308,74,0.18684926964517115],[115,308,75,0.18674260378047913],[115,308,76,0.18692432966111613],[115,308,77,0.18734800685717432],[115,308,78,0.18796817077004774],[115,308,79,0.1887360944196629],[115,309,64,0.22212519260090952],[115,309,65,0.21559002248134868],[115,309,66,0.20975495452999926],[115,309,67,0.20467417525492296],[115,309,68,0.20037958802216588],[115,309,69,0.1968769176414952],[115,309,70,0.19414183704900168],[115,309,71,0.1921196140741962],[115,309,72,0.19072015409407309],[115,309,73,0.18981652542304872],[115,309,74,0.1893110666002473],[115,309,75,0.18914305803147657],[115,309,76,0.18926156722777765],[115,309,77,0.18962083501936564],[115,309,78,0.19017595776505689],[115,309,79,0.18761124204144825],[115,310,64,0.224695245870218],[115,310,65,0.2182283574448303],[115,310,66,0.21244100297927893],[115,310,67,0.2073882357375675],[115,310,68,0.20310325510080265],[115,310,69,0.19959351300800354],[115,310,70,0.19683683965358728],[115,310,71,0.19478110514897606],[115,310,72,0.19333925015471615],[115,310,73,0.1923875809009476],[115,310,74,0.19183016373261022],[115,310,75,0.1916071037034128],[115,310,76,0.1916682672319576],[115,310,77,0.19196862880585688],[115,310,78,0.1900971115476517],[115,310,79,0.1839669867413137],[115,311,64,0.2272067924337464],[115,311,65,0.22081858982100075],[115,311,66,0.2150894122403786],[115,311,67,0.21007504682051867],[115,311,68,0.20580986226251105],[115,311,69,0.20230292118779836],[115,311,70,0.19953410920149536],[115,311,71,0.197453815801089],[115,311,72,0.19597795803104742],[115,311,73,0.19498605983956624],[115,311,74,0.19438399823923444],[115,311,75,0.19411281144185533],[115,311,76,0.1941232500768213],[115,311,77,0.19297192695429494],[115,311,78,0.1863154306556455],[115,311,79,0.18001527832629316],[115,312,64,0.22963480854085833],[115,312,65,0.22333603198428892],[115,312,66,0.2176758472520388],[115,312,67,0.21271063720215433],[115,312,68,0.20847580895954904],[115,312,69,0.2049819166344209],[115,312,70,0.20221079854930304],[115,312,71,0.20011528222017028],[115,312,72,0.19861420659890736],[115,312,73,0.1975903032695005],[115,312,74,0.19695137411723757],[115,312,75,0.19663953314340915],[115,312,76,0.19619198850445124],[115,312,77,0.18905776753953996],[115,312,78,0.18223876776168643],[115,312,79,0.17579778998332288],[115,313,64,0.23195679318473586],[115,313,65,0.22575823980291],[115,313,66,0.22017794436823254],[115,313,67,0.21527274358187393],[115,313,68,0.2110789490662395],[115,313,69,0.2076084852551733],[115,313,70,0.20484503995145242],[115,313,71,0.20274379859577157],[115,313,72,0.20122647109610195],[115,313,73,0.20017899490845392],[115,313,74,0.19951123866200374],[115,313,75,0.1991665652338657],[115,313,76,0.1921253009307679],[115,313,77,0.1848476505549249],[115,313,78,0.17790228227012264],[115,313,79,0.1713543441460313],[115,314,64,0.234152439578385],[115,314,65,0.22806470806598753],[115,314,66,0.22257502951635966],[115,314,67,0.2177405502893019],[115,314,68,0.2135983507102993],[115,314,69,0.21016160320093533],[115,314,70,0.20741574162712795],[115,314,71,0.20531823038191852],[115,314,72,0.20379360215001538],[115,314,73,0.20273100520328147],[115,314,74,0.20204254095031818],[115,314,75,0.1953994816869299],[115,314,76,0.18774940315360308],[115,314,77,0.18036996543271808],[115,314,78,0.17333823211293917],[115,314,79,0.16672096633588487],[115,315,64,0.23282557187047312],[115,315,65,0.23023679295764915],[115,315,66,0.22484817852422787],[115,315,67,0.22009488455146994],[115,315,68,0.21601462326379847],[115,315,69,0.21262169210215576],[115,315,70,0.20990316754548619],[115,315,71,0.20781871476785568],[115,315,72,0.20629564295514613],[115,315,73,0.2052263211735902],[115,315,74,0.1987234488383713],[115,315,75,0.19080639527139268],[115,315,76,0.18308630980107507],[115,315,77,0.17564941098003353],[115,315,78,0.16857400610957982],[115,315,79,0.16192770394935924],[115,316,64,0.23023036451444384],[115,316,65,0.22815271609770968],[115,316,66,0.2262428746042531],[115,316,67,0.22231829352660287],[115,316,68,0.21831000501187786],[115,316,69,0.21497071620577513],[115,316,70,0.21228904293895834],[115,316,71,0.21022677358969571],[115,316,72,0.2087139487605686],[115,316,73,0.2019172621235225],[115,316,74,0.19384928351941386],[115,316,75,0.18589751969062515],[115,316,76,0.1781537644816507],[115,316,77,0.17070498346164747],[115,316,78,0.1636299084049435],[115,316,79,0.15699621357016078],[115,317,64,0.22757769151099502],[115,317,65,0.2255926274786457],[115,317,66,0.22376451015256785],[115,317,67,0.22206723739355513],[115,317,68,0.2204684417090134],[115,317,69,0.21719226636640426],[115,317,70,0.21455664271875885],[115,317,71,0.21252540527730973],[115,317,72,0.20479524016370151],[115,317,73,0.19669330511657798],[115,317,74,0.18862541896645757],[115,317,75,0.18068469532890968],[115,317,76,0.17296315525015324],[115,317,77,0.16554770369429656],[115,317,78,0.15851669935511753],[115,317,79,0.1519371209865845],[115,318,64,0.2248567986007865],[115,318,65,0.22295428152889277],[115,318,66,0.22119546452856745],[115,318,67,0.21955681989131545],[115,318,68,0.21805874344204956],[115,318,69,0.2167296995865065],[115,318,70,0.21508668115220106],[115,318,71,0.2071835693428847],[115,318,72,0.1991557327159036],[115,318,73,0.19108435351445124],[115,318,74,0.1830590909921767],[115,318,75,0.17517285067082491],[115,318,76,0.16751714937657405],[115,318,77,0.16017808152324003],[115,318,78,0.15323289098634596],[115,318,79,0.14674715180264494],[115,319,64,0.2220529763679994],[115,319,65,0.22022476268274574],[115,319,66,0.21852484548350934],[115,319,67,0.21693201565723397],[115,319,68,0.21546732768776286],[115,319,69,0.21415834247899815],[115,319,70,0.20893633493267072],[115,319,71,0.20107261139688942],[115,319,72,0.19309826558020585],[115,319,73,0.18509435157203163],[115,319,74,0.1771500646788537],[115,319,75,0.16935750476345107],[115,319,76,0.16180704557274467],[115,319,77,0.15458331557140803],[115,319,78,0.1477617946591656],[115,319,79,0.141406030026161],[116,-64,64,0.33631826808821486],[116,-64,65,0.3421063525379185],[116,-64,66,0.3480041138415352],[116,-64,67,0.35399206297168384],[116,-64,68,0.36007664900310293],[116,-64,69,0.36627771051409697],[116,-64,70,0.3726073486464865],[116,-64,71,0.3790698585388345],[116,-64,72,0.3856621653543569],[116,-64,73,0.3923743050573137],[116,-64,74,0.3991899503835022],[116,-64,75,0.4060869823388308],[116,-64,76,0.41303810744859115],[116,-64,77,0.4200115208698273],[116,-64,78,0.42697161537042144],[116,-64,79,0.43387973607264435],[116,-63,64,0.33777097025842706],[116,-63,65,0.34366503313092484],[116,-63,66,0.3496730342776328],[116,-63,67,0.35577663014552496],[116,-63,68,0.3619818952876891],[116,-63,69,0.3683069817811457],[116,-63,70,0.37476215815563657],[116,-63,71,0.3813498352121359],[116,-63,72,0.38806506549377284],[116,-63,73,0.3948960821266833],[116,-63,74,0.40182487728240224],[116,-63,75,0.4088278204072647],[116,-63,76,0.4158763162595641],[116,-63,77,0.4229375026927461],[116,-63,78,0.42997498802293044],[116,-63,79,0.43694962772290885],[116,-62,64,0.33940171353135257],[116,-62,65,0.3453885512564269],[116,-62,66,0.3514920372119391],[116,-62,67,0.3576952795058324],[116,-62,68,0.36400391171163327],[116,-62,69,0.3704341572350759],[116,-62,70,0.3769943689331542],[116,-62,71,0.38368513127224585],[116,-62,72,0.3904997986051327],[116,-62,73,0.39742506862936233],[116,-62,74,0.40444159113977796],[116,-62,75,0.41152461208738067],[116,-62,76,0.418644652858258],[116,-62,77,0.42576822459085156],[116,-62,78,0.43285857725756083],[116,-62,79,0.43987648314885325],[116,-61,64,0.3411960810042873],[116,-61,65,0.3472625750417003],[116,-61,66,0.35344686158555416],[116,-61,67,0.3597337635708707],[116,-61,68,0.36612842822409275],[116,-61,69,0.3726449663710547],[116,-61,70,0.3792897775629101],[116,-61,71,0.38606171091621255],[116,-61,72,0.3929526190119495],[116,-61,73,0.3999479439215409],[116,-61,74,0.40702733538464575],[116,-61,75,0.4141653010683442],[116,-61,76,0.4213318887446564],[116,-61,77,0.4284934001341229],[116,-61,78,0.4356131360774995],[116,-61,79,0.4426521726166996],[116,-60,64,0.3431359654721517],[116,-60,65,0.34926943372746344],[116,-60,66,0.3555203065613132],[116,-60,67,0.36187533130711685],[116,-60,68,0.36833913965742265],[116,-60,69,0.3749236012319928],[116,-60,70,0.38163316353249077],[116,-60,71,0.38846505492319106],[116,-60,72,0.3954098332274769],[116,-60,73,0.40245196441805015],[116,-60,74,0.40957043138226706],[116,-60,75,0.4167393726539446],[116,-60,76,0.42392875091570903],[116,-60,77,0.4311050509921755],[116,-60,78,0.438232006974119],[116,-60,79,0.4452713580384569],[116,-59,64,0.3452006058702424],[116,-59,65,0.3513891875784447],[116,-59,66,0.35769333540387405],[116,-59,67,0.3641018664099811],[116,-59,68,0.37061887617554207],[116,-59,69,0.37725391255315566],[116,-59,70,0.3840095008980397],[116,-59,71,0.3908813745590092],[116,-59,72,0.39785900032722493],[116,-59,73,0.40492613278864215],[116,-59,74,0.412061397554594],[116,-59,75,0.4192389032598863],[116,-59,76,0.4264288821354011],[116,-59,77,0.4335983588831943],[116,-59,78,0.44071184750656606],[116,-59,79,0.4477320756767129],[116,-58,64,0.3473678235355744],[116,-58,65,0.35360089746178963],[116,-58,66,0.35994637813445696],[116,-58,67,0.36639522276256364],[116,-58,68,0.3729509683202165],[116,-58,69,0.379620796490867],[116,-58,70,0.38640535474575205],[116,-58,71,0.39329900248519567],[116,-58,72,0.4002902993985348],[116,-58,73,0.4073625221304817],[116,-58,74,0.4144942092479047],[116,-58,75,0.4216597344208381],[116,-58,76,0.42882990765374607],[116,-58,77,0.4359726043283368],[116,-58,78,0.4430534217476938],[116,-58,79,0.4500363628042604],[116,-57,64,0.34961545815310313],[116,-57,65,0.355884093949756],[116,-57,66,0.36226083282142824],[116,-57,67,0.36873875695288355],[116,-57,68,0.3753208065674936],[116,-57,69,0.3820117718892883],[116,-57,70,0.38881046245368733],[116,-57,71,0.3957099607322353],[116,-57,72,0.40269806418835086],[116,-57,73,0.4097577553037725],[116,-57,74,0.41686769960406894],[116,-57,75,0.4240027716363529],[116,-57,76,0.4311346087791002],[116,-57,77,0.43823219269336805],[116,-57,78,0.44526245815690474],[116,-57,79,0.45219092895868457],[116,-56,64,0.35191945715237677],[116,-56,65,0.35821642526339476],[116,-56,66,0.3646162683093887],[116,-56,67,0.3711140830323154],[116,-56,68,0.3777121460892369],[116,-56,69,0.3844128377221309],[116,-56,70,0.3912131545657772],[116,-56,71,0.3981049662089879],[116,-56,72,0.4050754063706576],[116,-56,73,0.41210729163787646],[116,-56,74,0.4191795678327244],[116,-56,75,0.4262677840043603],[116,-56,76,0.4333445939745599],[116,-56,77,0.44038028529859036],[116,-56,78,0.4473433354393814],[116,-56,79,0.4542009948924026],[116,-55,64,0.35423326716330156],[116,-55,65,0.360550047991456],[116,-55,66,0.3669637899293845],[116,-55,67,0.3734714015073037],[116,-55,68,0.3800744166890009],[116,-55,69,0.38677284605929785],[116,-55,70,0.3935619534628984],[116,-55,71,0.40043250783135975],[116,-55,72,0.4073711177275173],[116,-55,73,0.414360593181953],[116,-55,74,0.4213803349350071],[116,-55,75,0.42840675113300225],[116,-55,76,0.43541370146356106],[116,-55,77,0.4423729686528063],[116,-55,78,0.44925475718694846],[116,-55,79,0.45602821906334284],[116,-54,64,0.35650450839860076],[116,-54,65,0.36283028411011037],[116,-54,66,0.36924666300455994],[116,-54,67,0.3757520854715278],[116,-54,68,0.3823472630778286],[116,-54,69,0.38902995312999544],[116,-54,70,0.39579384519161576],[116,-54,71,0.40262879512343364],[116,-54,72,0.4095210939857577],[116,-54,73,0.41645376451780236],[116,-54,74,0.42340688537274884],[116,-54,75,0.4303579432270524],[116,-54,76,0.43728221282269875],[116,-54,77,0.44415316494233864],[116,-54,78,0.45094290225968703],[116,-54,79,0.45762262295222117],[116,-53,64,0.3586873168841872],[116,-53,65,0.3650095120394034],[116,-53,66,0.3714157512462499],[116,-53,67,0.37790566564413475],[116,-53,68,0.3844790654467091],[116,-53,69,0.3911316330745522],[116,-53,70,0.39785570425914707],[116,-53,71,0.4046404670752348],[116,-53,72,0.41147215377865787],[116,-53,73,0.41833426140418606],[116,-53,74,0.42520780139272607],[116,-53,75,0.4320715784605302],[116,-53,76,0.43890249886588206],[116,-53,77,0.4456759081719023],[116,-53,78,0.4523659585477468],[116,-53,79,0.45894600559556065],[116,-52,64,0.36074268162151407],[116,-52,65,0.3670474650367281],[116,-52,66,0.37342977278231787],[116,-52,67,0.3798900405193747],[116,-52,68,0.3864271006931691],[116,-52,69,0.39303478820663973],[116,-52,70,0.3997043521357936],[116,-52,71,0.4064245994956987],[116,-52,72,0.41318199695315316],[116,-52,73,0.4199608036558019],[116,-52,74,0.4267432355674538],[116,-52,75,0.43350966164447613],[116,-52,76,0.44023883213197],[116,-52,77,0.446908139201624],[116,-52,78,0.453493910095922],[116,-52,79,0.45997173288672977],[116,-51,64,0.36263884665044593],[116,-51,65,0.36891158683206926],[116,-51,66,0.37525560550157827],[116,-51,67,0.3816717274453627],[116,-51,68,0.3881577356871778],[116,-51,69,0.3947058820583852],[116,-51,70,0.40130662910741455],[116,-51,71,0.4079487163320963],[116,-51,72,0.41461915775596303],[116,-51,73,0.4213032743644546],[116,-51,74,0.42798476194309487],[116,-51,75,0.4346457948047936],[116,-51,76,0.4412671658360822],[116,-51,77,0.44782846323301245],[116,-51,78,0.45430828423691],[116,-51,79,0.4606844861192108],[116,-50,64,0.3643518362096852],[116,-50,65,0.37057751022454993],[116,-50,66,0.3768687149720239],[116,-50,67,0.38322623544036744],[116,-50,68,0.3896467408907064],[116,-50,69,0.39612119082665187],[116,-50,70,0.4026395819997411],[116,-50,71,0.4091909137581517],[116,-50,72,0.4157630671255845],[116,-50,73,0.4223427240285948],[116,-50,74,0.4289153273991204],[116,-50,75,0.43546508282171614],[116,-50,76,0.44197500233400633],[116,-50,77,0.44842699092488086],[116,-50,78,0.4548019762083238],[116,-50,79,0.46108008168258746],[116,-49,64,0.3643158662170809],[116,-49,65,0.37103121963314123],[116,-49,66,0.37783875673075523],[116,-49,67,0.3845360548214901],[116,-49,68,0.3908779439266707],[116,-49,69,0.39726615859476583],[116,-49,70,0.40369054651254926],[116,-49,71,0.41014068127786246],[116,-49,72,0.41660560964177584],[116,-49,73,0.4230736457579987],[116,-49,74,0.42953221338020847],[116,-49,75,0.43596773688592716],[116,-49,76,0.44236558193828723],[116,-49,77,0.4487100465253407],[116,-49,78,0.4549844030409365],[116,-49,79,0.4611709919928168],[116,-48,64,0.3640959481204026],[116,-48,65,0.3708530402317916],[116,-48,66,0.3777099664247187],[116,-48,67,0.38464951304863537],[116,-48,68,0.391657709608555],[116,-48,69,0.39813157545833544],[116,-48,70,0.4044552698062012],[116,-48,71,0.4107989803017545],[116,-48,72,0.4171531283789828],[116,-48,73,0.42350783567824346],[116,-48,74,0.4298526420665531],[116,-48,75,0.4361762810361057],[116,-48,76,0.4424665135084031],[116,-48,77,0.44871002098959784],[116,-48,78,0.45489235893559343],[116,-48,79,0.46099797109438656],[116,-47,64,0.36397411673861146],[116,-47,65,0.3707703689064162],[116,-47,66,0.3776724937051167],[116,-47,67,0.38466481092897353],[116,-47,68,0.39173491348825973],[116,-47,69,0.3987144384379031],[116,-47,70,0.4049357031470431],[116,-47,71,0.41117289355587483],[116,-47,72,0.4174179172553857],[116,-47,73,0.42366277689792387],[116,-47,74,0.4298991619039423],[116,-47,75,0.43611810694347575],[116,-47,76,0.44230971843784],[116,-47,77,0.4484629702333084],[116,-47,78,0.45456556949817767],[116,-47,79,0.46060389378908684],[116,-46,64,0.36395853607222045],[116,-46,65,0.37078863611270496],[116,-46,66,0.3777287380987927],[116,-46,67,0.38476510286154425],[116,-46,68,0.391887024808412],[116,-46,69,0.3990180406304194],[116,-46,70,0.40513924658786743],[116,-46,71,0.41127401630901195],[116,-46,72,0.4174157677264211],[116,-46,73,0.42355836857034956],[116,-46,74,0.42969560324807676],[116,-46,75,0.43582071634116903],[116,-46,76,0.44192603417695264],[116,-46,77,0.4480026658234689],[116,-46,78,0.45404028474228186],[116,-46,79,0.46002699221227994],[116,-45,64,0.36404945095792257],[116,-45,65,0.3709056897523785],[116,-45,66,0.37787396059713696],[116,-45,67,0.38494284401544704],[116,-45,68,0.3921034871973021],[116,-45,69,0.3990512883615985],[116,-45,70,0.40507812260925374],[116,-45,71,0.4111178961504891],[116,-45,72,0.4171654840795549],[116,-45,73,0.42321652560705575],[116,-45,74,0.42926677072624997],[116,-45,75,0.43531151341727303],[116,-45,76,0.44134511304137425],[116,-45,77,0.4473606054561411],[116,-45,78,0.45334940525253975],[116,-45,79,0.45930110037710575],[116,-44,64,0.3642400120998129],[116,-44,65,0.37111261156617015],[116,-44,66,0.37809708210963305],[116,-44,67,0.38518466494180476],[116,-44,68,0.3923685190288485],[116,-44,69,0.3988280178363011],[116,-44,70,0.4047687472870055],[116,-44,71,0.4107234680889656],[116,-44,72,0.41668839163752386],[116,-44,73,0.4226607687083511],[116,-44,74,0.4286381231764728],[116,-44,75,0.4346175819298221],[116,-44,76,0.4405953028041218],[116,-44,77,0.4465660022303862],[116,-44,78,0.4525225841407975],[116,-44,79,0.4584558715249449],[116,-43,64,0.364517096353225],[116,-43,65,0.3713945296229683],[116,-43,66,0.3783814788840105],[116,-43,67,0.3854721412925038],[116,-43,68,0.3925230025509006],[116,-43,69,0.39836630937425127],[116,-43,70,0.4042310972296192],[116,-43,71,0.4101124833951464],[116,-43,72,0.41600783649326506],[116,-43,73,0.42191580355433966],[116,-43,74,0.4278354402456915],[116,-43,75,0.43376544637929276],[116,-43,76,0.43970350867396446],[116,-43,77,0.44564575259821304],[116,-43,78,0.45158630495929364],[116,-43,79,0.4575169687345896],[116,-42,64,0.3648621246698947],[116,-42,65,0.3717314292729605],[116,-42,66,0.37870577719467763],[116,-42,67,0.3857825637827551],[116,-42,68,0.39191237167657617],[116,-42,69,0.3976877972622123],[116,-42,70,0.40348807047335045],[116,-42,71,0.409308930555049],[116,-42,72,0.4151486753440045],[116,-42,73,0.4210070879450239],[116,-42,74,0.4268844746752886],[116,-42,75,0.43278081652256783],[116,-42,76,0.4386950362133868],[116,-42,77,0.44462438282395705],[116,-42,78,0.450563935691994],[116,-42,79,0.4565062292033541],[116,-41,64,0.36525188015633164],[116,-41,65,0.37209896497779565],[116,-41,66,0.37904464964744383],[116,-41,67,0.38541802853803864],[116,-41,68,0.39109871384554035],[116,-41,69,0.3968169732053781],[116,-41,70,0.4025648394734482],[116,-41,71,0.40833844665110564],[116,-41,72,0.414136753942527],[116,-41,73,0.41996038562892035],[116,-41,74,0.4258105892535413],[116,-41,75,0.4316883144648926],[116,-41,76,0.4375934147035562],[116,-41,77,0.4435239737425603],[116,-41,78,0.4494757589036779],[116,-41,79,0.4554418025746849],[116,-40,64,0.3656593287311916],[116,-40,65,0.37246927546670267],[116,-40,66,0.3789090858731472],[116,-40,67,0.38447983243100975],[116,-40,68,0.39010831271740826],[116,-40,69,0.3957804813194409],[116,-40,70,0.40148819428773036],[116,-40,71,0.4072277174450341],[116,-40,72,0.41299837263957107],[116,-40,73,0.4188013055150821],[116,-40,74,0.4246383773700413],[116,-40,75,0.43051118352189477],[116,-40,76,0.4364202004198467],[116,-40,77,0.4423640635633569],[116,-40,78,0.4483389780849435],[116,-40,79,0.45433826364722507],[116,-39,64,0.3660544448924227],[116,-39,65,0.37243163681451197],[116,-39,66,0.37786298501336496],[116,-39,67,0.3833832613161738],[116,-39,68,0.3889693433337273],[116,-39,69,0.39460640257215673],[116,-39,70,0.4002858740144868],[116,-39,71,0.40600386440075703],[116,-39,72,0.41175973745432226],[116,-39,73,0.4175548249253251],[116,-39,74,0.42339126606808714],[116,-39,75,0.4292709780041461],[116,-39,76,0.43519475924159695],[116,-39,77,0.4411615284261714],[116,-39,78,0.44716770019192403],[116,-39,79,0.4532066997617375],[116,-38,64,0.36605190500514523],[116,-38,65,0.371302168022697],[116,-38,66,0.37667967205533337],[116,-38,67,0.3821578806613011],[116,-38,68,0.3877111063239987],[116,-38,69,0.39332352655893976],[116,-38,70,0.39898588452039324],[116,-38,71,0.4046938168573294],[116,-38,72,0.4104463950796872],[116,-38,73,0.4162447955113072],[116,-38,74,0.42209110045723375],[116,-38,75,0.4279872330414332],[116,-38,76,0.43393402798325437],[116,-38,77,0.43993044037907436],[116,-38,78,0.44597289434145515],[116,-38,79,0.4520547731239988],[116,-37,64,0.36487147549500837],[116,-37,65,0.3700590756914015],[116,-37,66,0.37538979250110177],[116,-37,67,0.38083395841295686],[116,-37,68,0.38636324811654543],[116,-37,69,0.39196060848147724],[116,-37,70,0.3976158004760885],[116,-37,71,0.40332366754121124],[116,-37,72,0.4090826502057957],[116,-37,73,0.41489343043529275],[116,-37,74,0.4207577083198514],[116,-37,75,0.4266771135332203],[116,-37,76,0.43265225380118577],[116,-37,77,0.438681902412344],[116,-37,78,0.4447623265859786],[116,-37,79,0.45088675828397456],[116,-36,64,0.36360249530706523],[116,-36,65,0.3687335848508835],[116,-36,66,0.37402417690573586],[116,-36,67,0.37944164070421876],[116,-36,68,0.384954964894585],[116,-36,69,0.3905456091926214],[116,-36,70,0.39620204970837547],[116,-36,71,0.40191800959541585],[116,-36,72,0.4076909635301225],[116,-36,73,0.4135207713950597],[116,-36,74,0.41940844372387653],[116,-36,75,0.4253550412868575],[116,-36,76,0.43136071100239604],[116,-36,77,0.4374238601521788],[116,-36,78,0.4435404706587409],[116,-36,79,0.44970355495542585],[116,-35,64,0.3622760752796791],[116,-35,65,0.3673565130609989],[116,-35,66,0.3726129779784966],[116,-35,67,0.37801010954388636],[116,-35,68,0.38351418804492726],[116,-35,69,0.3891049161747705],[116,-35,70,0.3947691778785436],[116,-35,71,0.40049925329988706],[116,-35,72,0.4062913288155295],[116,-35,73,0.41214413406226946],[116,-35,74,0.4180577084386436],[116,-35,75,0.42403229938563447],[116,-35,76,0.4300673945578045],[116,-35,77,0.4361608897901225],[116,-35,78,0.4423083945484318],[116,-35,79,0.4485026763250857],[116,-34,64,0.3609222794286261],[116,-34,65,0.3659573751498948],[116,-34,66,0.3711847876582111],[116,-34,67,0.37656672015706494],[116,-34,68,0.3820667488641743],[116,-34,69,0.38766254333290046],[116,-34,70,0.3933390915063329],[116,-34,71,0.399086920663206],[116,-34,72,0.40490062735869364],[116,-34,73,0.4107775304999391],[116,-34,74,0.41671644994200224],[116,-34,75,0.42271661281498907],[116,-34,76,0.42877668960381626],[116,-34,77,0.43489396180014295],[116,-34,78,0.4410636227334265],[116,-34,79,0.44727821296679976],[116,-33,64,0.3595692060305957],[116,-33,65,0.364563465841761],[116,-33,66,0.3697657317927981],[116,-33,67,0.37513611567939265],[116,-33,68,0.38063552031635495],[116,-33,69,0.3862393075085925],[116,-33,70,0.3919302773798635],[116,-33,71,0.3976969160816945],[116,-33,72,0.40353195824210186],[116,-33,73,0.40943106712980065],[116,-33,74,0.41539163480622654],[116,-33,75,0.42141170436843767],[116,-33,76,0.4274890162030268],[116,-33,77,0.43362017997625735],[116,-33,78,0.43979997388063863],[116,-33,79,0.4460207724449115],[116,-32,64,0.35824204474142757],[116,-32,65,0.3631989179028322],[116,-32,66,0.36837854010002585],[116,-32,67,0.373739316951292],[116,-32,68,0.3792395336763845],[116,-32,69,0.38485197965758206],[116,-32,70,0.39055699642316394],[116,-32,71,0.39634077128785555],[116,-32,72,0.4021939427627483],[116,-32,73,0.4081103168339115],[116,-32,74,0.41408569625706476],[116,-32,75,0.4201168248546309],[116,-32,76,0.4262004486275457],[116,-32,77,0.4323324953089411],[116,-32,78,0.43850737379204446],[116,-32,79,0.4447173946620497],[116,-31,64,0.3569621074231886],[116,-31,65,0.36188373349685],[116,-31,66,0.3670415891459787],[116,-31,67,0.37239278521477115],[116,-31,68,0.3778930679459251],[116,-31,69,0.3835124086808588],[116,-31,70,0.3892284501350668],[116,-31,71,0.3950248628462087],[116,-31,72,0.4008900014601429],[116,-31,73,0.4068156637971936],[116,-31,74,0.4127959547149748],[116,-31,75,0.41882625663363915],[116,-31,76,0.4249023084268468],[116,-31,77,0.43101939420854174],[116,-31,78,0.4371716433634383],[116,-31,79,0.44335144297952056],[116,-30,64,0.3557458304320358],[116,-30,65,0.36063278651687575],[116,-30,66,0.3657679161506567],[116,-30,67,0.3711074555847988],[116,-30,68,0.37660470999346823],[116,-30,69,0.3822266159595537],[116,-30,70,0.38794791776760285],[116,-30,71,0.39374960050233854],[116,-30,72,0.39961760220671333],[116,-30,73,0.40554161973009917],[116,-30,74,0.4115140101515902],[116,-30,75,0.417528789525595],[116,-30,76,0.42358073054775],[116,-30,77,0.42966456058003744],[116,-30,78,0.43577426130637464],[116,-30,79,0.4419024711152104],[116,-29,64,0.3546037462100964],[116,-29,65,0.3594547937494996],[116,-29,66,0.3645642015164213],[116,-29,67,0.36988773924986806],[116,-29,68,0.3753763834484978],[116,-29,69,0.3809938587164227],[116,-29,70,0.3867118624782661],[116,-29,71,0.39250858475002254],[116,-29,72,0.39836747787470156],[116,-29,73,0.40427611015286424],[116,-29,74,0.4102251051273118],[116,-29,75,0.41620716815767766],[116,-29,76,0.42221620178653985],[116,-29,77,0.4282465112551082],[116,-29,78,0.43429210137492874],[116,-29,79,0.44034606580354907],[116,-28,64,0.35353942212950856],[116,-28,65,0.35835125283031033],[116,-28,66,0.36342971807481655],[116,-28,67,0.3687304924522579],[116,-28,68,0.3742023444706004],[116,-28,69,0.37980566041189917],[116,-28,70,0.3855090047688407],[116,-28,71,0.39128773205180806],[116,-28,72,0.3971228121554355],[116,-28,73,0.40299972947499024],[116,-28,74,0.4089074574177251],[116,-28,75,0.4148375098462004],[116,-28,76,0.42078307087244204],[116,-28,77,0.42673820429471426],[116,-28,78,0.432697143833877],[116,-28,79,0.438653665184704],[116,-27,64,0.35254836465716954],[116,-27,65,0.35731534506789486],[116,-27,66,0.3623552451626203],[116,-27,67,0.3676239504097101],[116,-27,68,0.37306814262046595],[116,-27,69,0.37864480648254273],[116,-27,70,0.3843193616160293],[116,-27,71,0.3900643662325783],[116,-27,72,0.395858392181604],[116,-27,73,0.4016849636679617],[116,-27,74,0.4075315611896452],[116,-27,75,0.4133886921516227],[116,-27,76,0.4192490295100442],[116,-27,77,0.42510661969057173],[116,-27,78,0.4309561609065764],[116,-27,79,0.4367923528781558],[116,-26,64,0.35161688704298344],[116,-26,65,0.35633080134591355],[116,-26,66,0.36132194576702104],[116,-26,67,0.36654662446490105],[116,-26,68,0.3719495451788924],[116,-26,69,0.3774843038422357],[116,-26,70,0.38311324980381134],[116,-26,71,0.38880627466131185],[116,-26,72,0.394539726688656],[116,-26,73,0.4002953794034342],[116,-26,74,0.40605945574956553],[116,-26,75,0.41182170929315226],[116,-26,76,0.41757456374322777],[116,-26,77,0.4233123120144234],[116,-26,78,0.4290303759464626],[116,-26,79,0.4347246276863374],[116,-25,64,0.35072085532585756],[116,-25,65,0.3553706978291219],[116,-25,66,0.360300221529902],[116,-25,67,0.36546622400703305],[116,-25,68,0.37081153339411155],[116,-25,69,0.3762864596166825],[116,-25,70,0.3818504553268281],[116,-25,71,0.38747097589013774],[116,-25,72,0.3930470090393079],[116,-25,73,0.3983896113320705],[116,-25,74,0.40384204305780996],[116,-25,75,0.40938968919904706],[116,-25,76,0.4150135531752076],[116,-25,77,0.42069120263304993],[116,-25,78,0.4263976608441354],[116,-25,79,0.43210624267918074],[116,-24,64,0.3498225553389958],[116,-24,65,0.3543967367905864],[116,-24,66,0.3592512375147844],[116,-24,67,0.3643433713963208],[116,-24,68,0.3695088737367291],[116,-24,69,0.37425292179381564],[116,-24,70,0.37911222605568523],[116,-24,71,0.3841026706001217],[116,-24,72,0.3892309332174097],[116,-24,73,0.39449563316436403],[116,-24,74,0.39988843683757097],[116,-24,75,0.4053951200055686],[116,-24,76,0.4109965853000452],[116,-24,77,0.416669833734756],[116,-24,78,0.4223888890976381],[116,-24,79,0.4281256741456094],[116,-23,64,0.34811244362927235],[116,-23,65,0.3525884394621229],[116,-23,66,0.3570420587764502],[116,-23,67,0.36150533850895966],[116,-23,68,0.3660263395435666],[116,-23,69,0.37064610690404126],[116,-23,70,0.375393606353263],[116,-23,71,0.38028689839086327],[116,-23,72,0.38533432198602324],[116,-23,73,0.39053564433751975],[116,-23,74,0.39588317525198485],[116,-23,75,0.4013628447724168],[116,-23,76,0.406955242738421],[116,-23,77,0.4126366190174773],[116,-23,78,0.41837984321282284],[116,-23,79,0.4241553227274325],[116,-22,64,0.34507059407134266],[116,-22,65,0.34939991300143436],[116,-22,66,0.3537138120935067],[116,-22,67,0.358043880277124],[116,-22,68,0.3624396676389386],[116,-22,69,0.3669450035176814],[116,-22,70,0.37159121716655247],[116,-22,71,0.37639826045679275],[116,-22,72,0.38137588517138266],[116,-22,73,0.3865247929922417],[116,-22,74,0.3918377567704852],[116,-22,75,0.3973007116994552],[116,-22,76,0.40289381504876504],[116,-22,77,0.4085924731647006],[116,-22,78,0.4143683344981884],[116,-22,79,0.4201902474854558],[116,-21,64,0.3419355612543591],[116,-21,65,0.3461198984856567],[116,-21,66,0.350297594565431],[116,-21,67,0.35449954982532816],[116,-21,68,0.35877635959773924],[116,-21,69,0.3631742092303678],[116,-21,70,0.36772644547278377],[116,-21,71,0.37245463923513716],[116,-21,72,0.37736974746822305],[116,-21,73,0.38247325489608136],[116,-21,74,0.3877582941937321],[116,-21,75,0.3932107432209329],[116,-21,76,0.39881029794954254],[116,-21,77,0.40453151975747803],[116,-21,78,0.4103448558067581],[116,-21,79,0.4162176312760985],[116,-20,64,0.33874269956522784],[116,-20,65,0.3427815053198111],[116,-20,66,0.3468240843848038],[116,-20,67,0.35090037276765385],[116,-20,68,0.35506150527473807],[116,-20,69,0.3593555460156511],[116,-20,70,0.3638175030528532],[116,-20,71,0.3684703159571882],[116,-20,72,0.3733259865796028],[116,-20,73,0.3783866978182507],[116,-20,74,0.3836459189890301],[116,-20,75,0.38908949641218477],[116,-20,76,0.3946967278405193],[116,-20,77,0.4004414193765486],[116,-20,78,0.4062929235570518],[116,-20,79,0.4122171573235412],[116,-19,64,0.3355270195050436],[116,-19,65,0.339417354383452],[116,-19,66,0.3433232175233018],[116,-19,67,0.3472732866088378],[116,-19,68,0.3513186913069193],[116,-19,69,0.3555088670957355],[116,-19,70,0.35988013235973765],[116,-19,71,0.3644565793176738],[116,-19,72,0.3692511516395625],[116,-19,73,0.37426671966014413],[116,-19,74,0.3794971518318611],[116,-19,75,0.38492838104842797],[116,-19,76,0.3905394644663023],[116,-19,77,0.3963036354565202],[116,-19,78,0.4021893463341312],[116,-19,79,0.40816130053656496],[116,-18,64,0.33232043210206524],[116,-18,65,0.3360565598802604],[116,-18,66,0.3398209018880535],[116,-18,67,0.3436405798143361],[116,-18,68,0.3475661579887691],[116,-18,69,0.35164792712515014],[116,-18,70,0.3559231885152341],[116,-18,71,0.36041702097947703],[116,-18,72,0.36514327715580414],[116,-18,73,0.370105588917176],[116,-18,74,0.37529838062199194],[116,-18,75,0.3807078888689578],[116,-18,76,0.38631318740367043],[116,-18,77,0.3920872158086572],[116,-18,78,0.3979978106029409],[116,-18,79,0.40400873738122534],[116,-17,64,0.32913201711827117],[116,-17,65,0.33270571463438203],[116,-17,66,0.336320928868977],[116,-17,67,0.340002943769479],[116,-17,68,0.3438011991928638],[116,-17,69,0.3477663217675293],[116,-17,70,0.35193628574081215],[116,-17,71,0.3563370248978739],[116,-17,72,0.36098331532175015],[116,-17,73,0.3658796810718918],[116,-17,74,0.37102132157590656],[116,-17,75,0.37639505947172625],[116,-17,76,0.3819803075876617],[116,-17,77,0.38775005370678983],[116,-17,78,0.3936718617311332],[116,-17,79,0.39970888784015385],[116,-16,64,0.32591138747533943],[116,-16,65,0.3293156669588371],[116,-16,66,0.33277577051029383],[116,-16,67,0.3363149117367459],[116,-16,68,0.33998083997530987],[116,-16,69,0.34382394539291194],[116,-16,70,0.34788249582826525],[116,-16,71,0.3521830674402806],[116,-16,72,0.35674128566702096],[116,-16,73,0.3615626048442036],[116,-16,74,0.3666431253929785],[116,-16,75,0.3719704473999014],[116,-16,76,0.37752455933253964],[116,-16,77,0.383278760563278],[116,-16,78,0.38920061631318503],[116,-16,79,0.39525294357756857],[116,-15,64,0.32260518675877375],[116,-15,65,0.3258350599581851],[116,-15,66,0.32913645668204544],[116,-15,67,0.3325303379555091],[116,-15,68,0.3360621955474496],[116,-15,69,0.3397815602558309],[116,-15,70,0.3437265403770711],[116,-15,71,0.3479240513619535],[116,-15,72,0.3523903922523964],[116,-15,73,0.35713187799985],[116,-15,74,0.362145526707875],[116,-15,75,0.3674198007218396],[116,-15,76,0.37293540037594164],[116,-15,77,0.3786661091034983],[116,-15,78,0.3845796885225009],[116,-15,79,0.390638822025403],[116,-14,64,0.319172571459331],[116,-14,65,0.32222481344998577],[116,-14,66,0.32536586054879607],[116,-14,67,0.32861428278317156],[116,-14,68,0.332012758552246],[116,-14,69,0.3356093067103314],[116,-14,70,0.3394413718418602],[116,-14,71,0.3435358392252303],[116,-14,72,0.34790942919224166],[116,-14,73,0.35256916560226764],[116,-14,74,0.35751291761894755],[116,-14,75,0.36273001382205156],[116,-14,76,0.3682019275385058],[116,-14,77,0.37390303213622156],[116,-14,78,0.3798014248945373],[116,-14,79,0.38585981794664376],[116,-13,64,0.3155831809885473],[116,-13,65,0.31845611574935284],[116,-13,66,0.32143674303640163],[116,-13,67,0.3245411416672535],[116,-13,68,0.3278086445638681],[116,-13,69,0.3312850973227296],[116,-13,70,0.335006747616729],[116,-13,71,0.3390000373324059],[116,-13,72,0.3432818021395504],[116,-13,73,0.3478595639558286],[116,-13,74,0.35273191564738665],[116,-13,75,0.35788899711387245],[116,-13,76,0.3633130617198862],[116,-13,77,0.3689791318566311],[116,-13,78,0.3748557422500339],[116,-13,79,0.3809057694760318],[116,-12,64,0.3118152779270186],[116,-12,65,0.3145085832388494],[116,-12,66,0.31732996080764125],[116,-12,67,0.3202929314077086],[116,-12,68,0.32343298641852625],[116,-12,69,0.3267931487475711],[116,-12,70,0.33040792797626634],[116,-12,71,0.3343028866725735],[116,-12,72,0.33849463702699506],[116,-12,73,0.3429909492590475],[116,-12,74,0.34779097129260084],[116,-12,75,0.3528855589675971],[116,-12,76,0.35825771583047633],[116,-12,77,0.36388314132858124],[116,-12,78,0.3697308860277312],[116,-12,79,0.37576411227859],[116,-11,64,0.30785405886938],[116,-11,65,0.31036858798285955],[116,-11,66,0.3130328379205523],[116,-11,67,0.3158577338214142],[116,-11,68,0.3188744774470479],[116,-11,69,0.32212265141098595],[116,-11,70,0.32563449790327176],[116,-11,71,0.32943426090902217],[116,-11,72,0.33353797609814695],[116,-11,73,0.3379533910215759],[116,-11,74,0.34268001527112746],[116,-11,75,0.34770929999073835],[116,-11,76,0.35302494586273575],[116,-11,77,0.35860333843687614],[116,-11,78,0.36441410942518854],[116,-11,79,0.3704208223540615],[116,-10,64,0.30369013685714286],[116,-10,65,0.30602775426745793],[116,-10,66,0.30853770195113317],[116,-10,67,0.3112282975055307],[116,-10,68,0.314126064231873],[116,-10,69,0.317266577555143],[116,-10,70,0.32067931328951077],[116,-10,71,0.32438677182652126],[116,-10,72,0.328404061581931],[116,-10,73,0.33273863053421776],[116,-10,74,0.3373901456694522],[116,-10,75,0.34235051983997794],[116,-10,76,0.3476040852421924],[116,-10,77,0.3531279124246392],[116,-10,78,0.35889227345512],[116,-10,79,0.36486124760670446],[116,-9,64,0.29931819697885076],[116,-9,65,0.3014816255310494],[116,-9,66,0.30384058593382846],[116,-9,67,0.30640079894694633],[116,-9,68,0.3091837900313065],[116,-9,69,0.3122206286776069],[116,-9,70,0.3155375724259336],[116,-9,71,0.31915498302790096],[116,-9,72,0.32308670766374725],[116,-9,73,0.327339624902635],[116,-9,74,0.33191335537516303],[116,-9,75,0.33680013678353155],[116,-9,76,0.34198486253610144],[116,-9,77,0.3474452829624661],[116,-9,78,0.35315236774642117],[116,-9,79,0.35907082790974987],[116,-8,64,0.29473582726388475],[116,-8,65,0.2967285036952499],[116,-8,66,0.29894009800661075],[116,-8,67,0.301373764739212],[116,-8,68,0.3040457905001085],[116,-8,69,0.3069823238485185],[116,-8,70,0.3102060141013471],[116,-8,71,0.3137347330159588],[116,-8,72,0.3175807616881957],[116,-8,73,0.32175015736311235],[116,-8,74,0.3262423002767328],[116,-8,75,0.33104962026955054],[116,-8,76,0.3361575025395777],[116,-8,77,0.3415443715379485],[116,-8,78,0.34718195165746085],[116,-8,79,0.3530357030266398],[116,-7,64,0.2899425274961979],[116,-7,65,0.2917684634041716],[116,-7,66,0.29383646113713885],[116,-7,67,0.29614715714097906],[116,-7,68,0.2987114437827562],[116,-7,69,0.3015502308017839],[116,-7,70,0.30468224399903304],[116,-7,71,0.3081225691156883],[116,-7,72,0.311881655787244],[116,-7,73,0.3159645147894674],[116,-7,74,0.3203701088372491],[116,-7,75,0.3250909367887743],[116,-7,76,0.3301128107033893],[116,-7,77,0.3354148248056121],[116,-7,78,0.34096951502428413],[116,-7,79,0.3467432074076849],[116,-6,64,0.2849388990231225],[116,-6,65,0.28660254412933883],[116,-6,66,0.2885307257483929],[116,-6,67,0.29072162563709997],[116,-6,68,0.29318067746030885],[116,-6,69,0.29592334207049714],[116,-6,70,0.29896419141617064],[116,-6,71,0.3023152939804827],[116,-6,72,0.3059850503617795],[116,-6,73,0.3099772334722686],[116,-6,74,0.3142902337505039],[116,-6,75,0.3189165093475004],[116,-6,76,0.32384224081478385],[116,-6,77,0.32904718939935085],[116,-6,78,0.3345047576398738],[116,-6,79,0.3401822505635412],[116,-5,64,0.27972601902950434],[116,-5,65,0.28123212349434],[116,-5,66,0.2830241584539411],[116,-5,67,0.28509792754302365],[116,-5,68,0.28745343519175603],[116,-5,69,0.29010059876992833],[116,-5,70,0.29304969862985497],[116,-5,71,0.2963096266834423],[116,-5,72,0.2998865710534334],[116,-5,73,0.3037829144051746],[116,-5,74,0.3079963464799039],[116,-5,75,0.3125191908916331],[116,-5,76,0.31733794579501734],[116,-5,77,0.3224330375851312],[116,-5,78,0.32777878635643676],[116,-5,79,0.33334358143061543],[116,-4,64,0.2743050030830465],[116,-4,65,0.2756584755123127],[116,-4,66,0.2773178104489556],[116,-4,67,0.2792765210193949],[116,-4,68,0.28152930620071326],[116,-4,69,0.28408056491851735],[116,-4,70,0.2869362454912063],[116,-4,71,0.290101980616825],[116,-4,72,0.29358164102343376],[116,-4,73,0.2973761094450537],[116,-4,74,0.30148227555884755],[116,-4,75,0.3058922520419437],[116,-4,76,0.3105928114332142],[116,-4,77,0.31556504302038246],[116,-4,78,0.3207842285208651],[116,-4,79,0.32621993488897266],[116,-3,64,0.26886626946118797],[116,-3,65,0.26988251770590366],[116,-3,66,0.27141226937881563],[116,-3,67,0.2732573341325728],[116,-3,68,0.2754073210142646],[116,-3,69,0.277861255424617],[116,-3,70,0.2806208120421353],[116,-3,71,0.28368836060600333],[116,-3,72,0.2870654105035067],[116,-3,73,0.29075127982061694],[116,-3,74,0.29474198959423487],[116,-3,75,0.29902938351410197],[116,-3,76,0.30360047283593045],[116,-3,77,0.30843700578895883],[116,-3,78,0.3135152602957686],[116,-3,79,0.3188060583730849],[116,-2,64,0.26396255150563785],[116,-2,65,0.2639047512916344],[116,-2,66,0.2653075987209617],[116,-2,67,0.2670397138066622],[116,-2,68,0.2690859170614575],[116,-2,69,0.2714401210533858],[116,-2,70,0.27409988211727],[116,-2,71,0.2770643817890616],[116,-2,72,0.28033278570108805],[116,-2,73,0.28390282854979376],[116,-2,74,0.28776962596448624],[116,-2,75,0.2919247136071315],[116,-2,76,0.29635531333870935],[116,-2,77,0.30104382580110306],[116,-2,78,0.30596754828986433],[116,-2,79,0.3110986163357456],[116,-1,64,0.2588408610361978],[116,-1,65,0.2577253987502267],[116,-1,66,0.25900346885922954],[116,-1,67,0.2606225586553291],[116,-1,68,0.26256307787630584],[116,-1,69,0.26481419381631166],[116,-1,70,0.26736959100877544],[116,-1,71,0.27022541291212226],[116,-1,72,0.2733785592205119],[116,-1,73,0.27682520838273655],[116,-1,74,0.28055956623418876],[116,-1,75,0.2845728411456963],[116,-1,76,0.2888524455957148],[116,-1,77,0.29338142358289154],[116,-1,78,0.29813810281928205],[116,-1,79,0.30309597018374],[116,0,64,0.2535056167302107],[116,0,65,0.25134474317086447],[116,0,66,0.252499484102836],[116,0,67,0.2540046397570328],[116,0,68,0.2558366497243363],[116,0,69,0.25798039629592684],[116,0,70,0.2604260203352888],[116,0,71,0.2631668467451534],[116,0,72,0.2661976442055397],[116,0,73,0.2695131069179087],[116,0,74,0.27310655932274525],[116,0,75,0.27696888425930366],[116,0,76,0.2810876745413239],[116,0,77,0.28544660743521605],[116,0,78,0.29002504105239135],[116,0,79,0.2947978312082087],[116,1,64,0.24796186107192777],[116,1,65,0.24513785060401322],[116,1,66,0.24579570948470855],[116,1,67,0.24718511258806572],[116,1,68,0.2489048383733865],[116,1,69,0.25093601723768605],[116,1,70,0.2532656421513604],[116,1,71,0.2558844994480431],[116,1,72,0.2587854139166465],[116,1,73,0.26196171058336254],[116,1,74,0.2654058941995268],[116,1,75,0.26910854696002934],[116,1,76,0.2730574444892015],[116,1,77,0.2772368896507239],[116,1,78,0.28162726326983856],[116,1,79,0.286204790403034],[116,2,64,0.24221607445538415],[116,2,65,0.23933842532965044],[116,2,66,0.23889339848139127],[116,2,67,0.24016422027912135],[116,2,68,0.24176688557998247],[116,2,69,0.24367935269205335],[116,2,70,0.24588591154637804],[116,2,71,0.24837513832310545],[116,2,72,0.2511381465691096],[116,2,73,0.2541670478934967],[116,2,74,0.25745362329265886],[116,2,75,0.260988205676892],[116,2,76,0.26475877369424683],[116,2,77,0.2687502564779621],[116,2,78,0.2729440484862194],[116,2,79,0.2773177331598937],[116,3,64,0.23627719713409345],[116,3,65,0.23334702799666007],[116,3,66,0.23179593097329848],[116,3,67,0.23294420227802312],[116,3,68,0.23442394190544064],[116,3,69,0.2362105298266552],[116,3,70,0.238286023452527],[116,3,71,0.24063715042691877],[116,3,72,0.2432535828339464],[116,3,73,0.24612641249276254],[116,3,74,0.24924682841649898],[116,3,75,0.25260499704733097],[116,3,76,0.25618914541803],[116,3,77,0.2599848469354445],[116,3,78,0.26397450903762754],[116,3,79,0.2681370615464653],[116,4,64,0.23015788131986253],[116,4,65,0.22717498238601105],[116,4,66,0.22450996741500592],[116,4,67,0.22553040915529002],[116,4,68,0.22688013310776936],[116,4,69,0.22853250883599893],[116,4,70,0.23046782893456658],[116,4,71,0.23267134885391894],[116,4,72,0.23513159609772166],[116,4,73,0.2378388711614725],[116,4,74,0.24078394130665573],[116,4,75,0.24395692781728726],[116,4,76,0.2473463869410848],[116,4,77,0.2509385842791496],[116,4,78,0.25471696196034344],[116,4,79,0.2586617975219399],[116,5,64,0.22387597408225238],[116,5,65,0.22083845839390742],[116,5,66,0.21789855059461827],[116,5,67,0.2179326243207148],[116,5,68,0.21914382105480743],[116,5,69,0.22065226402151109],[116,5,70,0.2224369120483721],[116,5,71,0.2244819176316593],[116,5,72,0.2267749760786938],[116,5,73,0.22930585682200608],[116,5,74,0.23206511801524868],[116,5,75,0.23504300509137696],[116,5,76,0.238228533536762],[116,5,77,0.24160875571385718],[116,5,78,0.2451682111540701],[116,5,79,0.24888855934380702],[116,6,64,0.21745623276788897],[116,6,65,0.21436014468250514],[116,6,66,0.2113631835943416],[116,6,67,0.2101665977649738],[116,6,68,0.2112290646136685],[116,6,69,0.21258214945949422],[116,6,70,0.2142038322641625],[116,6,71,0.2160774994092252],[116,6,72,0.2181903287653895],[116,6,73,0.2205318478898932],[116,6,74,0.22309266648303508],[116,6,75,0.22586338382258045],[116,6,76,0.22883367148463937],[116,6,77,0.23199153125484212],[116,6,78,0.23532272773831772],[116,6,79,0.23881039479314867],[116,7,64,0.2109319669517135],[116,7,65,0.20777157452509404],[116,7,66,0.20471032585291984],[116,7,67,0.20225753056653997],[116,7,68,0.20315969625079058],[116,7,69,0.20434460914545235],[116,7,70,0.205789522469042],[116,7,71,0.2074773361131949],[116,7,72,0.20939500525279095],[116,7,73,0.21153211422201007],[116,7,74,0.21387961682158002],[116,7,75,0.21642874382451854],[116,7,76,0.21917007805160474],[116,7,77,0.22209279699662984],[116,7,78,0.22518408259912706],[116,7,79,0.22842869739062754],[116,8,64,0.20433916163006757],[116,8,65,0.20111008290593407],[116,8,66,0.19797866208562284],[116,8,67,0.1949204904030902],[116,8,68,0.19497400703275503],[116,8,69,0.19597976765100508],[116,8,70,0.1972361392634002],[116,8,71,0.19872575703399692],[116,8,72,0.20043558183524723],[116,8,73,0.20235548196580097],[116,8,74,0.2044769743922411],[116,8,75,0.20679212633771973],[116,8,76,0.20929261765643167],[116,8,77,0.21196896405322677],[116,8,78,0.2148099008362558],[116,8,79,0.21780192652907276],[116,9,64,0.1977062461831742],[116,9,65,0.1944062675189454],[116,9,66,0.19120095889017924],[116,9,67,0.18806510804071436],[116,9,68,0.1867060467027407],[116,9,69,0.18752448280690875],[116,9,70,0.18858366575899463],[116,9,71,0.18986613706414315],[116,9,72,0.1913590184920074],[116,9,73,0.19305260021545428],[116,9,74,0.1949390819654578],[116,9,75,0.1970114680820071],[116,9,76,0.1992626169681294],[116,9,77,0.20168444508530378],[116,9,78,0.204267285267343],[116,9,79,0.20699939877782061],[116,10,64,0.19105459953093645],[116,10,65,0.18768347194867294],[116,10,66,0.1844026027196389],[116,10,67,0.18118653171243065],[116,10,68,0.17838220641177557],[116,10,69,0.17900782988096992],[116,10,70,0.1798641664380284],[116,10,71,0.1809337882397301],[116,10,72,0.18220406625058497],[116,10,73,0.18366576913056906],[116,10,74,0.1853118085590665],[116,10,75,0.18713613192764142],[116,10,76,0.18913276297329193],[116,10,77,0.19129499056629196],[116,10,78,0.19361470551621032],[116,10,79,0.19608188491763745],[116,11,64,0.18440110592607326],[116,11,65,0.1809603495341978],[116,11,66,0.17760414547482317],[116,11,67,0.17430742809935054],[116,11,68,0.17103334926737515],[116,11,69,0.1704534197290381],[116,11,70,0.17110398799996918],[116,11,71,0.1719580149133023],[116,11,72,0.1730031480599729],[116,11,73,0.17423061840023502],[116,11,74,0.1756339986483203],[116,11,75,0.17720810198245354],[116,11,76,0.1789480217094436],[116,11,77,0.18084831216838587],[116,11,78,0.1829023108197839],[116,11,79,0.1851016011358471],[116,12,64,0.17776097645997427],[116,12,65,0.17425368850413583],[116,12,66,0.1708241048087587],[116,12,67,0.1674482329462032],[116,12,68,0.16408994768350715],[116,12,69,0.16188193581723292],[116,12,70,0.16232616208062356],[116,12,71,0.16296435154448094],[116,12,72,0.16378440103769457],[116,12,73,0.16477792415569875],[116,12,74,0.16593903556100087],[116,12,75,0.16726326763290547],[116,12,76,0.16874662014372493],[116,12,77,0.1703847433096392],[116,12,78,0.17217225424105265],[116,12,79,0.1741021865009024],[116,13,64,0.17115084165577119],[116,13,65,0.16758150351073287],[116,13,66,0.16408202399853503],[116,13,67,0.16063015092811447],[116,13,68,0.1571909825406449],[116,13,69,0.1537374715248798],[116,13,70,0.15355301288594528],[116,13,71,0.15397698547341399],[116,13,72,0.1545738816932429],[116,13,73,0.15533556509659707],[116,13,74,0.1562565189230212],[116,13,75,0.15733279545819792],[116,13,76,0.15856108913995437],[116,13,77,0.15993793381711244],[116,13,78,0.1614590242610868],[116,13,79,0.16311866173149706],[116,14,64,0.16459212109038035],[116,14,65,0.16096639947979102],[116,14,66,0.15740179722647027],[116,14,67,0.15387841131283303],[116,14,68,0.15036302613744953],[116,14,69,0.14682903166968622],[116,14,70,0.14480897457782052],[116,14,71,0.14502136907926835],[116,14,72,0.14539793802624026],[116,14,73,0.14593062116126632],[116,14,74,0.14661405885952142],[116,14,75,0.1474445910467311],[116,14,76,0.1484193688260086],[116,14,77,0.14953557926845631],[116,14,78,0.1507897835409641],[116,14,79,0.1521773682683521],[116,15,64,0.1581189200222166],[116,15,65,0.15444333368249288],[116,15,66,0.15081918436044242],[116,15,67,0.14722942712009526],[116,15,68,0.14364293462126904],[116,15,69,0.14003369152812048],[116,15,70,0.1363841608545],[116,15,71,0.1361290660280726],[116,15,72,0.13628735757278765],[116,15,73,0.13659281447831959],[116,15,74,0.1370400232520791],[116,15,75,0.13762538751028458],[116,15,76,0.13834629342599122],[116,15,77,0.13920037528103682],[116,15,78,0.1401848813704599],[116,15,79,0.14129614025924916],[116,16,64,0.15178041153160615],[116,16,65,0.1480616729201166],[116,16,66,0.14438338874769813],[116,16,67,0.14073176429488674],[116,16,68,0.13707811611657592],[116,16,69,0.13339719805847042],[116,16,70,0.12967174296191647],[116,16,71,0.12733580045023962],[116,16,72,0.12727483666125483],[116,16,73,0.12735156011005805],[116,16,74,0.127560377876375],[116,16,75,0.1278976228550136],[116,16,76,0.1283607856207995],[116,16,77,0.12894783144551494],[116,16,78,0.12965660279399402],[116,16,79,0.13048430741022185],[116,17,64,0.14560687806335307],[116,17,65,0.1418517079088129],[116,17,66,0.13812444893947567],[116,17,67,0.13441483283500055],[116,17,68,0.13069693166131124],[116,17,69,0.1269464673226932],[116,17,70,0.12314656049885356],[116,17,71,0.11928673509557532],[116,17,72,0.11837533511861029],[116,17,73,0.11821925657726977],[116,17,74,0.11818492674826181],[116,17,75,0.11826856143489632],[116,17,76,0.11846771106964721],[116,17,77,0.11878063723781476],[116,17,78,0.11920575824081497],[116,17,79,0.11974116392887639],[116,18,64,0.13960565691341523],[116,18,65,0.13582073175990375],[116,18,66,0.13204952753132165],[116,18,67,0.12828546554515866],[116,18,68,0.12450563695397995],[116,18,69,0.1206869486261394],[116,18,70,0.11681306371702697],[116,18,71,0.11287360958645715],[116,18,72,0.10958484318107904],[116,18,73,0.10919051830497484],[116,18,74,0.10890696809132014],[116,18,75,0.1087303118739261],[116,18,76,0.10865817925934282],[116,18,77,0.10868915194718774],[116,18,78,0.1088222569252628],[116,18,79,0.10905651139479794],[116,19,64,0.1337648210047847],[116,19,65,0.12995671449787335],[116,19,66,0.12614655078426726],[116,19,67,0.12233149574182145],[116,19,68,0.11849187180316577],[116,19,69,0.11460599894964109],[116,19,70,0.11065826474930689],[116,19,71,0.10663854377857183],[116,19,72,0.1025415032324566],[116,19,73,0.10024480125922988],[116,19,74,0.09970568660393787],[116,19,75,0.09926196937195406],[116,19,76,0.09891142264004264],[116,19,77,0.09865301112372012],[116,19,78,0.09848643500851041],[116,19,79,0.09841170710510698],[116,20,64,0.12593730611975684],[116,20,65,0.12314991000161948],[116,20,66,0.12024937419023338],[116,20,67,0.1165251897807082],[116,20,68,0.11262801080843649],[116,20,69,0.10867612670786007],[116,20,70,0.10465484967937536],[116,20,71,0.10055447279039603],[116,20,72,0.09636974426625489],[116,20,73,0.09209935181442817],[116,20,74,0.09054848097037237],[116,20,75,0.08983171083743463],[116,20,76,0.08919664711161777],[116,20,77,0.08864272355645822],[116,20,78,0.08817039382434133],[116,20,79,0.08778074205809672],[116,21,64,0.11521735764906571],[116,21,65,0.11232753992848842],[116,21,66,0.10935070084927749],[116,21,67,0.10628934227164996],[116,21,68,0.1031633843092393],[116,21,69,0.09999829725278687],[116,21,70,0.09681511411365255],[116,21,71,0.09363056478006838],[116,21,72,0.09031100550747866],[116,21,73,0.08594550857952406],[116,21,74,0.08148907201778863],[116,21,75,0.08039884319223213],[116,21,76,0.0794748545661175],[116,21,77,0.07862125983713775],[116,21,78,0.07783934955679261],[116,21,79,0.0771313502736148],[116,22,64,0.1043559049278105],[116,22,65,0.10136322332411175],[116,22,66,0.09831033971887246],[116,22,67,0.09519661116097992],[116,22,68,0.09203858867447391],[116,22,69,0.08885980299689461],[116,22,70,0.08568008297878144],[116,22,71,0.08251548262903728],[116,22,72,0.07937844934944861],[116,22,73,0.07627801951529227],[116,22,74,0.07322004075648841],[116,22,75,0.07047022809579448],[116,22,76,0.06970063825648799],[116,22,77,0.06854563364433837],[116,22,78,0.06745299585515749],[116,22,79,0.0664261512667988],[116,23,64,0.0934293603786466],[116,23,65,0.09033412781712079],[116,23,66,0.08720581814211005],[116,23,67,0.08404094213748259],[116,23,68,0.08085268744263018],[116,23,69,0.07766243723497276],[116,23,70,0.07448860592985232],[116,23,71,0.07134636873302982],[116,23,72,0.068247666180257],[116,23,73,0.06520125443048488],[116,23,74,0.06221280077815127],[116,23,75,0.059285023744621745],[116,23,76,0.05670034162715287],[116,23,77,0.05736245927207134],[116,23,78,0.056966880938455845],[116,23,79,0.05562382758444262],[116,24,64,0.0825175787727556],[116,24,65,0.07932091105361994],[116,24,66,0.07611817488298242],[116,24,67,0.07290339816091106],[116,24,68,0.06968646614675686],[116,24,69,0.06648642892811467],[116,24,70,0.06332008872702377],[116,24,71,0.060201545175075276],[116,24,72,0.0571420432244921],[116,24,73,0.054149884305963014],[116,24,74,0.051230400311069915],[116,24,75,0.0483859898254831],[116,24,76,0.04561621589421923],[116,24,77,0.042917964463433086],[116,24,78,0.04360598553825204],[116,24,79,0.04454015900877198],[116,25,64,0.07170111904613304],[116,25,65,0.06840497451143664],[116,25,66,0.065129224687289],[116,25,67,0.06186583118517815],[116,25,68,0.05862149118411214],[116,25,69,0.055412764267818326],[116,25,70,0.05225466138367132],[116,25,71,0.04916002225867663],[116,25,72,0.04613921621000547],[116,25,73,0.04319992247144851],[116,25,74,0.04034698972618394],[116,25,75,0.0375823743410976],[116,25,76,0.03490515661031256],[116,25,77,0.032311634137147764],[116,25,78,0.02979549131602452],[116,25,79,0.029788418152565006],[116,26,64,0.06105867833527761],[116,26,65,0.05766588675701908],[116,26,66,0.054318987740089],[116,26,67,0.051008334124541505],[116,26,68,0.047737599497923375],[116,26,69,0.0445207284526801],[116,26,70,0.04137078557890365],[116,26,71,0.03829918420344392],[116,26,72,0.03531525184897556],[116,26,73,0.0324258899758092],[116,26,74,0.029635327808235714],[116,26,75,0.026944969812118746],[116,26,76,0.0243533361636924],[116,26,77,0.02185609533292167],[116,26,78,0.019446187700173315],[116,26,79,0.017114038934242938],[116,27,64,0.05066470164176976],[116,27,65,0.047178979426995726],[116,27,66,0.0437632871353709],[116,27,67,0.0404068544651703],[116,27,68,0.037110541822698025],[116,27,69,0.03388559104179678],[116,27,70,0.0307429936634334],[116,27,71,0.027692592455576755],[116,27,72,0.02474252521177891],[116,27,73,0.021898775856842467],[116,27,74,0.019164832770160182],[116,27,75,0.01654145396660533],[116,27,76,0.01402653851312497],[116,27,77,0.011615103308508554],[116,27,78,0.009299364116261612],[116,27,79,0.007068919518270326],[116,28,64,0.04058717078794285],[116,28,65,0.037013119477931504],[116,28,66,0.033531517741489894],[116,28,67,0.03013097270888322],[116,28,68,0.026809782445460846],[116,28,69,0.02357643756092922],[116,28,70,0.020439761614593155],[116,28,71,0.017407908604820964],[116,28,72,0.014487700410737632],[116,28,73,0.011684082628081472],[116,28,74,0.008999698814524311],[116,28,75,0.006434582858276469],[116,28,76,0.003985968891874226],[116,28,77,0.0016482178929311002],[116,28,78,-5.871401523553504E-4],[116,28,79,-0.0027312498966546887],[116,29,64,0.03088557660165407],[116,29,65,0.027228661532876366],[116,29,66,0.023684590137658626],[116,29,67,0.020241849131647244],[116,29,68,0.016896458732300338],[116,29,69,0.013654150332414253],[116,29,70,0.010521518585447715],[116,29,71,0.007504939178933395],[116,29,72,0.004609816444678222],[116,29,73,0.0018399583707200437],[116,29,74,-8.029208705256077E-4],[116,29,75,-0.0033195710904357387],[116,29,76,-0.005713449478082895],[116,29,77,-0.007990838053772792],[116,29,78,-0.010160836305676501],[116,29,79,-0.012235230405110866],[116,30,64,0.02160907855970464],[116,30,65,0.017875584454544763],[116,30,66,0.014273053605092359],[116,30,67,0.010790342652131812],[116,30,68,0.007421503983795498],[116,30,69,0.004169541812150298],[116,30,70,0.00103879599976529],[116,30,71,-0.001966195116025091],[116,30,72,-0.004841519661202447],[116,30,73,-0.007584582915728739],[116,30,74,-0.010194663550216703],[116,30,75,-0.01267333554882318],[116,30,76,-0.015024756294985358],[116,30,77,-0.017255821620138913],[116,30,78,-0.019376188923533946],[116,30,79,-0.021398169761047664],[116,31,64,0.012794856420315925],[116,31,65,0.008991816586017456],[116,31,66,0.00533540247503894],[116,31,67,0.0018153059291238435],[116,31,68,-0.0015760624916179855],[116,31,69,-0.004838355958833867],[116,31,70,-0.007969480536154589],[116,31,71,-0.010966762830875158],[116,31,72,-0.0138278299882812],[116,31,73,-0.016551350770273265],[116,31,74,-0.01913763742775116],[116,31,75,-0.021589108437131625],[116,31,76,-0.0239106125216843],[116,31,77,-0.02610961471546648],[116,31,78,-0.028196245548816654],[116,31,79,-0.030183214736825635],[116,32,64,0.0044666586786382394],[116,32,65,6.017544140505572E-4],[116,32,66,-0.0031034295418309703],[116,32,67,-0.006657938865738412],[116,32,68,-0.010070673867063066],[116,32,69,-0.013343841851139198],[116,32,70,-0.016477552908371877],[116,32,71,-0.019470994687806352],[116,32,72,-0.022323350392830475],[116,32,73,-0.02503457531150234],[116,32,74,-0.02760603151596029],[116,32,75,-0.030040980734777883],[116,32,76,-0.03234493576083614],[116,32,77,-0.03452587110261778],[116,32,78,-0.03659429391605845],[116,32,79,-0.038563176564337415],[116,33,64,-0.0033664470206731818],[116,33,65,-0.007285020278854847],[116,33,66,-0.011033382100558809],[116,33,67,-0.014618938827806642],[116,33,68,-0.018051578301221206],[116,33,69,-0.021335931825848066],[116,33,70,-0.024474241834469203],[116,33,71,-0.02746752245869047],[116,33,72,-0.03031649966350363],[116,33,73,-0.03302240934523418],[116,33,74,-0.03558765296145956],[116,33,75,-0.03801631063407589],[116,33,76,-0.04031451202860195],[116,33,77,-0.04249066566136697],[116,33,78,-0.0445555476186533],[116,33,79,-0.0465222509853184],[116,34,64,-0.010711116087910361],[116,34,65,-0.014674819404102587],[116,34,66,-0.01846038278488364],[116,34,67,-0.02207325856038836],[116,34,68,-0.02552402058516621],[116,34,69,-0.028819576204329497],[116,34,70,-0.03196420362140208],[116,34,71,-0.03496067997373782],[116,34,72,-0.03781122981243951],[116,34,73,-0.04051833272415236],[116,34,74,-0.043085389605863084],[116,34,75,-0.04551724747490229],[116,34,76,-0.04782058305683749],[116,34,77,-0.050004145741257104],[116,34,78,-0.047462592010825706],[116,34,79,-0.04342769446369208],[116,35,64,-0.017590556106713166],[116,35,65,-0.021590718039905615],[116,35,66,-0.025407257932759452],[116,35,67,-0.029043432479282236],[116,35,68,-0.03251023774908627],[116,35,69,-0.03581670312417948],[116,35,70,-0.03896902778314573],[116,35,71,-0.04197166211713735],[116,35,72,-0.0448282538412562],[116,35,73,-0.04754245585172097],[116,35,74,-0.0501185952890534],[116,35,75,-0.04579538260297274],[116,35,76,-0.04143913321681927],[116,35,77,-0.03713105504686866],[116,35,78,-0.03288413839973557],[116,35,79,-0.02871291147714107],[116,36,64,-0.024045136904308442],[116,36,65,-0.02807320845774068],[116,36,66,-0.031914433887489796],[116,36,67,-0.03556971549337554],[116,36,68,-0.03905026314977948],[116,36,69,-0.04236708297641199],[116,36,70,-0.04552817065779728],[116,36,71,-0.048539537366234],[116,36,72,-0.0450951509309906],[116,36,73,-0.04049118407228057],[116,36,74,-0.03591102954336977],[116,36,75,-0.031364413004952005],[116,36,76,-0.026861978314979544],[116,36,77,-0.022415560749687986],[116,36,78,-0.018038326245206977],[116,36,79,-0.013744777734329763],[116,37,64,-0.030132775375807712],[116,37,65,-0.03418063252450027],[116,37,66,-0.03804042257848345],[116,37,67,-0.041710626105538384],[116,37,68,-0.045202533284215106],[116,37,69,-0.045254468675390715],[116,37,70,-0.04046440649418516],[116,37,71,-0.03567305073742961],[116,37,72,-0.03089178116504637],[116,37,73,-0.02613102220549508],[116,37,74,-0.02140091855180467],[116,37,75,-0.016711879458349458],[116,37,76,-0.012074991787981573],[116,37,77,-0.007502302185205583],[116,37,78,-0.0030069690636692348],[116,37,79,0.0013967146091229694],[116,38,64,-0.035927104496463955],[116,38,65,-0.03998732195558318],[116,38,66,-0.04385994891301877],[116,38,67,-0.041235133014379276],[116,38,68,-0.03632131589286878],[116,38,69,-0.03137850168699243],[116,38,70,-0.02642430056914753],[116,38,71,-0.021473365214122058],[116,38,72,-0.0165383225597937],[116,38,73,-0.01163057915950219],[116,38,74,-0.006760999428323217],[116,38,75,-0.0019404564259623697],[116,38,76,0.002819744850612608],[116,38,77,0.0075075713732931735],[116,38,78,0.012110092590702427],[116,38,79,0.016613436652605507],[116,39,64,-0.04147437496581585],[116,39,65,-0.037572166350951536],[116,39,66,-0.032611259900198634],[116,39,67,-0.027581748165568482],[116,39,68,-0.022502496018642203],[116,39,69,-0.01739698447439958],[116,39,70,-0.012284545711929504],[116,39,71,-0.007181241733665578],[116,39,72,-0.002100800280008597],[116,39,73,0.0029445721270949343],[116,39,74,0.007943500783545103],[116,39,75,0.012884877484083864],[116,39,76,0.017757419399846337],[116,39,77,0.022549351955221016],[116,39,78,0.027248215206818062],[116,39,79,0.03184079294401934],[116,40,64,-0.029237068473058535],[116,40,65,-0.024174182334393578],[116,40,66,-0.0190451317736174],[116,40,67,-0.013849242733448262],[116,40,68,-0.008605643286225085],[116,40,69,-0.003339911518224611],[116,40,70,0.0019268573433145059],[116,40,71,0.007177212310169176],[116,40,72,0.012396398232481377],[116,40,73,0.017571526997265368],[116,40,74,0.022690869186386763],[116,40,75,0.02774326672724384],[116,40,76,0.03271766675136524],[116,40,77,0.03760277656902466],[116,40,78,0.0423868393724368],[116,40,79,0.047057530000454456],[116,41,64,-0.01598036580827234],[116,41,65,-0.010741387811222997],[116,41,66,-0.00544145847910294],[116,41,67,-7.748221020888093E-5],[116,41,68,0.005331098078744743],[116,41,69,0.010756438664614995],[116,41,70,0.01617557677167323],[116,41,71,0.021569629465759976],[116,41,72,0.02692282605654266],[116,41,73,0.032221656933878746],[116,41,74,0.03745413979964308],[116,41,75,0.042609203934931214],[116,41,76,0.04767619282962146],[116,41,77,0.05264448519858198],[116,41,78,0.057503234116985005],[116,41,79,0.06224122373047578],[116,42,64,-0.0027396405677408402],[116,42,65,0.0026799654154772883],[116,42,66,0.008154398091607305],[116,42,67,0.01368930344766803],[116,42,68,0.01926486035281738],[116,42,69,0.02485075801556042],[116,42,70,0.030422021238224677],[116,42,71,0.035958246627826],[116,42,72,0.04144261101007898],[116,42,73,0.04686099307707062],[116,42,74,0.052201209341117896],[116,42,75,0.057452365151418744],[116,42,76,0.06260432122207349],[116,42,77,0.06764727582157147],[116,42,78,0.07257146248543182],[116,42,79,0.07736696283957517],[116,43,64,0.010438932428339369],[116,43,65,0.01604388136170913],[116,43,66,0.021696881277801283],[116,43,67,0.027406241918593078],[116,43,68,0.03315168986437896],[116,43,69,0.03890023571758901],[116,43,70,0.044624725890562315],[116,43,71,0.05030311787089231],[116,43,72,0.05591746197019564],[116,43,73,0.061452992939017244],[116,43,74,0.06689733263849457],[116,43,75,0.07223980464932245],[116,43,76,0.07747086139569004],[116,43,77,0.08258162406777425],[116,43,78,0.08756353534154976],[116,43,79,0.09240812462323572],[116,44,64,0.02351397238162748],[116,44,65,0.029308652703393414],[116,44,66,0.035144223547479446],[116,44,67,0.04103173155757733],[116,44,68,0.046950365959452664],[116,44,69,0.05286425482815075],[116,44,70,0.058743894830708854],[116,44,71,0.06456546884419757],[116,44,72,0.07030980056250968],[116,44,73,0.07596141530750247],[116,44,74,0.08150770835657523],[116,44,75,0.08693822179523415],[116,44,76,0.09224403060614786],[116,44,77,0.09741723841714253],[116,44,78,0.10245058304988874],[116,44,79,0.1073371517427862],[116,45,64,0.03645315890801395],[116,45,65,0.04244110057195418],[116,45,66,0.04846263216721768],[116,45,67,0.05453154890653863],[116,45,68,0.06062640483460079],[116,45,69,0.06670826208703219],[116,45,70,0.07274510321801714],[116,45,71,0.07871119566141122],[116,45,72,0.08458602089355961],[116,45,73,0.09035330571550731],[116,45,74,0.09600015708780346],[116,45,75,0.10151630165525218],[116,45,76,0.10689343080883411],[116,45,77,0.11192372369396403],[116,45,78,0.11609674043740419],[116,45,79,0.12014500758346003],[116,46,64,0.04923771222877433],[116,46,65,0.05542102444845032],[116,46,66,0.06163067981640856],[116,46,67,0.06788315382885604],[116,46,68,0.07415625132463127],[116,46,69,0.08040781387049271],[116,46,70,0.08660316181289988],[116,46,71,0.0927145108917828],[116,46,72,0.09871987969167602],[116,46,73,0.10452909439958528],[116,46,74,0.10949923911581513],[116,46,75,0.11434186436599997],[116,46,76,0.11906119063934385],[116,46,77,0.12366016460411167],[116,46,78,0.12814094834675088],[116,46,79,0.13250530525507428],[116,47,64,0.060869462598534464],[116,47,65,0.0677539278817842],[116,47,66,0.07440423713007732],[116,47,67,0.08079276358928125],[116,47,68,0.08693443055815828],[116,47,69,0.09286707110071535],[116,47,70,0.0986209819536546],[116,47,71,0.104219456887596],[116,47,72,0.109679902453125],[116,47,73,0.11501486073558238],[116,47,74,0.1202329374596441],[116,47,75,0.12533963405837567],[116,47,76,0.13033808259295346],[116,47,77,0.13522968267646207],[116,47,78,0.1400146398146371],[116,47,79,0.1446924048280613],[116,48,64,0.06974769416016043],[116,48,65,0.07675667168874496],[116,48,66,0.08354080517141493],[116,48,67,0.09006994059981209],[116,48,68,0.09635973150853568],[116,48,69,0.10245109700340109],[116,48,70,0.10837685014181389],[116,48,71,0.11416217066001594],[116,48,72,0.1198257326691229],[116,48,73,0.12538074524494058],[116,48,74,0.1308359041551737],[116,48,75,0.1361962532281245],[116,48,76,0.14146395412619894],[116,48,77,0.14663896354344114],[116,48,78,0.15171961709555615],[116,48,79,0.15670311941353168],[116,49,64,0.07864590879049307],[116,49,65,0.08576995549286838],[116,49,66,0.09267741509159448],[116,49,67,0.09933586101493598],[116,49,68,0.10576177158424527],[116,49,69,0.11199914497169687],[116,49,70,0.11808335220191246],[116,49,71,0.12404154319100691],[116,49,72,0.12989377731241458],[116,49,73,0.13565407329303064],[116,49,74,0.14133137660268075],[116,49,75,0.14693044274541217],[116,49,76,0.15245263510617493],[116,49,77,0.1578966362491875],[116,49,78,0.16325907180145585],[116,49,79,0.16853504628671562],[116,50,64,0.0875963930807396],[116,50,65,0.09482616248383528],[116,50,66,0.101846240386846],[116,50,67,0.10862222477599517],[116,50,68,0.11517149044371204],[116,50,69,0.12154103963561523],[116,50,70,0.12776879275258754],[116,50,71,0.1338839221243198],[116,50,72,0.13990797528844062],[116,50,73,0.14585592448452692],[116,50,74,0.15173714046584114],[116,50,75,0.15755628896046067],[116,50,76,0.1633141483426814],[116,50,77,0.1690083473034057],[116,50,78,0.17463402153156563],[116,50,79,0.18018438863782565],[116,51,64,0.09662061894419922],[116,51,65,0.10394705353608558],[116,51,66,0.1110690984705584],[116,51,67,0.11795071107633286],[116,51,68,0.12461021156003853],[116,51,69,0.13109746609656234],[116,51,70,0.1374528851190589],[116,51,71,0.14370768004471549],[116,51,72,0.14988496848919697],[116,51,73,0.1560008129133303],[116,51,74,0.1620651907678234],[116,51,75,0.1680828944125293],[116,51,76,0.1740543592986512],[116,51,77,0.17997641911364928],[116,51,78,0.18584298679653807],[116,51,79,0.19164566053620852],[116,52,64,0.10572938804746754],[116,52,65,0.11314387767224915],[116,52,66,0.12035752595290673],[116,52,67,0.12733301450367163],[116,52,68,0.13408963539087046],[116,52,69,0.1406799185137264],[116,52,70,0.14714665582110126],[116,52,71,0.15352307724871114],[116,52,72,0.1598339269061219],[116,52,73,0.1660964801225793],[116,52,74,0.17232149940525832],[116,52,75,0.17851412755497925],[116,52,76,0.1846747163777464],[116,52,77,0.19079958962407984],[116,52,78,0.19688173897923503],[116,52,79,0.20291145211665804],[116,53,64,0.11492310850796461],[116,53,65,0.12241761550790578],[116,53,66,0.1297129867777984],[116,53,67,0.13677101363808244],[116,53,68,0.14361196436931475],[116,53,69,0.15029077932486912],[116,53,70,0.1568524777028128],[116,53,71,0.16333225017411274],[116,53,72,0.16975649530739573],[116,53,73,0.17614380435992885],[116,53,74,0.18250589250181534],[116,53,75,0.18884847471176702],[116,53,76,0.195172084756625],[116,53,77,0.2014728358416258],[116,53,78,0.20774312169162934],[116,53,79,0.21397225699586975],[116,54,64,0.12419220739311013],[116,54,65,0.13175935930149707],[116,54,66,0.1391272169063327],[116,54,67,0.14625707585133405],[116,54,68,0.15317016350985588],[116,54,69,0.15992353292505804],[116,54,70,0.16656423553019067],[116,54,71,0.17312932928292002],[116,54,72,0.1796468652038841],[116,54,73,0.18613682973971288],[116,54,74,0.19261204105638446],[116,54,75,0.19907899751957067],[116,54,76,0.2055386767723241],[116,54,77,0.21198728397579464],[116,54,78,0.21841694793315802],[116,54,79,0.22481636397145588],[116,55,64,0.13351768248445578],[116,55,65,0.1411508331674288],[116,55,66,0.1485827091770871],[116,55,67,0.15577450200215412],[116,55,68,0.16274836038025228],[116,55,69,0.16956311759276824],[116,55,70,0.17626762785761194],[116,55,71,0.18290069017658084],[116,55,72,0.18949197582149876],[116,55,73,0.19606291892585437],[116,55,74,0.2026275683511275],[116,55,75,0.20919339912703808],[116,55,76,0.2157620818982835],[116,55,77,0.2223302089458176],[116,55,78,0.22888997548600057],[116,55,79,0.2354298150870263],[116,56,64,0.14287179667201333],[116,56,65,0.15056505691803326],[116,56,66,0.15805334188772657],[116,56,67,0.1652981146434406],[116,56,68,0.17232238811998862],[116,56,69,0.17918641939112487],[116,56,70,0.18594060891194017],[116,56,71,0.1926253416798105],[116,56,72,0.19927184776470075],[116,56,73,0.20590303292590684],[116,56,74,0.2125342775703119],[116,56,75,0.2191742024167473],[116,56,76,0.22582539934414061],[116,56,77,0.2324851260167392],[116,56,78,0.23914596299562293],[116,56,79,0.24579643216308167],[116,57,64,0.15221891822089925],[116,57,65,0.1599671568820903],[116,57,66,0.16750515453060044],[116,57,67,0.17479499325261852],[116,57,68,0.18186047508880293],[116,57,69,0.188762911683589],[116,57,70,0.1955539741638097],[116,57,71,0.2022754545598805],[116,57,72,0.20896005299679316],[116,57,73,0.21563214153789959],[116,57,74,0.22230850304237806],[116,57,75,0.22899904348686567],[116,57,76,0.23570747629503477],[116,57,77,0.24243197731497532],[116,57,78,0.2491658091810266],[116,57,79,0.2558979138954219],[116,58,64,0.16151651000427852],[116,58,65,0.16931532690397164],[116,58,66,0.17689727397703808],[116,58,67,0.1842253598649575],[116,58,68,0.19132408460486783],[116,58,69,0.19825544378781082],[116,58,70,0.20507209314932054],[116,58,71,0.21181703445202413],[116,58,72,0.21852432467708607],[116,58,73,0.22521976791720452],[116,58,74,0.2319215884545471],[116,58,75,0.23864108357759112],[116,58,76,0.24538325476515388],[116,58,77,0.2521474159431581],[116,58,78,0.25892777759786845],[116,58,79,0.2657140056098422],[116,59,64,0.1707162706227611],[116,59,65,0.17856194255750305],[116,59,66,0.18618299424024357],[116,59,67,0.19354361833097844],[116,59,68,0.20066890808055035],[116,59,69,0.20762118214779757],[116,59,70,0.21445379297095093],[116,59,71,0.22121074243736683],[116,59,72,0.22792731028186872],[116,59,73,0.23463067062934126],[116,59,74,0.241340495300313],[116,59,75,0.24806954255108535],[116,59,76,0.25482422997645965],[116,59,77,0.2616051903625643],[116,59,78,0.2684078093377982],[116,59,79,0.2752227437329499],[116,60,64,0.17976542971600934],[116,60,65,0.1876548309937138],[116,60,66,0.19531101233278142],[116,60,67,0.20269954980722102],[116,60,68,0.20984601425488034],[116,60,69,0.21681270680001413],[116,60,70,0.22365339530756015],[116,60,71,0.2304128661277505],[116,60,72,0.23712747085223385],[116,60,73,0.24382566597996186],[116,60,74,0.2505285442556005],[116,60,75,0.2572503564798103],[116,60,76,0.26399902263085273],[116,60,77,0.27077663117994977],[116,60,78,0.2775799255268748],[116,60,79,0.28440077652890794],[116,61,64,0.18860818818835076],[116,61,65,0.19653868715980183],[116,61,66,0.2042268109576527],[116,61,67,0.21163965521974695],[116,61,68,0.2188031452612745],[116,61,69,0.22577925386032585],[116,61,70,0.23262189762925206],[116,61,71,0.23937643189520524],[116,61,72,0.24608011691550952],[116,61,73,0.25276258104008514],[116,61,74,0.25944627973194534],[116,61,75,0.2661469493789138],[116,61,76,0.2728740548551262],[116,61,77,0.2796312298189677],[116,61,78,0.2864167087631714],[116,61,79,0.2932237498644224],[116,62,64,0.19718732925454666],[116,62,65,0.20515666262033855],[116,62,66,0.21287421457319616],[116,62,67,0.22030867154587838],[116,62,68,0.227486186677249],[116,62,69,0.23446813146631965],[116,62,70,0.24130832631746038],[116,62,71,0.24805248618283152],[116,62,72,0.25473860921786884],[116,62,73,0.2613973656644381],[116,62,74,0.2680524860207058],[116,62,75,0.27472114756640387],[116,62,76,0.28141435832477013],[116,62,77,0.2881373375574602],[116,62,78,0.2948898919045278],[116,62,79,0.3016667862997664],[116,63,64,0.2054460074777981],[116,63,65,0.21345213432596796],[116,63,66,0.22119712633845845],[116,63,67,0.22865126958143533],[116,63,68,0.235840819383165],[116,63,69,0.2428263171520781],[116,63,70,0.2496612697993893],[116,63,71,0.2563915541131441],[116,63,72,0.2630557325598406],[116,63,73,0.2696853718341381],[116,63,74,0.276305363359188],[116,63,75,0.28293424493932073],[116,63,76,0.28958452276863295],[116,63,77,0.2962629930029174],[116,63,78,0.3029710621067758],[116,63,79,0.3097050651943088],[116,64,64,0.2133296862769157],[116,64,65,0.2213706236549587],[116,64,66,0.2291414161066882],[116,64,67,0.23661390320757159],[116,64,68,0.2438143230946914],[116,64,69,0.2508022063665625],[116,64,70,0.25763056124262],[116,64,71,0.26434524475568527],[116,64,72,0.2709852118880158],[116,64,73,0.27758276923918174],[116,64,74,0.284163832563314],[116,64,75,0.2907481875041467],[116,64,76,0.29734975284937365],[116,64,77,0.3039768456206337],[116,64,78,0.3106324473104093],[116,64,79,0.31731447057392353],[116,65,64,0.21986258564539882],[116,65,65,0.22886188098741814],[116,65,66,0.23665697495556015],[116,65,67,0.24414682587522324],[116,65,68,0.2513575475167944],[116,65,69,0.2583475283057394],[116,65,70,0.26516912718744245],[116,65,71,0.27186801961728224],[116,65,72,0.278483387364672],[116,65,73,0.28504811394840973],[116,65,74,0.29158898516411946],[116,65,75,0.2981268941491743],[116,65,76,0.30467705041691023],[116,65,77,0.3112491922796465],[116,65,78,0.3178478020675411],[116,65,79,0.32447232353927924],[116,66,64,0.22526349934287598],[116,66,65,0.234429731085853],[116,66,66,0.2436999384866504],[116,66,67,0.2512062766642516],[116,66,68,0.25842705360384544],[116,66,69,0.26541943166634424],[116,66,70,0.2722350048370023],[116,66,71,0.27891912716982165],[116,66,72,0.2855110513019164],[116,66,73,0.29204407309738806],[116,66,74,0.2985456819905383],[116,66,75,0.3050377165784868],[116,66,76,0.31153652499491086],[116,66,77,0.31805312957914456],[116,66,78,0.32459339533680787],[116,66,79,0.33115820167111637],[116,67,64,0.23049190413086165],[116,67,65,0.23970229529524842],[116,67,66,0.24903494978925103],[116,67,67,0.2577568369633901],[116,67,68,0.26498742609338066],[116,67,69,0.2719827416080325],[116,67,70,0.27879352940270763],[116,67,71,0.28546470490922254],[116,67,72,0.29203544853043695],[116,67,73,0.29853930721615385],[116,67,74,0.3050043018437464],[116,67,75,0.3114530400444768],[116,67,76,0.3179028340950022],[116,67,77,0.3243658234725771],[116,67,78,0.3308491016504987],[116,67,79,0.3373548466890024],[116,68,64,0.23555759020194217],[116,68,65,0.244800856239784],[116,68,66,0.25417317089519914],[116,68,67,0.2636861050092931],[116,68,68,0.27101375810812334],[116,68,69,0.27801238884052865],[116,68,70,0.2848196925375893],[116,68,71,0.29148005008301137],[116,68,72,0.2980324414285122],[116,68,73,0.3045105114896584],[116,68,74,0.3109426415980489],[116,68,75,0.31735202622775166],[116,68,76,0.3237567546906396],[116,68,77,0.33016989747210496],[116,68,78,0.336599596854126],[116,68,79,0.3430491614483848],[116,69,64,0.240457015385312],[116,69,65,0.24972283319171873],[116,69,66,0.2591233029540906],[116,69,67,0.2686687717593924],[116,69,68,0.2764943122410731],[116,69,69,0.2834960157517539],[116,69,70,0.29030067722591024],[116,69,71,0.29695206483823217],[116,69,72,0.30348884565968964],[116,69,73,0.30994462219397056],[116,69,74,0.31634797405165455],[116,69,75,0.3227225045445482],[116,69,76,0.3290868919583557],[116,69,77,0.33545494523738423],[116,69,78,0.34183566378883634],[116,69,79,0.348233301087967],[116,70,64,0.24516577880082413],[116,70,65,0.25444399641838433],[116,70,66,0.2638613478247748],[116,70,67,0.2734268567708408],[116,70,68,0.28144230491167244],[116,70,69,0.28844672003472316],[116,70,70,0.29524943364467665],[116,70,71,0.30189349737139953],[116,70,72,0.3084171352207586],[116,70,73,0.3148537559950811],[116,70,74,0.3212319703285409],[116,70,75,0.3275756121740409],[116,70,76,0.3339037645535512],[116,70,77,0.34023078935870404],[116,70,78,0.34656636096136184],[116,70,79,0.3529155033663244],[116,71,64,0.2496383697905363],[116,71,65,0.25891612523762964],[116,71,66,0.26833635608926365],[116,71,67,0.2779066495174582],[116,71,68,0.2859050098195244],[116,71,69,0.2929142936083348],[116,71,70,0.299717892214507],[116,71,71,0.30635790643901667],[116,71,72,0.3128718783711485],[116,71,73,0.3192927859850861],[116,71,74,0.3256490413618958],[116,71,75,0.3319644924158103],[116,71,76,0.3382584279802341],[116,71,77,0.3445455860846108],[116,71,78,0.35083616522676353],[116,71,79,0.35713583841803875],[116,72,64,0.25383625030763374],[116,72,65,0.2630980050811316],[116,72,66,0.27250440980761237],[116,72,67,0.28206151636469573],[116,72,68,0.28992389754106074],[116,72,69,0.29694271782487797],[116,72,70,0.3037522147503361],[116,72,71,0.3103931942939695],[116,72,72,0.3169021841444234],[116,72,73,0.3233114183235626],[116,72,74,0.329648823609564],[116,72,75,0.33593800766833676],[116,72,76,0.34219824877977006],[116,72,77,0.34844448702431075],[116,72,78,0.3546873167718541],[116,72,79,0.36093298029021637],[116,73,64,0.2577300739381986],[116,73,65,0.26695830118301905],[116,73,66,0.2763321821788197],[116,73,67,0.28585615787389207],[116,73,68,0.2935297159856081],[116,73,69,0.30056459188720497],[116,73,70,0.3073866296252026],[116,73,71,0.31403492956991197],[116,73,72,0.3205446139328593],[116,73,73,0.326946810757553],[116,73,74,0.3332686367773006],[116,73,75,0.33953317905541297],[116,73,76,0.34575947531011014],[116,73,77,0.3519624928119228],[116,73,78,0.35815310572392156],[116,73,79,0.3643380707360157],[116,74,64,0.2612968221929414],[116,74,65,0.2704726578485234],[116,74,66,0.27979400665081167],[116,74,67,0.2892636532327802],[116,74,68,0.29674548379732696],[116,74,69,0.30380412108788457],[116,74,70,0.31064638860867033],[116,74,71,0.3173092412073192],[116,74,72,0.32382597736107793],[116,74,73,0.3302262332164873],[116,74,74,0.3365359712544388],[116,74,75,0.34277746348273946],[116,74,76,0.3489692690558448],[116,74,77,0.35512620621704755],[116,74,78,0.3612593184506125],[116,74,79,0.36737583472133595],[116,75,64,0.26451702770928254],[116,75,65,0.2736208829387436],[116,75,66,0.28286902911153444],[116,75,67,0.2922410631461479],[116,75,68,0.29958940498791226],[116,75,69,0.3066800302167084],[116,75,70,0.3135506540938995],[116,75,71,0.3202356494834757],[116,75,72,0.32676607359159277],[116,75,73,0.33316968381349327],[116,75,74,0.33947094253723703],[116,75,75,0.3456910107674029],[116,75,76,0.35184773044406725],[116,75,77,0.3579555953421311],[116,75,78,0.3640257104418444],[116,75,79,0.37006573966423895],[116,76,64,0.2673720893289747],[116,76,65,0.27638422258311085],[116,76,66,0.2855384482001202],[116,76,67,0.294688803940051],[116,76,68,0.3020776997640471],[116,76,69,0.30920839715948895],[116,76,70,0.3161153118546122],[116,76,71,0.32282982947662897],[116,76,72,0.3293803736601046],[116,76,73,0.3357924562017868],[116,76,74,0.342088709024247],[116,76,75,0.3482888977436609],[116,76,76,0.3544099166680405],[116,76,77,0.36046576508026956],[116,76,78,0.36646750468369366],[116,76,79,0.37242319810770985],[116,77,64,0.2698416840994695],[116,77,65,0.2787427312269421],[116,77,66,0.2877828488860864],[116,77,67,0.29679076428275863],[116,77,68,0.3042273463775302],[116,77,69,0.3114054015615164],[116,77,70,0.31835570431049715],[116,77,71,0.3251063021195119],[116,77,72,0.33168263925220026],[116,77,73,0.3381076540390969],[116,77,74,0.3444018493647622],[116,77,75,0.35058333604005343],[116,77,76,0.3566678488098336],[116,77,77,0.36266873479686773],[116,77,78,0.36859691422772234],[116,77,79,0.3744608133269185],[116,78,64,0.2719012813020115],[116,78,65,0.28067274218882576],[116,78,66,0.28957963454496743],[116,78,67,0.29856864241853326],[116,78,68,0.306058728718406],[116,78,69,0.31328998330756364],[116,78,70,0.32028927914428557],[116,78,71,0.3270810478485924],[116,78,72,0.3336874731714095],[116,78,73,0.3401286481395853],[116,78,74,0.3464226953575731],[116,78,75,0.3525858500305069],[116,78,76,0.35863250535439906],[116,78,77,0.36457521999600023],[116,78,78,0.370424687455495],[116,78,79,0.3761896671701483],[116,79,64,0.27353918332510535],[116,79,65,0.2821637005592759],[116,79,66,0.29091942501343193],[116,79,67,0.2998015719554648],[116,79,68,0.3075808810779247],[116,79,69,0.3148702720861429],[116,79,70,0.3219234332540989],[116,79,71,0.3287609706233139],[116,79,72,0.33540157932336834],[116,79,73,0.3418622739002044],[116,79,74,0.3481585704284009],[116,79,75,0.354304619805168],[116,79,76,0.36031329173565574],[116,79,77,0.3661962090261836],[116,79,78,0.3719637319019306],[116,79,79,0.3776248921587844],[116,80,64,0.2748093236933745],[116,80,65,0.28327048795956805],[116,80,66,0.29185729401654],[116,80,67,0.30056378080132684],[116,80,68,0.30874453091659443],[116,80,69,0.3160997682990286],[116,80,70,0.3232154802962388],[116,80,71,0.3301082442013526],[116,80,72,0.33679300567947185],[116,80,73,0.34328340038638183],[116,80,74,0.34959201464978995],[116,80,75,0.3557305843970713],[116,80,76,0.36171013166039095],[116,80,77,0.3675410381314555],[116,80,78,0.37323305537157986],[116,80,79,0.37879525140824893],[116,81,64,0.27576654539040796],[116,81,65,0.28404923576611013],[116,81,66,0.29244994053966916],[116,81,67,0.30096157440174304],[116,81,68,0.309499495720539],[116,81,69,0.31693061722734595],[116,81,70,0.3241209073809343],[116,81,71,0.33108272404201006],[116,81,72,0.33782697720703575],[116,81,73,0.3443635643295687],[116,81,74,0.3507017306610027],[116,81,75,0.3568503535237773],[116,81,76,0.36281814961642395],[116,81,77,0.36861380463002336],[116,81,78,0.3742460246270588],[116,81,79,0.37972350879597355],[116,82,64,0.2764483843165727],[116,82,65,0.2845391969574854],[116,82,66,0.2927378712557055],[116,82,67,0.30103621588335344],[116,82,68,0.3094125454438804],[116,82,69,0.31732896815830647],[116,82,70,0.32460742250363034],[116,82,71,0.33165445031241525],[116,82,72,0.33847664514599657],[116,82,73,0.3450797859678422],[116,82,74,0.3514693209100293],[116,82,75,0.3576507593617636],[116,82,76,0.3636299711883105],[116,82,77,0.36941339211214097],[116,82,78,0.3750081345020086],[116,82,79,0.3804220030193588],[116,83,64,0.27671430846535017],[116,83,65,0.2847650946097259],[116,83,66,0.2927476260575406],[116,83,67,0.30081580441611655],[116,83,68,0.30894940092898404],[116,83,69,0.3171269666843881],[116,83,70,0.32465356300172304],[116,83,71,0.33180252488442863],[116,83,72,0.338722246723069],[116,83,73,0.3454140195988508],[116,83,74,0.35187903105700175],[116,83,75,0.35811888879549625],[116,83,76,0.36413603436142766],[116,83,77,0.3699340455802166],[116,83,78,0.3755178267035182],[116,83,79,0.38089368551114394],[116,84,64,0.2758083512513676],[116,84,65,0.28447436872187165],[116,84,66,0.292493914013235],[116,84,67,0.3003172586356761],[116,84,68,0.3081903853819104],[116,84,69,0.3160952871488147],[116,84,70,0.3240171951785871],[116,84,71,0.33151404433633475],[116,84,72,0.33855031454410944],[116,84,73,0.34535264857277337],[116,84,74,0.35191753390454644],[116,84,75,0.35824215377921614],[116,84,76,0.3643249381378111],[116,84,77,0.37016598477179935],[116,84,78,0.3757673493478447],[116,84,79,0.38113320327734235],[116,85,64,0.2744339479212566],[116,85,65,0.2831410461053596],[116,85,66,0.29162506195100196],[116,85,67,0.29954821021431943],[116,85,68,0.3071459241400621],[116,85,69,0.31475982104517725],[116,85,70,0.32237906524224275],[116,85,71,0.3299956459417119],[116,85,72,0.33760318596470323],[116,85,73,0.3448860257620939],[116,85,74,0.35157375436469773],[116,85,75,0.3580083998040104],[116,85,76,0.3641838279622988],[116,85,77,0.37009605470528467],[116,85,78,0.3757436558571011],[116,85,79,0.3811280249297957],[116,86,64,0.27261070458206504],[116,86,65,0.28135174401926083],[116,86,66,0.28989009999840964],[116,86,67,0.29822793737016684],[116,86,68,0.30581947292443196],[116,86,69,0.31312751121491816],[116,86,70,0.3204257450161909],[116,86,71,0.3277106373510907],[116,86,72,0.33498084261664574],[116,86,73,0.3422359154206185],[116,86,74,0.3494751766992573],[116,86,75,0.35669674053433453],[116,86,76,0.3636988179364813],[116,86,77,0.36970841290942574],[116,86,78,0.37542934220734847],[116,86,79,0.3808596084898319],[116,87,64,0.2703658569234034],[116,87,65,0.2791315802402776],[116,87,66,0.2877169943691827],[116,87,67,0.2961255176472575],[116,87,68,0.30420905536464504],[116,87,69,0.31120036401448237],[116,87,70,0.31816347968280295],[116,87,71,0.32509918092082096],[116,87,72,0.33201114899594747],[116,87,73,0.3389044229706746],[116,87,74,0.34578403064494323],[116,87,75,0.3526537994239719],[116,87,76,0.3595153506754402],[116,87,77,0.36636728064933677],[116,87,78,0.37320453055329533],[116,87,79,0.3800179479105172],[116,88,64,0.2677323810660425],[116,88,65,0.27651150182834716],[116,88,66,0.2851342144577335],[116,88,67,0.2936051833284863],[116,88,68,0.3019306188950198],[116,88,69,0.30897671068366156],[116,88,70,0.3155952766985058],[116,88,71,0.3221692723974168],[116,88,72,0.3287073197967475],[116,88,73,0.33521998216854354],[116,88,74,0.34171814565021363],[116,88,75,0.3482115999799553],[116,88,76,0.35470782254936256],[116,88,77,0.3612109694151759],[116,88,78,0.3677210763727111],[116,88,79,0.3742334726691298],[116,89,64,0.26474722494085096],[116,89,65,0.2735265859419558],[116,89,66,0.2821744593550587],[116,89,67,0.29069673690415826],[116,89,68,0.29910018846738995],[116,89,69,0.30645238057182395],[116,89,70,0.3127218818613347],[116,89,71,0.3189269919417363],[116,89,72,0.3250811078494328],[116,89,73,0.33120026350849285],[116,89,74,0.3373012521967133],[116,89,75,0.34339996703988585],[116,89,76,0.34950996438496906],[116,89,77,0.3556412542947761],[116,89,78,0.36179932180855384],[116,89,79,0.3679843820297824],[116,90,64,0.2614496637314941],[116,90,65,0.27021446089948487],[116,90,66,0.27887316762134295],[116,90,67,0.28743287368548565],[116,90,68,0.2959012344668706],[116,90,69,0.30362178350825886],[116,90,70,0.30954267443905487],[116,90,71,0.3153771900422067],[116,90,72,0.3211432618267675],[116,90,73,0.326862248768733],[116,90,74,0.3325567954915409],[116,90,75,0.338248926816086],[116,90,76,0.34395838421106545],[116,90,77,0.3497012090089384],[116,90,78,0.3554885765968004],[116,90,79,0.36132588515066055],[116,91,64,0.2578797826038125],[116,91,65,0.26661385066702137],[116,91,66,0.2752671451463067],[116,91,67,0.2838479152837915],[116,91,68,0.2923650008565028],[116,91,69,0.3004788988239873],[116,91,70,0.30605647916332807],[116,91,71,0.3115241003978768],[116,91,72,0.3169039204631795],[116,91,73,0.32222239029591626],[116,91,74,0.3275078474037355],[116,91,75,0.33278836333829986],[116,91,76,0.3380898512917769],[116,91,77,0.34343443931614104],[116,91,78,0.3488391139528772],[116,91,79,0.35431463836391514],[116,92,64,0.25407708965608367],[116,92,65,0.2627632456729856],[116,92,66,0.2713933139202586],[116,92,67,0.2799766566653306],[116,92,68,0.2885235617356555],[116,92,69,0.2970181687392233],[116,92,70,0.3022622930755682],[116,92,71,0.3073718780647754],[116,92,72,0.31237294191730525],[116,92,73,0.31729671438802176],[116,92,74,0.3221769701995312],[116,92,75,0.32704763287296834],[116,92,76,0.3319406558735188],[116,92,77,0.33688418720464375],[116,92,78,0.3419010228202168],[116,92,79,0.34700735347376876],[116,93,64,0.2500792617555722],[116,93,65,0.2586997025890042],[116,93,66,0.2672875842892406],[116,93,67,0.27585332924226563],[116,93,68,0.2844088951989022],[116,93,69,0.2929521666028118],[116,93,70,0.2981599253779948],[116,93,71,0.3029250613003922],[116,93,72,0.3075601670217351],[116,93,73,0.312100867848926],[116,93,74,0.31658603149109],[116,93,75,0.32105513607876857],[116,93,76,0.3255459314562915],[116,93,77,0.3300924005057168],[116,93,78,0.33472302644653534],[116,93,79,0.33945937125552167],[116,94,64,0.24592102567660268],[116,94,65,0.2544577754734471],[116,94,66,0.262983853035054],[116,94,67,0.2715106822418878],[116,94,68,0.2800520661573654],[116,94,69,0.28860743566997554],[116,94,70,0.2937505485997032],[116,94,71,0.29818895567266535],[116,94,72,0.30247561526981803],[116,94,73,0.3066501068679639],[116,94,74,0.31075596986798426],[116,94,75,0.3148378476883114],[116,94,76,0.3189389396964582],[116,94,77,0.3230987683411146],[116,94,78,0.32735126798787584],[116,94,79,0.3317232011161575],[116,95,64,0.24163317672332524],[116,95,65,0.2500685804484907],[116,95,66,0.25851312940494914],[116,95,67,0.2669791843932189],[116,95,68,0.27548252003479057],[116,95,69,0.28402442579630094],[116,95,70,0.289037159533909],[116,95,71,0.2931699391231869],[116,95,72,0.2971296124887658],[116,95,73,0.3009592274530097],[116,95,74,0.3047065107321339],[116,95,75,0.3084208035345398],[116,95,76,0.3121503180556127],[116,95,77,0.3159397228062258],[116,95,78,0.31982806381218926],[116,95,79,0.3238470278352717],[116,96,64,0.23724173680477123],[116,96,65,0.2455589958718541],[116,96,66,0.25390279101474844],[116,96,67,0.2622863477810953],[116,96,68,0.2707274890767172],[116,96,69,0.27922960587071705],[116,96,70,0.28402494853875976],[116,96,71,0.28787568678912495],[116,96,72,0.29153284924076606],[116,96,73,0.29504243671544894],[116,96,74,0.2984558319044785],[116,96,75,0.30182654476660137],[116,96,76,0.3052072903164723],[116,96,77,0.3086474072787208],[116,96,78,0.3121906251470493],[116,96,79,0.31587318626505884],[116,97,64,0.23276725372949705],[116,97,65,0.24095099976927684],[116,97,66,0.2491759713619765],[116,97,67,0.2574561755415862],[116,97,68,0.26581151284880244],[116,97,69,0.27424765180307376],[116,97,70,0.2787215759205801],[116,97,71,0.2823153144948575],[116,97,72,0.28569636907943097],[116,97,73,0.28891316436988584],[116,97,74,0.2920201786152596],[116,97,75,0.29507451912350513],[116,97,76,0.2981328400915898],[116,97,77,0.30124861173051787],[116,97,78,0.3044697486894678],[116,97,79,0.3078366048294308],[116,98,64,0.2282242433024201],[116,98,65,0.23626114611379403],[116,98,66,0.24435108051273163],[116,98,67,0.2525087349098014],[116,98,68,0.26075607435039916],[116,98,69,0.2691011617653342],[116,98,70,0.27313735423729296],[116,98,71,0.2764994399246362],[116,98,72,0.27963148586982106],[116,98,73,0.28258381387258935],[116,98,74,0.2854134275314243],[116,98,75,0.28818043915676045],[116,98,76,0.290944847456029],[116,98,77,0.2937636754104158],[116,98,78,0.2966884767716023],[116,98,79,0.2997632186268948],[116,99,64,0.22362077563467114],[116,99,65,0.23150018137014722],[116,99,66,0.23944146036470756],[116,99,67,0.24745985697889236],[116,99,68,0.25557935302895357],[116,99,69,0.2638104772304947],[116,99,70,0.2672853354690732],[116,99,71,0.27044016057961867],[116,99,72,0.2733496294541233],[116,99,73,0.2760654526779955],[116,99,74,0.27864659951160914],[116,99,75,0.2811555973124243],[116,99,76,0.28365518883784796],[116,99,77,0.2862053572524759],[116,99,78,0.28886072765089105],[116,99,79,0.2916683529058965],[116,100,64,0.2189582069195172],[116,100,65,0.22667280256847103],[116,100,66,0.23445517574033317],[116,100,67,0.24232096438886877],[116,100,68,0.2502960958513623],[116,100,69,0.25791249986664855],[116,100,70,0.26118130210595114],[116,100,71,0.2641509477092401],[116,100,72,0.26686211901478235],[116,100,73,0.26936744114499933],[116,100,74,0.2717273208143865],[116,100,75,0.27400613780161703],[116,100,76,0.27626880030328366],[116,100,77,0.27857767435420655],[116,100,78,0.2809898964698827],[116,100,79,0.28355507764800364],[116,101,64,0.2142305119328021],[116,101,65,0.22177665278309722],[116,101,66,0.22939367176520425],[116,101,67,0.23709738900901206],[116,101,68,0.24491559507837474],[116,101,69,0.25173327172008503],[116,101,70,0.2548464400401922],[116,101,71,0.2576496206652928],[116,101,72,0.26018340866880996],[116,101,73,0.2625009096745263],[116,101,74,0.2646634829842273],[116,101,75,0.2667368421736767],[116,101,76,0.2687875247118063],[116,101,77,0.27087974111239155],[116,101,78,0.27307261308456293],[116,101,79,0.2754178091158107],[116,102,64,0.20942057466383474],[116,102,65,0.21679451670997507],[116,102,66,0.22423979571060215],[116,102,67,0.2317721801198325],[116,102,68,0.23942121765850352],[116,102,69,0.24536272296648304],[116,102,70,0.24833663012123952],[116,102,71,0.25099212440079594],[116,102,72,0.25336930610468306],[116,102,73,0.2555212797635229],[116,102,74,0.25750982362632],[116,102,75,0.2594014201138069],[116,102,76,0.26126365907685967],[116,102,77,0.2631620246448182],[116,102,78,0.26515707539657474],[116,102,79,0.26730202654513313],[116,103,64,0.2045109660939453],[116,103,65,0.2117065780559944],[116,103,66,0.2189715167482417],[116,103,67,0.22632127777314398],[116,103,68,0.2337870178230436],[116,103,69,0.23886963178449974],[116,103,70,0.2417231169994454],[116,103,71,0.244252014777912],[116,103,72,0.24649545503304007],[116,103,73,0.2485059753784896],[116,103,74,0.25034514717899264],[116,103,75,0.25207956389446856],[116,103,76,0.25377720376260837],[116,103,77,0.25550417780885554],[116,103,78,0.2573218731185173],[116,103,79,0.2592845002609018],[116,104,64,0.19949172883140667],[116,104,65,0.20650114715001727],[116,104,66,0.21357563003600463],[116,104,67,0.22073020581839917],[116,104,68,0.2279974459349395],[116,104,69,0.23231312525918574],[116,104,70,0.23506666798953213],[116,104,71,0.23749157698430806],[116,104,72,0.23962550482298778],[116,104,73,0.24151980932554706],[116,104,74,0.24323517280767556],[116,104,75,0.24483758212578716],[116,104,76,0.24639468166365056],[116,104,77,0.24797251036322854],[116,104,78,0.24963263285441173],[116,104,79,0.25142967369930536],[116,105,64,0.1943614628025228],[116,105,65,0.20117572331622277],[116,105,66,0.20804879062392684],[116,105,67,0.21499506841097601],[116,105,68,0.22204830128065314],[116,105,69,0.22574175909476824],[116,105,70,0.22841669040602328],[116,105,71,0.23076097048021033],[116,105,72,0.23281026962209111],[116,105,73,0.23461414058547464],[116,105,74,0.23623167231519804],[116,105,75,0.2377274996850064],[116,105,76,0.23916818137512424],[116,105,77,0.2406189570004927],[116,105,78,0.2421408935687347],[116,105,79,0.2437884303233042],[116,106,64,0.18912872824396246],[116,106,65,0.19573831304012873],[116,106,66,0.20239873828330338],[116,106,67,0.2091236695178323],[116,106,68,0.21594773609985649],[116,106,69,0.21919262143434967],[116,106,70,0.22181045419441842],[116,106,71,0.2240975645078881],[116,106,72,0.226087166186819],[116,106,73,0.22782639979594618],[116,106,74,0.22937206506837995],[116,106,75,0.23078670096517037],[116,106,76,0.2321350253883582],[116,106,77,0.23348074555106296],[116,106,78,0.2348837490025334],[116,106,79,0.2363976843081617],[116,107,64,0.1838138819796641],[116,107,65,0.19020917858955183],[116,107,66,0.19664594744300928],[116,107,67,0.2031370495439324],[116,107,68,0.2097176656083141],[116,107,69,0.21269004450818182],[116,107,70,0.21527194157614904],[116,107,71,0.2175249242863129],[116,107,72,0.2194793305921628],[116,107,73,0.22117932619077793],[116,107,74,0.22267876104951353],[116,107,75,0.22403736157821794],[116,107,76,0.2253172701899667],[116,107,77,0.22657994302438755],[116,107,78,0.22788341563877534],[116,107,79,0.22927994551033892],[116,108,64,0.17845134918443228],[116,108,65,0.18462301942469464],[116,108,66,0.19082570469008814],[116,108,67,0.19707144165024001],[116,108,68,0.20334298866588088],[116,108,69,0.20624392136820588],[116,108,70,0.20881032092858642],[116,108,71,0.21105144512118754],[116,108,72,0.2129944111128481],[116,108,73,0.21467991341068396],[116,108,74,0.21615824963402727],[116,108,75,0.21748566636845007],[116,108,76,0.2187210364441461],[116,108,77,0.21992287805931396],[116,108,78,0.22114672524719506],[116,108,79,0.22244285826972654],[116,109,64,0.17309228543199875],[116,109,65,0.17903154074801467],[116,109,66,0.18499056773877315],[116,109,67,0.1909806012227926],[116,109,68,0.1969509109503863],[116,109,69,0.19984757530089883],[116,109,70,0.20241799193865923],[116,109,71,0.20466858097043325],[116,109,72,0.20662298338155075],[116,109,73,0.20831800992751667],[116,109,74,0.20979987955017848],[116,109,75,0.21112075898780752],[116,109,76,0.21233561438965937],[116,109,77,0.21349938488058962],[116,109,78,0.21466448715562048],[116,109,79,0.21587865932419817],[116,110,64,0.16779756355919123],[116,110,65,0.17349622149433697],[116,110,66,0.17920289768248096],[116,110,67,0.18492808180367315],[116,110,68,0.19055542856460034],[116,110,69,0.19346452063904798],[116,110,70,0.19605742957032488],[116,110,71,0.1983377868648644],[116,110,72,0.20032560239525288],[116,110,73,0.202053487409865],[116,110,74,0.20356314596417477],[116,110,75,0.20490214572314672],[116,110,76,0.20612097829011872],[116,110,77,0.20727041841748903],[116,110,78,0.20839919065343343],[116,110,79,0.20955195118259484],[116,111,64,0.16262315969148228],[116,111,65,0.16807366077208072],[116,111,66,0.17351997729274798],[116,111,67,0.1789719189247101],[116,111,68,0.18408131633603697],[116,111,69,0.18701897990757985],[116,111,70,0.18965245249164586],[116,111,71,0.19198271281443757],[116,111,72,0.19402606920658094],[116,111,73,0.19581069631994188],[116,111,74,0.19737341683173087],[116,111,75,0.19875673824432555],[116,111,76,0.20000615416685283],[116,111,77,0.2011677187362869],[116,111,78,0.2022859021063841],[116,111,79,0.20340173420742277],[116,112,64,0.15760865880550723],[116,112,65,0.16280502819676296],[116,112,66,0.16798399151886625],[116,112,67,0.17315469511367979],[116,112,68,0.17746605847695718],[116,112,69,0.1804495270682957],[116,112,70,0.18314348546587625],[116,112,71,0.18554641527753096],[116,112,72,0.1876708567889751],[116,112,73,0.1895402982717656],[116,112,74,0.19118628490295503],[116,112,75,0.19264575644722653],[116,112,76,0.19395862220733306],[116,112,77,0.19516558109824114],[116,112,78,0.19630619404874722],[116,112,79,0.19741721528620798],[116,113,64,0.15276994802450145],[116,113,65,0.1577083280749836],[116,113,66,0.1626145585573026],[116,113,67,0.16737203040101173],[116,113,68,0.1706709455569659],[116,113,69,0.17371765037240788],[116,113,70,0.17649283398271798],[116,113,71,0.17899264788022703],[116,113,72,0.18122580100068453],[116,113,73,0.18321083886016679],[116,113,74,0.18497361538027363],[116,113,75,0.18654496548491195],[116,113,76,0.18795858598929988],[116,113,77,0.18924913173428898],[116,113,78,0.1904505333505209],[116,113,79,0.1915945424714015],[116,114,64,0.14810370742871118],[116,114,65,0.1527826185731321],[116,114,66,0.15676689754148915],[116,114,67,0.16031962749510265],[116,114,68,0.16367650491377211],[116,114,69,0.16680274300529752],[116,114,70,0.16967906318214532],[116,114,71,0.1722994717411665],[116,114,72,0.1746688053005145],[116,114,73,0.17680043349094582],[116,114,74,0.1787141262890262],[116,114,75,0.18043409290984821],[116,114,76,0.18198719870011987],[116,114,77,0.18340136599175774],[116,114,78,0.18470416439465115],[116,114,79,0.18592159552861237],[116,115,64,0.14183294974969118],[116,115,65,0.1457093821384717],[116,115,66,0.14945409324543854],[116,115,67,0.1530542260723383],[116,115,68,0.1564799427411828],[116,115,69,0.15969979269626985],[116,115,70,0.16269497488056442],[116,115,71,0.16545755610106896],[116,115,72,0.16798849604947053],[116,115,73,0.17029580218785523],[116,115,74,0.17239282055197166],[116,115,75,0.17429666814132966],[116,115,76,0.1760268121769919],[116,115,77,0.1776038011165498],[116,115,78,0.1790481519242541],[116,115,79,0.1803793977054784],[116,116,64,0.13426827451077583],[116,116,65,0.13815900226192213],[116,116,66,0.14193691147901694],[116,116,67,0.14559009031619208],[116,116,68,0.14909264629821783],[116,116,69,0.15241711953165893],[116,116,70,0.155545620178756],[116,116,71,0.15846850175523824],[116,116,72,0.1611828881678331],[116,116,73,0.16369130306817176],[116,116,74,0.16600040617604],[116,116,75,0.16811984092924273],[116,116,76,0.17006119751819837],[116,116,77,0.17183709506259262],[116,116,78,0.17346038638723024],[116,116,79,0.17494348855692762],[116,117,64,0.12652841039899923],[116,117,65,0.13043274684235845],[116,117,66,0.13424481912507025],[116,117,67,0.13795367109352397],[116,117,68,0.1415377482029785],[116,117,69,0.1449741637603638],[116,117,70,0.1482463492226145],[116,117,71,0.15134318860178028],[116,117,72,0.1542580621665768],[116,117,73,0.1569879651821993],[116,117,74,0.15953270490015103],[116,117,75,0.1618941788010436],[116,117,76,0.16407573688302846],[116,117,77,0.16608163057806694],[116,117,78,0.16791655066935807],[116,117,79,0.1695852563775925],[116,118,64,0.11865792754181187],[116,118,65,0.12257268291312817],[116,118,66,0.12641706626709934],[116,118,67,0.13018106071469593],[116,118,68,0.1338477546219102],[116,118,69,0.1373993252460429],[116,118,70,0.14082089957344693],[116,118,71,0.14410014852663933],[116,118,72,0.14722685350445103],[116,118,73,0.1501925213693395],[116,118,74,0.15299004963530122],[116,118,75,0.1556134434859158],[116,118,76,0.1580575861287874],[116,118,77,0.16031806387085115],[116,118,78,0.16239104717993644],[116,118,79,0.164273228882664],[116,119,64,0.11070837231674914],[116,119,65,0.11462799663426589],[116,119,66,0.11850008875447565],[116,119,67,0.12231552420729078],[116,119,68,0.1260622390190611],[116,119,69,0.12972785609114476],[116,119,70,0.13329952453497795],[116,119,71,0.1367639647583141],[116,119,72,0.1401075551566333],[116,119,73,0.14331644174165067],[116,119,74,0.14637667101038968],[116,119,75,0.14927434631599446],[116,119,76,0.15199580796201093],[116,119,77,0.15452783720566804],[116,119,78,0.15685788432350156],[116,119,79,0.1589743208649412],[116,120,64,0.10273559849140777],[116,120,65,0.10665239065528082],[116,120,66,0.11054499734649235],[116,120,67,0.11440510824458554],[116,120,68,0.11822560251672147],[116,120,69,0.12199980735745733],[116,120,70,0.12571716219884443],[116,120,71,0.1293636982568968],[116,120,72,0.13292263373129268],[116,120,73,0.13637496787586803],[116,120,74,0.1397000728273452],[116,120,75,0.1428762821145346],[116,120,76,0.14588147481016214],[116,120,77,0.1486936543325],[116,120,78,0.15129152095439988],[116,120,79,0.1536105419094923],[116,121,64,0.09479718225143599],[116,121,65,0.09870156066137231],[116,121,66,0.10260513935812543],[116,121,67,0.1065003135047416],[116,121,68,0.11038488646469777],[116,121,69,0.11425801526924627],[116,121,70,0.11811163035147008],[116,121,71,0.12193132600675259],[116,121,72,0.12569744370205674],[116,121,73,0.12938613195643747],[116,121,74,0.13297038032303382],[116,121,75,0.13642102510904144],[116,121,76,0.1397077245838338],[116,121,77,0.1416656026805159],[116,121,78,0.14251879137787538],[116,121,79,0.14331687446779917],[116,122,64,0.08694994905380643],[116,122,65,0.09083077927501462],[116,122,66,0.0947337611876781],[116,122,67,0.09865185901758351],[116,122,68,0.10258766591730686],[116,122,69,0.10654615570490561],[116,122,70,0.11052187611987929],[116,122,71,0.11450022012799137],[116,122,72,0.11845896867724226],[116,122,73,0.1223697897673102],[116,122,74,0.12619969008767803],[116,122,75,0.1316914555025119],[116,122,76,0.1368190946072423],[116,122,77,0.14044235523759915],[116,122,78,0.14403421789727286],[116,122,79,0.14762431463040332],[116,123,64,0.0792476268365549],[116,123,65,0.08309260193402962],[116,123,66,0.08698178641474479],[116,123,67,0.09090855322737634],[116,123,68,0.0948800387563675],[116,123,69,0.09890688169425857],[116,123,70,0.10581046632126069],[116,123,71,0.11301068700595995],[116,123,72,0.12024898975313925],[116,123,73,0.12749321940312025],[116,123,74,0.13470547169181585],[116,123,75,0.14149380327965558],[116,123,76,0.14480742673308714],[116,123,77,0.1480554060350422],[116,123,78,0.15127671785083763],[116,123,79,0.15450872848338415],[116,124,64,0.07246527960921818],[116,124,65,0.07926607586261092],[116,124,66,0.08616196719307515],[116,124,67,0.09314410013946603],[116,124,68,0.10022184754992154],[116,124,69,0.10740974176610782],[116,124,70,0.11470658640983378],[116,124,71,0.12209735202550238],[116,124,72,0.12955549959065926],[116,124,73,0.13704522887105686],[116,124,74,0.1445236456528038],[116,124,75,0.14985201412865218],[116,124,76,0.15281716851595684],[116,124,77,0.15571226661672208],[116,124,78,0.15858355950693326],[116,124,79,0.1614755744208414],[116,125,64,0.08112142837016573],[116,125,65,0.08793672456810192],[116,125,66,0.09486439300996985],[116,125,67,0.10189552842999738],[116,125,68,0.10904316813770783],[116,125,69,0.1163267335865252],[116,125,70,0.12374747358425266],[116,125,71,0.13129062080870493],[116,125,72,0.1389280484810116],[116,125,73,0.14662083878297508],[116,125,74,0.15432175613506371],[116,125,75,0.1581865560583336],[116,125,76,0.1608334665595538],[116,125,77,0.16340497073168464],[116,125,78,0.16595384037863972],[116,125,79,0.1685310573667606],[116,126,64,0.0901075578572734],[116,126,65,0.09691416205354235],[116,126,66,0.10384830172605634],[116,126,67,0.11090082058941433],[116,126,68,0.11808790878654446],[116,126,69,0.1254333733748655],[116,126,70,0.13294073990297922],[116,126,71,0.1405956239480762],[116,126,72,0.1483686698969659],[116,126,73,0.1562183908760961],[116,126,74,0.16397217689938],[116,126,75,0.16647588197874458],[116,126,76,0.16884001815671906],[116,126,77,0.17112277799272113],[116,126,78,0.17338259959800983],[116,126,79,0.17567610628946065],[116,127,64,0.09942332351065931],[116,127,65,0.1061988835530961],[116,127,66,0.11311477707211608],[116,127,67,0.12016139214385063],[116,127,68,0.12735750911691932],[116,127,69,0.13473074210524216],[116,127,70,0.14228667125410197],[116,127,71,0.1500113830579866],[116,127,72,0.15787463869639767],[116,127,73,0.16583293534858584],[116,127,74,0.17242786965134851],[116,127,75,0.17469872362428918],[116,127,76,0.17681915979034363],[116,127,77,0.17885194445002864],[116,127,78,0.18086025983966897],[116,127,79,0.18290548286116043],[116,128,64,0.10905458673312358],[116,128,65,0.11577818296980974],[116,128,66,0.12265237528159645],[116,128,67,0.12966688941517873],[116,128,68,0.13684251076732698],[116,128,69,0.1442100423946043],[116,128,70,0.15177686264522824],[116,128,71,0.15952958939329548],[116,128,72,0.1674374260805294],[116,128,73,0.1754553948183083],[116,128,74,0.18075668296360053],[116,128,75,0.18283450103172266],[116,128,76,0.18475198565435427],[116,128,77,0.1865755318106915],[116,128,78,0.18837211449378333],[116,128,79,0.19020693980115966],[116,129,64,0.11897177995586256],[116,129,65,0.12562454418926747],[116,129,66,0.13243554971086757],[116,129,67,0.1393936530857547],[116,129,68,0.14652107123937894],[116,129,69,0.15385118303677986],[116,129,70,0.16139290034627912],[116,129,71,0.1691334146237947],[116,129,72,0.17704167199691692],[116,129,73,0.18507173146810307],[116,129,74,0.18893992173593538],[116,129,75,0.19086375157940974],[116,129,76,0.19261849631265293],[116,129,77,0.1942732555628522],[116,129,78,0.1958978604946926],[116,129,79,0.1975604294595908],[116,130,64,0.1291283774306022],[116,130,65,0.13569413379092352],[116,130,66,0.14242317040261093],[116,130,67,0.14930326767912844],[116,130,68,0.15635755227821838],[116,130,69,0.1636214249783921],[116,130,70,0.1711050912747726],[116,130,71,0.1787963541074505],[116,130,72,0.18666417526833823],[116,130,73,0.1946621175820063],[116,130,74,0.19696282706243992],[116,130,75,0.19876857857897198],[116,130,76,0.20039777760252245],[116,130,77,0.20192137223584072],[116,130,78,0.20341117716815446],[116,130,79,0.20493736314047004],[116,131,64,0.1394594720183863],[116,131,65,0.14592539546472133],[116,131,66,0.15255713892774933],[116,131,67,0.15934119730770432],[116,131,68,0.16630118314173858],[116,131,69,0.17347408907969802],[116,131,70,0.1808712399430853],[116,131,71,0.18848110294506504],[116,131,72,0.1962729016799001],[116,131,73,0.20284632640000538],[116,131,74,0.20481527528590998],[116,131,75,0.20653311941550648],[116,131,76,0.20806820987822616],[116,131,77,0.20949260600080383],[116,131,78,0.210879351417799],[116,131,79,0.2122999216055734],[116,132,64,0.14988042134035523],[116,132,65,0.15623770151026814],[116,132,66,0.1627610459358527],[116,132,67,0.16943544712692774],[116,132,68,0.17628472989863103],[116,132,69,0.18334724793513504],[116,132,70,0.19063538572628597],[116,132,71,0.19813836746527477],[116,132,72,0.20582590213998525],[116,132,73,0.21058440988548727],[116,132,74,0.21249261343023282],[116,132,75,0.2141441724591148],[116,132,76,0.21560785604855523],[116,132,77,0.21695627110472301],[116,132,78,0.21826311226776557],[116,132,79,0.21960058450209394],[116,133,64,0.16028258344940632],[116,133,65,0.16652568206420415],[116,133,66,0.17293309176184887],[116,133,67,0.17948806111248775],[116,133,68,0.18621451097140895],[116,133,69,0.19315215492291082],[116,133,70,0.20031452603728936],[116,133,71,0.20769177285509688],[116,133,72,0.21525432438475822],[116,133,73,0.21815796960091832],[116,133,74,0.2200165615412549],[116,133,75,0.2216139361662188],[116,133,76,0.2230188977421505],[116,133,77,0.22430420459132008],[116,133,78,0.22554380308903557],[116,133,79,0.2268102353370777],[116,134,64,0.1705482136159044],[116,134,65,0.17667228669384677],[116,134,66,0.18295725544492325],[116,134,67,0.1893843569629265],[116,134,68,0.19597756686739082],[116,134,69,0.2027780916835444],[116,134,70,0.20980081037610726],[116,134,71,0.21703704430307696],[116,134,72,0.2234910181053009],[116,134,73,0.22563257232648226],[116,134,74,0.22744704694914564],[116,134,75,0.22899592280201966],[116,134,76,0.2303476983589764],[116,134,77,0.23157494926532943],[116,134,78,0.23275155466283826],[116,134,79,0.23395009770528294],[116,135,64,0.18057749704270765],[116,135,65,0.18657815765511598],[116,135,66,0.19273494782912393],[116,135,67,0.199026841195676],[116,135,68,0.2054778769828156],[116,135,69,0.21213095774945026],[116,135,70,0.2190025633094297],[116,135,71,0.22608547993789296],[116,135,72,0.23095817709186622],[116,135,73,0.23306068518411915],[116,135,74,0.23483210848084682],[116,135,75,0.23633316777813546],[116,135,76,0.23763174567051487],[116,135,77,0.23879994594901552],[116,135,78,0.2399113195389297],[116,135,79,0.24103826438592668],[116,136,64,0.19029048149551933],[116,136,65,0.19616386392366253],[116,136,66,0.20218754166794395],[116,136,67,0.20833802513876779],[116,136,68,0.21463946352277063],[116,136,69,0.22113668241397752],[116,136,70,0.22784803391017183],[116,136,71,0.2347680698371647],[116,136,72,0.23841545919831336],[116,136,73,0.24047679892536278],[116,136,74,0.2422025913150334],[116,136,75,0.24365250024388405],[116,136,76,0.2448935169488199],[116,136,77,0.2459970268340648],[116,136,78,0.24703604162146486],[116,136,79,0.24808260424334383],[116,137,64,0.19962680364750282],[116,137,65,0.2053695579135291],[116,137,66,0.21125595477415818],[116,137,67,0.2172599207786109],[116,137,68,0.22340578730315597],[116,137,69,0.22974051618355817],[116,137,70,0.2362845861573092],[116,137,71,0.24303459525630017],[116,137,72,0.24588307320262368],[116,137,73,0.24789851644993738],[116,137,74,0.24957326704271526],[116,137,75,0.2509656683631173],[116,137,76,0.2521415813792315],[116,137,77,0.25317146607475216],[116,137,78,0.2541276259517035],[116,137,79,0.25508162296797626],[116,138,64,0.20854582084645637],[116,138,65,0.21415503554978188],[116,138,66,0.2199006309820643],[116,138,67,0.22575392573438327],[116,138,68,0.23173952053458086],[116,138,69,0.23790668289495312],[116,138,70,0.24427822902652957],[116,138,71,0.2508530416552198],[116,138,72,0.25336444456100204],[116,138,73,0.2553273913662943],[116,138,74,0.2569437440050327],[116,138,75,0.25827029921170336],[116,138,76,0.25937158497990753],[116,138,77,0.2603169636481988],[116,138,78,0.2611778946422075],[116,138,79,0.2620253641680036],[116,139,64,0.21702715026629674],[116,139,65,0.22250020168591278],[116,139,66,0.22810192093161294],[116,139,67,0.2338010993790649],[116,139,68,0.23962269860885077],[116,139,69,0.24561839450381723],[116,139,70,0.2518134882435461],[116,139,71,0.2582093274361417],[116,139,72,0.26084667561302327],[116,139,73,0.26274951488505527],[116,139,74,0.2642991663503753],[116,139,75,0.265550691923753],[116,139,76,0.266567116877552],[116,139,77,0.2674165615873357],[116,139,78,0.2681695283579689],[116,139,79,0.2688963505282424],[116,140,64,0.22507161739509748],[116,140,65,0.23040594283566387],[116,140,66,0.23586086465125705],[116,140,67,0.24140283208291166],[116,140,68,0.24705725285314223],[116,140,69,0.2528782304847825],[116,140,70,0.2588936215969485],[116,140,71,0.26510735022378856],[116,140,72,0.2683007165751261],[116,140,73,0.2701358494235388],[116,140,74,0.2716107003378763],[116,140,75,0.2727784427936133],[116,140,76,0.27370045585784136],[116,140,77,0.2744434917476062],[116,140,78,0.27507699277787256],[116,140,79,0.2756705647698325],[116,141,64,0.232702615828524],[116,141,65,0.23789540919359503],[116,141,66,0.24320037790900764],[116,141,67,0.24858190953557274],[116,141,68,0.2540659261851186],[116,141,69,0.25970888373978845],[116,141,70,0.26554117965361135],[116,141,71,0.2715693524569487],[116,141,72,0.27568124565132507],[116,141,73,0.2774423073725989],[116,141,74,0.2788358064875971],[116,141,75,0.27991290111064826],[116,141,76,0.2807331961720726],[116,141,77,0.28136195432075917],[116,141,78,0.2818674495077476],[116,141,79,0.2823184701640542],[116,142,64,0.23996788037883163],[116,142,65,0.24501570794786953],[116,142,66,0.2501668443178358],[116,142,67,0.25538397410675245],[116,142,68,0.2606935735927889],[116,142,69,0.266154274889151],[116,142,70,0.2717989136855992],[116,142,71,0.2776366080159386],[116,142,72,0.28292625664165416],[116,142,73,0.28460957353432903],[116,142,74,0.2859182962377626],[116,142,75,0.2869014545632949],[116,142,76,0.28761675163695555],[116,142,77,0.28812782635674083],[116,142,78,0.2885016509525464],[116,142,79,0.2888060703749234],[116,143,64,0.2469266816677885],[116,143,65,0.2518254182474905],[116,143,66,0.2568179848039909],[116,143,67,0.2618657861536194],[116,143,68,0.26699586089579336],[116,143,69,0.27226874538682855],[116,143,70,0.2777195296937094],[116,143,71,0.28335981141745237],[116,143,72,0.2891809163538795],[116,143,73,0.2915712425781677],[116,143,74,0.2927955862646194],[116,143,75,0.2936858174352167],[116,143,76,0.29429759829298746],[116,143,77,0.29469278525770426],[116,143,78,0.29493687888532305],[116,143,79,0.29509660709767566],[116,144,64,0.2535968699359628],[116,144,65,0.25834294596098273],[116,144,66,0.26317273566807475],[116,144,67,0.2680468699803373],[116,144,68,0.27299295306714627],[116,144,69,0.2780730882353319],[116,144,70,0.2833243787924477],[116,144,71,0.2887607538204945],[116,144,72,0.29437607705506036],[116,144,73,0.2982852393110869],[116,144,74,0.2994261878615178],[116,144,75,0.30022531257262003],[116,144,76,0.3007361041575194],[116,144,77,0.30101847979035107],[116,144,78,0.3011362941691567],[116,144,79,0.3011549746084248],[116,145,64,0.25998329325512337],[116,145,65,0.26457399764195594],[116,145,66,0.26923769446162615],[116,145,67,0.273934821021059],[116,145,68,0.27869355006507684],[116,145,69,0.28357716227857016],[116,145,70,0.2886244846246628],[116,145,71,0.2938515861605809],[116,145,72,0.2992547624099001],[116,145,73,0.3047186798473953],[116,145,74,0.3057768966111457],[116,145,75,0.3064865735859509],[116,145,76,0.3068989177934533],[116,145,77,0.3070717638734548],[116,145,78,0.30706715507013865],[116,145,79,0.30694903819677555],[116,146,64,0.26609016128719226],[116,146,65,0.2705235702783623],[116,146,66,0.27501869172422966],[116,146,67,0.279536403812657],[116,146,68,0.28410544779875174],[116,146,69,0.2887898489543658],[116,146,70,0.2936298260580948],[116,146,71,0.29864335673283604],[116,146,72,0.3038290250438248],[116,146,73,0.30916880420259835],[116,146,74,0.3118169363322799],[116,146,75,0.31243869825160864],[116,146,76,0.31275518466367164],[116,146,77,0.31282202127599695],[116,146,78,0.31269928630090776],[116,146,79,0.3124492730811185],[116,147,64,0.27192076936704135],[116,147,65,0.27619566726175276],[116,147,66,0.2805204996159636],[116,147,67,0.28485725267113066],[116,147,68,0.2892352311828701],[116,147,69,0.29371874061571107],[116,147,70,0.29834902604760233],[116,147,71,0.30314570800518487],[116,147,72,0.3081094819395627],[116,147,73,0.31322476180573267],[116,147,74,0.31751820531952196],[116,147,75,0.3180534412519523],[116,147,76,0.31827667311925023],[116,147,77,0.31824121152211987],[116,147,78,0.3180050318036255],[116,147,79,0.3176286116855181],[116,148,64,0.2774772827969032],[116,148,65,0.2815930765993982],[116,148,66,0.28574660406610886],[116,148,67,0.289901637078079],[116,148,68,0.29408803288948937],[116,148,69,0.29836989465615754],[116,148,70,0.302789104970528],[116,148,71,0.30736663470214376],[116,148,72,0.3121050843391009],[116,148,73,0.3169911788223641],[116,148,74,0.3219982098337473],[116,148,75,0.32330537912926843],[116,148,76,0.3234378878302297],[116,148,77,0.32330392076765413],[116,148,78,0.322959232120874],[116,148,79,0.3224623369374363],[116,149,64,0.28276058151353084],[116,149,65,0.28671721154154584],[116,149,66,0.290699040619576],[116,149,67,0.29467229196781103],[116,149,68,0.29866735799623195],[116,149,69,0.3027476536442407],[116,149,70,0.30695529864085813],[116,149,71,0.31131230335862325],[116,149,72,0.3158229437095536],[116,149,73,0.3204760992113537],[116,149,74,0.3252475486986795],[116,149,75,0.3281720473819932],[116,149,76,0.3282161706511769],[116,149,77,0.3279874177186967],[116,149,78,0.3275392265176827],[116,149,79,0.32692802185659875],[116,150,64,0.287770165291033],[116,150,65,0.2915680137965238],[116,150,66,0.29537829416138733],[116,150,67,0.2991703131028957],[116,150,68,0.30297497472554924],[116,150,69,0.3068545316656574],[116,150,70,0.3108509412000425],[116,150,71,0.3149869335340221],[116,150,72,0.3192682139472726],[116,150,73,0.3236856379588653],[116,150,74,0.32821735451656925],[116,150,75,0.3326340496404717],[116,150,76,0.3325917889198493],[116,150,77,0.3322717146644704],[116,150,78,0.3317248800138559],[116,150,79,0.33100551569391623],[116,151,64,0.2925041196468256],[116,151,65,0.29614391950963065],[116,151,66,0.2997832627012754],[116,151,67,0.30339511772608135],[116,151,68,0.307010871468168],[116,151,69,0.310691167068612],[116,151,70,0.3144774130773001],[116,151,71,0.31839274087026453],[116,151,72,0.3224440299866448],[116,151,73,0.3266239163803854],[116,151,74,0.33091277913125144],[116,151,75,0.33528070125963944],[116,151,76,0.3365480111913133],[116,151,77,0.3361396336974746],[116,151,78,0.3354986354818719],[116,151,79,0.33467697686932874],[116,152,64,0.29695914262803785],[116,152,65,0.30044188819052203],[116,152,66,0.3039112854077994],[116,152,67,0.3073444706823185],[116,152,68,0.3107732802880236],[116,152,69,0.3142563418101831],[116,152,70,0.31783415421285816],[116,152,71,0.3215299421762652],[116,152,72,0.3253515029772485],[116,152,73,0.32929304609833027],[116,152,74,0.33333702165115414],[116,152,75,0.33745593377516747],[116,152,76,0.34007117041499485],[116,152,77,0.33957687819683224],[116,152,78,0.3388455909650368],[116,152,79,0.3379269529519744],[116,153,64,0.30113063266830514],[116,153,65,0.30445749478534784],[116,153,66,0.30775823509155437],[116,153,67,0.3110145762133144],[116,153,68,0.31425876711309714],[116,153,69,0.31754706760691465],[116,153,70,0.32091874274097937],[116,153,71,0.3243968227227001],[116,153,72,0.32798977219247843],[116,153,73,0.3316931618289353],[116,153,74,0.3354913389087684],[116,153,75,0.3393590934934763],[116,153,76,0.3431507145651889],[116,153,77,0.3425721096526412],[116,153,78,0.3417536023701487],[116,153,79,0.34074250792203914],[116,154,64,0.3050128377219182],[116,154,65,0.30818508510603976],[116,154,66,0.3113186753518999],[116,154,67,0.31440023564049036],[116,154,68,0.31746238882849376],[116,154,69,0.3205587391029834],[116,154,70,0.3237270393377723],[116,154,71,0.32698986593687734],[116,154,72,0.33035611383635305],[116,154,73,0.33382250311350353],[116,154,74,0.3373750943467401],[116,154,75,0.3409908098975789],[116,154,76,0.3446389583270338],[116,154,77,0.3451170299120556],[116,154,78,0.34421341169072445],[116,154,79,0.34311339695313015],[116,155,64,0.3085990659035043],[116,155,65,0.3116179948495642],[116,155,66,0.31458608262084553],[116,155,67,0.3174950711701011],[116,155,68,0.32037791750451455],[116,155,69,0.3232853542839638],[116,155,70,0.32625339745133364],[116,155,71,0.3293039456976244],[116,155,72,0.3324461069226951],[116,155,73,0.335677545133843],[116,155,74,0.33898584542722865],[116,155,75,0.34234989470397226],[116,155,76,0.3457412757911821],[116,155,77,0.34720646893139784],[116,155,78,0.34621880092052704],[116,155,79,0.34503228895671567],[116,156,64,0.31188195788588613],[116,156,65,0.3147488324637872],[116,156,66,0.317553133360428],[116,156,67,0.3202918160757032],[116,156,68,0.3229981320125128],[116,156,69,0.3257198023824942],[116,156,70,0.32849093964785636],[116,156,71,0.3313325814435644],[116,156,72,0.3342538564113312],[116,156,73,0.3372531787589617],[116,156,74,0.3403194696651514],[116,156,75,0.34343340363685415],[116,156,76,0.34656867792409907],[116,156,77,0.34883847812186536],[116,156,78,0.3477667718217099],[116,156,79,0.34649503713509894],[116,157,64,0.3148538213374826],[116,157,65,0.3175698261448056],[116,157,66,0.3202120566970849],[116,157,67,0.32278267153917395],[116,157,68,0.3253151773060017],[116,157,69,0.32785421954508587],[116,157,70,0.33043190032801567],[116,157,71,0.333068256325994],[116,157,72,0.3357722738004698],[116,157,73,0.33854293998089424],[116,157,74,0.3413703293928292],[116,157,75,0.34423672366861796],[116,157,76,0.34711776335173217],[116,157,77,0.3499836301954961],[116,157,78,0.3488577517185201],[116,157,79,0.34750099779772764],[116,158,64,0.31750702771341555],[116,158,65,0.32007323528302556],[116,158,66,0.3225550528080189],[116,158,67,0.3249597304618866],[116,158,68,0.3273209916736381],[116,158,69,0.32968041255676694],[116,158,70,0.332068035093045],[116,158,71,0.33450279865966587],[116,158,72,0.33699341539284733],[116,158,73,0.33953928891177],[116,158,74,0.34213147537322414],[116,158,75,0.3447536857801605],[116,158,76,0.3473833284292986],[116,158,77,0.3499925903549174],[116,158,78,0.34949582549595487],[116,158,79,0.34805339770718696],[116,159,64,0.31983447175052315],[116,159,65,0.3222518267110854],[116,159,66,0.3245747774095124],[116,159,67,0.32681546859162447],[116,159,68,0.32900780230351195],[116,159,69,0.3311903509513693],[116,159,70,0.33339109706863185],[116,159,71,0.3356278269502829],[116,159,72,0.33790887847474327],[116,159,73,0.340233938531074],[116,159,74,0.34259488939060073],[116,159,75,0.34497670330064545],[116,159,76,0.34735838452503326],[116,159,77,0.349713958012406],[116,159,78,0.3496889939922284],[116,159,79,0.3481597502351277],[116,160,64,0.3218300940566189],[116,160,65,0.32409941614677845],[116,160,66,0.32626489273647075],[116,160,67,0.32834330334925454],[116,160,68,0.3303686895355227],[116,160,69,0.3323767278709553],[116,160,70,0.3343933805279871],[116,160,71,0.33643525880736164],[116,160,72,0.3385102556725188],[116,160,73,0.3406182333924612],[116,160,74,0.3427517659620127],[116,160,75,0.34489693589460363],[116,160,76,0.34703418491665816],[116,160,77,0.34913921803540476],[116,160,78,0.34944945898531626],[116,160,79,0.34783232062565733],[116,161,64,0.32348946722835714],[116,161,65,0.3256114752682233],[116,161,66,0.3276206854459275],[116,161,67,0.32953822078185],[116,161,68,0.33139822022030135],[116,161,69,0.3332335900779559],[116,161,70,0.33506833219300414],[116,161,71,0.336917884085135],[116,161,72,0.3387896477807367],[116,161,73,0.34068357852327963],[116,161,74,0.3425928333303534],[116,161,75,0.3445044792744706],[116,161,76,0.3464002612874977],[116,161,77,0.34825742921956965],[116,161,78,0.3487939349870204],[116,161,79,0.34708864068411954],[116,162,64,0.3248104459790155],[116,162,65,0.3267858049056961],[116,162,66,0.32863975192389105],[116,162,67,0.33039747111491735],[116,162,68,0.3320931506482075],[116,162,69,0.3337570375670748],[116,162,70,0.3354112306333497],[116,162,71,0.33707000263138537],[116,162,72,0.3387402353882333],[116,162,73,0.34042191877622235],[116,162,74,0.34210871391889647],[116,162,75,0.3437885807279424],[116,162,76,0.34544446981195087],[116,162,77,0.34705507871878977],[116,162,78,0.3477439880720174],[116,162,79,0.3459520732318198],[116,163,64,0.3257938818087611],[116,163,65,0.32762327488617765],[116,163,66,0.3293227515261338],[116,163,67,0.33092133342704466],[116,163,68,0.33245319956179137],[116,163,69,0.33394599327236085],[116,163,70,0.3354199342290916],[116,163,71,0.3368881270660079],[116,163,72,0.33835690966523896],[116,163,73,0.3398262689227619],[116,163,74,0.34129032444981877],[116,163,75,0.34273788056343474],[116,163,76,0.34415304682452114],[116,163,77,0.34551592729434355],[116,163,78,0.3463264019857047],[116,163,79,0.3444524266935872],[116,164,64,0.32644094738572493],[116,164,65,0.32812483153703625],[116,164,66,0.3296701115771876],[116,164,67,0.33110952514990677],[116,164,68,0.3324771685961143],[116,164,69,0.3337980470961627],[116,164,70,0.33509046736873405],[116,164,71,0.3363663350663212],[116,164,72,0.33763141926783385],[116,164,73,0.3388856874892096],[116,164,74,0.34012371188394713],[116,164,75,0.34133514719795943],[116,164,76,0.34250528094106497],[116,164,77,0.34361565614206246],[116,164,78,0.34457849681223607],[116,164,79,0.3426312274205132],[116,165,64,0.32673190275140906],[116,165,65,0.3282681255166201],[116,165,66,0.32965672222686254],[116,165,67,0.3309340368510777],[116,165,68,0.33213399683117206],[116,165,69,0.33327892467116255],[116,165,70,0.33438519429888147],[116,165,71,0.33546351522958606],[116,165,72,0.33651911157601716],[116,165,73,0.33755197444246254],[116,165,74,0.33855718858981404],[116,165,75,0.33952533414486225],[116,165,76,0.34044296401820423],[116,165,77,0.34129315759245193],[116,165,78,0.34205615114719523],[116,165,79,0.34056555297226376],[116,166,64,0.32664326973732016],[116,166,65,0.3280264882915548],[116,166,66,0.32925269002993707],[116,166,67,0.33036166121034877],[116,166,68,0.33138706873019963],[116,166,69,0.3323485586478598],[116,166,70,0.33326061495358916],[116,166,71,0.33413282346381235],[116,166,72,0.3349699599303773],[116,166,73,0.3357721545429383],[116,166,74,0.3365351339356429],[116,166,75,0.3372505416890988],[116,166,76,0.3379063382026471],[116,166,77,0.3384872807016461],[116,166,78,0.33897548404106614],[116,166,79,0.3383302428368724],[116,167,64,0.32615940953270245],[116,167,65,0.32738180079915374],[116,167,66,0.3284374191135891],[116,167,67,0.32936926422792295],[116,167,68,0.3302106519142433],[116,167,69,0.3309786215711002],[116,167,70,0.33168587889739043],[116,167,71,0.3323410282321145],[116,167,72,0.33294856165620035],[116,167,73,0.3335089279011488],[116,167,74,0.3340186824176632],[116,167,75,0.33447071983001214],[116,167,76,0.334854589878061],[116,167,77,0.33515689783011166],[116,167,78,0.3353617902372542],[116,167,79,0.33545152679526],[116,168,64,0.32527079800855174],[116,168,65,0.3263227418519428],[116,168,66,0.3271978285468856],[116,168,67,0.3279419733924639],[116,168,68,0.3285880574012091],[116,168,69,0.3291506547395433],[116,168,70,0.3296408757041604],[116,168,71,0.33006655275964],[116,168,72,0.33043212075081274],[116,168,73,0.33073858095451353],[116,168,74,0.33098355058973394],[116,168,75,0.33116139926943183],[116,168,76,0.3312634737443973],[116,168,77,0.33127841216108794],[116,168,78,0.3311925489326159],[116,168,79,0.33099041120659733],[116,169,64,0.3239721191279439],[116,169,65,0.32484284669058283],[116,169,66,0.3255263733922973],[116,169,67,0.3260711637959331],[116,169,68,0.32650959291998816],[116,169,69,0.32685398689730233],[116,169,70,0.32711411418561065],[116,169,71,0.32729730785405825],[116,169,72,0.3274082260420549],[116,169,73,0.3274487010819058],[116,169,74,0.3274176791978075],[116,169,75,0.3273112525482819],[116,169,76,0.32712278523575766],[116,169,77,0.32684313476731036],[116,169,78,0.3264609703160238],[116,169,79,0.32596318900459803],[116,170,64,0.3222602465889133],[116,170,65,0.3229384530057765],[116,170,66,0.32341895346361776],[116,170,67,0.32375233277169263],[116,170,68,0.3239704062689261],[116,170,69,0.3240835456863378],[116,170,70,0.3241004986830807],[116,170,71,0.3240284279644282],[116,170,72,0.3238725408215583],[116,170,73,0.32363581308905776],[116,170,74,0.3233188097560411],[116,170,75,0.32291960430988326],[116,170,76,0.32243379873601397],[116,170,77,0.3218546459446107],[116,170,78,0.32117327624692543],[116,170,79,0.320379029362033],[116,171,64,0.32013211230791583],[116,171,65,0.32060653307580866],[116,171,66,0.32087270848235666],[116,171,67,0.32098286179955315],[116,171,68,0.32096821752051086],[116,171,69,0.320837560727397],[116,171,70,0.32059900136494174],[116,171,71,0.3202599095044741],[116,171,72,0.31982640307205334],[116,171,73,0.31930293678672206],[116,171,74,0.3186919948983132],[116,171,75,0.3179938901441861],[116,171,76,0.3172066711747206],[116,171,77,0.31632614053004215],[116,171,78,0.3153459850869235],[116,171,79,0.31425802073692444],[116,172,64,0.317582460214549],[116,172,65,0.3178424105285361],[116,172,66,0.31788369818690687],[116,172,67,0.31775966428419455],[116,172,68,0.3175009387378626],[116,172,69,0.317115157062498],[116,172,70,0.31661022933917166],[116,172,71,0.3159941503360874],[116,172,72,0.31527433528068416],[116,172,73,0.314457064759509],[116,172,74,0.3135470417183541],[116,172,75,0.31254706335007565],[116,172,76,0.3114578104720739],[116,172,77,0.3102777568113836],[116,172,78,0.30900320043447077],[116,172,79,0.3076284193830856],[116,173,64,0.314601483687546],[116,173,65,0.31463736009530074],[116,173,66,0.3144444658073969],[116,173,67,0.3140767176723914],[116,173,68,0.31356417972850337],[116,173,69,0.31291383755332525],[116,173,70,0.31213388525414687],[116,173,71,0.3112333891750843],[116,173,72,0.3102214626997954],[116,173,73,0.309106559296514],[116,173,74,0.30789588718891103],[116,173,75,0.30659494883427174],[116,173,76,0.30520720818719677],[116,173,77,0.3037338885243826],[116,173,78,0.30217390340590344],[116,173,79,0.30052392315289844],[116,174,64,0.31117234481869527],[116,174,65,0.3109760885800117],[116,174,66,0.31054148317469893],[116,174,67,0.30992247823031494],[116,174,68,0.3091486382175138],[116,174,69,0.3082268526879847],[116,174,70,0.3071661199209456],[116,174,71,0.3059770435444015],[116,174,72,0.3046708387833738],[116,174,73,0.303258467325715],[116,174,74,0.3017499046258253],[116,174,75,0.30015354324566307],[116,174,76,0.29847573560933544],[116,174,77,0.2967204793243076],[116,174,78,0.29488924800091965],[116,174,79,0.29298097028469855],[116,175,64,0.3072819380694645],[116,175,65,0.30684728348750734],[116,175,66,0.30616540550865484],[116,175,67,0.30528974931508446],[116,175,68,0.3042494752518489],[116,175,69,0.30305196464264494],[116,175,70,0.30170755789857384],[116,175,71,0.3002288647069516],[116,175,72,0.2986295959144504],[116,175,73,0.29692353565511403],[116,175,74,0.2951236580023322],[116,175,75,0.29324139218213224],[116,175,76,0.29128604014033854],[116,175,77,0.28926435001043466],[116,175,78,0.28718024878456544],[116,175,79,0.2850347372494622],[116,176,64,0.3029635999404415],[116,176,65,0.3022857929194514],[116,176,66,0.30135249358391064],[116,176,67,0.3002160719833297],[116,176,68,0.29890535960314674],[116,176,69,0.29742879698136254],[116,176,70,0.29579857917146296],[116,176,71,0.29402976282396487],[116,176,72,0.2921389204007937],[116,176,73,0.2901429472227611],[116,176,74,0.2880580261005],[116,176,75,0.285898754035327],[116,176,76,0.28367743520863586],[116,176,77,0.28140354420892244],[116,176,78,0.27908336317679],[116,176,79,0.27671979628293125],[116,177,64,0.29826404985909677],[116,177,65,0.29734010742182887],[116,177,66,0.29615290547844375],[116,177,67,0.2947531486151607],[116,177,68,0.29316938855327634],[116,177,69,0.2914116512291663],[116,177,70,0.2894944534944512],[116,177,71,0.2874356938748921],[116,177,72,0.2852551286963023],[116,177,73,0.2829730142422443],[116,177,74,0.280608920166862],[116,177,75,0.278180719099401],[116,177,76,0.27570375708532274],[116,177,77,0.2731902092149201],[116,177,78,0.27064862449657456],[116,177,79,0.2680836637411066],[116,178,64,0.2932304875331122],[116,178,65,0.2920595604679385],[116,178,66,0.29061806894334963],[116,178,67,0.28895447102741423],[116,178,68,0.28709706839553845],[116,178,69,0.285057946985121],[116,178,70,0.2828543556224288],[116,178,71,0.2805073711845127],[116,178,72,0.27804019924015566],[116,178,73,0.2754766541963983],[116,178,74,0.27283982463819956],[116,178,75,0.27015092923892975],[116,178,76,0.2674283683038348],[116,178,77,0.26468697569001914],[116,178,78,0.26193747552763486],[116,178,79,0.25918614785090505],[116,179,64,0.28790999063220574],[116,179,65,0.28649363986618626],[116,179,66,0.28479988896675834],[116,179,67,0.2828744040936743],[116,179,68,0.28074525250447485],[116,179,69,0.2784269925911749],[116,179,70,0.2759399474243195],[116,179,71,0.2733086393382669],[116,179,72,0.27055992073287105],[116,179,73,0.2677212978109521],[116,179,74,0.2648194533845646],[116,179,75,0.2618789745505536],[116,179,76,0.25892129069684516],[116,179,77,0.25596382695819037],[116,179,78,0.2530193778966454],[116,179,79,0.2500957058411392],[116,180,64,0.28234890062653895],[116,180,65,0.2806912884504582],[116,180,66,0.27874994780751083],[116,180,67,0.27656726676351934],[116,180,68,0.2741710836783642],[116,180,69,0.27157876942923764],[116,180,70,0.268813985854894],[116,180,71,0.2659048893044435],[116,180,72,0.2628821001973904],[116,180,73,0.2597768786060595],[116,180,74,0.2566195124109198],[116,180,75,0.2534379242250051],[116,180,76,0.2502565029220677],[116,180,77,0.24709516523723193],[116,180,78,0.24396865254190828],[116,180,79,0.24088606753001285],[116,181,64,0.27659219635721133],[116,181,65,0.2747001936056537],[116,181,66,0.27251869703791287],[116,181,67,0.2700864100133964],[116,181,68,0.26743094028722825],[116,181,69,0.26457272939079085],[116,181,70,0.2615389563540857],[116,181,71,0.2583615143740976],[116,181,72,0.2550748304942377],[116,181,73,0.2517139037702929],[116,181,74,0.2483125688546225],[116,181,75,0.2449019915556248],[116,181,76,0.24150940254682085],[116,181,77,0.23815707501236683],[116,181,78,0.23486155162675026],[116,181,79,0.23163312587945023],[116,182,64,0.2706828548908116],[116,182,65,0.26856606515539017],[116,182,66,0.26615464110820297],[116,182,67,0.2634832912341399],[116,182,68,0.2605793857314907],[116,182,69,0.2574666050359908],[116,182,70,0.2541757312172543],[116,182,71,0.25074240650525925],[116,182,72,0.2472048169381501],[116,182,73,0.24360160608332665],[116,182,74,0.23997002610134938],[116,182,75,0.23634433302883678],[116,182,76,0.23275443275458707],[116,182,77,0.22922478375586078],[116,182,78,0.22577356225259368],[116,182,79,0.2224120950300465],[116,183,64,0.2646611991871171],[116,183,65,0.2623319011141561],[116,183,66,0.25970351191980723],[116,183,67,0.25680654453431034],[116,183,68,0.25366812069081296],[116,183,69,0.2503152319346353],[116,183,70,0.24678225245720972],[116,183,71,0.243108492638308],[116,183,72,0.2393357626477509],[116,183,73,0.23550617660238007],[116,183,74,0.23166020483622443],[116,183,75,0.22783498143194109],[116,183,76,0.22406287374260753],[116,183,77,0.22037032020815828],[116,183,78,0.21677694234380368],[116,183,79,0.21329493635255958],[116,184,64,0.25856423208782164],[116,184,65,0.25603724078331885],[116,184,66,0.2532074338710654],[116,184,67,0.2501010464152544],[116,184,68,0.24674493762012495],[116,184,69,0.24316938266054045],[116,184,70,0.23941223866077999],[116,184,71,0.2355163105353007],[116,184,72,0.231526812250817],[116,184,73,0.22748907782451247],[116,184,74,0.22344652985076893],[116,184,75,0.2194389129248693],[116,184,76,0.21550079889858856],[116,184,77,0.21166037046289507],[116,184,78,0.20793848911086849],[116,184,79,0.20434805309344403],[116,185,64,0.25242495611412696],[116,185,65,0.24971740464889663],[116,185,66,0.246704078817414],[116,185,67,0.2434069762526344],[116,185,68,0.23985267692999368],[116,185,69,0.23607461189336837],[116,185,70,0.232113915328822],[116,185,71,0.228016623687101],[116,185,72,0.22383105356496805],[116,185,73,0.2196054370415272],[116,185,74,0.21538582243932405],[116,185,75,0.2112142480446661],[116,185,76,0.20712719587626588],[116,185,77,0.20315433213953876],[116,185,78,0.19931754054948053],[116,185,79,0.19563025425214794],[116,186,64,0.24627167854198234],[116,186,65,0.24340272051871045],[116,186,66,0.24022581036782942],[116,186,67,0.2367588709999439],[116,186,68,0.23302818427107627],[116,186,69,0.2290701120675725],[116,186,70,0.22492876817863497],[116,186,71,0.22065307482813817],[116,186,72,0.21629407687696003],[116,186,73,0.21190251961628223],[116,186,74,0.20752669824044967],[116,186,75,0.20321058664402045],[116,186,76,0.1989922527334393],[116,186,77,0.19490256698287745],[116,186,78,0.19096421050012363],[116,186,79,0.1871909884061647],[116,187,64,0.24012730120755998],[116,187,65,0.2371177353193471],[116,187,66,0.2337988169225938],[116,187,67,0.23018467351417832],[116,187,68,0.22630126832939465],[116,187,69,0.22218757899881045],[116,187,70,0.21789031888366217],[116,187,71,0.21346087760142413],[116,187,72,0.20895259145503536],[116,187,73,0.204418281930441],[116,187,74,0.199908070411281],[116,187,75,0.19546747680990595],[116,187,76,0.19113580935381608],[116,187,77,0.18694485229968652],[116,187,78,0.18291785787734693],[116,187,79,0.17906884829760317],[116,188,64,0.23400859447985067],[116,188,65,0.23088041195688552],[116,188,66,0.22744223284174458],[116,188,67,0.22370477388991736],[116,188,68,0.2196936585281476],[116,188,69,0.2154500869114778],[116,188,70,0.2110229227246819],[116,188,71,0.2064655459235579],[116,188,72,0.20183309894543167],[116,188,73,0.19718000378149686],[116,188,74,0.19255775806321196],[116,188,75,0.18801301786252683],[116,188,76,0.1835859744427217],[116,188,77,0.17930903172673188],[116,188,78,0.17520579077697804],[116,188,79,0.17129034710914798],[116,189,64,0.22792545482483034],[116,189,65,0.22470131063242704],[116,189,66,0.22116724712176608],[116,189,67,0.2173310431785216],[116,189,68,0.2132179620256178],[116,189,69,0.20887097228983464],[116,189,70,0.20434058763228163],[116,189,71,0.19968166061373144],[116,189,72,0.19495062332899385],[116,189,73,0.19020300004408913],[116,189,74,0.18549119993832902],[116,189,75,0.18086259760096476],[116,189,76,0.17635790846905866],[116,189,77,0.17200986592329146],[116,189,78,0.16784220628549856],[116,189,79,0.16386896749006197],[116,190,64,0.2218801453751195],[116,190,65,0.2185827539927058],[116,190,66,0.2149761989487806],[116,190,67,0.21106585886248638],[116,190,68,0.2068766193959892],[116,190,69,0.20245272597802963],[116,190,70,0.19784581411074856],[116,190,71,0.19311167287060124],[116,190,72,0.18830749714521028],[116,190,73,0.18348941145539177],[116,190,74,0.17871027336585488],[116,190,75,0.17401776403822194],[116,190,76,0.16945277301968723],[116,190,77,0.1650480838933826],[116,190,78,0.16082736694632188],[116,190,79,0.15680448454181098],[116,191,64,0.21586651891063988],[116,191,65,0.21251797548770557],[116,191,66,0.20886165948994465],[116,191,67,0.20490112145152267],[116,191,68,0.20066085838083256],[116,191,69,0.1961858929614467],[116,191,70,0.1915284555488102],[116,191,71,0.18674474420651135],[116,191,72,0.1818922037290382],[116,191,73,0.1770270744368073],[116,191,74,0.17220221860647805],[116,191,75,0.1674652319546184],[116,191,76,0.16285684713748047],[116,191,77,0.15840963576752437],[116,191,78,0.1541470149822895],[116,191,79,0.15008256413737778],[116,192,64,0.2098692226509421],[116,192,65,0.20649025030274862],[116,192,66,0.20280549928245734],[116,192,67,0.1988172615681226],[116,192,68,0.19454964510511677],[116,192,69,0.19004797927464773],[116,192,70,0.1853645984443613],[116,192,71,0.1805556224813071],[116,192,72,0.17567827525188245],[116,192,73,0.1707884699255139],[116,192,74,0.1659386687709336],[116,192,75,0.16117602469572526],[116,192,76,0.15654081133147296],[116,192,77,0.15206514801182106],[116,192,78,0.14777202553287408],[116,192,79,0.1436746381287131],[116,193,64,0.20386288425777055],[116,193,65,0.20047200823109157],[116,193,66,0.19677794058065473],[116,193,67,0.1927822368953376],[116,193,68,0.18850863216195426],[116,193,69,0.1840023654988147],[116,193,70,0.1793154620973816],[116,193,71,0.17450355371677398],[116,193,72,0.16962324641087181],[116,193,73,0.16472975125831704],[116,193,74,0.15987478558613624],[116,193,75,0.15510475174761984],[116,193,76,0.15045920007507416],[116,193,77,0.14596958218153716],[116,193,78,0.14165830033627563],[116,193,79,0.13753805819083748],[116,194,64,0.1978112784470457],[116,194,65,0.19442392785468962],[116,194,66,0.19073659402615753],[116,194,67,0.18675051836828074],[116,194,68,0.182489102984905],[116,194,69,0.17799722633400442],[116,194,70,0.1733263173576669],[116,194,71,0.16853122941747525],[116,194,72,0.1636676636699527],[116,194,73,0.1587898512264394],[116,194,74,0.15394850137713695],[116,194,75,0.1491890227376722],[116,194,76,0.14455002374551398],[116,194,77,0.1400620984962399],[116,194,78,0.13574690346970586],[116,194,79,0.13161653025749465],[116,195,64,0.19166700556138794],[116,195,65,0.1882946171602149],[116,195,66,0.184626153785754],[116,195,67,0.1806628072110549],[116,195,68,0.17642772001031662],[116,195,69,0.17196532526564376],[116,195,70,0.1673263477580806],[116,195,71,0.1625647371744549],[116,195,72,0.15773514999276167],[116,195,73,0.15289068601951775],[116,195,74,0.14808088664712465],[116,195,75,0.1433500014863995],[116,195,76,0.13873552960724184],[116,195,77,0.13426704119211882],[116,195,78,0.12996528497633061],[116,195,79,0.1258415864196238],[116,196,64,0.182618072594041],[116,196,65,0.18205070710701235],[116,196,66,0.178411907684637],[116,196,67,0.17448289110886345],[116,196,68,0.17028665619628358],[116,196,69,0.1658672125800593],[116,196,70,0.1612745670114963],[116,196,71,0.1565617201294362],[116,196,72,0.1517822099408376],[116,196,73,0.14698790598683914],[116,196,74,0.14222706105060073],[116,196,75,0.1375426268585356],[116,196,76,0.13297083981286476],[116,196,77,0.12854008237394363],[116,196,78,0.12427002528906803],[116,196,79,0.1201710554441956],[116,197,64,0.17280700927580142],[116,197,65,0.17411391329230025],[116,197,66,0.17209884014776283],[116,197,67,0.16821833718501705],[116,197,68,0.16407582936582218],[116,197,69,0.1597148628168913],[116,197,70,0.15518463763859422],[116,197,71,0.1505370805158945],[116,197,72,0.1458244581807356],[116,197,73,0.1410972371856587],[116,197,74,0.1364021966181658],[116,197,75,0.13178079998944775],[116,197,76,0.12726783212656329],[116,197,77,0.12289030648715685],[116,197,78,0.1186666479037673],[116,197,79,0.11460615535438495],[116,198,64,0.165616033345276],[116,198,65,0.16462783615612156],[116,198,66,0.1654794850407728],[116,198,67,0.16187305734864837],[116,198,68,0.15780101049670298],[116,198,69,0.15351560702917263],[116,198,70,0.1490650883094592],[116,198,71,0.144500115474847],[116,198,72,0.13987146582080703],[116,198,73,0.13522797020159635],[116,198,74,0.13061469782230947],[116,198,75,0.12607139441179901],[116,198,76,0.1216311793719842],[116,198,77,0.11731950710004002],[116,198,78,0.11315339727920244],[116,198,79,0.10914093853497037],[116,199,64,0.16519986159537883],[116,199,65,0.16402573726624742],[116,199,66,0.16286320506147778],[116,199,67,0.16044422828898985],[116,199,68,0.15439002449032774],[116,199,69,0.14825066183445593],[116,199,70,0.14291634481589796],[116,199,71,0.1384513840512175],[116,199,72,0.1339235275981971],[116,199,73,0.12937970040521313],[116,199,74,0.1248629946804806],[116,199,75,0.12041118665003793],[116,199,76,0.11605550483962856],[116,199,77,0.11181965482400841],[116,199,78,0.10771910499990743],[116,199,79,0.1037606375535766],[116,200,64,0.16476756970297463],[116,200,65,0.1633909676480101],[116,200,66,0.1620198464579392],[116,200,67,0.1606428556047387],[116,200,68,0.1565336491216178],[116,200,69,0.15031433229994415],[116,200,70,0.14405431611924482],[116,200,71,0.13779429673431018],[116,200,72,0.13157477533063344],[116,200,73,0.12543418459798064],[116,200,74,0.11940724857826109],[116,200,75,0.11478968475381941],[116,200,76,0.11052826909626647],[116,200,77,0.10637582241329706],[116,200,78,0.10234613147662251],[116,200,79,0.09844460066414382],[116,201,64,0.16434311135615337],[116,201,65,0.1627469800297625],[116,201,66,0.1611513038966924],[116,201,67,0.1595423410000519],[116,201,68,0.15789069130132094],[116,201,69,0.1522047573391486],[116,201,70,0.14587849752391271],[116,201,71,0.13955429592493546],[116,201,72,0.1332704359744124],[116,201,73,0.1270629589709785],[116,201,74,0.12096414180265425],[116,201,75,0.11500120262020372],[116,201,76,0.10919523914287362],[116,201,77,0.1035604039265819],[116,201,78,0.09810332057284113],[116,201,79,0.0931693200467504],[116,202,64,0.16394881813100307],[116,202,65,0.16211617980065568],[116,202,66,0.16028019234383997],[116,202,67,0.15842423300734945],[116,202,68,0.15651784715087522],[116,202,69,0.1539091680933807],[116,202,70,0.14752564109587274],[116,202,71,0.14114543348347833],[116,202,72,0.13480434333089567],[116,202,73,0.12853574632284734],[116,202,74,0.12236920864042866],[116,202,75,0.11632931493188174],[116,202,76,0.11043471566476529],[116,202,77,0.10469739782627013],[116,202,78,0.09912218260882233],[116,202,79,0.09370645339071762],[116,203,64,0.16360400696549404],[116,203,65,0.16151844505263357],[116,203,66,0.15942700461296844],[116,203,67,0.1573097336043551],[116,203,68,0.15513489946522285],[116,203,69,0.152861067040832],[116,203,70,0.1489841092869936],[116,203,71,0.14255555257754923],[116,203,72,0.1361637870994903],[116,203,73,0.12983926173240432],[116,203,74,0.12360858055735736],[116,203,75,0.11749346851150418],[116,203,76,0.1115099410247977],[116,203,77,0.10566768120498798],[116,203,78,0.09996962783283399],[116,203,79,0.0944117771276093],[116,204,64,0.16332372412894464],[116,204,65,0.16096978095241268],[116,204,66,0.15860866382998062],[116,204,67,0.15621669639375163],[116,204,68,0.15376065581777756],[116,204,69,0.15120045717219008],[116,204,70,0.1484956197504989],[116,204,71,0.14377608232517308],[116,204,72,0.13733986344242388],[116,204,73,0.13096434584434294],[116,204,74,0.12467293279365124],[116,204,75,0.11848427331694253],[116,204,76,0.11241156731278766],[116,204,77,0.10646206023018227],[116,204,78,0.10063673017171003],[116,204,79,0.09493017000267154],[116,205,64,0.16311762669109375],[116,205,65,0.1604811093364801],[116,205,66,0.15783720697635134],[116,205,67,0.15515818475688886],[116,205,68,0.15240913203665085],[116,205,69,0.14955137632087517],[116,205,70,0.14654678332189036],[116,205,71,0.143359116015391],[116,205,72,0.13832975854736065],[116,205,73,0.13190844646745792],[116,205,74,0.12556016174375167],[116,205,75,0.11930026537254632],[116,205,76,0.11313896069735457],[116,205,77,0.10708091658703935],[116,205,78,0.1011250625040016],[116,205,79,0.09526455763787738],[116,206,64,0.16298900265021513],[116,206,65,0.1600571945727897],[116,206,66,0.1571186004131565],[116,206,67,0.15414115579660542],[116,206,68,0.15108808198891738],[116,206,69,0.14792215216660684],[116,206,70,0.14460769788232494],[116,206,71,0.14111164986960062],[116,206,72,0.13740443896102555],[116,206,73,0.1326780586060927],[116,206,74,0.12627804249160854],[116,206,75,0.11995077669923981],[116,206,76,0.11370327400348271],[116,206,77,0.10753746859425678],[116,206,78,0.10145012823709054],[116,206,79,0.0954329174851866],[116,207,64,0.16293560553713035],[116,207,65,0.15969691952816503],[116,207,66,0.15645257790676245],[116,207,67,0.153165992161435],[116,207,68,0.14979836262924762],[116,207,69,0.14631391601343166],[116,207,70,0.1426795449485095],[116,207,71,0.1388655067301361],[116,207,72,0.1348460588653981],[116,207,73,0.13059998013811822],[116,207,74,0.12611097502628354],[116,207,75,0.1204539628595977],[116,207,76,0.11412471121975407],[116,207,77,0.10785423012895368],[116,207,78,0.10163699525750747],[116,207,79,0.0954630921753044],[116,208,64,0.1629558322846413],[116,208,65,0.15939828204611012],[116,208,66,0.15583689708721218],[116,208,67,0.1522305055729082],[116,208,68,0.14853819704311422],[116,208,69,0.14472564484110823],[116,208,70,0.14076236305232823],[116,208,71,0.13662204398281966],[116,208,72,0.1322829113031421],[116,208,73,0.12772798205550687],[116,208,74,0.12294523602302505],[116,208,75,0.11792769109916987],[116,208,76,0.11267338343345884],[116,208,77,0.10718525126520867],[116,208,78,0.1014709214912186],[116,208,79,0.09536033095338442],[116,209,64,0.16304640796597397],[116,209,65,0.15915791157522893],[116,209,66,0.15526833416630315],[116,209,67,0.15133200633029315],[116,209,68,0.14730588549536597],[116,209,69,0.1431570691999167],[116,209,70,0.1388577117011975],[116,209,71,0.1343849867815456],[116,209,72,0.12972114568703558],[116,209,73,0.12485350876424635],[116,209,74,0.11977438997499049],[116,209,75,0.11448095356895342],[116,209,76,0.10897500229175763],[116,209,77,0.1032626966005664],[116,209,78,0.09735420445158688],[116,209,79,0.0912632813109874],[116,210,64,0.16320091478679094],[116,210,65,0.15897003390271483],[116,210,66,0.15474195437015142],[116,210,67,0.1504667308571639],[116,210,68,0.14609923154573626],[116,210,69,0.14160793756910547],[116,210,70,0.136967617769298],[116,210,71,0.13215890957479054],[116,210,72,0.1271680735607131],[116,210,73,0.1219867077871596],[116,210,74,0.1166114217858448],[116,210,75,0.11104347012460447],[116,210,76,0.10528834553474167],[116,210,77,0.09935533163790694],[116,210,78,0.09325701535799832],[116,210,79,0.08700875914712151],[116,211,64,0.16340971376070618],[116,211,65,0.1588262847756496],[116,211,66,0.1542508180615971],[116,211,67,0.14962943858765304],[116,211,68,0.1449150274722985],[116,211,69,0.1400773895809228],[116,211,70,0.13509383767284416],[116,211,71,0.12994839049454399],[116,211,72,0.1246312206745415],[116,211,73,0.11913808942661494],[116,211,74,0.11346976862108021],[116,211,75,0.10763145080098936],[116,211,76,0.10163214773234998],[116,211,77,0.09548407808501995],[116,211,78,0.08920204484518438],[116,211,79,0.08280280305917838],[116,212,64,0.16366002212128897],[116,212,65,0.15871568022084423],[116,212,66,0.15378584491194733],[116,212,67,0.14881316888442125],[116,212,68,0.14374870232247294],[116,212,69,0.13856349488949576],[116,212,70,0.13323728845519073],[116,212,71,0.12775733801463188],[116,212,72,0.1221175546509073],[116,212,73,0.11631766295026358],[116,212,74,0.1103623741074744],[116,212,75,0.10426057593346168],[116,212,76,0.09802454094547948],[116,212,77,0.09166915368297798],[116,212,78,0.08521115835140793],[116,212,79,0.07866842784990971],[116,213,64,0.16393614875904614],[116,213,65,0.15862474575855393],[116,213,66,0.1533358382313394],[116,213,67,0.14800916002069753],[116,213,68,0.14259413455517705],[116,213,69,0.13706295958526388],[116,213,70,0.1313976496238455],[116,213,71,0.1255884916650084],[116,213,72,0.11963288997243623],[116,213,73,0.11353425321269675],[116,213,74,0.10730092582728945],[116,213,75,0.10094516546858139],[116,213,76,0.09448216824899475],[116,213,77,0.0879291434708385],[116,213,78,0.08130443941825759],[116,213,79,0.07462672170142805],[116,214,64,0.1642198901068508],[116,214,65,0.15853780684200072],[116,214,66,0.1528876717053828],[116,214,67,0.14720693239931523],[116,214,68,0.14144363138090219],[116,214,69,0.13557100220175305],[116,214,70,0.12957313773046286],[116,214,71,0.12344309874037968],[116,214,72,0.11718147218094783],[116,214,73,0.11079499955190998],[116,214,74,0.10429527789853744],[116,214,75,0.0976975358346901],[116,214,76,0.09101948688115258],[116,214,77,0.08428026228054802],[116,214,78,0.07749942531982115],[116,214,79,0.07069606905566944],[116,215,64,0.1644910890242879],[116,215,65,0.15843744298408755],[116,215,66,0.1524266409177524],[116,215,67,0.14639453831668697],[116,215,68,0.14028807704497837],[116,215,69,0.13408140150361544],[116,215,70,0.12776045583073387],[116,215,71,0.12132076909091512],[116,215,72,0.11476574332759577],[116,215,73,0.10810503895490108],[116,215,74,0.10135306059032725],[116,215,75,0.09452754627664868],[116,215,76,0.08764826287957499],[116,215,77,0.08073581027855202],[116,215,78,0.07381053679469167],[116,215,79,0.06689156812133466],[116,216,64,0.16472835934881225],[116,216,65,0.15830510815326976],[116,216,66,0.15193698216224416],[116,216,67,0.14555898070715603],[116,216,68,0.13911725243084683],[116,216,69,0.1325867183807325],[116,216,70,0.12595492010129236],[116,216,71,0.1192195102271998],[116,216,72,0.11238629086288415],[116,216,73,0.10546737563835737],[116,216,74,0.0984794790767164],[116,216,75,0.09144233671554151],[116,216,76,0.08437725922172541],[116,216,77,0.07730582352892261],[116,216,78,0.07024870381219263],[116,216,79,0.06322464489502302],[116,217,64,0.1649099788872669],[116,217,65,0.1581219201302197],[116,217,66,0.1514025611615713],[116,217,67,0.1446868034214112],[116,217,68,0.13792032848330665],[116,217,69,0.13107869430141264],[116,217,70,0.12415076602411651],[116,217,71,0.11713594510986697],[116,217,72,0.11004198229815335],[116,217,73,0.10288293933739588],[116,217,74,0.09567730358297773],[116,217,75,0.08844625934736686],[116,217,76,0.08121211964294921],[116,217,77,0.07399692170895315],[116,217,78,0.06682118946045669],[116,217,79,0.059702865739694244],[116,218,64,0.16501495371332478],[116,218,65,0.1578696216137498],[116,218,66,0.15080773441187215],[116,218,67,0.143764855699551],[116,218,68,0.1366865360641806],[116,218,69,0.12954882889599859],[116,218,70,0.12234163667296563],[116,218,71,0.11506571512404143],[116,218,72,0.10773028810506607],[116,218,73,0.10035083473498327],[116,218,74,0.09294705332191641],[116,218,75,0.0855410063417518],[116,218,76,0.07815545045458788],[116,218,77,0.07081235525907152],[116,218,78,0.06353161419538456],[116,218,79,0.05632995071449184],[116,219,64,0.16502425671263146],[116,219,65,0.15753171594632112],[116,219,66,0.15013838595940904],[116,219,67,0.1427812335928481],[116,219,68,0.13540601495262655],[116,219,69,0.12798913934844924],[116,219,70,0.12052125574913897],[116,219,71,0.11300407085774122],[116,219,72,0.10544779544454552],[116,219,73,0.09786878459495309],[116,219,74,0.09028737675283795],[116,219,75,0.0827259361405356],[116,219,76,0.07520710282639553],[116,219,77,0.06775225439259244],[116,219,78,0.06038018283407197],[116,219,79,0.05310598999434939],[116,220,64,0.1649222433754017],[116,220,65,0.15709478039396332],[116,220,66,0.14938314248694548],[116,220,67,0.14172640116604776],[116,220,68,0.13407084478717543],[116,220,69,0.12639310436555237],[116,220,70,0.1186842881131227],[116,220,71,0.11094665340965912],[116,220,72,0.10319091542949001],[116,220,73,0.09543376928043183],[116,220,74,0.0876956308199632],[116,220,75,0.07999860098471806],[116,220,76,0.07236465812962796],[116,220,77,0.06481408252540115],[116,220,78,0.05736411681220788],[116,220,79,0.050027865853957264],[116,221,64,0.16469824787366683],[116,221,65,0.15654995996026802],[116,221,66,0.14853476963943835],[116,221,67,0.14059449437168642],[116,221,68,0.1326762608140138],[116,221,69,0.12475679556876916],[116,221,70,0.11682739064189832],[116,221,71,0.10889046904258147],[116,221,72,0.100956786723642],[116,221,73,0.0930428654441745],[116,221,74,0.08516866193766251],[116,221,75,0.0773554784138317],[116,221,76,0.06962411905673077],[116,221,77,0.0619932968081139],[116,221,78,0.05447829434914674],[116,221,79,0.0470898828154241],[116,222,64,0.1643483624748722],[116,222,65,0.15589464473687986],[116,222,66,0.1475917525495787],[116,222,67,0.13938481052710203],[116,222,68,0.1312220573536919],[116,222,69,0.123080199209939],[116,222,70,0.11495045630641447],[116,222,71,0.1068350600716829],[116,222,72,0.09874437835979306],[116,222,73,0.09069428676533006],[116,222,74,0.0827037915843395],[116,222,75,0.0747929095817919],[116,222,76,0.06698080933802353],[116,222,77,0.059284218551081874],[116,222,78,0.051716101274327866],[116,222,79,0.04428460866987004],[116,223,64,0.16387740333211545],[116,223,65,0.15513433379068567],[116,223,66,0.14656006353051082],[116,223,67,0.1381034863406757],[116,223,68,0.12971418192354375],[116,223,69,0.12136873114644786],[116,223,70,0.11305805440726951],[116,223,71,0.10478387492938714],[116,223,72,0.0965557947214232],[116,223,73,0.08838862967590971],[116,223,74,0.08030000944260139],[116,223,75,0.07230824731516387],[116,223,76,0.06443048496268809],[116,223,77,0.056681116423357256],[116,223,78,0.04907049536206749],[116,223,79,0.041603929177856526],[116,224,64,0.1633010656514292],[116,224,65,0.15428468855811503],[116,224,66,0.14545511988311965],[116,224,67,0.13676536742373965],[116,224,68,0.1281665229528939],[116,224,69,0.11963494802116263],[116,224,70,0.11116106992611692],[116,224,71,0.10274584037743363],[116,224,72,0.09439778566983625],[116,224,73,0.08613032706658003],[116,224,74,0.07795937707725485],[116,224,75,0.06990121690030197],[116,224,76,0.06197065987736805],[116,224,77,0.05417950537701729],[116,224,78,0.046535287095017974],[116,224,79,0.03904031932850255],[116,225,64,0.16264827116539177],[116,225,65,0.15337377865683074],[116,225,66,0.1443039347158303],[116,225,67,0.13539607218571384],[116,225,68,0.1266028939998197],[116,225,69,0.11790045757461666],[116,225,70,0.10927854494283984],[116,225,71,0.10073713883934884],[116,225,72,0.09228346481097476],[116,225,73,0.08392931298240962],[116,225,74,0.07568864517174864],[116,225,75,0.06757549262195864],[116,225,76,0.05960214917778339],[116,225,77,0.05177766429504414],[116,225,78,0.04410663982678027],[116,225,79,0.036588334089357244],[116,226,64,0.16196371073632398],[116,226,65,0.1524445229310406],[116,226,66,0.14314746359242053],[116,226,67,0.13403425293896837],[116,226,68,0.12505921731844474],[116,226,69,0.11619803096830707],[116,226,70,0.10743972503085296],[116,226,71,0.0987831937994576],[116,226,72,0.09023423887914424],[116,226,73,0.0818029013117117],[116,226,74,0.073501087344803],[116,226,75,0.06534049308469109],[116,226,76,0.05733083282393826],[116,226,77,0.04947837538132016],[116,226,78,0.041784792338351515],[116,226,79,0.034246321605732634],[116,227,64,0.1613114400285812],[116,227,65,0.1515589981046574],[116,227,66,0.14204555168202573],[116,227,67,0.13273716465569313],[116,227,68,0.12358973111238399],[116,227,69,0.11457846585673641],[116,227,70,0.10569158542159465],[116,227,71,0.09692684875584877],[116,227,72,0.08828860629307611],[116,227,73,0.07978514461718987],[116,227,74,0.07142633237921989],[116,227,75,0.0632215726683402],[116,227,76,0.05517806658073498],[116,227,77,0.04729939226576192],[116,227,78,0.03958440326620253],[116,227,79,0.032026449509485376],[116,228,64,0.16076732293861695],[116,228,65,0.15079424685594142],[116,228,66,0.14107582216428005],[116,228,67,0.13158255071703268],[116,228,68,0.12227192363118353],[116,228,69,0.11311863658703294],[116,228,70,0.1041100348897313],[116,228,71,0.09524269754014579],[116,228,72,0.08651949693957263],[116,228,73,0.07794696077464003],[116,228,74,0.06953294169468158],[116,228,75,0.06128459993293776],[116,228,76,0.05320670355395992],[116,228,77,0.04530025053660006],[116,228,78,0.037561416431080935],[116,228,79,0.029980830861292],[116,229,64,0.16039095367251463],[116,229,65,0.15021176255341231],[116,229,66,0.14030108043165884],[116,229,67,0.13063409235526455],[116,229,68,0.12117002771515199],[116,229,69,0.11188304085445276],[116,229,70,0.10275956233323341],[116,229,71,0.0937949425942319],[116,229,72,0.08499053351446706],[116,229,73,0.07635107711516194],[116,229,74,0.06788240697426667],[116,229,75,0.059589467417347816],[116,229,76,0.05147465508654433],[116,229,77,0.04353648700774674],[116,229,78,0.03576859879940958],[116,229,79,0.028159076193853584],[116,230,64,0.1602220735563149],[116,230,65,0.14985270317845023],[116,230,66,0.13976346042013843],[116,230,67,0.12993454032238122],[116,230,68,0.1203271381203309],[116,230,69,0.11091489766371299],[116,230,70,0.10168332180891693],[116,230,71,0.09262649717551082],[116,230,72,0.0837442132837091],[116,230,73,0.07503939178644728],[116,230,74,0.06651583123904493],[116,230,75,0.05817627237634984],[116,230,76,0.0500207883871461],[116,230,77,0.04204550419255983],[116,230,78,0.034241648255607965],[116,230,79,0.02659493997424517],[116,231,64,0.16028298610554806],[116,231,65,0.1497403039090437],[116,231,66,0.13948683041002563],[116,231,67,0.12950812205576195],[116,231,68,0.11976763112551819],[116,231,69,0.11023858584669255],[116,231,70,0.1009055919294923],[116,231,71,0.09176146342399003],[116,231,72,0.08280439879396624],[116,231,73,0.07403546765856793],[116,231,74,0.0654564135052108],[116,231,75,0.0570677772030309],[116,231,76,0.04886734566560081],[116,231,77,0.04084892952865625],[116,231,78,0.033001473229667504],[116,231,79,0.02530850040256896],[116,232,64,0.16058084430567168],[116,232,65,0.1498821612205101],[116,232,66,0.13947907139380397],[116,232,67,0.12936282375020614],[116,232,68,0.11949946277899844],[116,232,69,0.10986196682448333],[116,232,70,0.10043412732915444],[116,232,71,0.09120751276111182],[116,232,72,0.08217872371960153],[116,232,73,0.07334695670926324],[116,232,74,0.06471188170573898],[116,232,75,0.056271838164042166],[116,232,76,0.04802235364392104],[116,232,77,0.03995498874750726],[116,232,78,0.03205651159018322],[116,232,79,0.02430840455721329],[116,233,64,0.16110980765238989],[116,233,65,0.15027238569877308],[116,233,66,0.13973422491651588],[116,233,67,0.12949254397955617],[116,233,68,0.11951634217760887],[116,233,69,0.10977858777272079],[116,233,70,0.10026239814819832],[116,233,71,0.09095816439775595],[116,233,72,0.08186090949687672],[116,233,73,0.07296795047076916],[116,233,74,0.0642768694583876],[116,233,75,0.055783798107641634],[116,233,76,0.04748201926731745],[116,233,77,0.039360889470410665],[116,233,78,0.03140508523790713],[116,233,79,0.023594175772778864],[116,234,64,0.16185306753964596],[116,234,65,0.15089362220913452],[116,234,66,0.14023450910600938],[116,234,67,0.1298791176720309],[116,234,68,0.11979977868314261],[116,234,69,0.10996976421649257],[116,234,70,0.10037171670851423],[116,234,71,0.09099496129469627],[116,234,72,0.08183299228563796],[116,234,73,0.07288125629909459],[116,234,74,0.06413523668213408],[116,234,75,0.05558884340423278],[116,234,76,0.04723311214423694],[116,234,77,0.039055215835587034],[116,234,78,0.031037791481350586],[116,234,79,0.023158584604580708],[116,235,64,0.16278473940334912],[116,235,65,0.15171893588807803],[116,235,66,0.14095220143900178],[116,235,67,0.13049420907469994],[116,235,68,0.12032100181351017],[116,235,69,0.1104065409135167],[116,235,70,0.10073325038351104],[116,235,71,0.0912895427494317],[116,235,72,0.08206745962834398],[116,235,73,0.07306059905552799],[116,235,74,0.0642623338928701],[116,235,75,0.05566432520850327],[116,235,76,0.04725533407546216],[116,235,77,0.039020334794938126],[116,235,78,0.03093993211372781],[116,235,79,0.02299008457665875],[116,236,64,0.163871619854365],[116,236,65,0.1527135622554059],[116,236,66,0.1418513866223828],[116,236,67,0.13130107217802744],[116,236,68,0.12104275238171336],[116,236,69,0.11105152971856629],[116,236,70,0.10130991949777371],[116,236,71,0.09180561261184743],[116,236,72,0.08252929600123032],[116,236,73,0.07347274761145228],[116,236,74,0.0646272098271074],[116,236,75,0.05598204494741251],[116,236,76,0.04752367584545916],[116,236,77,0.03923481453121515],[116,236,78,0.03109398092299677],[116,236,79,0.023075313724298448],[116,237,64,0.16507478520904903],[116,237,65,0.15383649752755074],[116,237,66,0.14288954538435905],[116,237,67,0.13225615414163044],[116,237,68,0.12192092020560871],[116,237,69,0.11186059957814455],[116,237,70,0.10205815528216165],[116,237,71,0.0925007780857745],[116,237,72,0.08317791220271457],[116,237,73,0.07407954116659843],[116,237,74,0.0651947374847091],[116,237,75,0.05651047927953009],[116,237,76,0.04801073672649703],[116,237,77,0.03967583069793088],[116,237,78,0.03148206563183127],[116,237,79,0.02340163826076036],[116,238,64,0.16634648632213614],[116,238,65,0.1550372991241761],[116,238,66,0.14401427435465483],[116,238,67,0.1333057575204334],[116,238,68,0.12290117556913249],[116,238,69,0.11277950329884838],[116,238,70,0.10292454637287483],[116,238,71,0.09332323811499323],[116,238,72,0.08396389501685633],[116,238,73,0.07483471643335438],[116,238,74,0.06592253166222145],[116,238,75,0.057211797231539546],[116,238,76,0.04868384684474957],[116,238,77,0.04031639606069066],[116,238,78,0.032083303421882814],[116,238,79,0.023954589388100453],[116,239,64,0.1676258587986873],[116,239,65,0.156252578069121],[116,239,66,0.1451604003067617],[116,239,67,0.13438360327166965],[116,239,68,0.12391679924536037],[116,239,69,0.11374178796761825],[116,239,70,0.10384364458596498],[116,239,71,0.09420930699673657],[116,239,72,0.08482608403704692],[116,239,73,0.07568039067204396],[116,239,74,0.0667567129383603],[116,239,75,0.05803680505902591],[116,239,76,0.04949912079893338],[116,239,77,0.04111848078653482],[116,239,78,0.03286597719238746],[116,239,79,0.024709116828603134],[116,240,64,0.1688525258316538],[116,240,65,0.15742248452447574],[116,240,66,0.14626873213379932],[116,240,67,0.13543116301238986],[116,240,68,0.12490986509508614],[116,240,69,0.1146900783701141],[116,240,70,0.10475860478839424],[116,240,71,0.09510269413538139],[116,240,72,0.08570882292609658],[116,240,73,0.07656168233605352],[116,240,74,0.06764337747596454],[116,240,75,0.05893284000084338],[116,240,76,0.05040545572734261],[116,240,77,0.042032908619927874],[116,240,78,0.033783242202272044],[116,240,79,0.025621139154909944],[116,241,64,0.16997736984519154],[116,241,65,0.15849884531229783],[116,241,66,0.1472919605513151],[116,241,67,0.13640176774274176],[116,241,68,0.12583403193935153],[116,241,69,0.1155780319582159],[116,241,70,0.10562277121676368],[116,241,71,0.09595616280322716],[116,241,72,0.08656409105254381],[116,241,73,0.07742966385212441],[116,241,74,0.06853265752392003],[116,241,75,0.05984915584109784],[116,241,76,0.05135138445102715],[116,241,77,0.043007741694069984],[116,241,78,0.03478302653514209],[116,241,79,0.026638864061781217],[116,242,64,0.17096318995411505],[116,242,65,0.15944497755287818],[116,242,66,0.14819379650253714],[116,242,67,0.13725926429280946],[116,242,68,0.12665292565599193],[116,242,69,0.11636865855972131],[116,242,70,0.10639814333019948],[116,242,71,0.09673034030564859],[116,242,72,0.0873508396822609],[116,242,73,0.07824138384391063],[116,242,74,0.0693795635614567],[116,242,75,0.06073868918858359],[116,242,76,0.052287837724800765],[116,242,77,0.043992076365175534],[116,242,78,0.03581286291567902],[116,242,79,0.02770862322207463],[116,243,64,0.17178362162535019],[116,243,65,0.16023466942610567],[116,243,66,0.1489480235731222],[116,243,67,0.13797715505578165],[116,243,68,0.12733938540306297],[116,243,69,0.11703369365724754],[116,243,70,0.10705489689727259],[116,243,71,0.0973934067906606],[116,243,72,0.08803486671701825],[116,243,73,0.07895994357705992],[116,243,74,0.07014427522235961],[116,243,75,0.06155857421083901],[116,243,76,0.05316888836641496],[116,243,77,0.04493701840077788],[116,243,78,0.036821092645854786],[116,243,79,0.02877629874630163],[116,244,64,0.1724220437216071],[116,244,65,0.16085114497774108],[116,244,66,0.14953753075248807],[116,244,67,0.13853771313157526],[116,244,68,0.12787467902730637],[116,244,69,0.11755293386674041],[116,244,70,0.10757086001123475],[116,244,71,0.09792073183844692],[116,244,72,0.0885886325349975],[116,244,73,0.07955450858829144],[116,244,74,0.07079236248086859],[116,244,75,0.0622705838879827],[116,244,76,0.053952419481065175],[116,244,77,0.045796581248658944],[116,244,78,0.03775799306704301],[116,244,79,0.029788675084035314],[116,245,64,0.17287047257096272],[116,245,65,0.16128601255209057],[116,245,66,0.1499533250554683],[116,245,67,0.13893107230561832],[116,245,68,0.12824768697124128],[116,245,69,0.1179135338055553],[116,245,70,0.10793094309605701],[116,245,71,0.09829445776957622],[116,245,72,0.08899101575837966],[116,245,73,0.08000025422551744],[116,245,74,0.07129493574805176],[116,245,75,0.06284149637994067],[116,245,76,0.05460071534504091],[116,245,77,0.046528505947169535],[116,245,78,0.03857682713296575],[116,245,79,0.03069471500316531],[116,246,64,0.17312844282310305],[116,246,65,0.16153819654398896],[116,246,66,0.1501935236227139],[116,246,67,0.1391542913841753],[116,246,68,0.12845405407949348],[116,246,69,0.1181092636152565],[116,246,70,0.10812652202672071],[116,246,71,0.09850302865490353],[116,246,72,0.08922700779834386],[116,246,73,0.08027824383006534],[116,246,74,0.07162872350843849],[116,246,75,0.06324338505728243],[116,246,76,0.055080973443643155],[116,246,77,0.04709500114327019],[116,246,78,0.0392348135583331],[116,246,79,0.030238961893247977],[116,247,64,0.17320187498232517],[116,247,65,0.16161285228708677],[116,247,66,0.15026232503598566],[116,247,67,0.13921039251786754],[116,247,68,0.12849530880619406],[116,247,69,0.11813972649431556],[116,247,70,0.10815477356346405],[116,247,71,0.09854066406991605],[116,247,72,0.08928734506838784],[116,247,73,0.08037523831093073],[116,247,74,0.07177607612166607],[116,247,75,0.06345383071513364],[116,247,76,0.055365736100659674],[116,247,77,0.04746340159893564],[116,247,78,0.03969401589423295],[116,247,79,0.028829576011995248],[116,248,64,0.17310192964879795],[116,248,65,0.16152026403207204],[116,248,66,0.15016895971523012],[116,248,67,0.13910737326896205],[116,248,68,0.12837794944097902],[116,248,69,0.11800953570112004],[116,248,70,0.10801796239176724],[116,248,71,0.09840677671220953],[116,248,72,0.08916807781362382],[116,248,73,0.08028343589562385],[116,248,74,0.07172489442377235],[116,248,75,0.06345605447249895],[116,248,76,0.05543324009079169],[116,248,77,0.0476067434906422],[116,248,78,0.03967552383324805],[116,248,79,0.02762912624507723],[116,249,64,0.17284384865416735],[116,249,65,0.16127472611882365],[116,249,66,0.14992661940934032],[116,249,67,0.13885719231692772],[116,249,68,0.12811249710269831],[116,249,69,0.11772745060975583],[116,249,70,0.10772267916947964],[116,249,71,0.09810533309473275],[116,249,72,0.08887007457856504],[116,249,73,0.08000014089461993],[116,249,74,0.07146848178967583],[116,249,75,0.06323896985796365],[116,249,76,0.05526768259451524],[116,249,77,0.047504254742519146],[116,249,78,0.038771401143334425],[116,249,79,0.026649778271182437],[116,250,64,0.1724457834459949],[116,250,65,0.16089340761129883],[116,250,66,0.14955136595258792],[116,250,67,0.13847472885160217],[116,250,68,0.12771251539850687],[116,250,69,0.11730547154108129],[116,250,70,0.10727902911104277],[116,250,71,0.09764415664092242],[116,250,72,0.0883984614305779],[116,250,73,0.07952736038844353],[116,250,74,0.07100531836417708],[116,250,75,0.06279715259905314],[116,250,76,0.05485940183890707],[116,250,77,0.04714175858332666],[116,250,78,0.03807115704954286],[116,250,79,0.0258975913423251],[116,251,64,0.1719276112571488],[116,251,65,0.1603952008427296],[116,251,66,0.14906101963347648],[116,251,67,0.13797671587382324],[116,251,68,0.12719359681143574],[116,251,69,0.11675789324979424],[116,251,70,0.10669977078649366],[116,251,71,0.09703417264132343],[116,251,72,0.08776199517119096],[116,251,73,0.07887132783872933],[116,251,74,0.07033875623428364],[116,251,75,0.06213072666733861],[116,251,76,0.05420497076880115],[116,251,77,0.04651198848153191],[116,251,78,0.03756987584278458],[116,251,79,0.02537170773166881],[116,252,64,0.17130973979327185],[116,252,65,0.1597995545136208],[116,252,66,0.14847402771450657],[116,252,67,0.13738064781194773],[116,252,68,0.12657231606438035],[116,252,69,0.11610031712713301],[116,252,70,0.10599940498268204],[116,252,71,0.0962885946876975],[116,252,72,0.08697236990593654],[116,252,73,0.07804195274039423],[116,252,74,0.06947663440407795],[116,252,75,0.06124516518803558],[116,252,76,0.05330720211358586],[116,252,77,0.0456148125946835],[116,252,78,0.037255857434538776],[116,252,79,0.02506363350597704],[116,253,64,0.17061190138276003],[116,253,65,0.15912529219519378],[116,253,66,0.1478083138492069],[116,253,67,0.1367036630686115],[116,253,68,0.1258651509121517],[116,253,69,0.11534862237827334],[116,253,70,0.10519321366577103],[116,253,71,0.09542205238005944],[116,253,72,0.08604345650561558],[116,253,73,0.07705219557175105],[116,253,74,0.06843081254524663],[116,253,75,0.06015100490191522],[116,253,76,0.05217506325665289],[116,253,77,0.04445736586962844],[116,253,78,0.03694592729893728],[116,253,79,0.024956612974292337],[116,254,64,0.1698519377607941],[116,254,65,0.1583894173178304],[116,254,66,0.14708010936845647],[116,254,67,0.13596140233717321],[116,254,68,0.1250873710378011],[116,254,69,0.11451789665548888],[116,254,70,0.1042962492999407],[116,254,71,0.0944496603070211],[116,254,72,0.08499047468042388],[116,254,73,0.07591736746571083],[116,254,74,0.06721662263458426],[116,254,75,0.05886347297173555],[116,254,76,0.050823499379827344],[116,254,77,0.04305408795176839],[116,254,78,0.035505943107430785],[116,254,79,0.025025099240857388],[116,255,64,0.16904457690231867],[116,255,65,0.15760590596834256],[116,255,66,0.1463027676522476],[116,255,67,0.13516684377234592],[116,255,68,0.12425189597580814],[116,255,69,0.11362132687392955],[116,255,70,0.10332227501865676],[116,255,71,0.09338602853184777],[116,255,72,0.08382909760504986],[116,255,73,0.0746543542201195],[116,255,74,0.06585223775633567],[116,255,75,0.05740202505721591],[116,255,76,0.049273163446223664],[116,255,77,0.041426665106590654],[116,255,78,0.033816561180604957],[116,255,79,0.025234323350474947],[116,256,64,0.16820020357840443],[116,256,65,0.15678448908152232],[116,256,66,0.14548556306580196],[116,256,67,0.13432911636485673],[116,256,68,0.12336812325344676],[116,256,69,0.11266905120714997],[116,256,70,0.10228265641282047],[116,256,71,0.09224421507687539],[116,256,72,0.08257448927894168],[116,256,73,0.07328076449016317],[116,256,74,0.06435795754370185],[116,256,75,0.05578979374346457],[116,256,76,0.04755005170353126],[116,256,77,0.03960387442685636],[116,256,78,0.03190914506162995],[116,256,79,0.02441792571513729],[116,257,64,0.16732363675256542],[116,257,65,0.15592943613121096],[116,257,66,0.14463248559407077],[116,257,67,0.1334523017335329],[116,257,68,0.12244073612070268],[116,257,69,0.11166698090517976],[116,257,70,0.10118521299793155],[116,257,71,0.0910346280592827],[116,257,72,0.08124028205480283],[116,257,73,0.07181400957586104],[116,257,74,0.06275541785624407],[116,257,75,0.0540529553043453],[116,257,76,0.04568505326596692],[116,257,77,0.03762133963749144],[116,257,78,0.029823922867165547],[116,257,79,0.022248744811471023],[116,258,64,0.16641293670687912],[116,258,65,0.15503844470851247],[116,258,66,0.14374121996464273],[116,258,67,0.13253449786369292],[116,258,68,0.12146884040134527],[116,258,69,0.11061599717299687],[116,258,70,0.10003346127510951],[116,258,71,0.0897643009795365],[116,258,72,0.07983787066248181],[116,258,73,0.0702706036509675],[116,258,74,0.06106688606922542],[116,258,75,0.05222001064490306],[116,258,76,0.04371320931932852],[116,258,77,0.035520763399100916],[116,258,78,0.027609189892094776],[116,258,79,0.019938502587602575],[116,259,64,0.16545973459010138],[116,259,65,0.15410475382808658],[116,259,66,0.1428070885038747],[116,259,67,0.1315735843547109],[116,259,68,0.12045334499476273],[116,259,69,0.1095204831958226],[116,259,70,0.09883564209535407],[116,259,71,0.08844562703718693],[116,259,72,0.07838398677373087],[116,259,73,0.06867168126061225],[116,259,74,0.0593178352751024],[116,259,75,0.05032057695725509],[116,259,76,0.041667960246527684],[116,259,77,0.03333897006865965],[116,259,78,0.02530460902186596],[116,259,79,0.017529064216060042],[116,260,64,0.1644557864679488],[116,260,65,0.1531233060832633],[116,260,66,0.14182872639969085],[116,260,67,0.13057236845705406],[116,260,68,0.11940154696020354],[116,260,69,0.10839230135354733],[116,260,70,0.0976080365569703],[116,260,71,0.08709896150373073],[116,260,72,0.07690254307836046],[116,260,73,0.06704405049755664],[116,260,74,0.0575371895107295],[116,260,75,0.048384825655796895],[116,260,76,0.03957979567047755],[116,260,77,0.031105806031557152],[116,260,78,0.022938417478579654],[116,260,79,0.015046114272247047],[116,261,64,0.16339565411437368],[116,261,65,0.15209137834969313],[116,261,66,0.14080655470300105],[116,261,67,0.12953486653578022],[116,261,68,0.1183213945073659],[116,261,69,0.10724346653446064],[116,261,70,0.09636667417108344],[116,261,71,0.0857441282381854],[116,261,72,0.07541678934900117],[116,261,73,0.06541389163066696],[116,261,74,0.055753459159188515],[116,261,75,0.04644291447695785],[116,261,76,0.037479778419260645],[116,261,77,0.028852460340402574],[116,261,78,0.020541137705450532],[116,261,79,0.012518723898188809],[116,262,64,0.1622762964879752],[116,262,65,0.15100811608730724],[116,262,66,0.13974225177132443],[116,262,67,0.1284656984692104],[116,262,68,0.11722079245989249],[116,262,69,0.1060853597813206],[116,262,70,0.09512645915816166],[116,262,71,0.08439946879148165],[116,262,72,0.07394829871692868],[116,262,73,0.06380569780769514],[116,262,74,0.05399365507376751],[116,262,75,0.04452389475648546],[116,262,76,0.035398464569404195],[116,262,77,0.02661041629475007],[116,262,78,0.01814457781355957],[116,262,79,0.009978415524977037],[116,263,64,0.1610969258473085],[116,263,65,0.14987442388885872],[116,263,66,0.13863867368103666],[116,263,67,0.1273700220719801],[116,263,68,0.11610752754512897],[116,263,69,0.10492861806295475],[116,263,70,0.09390099642479408],[116,263,71,0.08308157559942407],[116,263,72,0.07251657945147576],[116,263,73,0.062241738112674035],[116,263,74,0.052282577776902865],[116,263,75,0.04265480454348075],[116,263,76,0.03336478178220393],[116,263,77,0.02441010034851216],[116,263,78,0.01578024084170384],[116,263,79,0.00745732697156396],[116,264,64,0.15985920993355202],[116,264,65,0.1486932016473266],[116,264,66,0.13750011694255107],[116,264,67,0.12625380415083395],[116,264,68,0.11498952247460026],[116,264,69,0.10378334272918371],[116,264,70,0.09270272383998454],[116,264,71,0.08180531688555234],[116,264,72,0.07113896179672535],[116,264,73,0.060741777170426205],[116,264,74,0.05064234309701917],[116,264,75,0.04085997674603464],[116,264,76,0.03140510030407012],[116,264,77,0.02227970071256493],[116,264,78,0.013477880516015823],[116,264,79,0.004986499001122982],[116,265,64,0.15754825606065506],[116,265,65,0.14746992892841745],[116,265,66,0.13633292595860189],[116,265,67,0.125124430488064],[116,265,68,0.11387542097866374],[116,265,69,0.10265962870132764],[116,265,70,0.09154335277716241],[116,265,71,0.08058415518286266],[116,265,72,0.06983076174844402],[116,265,73,0.05932305318765322],[116,265,74,0.049092146171980655],[116,265,75,0.03916056430835921],[116,265,76,0.02954249873217662],[116,265,77,0.020244157882864083],[116,265,78,0.011264205893097576],[116,265,79,0.0036361547140942776],[116,266,64,0.15428412778458722],[116,266,65,0.1455316359135404],[116,266,66,0.13514644714723448],[116,266,67,0.12399165654571721],[116,266,68,0.11277550547511304],[116,266,69,0.10156841598575343],[116,266,70,0.09043461844260318],[116,266,71,0.07943076095701246],[116,266,72,0.06860572324649854],[116,266,73,0.0580005159300225],[116,266,74,0.047648265374077695],[116,266,75,0.03757428406003421],[116,266,76,0.02779622629992462],[116,266,77,0.0183243289878866],[116,266,78,0.01174871785455016],[116,266,79,0.009507999023522227],[116,267,64,0.15082178939318475],[116,267,65,0.1420109237058184],[116,267,66,0.1333112225841378],[116,267,67,0.12286890021581003],[116,267,68,0.11170294860121147],[116,267,69,0.1005226646659205],[116,267,70,0.08938934109740938],[116,267,71,0.07835792241833972],[116,267,72,0.06747673988027583],[116,267,73,0.05678732577339121],[116,267,74,0.04632430736519401],[116,267,75,0.03611538054492941],[116,267,76,0.02618136311480952],[116,267,77,0.020843291489775186],[116,267,78,0.01822806493782119],[116,267,79,0.015682274332250196],[116,268,64,0.14714974254821064],[116,268,65,0.13827046061757675],[116,268,66,0.12951581256013947],[116,268,67,0.12094203228220027],[116,268,68,0.11067539942174724],[116,268,69,0.09953885412910102],[116,268,70,0.08842279889861937],[116,268,71,0.07737975224573257],[116,268,72,0.06645685685680436],[116,268,73,0.0556956146347841],[116,268,74,0.04513169417200692],[116,268,75,0.03479481083043032],[116,268,76,0.030906570111750135],[116,268,77,0.02793426928785324],[116,268,78,0.025015857058057575],[116,268,79,0.022156084081198762],[116,269,64,0.14324887996101557],[116,269,65,0.1342913201606213],[116,269,66,0.12547127935931193],[116,269,67,0.11684940691526224],[116,269,68,0.10842382722466339],[116,269,69,0.09863880691644748],[116,269,70,0.08755441273434916],[116,269,71,0.0765131916110343],[116,269,72,0.06556055366232133],[116,269,73,0.05473750928385325],[116,269,74,0.04515908813662121],[116,269,75,0.041874631472617455],[116,269,76,0.038591163722175345],[116,269,77,0.035328325601263054],[116,269,78,0.03210075447892508],[116,269,79,0.028918135257038576],[116,270,64,0.139090165729467],[116,270,65,0.13004492110521668],[116,270,66,0.12115021434495954],[116,270,67,0.11247046054387635],[116,270,68,0.10400957466128799],[116,270,69,0.09572796819753596],[116,270,70,0.08680974310675736],[116,270,71,0.07577981158686556],[116,270,72,0.06480530755643697],[116,270,73,0.057118327805491254],[116,270,74,0.053647404765605006],[116,270,75,0.05012125104980307],[116,270,76,0.046567121984187],[116,270,77,0.04300821451394458],[116,270,78,0.039463535494592444],[116,270,79,0.03594782458419417],[116,271,64,0.13466087261825546],[116,271,65,0.1255192526859247],[116,271,66,0.11654194059718617],[116,271,67,0.10779645213752795],[116,271,68,0.09929248786630895],[116,271,69,0.09099762387572002],[116,271,70,0.0828789152027896],[116,271,71,0.07490434797640191],[116,271,72,0.06965165530809185],[116,271,73,0.06609108541104429],[116,271,74,0.06240908596510981],[116,271,75,0.05863829617172664],[116,271,76,0.054808590491746675],[116,271,77,0.050946777457001866],[116,271,78,0.04707634398178589],[116,271,79,0.04321724533412694],[116,272,64,0.1300502515181327],[116,272,65,0.1208046193787914],[116,272,66,0.11173732492688378],[116,272,67,0.10291821104155321],[116,272,68,0.09436260973722266],[116,272,69,0.08604559351796033],[116,272,70,0.07812517121110195],[116,272,71,0.0778810746088272],[116,272,72,0.07757910144345673],[116,272,73,0.07525760645771815],[116,272,74,0.07137061117948515],[116,272,75,0.06736028324352664],[116,272,76,0.06325900658504312],[116,272,77,0.05909712617018113],[116,272,78,0.05490256787187977],[116,272,79,0.05070049480670694],[116,273,64,0.12536374332701714],[116,273,65,0.11600786272531034],[116,273,66,0.10684392706418093],[116,273,67,0.09794323120563245],[116,273,68,0.08932643396272198],[116,273,69,0.08360635099750416],[116,273,70,0.08326526852169493],[116,273,71,0.0829352417925924],[116,273,72,0.0825894007063688],[116,273,73,0.08219994499754894],[116,273,74,0.08044762281522913],[116,273,75,0.07621221908101802],[116,273,76,0.07185369364298275],[116,273,77,0.06740569064685978],[116,273,78,0.06290034976911521],[116,273,79,0.058367833252363784],[116,274,64,0.12069483144370806],[116,274,65,0.11122414811767965],[116,274,66,0.10195803115278483],[116,274,67,0.09296829141312511],[116,274,68,0.08946808616223403],[116,274,69,0.08891856314466552],[116,274,70,0.08843754793438038],[116,274,71,0.08800441393019427],[116,274,72,0.08759555626811154],[116,274,73,0.08718505461546167],[116,274,74,0.08674532021160623],[116,274,75,0.08512021495919572],[116,274,76,0.08052733897480843],[116,274,77,0.07581650058310913],[116,274,78,0.07102367220114328],[116,274,79,0.06618363357965973],[116,275,64,0.11612575616594004],[116,275,65,0.10653761028689791],[116,275,66,0.0971652121196644],[116,275,67,0.09591848326972864],[116,275,68,0.09507599039521751],[116,275,69,0.09434172048589476],[116,275,70,0.09370487158491672],[116,275,71,0.09314959102646858],[116,275,72,0.09265569658936712],[116,275,73,0.0921993922171318],[116,275,74,0.09175397734968677],[116,275,75,0.09129054893294689],[116,275,76,0.08921443212705668],[116,275,77,0.08427168541059168],[116,275,78,0.0792229066315597],[116,275,79,0.07410696614243008],[116,276,64,0.11172806872314023],[116,276,65,0.10437851416250989],[116,276,66,0.10310240435323968],[116,276,67,0.1019196254449111],[116,276,68,0.10086136650096753],[116,276,69,0.09993033094967008],[116,276,70,0.09912171396507759],[116,276,71,0.09842440839844357],[116,276,72,0.09782175771560794],[116,276,73,0.09729231233631616],[116,276,74,0.09681058835620329],[116,276,75,0.09634782763851153],[116,276,76,0.0958727582741217],[116,276,77,0.09271214860274572],[116,276,78,0.08744553729212196],[116,276,79,0.08209235877373322],[116,277,64,0.11261864691240962],[116,277,65,0.11107370955838423],[116,277,66,0.10956198702370279],[116,277,67,0.10814874011310872],[116,277,68,0.10686814856689948],[116,277,69,0.10572960251488477],[116,277,70,0.10473400137998333],[116,277,71,0.10387486435445184],[116,277,72,0.10313910209120788],[116,277,73,0.10250779984977151],[116,277,74,0.10195701103006931],[116,277,75,0.10145856001995335],[116,277,76,0.10098085328063447],[116,277,77,0.10048969759853804],[116,277,78,0.09563705959973609],[116,277,79,0.09009073170841045],[116,278,64,0.11981035954020942],[116,278,65,0.11802706310376591],[116,278,66,0.11628212704916618],[116,278,67,0.11463772604636484],[116,278,68,0.11313027233193965],[116,278,69,0.1117752254248632],[116,278,70,0.11057878156623144],[116,278,71,0.10953887731492153],[116,278,72,0.10864596611057485],[116,278,73,0.10788381341098799],[116,278,74,0.10723030930854041],[116,278,75,0.10665829751048797],[116,278,76,0.10613641955428182],[116,278,77,0.10562997312187997],[116,278,78,0.10374205281015167],[116,278,79,0.09805050693251158],[116,279,64,0.12727003397102526],[116,279,65,0.12525542403035156],[116,279,66,0.12328194384148113],[116,279,67,0.1214079810627043],[116,279,68,0.11967139769975026],[116,279,69,0.11809298456150866],[116,279,70,0.11668372288658982],[116,279,71,0.11544567192385093],[116,279,72,0.11437273609083264],[116,279,73,0.11345145677036428],[116,279,74,0.11266182764156456],[116,279,75,0.11197813241077118],[116,279,76,0.11136980378363551],[116,279,77,0.11080230250212528],[116,279,78,0.11023801525998843],[116,279,79,0.10591889141157869],[116,280,64,0.13500156531155427],[116,280,65,0.1327648888460651],[116,280,66,0.13056971019348407],[116,280,67,0.12847005871921816],[116,280,68,0.12650446132467266],[116,280,69,0.12469820144325712],[116,280,70,0.12306644268300188],[116,280,71,0.12161499385488497],[116,280,72,0.12034105249416588],[116,280,73,0.11923397793428217],[116,280,74,0.11827609284205247],[116,280,75,0.11744351208302799],[116,280,76,0.1167069977524621],[116,280,77,0.11603283918093873],[116,280,78,0.11538375670481915],[116,280,79,0.11364333358056303],[116,281,64,0.14299801212934482],[116,281,65,0.1405504671250643],[116,281,66,0.13814243321293587],[116,281,67,0.1358231549166745],[116,281,68,0.1336310587899568],[116,281,69,0.13159500546801134],[116,281,70,0.1297336645164706],[116,281,71,0.1280561531516912],[116,281,72,0.1265627423524987],[116,281,73,0.12524559622881645],[116,281,74,0.1240895435894026],[116,281,75,0.12307288060365029],[116,281,76,0.1221682034116099],[116,281,77,0.12134326950254606],[116,281,78,0.12056188665606592],[116,281,79,0.11978482822173399],[116,282,64,0.1495120072924152],[116,282,65,0.14439702176335556],[116,282,66,0.14016331332712012],[116,282,67,0.1368214220379576],[116,282,68,0.13435952566562018],[116,282,69,0.13274115906618356],[116,282,70,0.13190308994949435],[116,282,71,0.131756268488279],[116,282,72,0.13218305688448181],[116,282,73,0.13149015742874925],[116,282,74,0.13010908784756262],[116,282,75,0.12887614823355936],[116,282,76,0.12776622573316493],[116,282,77,0.12674914149490646],[116,282,78,0.12579050479328477],[116,282,79,0.1248525961976339],[116,283,64,0.15012240577362107],[116,283,65,0.1449298814196842],[116,283,66,0.14063668160947224],[116,283,67,0.13725389098542723],[116,283,68,0.13476959658200996],[116,283,69,0.1331465059654105],[116,283,70,0.13231971765009728],[116,283,71,0.13219758410891855],[116,283,72,0.13265882102385404],[116,283,73,0.13355411625844932],[116,283,74,0.13477431899792613],[116,283,75,0.13485298912057422],[116,283,76,0.1335046938453687],[116,283,77,0.13225802204298792],[116,283,78,0.13108103814176045],[116,283,79,0.12993828293144974],[116,284,64,0.15099499328910265],[116,284,65,0.1457226866774597],[116,284,66,0.14136581902722906],[116,284,67,0.1379361599413343],[116,284,68,0.13542189519596579],[116,284,69,0.13378514558644883],[116,284,70,0.1329596337592411],[116,284,71,0.13285146219889557],[116,284,72,0.13333610359452436],[116,284,73,0.13426018335949258],[116,284,74,0.13551247949725143],[116,284,75,0.13702319950682754],[116,284,76,0.13873362163483888],[116,284,77,0.13786748304924468],[116,284,78,0.13643617697415195],[116,284,79,0.1350496649547942],[116,285,64,0.1521192629910989],[116,285,65,0.14676575119466495],[116,285,66,0.1423417744154059],[116,285,67,0.13885992209871864],[116,285,68,0.13630866531718086],[116,285,69,0.13464977864804573],[116,285,70,0.13381590559041773],[116,285,71,0.13371125351331206],[116,285,72,0.13420846700633313],[116,285,73,0.13515055151664188],[116,285,74,0.1364243908121666],[116,285,75,0.13795955272482946],[116,285,76,0.1396966778427965],[116,285,77,0.14158497388417662],[116,285,78,0.14184764059411625],[116,285,79,0.14018487420245543],[116,286,64,0.1534829998722116],[116,286,65,0.1480476929225918],[116,286,66,0.14355392717901075],[116,286,67,0.14001524028119955],[116,286,68,0.13742057084154555],[116,286,69,0.1357315860547736],[116,286,70,0.1348801482614867],[116,286,71,0.13476892923915929],[116,286,72,0.13526816883323967],[116,286,73,0.13621770738066455],[116,286,74,0.1375027238651613],[116,286,75,0.13905217572253664],[116,286,76,0.14080609129006763],[116,286,77,0.142712981412559],[116,286,78,0.1447277197464233],[116,286,79,0.14532995881741279],[116,287,64,0.15507240818084558],[116,287,65,0.1495555509995371],[116,287,66,0.1449900941598393],[116,287,67,0.14139064437548582],[116,287,68,0.13874678442332503],[116,287,69,0.1370203095440266],[116,287,70,0.1361425980888572],[116,287,71,0.13601514791820765],[116,287,72,0.13650622302329438],[116,287,73,0.13745296272917884],[116,287,74,0.13873904189903308],[116,287,75,0.14029284747206539],[116,287,76,0.14205383098031504],[116,287,77,0.14396983533964125],[116,287,78,0.14599489568044835],[116,287,79,0.1480871569605263],[116,288,64,0.15687226483528693],[116,288,65,0.15127492936174997],[116,288,66,0.1466366638824698],[116,288,67,0.14297325674612243],[116,288,68,0.14027510467274856],[116,288,69,0.13850436134225907],[116,288,70,0.13759221541747238],[116,288,71,0.13743935217878417],[116,288,72,0.13791249124273477],[116,288,73,0.13884654107963654],[116,288,74,0.14012388291813593],[116,288,75,0.14167238344157967],[116,288,76,0.14343096261599142],[116,288,77,0.14534683397481857],[116,288,78,0.14737322245656315],[116,288,79,0.14946719458517396],[116,289,64,0.15886609883656383],[116,289,65,0.1531901670717758],[116,289,66,0.1484787581796069],[116,289,67,0.14474894563261972],[116,289,68,0.1419921018791635],[116,289,69,0.1401709628306197],[116,289,70,0.13921681688675155],[116,289,71,0.13902989527658927],[116,289,72,0.13947580435435364],[116,289,73,0.14038769472002297],[116,289,74,0.14164687278297938],[116,289,75,0.14318074514832718],[116,289,76,0.14492775489403076],[116,289,77,0.14683453402556806],[116,289,78,0.1488535352029901],[116,289,79,0.15094077118332486],[116,290,64,0.16103639667997838],[116,290,65,0.155284535364086],[116,290,66,0.1505004211966599],[116,290,67,0.14670250652885092],[116,290,68,0.14388329225963586],[116,290,69,0.14200631221985946],[116,290,70,0.141003237132368],[116,290,71,0.1407741974444338],[116,290,72,0.14118411403002332],[116,290,73,0.1420648521571554],[116,290,74,0.1432968689580578],[116,290,75,0.14480718054150554],[116,290,76,0.14653381674019372],[116,290,77,0.1484228847861641],[116,290,78,0.15042611223134436],[116,290,79,0.1524984927833977],[116,291,64,0.16336483376530345],[116,291,65,0.15754046140798617],[116,291,66,0.1526848357755503],[116,291,67,0.14881787154471424],[116,291,68,0.1459333407329943],[116,291,69,0.1439957812345144],[116,291,70,0.14293751992386272],[116,291,71,0.14265893205089364],[116,291,72,0.14302467449737188],[116,291,73,0.14386579598257704],[116,291,74,0.1450621349129088],[116,291,75,0.14654039521495654],[116,291,76,0.1482382654820673],[116,291,77,0.15010139329988714],[116,291,78,0.15208083710111264],[116,291,79,0.1541306159794475],[116,292,64,0.16583253180574944],[116,292,65,0.159939778787908],[116,292,66,0.15501456721785375],[116,292,67,0.15107834675016357],[116,292,68,0.14812629221942308],[116,292,69,0.14612414080646619],[116,292,70,0.14500513873819684],[116,292,71,0.14467024156798858],[116,292,72,0.14498425442071777],[116,292,73,0.14577787115615312],[116,292,74,0.14693054517650608],[116,292,75,0.1483687544497947],[116,292,76,0.15002992596082448],[116,292,77,0.151859320494833],[116,292,78,0.15380739161487328],[116,292,79,0.1558272375037468],[116,293,64,0.1684203422355981],[116,293,65,0.16246400470098407],[116,293,66,0.15747183442717355],[116,293,67,0.1534668775015049],[116,293,68,0.15044583146549947],[116,293,69,0.14837581577777642],[116,293,70,0.1471912467691407],[116,293,71,0.14679398334777832],[116,293,72,0.14704937891615716],[116,293,73,0.14778822370726277],[116,293,74,0.1488898210448806],[116,293,75,0.150280516086863],[116,293,76,0.1518975605816375],[116,293,77,0.15368590829321524],[116,293,78,0.15559547974415017],[116,293,79,0.1575785146081934],[116,294,64,0.17110915561650394],[116,294,65,0.16509464387190143],[116,294,66,0.16003880843074522],[116,294,67,0.15596634174995735],[116,294,68,0.15287557139467473],[116,294,69,0.150735168612795],[116,294,70,0.1494809563724971],[116,294,71,0.1490160052078777],[116,294,72,0.14920660170080405],[116,294,73,0.1498840698535873],[116,294,74,0.1509277969419709],[116,294,75,0.15226409422901732],[116,294,76,0.1538301303027439],[116,294,77,0.1555706376941602],[116,294,78,0.15743508248589907],[116,294,79,0.15937491625454758],[116,295,64,0.17388023704258287],[116,295,65,0.1678135191851592],[116,295,66,0.16269793828039358],[116,295,67,0.15855987133260332],[116,295,68,0.15539936998332496],[116,295,69,0.15318681211966684],[116,295,70,0.15185964794728493],[116,295,71,0.15132245082601475],[116,295,72,0.1514428073763096],[116,295,73,0.15205299553762075],[116,295,74,0.15303271743382843],[116,295,75,0.15430835377336538],[116,295,76,0.15581708656329424],[116,295,77,0.15750351783012503],[116,295,78,0.15931674364975656],[116,295,79,0.16120750511362564],[116,296,64,0.17671558754410183],[116,296,65,0.1706031290345391],[116,296,66,0.1654323043326541],[116,296,67,0.16123120124553494],[116,296,68,0.15800167566217546],[116,296,69,0.15571595118104198],[116,296,70,0.154313308252688],[116,296,71,0.15370009494343773],[116,296,72,0.1537455438464624],[116,296,73,0.1542832863807055],[116,296,74,0.1551935648959805],[116,296,75,0.15640293577326186],[116,296,76,0.1578486941497814],[116,296,77,0.15947540599673496],[116,296,78,0.16123188657585044],[116,296,79,0.16306825037324918],[116,297,64,0.17959833148997373],[116,297,65,0.1734470313899974],[116,297,66,0.16822599890826515],[116,297,67,0.16396504689940744],[116,297,68,0.16066790124331365],[116,297,69,0.1583087534942044],[116,297,70,0.15682889816098344],[116,297,71,0.15613670837738383],[116,297,72,0.1561033848690884],[116,297,73,0.15656428805480985],[116,297,74,0.1574004178341681],[116,297,75,0.15853861363027905],[116,297,76,0.1599163850012708],[116,297,77,0.16147835865626364],[116,297,78,0.163173161783391],[116,297,79,0.16495037135517215],[116,298,64,0.18251312998886327],[116,298,65,0.17633025458177962],[116,298,66,0.17106453433083385],[116,298,67,0.16674750935719962],[116,298,68,0.16338482637258567],[116,298,69,0.16095274932041362],[116,298,70,0.1593947498462447],[116,298,71,0.15862145284240717],[116,298,72,0.15850632274204143],[116,298,73,0.15888679707184117],[116,298,74,0.15964483985825154],[116,298,75,0.16070768011594286],[116,298,76,0.16201314295322186],[116,298,77,0.16350601341454302],[116,298,78,0.16513482554983444],[116,298,79,0.16684871194077205],[116,299,64,0.18544662028903397],[116,299,65,0.17923973480189248],[116,299,66,0.17393527834480865],[116,299,67,0.1695665085543161],[116,299,68,0.1661410285075169],[116,299,69,0.16363726024359945],[116,299,70,0.16200099340895885],[116,299,71,0.16114530558070317],[116,299,72,0.1609461911234274],[116,299,73,0.16124348199063449],[116,299,74,0.16192029930942414],[116,299,75,0.1629043652233786],[116,299,76,0.1641339194200449],[116,299,77,0.1655540019714503],[116,299,78,0.1671131494207615],[116,299,79,0.16876014580565396],[116,300,64,0.18838788117693483],[116,300,65,0.18216478032292815],[116,300,66,0.1768279169127552],[116,300,67,0.1724122445010262],[116,300,68,0.16892734242074725],[116,300,69,0.16635385693840135],[116,300,70,0.16464001293655123],[116,300,71,0.16370151380142378],[116,300,72,0.16341711798605296],[116,300,73,0.16362933504160998],[116,300,74,0.16422261954072861],[116,300,75,0.16512528484885608],[116,300,76,0.1662760800163834],[116,300,77,0.16762039404495832],[116,300,78,0.1691068606504617],[116,300,79,0.17068401246315362],[116,301,64,0.19132892437440924],[116,301,65,0.18509756243412512],[116,301,66,0.1797349443918188],[116,301,67,0.17527768646712516],[116,301,68,0.17173734822886655],[116,301,69,0.16909684594743812],[116,301,70,0.16730693199969984],[116,301,71,0.1662860789288655],[116,301,72,0.16591600870598125],[116,301,73,0.16604215416898044],[116,301,74,0.16655045985075434],[116,301,75,0.16736992030311715],[116,301,76,0.16843988211700373],[116,301,77,0.16970617226863494],[116,301,78,0.17111761357310515],[116,301,79,0.17262258411662246],[116,302,64,0.1942652119346568],[116,302,65,0.18803363309479756],[116,302,66,0.18265218108950468],[116,302,67,0.1781590901489468],[116,302,68,0.17456788794678402],[116,302,69,0.1718637854679398],[116,302,70,0.17000012858457497],[116,302,71,0.16889827065966698],[116,302,72,0.1684430592853322],[116,302,73,0.16848305549064768],[116,302,74,0.16890582707065763],[116,302,75,0.16964112865262432],[116,302,76,0.17062898335543264],[116,302,77,0.1718157380627296],[116,302,78,0.1731504919046433],[116,302,79,0.1745815633206379],[116,303,64,0.19719619963692087],[116,303,65,0.19097246930510114],[116,303,66,0.1855793181987469],[116,303,67,0.18105654281869898],[116,303,68,0.17741961056759634],[116,303,69,0.17465603014770897],[116,303,70,0.17272177946096923],[116,303,71,0.17154117082897818],[116,303,72,0.17100229970928987],[116,303,73,0.1709570161757474],[116,303,74,0.1712946178044622],[116,303,75,0.17194568389068937],[116,303,76,0.17285098106129948],[116,303,77,0.17395744847880387],[116,303,78,0.17521454197539282],[116,303,79,0.17657061145109032],[116,304,64,0.20012590637979677],[116,304,65,0.1939180441940373],[116,304,66,0.18852049011216407],[116,304,67,0.18397453645602088],[116,304,68,0.18029754566785977],[116,304,69,0.1774793048903153],[116,304,70,0.1754784339862226],[116,304,71,0.17422224708550949],[116,304,72,0.1736021674372228],[116,304,73,0.17347344773975312],[116,304,74,0.17372719132255224],[116,304,75,0.17429484893839386],[116,304,76,0.17511798263629663],[116,304,77,0.17614418401782161],[116,304,78,0.17732333689322013],[116,304,79,0.17860390798406622],[116,305,64,0.20306350957330602],[116,305,65,0.19687942482483534],[116,305,66,0.19148487411564366],[116,305,67,0.18692256886190284],[116,305,68,0.18321170553840216],[116,305,69,0.18034430766965923],[116,305,70,0.1782816173450772],[116,305,71,0.1769539563755933],[116,305,72,0.17625611102805322],[116,305,73,0.1760467997572698],[116,305,74,0.17621897310848714],[116,305,75,0.17670497847543054],[116,305,76,0.1774472068688867],[116,305,77,0.1783939474218249],[116,305,78,0.17949557163745125],[116,305,79,0.1807007405836517],[116,306,64,0.20602396652969976],[116,306,65,0.19987139671767779],[116,306,66,0.19448731746122028],[116,306,67,0.18991577275493482],[116,306,68,0.18617771584064413],[116,306,69,0.18326734135387457],[116,306,70,0.1811484632254336],[116,306,71,0.1797543782362293],[116,306,72,0.17898322389984297],[116,306,73,0.17869719399248957],[116,306,74,0.17879108905911098],[116,306,75,0.17919815260083874],[116,306,76,0.17986161618772828],[116,306,77,0.18073049343916836],[116,306,78,0.18175568908348064],[116,306,79,0.18288612599862883],[116,307,64,0.20902715331633825],[116,307,65,0.20291363354857725],[116,307,66,0.19754753081527038],[116,307,67,0.19297412592640034],[116,307,68,0.18921603571930384],[116,307,69,0.18626953758758696],[116,307,70,0.18410093614178966],[116,307,71,0.18264643142094988],[116,307,72,0.1818074526714844],[116,307,73,0.1814496238028483],[116,307,74,0.18146955732026915],[116,307,75,0.18180136413364145],[116,307,76,0.18238910372801198],[116,307,77,0.1831825208674544],[116,307,78,0.1841330828208564],[116,307,79,0.18519002975306062],[116,308,64,0.21206788175540636],[116,308,65,0.20600123705785908],[116,308,66,0.2006610227182847],[116,308,67,0.19609365201383397],[116,308,68,0.19232330130314768],[116,308,69,0.1893482292102029],[116,308,70,0.18713713448510427],[116,308,71,0.18562903121213947],[116,308,72,0.18472856135037843],[116,308,73,0.18430471483530356],[116,308,74,0.18425587910310287],[116,308,75,0.18451701210321164],[116,308,76,0.1850329922966401],[116,308,77,0.18575430211639066],[116,308,78,0.18663299760414667],[116,308,79,0.18761868652823466],[116,309,64,0.2151146754221913],[116,309,65,0.20910342614141011],[116,309,66,0.2037977080682567],[116,309,67,0.19924495487843466],[116,309,68,0.19547079241128104],[116,309,69,0.1924753553457173],[116,309,70,0.19022963931164982],[116,309,71,0.18867538607842838],[116,309,72,0.18772037842461406],[116,309,73,0.18723692298381267],[116,309,74,0.18712518536864198],[116,309,75,0.18732099301052785],[116,309,76,0.18777006486589806],[116,309,77,0.18842364710478854],[116,309,78,0.1892344209420619],[116,309,79,0.1901524143527674],[116,310,64,0.21813687836075596],[116,310,65,0.21219012011560226],[116,310,66,0.20692808607480903],[116,310,67,0.2023991114546018],[116,310,68,0.19863015628448516],[116,310,69,0.19562312292576595],[116,310,70,0.1933512060389282],[116,310,71,0.19175879132289553],[116,310,72,0.1907567369224805],[116,310,73,0.19022063031763756],[116,310,74,0.19005245623703554],[116,310,75,0.1901889743304009],[116,310,76,0.19057679426104324],[116,310,77,0.19116797041211692],[116,310,78,0.19191585511125844],[116,310,79,0.19277095118829632],[116,311,64,0.22110586701681997],[116,311,65,0.21523313735590285],[116,311,66,0.2100244293191616],[116,311,67,0.2055288549680383],[116,311,68,0.2017745885763943],[116,311,69,0.19876518878332755],[116,311,70,0.1964759505004999],[116,311,71,0.19485382127869982],[116,311,72,0.19381267401779625],[116,311,73,0.1932313521778274],[116,311,74,0.19301373414315],[116,311,75,0.19309761091367578],[116,311,76,0.19343055892621236],[116,311,77,0.19396550173703184],[116,311,78,0.19465651710189988],[116,311,79,0.18942936471745048],[116,312,64,0.22399515056214359],[116,312,65,0.21820629581093676],[116,312,66,0.21306088333541146],[116,312,67,0.20860867249774717],[116,312,68,0.20487892787707934],[116,312,69,0.20187675022002813],[116,312,70,0.19957943477676615],[116,312,71,0.19793640979951305],[116,312,72,0.19686450579379156],[116,312,73,0.19624580608184472],[116,312,74,0.19598618695891937],[116,312,75,0.1960246025532002],[116,312,76,0.19630969527517786],[116,312,77,0.19679533345880984],[116,312,78,0.19188542718087603],[116,312,79,0.18544521059301475],[116,313,64,0.2267806165083334],[116,313,65,0.22108552511530707],[116,313,66,0.21601344555796512],[116,313,67,0.21161465146602126],[116,313,68,0.20791937084975204],[116,313,69,0.20493413031514618],[116,313,70,0.2026381246498598],[116,313,71,0.2009831823098101],[116,313,72,0.1998890368435224],[116,313,73,0.19924100235763528],[116,313,74,0.1989470836221343],[116,313,75,0.1989475589740941],[116,313,76,0.19919225676657604],[116,313,77,0.19470770168014734],[116,313,78,0.18776631867199436],[116,313,79,0.18121591287498445],[116,314,64,0.22944023482576206],[116,314,65,0.2238485938799308],[116,314,66,0.21885971454072184],[116,314,67,0.21452424951218224],[116,314,68,0.21087326148439148],[116,314,69,0.20791458531812895],[116,314,70,0.20562921396445527],[116,314,71,0.20397129607317],[116,314,72,0.2028634155366801],[116,314,73,0.20219411369007267],[116,314,74,0.20187367740424397],[116,314,75,0.2018438963737473],[116,314,76,0.197800132307152],[116,314,77,0.19043000827273776],[116,314,78,0.18339825502348306],[116,314,79,0.17677437854318342],[116,315,64,0.231953789146921],[116,315,65,0.2264749766921581],[116,315,66,0.22157889026987523],[116,315,67,0.21731642531049994],[116,315,68,0.21371934932684006],[116,315,69,0.21079668694933335],[116,315,70,0.2085311274594407],[116,315,71,0.2068790598609909],[116,315,72,0.20576586672983452],[116,315,73,0.205083317024994],[116,315,74,0.20474415309652225],[116,315,75,0.20102219434694607],[116,315,76,0.1933186077677666],[116,315,77,0.18588621250158302],[116,315,78,0.17880593177405663],[116,315,79,0.17214811906498728],[116,316,64,0.23430296425582967],[116,316,65,0.22894595527030598],[116,316,66,0.2241518877730871],[116,316,67,0.2199717634069558],[116,316,68,0.21643792432998407],[116,316,69,0.21356046609940615],[116,316,70,0.21132367223194634],[116,316,71,0.20968609221858098],[116,316,72,0.2085758560338404],[116,316,73,0.20788796323747813],[116,316,74,0.20420218058315487],[116,316,75,0.19627579308836207],[116,316,76,0.18854297851726529],[116,316,77,0.18109315638338466],[116,316,78,0.17400768955242119],[116,316,79,0.16735700927789507],[116,317,64,0.23271881303045158],[116,317,65,0.23090322916049963],[116,317,66,0.22656145411694564],[116,317,67,0.22247259836400887],[116,317,68,0.21901094700273255],[116,317,69,0.216187547891247],[116,317,70,0.21398817670793296],[116,317,71,0.21237346346448277],[116,317,72,0.2112742341266178],[116,317,73,0.20715336645958296],[116,317,74,0.19912135349389307],[116,317,75,0.19119984528578038],[116,317,76,0.18348312453111087],[116,317,77,0.17606057944842646],[116,317,78,0.16901322452203252],[116,317,79,0.16241081553815964],[116,318,64,0.22992479249087483],[116,318,65,0.22819865157154004],[116,318,66,0.22663492579171904],[116,318,67,0.2248031414182802],[116,318,68,0.2214221814664908],[116,318,69,0.21866129003666554],[116,318,70,0.21650763328066203],[116,318,71,0.2149238417098473],[116,318,72,0.20969135249380666],[116,318,73,0.20166796663527883],[116,318,74,0.19367204026060666],[116,318,75,0.18579851657020793],[116,318,76,0.17814121488665463],[116,318,77,0.17078874901248106],[116,318,78,0.16382104923787705],[116,318,79,0.15730649119922072],[116,319,64,0.2270621948710227],[116,319,65,0.22541747792200334],[116,319,66,0.22392021770037907],[116,319,67,0.22254906292755555],[116,319,68,0.2213248706500031],[116,319,69,0.2202752589091388],[116,319,70,0.21886684461703912],[116,319,71,0.21165074337210132],[116,319,72,0.20373817665784635],[116,319,73,0.19577563162082195],[116,319,74,0.1878540785343437],[116,319,75,0.1800677015877197],[116,319,76,0.17250922029125387],[116,319,77,0.165265820835478],[116,319,78,0.15841570173840977],[116,319,79,0.15202523699836942],[117,-64,64,0.33887231276764945],[117,-64,65,0.34470547475119406],[117,-64,66,0.35064731280495925],[117,-64,67,0.35667853587399145],[117,-64,68,0.36280547668403035],[117,-64,69,0.36904810536169325],[117,-64,70,0.3754188568536438],[117,-64,71,0.38192248393421024],[117,-64,72,0.38855642400201434],[117,-64,73,0.3953112180075298],[117,-64,74,0.4021709822021189],[117,-64,75,0.4091139332807528],[117,-64,76,0.41611296737111114],[117,-64,77,0.42313629320206564],[117,-64,78,0.430148119665072],[117,-64,79,0.43710939786432],[117,-63,64,0.3404946806580727],[117,-63,65,0.3464348622705676],[117,-63,66,0.35248833088212805],[117,-63,67,0.3586368269815065],[117,-63,68,0.36488623673399134],[117,-63,69,0.37125482935367526],[117,-63,70,0.3777531946868765],[117,-63,71,0.38438418923052803],[117,-63,72,0.3911433663913029],[117,-63,73,0.398019453469483],[117,-63,74,0.40499487585938004],[117,-63,75,0.41204632884502834],[117,-63,76,0.419145397256793],[117,-63,77,0.42625922314241854],[117,-63,78,0.4333512214952015],[117,-63,79,0.44038184397391433],[117,-62,64,0.34229176038061926],[117,-62,65,0.3483260541866147],[117,-62,66,0.3544766760824053],[117,-62,67,0.3607267121061648],[117,-62,68,0.36708154064580956],[117,-62,69,0.37355748493943447],[117,-62,70,0.3801631998036529],[117,-62,71,0.38689969377634287],[117,-62,72,0.39376079918043044],[117,-62,73,0.40073368461692394],[117,-62,74,0.4077994102328225],[117,-62,75,0.4149335260017931],[117,-62,76,0.4221067131486475],[117,-62,77,0.4292854687435069],[117,-62,78,0.43643283338843236],[117,-62,79,0.44350916181961025],[117,-61,64,0.3442491042144709],[117,-61,65,0.350364625600628],[117,-61,66,0.3565979217755098],[117,-61,67,0.3629336957856991],[117,-61,68,0.36937677760722176],[117,-61,69,0.37594135699928016],[117,-61,70,0.38263410948884335],[117,-61,71,0.3894542779933904],[117,-61,72,0.3963941603201662],[117,-61,73,0.40343963586379544],[117,-61,74,0.4105707317503064],[117,-61,75,0.4177622285732726],[117,-61,76,0.4249843057667889],[117,-61,77,0.4322032265611932],[117,-61,78,0.4393820623710958],[117,-61,79,0.4464814563727092],[117,-60,64,0.3463487360230896],[117,-60,65,0.35253295393305734],[117,-60,66,0.3588348233001723],[117,-60,67,0.3652408820058479],[117,-60,68,0.37175538667640656],[117,-60,69,0.3783902612926971],[117,-60,70,0.385150197658682],[117,-60,71,0.3920327807777485],[117,-60,72,0.3990289734770922],[117,-60,73,0.406123637964648],[117,-60,74,0.4132960945120004],[117,-60,75,0.4205207173596546],[117,-60,76,0.427767567845569],[117,-60,77,0.4350030646647162],[117,-60,78,0.44219069107692327],[117,-60,79,0.449291738793605],[117,-59,64,0.3485701578033836],[117,-59,65,0.3548112574935692],[117,-59,66,0.36116838952311664],[117,-59,67,0.3676300795379659],[117,-59,68,0.3741999940835432],[117,-59,69,0.3808877078538666],[117,-59,70,0.38769595492783776],[117,-59,71,0.394620783829344],[117,-59,72,0.40165202180892484],[117,-59,73,0.408773774597226],[117,-59,74,0.4159649618045478],[117,-59,75,0.42319988804893555],[117,-59,76,0.4304488498049324],[117,-59,77,0.4376787778770704],[117,-59,78,0.4448539153166678],[117,-59,79,0.4519365305187645],[117,-58,64,0.35089154862509897],[117,-58,65,0.3571788262663147],[117,-58,66,0.3635791457289809],[117,-58,67,0.37008309704537445],[117,-58,68,0.37669373778863513],[117,-58,69,0.38341824774748734],[117,-58,70,0.3902574464303732],[117,-58,71,0.3972059661962366],[117,-58,72,0.40425268235749556],[117,-58,73,0.41138117787107426],[117,-58,74,0.41857024279898664],[117,-58,75,0.42579440863324197],[117,-58,76,0.4330245174944103],[117,-58,77,0.440228326129807],[117,-58,78,0.4473711445561563],[117,-58,79,0.45441650911400255],[117,-57,64,0.3532911557945602],[117,-57,65,0.3596154447343551],[117,-57,66,0.3660485876706847],[117,-57,67,0.3725832278088696],[117,-57,68,0.3792217791803895],[117,-57,69,0.38596900311521404],[117,-57,70,0.39282384737976966],[117,-57,71,0.39977962908168563],[117,-57,72,0.406824421177101],[117,-57,73,0.4139414729555934],[117,-57,74,0.42110966470684563],[117,-57,75,0.42830399669165314],[117,-57,76,0.43549611245930664],[117,-57,77,0.44265485647451613],[117,-57,78,0.449746865940108],[117,-57,79,0.4567371966279042],[117,-56,64,0.3557453043228355],[117,-56,65,0.36209899220278513],[117,-56,66,0.36855636836987987],[117,-56,67,0.375112020306957],[117,-56,68,0.3817676557039031],[117,-56,69,0.38852560435808436],[117,-56,70,0.3953829746725691],[117,-56,71,0.4023318413044219],[117,-56,72,0.4093595830276098],[117,-56,73,0.4164492539282614],[117,-56,74,0.42357998816419784],[117,-56,75,0.43072743844458267],[117,-56,76,0.4378642483100468],[117,-56,77,0.44496055821945607],[117,-56,78,0.45198454537681954],[117,-56,79,0.4589029971618677],[117,-55,64,0.35820760782082656],[117,-55,65,0.36458186940320325],[117,-55,66,0.371053908983747],[117,-55,67,0.37762005957168526],[117,-55,68,0.384281249197181],[117,-55,69,0.39103742183473583],[117,-55,70,0.3978839330640511],[117,-55,71,0.4048117345464626],[117,-55,72,0.4118076572155994],[117,-55,73,0.4188547273149671],[117,-55,74,0.4259325155516058],[117,-55,75,0.4330175195643021],[117,-55,76,0.4400835798342999],[117,-55,77,0.4471023290967518],[117,-55,78,0.45404367524251715],[117,-55,79,0.46087631763346726],[117,-54,64,0.3606258490690862],[117,-54,65,0.3670097253515986],[117,-54,66,0.373484960737089],[117,-54,67,0.3800493620930952],[117,-54,68,0.3867030060114178],[117,-54,69,0.3934435707750283],[117,-54,70,0.4002648209927892],[117,-54,71,0.4071567760691034],[117,-54,72,0.41410592981145344],[117,-54,73,0.42109550294205433],[117,-54,74,0.42810572883832404],[117,-54,75,0.4351141727610399],[117,-54,76,0.44209608476278683],[117,-54,77,0.44902478640329657],[117,-54,78,0.4558720913327759],[117,-54,79,0.46260875974040494],[117,-53,64,0.36295441581021903],[117,-53,65,0.3693353331893173],[117,-53,66,0.3758009235006089],[117,-53,67,0.38235013803179724],[117,-53,68,0.3889821326963442],[117,-53,69,0.39569250104949794],[117,-53,70,0.4024736380000108],[117,-53,71,0.40931487566640434],[117,-53,72,0.4162026284086018],[117,-53,73,0.42312057167773803],[117,-53,74,0.4300498550889216],[117,-53,75,0.43696935005970156],[117,-53,76,0.4438559322938125],[117,-53,77,0.45068479932615135],[117,-53,78,0.4574298232811082],[117,-53,79,0.464063938933436],[117,-52,64,0.3651546065396171],[117,-52,65,0.37151886061010775],[117,-52,66,0.37796107759186404],[117,-52,67,0.3844809812834029],[117,-52,68,0.3910767416420802],[117,-52,69,0.39774209655811216],[117,-52,70,0.4044683371157607],[117,-52,71,0.4112443915321213],[117,-52,72,0.4180568832740325],[117,-52,73,0.42489022501426044],[117,-52,74,0.4317267489401499],[117,-52,75,0.4385468738682729],[117,-52,76,0.44532930955690536],[117,-52,77,0.45205129854514764],[117,-52,78,0.4586888957834441],[117,-52,79,0.46521728625625614],[117,-51,64,0.3671949970095522],[117,-51,65,0.3735281938721503],[117,-51,66,0.37993286176977037],[117,-51,67,0.38640909790172484],[117,-51,68,0.3929540267700616],[117,-51,69,0.39955979602003794],[117,-51,70,0.40621688984445],[117,-51,71,0.4129141399868642],[117,-51,72,0.41963868391639947],[117,-51,73,0.4263759621615847],[117,-51,74,0.43310975545501107],[117,-51,75,0.4398222622813925],[117,-51,76,0.4464942173594426],[117,-51,77,0.4531050515234227],[117,-51,78,0.45963309340363395],[117,-51,79,0.4660558132376664],[117,-50,64,0.3690519260764801],[117,-50,65,0.37533938101447384],[117,-50,66,0.3816922700668931],[117,-50,67,0.3881106525692378],[117,-50,68,0.39459055596512377],[117,-50,69,0.4011228286725152],[117,-50,70,0.40769746370168736],[117,-50,71,0.41430351488210737],[117,-50,72,0.42092894195807323],[117,-50,73,0.4275604996006075],[117,-50,74,0.43418367115599255],[117,-50,75,0.4407826478906678],[117,-50,76,0.447340354427204],[117,-50,77,0.45383852099752164],[117,-50,78,0.46025780306785774],[117,-50,79,0.46657794881635206],[117,-49,64,0.36898147013357785],[117,-49,65,0.3758110799970617],[117,-49,66,0.38271995611870474],[117,-49,67,0.38956860115970277],[117,-49,68,0.39597074718487457],[117,-49,69,0.40241736564205477],[117,-49,70,0.4088982685261291],[117,-49,71,0.4154030351352873],[117,-49,72,0.4219207321621534],[117,-49,73,0.42843968390468096],[117,-49,74,0.434947293612644],[117,-49,75,0.44142991692103073],[117,-49,76,0.4478727882514013],[117,-49,77,0.4542600009871744],[117,-49,78,0.460574542149373],[117,-49,79,0.4667983822168282],[117,-48,64,0.36893134093295504],[117,-48,65,0.3757981962898861],[117,-48,66,0.3827522432375962],[117,-48,67,0.38977682041117045],[117,-48,68,0.39685843679843497],[117,-48,69,0.40343417871580944],[117,-48,70,0.40981503983030815],[117,-48,71,0.41621364838002656],[117,-48,72,0.42262037321481616],[117,-48,73,0.42902526821585674],[117,-48,74,0.4354177761381822],[117,-48,75,0.44178649226427985],[117,-48,76,0.4481189889473665],[117,-48,77,0.4544017020391271],[117,-48,78,0.46061988010728994],[117,-48,79,0.4667575972547599],[117,-47,64,0.3689792785627906],[117,-47,65,0.37587998391473915],[117,-47,66,0.382874238575239],[117,-47,67,0.3899468685736951],[117,-47,68,0.3970858986381611],[117,-47,69,0.4041701321014211],[117,-47,70,0.41044955978039027],[117,-47,71,0.4167422226835403],[117,-47,72,0.42303989095317035],[117,-47,73,0.4293344079473734],[117,-47,74,0.4356172755552975],[117,-47,75,0.4418793077556696],[117,-47,76,0.44811035369498725],[117,-47,77,0.45429909146760517],[117,-47,78,0.460432893678947],[117,-47,79,0.46649776576668517],[117,-46,64,0.3691327134723941],[117,-46,65,0.37606115464347756],[117,-46,66,0.38308764231396836],[117,-46,67,0.3901988865950764],[117,-46,68,0.39738455685422225],[117,-46,69,0.4046284383605382],[117,-46,70,0.41080910458177766],[117,-46,71,0.4170001812023226],[117,-46,72,0.42319485324486666],[117,-46,73,0.4293867259341872],[117,-46,74,0.43556929399962524],[117,-46,75,0.4417354879674829],[117,-46,76,0.44787729890874517],[117,-46,77,0.45398548300186214],[117,-46,78,0.4600493471566921],[117,-46,79,0.4660566168256399],[117,-45,64,0.36939107194749093],[117,-45,65,0.37633877524013043],[117,-45,66,0.38338697320469106],[117,-45,67,0.3905246302615155],[117,-45,68,0.39774320362890564],[117,-45,69,0.40481794460515175],[117,-45,70,0.4109057875522405],[117,-45,71,0.4170029110802044],[117,-45,72,0.42310385331855893],[117,-45,73,0.4292038782648983],[117,-45,74,0.43529833460750117],[117,-45,75,0.4413821002382473],[117,-45,76,0.44744911409411564],[117,-45,77,0.45349199684777197],[117,-45,78,0.45950176184098024],[117,-45,79,0.46546761752045174],[117,-44,64,0.3697466402974702],[117,-44,65,0.37670312023450486],[117,-44,66,0.38376040101567854],[117,-44,67,0.3909100364274269],[117,-44,68,0.3981454236302405],[117,-44,69,0.40475242251715476],[117,-44,70,0.4107559041988696],[117,-44,71,0.41676917235367106],[117,-44,72,0.42278799095790776],[117,-44,73,0.42880911571712893],[117,-44,74,0.43482955046169897],[117,-44,75,0.44084589755971676],[117,-44,76,0.44685380413657283],[117,-44,77,0.4528475057604943],[117,-44,78,0.4588194691135582],[117,-44,79,0.46476013501964863],[117,-43,64,0.3701854203543303],[117,-43,65,0.3771385168488477],[117,-43,66,0.38419057198677664],[117,-43,67,0.391336020724329],[117,-43,68,0.39853760302728425],[117,-43,69,0.40444986017127266],[117,-43,70,0.4103792774355435],[117,-43,71,0.41632050517780067],[117,-43,72,0.42227035006802893],[117,-43,73,0.42822683951800145],[117,-43,74,0.43418838574466456],[117,-43,75,0.4401530515117568],[117,-43,76,0.44611791946410356],[117,-43,77,0.4520785668271873],[117,-43,78,0.45802864709215485],[117,-43,79,0.463959580145228],[117,-42,64,0.3706879788090184],[117,-42,65,0.37762418455508884],[117,-42,66,0.3846554296942921],[117,-42,67,0.39177927161287107],[117,-42,68,0.398084911641678],[117,-42,69,0.4039317535999044],[117,-42,70,0.4097986010364008],[117,-42,71,0.41568063364588115],[117,-42,72,0.4215754710844558],[117,-42,73,0.42748215011458685],[117,-42,74,0.43340020801468593],[117,-42,75,0.4393288744045243],[117,-42,76,0.44526637349731873],[117,-42,77,0.45120933863647433],[117,-42,78,0.4571523408109475],[117,-42,79,0.46308753266997404],[117,-41,64,0.3712302929403743],[117,-41,65,0.37813507177168415],[117,-41,66,0.3851290337643627],[117,-41,67,0.391670689282109],[117,-41,68,0.39743023107696523],[117,-41,69,0.40322239600468385],[117,-41,70,0.40903877938706407],[117,-41,71,0.41487486444241717],[117,-41,72,0.42072881666222234],[117,-41,73,0.4266003876081613],[117,-41,74,0.43248993049138096],[117,-41,75,0.4383975297608377],[117,-41,76,0.4443222467779048],[117,-41,77,0.450261483491729],[117,-41,78,0.45621046585565084],[117,-41,79,0.4621618485413273],[117,-40,64,0.3717845953120505],[117,-40,65,0.37864269223125585],[117,-40,66,0.38523148695328513],[117,-40,67,0.3908893659412814],[117,-40,68,0.3965996541093556],[117,-40,69,0.40234816249296174],[117,-40,70,0.4081262615682216],[117,-40,71,0.41392947854192846],[117,-40,72,0.41975622905559723],[117,-40,73,0.4256066624797278],[117,-40,74,0.43148162321171396],[117,-40,75,0.43738173024818555],[117,-40,76,0.44330657714495014],[117,-40,77,0.449254054306799],[117,-40,78,0.4552197953669056],[117,-40,79,0.4611967492233718],[117,-39,64,0.3723202200239489],[117,-39,65,0.3788117017253452],[117,-39,66,0.3843395745584833],[117,-39,67,0.3899503659678408],[117,-39,68,0.3956210897997223],[117,-39,69,0.4013367881994032],[117,-39,70,0.4070883677871973],[117,-39,71,0.4128711141462573],[117,-39,72,0.4186833775789594],[117,-39,73,0.4245253752142516],[117,-39,74,0.43039811189819527],[117,-39,75,0.43630242215117443],[117,-39,76,0.4422381353114277],[117,-39,77,0.44820336580739495],[117,-39,78,0.4541939303125774],[117,-39,79,0.46020289333821607],[117,-38,64,0.37247584571767994],[117,-38,65,0.3778331934989499],[117,-38,66,0.38331107544504567],[117,-38,67,0.3888829953366056],[117,-38,68,0.39452349350370125],[117,-38,69,0.4002166376431459],[117,-38,70,0.4059526061619442],[117,-38,71,0.41172613904063976],[117,-38,72,0.4175351945258188],[117,-38,73,0.42337972341686114],[117,-38,74,0.42926056336637436],[117,-38,75,0.4351784554607201],[117,-38,76,0.44113318517906824],[117,-38,77,0.4471228496482135],[117,-38,78,0.45314325291773505],[117,-38,79,0.4591874307779512],[117,-37,64,0.3714427179681878],[117,-37,65,0.37674170541443147],[117,-37,66,0.3821763844071218],[117,-37,67,0.38771718107667047],[117,-37,68,0.39333608664389796],[117,-37,69,0.399015963169821],[117,-37,70,0.4047459778587782],[117,-37,71,0.4105200105438224],[117,-37,72,0.41633529791633483],[117,-37,73,0.4221911950061672],[117,-37,74,0.42808805628946917],[117,-37,75,0.4340262386461716],[117,-37,76,0.4400052282192545],[117,-37,77,0.44602289304514486],[117,-37,78,0.4520748631306368],[117,-37,79,0.4581540394485993],[117,-36,64,0.37032181792442537],[117,-36,65,0.37556822212727964],[117,-36,66,0.3809659972376748],[117,-36,67,0.38648264805249183],[117,-36,68,0.3920875639744241],[117,-36,69,0.397762150336152],[117,-36,70,0.40349426859117016],[117,-36,71,0.4092766212310883],[117,-36,72,0.4151053994449291],[117,-36,73,0.4209790460689076],[117,-36,74,0.42689713613503905],[117,-36,75,0.43285937717187745],[117,-36,76,0.43886473124144687],[117,-36,77,0.44491066051466366],[117,-36,78,0.4509924979950309],[117,-36,79,0.4571029447990356],[117,-35,64,0.36914402530504675],[117,-35,65,0.37434323269512587],[117,-35,66,0.37970965003038426],[117,-35,67,0.38520808137446283],[117,-35,68,0.39080528608860715],[117,-35,69,0.3964809481126905],[117,-35,70,0.40222132450179965],[117,-35,71,0.40801762862092594],[117,-35,72,0.4138646960084358],[117,-35,73,0.419759761966],[117,-35,74,0.42570135309163526],[117,-35,75,0.43168829482006393],[117,-35,76,0.43771883686853713],[117,-35,77,0.4437898983082151],[117,-35,78,0.4498964337928965],[117,-35,79,0.4560309222801472],[117,-34,64,0.3679390781218455],[117,-34,65,0.3730958382623808],[117,-34,66,0.3784354420285194],[117,-34,67,0.3839202721200155],[117,-34,68,0.3895144549514053],[117,-34,69,0.3951956818077067],[117,-34,70,0.400948310474088],[117,-34,71,0.40676176703645284],[117,-34,72,0.4126292432118757],[117,-34,73,0.4185465002929655],[117,-34,74,0.42451078181250546],[117,-34,75,0.4305198368873813],[117,-34,76,0.43657105604054436],[117,-34,77,0.44266072112812277],[117,-34,78,0.44878337081745223],[117,-34,79,0.4549312828724574],[117,-33,64,0.3667346570450733],[117,-33,65,0.3718528411450646],[117,-33,66,0.3771689396688036],[117,-33,67,0.3826432440913981],[117,-33,68,0.3882372702799576],[117,-33,69,0.39392644665353366],[117,-33,70,0.3996929489537431],[117,-33,71,0.40552413988280606],[117,-33,72,0.4114113092746205],[117,-33,73,0.41734851431880793],[117,-33,74,0.42333152181993594],[117,-33,75,0.4293568543343846],[117,-33,76,0.4354209418754333],[117,-33,77,0.44151938071454067],[117,-33,78,0.44764630063505995],[117,-33,79,0.4537938418153339],[117,-32,64,0.3655554492604453],[117,-32,65,0.3706378129693514],[117,-32,66,0.37593225952772896],[117,-32,67,0.38139735939268804],[117,-32,68,0.38699206464853125],[117,-32,69,0.3926892800454502],[117,-32,70,0.3984687374051547],[117,-32,71,0.4043154906211535],[117,-32,72,0.410218707793996],[117,-32,73,0.41617055555633486],[117,-32,74,0.42216517743717735],[117,-32,75,0.4281977679849559],[117,-32,76,0.4342637442279597],[117,-32,77,0.44035801589954177],[117,-32,78,0.4464743556958405],[117,-32,79,0.4526048706669133],[117,-31,64,0.36442218952212185],[117,-31,65,0.3694701395913919],[117,-31,66,0.374743127949052],[117,-31,67,0.38019840067655214],[117,-31,68,0.3857924152581682],[117,-31,69,0.39149531048271363],[117,-31,70,0.397284142581986],[117,-31,71,0.40314145076900365],[117,-31,72,0.4090541078665014],[117,-31,73,0.4150122541537961],[117,-31,74,0.4210083161453],[117,-31,75,0.42703611189641716],[117,-31,76,0.4330900443044542],[117,-31,77,0.4391643837347132],[117,-31,78,0.44525264115644564],[117,-31,79,0.45134703282104444],[117,-30,64,0.36335067619561856],[117,-30,65,0.36836404061318456],[117,-30,66,0.37361391521548987],[117,-30,67,0.3790566279920017],[117,-30,68,0.384646230387825],[117,-30,69,0.39034988133296233],[117,-30,70,0.3961417698573686],[117,-30,71,0.4020017633164278],[117,-30,72,0.4079143201201229],[117,-30,73,0.41386747584395256],[117,-30,74,0.4198519043011405],[117,-30,75,0.42586005505220764],[117,-30,76,0.43188536871471256],[117,-30,77,0.43792157131395354],[117,-30,78,0.4439620487858634],[117,-30,79,0.44999930260722315],[117,-29,64,0.362350760187146],[117,-29,65,0.3673275614093873],[117,-29,66,0.3725506422246588],[117,-29,67,0.3779758082575961],[117,-29,68,0.38355480863241576],[117,-29,69,0.38925164762445275],[117,-29,70,0.395037505936281],[117,-29,71,0.40088948001821695],[117,-29,72,0.40678955727423116],[117,-29,73,0.41272365424174273],[117,-29,74,0.4186807191991324],[117,-29,75,0.42465190056685426],[117,-29,76,0.4306297823709873],[117,-29,77,0.4366076879328094],[117,-29,78,0.44257905283556337],[117,-29,79,0.4485368681007893],[117,-28,64,0.3614253047714962],[117,-28,65,0.36636153569311647],[117,-28,66,0.3715519577392051],[117,-28,67,0.37695221549034186],[117,-28,68,0.38251186913401114],[117,-28,69,0.38819164416564544],[117,-28,70,0.393959633361084],[117,-28,71,0.39979013110293327],[117,-28,72,0.405662667916301],[117,-28,73,0.41156109734561586],[117,-28,74,0.4174727365143043],[117,-28,75,0.42338756163755975],[117,-28,76,0.42929745967841965],[117,-28,77,0.4351955372495688],[117,-28,78,0.44107548776859756],[117,-28,79,0.44693101777343713],[117,-27,64,0.3605691144610142],[117,-27,65,0.36545851677683333],[117,-27,66,0.3706080844057348],[117,-27,67,0.375973600040878],[117,-27,68,0.38150255112753434],[117,-27,69,0.38715232340052147],[117,-27,70,0.39288791532289585],[117,-27,71,0.39868086603345576],[117,-27,72,0.40450834226939114],[117,-27,73,0.41035226717257],[117,-27,74,0.41619849222827404],[117,-27,75,0.42203601353029385],[117,-27,76,0.4278562335033864],[117,-27,77,0.4336522691437112],[117,-27,78,0.4394183077607411],[117,-27,79,0.4451490111206174],[117,-26,64,0.3597678312017393],[117,-26,65,0.36460167582555997],[117,-26,66,0.369699731874732],[117,-26,67,0.37501812521847705],[117,-26,68,0.3805023812495789],[117,-26,69,0.38610656152859973],[117,-26,70,0.3917926494043195],[117,-26,71,0.3975295640576421],[117,-26,72,0.403292288818561],[117,-26,73,0.4089895836687727],[117,-26,74,0.4144458070260664],[117,-26,75,0.4199836650637677],[117,-26,76,0.4255855062423938],[117,-26,77,0.43123042264252737],[117,-26,78,0.4368950365501321],[117,-26,79,0.4425542462799855],[117,-25,64,0.3589967273932585],[117,-25,65,0.36376364546640244],[117,-25,66,0.3687970005347378],[117,-25,67,0.37405333870700236],[117,-25,68,0.3794763200054008],[117,-25,69,0.3848769104301839],[117,-25,70,0.38977975976151236],[117,-25,71,0.3947983871462506],[117,-25,72,0.3999390452152862],[117,-25,73,0.40520068881963567],[117,-25,74,0.41057590569427577],[117,-25,75,0.4160518191592491],[117,-25,76,0.4216109617739864],[117,-25,77,0.4272321188998584],[117,-25,78,0.4328911411723379],[117,-25,79,0.4385617249371531],[117,-24,64,0.3582182573723772],[117,-24,65,0.362906345687733],[117,-24,66,0.36766318699147615],[117,-24,67,0.3721888594377679],[117,-24,68,0.3767633316251355],[117,-24,69,0.38142401603928544],[117,-24,70,0.3861975875893089],[117,-24,71,0.3911009811723006],[117,-24,72,0.396142362638315],[117,-24,73,0.40132208153971316],[117,-24,74,0.40663360453705666],[117,-24,75,0.41206442834593854],[117,-24,76,0.41759697112841476],[117,-24,77,0.42320944125929216],[117,-24,78,0.4288766824316835],[117,-24,79,0.4345709941074713],[117,-23,64,0.3557284628202624],[117,-23,65,0.36012512917544215],[117,-23,66,0.3644976028632009],[117,-23,67,0.36887837707474885],[117,-23,68,0.37331475201813935],[117,-23,69,0.37784723340631216],[117,-23,70,0.3825051346841505],[117,-23,71,0.3873075252655177],[117,-23,72,0.3922641961414989],[117,-23,73,0.3973766140855662],[117,-23,74,0.4026388633246836],[117,-23,75,0.4080385735460771],[117,-23,76,0.4135578331172115],[117,-23,77,0.4191740864118362],[117,-23,78,0.42486101415823885],[117,-23,79,0.4305893957566247],[117,-22,64,0.35273424111147134],[117,-22,65,0.3569802449085499],[117,-22,66,0.3612090560352099],[117,-22,67,0.3654528020277349],[117,-22,68,0.36976028467926625],[117,-22,69,0.37417475159044083],[117,-22,70,0.37872783685963163],[117,-22,71,0.38344045982510494],[117,-22,72,0.38832378481157376],[117,-22,73,0.3933801761456817],[117,-22,74,0.3986041473001728],[117,-22,75,0.4039833030158683],[117,-22,76,0.40949927324715085],[117,-22,77,0.41512863778097403],[117,-22,78,0.42084384039208805],[117,-22,79,0.4266140914178386],[117,-21,64,0.3496430321358306],[117,-21,65,0.35374058452673557],[117,-21,66,0.3578297306756682],[117,-21,67,0.36194199710266795],[117,-21,68,0.3661272617434391],[117,-21,69,0.3704311038226606],[117,-21,70,0.3748871412359402],[117,-21,71,0.37951787271118725],[117,-21,72,0.3843356243302762],[117,-21,73,0.38934349835100207],[117,-21,74,0.39453632318238435],[117,-21,75,0.3999016033437106],[117,-21,76,0.40542046822236644],[117,-21,77,0.41106861843811854],[117,-21,78,0.4168172686228895],[117,-21,79,0.4226340854349441],[117,-20,64,0.34648972664690625],[117,-20,65,0.3504388325879947],[117,-20,66,0.3543899233598081],[117,-20,67,0.35837365510343844],[117,-20,68,0.3624404993324469],[117,-20,69,0.36663791311508087],[117,-20,70,0.3710011544670699],[117,-20,71,0.3755540544677536],[117,-20,72,0.38030993674873315],[117,-20,73,0.38527254715000453],[117,-20,74,0.390436992400188],[117,-20,75,0.395790686641201],[117,-20,76,0.40131430458882367],[117,-20,77,0.40698274009988517],[117,-20,78,0.41276606890520207],[117,-20,79,0.41863051426481135],[117,-19,64,0.3433088208956454],[117,-19,65,0.3471071008181037],[117,-19,66,0.35091907247344445],[117,-19,67,0.35477423445346273],[117,-19,68,0.35872313413544316],[117,-19,69,0.36281462724150887],[117,-19,70,0.3670852765644759],[117,-19,71,0.37156003454380504],[117,-19,72,0.37625311574799747],[117,-19,73,0.38116888869499777],[117,-19,74,0.38630278588795697],[117,-19,75,0.3916422308913293],[117,-19,76,0.3971675812272467],[117,-19,77,0.4028530858354095],[117,-19,78,0.4086678558124992],[117,-19,79,0.4145768471293744],[117,-18,64,0.3401316306098601],[117,-18,65,0.3437738821811234],[117,-18,66,0.34744244688451636],[117,-18,67,0.35116537489559285],[117,-18,68,0.354992758921067],[117,-18,69,0.3589743694161219],[117,-18,70,0.3631477650467453],[117,-18,71,0.3675388603528691],[117,-18,72,0.3721627252252959],[117,-18,73,0.377024414667859],[117,-18,74,0.3821198277664455],[117,-18,75,0.3874365947144965],[117,-18,76,0.3929549906798375],[117,-18,77,0.39864887524132436],[117,-18,78,0.40448665607719014],[117,-18,79,0.4104322755503552],[117,-17,64,0.3369672251400299],[117,-17,65,0.3404457388749731],[117,-17,66,0.34396379386494486],[117,-17,67,0.3475477156677144],[117,-17,68,0.35124661386055006],[117,-17,69,0.3551106889420093],[117,-17,70,0.35917820582365956],[117,-17,71,0.36347591750214536],[117,-17,72,0.3680197615502089],[117,-17,73,0.3728155999441274],[117,-17,74,0.3778600012206661],[117,-17,75,0.3831410638607027],[117,-17,76,0.3886392797077828],[117,-17,77,0.39432843614937463],[117,-17,78,0.4001765557181189],[117,-17,79,0.4061468717103564],[117,-16,64,0.33376784929548653],[117,-16,65,0.33707623248112534],[117,-16,66,0.3404383772342516],[117,-16,67,0.34387865248995925],[117,-16,68,0.3474446461161061],[117,-16,69,0.3511864493627478],[117,-16,70,0.35514267301620045],[117,-16,71,0.35934070286815883],[117,-16,72,0.363797267238744],[117,-16,73,0.36851906266839574],[117,-16,74,0.373503436865091],[117,-16,75,0.378739127869646],[117,-16,76,0.38420705828490614],[117,-16,77,0.3898811833060417],[117,-16,78,0.39572939119086936],[117,-16,79,0.40171445472173606],[117,-15,64,0.33048323963445114],[117,-15,65,0.3336171776752441],[117,-15,66,0.33682047307545276],[117,-15,67,0.34011535099386614],[117,-15,68,0.3435473336008189],[117,-15,69,0.34716581030418103],[117,-15,70,0.3510093015419616],[117,-15,71,0.3551055283516326],[117,-15,72,0.3594718305045959],[117,-15,73,0.3641156589386201],[117,-15,74,0.36903514168367024],[117,-15,75,0.3742197223219622],[117,-15,76,0.3796508698749742],[117,-15,77,0.38530285887036686],[117,-15,78,0.39114361821252736],[117,-15,79,0.39713564736266216],[117,-14,64,0.3270753607241509],[117,-14,65,0.3300323468034947],[117,-14,66,0.333075849101957],[117,-14,67,0.3362258006689566],[117,-14,68,0.33952512062163764],[117,-14,69,0.3430218711206653],[117,-14,70,0.34675399287890424],[117,-14,71,0.3507491770769718],[117,-14,72,0.35502511878330767],[117,-14,73,0.359589861622337],[117,-14,74,0.36444223300546824],[117,-14,75,0.3695723690519758],[117,-14,76,0.3749623281453032],[117,-14,77,0.3805867918971184],[117,-14,78,0.3864138521290658],[117,-14,79,0.3924058823317796],[117,-13,64,0.32351636342262213],[117,-13,65,0.3262954532960669],[117,-13,66,0.32917980390420376],[117,-13,67,0.33218694163608875],[117,-13,68,0.33535666412225845],[117,-13,69,0.3387350685994924],[117,-13,70,0.34235899545235193],[117,-13,71,0.3462556961375837],[117,-13,72,0.35044291126184296],[117,-13,73,0.35492905721678636],[117,-13,74,0.35971352081185004],[117,-13,75,0.3647870611228105],[117,-13,76,0.37013231755791337],[117,-13,77,0.3757244229353443],[117,-13,78,0.38153172016894155],[117,-13,79,0.3875165809747777],[117,-12,64,0.3197867151613017],[117,-12,65,0.32238830463079515],[117,-12,66,0.32511537147817876],[117,-12,67,0.327982950489947],[117,-12,68,0.33102723054459],[117,-12,69,0.33429171424340043],[117,-12,70,0.33781161075334054],[117,-12,71,0.34161329833139814],[117,-12,72,0.34571422079036873],[117,-12,73,0.3501229097473853],[117,-12,74,0.3548391322240771],[117,-12,75,0.3598541629099019],[117,-12,76,0.36515118014854286],[117,-12,77,0.37070578446393043],[117,-12,78,0.3764866382105995],[117,-12,79,0.3824562247144595],[117,-11,64,0.3158735026097354],[117,-11,65,0.3182991251293541],[117,-11,66,0.3208716912396906],[117,-11,67,0.32360368535983947],[117,-11,68,0.32652724342439665],[117,-11,69,0.3296826712294467],[117,-11,70,0.3331030252826795],[117,-11,71,0.3368133729892311],[117,-11,72,0.34083050529945397],[117,-11,73,0.34516279186152754],[117,-11,74,0.3498101783767579],[117,-11,75,0.35476432556323173],[117,-11,76,0.36000888884676785],[117,-11,77,0.36551993761979307],[117,-11,78,0.37126651264226534],[117,-11,79,0.3772113199061381],[117,-10,64,0.3117689077434213],[117,-10,65,0.31402104950222265],[117,-10,66,0.3164425443473063],[117,-10,67,0.3190432909332431],[117,-10,68,0.3218509823987136],[117,-10,69,0.32490217166111307],[117,-10,70,0.3282272688798331],[117,-10,71,0.33184960639910516],[117,-10,72,0.33578496917194495],[117,-10,73,0.3400412835167867],[117,-10,74,0.3446184640320261],[117,-10,75,0.3495084181677023],[117,-10,76,0.3546952076328772],[117,-10,77,0.3601553655050669],[117,-10,78,0.3658583676080741],[117,-10,79,0.37176725643904346],[117,-9,64,0.3074688589357114],[117,-9,65,0.3095507886537986],[117,-9,66,0.3118250577388694],[117,-9,67,0.31429896474664887],[117,-9,68,0.316995434831654],[117,-9,69,0.31994677521874854],[117,-9,70,0.32318030043320073],[117,-9,71,0.3267172127064242],[117,-9,72,0.3305719553252196],[117,-9,73,0.3347517388895936],[117,-9,74,0.3392562404285331],[117,-9,75,0.34407747496515895],[117,-9,76,0.34919983876991645],[117,-9,77,0.35460032319626267],[117,-9,78,0.3602488976616637],[117,-9,79,0.36610906002014265],[117,-8,64,0.3029718592522341],[117,-8,65,0.3048874698132292],[117,-8,66,0.3070185778292326],[117,-8,67,0.3093698865710548],[117,-8,68,0.3119593017593367],[117,-8,69,0.3148144707696663],[117,-8,70,0.3179592223772921],[117,-8,71,0.32141227652212856],[117,-8,72,0.3251864290459761],[117,-8,73,0.3292879223425166],[117,-8,74,0.3337160019891096],[117,-8,75,0.33846265904203787],[117,-8,76,0.3435125572945872],[117,-8,77,0.34884314442372905],[117,-8,78,0.3544249455904579],[117,-8,79,0.360222037713722],[117,-7,64,0.2982779946358641],[117,-7,65,0.30003165356412653],[117,-7,66,0.3020237163147251],[117,-7,67,0.3042563131995683],[117,-7,68,0.3067421603086758],[117,-7,69,0.309503922918464],[117,-7,70,0.3125616257579817],[117,-7,71,0.3159312087943568],[117,-7,72,0.319623554882318],[117,-7,73,0.3236437144820623],[117,-7,74,0.3279903276285012],[117,-7,75,0.3326552429213435],[117,-7,76,0.33762333289694246],[117,-7,77,0.3428725047430351],[117,-7,78,0.34837390493089665],[117,-7,79,0.354092315968892],[117,-6,64,0.2933881251276153],[117,-6,65,0.2949845308031812],[117,-6,66,0.2968415709788582],[117,-6,67,0.2989588413780564],[117,-6,68,0.3013437851549257],[117,-6,69,0.3040138658569358],[117,-6,70,0.3069850679863564],[117,-6,71,0.31027031779094477],[117,-6,72,0.3138783681343851],[117,-6,73,0.3178128895126609],[117,-6,74,0.32207176750675337],[117,-6,75,0.3266466065261],[117,-6,76,0.33152243926625424],[117,-6,77,0.3366776408820074],[117,-6,78,0.3420840464684665],[117,-6,79,0.34770727005025487],[117,-5,64,0.2883032626712137],[117,-5,65,0.28974730306109997],[117,-5,66,0.29147312479133847],[117,-5,67,0.29347784200432314],[117,-5,68,0.2957636319471289],[117,-5,69,0.2983426472095405],[117,-5,70,0.301226685703244],[117,-5,71,0.3044254972993856],[117,-5,72,0.30794554269472635],[117,-5,73,0.31178896524639615],[117,-5,74,0.31595277616541295],[117,-5,75,0.320428253005084],[117,-5,76,0.3252005509312608],[117,-5,77,0.3302485258211164],[117,-5,78,0.33554476781038384],[117,-5,79,0.3410558434989567],[117,-4,64,0.2830241393906679],[117,-4,65,0.28432074996348383],[117,-4,66,0.2859188269328759],[117,-4,67,0.28781306905127124],[117,-4,68,0.29000048594350075],[117,-4,69,0.2924879248595862],[117,-4,70,0.2952829454354614],[117,-4,71,0.2983920343731432],[117,-4,72,0.30181925716897057],[117,-4,73,0.30556512725854473],[117,-4,74,0.30962569305981086],[117,-4,75,0.31399184292826676],[117,-4,76,0.3186488275756755],[117,-4,77,0.32357599904986645],[117,-4,78,0.328746764933071],[117,-4,79,0.33412875599290326],[117,-3,64,0.2775509705062173],[117,-3,65,0.2787049878895767],[117,-3,66,0.28017835965700333],[117,-3,67,0.2819634469405544],[117,-3,68,0.28405227935617605],[117,-3,69,0.28644651997920817],[117,-3,70,0.289149534937611],[117,-3,71,0.2921645391353682],[117,-3,72,0.2954931613535371],[117,-3,73,0.29913422878408963],[117,-3,74,0.3030827715598879],[117,-3,75,0.3073292473682404],[117,-3,76,0.3118589857643514],[117,-3,77,0.31665185133859064],[117,-3,78,0.3216821244427467],[117,-3,79,0.32691859774845505],[117,-2,64,0.2718834162625467],[117,-2,65,0.2728994241013444],[117,-2,66,0.2742505951154251],[117,-2,67,0.2759270403037996],[117,-2,68,0.27791608110534594],[117,-2,69,0.2802144296719233],[117,-2,70,0.2828213982793595],[117,-2,71,0.28573699929304747],[117,-2,72,0.2889604452606204],[117,-2,73,0.29248886803117413],[117,-2,74,0.2963162575361213],[117,-2,75,0.3004326203875298],[117,-2,76,0.30482335797519844],[117,-2,77,0.30946886327774914],[117,-2,78,0.31434433515053695],[117,-2,79,0.31941980841730844],[117,-1,64,0.26602074737562903],[117,-1,65,0.26690291075556605],[117,-1,66,0.2681337464167835],[117,-1,67,0.26970121021019045],[117,-1,68,0.27158826281838455],[117,-1,69,0.2737870027619953],[117,-1,70,0.2762929178498067],[117,-1,71,0.27910296210905533],[117,-1,72,0.28221401295456316],[117,-1,73,0.2856215446375628],[117,-1,74,0.2893185186702966],[117,-1,75,0.29329449144493835],[117,-1,76,0.2975349387923714],[117,-1,77,0.3020207967617657],[117,-1,78,0.306728217450553],[117,-1,79,0.3116285382793745],[117,0,64,0.2599622185602067],[117,0,65,0.2607141032769093],[117,0,66,0.2618257172597561],[117,0,67,0.2632829610118399],[117,0,68,0.2650648449802163],[117,0,69,0.26715928233053615],[117,0,70,0.2695582465087192],[117,0,71,0.2722558466279199],[117,0,72,0.27524676350004906],[117,0,73,0.2785248970182885],[117,0,74,0.28208222563658525],[117,0,75,0.2859078782211632],[117,0,76,0.2899874180824713],[117,0,77,0.29430233853754767],[117,0,78,0.29882976890724017],[117,0,79,0.30354238942303363],[117,1,64,0.2537076551670198],[117,1,65,0.2543320271966261],[117,1,66,0.25532465349947076],[117,1,67,0.25666948058290756],[117,1,68,0.25834202556335684],[117,1,69,0.2603265169963402],[117,1,70,0.2626117916594992],[117,1,71,0.2651893878109473],[117,1,72,0.26805198066353547],[117,1,73,0.2711920223404681],[117,1,74,0.27460058709722474],[117,1,75,0.27826642213484193],[117,1,76,0.2821752038738241],[117,1,77,0.28630899911001273],[117,1,78,0.29064593003828504],[117,1,79,0.29516004170973065],[117,2,64,0.24725825696328038],[117,2,65,0.24775685561580926],[117,2,66,0.24862969747998817],[117,2,67,0.24985887394863096],[117,2,68,0.2514168906959973],[117,2,69,0.25328484039186516],[117,2,70,0.25544885086794517],[117,2,71,0.25789821262788953],[117,2,72,0.26062383206757966],[117,2,73,0.263616880694998],[117,2,74,0.2668676411635098],[117,2,75,0.27036455048735414],[117,2,76,0.2740934403670049],[117,2,77,0.2780369741183793],[117,2,78,0.2821742792781409],[117,2,79,0.286480774550155],[117,3,64,0.24061761820161703],[117,3,65,0.24099090617227198],[117,3,66,0.24174196093157296],[117,3,67,0.242851110400117],[117,3,68,0.24428832943082177],[117,3,69,0.2460321407061408],[117,3,70,0.2480664186506502],[117,3,71,0.2503785634776928],[117,3,72,0.25295798694302796],[117,3,73,0.2557947844246701],[117,3,74,0.25887859416327286],[117,3,75,0.2621976440702506],[117,3,76,0.26573798608728366],[117,3,77,0.26948291766432614],[117,3,78,0.27341258951805897],[117,3,79,0.27750379844129874],[117,4,64,0.23379297771123872],[117,4,65,0.23403986215663986],[117,4,66,0.23466571408733938],[117,4,67,0.2356491767476195],[117,4,68,0.23695814210419075],[117,4,69,0.23856910841948428],[117,4,70,0.2404641530016456],[117,4,71,0.24262915979754207],[117,4,72,0.2450523475242411],[117,4,73,0.247722973777981],[117,4,74,0.250630215970223],[117,4,75,0.253762229532929],[117,4,76,0.257105383431086],[117,4,77,0.2606436726229064],[117,4,78,0.26435830672124394],[117,4,79,0.26822747373575273],[117,5,64,0.22679670068161653],[117,5,65,0.22691421946694199],[117,5,66,0.22740979285728175],[117,5,67,0.22826043879551178],[117,5,68,0.22943234463995868],[117,5,69,0.23090046480370952],[117,5,70,0.23264550433583295],[117,5,71,0.2346522004803027],[117,5,72,0.23690789645029833],[117,5,73,0.2394012807727332],[117,5,74,0.24212129306721478],[117,5,75,0.2450561967363592],[117,5,76,0.24819281866009887],[117,5,77,0.2515159556083446],[117,5,78,0.2550079467181161],[117,5,79,0.2586484110249624],[117,6,64,0.21964799535219834],[117,6,65,0.21963096414348635],[117,6,66,0.21998922989410483],[117,6,67,0.22069821755021307],[117,6,68,0.221722675590136],[117,6,69,0.22303637786158484],[117,6,70,0.2246190129966732],[117,6,71,0.22645451230422328],[117,6,72,0.22852966400745586],[117,6,73,0.23083288330770538],[117,6,74,0.23335313915910236],[117,6,75,0.23607903827078636],[117,6,76,0.23899806648743702],[117,6,77,0.24209598733861684],[117,6,78,0.24535639719646904],[117,6,79,0.24876043614138874],[117,7,64,0.21237503558988585],[117,7,65,0.21221634406903633],[117,7,66,0.2124286022685349],[117,7,67,0.2129856811776589],[117,7,68,0.21385104302845567],[117,7,69,0.21499750006349339],[117,7,70,0.21640398482838694],[117,7,71,0.21805391001119234],[117,7,72,0.21993381012264118],[117,7,73,0.22203213054932644],[117,7,74,0.22433816489835817],[117,7,75,0.2268411411996506],[117,7,76,0.22952945718187617],[117,7,77,0.2323900644929131],[117,7,78,0.23540800139906046],[117,7,79,0.23856607317090128],[117,8,64,0.20501099091590363],[117,8,65,0.20470458680183715],[117,8,66,0.20476320614648938],[117,8,67,0.20515939236847675],[117,8,68,0.20585554869875988],[117,8,69,0.20682371489509138],[117,8,70,0.20804228095501867],[117,8,71,0.2094943702123391],[117,8,72,0.21116649888791664],[117,8,73,0.2130473755974791],[117,8,74,0.21512684177754962],[117,8,75,0.21739495365207726],[117,8,76,0.21984120602555668],[117,8,77,0.2224538978560193],[117,8,78,0.22521963923684962],[117,8,79,0.22812299910127698],[117,9,64,0.1975823528933554],[117,9,65,0.19712404345893994],[117,9,66,0.19702326072732124],[117,9,67,0.19725164266670478],[117,9,68,0.19777087302668053],[117,9,69,0.19855241880151675],[117,9,70,0.1995743157034656],[117,9,71,0.20081957440357076],[117,9,72,0.2022748549518526],[117,9,73,0.20392927428496058],[117,9,74,0.20577334782742815],[117,9,75,0.2077980658667725],[117,9,76,0.2099941050581828],[117,9,77,0.21235117509386797],[117,9,78,0.21485750025878833],[117,9,79,0.21749943528965437],[117,10,64,0.19010879165752112],[117,10,65,0.18949607818704026],[117,10,66,0.18923190689934916],[117,10,67,0.18928757279488898],[117,10,68,0.1896244616954499],[117,10,69,0.19021367474533393],[117,10,70,0.19103305702048012],[117,10,71,0.192065634161147],[117,10,72,0.1932983045961429],[117,10,73,0.19472065808055913],[117,10,74,0.1963239215944039],[117,10,75,0.1981000333364119],[117,10,76,0.20004084523515306],[117,10,77,0.20213745409071232],[117,10,78,0.20437966115804895],[117,10,79,0.20675555968868187],[117,11,64,0.18260573554418302],[117,11,65,0.18183765591009582],[117,11,66,0.18140777705058084],[117,11,67,0.18128770131417463],[117,11,68,0.18143898990942417],[117,11,69,0.18183258636735658],[117,11,70,0.18244628305382818],[117,11,71,0.1832632016738681],[117,11,72,0.18427051153854992],[117,11,73,0.18545826704232077],[117,11,74,0.18681836543046826],[117,11,75,0.18834362563720564],[117,11,76,0.19002698867621984],[117,11,77,0.19186083976970117],[117,11,78,0.19383645211206665],[117,11,79,0.1959435518817142],[117,12,64,0.1754007200512079],[117,12,65,0.17416419791969223],[117,12,66,0.17356782614613706],[117,12,67,0.17327070537020192],[117,12,68,0.17323506680908854],[117,12,69,0.1734318976922312],[117,12,70,0.17383904714852513],[117,12,71,0.17443976924597676],[117,12,72,0.1752214802080319],[117,12,73,0.17617462699604325],[117,12,74,0.17729166835650173],[117,12,75,0.1785661691486213],[117,12,76,0.17999200848501373],[117,12,77,0.18156270193762167],[117,12,78,0.18327083778590206],[117,12,79,0.18510762701517372],[117,13,64,0.1689044325539648],[117,13,65,0.1664927104920976],[117,13,66,0.16573042899770332],[117,13,67,0.16525645813554177],[117,13,68,0.16503418425615957],[117,13,69,0.16503482211730275],[117,13,70,0.1652363544246748],[117,13,71,0.16562216027488694],[117,13,72,0.1661798282494024],[117,13,73,0.16690007187499734],[117,13,74,0.16777574855172658],[117,13,75,0.16880098278583722],[117,13,76,0.16997039430134211],[117,13,77,0.1712784313419786],[117,13,78,0.17271880921800833],[117,13,79,0.1742840539002763],[117,14,64,0.1624632804400672],[117,14,65,0.15887490458536457],[117,14,66,0.15791874976777606],[117,14,67,0.15726932885292366],[117,14,68,0.15686191568030144],[117,14,69,0.15666810608748452],[117,14,70,0.1566660549748248],[117,14,71,0.15683921630261155],[117,14,72,0.15717523234649025],[117,14,73,0.1576649147339798],[117,14,74,0.15830131834689487],[117,14,75,0.15907890893489474],[117,14,76,0.15999282504521464],[117,14,77,0.16103823463462835],[117,14,78,0.16220978649465895],[117,14,79,0.16350115639028567],[117,15,64,0.15611434105725067],[117,15,65,0.15247471094945553],[117,15,66,0.15016732518799555],[117,15,67,0.14934438644785694],[117,15,68,0.1487536406480832],[117,15,69,0.14836718780919336],[117,15,70,0.14816336689545073],[117,15,71,0.14812563465177173],[117,15,72,0.1482415528210163],[117,15,73,0.14850185463701465],[117,15,74,0.1488995916436549],[117,15,75,0.14942936168007606],[117,15,76,0.1500866186606945],[117,15,77,0.15086706456797302],[117,15,78,0.15176612386814006],[117,15,79,0.1527785003554957],[117,16,64,0.14990651173150196],[117,16,65,0.14622206034824878],[117,16,66,0.14258190415645872],[117,16,67,0.14152513385300738],[117,16,68,0.14075150441952625],[117,16,69,0.14017234066402118],[117,16,70,0.139766215642749],[117,16,71,0.13951657217785482],[117,16,72,0.13941082641642244],[117,16,73,0.13943953640061446],[117,16,74,0.13959563665020322],[117,16,75,0.13987373958276506],[117,16,76,0.14026950441921532],[117,16,77,0.1407790740445117],[117,16,78,0.1413985801176132],[117,16,79,0.14212371655089762],[117,17,64,0.1438689977492836],[117,17,65,0.14014620532152203],[117,17,66,0.13645511279086217],[117,17,67,0.13383478627289536],[117,17,68,0.13287747233290836],[117,17,69,0.13210387944003182],[117,17,70,0.13149291211927813],[117,17,71,0.13102804625676442],[117,17,72,0.13069656312418376],[117,17,73,0.13048883269915118],[117,17,74,0.13039764722282718],[117,17,75,0.13041760579861902],[117,17,76,0.1305445506959863],[117,17,77,0.1307750558824746],[117,17,78,0.13110596816718809],[117,17,79,0.13153400119938805],[117,18,64,0.1380081229338604],[117,18,65,0.1342534711728661],[117,18,66,0.1305162011788738],[117,18,67,0.1267881693771149],[117,18,68,0.12513118624835565],[117,18,69,0.12416045947062421],[117,18,70,0.12334093476392965],[117,18,71,0.12265621929305318],[117,18,72,0.12209353051150344],[117,18,73,0.1216431033441522],[117,18,74,0.12129763070171402],[117,18,75,0.12105173810469584],[117,18,76,0.12090149309574429],[117,18,77,0.12084395001853868],[117,18,78,0.12087673064030999],[117,18,79,0.12099764099281264],[117,19,64,0.13231098786664308],[117,19,65,0.12853090637839873],[117,19,66,0.12475221393772612],[117,19,67,0.12097052989225328],[117,19,68,0.11749339083374571],[117,19,69,0.11632238523063824],[117,19,70,0.11529009358559615],[117,19,71,0.11438039222886967],[117,19,72,0.11358055228555887],[117,19,73,0.11288077660435973],[117,19,74,0.11227375232635868],[117,19,75,0.11175421984187595],[117,19,76,0.11131855882815728],[117,19,77,0.11096439200234694],[117,19,78,0.11069020716416612],[117,19,79,0.11049499803979798],[117,20,64,0.12347659713096303],[117,20,65,0.12062681269812404],[117,20,66,0.11766094642364508],[117,20,67,0.11458641841229392],[117,20,68,0.11142616378149878],[117,20,69,0.10855479241410368],[117,20,70,0.10730557745008587],[117,20,71,0.1061658928144905],[117,20,72,0.10512321479616392],[117,20,73,0.10416785318216641],[117,20,74,0.10329261838848713],[117,20,75,0.10249248681910546],[117,20,76,0.1017642651588447],[117,20,77,0.10110625429096463],[117,20,78,0.10051791351283326],[117,20,79,0.0999995257006896],[117,21,64,0.11276495503208586],[117,21,65,0.1098161875007675],[117,21,66,0.10677768047407017],[117,21,67,0.10365342494347925],[117,21,68,0.10046326289521419],[117,21,69,0.09723187313234936],[117,21,70,0.09554712257792644],[117,21,71,0.09506323839634867],[117,21,72,0.09476363386594686],[117,21,73,0.09465132438869012],[117,21,74,0.09431149820835794],[117,21,75,0.09322533061464026],[117,21,76,0.09219919271372957],[117,21,77,0.09123218145080009],[117,21,78,0.09032483400824243],[117,21,79,0.08947881701694464],[117,22,64,0.10190962832517511],[117,22,65,0.09886140904711542],[117,22,66,0.09575059120579679],[117,22,67,0.09257793743534103],[117,22,68,0.08936014934736292],[117,22,69,0.08612031843577078],[117,22,70,0.08287833875860101],[117,22,71,0.08153764299735433],[117,22,72,0.08112670390673446],[117,22,73,0.08091563434402231],[117,22,74,0.08090366931758294],[117,22,75,0.0810865029415871],[117,22,76,0.08145653989404517],[117,22,77,0.08129912045694479],[117,22,78,0.08007072869717176],[117,22,79,0.07889568756053822],[117,23,64,0.09098781789583227],[117,23,65,0.0878403764965085],[117,23,66,0.08465787741244112],[117,23,67,0.08143813202537618],[117,23,68,0.07819470692684324],[117,23,69,0.07494891227972035],[117,23,70,0.0717194573691012],[117,23,71,0.06852209654909189],[117,23,72,0.06732086188671992],[117,23,73,0.0670091921411326],[117,23,74,0.06690879518352688],[117,23,75,0.06701516930645197],[117,23,76,0.0673204019571229],[117,23,77,0.06781339737237448],[117,23,78,0.06848015615686884],[117,23,79,0.06820929462320795],[117,24,64,0.08008017053173024],[117,24,65,0.07683448471769275],[117,24,66,0.07358125411672299],[117,24,67,0.07031568220115962],[117,24,68,0.06704825753685817],[117,24,69,0.06379833175325068],[117,24,70,0.060583236566759464],[117,24,71,0.05741775939295611],[117,24,72,0.054313917065773515],[117,24,73,0.05299811943670401],[117,24,74,0.05280488563968961],[117,24,75,0.052829586364001806],[117,24,76,0.05306388321712837],[117,24,77,0.05349610242978194],[117,24,78,0.05411147436838027],[117,24,79,0.05489244023359638],[117,25,64,0.06926803376937851],[117,25,65,0.0659258724687725],[117,25,66,0.06260321313133044],[117,25,67,0.059293049946828456],[117,25,68,0.05600290018297781],[117,25,69,0.05275000186824746],[117,25,70,0.04955013128283483],[117,25,71,0.046416924413218],[117,25,72,0.04336152303719333],[117,25,73,0.04039230813904018],[117,25,74,0.03865588842162685],[117,25,75,0.03859129232411521],[117,25,76,0.038745894631063926],[117,25,77,0.039107383944676236],[117,25,78,0.03966019595672354],[117,25,79,0.04038579756709809],[117,26,64,0.05863087740736837],[117,26,65,0.05519483442136222],[117,26,66,0.051804442918428645],[117,26,67,0.04845093003723988],[117,26,68,0.045138995291672625],[117,26,69,0.0418836348184693],[117,26,70,0.03869891173383188],[117,26,71,0.03559714215404803],[117,26,72,0.03258842512186063],[117,26,73,0.029680273605757427],[117,26,74,0.026877346353269452],[117,26,75,0.024359885298511755],[117,26,76,0.02442355132128572],[117,26,77,0.02470170798062984],[117,26,78,0.02517799811237894],[117,26,79,0.025832956323283838],[117,27,64,0.04824388492093461],[117,27,65,0.04471740013287302],[117,27,66,0.04126141068351442],[117,27,67,0.03786585021383865],[117,27,68,0.034532796857667664],[117,27,69,0.031274907145033067],[117,27,70,0.028104397829738375],[117,27,71,0.025032117270072374],[117,27,72,0.022066972303623658],[117,27,73,0.019215468246063096],[117,27,74,0.016481361876544046],[117,27,75,0.013865426987986738],[117,27,76,0.01136533180581318],[117,27,77,0.010330278526189791],[117,27,78,0.010713621632509612],[117,27,79,0.011280118590584068],[117,28,64,0.03817571826590398],[117,28,65,0.03456308333253885],[117,28,66,0.031044109906974534],[117,28,67,0.02760793024737896],[117,28,68,0.024254235190252472],[117,28,69,0.02099327730302153],[117,28,70,0.01783532179899998],[117,28,71,0.014789625616645471],[117,28,72,0.011863775666759117],[117,28,73,0.009063150382916309],[117,28,74,0.006390504516195776],[117,28,75,0.0038456768029243955],[117,28,76,0.0014254198321399132],[117,28,77,-8.766488498973967E-4],[117,28,78,-0.003069975635080602],[117,28,79,-0.0032305423471058695],[117,29,64,0.02848645983767726],[117,29,65,0.024792805173272904],[117,29,66,0.021213976809472478],[117,29,67,0.017738803189039337],[117,29,68,0.014364853325778762],[117,29,69,0.011099946418358738],[117,29,70,0.007952321495572564],[117,29,71,0.004929547495539912],[117,29,72,0.0020377882597226683],[117,29,73,-7.18800991685174E-4],[117,29,74,-0.0033385456877221584],[117,29,75,-0.0058225927578926225],[117,29,76,-0.008175120950929017],[117,29,77,-0.010403421576351848],[117,29,78,-0.01251785091918718],[117,29,79,-0.014531655854729174],[117,30,64,0.01922573564550463],[117,30,65,0.01545699540538877],[117,30,66,0.01182197955791429],[117,30,67,0.008309702426019076],[117,30,68,0.004915900489087167],[117,30,69,0.0016459653371383894],[117,30,70,-0.0014939328397798749],[117,30,71,-0.004497980551406113],[117,30,72,-0.007361513370609749],[117,30,73,-0.010081670710273277],[117,30,74,-0.012657912929430644],[117,30,75,-0.015092401037050663],[117,30,76,-0.01739023960327196],[117,30,77,-0.01955958381546582],[117,30,78,-0.02161161192752058],[117,30,79,-0.02356036464242027],[117,31,64,0.010431024067505968],[117,31,65,0.006593875743281944],[117,31,66,0.0029068843409600607],[117,31,67,-6.402815156673382E-4],[117,31,68,-0.004053413685369616],[117,31,69,-0.007329508604330426],[117,31,70,-0.010464475271394531],[117,31,71,-0.013454292697458197],[117,31,72,-0.016295843712305455],[117,31,73,-0.018987607160686964],[117,31,74,-0.021530208340395263],[117,31,75,-0.023926827899777355],[117,31,76,-0.02618346976530756],[117,31,77,-0.02830908900880889],[117,31,78,-0.03031558088590239],[117,31,79,-0.03221763257939363],[117,32,64,0.002126154861099223],[117,32,65,-0.0017720699843537403],[117,32,66,-0.00550629722981146],[117,32,67,-0.00908577014643652],[117,32,68,-0.012517500127903453],[117,32,69,-0.015800801327804835],[117,32,70,-0.01893364089353709],[117,32,71,-0.021913796512860996],[117,32,72,-0.0247397163214818],[117,32,73,-0.027411235193202252],[117,32,74,-0.02993014720896872],[117,32,75,-0.032300634472530565],[117,32,76,-0.03452955280014518],[117,32,77,-0.03662657515710534],[117,32,78,-0.038604194041969894],[117,32,79,-0.0404775843273836],[117,33,64,-0.005679996589556429],[117,33,65,-0.00963143399254978],[117,33,66,-0.013407674611184653],[117,33,67,-0.017016487560348972],[117,33,68,-0.02046580212469163],[117,33,69,-0.023757154185281078],[117,33,70,-0.02689051883836273],[117,33,71,-0.029865448029502306],[117,33,72,-0.03268194247710294],[117,33,73,-0.03534117984858135],[117,33,74,-0.03784609893566052],[117,33,75,-0.0402018399483097],[117,33,76,-0.042416041408258345],[117,33,77,-0.04449899446998324],[117,33,78,-0.046463655826800225],[117,33,79,-0.04832552066925583],[117,34,64,-0.012994614507447837],[117,34,65,-0.01699102578687671],[117,34,66,-0.02080365361009953],[117,34,67,-0.02443846742190641],[117,34,68,-0.027904033216924584],[117,34,69,-0.03120399413012814],[117,34,70,-0.0343402574893787],[117,34,71,-0.03731409552277685],[117,34,72,-0.040127017267578745],[117,34,73,-0.04278149825342486],[117,34,74,-0.04528156766227443],[117,34,75,-0.04763325303777702],[117,34,76,-0.04984488297555943],[117,34,77,-0.051927248570370906],[117,34,78,-0.05389362472339075],[117,34,79,-0.055759652720375766],[117,35,64,-0.019841841869717006],[117,35,65,-0.023874810981532914],[117,35,66,-0.027717915046670132],[117,35,67,-0.03137507114573186],[117,35,68,-0.03485523618054228],[117,35,69,-0.03816403714174463],[117,35,70,-0.04130521750358233],[117,35,71,-0.044281688030373544],[117,35,72,-0.04709638961252986],[117,35,73,-0.04975301673391199],[117,35,74,-0.05225660123290746],[117,35,75,-0.05461395638361022],[117,35,76,-0.05621068794600257],[117,35,77,-0.051660947793960535],[117,35,78,-0.047157175090737996],[117,35,79,-0.04271689303131471],[117,36,64,-0.026263467629912912],[117,36,65,-0.030324641889597395],[117,36,66,-0.03419219109755042],[117,36,67,-0.03786781172299171],[117,36,68,-0.041360657754056],[117,36,69,-0.04467821985015469],[117,36,70,-0.04782596793685606],[117,36,71,-0.050808344321614345],[117,36,72,-0.05362961242254891],[117,36,73,-0.05600137465955874],[117,36,74,-0.05123936256318619],[117,36,75,-0.046487968330831325],[117,36,76,-0.04175993602877813],[117,36,77,-0.03706963087707872],[117,36,78,-0.03243308711580209],[117,36,79,-0.0278679231809265],[117,37,64,-0.03231939593015987],[117,37,65,-0.03640077382661175],[117,37,66,-0.040286833348498176],[117,37,67,-0.04397697736943484],[117,37,68,-0.04748043349627319],[117,37,69,-0.05080645401670134],[117,37,70,-0.05396212047475605],[117,37,71,-0.051600243806407174],[117,37,72,-0.04668823477651584],[117,37,73,-0.041770667869494356],[117,37,74,-0.036858700473334095],[117,37,75,-0.03196438486358603],[117,37,76,-0.027100986398678435],[117,37,77,-0.022283170815366682],[117,37,78,-0.017527061512352417],[117,37,79,-0.012850167997213825],[117,38,64,-0.03808577599975356],[117,38,65,-0.042179971549829276],[117,38,66,-0.046078911137784624],[117,38,67,-0.04977973085628327],[117,38,68,-0.05260402486298011],[117,38,69,-0.047610353566277526],[117,38,70,-0.04258039114129178],[117,38,71,-0.037527311984277736],[117,38,72,-0.03246320381391742],[117,38,73,-0.027399776128178767],[117,38,74,-0.02234894098504184],[117,38,75,-0.017323265970582077],[117,38,76,-0.012336299543974373],[117,38,77,-0.00740276926185192],[117,38,78,-0.0025386536832404704],[117,38,79,0.0022388709634835304],[117,39,64,-0.043609095372910876],[117,39,65,-0.04770807975101915],[117,39,66,-0.049040176234378965],[117,39,67,-0.044005355721320374],[117,39,68,-0.038901686186871905],[117,39,69,-0.03374896785662904],[117,39,70,-0.02856394992770135],[117,39,71,-0.02336117419617495],[117,39,72,-0.01815381193398592],[117,39,73,-0.012954377149419539],[117,39,74,-0.007775315688758785],[117,39,75,-0.0026294699664225953],[117,39,76,0.0024695805700189833],[117,39,77,0.007507302827200838],[117,39,78,0.012468116600030324],[117,39,79,0.017335423271813047],[117,40,64,-0.045717129681443175],[117,40,65,-0.040689768754134735],[117,40,66,-0.03557746938837319],[117,40,67,-0.030380956975420603],[117,40,68,-0.025117389207191868],[117,40,69,-0.019808563180660443],[117,40,70,-0.014472915117476061],[117,40,71,-0.009126324472932719],[117,40,72,-0.0037829610946912787],[117,40,73,0.0015439879667161786],[117,40,74,0.006841712621904986],[117,40,75,0.012097295183988716],[117,40,76,0.017297347076842648],[117,40,77,0.022427766498737525],[117,40,78,0.027473616441488147],[117,40,79,0.03241912219414847],[117,41,64,-0.03254589932349216],[117,41,65,-0.027348018331491697],[117,41,66,-0.022070127454861258],[117,41,67,-0.016710652466896066],[117,41,68,-0.01128705796258642],[117,41,69,-0.005823305191615474],[117,41,70,-3.396159860394204E-4],[117,41,71,0.005146759260525408],[117,41,72,0.010620676516937995],[117,41,73,0.016068350292981197],[117,41,74,0.02147672379623297],[117,41,75,0.026832957473447404],[117,41,76,0.03212403603431513],[117,41,77,0.03733649375872876],[117,41,78,0.04245625760405274],[117,41,79,0.047468607360701943],[117,42,64,-0.019380330201999686],[117,42,65,-0.01400776219149198],[117,42,66,-0.008561102193842497],[117,42,67,-0.0030363366984218483],[117,42,68,0.002548701282808929],[117,42,69,0.008167683466096993],[117,42,70,0.01379846166822172],[117,42,71,0.019422334818470326],[117,42,72,0.02502316009621275],[117,42,73,0.03058657827144456],[117,42,74,0.03609935408167714],[117,42,75,0.04154883216584533],[117,42,76,0.04692250877227932],[117,42,77,0.05220771916497062],[117,42,78,0.05739144037089208],[117,42,79,0.06246020864530133],[117,43,64,-0.006264176778182808],[117,43,65,-7.126237985182185E-4],[117,43,66,0.00490637227545656],[117,43,67,0.010599393553667227],[117,43,68,0.01634816610240205],[117,43,69,0.022123778016090598],[117,43,70,0.027901990182459986],[117,43,71,0.03366253905936449],[117,43,72,0.03938822015958688],[117,43,73,0.04506408260347391],[117,43,74,0.05067673569090037],[117,43,75,0.056213768136593886],[117,43,76,0.06166328031382192],[117,43,77,0.06701352956248091],[117,43,78,0.07225268833921114],[117,43,79,0.07736871472351334],[117,44,64,0.00676340689254115],[117,44,65,0.012497888727990663],[117,44,66,0.0182927008051007],[117,44,67,0.024157087939964794],[117,44,68,0.030072251184026295],[117,44,69,0.036006481865759915],[117,44,70,0.04193327651080367],[117,44,71,0.04783067774687836],[117,44,72,0.0536803284044188],[117,44,73,0.05946663334033669],[117,44,74,0.06517603005990388],[117,44,75,0.0707963689099848],[117,44,76,0.076316403322798],[117,44,77,0.08172539030464168],[117,44,78,0.08701280108894129],[117,44,79,0.0921681416117673],[117,45,64,0.0196720821504145],[117,45,65,0.025592568348810074],[117,45,66,0.03156605663877867],[117,45,67,0.0376044919113426],[117,45,68,0.04368845253415084],[117,45,69,0.049783235957219285],[117,45,70,0.05585990392139252],[117,45,71,0.06189466512535095],[117,45,72,0.0678679003688688],[117,45,73,0.07376329173320886],[117,45,74,0.07956705699898178],[117,45,75,0.08526729020660526],[117,45,76,0.09085340897626211],[117,45,77,0.09631570892449848],[117,45,78,0.10164502524360125],[117,45,79,0.10599822926862375],[117,46,64,0.032444761257712576],[117,46,65,0.038552911632418294],[117,46,66,0.044706722377875915],[117,46,67,0.050920800200322414],[117,46,68,0.05717498597054759],[117,46,69,0.0634314103891444],[117,46,70,0.0696585419707342],[117,46,71,0.07583061605185798],[117,46,72,0.08192663347245878],[117,46,73,0.0879294591233787],[117,46,74,0.09382502168392778],[117,46,75,0.09960161558627031],[117,46,76,0.10511970098398615],[117,46,77,0.10962818155108102],[117,46,78,0.11401431961686195],[117,46,79,0.1182830941808617],[117,47,64,0.045065551466822576],[117,47,65,0.051361417346171535],[117,47,66,0.05769577842314612],[117,47,67,0.06408578293604303],[117,47,68,0.07051040497806875],[117,47,69,0.07692846931413204],[117,47,70,0.08330571388488461],[117,47,71,0.08961427035877245],[117,47,72,0.09583164077420758],[117,47,73,0.10122704139359479],[117,47,74,0.1063824691080514],[117,47,75,0.11141472498466301],[117,47,76,0.11632881399902067],[117,47,77,0.1211285466249877],[117,47,78,0.1258169776215997],[117,47,79,0.1303967443976089],[117,48,64,0.055973487402134044],[117,48,65,0.06299150393436956],[117,48,66,0.06978326599066391],[117,48,67,0.07632035516580375],[117,48,68,0.0826162865828324],[117,48,69,0.0887075487397142],[117,48,70,0.0946235904342563],[117,48,71,0.10038729369191639],[117,48,72,0.10601602264802544],[117,48,73,0.11152258190943373],[117,48,74,0.1169160828453579],[117,48,75,0.12220271652177611],[117,48,76,0.1273864322557681],[117,48,77,0.13246952102358425],[117,48,78,0.13745310320547166],[117,48,79,0.14233752039140382],[117,49,64,0.06478190034278725],[117,49,65,0.07191580664726073],[117,49,66,0.07883200719539044],[117,49,67,0.08549973530958374],[117,49,68,0.09193333741517498],[117,49,69,0.09817241155303719],[117,49,70,0.10424895311076827],[117,49,71,0.11018776857306165],[117,49,72,0.11600753566739064],[117,49,73,0.12172177877946565],[117,49,74,0.12733975799349131],[117,49,75,0.13286727036381515],[117,49,76,0.13830736227444945],[117,49,77,0.1436609519891497],[117,49,78,0.14892736173385676],[117,49,79,0.15410475888552705],[117,50,64,0.07363193986067383],[117,50,65,0.08087278394621947],[117,50,66,0.0879032119059735],[117,50,67,0.09469037452381288],[117,50,68,0.10124952919455747],[117,50,69,0.10762333983348124],[117,50,70,0.11384636075622458],[117,50,71,0.11994538618436068],[117,50,72,0.12594051274029106],[117,50,73,0.13184612341162733],[117,50,74,0.13767179126296267],[117,50,75,0.14342310140999118],[117,50,76,0.14910239000714087],[117,50,77,0.1547093992333323],[117,50,78,0.1602418474879274],[117,50,79,0.1656959142306398],[117,51,64,0.08254582438789826],[117,51,65,0.08988488727743302],[117,51,66,0.09701933575747611],[117,51,67,0.1039145432686942],[117,51,68,0.11058673643877437],[117,51,69,0.11708153751572577],[117,51,70,0.12343602261711045],[117,51,71,0.12967900263547788],[117,51,72,0.13583207847321793],[117,51,73,0.1419106242520147],[117,51,74,0.14792469671802352],[117,51,75,0.15387986928514003],[117,51,76,0.15977798937990745],[117,51,77,0.16561785797090656],[117,51,78,0.17139583037980569],[117,51,79,0.17710633768098577],[117,52,64,0.09153553445784193],[117,52,65,0.09896447636665104],[117,52,66,0.10619295603316023],[117,52,67,0.11318490729582492],[117,52,68,0.11995756270560537],[117,52,69,0.1265593355403059],[117,52,70,0.13302973812667315],[117,52,71,0.1393995907264895],[117,52,72,0.14569205959985632],[117,52,73,0.1519236297419526],[117,52,74,0.15810501047982806],[117,52,75,0.1642419723201703],[117,52,76,0.17033611364400492],[117,52,77,0.17638555604825523],[117,52,78,0.18238556733404165],[117,52,79,0.18832911133805066],[117,53,64,0.10060305982005985],[117,53,65,0.10811403624624542],[117,53,66,0.1154269571862534],[117,53,67,0.12250467810408229],[117,53,68,0.1293654525869464],[117,53,69,0.13606026385910436],[117,53,70,0.142630929170554],[117,53,71,0.14911023434318033],[117,53,72,0.15552294482310192],[117,53,73,0.1618867581829278],[117,53,74,0.16821319624914152],[117,53,75,0.17450843521657805],[117,53,76,0.18077407229995576],[117,53,77,0.1870078276601135],[117,53,78,0.19320418052715216],[117,53,79,0.1993549386247303],[117,54,64,0.10974077260914576],[117,54,65,0.1173265210570323],[117,54,66,0.1247148430133448],[117,54,67,0.13186788962396867],[117,54,68,0.13880492926081542],[117,54,69,0.14557924778426787],[117,54,70,0.1522347947023929],[117,54,71,0.15880624225988485],[117,54,72,0.1653199600629014],[117,54,73,0.17179493789009842],[117,54,74,0.1782436548771479],[117,54,75,0.18467289343064744],[117,54,76,0.1910844963977409],[117,54,77,0.19747606618850067],[117,54,78,0.20384160471650678],[117,54,79,0.2101720931898262],[117,55,64,0.118931929856465],[117,55,65,0.1265858280012365],[117,55,66,0.13404117892075906],[117,55,67,0.14125980462798562],[117,55,68,0.14826196114680018],[117,55,69,0.15510293225647626],[117,55,70,0.16182859129002974],[117,55,71,0.16847538490318953],[117,55,72,0.17507126259916705],[117,55,73,0.18163656101963893],[117,55,74,0.18818484122404106],[117,55,75,0.19472367732962434],[117,55,76,0.20125539503727286],[117,55,77,0.20777775872149748],[117,55,78,0.214284605914746],[117,55,79,0.22076642816706593],[117,56,64,0.12815130854699344],[117,56,65,0.13586740474165748],[117,56,66,0.14338216765000575],[117,56,67,0.1506574542961111],[117,56,68,0.15771446114942841],[117,56,69,0.16461013755534976],[117,56,70,0.17139204312813885],[117,56,71,0.17809825759354792],[117,56,72,0.18475825757124725],[117,56,73,0.19139375443562384],[117,56,74,0.19801949153319912],[117,56,75,0.20464399916715562],[117,56,76,0.21127030589420484],[117,56,77,0.21789660481507014],[117,56,78,0.2245168736747405],[117,56,79,0.2311214477233814],[117,57,64,0.13736597631320935],[117,57,65,0.1451389934366261],[117,57,66,0.15270636172863053],[117,57,67,0.16003031427214107],[117,57,68,0.16713292188779003],[117,57,69,0.17407244989647247],[117,57,70,0.1808978849832137],[117,57,71,0.18764877372075536],[117,57,72,0.1943560402433362],[117,57,73,0.2010427709390471],[117,57,74,0.2077249645143763],[117,57,75,0.2144122458991642],[117,57,76,0.22110854257750667],[117,57,77,0.22781272204905997],[117,57,78,0.2345191892433857],[117,57,79,0.2412184428285251],[117,58,64,0.14653620072406903],[117,58,65,0.15436151447065452],[117,58,66,0.16197551578839361],[117,58,67,0.16934112042834976],[117,58,68,0.17648119019830458],[117,58,69,0.18345495025572156],[117,58,70,0.1903125414414297],[117,58,71,0.19709479122285267],[117,58,72,0.20383396736831694],[117,58,73,0.21055450411442997],[117,58,74,0.21727369927197387],[117,58,75,0.22400238081351853],[117,58,76,0.23074554158653887],[117,58,77,0.23750294089818208],[117,58,78,0.2442696718197619],[117,58,79,0.2510366931617355],[117,59,64,0.15561649996883956],[117,59,65,0.1634900927860504],[117,59,66,0.17114558174288363],[117,59,67,0.17854682741180217],[117,59,68,0.18571738405991522],[117,59,69,0.19271708463140919],[117,59,70,0.19959694570807354],[117,59,71,0.20639887562538486],[117,59,72,0.21315636087979287],[117,59,73,0.21989512995717853],[117,59,74,0.22663379313294713],[117,59,75,0.23338445687622544],[117,59,76,0.24015331157544353],[117,59,77,0.24694119138926407],[117,59,78,0.25374410511323764],[117,59,79,0.2605537370399861],[117,60,64,0.16455683714240485],[117,60,65,0.17247522912705665],[117,60,66,0.18016784922382276],[117,60,67,0.18759971245463292],[117,60,68,0.19479495450271964],[117,60,69,0.20181367837029152],[117,60,70,0.2087075006277276],[117,60,71,0.2155192023245128],[117,60,72,0.22228334657574506],[117,60,73,0.22902687788652526],[117,60,74,0.2357697018792404],[117,60,75,0.24252524415633456],[117,60,76,0.2493009871014574],[117,60,77,0.25609898349401783],[117,60,78,0.26291634588409574],[117,60,79,0.26974571074772885],[117,61,64,0.17330394889442416],[117,61,65,0.18126410696987896],[117,61,66,0.18899022204575097],[117,61,67,0.19644861521177365],[117,61,68,0.20366388325505824],[117,61,69,0.21069608529270487],[117,61,70,0.2175971726213335],[117,61,71,0.22441058874474099],[117,61,72,0.23117181832741876],[117,61,73,0.2379089215444529],[117,61,74,0.24464305261296715],[117,61,75,0.25138896134498767],[117,61,76,0.25815547661885824],[117,61,77,0.26494597072530096],[117,61,78,0.27175880360293647],[117,61,79,0.2785877460379153],[117,62,64,0.18180283404178046],[117,62,65,0.18980206104614727],[117,62,66,0.19755865689827812],[117,62,67,0.2050403401118812],[117,62,68,0.2122720428963378],[117,62,69,0.21931349865175154],[117,62,70,0.22621674582078502],[117,62,71,0.2330256838688328],[117,62,72,0.2397765554934403],[117,62,73,0.24649841720407076],[117,62,74,0.2532135971791146],[117,62,75,0.2599381393506029],[117,62,76,0.266682232712951],[117,62,77,0.2734506248994207],[117,62,78,0.2802430191169727],[117,62,79,0.28705445357817094],[117,63,64,0.1899984092004038],[117,63,65,0.19803421467786028],[117,63,66,0.20581877163317833],[117,63,67,0.2133212287359373],[117,63,68,0.22056672717528153],[117,63,69,0.22761443172101875],[117,63,70,0.23451624431218487],[117,63,71,0.2413163231428513],[117,63,72,0.24805150160343734],[117,63,73,0.2547516978781224],[117,63,74,0.2614403142246289],[117,63,75,0.26813462499689733],[117,63,76,0.2748461525074197],[117,63,77,0.28158102986346456],[117,63,78,0.28834034994830654],[117,63,79,0.29512049975624954],[117,64,64,0.19783730221689264],[117,64,65,0.20590725655482733],[117,64,66,0.21371759362056725],[117,64,67,0.22123887254366476],[117,64,68,0.22849632166243666],[117,64,69,0.23554833802326577],[117,64,70,0.24244649233143728],[117,64,71,0.2492350184124839],[117,64,72,0.2559511737556449],[117,64,73,0.2626255923318787],[117,64,74,0.269282628826071],[117,64,75,0.27594069344986893],[117,64,76,0.28261257653002947],[117,64,77,0.2893057620965228],[117,64,78,0.29602272972311494],[117,64,79,0.3027612439021637],[117,65,64,0.20526979828333133],[117,65,65,0.21337137206215878],[117,65,66,0.22120546349619907],[117,65,67,0.2287439814835675],[117,65,68,0.23601213048566416],[117,65,69,0.2430673871533337],[117,65,70,0.24996082855451646],[117,65,71,0.2567365992003243],[117,65,72,0.2634322191782967],[117,65,73,0.2700788855586317],[117,65,74,0.2767017663172305],[117,65,75,0.28332028604055814],[117,65,76,0.2899484026997826],[117,65,77,0.29659487480467567],[117,65,78,0.30326351826956666],[117,65,79,0.3099534523456669],[117,66,64,0.2109541926328675],[117,66,65,0.21988281291073086],[117,66,66,0.22823809652551522],[117,66,67,0.23579241082534022],[117,66,68,0.2430703616020708],[117,66,69,0.2501283987581406],[117,66,70,0.25701697714277616],[117,66,71,0.2637800080641062],[117,66,72,0.27045512175130737],[117,66,73,0.277073923543232],[117,66,74,0.28366224313995747],[117,66,75,0.2902403762709367],[117,66,76,0.29682331815158464],[117,66,77,0.30342098811849183],[117,66,78,0.3100384448502615],[117,66,79,0.31667609159761684],[117,67,64,0.21629189035240615],[117,67,65,0.2252610519353037],[117,67,66,0.23435700498626377],[117,67,67,0.24234734727758434],[117,67,68,0.24963427177835307],[117,67,69,0.25669493595132115],[117,67,70,0.26357907691691385],[117,67,71,0.27033025149039835],[117,67,72,0.2769860600034424],[117,67,73,0.2835783638649931],[117,67,74,0.29013349627749424],[117,67,75,0.2966724655392345],[117,67,76,0.3032111503789579],[117,67,77,0.3097604867840511],[117,67,78,0.316326645796897],[117,67,79,0.32291120176675586],[117,68,64,0.22146005600158408],[117,68,65,0.23045894237089004],[117,68,66,0.23959109163003856],[117,68,67,0.24838165510553764],[117,68,68,0.25567647210427324],[117,68,69,0.2627395590956542],[117,68,70,0.26961986969403545],[117,68,71,0.2763605074471621],[117,68,72,0.28299891778018593],[117,68,73,0.2895670733855773],[117,68,74,0.2960916525413162],[117,68,75,0.30259420985319674],[117,68,76,0.30909133893076995],[117,68,77,0.3155948265196393],[117,68,78,0.32211179762379955],[117,68,79,0.3286448511617991],[117,69,64,0.22645923107469035],[117,69,65,0.2354778789520174],[117,69,66,0.24463515656414236],[117,69,67,0.25388038671519264],[117,69,68,0.2611813989876671],[117,69,69,0.2682462453533086],[117,69,70,0.2751230535871205],[117,69,71,0.2818543957215242],[117,69,72,0.2884774539461857],[117,69,73,0.2950241795192933],[117,69,74,0.30152144422718313],[117,69,75,0.3079911839420287],[117,69,76,0.314450533840088],[117,69,77,0.32091195485498614],[117,69,78,0.3273833509499783],[117,69,79,0.33386817680142605],[117,70,64,0.23126902428804078],[117,70,65,0.2402975862033674],[117,70,66,0.24946908386455358],[117,70,67,0.2587942096994972],[117,70,68,0.2661583004844975],[117,70,69,0.2732242397598867],[117,70,70,0.28009786667296316],[117,70,71,0.28682112222133893],[117,70,72,0.29343080177928493],[117,70,73,0.2999586923630486],[117,70,74,0.3064317019722418],[117,70,75,0.3128719806013633],[117,70,76,0.31929703252793756],[117,70,77,0.32571981949510714],[117,70,78,0.3321488544151214],[117,70,79,0.33858828522729867],[117,71,64,0.23584342781627984],[117,71,65,0.24486950700354096],[117,71,66,0.2540417509780735],[117,71,67,0.2633432125287871],[117,71,68,0.2706540393460133],[117,71,69,0.27772278048215426],[117,71,70,0.28459555297434],[117,71,71,0.29131344091369993],[117,71,72,0.2979126250657515],[117,71,73,0.3044245040608191],[117,71,74,0.310875806768622],[117,71,75,0.3172886954851082],[117,71,76,0.3236808595730286],[117,71,77,0.33006559920984635],[117,71,78,0.3364518989056786],[117,71,79,0.34284449046131144],[117,72,64,0.24014226737497193],[117,72,65,0.2491509564427031],[117,72,66,0.258307940522444],[117,72,67,0.26739117369990006],[117,72,68,0.2747107756417068],[117,72,69,0.28178638159895475],[117,72,70,0.2886626531173578],[117,72,71,0.29537948389897617],[117,72,72,0.3019721217682658],[117,72,73,0.30847128054682527],[117,72,74,0.31490324146897947],[117,72,75,0.3212899437877392],[117,72,76,0.327649064237303],[117,72,77,0.3339940850333008],[117,72,78,0.3403343501037273],[117,72,79,0.3466751092531491],[117,73,64,0.24413448045561856],[117,73,65,0.2531090069300699],[117,73,66,0.26223285897704973],[117,73,67,0.2710265026650854],[117,73,68,0.27836019842581355],[117,73,69,0.2854484712724294],[117,73,70,0.29233411180362195],[117,73,71,0.2990554233644019],[117,73,72,0.30564634529334195],[117,73,73,0.3121365634329623],[117,73,74,0.3185516075351206],[117,73,75,0.3249129352170299],[117,73,76,0.3312380021462324],[117,73,77,0.3375403181536344],[117,73,78,0.3438294889908589],[117,73,79,0.35011124346276734],[117,74,64,0.2477953436790343],[117,74,65,0.25671768191668426],[117,74,66,0.2657893037535516],[117,74,67,0.2742720797024639],[117,74,68,0.28162641479203293],[117,74,69,0.2887342725200541],[117,74,70,0.2956361250041128],[117,74,71,0.3023682549693776],[117,74,72,0.30896289047925357],[117,74,73,0.31544832312621207],[117,74,74,0.3218490092925469],[117,74,75,0.3281856541242889],[117,74,76,0.3344752778936285],[117,74,77,0.34073126445499974],[117,74,78,0.3469633915257088],[117,74,79,0.35317784254465656],[117,75,64,0.25110377844735854],[117,75,65,0.25995522636354],[117,75,66,0.268954905093269],[117,75,67,0.27714666861596415],[117,75,68,0.2845287678202959],[117,75,69,0.29166361631288346],[117,75,70,0.2985889240417303],[117,75,71,0.30533852400609846],[117,75,72,0.3119425296805785],[117,75,73,0.31842747083324885],[117,75,74,0.3248164073003801],[117,75,75,0.3311290203270298],[117,75,76,0.3373816811280187],[117,75,77,0.343587496366171],[117,75,78,0.3497563302824918],[117,75,79,0.355894803247052],[117,76,64,0.25403973962289295],[117,76,65,0.26280145872475796],[117,76,66,0.27170944758464133],[117,76,67,0.2796676431725049],[117,76,68,0.287084578629093],[117,76,69,0.2942536822706576],[117,76,70,0.3012094919457266],[117,76,71,0.30798298989720707],[117,76,72,0.3146017947627746],[117,76,73,0.3210903255948367],[117,76,74,0.3274699373872606],[117,76,75,0.33375902766013693],[117,76,76,0.3399731137157875],[117,76,77,0.34612488023788796],[117,76,78,0.3522241969590522],[117,76,79,0.358278106171212],[117,77,64,0.2565816920568165],[117,77,65,0.26523520932257477],[117,77,66,0.2740322762135806],[117,77,67,0.28185363009799214],[117,77,68,0.28931180760229924],[117,77,69,0.29652166206764174],[117,77,70,0.30351420729283596],[117,77,71,0.3103172244131646],[117,77,72,0.3169555006319894],[117,77,73,0.32345103229699074],[117,77,74,0.32982319170294083],[117,77,75,0.3360888570879666],[117,77,76,0.342262505372705],[117,77,77,0.348356267270386],[117,77,78,0.3543799444686019],[117,77,79,0.3603409886509206],[117,78,64,0.2587041798590187],[117,78,65,0.26723185007109806],[117,78,66,0.2758997919520689],[117,78,67,0.2837270635928626],[117,78,68,0.2912316297417303],[117,78,69,0.29848734053279197],[117,78,70,0.3055214106073823],[117,78,71,0.3123581388378073],[117,78,72,0.319019205760315],[117,78,73,0.3255239264313964],[117,78,74,0.3318894579529755],[117,78,75,0.338130961021654],[117,78,76,0.34426171496372826],[117,78,77,0.35029318581979285],[117,78,78,0.35623504713819487],[117,78,79,0.362095153225731],[117,79,64,0.26039484475988944],[117,79,65,0.26878013082136754],[117,79,66,0.2773018808887373],[117,79,67,0.28529843256376913],[117,79,68,0.29285358958583174],[117,79,69,0.30015940363163124],[117,79,70,0.30723909451479725],[117,79,71,0.31411326200848966],[117,79,72,0.3208002545591198],[117,79,73,0.3273164833202157],[117,79,74,0.33367668058188776],[117,79,75,0.3398941018090087],[117,79,76,0.34598067063531057],[117,79,77,0.35194706628959826],[117,79,78,0.35780275305178433],[117,79,79,0.36355595145060365],[117,80,64,0.2617070672115243],[117,80,65,0.2699344081420354],[117,80,66,0.2782931196302297],[117,80,67,0.28651683556806723],[117,80,68,0.2941285413504543],[117,80,69,0.30149144578107334],[117,80,70,0.3086246258540087],[117,80,71,0.3155447693471566],[117,80,72,0.3222666322135258],[117,80,73,0.3288034300023586],[117,80,74,0.33516716217009085],[117,80,75,0.341368868310613],[117,80,76,0.3474188154997337],[117,80,77,0.35332661610845123],[117,80,78,0.35910127559099336],[117,80,79,0.36475116989652073],[117,81,64,0.26269052943792737],[117,81,65,0.2707506218321059],[117,81,66,0.2789300272280764],[117,81,67,0.2872276070186888],[117,81,68,0.29500614696457667],[117,81,69,0.3024354420340084],[117,81,70,0.3096333008813887],[117,81,71,0.3166122965667871],[117,81,72,0.32338330455407754],[117,81,73,0.32995599212559223],[117,81,74,0.33633922796371807],[117,81,75,0.3425414106932016],[117,81,76,0.3485707153787588],[117,81,77,0.35443525716708346],[117,81,78,0.36014317144770486],[117,81,79,0.36570261008299004],[117,82,64,0.26290904345068267],[117,82,65,0.2712682104339053],[117,82,66,0.2792532703909737],[117,82,67,0.28734558814605293],[117,82,68,0.2954513221015462],[117,82,69,0.3029571554908879],[117,82,70,0.31023246637946744],[117,82,71,0.3172855426603903],[117,82,72,0.3241230943689859],[117,82,73,0.3307508644347077],[117,82,74,0.337174145733472],[117,82,75,0.3433982029395071],[117,82,76,0.3494285979160614],[117,82,77,0.35527141761773895],[117,82,78,0.36093340370079435],[117,82,79,0.3664219832507159],[117,83,64,0.26266325730603773],[117,83,65,0.2712311982656916],[117,83,66,0.2792898820156183],[117,83,67,0.2871609120698173],[117,83,68,0.2951050030401734],[117,83,69,0.30303449017020767],[117,83,70,0.3104001158752955],[117,83,71,0.31754312974345905],[117,83,72,0.32446581944832564],[117,83,73,0.3311696356790482],[117,83,74,0.3376558402255958],[117,83,75,0.3439260436186875],[117,83,76,0.34998263074965036],[117,83,77,0.3558290731717837],[117,83,78,0.36147012705060816],[117,83,79,0.3669119159846766],[117,84,64,0.26195011489118714],[117,84,65,0.2705551606889105],[117,84,66,0.27892572657294207],[117,84,67,0.28669121975361644],[117,84,68,0.2943848774535097],[117,84,69,0.30211777584846355],[117,84,70,0.30987460880868234],[117,84,71,0.3173715262122801],[117,84,72,0.3243974871965938],[117,84,73,0.33119826427818116],[117,84,74,0.33777065373022314],[117,84,75,0.34411209947802884],[117,84,76,0.35022124067532767],[117,84,77,0.35609832909431155],[117,84,78,0.3617455150152863],[117,84,79,0.367167000601158],[117,85,64,0.2607779846276199],[117,85,65,0.26941483846931563],[117,85,66,0.27783448213104384],[117,85,67,0.28594513744206507],[117,85,68,0.2933740966838217],[117,85,69,0.300827319146161],[117,85,70,0.30829349768005804],[117,85,71,0.3157640826629329],[117,85,72,0.3232321127223961],[117,85,73,0.3306911802317888],[117,85,74,0.33750715338942205],[117,85,75,0.34394399194386177],[117,85,76,0.35013147337412825],[117,85,77,0.3560660419853399],[117,85,78,0.3617466277381655],[117,85,79,0.36717488856083036],[117,86,64,0.25916458303986695],[117,86,65,0.26782592900430996],[117,86,66,0.27628965582805765],[117,86,67,0.2845582344708793],[117,86,68,0.29207722158587807],[117,86,69,0.299236510644928],[117,86,70,0.30639436448357454],[117,86,71,0.3135466835385097],[117,86,72,0.3206914221182658],[117,86,73,0.3278273398508131],[117,86,74,0.33495290787900867],[117,86,75,0.3420653731022862],[117,86,76,0.3491599833315909],[117,86,77,0.35571648091359115],[117,86,78,0.3614563194850583],[117,86,79,0.36691742555293405],[117,87,64,0.25713501886234275],[117,87,65,0.26581154898308135],[117,87,66,0.274312017572427],[117,87,67,0.28264046305482965],[117,87,68,0.29049357977839363],[117,87,69,0.29734849974073774],[117,87,70,0.30418442369764387],[117,87,71,0.31100156223183395],[117,87,72,0.3178027942071208],[117,87,73,0.32459218622306746],[117,87,74,0.3313736838638273],[117,87,75,0.33814997862763213],[117,87,76,0.34492155393881413],[117,87,77,0.35168591316747627],[117,87,78,0.3584369921154423],[117,87,79,0.3651647579755487],[117,88,64,0.25471996198201446],[117,88,65,0.26340047206564565],[117,88,66,0.27192800728037847],[117,88,67,0.28030816797667474],[117,88,68,0.28854712815924544],[117,88,69,0.2951629123699843],[117,88,70,0.3016677908078337],[117,88,71,0.3081376198590663],[117,88,72,0.31458013131098966],[117,88,73,0.32100474980070176],[117,88,74,0.32742105491123763],[117,88,75,0.3338374366005778],[117,88,76,0.3402599479410431],[117,88,77,0.34669135861562034],[117,88,78,0.3531304120970161],[117,88,79,0.35957128892968926],[117,89,64,0.251953941153157],[117,89,65,0.26062549161660614],[117,89,66,0.269168186803934],[117,89,67,0.277589166562445],[117,89,68,0.2858950686453088],[117,89,69,0.2926769848292569],[117,89,70,0.2988464250423924],[117,89,71,0.3049619379955009],[117,89,72,0.3110359576104417],[117,89,73,0.3170832262417622],[117,89,74,0.32311901743048044],[117,89,75,0.3291575694118911],[117,89,76,0.33521073396232814],[117,89,77,0.3412868445846776],[117,89,78,0.34738980745737735],[117,89,79,0.35351841801188444],[117,90,64,0.24887377408358277],[117,90,65,0.25752191204737745],[117,90,66,0.2660658152622755],[117,90,67,0.27451412442598366],[117,90,68,0.2828742583808078],[117,90,69,0.28988659835897124],[117,90,70,0.29572098292586874],[117,90,71,0.3014804298569422],[117,90,72,0.30718184958509276],[117,90,73,0.31284517135388834],[117,90,74,0.3184913207855481],[117,90,75,0.32414042515109653],[117,90,76,0.3298102515567588],[117,90,77,0.33551488262231494],[117,90,78,0.3412636335985625],[117,90,79,0.3470602142577136],[117,91,64,0.2455171331778475],[117,91,65,0.2541261720155278],[117,91,66,0.262655550940822],[117,91,67,0.27111535812492876],[117,91,68,0.27951408641299424],[117,91,69,0.2867872119105769],[117,91,70,0.2922915803653495],[117,91,71,0.2976984103838559],[117,91,72,0.3030287953194195],[117,91,73,0.3083076340867537],[117,91,74,0.31356136221267805],[117,91,75,0.3188159268365221],[117,91,76,0.3240950115145185],[117,91,77,0.3294185159926845],[117,91,78,0.3348012954322291],[117,91,79,0.3402521629061859],[117,92,64,0.2419212499312121],[117,92,65,0.2504746024462361],[117,92,66,0.25897228265048133],[117,92,67,0.26742575999983464],[117,92,68,0.27584486190120117],[117,92,69,0.2833746907298794],[117,92,70,0.2885584611704871],[117,92,71,0.29362108343536436],[117,92,72,0.29858748121670037],[117,92,73,0.30348722647352305],[117,92,74,0.30835202714693394],[117,92,75,0.31321347416593043],[117,92,76,0.31810105423856677],[117,92,77,0.3230404341844534],[117,92,78,0.32805202183470294],[117,92,79,0.3331498078103676],[117,93,64,0.23812176069666224],[117,93,65,0.24660232207671762],[117,93,66,0.25505009318619487],[117,93,67,0.2634778477266409],[117,93,68,0.2718969693706575],[117,93,69,0.2796460285871933],[117,93,70,0.28452257008233217],[117,93,71,0.2892539444478231],[117,93,72,0.2938685047843005],[117,93,73,0.2984001295143252],[117,93,74,0.3028854742939553],[117,93,75,0.3073614974718429],[117,93,76,0.3118632662205222],[117,93,77,0.31642204968011906],[117,93,78,0.3210637046784956],[117,93,79,0.32580735883012835],[117,94,64,0.23415169629476384],[117,94,65,0.24254227297858866],[117,94,66,0.25092135728787324],[117,94,67,0.2593029408902628],[117,94,68,0.26770014171652384],[117,94,69,0.27559996166951256],[117,94,70,0.2801860285478127],[117,94,71,0.2846030970501548],[117,94,72,0.2888825122655029],[117,94,73,0.293062034080884],[117,94,74,0.2971828648435349],[117,94,75,0.3012869636015553],[117,94,76,0.3054146546570256],[117,94,77,0.3096025373391919],[117,94,78,0.3138817030865677],[117,94,79,0.31827626512208396],[117,95,64,0.23004061770203982],[117,95,65,0.23832439828506333],[117,95,66,0.2466159762877921],[117,95,67,0.2549304666805666],[117,95,68,0.2632828529349271],[117,95,69,0.2712374723222912],[117,95,70,0.27555251162809896],[117,95,71,0.27967548225685684],[117,95,72,0.28364025999812686],[117,95,73,0.28748801600240126],[117,95,74,0.2912640352787377],[117,95,75,0.29501483347585367],[117,95,76,0.2987855802601779],[117,95,77,0.3026178367403629],[117,95,78,0.3065476135306734],[117,95,79,0.31060375520212224],[117,96,64,0.22581389983625863],[117,96,65,0.23397496413795912],[117,96,66,0.2421607514248001],[117,96,67,0.2503873966197456],[117,96,68,0.25867183238015723],[117,96,69,0.2665621809888144],[117,96,70,0.2706275245699876],[117,96,71,0.2744790189793809],[117,96,72,0.2781525984778535],[117,96,73,0.28169234456792525],[117,96,74,0.28514711328710163],[117,96,75,0.28856747111165737],[117,96,76,0.29200294832656093],[117,96,77,0.2954996178201314],[117,96,78,0.2990980063711272],[117,96,79,0.3028313446181176],[117,97,64,0.22149216525530696],[117,97,65,0.22951602767252463],[117,97,66,0.23757889761614231],[117,97,67,0.24569781605100735],[117,97,68,0.2538917021815247],[117,97,69,0.2615806248439372],[117,97,70,0.26541857770013033],[117,97,71,0.2690226547076413],[117,97,72,0.27243037819459975],[117,97,73,0.2756882237498321],[117,97,74,0.2788480763289164],[117,97,75,0.28196400392204424],[117,97,76,0.2850893581385092],[117,97,77,0.2882742101371053],[117,97,78,0.29156312941171914],[117,97,79,0.29499331203387746],[117,98,64,0.21709086940052144],[117,98,65,0.22496505267655034],[117,98,66,0.23288969930285383],[117,98,67,0.24088262795321663],[117,98,68,0.24896473930046592],[117,98,69,0.25630242175841345],[117,98,70,0.25993525842466464],[117,98,71,0.2633163253179336],[117,98,72,0.26648427639564176],[117,98,73,0.26948746551876895],[117,98,74,0.2723802524637767],[117,98,75,0.2752196341343692],[117,98,76,0.2780622107807063],[117,98,77,0.2809614960842882],[117,98,78,0.2839655790222176],[117,98,79,0.28711514449197906],[117,99,64,0.21262003884275685],[117,99,65,0.22033467439124435],[117,99,66,0.2281083098216619],[117,99,67,0.23595939249171893],[117,99,68,0.24391076356533292],[117,99,69,0.2507403183583103],[117,99,70,0.2541891992295638],[117,99,71,0.2573708230593438],[117,99,72,0.26032454400705374],[117,99,73,0.26310009467989803],[117,99,74,0.2657537630777444],[117,99,75,0.2683449011905019],[117,99,76,0.2709327754616711],[117,99,77,0.273573768362739],[117,99,78,0.2763189393583843],[117,99,79,0.27921195258919096],[117,100,64,0.20808416383120834],[117,100,65,0.21563261476625886],[117,100,66,0.2232456956065382],[117,100,67,0.2309423035736068],[117,100,68,0.23874715288962742],[117,100,69,0.24491012106402776],[117,100,70,0.24819394068276843],[117,100,71,0.25119757186078845],[117,100,72,0.253960672018449],[117,100,73,0.25653388471655914],[117,100,74,0.2589749071925774],[117,100,75,0.26134489501564123],[117,100,76,0.2637052144363224],[117,100,77,0.26611455202214396],[117,100,78,0.2686263901887876],[117,100,79,0.2712868562667752],[117,101,64,0.20348138476966227],[117,101,65,0.21086054467848311],[117,101,66,0.21830717380073195],[117,101,67,0.22584040061779312],[117,101,68,0.23348672947086901],[117,101,69,0.2388331258883138],[117,101,70,0.2419676676245173],[117,101,71,0.24481164834288338],[117,101,72,0.2474046667134445],[117,101,73,0.24979784757924037],[117,101,74,0.2520498175472987],[117,101,75,0.2542230223899562],[117,101,76,0.25638039715585603],[117,101,77,0.25858239889233603],[117,101,78,0.2608844108865624],[117,101,79,0.26333452634896],[117,102,64,0.19879597947460323],[117,102,65,0.206002661651287],[117,102,66,0.2132770166942512],[117,102,67,0.22063816626098545],[117,102,68,0.2281142975351689],[117,102,69,0.2325637069771327],[117,102,70,0.2355649781857127],[117,102,71,0.2382677282255722],[117,102,72,0.24071109487311557],[117,102,73,0.24294620864596325],[117,102,74,0.24503209802869272],[117,102,75,0.24703193994800363],[117,102,76,0.2490096666683936],[117,102,77,0.25102693927338554],[117,102,78,0.2531404968941402],[117,102,79,0.2553998898542425],[117,103,64,0.19400939024387565],[117,103,65,0.2010381360347376],[117,103,66,0.20813229892197962],[117,103,67,0.2153107653974907],[117,103,68,0.22260325914247991],[117,103,69,0.22617136200528884],[117,103,70,0.22905767898890683],[117,103,71,0.23163976000858902],[117,103,72,0.23395581340338045],[117,103,73,0.23605641870190588],[117,103,74,0.23800039081334506],[117,103,75,0.2398509908241073],[117,103,76,0.24167249476767633],[117,103,77,0.24352713072717067],[117,103,78,0.24547239362469586],[117,103,79,0.24755874605582837],[117,104,64,0.18911036131352504],[117,104,65,0.19595405854661216],[117,104,66,0.20285867943560162],[117,104,67,0.20984267013950963],[117,104,68,0.21659764058554826],[117,104,69,0.21971633263024273],[117,104,70,0.2225075228113874],[117,104,71,0.22499086897822024],[117,104,72,0.2272031505264989],[117,104,73,0.2291937941917036],[117,104,74,0.23102073261901998],[117,104,75,0.23274660817645396],[117,104,76,0.2344353334799514],[117,104,77,0.2361490190978272],[117,104,78,0.23794527790227593],[117,104,79,0.23987491454549587],[117,105,64,0.18409615042592145],[117,105,65,0.19074662685091498],[117,105,66,0.19745155740784004],[117,105,67,0.2042287759779726],[117,105,68,0.21020485507734812],[117,105,69,0.21324857387791674],[117,105,70,0.2159652205127411],[117,105,71,0.21837240333612973],[117,105,72,0.2205049745632357],[117,105,73,0.2224105947096816],[117,105,74,0.22414562530900498],[117,105,75,0.225771362349607],[117,105,76,0.2273506218914349],[117,105,77,0.22894468833671802],[117,105,78,0.23061063484481825],[117,105,79,0.23239902440576668],[117,106,64,0.17897399995077193],[117,106,65,0.18542253274637804],[117,106,66,0.1919173666767363],[117,106,67,0.19847559146220287],[117,106,68,0.20381952362118186],[117,106,69,0.20680679060967516],[117,106,70,0.2094695972533632],[117,106,71,0.2118232053515897],[117,106,72,0.21390007079863796],[117,106,73,0.21574549241552216],[117,106,74,0.21741358127086688],[117,106,75,0.2189635627774801],[117,106,76,0.22045642289564354],[117,106,77,0.2219519088138263],[117,106,78,0.22350589351845648],[117,106,79,0.22516811271349293],[117,107,64,0.17376303136255883],[117,107,65,0.18000076981884539],[117,107,66,0.18627528529165072],[117,107,67,0.19260283500426847],[117,107,68,0.19746798044450334],[117,107,69,0.20041709169667687],[117,107,70,0.2030463853513789],[117,107,71,0.20536854242488217],[117,107,72,0.20741320589317908],[117,107,73,0.20922276084332664],[117,107,74,0.21084842395495762],[117,107,75,0.21234665430706012],[117,107,76,0.21377589658537896],[117,107,77,0.21519366684111332],[117,107,78,0.21665399002774977],[117,107,79,0.21820519762656862],[117,108,64,0.16849656530888169],[117,108,65,0.17451486391851326],[117,108,66,0.18055936263894176],[117,108,67,0.18664544139320371],[117,108,68,0.19116257564141775],[117,108,69,0.19409125915938408],[117,108,70,0.19670665100655166],[117,108,71,0.19901869530598343],[117,108,72,0.20105387715121906],[117,108,73,0.2028511805422767],[117,108,74,0.20445834120003661],[117,108,75,0.20592840582512725],[117,108,76,0.2073166084931872],[117,108,77,0.20867757399904854],[117,108,78,0.21006285708353137],[117,108,79,0.2115188256045317],[117,109,64,0.1632248212731334],[117,109,65,0.16901548003088193],[117,109,66,0.1748210172821109],[117,109,67,0.18065593072123734],[117,109,68,0.18489934265013558],[117,109,69,0.187824579108189],[117,109,70,0.19044480119980142],[117,109,71,0.19276714930469255],[117,109,72,0.19481469207369506],[117,109,73,0.19662260663687275],[117,109,74,0.1982346361710262],[117,109,75,0.19969983583007594],[117,109,76,0.20106961722196345],[117,109,77,0.20239510079074713],[117,109,78,0.2037247846377329],[117,109,79,0.20510253749677498],[117,110,64,0.1580077495064613],[117,110,65,0.1635630397761245],[117,110,66,0.16912142310764408],[117,110,67,0.17469654270414112],[117,110,68,0.17864449960821482],[117,110,69,0.1815824107826464],[117,110,70,0.18422523995266465],[117,110,71,0.1865773536551857],[117,110,72,0.18865824269908846],[117,110,73,0.19049896578578868],[117,110,74,0.1921388502681936],[117,110,75,0.1936224603636804],[117,110,76,0.19499684237909473],[117,110,77,0.19630905574308063],[117,110,78,0.1976039978782196],[117,110,79,0.1989225301880213],[117,111,64,0.15290071596329433],[117,111,65,0.15821340375511422],[117,111,66,0.16351699823833277],[117,111,67,0.16882432294288852],[117,111,68,0.17232353243030363],[117,111,69,0.17528981171770952],[117,111,70,0.17797273645482364],[117,111,71,0.18037401275733406],[117,111,72,0.1825094736919164],[117,111,73,0.18440582397568803],[117,111,74,0.1860976193463513],[117,111,75,0.18762449011574062],[117,111,76,0.18902861773058502],[117,111,77,0.19035247247055534],[117,111,78,0.19163681971957833],[117,111,79,0.19291900155702663],[117,112,64,0.14794468367702285],[117,112,65,0.1530090951874505],[117,112,66,0.15805125154288271],[117,112,67,0.16260849366609303],[117,112,68,0.16587219064676717],[117,112,69,0.16888368736162349],[117,112,70,0.17162612372136626],[117,112,71,0.17409867780438706],[117,112,72,0.17631344755760162],[117,112,73,0.17829253363615458],[117,112,74,0.18006533258732707],[117,112,75,0.18166604897746017],[117,112,76,0.18313143444614394],[117,112,77,0.18449876105289348],[117,112,78,0.18580403566208856],[117,112,79,0.18708046149665447],[117,113,64,0.14315699647677047],[117,113,65,0.147969573705052],[117,113,66,0.1524339820110624],[117,113,67,0.15594190449425974],[117,113,68,0.15924984591325073],[117,113,69,0.1623236379005403],[117,113,70,0.16514586043968094],[117,113,71,0.16771330755625394],[117,113,72,0.17003426739430885],[117,113,73,0.17212597873307436],[117,113,74,0.17401227205302205],[117,113,75,0.17572140273177383],[117,113,76,0.17728408341473173],[117,113,77,0.17873172206579968],[117,113,78,0.1800948716637618],[117,113,79,0.18140189697376796],[117,114,64,0.13800196063892728],[117,114,65,0.14182923541242912],[117,114,66,0.14552424051359655],[117,114,67,0.1490704519571621],[117,114,68,0.15243549849891044],[117,114,69,0.15558754428434873],[117,114,70,0.15850902049842952],[117,114,71,0.16119449997543295],[117,114,72,0.16364840878611447],[117,114,73,0.1658828886120164],[117,114,74,0.1679158168232712],[117,114,75,0.16976899072879809],[117,114,76,0.17146648201459228],[117,114,77,0.1730331669294978],[117,114,78,0.1744934373215635],[117,114,79,0.17587009717520188],[117,115,64,0.13083720164854584],[117,115,65,0.13467620665049795],[117,115,66,0.1383997030425707],[117,115,67,0.14199234647126432],[117,115,68,0.14542511122887133],[117,115,69,0.14866915518440743],[117,115,70,0.1517071744391759],[117,115,71,0.15453170593733462],[117,115,72,0.15714329838531305],[117,115,73,0.1595488077682148],[117,115,74,0.1617598231065759],[117,115,75,0.1637912277325578],[117,115,76,0.1656599009960622],[117,115,77,0.1673835649405701],[117,115,78,0.1689797801183392],[117,115,79,0.1704650943477759],[117,116,64,0.1234683121845165],[117,116,65,0.12732078068877123],[117,116,66,0.1310763109338188],[117,116,67,0.13472079981985635],[117,116,68,0.13822901916186087],[117,116,69,0.14157573709120821],[117,116,70,0.1447443205281873],[117,116,71,0.14772547864181992],[117,116,72,0.15051591435624823],[117,116,73,0.1531170741472816],[117,116,74,0.1555340004388251],[117,116,75,0.15777429062840834],[117,116,76,0.1598471664879237],[117,116,77,0.16176265740168075],[117,116,78,0.16353090062113124],[117,116,79,0.16516156143632674],[117,117,64,0.11592912610747774],[117,117,65,0.11979424356307154],[117,117,66,0.12358258512651599],[117,117,67,0.12728132548412602],[117,117,68,0.13086941714782563],[117,117,69,0.13432578951501917],[117,117,70,0.1376348671830979],[117,117,71,0.14078576018888492],[117,117,72,0.14377140983302394],[117,117,73,0.14658780678540698],[117,117,74,0.14923328440897166],[117,117,75,0.15170789004181665],[117,117,76,0.15401283677944022],[117,117,77,0.15615003810129024],[117,117,78,0.15812172749034645],[117,117,79,0.15993016500277235],[117,118,64,0.1082632615317824],[117,118,65,0.11213774139587233],[117,118,66,0.11595687877383667],[117,118,67,0.11970913018585118],[117,118,68,0.12337792724464929],[117,118,69,0.12694682710533922],[117,118,70,0.13040166836308054],[117,118,71,0.1337302066787689],[117,118,72,0.13692176046585627],[117,118,73,0.13996690354634694],[117,118,74,0.14285720632578203],[117,118,75,0.14558502692075498],[117,118,76,0.14814335355749222],[117,118,77,0.15052569944709138],[117,118,78,0.15272605123331123],[117,118,79,0.15473887200338843],[117,119,64,0.10052130724593988],[117,119,65,0.10439953697369744],[117,119,66,0.10824473221459428],[117,119,67,0.11204659856686672],[117,119,68,0.1157932478153736],[117,119,69,0.11947323036457716],[117,119,70,0.12307411341065981],[117,119,71,0.12658255309833025],[117,119,72,0.12998443705613236],[117,119,73,0.13326504966265684],[117,119,74,0.1364092602152976],[117,119,75,0.13940173413478282],[117,119,76,0.14222716730367557],[117,119,77,0.14487054360573928],[117,119,78,0.1473174157062428],[117,119,79,0.1495542090913977],[117,120,64,0.09275812432083279],[117,120,65,0.09663237681999104],[117,120,66,0.10049633165001157],[117,120,67,0.10434087229443398],[117,120,68,0.10815888550137909],[117,120,69,0.11194416601841031],[117,120,70,0.11568627223591976],[117,120,71,0.11937101867593114],[117,120,72,0.12298110372015106],[117,120,73,0.1264967372492281],[117,120,74,0.129896267020588],[117,120,75,0.1331568026472381],[117,120,76,0.13625483608048483],[117,120,77,0.1391668575455716],[117,120,78,0.14164365410997928],[117,120,79,0.1427993498283259],[117,121,64,0.08503024911131571],[117,121,65,0.08889095487703808],[117,121,66,0.0927640575220545],[117,121,67,0.09664150944103059],[117,121,68,0.10052095573819297],[117,121,69,0.10440156249290858],[117,121,70,0.10827508104229633],[117,121,71,0.11212673762034225],[117,121,72,0.1159363261832255],[117,121,73,0.1196792800504916],[117,121,74,0.12332771990290942],[117,121,75,0.12685147578082395],[117,121,76,0.13021908083748188],[117,121,77,0.13123805930591162],[117,121,78,0.13414632952838768],[117,121,79,0.13796588503383173],[117,122,64,0.07739342584776479],[117,122,65,0.08122950122845844],[117,122,66,0.0851001512317788],[117,122,67,0.08899825295052659],[117,122,68,0.09292608076289269],[117,122,69,0.09688816954691286],[117,122,70,0.10087859770455858],[117,122,71,0.10488224438012897],[117,122,72,0.10921518211110343],[117,122,73,0.11619372944581878],[117,122,74,0.12312182499713875],[117,122,75,0.12996365793355896],[117,122,76,0.13429714428993444],[117,122,77,0.13780105710410576],[117,122,78,0.1412705199111907],[117,122,79,0.14473615439523713],[117,123,64,0.06990028352637265],[117,123,65,0.07369951066175252],[117,123,66,0.0775545150637189],[117,123,67,0.08281011760616766],[117,123,68,0.0897776477606734],[117,123,69,0.09683022721006809],[117,123,70,0.10396362563284739],[117,123,71,0.11116230876343068],[117,123,72,0.11840134773721034],[117,123,73,0.12564827326793282],[117,123,74,0.1328648698854732],[117,123,75,0.13898921876818932],[117,123,76,0.14220189602577124],[117,123,77,0.14534541449329447],[117,123,78,0.14845937543432355],[117,123,79,0.15158182239035192],[117,124,64,0.07070902292784716],[117,124,65,0.07748050536303046],[117,124,66,0.08434999851602529],[117,124,67,0.09130951006323085],[117,124,68,0.09836807959855505],[117,124,69,0.10553924175535466],[117,124,70,0.11282106331546975],[117,124,71,0.12019800127325429],[117,124,72,0.12764317264692213],[117,124,73,0.13512055450904353],[117,124,74,0.1425871084749994],[117,124,75,0.14725075363061768],[117,124,76,0.15012974055196507],[117,124,77,0.15293564890895955],[117,124,78,0.15571504612357],[117,124,79,0.15851282641878683],[117,125,64,0.079373682643388],[117,125,65,0.08615323552338093],[117,125,66,0.09304715301814094],[117,125,67,0.10004768850221639],[117,125,68,0.10716742394002106],[117,125,69,0.11442442289996155],[117,125,70,0.12181897379840863],[117,125,71,0.12933569770428438],[117,125,72,0.13694613237451647],[117,125,73,0.14461123429980782],[117,125,74,0.15228379214048476],[117,125,75,0.15548995644891],[117,125,76,0.15806566979901193],[117,125,77,0.16056345275564615],[117,125,78,0.16303609082226025],[117,125,79,0.16553462805225203],[117,126,64,0.08836436028677262],[117,126,65,0.09512887087414922],[117,126,66,0.10202192017632707],[117,126,67,0.1090357752546697],[117,126,68,0.1161860633235977],[117,126,69,0.12349491357831838],[117,126,70,0.13096469749108744],[117,126,71,0.1385803413595863],[117,126,72,0.1463121750772402],[117,126,73,0.1541186891079857],[117,126,74,0.1612359031650687],[117,126,75,0.16368514649216617],[117,126,76,0.16599308114690636],[117,126,77,0.16821760700976204],[117,126,78,0.1704168814825834],[117,126,79,0.17264729358929531],[117,127,64,0.09768041102728996],[117,127,65,0.10440763455045324],[117,127,66,0.11127514796580668],[117,127,67,0.11827499121412033],[117,127,68,0.1254252894513986],[117,127,69,0.1327517026901637],[117,127,70,0.14025849577747787],[117,127,71,0.14793101032558573],[117,127,72,0.1557387273359246],[117,127,73,0.16363823054070253],[117,127,74,0.16958421380187524],[117,127,75,0.17181473388555477],[117,127,76,0.17389384377392594],[117,127,77,0.17588374472682933],[117,127,78,0.17784705409411916],[117,127,79,0.17984462850924082],[117,128,64,0.10730776560385173],[117,128,65,0.11397691167843933],[117,128,66,0.12079551451953784],[117,128,67,0.12775514251545858],[117,128,68,0.13487584874141617],[117,128,69,0.1421862505800986],[117,128,70,0.14969228295795226],[117,128,71,0.1573797856654981],[117,128,72,0.16521772968300374],[117,128,73,0.17316133888232751],[117,128,74,0.17780617096367082],[117,128,75,0.17985758672636054],[117,128,76,0.1817483912366305],[117,128,77,0.18354415215619063],[117,128,78,0.1853110067244183],[117,128,79,0.18711336648161855],[117,129,64,0.11721742821816504],[117,129,65,0.12380977203699314],[117,129,66,0.1305580818325752],[117,129,67,0.13745321050798892],[117,129,68,0.14451657924973213],[117,129,69,0.1517791920511284],[117,129,70,0.15924842054990376],[117,129,71,0.1669106659973278],[117,129,72,0.17473470224714446],[117,129,73,0.1826749106549376],[117,129,74,0.18588230070633263],[117,129,75,0.1877934113891757],[117,129,76,0.18953584039151367],[117,129,77,0.19117760772921338],[117,129,78,0.1927874450999829],[117,129,79,0.19443241352501742],[117,130,64,0.1273640987648254],[117,130,65,0.13386361264874222],[117,130,66,0.14052296270430856],[117,130,67,0.14733204555801496],[117,130,68,0.15431313949182504],[117,130,69,0.16149911741849995],[117,130,70,0.16889857441413703],[117,130,71,0.17649852886755826],[117,130,72,0.18426784085329537],[117,130,73,0.1917484973785022],[117,130,74,0.19379666213478647],[117,130,75,0.19560314599097992],[117,130,76,0.19723413675817658],[117,130,77,0.19875925915969606],[117,130,78,0.20024897611222675],[117,130,79,0.20177214784982977],[117,131,64,0.13768491977442346],[117,131,65,0.14407892071209874],[117,131,66,0.15063410135528815],[117,131,67,0.15733916512914964],[117,131,68,0.16421682960823364],[117,131,69,0.17130143203180967],[117,131,70,0.17860263510325863],[117,131,71,0.18610813927043457],[117,131,72,0.19378714386712845],[117,131,73,0.19955759973534118],[117,131,74,0.20153746305037],[117,131,75,0.20326936699274825],[117,131,76,0.20482022641369643],[117,131,77,0.20626053886864912],[117,131,78,0.20766174959030748],[117,131,79,0.20909377586114034],[117,132,64,0.1480983002232703],[117,132,65,0.15437810100691082],[117,132,66,0.16081810388690035],[117,132,67,0.16740558430919406],[117,132,68,0.1741634247693716],[117,132,69,0.18112720539957444],[117,132,70,0.18830760326667764],[117,132,71,0.19569309738809063],[117,132,72,0.2032534518217531],[117,132,73,0.2071661665138851],[117,132,74,0.2090978118279887],[117,132,75,0.2107768558801113],[117,132,76,0.2122704095493981],[117,132,77,0.21364927976256162],[117,132,78,0.21498531567675405],[117,132,79,0.21634891511531953],[117,133,64,0.15849778843601023],[117,133,65,0.16465793731930303],[117,133,66,0.17097528849499416],[117,133,67,0.1774354415334803],[117,133,68,0.1840613223746867],[117,133,69,0.1908897484985638],[117,133,70,0.1979324961237701],[117,133,71,0.20517898665806186],[117,133,72,0.2123919534708847],[117,133,73,0.21460327388108752],[117,133,74,0.2164980618248774],[117,133,75,0.21813662821934002],[117,133,76,0.2195858948595256],[117,133,77,0.2209165781223623],[117,133,78,0.22220052665165466],[117,133,79,0.223508219970247],[117,134,64,0.16876406668659],[117,134,65,0.17479975855282387],[117,134,66,0.18098797402863478],[117,134,67,0.18731237122364855],[117,134,68,0.19379587714081017],[117,134,69,0.2004766762602924],[117,134,70,0.20736783757266472],[117,134,71,0.21445996970217215],[117,134,72,0.2197532714390832],[117,134,73,0.2219360924404587],[117,134,74,0.22379962471165527],[117,134,75,0.225403544335688],[117,134,76,0.22681424309961243],[117,134,77,0.22810201169315183],[117,134,78,0.2293383771107293],[117,134,79,0.23059360122586453],[117,135,64,0.17879512049304738],[117,135,65,0.18470196640273887],[117,135,66,0.1907553027394226],[117,135,67,0.1969366013507579],[117,135,68,0.20326880299739641],[117,135,69,0.20979166315062475],[117,135,70,0.216519797778043],[117,135,71,0.22344529284335635],[117,135,72,0.2270637165359167],[117,135,73,0.2292190727692716],[117,135,74,0.23105232966275613],[117,135,75,0.23262220909429515],[117,135,76,0.23399426611493787],[117,135,77,0.23523807948013017],[117,135,78,0.23642459591545023],[117,135,79,0.23762363508582596],[117,136,64,0.18850877687811335],[117,136,65,0.1942828743713102],[117,136,66,0.20019637238363375],[117,136,67,0.2062283667382636],[117,136,68,0.212401866644123],[117,136,69,0.218758431681612],[117,136,70,0.22531449924073668],[117,136,71,0.23186466828995314],[117,136,72,0.23436312440971546],[117,136,73,0.23648862212299657],[117,136,74,0.23828872561779574],[117,136,75,0.23982091166176658],[117,136,76,0.24114962972697226],[117,136,77,0.24234350708942592],[117,136,78,0.2434727062925142],[117,136,79,0.24460644191842743],[117,137,64,0.19784253962988796],[117,137,65,0.20348047046264495],[117,137,66,0.2092499205619762],[117,137,67,0.21512749983325932],[117,137,68,0.22113637045318346],[117,137,69,0.2273201212183743],[117,137,70,0.23369727263426443],[117,137,71,0.23920789725449682],[117,137,72,0.2416737142469909],[117,137,73,0.24376417671045592],[117,137,74,0.24552520605834507],[117,137,75,0.2470127783756028],[117,137,76,0.24829000825899142],[117,137,77,0.24942437527757558],[117,137,78,0.25048510038183264],[117,137,79,0.2515406791539723],[117,138,64,0.20675383439279335],[117,138,65,0.2122525873505708],[117,138,66,0.21787441063514695],[117,138,67,0.22359341389462054],[117,138,68,0.22943301505329053],[117,138,69,0.23543901947744672],[117,138,70,0.24163225363581475],[117,138,71,0.2465742120761681],[117,138,72,0.24900080155595794],[117,138,73,0.25104902489366926],[117,138,74,0.25276292559487407],[117,138,75,0.25419676234658806],[117,138,76,0.25541212417408915],[117,138,77,0.25647518476868597],[117,138,78,0.2574541032240857],[117,138,79,0.25841657799452405],[117,139,64,0.21522066568299372],[117,139,65,0.2205774821409673],[117,139,66,0.22604852135245143],[117,139,67,0.23160548074184423],[117,139,68,0.2372721437343758],[117,139,69,0.2430966588348445],[117,139,70,0.24910232282786526],[117,139,71,0.25395356580575495],[117,139,72,0.2563332235730157],[117,139,73,0.2583308795277954],[117,139,74,0.25998850674124413],[117,139,75,0.2613584683684737],[117,139,76,0.2625006716321209],[117,139,77,0.26347985641259547],[117,139,78,0.264363025560934],[117,139,79,0.26521702363939453],[117,140,64,0.22324268791578883],[117,140,65,0.22845482783148707],[117,140,66,0.23377204230052773],[117,140,67,0.23916380516637328],[117,140,68,0.24465437075859445],[117,140,69,0.2502942794977995],[117,140,70,0.25610939067308663],[117,140,71,0.2613186167889703],[117,140,72,0.2636434754648071],[117,140,73,0.2655821977435247],[117,140,74,0.26717453533927576],[117,140,75,0.2684708117890062],[117,140,76,0.2695291228426308],[117,140,77,0.27041266581485623],[117,140,78,0.2711872048617419],[117,140,79,0.27191867875020087],[117,141,64,0.2308426925520285],[117,141,65,0.23590711857904756],[117,141,66,0.2410671772744348],[117,141,67,0.24629039808989303],[117,141,68,0.25160159563342266],[117,141,69,0.25705366155237924],[117,141,70,0.26267502951270844],[117,141,71,0.26847173411749636],[117,141,72,0.27088755556752475],[117,141,73,0.272760246547219],[117,141,74,0.27427984316959997],[117,141,75,0.2754945100673362],[117,141,76,0.27646041615546413],[117,141,77,0.27723911162397274],[117,141,78,0.2778950340315638],[117,141,79,0.2784931499029669],[117,142,64,0.23806851351504732],[117,142,65,0.24298149091753057],[117,142,66,0.24798025769267298],[117,142,67,0.25303075056015967],[117,142,68,0.25815840539524837],[117,142,69,0.2634183278786813],[117,142,70,0.2688414545057931],[117,142,71,0.2744364877869853],[117,142,72,0.2780045179563043],[117,142,73,0.279806912671445],[117,142,74,0.28124957634562975],[117,142,75,0.28237840580349827],[117,142,76,0.283247524887979],[117,142,77,0.28391671671151586],[117,142,78,0.28444897729467195],[117,142,79,0.2849081968000687],[117,143,64,0.2449803967907412],[117,143,65,0.24973741943948918],[117,143,66,0.2545698017279504],[117,143,67,0.25944229758464316],[117,143,68,0.2643809929333707],[117,143,69,0.26944297796349187],[117,143,70,0.2746615433850025],[117,143,71,0.2800479873216568],[117,143,72,0.2849250821969893],[117,143,73,0.2866564788910485],[117,143,74,0.288022051744005],[117,143,75,0.2890653186990146],[117,143,76,0.28983822443001084],[117,143,77,0.29039863646940206],[117,143,78,0.2908079542509004],[117,143,79,0.29112883705234227],[117,144,64,0.2515976606152416],[117,144,65,0.2561947349970646],[117,144,66,0.26085612473017605],[117,144,67,0.26554588974591464],[117,144,68,0.2702907898144719],[117,144,69,0.27514960752566536],[117,144,70,0.2801577848253963],[117,144,71,0.28532909793942013],[117,144,72,0.2906585288037556],[117,144,73,0.2932661508597225],[117,144,74,0.2945551083229629],[117,144,75,0.29551393431961426],[117,144,76,0.29619226714094593],[117,144,77,0.29664591096329496],[117,144,78,0.2969345085841183],[117,144,79,0.2971193235524291],[117,145,64,0.2579260462489419],[117,145,65,0.2623600313875789],[117,145,66,0.266846712570464],[117,145,67,0.27135001649093177],[117,145,68,0.2758974001124434],[117,145,69,0.28054899541871453],[117,145,70,0.2853421454940141],[117,145,71,0.29029294491440305],[117,145,72,0.29539898305984186],[117,145,73,0.2996022224408034],[117,145,74,0.30081466294461745],[117,145,75,0.3016899403495684],[117,145,76,0.30227527789746417],[117,145,77,0.302624282617179],[117,145,78,0.30279469003130216],[117,145,79,0.30284620792179345],[117,146,64,0.26397006630202696],[117,146,65,0.26823863009581955],[117,146,66,0.2725477533529294],[117,146,67,0.2768618431538581],[117,146,68,0.28120907328384687],[117,146,69,0.2856505387887137],[117,146,70,0.2902251913589273],[117,146,71,0.2949512439699672],[117,146,72,0.29982877393294427],[117,146,73,0.3048422725730232],[117,146,74,0.30676922924308697],[117,146,75,0.3075616186996905],[117,146,76,0.30805547531631106],[117,146,77,0.30830209331283104],[117,146,78,0.3083571636895168],[117,146,79,0.3082786868284742],[117,147,64,0.26973289630466707],[117,147,65,0.27383445960259184],[117,147,66,0.27796400363295487],[117,147,67,0.2820870618314056],[117,147,68,0.28623253838562485],[117,147,69,0.2904620718786314],[117,147,70,0.29481589477462034],[117,147,71,0.29931410259229185],[117,147,72,0.3039591054695371],[117,147,73,0.30873803572862296],[117,147,74,0.31239010714203774],[117,147,75,0.31309999914066344],[117,147,76,0.31350377660933637],[117,147,77,0.31365032722021313],[117,147,78,0.3135931775944439],[117,147,79,0.31338848147350046],[117,148,64,0.27521630732612834],[117,148,65,0.2791499778448173],[117,148,66,0.2830986993036857],[117,148,67,0.28702978851387523],[117,148,68,0.2909728860960095],[117,148,69,0.29498973351023855],[117,148,70,0.29912148991740006],[117,148,71,0.3033898677481347],[117,148,72,0.30779942290839746],[117,148,73,0.31233981081974016],[117,148,74,0.31698800297661356],[117,148,75,0.3182789924722522],[117,148,76,0.31859389476118977],[117,148,77,0.31864266087121723],[117,148,78,0.31847655442060124],[117,148,79,0.31814975980458843],[117,149,64,0.28042063975184295],[117,149,65,0.2841861379453326],[117,149,66,0.2879535112766286],[117,149,67,0.2916925066062115],[117,149,68,0.2954334986817658],[117,149,69,0.29923788339365043],[117,149,70,0.3031473767237597],[117,149,71,0.3071850201565069],[117,149,72,0.3113573013776497],[117,149,73,0.3156562509989956],[117,149,74,0.3200615105158446],[117,149,75,0.3230755031853711],[117,149,76,0.3233024280434504],[117,149,77,0.32325552056106355],[117,149,78,0.3229837074721124],[117,149,79,0.3225391017245965],[117,150,64,0.28534481833181596],[117,150,65,0.2889423973337872],[117,150,66,0.292528546084148],[117,150,67,0.2960760569738427],[117,150,68,0.29961602805376664],[117,150,69,0.303209067411753],[117,150,70,0.30689707348018114],[117,150,71,0.3107041152580924],[117,150,72,0.31463837739177364],[117,150,73,0.3186940917087306],[117,150,74,0.3228534509533401],[117,150,75,0.3270885005654875],[117,150,76,0.3276089418839381],[117,150,77,0.3274681471630855],[117,150,78,0.32709368112942955],[117,150,79,0.3265355075523934],[117,151,64,0.289986408619562],[117,151,65,0.2934167703848539],[117,151,66,0.29682239153521794],[117,151,67,0.30017967465024736],[117,151,68,0.30352042205353674],[117,151,69,0.306904032025763],[117,151,70,0.31037221821014926],[117,151,71,0.313949771021928],[117,151,72,0.3176463232745386],[117,151,73,0.32145811279241066],[117,151,74,0.325369738309675],[117,151,75,0.32935590502072193],[117,151,76,0.33149604311317976],[117,151,77,0.33126266844320645],[117,151,78,0.3307882159140331],[117,151,79,0.330120449985125],[117,152,64,0.29434171493074884],[117,152,65,0.2976059247091124],[117,152,66,0.30083220756377843],[117,152,67,0.3040010723498809],[117,152,68,0.3071449991186764],[117,152,69,0.31032178795183646],[117,152,70,0.3135726190061204],[117,152,71,0.31692270272907525],[117,152,72,0.32038286463243487],[117,152,73,0.3239511375550218],[117,152,74,0.32761435826759094],[117,152,75,0.33134976531269134],[117,152,76,0.3349494466146116],[117,152,77,0.33462417896325847],[117,152,78,0.33405183833305446],[117,152,79,0.3332779698065685],[117,153,64,0.2984059199621613],[117,153,65,0.30150532124265617],[117,153,66,0.3045538624186643],[117,153,67,0.3075365709385033],[117,153,68,0.3104865714821235],[117,153,69,0.31345972326414395],[117,153,70,0.31649635345790733],[117,153,71,0.31962180487486946],[117,153,72,0.32284784100315106],[117,153,73,0.3261740688718986],[117,153,74,0.3295893771412786],[117,153,75,0.3330733868334791],[117,153,76,0.3365979121478028],[117,153,77,0.3375408276642587],[117,153,78,0.33687197566579524],[117,153,79,0.3359948155831702],[117,154,64,0.3021732662262507],[117,154,65,0.30510939829553735],[117,154,66,0.30798211435715767],[117,154,67,0.31078127702492675],[117,154,68,0.3135406170709436],[117,154,69,0.31631376608903833],[117,154,70,0.3191399173363847],[117,154,71,0.3220442803367515],[117,154,72,0.32503930980694873],[117,154,73,0.32812596244664705],[117,154,74,0.3312949795254771],[117,154,75,0.33452819319289945],[117,154,76,0.33779985443919486],[117,154,77,0.34000391322389045],[117,154,78,0.3392390958563529],[117,154,79,0.3382606275895897],[117,155,64,0.3056372794741164],[117,155,65,0.30841179973628174],[117,155,66,0.3111108390204642],[117,155,67,0.31372930785343783],[117,155,68,0.3163015002844151],[117,155,69,0.31887859706758404],[117,155,70,0.32149842270224566],[117,155,71,0.3241858169633907],[117,155,72,0.3269536937351126],[117,155,73,0.32980413732269054],[117,155,74,0.33272953469083],[117,155,75,0.3357137420445846],[117,155,76,0.3387332841488883],[117,155,77,0.3417585847732062],[117,155,78,0.3411468726806211],[117,155,79,0.34006816620879465],[117,156,64,0.308791034299384],[117,156,65,0.3114056475089968],[117,156,66,0.31393330268791786],[117,156,67,0.31637406369374926],[117,156,68,0.3187627418477336],[117,156,69,0.32114791177885854],[117,156,70,0.3235658456228624],[117,156,71,0.32604081175186866],[117,156,72,0.32858597171811077],[117,156,73,0.3312043237585684],[117,156,74,0.33388969179463157],[117,156,75,0.33662775880899287],[117,156,76,0.33939714343960664],[117,156,77,0.34217051859863834],[117,156,78,0.3425923763608831],[117,156,79,0.3414135850569708],[117,157,64,0.3116274621380706],[117,157,65,0.3140838587020462],[117,157,66,0.31644248162850314],[117,157,67,0.31870854794633363],[117,157,68,0.3209173379576936],[117,157,69,0.3231147333351629],[117,157,70,0.32533532369718304],[117,157,71,0.32760264279420126],[117,157,72,0.32992991362774365],[117,157,73,0.3323208485855542],[117,157,74,0.33477050398109803],[117,157,75,0.3372661883146806],[117,157,76,0.33978842351112837],[117,157,77,0.3423119583364653],[117,157,78,0.34357628980812904],[117,157,79,0.3422967490919139],[117,158,64,0.31413970190502294],[117,158,65,0.31643950741271465],[117,158,66,0.3186314277931746],[117,158,67,0.32072573520519493],[117,158,68,0.322758128960098],[117,158,69,0.3247717753823895],[117,158,70,0.32679950360887816],[117,158,71,0.32886398919227555],[117,158,72,0.33097835888228133],[117,158,73,0.33314685817727246],[117,158,74,0.335365581452475],[117,158,75,0.33762326438223705],[117,158,76,0.339902138293752],[117,158,77,0.3421788460184643],[117,158,78,0.3441031506809657],[117,158,79,0.3427215979749541],[117,159,64,0.31632149353501754],[117,159,65,0.3184662316799078],[117,159,66,0.32049368111861865],[117,159,67,0.3224189875467441],[117,159,68,0.3242782178245181],[117,159,69,0.3261118557634974],[117,159,70,0.3279509389507901],[117,159,71,0.3298171991605334],[117,159,72,0.3317235391405203],[117,159,73,0.3336745791739796],[117,159,74,0.3356672736008036],[117,159,75,0.3376915973790273],[117,159,76,0.33973130267114654],[117,159,77,0.34176474535223256],[117,159,78,0.3437657812589484],[117,159,79,0.3426965549699825],[117,160,64,0.3181676147270242],[117,160,65,0.3201586857875909],[117,160,66,0.32202372874343416],[117,160,67,0.32378251934332924],[117,160,68,0.3254714387113283],[117,160,69,0.32712836113122556],[117,160,70,0.32878253859008505],[117,160,71,0.33045470655939096],[117,160,72,0.3321574452908168],[117,160,73,0.3338956171199693],[117,160,74,0.3356668803010111],[117,160,75,0.33746227977828425],[117,160,76,0.33926691519093305],[117,160,77,0.3410606863044144],[117,160,78,0.34281911597003256],[117,160,79,0.342234981679779],[117,161,64,0.3196743612232346],[117,161,65,0.32151303827518884],[117,161,66,0.323217511471005],[117,161,67,0.3248119109329601],[117,161,68,0.3263328759584399],[117,161,69,0.32781576282766095],[117,161,70,0.3292880658731594],[117,161,71,0.33076949612926365],[117,161,72,0.332272238964281],[117,161,73,0.3338012931910339],[117,161,74,0.3353548924789868],[117,161,75,0.33692500976302],[117,161,76,0.3384979452217778],[117,161,77,0.340054998283912],[117,161,78,0.34157322401485385],[117,161,79,0.34135567893939806],[117,162,64,0.32084007098931944],[117,162,65,0.32252751602657487],[117,162,66,0.32407297784865174],[117,162,67,0.32550467151187845],[117,162,68,0.3268594338499353],[117,162,69,0.3281701843821079],[117,162,70,0.3294626890013655],[117,162,71,0.33075561772421586],[117,162,72,0.3320607088265167],[117,162,73,0.33338301920909463],[117,162,74,0.3347212620825515],[117,162,75,0.33606823292274235],[117,162,76,0.3374113245160288],[117,162,77,0.3387331317880645],[117,162,78,0.34001214699305343],[117,162,79,0.34008343420787435],[117,163,64,0.32166569270040557],[117,163,65,0.32320299484802495],[117,163,66,0.3245906862714213],[117,163,67,0.3258608516553513],[117,163,68,0.32705045756729667],[117,163,69,0.32819002101636285],[117,163,70,0.32930358294448253],[117,163,71,0.3304087498771914],[117,163,72,0.3315167719310794],[117,163,73,0.3326327111645776],[117,163,74,0.33375570160025597],[117,163,75,0.3348793021006656],[117,163,76,0.33599194313858427],[117,163,77,0.33707746836794006],[117,163,78,0.3381157717752158],[117,163,79,0.33844961582452493],[117,164,64,0.3221522354073908],[117,164,65,0.3235401623929726],[117,164,66,0.32477069667199215],[117,164,67,0.3258796717165888],[117,164,68,0.32690410524038627],[117,164,69,0.32787206774846267],[117,164,70,0.32880583110998796],[117,164,71,0.32972189704161836],[117,164,72,0.3306309923228036],[117,164,73,0.33153815796557784],[117,164,74,0.3324429338885184],[117,164,75,0.33333964049122317],[117,164,76,0.33421775837680145],[117,164,77,0.33506240732711046],[117,164,78,0.3358549255004204],[117,164,79,0.3364970167304527],[117,165,64,0.32228147897554194],[117,165,65,0.3235183074178574],[117,165,66,0.3245896419943753],[117,165,67,0.32553494836632785],[117,165,68,0.326391204310242],[117,165,69,0.32718398434355705],[117,165,70,0.3279337642155853],[117,165,71,0.3286559349449673],[117,165,72,0.32936071425664415],[117,165,73,0.33005315534629653],[117,165,74,0.33073325473840953],[117,165,75,0.3313961608441245],[117,165,76,0.33203248466898],[117,165,77,0.3326287139701727],[117,165,78,0.333167732019784],[117,165,79,0.3336294419961639],[117,166,64,0.32203224000537084],[117,166,65,0.32311324385693263],[117,166,66,0.32402028333073357],[117,166,67,0.3247962788125434],[117,166,68,0.3254780698115754],[117,166,69,0.3260887358959919],[117,166,70,0.326646991170119],[117,166,71,0.32716717784966304],[117,166,72,0.3276590895373309],[117,166,73,0.32812789523933605],[117,166,74,0.3285741661108614],[117,166,75,0.3289940067518381],[117,166,76,0.32937929271104127],[117,166,77,0.3297180156982229],[117,166,78,0.32999473785250466],[117,166,79,0.33019115627229095],[117,167,64,0.3213909406685793],[117,167,65,0.32230905385473163],[117,167,66,0.32304434967701445],[117,167,67,0.32364295592472087],[117,167,68,0.32414147481985134],[117,167,69,0.324560554989918],[117,167,70,0.32491725106175806],[117,167,71,0.32522498673739303],[117,167,72,0.32549328307323444],[117,167,73,0.3257275911876567],[117,167,74,0.3259292316201654],[117,167,75,0.3260954423914694],[117,167,76,0.3262195376425675],[117,167,77,0.32629117856427536],[117,167,78,0.32629675816820597],[117,167,79,0.32621990129788175],[117,168,64,0.3203498015531203],[117,168,65,0.3210962568108629],[117,168,66,0.32165068044275763],[117,168,67,0.3220620874385508],[117,168,68,0.3223667491639685],[117,168,69,0.32258301820300744],[117,168,70,0.3227264621851982],[117,168,71,0.3228097830149578],[117,168,72,0.32284244169556386],[117,168,73,0.3228303917368605],[117,168,74,0.32277592362387114],[117,168,75,0.3226776226414974],[117,168,76,0.3225304421705414],[117,168,77,0.3223258943942783],[117,168,78,0.322052360184483],[117,168,79,0.32169551977312655],[117,169,64,0.3189048375924447],[117,169,65,0.3194697744127546],[117,169,66,0.3198331584398278],[117,169,67,0.32004650100264953],[117,169,68,0.3201456603424205],[117,169,69,0.3201469029067785],[117,169,70,0.32006455178699933],[117,169,71,0.31991084613823934],[117,169,72,0.31969545318501075],[117,169,73,0.3194250935934899],[117,169,74,0.3191032829641423],[117,169,75,0.3187301920069426],[117,169,76,0.31830262777163676],[117,169,77,0.31781413811891923],[117,169,78,0.31725524143694916],[117,169,79,0.3166137834333122],[117,170,64,0.31705372147678546],[117,170,65,0.3174267625652022],[117,170,66,0.3175885103028204],[117,170,67,0.31759251791378573],[117,170,68,0.3174741652386387],[117,170,69,0.3172479183162119],[117,170,70,0.31692716523125525],[117,170,71,0.31652399782235496],[117,170,72,0.31604860121878076],[117,170,73,0.3155087622869444],[117,170,74,0.3149095000405922],[117,170,75,0.3142528208671263],[117,170,76,0.31353760122134],[117,170,77,0.31275960023932076],[117,170,78,0.3119116045312709],[117,170,79,0.31098370722461466],[117,171,64,0.314793512961849],[117,171,65,0.3149643086758455],[117,171,66,0.314913972852155],[117,171,67,0.3146975941110224],[117,171,68,0.31435003127321975],[117,171,69,0.3138843095027834],[117,171,70,0.3133132533861114],[117,171,71,0.31264917173539636],[117,171,72,0.3119031152429264],[117,171,73,0.31108425945787577],[117,171,74,0.310199416465365],[117,171,75,0.3092526784338317],[117,171,76,0.3082451959828538],[117,171,77,0.30717509411153365],[117,171,78,0.30603752821943936],[117,171,79,0.30482488255008217],[117,172,64,0.3121182523378245],[117,172,65,0.3120769926034484],[117,172,66,0.31180482375951696],[117,172,67,0.3113578268492686],[117,172,68,0.31077032548286215],[117,172,69,0.31005433293981166],[117,172,70,0.3092225368897363],[117,172,71,0.30828786743513237],[117,172,72,0.3072626141412488],[117,172,73,0.3061576757670295],[117,172,74,0.30498194642725057],[117,172,75,0.30374184168864493],[117,172,76,0.3024409678744882],[117,172,77,0.3010799376249518],[117,172,78,0.2996563345366502],[117,172,79,0.2981648294865547],[117,173,64,0.30901641616493664],[117,173,65,0.30875430941921145],[117,173,66,0.30825177471941867],[117,173,67,0.30756532531819947],[117,173,68,0.30672876986323705],[117,173,69,0.30575360199909346],[117,173,70,0.3046528458078312],[117,173,71,0.3034404871656487],[117,173,72,0.30213044243437515],[117,173,73,0.30073566828604886],[117,173,74,0.2992674167647328],[117,173,75,0.2977346394470836],[117,173,76,0.2961435443187605],[117,173,77,0.29449730873973046],[117,173,78,0.29279595163020716],[117,173,79,0.29103636777276676],[117,174,64,0.30546823322155875],[117,174,65,0.30497795197095706],[117,174,66,0.3042382251708751],[117,174,67,0.303305443313934],[117,174,68,0.302212961156336],[117,174,69,0.30097230066377373],[117,174,70,0.29959733304422487],[117,174,71,0.29810355398467464],[117,174,72,0.29650689760144416],[117,174,73,0.2948227010962784],[117,174,74,0.293064824618551],[117,174,75,0.29124493057425493],[117,174,76,0.28937192636010467],[117,174,77,0.28745157423844897],[117,174,78,0.2854862718081603],[117,174,79,0.2834750062708667],[117,175,64,0.3014573390254147],[117,175,65,0.3007332707731286],[117,175,66,0.2997514430314647],[117,175,67,0.29856758103040926],[117,175,68,0.29721467910657706],[117,175,69,0.2957048706395044],[117,175,70,0.2940534033397473],[117,175,71,0.2922777401604592],[117,175,72,0.2903962137688863],[117,175,73,0.28842684245239997],[117,175,74,0.2863863123746634],[117,175,75,0.28428913081902984],[117,175,76,0.28214695477431045],[117,175,77,0.2799680989350889],[117,175,78,0.27775722690738264],[117,175,79,0.2755152291334046],[117,176,64,0.29701718294386503],[117,176,65,0.2960551951029011],[117,176,66,0.2948277446226296],[117,176,67,0.29338931755924463],[117,176,68,0.291772620285103],[117,176,69,0.2899909582956367],[117,176,70,0.28806145824072216],[117,176,71,0.2860039789248108],[117,176,72,0.2838396039841336],[117,176,73,0.2815893075967913],[117,176,74,0.27927279856642495],[117,176,75,0.27690754782165494],[117,176,76,0.2745080040706692],[117,176,77,0.2720850020458956],[117,176,78,0.26964536747029383],[117,176,79,0.26719172257744533],[117,177,64,0.29219549033299147],[117,177,65,0.29099318128136875],[117,177,66,0.28951821344134326],[117,177,67,0.28782324117522784],[117,177,68,0.2859407275629488],[117,177,69,0.28388566721135283],[117,177,70,0.2816775212133405],[117,177,71,0.27933892603010063],[117,177,72,0.2768940248304573],[117,177,73,0.27436698398359705],[117,177,74,0.2717807004703826],[117,177,75,0.2691557056592977],[117,177,76,0.2665092705688532],[117,177,77,0.26385471741175587],[117,177,78,0.26120094189022147],[117,177,79,0.25855215038961066],[117,178,64,0.2870403851129284],[117,178,65,0.28559742471775956],[117,178,66,0.2838750770666196],[117,178,67,0.28192358292752195],[117,178,68,0.27977518619822944],[117,178,69,0.2774470341413488],[117,178,70,0.2749613198573708],[117,178,71,0.27234378066370385],[117,178,72,0.2696218714295674],[117,178,73,0.2668231353789647],[117,178,74,0.2639737785407634],[117,178,75,0.26109745368508924],[117,178,76,0.25821425923956787],[117,178,77,0.2553399583303833],[117,178,78,0.252485422744691],[117,178,79,0.24965630626599397],[117,179,64,0.2815998033903789],[117,179,65,0.279918190874552],[117,179,66,0.27795093779810914],[117,179,67,0.2757453266498472],[117,179,68,0.2733333913748511],[117,179,69,0.27073483198229475],[117,179,70,0.2679749028615601],[117,179,71,0.2650826964134338],[117,179,72,0.26208916458239445],[117,179,73,0.2590253500582678],[117,179,74,0.2559208337200073],[117,179,75,0.25280240453431835],[117,179,76,0.24969295775526784],[117,179,77,0.2466106269009396],[117,179,78,0.24356815461288459],[117,179,79,0.2405725071370296],[117,180,64,0.27592089048593144],[117,180,65,0.27400513080075234],[117,180,66,0.27179799109411074],[117,180,67,0.26934331175937193],[117,180,68,0.2666729154784483],[117,180,69,0.26380938191511416],[117,180,70,0.26078127844884486],[117,180,71,0.2576212291516687],[117,180,72,0.25436379347693727],[117,180,73,0.2510435664194841],[117,180,74,0.24769350708490653],[117,180,75,0.2443435022264267],[117,180,76,0.2410191709212937],[117,180,77,0.23774091616817525],[117,180,78,0.23452322879584428],[117,180,79,0.23137424868537765],[117,181,64,0.2700493809128956],[117,181,65,0.26790658076045065],[117,181,66,0.26546723132665084],[117,181,67,0.262771328359277],[117,181,68,0.2598504746296713],[117,181,69,0.2567303742600216],[117,181,70,0.2534430738796929],[117,181,71,0.2500248214543851],[117,181,72,0.2465138136449756],[117,181,73,0.2429481757781525],[117,181,74,0.23936418169515342],[117,181,75,0.2357947203477918],[117,181,76,0.23226801560600957],[117,181,77,0.2288066053317222],[117,181,78,0.22542658536331492],[117,181,79,0.22213712364759022],[117,182,64,0.264028960827683],[117,182,65,0.26166884545532343],[117,182,66,0.2590076443419648],[117,182,67,0.256081204130212],[117,182,68,0.25292089396515743],[117,182,69,0.24955569755206175],[117,182,70,0.24602121555401893],[117,182,71,0.2423573231455529],[117,182,72,0.2386057998264754],[117,182,73,0.2348082020897427],[117,182,74,0.23100398649526854],[117,182,75,0.2272288902884555],[117,182,76,0.2235135762806194],[117,182,77,0.2198825482819855],[117,182,78,0.21635334295016043],[117,182,79,0.21293600349194905],[117,183,64,0.2579006124454988],[117,183,65,0.2553354643118899],[117,183,66,0.25246538628629467],[117,183,67,0.24932188246739978],[117,183,68,0.2459360711285514],[117,183,69,0.24234027531817093],[117,183,70,0.23857362922757538],[117,183,71,0.23467954753591078],[117,183,72,0.2307032533830886],[117,183,73,0.22668955833259438],[117,183,74,0.22268090211356115],[117,183,75,0.21871565950431054],[117,183,76,0.2148267212835325],[117,183,77,0.21104035573395194],[117,183,78,0.20737535674050467],[117,183,79,0.20384248408478242],[117,184,64,0.251701939890303],[117,184,65,0.24894646027811135],[117,184,66,0.24588294813041758],[117,184,67,0.2425384912940329],[117,184,68,0.23894393740881656],[117,184,69,0.235134910013595],[117,184,70,0.23115395983852988],[117,184,71,0.22704786290907347],[117,184,72,0.22286506389125738],[117,184,73,0.21865337927982478],[117,184,74,0.21445796840385856],[117,184,75,0.21031957978574503],[117,184,76,0.20627307994127173],[117,184,77,0.2023462712550231],[117,184,78,0.19855900510988336],[117,184,79,0.19492259599657508],[117,185,64,0.24546647592417697],[117,185,65,0.2425375705488854],[117,185,66,0.2392983053013216],[117,185,67,0.23577140195736948],[117,185,68,0.23198741594038735],[117,185,69,0.22798513355538186],[117,185,70,0.2238103104236493],[117,185,71,0.2195128187967326],[117,185,72,0.21514402454059614],[117,185,73,0.2107544303912028],[117,185,74,0.20639159358672748],[117,185,75,0.2020983255337518],[117,185,76,0.19791118070737973],[117,185,77,0.19385924152197223],[117,185,78,0.18996320544408762],[117,185,79,0.18623478015646616],[117,186,64,0.23922296897821801],[117,186,65,0.23613945861596974],[117,186,66,0.23274405180575758],[117,186,67,0.22905527759144684],[117,186,68,0.2251033763592637],[117,186,69,0.220930063873473],[117,186,70,0.21658399959093633],[117,186,71,0.21211780657822457],[117,186,72,0.2075854009642062],[117,186,73,0.20303959256572526],[117,186,74,0.1985299648664499],[117,186,75,0.19410104207470924],[117,186,76,0.18979075052213162],[117,186,77,0.185629181194901],[117,186,78,0.18163765971745316],[117,186,79,0.17782812963873834],[117,187,64,0.23299464988678917],[117,187,65,0.2297769070167766],[117,187,66,0.2262465182099713],[117,187,67,0.222418110311505],[117,187,68,0.21832158529290308],[117,187,69,0.21400126688755927],[117,187,70,0.20950833700864174],[117,187,71,0.2048977539398208],[117,187,72,0.2002255531362422],[117,187,73,0.19554642251430218],[117,187,74,0.19091156042992533],[117,187,75,0.18636682408711444],[117,187,76,0.18195117565080665],[117,187,77,0.17769543286418296],[117,187,78,0.17362133049465484],[117,187,79,0.16974089845906182],[117,188,64,0.22679847770700315],[117,188,65,0.22346799013598537],[117,188,66,0.2198248728203795],[117,188,67,0.2158802465876804],[117,188,68,0.21166365204731294],[117,188,69,0.20722162330794744],[117,188,70,0.2026074163668264],[117,188,71,0.19787785273328978],[117,188,72,0.1930906099858696],[117,188,73,0.18830178853697435],[117,188,74,0.18356376277124042],[117,188,75,0.17892332426479157],[117,188,76,0.17442012432393167],[117,188,77,0.1700854226069282],[117,188,78,0.16594114811557523],[117,188,79,0.16199927836845365],[117,189,64,0.2206443639885553],[117,189,65,0.21722322639683114],[117,189,66,0.2134902053941853],[117,189,67,0.20945340013218383],[117,189,68,0.20514196884500774],[117,189,69,0.20060419965409373],[117,189,70,0.19589492527000985],[117,189,71,0.1910723197844342],[117,189,72,0.18619519639856172],[117,189,73,0.1813205815232431],[117,189,74,0.17650157333365699],[117,189,75,0.17178549240415167],[117,189,76,0.16721233158191207],[117,189,77,0.16281351178498052],[117,189,78,0.15861094993493402],[117,189,79,0.15461644476147554],[117,190,64,0.21453437484406854],[117,190,65,0.21104470916393145],[117,190,66,0.20724459269553092],[117,190,67,0.2031396516236127],[117,190,68,0.19875864496101453],[117,190,69,0.19415112288373804],[117,190,70,0.18937297152635113],[117,190,71,0.1844831902188641],[117,190,72,0.17954121230381379],[117,190,73,0.17460450103564817],[117,190,74,0.16972642851732755],[117,190,75,0.1649544451759845],[117,190,76,0.16032854681670794],[117,190,77,0.1558800458246519],[117,190,78,0.15163065261475883],[117,190,79,0.14759187295962164],[117,191,64,0.20846191015724402],[117,191,65,0.204925215666835],[117,191,66,0.20108014520208012],[117,191,67,0.19693043458456527],[117,191,68,0.1925044341012167],[117,191,69,0.18785245802899772],[117,191,70,0.18303092531056606],[117,191,71,0.17809914289441886],[117,191,72,0.17311666358299704],[117,191,73,0.1681409163857587],[117,191,74,0.16322511716620616],[117,191,75,0.15841646692495207],[117,191,76,0.15375464460449745],[117,191,77,0.14927060083900645],[117,191,78,0.14498565860798926],[117,191,79,0.1409109262905818],[117,192,64,0.20241085925679755],[117,192,65,0.1988472932446777],[117,192,66,0.19497803426038876],[117,192,67,0.1908055067258266],[117,192,68,0.18635765436947732],[117,192,69,0.18168508824482646],[117,192,70,0.1768442766957801],[117,192,71,0.17189435755880195],[117,192,72,0.16689454457349936],[117,192,73,0.16190180266948276],[117,192,74,0.15696879972244523],[117,192,75,0.15214214193337],[117,192,76,0.14746089953645208],[117,192,77,0.14295542908719114],[117,192,78,0.13864649812608207],[117,192,79,0.1345447175594496],[117,193,64,0.19635473237761095],[117,193,65,0.19278232220653957],[117,193,66,0.18890749898525494],[117,193,67,0.18473190607123302],[117,193,68,0.18028310017633045],[117,193,69,0.17561159668898238],[117,193,70,0.17077350807280903],[117,193,71,0.16582740338605476],[117,193,72,0.1608317719943739],[117,193,73,0.15584275179376186],[117,193,74,0.15091212931969095],[117,193,75,0.14608561868850975],[117,193,76,0.14140142587811225],[117,193,77,0.13688910441024432],[117,193,78,0.1325687080503731],[117,193,79,0.12845024569679803],[117,194,64,0.19025576722673943],[117,194,65,0.1866895545994181],[117,194,66,0.18282483219848733],[117,194,67,0.17866289118197548],[117,194,68,0.17423094545261042],[117,194,69,0.1695791496711174],[117,194,70,0.1647629810038998],[117,194,71,0.1598401585864191],[117,194,72,0.15486817017427884],[117,194,73,0.1499020585990499],[117,194,74,0.14499247517769684],[117,194,75,0.14018400680394585],[117,194,76,0.13551378302071104],[117,194,77,0.13101036893807677],[117,194,78,0.12669294942508416],[117,194,79,0.12257080956953598],[117,195,64,0.18406456875801577],[117,195,65,0.18051575764010963],[117,195,66,0.1766730401292112],[117,195,67,0.17253762462182526],[117,195,68,0.16813646009113564],[117,195,69,0.1635192612419226],[117,195,70,0.15874076855281474],[117,195,71,0.1538577329831731],[117,195,72,0.1489265079386613],[117,195,73,0.14400089647667386],[117,195,74,0.13913026067428225],[117,195,75,0.1343578996700666],[117,195,76,0.1297197024715076],[117,195,77,0.12524308119480218],[117,195,78,0.12094618997768393],[117,195,79,0.11683743438186885],[117,196,64,0.17640406686297946],[117,196,65,0.1742265257314078],[117,196,66,0.17041641991032774],[117,196,67,0.1663189460610677],[117,196,68,0.16196090404150348],[117,196,69,0.15739159209918513],[117,196,70,0.15266500357983845],[117,196,71,0.1478368806036776],[117,196,72,0.1429623739044729],[117,196,73,0.13809395356171508],[117,196,74,0.13327957732403886],[117,196,75,0.1285611228195683],[117,196,76,0.12397308953831691],[117,196,77,0.11954157605640216],[117,196,78,0.11528353755521625],[117,196,79,0.11120632827451207],[117,197,64,0.17519363074163932],[117,197,65,0.1741753334122789],[117,197,66,0.16852128009477693],[117,197,67,0.1626258936915343],[117,197,68,0.15660041659178076],[117,197,69,0.15120825856759446],[117,197,70,0.14654928122115407],[117,197,71,0.14179219833216078],[117,197,72,0.1369908117120919],[117,197,73,0.13219609477598568],[117,197,74,0.12745442645697005],[117,197,75,0.12280608387480446],[117,197,76,0.1182839994258388],[117,197,77,0.11391278755641637],[117,197,78,0.10970804607533588],[117,197,79,0.10567593645721236],[117,198,64,0.17481108651950222],[117,198,65,0.17362202149619244],[117,198,66,0.171126105291953],[117,198,67,0.1651258744342169],[117,198,68,0.15900220829142447],[117,198,69,0.1527961403738891],[117,198,70,0.1465528476076126],[117,198,71,0.14031886616215447],[117,198,72,0.13413989873944537],[117,198,73,0.12805886403584701],[117,198,74,0.12211419457835394],[117,198,75,0.11709869694438596],[117,198,76,0.11265582801659357],[117,198,77,0.10835691335077795],[117,198,78,0.10421605061707953],[117,198,79,0.10023810077081732],[117,199,64,0.17438158924831626],[117,199,65,0.17300715094198757],[117,199,66,0.17163690866165668],[117,199,67,0.1674518405948927],[117,199,68,0.16123822976879862],[117,199,69,0.15494852775663676],[117,199,70,0.1486267841260571],[117,199,71,0.1423180490613423],[117,199,72,0.13606628145212596],[117,199,73,0.12991249249108594],[117,199,74,0.12389313068931489],[117,199,75,0.11803871384807973],[117,199,76,0.11237271314838639],[117,199,77,0.10691069413846177],[117,199,78,0.10165971901833915],[117,199,79,0.09661801424233735],[117,200,64,0.17392755269865665],[117,200,65,0.17235202857248882],[117,200,66,0.1707739905229509],[117,200,67,0.16918280492571208],[117,200,68,0.16329905252925506],[117,200,69,0.15693466529424738],[117,200,70,0.1505431176641513],[117,200,71,0.14416772812579823],[117,200,72,0.13785045054538003],[117,200,73,0.1316301269060948],[117,200,74,0.12554097300066167],[117,200,75,0.11961130230227457],[117,200,76,0.11386249287526772],[117,200,77,0.10830820182096973],[117,200,78,0.1029538313891517],[117,200,79,0.0977962505231647],[117,201,64,0.17347127015077007],[117,201,65,0.17167846844990553],[117,201,66,0.16987753776435652],[117,201,67,0.16805553811779794],[117,201,68,0.16517353232403753],[117,201,69,0.15874349581301345],[117,201,70,0.15229065660925922],[117,201,71,0.14585634768464428],[117,201,72,0.13948025001414915],[117,201,73,0.13319877064105845],[117,201,74,0.12704364352433106],[117,201,75,0.12104075803852733],[117,201,76,0.11520921965198472],[117,201,77,0.10956064696122302],[117,201,78,0.10409870891301179],[117,201,79,0.09881890570194168],[117,202,64,0.17303343127306597],[117,202,65,0.17100722418628406],[117,202,66,0.16896850958356563],[117,202,67,0.166901561727244],[117,202,68,0.1647730677015247],[117,202,69,0.16036379724987976],[117,202,70,0.15385779944883227],[117,202,71,0.14737177867039936],[117,202,72,0.14094287998591323],[117,202,73,0.13460481571661423],[117,202,74,0.12838659643325495],[117,202,75,0.12231147720551339],[117,202,76,0.11639612325503147],[117,202,77,0.11064999883907352],[117,202,78,0.10507498286657053],[117,202,79,0.09966521442626451],[117,203,64,0.1726317650524573],[117,203,65,0.17035654508554432],[117,203,66,0.16806573446133022],[117,203,67,0.1657403799310716],[117,203,68,0.16334608546402854],[117,203,69,0.1608371264857714],[117,203,70,0.15523459239796394],[117,203,71,0.14870353782274062],[117,203,72,0.14222728018454717],[117,203,73,0.13583658905448925],[117,203,74,0.1295575214709027],[117,203,75,0.12341049918922145],[117,203,76,0.11740959058548704],[117,203,77,0.11156200065656512],[117,203,78,0.10586777225911399],[117,203,79,0.10031970143170243],[117,204,64,0.17227980957090594],[117,204,65,0.16974085680754114],[117,204,66,0.16718448856515072],[117,204,67,0.16458813197554406],[117,204,68,0.1619161320742367],[117,204,69,0.15912434288802418],[117,204,70,0.1561693787500069],[117,204,71,0.14984493819506378],[117,204,72,0.14332646183821143],[117,204,73,0.13688686637323075],[117,204,74,0.130549036075495],[117,204,75,0.12433036897156588],[117,204,76,0.11824218626515105],[117,204,77,0.11228933271272218],[117,204,78,0.10646997070245028],[117,204,79,0.10077557051974669],[117,205,64,0.17198580956229428],[117,205,65,0.1691695673790888],[117,205,66,0.16633519520842846],[117,205,67,0.16345616516340905],[117,205,68,0.1604954007760555],[117,205,69,0.15741044370302457],[117,205,70,0.15416043850323652],[117,205,71,0.15070746934594506],[117,205,72,0.1442397886820593],[117,205,73,0.1377553546782364],[117,205,74,0.1313613674522636],[117,205,75,0.12507201236421583],[117,205,76,0.11889571028390652],[117,205,77,0.11283483769624267],[117,205,78,0.10688562097443222],[117,205,79,0.10103820691918303],[117,206,64,0.17175174282895678],[117,206,65,0.16864599951739678],[117,206,66,0.16552224619063152],[117,206,67,0.16234972336422981],[117,206,68,0.15908978533823784],[117,206,69,0.15570174172500426],[117,206,70,0.15214741819935565],[117,206,71,0.1483921886917527],[117,206,72,0.14440580817722792],[117,206,73,0.138451144233088],[117,206,74,0.13200502579206705],[117,206,75,0.12564762562808934],[117,206,76,0.1193842945157717],[117,206,77,0.11321481020971999],[117,206,78,0.10713337966968754],[117,206,79,0.10112879568336253],[117,207,64,0.17157423662456323],[117,207,65,0.16816775424165548],[117,207,66,0.16474393475015742],[117,207,67,0.16126758288650112],[117,207,68,0.15769836037725488],[117,207,69,0.15399739908473709],[117,207,70,0.15012933363062095],[117,207,71,0.1460630063566069],[117,207,72,0.14177205192851075],[117,207,73,0.13723536267220698],[117,207,74,0.13243743248677808],[117,207,75,0.12607845568499396],[117,207,76,0.11973139605420671],[117,207,77,0.11345516053990116],[117,207,78,0.10724183227453964],[117,207,79,0.10107879310525095],[117,208,64,0.17145115561380062],[117,208,65,0.16773214893806032],[117,208,66,0.1639971930593953],[117,208,67,0.16020658528943083],[117,208,68,0.1563182310757358],[117,208,69,0.1522951223674033],[117,208,70,0.1481047958331506],[117,208,71,0.14371969211650493],[117,208,72,0.13911747654760062],[117,208,73,0.13428126282704878],[117,208,74,0.12919973815324784],[117,208,75,0.12386718841115552],[117,208,76,0.11828342218540097],[117,208,77,0.11245359250285597],[117,208,78,0.10638791534960657],[117,208,79,0.1001012841415015],[117,209,64,0.1713793019841494],[117,209,65,0.1673357564130602],[117,209,66,0.16327861260012613],[117,209,67,0.15916373135658332],[117,209,68,0.15494726259676272],[117,209,69,0.150594077430439],[117,209,70,0.14607466486172938],[117,209,71,0.14136513223376937],[117,209,72,0.13644725019793089],[117,209,73,0.13130842436318554],[117,209,74,0.1259415927416518],[117,209,75,0.12034504821578862],[117,209,76,0.11452218535922],[117,209,77,0.10848117104627654],[117,209,78,0.10223453838555845],[117,209,79,0.09579870360728701],[117,210,64,0.17135287603399837],[117,210,65,0.16697329925160806],[117,210,66,0.1625836399943309],[117,210,67,0.15813552743359688],[117,210,68,0.15358341600074948],[117,210,69,0.14889405224082142],[117,210,70,0.1440408810904895],[117,210,71,0.13900368019890957],[117,210,72,0.1337683215414729],[117,210,73,0.12832648467687463],[117,210,74,0.12267532141790198],[117,210,75,0.116817071756823],[117,210,76,0.11075863095273544],[117,210,77,0.10451106775049743],[117,210,78,0.09808909375982885],[117,210,79,0.09151048407627263],[117,211,64,0.1713633642852126],[117,211,65,0.1666374302800796],[117,211,66,0.16190624993013203],[117,211,67,0.15711754872837677],[117,211,68,0.1522241995061558],[117,211,69,0.14719479533296856],[117,211,70,0.14200569211060105],[117,211,71,0.13664027550418778],[117,211,72,0.13108843608510548],[117,211,73,0.12534602206751388],[117,211,74,0.11941427006346302],[117,211,75,0.1132992143117056],[117,211,76,0.1070110748605122],[117,211,77,0.10056362520498953],[117,211,78,0.0939735398959467],[117,211,79,0.08725972264797467],[117,212,64,0.17139957317550353],[117,212,65,0.16631865953702762],[117,212,66,0.1612387659789955],[117,212,67,0.15610415255885604],[117,212,68,0.15086627241370246],[117,212,69,0.14549551013878156],[117,212,70,0.1399710390469395],[117,212,71,0.13427972558139006],[117,212,72,0.1284153195085831],[117,212,73,0.12237764833071532],[117,212,74,0.11617181698762705],[117,212,75,0.10980741390696114],[117,212,76,0.10329772444454781],[117,212,77,0.09665895273440109],[117,212,78,0.08990945294120314],[117,212,79,0.08306897087572056],[117,213,64,0.17144781046587626],[117,213,65,0.1660054297975324],[117,213,66,0.160571831268394],[117,213,67,0.1550883434406293],[117,213,68,0.14950520352332494],[117,213,69,0.1437945069629372],[117,213,70,0.13793810401624412],[117,213,71,0.1319261525802473],[117,213,72,0.1257560296083219],[117,213,73,0.11943127370437842],[117,213,74,0.11296056059014163],[117,213,75,0.10635671308840415],[117,213,76,0.0996357472058791],[117,213,77,0.09281595583378542],[117,213,78,0.08591703151465599],[117,213,79,0.07895922964839694],[117,214,64,0.17149221662408953],[117,214,65,0.16568434282406608],[117,214,66,0.15989453110300667],[117,214,67,0.15406179203781617],[117,214,68,0.14813538600683437],[117,214,69,0.14208901451324396],[117,214,70,0.13590702058904902],[117,214,71,0.12958260680673525],[117,214,72,0.12311647863682226],[117,214,73,0.11651554591120794],[117,214,74,0.10979168468390084],[117,214,75,0.10296056168733812],[117,214,76,0.09604052348127956],[117,214,77,0.08905155228328679],[117,214,78,0.08201429035752535],[117,214,79,0.07494913472076474],[117,215,64,0.17151524856354808],[117,215,65,0.16534053863758683],[117,215,66,0.159194669750827],[117,215,67,0.15301501012678884],[117,215,68,0.14675011082897035],[117,215,69,0.14037515302930276],[117,215,70,0.1338767492549358],[117,215,71,0.12725084878150444],[117,215,72,0.12050112796208294],[117,215,73,0.11363746518883332],[117,215,74,0.10667450333779345],[117,215,75,0.09963030241350647],[117,215,76,0.09252508496789959],[117,215,77,0.08538007671835118],[117,215,78,0.07821644463610393],[117,215,79,0.07105433461708377],[117,216,64,0.17149831822678216],[117,216,65,0.16495823021530648],[117,216,66,0.1584592037264449],[117,216,67,0.15193768384189388],[117,216,68,0.14534180093308985],[117,216,69,0.13864807118062353],[117,216,70,0.1318451200229789],[117,216,71,0.12493130201534638],[117,216,72,0.11791285711211721],[117,216,73,0.11080217734311362],[117,216,74,0.10361618724739816],[117,216,75,0.09637484125571288],[117,216,76,0.08909974103069407],[117,216,77,0.08181287558459874],[117,216,78,0.07453548680066081],[117,216,79,0.06728706278562055],[117,217,64,0.17142258860172072],[117,217,65,0.16452139612446873],[117,217,66,0.1576748340106414],[117,217,67,0.15081916758357192],[117,217,68,0.1439024085238563],[117,217,69,0.136902249026559],[117,217,70,0.12980904441563879],[117,217,71,0.12262317873004903],[117,217,72,0.1153530094058918],[117,217,73,0.10801294700079002],[117,217,74,0.10062167378558766],[117,217,75,0.0932005048185069],[117,217,76,0.08577189489732154],[117,217,77,0.0783580945578559],[117,217,78,0.07097995805584267],[117,217,79,0.06365590603341457],[117,218,64,0.17126992984553704],[117,218,65,0.16401463369266844],[117,218,66,0.15682875974135038],[117,218,67,0.14964914107031102],[117,218,68,0.14242397788583436],[117,218,69,0.13513196944271413],[117,218,70,0.12776489923246748],[117,218,71,0.1203247808767747],[117,218,72,0.1128216165011814],[117,218,73,0.1052713133717193],[117,218,74,0.0976937630234795],[117,218,75,0.09011108686530268],[117,218,76,0.08254605198993738],[117,218,77,0.07502066065648487],[117,218,78,0.0675549166456738],[117,218,79,0.06016577141828973],[117,219,64,0.1710240382629487],[117,219,65,0.16342417539276397],[117,219,66,0.15590959599405924],[117,219,67,0.14841843210470848],[117,219,68,0.140899376271961],[117,219,69,0.13333196051998117],[117,219,70,0.1257090845679153],[117,219,71,0.1180339789183162],[117,219,72,0.11031780431000013],[117,219,73,0.10257743095656693],[117,219,74,0.09483340214264596],[117,219,75,0.08710808647282815],[117,219,76,0.07942402278102384],[117,219,77,0.0718024614131072],[117,219,78,0.06426210529746847],[117,219,79,0.05681805391654744],[117,220,64,0.17067172094125846],[117,220,65,0.16273907118213704],[117,220,66,0.1549084583377396],[117,220,67,0.14712000769856456],[117,220,68,0.13932319547744335],[117,220,69,0.13149821153104196],[117,220,70,0.1236387586633574],[117,220,71,0.11574887094435683],[117,220,72,0.10784038284162786],[117,220,73,0.099930597751235],[117,220,74,0.0920401607802544],[117,220,75,0.08419114032711454],[117,220,76,0.07640532268935159],[117,220,77,0.06870272360439605],[117,220,78,0.061100320302126004],[117,220,79,0.05361100731843964],[117,221,64,0.17020434888095132],[117,221,65,0.16195253957972078],[117,221,66,0.1538202169031747],[117,221,67,0.14575013626003205],[117,221,68,0.13769282678037065],[117,221,69,0.129628965132691],[117,221,70,0.12155275225469091],[117,221,71,0.11346862477759863],[117,221,72,0.10538862262911314],[117,221,73,0.09732997360172961],[117,221,74,0.08931289995707853],[117,221,75,0.08135865180448092],[117,221,76,0.07348777164940688],[117,221,77,0.06571859415781303],[117,221,78,0.058065984830314395],[117,221,79,0.05054032092625158],[117,222,64,0.1696194814761247],[117,222,65,0.16106349028765732],[117,222,66,0.15264492273189173],[117,222,67,0.14430972358527128],[117,222,68,0.13600971197803624],[117,222,69,0.1277258885284112],[117,222,70,0.11945266514124579],[117,222,71,0.11119450580109788],[117,222,72,0.10296322047524238],[117,222,73,0.09477549145031836],[117,222,74,0.08665063733174942],[117,222,75,0.07860861957978199],[117,222,76,0.0706682960907977],[117,222,77,0.06284592596058232],[117,222,78,0.05515392919255609],[117,222,79,0.047599904739225644],[117,223,64,0.16892266519064061],[117,223,65,0.16007822116496923],[117,223,66,0.15138940918319743],[117,223,67,0.14280582541518536],[117,223,68,0.1342807732750968],[117,223,69,0.12579542635181484],[117,223,70,0.1173441477468606],[117,223,71,0.10893109329088733],[117,223,72,0.10056745731589886],[117,223,73,0.09226896428330969],[117,223,74,0.08405361160083966],[117,223,75,0.07593966858620203],[117,223,76,0.06794393615090331],[117,223,77,0.06008027138652739],[117,223,78,0.05235838084390182],[117,223,79,0.04478288590333553],[117,224,64,0.16812940924129233],[117,224,65,0.1590122923358178],[117,224,66,0.15006907116156498],[117,224,67,0.14125333931213782],[117,224,68,0.13252002478366226],[117,224,69,0.1238503380451384],[117,224,70,0.11523837046701164],[117,224,71,0.10668768807014142],[117,224,72,0.09820855103954415],[117,224,73,0.08981539063956624],[117,224,74,0.08152454892028048],[117,224,75,0.07335228621293366],[117,224,76,0.06531306101110515],[117,224,77,0.05741808642728604],[117,224,78,0.049674167007337226],[117,224,79,0.04208281927863065],[117,225,64,0.16726734103588112],[117,225,65,0.15789258016219618],[117,225,66,0.14870982488428452],[117,225,67,0.1396768785794935],[117,225,68,0.13075036837360576],[117,225,69,0.12191142249535745],[117,225,70,0.11315368359421561],[117,225,71,0.1044799143090703],[117,225,72,0.09589920711854297],[117,225,73,0.08742446156419145],[117,225,74,0.07907013425641744],[117,225,75,0.07085026666632474],[117,225,76,0.06277679529148035],[117,225,77,0.054858148363005226],[117,225,78,0.04709813284136148],[117,225,79,0.03949511502955326],[117,226,64,0.16637854401854646],[117,226,65,0.15675951372699837],[117,226,66,0.14735025083664618],[117,226,67,0.13811283088523665],[117,226,68,0.12900557656074116],[117,226,69,0.12000943265059942],[117,226,70,0.11111747058453929],[117,226,71,0.10233151827541818],[117,226,72,0.09365936989825106],[117,226,73,0.08511227189079179],[117,226,74,0.07670269058180487],[117,226,75,0.0684423664336488],[117,226,76,0.06034065945799084],[117,226,77,0.05240318993105374],[117,226,78,0.04463077810355889],[117,226,79,0.03701868617155909],[117,227,64,0.16552351413609526],[117,227,65,0.15567174079653043],[117,227,66,0.14604689765523238],[117,227,67,0.13661528404957576],[117,227,68,0.12733685407342502],[117,227,69,0.11819228307562527],[117,227,70,0.1091739988530285],[117,227,71,0.100282840204669],[117,227,72,0.091525269591552],[117,227,73,0.08291087016627946],[117,227,74,0.07445013256327238],[117,227,75,0.06615253640880424],[117,227,76,0.05802493107069173],[117,227,77,0.050070219724104456],[117,227,78,0.04228635036845846],[117,227,79,0.034665616991926024],[117,228,64,0.1647765087386161],[117,228,65,0.15470481632417932],[117,228,66,0.14487603175605798],[117,228,67,0.13526075489189962],[117,228,68,0.12582058184239162],[117,228,69,0.11653584230397734],[117,228,70,0.10739824962792448],[117,228,71,0.09840759712935522],[117,228,72,0.08956897943394221],[117,228,73,0.08089030525739745],[117,228,74,0.07238010697582052],[117,228,75,0.0640456519029128],[117,228,76,0.055891359740662484],[117,228,77,0.04791753021724658],[117,228,78,0.04011938447563418],[117,228,79,0.03248642332991542],[117,229,64,0.16419693254491016],[117,229,65,0.15392014220518563],[117,229,66,0.14390047410671483],[117,229,67,0.134113045105277],[117,229,68,0.12452120273329341],[117,229,69,0.11510488036369879],[117,229,70,0.10585501007315196],[117,229,71,0.0967702728397696],[117,229,72,0.08785433965651938],[117,229,73,0.07911340949668628],[117,229,74,0.07055404943013344],[117,229,75,0.06218134173888229],[117,229,76,0.053997342423484675],[117,229,77,0.04599985503171233],[117,229,78,0.038181523284415576],[117,229,79,0.030529245521227724],[117,230,64,0.163824981136457],[117,230,65,0.15335940905023399],[117,230,66,0.14316297223696833],[117,230,67,0.1332155958590988],[117,230,68,0.12348256475629027],[117,230,69,0.11394340826875855],[117,230,70,0.10458823321908271],[117,230,71,0.0954145492932734],[117,230,72,0.08642454534883669],[117,230,73,0.07762266591150148],[117,230,74,0.0690134930664031],[117,230,75,0.060599938494225604],[117,230,76,0.05238174994120764],[117,230,77,0.04435433594794791],[117,230,78,0.03650791220190114],[117,230,79,0.02882697242355823],[117,231,64,0.16368391148735645],[117,231,65,0.15304686340655527],[117,231,66,0.14268846110572583],[117,231,67,0.13259375109482865],[117,231,68,0.12273019824933136],[117,231,69,0.11307697600353066],[117,231,70,0.10362335921860137],[117,231,71,0.09436564947814956],[117,231,72,0.08530450547869509],[117,231,73,0.07644257453988965],[117,231,74,0.06778243030898834],[117,231,75,0.059324821277307004],[117,231,76,0.05106723426382537],[117,231,77,0.04300277655673199],[117,231,78,0.03511937994383874],[117,231,79,0.027399329408676905],[117,232,64,0.16378219364667448],[117,232,65,0.1529914556154365],[117,232,66,0.14248620580458105],[117,232,67,0.13225690516216512],[117,232,68,0.12227348132258756],[117,232,69,0.11251486456651004],[117,232,70,0.10296953867136675],[117,232,71,0.09363259277278727],[117,232,72,0.08450312734519988],[117,232,73,0.07558195961792144],[117,232,74,0.06686963332885594],[117,232,75,0.05836473726355313],[117,232,76,0.05006253656780647],[117,232,77,0.04195392036113674],[117,232,78,0.03402466872275755],[117,232,79,0.026255041672123815],[117,233,64,0.16411554096157513],[117,233,65,0.15318886534285078],[117,233,66,0.1425518228449441],[117,233,67,0.13220053128068768],[117,233,68,0.1221076898009761],[117,233,69,0.11225216808317745],[117,233,70,0.10262175383007938],[117,233,71,0.09321035845989022],[117,233,72,0.08401552202417402],[117,233,73,0.07503621316184801],[117,233,74,0.06627092877677229],[117,233,75,0.05771609767865065],[117,233,76,0.0493647919744969],[117,233,77,0.041205749544788596],[117,233,78,0.033222710490894335],[117,233,79,0.025394069999538246],[117,234,64,0.16466881753173612],[117,234,65,0.1536234035293854],[117,234,66,0.14286917884969277],[117,234,67,0.132408089735347],[117,234,68,0.12221593067490455],[117,234,69,0.1122717651203132],[117,234,70,0.10256283696727812],[117,234,71,0.09308195684594855],[117,234,72,0.08382513045297715],[117,234,73,0.07478947481205483],[117,234,74,0.06597142689413697],[117,234,75,0.0573652485914321],[117,234,76,0.04896183159807003],[117,234,77,0.04074780530908806],[117,234,78,0.0327049504142182],[117,234,79,0.02480992043487815],[117,235,64,0.165417821419918],[117,235,65,0.15426978934444946],[117,235,66,0.14341216531310344],[117,235,67,0.13285281455958975],[117,235,68,0.1225709579157758],[117,235,69,0.11254617818027374],[117,235,70,0.10276538502641741],[117,235,71,0.09322040728004069],[117,235,72,0.08390576964407997],[117,235,73,0.07481674764680357],[117,235,74,0.0659477049485225],[117,235,75,0.057290716719187264],[117,235,76,0.04883448237346501],[117,235,77,0.04056353052455415],[117,235,78,0.03245771859922552],[117,235,79,0.02449202914525063],[117,236,64,0.16633094198267764],[117,236,65,0.15509480057326866],[117,236,66,0.14414634794002829],[117,236,67,0.13349937730905392],[117,236,68,0.12313686936194505],[117,236,69,0.11303932020130468],[117,236,70,0.10319356952574722],[117,236,71,0.09359062220715961],[117,236,72,0.08422359835378623],[117,236,73,0.07508594950653966],[117,236,74,0.06616994476971565],[117,236,75,0.0574654302732426],[117,236,76,0.04895886495694699],[117,236,77,0.040632635261677624],[117,236,78,0.0324646509135712],[117,236,79,0.024428223596885103],[117,237,64,0.16737066648399207],[117,237,65,0.15605877229204193],[117,237,66,0.1450304651529279],[117,237,67,0.1343054022804693],[117,237,68,0.12387065883108456],[117,237,69,0.11370810206510167],[117,237,70,0.103804815611532],[117,237,71,0.09415117110186011],[117,237,72,0.08473897605692883],[117,237,73,0.0755598737406194],[117,237,74,0.06660399841395488],[117,237,75,0.057858889040954604],[117,237,76,0.04930866411341407],[117,237,77,0.04093345987926853],[117,237,78,0.03270913388422302],[117,237,79,0.02460723536931513],[117,238,64,0.16849009265493317],[117,238,65,0.1571120197084248],[117,238,66,0.1460127759480801],[117,238,67,0.13521776308287872],[117,238,68,0.12471848883998801],[117,238,69,0.11449870803164927],[117,238,70,0.10454610508305971],[117,238,71,0.09485063365024744],[117,238,72,0.08540288604576945],[117,238,73,0.07619269879296992],[117,238,74,0.06720799734498431],[117,238,75,0.058433882646868704],[117,238,76,0.049851961860400223],[117,238,77,0.041439925214548756],[117,238,78,0.03317137059609643],[117,238,79,0.025015877154599568],[117,239,64,0.16962720483148053],[117,239,65,0.15818990850091097],[117,239,66,0.1470267686746172],[117,239,67,0.13616876162708308],[117,239,68,0.1256121631048035],[117,239,69,0.11534318034065821],[117,239,70,0.10535049328858354],[117,239,71,0.09562387655593778],[117,239,72,0.08615281241513764],[117,239,73,0.07692532291244508],[117,239,74,0.06792702368775165],[117,239,75,0.05914040178796168],[117,239,76,0.05054431942520153],[117,239,77,0.04211374530268743],[117,239,78,0.03381971481125375],[117,239,79,0.025629520088255378],[117,240,64,0.17071653791952307],[117,240,65,0.15922741887042066],[117,240,66,0.14800801732717625],[117,240,67,0.1370945995615811],[117,240,68,0.12648849260161799],[117,240,69,0.11617893991231429],[117,240,70,0.10615604946592033],[117,240,71,0.09640970588515603],[117,240,72,0.08692844430213988],[117,240,73,0.07769852555482819],[117,240,74,0.06870321489586233],[117,240,75,0.05992226608541613],[117,240,76,0.05133161243711319],[117,240,77,0.042903266087319016],[117,240,78,0.034605426468466365],[117,240,79,0.0264027986863129],[117,241,64,0.17170381319686426],[117,241,65,0.16017113891508336],[117,241,66,0.1489039128968573],[117,241,67,0.13794327553352667],[117,241,68,0.127295811607573],[117,241,69,0.1169543782087179],[117,241,70,0.10691096880788042],[117,241,71,0.09715591626292353],[117,241,72,0.08767703885338744],[117,241,73,0.0784589696063051],[117,241,74,0.0694826706416465],[117,241,75,0.06072513399122319],[117,241,76,0.052159270071920186],[117,241,77,0.04375398472571227],[117,241,78,0.035474445480218414],[117,241,79,0.027282537434116093],[117,242,64,0.17254761776775845],[117,242,65,0.16098009635129817],[117,242,66,0.14967381213968486],[117,242,67,0.13867423962767172],[117,242,68,0.12799334009157123],[117,242,69,0.11762813374846277],[117,242,70,0.1075729655780866],[117,242,71,0.09781899264029234],[117,242,72,0.08835360735799277],[117,242,73,0.07916002618057741],[117,242,74,0.07021704491171446],[117,242,75,0.06149896173933573],[117,242,76,0.05297566876218651],[117,242,77,0.04461291256926571],[117,242,78,0.03637272420077908],[117,242,79,0.028214018601143247],[117,243,64,0.17321823242419693],[117,243,65,0.16162464837203905],[117,243,66,0.15028800056947367],[117,243,67,0.13925744565302],[117,243,68,0.12855034482684166],[117,243,69,0.118168382842219],[117,243,70,0.10810871435548937],[117,243,71,0.0983637220226416],[117,243,72,0.08892071567390539],[117,243,73,0.07976177949299092],[117,243,74,0.07086376805098547],[117,243,75,0.0621984518266592],[117,243,76,0.053732812630405816],[117,243,77,0.04542948914065371],[117,243,78,0.037247372564184235],[117,243,79,0.02914235224441895],[117,244,64,0.17369645607606626],[117,244,65,0.16208536488863057],[117,244,66,0.15072664522203238],[117,244,67,0.13967238833289594],[117,244,68,0.12894527924190743],[117,244,69,0.11855210211582591],[117,244,70,0.10849325578898253],[117,244,71,0.09876276250188863],[117,244,72,0.08934823516290957],[117,244,73,0.08023097614414468],[117,244,74,0.07138620804685286],[117,244,75,0.0627834366801077],[117,244,76,0.05438694630937656],[117,244,77,0.046156427051654084],[117,244,78,0.03804773412532991],[117,244,79,0.030013778504939782],[117,245,64,0.1739724265277443],[117,245,65,0.16235190487011503],[117,245,66,0.1509787368346886],[117,245,67,0.1399071249506841],[117,245,68,0.12916490144839962],[117,245,69,0.11876430213282932],[117,245,70,0.10870936604340412],[117,245,71,0.09899616864656384],[117,245,72,0.08961304307062982],[117,245,73,0.08054091764677489],[117,245,74,0.07175376980409416],[117,245,75,0.06321919619982272],[117,245,76,0.05489909880437108],[117,245,77,0.04675048650713387],[117,245,78,0.03872639166753349],[117,245,79,0.03077690090507049],[117,246,64,0.17404443749768939],[117,246,65,0.16242188560746343],[117,246,66,0.15104102119127802],[117,246,67,0.13995728110141403],[117,246,68,0.12920336997216864],[117,246,69,0.11879723150438633],[117,246,70,0.10874688917982991],[117,246,71,0.09905087234859523],[117,246,72,0.08969867131376041],[117,246,73,0.08067129503452593],[117,246,74,0.07194193114318381],[117,246,75,0.06347670782661216],[117,246,76,0.055235556984728984],[117,246,77,0.047173177948451134],[117,246,78,0.0392401009225724],[117,246,79,0.03138384921304288],[117,247,64,0.17391775190719147],[117,247,65,0.16229974485398238],[117,247,66,0.15091691950022265],[117,247,67,0.13982504030912718],[117,247,68,0.1290613168146192],[117,247,69,0.11864955096350556],[117,247,70,0.10860203178820936],[117,247,71,0.09892011828423578],[117,247,72,0.08959490267620873],[117,247,73,0.08060796440916593],[117,247,74,0.07193221424899458],[117,247,75,0.06353282775068325],[117,247,76,0.055368267234948684],[117,247,77,0.04739139130469539],[117,247,78,0.039550650836905565],[117,247,79,0.03133713752921846],[117,248,64,0.17360341160429876],[117,248,65,0.1619955959280493],[117,248,66,0.15061543780194958],[117,248,67,0.13951811739146833],[117,248,68,0.12874489758417548],[117,248,69,0.11832547698289965],[117,248,70,0.1082766192793773],[117,248,71,0.09860285321938853],[117,248,72,0.08929731346956632],[117,248,73,0.08034266231465031],[117,248,74,0.07171209130431584],[117,248,75,0.06337040185965769],[117,248,76,0.05527516374808665],[117,248,77,0.047377950243601766],[117,248,78,0.039625648711298464],[117,248,79,0.030059084139842634],[117,249,64,0.1731170438398884],[117,249,65,0.16152407601072669],[117,249,66,0.15015006554265595],[117,249,67,0.13904871558730675],[117,249,68,0.12826481856449112],[117,249,69,0.11783389463262621],[117,249,70,0.10777731334782246],[117,249,71,0.09810306847820897],[117,249,72,0.08880676178297607],[117,249,73,0.07987265987394145],[117,249,74,0.07127482306502687],[117,249,75,0.06297830501856838],[117,249,76,0.05494042190916128],[117,249,77,0.04711208974746644],[117,249,78,0.0394392284421875],[117,249,79,0.02900339941040124],[117,250,64,0.17247766497539058],[117,250,65,0.16090318802936598],[117,250,66,0.14953766360493295],[117,250,67,0.13843246761110697],[117,250,68,0.12763534072731658],[117,250,69,0.11718743950622745],[117,250,70,0.10711479023742129],[117,250,71,0.09742909499962704],[117,250,72,0.08812882053454832],[117,250,73,0.07920035468926612],[117,250,74,0.07061922917279947],[117,250,75,0.06235140728476744],[117,250,76,0.054354635195064144],[117,250,77,0.04657985528470013],[117,250,78,0.038972680003508633],[117,250,79,0.028175865340979538],[117,251,64,0.17170648207496128],[117,251,65,0.16015313668830936],[117,251,66,0.14879734225140276],[117,251,67,0.1376873609587912],[117,251,68,0.12687326085349343],[117,251,69,0.11640154869207367],[117,251,70,0.10630287957974259],[117,251,71,0.0965928505295401],[117,251,72,0.0872731546413081],[117,251,73,0.07833279958900455],[117,251,74,0.06974938905746583],[117,251,75,0.0614904656870624],[117,251,76,0.05351491401084975],[117,251,77,0.04577442180544745],[117,251,78,0.038214998227980815],[117,251,79,0.027575302888893656],[117,252,64,0.17082569322085728],[117,252,65,0.15929515939120895],[117,252,66,0.1479493296173407],[117,252,67,0.13683264796607272],[117,252,68,0.12599687009764665],[117,252,69,0.11549348093250164],[117,252,70,0.10535766373101428],[117,252,71,0.09560903863958838],[117,252,72,0.08625284175010983],[117,252,73,0.07728116740759283],[117,252,74,0.06867427235766578],[117,252,75,0.06040194024401462],[117,252,76,0.05242490489330018],[117,252,77,0.0446963307629785],[117,252,78,0.037163348879929524],[117,252,79,0.02719284303910201],[117,253,64,0.16985728758809687],[117,253,65,0.15835035299509723],[117,253,66,0.14701383158117196],[117,253,67,0.1358877413107781],[117,253,68,0.12502489052002355],[117,253,69,0.11448130629657052],[117,253,70,0.10429653770909889],[117,253,71,0.09449429942647325],[117,253,72,0.08508363611801736],[117,253,73,0.07606015110887959],[117,253,74,0.06740729788542342],[117,253,75,0.05909773296156093],[117,253,76,0.05109472854176282],[117,253,77,0.04335364335179878],[117,253,78,0.0358234499580752],[117,253,79,0.027011284102208523],[117,254,64,0.16882184652442828],[117,254,65,0.15733849754550483],[117,254,66,0.1460098840491635],[117,254,67,0.13487109585705082],[117,254,68,0.12397539031428749],[117,254,69,0.11338286589466308],[117,254,70,0.10313723002786736],[117,254,71,0.09326631193093193],[117,254,72,0.0837831753997051],[117,254,73,0.07468729871076768],[117,254,74,0.06596582028042935],[117,254,75,0.05759484863759147],[117,254,76,0.04954083518608618],[117,254,77,0.041762008161230754],[117,254,78,0.03420986612883695],[117,254,79,0.026830729330677937],[117,255,64,0.16773734710437374],[117,255,65,0.15627687836490164],[117,255,66,0.1449541989129658],[117,255,67,0.13379907796207385],[117,255,68,0.12286467868362137],[117,255,69,0.11221470238570175],[117,255,70,0.1018967849443137],[117,255,71,0.09194284852405368],[117,255,72,0.08237013029296346],[117,255,73,0.07318228264137336],[117,255,74,0.06437054364482667],[117,255,75,0.05591497641269283],[117,255,76,0.04778577587394292],[117,255,77,0.039944641471478345],[117,255,78,0.032346214170454114],[117,255,79,0.02493957613215686],[117,256,64,0.16661796986133262],[117,256,65,0.15517910810331778],[117,256,66,0.14386000517579395],[117,256,67,0.13268482360509368],[117,256,68,0.1217061815594478],[117,256,69,0.1109909622708048],[117,256,70,0.10059050687425873],[117,256,71,0.09054078174143237],[117,256,72,0.08086329721242724],[117,256,73,0.07156610335548558],[117,256,74,0.06264486162050997],[117,256,75,0.054083991143337964],[117,256,76,0.04585788835634736],[117,256,77,0.03793221846935987],[117,256,78,0.03026527730700797],[117,256,79,0.022809421922744502],[117,257,64,0.16547292225724158],[117,257,65,0.1540539593146089],[117,257,66,0.142735894854276],[117,257,67,0.13153709403808933],[117,257,68,0.12050930603019695],[117,257,69,0.10972227712321009],[117,257,70,0.09923087355540613],[117,257,71,0.08907504974472058],[117,257,72,0.07928063996203125],[117,257,73,0.06986023317423115],[117,257,74,0.060814130070056316],[117,257,75,0.05213138116035821],[117,257,76,0.04379090473069834],[117,257,77,0.035762683319594785],[117,257,78,0.028009037304668957],[117,257,79,0.020485974099354664],[117,258,64,0.16430537729675912],[117,258,65,0.1529043797320887],[117,258,66,0.14158492126827163],[117,258,67,0.13035945229048473],[117,258,68,0.1192786840632144],[117,258,69,0.10841506195050982],[117,258,70,0.09782687574107919],[117,258,71,0.08755802397769682],[117,258,72,0.07763867250952527],[117,258,73,0.06808600236107502],[117,258,74,0.058905046083959134],[117,258,75,0.05008961162413621],[117,258,76,0.041623292610797155],[117,258,77,0.03348056385535278],[117,258,78,0.025627960744325957],[117,258,79,0.018025341116449357],[117,259,64,0.1631142996398994],[117,259,65,0.1517309086776813],[117,259,66,0.1404096475078058],[117,259,67,0.1291569360690957],[117,259,68,0.11802226944429739],[117,259,69,0.10708058832915088],[117,259,70,0.0963934340608198],[117,259,71,0.0860085115093693],[117,259,72,0.07596021527663449],[117,259,73,0.06627025083913757],[117,259,74,0.05694834995213567],[117,259,75,0.04799307948693653],[117,259,76,0.03939274273513273],[117,259,77,0.03112637208322686],[117,259,78,0.023164811843585112],[117,259,79,0.01547188992088468],[117,260,64,0.1618993859801974],[117,260,65,0.15053622770236721],[117,260,66,0.13921621958672328],[117,260,67,0.12793961406660878],[117,260,68,0.11675434855784862],[117,260,69,0.10573740865982235],[117,260,70,0.0949531912879568],[117,260,71,0.08445287236337348],[117,260,72,0.07427480259916597],[117,260,73,0.06444500301141218],[117,260,74,0.05497775961953808],[117,260,75,0.04587631664558994],[117,260,76,0.03713366737278098],[117,260,77,0.02873344168232181],[117,260,78,0.020650889158323943],[117,260,79,0.01285395653166449],[117,261,64,0.1606612618137473],[117,261,65,0.14932350622607068],[117,261,66,0.13801076145506977],[117,261,67,0.12671699920850704],[117,261,68,0.11548814069922426],[117,261,69,0.10440256054851171],[117,261,70,0.09352692679924533],[117,261,71,0.08291538325062826],[117,261,72,0.07260981784615887],[117,261,73,0.062640234462381],[117,261,74,0.053025227706417856],[117,261,75,0.04377256016687617],[117,261,76,0.0348798414045969],[117,261,77,0.026335307818872708],[117,261,78,0.018118702385505534],[117,261,79,0.010202253133637311],[117,262,64,0.1594010664572387],[117,262,65,0.14809593671770271],[117,262,66,0.1367988543637837],[117,262,67,0.12549745827855313],[117,262,68,0.11423512643354171],[117,262,69,0.10309081112640282],[117,262,70,0.09213272121099567],[117,262,71,0.08141733238006346],[117,262,72,0.07098953231747625],[117,262,73,0.06088287162626364],[117,262,74,0.05111992027887348],[117,262,75,0.041712729166494406],[117,262,76,0.032663396159341204],[117,262,77,0.023964735931532304],[117,262,78,0.015601052656904257],[117,262,79,0.007549014544034482],[117,263,64,0.15812039553086768],[117,263,65,0.14685670950114585],[117,263,66,0.1355855388746076],[117,263,67,0.12428822547629266],[117,263,68,0.1130050501655475],[117,263,69,0.10181462298241283],[117,263,70,0.09078585824328742],[117,263,71,0.07997682920697735],[117,263,72,0.06943479526463502],[117,263,73,0.059196335843640015],[117,263,74,0.04928759090468186],[117,263,75,0.039724607737904885],[117,263,76,0.030513793594624083],[117,263,77,0.021652473527741405],[117,263,78,0.013129552660936515],[117,263,79,0.004926281962172702],[117,264,64,0.1568215811281381],[117,264,65,0.14560932461811335],[117,264,66,0.13437565049487413],[117,264,67,0.1230957438337537],[117,264,68,0.11180624262433345],[117,264,69,0.10058442978496923],[117,264,70,0.08949902374910387],[117,264,71,0.07860889658955278],[117,264,72,0.06796298947082823],[117,264,73,0.05760033424058067],[117,264,74,0.04755018116610806],[117,264,75,0.03783223264730014],[117,264,76,0.028456982566141],[117,264,77,0.019426160766918915],[117,264,78,0.010733282004884461],[117,264,79,0.002364298552430035],[117,265,64,0.15550831214305455],[117,265,65,0.14435824309590806],[117,265,66,0.1331744911449872],[117,265,67,0.12192633655979553],[117,265,68,0.11064626520515469],[117,265,69,0.0994092234285055],[117,265,70,0.0882828036613417],[117,265,71,0.07732584705175305],[117,265,72,0.0665882540638109],[117,265,73,0.05611089911080526],[117,265,74,0.04592564934870072],[117,265,75,0.03605548758304581],[117,265,76,0.026514739072052734],[117,265,77,0.017309401842566876],[117,265,78,0.008437579978366297],[117,265,79,4.034565216234007E-4],[117,266,64,0.15418659670820173],[117,266,65,0.14310987946097337],[117,266,66,0.13198883817332058],[117,266,67,0.12078720990386257],[117,266,68,0.10953287765168153],[117,266,69,0.0982974540999236],[117,266,70,0.08714648218956583],[117,266,71,0.07613794444893687],[117,266,72,0.06532197585220796],[117,266,73,0.05474067711625365],[117,266,74,0.0444280286766712],[117,266,75,0.03440990541467915],[117,266,76,0.02470419203940925],[117,266,77,0.015320998866605505],[117,266,78,0.008752443218702891],[117,266,79,0.006605348962644898],[117,267,64,0.1524016996172887],[117,267,65,0.14187393686414254],[117,267,66,0.13082829217222197],[117,267,67,0.11968778868603493],[117,267,68,0.10847533013444273],[117,267,69,0.09725824425073354],[117,267,70,0.08609914120722703],[117,267,71,0.0750543519596205],[117,267,72,0.0641735501206121],[117,267,73,0.05349946928300898],[117,267,74,0.043067716142452486],[117,267,75,0.032906679607358755],[117,267,76,0.02303753592221276],[117,267,77,0.018098686014140223],[117,267,78,0.015567147756067188],[117,267,79,0.013115471530866118],[117,268,64,0.14846234920335538],[117,268,65,0.13951874759972072],[117,268,66,0.1297069644199702],[117,268,67,0.11864138522726625],[117,268,68,0.10748598038507155],[117,268,69,0.09630291708185955],[117,268,70,0.08515106140888723],[117,268,71,0.07408436698295018],[117,268,72,0.06315141149159584],[117,268,73,0.052395022457843554],[117,268,74,0.04185199268053078],[117,268,75,0.03155288565260561],[117,268,76,0.028434754834830545],[117,268,77,0.025532104193585717],[117,268,78,0.022695050812445113],[117,268,79,0.019927732655177912],[117,269,64,0.14427815965434618],[117,269,65,0.13526235442793982],[117,269,66,0.12638935913048768],[117,269,67,0.11766720203171875],[117,269,68,0.10658223618033726],[117,269,69,0.09544683979921424],[117,269,70,0.08431542548486452],[117,269,71,0.07323894320563885],[117,269,72,0.062264335162468265],[117,269,73,0.05143407260471152],[117,269,74,0.04294368164063599],[117,269,75,0.03969986071277716],[117,269,76,0.036469047137759246],[117,269,77,0.03327119740555194],[117,269,78,0.030120876070313662],[117,269,79,0.027027294795933444],[117,270,64,0.1398287149644026],[117,270,65,0.13073190744449492],[117,270,66,0.12179148040006958],[117,270,67,0.11306941410690365],[117,270,68,0.10456837173948283],[117,270,69,0.09471158157788082],[117,270,70,0.08361032325631532],[117,270,71,0.0725324998130272],[117,270,72,0.06152300854988621],[117,270,73,0.055241640850586166],[117,270,74,0.051793499686025236],[117,270,75,0.048301473465290845],[117,270,76,0.0447936830208682],[117,270,77,0.041293829966625284],[117,270,78,0.03782102585767099],[117,270,79,0.03438969592924056],[117,271,64,0.13510984664093717],[117,271,65,0.12592384469663948],[117,271,66,0.11690849906276814],[117,271,67,0.10812874540224927],[117,271,68,0.09959309625931333],[117,271,69,0.09126878185620829],[117,271,70,0.08303895818369951],[117,271,71,0.07196503705871489],[117,271,72,0.06813365742184228],[117,271,73,0.06457866796903439],[117,271,74,0.06091221186959186],[117,271,75,0.05716829034748332],[117,271,76,0.0533778463495122],[117,271,77,0.04956839390127493],[117,271,78,0.04576371419425935],[117,271,79,0.04198361858914855],[117,272,64,0.1302143381202296],[117,272,65,0.1209317665687507],[117,272,66,0.11183433443415286],[117,272,67,0.10298919973797711],[117,272,68,0.09441060023667643],[117,272,69,0.08607341225081301],[117,272,70,0.08013244155626387],[117,272,71,0.07992967964878647],[117,272,72,0.07783575168197517],[117,272,73,0.07410417376094076],[117,272,74,0.07022495901727933],[117,272,75,0.06623367788957105],[117,272,76,0.06216399440970734],[117,272,77,0.05804716965324331],[117,272,78,0.05391162385638794],[117,272,79,0.04978255755846585],[117,273,64,0.12524977156264225],[117,273,65,0.11586440276697865],[117,273,66,0.10667818219493976],[117,273,67,0.09775966143175532],[117,273,68,0.0891285309471809],[117,273,69,0.08566425959551134],[117,273,70,0.08538689113408589],[117,273,71,0.08511613289198462],[117,273,72,0.08482328131204395],[117,273,73,0.08372523437949572],[117,273,74,0.07964724185894356],[117,273,75,0.07542262477773615],[117,273,76,0.07108753001934354],[117,273,77,0.06667673701572518],[117,273,78,0.06222308993381982],[117,273,79,0.05775698094138739],[117,274,64,0.12031168864984555],[117,274,65,0.1108187427165537],[117,274,66,0.1015379178235242],[117,274,67,0.09253827334680557],[117,274,68,0.09154502749433424],[117,274,69,0.09107869196595447],[117,274,70,0.0906786092488677],[117,274,71,0.09032262591315801],[117,274,72,0.08998520930423762],[117,274,73,0.08963831242194994],[117,274,74,0.08909736158503376],[117,274,75,0.08466124681046461],[117,274,76,0.08008326300168452],[117,274,77,0.07540134306570195],[117,274,78,0.07065238304295703],[117,274,79,0.06587159596476004],[117,275,64,0.11548423142493222],[117,275,65,0.10588060934752952],[117,275,66,0.0988416370074055],[117,275,67,0.0979872587835271],[117,275,68,0.09724476537846506],[117,275,69,0.09660981345353488],[117,275,70,0.09607078096925517],[117,275,71,0.09561027662301862],[117,275,72,0.09520610444898096],[117,275,73,0.09483219762572764],[117,275,74,0.09445952026813799],[117,275,75,0.09387719121008022],[117,275,76,0.08908588370757675],[117,275,77,0.08416343296529308],[117,275,78,0.07915028475722553],[117,275,79,0.07408595601281774],[117,276,64,0.11084063372528227],[117,276,65,0.10630131257873007],[117,276,66,0.10513989651828087],[117,276,67,0.10407219230373152],[117,276,68,0.10312873686242505],[117,276,69,0.10231255253116357],[117,276,70,0.10161810601417862],[117,276,71,0.10103275119349228],[117,276,72,0.10053774198640275],[117,276,73,0.10010922223565806],[117,276,74,0.0997191913270684],[117,276,75,0.09933644428283234],[117,276,76,0.09803059818146148],[117,276,77,0.0929043427995549],[117,276,78,0.08766482532891416],[117,276,79,0.08235523006826004],[117,277,64,0.11448247855660412],[117,277,65,0.11306184620247067],[117,277,66,0.11167789416354733],[117,277,67,0.11039312850775633],[117,277,68,0.10924131957104309],[117,277,69,0.10823238594427517],[117,277,70,0.10736660172096225],[117,277,71,0.10663595878804966],[117,277,72,0.10602521399493593],[117,277,73,0.10551292052250034],[117,277,74,0.10507244208290503],[117,277,75,0.10467294862268221],[117,277,76,0.1042803922491421],[117,277,77,0.1015651543151622],[117,277,78,0.09614218343935182],[117,277,79,0.09063113417859923],[117,278,64,0.12173809895619556],[117,278,65,0.12009099658484243],[117,278,66,0.11848587884100924],[117,278,67,0.11698235318962867],[117,278,68,0.11561668922491514],[117,278,69,0.11440509243936428],[117,278,70,0.11335324734735663],[117,278,71,0.112457586965706],[117,278,72,0.1117063592470744],[117,278,73,0.11108068409231958],[117,278,74,0.11055559952845206],[117,278,75,0.11010109566987696],[117,278,76,0.10968313511782363],[117,278,77,0.10926465849635816],[117,278,78,0.10452774761225878],[117,278,79,0.09886302447385724],[117,279,64,0.12927362942636586],[117,279,65,0.12740598155524616],[117,279,66,0.12558322140856676],[117,279,67,0.12386139975281032],[117,279,68,0.12227852208259636],[117,279,69,0.12085634783576042],[117,279,70,0.1196054691608954],[117,279,71,0.1185264773425628],[117,279,72,0.11761103284164919],[117,279,73,0.11684293139707323],[117,279,74,0.1161991647528707],[117,279,75,0.11565097459616121],[117,279,76,0.11516489831951142],[117,279,77,0.11470380525585275],[117,279,78,0.11276733883913344],[117,279,79,0.10699915118464456],[117,280,64,0.13709309947626117],[117,280,65,0.13390051420581747],[117,280,66,0.13006080811969845],[117,280,67,0.1270629153609769],[117,280,68,0.12489225287910566],[117,280,69,0.12351196865150144],[117,280,70,0.1228612298718087],[117,280,71,0.12285655968188686],[117,280,72,0.12338953356033822],[117,280,73,0.1228221165788641],[117,280,74,0.12202672952655905],[117,280,75,0.12134695144330174],[117,280,76,0.12075044322583442],[117,280,77,0.12020067600989567],[117,280,78,0.11965797123517896],[117,280,79,0.11498807304819679],[117,281,64,0.13835637043176552],[117,281,65,0.13362739395544543],[117,281,66,0.12975726291568712],[117,281,67,0.12675183513112567],[117,281,68,0.12459584702950321],[117,281,69,0.12325092360538506],[117,281,70,0.1226537617577931],[117,281,71,0.12271738157501469],[117,281,72,0.12332870416838465],[117,281,73,0.12434916502270252],[117,281,74,0.12566998489340156],[117,281,75,0.1272063427218562],[117,281,76,0.1264587108463468],[117,281,77,0.12577555888150913],[117,281,78,0.1251180633447894],[117,281,79,0.1227802314434673],[117,282,64,0.13844087767065996],[117,282,65,0.13365494761370406],[117,282,66,0.1297488912354482],[117,282,67,0.12672877532955132],[117,282,68,0.12457884840572345],[117,282,69,0.12325945039708028],[117,282,70,0.12270509204758312],[117,282,71,0.12282562142831971],[117,282,72,0.12350368369295242],[117,282,73,0.12459560260120545],[117,282,74,0.12599023130982068],[117,282,75,0.1276123859282982],[117,282,76,0.12939918087389174],[117,282,77,0.13129786889016182],[117,282,78,0.13062481358107683],[117,282,79,0.12980771353877008],[117,283,64,0.13882433001844108],[117,283,65,0.13397841098442065],[117,283,66,0.13003147766388717],[117,283,67,0.12698995208096592],[117,283,68,0.12483778855191446],[117,283,69,0.12353428464518518],[117,283,70,0.1230120579199904],[117,283,71,0.12317812876403172],[117,283,72,0.12391126297176025],[117,283,73,0.1250630890530352],[117,283,74,0.12652024692977104],[117,283,75,0.12820696581465474],[117,283,76,0.13005970468222572],[117,283,77,0.13202493136957028],[117,283,78,0.13405731087334374],[117,283,79,0.1351827059776777],[117,284,64,0.13949945929156293],[117,284,65,0.13459121349698436],[117,284,66,0.1305990474084869],[117,284,67,0.12752988116266747],[117,284,68,0.12536756817685818],[117,284,69,0.12407060924889479],[117,284,70,0.12357002834481229],[117,284,71,0.12377037324722467],[117,284,72,0.12454694228325494],[117,284,73,0.12574710455165333],[117,284,74,0.12725545595868243],[117,284,75,0.1289956527141708],[117,284,76,0.13090351214537999],[117,284,77,0.13292472737691624],[117,284,78,0.13501300249550854],[117,284,79,0.13712831855635405],[117,285,64,0.14045702391048456],[117,285,65,0.13548483405769574],[117,285,66,0.13144371192408716],[117,285,67,0.1283412141239194],[117,285,68,0.12616128455555892],[117,285,69,0.12486187390272319],[117,285,70,0.12437271655835949],[117,285,71,0.12459625096592175],[117,285,72,0.12540473224495952],[117,285,73,0.12664172222653036],[117,285,74,0.12818995571731168],[117,285,75,0.12997254044273787],[117,285,76,0.13192467605762126],[117,285,77,0.1339913011484171],[117,285,78,0.13612517014849113],[117,285,79,0.13828505633977056],[117,286,64,0.1416858964960684],[117,286,65,0.1366488785406941],[117,286,66,0.13255573685061967],[117,286,67,0.12941479731227223],[117,286,68,0.1272102823577344],[117,286,69,0.12589983849117672],[117,286,70,0.12541221681353015],[117,286,71,0.12564811532173406],[117,286,72,0.1264771795923005],[117,286,73,0.12773962950458084],[117,286,74,0.12931653413568828],[117,286,75,0.13113048773845515],[117,286,76,0.13311610633589127],[117,286,77,0.13521760406089847],[117,286,78,0.13738680697235864],[117,286,79,0.13958128800622768],[117,287,64,0.14317317936559354],[117,287,65,0.13807118585554592],[117,287,66,0.1339236391492286],[117,287,67,0.13073976066276555],[117,287,68,0.12850423474582687],[117,287,69,0.12717464720252156],[117,287,70,0.12667907224382333],[117,287,71,0.1269168393785588],[117,287,72,0.12775542471468415],[117,287,73,0.1290321814693071],[117,287,74,0.13062671948080723],[117,287,75,0.13246116481252168],[117,287,76,0.1344695937581001],[117,287,77,0.13659553582824982],[117,287,78,0.13878991992098322],[117,287,79,0.14100913649376629],[117,288,64,0.14490434790273257],[117,288,65,0.1397379625658235],[117,288,66,0.13553431341109903],[117,288,67,0.1323036362243314],[117,288,68,0.13003125471685298],[117,288,69,0.1286749333359679],[117,288,70,0.12816237381561546],[117,288,71,0.12839190964365946],[117,288,72,0.12922929092314622],[117,288,73,0.13050948621198866],[117,288,74,0.13211086229242258],[117,288,75,0.13395513226899616],[117,288,76,0.13597588616725936],[117,288,77,0.13811601819080221],[117,288,78,0.1403256010338476],[117,288,79,0.1425598708966456],[117,289,64,0.14686342180163053],[117,289,65,0.1416339460588219],[117,289,66,0.13737318733914602],[117,289,67,0.13409250642354817],[117,289,68,0.13177803668824445],[117,289,69,0.13038795480242044],[117,289,70,0.12984989036885003],[117,289,71,0.13006155128127908],[117,289,72,0.13088740544972832],[117,289,73,0.13216052217506785],[117,289,74,0.1337582495270907],[117,289,75,0.13560195239357187],[117,289,76,0.13762479714160317],[117,289,77,0.13976910109777435],[117,289,78,0.14198413115438568],[117,289,79,0.14422400763020343],[117,290,64,0.14903316418498272],[117,290,65,0.1437425962663021],[117,290,66,0.1394244064024471],[117,290,67,0.13609118206563153],[117,290,68,0.1337300283275638],[117,290,69,0.13229976031867846],[117,290,70,0.13172822974602244],[117,290,71,0.13191288475866897],[117,290,72,0.13271735217846237],[117,290,73,0.13397328748761492],[117,290,74,0.13555725091034748],[117,290,75,0.1373903328112523],[117,290,76,0.13940534713058222],[117,290,77,0.14154410138267287],[117,290,78,0.14375511609474642],[117,290,79,0.14599144392061747],[117,291,64,0.15139530859609654],[117,291,65,0.14604631593625356],[117,291,66,0.14167104766341354],[117,291,67,0.1382834100726546],[117,291,68,0.13587163262608798],[117,291,69,0.13439538629508066],[117,291,70,0.1337830310094565],[117,291,71,0.13393211392452775],[117,291,72,0.13470585610795763],[117,291,73,0.13593498129286574],[117,291,74,0.13749549749701134],[117,291,75,0.13930830251291804],[117,291,76,0.14130593705672148],[117,291,77,0.14342977393163767],[117,291,78,0.14562765524696955],[117,291,79,0.14785162361955445],[117,292,64,0.15393081386504814],[117,292,65,0.1485266994557809],[117,292,66,0.14409536277780627],[117,292,67,0.1406521109591056],[117,292,68,0.13818644021636822],[117,292,69,0.13665908441670213],[117,292,70,0.1359991877469787],[117,292,71,0.1361047455199601],[117,292,72,0.13683899954570078],[117,292,73,0.13803221706794247],[117,292,74,0.13956009243972492],[117,292,75,0.14134342025089897],[117,292,76,0.1433145543834552],[117,292,77,0.1454145153448452],[117,292,78,0.14759054264068908],[117,292,79,0.14979373534382484],[117,293,64,0.15662014684883158],[117,293,65,0.1511648102250146],[117,293,66,0.14667905016749389],[117,293,67,0.143179646044679],[117,293,68,0.14065749193366164],[117,293,69,0.13907457991799843],[117,293,70,0.13836110246588718],[117,293,71,0.13841584012184668],[117,293,72,0.13910247003395965],[117,293,73,0.14025126793565035],[117,293,74,0.14173785396562508],[117,293,75,0.14348301530344065],[117,293,76,0.14541901164882953],[117,293,77,0.14748660009086098],[117,293,78,0.1496325004472523],[117,293,79,0.15180694293993052],[117,294,64,0.15944359304549383],[117,294,65,0.15394148658204065],[117,294,66,0.14940355636594893],[117,294,67,0.14584811440429668],[117,294,68,0.1432675716212321],[117,294,69,0.1416253605508952],[117,294,70,0.14085297207521058],[117,294,71,0.14085029451862685],[117,294,72,0.14148184000729191],[117,294,73,0.14257834396834737],[117,294,74,0.14401559056114116],[117,294,75,0.14571446060806487],[117,294,76,0.1476072174650705],[117,294,77,0.14963444915393775],[117,294,78,0.1517424449302537],[117,294,79,0.153880648273503],[117,295,64,0.162381595082385],[117,295,65,0.1568376762789755],[117,295,66,0.15225040653660976],[117,295,67,0.14863967955548738],[117,295,68,0.1459995291796478],[117,295,69,0.14429499624644948],[117,295,70,0.14345910445638665],[117,295,71,0.1433931555186197],[117,295,72,0.14396287818178555],[117,295,73,0.1449999014840191],[117,295,74,0.14638040836505162],[117,295,75,0.14802547826395543],[117,295,76,0.14986747998415087],[117,295,77,0.15184693117439418],[117,295,78,0.15390978484261694],[117,295,79,0.1560047863437688],[117,296,64,0.16541511907832962],[117,296,65,0.15983479950899454],[117,296,66,0.15520156416391445],[117,296,67,0.15153692588292783],[117,296,68,0.1488366338598789],[117,296,69,0.1470674894698875],[117,296,70,0.14616426612216338],[117,296,71,0.14602996519068637],[117,296,72,0.14653189267583305],[117,296,73,0.14750298433435474],[117,296,74,0.14882005076959698],[117,296,75,0.1504044774031645],[117,296,76,0.15218884282914896],[117,296,77,0.15411369608186698],[117,296,78,0.15612475227001815],[117,296,79,0.1581701527228313],[117,297,64,0.1685260488799286],[117,297,65,0.16291514048452266],[117,297,66,0.1582398199172155],[117,297,67,0.15452324480036053],[117,297,68,0.15176295780041074],[117,297,69,0.14992765626923446],[117,297,70,0.14895406096393687],[117,297,71,0.148747137537451],[117,297,72,0.14917610586265695],[117,297,73,0.15007559718504798],[117,297,74,0.15132327022987038],[117,297,75,0.15284092443086583],[117,297,76,0.1545614534916268],[117,297,77,0.15642554122166247],[117,297,78,0.1583787659208773],[117,297,79,0.16036876331999955],[117,298,64,0.1716976081717937],[117,298,65,0.1660622675663881],[117,298,66,0.1613492096873787],[117,298,67,0.1575832506496825],[117,298,68,0.15476378980816646],[117,298,69,0.15286153801732827],[117,298,70,0.151815340087322],[117,298,71,0.1515323666008723],[117,298,72,0.1518840609543782],[117,298,73,0.15270711078810903],[117,298,74,0.15388023228127415],[117,298,75,0.15532574563443666],[117,298,76,0.1569769641948107],[117,298,77,0.15877480997399226],[117,298,78,0.16066482686270084],[117,298,79,0.1625942464709437],[117,299,64,0.17491481046084692],[117,299,65,0.16926148194407445],[117,299,66,0.1645154617961977],[117,299,67,0.16070322633734563],[117,299,68,0.15782607938338067],[117,299,69,0.1558568438473609],[117,299,70,0.1547366427360944],[117,299,71,0.15437506600030734],[117,299,72,0.15464606031777064],[117,299,73,0.1553886992463343],[117,299,74,0.15648295176518814],[117,299,75,0.15785176216151967],[117,299,76,0.15942896522272246],[117,299,77,0.16115582286624047],[117,299,78,0.16297794670492535],[117,299,79,0.16484226735182989],[117,300,64,0.17816493693468335],[117,300,65,0.17250029486706617],[117,300,66,0.16772647337862293],[117,300,67,0.16387159870806198],[117,300,68,0.16093891098841506],[117,300,69,0.15890342378193784],[117,300,70,0.15770866830449867],[117,300,71,0.15726683990306134],[117,300,72,0.15745463552169278],[117,300,73,0.15811380926992438],[117,300,74,0.15912576126283995],[117,300,75,0.16041415736705264],[117,300,76,0.1619134507152518],[117,300,77,0.16356534117825366],[117,300,78,0.1653156082282502],[117,300,79,0.1671109847184209],[117,301,64,0.18143804219387816],[117,301,65,0.17576893342717048],[117,301,66,0.1709728159376846],[117,301,67,0.16707944365569363],[117,301,68,0.16409400856039916],[117,301,69,0.16199377255553674],[117,301,70,0.16072477943780217],[117,301,71,0.1602019854273017],[117,301,72,0.16030504911607762],[117,301,73,0.1608786614251288],[117,301,74,0.16180581173725672],[117,301,75,0.16301097652914465],[117,301,76,0.1644293169290475],[117,301,77,0.16600306304052964],[117,301,78,0.16767825846033838],[117,301,79,0.1694015399700211],[117,302,64,0.18472748785837173],[117,302,65,0.17906087489194886],[117,302,66,0.17424827007224636],[117,302,67,0.1703210209714675],[117,302,68,0.16728627026783305],[117,302,69,0.16512356413050672],[117,302,70,0.16378153622123376],[117,302,71,0.16317802647747875],[117,302,72,0.1631958281426214],[117,302,73,0.16368278337506248],[117,302,74,0.16452360538344138],[117,302,75,0.16564365893394456],[117,302,76,0.1669788929643734],[117,302,77,0.1684721520254534],[117,302,78,0.1700698341980322],[117,302,79,0.17171857853841543],[117,303,64,0.1880305040479014],[117,303,65,0.1823734095892268],[117,303,66,0.17755038937755424],[117,303,67,0.17359433892947496],[117,303,68,0.17051433351111484],[117,303,69,0.16829221690656537],[117,303,70,0.1668792614572692],[117,303,71,0.16619627901221037],[117,303,72,0.16612932937712857],[117,303,73,0.16652957511264768],[117,303,74,0.16728356068673006],[117,303,75,0.1683176023294548],[117,303,76,0.16956850395788187],[117,303,77,0.1709797982315305],[117,303,78,0.1724983199760342],[117,303,79,0.17407080360174798],[117,304,64,0.1913487787363789],[117,304,65,0.18570823234258096],[117,304,66,0.18088109351848491],[117,304,67,0.17690174860936453],[117,304,68,0.1737811701668987],[117,304,69,0.17150348962370462],[117,304,70,0.17002263703116924],[117,304,71,0.16926244774454174],[117,304,72,0.16911233630342581],[117,304,73,0.16942690618559528],[117,304,74,0.17009460968924184],[117,304,75,0.17104275974820576],[117,304,76,0.17220906674122],[117,304,77,0.17353781186053488],[117,304,78,0.17497633848197092],[117,304,79,0.17647156212326356],[117,305,64,0.19468907498035548],[117,305,65,0.1890720624579453],[117,305,66,0.18424729047562982],[117,305,67,0.18025056795636094],[117,305,68,0.17709471207641903],[117,305,69,0.1747661079586362],[117,305,70,0.17322133136490594],[117,305,71,0.17238725427471124],[117,305,72,0.17215668781897378],[117,305,73,0.17238774491355502],[117,305,74,0.1729708274645519],[117,305,75,0.1738342686989176],[117,305,76,0.1749167179655969],[117,305,77,0.17616324928769916],[117,305,78,0.17752177341796693],[117,305,79,0.17893946321503362],[117,306,64,0.19806387602154185],[117,306,65,0.1924772922613034],[117,306,66,0.18766152796418645],[117,306,67,0.1836537355785837],[117,306,68,0.18046850677775172],[117,306,69,0.17809442181475196],[117,306,70,0.176490657959448],[117,306,71,0.17558709665539562],[117,306,72,0.17527993867215066],[117,306,73,0.1754308195974081],[117,306,74,0.1759320938005608],[117,306,75,0.17671311272712564],[117,306,76,0.17771347469228482],[117,306,77,0.17887907162491873],[117,306,78,0.18015842480870078],[117,306,79,0.18149902882664332],[117,307,64,0.2014906111515414],[117,307,65,0.1959412400226122],[117,307,66,0.1911412660717024],[117,307,67,0.1871290958562983],[117,307,68,0.18392100818487434],[117,307,69,0.18150769527483068],[117,307,70,0.17985085922374172],[117,307,71,0.1788833229209206],[117,307,72,0.17850462008977494],[117,307,73,0.17857986557947653],[117,307,74,0.17900332799265145],[117,307,75,0.1797053468369964],[117,307,76,0.18062645456499546],[117,307,77,0.18171336465646457],[117,307,78,0.18291523430084156],[117,307,79,0.18417993032360738],[117,308,64,0.2049628414316529],[117,308,65,0.19945777790061042],[117,308,66,0.19468081345663754],[117,308,67,0.19067151057490303],[117,308,68,0.1874477365058019],[117,308,69,0.18500219840126725],[117,308,70,0.18329903015678883],[117,308,71,0.18227390931320428],[117,308,72,0.1818296247558771],[117,308,73,0.18183470639082738],[117,308,74,0.1821852983084068],[117,308,75,0.1828127048771046],[117,308,76,0.1836583800569657],[117,308,77,0.1846698608075486],[117,308,78,0.1857969609125276],[117,308,79,0.1869879632259031],[117,309,64,0.208448703207804],[117,309,65,0.20299568955129743],[117,309,66,0.19824960504597272],[117,309,67,0.19425106286125116],[117,309,68,0.19101941447233298],[117,309,69,0.18854928143120026],[117,309,70,0.18680713546846878],[117,309,71,0.185731424204999],[117,309,72,0.18522811991348614],[117,309,73,0.18516911642676187],[117,309,74,0.18545243231197328],[117,309,75,0.18601035384789658],[117,309,76,0.1867852721505078],[117,309,77,0.18772556732396298],[117,309,78,0.18878173915680577],[117,309,79,0.18990253150968037],[117,310,64,0.21191678821957347],[117,310,65,0.20652409923077605],[117,310,66,0.20181730520432456],[117,310,67,0.19783795858540945],[117,310,68,0.19460678597357667],[117,310,69,0.19212021967853687],[117,310,70,0.19034697447334864],[117,310,71,0.1892281854664828],[117,310,72,0.18867294191414025],[117,310,73,0.18855646231534312],[117,310,74,0.18877867413161903],[117,310,75,0.1892729006705347],[117,310,76,0.18998251266938804],[117,310,77,0.1908567699164062],[117,310,78,0.19184689595296314],[117,310,79,0.1929021417891903],[117,311,64,0.21533735699579643],[117,311,65,0.21001367474258797],[117,311,66,0.20535500411657093],[117,311,67,0.20140372004989654],[117,311,68,0.1981818107690656],[117,311,69,0.1956874126729698],[117,311,70,0.19389138756094762],[117,311,71,0.19273747647279021],[117,311,72,0.1921378230446143],[117,311,73,0.1919709406568959],[117,311,74,0.1921387317272119],[117,311,75,0.19257564625410717],[117,311,76,0.1932261013654753],[117,311,77,0.19404028830019504],[117,311,78,0.19497019950678188],[117,311,79,0.19596564009359052],[117,312,64,0.21868249673648565],[117,312,65,0.21343678551709494],[117,312,66,0.20883537489784537],[117,312,67,0.2049213410054485],[117,312,68,0.20171781635918795],[117,312,69,0.19922453194175427],[117,312,70,0.19741439908965502],[117,312,71,0.19623368349355463],[117,312,72,0.19559752301902902],[117,312,73,0.1953877034821825],[117,312,74,0.19550819637143538],[117,312,75,0.1958946991820696],[117,312,76,0.19649276408764615],[117,312,77,0.1972535791916868],[117,312,78,0.19812995752230536],[117,312,79,0.19524610946804707],[117,313,64,0.2219265320069654],[117,313,65,0.21676778442695943],[117,313,66,0.21223282669547805],[117,313,67,0.20836531157193228],[117,313,68,0.2051893956497066],[117,313,69,0.2027062927605244],[117,313,70,0.20089086501172468],[117,313,71,0.19969182145347067],[117,313,72,0.1990272356393517],[117,313,73,0.19878214910174494],[117,313,74,0.19886272143225064],[117,313,75,0.19920604654918095],[117,313,76,0.19975892012676683],[117,313,77,0.20047360490427693],[117,313,78,0.19779973078492896],[117,313,79,0.19124191513195551],[117,314,64,0.225045760224081],[117,314,65,0.21998276563325808],[117,314,66,0.21552328363346862],[117,314,67,0.21171141699607623],[117,314,68,0.20857222424552588],[117,314,69,0.206108288747719],[117,314,70,0.20429632361126918],[117,314,71,0.2030873997739409],[117,314,72,0.20240246885924718],[117,314,73,0.20212981570433255],[117,314,74,0.2021779289644347],[117,314,75,0.20248547309223983],[117,314,76,0.2030006134915886],[117,314,77,0.20066777850522874],[117,314,78,0.19363549564132906],[117,314,79,0.1870000746086804],[117,315,64,0.22801812818519035],[117,315,65,0.22305937212825594],[117,315,66,0.2186841209779624],[117,315,67,0.21493679974301916],[117,315,68,0.21184324550277],[117,315,69,0.20940729668281488],[117,315,70,0.20760741670892352],[117,315,71,0.20639695644591588],[117,315,72,0.20569968811841058],[117,315,73,0.20540713030343613],[117,315,74,0.2054302605465316],[117,315,75,0.2057095100802016],[117,315,76,0.20372932401257351],[117,315,77,0.19630545198654287],[117,315,78,0.18921993367502202],[117,315,79,0.1825456116177608],[117,316,64,0.23082336850889945],[117,316,65,0.225976945240815],[117,316,66,0.22169432647610943],[117,316,67,0.21802013142889776],[117,316,68,0.21498085183732377],[117,316,69,0.21258146602788305],[117,316,70,0.21080208632360753],[117,316,71,0.20959826088684905],[117,316,72,0.20889652461748315],[117,316,73,0.2085916218562413],[117,316,74,0.20859719483861697],[117,316,75,0.20682592160865562],[117,316,76,0.19911245782020565],[117,316,77,0.19166582365753498],[117,316,78,0.18456963156833625],[117,316,79,0.17789681774401944],[117,317,64,0.2334431519799974],[117,317,65,0.2287166859517529],[117,317,66,0.22453466946752124],[117,317,67,0.22094178855166355],[117,317,68,0.21796506592561712],[117,317,69,0.21561050450846586],[117,317,70,0.21385976363769235],[117,317,71,0.21267050542530352],[117,317,72,0.21197196862738762],[117,317,73,0.2116621159085911],[117,317,74,0.20977621542181632],[117,317,75,0.20188637947240604],[117,317,76,0.19418309641717504],[117,317,77,0.18675774051509475],[117,317,78,0.1796936035599991],[117,317,79,0.1730629737001571],[117,318,64,0.23497277777077202],[117,318,65,0.23126181825878755],[117,318,66,0.227187872389301],[117,318,67,0.22368403096747833],[117,318,68,0.22077772500531956],[117,318,69,0.21847586714487444],[117,318,70,0.21676156175266417],[117,318,71,0.21559450089865315],[117,318,72,0.21490656720938411],[117,318,73,0.2123925159845685],[117,318,74,0.20444192872858655],[117,318,75,0.19659374648373357],[117,318,76,0.1889434947441291],[117,318,77,0.18158181291617279],[117,318,78,0.17459094643609102],[117,318,79,0.16804183871833228],[117,319,64,0.2320584199583039],[117,319,65,0.23057789534135928],[117,319,66,0.22926208326968261],[117,319,67,0.22623118311268162],[117,319,68,0.22340266827593813],[117,319,69,0.22116094873389402],[117,319,70,0.21949047223527493],[117,319,71,0.21835287636386713],[117,319,72,0.21449758920872447],[117,319,73,0.2065953642977458],[117,319,74,0.19871266524567185],[117,319,75,0.19094508694491924],[117,319,76,0.1833871022437339],[117,319,77,0.17612796871070888],[117,319,78,0.1692482429840276],[117,319,79,0.1628169058716091],[118,-64,64,0.3410093957958237],[118,-64,65,0.3468842447113925],[118,-64,66,0.3528669053836335],[118,-64,67,0.35893844189826657],[118,-64,68,0.3651049062273132],[118,-64,69,0.3713861206273067],[118,-64,70,0.3777946886910377],[118,-64,71,0.3843357556928173],[118,-64,72,0.3910072879827639],[118,-64,73,0.39780041299659985],[118,-64,74,0.4046998208611464],[118,-64,75,0.4116842284509029],[118,-64,76,0.4187269066233803],[118,-64,77,0.425796271231316],[118,-64,78,0.43285653837905463],[118,-64,79,0.43986844425997274],[118,-63,64,0.3428024184523669],[118,-63,65,0.3487844436408974],[118,-63,66,0.3548791465547665],[118,-63,67,0.36106849935245006],[118,-63,68,0.3673580398876051],[118,-63,69,0.37376589494552864],[118,-63,70,0.38030283773945894],[118,-63,71,0.38697213758037335],[118,-63,72,0.3937699007612195],[118,-63,73,0.40068546679280576],[118,-63,74,0.4077018607730729],[118,-63,75,0.4147963025515118],[118,-63,76,0.4219407732288161],[118,-63,77,0.4291026394094818],[118,-63,78,0.43624533550247196],[118,-63,79,0.44332910424389294],[118,-62,64,0.3447680018474672],[118,-62,65,0.3508447242417881],[118,-62,66,0.35703740828444525],[118,-62,67,0.3633292560469456],[118,-62,68,0.3697252348115902],[118,-62,69,0.37624152606929356],[118,-62,70,0.382886972976482],[118,-62,71,0.3896630039171589],[118,-62,72,0.39656401246573925],[118,-62,73,0.403577788447943],[118,-62,74,0.4106860007319821],[118,-62,75,0.41786473226739523],[118,-62,76,0.4250850677731746],[118,-62,77,0.4323137343611835],[118,-62,78,0.43951379526579226],[118,-62,79,0.446645396737663],[118,-61,64,0.3468915870031286],[118,-61,65,0.35305049128003496],[118,-61,66,0.3593270261594153],[118,-61,67,0.3657059037157917],[118,-61,68,0.37219148417092324],[118,-61,69,0.3787978103903193],[118,-61,70,0.38553174133559764],[118,-61,71,0.3923929341933173],[118,-61,72,0.3993742421344906],[118,-61,73,0.4064621598918316],[118,-61,74,0.4136373176830259],[118,-61,75,0.4208750238986596],[118,-61,76,0.4281458568634838],[118,-61,77,0.435416305870311],[118,-61,78,0.4426494615774773],[118,-61,79,0.4498057557549263],[118,-60,64,0.3491551966576743],[118,-60,65,0.35538403612194147],[118,-60,66,0.3617305772457514],[118,-60,67,0.36818126880293156],[118,-60,68,0.3747398426099215],[118,-60,69,0.3814180644738742],[118,-60,70,0.38822079558225997],[118,-60,71,0.39514601859123777],[118,-60,72,0.4021852337535108],[118,-60,73,0.40932390047127276],[118,-60,74,0.41654192473907814],[118,-60,75,0.4238141928370767],[118,-60,76,0.4311111515306051],[118,-60,77,0.43839943492848216],[118,-60,78,0.4456425380499341],[118,-60,79,0.4528015370502686],[118,-59,64,0.3515384072226998],[118,-59,65,0.35782553865907524],[118,-59,66,0.36422891337897506],[118,-59,67,0.3707368782077426],[118,-59,68,0.3773525230032093],[118,-59,69,0.38408524754869644],[118,-59,70,0.39093793389156983],[118,-59,71,0.3979070031715138],[118,-59,72,0.4049827932791447],[118,-59,73,0.4121499802938922],[118,-59,74,0.4193880441363014],[118,-59,75,0.4266717787707797],[118,-59,76,0.43397184719560744],[118,-59,77,0.44125538135865516],[118,-59,78,0.4484866270400582],[118,-59,79,0.4556276336484805],[118,-58,64,0.3540195057078169],[118,-58,65,0.3603542539935674],[118,-58,66,0.36680237833157125],[118,-58,67,0.37335420737135705],[118,-58,68,0.38001217310007646],[118,-58,69,0.38678326009820757],[118,-58,70,0.393668410098432],[118,-58,71,0.40066259844733215],[118,-58,72,0.40775517979061815],[118,-58,73,0.41493027643551555],[118,-58,74,0.42216720982124606],[118,-58,75,0.4294409754346391],[118,-58,76,0.4367227614137959],[118,-58,77,0.4439805109892554],[118,-58,78,0.4511795288196274],[118,-58,79,0.4582831311885425],[118,-57,64,0.3565768314045454],[118,-57,65,0.36294988366273456],[118,-57,66,0.36943220864123666],[118,-57,67,0.37601611050756484],[118,-57,68,0.38270333189403594],[118,-57,69,0.38949841843848704],[118,-57,70,0.39640041456338804],[118,-57,71,0.4034029513578099],[118,-57,72,0.4104945508591833],[118,-57,73,0.41765897218125553],[118,-57,74,0.4248755999304724],[118,-57,75,0.4321198752644551],[118,-57,76,0.4393637698572053],[118,-57,77,0.446576302946963],[118,-57,78,0.4537241015546549],[118,-57,79,0.4607720038748921],[118,-56,64,0.35918672534009655],[118,-56,65,0.36559015355597396],[118,-56,66,0.37209773480223857],[118,-56,67,0.37870364232520554],[118,-56,68,0.3854088704024937],[118,-56,69,0.3922155168378179],[118,-56,70,0.39912076648818634],[118,-56,71,0.40611698521642076],[118,-56,72,0.41319197739759495],[118,-56,73,0.42032928443399664],[118,-56,74,0.42750852473821616],[118,-56,75,0.43470577556098644],[118,-56,76,0.44189399695660986],[118,-56,77,0.44904349809501715],[118,-56,78,0.45612244604607144],[118,-56,79,0.4630974170799319],[118,-55,64,0.3618027434347268],[118,-55,65,0.3682274967291988],[118,-55,66,0.37475049406159977],[118,-55,67,0.3813675846259773],[118,-55,68,0.3880789473568774],[118,-55,69,0.3948842825152926],[118,-55,70,0.4017790065937823],[118,-55,71,0.4087543443881981],[118,-55,72,0.4157975336160049],[118,-55,73,0.42289206987390465],[118,-55,74,0.4300179924215325],[118,-55,75,0.43715221120053993],[118,-55,76,0.44426887541972093],[118,-55,77,0.4513397839577772],[118,-55,78,0.4583348377561836],[118,-55,79,0.465222534296683],[118,-54,64,0.36437271598538196],[118,-54,65,0.3708077982496609],[118,-54,66,0.37733465495230867],[118,-54,67,0.383950550260078],[118,-54,68,0.3906547852643735],[118,-54,69,0.3974447861273049],[118,-54,70,0.4043143644337876],[118,-54,71,0.41125379504646614],[118,-54,72,0.41824995927935965],[118,-54,73,0.4252865282545284],[118,-54,74,0.4323441869733462],[118,-54,75,0.4394008995615161],[118,-54,76,0.44643221607281364],[118,-54,77,0.45341162116145983],[118,-54,78,0.46031092485737446],[118,-54,79,0.46710069560353623],[118,-53,64,0.366851217614726],[118,-53,65,0.37328417685583815],[118,-53,66,0.37980211796298513],[118,-53,67,0.38640340534253564],[118,-53,68,0.39308640478240736],[118,-53,69,0.399846451859135],[118,-53,70,0.4066759737814929],[118,-53,71,0.4135645373667769],[118,-53,72,0.42049892050539833],[118,-53,73,0.42746322444703544],[118,-53,74,0.43443902750779784],[118,-53,75,0.44140558072947833],[118,-53,76,0.4483400459512332],[118,-53,77,0.4552177766817217],[118,-53,78,0.4620126420862114],[118,-53,79,0.468697394329617],[118,-52,64,0.36919984819234175],[118,-52,65,0.3756172340820776],[118,-52,66,0.3821127298338665],[118,-52,67,0.38868544591763265],[118,-52,68,0.3953327613266893],[118,-52,69,0.4020481522474594],[118,-52,70,0.40882292484327015],[118,-52,71,0.41564621535941765],[118,-52,72,0.4225049785843605],[118,-52,73,0.42938401878891463],[118,-52,74,0.4362660638370452],[118,-52,75,0.4431318830962251],[118,-52,76,0.44996044970653704],[118,-52,77,0.45672914769653505],[118,-52,78,0.46341402436072954],[118,-52,79,0.4699900882396454],[118,-51,64,0.3713875713158355],[118,-51,65,0.3777753544125416],[118,-51,66,0.3842345420866387],[118,-51,67,0.39076461163181625],[118,-51,68,0.39736191101291896],[118,-51,69,0.40401832435043805],[118,-51,70,0.4107243297021641],[118,-51,71,0.417468931889616],[118,-51,72,0.4242395562394356],[118,-51,73,0.4310219876462605],[118,-51,74,0.4378003557724261],[118,-51,75,0.4445571671353132],[118,-51,76,0.4512733847644963],[118,-51,77,0.4579285560388726],[118,-51,78,0.4645009892390931],[118,-51,79,0.4709679792741134],[118,-50,64,0.3732152701808612],[118,-50,65,0.37973512154902905],[118,-50,66,0.386144185291188],[118,-50,67,0.39261781436341164],[118,-50,68,0.3991512902885219],[118,-50,69,0.40573519785690254],[118,-50,70,0.41235949747625034],[118,-50,71,0.4190133707321581],[118,-50,72,0.4256850078092748],[118,-50,73,0.432361444384411],[118,-50,74,0.4390284489560186],[118,-50,75,0.4456704615091071],[118,-50,76,0.45227058434403067],[118,-50,77,0.4588106258225585],[118,-50,78,0.4652711977057307],[118,-50,79,0.4716318666764512],[118,-49,64,0.37325723235477826],[118,-49,65,0.3802105644359919],[118,-49,66,0.3872305979839469],[118,-49,67,0.3942285954868484],[118,-49,68,0.4006859997935697],[118,-49,69,0.40718573220081977],[118,-49,70,0.41371753946610823],[118,-49,71,0.4202710714510169],[118,-49,72,0.42683555199522794],[118,-49,73,0.4333995047145159],[118,-49,74,0.4399505348600225],[118,-49,75,0.4464751683078356],[118,-49,76,0.45295874867308916],[118,-49,77,0.4593853934624133],[118,-49,78,0.4657380100931641],[118,-49,79,0.4719983725188103],[118,-48,64,0.37338179824238843],[118,-48,65,0.38036725489804457],[118,-48,66,0.3874275890091118],[118,-48,67,0.39454654509870496],[118,-48,68,0.4017111852839556],[118,-48,69,0.4083606772574252],[118,-48,70,0.4147941551663542],[118,-48,71,0.4212429234866533],[118,-48,72,0.42769741983109705],[118,-48,73,0.43414779833115236],[118,-48,74,0.44058360232034466],[118,-48,75,0.44699350092067974],[118,-48,76,0.4533650907009124],[118,-48,77,0.4596847634877717],[118,-48,78,0.4659376413174338],[118,-48,79,0.47210757941598996],[118,-47,64,0.3736046211227964],[118,-47,65,0.38061792482884677],[118,-47,66,0.3877127635463574],[118,-47,67,0.39487430011069385],[118,-47,68,0.4020910389184881],[118,-47,69,0.40925670974310985],[118,-47,70,0.415590885329414],[118,-47,71,0.4219354914571374],[118,-47,72,0.4282822653673138],[118,-47,73,0.43462303627516397],[118,-47,74,0.4409492891761896],[118,-47,75,0.4472517998822416],[118,-47,76,0.45352034262909163],[118,-47,77,0.45974347150064687],[118,-47,78,0.46590837681134584],[118,-47,79,0.4720008174789207],[118,-46,64,0.3739323749765159],[118,-46,65,0.3809665631577463],[118,-46,66,0.3880871370083058],[118,-46,67,0.3952810602662514],[118,-46,68,0.4025383952405406],[118,-46,69,0.4098499795067259],[118,-46,70,0.41611477847878325],[118,-46,71,0.42235990452892835],[118,-46,72,0.4286052941236275],[118,-46,73,0.43484441100166116],[118,-46,74,0.4410706019656063],[118,-46,75,0.44727663426419445],[118,-46,76,0.45345431320326524],[118,-46,77,0.4595941813830707],[118,-46,78,0.46568530084547466],[118,-46,79,0.47171511929371995],[118,-45,64,0.3743636664349108],[118,-45,65,0.3814094731071377],[118,-45,66,0.38854452210044665],[118,-45,67,0.39575793696030725],[118,-45,68,0.40304146913035116],[118,-45,69,0.4102298587664812],[118,-45,70,0.4163777121777005],[118,-45,71,0.42253124366491257],[118,-45,72,0.4286847241685217],[118,-45,73,0.4348331385312032],[118,-45,74,0.440971545616749],[118,-45,75,0.44709452446797554],[118,-45,76,0.45319570815224847],[118,-45,77,0.4592674068272017],[118,-45,78,0.46530032143413563],[118,-45,79,0.47128334929402593],[118,-44,64,0.37488993213013183],[118,-44,65,0.38193615508389794],[118,-44,66,0.389072388726566],[118,-44,67,0.39629024302792715],[118,-44,68,0.4035833001233477],[118,-44,69,0.4103292417556712],[118,-44,70,0.41639572002936354],[118,-44,71,0.42246793279764816],[118,-44,72,0.42854124923358655],[118,-44,73,0.4346120006957778],[118,-44,74,0.44067675127595285],[118,-44,75,0.4467316612082077],[118,-44,76,0.45277194491068207],[118,-44,77,0.4587914253045833],[118,-44,78,0.464782185919709],[118,-44,79,0.4707343221517602],[118,-43,64,0.37549632404759065],[118,-43,65,0.3825301784226422],[118,-43,66,0.389652713593004],[118,-43,67,0.3968583122745465],[118,-43,68,0.40414253410385664],[118,-43,69,0.4101927923621663],[118,-43,70,0.41618832246226006],[118,-43,71,0.42219113215723114],[118,-43,72,0.42819750228446485],[118,-43,73,0.4342048861078115],[118,-43,74,0.4402111011195967],[118,-43,75,0.44621361976215423],[118,-43,76,0.4522089609357548],[118,-43,77,0.45819218402447875],[118,-43,78,0.4641564870258864],[118,-43,79,0.4700929102160062],[118,-42,64,0.37616258550951587],[118,-42,65,0.3831700445527045],[118,-42,66,0.39026282200412826],[118,-42,67,0.3974383121015006],[118,-42,68,0.40392113137721575],[118,-42,69,0.4098417379386337],[118,-42,70,0.41577785932577127],[118,-42,71,0.4217241319564509],[118,-42,72,0.4276775179456785],[118,-42,73,0.4336363284593587],[118,-42,74,0.4395993489796888],[118,-42,75,0.44556506854834893],[118,-42,76,0.45153101492202535],[118,-42,77,0.45749319743103317],[118,-42,78,0.46344565917725317],[118,-42,79,0.46938014004410583],[118,-41,64,0.37686392043618655],[118,-41,65,0.3838300441807897],[118,-41,66,0.3908762243624429],[118,-41,67,0.39758921839369493],[118,-41,68,0.4034305716759935],[118,-41,69,0.40930004694184957],[118,-41,70,0.4151888223002817],[118,-41,71,0.42109174461613336],[118,-41,72,0.42700619215871793],[118,-41,73,0.43293104074329086],[118,-41,74,0.43886573560114694],[118,-41,75,0.44480947108968993],[118,-41,76,0.45076048021538034],[118,-41,77,0.45671543579157053],[118,-41,78,0.4626689648913547],[118,-41,79,0.4686132780845525],[118,-40,64,0.37757185854003794],[118,-40,65,0.38448111109189304],[118,-40,66,0.3912201599954109],[118,-40,67,0.3969685203237838],[118,-40,68,0.4027644602270134],[118,-40,69,0.40859370829369446],[118,-40,70,0.4144471851117039],[118,-40,71,0.42031969369981237],[118,-40,72,0.42620873744021714],[118,-40,73,0.43211344397762347],[118,-40,74,0.4380335973406293],[118,-40,75,0.44396878041146254],[118,-40,76,0.4499176297263121],[118,-40,77,0.4558772044321364],[118,-40,78,0.4618424710584558],[118,-40,79,0.4678059055861219],[118,-39,64,0.3782551191073768],[118,-39,65,0.38485672141228705],[118,-39,66,0.390484930064868],[118,-39,67,0.39619032795855946],[118,-39,68,0.4019503506327163],[118,-39,69,0.4077500074224621],[118,-39,70,0.4135797295340892],[118,-39,71,0.4194339977206665],[118,-39,72,0.4253101321014066],[118,-39,73,0.4312071890096653],[118,-39,74,0.43712496711416005],[118,-39,75,0.4430631249246243],[118,-39,76,0.44902041164571826],[118,-39,77,0.45499401318316207],[118,-39,78,0.4609790149353185],[118,-39,79,0.46696798282368673],[118,-38,64,0.37856147661726236],[118,-38,65,0.3840305350867448],[118,-38,66,0.389613244014718],[118,-38,67,0.3952836246161517],[118,-38,68,0.4010167784807512],[118,-38,69,0.4067967968115074],[118,-38,70,0.4126133651654152],[118,-38,71,0.4184603469845067],[118,-38,72,0.4243345617908082],[118,-38,73,0.43023466997789905],[118,-38,74,0.4361601664030247],[118,-38,75,0.44211048484853366],[118,-38,76,0.4480842152724661],[118,-38,77,0.45407843560697747],[118,-38,78,0.4600881596915295],[118,-38,79,0.4661059027472399],[118,-37,64,0.37767600492032727],[118,-37,65,0.38309156907553493],[118,-37,66,0.3886352068330676],[118,-37,67,0.39427794876241073],[118,-37,68,0.3999924833939379],[118,-37,69,0.40576175889306093],[118,-37,70,0.41157444097096585],[118,-37,71,0.41742347164076554],[118,-37,72,0.4233048517295082],[118,-37,73,0.4292165280165468],[118,-37,74,0.4351573871346406],[118,-37,75,0.44112635823524193],[118,-37,76,0.44712162627117913],[118,-37,77,0.45313995758990644],[118,-37,78,0.4591761393602466],[118,-37,79,0.46522253417682596],[118,-36,64,0.37670317462349906],[118,-36,65,0.38207055006350277],[118,-36,66,0.38758095553307226],[118,-36,67,0.3932025737515073],[118,-36,68,0.3989056217146918],[118,-36,69,0.40467165914520836],[118,-36,70,0.4104880466069177],[118,-36,71,0.4163464991298727],[118,-36,72,0.42224188802333185],[118,-36,73,0.42817114380167615],[118,-36,74,0.4341322622683459],[118,-36,75,0.44012341567050794],[118,-36,76,0.4461421706920128],[118,-36,77,0.4521848148957832],[118,-36,78,0.4582457930606235],[118,-36,79,0.4643172546832295],[118,-35,64,0.37567363519076735],[118,-35,65,0.38099763473758275],[118,-35,66,0.3864798017519864],[118,-35,67,0.3920856762511296],[118,-35,68,0.3977829675806485],[118,-35,69,0.40355158727935303],[118,-35,70,0.40937730156353636],[118,-35,71,0.4152502992397968],[118,-35,72,0.421164026458455],[118,-35,73,0.4271141175580225],[118,-35,74,0.4330974239348186],[118,-35,75,0.43911114274429947],[118,-35,76,0.4451520471010704],[118,-35,77,0.45121581929430965],[118,-35,78,0.4572964883759145],[118,-35,79,0.4633859733116382],[118,-34,64,0.37461681088828497],[118,-34,65,0.379901520731826],[118,-34,66,0.3853593608834952],[118,-34,67,0.3909534910438787],[118,-34,68,0.39664910018986643],[118,-34,69,0.40242418444410416],[118,-34,70,0.40826263020294834],[118,-34,71,0.4141528150170576],[118,-34,72,0.42008648721658365],[118,-34,73,0.426057735172555],[118,-34,74,0.4320620480022114],[118,-34,75,0.4380954694057639],[118,-34,76,0.444153846190508],[118,-34,77,0.4502321728966712],[118,-34,78,0.45632403378926684],[118,-34,79,0.46242114332293766],[118,-33,64,0.373559987942745],[118,-33,65,0.3788085418971318],[118,-33,66,0.38424466540598623],[118,-33,67,0.3898294499521477],[118,-33,68,0.3955255751064884],[118,-33,69,0.40130885442059266],[118,-33,70,0.4071610208118984],[118,-33,71,0.413068377819279],[118,-33,72,0.41902073398394163],[118,-33,73,0.4250104190953699],[118,-33,74,0.431031383973248],[118,-33,75,0.43707838534562937],[118,-33,76,0.4431462572624891],[118,-33,77,0.44922927035338595],[118,-33,78,0.4553205800995888],[118,-33,79,0.46141176514589916],[118,-32,64,0.3725273840552073],[118,-32,65,0.3777417455674932],[118,-32,66,0.3831572601391994],[118,-32,67,0.38873330270039647],[118,-32,68,0.3944300775207875],[118,-32,69,0.4002209568433395],[118,-32,70,0.40608526684484925],[118,-32,71,0.4120070048469455],[118,-32,72,0.4179738359744594],[118,-32,73,0.4239761627501891],[118,-32,74,0.4300062691548441],[118,-32,75,0.4360575405820991],[118,-32,76,0.44212376101021994],[118,-32,77,0.4481984885946848],[118,-32,78,0.45427451076178],[118,-32,79,0.46034337975237033],[118,-31,64,0.3715391979963276],[118,-31,65,0.3767199495787726],[118,-31,66,0.3821142772428863],[118,-31,67,0.3876802176064739],[118,-31,68,0.3933755554512992],[118,-31,69,0.3991709805501761],[118,-31,70,0.40504318859739247],[118,-31,71,0.4109736775515965],[118,-31,72,0.4169478114418786],[118,-31,73,0.4229539472257182],[118,-31,74,0.42898262608541],[118,-31,75,0.43502583046455323],[118,-31,76,0.441076308052359],[118,-31,77,0.44712696382179296],[118,-31,78,0.4531703211189627],[118,-31,79,0.45919805268653135],[118,-30,64,0.370610637108714],[118,-30,65,0.3757567768929992],[118,-30,66,0.38112748886489867],[118,-30,67,0.38667986008368777],[118,-30,68,0.3923693309624705],[118,-30,69,0.39816369524558703],[118,-30,70,0.4040368336254804],[118,-30,71,0.4099675993875063],[118,-30,72,0.4159389513192803],[118,-30,73,0.4219371390766504],[118,-30,74,0.4279509422561304],[118,-30,75,0.4339709643540874],[118,-30,76,0.4399889827154149],[118,-30,77,0.4459973554895465],[118,-30,78,0.45198848652037854],[118,-30,79,0.4579543489995738],[118,-29,64,0.3697509206543801],[118,-29,65,0.37485966579058827],[118,-29,66,0.3802023354521436],[118,-29,67,0.3857354470372951],[118,-29,68,0.3914121875685123],[118,-29,69,0.39719727975375174],[118,-29,70,0.4030616543119647],[118,-29,71,0.40898143145344323],[118,-29,72,0.41493712169720876],[118,-29,73,0.42091286812855405],[118,-29,74,0.42689573122052277],[118,-29,75,0.432875017290321],[118,-29,76,0.438841651601519],[118,-29,77,0.4447875970559734],[118,-29,78,0.45070531934638713],[118,-29,79,0.456587299361747],[118,-28,64,0.36896225707009533],[118,-28,65,0.37402885371483696],[118,-28,66,0.3793369278561876],[118,-28,67,0.38484277535306555],[118,-28,68,0.39049743210299614],[118,-28,69,0.3962624252405587],[118,-28,70,0.4021056610783806],[118,-28,71,0.4080005046603594],[118,-28,72,0.4139250439330963],[118,-28,73,0.41986138425423314],[118,-28,74,0.42579497425137053],[118,-28,75,0.43171396400990264],[118,-28,76,0.43760859652601347],[118,-28,77,0.4434706333125632],[118,-28,78,0.44929281499123913],[118,-28,79,0.45506835764430653],[118,-27,64,0.36823879333254483],[118,-27,65,0.3732563329893043],[118,-27,66,0.3785210214977773],[118,-27,67,0.38398922280342446],[118,-27,68,0.38960992945612066],[118,-27,69,0.3953414118999349],[118,-27,70,0.40114854984884707],[118,-27,71,0.40700200716192875],[118,-27,72,0.4128775512771944],[118,-27,73,0.4187553921724892],[118,-27,74,0.42461954177783684],[118,-27,75,0.43021170527725905],[118,-27,76,0.43580572206360063],[118,-27,77,0.4414309444200764],[118,-27,78,0.44706578006165837],[118,-27,79,0.4526869373253738],[118,-26,64,0.3675655347868571],[118,-26,65,0.37252477677741935],[118,-26,66,0.3777349609992765],[118,-26,67,0.38315271983642246],[118,-26,68,0.3887251087153973],[118,-26,69,0.39440715772679247],[118,-26,70,0.4000489425570754],[118,-26,71,0.40511726549565014],[118,-26,72,0.41029032767146173],[118,-26,73,0.4155672526859301],[118,-26,74,0.4209414739665729],[118,-26,75,0.4264014715001699],[118,-26,76,0.4319314941318015],[118,-26,77,0.43751226659021836],[118,-26,78,0.4431216804191471],[118,-26,79,0.4487354680191202],[118,-25,64,0.3669171816856191],[118,-25,65,0.37180642681067516],[118,-25,66,0.3769486285559596],[118,-25,67,0.38230076606056296],[118,-25,68,0.3871051483634376],[118,-25,69,0.39182830029773946],[118,-25,70,0.39664841014405483],[118,-25,71,0.40158091362435755],[118,-25,72,0.40663356471043766],[118,-25,73,0.4118071791380741],[118,-25,74,0.41709637415232353],[118,-25,75,0.4224903036436835],[118,-25,76,0.4279733878265933],[118,-25,77,0.43352603660942907],[118,-25,78,0.43912536580928974],[118,-25,79,0.44474590537520436],[118,-24,64,0.3659622503005545],[118,-24,65,0.3704425979779941],[118,-24,66,0.37489208112562866],[118,-24,67,0.379343075958376],[118,-24,68,0.3838395455318474],[118,-24,69,0.38841788454547865],[118,-24,70,0.39310482114764733],[118,-24,71,0.39791816605409785],[118,-24,72,0.40286754522355017],[118,-24,73,0.4079551372524426],[118,-24,74,0.41317641466977123],[118,-24,75,0.41852088828589634],[118,-24,76,0.42397285372765225],[118,-24,77,0.42951213927670656],[118,-24,78,0.43511485411953965],[118,-24,79,0.4407541361155189],[118,-23,64,0.36316175219025654],[118,-23,65,0.36748297380982337],[118,-23,66,0.37177852386163945],[118,-23,67,0.376080678415052],[118,-23,68,0.3804352408677064],[118,-23,69,0.38488163001624853],[118,-23,70,0.3894491517887765],[118,-23,71,0.3941576998270278],[118,-23,72,0.39901848212672664],[118,-23,73,0.40403475929758453],[118,-23,74,0.4092025936143019],[118,-23,75,0.4145116079907044],[118,-23,76,0.41994575397563005],[118,-23,77,0.42548408784206354],[118,-23,78,0.4311015538211665],[118,-23,79,0.4367697735201961],[118,-22,64,0.36022391439634427],[118,-22,65,0.3643907712153813],[118,-22,66,0.36853896948426706],[118,-22,67,0.37270050858610415],[118,-22,68,0.37692270217169177],[118,-22,69,0.3812476568221372],[118,-22,70,0.38570694595506955],[118,-22,71,0.39032226308921625],[118,-22,72,0.3951061433313119],[118,-22,73,0.4000627031234231],[118,-22,74,0.4051883974047028],[118,-22,75,0.41047279329063896],[118,-22,76,0.4158993593277743],[118,-22,77,0.42144626934351476],[118,-22,78,0.42708721988000653],[118,-22,79,0.4327922601782048],[118,-21,64,0.3571846206185677],[118,-21,65,0.36119985288144124],[118,-21,66,0.3652051826961603],[118,-21,67,0.3692321063278937],[118,-21,68,0.3733290455613722],[118,-21,69,0.37754040636019015],[118,-21,70,0.38189970430261266],[118,-21,71,0.3864301652193944],[118,-21,72,0.39114543598016893],[118,-21,73,0.3960503203940277],[118,-21,74,0.4011415393614752],[118,-21,75,0.4064085143518321],[118,-21,76,0.41183417322309696],[118,-21,77,0.4173957773512448],[118,-21,78,0.4230657689941234],[118,-21,79,0.4288126377816511],[118,-20,64,0.3540782368947794],[118,-20,65,0.35794243462712627],[118,-20,66,0.36180705151522974],[118,-20,67,0.3657028216577924],[118,-20,68,0.36967882106931477],[118,-20,69,0.3737813292281196],[118,-20,70,0.37804547541255007],[118,-20,71,0.3824957753022546],[118,-20,72,0.38714681939859685],[118,-20,73,0.39200399408402686],[118,-20,74,0.3970642344486403],[118,-20,75,0.4023168079356178],[118,-20,76,0.4077441277868988],[118,-20,77,0.41332259520743364],[118,-20,78,0.41902346911202665],[118,-20,79,0.42481376227338696],[118,-19,64,0.3509387473743857],[118,-19,65,0.3546501378145445],[118,-19,66,0.35837355257474945],[118,-19,67,0.36213868718752834],[118,-19,68,0.3659947869195095],[118,-19,69,0.36998955868594996],[118,-19,70,0.3741594287020851],[118,-19,71,0.3785299977804323],[118,-19,72,0.38311668978251673],[118,-19,73,0.38792544136261004],[118,-19,74,0.3929534321373275],[118,-19,75,0.39818985432281445],[118,-19,76,0.4036167207954218],[118,-19,77,0.4092097104535265],[118,-19,78,0.4149390496890075],[118,-19,79,0.42077042871726533],[118,-18,64,0.3477969487322292],[118,-18,65,0.3513509272052373],[118,-18,66,0.35492942656178367],[118,-18,67,0.35856082342306667],[118,-18,68,0.36229403741075883],[118,-18,69,0.3661777563610546],[118,-18,70,0.3702494160703233],[118,-18,71,0.3745355512185797],[118,-18,72,0.37905238035738587],[118,-18,73,0.383806442442155],[118,-18,74,0.38879528406911934],[118,-18,75,0.3940081964663998],[118,-18,76,0.3994270011840834],[118,-18,77,0.40502688333144293],[118,-18,78,0.41077727112217893],[118,-18,79,0.4166427604113684],[118,-17,64,0.3446620161808938],[118,-17,65,0.3480514601190524],[118,-17,66,0.351478513137835],[118,-17,67,0.3549699656913639],[118,-17,68,0.35857391998223576],[118,-17,69,0.36233960015704436],[118,-17,70,0.3663051854771604],[118,-17,71,0.37049803010034954],[118,-17,72,0.37493515718930814],[118,-17,73,0.3796238167437244],[118,-17,74,0.38456210636697546],[118,-17,75,0.3897396540451295],[118,-17,76,0.39513836188871143],[118,-17,77,0.40073320966834797],[118,-17,78,0.4064931168659478],[118,-17,79,0.41238186186423414],[118,-16,64,0.3414888149065328],[118,-16,65,0.34470797828776334],[118,-16,66,0.34797881353339255],[118,-16,67,0.35132629679167493],[118,-16,68,0.35479720805749854],[118,-16,69,0.35844080770497105],[118,-16,70,0.36229568096477965],[118,-16,71,0.3663898046710552],[118,-16,72,0.37074092711347606],[118,-16,73,0.37535702538376214],[118,-16,74,0.3802368394977556],[118,-16,75,0.38537048241481564],[118,-16,76,0.3907401249228669],[118,-16,77,0.3963207542120217],[118,-16,78,0.40208100482450415],[118,-16,79,0.40798406054461306],[118,-15,64,0.33823012351323767],[118,-15,65,0.3412753897234398],[118,-15,66,0.3443877449219928],[118,-15,67,0.34759016194789893],[118,-15,68,0.3509275841680528],[118,-15,69,0.3544487526067903],[118,-15,70,0.35819224369905317],[118,-15,71,0.3621863675677382],[118,-15,72,0.366449415770495],[118,-15,73,0.3709900014103641],[118,-15,74,0.3758074909746339],[118,-15,75,0.38089252707816534],[118,-15,76,0.3862276411052408],[118,-15,77,0.3917879545698512],[118,-15,78,0.3975419678507813],[118,-15,79,0.40345243480610793],[118,-14,64,0.33485066694075566],[118,-14,65,0.3377202469201854],[118,-14,66,0.34067387326764714],[118,-14,67,0.3437323599736682],[118,-14,68,0.3469383013100704],[118,-14,69,0.35033932773688],[118,-14,70,0.353973537313511],[118,-14,71,0.3578692158783279],[118,-14,72,0.36204493981870467],[118,-14,73,0.3665097866969223],[118,-14,74,0.37126365318767324],[118,-14,75,0.37629767956437193],[118,-14,76,0.38159477975868644],[118,-14,77,0.387130275813059],[118,-14,78,0.39287263535232514],[118,-14,79,0.3987843105193232],[118,-13,64,0.3313250666644695],[118,-13,65,0.3340187255411803],[118,-13,66,0.3368149509079554],[118,-13,67,0.33973227126523475],[118,-13,68,0.3428104331825233],[118,-13,69,0.34609534960523186],[118,-13,70,0.3496241374690407],[118,-13,71,0.3534246553640441],[118,-13,72,0.357515452961176],[118,-13,73,0.3619058439543245],[118,-13,74,0.3665961020697483],[118,-13,75,0.3715777794444259],[118,-13,76,0.37683414643064633],[118,-13,77,0.38234075164809117],[118,-13,78,0.3880661008799928],[118,-13,79,0.39397245319839597],[118,-12,64,0.3276359641462669],[118,-12,65,0.33015477390403664],[118,-12,66,0.33279612068276937],[118,-12,67,0.3355761461441373],[118,-12,68,0.3385312763488896],[118,-12,69,0.3417051036547392],[118,-12,70,0.34513324859373157],[118,-12,71,0.34884271526629124],[118,-12,72,0.3528516831546895],[118,-12,73,0.35716943785071925],[118,-12,74,0.36179644034662545],[118,-12,75,0.36672453425679685],[118,-12,76,0.3719372900617563],[118,-12,77,0.37741048519842063],[118,-12,78,0.38311271856486145],[118,-12,79,0.3890061577658468],[118,-11,64,0.32377231792636463],[118,-11,65,0.3261184335616943],[118,-11,66,0.32860828683377785],[118,-11,67,0.3312555537275197],[118,-11,68,0.3340929044746929],[118,-11,69,0.33716103063674413],[118,-11,70,0.34049354795387976],[118,-11,71,0.3441161738697413],[118,-11,72,0.34804636120692173],[118,-11,73,0.3522930854942022],[118,-11,74,0.3568567856914656],[118,-11,75,0.361729457745802],[118,-11,76,0.3668949001053787],[118,-11,77,0.3723291100192834],[118,-11,78,0.37800082916545197],[118,-11,79,0.38387223687715605],[118,-10,64,0.3197278753967898],[118,-10,65,0.3219043319200519],[118,-10,66,0.32424665352899684],[118,-10,67,0.3267659921081818],[118,-10,68,0.32949087536340027],[118,-10,69,0.33245855473519575],[118,-10,70,0.3357001576788596],[118,-10,71,0.3392396954001571],[118,-10,72,0.3430935413000623],[118,-10,73,0.3472700767815068],[118,-10,74,0.3517695042589534],[118,-10,75,0.3565838268696669],[118,-10,76,0.3616969940490855],[118,-10,77,0.3670852118049951],[118,-10,78,0.37271741621019727],[118,-10,79,0.3785559083334809],[118,-9,64,0.31549982090735257],[118,-9,65,0.31751034843823606],[118,-9,66,0.3197094324570255],[118,-9,67,0.3221056611947181],[118,-9,68,0.3247230920496788],[118,-9,69,0.3275950546047442],[118,-9,70,0.33074974580611993],[118,-9,71,0.3342090792177516],[118,-9,72,0.33798801429046504],[118,-9,73,0.34209406534733827],[118,-9,74,0.3465269902178024],[118,-9,75,0.3512786580836572],[118,-9,76,0.3563330957363495],[118,-9,77,0.3616667110899723],[118,-9,78,0.36724869245265973],[118,-9,79,0.3730415817330153],[118,-8,64,0.3110876024219152],[118,-8,65,0.31293645652030394],[118,-8,66,0.3149967214866544],[118,-8,67,0.3172744000922142],[118,-8,68,0.3197888197097205],[118,-8,69,0.32256897895017317],[118,-8,70,0.3256397578266138],[118,-8,71,0.3290206226235832],[118,-8,72,0.3327248149242854],[118,-8,73,0.33675873106447424],[118,-8,74,0.34112149203325426],[118,-8,75,0.3458047034470991],[118,-8,76,0.350792404834981],[118,-8,77,0.35606120709322137],[118,-8,78,0.361580616602875],[118,-8,79,0.36731354415293804],[118,-7,64,0.30649193946089937],[118,-7,65,0.30818374372260804],[118,-7,66,0.3101095568924092],[118,-7,67,0.3122727913904687],[118,-7,68,0.31468786060798704],[118,-7,69,0.3173791086987012],[118,-7,70,0.32036778059079274],[118,-7,71,0.32367059892329303],[118,-7,72,0.32729882437441327],[118,-7,73,0.33125751524073277],[118,-7,74,0.33554498637051555],[118,-7,75,0.34015246713932706],[118,-7,76,0.34506395774652626],[118,-7,77,0.35025628271089265],[118,-7,78,0.3556993400571268],[118,-7,79,0.361356544315183],[118,-6,64,0.30171401553093785],[118,-6,65,0.303253613364747],[118,-6,66,0.30504914210172057],[118,-6,67,0.30710143516557237],[118,-6,68,0.30941988971450457],[118,-6,69,0.3120239681993138],[118,-6,70,0.31493104077765555],[118,-6,71,0.3181548526865591],[118,-6,72,0.32170446974203337],[118,-6,73,0.3255834298335521],[118,-6,74,0.3297891005945954],[118,-6,75,0.33431224299800905],[118,-6,76,0.33913678019803173],[118,-6,77,0.34423977052333815],[118,-6,78,0.349591583121977],[118,-6,79,0.3551562743726811],[118,-5,64,0.2967548586515468],[118,-5,65,0.29814717104126315],[118,-5,66,0.2998162563220411],[118,-5,67,0.30176039588951675],[118,-5,68,0.3039839539946065],[118,-5,69,0.3065013882225896],[118,-5,70,0.30932604043280143],[118,-5,71,0.3124685144009826],[118,-5,72,0.31593552237634415],[118,-5,73,0.3197289421563295],[118,-5,74,0.3238450849324748],[118,-5,75,0.3282741737153194],[118,-5,76,0.33300003170640213],[118,-5,77,0.33799997955490263],[118,-5,78,0.3432449400202232],[118,-5,79,0.3486997481628032],[118,-4,64,0.2916149139357462],[118,-4,65,0.29286479988012837],[118,-4,66,0.2944108467505651],[118,-4,67,0.29624882577563333],[118,-4,68,0.2983781386882625],[118,-4,69,0.300808223825193],[118,-4,70,0.3035483323410205],[118,-4,71,0.3066058369411457],[118,-4,72,0.3099849970442037],[118,-4,73,0.31368593667922356],[118,-4,74,0.3177038354369229],[118,-4,75,0.32202833234068257],[118,-4,76,0.32664314205438794],[118,-4,77,0.33152588240541514],[118,-4,78,0.33664811177638676],[118,-4,79,0.3419755745119995],[118,-3,64,0.2862938124618831],[118,-3,65,0.28740592867784454],[118,-3,66,0.2888318083506187],[118,-3,67,0.2905647683605935],[118,-3,68,0.2925994041545847],[118,-3,69,0.2949402303813303],[118,-3,70,0.2975924382110537],[118,-3,71,0.3005601564541007],[118,-3,72,0.3038451541250746],[118,-3,73,0.3074457556286994],[118,-3,74,0.3113559689460718],[118,-3,75,0.31556482674247416],[118,-3,76,0.32005593986589376],[118,-3,77,0.324807262262745],[118,-3,78,0.32979106590882973],[118,-3,79,0.33497412394235704],[118,-2,64,0.280790340885443],[118,-2,65,0.28176899725771043],[118,-2,66,0.28307695539546834],[118,-2,67,0.2847051463348608],[118,-2,68,0.2866435970574613],[118,-2,69,0.28889210126803905],[118,-2,70,0.2914519128141811],[118,-2,71,0.294323980401463],[118,-2,72,0.2975076071160251],[118,-2,73,0.3009993201657733],[118,-2,74,0.30479195127083314],[118,-2,75,0.3088739276776341],[118,-2,76,0.31322877332011745],[118,-2,77,0.317834819209899],[118,-2,78,0.3226651217095844],[118,-2,79,0.3276875869327748],[118,-1,64,0.2751026163737168],[118,-1,65,0.27595162353881947],[118,-1,66,0.2771431891236337],[118,-1,67,0.27866593777432885],[118,-1,68,0.28050563980213494],[118,-1,69,0.28265767081402704],[118,-1,70,0.2851195573263852],[118,-1,71,0.28788920558807213],[118,-1,72,0.29096353779968365],[118,-1,73,0.29433733396612605],[118,-1,74,0.2980022798574104],[118,-1,75,0.3019462211022932],[118,-1,76,0.3061526229943573],[118,-1,77,0.31060023515410745],[118,-1,78,0.3152629597683414],[118,-1,79,0.3201099217223339],[118,0,64,0.26922847150201135],[118,0,65,0.2699509768679659],[118,0,66,0.2710268659192969],[118,0,67,0.27244254499618176],[118,0,68,0.2741799021999937],[118,0,69,0.2762302861833392],[118,0,70,0.278587785176859],[118,0,71,0.2812474690492827],[118,0,72,0.28420402145691726],[118,0,73,0.2874505710386898],[118,0,74,0.2909777221679463],[118,0,75,0.29477278533243856],[118,0,76,0.29881920677920903],[118,0,77,0.30309619663505627],[118,0,78,0.30757855430055836],[118,0,79,0.31223668951893196],[118,1,64,0.263166053623027],[118,1,65,0.2637643612280942],[118,1,66,0.2647243689183586],[118,1,67,0.26603035839469913],[118,1,68,0.26766075731632694],[118,1,69,0.2696033498769755],[118,1,70,0.27184914193633364],[118,1,71,0.2743906333003867],[118,1,72,0.2772204637184988],[118,1,73,0.28033024959127945],[118,1,74,0.28370961192892424],[118,1,75,0.2873453956744909],[118,1,76,0.29122108008617403],[118,1,77,0.29531637946055117],[118,1,78,0.2996070330794892],[118,1,79,0.3040647828794376],[118,2,64,0.25691464219557936],[118,2,65,0.25739001004988915],[118,2,66,0.2582328835676975],[118,2,67,0.25942551508483],[118,2,68,0.26094332104346046],[118,2,69,0.26277103246377487],[118,2,70,0.26489697923662026],[118,2,71,0.2673114066004233],[118,2,72,0.2700051506284714],[118,2,73,0.2729684946809896],[118,2,74,0.27619020738302363],[118,2,75,0.27965676228188463],[118,2,76,0.28335173893518406],[118,2,77,0.2872554047856476],[118,2,78,0.2913444767962438],[118,2,79,0.295592061451016],[118,3,64,0.25047569010853915],[118,3,65,0.250828108031534],[118,3,66,0.2515513990396477],[118,3,67,0.25262587807142206],[118,3,68,0.25402440251249475],[118,3,69,0.25572918176025006],[118,3,70,0.25772630583547695],[118,3,71,0.2600041160716674],[118,3,72,0.2625519223512294],[118,3,73,0.2653588905679353],[118,3,74,0.2684131008922442],[118,3,75,0.27170077702940276],[118,3,76,0.27520568627769293],[118,3,77,0.27890870981904564],[118,3,78,0.2827875823105994],[118,3,79,0.2868167994957344],[118,4,64,0.24385409456038679],[118,4,65,0.24408203658307717],[118,4,66,0.2446819253258531],[118,4,67,0.2456322210256206],[118,4,68,0.24690364761006042],[118,4,69,0.2484764098321158],[118,4,70,0.25033479825869936],[118,4,71,0.2524656191665486],[118,4,72,0.2548569611224484],[118,4,73,0.25749712056309565],[118,4,74,0.2603736869637572],[118,4,75,0.26347278782009753],[118,4,76,0.2667784933066247],[118,4,77,0.2702723801211079],[118,4,78,0.273933253681003],[118,4,79,0.27773702750722107],[118,5,64,0.23705970008968086],[118,5,65,0.23715984560441997],[118,5,66,0.23763092896310495],[118,5,67,0.2384496219582064],[118,5,68,0.23958487925066313],[118,5,69,0.24101536177743918],[118,5,70,0.2427239751753723],[118,5,71,0.2446963576717982],[118,5,72,0.24691969746907574],[118,5,73,0.24938169800796472],[118,5,74,0.25206969171241406],[118,5,75,0.2549699024755989],[118,5,76,0.25806685680777486],[118,5,77,0.26134294323350166],[118,5,78,0.26477811920278216],[118,5,79,0.2683497644692686],[118,6,64,0.2301090383765564],[118,6,65,0.23007595771637213],[118,6,66,0.2304109945656806],[118,6,67,0.2310890735937484],[118,6,68,0.23207764242736514],[118,6,69,0.2333541741135746],[118,6,70,0.23490054269683472],[118,6,71,0.23670156036705628],[118,6,72,0.23874383929340326],[118,6,73,0.2410147910083733],[118,6,74,0.2435017639649103],[118,6,75,0.2461913195670696],[118,6,76,0.24906864665556383],[118,6,77,0.2521171141159719],[118,6,78,0.2553179609730875],[118,6,79,0.25865012304119256],[118,7,64,0.22302795345852097],[118,7,65,0.22285440098862605],[118,7,66,0.22304459284121583],[118,7,67,0.22357175505155727],[118,7,68,0.22440198738713776],[118,7,69,0.2255117993985829],[118,7,70,0.22688229960380893],[118,7,71,0.22849776690309595],[118,7,72,0.230344543291243],[118,7,73,0.23241005517660057],[118,7,74,0.23468196396252003],[118,7,75,0.23714744624199596],[118,7,76,0.23979260365409755],[118,7,77,0.24260200215364042],[118,7,78,0.24555834015689015],[118,7,79,0.24864224474708346],[118,8,64,0.21584959232576603],[118,8,65,0.21552931474257803],[118,8,66,0.21556687178944908],[118,8,67,0.21593402408172133],[118,8,68,0.2165957545701276],[118,8,69,0.21752780227465535],[118,8,70,0.21871072891416074],[118,8,71,0.2201285150755175],[118,8,72,0.2217674734844459],[118,8,73,0.22361528308832837],[118,8,74,0.22566014464835313],[118,8,75,0.22789005824852343],[118,8,76,0.23029222284138126],[118,8,77,0.23285255766703924],[118,8,78,0.23555534510661363],[118,8,79,0.2383829942643808],[118,9,64,0.20860136328315648],[118,9,65,0.20812987276162412],[118,9,66,0.2080087817984141],[118,9,67,0.2082088126538235],[118,9,68,0.20869416877254346],[118,9,69,0.2094400158099993],[118,9,70,0.21042655836187688],[118,9,71,0.21163765958812275],[118,9,72,0.2130597708917902],[118,9,73,0.21468097530023006],[118,9,74,0.2164901452905227],[118,9,75,0.2184762155248071],[118,9,76,0.2206275706865911],[118,9,77,0.22293154833838613],[118,9,78,0.22537405645732078],[118,9,79,0.22793930504955218],[118,10,64,0.2013041663491322],[118,10,65,0.2006786107061231],[118,10,66,0.2003945751704459],[118,10,67,0.20042231068038657],[118,10,68,0.2007256554677027],[118,10,69,0.20127939984220372],[118,10,70,0.20206355229814085],[118,10,71,0.20306198839581155],[118,10,72,0.20426139831483756],[118,10,73,0.20565034125274992],[118,10,74,0.20721840745244252],[118,10,75,0.20895548837907424],[118,10,76,0.21085115530524465],[118,10,77,0.21289414630476328],[118,10,78,0.21507196140320203],[118,10,79,0.2173705653882907],[118,11,64,0.1939750097890361],[118,11,65,0.19319405019257269],[118,11,66,0.19274441212270801],[118,11,67,0.19259653071491264],[118,11,68,0.1927143407930094],[118,11,69,0.19307245047433633],[118,11,70,0.1936508032324176],[118,11,71,0.19443336791239385],[118,11,72,0.19540711069294983],[118,11,73,0.19656106687363828],[118,11,74,0.19788551330505016],[118,11,75,0.19937124203031703],[118,11,76,0.2010089354582436],[118,11,77,0.20278864314288936],[118,11,78,0.20469936000463848],[118,11,79,0.20672870559418968],[118,12,64,0.1866299053825582],[118,12,65,0.18569359722371892],[118,12,66,0.18507723455741198],[118,12,67,0.18475213121710884],[118,12,68,0.18468279813045396],[118,12,69,0.1848438414817049],[118,12,70,0.18521523802676312],[118,12,71,0.18578108323739198],[118,12,72,0.18652859872019623],[118,12,73,0.18744723186605466],[118,12,74,0.18852784856958457],[118,12,75,0.1897620196250626],[118,12,76,0.191141401172448],[118,12,77,0.19265720933652838],[118,12,78,0.19429978897661299],[118,12,79,0.196058276243932],[118,13,64,0.17928704787522007],[118,13,65,0.17819672020527016],[118,13,66,0.17741391259404957],[118,13,67,0.1769115030774108],[118,13,68,0.176655045595003],[118,13,69,0.1766193014785566],[118,13,70,0.17678434203660326],[118,13,71,0.17713437604967025],[118,13,72,0.1776568076431142],[118,13,73,0.17834137779736065],[118,13,74,0.17917939034255548],[118,13,75,0.18016302307020868],[118,13,76,0.18128472437994975],[118,13,77,0.18253669566664116],[118,13,78,0.18391045944456336],[118,13,79,0.1853965130012812],[118,14,64,0.17197028493495162],[118,14,65,0.17072841385308354],[118,14,66,0.16978067009773565],[118,14,67,0.16910212549772397],[118,14,68,0.1686598003154459],[118,14,69,0.16842873243953374],[118,14,70,0.16838910642539034],[118,14,71,0.16852518495180005],[118,14,72,0.1688244355069236],[118,14,73,0.16927673067193122],[118,14,74,0.16987362284034535],[118,14,75,0.1706076940195483],[118,14,76,0.17147198116880263],[118,14,77,0.1724594773370332],[118,14,78,0.17356270867606513],[118,14,79,0.17477338722094501],[118,15,64,0.16471529658069656],[118,15,65,0.16332520337477663],[118,15,66,0.16221480061993876],[118,15,67,0.16136188554470787],[118,15,68,0.160735303236453],[118,15,69,0.16031045469247884],[118,15,70,0.1600676259681204],[118,15,71,0.15999104948422543],[118,15,72,0.16006811945449592],[118,15,73,0.16028866906821054],[118,15,74,0.16064431024160203],[118,15,75,0.16112783658732854],[118,15,76,0.16173269008667168],[118,15,77,0.16245249178460103],[118,15,78,0.16328063666601955],[118,15,79,0.16420995271203706],[118,16,64,0.15756616206061866],[118,16,65,0.15603124641783805],[118,16,66,0.15476015209507382],[118,16,67,0.15373382187261972],[118,16,68,0.15292323927738416],[118,16,69,0.15230427024217777],[118,16,70,0.15185732789370654],[118,16,71,0.15156658520728059],[118,16,72,0.15141929567920326],[118,16,73,0.15140516226365403],[118,16,74,0.1515157553505403],[118,16,75,0.15174398042934953],[118,16,76,0.15208359595104498],[118,16,77,0.15252878176659523],[118,16,78,0.15307375838891957],[118,16,79,0.15371245719429322],[118,17,64,0.1505462121947443],[118,17,65,0.14886974761092406],[118,17,66,0.1474395167636061],[118,17,67,0.14623991831546082],[118,17,68,0.1452443479848172],[118,17,69,0.14442926425167263],[118,17,70,0.14377528050662908],[118,17,71,0.1432665450802765],[118,17,72,0.14289017943881202],[118,17,73,0.14263574980769111],[118,17,74,0.1424947729546793],[118,17,75,0.14246025676845428],[118,17,76,0.14252627617151042],[118,17,77,0.1426875848073358],[118,17,78,0.14293926284356437],[118,17,79,0.14327640113414336],[118,18,64,0.1436556382375762],[118,18,65,0.1418407334843311],[118,18,66,0.14025265121227654],[118,18,67,0.13887944899724042],[118,18,68,0.13769716577715302],[118,18,69,0.1366830014176783],[118,18,70,0.1358178817745933],[118,18,71,0.13508601698689193],[118,18,72,0.13447446567689117],[118,18,73,0.1339727167153926],[118,18,74,0.13357228923262263],[118,18,75,0.13326635149971788],[118,18,76,0.13304935924664815],[118,18,77,0.13291671392121862],[118,18,78,0.13286444133176745],[118,18,79,0.13288889105216814],[118,19,64,0.13687509019729296],[118,19,65,0.13492464102112595],[118,19,66,0.1331798265484208],[118,19,67,0.13163246280836058],[118,19,68,0.13026141787822],[118,19,69,0.12904479805665858],[118,19,70,0.12796398451169852],[118,19,71,0.1270033759119977],[118,19,72,0.12615008369078484],[118,19,73,0.1253936283148523],[118,19,74,0.12472563718515106],[118,19,75,0.12413954478104312],[118,19,76,0.12363029564201959],[118,19,77,0.12319405075899774],[118,19,78,0.1228278979234347],[118,19,79,0.12252956655492721],[118,20,64,0.1257959677810123],[118,20,65,0.12458912818424346],[118,20,66,0.12345977228190105],[118,20,67,0.12241527978174985],[118,20,68,0.12147500626104595],[118,20,69,0.12065927462988728],[118,20,70,0.11998399645044677],[118,20,71,0.11898313551414529],[118,20,72,0.11788186413090623],[118,20,73,0.11686379183422718],[118,20,74,0.11592079450882589],[118,20,75,0.11504670984612676],[118,20,76,0.11423710549855688],[118,20,77,0.1134890337484652],[118,20,78,0.11280077334831357],[118,20,79,0.1121715591986504],[118,21,64,0.11373788053224641],[118,21,65,0.11232145126383114],[118,21,66,0.11100384250591748],[118,21,67,0.10978897069193122],[118,21,68,0.10869337870740534],[118,21,69,0.1077364103141619],[118,21,70,0.10693349592040355],[118,21,71,0.10629611891949245],[118,21,72,0.10583193229232506],[118,21,73,0.10554490695314514],[118,21,74,0.10543551132490539],[118,21,75,0.10550092156023747],[118,21,76,0.10483010401990364],[118,21,77,0.1037641423864137],[118,21,78,0.10274798375976464],[118,21,79,0.10178248489411076],[118,22,64,0.10145791138630239],[118,22,65,0.09982736599549072],[118,22,66,0.09831785783531777],[118,22,67,0.09693001512745485],[118,22,68,0.09567752607782332],[118,22,69,0.09457857534070224],[118,22,70,0.09364792622123225],[118,22,71,0.09289670731821906],[118,22,72,0.09233239756632866],[118,22,73,0.09195885973158917],[118,22,74,0.09177642190421056],[118,22,75,0.09178200641982341],[118,22,76,0.0919693055321979],[118,22,77,0.09232900305876324],[118,22,78,0.09262947591672241],[118,22,79,0.09132547168051267],[118,23,64,0.08902668635596578],[118,23,65,0.08717790573295083],[118,23,66,0.08547286761092003],[118,23,67,0.08390916420507062],[118,23,68,0.08249763609043419],[118,23,69,0.0812551349471734],[118,23,70,0.08019557047993697],[118,23,71,0.07932952721739131],[118,23,72,0.0786641235938154],[118,23,73,0.0782029355830029],[118,23,74,0.0779459844863976],[118,23,75,0.07788978832285455],[118,23,76,0.07802747611870609],[118,23,77,0.07834896425565448],[118,23,78,0.07884119390318145],[118,23,79,0.07948842844133869],[118,24,64,0.0777552974340503],[118,24,65,0.074467544572907],[118,24,66,0.072542901241472],[118,24,67,0.07080012692692285],[118,24,68,0.0692267902032141],[118,24,69,0.06783824728328022],[118,24,70,0.06664737348601761],[118,24,71,0.06566402316996157],[118,24,72,0.06489477050807559],[118,24,73,0.06434273000665243],[118,24,74,0.06400745642782202],[118,24,75,0.06388492358101537],[118,24,76,0.06396758126135892],[118,24,77,0.0642444894343828],[118,24,78,0.06470152859968793],[118,24,79,0.06532168511130355],[118,25,64,0.06694719307110839],[118,25,65,0.06356645680648496],[118,25,66,0.06020402258272302],[118,25,67,0.05767682660646376],[118,25,68,0.05593826973246543],[118,25,69,0.05440023637756616],[118,25,70,0.05307439807017921],[118,25,71,0.05196970210792991],[118,25,72,0.05109200349736249],[118,25,73,0.05044379065016734],[118,25,74,0.05002400455228347],[118,25,75,0.04982795089123551],[118,25,76,0.049847304403760756],[118,25,77,0.050070204492424206],[118,25,78,0.05048144095987568],[118,25,79,0.051062728522901064],[118,26,64,0.05631483853845715],[118,26,65,0.05284343963507307],[118,26,66,0.04941697283948123],[118,26,67,0.04602791266552126],[118,26,68,0.04270300082055883],[118,26,69,0.04101109438042867],[118,26,70,0.03954539934027599],[118,26,71,0.0383137934733829],[118,26,72,0.03732125173999289],[118,26,73,0.03656948678279716],[118,26,74,0.036056695541961115],[118,26,75,0.035777411497389104],[118,26,76,0.03572246179006684],[118,26,77,0.03587902822950036],[118,26,78,0.03623081096410661],[118,26,79,0.036758293376374235],[118,27,64,0.04593413504509884],[118,27,65,0.042375193176700576],[118,27,66,0.03888655942409856],[118,27,67,0.035459228522619006],[118,27,68,0.03209626355990504],[118,27,69,0.028811107661331173],[118,27,70,0.02612451849901209],[118,27,71,0.024759015350072217],[118,27,72,0.02364355800303304],[118,27,73,0.022778952501840633],[118,27,74,0.02216254175270708],[118,27,75,0.02178800534711037],[118,27,76,0.021645275302466183],[118,27,77,0.02172056669602589],[118,27,78,0.021996521910984345],[118,27,79,0.02245246697373718],[118,28,64,0.03587441003445534],[118,28,65,0.03223185778972927],[118,28,66,0.02868335125161555],[118,28,67,0.025218883913200527],[118,28,68,0.021839316907599975],[118,28,69,0.018556061418991524],[118,28,70,0.015380307579577868],[118,28,71,0.012321998761723633],[118,28,72,0.0101135201477985],[118,28,73,0.009125104494271313],[118,28,74,0.008392602827244893],[118,28,75,0.007908783147558373],[118,28,76,0.007662660454901803],[118,28,77,0.007639501433365205],[118,28,78,0.007820951940579406],[118,28,79,0.008185285715615252],[118,29,64,0.026196328376088165],[118,29,65,0.02247490787225467],[118,29,66,0.0188692951609923],[118,29,67,0.015368970995298468],[118,29,68,0.011972838893522353],[118,29,69,0.008690227863143005],[118,29,70,0.005530527761982481],[118,29,71,0.0025021054821595355],[118,29,72,-3.8841046729795343E-4],[118,29,73,-0.0031367114045149722],[118,29,74,-0.005209856304177089],[118,29,75,-0.005818625588158075],[118,29,76,-0.0061854708815847394],[118,29,77,-0.006326029346024599],[118,29,78,-0.00625956348249341],[118,29,79,-0.006008719260723949],[118,30,64,0.016949977857757197],[118,30,65,0.013155216607242991],[118,30,66,0.009495770440499826],[118,30,67,0.005961092698491814],[118,30,68,0.0025483956871893802],[118,30,69,-7.350942256487379E-4],[118,30,70,-0.003881846054753906],[118,30,71,-0.006885143868795487],[118,30,72,-0.009739844046076567],[118,30,73,-0.012442993256155215],[118,30,74,-0.014994307193239062],[118,30,75,-0.017396510441659116],[118,30,76,-0.019655538196269993],[118,30,77,-0.02014603470575985],[118,30,78,-0.020216276256426004],[118,30,79,-0.020102005506714284],[118,31,64,0.008173133158675386],[118,31,65,0.004311295734898168],[118,31,66,6.018130546370636E-4],[118,31,67,-0.0029654202702900662],[118,31,68,-0.006394602885056866],[118,31,69,-0.009680602155581988],[118,31,70,-0.012817775218765216],[118,31,71,-0.015801102733066657],[118,31,72,-0.01862697380809994],[118,31,73,-0.02129382832704798],[118,31,74,-0.023802656645573447],[118,31,75,-0.026157357015170274],[118,31,76,-0.028364951430939752],[118,31,77,-0.030435660940837373],[118,31,78,-0.03238284177270847],[118,31,79,-0.03406927102037587],[118,32,64,-1.1029720119802751E-4],[118,32,65,-0.004032285242351009],[118,32,66,-0.007787486160293601],[118,32,67,-0.01138512573808213],[118,32,68,-0.014830528958398823],[118,32,69,-0.018120620483538033],[118,32,70,-0.02125164557265002],[118,32,71,-0.024220297350233334],[118,32,72,-0.02702451594253139],[118,32,73,-0.029664143574031156],[118,32,74,-0.0321414355696165],[118,32,75,-0.03446142757701945],[118,32,76,-0.03663215968087457],[118,32,77,-0.038664758421175935],[118,32,78,-0.040573378052362066],[118,32,79,-0.04237500268172791],[118,33,64,-0.00789163612788342],[118,33,65,-0.011866295693461544],[118,33,66,-0.015662404733698523],[118,33,67,-0.019287915275528825],[118,33,68,-0.02274900055289305],[118,33,69,-0.026044581996997745],[118,33,70,-0.02917276491229079],[118,33,71,-0.03213194073074833],[118,33,72,-0.034921588196319395],[118,33,73,-0.03754293083658314],[118,33,74,-0.03999945063294238],[118,33,75,-0.042297258169929255],[118,33,76,-0.04444531990097218],[118,33,77,-0.046455543509509395],[118,33,78,-0.04834272266777284],[118,33,79,-0.050124342797984105],[118,34,64,-0.01517861032066369],[118,34,65,-0.019198051283839876],[118,34,66,-0.023029828306351627],[118,34,67,-0.02668028355362283],[118,34,68,-0.03015617927798592],[118,34,69,-0.033458354280399574],[118,34,70,-0.03658672007266339],[118,34,71,-0.03954132251052159],[118,34,72,-0.042323134883384024],[118,34,73,-0.04493470915812896],[118,34,74,-0.04738068525723043],[118,34,75,-0.0496681586167607],[118,34,76,-0.05180690662273032],[118,34,77,-0.05380947486200465],[118,34,78,-0.05569112444383573],[118,34,79,-0.05746964194700235],[118,35,64,-0.02199632432906911],[118,35,65,-0.0260524268381709],[118,35,66,-0.029914301643837373],[118,35,67,-0.0335864167744667],[118,35,68,-0.03707589696869898],[118,35,69,-0.040385407301813774],[118,35,70,-0.04351658942682706],[118,35,71,-0.04647107088922629],[118,35,72,-0.04925124281098094],[118,35,73,-0.0518608988295813],[118,35,74,-0.05430573514277977],[118,35,75,-0.056593711867815415],[118,35,76,-0.05873527626977513],[118,35,77,-0.06074344874473198],[118,35,78,-0.06149690774230091],[118,35,79,-0.05681768260909495],[118,36,64,-0.028388030608890946],[118,36,65,-0.032472668995872214],[118,36,66,-0.036358885376424815],[118,36,67,-0.04004909479466541],[118,36,68,-0.04355060609073237],[118,36,69,-0.046867817140198324],[118,36,70,-0.050004006269222995],[118,36,71,-0.052962282543222244],[118,36,72,-0.05574634450170238],[118,36,73,-0.05836110408574987],[118,36,74,-0.060813175578056065],[118,36,75,-0.06161058499043245],[118,36,76,-0.05668116629177003],[118,36,77,-0.05177375317509033],[118,36,78,-0.04690684614944365],[118,36,79,-0.042100713749350545],[118,37,64,-0.03441568962761236],[118,37,65,-0.03852100274313581],[118,37,66,-0.042425812642960525],[118,37,67,-0.046130401270721794],[118,37,68,-0.049642148456424],[118,37,69,-0.05296710067446079],[118,37,70,-0.05611006825412406],[118,37,71,-0.05907551610520566],[118,37,72,-0.06186830479517381],[118,37,73,-0.057378546684008686],[118,37,74,-0.052303529859625636],[118,37,75,-0.04722588177895356],[118,37,76,-0.042160781842625665],[118,37,77,-0.03712516956213832],[118,37,78,-0.03213771599884273],[118,37,79,-0.027218668286679765],[118,38,64,-0.04015807693046177],[118,38,65,-0.04427672124282996],[118,38,66,-0.04819457645967923],[118,38,67,-0.051909817327060265],[118,38,68,-0.05542986372052091],[118,38,69,-0.05876235172124603],[118,38,70,-0.05867534195755682],[118,38,71,-0.05352932031290423],[118,38,72,-0.04834875103842151],[118,38,73,-0.04314564438664037],[118,38,74,-0.037932860608577715],[118,38,75,-0.03272446939330544],[118,38,76,-0.02753598317361661],[118,38,77,-0.022384464984853414],[118,38,78,-0.01728851185273626],[118,38,79,-0.012268114955301238],[118,39,64,-0.04566223244964656],[118,39,65,-0.04978625317409787],[118,39,66,-0.05371080314769408],[118,39,67,-0.057431974354715525],[118,39,68,-0.05523796976729383],[118,39,69,-0.05004109650804725],[118,39,70,-0.04478969976486294],[118,39,71,-0.0394969829358002],[118,39,72,-0.03417564243645724],[118,39,73,-0.028838482362174345],[118,39,74,-0.023498906119496427],[118,39,75,-0.018171285021465023],[118,39,76,-0.01287120415193591],[118,39,77,-0.007615586101107419],[118,39,78,-0.0024226934570559765],[118,39,79,0.0026879887981823385],[118,40,64,-0.050938297924566354],[118,40,65,-0.05505805472698597],[118,40,66,-0.052056804915304206],[118,40,67,-0.04685747857486964],[118,40,68,-0.04157429727690567],[118,40,69,-0.036225630991061936],[118,40,70,-0.030827519749841242],[118,40,71,-0.02539443613263362],[118,40,72,-0.019940030832212907],[118,40,73,-0.014477758760578817],[118,40,74,-0.009021385287449005],[118,40,75,-0.003585372520630167],[118,40,76,0.0018148541577849286],[118,40,77,0.007162758793804042],[118,40,78,0.01244066601902227],[118,40,79,0.01762984962001162],[118,41,64,-0.04907879019057655],[118,41,65,-0.04391531369268894],[118,41,66,-0.038655047408343336],[118,41,67,-0.0332980127597629],[118,41,68,-0.02785991593333706],[118,41,69,-0.022361166125822438],[118,41,70,-0.016819485803338974],[118,41,71,-0.011250639027517075],[118,41,72,-0.00566919369574001],[118,41,73,-8.916731558551152E-5],[118,41,74,0.005475444187036237],[118,41,75,0.011010254816052008],[118,41,76,0.016500193899867507],[118,41,77,0.021929328135281527],[118,41,78,0.02728079960918261],[118,41,79,0.03253687886968582],[118,42,64,-0.03599890810200682],[118,42,65,-0.030666853627736808],[118,42,66,-0.02524370301852326],[118,42,67,-0.019727176249991252],[118,42,68,-0.01413333278617662],[118,42,69,-0.008484820968461728],[118,42,70,-0.0028011791277594887],[118,42,71,0.0029004681654249153],[118,42,72,0.008604624306045883],[118,42,73,0.014296748458804508],[118,42,74,0.01996269756894394],[118,42,75,0.025588282881127477],[118,42,76,0.031158940972355702],[118,42,77,0.03665951902107358],[118,42,78,0.04207417376316694],[118,42,79,0.04738638333074797],[118,43,64,-0.022957142515415523],[118,43,65,-0.01745271106469562],[118,43,66,-0.011863670710626013],[118,43,67,-0.006185293677297567],[118,43,68,-4.3406043461482807E-4],[118,43,69,0.0053649245150197995],[118,43,70,0.011190147284898613],[118,43,71,0.017023020211298555],[118,43,72,0.02284706748855926],[118,43,73,0.02864722154670138],[118,43,74,0.034409230895969256],[118,43,75,0.040119179861545964],[118,43,76,0.04576312033999401],[118,43,77,0.05132681542839303],[118,43,78,0.056795594508134],[118,43,79,0.06215431911215907],[118,44,64,-0.009990269033730893],[118,44,65,-0.004310050505300236],[118,44,66,0.0014477605372428303],[118,44,67,0.007290455925655807],[118,44,68,0.01320105422127745],[118,44,69,0.019151776868351712],[118,44,70,0.025118962459773762],[118,44,71,0.031082435576743665],[118,44,72,0.037024660877633606],[118,44,73,0.04293000495947474],[118,44,74,0.048784106840820435],[118,44,75,0.054573357618317615],[118,44,76,0.0602844895616484],[118,44,77,0.06590427463420306],[118,44,78,0.07141933216028243],[118,44,79,0.07681604510803944],[118,45,64,0.0028736067973226843],[118,45,65,0.008732140902164051],[118,45,66,0.014660970331859225],[118,45,67,0.020670015480799685],[118,45,68,0.02674169936633316],[118,45,69,0.032845362609097956],[118,45,70,0.03895502318792989],[118,45,71,0.04504878121185012],[118,45,72,0.05110794059334301],[118,45,73,0.05711623527766295],[118,45,74,0.06305916100525262],[118,45,75,0.06892341329321383],[118,45,76,0.07469643203865313],[118,45,77,0.0803660528731851],[118,45,78,0.08592026513420023],[118,45,79,0.0913470760688641],[118,46,64,0.015619427528270731],[118,46,65,0.02165739540247015],[118,46,66,0.02775828478004345],[118,46,67,0.03393463798489936],[118,46,68,0.04016816945429679],[118,46,69,0.046425151263797634],[118,46,70,0.05267711505694676],[118,46,71,0.058900296495096316],[118,46,72,0.06507472571032277],[118,46,73,0.07118341870137794],[118,46,74,0.07721167077875683],[118,46,75,0.08314645288013367],[118,46,76,0.08897591129984264],[118,46,77,0.09468897110724198],[118,46,78,0.09982606552477916],[118,46,79,0.10401093222708539],[118,47,64,0.028232983591160575],[118,47,65,0.0344499134513133],[118,47,66,0.04072250479051728],[118,47,67,0.04706583659335698],[118,47,68,0.05346078550870983],[118,47,69,0.05987039587168135],[118,47,70,0.06626356377315486],[118,47,71,0.07261452567063373],[118,47,72,0.0789019207578528],[118,47,73,0.08510795013610896],[118,47,74,0.09121763401969077],[118,47,75,0.09721816793072292],[118,47,76,0.10224405134823317],[118,47,77,0.1069602166137607],[118,47,78,0.1115614486682329],[118,47,79,0.11605318648930278],[118,48,64,0.04064988964739405],[118,48,65,0.04704481549472847],[118,48,66,0.05348860522319597],[118,48,67,0.05999873837671883],[118,48,68,0.06655513547788879],[118,48,69,0.07311750691539026],[118,48,70,0.07965199807511184],[118,48,71,0.08613072695351076],[118,48,72,0.09212483644819956],[118,48,73,0.09758358277869911],[118,48,74,0.10291803245274604],[118,48,75,0.10813529070980077],[118,48,76,0.11324082040335294],[118,48,77,0.11823893680343604],[118,48,78,0.12313320543143699],[118,48,79,0.1279267428464481],[118,49,64,0.05092148265205377],[118,49,65,0.05804843011405722],[118,49,66,0.06495846978978084],[118,49,67,0.07162275028879478],[118,49,68,0.07805359507185422],[118,49,69,0.08428621504244516],[118,49,70,0.09034919937117195],[118,49,71,0.09626493707538575],[118,49,72,0.10205060678213482],[118,49,73,0.10771907868633357],[118,49,74,0.11327972724576617],[118,49,75,0.11873915340982501],[118,49,76,0.12410181543136385],[118,49,77,0.12937056755863813],[118,49,78,0.13454710614349202],[118,49,79,0.13963232293286987],[118,50,64,0.05967818449251055],[118,50,65,0.06691408456705449],[118,50,66,0.07394070085791377],[118,50,67,0.08072700268854428],[118,50,68,0.08728621554725201],[118,50,69,0.0936566296929633],[118,50,70,0.09986936022933554],[118,50,71,0.10594871367652438],[118,50,72,0.11191319011604468],[118,50,73,0.11777640291420727],[118,50,74,0.12354791447235006],[118,50,75,0.12923398669535519],[118,50,76,0.1348382451112362],[118,50,77,0.14036225581188164],[118,50,78,0.1458060146149953],[118,50,79,0.15116834807005886],[118,51,64,0.06848830448243454],[118,51,65,0.07582481799008663],[118,51,66,0.08295828890223206],[118,51,67,0.08985577872750072],[118,51,68,0.09653148200098458],[118,51,69,0.10302669502129709],[118,51,70,0.10937504507900851],[118,51,71,0.11560279812840038],[118,51,72,0.12172986496226945],[118,51,73,0.12777073061905236],[118,51,74,0.13373530539447237],[118,51,75,0.13962969606003922],[118,51,76,0.14545689611964513],[118,51,77,0.15121739416130536],[118,51,78,0.15690969958052964],[118,51,79,0.16253078516519837],[118,52,64,0.07736478167861514],[118,52,65,0.08479386613969492],[118,52,66,0.09202460342412852],[118,52,67,0.09902245341049244],[118,52,68,0.10580262656773474],[118,52,69,0.11240929348045921],[118,52,70,0.11887853301948484],[118,52,71,0.1252385780305569],[118,52,72,0.13151081676204165],[118,52,73,0.1377107233516064],[118,52,74,0.14384871568744692],[118,52,75,0.14993093917567626],[118,52,76,0.1559599751610212],[118,52,77,0.16193547296122326],[118,52,78,0.1678547046833542],[118,52,79,0.17371304219306993],[118,53,64,0.08631099531319324],[118,53,65,0.09382501186565297],[118,53,66,0.1011437291283702],[118,53,67,0.1082313379738134],[118,53,68,0.1151040911559218],[118,53,69,0.12180884823297013],[118,53,70,0.12838403423476571],[118,53,71,0.13485982124147824],[118,53,72,0.14125911619687445],[118,53,73,0.14759848367855596],[118,53,74,0.15388900190474133],[118,53,75,0.16013705045839385],[118,53,76,0.16634502841088195],[118,53,77,0.17251200172719275],[118,53,78,0.17863427902998064],[118,53,79,0.18470591499096525],[118,54,64,0.09532110482679988],[118,54,65,0.10291289909492284],[118,54,66,0.11031075215047832],[118,54,67,0.11747793504755158],[118,54,68,0.12443174844377897],[118,54,69,0.1312215084198053],[118,54,70,0.13788783945357475],[118,54,71,0.14446279081394944],[118,54,72,0.15097080211865355],[118,54,73,0.15742960971561726],[118,54,74,0.16385109215233973],[118,54,75,0.1702420531839077],[118,54,76,0.17660494095700688],[118,54,77,0.18293850219305707],[118,54,78,0.18923837037559443],[118,54,79,0.19549758712586904],[118,55,64,0.10438050789777786],[118,55,65,0.11204346554232826],[118,55,66,0.11951216490593265],[118,55,67,0.12674931202075707],[118,55,68,0.13377324040771496],[118,55,69,0.1406354507726507],[118,55,70,0.14737858383397082],[118,55,71,0.15403647155463557],[118,55,72,0.16063507232431032],[118,55,73,0.16719335269799324],[118,55,74,0.17372411396164766],[118,55,75,0.18023476196597732],[118,55,76,0.1867280188412116],[118,55,77,0.19320257537715343],[118,55,78,0.19965368302099024],[118,55,79,0.20607368461123854],[118,56,64,0.11346641946087434],[118,56,65,0.12119449722614557],[118,56,66,0.12872639270265246],[118,56,67,0.1360245958056129],[118,56,68,0.1431084376260692],[118,56,69,0.15003130084321506],[118,56,70,0.15683762855336553],[118,56,71,0.16356291146635143],[118,56,72,0.17023458537747532],[118,56,73,0.17687288069788398],[118,56,74,0.183491622339683],[118,56,75,0.19009897840739534],[118,56,76,0.19669815630414192],[118,56,77,0.203288045017772],[118,56,78,0.20986380250646633],[118,56,79,0.21641738725588275],[118,57,64,0.12254857461105115],[118,57,65,0.13033630777347213],[118,57,66,0.137924445170041],[118,57,67,0.14527559211445193],[118,57,68,0.1524100225255085],[118,57,69,0.15938267705450412],[118,57,70,0.16623956332334608],[118,57,71,0.17301768127780554],[118,57,72,0.17974587663362093],[118,57,73,0.18644565156049486],[118,57,74,0.1931319309443612],[118,57,75,0.1998137827086376],[118,57,76,0.20649509081723993],[118,57,77,0.21317517972463912],[118,57,78,0.21984938917860397],[118,57,79,0.2265095984204382],[118,58,64,0.13159005816838645],[118,58,65,0.13943254538442673],[118,58,66,0.1470706954468707],[118,58,67,0.15446753225798102],[118,58,68,0.16164419963804344],[118,58,69,0.1686568606865656],[118,58,70,0.1755528329637866],[118,58,71,0.1823704551886227],[118,58,72,0.18913989155648156],[118,58,73,0.19588389806962841],[118,58,74,0.20261854928059742],[118,58,75,0.2093539239751654],[118,58,76,0.2160947484493106],[118,58,77,0.2228409961631431],[118,58,78,0.22958844268155484],[118,58,79,0.23632917493728492],[118,59,64,0.14054826353768843],[118,59,65,0.14844113018519123],[118,59,66,0.15612378993562306],[118,59,67,0.1635599503435985],[118,59,68,0.1707715358130788],[118,59,69,0.17781559479234904],[118,59,70,0.18474049106132095],[118,59,71,0.19158571585617631],[118,59,72,0.19838263932092],[118,59,73,0.20515522827037574],[118,59,74,0.21192072873858578],[118,59,75,0.2186903118991825],[118,59,76,0.2254696820588315],[118,59,77,0.23225964554016043],[118,59,78,0.23905663938430977],[118,59,79,0.24585321891642567],[118,60,64,0.14937598292531448],[118,60,65,0.15731532412811616],[118,60,66,0.16503769085973535],[118,60,67,0.17250769318303683],[118,60,68,0.17974793276160786],[118,60,69,0.1868160144752965],[118,60,70,0.19376108317746388],[118,60,71,0.20062358609614458],[118,60,72,0.20743596914881904],[118,60,73,0.21422334333450982],[118,60,74,0.22100411976089107],[118,60,75,0.22779061196438594],[118,60,76,0.23458960428341588],[118,60,77,0.24140288514794866],[118,60,78,0.24822774424998587],[118,60,79,0.2550574326607378],[118,61,64,0.15802261967579298],[118,61,65,0.16600492420714838],[118,61,66,0.1737628423825871],[118,61,67,0.1812620536553068],[118,61,68,0.18852572266270418],[118,61,69,0.19561169923180752],[118,61,70,0.20256965026397494],[118,61,71,0.20944077788412754],[118,61,72,0.21625845986539605],[118,61,73,0.22304886332264706],[118,61,74,0.22983153032316883],[118,61,75,0.23661993415206933],[118,61,76,0.24342200506099798],[118,61,77,0.2502406244205873],[118,61,78,0.2570740862873038],[118,61,79,0.26391652548534356],[118,62,64,0.16643554797100293],[118,62,65,0.17445760452168926],[118,62,66,0.1822474860948273],[118,62,67,0.1897720535990898],[118,62,68,0.19705491316837181],[118,62,69,0.20415387394275447],[118,62,70,0.21111887909664828],[118,62,71,0.21799168566916555],[118,62,72,0.22480644985399287],[118,62,73,0.2315902881520297],[118,62,74,0.23836381312899607],[118,62,75,0.24514164259992152],[118,62,76,0.25193288114373463],[118,62,77,0.25874157293306366],[118,62,78,0.26556712494465623],[118,62,79,0.27240469969571873],[118,63,64,0.1745616267886483],[118,63,65,0.18262041423540482],[118,63,66,0.19043913305299903],[118,63,67,0.19798588355098765],[118,63,68,0.20528458925384505],[118,63,69,0.212392766081295],[118,63,70,0.2193604073973118],[118,63,71,0.2262296317477692],[118,63,72,0.23303521520800954],[118,63,73,0.23980510158593926],[118,63,74,0.2465608893165816],[118,63,75,0.25331829395571653],[118,63,76,0.2600875852532783],[118,63,77,0.2668739978606044],[118,63,78,0.2736781147972797],[118,63,79,0.28049622287441744],[118,64,64,0.18234883917452246],[118,64,65,0.1904414023363161],[118,64,66,0.1982861631193923],[118,64,67,0.20585246992464176],[118,64,68,0.21316444235521842],[118,64,69,0.2202790894201997],[118,64,70,0.22724625375637675],[118,64,71,0.2341082336218894],[118,64,72,0.2409002657915845],[118,64,73,0.24765098771769775],[118,64,74,0.25438287788199027],[118,64,75,0.26111267333072447],[118,64,76,0.2678517634502017],[118,64,77,0.2746065591070091],[118,64,78,0.2813788363415787],[118,64,79,0.2881660538673102],[118,65,64,0.1897480715318929],[118,65,65,0.1978713841113813],[118,65,66,0.20573956671571747],[118,65,67,0.21332318494092767],[118,65,68,0.22064644230047187],[118,65,69,0.22776566993184466],[118,65,70,0.23473038822084494],[118,65,71,0.24158290935638255],[118,65,72,0.24835877534916237],[118,65,73,0.25508717618389193],[118,65,74,0.26179134711481683],[118,65,75,0.26848894417477087],[118,65,76,0.27519239702906684],[118,65,77,0.2819092383665054],[118,65,78,0.28864240907846417],[118,65,79,0.29539053853465996],[118,66,64,0.1964844768190204],[118,66,65,0.20486585141735097],[118,66,66,0.2127548311728584],[118,66,67,0.22035370159259143],[118,66,68,0.22768665441895256],[118,66,69,0.2348092163616936],[118,66,70,0.24177044611230505],[118,66,71,0.2486125235666352],[118,66,72,0.25537114833839825],[118,66,73,0.26207591879870246],[118,66,74,0.2687506907261528],[118,66,75,0.27541391470903104],[118,66,76,0.2820789514984476],[118,66,77,0.28875436456824727],[118,66,78,0.2954441891917905],[118,66,79,0.30214817739868544],[118,67,64,0.20193537583809648],[118,67,65,0.2106561804977256],[118,67,66,0.21929397262793923],[118,67,67,0.22690599468913294],[118,67,68,0.23424720297143212],[118,67,69,0.24137223670949362],[118,67,70,0.2483295863913007],[118,67,71,0.2551611754197416],[118,67,72,0.26190272491701855],[118,67,73,0.26858409906347464],[118,67,74,0.2752296301195828],[118,67,75,0.28185842233462066],[118,67,76,0.2884846340004655],[118,67,77,0.29511773696304666],[118,67,78,0.30176275295523997],[118,67,79,0.3084204661645395],[118,68,64,0.20721009031251594],[118,68,65,0.2159575044820148],[118,68,66,0.2248411833508284],[118,68,67,0.2329504887080972],[118,68,68,0.24029838172430434],[118,68,69,0.24742510153661346],[118,68,70,0.25437849557360415],[118,68,71,0.26120012972920587],[118,68,72,0.26792562522097507],[118,68,73,0.2745849757252911],[118,68,74,0.2812028439912534],[118,68,75,0.2877988371886349],[118,68,76,0.2943877602987007],[118,68,77,0.30097984690902474],[118,68,78,0.307580966822656],[118,68,79,0.3141928099391738],[118,69,64,0.21231321928602168],[118,69,65,0.22107765568190602],[118,69,66,0.22998346748801327],[118,69,67,0.23846835743691783],[118,69,68,0.24582091708118536],[118,69,69,0.2529482599088474],[118,69,70,0.2598975433486616],[118,69,71,0.2667098975598496],[118,69,72,0.2734207395259102],[118,69,73,0.280060067047432],[118,69,74,0.28665273187820894],[118,69,75,0.293218691301964],[118,69,76,0.2997732374996008],[118,69,77,0.30632720410815406],[118,69,78,0.31288714942049],[118,69,79,0.3194555157204021],[118,70,64,0.21722847658770236],[118,70,65,0.2260003963050972],[118,70,66,0.23491779545427555],[118,70,67,0.24346475071959006],[118,70,68,0.25082004044695033],[118,70,69,0.2579470667584711],[118,70,70,0.26489222843758653],[118,70,71,0.27169612476059335],[118,70,72,0.278393851325158],[118,70,73,0.2850152753317503],[118,70,74,0.2915852895956543],[118,70,75,0.2981240446200728],[118,70,76,0.3046471581131162],[118,70,77,0.3111659013821553],[118,70,78,0.31768736208613485],[118,70,79,0.3242145828710307],[118,71,64,0.22190956977114884],[118,71,65,0.2306770766772072],[118,71,66,0.23959314778517599],[118,71,67,0.2479833613850749],[118,71,68,0.255341858651739],[118,71,69,0.26246982753845494],[118,71,70,0.269412696346235],[118,71,71,0.2762103170382773],[118,71,72,0.28289724795542603],[118,71,73,0.28950301518562316],[118,71,74,0.2960523518884026],[118,71,75,0.30256541492938843],[118,71,76,0.3090579782328675],[118,71,77,0.31554160231182365],[118,71,78,0.3220237794823514],[118,71,79,0.32850805431413316],[118,72,64,0.22631481287480695],[118,72,65,0.2350636999325915],[118,72,66,0.24396320138111632],[118,72,67,0.2520644073739305],[118,72,68,0.259428951318744],[118,72,69,0.266561280646742],[118,72,70,0.27350551947874474],[118,72,71,0.28030045133873777],[118,72,72,0.2869797949483523],[118,72,73,0.29357245723577285],[118,72,74,0.3001027628716056],[118,72,75,0.3065906597010968],[118,72,76,0.31305189949794693],[118,72,77,0.31949819351878134],[118,72,78,0.32593734238713434],[118,72,79,0.33237333988252327],[118,73,64,0.23041144767299185],[118,73,65,0.23912579271457368],[118,73,66,0.24799177140396814],[118,73,67,0.2557386368950419],[118,73,68,0.2631138099222038],[118,73,69,0.2702555116830284],[118,73,70,0.27720615319390746],[118,73,71,0.2840030626786243],[118,73,72,0.2906787616786611],[118,73,73,0.29726121608083667],[118,73,74,0.30377406137182245],[118,73,75,0.31023680149140836],[118,73,76,0.3166649807174322],[118,73,77,0.32307032807403074],[118,73,78,0.32946087380926825],[118,73,79,0.33584103753917155],[118,74,64,0.23417298182431973],[118,74,65,0.24283571344876642],[118,74,66,0.2513593774984468],[118,74,67,0.2590300858417066],[118,74,68,0.2664216019027914],[118,74,69,0.2735787063305963],[118,74,70,0.28054165339187626],[118,74,71,0.2873458978334886],[118,74,72,0.2940223794997621],[118,74,73,0.30059777956054723],[118,74,74,0.30709474763934574],[118,74,75,0.3135320992015797],[118,74,76,0.3199249826321666],[118,74,77,0.32628501549803035],[118,74,78,0.3326203895529191],[118,74,79,0.3389359440997342],[118,75,64,0.2375765954882349],[118,75,65,0.24617002767118878],[118,75,66,0.25426759643371055],[118,75,67,0.2619587707803855],[118,75,68,0.26937287259686116],[118,75,69,0.27655184400296773],[118,75,70,0.28353333878682646],[118,75,71,0.29035051877939994],[118,75,72,0.29703235594767174],[118,75,73,0.3036039016891773],[118,75,74,0.31008652257729785],[118,75,75,0.31649810188889865],[118,75,76,0.3228532063261653],[118,75,77,0.3291632174217281],[118,75,78,0.3354364271882014],[118,75,79,0.34167809764084045],[118,76,64,0.24052239156579303],[118,76,65,0.24881429819737452],[118,76,66,0.25682604148014354],[118,76,67,0.26454331300943634],[118,76,68,0.27198618049400686],[118,76,69,0.27919332782521583],[118,76,70,0.2861993935417296],[118,76,71,0.2930348517310304],[118,76,72,0.29972634109006485],[118,76,73,0.306296955634745],[118,76,74,0.31276649624562197],[118,76,75,0.31915168233397295],[118,76,76,0.3254663230072212],[118,76,77,0.33172144720375313],[118,76,78,0.3379253923526303],[118,76,79,0.34408385119394896],[118,77,64,0.24270029900872164],[118,77,65,0.2510163858396722],[118,77,66,0.25905496582542203],[118,77,67,0.26680348904391243],[118,77,68,0.2742806611847434],[118,77,69,0.2815215463562344],[118,77,70,0.2885574057677517],[118,77,71,0.2954156774366163],[118,77,72,0.30212034190737747],[118,77,73,0.30869224293018427],[118,77,74,0.3151493621996698],[118,77,75,0.32150704737069474],[118,77,76,0.3277781926795551],[118,77,77,0.33397337160748575],[118,77,78,0.34010092112514534],[118,77,79,0.3461669771526972],[118,78,64,0.2445658401464233],[118,78,65,0.25290953071581596],[118,78,66,0.2609787653098011],[118,78,67,0.26876270276631253],[118,78,68,0.27627851523245006],[118,78,69,0.28355736231934014],[118,78,70,0.29062683724115523],[118,78,71,0.29751105823065727],[118,78,72,0.3042310804245966],[118,78,73,0.3108052549271277],[118,78,74,0.3172495340420661],[118,78,75,0.3235777218008438],[118,78,76,0.3298016690459318],[118,78,77,0.33593141245778874],[118,78,78,0.34197525703464043],[118,78,79,0.347939801648794],[118,79,64,0.2461326946346188],[118,79,65,0.25450660764443744],[118,79,66,0.26260948619658625],[118,79,67,0.2704321206926459],[118,79,68,0.2779900224012989],[118,79,69,0.2853102499561953],[118,79,70,0.2924165122992619],[118,79,71,0.2993293840333694],[118,79,72,0.30606677364582996],[118,79,73,0.31264433008967096],[118,79,74,0.31907578657560914],[118,79,75,0.32537324058775985],[118,79,76,0.3315473692926634],[118,79,77,0.33760757966250254],[118,79,78,0.34356209277687005],[118,79,79,0.34941796190312946],[118,80,64,0.24734996551809707],[118,80,65,0.25575602388396923],[118,80,66,0.26389559605094737],[118,80,67,0.27176107500598384],[118,80,68,0.2793662648536343],[118,80,69,0.2867340174222413],[118,80,70,0.29388398492578593],[118,80,71,0.30083297501836487],[118,80,72,0.30759549041208945],[118,80,73,0.3141841969755061],[118,80,74,0.32061031898861875],[118,80,75,0.32688396041814116],[118,80,76,0.3330143512601238],[118,80,77,0.33901001817476945],[118,80,78,0.34487887880731694],[118,80,79,0.35062825934914654],[118,81,64,0.24816659802092997],[118,81,65,0.2566057460618417],[118,81,66,0.26478480635000196],[118,81,67,0.2726977940917414],[118,81,68,0.2803568425610083],[118,81,69,0.2877805852376588],[118,81,70,0.2949844942592294],[118,81,71,0.30198139406096663],[118,81,72,0.3087820919439516],[118,81,73,0.31539592619925716],[118,81,74,0.32183123023762367],[118,81,75,0.32809571139269694],[118,81,76,0.3341967432800236],[118,81,77,0.3401415708017284],[118,81,78,0.34593742708518876],[118,81,79,0.35159156183260887],[118,82,64,0.24854947917152306],[118,82,65,0.25702134614622346],[118,82,66,0.26524184520442173],[118,82,67,0.27320666256265685],[118,82,68,0.2809263700079781],[118,82,69,0.2884154664006288],[118,82,70,0.2956851820238336],[118,82,71,0.3027441711747826],[118,82,72,0.3095992560960157],[118,82,73,0.3162560765513789],[118,82,74,0.3227196432124245],[118,82,75,0.32899479327430786],[118,82,76,0.3350865469687324],[118,82,77,0.3410003638830804],[118,82,78,0.34674229822643376],[118,82,79,0.35231905240400696],[118,83,64,0.24848103604908284],[118,83,65,0.25698368101352714],[118,83,66,0.2652462495556114],[118,83,67,0.2732661609979279],[118,83,68,0.2810525976903343],[118,83,69,0.2886161000142947],[118,83,70,0.29596366404682195],[118,83,71,0.3030996335309261],[118,83,72,0.31002658096023755],[118,83,73,0.316746081512517],[118,83,74,0.32325937765334994],[118,83,75,0.329567932522566],[118,83,76,0.3356738705023333],[118,83,77,0.34158030364499714],[118,83,78,0.34729154290724673],[118,83,79,0.3528131933940908],[118,84,64,0.2479569498042891],[118,84,65,0.25648668448701145],[118,84,66,0.26479026544625145],[118,84,67,0.27286690797590835],[118,84,68,0.2805249037378025],[118,84,69,0.2880825763705106],[118,84,70,0.2956689990356111],[118,84,71,0.30303380751480813],[118,84,72,0.3100497532361677],[118,84,73,0.31685169402144925],[118,84,74,0.32343667579357654],[118,84,75,0.32980228768729614],[118,84,76,0.3359472071769525],[118,84,77,0.34187161614255224],[118,84,78,0.3475774865779279],[118,84,79,0.35306873494137153],[118,85,64,0.24698399000107768],[118,85,65,0.2555352762835161],[118,85,66,0.26387686063070215],[118,85,67,0.27200980842434275],[118,85,68,0.2795565594163565],[118,85,69,0.286847130966439],[118,85,70,0.2941561803103809],[118,85,71,0.30147451549159854],[118,85,72,0.3087945275655195],[118,85,73,0.3161091838131852],[118,85,74,0.32323998149615835],[118,85,75,0.3296855033746263],[118,85,76,0.3358937589266528],[118,85,77,0.34186142994877694],[118,85,78,0.3475875561696254],[118,85,79,0.353073766227663],[118,86,64,0.24557797450070254],[118,86,65,0.25414339301028444],[118,86,66,0.26251785451779014],[118,86,67,0.2707043130495852],[118,86,68,0.27829733928278405],[118,86,69,0.2853071274430829],[118,86,70,0.2923218137999766],[118,86,71,0.29933662276538914],[118,86,72,0.3063487238702688],[118,86,73,0.3133560355893234],[118,86,74,0.3203561793719348],[118,86,75,0.3273455870307281],[118,86,76,0.33431876422177],[118,86,77,0.34126771234102143],[118,86,78,0.34730514798133927],[118,86,79,0.3528108081496825],[118,87,64,0.24376185968554562],[118,87,65,0.25233214594154996],[118,87,66,0.26073217004279425],[118,87,67,0.26896679323303024],[118,87,68,0.2767478046634581],[118,87,69,0.2834667638676706],[118,87,70,0.2901739637876917],[118,87,71,0.29686892814286575],[118,87,72,0.30355363060992074],[118,87,73,0.3102310916006156],[118,87,74,0.3169041405141362],[118,87,75,0.32357434714014244],[118,87,76,0.33024112542319944],[118,87,77,0.33690101234209285],[118,87,78,0.3435471242105671],[118,87,79,0.35016879227387077],[118,88,64,0.2415639654246591],[118,88,65,0.2501281099195872],[118,88,66,0.25854421169579217],[118,88,67,0.26681903543418317],[118,88,68,0.2749048798655032],[118,88,69,0.2813268950820326],[118,88,70,0.2877177633058734],[118,88,71,0.29408112115037105],[118,88,72,0.30042369279370074],[118,88,73,0.30675366540683136],[118,88,74,0.31307924536318127],[118,88,75,0.3194073994709155],[118,88,76,0.32574278495518966],[118,88,77,0.33208687141157994],[118,88,78,0.33843725745612474],[118,88,79,0.344787184316597],[118,89,64,0.23901633881501852],[118,89,65,0.24756174736666364],[118,89,66,0.2559823735894997],[118,89,67,0.26428685881516994],[118,89,68,0.272481791512321],[118,89,69,0.27888612950982616],[118,89,70,0.2849563265182035],[118,89,71,0.2909811999626044],[118,89,72,0.2969720923465007],[118,89,73,0.302942333356181],[118,89,74,0.3089055793972268],[118,89,75,0.3148743538826011],[118,89,76,0.320858792548037],[118,89,77,0.32686559751535643],[118,89,78,0.3328972032793469],[118,89,79,0.33895115726394665],[118,90,64,0.23615326038961112],[118,90,65,0.24466597106040114],[118,90,66,0.253077681128936],[118,90,67,0.26139885949864256],[118,90,68,0.269636745348974],[118,90,69,0.2761418165959094],[118,90,70,0.2818915619747221],[118,90,71,0.28757608986459104],[118,90,72,0.2932111541332486],[118,90,73,0.2988151140765321],[118,90,74,0.30440705062324264],[118,90,75,0.3100050986600564],[118,90,76,0.31562500032339325],[118,90,77,0.32127888350167344],[118,90,78,0.3269742691976964],[118,90,79,0.33271331082227085],[118,91,64,0.23300989616414003],[118,91,65,0.2414748490138733],[118,91,66,0.24986256954616518],[118,91,67,0.2581852845885743],[118,91,68,0.2664511686620159],[118,91,69,0.27309092218252556],[118,91,70,0.2785248843353154],[118,91,71,0.283872170894456],[118,91,72,0.2891526716526922],[118,91,73,0.29438957754472345],[118,91,74,0.2996072710202991],[118,91,75,0.3048294473390673],[118,91,76,0.3100774722184594],[118,91,77,0.31536898061536683],[118,91,78,0.32071672078123803],[118,91,79,0.32612764710401115],[118,92,64,0.22962109859745786],[118,92,65,0.23802245451258008],[118,92,66,0.24636980228532296],[118,92,67,0.2546770388207574],[118,92,68,0.2629535298685181],[118,92,69,0.26973078934780076],[118,92,70,0.27485782235256734],[118,92,71,0.27987571276172285],[118,92,72,0.28480815083044553],[118,92,73,0.28968288252233565],[118,92,74,0.29452937574367216],[118,92,75,0.29937673154598315],[118,92,76,0.3042518463158034],[118,92,77,0.3091778302750043],[118,92,78,0.3141726869284771],[118,92,79,0.31924825742403323],[118,93,64,0.22602035926489503],[118,93,65,0.2343418640912469],[118,93,66,0.24263153196415468],[118,93,67,0.250904826464997],[118,93,68,0.25917252526664813],[118,93,69,0.2660597824376654],[118,93,70,0.27089252108659473],[118,93,71,0.27559321529174674],[118,93,72,0.2801889704699087],[118,93,73,0.28471174124734294],[118,93,74,0.28919577932499074],[118,93,75,0.2936753394391888],[118,93,76,0.2981826500176875],[118,93,77,0.30274615439303043],[118,93,78,0.3073890277059434],[118,93,79,0.3121279739163016],[118,94,64,0.22223891578710317],[118,94,65,0.23046430598295636],[118,94,66,0.23867850639715296],[118,94,67,0.2468984308728573],[118,94,68,0.255136449500751],[118,94,69,0.26207781221359505],[118,94,70,0.26663213649359413],[118,94,71,0.27103165279193425],[118,94,72,0.2753064580394568],[118,94,73,0.2794923103649881],[118,94,74,0.28362786817176094],[118,94,75,0.28775219938322977],[118,94,76,0.29190256802288017],[118,94,77,0.2961125045159361],[118,94,78,0.3004101653318707],[118,94,79,0.30481698683155667],[118,95,64,0.21830501531937416],[118,95,65,0.22641846134094187],[118,95,66,0.2345394219417089],[118,95,67,0.24268613385310028],[118,95,68,0.250872696499154],[118,95,69,0.2577867402172815],[118,95,70,0.26208112068797684],[118,95,71,0.26619862087122614],[118,95,72,0.27017187958657185],[118,95,73,0.27404000716941046],[118,95,74,0.2778456287337314],[118,95,75,0.28163220852705495],[118,95,76,0.2854416630822796],[118,95,77,0.2893122700591874],[118,95,78,0.2932768788634799],[118,95,79,0.2973614283397812],[118,96,64,0.21424333668596543],[118,96,65,0.2222299203178147],[118,96,66,0.23024042622081514],[118,96,67,0.23829427686000212],[118,96,68,0.2464073927625564],[118,96,69,0.25319066061948436],[118,96,70,0.2572453963250475],[118,96,71,0.26110238437060757],[118,96,72,0.2647963426739833],[118,96,73,0.2683692503094588],[118,96,74,0.27186721076296294],[118,96,75,0.27533760599530915],[118,96,76,0.27882654952624725],[118,96,77,0.2823766459088813],[118,96,78,0.2860250631272581],[118,96,79,0.2898019236261239],[118,97,64,0.2100745730395065],[118,97,65,0.2179207948868048],[118,97,66,0.2258047720825669],[118,97,67,0.23374696579637114],[118,97,68,0.24176516471042164],[118,97,69,0.2482960579743676],[118,97,70,0.2521324186875581],[118,97,71,0.2557518251794941],[118,97,72,0.2591906113295313],[118,97,73,0.2624931241877681],[118,97,74,0.2657084251490795],[118,97,75,0.2688872904356509],[118,97,76,0.2720795195710287],[118,97,77,0.2753315596584392],[118,97,78,0.27868445241169043],[118,97,79,0.2821721100349582],[118,98,64,0.20581517673747537],[118,98,65,0.21350949010526862],[118,98,66,0.22125262447860558],[118,98,67,0.22906592106405468],[118,98,68,0.23696904163560997],[118,98,69,0.24311183944485315],[118,98,70,0.2467511241874032],[118,98,71,0.25015628882288987],[118,98,72,0.25336483209256005],[118,98,73,0.25642296635373296],[118,98,74,0.2593821758631088],[118,98,75,0.2622960816978175],[118,98,76,0.2652176224260756],[118,98,77,0.26819655874612247],[118,98,78,0.27127730942414113],[118,98,79,0.2744971249858406],[118,99,64,0.20147726795323384],[118,99,65,0.20901063534937614],[118,99,66,0.21660102177777465],[118,99,67,0.22427047433696018],[118,99,68,0.2320404956704905],[118,99,69,0.23764924019707356],[118,99,70,0.24111176411117957],[118,99,71,0.24432532880505714],[118,99,72,0.24732817032279558],[118,99,73,0.25016787725587014],[118,99,74,0.25289782558978396],[118,99,75,0.2555739264485668],[118,99,76,0.258251696235263],[118,99,77,0.260983657754337],[118,99,78,0.26381707999439424],[118,99,79,0.2667920633535458],[118,100,64,0.1970687083793706],[118,100,65,0.20443517689184929],[118,100,66,0.21186399287906618],[118,100,67,0.21937771338677395],[118,100,68,0.2269996200327406],[118,100,69,0.23192160078587565],[118,100,70,0.2352256225483327],[118,100,71,0.23826834779008266],[118,100,72,0.2410883560159164],[118,100,73,0.24373415178030394],[118,100,74,0.24626049467225],[118,100,75,0.2487250475538407],[118,100,76,0.2511853528960662],[118,100,77,0.2536961461277618],[118,100,78,0.2563070139899399],[118,100,79,0.2590604049752697],[118,101,64,0.19259216136613594],[118,101,65,0.19978912959120954],[118,101,66,0.20705100076132302],[118,101,67,0.21440061657972243],[118,101,68,0.22186295519612614],[118,101,69,0.22594684183831198],[118,101,70,0.22910777877919836],[118,101,71,0.23199762563115117],[118,101,72,0.23465494677249854],[118,101,73,0.23712873791287353],[118,101,74,0.23947466819979085],[118,101,75,0.2417516452038893],[118,101,76,0.2440187129345573],[118,101,77,0.24633229209735955],[118,101,78,0.2487437708681131],[118,101,79,0.25129745353257754],[118,102,64,0.1880337043338289],[118,102,65,0.1950585031994585],[118,102,66,0.20214813443154844],[118,102,67,0.20932548382036903],[118,102,68,0.2164425541163361],[118,102,69,0.21977767790419092],[118,102,70,0.22281118177773224],[118,102,71,0.22556621409518696],[118,102,72,0.22808092790202003],[118,102,73,0.2304043412824568],[118,102,74,0.23259251266025516],[118,102,75,0.2347050424049721],[118,102,76,0.2368019111536015],[118,102,77,0.23894066430878977],[118,102,78,0.24117395122951768],[118,102,79,0.24354742669516213],[118,103,64,0.1833739248224884],[118,103,65,0.1902217457309736],[118,103,66,0.1971318813496076],[118,103,67,0.2041270286475778],[118,103,68,0.2102545946497254],[118,103,69,0.2134839585206903],[118,103,70,0.21640781324762431],[118,103,71,0.21904804779785586],[118,103,72,0.22144194362027825],[118,103,73,0.22363799529018194],[118,103,74,0.2256920473531551],[118,103,75,0.2276637589119016],[118,103,76,0.2296134065518098],[118,103,77,0.23159903525035508],[118,103,78,0.23367396596767487],[118,103,79,0.23588466767788574],[118,104,64,0.17860038557459182],[118,104,65,0.1852648595993304],[118,104,66,0.19198690970461565],[118,104,67,0.19878883114555884],[118,104,68,0.20398652129934533],[118,104,69,0.20712684053593744],[118,104,70,0.20996019390538892],[118,104,71,0.21250685509199604],[118,104,72,0.2148027434514159],[118,104,73,0.21689524146966693],[118,104,74,0.2188393271734766],[118,104,75,0.2206940331250851],[118,104,76,0.22251924269274773],[118,104,77,0.22437283334322763],[118,104,78,0.2263081757602662],[118,104,79,0.2283719966602801],[118,105,64,0.17370898166531806],[118,105,65,0.18018273222448233],[118,105,66,0.18670736614452152],[118,105,67,0.19330459351675583],[118,105,68,0.1976888386266032],[118,105,69,0.20075762802506866],[118,105,70,0.2035202715606721],[118,105,71,0.20599508800442587],[118,105,72,0.20821614476431574],[118,105,73,0.2102291131089448],[118,105,74,0.21208743419019377],[118,105,75,0.21384880747379498],[118,105,76,0.2155720122598799],[118,105,77,0.21731407204532133],[118,105,78,0.21912777055173346],[118,105,79,0.2210595273241537],[118,106,64,0.16870549815053695],[118,106,65,0.17498061130390313],[118,106,66,0.18129825943245692],[118,106,67,0.1876794200035972],[118,106,68,0.1914017363223137],[118,106,69,0.1944167207950342],[118,106,70,0.1971284903663557],[118,106,71,0.19955310884063482],[118,106,72,0.20172232920526387],[118,106,73,0.203679530239859],[118,106,74,0.2054759566298997],[118,106,75,0.2071672740457701],[118,106,76,0.20881044974576746],[118,106,77,0.21046096835559025],[118,106,78,0.21217039157269355],[118,106,79,0.2139842696483575],[118,107,64,0.16360757961218061],[118,107,65,0.16967598902155537],[118,107,66,0.17577724766751177],[118,107,67,0.18188263890753206],[118,107,68,0.18515353247116517],[118,107,69,0.1881321919659581],[118,107,70,0.19081250777918288],[118,107,71,0.19320804730873922],[118,107,72,0.1953478366337912],[118,107,73,0.19727242313191912],[118,107,74,0.19903023108614515],[118,107,75,0.20067422146563368],[118,107,76,0.20225886619545114],[118,107,77,0.20383744635850198],[118,107,78,0.2054596829020522],[118,107,79,0.207169707558535],[118,108,64,0.15844711383344048],[118,108,65,0.16430089754694546],[118,108,66,0.17017683153235466],[118,108,67,0.1757159505344474],[118,108,68,0.17895872861060952],[118,108,69,0.18191799192549804],[118,108,70,0.1845855565053985],[118,108,71,0.18697232545886697],[118,108,72,0.1891042539301572],[118,108,73,0.19101858178764017],[118,108,74,0.19276034564039238],[118,108,75,0.1943791809596483],[118,108,76,0.19592642425657356],[118,108,77,0.1974525244386019],[118,108,78,0.19900477163859878],[118,108,79,0.2006253509904469],[118,109,64,0.15327298279193138],[118,109,65,0.15890456858947669],[118,109,66,0.16454690591050639],[118,109,67,0.16958621131043858],[118,109,68,0.17281562325899275],[118,109,69,0.175771724784717],[118,109,70,0.17844439705890633],[118,109,71,0.18084179561864494],[118,109,72,0.18298654347036913],[118,109,73,0.18491217591913908],[118,109,74,0.18665984813211706],[118,109,75,0.1882753156796996],[118,109,76,0.18980619752419223],[118,109,77,0.19129953014835632],[118,109,78,0.19279962073949336],[118,109,79,0.19434620657470858],[118,110,64,0.14814375417409023],[118,110,65,0.15354591559608408],[118,110,66,0.15894701569236083],[118,110,67,0.16346237855597015],[118,110,68,0.16669260628667937],[118,110,69,0.16966101381340976],[118,110,70,0.17235577438759722],[118,110,71,0.17478230489878596],[118,110,72,0.17695972837057958],[118,110,73,0.17891756971469064],[118,110,74,0.18069269504166247],[118,110,75,0.18232650412051526],[118,110,76,0.18386238486514053],[118,110,77,0.18534343800689312],[118,110,78,0.1868104793950837],[118,110,79,0.18830032665526686],[118,111,64,0.14311369117882686],[118,111,65,0.14827957410111067],[118,111,66,0.15343223434259434],[118,111,67,0.1572714916772942],[118,111,68,0.1605163534071654],[118,111,69,0.16351222405807841],[118,111,70,0.16624587354078954],[118,111,71,0.16872006871717465],[118,111,72,0.17095034274982934],[118,111,73,0.17296197721044404],[118,111,74,0.17478720642132045],[118,111,75,0.17646265286287632],[118,111,76,0.17802700183090123],[118,111,77,0.17951892287447285],[118,111,78,0.18097524489301908],[118,111,79,0.18242939112386708],[118,112,64,0.13822471337773154],[118,112,65,0.14314898776363288],[118,112,66,0.14747127396373438],[118,112,67,0.15094755004349222],[118,112,68,0.15422133991063255],[118,112,69,0.15726105048347347],[118,112,70,0.16005238622319481],[118,112,71,0.16259556993498903],[118,112,72,0.164902455571836],[118,112,73,0.16699383164194828],[118,112,74,0.16889692376049245],[118,112,75,0.17064310431459534],[118,112,76,0.17226581663221716],[118,112,77,0.1737987204636135],[118,112,78,0.17527406500260045],[118,112,79,0.176721295098037],[118,113,64,0.1334953376818359],[118,113,65,0.13729052635103883],[118,113,66,0.14094579279327277],[118,113,67,0.14444870727098597],[118,113,68,0.14776536813866548],[118,113,69,0.15086556143758767],[118,113,70,0.15373428306028777],[118,113,71,0.15636932886838106],[118,113,72,0.15877878580498514],[118,113,73,0.16097869017490196],[118,113,74,0.16299086059696005],[118,113,75,0.16484091263538916],[118,113,76,0.1665564616136906],[118,113,77,0.1681655196081408],[118,113,78,0.1696950921121914],[118,113,79,0.1711699793614105],[118,114,64,0.12674547691799248],[118,114,65,0.1305381775740956],[118,114,66,0.13421433847062422],[118,114,67,0.13775406434677595],[118,114,68,0.14112614572701554],[118,114,69,0.1443023748614154],[118,114,70,0.1472674089921946],[118,114,71,0.15001675336212916],[118,114,72,0.1525546619392035],[118,114,73,0.15489218098541113],[118,114,74,0.1570453418471372],[118,114,75,0.1590335089241267],[118,114,76,0.16087788834889913],[118,114,77,0.1626002024811459],[118,114,78,0.1642215348950371],[118,114,79,0.1657613501147465],[118,115,64,0.11977014322761839],[118,115,65,0.12357325491057736],[118,115,66,0.12727625921686644],[118,115,67,0.1308606929899443],[118,115,68,0.13429852099030173],[118,115,69,0.13756415040849168],[118,115,70,0.14064227490071518],[118,115,71,0.14352626900492654],[118,115,72,0.14621652472271637],[118,115,73,0.14871890613634087],[118,115,74,0.1510433272361],[118,115,75,0.15320245779176492],[118,115,76,0.15521056175692116],[118,115,77,0.15708247234901102],[118,115,78,0.15883270760296717],[118,115,79,0.16047472985533104],[118,116,64,0.11259809509433845],[118,116,65,0.11641322395483703],[118,116,66,0.12014642506481654],[118,116,67,0.1237807623241719],[118,116,68,0.12729181011727717],[118,116,69,0.1306571602004817],[118,116,70,0.13386191355296753],[118,116,71,0.13689749869476897],[118,116,72,0.13976046409842735],[118,116,73,0.14245136374428718],[118,116,74,0.14497373973572877],[118,116,75,0.14733320562862745],[118,116,76,0.14953663386555896],[118,116,77,0.15159145044139458],[118,116,78,0.1535050396649049],[118,116,79,0.15528426162297068],[118,117,64,0.10526203550997737],[118,117,65,0.10908828518293658],[118,117,66,0.11285231151806033],[118,117,67,0.1165387713305727],[118,117,68,0.12012721850912607],[118,117,69,0.1235989403634851],[118,117,70,0.12693980176897968],[118,117,71,0.1301394931779128],[118,117,72,0.1331907916374688],[118,117,73,0.1360888903724499],[118,117,74,0.13883079955446798],[118,117,75,0.14141482069598654],[118,117,76,0.14384009692436786],[118,117,77,0.14610624120904725],[118,117,78,0.1482130444356173],[118,117,79,0.15016026504557187],[118,118,64,0.09780442037582547],[118,118,65,0.10163847036039242],[118,118,66,0.10543120070371287],[118,118,67,0.10916888935660445],[118,118,68,0.11283535841516876],[118,118,69,0.11641602533030992],[118,118,70,0.1198978505827171],[118,118,71,0.12326901407103111],[118,118,72,0.12651864967951648],[118,118,73,0.12963662452395291],[118,118,74,0.13261336418940964],[118,118,75,0.13543972516714609],[118,118,76,0.13810691559334115],[118,118,77,0.140606465290474],[118,118,78,0.1429302460140201],[118,118,79,0.1450705427137304],[118,119,64,0.09027461246813243],[118,119,65,0.09411086553821031],[118,119,66,0.09792750217428327],[118,119,67,0.10171240677333458],[118,119,68,0.10545386485122693],[118,119,69,0.10914176674231138],[118,119,70,0.11276446503461518],[118,119,71,0.11630887076738945],[118,119,72,0.11976065830516036],[118,119,73,0.12310449205168728],[118,119,74,0.12632427501952342],[118,119,75,0.12940341923809745],[118,119,76,0.13232513795431317],[118,119,77,0.13507275955498993],[118,119,78,0.1376300631206569],[118,119,79,0.1399816355057963],[118,120,64,0.08272616823763962],[118,120,65,0.08655696215611826],[118,120,66,0.09039019485860658],[118,120,67,0.09421529722482552],[118,120,68,0.09802511114748266],[118,120,69,0.1018142381591032],[118,120,70,0.10557267462428885],[118,120,71,0.10928631203674084],[118,120,72,0.11293760069468983],[118,120,73,0.11650621375143025],[118,120,74,0.11996971039201519],[118,120,75,0.12330419692374489],[118,120,76,0.1264849846105598],[118,120,77,0.12948724312981255],[118,120,78,0.13096877251159111],[118,120,79,0.13203048908921863],[118,121,64,0.07521424372464866],[118,121,65,0.07903012244526837],[118,121,66,0.08287037623816756],[118,121,67,0.08672587739743381],[118,121,68,0.09059400986918813],[118,121,69,0.09447421109819563],[118,121,70,0.09835831968759015],[118,121,71,0.10223145729008709],[118,121,72,0.10607313151886383],[118,121,73,0.10985831942931848],[118,121,74,0.1135585291140776],[118,121,75,0.11793959380338408],[118,121,76,0.12385803940484352],[118,121,77,0.12760871640311044],[118,121,78,0.13131455998509303],[118,121,79,0.13499943573192819],[118,122,64,0.06779314805279016],[118,122,65,0.07158318782894463],[118,122,66,0.0754189476531634],[118,122,67,0.07929259338404185],[118,122,68,0.0832059283175017],[118,122,69,0.08716323170458448],[118,122,70,0.09320252753279926],[118,122,71,0.10018089915988035],[118,122,72,0.10717264057201152],[118,122,73,0.11414919633090823],[118,122,74,0.12107755994522167],[118,122,75,0.12792165086322632],[118,122,76,0.13164859484020525],[118,122,77,0.13504060314721972],[118,122,78,0.1383948663897514],[118,122,79,0.1417427300610578],[118,123,64,0.06051405939515921],[118,123,65,0.06715203117395477],[118,123,66,0.07394368840433212],[118,123,67,0.08080912756093264],[118,123,68,0.08775303011567714],[118,123,69,0.09478354238453766],[118,123,70,0.10189610500780846],[118,123,71,0.10907498312030098],[118,123,72,0.11629513809952216],[118,123,73,0.12352404815036452],[118,123,74,0.13072347310163918],[118,123,75,0.13635447531257205],[118,123,76,0.1394757693630047],[118,123,77,0.14252459448436255],[118,123,78,0.1455408569072783],[118,123,79,0.14856296271075395],[118,124,64,0.0688035327916777],[118,124,65,0.0755379392892599],[118,124,66,0.08237198202925745],[118,124,67,0.08929795110710971],[118,124,68,0.09632431604746829],[118,124,69,0.10346364611005518],[118,124,70,0.11071337100875062],[118,124,71,0.11805759125768019],[118,124,72,0.12546928819359288],[118,124,73,0.13291246922874123],[118,124,74,0.14034424278621316],[118,124,75,0.14452186970298392],[118,124,76,0.1473261576679945],[118,124,77,0.15005473655389492],[118,124,78,0.15275413124208181],[118,124,79,0.1554692445035792],[118,125,64,0.07747472825017965],[118,125,65,0.08421092571006614],[118,125,66,0.0910621741441349],[118,125,67,0.09802133119666788],[118,125,68,0.10510024669220375],[118,125,69,0.11231558353273637],[118,125,70,0.11966671115140524],[118,125,71,0.1271377541633599],[118,125,72,0.13470009621480342],[118,125,73,0.14231480774421718],[118,125,74,0.14993499130876056],[118,125,75,0.15266704896916736],[118,125,76,0.15518463751426062],[118,125,77,0.15762235972510735],[118,125,78,0.16003262330112233],[118,125,79,0.16246613850839242],[118,126,64,0.08646661213012093],[118,126,65,0.09318167932347393],[118,126,66,0.10002498443716737],[118,126,67,0.10698969075868096],[118,126,68,0.11409055058289859],[118,126,69,0.1213479016713039],[118,126,70,0.12876294599391797],[118,126,71,0.13631999292167118],[118,126,72,0.14398920939412474],[118,126,73,0.1517292849620103],[118,126,74,0.15836039992205478],[118,126,75,0.1607683274143876],[118,126,76,0.16303439077195014],[118,126,77,0.16521580110629183],[118,126,78,0.1673700183337845],[118,126,79,0.16955277072433161],[118,127,64,0.09577805794872779],[118,127,65,0.102449960875448],[118,127,66,0.10926082698954036],[118,127,67,0.1162038506734493],[118,127,68,0.12329616001491064],[118,127,69,0.1305612820524822],[118,127,70,0.13800209660268473],[118,127,71,0.1456032298695486],[118,127,72,0.15333400213547618],[118,127,73,0.16115128348517008],[118,127,74,0.16659994541149456],[118,127,75,0.16880394970718396],[118,127,76,0.1708569456938073],[118,127,77,0.17282016223967242],[118,127,78,0.17475521751788667],[118,127,79,0.1767219985423495],[118,128,64,0.1053949673240702],[118,128,65,0.1120031357602103],[118,128,66,0.11875837869092466],[118,128,67,0.1256536414299806],[118,128,68,0.13270787854893004],[118,128,69,0.13994728386218924],[118,128,70,0.1473762281312649],[118,128,71,0.1549797602933327],[118,128,72,0.16272670461414113],[118,128,73,0.17057266105733226],[118,128,74,0.174713280482998],[118,128,75,0.17675240969356448],[118,128,76,0.17863224051802634],[118,128,77,0.18041710227749633],[118,128,78,0.18217185048266687],[118,128,79,0.18395963767337972],[118,129,64,0.11528891763071303],[118,129,65,0.12181484499647172],[118,129,66,0.12849327895163581],[118,129,67,0.135316636364027],[118,129,68,0.14230515772235952],[118,129,69,0.14948718181522974],[118,129,70,0.15686837204110304],[118,129,71,0.16443428561590517],[118,129,72,0.17215357512888002],[118,129,73,0.1799810902611167],[118,129,74,0.18268033327046426],[118,129,75,0.18459277491057074],[118,129,76,0.18633870849797185],[118,129,77,0.1879846669057968],[118,129,78,0.18959783621331028],[118,129,79,0.19124374816917117],[118,130,64,0.12541595289613655],[118,130,65,0.13184381500620312],[118,130,66,0.13842696134870147],[118,130,67,0.14515700711946763],[118,130,68,0.1520549836000629],[118,130,69,0.15915089934500662],[118,130,70,0.1664515275182255],[118,130,71,0.17394300856299783],[118,130,72,0.1815941166134906],[118,130,73,0.18842614106967545],[118,130,74,0.19048414651157516],[118,130,75,0.19230501674381026],[118,130,76,0.19395338444498977],[118,130,77,0.19549715325582856],[118,130,78,0.19700499273804506],[118,130,79,0.19854398010187446],[118,131,64,0.1357155184303178],[118,131,65,0.142032806722223],[118,131,66,0.14850561775414997],[118,131,67,0.1551245018886842],[118,131,68,0.16191087371170193],[118,131,69,0.1688960376362731],[118,131,70,0.1760877425688501],[118,131,71,0.1834727907355568],[118,131,72,0.19102033766278922],[118,131,73,0.19611003152561435],[118,131,74,0.19811139799089753],[118,131,75,0.19987034617855606],[118,131,76,0.2014520328612749],[118,131,77,0.20292501101728713],[118,131,78,0.20435869595638728],[118,131,79,0.20582097940991342],[118,132,64,0.14610947998920504],[118,132,65,0.15230763677183917],[118,132,66,0.15865921971161379],[118,132,67,0.16515346318986257],[118,132,68,0.1718118928883647],[118,132,69,0.17866690036758967],[118,132,70,0.18572716559646396],[118,132,71,0.19298025401070612],[118,132,72,0.20039592999350384],[118,132,73,0.20358834465738074],[118,132,74,0.2055530558930865],[118,132,75,0.20727170967449154],[118,132,76,0.2088094592695596],[118,132,77,0.21023494704452758],[118,132,78,0.21161775891687593],[118,132,79,0.21302602733765097],[118,133,64,0.15649410479837045],[118,133,65,0.16256774279888084],[118,133,66,0.1687906708067956],[118,133,67,0.17515055507372462],[118,133,68,0.18166890725772514],[118,133,69,0.18837919724837077],[118,133,70,0.19529111758175471],[118,133,71,0.20239315769662847],[118,133,72,0.20864188066407213],[118,133,73,0.21088858446603725],[118,133,74,0.2128281475475629],[118,133,75,0.21451907805251388],[118,133,76,0.2160261395300777],[118,133,77,0.2174176615832856],[118,133,78,0.21876299294309376],[118,133,79,0.22013010350231563],[118,134,64,0.16674898966376223],[118,134,65,0.17269329360636973],[118,134,66,0.17878105895345636],[118,134,67,0.18499812284898298],[118,134,68,0.19136594057157486],[118,134,69,0.19791918679348103],[118,134,70,0.2046687568421818],[118,134,71,0.2116043056916488],[118,134,72,0.2158506906990022],[118,134,73,0.21807945791999803],[118,134,74,0.2199995733942025],[118,134,75,0.22166873986449084],[118,134,76,0.22315099054661577],[118,134,77,0.22451400657117518],[118,134,78,0.22582657688171126],[118,134,79,0.22715620712975176],[118,135,64,0.17677031622560077],[118,135,65,0.18258082314074367],[118,135,66,0.18852760397305987],[118,135,67,0.19459443188995937],[118,135,68,0.20080272320659381],[118,135,69,0.20718856210885633],[118,135,70,0.21376430036860167],[118,135,71,0.22043612592654435],[118,135,72,0.22300552888097241],[118,135,73,0.2252173556291015],[118,135,74,0.2271189661073035],[118,135,75,0.22876694125702982],[118,135,76,0.2302242800893412],[118,135,77,0.23155773162503818],[118,135,78,0.23283526865905407],[118,135,79,0.23412370987443937],[118,136,64,0.18647399620646793],[118,136,65,0.19214667626760268],[118,136,66,0.1979473939618926],[118,136,67,0.20385768113792402],[118,136,68,0.20989897885993794],[118,136,69,0.21610901992564216],[118,136,70,0.22250189037841875],[118,136,71,0.22759778742137096],[118,136,72,0.23014826475181266],[118,136,73,0.23234058143433428],[118,136,74,0.23422060198364972],[118,136,75,0.23584349938255886],[118,136,76,0.2372709751078003],[118,136,77,0.23856861256712014],[118,136,78,0.23980337084939235],[118,136,79,0.24104122527362068],[118,137,64,0.19579561282674451],[118,137,65,0.20132687501375454],[118,137,66,0.20697716877283925],[118,137,67,0.212725687277711],[118,137,68,0.2185939937010901],[118,137,69,0.22462170662787778],[118,137,70,0.23082491614542244],[118,137,71,0.23477650821948293],[118,137,72,0.23730309953982912],[118,137,73,0.2394704065594141],[118,137,74,0.24132252852122804],[118,137,75,0.2429129811628848],[118,137,76,0.24430194715183406],[118,137,77,0.24555365746584504],[118,137,78,0.2467339105459738],[118,137,79,0.24790773564275512],[118,138,64,0.20469077396339322],[118,138,65,0.2100773939211644],[118,138,66,0.21557350640065798],[118,138,67,0.2211559622566709],[118,138,68,0.22684656563999062],[118,138,69,0.23268702686940812],[118,138,70,0.2386956761763423],[118,138,71,0.24198148462627],[118,138,72,0.2444772438956513],[118,138,73,0.24661187672542542],[118,138,74,0.24842748614521937],[118,138,75,0.2499757213126642],[118,138,76,0.25131506550246124],[118,138,77,0.25250825148681266],[118,138,78,0.25361981103081294],[118,138,79,0.2547137648317314],[118,139,64,0.21313587926512978],[118,139,65,0.2183748467512488],[118,139,66,0.22371341452227664],[118,139,67,0.2291261864001653],[118,139,68,0.23463533595605537],[118,139,69,0.2402848169976095],[118,139,70,0.24609538290257332],[118,139,71,0.2492045228594697],[118,139,72,0.2516613098202735],[118,139,73,0.2537543703767152],[118,139,74,0.2555236224002697],[118,139,75,0.2570186781473586],[118,139,76,0.25829617677762096],[118,139,77,0.25941723959306484],[118,139,78,0.26044505458842604],[118,139,79,0.2614425965224375],[118,140,64,0.22112930343284237],[118,140,65,0.2262175867618779],[118,140,66,0.23139532941569954],[118,140,67,0.23663507933795497],[118,140,68,0.24195950548110498],[118,140,69,0.2474148854390187],[118,140,70,0.25302451198356235],[118,140,71,0.2564199389140448],[118,140,72,0.2588294148810081],[118,140,73,0.26087190625270495],[118,140,74,0.2625849970132189],[118,140,75,0.2640161257806074],[118,140,76,0.2652199698495352],[118,140,77,0.2662559461933162],[118,140,78,0.2671858358525042],[118,140,79,0.2680715377727828],[118,141,64,0.2286929978961809],[118,141,65,0.23362722278930878],[118,141,66,0.23864052447858702],[118,141,67,0.24370367094062376],[118,141,68,0.2488399375013093],[118,141,69,0.2540979221619],[118,141,70,0.2595034982672977],[118,141,71,0.2635841365031472],[118,141,72,0.26593899687939737],[118,141,73,0.267923198612942],[118,141,74,0.26957187630440393],[118,141,75,0.270930181387787],[118,141,76,0.2720507249766537],[118,141,77,0.2729911308938027],[118,141,78,0.2738117051186162],[118,141,79,0.27457322754006136],[118,142,64,0.23587451316419467],[118,142,65,0.24065055340170344],[118,142,66,0.24549493058908967],[118,142,67,0.25037697447326185],[118,142,68,0.25532064953765976],[118,142,69,0.26037677931181624],[118,142,70,0.2655737804218866],[118,142,71,0.2706348611639496],[118,142,72,0.27293033718575804],[118,142,73,0.2748514584799952],[118,142,74,0.27643081548673193],[118,142,75,0.27771116627426534],[118,142,76,0.27874294611212846],[118,142,77,0.2795818795621058],[118,142,78,0.28028670109893056],[118,142,79,0.28091698994615305],[118,143,64,0.2427346244047087],[118,143,65,0.24734752365554302],[118,143,66,0.25201746420807586],[118,143,67,0.2567127307771967],[118,143,68,0.26145802709682364],[118,143,69,0.26630621910363805],[118,143,70,0.2712881567696288],[118,143,71,0.2764143394995113],[118,143,72,0.27973478129435114],[118,143,73,0.2815917508456855],[118,143,74,0.28310106434717613],[118,143,75,0.2843029742473344],[118,143,76,0.28524561092942874],[118,143,77,0.28598266196544025],[118,143,78,0.2865711512131254],[118,143,79,0.2870693232110664],[118,144,64,0.24929399317687911],[118,144,65,0.253739285822295],[118,144,66,0.25822974016953],[118,144,67,0.2627330632188587],[118,144,68,0.26727474294700004],[118,144,69,0.2719094451306882],[118,144,70,0.2766702918755481],[118,144,71,0.2815703912943789],[118,144,72,0.28630821686777064],[118,144,73,0.2881004131446213],[118,144,74,0.28953959865773243],[118,144,75,0.29066341994205086],[118,144,76,0.2915175792372601],[118,144,77,0.2921535894737473],[118,144,78,0.29262661958387787],[118,144,79,0.2929934353332017],[118,145,64,0.25555931780824404],[118,145,65,0.25983340335096805],[118,145,66,0.26414023467215925],[118,145,67,0.26844747709774774],[118,145,68,0.27278144706263563],[118,145,69,0.2771983184073251],[118,145,70,0.2817332785227094],[118,145,71,0.2864019190451484],[118,145,72,0.291202731674723],[118,145,73,0.29434267073560966],[118,145,74,0.2957111876721762],[118,145,75,0.29675695372222693],[118,145,76,0.2975231387116355],[118,145,77,0.2980589580194594],[118,145,78,0.29841759180778515],[118,145,79,0.2986541891049631],[118,146,64,0.2615355692424855],[118,146,65,0.26563569403454573],[118,146,66,0.26975568146544016],[118,146,67,0.2738637419815527],[118,146,68,0.2779870601674643],[118,146,69,0.28218298290958843],[118,146,70,0.28648851352531524],[118,146,71,0.2909215615266332],[118,146,72,0.295483294614404],[118,146,73,0.30016044812355785],[118,146,74,0.30158335057784785],[118,146,75,0.30255074875812266],[118,146,76,0.3032292806333712],[118,146,77,0.30366576051921074],[118,146,78,0.3039112607249083],[118,146,79,0.3040191854261415],[118,147,64,0.26722602729632977],[118,147,65,0.2711502500950643],[118,147,66,0.2750810735437693],[118,147,67,0.2789878713824535],[118,147,68,0.2828987286961317],[118,147,69,0.28687179567113935],[118,147,70,0.2909456052989581],[118,147,71,0.29514018177800017],[118,147,72,0.29945923768928867],[118,147,73,0.3038923384076825],[118,147,74,0.3071264995678157],[118,147,75,0.3080148237314748],[118,147,76,0.3086057896721813],[118,147,77,0.30894373059654895],[118,147,78,0.3090775107227785],[118,147,79,0.3090586749871225],[118,148,64,0.2726323404096911],[118,148,65,0.2763794838886829],[118,148,66,0.2801196921633147],[118,148,67,0.2838241316610123],[118,148,68,0.28752181099619223],[118,148,69,0.29127128965416904],[118,148,70,0.29511231476842287],[118,148,71,0.29906678936366177],[118,148,72,0.303140805091741],[118,148,73,0.3073266525139451],[118,148,74,0.3116048043365623],[118,148,75,0.3131221517746599],[118,148,76,0.3136253303052304],[118,148,77,0.31386539528718405],[118,148,78,0.31388892517802625],[118,148,79,0.31374550886112046],[118,149,64,0.2777546089398363],[118,149,65,0.2813241992888055],[118,149,66,0.2848731632461441],[118,149,67,0.28837508023024644],[118,149,68,0.29185989485236535],[118,149,69,0.2953861694855175],[118,149,70,0.2989945297085903],[118,149,71,0.3027084952645192],[118,149,72,0.30653634048677486],[118,149,73,0.31047294300150247],[118,149,74,0.31450161664717635],[118,149,75,0.31784875563102766],[118,149,76,0.318263529905779],[118,149,77,0.3184061368239979],[118,149,78,0.3183208172079024],[118,149,79,0.318055128266337],[118,150,64,0.28259149205676837],[118,150,65,0.28598368881087016],[118,150,66,0.28934154124062594],[118,150,67,0.2926416331355991],[118,150,68,0.2959148464165664],[118,150,69,0.29921934014824825],[118,150,70,0.3025962726123376],[118,150,71,0.30607049949218607],[118,150,72,0.30965225618103137],[118,150,73,0.3133388393881838],[118,150,74,0.3171162845369408],[118,150,75,0.3209610355095229],[118,150,76,0.32249905854168026],[118,150,77,0.3225442636003525],[118,150,78,0.3223512839012017],[118,150,79,0.3219655937507897],[118,151,64,0.287140338303773],[118,151,65,0.2903558565484165],[118,151,66,0.2935234205120748],[118,151,67,0.29662316209026196],[118,151,68,0.2996868906295831],[118,151,69,0.30277196871973944],[118,151,70,0.3059197421784927],[118,151,71,0.30915611151634464],[118,151,72,0.3124930326136495],[118,151,73,0.31593002787343394],[118,151,74,0.31945570490530567],[118,151,75,0.323049279829922],[118,151,76,0.32631370552610983],[118,151,77,0.326261090410749],[118,151,78,0.32596128419534925],[118,151,79,0.32545765404529553],[118,152,64,0.2913973398969081],[118,152,65,0.29443736699927203],[118,152,66,0.2974160743459132],[118,152,67,0.3003176210525403],[118,152,68,0.30317472322624783],[118,152,69,0.30604357925185915],[118,152,70,0.3089653885158003],[118,152,71,0.3119668035966238],[118,152,72,0.3150612482495162],[118,152,73,0.31825025705537924],[118,152,74,0.3215248343534776],[118,152,75,0.32486683008377537],[118,152,76,0.3282503301838944],[118,152,77,0.32954102807081354],[118,152,78,0.32913474056691544],[118,152,79,0.32851485482699216],[118,153,64,0.2953577108473467],[118,153,65,0.2982238198703464],[118,153,66,0.30101562165446183],[118,153,67,0.3037217024397919],[118,153,68,0.306375654422644],[118,153,69,0.30903218089412104],[118,153,70,0.31173202216258533],[118,153,71,0.3145022971123642],[118,153,72,0.317357639955592],[118,153,73,0.32030136970269535],[118,153,74,0.32332669052828217],[118,153,75,0.32641792119014706],[118,153,76,0.32955175165090805],[118,153,77,0.3323716825207136],[118,153,78,0.33185866470335174],[118,153,79,0.33112368763363553],[118,154,64,0.2990158890027277],[118,154,65,0.30170995096142716],[118,154,66,0.30431722148965945],[118,154,67,0.30683102308381444],[118,154,68,0.30928578439322857],[118,154,69,0.31173442936876783],[118,154,70,0.3142169570282894],[118,154,71,0.31676068198833546],[118,154,72,0.3193811939437731],[118,154,73,0.3220833606428182],[118,154,74,0.32486237307837207],[118,154,75,0.3277048315725467],[118,154,76,0.33058987139713697],[118,154,77,0.3334903265495163],[118,154,78,0.3341233073264101],[118,154,79,0.3332737791698368],[118,155,64,0.3023657621177087],[118,155,65,0.30488985924221496],[118,155,66,0.30731529547726893],[118,155,67,0.30964034004508095],[118,155,68,0.3119002106573775],[118,155,69,0.3141458219171893],[118,155,70,0.3164161873719965],[118,155,71,0.3187385693215568],[118,155,72,0.3211292673687614],[118,155,73,0.32359446083084054],[118,155,74,0.3261311042551598],[118,155,75,0.32872787521616664],[118,155,76,0.33136617351146785],[118,155,77,0.33402117082660565],[118,155,78,0.33592233234215124],[118,155,79,0.3349581212500787],[118,156,64,0.30540091807886094],[118,156,65,0.30775726025171823],[118,156,66,0.3100037783025299],[118,156,67,0.3121437964170187],[118,156,68,0.3142132675079142],[118,156,69,0.316260925849049],[118,156,70,0.31832459894353077],[118,156,71,0.3204312773229544],[118,156,72,0.3225977406757424],[118,156,73,0.324831247667312],[118,156,74,0.3271302891921663],[118,156,75,0.32948540470834664],[118,156,76,0.3318800612233448],[118,156,77,0.3342915944287201],[118,156,78,0.3366922114194371],[118,156,79,0.33617334162876916],[118,157,64,0.30811491942589264],[118,157,65,0.31030576596606185],[118,157,66,0.3123763963937873],[118,157,67,0.3143351972676244],[118,157,68,0.31621879762966315],[118,157,69,0.3180736408400034],[118,157,70,0.31993621442579173],[118,157,71,0.32183305069871365],[118,157,72,0.32378120080141914],[118,157,73,0.32578878163915875],[118,157,74,0.3278555958995493],[118,157,75,0.32997382525362423],[118,157,76,0.33212879672908463],[118,157,77,0.33429982215331777],[118,157,78,0.3364611104805479],[118,157,79,0.33692001597592974],[118,158,64,0.3105016023297745],[118,158,65,0.31252919129958373],[118,158,66,0.3144269749692112],[118,158,67,0.3162083158839607],[118,158,68,0.317910456073846],[118,158,69,0.3195774951408209],[118,158,70,0.32124447333251144],[118,158,71,0.3229373136097435],[118,158,72,0.32467315534296826],[118,158,73,0.32646076936596075],[118,158,74,0.3283010550152611],[118,158,75,0.33018761965592025],[118,158,76,0.332107441073031],[118,158,77,0.3340416129957316],[118,158,78,0.3359661739172845],[118,158,79,0.3372030212681813],[118,159,64,0.31255540020783656],[118,159,65,0.3144218874239672],[118,159,66,0.3161497736314766],[118,159,67,0.3177572305046231],[118,159,68,0.3192820467733585],[118,159,69,0.3207659758791738],[118,159,70,0.32224254653275003],[118,159,71,0.32373695636278194],[118,159,72,0.3252662778219165],[118,159,73,0.326839753143001],[118,159,74,0.328459179359738],[118,159,75,0.3301193842618495],[118,159,76,0.3318087940170241],[118,159,77,0.3335100930618273],[118,159,78,0.33520097674295807],[118,159,79,0.3368549970802324],[118,160,64,0.3142716921772083],[118,160,65,0.3159791021119831],[118,160,66,0.3175398507171065],[118,160,67,0.31897669174704646],[118,160,68,0.32032789180555493],[118,160,69,0.3216328936563473],[118,160,70,0.3229236855931325],[118,160,71,0.3242246560043201],[118,160,72,0.32555268418479194],[118,160,73,0.3269173270838252],[118,160,74,0.3283211033482437],[118,160,75,0.3297598758618345],[118,160,76,0.3312233338295834],[118,160,77,0.3326955753100273],[118,160,78,0.33415579096268466],[118,160,79,0.33557904965169433],[118,161,64,0.3156471765708926],[118,161,65,0.31719736733601445],[118,161,66,0.31859345663091787],[118,161,67,0.3198625209603265],[118,161,68,0.3210432336329576],[118,161,69,0.32217278166438634],[118,161,70,0.3232816071508919],[118,161,71,0.32439323100853146],[118,161,72,0.32552424069946384],[118,161,73,0.32668437997836486],[118,161,74,0.32787674232382485],[118,161,75,0.3290980695494904],[118,161,76,0.3303391569245774],[118,161,77,0.3315853659750197],[118,161,78,0.33281724598667706],[118,161,79,0.3340112650924757],[118,162,64,0.31668026976436753],[118,162,65,0.3180749143759545],[118,162,66,0.31930845642068834],[118,162,67,0.32041203975914206],[118,162,68,0.3214246705773196],[118,162,69,0.32238132957384175],[118,162,70,0.32331091255427297],[118,162,71,0.32423603027180115],[118,162,72,0.3251729034244532],[118,162,73,0.3261313649970383],[118,162,74,0.32711497188334865],[118,162,75,0.3281212275437185],[118,162,76,0.3291419172770846],[118,162,77,0.3301635575170553],[118,162,78,0.3311679604000508],[118,162,79,0.33213291470212786],[118,163,64,0.31737153058636086],[118,163,65,0.3186121167177971],[118,163,66,0.31968478187428473],[118,163,67,0.3206245310218431],[118,163,68,0.321470625810238],[118,163,69,0.3222558524697916],[118,163,70,0.3230075430332906],[118,163,71,0.32374735665081517],[118,163,72,0.32449108944969757],[118,163,73,0.3252485963882217],[118,163,74,0.32602382728086965],[118,163,75,0.3268149789837016],[118,163,76,0.32761476554321917],[118,163,77,0.3284108079327365],[118,163,78,0.3291861448287604],[118,163,79,0.3299198657181196],[118,164,64,0.31772125571432386],[118,164,65,0.31880883511085734],[118,164,66,0.3197215426030443],[118,164,67,0.32049812472171],[118,164,68,0.3211780152671961],[118,164,69,0.32179175283122063],[118,164,70,0.32236505193309933],[118,164,71,0.32291856918669604],[118,164,72,0.3234676316891905],[118,164,73,0.3240220815146321],[118,164,74,0.32458623871378683],[118,164,75,0.3251589850249445],[118,164,76,0.3257339703070019],[118,164,77,0.3262999435182545],[118,164,78,0.32684120988387927],[118,164,79,0.3273382157241064],[118,165,64,0.3177122554275368],[118,165,65,0.31864553400884893],[118,165,66,0.3193966821399341],[118,165,67,0.3200080656352801],[118,165,68,0.3205191959750901],[118,165,69,0.3209583107231792],[118,165,70,0.32134947349065807],[118,165,71,0.32171232440154185],[118,165,72,0.32206172673587263],[118,165,73,0.32240753348472556],[118,165,74,0.3227544764347966],[118,165,75,0.3231021801964568],[118,165,76,0.3234453033883018],[118,165,77,0.32377380899538827],[118,165,78,0.32407336572954293],[118,165,79,0.3243258820404377],[118,166,64,0.3173251657659363],[118,166,65,0.3181000778547267],[118,166,66,0.3186852298402624],[118,166,67,0.3191264186484352],[118,166,68,0.3194631308436301],[118,166,69,0.3197213000232532],[118,166,70,0.31992336552449385],[118,166,71,0.3200880023010466],[118,166,72,0.320229682562692],[118,166,73,0.3203583610686856],[118,166,74,0.3204792869104249],[118,166,75,0.32059294440819247],[118,166,76,0.3206951255385574],[118,166,77,0.32077713610530106],[118,166,78,0.3208261376696238],[118,166,79,0.32082562706701545],[118,167,64,0.3165479836486301],[118,167,65,0.31715829911382326],[118,167,66,0.3175708263678985],[118,167,67,0.3178345315687884],[118,167,68,0.3179887721202201],[118,167,69,0.3180572371541565],[118,167,70,0.31806083462852186],[118,167,71,0.3180173920128243],[118,167,72,0.3179411275178722],[118,167,73,0.31784224885814366],[118,167,74,0.31772668260838205],[118,167,75,0.31759593699825106],[118,167,76,0.3174471007729999],[118,167,77,0.31727298053618663],[118,167,78,0.31706237878473387],[118,167,79,0.31680051464915626],[118,168,64,0.3153742143360382],[118,168,65,0.3158121254504115],[118,168,66,0.3160438290581173],[118,168,67,0.3161211230951754],[118,168,68,0.31608313610903566],[118,168,69,0.31595144236741746],[118,168,70,0.3157455803937105],[118,168,71,0.3154827127646558],[118,168,72,0.31517700010424776],[118,168,73,0.3148391067965174],[118,168,74,0.31447584171807863],[118,168,75,0.3140899370659369],[118,168,76,0.3136799681319036],[118,168,77,0.3132404166542526],[118,168,78,0.31276188016212914],[118,168,79,0.31223142952102734],[118,169,64,0.3138008090510984],[118,169,65,0.3140574909177301],[118,169,66,0.31409919682206944],[118,169,67,0.31398014684412756],[118,169,68,0.3137391515689325],[118,169,69,0.313395874130967],[118,169,70,0.3129687145199761],[118,169,71,0.3124744143116117],[118,169,72,0.3119273258110948],[118,169,73,0.3113388175539007],[118,169,74,0.3107168197200593],[118,169,75,0.31006551278482614],[118,169,76,0.30938516249521913],[118,169,77,0.3086721040314912],[118,169,78,0.30791887798724676],[118,169,79,0.307114520584009],[118,170,64,0.311825951092926],[118,170,65,0.31189209520355166],[118,170,66,0.3117342238860308],[118,170,67,0.3114085058306023],[118,170,68,0.31095336116262406],[118,170,69,0.31038682062086004],[118,170,70,0.3097264429124313],[118,170,71,0.30898884831681694],[118,170,72,0.30818887511749005],[118,170,73,0.30733887760511425],[118,170,74,0.3064481694828921],[118,170,75,0.30552261626135163],[118,170,76,0.30456437998645547],[118,170,77,0.3035718194037006],[118,170,78,0.30253954842418607],[118,170,79,0.3014586555289008],[118,171,64,0.30944668868780884],[118,171,65,0.3093130092240731],[118,171,66,0.3089461207153855],[118,171,67,0.308403615818699],[118,171,68,0.3077234744476614],[118,171,69,0.3069224468927794],[118,171,70,0.30601760943390416],[118,171,71,0.3050258094656533],[118,171,72,0.3039627015664934],[118,171,73,0.3028419310410001],[118,171,74,0.30167446905900624],[118,171,75,0.3004681032614113],[118,171,76,0.2992270874476848],[118,171,77,0.297951953706876],[118,171,78,0.29663949010468044],[118,171,79,0.29528288679635206],[118,172,64,0.3066564126574699],[118,172,65,0.3063141251948725],[118,172,66,0.305729440310945],[118,172,67,0.3049608157980554],[118,172,68,0.3040457707427133],[118,172,69,0.3030001961556573],[118,172,70,0.3018410998367908],[118,172,71,0.3005859449494344],[118,172,72,0.2992515586713356],[118,172,73,0.29785319501096713],[118,172,74,0.2964037562251153],[118,172,75,0.29491317700790975],[118,172,76,0.29338797535402705],[118,172,77,0.29183097373225136],[118,172,78,0.29024119394241393],[118,172,79,0.28861392877159237],[118,173,64,0.30344217681450064],[118,173,65,0.30288344913837295],[118,173,66,0.30207334789742724],[118,173,67,0.3010706236760724],[118,173,68,0.29991235004003813],[118,173,69,0.29861404341089254],[118,173,70,0.2971931042430175],[118,173,71,0.2956680308056562],[118,173,72,0.2940571942718811],[118,173,73,0.2923777755584262],[118,173,74,0.290644868683406],[118,173,75,0.288870755129738],[118,173,76,0.2870643534205598],[118,173,77,0.28523084783162544],[118,173,78,0.2833714998871691],[118,173,79,0.28148364601282533],[118,174,64,0.29978185882048536],[118,174,65,0.29900023361337286],[118,174,66,0.2979587318514452],[118,174,67,0.2967158351057494],[118,174,68,0.29530822996753614],[118,174,69,0.29375159955689184],[118,174,70,0.29206423638181134],[118,174,71,0.29026611344841907],[118,174,72,0.28837752081250084],[118,174,73,0.2864178724706615],[118,174,74,0.2844046887071086],[118,174,75,0.282352758717957],[118,174,76,0.28027348803778424],[118,174,77,0.27817443499554884],[118,174,78,0.27605904013166155],[118,174,79,0.27392655221788215],[118,175,64,0.295656381473591],[118,175,65,0.29464702368495566],[118,175,66,0.2933699860571772],[118,175,67,0.2918829376120368],[118,175,68,0.29022227140297274],[118,175,69,0.28840441448709664],[118,175,70,0.28644907021439664],[118,175,71,0.2843781298814511],[118,175,72,0.28221416729061227],[118,175,73,0.2799791132805043],[118,175,74,0.277693115708364],[118,175,75,0.2753735900541959],[118,175,76,0.2730344655023454],[118,175,77,0.27068563104067156],[118,175,78,0.2683325858038672],[118,175,79,0.2659762975787209],[118,176,64,0.29109866690404035],[118,176,65,0.289858165599909],[118,176,66,0.2883427977450993],[118,176,67,0.28660884711155965],[118,176,68,0.28469248490354004],[118,176,69,0.2826114351834762],[118,176,70,0.2803873028064044],[118,176,71,0.27804431135585667],[118,176,72,0.27560765455765024],[118,176,73,0.2731020380623149],[118,176,74,0.2705504174480637],[118,176,75,0.2679729379681328],[118,176,76,0.26538608123371027],[118,176,77,0.2628020236894273],[118,176,78,0.2602282114054658],[118,176,79,0.25766715538203083],[118,177,64,0.2861566430816846],[118,177,65,0.28468325041468073],[118,177,66,0.2829283218468452],[118,177,67,0.2809461658846646],[118,177,68,0.2787727743790063],[118,177,69,0.2764276756971554],[118,177,70,0.2739348187622769],[118,177,71,0.2713211262617228],[118,177,72,0.26861470438285723],[118,177,73,0.265843253741819],[118,177,74,0.2630326877253487],[118,177,75,0.2602059641197409],[118,177,76,0.25738213554968165],[118,177,77,0.2545756238962303],[118,177,78,0.2517957235106389],[118,177,79,0.24904633769245907],[118,178,64,0.2808787448579163],[118,178,65,0.2791726930614233],[118,178,66,0.27717891801239986],[118,178,67,0.2749491748907935],[118,178,68,0.2725192969842301],[118,178,69,0.26991106927655834],[118,178,70,0.2671511688349623],[118,178,71,0.26426952592801684],[118,178,72,0.2612973962380867],[118,178,73,0.2582656452027795],[118,178,74,0.2552032510611959],[118,178,75,0.25213603281671104],[118,178,76,0.24908560895813606],[118,178,77,0.24606859240848689],[118,178,78,0.2430960267985187],[118,178,79,0.24017306879421604],[118,179,64,0.27531333358469595],[118,179,65,0.27337707358817304],[118,179,66,0.27114739579761593],[118,179,67,0.2686729625242861],[118,179,68,0.2659894535109195],[118,179,69,0.26312129820023333],[118,179,70,0.2600982176305182],[118,179,71,0.2569533900294572],[118,179,72,0.25372139230571455],[118,179,73,0.2504363644261166],[118,179,74,0.24713040358840416],[118,179,75,0.24383219471814996],[118,179,76,0.24056588343056928],[118,179,77,0.23735019720682787],[118,179,78,0.2341978201435653],[118,179,79,0.23111502624735825],[118,180,64,0.2695080944160962],[118,180,65,0.267346457279938],[118,180,66,0.26488624199959937],[118,180,67,0.2621725405537583],[118,180,68,0.25924087296756376],[118,180,69,0.2561186272933994],[118,180,70,0.2528388073604468],[118,180,71,0.24943800350640208],[118,180,72,0.24595421266526246],[118,180,73,0.2424248916506723],[118,180,74,0.23888525084978246],[118,180,75,0.23536679514483266],[118,180,76,0.2318961184748388],[118,180,77,0.2284939580412761],[118,180,78,0.225174513753045],[118,180,79,0.22194503810115107],[118,181,64,0.2635094107979458],[118,181,65,0.2611296931506308],[118,181,66,0.2584468296247925],[118,181,67,0.2555019467319828],[118,181,68,0.2523303908448812],[118,181,69,0.24896274064818832],[118,181,70,0.24543543719951258],[118,181,71,0.24178856461043716],[118,181,72,0.23806356034460935],[118,181,73,0.234301168333312],[118,181,74,0.23053964239232802],[118,181,75,0.22681320701116628],[118,181,76,0.22315078216541492],[118,181,77,0.21957497837860854],[118,181,78,0.21610136783522202],[118,181,79,0.2127380369252522],[118,182,64,0.25736171562010035],[118,182,65,0.2547736902632697],[118,182,66,0.2518786079415109],[118,182,67,0.24871333352997485],[118,182,68,0.24531302053116152],[118,182,69,0.2417115810354575],[118,182,70,0.23794895777629596],[118,182,71,0.23406872366016473],[118,182,72,0.2301156958964749],[118,182,73,0.2261338016643845],[118,182,74,0.22216420302735262],[118,182,75,0.218243688380213],[118,182,76,0.21440333727956906],[118,182,77,0.21066746506990006],[118,182,78,0.20705285327873407],[118,182,79,0.2035682713186884],[118,183,64,0.25110681847499716],[118,183,65,0.2483226713036922],[118,183,66,0.2452282730362141],[118,183,67,0.2418560424167899],[118,183,68,0.23824091731044506],[118,183,69,0.2344201914661448],[118,183,70,0.23043728029624633],[118,183,71,0.2263391520675343],[118,183,72,0.22217386114087936],[118,183,73,0.21798834037945322],[118,183,74,0.21382646061683686],[118,183,75,0.20972736463914549],[118,183,76,0.20572408268972012],[118,183,77,0.20184243605463525],[118,183,78,0.19810023483617306],[118,183,79,0.19450677557366844],[118,184,64,0.2447832084364862],[118,184,65,0.24181740280222402],[118,184,66,0.23853891826200216],[118,184,67,0.23497566307637377],[118,184,68,0.23116233434760686],[118,184,69,0.22713955833345292],[118,184,70,0.22295409977355352],[118,184,71,0.21865614117594295],[118,184,72,0.2142967517005044],[118,184,73,0.20992562160067332],[118,184,74,0.20558907024565756],[118,184,75,0.20132833529925512],[118,184,76,0.1971781501765079],[118,184,77,0.19316561643963784],[118,184,78,0.18930937733395187],[118,184,79,0.1856190982069426],[118,185,64,0.23842533174403502],[118,185,65,0.23529440136790644],[118,185,66,0.23184916393827107],[118,185,67,0.22811307692430938],[118,185,68,0.22412057003770183],[118,185,69,0.21991545554327308],[118,185,70,0.2155476318283322],[118,185,71,0.21107023043679737],[118,185,72,0.20653703794784423],[118,185,73,0.20200018844069437],[118,185,74,0.19750813464725522],[118,185,75,0.1931039054415749],[118,185,76,0.1888236568534447],[118,185,77,0.18469552332675515],[118,185,78,0.180738775475399],[118,185,79,0.17696329012492798],[118,186,64,0.23206284374914077],[118,186,65,0.22878511527085635],[118,186,66,0.2251922656320182],[118,186,67,0.22130348426029098],[118,186,68,0.2171529060722235],[118,186,69,0.21278728901904173],[118,186,70,0.20825936248923638],[118,186,71,0.20362486444111405],[118,186,72,0.19893993398052753],[118,186,73,0.19425877810828707],[118,186,74,0.18963162076645856],[118,186,75,0.18510294185593104],[118,186,76,0.1807100134318258],[118,186,77,0.1764817398123062],[118,186,78,0.17243780786416724],[118,186,79,0.1685881532595914],[118,187,64,0.2257198344550587],[118,187,65,0.22231508068205735],[118,187,66,0.21859520032590282],[118,187,67,0.2145754143686056],[118,187,68,0.21028953555418853],[118,187,69,0.20578694095060648],[118,187,70,0.20112281043062577],[118,187,71,0.1963550783189176],[118,187,72,0.19154181424607053],[118,187,73,0.18673888026985083],[118,187,74,0.18199787236938103],[118,187,75,0.17736435395955047],[118,187,76,0.17287638860561927],[118,187,77,0.16856337864532706],[118,187,78,0.164445215952017],[118,187,79,0.16053175060160632],[118,188,64,0.21941402695546502],[118,188,65,0.21590305185404132],[118,188,66,0.21207772975349845],[118,188,67,0.20794971785646948],[118,188,68,0.20355248047482852],[118,188,69,0.19893761314227582],[118,188,70,0.19416230106538188],[118,188,71,0.18928621101924728],[118,188,72,0.18436887744710376],[118,188,73,0.17946736544197722],[118,188,74,0.1746342186438647],[118,188,75,0.16991569962850997],[118,188,76,0.16535032989749554],[118,188,77,0.16096773610775544],[118,188,78,0.1567878087058201],[118,188,79,0.1528201786624316],[118,189,64,0.21315594805525212],[118,189,65,0.20956010450338386],[118,189,66,0.20565144016114326],[118,189,67,0.20143854050165216],[118,189,68,0.1969544978500633],[118,189,69,0.19225266880597872],[118,189,70,0.18739175191231386],[118,189,71,0.1824326459903673],[118,189,72,0.1774358573756338],[118,189,73,0.17245918322014847],[118,189,74,0.1675556787776691],[118,189,75,0.16277191613396952],[118,189,76,0.158146541381604],[118,189,77,0.15370913677039869],[118,189,78,0.14947939389567796],[118,189,79,0.1454666035201054],[118,190,64,0.20694807033599544],[118,190,65,0.20328871163539677],[118,190,66,0.19931875773703225],[118,190,67,0.19504427786506776],[118,190,68,0.19049797380345593],[118,190,69,0.18573447213989472],[118,190,70,0.1808134686593358],[118,190,71,0.17579657879175647],[118,190,72,0.1707447803485228],[118,190,73,0.1657161301857011],[118,190,74,0.1607637625536101],[118,190,75,0.15593417644338867],[118,190,76,0.15126581878410625],[118,190,77,0.14678796988162487],[118,190,78,0.14251993702703247],[118,190,79,0.13847056174217304],[118,191,64,0.20078392491002917],[118,191,65,0.19708179103314416],[118,191,66,0.19307193893205019],[118,191,67,0.1887585099112589],[118,191,68,0.18417380487432644],[118,191,69,0.1793732250313813],[118,191,70,0.1744169513505057],[118,191,71,0.1693668111868631],[118,191,72,0.1642837689463152],[118,191,73,0.15922568737750942],[118,191,74,0.1542453670612339],[118,191,75,0.14938887122468542],[118,191,76,0.1446941425586385],[118,191,77,0.14018991826093297],[118,191,78,0.1358949490741359],[118,191,79,0.13181752763279422],[118,192,64,0.1946471840920406],[118,192,65,0.1909217236185132],[118,192,66,0.18689203488484596],[118,192,67,0.18256091487145662],[118,192,68,0.17796026582666594],[118,192,69,0.17314580022700476],[118,192,70,0.16817771013805563],[118,192,71,0.1631175712898618],[118,192,72,0.15802589179508633],[118,192,73,0.15295992726767815],[118,192,74,0.14797176969444228],[118,192,75,0.14310671697957558],[118,192,76,0.1384019296416975],[118,192,77,0.1338853806976027],[118,192,78,0.12957510432081906],[118,192,79,0.1254787484200439],[118,193,64,0.18851071320489055],[118,193,65,0.1847793418817401],[118,193,66,0.18074782915502413],[118,193,67,0.17641816157939938],[118,193,68,0.1718218632356027],[118,193,69,0.16701457032108133],[118,193,70,0.1620560900587775],[118,193,71,0.15700735936971205],[118,193,72,0.15192805917506758],[118,193,73,0.14687449024064234],[118,193,74,0.14189771768243842],[118,193,75,0.13704199082963422],[118,193,76,0.13234344471072607],[118,193,77,0.12782908899366874],[118,193,78,0.12351608977514722],[118,193,79,0.119411349181596],[118,194,64,0.182335590727053],[118,194,65,0.1786128875676316],[118,194,66,0.1745947479631837],[118,194,67,0.1702827795094168],[118,194,68,0.16570817413351235],[118,194,69,0.1609262319274544],[118,194,70,0.1559961043175694],[118,194,71,0.15097781895064794],[118,194,72,0.1459299642902466],[118,194,73,0.14090763064221368],[118,194,74,0.13596061448706087],[118,194,75,0.1311318925844114],[118,194,76,0.12645637189477402],[118,194,77,0.1219599209396551],[118,194,78,0.11765868779620993],[118,194,79,0.11355870950107558],[118,195,64,0.1809857481296319],[118,195,65,0.1754803322445942],[118,195,66,0.16981921871537708],[118,195,67,0.1640927805564137],[118,195,68,0.1595535027853287],[118,195,69,0.15481151245222052],[118,195,70,0.14992521030889935],[118,195,71,0.14495360410789304],[118,195,72,0.13995406531711096],[118,195,73,0.1349803373437606],[118,195,74,0.13008080190679447],[118,195,75,0.12529700979453146],[118,195,76,0.12066248183423925],[118,195,77,0.11620178548660788],[118,195,78,0.11192989206384354],[118,195,79,0.10785181915922037],[118,196,64,0.18406912260339048],[118,196,65,0.17844191368636236],[118,196,66,0.17266511776545024],[118,196,67,0.16673259744890118],[118,196,68,0.1606677013844849],[118,196,69,0.15451773955904097],[118,196,70,0.14833340550249285],[118,196,71,0.14216593112451628],[118,196,72,0.13606490395583198],[118,196,73,0.13007633262517623],[118,196,74,0.12424096697592478],[118,196,75,0.11949025641127506],[118,196,76,0.11491465087150213],[118,196,77,0.11050785020013013],[118,196,78,0.10628348602701058],[118,196,79,0.10224538878692768],[118,197,64,0.1844525803718915],[118,197,65,0.181226454868195],[118,197,66,0.17533700730921778],[118,197,67,0.16929870594119273],[118,197,68,0.163134932809407],[118,197,69,0.1568925947475012],[118,197,70,0.15062157376527502],[118,197,71,0.1443719657593513],[118,197,72,0.1381919779153483],[118,197,73,0.1321260694505787],[118,197,74,0.12621334185729696],[118,197,75,0.1204861844233005],[118,197,76,0.11496918041637974],[118,197,77,0.10967827892523171],[118,197,78,0.10462023695639068],[118,197,79,0.0997923359969128],[118,198,64,0.1840814839206388],[118,198,65,0.1826669240898527],[118,198,66,0.17783157354774706],[118,198,67,0.17169337699527634],[118,198,68,0.1654371272096407],[118,198,69,0.1591092153859774],[118,198,70,0.15275856067545657],[118,198,71,0.1464339484218934],[118,198,72,0.14018201722755336],[118,198,73,0.13404548377858083],[118,198,74,0.12806161132677188],[118,198,75,0.12226092735177045],[118,198,76,0.11666619554851845],[118,198,77,0.11129164690230008],[118,198,78,0.10614247423240875],[118,198,79,0.10121459420755534],[118,199,64,0.1836541396098695],[118,199,65,0.18205528008421096],[118,199,66,0.18014144987029887],[118,199,67,0.17391077580489805],[118,199,68,0.16756971689991906],[118,199,69,0.1611639879577274],[118,199,70,0.1547413443699651],[118,199,71,0.14834903974209293],[118,199,72,0.142031914688117],[118,199,73,0.13583071676538205],[118,199,74,0.1297806571560349],[118,199,75,0.12391020934126783],[118,199,76,0.11824015464783542],[118,199,77,0.11278287917689159],[118,199,78,0.10754192625727033],[118,199,79,0.10251180820103106],[118,200,64,0.18319114436294015],[118,200,65,0.18139318657280804],[118,200,66,0.17958300906256494],[118,200,67,0.17594219746264425],[118,200,68,0.16952469485386193],[118,200,69,0.16304932808353245],[118,200,70,0.1565624586745988],[118,200,71,0.15010956057585595],[118,200,72,0.143733424541282],[118,200,73,0.13747258572475604],[118,200,74,0.13135997977492014],[118,200,75,0.12542183236854165],[118,200,76,0.11967678676872967],[118,200,77,0.11413527363999679],[118,200,78,0.10879912699968422],[118,200,79,0.10366144983660498],[118,201,64,0.18271298375758782],[118,201,65,0.18070067721006106],[118,201,66,0.17866989437762237],[118,201,67,0.1766083416604361],[118,201,68,0.17129249368235325],[118,201,69,0.16475568471097327],[118,201,70,0.15821212920057062],[118,201,71,0.15170526294160477],[118,201,72,0.14527556733955652],[118,201,73,0.13895911818132464],[118,201,74,0.13278635312556913],[118,201,75,0.12678106251524235],[118,201,76,0.12095960777544579],[118,201,77,0.11533037132276],[118,201,78,0.10989344157749883],[118,201,79,0.10464053633964476],[118,202,64,0.1822386284057404],[118,202,65,0.17999677862961055],[118,202,66,0.17773145073741914],[118,202,67,0.17542771517992717],[118,202,68,0.17286377028182487],[118,202,69,0.16627346002428064],[118,202,70,0.1596803374399288],[118,202,71,0.1531255434512576],[118,202,72,0.14664699392163535],[118,202,73,0.14027806363596815],[118,202,74,0.13404647757478053],[118,202,75,0.12797341370650095],[118,202,76,0.12207282120696356],[118,202,77,0.11635095769799396],[118,202,78,0.11080614878251335],[118,202,79,0.10542877284333455],[118,203,64,0.18178424520879144],[118,203,65,0.1792981362289726],[118,203,66,0.1767848656478946],[118,203,67,0.17422644250962638],[118,203,68,0.17158569001441706],[118,203,69,0.16759484518931028],[118,203,70,0.16095881318845487],[118,203,71,0.154361599796229],[118,203,72,0.1478383093148293],[118,203,73,0.14141938410424965],[118,203,74,0.13512963220394472],[118,203,75,0.1289874529143386],[118,203,76,0.12300426386243013],[118,203,77,0.11718413278099682],[118,203,78,0.11152361693928688],[118,203,79,0.10601181287583047],[118,204,64,0.18136202421520145],[118,204,65,0.17861775306446132],[118,204,66,0.17584392130203688],[118,204,67,0.1730190954687972],[118,204,68,0.17010511416870025],[118,204,69,0.16705378163351842],[118,204,70,0.162042955557929],[118,204,71,0.1554085307968649],[118,204,72,0.14884435733194576],[118,204,73,0.14237772446935928],[118,204,74,0.13603032779436372],[118,204,75,0.1298176284193631],[118,204,76,0.12374839797032051],[118,204,77,0.1178244521515811],[118,204,78,0.1120405754629526],[118,204,79,0.10638463938117285],[118,205,64,0.18097912193485619],[118,205,65,0.17796384260394213],[118,205,66,0.17491774080924366],[118,205,67,0.17181561021470468],[118,205,68,0.16861818434044035],[118,205,69,0.16527923988166823],[118,205,70,0.16175542687458339],[118,205,71,0.15626738046103109],[118,205,72,0.1496664665849844],[118,205,73,0.14315486365976238],[118,205,74,0.13675096181161434],[118,205,75,0.13046712272784822],[118,205,76,0.12430935182621028],[118,205,77,0.11827714105900154],[118,205,78,0.11236348453851823],[118,205,79,0.10655506893677164],[118,206,64,0.18063672209744241],[118,206,65,0.17733879621323795],[118,206,66,0.1740096445850889],[118,206,67,0.17062001003456806],[118,206,68,0.16712941184529603],[118,206,69,0.1634937316747698],[118,206,70,0.15967251349735068],[118,206,71,0.1556299491767203],[118,206,72,0.15031465857963508],[118,206,73,0.14376214761878858],[118,206,74,0.13730447666602813],[118,206,75,0.13095073173178143],[118,206,76,0.12470401079204076],[118,206,77,0.1185613837970183],[118,206,78,0.11251400538705536],[118,206,79,0.1065473818900438],[118,207,64,0.1803309174340901],[118,207,65,0.17673951942528318],[118,207,66,0.1731170652481303],[118,207,67,0.16943003504231],[118,207,68,0.1656366447560826],[118,207,69,0.16169498657596362],[118,207,70,0.1575676617004335],[118,207,71,0.15322245752682856],[118,207,72,0.14863284490461712],[118,207,73,0.14377835414048198],[118,207,74,0.13771270732741975],[118,207,75,0.1312924593045277],[118,207,76,0.12495879305776371],[118,207,77,0.11870623775376297],[118,207,78,0.11252403383077314],[118,207,79,0.10639648136951635],[118,208,64,0.18005921307079822],[118,208,65,0.17616281826292318],[118,208,66,0.17223627635639283],[118,208,67,0.1682417205973322],[118,208,68,0.16413602955944756],[118,208,69,0.15987959302038457],[118,208,70,0.15543819798050776],[118,208,71,0.15078337991470359],[118,208,72,0.1458926781718039],[118,208,73,0.1407497910329814],[118,208,74,0.13534462894442462],[118,208,75,0.12967326458953127],[118,208,76,0.12373777861339835],[118,208,77,0.11754599995665327],[118,208,78,0.1111111398968352],[118,208,79,0.10445131903036602],[118,209,64,0.17981853403641795],[118,209,65,0.17560524835385175],[118,209,66,0.1713637197419317],[118,209,67,0.16705178865566256],[118,209,68,0.16262502135529025],[118,209,69,0.1580461699106452],[118,209,70,0.15328429157264534],[118,209,71,0.148314761472543],[118,209,72,0.14311927549783818],[118,209,73,0.13768577516772534],[118,209,74,0.13200829362319025],[118,209,75,0.1260867219618506],[118,209,76,0.11992649525922408],[118,209,77,0.11353819772573231],[118,209,78,0.10693708655289605],[118,209,79,0.10014253409988577],[118,210,64,0.179603749027857],[118,210,65,0.17506207000460858],[118,210,66,0.1704952566319647],[118,210,67,0.16585704085937314],[118,210,68,0.16110175485513298],[118,210,69,0.156194549769046],[118,210,70,0.15110778829513605],[118,210,71,0.1458207115640413],[118,210,72,0.1403191826337471],[118,210,73,0.13459537557177528],[118,210,74,0.1286474098534977],[118,210,75,0.12247892987955947],[118,210,76,0.11609862948934946],[118,210,77,0.10951972141676088],[118,210,78,0.10275935169999137],[118,210,79,0.09583795911615967],[118,211,64,0.1794075321941852],[118,211,65,0.1745270033908569],[118,211,66,0.1696258158966819],[118,211,67,0.1646538974273911],[118,211,68,0.15956447136449256],[118,211,69,0.15432509306896863],[118,211,70,0.14891141360212495],[118,211,71,0.1433064991900628],[118,211,72,0.13750031252745923],[118,211,73,0.13148916427768267],[118,211,74,0.1252751351045432],[118,211,75,0.11886546861128969],[118,211,76,0.11227193559748924],[118,211,77,0.10551017007415307],[118,211,78,0.09859897750315275],[118,211,79,0.091559615746166],[118,212,64,0.17922035836902706],[118,212,65,0.17399211807094858],[118,212,66,0.16874917802184575],[118,212,67,0.16343807388530715],[118,212,68,0.15801108642305067],[118,212,69,0.15243814661022057],[118,212,70,0.14669812350224734],[118,212,71,0.14077780039472965],[118,212,72,0.13467109533636878],[118,212,73,0.12837827717246236],[118,212,74,0.12190517805696115],[118,212,75,0.11526240337250152],[118,212,76,0.10846453999308592],[118,212,77,0.10152936381344738],[118,212,78,0.09447704745427285],[118,212,79,0.08732936903120436],[118,213,64,0.17903063370436625],[118,213,65,0.1734478586905414],[118,213,66,0.1678578965974796],[118,213,67,0.1622043973592086],[118,213,68,0.15643889977091355],[118,213,69,0.15053364755796544],[118,213,70,0.14447060492117691],[118,213,71,0.13824009921420644],[118,213,72,0.13183978628304416],[118,213,73,0.1252736370822004],[118,213,74,0.1185509470913631],[118,213,75,0.11168537001838158],[118,213,76,0.10469397722956635],[118,213,77,0.0975963442970544],[118,213,78,0.09041366599737861],[118,213,79,0.08316790103357434],[118,214,64,0.17882496377356727],[118,214,65,0.1728832088620885],[118,214,66,0.16694335923165382],[118,214,67,0.1609467642784619],[118,214,68,0.1548444494318629],[118,214,69,0.1486108748905295],[118,214,70,0.14223092721489577],[118,214,71,0.13569824384262996],[118,214,72,0.12901393300147143],[118,214,73,0.12218534071727083],[118,214,74,0.11522486700107074],[118,214,75,0.10814883322193916],[118,214,76,0.10097640258745481],[118,214,77,0.09372855556215193],[118,214,78,0.08642712195824243],[118,214,79,0.07909387133102067],[118,215,64,0.1785885613197919],[118,215,65,0.17228599531356048],[118,215,66,0.16599598991135917],[118,215,67,0.1596582414482809],[118,215,68,0.15322351182384497],[118,215,69,0.1466683501245017],[118,215,70,0.13998034666757192],[118,215,71,0.1331561598206572],[118,215,72,0.12620000415607258],[118,215,73,0.11912221124154411],[118,215,74,0.11193786567722393],[118,215,75,0.10466551887332677],[118,215,76,0.09732598293865478],[118,215,77,0.08994120691913621],[118,215,78,0.08253323749004243],[118,215,79,0.07512326606451859],[118,216,64,0.1783057959265181],[118,216,65,0.17164333450410918],[118,216,66,0.16500559493885544],[118,216,67,0.15833131256286975],[118,216,68,0.15157124992093488],[118,216,69,0.14470388930390157],[118,216,70,0.1377192659307947],[118,216,71,0.13061672217947204],[118,216,72,0.12340318124742115],[118,216,73,0.116091518364653],[118,216,74,0.10869903265373322],[118,216,75,0.10124602257874767],[118,216,76,0.0937544677629501],[118,216,77,0.08624681978550709],[118,216,78,0.07874490439424371],[118,216,79,0.07126893739267828],[118,217,64,0.1779608879778966],[118,217,65,0.1709422239990559],[118,217,66,0.16396185467042018],[118,217,67,0.15695827233276663],[118,217,68,0.1498825115986403],[118,217,69,0.14271480835288441],[118,217,70,0.13544735047882736],[118,217,71,0.12808178859616212],[118,217,72,0.12062731564662273],[118,217,73,0.11309886798904337],[118,217,74,0.10551545153631298],[118,217,75,0.09789859627760425],[118,217,76,0.09027094233091854],[118,217,77,0.08265496046529194],[118,217,78,0.07507180982238591],[118,217,79,0.06754033535299939],[118,218,64,0.1775387493565226],[118,218,65,0.170170280980819],[118,218,66,0.16285496337321698],[118,218,67,0.15553177049380706],[118,218,68,0.1481522803936172],[118,218,69,0.14069828399638315],[118,218,70,0.13316380426526173],[118,218,71,0.12555239573282762],[118,218,72,0.11787505302225283],[118,218,73,0.11014826357055663],[118,218,74,0.10239220847141997],[118,218,75,0.09462911513204603],[118,218,76,0.08688176520612023],[118,218,77,0.07917216102512765],[118,218,78,0.07152035350693828],[118,218,79,0.06394343427327122],[118,219,64,0.17702597339303952],[118,219,65,0.1693166303444165],[118,219,66,0.16167641959332923],[118,219,67,0.15404550804813094],[118,219,68,0.14637628099797473],[118,219,69,0.13865187254849556],[118,219,70,0.13086780686826555],[118,219,71,0.12302912103988019],[118,219,72,0.1151481274378466],[118,219,73,0.10724234147094559],[118,219,74,0.09933257893555687],[118,219,75,0.0914412269719774],[118,219,76,0.0835906923517841],[118,219,77,0.07580203055306015],[118,219,78,0.0680937588059861],[118,219,79,0.06048085601369628],[118,220,64,0.17641197663384908],[118,220,65,0.16837294488405874],[118,220,66,0.16041996949199486],[118,220,67,0.1524950881580806],[118,220,68,0.1445517418855419],[118,220,69,0.1365741889526246],[118,220,70,0.12855911450281954],[118,220,71,0.12051261240204081],[118,220,72,0.1124478275025247],[118,220,73,0.1043827826913692],[118,220,74,0.09633839524145185],[118,220,75,0.08833668669929055],[118,220,76,0.0803991902517073],[118,220,77,0.07254555921345013],[118,220,78,0.0647923799756583],[118,220,79,0.05715219245026305],[118,221,64,0.17569029502805014],[118,221,65,0.16733464011903856],[118,221,66,0.15908270565562752],[118,221,67,0.15087902416951363],[118,221,68,0.14267831753058224],[118,221,69,0.1344657485280551],[118,221,70,0.12623882735657466],[118,221,71,0.11800428809115607],[118,221,72,0.1097756370499335],[118,221,73,0.10157090347495681],[118,221,74,0.093410597262436],[118,221,75,0.08531587816483728],[118,221,76,0.07730694056884041],[118,221,77,0.06940161762812161],[118,221,78,0.06161420820289727],[118,221,79,0.053954529729435916],[118,222,64,0.17486003715059087],[118,222,65,0.1662022263306488],[118,222,66,0.1576663239163705],[118,222,67,0.1491999072800401],[118,222,68,0.14075917272647462],[118,222,69,0.13232997393283968],[118,222,70,0.12391032576922899],[118,222,71,0.11550720956104597],[118,222,72,0.10713405289918458],[118,222,73,0.09880842735185912],[118,222,74,0.09054996896774273],[118,222,75,0.08237852612825297],[118,222,76,0.07431253896583095],[118,222,77,0.06636765421783077],[118,222,78,0.058555579037113094],[118,222,79,0.050883176931019486],[118,223,64,0.17392749707298122],[118,223,65,0.16498282038480125],[118,223,66,0.15617854073132306],[118,223,67,0.14746573638764537],[118,223,68,0.13880223154056096],[118,223,69,0.1301743698902971],[118,223,70,0.12158037782137773],[118,223,71,0.11302712967396979],[118,223,72,0.10452758231370385],[118,223,73,0.0960984412696278],[118,223,74,0.08775806343726643],[118,223,75,0.07952460099201139],[118,223,76,0.07141439079746814],[118,223,77,0.06344059322705894],[118,223,78,0.05561208395026279],[118,223,79,0.04793260186792355],[118,224,64,0.1729079294635953],[118,224,65,0.1636918198951154],[118,224,66,0.15463467365791742],[118,224,67,0.14569141265376254],[118,224,68,0.13682159344927813],[118,224,69,0.12801186824361996],[118,224,70,0.11926042092506288],[118,224,71,0.11057371898330286],[118,224,72,0.1019639228170821],[118,224,73,0.09344653850242189],[118,224,74,0.08503831908159964],[118,224,75,0.07675541906398005],[118,224,76,0.06861180645235876],[118,224,77,0.06061793622582075],[118,224,78,0.052779688827640885],[118,224,79,0.04509757682509171],[118,225,64,0.17182748944426435],[118,225,65,0.16235474223622942],[118,225,66,0.15305938742791703],[118,225,67,0.14390040128976625],[118,225,68,0.13483911918250682],[118,225,69,0.12586234589767992],[118,225,70,0.11696802001235107],[118,225,71,0.10816197271018002],[118,225,72,0.09945532704666474],[118,225,73,0.09086215106190265],[118,225,74,0.08239736982930149],[118,225,75,0.07407494114460975],[118,225,76,0.06590629916757393],[118,225,77,0.05789906993188772],[118,225,78,0.05005606224336379],[118,225,79,0.04237453709222097],[118,226,64,0.17072533964545564],[118,226,65,0.16100923084391203],[118,226,66,0.15148860806021622],[118,226,67,0.14212656302424645],[118,226,68,0.1328861887649753],[118,226,69,0.12375431817632429],[118,226,70,0.11472850489742582],[118,226,71,0.10581380104048858],[118,226,72,0.09702015532303666],[118,226,73,0.08836007433804034],[118,226,74,0.07984655205569391],[118,226,75,0.07149127225306605],[118,226,76,0.0633030881627882],[118,226,77,0.05528678322288911],[118,226,78,0.04744211640251885],[118,226,79,0.03976315517345827],[118,227,64,0.1696578856708246],[118,227,65,0.15970999553944185],[118,227,66,0.1499751002658178],[118,227,67,0.14042035370141956],[118,227,68,0.1310105338608852],[118,227,69,0.12173240636626755],[118,227,70,0.11258305940927238],[118,227,71,0.10356670490679203],[118,227,72,0.09469207847712956],[118,227,73,0.08597011112710182],[118,227,74,0.07741187773691896],[118,227,75,0.06902682701966442],[118,227,76,0.060821297215109205],[118,227,77,0.052797321357085335],[118,227,78,0.04495172553554621],[118,227,79,0.037275523159706114],[118,228,64,0.16869693663849672],[118,228,65,0.1585302794402406],[118,228,66,0.14859297090140502],[118,228,67,0.13885628427140378],[118,228,68,0.12928667362618323],[118,228,69,0.11987074479171944],[118,228,70,0.1106050359679005],[118,228,71,0.10149285135452572],[118,228,72,0.09254166878308054],[118,228,73,0.08376082651912854],[118,228,74,0.07515949429747075],[118,228,75,0.0667449332311906],[118,228,76,0.05852104880811303],[118,228,77,0.0504872407577842],[118,228,78,0.04263755314477733],[118,228,79,0.034960127620956745],[118,229,64,0.16790100834120844],[118,229,65,0.1575307077963746],[118,229,66,0.14740438933483366],[118,229,67,0.1374976298276201],[118,229,68,0.1277786348417871],[118,229,69,0.11823377074846163],[118,229,70,0.10885893556600172],[118,229,71,0.09965644097153653],[118,229,72,0.09063243843243089],[118,229,73,0.08179463029634021],[118,229,74,0.07315027085034115],[118,229,75,0.06470446193002342],[118,229,76,0.05645874722375165],[118,229,77,0.04841000897938509],[118,229,78,0.040549670386597986],[118,229,79,0.03286320647865557],[118,230,64,0.1673102981722074],[118,230,65,0.15675306399387506],[118,230,66,0.14645229184592903],[118,230,67,0.13638811374637697],[118,230,68,0.12653062793540287],[118,230,69,0.11686591381176797],[118,230,70,0.10738915363618322],[118,230,71,0.09810158385303458],[118,230,72,0.08900795470728017],[118,230,73,0.08011427849680085],[118,230,74,0.07142587138541176],[118,230,75,0.06294569326664441],[118,230,76,0.0546729897277683],[118,230,77,0.04660223972117162],[118,230,78,0.03872241211229457],[118,230,79,0.031016533840896043],[118,231,64,0.16694878272884542],[118,231,65,0.15622238306878075],[118,231,66,0.14576246941635693],[118,231,67,0.13555399918692754],[118,231,68,0.1255691539941983],[118,231,69,0.11579372569869127],[118,231,70,0.1062221357305595],[118,231,71,0.09685447998995113],[118,231,72,0.08769404022194438],[118,231,73,0.07874508526966519],[118,231,74,0.07001096700735834],[118,231,75,0.06149251531820285],[118,231,76,0.05318673603965041],[118,231,77,0.04508581535590971],[118,231,78,0.03717643367904748],[118,231,79,0.029439391628140407],[118,232,64,0.16682620717388996],[118,232,65,0.15594893666227955],[118,232,66,0.1453455483157321],[118,232,67,0.13500607605112538],[118,232,68,0.1249050113314874],[118,232,69,0.1150279156501972],[118,232,70,0.1053684468738201],[118,232,71,0.09592552386575677],[118,232,72,0.08670091037144084],[118,232,73,0.07769708738078221],[118,232,74,0.06891541860544505],[118,232,75,0.0603546132736183],[118,232,76,0.05200949000553083],[118,232,77,0.0438700450929269],[118,232,78,0.03592082807128915],[118,232,79,0.028140627045737585],[118,233,64,0.16693996364033847],[118,233,65,0.15593010635343724],[118,233,66,0.1451988601310778],[118,233,67,0.13474153978790035],[118,233,68,0.12453519774672704],[118,233,69,0.11456528725201491],[118,233,70,0.10482475032509862],[118,233,71,0.09531132886242645],[118,233,72,0.08602524351372674],[118,233,73,0.07696715689402937],[118,233,74,0.06813642556130847],[118,233,75,0.059529644762759626],[118,233,76,0.05113948952005456],[118,233,77,0.04295385519117265],[118,233,78,0.03495530021975861],[118,233,79,0.02712079336334051],[118,234,64,0.1672768574971433],[118,234,65,0.1561521442431182],[118,234,66,0.14530820018808108],[118,234,67,0.13474576107864084],[118,234,68,0.1244447076170258],[118,234,69,0.11439057595476443],[118,234,70,0.10457569515520465],[118,234,71,0.0949966710530213],[118,234,72,0.08565218365846095],[118,234,73,0.07654106201882645],[118,234,74,0.06766064072210026],[118,234,75,0.05900540180915755],[118,234,76,0.050565905439282924],[118,234,77,0.04232801223239443],[118,234,78,0.03427239979666907],[118,234,79,0.026374375542926973],[118,235,64,0.16781476014349783],[118,235,65,0.15659181951744627],[118,235,66,0.14564947317130594],[118,235,67,0.1349939453007677],[118,235,68,0.12460822282041319],[118,235,69,0.11447818641555678],[118,235,70,0.10459571190613],[118,235,71,0.09495635181690927],[118,235,72,0.08555727529160631],[118,235,73,0.07639547596893617],[118,235,74,0.06746625171945587],[118,235,75,0.05876195973786166],[118,235,76,0.05027105007864665],[118,235,77,0.04197738031722315],[118,235,78,0.03385981361982783],[118,235,79,0.025892102114451625],[118,236,64,0.16852414685379424],[118,236,65,0.1572179495780891],[118,236,66,0.1461902246130827],[118,236,67,0.1354526805311716],[118,236,68,0.12499169635533115],[118,236,69,0.11479382864564867],[118,236,70,0.10485071545902948],[118,236,71,0.09515697856891014],[118,236,72,0.08570832981586125],[118,236,73,0.07649993352347262],[118,236,74,0.06752502855580149],[118,236,75,0.058773813206630734],[118,236,76,0.05023259572272172],[118,236,77,0.04188321287672965],[118,236,78,0.03370271862635953],[118,236,79,0.0256633445252104],[118,237,64,0.16936949362063958],[118,237,65,0.15799278939949654],[118,237,66,0.14689103166372075],[118,237,67,0.13608134728733215],[118,237,68,0.1255538016745526],[118,237,69,0.11529602584624275],[118,237,70,0.10529968790597297],[118,237,71,0.09555863636381826],[118,237,72,0.08606719638918817],[118,237,73,0.07681870814799403],[118,237,74,0.06780431044507543],[118,237,75,0.05901197252813915],[118,237,76,0.05042577654349026],[118,237,77,0.04202545276994763],[118,237,78,0.03378616940131038],[118,237,79,0.025678578299885367],[118,238,64,0.17030539166267045],[118,238,65,0.15886806116524516],[118,238,66,0.14770146365882303],[118,238,67,0.13682803439377217],[118,238,68,0.12624183172550035],[118,238,69,0.11593202357519213],[118,238,70,0.10589062306090097],[118,238,71,0.09611089062308523],[118,238,72,0.08658584289676478],[118,238,73,0.07730698801723751],[118,238,74,0.0682632901961182],[118,238,75,0.059440366063895765],[118,238,76,0.05081991493408776],[118,238,77,0.04237938480564109],[118,238,78,0.034091875590090595],[118,238,79,0.025926280728233282],[118,239,64,0.1712693477855115],[118,239,65,0.15977856227245768],[118,239,66,0.14855434740109302],[118,239,67,0.13762429895531],[118,239,68,0.1269867827411981],[118,239,69,0.11663302190964725],[118,239,70,0.10655573312732701],[118,239,71,0.09674780168331786],[118,239,72,0.087201024083099],[118,239,73,0.0779050602484651],[118,239,74,0.06884659775222383],[118,239,75,0.060008730202095795],[118,239,76,0.05137055157406511],[118,239,77,0.04290696798459403],[118,239,78,0.034588728089040593],[118,239,79,0.026382673000163472],[118,240,64,0.17219138432831294],[118,240,65,0.1606546847731097],[118,240,66,0.14938060918797047],[118,240,67,0.13840166566324907],[118,240,68,0.12772080255933002],[118,240,69,0.1173318451783586],[118,240,70,0.10722861697697143],[118,240,71,0.09740389551821341],[118,240,72,0.08784840522636929],[118,240,73,0.07855000222804195],[118,240,74,0.06949305328493685],[118,240,75,0.060658010536798486],[118,240,76,0.052021183487075906],[118,240,77,0.043554709382025866],[118,240,78,0.03522672286138526],[118,240,79,0.027001725495045897],[118,241,64,0.17301256239395685],[118,241,65,0.1614382818713587],[118,241,66,0.15012284693045314],[118,241,67,0.13910331126645864],[118,241,68,0.12838741677377213],[118,241,69,0.11797214179704775],[118,241,70,0.10785285229869424],[118,241,71,0.09802253940825213],[118,241,72,0.08847107300224481],[118,241,73,0.07918462961689127],[118,241,74,0.07014529626933097],[118,241,75,0.06133085150399445],[118,241,76,0.05271472472378616],[118,241,77,0.044266134613500624],[118,241,78,0.0359504072204671],[118,241,79,0.02772947402419279],[118,242,64,0.17368769400888986],[118,242,65,0.16208452731251727],[118,242,66,0.1507364970491786],[118,242,67,0.13968472215454006],[118,242,68,0.12894187312919358],[118,242,69,0.11850861503956923],[118,242,70,0.10838230840517987],[118,242,71,0.09855652202754915],[118,242,72,0.08902055198147865],[118,242,73,0.07975909738695566],[118,242,74,0.07075209411009455],[118,242,75,0.06197470731036427],[118,242,76,0.05339748352316967],[118,242,77,0.04498666274415656],[118,242,78,0.03670465076926744],[118,242,79,0.02851065184177077],[118,243,64,0.17418406970260353],[118,243,65,0.16256070634598543],[118,243,66,0.15118870061173817],[118,243,67,0.14011265235859044],[118,243,68,0.12935021128399166],[118,243,69,0.11890622557719661],[118,243,70,0.10878050253517095],[118,243,71,0.09896758349669521],[118,243,72,0.08945652659644893],[118,243,73,0.08023082935575149],[118,243,74,0.07126849184235406],[118,243,75,0.0625422209276073],[118,243,76,0.05401977596917328],[118,243,77,0.04566445605346646],[118,243,78,0.03743572874899762],[118,243,79,0.02929000014864387],[118,244,64,0.1744801939171925],[118,244,65,0.16284501151687042],[118,244,66,0.15145717079029963],[118,244,67,0.14036407808523407],[118,244,68,0.1295883230117636],[118,244,69,0.11913937754347129],[118,244,70,0.10901993239161335],[118,244,71,0.09922591438956575],[118,244,72,0.08974652511791385],[118,244,73,0.08056440340520526],[118,244,74,0.07165591204030104],[118,244,75,0.06299154885389535],[118,244,76,0.054536482153149664],[118,244,77,0.046251210326710555],[118,244,78,0.03809234528222653],[118,244,79,0.03001351923352845],[118,245,64,0.17456452820220048],[118,245,65,0.16292534317687768],[118,245,66,0.15152906145737177],[118,245,67,0.1404251485070344],[118,245,68,0.129641002447583],[118,245,69,0.11919108760107558],[118,245,70,0.1090813842577796],[118,245,71,0.09930962290454177],[118,245,72,0.0898655647298933],[118,245,73,0.08073139136452485],[118,245,74,0.07188220382393054],[118,245,75,0.06328663046533695],[118,245,76,0.054907543621934424],[118,245,77,0.04670288443596791],[118,245,78,0.038626595282856],[118,245,79,0.030629659059698347],[118,246,64,0.1744342422708386],[118,246,65,0.16279811471976924],[118,246,66,0.15139983684498134],[118,246,67,0.14029013263129855],[118,246,68,0.1295009860740369],[118,246,69,0.11905213656360691],[118,246,70,0.10895321609532112],[118,246,71,0.09920416945564078],[118,246,72,0.08979575681662842],[118,246,73,0.08071015254199701],[118,246,74,0.07192163983679083],[118,246,75,0.06339740073919824],[118,246,76,0.055098400825849006],[118,246,77,0.046980367883079056],[118,246,78,0.03899486369035779],[118,246,79,0.03109044796674213],[118,247,64,0.17409397312305663],[118,247,65,0.1624670626702414],[118,247,66,0.15107214230916222],[118,247,67,0.139960362177843],[118,247,68,0.1291679822409142],[118,247,69,0.11872020321235807],[118,247,70,0.10863061510132686],[118,247,71,0.09890176799557424],[118,247,72,0.08952587161304297],[118,247,73,0.08048557990670635],[118,247,74,0.07175486006046457],[118,247,75,0.0632999450985765],[118,247,76,0.05508036922284221],[118,247,77,0.04705008489234858],[118,247,78,0.03915866057426728],[118,247,79,0.031352558019119924],[118,248,64,0.173554592578268],[118,248,65,0.161942061886966],[118,248,66,0.15055467636701933],[118,248,67,0.13944317051417457],[118,248,68,0.12864769012143779],[118,248,69,0.11819898004623232],[118,248,70,0.10811482928599028],[118,248,71,0.09840075345102059],[118,248,72,0.08905086141937334],[118,248,73,0.08004879794880053],[118,248,74,0.07136876133512493],[118,248,75,0.06297659510586702],[118,248,76,0.05483095264514003],[118,248,77,0.04688453356238875],[118,248,78,0.039085390547574886],[118,248,79,0.03137830539701756],[118,249,64,0.17283198370641137],[118,249,65,0.1612379462814272],[118,249,66,0.14986106430848778],[118,249,67,0.13875082782459808],[118,249,68,0.12795080812794468],[118,249,69,0.11749727081281816],[118,249,70,0.10741237272958774],[118,249,71,0.09770491473175744],[118,249,72,0.08837134164315232],[118,249,73,0.07939681128758036],[118,249,74,0.07075633147154953],[118,249,75,0.0624159637213626],[118,249,76,0.0543340924947762],[118,249,77,0.046462758516080595],[118,249,78,0.03874905482594783],[118,249,79,0.03095412366153877],[118,250,64,0.17194582680065015],[118,250,65,0.16037333560436712],[118,250,66,0.1490087338295898],[118,250,67,0.1378994728284255],[118,250,68,0.12709203194153387],[118,250,69,0.11662806979113594],[118,250,70,0.10653420428807753],[118,250,71,0.09682279287076341],[118,250,72,0.08749302900865945],[118,250,73,0.07853210315169301],[118,250,74,0.06991642686981663],[118,250,75,0.06161291884515321],[118,250,76,0.05358035130574413],[118,250,77,0.04577075542666379],[118,250,78,0.03813088417509898],[118,250,79,0.030039391859354888],[118,251,64,0.17091839569732148],[118,251,65,0.15936946901010726],[118,251,66,0.14801779328764297],[118,251,67,0.13690804151101618],[118,251,68,0.1260890424528266],[118,251,69,0.11560762293125627],[118,251,70,0.10549487964046368],[118,251,71,0.09576694396194177],[118,251,72,0.08642613636542562],[118,251,73,0.07746218292527435],[118,251,74,0.06885349260390912],[118,251,75,0.06056849387552833],[118,251,76,0.052567029193667486],[118,251,77,0.044801805746845696],[118,251,78,0.03721990090149014],[118,251,79,0.02935007213021223],[118,252,64,0.16977336542034333],[118,252,65,0.15824904627745598],[118,252,66,0.14690991334320616],[118,252,67,0.1357971934916133],[118,252,68,0.1249614840665792],[118,252,69,0.11445447110497395],[118,252,70,0.10431167671041998],[118,252,71,0.09455316668810983],[118,252,72,0.0851847236358796],[118,252,73,0.076199082040657],[118,252,74,0.0675772239922933],[118,252,75,0.05928973404811687],[118,252,76,0.0512982117116404],[118,252,77,0.043556739929377794],[118,252,78,0.03601340796464025],[118,252,79,0.02861188697434336],[118,253,64,0.1685346323066134],[118,253,65,0.1570350777428358],[118,253,66,0.14570721292721753],[118,253,67,0.13458823682268609],[118,253,68,0.1237299339904195],[118,253,69,0.11318847588413794],[118,253,70,0.1030036946488696],[118,253,71,0.093199694373889],[118,253,72,0.08378600456753436],[118,253,73,0.07475879760213176],[118,253,74,0.06610216875228597],[118,253,75,0.05778947736715319],[118,253,76,0.04978474764338534],[118,253,77,0.04204412740193201],[118,253,78,0.034517403222764836],[118,253,79,0.02714957025473812],[118,254,64,0.16722514795690863],[118,254,65,0.1557497441876884],[118,254,66,0.1444311506558778],[118,254,67,0.1333020521979107],[118,254,68,0.12241486330878615],[118,254,69,0.11182982844064751],[118,254,70,0.10159092673497021],[118,254,71,0.09172635165801339],[118,254,72,0.08224960909919699],[118,254,73,0.07316068324836043],[118,254,74,0.06444726893289723],[118,254,75,0.0560860690058263],[118,254,76,0.04804415529451353],[118,254,77,0.04028039154868332],[118,254,78,0.032746916769593425],[118,254,79,0.025390687257694496],[118,255,64,0.16586576855329704],[118,255,65,0.15441326811811323],[118,255,66,0.1431014230104114],[118,255,67,0.13195801774026766],[118,255,68,0.1210355908376537],[118,255,69,0.11039804235508044],[118,255,70,0.10009330774106835],[118,255,71,0.0901536760583136],[118,255,72,0.08059680131479038],[118,255,73,0.0714267869047571],[118,255,74,0.0626353419383245],[118,255,75,0.05420300813826005],[118,255,76,0.04610045589102257],[118,255,77,0.03828984795739593],[118,255,78,0.03072626928059985],[118,255,79,0.023359221274363746],[118,256,64,0.1644741212884612],[118,256,65,0.1530427980794967],[118,256,66,0.14173487080348304],[118,256,67,0.13057293574767956],[118,256,68,0.11960923096367124],[118,256,69,0.10891093132952034],[118,256,70,0.0985297365129164],[118,256,71,0.08850200490072346],[118,256,72,0.07884965314309755],[118,256,73,0.06958113524226885],[118,256,74,0.060692500093337445],[118,256,75,0.05216852627230488],[118,256,76,0.04398393276237978],[118,256,77,0.03610466421514233],[118,256,78,0.028489249262622078],[118,256,79,0.021090230327696816],[118,257,64,0.16306349786780389],[118,257,65,0.1516513149997912],[118,257,66,0.140344401998266],[118,257,67,0.12915996858194928],[118,257,68,0.11814964184770392],[118,257,69,0.1073835774925176],[118,257,70,0.09691707890759699],[118,257,71,0.08679053238167046],[118,257,72,0.07703017839082629],[118,257,73,0.06764896945073715],[118,257,74,0.05864751358686389],[118,257,75,0.05001510235275752],[118,257,76,0.04173082220861628],[118,257,77,0.03376474796367054],[118,257,78,0.026079216890985257],[118,257,79,0.018630182039963653],[118,258,64,0.16164196305400413],[118,258,65,0.15024681073742854],[118,258,66,0.13893824568483776],[118,258,67,0.12772796335978334],[118,258,68,0.11666681035086142],[118,258,69,0.10582776449743271],[118,258,70,0.09526963629436984],[118,258,71,0.08503680069323674],[118,258,72,0.07515983430702543],[118,258,73,0.06565624615816647],[118,258,74,0.056531301179321036],[118,258,75,0.04777893553752541],[118,258,76,0.03938276272037275],[118,258,77,0.03131716920000347],[118,258,78,0.02354849838103948],[118,258,79,0.016036321440348694],[118,259,64,0.1602159320727518],[118,259,65,0.14883722141056538],[118,259,66,0.13752627882720536],[118,259,67,0.12628916403661344],[118,259,68,0.11517575688469121],[118,259,69,0.10426164586051859],[118,259,70,0.0936089727004802],[118,259,71,0.08326596311199955],[118,259,72,0.073267430408163],[118,259,73,0.06363537911912746],[118,259,74,0.05437970794139652],[118,259,75,0.04549901123442773],[118,259,76,0.0369814781289746],[118,259,77,0.02880588817505321],[118,259,78,0.020942702333816763],[118,259,79,0.0133552480051015],[118,260,64,0.15879333160327716],[118,260,65,0.1474332017427324],[118,260,66,0.13612233481205646],[118,260,67,0.12486101825657796],[118,260,68,0.11369781517489935],[118,260,69,0.10271046302911851],[118,260,70,0.09196403429339821],[118,260,71,0.0815102718245536],[118,260,72,0.07138796014152016],[118,260,73,0.0616234022686004],[118,260,74,0.052231001652353296],[118,260,75,0.04321394849896236],[118,260,76,0.0345650097219503],[118,260,77,0.026267421541222635],[118,260,78,0.018295883638013453],[118,260,79,0.0106176536446181],[118,261,64,0.15738098488617783],[118,261,65,0.1460439008006207],[118,261,66,0.1347382793253098],[118,261,67,0.12345852517576864],[118,261,68,0.1122514156954541],[118,261,69,0.10119616718035096],[118,261,70,0.09036019320989246],[118,261,71,0.07979825366856576],[118,261,72,0.0695526955728306],[118,261,73,0.05965380396693494],[118,261,74,0.05012026254315742],[118,261,75,0.04095972346931422],[118,261,76,0.032169485739140455],[118,261,77,0.02373728120154433],[118,261,78,0.015642167277058246],[118,261,79,0.00785552523245604],[118,262,64,0.15598420797725393],[118,262,65,0.14467651761548053],[118,262,66,0.13338351892923508],[118,262,67,0.12209368330138728],[118,262,68,0.11085146159327855],[118,262,69,0.09973672050666592],[118,262,70,0.088818478335717],[118,262,71,0.07815387981639497],[118,262,72,0.0677883092517672],[118,262,73,0.05775561694984574],[118,262,74,0.04807845877168615],[118,262,75,0.03876874840711283],[118,262,76,0.029828221820005777],[118,262,77,0.021249113136637347],[118,262,78,0.013014941093530595],[118,262,79,0.0051014050140318346],[118,263,64,0.15460686895626283],[118,263,65,0.14333639045778815],[118,263,66,0.13206511457406495],[118,263,67,0.12077561274506046],[118,263,68,0.10950943779219426],[118,263,69,0.09834616731318246],[118,263,70,0.08735558188624386],[118,263,71,0.07659648082306247],[118,263,72,0.06611667123551102],[118,263,73,0.055953072273233734],[118,263,74,0.04613193446811442],[118,263,75,0.03666917393593115],[118,263,76,0.027570821004081553],[118,263,77,0.01883358265919558],[118,263,78,0.010445518044169558],[118,263,79,0.0023868260789811427],[118,264,64,0.15325177448523924],[118,264,65,0.1420274126108364],[118,264,66,0.13078821803554463],[118,264,67,0.11951099452102641],[118,264,68,0.10823382907479477],[118,264,69,0.09703500372700223],[118,264,70,0.08598415190924333],[118,264,71,0.07514093264384634],[118,264,72,0.06455490000399758],[118,264,73,0.054265488149597356],[118,264,74,0.04430211200897398],[118,264,75,0.03468438348794715],[118,264,76,0.025422442902713616],[118,264,77,0.01651740515366969],[118,264,78,0.007961919988002839],[118,264,79,-2.5915446203170385E-4],[118,265,64,0.1519213858845392],[118,265,65,0.1407527766945072],[118,265,66,0.12955683319678712],[118,265,67,0.11830482867563351],[118,265,68,0.10703084880924116],[118,265,69,0.09581084758458844],[118,265,70,0.0847133721981816],[118,265,71,0.07379811505878496],[118,265,72,0.0631156686819338],[118,265,73,0.05270739509903823],[118,265,74,0.04260540998105369],[118,265,75,0.032832681487638196],[118,265,76,0.023403243666541916],[118,265,77,0.014322524046730931],[118,265,78,0.005587784896760652],[118,265,79,-0.0025100019448164096],[118,266,64,0.15061886640919303],[118,266,65,0.13951604911465726],[118,266,66,0.1283749036306427],[118,266,67,0.11716151258845066],[118,266,68,0.1059054795592719],[118,266,69,0.09467940965302732],[118,266,70,0.08354983071317076],[118,266,71,0.07257564356933699],[118,266,72,0.06180776762959395],[118,266,73,0.05128889850305819],[118,266,74,0.04105337797876974],[118,266,75,0.031127176499674936],[118,266,76,0.021527988085661445],[118,266,77,0.012265437478802661],[118,266,78,0.006062198998851928],[118,266,79,0.0040241701389609605],[118,267,64,0.14934946095219245],[118,267,65,0.13832257576754714],[118,267,66,0.12724772750639268],[118,267,67,0.11608624036865318],[118,267,68,0.1048628264160416],[118,267,69,0.09364576695911374],[118,267,70,0.08249867724306192],[118,267,71,0.07147887548705377],[118,267,72,0.06063692413687677],[118,267,73,0.05001627933890343],[118,267,74,0.039653049084105586],[118,267,75,0.02957586028812935],[118,267,76,0.019805834892057308],[118,267,77,0.015639578405354675],[118,267,78,0.013210386638803261],[118,267,79,0.010868829225851143],[118,268,64,0.1481222089751962],[118,268,65,0.1371812197127515],[118,268,66,0.1261837004421303],[118,268,67,0.11508672388335404],[118,268,68,0.10390978351991977],[118,268,69,0.0927159386468908],[118,268,70,0.08156507070629217],[118,268,71,0.07051219061553284],[118,268,72,0.059606879653284164],[118,268,73,0.04889283358624862],[118,268,74,0.03840751060688807],[118,268,75,0.029098596398391432],[118,268,76,0.02622137529156812],[118,268,77,0.0234096302424404],[118,268,78,0.02067294235097447],[118,268,79,0.018014633216004848],[118,269,64,0.14487403146332456],[118,269,65,0.13578836196162944],[118,269,66,0.1251963865509162],[118,269,67,0.11417523559644907],[118,269,68,0.10305701389830074],[118,269,69,0.09189876445868615],[118,269,70,0.08075591617911111],[118,269,71,0.06968054663425982],[118,269,72,0.05872072470946469],[118,269,73,0.04791995053563333],[118,269,74,0.04092986941658991],[118,269,75,0.03775115140940272],[118,269,76,0.03459605138133733],[118,269,77,0.03148450806269737],[118,269,78,0.02843073910982297],[118,269,79,0.02544327647621167],[118,270,64,0.14013227139039636],[118,270,65,0.13097393484084588],[118,270,66,0.12197730977941545],[118,270,67,0.11320143229462021],[118,270,68,0.10232124243064436],[118,270,69,0.0912080856356681],[118,270,70,0.08008189145652504],[118,270,71,0.0689913090249397],[118,270,72,0.05798249143245446],[118,270,73,0.05353007474053179],[118,270,74,0.05012949243192754],[118,270,75,0.046695563761228326],[118,270,76,0.04325691096487207],[118,270,77,0.03983741866400783],[118,270,78,0.036456034287951945],[118,270,79,0.033126660318817724],[118,271,64,0.135123708536254],[118,271,65,0.12588513772800394],[118,271,66,0.1168230397214016],[118,271,67,0.10799924323356785],[118,271,68,0.09942087223011425],[118,271,69,0.09064295949669622],[118,271,70,0.07953924558863235],[118,271,71,0.07012885033585273],[118,271,72,0.06674313218011793],[118,271,73,0.0632178908736171],[118,271,74,0.059590935115994226],[118,271,75,0.05589725930685789],[118,271,76,0.05216853033970995],[118,271,77,0.04843265953946411],[118,271,78,0.044713460096174856],[118,271,79,0.04103039019971347],[118,272,64,0.12994417214741066],[118,272,65,0.12061837514495141],[118,272,66,0.1114839568039804],[118,272,67,0.10260485487540301],[118,272,68,0.09399400613956459],[118,272,69,0.08562619491112995],[118,272,70,0.08207315522785225],[118,272,71,0.08033155391306307],[118,272,72,0.0767973301888272],[118,272,73,0.07308684874467869],[118,272,74,0.06923842788787946],[118,272,75,0.06528885952526384],[118,272,76,0.06127276469653272],[118,272,77,0.05722202759389175],[118,272,78,0.05316530859409986],[118,272,79,0.049127636686923916],[118,273,64,0.12470286483484831],[118,273,65,0.11528373994192298],[118,273,66,0.10607036567095843],[118,273,67,0.09712801556246968],[118,273,68,0.08847520376121443],[118,273,69,0.08768846226375204],[118,273,70,0.08745499041615297],[118,273,71,0.08722269093438331],[118,273,72,0.08692668032901525],[118,273,73,0.08304419844622378],[118,273,74,0.07898777177754407],[118,273,75,0.07479575266406889],[118,273,76,0.07050548680730638],[118,273,77,0.0661526130482241],[118,273,78,0.061770435624750986],[118,273,79,0.057389369470056475],[118,274,64,0.11949695314181621],[118,274,65,0.10997960058240072],[118,274,66,0.10068127865370816],[118,274,67,0.09409756972285672],[118,274,68,0.09361651057364263],[118,274,69,0.09321676756247761],[118,274,70,0.09287971920834734],[118,274,71,0.09258188923205807],[118,274,72,0.09229606079875233],[118,274,73,0.09199232892421613],[118,274,74,0.08875757895568721],[118,274,75,0.08434449089622133],[118,274,76,0.0798020436199158],[118,274,77,0.07516927458630196],[118,274,78,0.07048377071183315],[118,274,79,0.06578097468040123],[118,275,64,0.11441212206695839],[118,275,65,0.10479309163185528],[118,275,66,0.10083813357268753],[118,275,67,0.10007310312214106],[118,275,68,0.09941760985572005],[118,275,69,0.09886748572683318],[118,275,70,0.09841041157795333],[118,275,71,0.09802762957002213],[118,275,72,0.09769513804028701],[118,275,73,0.09738483144703391],[118,275,74,0.09706558392558855],[118,275,75,0.09386323373964195],[118,275,76,0.08909776358667645],[118,275,77,0.08421519881707641],[118,275,78,0.07925691625902517],[118,275,79,0.07426288114686978],[118,276,64,0.10952299332354754],[118,276,65,0.10826503341634519],[118,276,66,0.10721047031097515],[118,276,67,0.10624862566654782],[118,276,68,0.10540919914871318],[118,276,69,0.10469557313974194],[118,276,70,0.10410158380520587],[118,276,71,0.10361318607695341],[118,276,72,0.10320971621037558],[118,276,73,0.1028651059435261],[118,276,74,0.1025490466804842],[118,276,75,0.10222810221988463],[118,276,76,0.0983286111233955],[118,276,77,0.09323260693379538],[118,276,78,0.08803889384544618],[118,276,79,0.08279133348307094],[118,277,64,0.11639313999144076],[118,277,65,0.11509222013376637],[118,277,66,0.1138304993099329],[118,277,67,0.11266728306565431],[118,277,68,0.1116357640360889],[118,277,69,0.1107464170643489],[118,277,70,0.10999896434459422],[118,277,71,0.10938397855602117],[118,277,72,0.10888419828520393],[118,277,73,0.1084758010331503],[118,277,74,0.10812963214595997],[118,277,75,0.10781238809716528],[118,277,76,0.1074319881555276],[118,277,77,0.102163608397072],[118,277,78,0.09677703732296325],[118,277,79,0.09131931159941932],[118,278,64,0.12371042276849806],[118,278,65,0.12219728532632024],[118,278,66,0.12072875821514596],[118,278,67,0.11936147784969828],[118,278,68,0.1180738276440782],[118,278,69,0.11684059422088366],[118,278,70,0.11613911452210665],[118,278,71,0.11537708924708515],[118,278,72,0.11475562732707191],[118,278,73,0.11425332140532046],[118,278,74,0.11384249104304049],[118,278,75,0.11349041847659358],[118,278,76,0.11316054237972681],[118,278,77,0.11095120137072696],[118,278,78,0.10541803233245312],[118,278,79,0.09979759615441297],[118,279,64,0.12937901138150268],[118,279,65,0.12507211762476678],[118,279,66,0.12156928966933295],[118,279,67,0.11887226981466703],[118,279,68,0.11696382665932104],[118,279,69,0.11580615328940669],[118,279,70,0.11533945778503657],[118,279,71,0.11548359479516257],[118,279,72,0.11613610189091256],[118,279,73,0.11717159104848635],[118,279,74,0.11848237408871526],[118,279,75,0.119290837278477],[118,279,76,0.11891269949895288],[118,279,77,0.11854286092205862],[118,279,78,0.1139091017819497],[118,279,79,0.10817597939349823],[118,280,64,0.12855069655060614],[118,280,65,0.12421162465610006],[118,280,66,0.12070228365402802],[118,280,67,0.11802414830464902],[118,280,68,0.11615892298780273],[118,280,69,0.11506684035421144],[118,280,70,0.11468514928318829],[118,280,71,0.11492966382473335],[118,280,72,0.11569268423836987],[118,280,73,0.11684274585011134],[118,280,74,0.1182695280419162],[118,280,75,0.11989247603305242],[118,280,76,0.12164488928400577],[118,280,77,0.12347196399028101],[118,280,78,0.12219933676965711],[118,280,79,0.11640462077212771],[118,281,64,0.12805464619315698],[118,281,65,0.12367926101065485],[118,281,66,0.12015752846812008],[118,281,67,0.11749080458742178],[118,281,68,0.11565992004308134],[118,281,69,0.11462337998678884],[118,281,70,0.11431574992753313],[118,281,71,0.11464912223538654],[118,281,72,0.11551092187001066],[118,281,73,0.11676398178970804],[118,281,74,0.11829547613396746],[118,281,75,0.12002431171888092],[118,281,76,0.12188310614111042],[118,281,77,0.12381619076562606],[118,281,78,0.1257779624366311],[118,281,79,0.12443554672106137],[118,282,64,0.12788852931456798],[118,282,65,0.12347322132766986],[118,282,66,0.11993361280857107],[118,282,67,0.1172710899165827],[118,282,68,0.11546580382838656],[118,282,69,0.11447477282337282],[118,282,70,0.11423016694490429],[118,282,71,0.11464069268713817],[118,282,72,0.11558928381678923],[118,282,73,0.11693347141564364],[118,282,74,0.1185580687223497],[118,282,75,0.12038144368888587],[118,282,76,0.12233553424891458],[118,282,77,0.12436380753695833],[118,282,78,0.1264195830018089],[118,282,79,0.128464499290867],[118,283,64,0.12804846271186868],[118,283,65,0.12359019033650931],[118,283,66,0.12002767089614635],[118,283,67,0.11736246834764469],[118,283,68,0.11557425067043564],[118,283,69,0.11461879567594618],[118,283,70,0.11442617569488922],[118,283,71,0.11490206146392634],[118,283,72,0.11592529885218505],[118,283,73,0.11734854078993462],[118,283,74,0.11905440001131934],[118,283,75,0.12096071571837846],[118,283,76,0.12299875869741347],[118,283,77,0.1251111426337564],[118,283,78,0.1272501126837915],[118,283,79,0.12937597252655028],[118,284,64,0.1285285831196888],[118,284,65,0.12402490456034013],[118,284,66,0.12043493445861625],[118,284,67,0.11776055979206368],[118,284,68,0.1159811621841661],[118,284,69,0.11505152927146323],[118,284,70,0.11489994104387868],[118,284,71,0.1154293943316188],[118,284,72,0.11651506665720374],[118,284,73,0.11800517672161248],[118,284,74,0.11978031207085615],[118,284,75,0.12175780379980539],[118,284,76,0.12386827834031203],[118,284,77,0.12605351689764455],[118,284,78,0.12826470366761886],[118,284,79,0.1304608070432427],[118,285,64,0.1293208971142955],[118,285,65,0.12476999251678761],[118,285,66,0.12114856385971312],[118,285,67,0.118458962781408],[118,285,68,0.11668048043507512],[118,285,69,0.1157671666085261],[118,285,70,0.11564581971934218],[118,285,71,0.11621713368022696],[118,285,72,0.11735305050254197],[118,285,73,0.11889781566776025],[118,285,74,0.12073018056906257],[118,285,75,0.1227669992640685],[118,285,76,0.12493828680198263],[118,285,77,0.12718502300194354],[118,285,78,0.12945735467748404],[118,285,79,0.1317129251765325],[118,286,64,0.13041535491758913],[118,286,65,0.12581603953395915],[118,286,66,0.12215970447691682],[118,286,67,0.11944930303597928],[118,286,68,0.11766422938950716],[118,286,69,0.1167580480208244],[118,286,70,0.11665638973374348],[118,286,71,0.1172580230427685],[118,286,72,0.11843209755124495],[118,286,73,0.12001936042910633],[118,286,74,0.12189692838569585],[118,286,75,0.12398121975982807],[118,286,76,0.12620168119015424],[118,286,77,0.1284985321791094],[118,286,78,0.13082091590493772],[118,286,79,0.13312517150758346],[118,287,64,0.13179995395195385],[118,287,65,0.1271516829527794],[118,287,66,0.12345757404704541],[118,287,67,0.1207213135271889],[118,287,68,0.11892258832879443],[118,287,69,0.11801472861974743],[118,287,70,0.11792251255075786],[118,287,71,0.11854316467158249],[118,287,72,0.1197434924919597],[118,287,73,0.12136123041369928],[118,287,74,0.123272072990226],[118,287,75,0.12539205414219373],[118,287,76,0.12765010480298528],[118,287,77,0.12998573496169172],[118,287,78,0.13234712790014297],[118,287,79,0.1346893499118733],[118,288,64,0.13346087212015226],[118,288,65,0.12876373768981764],[118,288,66,0.12502958095382155],[118,288,67,0.12226294600785875],[118,288,68,0.12044399720141882],[118,288,69,0.11952607809033727],[118,288,70,0.11943342796795775],[118,288,71,0.12006211014626991],[118,288,72,0.12127704447696341],[118,288,73,0.12291344544285318],[118,288,74,0.1248458075586214],[118,288,75,0.1269898412450312],[118,288,76,0.12927402380478187],[118,288,77,0.1316372159111136],[118,288,78,0.13402669440053955],[118,288,79,0.136396294423821],[118,289,64,0.13538263081041219],[118,289,65,0.13063735216075362],[118,289,66,0.12686147345756815],[118,289,67,0.12406051401059684],[118,289,68,0.12221529391334385],[118,289,69,0.12127941284073304],[118,289,70,0.12117688171612095],[118,289,71,0.12180298401340892],[118,289,72,0.12302120736511471],[118,289,73,0.12466474309950884],[118,289,74,0.12660711582901057],[118,289,75,0.1287637825370296],[118,289,76,0.13106283787050416],[118,289,77,0.13344256233441593],[118,289,78,0.13584938909705774],[118,289,79,0.13823597391744238],[118,290,64,0.13754828762659543],[118,290,65,0.132756194564373],[118,290,66,0.12893751986691654],[118,290,67,0.12609886731413453],[118,290,68,0.12422188355640462],[118,290,69,0.12326066050499251],[118,290,70,0.12313928577504377],[118,290,71,0.12375264045793088],[118,290,72,0.12496323326961453],[118,290,73,0.12660272961890023],[118,290,74,0.12854392069610676],[118,290,75,0.13070208866141853],[118,290,76,0.13300502479895196],[118,290,77,0.13539050698885813],[118,290,78,0.13780419633777433],[118,290,79,0.140197630602927],[118,291,64,0.1399396588434364],[118,291,65,0.1351026695270801],[118,291,66,0.1312407196525195],[118,291,67,0.12836159787761536],[118,291,68,0.1264479395747447],[118,291,69,0.12545455679928175],[118,291,70,0.12530591140585132],[118,291,71,0.1258968530061463],[118,291,72,0.1270893594105658],[118,291,73,0.12871406432151322],[118,291,74,0.13064326654438319],[118,291,75,0.1327921598593212],[118,291,76,0.13508831909461372],[118,291,77,0.13746910477435786],[118,291,78,0.13987948576899464],[118,291,79,0.1422699523391177],[118,292,64,0.1425375715869609],[118,292,65,0.1376581651080382],[118,292,66,0.13375304550287886],[118,292,67,0.1308312772429458],[118,292,68,0.12887663686941214],[118,292,69,0.12784487473154219],[118,292,70,0.127661114899916],[118,292,71,0.12822053726053534],[118,292,72,0.12938502827244608],[118,292,73,0.13098467758845167],[118,292,74,0.13289153532011483],[118,292,75,0.1350208002768604],[118,292,76,0.13729992451829828],[118,292,77,0.13966594341389119],[118,292,78,0.14206322091387963],[118,292,79,0.1444412787620169],[118,293,64,0.14532214573998414],[118,293,65,0.14040333016483492],[118,293,66,0.1364557163221844],[118,293,67,0.13348972540510423],[118,293,68,0.13149041684100887],[118,293,69,0.13041468616453386],[118,293,70,0.1301885960442788],[118,293,71,0.1307080066661932],[118,293,72,0.13183514106638425],[118,293,73,0.13340002237910273],[118,293,74,0.13527469634217715],[118,293,75,0.13737446615590782],[118,293,76,0.13962676060643747],[118,293,77,0.14196838812173845],[118,293,78,0.14434320168850676],[118,293,79,0.14669984122920246],[118,294,64,0.14827310557267787],[118,294,65,0.14331838207966602],[118,294,66,0.139329501170156],[118,294,67,0.13631831115040144],[118,294,68,0.13427128437038813],[118,294,69,0.1331466557322435],[118,294,70,0.13287168930356658],[118,294,71,0.13334326130892785],[118,294,72,0.13442434449723714],[118,294,73,0.1359453592910949],[118,294,74,0.13777858985159705],[118,294,75,0.1398395479084704],[118,294,76,0.14205574315905412],[118,294,77,0.14436386025957396],[118,294,78,0.14670734085535808],[118,294,79,0.1490340365801509],[118,295,64,0.15137012109834003],[118,295,65,0.14638344484616744],[118,295,66,0.14235505414402355],[118,295,67,0.1392982838628261],[118,295,68,0.13720113673753223],[118,295,69,0.13602336710979637],[118,295,70,0.13569368771854126],[118,295,71,0.13611030974514238],[118,295,72,0.13713735083560105],[118,295,73,0.13860607516268686],[118,295,74,0.1403892442999923],[118,295,75,0.14240268607485293],[118,295,76,0.1445740986965358],[118,295,77,0.14684014998053657],[118,295,78,0.14914397441437763],[118,295,79,0.1514327347126086],[118,296,64,0.15459317915417004],[118,296,65,0.14957891751670027],[118,296,66,0.14551328020244325],[118,296,67,0.142411136798273],[118,296,68,0.14026212447841013],[118,296,69,0.13902768163666496],[118,296,70,0.1386381995210753],[118,296,71,0.13899352386329908],[118,296,72,0.13995929129455223],[118,296,73,0.14136803521737829],[118,296,74,0.14309322737669194],[118,296,75,0.1450511211653855],[118,296,76,0.14716971288500053],[118,296,77,0.14938576286106894],[118,296,78,0.15164220593138233],[118,296,79,0.15388561997479394],[118,297,64,0.15792298420726147],[118,297,65,0.1528858730103011],[118,297,66,0.14878573193156783],[118,297,67,0.14563900182687434],[118,297,68,0.14343704418003264],[118,297,69,0.14214312929339834],[118,297,70,0.14168953746577712],[118,297,71,0.14197802677718677],[118,297,72,0.1428761027113406],[118,297,73,0.14421796875096915],[118,297,74,0.1458780307747634],[118,297,75,0.14777307738594592],[118,297,76,0.1498315129304878],[118,297,77,0.15199030052075937],[118,297,78,0.15419228480406155],[118,297,79,0.156383566373668],[118,298,64,0.16134138888560973],[118,298,65,0.15628648728109426],[118,298,66,0.15215503725306323],[118,298,67,0.14896507564322303],[118,298,68,0.14670976321349777],[118,298,69,0.14535433203165884],[118,298,70,0.14483314087805227],[118,298,71,0.1450501137507796],[118,298,72,0.14587494753382194],[118,298,73,0.14714388836085157],[118,298,74,0.14873248869573114],[118,298,75,0.15055818024705744],[118,298,76,0.15254988394175126],[118,298,77,0.1546448752299607],[118,298,78,0.15678601846534013],[118,298,79,0.15891904659904726],[118,299,64,0.1648318542342738],[118,299,65,0.15976449884730523],[118,299,66,0.15560535807421466],[118,299,67,0.15237407744463388],[118,299,68,0.15006567640516771],[118,299,69,0.14864745945771307],[118,299,70,0.14805603041874882],[118,299,71,0.1481977061548325],[118,299,72,0.14894466711177745],[118,299,73,0.1501355427176828],[118,299,74,0.15164723009313447],[118,299,75,0.15339790805671377],[118,299,76,0.15531711926180902],[118,299,77,0.15734255850534393],[118,299,78,0.15941721852426188],[118,299,79,0.16148657486371415],[118,300,64,0.16837993969668488],[118,300,65,0.16330569868086808],[118,300,66,0.15912287988011234],[118,300,67,0.15585273807743213],[118,300,68,0.15349219464597072],[118,300,69,0.15201071686936618],[118,300,70,0.15134729556537518],[118,300,71,0.1514108384552053],[118,300,72,0.15207626829310947],[118,300,73,0.15318490287942965],[118,300,74,0.1546151646549156],[118,300,75,0.15628607729691876],[118,300,76,0.15812790476823585],[118,300,77,0.16007886369337096],[118,300,78,0.1620821808443786],[118,300,79,0.16408318355951307],[118,301,64,0.1719738228209846],[118,301,65,0.16689845045750978],[118,301,66,0.1626963322677999],[118,301,67,0.15939032065115077],[118,301,68,0.15697926543870688],[118,301,69,0.15543486564622072],[118,301,70,0.15469861480977065],[118,301,71,0.15468217823279276],[118,301,72,0.15526344332479133],[118,301,73,0.1562866821476604],[118,301,74,0.1576320025245136],[118,301,75,0.15921936188381863],[118,301,76,0.1609798371420775],[118,301,77,0.162852262541564],[118,301,78,0.16478019955952083],[118,301,79,0.1667089337293065],[118,302,64,0.17560484869152765],[118,302,65,0.1705342411674466],[118,302,66,0.1663175404225228],[118,302,67,0.16297917262077613],[118,302,68,0.16051992538349963],[118,302,69,0.15891377599340173],[118,302,70,0.1581048085723723],[118,302,71,0.1580075792352053],[118,302,72,0.15850312305871803],[118,302,73,0.1594388894662326],[118,302,74,0.16069680776081346],[118,302,75,0.16219784631157502],[118,302,76,0.1638739761055334],[118,302,77,0.16566473575772228],[118,302,78,0.16751411502710362],[118,302,79,0.16936745935494416],[118,303,64,0.17926810908551555],[118,303,65,0.174208262086658],[118,303,66,0.16998200753603912],[118,303,67,0.1666153093370034],[118,303,68,0.16411088460135098],[118,303,69,0.16244501203870493],[118,303,70,0.1615644248330337],[118,303,71,0.16138666746015642],[118,303,72,0.16179606346241088],[118,303,73,0.16264341636232876],[118,303,74,0.16381258553689962],[118,303,75,0.1652256126799294],[118,303,76,0.16681543062835968],[118,303,77,0.16852235755703324],[118,303,78,0.1702908957189111],[118,303,79,0.17206654546119007],[118,304,64,0.18296305135466262],[118,304,65,0.17792002010864086],[118,304,66,0.1736895281668982],[118,304,67,0.1702990290644071],[118,304,68,0.16775314309571002],[118,304,69,0.1660304492830784],[118,304,70,0.1650803574783069],[118,304,71,0.16482346027046674],[118,304,72,0.16514746543448888],[118,304,73,0.16590665742975363],[118,304,74,0.1669869030775321],[118,304,75,0.1683113616053748],[118,304,76,0.16981397910290796],[118,304,77,0.171435914196998],[118,304,78,0.17312225404928253],[118,304,79,0.17481874003552972],[118,305,64,0.18669411703203426],[118,305,65,0.18167397943678276],[118,305,66,0.17744483254282456],[118,305,67,0.17403555946766366],[118,305,68,0.17145263905218747],[118,305,69,0.16967692440457116],[118,305,70,0.16866049736531885],[118,305,71,0.16832701854081863],[118,305,72,0.16856762792503802],[118,305,73,0.16924016435462236],[118,305,74,0.1702325443354708],[118,305,75,0.17146906701606243],[118,305,76,0.1728847234879277],[118,305,77,0.17442155650029567],[118,305,78,0.17602529614082243],[118,305,79,0.17764199976398007],[118,306,64,0.19047141016402608],[118,306,65,0.18548023363732338],[118,306,66,0.18125826180517557],[118,306,67,0.17783573556579585],[118,306,68,0.17522092907639028],[118,306,69,0.17339691741572097],[118,306,70,0.1723184161022177],[118,306,71,0.1719121318362325],[118,306,72,0.17207263436085152],[118,306,73,0.17266133348341575],[118,306,74,0.17356819840662469],[118,306,75,0.17471866483041915],[118,306,76,0.17604877742110744],[118,306,77,0.17750148636556337],[118,306,78,0.17902320552761308],[118,306,79,0.18056036958287963],[118,307,64,0.19431000833840992],[118,307,65,0.18935383997586727],[118,307,66,0.18514511809723366],[118,307,67,0.18171535816394616],[118,307,68,0.1790745479449233],[118,307,69,0.17720790635477693],[118,307,70,0.17607271023339707],[118,307,71,0.17559864789257215],[118,307,72,0.17568366481266978],[118,307,73,0.17619270000281362],[118,307,74,0.17701773695742468],[118,307,75,0.17808531639902775],[118,307,76,0.1793325196294627],[118,307,77,0.1807032049733019],[118,307,78,0.1821444915715643],[118,307,79,0.1836032370510069],[118,308,64,0.198202291005815],[118,308,65,0.19328751036388564],[118,308,66,0.18909857935851482],[118,308,67,0.18566819582697647],[118,308,68,0.18300796769057656],[118,308,69,0.18110516502949686],[118,308,70,0.17991953635869157],[118,308,71,0.17938366711317633],[118,308,72,0.17939880185176627],[118,308,73,0.1798333444113174],[118,308,74,0.18058125209055115],[118,308,75,0.1815701446071796],[118,308,76,0.18273812360346872],[118,308,77,0.184029952921347],[118,308,78,0.185393472192845],[118,308,79,0.186775999345143],[118,309,64,0.20211605510868544],[118,309,65,0.1972496421807873],[118,309,66,0.1930876510142313],[118,309,67,0.18966386321989948],[118,309,68,0.1869914082584293],[118,309,69,0.1850595112718556],[118,309,70,0.18383030158845598],[118,309,71,0.1832391788072532],[118,309,72,0.18319061475809312],[118,309,73,0.1835564250580098],[118,309,74,0.1842325355057875],[118,309,75,0.18514765648154488],[118,309,76,0.18624091977720253],[118,309,77,0.18745800806856155],[118,309,78,0.18874750397939677],[118,309,79,0.1900572231970755],[118,310,64,0.20601919220127285],[118,310,65,0.20120861787908503],[118,310,66,0.1970812173211081],[118,310,67,0.1936717516427715],[118,310,68,0.19099476864689585],[118,310,69,0.18904134934844985],[118,310,70,0.18777591189296552],[118,310,71,0.18713658837855796],[118,310,72,0.18703101034834735],[118,310,73,0.18733436237430853],[118,310,74,0.18794456660137254],[118,310,75,0.188791471584265],[118,310,76,0.18981527401852544],[118,310,77,0.19096260407623641],[118,310,78,0.19218281701581472],[118,310,79,0.19342426403816626],[118,311,64,0.20988090313019264],[118,311,65,0.20513401200284287],[118,311,66,0.20104924474809416],[118,311,67,0.19766223275510522],[118,311,68,0.19498883477412463],[118,311,69,0.19302188542571214],[118,311,70,0.19172799810464236],[118,311,71,0.19104795608731784],[118,311,72,0.19089248578735873],[118,311,73,0.19114010583942548],[118,311,74,0.19169079225400842],[118,311,75,0.1924756119587511],[118,311,76,0.19343588405641665],[118,311,77,0.19451922884784392],[118,311,78,0.19567581030852765],[118,311,79,0.19685455302901606],[118,312,64,0.2136719124615701],[118,312,65,0.2089968058081052],[118,312,66,0.20496299558237907],[118,312,67,0.20160687000759023],[118,312,68,0.1989454876553392],[118,312,69,0.1969733315267409],[118,312,70,0.19565911483843726],[118,312,71,0.1949461903067167],[118,312,72,0.1947483157820066],[118,312,73,0.19494731497220213],[118,312,74,0.19544530164677726],[118,312,75,0.19617467093415022],[118,312,76,0.1970779424779458],[118,312,77,0.19810378198590933],[118,312,78,0.19920320399925656],[118,312,79,0.20032574433492137],[118,313,64,0.21736504613725482],[118,313,65,0.21276984078646033],[118,313,66,0.20879535731612842],[118,313,67,0.20547862424972863],[118,313,68,0.2028377859765338],[118,313,69,0.20086886623025657],[118,313,70,0.1995425809169433],[118,313,71,0.19880476974542952],[118,313,72,0.19857215917243298],[118,313,73,0.19872985338182775],[118,313,74,0.19918221130358707],[118,313,75,0.1998630930167552],[118,313,76,0.20071631565804668],[118,313,77,0.2016916572107382],[118,313,78,0.202741029954574],[118,313,79,0.2014291452887176],[118,314,64,0.22093499665526856],[118,314,65,0.2164276053671136],[118,314,66,0.21252064959337053],[118,314,67,0.20925167962912863],[118,314,68,0.20663980966965392],[118,314,69,0.2046824946948572],[118,314,70,0.2033523547027245],[118,314,71,0.20259763307116122],[118,314,72,0.20233796199457726],[118,314,73,0.2024617046142833],[118,314,74,0.20287559319656473],[118,314,75,0.20351511380212972],[118,314,76,0.20432549506211614],[118,314,77,0.20525770465944596],[118,314,78,0.2040421222648055],[118,314,79,0.1973947568663361],[118,315,64,0.2243579410170498],[118,315,65,0.21994597895270201],[118,315,66,0.2161144920418389],[118,315,67,0.21290143263930233],[118,315,68,0.2103267673448404],[118,315,69,0.2083892714320798],[118,315,70,0.2070633689989308],[118,315,71,0.20629962260149884],[118,315,72,0.2060205065484923],[118,315,73,0.20611762315215654],[118,315,74,0.20650022415092317],[118,315,75,0.207105604127884],[118,315,76,0.2078805323459783],[118,315,77,0.2068943585833494],[118,315,78,0.19980793346079329],[118,315,79,0.19311691419567978],[118,316,64,0.22761172502578828],[118,316,65,0.22330242865952313],[118,316,66,0.2195540122065622],[118,316,67,0.21640470999745923],[118,316,68,0.21387522289303681],[118,316,69,0.21196553447684804],[118,316,70,0.21065177172786193],[118,316,71,0.2098867305650953],[118,316,72,0.20959566248993708],[118,316,73,0.2096733897903639],[118,316,74,0.21003184511373377],[118,316,75,0.21061033294173423],[118,316,76,0.20984421160295746],[118,316,77,0.20240979165556502],[118,316,78,0.1953075242935521],[118,316,79,0.18861252555896066],[118,317,64,0.2306760678054413],[118,317,65,0.2264762222979731],[118,317,66,0.22281806579852542],[118,317,67,0.21973999497352115],[118,317,68,0.21726332674248613],[118,317,69,0.2153891404854563],[118,317,70,0.21409516388535807],[118,317,71,0.2133363390644389],[118,317,72,0.21304062812873523],[118,317,73,0.21310605380513298],[118,317,74,0.21344740389267425],[118,317,75,0.21272086201852228],[118,317,76,0.2050444720934009],[118,317,77,0.19762568235777025],[118,317,78,0.1905496111028464],[118,317,79,0.18389075707298896],[118,318,64,0.23353276845875473],[118,318,65,0.2294486437732607],[118,318,66,0.22588745966101356],[118,318,67,0.22288765674540154],[118,318,68,0.22047105045575943],[118,318,69,0.21863970348801404],[118,318,70,0.21737284145668553],[118,318,71,0.21662746429317334],[118,318,72,0.2163341762531399],[118,318,73,0.21639417989154733],[118,318,74,0.2153397287864294],[118,318,75,0.20753431541642597],[118,318,76,0.1999048958136292],[118,318,77,0.19254357170291023],[118,318,78,0.18553445594114368],[118,318,79,0.17895074473517145],[118,319,64,0.23616591486428926],[118,319,65,0.2322032109063944],[118,319,66,0.22874517745363468],[118,319,67,0.2258301827805469],[118,319,68,0.22348042466731025],[118,319,69,0.22169883729534295],[118,319,70,0.22046604129390904],[118,319,71,0.21974100500795793],[118,319,72,0.21945690448019298],[118,319,73,0.21751888210802953],[118,319,74,0.20969584418979612],[118,319,75,0.20196476684810905],[118,319,76,0.19442121970562984],[118,319,77,0.1871559718337957],[118,319,78,0.18025149697235238],[118,319,79,0.17377907757205854],[119,-64,64,0.34273560305876694],[119,-64,65,0.3486489857947219],[119,-64,66,0.3546693564367911],[119,-64,67,0.3607782670321061],[119,-64,68,0.36698131062761835],[119,-64,69,0.373297873436026],[119,-64,70,0.3797405554202789],[119,-64,71,0.38631482423210683],[119,-64,72,0.39301918949918996],[119,-64,73,0.39984544721715054],[119,-64,74,0.40677899555856695],[119,-64,75,0.4137992232804802],[119,-64,76,0.4208799717761773],[119,-64,77,0.4279900716775624],[119,-64,78,0.4350939547718743],[119,-64,79,0.4421523418527449],[119,-63,64,0.3446985182205719],[119,-63,65,0.3507183871608642],[119,-63,66,0.35685027704135264],[119,-63,67,0.36307651693339743],[119,-63,68,0.3694021231577119],[119,-63,69,0.37584481080501897],[119,-63,70,0.3824153900418056],[119,-63,71,0.38911750348946256],[119,-63,72,0.3959478581228436],[119,-63,73,0.4028965223161274],[119,-63,74,0.4099472891548653],[119,-63,75,0.4170781070066689],[119,-63,76,0.4242615782127763],[119,-63,77,0.43146552662983867],[119,-63,78,0.4386536346163471],[119,-63,79,0.4457861499229432],[119,-62,64,0.3468331458534715],[119,-62,65,0.35294757627887224],[119,-62,66,0.3591774723863338],[119,-62,67,0.3655062697910891],[119,-62,68,0.37193835593569785],[119,-62,69,0.3784895185422231],[119,-62,70,0.3851686659140952],[119,-62,71,0.3919776340553884],[119,-62,72,0.3989114552706791],[119,-62,73,0.40595868784452616],[119,-62,74,0.41310180777065975],[119,-62,75,0.42031766337922155],[119,-62,76,0.4275779935857106],[119,-62,77,0.43485001035871695],[119,-62,78,0.442097045875696],[119,-62,79,0.44927926470862684],[119,-61,64,0.3491247493964759],[119,-61,65,0.3553217243990486],[119,-61,66,0.3616359821080934],[119,-61,67,0.3680523535542371],[119,-61,68,0.37457456438383524],[119,-61,69,0.3812162737678336],[119,-61,70,0.3879844211256407],[119,-61,71,0.39487908926618664],[119,-61,72,0.40189378975423423],[119,-61,73,0.4090158061500436],[119,-61,74,0.41622659598530143],[119,-61,75,0.4235022522214231],[119,-61,76,0.43081402481712416],[119,-61,77,0.4381289029115973],[119,-61,78,0.4454102580082789],[119,-61,79,0.4526185484236898],[119,-60,64,0.35155522899384195],[119,-60,65,0.3578229136144725],[119,-60,66,0.36420808175508107],[119,-60,67,0.37069719584702177],[119,-60,68,0.37729330134285993],[119,-60,69,0.3840077820417688],[119,-60,70,0.39084558253916823],[119,-60,71,0.39780511418925735],[119,-60,72,0.4048785389472968],[119,-60,73,0.4120521086689733],[119,-60,74,0.4193065606598093],[119,-60,75,0.42661757015585755],[119,-60,76,0.4339562603030876],[119,-60,77,0.44128977008795056],[119,-60,78,0.44858188055611403],[119,-60,79,0.4557936995419373],[119,-59,64,0.35410405385553995],[119,-59,65,0.360431096565023],[119,-59,66,0.36687427162512415],[119,-59,67,0.37342184327425637],[119,-59,68,0.3800761657284938],[119,-59,69,0.3868462506692702],[119,-59,70,0.3937350559006609],[119,-59,71,0.4007394220383859],[119,-59,72,0.40785033886273003],[119,-59,73,0.4150532653817742],[119,-59,74,0.4223285043592783],[119,-59,75,0.4296516319549964],[119,-59,76,0.43699398301661563],[119,-59,77,0.44432319245286755],[119,-59,78,0.4516037930071847],[119,-59,79,0.45879786964214264],[119,-58,64,0.3567493722020766],[119,-58,65,0.3631252334789277],[119,-58,66,0.36961444205196275],[119,-58,67,0.37620715565729884],[119,-58,68,0.3829050237143272],[119,-58,69,0.38971463085130037],[119,-58,70,0.39663697953870214],[119,-58,71,0.4036674471520045],[119,-58,72,0.4107960218803383],[119,-58,73,0.41800759109226726],[119,-58,74,0.4252822828983136],[119,-58,75,0.43259586154856744],[119,-58,76,0.43992017720026094],[119,-58,77,0.4472236704855624],[119,-58,78,0.45447193220455534],[119,-58,79,0.46162831836394735],[119,-57,64,0.35946929852968434],[119,-57,65,0.3658846062714102],[119,-57,66,0.3724092148618707],[119,-57,67,0.37903517493913746],[119,-57,68,0.3857634022126714],[119,-57,69,0.39259802849752456],[119,-57,70,0.39953814153029993],[119,-57,71,0.4065777544802063],[119,-57,72,0.41370600215164094],[119,-57,73,0.4209073886462058],[119,-57,74,0.42816208722420024],[119,-57,75,0.43544629300969967],[119,-57,76,0.4427326290850296],[119,-57,77,0.4499906064207461],[119,-57,78,0.4571871379866358],[119,-57,79,0.46428710728923345],[119,-56,64,0.36223982388249326],[119,-56,65,0.3686863998713397],[119,-56,66,0.3752371895715408],[119,-56,67,0.38188603336642385],[119,-56,68,0.3886330577978971],[119,-56,69,0.39547993591023467],[119,-56,70,0.40242388189303535],[119,-56,71,0.4094576275299755],[119,-56,72,0.41656957314533133],[119,-56,73,0.423743989023866],[119,-56,74,0.43096126805115725],[119,-56,75,0.43819823023108306],[119,-56,76,0.44542847964422083],[119,-56,77,0.45262281431625223],[119,-56,78,0.4597496893696124],[119,-56,79,0.4667757337360208],[119,-55,64,0.3650142207614571],[119,-55,65,0.3714828659784226],[119,-55,66,0.37804981711595625],[119,-55,67,0.384710518290554],[119,-55,68,0.391464246686326],[119,-55,69,0.3983102706573661],[119,-55,70,0.40524402499723927],[119,-55,71,0.41225708653872745],[119,-55,72,0.4193372738300017],[119,-55,73,0.42646879646293184],[119,-55,74,0.4336324548173265],[119,-55,75,0.4408058909000897],[119,-55,76,0.44796389087053184],[119,-55,77,0.4550787397532676],[119,-55,78,0.4621206287487842],[119,-55,79,0.4690581154602599],[119,-54,64,0.3677402482685294],[119,-54,65,0.3742200294962752],[119,-54,66,0.38079160801232925],[119,-54,67,0.38745178370186756],[119,-54,68,0.3941989324648189],[119,-54,69,0.4010300443108849],[119,-54,70,0.40793893804844755],[119,-54,71,0.41491622446688436],[119,-54,72,0.42194934678367885],[119,-54,73,0.4290226703890321],[119,-54,74,0.43611762268490195],[119,-54,75,0.4432128837356868],[119,-54,76,0.45028462836464944],[119,-54,77,0.45730682024458796],[119,-54,78,0.46425155844363136],[119,-54,79,0.4710894767987946],[119,-53,64,0.3703725922900225],[119,-53,65,0.37685129368982095],[119,-53,66,0.38341491480464374],[119,-53,67,0.39006131417415635],[119,-53,68,0.39678792273222463],[119,-53,69,0.4035896382239612],[119,-53,70,0.4104588818120557],[119,-53,71,0.41738553443923493],[119,-53,72,0.4243569087948906],[119,-53,73,0.43135777093758354],[119,-53,74,0.4383704124244539],[119,-53,75,0.44537477372308515],[119,-53,76,0.4523486196019378],[119,-53,77,0.4592677671129726],[119,-53,78,0.4661063666949843],[119,-53,79,0.47283723683988665],[119,-52,64,0.3728731274768211],[119,-52,65,0.37933767408741165],[119,-52,66,0.38588013498593565],[119,-52,67,0.39249909422005175],[119,-52,68,0.3991910026321681],[119,-52,69,0.40594889951030994],[119,-52,70,0.4127640680292433],[119,-52,71,0.41962592845102603],[119,-52,72,0.42652193166794194],[119,-52,73,0.4334375036669486],[119,-52,74,0.4403560418443182],[119,-52,75,0.4472589640267393],[119,-52,76,0.45412581097806093],[119,-52,77,0.4609344030900039],[119,-52,78,0.4676610518710439],[119,-52,79,0.4742808267616441],[119,-51,64,0.3752112346647479],[119,-51,65,0.38164808195276106],[119,-51,66,0.38815595734803554],[119,-51,67,0.3947338145107759],[119,-51,68,0.40137709826072515],[119,-51,69,0.4080772596238596],[119,-51,70,0.4148247320492766],[119,-51,71,0.4216087639934148],[119,-51,72,0.42841722394411225],[119,-51,73,0.43523645868518135],[119,-51,74,0.44205120583231877],[119,-51,75,0.44884456160033237],[119,-51,76,0.45559800468529826],[119,-51,77,0.4622914770643037],[119,-51,78,0.46890352243039296],[119,-51,79,0.47541148289262686],[119,-50,64,0.37691966559916706],[119,-50,65,0.38375972142710263],[119,-50,66,0.3902197215838465],[119,-50,67,0.3967431905443991],[119,-50,68,0.40332455125778216],[119,-50,69,0.409953962413949],[119,-50,70,0.41662131280925047],[119,-50,71,0.4233159755059064],[119,-50,72,0.430026514568773],[119,-50,73,0.4367404485169897],[119,-50,74,0.4434440716474236],[119,-50,75,0.45012233431583365],[119,-50,76,0.45675878318415125],[119,-50,77,0.46333556235920387],[119,-50,78,0.4698334762601737],[119,-50,79,0.4762321149605018],[119,-49,64,0.377140001008854],[119,-49,65,0.3842262043023903],[119,-49,66,0.39136696096639045],[119,-49,67,0.39851143066838307],[119,-49,68,0.40501919997890656],[119,-49,69,0.41156678100213917],[119,-49,70,0.41814381619661406],[119,-49,71,0.4247400821515563],[119,-49,72,0.43134508977610997],[119,-49,73,0.43794774581518725],[119,-49,74,0.44453607699534436],[119,-49,75,0.45109701803103536],[119,-49,76,0.4576162646409581],[119,-49,77,0.46407819263694544],[119,-49,78,0.47046584405468256],[119,-49,79,0.4767609811978768],[119,-48,64,0.37744405447890067],[119,-48,65,0.3845566710517913],[119,-48,66,0.39173224317483424],[119,-48,67,0.39895478599476963],[119,-48,68,0.40621199697738647],[119,-48,69,0.41290642039105835],[119,-48,70,0.41938786428936287],[119,-48,71,0.4258818563389041],[119,-48,72,0.4323790181056991],[119,-48,73,0.4388697678236683],[119,-48,74,0.4453439452677776],[119,-48,75,0.451790506194318],[119,-48,76,0.45819728764536943],[119,-48,77,0.4645508453214086],[119,-48,78,0.47083636412602276],[119,-48,79,0.47703764288129663],[119,-47,64,0.3778467901592745],[119,-47,65,0.3849806001840124],[119,-47,66,0.3921843029721941],[119,-47,67,0.3994432398553803],[119,-47,68,0.40674645147198846],[119,-47,69,0.4139693037045395],[119,-47,70,0.4203546748995225],[119,-47,71,0.42674746366485944],[119,-47,72,0.4331394739466531],[119,-47,73,0.43952266311312743],[119,-47,74,0.4458886693739861],[119,-47,75,0.45222841485836673],[119,-47,76,0.4585317857915557],[119,-47,77,0.4647873911105319],[119,-47,78,0.4709824007505075],[119,-47,79,0.47710246472043744],[119,-46,64,0.3783541177702553],[119,-46,65,0.38550126784155947],[119,-46,66,0.3927234986842034],[119,-46,67,0.4000078430959452],[119,-46,68,0.4073447832321115],[119,-46,69,0.41472546995933396],[119,-46,70,0.42105095905840006],[119,-46,71,0.4273476135506843],[119,-46,72,0.43364116004404185],[119,-46,73,0.4399250403099387],[119,-46,74,0.4461925957908564],[119,-46,75,0.45243658444453316],[119,-46,76,0.4586487809175601],[119,-46,77,0.4648196615114232],[119,-46,78,0.4709381752876898],[119,-46,79,0.4769916025356004],[119,-45,64,0.378963834789166],[119,-45,65,0.38611424194358823],[119,-45,66,0.3933429827082832],[119,-45,67,0.4006391259938442],[119,-45,68,0.4079947108367926],[119,-45,69,0.4152815701085078],[119,-45,70,0.42148822892790583],[119,-45,71,0.4276969337744257],[119,-45,72,0.43390175577577306],[119,-45,73,0.44009749654286784],[119,-45,74,0.44627903876059966],[119,-45,75,0.45244078431177465],[119,-45,76,0.45857618161696473],[119,-45,77,0.46467734375741415],[119,-45,78,0.4707347588232343],[119,-45,79,0.4767370937965097],[119,-44,64,0.3796665512552111],[119,-44,65,0.38680828923545973],[119,-44,66,0.394029582652937],[119,-44,67,0.40132185214861793],[119,-44,68,0.40867882107305553],[119,-44,69,0.41555263204876075],[119,-44,70,0.42168211442520265],[119,-44,71,0.42781335208034393],[119,-44,72,0.4339413708518043],[119,-44,73,0.440062149677326],[119,-44,74,0.4461718966950812],[119,-44,75,0.45226641803469936],[119,-44,76,0.4583405810702533],[119,-44,77,0.4643878737833187],[119,-44,78,0.47040006175120014],[119,-44,79,0.4763669441342158],[119,-43,64,0.38044659989225854],[119,-43,65,0.38756626852355086],[119,-43,66,0.3947646695168946],[119,-43,67,0.40203585398166114],[119,-43,68,0.4093753642946364],[119,-43,69,0.4155888221848953],[119,-43,70,0.42165168655541435],[119,-43,71,0.4277174830366557],[119,-43,72,0.43378200279742535],[119,-43,73,0.4398421729008662],[119,-43,74,0.44589526956144837],[119,-43,75,0.4519382283826173],[119,-43,76,0.45796705340846605],[119,-43,77,0.4639763266928223],[119,-43,78,0.46995881994887284],[119,-43,79,0.4759052096936696],[119,-42,64,0.38128293426681703],[119,-42,65,0.38836601274633886],[119,-42,66,0.39552501547110913],[119,-42,67,0.40275685872939915],[119,-42,68,0.40941446907174417],[119,-42,69,0.4154109716064242],[119,-42,70,0.42141878542907246],[119,-42,71,0.427432018297272],[119,-42,72,0.43344699657010716],[119,-42,73,0.43946133021580436],[119,-42,74,0.4454730760213571],[119,-42,75,0.45148000099559976],[119,-42,76,0.4574789478332599],[119,-42,77,0.4634653041717385],[119,-42,78,0.4694325772261357],[119,-42,79,0.47537207523307956],[119,-41,64,0.38215001770728424],[119,-41,65,0.38918120254361654],[119,-41,66,0.3962836438185159],[119,-41,67,0.403166713873436],[119,-41,68,0.40909264915529875],[119,-41,69,0.41504260253460973],[119,-41,70,0.4210073509304121],[119,-41,71,0.4269811184145257],[119,-41,72,0.4329605046535306],[119,-41,73,0.4389435113927566],[119,-41,74,0.4449286690987703],[119,-41,75,0.45091426576195465],[119,-41,76,0.4568976797325549],[119,-41,77,0.46287481832344163],[119,-41,78,0.4688396637622147],[119,-41,79,0.4747839279159119],[119,-40,64,0.38301870570980723],[119,-40,65,0.3899822339870782],[119,-40,66,0.39686782045977886],[119,-40,67,0.4027098408089553],[119,-40,68,0.4085950699632094],[119,-40,69,0.4145092068862396],[119,-40,70,0.420442753998618],[119,-40,71,0.42638980434715884],[119,-40,72,0.4323469459718302],[119,-40,73,0.43831226494133535],[119,-40,74,0.4442844491577485],[119,-40,75,0.4502619949128813],[119,-40,76,0.4562425180480981],[119,-40,77,0.462222171426562],[119,-40,78,0.4681951702737771],[119,-40,79,0.47415342678056055],[119,-39,64,0.3838571245462408],[119,-39,65,0.3905590148741962],[119,-39,66,0.3962911905518814],[119,-39,67,0.4020950909755273],[119,-39,68,0.4079488473343321],[119,-39,69,0.4138375241779567],[119,-39,70,0.41975112648811125],[119,-39,71,0.42568334681255404],[119,-39,72,0.43163046197329674],[119,-39,73,0.43759032766282246],[119,-39,74,0.44356147298343634],[119,-39,75,0.4495422968659593],[119,-39,76,0.455530368172121],[119,-39,77,0.4615218311416337],[119,-39,78,0.4675109176914588],[119,-39,79,0.47348956791293545],[119,-38,64,0.38430073766484646],[119,-38,65,0.3898859190395332],[119,-38,66,0.3955776939358508],[119,-38,67,0.4013510698004802],[119,-38,68,0.4071820309622525],[119,-38,69,0.4130548165852794],[119,-38,70,0.41895868758547994],[119,-38,71,0.4248866516438039],[119,-38,72,0.43083436824520993],[119,-38,73,0.43679914936364467],[119,-38,74,0.44277905777587123],[119,-38,75,0.4487721048687598],[119,-38,76,0.454775549673935],[119,-38,77,0.4607853007218522],[119,-38,78,0.4667954221558697],[119,-38,79,0.4727977453873476],[119,-37,64,0.3835626758781233],[119,-37,65,0.3890997571016359],[119,-37,66,0.39475711527207274],[119,-37,67,0.4005068885382538],[119,-37,68,0.406322831154255],[119,-37,69,0.41218813899074863],[119,-37,70,0.4180910647798983],[119,-37,71,0.42402363933092957],[119,-37,72,0.4299806000402841],[119,-37,73,0.43595841132807334],[119,-37,74,0.44195437888735944],[119,-37,75,0.4479658595173001],[119,-37,76,0.4539895681838004],[119,-37,77,0.4600209838133881],[119,-37,78,0.4660538551789157],[119,-37,79,0.4720798080809673],[119,-36,64,0.3827372652720977],[119,-36,65,0.38823098925103644],[119,-36,66,0.39385921829141257],[119,-36,67,0.3995913485822979],[119,-36,68,0.4053988387674198],[119,-36,69,0.41126360188510946],[119,-36,70,0.41717260741176004],[119,-36,71,0.42311661695227804],[119,-36,72,0.42908915012130294],[119,-36,73,0.4350855371746737],[119,-36,74,0.44110206016094655],[119,-36,75,0.4471351842522002],[119,-36,76,0.4531808807916164],[119,-36,77,0.4592340434636884],[119,-36,78,0.4652879988526842],[119,-36,79,0.47133411250760887],[119,-35,64,0.38185493533827747],[119,-35,65,0.38730944582833826],[119,-35,66,0.39291289252867045],[119,-35,67,0.39863211692932093],[119,-35,68,0.40443623608669665],[119,-35,69,0.4103056250238104],[119,-35,70,0.4162256908604567],[119,-35,71,0.4221856407365115],[119,-35,72,0.42817749736352784],[119,-35,73,0.43419519475317475],[119,-35,74,0.4402337557593801],[119,-35,75,0.4462885529676449],[119,-35,76,0.4523546543512473],[119,-35,77,0.4584262549911315],[119,-35,78,0.4644961960253942],[119,-35,79,0.4705555718567377],[119,-34,64,0.38094481900188476],[119,-34,65,0.38636344160458985],[119,-34,66,0.39194528899453934],[119,-34,67,0.39765489049715613],[119,-34,68,0.40345899646008654],[119,-34,69,0.4093361797885075],[119,-34,70,0.4152700094768768],[119,-34,71,0.42124786753771837],[119,-34,72,0.4272600245944028],[119,-34,73,0.43329878777663333],[119,-34,74,0.4393577224109439],[119,-34,75,0.4454309489045546],[119,-34,76,0.45151251611750676],[119,-34,77,0.4575958524061299],[119,-34,78,0.46367329540174484],[119,-34,79,0.4697357014631501],[119,-33,64,0.3800338418692017],[119,-33,65,0.38541887672949177],[119,-33,66,0.39098094245963627],[119,-33,67,0.3966825470616042],[119,-33,68,0.40248807056692315],[119,-33,69,0.40837401826075864],[119,-33,70,0.4143218564203545],[119,-33,71,0.42031689355713325],[119,-33,72,0.42634742419808325],[119,-33,73,0.43240393592915366],[119,-33,74,0.43847838104171566],[119,-33,75,0.44456351404081834],[119,-33,76,0.4506522961830633],[119,-33,77,0.4567373681133474],[119,-33,78,0.4628105915644799],[119,-33,79,0.46886266097271273],[119,-32,64,0.3791457961061079],[119,-32,65,0.3844983220311551],[119,-32,66,0.3900408781022501],[119,-32,67,0.3957342806523437],[119,-32,68,0.4015405572663008],[119,-32,69,0.40743388708227796],[119,-32,70,0.4133933886230246],[119,-32,71,0.4194020787042476],[119,-32,72,0.42544609006781475],[119,-32,73,0.4315139422413557],[119,-32,74,0.4375958668124923],[119,-32,75,0.44368318823726177],[119,-32,76,0.4497677612259429],[119,-32,77,0.45584146566619843],[119,-32,78,0.4618957599540872],[119,-32,79,0.46792129350879125],[119,-31,64,0.3783003966865507],[119,-31,65,0.3836200864436231],[119,-31,66,0.38914170036062545],[119,-31,67,0.3948247193334971],[119,-31,68,0.40062885705410045],[119,-31,69,0.4065257242531199],[119,-31,70,0.4124918751769461],[119,-31,71,0.41850785505782045],[119,-31,72,0.42455749455225383],[119,-31,73,0.43062724658431956],[119,-31,74,0.43670556663283455],[119,-31,75,0.44278233744822837],[119,-31,76,0.44884833912484384],[119,-31,77,0.4548947653881024],[119,-31,78,0.4609127868841027],[119,-31,79,0.4668931621823148],[119,-30,64,0.37751231785785966],[119,-30,65,0.38279726444331924],[119,-30,66,0.3882946619320323],[119,-30,67,0.39396302339185785],[119,-30,68,0.3997598062499861],[119,-30,69,0.4056538371071848],[119,-30,70,0.4116189275221604],[119,-30,71,0.4176330179646813],[119,-30,72,0.42367754911369493],[119,-30,73,0.42973686419908963],[119,-30,74,0.4357976432856373],[119,-30,75,0.4418483703613725],[119,-30,76,0.447878834050289],[119,-30,77,0.45387966272121977],[119,-30,78,0.4598418947116053],[119,-30,79,0.46575658432686656],[119,-29,64,0.37679020779016437],[119,-29,65,0.38203676149263055],[119,-29,66,0.3875047109741297],[119,-29,67,0.39315196206469366],[119,-29,68,0.39893379013971175],[119,-29,69,0.4048160598029497],[119,-29,70,0.4107697099064951],[119,-29,71,0.41676999840066026],[119,-29,72,0.4227959474961772],[119,-29,73,0.4288298082522882],[119,-29,74,0.43485654536253615],[119,-29,75,0.4408633428917301],[119,-29,76,0.44683913169383205],[119,-29,77,0.4527741392115972],[119,-29,78,0.4586594623250811],[119,-29,79,0.4644866638776207],[119,-28,64,0.37613567950975185],[119,-28,65,0.38133829561801375],[119,-28,66,0.3867695146892715],[119,-28,67,0.3923869670594575],[119,-28,68,0.39814383341311343],[119,-28,69,0.40400288877635604],[119,-28,70,0.409932128690384],[119,-28,71,0.4159041153134272],[119,-28,72,0.4218954902895189],[119,-28,73,0.4278864954888434],[119,-28,74,0.4338605022831732],[119,-28,75,0.4398035500200685],[119,-28,76,0.4455838634996421],[119,-28,77,0.4512026108960314],[119,-28,78,0.45682054497762337],[119,-28,79,0.46241638565236026],[119,-27,64,0.37554227636265414],[119,-27,65,0.3806933733930524],[119,-27,66,0.38607845761120835],[119,-27,67,0.39165516125151173],[119,-27,68,0.3973746663661332],[119,-27,69,0.40319659472423536],[119,-27,70,0.40908599918423527],[119,-27,71,0.41497933219501043],[119,-27,72,0.420203934986337],[119,-27,73,0.42551400487821556],[119,-27,74,0.43090376681666887],[119,-27,75,0.43636306879306785],[119,-27,76,0.4418779480529472],[119,-27,77,0.44743119565566447],[119,-27,78,0.4530029187600693],[119,-27,79,0.45857110001150364],[119,-26,64,0.37499441041331494],[119,-26,65,0.3800842387519316],[119,-26,66,0.38541161306414246],[119,-26,67,0.3909343610910368],[119,-26,68,0.3966017654740112],[119,-26,69,0.4017927494384642],[119,-26,70,0.40668161178540474],[119,-26,71,0.4116642333289057],[119,-26,72,0.41674771079344597],[119,-26,73,0.42193316909694906],[119,-26,74,0.4272163036391133],[119,-26,75,0.43258793260582046],[119,-26,76,0.4380345587025938],[119,-26,77,0.44353893970262337],[119,-26,78,0.44908066717253414],[119,-26,79,0.45463675272187115],[119,-25,64,0.374466238449693],[119,-25,65,0.3794828005027105],[119,-25,66,0.38473873154450955],[119,-25,67,0.3893734807567128],[119,-25,68,0.3939518567874846],[119,-25,69,0.39859727746775875],[119,-25,70,0.40333340729338074],[119,-25,71,0.408176452445197],[119,-25,72,0.41313565110258893],[119,-25,73,0.41821378395032144],[119,-25,74,0.4234077043884618],[119,-25,75,0.42870888790347383],[119,-25,76,0.4341040000107234],[119,-25,77,0.43957548213531944],[119,-25,78,0.44510215476032405],[119,-25,79,0.45065983713904034],[119,-24,64,0.37314895399268044],[119,-24,65,0.3775618943049209],[119,-24,66,0.3819426754363253],[119,-24,67,0.38632269104072053],[119,-24,68,0.39074370210797194],[119,-24,69,0.39524057202489843],[119,-24,70,0.39983975224547447],[119,-24,71,0.4045597621263934],[119,-24,72,0.40941166384071453],[119,-24,73,0.41439956529146776],[119,-24,74,0.4195211505368761],[119,-24,75,0.4247682371732136],[119,-24,76,0.43012736005955127],[119,-24,77,0.4355803807116773],[119,-24,78,0.44110512164136767],[119,-24,79,0.4466760248721687],[119,-23,64,0.3704182779950123],[119,-23,65,0.3746682327137839],[119,-23,66,0.3788912520149669],[119,-23,67,0.38311871479843396],[119,-23,68,0.38739420692258075],[119,-23,69,0.3917555326624546],[119,-23,70,0.39623164886695783],[119,-23,71,0.4008430972523838],[119,-23,72,0.405602472576111],[119,-23,73,0.41051492577059007],[119,-23,74,0.41557870153315574],[119,-23,75,0.42078570978884566],[119,-23,76,0.4261221303691313],[119,-23,77,0.43156905018033154],[119,-23,78,0.4371031320726989],[119,-23,79,0.44269731456510364],[119,-22,64,0.36754585970551246],[119,-22,65,0.3716380218153092],[119,-22,66,0.3757102418424237],[119,-22,67,0.37979371708477394],[119,-22,68,0.38393354855299267],[119,-22,69,0.3881701628614864],[119,-22,70,0.3925347213064079],[119,-22,71,0.3970495073646673],[119,-22,72,0.4017283905282659],[119,-22,73,0.40657733167294335],[119,-22,74,0.41159492943113507],[119,-22,75,0.4167730069487506],[119,-22,76,0.4220972383191469],[119,-22,77,0.4275478139070417],[119,-22,78,0.4331001437013984],[119,-22,79,0.4387255977699647],[119,-21,64,0.36456688918615265],[119,-21,65,0.36850453970291536],[119,-21,66,0.37243093421087387],[119,-21,67,0.3763768747958556],[119,-21,68,0.3803886034090256],[119,-21,69,0.3845088058732561],[119,-21,70,0.38877053621491703],[119,-21,71,0.3931975560375481],[119,-21,72,0.3978047904751721],[119,-21,73,0.4025988323088518],[119,-21,74,0.40757849368923715],[119,-21,75,0.4127354048050998],[119,-21,76,0.41805465873970304],[119,-21,77,0.42351550166463187],[119,-21,78,0.4290920674359523],[119,-21,79,0.4347541555808444],[119,-20,64,0.36151517161652574],[119,-20,65,0.3652995136353858],[119,-20,66,0.3690828046472297],[119,-20,67,0.3728952069480718],[119,-20,68,0.376783683359137],[119,-20,69,0.3807927849092087],[119,-20,70,0.3849571474644923],[119,-20,71,0.38930177386934456],[119,-20,72,0.3938424727321763],[119,-20,73,0.3985863524941777],[119,-20,74,0.4035323702016567],[119,-20,75,0.40867193428683407],[119,-20,76,0.41398956055084374],[119,-20,77,0.4194635804379035],[119,-20,78,0.4250669005928659],[119,-20,79,0.43076781260629393],[119,-19,64,0.35842420410850395],[119,-19,65,0.36205411552131367],[119,-19,66,0.36569442494093823],[119,-19,67,0.3693743933992557],[119,-19,68,0.3731412578593934],[119,-19,69,0.3770410259409668],[119,-19,70,0.38110961970554785],[119,-19,71,0.385373085806845],[119,-19,72,0.3898480021513135],[119,-19,73,0.39454194789573704],[119,-19,74,0.39945403619235664],[119,-19,75,0.4045755089612177],[119,-19,76,0.40989039284354023],[119,-19,77,0.41537621537072467],[119,-19,78,0.42100478027296717],[119,-19,79,0.4267430007501733],[119,-18,64,0.355324362010361],[119,-18,65,0.35879589568134856],[119,-18,66,0.3622901381187119],[119,-18,67,0.36583518319369557],[119,-18,68,0.36947808836819007],[119,-18,69,0.3732659133323322],[119,-18,70,0.3772356031582926],[119,-18,71,0.38141410600068054],[119,-18,72,0.3858187269448193],[119,-18,73,0.39045755464679893],[119,-18,74,0.3953299601835057],[119,-18,75,0.40042716738223966],[119,-18,76,0.4057328937561199],[119,-18,77,0.41122406103502945],[119,-18,78,0.416871574154467],[119,-18,79,0.4226411674472795],[119,-17,64,0.35222505144944244],[119,-17,65,0.3555317405951568],[119,-17,66,0.35887402027357473],[119,-17,67,0.36227856249385015],[119,-17,68,0.36579179575975806],[119,-17,69,0.3694614321212136],[119,-17,70,0.37332519981838885],[119,-17,71,0.37741084438965083],[119,-17,72,0.38173640517429097],[119,-17,73,0.38631057578909345],[119,-17,74,0.39113314802598753],[119,-17,75,0.39619553844830013],[119,-17,76,0.4014813967986364],[119,-17,77,0.4069672951741318],[119,-17,78,0.41262349677705934],[119,-17,79,0.4184148029116722],[119,-16,64,0.34908370911585895],[119,-16,65,0.3522205022165983],[119,-16,66,0.35540671952367103],[119,-16,67,0.3586673904179297],[119,-16,68,0.3620478494056639],[119,-16,69,0.365596005512784],[119,-16,70,0.36935005896945755],[119,-16,71,0.3733383664265957],[119,-16,72,0.377579619629504],[119,-16,73,0.3820831206317546],[119,-16,74,0.3868491530419299],[119,-16,75,0.3918694486020795],[119,-16,76,0.39712774820814345],[119,-16,77,0.40260045630144403],[119,-16,78,0.40825738738918427],[119,-16,79,0.41406260329203465],[119,-15,64,0.34585605983596035],[119,-15,65,0.34882005960039114],[119,-15,66,0.35184864595774723],[119,-15,67,0.3549650181322465],[119,-15,68,0.358212937945148],[119,-15,69,0.3616399989158761],[119,-15,70,0.3652844840612283],[119,-15,71,0.3691750822697566],[119,-15,72,0.3733309541166528],[119,-15,73,0.37776190767324974],[119,-15,74,0.3824686838596684],[119,-15,75,0.3874433506690846],[119,-15,76,0.39266980537727664],[119,-15,77,0.3981243836439331],[119,-15,78,0.4037765742154862],[119,-15,79,0.4095898377545309],[119,-14,64,0.34250950105758343],[119,-14,65,0.3452996337020728],[119,-14,66,0.34817102917904375],[119,-14,67,0.35114489680284117],[119,-14,68,0.3542629442634307],[119,-14,69,0.3575718989741713],[119,-14,70,0.36110968152533107],[119,-14,71,0.3649049658817228],[119,-14,72,0.3689771221258945],[119,-14,73,0.3733362830671825],[119,-14,74,0.3779835343269457],[119,-14,75,0.3829112272627023],[119,-14,76,0.3881034138515339],[119,-14,77,0.3935364024186264],[119,-14,78,0.3991794328732879],[119,-14,79,0.4049954699039785],[119,-13,64,0.3390210485226182],[119,-13,65,0.3416377648720311],[119,-13,66,0.3443539576599809],[119,-13,67,0.34718871009729246],[119,-13,68,0.3501812028429162],[119,-13,69,0.3533767275168544],[119,-13,70,0.3568123622353193],[119,-13,71,0.3605163732470488],[119,-13,72,0.3645080286578433],[119,-13,73,0.3687975498664774],[119,-13,74,0.37338620038664233],[119,-13,75,0.37826651145392576],[119,-13,76,0.3834226435464647],[119,-13,77,0.38883088268563654],[119,-13,78,0.39446027013237767],[119,-13,79,0.40027336385739154],[119,-12,64,0.3353754559327014],[119,-12,65,0.33782046188982606],[119,-12,66,0.3403845854069983],[119,-12,67,0.34308466782883895],[119,-12,68,0.345956909870472],[119,-12,69,0.34904459734970356],[119,-12,70,0.35238347117782154],[119,-12,71,0.35600097239296385],[119,-12,72,0.35991592470913963],[119,-12,73,0.3641383681857279],[119,-12,74,0.36866954375657685],[119,-12,75,0.3735020280544172],[119,-12,76,0.3786200176682337],[119,-12,77,0.3839997616815329],[119,-12,78,0.3896101410617702],[119,-12,79,0.3954133932077172],[119,-11,64,0.3315635089978183],[119,-11,65,0.33383952284179136],[119,-11,66,0.33625550617344596],[119,-11,67,0.33882596094044515],[119,-11,68,0.34158368628086105],[119,-11,69,0.34456941006804864],[119,-11,70,0.3478170455343038],[119,-11,71,0.3513527854464081],[119,-11,72,0.35519465469975],[119,-11,73,0.35935222662999267],[119,-11,74,0.36382650284438695],[119,-11,75,0.3686099560446875],[119,-11,76,0.3736867349889363],[119,-11,77,0.3790330304233275],[119,-11,78,0.3846176005118782],[119,-11,79,0.39040245400305934],[119,-10,64,0.3275804949176037],[119,-10,65,0.32969102879751616],[119,-10,66,0.33196329609501624],[119,-10,67,0.33440937863797915],[119,-10,68,0.337058294493334],[119,-10,69,0.33994769660526225],[119,-10,70,0.3431092018500947],[119,-10,71,0.34656734337249834],[119,-10,72,0.3503389974613331],[119,-10,73,0.3544329855906072],[119,-10,74,0.3588498514880558],[119,-10,75,0.3635818127387751],[119,-10,76,0.3686128860817817],[119,-10,77,0.3739191852167628],[119,-10,78,0.3794693896107403],[119,-10,79,0.38522538248244265],[119,-9,64,0.32342484896406626],[119,-9,65,0.3253740118535742],[119,-9,66,0.3275072262204668],[119,-9,67,0.32983408905665146],[119,-9,68,0.33237951014088635],[119,-9,69,0.3351776017307566],[119,-9,70,0.3382572534155938],[119,-9,71,0.34164095442595377],[119,-9,72,0.34534410172117813],[119,-9,73,0.3493744932436632],[119,-9,74,0.35373200625966644],[119,-9,75,0.3584084603288248],[119,-9,76,0.3633876640725594],[119,-9,77,0.36864564454879223],[119,-9,78,0.374151057691178],[119,-9,79,0.37986577793809456],[119,-8,64,0.3190969804095999],[119,-8,65,0.32088929968316326],[119,-8,66,0.32288814696780055],[119,-8,67,0.32510058538096737],[119,-8,68,0.32754715059766815],[119,-8,69,0.3302580141781287],[119,-8,70,0.3332589594025513],[119,-8,71,0.336570087707039],[119,-8,72,0.34020501730937774],[119,-8,73,0.3441702753047564],[119,-8,74,0.34846488320513197],[119,-8,75,0.35308013549871725],[119,-8,76,0.35799957041463215],[119,-8,77,0.3631991316958288],[119,-8,78,0.3686475198154346],[119,-8,79,0.37430673072048654],[119,-7,64,0.31459828056977207],[119,-7,65,0.316238539252458],[119,-7,66,0.31810754704703803],[119,-7,67,0.3202097998301951],[119,-7,68,0.32256126257418927],[119,-7,69,0.32518784451197574],[119,-7,70,0.3281119076811663],[119,-7,71,0.3313508735427454],[119,-7,72,0.3349163235840457],[119,-7,73,0.33881329979089464],[119,-7,74,0.34303980501295556],[119,-7,75,0.3475865028329817],[119,-7,76,0.3524366161433324],[119,-7,77,0.3575660232354405],[119,-7,78,0.3629435498245957],[119,-7,79,0.3685314550663074],[119,-6,64,0.30993031620205413],[119,-6,65,0.3114234028340805],[119,-6,66,0.31316678985098567],[119,-6,67,0.3151623883646178],[119,-6,68,0.31742147146838506],[119,-6,69,0.31996545322740877],[119,-6,70,0.3228130335882099],[119,-6,71,0.3259787227093617],[119,-6,72,0.32947185680807567],[119,-6,73,0.3332958182151848],[119,-6,74,0.337447459709239],[119,-6,75,0.34191673277498186],[119,-6,76,0.34668651901207076],[119,-6,77,0.3517326635103891],[119,-6,78,0.3570242086133618],[119,-6,79,0.3625238261133121],[119,-5,64,0.3050942119165296],[119,-5,65,0.3064449798624184],[119,-5,66,0.3080665307223271],[119,-5,67,0.3099581893602157],[119,-5,68,0.31212649553111427],[119,-5,69,0.31458823191752516],[119,-5,70,0.31735827722093674],[119,-5,71,0.32044806677320453],[119,-5,72,0.32386453842064455],[119,-5,73,0.3276092847921174],[119,-5,74,0.33167791206481345],[119,-5,75,0.3360596049081221],[119,-5,76,0.3407368968587539],[119,-5,77,0.3456856449630723],[119,-5,78,0.35087520712010933],[119,-5,79,0.3562688201739883],[119,-4,64,0.30009022560666787],[119,-4,65,0.30130335852855694],[119,-4,66,0.3028063188530667],[119,-4,67,0.3045958598351135],[119,-4,68,0.3066738282216569],[119,-4,69,0.3090523406357094],[119,-4,70,0.3117423820911668],[119,-4,71,0.31475222204744374],[119,-4,72,0.31808630632315577],[119,-4,73,0.32174435535724244],[119,-4,74,0.3257206689704187],[119,-4,75,0.33000363734311183],[119,-4,76,0.3345754574954669],[119,-4,77,0.33941205413445247],[119,-4,78,0.3444832033273171],[119,-4,79,0.3497528570726093],[119,-3,64,0.29491752119260173],[119,-3,65,0.2959974012995552],[119,-3,66,0.29738438785611343],[119,-3,67,0.29907269308560236],[119,-3,68,0.3010595923879383],[119,-3,69,0.30335260481758286],[119,-3,70,0.30595883818489755],[119,-3,71,0.30888337984138725],[119,-3,72,0.3121281514398456],[119,-3,73,0.3156909678025724],[119,-3,74,0.31956480008571225],[119,-3,75,0.3237372429922246],[119,-3,76,0.3281901853565974],[119,-3,77,0.3328996830049771],[119,-3,78,0.33783603238964766],[119,-3,79,0.3429640431096093],[119,-2,64,0.28957414318387265],[119,-2,65,0.2905247187656541],[119,-2,66,0.2917976392667574],[119,-2,67,0.2933846218011483],[119,-2,68,0.2952785701061498],[119,-2,69,0.2974825753106672],[119,-2,70,0.29999997263452666],[119,-2,71,0.3028327258141421],[119,-2,72,0.305980261918215],[119,-2,73,0.3094385058991613],[119,-2,74,0.31319911509922094],[119,-2,75,0.3172489135004206],[119,-2,76,0.3215695250838555],[119,-2,77,0.3261372052498496],[119,-2,78,0.330922868851134],[119,-2,79,0.3358923130090048],[119,-1,64,0.2840571977045626],[119,-1,65,0.2848818463609963],[119,-1,66,0.2860418233752503],[119,-1,67,0.28752641086791564],[119,-1,68,0.28932441214669447],[119,-1,69,0.29143475518010936],[119,-1,70,0.2938571913152431],[119,-1,71,0.29659069132962823],[119,-1,72,0.2996322773966444],[119,-1,73,0.3029760484143494],[119,-1,74,0.3066123989431016],[119,-1,75,0.31052743157771634],[119,-1,76,0.314702562166228],[119,-1,77,0.3191143168832189],[119,-1,78,0.32373431977569556],[119,-1,79,0.32852946902627533],[119,0,64,0.2783632446802284],[119,0,65,0.27906462856785635],[119,0,66,0.280111921860107],[119,0,67,0.2814920441386573],[119,0,68,0.28319003109796737],[119,0,69,0.28520099701652274],[119,0,70,0.28752137472522393],[119,0,71,0.29014733974584955],[119,0,72,0.2930736557879483],[119,0,73,0.2962927054357293],[119,0,74,0.2997937062920702],[119,0,75,0.3035621124414153],[119,0,76,0.30757920069372696],[119,0,77,0.3118218406812756],[119,0,78,0.31626244750334026],[119,0,79,0.3208691152532885],[119,1,64,0.2724889052105667],[119,1,65,0.27306881375948744],[119,1,66,0.27400273469833325],[119,1,67,0.2752753071390295],[119,1,68,0.2768681797633673],[119,1,69,0.27877307214815533],[119,1,70,0.28098342947557964],[119,1,71,0.28349288902409187],[119,1,72,0.28629415416139536],[119,1,73,0.28937804382020227],[119,1,74,0.292732717741106],[119,1,75,0.2963430773794328],[119,1,76,0.3001903419909495],[119,1,77,0.3042517990381292],[119,1,78,0.308500727698578],[119,1,79,0.3129064939124643],[119,2,64,0.2664316870964366],[119,2,65,0.2668908610069206],[119,2,66,0.2677096716044988],[119,2,67,0.2688705653951075],[119,2,68,0.270352214377635],[119,2,69,0.2721434115439057],[119,2,70,0.2742349957593629],[119,2,71,0.276618371924671],[119,2,72,0.27928442617989785],[119,2,73,0.28222260568956975],[119,2,74,0.2854201633061256],[119,2,75,0.28886156704264404],[119,2,76,0.2925280739242461],[119,2,77,0.2963974674344153],[119,2,78,0.3004439574317284],[119,2,79,0.30463824108615034],[119,3,64,0.26019104093366957],[119,3,65,0.2605289802280619],[119,3,66,0.2612297754278839],[119,3,67,0.2622737691370685],[119,3,68,0.2636370742218791],[119,3,69,0.26530604839420396],[119,3,70,0.26726933682631254],[119,3,71,0.26951645352095094],[119,3,72,0.2720367472278127],[119,3,73,0.2748185202565685],[119,3,74,0.2778483004942805],[119,3,75,0.28111026659129523],[119,3,76,0.2845858259407972],[119,3,77,0.28825334474604114],[119,3,78,0.29208802914977827],[119,3,79,0.29606195609429153],[119,4,64,0.2537696447785273],[119,4,65,0.25398439493274627],[119,4,66,0.2545629602037422],[119,4,67,0.2554836626150461],[119,4,68,0.25672045342017],[119,4,69,0.25825773773846883],[119,4,70,0.2600823875119124],[119,4,71,0.2621823869127603],[119,4,72,0.2645458541433392],[119,4,73,0.2671602041528802],[119,4,74,0.2700114525887346],[119,4,75,0.27308366097949827],[119,4,76,0.27635852283220863],[119,4,77,0.27981509001754],[119,4,78,0.28342963851954533],[119,4,79,0.2871756723414504],[119,5,64,0.24717492079316755],[119,5,65,0.24726283117571118],[119,5,66,0.24771346780407472],[119,5,67,0.2485032023966927],[119,5,68,0.24960416973372784],[119,5,69,0.2509992583523157],[119,5,70,0.252673967321677],[119,5,71,0.25461511277012305],[119,5,72,0.25680990512184615],[119,5,73,0.25924515554045974],[119,5,74,0.2619066119086094],[119,5,75,0.26477842437686805],[119,5,76,0.2678427402229946],[119,5,77,0.2710794274769934],[119,5,78,0.2744659264917845],[119,5,79,0.2779772283749177],[119,6,64,0.2404207897722646],[119,6,65,0.24037624008140362],[119,6,66,0.24069155156419916],[119,6,67,0.2413411936018887],[119,6,68,0.24229573946407615],[119,6,69,0.24353690572361608],[119,6,70,0.2450491661641713],[119,6,71,0.2468185095998386],[119,6,72,0.2488315650095486],[119,6,73,0.25107484508068545],[119,6,74,0.25353410851071173],[119,6,75,0.2561938411413374],[119,6,76,0.25903685572904545],[119,6,77,0.2620440098908711],[119,6,78,0.2651940415086038],[119,6,79,0.2684635206290187],[119,7,64,0.23353077287757046],[119,7,65,0.23334645900984408],[119,7,66,0.2335176261432891],[119,7,67,0.23401689711957616],[119,7,68,0.23481344691043662],[119,7,69,0.2358880474505735],[119,7,70,0.23722441666326807],[119,7,71,0.23880801207565344],[119,7,72,0.24062518981269268],[119,7,73,0.24266247266655758],[119,7,74,0.2449059276220077],[119,7,75,0.24734065296281427],[119,7,76,0.24995037483172575],[119,7,77,0.25271715286909074],[119,7,78,0.255621194316223],[119,7,79,0.25864077573970906],[119,8,64,0.22653789935865362],[119,8,65,0.22620743681135716],[119,8,66,0.2262265833990912],[119,8,67,0.2265663521503686],[119,8,68,0.22719475191352162],[119,8,69,0.22809180493659115],[119,8,70,0.22924069541805478],[119,8,71,0.23062658865293373],[119,8,72,0.2322358128961437],[119,8,73,0.2340551422131804],[119,8,74,0.2360711807394677],[119,8,75,0.23826984853012403],[119,8,76,0.24063596894483008],[119,8,77,0.2431529572799098],[119,8,78,0.24580261013474064],[119,8,79,0.24856499478277194],[119,9,64,0.21947040168311424],[119,9,65,0.21898906186219116],[119,9,66,0.2188499826966965],[119,9,67,0.21902299495440902],[119,9,68,0.2194752733122908],[119,9,69,0.22018628331530413],[119,9,70,0.2211388651148337],[119,9,71,0.22231807567720818],[119,9,72,0.22371038825691134],[119,9,73,0.22530298558266568],[119,9,74,0.22708314722158798],[119,9,75,0.2290377313613431],[119,9,76,0.2311527510269471],[119,9,77,0.23341304452946793],[119,9,78,0.23580203973128358],[119,9,79,0.23830161150720225],[119,10,64,0.2123503361246991],[119,10,65,0.21171495237717552],[119,10,66,0.2114130841930305],[119,10,67,0.2114139465879657],[119,10,68,0.21168428366769473],[119,10,69,0.21220319192047848],[119,10,70,0.2129533247174874],[119,10,71,0.2139197619129717],[119,10,72,0.21508922693046983],[119,10,73,0.21644939069035377],[119,10,74,0.2179882628857223],[119,10,75,0.21969367090201336],[119,10,76,0.2215528264655801],[119,10,77,0.22355197989959957],[119,10,78,0.2256761616649134],[119,10,79,0.22790901066896344],[119,11,64,0.2051962167656022],[119,11,65,0.20440509674817944],[119,11,66,0.20393747045053065],[119,11,67,0.20376259263638716],[119,11,68,0.20384722362354515],[119,11,69,0.2041702675452349],[119,11,70,0.20471431433626125],[119,11,71,0.20546454692882443],[119,11,72,0.2064079807516472],[119,11,73,0.20753278319928017],[119,11,74,0.20882767361387752],[119,11,75,0.21028140412406324],[119,11,76,0.21188232148887828],[119,11,77,0.21361800990085367],[119,11,78,0.2154750145136898],[119,11,79,0.21743864527694826],[119,12,64,0.1980259343231111],[119,12,65,0.19707877436196802],[119,12,66,0.19644394194413517],[119,12,67,0.19609142761889892],[119,12,68,0.19598846893158847],[119,12,69,0.19611393561255108],[119,12,70,0.1964504406277531],[119,12,71,0.19698330019259547],[119,12,72,0.19769980480946853],[119,12,73,0.19858856299659342],[119,12,74,0.19963891827556335],[119,12,75,0.2008404398026675],[119,12,76,0.20218248684735363],[119,12,77,0.2036538471415597],[119,12,78,0.20524244894871269],[119,12,79,0.20693514653088332],[119,13,64,0.19085996528296265],[119,13,65,0.1897577621838348],[119,13,66,0.1889556915210224],[119,13,67,0.18842516883995672],[119,13,68,0.1881343545533349],[119,13,69,0.18806221322087935],[119,13,70,0.18819142615142292],[119,13,71,0.18850742367504636],[119,13,72,0.18899770068541646],[119,13,73,0.18965119675901784],[119,13,74,0.1904577414310581],[119,13,75,0.19140756504331885],[119,13,76,0.19249087541487583],[119,13,77,0.1936975004237623],[119,13,78,0.19501659642880145],[119,13,79,0.19643642230569822],[119,14,64,0.18372487783589117],[119,14,65,0.18246983358944935],[119,14,66,0.18150176422740255],[119,14,67,0.1807941459650318],[119,14,68,0.18031646190402684],[119,14,69,0.18004785983906785],[119,14,70,0.1799710880863494],[119,14,71,0.18007162291752116],[119,14,72,0.18033704490737218],[119,14,73,0.18075647044661863],[119,14,74,0.18132003899785937],[119,14,75,0.18201845652971088],[119,14,76,0.18284259542077888],[119,14,77,0.18378315098265963],[119,14,78,0.18483035461189262],[119,14,79,0.1859737434442736],[119,15,64,0.17665871213130108],[119,15,65,0.17525395042510275],[119,15,66,0.1741219496290197],[119,15,67,0.17323878702707765],[119,15,68,0.17257560212558082],[119,15,69,0.172111775295255],[119,15,70,0.17183008659823196],[119,15,71,0.171715962694124],[119,15,72,0.17175693189108843],[119,15,73,0.1719421232796204],[119,15,74,0.17226181051205644],[119,15,75,0.17270700067378197],[119,15,76,0.1732690685743074],[119,15,77,0.17393943666873837],[119,15,78,0.1747093007048323],[119,15,79,0.17556940107711172],[119,16,64,0.16970492202070198],[119,16,65,0.16815369646634798],[119,16,66,0.16685955929658428],[119,16,67,0.16580162224010958],[119,16,68,0.16495297128182565],[119,16,69,0.16429328245817315],[119,16,70,0.16380536832334516],[119,16,71,0.16347456434204224],[119,16,72,0.16328827713760594],[119,16,73,0.1632355642162864],[119,16,74,0.16330674570614984],[119,16,75,0.1634930485624107],[119,16,76,0.16378628360283012],[119,16,77,0.16417855564803743],[119,16,78,0.1646620069541391],[119,16,79,0.16522859403781612],[119,17,64,0.16288553463333186],[119,17,65,0.16119102261992335],[119,17,66,0.1597361698190899],[119,17,67,0.15850345070995997],[119,17,68,0.15746815038689665],[119,17,69,0.15661032932844496],[119,17,70,0.155912880616566],[119,17,71,0.15536107048887485],[119,17,72,0.15494219011696397],[119,17,73,0.15464522502529413],[119,17,74,0.15446054265896234],[119,17,75,0.15437959855568067],[119,17,76,0.15439466152221717],[119,17,77,0.15449855815891073],[119,17,78,0.1546844370193544],[119,17,79,0.15494555263471896],[119,18,64,0.15619954112902398],[119,18,65,0.1543648122707931],[119,18,66,0.1527504412947611],[119,18,67,0.15134249081702],[119,18,68,0.1501186579495965],[119,18,69,0.14905949848901245],[119,18,70,0.14814807332922578],[119,18,71,0.14736965288029474],[119,18,72,0.1467114790375185],[119,18,73,0.1461625300340942],[119,18,74,0.1457132886523685],[119,18,75,0.14535551425223558],[119,18,76,0.1450820190558121],[119,18,77,0.14488644910551612],[119,18,78,0.14476307028952098],[119,18,79,0.14470655980269298],[119,19,64,0.14941612876278484],[119,19,65,0.14765443487604904],[119,19,66,0.1458816308421035],[119,19,67,0.14429782636042585],[119,19,68,0.14288330183369763],[119,19,69,0.14161923730684436],[119,19,70,0.14048898025559378],[119,19,71,0.1394779189735659],[119,19,72,0.13857335814915878],[119,19,73,0.13776438196208532],[119,19,74,0.13704170514026254],[119,19,75,0.13639751243954903],[119,19,76,0.13582528702687902],[119,19,77,0.13531962826169375],[119,19,78,0.13487605938235675],[119,19,79,0.13449082561164027],[119,20,64,0.13773349876021823],[119,20,65,0.13644555248727674],[119,20,66,0.13522406872983117],[119,20,67,0.13407872623391365],[119,20,68,0.1330279984742671],[119,20,69,0.13208975307005216],[119,20,70,0.13127845876590385],[119,20,71,0.13060522287779885],[119,20,72,0.13007788093307704],[119,20,73,0.1294155788227908],[119,20,74,0.1284113390408784],[119,20,75,0.1274721136225635],[119,20,76,0.12659220834197432],[119,20,77,0.12576732757158432],[119,20,78,0.12499440246128966],[119,20,79,0.12427139424507579],[119,21,64,0.12576079761027711],[119,21,65,0.12426997411663236],[119,21,66,0.12286699840310687],[119,21,67,0.12155806405590186],[119,21,68,0.12035908906891601],[119,21,69,0.11928730062475199],[119,21,70,0.118356891632341],[119,21,71,0.11757888872274055],[119,21,72,0.1169611270726148],[119,21,73,0.11650826777247436],[119,21,74,0.11622185736578862],[119,21,75,0.11610042908574641],[119,21,76,0.11613964522109296],[119,21,77,0.11619204674928173],[119,21,78,0.11508313183657203],[119,21,79,0.11401608515329306],[119,22,64,0.11356321051649013],[119,22,65,0.11186514676990626],[119,22,66,0.11027726732106621],[119,22,67,0.10880242272581914],[119,22,68,0.10745393562265682],[119,22,69,0.10624823748738653],[119,22,70,0.10519907699676975],[119,22,71,0.10431722513925226],[119,22,72,0.10361033938243117],[119,22,73,0.10308288574031585],[119,22,74,0.10273611839895033],[119,22,75,0.1025681164205119],[119,22,76,0.10257387691254426],[119,22,77,0.10274546392209971],[119,22,78,0.10307221219690334],[119,22,79,0.10354098484675822],[119,23,64,0.10121177493331829],[119,23,65,0.09930242890475373],[119,23,66,0.09752616331412253],[119,23,67,0.09588270482542054],[119,23,68,0.0943827856207921],[119,23,69,0.09304188701847614],[119,23,70,0.09187314137746631],[119,23,71,0.09088688409997472],[119,23,72,0.09009041326793737],[119,23,73,0.0894878219134748],[119,23,74,0.0890799026131277],[119,23,75,0.08886412391944315],[119,23,76,0.08883467797323899],[119,23,77,0.08898259847747639],[119,23,78,0.08929594806208808],[119,23,79,0.08976007392812721],[119,24,64,0.08878044399407994],[119,24,65,0.08665614693360019],[119,24,66,0.0846879603809046],[119,24,67,0.082872775089369],[119,24,68,0.08121878159747939],[119,24,69,0.07974036208091467],[119,24,70,0.07844986259618314],[119,24,71,0.07735700459975307],[119,24,72,0.07646854788951898],[119,24,73,0.07578804001957805],[119,24,74,0.07531565190824281],[119,24,75,0.07504809914721317],[119,24,76,0.07497864831482157],[119,24,77,0.07509720740036657],[119,24,78,0.0753904992629919],[119,24,79,0.07584231687742213],[119,25,64,0.07634330078311605],[119,25,65,0.07400080569786927],[119,25,66,0.07183714470450135],[119,25,67,0.06984672041814048],[119,25,68,0.06803527285194132],[119,25,69,0.0664159459391607],[119,25,70,0.06500013683100216],[119,25,71,0.06379678202414184],[119,25,72,0.06281193290907833],[119,25,73,0.06204843048629665],[119,25,74,0.061505678999211236],[119,25,75,0.06117951798781361],[119,25,76,0.06106219202986553],[119,25,77,0.06114241720969913],[119,25,78,0.061405543141712524],[119,25,79,0.061833809176793215],[119,26,64,0.06397192607531553],[119,26,65,0.0614084494833359],[119,26,66,0.05904578667960162],[119,26,67,0.056876249808686746],[119,26,68,0.05490325936375282],[119,26,69,0.05313859589698466],[119,26,70,0.05159255717041493],[119,26,71,0.05027313604518885],[119,26,72,0.049185519159330164],[119,26,73,0.04833169610217716],[119,26,74,0.04771017886250132],[119,26,75,0.04731583105256547],[119,26,76,0.04713980614448872],[119,26,77,0.04716959370080907],[119,26,78,0.047389172341825374],[119,26,79,0.047779267968678485],[119,27,64,0.05173292238243177],[119,27,65,0.048946176278586724],[119,27,66,0.04638106148146792],[119,27,67,0.04402823653126083],[119,27,68,0.04188897000111104],[119,27,69,0.03997357149948233],[119,27,70,0.03829110519248922],[119,27,71,0.03684847823454414],[119,27,72,0.035649874063175144],[119,27,73,0.03469630596764501],[119,27,74,0.03398529073543637],[119,27,75,0.03351064188005216],[119,27,76,0.033262381662654154],[119,27,77,0.033226770841547376],[119,27,78,0.033386454821403184],[119,27,79,0.033720724629082766],[119,28,64,0.03968559739734075],[119,28,65,0.036673808237844746],[119,28,66,0.03390292097205526],[119,28,67,0.031362405147711596],[119,28,68,0.029051577382566775],[119,28,69,0.026979189388016866],[119,28,70,0.02515295734868655],[119,28,71,0.023578580828464268],[119,28,72,0.022259122859725627],[119,28,73,0.021194518385893778],[119,28,74,0.020381210887390984],[119,28,75,0.019811916698831363],[119,28,76,0.0194755162135045],[119,28,77,0.019357070872703393],[119,28,78,0.019437964556403387],[119,28,79,0.019696167729049127],[119,29,64,0.02787981020549048],[119,29,65,0.02464172159553745],[119,29,66,0.021661920030105745],[119,29,67,0.01892916626073246],[119,29,68,0.016441052046521607],[119,29,69,0.014204707186809194],[119,29,70,0.012226408214383784],[119,29,71,0.010510548350167058],[119,29,72,0.009058976948613885],[119,29,73,0.007870473578312059],[119,29,74,0.0069403565926107825],[119,29,75,0.006260225705888623],[119,29,76,0.00581783776286989],[119,29,77,0.005597114574232976],[119,29,78,0.005578281395904284],[119,29,79,0.005738134352892074],[119,30,64,0.01635399947295703],[119,30,65,0.012888855772103578],[119,30,66,0.00969721752905342],[119,30,67,0.006767619657449524],[119,30,68,0.004096176984579076],[119,30,69,0.0016883578193437835],[119,30,70,-4.5106770602359667E-4],[119,30,71,-0.0023190859851333467],[119,30,72,-0.003915128535069253],[119,30,73,-0.005241621523326539],[119,30,74,-0.006304396345847632],[119,30,75,-0.007112961729421853],[119,30,76,-0.007680638171698221],[119,30,77,-0.008024555857440809],[119,30,78,-0.008165517496025657],[119,30,79,-0.00812772781148843],[119,31,64,0.006079012911340711],[119,31,65,0.0022014039113604483],[119,31,66,-0.0015230238538213123],[119,31,67,-0.005091642410712983],[119,31,68,-0.007952482450908538],[119,31,69,-0.010539509271049493],[119,31,70,-0.012849499685304269],[119,31,71,-0.014880865887314439],[119,31,72,-0.01663435984666005],[119,31,73,-0.018113636037185625],[119,31,74,-0.019325672597117913],[119,31,75,-0.02028105137988086],[119,31,76,-0.020994097701636304],[119,31,77,-0.021482880923705403],[119,31,78,-0.021769077320665665],[119,31,79,-0.021877696976958953],[119,32,64,-0.002184252234639337],[119,32,65,-0.006120974558873346],[119,32,66,-0.009889650531435867],[119,32,67,-0.013499248550334969],[119,32,68,-0.01695363498553726],[119,32,69,-0.020247901228348214],[119,32,70,-0.023377031327583824],[119,32,71,-0.026336986432169834],[119,32,72,-0.02907034619958942],[119,32,73,-0.03071716123896363],[119,32,74,-0.03209502901582425],[119,32,75,-0.033215542789204806],[119,32,76,-0.03409393564319313],[119,32,77,-0.034749081109144736],[119,32,78,-0.03520335516798764],[119,32,79,-0.03548236136712641],[119,33,64,-0.009942584194831391],[119,33,65,-0.013931375701026984],[119,33,66,-0.01773994095239534],[119,33,67,-0.021376206718793637],[119,33,68,-0.02484481912080709],[119,33,69,-0.028142622661204382],[119,33,70,-0.03126629310855942],[119,33,71,-0.03421339243996909],[119,33,72,-0.03698309820953101],[119,33,73,-0.03957679094025203],[119,33,74,-0.041998499599252774],[119,33,75,-0.04425520557743454],[119,33,76,-0.046357005943021855],[119,33,77,-0.04780414075900827],[119,33,78,-0.048448383694863956],[119,33,79,-0.048920652849492735],[119,34,64,-0.017204237540098297],[119,34,65,-0.021237601877562955],[119,34,66,-0.02508123443274659],[119,34,67,-0.02874167438821191],[119,34,68,-0.03222411159325661],[119,34,69,-0.03552710010773947],[119,34,70,-0.038648975878017716],[119,34,71,-0.04158886809980966],[119,34,72,-0.04434741275856518],[119,34,73,-0.046927326406082326],[119,34,74,-0.04933384021456095],[119,34,75,-0.05157499470547086],[119,34,76,-0.0536617958937956],[119,34,77,-0.05560823391566774],[119,34,78,-0.05743116551632881],[119,34,79,-0.05915006206285381],[119,35,64,-0.023995261218712073],[119,35,65,-0.028065412797601618],[119,35,66,-0.031938906569646756],[119,35,67,-0.0356206182276745],[119,35,68,-0.03911607505823654],[119,35,69,-0.04242548284473163],[119,35,70,-0.04554878242113527],[119,35,71,-0.04848660711440392],[119,35,72,-0.051240974964045755],[119,35,73,-0.05381584451300155],[119,35,74,-0.056217534191372806],[119,35,75,-0.058455005662663845],[119,35,76,-0.0605400118374942],[119,35,77,-0.06248711057952225],[119,35,78,-0.06431354542984329],[119,35,79,-0.06603899495657764],[119,36,64,-0.030360355425259822],[119,36,65,-0.034459424038578886],[119,36,66,-0.03835730999384178],[119,36,67,-0.04205703533450475],[119,36,68,-0.04556430244139001],[119,36,69,-0.0488809030562905],[119,36,70,-0.052008306658699446],[119,36,71,-0.054948558395004975],[119,36,72,-0.05770494795599701],[119,36,73,-0.06028254610492693],[119,36,74,-0.06268860885465057],[119,36,75,-0.06493284963055337],[119,36,76,-0.06702758008154734],[119,36,77,-0.06649417643802256],[119,36,78,-0.061428186180077345],[119,36,79,-0.05641417579164436],[119,37,64,-0.036363527324126496],[119,37,65,-0.040483808354034964],[119,37,66,-0.044400523956375615],[119,37,67,-0.04811475407457759],[119,37,68,-0.051632273595017084],[119,37,69,-0.05495639469305261],[119,37,70,-0.05809002209533523],[119,37,71,-0.06103649175755198],[119,37,72,-0.06380021877681545],[119,37,73,-0.06638721730936327],[119,37,74,-0.06769571063615507],[119,37,75,-0.062458525512413536],[119,37,76,-0.05721858332070488],[119,37,77,-0.05199472810250509],[119,37,78,-0.046807732382447106],[119,37,79,-0.0416800694049918],[119,38,64,-0.04208619388848302],[119,38,65,-0.046220388366024615],[119,38,66,-0.050150451005900556],[119,38,67,-0.05387554320498127],[119,38,68,-0.057401485099537526],[119,38,69,-0.06073305618706397],[119,38,70,-0.06387449314286767],[119,38,71,-0.06683027632740497],[119,38,72,-0.0641522612071965],[119,38,73,-0.05882690058806459],[119,38,74,-0.053473125591746926],[119,38,75,-0.04810630551936565],[119,38,76,-0.04274361947317117],[119,38,77,-0.0374040827213502],[119,38,78,-0.03210845194505612],[119,38,79,-0.026879010741217384],[119,39,64,-0.04757624124838156],[119,39,65,-0.05171647633367878],[119,39,66,-0.055653634623720985],[119,39,67,-0.059384983831307095],[119,39,68,-0.06291641140014444],[119,39,69,-0.06622772521882767],[119,39,70,-0.060916914194860866],[119,39,71,-0.055544754791502574],[119,39,72,-0.050123572725191995],[119,39,73,-0.04466645493082471],[119,39,74,-0.039187648099700566],[119,39,75,-0.03370283709058813],[119,39,76,-0.028229303691973337],[119,39,77,-0.02278596649786671],[119,39,78,-0.01739330292884094],[119,39,79,-0.012073154679804653],[119,40,64,-0.05284219873683387],[119,40,65,-0.056979088180102055],[119,40,66,-0.06091549577765586],[119,40,67,-0.0632320735518285],[119,40,68,-0.05793010753876921],[119,40,69,-0.05254544570711732],[119,40,70,-0.04709204786164048],[119,40,71,-0.04158318167430072],[119,40,72,-0.036032067956043495],[119,40,73,-0.030452408949366145],[119,40,74,-0.02485879943630141],[119,40,75,-0.019267020761056394],[119,40,76,-0.013694218159225993],[119,40,77,-0.008158962064404616],[119,40,78,-0.0026811943275322865],[119,40,79,0.0027179394699836153],[119,41,64,-0.05789692130387789],[119,41,65,-0.06039577824073702],[119,41,66,-0.05514911792133205],[119,41,67,-0.04979287718878054],[119,41,68,-0.04434125232327603],[119,41,69,-0.03881150127630334],[119,41,70,-0.03321914273983132],[119,41,71,-0.02757863867672688],[119,41,72,-0.021904055059323118],[119,41,73,-0.016209608498593882],[119,41,74,-0.010510098469209857],[119,41,75,-0.004821225135136722],[119,41,76,8.402069315753824E-4],[119,41,77,0.006456198571372018],[119,41,78,0.012007578568662788],[119,41,79,0.01747413782274624],[119,42,64,-0.05254775506370742],[119,42,65,-0.04725000347800554],[119,42,66,-0.04184647685940016],[119,42,67,-0.03633668531628657],[119,42,68,-0.030735157987079986],[119,42,69,-0.025061236982136647],[119,42,70,-0.01933212265958786],[119,42,71,-0.013563527554122181],[119,42,72,-0.0077703603977598385],[119,42,73,-0.0019672986793207903],[119,42,74,0.003830750655491263],[119,42,75,0.009608302466409407],[119,42,76,0.01534905646212071],[119,42,77,0.021035771572120963],[119,42,78,0.02665025093544572],[119,42,79,0.03217343655358011],[119,43,64,-0.039592723871471946],[119,43,65,-0.034129429935482014],[119,43,66,-0.028566652410704853],[119,43,67,-0.02290159982886576],[119,43,68,-0.017149193903285773],[119,43,69,-0.011331073414992902],[119,43,70,-0.005466271478258942],[119,43,71,4.2815789807669783E-4],[119,43,72,0.006336426396972303],[119,43,73,0.012243406905629308],[119,43,74,0.018134138467167764],[119,43,75,0.023993440893399564],[119,43,76,0.029805638979505632],[119,43,77,0.035554395992273155],[119,43,78,0.041222655846715014],[119,43,79,0.0467926931456417],[119,44,64,-0.02670040543414732],[119,44,65,-0.021068777033514553],[119,44,66,-0.015344536151099998],[119,44,67,-0.00952245050984676],[119,44,68,-0.00361790702782315],[119,44,69,0.0023449410549994214],[119,44,70,0.008345061184531516],[119,44,71,0.014363942637870603],[119,44,72,0.020384849520485752],[119,44,73,0.02639218014828499],[119,44,74,0.032370933451745014],[119,44,75,0.03830628275160461],[119,44,76,0.04418325697750732],[119,44,77,0.049986529134080214],[119,44,78,0.055700311563556267],[119,44,79,0.06130835731445128],[119,45,64,-0.013896459681404362],[119,45,65,-0.008094602823023767],[119,45,66,-0.002207340433905909],[119,45,67,0.003773093099407405],[119,45,68,0.009830757171399855],[119,45,69,0.015938772133419796],[119,45,70,0.02207393392158531],[119,45,71,0.028216144602633688],[119,45,72,0.034347629607590184],[119,45,73,0.04045225866906155],[119,45,74,0.04651497122931879],[119,45,75,0.05252130680249502],[119,45,76,0.058457040499266824],[119,45,77,0.06430792365788643],[119,45,78,0.07005952927163997],[119,45,79,0.07569720166391955],[119,46,64,-0.001193610588995194],[119,46,65,0.004778963968047317],[119,46,66,0.010829602617006849],[119,46,67,0.016968630317553517],[119,46,68,0.02317944416283533],[119,46,69,0.029432239398064167],[119,46,70,0.03570147086322358],[119,46,71,0.0419653157545492],[119,46,72,0.04820485494278069],[119,46,73,0.054403355018841124],[119,46,74,0.06054565196702433],[119,46,75,0.06661763708648358],[119,46,76,0.07260584551068178],[119,46,77,0.07849714741298836],[119,46,78,0.08427854173497015],[119,46,79,0.0896828078324911],[119,47,64,0.011395967033670488],[119,47,65,0.01753818143326687],[119,47,66,0.023751170001814256],[119,47,67,0.03004776802866636],[119,47,68,0.03641058339560191],[119,47,69,0.04280671012773364],[119,47,70,0.049208103832088124],[119,47,71,0.055591080322766294],[119,47,72,0.061935462795020144],[119,47,73,0.06822382631504208],[119,47,74,0.07444084065825136],[119,47,75,0.08057271225527812],[119,47,76,0.08660672573863988],[119,47,77,0.09253088532570396],[119,47,78,0.09724049830017577],[119,47,79,0.10165651466657866],[119,48,64,0.023809133283049913],[119,48,65,0.030119452007783584],[119,48,66,0.036493639178019094],[119,48,67,0.04294694208411588],[119,48,68,0.0494610605372586],[119,48,69,0.05599985856577108],[119,48,70,0.06253266406743391],[119,48,71,0.06903380735231318],[119,48,72,0.0754817376896053],[119,48,73,0.08185823333053409],[119,48,74,0.0881477061685054],[119,48,75,0.09398154875387085],[119,48,76,0.0990164518988673],[119,48,77,0.10393849843999275],[119,48,78,0.1087533330692981],[119,48,79,0.11346645431628467],[119,49,64,0.03597640579486402],[119,49,65,0.04245302656239033],[119,49,66,0.04898732527548039],[119,49,67,0.05559681890164794],[119,49,68,0.062262196189995594],[119,49,69,0.06894401902038284],[119,49,70,0.07560889763369505],[119,49,71,0.08222907318600003],[119,49,72,0.088008268820461],[119,49,73,0.09363224548287576],[119,49,74,0.09913877830346209],[119,49,75,0.10453503013966686],[119,49,76,0.1098265878036109],[119,49,77,0.11501792286775948],[119,49,78,0.1201127586904833],[119,49,79,0.12511434360352253],[119,50,64,0.04572039392035212],[119,50,65,0.05293536534469458],[119,50,66,0.05994407053730648],[119,50,67,0.06671753151091142],[119,50,68,0.07326705420619772],[119,50,69,0.07962658182159105],[119,50,70,0.08582376666541439],[119,50,71,0.09188035504607853],[119,50,72,0.09781313048463346],[119,50,73,0.10363477147350875],[119,50,74,0.10935462239264247],[119,50,75,0.11497937644170937],[119,50,76,0.12051366969169257],[119,50,77,0.12596058559850598],[119,50,78,0.13132206955230047],[119,50,79,0.13659925325861783],[119,51,64,0.05443597210686457],[119,51,65,0.06175474004604515],[119,51,66,0.06887385370335365],[119,51,67,0.07576230691832839],[119,51,68,0.0824323496372556],[119,51,69,0.0889209285494437],[119,51,70,0.09525815477756427],[119,51,71,0.10146764074270515],[119,51,72,0.1075674590233609],[119,51,73,0.11357102043134665],[119,51,74,0.11948786982142622],[119,51,75,0.12532439838882076],[119,51,76,0.13108447144389035],[119,51,77,0.13676997088419857],[119,51,78,0.14238125180747083],[119,51,79,0.14791751292491712],[119,52,64,0.06320788909799868],[119,52,65,0.07062273248283872],[119,52,66,0.07784308976125154],[119,52,67,0.0848361972309924],[119,52,68,0.09161530570401524],[119,52,69,0.09822027130512662],[119,52,70,0.10468363006162884],[119,52,71,0.11103088400705052],[119,52,72,0.11728146811266062],[119,52,73,0.12344964125343541],[119,52,74,0.12954529964724215],[119,52,75,0.1355747114324238],[119,52,76,0.1415411712738495],[119,52,77,0.14744557410895254],[119,52,78,0.15328690736000197],[119,52,79,0.15906266114723547],[119,53,64,0.07204067908186725],[119,53,65,0.07954417508809815],[119,53,66,0.08685680257283591],[119,53,67,0.0939443401782642],[119,53,68,0.10082107747606914],[119,53,69,0.10752963362038069],[119,53,70,0.1141048925540865],[119,53,71,0.12057423640898406],[119,53,72,0.12695851267864103],[119,53,73,0.13327293030537776],[119,53,74,0.1395278830599185],[119,53,75,0.14572969880710837],[119,53,76,0.15188131346504272],[119,53,77,0.15798286867619327],[119,53,78,0.16403223241445905],[119,53,79,0.17002544195196706],[119,54,64,0.08093008391546037],[119,54,65,0.08851518315468883],[119,54,66,0.09591142970384094],[119,54,67,0.1030834647496845],[119,54,68,0.11004663494413654],[119,54,69,0.11684612889717341],[119,54,70,0.12351906104398684],[119,54,71,0.13009465128034245],[119,54,72,0.13659518457016015],[119,54,73,0.14303690432313287],[119,54,74,0.1494308378792957],[119,54,75,0.15578355264033336],[119,54,76,0.16209784158992863],[119,54,77,0.1683733371459094],[119,54,78,0.17460705248225056],[119,54,79,0.1807938496496653],[119,55,64,0.08986347255085031],[119,55,65,0.09752355240497801],[119,55,66,0.10499519608469216],[119,55,67,0.11224223777174624],[119,55,68,0.11928107958924741],[119,55,69,0.12615924530065198],[119,55,70,0.13291592584000123],[119,55,71,0.1395821050473741],[119,55,72,0.14618150419411344],[119,55,73,0.15273146502535123],[119,55,74,0.159243769633829],[119,55,75,0.16572539566969927],[119,55,76,0.172179205581797],[119,55,77,0.1786045687751584],[119,55,78,0.18499791575435487],[119,55,79,0.19135322350310718],[119,56,64,0.09882036855270135],[119,56,65,0.10654926539410216],[119,56,66,0.1140885964336909],[119,56,67,0.12140171885623201],[119,56,68,0.12850606868770645],[119,56,69,0.13545123727669853],[119,56,70,0.14227830639327768],[119,56,71,0.14901992086230725],[119,56,72,0.1557012110225881],[119,56,73,0.1623406582602184],[119,56,74,0.16895090192545037],[119,56,75,0.17553948612085818],[119,56,76,0.18210954502765092],[119,56,77,0.18866042561492594],[119,56,78,0.19518824675066884],[119,56,79,0.20168639390404938],[119,57,64,0.10777308836145107],[119,57,65,0.11556510948159461],[119,57,66,0.12316498923745485],[119,57,67,0.13053592656695623],[119,57,68,0.13769635024357538],[119,57,69,0.14469762661619967],[119,57,70,0.15158251670767034],[119,57,71,0.15838519744903934],[119,57,72,0.16513215584045385],[119,57,73,0.17184303047649305],[119,57,74,0.17853139875763457],[119,57,75,0.18520550827613902],[119,57,76,0.19186895103203944],[119,57,77,0.1985212793016011],[119,57,78,0.20515856214380282],[119,57,79,0.21177388169081252],[119,58,64,0.11668749285079],[119,58,65,0.12453740900380161],[119,58,66,0.13219130498538342],[119,58,67,0.1396125185585338],[119,58,68,0.1468204113526813],[119,58,69,0.1538678159064479],[119,58,70,0.1607989413937154],[119,58,71,0.16764934600959824],[119,58,72,0.1744467975406311],[119,58,73,0.1812120852541109],[119,58,74,0.18795978145611908],[119,58,75,0.19469895122292102],[119,58,76,0.20143380896657215],[119,58,77,0.2081643206512402],[119,58,78,0.21488675062926066],[119,58,79,0.2215941522161017],[119,59,64,0.12552385460162865],[119,59,65,0.13342687415598065],[119,59,66,0.14112887123524093],[119,59,67,0.1485935883257175],[119,59,68,0.15584124269230995],[119,59,69,0.162925817106142],[119,59,70,0.16989272512529183],[119,59,71,0.17677873794760568],[119,59,72,0.18361280719127143],[119,59,73,0.1904168425543594],[119,59,74,0.19720644274404256],[119,59,75,0.203991578210611],[119,59,76,0.21077722436684232],[119,59,77,0.21756394411844665],[119,59,78,0.2243484186735236],[119,59,79,0.23112392573910195],[119,60,64,0.13423784276605946],[119,60,65,0.14218956854345086],[119,60,66,0.14993435653773465],[119,60,67,0.15743658065374233],[119,60,68,0.16471722128450875],[119,60,69,0.1718310974368788],[119,60,70,0.17882457771779392],[119,60,71,0.1857354656290923],[119,60,72,0.19259378156805532],[119,60,73,0.19942250282394514],[119,60,74,0.20623826001325968],[119,60,75,0.21305198853091298],[119,60,76,0.21986953373008264],[119,60,77,0.22669220867877918],[119,60,78,0.23351730347369265],[119,60,79,0.2403385452224509],[119,61,64,0.14278161624347857],[119,61,65,0.15077798612360352],[119,61,66,0.1585608239264325],[119,61,67,0.16609531645650094],[119,61,68,0.17340310219703634],[119,61,69,0.18053953322186583],[119,61,70,0.18755168540825878],[119,61,71,0.1944782066884746],[119,61,72,0.20135005656017654],[119,61,73,0.2081912062324947],[119,61,74,0.21501929791048585],[119,61,75,0.2218462618463026],[119,61,76,0.22867888991195365],[119,61,77,0.2355193645748555],[119,61,78,0.24236574228090682],[119,61,79,0.2492123903715117],[119,62,64,0.1511050500044864],[119,62,65,0.15914226264611395],[119,62,66,0.16695891933518947],[119,62,67,0.17452115261307646],[119,62,68,0.18185114503494898],[119,62,69,0.18900449775418718],[119,62,70,0.1960287546295449],[119,62,71,0.20296321835650027],[119,62,72,0.2098396470820417],[119,62,73,0.21668291379788115],[119,62,74,0.22351162707984892],[119,62,75,0.23033871185902363],[119,62,76,0.23717194902882646],[119,62,77,0.24401447281062244],[119,62,78,0.2508652249158681],[119,62,79,0.25771936465645107],[119,63,64,0.15915710125567334],[119,63,65,0.16723152842116257],[119,63,66,0.17507820189603246],[119,63,67,0.1826642838750367],[119,63,68,0.1900123824115404],[119,63,69,0.19717809048954804],[119,63,70,0.20420919566332188],[119,63,71,0.21114546926302769],[119,63,72,0.21801932098552723],[119,63,73,0.22485641790664795],[119,63,74,0.23167626654960374],[119,63,75,0.23849275675550666],[119,63,76,0.24531466621385067],[119,63,77,0.25214612462228225],[119,63,78,0.2589870365534517],[119,63,79,0.2658334622132285],[119,64,64,0.16688728674290326],[119,64,65,0.17499537356553296],[119,64,66,0.1828685871108715],[119,64,67,0.19047515768195594],[119,64,68,0.19783800108131241],[119,64,69,0.20501247808599046],[119,64,70,0.2120464165228036],[119,64,71,0.21897987887750262],[119,64,72,0.22584577692681676],[119,64,73,0.23267045195060262],[119,64,74,0.2394742192246081],[119,64,75,0.24627187560034347],[119,64,76,0.2530731690849971],[119,64,77,0.2598832294400446],[119,64,78,0.26670295891979495],[119,64,79,0.27352938237152846],[119,65,64,0.17424728567370187],[119,65,65,0.1823854404017709],[119,65,66,0.19028191775581738],[119,65,67,0.19790601692498022],[119,65,68,0.20528085095355356],[119,65,69,0.21246136267925061],[119,65,70,0.21949524260947503],[119,65,71,0.22642268026729573],[119,65,72,0.23327694197987398],[119,65,73,0.24008491495598996],[119,65,74,0.24686761641514832],[119,65,75,0.25364066663268375],[119,65,76,0.26041472486745576],[119,65,77,0.26719588723991206],[119,65,78,0.2739860457261417],[119,65,79,0.2807832075289773],[119,66,64,0.18119267017350185],[119,66,65,0.1893571450219442],[119,66,66,0.19727366461855775],[119,66,67,0.20491257284754066],[119,66,68,0.21229708426417948],[119,66,69,0.2194815797539521],[119,66,70,0.22651346457496546],[119,66,71,0.2334329086595165],[119,66,72,0.24027339151590565],[119,66,73,0.2470622137341298],[119,66,74,0.25382097391364417],[119,66,75,0.2605660099304656],[119,66,76,0.2673088035599323],[119,66,77,0.2740563475692444],[119,66,78,0.2808114744881276],[119,66,79,0.28757314635751025],[119,67,64,0.18741936696274655],[119,67,65,0.19587152884456815],[119,67,66,0.20380475797882971],[119,67,67,0.21145580907567554],[119,67,68,0.21884792598170524],[119,67,69,0.22603482676539297],[119,67,70,0.23306351561200814],[119,67,71,0.2399740170850036],[119,67,72,0.24679989266374114],[119,67,73,0.25356872388268564],[119,67,74,0.26030256093790116],[119,67,75,0.2670183357239382],[119,67,76,0.27372823836114435],[119,67,77,0.28044005636888697],[119,67,78,0.2871574757317997],[119,67,79,0.2938803431948373],[119,68,64,0.1928041783618966],[119,68,65,0.20129390037392125],[119,68,66,0.20984355045364073],[119,68,67,0.21750391748210357],[119,68,68,0.22490157623597445],[119,68,69,0.23208952338203528],[119,68,70,0.23911427911823363],[119,68,71,0.24601562010961237],[119,68,72,0.25282707240139285],[119,68,73,0.2595763707133365],[119,68,74,0.266285883019769],[119,68,75,0.2729729994158688],[119,68,76,0.27965048436649675],[119,68,77,0.2863267915277963],[119,68,78,0.29300634042166734],[119,68,79,0.29968975432989875],[119,69,64,0.1980150437244201],[119,69,65,0.20651911304799242],[119,69,66,0.2151662847763708],[119,69,67,0.22303437130721462],[119,69,68,0.2304352505630089],[119,69,69,0.2376228094770841],[119,69,70,0.24464303313921723],[119,69,71,0.25153537226148925],[119,69,72,0.25833321699847245],[119,69,73,0.2650643368330888],[119,69,74,0.27175128546190064],[119,69,75,0.2784117697092881],[119,69,76,0.2850589815949159],[119,69,77,0.2917018927719089],[119,69,78,0.2983455106418968],[119,69,79,0.3049910955384169],[119,70,64,0.20303980288004453],[119,70,65,0.21154899084775206],[119,70,66,0.2202051647587133],[119,70,67,0.2280482085707588],[119,70,68,0.23545018837603607],[119,70,69,0.24263618472735216],[119,70,70,0.24965158114901576],[119,70,71,0.2565354116308455],[119,70,72,0.26332081945105956],[119,70,73,0.2700354816982837],[119,70,74,0.2767019984474623],[119,70,75,0.28333824564000504],[119,70,76,0.2899576908131421],[119,70,77,0.29656967091599584],[119,70,78,0.30317963153797955],[119,70,79,0.3097893269596224],[119,71,64,0.20783212433028928],[119,71,65,0.21633506677348885],[119,71,66,0.22491664060964195],[119,71,67,0.23258821162032048],[119,71,68,0.2399913707145733],[119,71,69,0.24717662037536944],[119,71,70,0.25418853798761976],[119,71,71,0.26106553478833566],[119,71,72,0.267840303968841],[119,71,73,0.27454023382089765],[119,71,74,0.2811877848944417],[119,71,75,0.28780083023099257],[119,71,76,0.2943929578321059],[119,71,77,0.3009737346152624],[119,71,78,0.30754893119803944],[119,71,79,0.3141207069360329],[119,72,64,0.21234898597097843],[119,72,65,0.22083223968374277],[119,72,66,0.22901989451740865],[119,72,67,0.2366949373101157],[119,72,68,0.24410148401055737],[119,72,69,0.2512887303490059],[119,72,70,0.25830012307806727],[119,72,71,0.2651731436903065],[119,72,72,0.27193975057017883],[119,72,73,0.2786267850054499],[119,72,74,0.2852563400298451],[119,72,75,0.2918460911674184],[119,72,76,0.29840958824665753],[119,72,77,0.30495650754738995],[119,72,78,0.31149286363383294],[119,72,79,0.3180211803133608],[119,73,64,0.21650538788570686],[119,73,65,0.22474650714150607],[119,73,66,0.2327184417790428],[119,73,67,0.2403999326771844],[119,73,68,0.24781364481962864],[119,73,69,0.2550070493009527],[119,73,70,0.26202206186162075],[119,73,71,0.2688948627429438],[119,73,72,0.2756563382489453],[119,73,73,0.2823324842724771],[119,73,74,0.28894477075108416],[119,73,75,0.2955104661212924],[119,73,76,0.30204292094171925],[119,73,77,0.30855180995444553],[119,73,78,0.3150433319480979],[119,73,79,0.3215203668757433],[119,74,64,0.21980671705911992],[119,74,65,0.22805593402726448],[119,74,66,0.236036347285296],[119,74,67,0.24372835113621366],[119,74,68,0.2511540189650222],[119,74,69,0.2583586377311173],[119,74,70,0.26538215434520795],[119,74,71,0.2722590441236911],[119,74,72,0.2790187577122815],[119,74,73,0.28568612724027864],[119,74,74,0.2922817306526748],[119,74,75,0.29882221327726183],[119,74,76,0.3053205657921507],[119,74,77,0.31178635786439807],[119,74,78,0.31822592683037765],[119,74,79,0.324642520883718],[119,75,64,0.22274141392319996],[119,75,65,0.23100172441479355],[119,75,66,0.2389943768736759],[119,75,67,0.24670151465275977],[119,75,68,0.2541443885657726],[119,75,69,0.2613656374828396],[119,75,70,0.2684027973216257],[119,75,71,0.2752882310374314],[119,75,72,0.28204958736712865],[119,75,73,0.2887102151531263],[119,75,74,0.29528953216237913],[119,75,75,0.30180334743472825],[119,75,76,0.3082641363121821],[119,75,77,0.3146812674147193],[119,75,78,0.32106118093645214],[119,75,79,0.32740751773900084],[119,76,64,0.22532899096354173],[119,76,65,0.23360366238935545],[119,76,66,0.24161248521964956],[119,76,67,0.24933941774056226],[119,76,68,0.2568046628139774],[119,76,69,0.2640477735313895],[119,76,70,0.2711034562806252],[119,76,71,0.2780015750796148],[119,76,72,0.2847676289419411],[119,76,73,0.2914231802199499],[119,76,74,0.29798623279264885],[119,76,75,0.3044715590968891],[119,76,76,0.31089097512929814],[119,76,77,0.3172535626716471],[119,76,78,0.3235658381113794],[119,76,79,0.3298318673422194],[119,77,64,0.22759142706574767],[119,77,65,0.2358835931925987],[119,77,66,0.2439122396385862],[119,77,67,0.2516631689789629],[119,77,68,0.25915532820592746],[119,77,69,0.26642479781368184],[119,77,70,0.2735030828508763],[119,77,71,0.2804172036931238],[119,77,72,0.28719019893904124],[119,77,73,0.29384157373306197],[119,77,74,0.3003876923176068],[119,77,75,0.30684211376308695],[119,77,76,0.3132158699674163],[119,77,77,0.3195176851557182],[119,77,78,0.32575413624316246],[119,77,79,0.33192975354962434],[119,78,64,0.22955546780607028],[119,78,65,0.23786775397671084],[119,78,66,0.24591917539028924],[119,78,67,0.25369736561949596],[119,78,68,0.2612198337946433],[119,78,69,0.2685188707009795],[119,78,70,0.27562247345645474],[119,78,71,0.28255453354117194],[119,78,72,0.28933537194175657],[119,78,73,0.29598221325997487],[119,78,74,0.3025095975060319],[119,78,75,0.30892972845998146],[119,78,76,0.3152527576446133],[119,78,77,0.3214870031083592],[119,78,78,0.3276391023645969],[119,78,79,0.33371409897426774],[119,79,64,0.2312354957508031],[119,79,65,0.2395697824710341],[119,79,66,0.24764616414489554],[119,79,67,0.25545406534690457],[119,79,68,0.2630094159213768],[119,79,69,0.27034048157052826],[119,79,70,0.27747151338746534],[119,79,71,0.284423043434571],[119,79,72,0.29121245957703773],[119,79,73,0.29785451194404844],[119,79,74,0.3043617496357831],[119,79,75,0.31074488647700815],[119,79,76,0.31701309479706213],[119,79,77,0.32317422638980564],[119,79,78,0.3292349599728131],[119,79,79,0.33520087462265735],[119,80,64,0.23258085872407042],[119,80,65,0.24093835909178188],[119,80,66,0.24904197270321407],[119,80,67,0.25688292274662705],[119,80,68,0.2644754961057994],[119,80,69,0.2718437834440928],[119,80,70,0.2790080907516284],[119,80,71,0.2859853564518656],[119,80,72,0.29278977833282543],[119,80,73,0.29943336386095176],[119,80,74,0.3059264023618272],[119,80,75,0.3122778577569493],[119,80,76,0.318495680746807],[119,80,77,0.324587039525672],[119,80,78,0.3305584682999506],[119,80,79,0.3364159330593287],[119,81,64,0.2335403674067756],[119,81,65,0.24192136514255438],[119,81,66,0.2500542755342208],[119,81,67,0.2579321749589421],[119,81,68,0.26556772341124096],[119,81,69,0.27298077676413224],[119,81,70,0.2801875418248205],[119,81,71,0.2872011322668321],[119,81,72,0.2940322647211671],[119,81,73,0.30068986908584067],[119,81,74,0.30718161136132954],[119,81,75,0.31351432754999103],[119,81,76,0.319694367383748],[119,81,77,0.32572784686417205],[119,81,78,0.3316208088095097],[119,81,79,0.337379290803703],[119,82,64,0.23408041264558085],[119,82,65,0.24248395830567898],[119,82,66,0.2506474704399098],[119,82,67,0.2585659597834888],[119,82,68,0.2662505461964252],[119,82,69,0.27371688346521295],[119,82,70,0.28097698332758225],[119,82,71,0.28803992926203903],[119,82,72,0.2949126618909954],[119,82,73,0.3016006685542988],[119,82,74,0.3081085751335655],[119,82,75,0.3144406384670875],[119,82,76,0.32060113794983985],[119,82,77,0.32659466516103103],[119,82,78,0.33242631059952404],[119,82,79,0.33810174683457483],[119,83,64,0.23418256042004718],[119,83,65,0.24260624368303577],[119,83,66,0.25080045667968176],[119,83,67,0.2587622355492928],[119,83,68,0.2665013078105009],[119,83,69,0.2740292488991347],[119,83,70,0.2813538465666799],[119,83,71,0.2884799919182384],[119,83,72,0.295410575958834],[119,83,73,0.30214727945322684],[119,83,74,0.30869125389755286],[119,83,75,0.3150436916924483],[119,83,76,0.3212062838938912],[119,83,77,0.32718156419736555],[119,83,78,0.3329731380797774],[119,83,79,0.3385857962808371],[119,84,64,0.23384127344666872],[119,84,65,0.24228106818433262],[119,84,66,0.2505045320384856],[119,84,67,0.2585108141431692],[119,84,68,0.2663084484487282],[119,84,69,0.27390514214746525],[119,84,70,0.28130450181359906],[119,84,71,0.2885071202664058],[119,84,72,0.29551160651312375],[119,84,73,0.3023154974469727],[119,84,74,0.30891604875982037],[119,84,75,0.3153109028552793],[119,84,76,0.32149863186945793],[119,84,77,0.32747915422060275],[119,84,78,0.33325402341191057],[119,84,79,0.3388265881026078],[119,85,64,0.2330617641917869],[119,85,65,0.24151194292901082],[119,85,66,0.24976141333783078],[119,85,67,0.25781151145610065],[119,85,68,0.2656698171147007],[119,85,69,0.27283457735522226],[119,85,70,0.2799836091422791],[119,85,71,0.2871448039947225],[119,85,72,0.29430983376653463],[119,85,73,0.3014710117408517],[119,85,74,0.30862045110199304],[119,85,75,0.3152302129301057],[119,85,76,0.321465820672342],[119,85,77,0.3274751194538305],[119,85,78,0.33325704244011567],[119,85,79,0.33881292501705396],[119,86,64,0.23185798467063481],[119,86,65,0.2403110989704815],[119,86,66,0.24858138555951004],[119,86,67,0.25667242019684844],[119,86,68,0.26449637148817035],[119,86,69,0.27135674269422216],[119,86,70,0.2782264794584278],[119,86,71,0.2851000115379155],[119,86,72,0.2919736312999979],[119,86,73,0.29884435956475247],[119,86,74,0.3057089551814343],[119,86,75,0.31256307131749783],[119,86,76,0.3194005610403335],[119,86,77,0.32621293438127763],[119,86,78,0.33296643342755433],[119,86,79,0.3385283044930667],[119,87,64,0.23025075797566175],[119,87,65,0.23869768122792412],[119,87,66,0.24698158434416762],[119,87,67,0.2551083096359811],[119,87,68,0.26299050172563687],[119,87,69,0.26957460826607493],[119,87,70,0.2761523764964401],[119,87,71,0.28272251795172076],[119,87,72,0.28928599116405285],[119,87,73,0.2958446882980308],[119,87,74,0.3024002787812972],[119,87,75,0.30895321336294473],[119,87,76,0.3155018915921648],[119,87,77,0.3220419952774152],[119,87,78,0.32856599006420845],[119,87,79,0.33506279686190865],[119,88,64,0.22826605607216727],[119,88,65,0.23669608511552875],[119,88,66,0.24498441624606032],[119,88,67,0.2531391564827604],[119,88,68,0.2611667116851726],[119,88,69,0.2674901540233813],[119,88,70,0.2737673247185088],[119,88,71,0.2800226513298698],[119,88,72,0.2862617263679052],[119,88,73,0.29249139440260247],[119,88,74,0.298718415414133],[119,88,75,0.30494830244325355],[119,88,76,0.31118433698500914],[119,88,77,0.31742676509432954],[119,88,78,0.3236721767071369],[119,88,79,0.3299130702302336],[119,89,64,0.22593342802243527],[119,89,65,0.23433443999125808],[119,89,66,0.24261612077104291],[119,89,67,0.25078881076165205],[119,89,68,0.2588591208792865],[119,89,69,0.26510328787409054],[119,89,70,0.2710754995358999],[119,89,71,0.27700920952359165],[119,89,72,0.28291453441256736],[119,89,73,0.28880326586541233],[119,89,74,0.29468734257136475],[119,89,75,0.3005775103226102],[119,89,76,0.3064821741539473],[119,89,77,0.31240644595415645],[119,89,78,0.3183513904490325],[119,89,79,0.3243134719623251],[119,90,64,0.2232845824485546],[119,90,65,0.23164324320445318],[119,90,66,0.23990547789451555],[119,90,67,0.24808380024215848],[119,90,68,0.25618531749637746],[119,90,69,0.26241278769757975],[119,90,70,0.26808000252924674],[119,90,71,0.2736900487775967],[119,90,72,0.2792573825060454],[119,90,73,0.2847986506324667],[119,90,74,0.29033096387686025],[119,90,75,0.2958703714579947],[119,90,76,0.30143054197261504],[119,90,77,0.3070216543295658],[119,90,78,0.312649502059476],[119,90,79,0.3183148137835799],[119,91,64,0.22035212771729268],[119,91,65,0.22865414820231397],[119,91,66,0.2368826644481994],[119,91,67,0.2450522766837349],[119,91,68,0.2531708627172557],[119,91,69,0.25941711938199763],[119,91,70,0.26478352345011913],[119,91,71,0.2700725702735792],[119,91,72,0.27530280180166555],[119,91,73,0.2804955448318662],[119,91,74,0.2856729811451894],[119,91,75,0.29085643259522037],[119,91,76,0.2960648661070755],[119,91,77,0.30131362293901215],[119,91,78,0.3066133759652426],[119,91,79,0.3119693181587412],[119,92,64,0.21716847302689635],[119,92,65,0.22539890985865238],[119,92,66,0.23357826247849314],[119,92,67,0.24172310688613768],[119,92,68,0.2498423412052163],[119,92,69,0.2561151282746541],[119,92,70,0.2611888866574882],[119,92,71,0.26616410253664124],[119,92,72,0.271063088949855],[119,92,73,0.2759115994366085],[119,92,74,0.28073669537311613],[119,92,75,0.285564840889311],[119,92,76,0.2904202308531427],[119,92,77,0.29532335676351845],[119,92,78,0.3002898147579412],[119,92,79,0.3053293593198419],[119,93,64,0.2137648932935118],[119,93,65,0.22190848991230333],[119,93,66,0.23002242241275997],[119,93,67,0.2381251112826778],[119,93,68,0.24622669387793455],[119,93,69,0.25250660165208716],[119,93,70,0.25729947983414714],[119,93,71,0.2619721778259315],[119,93,72,0.26655041339257346],[119,93,73,0.271064044128973],[119,93,74,0.2755447357759291],[119,93,75,0.2800238700197736],[119,93,76,0.28453069778765633],[119,93,77,0.2890907433681726],[119,93,78,0.29372446401277447],[119,93,79,0.29844616901304616],[119,94,64,0.21017076047270483],[119,94,65,0.2182123251459085],[119,94,66,0.22624418362193333],[119,94,67,0.23428645257829414],[119,94,68,0.2423506915203207],[119,94,69,0.24859270001628508],[119,94,70,0.2531195630062512],[119,94,71,0.2575047007851452],[119,94,72,0.26177682895878174],[119,94,73,0.2659695272315432],[119,94,74,0.2701187160572974],[119,94,75,0.27426038382269907],[119,94,76,0.2784285710908354],[119,94,77,0.28265361771491143],[119,94,78,0.286960677921095],[119,94,79,0.29136850776252815],[119,95,64,0.20641294370882304],[119,95,65,0.214337760697966],[119,95,66,0.22227095473796155],[119,95,67,0.23023417671586252],[119,95,68,0.23824055140403277],[119,95,69,0.24437625521015444],[119,95,70,0.24865445605562866],[119,95,71,0.2527700077729865],[119,95,72,0.25675418844039666],[119,95,73,0.2606438706668134],[119,95,74,0.26447881717388777],[119,95,75,0.2682992370101686],[119,95,76,0.2721436094222933],[119,95,77,0.2760467816569312],[119,95,78,0.2800383462233781],[119,95,79,0.2841413024159088],[119,96,64,0.2025153804799403],[119,96,65,0.21030965068039748],[119,96,66,0.2181281558710932],[119,96,67,0.22599390825100155],[119,96,68,0.23392169888972206],[119,96,69,0.23986193351875337],[119,96,70,0.2439106030693042],[119,96,71,0.2477768154280096],[119,96,72,0.25149395994073226],[119,96,73,0.2551017389973517],[119,96,74,0.2586432959232514],[119,96,75,0.2621626125922858],[119,96,76,0.2657021842565448],[119,96,77,0.26930097830802907],[119,96,78,0.2729926829136381],[119,96,79,0.27680425070376347],[119,97,64,0.19849882069763283],[119,97,65,0.20615012806912125],[119,97,66,0.21383902467362736],[119,97,67,0.22158970202663764],[119,97,68,0.22941867581145933],[119,97,69,0.2350562620835131],[119,97,70,0.23889551201414022],[119,97,71,0.24253405714672416],[119,97,72,0.24600694389163671],[119,97,73,0.2493562216816987],[119,97,74,0.25262791874545043],[119,97,75,0.25586929565815414],[119,97,76,0.25912638460460047],[119,97,77,0.2624418214819241],[119,97,78,0.26585297717068623],[119,97,79,0.2693903935146877],[119,98,64,0.19438074552925488],[119,98,65,0.20187854564679653],[119,98,66,0.20942458801412303],[119,98,67,0.2170440528645006],[119,98,68,0.22475519728002086],[119,98,69,0.22996751710701308],[119,98,70,0.23361756835896022],[119,98,71,0.23705060627075736],[119,98,72,0.24030288973366168],[119,98,73,0.24341832775977615],[119,98,74,0.24644532018771292],[119,98,75,0.2494338832113543],[119,98,76,0.2524330680686117],[119,98,77,0.2554886803992023],[119,98,78,0.2586413069579557],[119,98,79,0.26192465555935945],[119,99,64,0.1901754625328429],[119,99,65,0.1975115896020398],[119,99,66,0.20490380085616583],[119,99,67,0.21237806482841776],[119,99,68,0.2199543583896666],[119,99,69,0.2246054724639364],[119,99,70,0.22808572138991118],[119,99,71,0.23133488488595355],[119,99,72,0.23439001134320772],[119,99,73,0.23729639225296104],[119,99,74,0.24010428553425675],[119,99,75,0.2428659297899851],[119,99,76,0.2456328581932684],[119,99,77,0.24845351985955622],[119,99,78,0.25137121571834087],[119,99,79,0.2544223550681912],[119,100,64,0.18589437853257923],[119,100,65,0.19306356722939885],[119,100,66,0.2002938537801329],[119,100,67,0.20761178146545656],[119,100,68,0.21503899217352562],[119,100,69,0.21898100746267282],[119,100,70,0.22230904208021895],[119,100,71,0.22539435723669485],[119,100,72,0.22827440037480098],[119,100,73,0.2309953936312634],[119,100,74,0.23360895715346655],[119,100,75,0.23616902863423933],[119,100,76,0.23872908809398147],[119,100,77,0.2413396960776403],[119,100,78,0.24404635257679036],[119,100,79,0.24688768314073908],[119,101,64,0.18154495847735452],[119,101,65,0.1885450760757117],[119,101,66,0.19560855330467505],[119,101,67,0.20276227667220503],[119,101,68,0.2096413740035441],[119,101,69,0.2131085873174111],[119,101,70,0.21629947001373867],[119,101,71,0.2192385207660042],[119,101,72,0.22196323092852205],[119,101,73,0.22452033367839536],[119,101,74,0.22696234378386132],[119,101,75,0.22934439819300065],[119,101,76,0.2317214067636657],[119,101,77,0.23414552158133103],[119,101,78,0.23666393244149173],[119,101,79,0.23931699521374927],[119,102,64,0.177115482895541],[119,102,65,0.18394433508943064],[119,102,66,0.1908361942199157],[119,102,67,0.1978180485828232],[119,102,68,0.2036876176318084],[119,102,69,0.20703889473726542],[119,102,70,0.21010794338009747],[119,102,71,0.2129184544597243],[119,102,72,0.2155075734309796],[119,102,73,0.21792208321884918],[119,102,74,0.22021488096663713],[119,102,75,0.22244175906301025],[119,102,76,0.22465850001226817],[119,102,77,0.22691829382961978],[119,102,78,0.22926948576442172],[119,102,79,0.23175366128582972],[119,103,64,0.1725860123421111],[119,103,65,0.17923941383786773],[119,103,66,0.1859530358680595],[119,103,67,0.19275373355422876],[119,103,68,0.19759167362055008],[119,103,69,0.20084171644725257],[119,103,70,0.20380618756766578],[119,103,71,0.20650763114802725],[119,103,72,0.2089823958793755],[119,103,73,0.21127678075632203],[119,103,74,0.21344347608065145],[119,103,75,0.21553831031193257],[119,103,76,0.21761731250418623],[119,103,77,0.21973409918268272],[119,103,78,0.22193759363342125],[119,103,79,0.22427008470633022],[119,104,64,0.16794309308488853],[119,104,65,0.1744154051992449],[119,104,66,0.18094294775518124],[119,104,67,0.18755222506414126],[119,104,68,0.19141400883338328],[119,104,69,0.19457888165909992],[119,104,70,0.19745723216627986],[119,104,71,0.20007010608758388],[119,104,72,0.20245257536822447],[119,104,73,0.20464988167005763],[119,104,74,0.20671387412211784],[119,104,75,0.20869975202333566],[119,104,76,0.2106631223254469],[119,104,77,0.2126573808442218],[119,104,78,0.2147314252704022],[119,104,79,0.21692770718468113],[119,105,64,0.16318127778961986],[119,105,65,0.16946591813711942],[119,105,66,0.17579886727028374],[119,105,67,0.18182377640689498],[119,105,68,0.18520649563506686],[119,105,69,0.18830295489470145],[119,105,70,0.19111415819324332],[119,105,71,0.19365931464991715],[119,105,72,0.19597173964493647],[119,105,73,0.19809503494319008],[119,105,74,0.20007955933116592],[119,105,75,0.20197920044934917],[119,105,76,0.20384845763841994],[119,105,77,0.20573984475125187],[119,105,78,0.20770162101923734],[119,105,79,0.2097758572072489],[119,106,64,0.15830478774990367],[119,106,65,0.16439465975767617],[119,106,66,0.1705242917906375],[119,106,67,0.17568520868040188],[119,106,68,0.17901113277990072],[119,106,69,0.18205607623073983],[119,106,70,0.18481906008980106],[119,106,71,0.18731715440144722],[119,106,72,0.1895814637790419],[119,106,73,0.19165338541069796],[119,106,74,0.19358115086521757],[119,106,75,0.195416662240532],[119,106,76,0.1972126323558081],[119,106,77,0.19902003784461542],[119,106,78,0.2008858931653048],[119,106,79,0.2028513527123174],[119,107,64,0.15332957414026],[119,107,65,0.15921741336080425],[119,107,66,0.1651351614002633],[119,107,67,0.16957452561205427],[119,107,68,0.17285839366565617],[119,107,69,0.17586844336158128],[119,107,70,0.17860166783194983],[119,107,71,0.18107274958096597],[119,107,72,0.18331017547758627],[119,107,73,0.18535261469871486],[119,107,74,0.187245570705914],[119,107,75,0.18903831753675865],[119,107,76,0.19078112988261395],[119,107,77,0.19252281561248433],[119,107,78,0.1943085585926543],[119,107,79,0.19617807885018945],[119,108,64,0.14828578048745164],[119,108,65,0.15396441479215117],[119,108,66,0.15966213463116286],[119,108,67,0.16350893455122212],[119,108,68,0.16676519937644937],[119,108,69,0.1697564328547887],[119,108,70,0.17247762651525622],[119,108,71,0.17494089536145685],[119,108,72,0.1771717665091849],[119,108,73,0.17920571844662658],[119,108,74,0.18108498157690991],[119,108,75,0.18285560994128783],[119,108,76,0.18456483325240716],[119,108,77,0.186258697595394],[119,108,78,0.18798000238466706],[119,108,79,0.18976654040224336],[119,109,64,0.143220558711883],[119,109,65,0.14868307903581737],[119,109,66,0.15401895204306185],[119,109,67,0.15748975372215723],[119,109,68,0.1607324625051365],[119,109,69,0.16372030607055432],[119,109,70,0.16644637841039248],[119,109,71,0.16892012647136667],[119,109,72,0.17116385445047613],[119,109,73,0.1732094637306354],[119,109,74,0.17509543856719192],[119,109,75,0.1768640869229847],[119,109,76,0.17855904512932172],[119,109,77,0.18022305432705854],[119,109,78,0.18189601592037255],[119,109,79,0.1836133325612743],[119,110,64,0.1381906350515245],[119,110,65,0.1434303626001488],[119,110,66,0.14802942990996576],[119,110,67,0.15148843744378193],[119,110,68,0.1547311630282639],[119,110,69,0.15773035918550043],[119,110,70,0.16047740801793364],[119,110,71,0.1629790749781579],[119,110,72,0.16525426728525408],[119,110,73,0.16733101066700287],[119,110,74,0.16924365387311788],[119,110,75,0.171030309746712],[119,110,76,0.17273054097650947],[119,110,77,0.17438329798475877],[119,110,78,0.17602511573959387],[119,110,79,0.17768857562075882],[119,111,64,0.13324867682193156],[119,111,65,0.13825918979068594],[119,111,66,0.14197376746062773],[119,111,67,0.1454335737868018],[119,111,68,0.14868964059860745],[119,111,69,0.1517147303967058],[119,111,70,0.1544987720649576],[119,111,71,0.15704591142679006],[119,111,72,0.15937155860831625],[119,111,73,0.16149963448940555],[119,111,74,0.1634600249159621],[119,111,75,0.16528625074967174],[119,111,76,0.16701336122821375],[119,111,77,0.16867605750296835],[119,111,78,0.17030705261644297],[119,111,79,0.17193567358257697],[119,112,64,0.12839973697110282],[119,112,65,0.13215682570140524],[119,112,66,0.1357852439034978],[119,112,67,0.13925827810198596],[119,112,68,0.1425415466301054],[119,112,69,0.1456083534243825],[119,112,70,0.14844746415922638],[119,112,71,0.15106048188020194],[119,112,72,0.1534592174303389],[119,112,73,0.15566323816719876],[119,112,74,0.1576976027701351],[119,112,75,0.15959078940593413],[119,112,76,0.16137282398418767],[119,112,77,0.1630736146945127],[119,112,78,0.16472149847956277],[119,112,79,0.16634200456481793],[119,113,64,0.12202716895818175],[119,113,65,0.12578244556069018],[119,113,66,0.12942165126145422],[119,113,67,0.13291943906743856],[119,113,68,0.1362434614130666],[119,113,69,0.1393681203627612],[119,113,70,0.14228132697275844],[119,113,71,0.14498222828870458],[119,113,72,0.1474789334031243],[119,113,73,0.14978639580915495],[119,113,74,0.1519244588807648],[119,113,75,0.15391607084805306],[119,113,76,0.15578567516990172],[119,113,77,0.1575577817379997],[119,113,78,0.15925572387914197],[119,113,79,0.16090060566036915],[119,114,64,0.11544482804217482],[119,114,65,0.11920462576894555],[119,114,66,0.12286264753557698],[119,114,67,0.1263950644613103],[119,114,68,0.12977204284098245],[119,114,69,0.13296964490541327],[119,114,70,0.13597524956970294],[119,114,71,0.13878565353174535],[119,114,72,0.14140518223337795],[119,114,73,0.1438439343024393],[119,114,74,0.14611616525223073],[119,114,75,0.1482388158257225],[119,114,76,0.15023018997905793],[119,114,77,0.15210878710486353],[119,114,78,0.1538922927032113],[119,114,79,0.15559673131992202],[119,115,64,0.10865568313906072],[119,115,65,0.112423957840111],[119,115,66,0.11610652150237363],[119,115,67,0.11968121352405289],[119,115,68,0.12312117183833302],[119,115,69,0.1264046665127119],[119,115,70,0.12951887410253246],[119,115,71,0.13245837079036551],[119,115,72,0.13522365277212547],[119,115,73,0.13781976687066974],[119,115,74,0.14025505602971933],[119,115,75,0.1425400240259217],[119,115,76,0.14468632341951765],[119,115,77,0.1467058704463095],[119,115,78,0.14861009023768726],[119,115,79,0.15040929544392495],[119,116,64,0.1016785343535715],[119,116,65,0.10545679495615667],[119,116,66,0.10916708704643308],[119,116,67,0.11278904937912099],[119,116,68,0.11629920603661206],[119,116,69,0.1196785491716888],[119,116,70,0.1229143820808656],[119,116,71,0.12599921657298174],[119,116,72,0.12892972138133785],[119,116,73,0.13170575749326083],[119,116,74,0.1343295038738128],[119,116,75,0.13680467681998137],[119,116,76,0.1391358459404196],[119,116,77,0.14132784951519206],[119,116,78,0.14338531175180094],[119,116,79,0.14531226422007087],[119,117,64,0.09454485197006866],[119,117,65,0.09833216790245049],[119,117,66,0.10207070978088312],[119,117,67,0.10574201417820764],[119,117,68,0.10932634422551599],[119,117,69,0.11280787708261136],[119,117,70,0.11617436230230853],[119,117,71,0.1194164291893709],[119,117,72,0.12252697503282693],[119,117,73,0.1255006172615868],[119,117,74,0.12833321179118864],[119,117,75,0.1310214396630305],[119,117,76,0.13356246391172025],[119,117,77,0.13595365843231808],[119,117,78,0.13819241045861413],[119,117,79,0.14027599810769759],[119,118,64,0.08729576203822736],[119,118,65,0.09108884285451195],[119,118,66,0.09485346849058199],[119,118,67,0.09857312943148856],[119,118,68,0.10223210391601661],[119,118,69,0.10581814943515098],[119,118,70,0.1093197623850477],[119,118,71,0.1127258943425204],[119,118,72,0.11602578449581734],[119,118,73,0.11920883367697753],[119,118,74,0.12226452104308912],[119,118,75,0.1251823643593173],[119,118,76,0.12795192474460382],[119,118,77,0.1305628566522165],[119,118,78,0.1330050037727519],[119,118,79,0.13526854146781772],[119,119,64,0.07997918089062019],[119,119,65,0.08377252336708722],[119,119,66,0.08755845372752663],[119,119,67,0.09132242378878684],[119,119,68,0.09505291417175973],[119,119,69,0.09874157627423433],[119,119,70,0.10237792569960628],[119,119,71,0.1059494593886846],[119,119,72,0.10944192887537296],[119,119,73,0.11283963382798148],[119,119,74,0.11612573571329404],[119,119,75,0.1192825913950345],[119,119,76,0.12229210645723167],[119,119,77,0.12513610802654598],[119,119,78,0.12779673685640622],[119,119,79,0.13025685843036972],[119,120,64,0.07264710025745695],[119,120,65,0.07643319824548643],[119,120,66,0.08023320522055208],[119,120,67,0.08403448987689714],[119,120,68,0.08782982521456172],[119,120,69,0.09161497681816821],[119,120,70,0.09538071487572929],[119,120,71,0.09911331721316566],[119,120,72,0.10279527218177122],[119,120,73,0.10640598182461775],[119,120,74,0.10992246398107347],[119,120,75,0.1133200520280196],[119,120,76,0.11657309100199241],[119,120,77,0.11930318848359775],[119,120,78,0.12138229599311716],[119,120,79,0.1252579622494678],[119,121,64,0.06535300934171291],[119,121,65,0.06912262157620863],[119,121,66,0.07292727426190825],[119,121,67,0.07675615620698627],[119,121,68,0.08060632063153547],[119,121,69,0.08447776583130323],[119,121,70,0.08836270722262834],[119,121,71,0.09224644475854188],[119,121,72,0.09610847663106195],[119,121,73,0.10254725839567527],[119,121,74,0.10917144282074699],[119,121,75,0.11570250098483544],[119,121,76,0.12116616162232409],[119,121,77,0.12479284610744365],[119,121,78,0.12837073247114147],[119,121,79,0.13192456633904864],[119,122,64,0.05814948259164941],[119,122,65,0.061891953889835365],[119,122,66,0.06568994024864977],[119,122,67,0.07036281574947721],[119,122,68,0.0771677365320492],[119,122,69,0.08403155529573522],[119,122,70,0.0909479819217886],[119,122,71,0.09790188428925665],[119,122,72,0.10487076643674634],[119,122,73,0.11182621386138132],[119,122,74,0.1187353024385904],[119,122,75,0.12552619812983953],[119,122,76,0.12888755203355912],[119,122,77,0.13217444698736242],[119,122,78,0.13541995180275446],[119,122,79,0.13865588288771488],[119,123,64,0.058370612228989725],[119,123,65,0.06504154103657332],[119,123,66,0.07179596849296384],[119,123,67,0.07862473989059421],[119,123,68,0.0855319951479451],[119,123,69,0.09252554220907068],[119,123,70,0.09960068579555877],[119,123,71,0.10674171348519688],[119,123,72,0.11392372631251087],[119,123,73,0.121114421832596],[119,123,74,0.12827582517192798],[119,123,75,0.13360550392618847],[119,123,76,0.1366440556972232],[119,123,77,0.1396068921295206],[119,123,78,0.14253392172745583],[119,123,79,0.1454636186465743],[119,124,64,0.06673839305295057],[119,124,65,0.0734280144588643],[119,124,66,0.08021757746507559],[119,124,67,0.08709910234058336],[119,124,68,0.09408029822427968],[119,124,69,0.1011728527989745],[119,124,70,0.10837369825541396],[119,124,71,0.11566676434695652],[119,124,72,0.12302512345808245],[119,124,73,0.1304130755555357],[119,124,74,0.13778816769193272],[119,124,75,0.14168246095558676],[119,124,76,0.14442221769638122],[119,124,77,0.14708386316124875],[119,124,78,0.1497135443720689],[119,124,79,0.1523558415199407],[119,125,64,0.07541106498830266],[119,125,65,0.08209639919177426],[119,125,66,0.08889615740475577],[119,125,67,0.09580327194652824],[119,125,68,0.1028286340712718],[119,125,69,0.10998752155275515],[119,125,70,0.11727847062963273],[119,125,71,0.12468525573127959],[119,125,72,0.1321793067409423],[119,125,73,0.13972205571147672],[119,125,74,0.14713213787003426],[119,125,75,0.1497359619685696],[119,125,76,0.152206832592214],[119,125,77,0.1545963043275213],[119,125,78,0.1569560454623891],[119,125,79,0.15933607055491397],[119,126,64,0.08439796344513545],[119,126,65,0.09105639119278626],[119,126,66,0.09784146719867261],[119,126,67,0.10474674730552871],[119,126,68,0.11178585071871439],[119,126,69,0.11897727453796327],[119,126,70,0.12632108417246962],[119,126,71,0.1338010775768697],[119,126,72,0.14138742957403733],[119,126,73,0.14903925734051357],[119,126,74,0.15536645407964092],[119,126,75,0.15774443497999405],[119,126,76,0.15998094626003156],[119,126,77,0.16213214417869404],[119,126,78,0.16425441023423168],[119,126,79,0.16640242585785714],[119,127,64,0.09369732476152487],[119,127,65,0.10030712413131555],[119,127,66,0.10705331394547248],[119,127,67,0.11392976809859141],[119,127,68,0.12095233257291202],[119,127,69,0.12814229204734817],[119,127,70,0.13550112327852668],[119,127,71,0.1430128013066767],[119,127,72,0.15064662451706867],[119,127,73,0.1583599546296794],[119,127,74,0.16349688136650756],[119,127,75,0.165686111755217],[119,127,76,0.16772587301383257],[119,127,77,0.1696760492749382],[119,127,78,0.171596866591233],[119,127,79,0.17354683921907355],[119,128,64,0.10329493646549202],[119,128,65,0.1098358460162237],[119,128,66,0.11652026299532262],[119,128,67,0.12334206581141142],[119,128,68,0.13031880375723026],[119,128,69,0.1374740829313657],[119,128,70,0.14481064357777315],[119,128,71,0.15231276697036492],[119,128,72,0.15994923561197336],[119,128,73,0.1676762040179555],[119,128,74,0.17150068702371934],[119,128,75,0.17353929355810674],[119,128,76,0.175421228100748],[119,128,77,0.17720921019399538],[119,128,78,0.17896641600875893],[119,128,79,0.18075432616089526],[119,129,64,0.11316294917213938],[119,129,65,0.1196167530041189],[119,129,66,0.12621849816473515],[119,129,67,0.13296175469480692],[119,129,68,0.1398652589682966],[119,129,69,0.14695447140846518],[119,129,70,0.15423323563813812],[119,129,71,0.16168624776904414],[119,129,72,0.16928210898870305],[119,129,73,0.17697628602805213],[119,129,74,0.17935739343715507],[119,129,75,0.18128261405735402],[119,129,76,0.1830449756377392],[119,129,77,0.18470916010163058],[119,129,78,0.18634041263788645],[119,129,79,0.18800232006146209],[119,130,64,0.12325885082103452],[119,130,65,0.1296099811266471],[119,130,66,0.13611083288396228],[119,130,67,0.14275436372395608],[119,130,68,0.14956002259016968],[119,130,69,0.15655469705953753],[119,130,70,0.16374318492672071],[119,130,71,0.17111069253851202],[119,130,72,0.1786259422235566],[119,130,73,0.1849724666328543],[119,130,74,0.18704921555549575],[119,130,75,0.18889529929705925],[119,130,76,0.19057349205528087],[119,130,77,0.19214962611898698],[119,130,78,0.19369019102075682],[119,130,79,0.19526006894672732],[119,131,64,0.13352460387210097],[119,131,65,0.13976075658716655],[119,131,66,0.14614587294649442],[119,131,67,0.15267201022920796],[119,131,68,0.15935893672541954],[119,131,69,0.16623462863441926],[119,131,70,0.1733047286090907],[119,131,71,0.18055504670462233],[119,131,72,0.18795469288060163],[119,131,73,0.19253068120522415],[119,131,74,0.19456147597201187],[119,131,75,0.19635742464598033],[119,131,76,0.197981645104845],[119,131,77,0.19950041369632726],[119,131,78,0.200980742786974],[119,131,79,0.20248809548502997],[119,132,64,0.1438858749971507],[119,132,65,0.1499986260792857],[119,132,66,0.1562572443160543],[119,132,67,0.162652620638021],[119,132,68,0.16920457536975336],[119,132,69,0.17594198037435452],[119,132,70,0.18287128907770261],[119,132,71,0.18997902262465494],[119,132,72,0.1972349082146026],[119,132,73,0.19987858152238122],[119,132,74,0.20188315230415665],[119,132,75,0.20365033053667242],[119,132,76,0.20524305615520103],[119,132,77,0.20672749613784203],[119,132,78,0.20817061715354274],[119,132,79,0.20963789574147967],[119,133,64,0.15424213378436527],[119,133,65,0.16022613648406048],[119,133,66,0.16635085909221892],[119,133,67,0.17260577169704053],[119,133,68,0.17901061934999865],[119,133,69,0.18559515853979972],[119,133,70,0.1923667325065294],[119,133,71,0.19931273180845693],[119,133,72,0.20475676401645557],[119,133,73,0.2070420857774291],[119,133,74,0.2090320207042557],[119,133,75,0.21078311195322913],[119,133,76,0.2123577351759022],[119,133,77,0.2138215448684875],[119,133,78,0.21524105239050823],[119,133,79,0.21668134177271492],[119,134,64,0.16447240522399142],[119,134,65,0.17032278377045873],[119,134,66,0.17630703088978011],[119,134,67,0.18241294174587305],[119,134,68,0.18866014466894648],[119,134,69,0.19507940408933963],[119,134,70,0.20167914013396793],[119,134,71,0.2084478513768966],[119,134,72,0.21181462715243463],[119,134,73,0.21409134324167406],[119,134,74,0.21607244947345033],[119,134,75,0.21781354206782194],[119,134,76,0.2193760920805499],[119,134,77,0.22082490543218627],[119,134,78,0.22222571450381332],[119,134,79,0.22364290741113022],[119,135,64,0.17447149360110822],[119,135,65,0.18018363820676048],[119,135,66,0.186021435132692],[119,135,67,0.19197078193316233],[119,135,68,0.19805121286653],[119,135,69,0.20429470540991124],[119,135,70,0.21071100975951323],[119,135,71,0.21620468409690324],[119,135,72,0.21881547328598602],[119,135,73,0.22108461098251084],[119,135,74,0.2230578594839716],[119,135,75,0.2247895537731761],[119,135,76,0.2263399585127502],[119,135,77,0.22777274938009923],[119,135,78,0.22915262522060934],[119,135,79,0.23054305710101133],[119,136,64,0.1841537249013384],[119,136,65,0.18972338746454923],[119,136,66,0.19540944073753103],[119,136,67,0.20119572159250348],[119,136,68,0.20710174318746027],[119,136,69,0.2131609407029747],[119,136,70,0.2193846758068481],[119,136,71,0.22320330571933233],[119,136,72,0.2258031185395398],[119,136,73,0.2280620451755097],[119,136,74,0.230024255013769],[119,136,75,0.23174253891768415],[119,136,76,0.23327569592149908],[119,136,77,0.23468604270720608],[119,136,78,0.2360370522811212],[119,136,79,0.23739112787892794],[119,137,64,0.1934529909208815],[119,137,65,0.1988763032960622],[119,137,66,0.20440599003917218],[119,137,67,0.21002374370023938],[119,137,68,0.21574916658038157],[119,137,69,0.22161740061780652],[119,137,70,0.2272645138026354],[119,137,71,0.23021993362573043],[119,137,72,0.23280369876130938],[119,137,73,0.23504673527713688],[119,137,74,0.23699135207778635],[119,137,75,0.23868855095300778],[119,137,76,0.24019545015719912],[119,137,77,0.24157282821359963],[119,137,78,0.24288279427211548],[119,137,79,0.2441865909715208],[119,138,64,0.20232320457308656],[119,138,65,0.20759661651829694],[119,138,66,0.21296588054918308],[119,138,67,0.2184105522745092],[119,138,68,0.22395045802274202],[119,138,69,0.2296226712833746],[119,138,70,0.23433498482904075],[119,138,71,0.23726573821684846],[119,138,72,0.2398263121885317],[119,138,73,0.24204549432147857],[119,138,74,0.2439635040198889],[119,138,75,0.24562934976200582],[119,138,76,0.24709829635415753],[119,138,77,0.24842944875700507],[119,138,78,0.24968345869679448],[119,138,79,0.2509203599084125],[119,139,64,0.2107391687076554],[119,139,65,0.21585930264351047],[119,139,66,0.2210644508970409],[119,139,67,0.22633213406473582],[119,139,68,0.23168254950630754],[119,139,69,0.23715488004113428],[119,139,70,0.2414360441286014],[119,139,71,0.24433440820738958],[119,139,72,0.24686337931208938],[119,139,73,0.24904940343136703],[119,139,74,0.2509304226331958],[119,139,75,0.2525532871462195],[119,139,76,0.253971272824112],[119,139,77,0.25524171039905263],[119,139,78,0.2564237325922186],[119,139,79,0.25757614479762125],[119,140,64,0.21869786075659325],[119,140,65,0.22366128048187892],[119,140,66,0.22869867327849722],[119,140,67,0.23378571684296554],[119,140,68,0.23894312596867298],[119,140,69,0.24421230612048875],[119,140,70,0.2485440247368225],[119,140,71,0.25140200520461214],[119,140,72,0.2538907179723403],[119,140,73,0.25603410872002735],[119,140,74,0.25786769316156105],[119,140,75,0.2594360315329831],[119,140,76,0.2607903027584688],[119,140,77,0.2619859845096669],[119,140,78,0.2630806450524019],[119,140,79,0.26413185243973886],[119,141,64,0.22622013554516573],[119,141,65,0.23102302605397562],[119,141,66,0.2358886547348526],[119,141,67,0.24079112659513638],[119,141,68,0.24575180642998268],[119,141,69,0.25081435846024297],[119,141,70,0.25561604338324856],[119,141,71,0.25842649901234815],[119,141,72,0.26086733178344224],[119,141,73,0.26295986883157396],[119,141,74,0.26473708160895254],[119,141,75,0.26624113053479526],[119,141,76,0.26752100260462136],[119,141,77,0.26863024795325324],[119,141,78,0.2696248210626607],[119,141,79,0.27056103198937215],[119,142,64,0.23335284865498915],[119,142,65,0.23799060418702517],[119,142,66,0.24267954961019314],[119,142,67,0.24739254592010965],[119,142,68,0.25215171259002306],[119,142,69,0.25700292286181375],[119,142,70,0.2619715136191091],[119,142,71,0.2653469816738748],[119,142,72,0.2677349100334781],[119,142,73,0.26977135142578895],[119,142,74,0.27148663284491054],[119,142,75,0.2729204100562723],[119,142,76,0.2741193760423878],[119,142,77,0.27513506053558096],[119,142,78,0.276021726097159],[119,142,79,0.2768343659064558],[119,143,64,0.24015682529659885],[119,143,65,0.2446239728703987],[119,143,66,0.24913024181081725],[119,143,67,0.25364762184327316],[119,143,68,0.2581990587804598],[119,143,69,0.26283250156254134],[119,143,70,0.26757577693781315],[119,143,71,0.27209223252889103],[119,143,72,0.2744255950623059],[119,143,73,0.2764045131255394],[119,143,74,0.2780565737695539],[119,143,75,0.2794188141584517],[119,143,76,0.2805355092313552],[119,143,77,0.2814560417698249],[119,143,78,0.2822328600694402],[119,143,79,0.28291952814011245],[119,144,64,0.24665393200339644],[119,144,65,0.2509454882019769],[119,144,66,0.255263551545506],[119,144,67,0.25957968187576524],[119,144,68,0.2639177177892867],[119,144,69,0.268327494717778],[119,144,70,0.272839212999054],[119,144,71,0.27746482902254727],[119,144,72,0.2808942995964976],[119,144,73,0.2828146931741119],[119,144,74,0.28440284590857606],[119,144,75,0.28569307336526684],[119,144,76,0.28672711365798925],[119,144,77,0.28755207607310757],[119,144,78,0.2882184674712762],[119,144,79,0.28877830112326397],[119,145,64,0.2528518781365496],[119,145,65,0.256963755196866],[119,145,66,0.26108903601567823],[119,145,67,0.2651993566477712],[119,145,68,0.26931951374138435],[119,145,69,0.2735009928219765],[119,145,70,0.2777762075636988],[119,145,71,0.2821597476056624],[119,145,72,0.286650622884654],[119,145,73,0.2889658226672106],[119,145,74,0.29048882404479626],[119,145,75,0.29170613285917757],[119,145,76,0.2926568512796233],[119,145,77,0.2933857042820647],[119,145,78,0.29394114184943415],[119,145,79,0.2943735125651515],[119,146,64,0.25875623621721955],[119,146,65,0.26268524701522056],[119,146,66,0.2666141491024637],[119,146,67,0.2705152087989501],[119,146,68,0.274414240640385],[119,146,69,0.2783641009169022],[119,146,70,0.28239921393753065],[119,146,71,0.2865366738083863],[119,146,72,0.29077834128909114],[119,146,73,0.2948247682588687],[119,146,74,0.2962807710399567],[119,146,75,0.29742378751680015],[119,146,76,0.29829020969724296],[119,146,77,0.298922288111903],[119,146,78,0.29936631654469925],[119,146,79,0.29967087619157884],[119,147,64,0.26437060030973975],[119,147,65,0.268114443510937],[119,147,66,0.27184435668875634],[119,147,67,0.275533820331558],[119,147,68,0.27920971793875615],[119,147,69,0.2829259610785411],[119,147,70,0.286718743582492],[119,147,71,0.29060749612042996],[119,147,72,0.2945968249163474],[119,147,73,0.2986784282632437],[119,147,74,0.30174794447271236],[119,147,75,0.3028147816168073],[119,147,76,0.30359558270628456],[119,147,77,0.30413005854025454],[119,147,78,0.3044622674831753],[119,147,79,0.30463893547688947],[119,148,64,0.26969675199097537],[119,148,65,0.27325397947100244],[119,148,66,0.27678326350382776],[119,148,67,0.28025989363251297],[119,148,68,0.2837118621599683],[119,148,69,0.28719379304322123],[119,148,70,0.29074337620526103],[119,148,71,0.29438217543639017],[119,148,72,0.29811739970831197],[119,148,73,0.30194366310122617],[119,148,74,0.305844729473475],[119,148,75,0.3078509008404324],[119,148,76,0.30854435121861923],[119,148,77,0.30898017438402037],[119,148,78,0.30920013761900633],[119,148,79,0.30924904197057335],[119,149,64,0.2747348338943031],[119,149,65,0.27810480253956193],[119,149,66,0.2814327514900679],[119,149,67,0.28469636617174243],[119,149,68,0.28792477458999655],[119,149,69,0.2911729530001368],[119,149,70,0.2944797893582768],[119,149,71,0.29786874684218184],[119,149,72,0.30134946028061343],[119,149,73,0.3049193324826597],[119,149,74,0.3085651271415698],[119,149,75,0.3122645550470228],[119,149,76,0.3131109646128155],[119,149,77,0.3134467911778791],[119,149,78,0.3135539832014862],[119,149,79,0.3134753684687357],[119,150,64,0.2794835308246969],[119,150,65,0.2826663408281353],[119,150,66,0.2857931296978408],[119,150,67,0.2888445388893987],[119,150,68,0.2918508450592519],[119,150,69,0.29486701057973536],[119,150,70,0.2979328075889563],[119,150,71,0.30107334117963513],[119,150,72,0.30430046554254625],[119,150,73,0.30761421163811203],[119,150,74,0.311004223632438],[119,150,75,0.31445120136502336],[119,150,76,0.31727302257329465],[119,150,77,0.3175071404645001],[119,150,78,0.31750084203758355],[119,150,79,0.31729495727423007],[119,151,64,0.28394025844876225],[119,151,65,0.2869366802202175],[119,151,66,0.28986329572039204],[119,151,67,0.2927042182894207],[119,151,68,0.29549087183966455],[119,151,69,0.2982778440695978],[119,151,70,0.3011054711734124],[119,151,71,0.3040002264263499],[119,151,72,0.3069759529491647],[119,151,73,0.31003511982473647],[119,151,74,0.3131700993743241],[119,151,75,0.3163644634034931],[119,151,76,0.31959429624143026],[119,151,77,0.3211416196071268],[119,151,78,0.32102082391890213],[119,151,79,0.3206878037834714],[119,152,64,0.2881013595730114],[119,152,65,0.29091275138754513],[119,152,66,0.293640908689081],[119,152,67,0.2962738722643359],[119,152,68,0.29884419768795684],[119,152,69,0.30140575389442],[119,152,70,0.30399912447445965],[119,152,71,0.306651868929776],[119,152,72,0.3093795714183316],[119,152,73,0.31218692471825205],[119,152,74,0.31506884779065586],[119,152,75,0.31801163529633025],[119,152,76,0.32099413740604815],[119,152,77,0.32398896824024115],[119,152,78,0.32409722338323627],[119,152,79,0.3236369756360559],[119,153,64,0.29196230803239726],[119,153,65,0.2945905265437513],[119,153,66,0.297122573857037],[119,153,67,0.29955079968325116],[119,153,68,0.30190886207221906],[119,153,69,0.3042495944015804],[119,153,70,0.30661352396712405],[119,153,71,0.3090290145363113],[119,153,72,0.31151313294567806],[119,153,73,0.31407256266984596],[119,153,74,0.31670456330900576],[119,153,75,0.31939797488915594],[119,153,76,0.32213426582627785],[119,153,77,0.3248886233728991],[119,153,78,0.3267166549819649],[119,153,79,0.3261287676621131],[119,154,64,0.2955179202209491],[119,154,65,0.29796522597082764],[119,154,66,0.3003040388085582],[119,154,67,0.3025313137835412],[119,154,68,0.30468176962666366],[119,154,69,0.3068069240004607],[119,154,70,0.30894696598020377],[119,154,71,0.31113078965995855],[119,154,72,0.31337668295244514],[119,154,73,0.3156930748469544],[119,154,74,0.31807934062460536],[119,154,75,0.32052666445163547],[119,154,76,0.32301895870145864],[119,154,77,0.325533839296011],[119,154,78,0.32804365630747256],[119,154,79,0.328152892863913],[119,155,64,0.29876257430696124],[119,155,65,0.30103153436443464],[119,155,66,0.3031804013418285],[119,155,67,0.30521093941652405],[119,155,68,0.30715887488854793],[119,155,69,0.309074173711864],[119,155,70,0.31099643420934264],[119,155,71,0.3129548223404161],[119,155,72,0.31496858940472017],[119,155,73,0.31704765927849216],[119,155,74,0.3191932852139645],[119,155,75,0.3213987761288169],[119,155,76,0.3236502922174054],[119,155,77,0.32592770962926476],[119,155,78,0.3282055538845038],[119,155,79,0.3297027096723238],[119,156,64,0.30169043718569144],[119,156,65,0.30378382705474294],[119,156,66,0.3057463290829429],[119,156,67,0.30758462420745186],[119,156,68,0.30933538338080374],[119,156,69,0.31104683419262663],[119,156,70,0.31275776706464226],[119,156,71,0.31449738334649097],[119,156,72,0.31628565074670534],[119,156,73,0.3181337388271526],[119,156,74,0.320044535094031],[119,156,75,0.3220132420924372],[119,156,76,0.3240280557925347],[119,156,77,0.3260709254448697],[119,156,78,0.32811839498182815],[119,156,79,0.33014252595289945],[119,157,64,0.30429569923390465],[119,157,65,0.3062164061711745],[119,157,66,0.30799629090080544],[119,157,67,0.3096469637015281],[119,157,68,0.3112059691149565],[119,157,69,0.31271966131089646],[119,157,70,0.3142258449251361],[119,157,71,0.31575354738847844],[119,157,72,0.3173232226964796],[119,157,73,0.31894704511495237],[119,157,74,0.3206292938234346],[119,157,75,0.322366829351783],[119,157,76,0.324149662524362],[119,157,77,0.3259616164935367],[119,157,78,0.32778108232095327],[119,157,79,0.3295818684528539],[119,158,64,0.30657281694273564],[119,158,65,0.3083237468319831],[119,158,66,0.30992480020505986],[119,158,67,0.31139244058019494],[119,158,68,0.3127650086012794],[119,158,69,0.3140869003594133],[119,158,70,0.31539479738332704],[119,158,71,0.3167173745125297],[119,158,72,0.31807536396008235],[119,158,73,0.3194817184331452],[119,158,74,0.3209418747445962],[119,158,75,0.3224541191830661],[119,158,76,0.32401005574843833],[119,158,77,0.3255951782069705],[119,158,78,0.32718954677644096],[119,158,79,0.3287685701187572],[119,159,64,0.30851676351737367],[119,159,65,0.31010075345222765],[119,159,66,0.3115266702219871],[119,159,67,0.3128156780448012],[119,159,68,0.31400683146599306],[119,159,69,0.3151425290066198],[119,159,70,0.3162582305745909],[119,159,71,0.3173821117601477],[119,159,72,0.31853500092780046],[119,159,73,0.3197304236730987],[119,159,74,0.32097475646795537],[119,159,75,0.32226749113549435],[119,159,76,0.32360161161768397],[119,159,77,0.3249640843282111],[119,159,78,0.3263364632210076],[119,159,79,0.3276956105534038],[119,160,64,0.3101232875449299],[119,160,65,0.3115430262772808],[119,160,66,0.31279728135716467],[119,160,67,0.3139117074788776],[119,160,68,0.3149259877895994],[119,160,69,0.31588051909950254],[119,160,70,0.3168094746995491],[119,160,71,0.3177404151878156],[119,160,72,0.31869411142628895],[119,160,73,0.31968448232173036],[119,160,74,0.32071864960331153],[119,160,75,0.32179711157232727],[119,160,76,0.32291403760633514],[119,160,77,0.32405768501356774],[119,160,78,0.3252109396553876],[119,160,79,0.326351981586863],[119,161,64,0.3113891798453554],[119,161,65,0.3126471382633948],[119,161,66,0.3137328607685001],[119,161,67,0.31467625051545706],[119,161,68,0.3155175322959935],[119,161,69,0.31629511744756117],[119,161,70,0.3170418518623384],[119,161,71,0.317784592355183],[119,161,72,0.31854392761141814],[119,161,73,0.3193340205734753],[119,161,74,0.3201625747481305],[119,161,75,0.32103092670604466],[119,161,76,0.3219342668392206],[119,161,77,0.32286199024191314],[119,161,78,0.32379817938854255],[119,161,79,0.32472222010038326],[119,162,64,0.3123125486334955],[119,162,65,0.313410922441086],[119,162,66,0.31433077428802736],[119,162,67,0.31510601565122076],[119,162,68,0.3157773255378414],[119,162,69,0.3163811457332496],[119,162,70,0.3169489643630977],[119,162,71,0.3175068654042803],[119,162,72,0.3180751580985698],[119,162,73,0.31866813361956003],[119,162,74,0.31929395174769687],[119,162,75,0.3199546600873955],[119,162,76,0.32064634814290227],[119,162,77,0.3213594383578356],[119,162,78,0.3220791160193942],[119,162,79,0.3227858997342712],[119,163,64,0.3128931031348301],[119,163,65,0.31383376991272355],[119,163,66,0.3145898308471717],[119,163,67,0.31519900956627667],[119,163,68,0.31570235224142734],[119,163,69,0.3161343197122078],[119,163,70,0.316525003600533],[119,163,71,0.3168996548684647],[119,163,72,0.3172782294411154],[119,163,73,0.3176750661861944],[119,163,74,0.31809870024880826],[119,163,75,0.31855181451017883],[119,163,76,0.31903133171197967],[119,163,77,0.3195286495662451],[119,163,78,0.3200300209565181],[119,163,79,0.32051708113139704],[119,164,64,0.31312991521690503],[119,164,65,0.3139141835733165],[119,164,66,0.31450764519237456],[119,164,67,0.31495171815768996],[119,164,68,0.31528772826802043],[119,164,69,0.31554809349345514],[119,164,70,0.31576144627973457],[119,164,71,0.3159521449213057],[119,164,72,0.3161397393281777],[119,164,73,0.3163385736838392],[119,164,74,0.31655752921707186],[119,164,75,0.3167999100725991],[119,164,76,0.3170634750301391],[119,164,77,0.31734061759086857],[119,164,78,0.31761869672687815],[119,164,79,0.3178805203752748],[119,165,64,0.31300637073824994],[119,165,65,0.3136333749623382],[119,165,66,0.31406307213661266],[119,165,67,0.31434044833379843],[119,165,68,0.3145070125814421],[119,165,69,0.3145930836696527],[119,165,70,0.31462579592212764],[119,165,71,0.31462859356713846],[119,165,72,0.31462061708971345],[119,165,73,0.3146162306415896],[119,165,74,0.3146246939460465],[119,165,75,0.314649981889666],[119,165,76,0.3146907547500247],[119,165,77,0.31474048176967784],[119,165,78,0.3147877205549057],[119,165,79,0.3148165545550329],[119,166,64,0.3125044777163772],[119,166,65,0.312970853540392],[119,166,66,0.3132330479097926],[119,166,67,0.31333941909974894],[119,166,68,0.3133315549588772],[119,166,69,0.31323766921993174],[119,166,70,0.3130834172847129],[119,166,71,0.31289136993941263],[119,166,72,0.31268031824155446],[119,166,73,0.3124647234582675],[119,166,74,0.3122543157048197],[119,166,75,0.31205384468043407],[119,166,76,0.3118629856480472],[119,166,77,0.31167640355822646],[119,166,78,0.3114839779773918],[119,166,79,0.3112711912492984],[119,167,64,0.3116133446302113],[119,167,65,0.3119137731660616],[119,167,66,0.31200273237671644],[119,167,67,0.31193168077407135],[119,167,68,0.3117421788102921],[119,167,69,0.31146039117236957],[119,167,70,0.3111105779863096],[119,167,71,0.3107145408925762],[119,167,72,0.31029084263618045],[119,167,73,0.30985417569554374],[119,167,74,0.3094148838139935],[119,167,75,0.30897864003904585],[119,167,76,0.30854628461691525],[119,167,77,0.3081138258354202],[119,167,78,0.30767260666011786],[119,167,79,0.30720963976867427],[119,168,64,0.31032731979547357],[119,168,65,0.3104550550706631],[119,168,66,0.3103636151071777],[119,168,67,0.31010720955307547],[119,168,68,0.30972726949210094],[119,168,69,0.30924803580257626],[119,168,70,0.30869252440127914],[119,168,71,0.3080819348774051],[119,168,72,0.3074347797886032],[119,168,73,0.3067661671214869],[119,168,74,0.30608724000256743],[119,168,75,0.30540477747978895],[119,168,76,0.3047209599295079],[119,168,77,0.3040333023813381],[119,168,78,0.3033347587963277],[119,168,79,0.3026140000851055],[119,169,64,0.308643910124492],[119,169,65,0.308591285126459],[119,169,66,0.3083113923788061],[119,169,67,0.3078607707230688],[119,169,68,0.307280630171339],[119,169,69,0.30659348612881454],[119,169,70,0.30582132895484426],[119,169,71,0.3049849830513286],[119,169,72,0.30410314023166696],[119,169,73,0.3031915506452358],[119,169,74,0.30226237557532304],[119,169,75,0.3013237061551487],[119,169,76,0.3003792517731295],[119,169,77,0.29942820166744055],[119,169,78,0.29846526294379233],[119,169,79,0.2974808779919124],[119,170,64,0.3065615312415624],[119,170,65,0.3063204421521237],[119,170,66,0.30584367618773495],[119,170,67,0.3051896157848736],[119,170,68,0.3043991745815448],[119,170,69,0.30349341482250186],[119,170,70,0.30249358526260633],[119,170,71,0.3014204168168648],[119,170,72,0.30029305418528834],[119,170,73,0.29912814980510943],[119,170,74,0.2979391246918886],[119,170,75,0.2967356004495508],[119,170,76,0.2955230064470966],[119,170,77,0.2943023658792323],[119,170,78,0.2930702641521096],[119,170,79,0.2918190027665869],[119,171,64,0.3040770870518347],[119,171,65,0.3036394554044519],[119,171,66,0.3029575334773006],[119,171,67,0.30209101177152453],[119,171,68,0.3010804550318401],[119,171,69,0.2999458169874673],[119,171,70,0.29870794967164443],[119,171,71,0.2973878204620805],[119,171,72,0.29600533634253157],[119,171,73,0.2945783357540329],[119,171,74,0.2931217528535102],[119,171,75,0.29164695870698193],[119,171,76,0.2901612836525991],[119,171,77,0.28866772477800257],[119,171,78,0.28716484216963434],[119,171,79,0.2856468473116301],[119,172,64,0.3011833766869344],[119,172,65,0.30054158923214036],[119,172,66,0.29964685362421994],[119,172,67,0.2985596008724053],[119,172,68,0.2973200238669668],[119,172,69,0.2959473811022832],[119,172,70,0.2944625276069938],[119,172,71,0.2928870374295612],[119,172,72,0.29124191543472716],[119,172,73,0.28954648255260906],[119,172,74,0.2878174395673654],[119,172,75,0.2860681142318599],[119,172,76,0.28430789619212093],[119,172,77,0.28254186390335484],[119,172,78,0.2807706074206527],[119,172,79,0.2789902506552837],[119,173,64,0.29786632656982676],[119,173,65,0.2970136526881586],[119,173,66,0.2958995420446717],[119,173,67,0.29458458830311013],[119,173,68,0.2931086264058972],[119,173,69,0.2914906962545777],[119,173,70,0.2897521029674927],[119,173,71,0.28791542858700586],[119,173,72,0.28600312709161035],[119,173,73,0.28403629944162395],[119,173,74,0.28203365402775743],[119,173,75,0.28001065758020965],[119,173,76,0.2779788812815054],[119,173,77,0.275945546511866],[119,173,78,0.2739132743443633],[119,173,79,0.2718800426015624],[119,174,64,0.2941020451555993],[119,174,65,0.293033031712571],[119,174,66,0.29169453760018177],[119,174,67,0.2901467561807206],[119,174,68,0.288429223210822],[119,174,69,0.28656129362514887],[119,174,70,0.2845652086496212],[119,174,71,0.28246498071386295],[119,174,72,0.28028486836126687],[119,174,73,0.27804803862278465],[119,174,74,0.2757754225192413],[119,174,75,0.2734847690329028],[119,174,76,0.2711899025615019],[119,174,77,0.268900188539828],[119,174,78,0.2666202115883029],[119,174,79,0.2643496702279132],[119,175,64,0.28986929014315677],[119,175,65,0.2885799991291112],[119,175,66,0.2870138752065938],[119,175,67,0.28523017153746577],[119,175,68,0.2832682200363018],[119,175,69,0.28114826066448045],[119,175,70,0.2788939767994486],[119,175,71,0.2765312382608021],[119,175,72,0.27408645414231975],[119,175,73,0.27158512145111674],[119,175,74,0.26905057552578704],[119,175,75,0.26650294786755363],[119,175,76,0.2639583366764828],[119,175,77,0.26142819504176074],[119,175,78,0.2589189413939452],[119,175,79,0.25643179649134284],[119,176,64,0.28519982447782705],[119,176,65,0.2836876621028328],[119,176,66,0.28189193624705605],[119,176,67,0.2798703931147898],[119,176,68,0.277662233728821],[119,176,69,0.2752891274226078],[119,176,70,0.27277667680863066],[119,176,71,0.27015300621083915],[119,176,72,0.2674469925891888],[119,176,73,0.26468670126448407],[119,176,74,0.2618980327259203],[119,176,75,0.2591035864511829],[119,176,76,0.25632174731172064],[119,176,77,0.2535659997769423],[119,176,78,0.2508444747738205],[119,176,79,0.24815973370618757],[119,177,64,0.28014097849187874],[119,177,65,0.2784049185678318],[119,177,66,0.2763790961845139],[119,177,67,0.2741191679392317],[119,177,68,0.2716642464949027],[119,177,69,0.26903792751011385],[119,177,70,0.26626816110882284],[119,177,71,0.26338567608584956],[119,177,72,0.260422091525237],[119,177,73,0.25740824253752026],[119,177,74,0.2543727267029145],[119,177,75,0.251340677439893],[119,177,76,0.24833277014578894],[119,177,77,0.24536446658111952],[119,177,78,0.24244550259564998],[119,177,79,0.23957962392537738],[119,178,64,0.2747408802638623],[119,178,65,0.2727817564688796],[119,178,66,0.27052717508101604],[119,178,67,0.2680301335937865],[119,178,68,0.2653296760174017],[119,178,69,0.2624517651544283],[119,178,70,0.25942706834182644],[119,178,71,0.25628921121501336],[119,178,72,0.25307277507654313],[119,178,73,0.24981151773062293],[119,178,74,0.24653682466049617],[119,178,75,0.24327639704333096],[119,178,76,0.2400531827090396],[119,178,77,0.23688455575868833],[119,178,78,0.2337817501683364],[119,178,79,0.23074955231898836],[119,179,64,0.26904787214443954],[119,179,65,0.2668685968183529],[119,179,66,0.2643886895921073],[119,179,67,0.26165795881044146],[119,179,68,0.2587153827637358],[119,179,69,0.25558966708057324],[119,179,70,0.25231449825638047],[119,179,71,0.24892662442059704],[119,179,72,0.24546374589532605],[119,179,73,0.24196263832481973],[119,179,74,0.23845751552031552],[119,179,75,0.23497863876813818],[119,179,76,0.23155117894604527],[119,179,77,0.22819433738691386],[119,179,78,0.2249207310236459],[119,179,79,0.22173604694845997],[119,180,64,0.26310989831171616],[119,180,65,0.26071560901371504],[119,180,66,0.2580160805161395],[119,180,67,0.2550574646864879],[119,180,68,0.2518786649598628],[119,180,69,0.24851143158450592],[119,180,70,0.24499269617786384],[119,180,71,0.24136248073584818],[119,180,72,0.23766169104683207],[119,180,73,0.23393015129602526],[119,180,74,0.23020488724271973],[119,180,75,0.22651866494310344],[119,180,76,0.22289879157475884],[119,180,77,0.2193661844990879],[119,180,78,0.21593471427844182],[119,180,79,0.21261082694964117],[119,181,64,0.2569738628085731],[119,181,65,0.2543719978569198],[119,181,66,0.2514609153396274],[119,181,67,0.24828272597308607],[119,181,68,0.2448762406945862],[119,181,69,0.24127647429246596],[119,181,70,0.23752374658880113],[119,181,71,0.23366142475505114],[119,181,72,0.22973363124064777],[119,181,73,0.2257832008096474],[119,181,74,0.22184989427044322],[119,181,75,0.2179688760619149],[119,181,76,0.2141694624306092],[119,181,77,0.21047414650114424],[119,181,78,0.20689790610984257],[119,181,79,0.20344779984367184],[119,182,64,0.25068495747797875],[119,182,65,0.24788526167946298],[119,182,66,0.2447730651818943],[119,182,67,0.24138615184685905],[119,182,68,0.23776321658166458],[119,182,69,0.233942670063803],[119,182,70,0.2299682753240329],[119,182,71,0.22588673218434696],[119,182,72,0.22174531305917627],[119,182,73,0.21758975489196203],[119,182,74,0.21346241497427987],[119,182,75,0.20940069796294347],[119,182,76,0.20543576097124297],[119,182,77,0.20159150316734334],[119,182,78,0.19788384586978058],[119,182,79,0.19432030869106104],[119,183,64,0.24428595917563353],[119,183,65,0.24130042093918438],[119,183,66,0.23799985550465738],[119,183,67,0.23441754553827826],[119,183,68,0.23059204237126277],[119,183,69,0.22656519046067422],[119,183,70,0.22238415985302418],[119,183,71,0.21809888513411285],[119,183,72,0.21375964381258192],[119,183,73,0.20941489681629097],[119,183,74,0.2051093989669459],[119,183,75,0.20088258685840177],[119,183,76,0.19676725111629703],[119,183,77,0.1927884995648479],[119,183,78,0.18896301737470397],[119,183,79,0.18529862981794845],[119,184,64,0.23781649560360157],[119,184,65,0.23465921661840547],[119,184,66,0.2311851899159797],[119,184,67,0.2274231421553255],[119,184,68,0.2234114508686073],[119,184,69,0.2191953361767929],[119,184,70,0.21482524709408365],[119,184,71,0.21035417067055995],[119,184,72,0.20583516863191273],[119,184,73,0.2013191809307971],[119,184,74,0.1968531041471182],[119,184,75,0.19247815222840683],[119,184,76,0.188228506607345],[119,184,77,0.18413026227519583],[119,184,78,0.1802006759314018],[119,184,79,0.17644772187517427],[119,185,64,0.23131227907343044],[119,185,65,0.22799927771716524],[119,185,66,0.22436864636277476],[119,185,67,0.2204446240070088],[119,185,68,0.21626538248586397],[119,185,69,0.21187936378869385],[119,185,70,0.20734007818085598],[119,185,71,0.20270330212530452],[119,185,72,0.19802458939987555],[119,185,73,0.19335705265014222],[119,185,74,0.1887494233395454],[119,185,75,0.1842443976084174],[119,185,76,0.17987727509538357],[119,185,77,0.17567489731220398],[119,185,78,0.1716548917004431],[119,185,79,0.1678252270397132],[119,186,64,0.22480430747251884],[119,186,65,0.22135325710008885],[119,186,66,0.2175845449716613],[119,186,67,0.2135181126986309],[119,186,68,0.20919189372317287],[119,186,69,0.20465730616663516],[119,186,70,0.1999706195801788],[119,186,71,0.19519006264686228],[119,186,72,0.19037332511169056],[119,186,73,0.1855753323351377],[119,186,74,0.18084630040889277],[119,186,75,0.17623007932085108],[119,186,76,0.17176279119656623],[119,186,77,0.16747177018025147],[119,186,78,0.16337481005402285],[119,186,79,0.15947972523369758],[119,187,64,0.21831803167512048],[119,187,65,0.2147479349227532],[119,187,66,0.21086098676643397],[119,187,67,0.20667313724126188],[119,187,68,0.20222204884838285],[119,187,69,0.19756178586023088],[119,187,70,0.1927509999442148],[119,187,71,0.18784997046918725],[119,187,72,0.18291811325846113],[119,187,73,0.17801176279467715],[119,187,74,0.17318223574639352],[119,187,75,0.16847418323519556],[119,187,76,0.16392423880300264],[119,187,77,0.15955996857583568],[119,187,78,0.15539912965664512],[119,187,79,0.15144924232014112],[119,188,64,0.21187248860710253],[119,188,65,0.20820328883101932],[119,188,66,0.20421886245942117],[119,188,67,0.1999315773893375],[119,188,68,0.19537879402004188],[119,188,69,0.19061682075387928],[119,188,70,0.1857062520662986],[119,188,71,0.1807089653671463],[119,188,72,0.17568565183010168],[119,188,73,0.1706936201601475],[119,188,74,0.16578488105683295],[119,188,75,0.16100451968288135],[119,188,76,0.15638936299155887],[119,188,77,0.15196694830586963],[119,188,78,0.14775479908207612],[119,188,79,0.14376001333351193],[119,189,64,0.2054793991442785],[119,189,65,0.20173153009759864],[119,189,66,0.19767083048649933],[119,189,67,0.19330658139562878],[119,189,68,0.1886758130775378],[119,189,69,0.183836621271939],[119,189,70,0.1788510593021108],[119,189,71,0.17378211577006408],[119,189,72,0.16869128154693105],[119,189,73,0.1636363879069971],[119,189,74,0.15866972341165367],[119,189,75,0.15383643670631394],[119,189,76,0.1491732319423451],[119,189,77,0.14470736308096377],[119,189,78,0.14045593288082592],[119,189,79,0.13642550191985633],[119,190,64,0.1991422299965473],[119,190,65,0.19533610483282843],[119,190,66,0.19122026343019718],[119,190,67,0.18680145735069204],[119,190,68,0.18211636420461538],[119,190,69,0.17722437840202765],[119,190,70,0.17218850581415554],[119,190,71,0.16707234601068865],[119,190,72,0.16193770794696852],[119,190,73,0.1568424938294967],[119,190,74,0.15183885858024113],[119,190,75,0.14697165188384367],[119,190,76,0.14227714935791264],[119,190,77,0.13778207893872468],[119,190,78,0.1335029481267782],[119,190,79,0.1294456772928213],[119,191,64,0.19285521870453884],[119,191,65,0.18901065938160297],[119,191,66,0.18486016195256005],[119,191,67,0.18040853725467892],[119,191,68,0.17569209665816068],[119,191,69,0.170771041797126],[119,191,70,0.1657088299983896],[119,191,71,0.16056918319839275],[119,191,72,0.15541376297999343],[119,191,73,0.15030010981312686],[119,191,74,0.14527985370581392],[119,191,75,0.14039720304405987],[119,191,76,0.13568771796399895],[119,191,77,0.13117737416068426],[119,191,78,0.12688192259908979],[119,191,79,0.12280655015814265],[119,192,64,0.18660236085356113],[119,192,65,0.18273796899725256],[119,192,66,0.17857203534079852],[119,192,67,0.17410801295464368],[119,192,68,0.16938184674474252],[119,192,69,0.16445408721488305],[119,192,70,0.15938818045873623],[119,192,71,0.1542475232235727],[119,192,72,0.14909320579089186],[119,192,73,0.1439820142957197],[119,192,74,0.13896469945592582],[119,192,75,0.1340845182646638],[119,192,76,0.12937605477381003],[119,192,77,0.12486432566754717],[119,192,78,0.12056417589673964],[119,192,79,0.11647996922040416],[119,193,64,0.1814357482307482],[119,193,65,0.17648882886514325],[119,193,66,0.17232474775353446],[119,193,67,0.16786674306948243],[119,193,68,0.16315041222209994],[119,193,69,0.15823627255483375],[119,193,70,0.1531873739072118],[119,193,71,0.14806641542405738],[119,193,72,0.14293356241266064],[119,193,73,0.1378445173622884],[119,193,74,0.1328488518491178],[119,193,75,0.12798860564184075],[119,193,76,0.12329715890873623],[119,193,77,0.11879838300929235],[119,193,78,0.11450607493614333],[119,193,79,0.11042368005998937],[119,194,64,0.18468664492409528],[119,194,65,0.17917373717989077],[119,194,66,0.17349858129354373],[119,194,67,0.1676558032079077],[119,194,68,0.16167336604392188],[119,194,69,0.15560442422542767],[119,194,70,0.14950453589805635],[119,194,71,0.14342883756596142],[119,194,72,0.13742992556081104],[119,194,73,0.1318264484792008],[119,194,74,0.12687036403835436],[119,194,75,0.12204736341503894],[119,194,76,0.11738943288839122],[119,194,77,0.11291913120839216],[119,194,78,0.10864906544606917],[119,194,79,0.1045816483539419],[119,195,64,0.18780568842546227],[119,195,65,0.18217534780733202],[119,195,66,0.17638911577030136],[119,195,67,0.17044149927523458],[119,195,68,0.16436024665290355],[119,195,69,0.15819816025333058],[119,195,70,0.15201005758784636],[119,195,71,0.14585002219592666],[119,195,72,0.13976936399992215],[119,195,73,0.1338148245130911],[119,195,74,0.12802703312282138],[119,195,75,0.12243922028439848],[119,195,76,0.11707619306768707],[119,195,77,0.11195357810314813],[119,195,78,0.1070773365791682],[119,195,79,0.10244355555224681],[119,196,64,0.1907489109243934],[119,196,65,0.18500050031830814],[119,196,66,0.17910323923146435],[119,196,67,0.1730517250972022],[119,196,68,0.1668736146285661],[119,196,69,0.16062139583288815],[119,196,70,0.15434915491065873],[119,196,71,0.14810990574616698],[119,196,72,0.14195363048520312],[119,196,73,0.13592556007285683],[119,196,74,0.1300647007303077],[119,196,75,0.1244026119726052],[119,196,76,0.11896244138643337],[119,196,77,0.11375822100122374],[119,196,78,0.10879442970314775],[119,196,79,0.10406582576181013],[119,197,64,0.19350960580464835],[119,197,65,0.18764558462313446],[119,197,66,0.18164006311207664],[119,197,67,0.1754880331319523],[119,197,68,0.16921718715981698],[119,197,69,0.16287964720422024],[119,197,70,0.15652868815497453],[119,197,71,0.15021615430755106],[119,197,72,0.1439905848729051],[119,197,73,0.1378955744037734],[119,197,74,0.13196837386761565],[119,197,75,0.12623873772923613],[119,197,76,0.12072802203331934],[119,197,77,0.11544853810201804],[119,197,78,0.11040316608974347],[119,197,79,0.10558523226864003],[119,198,64,0.19339016497770442],[119,198,65,0.19010615274824916],[119,198,66,0.18399747004132758],[119,198,67,0.1777503485728111],[119,198,68,0.171392644546716],[119,198,69,0.16497598218392226],[119,198,70,0.15855266667387807],[119,198,71,0.1521732012900007],[119,198,72,0.1458845053510065],[119,198,73,0.13972836149376555],[119,198,74,0.13374009772433815],[119,198,75,0.12794750935728674],[119,198,76,0.12237002559158991],[119,198,77,0.11701812510778256],[119,198,78,0.11189300470971247],[119,198,79,0.10698650467755301],[119,199,64,0.19298009009473677],[119,199,65,0.19113371198654616],[119,199,66,0.18616962741089332],[119,199,67,0.1798342383572769],[119,199,68,0.17339667500687928],[119,199,69,0.16690787524032177],[119,199,70,0.16041896168432945],[119,199,71,0.15397887670251595],[119,199,72,0.14763270237380746],[119,199,73,0.1414202032924966],[119,199,74,0.1353745973718038],[119,199,75,0.12952155948815092],[119,199,76,0.1238784624539184],[119,199,77,0.11845385945553721],[119,199,78,0.11324721174563664],[119,199,79,0.10824886503454446],[119,200,64,0.1925208792138679],[119,200,65,0.1904779878436874],[119,200,66,0.18814861527689836],[119,200,67,0.18173263429894052],[119,200,68,0.17522280494001202],[119,200,69,0.16866915369152924],[119,200,70,0.16212137374945423],[119,200,71,0.15562659766277165],[119,200,72,0.1492278302980068],[119,200,73,0.14296259700467048],[119,200,74,0.13686181185318344],[119,200,75,0.1309488704856874],[119,200,76,0.12523897178477375],[119,200,77,0.11973867222871375],[119,200,78,0.11444567646851116],[119,200,79,0.10934886733370727],[119,201,64,0.19203109105108512],[119,201,65,0.18977745255508546],[119,201,66,0.18749350385456087],[119,201,67,0.1834374672300715],[119,201,68,0.17686314809843626],[119,201,69,0.17025187280470708],[119,201,70,0.16365164131200893],[119,201,71,0.15710751423535696],[119,201,72,0.15066017065200477],[119,201,73,0.14434467218360839],[119,201,74,0.1381894378833714],[119,201,75,0.13221543414562045],[119,201,76,0.12643558353589027],[119,201,77,0.12085439611961381],[119,201,78,0.11546782655107282],[119,201,79,0.11026335987289267],[119,202,64,0.19152791590773421],[119,202,65,0.18904934654590466],[119,202,66,0.18653479810249118],[119,202,67,0.1839699966828504],[119,202,68,0.17831007371167967],[119,202,69,0.17164812002509175],[119,202,70,0.1650013907081283],[119,202,71,0.15841261124495057],[119,202,72,0.15191988791440994],[119,202,73,0.1455555987387226],[119,202,74,0.1393454845131691],[119,202,75,0.1333079437842008],[119,202,76,0.1274535353420786],[119,202,77,0.12178469149277653],[119,202,78,0.11629564507640681],[119,202,79,0.11097257290718701],[119,203,64,0.1910259879838532],[119,203,65,0.18830874004128914],[119,203,66,0.18555118640763177],[119,203,67,0.18273622200246928],[119,203,68,0.17955779354251897],[119,203,69,0.17285174850426993],[119,203,70,0.16616402804458913],[119,203,71,0.15953476667939462],[119,203,72,0.15299925866212713],[119,203,73,0.14658698697160594],[119,203,74,0.1403208401307322],[119,203,75,0.13421652034620402],[119,203,76,0.12828214617847944],[119,203,77,0.12251805267062699],[119,203,78,0.11691679158842924],[119,203,79,0.11146333415317883],[119,204,64,0.19053630054969167],[119,204,65,0.1875673620896942],[119,204,66,0.1845551024114055],[119,204,67,0.1814792232405218],[119,204,68,0.17829900963308515],[119,204,69,0.17386004002953528],[119,204,70,0.16713657326767922],[119,204,71,0.16047076725642687],[119,204,72,0.15389487492236234],[119,204,73,0.14743528074556964],[119,204,74,0.14111185318026997],[119,204,75,0.1349374741866983],[119,204,76,0.12891774870218334],[119,204,77,0.12305089662187266],[119,204,78,0.11732782960669422],[119,204,79,0.11173241478877645],[119,205,64,0.19006522474045331],[119,205,65,0.18683253043742912],[119,205,66,0.18355466316090263],[119,205,67,0.18020781241720493],[119,205,68,0.17675051975861994],[119,205,69,0.17313287596478524],[119,205,70,0.16792143668739073],[119,205,71,0.1612232816766138],[119,205,72,0.15460982252608169],[119,205,73,0.14810414487212545],[119,205,74,0.14172292797290023],[119,205,75,0.1354761041927165],[119,205,76,0.1293666822298622],[119,205,77,0.12339073627876539],[119,205,78,0.11753756309016589],[119,205,79,0.11179000867138283],[119,206,64,0.18961363285772784],[119,206,65,0.18610618302939624],[119,206,66,0.18255258994379445],[119,206,67,0.1789252558220733],[119,206,68,0.17518191358298985],[119,206,69,0.17127510290783837],[119,206,70,0.16716234109861464],[119,206,71,0.16180279202438635],[119,206,72,0.15515583521334508],[119,206,73,0.1486068477653974],[119,206,74,0.14216913694750538],[119,206,75,0.13584953590996535],[119,206,76,0.12964834831842242],[119,206,77,0.12355944074112506],[119,206,78,0.11757048438253072],[119,206,79,0.11166334756078733],[119,207,64,0.18917762820448283],[119,207,65,0.185385070864822],[119,207,66,0.18154599089118825],[119,207,67,0.1776287858284346],[119,207,68,0.17359032937310936],[119,207,69,0.1693857709609446],[119,207,70,0.16497592741617045],[119,207,71,0.16032789911948836],[119,207,72,0.15541544536488994],[119,207,73,0.14896523215917373],[119,207,74,0.14247448847151403],[119,207,75,0.13608419786891793],[119,207,76,0.12979182891764074],[119,207,77,0.12358895216181637],[119,207,78,0.1174615715162341],[119,207,79,0.11139058589508645],[119,208,64,0.1887544697153095],[119,208,65,0.1846655992407942],[119,208,66,0.18053059046376121],[119,208,67,0.17631373960840355],[119,208,68,0.1719710598983985],[119,208,69,0.16746045060521286],[119,208,70,0.162746194335927],[119,208,71,0.15779927111521994],[119,208,72,0.15259751719735318],[119,208,73,0.1471256827920563],[119,208,74,0.1413753873332094],[119,208,75,0.1353449710683866],[119,208,76,0.1290392418933527],[119,208,77,0.12246911649763405],[119,208,78,0.1156511550254644],[119,208,79,0.10860698858747543],[119,209,64,0.1883411895252407],[119,209,65,0.18394428539600538],[119,209,66,0.1795026561703551],[119,209,67,0.17497653230189836],[119,209,68,0.1703211178960983],[119,209,69,0.16549717591858656],[119,209,70,0.16047257550926597],[119,209,71,0.15522229201676496],[119,209,72,0.14972833999616106],[119,209,73,0.14397962586194307],[119,209,74,0.1379717193719336],[119,209,75,0.1317065432347217],[119,209,76,0.12519198024600692],[119,209,77,0.11844139746750812],[119,209,78,0.11147308706622532],[119,209,79,0.10430962352885104],[119,210,64,0.1879333141116932],[119,210,65,0.18321690809973004],[119,210,66,0.17845843772177408],[119,210,67,0.1736142278684127],[119,210,68,0.1686387707398418],[119,210,69,0.1634957735025587],[119,210,70,0.1581567606790062],[119,210,71,0.15260075305503665],[119,210,72,0.14681396893608578],[119,210,73,0.14078946703409492],[119,210,74,0.13452673071728663],[119,210,75,0.12803119343770905],[119,210,76,0.12131370522948956],[119,210,77,0.11438994024357085],[119,210,78,0.10727974535323923],[119,210,79,0.10000642992614686],[119,211,64,0.18752470753299735],[119,211,65,0.182478245995055],[119,211,66,0.17739379965282862],[119,211,67,0.17222406327603598],[119,211,68,0.16692295355605385],[119,211,69,0.16145716384839667],[119,211,70,0.15580188682898272],[119,211,71,0.14994017035620363],[119,211,72,0.1438623846366848],[119,211,73,0.13756565402501675],[119,211,74,0.13105325374781346],[119,211,75,0.12433397188991362],[119,211,76,0.11742143702240189],[119,211,77,0.11033341188831075],[119,211,78,0.10309105359355789],[119,211,79,0.09571814077534595],[119,212,64,0.1871075341107344],[119,212,65,0.18172193618943816],[119,212,66,0.1763039755968884],[119,212,67,0.17080309649902586],[119,212,68,0.16517280905311688],[119,212,69,0.15938279296528135],[119,212,70,0.15341186368481455],[119,212,71,0.14724700859245102],[119,212,72,0.14088262143661723],[119,212,73,0.13431972518178883],[119,212,74,0.1275651841113762],[119,212,75,0.12063090603869188],[119,212,76,0.11353303548437259],[119,212,77,0.10629113867729362],[119,212,78,0.09892738123011244],[119,212,79,0.09146569932782336],[119,213,64,0.18667234229895519],[119,213,65,0.18094045475494297],[119,213,66,0.17518344580444856],[119,213,67,0.16934797985534614],[119,213,68,0.16338735554486833],[119,213,69,0.15727419571136905],[119,213,70,0.1509908349747927],[119,213,71,0.1445280448935707],[119,213,72,0.13788404076844424],[119,213,73,0.13106350112317394],[119,213,74,0.12407660124227826],[119,213,75,0.11693806212024087],[119,213,76,0.1096662161439348],[119,213,77,0.10228209079078099],[119,213,78,0.09480851158136253],[119,213,79,0.08726922547482291],[119,214,64,0.18620827158548833],[119,214,65,0.18012522090386834],[119,214,66,0.17402593960221502],[119,214,67,0.16785486032276328],[119,214,68,0.1615652847599211],[119,214,69,0.1551326923818484],[119,214,70,0.14854277697628718],[119,214,71,0.14178987452402428],[119,214,72,0.13487575112496897],[119,214,73,0.1278084280399078],[119,214,74,0.12060104574352655],[119,214,75,0.11327076882166978],[119,214,76,0.10583773347563569],[119,214,77,0.09832403931929494],[119,214,78,0.09075278707331957],[119,214,79,0.08314716367307043],[119,215,64,0.18570338436727818],[119,215,65,0.1792668267042489],[119,215,66,0.17282456459032053],[119,215,67,0.16631940857610325],[119,215,68,0.15970489113573896],[119,215,69,0.15295922021934466],[119,215,70,0.1460712359884291],[119,215,71,0.1390385599496587],[119,215,72,0.13186617623181607],[119,215,73,0.12456507426565286],[119,215,74,0.1171509552478721],[119,215,75,0.10964300467139554],[119,215,76,0.10206273309690972],[119,215,77,0.09443288722652318],[119,215,78,0.08677643322185281],[119,215,79,0.07911561408454762],[119,216,64,0.1851451248315584],[119,216,65,0.1783553942921955],[119,216,66,0.17157206447073559],[119,216,67,0.16473697858720368],[119,216,68,0.15780413439934113],[119,216,69,0.15075430161933945],[119,216,70,0.14357920648374556],[119,216,71,0.13627942503481805],[119,216,72,0.12886277316210853],[119,216,73,0.12134278185560851],[119,216,74,0.11373726050079827],[119,216,75,0.10606695091126082],[119,216,76,0.09835427465139686],[119,216,77,0.09062217605155104],[119,216,78,0.08289306316352382],[119,216,79,0.07518784874486431],[119,217,64,0.18452090695630277],[119,217,65,0.17738106262311387],[119,217,66,0.17026120748872187],[119,217,67,0.16310289972208195],[119,217,68,0.15586083733420217],[119,217,69,0.1485181509060281],[119,217,70,0.1410691517993965],[119,217,71,0.13351699622386284],[119,217,72,0.12587190224750552],[119,217,73,0.11814947503305731],[119,217,74,0.1103691435363969],[119,217,75,0.10255271173552194],[119,217,76,0.09472302728050436],[119,217,77,0.0869027702701947],[119,217,78,0.07911336467295735],[119,217,79,0.07137401471559683],[119,218,64,0.18381883381523184],[119,218,65,0.1763346058798316],[119,218,66,0.16888530754955883],[119,218,67,0.1614129033550826],[119,218,68,0.15387302072347936],[119,218,69,0.14625092165022263],[119,218,70,0.13854316933066096],[119,218,71,0.13075509266884533],[119,218,72,0.12289885075319493],[119,218,73,0.11499162748272751],[119,218,74,0.10705395994049875],[119,218,75,0.09910820390952962],[119,218,76,0.0911771397162585],[119,218,77,0.08328272136931898],[119,218,78,0.07544497174088387],[119,218,79,0.06768102631330031],[119,219,64,0.1830285504331051],[119,219,65,0.17520818572101157],[119,219,66,0.16743888014322422],[119,219,67,0.15966368609573067],[119,219,68,0.15183937754159002],[119,219,69,0.14395309658902117],[119,219,70,0.13600330228371907],[119,219,71,0.12799706736576083],[119,219,72,0.11994801239113943],[119,219,73,0.11187439058221177],[119,219,74,0.10379732731291316],[119,219,75,0.09573921790290889],[119,219,76,0.08772228715424919],[119,219,77,0.07976731381670395],[119,219,78,0.07189252291775701],[119,219,79,0.06411264863983329],[119,220,64,0.1821422324843562],[119,220,65,0.17399623960628038],[119,220,66,0.16591843526863256],[119,220,67,0.15785361178915416],[119,220,68,0.14975988853790492],[119,220,69,0.1416260222855102],[119,220,70,0.13345200013020944],[119,220,71,0.1252462014539705],[119,220,72,0.117023224844512],[119,220,73,0.10880188476734837],[119,220,74,0.10060338215074606],[119,220,75,0.09244965278690595],[119,220,76,0.08436189718426114],[119,220,77,0.07635929523087466],[119,220,78,0.06845790875179832],[119,220,79,0.060669774763723344],[119,221,64,0.1811557131604888],[119,221,65,0.17269650747338905],[119,221,66,0.1643234095944942],[119,221,67,0.1559835545032895],[119,221,68,0.14763658141585934],[119,221,69,0.13927259073366924],[119,221,70,0.13089272998028242],[119,221,71,0.12250625391480788],[119,221,72,0.1141282675645089],[119,221,73,0.10577765632203964],[119,221,74,0.0974752074750059],[119,221,75,0.08924192725069444],[119,221,76,0.08109755716531354],[119,221,77,0.07305929316748129],[119,221,78,0.0651407107645374],[119,221,79,0.05735089901753006],[119,222,64,0.18006975054733312],[119,222,65,0.17131119906568548],[119,222,66,0.16265724012416571],[119,222,67,0.15405788475392285],[119,222,68,0.1454744358564033],[119,222,69,0.13689807016712863],[119,222,70,0.12833074115216273],[119,222,71,0.11978216897423148],[119,222,72,0.1112675221767079],[119,222,73,0.10280530196552536],[119,222,74,0.0944154336110801],[119,222,75,0.08611756918479359],[119,222,76,0.07792960552922562],[119,222,77,0.06986642103920972],[119,222,78,0.06193883450923032],[119,222,79,0.054152788979284806],[119,223,64,0.17889143784999945],[119,223,65,0.16984830421313762],[119,223,66,0.16092858164490953],[119,223,67,0.15208560123991152],[119,223,68,0.14328243666440343],[119,223,69,0.1345110873685479],[119,223,70,0.12577398526261435],[119,223,71,0.11708094356870791],[119,223,72,0.10844679789592486],[119,223,73,0.09988926367871052],[119,223,74,0.09142701460824094],[119,223,75,0.08307798635938313],[119,223,76,0.07485790958047764],[119,223,77,0.06677907577278083],[119,223,78,0.0588493393458757],[119,223,79,0.051071358795052056],[119,224,64,0.1776357587792505],[119,224,65,0.16832304835502054],[119,224,66,0.15915267023572555],[119,224,67,0.1500816103635613],[119,224,68,0.14107477732819546],[119,224,69,0.13212476379684412],[119,224,70,0.12323419419180637],[119,224,71,0.11441265727086879],[119,224,72,0.10567432439354116],[119,224,73,0.09703579626309339],[119,224,74,0.08851418284132556],[119,224,75,0.08012542078831487],[119,224,76,0.07188283242707864],[119,224,77,0.06379592987625736],[119,224,78,0.05586946763774775],[119,224,79,0.04810274657113846],[119,225,64,0.17632729036593972],[119,225,65,0.1667594955551874],[119,225,66,0.15735283508032238],[119,225,67,0.14806815579306046],[119,225,68,0.13887221627388455],[119,225,69,0.1297580078502128],[119,225,70,0.12072811828578785],[119,225,71,0.11179166708967267],[119,225,72,0.10296191458728961],[119,225,73,0.09425411015885196],[119,225,74,0.08568358437676954],[119,225,75,0.0772640894135858],[119,225,76,0.06900639172482823],[119,225,77,0.06091712064005336],[119,225,78,0.05299787612570692],[119,225,79,0.04524459861572876],[119,226,64,0.17500205539744787],[119,226,65,0.16519230119891568],[119,226,66,0.1555621607802753],[119,226,67,0.1460764002825814],[119,226,68,0.13670358806476768],[119,226,69,0.12743696556142975],[119,226,70,0.11827892714766079],[119,226,71,0.10923796955644174],[119,226,72,0.1003262998281107],[119,226,73,0.09155769206033075],[119,226,74,0.0829455977028506],[119,226,75,0.07450151376750663],[119,226,76,0.06623361294338535],[119,226,77,0.058145639223237684],[119,226,78,0.0502360722655983],[119,226,79,0.04249756333828702],[119,227,64,0.1737119460180758],[119,227,65,0.16367183468281887],[119,227,66,0.15382924601549172],[119,227,67,0.14415280679836415],[119,227,68,0.13461281396678318],[119,227,69,0.1252026547657833],[119,227,70,0.11592444225472959],[119,227,71,0.1067859833528869],[119,227,72,0.09779838859979514],[119,227,73,0.08897393962212587],[119,227,74,0.08032421905151768],[119,227,75,0.07185850725118019],[119,227,76,0.06358244981616072],[119,227,77,0.05549699941653842],[119,227,78,0.047597635160161966],[119,227,79,0.0398738622625656],[119,228,64,0.17252554632369932],[119,228,65,0.16226826711229142],[119,228,66,0.15222529795210604],[119,228,67,0.14236916235482747],[119,228,68,0.1326718566498029],[119,228,69,0.12312680537038977],[119,228,70,0.11373574254088722],[119,228,71,0.10450570729603573],[119,228,72,0.09544666119634009],[119,228,73,0.08656937102278421],[119,228,74,0.07788356177739647],[119,228,75,0.0693963442181332],[119,228,76,0.06111092085282409],[119,228,77,0.05302557391109437],[119,228,78,0.0451329384110134],[119,228,79,0.037419563039529286],[119,229,64,0.17149982162193783],[119,229,65,0.16104079897167123],[119,229,66,0.15081120314873447],[119,229,67,0.14078760314307476],[119,229,68,0.13094373425876296],[119,229,69,0.12127294934139575],[119,229,70,0.11177648995203031],[119,229,71,0.10246052511874282],[119,229,72,0.09333378671230119],[119,229,73,0.08440547638478042],[119,229,74,0.07568344875257658],[119,229,75,0.06717267509837578],[119,229,76,0.05887399145455887],[119,229,77,0.0507831345168575],[119,229,78,0.04289006842778894],[119,229,79,0.035178605065311064],[119,230,64,0.17067454403147156],[119,230,65,0.16003089123263867],[119,230,66,0.1496296855928119],[119,230,67,0.13945174939143218],[119,230,68,0.12947265072690756],[119,230,69,0.1196855824599676],[119,230,70,0.1100911861771271],[119,230,71,0.10069465446430884],[119,230,72,0.09150339875816683],[119,230,73,0.0825249927167457],[119,230,74,0.07376539571251818],[119,230,75,0.06522746063817869],[119,230,76,0.05690972979818039],[119,230,77,0.04880552224063386],[119,230,78,0.04090231547079553],[119,230,79,0.0331814240798642],[119,231,64,0.17007418974764535],[119,231,65,0.15926415779981856],[119,231,66,0.14870719425266166],[119,231,67,0.1383885981246315],[119,231,68,0.12828590585125665],[119,231,69,0.11839209945468367],[119,231,70,0.10870713629899349],[119,231,71,0.09923513851254749],[119,231,72,0.0899821108243205],[119,231,73,0.08095393542693892],[119,231,74,0.07215464835337589],[119,231,75,0.06358500143939924],[119,231,76,0.055241313524795804],[119,231,77,0.04711461412688706],[119,231,78,0.039190082405919396],[119,231,79,0.03144678383445065],[119,232,64,0.1697097402417835],[119,232,65,0.15875216179311513],[119,232,66,0.14805569598060753],[119,232,67,0.1376103240914419],[119,232,68,0.12739571779046496],[119,232,69,0.11740464766402503],[119,232,70,0.10763633923358037],[119,232,71,0.0980937749818188],[119,232,72,0.08878148200815716],[119,232,73,0.07970359556086136],[119,232,74,0.0708622027765716],[119,232,75,0.062255970544884534],[119,232,76,0.05387906099885779],[119,232,77,0.045720337715573864],[119,232,78,0.037762865300319776],[119,232,79,0.02998370462431106],[119,233,64,0.1695803846405063],[119,233,65,0.15849411256683252],[119,233,66,0.14767437037809522],[119,233,67,0.13711598520957943],[119,233,68,0.12680095408989636],[119,233,69,0.11672189511981887],[119,233,70,0.10687730067769753],[119,233,71,0.09726897811206721],[119,233,72,0.08789992866296523],[119,233,73,0.07877249835486763],[119,233,74,0.06988680499505408],[119,233,75,0.06123944500392088],[119,233,76,0.05282248339336459],[119,233,77,0.04462272979955088],[119,233,78,0.03662130307319661],[119,233,79,0.02879348653469568],[119,234,64,0.16967512225347609],[119,234,65,0.15847846249070202],[119,234,66,0.14755120572260677],[119,234,67,0.13689313171511092],[119,234,68,0.12648877052308308],[119,234,69,0.11633071246266197],[119,234,70,0.10641676812108788],[119,234,71,0.09674757335378337],[119,234,72,0.08732458188596798],[119,234,73,0.0781483232370796],[119,234,74,0.0692169298647458],[119,234,75,0.060524937027731034],[119,234,76,0.052062358467441595],[119,234,77,0.04381404060880248],[119,234,78,0.0357592975896276],[119,234,79,0.027871829043664635],[119,235,64,0.1699742640858325],[119,235,65,0.1586844023903141],[119,235,66,0.1476644949323867],[119,235,67,0.1369193180821483],[119,235,68,0.12643615691797003],[119,235,69,0.11620776797892408],[119,235,70,0.10623138735575102],[119,235,71,0.09650652436258243],[119,235,72,0.08703309063518397],[119,235,73,0.077809785276664],[119,235,74,0.06883273967216143],[119,235,75,0.06009442521069483],[119,235,76,0.05158282676705847],[119,235,77,0.04328088441295095],[119,235,78,0.03516620545030988],[119,235,79,0.027211048491594163],[119,236,64,0.17045083204297856],[119,236,65,0.1590832544203668],[119,236,66,0.14798423042445255],[119,236,67,0.13716351665975313],[119,236,68,0.1266113890170986],[119,236,69,0.11632103492761911],[119,236,70,0.1062892797906573],[119,236,71,0.09651459176989893],[119,236,72,0.08699537013047895],[119,236,73,0.07772847794277762],[119,236,74,0.06870802246393534],[119,236,75,0.05992438614246999],[119,236,76,0.051363510824383264],[119,236,77,0.04300643737424855],[119,236,78,0.03482910256771832],[119,236,79,0.02680239476307706],[119,237,64,0.1710718285912355],[119,237,65,0.1596397348672087],[119,237,66,0.14847337013395284],[119,237,67,0.13758740509807105],[119,237,68,0.126975358282775],[119,237,69,0.11663118295008719],[119,237,70,0.10655151229509688],[119,237,71,0.09673389543510574],[119,237,72,0.08717526727950303],[119,237,73,0.0778706490026454],[119,237,74,0.06881208208865355],[119,237,75,0.0599877985723504],[119,237,76,0.05138162975518505],[119,237,77,0.04297265533220209],[119,237,78,0.034735094531560345],[119,237,79,0.0266384405419346],[119,238,64,0.17179393814618885],[119,238,65,0.16030757574986965],[119,238,66,0.14908339622550743],[119,238,67,0.13814088714845452],[119,238,68,0.1274770830005346],[119,238,69,0.11708710670979365],[119,238,70,0.10696766882969094],[119,238,71,0.09711555214127224],[119,238,72,0.08752628464083284],[119,238,73,0.07819302770555242],[119,238,74,0.06910568203635872],[119,238,75,0.060250213656234654],[119,238,76,0.051608201921158],[119,238,77,0.043156611182963975],[119,238,78,0.034867787434123276],[119,238,79,0.026709680963684517],[119,239,64,0.1725548379051086],[119,239,65,0.16102165785572564],[119,239,66,0.1497471259791091],[119,239,67,0.13875542504268365],[119,239,68,0.12804739766064271],[119,239,69,0.11761980332526623],[119,239,70,0.10746974848994927],[119,239,71,0.09759343380799584],[119,239,72,0.08798505028871474],[119,239,73,0.07863587404844087],[119,239,74,0.06953356186359665],[119,239,75,0.06066164943748899],[119,239,76,0.051999253997921095],[119,239,77,0.043520982551743824],[119,239,78,0.03519704684056548],[119,239,79,0.026993585768628987],[119,240,64,0.17328068546974273],[119,240,65,0.16170843841383895],[119,240,66,0.15039149554505202],[119,240,67,0.13935852795904657],[119,240,68,0.12861445234319152],[119,240,69,0.11815816968921025],[119,240,70,0.10798755218740394],[119,240,71,0.09809846098843034],[119,240,72,0.08848388108232792],[119,240,73,0.07913323753107847],[119,240,74,0.07003189485533647],[119,240,75,0.061160841107417416],[119,240,76,0.05249655789566996],[119,240,77,0.04401107736269633],[119,240,78,0.03567222686670351],[119,240,79,0.0274440618709869],[119,241,64,0.17390846310454083],[119,241,65,0.16230561930097995],[119,241,66,0.1509548948948154],[119,241,67,0.13988913766765676],[119,241,68,0.1291175533256436],[119,241,69,0.11864170365412972],[119,241,70,0.10846063617695074],[119,241,71,0.09857017340429577],[119,241,72,0.08896229641827566],[119,241,73,0.07962469238300289],[119,241,74,0.0705404673678832],[119,241,75,0.06168802563164533],[119,241,76,0.053041116275865226],[119,241,77,0.044569047942932226],[119,241,78,0.03623707200952206],[119,241,79,0.028006934511947607],[119,242,64,0.17438970628066042],[119,242,65,0.16276501695074144],[119,242,66,0.15138933436357202],[119,242,67,0.14029926886516197],[119,242,68,0.12950846657535672],[119,242,69,0.11902166305874025],[119,242,70,0.10883951492255872],[119,242,71,0.0989581546235846],[119,242,72,0.08936882688638334],[119,242,73,0.080057671872811],[119,242,74,0.0710056560827819],[119,242,75,0.0621886517523389],[119,242,76,0.053577665304286114],[119,242,77,0.0451392152015134],[119,242,78,0.03683585935843925],[119,242,79,0.028626872080717618],[119,243,64,0.17468912417456633],[119,243,65,0.1630512480884758],[119,243,66,0.15165920812188605],[119,243,67,0.14055286762560193],[119,243,68,0.12975039144045442],[119,243,69,0.11926017586579687],[119,243,70,0.10908492872844897],[119,243,71,0.0992214771312215],[119,243,72,0.08966065482710059],[119,243,73,0.08038731983920928],[119,243,74,0.07138050290961635],[119,243,75,0.06261368717235286],[119,243,76,0.05405521926234963],[119,243,77,0.04566885189467696],[119,243,78,0.03741441778208146],[119,243,79,0.029248634602138276],[119,244,64,0.17478324126509623],[119,244,65,0.16314043377790508],[119,244,66,0.15174007257096883],[119,244,67,0.14062468008033616],[119,244,68,0.12981693855416743],[119,244,69,0.11932934764082632],[119,244,70,0.10916710140252037],[119,244,71,0.09932813005612147],[119,244,72,0.08980323042201874],[119,244,73,0.08057631115773063],[119,244,74,0.07162475298207405],[119,244,75,0.06291988393275741],[119,244,76,0.054427569542226314],[119,244,77,0.046108917665533794],[119,244,78,0.03792109755439884],[119,244,79,0.029818272642036212],[119,245,64,0.1746590602051899],[119,245,65,0.16301892188982728],[119,245,66,0.15161743969631541],[119,245,67,0.14049913126385757],[119,245,68,0.12969111176923057],[119,245,69,0.11921036605479635],[119,245,70,0.10906498749634119],[119,245,71,0.09925442896228047],[119,245,72,0.08976986259669692],[119,245,73,0.08059464030736913],[119,245,74,0.07170485481441613],[119,245,75,0.06307000097496333],[119,245,76,0.05465373696468809],[119,245,77,0.046414744770178255],[119,245,78,0.03830768933106844],[119,245,79,0.030284275566286767],[119,246,64,0.1743127462670483],[119,246,65,0.16268202821939462],[119,246,66,0.1512855855229781],[119,246,67,0.14016921416180947],[119,246,68,0.12936429402784877],[119,246,69,0.11889260217010995],[119,246,70,0.10876550872761968],[119,246,71,0.09898440715617361],[119,246,72,0.0895412840406488],[119,246,73,0.08041937720627278],[119,246,74,0.07159392166810905],[119,246,75,0.06303298283792681],[119,246,76,0.05469837629391708],[119,246,77,0.046546673313241124],[119,246,78,0.03853029127435374],[119,246,79,0.03059866795365778],[119,247,64,0.1737483337880744],[119,247,65,0.16213279660079077],[119,247,66,0.1507463739307496],[119,247,67,0.1396353891040727],[119,247,68,0.12883523716928635],[119,247,69,0.11837270835380363],[119,247,70,0.10826277926122965],[119,247,71,0.09850918801620832],[119,247,72,0.08910518968378672],[119,247,73,0.08003438949892545],[119,247,74,0.07127165316871592],[119,247,75,0.06278409340687054],[119,247,76,0.05453213176407847],[119,247,77,0.04647063473062848],[119,247,78,0.03855012301338594],[119,247,79,0.0307180528258695],[119,248,64,0.17297645517870347],[119,248,65,0.1613807784959786],[119,248,66,0.15000809620842795],[119,248,67,0.13890449375876657],[119,248,68,0.12810905578079212],[119,248,69,0.11765371275417229],[119,248,70,0.10755731960346557],[119,248,71,0.09782633791222634],[119,248,72,0.0884557480119391],[119,248,73,0.07943003049920053],[119,248,74,0.07072421621154631],[119,248,75,0.06230500360301053],[119,248,76,0.054131942378787],[119,248,77,0.04615868217589707],[119,248,78,0.03833428501759235],[119,248,79,0.030604600221290003],[119,249,64,0.1720130931924551],[119,249,65,0.1604408326679253],[119,249,66,0.14908432685355572],[119,249,67,0.1379886641029525],[119,249,68,0.1271962253090124],[119,249,69,0.11674411037795566],[119,249,70,0.10665525895209528],[119,249,71,0.09693919935512525],[119,249,72,0.08759308465741254],[119,249,73,0.07860279202550362],[119,249,74,0.0699440842023218],[119,249,75,0.06158383188524441],[119,249,76,0.05348129569800986],[119,249,77,0.045589466390821023],[119,249,78,0.037856461855054285],[119,249,79,0.030226979502532166],[119,250,64,0.1708783573031482],[119,250,65,0.15933194568826395],[119,250,66,0.1479927962575862],[119,250,67,0.1369042668728489],[119,250,68,0.12611158476850137],[119,250,69,0.1156569509151694],[119,250,70,0.10556752594255725],[119,250,71,0.0958562040992528],[119,250,72,0.08652273776479237],[119,250,73,0.07755492140692914],[119,250,74,0.06892983369733104],[119,250,75,0.060615136425837546],[119,250,76,0.052570428788690136],[119,250,77,0.04474865557140603],[119,250,78,0.03709756770611512],[119,250,79,0.029561233654069957],[119,251,64,0.16959528518283987],[119,251,65,0.1580760741734726],[119,251,66,0.1467542810551584],[119,251,67,0.13567084412943897],[119,251,68,0.12487334451054638],[119,251,69,0.11440892357686654],[119,251,70,0.10430902783775309],[119,251,71,0.09459016601300003],[119,251,72,0.08525508470708758],[119,251,73,0.07629400199285521],[119,251,74,0.06768589753624529],[119,251,75,0.05939985782295166],[119,251,76,0.05139647498560393],[119,251,77,0.04362929767809655],[119,251,78,0.03604633240574663],[119,251,79,0.028591593693955204],[119,252,64,0.16818867042793506],[119,252,65,0.15669700979362028],[119,252,66,0.14539151306143525],[119,252,67,0.13431007071591675],[119,252,68,0.12350209965083975],[119,252,69,0.11301943933935066],[119,252,70,0.10289781832719894],[119,252,71,0.09315755363793699],[119,252,72,0.08380473981503672],[119,252,73,0.07483249656496366],[119,252,74,0.06622227360231564],[119,252,75,0.057945211225791576],[119,252,76,0.04996355509010972],[119,252,77,0.04223212358564648],[119,252,78,0.03469982619843936],[119,252,79,0.027311231196105172],[119,253,64,0.1666839178381892],[119,253,65,0.15521926825178586],[119,253,66,0.1439281078715736],[119,253,67,0.13284472552994359],[119,253,68,0.12201984989720038],[119,253,69,0.11150971112540127],[119,253,70,0.10135425422982887],[119,253,71,0.09157774247316243],[119,253,72,0.08218992288234256],[119,253,73,0.07318725312986805],[119,253,74,0.06455418839877597],[119,253,75,0.056264526773059674],[119,253,76,0.04828281162645633],[119,253,77,0.04056578942401526],[119,253,78,0.033063921306606105],[119,253,79,0.025722946796364807],[119,254,64,0.1651059277145353],[119,254,65,0.1536670035909825],[119,254,66,0.14238751435206654],[119,254,67,0.13129767768697279],[119,254,68,0.12044902666952714],[119,254,69,0.10990183260009012],[119,254,70,0.09970014153479986],[119,254,71,0.08987224715072253],[119,254,72,0.08043179832339654],[119,254,73,0.07137897266412646],[119,254,74,0.06270171469881662],[119,254,75,0.05437703728422392],[119,254,76,0.046372384780121484],[119,254,77,0.038647056428711496],[119,254,78,0.031153688339683332],[119,254,79,0.023839792438481312],[119,255,64,0.1634780108063419],[119,255,65,0.15206294934846026],[119,255,66,0.14079198641463578],[119,255,67,0.129690888810817],[119,255,68,0.11881152856346466],[119,255,69,0.10821785641593915],[119,255,70,0.09795787136664755],[119,255,71,0.08806393381061833],[119,255,72,0.07855378498850589],[119,255,73,0.06943163849236776],[119,255,74,0.060689342610564946],[119,255,75,0.05230761219705615],[119,255,76,0.044257328661587464],[119,255,77,0.0365009065985361],[119,255,78,0.0289937255075492],[119,255,79,0.021685625006533978],[119,256,64,0.16182083570578482],[119,256,65,0.1504273882436309],[119,256,66,0.1391615786286869],[119,256,67,0.12804443285343803],[119,256,68,0.11712776637636657],[119,256,69,0.10647887290915929],[119,256,70,0.09614954662492883],[119,256,71,0.08617621314012693],[119,256,72,0.07658083678499349],[119,256,73,0.06737190710401825],[119,256,74,0.05854550349870633],[119,256,75,0.05008643681466837],[119,256,76,0.041969466572762223],[119,256,77,0.03416059245149951],[119,256,78,0.02661841854935458],[119,256,79,0.019295588888956532],[119,257,64,0.16015141704925154],[119,257,65,0.1487771578342195],[119,257,66,0.1375131722215611],[119,257,67,0.1263755391543642],[119,257,68,0.11541572264075113],[119,257,69,0.10470409354050891],[119,257,70,0.09429610308708619],[119,257,71,0.08423221753440108],[119,257,72,0.07453869742132005],[119,257,73,0.06522846378957624],[119,257,74,0.05630205041569605],[119,257,75,0.04774864099289127],[119,257,76,0.03954719008184658],[119,257,77,0.03166762654178302],[119,257,78,0.02407213805931272],[119,257,79,0.016716535310515552],[119,258,64,0.15848243062108744],[119,258,65,0.1471250281260299],[119,258,66,0.13585991950123122],[119,258,67,0.12469809899255963],[119,258,68,0.11369051034477246],[119,258,69,0.1029104502331667],[119,258,70,0.09241693713048958],[119,258,71,0.08225444501753025],[119,258,72,0.07245354901070708],[119,258,73,0.06303166559470036],[119,258,74,0.05399388667403618],[119,258,75,0.04533390651848196],[119,258,76,0.03703504054527154],[119,258,77,0.029071334758426645],[119,258,78,0.0214087645561388],[119,258,79,0.014006521519427195],[119,259,64,0.15682774345330727],[119,259,65,0.14548631394159114],[119,259,66,0.13421897154092718],[119,259,67,0.12303150006784072],[119,259,68,0.11197413052785303],[119,259,69,0.10112286802916043],[119,259,70,0.09054012060078935],[119,259,71,0.08027423403011841],[119,259,72,0.0703600040068193],[119,259,73,0.06081928996171562],[119,259,74,0.051661729965568996],[119,259,75,0.04288555590012896],[119,259,76,0.03447850796784832],[119,259,77,0.02641884746946501],[119,259,78,0.018676466654581232],[119,259,79,0.011214094337606707],[119,260,64,0.15520364918742696],[119,260,65,0.14387972759514117],[119,260,66,0.1326118789061285],[119,260,67,0.12140054328514566],[119,260,68,0.11029488323243061],[119,260,69,0.09937314236003822],[119,260,70,0.08870071654716416],[119,260,71,0.07832949491427527],[119,260,72,0.06829823878606633],[119,260,73,0.05863306861533633],[119,260,74,0.04934805838191761],[119,260,75,0.04044593681570201],[119,260,76,0.03191889463398678],[119,260,77,0.023749496832863346],[119,260,78,0.015911698934611286],[119,260,79,0.00837196596633011],[119,261,64,0.15362318085512336],[119,261,65,0.14232036512477453],[119,261,66,0.13105617064498146],[119,261,67,0.11982558946121465],[119,261,68,0.1086762394557124],[119,261,69,0.09768792223606554],[119,261,70,0.08692843108176512],[119,261,71,0.07645270593991596],[119,261,72,0.06630307974798019],[119,261,73,0.0565096379540287],[119,261,74,0.0470906908960311],[119,261,75,0.03805335852582853],[119,261,76,0.029394266793252202],[119,261,77,0.021100354843548615],[119,261,78,0.013149792031249205],[119,261,79,0.005513003614263941],[119,262,64,0.15209573819737762],[119,262,65,0.14081930396985895],[119,262,66,0.1295649153289055],[119,262,67,0.11832207021979607],[119,262,68,0.10713629104770603],[119,262,69,0.09608809639357432],[119,262,70,0.0852469395656834],[119,262,71,0.07467018832951554],[119,262,72,0.06440323962942857],[119,262,73,0.05447975155785027],[119,262,74,0.044921992379274384],[119,262,75,0.035741306231487927],[119,262,76,0.026938694946787682],[119,262,77,0.018505515263579197],[119,262,78,0.01042429053818268],[119,262,79,0.0026696359162542965],[119,263,64,0.15062729323573182],[119,263,65,0.13938383620128336],[119,263,66,0.12814697523835383],[119,263,67,0.11690074775191373],[119,263,68,0.1056879948205855],[119,263,69,0.09458899773322114],[119,263,70,0.08367402585057487],[119,263,71,0.07300215439849063],[119,263,72,0.06262124926479447],[119,263,73,0.05256807179925799],[119,263,74,0.04286850356789609],[119,263,75,0.03353789082115218],[119,263,76,0.024581508248386334],[119,263,77,0.01599514141064348],[119,263,78,0.007765787074441797],[119,263,79,-1.2752949035627157E-4],[119,264,64,0.14922091096445544],[119,264,65,0.13801801576378256],[119,264,66,0.12680757082269364],[119,264,67,0.11556827883458255],[119,264,68,0.10433971270744925],[119,264,69,0.09320089328016155],[119,264,70,0.08222199416307316],[119,264,71,0.07146301316303982],[119,264,72,0.060973629475969945],[119,264,73,0.050793182285700934],[119,264,74,0.040950770862584814],[119,264,75,0.03146547605882884],[119,264,76,0.02234670290518862],[119,264,77,0.0135946438272137],[119,264,78,0.005200861823343124],[119,264,79,-0.002851007219856239],[119,265,64,0.14787758697277253],[119,265,65,0.1367235214292012],[119,265,66,0.12554915700886454],[119,265,67,0.11432808455966607],[119,265,68,0.10309604931095784],[119,265,69,0.09192976091299608],[119,265,70,0.08089835480721472],[119,265,71,0.07006193454433261],[119,265,72,0.059471304202136435],[119,265,73,0.049167822253600196],[119,265,74,0.03918337711902235],[119,265,75,0.029540484437154672],[119,265,76,0.020252505894754504],[119,265,77,0.011323989263778091],[119,265,78,0.0027511291149343317],[119,265,79,-0.005060069991034553],[119,266,64,0.14659740335731805],[119,266,65,0.13550083672019286],[119,266,66,0.12437261250743117],[119,266,67,0.1131815268141273],[119,266,68,0.10195898778897199],[119,266,69,0.09077835373312593],[119,266,70,0.0797067845037781],[119,266,71,0.06880367296080718],[119,266,72,0.058120255661307095],[119,266,73,0.04769934373397025],[119,266,74,0.037575174305799076],[119,266,75,0.02777338265474655],[119,266,76,0.01831109506542986],[119,266,77,0.009197142173122787],[119,266,78,0.003724693780841612],[119,266,79,0.0018074375927410874],[119,267,64,0.1453810038630884],[119,267,65,0.13435074765176247],[119,267,66,0.1232787428657847],[119,267,67,0.112129392169392],[119,267,68,0.10092932465737225],[119,267,69,0.08974755259676034],[119,267,70,0.07864836185412488],[119,267,71,0.06768965078727622],[119,267,72,0.05692242204056145],[119,267,73,0.046390392032297396],[119,267,74,0.036129718644860434],[119,267,75,0.026168847430991342],[119,267,76,0.0165284764545256],[119,267,77,0.0135148726540725],[119,267,78,0.011203122273256573],[119,267,79,0.008984064778710974],[119,268,64,0.14423138879668196],[119,268,65,0.133276158753572],[119,268,66,0.12227009764690362],[119,268,67,0.11117368348124063],[119,268,68,0.10000840375008299],[119,268,69,0.08883800700853865],[119,268,70,0.07772307811011651],[119,268,71,0.06671930187080044],[119,268,72,0.05587683794007105],[119,268,73,0.04523980980963529],[119,268,74,0.034845908609105844],[119,268,75,0.02709318638973548],[119,268,76,0.024316994170037496],[119,268,77,0.021614114623713206],[119,268,78,0.018993393630631038],[119,268,79,0.016457187024263256],[119,269,64,0.1431560298879599],[119,269,65,0.1322842274783893],[119,269,66,0.12135310176758696],[119,269,67,0.11031971917187097],[119,269,68,0.09920014926219772],[119,269,69,0.08805206427782614],[119,269,70,0.07693162315021995],[119,269,71,0.06589167502811788],[119,269,72,0.05498101754661288],[119,269,73,0.04424376481738912],[119,269,74,0.039171976978766086],[119,269,75,0.036080071402826035],[119,269,76,0.033020791832902414],[119,269,77,0.03001377013497574],[119,269,78,0.027072651469343702],[119,269,79,0.02420513288864136],[119,270,64,0.1399398078450654],[119,270,65,0.13071057751829163],[119,270,66,0.12054050071146816],[119,270,67,0.1095785398615514],[119,270,68,0.09851339751298745],[119,270,69,0.08739598656514855],[119,270,70,0.07627744630388417],[119,270,71,0.06520729720663197],[119,270,72,0.0553111333008844],[119,270,73,0.05203785273269286],[119,270,74,0.04870726075519485],[119,270,75,0.045352837320095],[119,270,76,0.04200337877936684],[119,270,77,0.038682672674187436],[119,270,78,0.035409278751550755],[119,270,79,0.032196416248672234],[119,271,64,0.13464507464404019],[119,271,65,0.12534627511135468],[119,271,66,0.11622946462553667],[119,271,67,0.10735284972512191],[119,271,68,0.09794253521360066],[119,271,69,0.08686183837599612],[119,271,70,0.07575017898269754],[119,271,71,0.0688757310777107],[119,271,72,0.06553352026893677],[119,271,73,0.062060269099731516],[119,271,74,0.05849461727248852],[119,271,75,0.05487221273477076],[119,271,76,0.05122513606433622],[119,271,77,0.047581426185787985],[119,271,78,0.04396470781068483],[119,271,79,0.040393920820932294],[119,272,64,0.12918613400174492],[119,272,65,0.11981127423352317],[119,272,66,0.1106337004886607],[119,272,67,0.10171360611320993],[119,272,68,0.09306242864824346],[119,272,69,0.08465497147938413],[119,272,70,0.08271491050920231],[119,272,71,0.0794227452297332],[119,272,72,0.0759224773531143],[119,272,73,0.07225436781665212],[119,272,74,0.06845780499108789],[119,272,75,0.06457048718894466],[119,272,76,0.060627700938766904],[119,272,77,0.05666169577106167],[119,272,78,0.05270115609065936],[119,272,79,0.04877077054066137],[119,273,64,0.12367328626962189],[119,273,65,0.11421650506997665],[119,273,66,0.1049717054161686],[119,273,67,0.09600035853370262],[119,273,68,0.08987035148675236],[119,273,69,0.08963877239380824],[119,273,70,0.0894313273174394],[119,273,71,0.08921885911968133],[119,273,72,0.08637835177685557],[119,273,73,0.08252803495248831],[119,273,74,0.07851336587365833],[119,273,75,0.07437386462696267],[119,273,76,0.07014780478644844],[119,273,77,0.06587144045324728],[119,273,78,0.061578325710517266],[119,273,79,0.05729872708354559],[119,274,64,0.11820487579778916],[119,274,65,0.1086612577045204],[119,274,66,0.09934316268066534],[119,274,67,0.09606941321385278],[119,274,68,0.09564396484686838],[119,274,69,0.0952958075938768],[119,274,70,0.09500570723973968],[119,274,71,0.09474905631739095],[119,274,72,0.09449718226233135],[119,274,73,0.09279353773275416],[119,274,74,0.0885806750721103],[119,274,75,0.08420977048257362],[119,274,76,0.07972175012072198],[119,274,77,0.07515652724550866],[119,274,78,0.07055217696783513],[119,274,79,0.06594419957299918],[119,275,64,0.11286774868380298],[119,275,65,0.1035934043642937],[119,275,66,0.1028256991179947],[119,275,67,0.10213958441324048],[119,275,68,0.10155934404671298],[119,275,69,0.1010810262413495],[119,275,70,0.1006917230192574],[119,275,71,0.10037146677069356],[119,275,72,0.10009464170245744],[119,275,73,0.09983131760750401],[119,275,74,0.09858235293607223],[119,275,75,0.09400733220716109],[119,275,76,0.08928594901772754],[119,275,77,0.08446131602308246],[119,275,78,0.07957554766822023],[119,275,79,0.07466888619656543],[119,276,64,0.11122319675475051],[119,276,65,0.11023516697405494],[119,276,66,0.10928030782617848],[119,276,67,0.10841603467086203],[119,276,68,0.10767100985655646],[119,276,69,0.10704899546165395],[119,276,70,0.10654327551601098],[119,276,71,0.10613852776787791],[119,276,72,0.10581232500003447],[119,276,73,0.10553656358215371],[119,276,74,0.10527881742360433],[119,276,75,0.10369799008444337],[119,276,76,0.09877759172362603],[119,276,77,0.09372937425222332],[119,276,78,0.08859890179365179],[119,276,79,0.08343054445176995],[119,277,64,0.11831948219803434],[119,277,65,0.11713405947218392],[119,277,66,0.11598963480757198],[119,277,67,0.11392263927651763],[119,277,68,0.11218100807730008],[119,277,69,0.11112068288188959],[119,277,70,0.11068711598050202],[119,277,71,0.11080892686709715],[119,277,72,0.11139638141930519],[119,277,73,0.11137561673758237],[119,277,74,0.11110956564924056],[119,277,75,0.11085973751233907],[119,277,76,0.10813544534430929],[119,277,77,0.10290432136219722],[119,277,78,0.09757120718186663],[119,277,79,0.09218388958874568],[119,278,64,0.12168000931829565],[119,278,65,0.11774317629722253],[119,278,66,0.11457241652685946],[119,278,67,0.11216570545619214],[119,278,68,0.11050354081179342],[119,278,69,0.10954762316830541],[119,278,70,0.10923974310159529],[119,278,71,0.10950370067557347],[119,278,72,0.1102436737364273],[119,278,73,0.11134263667698185],[119,278,74,0.1126918702017895],[119,278,75,0.11420565434258712],[119,278,76,0.11581397641213709],[119,278,77,0.11193080246478568],[119,278,78,0.10644094181618145],[119,278,79,0.100881620752533],[119,279,64,0.12020518777135705],[119,279,65,0.11625664369217426],[119,279,66,0.11310252042815527],[119,279,67,0.11074021445950782],[119,279,68,0.10914879698090751],[119,279,69,0.10828759712215036],[119,279,70,0.1080949892325313],[119,279,71,0.10849023297925586],[119,279,72,0.10937172997034628],[119,279,73,0.11061585212405295],[119,279,74,0.11211112032960097],[119,279,75,0.11377131870736135],[119,279,76,0.1155257200016358],[119,279,77,0.11731724879804056],[119,279,78,0.11515722826481324],[119,279,79,0.10947557427561128],[119,280,64,0.11908395682065742],[119,280,65,0.11511935005126028],[119,280,66,0.11197585053269038],[119,280,67,0.10965042179725448],[119,280,68,0.1081208932782049],[119,280,69,0.10734444651389091],[119,280,70,0.10725630263628316],[119,280,71,0.10777148282178067],[119,280,72,0.10878295281690514],[119,280,73,0.11016083142411626],[119,280,74,0.11179099428612],[119,280,75,0.11358671505260814],[119,280,76,0.11547654177039612],[119,280,77,0.11740243815522888],[119,280,78,0.11931822523666624],[119,280,79,0.11791800353085202],[119,281,64,0.11831779467967146],[119,281,65,0.11433315951680251],[119,281,66,0.11119450887161797],[119,281,67,0.10889852164756758],[119,281,68,0.10742197654515939],[119,281,69,0.10672014194466634],[119,281,70,0.10672536404069749],[119,281,71,0.10734874779661685],[119,281,72,0.108478189320099],[119,281,73,0.10997793355155377],[119,281,74,0.11173134381022348],[119,281,75,0.11365117934264135],[119,281,76,0.11566526391945631],[119,281,77,0.11771460052533106],[119,281,78,0.11975180343356384],[119,281,79,0.12173968414119596],[119,282,64,0.11790598580754164],[119,282,65,0.11389779129625477],[119,282,66,0.11075851444256879],[119,282,67,0.1084846987766015],[119,282,68,0.1070522678923666],[119,282,69,0.10641482006788505],[119,282,70,0.10650211786071817],[119,282,71,0.10722169012849136],[119,282,72,0.10845675258403031],[119,282,73,0.11006608258624129],[119,282,74,0.11193068137807705],[119,282,75,0.11396280050005508],[119,282,76,0.11608955043419217],[119,282,77,0.1182509841079496],[119,282,78,0.12039851303904392],[119,282,79,0.12249347133024827],[119,283,64,0.11784615105459056],[119,283,65,0.11381134035809509],[119,283,66,0.11066631507703956],[119,283,67,0.10840763228832406],[119,283,68,0.10701055911227414],[119,283,69,0.10642727349113301],[119,283,70,0.10658525643211486],[119,283,71,0.1073888160363361],[119,283,72,0.10871689695463371],[119,283,73,0.11042323926293296],[119,283,74,0.11238664856638675],[119,283,75,0.1145188859525294],[119,283,76,0.11674637009917133],[119,283,77,0.1190082250609058],[119,283,78,0.12125467415201105],[119,283,79,0.12344557547402546],[119,284,64,0.11813379960364495],[119,284,65,0.11406982010259903],[119,284,66,0.1109143215544523],[119,284,67,0.1086640219546825],[119,284,68,0.1072937320365901],[119,284,69,0.1067544639859952],[119,284,70,0.10697172788609843],[119,284,71,0.1078469790653222],[119,284,72,0.10925531756803514],[119,284,73,0.11104589742713611],[119,284,74,0.1130955100624279],[119,284,75,0.11531545381690383],[119,284,76,0.11763148743975815],[119,284,77,0.11998183773416621],[119,284,78,0.12231556492434509],[119,284,79,0.12459106328358444],[119,285,64,0.11876216218242663],[119,285,65,0.11466698700208555],[119,285,66,0.11149672429503432],[119,285,67,0.10924839765102085],[119,285,68,0.10789656145030302],[119,285,69,0.10739131964040638],[119,285,70,0.10765652829779843],[119,285,71,0.10859116796799717],[119,285,72,0.11006693465506728],[119,285,73,0.11192886537468932],[119,285,74,0.11405193258379243],[119,285,75,0.11634700989116609],[119,285,76,0.11873923821869631],[119,285,77,0.12116598903437847],[119,285,78,0.12357519507585574],[119,285,79,0.12592380979078147],[119,286,64,0.11972225115781998],[119,286,65,0.11559439279771644],[119,286,66,0.11240553820314653],[119,286,67,0.11015315745954535],[119,286,68,0.1088117471210977],[119,286,69,0.10833076151127641],[119,286,70,0.10863272366644888],[119,286,71,0.109614524695409],[119,286,72,0.1111449081737384],[119,286,73,0.11306527767045066],[119,286,74,0.11524899434416175],[119,286,75,0.11760655515318685],[119,286,76,0.12006253527477703],[119,286,77,0.12255350282502417],[119,286,78,0.12502630898289246],[119,286,79,0.12743650014569058],[119,287,64,0.12100295219200863],[119,287,65,0.1168414688524006],[119,287,66,0.11363068020832795],[119,287,67,0.11136863895824223],[119,287,68,0.11002997944810028],[119,287,69,0.10956376427780506],[119,287,70,0.10989150622795035],[119,287,71,0.11090839700704236],[119,287,72,0.1124806873078385],[119,287,73,0.11444664204782995],[119,287,74,0.1166782297769256],[119,287,75,0.11908562864637579],[119,287,76,0.12159290982149262],[119,287,77,0.1241358997977115],[119,287,78,0.12666042418356943],[119,287,79,0.12912066670877043],[119,288,64,0.12259114743452054],[119,288,65,0.1183956426338319],[119,288,66,0.1151600794780745],[119,288,67,0.1128832236692715],[119,288,68,0.11154003870396684],[119,288,69,0.11107945086950333],[119,288,70,0.11142228507382512],[119,288,71,0.11246242567359033],[119,288,72,0.11406409480571217],[119,288,73,0.11606292136320351],[119,288,74,0.11832970949069965],[119,288,75,0.12077438572633625],[119,288,76,0.12332058817978875],[119,288,77,0.12590347278876293],[119,288,78,0.1284679052738163],[119,288,79,0.13096676141205862],[119,289,64,0.1244718702503314],[119,289,65,0.1202424863278081],[119,289,66,0.11697982030250498],[119,289,67,0.11468347466698464],[119,289,68,0.11332892787046928],[119,289,69,0.11286522106907226],[119,289,70,0.11321281107671777],[119,289,71,0.11426466627271048],[119,289,72,0.11588344615934315],[119,289,73,0.11790265060535587],[119,289,74,0.12019215545688877],[119,289,75,0.1226617116686598],[119,289,76,0.12523460394505503],[119,289,77,0.12784539754123647],[119,289,78,0.13043807319439019],[119,289,79,0.132964263389528],[119,290,64,0.12662849148391275],[119,290,65,0.12236589758172128],[119,290,66,0.11907431765080145],[119,290,67,0.11675430734545261],[119,290,68,0.11538203906746142],[119,290,69,0.11490691409002612],[119,290,70,0.11524933612232657],[119,290,71,0.11630174557764994],[119,290,72,0.11792570362364213],[119,290,73,0.11995308895983886],[119,290,74,0.12225309142918356],[119,290,75,0.12473537063775586],[119,290,76,0.12732294558824903],[119,290,77,0.12994987891227716],[119,290,78,0.13255934990874804],[119,290,79,0.13510182187650563],[119,291,64,0.12904293725921565],[119,291,65,0.1247483123782066],[119,291,66,0.12142652539940973],[119,291,67,0.1190791933454966],[119,291,68,0.11768335357521725],[119,291,69,0.11718900512904656],[119,291,70,0.11751680664775238],[119,291,71,0.11855905253873061],[119,291,72,0.12017666507591959],[119,291,73,0.12220040692823311],[119,291,74,0.12449902859497586],[119,291,75,0.12698219001669425],[119,291,76,0.12957273949113185],[119,291,77,0.1322043325257751],[119,291,78,0.1348194384717547],[119,291,79,0.1373674343781266],[119,292,64,0.13169593831569865],[119,292,65,0.1273709500390611],[119,292,66,0.12401817723211583],[119,292,67,0.12164039764132767],[119,292,68,0.12021567545025155],[119,292,69,0.1196948358931833],[119,292,70,0.11999909148638288],[119,292,71,0.12102096385780711],[119,292,72,0.12262118771566571],[119,292,73,0.12462990850242939],[119,292,74,0.1269156864588125],[119,292,75,0.12938828009818637],[119,292,76,0.13197046841574078],[119,292,77,0.13459560187045722],[119,292,78,0.1372055384893543],[119,292,79,0.139748660106954],[119,293,64,0.13456731088029966],[119,293,65,0.13021409035933065],[119,293,66,0.12683006021189197],[119,293,67,0.12441924878669722],[119,293,68,0.12296089873452079],[119,293,69,0.12240687910179548],[119,293,70,0.12267924401920174],[119,293,71,0.12367110415559096],[119,293,72,0.125243446604524],[119,293,73,0.12722628839382075],[119,293,74,0.1294882489577765],[119,293,75,0.13193928913658998],[119,293,76,0.1345022254079848],[119,293,77,0.13711021084329744],[119,293,78,0.1397045969690885],[119,293,79,0.1422328686896463],[119,294,64,0.13763626907534068],[119,294,65,0.13325738287155411],[119,294,66,0.12984232102450405],[119,294,67,0.1273964423205452],[119,294,68,0.12590030825799162],[119,294,69,0.1253070369632227],[119,294,70,0.12553979863251735],[119,294,71,0.12649264073183258],[119,294,72,0.1280272280464536],[119,294,73,0.1299739243173973],[119,294,74,0.13220165580878646],[119,294,75,0.13462069376093083],[119,294,76,0.1371540031353538],[119,294,77,0.1397346517382369],[119,294,78,0.14230359456145464],[119,294,79,0.14480752414266548],[119,295,64,0.1408817688625021],[119,295,65,0.13648018824030184],[119,295,66,0.13303480489401703],[119,295,67,0.1305523773322852],[119,295,68,0.1290149140347193],[119,295,69,0.12837697362632805],[119,295,70,0.12856310148224853],[119,295,71,0.12946861291850212],[119,295,72,0.13095625780821954],[119,295,73,0.13285720433088566],[119,295,74,0.13504092908796],[119,295,75,0.1374181247490853],[119,295,76,0.1399120186588898],[119,295,77,0.14245570868036156],[119,295,78,0.14498986719225082],[119,295,79,0.14746050411717346],[119,296,64,0.1442828835226632],[119,296,65,0.13986195178680486],[119,296,66,0.1363874271699944],[119,296,67,0.13386752618651993],[119,296,68,0.1322858192522255],[119,296,69,0.13159848160670165],[119,296,70,0.13173167556455856],[119,296,71,0.13258229602575616],[119,296,72,0.13401456418000018],[119,296,73,0.1358608892287188],[119,296,74,0.13799153504182238],[119,296,75,0.14031772816290683],[119,296,76,0.14276307363919816],[119,296,77,0.14526081650531608],[119,296,78,0.1477514630856853],[119,296,79,0.1501804544128941],[119,297,64,0.14781921067182868],[119,297,65,0.1433826091438951],[119,297,66,0.13988057758661168],[119,297,67,0.13732283740741155],[119,297,68,0.13569462185440276],[119,297,69,0.1349538821877531],[119,297,70,0.13502862009306482],[119,297,71,0.13581759988092157],[119,297,72,0.13718687587634085],[119,297,73,0.1389705099910693],[119,297,74,0.14103978113059765],[119,297,75,0.14330656184453142],[119,297,76,0.14569494997673804],[119,297,77,0.1481384550841928],[119,297,78,0.15057753517849243],[119,297,79,0.1529571787611827],[119,298,64,0.15147131081293141],[119,298,65,0.14702302404104609],[119,298,66,0.14349555719347423],[119,298,67,0.14090017172249053],[119,298,68,0.139223849717728],[119,298,69,0.13842645979647414],[119,298,70,0.1384380441824066],[119,298,71,0.13915950196027604],[119,298,72,0.14045905477723403],[119,298,73,0.1421728002877229],[119,298,74,0.14417324830335498],[119,298,75,0.14637302727363716],[119,298,76,0.14869684088616486],[119,298,77,0.15107857909366856],[119,298,78,0.15345876892482302],[119,298,79,0.15578206387707094],[119,299,64,0.15522117742365643],[119,299,65,0.15076545821965892],[119,299,66,0.14721504795828336],[119,299,67,0.14458277126605418],[119,299,68,0.14285742942093616],[119,299,69,0.14200093035402422],[119,299,70,0.14194553483832092],[119,299,71,0.14259451511377763],[119,299,72,0.1438185635094788],[119,299,73,0.14545616403694756],[119,299,74,0.14738125850516962],[119,299,75,0.14950733678581496],[119,299,76,0.15175981740488223],[119,299,77,0.15407308323154734],[119,299,78,0.15638784549207194],[119,299,79,0.15864853978045046],[119,300,64,0.15905273858027486],[119,300,65,0.15459407347858378],[119,300,66,0.1510236150413425],[119,300,67,0.14835576194214103],[119,300,68,0.14658118860814204],[119,300,69,0.1456639436011245],[119,300,70,0.14553865925421633],[119,300,71,0.1461111898827308],[119,300,72,0.14725496786830725],[119,300,73,0.14881117801934396],[119,300,74,0.15065537741628046],[119,300,75,0.15270201615203527],[119,300,76,0.15487733033578938],[119,300,77,0.1571163028776938],[119,300,78,0.15935994034762518],[119,300,79,0.16155257538637677],[119,301,64,0.16295239011737145],[119,301,65,0.15849546584975946],[119,301,66,0.1549082417417832],[119,301,67,0.15220668894696326],[119,301,68,0.15038339194528857],[119,301,69,0.1494046193981416],[119,301,70,0.1492075014141206],[119,301,71,0.149700651410267],[119,301,72,0.15076047407915416],[119,301,73,0.152231129546555],[119,301,74,0.1539899524231251],[119,301,75,0.15595244251908796],[119,301,76,0.15804574762409868],[119,301,77,0.16020555020023297],[119,301,78,0.1623732572364019],[119,301,79,0.16449320936436926],[119,302,64,0.16690956032360324],[119,302,65,0.16245923190410733],[119,302,66,0.15885889711565043],[119,302,67,0.15612608545093748],[119,302,68,0.1542553106700667],[119,302,69,0.15321511800000323],[119,302,70,0.15294523300215057],[119,302,71,0.1533571709447869],[119,302,72,0.15433050089971967],[119,302,73,0.1557125891849831],[119,302,74,0.15738268582139892],[119,302,75,0.15925741771114574],[119,302,76,0.16126492716837737],[119,302,77,0.1633416857071703],[119,302,78,0.16542959754934694],[119,302,79,0.16747311626686312],[119,303,64,0.17091730617345172],[119,303,65,0.1664785671876456],[119,303,66,0.1628691362658104],[119,303,67,0.16010807444027475],[119,303,68,0.15819182573526344],[119,303,69,0.15709124430590515],[119,303,70,0.15674871861845674],[119,303,71,0.1570787719363171],[119,303,72,0.1579642865622751],[119,303,73,0.15925601853446666],[119,303,74,0.16083524325109008],[119,303,75,0.1626197768923997],[119,303,76,0.164538825065758],[119,303,77,0.1665297252433761],[119,303,78,0.168534965082816],[119,303,79,0.17049920792675505],[119,304,64,0.17497294109487332],[119,304,65,0.17055089678772434],[119,304,66,0.16693673330358405],[119,304,67,0.16415100371803457],[119,304,68,0.16219206454544638],[119,304,69,0.1610330860837148],[119,304,70,0.16061915530155482],[119,304,71,0.16086787072569383],[119,304,72,0.1616655305561267],[119,304,73,0.1628664130618288],[119,304,74,0.16435389736340492],[119,304,75,0.16604703259068415],[119,304,76,0.16787613929123835],[119,304,77,0.16977948243285587],[119,304,78,0.17170020618877707],[119,304,79,0.1735832701239653],[119,305,64,0.17907869427298473],[119,305,65,0.17467853802952155],[119,305,66,0.17106434698224332],[119,305,67,0.1682581140647798],[119,305,68,0.16626007128711862],[119,305,69,0.1650456861692089],[119,305,70,0.1645627463571762],[119,305,71,0.16473195182670483],[119,305,72,0.16544307025036747],[119,305,73,0.1665539799894291],[119,305,74,0.16795020671971275],[119,305,75,0.16955205408221824],[119,305,76,0.1712909888111954],[119,305,77,0.1731062465664298],[119,305,78,0.17494168531594947],[119,305,79,0.17674263452114033],[119,306,64,0.18324240148975718],[119,306,65,0.17886939530277135],[119,306,66,0.17526021900234434],[119,306,67,0.1724382405588065],[119,306,68,0.17040551085232022],[119,306,69,0.16913974864011705],[119,306,70,0.16859140949361173],[119,306,71,0.16868427780116507],[119,306,72,0.16931159235689153],[119,306,73,0.17033485123869513],[119,306,74,0.17164172992248658],[119,306,75,0.17315378213744048],[119,306,76,0.17480362813109118],[119,306,77,0.17653149593480086],[119,306,78,0.178281995941861],[119,306,79,0.1800008858684727],[119,307,64,0.18747689889461736],[119,307,65,0.18313637346432257],[119,307,66,0.17953759931608154],[119,307,67,0.17670524224207623],[119,307,68,0.1746430957490777],[119,307,69,0.17333105653416941],[119,307,70,0.1727221798720042],[119,307,71,0.172743273434206],[119,307,72,0.1732909956238507],[119,307,73,0.1742304239622602],[119,307,74,0.1754513451606824],[119,307,75,0.17687653022709293],[119,307,76,0.17843973396040527],[119,307,77,0.18008217460707251],[119,307,78,0.1817492327081969],[119,307,79,0.18338713508434237],[119,308,64,0.19177346199789858],[119,308,65,0.18747110173796402],[119,308,66,0.1838886121713425],[119,308,67,0.1810518705299896],[119,308,68,0.17896632453579714],[119,308,69,0.17761396034496188],[119,308,70,0.1769503465221948],[119,308,71,0.1769052317135436],[119,308,72,0.17737861830596274],[119,308,73,0.17823909865558202],[119,308,74,0.17937852847339986],[119,308,75,0.18072086722643663],[119,308,76,0.18220098436329832],[119,308,77,0.1837610812620228],[119,308,78,0.18534731846604102],[119,308,79,0.18690642295964371],[119,309,64,0.19609960099464527],[119,309,65,0.19184164541319004],[119,309,66,0.18828188952492922],[119,309,67,0.18544732974746375],[119,309,68,0.18334497474965042],[119,309,69,0.18195880823465052],[119,309,70,0.18124682408358422],[119,309,71,0.18114163038983896],[119,309,72,0.18154650154355448],[119,309,73,0.1823334896826085],[119,309,74,0.1833965099303848],[119,309,75,0.18466071656299965],[119,309,76,0.1860620977369746],[119,309,77,0.18754384504339205],[119,309,78,0.18905291475965247],[119,309,79,0.19053656414584336],[119,310,64,0.20042256725798813],[119,310,65,0.19621570662266136],[119,310,66,0.19268559878378674],[119,310,67,0.18986026188319727],[119,310,68,0.18774816791632953],[119,310,69,0.18633520309473786],[119,310,70,0.18558169714568462],[119,310,71,0.18542303664311416],[119,310,72,0.18576569909041402],[119,310,73,0.18648514990828555],[119,310,74,0.18747738492942717],[119,310,75,0.18866879323440564],[119,310,76,0.18999650884074176],[119,310,77,0.19140473447180614],[119,310,78,0.19284124383670662],[119,310,79,0.19425385402369025],[119,311,64,0.20471056895417347],[119,311,65,0.20056183499405544],[119,311,66,0.19706865263151058],[119,311,67,0.19425995965793846],[119,311,68,0.19214558971820805],[119,311,69,0.19071323330823473],[119,311,70,0.18992546456175521],[119,311,71,0.18972036717781793],[119,311,72,0.19000755448285833],[119,311,73,0.19066586505613847],[119,311,74,0.19159342444591593],[119,311,75,0.19271792737536764],[119,311,76,0.1939777020851436],[119,311,77,0.1953179960763108],[119,311,78,0.19668742767294745],[119,311,79,0.19803440279606085],[119,312,64,0.20893304053679584],[119,312,65,0.20484969732432234],[119,312,66,0.2014009776378028],[119,312,67,0.19861663287764572],[119,312,68,0.19650775298523335],[119,312,69,0.19506373139201502],[119,312,70,0.19424929291216056],[119,312,71,0.1940051358705152],[119,312,72,0.19424394246862328],[119,312,73,0.1948478887765164],[119,312,74,0.1957173037610373],[119,312,75,0.1967812867468423],[119,312,76,0.19797942793983303],[119,312,77,0.19925806491444814],[119,312,78,0.2005666928142823],[119,312,79,0.2018543348601336],[119,313,64,0.21306138837186786],[119,313,65,0.20905070393528136],[119,313,66,0.2056540211727841],[119,313,67,0.2029017960905301],[119,313,68,0.20080626666082382],[119,313,69,0.19935842524704334],[119,313,70,0.19852505145189406],[119,313,71,0.1982493742941437],[119,313,72,0.19844707748352922],[119,313,73,0.19900364196527298],[119,313,74,0.1998216959238236],[119,313,75,0.20083186796452349],[119,313,76,0.20197509583632087],[119,313,77,0.2031988633065373],[119,313,78,0.20445357931489738],[119,313,79,0.20568891250271754],[119,314,64,0.21706878355981227],[119,314,65,0.21313782215760002],[119,314,66,0.20980058426467912],[119,314,67,0.20708811952227854],[119,314,68,0.20501370354204182],[119,314,69,0.2035698214881132],[119,314,70,0.20272520990741275],[119,314,71,0.2024255429901283],[119,314,72,0.20258943757738815],[119,314,73,0.20310564872199344],[119,314,74,0.20387921923886285],[119,314,75,0.20484245506007231],[119,314,76,0.2059377433715958],[119,314,77,0.20711378025621222],[119,314,78,0.2083219299377269],[119,314,79,0.2079476181050697],[119,315,64,0.2209297173392179],[119,315,65,0.21708525276966867],[119,315,66,0.2138146168851714],[119,315,67,0.21114934074974],[119,315,68,0.20910362564943274],[119,315,69,0.20767134162213186],[119,315,70,0.20682308242156444],[119,315,71,0.2065068800283342],[119,315,72,0.2066442143746086],[119,315,73,0.2071270844728947],[119,315,74,0.2078630802253626],[119,315,75,0.20878635380536184],[119,315,76,0.20984085837070743],[119,315,77,0.2109765774613171],[119,315,78,0.2105538704393163],[119,315,79,0.20385093505775853],[119,316,64,0.22462023170459738],[119,316,65,0.22086867241758806],[119,316,66,0.21767147090927402],[119,316,67,0.2150605269453193],[119,316,68,0.21305085453786657],[119,316,69,0.21163759927696726],[119,316,70,0.21079311065596776],[119,316,71,0.21046768907873314],[119,316,72,0.21058560538922377],[119,316,73,0.21104207201145497],[119,316,74,0.21174737300782054],[119,316,75,0.21263769415603168],[119,316,76,0.21365868414142536],[119,316,77,0.21330372016344787],[119,316,78,0.2062049731757356],[119,316,79,0.19949297052621975],[119,317,64,0.22811817469139156],[119,317,65,0.22446549684072042],[119,317,66,0.22134817007268076],[119,317,67,0.21879835037018694],[119,317,68,0.21683175117199807],[119,317,69,0.21544468337942735],[119,317,70,0.2146111492991367],[119,317,71,0.21428362642002027],[119,317,72,0.21438910188422539],[119,317,73,0.21482596976834686],[119,317,74,0.2155073677077287],[119,317,75,0.21637171856749923],[119,317,76,0.21604063916180002],[119,317,77,0.2086426545831051],[119,317,78,0.201564712640547],[119,317,79,0.19488313351677297],[119,318,64,0.23140345826305703],[119,318,65,0.22785514693194736],[119,318,66,0.2248236830153721],[119,318,67,0.22234136721952463],[119,318,68,0.2204244994284891],[119,318,69,0.21907044523778282],[119,318,70,0.2182547557534942],[119,318,71,0.2179319923909167],[119,318,72,0.21803178141909968],[119,318,73,0.21845566498937194],[119,318,74,0.21911980393788655],[119,318,75,0.2185883832526195],[119,318,76,0.21099829324140196],[119,318,77,0.20365203398516143],[119,318,78,0.1966350763125806],[119,318,79,0.1900224828498918],[119,319,64,0.23445831880023854],[119,319,65,0.23101931763263034],[119,319,66,0.2280791994114747],[119,319,67,0.22567029981980385],[119,319,68,0.22380939322498583],[119,319,69,0.22249478952882534],[119,319,70,0.2217034840012632],[119,319,71,0.22139202728414623],[119,319,72,0.2214926050855547],[119,319,73,0.22190987182138408],[119,319,74,0.22076663340136224],[119,319,75,0.21309426244021057],[119,319,76,0.20558407509226068],[119,319,77,0.1983277378665273],[119,319,78,0.19140913487383468],[119,319,79,0.18490146962295823],[120,-64,64,0.3440563373727338],[120,-64,65,0.3500054957814567],[120,-64,66,0.35606077645587536],[120,-64,67,0.36220432564112764],[120,-64,68,0.3684410915583138],[120,-64,69,0.3747897358750417],[120,-64,70,0.3812626799930173],[120,-64,71,0.3878656398104787],[120,-64,72,0.39459767825664976],[120,-64,73,0.401451338297105],[120,-64,74,0.40841285809291544],[120,-64,75,0.41546246986059765],[120,-64,76,0.422574783836757],[120,-64,77,0.429719258602168],[120,-64,78,0.4368607588657284],[120,-64,79,0.44396020165131855],[120,-63,64,0.3461868675187787],[120,-63,65,0.352241041108057],[120,-63,66,0.3584064575648008],[120,-63,67,0.3646659036657078],[120,-63,68,0.3710236934939085],[120,-63,69,0.3774968592532615],[120,-63,70,0.38409609680756557],[120,-63,71,0.3908253759837699],[120,-63,72,0.3976820450770317],[120,-63,73,0.4046570113281641],[120,-63,74,0.41173499887275145],[120,-63,75,0.4188948855290359],[120,-63,76,0.426110119653305],[120,-63,77,0.4333492181481691],[120,-63,78,0.44057634656164285],[120,-63,79,0.44775198206527383],[120,-62,64,0.3484896487722383],[120,-62,65,0.35463758296659936],[120,-62,66,0.3609002916977515],[120,-62,67,0.367261539151851],[120,-62,68,0.3737249569924074],[120,-62,69,0.38030568388558217],[120,-62,70,0.38701256338455386],[120,-62,71,0.39384781805642777],[120,-62,72,0.40080718678318705],[120,-62,73,0.40788013428779957],[120,-62,74,0.41505013424045206],[120,-62,75,0.4222950271718594],[120,-62,76,0.42958745428719475],[120,-62,77,0.4368953681366015],[120,-62,78,0.44418262095724376],[120,-62,79,0.4514096313593517],[120,-61,64,0.35094971429285565],[120,-61,65,0.35718000946179557],[120,-61,66,0.3635269776929779],[120,-61,67,0.3699756581944183],[120,-61,68,0.3765289703243963],[120,-61,69,0.38319994843403044],[120,-61,70,0.38999550120152127],[120,-61,71,0.3969161377334701],[120,-61,72,0.40395611931312897],[120,-61,73,0.41110368035743133],[120,-61,74,0.4183413198303583],[120,-61,75,0.4256461642367056],[120,-61,76,0.43299040319199034],[120,-61,77,0.4403417984322515],[120,-61,78,0.44766426699258055],[120,-61,79,0.454918539147226],[120,-60,64,0.35354873219972677],[120,-60,65,0.3598500825820961],[120,-60,66,0.36626837892489134],[120,-60,67,0.37279018094521027],[120,-60,68,0.3794176796348634],[120,-60,69,0.3861616478499063],[120,-60,70,0.39302701822444996],[120,-60,71,0.4000126497150923],[120,-60,72,0.4071114768797756],[120,-60,73,0.41431072602283525],[120,-60,74,0.4215921993795771],[120,-60,75,0.42893262839502694],[120,-60,76,0.4363040970282753],[120,-60,77,0.44367453588725375],[120,-60,78,0.45100828786951586],[120,-60,79,0.4582667458544678],[120,-59,64,0.3562658932264595],[120,-59,65,0.3626273500547738],[120,-59,66,0.36910446150596565],[120,-59,67,0.3756854876893708],[120,-59,68,0.38237188206040024],[120,-59,69,0.3891720493947095],[120,-59,70,0.39608894080218365],[120,-59,71,0.4031198499949405],[120,-59,72,0.41025654522731814],[120,-59,73,0.41748546633413597],[120,-59,74,0.4247879879945161],[120,-59,75,0.43214075023484083],[120,-59,76,0.4395160570662986],[120,-59,77,0.446882344031057],[120,-59,78,0.4542047153070884],[120,-59,79,0.4614455508968278],[120,-58,64,0.35907896864867767],[120,-58,65,0.3654902271814659],[120,-58,66,0.3720144015700832],[120,-58,67,0.3786415524955217],[120,-58,68,0.3853723840589057],[120,-58,69,0.39221287028990054],[120,-58,70,0.3991640021065264],[120,-58,71,0.40622160393454804],[120,-58,72,0.4133764361044059],[120,-58,73,0.4206143610063323],[120,-58,74,0.42791657410672096],[120,-58,75,0.4352599008202247],[120,-58,76,0.4426171601190193],[120,-58,77,0.44995759564426796],[120,-58,78,0.457247374965741],[120,-58,79,0.46445015751550267],[120,-57,64,0.3619655381505973],[120,-57,65,0.36841724829871325],[120,-57,66,0.3749778612782127],[120,-57,67,0.38163924409397304],[120,-57,68,0.38840132463505783],[120,-57,69,0.3952676167220666],[120,-57,70,0.40223718690148613],[120,-57,71,0.40930448396727626],[120,-57,72,0.4164594028897993],[120,-57,73,0.42368741139022004],[120,-57,74,0.4309697402533992],[120,-57,75,0.4382836383690099],[120,-57,76,0.4456026933827073],[120,-57,77,0.4528972187277478],[120,-57,78,0.46013470769315473],[120,-57,79,0.46728035506904964],[120,-56,64,0.3649008821777982],[120,-56,65,0.3713846772855722],[120,-56,66,0.3779723101364858],[120,-56,67,0.3846573548862578],[120,-56,68,0.39143891101025197],[120,-56,69,0.39831802790839],[120,-56,70,0.4052918905753867],[120,-56,71,0.4123536565009033],[120,-56,72,0.4194924755378721],[120,-56,73,0.4266935713241986],[120,-56,74,0.43393838534762963],[120,-56,75,0.44120478464578494],[120,-56,76,0.4484673340307486],[120,-56,77,0.4556976336212569],[120,-56,78,0.46286472235604015],[120,-56,79,0.46993554805095766],[120,-55,64,0.36783776968798854],[120,-55,65,0.3743443752286562],[120,-55,66,0.3809489136321504],[120,-55,67,0.38764648866964585],[120,-55,68,0.39443531841893614],[120,-55,69,0.4013140449768963],[120,-55,70,0.40827806728934407],[120,-55,71,0.4153193779939857],[120,-55,72,0.4224265334827489],[120,-55,73,0.429584684575141],[120,-55,74,0.4367756688983729],[120,-55,75,0.4439781659776631],[120,-55,76,0.4511679159427462],[120,-55,77,0.4583180026551491],[120,-55,78,0.46539920195593126],[120,-55,79,0.4723803956269319],[120,-54,64,0.37072377052391803],[120,-54,65,0.3772424090263822],[120,-54,66,0.3838524451513456],[120,-54,67,0.3905502794710943],[120,-54,68,0.39733320851782367],[120,-54,69,0.4041975959714773],[120,-54,70,0.41113721658807995],[120,-54,71,0.41814308243247617],[120,-54,72,0.4252033559986103],[120,-54,73,0.4323033234033356],[120,-54,74,0.43942542877009677],[120,-54,75,0.446549370831584],[120,-54,76,0.4536522626877622],[120,-54,77,0.4607088555585471],[120,-54,78,0.46769182726946784],[120,-54,79,0.4745721361055132],[120,-53,64,0.3735135991071425],[120,-53,65,0.3800323966608266],[120,-53,66,0.38663565051610205],[120,-53,67,0.3933207812630821],[120,-53,68,0.40008413586591557],[120,-53,69,0.4069199882973547],[120,-53,70,0.413820703976935],[120,-53,71,0.42077654253959235],[120,-53,72,0.4277755060371283],[120,-53,73,0.4348032472888259],[120,-53,74,0.44184303953644805],[120,-53,75,0.4488758084759386],[120,-53,76,0.4558802276493035],[120,-53,77,0.4628328780863831],[120,-53,78,0.46970847298817664],[120,-53,79,0.47648014814260997],[120,-52,64,0.3761693627053239],[120,-52,65,0.3826757312409134],[120,-52,66,0.389259444938486],[120,-52,67,0.39591863537233585],[120,-52,68,0.40264868361659956],[120,-52,69,0.40944201087032794],[120,-52,70,0.41628982823052874],[120,-52,71,0.42318190161560204],[120,-52,72,0.4301063267371499],[120,-52,73,0.4370493650735643],[120,-52,74,0.44399534205977026],[120,-52,75,0.450926608627875],[120,-52,76,0.45782356714732],[120,-52,77,0.4646647627214566],[120,-52,78,0.47142704070093144],[120,-52,79,0.47808577117440404],[120,-51,64,0.37866086402442045],[120,-51,65,0.38514185421599373],[120,-51,66,0.39169315370658436],[120,-51,67,0.3983132757662841],[120,-51,68,0.4049966308279109],[120,-51,69,0.4117340613649829],[120,-51,70,0.4185159071936471],[120,-51,71,0.425331717362077],[120,-51,72,0.43216994370229067],[120,-51,73,0.4390176971361555],[120,-51,74,0.44586056802988544],[120,-51,75,0.4526825118136929],[120,-51,76,0.4594658009983595],[120,-51,77,0.4661910446293687],[120,-51,78,0.47283727612258775],[120,-51,79,0.47938211032482975],[120,-50,64,0.3802247037323263],[120,-50,65,0.38740864042457407],[120,-50,66,0.39391486421862687],[120,-50,67,0.4004832448274147],[120,-50,68,0.40710722896262064],[120,-50,69,0.413776380951103],[120,-50,70,0.42048046900310815],[120,-50,71,0.4272091087338453],[120,-50,72,0.43395136762808706],[120,-50,73,0.4406954349959815],[120,-50,74,0.4474283588144194],[120,-50,75,0.454135850771076],[120,-50,76,0.4608021607429719],[120,-50,77,0.46741002184907054],[120,-50,78,0.4739406671178356],[120,-50,79,0.4803739187073205],[120,-49,64,0.3806277755095085],[120,-49,65,0.38785545503299657],[120,-49,66,0.3951260038134066],[120,-49,67,0.40241346246979803],[120,-49,68,0.4089670741447813],[120,-49,69,0.4155575490853793],[120,-49,70,0.42217437708441696],[120,-49,71,0.4288075060975529],[120,-49,72,0.43544685157051827],[120,-49,73,0.4420818749505032],[120,-49,74,0.4487012328925888],[120,-49,75,0.45529249859368803],[120,-49,76,0.46184195659905886],[120,-49,77,0.46833447233113756],[120,-49,78,0.47475343748804066],[120,-49,79,0.4810807923511554],[120,-48,64,0.38111594518960407],[120,-48,65,0.38836379463657944],[120,-48,66,0.39566311800459497],[120,-48,67,0.4029980800261522],[120,-48,68,0.41035710192562364],[120,-48,69,0.4170681866013079],[120,-48,70,0.42359312105061253],[120,-48,71,0.43012749523401345],[120,-48,72,0.4366622190248198],[120,-48,73,0.44318812823231024],[120,-48,74,0.4496955458841742],[120,-48,75,0.4561739201756249],[120,-48,76,0.46261154054641074],[120,-48,77,0.46899533324725323],[120,-48,78,0.4753107376496556],[120,-48,79,0.4815416644391476],[120,-47,64,0.38170347296641444],[120,-47,65,0.3889652768058996],[120,-47,66,0.39628575128228616],[120,-47,67,0.4036502728410559],[120,-47,68,0.4110484820466054],[120,-47,69,0.4183043891129443],[120,-47,70,0.42473750892447454],[120,-47,71,0.43117474446027554],[120,-47,72,0.43760805688519544],[120,-47,73,0.44402966565213675],[120,-47,74,0.4504315253813877],[120,-47,75,0.45680488414733067],[120,-47,76,0.4631399247430373],[120,-47,77,0.46942549038829656],[120,-47,78,0.47564889623302054],[120,-47,79,0.48179582788739406],[120,-46,64,0.3823955099435184],[120,-46,65,0.38966248693311345],[120,-46,66,0.3969936429294948],[120,-46,67,0.4043759109418282],[120,-46,68,0.41180022808686806],[120,-46,69,0.41925818247824653],[120,-46,70,0.4256138029612959],[120,-46,71,0.43195941863692433],[120,-46,72,0.4382984280931222],[120,-46,73,0.4446243644063379],[120,-46,74,0.4509307015706695],[120,-46,75,0.45721033963428065],[120,-46,76,0.46345517748685655],[120,-46,77,0.4696557748526947],[120,-46,78,0.47580110492413086],[120,-46,79,0.4818783989425162],[120,-45,64,0.38318906467962066],[120,-45,65,0.3904502941020848],[120,-45,66,0.39777933738179616],[120,-45,67,0.4051650116074699],[120,-45,68,0.41259964625670587],[120,-45,69,0.41996880092684763],[120,-45,70,0.4262330220800079],[120,-45,71,0.43249554935131146],[120,-45,72,0.43875031600192105],[120,-45,73,0.44499203225557815],[120,-45,74,0.45121551592785514],[120,-45,75,0.4574151131410047],[120,-45,76,0.4635842108641331],[120,-45,77,0.46971484290214455],[120,-45,78,0.4757973908308744],[120,-45,79,0.4818203812417822],[120,-44,64,0.384073950182523],[120,-44,65,0.3913167768040994],[120,-44,66,0.39862908086774473],[120,-44,67,0.4060018656358429],[120,-44,68,0.4134289628251101],[120,-44,69,0.42041786847427326],[120,-44,70,0.42661025527206514],[120,-44,71,0.4328004145908743],[120,-44,72,0.43898307679268966],[120,-44,73,0.44515393840839507],[120,-44,74,0.4513089354007426],[120,-44,75,0.45744360986401483],[120,-44,76,0.46355257195037697],[120,-44,77,0.4696290586914888],[120,-44,78,0.47566459125243477],[120,-44,79,0.4816487320151867],[120,-43,64,0.38503371413351706],[120,-43,65,0.3922441327791492],[120,-43,66,0.39952370304936297],[120,-43,67,0.4068658834407664],[120,-43,68,0.41426612746861746],[120,-43,69,0.4206327361663871],[120,-43,70,0.4267639839475552],[120,-43,71,0.4328939260449323],[120,-43,72,0.4390178982702131],[120,-43,73,0.44513234963713666],[120,-43,74,0.45123407081119715],[120,-43,75,0.4573195183732158],[120,-43,76,0.4633842367105139],[120,-43,77,0.4694223792237025],[120,-43,78,0.4754263304011515],[120,-43,79,0.481386430168759],[120,-42,64,0.3860465551345062],[120,-42,65,0.3932095756981997],[120,-42,66,0.40043948628071213],[120,-42,67,0.4077324296590349],[120,-42,68,0.4145593522854764],[120,-42,69,0.4206337181865299],[120,-42,70,0.426715411167927],[120,-42,71,0.43279802216641283],[120,-42,72,0.4388772633648939],[120,-42,73,0.4449500701568139],[120,-42,74,0.4510137982188809],[120,-42,75,0.4570655176194383],[120,-42,76,0.46310140577249376],[120,-42,77,0.4691162409186301],[120,-42,78,0.47510299767500974],[120,-42,79,0.4810525460492053],[120,-41,64,0.38708622777194535],[120,-41,65,0.3941862214056977],[120,-41,66,0.40134902510738124],[120,-41,67,0.40839726910800017],[120,-41,68,0.4144103973763303],[120,-41,69,0.42044377745301603],[120,-41,70,0.42648779571208456],[120,-41,71,0.4325360651249128],[120,-41,72,0.4385844166704516],[120,-41,73,0.44462998380609536],[120,-41,74,0.45067038200358234],[120,-41,75,0.4567029852480421],[120,-41,76,0.4627243012793336],[120,-41,77,0.4687294472244984],[120,-41,78,0.4747117271297939],[120,-41,79,0.48066231275206406],[120,-40,64,0.3881229392838318],[120,-40,65,0.3951439664359252],[120,-40,66,0.40216826005689504],[120,-40,67,0.4081069542108715],[120,-40,68,0.41408489946861504],[120,-40,69,0.4200878075378515],[120,-40,70,0.4261057889264686],[120,-40,71,0.4321322397883287],[120,-40,72,0.43816283235603476],[120,-40,73,0.44419459708279724],[120,-40,74,0.4502250984416573],[120,-40,75,0.4562517062236395],[120,-40,76,0.46227096405738166],[120,-40,77,0.4682780567427318],[120,-40,78,0.47426637785103515],[120,-40,79,0.4802271988970073],[120,-39,64,0.3891242405988845],[120,-39,65,0.3959121269620552],[120,-39,66,0.4017517074187219],[120,-39,67,0.4076577926444877],[120,-39,68,0.4136094634880745],[120,-39,69,0.41959191597731027],[120,-39,70,0.4255947723214855],[120,-39,71,0.43161095288341733],[120,-39,72,0.4376356818069188],[120,-39,73,0.44366558160525665],[120,-39,74,0.4496978585757699],[120,-39,75,0.4557295808004291],[120,-39,76,0.4617570503748738],[120,-39,77,0.46777527138069885],[120,-39,78,0.47377751497872306],[120,-39,79,0.4797549828562713],[120,-38,64,0.3896870142264527],[120,-38,65,0.3953924777151874],[120,-38,66,0.4011973147335102],[120,-38,67,0.40707796553326486],[120,-38,68,0.4130115967617597],[120,-38,69,0.4189827067856757],[120,-38,70,0.4249801938957834],[120,-38,71,0.4309962305055032],[120,-38,72,0.4370252993695081],[120,-38,73,0.44306331459523474],[120,-38,74,0.4491068292051699],[120,-38,75,0.455152330905542],[120,-38,76,0.46119562760364813],[120,-38,77,0.4672313240927191],[120,-38,78,0.4732523911912126],[120,-38,79,0.47924982848419406],[120,-37,64,0.38909573387577917],[120,-37,65,0.39475896848767367],[120,-37,66,0.4005345242851291],[120,-37,67,0.40639612746561127],[120,-37,68,0.41231894257945095],[120,-37,69,0.41828656001085135],[120,-37,70,0.42428690119656176],[120,-37,71,0.4303111121742991],[120,-37,72,0.4363526446040305],[120,-37,73,0.4424064160075635],[120,-37,74,0.4484680508561982],[120,-37,75,0.45453320403916714],[120,-37,76,0.46059696813818324],[120,-37,77,0.46665336581679984],[120,-37,78,0.47269492850864586],[120,-37,79,0.4787123624572515],[120,-36,64,0.38841668977138166],[120,-36,65,0.39404179254319005],[120,-36,66,0.399792720773081],[120,-36,67,0.40564059669010655],[120,-36,68,0.4115585089003242],[120,-36,69,0.4175289062069083],[120,-36,70,0.42353846915920645],[120,-36,71,0.4295770396672967],[120,-36,72,0.4356367594829902],[120,-36,73,0.44171128096746887],[120,-36,74,0.4477950516304276],[120,-36,75,0.45388267383588893],[120,-36,76,0.45996834097067846],[120,-36,77,0.46604535126395574],[120,-36,78,0.4721057003312607],[120,-36,79,0.4781397533954812],[120,-35,64,0.3876801094137763],[120,-35,65,0.3932704682254182],[120,-35,66,0.39900038276030975],[120,-35,67,0.4048385383689965],[120,-35,68,0.41075588997972134],[120,-35,69,0.41673349374371627],[120,-35,70,0.42275652081272463],[120,-35,71,0.428813238904047],[120,-35,72,0.4348942190146634],[120,-35,73,0.4409916062178895],[120,-35,74,0.4470984558702393],[120,-35,75,0.4532081364759619],[120,-35,76,0.45931380036799163],[120,-35,77,0.4654079232677421],[120,-35,78,0.47148191368326114],[120,-35,79,0.47752579299677633],[120,-34,64,0.38691486473863274],[120,-34,65,0.3924729564366017],[120,-34,66,0.39818422490793504],[120,-34,67,0.4040151385987968],[120,-34,68,0.4099344787475759],[120,-34,69,0.4159216469276545],[120,-34,70,0.4219600389887811],[120,-34,71,0.4280360932039036],[120,-34,72,0.4341385738187091],[120,-34,73,0.44025790932610714],[120,-34,74,0.4463855866286186],[120,-34,75,0.4525136021830476],[120,-34,76,0.4586339711457012],[120,-34,77,0.4647382954535702],[120,-34,78,0.4708173916881523],[120,-34,79,0.47686097947482065],[120,-33,64,0.38614756258673594],[120,-33,65,0.3916747665699018],[120,-33,66,0.3973683286774796],[120,-33,67,0.403192766978185],[120,-33,68,0.4091146678370451],[120,-33,69,0.4151115129710559],[120,-33,70,0.4211646672326386],[120,-33,71,0.4272585062975076],[120,-33,72,0.43337978323634563],[120,-33,73,0.43951703945266635],[120,-33,74,0.445660060982578],[120,-33,75,0.4517993810972419],[120,-33,76,0.4579258300873294],[120,-33,77,0.4640301330413968],[120,-33,78,0.4701025563575091],[120,-33,79,0.47613260365028276],[120,-32,64,0.38540162151727647],[120,-32,65,0.3908980485846973],[120,-32,66,0.39657325926554765],[120,-32,67,0.40239012558414006],[120,-32,68,0.40831303723884843],[120,-32,69,0.41431729592106464],[120,-32,70,0.42038199818350913],[120,-32,71,0.4264892535379046],[120,-32,72,0.4326236376199458],[120,-32,73,0.43877167854522087],[120,-32,74,0.4449213772871085],[120,-32,75,0.45106176286822447],[120,-32,76,0.4571824831119662],[120,-32,77,0.46327343165052076],[120,-32,78,0.4693244118309599],[120,-32,79,0.47532483810210674],[120,-31,64,0.3846963327071137],[120,-31,65,0.39016066901293417],[120,-31,66,0.39581516663119054],[120,-31,67,0.40162138230857625],[120,-31,68,0.40754152664377613],[120,-31,69,0.41354847574107145],[120,-31,70,0.4196188477697825],[120,-31,71,0.4257323198307486],[120,-31,72,0.43187116851630847],[120,-31,73,0.43801983188557636],[120,-31,74,0.4441644935288876],[120,-31,75,0.4502926893729255],[120,-31,76,0.45639293785097224],[120,-31,77,0.4624543940312059],[120,-31,78,0.468466528260402],[120,-31,79,0.47441882984093464],[120,-30,64,0.38404590279357664],[120,-30,65,0.38947526879583877],[120,-30,66,0.3951048685834526],[120,-30,67,0.4008952866106237],[120,-30,68,0.4068065906339798],[120,-30,69,0.41280901083097876],[120,-30,70,0.4188765136525075],[120,-30,71,0.4249862228857402],[120,-30,72,0.4311180455354785],[120,-30,73,0.4372543069909587],[120,-30,74,0.44337939600725135],[120,-30,75,0.4494794200263678],[120,-30,76,0.4555418713552168],[120,-30,77,0.46155530470574596],[120,-30,78,0.4675090265871512],[120,-30,79,0.4733927970208464],[120,-29,64,0.3834584766452601],[120,-29,65,0.38884830097335504],[120,-29,66,0.39444691401539556],[120,-29,67,0.40021426585376035],[120,-29,68,0.4061083349924568],[120,-29,69,0.41209652237571676],[120,-29,70,0.418150016447733],[120,-29,71,0.4242433204826276],[120,-29,72,0.43035395878208177],[120,-29,73,0.43646217994968134],[120,-29,74,0.4425506576433477],[120,-29,75,0.44860418922237033],[120,-29,76,0.45460939271740985],[120,-29,77,0.4604682820897169],[120,-29,78,0.4660833206627794],[120,-29,79,0.4716680861056357],[120,-28,64,0.38293513818417463],[120,-28,65,0.3882790463835742],[120,-28,66,0.39383862450125795],[120,-28,67,0.39957350052219587],[120,-28,68,0.40543963251958365],[120,-28,69,0.4114014590246029],[120,-28,70,0.41742732236483054],[120,-28,71,0.42348910054464767],[120,-28,72,0.42956198581858335],[120,-28,73,0.43495269430105105],[120,-28,74,0.44037377061422706],[120,-28,75,0.44584748152920906],[120,-28,76,0.45136173040716576],[120,-28,77,0.4569014868026124],[120,-28,78,0.46244921476798395],[120,-28,79,0.4679853112498232],[120,-27,64,0.3824688875351153],[120,-27,65,0.3877586056778852],[120,-27,66,0.39326911261706277],[120,-27,67,0.3989599767490446],[120,-27,68,0.40478521687748437],[120,-27,69,0.410706240529232],[120,-27,70,0.4162142364041517],[120,-27,71,0.4212671754397639],[120,-27,72,0.426400672370593],[120,-27,73,0.4316160398078963],[120,-27,74,0.43690998851820195],[120,-27,75,0.4422749955077612],[120,-27,76,0.4476996950711835],[120,-27,77,0.45316929243734055],[120,-27,78,0.45866599960059035],[120,-27,79,0.4641694928841632],[120,-26,64,0.38204359294243895],[120,-26,65,0.38726886611767186],[120,-26,66,0.39271827549995314],[120,-26,67,0.3983515147378115],[120,-26,68,0.4035787938439584],[120,-26,69,0.4083140526678421],[120,-26,70,0.4131213592145291],[120,-26,71,0.4180150097598539],[120,-26,72,0.42300362541413294],[120,-26,73,0.42809043551935666],[120,-26,74,0.43327359518486097],[120,-26,75,0.43854653673033783],[120,-26,76,0.4438983547351026],[120,-26,77,0.44931422432539325],[120,-26,78,0.4547758522681829],[120,-26,79,0.4602619603809138],[120,-25,64,0.38163290178967313],[120,-25,65,0.3867814641583241],[120,-25,66,0.3916291422136918],[120,-25,67,0.39610864832121145],[120,-25,68,0.40061775858154425],[120,-25,69,0.40518623117444963],[120,-25,70,0.4098372362906182],[120,-25,71,0.41458760452333976],[120,-25,72,0.4194480436968059],[120,-25,73,0.4244233992503288],[120,-25,74,0.4295129580429681],[120,-25,75,0.4347107953546301],[120,-25,76,0.44000616477314863],[120,-25,77,0.4453839305732692],[120,-25,78,0.45082504211408153],[120,-25,79,0.4563070497068087],[120,-24,64,0.38015083099336444],[120,-24,65,0.384500584436082],[120,-24,66,0.3888170193107472],[120,-24,67,0.39312988034912894],[120,-24,68,0.39747805186783963],[120,-24,69,0.40189438860573107],[120,-24,70,0.40640475869822185],[120,-24,71,0.4110282353842652],[120,-24,72,0.41577729672180147],[120,-24,73,0.42065807678576106],[120,-24,74,0.4256706682095427],[120,-24,75,0.4308094758277736],[120,-24,76,0.43606362107708013],[120,-24,77,0.44141739671377694],[120,-24,78,0.4468507713142834],[120,-24,79,0.45233994293632085],[120,-23,64,0.3774995815961708],[120,-23,65,0.38168275564343945],[120,-23,66,0.38583783697565877],[120,-23,67,0.3899946430586046],[120,-23,68,0.39419386047544247],[120,-23,69,0.39847118866276715],[120,-23,70,0.40285491818242064],[120,-23,71,0.40736607605363323],[120,-23,72,0.41201861798622574],[120,-23,73,0.41681967908993073],[120,-23,74,0.4217698828981269],[120,-23,75,0.4268637084278788],[120,-23,76,0.4320899148840608],[120,-23,77,0.4374320235049129],[120,-23,78,0.4428688559412287],[120,-23,79,0.4483751284622647],[120,-22,64,0.37470168540479165],[120,-22,65,0.37872389855761973],[120,-22,66,0.38272495895502545],[120,-22,67,0.38673460302078716],[120,-22,68,0.3907950337129027],[120,-22,69,0.3949444967169868],[120,-22,70,0.39921341486969286],[120,-22,71,0.40362449152384167],[120,-22,72,0.40819289933555025],[120,-22,73,0.4129265340019628],[120,-22,74,0.41782633275406406],[120,-22,75,0.42288665728015384],[120,-22,76,0.4280957406292654],[120,-22,77,0.43343619752168505],[120,-22,78,0.4388855973774899],[120,-22,79,0.4444170992645596],[120,-21,64,0.37179157930932577],[120,-21,65,0.37565666306536166],[120,-21,66,0.379509170295589],[120,-21,67,0.38337855955220607],[120,-21,68,0.38730820807189037],[120,-21,69,0.39133857281217066],[120,-21,70,0.3955019124894139],[120,-21,71,0.3998223478090261],[120,-21,72,0.4043160454375695],[120,-21,73,0.4089914732865081],[120,-21,74,0.4138497268742124],[120,-21,75,0.41888492639157887],[120,-21,76,0.42408468395832954],[120,-21,77,0.42943064042340234],[120,-21,78,0.4348990709357512],[120,-21,79,0.44046155839227213],[120,-20,64,0.36880249672618637],[120,-20,65,0.37251229191007673],[120,-20,66,0.37621955242776167],[120,-20,67,0.37995323308628925],[120,-20,68,0.3837575038881976],[120,-20,69,0.38767467425003743],[120,-20,70,0.3917385473660298],[120,-20,71,0.39597443072398664],[120,-20,72,0.4003993085638476],[120,-20,73,0.40502209230548897],[120,-20,74,0.4098439486771331],[120,-20,75,0.41485870512147727],[120,-20,76,0.4200533319057939],[120,-20,77,0.4254085002165008],[120,-20,78,0.43089921538016285],[120,-20,79,0.43649552422259424],[120,-19,64,0.3657674934362232],[120,-19,65,0.36932156782392656],[120,-19,66,0.37288434706427254],[120,-19,67,0.376484039912288],[120,-19,68,0.38016520566868783],[120,-19,69,0.3839716387030178],[120,-19,70,0.3879384142220209],[120,-19,71,0.3920918370809687],[120,-19,72,0.3964495906576637],[120,-19,73,0.40102097107759727],[120,-19,74,0.40580720649503066],[120,-19,75,0.41080186096626736],[120,-19,76,0.41599132228653724],[120,-19,77,0.4213553730026462],[120,-19,78,0.42686784366212654],[120,-19,79,0.432497347217182],[120,-18,64,0.3627166375150649],[120,-18,65,0.3661117555432017],[120,-18,66,0.3695276436523794],[120,-18,67,0.37299151712074496],[120,-18,68,0.37654791723861364],[120,-18,69,0.38024176463887105],[120,-18,70,0.3841091696466523],[120,-18,71,0.38817730181774945],[120,-18,72,0.39246449761739877],[120,-18,73,0.39698046201499343],[120,-18,74,0.4017265636876089],[120,-18,75,0.4066962233401636],[120,-18,76,0.4118753944688917],[120,-18,77,0.4172431357196633],[120,-18,78,0.42277227382597604],[120,-18,79,0.4284301559544875],[120,-17,64,0.3596596947874338],[120,-17,65,0.36289010772992886],[120,-17,66,0.3661539007256126],[120,-17,67,0.36947705714327134],[120,-17,68,0.3729036982021824],[120,-17,69,0.3764795200202724],[120,-17,70,0.38024145671529513],[120,-17,71,0.384217449439273],[120,-17,72,0.38842649149097874],[120,-17,73,0.3928787774168837],[120,-17,74,0.39757595579979865],[120,-17,75,0.4025114852298368],[120,-17,76,0.40767109275184216],[120,-17,77,0.4130333338893077],[120,-17,78,0.4185702531597143],[120,-17,79,0.4242481438216066],[120,-16,64,0.3565565928158559],[120,-16,65,0.35961798608404005],[120,-16,66,0.3627262935026465],[120,-16,67,0.36590605677824917],[120,-16,68,0.36920055717126077],[120,-16,69,0.37265586027284653],[120,-16,70,0.37630944202122507],[120,-16,71,0.38018984077600715],[120,-16,72,0.38431662252737997],[120,-16,73,0.3887004613273006],[120,-16,74,0.3933433346616042],[120,-16,75,0.3982388332553382],[120,-16,76,0.40337258458130765],[120,-16,77,0.40872278912619675],[120,-16,78,0.41426086826263236],[120,-16,79,0.4199522223807717],[120,-15,64,0.3533658695219431],[120,-15,65,0.3562560827643052],[120,-15,66,0.35920804295756337],[120,-15,67,0.36224466758213514],[120,-15,68,0.3654079606091214],[120,-15,69,0.3687438929678405],[120,-15,70,0.37229012229952685],[120,-15,71,0.3760755178050799],[120,-15,72,0.3801200335559836],[120,-15,73,0.3844347089274754],[120,-15,74,0.38902179590026864],[120,-15,75,0.39387501272689507],[120,-15,76,0.3989799232129247],[120,-15,77,0.40431444062457106],[120,-15,78,0.40984945500563796],[120,-15,79,0.4155495824702329],[120,-14,64,0.3500574732074638],[120,-14,65,0.3527761433040161],[120,-14,66,0.355572877212343],[120,-14,67,0.35846880740189685],[120,-14,68,0.3615042157522695],[120,-14,69,0.3647244741618045],[120,-14,70,0.36816700511305545],[120,-14,71,0.3718606744032571],[120,-14,72,0.3758255651789517],[120,-14,73,0.3800728911984017],[120,-14,74,0.3846050490990077],[120,-14,75,0.3894158091722712],[120,-14,76,0.3944906438787315],[120,-14,77,0.3998071930726318],[120,-14,78,0.4053358646542076],[120,-14,79,0.41104056912844095],[120,-13,64,0.34661070709777375],[120,-13,65,0.3491589462769002],[120,-13,66,0.35180307592262655],[120,-13,67,0.3545623004969578],[120,-13,68,0.3574747380145359],[120,-13,69,0.36058463468694274],[120,-13,70,0.3639287247659148],[120,-13,71,0.3675354909053077],[120,-13,72,0.37142483552830063],[120,-13,73,0.37560790330733146],[120,-13,74,0.3800870545654838],[120,-13,75,0.38485598910886937],[120,-13,76,0.38990001970514393],[120,-13,77,0.3951964941367079],[120,-13,78,0.4007153644819978],[120,-13,79,0.406419902016746],[120,-12,64,0.34301234814046816],[120,-12,65,0.34539245476687963],[120,-12,66,0.34788768226664707],[120,-12,67,0.350515179134776],[120,-12,68,0.35331047153326645],[120,-12,69,0.35631614876306505],[120,-12,70,0.359567787063404],[120,-12,71,0.36309308132724194],[120,-12,72,0.36691141385100084],[120,-12,73,0.3710335854735168],[120,-12,74,0.37546170894305236],[120,-12,75,0.38018926402826675],[120,-12,76,0.3852013135710906],[120,-12,77,0.39047487936971703],[120,-12,78,0.3959794764822666],[120,-12,79,0.4016778042584478],[120,-11,64,0.3392549404398547],[120,-11,65,0.34147013994155667],[120,-11,66,0.34382088277888107],[120,-11,67,0.34632214686859003],[120,-11,68,0.34900646305671434],[120,-11,69,0.35191424514126257],[120,-11,70,0.3550794431581951],[120,-11,71,0.3585285535416074],[120,-11,72,0.3622800882744151],[120,-11,73,0.36634421674867335],[120,-11,74,0.37072258020199345],[120,-11,75,0.37540827825123035],[120,-11,76,0.38038602670456545],[120,-11,77,0.3856324855016992],[120,-11,78,0.39111675531314427],[120,-11,79,0.39680104102610664],[120,-10,64,0.33533526437564726],[120,-10,65,0.3373894776889473],[120,-10,66,0.3396005559129541],[120,-10,67,0.3419812043231471],[120,-10,68,0.3445605899537785],[120,-10,69,0.34737646152617957],[120,-10,70,0.3504606932036909],[120,-10,71,0.353838183107545],[120,-10,72,0.35752622844451776],[120,-10,73,0.3615340824033797],[120,-10,74,0.3658626927112147],[120,-10,75,0.37050462137510654],[120,-10,76,0.375444144774657],[120,-10,77,0.38065753291978904],[120,-10,78,0.38611350635057423],[120,-10,79,0.39177386883406184],[120,-9,64,0.33125298308058915],[120,-9,65,0.33315061989635514],[120,-9,66,0.335226990822488],[120,-9,67,0.3374924388944321],[120,-9,68,0.3399724436742929],[120,-9,69,0.3427016435280044],[120,-9,70,0.34570942098715607],[120,-9,71,0.34901870184765815],[120,-9,72,0.3526452440471249],[120,-9,73,0.3565971158482197],[120,-9,74,0.36087436324054295],[120,-9,75,0.36546886609047535],[120,-9,76,0.3703643821910178],[120,-9,77,0.37553677799572543],[120,-9,78,0.3809544444667198],[120,-9,79,0.3865788961292696],[120,-8,64,0.32700946853376534],[120,-8,65,0.3287552425266771],[120,-8,66,0.33070177841138426],[120,-8,67,0.3328569803102169],[120,-8,68,0.3352423704980503],[120,-8,69,0.3378890898652741],[120,-8,70,0.34082366113587464],[120,-8,71,0.34406670262592615],[120,-8,72,0.34763214051727687],[120,-8,73,0.35152661623793013],[120,-8,74,0.35574908888035195],[120,-8,75,0.360290632191355],[120,-8,76,0.365134425275662],[120,-8,77,0.3702559357734961],[120,-8,78,0.37562329390511634],[120,-8,79,0.38119785542493534],[120,-7,64,0.32260681005836866],[120,-7,65,0.3242055731751372],[120,-7,66,0.32602687722083457],[120,-7,67,0.32807612449409357],[120,-7,68,0.3303706718782639],[120,-7,69,0.3329378459701325],[120,-7,70,0.33580100087440784],[120,-7,71,0.33897816211140586],[120,-7,72,0.3424811735098758],[120,-7,73,0.3463150431045462],[120,-7,74,0.35047748798581135],[120,-7,75,0.3549586776405684],[120,-7,76,0.3597411749210915],[120,-7,77,0.3648000733867868],[120,-7,78,0.3701033293863513],[120,-7,79,0.3756122868881407],[120,-6,64,0.31804700849017986],[120,-6,65,0.3195036012640238],[120,-6,66,0.32120385718480055],[120,-6,67,0.3231506286223604],[120,-6,68,0.3253569671062728],[120,-6,69,0.32784614853508237],[120,-6,70,0.33063811865663895],[120,-6,71,0.33374808360833264],[120,-6,72,0.33718560394317765],[120,-6,73,0.3409538895395435],[120,-6,74,0.34504929535611284],[120,-6,75,0.3494610175783447],[120,-6,76,0.3541709892939156],[120,-6,77,0.3591539744361362],[120,-6,78,0.364377858350852],[120,-6,79,0.3698041329767734],[120,-5,64,0.31333135970307036],[120,-5,65,0.31465047445164523],[120,-5,66,0.3162333246961613],[120,-5,67,0.3180801806582513],[120,-5,68,0.3201997213967559],[120,-5,69,0.3226110238826634],[120,-5,70,0.3253304623011856],[120,-5,71,0.3283702622933807],[120,-5,72,0.3317375556352126],[120,-5,73,0.3354336355952675],[120,-5,74,0.3394534129452213],[120,-5,75,0.343785072179141],[120,-5,76,0.3484099270863643],[120,-5,77,0.3533024744218221],[120,-5,78,0.358430644031971],[120,-5,79,0.36375624342684365],[120,-4,64,0.3084600315343894],[120,-4,65,0.30964608518838926],[120,-4,66,0.311114532776225],[120,-4,67,0.31286304698568074],[120,-4,68,0.3148959428108841],[120,-4,69,0.31722804333139587],[120,-4,70,0.3198720695177897],[120,-4,71,0.32283717542052404],[120,-4,72,0.3261279777273343],[120,-4,73,0.3297437836987254],[120,-4,74,0.333678017466816],[120,-4,75,0.3379178442664011],[120,-4,76,0.34244399175746837],[120,-4,77,0.34723076719930956],[120,-4,78,0.352246268852472],[120,-4,79,0.35745278961892285],[120,-3,64,0.303431838441203],[120,-3,65,0.3044888516425864],[120,-3,66,0.3058451804260552],[120,-3,67,0.3074959020403132],[120,-3,68,0.30944105169430847],[120,-3,69,0.31169123896870066],[120,-3,70,0.31425553392174005],[120,-3,71,0.3171400002298358],[120,-3,72,0.3203467142260758],[120,-3,73,0.3238729779637989],[120,-3,74,0.32771072630045467],[120,-3,75,0.3318461275865552],[120,-3,76,0.33625937714088505],[120,-3,77,0.3409246822999901],[120,-3,78,0.3458104374519171],[120,-3,79,0.35087958710393674],[120,-2,64,0.2982442184358322],[120,-2,65,0.2991756974397808],[120,-2,66,0.30042140545720614],[120,-2,67,0.301973844047687],[120,-2,68,0.30382892650626053],[120,-2,69,0.3059931834232296],[120,-2,70,0.30847211979255346],[120,-2,71,0.3112687624284705],[120,-2,72,0.31438268309463735],[120,-2,73,0.3178092093521081],[120,-2,74,0.32153882313023363],[120,-2,75,0.3255567466243324],[120,-2,76,0.32984271473051213],[120,-2,77,0.3343709328448792],[120,-2,78,0.33911021848610845],[120,-2,79,0.34402432484947054],[120,-1,64,0.2928934169871767],[120,-1,65,0.2937022348021698],[120,-1,66,0.29483797524315986],[120,-1,67,0.29629060111759487],[120,-1,68,0.29805213004674924],[120,-1,69,0.3001252373467846],[120,-1,70,0.30251202893398377],[120,-1,71,0.3052126181922905],[120,-1,72,0.30822416738139935],[120,-1,73,0.3115401086613171],[120,-1,74,0.3151495447451456],[120,-1,75,0.3190368288058289],[120,-1,76,0.32318132288324],[120,-1,77,0.327557333668689],[120,-1,78,0.3321342241891237],[120,-1,79,0.33687669957532984],[120,0,64,0.2873748826319721],[120,0,65,0.2880631557396047],[120,0,66,0.2890886799004719],[120,0,67,0.2904389320106487],[120,0,68,0.2921023201508676],[120,0,69,0.29407796837011824],[120,0,70,0.29636482303574396],[120,0,71,0.29896027266646436],[120,0,72,0.3018592208867523],[120,0,73,0.30505332931522067],[120,0,74,0.30853043040523775],[120,0,75,0.31227410988784077],[120,0,76,0.31626345810533757],[120,0,77,0.32047298917200023],[120,0,78,0.32487272656025334],[120,0,79,0.3294284533888683],[120,1,64,0.28168387787960264],[120,1,65,0.2822528340386022],[120,1,66,0.28316693000257837],[120,1,67,0.2844112232125388],[120,1,68,0.2859708461765924],[120,1,69,0.2878417427031099],[120,1,70,0.29002000270340866],[120,1,71,0.29250053627998635],[120,1,72,0.29527618998553046],[120,1,73,0.2983370220300205],[120,1,74,0.3016697364594612],[120,1,75,0.3052572759826561],[120,1,76,0.3090785727814809],[120,1,77,0.3131084563084213],[120,1,78,0.31731771675678144],[120,1,79,0.3216733225858595],[120,2,64,0.27581630792212314],[120,2,65,0.2762661390347957],[120,2,66,0.2770665588616288],[120,2,67,0.27820028191164753],[120,2,68,0.2796495308829801],[120,2,69,0.281407489381279],[120,2,70,0.28346774393805285],[120,2,71,0.2858230207852433],[120,2,72,0.2884643549738591],[120,2,73,0.29138040649036007],[120,2,74,0.29455692339887585],[120,2,75,0.29797635171367576],[120,2,76,0.30161759138849586],[120,2,77,0.3054558975002225],[120,2,78,0.3094629254079282],[120,2,79,0.31360691838601373],[120,3,64,0.2697697852211414],[120,3,65,0.27009948776775544],[120,3,66,0.27078286156312875],[120,3,67,0.27180035989690376],[120,3,68,0.2731316729763668],[120,3,69,0.27476767015792386],[120,3,70,0.2766998202646921],[120,3,71,0.2789189959194692],[120,3,72,0.2814147020677807],[120,3,73,0.2841744389855406],[120,3,74,0.28718319980399437],[120,3,75,0.29042310228603657],[120,3,76,0.2938731542948725],[120,3,77,0.29750915211096485],[120,3,78,0.3013037104799709],[120,3,79,0.30522642301430314],[120,4,64,0.2635449212462219],[120,4,65,0.26375211828022294],[120,4,66,0.2643138472243531],[120,4,67,0.2652083806877518],[120,4,68,0.26641324055290977],[120,4,69,0.26791742533547996],[120,4,70,0.26971068309782187],[120,4,71,0.2717823838708953],[120,4,72,0.27412081017854245],[120,4,73,0.27671256943524314],[120,4,74,0.27954212825620783],[120,4,75,0.28259146844577415],[120,4,76,0.2858398641621829],[120,4,77,0.28926377949635407],[120,4,78,0.29283688545273767],[120,4,79,0.29653019508280987],[120,5,64,0.2571468494637323],[120,5,65,0.2572275884492228],[120,5,66,0.25766170928219717],[120,5,67,0.25842537520809705],[120,5,68,0.2594942612775584],[120,5,69,0.26085590185909463],[120,5,70,0.2624987070471416],[120,5,71,0.26441089848265253],[120,5,72,0.26657985944030715],[120,5,73,0.2689915946089324],[120,5,74,0.27163029961438645],[120,5,75,0.2744780400863198],[120,5,76,0.27751453982691293],[120,5,77,0.2807170774030985],[120,5,78,0.2840604902572152],[120,5,79,0.28751728521532394],[120,6,64,0.25058698659746037],[120,6,65,0.25053550878947567],[120,6,66,0.25083452321611793],[120,6,67,0.25145813593697275],[120,6,68,0.2523804193254265],[120,6,69,0.25358777333632215],[120,6,70,0.25506760899104636],[120,6,71,0.25680733669783806],[120,6,72,0.25879376717532704],[120,6,73,0.26101261091367534],[120,6,74,0.2634480762411187],[120,6,75,0.2660825658388975],[120,6,76,0.26889647132673694],[120,6,77,0.27186806532623664],[120,6,78,0.27497349020384115],[120,6,79,0.278186842499092],[120,7,64,0.24388656749225487],[120,7,65,0.24369558275980793],[120,7,66,0.2438507236371916],[120,7,67,0.24432409995294496],[120,7,68,0.24508834625842327],[120,7,69,0.24612895602488674],[120,7,70,0.24743261178206497],[120,7,71,0.2489862100264526],[120,7,72,0.2507762985549954],[120,7,73,0.2527886027080569],[120,7,74,0.2550076406200967],[120,7,75,0.2574164273713933],[120,7,76,0.25999626773249573],[120,7,77,0.26272663699674675],[120,7,78,0.26558514920812054],[120,7,79,0.2685476119121389],[120,8,64,0.23707835949029568],[120,8,65,0.2367414181406995],[120,8,66,0.23674479053125372],[120,8,67,0.2370588271648473],[120,8,68,0.23765495559146144],[120,8,69,0.23851795815267154],[120,8,70,0.2396340128970806],[120,8,71,0.24098974412758306],[120,8,72,0.24257168456117156],[120,8,73,0.24436581809886115],[120,8,74,0.24635720334358172],[120,8,75,0.24852967781563207],[120,8,76,0.2508656426299278],[120,8,77,0.2533459272185306],[120,8,78,0.25594973350859435],[120,8,79,0.25865465880011357],[120,9,64,0.2301912592328379],[120,9,65,0.22970344367909207],[120,9,66,0.22954870524078538],[120,9,67,0.22969605861687523],[120,9,68,0.2301160480926101],[120,9,69,0.23079293251257835],[120,9,70,0.23171257408706483],[120,9,71,0.2328615109591675],[120,9,72,0.2342264378694491],[120,9,73,0.23579376006307967],[120,9,74,0.2375492206202463],[120,9,75,0.23947760121723558],[120,9,76,0.24156249615459255],[120,9,77,0.2437861593216884],[120,9,78,0.24612942360656825],[120,9,79,0.24857169210610594],[120,10,64,0.22324834521669018],[120,10,65,0.22260621193933194],[120,10,66,0.22228857427108845],[120,10,67,0.22226367189953594],[120,10,68,0.22250155569851682],[120,10,69,0.22298613742317225],[120,10,70,0.22370311630972323],[120,10,71,0.22463907649438283],[120,10,72,0.22578098474027708],[120,10,73,0.22711575458544883],[120,10,74,0.22862987713440416],[120,10,75,0.23030911855616826],[120,10,76,0.23213828419417432],[120,10,77,0.2341010490389516],[120,10,78,0.23617985416607784],[120,10,79,0.23835586859905028],[120,11,64,0.21626950947279353],[120,11,65,0.21547103551741775],[120,11,66,0.21498724566952546],[120,11,67,0.21478625468307844],[120,11,68,0.214838048708439],[120,11,69,0.2151263520275339],[120,11,70,0.21563681618050548],[120,11,71,0.21635615070765446],[120,11,72,0.21727164099210847],[120,11,73,0.21837072586228914],[120,11,74,0.21964063521301924],[120,11,75,0.2210680877584326],[120,11,76,0.2226390488855257],[120,11,77,0.22433854843554446],[120,11,78,0.22615055810386503],[120,11,79,0.22805792801732191],[120,12,64,0.20927437973088903],[120,12,65,0.20831890943681095],[120,12,66,0.20766720499650032],[120,12,67,0.20728794860572367],[120,12,68,0.20715150129777749],[120,12,69,0.20724153509602902],[120,12,70,0.20754372843187513],[120,12,71,0.20804494356623462],[120,12,72,0.20873277170826468],[120,12,73,0.20959513099240762],[120,12,74,0.21061991760044746],[120,12,75,0.21179471018433618],[120,12,76,0.21310652761550022],[120,12,77,0.2145416399583824],[120,12,78,0.21608543244240302],[120,12,79,0.21772232208691705],[120,13,64,0.20228553758700107],[120,13,65,0.2011737250659807],[120,13,66,0.2003537560187262],[120,13,67,0.199795568378899],[120,13,68,0.19947031986773076],[120,13,69,0.1993617314183927],[120,13,70,0.19945553794646528],[120,13,71,0.19973872998632627],[120,13,72,0.20019913694855945],[120,13,73,0.20082505566571204],[120,13,74,0.20160492453014553],[120,13,75,0.20252704341357372],[120,13,76,0.20357933944414777],[120,13,77,0.20474917860467423],[120,13,78,0.20602322300697387],[120,13,79,0.20738733359183928],[120,14,64,0.19533203933452598],[120,14,65,0.19406578220695023],[120,14,66,0.1930784927068904],[120,14,67,0.19234200255527156],[120,14,68,0.19182864046366704],[120,14,69,0.19152223172458055],[120,14,70,0.19140854692959974],[120,14,71,0.19147462886560332],[120,14,72,0.19170842804731064],[120,14,73,0.19209847482919404],[120,14,74,0.19263358840574993],[120,14,75,0.1933026229149655],[120,14,76,0.19409425076554832],[120,14,77,0.1949967832150646],[120,14,78,0.1959980281355934],[120,14,79,0.19708518481503354],[120,15,64,0.1884540396271117],[120,15,65,0.1870362162084779],[120,15,66,0.18588342064528546],[120,15,67,0.1849699251121547],[120,15,68,0.18426953684581054],[120,15,69,0.18376619787843057],[120,15,70,0.18344565645858743],[120,15,71,0.18329490177133362],[120,15,72,0.18330186748644006],[120,15,73,0.1834551616513868],[120,15,74,0.18374382323255917],[120,15,75,0.18415710553806938],[120,15,76,0.1846842866849467],[120,15,77,0.1853145072028741],[120,15,78,0.18603663479807128],[120,15,79,0.18683915623330413],[120,16,64,0.1816943294015625],[120,16,65,0.18012800079801325],[120,16,66,0.17881128379716874],[120,16,67,0.17772133634078133],[120,16,68,0.17683370971106935],[120,16,69,0.17613248696732298],[120,16,70,0.17560337022798253],[120,16,71,0.17523324161522286],[120,16,72,0.17500994719765514],[120,16,73,0.17492209565584027],[120,16,74,0.17495887196172366],[120,16,75,0.1751098663210039],[120,16,76,0.17536491858408387],[120,16,77,0.1757139782871613],[120,16,78,0.17614698044190225],[120,16,79,0.17665373714869523],[120,17,64,0.17507368184463018],[120,17,65,0.1733618898324826],[120,17,66,0.17188250996153687],[120,17,67,0.17061593213423046],[120,17,68,0.16953968246992496],[120,17,69,0.1686380344785839],[120,17,70,0.16789666670992676],[120,17,71,0.16730236315467598],[120,17,72,0.16684288589616422],[120,17,73,0.16650684976093014],[120,17,74,0.16628359924390773],[120,17,75,0.16616308797274243],[120,17,76,0.16613576096269142],[120,17,77,0.1661924398988444],[120,17,78,0.16632421166748176],[120,17,79,0.16652232034172476],[120,18,64,0.1685899654574442],[120,18,65,0.16673570848631084],[120,18,66,0.16509475730634707],[120,18,67,0.1636509825750886],[120,18,68,0.16238407960480244],[120,18,69,0.16127858431563785],[120,18,70,0.16032021317406323],[120,18,71,0.15949571153344247],[120,18,72,0.15879281978953455],[120,18,73,0.1582002280030128],[120,18,74,0.15770751924855733],[120,18,75,0.15730510197233297],[120,18,76,0.15698413165913835],[120,18,77,0.15673642212727107],[120,18,78,0.15655434678445446],[120,18,79,0.15643073019015796],[120,19,64,0.16119156783634203],[120,19,65,0.16002738788009221],[120,19,66,0.1584263847890603],[120,19,67,0.15680473342711582],[120,19,68,0.15534493235744856],[120,19,69,0.15403187136615926],[120,19,70,0.15285139813953133],[120,19,71,0.15179031867252107],[120,19,72,0.15083645868377446],[120,19,73,0.14997869945515085],[120,19,74,0.1492069883404113],[120,19,75,0.14851232424490085],[120,19,76,0.14788671843153262],[120,19,77,0.14732313105803763],[120,19,78,0.14681538389721938],[120,19,79,0.1463580497337689],[120,20,64,0.1496100422455576],[120,20,65,0.1482546331407283],[120,20,66,0.14695513892880058],[120,20,67,0.14572379855266646],[120,20,68,0.1445778843682777],[120,20,69,0.1435321595420642],[120,20,70,0.14259910088714844],[120,20,71,0.1417888266214538],[120,20,72,0.14110901957327232],[120,20,73,0.14056488885268845],[120,20,74,0.14015916975585208],[120,20,75,0.13975115683361605],[120,20,76,0.13881122787130593],[120,20,77,0.13792183720310192],[120,20,78,0.13707842499887102],[120,20,79,0.1362774805483718],[120,21,64,0.13773519318995261],[120,21,65,0.1361841802378506],[120,21,66,0.1347103826226885],[120,21,67,0.13332255956184408],[120,21,68,0.13203569623477257],[120,21,69,0.13086424578204822],[120,21,70,0.12982060494067363],[120,21,71,0.12891489038175266],[120,21,72,0.12815476801278414],[120,21,73,0.1275453349762387],[120,21,74,0.1270890541215231],[120,21,75,0.12678574060036635],[120,21,76,0.12663260011254482],[120,21,77,0.12662431821118517],[120,21,78,0.12675319996719084],[120,21,79,0.12615723712200572],[120,22,64,0.12563248271979804],[120,22,65,0.1238816645553407],[120,22,66,0.12223037111549756],[120,22,67,0.12068398653389703],[120,22,68,0.1192551704815758],[120,22,69,0.117957937740374],[120,22,70,0.1168044566118577],[120,22,71,0.1158046804985245],[120,22,72,0.11496608826828426],[120,22,73,0.1142934911862443],[120,22,74,0.1137889061984038],[120,22,75,0.11345149518973256],[120,22,76,0.113277569681977],[120,22,77,0.11326066028613005],[120,22,78,0.11339165008365132],[120,22,79,0.11365897097889907],[120,23,64,0.11337322521472286],[120,23,65,0.11141862718862428],[120,23,66,0.10958648189980433],[120,23,67,0.10787897939113998],[120,23,68,0.10630645580277406],[120,23,69,0.10488235493332174],[120,23,70,0.10361846166462595],[120,23,71,0.10252439835625307],[120,23,72,0.10160728285852684],[120,23,73,0.1008714663363717],[120,23,74,0.10031835069371983],[120,23,75,0.09994628519244046],[120,23,76,0.09975054167000526],[120,23,77,0.09972336757836711],[120,23,78,0.09985411589593632],[120,23,79,0.10012945080496422],[120,24,64,0.10103165992348698],[120,24,65,0.09886958831006064],[120,24,66,0.09685308984113915],[120,24,67,0.09498141086620734],[120,24,68,0.09326260550436405],[120,24,69,0.0917094135899404],[120,24,70,0.09033308020954711],[120,24,71,0.08914272902781488],[120,24,72,0.08814494588718369],[120,24,73,0.08734345458517476],[120,24,74,0.08673888462214425],[120,24,75,0.0863286304851132],[120,24,76,0.08610680181294526],[120,24,77,0.0860642635770948],[120,24,78,0.08618876521377061],[120,24,79,0.08646515745777177],[120,25,64,0.08868216737691555],[120,25,65,0.08630926158457163],[120,25,66,0.08410479893702089],[120,25,67,0.08206539404422837],[120,25,68,0.0801968986261346],[120,25,69,0.07851121906287553],[120,25,70,0.07701890768672205],[120,25,71,0.07572842733750049],[120,25,72,0.07464566958785025],[120,25,73,0.07377357640996506],[120,25,74,0.07311186507868707],[120,25,75,0.07265685584946888],[120,25,76,0.07240140170143222],[120,25,77,0.07233491919795858],[120,25,78,0.07244351929357475],[120,25,79,0.07271023670668397],[120,26,64,0.07639663208461836],[120,26,65,0.07380991189907943],[120,26,66,0.07141381288720594],[120,26,67,0.06920268267757482],[120,26,68,0.06718028619780839],[120,26,69,0.06535757404808458],[120,26,70,0.06374426063268925],[120,26,71,0.06234799603982919],[120,26,72,0.06117382878927151],[120,26,73,0.06022378198517238],[120,26,74,0.05949654266999465],[120,26,75,0.05898726389329557],[120,26,76,0.05868747873605395],[120,26,77,0.05858512526971474],[120,26,78,0.05866468118310805],[120,26,79,0.05890740658038184],[120,27,64,0.06424195413869874],[120,27,65,0.061438858888513095],[120,27,66,0.05884744678600358],[120,27,67,0.05646020638172149],[120,27,68,0.05427896450482924],[120,27,69,0.05231360422391425],[120,27,70,0.05057286854589003],[120,27,71,0.049063457103928614],[120,27,72,0.047789443940352214],[120,27,73,0.046751817193521825],[120,27,74,0.04594814048528933],[120,27,75,0.04537233550133917],[120,27,76,0.04501458496237733],[120,27,77,0.04486135490239132],[120,27,78,0.04489553490516534],[120,27,79,0.04509669470256328],[120,28,64,0.05227771259679852],[120,28,65,0.04925612899733621],[120,28,66,0.04646578250833169],[120,28,67,0.04389774308361311],[120,28,68,0.04155207750117675],[120,28,69,0.03943750317788172],[120,28,70,0.037561673415349585],[120,28,71,0.035930217331739234],[120,28,72,0.03454612355735971],[120,28,73,0.03340925274147486],[120,28,74,0.032515978667551064],[120,28,75,0.031858957451854464],[120,28,76,0.03142702398857763],[120,28,77,0.031205214506487302],[120,28,78,0.031174913821630387],[120,28,79,0.031314125608754344],[120,29,64,0.04055398379359524],[120,29,65,0.037312259099820715],[120,29,66,0.034319470650349314],[120,29,67,0.031565731385224435],[120,29,68,0.029049550796975375],[120,29,69,0.026778398775527006],[120,29,70,0.02475873875513108],[120,29,71,0.02299502980406287],[120,29,72,0.02148908720517705],[120,29,73,0.020239577079313335],[120,29,74,0.01924164484981218],[120,29,75,0.018486677010201222],[120,29,76,0.017962195332182178],[120,29,77,0.01765188234038677],[120,29,78,0.017535736588330016],[120,29,79,0.01759035599748591],[120,30,64,0.029109333867007127],[120,30,65,0.02564627151408446],[120,30,66,0.022447699364939643],[120,30,67,0.019503243644106008],[120,30,68,0.016810078438383152],[120,30,69,0.014374362555783348],[120,30,70,0.012201290046193625],[120,30,71,0.010294073324182076],[120,30,72,0.008653291403540037],[120,30,73,0.007276375694642952],[120,30,74,0.0061572331644425],[120,30,75,0.005286006313243598],[120,30,76,0.00464896908852409],[120,30,77,0.004228557537031092],[120,30,78,0.004003533696653042],[120,30,79,0.0039492809501233675],[120,31,64,0.017973195364155044],[120,31,65,0.014288203847146746],[120,31,66,0.010880885931793762],[120,31,67,0.007740846630271456],[120,31,68,0.004864158763165805],[120,31,69,0.002255626053949243],[120,31,70,-8.088390775868107E-5],[120,31,71,-0.002143457241628125],[120,31,72,-0.003932787657707845],[120,31,73,-0.005452690949799678],[120,31,74,-0.0067104802990040156],[120,31,75,-0.0077172029360755515],[120,31,76,-0.008487739049838615],[120,31,77,-0.00904076415225076],[120,31,78,-0.009398576414260135],[120,31,79,-0.009586790769356708],[120,32,64,0.0071703616720376825],[120,32,65,0.0032638130963149204],[120,32,66,-3.544032022012051E-4],[120,32,67,-0.003694257426469708],[120,32,68,-0.006760539873133834],[120,32,69,-0.00954982613795779],[120,32,70,-0.012059608719998208],[120,32,71,-0.01428929825831029],[120,32,72,-0.016240870219827917],[120,32,73,-0.017919371995296404],[120,32,74,-0.019333290597831634],[120,32,75,-0.020494781510321594],[120,32,76,-0.021419759567164597],[120,32,77,-0.022127853079586503],[120,32,78,-0.022642222717481772],[120,32,79,-0.02298924694333732],[120,33,64,-0.003288423452166527],[120,33,65,-0.007415214918421441],[120,33,66,-0.01124561483764734],[120,33,67,-0.014788757327053455],[120,33,68,-0.018050062649115087],[120,33,69,-0.021027490386156745],[120,33,70,-0.02371990241225587],[120,33,71,-0.02612803267686687],[120,33,72,-0.02825511875364975],[120,33,73,-0.030107395076519744],[120,33,74,-0.03169444805273334],[120,33,75,-0.033029433591510005],[120,33,76,-0.03412915792290808],[120,33,77,-0.03501402290228696],[120,33,78,-0.03570783729617184],[120,33,79,-0.03623749582468485],[120,34,64,-0.01340915276193904],[120,34,65,-0.017754043272092117],[120,34,66,-0.021797073012347123],[120,34,67,-0.025546179436333707],[120,34,68,-0.029007194810389193],[120,34,69,-0.03217944887431643],[120,34,70,-0.03506315739806391],[120,34,71,-0.037660348084120526],[120,34,72,-0.03997547090425277],[120,34,73,-0.042015872680867046],[120,34,74,-0.043792136095868385],[120,34,75,-0.04531828365228904],[120,34,76,-0.046611847443925894],[120,34,77,-0.04769380590267416],[120,34,78,-0.04858838898765287],[120,34,79,-0.04932275355365842],[120,35,64,-0.02321569832037795],[120,35,65,-0.027775863058170355],[120,35,66,-0.03203119216715334],[120,35,67,-0.0359881335166756],[120,35,68,-0.03965274012893495],[120,35,69,-0.043025681696270114],[120,35,70,-0.04610848777369525],[120,35,71,-0.04890442090163245],[120,35,72,-0.05141906211880001],[120,35,73,-0.05366076427729263],[120,35,74,-0.055640973332345835],[120,35,75,-0.057374418112820375],[120,35,76,-0.05887916939970042],[120,35,77,-0.06017656944585177],[120,35,78,-0.06129103335646592],[120,35,79,-0.062249724015155494],[120,36,64,-0.03212368495982359],[120,36,65,-0.03622916042708836],[120,36,66,-0.04013271790992456],[120,36,67,-0.04383783922299416],[120,36,68,-0.04734888018948089],[120,36,69,-0.05066556503193895],[120,36,70,-0.05378797638865759],[120,36,71,-0.05671739212159975],[120,36,72,-0.05945686611500753],[120,36,73,-0.06201168075825899],[120,36,74,-0.06438967126907284],[120,36,75,-0.06660142233711974],[120,36,76,-0.06866033787908139],[120,36,77,-0.0705825849916577],[120,36,78,-0.07238691346633278],[120,36,79,-0.0707783966195149],[120,37,64,-0.038106377071507054],[120,37,65,-0.042233684327255834],[120,37,66,-0.046156474441520566],[120,37,67,-0.0498765057655948],[120,37,68,-0.053398212234447906],[120,37,69,-0.056722697119718786],[120,37,70,-0.05985136614620923],[120,37,71,-0.0627867061411333],[120,37,72,-0.06553284199400865],[120,37,73,-0.06809596971120509],[120,37,74,-0.070484665697161],[120,37,75,-0.07271007270739281],[120,37,76,-0.0722394805274786],[120,37,77,-0.06685849344683055],[120,37,78,-0.06150539772185705],[120,37,79,-0.056204363596683495],[120,38,64,-0.04381378943150922],[120,38,65,-0.047955675076802796],[120,38,66,-0.05189226388490112],[120,38,67,-0.05562361068288828],[120,38,68,-0.05915420354911388],[120,38,69,-0.06248647780547721],[120,38,70,-0.06562306245997115],[120,38,71,-0.0685675081230148],[120,38,72,-0.07132482824473711],[120,38,73,-0.07390192055257426],[120,38,74,-0.06893185519819567],[120,38,75,-0.0634322436472915],[120,38,76,-0.057924144510991225],[120,38,77,-0.052428129398698085],[120,38,78,-0.04696664020313423],[120,38,79,-0.041563712700219406],[120,39,64,-0.049294918356761086],[120,39,65,-0.05344359764450286],[120,39,66,-0.05738781984545242],[120,39,67,-0.06112596048410087],[120,39,68,-0.06466258059461792],[120,39,69,-0.06800145176819106],[120,39,70,-0.0711463624433175],[120,39,71,-0.07146312292134428],[120,39,72,-0.06595719973903584],[120,39,73,-0.06039898594498727],[120,39,74,-0.054803460797954624],[120,39,75,-0.04918740432015163],[120,39,76,-0.04356947770579085],[120,39,77,-0.03797018949737252],[120,39,78,-0.032411748674058605],[120,39,79,-0.026917806030063173],[120,40,64,-0.05455717944530283],[120,40,65,-0.058703548098600275],[120,40,66,-0.06264784099181904],[120,40,67,-0.06638668349560703],[120,40,68,-0.06992473692012598],[120,40,69,-0.06872485239738366],[120,40,70,-0.06322408037112266],[120,40,71,-0.057650979047305324],[120,40,72,-0.05201845059525437],[120,40,73,-0.04634043639264226],[120,40,74,-0.04063223893293321],[120,40,75,-0.0349107309735389],[120,40,76,-0.02919445246633207],[120,40,77,-0.02350359607541256],[120,40,78,-0.017859882335525212],[120,40,79,-0.01228632573394017],[120,41,64,-0.059611735300179144],[120,41,65,-0.06374565293017657],[120,41,66,-0.06768127062907695],[120,41,67,-0.0661506327054802],[120,41,68,-0.060687083548442655],[120,41,69,-0.055130979674753146],[120,41,70,-0.04949597909954507],[120,41,71,-0.04379546034992229],[120,41,72,-0.038043084687926255],[120,41,73,-0.03225324805687018],[120,41,74,-0.02644142264099148],[120,41,75,-0.020624388213265867],[120,41,76,-0.0148203537192185],[120,41,77,-0.009048969803908881],[120,41,78,-0.003331233234496294],[120,41,79,0.0023107156024067006],[120,42,64,-0.06447245447610878],[120,42,65,-0.06371117369015285],[120,42,66,-0.05832409140351994],[120,42,67,-0.052820177804204956],[120,42,68,-0.04721269663758238],[120,42,69,-0.04151812019723346],[120,42,70,-0.035751631673527726],[120,42,71,-0.029927731681910354],[120,42,72,-0.024060823444015778],[120,42,73,-0.018165690091538598],[120,42,74,-0.012257863883648433],[120,42,75,-0.0063538874098610304],[120,42,76,-4.7146712001946197E-4],[120,42,77,0.005370480220267086],[120,42,78,0.011151887307152657],[120,42,79,0.016851701241982042],[120,43,64,-0.05612429699192384],[120,43,65,-0.050696842357818114],[120,43,66,-0.04515731213284968],[120,43,67,-0.039504882529241614],[120,43,68,-0.033753173189738944],[120,43,69,-0.027920762944627732],[120,43,70,-0.02202449881108844],[120,43,71,-0.01608008017213714],[120,43,72,-0.010102674056637576],[120,43,73,-0.004107424717166281],[120,43,74,0.0018901428154723876],[120,43,75,0.007873825244074624],[120,43,76,0.013826549358784825],[120,43,77,0.019730285753358376],[120,43,78,0.025566067182327477],[120,43,79,0.03131411061227002],[120,44,64,-0.04332069272660282],[120,44,65,-0.03773262939389232],[120,44,66,-0.03203916886915271],[120,44,67,-0.02623719381913603],[120,44,68,-0.02034074192489273],[120,44,69,-0.014370711131636276],[120,44,70,-0.008345769703044369],[120,44,71,-0.002282918788306866],[120,44,72,0.003801856821776136],[120,44,73,0.009893041576845611],[120,44,74,0.01597514613083514],[120,44,75,0.02203236855544883],[120,44,76,0.028048359705445332],[120,44,77,0.03400609238405204],[120,44,78,0.03988783371502197],[120,44,79,0.04567521990230238],[120,45,64,-0.030592350577630857],[120,45,65,-0.024842498722828045],[120,45,66,-0.01899430802851922],[120,45,67,-0.013042246789505482],[120,45,68,-0.007000850138927177],[120,45,69,-8.935474633841789E-4],[120,45,70,0.005259004594206379],[120,45,71,0.011438381802940992],[120,45,72,0.017627702640482672],[120,45,73,0.023811040141189167],[120,45,74,0.029972935869722186],[120,45,75,0.03609801632048609],[120,45,76,0.04217071177923408],[120,45,77,0.04817507743025111],[120,45,78,0.05409471625089861],[120,45,79,0.05991280300914778],[120,46,64,-0.017949400102686135],[120,46,65,-0.012037979110951974],[120,46,66,-0.006035464022979751],[120,46,67,6.615026850933636E-5],[120,46,68,0.006251729638141909],[120,46,69,0.012495107850504457],[120,46,70,0.01877347011143167],[120,46,71,0.02506683676754047],[120,46,72,0.03135733312843879],[120,46,73,0.03762855857210607],[120,46,74,0.04386505564271884],[120,46,75,0.05005187957927954],[120,46,76,0.05617426845134435],[120,46,77,0.06221741382643561],[120,46,78,0.06816633165251111],[120,46,79,0.07400583281228713],[120,47,64,-0.005401664171454372],[120,47,65,6.695663030372358E-4],[120,47,66,0.006824636842932184],[120,47,67,0.013074013775988746],[120,47,68,0.019401841636008228],[120,47,69,0.025779027848557907],[120,47,70,0.032180435668702434],[120,47,71,0.038584394618219095],[120,47,72,0.044971930178782475],[120,47,73,0.05132609016918325],[120,47,74,0.05763136865351955],[120,47,75,0.06387322795983112],[120,47,76,0.07003771912930559],[120,47,77,0.07611120086641113],[120,47,78,0.08208015682018321],[120,47,79,0.08719880837288461],[120,48,64,0.006989241768613588],[120,48,65,0.013218111157616638],[120,48,66,0.01952387461473492],[120,48,67,0.025919400416835714],[120,48,68,0.03238799438529352],[120,48,69,0.03889748890540146],[120,48,70,0.045420285944022545],[120,48,71,0.051932897399594904],[120,48,72,0.05841513670024348],[120,48,73,0.0648494041532055],[120,48,74,0.07122006702869386],[120,48,75,0.07751293509822062],[120,48,76,0.08371483209166733],[120,48,77,0.08955755424090256],[120,48,78,0.09430449780753622],[120,48,79,0.0989494568504622],[120,49,64,0.019154805691829077],[120,49,65,0.02553894667544819],[120,49,66,0.031993661669333956],[120,49,67,0.0385341189328264],[120,49,68,0.045142680942750084],[120,49,69,0.05178400683918058],[120,49,70,0.05842793147729769],[120,49,71,0.0650490389933038],[120,49,72,0.07162581978644113],[120,49,73,0.0781399180304308],[120,49,74,0.08457547082849944],[120,49,75,0.09024240660855043],[120,49,76,0.09547047170632056],[120,49,77,0.1005932621891506],[120,49,78,0.10561616763926591],[120,49,79,0.11054440734666854],[120,50,64,0.031035859190405378],[120,50,65,0.03757258683712279],[120,50,66,0.04417446089150601],[120,50,67,0.05085880382952895],[120,50,68,0.057606943907185404],[120,50,69,0.06438032196256757],[120,50,70,0.07114613765219853],[120,50,71,0.0777259653301745],[120,50,72,0.08362649535427329],[120,50,73,0.08940805617486233],[120,50,74,0.09507957983786934],[120,50,75,0.10064795085600595],[120,50,76,0.1061185358439592],[120,50,77,0.11149562204159214],[120,50,78,0.1167827644561224],[120,50,79,0.12198304157532536],[120,51,64,0.0403749762853914],[120,51,65,0.04766106491167503],[120,51,66,0.054752665437633],[120,51,67,0.061620910989784],[120,51,68,0.06827621813161432],[120,51,69,0.07475122139532604],[120,51,70,0.08107249945003904],[120,51,71,0.0872609433313834],[120,51,72,0.09333267051833491],[120,51,73,0.09929985492598731],[120,51,74,0.10517147146713389],[120,51,75,0.11095395407857422],[120,51,76,0.11665176634796874],[120,51,77,0.1222678841117806],[120,51,78,0.1278041896208648],[120,51,79,0.1332617770878089],[120,52,64,0.049053615069102025],[120,52,65,0.05644001669503643],[120,52,66,0.06363749315762376],[120,52,67,0.07061527456171052],[120,52,68,0.07738473788096421],[120,52,69,0.08398141130145283],[120,52,70,0.09043422803352374],[120,52,71,0.0967658560712486],[120,52,72,0.1029936333681182],[120,52,73,0.1091304226119863],[120,52,74,0.11518538415376728],[120,52,75,0.1211646658799402],[120,52,76,0.1270720090519918],[120,52,77,0.1329092693645606],[120,52,78,0.13867685269480848],[120,52,79,0.14437406522872567],[120,53,64,0.05778367016270101],[120,53,65,0.06526318633416986],[120,53,66,0.07255788430789395],[120,53,67,0.0796353546102471],[120,53,68,0.08650798418726287],[120,53,69,0.09321408995853883],[120,53,70,0.09978491327770146],[120,53,71,0.10624490945271242],[120,53,72,0.1126126972756043],[120,53,73,0.11890193188473802],[120,53,74,0.1251220994305772],[120,53,75,0.13127923224350407],[120,53,76,0.13737654342787659],[120,53,77,0.14341498002842812],[120,53,78,0.14939369412992332],[120,53,79,0.15531043145903536],[120,54,64,0.06656221797710132],[120,54,65,0.07412790032618008],[120,54,66,0.0815113565472095],[120,54,67,0.08867882501871598],[120,54,68,0.09564373432465179],[120,54,69,0.10244703892581729],[120,54,70,0.10912220313204687],[120,54,71,0.11569544930786854],[120,54,72,0.12218671483116188],[120,54,73,0.12861053610089807],[120,54,74,0.134976857997361],[120,54,75,0.14129176741737753],[120,54,76,0.147558149724911],[120,54,77,0.153776267172031],[120,54,78,0.15994425855354438],[120,54,79,0.1660585595608292],[120,55,64,0.07537838153175361],[120,55,65,0.08302358330824854],[120,55,66,0.09048762760498476],[120,55,67,0.09773570303360334],[120,55,68,0.10478229278616571],[120,55,69,0.11167079647280329],[120,55,70,0.11843678022094967],[120,55,71,0.1251081832284599],[120,55,72,0.13170627528089698],[120,55,73,0.13824654495184613],[120,55,74,0.1447395168384472],[120,55,75,0.151191496394863],[120,55,76,0.1576052411360712],[120,55,77,0.16398055719141313],[120,55,78,0.17031482038859833],[120,55,79,0.17660342124478837],[120,56,64,0.08421381216641197],[120,56,65,0.09193222224628855],[120,56,66,0.09946905953022389],[120,56,67,0.10678877043826888],[120,56,68,0.11390688655034953],[120,56,69,0.1208690251361866],[120,56,70,0.12771270089621173],[120,56,71,0.13446749127342184],[120,56,72,0.1411559879344662],[120,56,73,0.14779468242164906],[120,56,74,0.1543947842931749],[120,56,75,0.16096297027082146],[120,56,76,0.1675020631156062],[120,56,77,0.17401163915121853],[120,56,78,0.18048856354893614],[120,56,79,0.18692745267692729],[120,57,64,0.09304326764642423],[120,57,65,0.10082892777030444],[120,57,66,0.10843120006232917],[120,57,67,0.11581409150710775],[120,57,68,0.12299415655929864],[120,57,69,0.13001897450425795],[120,57,70,0.1369278279703796],[120,57,71,0.14375182814282406],[120,57,72,0.15051485409154042],[120,57,73,0.15723442955277492],[120,57,74,0.1639225354622824],[120,57,75,0.17058635673175138],[120,57,76,0.17722896195306595],[120,57,77,0.18384991490634134],[120,57,78,0.1904458169341318],[120,57,79,0.1970107794263855],[120,58,64,0.10183528893976093],[120,58,65,0.10968259500880932],[120,58,66,0.1173434235315945],[120,58,67,0.12478163019589762],[120,58,68,0.13201474790565665],[120,58,69,0.13909204175586065],[120,58,70,0.14605435966969382],[120,58,71,0.15293421934681803],[120,58,72,0.15975672998017285],[120,58,73,0.16654045445008187],[120,58,74,0.17329821028943385],[120,58,75,0.18003780789870832],[120,58,76,0.18676272467467067],[120,58,77,0.19347271390005435],[120,58,78,0.20016434742054015],[120,58,79,0.20683149131042677],[120,59,64,0.11055297783310229],[120,59,65,0.11845666616618447],[120,59,66,0.12616967359198625],[120,59,67,0.1336559689227764],[120,59,68,0.1409340011292995],[120,59,69,0.1480544323890965],[120,59,70,0.15505945725918427],[120,59,71,0.16198285381784575],[120,59,72,0.16885088312612476],[120,59,73,0.1756831318856673],[120,59,74,0.18249329659536778],[120,59,75,0.18928990768642237],[120,59,76,0.1960769922927217],[120,59,77,0.2028546744894694],[120,59,78,0.20961971200458343],[120,59,79,0.2163659685754915],[120,60,64,0.11915487702813948],[120,60,65,0.12710999655958624],[120,60,66,0.1348693095614484],[120,60,67,0.14239713076757093],[120,60,68,0.14971274649902197],[120,60,69,0.1568679230515931],[120,60,70,0.1639059732716607],[120,60,71,0.170861774896805],[120,60,72,0.1777626440583261],[120,60,73,0.18462915435729238],[120,60,74,0.19147589983649485],[120,60,75,0.19831220034053587],[120,60,76,0.20514274792639275],[120,60,77,0.21196819315560617],[120,60,78,0.2187856702639339],[120,60,79,0.22558926036553106],[120,61,64,0.12759594336017946],[120,61,65,0.13559781475054242],[120,61,66,0.14339804698317668],[120,61,67,0.1509614956768383],[120,61,68,0.1583081918373111],[120,61,69,0.16549071699181578],[120,61,70,0.17255327080677269],[120,61,71,0.17953166008686566],[120,61,72,0.18645414364901347],[120,61,73,0.1933422247785452],[120,61,74,0.20021138961885218],[120,61,75,0.2070717900090702],[120,61,76,0.21392886944785078],[120,61,77,0.22078393102351632],[120,61,78,0.2276346463090454],[120,61,79,0.2344755043751204],[120,62,64,0.1358286385178923],[120,62,65,0.14387280140240002],[120,62,66,0.15170901727480338],[120,62,67,0.15930283577062962],[120,62,68,0.1666749292075019],[120,62,69,0.173878417662115],[120,62,70,0.1809581596248705],[120,62,71,0.1879507154717681],[120,62,72,0.19488516213185378],[120,62,73,0.20178385696213733],[120,62,74,0.2086631492166801],[120,62,75,0.21553403765405765],[120,62,76,0.2224027729850464],[120,62,77,0.22927140401869947],[120,62,78,0.23613826651720815],[120,62,79,0.24299841391877475],[120,63,64,0.14380414370967098],[120,63,65,0.151886293431928],[120,63,66,0.15975395314322677],[120,63,67,0.16737347653405873],[120,63,68,0.1747660673485767],[120,63,69,0.18198512745183207],[120,63,70,0.18907595609260539],[120,63,71,0.19607569191521487],[120,63,72,0.20301409695172676],[120,63,73,0.20991429106165904],[120,63,74,0.21679343524523598],[120,63,75,0.22366336240884102],[120,63,76,0.23053115431392487],[120,63,77,0.23739966359179143],[120,63,78,0.24426797985368115],[120,63,79,0.2511318390690805],[120,64,64,0.1514736697859943],[120,64,65,0.15958958481643729],[120,64,66,0.1674844709694921],[120,64,67,0.17512555494110707],[120,64,68,0.18253446074889268],[120,64,69,0.18976464228083906],[120,64,70,0.19686163753990554],[120,64,71,0.20386299341607178],[120,64,72,0.21079901961822375],[120,64,73,0.2176934939206995],[120,64,74,0.22456431719118827],[120,64,75,0.2314241168152763],[120,64,76,0.23828079728137078],[120,64,77,0.2451380368365748],[120,64,78,0.2519957292666287],[120,64,79,0.25885036999193445],[120,65,64,0.1587898770324408],[120,65,65,0.1669353384494101],[120,65,66,0.1748534647239541],[120,65,67,0.18251238923506685],[120,65,68,0.18993405024493656],[120,65,69,0.19717175709331364],[120,65,70,0.2042711062087729],[120,65,71,0.21126989292302667],[120,65,72,0.21819883696860176],[120,65,73,0.2250822598131137],[120,65,74,0.23193871233620342],[120,65,75,0.23878155150071112],[120,65,76,0.24561946481482944],[120,65,77,0.2524569415253322],[120,65,78,0.2592946896208791],[120,65,79,0.2661299978594713],[120,66,64,0.16570840645094276],[120,66,65,0.17387911094719452],[120,66,66,0.18181661339101574],[120,66,67,0.18948996242077448],[120,66,68,0.1969213172756835],[120,66,69,0.20416368445213212],[120,66,70,0.21126256505366517],[120,66,71,0.21825585791319518],[120,66,72,0.22517455917114537],[120,66,73,0.23204341391068545],[120,66,74,0.23888151839188954],[120,66,75,0.24570287156994688],[120,66,76,0.2525168747252637],[120,66,77,0.2593287781740357],[120,66,78,0.266140074163926],[120,66,79,0.2729488351915223],[120,67,64,0.1721895232155422],[120,67,65,0.18038099116891262],[120,67,66,0.18833400273520998],[120,67,67,0.19601852037026565],[120,67,68,0.2034568527646],[120,67,69,0.21070158727202004],[120,67,70,0.21779800648882272],[120,67,71,0.22478398687430517],[120,67,72,0.23169067563638016],[120,67,73,0.23854311965404332],[120,67,74,0.245360845008715],[120,67,75,0.252158385838299],[120,67,76,0.2589457613688604],[120,67,77,0.26572890011767747],[120,67,78,0.2725100103954184],[120,67,79,0.2792878963649493],[120,68,64,0.1781998727380911],[120,68,65,0.1864073529578979],[120,68,66,0.19437186198554365],[120,68,67,0.20206428518871664],[120,68,68,0.20950704134755874],[120,68,69,0.2167522264780988],[120,68,70,0.22384481493025235],[120,68,71,0.230822557588062],[120,68,72,0.23771663976901858],[120,68,73,0.24455229097750858],[120,68,74,0.2513493451075285],[120,68,75,0.25812274983077904],[120,68,76,0.2648830240462643],[120,68,77,0.27163666240515905],[120,68,78,0.2783864860572806],[120,68,79,0.28513193889365446],[120,69,64,0.18356206941091768],[120,69,65,0.19180045524934308],[120,69,66,0.19990442088860214],[120,69,67,0.20760128960922034],[120,69,68,0.21504586702112577],[120,69,69,0.22228972993358667],[120,69,70,0.2293774896874491],[120,69,71,0.2363466939052812],[120,69,72,0.24322846929665612],[120,69,73,0.25004811606852606],[120,69,74,0.2568256525510818],[120,69,75,0.263576308789988],[120,69,76,0.27031096799530824],[120,69,77,0.27703655487428397],[120,69,78,0.28375637000681464],[120,69,79,0.2904703695495287],[120,70,64,0.18869980143482437],[120,70,65,0.19694101597785824],[120,70,66,0.20492844801498603],[120,70,67,0.21262654941557024],[120,70,68,0.22007067687500392],[120,70,69,0.22731185085854944],[120,70,70,0.23439425571199746],[120,70,71,0.24135514937526728],[120,70,72,0.24822549480340828],[120,70,73,0.25503054271274656],[120,70,74,0.26179036427023555],[120,70,75,0.2685203324844268],[120,70,76,0.2752315511956262],[120,70,77,0.28193123069927484],[120,70,78,0.28862300916776745],[120,70,79,0.2953072191623394],[120,71,64,0.19328053058198238],[120,71,65,0.20150781752721109],[120,71,66,0.20948345693409784],[120,71,67,0.21718158014242112],[120,71,68,0.22462494125149757],[120,71,69,0.2318638130748491],[120,71,70,0.2389417567483271],[120,71,71,0.2458955457657636],[120,71,72,0.2527557893801045],[120,71,73,0.2595475068336978],[120,71,74,0.26629065103722727],[120,71,75,0.2730005804577279],[120,71,76,0.27968847811574643],[120,71,77,0.28636171672854405],[120,71,78,0.2930241691676757],[120,71,79,0.2996764635258161],[120,72,64,0.19740262008772727],[120,72,65,0.20563181096923758],[120,72,66,0.21360809704072367],[120,72,67,0.2213069616973432],[120,72,68,0.22875110538468],[120,72,69,0.23598972554107409],[120,72,70,0.24306544655515605],[120,72,71,0.2500142662864362],[120,72,72,0.25686617469763207],[120,72,73,0.2636457224164258],[120,72,74,0.2703725378419281],[120,72,75,0.27706179155383803],[120,72,76,0.2837246069235535],[120,72,77,0.29036841596482105],[120,72,78,0.2969972595943334],[120,72,79,0.3036120316004123],[120,73,64,0.20112345875277993],[120,73,65,0.20935495686302097],[120,73,66,0.21733309405048526],[120,73,67,0.22503485492757402],[120,73,68,0.23248269877201216],[120,73,69,0.23972433152256312],[120,73,70,0.2468010510240598],[120,73,71,0.25374772549327507],[120,73,72,0.2605934107147832],[120,73,73,0.26736191572081025],[120,73,74,0.2740723155603061],[120,73,75,0.28073940990845786],[120,73,76,0.28737412641224963],[120,73,77,0.2939838678089615],[120,73,78,0.3005728019900918],[120,73,79,0.3071420943134513],[120,74,64,0.2044662675273127],[120,74,65,0.21270150979546226],[120,74,66,0.2206836975113223],[120,74,67,0.22839145777492256],[120,74,68,0.23584679049555443],[120,74,69,0.24309544725815674],[120,74,70,0.2501769693953228],[120,74,71,0.2571247086504668],[120,74,72,0.2639664464528137],[120,74,73,0.2707249595851037],[120,74,74,0.277418530832659],[120,74,75,0.2840614033534696],[120,74,76,0.2906641776581912],[120,74,77,0.2972341502348396],[120,74,78,0.3037755929929341],[120,74,79,0.31028997283619325],[120,75,64,0.2074520429597676],[120,75,65,0.21569309025054834],[120,75,66,0.2236820842953874],[120,75,67,0.2313994187926431],[120,75,68,0.23886640349626403],[120,75,69,0.24612636163052978],[120,75,70,0.2532166391751352],[120,75,71,0.2601686782669956],[120,75,72,0.26700864226885523],[120,75,73,0.2737579844312307],[120,75,74,0.28043395871224125],[120,75,75,0.2870500714778303],[120,75,76,0.2936164729607992],[120,75,77,0.3001402875093949],[120,75,78,0.3066258818022749],[120,75,79,0.3130750703467272],[120,76,64,0.21010187244730133],[120,76,65,0.21835102329512954],[120,76,66,0.22634971430814807],[120,76,67,0.23408020426367532],[120,76,68,0.2415628840621015],[120,76,69,0.24883819315297495],[120,76,70,0.25594086115967496],[120,76,71,0.26290004435393977],[120,76,72,0.2697399603671827],[120,76,73,0.27648046295910944],[120,76,74,0.2831375553756139],[120,76,75,0.2897238409947651],[120,76,76,0.2962489101242408],[120,76,77,0.3027196619741539],[120,76,78,0.3091405609832005],[120,76,79,0.31551382682354084],[120,77,64,0.2124391954413751],[120,77,65,0.22069862429616688],[120,77,66,0.22870963450379475],[120,77,67,0.2364564150024949],[120,77,68,0.24395822262446232],[120,77,69,0.2512522004110324],[120,77,70,0.258370080790006],[120,77,71,0.26533839476115134],[120,77,72,0.27217912009618983],[120,77,73,0.2789102653243694],[120,77,74,0.285546387993741],[120,77,75,0.2920990458759304],[120,77,76,0.2985771799572602],[120,77,77,0.30498742822978303],[120,77,78,0.31133436945944076],[120,77,79,0.31762069626515355],[120,78,64,0.21449200664157161],[120,78,65,0.22276342765966153],[120,78,66,0.23078872716855542],[120,78,67,0.238554048785801],[120,78,68,0.24607732181129324],[120,78,69,0.2533920419426511],[120,78,70,0.2605266218993594],[120,78,71,0.26750468178317943],[120,78,72,0.2743457144051256],[120,78,73,0.2810656814167893],[120,78,74,0.2876775386845929],[120,78,75,0.2941916895359318],[120,78,76,0.3006163646935385],[120,78,77,0.30695792789699294],[120,78,78,0.3132211063852934],[120,78,79,0.3194091455817087],[120,79,64,0.2162755712467133],[120,79,65,0.22456002330257652],[120,79,66,0.23260088720659367],[120,79,67,0.24038625995471177],[120,79,68,0.24793258628552667],[120,79,69,0.2552694379439985],[120,79,70,0.2624216472563631],[120,79,71,0.2694096867673839],[120,79,72,0.27625035611588317],[120,79,73,0.2829573940449531],[120,79,74,0.28954201392173257],[120,79,75,0.29601336134654327],[120,79,76,0.30237889263267664],[120,79,77,0.30864467313434124],[120,79,78,0.31481559458832115],[120,79,79,0.320895510814516],[120,80,64,0.21773950385522656],[120,80,65,0.22603741247518747],[120,80,66,0.23409525314486396],[120,80,67,0.24190312192796196],[120,80,68,0.24947589583026858],[120,80,69,0.25683902522516244],[120,80,70,0.26401353467128913],[120,80,71,0.27101650379666087],[120,80,72,0.2778617852108957],[120,80,73,0.2845606411397339],[120,80,74,0.29112229706922715],[120,80,75,0.2975544109087001],[120,80,76,0.3038634563995196],[120,80,77,0.3100550197088101],[120,80,78,0.3161340083506192],[120,80,79,0.3221047717712064],[120,81,64,0.21883249681915448],[120,81,65,0.2271434360451447],[120,81,66,0.23521953528819028],[120,81,67,0.243052980639343],[120,81,68,0.25065707453049957],[120,81,69,0.2580530337491389],[120,81,70,0.265257887729243],[120,81,71,0.2722850762060878],[120,81,72,0.2791452124848603],[120,81,73,0.28584675824092026],[120,81,74,0.2923966080165521],[120,81,75,0.29880058182024366],[120,81,76,0.3050638244715785],[120,81,77,0.3111911105656145],[120,81,78,0.3171870541520412],[120,81,79,0.32305622243592125],[120,82,64,0.2195204925517269],[120,82,65,0.22784291275593382],[120,82,66,0.2359379035377037],[120,82,67,0.2437998559474123],[120,82,68,0.2514405589152023],[120,82,69,0.25887697228921525],[120,82,70,0.26612199705785294],[120,82,71,0.2731852073272903],[120,82,72,0.28007367661819466],[120,82,73,0.2867927077317629],[120,82,74,0.2933464641841743],[120,82,75,0.29973850147208775],[120,82,76,0.30597219669092907],[120,82,77,0.3120510752801615],[120,82,78,0.3179790339122892],[120,82,79,0.32376045877426884],[120,83,64,0.21978426403520518],[120,83,65,0.22811529030105201],[120,83,66,0.23622873974858766],[120,83,67,0.24412132968830447],[120,83,68,0.2518034556581551],[120,83,69,0.25928788625554333],[120,83,70,0.26658332455310374],[120,83,71,0.27369529265013326],[120,83,72,0.28062704068558025],[120,83,73,0.28738035072896156],[120,83,74,0.29395623333410337],[120,83,75,0.30035551482934647],[120,83,76,0.30657931370201835],[120,83,77,0.31262940471214695],[120,83,78,0.3185084696372231],[120,83,79,0.3242202338053823],[120,84,64,0.2196171341405589],[120,84,65,0.22795243193277331],[120,84,66,0.23608252120727458],[120,84,67,0.24400655904933616],[120,84,68,0.25173371755350876],[120,84,69,0.25927272587539807],[120,84,70,0.2666280895095065],[120,84,71,0.27380114522625565],[120,84,72,0.28079107331359837],[120,84,73,0.28759579534908686],[120,84,74,0.294212755022036],[120,84,75,0.3006395798421137],[120,84,76,0.30687462188275955],[120,84,77,0.3129173760126882],[120,84,78,0.3187687743629145],[120,84,79,0.32443135605906526],[120,85,64,0.21902283879489925],[120,85,65,0.2273565435406417],[120,85,66,0.23549984000043758],[120,85,67,0.2434544197999486],[120,85,68,0.25122844199151767],[120,85,69,0.25880195862001104],[120,85,70,0.26578906573374345],[120,85,71,0.2727894487470691],[120,85,72,0.27979398456529886],[120,85,73,0.2867942944944914],[120,85,74,0.29378193784817797],[120,85,75,0.3005792250399903],[120,85,76,0.30684649371364725],[120,85,77,0.31290352733533305],[120,85,78,0.318748968181881],[120,85,79,0.3243836296748449],[120,86,64,0.21801353956697908],[120,86,65,0.22633824671282177],[120,86,66,0.2344895636612994],[120,86,67,0.24247178455609258],[120,86,68,0.25029229681797277],[120,86,69,0.2573994987388566],[120,86,70,0.2641232903147512],[120,86,71,0.2708527792338507],[120,86,72,0.27758328524338866],[120,86,73,0.28431086857727456],[120,86,74,0.2910314024225665],[120,86,75,0.2977397836383801],[120,86,76,0.30442928413471926],[120,86,77,0.31109104495139855],[120,86,78,0.3177137147194247],[120,86,79,0.3240618350749713],[120,87,64,0.2166079907941217],[120,87,65,0.22491480285632845],[120,87,66,0.2330671420566124],[120,87,67,0.24107194085275288],[120,87,68,0.24893607808596688],[120,87,69,0.2556880549167185],[120,87,70,0.26213626717689953],[120,87,71,0.26857970727825264],[120,87,72,0.27501820648004155],[120,87,73,0.2814524428247901],[120,87,74,0.28788287580100913],[120,87,75,0.2943088306800131],[120,87,76,0.3007277352768798],[120,87,77,0.307134511483572],[120,87,78,0.31352112352977063],[120,87,79,0.319876284548339],[120,88,64,0.21482986595691042],[120,88,65,0.22310849304414207],[120,88,66,0.2312530650834268],[120,88,67,0.23927315342431027],[120,88,68,0.24717540385817802],[120,88,69,0.25367059179055357],[120,88,70,0.25983475247419296],[120,88,71,0.2659810195132721],[120,88,72,0.27211372826899527],[120,88,73,0.2782382743131699],[120,88,74,0.28435989587023514],[120,88,75,0.2904826176046579],[120,88,76,0.2966083588839478],[120,88,77,0.3027362092093888],[120,88,78,0.3088618730779573],[120,88,79,0.314977286124199],[120,89,64,0.21270624762014115],[120,89,65,0.22094515787769303],[120,89,66,0.22907147537800857],[120,89,67,0.23709737474354195],[120,89,68,0.24502954789180634],[120,89,69,0.25134820672505864],[120,89,70,0.25722385498142014],[120,89,71,0.26306616605366345],[120,89,72,0.2688838952539626],[120,89,73,0.2746871720645494],[120,89,74,0.2804861186717641],[120,89,75,0.286289641608354],[120,89,76,0.29210440004647126],[120,89,77,0.2979339538087278],[120,89,78,0.3037780936989246],[120,89,79,0.3096323563022923],[120,90,64,0.21026628489737456],[120,90,65,0.21845290129961314],[120,90,66,0.22654893989741468],[120,90,67,0.2345691075447076],[120,90,68,0.24252041673413244],[120,90,69,0.24872102920291506],[120,90,70,0.25430777651736397],[120,90,71,0.2598438230516887],[120,90,72,0.265342185453687],[120,90,73,0.270817659373244],[120,90,74,0.27628526548893007],[120,90,75,0.2817588803375213],[120,90,76,0.2872500559265021],[120,90,77,0.29276703159732576],[120,90,78,0.2983139411040333],[120,90,79,0.3038902173825379],[120,91,64,0.207540022060235],[120,91,65,0.21566096196232143],[120,91,66,0.22371338391568138],[120,91,67,0.231714422752838],[120,91,68,0.23967167347291313],[120,91,69,0.2457889828146746],[120,91,70,0.2510904259980383],[120,91,71,0.2563223404886185],[120,91,72,0.26150177605737424],[120,91,73,0.26664804494537275],[120,91,74,0.2717809901062878],[120,91,75,0.2769194497217693],[120,91,76,0.2820799224254265],[120,91,77,0.28727543712206666],[120,91,78,0.2925146307485016],[120,91,79,0.29780103679560693],[120,92,64,0.20455740160149602],[120,92,65,0.2125987554521449],[120,92,66,0.22059319068057187],[120,92,67,0.2285601359593798],[120,92,68,0.23650801112201836],[120,92,69,0.24255240707908696],[120,92,70,0.2475759046088867],[120,92,71,0.25251007299081063],[120,92,72,0.25737570441460467],[120,92,73,0.2621964013394631],[120,92,74,0.26699666511263354],[120,92,75,0.271800191957765],[120,92,76,0.27662838123474426],[120,92,77,0.2814990602877949],[120,92,78,0.2864254296220007],[120,92,79,0.291415231585262],[120,93,64,0.20134744477091196],[120,93,65,0.20929509038416233],[120,93,66,0.21721646970131644],[120,93,67,0.22513314532171336],[120,93,68,0.2330545783767974],[120,93,69,0.23901253655047916],[120,93,70,0.2437688597877058],[120,93,71,0.24841559163674878],[120,93,72,0.25297692249440984],[120,93,73,0.2574804493181064],[120,93,74,0.2619550862129038],[120,93,75,0.26642919297669265],[120,93,76,0.27092892697363913],[120,93,77,0.27547682308669236],[120,93,78,0.280090605888479],[120,93,79,0.2847822375716148],[120,94,64,0.19793761233331347],[120,94,65,0.20577756111845796],[120,94,66,0.21361049638139834],[120,94,67,0.22145993351947524],[120,94,68,0.22933656024446702],[120,94,69,0.23517183487981289],[120,94,70,0.23967470589875703],[120,94,71,0.24404777488663196],[120,94,72,0.24831824322831134],[120,94,73,0.2525173468347089],[120,94,74,0.2566780936016166],[120,94,75,0.26083322878879417],[120,94,76,0.26501343415237427],[120,94,77,0.2692457660119188],[120,94,78,0.27355233678912066],[120,94,79,0.2779492439236097],[120,95,64,0.19435334804918306],[120,95,65,0.2020721196035516],[120,95,66,0.20980132547288155],[120,95,67,0.21756623617382906],[120,95,68,0.22537891584218814],[120,95,69,0.23103418169207796],[120,95,70,0.23529970965486507],[120,95,71,0.23941577692067562],[120,95,72,0.24341217728337536],[120,95,73,0.24732338148633862],[120,95,74,0.2511861095327205],[120,95,75,0.25503714015602447],[120,95,76,0.25891136373408047],[120,95,77,0.2628400842478548],[120,95,78,0.26684957521168146],[120,95,79,0.2709598938390837],[120,96,64,0.19061780714699875],[120,96,65,0.19820282862562258],[120,96,66,0.2058135806082085],[120,96,67,0.21347687892504638],[120,96,68,0.22120627545767693],[120,96,69,0.22660491032481628],[120,96,70,0.23065093850821328],[120,96,71,0.23452887181600815],[120,96,72,0.23827065893339092],[120,96,73,0.24191356536307973],[120,96,74,0.24549759129704624],[120,96,75,0.24906313509717046],[120,96,76,0.25264890909835624],[120,96,77,0.2562901137387305],[120,96,78,0.26001687531896844],[120,96,79,0.2638529520022328],[120,97,64,0.18675177184281375],[120,97,65,0.19419179853153856],[120,97,66,0.20167042196061283],[120,97,67,0.20921578516780473],[120,97,68,0.2168429987830555],[120,97,69,0.22189069464128042],[120,97,70,0.22573607038243243],[120,97,71,0.22939617212521682],[120,97,72,0.23290465980931885],[120,97,73,0.23630113131627317],[120,97,74,0.23962839888898096],[120,97,75,0.24293001877869624],[120,97,76,0.24624808123802094],[120,97,77,0.2496212672452914],[120,97,78,0.253083177618427],[120,97,79,0.2566609394606031],[120,98,64,0.18277375576626512],[120,98,65,0.19005930930014955],[120,98,66,0.19739369389591221],[120,98,67,0.20480615626320864],[120,98,68,0.21231339606303468],[120,98,69,0.21689928328944702],[120,98,70,0.2205630632608248],[120,98,71,0.22402622054458848],[120,98,72,0.22732368941651152],[120,98,73,0.23049692975480737],[120,98,74,0.23359107671074592],[120,98,75,0.23665235039130797],[120,98,76,0.2397257330474891],[120,98,77,0.24285292050757395],[120,98,78,0.24607055384577],[120,98,79,0.24940873653888232],[120,99,64,0.17870029897054318],[120,99,65,0.18582411965679307],[120,99,66,0.19300425430337456],[120,99,67,0.20027082587853537],[120,99,68,0.20764211374023528],[120,99,69,0.2116390799228562],[120,99,70,0.21513968327607222],[120,99,71,0.2184264534746084],[120,99,72,0.22153518140340425],[120,99,73,0.22450872515758954],[120,99,74,0.22739404872290753],[120,99,75,0.23023952665370917],[120,99,76,0.2330925225843376],[120,99,77,0.2359972486373578],[120,99,78,0.238992912024669],[120,99,79,0.24211215438097333],[120,100,64,0.1745464550381347],[120,100,65,0.18150396476193648],[120,100,66,0.18852248713315933],[120,100,67,0.1956327899518223],[120,100,68,0.2025141801721974],[120,100,69,0.20611856803419074],[120,100,70,0.2094728900686901],[120,100,71,0.21260253538250706],[120,100,72,0.21554376465761618],[120,100,73,0.21834039156468008],[120,100,74,0.22104072650670856],[120,100,75,0.22369479162450356],[120,100,76,0.2263518152079563],[120,100,77,0.22905801286974714],[120,100,78,0.23185466205504118],[120,100,79,0.23477647568838458],[120,101,64,0.17032467859197675],[120,101,65,0.1771141754671447],[120,101,66,0.1839666547711003],[120,101,67,0.1909132917994419],[120,101,68,0.19686795897631226],[120,101,69,0.20034875434789262],[120,101,70,0.2035715230712196],[120,101,71,0.20656126561514007],[120,101,72,0.20935436070244925],[120,101,73,0.21199516336431054],[120,101,74,0.21453286965817603],[120,101,75,0.21701865726706168],[120,101,76,0.2195031103984395],[120,101,77,0.22203393660103982],[120,101,78,0.22465398232214728],[120,101,79,0.2273995532425761],[120,102,64,0.1660258420669991],[120,102,65,0.1726455622640836],[120,102,66,0.17932763233993027],[120,102,67,0.1861033942390513],[120,102,68,0.19100840424676183],[120,102,69,0.19437793224197425],[120,102,70,0.1974841632488238],[120,102,71,0.20035141728352326],[120,102,72,0.20301580804258712],[120,102,73,0.20552177859535775],[120,102,74,0.2079189070342778],[120,102,75,0.21025899153686964],[120,102,76,0.2125934234855812],[120,102,77,0.21497085648313125],[120,102,78,0.21743517829646303],[120,102,79,0.220023791967977],[120,103,64,0.16162985277230235],[120,103,65,0.16807620468059342],[120,103,66,0.17458185303349538],[120,103,67,0.18117807178260703],[120,103,68,0.1850028954515404],[120,103,69,0.18827537401911099],[120,103,70,0.19128181433901736],[120,103,71,0.19404552317964396],[120,103,72,0.19660190875950231],[120,103,73,0.19899498192271134],[120,103,74,0.20127412885103677],[120,103,75,0.20349116493169436],[120,103,76,0.2056976785897836],[120,103,77,0.20794267308285505],[120,103,78,0.21027051344750775],[120,103,79,0.21271918499017237],[120,104,64,0.15712245047151968],[120,104,65,0.16339050869243357],[120,104,66,0.1697126223960265],[120,104,67,0.17544927155761353],[120,104,68,0.1789124503354637],[120,104,69,0.18210330024105456],[120,104,70,0.18502771993999284],[120,104,71,0.18770765643608592],[120,104,72,0.19017734442137404],[120,104,73,0.1924798060115175],[120,104,74,0.19466362136326917],[120,104,75,0.19677997987082477],[120,104,76,0.19888002083200637],[120,104,77,0.20101247166811273],[120,104,78,0.20322159097767223],[120,104,79,0.20554542291033098],[120,105,64,0.152496907360058],[120,105,65,0.1585808775485187],[120,105,66,0.16471175195758275],[120,105,67,0.1693961235688225],[120,105,68,0.1727901954409011],[120,105,69,0.17591540992964783],[120,105,70,0.17877595486792291],[120,105,71,0.1813920817645271],[120,105,72,0.18379638359971667],[120,105,73,0.18603032979348827],[120,105,74,0.18814106880812287],[120,105,75,0.19017850805914033],[120,105,76,0.19219268001542206],[120,105,77,0.19423140257436905],[120,105,78,0.19633824100635236],[120,105,79,0.1985507779803658],[120,106,64,0.14775581207769348],[120,106,65,0.1536494184275098],[120,106,66,0.15958117811159808],[120,106,67,0.16334100611994765],[120,106,68,0.16667995991618126],[120,106,69,0.1697555931680203],[120,106,70,0.1725702604950787],[120,106,71,0.1751422138556259],[120,106,72,0.17750196018010356],[120,106,73,0.17968887027795363],[120,106,74,0.1817480493271173],[120,106,75,0.18372747848916157],[120,106,76,0.18567543642045212],[120,106,77,0.18763820867558842],[120,106,78,0.18965809222814892],[120,106,79,0.19177170157148277],[120,107,64,0.14291323861716831],[120,107,65,0.14861003088989144],[120,107,66,0.1537817537560095],[120,107,67,0.15731673446181135],[120,107,68,0.1606145108460903],[120,107,69,0.16365629947119933],[120,107,70,0.16644255377810946],[120,107,71,0.1689892711705711],[120,107,72,0.17132447250156688],[120,107,73,0.17348492418243563],[120,107,74,0.17551311295082606],[120,107,75,0.17745448259655786],[120,107,76,0.17935494120127318],[120,107,77,0.18125864670278113],[120,107,78,0.18320607785278806],[120,107,79,0.1852323969028835],[120,108,64,0.13799730225131984],[120,108,65,0.1434908793514062],[120,108,66,0.14784573296336503],[120,108,67,0.1513431638489816],[120,108,68,0.15461342763599134],[120,108,69,0.15763655941723756],[120,108,70,0.16041110746010942],[120,108,71,0.16295062264017063],[120,108,72,0.16528030091816912],[120,108,73,0.1674338571036424],[120,108,74,0.16945063954732104],[120,108,75,0.1713729947048373],[120,108,76,0.17324388980857824],[120,108,77,0.17510480117700103],[120,108,78,0.17699387498568647],[120,108,79,0.1789443666272575],[120,109,64,0.13305305397398143],[120,109,65,0.13829943439536144],[120,109,66,0.14195229604976264],[120,109,67,0.1454245052773699],[120,109,68,0.14868056080626535],[120,109,69,0.151699604403749],[120,109,70,0.1544783458632406],[120,109,71,0.1570277712913657],[120,109,72,0.15936998746357342],[120,109,73,0.16153528363391445],[120,109,74,0.16355941993107673],[120,109,75,0.16548115081791367],[120,109,76,0.16733999143108041],[120,109,77,0.16917423395489917],[120,109,78,0.17101922052333338],[120,109,79,0.172905878490984],[120,110,64,0.1281349356483892],[120,110,65,0.1324471105878695],[120,110,66,0.13607591075977096],[120,110,67,0.13953511893756423],[120,110,68,0.14278987830493609],[120,110,69,0.1458187898867498],[120,110,70,0.14861686684260356],[120,110,71,0.15119249381411393],[120,110,72,0.15356450856714282],[120,110,73,0.1557594850655099],[120,110,74,0.15780922649080878],[120,110,75,0.15974847611934279],[120,110,76,0.16161285335819206],[120,110,77,0.16343702163160204],[120,110,78,0.1652530942000702],[120,110,79,0.16708928339238238],[120,111,64,0.12278879119839066],[120,111,65,0.12653076933814628],[120,111,66,0.13014730046528372],[120,111,67,0.13360560681728262],[120,111,68,0.1368718396978529],[120,111,69,0.1399244729152294],[120,111,70,0.14275703262446945],[120,111,71,0.14537533568512115],[120,111,72,0.14779484050992245],[120,111,73,0.15003818152014956],[120,111,74,0.15213289500736576],[120,111,75,0.15410934365431225],[120,111,76,0.1559988464157415],[120,111,77,0.15783201990637194],[120,111,78,0.15963733689134657],[120,111,79,0.16143990692889387],[120,112,64,0.11675416598939224],[120,112,65,0.12048392206037942],[120,112,66,0.12409922401077558],[120,112,67,0.12756862650594641],[120,112,68,0.13085970241277678],[120,112,69,0.13395125584848508],[120,112,70,0.1368355640901075],[120,112,71,0.1395159217690044],[120,112,72,0.14200429230962922],[120,112,73,0.14431912369662653],[120,112,74,0.1464833355615304],[120,112,75,0.14852248409440785],[120,112,76,0.15046311079553806],[120,112,77,0.15233128059055942],[120,112,78,0.15415131434260843],[120,112,79,0.15594472031065146],[120,113,64,0.11053897452313746],[120,113,65,0.11426478150929954],[120,113,66,0.11788848016059796],[120,113,67,0.12138012787409048],[120,113,68,0.1247091628877827],[120,113,69,0.12785520219312993],[120,113,70,0.13080952967370987],[120,113,71,0.1335729712266872],[120,113,72,0.1361538768581286],[120,113,73,0.13856624671902304],[120,113,74,0.1408280071770427],[120,113,75,0.14295944259783014],[120,113,76,0.14498178808481757],[120,113,77,0.14691598800083738],[120,113,78,0.14878162467083905],[120,113,79,0.15059602124626362],[120,114,64,0.10412599463798422],[120,114,65,0.10785396710744344],[120,114,66,0.11149380353571924],[120,114,67,0.11501725620106103],[120,114,68,0.11839607694518843],[120,114,69,0.12161118527387452],[120,114,70,0.1246531412463115],[120,114,71,0.1275203733591084],[120,114,72,0.1302175183662005],[120,114,73,0.13275388389783166],[120,114,74,0.1351420389996451],[120,114,75,0.13739653735895624],[120,114,76,0.13953277762878602],[120,114,77,0.1415660049033709],[120,114,78,0.14351045704403126],[120,114,79,0.14537865920436321],[120,115,64,0.09751711615867331],[120,115,65,0.10125106516826919],[120,115,66,0.10491254795504389],[120,115,67,0.10847520216791716],[120,115,68,0.11191352256554113],[120,115,69,0.11521021015002061],[120,115,70,0.11835537972394843],[120,115,71,0.12134515789280811],[120,115,72,0.12418040328147857],[120,115,73,0.12686552801340986],[120,115,74,0.1294074245352003],[120,115,75,0.13181450158418037],[120,115,76,0.134095832810119],[120,115,77,0.13626042127610719],[120,115,78,0.13831658278002903],[120,115,79,0.1402714506592108],[120,116,64,0.09072997513483881],[120,116,65,0.09447134272340403],[120,116,66,0.09815751635620522],[120,116,67,0.10176418882349018],[120,116,68,0.10526898760054636],[120,116,69,0.10865684642814505],[120,116,70,0.11191771594867145],[120,116,71,0.11504554375996706],[120,116,72,0.11803739218502428],[120,116,73,0.12089263572947193],[120,116,74,0.12361224122320644],[120,116,75,0.12619813342665526],[120,116,76,0.12865264866627427],[120,116,77,0.13097807884940538],[120,116,78,0.13317630799710134],[120,116,79,0.1352485432269237],[120,117,64,0.08379474938031128],[120,117,65,0.08754261794372226],[120,117,66,0.09125394025046264],[120,117,67,0.09490659839259998],[120,117,68,0.09848168515353777],[120,117,69,0.10196677450338848],[120,117,70,0.10535192912365221],[120,117,71,0.10862906835041203],[120,117,72,0.1117914942917787],[120,117,73,0.11483347636646607],[120,117,74,0.1177498961436973],[120,117,75,0.12053595421733422],[120,117,76,0.12318694070130638],[120,117,77,0.12569807079011242],[120,117,78,0.12806438668856435],[120,117,79,0.1302807270804901],[120,118,64,0.07675111805313554],[120,118,65,0.0805022899069444],[120,118,66,0.08423661143739117],[120,118,67,0.08793424157807961],[120,118,68,0.09157999915396958],[120,118,69,0.09516444757837308],[120,118,70,0.09867802492215111],[120,118,71,0.10211079907636213],[120,118,72,0.10545240607047343],[120,118,73,0.10869202618390157],[120,118,74,0.11181839860483679],[120,118,75,0.1148198753097634],[120,118,76,0.11768451475964557],[120,118,77,0.12040021593507472],[120,118,78,0.12295489316357486],[120,118,79,0.12533669212870163],[120,119,64,0.06964538778855789],[120,119,65,0.07339453024116929],[120,119,66,0.07714716848908834],[120,119,67,0.08088577180293802],[120,119,68,0.08459906246120212],[120,119,69,0.0882808716349966],[120,119,70,0.09192225523685493],[120,119,71,0.09551162896068738],[120,119,72,0.09903511539411997],[120,119,73,0.10247690924355321],[120,119,74,0.1058196603099512],[120,119,75,0.10904487383672733],[120,119,76,0.11213332783925525],[120,119,77,0.11506550701881763],[120,119,78,0.1178220528626473],[120,119,79,0.1200396146938479],[120,120,64,0.06252778721439001],[120,120,65,0.06626763849138757],[120,120,66,0.07003153983454707],[120,120,67,0.07380424616641536],[120,120,68,0.07757846917010994],[120,120,69,0.08135150488469982],[120,120,70,0.08511524090257436],[120,120,71,0.08885665734476497],[120,120,72,0.09255857203865384],[120,120,73,0.09620038535492019],[120,120,74,0.09975882325649107],[120,120,75,0.1033918230307464],[120,120,76,0.10948622735441704],[120,120,77,0.11458029298018405],[120,120,78,0.11835181467206705],[120,120,79,0.12207908163938483],[120,121,64,0.055449916299572896],[120,121,65,0.05917154757687544],[120,121,66,0.06293752969951544],[120,121,67,0.06673481922096289],[120,121,68,0.07056010703790258],[120,121,69,0.07441426238818738],[120,121,70,0.07996507125167551],[120,121,71,0.08667332936765013],[120,121,72,0.09337240303656465],[120,121,73,0.10003853737282009],[120,121,74,0.10664451099178751],[120,121,75,0.11316068822604089],[120,121,76,0.11836380279507905],[120,121,77,0.12187045625365701],[120,121,78,0.1253238311925362],[120,121,79,0.12874936098977294],[120,122,64,0.04846237955402046],[120,122,65,0.05463983905050779],[120,122,66,0.06129583007572869],[120,122,67,0.06800589734342768],[120,122,68,0.07476993691609889],[120,122,69,0.08159217359624475],[120,122,70,0.08846682989139232],[120,122,71,0.09537927114071015],[120,122,72,0.10230746717334487],[120,122,73,0.1092234231839502],[120,122,74,0.11609457637743008],[120,122,75,0.12275930377849535],[120,122,76,0.1260253631311373],[120,122,77,0.12921271579193463],[120,122,78,0.13235458335602046],[120,122,79,0.13548302416320177],[120,123,64,0.05613615107389435],[120,123,65,0.06276089743444944],[120,123,66,0.06946902664725925],[120,123,67,0.076250225309532],[120,123,68,0.08310799084420852],[120,123,69,0.09004998908774582],[120,123,70,0.09707161276088543],[120,123,71,0.10415741521470726],[120,123,72,0.11128289717646993],[120,123,73,0.11841624922890576],[120,123,74,0.12552004569442238],[120,123,75,0.1307558925909701],[120,123,76,0.13371882019141063],[120,123,77,0.1366026999475944],[120,123,78,0.13944716891469328],[120,123,79,0.142290507126263],[120,124,64,0.06450358755885113],[120,124,65,0.07114080065653329],[120,124,66,0.07787695951829983],[120,124,67,0.08470330713509898],[120,124,68,0.09162665694847369],[120,124,69,0.09865795088893434],[120,124,70,0.1057938010166301],[120,124,71,0.11301817658909045],[120,124,72,0.12030448014325593],[120,124,73,0.12761756777151315],[120,124,74,0.13491570848179538],[120,124,75,0.13874717323438998],[120,124,76,0.14143063803554712],[120,124,77,0.1440336397266424],[120,124,78,0.14660164846091067],[120,124,79,0.14917863091084713],[120,125,64,0.07316979672617216],[120,125,65,0.07979688748849866],[120,125,66,0.08653650156850252],[120,125,67,0.09338115844855202],[120,125,68,0.1003406243234308],[120,125,69,0.1074288685238813],[120,125,70,0.11464372420596211],[120,125,71,0.12196879035863109],[120,125,72,0.12937575746798285],[120,125,73,0.1368266678305656],[120,125,74,0.14414581487211037],[120,125,75,0.14671229692956309],[120,125,76,0.1491455476737222],[120,125,77,0.15149606543213404],[120,125,78,0.15381446058971218],[120,125,79,0.15614973764102075],[120,126,64,0.08214292792548991],[120,126,65,0.08873768418825251],[120,126,66,0.09545626946732902],[120,126,67,0.10229216813860403],[120,126,68,0.10925767246617972],[120,126,69,0.11636945895654999],[120,126,70,0.12362653953091428],[120,126,71,0.13101233826068057],[120,126,72,0.1384972242068424],[120,126,73,0.146040971345178],[120,126,74,0.15227289160818788],[120,126,75,0.1546299100914379],[120,126,76,0.15684653052856692],[120,126,77,0.15897753088786779],[120,126,78,0.16107788261147607],[120,126,79,0.1632008884920987],[120,127,64,0.09142045313252078],[120,127,65,0.09796156110869869],[120,127,66,0.10463531849950289],[120,127,67,0.11143584128957636],[120,127,68,0.11837747640939832],[120,127,69,0.1254792331875483],[120,127,70,0.1327412225025414],[120,127,71,0.1401468676155569],[120,127,72,0.14766560068962087],[120,127,73,0.1552554807313151],[120,127,74,0.16029484766914537],[120,127,75,0.1624783758231911],[120,127,76,0.16451481028107415],[120,127,77,0.16646236553815894],[120,127,78,0.16837953736079606],[120,127,79,0.17032312438127736],[120,128,64,0.10098797396639643],[120,128,65,0.1074555646501654],[120,128,66,0.11406200565375184],[120,128,67,0.12080170030431553],[120,128,68,0.1276905570847499],[120,128,69,0.1347495126464422],[120,128,70,0.14197966990411648],[120,128,71,0.14936460347374433],[120,128,72,0.15687317706236786],[120,128,73,0.16446227836078003],[120,128,74,0.16818905499126918],[120,128,75,0.1702359832153071],[120,128,76,0.1721298531472732],[120,128,77,0.1739314546927974],[120,128,78,0.1757019466012666],[120,128,79,0.1775007901238628],[120,129,64,0.11081820940648904],[120,129,65,0.11719442552134612],[120,129,66,0.12371302195627312],[120,129,67,0.13036834519279608],[120,129,68,0.13717737786965634],[120,129,69,0.14416257628493004],[120,129,70,0.15132591589777172],[120,129,71,0.15865125471061728],[120,129,72,0.16610723138519898],[120,129,73,0.17365007844851957],[120,129,74,0.1759348289493215],[120,129,75,0.17788114429830273],[120,129,76,0.17966937662598484],[120,129,77,0.1813620481611498],[120,129,78,0.18302213148204136],[120,129,79,0.18471092272701026],[120,130,64,0.12087016504605622],[120,130,65,0.12713974417800877],[120,130,66,0.13355259493491475],[120,130,67,0.14010267391076242],[120,130,68,0.146807588180182],[120,130,69,0.15369093919145002],[120,130,70,0.16075546203203506],[120,130,71,0.16798541474199152],[120,130,72,0.17534952185368227],[120,130,73,0.1814122646104575],[120,130,74,0.1835137641681258],[120,130,75,0.18539257850948596],[120,130,76,0.18710936675246342],[120,130,77,0.1887275974960774],[120,130,78,0.1903112604608249],[120,130,79,0.19192270443406143],[120,131,64,0.1310884846354343],[120,131,65,0.13723935422269043],[120,131,66,0.14353186201364196],[120,131,67,0.1499592635472984],[120,131,68,0.15653941488989356],[120,131,69,0.163296763469395],[120,131,70,0.17023472183582938],[120,131,71,0.17733805747048897],[120,131,72,0.18457585365948634],[120,131,73,0.18884491173328427],[120,131,74,0.19091003608190008],[120,131,75,0.19274948454427587],[120,131,76,0.19442410388657363],[120,131,77,0.19599762204527038],[120,131,78,0.19753434506773948],[120,131,79,0.19909698107535542],[120,132,64,0.1414029025154171],[120,132,65,0.1474267742522292],[120,132,66,0.15358831731278536],[120,132,67,0.1598798068150807],[120,132,68,0.16631908785137292],[120,132,69,0.1729312792634119],[120,132,70,0.1797204493337571],[120,132,71,0.1866719892403271],[120,132,72,0.19373241141902933],[120,132,73,0.1960627371545555],[120,132,74,0.1981108307966898],[120,132,75,0.19993186820557635],[120,132,76,0.20158637037000232],[120,132,77,0.2031377802714043],[120,132,78,0.20465016128550415],[120,132,79,0.20618602283190454],[120,133,64,0.15171650971396294],[120,133,65,0.15760805264074826],[120,133,66,0.16363124296026083],[120,133,67,0.16977712020164143],[120,133,68,0.17606339026058784],[120,133,69,0.18251583106820712],[120,133,70,0.1891392439843556],[120,133,71,0.19591980030468115],[120,133,72,0.20076564488293536],[120,133,73,0.20309009959357363],[120,133,74,0.20513278205604468],[120,133,75,0.20694814466777264],[120,133,76,0.20859599690140426],[120,133,77,0.21013909370498926],[120,133,78,0.21164084559574456],[120,133,79,0.21316315615485865],[120,134,64,0.16190828248536349],[120,134,65,0.167662510663177],[120,134,66,0.17354064749206696],[120,134,67,0.17953225158660707],[120,134,68,0.18565484971094773],[120,134,69,0.19193499898867178],[120,134,70,0.19837841794937863],[120,134,71,0.20497229402996542],[120,134,72,0.20767458616948992],[120,134,73,0.20999847243989855],[120,134,74,0.21204167976657176],[120,134,75,0.2138576017146355],[120,134,76,0.2155049959945685],[120,134,77,0.21704559296643589],[120,134,78,0.21854182565765085],[120,134,79,0.22005468698009364],[120,135,64,0.17187209153960956],[120,135,65,0.17748417751612872],[120,135,66,0.18321105998816173],[120,135,67,0.18904060784728544],[120,135,68,0.19499019674319776],[120,135,69,0.20108736789816123],[120,135,70,0.20733900967084093],[120,135,71,0.21187515486151334],[120,135,72,0.21452341885334672],[120,135,73,0.2168478770968971],[120,135,74,0.2188926888787594],[120,135,75,0.22070987568203412],[120,135,76,0.2223568427227334],[120,135,77,0.2238940151664213],[120,135,78,0.22538259503761704],[120,135,79,0.22688244446502723],[120,136,64,0.1815210205511317],[120,136,65,0.18698641005585942],[120,136,66,0.19255643683435097],[120,136,67,0.19821713247592262],[120,136,68,0.2039858035249177],[120,136,69,0.20989122480961736],[120,136,70,0.21571572023784982],[120,136,71,0.21871364346811187],[120,136,72,0.2213577952644278],[120,136,73,0.22368025431821079],[120,136,74,0.2257235186302397],[120,136,75,0.22753795636023544],[120,136,76,0.22917936344949483],[120,136,77,0.23070663430374233],[120,136,78,0.23217955147479788],[120,136,79,0.233656699918288],[120,137,64,0.190787509038432],[120,137,65,0.19610195633642058],[120,137,66,0.20151013494675593],[120,137,67,0.2069961697680225],[120,137,68,0.21257742089386028],[120,137,69,0.21828415713425137],[120,137,70,0.22258528687205123],[120,137,71,0.22557071162907377],[120,137,72,0.22820572044819093],[120,137,73,0.23052047658403665],[120,137,74,0.23255554948047524],[120,137,75,0.23435941125541107],[120,137,76,0.2359860374376743],[120,137,77,0.23749261813242795],[120,137,78,0.23893738545309934],[120,137,79,0.24037756270674707],[120,138,64,0.19962390355295498],[120,138,65,0.2047834243255156],[120,138,66,0.2100252834792574],[120,138,67,0.21533171734240342],[120,138,68,0.22072028982671105],[120,138,69,0.22616384882715893],[120,138,70,0.22949304306178947],[120,138,71,0.23245946660918743],[120,138,72,0.23507815979824712],[120,138,73,0.23737712081411158],[120,138,74,0.2393947611419581],[120,138,75,0.24117745531129797],[120,138,76,0.24277719128836064],[120,138,77,0.24424932755230336],[120,138,78,0.24565046256495632],[120,138,79,0.24703642200526055],[120,139,64,0.20800341957894752],[120,139,65,0.21300415822152233],[120,139,66,0.21807555644540202],[120,139,67,0.22319806942023582],[120,139,68,0.2283896297420132],[120,139,69,0.23313748752594887],[120,139,70,0.23643577657768877],[120,139,71,0.23937550199761748],[120,139,72,0.2419693682553093],[120,139,73,0.24424299946009742],[120,139,74,0.24623245993205597],[120,139,75,0.24798186452962898],[120,139,76,0.2495410848957019],[120,139,77,0.2509635574866284],[120,139,78,0.2523041989373813],[120,139,79,0.25361743399223413],[120,140,64,0.21592151654603656],[120,140,65,0.22075952478326594],[120,140,66,0.22565634866249779],[120,140,67,0.23059085325455342],[120,140,68,0.23558150599843986],[120,140,69,0.24013165614598972],[120,140,70,0.24339168166570682],[120,140,71,0.2462967111926949],[120,140,72,0.24885693904834227],[120,140,73,0.2510954481048221],[120,140,74,0.25304580375423935],[120,140,75,0.25474973200910705],[120,140,76,0.2562548876773478],[120,140,77,0.2576127182744778],[120,140,78,0.25887642904118613],[120,140,79,0.2600990541277153],[120,141,64,0.22339768838203666],[120,141,65,0.22806861209770507],[120,141,66,0.23278635742674125],[120,141,67,0.23752846109007508],[120,141,68,0.24231407892511725],[120,141,69,0.2471044663057122],[120,141,70,0.25031960330732556],[120,141,71,0.25318278589796556],[120,141,72,0.25570157002019633],[120,141,73,0.2578963677674209],[120,141,74,0.25979812309133415],[120,141,75,0.2614460649958348],[120,141,76,0.26288554390952656],[120,141,77,0.26416595666719966],[120,141,78,0.26533876525518546],[120,141,79,0.2664556141876517],[120,142,64,0.2304776720837424],[120,142,65,0.23497634324837813],[120,142,66,0.2395095723528822],[120,142,67,0.2440538800442748],[120,142,68,0.24862923671797924],[120,142,69,0.2532760084580922],[120,142,70,0.25715793651697605],[120,142,71,0.25997439758103286],[120,142,72,0.26244654562936837],[120,142,73,0.26459202017022776],[120,142,74,0.2664390364550809],[120,142,75,0.2680242216016332],[120,142,76,0.2693905260579899],[120,142,77,0.2705852155759953],[120,142,78,0.27165794860705667],[120,142,79,0.2726589437667481],[120,143,64,0.23722184976671906],[120,143,65,0.241542217234935],[120,143,66,0.24588439921010138],[120,143,67,0.2502242487701374],[120,143,68,0.25458264390144686],[120,143,69,0.25900203342872713],[120,143,70,0.26350671866727104],[120,143,71,0.2666012628914099],[120,143,72,0.26902498819246173],[120,143,73,0.2711193741447089],[120,143,74,0.2729098020376246],[120,143,75,0.274430180963458],[120,143,76,0.27572094225340354],[120,143,77,0.2768271054581421],[120,143,78,0.2777964205157447],[120,143,79,0.27867759050540736],[120,144,64,0.24365314507398625],[120,144,65,0.24778966583468218],[120,144,66,0.25193475762935946],[120,144,67,0.2560640170046526],[120,144,68,0.260199317282674],[120,144,69,0.2643850573323295],[120,144,70,0.26864799220807156],[120,144,71,0.27299849322518316],[120,144,72,0.2753907666881822],[120,144,73,0.277432664308107],[120,144,74,0.2791651815285446],[120,144,75,0.28061940371224264],[120,144,76,0.28183312918507064],[120,144,77,0.282849016660284],[120,144,78,0.28371279867609306],[120,144,79,0.28447156516841804],[120,145,64,0.24978031911571463],[120,145,65,0.2537283931427633],[120,145,66,0.2576713606693603],[120,145,67,0.26158503277292455],[120,145,68,0.26549236425810097],[120,145,69,0.2694395265126116],[120,145,70,0.2734556174905442],[120,145,71,0.2775537741901437],[120,145,72,0.2815070885390729],[120,145,73,0.2834943302418105],[120,145,74,0.2851669388429595],[120,145,75,0.2865530943594235],[120,145,76,0.2876878687694619],[120,145,77,0.28861146223352074],[120,145,78,0.28936749418080665],[120,145,79,0.2900013530774861],[120,146,64,0.255609670648022],[120,146,65,0.25936566705234293],[120,146,66,0.26310253582241677],[120,146,67,0.2667968181940283],[120,146,68,0.27047263022142],[120,146,69,0.27417769592483754],[120,146,70,0.27794330310301485],[120,146,71,0.2817852647155692],[120,146,72,0.2857057589567876],[120,146,73,0.2892698767861594],[120,146,74,0.29087985019741247],[120,146,75,0.29219543241184115],[120,146,76,0.29324890181204527],[120,146,77,0.2940779242579744],[120,146,78,0.2947239278240581],[120,146,79,0.29523052378379944],[120,147,64,0.2611452950698597],[120,147,65,0.26470655500264173],[120,147,66,0.26823443316116313],[120,147,67,0.2717067444188549],[120,147,68,0.2751488356151436],[120,147,69,0.27860972608677026],[120,147,70,0.28212270061580835],[120,147,71,0.28570611779788535],[120,147,72,0.2893650886390319],[120,147,73,0.29309314285785326],[120,147,74,0.2962717836811174],[120,147,75,0.2975136564605427],[120,147,76,0.2984830047050359],[120,147,77,0.2992149102983694],[120,147,78,0.29974855288450364],[120,147,79,0.3001257065441007],[120,148,64,0.26638933673281856],[120,148,65,0.26975415507808276],[120,148,66,0.2730712307429409],[120,148,67,0.2763202061404209],[120,148,68,0.27952771521650543],[120,148,69,0.28274378479911844],[120,148,70,0.2860034684885318],[120,148,71,0.2893275018563146],[120,148,72,0.29272381076262105],[120,148,73,0.29618901871741105],[120,148,74,0.2997099501307045],[120,148,75,0.30247814598666695],[120,148,76,0.3033600696706073],[120,148,77,0.3039920207556681],[120,148,78,0.3044108976032664],[120,148,79,0.30465659562495856],[120,149,64,0.271342234487715],[120,149,65,0.27450982238650734],[120,149,66,0.2776153372044751],[120,149,67,0.2806407956168853],[120,149,68,0.2836141596085198],[120,149,69,0.2865861535978727],[120,149,70,0.28959334272150705],[120,149,71,0.2926586365691334],[120,149,72,0.29579262022564873],[120,149,73,0.29899489621578573],[120,149,74,0.3022554347512586],[120,149,75,0.3055559297110535],[120,149,76,0.3078531886271306],[120,149,77,0.30838202723295655],[120,149,78,0.3086836275274873],[120,149,79,0.30879598567045424],[120,150,64,0.27600296040108757],[120,150,65,0.2789733906531574],[120,150,66,0.2818675914873812],[120,150,67,0.2846704761543948],[120,150,68,0.28741135879258106],[120,150,69,0.29014133890496524],[120,150,70,0.29289821422679263],[120,150,71,0.2957068365791313],[120,150,72,0.29858026073928023],[120,150,73,0.3015209164535389],[120,150,74,0.3045218015632906],[120,150,75,0.3075676942167218],[120,150,76,0.3106363821503666],[120,150,77,0.3123609620353491],[120,150,78,0.31254262788905346],[120,150,79,0.31251983736387895],[120,151,64,0.280369251582401],[120,151,65,0.2831433889743961],[120,151,66,0.28582745964162465],[120,151,67,0.28840975500252],[120,151,68,0.29092094790347706],[120,151,69,0.2934121878467934],[120,151,70,0.2959222128957962],[120,151,71,0.2984775630499233],[120,151,72,0.3010935443598544],[120,151,73,0.30377522865184564],[120,151,74,0.30651848741211796],[120,151,75,0.30931105835417544],[120,151,76,0.31213364317366876],[120,151,77,0.31496103498757677],[120,151,78,0.3159671061869257],[120,151,79,0.31580737360975564],[120,152,64,0.2844378350716332],[120,152,65,0.28701725368376224],[120,152,66,0.2894932286621259],[120,152,67,0.29185785562235894],[120,152,68,0.29414315499402127],[120,152,69,0.2964000087152743],[120,152,70,0.2986677983442051],[120,152,71,0.30097448305697055],[120,152,72,0.3033373788675091],[120,152,73,0.3057639859873837],[120,152,74,0.3082528634574628],[120,152,75,0.31079455012627166],[120,152,76,0.31337253100187473],[120,152,77,0.3159642479660148],[120,152,78,0.31854215381179235],[120,152,79,0.31864120646185995],[120,153,64,0.28820464574415394],[120,153,65,0.2905915352900731],[120,153,66,0.29286219732038044],[120,153,67,0.295012889293431],[120,153,68,0.2970769508617414],[120,153,69,0.2991046960502673],[120,153,70,0.3011358573178402],[120,153,71,0.3031995367985846],[120,153,72,0.3053148029739262],[120,153,73,0.3074913479135236],[120,153,74,0.3097302047906506],[120,153,75,0.31202452529258573],[120,153,76,0.31436041646970514],[120,153,77,0.31671783649935065],[120,153,78,0.31907154878323346],[120,153,79,0.32100749502265585],[120,154,64,0.29166503719724046],[120,154,65,0.2938621004547463],[120,154,66,0.29593086396012264],[120,154,67,0.29787202603218016],[120,154,68,0.2997202008961142],[120,154,69,0.3015248603273587],[120,154,70,0.30332580774703],[120,154,71,0.3051530126147968],[120,154,72,0.307027029342881],[120,154,73,0.3089594889418865],[120,154,74,0.31095366366292476],[120,154,75,0.3130051047885973],[120,154,76,0.31510235362082345],[120,154,77,0.3172277256175753],[120,154,78,0.31935816754458995],[120,154,79,0.32146618743325217],[120,155,64,0.29481398558990124],[120,155,65,0.29682432898300476],[120,155,66,0.2986951112333784],[120,155,67,0.300431664801918],[120,155,68,0.302069818931386],[120,155,69,0.30365796224082636],[120,155,70,0.3052357094419008],[120,155,71,0.3068336298054597],[120,155,72,0.3084734954092348],[120,155,73,0.31016861385864797],[120,155,74,0.3119242462818617],[120,155,75,0.31373811126284656],[120,155,76,0.31560097524546116],[120,155,77,0.3174973298188283],[120,155,78,0.3194061561811601],[120,155,79,0.3213017769770008],[120,156,64,0.297646286413965],[120,156,65,0.2994733058102174],[120,156,66,0.3011503877598082],[120,156,67,0.3026876030004316],[120,156,68,0.3041219230961268],[120,156,69,0.30550045157714295],[120,156,70,0.3068623814256095],[120,156,71,0.3082386292423359],[120,156,72,0.30965192198388486],[120,156,73,0.3111169793501458],[120,156,74,0.3126407931312682],[120,156,75,0.31422300466177244],[120,156,76,0.315856381374464],[120,156,77,0.3175273932991047],[120,156,78,0.3192168902123337],[120,156,79,0.320900880017682],[120,157,64,0.30015674418068916],[120,157,65,0.30180400797137036],[120,157,66,0.30329188669907015],[120,157,67,0.30463520521832194],[120,157,68,0.3058719936573944],[120,157,69,0.30704791068072224],[120,157,70,0.308201525908134],[120,157,71,0.3093638717743661],[120,157,72,0.31055837963509464],[120,157,73,0.3118009220134568],[120,157,74,0.31309996276911317],[120,157,75,0.3144568167891554],[120,157,76,0.31586602062258057],[120,157,77,0.31731581530946673],[120,157,78,0.31878874249426803],[120,157,79,0.3202623547615854],[120,158,64,0.3023403550132691],[120,158,65,0.3038114865483816],[120,158,66,0.3051147212328876],[120,158,67,0.306269571268263],[120,158,68,0.30731503286459466],[120,158,69,0.30829520252060155],[120,158,70,0.30924785890959927],[120,158,71,0.3102039444305912],[120,158,72,0.31118736284042225],[120,158,73,0.31221489272954983],[120,158,74,0.3132962190578648],[120,158,75,0.31443408476467966],[120,158,76,0.3156245642692102],[120,158,77,0.3168574604865944],[120,158,78,0.31811682680174475],[120,158,79,0.31938161527110526],[120,159,64,0.3041924821407797],[120,159,65,0.3054910435958454],[120,159,66,0.3066140969597432],[120,159,67,0.307585703491934],[120,159,68,0.3084457268049409],[120,159,69,0.3092366233735368],[120,159,70,0.30999524754841795],[120,159,71,0.3107522744305232],[120,159,72,0.31153187190728543],[120,159,73,0.312351497378506],[120,159,74,0.3132218217812181],[120,159,75,0.3141467833032398],[120,159,76,0.3151237729593806],[120,159,77,0.3161439539945973],[120,159,78,0.31719271687693873],[120,159,79,0.3182502714520409],[120,160,64,0.3057090242941613],[120,160,65,0.30683840405175195],[120,160,66,0.30778548121157784],[120,160,67,0.30857867335833283],[120,160,68,0.30925860928981985],[120,160,69,0.3098660601465284],[120,160,70,0.31043685401673554],[120,160,71,0.3110012510180747],[120,160,72,0.311583502665055],[120,160,73,0.31220154387915344],[120,160,74,0.3128668206016142],[120,160,75,0.313584255734292],[120,160,76,0.3143523559024726],[120,160,77,0.31516346130783435],[120,160,78,0.3160041407218812],[120,160,79,0.316855733462566],[120,161,64,0.30688657700975086],[120,161,65,0.3078498826456156],[120,161,66,0.3086247693084097],[120,161,67,0.30924378737436803],[120,161,68,0.3097482277992029],[120,161,69,0.3101771523699531],[120,161,70,0.31056528627364016],[120,161,71,0.3109423551423276],[120,161,72,0.3113325439372958],[120,161,73,0.31175409553913963],[120,161,74,0.3122190523140355],[120,161,75,0.31273314367861904],[120,161,76,0.31329582244101484],[120,161,77,0.3139004524559038],[120,161,78,0.31453464989950536],[120,161,79,0.315180780248427],[120,162,64,0.30772258684958104],[120,162,65,0.3085225458213272],[120,162,66,0.3091284477724317],[120,162,67,0.309576752335102],[120,162,68,0.3099093115185255],[120,162,69,0.31016345890026653],[120,162,70,0.31037275549435595],[120,162,71,0.3105662970154888],[120,162,72,0.31076808280842955],[120,162,73,0.3109965307050026],[120,162,74,0.31126414135237074],[120,162,75,0.31157731529743815],[120,162,76,0.3119363258557932],[120,162,77,0.3123354505420632],[120,162,78,0.3127632635943835],[120,162,79,0.31320309189142803],[120,163,64,0.308215498551833],[120,163,65,0.3088543686974903],[120,163,66,0.309293754529513],[120,163,67,0.309573839948358],[120,163,68,0.3097369415108274],[120,163,69,0.30981862938029703],[120,163,70,0.30985124032281874],[120,163,71,0.3098631615869617],[120,163,72,0.30987811770629975],[120,163,73,0.30991460870685755],[120,163,74,0.3099855035068105],[120,163,75,0.31009779202745963],[120,163,76,0.3102524992682413],[120,163,77,0.3104447643367744],[120,163,78,0.3106640871703004],[120,163,79,0.31089474543993595],[120,164,64,0.30836270276305],[120,164,65,0.30884202291283247],[120,164,66,0.3091163239658031],[120,164,67,0.3092293988397773],[120,164,68,0.3092239374378039],[120,164,69,0.3091336763056676],[120,164,70,0.30898965706610526],[120,164,71,0.30881949101981704],[120,164,72,0.30864656796624856],[120,164,73,0.3084894213114837],[120,164,74,0.30836125347368853],[120,164,75,0.30826962532013563],[120,164,76,0.30821631309499437],[120,164,77,0.30819733602637556],[120,164,78,0.30820315753721034],[120,164,79,0.3082190627301518],[120,165,64,0.30814775856747545],[120,165,65,0.3084670893618745],[120,165,66,0.308575571912812],[120,165,67,0.3085204791577081],[120,165,68,0.3083447774594538],[120,165,69,0.308080311380909],[120,165,70,0.3077567836060341],[120,165,71,0.3074010011911852],[120,165,72,0.3070360075622356],[120,165,73,0.3066803752516962],[120,165,74,0.3063476635971102],[120,165,75,0.3060460453383308],[120,165,76,0.3057781057687355],[120,165,77,0.30554081781662895],[120,165,78,0.30532569616074345],[120,165,79,0.30511913322066453],[120,166,64,0.3075536436667948],[120,166,65,0.30771035949909015],[120,166,66,0.3076500195706216],[120,166,67,0.3074231768144184],[120,166,68,0.30707297023925423],[120,166,69,0.3066293444228111],[120,166,70,0.30612067512843794],[120,166,71,0.30557299488687745],[120,166,72,0.3050090473983192],[120,166,73,0.304447506844426],[120,166,74,0.3039023665358081],[120,166,75,0.3033825010300508],[120,166,76,0.3028914055656855],[120,166,77,0.3024271163710959],[120,166,78,0.30198231512706236],[120,166,79,0.30154462059031417],[120,167,64,0.30657015531556175],[120,167,65,0.30655991789757187],[120,167,66,0.3063259893990752],[120,167,67,0.30592192554609493],[120,167,68,0.30539093298643744],[120,167,69,0.3047611095515893],[120,167,70,0.3040595783105063],[120,167,71,0.3033116872892275],[120,167,72,0.3025399841509266],[120,167,73,0.3017633598017494],[120,167,74,0.30099636554971676],[120,167,75,0.3002487081472066],[120,167,76,0.29952492675091236],[120,167,77,0.29882425553943864],[120,167,78,0.2981406754406615],[120,167,79,0.2974631581415765],[120,168,64,0.30519207785443936],[120,168,65,0.30500929760095513],[120,168,66,0.3045957486242799],[120,168,67,0.3040076347411529],[120,168,68,0.30328812975622804],[120,168,69,0.30246360620602875],[120,168,70,0.3015600740897865],[120,168,71,0.30060234705329925],[120,168,72,0.29961293435419817],[120,168,73,0.29861110573043614],[120,168,74,0.29761213400178227],[120,168,75,0.29662671993101863],[120,168,76,0.29566060356807555],[120,168,77,0.2947143659992783],[120,168,78,0.293783425128093],[120,168,79,0.29285822882624474],[120,169,64,0.3034171209975382],[120,169,65,0.3030554022891294],[120,169,66,0.30245541737531106],[120,169,67,0.301675590853404],[120,169,68,0.30075897353198083],[120,169,69,0.29973040599059647],[120,169,70,0.298614990638243],[120,169,71,0.29743721460937245],[120,169,72,0.296219755572148],[120,169,73,0.29498246448668386],[120,169,74,0.293741530348464],[120,169,75,0.29250883164259567],[120,169,76,0.2912914789240994],[120,169,77,0.29009155263088726],[120,169,78,0.288906039932342],[120,169,79,0.2877269741205677],[120,170,64,0.3012436742125037],[120,170,65,0.3006962443086761],[120,170,66,0.29990269379649004],[120,170,67,0.298923177905114],[120,170,68,0.29780055065813366],[120,170,69,0.2965583867396534],[120,170,70,0.2952211503747613],[120,170,71,0.2938132635188955],[120,170,72,0.2923578219684126],[120,170,73,0.2908754926421112],[120,170,74,0.28938359727872],[120,170,75,0.287895387479086],[120,170,76,0.2864195157040355],[120,170,77,0.2849597065225038],[120,170,78,0.2835146320924863],[120,170,79,0.2820779955528209],[120,171,64,0.298668375168342],[120,171,65,0.29792849659614407],[120,171,66,0.2969343942273143],[120,171,67,0.2957474152460924],[120,171,68,0.29441016587480123],[120,171,69,0.29294529214627213],[120,171,70,0.29137694947315795],[120,171,71,0.2897298034637347],[120,171,72,0.2880276529892859],[120,171,73,0.28629223892513656],[120,171,74,0.2845422440256402],[120,171,75,0.28279248906994636],[120,171,76,0.2810533300898296],[120,171,77,0.27933026116615495],[120,171,78,0.27762372695973214],[120,171,79,0.27592914882854025],[120,172,64,0.2956834900439824],[120,172,65,0.294744856342523],[120,172,66,0.29354380636547955],[120,172,67,0.29214231056222],[120,172,68,0.2905827060367812],[120,172,69,0.288887115140641],[120,172,70,0.2870797681665764],[120,172,71,0.2851859232994608],[120,172,72,0.2832303937343305],[120,172,73,0.2812362653685345],[120,172,74,0.2792238107498504],[120,172,75,0.2772096046311226],[120,172,76,0.2752058461480122],[120,172,77,0.27321989230278254],[120,172,78,0.2712540071067729],[120,172,79,0.2693053304106218],[120,173,64,0.2922741033018449],[120,173,65,0.29113121806058834],[120,173,66,0.28971785314473214],[120,173,67,0.2880960259469127],[120,173,68,0.2863078204244889],[120,173,69,0.2843753030333721],[120,173,70,0.2823232099859978],[120,173,71,0.280177772447616],[120,173,72,0.2779651454411416],[120,173,73,0.275710032754904],[120,173,74,0.2734345137637532],[120,173,75,0.2711570777339961],[120,173,76,0.26889187083942406],[120,173,77,0.2666481607722585],[120,173,78,0.26443002349235634],[120,173,79,0.2622362563238176],[120,174,64,0.28841511433602807],[120,174,65,0.2870636535239827],[120,174,66,0.2854340648693116],[120,174,67,0.28358785466273523],[120,174,68,0.2815669153726473],[120,174,69,0.2793937822629325],[120,174,70,0.27709416790113384],[120,174,71,0.27469567874006],[120,174,72,0.27222614435747555],[120,174,73,0.2697121488075803],[120,174,74,0.267177770231128],[120,174,75,0.2646435345213584],[120,174,76,0.26212558848944456],[120,174,77,0.2596350976189779],[120,174,78,0.25717787314734675],[120,174,79,0.25475423286616794],[120,175,64,0.2840836437455908],[120,175,65,0.2825206776439682],[120,175,66,0.28067261443583147],[120,175,67,0.2785999180258461],[120,175,68,0.27634438853695464],[120,175,69,0.27392959118602034],[120,175,70,0.2713827059429852],[120,175,71,0.2687331223570016],[120,175,72,0.26601066881013224],[120,175,73,0.2632440507600964],[120,175,74,0.260459504362405],[120,175,75,0.2576796715017296],[120,175,76,0.2549227018975212],[120,175,77,0.2522015875829022],[120,175,78,0.24952373469200706],[120,175,79,0.24689077713278892],[120,176,64,0.27930968975738785],[120,176,65,0.2775335296953957],[120,176,66,0.27546592836059725],[120,176,67,0.2731657513684814],[120,176,68,0.2706747826623385],[120,176,69,0.2680181517708808],[120,176,70,0.2652249677028955],[120,176,71,0.26232678107961416],[120,176,72,0.2593557150397313],[120,176,73,0.2563428125337602],[120,176,74,0.25331660664127503],[120,176,75,0.25030192017257213],[120,176,76,0.24731890043943122],[120,176,77,0.2443822947012195],[120,176,78,0.24150097141596646],[120,176,79,0.23867769205489112],[120,177,64,0.2741392120729904],[120,177,65,0.2721496149456112],[120,177,66,0.26986278077743425],[120,177,67,0.26733540651370197],[120,177,68,0.2646093045980842],[120,177,69,0.2617116546936178],[120,177,70,0.25867390746442087],[120,177,71,0.255530105924213],[120,177,72,0.25231492183521026],[120,177,73,0.2490619161148073],[120,177,74,0.24580203011796825],[120,177,75,0.2425623142795256],[120,177,76,0.23936490021156412],[120,177,77,0.23622622196006798],[120,177,78,0.23315649173556408],[120,177,79,0.23015943504832176],[120,178,64,0.2686194283001126],[120,178,65,0.266417863128266],[120,178,66,0.2639137968556779],[120,178,67,0.26116120146286154],[120,178,68,0.25820193863878715],[120,178,69,0.255065667160116],[120,178,70,0.25178653379533444],[120,178,71,0.24840134891740928],[120,178,72,0.2449475344233558],[120,178,73,0.24146130322413706],[120,178,74,0.237976077390556],[120,178,75,0.23452115164564308],[120,178,76,0.23112060849316562],[120,178,77,0.2277924908686866],[120,178,78,0.22454823779770472],[120,178,79,0.22139238814864576],[120,179,64,0.26279821944755444],[120,179,65,0.260388065961761],[120,179,66,0.25767070490125343],[120,179,67,0.25469686688538007],[120,179,68,0.2515084656970532],[120,179,69,0.24813800280156154],[120,179,70,0.24462260875014402],[120,179,71,0.24100207143855604],[120,179,72,0.2373167036513556],[120,179,73,0.23360544943866327],[120,179,74,0.22990423660523157],[120,179,75,0.22624458218575147],[120,179,76,0.2226524573683079],[120,179,77,0.21914741791327133],[120,179,78,0.21574200570136762],[120,179,79,0.21244142663615337],[120,180,64,0.25672349893615126],[120,180,65,0.25411017944511827],[120,180,66,0.2511855565490465],[120,180,67,0.24799666578919866],[120,180,68,0.24458546271843318],[120,180,69,0.2409875813460295],[120,180,70,0.2372433492133934],[120,180,71,0.2333956701159614],[120,180,72,0.22948782127141665],[120,180,73,0.22556149606635809],[120,180,74,0.22165509982591639],[120,180,75,0.2178023056351675],[120,180,76,0.21403087681913946],[120,180,77,0.21036176226327227],[120,180,78,0.20680847033216335],[120,180,79,0.20337672672534857],[120,181,64,0.2504425445140166],[120,181,65,0.24763359031343624],[120,181,66,0.2445099144337519],[120,181,67,0.24111448577207528],[120,181,68,0.23748928176089057],[120,181,69,0.23367327752371728],[120,181,70,0.2297101298927211],[120,181,71,0.22564591985531632],[120,181,72,0.22152689099451106],[120,181,73,0.2173974395500734],[120,181,74,0.21329836367523372],[120,181,75,0.20926537903959697],[120,181,76,0.20532790749821586],[120,181,77,0.20150814511296966],[120,181,78,0.19782041537935616],[120,181,79,0.19427081308364133],[120,182,64,0.24400129242139532],[120,182,65,0.24100634599134588],[120,182,66,0.23769400668277227],[120,182,67,0.234102903210815],[120,182,68,0.23027500811897747],[120,182,69,0.22625275862282646],[120,182,70,0.22208318743228986],[120,182,71,0.21781553354330901],[120,182,72,0.21349893494831668],[120,182,73,0.20918037814713278],[120,182,74,0.20490291212496323],[120,182,75,0.20070413403333234],[120,182,76,0.1966149533720182],[120,182,77,0.1926586410290695],[120,182,78,0.18885016909566102],[120,182,79,0.18519584693703478],[120,183,64,0.23744359310703758],[120,183,65,0.23427434733883895],[120,183,66,0.23078584753105985],[120,183,67,0.22701221870276486],[120,183,68,0.22299539683157202],[120,183,69,0.2187813100739383],[120,183,70,0.21442032508106726],[120,183,71,0.20996473793713313],[120,183,72,0.20546643514677254],[120,183,73,0.20097481560929248],[120,183,74,0.19653498129735628],[120,183,75,0.19218620392197364],[120,183,76,0.1879606744226835],[120,183,77,0.18388254167550228],[120,183,78,0.17996724636553513],[120,183,79,0.17622115553023673],[120,184,64,0.23081042775523994],[120,184,65,0.22748050344057683],[120,184,66,0.22383032331515124],[120,184,67,0.2198894630325441],[120,184,68,0.21569978687258431],[120,184,69,0.21131064840409083],[120,184,70,0.20677561731759622],[120,184,71,0.20214986522257747],[120,184,72,0.1974878095564126],[120,184,73,0.19284102157194957],[120,184,74,0.1882564061300996],[120,184,75,0.1837746605847897],[120,184,76,0.17942901960142288],[120,184,77,0.17524429230042424],[120,184,78,0.17123619766844947],[120,184,79,0.16741100373562473],[120,185,64,0.22413908484020253],[120,185,65,0.22066384764694588],[120,185,66,0.21686824306168254],[120,185,67,0.21277737289665802],[120,185,68,0.20843299228611029],[120,185,69,0.203887720867251],[120,185,70,0.1991981138029689],[120,185,71,0.19442195969920872],[120,185,72,0.1896159223273313],[120,185,73,0.1848334483519813],[120,185,74,0.18012294875678653],[120,185,75,0.17552626121995327],[120,185,76,0.1710774002444874],[120,185,77,0.1668016013970182],[120,185,78,0.1627146655590553],[120,185,79,0.1588226086491462],[120,186,64,0.21746229588205607],[120,186,65,0.21385861403262912],[120,186,66,0.20993535284431233],[120,186,67,0.2057133355792789],[120,186,68,0.2012341694910226],[120,186,69,0.1965534910254113],[120,186,70,0.19173054200657896],[120,186,71,0.18682539903070786],[120,186,72,0.1818966277441083],[120,186,73,0.1769992038501359],[120,186,74,0.17218270846122524],[120,186,75,0.1674898049729434],[120,186,76,0.16295500419053066],[120,186,77,0.15860372398863343],[120,186,78,0.15445164933580183],[120,186,79,0.15050439807099858],[120,187,64,0.21080732953879047],[120,187,65,0.20709327339831154],[120,187,66,0.20306131304421682],[120,187,67,0.19872830173607645],[120,187,68,0.19413565994691806],[120,187,69,0.1893417095260966],[120,187,70,0.18440800782685882],[120,187,71,0.1793965294835923],[120,187,72,0.1743673474461913],[120,187,73,0.16937658025828936],[120,187,74,0.16447461307961053],[120,187,75,0.1597045995161527],[120,187,76,0.15510125087848337],[120,187,77,0.15068991904174178],[120,187,78,0.1464859786349779],[120,187,79,0.14249451384632067],[120,188,64,0.2041950431281554],[120,188,65,0.2003895279011024],[120,188,66,0.19626863761093097],[120,188,67,0.19184566540729],[120,188,68,0.18716180734144064],[120,188,69,0.18227766929535025],[120,188,70,0.1772566935092625],[120,188,71,0.17216231456603182],[120,188,72,0.16705568046564526],[120,188,73,0.16199363828168134],[120,188,74,0.1570269917469152],[120,188,75,0.1521990376835236],[120,188,76,0.14754438775486847],[120,188,77,0.1430880815742682],[120,188,78,0.13884499676540046],[120,188,79,0.13481956113310553],[120,189,64,0.1976388906363199],[120,189,65,0.19376126336228677],[120,189,66,0.18957159438524698],[120,189,67,0.18508011034922298],[120,189,68,0.18032774843122326],[120,189,69,0.17537694434325335],[120,189,70,0.17029255214920316],[120,189,71,0.1651389964731047],[120,189,72,0.1599780456357549],[120,189,73,0.15486684660425323],[120,189,74,0.149856228915636],[120,189,75,0.14498928431058247],[120,189,76,0.14030022838149642],[120,189,77,0.13581355010466756],[120,189,78,0.1315434546925535],[120,189,79,0.12749360477349958],[120,190,64,0.191143886234466],[120,190,65,0.18721345826588362],[120,190,66,0.18297506551289586],[120,190,67,0.17843642174373375],[120,190,68,0.17363817664374057],[120,190,69,0.16864411136035562],[120,190,70,0.16351999805706346],[120,190,71,0.15833076974423926],[120,190,72,0.15313835593511738],[120,190,73,0.14799977634980888],[120,190,74,0.1429654996144735],[120,190,75,0.13807807348567525],[120,190,76,0.13337103270668438],[120,190,77,0.12886809017651854],[120,190,78,0.12458261668762576],[120,190,79,0.12051741406820933],[120,191,64,0.18470552229093645],[120,191,65,0.18074104842861383],[120,191,66,0.17647336694726296],[120,191,67,0.1719082623185298],[120,191,68,0.16708607752566437],[120,191,69,0.16207145326846992],[120,191,70,0.15693059225616737],[120,191,71,0.15172846654300665],[120,191,72,0.14652672434889075],[120,191,73,0.14138185032308515],[120,191,74,0.1363435859617714],[120,191,75,0.13145361648254641],[120,191,76,0.12674453004546085],[120,191,77,0.1222390547941998],[120,191,78,0.11794957877627647],[120,191,79,0.11387795739142703],[120,192,64,0.18494957910058313],[120,192,65,0.17956367380528623],[120,192,66,0.1740029484581445],[120,192,67,0.16826443831965102],[120,192,68,0.16238104693491745],[120,192,69,0.15641094746600614],[120,192,70,0.1505017223842431],[120,192,71,0.14530825298039088],[120,192,72,0.14011820085312407],[120,192,73,0.13498714685425947],[120,192,74,0.12996377500475614],[120,192,75,0.12508862071870697],[120,192,76,0.12039308540756183],[120,192,77,0.11589872271817458],[120,192,78,0.1116168012547043],[120,192,79,0.10754814823597472],[120,193,64,0.18810438246717753],[120,193,65,0.18260194001905533],[120,193,66,0.1769305906661886],[120,193,67,0.17108651479432355],[120,193,68,0.16510229110016592],[120,193,69,0.1590360966851832],[120,193,70,0.15294705959250304],[120,193,71,0.14689257598890065],[120,193,72,0.1409263647339482],[120,193,73,0.13509676580823612],[120,193,74,0.12944528879811384],[120,193,75,0.12400541724856416],[120,193,76,0.11880167430426712],[120,193,77,0.1138489546651854],[120,193,78,0.10915212749157122],[120,193,79,0.10470591450666922],[120,194,64,0.19118927227364613],[120,194,65,0.18557303752048365],[120,194,66,0.1797945111480322],[120,194,67,0.17384945782797534],[120,194,68,0.1677701893346163],[120,194,69,0.16161465249464407],[120,194,70,0.15544131993892055],[120,194,71,0.14930658514738115],[120,194,72,0.1432629019581725],[120,194,73,0.13735716223980185],[120,194,74,0.13162931766175495],[120,194,75,0.1261112511241744],[120,194,76,0.12082590302697378],[120,194,77,0.11578665717667881],[120,194,78,0.11099699074972597],[120,194,79,0.10645039235631702],[120,195,64,0.19414122877053674],[120,195,65,0.1884111331805667],[120,195,66,0.1825261150849574],[120,195,67,0.17648180396435478],[120,195,68,0.1703103392275095],[120,195,69,0.16406938545747612],[120,195,70,0.15781669243431024],[120,195,71,0.1516075712706872],[120,195,72,0.14549311938697257],[120,195,73,0.13951867824560807],[120,195,74,0.1337225295247948],[120,195,75,0.12813483504700707],[120,195,76,0.12277682540848336],[120,195,77,0.1176602418848698],[120,195,78,0.11278703582006194],[120,195,79,0.10814932934217171],[120,196,64,0.19691549095061614],[120,196,65,0.19107084153367795],[120,196,66,0.18507929739319762],[120,196,67,0.17893655154991742],[120,196,68,0.17267468685797285],[120,196,69,0.16635112158069493],[120,196,70,0.16002289399334366],[120,196,71,0.1537442212763174],[120,196,72,0.14756481064040886],[120,196,73,0.14152839815384033],[120,196,74,0.13567152070238658],[120,196,75,0.1300225261592513],[120,196,76,0.12460082648217201],[120,196,77,0.11941639809483255],[120,196,78,0.11446953355236922],[120,196,79,0.10975084813868441],[120,197,64,0.19950629851137724],[120,197,65,0.1935492840786063],[120,197,66,0.18745369850068236],[120,197,67,0.18121557616713524],[120,197,68,0.17486704829144595],[120,197,69,0.16846522420049012],[120,197,70,0.16206634851681623],[120,197,71,0.15572344963778303],[120,197,72,0.14948474029054754],[120,197,73,0.14339224066662498],[120,197,74,0.13748062931627889],[120,197,75,0.13177632663818548],[120,197,76,0.12629681545088237],[120,197,77,0.12105020278273065],[120,197,78,0.11603502667078729],[120,197,79,0.1112403114180555],[120,198,64,0.2019080611867951],[120,198,65,0.1958433763553763],[120,198,66,0.18964838028549097],[120,198,67,0.18331979414046629],[120,198,68,0.17688989004407918],[120,198,69,0.17041531643515898],[120,198,70,0.1639513591502778],[120,198,71,0.15754969072997807],[120,198,72,0.15125686578883654],[120,198,73,0.1451130334098492],[120,198,74,0.13915087148240024],[120,198,75,0.13339474756867872],[120,198,76,0.12786011054534518],[120,198,77,0.12255311692872305],[120,198,78,0.11747049545707366],[120,198,79,0.11259965317438414],[120,199,64,0.2023099312811578],[120,199,65,0.1979473341832163],[120,199,66,0.19165909577108262],[120,199,67,0.1852462146201352],[120,199,68,0.1787411849739675],[120,199,69,0.17219997697344855],[120,199,70,0.1656766931997655],[120,199,71,0.15922143323369697],[120,199,72,0.15287889071086772],[120,199,73,0.14668716112188687],[120,199,74,0.140676765000291],[120,199,75,0.13486989081824738],[120,199,76,0.1292798615838471],[120,199,77,0.12391082880762695],[120,199,78,0.11875769718391442],[120,199,79,0.11380628301637069],[120,200,64,0.20186673032004068],[120,200,65,0.19955815076049466],[120,200,66,0.1934797378285607],[120,200,67,0.18698948248455594],[120,200,68,0.180416061851906],[120,200,69,0.17381450592122674],[120,200,70,0.16723747063419706],[120,200,71,0.1607332342557165],[120,200,72,0.15434440396635452],[120,200,73,0.14810682597323357],[120,200,74,0.14204870348696444],[120,200,75,0.13618992660210177],[120,200,76,0.1305416178057769],[120,200,77,0.12510589652668921],[120,200,78,0.11987586582869815],[120,200,79,0.11483582405129227],[120,201,64,0.20137548760875076],[120,201,65,0.19886041218171968],[120,201,66,0.19510370723287407],[120,201,67,0.18854334667651745],[120,201,68,0.1819083883968607],[120,201,69,0.17525263420507164],[120,201,70,0.16862700832487096],[120,201,71,0.16207770340471425],[120,201,72,0.15564500510516516],[120,201,73,0.14936231186779128],[120,201,74,0.14325535389681424],[120,201,75,0.13734161508898823],[120,201,76,0.1316299613493053],[120,201,77,0.12612047843300178],[120,201,78,0.12080452216210233],[120,201,79,0.11566498357864996],[120,202,64,0.20085157028194142],[120,202,65,0.19811689549450495],[120,202,66,0.19533253455397598],[120,202,67,0.1899020539113413],[120,202,68,0.18321228787131505],[120,202,69,0.17650817680789577],[120,202,70,0.16983862049738827],[120,202,71,0.16324745751521286],[120,202,72,0.15677241664096933],[120,202,73,0.15044425388470814],[120,202,74,0.14428607882708328],[120,202,75,0.13831287368646938],[120,202,76,0.13253120824494094],[120,202,77,0.12693915348502766],[120,202,78,0.12152639651438094],[120,202,79,0.11627455908702264],[120,203,64,0.2003081118618962],[120,203,65,0.19734112744176646],[120,203,66,0.19431944890038985],[120,203,67,0.191061667627882],[120,203,68,0.18432358927396353],[120,203,69,0.17757663006517022],[120,203,70,0.1708673758373364],[120,203,71,0.164237046691602],[120,203,72,0.15772058430886182],[120,203,73,0.151345914030256],[120,203,74,0.14513338503532006],[120,203,75,0.13909539168783985],[120,203,76,0.133236178856831],[120,203,77,0.12755183375907628],[120,203,78,0.12203046661420403],[120,203,79,0.11665258215425721],[120,204,64,0.19975504599702004],[120,204,65,0.19654369817350645],[120,204,66,0.19327398508615626],[120,204,67,0.18992669425858136],[120,204,68,0.1852412111022242],[120,204,69,0.17845671319586562],[120,204,70,0.17171181164855437],[120,204,71,0.1650448523150099],[120,204,72,0.15848776615838733],[120,204,73,0.15206546446953753],[120,204,74,0.14579539961144664],[120,204,75,0.13968729399528682],[120,204,76,0.13374303975238186],[120,204,77,0.1279567713263079],[120,204,78,0.12231511297513203],[120,204,79,0.11679760294605349],[120,205,64,0.1991982296213675],[120,205,65,0.1957312977634871],[120,205,66,0.19220351857799345],[120,205,67,0.1885925040233601],[120,205,68,0.18485462235998812],[120,205,69,0.17915185417994994],[120,205,70,0.17237560541172797],[120,205,71,0.1656749576171938],[120,205,72,0.15907861135838522],[120,205,73,0.15260827939732508],[120,205,74,0.14627837525178014],[120,205,75,0.14009585565426655],[120,205,76,0.13406021901692272],[120,205,77,0.128163661787652],[120,205,78,0.12239139437185799],[120,205,79,0.11672211808957667],[120,206,64,0.19863865630384792],[120,206,65,0.19490583985928642],[120,206,66,0.19111059646527861],[120,206,67,0.18722709464827306],[120,206,68,0.18321134295680383],[120,206,69,0.1790126733187729],[120,206,70,0.1728692040320448],[120,206,71,0.16613899137818122],[120,206,72,0.15950622955534588],[120,206,73,0.15298923668625802],[120,206,74,0.1465992260756616],[120,206,75,0.14034026894227225],[120,206,76,0.13420939705347076],[120,206,77,0.12819684679245372],[120,206,78,0.12228644600157428],[120,206,79,0.11645614476620338],[120,207,64,0.1980729201245769],[120,207,65,0.19406439823698277],[120,207,66,0.18999247649933254],[120,207,67,0.18582765931529252],[120,207,68,0.1815255870829672],[120,207,69,0.1770386023217939],[120,207,70,0.172326003758825],[120,207,71,0.16645628093840642],[120,207,72,0.15979183644681402],[120,207,73,0.15323172809084923],[120,207,74,0.14678379188015267],[120,207,75,0.14044907135692866],[120,207,76,0.13422203059987575],[120,207,77,0.12809089076653524],[120,207,78,0.12203809117216728],[120,207,79,0.11604087575094107],[120,208,64,0.19749808492363813],[120,208,65,0.19320302675958737],[120,208,66,0.1888443832551215],[120,208,67,0.18438888599279288],[120,208,68,0.17979184139049756],[120,208,69,0.17500879860409305],[120,208,70,0.17000279121829098],[120,208,71,0.16474458648632204],[120,208,72,0.15921271885805882],[120,208,73,0.15335311855376907],[120,208,74,0.14684885622467742],[120,208,75,0.14043845711826436],[120,208,76,0.134113780160802],[120,208,77,0.12722406878023493],[120,208,78,0.12001336245869616],[120,208,79,0.1125778957632125],[120,209,64,0.19691121377565987],[120,209,65,0.19231812351083666],[120,209,66,0.18766232662283072],[120,209,67,0.18290679746680877],[120,209,68,0.1780065877603738],[120,209,69,0.17292061913767656],[120,209,70,0.16761581870399958],[120,209,71,0.1620670826981137],[120,209,72,0.1562571140233758],[120,209,73,0.1501761793435174],[120,209,74,0.14382178503762397],[120,209,75,0.13719827142395338],[120,209,76,0.13031632477275865],[120,209,77,0.12319240673347398],[120,209,78,0.11584810090206096],[120,209,79,0.10830937634688473],[120,210,64,0.1963084195811389],[120,210,65,0.19140590666580068],[120,210,66,0.18644285986754822],[120,210,67,0.18137862933476456],[120,210,68,0.17616812891260483],[120,210,69,0.17077377960371587],[120,210,70,0.16516650618487005],[120,210,71,0.15932540849893143],[120,210,72,0.15323739816512416],[120,210,73,0.14689677498474576],[120,210,74,0.14030474283236732],[120,210,75,0.13346886490670357],[120,210,76,0.12640245829416302],[120,210,77,0.11912392787116424],[120,210,78,0.11165603963950523],[120,210,79,0.10402513364951922],[120,211,64,0.19568469793796756],[120,211,65,0.1904621447789629],[120,211,66,0.1851827060175304],[120,211,67,0.1798023495145293],[120,211,68,0.17427599835592122],[120,211,69,0.16856965420903594],[120,211,70,0.16265828380009748],[120,211,71,0.1565251956783512],[120,211,72,0.150161474341013],[120,211,73,0.1435653752163222],[120,211,74,0.13674168079282395],[120,211,75,0.12970101823478952],[120,211,76,0.12245913886950012],[120,211,77,0.11503615997182555],[120,211,78,0.10745576930628507],[120,211,79,0.09974439291398214],[120,212,64,0.19503386374018317],[120,212,65,0.1894819915142817],[120,212,66,0.18387849008950033],[120,212,67,0.17817628577282743],[120,212,68,0.1723304813293421],[120,212,69,0.16631069019193082],[120,212,70,0.1600959022979464],[120,212,71,0.15367356894700893],[120,212,72,0.14703883575452986],[120,212,73,0.14019375843859547],[120,212,74,0.13314650222192712],[120,212,75,0.1259105256490469],[120,212,76,0.11850374963063498],[120,212,77,0.11094771253249007],[120,212,78,0.10326671212700667],[120,212,79,0.0954869352182834],[120,213,64,0.19434859301108254],[120,213,65,0.1884599262486759],[120,213,66,0.1825265785176814],[120,213,67,0.17649886258625785],[120,213,68,0.1703322480063934],[120,213,69,0.16399993825615108],[120,213,70,0.15748486372842813],[120,213,71,0.15077848208870973],[120,213,72,0.14387981467474448],[120,213,73,0.13679448826134594],[120,213,74,0.12953378345397276],[120,213,75,0.1221136909591351],[120,213,76,0.11455397695703178],[120,213,77,0.10687725877247181],[120,213,78,0.09910809200597279],[120,213,79,0.09127207024581928],[120,214,64,0.19362057156597176],[120,214,65,0.18738980206963116],[120,214,66,0.18112302724411342],[120,214,67,0.17476844874121464],[120,214,68,0.16828210032855667],[120,214,69,0.16164070027096822],[120,214,70,0.15483097370955556],[120,214,71,0.14784818058046806],[120,214,72,0.14069496321417316],[120,214,73,0.1333802221057545],[120,214,74,0.1259180215830738],[120,214,75,0.11832652704985065],[120,214,76,0.11062697542340869],[120,214,77,0.10284268032268518],[120,214,78,0.09499807349330473],[120,214,79,0.08711778388122103],[120,215,64,0.1928407521835268],[120,215,65,0.1862650027731845],[120,215,66,0.1796636400156487],[120,215,67,0.17298331716970378],[120,215,68,0.16618083392868355],[120,215,69,0.15923629567326067],[120,215,70,0.15214001668912874],[120,215,71,0.14489079209847325],[120,215,72,0.13749456738795993],[120,215,73,0.12996315888974133],[120,215,74,0.12231302738010075],[120,215,75,0.11456410687659142],[120,215,76,0.10673869062289099],[120,215,77,0.09886037615203912],[120,215,78,0.09095307121579205],[120,215,79,0.08304006225891393],[120,216,64,0.191999722042569],[120,216,65,0.18507871054882427],[120,216,66,0.17814413851614516],[120,216,67,0.17114171860459235],[120,216,68,0.16402921669561124],[120,216,69,0.15678994810246635],[120,216,70,0.14941755572357568],[120,216,71,0.14191404643239489],[120,216,72,0.13428829598689365],[120,216,73,0.1265546273474718],[120,216,74,0.11873146497418796],[120,216,75,0.11084006755709015],[120,216,76,0.10290334150824407],[120,216,77,0.09494473741195697],[120,216,78,0.08698723149355442],[120,216,79,0.07905239402557895],[120,217,64,0.19108818225202348],[120,217,65,0.18382428611200757],[120,217,66,0.17656044604010895],[120,217,67,0.16924207071966044],[120,217,68,0.16182808561767612],[120,217,69,0.15430479389072],[120,217,70,0.14666885839213223],[120,217,71,0.13892512643255794],[120,217,72,0.13108498590423195],[120,217,73,0.12316481664642696],[120,217,74,0.11518453999234503],[120,217,75,0.10716626928844211],[120,217,76,0.09913306401960821],[120,217,77,0.09110779000926253],[120,217,78,0.08311208799547104],[120,217,79,0.07516545271154901],[120,218,64,0.19009754136447174],[120,218,65,0.18249576311152907],[120,218,66,0.17490908648478948],[120,218,67,0.16728326449527264],[120,218,68,0.15957856362346856],[120,218,69,0.15178401411669587],[120,218,70,0.14389895055657986],[120,218,71,0.13593065171226223],[120,218,72,0.12789256565975549],[120,218,73,0.11980265107436323],[120,218,74,0.1116818379647347],[120,218,75,0.10355261093708935],[120,218,76,0.09543771788981494],[120,218,77,0.08735900684369179],[120,218,78,0.07933639341498722],[120,218,79,0.07138696123670413],[120,219,64,0.18902062481665935],[120,219,65,0.18108845869654858],[120,219,66,0.1731877005001709],[120,219,67,0.1652650896182613],[120,219,68,0.157282398211714],[120,219,69,0.14923109201128731],[120,219,70,0.14111279976260063],[120,219,71,0.13293679691957405],[120,219,72,0.12471811896256155],[120,219,73,0.11647581067230217],[120,219,74,0.10823131491229122],[120,219,75,0.1000070042632639],[120,219,76,0.09182485863629952],[120,219,77,0.08370529176756429],[120,219,78,0.07566612927172077],[120,219,79,0.06772174070194045],[120,220,64,0.18785250228218162],[120,220,65,0.1795997021753266],[120,220,66,0.17139568068915456],[120,220,67,0.1631887807834545],[120,220,68,0.15494242372738617],[120,220,69,0.1466501975750917],[120,220,70,0.13831563015735124],[120,220,71,0.12994954647807513],[120,220,72,0.12156809024567033],[120,220,73,0.11319089978725883],[120,220,74,0.10483944213639902],[120,220,75,0.09653550884928587],[120,220,76,0.08829987686059652],[120,220,77,0.08015113744039726],[120,220,78,0.07210469606195635],[120,220,79,0.06417194573645843],[120,221,64,0.18659143495062863],[120,221,65,0.17802968373294073],[120,221,66,0.16953492779174195],[120,221,67,0.16105768681239366],[120,221,68,0.1525631491962046],[120,221,69,0.14404670132983766],[120,221,70,0.13551337086713328],[120,221,71,0.1269750877722978],[120,221,72,0.11844863418838006],[120,221,73,0.10995376560744712],[120,221,74,0.10151150732493673],[120,221,75,0.09314262990052419],[120,221,76,0.08486630707983052],[120,221,77,0.07669895935778204],[120,221,78,0.06865328608980265],[120,221,79,0.06073748878099651],[120,222,64,0.18523994476232752],[120,222,65,0.17638242519703143],[120,222,66,0.16761072981577324],[120,222,67,0.15887806454077036],[120,222,68,0.15015147367312065],[120,222,69,0.14142781917688035],[120,222,70,0.13271323983752256],[120,222,71,0.12402034481929934],[120,222,72,0.11536611131487796],[120,222,73,0.10676996882154054],[120,222,74,0.09825207417340749],[120,222,75,0.08983178117698438],[120,222,76,0.08152630840761287],[120,222,77,0.07334960842969625],[120,222,78,0.06531144140847743],[120,222,79,0.05741665578561999],[120,223,64,0.18380600762653357],[120,223,65,0.1746668748470983],[120,223,66,0.16563276609099017],[120,223,67,0.156659999448191],[120,223,68,0.14771753109051017],[120,223,69,0.1388033903740691],[120,223,70,0.12992446518436454],[120,223,71,0.1210936545213974],[120,223,72,0.11232773181820081],[120,223,73,0.10364540861051044],[120,223,74,0.09506560279236333],[120,223,75,0.08660591539062872],[120,223,76,0.07828131948251887],[120,223,77,0.0701030645667399],[120,223,78,0.062077799385967705],[120,223,79,0.054206915885813306],[120,224,64,0.18230437263177648],[120,224,65,0.17289812825229972],[120,224,66,0.1636162382210498],[120,224,67,0.15441845501022622],[120,224,68,0.14527566660668112],[120,224,69,0.13618679066560327],[120,224,70,0.12715914613551446],[120,224,71,0.11820558763428825],[120,224,72,0.10934234980493295],[120,224,73,0.10058710423318414],[120,224,74,0.0919572332303811],[120,224,75,0.0834683244659676],[120,224,76,0.07513289010803878],[120,224,77,0.06695931380065859],[120,224,78,0.058951028478121295],[120,224,79,0.051105927689212176],[120,225,64,0.18075800921833124],[120,225,65,0.1710987770933484],[120,225,66,0.16158312988789378],[120,225,67,0.15217445274154853],[120,225,68,0.14284554645316389],[120,225,69,0.13359598260614994],[120,225,70,0.12443325565828357],[120,225,71,0.11536991660768305],[120,225,72,0.10642141018605604],[120,225,73,0.09760413550290847],[120,225,74,0.08893373448327888],[120,225,75,0.08042361210695755],[120,225,76,0.07208369211627526],[120,225,77,0.0639194115154684],[120,225,78,0.055930956842538786],[120,225,79,0.04811274485473042],[120,226,64,0.17919968422208132],[120,226,65,0.16930038787368606],[120,226,66,0.15956359742239146],[120,226,67,0.1499563848681981],[120,226,68,0.1404534032580156],[120,226,69,0.13105470510846448],[120,226,70,0.12176778686416273],[120,226,71,0.11260473246018798],[120,226,72,0.10358005045106175],[120,226,73,0.09470874447049983],[120,226,74,0.08600462138300048],[120,226,75,0.07747884113969213],[120,226,76,0.0691387119964595],[120,226,77,0.06098673439536815],[120,226,78,0.05301989645618634],[120,226,79,0.04522922367376819],[120,227,64,0.17767647597879518],[120,227,65,0.1675487082580603],[120,227,66,0.15760181073266044],[120,227,67,0.14780647796529975],[120,227,68,0.13813912558989191],[120,227,69,0.12860017436595358],[120,227,70,0.11919702811712446],[120,227,71,0.1099412316303873],[120,227,72,0.10084631054216638],[120,227,73,0.09192585370508816],[120,227,74,0.08319184240233303],[120,227,75,0.07465323041479503],[120,227,76,0.0663147785792854],[120,227,77,0.05817614710706409],[120,227,78,0.05023124856655824],[120,227,79,0.04246786407275145],[120,228,64,0.17625305552285667],[120,228,65,0.165910164469403],[120,228,66,0.1557654226051088],[120,228,67,0.145793160410724],[120,228,68,0.1359715061014104],[120,228,69,0.1263011245626078],[120,228,70,0.11678921673301328],[120,228,71,0.10744670059500785],[120,228,72,0.09828605942392424],[120,228,73,0.08931944052283217],[120,228,74,0.0805570087971719],[120,228,75,0.07200555915038771],[120,228,76,0.06366739130373744],[120,228,77,0.05553945026410148],[120,228,78,0.04761273528852596],[120,228,79,0.03987197982400639],[120,229,64,0.1749842335344663],[120,229,65,0.1644419402976869],[120,229,66,0.15411346018042987],[120,229,67,0.1439768700188413],[120,229,68,0.13401201279338762],[120,229,69,0.12421965910421218],[120,229,70,0.11460667062647593],[120,229,71,0.10518321926247676],[120,229,72,0.09596065382298258],[120,229,73,0.08694962350205619],[120,229,74,0.07815846246031234],[120,229,75,0.06959183944928402],[120,229,76,0.0612496760230316],[120,229,77,0.05312633649577441],[120,229,78,0.04521009242193242],[120,229,79,0.037482863998163425],[120,230,64,0.17390896757621582],[120,230,65,0.1631847958671652],[120,230,66,0.15268806957860515],[120,230,67,0.14240077256359152],[120,230,68,0.13230450681649739],[120,230,69,0.12240001892192941],[120,230,70,0.11269369175366706],[120,230,71,0.10319482148904612],[120,230,72,0.09391351644665429],[120,230,73,0.08485885689415626],[120,230,74,0.07603732006887204],[120,230,75,0.06745147426548494],[120,230,76,0.05909894545320491],[120,230,77,0.0509716594924304],[120,230,78,0.043055362634260845],[120,230,79,0.035329422605790015],[120,231,64,0.17305203347976197],[120,231,65,0.16216473352826188],[120,231,66,0.151516177920761],[120,231,67,0.14109243071007593],[120,231,68,0.13087693069431597],[120,231,69,0.12087029811335136],[120,231,70,0.11107831312411519],[120,231,71,0.10150927349428304],[120,231,72,0.0921719422038954],[120,231,73,0.08307375774301708],[120,231,74,0.0742193112387953],[120,231,75,0.06560909415460586],[120,231,76,0.05723851991000038],[120,231,77,0.04909722237651694],[120,231,78,0.041168633816925496],[120,231,79,0.03342984445485931],[120,232,64,0.17242561427117908],[120,232,65,0.16139458142931126],[120,232,66,0.15061107470779245],[120,232,67,0.14006539526859918],[120,232,68,0.12974292326823156],[120,232,69,0.11964409252986599],[120,232,70,0.10977398708380315],[120,232,71,0.10013980413492353],[120,232,72,0.09074886919276785],[120,232,73,0.08160691296629138],[120,232,74,0.07271661400824828],[120,232,75,0.06407641070495969],[120,232,76,0.05567958581525246],[120,232,77,0.04751362637119812],[120,232,78,0.03955986136884808],[120,232,79,0.03179337930007026],[120,233,64,0.1720308039083055],[120,233,65,0.1608754916989307],[120,233,66,0.14997390919775097],[120,233,67,0.13932071515050773],[120,233,68,0.1289033575012011],[120,233,69,0.11872207723959463],[120,233,70,0.10878121064030799],[120,233,71,0.09908678271280656],[120,233,72,0.08964461011106835],[120,233,73,0.08045866212340477],[120,233,74,0.07152968353927042],[120,233,75,0.06285408280626387],[120,233,76,0.05442308850462728],[120,233,77,0.04622217678197807],[120,233,78,0.03823077201361156],[120,233,79,0.030422222584097554],[120,234,64,0.1718590249727887],[120,234,65,0.16059835243892387],[120,234,66,0.14959510305610108],[120,234,67,0.13884836538676873],[120,234,68,0.1283478006025817],[120,234,69,0.11809351244882722],[120,234,70,0.10808908755586316],[120,234,71,0.09833934420880293],[120,234,72,0.08884854417044148],[120,234,73,0.07961885615928192],[120,234,74,0.07064907455252835],[120,234,75,0.06193359650992185],[120,234,76,0.053461660338592114],[120,234,77,0.04521684754517732],[120,234,78,0.037176850655167],[120,234,79,0.029313508521182786],[120,235,64,0.17189335934650105],[120,235,65,0.16054511261912255],[120,235,66,0.1494556774482071],[120,235,67,0.13862859246764594],[120,235,68,0.1280558958341076],[120,235,69,0.11773767736179694],[120,235,70,0.10767682682917223],[120,235,71,0.09787696172697562],[120,235,72,0.0883407694835848],[120,235,73,0.0790685922989474],[120,235,74,0.07005725789315473],[120,235,75,0.06129915911531691],[120,235,76,0.05278158499686716],[120,235,77,0.044486305474113794],[120,235,78,0.0363894116535516],[120,235,79,0.028461413150433587],[120,236,64,0.17210979079184288],[120,236,65,0.16069001885995407],[120,236,66,0.14952849364117327],[120,236,67,0.13863317616106854],[120,236,68,0.12799866525572864],[120,236,69,0.11762523135493332],[120,236,70,0.1075151770793446],[120,236,71,0.09767096582089142],[120,236,72,0.08809371577621804],[120,236,73,0.07878192514413564],[120,236,74,0.06973043149542685],[120,236,75,0.060929607980242856],[120,236,76,0.05236479869464665],[120,236,77,0.04401599518684049],[120,236,78,0.03585775575094124],[120,236,79,0.027859368831968448],[120,237,64,0.17247833104751598],[120,237,65,0.161000735467546],[120,237,66,0.14977937827028753],[120,237,67,0.1388265787873527],[120,237,68,0.1281397042461718],[120,237,69,0.1177194731997894],[120,237,70,0.1075677675127472],[120,237,71,0.09768598137987194],[120,237,72,0.08807368815039036],[120,237,73,0.07872752479903015],[120,237,74,0.0696402967245169],[120,237,75,0.06080030523329058],[120,237,76,0.052190899743668216],[120,237,77,0.04379025642623674],[120,237,78,0.03557138468545552],[120,237,79,0.027502362585239984],[120,238,64,0.17295829427093368],[120,238,65,0.1614335443983484],[120,238,66,0.15016226684054365],[120,238,67,0.13916105778911966],[120,238,68,0.1284302915995966],[120,238,69,0.11797147610045393],[120,238,70,0.10778629349400651],[120,238,71,0.09787518691335984],[120,238,72,0.0882362203680365],[120,238,73,0.07886414117290015],[120,238,74,0.06974964718671364],[120,238,75,0.060878860887232315],[120,238,76,0.052233012010940404],[120,238,77,0.04378833019035517],[120,238,78,0.03551614873560363],[120,238,79,0.027383220429458014],[120,239,64,0.17348813005586425],[120,239,65,0.16192401584198374],[120,239,66,0.15061057395882982],[120,239,67,0.13956858586330484],[120,239,68,0.1288017017911622],[120,239,69,0.1183126299523948],[120,239,70,0.10810312805852587],[120,239,71,0.09817284128329365],[120,239,72,0.08851837423173411],[120,239,73,0.0791325490920102],[120,239,74,0.07000385192112314],[120,239,75,0.06111606874129908],[120,239,76,0.05244811285081873],[120,239,77,0.043974044484167196],[120,239,78,0.03566328369678439],[120,239,79,0.02748101709892913],[120,240,64,0.17399082042547015],[120,240,65,0.16239536614867686],[120,240,66,0.1510479426325349],[120,240,67,0.1399733557556197],[120,240,68,0.12917878755068007],[120,240,69,0.11866860492888731],[120,240,70,0.1084449737844637],[120,240,71,0.0985069563186221],[120,240,72,0.08884980964522979],[120,240,73,0.07946445365146991],[120,240,74,0.07033710967627949],[120,240,75,0.06144911132126903],[120,240,76,0.052776888462793416],[120,240,77,0.04429212529249249],[120,240,78,0.03596209298192543],[120,240,79,0.02775015734422052],[120,241,64,0.17439990115774692],[120,241,65,0.16278177982217618],[120,241,66,0.1514091892835571],[120,241,67,0.1403107085799496],[120,241,68,0.1294972699091907],[120,241,69,0.11897538187340177],[120,241,70,0.10874799803941951],[120,241,71,0.09881387490104979],[120,241,72,0.08916710640801101],[120,241,73,0.07979681067355592],[120,241,74,0.07068697003068505],[120,241,75,0.061816425385482245],[120,241,76,0.053159025597532834],[120,241,77,0.044683932404053765],[120,241,78,0.03635608120111042],[120,241,79,0.028136797801193318],[120,242,64,0.17466416690318545],[120,242,65,0.16303224960666415],[120,242,66,0.15164342874130757],[120,242,67,0.14052971448669338],[120,242,68,0.12970595677153593],[120,242,69,0.11918129360941708],[120,242,70,0.1089598776681245],[120,242,71,0.09904048947737697],[120,242,72,0.08941631156769798],[120,242,73,0.08007483801129747],[120,242,74,0.0709979201459218],[120,242,75,0.06216194906768294],[120,242,76,0.053538175287493765],[120,242,77,0.045093165760200435],[120,242,78,0.03678939832047878],[120,242,79,0.028585993393872966],[120,243,64,0.1747461795517139],[120,243,65,0.1631091523726942],[120,243,66,0.15171273089967366],[120,243,67,0.14059192789823388],[120,243,68,0.1297656173395686],[120,243,69,0.11924603991945557],[120,243,70,0.10903897558714848],[120,243,71,0.09914360011641973],[120,243,72,0.08955249680379115],[120,243,73,0.08025178750590257],[120,243,74,0.07122138342003849],[120,243,75,0.06243535584237345],[120,243,76,0.053862426973369626],[120,243,77,0.04546658068108727],[120,243,78,0.03720779298544814],[120,243,79,0.02904288188833592],[120,244,64,0.17462081284122083],[120,244,65,0.16298685870064603],[120,244,66,0.15159080781863357],[120,244,67,0.1404701685975223],[120,244,68,0.12964787645962317],[120,244,69,0.11913971561783065],[120,244,70,0.10895352313861484],[120,244,71,0.09908927083749114],[120,244,72,0.08953930675047002],[120,244,73,0.08028870097179827],[120,244,74,0.07131569590473653],[120,244,75,0.06259226082657933],[120,244,76,0.05408475052867755],[120,244,77,0.04575466765883095],[120,244,78,0.03755952827142245],[120,244,79,0.029453829978500816],[120,245,64,0.17427383364621574],[120,245,65,0.16265037653336697],[120,245,66,0.15126173156352407],[120,245,67,0.1401473288611534],[120,245,68,0.12933412896165672],[120,245,69,0.11884185164677873],[120,245,70,0.108680807988951],[120,245,71,0.0988521838539472],[120,245,72,0.08934849776665131],[120,245,73,0.08015414959460587],[120,245,74,0.07124605976552287],[120,245,75,0.06259439861120192],[120,245,76,0.05416340531236858],[120,245,77,0.045912295808652276],[120,245,78,0.037796258939476704],[120,245,79,0.029767539993290626],[120,246,64,0.1737005205091539],[120,246,65,0.16209402938672096],[120,246,66,0.15071868318398296],[120,246,67,0.13961520692797513],[120,246,68,0.1288144741461588],[120,246,69,0.11834046920138036],[120,246,70,0.10820636741943286],[120,246,71,0.09841499141895696],[120,246,72,0.08895946668616908],[120,246,73,0.07982395613138733],[120,246,74,0.07098447304603181],[120,246,75,0.062409771774219545],[120,246,76,0.054062315314967226],[120,246,77,0.045899318981112595],[120,246,78,0.03787386916343301],[120,246,79,0.029936116181200526],[120,247,64,0.17290432010408593],[120,247,65,0.16132016972717464],[120,247,66,0.14996273334719845],[120,247,67,0.13887336719796087],[120,247,68,0.12808667066812723],[120,247,69,0.11763114696948349],[120,247,70,0.10752318692148999],[120,247,71,0.09776766501003507],[120,247,72,0.0883587691113447],[120,247,73,0.07928089931197288],[120,247,74,0.07050963498461772],[120,247,75,0.06201276919106149],[120,247,76,0.05375140940212829],[120,247,77,0.04568114345185546],[120,247,78,0.037753269583070403],[120,247,79,0.0299160893922205],[120,248,64,0.17189554245134833],[120,248,65,0.16033792824817605],[120,248,66,0.14900165525528655],[120,248,67,0.1379280276628194],[120,248,68,0.12715511216437803],[120,248,69,0.11671610165805761],[120,248,70,0.10663090408093728],[120,248,71,0.09690684164363837],[120,248,72,0.08753962684913544],[120,248,73,0.07851439985501282],[120,248,74,0.06980682612309111],[120,248,75,0.06138425322458231],[120,248,76,0.053206925600739446],[120,248,77,0.045229256019927465],[120,248,78,0.03740115242606976],[120,248,79,0.02966939883837788],[120,249,64,0.17069009583302858],[120,249,65,0.15916199990198146],[120,249,66,0.14784877059445803],[120,249,67,0.1367909751798485],[120,249,68,0.1260298240714304],[120,249,69,0.11560328206744745],[120,249,70,0.10553501781203754],[120,249,71,0.09583516717194432],[120,249,72,0.08650142413128023],[120,249,73,0.077520187533485],[120,249,74,0.06886776244510018],[120,249,75,0.060511614849236506],[120,249,76,0.05241167831786457],[120,249,77,0.04452171126283715],[120,249,78,0.03679070332972427],[120,249,79,0.029164329473918556],[120,250,64,0.16930826249143402],[120,250,65,0.15781146767034623],[120,250,66,0.14652182938380087],[120,250,67,0.13547850931356492],[120,250,68,0.12472548218611587],[120,250,69,0.11430547706990235],[120,250,70,0.10424610308475606],[120,250,71,0.09456063648114466],[120,250,72,0.08524919230890929],[120,250,73,0.07629994875237878],[120,250,74,0.06769042278588344],[120,250,75,0.05938879574215319],[120,250,76,0.05135528733283343],[120,250,77,0.04354357661694333],[120,250,78,0.03590226838337371],[120,250,79,0.02837640339518181],[120,251,64,0.16777351632506526],[120,251,65,0.15630866518449413],[120,251,66,0.1450419247124832],[120,251,67,0.13401041558431812],[120,251,68,0.12326045362863056],[120,251,69,0.11283943794744929],[120,251,70,0.10277903137584729],[120,251,71,0.09309593058347165],[120,251,72,0.0837930827673508],[120,251,73,0.07486095413569095],[120,251,74,0.06627884876562065],[120,251,75,0.05801627635759237],[120,251,76,0.05003436735744038],[120,251,77,0.0422873338754263],[120,251,78,0.034723974803822964],[120,251,79,0.027289223518401018],[120,252,64,0.16611138392953176],[120,252,65,0.15467807943293896],[120,252,66,0.14343244347690293],[120,252,67,0.13240896908041958],[120,252,68,0.12165586097917125],[120,252,69,0.11122501564795266],[120,252,70,0.10115219716796367],[120,252,71,0.09145775067532061],[120,252,72,0.0821478278701183],[120,252,73,0.07321566566263885],[120,252,74,0.06464291651737096],[120,252,75,0.05640102899277835],[120,252,76,0.04845267692066745],[120,252,77,0.04075323562508115],[120,252,78,0.03325230355075215],[120,252,79,0.025895267653017567],[120,253,64,0.1643483504621473],[120,253,65,0.15294529492284054],[120,253,66,0.14171805435173576],[120,253,67,0.1306979695083966],[120,253,68,0.11993467047277571],[120,253,69,0.10948431362550018],[120,253,70,0.09938675091943405],[120,253,71,0.08966614932007304],[120,253,72,0.08033218981130327],[120,253,73,0.07138132294324165],[120,253,74,0.06279807950692581],[120,253,75,0.05455643485183738],[120,253,76,0.04662122530208247],[120,253,77,0.038949615077108105],[120,253,78,0.031492612086973966],[120,253,79,0.024196630948216145],[120,254,64,0.16251081193879346],[120,254,65,0.15113598078688972],[120,254,66,0.13992373435122496],[120,254,67,0.12890180887517222],[120,254,68,0.11812080525307873],[120,254,69,0.10764085704275568],[120,254,70,0.09750583903156043],[120,254,71,0.08774385900759366],[120,254,72,0.078368397334003],[120,254,73,0.0693795082825229],[120,254,74,0.06076508177730326],[120,254,75,0.052502164122021765],[120,254,76,0.04455833621373767],[120,254,77,0.036893147687562286],[120,254,78,0.02945960539092688],[120,254,79,0.022205714552869307],[120,255,64,0.1606240756991117],[120,255,65,0.14927492245235177],[120,255,66,0.13807383545868912],[120,255,67,0.1270445731156979],[120,255,68,0.1162382848039759],[120,255,69,0.10571877922839339],[120,255,70,0.09553385145023405],[120,255,71,0.08571561844302954],[120,255,72,0.07628157035938629],[120,255,73,0.06723569025107658],[120,255,74,0.05856964099572529],[120,255,75,0.05026401809342162],[120,255,76,0.04228966691488787],[120,255,77,0.034609062911148916],[120,255,78,0.027177753236998115],[120,255,79,0.019945858194831002],[120,256,64,0.15871141089971047],[120,256,65,0.14738509961052332],[120,256,66,0.1361911929218022],[120,256,67,0.12514917909866238],[120,256,68,0.1143103917976272],[120,256,69,0.1037420264013745],[120,256,70,0.09349567765373712],[120,256,71,0.0836074970251008],[120,256,72,0.07409913266630011],[120,256,73,0.0649787455575776],[120,256,74,0.05624210073592871],[120,256,75,0.04787373238021547],[120,256,76,0.039848181437507194],[120,256,77,0.03213130438798669],[120,256,78,0.024681651673557205],[120,256,79,0.017451914254940845],[120,257,64,0.1567931558299861],[120,257,65,0.1454868164100198],[120,257,66,0.13429628030655108],[120,257,67,0.12323655131872324],[120,257,68,0.11235886995596667],[120,257,69,0.10173358366159478],[120,257,70,0.09141597357594879],[120,257,71,0.0814462197863969],[120,257,72,0.07185021480967402],[120,257,73,0.06264046153117642],[120,257,74,0.05381705463165638],[120,257,75,0.04536874441278859],[120,257,76,0.03727408182176794],[120,257,77,0.02950264337334457],[120,257,78,0.02201633457966012],[120,257,79,0.01477077042199658],[120,258,64,0.15488627294240148],[120,258,65,0.14359731071207496],[120,258,66,0.1324068759801593],[120,258,67,0.12132534089046822],[120,258,68,0.11040368610495566],[120,258,69,0.09971526905574277],[120,258,70,0.08931897598159298],[120,258,71,0.07925899048725843],[120,258,72,0.0695654750960214],[120,258,73,0.06025534542084248],[120,258,74,0.05133313613618132],[120,258,75,0.042791957798510666],[120,258,76,0.034614543436790046],[120,258,77,0.02677438371664708],[120,258,78,0.019236949378032706],[120,258,79,0.011960999553742482],[120,259,64,0.1530119710173291],[120,259,65,0.14173914844369623],[120,259,66,0.13054725813813123],[120,259,67,0.11944191231978016],[120,259,68,0.10847363491677277],[120,259,69,0.09771857202423136],[120,259,70,0.08723903749631427],[120,259,71,0.07708308650925491],[120,259,72,0.06728506487994408],[120,259,73,0.057866258601810244],[120,259,74,0.04883564292974015],[120,259,75,0.0401907301974236],[120,259,76,0.031918515409025766],[120,259,77,0.023996518514547024],[120,259,78,0.01639392215892157],[120,259,79,0.00907280358707668],[120,260,64,0.15119489302341546],[120,260,65,0.13993903349868642],[120,260,66,0.1287465785758726],[120,260,67,0.11761825346582662],[120,260,68,0.10660376681649826],[120,260,69,0.0957815784324443],[120,260,70,0.08521703026580779],[120,260,71,0.07496172909529931],[120,260,72,0.06505396283813898],[120,260,73,0.05551922389822583],[120,260,74,0.04637083903101881],[120,260,75,0.037610705044058536],[120,260,76,0.02923012949696752],[120,260,77,0.0212107754182102],[120,260,78,0.013525708922270965],[120,260,79,0.0061405484885151025],[120,261,64,0.14945417339175573],[120,261,65,0.13821785933055816],[120,261,66,0.1270278383701874],[120,261,67,0.11587985357367077],[120,261,68,0.10482231878338347],[120,261,69,0.0939353208775294],[120,261,70,0.08328664312756485],[120,261,71,0.07293096350922],[120,261,72,0.06291013696796659],[120,261,73,0.05325359059102829],[120,261,74,0.04397883131511202],[120,261,75,0.03509206562573467],[120,261,76,0.026588930536664477],[120,261,77,0.01845533497876122],[120,261,78,0.010668410580803953],[120,261,79,0.0031975706890841633],[120,262,64,0.14780311761093914],[120,262,65,0.1365903715434582],[120,262,66,0.1254075257371333],[120,262,67,0.11424530302092406],[120,262,68,0.10315026542097255],[120,262,69,0.09220327821329569],[120,262,70,0.08147383290620103],[120,262,71,0.07101907012591036],[120,262,72,0.060883926900413395],[120,262,73,0.051101401642160975],[120,262,74,0.0416929366079575],[120,262,75,0.03266891743099356],[120,262,76,0.024029289141967183],[120,262,77,0.01576428792586098],[120,262,78,0.007855287702622726],[120,262,79,2.75760472137768E-4],[120,263,64,0.14624958189788637],[120,263,65,0.13506557266856833],[120,263,66,0.1238960381733593],[120,263,67,0.1127267175019868],[120,263,68,0.10160172463333501],[120,263,69,0.09060173956764919],[120,263,70,0.07979712228332381],[120,263,71,0.06924677142939004],[120,263,72,0.05899813604310139],[120,263,73,0.04908734859242104],[120,263,74,0.0395394792716703],[120,263,75,0.030368911286894874],[120,263,76,0.021579836680662642],[120,263,77,0.013166872066166077],[120,263,78,0.00511579347218974],[120,263,79,-0.002595610657886863],[120,264,64,0.14479665399223055],[120,264,65,0.13364742666222648],[120,264,66,0.12249840039391005],[120,264,67,0.11133045184059447],[120,264,68,0.10018464456031707],[120,264,69,0.08914043891053075],[120,264,70,0.0782681551277069],[120,264,71,0.06762768104846781],[120,264,72,0.05726834813582196],[120,264,73,0.047228931244814254],[120,264,74,0.03753777220656181],[120,264,75,0.028213027111631504],[120,264,76,0.019263036979863375],[120,264,77,0.010686821316282662],[120,264,78,0.002474693876140216],[120,264,79,-0.005391000205192961],[120,265,64,0.14344363647276534],[120,265,65,0.1323358644215399],[120,265,66,0.12121527924807579],[120,265,67,0.11005810449966581],[120,265,68,0.09890177273925088],[120,265,69,0.0878234610547452],[120,265,70,0.07689251010383218],[120,265,71,0.0661689956075194],[120,265,72,0.05570346898131992],[120,265,73,0.045536822908120035],[120,265,74,0.03570028208337922],[120,265,75,0.026215519160913626],[120,265,76,0.017094895728595117],[120,265,77,0.008341827950031338],[120,265,78,-4.872367483828386E-5],[120,265,79,-0.007215126928127396],[120,266,64,0.1421873335866769],[120,266,65,0.13112809121499347],[120,266,66,0.12004429640953478],[120,266,67,0.10890781348727457],[120,266,68,0.09775190810706728],[120,266,69,0.08665041963646798],[120,266,70,0.07567077305998367],[120,266,71,0.0648724298722196],[120,266,72,0.05430649383568504],[120,266,73,0.044015441716043116],[120,266,74,0.03403297937835939],[120,266,75,0.024384023423058076],[120,266,76,0.01508480833815279],[120,266,77,0.006143118947054025],[120,266,78,0.001774106579113574],[120,266,79,-1.4464645531089143E-5],[120,267,64,0.1410236421988732],[120,267,65,0.1300201965518353],[120,267,66,0.11898163927615901],[120,267,67,0.10787584401157853],[120,267,68,0.09673143612698226],[120,267,69,0.08561790730966023],[120,267,70,0.07459986840244295],[120,267,71,0.0637353953936617],[120,267,72,0.053075500684492266],[120,267,73,0.04266372829685493],[120,267,74,0.03253587356022258],[120,267,75,0.02271982761016227],[120,267,76,0.014043161335081517],[120,267,77,0.011761156266230454],[120,267,78,0.00957821892208513],[120,267,79,0.00749035129426659],[120,268,64,0.13994944711015508],[120,268,65,0.1290090666652784],[120,268,66,0.11802397017885842],[120,268,67,0.10695846791612322],[120,268,68,0.09583614701824647],[120,268,69,0.08472121809953626],[120,268,70,0.07367464939032874],[120,268,71,0.06275242259954081],[120,268,72,0.05200486939310172],[120,268,73,0.041476129847206986],[120,268,74,0.03120373357261856],[120,268,75,0.02541881468519438],[120,268,76,0.02276027635612127],[120,268,77,0.020180677015862767],[120,268,78,0.017687955240748104],[120,268,79,0.015283406411698806],[120,269,64,0.1389648206587625],[120,269,65,0.12809459946027596],[120,269,66,0.11717063368717502],[120,269,67,0.10615413462953988],[120,269,68,0.09506333678529827],[120,269,69,0.08395634159397834],[120,269,70,0.07288974703563138],[120,269,71,0.061916826047320635],[120,269,72,0.05108672650167032],[120,269,73,0.04071466981043083],[120,269,74,0.0377134267110607],[120,269,75,0.03472689060435232],[120,269,76,0.03178026175547145],[120,269,77,0.028892625976167537],[120,269,78,0.026076881865564366],[120,269,79,0.023339788149359254],[120,270,64,0.13807552620918354],[120,270,65,0.12728222147600116],[120,270,66,0.11642616151117675],[120,270,67,0.10546593308940494],[120,270,68,0.09441419048310452],[120,270,69,0.08332222840744613],[120,270,70,0.07224167706399981],[120,270,71,0.06122261234050591],[120,270,72,0.054000957316929055],[120,270,73,0.05080907611833125],[120,270,74,0.0475681253785526],[120,270,75,0.04431167408013505],[120,270,76,0.04106840938079079],[120,270,77,0.037861788356915164],[120,270,78,0.03470980766308764],[120,270,79,0.03162489115282262],[120,271,64,0.1336229945633421],[120,271,65,0.12425734205629466],[120,271,66,0.11507912573834991],[120,271,67,0.10488304722982797],[120,271,68,0.0938761526547997],[120,271,69,0.08280436421632287],[120,271,70,0.07171389038842468],[120,271,71,0.06782752547456361],[120,271,72,0.06454898851494849],[120,271,73,0.061147592323192466],[120,271,74,0.0576624851166785],[120,271,75,0.054129666159235874],[120,271,76,0.050581360320033145],[120,271,77,0.047045507644685625],[120,271,78,0.043545368361645694],[120,271,79,0.04009924355517402],[120,272,64,0.12789300636341266],[120,272,65,0.11846414781564264],[120,272,66,0.10923838195847829],[120,272,67,0.10027165573697674],[120,272,68,0.09157371975658077],[120,272,69,0.08495127456305575],[120,272,70,0.08194642837813229],[120,272,71,0.0786999334943724],[120,272,72,0.07525282364580746],[120,272,73,0.07164620197097016],[120,272,74,0.06792023165514623],[120,272,75,0.06411323702869691],[120,272,76,0.06026091612913814],[120,272,77,0.05639566553841577],[120,272,78,0.05254601811155338],[120,272,79,0.04873619401985227],[120,273,64,0.1221176485529002],[120,273,65,0.11262007129606219],[120,273,66,0.10334056650531953],[120,273,67,0.09433630018462721],[120,273,68,0.09169817394300968],[120,273,69,0.09148307762797184],[120,273,70,0.0912862251562653],[120,273,71,0.08961784053524727],[120,273,72,0.08601378363616603],[120,273,73,0.08221387965363953],[120,273,74,0.07825907923655337],[120,273,75,0.07418981335175956],[120,273,76,0.07004504648002678],[120,273,77,0.06586143934431639],[120,273,78,0.061672621979079356],[120,273,79,0.057508577755197215],[120,274,64,0.11639599052695686],[120,274,65,0.10682486256278768],[120,274,66,0.09844393072987354],[120,274,67,0.09797794817089842],[120,274,68,0.09759609499715545],[120,274,69,0.09728653407386886],[120,274,70,0.09702954053284876],[120,274,71,0.0967995476281274],[120,274,72,0.09656663274226927],[120,274,73,0.09276398127665993],[120,274,74,0.0885996150734568],[120,274,75,0.0842881268605229],[120,274,76,0.07987142304267363],[120,274,77,0.07539009521638286],[120,274,78,0.07088253588562354],[120,274,79,0.06638416281512244],[120,275,64,0.11081564131911247],[120,275,65,0.1054677477798929],[120,275,66,0.10477312959998497],[120,275,67,0.10415685839334105],[120,275,68,0.10364173217084724],[120,275,69,0.10322403686914705],[120,275,70,0.10289036321977373],[120,275,71,0.10261966869645807],[120,275,72,0.10238489182324155],[120,275,73,0.10215446745330184],[120,275,74,0.09886575197337563],[120,275,75,0.09433872861957959],[120,275,76,0.08967798511267405],[120,275,77,0.08492759414546724],[120,275,78,0.0801302415527641],[120,275,79,0.07532630250241462],[120,276,64,0.1130788055060964],[120,276,65,0.1121829839135644],[120,276,66,0.11132162779647162],[120,276,67,0.10938254966361094],[120,276,68,0.10784494367827108],[120,276,69,0.10693836948563673],[120,276,70,0.10661073562898793],[120,276,71,0.10679556018950381],[120,276,72,0.10741076730336818],[120,276,73,0.10810835628343564],[120,276,74,0.10789562068396255],[120,276,75,0.104274614745013],[120,276,76,0.09940361618849639],[120,276,77,0.09441930814453152],[120,276,78,0.08936809065207969],[120,276,79,0.08429469576388109],[120,277,64,0.11554918151395865],[120,277,65,0.11198098287343394],[120,277,66,0.10913545800864694],[120,277,67,0.10700709819545179],[120,277,68,0.10557448417432092],[120,277,69,0.10479924257153961],[120,277,70,0.10462522190064893],[120,277,71,0.10498069077961375],[120,277,72,0.1057770278683744],[120,277,73,0.1069061373152046],[120,277,74,0.10825870214733185],[120,277,75,0.10974375790535335],[120,277,76,0.10898893135596815],[120,277,77,0.10381084637356333],[120,277,78,0.09854715779701972],[120,277,79,0.0932462551171731],[120,278,64,0.11340158022845859],[120,278,65,0.10984111559380128],[120,278,66,0.10703416228031504],[120,278,67,0.10497434281221124],[120,278,68,0.10363847607073201],[120,278,69,0.10298543885014139],[120,278,70,0.1029552449758937],[120,278,71,0.10347116772440379],[120,278,72,0.1044383220444628],[120,278,73,0.10574153592194507],[120,278,74,0.10726860718000353],[120,278,75,0.10892808481953004],[120,278,76,0.11064575462144888],[120,278,77,0.11236289950252565],[120,278,78,0.10761820195912362],[120,278,79,0.10213608160211529],[120,279,64,0.1116219873570411],[120,279,65,0.10806489808470088],[120,279,66,0.10529060283969466],[120,279,67,0.10329199562836078],[120,279,68,0.10204430904529432],[120,279,69,0.10150388094963081],[120,279,70,0.10160713640938346],[120,279,71,0.10227263365264294],[120,279,72,0.10339953776226452],[120,279,73,0.10486592023179897],[120,279,74,0.10655679402275409],[120,279,75,0.10838020319726727],[120,279,76,0.11026114878304072],[120,279,77,0.11213984425693241],[120,279,78,0.11397022288939407],[120,279,79,0.11091854621229322],[120,280,64,0.11021586476441647],[120,280,65,0.10665804014125496],[120,280,66,0.10391057310820473],[120,280,67,0.10196577386477446],[120,280,68,0.10079747305405562],[120,280,69,0.10035969388802801],[120,280,70,0.1005855369741736],[120,280,71,0.1013891495097905],[120,280,72,0.10266408998280258],[120,280,73,0.10428202646713203],[120,280,74,0.10612530699939104],[120,280,75,0.10810146310411956],[120,280,76,0.11013470895024813],[120,280,77,0.11216418712148707],[120,280,78,0.11414248488817469],[120,280,79,0.1160343159568702],[120,281,64,0.10918633358096097],[120,281,65,0.10562396469651253],[120,281,66,0.10289764642543459],[120,281,67,0.1009992529475523],[120,281,68,0.09990140436526723],[120,281,69,0.09955604495536785],[120,281,70,0.09989323128887095],[120,281,71,0.10082302477533045],[120,281,72,0.10223374725917239],[120,281,73,0.10399104710399193],[120,281,74,0.10597474595592016],[120,281,75,0.10809186599209514],[120,281,76,0.11026584332696321],[120,281,77,0.11243475916400514],[120,281,78,0.11454985840199494],[120,281,79,0.11657422703580156],[120,282,64,0.10853423475638546],[120,282,65,0.1049638593775854],[120,282,66,0.10225321932701326],[120,282,67,0.10039390229524325],[120,282,68,0.09935751469017073],[120,282,69,0.09909416704337382],[120,282,70,0.0995311661929027],[120,282,71,0.10057483168045056],[120,282,72,0.10210864249894835],[120,282,73,0.10399263875483106],[120,282,74,0.10610427176521775],[120,282,75,0.10835006828563426],[120,282,76,0.11065270603783817],[120,282,77,0.11294922531740015],[120,282,78,0.11518954326340564],[120,282,79,0.11733512004224245],[120,283,64,0.1082586434493345],[120,283,65,0.10467718262282316],[120,283,66,0.1019770099972882],[120,283,67,0.10014957679464498],[120,283,68,0.09916567642935387],[120,283,69,0.09897383844621],[120,283,70,0.09949892589319675],[120,283,71,0.1006438764389434],[120,283,72,0.10228774090261233],[120,283,73,0.10428538729148329],[120,283,74,0.10651206900789667],[120,283,75,0.10887384191784344],[120,283,76,0.11129265573246089],[120,283,77,0.11370454116809314],[120,283,78,0.11605811318554621],[120,283,79,0.11831321908358972],[120,284,64,0.10835640104174638],[120,284,65,0.10476118755972069],[120,284,66,0.10206657471363345],[120,284,67,0.1002640265633753],[120,284,68,0.09932372653409327],[120,284,69,0.09919288160588324],[120,284,70,0.09979422635750163],[120,284,71,0.10102769002471829],[120,284,72,0.10276832782097645],[120,284,73,0.10486629340515863],[120,284,74,0.10719482981238387],[120,284,75,0.10965955700249669],[120,284,76,0.11218173760530892],[120,284,77,0.11469643479175318],[120,284,78,0.11715099781875193],[120,284,79,0.11950368520860927],[120,285,64,0.10882193187905898],[120,285,65,0.10521073126730152],[120,285,66,0.1025171102458719],[120,285,67,0.10073269315673483],[120,285,68,0.09982725722788988],[120,285,69,0.09974694907045056],[120,285,70,0.10041269722097534],[120,285,71,0.10172180670961439],[120,285,72,0.10354578455453173],[120,285,73,0.10573054621336586],[120,285,74,0.10814752574852726],[120,285,75,0.1107019524417352],[120,285,76,0.1133144530859847],[120,285,77,0.11591917582605332],[120,285,78,0.11846225142564148],[120,285,79,0.12090038481030127],[120,286,64,0.1096472898166665],[120,286,65,0.10601831447943832],[120,286,66,0.10332148725168122],[120,286,67,0.10154873725080393],[120,286,68,0.10066963861610018],[120,286,69,0.10062954169187238],[120,286,70,0.10134789623297846],[120,286,71,0.10271977539148297],[120,286,72,0.10461359713562268],[120,286,73,0.10687152997832644],[120,286,74,0.10936341288028933],[120,286,75,0.11199413963769828],[120,286,76,0.11468376245644368],[120,286,77,0.11736557715533869],[120,286,78,0.11998455370114974],[120,286,79,0.12249588954367563],[120,287,64,0.11082223808363922],[120,287,65,0.10717415515916795],[120,287,66,0.10447031804541901],[120,287,67,0.1027031011491587],[120,287,68,0.10184207651746618],[120,287,69,0.10183206239375853],[120,287,70,0.10259135957455368],[120,287,71,0.10401320705117956],[120,287,72,0.10596340146148808],[120,287,73,0.10828086736857662],[120,287,74,0.11083407351951069],[120,287,75,0.11352764301873758],[120,287,76,0.11628112434406057],[120,287,77,0.11902703347430288],[120,287,78,0.12170924741284828],[120,287,79,0.12428151294139814],[120,288,64,0.11233436243759048],[120,288,65,0.10866629591787907],[120,288,66,0.10595205871423563],[120,288,67,0.10418460608707014],[120,288,68,0.10333370549140641],[120,288,69,0.10334390548287531],[120,288,70,0.10413268802045866],[120,288,71,0.1055918583123358],[120,288,72,0.10758506475204282],[120,288,73,0.10994849923764277],[120,288,74,0.11254949465464692],[120,288,75,0.11529247735414616],[120,288,76,0.11809657206449914],[120,288,77,0.1208935967046772],[120,288,78,0.12362641283561829],[120,288,79,0.1262473837014395],[120,289,64,0.11416921761084525],[120,289,65,0.11048074527951995],[120,289,66,0.10775314558162785],[120,289,67,0.10598008433334088],[120,289,68,0.10513171706122248],[120,289,69,0.1051525815045603],[120,289,70,0.10595966894590131],[120,289,71,0.10744375110406018],[120,289,72,0.1094668033325491],[120,289,73,0.1118628009199365],[120,289,74,0.11449818305462173],[120,289,75,0.11727726185754106],[120,289,76,0.12011882681452143],[120,289,77,0.12295408826506926],[120,289,78,0.1257249789808051],[120,289,79,0.12838255564685716],[120,290,64,0.11631050704779522],[120,290,65,0.11260165278971895],[120,290,66,0.10985816601831894],[120,290,67,0.10807454608966383],[120,290,68,0.10722152313310723],[120,290,69,0.1072438776419371],[120,290,70,0.10805843417786809],[120,290,71,0.10955532842645599],[120,290,72,0.11159533674106692],[120,290,73,0.11401073504376019],[120,290,74,0.1166673170476919],[120,290,75,0.11946937107879696],[120,290,76,0.12233544771463639],[120,290,77,0.125196248193853],[120,290,78,0.12799287161976092],[120,290,79,0.13067515435761506],[120,291,64,0.11874029593342733],[120,291,65,0.1150115179697978],[120,291,66,0.11225006360045225],[120,291,67,0.11045138118749032],[120,291,68,0.10958695461093793],[120,291,69,0.10960205365891112],[120,291,70,0.11041365369102618],[120,291,71,0.11191164621894029],[120,291,72,0.11395607816066439],[120,291,73,0.11637804086140319],[120,291,74,0.1190429349752985],[120,291,75,0.12185512258450465],[120,291,76,0.124733018701559],[120,291,77,0.12760692112507763],[120,291,78,0.1304171981017422],[120,291,79,0.13311256047440923],[120,292,64,0.12143925751314114],[120,292,65,0.11769143311579933],[120,292,66,0.1149103776152135],[120,292,67,0.11309259558252349],[120,292,68,0.11221049520697657],[120,292,69,0.11221007338706762],[120,292,70,0.1130087651483212],[120,292,71,0.11449660133148382],[120,292,72,0.1165333611765117],[120,292,73,0.11894946009645363],[120,292,74,0.12161016032103444],[120,292,75,0.12442000142708465],[120,292,76,0.1272973722706131],[120,292,77,0.13017227911753174],[120,292,78,0.13298446896629715],[120,292,79,0.1356816296746335],[120,293,64,0.12438695270375053],[120,293,65,0.12062135994241838],[120,293,66,0.11781951691377707],[120,293,67,0.11597908264673046],[120,293,68,0.11507355044836404],[120,293,69,0.11504987175636044],[120,293,70,0.11582623928616098],[120,293,71,0.11729319559866258],[120,293,72,0.11931070285774648],[120,293,73,0.12170899930821244],[120,293,74,0.12435346351461063],[120,293,75,0.12714892140243894],[120,293,76,0.13001385006795874],[120,293,77,0.13287808133684248],[120,293,78,0.13568085635002397],[120,293,79,0.13836894932036686],[120,294,64,0.12756214299565785],[120,294,65,0.12378044007183092],[120,294,66,0.12095706811156448],[120,294,67,0.11909092925786369],[120,294,68,0.11815675187940311],[120,294,69,0.1181026573695852],[120,294,70,0.11884788114417394],[120,294,71,0.1202838360165095],[120,294,72,0.12227110316410078],[120,294,73,0.12464022877319897],[120,294,74,0.1272569604108142],[120,294,75,0.13002652309613152],[120,294,76,0.13286760033263575],[120,294,77,0.1357099705905997],[120,294,78,0.13849248918769014],[120,294,79,0.14116113177837164],[120,295,64,0.1309431366463406],[120,295,65,0.12714733936755632],[120,295,66,0.12430213813595564],[120,295,67,0.12240775668663115],[120,295,68,0.12144029645976828],[120,295,69,0.12134925062077684],[120,295,70,0.12205516713968781],[120,295,71,0.12345067102231302],[120,295,72,0.1253973806774356],[120,295,73,0.12772661788389694],[120,295,74,0.13030474744360415],[120,295,75,0.133037508718248],[120,295,76,0.1358439121885732],[120,295,77,0.1386538067166586],[120,295,78,0.14140578520786495],[120,295,79,0.14404514441225635],[120,296,64,0.13450816816494535],[120,296,65,0.13070062611314878],[120,296,66,0.12783373112124574],[120,296,67,0.1259090962813068],[120,296,68,0.12490432115843475],[120,296,69,0.12477045735731906],[120,296,70,0.12542961798671282],[120,296,71,0.1267759628771452],[120,296,72,0.1286725446579653],[120,296,73,0.13095190706452015],[120,296,74,0.133481273455126],[120,296,75,0.1361670137267098],[120,296,76,0.13892858678634099],[120,296,77,0.1416960368243927],[120,296,78,0.14440781972283795],[120,296,79,0.14700867624657432],[120,297,64,0.13823581108820782],[120,297,65,0.13441918303594005],[120,297,66,0.13153115965107082],[120,297,67,0.1295747999500078],[120,297,68,0.12852931274355112],[120,297,69,0.12834747808599814],[120,297,70,0.128953207459662],[120,297,71,0.13024249615135325],[120,297,72,0.13208020342540777],[120,297,73,0.13430051620403557],[120,297,74,0.13677174819988164],[120,297,75,0.13940101523928547],[120,297,76,0.14210834529488547],[120,297,77,0.14482410238914278],[120,297,78,0.1474867312130697],[120,297,79,0.15004054130310546],[120,298,64,0.14210542404749177],[120,298,65,0.13828265317562033],[120,298,66,0.13537449034808907],[120,298,67,0.1333854854404209],[120,298,68,0.1322965527680406],[120,298,69,0.13206235272277747],[120,298,70,0.1326088070015868],[120,298,71,0.13383402231279132],[120,298,72,0.1356050090648333],[120,298,73,0.13775798960621627],[120,298,74,0.14016258752382835],[120,298,75,0.14272677723406701],[120,298,76,0.14537127374301737],[120,298,77,0.1480268831996274],[120,298,78,0.15063216370593835],[120,298,79,0.15313111860908402],[120,299,64,0.1460976301270886],[120,299,65,0.14227191959780364],[120,299,66,0.13934502381106462],[120,299,67,0.13732301641712943],[120,299,68,0.13618859775108],[120,299,69,0.13589844088644826],[120,299,70,0.13638066617708128],[120,299,71,0.1375357404179477],[120,299,72,0.13923313845737229],[120,299,73,0.14131147745688383],[120,299,74,0.14364189521856466],[120,299,75,0.14613333253857408],[120,299,76,0.1487073047108145],[120,299,77,0.15129517815847898],[120,299,78,0.15383574594894883],[120,299,79,0.15627282887753963],[120,300,64,0.15019482951377078],[120,300,65,0.14636961895257036],[120,300,66,0.14342580889934375],[120,300,67,0.14137101733652838],[120,300,68,0.14018979455544683],[120,300,69,0.13984093773614314],[120,300,70,0.140254928969843],[120,300,71,0.14133481390595415],[120,300,72,0.14295281063576443],[120,300,73,0.14495025380832405],[120,300,74,0.1471999815505892],[120,300,75,0.14961200160746868],[120,300,76,0.15210873587092286],[120,300,77,0.15462222293588893],[120,300,78,0.1570916073773849],[120,300,79,0.1594606478597319],[120,301,64,0.15438174543747685],[120,301,65,0.15056068887786256],[120,301,66,0.1476021913646035],[120,301,67,0.1455154231192061],[120,301,68,0.14428683096060918],[120,301,69,0.14387742535258993],[120,301,70,0.14422018592476699],[120,301,71,0.1452209234953531],[120,301,72,0.14675484046462678],[120,301,73,0.14866627108075162],[120,301,74,0.15082991846550617],[120,301,75,0.15315694808875538],[120,301,76,0.1555707853796288],[120,301,77,0.15800424447623307],[120,301,78,0.16039693087627863],[120,301,79,0.1626926563695524],[120,302,64,0.15864600340327098],[120,302,65,0.15483294924787608],[120,302,66,0.15186239683001412],[120,302,67,0.14974506361993806],[120,302,68,0.14846932143170713],[120,302,69,0.14799845966325129],[120,302,70,0.1482680621347207],[120,302,71,0.14918685618377334],[120,302,72,0.15063322864559187],[120,302,73,0.15245475108097706],[120,302,74,0.15452813146733196],[120,302,75,0.15676577117862178],[120,302,76,0.15909218411786089],[120,302,77,0.16144105235783865],[120,302,78,0.16375254233685566],[120,302,79,0.16597062698005394],[120,303,64,0.16297874371453727],[120,303,65,0.15917771726641117],[120,303,66,0.15619814811677585],[120,303,67,0.1540522828952489],[120,303,68,0.15273042808438073],[120,303,69,0.1521981929113092],[120,303,70,0.15239384107195422],[120,303,71,0.15322913035046495],[120,303,72,0.15458578804726464],[120,303,73,0.15631481253822296],[120,303,74,0.1582950281728488],[120,303,75,0.16044013476486482],[120,303,76,0.16267580478206223],[120,303,77,0.1649366670058308],[120,303,78,0.16716353700739603],[120,303,79,0.16930064739204437],[120,304,64,0.16737526728731172],[120,304,65,0.16359045640508268],[120,304,66,0.1606053169179339],[120,304,67,0.15843359326845116],[120,304,68,0.1570675168453519],[120,304,69,0.1564750316683976],[120,304,70,0.15659712426405464],[120,304,71,0.157348656961606],[120,304,72,0.15861480635991362],[120,304,73,0.16025013515700548],[120,304,74,0.1621356635409234],[120,304,75,0.16418643335882027],[120,304,76,0.16632932782485563],[120,304,77,0.1684999847579825],[120,304,78,0.1706399426384347],[120,304,79,0.17269378047467204],[120,305,64,0.1718357147558925],[120,305,65,0.16807145918652963],[120,305,66,0.16508460981961107],[120,305,67,0.16289036419229444],[120,305,68,0.16148284880889616],[120,305,69,0.160832330391222],[120,305,70,0.1608825268145797],[120,305,71,0.16155143687851237],[120,305,72,0.162727745075025],[120,305,73,0.16426966018721004],[120,305,74,0.16606044177691748],[120,305,75,0.1680164948159234],[120,305,76,0.17006594424562488],[120,305,77,0.17214547978369182],[120,305,78,0.17419741942242364],[120,305,79,0.17616676097812237],[120,306,64,0.176365778869699],[120,306,65,0.1726265638125986],[120,306,66,0.1696422886696285],[120,306,67,0.16742954590920156],[120,306,68,0.1659843067891792],[120,306,69,0.16527912052203914],[120,306,70,0.16526040876834483],[120,306,71,0.16584929426872833],[120,306,72,0.16693797478969807],[120,306,73,0.16838832751133956],[120,306,74,0.17008585491216893],[120,306,75,0.17194831984487854],[120,306,76,0.17390509523099368],[120,306,77,0.1758939428560658],[120,306,78,0.17785799672783625],[120,306,79,0.17974272891840792],[120,307,64,0.18097617804903987],[120,307,65,0.17726664378695756],[120,307,66,0.17428966840106092],[120,307,67,0.17206316783731346],[120,307,68,0.1705848870880768],[120,307,69,0.16982958916763785],[120,307,70,0.1697463352160345],[120,307,71,0.17025931393396332],[120,307,72,0.17126418716065],[120,307,73,0.17262646154280398],[120,307,74,0.1742338437660043],[120,307,75,0.17600542057128143],[120,307,76,0.17787179197526454],[120,307,77,0.17977178692606952],[120,307,78,0.18164936951323676],[120,307,79,0.1834505222767303],[120,308,64,0.1856571687798242],[120,308,65,0.18198233015136311],[120,308,66,0.17901790318438046],[120,308,67,0.17678304648414395],[120,308,68,0.17527719519152574],[120,308,69,0.17447724163257652],[120,308,70,0.1743348030758905],[120,308,71,0.17477705391415904],[120,308,72,0.1757030453662523],[120,308,73,0.17698184864519842],[120,308,74,0.17850333067333338],[120,308,75,0.18018787052862828],[120,308,76,0.18196727190592435],[120,308,77,0.183781419493607],[120,308,78,0.18557511211803168],[120,308,79,0.18729486775400947],[120,309,64,0.1903760310948946],[120,309,65,0.18674141458798837],[120,309,66,0.1837953121464937],[120,309,67,0.1815580388110865],[120,309,68,0.18003063165317457],[120,309,69,0.1791920243256295],[120,309,70,0.1789963049135353],[120,309,71,0.179373553225739],[120,309,72,0.18022613757954878],[120,309,73,0.1814266366367668],[120,309,74,0.1828670637433834],[120,309,75,0.1844690914659666],[120,309,76,0.1861657256279321],[120,309,77,0.1878979076743539],[120,309,78,0.1896112803305916],[120,309,79,0.19125292000260208],[120,310,64,0.19509944307777718],[120,310,65,0.1915109875969486],[120,310,66,0.18858941656965453],[120,310,67,0.1863561104302316],[120,310,68,0.18481361577588884],[120,310,69,0.18394281637373333],[120,310,70,0.18370018390361492],[120,310,71,0.184018623102563],[120,310,72,0.18480374901413643],[120,310,73,0.18593159751599025],[120,310,74,0.18729634321977687],[120,310,75,0.1888209848255682],[120,310,76,0.19043975002257638],[120,310,77,0.19209465039502377],[120,310,78,0.19373218655072305],[120,310,79,0.19530001493653543],[120,311,64,0.19979469689440477],[120,311,65,0.19625865215039143],[120,311,66,0.19336815539206442],[120,311,67,0.19114555708013464],[120,311,68,0.18959481695997654],[120,311,69,0.18869867435706056],[120,311,70,0.18841589491540847],[120,311,71,0.18868212666034084],[120,311,72,0.1894061614579921],[120,311,73,0.19046744698807894],[120,311,74,0.19176235974355282],[120,311,75,0.19321528623650647],[120,311,76,0.19476171545777612],[120,311,77,0.1963447540218292],[120,311,78,0.1979117789567426],[120,311,79,0.1994110471613375],[120,312,64,0.20443002143398345],[120,312,65,0.20095284649416068],[120,312,66,0.1981002068922369],[120,312,67,0.1958953239732952],[120,312,68,0.19434347058503143],[120,312,69,0.1934291437214829],[120,312,70,0.1931133106130956],[120,312,71,0.1933342790404256],[120,312,72,0.1940039470542401],[120,312,73,0.1950051317391082],[120,312,74,0.19623647512498668],[120,312,75,0.19762383984816714],[120,312,76,0.1991040337863163],[120,312,77,0.20062129414729676],[120,312,78,0.20212389720872076],[120,312,79,0.20356071970978323],[120,313,64,0.20897549604904983],[120,313,65,0.20556364359199575],[120,313,66,0.20275567349995227],[120,313,67,0.20057557598561268],[120,313,68,0.19902983396577043],[120,313,69,0.19810460129263183],[120,313,70,0.1977629517524273],[120,313,71,0.19794576717530293],[120,313,72,0.19856797971336845],[120,313,73,0.19951573518050097],[120,313,74,0.2006900254964582],[120,313,75,0.20201830226302323],[120,313,76,0.20343876669215574],[120,313,77,0.20489683221410399],[120,313,78,0.20634170141307637],[120,313,79,0.20772288957880886],[120,314,64,0.21340286861122879],[120,314,65,0.21006258896796415],[120,314,66,0.20730593812945108],[120,314,67,0.20515757118393663],[120,314,68,0.20362507580843783],[120,314,69,0.20269615945993658],[120,314,70,0.20233590499074405],[120,314,71,0.20248768025959513],[120,314,72,0.20306937745572123],[120,314,73,0.203970431075991],[120,314,74,0.20509428574268507],[120,314,75,0.20637011731707003],[120,314,76,0.20773761037663924],[120,314,77,0.2091434096545111],[120,314,78,0.21053767523950107],[120,314,79,0.21187057931139852],[120,315,64,0.21768504438606923],[120,315,65,0.21442230544941154],[120,315,66,0.21172338271090207],[120,315,67,0.20961349081487324],[120,315,68,0.2081012151090125],[120,315,69,0.207175711257159],[120,315,70,0.20680397128396014],[120,315,71,0.206931758501771],[120,315,72,0.2074798485058283],[120,315,73,0.20834092395147585],[120,315,74,0.2094210011047459],[120,315,75,0.21065113559889564],[120,315,76,0.21197259954640854],[120,315,77,0.213333332727994],[120,315,78,0.21468448781303792],[120,315,79,0.21472948501586026],[120,316,64,0.22179636100926545],[120,316,65,0.2186167792945587],[120,316,66,0.21598168419671845],[120,316,67,0.21391674393144716],[120,316,68,0.2124314331862686],[120,316,69,0.2115162486643518],[120,316,70,0.21113998943016488],[120,316,71,0.21125072102788345],[120,316,72,0.21177202285764402],[120,316,73,0.21259978383312694],[120,316,74,0.21364272473225512],[120,316,75,0.21483395451764542],[120,316,76,0.21611644973868915],[120,316,77,0.21743951686716284],[120,316,78,0.2172384832315962],[120,316,79,0.21051971282140033],[120,317,64,0.2257128926874105],[120,317,65,0.22262167180681383],[120,317,66,0.22005613236845753],[120,317,67,0.21804229019156918],[120,317,68,0.216590400320089],[120,317,69,0.21569219201475423],[120,317,70,0.21531816728719752],[120,317,71,0.21541859809983993],[120,317,72,0.21591978486756702],[120,317,73,0.21672077880032914],[120,317,74,0.2177331499204501],[120,317,75,0.21889225002234244],[120,317,76,0.22014288837335994],[120,317,77,0.2197801053318654],[120,317,78,0.21271519294531271],[120,317,79,0.20602167210872566],[120,318,64,0.22941275750201123],[120,318,65,0.226414634237561],[120,318,66,0.22392395113900362],[120,318,67,0.22196696637575672],[120,318,68,0.22055460634507795],[120,318,69,0.21967972359936808],[120,318,70,0.21931441743019384],[120,318,71,0.21941106800872354],[120,318,72,0.21989861074254885],[120,318,73,0.22067921263114426],[120,318,74,0.22166744761554805],[120,318,75,0.22280111374893016],[120,318,76,0.22219033511859412],[120,318,77,0.21487840869451802],[120,318,78,0.20786908480166194],[120,318,79,0.20123884935557043],[120,319,64,0.2328764278167671],[120,319,65,0.22997562597742233],[120,319,66,0.2275646233500328],[120,319,67,0.22566981662410227],[120,319,68,0.2243026951994697],[120,319,69,0.22345712546920915],[120,319,70,0.2231066972490949],[120,319,71,0.2232057986431522],[120,319,72,0.22368591092327775],[120,319,73,0.2244522675402835],[120,319,74,0.22542260918835946],[120,319,75,0.22429567138861997],[120,319,76,0.21684199825310374],[120,319,77,0.209614387932996],[120,319,78,0.20269758181306163],[120,319,79,0.19616626332919976],[121,-64,64,0.34497579198897227],[121,-64,65,0.35095849131497275],[121,-64,66,0.3570463430141508],[121,-64,67,0.3632221665735389],[121,-64,68,0.3694900782977617],[121,-64,69,0.37586773494431314],[121,-64,70,0.38236720636219257],[121,-64,71,0.38899437971280176],[121,-64,72,0.39574887519976826],[121,-64,73,0.4026240533616826],[121,-64,74,0.40960711601505545],[121,-64,75,0.416679302794934],[121,-64,76,0.42381618509082425],[121,-64,77,0.43098805901730114],[121,-64,78,0.43816043889292855],[121,-64,79,0.44529465253011064],[121,-63,64,0.34727048225480195],[121,-63,65,0.35335603673655086],[121,-63,66,0.359551882582713],[121,-63,67,0.36584134005085184],[121,-63,68,0.37222783906341117],[121,-63,69,0.3787274636571],[121,-63,70,0.38535064309758504],[121,-63,71,0.3921016219697935],[121,-63,72,0.3989784206733929],[121,-63,73,0.4059728835778181],[121,-63,74,0.41307081675446294],[121,-63,75,0.4202522170667135],[121,-63,76,0.42749159425266775],[121,-63,77,0.43475838748203516],[121,-63,78,0.442017477708805],[121,-63,79,0.44922979697699056],[121,-62,64,0.3497393848566982],[121,-62,65,0.3559173122023656],[121,-62,66,0.36220908543608177],[121,-62,67,0.3685988693490284],[121,-62,68,0.37508936268943277],[121,-62,69,0.38169480377534665],[121,-62,70,0.38842383789122104],[121,-62,71,0.3952790437319034],[121,-62,72,0.40225692143088093],[121,-62,73,0.40934796494174336],[121,-62,74,0.41653682055409447],[121,-62,75,0.42380253319174127],[121,-62,76,0.4311188819994695],[121,-62,77,0.4384548065763933],[121,-62,78,0.44577492505970184],[121,-62,79,0.453040145104716],[121,-61,64,0.3523672624701495],[121,-61,65,0.3586268853290698],[121,-61,66,0.36500227664686447],[121,-61,67,0.37147875187640395],[121,-61,68,0.3780582512576128],[121,-61,69,0.38475294561198525],[121,-61,70,0.39156959590337853],[121,-61,71,0.39850912628305124],[121,-61,72,0.4055666230996039],[121,-61,73,0.41273141553985215],[121,-61,74,0.4199872395769175],[121,-61,75,0.42731248677246986],[121,-61,76,0.4346805393430845],[121,-61,77,0.4420601927574389],[121,-61,78,0.44941616698244086],[121,-61,79,0.4567097073444424],[121,-60,64,0.3551354546111248],[121,-60,65,0.36146610038179317],[121,-60,66,0.3679128101344078],[121,-60,67,0.37446230497914607],[121,-60,68,0.38111575237214584],[121,-60,69,0.38788308647538855],[121,-60,70,0.3947691251029121],[121,-60,71,0.4017731797330415],[121,-60,72,0.4088890501659293],[121,-60,73,0.41610509863112877],[121,-60,74,0.42340440494503884],[121,-60,75,0.4307650041931124],[121,-60,76,0.4381602082794948],[121,-60,77,0.4455590125485431],[121,-60,78,0.4529265885393601],[121,-60,79,0.46022486378806804],[121,-59,64,0.3580227155696724],[121,-59,65,0.36441393681294576],[121,-59,66,0.37091995028000707],[121,-59,67,0.37752907230662813],[121,-59,68,0.38424168968642647],[121,-59,69,0.3910653817717429],[121,-59,70,0.3980030017421366],[121,-59,71,0.405052314459129],[121,-59,72,0.41220597319604885],[121,-59,73,0.41945157410146705],[121,-59,74,0.426771789944001],[121,-59,75,0.4341445845660197],[121,-59,76,0.44154350934639813],[121,-59,77,0.4489380828392156],[121,-59,78,0.4562942546170332],[121,-59,79,0.4635749542061169],[121,-58,64,0.3610062154025552],[121,-58,65,0.3674480305189335],[121,-58,66,0.37400191534617705],[121,-58,67,0.3806578904790089],[121,-58,68,0.38741555140768685],[121,-58,69,0.3942800505945178],[121,-58,70,0.40125228540427],[121,-58,71,0.40832855560909237],[121,-58,72,0.415500510916315],[121,-58,73,0.4227551748617411],[121,-58,74,0.4300750465833197],[121,-58,75,0.4374382818747669],[121,-58,76,0.4448189547962298],[121,-58,77,0.4521874009907402],[121,-58,78,0.45951064372181954],[121,-58,79,0.4667529035111086],[121,-57,64,0.364062703567772],[121,-57,65,0.37054585736816165],[121,-57,66,0.37713708224315273],[121,-57,67,0.38382811560742985],[121,-57,68,0.390617736353064],[121,-57,69,0.39750863541313913],[121,-57,70,0.40449978328906183],[121,-57,71,0.4115861003997073],[121,-57,72,0.41875836696971874],[121,-57,73,0.4260032081031595],[121,-57,74,0.43330315553736193],[121,-57,75,0.4406367874616134],[121,-57,76,0.4479789476678767],[121,-57,77,0.455301045177302],[121,-57,78,0.46257143535767886],[121,-57,79,0.4697558834151088],[121,-56,64,0.3671664045272242],[121,-56,65,0.3736823979639344],[121,-56,66,0.3803014118019877],[121,-56,67,0.38701680565029756],[121,-56,68,0.3938264925599487],[121,-56,69,0.40073069838622016],[121,-56,70,0.4077265095879354],[121,-56,71,0.414807551016633],[121,-56,72,0.421963852651711],[121,-56,73,0.4291817903619474],[121,-56,74,0.4364441021748583],[121,-56,75,0.4437299814304701],[121,-56,76,0.4510152480838201],[121,-56,77,0.45827259930207126],[121,-56,78,0.465471940378331],[121,-56,79,0.4725807968570105],[121,-55,64,0.37026937591477077],[121,-55,65,0.3768089243774752],[121,-55,66,0.38344559433582914],[121,-55,67,0.3901741997191292],[121,-55,68,0.39699174230597223],[121,-55,69,0.40389604234916604],[121,-55,70,0.4108823976917447],[121,-55,71,0.41794326207739213],[121,-55,72,0.4250680634078563],[121,-55,73,0.43224309499210006],[121,-55,74,0.4394514812635525],[121,-55,75,0.4466732193422567],[121,-55,76,0.45388529771155023],[121,-55,77,0.46106189316534646],[121,-55,78,0.4681746470629349],[121,-55,79,0.4751930218053039],[121,-54,64,0.37331888556923626],[121,-54,65,0.3798714501375418],[121,-54,66,0.3865145867706127],[121,-54,67,0.3932443479608659],[121,-54,68,0.4000567969340256],[121,-54,69,0.40694747947599264],[121,-54,70,0.41391006381476486],[121,-54,71,0.42093601013385157],[121,-54,72,0.42801433423770535],[121,-54,73,0.43513144350374483],[121,-54,74,0.4422710466046759],[121,-54,75,0.44941413839021754],[121,-54,76,0.4565390612148553],[121,-54,77,0.463621643889063],[121,-54,78,0.4706354193163328],[121,-54,79,0.4775519217591666],[121,-53,64,0.3762695910330324],[121,-53,65,0.3828237334747848],[121,-53,66,0.38946146300116113],[121,-53,67,0.3961798166533652],[121,-53,68,0.402973908459571],[121,-53,69,0.40983720119783057],[121,-53,70,0.41676194376106646],[121,-53,71,0.4237388208227726],[121,-53,72,0.4307566554392865],[121,-53,73,0.43780218373086816],[121,-53,74,0.44485990314772755],[121,-53,75,0.45191199573687046],[121,-53,76,0.4589383277271004],[121,-53,77,0.46591652664389677],[121,-53,78,0.4728221370539627],[121,-53,79,0.4796288559227989],[121,-52,64,0.37908377851849484],[121,-52,65,0.38562749603441604],[121,-52,66,0.39224760943776565],[121,-52,67,0.39894185818409794],[121,-52,68,0.4057044118201942],[121,-52,69,0.412526890720217],[121,-52,70,0.4194003740366332],[121,-52,71,0.42631501737073557],[121,-52,72,0.43325968788062197],[121,-52,73,0.4402216718899042],[121,-52,74,0.44718645654214534],[121,-52,75,0.45413758695917406],[121,-52,76,0.46105660026585754],[121,-52,77,0.4679230377407672],[121,-52,78,0.47471453624226456],[121,-52,79,0.48140699994461233],[121,-51,64,0.3817316560289972],[121,-51,65,0.38825269135207985],[121,-51,66,0.3948429656240294],[121,-51,67,0.4015006209942758],[121,-51,68,0.4082189015983525],[121,-51,69,0.41498786428667167],[121,-51,70,0.4217976959154254],[121,-51,71,0.4286382863721075],[121,-51,72,0.43549879015236764],[121,-51,73,0.4423672615884704],[121,-51,74,0.44923036532981164],[121,-51,75,0.45607316359139005],[121,-51,76,0.4628789815922901],[121,-51,77,0.46962935250425586],[121,-51,78,0.47630404312115987],[121,-51,79,0.48288116134533526],[121,-50,64,0.3831296533201631],[121,-50,65,0.39048889874655335],[121,-50,66,0.39722637482348416],[121,-50,67,0.40383546854604646],[121,-50,68,0.4104975164039026],[121,-50,69,0.4172013183739539],[121,-50,70,0.42393646339834506],[121,-50,71,0.4306928451635865],[121,-50,72,0.43746014481528117],[121,-50,73,0.44422738927281075],[121,-50,74,0.45098258681568226],[121,-50,75,0.4577124415296343],[121,-50,76,0.4644021481070672],[121,-50,77,0.4710352683940629],[121,-50,78,0.47759369096607424],[121,-50,79,0.4840576748980146],[121,-49,64,0.38371962691784267],[121,-49,65,0.39109664176522096],[121,-49,66,0.3985053320743486],[121,-49,67,0.40592915886207503],[121,-49,68,0.41252759981795384],[121,-49,69,0.4191566041247304],[121,-49,70,0.42580833653198846],[121,-49,71,0.4324729467759569],[121,-49,72,0.439140854840372],[121,-49,73,0.44580222948879483],[121,-49,74,0.45244654686021996],[121,-49,75,0.45906223079917025],[121,-49,76,0.46563637649676864],[121,-49,77,0.47215455891513514],[121,-49,78,0.47860072735479936],[121,-49,79,0.48495718740539223],[121,-48,64,0.384396333611967],[121,-48,65,0.3917868192992977],[121,-48,66,0.39921776578049467],[121,-48,67,0.4066733829774192],[121,-48,68,0.41414290802681375],[121,-48,69,0.42084420690125646],[121,-48,70,0.42740860835265826],[121,-48,71,0.433978914761405],[121,-48,72,0.44054641323805804],[121,-48,73,0.4471024941166432],[121,-48,74,0.4536381342476552],[121,-48,75,0.46014346531138306],[121,-48,76,0.4666074288095449],[121,-48,77,0.47301751928611374],[121,-48,78,0.47935961721200476],[121,-48,79,0.4856179128447305],[121,-47,64,0.38517332989874725],[121,-47,65,0.392570030163265],[121,-47,66,0.40001462842398255],[121,-47,67,0.40749241090121796],[121,-47,68,0.4149936871677088],[121,-47,69,0.4222598175687511],[121,-47,70,0.4287375895843537],[121,-47,71,0.43521582394376507],[121,-47,72,0.44168671631373513],[121,-47,73,0.4481428682817605],[121,-47,74,0.45457670072873446],[121,-47,75,0.46097995551471],[121,-47,76,0.46734328720751117],[121,-47,77,0.4736559464732411],[121,-47,78,0.4799055566274317],[121,-47,79,0.48607798471742014],[121,-46,64,0.38605502461735314],[121,-46,65,0.3934481997856763],[121,-46,66,0.4008950849563724],[121,-46,67,0.40838236414496726],[121,-46,68,0.4159014718965966],[121,-46,69,0.42340541825358363],[121,-46,70,0.4298009860555641],[121,-46,71,0.43619317605001656],[121,-46,72,0.4425750589965129],[121,-46,73,0.44894036145481603],[121,-46,74,0.4552828176092541],[121,-46,75,0.46159561235665925],[121,-46,76,0.46787091744254494],[121,-46,77,0.47409952231577634],[121,-46,78,0.4802705612475618],[121,-46,79,0.48637133812791467],[121,-45,64,0.38703766462593525],[121,-45,65,0.3944155398670473],[121,-45,66,0.40185112709884363],[121,-45,67,0.4093328158111591],[121,-45,68,0.4168532383665429],[121,-45,69,0.4242885235115575],[121,-45,70,0.4306092027053784],[121,-45,71,0.4369242730698822],[121,-45,72,0.4432275833276077],[121,-45,73,0.4495138359384248],[121,-45,74,0.4557778880752036],[121,-45,75,0.46201414617450776],[121,-45,76,0.46821605588009196],[121,-45,77,0.47437568907910976],[121,-45,78,0.48048342960281093],[121,-45,79,0.4865277590269001],[121,-44,64,0.38811029931939006],[121,-44,65,0.39545948790211055],[121,-44,66,0.402868480412519],[121,-44,67,0.41032765799243315],[121,-44,68,0.4178309399877063],[121,-44,69,0.42492143549572914],[121,-44,70,0.4311766601693554],[121,-44,71,0.4374256018347108],[121,-44,72,0.44366273692481867],[121,-44,73,0.4498835442532157],[121,-44,74,0.4560837675473564],[121,-44,75,0.4622587729833926],[121,-44,76,0.4684030035481569],[121,-44,77,0.4745095319335513],[121,-44,78,0.4805697135375457],[121,-44,79,0.486572941006466],[121,-43,64,0.389255726837933],[121,-43,65,0.39656162932506583],[121,-43,66,0.4039274948980747],[121,-43,67,0.4113459537324888],[121,-43,68,0.418812313755961],[121,-43,69,0.42532051089867795],[121,-43,70,0.431521121891294],[121,-43,71,0.43771622794458975],[121,-43,72,0.44390073974364197],[121,-43,73,0.45007067394117006],[121,-43,74,0.45622239078299154],[121,-43,75,0.46235192707845574],[121,-43,76,0.46845442632308987],[121,-43,77,0.47452366765833187],[121,-43,78,0.48055169522061014],[121,-43,79,0.48652854929091904],[121,-42,64,0.390451424821221],[121,-42,65,0.3976986050440355],[121,-42,66,0.40500402178295525],[121,-42,67,0.41236277608150146],[121,-42,68,0.41935133863370505],[121,-42,69,0.42550543743730584],[121,-42,70,0.4316630297027015],[121,-42,71,0.4378171971721285],[121,-42,72,0.44396305746038794],[121,-42,73,0.45009689831577104],[121,-42,74,0.4562154044624448],[121,-42,75,0.4623149788975602],[121,-42,76,0.4683911604048609],[121,-42,77,0.47443813892387515],[121,-42,78,0.4804483702810534],[121,-42,79,0.4864122916482113],[121,-41,64,0.39167046855956766],[121,-41,65,0.39884300712987114],[121,-41,66,0.406070279154465],[121,-41,67,0.4132761360276533],[121,-41,68,0.4193789476560776],[121,-41,69,0.42549851764927227],[121,-41,70,0.4316248458147697],[121,-41,71,0.4377509424776473],[121,-41,72,0.443871879813655],[121,-41,73,0.4499839317056615],[121,-41,74,0.45608380402303084],[121,-41,75,0.46216795712505293],[121,-41,76,0.4682320222789449],[121,-41,77,0.4742703135615239],[121,-41,78,0.4802754366826394],[121,-41,79,0.48623799602948625],[121,-40,64,0.3928824393808622],[121,-40,65,0.3999642654138543],[121,-40,66,0.40709570908765036],[121,-40,67,0.4131547703749533],[121,-40,68,0.4192286607299382],[121,-40,69,0.42532395777822796],[121,-40,70,0.43143039917711495],[121,-40,71,0.43754069478255575],[121,-40,72,0.44364960225652894],[121,-40,73,0.4497530877599428],[121,-40,74,0.4558475735311545],[121,-40,75,0.4619292740536127],[121,-40,76,0.46799362240812115],[121,-40,77,0.4740347882869469],[121,-40,78,0.4800452890196903],[121,-40,79,0.4860156948260312],[121,-39,64,0.3940543260895408],[121,-39,65,0.4009110344664591],[121,-39,66,0.4068612697647202],[121,-39,67,0.41287300922855125],[121,-39,68,0.4189265095390473],[121,-39,69,0.4250071595413519],[121,-39,70,0.4311042341747218],[121,-39,71,0.43720989566689145],[121,-39,72,0.44331830929435856],[121,-39,73,0.4494248394103715],[121,-39,74,0.4555253274166287],[121,-39,75,0.4616154532618596],[121,-39,76,0.4676901819469053],[121,-39,77,0.47374329640284774],[121,-39,78,0.47976701798727406],[121,-39,79,0.4857517157153694],[121,-38,64,0.39471535844314604],[121,-38,65,0.4005449958116017],[121,-38,66,0.40646663900792107],[121,-38,67,0.41245857232868366],[121,-38,68,0.41849941306922656],[121,-38,69,0.4245740125968989],[121,-38,70,0.4306709596589745],[121,-38,71,0.43678161018273365],[121,-38,72,0.4428992579112139],[121,-38,73,0.449018379117808],[121,-38,74,0.45513395293049075],[121,-38,75,0.46124085870921],[121,-38,76,0.46733335182294866],[121,-38,77,0.4734046190672324],[121,-38,78,0.4794464148494932],[121,-38,79,0.48544877915000895],[121,-37,64,0.39427010678308644],[121,-37,65,0.400063801814334],[121,-37,66,0.40596172599877806],[121,-37,67,0.41193963703206826],[121,-37,68,0.4179744196886567],[121,-37,69,0.4240501855616779],[121,-37,70,0.43015459634046815],[121,-37,71,0.4362779380076144],[121,-37,72,0.4424123595222765],[121,-37,73,0.44855117806737876],[121,-37,74,0.4546882522289592],[121,-37,75,0.46081742439634404],[121,-37,76,0.46693203358343244],[121,-37,77,0.47302449977518135],[121,-37,78,0.47908598080038006],[121,-37,79,0.4851061026231203],[121,-36,64,0.39373625379633675],[121,-36,65,0.3994973850031098],[121,-36,66,0.4053755380972474],[121,-36,67,0.41134403539572845],[121,-36,68,0.41737794581269766],[121,-36,69,0.42346041346941427],[121,-36,70,0.4295779206113334],[121,-36,71,0.43571942120196594],[121,-36,72,0.441875658930255],[121,-36,73,0.44803854301972973],[121,-36,74,0.45420058303239796],[121,-36,75,0.46035438379041743],[121,-36,76,0.46649220146099113],[121,-36,77,0.47260556176547874],[121,-36,78,0.4786849411832979],[121,-36,79,0.48471951192574975],[121,-35,64,0.39314384843299427],[121,-35,65,0.3988749722401289],[121,-35,66,0.40473616073559787],[121,-35,67,0.4106984457052723],[121,-35,68,0.4167350089396674],[121,-35,69,0.4228277796105088],[121,-35,70,0.4289618029126742],[121,-35,71,0.4351244468816361],[121,-35,72,0.44130480881097517],[121,-35,73,0.44749316957394],[121,-35,74,0.45368049685860296],[121,-35,75,0.45985799826803325],[121,-35,76,0.46601672517219306],[121,-35,77,0.4721472281276878],[121,-35,78,0.47823926460577565],[121,-35,79,0.4842815596889502],[121,-34,64,0.392521537112618],[121,-34,65,0.3982242050890335],[121,-34,66,0.40406990604157905],[121,-34,67,0.41002757616465163],[121,-34,68,0.4160684529049993],[121,-34,69,0.42217298975182693],[121,-34,70,0.42832453881848936],[121,-34,71,0.43450864317058285],[121,-34,72,0.4407125383065405],[121,-34,73,0.4469246906510437],[121,-34,74,0.45313437388429256],[121,-34,75,0.4593312838858372],[121,-34,76,0.46550519302184995],[121,-34,77,0.47164564444999074],[121,-34,78,0.4777416870569569],[121,-34,79,0.48378165158095365],[121,-33,64,0.3918956544531575],[121,-33,65,0.39757024990970985],[121,-33,66,0.40340045126831914],[121,-33,67,0.40935333853912426],[121,-33,68,0.41539816327230583],[121,-33,69,0.4215136368028427],[121,-33,70,0.4276811710720858],[121,-33,71,0.4338842668610373],[121,-33,72,0.44010811436489444],[121,-33,73,0.4463392190666577],[121,-33,74,0.452565053548306],[121,-33,75,0.45877373584932474],[121,-33,76,0.46495373494929854],[121,-33,77,0.4710936039141748],[121,-33,78,0.4771817412051233],[121,-33,79,0.4832061806049404],[121,-32,64,0.39128930153674074],[121,-32,65,0.39693489536849297],[121,-32,66,0.40274796480349906],[121,-32,67,0.4086940096280623],[121,-32,68,0.41474027086070964],[121,-32,69,0.4208634540712579],[121,-32,70,0.4270428008840233],[121,-32,71,0.433259581278123],[121,-32,72,0.43949679453160206],[121,-32,73,0.4457388831262409],[121,-32,74,0.45197146007394046],[121,-32,75,0.4581810501141868],[121,-32,76,0.46435484521733306],[121,-32,77,0.47048047481048116],[121,-32,78,0.47654579112185724],[121,-32,79,0.48253867001581013],[121,-31,64,0.39072140945036504],[121,-31,65,0.3963356351558063],[121,-31,66,0.4021282176299545],[121,-31,67,0.40806337853949376],[121,-31,68,0.4141063414984263],[121,-31,69,0.42023155533717665],[121,-31,70,0.42641588688206294],[121,-31,71,0.43263822292314835],[121,-31,72,0.4388792699731833],[121,-31,73,0.44512135424692156],[121,-31,74,0.45134822215590126],[121,-31,75,0.457544841621059],[121,-31,76,0.4636972045103974],[121,-31,77,0.4697921305112849],[121,-31,78,0.475817072746948],[121,-31,79,0.4817599254440805],[121,-30,64,0.3902057859596641],[121,-30,65,0.39578473381911056],[121,-30,66,0.40155167822127963],[121,-30,67,0.4074698778448986],[121,-30,68,0.41350255019411164],[121,-30,69,0.41962166007116664],[121,-30,70,0.42580153019457406],[121,-30,71,0.43201855555570184],[121,-30,72,0.43825109759249],[121,-30,73,0.4444793656867538],[121,-30,74,0.4506852861306576],[121,-30,75,0.45685235873496044],[121,-30,76,0.46296550127698327],[121,-30,77,0.46901088200971947],[121,-30,78,0.4747935135129205],[121,-30,79,0.4803832501643277],[121,-29,64,0.389750143305928],[121,-29,65,0.3952882737465966],[121,-29,66,0.40102258897877463],[121,-29,67,0.4069156968103267],[121,-29,68,0.4129288380293821],[121,-29,69,0.41903130222750473],[121,-29,70,0.4251947442487748],[121,-29,71,0.4313930104685594],[121,-29,72,0.43760212018470096],[121,-29,73,0.4438002215448733],[121,-29,74,0.44927452510436316],[121,-29,75,0.4547785311532132],[121,-29,76,0.46030796472912894],[121,-29,77,0.46585003414561127],[121,-29,78,0.4713896348581788],[121,-29,79,0.47690966386334],[121,-28,64,0.38935510526045114],[121,-28,65,0.39484518147629033],[121,-28,66,0.4005380224501874],[121,-28,67,0.4063958750283359],[121,-28,68,0.4123780501981378],[121,-28,69,0.4184510211595122],[121,-28,70,0.42458370797389444],[121,-28,71,0.43030221157308457],[121,-28,72,0.4355037674845148],[121,-28,73,0.4407666118824024],[121,-28,74,0.4460884414154559],[121,-28,75,0.45146339287989457],[121,-28,76,0.45688226333304643],[121,-28,77,0.462332765356693],[121,-28,78,0.467799817293084],[121,-28,79,0.4732658682146958],[121,-27,64,0.3890131917276503],[121,-27,65,0.3944462316578451],[121,-27,66,0.4000869157178696],[121,-27,67,0.40589737491631195],[121,-27,68,0.4118350537526776],[121,-27,69,0.4174819175540548],[121,-27,70,0.42238153640314846],[121,-27,71,0.4273463257345599],[121,-27,72,0.43238412138291227],[121,-27,73,0.4374984753149624],[121,-27,74,0.44268876328789675],[121,-27,75,0.4479503396649525],[121,-27,76,0.4532747393795071],[121,-27,77,0.45864992695204265],[121,-27,78,0.4640605923797691],[121,-27,79,0.46948849363679923],[121,-26,64,0.3887077793574171],[121,-26,65,0.39407302715833176],[121,-26,66,0.3996490815021743],[121,-26,67,0.40535918799697823],[121,-26,68,0.40997929436735236],[121,-26,69,0.4146420082989833],[121,-26,70,0.4193668942920032],[121,-26,71,0.42416882232168734],[121,-26,72,0.4290579307207111],[121,-26,73,0.4340396466813767],[121,-26,74,0.4391147645930807],[121,-26,75,0.44427958232373704],[121,-26,76,0.4495260954470785],[121,-26,77,0.4548422493119462],[121,-26,78,0.46021224874627176],[121,-26,79,0.46561692508821473],[121,-25,64,0.38841204293620996],[121,-25,65,0.3936969918372089],[121,-25,66,0.3982382185976739],[121,-25,67,0.4026580142464163],[121,-25,68,0.4071004806237995],[121,-25,69,0.4115930622824249],[121,-25,70,0.41615817199433924],[121,-25,71,0.42081313447006774],[121,-25,72,0.42557011492456537],[121,-25,73,0.4304361146502012],[121,-25,74,0.43541303383055935],[121,-25,75,0.440497801704984],[121,-25,76,0.44568257406974515],[121,-25,77,0.45095499797887295],[121,-25,78,0.4562985433877062],[121,-25,79,0.4616929013659517],[121,-24,64,0.3869643037516605],[121,-24,65,0.39125538072596466],[121,-24,66,0.39551203155587084],[121,-24,67,0.399761724986977],[121,-24,68,0.40403985506591533],[121,-24,69,0.40837684270097907],[121,-24,70,0.41279769943850647],[121,-24,71,0.41732191473720914],[121,-24,72,0.4219633656153741],[121,-24,73,0.4267303013286532],[121,-24,74,0.43162540330324073],[121,-24,75,0.4366459204100114],[121,-24,76,0.4417838795259753],[121,-24,77,0.44702637119178956],[121,-24,78,0.45235591003983405],[121,-24,79,0.45775086953756744],[121,-23,64,0.38440184098512853],[121,-23,65,0.38852299032461746],[121,-23,66,0.3926149123898399],[121,-23,67,0.3967052375806907],[121,-23,68,0.40083113312757845],[121,-23,69,0.4050257569737033],[121,-23,70,0.409316450893669],[121,-23,71,0.41372458270048623],[121,-23,72,0.4182654476227893],[121,-23,73,0.4229482517154644],[121,-23,74,0.4277761774994117],[121,-23,75,0.4327465318730621],[121,-23,76,0.43785097618551433],[121,-23,77,0.4430758382104731],[121,-23,78,0.4484025056135283],[121,-23,79,0.45380790036385427],[121,-22,64,0.38168738790541773],[121,-22,65,0.3856446472639125],[121,-22,66,0.38957953285546726],[121,-22,67,0.39351969935445974],[121,-22,68,0.397503828164293],[121,-22,69,0.4015675377730202],[121,-22,70,0.4057402219392639],[121,-22,71,0.41004485301587135],[121,-22,72,0.41449788082684824],[121,-22,73,0.4191092199236858],[121,-22,74,0.4238823253747158],[121,-22,75,0.42881435707513804],[121,-22,76,0.4338964324001421],[121,-22,77,0.4391139668609392],[121,-22,78,0.44444710226565115],[121,-22,79,0.4498712217351258],[121,-21,64,0.3788545999371246],[121,-21,65,0.3826523588572813],[121,-21,66,0.3864361721154348],[121,-21,67,0.3902335425070043],[121,-21,68,0.39408435932544045],[121,-21,69,0.3980263970443897],[121,-21,70,0.402090821616362],[121,-21,71,0.406301956070016],[121,-21,72,0.41067717783071384],[121,-21,73,0.41522691047614524],[121,-21,74,0.41995471003209495],[121,-21,75,0.4248574457349919],[121,-21,76,0.4299255750106612],[121,-21,77,0.4351435122446739],[121,-21,78,0.440490090751144],[121,-21,79,0.44593911718508045],[121,-20,64,0.3759361518005023],[121,-20,65,0.379576909521904],[121,-20,66,0.38321355608586755],[121,-20,67,0.3868732394146704],[121,-20,68,0.39059671786463146],[121,-20,69,0.39442360086467254],[121,-20,70,0.39838655607267914],[121,-20,71,0.4025110333932306],[121,-20,72,0.4068151568058213],[121,-20,73,0.4113097167748918],[121,-20,74,0.4159982632978906],[121,-20,75,0.4208772994564903],[121,-20,76,0.4259365751466917],[121,-20,77,0.43115948047790775],[121,-20,78,0.4365235381517212],[121,-20,79,0.4420009939592377],[121,-19,64,0.3729647204258665],[121,-19,65,0.3764487681348459],[121,-19,66,0.3799396842821984],[121,-19,67,0.3834640429764315],[121,-19,68,0.3870631157864309],[121,-19,69,0.39077802353014635],[121,-19,70,0.3946426878048117],[121,-19,71,0.39868350442708905],[121,-19,72,0.40291922078760845],[121,-19,73,0.4073609204338699],[121,-19,74,0.41201211489447426],[121,-19,75,0.4168689425529922],[121,-19,76,0.4219204741772214],[121,-19,77,0.4271491245113881],[121,-19,78,0.4325311691476026],[121,-19,79,0.43803736571010476],[121,-18,64,0.3699701901473052],[121,-18,65,0.3732950504793504],[121,-18,66,0.37663854244761613],[121,-18,67,0.3800264413938793],[121,-18,68,0.3835001755197636],[121,-18,69,0.38710206713791956],[121,-18,70,0.39086708273513343],[121,-18,71,0.3948224414019276],[121,-18,72,0.3989874634037063],[121,-18,73,0.40337353357558314],[121,-18,74,0.40798417952200217],[121,-18,75,0.4128152643822158],[121,-18,76,0.41785529370515817],[121,-18,77,0.42308583576461234],[121,-18,78,0.4284820544405942],[121,-18,79,0.4340133535972147],[121,-17,64,0.36696281300759837],[121,-17,65,0.370123509159185],[121,-17,66,0.37331511303804704],[121,-17,67,0.37656238277073323],[121,-17,68,0.37990655290505343],[121,-17,69,0.3833908485283034],[121,-17,70,0.38705109986604447],[121,-17,71,0.3909152676310282],[121,-17,72,0.39500324483597987],[121,-17,73,0.3993267822964825],[121,-17,74,0.4038895377881036],[121,-17,75,0.4086872485840277],[121,-17,76,0.41370802686441727],[121,-17,77,0.4189327772590828],[121,-17,78,0.4243357355637649],[121,-17,79,0.429885127459186],[121,-16,64,0.3639049032070825],[121,-16,65,0.3668978934251856],[121,-16,66,0.3699349587929126],[121,-16,67,0.373039645148786],[121,-16,68,0.37625262333576254],[121,-16,69,0.3796176682903844],[121,-16,70,0.3831712234562377],[121,-16,71,0.386941829654784],[121,-16,72,0.3909498661595438],[121,-16,73,0.3952074252510428],[121,-16,74,0.39971832020991005],[121,-16,75,0.40447822644784],[121,-16,76,0.4094749552216243],[121,-16,77,0.41468885912681874],[121,-16,78,0.4200933683280396],[121,-16,79,0.4256556562542933],[121,-15,64,0.36075765211822175],[121,-15,65,0.36358152656572645],[121,-15,66,0.36646390807399865],[121,-15,67,0.3694269561377577],[121,-15,68,0.3725103868324615],[121,-15,69,0.3757581134206361],[121,-15,70,0.37920686436704765],[121,-15,71,0.38288550832169216],[121,-15,72,0.3868147256726497],[121,-15,73,0.39100682380696133],[121,-15,74,0.3954656960350572],[121,-15,75,0.4001869238556714],[121,-15,76,0.4051580219630837],[121,-15,77,0.41035882512978017],[121,-15,78,0.4157620158386677],[121,-15,79,0.42133379129186255],[121,-14,64,0.35749341270391943],[121,-14,65,0.3601485125840731],[121,-14,66,0.3628780025381052],[121,-14,67,0.3657024971670038],[121,-14,68,0.3686603545574959],[121,-14,69,0.37179517278968116],[121,-14,70,0.3751435801134403],[121,-14,71,0.37873445372555214],[121,-14,72,0.38258851740188116],[121,-14,73,0.3867180930541754],[121,-14,74,0.3911270061662289],[121,-14,75,0.39581064476434313],[121,-14,76,0.4007561712810238],[121,-14,77,0.4059428863817245],[121,-14,78,0.41134274354582634],[121,-14,79,0.41692101292716505],[121,-13,64,0.35409364610854926],[121,-13,65,0.35658172117057163],[121,-13,66,0.3591615495814961],[121,-13,67,0.36185205411117255],[121,-13,68,0.36468982899181684],[121,-13,69,0.36771767831399116],[121,-13,70,0.3709717075834761],[121,-13,71,0.3744804382594054],[121,-13,72,0.3782643307396968],[121,-13,73,0.3823354710719278],[121,-13,74,0.3866974213422071],[121,-13,75,0.39134523337398214],[121,-13,76,0.39626562505229707],[121,-13,77,0.4014373182799934],[121,-13,78,0.4068315372745643],[121,-13,79,0.41241266563022405],[121,-12,64,0.35054704233239725],[121,-12,65,0.35287094431000254],[121,-12,66,0.35530534225443394],[121,-12,67,0.35786732930406767],[121,-12,68,0.36059133723637815],[121,-12,69,0.363518888545742],[121,-12,70,0.3666851248810532],[121,-12,71,0.37011782287171646],[121,-12,72,0.37383684479715273],[121,-12,73,0.3778537620055439],[121,-12,74,0.3821716510292573],[121,-12,75,0.3867850620041583],[121,-12,76,0.39168015866433414],[121,-12,77,0.3968350288560352],[121,-12,78,0.4022201641988865],[121,-12,79,0.4077991072211835],[121,-11,64,0.3468478153527023],[121,-11,65,0.3490112248126557],[121,-11,66,0.3513050468828191],[121,-11,67,0.3537444151519541],[121,-11,68,0.35636121764809275],[121,-11,69,0.35919521491167916],[121,-11,70,0.3622801425643426],[121,-11,71,0.3656426368588047],[121,-11,72,0.3693016178873217],[121,-11,73,0.37326785346997987],[121,-11,74,0.3775437036616695],[121,-11,75,0.382123045458483],[121,-11,76,0.3869913769311931],[121,-11,77,0.39212609966886275],[121,-11,78,0.39749697808373863],[121,-11,79,0.40306677381201883],[121,-10,64,0.3429941737285523],[121,-10,65,0.34500135772282464],[121,-10,66,0.34715975928175],[121,-10,67,0.3494824301790277],[121,-10,68,0.351998360605972],[121,-10,69,0.3547450913716337],[121,-10,70,0.3577545250361136],[121,-10,71,0.3610517719453735],[121,-10,72,0.3646544728973063],[121,-10,73,0.3685723090553552],[121,-10,74,0.37280669903637487],[121,-10,75,0.3773506827259092],[121,-10,76,0.38218899100596215],[121,-10,77,0.3872983002212353],[121,-10,78,0.3926476698641176],[121,-10,79,0.3981991616291152],[121,-9,64,0.33898696835920256],[121,-9,65,0.3408425661829738],[121,-9,66,0.3428707310544693],[121,-9,67,0.34508231892179675],[121,-9,68,0.3475031047533176],[121,-9,69,0.35016798877416666],[121,-9,70,0.3531066432958824],[121,-9,71,0.35634229179604504],[121,-9,72,0.35989097962603933],[121,-9,73,0.3637610369487868],[121,-9,74,0.36795273381797977],[121,-9,75,0.37245812692429336],[121,-9,76,0.3772610971538366],[121,-9,77,0.3823375767333927],[121,-9,78,0.387655964380305],[121,-9,79,0.3931777265349821],[121,-8,64,0.3348285196531042],[121,-8,65,0.33653735391307493],[121,-8,66,0.3384402680370871],[121,-8,67,0.340545817633361],[121,-8,68,0.3428762905745552],[121,-8,69,0.34546357565890273],[121,-8,70,0.3483347606859864],[121,-8,71,0.35151085846403357],[121,-8,72,0.35500603546069237],[121,-8,73,0.358827035906888],[121,-8,74,0.3629728012478543],[121,-8,75,0.3674342844401903],[121,-8,76,0.37219445820476516],[121,-8,77,0.3772285159662435],[121,-8,78,0.3825042638454982],[121,-8,79,0.38798270172406557],[121,-7,64,0.33052162690226],[121,-7,65,0.3320885369967788],[121,-7,66,0.33387080346896675],[121,-7,67,0.3358745882573827],[121,-7,68,0.338118473635088],[121,-7,69,0.3406310276872015],[121,-7,70,0.34343645364942427],[121,-7,71,0.34655327761393667],[121,-7,72,0.34999354603235744],[121,-7,73,0.3537622200105986],[121,-7,74,0.3578567662709288],[121,-7,75,0.3622669442557804],[121,-7,76,0.3669747884536526],[121,-7,77,0.3719547846436354],[121,-7,78,0.3771742383862426],[121,-7,79,0.3825938337372388],[121,-6,64,0.3260687631389246],[121,-6,65,0.32749845814470935],[121,-6,66,0.3291641489363669],[121,-6,67,0.331069523580755],[121,-6,68,0.3332293002353768],[121,-6,69,0.33566848827122137],[121,-6,70,0.3384081698631639],[121,-6,71,0.3414641646510641],[121,-6,72,0.34484620772914404],[121,-6,73,0.34855732380654064],[121,-6,74,0.3525933973951389],[121,-6,75,0.3569429384784136],[121,-6,76,0.36158704271954284],[121,-6,77,0.36649954488223324],[121,-6,78,0.37164736376821766],[121,-6,79,0.37699103662399186],[121,-5,64,0.32147145917619485],[121,-5,65,0.32276838702737937],[121,-5,66,0.32432092655014744],[121,-5,67,0.32613022687106197],[121,-5,68,0.3282070486041034],[121,-5,69,0.3305726833141759],[121,-5,70,0.3332449264150793],[121,-5,71,0.33623673414865],[121,-5,72,0.3395553941513471],[121,-5,73,0.343201889586784],[121,-5,74,0.3471704566815445],[121,-5,75,0.3514483351017212],[121,-5,76,0.35601571021487366],[121,-5,77,0.36084584590021795],[121,-5,78,0.3659054062034838],[121,-5,79,0.37115496378473006],[121,-4,64,0.31672988089457244],[121,-4,65,0.31789811062997464],[121,-4,66,0.3193401861710606],[121,-4,67,0.32105466964400936],[121,-4,68,0.32304833907400327],[121,-4,69,0.3253386932662165],[121,-4,70,0.3279401509505281],[121,-4,71,0.3308627151818969],[121,-4,72,0.33411114876451004],[121,-4,73,0.33768433867789877],[121,-4,74,0.3415748493247553],[121,-4,75,0.3457686640268873],[121,-4,76,0.35024511380976897],[121,-4,77,0.3549769921411346],[121,-4,78,0.3599308539295987],[121,-4,79,0.36506749674797173],[121,-3,64,0.3118426041281315],[121,-3,65,0.3128857178735761],[121,-3,66,0.31421921178354945],[121,-3,67,0.3158390314824278],[121,-3,68,0.31774801694334215],[121,-3,69,0.31995988593674013],[121,-3,70,0.32248566892205116],[121,-3,71,0.3253323953506965],[121,-3,72,0.32850228613915006],[121,-3,73,0.33199212869811556],[121,-3,74,0.3357928343216479],[121,-3,75,0.3398891773574054],[121,-3,76,0.3442597152039951],[121,-3,77,0.3488768878170844],[121,-3,78,0.3537072950571046],[121,-3,79,0.3587121498804246],[121,-2,64,0.3068065917242836],[121,-2,65,0.30772758297022645],[121,-2,66,0.30895352133912785],[121,-2,67,0.3104777260405092],[121,-2,68,0.3122992119246294],[121,-2,69,0.31442801368390894],[121,-2,70,0.31687184023205783],[121,-2,71,0.3196347964008553],[121,-2,72,0.32271660426093546],[121,-2,73,0.3261119987992377],[121,-2,74,0.32981029774308485],[121,-2,75,0.33379514495275275],[121,-2,76,0.3380444264437199],[121,-2,77,0.3425303577498955],[121,-2,78,0.347219741004416],[121,-2,79,0.3520743897973494],[121,-1,64,0.30161737749141054],[121,-1,65,0.30241855212367214],[121,-1,66,0.3035370645344594],[121,-1,67,0.3049636175058384],[121,-1,68,0.3066935782113434],[121,-1,69,0.30873347871736356],[121,-1,70,0.31108784865549827],[121,-1,71,0.31375798442890374],[121,-1,72,0.3167412104448479],[121,-1,73,0.3200303049307559],[121,-1,74,0.32361309011205674],[121,-1,75,0.3274721861801873],[121,-1,76,0.331584928136479],[121,-1,77,0.3359234442655419],[121,-1,78,0.3404548946744259],[121,-1,79,0.34514186803332964],[121,0,64,0.29626946180786534],[121,0,65,0.2969523382528307],[121,0,66,0.2979626230565817],[121,0,67,0.2992884318571794],[121,0,68,0.3009217192531859],[121,0,69,0.3028657703008491],[121,0,70,0.3051221474682328],[121,0,71,0.3076895176794253],[121,0,72,0.3105629633932212],[121,0,73,0.31373344714999346],[121,0,74,0.31718742935569905],[121,0,75,0.3209066387433343],[121,0,76,0.3248679946306486],[121,0,77,0.3290436797815759],[121,0,78,0.3334013623816969],[121,0,79,0.3379045653569524],[121,1,64,0.2907569220996502],[121,1,65,0.29132212614198955],[121,1,66,0.29222241509211694],[121,1,67,0.293443364285814],[121,1,68,0.2949737983428267],[121,1,69,0.2968140748573661],[121,1,70,0.2989630623499111],[121,1,71,0.3014170332388337],[121,1,72,0.30416903310724963],[121,1,73,0.30720839126413046],[121,1,74,0.3105203723616073],[121,1,75,0.3140859685257224],[121,1,76,0.3178818311600525],[121,1,77,0.3218803412934655],[121,1,78,0.3260498170686429],[121,1,79,0.33035485670846865],[121,2,64,0.2850742403351066],[121,2,65,0.28552138875736915],[121,2,66,0.2863089040106232],[121,2,67,0.28741988237267424],[121,2,68,0.2888403347401801],[121,2,69,0.2905680592646583],[121,2,70,0.29259955281798294],[121,2,71,0.2949289752374535],[121,2,72,0.2975475829838197],[121,2,73,0.30044329119690194],[121,2,74,0.3036003639062667],[121,2,75,0.3069992318756469],[121,2,76,0.3106164372875011],[121,2,77,0.31442470421092567],[121,2,78,0.31839313354566806],[121,2,79,0.32248752089858984],[121,3,64,0.2792173703650352],[121,3,65,0.27954494561531124],[121,3,66,0.2802158472135639],[121,3,67,0.28121076335217754],[121,3,68,0.2825132233745962],[121,3,69,0.2841188624370773],[121,3,70,0.28602216167359423],[121,3,71,0.2882154857591773],[121,3,72,0.2906885843848267],[121,3,73,0.29342820889780014],[121,3,74,0.2964178438633071],[121,3,75,0.29963755305190015],[121,3,76,0.3030639391111685],[121,3,77,0.30667021594309374],[121,3,78,0.3104263925830503],[121,3,79,0.3142995671639515],[121,4,64,0.27318503065355204],[121,4,65,0.2733902405153336],[121,4,66,0.27393955646485285],[121,4,67,0.2748113329340257],[121,4,68,0.27598694388427863],[121,4,69,0.2774602614904572],[121,4,70,0.27922412165007576],[121,4,71,0.28126943298298296],[121,4,72,0.28358474602426326],[121,4,73,0.28615592445254334],[121,4,74,0.288965918112393],[121,4,75,0.2919946373649542],[121,4,76,0.2952189280819454],[121,4,77,0.29861264638693524],[121,4,78,0.3021468320474566],[121,4,79,0.30578997923291246],[121,5,64,0.2669802270647919],[121,5,65,0.2670588436719096],[121,5,66,0.26748037523497925],[121,5,67,0.26822091179860846],[121,5,68,0.2692599657148692],[121,5,69,0.27059001977880515],[121,5,70,0.27220262702598075],[121,5,71,0.274087584651832],[121,5,72,0.2762325664254658],[121,5,73,0.2786228445991983],[121,5,74,0.281241101081109],[121,5,75,0.2840673274395396],[121,5,76,0.2870788131151706],[121,5,77,0.2902502210299881],[121,5,78,0.2935537496061214],[121,5,79,0.29695938004165295],[121,6,64,0.2606120136567629],[121,6,65,0.2605581875652385],[121,6,66,0.26084438329339166],[121,6,67,0.2614444804746433],[121,6,68,0.2623363600175167],[121,6,69,0.26351142710431313],[121,6,70,0.2649602795719024],[121,6,71,0.26667193479725604],[121,6,72,0.2686335154212605],[121,6,73,0.27083001315673694],[121,6,74,0.2732441304654121],[121,6,75,0.2758561997141935],[121,6,76,0.27864417925119705],[121,6,77,0.28158372567828527],[121,6,78,0.2846483414422209],[121,6,79,0.2878095967211391],[121,7,64,0.25409940132408276],[121,7,65,0.2539059218661147],[121,7,66,0.254048131928022],[121,7,67,0.2544977647689376],[121,7,68,0.2552312341552395],[121,7,69,0.25623909411943696],[121,7,70,0.2575112570846792],[121,7,71,0.25903625747304254],[121,7,72,0.26080097599740754],[121,7,73,0.2627904322029948],[121,7,74,0.26498764507255435],[121,7,75,0.2673735613553822],[121,7,76,0.26992705113041754],[121,7,77,0.2726249699692187],[121,7,78,0.275442286928268],[121,7,79,0.2783522774718091],[121,8,64,0.24747470428134424],[121,8,65,0.2471351164106434],[121,8,66,0.24712548801531317],[121,8,67,0.2474156398344297],[121,8,68,0.24798074574827417],[121,8,69,0.24881070315529652],[121,8,70,0.24989496372474926],[121,8,71,0.2512218221563585],[121,8,72,0.2527781669361316],[121,8,73,0.25454929090691303],[121,8,74,0.2565187615055627],[121,8,75,0.2586683503823646],[121,8,76,0.2609780219853097],[121,8,77,0.26342598056367794],[121,8,78,0.2659887749243262],[121,8,79,0.26864146016013135],[121,9,64,0.24076725939827984],[121,9,65,0.24027650382543334],[121,9,66,0.24010860735712272],[121,9,67,0.24023189327840247],[121,9,68,0.24062060864781346],[121,9,69,0.2412641758580537],[121,9,70,0.2421517728166971],[121,9,71,0.24327164210616845],[121,9,72,0.24461086087250358],[121,9,73,0.2461551631334372],[121,9,74,0.24788881439941127],[121,9,75,0.24979453838017723],[121,9,76,0.2518534954314979],[121,9,77,0.25404531228229904],[121,9,78,0.2563481624748666],[121,9,79,0.25873889684894213],[121,10,64,0.23400097711611265],[121,10,65,0.2333553681706243],[121,10,66,0.2330242283651919],[121,10,67,0.23297493347083853],[121,10,68,0.23318117726808577],[121,10,69,0.23363207210596482],[121,10,70,0.23431667045959662],[121,10,71,0.23522329580665996],[121,10,72,0.2363393287903381],[121,10,73,0.2376510390887017],[121,10,74,0.23914346292537197],[121,10,75,0.24080032604941337],[121,10,76,0.24260401190769537],[121,10,77,0.24453557463160436],[121,10,78,0.2465747963642369],[121,10,79,0.24870028836352168],[121,11,64,0.22719695141990642],[121,11,65,0.22639415712008074],[121,11,66,0.22589626288578848],[121,11,67,0.2256703362210325],[121,11,68,0.22568992569689922],[121,11,69,0.2259439762901751],[121,11,70,0.22642152251472938],[121,11,71,0.2271110477019682],[121,11,72,0.22800028775094133],[121,11,73,0.22907607418800877],[121,11,74,0.23032421650807142],[121,11,75,0.2317294236760269],[121,11,76,0.2332752645754467],[121,11,77,0.23494416710251365],[121,11,78,0.23671745551915416],[121,11,79,0.23857542559937336],[121,12,64,0.2203763655059175],[121,12,65,0.21941538557488638],[121,12,66,0.21874867186588176],[121,12,67,0.21834366704749023],[121,12,68,0.2181741903434636],[121,12,69,0.21822913226287213],[121,12,70,0.21849757265791267],[121,12,71,0.21896817981903893],[121,12,72,0.2196290369884082],[121,12,73,0.2204675017129318],[121,12,74,0.22147009803913323],[121,12,75,0.2226224414727464],[121,12,76,0.22390919654788585],[121,12,77,0.22531406677460758],[121,12,78,0.22681981666180387],[121,12,79,0.2284083254437827],[121,13,64,0.21356369870165304],[121,13,65,0.21244483611162482],[121,13,66,0.21160863107071637],[121,13,67,0.21102358399966958],[121,13,68,0.21066418075378207],[121,13,69,0.21051933117019356],[121,13,70,0.21057817521372424],[121,13,71,0.21082953741030375],[121,13,72,0.21126178483744015],[121,13,73,0.21186271098615145],[121,13,74,0.21261944551793546],[121,13,75,0.21351838987670727],[121,13,76,0.21454517865266762],[121,13,77,0.21568466653355606],[121,13,78,0.2169209406206464],[121,13,79,0.21823735783113368],[121,14,64,0.20679024145213112],[121,14,65,0.2055150630692897],[121,14,66,0.20450999358975605],[121,14,67,0.20374522763170108],[121,14,68,0.20319626497927235],[121,14,69,0.20285205825994537],[121,14,70,0.2027017684837675],[121,14,71,0.2027342938690629],[121,14,72,0.20293817120895022],[121,14,73,0.2033014951681554],[121,14,74,0.20381185554554077],[121,14,75,0.20445629249248395],[121,14,76,0.20522126963210635],[121,14,77,0.20609266498003728],[121,14,78,0.20705577952568657],[121,14,79,0.20809536329273112],[121,15,64,0.20009801112020761],[121,15,65,0.19866910760333492],[121,15,66,0.19749669821493024],[121,15,67,0.1965532218020961],[121,15,68,0.1958154725289531],[121,15,69,0.19527242239302386],[121,15,70,0.19491317406945982],[121,15,71,0.19472658480041868],[121,15,72,0.19470122462775646],[121,15,73,0.1948253432455451],[121,15,74,0.19508684551140373],[121,15,75,0.19547327563239816],[121,15,76,0.1959718100176166],[121,15,77,0.19656925876595915],[121,15,78,0.19725207573582879],[121,15,79,0.19800637712188607],[121,16,64,0.1935291228195458],[121,16,65,0.1919493215927222],[121,16,66,0.19061091394329038],[121,16,67,0.18948903842630915],[121,16,68,0.1885620239794246],[121,16,69,0.18781884830255782],[121,16,70,0.18724850836760407],[121,16,71,0.18683975604336991],[121,16,72,0.18658112338525437],[121,16,73,0.18646094599467133],[121,16,74,0.18646738448652805],[121,16,75,0.1865884441052522],[121,16,76,0.1868119925309848],[121,16,77,0.1871257759179018],[121,16,78,0.18751743320768804],[121,16,79,0.18797450876132407],[121,17,64,0.18710317922264738],[121,17,65,0.1853753513875308],[121,17,66,0.18387201841804984],[121,17,67,0.1825713819935391],[121,17,68,0.18145351444250757],[121,17,69,0.1805074096198975],[121,17,70,0.17972195623777057],[121,17,71,0.17908579694392532],[121,17,72,0.17858742691846385],[121,17,73,0.17821527902427592],[121,17,74,0.177957795548418],[121,17,75,0.1778034866016244],[121,17,76,0.17774097527163518],[121,17,77,0.17775902965276263],[121,17,78,0.17784658190041197],[121,17,79,0.1779927344832657],[121,18,64,0.18081703970507587],[121,18,65,0.17894408408505727],[121,18,66,0.17727679651643888],[121,18,67,0.17579671440817793],[121,18,68,0.17448582916863487],[121,18,69,0.17333318375916756],[121,18,70,0.17232759410330745],[121,18,71,0.1714576388431971],[121,18,72,0.17071183415060792],[121,18,73,0.17007878288841133],[121,18,74,0.16954729815998149],[121,18,75,0.169106501344282],[121,18,76,0.16874589477201096],[121,18,77,0.16845540925306732],[121,18,78,0.16822542671875113],[121,18,79,0.16804677829145542],[121,19,64,0.17289066040500448],[121,19,65,0.1716646208495718],[121,19,66,0.17046473730689576],[121,19,67,0.16914260528132366],[121,19,68,0.16763639672987266],[121,19,69,0.1662733808599751],[121,19,70,0.1650423678919692],[121,19,71,0.16393195636612581],[121,19,72,0.1629307842619745],[121,19,73,0.16202774185550073],[121,19,74,0.16121214635557976],[121,19,75,0.160473878452527],[121,19,76,0.15980348099960154],[121,19,77,0.15919222013236606],[121,19,78,0.15863210921178103],[121,19,79,0.15811589605243495],[121,20,64,0.1614248915781114],[121,20,65,0.16001512888172228],[121,20,66,0.15865122362342002],[121,20,67,0.1573481842312677],[121,20,68,0.15612179534211162],[121,20,69,0.15498314816969463],[121,20,70,0.15394224397130432],[121,20,71,0.15300781728798712],[121,20,72,0.1521870894697115],[121,20,73,0.1514855717504341],[121,20,74,0.15090691782253],[121,20,75,0.15045282573834792],[121,20,76,0.15012298884777106],[121,20,77,0.14991509536600053],[121,20,78,0.14903808627371415],[121,20,79,0.14817369249441456],[121,21,64,0.14966277391570346],[121,21,65,0.14806517490325602],[121,21,66,0.14653451768712536],[121,21,67,0.1450823669158504],[121,21,68,0.14372249461008982],[121,21,69,0.1424659954945534],[121,21,70,0.1413229707694802],[121,21,71,0.1403022191890691],[121,21,72,0.13941091814654283],[121,21,73,0.13865436697380445],[121,21,74,0.13803579239271666],[121,21,75,0.13755621590174982],[121,21,76,0.13721438273231565],[121,21,77,0.13700675186514963],[121,21,78,0.1369275464613564],[121,21,79,0.13696886393472452],[121,22,64,0.13766987048332807],[121,22,65,0.13588039384450387],[121,22,66,0.13417999694783697],[121,22,67,0.1325768639671408],[121,22,68,0.1310827169363954],[121,22,69,0.12970855444961038],[121,22,70,0.12846445136726997],[121,22,71,0.127359124401539],[121,22,72,0.12639954648249366],[121,22,73,0.12559063561426734],[121,22,74,0.1249350181416348],[121,22,75,0.12443286616354157],[121,22,76,0.12408180865097145],[121,22,77,0.12387691565419429],[121,22,78,0.12381075482185352],[121,22,79,0.12387351930128435],[121,23,64,0.1255175963435541],[121,23,65,0.12353232627045463],[121,23,66,0.12165894006411286],[121,23,67,0.119902379853704],[121,23,68,0.11827231604018973],[121,23,69,0.11677954234009232],[121,23,70,0.11543397173029571],[121,23,71,0.11424408578443161],[121,23,72,0.11321648930652581],[121,23,73,0.11235555109876227],[121,23,74,0.11166313076394398],[121,23,75,0.11113839122993834],[121,23,76,0.11077769647607841],[121,23,77,0.11057459374222198],[121,23,78,0.11051987931321962],[121,23,79,0.1106017467948714],[121,24,64,0.11328030513065167],[121,24,65,0.1110955077532722],[121,24,66,0.10904563974789343],[121,24,67,0.10713260916748524],[121,24,68,0.10536406818586311],[121,24,69,0.10375049094882606],[121,24,70,0.10230148834778097],[121,24,71,0.10102515257978102],[121,24,72,0.0999275600172873],[121,24,73,0.09901237100233358],[121,24,74,0.09828052644313563],[121,24,75,0.0977300408506597],[121,24,76,0.0973558912191831],[121,24,77,0.09715000093070889],[121,24,78,0.09710131765173546],[121,24,79,0.09719598399252906],[121,25,64,0.10103251217986382],[121,25,65,0.09864469193672207],[121,25,66,0.09641464501065382],[121,25,67,0.09434151638791623],[121,25,68,0.09243100726366572],[121,25,69,0.0906931547790562],[121,25,70,0.08913712713688134],[121,25,71,0.08777047673568455],[121,25,72,0.08659859997092016],[121,25,73,0.08562430369704235],[121,25,74,0.08484747820437812],[121,25,75,0.08426487629945498],[121,25,76,0.08386999782034874],[121,25,77,0.08365307867202293],[121,25,78,0.08360118323428041],[121,25,79,0.08369839877721971],[121,26,64,0.08884625640164395],[121,26,65,0.08625220933363831],[121,26,66,0.08383813467591807],[121,26,67,0.0816007409397611],[121,26,68,0.07954387762084468],[121,26,69,0.07767702787753973],[121,26,70,0.07600878014175831],[121,26,71,0.0745460046964256],[121,26,72,0.07329327959264367],[121,26,73,0.07225243173771065],[121,26,74,0.07142219298298208],[121,26,75,0.07079797075377775],[121,26,76,0.07037173248577082],[121,26,77,0.07013200286617963],[121,26,78,0.07006397262753224],[121,26,79,0.07014971740733983],[121,27,64,0.07678860329906712],[121,27,65,0.07398546411146278],[121,27,66,0.07138342424081752],[121,27,67,0.06897712942575956],[121,27,68,0.06676870629302764],[121,27,69,0.064766970626636],[121,27,70,0.06297980112683214],[121,27,71,0.06141325544425232],[121,27,72,0.060070971660071706],[121,27,73,0.05895369207860298],[121,27,74,0.058058909136729155],[121,27,75,0.05738063292958498],[121,27,76,0.05690927955681496],[121,27,77,0.05663167921133403],[121,27,78,0.05653120266686769],[121,27,79,0.056588004572337244],[121,28,64,0.06491929177211068],[121,28,65,0.061904571372887185],[121,28,66,0.059110608425482616],[121,28,67,0.05653039717273236],[121,28,68,0.05416449654181667],[121,28,69,0.05202094814568147],[121,28,70,0.050106801406981975],[121,28,71,0.048427185808715294],[121,28,72,0.04698469742158188],[121,28,73,0.045778913410621624],[121,28,74,0.04480603430201319],[121,28,75,0.044058653471477624],[121,28,76,0.043525653006943756],[121,28,77,0.043192224802925054],[121,28,78,0.04304001546663384],[121,28,79,0.04304739335703106],[121,29,64,0.053288527626781886],[121,29,65,0.05006013771984319],[121,29,66,0.047070342034641686],[121,29,67,0.04431092151698858],[121,29,68,0.04178104489024324],[121,29,69,0.039487882222685566],[121,29,70,0.03743754752953477],[121,29,71,0.03563414431889398],[121,29,72,0.03407914645576611],[121,29,73,0.03277091113048978],[121,29,74,0.03170432369081705],[121,29,75,0.030870573766842047],[121,29,76,0.030257061799301096],[121,29,77,0.029847434777390252],[121,29,78,0.029621749706528266],[121,29,79,0.02955676306029517],[121,30,64,0.04193494313485132],[121,30,65,0.03849120501383792],[121,30,66,0.03530177957058252],[121,30,67,0.03235768775172353],[121,30,68,0.02965690301757761],[121,30,69,0.02720563852994412],[121,30,70,0.025008982906766064],[121,30,71,0.023069935996664133],[121,30,72,0.02138879292645042],[121,30,73,0.019962662813419598],[121,30,74,0.018785121882416773],[121,30,75,0.017846000391096788],[121,30,76,0.017131302442051504],[121,30,77,0.01662325745064431],[121,30,78,0.016300501746877402],[121,30,79,0.016138388519347614],[121,31,64,0.030888007829504356],[121,31,65,0.02722782212530165],[121,31,66,0.02383531684654366],[121,31,67,0.020701208069845656],[121,31,68,0.017822480339992078],[121,31,69,0.015204318635352114],[121,31,70,0.01285071457658331],[121,31,71,0.010763508708593935],[121,31,72,0.00894178586341496],[121,31,73,0.007381406208440652],[121,31,74,0.006074671703791933],[121,31,75,0.005010127353343346],[121,31,76,0.0041724963069652374],[121,31,77,0.0035427475598687774],[121,31,78,0.003098294703075826],[121,31,79,0.0028133239078890642],[121,32,64,0.020172571419624856],[121,32,65,0.016295807761634466],[121,32,66,0.012697580519930838],[121,32,67,0.009368743014468791],[121,32,68,0.006305501283466934],[121,32,69,0.003511956347715811],[121,32,70,9.909513357332696E-4],[121,32,71,-0.0012568646630446885],[121,32,72,-0.003233622809268111],[121,32,73,-0.0049446854809687205],[121,32,74,-0.00639896228615772],[121,32,75,-0.007609091747832224],[121,32,76,-0.008591489614120993],[121,32,77,-0.009366265056348874],[121,32,78,-0.009957006307785597],[121,32,79,-0.0103904375648371],[121,33,64,0.009799237229282292],[121,33,65,0.0057067337381206465],[121,33,66,0.001901030007739217],[121,33,67,-0.00162647004128888],[121,33,68,-0.004880132398702159],[121,33,69,-0.0078569788496011],[121,33,70,-0.010555344236840944],[121,33,71,-0.012975777808925991],[121,33,72,-0.015121605265573467],[121,33,73,-0.016999357329073386],[121,33,74,-0.018619065139187672],[121,33,75,-0.019994423102903877],[121,33,76,-0.02114282015134862],[121,33,77,-0.02208524066149663],[121,33,78,-0.022846036585500835],[121,33,79,-0.02345257259462877],[121,34,64,-2.3841921905587253E-4],[121,34,65,-0.004544947775597356],[121,34,66,-0.00855900135370551],[121,34,67,-0.012288257889808366],[121,34,68,-0.015737461931364716],[121,34,69,-0.018904778989950216],[121,34,70,-0.021789727577196688],[121,34,71,-0.02439403505097852],[121,34,72,-0.026722171531336943],[121,34,73,-0.028781753243851987],[121,34,74,-0.03058381559218536],[121,34,75,-0.03214295658767275],[121,34,76,-0.033477351577435546],[121,34,77,-0.03460864051048688],[121,34,78,-0.03556168925927325],[121,34,79,-0.036364226771187474],[121,35,64,-0.009965071372477494],[121,35,65,-0.01448316035418233],[121,35,66,-0.018705594266772388],[121,35,67,-0.022638829686227324],[121,35,68,-0.02628781957128188],[121,35,69,-0.029651875713841848],[121,35,70,-0.032731680644894096],[121,35,71,-0.03553009056528994],[121,35,72,-0.038052639409586975],[121,35,73,-0.040307916109755274],[121,35,74,-0.04230781535866504],[121,35,75,-0.044067662489812864],[121,35,76,-0.045606213393866384],[121,35,77,-0.04694553068134336],[121,35,78,-0.04811073756970122],[121,35,79,-0.04912965122153785],[121,36,64,-0.01942468577718741],[121,36,65,-0.024151286465395157],[121,36,66,-0.02858136443356943],[121,36,67,-0.03271993602660611],[121,36,68,-0.036572027425680026],[121,36,69,-0.040138081086958],[121,36,70,-0.04341989718785515],[121,36,71,-0.0464213803653615],[121,36,72,-0.04914901498661992],[121,36,73,-0.05161221793111709],[121,36,74,-0.053823569175281735],[121,36,75,-0.05579892077591904],[121,36,76,-0.05755738514236442],[121,36,77,-0.059121203765637016],[121,36,78,-0.060515497831861574],[121,36,79,-0.06176790238617165],[121,37,64,-0.028681383759134434],[121,37,65,-0.03361307231539641],[121,37,66,-0.03824941127807337],[121,37,67,-0.04259386383329644],[121,37,68,-0.04665144218955098],[121,37,69,-0.05042368659024658],[121,37,70,-0.05391344056292626],[121,37,71,-0.057125543263541106],[121,37,72,-0.06006728041624781],[121,37,73,-0.06274871721008987],[121,37,74,-0.06518291342468524],[121,37,75,-0.0673860213515978],[121,37,76,-0.06937726736076087],[121,37,77,-0.07117881822935543],[121,37,78,-0.06903161315630849],[121,37,79,-0.06336585200628954],[121,38,64,-0.03781760634467964],[121,38,65,-0.04295079881703924],[121,38,66,-0.04779150765110001],[121,38,67,-0.0523416527268826],[121,38,68,-0.056606205849433794],[121,38,69,-0.06058775900886722],[121,38,70,-0.06429009836008694],[121,38,71,-0.0677188498795906],[121,38,72,-0.0708819144563587],[121,38,73,-0.07378978904738417],[121,38,74,-0.07645577413862166],[121,38,75,-0.0775584211684939],[121,38,76,-0.07208117169955741],[121,38,77,-0.06655253890636224],[121,38,78,-0.06100107496880451],[121,38,79,-0.05545717841150963],[121,39,64,-0.04687949400384708],[121,39,65,-0.05220982328093133],[121,39,66,-0.057252017399881505],[121,39,67,-0.06200647032665533],[121,39,68,-0.06614804643567689],[121,39,69,-0.06949101272907468],[121,39,70,-0.07263746827535211],[121,39,71,-0.07559116500319013],[121,39,72,-0.07835757380224634],[121,39,73,-0.07600034277503111],[121,39,74,-0.07031128170705364],[121,39,75,-0.06459061630023016],[121,39,76,-0.058858072984113975],[121,39,77,-0.05313534584059021],[121,39,78,-0.04744589294853914],[121,39,79,-0.04181462706806036],[121,40,64,-0.05586942143163017],[121,40,65,-0.06018001297270751],[121,40,66,-0.0641281641452266],[121,40,67,-0.06787265859822766],[121,40,68,-0.07141711228224457],[121,40,69,-0.07476460979158638],[121,40,70,-0.07791866105332244],[121,40,71,-0.0735603998437771],[121,40,72,-0.06786238306455591],[121,40,73,-0.06210569132692565],[121,40,74,-0.05630622281538374],[121,40,75,-0.050481720055410406],[121,40,76,-0.04465179621818919],[121,40,77,-0.03883785586485316],[121,40,78,-0.03306291126709215],[121,40,79,-0.027351295652202623],[121,41,64,-0.06109270347167858],[121,41,65,-0.06523155455866031],[121,41,66,-0.06917247408081238],[121,41,67,-0.07291165367832168],[121,41,68,-0.07645283156294065],[121,41,69,-0.0712805138574844],[121,41,70,-0.06561154466162146],[121,41,71,-0.059863274032577525],[121,41,72,-0.05404907740282322],[121,41,73,-0.048183525771076666],[121,41,74,-0.042282643778277645],[121,41,75,-0.03636406304478087],[121,41,76,-0.03044707134239455],[121,41,77,-0.024552558416336297],[121,41,78,-0.01870285949943842],[121,41,79,-0.012921497769758934],[121,42,64,-0.06596448959877751],[121,42,65,-0.07008232576541515],[121,42,66,-0.07400699448434789],[121,42,67,-0.06913681697342841],[121,42,68,-0.06352585532722141],[121,42,69,-0.05781603784928086],[121,42,70,-0.05202089180131049],[121,42,71,-0.04615393701003198],[121,42,72,-0.0402291766797973],[121,42,73,-0.03426148522191978],[121,42,74,-0.028266893057401873],[121,42,75,-0.022262768614008104],[121,42,76,-0.01626789799124501],[121,42,77,-0.01030246300613124],[121,42,78,-0.004387918558392114],[121,42,79,0.0014532295383337893],[121,43,64,-0.07065660088733434],[121,43,65,-0.06711205337854381],[121,43,66,-0.0615937448107184],[121,43,67,-0.055954081290122484],[121,43,68,-0.05020565024858946],[121,43,69,-0.044364429042289856],[121,43,70,-0.038445415734818765],[121,43,71,-0.032463166880979534],[121,43,72,-0.026432319007249214],[121,43,73,-0.0203680088907913],[121,43,74,-0.014286192485774606],[121,43,75,-0.008203862608063914],[121,43,76,-0.0021391657405319103],[121,43,77,0.003888581440297411],[121,43,78,0.009858974990040998],[121,43,79,0.015750705040069958],[121,44,64,-0.05980717763401418],[121,44,65,-0.05425868959850464],[121,44,66,-0.04859416750203063],[121,44,67,-0.04281260786988828],[121,44,68,-0.03692695822650114],[121,44,69,-0.030955286073840727],[121,44,70,-0.024914204379237647],[121,44,71,-0.018819394333604734],[121,44,72,-0.012686164005803049],[121,44,73,-0.006529907340726457],[121,44,74,-3.66463230233878E-4],[121,44,75,0.005787625352720277],[121,44,76,0.0119149519157376],[121,44,77,0.01799718622485517],[121,44,78,0.02401511259284321],[121,44,79,0.029948765762330513],[121,45,64,-0.04717032806897738],[121,45,65,-0.0414687894168863],[121,45,66,-0.035658070693341294],[121,45,67,-0.02973489611865721],[121,45,68,-0.023712640785428403],[121,45,69,-0.017611670043389496],[121,45,70,-0.011450369925838286],[121,45,71,-0.005245655384664161],[121,45,72,9.864291374782341E-4],[121,45,73,0.007230207350471418],[121,45,74,0.013469967375503529],[121,45,75,0.019689656758657338],[121,45,76,0.02587267612801657],[121,45,77,0.0320017711438201],[121,45,78,0.03805902216364869],[121,45,79,0.044025930832845145],[121,46,64,-0.03460465973415547],[121,46,65,-0.028751068161580462],[121,46,66,-0.0227953823086533],[121,46,67,-0.016731962324723095],[121,46,68,-0.010574702753247584],[121,46,69,-0.004346474362717862],[121,46,70,0.0019323976395503222],[121,46,71,0.00824364059380403],[121,46,72,0.014570388987341686],[121,46,73,0.020896635770158205],[121,46,74,0.02720678092304976],[121,46,75,0.03348527755443389],[121,46,76,0.03971637555143465],[121,46,77,0.045883962570915225],[121,46,78,0.05197150192717057],[121,46,79,0.057962066719053976],[121,47,64,-0.022117367262349284],[121,47,65,-0.01611423050417557],[121,47,66,-0.010016152912937663],[121,47,67,-0.0038151060133108025],[121,47,68,0.0024743806511862993],[121,47,69,0.008826731929748019],[121,47,70,0.01521951745769222],[121,47,71,0.021632975534279786],[121,47,72,0.028049321775251955],[121,47,73,0.034452152766853136],[121,47,74,0.040825945398713856],[121,47,75,0.04715565229395349],[121,47,76,0.05342639350452649],[121,47,77,0.059623244399622105],[121,47,78,0.06573111944486273],[121,47,79,0.07173475135420797],[121,48,64,-0.00976827648992907],[121,48,65,-0.003618457162084445],[121,48,66,0.002619384547556466],[121,48,67,0.008955646098538788],[121,48,68,0.015375049081635216],[121,48,69,0.021849148421911498],[121,48,70,0.028353261147866314],[121,48,71,0.03486600937602438],[121,48,72,0.04136858352762145],[121,48,73,0.047844098602924545],[121,48,74,0.05427704433296167],[121,48,75,0.060652829771018935],[121,48,76,0.06695742263684192],[121,48,77,0.07317708348644565],[121,48,78,0.07929819454974658],[121,48,79,0.08436627635739345],[121,49,64,0.002375353846082895],[121,49,65,0.008668877202785486],[121,49,66,0.01504404553229385],[121,49,67,0.021513564966784717],[121,49,68,0.028061303711400448],[121,49,69,0.034655824653489015],[121,49,70,0.041270072399168654],[121,49,71,0.047880937817280395],[121,49,72,0.05446847776212457],[121,49,73,0.06101522571133555],[121,49,74,0.06750559427895973],[121,49,75,0.0739253703085769],[121,49,76,0.08026130300337642],[121,49,77,0.08608555692637138],[121,49,78,0.09104733082866553],[121,49,79,0.0959136604947524],[121,50,64,0.014255174218025286],[121,50,65,0.02068920714772304],[121,50,66,0.027199307260032647],[121,50,67,0.033800386335922014],[121,50,68,0.040475365096849986],[121,50,69,0.04718973896354039],[121,50,70,0.053913992434657526],[121,50,71,0.06062318765620814],[121,50,72,0.06729614381858476],[121,50,73,0.0739147051635022],[121,50,74,0.08046309869602836],[121,50,75,0.08622782554479304],[121,50,76,0.09164168343116678],[121,50,77,0.09695706583034162],[121,50,78,0.10217879818797311],[121,50,79,0.10731154446170042],[121,51,64,0.025821721623882993],[121,51,65,0.03239276998592891],[121,51,66,0.03903531724268589],[121,51,67,0.045766335776460415],[121,51,68,0.05256771644715106],[121,51,69,0.05940186011312741],[121,51,70,0.06623673867937895],[121,51,71,0.07297043631890196],[121,51,72,0.07901341238500464],[121,51,73,0.08494541902246301],[121,51,74,0.0907746791368721],[121,51,75,0.09650744430657428],[121,51,76,0.10214851412377521],[121,51,77,0.10770166540647301],[121,51,78,0.11316999101571854],[121,51,79,0.11855614823102498],[121,52,64,0.034890051488466814],[121,52,65,0.04223428436035368],[121,52,66,0.049396744533125356],[121,52,67,0.056348831278257495],[121,52,68,0.06310015318713018],[121,52,69,0.06968195560876152],[121,52,70,0.07611956046102511],[121,52,71,0.0824327423939953],[121,52,72,0.08863663545431144],[121,52,73,0.09474255547864413],[121,52,74,0.10075873687776413],[121,52,75,0.10669098271621164],[121,52,76,0.11254322723278744],[121,52,77,0.11831801018195505],[121,52,78,0.12401686260222347],[121,52,79,0.1296406038349156],[121,53,64,0.04353051613208486],[121,53,65,0.050972966738775397],[121,53,66,0.058238155127566874],[121,53,67,0.06529567053699262],[121,53,68,0.07215607774204398],[121,53,69,0.07885338609121663],[121,53,70,0.08541514336917701],[121,53,71,0.09186278510043541],[121,53,72,0.09821256973086688],[121,53,73,0.10447643201272289],[121,53,74,0.1106627531491243],[121,53,75,0.11677704649333712],[121,53,76,0.12282255783472808],[121,53,77,0.12880077953517732],[121,53,78,0.13471187800339474],[121,53,79,0.14055503421034873],[121,54,64,0.05221068773788063],[121,54,65,0.059744504497680456],[121,54,66,0.06710413921402325],[121,54,67,0.07425762244282039],[121,54,68,0.08121652060179296],[121,54,69,0.08801750111529712],[121,54,70,0.09469028715558737],[121,54,71,0.10125797896978984],[121,54,72,0.10773801157064448],[121,54,73,0.11414303309451344],[121,54,74,0.12048170229023936],[121,54,75,0.12675940383721698],[121,54,76,0.13297888042363212],[121,54,77,0.1391407807442443],[121,54,78,0.14524412279794763],[121,54,79,0.15128667207893068],[121,55,64,0.06092118375268486],[121,55,65,0.06853968123317287],[121,55,66,0.07598562838811325],[121,55,67,0.08322576804310607],[121,55,68,0.0902726967437853],[121,55,69,0.09716559324374523],[121,55,70,0.10393627100108115],[121,55,71,0.11060947094701114],[121,55,72,0.11720383549732621],[121,55,73,0.12373280563925432],[121,55,74,0.13020543947884994],[121,55,75,0.13662715086402782],[121,55,76,0.1430003669266295],[121,55,77,0.1493251036115163],[121,55,78,0.1555994584782588],[121,55,79,0.16182002027190992],[121,56,64,0.06964555520724214],[121,56,65,0.07734225048901534],[121,56,66,0.08486660586910054],[121,56,67,0.09218435829334429],[121,56,68,0.09930914496320445],[121,56,69,0.10628247301832687],[121,56,70,0.11313812916959251],[121,56,71,0.11990244388092734],[121,56,72,0.12659527552888744],[121,56,73,0.13323091994691175],[121,56,74,0.13981894367517636],[121,56,75,0.14636493946208218],[121,56,76,0.1528712027871499],[121,56,77,0.1593373283955854],[121,56,78,0.16576072604872708],[121,56,79,0.17213705490236314],[121,57,64,0.07836081037741147],[121,57,65,0.08612944634832874],[121,57,66,0.09372460125816555],[121,57,67,0.10111128981980927],[121,57,68,0.10830418184732836],[121,57,69,0.11534689923186464],[121,57,70,0.12227505652184276],[121,57,71,0.1291164970371968],[121,57,72,0.1358922812062131],[121,57,73,0.14261760245703867],[121,57,74,0.14930262893481733],[121,57,75,0.15595326953557603],[121,57,76,0.16257186296707746],[121,57,77,0.1691577887630537],[121,57,78,0.1757079993872759],[121,57,79,0.18221747276820036],[121,58,64,0.08703802145310735],[121,58,65,0.09487257779335163],[121,58,66,0.10253126909547594],[121,58,67,0.10997866420644281],[121,58,68,0.11723043879964354],[121,58,69,0.12433209143813644],[121,58,70,0.1313208950088575],[121,58,71,0.138226105810942],[121,58,72,0.1450699504728692],[121,58,73,0.15186854241870937],[121,58,74,0.1586327261181446],[121,58,75,0.1653688475702256],[121,58,76,0.17207944968527705],[121,58,77,0.17876389144117974],[121,58,78,0.1854188898962262],[121,58,79,0.19203898434128772],[121,59,64,0.09564301608713503],[121,59,65,0.10353770877149672],[121,59,66,0.11125305320355192],[121,59,67,0.11875343283599253],[121,59,68,0.1260554841813432],[121,59,69,0.133206326795034],[121,59,70,0.14024470325459562],[121,59,71,0.14720116274494097],[121,59,72,0.1540990414887288],[121,59,73,0.16095537451355538],[121,59,74,0.16778173696710477],[121,59,75,0.17458501340198235],[121,59,76,0.18136809366186324],[121,59,77,0.18813049420804506],[121,59,78,0.19486890392732917],[121,59,79,0.20157765365880664],[121,60,64,0.10413715519209048],[121,60,65,0.1120864254004998],[121,60,66,0.11985193829842335],[121,60,67,0.12739812880953225],[121,60,68,0.13474253213260529],[121,60,69,0.14193362283244287],[121,60,70,0.149011410834789],[121,60,71,0.15600760145927384],[121,60,72,0.1629465649626872],[121,60,73,0.16984623897517362],[121,60,74,0.1767189620283827],[121,60,75,0.18357223658077598],[121,60,76,0.19040942015085832],[121,60,77,0.19723034337233006],[121,60,78,0.2040318539829069],[121,60,79,0.21080828595127718],[121,61,64,0.11247818750996612],[121,61,65,0.12047668082331754],[121,61,66,0.1282862793512114],[121,61,67,0.13587167639453457],[121,61,68,0.14325122848857302],[121,61,69,0.1504744965169175],[121,61,70,0.15758254756942147],[121,61,71,0.16460809373995852],[121,61,72,0.17157644716417947],[121,61,73,0.17850640925696665],[121,61,74,0.18541109234633446],[121,61,75,0.19229867210262205],[121,61,76,0.19917306936335735],[121,61,77,0.2060345601533873],[121,61,78,0.2128803128936959],[121,61,79,0.21970485198119832],[121,62,64,0.12062120482891504],[121,62,65,0.12866374181950807],[121,62,66,0.13651173302333125],[121,62,67,0.1441303025344686],[121,62,68,0.15153853852747334],[121,62,69,0.158786824544892],[121,62,70,0.16591707294040742],[121,62,71,0.17296284505988305],[121,62,72,0.17995028902763188],[121,62,73,0.18689901278033647],[121,62,74,0.19382289055099006],[121,62,75,0.20073080120370496],[121,62,76,0.20762729701809263],[121,62,77,0.21451320171745636],[121,62,78,0.221386136725186],[121,62,79,0.22824097481893313],[121,63,64,0.12851970400246898],[121,63,65,0.13660124343671953],[121,63,66,0.14448229753435515],[121,63,67,0.15212855687018603],[121,63,68,0.15955974308949633],[121,63,69,0.16682681148379064],[121,63,70,0.1739723123227254],[121,63,71,0.18103049527377904],[121,63,72,0.18802822812681885],[121,63,73,0.19498585155500697],[121,63,74,0.20191796812584592],[121,63,75,0.20883416397149024],[121,63,76,0.21573966172210537],[121,63,77,0.22263590349828816],[121,63,78,0.2295210629453796],[121,63,79,0.23639048547429065],[121,64,64,0.1361267274618117],[121,64,65,0.1442423231839813],[121,64,66,0.15215143234658438],[121,64,67,0.1598204114991249],[121,64,68,0.16726951413532795],[121,64,69,0.17455003666918328],[121,64,70,0.18170497076874048],[121,64,71,0.18876909504745976],[121,64,72,0.19576987388595826],[121,64,73,0.2027282928289439],[121,64,74,0.2096596287861145],[121,64,75,0.21657415345852601],[121,64,76,0.22347776860385],[121,64,77,0.23037257194335378],[121,64,78,0.23725735269730688],[121,64,79,0.24412801591428596],[121,65,64,0.14339609612707369],[121,65,65,0.1515408488540929],[121,65,66,0.1594732718840464],[121,65,67,0.16716045483715902],[121,65,68,0.17462308425394482],[121,65,69,0.18191259450553807],[121,65,70,0.18907223912026871],[121,65,71,0.1961371729084103],[121,65,72,0.2031353310097832],[121,65,73,0.21008824482554958],[121,65,74,0.21701179307920293],[121,65,75,0.2239168864424238],[121,65,76,0.2308100843511821],[121,65,77,0.23769414282452897],[121,65,78,0.24456849227993582],[121,65,79,0.2514296445151756],[121,66,64,0.1502837364001694],[121,66,65,0.15845274172997947],[121,66,66,0.1664039351048736],[121,66,67,0.17410518146489362],[121,66,68,0.1815775120638721],[121,66,69,0.18887233017244714],[121,66,70,0.1960329944992739],[121,66,71,0.2030948950055401],[121,66,72,0.21008631324233532],[121,66,73,0.2170292196825474],[121,66,74,0.22394000630749858],[121,66,75,0.2308301528976626],[121,66,76,0.23770682566482718],[121,66,77,0.24457340704828903],[121,66,78,0.2514299556770949],[121,66,79,0.2582735956743404],[121,67,64,0.15674910183428342],[121,67,65,0.16493739583381237],[121,67,66,0.17290293164308598],[121,67,67,0.18061437873144373],[121,67,68,0.18809304433837648],[121,67,69,0.19539017162059227],[121,67,70,0.2025490961078242],[121,67,71,0.2096053185443228],[121,67,72,0.21658734844269148],[121,67,73,0.2235174845867973],[121,67,74,0.2304125307560101],[121,67,75,0.23728444513110128],[121,67,76,0.24414092202894785],[121,67,77,0.25098590479705807],[121,67,78,0.25782002887686295],[121,67,79,0.2646409942170521],[121,68,64,0.1627566898593502],[121,68,65,0.17095919365913118],[121,68,66,0.17893466501623037],[121,68,67,0.1866526106691811],[121,68,68,0.19413457546633853],[121,68,69,0.2014315585248569],[121,68,70,0.20858677705419532],[121,68,71,0.2156357396542701],[121,68,72,0.22260707576240943],[121,68,73,0.22952330190310757],[121,68,74,0.23640152301979672],[121,68,75,0.24325406735527688],[121,68,76,0.25008905353347893],[121,68,77,0.25691088867817113],[121,68,78,0.2637206965811113],[121,68,79,0.27051667510327204],[121,69,64,0.1682776588201762],[121,69,65,0.1764891238939898],[121,69,66,0.18447003865640604],[121,69,67,0.19219080522721646],[121,69,68,0.1996732104936783],[121,69,69,0.20696797463917588],[121,69,70,0.2141181387914222],[121,69,71,0.22115914234209744],[121,69,72,0.22811964155764497],[121,69,73,0.23502226481307753],[121,69,74,0.241884302728335],[121,69,75,0.24871833167377794],[121,69,76,0.2555327692969645],[121,69,77,0.26233236090521345],[121,69,78,0.2691185957146706],[121,69,79,0.27589005214692963],[121,70,64,0.1733041978648357],[121,70,65,0.1815196573202113],[121,70,66,0.18950183112213678],[121,70,67,0.1972221199348393],[121,70,68,0.20470257699793196],[121,70,69,0.21199360726934102],[121,70,70,0.21913801455487725],[121,70,71,0.2261710869100941],[121,70,72,0.23312140776058465],[121,70,73,0.2400116034571147],[121,70,74,0.24685902553860786],[121,70,75,0.25367636616289224],[121,70,76,0.26047220535047233],[121,70,77,0.2672514888686687],[121,70,78,0.2740159357593435],[121,70,79,0.2807643746833497],[121,71,64,0.17787106402447667],[121,71,65,0.18608724962374656],[121,71,66,0.19406819544547244],[121,71,67,0.20178643871120305],[121,71,68,0.20926424523811524],[121,71,69,0.2165515192409112],[121,71,70,0.22369064038477515],[121,71,71,0.2307165626583635],[121,71,72,0.23765762043171493],[121,71,73,0.2445362706247802],[121,71,74,0.25136976924870785],[121,71,75,0.258170780769267],[121,71,76,0.26494791892742653],[121,71,77,0.27170621783441146],[121,71,78,0.2784475323346209],[121,71,79,0.2851708667998084],[121,72,64,0.18201360914824669],[121,72,65,0.19022889086604988],[121,72,66,0.19820774991893791],[121,72,67,0.2059240184635905],[121,72,68,0.2134000453253866],[121,72,69,0.22068491262892032],[121,72,70,0.22782027500915855],[121,72,71,0.23484047852873474],[121,72,72,0.24177336332963098],[121,72,73,0.24864100180538973],[121,72,74,0.2554603705428107],[121,72,75,0.2622439544704225],[121,72,76,0.269000281837684],[121,72,77,0.2757343888321154],[121,72,78,0.2824482128185135],[121,72,79,0.28914091335521125],[121,73,64,0.18576069838343692],[121,73,65,0.19397469827828936],[121,73,66,0.20195183953012213],[121,73,67,0.20966741632259572],[121,73,68,0.21714367840895862],[121,73,69,0.2244284733357482],[121,73,70,0.23156235350722568],[121,73,71,0.23857872254313195],[121,73,72,0.2455046357074351],[121,73,73,0.25236153490307217],[121,73,74,0.2591659164672703],[121,73,75,0.26592993019241756],[121,73,76,0.27266190818605146],[121,73,77,0.27936682236864285],[121,73,78,0.286046669586525],[121,73,79,0.29270078348973444],[121,74,64,0.18913695835437047],[121,74,65,0.19735018096888357],[121,74,66,0.2053268106651358],[121,74,67,0.21304376865582192],[121,74,68,0.22052299105490678],[121,74,69,0.22781062632713983],[121,74,70,0.23494570457990177],[121,74,71,0.24196031921104277],[121,74,72,0.24888042603372038],[121,74,73,0.2557265755782133],[121,74,74,0.2625145767902021],[121,74,75,0.26925609053851063],[121,74,76,0.27595915153692246],[121,74,77,0.2826286174726409],[121,74,78,0.28926654431534865],[121,74,79,0.2958724869557319],[121,75,64,0.19216499162306766],[121,75,65,0.20037847190869823],[121,75,66,0.20835625420191933],[121,75,67,0.21607703962479136],[121,75,68,0.2235622204640061],[121,75,69,0.23085576334079022],[121,75,70,0.23799474241133545],[121,75,71,0.24500956423196574],[121,75,72,0.2519247663578841],[121,75,73,0.2587597472510929],[121,75,74,0.26552942570114096],[121,75,75,0.27224482816018175],[121,75,76,0.27891360258958564],[121,75,77,0.2855404576072518],[121,75,78,0.29212752590988833],[121,75,79,0.29867465112289804],[121,76,64,0.19486755411776477],[121,76,65,0.20308252386370595],[121,76,66,0.21106321365956468],[121,76,67,0.2187902359584735],[121,76,68,0.22628420722591008],[121,76,69,0.23358643981545993],[121,76,70,0.24073162995468184],[121,76,71,0.24774813345221267],[121,76,72,0.2546587644496726],[121,76,73,0.26148152311461703],[121,76,74,0.2682302504614049],[121,76,75,0.27491520869022024],[121,76,76,0.2815435856355584],[121,76,77,0.2881199221124502],[121,76,78,0.29464646113860815],[121,76,79,0.3011234181934851],[121,77,64,0.1972696920778318],[121,77,65,0.20548726579848955],[121,77,66,0.21347235491474442],[121,77,67,0.22120758445343153],[121,77,68,0.2287125721357664],[121,77,69,0.23602553761043715],[121,77,70,0.24317841029169787],[121,77,71,0.25019716284750315],[121,77,72,0.2571026106526449],[121,77,73,0.26391113731268645],[121,77,74,0.2706353444275891],[121,77,75,0.2772846239740275],[121,77,76,0.2838656518929296],[121,77,77,0.2903828016718961],[121,77,78,0.29683847690787296],[121,77,79,0.30323336202365925],[121,78,64,0.19940083494342611],[121,78,65,0.20762171614490513],[121,78,66,0.2156120938586058],[121,78,67,0.22335666856445888],[121,78,68,0.23087385344529623],[121,78,69,0.23819838992391087],[121,78,70,0.2453591025482626],[121,78,71,0.2523792961305184],[121,78,72,0.2592775562157448],[121,78,73,0.26606847226383945],[121,78,74,0.27276328169435576],[121,78,75,0.2793704331618329],[121,78,76,0.2858960676443394],[121,78,77,0.2923444161382299],[121,78,78,0.29871811295462947],[121,78,79,0.3050184238076166],[121,79,64,0.20127730156880264],[121,79,65,0.20950159618015424],[121,79,66,0.21749753486031442],[121,79,67,0.22525193160815074],[121,79,68,0.23278182112067314],[121,79,69,0.24011814716668756],[121,79,70,0.2472863458416496],[121,79,71,0.25430681204266986],[121,79,72,0.2611957021107762],[121,79,73,0.2679656553443077],[121,79,74,0.2746264325101943],[121,79,75,0.28118546970685826],[121,79,76,0.28764834615624807],[121,79,77,0.29401916472107326],[121,79,78,0.3003008441536018],[121,79,79,0.3064953222840904],[121,80,64,0.20284900715594825],[121,80,65,0.2110762854001743],[121,80,66,0.2190782685293993],[121,80,67,0.22684396857099745],[121,80,68,0.2343889372479269],[121,80,69,0.2417400733033423],[121,80,70,0.24891916757534402],[121,80,71,0.2559434485693374],[121,80,72,0.2628263936112999],[121,80,73,0.26957845446815126],[121,80,74,0.2762076955237497],[121,80,75,0.2827203428367409],[121,80,76,0.2891212426406108],[121,80,77,0.2954142280747718],[121,80,78,0.3016023931552509],[121,80,79,0.3076882732040944],[121,81,64,0.20406456184525662],[121,81,65,0.2122936466803923],[121,81,66,0.22030212928748563],[121,81,67,0.22808134786898152],[121,81,68,0.23564533913996846],[121,81,69,0.24301678879943125],[121,81,70,0.2502136198493233],[121,81,71,0.25724963084907154],[121,81,72,0.2641353269476127],[121,81,73,0.2708786603528502],[121,81,74,0.27748567826200715],[121,81,75,0.28396107652690916],[121,81,76,0.2903086575748901],[121,81,77,0.296531691346631],[121,81,78,0.30263317824364583],[121,81,79,0.30861601329974564],[121,82,64,0.20488953172502428],[121,82,65,0.2131182570862189],[121,82,66,0.2211331811362126],[121,82,67,0.2289281178056383],[121,82,68,0.2365156215336708],[121,82,69,0.2439140814850758],[121,82,70,0.2511373793902565],[121,82,71,0.258195636425851],[121,82,72,0.2650960791334224],[121,82,73,0.2718438090941016],[121,82,74,0.27844247428212754],[121,82,75,0.28489484028608253],[121,82,76,0.29120325984831313],[121,82,77,0.29737003942834594],[121,82,78,0.3033977017417726],[121,82,79,0.3092891434614097],[121,83,64,0.20530399379603967],[121,83,65,0.21352902768680693],[121,83,66,0.22154943275825872],[121,83,67,0.22936165112665907],[121,83,68,0.2369768444401662],[121,83,69,0.24440910829142848],[121,83,70,0.2516681697977346],[121,83,71,0.25876026013064557],[121,83,72,0.26568903271312916],[121,83,73,0.27245637884603163],[121,83,74,0.2790631385448212],[121,83,75,0.2855097046512448],[121,83,76,0.29179651856392536],[121,83,77,0.2979244562046599],[121,83,78,0.30389510309991585],[121,83,79,0.30971091770891634],[121,84,64,0.20530024303403163],[121,84,65,0.21351697219953483],[121,84,66,0.22154069701704016],[121,84,67,0.22937062815394715],[121,84,68,0.23701667246824085],[121,84,69,0.24448872036905042],[121,84,70,0.251792298387569],[121,84,71,0.2589295843553224],[121,84,72,0.26590039653162106],[121,84,73,0.2727030732233754],[121,84,74,0.2793352404911631],[121,84,75,0.2857944658395414],[121,84,76,0.29207879608931964],[121,84,77,0.29818717792240623],[121,84,78,0.3041197598724783],[121,84,79,0.3098780748060753],[121,85,64,0.20488065688626195],[121,85,65,0.2130831297065656],[121,85,66,0.22110659993862836],[121,85,67,0.22895316335119764],[121,85,68,0.23663165016470528],[121,85,69,0.24414791575046246],[121,85,70,0.25150331134504766],[121,85,71,0.2584189091830949],[121,85,72,0.26525870434637444],[121,85,73,0.27209229596466167],[121,85,74,0.27891068286554227],[121,85,75,0.28570433004034207],[121,85,76,0.2920395024712166],[121,85,77,0.2981479001530543],[121,85,78,0.30406193543517224],[121,85,79,0.3097817107819167],[121,86,64,0.20405572300153935],[121,86,65,0.21223664719754357],[121,86,66,0.2202547448141315],[121,86,67,0.228115080761523],[121,86,68,0.23582561853073514],[121,86,69,0.24338842435579766],[121,86,70,0.2500230319726573],[121,86,71,0.25660646814594895],[121,86,72,0.2631902438217554],[121,86,73,0.26976939345189016],[121,86,74,0.2763388745078032],[121,86,75,0.2828928376956039],[121,86,76,0.28942402756661956],[121,86,77,0.29592331540225053],[121,86,78,0.3023793659206875],[121,86,79,0.3087784390347086],[121,87,64,0.20284223553098957],[121,87,65,0.2109930272395911],[121,87,66,0.2189990366220013],[121,87,67,0.2268683433387611],[121,87,68,0.23460827747991378],[121,87,69,0.24181896705827832],[121,87,70,0.24813778746551263],[121,87,71,0.2544531674163438],[121,87,72,0.26076370175421204],[121,87,73,0.2670687693085701],[121,87,74,0.2733675671663871],[121,87,75,0.2796582820593671],[121,87,76,0.2859374013543432],[121,87,77,0.2921991657669184],[121,87,78,0.29843516555999516],[121,87,79,0.3046340816433547],[121,88,64,0.20126166490595027],[121,88,65,0.20937254565304886],[121,88,66,0.21735817156000461],[121,88,67,0.22522964080279087],[121,88,68,0.2329938986361542],[121,88,69,0.23988167522523826],[121,88,70,0.24593358935893667],[121,88,71,0.2519700462682295],[121,88,72,0.25799400258357147],[121,88,73,0.26400930215351043],[121,88,74,0.2700195880369728],[121,88,75,0.27602736090601604],[121,88,76,0.28203318665150784],[121,88,77,0.28803505558785797],[121,88,78,0.29402789526547735],[121,88,79,0.30000323852519445],[121,89,64,0.19933870559860936],[121,89,65,0.20739884367824313],[121,89,66,0.2153542960954656],[121,89,67,0.22321914028513123],[121,89,68,0.23100019252771592],[121,89,69,0.23763594830830193],[121,89,70,0.24341632063035987],[121,89,71,0.24916703248278926],[121,89,72,0.25489534712149176],[121,89,73,0.26060961405394],[121,89,74,0.26631804646096496],[121,89,75,0.2720276545579212],[121,89,76,0.2777433380247909],[121,89,77,0.28346714020829566],[121,89,78,0.2891976663812955],[121,89,79,0.2949296679399555],[121,90,64,0.19710000599788255],[121,90,65,0.20509769875231365],[121,90,66,0.21301183958716735],[121,90,67,0.22085940369164964],[121,90,68,0.22864733391453002],[121,90,69,0.23508315518528797],[121,90,70,0.2405911586748055],[121,90,71,0.24605348334376212],[121,90,72,0.2514815697316086],[121,90,73,0.2568882321524535],[121,90,74,0.26228629184560576],[121,90,75,0.2676873757014094],[121,90,76,0.27310088405586674],[121,90,77,0.27853313059016466],[121,90,78,0.28398665692229424],[121,90,79,0.2894597240419031],[121,91,64,0.19457308418572894],[121,91,65,0.20249597767406302],[121,91,66,0.21035652420132023],[121,91,67,0.2181744753927414],[121,91,68,0.22595714868849012],[121,91,69,0.2322246000853714],[121,91,70,0.2374631442866054],[121,91,71,0.24263859799175844],[121,91,72,0.24776637950291208],[121,91,73,0.2528636471123432],[121,91,74,0.2579477811341536],[121,91,75,0.2630350411254353],[121,91,76,0.2681394021752278],[121,91,77,0.2732715736510295],[121,91,78,0.2784382033122736],[121,91,79,0.2836412692325243],[121,92,64,0.19178543307678408],[121,92,65,0.19962077561804914],[121,92,66,0.20741455553649996],[121,92,67,0.21518914355721122],[121,92,68,0.22295246550971257],[121,92,69,0.22906207595951938],[121,92,70,0.2340376071543824],[121,92,71,0.2389316987330515],[121,92,72,0.24376348334817202],[121,92,73,0.24855426668070268],[121,92,74,0.25332585451677675],[121,92,75,0.2580990644804759],[121,92,76,0.26289242669981006],[121,92,77,0.26772107716388643],[121,92,78,0.2725958470177015],[121,92,79,0.27752255054190333],[121,93,64,0.1887638180846622],[121,93,65,0.19649874416459048],[121,93,66,0.20421199708626023],[121,93,67,0.21192837817212754],[121,93,68,0.21965663508390876],[121,93,69,0.22559826005286032],[121,93,70,0.23032044538221483],[121,93,71,0.23494237908900942],[121,93,72,0.23948658912292273],[121,93,73,0.24397826280403145],[121,93,74,0.248443418179056],[121,93,75,0.25290726923217577],[121,93,76,0.25739278963418244],[121,93,77,0.2619194791643874],[121,93,78,0.26650233639770426],[121,93,79,0.27115104071949314],[121,94,64,0.18553377020015877],[121,94,65,0.19315561123858282],[121,94,66,0.2007743314018962],[121,94,67,0.20841694853586393],[121,94,68,0.21609321974573276],[121,94,69,0.22183694918171848],[121,94,70,0.22631825675061518],[121,94,71,0.23068051654978963],[121,94,72,0.23494928701287837],[121,94,73,0.23915331085705085],[121,94,74,0.24332253298385303],[121,94,75,0.24748632105583818],[121,94,76,0.25167189383972843],[121,94,77,0.2559029618287111],[121,94,78,0.26019858408524504],[121,94,79,0.26457224468636265],[121,95,64,0.18211927710936146],[121,95,65,0.18961589559659656],[121,95,66,0.19712621057118102],[121,95,67,0.20467922277505987],[121,95,68,0.21228585579005968],[121,95,69,0.2177831324248852],[121,95,70,0.22203831961850257],[121,95,71,0.22615614816193177],[121,95,72,0.23016480758037977],[121,95,73,0.23409621966364044],[121,95,74,0.2379839080752677],[121,95,75,0.24186107898540288],[121,95,76,0.2457589182186966],[121,95,77,0.24970510980349617],[121,95,78,0.253722580209658],[121,95,79,0.25782847197503744],[121,96,64,0.1785426747415201],[121,96,65,0.1859028182668041],[121,96,66,0.19329139839998632],[121,96,67,0.20073915171652784],[121,96,68,0.2082582907858402],[121,96,69,0.21344289913083803],[121,96,70,0.21748842154166484],[121,96,71,0.22137920723385543],[121,96,72,0.22514565499322575],[121,96,73,0.22882245109875002],[121,96,74,0.23244629847982917],[121,96,75,0.23605386469325051],[121,96,76,0.23967995459926625],[121,96,77,0.2433559129858504],[121,96,78,0.24710826176582382],[121,96,79,0.25095757575832556],[121,97,64,0.17482474141616633],[121,97,65,0.18203841312858232],[121,97,66,0.18929290647127783],[121,97,67,0.1966204392409738],[121,97,68,0.20403459791426404],[121,97,69,0.2088231803205867],[121,97,70,0.2126765338447396],[121,97,71,0.216359119586348],[121,97,72,0.21990311408226312],[121,97,73,0.22334552816193737],[121,97,74,0.22672580585995572],[121,97,75,0.23008364933492587],[121,97,76,0.23345707604361604],[121,97,77,0.23688071376606554],[121,97,78,0.24038433842979148],[121,97,79,0.24399165904442888],[121,98,64,0.17098499655685687],[121,98,65,0.17804383861870995],[121,98,66,0.18515332606066548],[121,98,67,0.1923469010575094],[121,98,68,0.1996395691953368],[121,98,69,0.20393132173207415],[121,98,70,0.20761033053493808],[121,98,71,0.21110425790933182],[121,98,72,0.21444662998977387],[121,98,73,0.21767633050919352],[121,98,74,0.22083508165037075],[121,98,75,0.2239651574479165],[121,98,76,0.2271073363356169],[121,98,77,0.2302990987604985],[121,98,78,0.2335730751166803],[121,98,79,0.23695574859427504],[121,99,64,0.1670422057520534],[121,99,65,0.17393989236583138],[121,99,66,0.18089535770635684],[121,99,67,0.18794301366313534],[121,99,68,0.19502929726567547],[121,99,69,0.1987744869046255],[121,99,70,0.20229655008445352],[121,99,71,0.20562125290921468],[121,99,72,0.20878305927652804],[121,99,73,0.21182227651724977],[121,99,74,0.21478243187670995],[121,99,75,0.21770788744290678],[121,99,76,0.22064170043491868],[121,99,77,0.22362373507364042],[121,99,78,0.2266890315706057],[121,99,79,0.2298664370945352],[121,100,64,0.16301509377341894],[121,100,65,0.1697477303858017],[121,100,66,0.1765425400655971],[121,100,67,0.18343465509136606],[121,100,68,0.18974444011395505],[121,100,69,0.19335888884402846],[121,100,70,0.196740198737966],[121,100,71,0.1999141600462152],[121,100,72,0.20291579145462516],[121,100,73,0.20578639103690421],[121,100,74,0.20857082302029115],[121,100,75,0.21131504827274997],[121,100,76,0.21406390571319794],[121,100,77,0.216859151140033],[121,100,78,0.21973775927148598],[121,100,79,0.22273049409957554],[121,101,64,0.1589211948219336],[121,101,65,0.16548747295806862],[121,101,66,0.17211761318257382],[121,101,67,0.1788472253911785],[121,101,68,0.18419675730718676],[121,101,69,0.1876921508292603],[121,101,70,0.19094712868015196],[121,101,71,0.1939872329324354],[121,101,72,0.19684768855980844],[121,101,73,0.1995703756084992],[121,101,74,0.20220104158590974],[121,101,75,0.20478676224288292],[121,101,76,0.2073736582070182],[121,101,77,0.21000487420570085],[121,101,78,0.21271882690301946],[121,101,79,0.2155477266700689],[121,102,64,0.15475433539939504],[121,102,65,0.16115287818346644],[121,102,66,0.1676143812159794],[121,102,67,0.17417469304041516],[121,102,68,0.1784314301941819],[121,102,69,0.1818198443213201],[121,102,70,0.18496324203546713],[121,102,71,0.1878866304838976],[121,102,72,0.1906250648566372],[121,102,73,0.19322056213700417],[121,102,74,0.1957192584866153],[121,102,75,0.19816881866128502],[121,102,76,0.20061610512678668],[121,102,77,0.20310511381590557],[121,102,78,0.2056751827447412],[121,102,79,0.20835947899242804],[121,103,64,0.15049467882414677],[121,103,65,0.15672245766269538],[121,103,66,0.16300988495671814],[121,103,67,0.16896225976850862],[121,103,68,0.17251505335293496],[121,103,69,0.17581025069334308],[121,103,70,0.17885833392654732],[121,103,71,0.18168344940282968],[121,103,72,0.18432005339205404],[121,103,73,0.18680979395467212],[121,103,74,0.18919863825341007],[121,103,75,0.19153425385530456],[121,103,76,0.19386365184315194],[121,103,77,0.1962310988245127],[121,103,78,0.19867630419940793],[121,103,79,0.2012328883303499],[121,104,64,0.14612740765788895],[121,104,65,0.15218019100980434],[121,104,66,0.15828713707799053],[121,104,67,0.16303607929370587],[121,104,68,0.16650889450059822],[121,104,69,0.169725669893062],[121,104,70,0.17269553887303715],[121,104,71,0.17544144673090928],[121,104,72,0.17799679601922552],[121,104,73,0.1804023277407526],[121,104,74,0.18270324769436572],[121,104,75,0.1849466065997874],[121,104,76,0.18717894189505682],[121,104,77,0.18944418837296692],[121,104,78,0.19178186409880688],[121,104,79,0.19422553733718492],[121,105,64,0.14164461603701936],[121,105,65,0.14751738792788344],[121,105,66,0.15341317008754254],[121,105,67,0.15706137038793308],[121,105,68,0.16046718461774415],[121,105,69,0.16362077503196593],[121,105,70,0.1665297537003962],[121,105,71,0.16921553272029363],[121,105,72,0.1717100059007124],[121,105,73,0.17405246358945975],[121,105,74,0.17628674995346236],[121,105,75,0.17845867131187232],[121,105,76,0.18061366340500487],[121,105,77,0.1827947247652947],[121,105,78,0.1850406226431447],[121,105,79,0.18738437723629822],[121,106,64,0.13704723137324284],[121,106,65,0.1427345359243453],[121,106,66,0.14749631741778846],[121,106,67,0.15108353802446844],[121,106,68,0.15443556698271857],[121,106,69,0.1575411794126636],[121,106,70,0.1604063282439189],[121,106,71,0.16305058777143192],[121,106,72,0.16550391014832194],[121,106,73,0.1678036098421605],[121,106,74,0.16999158522473845],[121,106,75,0.17211178577268976],[121,106,76,0.174207932658858],[121,106,77,0.17632149981602036],[121,106,78,0.17848996185972754],[121,106,79,0.18074531457090634],[121,107,64,0.132347305770272],[121,107,65,0.1378435145706837],[121,107,66,0.14160004243792637],[121,107,67,0.1451378274155956],[121,107,68,0.14844920291464694],[121,107,69,0.1515216742867614],[121,107,70,0.15435944429578377],[121,107,71,0.15697998868529078],[121,107,72,0.15941092633670967],[121,107,73,0.16168710964561106],[121,107,74,0.16384794403404396],[121,107,75,0.16593494485071233],[121,107,76,0.16798953923995621],[121,107,77,0.17005111988880617],[121,107,78,0.1721553568928978],[121,107,79,0.17433277332190414],[121,108,64,0.12757067917227627],[121,108,65,0.13206393642265132],[121,108,66,0.1357469932722979],[121,108,67,0.13924695346507207],[121,108,68,0.1425305319018547],[121,108,69,0.14558413498850703],[121,108,70,0.1484101804400143],[121,108,71,0.1510238419114884],[121,108,72,0.15345007065068245],[121,108,73,0.15572082712018087],[121,108,74,0.1578725311442932],[121,108,75,0.15994373850371313],[121,108,76,0.16197305126442055],[121,108,77,0.16399726848982474],[121,108,78,0.16604978335065806],[121,108,79,0.16815923202055655],[121,109,64,0.12252009036666851],[121,109,65,0.12629838460914192],[121,109,66,0.1299445707269],[121,109,67,0.13341831918047295],[121,109,68,0.13668663088854913],[121,109,69,0.13973503975304166],[121,109,70,0.1425642066624786],[121,109,71,0.14518686730676883],[121,109,72,0.14762504086274286],[121,109,73,0.1499074360762872],[121,109,74,0.1520670628273246],[121,109,75,0.15413905667292377],[121,109,76,0.15615872326845992],[121,109,77,0.1581598089704956],[121,109,78,0.16017300333158016],[121,109,79,0.16222467861110973],[121,110,64,0.11680706454708606],[121,110,65,0.1205498929601348],[121,110,66,0.12417045124742801],[121,110,67,0.12762956749383203],[121,110,68,0.1308948207671456],[121,110,69,0.13395115561156357],[121,110,70,0.1367975724788483],[121,110,71,0.13944430876472586],[121,110,72,0.14191026664973957],[121,110,73,0.14422062372821542],[121,110,74,0.1464046339454217],[121,110,75,0.14849362581898437],[121,110,76,0.15051920437253272],[121,110,77,0.15251166266063426],[121,110,78,0.15449860821774652],[121,110,79,0.1565038092244618],[121,111,64,0.1110330552947189],[121,111,65,0.11475150251558427],[121,111,66,0.11835770851703081],[121,111,67,0.12181374894382099],[121,111,68,0.12508810554737765],[121,111,69,0.12816547166637868],[121,111,70,0.13104334568797754],[121,111,71,0.13372947136222155],[121,111,72,0.13623951358290085],[121,111,73,0.13859490067971159],[121,111,74,0.14082084008776624],[121,111,75,0.14294451376830966],[121,111,76,0.14499345925868254],[121,111,77,0.1469941417330676],[121,111,78,0.14897072196147024],[121,111,79,0.15094402456665293],[121,112,64,0.10513263790762857],[121,112,65,0.1088365235246175],[121,112,66,0.1124389705470621],[121,112,67,0.11590345921460188],[121,112,68,0.11919974858643151],[121,112,69,0.12231265971354491],[121,112,70,0.12523837211157668],[121,112,71,0.1279821485664802],[121,112,72,0.13055628729658697],[121,112,73,0.1329782230098985],[121,112,74,0.13526878298391076],[121,112,75,0.13745060385905214],[121,112,76,0.13954671439751812],[121,112,77,0.14157928901955125],[121,112,78,0.14356857649181828],[121,112,79,0.14553200771103555],[121,113,64,0.09906511264506133],[121,113,65,0.10276240276931993],[121,113,66,0.10637034033301672],[121,113,67,0.10985402036686315],[121,113,68,0.11318488560478307],[121,113,69,0.11634828775983944],[121,113,70,0.11933928599513535],[121,113,71,0.12216068000981865],[121,113,72,0.12482126596764871],[121,113,73,0.12733422268751163],[121,113,74,0.12971563340482853],[121,113,75,0.1319831480358374],[121,113,76,0.13415479049742346],[121,113,77,0.13624791525580968],[121,113,78,0.1382783169004651],[121,113,79,0.1402594961681393],[121,114,64,0.09281238611645103],[121,114,65,0.09650897282786332],[121,114,66,0.10012984556299559],[121,114,67,0.10364194793535411],[121,114,68,0.10701881941617444],[121,114,69,0.110246753542155],[121,114,70,0.11331990125664793],[121,114,71,0.11623863315631093],[121,114,72,0.11900812390651974],[121,114,73,0.1216370475984044],[121,114,74,0.1241363884674468],[121,114,75,0.12651837107827432],[121,114,76,0.12879551376351817],[121,114,77,0.13097980878836496],[121,114,78,0.13308203239877042],[121,114,79,0.13511118760292978],[121,115,64,0.0863753784447306],[121,115,65,0.09007494087912093],[121,115,66,0.09371404831230706],[121,115,67,0.09726172542543157],[121,115,68,0.10069400573020258],[121,115,69,0.10399852844008452],[121,115,70,0.10716875859254646],[121,115,71,0.11020269522559686],[121,115,72,0.11310180500120894],[121,115,73,0.1158700470950067],[121,115,74,0.11851299282474281],[121,115,75,0.12103704323784821],[121,115,76,0.12344874762571029],[121,115,77,0.1257542256809377],[121,115,78,0.12795869576542704],[121,115,79,0.13006611151379163],[121,116,64,0.07977060573143208],[121,116,65,0.08347454817342151],[121,116,66,0.08713481836513551],[121,116,67,0.09072273276505131],[121,116,68,0.09421718073070076],[121,116,69,0.09760752882172374],[121,116,70,0.10088678388017454],[121,116,71,0.10405065886431913],[121,116,72,0.10709687133620438],[121,116,73,0.11002451351294888],[121,116,74,0.11283349636330604],[121,116,75,0.11552407004224834],[121,116,76,0.11809642276836319],[121,116,77,0.12055036006300791],[121,116,78,0.12288506608779307],[121,116,79,0.12509894863984897],[121,117,64,0.07302694100622556],[121,117,65,0.07673440336435686],[121,117,66,0.08041627332601389],[121,117,67,0.08404633179074203],[121,117,68,0.08760663336781242],[121,117,69,0.09108861756204065],[121,117,70,0.09448506036004974],[121,117,71,0.09778950373684792],[121,117,72,0.10099592879457132],[121,117,73,0.10409848105312776],[121,117,74,0.1070912493565333],[121,117,75,0.10996809973271214],[121,117,76,0.11272256542072973],[121,117,77,0.11534779415876212],[121,117,78,0.11783655370957084],[121,117,79,0.12018129648920306],[121,118,64,0.06618255659117643],[121,118,65,0.06989049264874156],[121,118,66,0.07359188844375443],[121,118,67,0.0772631116173059],[121,118,68,0.08088962508785655],[121,118,69,0.08446523827793759],[121,118,70,0.08798271690784759],[121,118,71,0.09143357605854575],[121,118,72,0.09480813133056556],[121,118,73,0.09809558333603577],[121,118,74,0.10128413596112727],[121,118,75,0.10436114877133576],[121,118,76,0.10731332387080096],[121,118,77,0.11012692746993447],[121,118,78,0.11278804636362381],[121,118,79,0.11528287947613523],[121,119,64,0.05928205057287248],[121,119,65,0.06298536942868388],[121,119,66,0.06670177884431465],[121,119,67,0.07041029652515962],[121,119,68,0.0740999595230974],[121,119,69,0.07776718463942106],[121,119,70,0.08140493454181927],[121,119,71,0.08500286795397476],[121,119,72,0.08854776548510457],[121,119,73,0.09202397084805607],[121,119,74,0.09541384688680922],[121,119,75,0.098698245827802],[121,119,76,0.10185699316831572],[121,119,77,0.10486938461948384],[121,119,78,0.10801365034250887],[121,119,79,0.11214800106863508],[121,120,64,0.052373759382031086],[121,120,65,0.05606552551628377],[121,120,66,0.059790156178600416],[121,120,67,0.06352931831495223],[121,120,68,0.06727570398885654],[121,120,69,0.07102850645454371],[121,120,70,0.07478107266568323],[121,120,71,0.07852139789573064],[121,120,72,0.08223291611115063],[121,120,73,0.08819132828288995],[121,120,74,0.09449185859357659],[121,120,75,0.10069927477364261],[121,120,76,0.10678926652067873],[121,120,77,0.11158191879611905],[121,120,78,0.11520943135077279],[121,120,79,0.11878834706021635],[121,121,64,0.04550724302501057],[121,121,65,0.049178930346032296],[121,121,66,0.052902946039934604],[121,121,67,0.05742948208414335],[121,121,68,0.0640290840682731],[121,121,69,0.07065839065003444],[121,121,70,0.07731181330365623],[121,121,71,0.08397679553630882],[121,121,72,0.09063493266092168],[121,121,73,0.09726307645919134],[121,121,74,0.10383442222700995],[121,121,75,0.11031957579370885],[121,121,76,0.11545881961816903],[121,121,77,0.11884803285838927],[121,121,78,0.12217890404396818],[121,121,79,0.12547738841573336],[121,122,64,0.045651838834099664],[121,122,65,0.05219431292509116],[121,122,66,0.058802427995758196],[121,122,67,0.06546205921149423],[121,122,68,0.07217271681813986],[121,122,69,0.07893939947166821],[121,122,70,0.08575712761641795],[121,122,71,0.09261204522712839],[121,122,72,0.09948286453895835],[121,122,73,0.10634228172460133],[121,122,74,0.1131583601336349],[121,122,75,0.11989557028340915],[121,122,76,0.12307038171509183],[121,122,77,0.12616190805874972],[121,122,78,0.1292033135475643],[121,122,79,0.13222670521264968],[121,123,64,0.053732463462256075],[121,123,65,0.06030335653724604],[121,123,66,0.06695626091023935],[121,123,67,0.0736792467692165],[121,123,68,0.0804751233757141],[121,123,69,0.08735164947146072],[121,123,70,0.09430455536229161],[121,123,71,0.1013189171275483],[121,123,72,0.1083708977895102],[121,123,73,0.11542944716784537],[121,123,74,0.12245795623597676],[121,123,75,0.12781665642574977],[121,123,76,0.1307089140611348],[121,123,77,0.13351854847634173],[121,123,78,0.13628469297542253],[121,123,79,0.13904521590940777],[121,124,64,0.062089531537574405],[121,124,65,0.06866683460867938],[121,124,66,0.07534086182900959],[121,124,67,0.0821016334956035],[121,124,68,0.08895499367413609],[121,124,69,0.09591132494279085],[121,124,70,0.10296713090886327],[121,124,71,0.11010664974769452],[121,124,72,0.11730385856133463],[121,124,73,0.12452442593763827],[121,124,74,0.1317276078199332],[121,124,75,0.13572791103990953],[121,124,76,0.13836075464964803],[121,124,77,0.14091064447943089],[121,124,78,0.14342212379455072],[121,124,79,0.1459383077308486],[121,125,64,0.07073887795941297],[121,125,65,0.0773004945463746],[121,125,66,0.0839715522490987],[121,125,67,0.09074372863919619],[121,125,68,0.09762556575242655],[121,125,69,0.1046298626713503],[121,125,70,0.11175392193327949],[121,125,71,0.11898136626339599],[121,125,72,0.12628436918728841],[121,125,73,0.1336258251807154],[121,125,74,0.14096145386115605],[121,125,75,0.14360878591738968],[121,125,76,0.14601057797586692],[121,125,77,0.14832828066921697],[121,125,78,0.15061118379059188],[121,125,79,0.15290702785876809],[121,126,64,0.07968733797374067],[121,126,65,0.08621155936742704],[121,126,66,0.09285566831747358],[121,126,67,0.09961266870910086],[121,126,68,0.10649340447309],[121,126,69,0.11351282297987107],[121,126,70,0.120669015478858],[121,126,71,0.12794519907679297],[121,126,72,0.13531213423167024],[121,126,73,0.14273047492815866],[121,126,74,0.14909615005322505],[121,126,75,0.15143823326336706],[121,126,76,0.1536413618204553],[121,126,77,0.15575866642579075],[121,126,78,0.15784343858378036],[121,126,79,0.15994733773692602],[121,127,64,0.08893152065544088],[121,127,65,0.09539752900534218],[121,127,66,0.10199139803900488],[121,127,67,0.10870710015729418],[121,127,68,0.11555734308010092],[121,127,69,0.12255890789502007],[121,127,70,0.12971063315327974],[121,127,71,0.13699552366601156],[121,127,72,0.14438331451215808],[121,127,73,0.15183296260260243],[121,127,74,0.15701118417179877],[121,127,75,0.15919487914278435],[121,127,76,0.16123435465880473],[121,127,77,0.16318588932264344],[121,127,78,0.16510597723100665],[121,127,79,0.1670494312996178],[121,128,64,0.09845678108795876],[121,128,65,0.10484517599482113],[121,128,66,0.11136680577850182],[121,128,67,0.11801623920903857],[121,128,68,0.12480758878027469],[121,128,69,0.1317591275601884],[121,128,70,0.13887037650595793],[121,128,71,0.1461243026483985],[121,128,72,0.15348998988128984],[121,128,73,0.16092523376650292],[121,128,74,0.16479648152337098],[121,128,75,0.16685717444394665],[121,128,76,0.16876904369865853],[121,128,77,0.17059069165214175],[121,128,78,0.17238099240553503],[121,128,79,0.1741971178690274],[121,129,64,0.10823639231089213],[121,129,65,0.1145297366379857],[121,129,66,0.12095904517459394],[121,129,67,0.1275191099530389],[121,129,68,0.1342249934305137],[121,129,69,0.14109611592351143],[121,129,70,0.1481326035361163],[121,129,71,0.1553175409062632],[121,129,72,0.16261971148947948],[121,129,73,0.1699962596831668],[121,129,74,0.17243135089807185],[121,129,75,0.17440352315087024],[121,129,76,0.1762231235451333],[121,129,77,0.17795027028189037],[121,129,78,0.1796454056042383],[121,129,79,0.1813672704059659],[121,130,64,0.11823091801268334],[121,130,65,0.12441429866011501],[121,130,66,0.13073376148812058],[121,130,67,0.1371839617091471],[121,130,68,0.14378049032268136],[121,130,69,0.15054359664480677],[121,130,70,0.15747393720467825],[121,130,71,0.1645548525549707],[121,130,72,0.17175514419383017],[121,130,73,0.17776792569724523],[121,130,74,0.179896988096477],[121,130,75,0.18181238772998767],[121,130,76,0.18357246548927014],[121,130,77,0.1852381000410055],[121,130,78,0.18687053779307752],[121,130,79,0.18852933974129013],[121,131,64,0.12838778686324856],[121,131,65,0.13444938627873845],[121,131,66,0.14064468432263957],[121,131,67,0.14696786660687824],[121,131,68,0.1534346979754712],[121,131,69,0.16006600008678792],[121,131,70,0.16686290675080503],[121,131,71,0.173809140469103],[121,131,72,0.1808737997230196],[121,131,73,0.18507554985450153],[121,131,74,0.1871766580448492],[121,131,75,0.18906237144902216],[121,131,76,0.19079108741226533],[121,131,77,0.1924237808143801],[121,131,78,0.19402182586325897],[121,131,79,0.19564493535967042],[121,132,64,0.138640976710657],[121,132,65,0.14457264277001486],[121,132,66,0.15063330277773104],[121,132,67,0.15681638141020834],[121,132,68,0.1631375668309454],[121,132,69,0.16961809903200206],[121,132,70,0.1762595811759124],[121,132,71,0.18304623960228683],[121,132,72,0.18980335650421157],[121,132,73,0.192163994332531],[121,132,74,0.194255999780374],[121,132,75,0.19613245240293523],[121,132,76,0.1978513026009168],[121,132,77,0.19947308847115092],[121,132,78,0.2010587649763572],[121,132,79,0.20266765074934218],[121,133,64,0.1488975373814232],[121,133,65,0.15469393069558102],[121,133,66,0.16061255354595982],[121,133,67,0.16664581522803637],[121,133,68,0.17280919914112775],[121,133,69,0.17912435077998867],[121,133,70,0.18559341898643705],[121,133,71,0.19220128899847638],[121,133,72,0.19669475240781442],[121,133,73,0.1990561259505757],[121,133,74,0.20115064554940726],[121,133,75,0.20303058411939923],[121,133,76,0.20475306047131808],[121,133,77,0.20637777359333573],[121,133,78,0.2079648493768444],[121,133,79,0.20957280508684986],[121,134,64,0.15903691026779615],[121,134,65,0.16469288784305983],[121,134,66,0.170462605077533],[121,134,67,0.17633722070641406],[121,134,68,0.1823319752552171],[121,134,69,0.18846903639247425],[121,134,70,0.19475127982826596],[121,134,71,0.20078108201133105],[121,134,72,0.20345704218395588],[121,134,73,0.20582460409042613],[121,134,74,0.2079277368243896],[121,134,75,0.20981757138708096],[121,134,76,0.21155005439602068],[121,134,77,0.2131837084134234],[121,134,78,0.21477750451196911],[121,134,79,0.21638885234501615],[121,135,64,0.16895247780715708],[121,135,65,0.17446292844302608],[121,135,66,0.18007724398902464],[121,135,67,0.18578513879062653],[121,135,68,0.19160164363733817],[121,135,69,0.19754965230401955],[121,135,70,0.20363301929987418],[121,135,71,0.2074762653361448],[121,135,72,0.2101559941311138],[121,135,73,0.2125310873554283],[121,135,74,0.21464411109007187],[121,135,75,0.21654474107242183],[121,135,76,0.21828745089774543],[121,135,77,0.21992930604858357],[121,135,78,0.2215278693087764],[121,135,79,0.22313922277469894],[121,136,64,0.17855642644360983],[121,136,65,0.1839164081976795],[121,136,66,0.1893693259682412],[121,136,67,0.19490331820436235],[121,136,68,0.2005332963342032],[121,136,69,0.20628313361129152],[121,136,70,0.21114350256054984],[121,136,71,0.21415753785829292],[121,136,72,0.21683896739571845],[121,136,73,0.21921921227866992],[121,136,74,0.2213391366807739],[121,136,75,0.22324667977580634],[121,136,76,0.22499458604914446],[121,136,77,0.22663823978299963],[121,136,78,0.2282336091862576],[121,136,79,0.22983530530394258],[121,137,64,0.1877799842378652],[121,137,65,0.1929847809769541],[121,137,66,0.19827083901830364],[121,137,67,0.20362466567507903],[121,137,68,0.2090611871050174],[121,137,69,0.21449922572449656],[121,137,70,0.21785119271242487],[121,137,71,0.22085746223805502],[121,137,72,0.22353575527177416],[121,137,73,0.22591558210557863],[121,137,74,0.22803583609433137],[121,137,75,0.229942477239097],[121,137,76,0.23168631158450587],[121,137,77,0.23332087210192454],[121,137,78,0.23490040641671397],[121,137,79,0.23647797641262913],[121,138,64,0.19657406176455297],[121,138,65,0.20161915544527909],[121,138,66,0.20673335975941995],[121,138,67,0.21190157887224953],[121,138,68,0.21713891815944433],[121,138,69,0.22126682107520187],[121,138,70,0.22459880709452668],[121,138,71,0.22759103455225238],[121,138,72,0.23025915780124603],[121,138,73,0.23263052107001164],[121,138,74,0.23474181488239565],[121,138,75,0.23663681880707296],[121,138,76,0.238364236343474],[121,138,77,0.2399756274630993],[121,138,78,0.241523444024375],[121,138,79,0.2430591729668365],[121,139,64,0.2049102987661681],[121,139,65,0.20979125410807647],[121,139,66,0.21472890528321142],[121,139,67,0.21970666454609056],[121,139,68,0.22444077485423075],[121,139,69,0.22807989180679986],[121,139,70,0.23138508935213264],[121,139,71,0.23435576763510008],[121,139,72,0.2370052815292036],[121,139,73,0.2393585921692975],[121,139,74,0.24144999430551084],[121,139,75,0.2433209253456703],[121,139,76,0.2450178616948609],[121,139,77,0.24659030772787646],[121,139,78,0.24808888244453114],[121,139,79,0.24956350856059592],[121,140,64,0.21278251903452322],[121,140,65,0.21749477725701344],[121,140,66,0.2222511830325861],[121,140,67,0.22703384432059423],[121,140,68,0.23132040615805052],[121,140,69,0.23491885321305736],[121,140,70,0.23819018520374421],[121,140,71,0.24113146733569255],[121,140,72,0.24375356434800846],[121,140,73,0.24607887652726904],[121,140,74,0.2481391460253862],[121,140,75,0.24997333910123778],[121,140,76,0.2516256096640417],[121,140,77,0.25314334924064275],[121,140,78,0.25457532822037743],[121,140,79,0.25596993295132126],[121,141,64,0.2202085960176506],[121,141,65,0.22474717430798094],[121,141,66,0.22931724118271649],[121,141,67,0.2338998505845347],[121,141,68,0.23819177606664954],[121,141,69,0.24174373151696318],[121,141,70,0.2449748442886848],[121,141,71,0.24787969955707445],[121,141,72,0.2504665234300712],[121,141,73,0.2527550125051306],[121,141,74,0.2547742271804421],[121,141,75,0.25656055405859557],[121,141,76,0.25815574255779994],[121,141,77,0.2596050206091382],[121,141,78,0.26095529406920115],[121,141,79,0.2622534342170146],[121,142,64,0.22723273170119956],[121,142,65,0.23159182506441384],[121,142,66,0.23596952202434776],[121,142,67,0.24034611493629246],[121,142,68,0.2447391995882545],[121,142,69,0.2484927591550387],[121,142,70,0.25167928286129787],[121,142,71,0.25454294598052896],[121,142,72,0.2570892242973059],[121,142,73,0.2593349927763832],[121,142,74,0.261306514252399],[121,142,75,0.2630374894198964],[121,142,76,0.2645671729442324],[121,142,77,0.2659385602984064],[121,142,78,0.2671966497029569],[121,142,79,0.26838678330695426],[121,143,64,0.23391437985485922],[121,143,65,0.23808730423381883],[121,143,66,0.24226551275981045],[121,143,67,0.24642885672583978],[121,143,68,0.25059591120976993],[121,143,69,0.2548031707244418],[121,143,70,0.25823141880860745],[121,143,71,0.2610521041868504],[121,143,72,0.26355595663678344],[121,143,73,0.2657569249857765],[121,143,74,0.2676783587194237],[121,143,75,0.2693511538266254],[121,143,76,0.2708119557898589],[121,143,77,0.27210142402216403],[121,143,78,0.2732625618474648],[121,143,79,0.2743391159047533],[121,144,64,0.24027736853486445],[121,144,65,0.2442579845587272],[121,144,66,0.24823011785447188],[121,144,67,0.2521735550864911],[121,144,68,0.25610795910787654],[121,144,69,0.26007181318483324],[121,144,70,0.2640880008825909],[121,144,71,0.2673598149021783],[121,144,72,0.2698195012022054],[121,144,73,0.27197386011503233],[121,144,74,0.27384322740428363],[121,144,75,0.2754555859283576],[121,144,76,0.276844863296986],[121,144,77,0.27804928073059865],[121,144,78,0.27910975690857004],[121,144,79,0.2800683704011264],[121,145,64,0.24633153440726765],[121,145,65,0.25011470812233505],[121,145,66,0.2538752605097432],[121,145,67,0.25759334482704643],[121,145,68,0.2612898182048384],[121,145,69,0.26500503675020554],[121,145,70,0.2687643361157809],[121,145,71,0.2725790163983694],[121,145,72,0.2758415378508502],[121,145,73,0.2779465851032623],[121,145,74,0.2797610953186148],[121,145,75,0.28131005457911884],[121,145,76,0.28262458553919334],[121,145,77,0.2837403873846089],[121,145,78,0.2846962191968208],[121,145,79,0.2855324300026906],[121,146,64,0.25208400168232875],[121,146,65,0.2556656499101809],[121,146,66,0.25921026656946206],[121,146,67,0.26269884343650285],[121,146,68,0.26615353112468404],[121,146,69,0.2696164011693868],[121,146,70,0.27311514031495066],[121,146,71,0.2766638792766729],[121,146,72,0.2802647766057292],[121,146,73,0.28363905932903133],[121,146,74,0.28539506188740615],[121,146,75,0.28687692775792567],[121,146,76,0.28811291485138724],[121,146,77,0.28913613973151336],[121,146,78,0.28998314571802486],[121,146,79,0.29069250474329467],[121,147,64,0.2575395221434823],[121,147,65,0.26091663141374966],[121,147,66,0.2642421465853329],[121,147,67,0.26749839537048037],[121,147,68,0.27070890939340486],[121,147,69,0.2739172797114791],[121,147,70,0.27715340212969825],[121,147,71,0.28043414713741643],[121,147,72,0.28376477891283536],[121,147,73,0.2871403713279114],[121,147,74,0.2905472179610958],[121,147,75,0.2921217475471405],[121,147,76,0.29327482336273814],[121,147,77,0.2942011397312384],[121,147,78,0.29493499012081376],[121,147,79,0.29551313824468983],[121,148,64,0.2627007957673451],[121,148,65,0.26587141675692777],[121,148,66,0.2689758623361994],[121,148,67,0.27199830320713375],[121,148,68,0.2749637243643417],[121,148,69,0.2779170069769812],[121,148,70,0.2808900757034122],[121,148,71,0.28390240895301616],[121,148,72,0.28696228477347385],[121,148,73,0.2900680356168863],[121,148,74,0.29320930953426866],[121,148,75,0.2963683353810047],[121,148,76,0.2980785467216175],[121,148,77,0.2989032741140724],[121,148,78,0.29951952395971826],[121,148,79,0.299962239143868],[121,149,64,0.2675687717932514],[121,149,65,0.2705319912064509],[121,149,66,0.2734145776661959],[121,149,67,0.27620304554513503],[121,149,68,0.27892388775256977],[121,149,69,0.28162301921696425],[121,149,70,0.28433417968127944],[121,149,71,0.28707928540286987],[121,149,72,0.2898694955041191],[121,149,73,0.2927062996407295],[121,149,74,0.2955826251016232],[121,149,75,0.29848396145751693],[121,149,76,0.3013895008881359],[121,149,77,0.3032138041954491],[121,149,78,0.30370791543871584],[121,149,79,0.30401113740280067],[121,150,64,0.2721429301109461],[121,150,65,0.2748988219372208],[121,150,66,0.27755989351587096],[121,150,67,0.2801154815243937],[121,150,68,0.28259362166894497],[121,150,69,0.28504098706265646],[121,150,70,0.28749289121386973],[121,150,71,0.2899734842790574],[121,150,72,0.2924966355718197],[121,150,73,0.2950668502415042],[121,150,74,0.29768021881528733],[121,150,75,0.30032539827037225],[121,150,76,0.30298462328481957],[121,150,77,0.3056347463071057],[121,150,78,0.30747482580027774],[121,150,79,0.3076346657135526],[121,151,64,0.2764215428427904],[121,151,65,0.2789711009308207],[121,151,66,0.28141206702725313],[121,151,67,0.28373704185624293],[121,151,68,0.2859756180494648],[121,151,69,0.2881749405714843],[121,151,70,0.2903716348725901],[121,151,71,0.29259185277346017],[121,151,72,0.29485196913875167],[121,151,73,0.2971593258221301],[121,151,74,0.2995130221643946],[121,151,75,0.30190475126892613],[121,151,76,0.3043196812295321],[121,151,77,0.30673738044580373],[121,151,78,0.3091327861311615],[121,151,79,0.31081126620902744],[121,152,64,0.28040191600500197],[121,152,65,0.28274696989358966],[121,152,66,0.28497021461143623],[121,152,67,0.287067906256778],[121,152,68,0.28907118738169296],[121,152,69,0.2910273865006188],[121,152,70,0.2929741663970005],[121,152,71,0.2949394265734549],[121,152,72,0.2969418145210623],[121,152,73,0.2989912974386558],[121,152,74,0.30108979427159044],[121,152,75,0.30323186785223716],[121,152,76,0.30540547684474445],[121,152,77,0.3075927871255164],[121,152,78,0.30977104216951706],[121,152,79,0.311913491961812],[121,153,64,0.2840806111381495],[121,153,65,0.28622372708631205],[121,153,66,0.28823249887265256],[121,153,67,0.2901071671819333],[121,153,68,0.29188039663420257],[121,153,69,0.29359941772234066],[121,153,70,0.29530265119610094],[121,153,71,0.29701947569413734],[121,153,72,0.2987705564926531],[121,153,73,0.3005682477825776],[121,153,74,0.30241706892455195],[121,153,75,0.30431425501480397],[121,153,76,0.3062503819855565],[121,153,77,0.30821006636227344],[121,153,78,0.3101727397081101],[121,153,79,0.3121134977045973],[121,154,64,0.2874536468022336],[121,154,65,0.2893980159628285],[121,154,66,0.29119629928789215],[121,154,67,0.29285297976764335],[121,154,68,0.29440219629925485],[121,154,69,0.2958908146990697],[121,154,70,0.29735773752823597],[121,154,71,0.2988335469763803],[121,154,72,0.3003406563645825],[121,154,73,0.30189354798101115],[121,154,74,0.3034990982624124],[121,154,75,0.3051569911906824],[121,154,76,0.30686022063582075],[121,154,77,0.3085956822461931],[121,154,78,0.31034485536574685],[121,154,79,0.3120845753470677],[121,155,64,0.2905166798358816],[121,155,65,0.29226599551933946],[121,155,66,0.2938583665455621],[121,155,67,0.29530269788272295],[121,155,68,0.2966345364629039],[121,155,69,0.2979001389393262],[121,155,70,0.29913862428688004],[121,155,71,0.3003815031815733],[121,155,72,0.3016526597710503],[121,155,73,0.30296843214147395],[121,155,74,0.3043377930345994],[121,155,75,0.30576263219868954],[121,155,76,0.3072381415920621],[121,155,77,0.3087533045002389],[121,155,78,0.31029148947863333],[121,155,79,0.3118311498941251],[121,156,64,0.2932651662815366],[121,156,65,0.29482349225894033],[121,156,66,0.2962149604495587],[121,156,67,0.29745299620495913],[121,156,68,0.29857447181947244],[121,156,69,0.29962481835828714],[121,156,70,0.30064312332129484],[121,156,71,0.30166155861468535],[121,156,72,0.30270520209255114],[121,156,73,0.3037919695663068],[121,156,74,0.30493265934649105],[121,156,75,0.30613111118696035],[121,156,76,0.30738448131155494],[121,156,77,0.30868363501994894],[121,156,78,0.3100136581944931],[121,156,79,0.3113544888653468],[121,157,64,0.2956945018800804],[121,157,65,0.29706613367802254],[121,157,66,0.29826197129746634],[121,157,67,0.2992999782334493],[121,157,68,0.3002182555499415],[121,157,69,0.3010612244690351],[121,157,70,0.3018677162230191],[121,157,71,0.30267031120844595],[121,157,72,0.3034950114468164],[121,157,73,0.30436103456047237],[121,157,74,0.30528073180354365],[121,157,75,0.3062596324709272],[121,157,76,0.3072966167953845],[121,157,77,0.3083842192360483],[121,157,78,0.309509063863009],[121,157,79,0.31065243335434856],[121,158,64,0.29780014203893784],[121,158,65,0.29898946318247915],[121,158,66,0.2999950246432824],[121,158,67,0.3008392701522251],[121,158,68,0.301561421986095],[121,158,69,0.30220474133293357],[121,158,70,0.3028076055111764],[121,158,71,0.3034027710027917],[121,158,72,0.3040169091785025],[121,158,73,0.3046702737554885],[121,158,74,0.3053765029630434],[121,158,75,0.30614255915468425],[121,158,76,0.3069688083716521],[121,158,77,0.3078492421348027],[121,158,78,0.3087718435218804],[121,158,79,0.30971909937737013],[121,159,64,0.2995777011765344],[121,159,65,0.3005890363412824],[121,159,66,0.3014095693552266],[121,159,67,0.30206610046088234],[121,159,68,0.3025988579833966],[121,159,69,0.303049826198927],[121,159,70,0.30345676015082906],[121,159,71,0.3038523849544358],[121,159,72,0.30426380777833484],[121,159,73,0.304712070870693],[121,159,74,0.30521184899949433],[121,159,75,0.3057712944208082],[121,159,76,0.306392032237312],[121,159,77,0.30706930876262073],[121,159,78,0.3077922952679737],[121,159,79,0.30854454925894625],[121,160,64,0.3010230313439739],[121,160,65,0.301860498383958],[121,160,66,0.30250094887879964],[121,160,67,0.3029753652882188],[121,160,68,0.3033248629265356],[121,160,69,0.303590061762961],[121,160,70,0.3038079553400587],[121,160,71,0.30401105801246203],[121,160,72,0.3042267061626133],[121,160,73,0.30447650883194877],[121,160,74,0.30477595148692854],[121,160,75,0.30513415636909796],[121,160,76,0.30555380261050624],[121,160,77,0.306031209032783],[121,160,78,0.30655658229257976],[121,160,79,0.30711443279050626],[121,161,64,0.30213228002182557],[121,161,65,0.30279964284658367],[121,161,66,0.303264455614172],[121,161,67,0.30356167930465106],[121,161,68,0.30373319729220744],[121,161,69,0.30381819997998355],[121,161,70,0.3038528065029585],[121,161,71,0.303869170397116],[121,161,72,0.30389468224447447],[121,161,73,0.3039513291671291],[121,161,74,0.3040552151989595],[121,161,75,0.30421624628020727],[121,161,76,0.30443798333854355],[121,161,77,0.30471766664316463],[121,161,78,0.30504641434854307],[121,161,79,0.30540959788448485],[121,162,64,0.30290192698502316],[121,162,65,0.3034024512672816],[121,162,66,0.30369536831424315],[121,162,67,0.30381941214745867],[121,162,68,0.30381711969304653],[121,162,69,0.30372619736117734],[121,162,70,0.3035817974263346],[121,162,71,0.3034155910194585],[121,162,72,0.30325488272813367],[121,162,73,0.3031218885963042],[121,162,74,0.30303318182424716],[121,162,75,0.3029993101748414],[121,162,76,0.3030245887989279],[121,162,77,0.30310707190346803],[121,162,78,0.3032387064040661],[121,162,79,0.3034056704310746],[121,163,64,0.3033288001237013],[121,163,65,0.3036651138283354],[121,163,66,0.30378897240696345],[121,163,67,0.3037427102713478],[121,163,68,0.30356941232632806],[121,163,69,0.30330524168982187],[121,163,70,0.3029843024792709],[121,163,71,0.302637686980962],[121,163,72,0.30229251005816166],[121,163,73,0.30197111273419003],[121,163,74,0.30169043949289476],[121,163,75,0.3014615935347664],[121,163,76,0.30128957392375555],[121,163,77,0.30117319826050076],[121,163,78,0.30110521422500935],[121,163,79,0.30107260304883277],[121,164,64,0.3034082277535965],[121,164,65,0.3035820748113159],[121,164,66,0.30353851551578065],[121,164,67,0.30332337249453317],[121,164,68,0.30298018435799356],[121,164,69,0.3025434929510782],[121,164,70,0.3020462758173244],[121,164,71,0.30151897193948357],[121,164,72,0.3009884402585448],[121,164,73,0.3004770925259877],[121,164,74,0.30000220525236054],[121,164,75,0.29957541520284414],[121,164,76,0.29920240257864417],[121,164,77,0.2988827657147336],[121,164,78,0.2986100908225528],[121,164,79,0.29837222001385294],[121,165,64,0.30312361003027366],[121,165,65,0.3031349746071078],[121,165,66,0.3029236894088424],[121,165,67,0.3025389355021317],[121,165,68,0.30202460919523966],[121,165,69,0.3014135713496104],[121,165,70,0.30073762486479017],[121,165,71,0.3000265206754491],[121,165,72,0.2993068422538669],[121,165,73,0.2986010691154005],[121,165,74,0.29792682429605205],[121,165,75,0.2972963104515872],[121,165,76,0.2967159389081971],[121,165,77,0.2961861556783506],[121,165,78,0.29570146814527143],[121,165,79,0.2952506758185045],[121,166,64,0.30245855463220045],[121,166,65,0.3023055823701548],[121,166,66,0.30192433283963754],[121,166,67,0.3013671448364458],[121,166,68,0.30067817141930503],[121,166,69,0.29988858288790854],[121,166,70,0.29902901241120294],[121,166,71,0.29812854138646916],[121,166,72,0.2972135104925493],[121,166,73,0.2963065140218704],[121,166,74,0.2954255826554915],[121,166,75,0.2945835595192798],[121,166,76,0.29378767403297346],[121,166,77,0.2930393177402624],[121,166,78,0.29233402599019687],[121,166,79,0.2916616690313954],[121,167,64,0.30140318271947675],[121,167,65,0.30108257751374484],[121,167,66,0.30052762561625423],[121,167,67,0.2997935461851174],[121,167,68,0.2989246482368753],[121,167,69,0.2979504623494211],[121,167,70,0.29690051639065357],[121,167,71,0.2958032969985427],[121,167,72,0.294684986873055],[121,167,73,0.29356838931641716],[121,167,74,0.2924720453729033],[121,167,75,0.29140954858734464],[121,167,76,0.2903890620688817],[121,167,77,0.2894130422161223],[121,167,78,0.28847817313493535],[121,167,79,0.2875755154638837],[121,168,64,0.29995235849721713],[121,168,65,0.29945977160178394],[121,168,66,0.2987263038189935],[121,168,67,0.2978097006600243],[121,168,68,0.2967543316587162],[121,168,69,0.2955882055210668],[121,168,70,0.2943398722126362],[121,168,71,0.29303735522774355],[121,168,72,0.29170681428198686],[121,168,73,0.290371399001322],[121,168,74,0.2890502991397636],[121,168,75,0.2877579965203251],[121,168,76,0.28650372355520115],[121,168,77,0.285291132864472],[121,168,78,0.2841181821809169],[121,168,79,0.2829772384052064],[121,169,64,0.29810368294821926],[121,169,65,0.29743409170578283],[121,169,66,0.2965166355334974],[121,169,67,0.2954111608179259],[121,169,68,0.29416201291879035],[121,169,69,0.29279586698943333],[121,169,70,0.2913404862555928],[121,169,71,0.2898236179282395],[121,169,72,0.28827158022522215],[121,169,73,0.2867080440029992],[121,169,74,0.2851530147068804],[121,169,75,0.28362202000553766],[121,169,76,0.282125508131236],[121,169,77,0.28066846160435344],[121,169,78,0.27925023068249943],[121,169,79,0.2778645905443018],[121,170,64,0.29585529020610396],[121,170,65,0.2950033662388025],[121,170,66,0.29389620026491503],[121,170,67,0.29259525261667385],[121,170,68,0.29114477627767293],[121,170,69,0.2895703724109127],[121,170,70,0.2878992709030182],[121,170,71,0.28615918125816997],[121,170,72,0.28437680288415557],[121,170,73,0.2825765335603087],[121,170,74,0.28077938196885327],[121,170,75,0.27900208982338637],[121,170,76,0.2772564687782974],[121,170,77,0.2755489569539421],[121,170,78,0.27388039956761845],[121,170,79,0.2722460578232488],[121,171,64,0.29320344444392066],[121,171,65,0.29216391119556184],[121,171,66,0.29086147002780327],[121,171,67,0.28935866137768845],[121,171,68,0.2876996003680133],[121,171,69,0.285909143513079],[121,171,70,0.2840142994923629],[121,171,71,0.2820430251602703],[121,171,72,0.28002265823415395],[121,171,73,0.27797855179857234],[121,171,74,0.27593291667827274],[121,171,75,0.27390387737939004],[121,171,76,0.2719047469427006],[121,171,77,0.2699435256976061],[121,171,78,0.26802262855412906],[121,171,79,0.26613884512605973],[121,172,64,0.29013993496643586],[121,172,65,0.28890791454400916],[121,172,66,0.28740518992632],[121,172,67,0.2856948196498386],[121,172,68,0.2838207650696463],[121,172,69,0.28180753392073793],[121,172,70,0.27968227939021667],[121,172,71,0.2774735305052434],[121,172,72,0.2752095467218837],[121,172,73,0.2729168781479745],[121,172,74,0.27061913762250034],[121,172,75,0.2683359905154825],[121,172,76,0.2660823677507544],[121,172,77,0.26386790719237446],[121,172,78,0.2616966281771637],[121,172,79,0.2595668436244604],[121,173,64,0.286649267000033],[121,173,65,0.2852206163220451],[121,173,66,0.2835135558512993],[121,173,67,0.281591094686388],[121,173,68,0.27949706172385375],[121,173,69,0.27725607372831945],[121,173,70,0.2748958412427829],[121,173,71,0.27244582208955365],[121,173,72,0.26993549785073856],[121,173,73,0.2673928601270274],[121,173,74,0.2648431129676336],[121,173,75,0.2623075974997896],[121,173,76,0.2598029444181053],[121,173,77,0.25734045962556706],[121,173,78,0.25492574795238254],[121,173,79,0.2525585795198202],[121,174,64,0.2827056454731946],[121,174,65,0.28107728179459823],[121,174,66,0.27916318672579427],[121,174,67,0.2770257730560599],[121,174,68,0.2747088043109929],[121,174,69,0.27223752056136485],[121,174,70,0.2696406422791536],[121,174,71,0.2669489355162296],[121,174,72,0.26419341086977466],[121,174,73,0.2614037368679249],[121,174,74,0.2586068743408539],[121,174,75,0.2558259379713606],[121,174,76,0.2530792908437538],[121,174,77,0.2503798774337173],[121,174,78,0.24773480010830487],[121,174,79,0.24514514383791294],[121,175,64,0.27828503891398704],[121,175,65,0.27645514048560854],[121,175,66,0.27433284994849805],[121,175,67,0.27197946626541214],[121,175,68,0.26943879232252055],[121,175,69,0.2667372420149781],[121,175,70,0.26390501950492945],[121,175,71,0.2609745851234825],[121,175,72,0.2579787783065222],[121,175,73,0.2549491602026269],[121,175,74,0.25191458269291045],[121,175,75,0.2488999901838492],[121,175,76,0.24592546015087555],[121,175,77,0.2430054880260113],[121,175,78,0.24014852164058773],[121,175,79,0.23735675005785045],[121,176,64,0.27341512055563355],[121,176,65,0.2713829818760504],[121,176,66,0.26905241631714627],[121,176,67,0.26648306892318796],[121,176,68,0.2637188631447399],[121,176,69,0.26078790966359017],[121,176,70,0.25772234063743643],[121,176,71,0.2545566673508651],[121,176,72,0.25132583034692413],[121,176,73,0.24806347486932848],[121,176,74,0.2448004585254116],[121,176,75,0.24156359769308255],[121,176,76,0.23837465880328051],[121,176,77,0.2352496002361137],[121,176,78,0.23219807017757021],[121,176,79,0.2292231653981882],[121,177,64,0.2681397593915113],[121,177,65,0.26590597390714776],[121,177,66,0.26336829320769534],[121,177,67,0.26058415511544625],[121,177,68,0.2575976524218946],[121,177,69,0.25443906638177977],[121,177,70,0.2511428527321776],[121,177,71,0.2477458846952725],[121,177,72,0.24428543547864848],[121,177,73,0.24079739183076243],[121,177,74,0.23731470572007712],[121,177,75,0.2338660908113456],[121,177,76,0.2304749700123073],[121,177,77,0.2271586799619917],[121,177,78,0.22392793793155782],[121,177,79,0.22078657621397937],[121,178,64,0.26250469282001826],[121,178,65,0.26007139303071397],[121,178,66,0.2573292936486373],[121,178,67,0.25433308660513865],[121,178,68,0.251127057754358],[121,178,69,0.24774407562899423],[121,178,70,0.2442212578830122],[121,178,71,0.24059809605716062],[121,178,72,0.23691437749967237],[121,178,73,0.2332083439461408],[121,178,74,0.2295150939667245],[121,178,75,0.22586523608609807],[121,178,76,0.22228379897328424],[121,178,77,0.21878940468814723],[121,178,78,0.2153937105625899],[121,178,79,0.21210112489130512],[121,179,64,0.2565569146047548],[121,179,65,0.2539279502033084],[121,179,66,0.2509858831190295],[121,179,67,0.24778216047659568],[121,179,68,0.24436126577101075],[121,179,69,0.24075900628558936],[121,179,70,0.2370154346549479],[121,179,71,0.23317285476118269],[121,179,72,0.22927369186193725],[121,179,73,0.2253586046265323],[121,179,74,0.22146484640349168],[121,179,75,0.21762488263303306],[121,179,76,0.21386527090253882],[121,179,77,0.21020580972518518],[121,179,78,0.2066589617055662],[121,179,79,0.20322955634526252],[121,180,64,0.25034401807358336],[121,180,65,0.24752507340901708],[121,180,66,0.244389386201336],[121,180,67,0.24098472173329455],[121,180,68,0.23735575121989558],[121,180,69,0.23354149902590732],[121,180,70,0.2295851533742214],[121,180,71,0.22553195576458412],[121,180,72,0.2214270296240005],[121,180,73,0.21731345557483045],[121,180,74,0.21323060072979033],[121,180,75,0.2092127090073025],[121,180,76,0.2052877590388688],[121,180,77,0.20147659581596264],[121,180,78,0.1977923418011247],[121,180,79,0.19424009281056206],[121,181,64,0.24391349387068703],[121,181,65,0.24091214602422492],[121,181,66,0.23759115241308126],[121,181,67,0.23399424019176895],[121,181,68,0.23016624744840697],[121,181,69,0.2261496136415552],[121,181,70,0.22199078474719897],[121,181,71,0.2177379916016514],[121,181,72,0.21343904865715857],[121,181,73,0.20913940337057177],[121,181,74,0.20488044368712474],[121,181,75,0.20069807066083753],[121,181,76,0.19662154282640693],[121,181,77,0.19267259850827576],[121,181,78,0.18886486182471204],[121,181,79,0.18520353772225276],[121,182,64,0.23731198152550528],[121,182,65,0.23413770028712116],[121,182,66,0.23064168049118125],[121,182,67,0.22686335096534027],[121,182,68,0.22284768759642284],[121,182,69,0.2186406566821225],[121,182,70,0.21429200123628497],[121,182,71,0.20985291657238575],[121,182,72,0.2053738317131539],[121,182,73,0.2009024446276715],[121,182,74,0.19648201877508356],[121,182,75,0.19214994801022786],[121,182,76,0.18793659647646083],[121,182,77,0.18386441967834782],[121,182,78,0.17994737249557644],[121,182,79,0.17619060947350318],[121,183,64,0.23058447405138052],[121,183,65,0.22724856508337973],[121,183,66,0.2235897003522567],[121,183,67,0.21964285778206044],[121,183,68,0.2154531157783117],[121,183,69,0.2110699887356359],[121,183,70,0.2065464705794468],[121,183,71,0.20193661864617252],[121,183,72,0.19729333092907905],[121,183,73,0.19266637942610434],[121,183,74,0.18810070704860687],[121,183,75,0.18363499512438242],[121,183,76,0.17930050809654552],[121,183,77,0.17512022158554152],[121,183,78,0.17110823954851007],[121,183,79,0.16726950584259076],[121,184,64,0.22377347473602774],[121,184,65,0.2202889672085864],[121,184,66,0.2164812119023265],[121,184,67,0.21238069833299658],[121,184,68,0.20803256748375393],[121,184,69,0.20348981062820037],[121,184,70,0.19880854080124036],[121,184,71,0.19404549851759342],[121,184,72,0.18925583831746637],[121,184,73,0.18449117269767584],[121,184,74,0.1797978808290253],[121,184,75,0.17521568903515752],[121,184,76,0.17077652957637077],[121,184,77,0.1665036838476071],[121,184,78,0.16241121566690644],[121,184,79,0.15850369990310684],[121,185,64,0.21691810523519764],[121,185,65,0.21329958521722997],[121,185,66,0.2093584798197406],[121,185,67,0.20512087079940586],[121,185,68,0.20063191838246852],[121,185,69,0.19594792778116515],[121,185,70,0.19112791602698825],[121,185,71,0.18623105522132324],[121,185,72,0.18131448176643072],[121,185,73,0.17643136323089362],[121,185,74,0.17162923015488987],[121,185,75,0.16694857967676272],[121,185,76,0.1624217574324308],[121,185,77,0.15807212374680568],[121,185,78,0.15391350970543977],[121,185,79,0.1499499682691503],[121,186,64,0.2100531640301204],[121,186,65,0.2063165549174147],[121,186,66,0.2022589833859686],[121,186,67,0.19790232066042715],[121,186,68,0.19329170067419058],[121,186,69,0.1884864919247389],[121,186,70,0.18354832237794708],[121,186,71,0.1785384776861404],[121,186,72,0.17351574605594344],[121,186,73,0.16853451995034105],[121,186,74,0.16364316179904548],[121,186,75,0.15888264047078007],[121,186,76,0.154285444834761],[121,186,77,0.1498747803100025],[121,186,78,0.14566405387396478],[121,186,79,0.14165665258048432],[121,187,64,0.20320813426049808],[121,187,65,0.19937042552187728],[121,187,66,0.1952143203919795],[121,187,67,0.1907577868386638],[121,187,68,0.18604588608462014],[121,187,69,0.18114071933123846],[121,187,70,0.176106163195889],[121,187,71,0.17100524158643793],[121,187,72,0.16589801838381205],[121,187,73,0.1608397451238036],[121,187,74,0.15587927068756294],[121,187,75,0.15105771959484623],[121,187,76,0.14640744507306083],[121,187,77,0.14195126265199845],[121,187,78,0.13770196961266865],[121,187,79,0.13366215520277328],[121,188,64,0.19640613989582267],[121,188,65,0.19248506541729413],[121,188,66,0.18824906410122771],[121,188,67,0.1837126061972763],[121,188,68,0.1789206345683488],[121,188,69,0.17393758469688222],[121,188,70,0.16882916281822677],[121,188,71,0.16365971083089761],[121,188,72,0.1584901578863098],[121,188,73,0.15337622415320246],[121,188,74,0.1483668835715194],[121,188,75,0.14350309200180192],[121,188,76,0.13881678676206377],[121,188,77,0.13433016312812285],[121,188,78,0.1300552329592008],[121,188,79,0.1259936702021286],[121,189,64,0.18966284916155998],[121,189,65,0.18567651646817465],[121,189,66,0.18137957220670686],[121,189,67,0.176783475361929],[121,189,68,0.1719330077439621],[121,189,69,0.16689448977120036],[121,189,70,0.16173499810262648],[121,189,71,0.15651974301517407],[121,189,72,0.15131008863657974],[121,189,73,0.14616182161606445],[121,189,74,0.14112367482701402],[121,189,75,0.1362361122952007],[121,189,76,0.13153038114042082],[121,189,77,0.1270278359120829],[121,189,78,0.1227395402939467],[121,189,79,0.11866615075367469],[121,190,64,0.18548309257629683],[121,190,65,0.18024874735966662],[121,190,66,0.17482628345038517],[121,190,67,0.16997716880293653],[121,190,68,0.165089646053372],[121,190,69,0.16001790580644817],[121,190,70,0.15482991688160597],[121,190,71,0.14959129815705674],[121,190,72,0.14436341560740673],[121,190,73,0.13920172324115546],[121,190,74,0.13415435429050596],[121,190,75,0.1292609686146271],[121,190,76,0.12455186188150605],[121,190,77,0.12004734169614181],[121,190,78,0.11575737544763078],[121,190,79,0.1116815142583933],[121,191,64,0.18844267312617297],[121,191,65,0.1830861204260785],[121,191,66,0.1775470244516215],[121,191,67,0.17182531743090798],[121,191,68,0.1659584566186933],[121,191,69,0.1600084435507154],[121,191,70,0.1540372463805563],[121,191,71,0.14810424381069934],[121,191,72,0.1422643933422676],[121,191,73,0.13656663945861328],[121,191,74,0.13105256783734517],[121,191,75,0.12575531130489112],[121,191,76,0.12069871286231755],[121,191,77,0.11589675072439015],[121,191,78,0.11135322993018061],[121,191,79,0.10706174470545415],[121,192,64,0.19141955568126925],[121,192,65,0.18594633261933563],[121,192,66,0.18029688736443242],[121,192,67,0.17446977452671036],[121,192,68,0.16850216705648308],[121,192,69,0.1624565042360893],[121,192,70,0.15639469584476584],[121,192,71,0.15037562980940522],[121,192,72,0.1444534284496241],[121,192,73,0.13867593899456424],[121,192,74,0.13308346419853886],[121,192,75,0.12770773851313985],[121,192,76,0.12257115489940663],[121,192,77,0.11768624698857644],[121,192,78,0.11305543092817905],[121,192,79,0.10867101088415314],[121,193,64,0.19437752876379932],[121,193,65,0.18879180582942717],[121,193,66,0.18303688131819898],[121,193,67,0.17711046161385624],[121,193,68,0.17104945931276638],[121,193,69,0.1649163978785057],[121,193,70,0.15877278495922453],[121,193,71,0.15267669554816257],[121,193,72,0.14668111906216372],[121,193,73,0.14083253478789534],[121,193,74,0.13516972125153986],[121,193,75,0.12972280470950884],[121,193,76,0.12451255159539774],[121,193,77,0.11954990939531926],[121,193,78,0.1148358000642313],[121,193,79,0.11036116974216717],[121,194,64,0.19726694363155947],[121,194,65,0.19157096133878254],[121,194,66,0.18571348546791608],[121,194,67,0.17969180295328596],[121,194,68,0.17354261918504243],[121,194,69,0.16732831345330434],[121,194,70,0.1611097656117224],[121,194,71,0.1549440223315941],[121,194,72,0.1488827362064671],[121,194,73,0.14297082734875902],[121,194,74,0.13724537276515877],[121,194,75,0.13173472845050638],[121,194,76,0.12645788878908587],[121,194,77,0.12142408750107161],[121,194,78,0.11663264402452074],[121,194,79,0.11207305888187674],[121,195,64,0.20002395700018544],[121,195,65,0.1942174730551047],[121,195,66,0.1882579263096034],[121,195,67,0.18214245723786224],[121,195,68,0.1759076554566259],[121,195,69,0.16961570725759906],[121,195,70,0.16332680378586925],[121,195,71,0.15709689280593497],[121,195,72,0.15097620965645658],[121,195,73,0.14500802516033834],[121,195,74,0.13922761551629273],[121,195,75,0.13366145886152847],[121,195,76,0.12832666285538064],[121,195,77,0.12323062729382508],[121,195,78,0.11837094542907381],[121,195,79,0.11373554733879294],[121,196,64,0.202603094859941],[121,196,65,0.19668536665031264],[121,196,66,0.19062363163422488],[121,196,67,0.184415068686178],[121,196,68,0.1780962581484632],[121,196,69,0.17172922669370239],[121,196,70,0.16537348986026246],[121,196,71,0.15908389023218666],[121,196,72,0.15290922025067344],[121,196,73,0.14689105682402387],[121,196,74,0.14106281251005545],[121,196,75,0.1354490077183206],[121,196,76,0.13006476804995198],[121,196,77,0.12491555056373874],[121,196,78,0.11999710243229228],[121,196,79,0.11529565513369673],[121,197,64,0.204999408866518],[121,197,65,0.1989723429911647],[121,197,66,0.19281060364372687],[121,197,67,0.18651165410983703],[121,197,68,0.1801121448408312],[121,197,69,0.17367386894659126],[121,197,70,0.16725558237696997],[121,197,71,0.16091093364116477],[121,197,72,0.15468718025179176],[121,197,73,0.14862411183125124],[121,197,74,0.14275318440331627],[121,197,75,0.13709687007596663],[121,197,76,0.13166822600216452],[121,197,77,0.1264706861866372],[121,197,78,0.1214980793929108],[121,197,79,0.11673487609753311],[121,198,64,0.20720880860174015],[121,198,65,0.20107660971764624],[121,198,66,0.1948189982564151],[121,198,67,0.18843402235791512],[121,198,68,0.18195845569975275],[121,198,69,0.17545368554572613],[121,198,70,0.1689775370989927],[121,198,71,0.16258230349284716],[121,198,72,0.1563135589986005],[121,198,73,0.15020917345806903],[121,198,74,0.14429853220764122],[121,198,75,0.13860196545408526],[121,198,76,0.13313039075354974],[121,198,77,0.1278851719375301],[121,198,78,0.12285819752712575],[121,198,79,0.11803218138114246],[121,199,64,0.2092255285511856],[121,199,65,0.20299410953965175],[121,199,66,0.19664614605463696],[121,199,67,0.19018060709694926],[121,199,68,0.18363442060246643],[121,199,69,0.17706832155085017],[121,199,70,0.1705389692202398],[121,199,71,0.16409708877109863],[121,199,72,0.15778638523538976],[121,199,73,0.15164265273535435],[121,199,74,0.1456930829337271],[121,199,75,0.13995577642131946],[121,199,76,0.13443946045053357],[121,199,77,0.12914341612746558],[121,199,78,0.12405761788492202],[121,199,79,0.11916308777523743],[121,200,64,0.21104321610413418],[121,200,65,0.20471967632673777],[121,200,66,0.198287787659562],[121,200,67,0.19174779494018324],[121,200,68,0.1851367931122811],[121,200,69,0.17851456589477424],[121,200,70,0.1719363276389721],[121,200,71,0.16545098956147564],[121,200,72,0.15910017906396706],[121,200,73,0.1529174475326112],[121,200,74,0.1469276703417761],[121,200,75,0.14114664250283215],[121,200,76,0.13558087311383682],[121,200,77,0.1302275814828388],[121,200,78,0.12507489752035197],[121,200,79,0.1201022687264848],[121,201,64,0.21068417660540906],[121,201,65,0.20624812158936767],[121,201,66,0.19973924390652653],[121,201,67,0.19313119458776473],[121,201,68,0.186461233613996],[121,201,69,0.17978786104904348],[121,201,70,0.1731645407253401],[121,201,71,0.16663810522987577],[121,201,72,0.1602478854040894],[121,201,73,0.15402502067069723],[121,201,74,0.14799195362131998],[121,201,75,0.14216211202803278],[121,201,76,0.13653978117069754],[121,201,77,0.13112016910295327],[121,201,78,0.12588966721696382],[121,201,79,0.12082630821153122],[121,202,64,0.21014767671787443],[121,202,65,0.20713986110963312],[121,202,66,0.20099652068050025],[121,202,67,0.19432684696820174],[121,202,68,0.18760364175604674],[121,202,69,0.18088377233771924],[121,202,70,0.1742186341076014],[121,202,71,0.16765270894259582],[121,202,72,0.16122280993127727],[121,202,73,0.1549574982686981],[121,202,74,0.14887667544515892],[121,202,75,0.14299135360113294],[121,202,76,0.137303606664388],[121,202,77,0.1318067046318399],[121,202,78,0.12648543311170032],[121,202,79,0.12131660000189659],[121,203,64,0.20956932665628247],[121,203,65,0.20633629874505013],[121,203,66,0.2020573482105154],[121,203,67,0.1953323763183954],[121,203,68,0.18856143830170866],[121,203,69,0.18179941719122197],[121,203,70,0.175095320980212],[121,203,71,0.1684910092600248],[121,203,72,0.16202055846665145],[121,203,73,0.15570978955063086],[121,203,74,0.14957596087777636],[121,203,75,0.14362762892824693],[121,203,76,0.13786467912194972],[121,203,77,0.13227852886175162],[121,203,78,0.12685250465626302],[121,203,79,0.12156239496171856],[121,204,64,0.20895811728780972],[121,204,65,0.20548884033853662],[121,204,66,0.2019452326043528],[121,204,67,0.1961480820806793],[121,204,68,0.18933479644138637],[121,204,69,0.18253485459186952],[121,204,70,0.17579456540792981],[121,204,71,0.16915289951958304],[121,204,72,0.1626409807902589],[121,204,73,0.15628172934867218],[121,204,74,0.15008965864434623],[121,204,75,0.14407082877551708],[121,204,76,0.13822295811681837],[121,204,77,0.132535695056188],[121,204,78,0.12699105143952424],[121,204,79,0.12156399911822452],[121,205,64,0.2083196196829891],[121,205,65,0.20460377434620658],[121,205,66,0.20081044794293715],[121,205,67,0.1967779714307677],[121,205,68,0.1899278225614484],[121,205,69,0.183094434915422],[121,205,70,0.17632111906327547],[121,205,71,0.16964369569840024],[121,205,72,0.16309011983690208],[121,205,73,0.1566802445406431],[121,205,74,0.15042572628152143],[121,205,75,0.14433007386218852],[121,205,76,0.1383888426069065],[121,205,77,0.13258997533846095],[121,205,78,0.1269142914665276],[121,205,79,0.12133612532988328],[121,206,64,0.20765531446264116],[121,206,65,0.20368335339550525],[121,206,66,0.19963168180546548],[121,206,67,0.19547628338525513],[121,206,68,0.19034968640294803],[121,206,69,0.18348811031930493],[121,206,70,0.17668603179072848],[121,206,71,0.16997586341305126],[121,206,72,0.16338216721209192],[121,206,73,0.1569215456506619],[121,206,74,0.15060266069559325],[121,206,75,0.14442638251055726],[121,206,76,0.13838606916045343],[121,206,77,0.1324679785372058],[121,206,78,0.1266518135483282],[121,206,79,0.12091140144863108],[121,207,64,0.20696268380651053],[121,207,65,0.20272536957987394],[121,207,66,0.19840673535717962],[121,207,67,0.19397951903037924],[121,207,68,0.18939823555777957],[121,207,69,0.1837324445936223],[121,207,70,0.17690741421111672],[121,207,71,0.17016937700383974],[121,207,72,0.1635392728728216],[121,207,73,0.15703025574829313],[121,207,74,0.15064783296789294],[121,207,75,0.1443901191016398],[121,207,76,0.13824820526616655],[121,207,77,0.1322066448183498],[121,207,78,0.1262440561737623],[121,207,79,0.12033384335809202],[121,208,64,0.2062385848229127],[121,208,65,0.2017255126518891],[121,208,66,0.19713032135629396],[121,208,67,0.19242238289257155],[121,208,68,0.18755644433248198],[121,208,69,0.18248586743302936],[121,208,70,0.17700489762240545],[121,208,71,0.170243843295175],[121,208,72,0.16358083735922765],[121,208,73,0.15702543879149405],[121,208,74,0.15057989512241965],[121,208,75,0.14423950551995757],[121,208,76,0.13799308253870654],[121,208,77,0.13180557190668524],[121,208,78,0.12419688646373148],[121,208,79,0.11636741345795876],[121,209,64,0.20547997892217093],[121,209,65,0.20067992519596328],[121,209,66,0.19579805403991404],[121,209,67,0.1908003660793102],[121,209,68,0.1856419489415776],[121,209,69,0.18028004171548367],[121,209,70,0.17468086890631151],[121,209,71,0.16881954598396376],[121,209,72,0.16267979885774744],[121,209,73,0.1562536049113423],[121,209,74,0.14954075506400566],[121,209,75,0.14254833643435785],[121,209,76,0.1352901352879731],[121,209,77,0.12778596004884377],[121,209,78,0.12006088424815341],[121,209,79,0.11214440936861408],[121,210,64,0.20468343653602294],[121,210,65,0.1995851292490617],[121,210,66,0.19440664984379608],[121,210,67,0.18911073082664276],[121,210,68,0.18365293723458181],[121,210,69,0.1779945608109852],[121,210,70,0.1721061503828357],[121,210,71,0.16596715746323776],[121,210,72,0.15956548860451472],[121,210,73,0.15289699739257054],[121,210,74,0.145964915976559],[121,210,75,0.13877922611047827],[121,210,76,0.13135596975996464],[121,210,77,0.12371649939787424],[121,210,78,0.11588666817708428],[121,210,79,0.10789596022543876],[121,211,64,0.20384496802226298],[121,211,65,0.19843775749734316],[121,211,66,0.19295355707312398],[121,211,67,0.18735203542642048],[121,211,68,0.1815893924321308],[121,211,69,0.17563109511680275],[121,211,70,0.16945209374338385],[121,211,71,0.16303620512772746],[121,211,72,0.15637549680869858],[121,211,73,0.14946962996705657],[121,211,74,0.1423251614182178],[121,211,75,0.1349548050575241],[121,211,76,0.12737665318377267],[121,211,77,0.11961335816729955],[121,211,78,0.11169127496405948],[121,211,79,0.1036395650041849],[121,212,64,0.20295994107887225],[121,212,65,0.19723437159269033],[121,212,66,0.19143667406536585],[121,212,67,0.18552374983973186],[121,212,68,0.17945260434322138],[121,212,69,0.1731929438798781],[121,212,70,0.16672412950579904],[121,212,71,0.16003429993679705],[121,212,72,0.15311958908564596],[121,212,73,0.14598332229856964],[121,212,74,0.13863519204430644],[121,212,75,0.13109041383248318],[121,212,76,0.12336886315464372],[121,212,77,0.11549419425110066],[121,212,78,0.10749294151135498],[121,212,79,0.09939360431264148],[121,213,64,0.20202308591581797],[121,213,65,0.19597136876696558],[121,213,66,0.1898541569647959],[121,213,67,0.18362596306969156],[121,213,68,0.17724477533179978],[121,213,69,0.17068454094366722],[121,213,70,0.16392897139411905],[121,213,71,0.1569704110910416],[121,213,72,0.14980889244765386],[121,213,73,0.14245119024024583],[121,213,74,0.13490987640998986],[121,213,75,0.1272023764740065],[121,213,76,0.1193500286962835],[121,213,77,0.11137714714758373],[121,213,78,0.10331008975695688],[121,213,79,0.09517633242365742],[121,214,64,0.20102858950556513],[121,214,65,0.1946449779957029],[121,214,66,0.1882043183037088],[121,214,67,0.18165918344438595],[121,214,68,0.17496872215158027],[121,214,69,0.16811106015234584],[121,214,70,0.16107412956047829],[121,214,71,0.15385429349069413],[121,214,72,0.1464552454480392],[121,214,73,0.13888692893350196],[121,214,74,0.13116447884268712],[121,214,75,0.1233071861957982],[121,214,76,0.11533748769112559],[121,214,77,0.10727998152127743],[121,214,78,0.09916047083366945],[121,214,79,0.09100503615228861],[121,215,64,0.19997028030275293],[121,215,65,0.19325134703406435],[121,215,66,0.18648561765868607],[121,215,67,0.17962423303694605],[121,215,68,0.17262767484758695],[121,215,69,0.16547812159531874],[121,215,70,0.15816752922246394],[121,215,71,0.15069602592634093],[121,215,72,0.1430706650402574],[121,215,73,0.13530421918059604],[121,215,74,0.12741401762025348],[121,215,75,0.11942082877893986],[121,215,76,0.11134778964344716],[121,215,77,0.10321938384673561],[121,215,78,0.0950604700460455],[121,215,79,0.08689536214542623],[121,216,64,0.1988419048880951],[121,216,65,0.1917867217147413],[121,216,66,0.1846967457198715],[121,216,67,0.1775222375226606],[121,216,68,0.17022517399978151],[121,216,69,0.1627915999562545],[121,216,70,0.15521723598205384],[121,216,71,0.14750566128241527],[121,216,72,0.13966693145845335],[121,216,73,0.1317162584335722],[121,216,74,0.12367275484313738],[121,216,75,0.11555824510441946],[121,216,76,0.10739614527558619],[121,216,77,0.09921041369757216],[121,216,78,0.09102457429376927],[121,216,79,0.08286081427811773],[121,217,64,0.19763749805066974],[121,217,65,0.19024771895956907],[121,217,66,0.1828368031767203],[121,217,67,0.17535471284253443],[121,217,68,0.16776506765817792],[121,217,69,0.160057536309884],[121,217,70,0.15223128917658182],[121,217,71,0.14429299012373992],[121,217,72,0.13625529252115132],[121,217,73,0.12813541784310836],[121,217,74,0.11995381949476387],[121,217,75,0.11173293437813289],[121,217,76,0.10349602457303306],[121,217,77,0.09526611136362127],[121,217,78,0.08706500369312833],[121,217,79,0.07891242297661803],[121,218,64,0.19635184787511542],[121,218,65,0.18863169501259666],[121,218,66,0.180905575883677],[121,218,67,0.1731237501072413],[121,218,68,0.16525160938844877],[121,218,69,0.15728215478486385],[121,218,70,0.149217644692953],[121,218,71,0.14106741912200418],[121,218,72,0.1328462888522255],[121,218,73,0.12457302690888326],[121,218,74,0.11626896528787617],[121,218,75,0.10795669970909802],[121,218,76,0.09965890500715568],[121,218,77,0.09139726359602346],[121,218,78,0.0831915092684186],[121,218,79,0.07505858841099568],[121,219,64,0.19498105744470978],[121,219,65,0.18693721045110676],[121,219,66,0.17890390782264826],[121,219,67,0.1708323002339528],[121,219,68,0.16268965891115453],[121,219,69,0.15447198558105352],[121,219,70,0.1461842287524932],[121,219,71,0.13783796586137345],[121,219,72,0.1294497016016648],[121,219,73,0.12103928736728292],[121,219,74,0.11262846499424081],[121,219,75,0.10423953780628513],[121,219,76,0.09589417177339507],[121,219,77,0.08761232939287558],[121,219,78,0.07941133870098996],[121,219,79,0.0713050996182667],[121,220,64,0.1935232048067474],[121,220,65,0.18516459357159323],[121,220,66,0.17683417342495936],[121,220,67,0.1684845598600931],[121,220,68,0.16008498687544018],[121,220,69,0.15163409589368296],[121,220,70,0.14313910424446943],[121,220,71,0.13461337163957754],[121,220,72,0.12607462433209599],[121,220,73,0.11754331804167457],[121,220,74,0.1090411430500364],[121,220,75,0.10058967465932875],[121,220,76,0.09220917198690314],[121,220,77,0.0839175278457546],[121,220,78,0.0757293722340582],[121,220,79,0.0676553317293477],[121,221,64,0.19197910287163208],[121,221,65,0.1833166037784491],[121,221,66,0.17470085085221088],[121,221,67,0.1660864601211138],[121,221,68,0.15744468535773906],[121,221,69,0.14877643035341429],[121,221,70,0.14009075124970172],[121,221,71,0.13140233395092535],[121,221,72,0.12272966081355453],[121,221,73,0.1140933324630187],[121,221,74,0.10551454831723665],[121,221,75,0.09701374916113673],[121,221,76,0.08860942487435522],[121,221,77,0.08031709016736295],[121,221,78,0.07214843093364082],[121,221,79,0.06411062357675042],[121,222,64,0.19035316093046123],[121,222,65,0.18139919662300866],[121,222,66,0.17251119786194763],[121,222,67,0.16364625991275913],[121,222,68,0.15477768571653058],[121,222,69,0.145908262639028],[121,222,70,0.13704846345056645],[121,222,71,0.1282138603994744],[121,222,72,0.11942325053729252],[121,222,73,0.11069695114283697],[121,222,74,0.10205526896082515],[121,222,75,0.0935171467144589],[121,222,76,0.08509899008836147],[121,222,77,0.07681367811095159],[121,222,78,0.06866975959814856],[121,222,79,0.060670838052909834],[121,223,64,0.18865434947607806],[121,223,65,0.17942239214808095],[121,223,66,0.1702760318988734],[121,223,67,0.16117524528060118],[121,223,68,0.15209538546415272],[121,223,69,0.14304075995705748],[121,223,70,0.13402286216871306],[121,223,71,0.12505774584269477],[121,223,72,0.11616412381806872],[121,223,73,0.10736165044510886],[121,223,74,0.09866939147133642],[121,223,75,0.09010448493832392],[121,223,76,0.08168099634796311],[121,223,77,0.07340897107143013],[121,223,78,0.06529368668955524],[121,223,79,0.057335107669524814],[121,224,64,0.18689726999809947],[121,224,65,0.17740124818673605],[121,224,66,0.16801061605393924],[121,224,67,0.1586885365892673],[121,224,68,0.14941238583440297],[121,224,69,0.1401876621083747],[121,224,70,0.13102652980515328],[121,224,71,0.12194517460644665],[121,224,72,0.11296188840134579],[121,224,73,0.10409535005632793],[121,224,74,0.09536310591963292],[121,224,75,0.08678025365140069],[121,224,76,0.07835833267249159],[121,224,77,0.07010442422338595],[121,224,78,0.062020463724759146],[121,224,79,0.054102767833244275],[121,225,64,0.18510333139191162],[121,225,65,0.1753569402424531],[121,225,66,0.1657356525206328],[121,225,67,0.15620600511936386],[121,225,68,0.1467473417287482],[121,225,69,0.13736607687406863],[121,225,70,0.12807476447749327],[121,225,71,0.1188894496393525],[121,225,72,0.10982774952542433],[121,225,73,0.10090714109195535],[121,225,74,0.09214345957415573],[121,225,75,0.08354961135584296],[121,225,76,0.07513450452452426],[121,225,77,0.06690220010038447],[121,225,78,0.0588512866143719],[121,225,79,0.05097448039993717],[121,226,64,0.1833020345731034],[121,226,65,0.17331794953895666],[121,226,66,0.16347838514837137],[121,226,67,0.15375330071984666],[121,226,68,0.14412392571268],[121,226,69,0.1345973934502249],[121,226,70,0.1251864576543011],[121,226,71,0.11590685048701684],[121,226,72,0.10677536540708805],[121,226,73,0.09780815690112056],[121,226,74,0.08901926103834819],[121,226,75,0.0804193404751677],[121,226,76,0.07201465720883872],[121,226,77,0.06380627605093116],[121,226,78,0.05578950146568216],[121,226,79,0.04795355009653102],[121,227,64,0.18153547529799213],[121,227,65,0.1713252502116059],[121,227,66,0.1612784195752901],[121,227,67,0.15136829485122624],[121,227,68,0.14157789325763412],[121,227,69,0.13191494641441015],[121,227,70,0.12239230731913327],[121,227,71,0.11302531893715945],[121,227,72,0.10382990167618986],[121,227,73,0.0948208670467327],[121,227,74,0.08601046146709788],[121,227,75,0.07740714383628007],[121,227,76,0.06901460015847827],[121,227,77,0.06083099816220423],[121,227,78,0.05284848452027722],[121,227,79,0.045052926944751555],[121,228,64,0.17986383128740333],[121,228,65,0.16944095669302417],[121,228,66,0.15919930315103714],[121,228,67,0.14911552359084948],[121,228,68,0.1391743517657908],[121,228,69,0.12938397835464358],[121,228,70,0.11975723349669354],[121,228,71,0.11030897440666174],[121,228,72,0.10105418287053725],[121,228,73,0.09200629708844196],[121,228,74,0.08317578181484217],[121,228,75,0.07456894039957956],[121,228,76,0.066186971982535],[121,228,77,0.05802527674349168],[121,228,78,0.05007301176239861],[121,228,79,0.0423128997041108],[121,229,64,0.17833922823528525],[121,229,65,0.16771971640101724],[121,229,66,0.15729769725010354],[121,229,67,0.14705323493667144],[121,229,68,0.13697274335700974],[121,229,69,0.12706470449178792],[121,229,70,0.11734176672672401],[121,229,71,0.10781816595683438],[121,229,72,0.09850784264720998],[121,229,73,0.08942279970689096],[121,229,74,0.0805717050913822],[121,229,75,0.07195874269335584],[121,229,76,0.0635827147217627],[121,229,77,0.055436398410258804],[121,229,78,0.04750615954210782],[121,229,79,0.039771824930973365],[121,230,64,0.17699946802971436],[121,230,65,0.166201257012464],[121,230,66,0.1556148497509453],[121,230,67,0.14522383229720479],[121,230,68,0.1350162916705627],[121,230,69,0.12500082966497691],[121,230,70,0.1151897414943883],[121,230,71,0.1055964892580835],[121,230,72,0.09623385149132294],[121,230,73,0.08711231787056431],[121,230,74,0.07823873292184479],[121,230,75,0.06961519221876743],[121,230,76,0.061238194191613166],[121,230,77,0.053098050304714414],[121,230,78,0.045178556001087555],[121,230,79,0.037456924461831485],[121,231,64,0.1758694513771081],[121,231,65,0.16491180297566843],[121,231,66,0.15417800887949096],[121,231,67,0.1436552971356398],[121,231,68,0.1333334459338804],[121,231,69,0.12322102232251482],[121,231,70,0.1133298045865899],[121,231,71,0.1036723299312572],[121,231,72,0.09426009210412012],[121,231,73,0.0851019860733919],[121,231,74,0.0762030035074641],[121,231,75,0.06756318243679438],[121,231,76,0.059176814112002395],[121,231,77,0.05103190970614486],[121,231,78,0.043109929150020085],[121,231,79,0.03538577403750158],[121,232,64,0.1749625328167602],[121,232,65,0.1638654248085922],[121,232,66,0.15300177168074372],[121,232,67,0.14236254935030293],[121,232,68,0.131939267299199],[121,232,69,0.12174033709849486],[121,232,70,0.1117768803901833],[121,232,71,0.10206037436950766],[121,232,72,0.09260091503889484],[121,232,73,0.08340572677469113],[121,232,74,0.07447792181138645],[121,232,75,0.0658155128845916],[121,232,76,0.05741068190879641],[121,232,77,0.049249307202289705],[121,232,78,0.041310751415305574],[121,232,79,0.033567911968897794],[121,233,64,0.17428180549412786],[121,233,65,0.16306531821320475],[121,233,66,0.15208936386025734],[121,233,67,0.14134874186983482],[121,233,68,0.13083675368550166],[121,233,69,0.12056158201079274],[121,233,70,0.11053358902157953],[121,233,71,0.10076308385455071],[121,233,72,0.09125867040666552],[121,233,73,0.08202583796608659],[121,233,74,0.07306579810000234],[121,233,75,0.0643745708666382],[121,233,76,0.05594232305931664],[121,233,77,0.047752960833049786],[121,233,78,0.03978397871457076],[121,233,79,0.03200656665526764],[121,234,64,0.17382131503148016],[121,234,65,0.16250501240226345],[121,234,66,0.1514338504653311],[121,234,67,0.1406064890188282],[121,234,68,0.1300181027816496],[121,234,69,0.11967663005526687],[121,234,70,0.10959161720278697],[121,234,71,0.09977213204449495],[121,234,72,0.09022521591196854],[121,234,73,0.08095457232788814],[121,234,74,0.07195949552029202],[121,234,75,0.06323404163124491],[121,234,76,0.05476644513029831],[121,234,77,0.046538782596034084],[121,234,78,0.03852688569008376],[121,234,79,0.03070050481754864],[121,235,64,0.17356720174200868],[121,235,65,0.16216950694685323],[121,235,66,0.151019276791358],[121,235,67,0.14011902812718555],[121,235,68,0.12946591278429415],[121,235,69,0.11906767488746879],[121,235,70,0.108933041713084],[121,235,71,0.09906980582147819],[121,235,72,0.08948340138660439],[121,235,73,0.08017570834110421],[121,235,74,0.07114408729359122],[121,235,75,0.06238064783937752],[121,235,76,0.05387175255004084],[121,235,77,0.04559775859431323],[121,235,78,0.03753299861838407],[121,235,79,0.029646002197939725],[121,236,64,0.17349877034309616],[121,236,65,0.16203633636709744],[121,236,66,0.15082173881606142],[121,236,67,0.1398613137750044],[121,236,68,0.12915432036186983],[121,236,69,0.11870843019822748],[121,236,70,0.10853160515645381],[121,236,71,0.0986303693929874],[121,236,72,0.08900852988868269],[121,236,73,0.07966611361407702],[121,236,74,0.07059852399205997],[121,236,75,0.06179591901175255],[121,236,76,0.053242813028926896],[121,236,77,0.04491790397316454],[121,236,78,0.036794127375622515],[121,236,79,0.028838938333716892],[121,237,64,0.1735894576598125],[121,237,65,0.16207653273068562],[121,237,66,0.15081035323535155],[121,237,67,0.1398010145872541],[121,237,68,0.12905004563389114],[121,237,69,0.11856524248853591],[121,237,70,0.10835391371240419],[121,237,71,0.09842136132550379],[121,237,72,0.08876976510668509],[121,237,73,0.07939727027450887],[121,237,74,0.0702972809084671],[121,237,75,0.0614579611714309],[121,237,76,0.05286194609630017],[121,237,77,0.044486263405655445],[121,237,78,0.03630246754812061],[121,237,79,0.028276986858885956],[121,238,64,0.1738016680122802],[121,238,65,0.162249392079422],[121,238,66,0.1509419740766366],[121,238,67,0.1398932060645709],[121,238,68,0.1291070898339364],[121,238,69,0.11859182107010531],[121,238,70,0.10835422511614894],[121,238,71,0.0983984637049185],[121,238,72,0.0887251019893165],[121,238,73,0.07933036408294895],[121,238,74,0.07020557913311837],[121,238,75,0.06133681967208955],[121,238,76,0.05270473371784895],[121,238,77,0.04428457182501398],[121,238,78,0.03604641002531341],[121,238,79,0.02795556934471596],[121,239,64,0.1740751610946998],[121,239,65,0.16249171573713816],[121,239,66,0.15115115620007963],[121,239,67,0.14007091332344843],[121,239,68,0.12925770639428116],[121,239,69,0.11872048228521015],[121,239,70,0.10846581206253154],[121,239,71,0.09849683714741846],[121,239,72,0.0888125367461406],[121,239,73,0.07940716780656784],[121,239,74,0.07026987916566096],[121,239,75,0.06138450130113182],[121,239,76,0.05272951285085522],[121,239,77,0.04427818481861417],[121,239,78,0.035998903149352356],[121,239,79,0.02785567013066654],[121,240,64,0.17433043764107417],[121,240,65,0.16272417741308454],[121,240,66,0.15135894963462224],[121,240,67,0.14025571327996122],[121,240,68,0.12942415034942423],[121,240,69,0.1188743665916366],[121,240,70,0.1086129710597695],[121,240,71,0.09864226978084266],[121,240,72,0.08895974720803174],[121,240,73,0.07955770361657379],[121,240,74,0.07042304973877703],[121,240,75,0.061537259707736845],[121,240,76,0.052876483156041286],[121,240,77,0.0444118170974796],[121,240,78,0.036109738011432545],[121,240,79,0.02793269435028488],[121,241,64,0.17449823501781628],[121,241,65,0.16287809328447386],[121,241,66,0.15149724573515796],[121,241,67,0.14037999323762457],[121,241,68,0.1295392017942356],[121,241,69,0.11898657855165293],[121,241,70,0.10872911643755924],[121,241,71,0.09876853701411169],[121,241,72,0.08910099452652163],[121,241,73,0.07971691919638145],[121,241,74,0.07060100068243527],[121,241,75,0.06173231243159478],[121,241,76,0.05308457744634859],[121,241,77,0.044626575803643445],[121,241,78,0.03632269407947351],[121,241,79,0.02813361666171618],[121,242,64,0.17452515111631178],[121,242,65,0.16290017420385827],[121,242,66,0.1515128021574652],[121,242,67,0.14039041283310255],[121,242,68,0.12954923971911259],[121,242,69,0.1190030496996535],[121,242,70,0.10875960511379619],[121,242,71,0.09882035105976403],[121,242,72,0.08918034530255856],[121,242,73,0.07982831106094156],[121,242,74,0.07074681322814806],[121,242,75,0.061912558406487864],[121,242,76,0.053296818965717634],[121,242,77,0.04486598117087888],[121,242,78,0.03658221727171654],[121,242,79,0.028404281301475723],[121,243,64,0.1743720372124339],[121,243,65,0.16275098874100719],[121,243,66,0.15136579011435897],[121,243,67,0.14024655388053311],[121,243,68,0.12941301537923897],[121,243,69,0.11888145692954483],[121,243,70,0.10866082102498636],[121,243,71,0.09875263109628907],[121,243,72,0.08915114509771806],[121,243,73,0.07984361635431973],[121,243,74,0.0708106618683314],[121,243,75,0.06202673813352138],[121,243,76,0.053460724361328524],[121,243,77,0.04507661288440823],[121,243,78,0.03683430637590468],[121,243,79,0.02869052140492513],[121,244,64,0.1740124438946191],[121,244,65,0.16240347701691468],[121,244,66,0.15102838931944979],[121,244,67,0.13991961342373385],[121,244,68,0.12910046303590386],[121,244,69,0.1185901714664943],[121,244,70,0.1083992827732806],[121,244,71,0.0985297890315012],[121,244,72,0.08897549997745027],[121,244,73,0.07972250541518328],[121,244,74,0.070749730248015],[121,244,75,0.06202958187007139],[121,244,76,0.053528689532039375],[121,244,77,0.045208735181312694],[121,244,78,0.03702737517413622],[121,244,79,0.02893925216440244],[121,245,64,0.17343112079935555],[121,245,65,0.16184151600082158],[121,245,66,0.15048343120745755],[121,245,67,0.13939114047970824],[121,245,68,0.12859154842526088],[121,245,69,0.11810723863604142],[121,245,70,0.10795077455400295],[121,245,71,0.09812503078173632],[121,245,72,0.08862376585805593],[121,245,73,0.07943227474995357],[121,245,74,0.07052812061216902],[121,245,75,0.06188194526016445],[121,245,76,0.05345835770276127],[121,245,77,0.045216899988865585],[121,245,78,0.0371130895426291],[121,245,79,0.029099537091157437],[121,246,64,0.1726225710179933],[121,246,65,0.16105853705881806],[121,246,66,0.1497230911291936],[121,246,67,0.1386518170562098],[121,246,68,0.12787515539779318],[121,246,69,0.11741938871813214],[121,246,70,0.10729950048680041],[121,246,71,0.0975196730236679],[121,246,72,0.08807404545211],[121,246,73,0.07894754005589934],[121,246,74,0.07011675631275385],[121,246,75,0.06155093179034972],[121,246,76,0.05321296900998085],[121,246,77,0.04506052731062471],[121,246,78,0.03704717868586802],[121,246,79,0.029123626515953946],[121,247,64,0.1715896611637411],[121,247,65,0.16005619666027188],[121,247,66,0.14874763032871502],[121,247,67,0.13770028412605834],[121,247,68,0.12694801126072577],[121,247,69,0.11652107924977556],[121,247,70,0.10643726253479266],[121,247,71,0.09670247541984152],[121,247,72,0.08731169263240927],[121,247,73,0.07824992894110379],[121,247,74,0.0694932768620959],[121,247,75,0.061010001414362566],[121,247,76,0.052761690818945245],[121,247,77,0.04470446198125441],[121,247,78,0.036790219551755605],[121,247,79,0.028967967327038338],[121,248,64,0.17034228821100153],[121,248,65,0.15884310126459045],[121,248,66,0.1475641886184035],[121,248,67,0.13654201334016502],[121,248,68,0.12581365144454432],[121,248,69,0.11541356921676556],[121,248,70,0.10536266225853796],[121,248,71,0.09566898836489211],[121,248,72,0.08632882406163965],[121,248,73,0.07732777299458796],[121,248,74,0.06864192500301239],[121,248,75,0.06023906464978123],[121,248,76,0.05207992792799806],[121,248,77,0.04411950582055389],[121,248,78,0.03630839335835678],[121,248,79,0.02859418280297631],[121,249,64,0.16889610434048216],[121,249,65,0.15743358752529715],[121,249,66,0.14618562877453706],[121,249,67,0.13518822535960048],[121,249,68,0.12448142420354882],[121,249,69,0.11410402565225004],[121,249,70,0.10408032671534534],[121,249,71,0.09442091634713211],[121,249,72,0.08512383796425359],[121,249,73,0.07617579886842908],[121,249,74,0.0675534252518718],[121,249,75,0.059224561411104146],[121,249,76,0.051149611750935506],[121,249,77,0.043282924125807996],[121,249,78,0.03557421304434023],[121,249,79,0.027970021252339945],[121,250,64,0.16727130114191474],[121,250,65,0.1558465590602921],[121,250,66,0.14462943378055182],[121,250,67,0.13365485578389522],[121,250,68,0.12296553614844816],[121,250,69,0.1126046632375117],[121,250,70,0.10260015887928962],[121,250,71,0.09296549706969565],[121,250,72,0.08370093994857776],[121,250,73,0.07479481804469731],[121,250,74,0.06622485335881487],[121,250,75,0.05795952380668992],[121,250,76,0.04995946750453953],[121,250,77,0.04217892534992334],[121,250,78,0.034567220334870134],[121,250,79,0.027070272022985526],[121,251,64,0.16549145463968157],[121,251,65,0.15410438114449546],[121,251,66,0.14291665814575857],[121,251,67,0.13196156974629983],[121,251,68,0.12128413949477465],[121,251,69,0.11093191757665445],[121,251,70,0.10093661302188087],[121,251,71,0.09131489652559226],[121,251,72,0.08206967582001329],[121,251,73,0.0731914149726456],[121,251,74,0.06465949611901124],[121,251,75,0.05644362209122761],[121,251,76,0.048505258365173734],[121,251,77,0.04079911272041396],[121,251,78,0.033274650992081566],[121,251,79,0.025877647290232383],[121,252,64,0.16358243271557985],[121,252,65,0.15223183478425065],[121,252,66,0.14107093462425094],[121,252,67,0.1301308263375428],[121,252,68,0.11945846199504859],[121,252,69,0.10910565289283995],[121,252,70,0.09910799555871877],[121,252,71,0.0894856202729736],[121,252,72,0.08024447136158502],[121,252,73,0.07137763327722726],[121,252,74,0.06286670096159988],[121,252,75,0.054683192932465194],[121,252,76,0.04679000549716995],[121,252,77,0.03914290646289097],[121,252,78,0.031692066696090926],[121,252,79,0.02438362787736812],[121,253,64,0.16157136660470384],[121,253,65,0.15025513172934832],[121,253,66,0.13911753774965982],[121,253,67,0.12818699410535853],[121,253,68,0.11751198060297607],[121,253,69,0.10714840496723259],[121,253,70,0.09713579193179996],[121,253,71,0.08749794120906206],[121,253,72,0.07824417909465664],[121,253,73,0.06937065975745776],[121,253,74,0.06086171473779703],[121,253,75,0.052691249119851465],[121,253,76,0.04482418279584466],[121,253,77,0.03721793520151939],[121,253,78,0.029823951878045582],[121,253,79,0.022589271202814707],[121,254,64,0.1594856882346567],[121,254,65,0.14820099206802304],[121,254,66,0.13708250568605307],[121,254,67,0.12615551895760233],[121,254,68,0.11546963999454293],[121,254,69,0.105084660213144],[121,254,70,0.0950440201608211],[121,254,71,0.0853753441940585],[121,254,72,0.0760916320710557],[121,254,73,0.06719250591323518],[121,254,74,0.05866551112753728],[121,254,75,0.05048746981470909],[121,254,76,0.04262588513058431],[121,254,77,0.03504039501918162],[121,254,78,0.027684273702243058],[121,254,79,0.020505979287277484],[121,255,64,0.15735223526368552],[121,255,65,0.14609578613149826],[121,255,66,0.1349918219724699],[121,255,67,0.12406214587107987],[121,255,68,0.11335711714279105],[121,255,69,0.1029401718462729],[121,255,70,0.09285861175932551],[121,255,71,0.08314398792963978],[121,255,72,0.07381320478802705],[121,255,73,0.06486968676207128],[121,255,74,0.05630460608518288],[121,255,75,0.04809817041684218],[121,255,76,0.040220968818956704],[121,255,77,0.032635374572353326],[121,255,78,0.025297003270437907],[121,255,79,0.01815622459177875],[121,256,64,0.1551964257478642],[121,256,65,0.14396474250571636],[121,256,66,0.1328706588064927],[121,256,67,0.12193219587459847],[121,256,68,0.11120013320879873],[121,256,69,0.10074131417609201],[121,256,70,0.0906068207717359],[121,256,71,0.0808321845494557],[121,256,72,0.0714383813586551],[121,256,73,0.062432896732220675],[121,256,74,0.0538108607489355],[121,256,75,0.0455562511009424],[121,256,76,0.03764316301117468],[121,256,77,0.030037144569959366],[121,256,78,0.02269659599811802],[121,256,79,0.015574231293723123],[121,257,64,0.153041507736443],[121,257,65,0.1418312266432922],[121,257,66,0.13074268559545002],[121,257,67,0.11978990131627229],[121,257,68,0.10902381511337758],[121,257,69,0.09851447685133445],[121,257,70,0.08831666238044308],[121,257,71,0.07846989816095874],[121,257,72,0.06899933215978114],[121,257,73,0.0599166840405065],[121,257,74,0.05122127361585443],[121,257,75,0.04290112642244647],[121,257,76,0.03493415517664652],[121,257,77,0.02728941577847676],[121,257,78,0.019928436452648562],[121,257,79,0.012806618549435598],[121,258,64,0.15090838300496426],[121,258,65,0.13971660983608017],[121,258,66,0.1286299846924284],[121,258,67,0.1176583635470435],[121,258,68,0.1068526862104144],[121,258,69,0.09628607796460992],[121,258,70,0.08601693726477051],[121,258,71,0.07608876946581666],[121,258,72,0.06653092857065927],[121,258,73,0.05735944679207648],[121,258,74,0.04857795104628054],[121,258,75,0.04017866537170066],[121,258,76,0.03214349814945046],[121,258,77,0.024445212894202067],[121,258,78,0.017048681290000013],[121,258,79,0.009912217062947077],[121,259,64,0.14882539316550422],[121,259,65,0.13765048492654008],[121,259,66,0.1265637205910365],[121,259,67,0.11557066629825508],[121,259,68,0.10472206093420275],[121,259,69,0.09409388188701578],[121,259,70,0.08374797487100746],[121,259,71,0.07373169798925566],[121,259,72,0.0640785334920168],[121,259,73,0.05480879531714326],[121,259,74,0.04593043167799355],[121,259,75,0.03743992182509335],[121,259,76,0.02932326597564774],[121,259,77,0.021557067281875814],[121,259,78,0.014109704599354107],[121,259,79,0.0069425947182349766],[121,260,64,0.1468253660447047],[121,260,65,0.13566734010694645],[121,260,66,0.12458039514048541],[121,260,67,0.11356568930126607],[121,260,68,0.10267340231034554],[121,260,69,0.09198188703372967],[121,260,70,0.08155604246449687],[121,260,71,0.07144677117822526],[121,260,72,0.06169145911819296],[121,260,73,0.05231455841499498],[121,260,74,0.04332827265384688],[121,260,75,0.034733343849880215],[121,260,76,0.02651994024543038],[121,260,77,0.018668643905712663],[121,260,78,0.011151536964750412],[121,260,79,0.003933385260148071],[121,261,64,0.1449333180910714],[121,261,65,0.13379361043290747],[121,261,66,0.12270818891896841],[121,261,67,0.11167372118976239],[121,261,68,0.10073934873929037],[121,261,69,0.0899851116050925],[121,261,70,0.07947838343149506],[121,261,71,0.0692731472490093],[121,261,72,0.05941034048441137],[121,261,73,0.049918309415808694],[121,261,74,0.04081337263561975],[121,261,75,0.03210049291891533],[121,261,76,0.023774056735285806],[121,261,77,0.015818760491415354],[121,261,78,0.008210602453285785],[121,261,79,9.179791696583995E-4],[121,262,64,0.14316620795690133],[121,262,65,0.13204742850030612],[121,262,66,0.12096670039651553],[121,262,67,0.10991617384033242],[121,262,68,0.09894339318886564],[121,262,69,0.08812923455580005],[121,262,70,0.077542822735964],[121,262,71,0.06724063221621543],[121,262,72,0.057266694283321075],[121,262,73,0.047652919048700074],[121,262,74,0.03841953210552325],[121,262,75,0.02957562535704187],[121,262,76,0.021119821384094364],[121,262,77,0.013041050556642595],[121,262,78,0.005319439943375639],[121,262,79,-0.0020726870667777198],[121,263,64,0.1415335149756641],[121,263,65,0.13043922533681568],[121,263,66,0.11936756030886389],[121,263,67,0.10830619490573858],[121,263,68,0.09730047400878836],[121,263,69,0.08643114243111064],[121,263,70,0.07576824636725843],[121,263,71,0.06537006846700824],[121,263,72,0.05528319395144849],[121,263,73,0.04554269611398735],[121,263,74,0.03617244107781059],[121,263,75,0.027185511495106104],[121,263,76,0.01858474869225257],[121,263,77,0.010363412591346759],[121,263,78,0.0025059585763674208],[121,263,79,-0.0050110696796596115],[121,264,64,0.14003810316944143],[121,264,65,0.1289726150976491],[121,264,66,0.11791532570307588],[121,264,67,0.10684955368328977],[121,264,68,0.09581783053462534],[121,264,69,0.08489973008569397],[121,264,70,0.07416532135016364],[121,264,71,0.06367394820630791],[121,264,72,0.05347415169024474],[121,264,73,0.04360371510749747],[121,264,74,0.03408983199425808],[121,264,75,0.024949396765503343],[121,264,76,0.01618941769735271],[121,264,77,0.007807551707946935],[121,264,78,-2.072397708369686E-4],[121,264,79,-0.007873914700936516],[121,265,64,0.13867737172953706],[121,265,65,0.1276455644142797],[121,265,66,0.11660865440062698],[121,265,67,0.10554580096310914],[121,265,68,0.0944961240353666],[121,265,69,0.08353695576404072],[121,265,70,0.07273745674025184],[121,265,71,0.06215725216210483],[121,265,72,0.051846207800972086],[121,265,73,0.04184433119103366],[121,265,74,0.032181798237299636],[121,265,75,0.022879105236717146],[121,265,76,0.013947346110093429],[121,265,77,0.005388614451654065],[121,265,78,-0.002803470177417454],[121,265,79,-0.008958463384317428],[121,266,64,0.13744469255070266],[121,266,65,0.1264518468916767],[121,266,66,0.11544176028303024],[121,266,67,0.10438970317515472],[121,266,68,0.09333082424910077],[121,266,69,0.08233915072925269],[121,266,70,0.07148200575400505],[121,266,71,0.06081851368571539],[121,266,72,0.05039922747784883],[121,266,73,0.040265882687729904],[121,266,74,0.030451278498225515],[121,266,75,0.02097928590621483],[121,266,76,0.011864983033223954],[121,266,77,0.003114917316314487],[121,266,78,2.2944413892400086E-4],[121,266,79,-0.0014260697330210539],[121,267,64,0.1363311350582764],[121,267,65,0.12538278291802535],[121,267,66,0.11440614948595579],[121,267,67,0.10337295084915235],[121,267,68,0.0923138614623894],[121,267,69,0.08129858335505981],[121,267,70,0.07039170892889712],[121,267,71,0.059651108145765686],[121,267,72,0.04912740498616555],[121,267,73,0.03886358108144063],[121,267,74,0.028894707055848862],[121,267,75,0.01924780190577066],[121,267,76,0.012546241188452505],[121,267,77,0.010399820884810989],[121,267,78,0.008353485372879516],[121,267,79,0.006402049624205083],[121,268,64,0.1353274782485261],[121,268,65,0.1244292646415829],[121,268,66,0.11349263729080777],[121,268,67,0.10248614111871035],[121,268,68,0.09143554382136199],[121,268,69,0.08040527734458168],[121,268,70,0.0694563779741926],[121,268,71,0.05864476729745095],[121,268,72,0.04802057495203127],[121,268,73,0.03762758831607034],[121,268,74,0.027502829853944047],[121,268,75,0.024102710720574703],[121,268,76,0.021574910307975766],[121,268,77,0.01912948735024103],[121,268,78,0.016773355326368252],[121,268,79,0.01450670582517902],[121,269,64,0.1344265095652387],[121,269,65,0.12358406568182331],[121,269,66,0.11269364522741859],[121,269,67,0.10172103373935575],[121,269,68,0.09068673931582837],[121,269,69,0.07964908350821556],[121,269,70,0.06866481975811711],[121,269,71,0.05778731810969469],[121,269,72,0.047065730307473616],[121,269,73,0.03947003014879656],[121,269,74,0.03658328046496321],[121,269,75,0.03371734928123419],[121,269,76,0.030896846931412744],[121,269,77,0.028140126727333487],[121,269,78,0.025459218040911613],[121,269,79,0.022859886464281852],[121,270,64,0.13362560995943212],[121,270,65,0.12284443487565788],[121,270,66,0.11200577764716729],[121,270,67,0.1010730798492928],[121,270,68,0.0900613216510413],[121,270,69,0.07902200432119585],[121,270,70,0.0680069996803615],[121,270,71,0.05706664535125304],[121,270,72,0.05296706462896886],[121,270,73,0.04987419880595743],[121,270,74,0.04673951474933943],[121,270,75,0.04359639560602219],[121,270,76,0.040473185300114914],[121,270,77,0.03739282643842128],[121,270,78,0.03437262522756024],[121,270,79,0.031424143450125244],[121,271,64,0.130372512161717],[121,271,65,0.12219441304179089],[121,271,66,0.11141245451303879],[121,271,67,0.10052464645640002],[121,271,68,0.08954026851765831],[121,271,69,0.07850344195216033],[121,271,70,0.07005829058380927],[121,271,71,0.06701809405556905],[121,271,72,0.0638208856416774],[121,271,73,0.06050853454699215],[121,271,74,0.057120416715672404],[121,271,75,0.05369262499138148],[121,271,76,0.05025730493308014],[121,271,77,0.04684211694559263],[121,271,78,0.04346982517254877],[121,271,79,0.04015801339182344],[121,272,64,0.12586480442877213],[121,272,65,0.11654135890494811],[121,272,66,0.10726394333630537],[121,272,67,0.09824677621473708],[121,272,68,0.08903857273509058],[121,272,69,0.08432794612300458],[121,272,70,0.08137871706598888],[121,272,71,0.07819478780085633],[121,272,72,0.0748177540713092],[121,272,73,0.0712893005635237],[121,272,74,0.06765010912372585],[121,272,75,0.06393889090400089],[121,272,76,0.060191543520532236],[121,272,77,0.05644043409138138],[121,272,78,0.05271380880532018],[121,272,79,0.04903532946053656],[121,273,64,0.12000250885182848],[121,273,65,0.1104621611650137],[121,273,66,0.10114605975199294],[121,273,67,0.09366044507620919],[121,273,68,0.09341155351953924],[121,273,69,0.09320087714889329],[121,273,70,0.09272364108336174],[121,273,71,0.08940638972791769],[121,273,72,0.0858604170485722],[121,273,73,0.08212699504622387],[121,273,74,0.07824789299743774],[121,273,75,0.07426423353148831],[121,273,76,0.07021547310914433],[121,273,77,0.06613850797787514],[121,273,78,0.062066906458561485],[121,273,79,0.05803026820095573],[121,274,64,0.11404048364636248],[121,274,65,0.10444156549807848],[121,274,66,0.10022671392522813],[121,274,67,0.09980036794132717],[121,274,68,0.09945226918860149],[121,274,69,0.09917072904782602],[121,274,70,0.09893562959213192],[121,274,71,0.09872058845802925],[121,274,72,0.09685740190722944],[121,274,73,0.09293651311386178],[121,274,74,0.08883600485254496],[121,274,75,0.0845991114306737],[121,274,76,0.08026853491555867],[121,274,77,0.07588538082027126],[121,274,78,0.07148821996360277],[121,274,79,0.06711227733377217],[121,275,64,0.10822968432147878],[121,275,65,0.1072869725755578],[121,275,66,0.10665866769611464],[121,275,67,0.10610487303429199],[121,275,68,0.105088682101386],[121,275,69,0.10431742870711719],[121,275,70,0.10407408345416091],[121,275,71,0.1042974331089137],[121,275,72,0.10455760104001931],[121,275,73,0.10363757281713121],[121,275,74,0.09934010582309294],[121,275,75,0.09487594490973092],[121,275,76,0.09029062717327323],[121,275,77,0.08562902887157378],[121,275,78,0.08093426797890965],[121,275,79,0.07624673381776016],[121,276,64,0.11102551311300757],[121,276,65,0.10782201740021191],[121,276,66,0.10529311417188514],[121,276,67,0.10343008345329502],[121,276,68,0.102209913963487],[121,276,69,0.10159452696633159],[121,276,70,0.1015302313759488],[121,276,71,0.10195018945736906],[121,276,72,0.10277341606969703],[121,276,73,0.10390118021190736],[121,276,74,0.1052240388329514],[121,276,75,0.10502975005195336],[121,276,76,0.100222782679541],[121,276,77,0.0953170728109724],[121,276,78,0.09035971826772894],[121,276,79,0.08539568709233233],[121,277,64,0.10819084800004375],[121,277,65,0.1050131371073944],[121,277,66,0.10254311759383367],[121,277,67,0.10077093688685207],[121,277,68,0.09967151835201515],[121,277,69,0.09920369299644821],[121,277,70,0.09930956090822107],[121,277,71,0.09991688501245],[121,277,72,0.10093798677305033],[121,277,73,0.10226664362460158],[121,277,74,0.10379040741255419],[121,277,75,0.10541312997473584],[121,277,76,0.107057725855079],[121,277,77,0.10489757629550378],[121,277,78,0.0997182065265935],[121,277,79,0.0945186870126136],[121,278,64,0.10573173313980544],[121,278,65,0.10257563522468194],[121,278,66,0.1001589024326559],[121,278,67,0.09847068126883429],[121,278,68,0.09748399292894727],[121,278,69,0.09715477252423776],[121,278,70,0.0974211362378763],[121,278,71,0.09820570209764712],[121,278,72,0.09941438098928901],[121,278,73,0.10093374437542507],[121,278,74,0.10264842334598456],[121,278,75,0.10446175054212653],[121,278,76,0.10629578223237701],[121,278,77,0.10808964516577169],[121,278,78,0.1089632413310774],[121,278,79,0.10357369596135815],[121,279,64,0.10365750917333877],[121,279,65,0.1005189670962276],[121,279,66,0.09814985849738145],[121,279,67,0.09653846721061721],[121,279,68,0.09565608661402203],[121,279,69,0.09545596636734521],[121,279,70,0.09587248498997775],[121,279,71,0.09682339696353481],[121,279,72,0.0982085182202801],[121,279,73,0.09990753655126722],[121,279,74,0.1018022675044879],[121,279,75,0.10379551265645592],[121,279,76,0.10580846427935048],[121,279,77,0.10777905869436444],[121,279,78,0.10966055366960525],[121,279,79,0.11142028421589423],[121,280,64,0.10197526070741436],[121,280,65,0.09885038941490004],[121,280,66,0.09652324698900194],[121,280,67,0.09498139800114963],[121,280,68,0.09419459184346862],[121,280,69,0.09411361730069712],[121,280,70,0.09466938058747365],[121,280,71,0.09577507846242572],[121,280,72,0.09732477768287684],[121,280,73,0.0991916387230265],[121,280,74,0.10125478669543314],[121,280,75,0.10341649132250907],[121,280,76,0.10559708652217814],[121,280,77,0.10773332521931078],[121,280,78,0.10977697664737207],[121,280,79,0.11169359475682861],[121,281,64,0.10068967407424295],[121,281,65,0.09757480957681508],[121,281,66,0.0952840422235976],[121,281,67,0.09380436452716134],[121,281,68,0.09310417354765366],[121,281,69,0.09313203395733788],[121,281,70,0.09381566191606255],[121,281,71,0.09506402425892807],[121,281,72,0.09676581174921495],[121,281,73,0.0987880451708022],[121,281,74,0.10100730316588352],[121,281,75,0.10332533382565412],[121,281,76,0.10566162965538511],[121,281,77,0.10795177868782191],[121,281,78,0.11014607485615857],[121,281,79,0.11220829197728494],[121,282,64,0.09980307866820592],[121,282,65,0.09669481918820622],[121,282,66,0.09443495801175483],[121,282,67,0.09301006528599176],[121,282,68,0.09238738359525805],[121,282,69,0.0925135005140415],[121,282,70,0.09331323904443944],[121,282,71,0.094691683320697],[121,282,72,0.09653254584290127],[121,282,73,0.09869712368876021],[121,282,74,0.10105961074406278],[121,282,75,0.10352125459550987],[121,282,76,0.10600073445858404],[121,282,77,0.10843250336860077],[121,282,78,0.11076540466708273],[121,282,79,0.11296144441552108],[121,283,64,0.09931594600458993],[121,283,65,0.09621118598109452],[121,283,66,0.09397693302319299],[121,283,67,0.09259948586136246],[121,283,68,0.092045135093065],[121,283,69,0.09225874655576699],[121,283,70,0.0931625593938108],[121,283,71,0.09465813907293608],[121,283,72,0.096624639137115],[121,283,73,0.09891807423427951],[121,283,74,0.10141043174216352],[121,283,75,0.10400249058935374],[121,283,76,0.10661215580249023],[121,283,77,0.10917278652632467],[121,283,78,0.11163181159674795],[121,283,79,0.11394949319268005],[121,284,64,0.0992264022086764],[121,284,65,0.0961223592529159],[121,284,66,0.09390862986603082],[121,284,67,0.09257139237102119],[121,284,68,0.09207619095032515],[121,284,69,0.09236643150131968],[121,284,70,0.0933620887400804],[121,284,71,0.09496158765770779],[121,284,72,0.0970399607050485],[121,284,73,0.09944840352585943],[121,284,74,0.10205689051214806],[121,284,75,0.10476577429114642],[121,284,76,0.1074922355409555],[121,284,77,0.11016859160858683],[121,284,78,0.11274090412894544],[121,284,79,0.11516772673081044],[121,285,64,0.0995300286026059],[121,285,65,0.09642426402394033],[121,285,66,0.09422622341691145],[121,285,67,0.09292211461824995],[121,285,68,0.09247694252847277],[121,285,69,0.09283291943464106],[121,285,70,0.09390808289217284],[121,285,71,0.09559810708904132],[121,285,72,0.0977743567231083],[121,285,73,0.10028369077693189],[121,285,74,0.10299427812522988],[121,285,75,0.10580609770084509],[121,285,76,0.10863566611571035],[121,285,77,0.11141432170355198],[121,285,78,0.11408681718316438],[121,285,79,0.11661004429705613],[121,286,64,0.1002198949434821],[121,286,65,0.0971103284417632],[121,286,66,0.0949234229154976],[121,286,67,0.09364556345170982],[121,286,68,0.0932414228765544],[121,286,69,0.09365228884098675],[121,286,70,0.09479459454581085],[121,286,71,0.09656166180616171],[121,286,72,0.0988216532401211],[121,286,73,0.1014175891025107],[121,286,74,0.10421605275302187],[121,286,75,0.107116711954782],[121,286,76,0.11003548960325266],[121,286,77,0.11290281811620495],[121,286,78,0.11566221022970047],[121,286,79,0.11826895356265055],[121,287,64,0.10128662766391272],[121,287,65,0.09817154670253536],[121,287,66,0.09599153003997668],[121,287,67,0.09473328451994611],[121,287,68,0.09436135672494494],[121,287,69,0.09481637941689991],[121,287,70,0.09601351748180159],[121,287,71,0.09784414480197945],[121,287,72,0.1001736967190569],[121,287,73,0.10284186486888042],[121,287,74,0.10571387813097638],[121,287,75,0.10868916512665394],[121,287,76,0.11168313499201349],[121,287,77,0.11462539717012565],[121,287,78,0.11745830356727843],[121,287,79,0.12013560620119462],[121,288,64,0.10271851308872437],[121,288,65,0.09959657746265405],[121,288,66,0.09741953293729477],[121,288,67,0.09617454839426592],[121,288,68,0.0958262472110602],[121,288,69,0.09631487592769256],[121,288,70,0.09755466808254731],[121,288,71,0.09943545730056158],[121,288,72,0.10182043232499327],[121,288,73,0.10454647496006364],[121,288,74,0.10747770007787294],[121,288,75,0.11051337818290541],[121,288,76,0.11356849366361432],[121,288,77,0.11657192520864657],[121,288,78,0.11946495273710656],[121,288,79,0.12219987150020417],[121,289,64,0.10450163562799891],[121,289,65,0.10137187774106893],[121,289,66,0.09919423620827056],[121,289,67,0.09795647706014188],[121,289,68,0.09762349933722064],[121,289,69,0.09813542911258938],[121,289,70,0.0994059041669314],[121,289,71,0.10132362598373179],[121,289,72,0.10375001995946798],[121,289,73,0.10651968196120959],[121,289,74,0.10949586107149267],[121,289,75,0.11257775909264],[121,289,76,0.11568003307834973],[121,289,77,0.11873093179552718],[121,289,78,0.12167076107348884],[121,289,79,0.12445044798605195],[121,290,64,0.10662005094632487],[121,290,65,0.10348187231209],[121,290,66,0.10130042684747781],[121,290,67,0.10006420677702865],[121,290,68,0.09973858016055392],[121,290,69,0.10026381363742098],[121,290,70,0.10155328114346801],[121,290,71,0.10349495776669121],[121,290,72,0.10594898804111241],[121,290,73,0.10874820725879908],[121,290,74,0.11175525288037891],[121,290,75,0.11486935509196394],[121,290,76,0.1180049486648001],[121,290,77,0.1210897611150491],[121,290,78,0.124063230390906],[121,290,79,0.1268750130622155],[121,291,64,0.10905599410824302],[121,291,65,0.1059091585886821],[121,291,66,0.10372107613787951],[121,291,67,0.10248108730657662],[121,291,68,0.10215521571491804],[121,291,69,0.10268412309484748],[121,291,70,0.10398124548169696],[121,291,71,0.10593423212263797],[121,291,72,0.10840242503254272],[121,291,73,0.11121742205764079],[121,291,74,0.1142415072516546],[121,291,75,0.11737404310272848],[121,291,76,0.1205293539135393],[121,291,77,0.12363476157149772],[121,291,78,0.12662894980752532],[121,291,79,0.12946041066079078],[121,292,64,0.11179012270000666],[121,292,65,0.10863474699636277],[121,292,66,0.106437577500333],[121,292,67,0.10518891750936132],[121,292,68,0.10485562466496678],[121,292,69,0.10537900205223566],[121,292,70,0.10667286550194688],[121,292,71,0.10862493095651099],[121,292,72,0.11109420871363629],[121,292,73,0.11391157631478815],[121,292,74,0.11693922465502915],[121,292,75,0.12007675830580594],[121,292,76,0.12323850867507585],[121,292,77,0.12635151358816787],[121,292,78,0.12935382270528173],[121,292,79,0.1321928769074147],[121,293,64,0.11480179492755094],[121,293,65,0.11163833683759922],[121,293,66,0.10943002029785798],[121,293,67,0.10816821731002191],[121,293,68,0.10782078869224776],[121,293,69,0.10832991514708018],[121,293,70,0.1096100994833556],[121,293,71,0.11154950602774688],[121,293,72,0.11400727320107984],[121,293,73,0.11681406559026175],[121,293,74,0.11983224108287815],[121,293,75,0.12296176086878285],[121,293,76,0.12611708566190655],[121,293,77,0.12922509560577422],[121,293,78,0.1322233318264065],[121,293,79,0.13505830379947145],[121,294,64,0.1180693826906562],[121,294,65,0.11489862764668923],[121,294,66,0.1126774995946574],[121,294,67,0.11139853603079564],[121,294,68,0.1110307596133217],[121,294,69,0.11151745322995449],[121,294,70,0.11277410109013586],[121,294,71,0.11468968392203571],[121,294,72,0.11712391371417663],[121,294,73,0.11990773581456521],[121,294,74,0.1229039329063831],[121,294,75,0.12601294082805606],[121,294,76,0.12914947515467146],[121,294,77,0.1322403882802522],[121,294,78,0.13522284250639302],[121,294,79,0.1380425408975732],[121,295,64,0.12157061963345067],[121,295,65,0.11839366603527329],[121,295,66,0.11615846187003209],[121,295,67,0.11485879709359298],[121,295,68,0.11446500323004871],[121,295,69,0.11492167655514207],[121,295,70,0.11614556211623461],[121,295,71,0.11802680857222758],[121,295,72,0.12042612908706388],[121,295,73,0.1231752259731469],[121,295,74,0.1261375597878867],[121,295,75,0.1292141611254884],[121,295,76,0.13232012791256623],[121,295,77,0.13538241688010968],[121,295,78,0.13833794404355695],[121,295,79,0.1411317350304731],[121,296,64,0.1252829841710427],[121,296,65,0.12210122802826262],[121,296,66,0.11985108668698058],[121,296,67,0.11852767909040152],[121,296,68,0.11810277991182594],[121,296,69,0.11852249501872747],[121,296,70,0.11970509254816708],[121,296,71,0.12154222132816711],[121,296,72,0.12389600202711837],[121,296,73,0.12659934870758274],[121,296,74,0.1295166456492342],[121,296,75,0.13254963879939397],[121,296,76,0.13561393628778035],[121,296,77,0.13863673188309378],[121,296,78,0.1415548292049572],[121,296,79,0.14431270801317453],[121,297,64,0.12918411749250536],[121,297,65,0.1259992368904128],[121,297,66,0.1237337043157084],[121,297,67,0.12238403322224639],[121,297,68,0.12192356191000889],[121,297,69,0.12230008544438306],[121,297,70,0.123433637946261],[121,297,71,0.1252176785756954],[121,297,72,0.12751611711978889],[121,297,73,0.13016350883372158],[121,297,74,0.13302539769634636],[121,297,75,0.13600436433009977],[121,297,76,0.13901665354421056],[121,297,77,0.14198982777242541],[121,297,78,0.14486071186892943],[121,297,79,0.14757337237849175],[121,298,64,0.13325227654000082],[121,298,65,0.1300662164433259],[121,298,66,0.1277852493118331],[121,298,67,0.12640733710648833],[121,298,68,0.12590748740429358],[121,298,69,0.1262353459166268],[121,298,70,0.1273129341440853],[121,298,71,0.12903580690459004],[121,298,72,0.13127001657962634],[121,298,73,0.13385215977656206],[121,298,74,0.13664916349979148],[121,298,75,0.1395645591398482],[121,298,76,0.14251535138021204],[121,298,77,0.14542960003236127],[121,298,78,0.1482442828039912],[121,298,79,0.1509031851218174],[121,299,64,0.1374668219641926],[121,299,65,0.13428177987302983],[121,299,66,0.1319857500494313],[121,299,67,0.1305781849526127],[121,299,68,0.13003585128121609],[121,299,69,0.13031038716170773],[121,299,70,0.13132599926622185],[121,299,71,0.1329805958256045],[121,299,72,0.13514269374767274],[121,299,73,0.13765129792202327],[121,299,74,0.14037492613151792],[121,299,75,0.14321817124720562],[121,299,76,0.14609891565555222],[121,299,77,0.14894584034325123],[121,299,78,0.15169620358428884],[121,299,79,0.15429363945927033],[121,300,64,0.1418087410559341],[121,300,65,0.13862715402812623],[121,300,66,0.13631685420892167],[121,300,67,0.13487881410649616],[121,300,68,0.1342916326447537],[121,300,69,0.13450906097610427],[121,300,70,0.13545766306436455],[121,300,71,0.13703792803658882],[121,300,72,0.1391211243351928],[121,300,73,0.14154899488559228],[121,300,74,0.14419183735773217],[121,300,75,0.14695540907595894],[121,300,76,0.14975858032255246],[121,300,77,0.15253076997607332],[121,300,78,0.15520963864156534],[121,300,79,0.1577387945992007],[121,301,64,0.14626120565411385],[121,301,65,0.14308573920838125],[121,301,66,0.14076239021965592],[121,301,67,0.13929366796302822],[121,301,68,0.13866005905890635],[121,301,69,0.13881752570251316],[121,301,70,0.13969513357162172],[121,301,71,0.1411961472375705],[121,301,72,0.14319483541362255],[121,301,73,0.14553596769772298],[121,301,74,0.14809178888779442],[121,301,75,0.15076931341837413],[121,301,76,0.1534884995612863],[121,301,77,0.1561796113863168],[121,301,78,0.15878082545352193],[121,301,79,0.16123584352692583],[121,302,64,0.15081016502979777],[121,302,65,0.14764370444390773],[121,302,66,0.14530896465736767],[121,302,67,0.14380999524723567],[121,302,68,0.14312920752240535],[121,302,69,0.14322484875347707],[121,302,70,0.14402860107517318],[121,302,71,0.14544666349494445],[121,302,72,0.14735651215088988],[121,302,73,0.1496061869061414],[121,302,74,0.15207002167928954],[121,302,75,0.15465636755297366],[121,302,76,0.1572863581189963],[121,302,77,0.15989119800737567],[121,302,78,0.16240968286873536],[121,302,79,0.1647857188028592],[121,303,64,0.1554449737466327],[121,303,65,0.15229061826489498],[121,303,66,0.14994659559643425],[121,303,67,0.14841848566386395],[121,303,68,0.14769064217550526],[121,303,69,0.14772364618260386],[121,303,70,0.1484518794072328],[121,303,71,0.14978459615472225],[121,303,72,0.15160264229405188],[121,303,73,0.15375752259500336],[121,303,74,0.15612577329921679],[121,303,75,0.1586171455167759],[121,303,76,0.16115401985366898],[121,303,77,0.16366862224339018],[121,303,78,0.16610045756806713],[121,303,79,0.16839373637396773],[121,304,64,0.16015905449740972],[121,304,65,0.15702011496179086],[121,304,66,0.1546693819168576],[121,304,67,0.15311394191532426],[121,304,68,0.15234008873876448],[121,304,69,0.15231075930328844],[121,304,70,0.15296308455422797],[121,304,71,0.1542094543047569],[121,304,72,0.1559341983981683],[121,304,73,0.15799242832082105],[121,304,74,0.16026296334121648],[121,304,75,0.16265699853191604],[121,304,76,0.16509821448168976],[121,304,77,0.16751992166146054],[121,304,78,0.1698624086624905],[121,304,79,0.1720702773984851],[121,305,64,0.16495059591693007],[121,305,65,0.1618305963360749],[121,305,66,0.15947620856610215],[121,305,67,0.15789598808814087],[121,305,68,0.15707814568395317],[121,305,69,0.15698796835506976],[121,305,70,0.15756535058432822],[121,305,71,0.15872585478606852],[121,305,72,0.16035735780153587],[121,305,73,0.16231866296528608],[121,305,74,0.16449091689896084],[121,305,75,0.16678677958677474],[121,305,76,0.169131262529702],[121,305,77,0.17145880338335523],[121,305,78,0.1737105304274574],[121,305,79,0.1758315080840004],[121,306,64,0.1698232853711465],[121,306,65,0.16672596894159725],[121,306,66,0.16437148777576374],[121,306,67,0.16276981440787647],[121,306,68,0.16191103213706232],[121,306,69,0.16176274321760115],[121,306,70,0.16226758289330184],[121,306,71,0.1633442777532552],[121,306,72,0.16488426034726655],[121,306,73,0.16675005050497027],[121,306,74,0.16882512609569011],[121,306,75,0.1710236061715945],[121,306,76,0.1732718384906524],[121,306,77,0.17550540667669662],[121,306,78,0.177666313173786],[121,306,79,0.17970013753890585],[121,307,64,0.17478585884953796],[121,307,65,0.17171520662555645],[121,307,66,0.16936472628653054],[121,307,67,0.16774574144418042],[121,307,68,0.16685014184719515],[121,307,69,0.16664778066220529],[121,307,70,0.1670839732609365],[121,307,71,0.16808055535099203],[121,307,72,0.16953246809943223],[121,307,73,0.17130591008590407],[121,307,74,0.1732866515870607],[121,307,75,0.17539023564837108],[121,307,76,0.17754432358659838],[121,307,77,0.17968563746486627],[121,307,78,0.1817570644491246],[121,307,79,0.18370473098197143],[121,308,64,0.17982764472541096],[121,308,65,0.17678803245044483],[121,308,66,0.1744461971517312],[121,308,67,0.172814737983571],[121,308,68,0.17188727212863655],[121,308,69,0.17163582294194152],[121,308,70,0.17200830544542076],[121,308,71,0.17292958608951478],[121,308,72,0.17429804079491712],[121,308,73,0.17598348165106859],[121,308,74,0.1778739256699005],[121,308,75,0.1798863056940304],[121,308,76,0.1819495697895033],[121,308,77,0.18400156285852226],[121,308,78,0.18598605644623667],[121,308,79,0.1878497430006781],[121,309,64,0.18491575257560647],[121,309,65,0.1819120264259332],[121,309,66,0.17958397102895535],[121,309,67,0.17794538053021358],[121,309,68,0.17699151605287974],[121,309,69,0.17669648679722522],[121,309,70,0.17701072454839384],[121,309,71,0.17786204729627164],[121,309,72,0.1791521930214845],[121,309,73,0.18075452811221773],[121,309,74,0.18255929838058632],[121,309,75,0.18448482259024807],[121,309,76,0.1864613285949962],[121,309,77,0.18842777931162952],[121,309,78,0.1903288335126236],[121,309,79,0.1921117658215509],[121,310,64,0.19001636000727926],[121,310,65,0.187053742310782],[121,310,66,0.18474500023048845],[121,310,67,0.18310503785297044],[121,310,68,0.18213067266279687],[121,310,69,0.1817980119783037],[121,310,70,0.18205991909530472],[121,310,71,0.18284708332813907],[121,310,72,0.1840645327434098],[121,310,73,0.18558913405054994],[121,310,74,0.18731337041363394],[121,310,75,0.18915697205261114],[121,310,76,0.19105145918703406],[121,310,77,0.1929369188696453],[121,310,78,0.19475890366766277],[121,310,79,0.1964652843715965],[121,311,64,0.19509592842872098],[121,311,65,0.19217992345382362],[121,311,66,0.18989633891835608],[121,311,67,0.1882610997013392],[121,311,68,0.18727248812600394],[121,311,69,0.18690851835452083],[121,311,70,0.18712439705813627],[121,311,71,0.1878536027257981],[121,311,72,0.18900438087170202],[121,311,73,0.1904570478335891],[121,311,74,0.19210635656668879],[121,311,75,0.19387350156032923],[121,311,76,0.19569132621217683],[121,311,77,0.19750105816257252],[121,311,78,0.1992491539966264],[121,311,79,0.2008840928397324],[121,312,64,0.2001215765047234],[121,312,65,0.19725787638825285],[121,312,66,0.1950055155300962],[121,312,67,0.1933813468185676],[121,312,68,0.19238502218689177],[121,312,69,0.19199636778664914],[121,312,70,0.19217284229494086],[121,312,71,0.19285062857009194],[121,312,72,0.19394111512822254],[121,312,73,0.19532801884214993],[121,312,74,0.19690841631964714],[121,312,75,0.19860504431716697],[121,312,76,0.20035211717443788],[121,312,77,0.20209202929267867],[121,312,78,0.20377215508261684],[121,312,79,0.205341592683033],[121,313,64,0.20506216132007693],[121,313,65,0.2022564427762993],[121,313,66,0.20004139500405232],[121,313,67,0.19843470328882334],[121,313,68,0.19743729084640516],[121,313,69,0.1970306977478682],[121,313,70,0.19717454014746505],[121,313,71,0.19780761754814352],[121,313,72,0.1988443845585274],[121,313,73,0.20017190990882947],[121,313,74,0.2016896670477623],[121,313,75,0.20332203635836188],[121,313,76,0.20500466679563123],[121,313,77,0.20668115501993176],[121,313,78,0.20829981077277063],[121,313,79,0.2098103608853975],[121,314,64,0.2098881189376275],[121,314,65,0.20714585886886283],[121,314,66,0.2049740558408598],[121,314,67,0.2033911299073421],[121,314,68,0.20239917478546957],[121,314,69,0.20198134361598774],[121,314,70,0.20209931252339713],[121,314,71,0.20269440688900905],[121,314,72,0.2036840675644245],[121,314,73,0.2049586658955037],[121,314,74,0.2064201626859027],[121,314,75,0.20799470485413885],[121,314,76,0.20961945450418343],[121,314,77,0.21123925496111176],[121,314,78,0.21280337257854964],[121,314,79,0.2142621720038473],[121,315,64,0.21457088277137593],[121,315,65,0.21189728448144918],[121,315,66,0.20977442771650168],[121,315,67,0.20822136823107001],[121,315,68,0.2072412674539855],[121,315,69,0.20681878823855382],[121,315,70,0.20691756625154117],[121,315,71,0.20748135874065776],[121,315,72,0.20843050949614766],[121,315,73,0.20965864168785386],[121,315,74,0.2110703092127735],[121,315,75,0.21259356800166845],[121,315,76,0.21416718547573538],[121,315,77,0.21573730433830962],[121,315,78,0.21725417250753903],[121,315,79,0.21866880127494237],[121,316,64,0.21908320056616834],[121,316,65,0.21648313046905043],[121,316,66,0.21441462817287782],[121,316,67,0.21289728522662277],[121,316,68,0.21193522646902618],[121,316,69,0.21151451895693496],[121,316,70,0.21160065472348025],[121,316,71,0.2121397255716751],[121,316,72,0.21305489114347512],[121,316,73,0.21424297331674663],[121,316,74,0.21561123806158244],[121,316,75,0.2170898104278913],[121,316,76,0.21861916775625392],[121,316,77,0.2201468125596274],[121,316,78,0.22162400283372108],[121,316,79,0.2216676876233684],[121,317,64,0.22339948524966652],[121,317,65,0.2208774164644678],[121,317,66,0.2188683260125552],[121,317,67,0.2173922411182465],[121,317,68,0.21645414476862546],[121,317,69,0.21604140100514002],[121,317,70,0.2161212525955042],[121,317,71,0.21664202538700608],[121,317,72,0.21752960386369335],[121,317,73,0.21868395260902887],[121,317,74,0.2200151800318059],[121,317,75,0.22145565615788904],[121,317,76,0.2229476841207184],[121,317,77,0.22444019382307845],[121,317,78,0.22397115052106936],[121,317,79,0.2172812110629795],[121,318,64,0.22749616942140155],[121,318,65,0.22505613239316308],[121,318,66,0.22311110863360403],[121,318,67,0.2216814613593667],[121,318,68,0.22077292608771967],[121,318,69,0.22037405543881636],[121,318,70,0.22045373523186573],[121,318,71,0.22096242189216989],[121,318,72,0.22182862985326668],[121,318,73,0.22295540715768725],[121,318,74,0.22425584467767254],[121,318,75,0.22566474720494525],[121,318,76,0.22712636969158173],[121,318,77,0.22618845078318942],[121,318,78,0.21920654993420796],[121,318,79,0.21257482690313256],[121,319,64,0.23135206347891013],[121,319,65,0.22899760376463418],[121,319,66,0.22712085330451906],[121,319,67,0.22574241272772033],[121,319,68,0.22486866475623557],[121,319,69,0.22448924159442424],[121,319,70,0.22457456288935326],[121,319,71,0.22507710960593563],[121,319,72,0.22592792756320357],[121,319,73,0.22703308561136004],[121,319,74,0.22830880517335211],[121,319,75,0.22969252778228158],[121,319,76,0.22815685002691705],[121,319,77,0.2209816254297499],[121,319,78,0.2140870303007104],[121,319,79,0.20754874630855927],[122,-64,64,0.3454963702900585],[122,-64,65,0.3515110008654922],[122,-64,66,0.35762967373691784],[122,-64,67,0.3638359345342806],[122,-64,68,0.3701328863508007],[122,-64,69,0.37653691718523435],[122,-64,70,0.38305957887903425],[122,-64,71,0.38970685121467674],[122,-64,72,0.39647890786278994],[122,-64,73,0.40336998554366166],[122,-64,74,0.41036835892283974],[122,-64,75,0.41745642361791857],[122,-64,76,0.42461088953823517],[122,-64,77,0.43180308661262645],[122,-64,78,0.4389993847837966],[122,-64,79,0.44616172996364184],[122,-63,64,0.347951033860168],[122,-63,65,0.35406578707245573],[122,-63,66,0.36028968274878176],[122,-63,67,0.3666066263511966],[122,-63,68,0.3730189871552287],[122,-63,69,0.37954164943859126],[122,-63,70,0.38618462637983847],[122,-63,71,0.3929523788851739],[122,-63,72,0.39984361778094146],[122,-63,73,0.40685120602700964],[122,-63,74,0.41396216331851715],[122,-63,75,0.4211577753030068],[122,-63,76,0.42841380948766655],[122,-63,77,0.43570083974876384],[122,-63,78,0.44298468118352774],[122,-63,79,0.45022693686608756],[122,-62,64,0.35058327326116767],[122,-62,65,0.35678852455322974],[122,-62,66,0.3631064429388685],[122,-62,67,0.36952164375793783],[122,-62,68,0.37603572085425496],[122,-62,69,0.3826617721106279],[122,-62,70,0.38940811055895236],[122,-62,71,0.3962776307990123],[122,-62,72,0.4032676323178824],[122,-62,73,0.41036974006670657],[122,-62,74,0.4175699245368076],[122,-62,75,0.4248486234395093],[122,-62,76,0.43218096694531416],[122,-62,77,0.4395371082796776],[122,-62,78,0.4468826613056573],[122,-62,79,0.4541792465505361],[122,-61,64,0.3533775510295663],[122,-61,65,0.3596634332867185],[122,-61,66,0.36606388222642117],[122,-61,67,0.3725645373164883],[122,-61,68,0.37916619178637156],[122,-61,69,0.38587992332571147],[122,-61,70,0.3927122249742287],[122,-61,71,0.39966441166283057],[122,-61,72,0.40673245008333986],[122,-61,73,0.4139068834759803],[122,-61,74,0.42117285347646033],[122,-61,75,0.4285102210303989],[122,-61,76,0.43589378823806474],[122,-61,77,0.44329362283843876],[122,-61,78,0.4506754868795417],[122,-61,79,0.45800137095408455],[122,-60,64,0.3563147945127344],[122,-60,65,0.36267135552965546],[122,-60,66,0.3691427612046786],[122,-60,67,0.37571593944789217],[122,-60,68,0.3823908699204821],[122,-60,69,0.38917642775350175],[122,-60,70,0.3960772075912579],[122,-60,71,0.4030929627060156],[122,-60,72,0.41021842784172485],[122,-60,73,0.41744323503155906],[122,-60,74,0.42475192445419907],[122,-60,75,0.4321240522636468],[122,-60,76,0.43953439718685705],[122,-60,77,0.44695326753409337],[122,-60,78,0.4543469101096939],[122,-60,79,0.4616780223481459],[122,-59,64,0.3593731793520645],[122,-59,65,0.3657905559412019],[122,-59,66,0.3723214926732483],[122,-59,67,0.37895440515251894],[122,-59,68,0.38568845238707383],[122,-59,69,0.39253017590296835],[122,-59,70,0.3994822324710907],[122,-59,71,0.40654285844666904],[122,-59,72,0.4137056734725804],[122,-59,73,0.42095957555404606],[122,-59,74,0.42828872951281005],[122,-59,75,0.43567265070308775],[122,-59,76,0.4430863857355791],[122,-59,77,0.45050079181110614],[122,-59,78,0.45788291611299636],[122,-59,79,0.46519647654942625],[122,-58,64,0.3625290689283026],[122,-58,65,0.3689976772767258],[122,-58,66,0.37557711580827124],[122,-58,67,0.3822574058683613],[122,-58,68,0.38903687585549773],[122,-58,69,0.39591965086082465],[122,-58,70,0.40290644415422583],[122,-58,71,0.40999403990147587],[122,-58,72,0.417175067533571],[122,-58,73,0.42443786614239365],[122,-58,74,0.4317664408700301],[122,-58,75,0.43914051313787184],[122,-58,76,0.4465356664303193],[122,-58,77,0.4539235892078641],[122,-58,78,0.46127241637660993],[122,-58,79,0.468547170588058],[122,-57,64,0.36575810925358404],[122,-57,65,0.37226885109721514],[122,-57,66,0.3788864243986698],[122,-57,67,0.38560247589520497],[122,-57,68,0.39241447920104444],[122,-57,69,0.3993241019501917],[122,-57,70,0.40633013426517683],[122,-57,71,0.4134279838288269],[122,-57,72,0.4206094130969831],[122,-57,73,0.42786236533155997],[122,-57,74,0.43517088139160837],[122,-57,75,0.4425151091037251],[122,-57,76,0.4498714069066675],[122,-57,77,0.4572125433297529],[122,-57,78,0.46450799372159657],[122,-57,79,0.47172433549709636],[122,-56,64,0.36903314836497686],[122,-56,65,0.3755774405261301],[122,-56,66,0.38222352289243755],[122,-56,67,0.3889645779338782],[122,-56,68,0.39579717791002006],[122,-56,69,0.40272052918085854],[122,-56,70,0.40973154015294055],[122,-56,71,0.4168243235331947],[122,-56,72,0.4239898910535774],[122,-56,73,0.4312159358244672],[122,-56,74,0.4384867042310402],[122,-56,75,0.44578295917561445],[122,-56,76,0.45308203634743793],[122,-56,77,0.4603579950709891],[122,-56,78,0.46758186514556316],[122,-56,79,0.4747219909448535],[122,-55,64,0.3723053439287021],[122,-55,65,0.3788739476235873],[122,-55,66,0.38553845243915513],[122,-55,67,0.39229341935294365],[122,-55,68,0.39913448167826476],[122,-55,69,0.4060584457634475],[122,-55,70,0.41306043245044805],[122,-55,71,0.42013338024910163],[122,-55,72,0.4272676927981596],[122,-55,73,0.43445097285363954],[122,-55,74,0.44166784470237863],[122,-55,75,0.4488998667925028],[122,-55,76,0.45612553625592855],[122,-55,77,0.4633203868723758],[122,-55,78,0.47045718189065266],[122,-55,79,0.4775062029832811],[122,-54,64,0.37552155945375165],[122,-54,65,0.38210424432567186],[122,-54,66,0.38877627822817434],[122,-54,67,0.3955334035747718],[122,-54,68,0.40237030127648377],[122,-54,69,0.4092815108595048],[122,-54,70,0.41626052069069674],[122,-54,71,0.4232992641724393],[122,-54,72,0.4303877150146835],[122,-54,73,0.4375135681756599],[122,-54,74,0.44466200836261227],[122,-54,75,0.4518155678825135],[122,-54,76,0.45895407552072415],[122,-54,77,0.4660546980042511],[122,-54,78,0.4730920754766903],[122,-54,79,0.48003855227609143],[122,-53,64,0.37863631277899196],[122,-53,65,0.38522215502166834],[122,-53,66,0.39189033544336555],[122,-53,67,0.3986375487508288],[122,-53,68,0.40545753170604976],[122,-53,69,0.4123427514090224],[122,-53,70,0.4192852686249501],[122,-53,71,0.4262762179645808],[122,-53,72,0.4333053461946477],[122,-53,73,0.4403606357268252],[122,-53,74,0.44742801518150205],[122,-53,75,0.45449115882551455],[122,-53,76,0.4615313765749568],[122,-53,77,0.4685275961365803],[122,-53,78,0.47545643873512305],[122,-53,79,0.482292389741146],[122,-52,64,0.38161200923247773],[122,-52,65,0.388189673526228],[122,-52,66,0.39484242701594],[122,-52,67,0.4015676638834782],[122,-52,68,0.4083582044765007],[122,-52,69,0.4152046883169162],[122,-52,70,0.4220979921993886],[122,-52,71,0.42902868466974],[122,-52,72,0.4359865030283764],[122,-52,73,0.4429599154905121],[122,-52,74,0.4499357704165879],[122,-52,75,0.45689903443259616],[122,-52,76,0.4638326211551521],[122,-52,77,0.4707173121213403],[122,-52,78,0.47753177139966985],[122,-52,79,0.4842526552277812],[122,-51,64,0.3844192296305037],[122,-51,65,0.3909772313000128],[122,-51,66,0.39760306871430984],[122,-51,67,0.40429456795821495],[122,-51,68,0.4110436781979929],[122,-51,69,0.4178394960490761],[122,-51,70,0.4246719859931828],[122,-51,71,0.4315313992703559],[122,-51,72,0.4384076858984515],[122,-51,73,0.4452899923718214],[122,-51,74,0.4521662469816727],[122,-51,75,0.4590228346094303],[122,-51,76,0.46584436274166563],[122,-51,77,0.47261352034208187],[122,-51,78,0.4793110310936733],[122,-51,79,0.48591570239443543],[122,-50,64,0.38563480653614535],[122,-50,65,0.3931562400094889],[122,-50,66,0.4001518432744236],[122,-50,67,0.4067984170599072],[122,-50,68,0.41349493570161977],[122,-50,69,0.42022926697303853],[122,-50,70,0.42699075236253853],[122,-50,71,0.4337695807224312],[122,-50,72,0.4405561325040392],[122,-50,73,0.447340410791472],[122,-50,74,0.45411156111680606],[122,-50,75,0.46085748194958676],[122,-50,76,0.46756452765174894],[122,-50,77,0.47421730557646663],[122,-50,78,0.48079856886714356],[122,-50,79,0.48728920638267476],[122,-49,64,0.3864156199790607],[122,-49,65,0.3939489045246481],[122,-49,66,0.40150316194369073],[122,-49,67,0.4090619375703085],[122,-49,68,0.41570003444150483],[122,-49,69,0.42236406987870717],[122,-49,70,0.42904667195367263],[122,-49,71,0.4357382056782798],[122,-49,72,0.44242967314591086],[122,-49,73,0.44911207741990783],[122,-49,74,0.45577587692276245],[122,-49,75,0.462410532267167],[122,-49,76,0.46900414736794793],[122,-49,77,0.4755432065605551],[122,-49,78,0.4820124093283209],[122,-49,79,0.48839460410900487],[122,-48,64,0.3872850385038772],[122,-48,65,0.39482473059855133],[122,-48,66,0.4023943429647891],[122,-48,67,0.4099780446524867],[122,-48,68,0.41756598215036034],[122,-48,69,0.4242341970910447],[122,-48,70,0.4308347739350395],[122,-48,71,0.43743725977080633],[122,-48,72,0.44403338784633795],[122,-48,73,0.4506152172792751],[122,-48,74,0.4571745258273305],[122,-48,75,0.46370229706540095],[122,-48,76,0.4701883038522562],[122,-48,77,0.47662078985477174],[122,-48,78,0.4829862507722406],[122,-48,79,0.48926931676926844],[122,-47,64,0.3882559264639015],[122,-47,65,0.39579369348141885],[122,-47,66,0.40336904194000334],[122,-47,67,0.41096706291504015],[122,-47,68,0.4185788077022307],[122,-47,69,0.4258348596112406],[122,-47,70,0.43235478904873503],[122,-47,71,0.4388711355752698],[122,-47,72,0.4453763891852695],[122,-47,73,0.45186363414856234],[122,-47,74,0.45832588753840703],[122,-47,75,0.4647555339344996],[122,-47,76,0.4711438582149294],[122,-47,77,0.4774806782341914],[122,-47,78,0.4837540790567091],[122,-47,79,0.48995025027880057],[122,-46,64,0.38933197367021144],[122,-46,65,0.3968570938845697],[122,-46,66,0.40442589616442703],[122,-46,67,0.4120246891344914],[122,-46,68,0.41964545362695727],[122,-46,69,0.42716749949912],[122,-46,70,0.43361176843289023],[122,-46,71,0.44004856517829694],[122,-46,72,0.4464710904960155],[122,-46,73,0.4528733504775337],[122,-46,74,0.4592494510203368],[122,-46,75,0.465592989716857],[122,-46,76,0.47189654708304785],[122,-46,77,0.47815127893373555],[122,-46,78,0.4843466115822679],[122,-46,79,0.4904700414033295],[122,-45,64,0.3905086958028623],[122,-45,65,0.3980085284402942],[122,-45,66,0.4055563982692168],[122,-45,67,0.413140116870995],[122,-45,68,0.42075264149137764],[122,-45,69,0.428239036078809],[122,-45,70,0.4346153951864514],[122,-45,71,0.44098200312658414],[122,-45,72,0.4473326653620259],[122,-45,73,0.4536621475714796],[122,-45,74,0.459965438367352],[122,-45,75,0.4662371098614423],[122,-45,76,0.4724707779927678],[122,-45,77,0.4786586644117594],[122,-45,78,0.4847912615841222],[122,-45,79,0.49085710263770066],[122,-44,64,0.39177441254562684],[122,-44,65,0.39923483896573325],[122,-44,66,0.4067458094809563],[122,-44,67,0.41429690672678343],[122,-44,68,0.42188213003904484],[122,-44,69,0.4290611271192789],[122,-44,70,0.43537930953628284],[122,-44,71,0.44168702172428953],[122,-44,72,0.44797851839482766],[122,-44,73,0.45424911623157427],[122,-44,74,0.46049443859344996],[122,-44,75,0.4667097574747136],[122,-44,76,0.47288943459882354],[122,-44,77,0.47902646340235494],[122,-44,78,0.4851121135340913],[122,-44,79,0.4911356793543419],[122,-43,64,0.3931112063477574],[122,-43,65,0.400517043331285],[122,-43,66,0.4079740554342134],[122,-43,67,0.41547384022842343],[122,-43,68,0.4230115203162385],[122,-43,69,0.4296494427634022],[122,-43,70,0.43592044555872567],[122,-43,71,0.4421817168193523],[122,-43,72,0.44842776562779885],[122,-43,73,0.45465421638274184],[122,-43,74,0.46085705006694405],[122,-43,75,0.46703194098810413],[122,-43,76,0.47317369080516475],[122,-43,77,0.47927576153293805],[122,-43,78,0.48532990908787477],[122,-43,79,0.4913259187992079],[122,-42,64,0.3944958647189193],[122,-42,65,0.4018312507386706],[122,-42,66,0.4092166072231628],[122,-42,67,0.4166457598825814],[122,-42,68,0.42378726578197146],[122,-42,69,0.4300229499756141],[122,-42,70,0.4362583774071454],[122,-42,71,0.4424861222228934],[122,-42,72,0.44870072287064067],[122,-42,73,0.45489784423918594],[122,-42,74,0.46107353034605114],[122,-42,75,0.4672235494018565],[122,-42,76,0.47334283297354196],[122,-42,77,0.47942501085122874],[122,-42,78,0.48546204309632657],[122,-42,79,0.49144395061314494],[122,-41,64,0.39590080895710156],[122,-41,65,0.40314956420968645],[122,-41,66,0.4104453503751179],[122,-41,67,0.417784397952444],[122,-41,68,0.4239948166538316],[122,-41,69,0.43020320528252415],[122,-41,70,0.43641467300364617],[122,-41,71,0.4426216309164412],[122,-41,72,0.44881840038560944],[122,-41,73,0.45500040558132065],[122,-41,74,0.46116345220460575],[122,-41,75,0.467303094108575],[122,-41,76,0.47341408942290414],[122,-41,77,0.4794899476757226],[122,-41,78,0.4855225692845535],[122,-41,79,0.491501978657912],[122,-40,64,0.3972950121931382],[122,-40,65,0.4044409730729481],[122,-40,66,0.4116294444164399],[122,-40,67,0.4178496956332663],[122,-40,68,0.4240225926372414],[122,-40,69,0.43021365359203395],[122,-40,70,0.43641225316611243],[122,-40,71,0.4426104212179273],[122,-40,72,0.44880200226764],[122,-40,73,0.4549818937454824],[122,-40,74,0.46114536467295647],[122,-40,75,0.46728745634583535],[122,-40,76,0.4734024664900707],[122,-40,77,0.4794835182543842],[122,-40,78,0.485522215287632],[122,-40,79,0.49150838402643343],[122,-39,64,0.3986449096098562],[122,-39,65,0.40555236682569934],[122,-39,66,0.41161634416413123],[122,-39,67,0.4177370147196361],[122,-39,68,0.42389600199060384],[122,-39,69,0.43007893089591315],[122,-39,70,0.43627475416231487],[122,-39,71,0.4424748861005608],[122,-39,72,0.4486724289377879],[122,-39,73,0.4548614709609081],[122,-39,74,0.4610364579596848],[122,-39,75,0.4671916393769447],[122,-39,76,0.4733205904826134],[122,-39,77,0.47941581178898257],[122,-39,78,0.48546840681789105],[122,-39,79,0.491467839217569],[122,-38,64,0.39938272911274897],[122,-38,65,0.4053401746018242],[122,-38,66,0.41138212962245807],[122,-38,67,0.41748908608268587],[122,-38,68,0.42364134025633904],[122,-38,69,0.4298241686879453],[122,-38,70,0.43602589171050277],[122,-38,71,0.44223706388821876],[122,-38,72,0.4484497811922876],[122,-38,73,0.45465705170625115],[122,-38,74,0.460852231164162],[122,-38,75,0.467028524551509],[122,-38,76,0.47317855491722516],[122,-38,77,0.47929400045602977],[122,-38,78,0.48536530082475854],[122,-38,79,0.491381433555352],[122,-37,64,0.39908293100747083],[122,-37,65,0.40501106781642865],[122,-37,66,0.411035229252152],[122,-37,67,0.41713359732592104],[122,-37,68,0.42328504217477597],[122,-37,69,0.4294742979647827],[122,-37,70,0.43568882448080404],[122,-37,71,0.4419180685869706],[122,-37,72,0.44815286428799195],[122,-37,73,0.45438488680040234],[122,-37,74,0.46060616173803515],[122,-37,75,0.4668086304527225],[122,-37,76,0.47298377250081997],[122,-37,77,0.47912228612940655],[122,-37,78,0.485213827593755],[122,-37,79,0.49124681003080495],[122,-36,64,0.3986933008827434],[122,-36,65,0.40459472907028216],[122,-36,66,0.410604280293179],[122,-36,67,0.4166978976292924],[122,-36,68,0.4228529311608638],[122,-36,69,0.4290533507203771],[122,-36,70,0.4352855151946642],[122,-36,71,0.44153751815559805],[122,-36,72,0.4477986905898406],[122,-36,73,0.45405914699033956],[122,-36,74,0.460309375706286],[122,-36,75,0.4665398743969761],[122,-36,76,0.4727408313779027],[122,-36,77,0.47890185358509374],[122,-36,78,0.485011741816878],[122,-36,79,0.4910583138415991],[122,-35,64,0.3982437352128263],[122,-35,65,0.4041201176174265],[122,-35,66,0.41011699683244995],[122,-35,67,0.4162081977989074],[122,-35,68,0.4223694641429231],[122,-35,69,0.428583756896925],[122,-35,70,0.4348360874701148],[122,-35,71,0.44111295906802567],[122,-35,72,0.44740197935678383],[122,-35,73,0.45369150485157095],[122,-35,74,0.4599703177148544],[122,-35,75,0.4662273356126769],[122,-35,76,0.47245135523547105],[122,-35,77,0.47863083004396617],[122,-35,78,0.4847536827512814],[122,-35,79,0.49080715299975497],[122,-34,64,0.3977626919840276],[122,-34,65,0.4036145921956713],[122,-34,66,0.40959932449523506],[122,-34,67,0.4156887634201008],[122,-34,68,0.4218569696260752],[122,-34,69,0.4280856348157449],[122,-34,70,0.43435817661886905],[122,-34,71,0.44065928557744405],[122,-34,72,0.4469746522991925],[122,-34,73,0.45329071387435244],[122,-34,74,0.45959442003176776],[122,-34,75,0.46587301948888316],[122,-34,76,0.4721138669255625],[122,-34,77,0.47830425098395696],[122,-34,78,0.48443124366629575],[122,-34,79,0.49048157146968735],[122,-33,64,0.39727628070014126],[122,-33,65,0.40310302441094226],[122,-33,66,0.40907458583264944],[122,-33,67,0.41516109891405556],[122,-33,68,0.42133487691639515],[122,-33,69,0.42757607318134644],[122,-33,70,0.4338662726680858],[122,-33,71,0.44018815215652823],[122,-33,72,0.446525323604201],[122,-33,73,0.452862183672181],[122,-33,74,0.45918376969321223],[122,-33,75,0.46547562235132045],[122,-33,76,0.4717236553363376],[122,-33,77,0.4779140322288311],[122,-33,78,0.48403305086117154],[122,-33,79,0.4900670353888211],[122,-32,64,0.3968073406665308],[122,-32,65,0.4026069003571964],[122,-32,66,0.40856261418009115],[122,-32,67,0.4146431203855399],[122,-32,68,0.42081893452479896],[122,-32,69,0.4270684028306894],[122,-32,70,0.43337105395458947],[122,-32,71,0.4397073776599848],[122,-32,72,0.44605878319497727],[122,-32,73,0.4524075503173696],[122,-32,74,0.4587367730541731],[122,-32,75,0.46503029629265374],[122,-32,76,0.4712726453142912],[122,-32,77,0.477448948396158],[122,-32,78,0.48354485261618957],[122,-32,79,0.48954643300934597],[122,-31,64,0.396374505278633],[122,-31,65,0.40214340826063616],[122,-31,66,0.4080788738639084],[122,-31,67,0.4141483152469097],[122,-31,68,0.4203204158622666],[122,-31,69,0.42657145648730854],[122,-31,70,0.43287870972240283],[122,-31,71,0.4392203398346406],[122,-31,72,0.4455754720655361],[122,-31,73,0.4519242408816541],[122,-31,74,0.45824781707496703],[122,-31,75,0.4645284136552657],[122,-31,76,0.4707492705124253],[122,-31,77,0.47689461786141396],[122,-31,78,0.4829063639743666],[122,-31,79,0.4885192822601573],[122,-30,64,0.39599125016461073],[122,-30,65,0.40172451005602783],[122,-30,66,0.4076335647476652],[122,-30,67,0.4136848867123472],[122,-30,68,0.4198453104413014],[122,-30,69,0.42608881487768985],[122,-30,70,0.43239025024674305],[122,-30,71,0.4387253588895423],[122,-30,72,0.44507094861550756],[122,-30,73,0.4514050313388648],[122,-30,74,0.4575421773497705],[122,-30,75,0.4630941272065568],[122,-30,76,0.46865671819969246],[122,-30,77,0.4742193704091055],[122,-30,78,0.4797693867089688],[122,-30,79,0.4852921447640857],[122,-29,64,0.3956649231677563],[122,-29,65,0.40135599493366103],[122,-29,66,0.40723070923473875],[122,-29,67,0.4132548813759046],[122,-29,68,0.4193934989119915],[122,-29,69,0.4256180376744582],[122,-29,70,0.4319008031085268],[122,-29,71,0.43821506893337325],[122,-29,72,0.443979327526623],[122,-29,73,0.44930780074938753],[122,-29,74,0.45467579590543283],[122,-29,75,0.4600790779649579],[122,-29,76,0.4655105814360148],[122,-29,77,0.47096051013858137],[122,-29,78,0.47641648341077664],[122,-29,79,0.48186372872886996],[122,-28,64,0.39539575430196483],[122,-28,65,0.4010365130378476],[122,-28,66,0.40686721998055314],[122,-28,67,0.4128532982172145],[122,-28,68,0.4189579103846009],[122,-28,69,0.42514987784744257],[122,-28,70,0.43102510306233555],[122,-28,71,0.43608053301714794],[122,-28,72,0.44118693463999553],[122,-28,73,0.4463481057892491],[122,-28,74,0.45156457763887803],[122,-28,75,0.45683357755361204],[122,-28,76,0.4621490512345121],[122,-28,77,0.4675017443137628],[122,-28,78,0.4728793434754071],[122,-28,79,0.4782666770777711],[122,-27,64,0.39517584397479344],[122,-27,65,0.40075658765349487],[122,-27,66,0.4065319467172586],[122,-27,67,0.4124671775214934],[122,-27,68,0.41852366062608093],[122,-27,69,0.42351721591739944],[122,-27,70,0.4283375481107206],[122,-27,71,0.4332123197315345],[122,-27,72,0.43815094120573367],[122,-27,73,0.4431592850931565],[122,-27,74,0.44823954500391455],[122,-27,75,0.45339016558991624],[122,-27,76,0.4586058439252133],[122,-27,77,0.4638776024652511],[122,-27,78,0.4691929336520296],[122,-27,79,0.47453601611056045],[122,-26,64,0.3949881279454282],[122,-26,65,0.4004976043842693],[122,-26,66,0.40620470075405996],[122,-26,67,0.4116186665082519],[122,-26,68,0.4161781859330858],[122,-26,69,0.42076973718716576],[122,-26,70,0.4254120157038117],[122,-26,71,0.4301203614692858],[122,-26,72,0.4349064239447407],[122,-26,73,0.4397779079261551],[122,-26,74,0.44473840094229294],[122,-26,75,0.44978728265098844],[122,-26,76,0.4549197165518122],[122,-26,77,0.4601267241899724],[122,-26,78,0.4653953418839193],[122,-26,79,0.47070885986868993],[122,-25,64,0.39480534450577254],[122,-25,65,0.40023082933456816],[122,-25,66,0.4046491159116248],[122,-25,67,0.4090131736321844],[122,-25,68,0.4133919107221768],[122,-25,69,0.4178101108704454],[122,-25,70,0.42228920751963284],[122,-25,71,0.4268469094990936],[122,-25,72,0.4314968295035457],[122,-25,73,0.43624820300275047],[122,-25,74,0.4411056981954946],[122,-25,75,0.4460693174634146],[122,-25,76,0.45113439062008537],[122,-25,77,0.45629166008999944],[122,-25,78,0.4615274579925843],[122,-25,79,0.4668239749495344],[122,-24,64,0.3935797407550196],[122,-24,65,0.3978168576683456],[122,-24,66,0.40201844374382095],[122,-24,67,0.40620912706594414],[122,-24,68,0.41042028034166694],[122,-24,69,0.4146795327855237],[122,-24,70,0.4190108091745518],[122,-24,71,0.4234338993333195],[122,-24,72,0.4279640658018953],[122,-24,73,0.43261175003541075],[122,-24,74,0.43738237773416183],[122,-24,75,0.4422762637293885],[122,-24,76,0.4472886166739658],[122,-24,77,0.4524096436110958],[122,-24,78,0.4576247543198853],[122,-24,79,0.46291486516584013],[122,-23,64,0.3911148673499207],[122,-23,65,0.39517892837500396],[122,-23,66,0.3992126028895826],[122,-23,67,0.40324077042569095],[122,-23,68,0.4072965422341638],[122,-23,69,0.411410167306362],[122,-23,70,0.41560780083555265],[122,-23,71,0.41991103004841274],[122,-23,72,0.42433647276626424],[122,-23,73,0.4288954814896846],[122,-23,74,0.43359395356997954],[122,-23,75,0.4384322478427272],[122,-23,76,0.4434052079086485],[122,-23,77,0.4485022920573996],[122,-23,78,0.453707809642889],[122,-23,79,0.4590012635359036],[122,-22,64,0.3884923126005053],[122,-22,65,0.39238976856764685],[122,-22,66,0.39626357441991733],[122,-22,67,0.4001387433005376],[122,-22,68,0.4040498954315971],[122,-22,69,0.4080296463691818],[122,-22,70,0.41210611612034975],[122,-22,71,0.4163024193782389],[122,-22,72,0.42063626255602266],[122,-22,73,0.4251196525377281],[122,-22,74,0.4297587176590491],[122,-22,75,0.43455364122977336],[122,-22,76,0.4394987077066963],[122,-22,77,0.44458246142410746],[122,-22,78,0.4497879775905733],[122,-22,79,0.45509324506743337],[122,-21,64,0.38574495293489386],[122,-21,65,0.38948075697607903],[122,-21,66,0.39320115592226335],[122,-21,67,0.39693114474800206],[122,-21,68,0.4007065852460018],[122,-21,69,0.40456218697112506],[122,-21,70,0.4085277723772675],[122,-21,71,0.41262773507284195],[122,-21,72,0.41688063869325137],[122,-21,73,0.42129893320994666],[122,-21,74,0.4258887891299175],[122,-21,75,0.43065004982541266],[122,-21,76,0.4355763020189658],[122,-21,77,0.44065506423569195],[122,-21,78,0.4458680928259704],[122,-21,79,0.45119180495872924],[122,-20,64,0.3829049386563175],[122,-20,65,0.38648226485312115],[122,-20,66,0.3900537730346318],[122,-20,67,0.39364426387076873],[122,-20,68,0.3972905479891427],[122,-20,69,0.4010291474811212],[122,-20,70,0.40489133856357706],[122,-20,71,0.40890257689205306],[122,-20,72,0.4130820972344323],[122,-20,73,0.4174426361773384],[122,-20,74,0.42199027825661684],[122,-20,75,0.42672442567682684],[122,-20,76,0.43163789155817506],[122,-20,77,0.4367171164251068],[122,-20,78,0.44194250743165747],[122,-20,79,0.4472888996064286],[122,-19,64,0.3800046416461482],[122,-19,65,0.38342453170642393],[122,-19,66,0.3868492778056329],[122,-19,67,0.3903032947568224],[122,-19,68,0.39382403736465116],[122,-19,69,0.39744956256675107],[122,-19,70,0.4012123782154152],[122,-19,71,0.40513882962903486],[122,-19,72,0.4092486943329972],[122,-19,73,0.41355490569356895],[122,-19,74,0.41806340577601886],[122,-19,75,0.42277312751896223],[122,-19,76,0.4276761060781223],[122,-19,77,0.43275771895688014],[122,-19,78,0.43799705431111347],[122,-19,79,0.44336740659373153],[122,-18,64,0.3770738869113218],[122,-18,65,0.3803346597193604],[122,-18,66,0.38361169847535465],[122,-18,67,0.38692883351117646],[122,-18,68,0.39032386154209486],[122,-18,69,0.39383611526887813],[122,-18,70,0.3974991539219268],[122,-18,71,0.40134009995547176],[122,-18,72,0.4053792180218772],[122,-18,73,0.4096296294006647],[122,-18,74,0.41409716216142073],[122,-18,75,0.4187803370863387],[122,-18,76,0.4236704891257301],[122,-18,77,0.42875202391106154],[122,-18,78,0.43400280860806933],[122,-18,79,0.43939469615920523],[122,-17,64,0.37412352999500076],[122,-17,65,0.37722102470379465],[122,-17,66,0.38034667091999663],[122,-17,67,0.38352351963739045],[122,-17,68,0.38678941452710913],[122,-17,69,0.3901847195294269],[122,-17,70,0.393743895308189],[122,-17,71,0.3974947713840706],[122,-17,72,0.40145809494548795],[122,-17,73,0.4056472226964643],[122,-17,74,0.4100679559800358],[122,-17,75,0.41471851914627167],[122,-17,76,0.41958968086595133],[122,-17,77,0.4246650178272029],[122,-17,78,0.42992131999622696],[122,-17,79,0.4353291363767049],[122,-16,64,0.37111815473174825],[122,-16,65,0.3740496310670712],[122,-16,66,0.3770219981974421],[122,-16,67,0.38005735096465154],[122,-16,68,0.38319326361492284],[122,-16,69,0.38647083414122557],[122,-16,70,0.38992520711028766],[122,-16,71,0.3935847710735393],[122,-16,72,0.3974706667532843],[122,-16,73,0.4015964465248544],[122,-16,74,0.40596788539978623],[122,-16,75,0.4105829434280279],[122,-16,76,0.41543187915212554],[122,-16,77,0.42049751346618774],[122,-16,78,0.4257556429606536],[122,-16,79,0.43117560157271845],[122,-15,64,0.36802143387620356],[122,-15,65,0.3707862421335761],[122,-15,66,0.37360590677766536],[122,-15,67,0.376501404429343],[122,-15,68,0.37950969916241356],[122,-15,69,0.38267226726058223],[122,-15,70,0.3860246429754856],[122,-15,71,0.38959553680334824],[122,-15,72,0.393406297611238],[122,-15,73,0.3974705345181136],[122,-15,74,0.40179389870419996],[122,-15,75,0.4063740250170883],[122,-15,76,0.4112006329402893],[122,-15,77,0.4162557861928254],[122,-15,78,0.4215143099405405],[122,-15,79,0.4269443643234335],[122,-14,64,0.36480796650257],[122,-14,65,0.36740714493147764],[122,-14,66,0.37007656054037746],[122,-14,67,0.37283591864532106],[122,-14,68,0.37572121560037797],[122,-14,69,0.3787739068340467],[122,-14,70,0.382029565131732],[122,-14,71,0.38551692013719296],[122,-14,72,0.38925727310627245],[122,-14,73,0.3932640796445886],[122,-14,74,0.39754270056985624],[122,-14,75,0.40209032071645606],[122,-14,76,0.40689603517979317],[122,-14,77,0.41194110218409635],[122,-14,78,0.41719936145349334],[122,-14,79,0.4226378166749024],[122,-13,64,0.36146122953265636],[122,-13,65,0.3638971433150839],[122,-13,66,0.3664201240215666],[122,-13,67,0.369048457645762],[122,-13,68,0.3718168068489029],[122,-13,69,0.3747661789581593],[122,-13,70,0.3779317960505051],[122,-13,71,0.3813420599318887],[122,-13,72,0.3850179215378264],[122,-13,73,0.38897242593663583],[122,-13,74,0.39321043303967734],[122,-13,75,0.39772851378292834],[122,-13,76,0.4025150212076692],[122,-13,77,0.40755033553838227],[122,-13,78,0.4128072820372195],[122,-13,79,0.4182517201091233],[122,-12,64,0.3579717028072356],[122,-12,65,0.3602477221868164],[122,-12,66,0.36262899263530546],[122,-12,67,0.36513223557385455],[122,-12,68,0.3677904144968659],[122,-12,69,0.3706436484267471],[122,-12,70,0.37372639920412354],[122,-12,71,0.37706636930829984],[122,-12,72,0.38068383056909055],[122,-12,73,0.38459113515791965],[122,-12,74,0.3887924089218509],[122,-12,75,0.3932834267687414],[122,-12,76,0.39805166946031306],[122,-12,77,0.40307656082608817],[122,-12,78,0.4083298840790564],[122,-12,79,0.41377637559629576],[122,-11,64,0.3543351680395606],[122,-11,65,0.35645538308913727],[122,-11,66,0.35870019009640913],[122,-11,67,0.3610846025293863],[122,-11,68,0.3636395289595947],[122,-11,69,0.36640376171062566],[122,-11,70,0.36941058921611936],[122,-11,71,0.3726866364590686],[122,-11,72,0.37625115971110257],[122,-11,73,0.3801155290038305],[122,-11,74,0.3842828983506701],[122,-11,75,0.3887480633688815],[122,-11,76,0.3934975055874594],[122,-11,77,0.39850962237070614],[122,-11,78,0.40375514104407095],[122,-11,79,0.4091977154809205],[122,-10,64,0.35055118266881835],[122,-10,65,0.3525201521059777],[122,-10,66,0.3546339339207228],[122,-10,67,0.3569056924025355],[122,-10,68,0.35936394441654845],[122,-10,69,0.36204573315605465],[122,-10,70,0.3649827721883803],[122,-10,71,0.36820024008685914],[122,-10,72,0.3717160494564125],[122,-10,73,0.3755403076883618],[122,-10,74,0.379674969413688],[122,-10,75,0.3841136802446972],[122,-10,76,0.38884181102101995],[122,-10,77,0.3938366814107433],[122,-10,78,0.39906797136568695],[122,-10,79,0.4044983185942209],[122,-9,64,0.34662173026833276],[122,-9,65,0.34844426164164605],[122,-9,66,0.3504323704916496],[122,-9,67,0.3525972341127427],[122,-9,68,0.35496466888303146],[122,-9,69,0.3575695756964773],[122,-9,70,0.36044171744338155],[122,-9,71,0.3636044806584797],[122,-9,72,0.3670741281987809],[122,-9,73,0.37085924601048376],[122,-9,74,0.37496038390200204],[122,-9,75,0.3793698898534621],[122,-9,76,0.38407193701215897],[122,-9,77,0.3890427421520884],[122,-9,78,0.39425097401836984],[122,-9,79,0.39965834963693675],[122,-8,64,0.342550049755566],[122,-8,65,0.34423100823011427],[122,-8,66,0.3460984817513879],[122,-8,67,0.34816152821701507],[122,-8,68,0.35044299128425455],[122,-8,69,0.3529752778451088],[122,-8,70,0.35578586234242865],[122,-8,71,0.3588960290234756],[122,-8,72,0.36232011837078215],[122,-8,73,0.36606496821282636],[122,-8,74,0.370129549377703],[122,-8,75,0.3745047953623657],[122,-8,76,0.37917362510573366],[122,-8,77,0.38411115757974595],[122,-8,78,0.3892851165528987],[122,-8,79,0.3946564235387254],[122,-7,64,0.3383396461926102],[122,-7,65,0.3398837890631753],[122,-7,66,0.3416351660974993],[122,-7,67,0.34360059135276577],[122,-7,68,0.3457997078710752],[122,-7,69,0.3482621291685898],[122,-7,70,0.35101275222649425],[122,-7,71,0.35407049427603615],[122,-7,72,0.35744754349801255],[122,-7,73,0.3611488031415558],[122,-7,74,0.3651715288713196],[122,-7,75,0.36950515876134316],[122,-7,76,0.3741313349698745],[122,-7,77,0.3790241157559722],[122,-7,78,0.38415037614040776],[122,-7,79,0.3894703951730051],[122,-6,64,0.33399348645230875],[122,-6,65,0.3354053204077233],[122,-6,66,0.33704449653548757],[122,-6,67,0.33891547143109213],[122,-6,68,0.3410345107404175],[122,-6,69,0.34342819683041625],[122,-6,70,0.3461186178714863],[122,-6,71,0.34912211303323576],[122,-6,72,0.3524485381042856],[122,-6,73,0.35610072138665133],[122,-6,74,0.36007410962091974],[122,-6,75,0.3643566033112962],[122,-6,76,0.3689285804396946],[122,-6,77,0.37376310718906236],[122,-6,78,0.37882633394266507],[122,-6,79,0.3840780744907904],[122,-5,64,0.32951338345345516],[122,-5,65,0.3307970415074916],[122,-5,66,0.33232715955329883],[122,-5,67,0.3341057368947083],[122,-5,68,0.33614554159745474],[122,-5,69,0.33846995613524233],[122,-5,70,0.3410980931530779],[122,-5,71,0.34404356255962415],[122,-5,72,0.34731376260605845],[122,-5,73,0.35090935622621977],[122,-5,74,0.3548239323439157],[122,-5,75,0.3590438514737341],[122,-5,76,0.3635482745697671],[122,-5,77,0.36830937371590033],[122,-5,78,0.37329272290629256],[122,-5,79,0.3784578668379392],[122,-4,64,0.3248995730325104],[122,-4,65,0.3260587079268259],[122,-4,66,0.3274820785380136],[122,-4,67,0.32916914369465666],[122,-4,68,0.3311291142153529],[122,-4,69,0.3333820782959054],[122,-4,70,0.33594407587230724],[122,-4,71,0.3388259003831066],[122,-4,72,0.3420324255019547],[122,-4,73,0.34556211031311745],[122,-4,74,0.3494066825891426],[122,-4,75,0.35355099946188034],[122,-4,76,0.3579730844178868],[122,-4,77,0.3626443392003929],[122,-4,78,0.3675299288669597],[122,-4,79,0.3725893379370677],[122,-3,64,0.3201504878139405],[122,-3,65,0.32118817858854776],[122,-3,66,0.3225062258436496],[122,-3,67,0.32410148391671834],[122,-3,68,0.32597960930726294],[122,-3,69,0.3281573788799528],[122,-3,70,0.3306477348982129],[122,-3,71,0.3334586332165032],[122,-3,72,0.3365924152916867],[122,-3,73,0.3400453501245602],[122,-3,74,0.3438073457486524],[122,-3,75,0.3478618295306752],[122,-3,76,0.35218579620226725],[122,-3,77,0.35675002220925656],[122,-3,78,0.3615194446469189],[122,-3,79,0.3664537027498652],[122,-2,64,0.31526273266437194],[122,-2,65,0.31618140098254666],[122,-2,66,0.31739462783995936],[122,-2,67,0.3188966202004345],[122,-2,68,0.3206895457228662],[122,-2,69,0.3227869305704579],[122,-2,70,0.32519866693706717],[122,-2,71,0.32792991812291383],[122,-2,72,0.3309805446482316],[122,-2,73,0.33434469024648644],[122,-2,74,0.3380105273174004],[122,-2,75,0.34196016108608596],[122,-2,76,0.34616969138866877],[122,-2,77,0.3506094306900522],[122,-2,78,0.35524427664014546],[122,-2,79,0.3600342371929495],[122,-1,64,0.31023126645833454],[122,-1,65,0.31103259916745596],[122,-1,66,0.31214056741648916],[122,-1,67,0.3135467102319371],[122,-1,68,0.31524983200939694],[122,-1,69,0.31726034398846614],[122,-1,70,0.3195852063311043],[122,-1,71,0.32222689893313133],[122,-1,72,0.32518290941029315],[122,-1,73,0.3284453695772048],[122,-1,74,0.3320008399681692],[122,-1,75,0.33583024163685865],[122,-1,76,0.3399089341677775],[122,-1,77,0.3442069385392941],[122,-1,78,0.34868930319985525],[122,-1,79,0.35331661145755106],[122,0,64,0.30504979494445456],[122,0,65,0.3057346692538301],[122,0,66,0.3067359884833319],[122,0,67,0.30804262565607055],[122,0,68,0.309650202434672],[122,0,69,0.3115662203718999],[122,0,70,0.3137948913237859],[122,0,71,0.31633618094119537],[122,0,72,0.3191853649608207],[122,0,73,0.32233272151185716],[122,0,74,0.3257633589619121],[122,0,75,0.32945717853830386],[122,0,76,0.33338897068127027],[122,0,77,0.337528643816516],[122,0,78,0.3418415839798075],[122,0,79,0.3462891434874893],[122,1,64,0.299711377621585],[122,1,65,0.30027978451086573],[122,1,66,0.30117210404045497],[122,1,67,0.3023745665885098],[122,1,68,0.3038798384308527],[122,1,69,0.3056927770227274],[122,1,70,0.30781508783723466],[122,1,71,0.31024444524246453],[122,1,72,0.3129741218616312],[122,1,73,0.3159927406694838],[122,1,74,0.3192841493289554],[122,1,75,0.3228274160113437],[122,1,76,0.3265969456901098],[122,1,77,0.3305627156552319],[122,1,78,0.334690628765536],[122,1,79,0.338942982741814],[122,2,64,0.29420925053763164],[122,2,65,0.29466021071865156],[122,2,66,0.29544020772591734],[122,2,67,0.29653287143656665],[122,2,68,0.2979281754266765],[122,2,69,0.29962864620042823],[122,2,70,0.3016337725894804],[122,2,71,0.30393920611452513],[122,2,72,0.30653646611897833],[122,2,73,0.30941275388742057],[122,2,74,0.3125508752390637],[122,2,75,0.31592927085397604],[122,2,76,0.3195221533643764],[122,2,77,0.3232997500273106],[122,2,78,0.32722864959184933],[122,2,79,0.331272251784535],[122,3,64,0.2885378915406675],[122,3,65,0.2888693658538581],[122,3,66,0.2895327275463572],[122,3,67,0.2905090625826001],[122,3,68,0.29178593479561055],[122,3,69,0.2933638836029566],[122,3,70,0.2952405052935596],[122,3,71,0.2974097319595768],[122,3,72,0.2998616125870424],[122,3,73,0.30258218927714275],[122,3,74,0.3055534680807708],[122,3,75,0.308753483725235],[122,3,76,0.3121564573148971],[122,3,77,0.3157330458991344],[122,3,78,0.3194506826245632],[122,3,79,0.3232740060245451],[122,4,64,0.28269430892610725],[122,4,65,0.2829030971382655],[122,4,66,0.2834444891382163],[122,4,67,0.2842970917574056],[122,4,68,0.2854463434046704],[122,4,69,0.28689114991679554],[122,4,70,0.28862755689130176],[122,4,71,0.29064810280202474],[122,4,72,0.2929416731616396],[122,4,73,0.2954934362651067],[122,4,74,0.29828485999563775],[122,4,75,0.3012938089995034],[122,4,76,0.30449472136686145],[122,4,77,0.30785886379463195],[122,4,78,0.3113546640572143],[122,4,79,0.3149481194719108],[122,5,64,0.27667955859567633],[122,5,65,0.27676118101068464],[122,5,66,0.27717419469408755],[122,5,67,0.2778947918950322],[122,5,68,0.27890654823664296],[122,5,69,0.2802070735582287],[122,5,70,0.2817912025109004],[122,5,71,0.28365041347090086],[122,5,72,0.28577274917096146],[122,5,73,0.28814280611006005],[122,5,74,0.29074179222980445],[122,5,75,0.29354765219756757],[122,5,76,0.2965352594939562],[122,5,77,0.29967667436686257],[122,5,78,0.3029414665889316],[122,5,79,0.3062971018398732],[122,6,64,0.27050049839864815],[122,6,65,0.2704490560058805],[122,6,66,0.2707261283984499],[122,6,67,0.2713055467336644],[122,6,68,0.2721692373222416],[122,6,69,0.27331380533058963],[122,6,70,0.27473318885056675],[122,6,71,0.27641813061944726],[122,6,72,0.27835615403262887],[122,6,73,0.28053159635620467],[122,6,74,0.28292569864385986],[122,6,75,0.28551675173916885],[122,6,76,0.28828029762593865],[122,6,77,0.29118938527721516],[122,6,78,0.2942148800504659],[122,6,79,0.29732582558210435],[122,7,64,0.264173997339979],[122,7,65,0.263982414791144],[122,7,66,0.26411506856332884],[122,7,67,0.2645434939379685],[122,7,68,0.26524812975923384],[122,7,69,0.26622479979036273],[122,7,70,0.267466812929148],[122,7,71,0.26896447123033546],[122,7,72,0.27070508630495943],[122,7,73,0.2726730429555025],[122,7,74,0.2748499095790495],[122,7,75,0.2772145947684869],[122,7,76,0.27974354944402163],[122,7,77,0.2824110137551111],[122,7,78,0.2851893079086867],[122,7,79,0.2880491660029008],[122,8,64,0.2577316814345748],[122,8,65,0.25739354945348786],[122,8,66,0.25737402567652096],[122,8,67,0.2576425773156655],[122,8,68,0.25817837760128076],[122,8,69,0.258976661737697],[122,8,70,0.2600303338780338],[122,8,71,0.2613294993085998],[122,8,72,0.26286150867849667],[122,8,73,0.26461104095970023],[122,8,74,0.2665602247059418],[122,8,75,0.2686887970947197],[122,8,76,0.2709743001565045],[122,8,77,0.2733923135197617],[122,8,78,0.2759167229320232],[122,8,79,0.2785200237552927],[122,9,64,0.25120304579342717],[122,9,65,0.25071320401464225],[122,9,66,0.25053502856255583],[122,9,67,0.2506363210231248],[122,9,68,0.25099528945124183],[122,9,69,0.2516067560241309],[122,9,70,0.2524634053371243],[122,9,71,0.253555334884456],[122,9,72,0.25487011883321253],[122,9,73,0.25639290316086594],[122,9,74,0.258106531764981],[122,9,75,0.2599917030854001],[122,9,76,0.26202715671406596],[122,9,77,0.26418988940656746],[122,9,78,0.26645539985461664],[122,9,79,0.26879796152918933],[122,10,64,0.24461259303613234],[122,10,65,0.24396714368142822],[122,10,66,0.24362518768009148],[122,10,67,0.2435533951824137],[122,10,68,0.24372936433449918],[122,10,69,0.24414765828744653],[122,10,70,0.2448008862800436],[122,10,71,0.24567927220279287],[122,10,72,0.24677073368112756],[122,10,73,0.2480609859676417],[122,10,74,0.24953367029245954],[122,10,75,0.2511705062666447],[122,10,76,0.25295146788188266],[122,10,77,0.2548549826013867],[122,10,78,0.25685815299407483],[122,10,79,0.2589370003255906],[122,11,64,0.23798240342574378],[122,11,65,0.23717872441362947],[122,11,66,0.2366692414695372],[122,11,67,0.23642011650011208],[122,11,68,0.2364087233176047],[122,11,69,0.23662949270655606],[122,11,70,0.23707505907071],[122,11,71,0.2377358519431864],[122,11,72,0.2386001899745445],[122,11,73,0.23965439364335342],[122,11,74,0.24088291637596293],[122,11,75,0.24226849372117829],[122,11,76,0.24379231018654388],[122,11,77,0.24543418330668268],[122,11,78,0.24717276448248884],[122,11,79,0.24898575610183843],[122,12,64,0.23133500545939242],[122,12,65,0.2303717587313241],[122,12,66,0.22969239234879638],[122,12,67,0.22926322927926943],[122,12,68,0.22906180945049953],[122,12,69,0.22908252316437666],[122,12,70,0.22931808322731165],[122,12,71,0.22975914880612996],[122,12,72,0.23039443751742006],[122,12,73,0.2312108502459518],[122,12,74,0.2321936084110044],[122,12,75,0.233326403371743],[122,12,76,0.2345915576365712],[122,12,77,0.2359701975172636],[122,12,78,0.23744243684844052],[122,12,79,0.23898757137534274],[122,13,64,0.22469655252499385],[122,13,65,0.223573683236754],[122,13,66,0.22272343765904462],[122,13,67,0.22211297189255652],[122,13,68,0.22172036078990093],[122,13,69,0.22154000218225092],[122,13,70,0.2215646887773694],[122,13,71,0.2217852777851829],[122,13,72,0.22219082765665485],[122,13,73,0.22276874123275223],[122,13,74,0.22350491504753814],[122,13,75,0.22438389451611376],[122,13,76,0.22538903472579686],[122,13,77,0.22650266653804182],[122,13,78,0.22770626770088218],[122,13,79,0.22898063866568505],[122,14,64,0.21810031257908646],[122,14,65,0.21681903479735332],[122,14,66,0.21579820243989548],[122,14,67,0.21500643545798798],[122,14,68,0.21442266302892524],[122,14,69,0.2140412838524322],[122,14,70,0.21385511504813212],[122,14,71,0.21385512450406616],[122,14,72,0.21403060188708106],[122,14,73,0.21436932894333385],[122,14,74,0.2148577488508181],[122,14,75,0.21548113438914943],[122,14,76,0.2162237546956125],[122,14,77,0.21706904038103253],[122,14,78,0.21799974678596726],[122,14,79,0.21899811516543718],[122,15,64,0.21158992642755226],[122,15,65,0.21015250744738923],[122,15,66,0.20896229293758672],[122,15,67,0.2079899169029117],[122,15,68,0.20721541582436492],[122,15,69,0.20663313208076003],[122,15,70,0.20623580845519526],[122,15,71,0.20601440186349154],[122,15,72,0.2059582998195739],[122,15,73,0.20605552786732198],[122,15,74,0.20629294775283816],[122,15,75,0.2066564461342804],[122,15,76,0.2071311136494299],[122,15,77,0.2077014141842573],[122,15,78,0.2083513442103199],[122,15,79,0.20906458208312545],[122,16,64,0.20520684549543958],[122,16,65,0.20361584420783668],[122,16,66,0.20225731993333884],[122,16,67,0.20110438416437623],[122,16,68,0.20013839582884357],[122,16,69,0.1993535910903568],[122,16,70,0.198742569029378],[122,16,71,0.19829620159987563],[122,16,72,0.19800390351272132],[122,16,73,0.1978538836789105],[122,16,74,0.19783337799683234],[122,16,75,0.19792886331375137],[122,16,76,0.19812625243677384],[122,16,77,0.19841107011290082],[122,16,78,0.19876860994257414],[122,16,79,0.19918407223445145],[122,17,64,0.1989696139115028],[122,17,65,0.19722770100292783],[122,17,66,0.19570173564255164],[122,17,67,0.1943676862172971],[122,17,68,0.19320842059402304],[122,17,69,0.19221804146741958],[122,17,70,0.19138897756294757],[122,17,71,0.1907119999660891],[122,17,72,0.1901765495911785],[122,17,73,0.18977103598123946],[122,17,74,0.18948310723504763],[122,17,75,0.1892998909285542],[122,17,76,0.18920820596711393],[122,17,77,0.18919474537256095],[122,17,78,0.18924623007611602],[122,17,79,0.18934953385223363],[122,18,64,0.19287422596792184],[122,18,65,0.1909841763987325],[122,18,66,0.1892916082838886],[122,18,67,0.18777564305136143],[122,18,68,0.18642081472657776],[122,18,69,0.1852210872465384],[122,18,70,0.18416872890104563],[122,18,71,0.18325444097350882],[122,18,72,0.18246774381605313],[122,18,73,0.18179732346551725],[122,18,74,0.1812313386126641],[122,18,75,0.18075768783434493],[122,18,76,0.18036423709333485],[122,18,77,0.18003900760277602],[122,18,78,0.17977032424247985],[122,18,79,0.17954692480038045],[122,19,64,0.18450722131485822],[122,19,65,0.1832311938395779],[122,19,66,0.1819721122273944],[122,19,67,0.18075122437296912],[122,19,68,0.17958425048833804],[122,19,69,0.17833962512716067],[122,19,70,0.1770585497062781],[122,19,71,0.17590007748207795],[122,19,72,0.17485390212681254],[122,19,73,0.17390910397193243],[122,19,74,0.17305449186639402],[122,19,75,0.1722788942748745],[122,19,76,0.1715713996960576],[122,19,77,0.1709215465986969],[122,19,78,0.1703194631874721],[122,19,79,0.16975595741909907],[122,20,64,0.17317391192978301],[122,20,65,0.17172207738380657],[122,20,66,0.17030652215557354],[122,20,67,0.16894517688951433],[122,20,68,0.16765209332357647],[122,20,69,0.16643422176487518],[122,20,70,0.16529868514111531],[122,20,71,0.1642525024592723],[122,20,72,0.1633021706528421],[122,20,73,0.1624533065752999],[122,20,74,0.16171034927704914],[122,20,75,0.16107632255230497],[122,20,76,0.1605526575941642],[122,20,77,0.16013907545208267],[122,20,78,0.15983352884880866],[122,20,79,0.1596322027829333],[122,21,64,0.16154152238159972],[122,21,65,0.15991003360104125],[122,21,66,0.15833556802966947],[122,21,67,0.15683268140820827],[122,21,68,0.15541368874500786],[122,21,69,0.15408583248143023],[122,21,70,0.15285649401763343],[122,21,71,0.15173280527830643],[122,21,72,0.1507211798157521],[122,21,73,0.1498269150658495],[122,21,74,0.1490538658604758],[122,21,75,0.14840418912191616],[122,21,76,0.14787815949041905],[122,21,77,0.14747405546710102],[122,21,78,0.14718811549378072],[122,21,79,0.14701456323870288],[122,22,64,0.14967550519014677],[122,22,65,0.14786047954821277],[122,22,66,0.14612430744402286],[122,22,67,0.1444781886650753],[122,22,68,0.14293266451482112],[122,22,69,0.1414951998284469],[122,22,70,0.14017333179749897],[122,22,71,0.1389741762350063],[122,22,72,0.1379039143627548],[122,22,73,0.13696736133969356],[122,22,74,0.13616761659591456],[122,22,75,0.1355057958323828],[122,22,76,0.13498084434705018],[122,22,77,0.13458943115514807],[122,22,78,0.13432592318846245],[122,22,79,0.13418243868510185],[122,23,64,0.13764716359062723],[122,23,65,0.13564473702630903],[122,23,66,0.13374369781828035],[122,23,67,0.13195198205393335],[122,23,68,0.1302783514566486],[122,23,69,0.12873041001980645],[122,23,70,0.12731573653346484],[122,23,71,0.12604129436734118],[122,23,72,0.1249128812730538],[122,23,73,0.12393467088358223],[122,23,74,0.12310884593080075],[122,23,75,0.12243532297296311],[122,23,76,0.12191156820086925],[122,23,77,0.12153250367625745],[122,23,78,0.12129050315213558],[122,23,79,0.12117547643233229],[122,24,64,0.12553075764495364],[122,24,65,0.12333714356787907],[122,24,66,0.12126773267411434],[122,24,67,0.11932735879428787],[122,24,68,0.11752302874917536],[122,24,69,0.11586239129031205],[122,24,70,0.11435294501354734],[122,24,71,0.11300136236973687],[122,24,72,0.11181291042090125],[122,24,73,0.11079097242283038],[122,24,74,0.10993667020814019],[122,24,75,0.10924858709215117],[122,24,76,0.10872259077922077],[122,24,77,0.1083517555116262],[122,24,78,0.1081263824803864],[122,24,79,0.10803411730772952],[122,25,64,0.11340073934776213],[122,25,65,0.11101228951852089],[122,25,66,0.10877069975822073],[122,25,67,0.10667792725036529],[122,25,68,0.10473927816258462],[122,25,69,0.10296234294373674],[122,25,70,0.10135441424251006],[122,25,71,0.09992173741785672],[122,25,72,0.09866891053744246],[122,25,73,0.09759839333250918],[122,25,74,0.09671012503440478],[122,25,75,0.0960012507462334],[122,25,76,0.09546595573918543],[122,25,77,0.09509540680962521],[122,25,78,0.0948777995937452],[122,25,79,0.0947985105118851],[122,26,64,0.10132911869262569],[122,26,65,0.0987423830268047],[122,26,66,0.09632456265025903],[122,26,67,0.09407502183839299],[122,26,68,0.09199744844754659],[122,26,69,0.09009926555495265],[122,26,70,0.08838743355320942],[122,26,71,0.08686764066422054],[122,26,72,0.08554369058707924],[122,26,73,0.08441700608631789],[122,26,74,0.08348624839652985],[122,26,75,0.08274705203026107],[122,26,76,0.08219187429583444],[122,26,77,0.08180995856306852],[122,26,78,0.08158741006162933],[122,26,79,0.08150738275954172],[122,27,64,0.08938296286611416],[122,27,65,0.08659474496469556],[122,27,66,0.08399646770543652],[122,27,67,0.08158523717133936],[122,27,68,0.07936323129698676],[122,27,69,0.07733759348979559],[122,27,70,0.07551482822946881],[122,27,71,0.07389994598217489],[122,27,72,0.0724958468136591],[122,27,73,0.07130282566294482],[122,27,74,0.07031819910424983],[122,27,75,0.06953605312150168],[122,27,76,0.06894711112636048],[122,27,77,0.06853872116970737],[122,27,78,0.0682949610322636],[122,27,79,0.0681968596329679],[122,28,64,0.07762203097810867],[122,28,65,0.07462943604722828],[122,28,66,0.07184637843169676],[122,28,67,0.06926808334155964],[122,28,68,0.06689535055015708],[122,28,69,0.0647349311504357],[122,28,70,0.06279275575756219],[122,28,71,0.06107304875874371],[122,28,72,0.059577715918632465],[122,28,73,0.05830585801659415],[122,28,74,0.05725341029721948],[122,28,75,0.05641290720149524],[122,28,76,0.055773371542625245],[122,28,77,0.055320327000481014],[122,28,78,0.05503593253630161],[122,28,79,0.05489923707525459],[122,29,64,0.06609654700744737],[122,29,65,0.06289701869718332],[122,29,66,0.059924839682276174],[122,29,67,0.057173764523611795],[122,29,68,0.054643366588289555],[122,29,69,0.052339894628260705],[122,29,70,0.05026859608841759],[122,29,71,0.048432815788833475],[122,29,72,0.046833395068200036],[122,29,73,0.045468199932222876],[122,29,74,0.04433177794539178],[122,29,75,0.04341514328338874],[122,29,76,0.04270568905344211],[122,29,77,0.04218722569413556],[122,29,78,0.041840143988856174],[122,29,79,0.04164170096898922],[122,30,64,0.05484513035351591],[122,30,65,0.05143647363094564],[122,30,66,0.04827089218687428],[122,30,67,0.04534110192609109],[122,30,68,0.04264561741269682],[122,30,69,0.04019008067259508],[122,30,70,0.03797895819229104],[122,30,71,0.036014638883833786],[122,30,72,0.034296851634690574],[122,30,73,0.0328222134278372],[122,30,74,0.03158390773178968],[122,30,75,0.030571492535519704],[122,30,76,0.029770837090157005],[122,30,77,0.029164186121069066],[122,30,78,0.02873034999471674],[122,30,79,0.02844501906541305],[122,31,64,0.043897242988177],[122,31,65,0.04027781571093737],[122,31,66,0.03691486638593755],[122,31,67,0.03380051311521998],[122,31,68,0.030932389899610238],[122,31,69,0.028315436132445228],[122,31,70,0.025953253700067448],[122,31,71,0.02384721838735431],[122,31,72,0.02199592181766366],[122,31,73,0.02039474415394275],[122,31,74,0.019035557227141838],[122,31,75,0.017906557433155137],[122,31,76,0.016992227426729713],[122,31,77,0.016273425343145704],[122,31,78,0.015727600000391962],[122,31,79,0.0153291302768747],[122,32,64,0.033277782081630916],[122,32,65,0.02944691673306681],[122,32,66,0.025883442646856766],[122,32,67,0.022579314957529847],[122,32,68,0.019531469547708173],[122,32,69,0.016744058297153905],[122,32,70,0.01421975134932441],[122,32,71,0.011958874931233173],[122,32,72,0.009958882555056559],[122,32,73,0.0082139558778986],[122,32,74,0.006714734858105857],[122,32,75,0.005448176524756229],[122,32,76,0.004397541367556927],[122,32,77,0.0035425060603899825],[122,32,78,0.0028594009575703197],[122,32,79,0.0023215705483137696],[122,33,64,0.02299724330778888],[122,33,65,0.018955268810668287],[122,33,66,0.015189024060189925],[122,33,67,0.011690713840584458],[122,33,68,0.00845675559732716],[122,33,69,0.005490442819776229],[122,33,70,0.002793466124245785],[122,33,71,3.6508873105640417E-4],[122,33,72,-0.0017983495695832463],[122,33,73,-0.003703801059599115],[122,33,74,-0.005361751725827977],[122,33,75,-0.006786336582083228],[122,33,76,-0.007995329682240282],[122,33,77,-0.009010010113788647],[122,33,78,-0.009854905529128316],[122,33,79,-0.010557415019087541],[122,34,64,0.013048848130012558],[122,34,65,0.008797019989374093],[122,34,66,0.004826686283850724],[122,34,67,0.0011306738281235459],[122,34,68,-0.002294949411262428],[122,34,69,-0.005447802193640695],[122,34,70,-0.00832719880731725],[122,34,71,-0.010934927032765237],[122,34,72,-0.013275709573737127],[122,34,73,-0.015357541340240161],[122,34,74,-0.017191902980273295],[122,34,75,-0.01879385136438108],[122,34,76,-0.020181988021766746],[122,34,77,-0.02137830680597648],[122,34,78,-0.022407922327669534],[122,34,79,-0.023298680931021977],[122,35,64,0.003407246672538453],[122,35,65,-0.0010523562801214494],[122,35,66,-0.005227182550420335],[122,35,67,-0.009123471183672969],[122,35,68,-0.012745354559752899],[122,35,69,-0.01609139757851543],[122,35,70,-0.019161919192494357],[122,35,71,-0.021959717928306706],[122,35,72,-0.02449049888170194],[122,35,73,-0.026763180543179915],[122,35,74,-0.028790081857113986],[122,35,75,-0.030586990214149172],[122,35,76,-0.03217311136113525],[122,35,77,-0.03357090248215277],[122,35,78,-0.03480578995395399],[122,35,79,-0.035905773508799414],[122,36,64,-0.005972612513573406],[122,36,65,-0.010637228953785082],[122,36,66,-0.015016085150659754],[122,36,67,-0.019114256347208924],[122,36,68,-0.0229359562921137],[122,36,69,-0.02648070709979948],[122,36,70,-0.029749803108124466],[122,36,71,-0.03274698185598149],[122,36,72,-0.03547881921273789],[122,36,73,-0.037955008746845764],[122,36,74,-0.04018852573348762],[122,36,75,-0.042195676486659776],[122,36,76,-0.04399603397453389],[122,36,77,-0.04561226093548059],[122,36,78,-0.04706982195154435],[122,36,79,-0.04839658615592327],[122,37,64,-0.015156440597009928],[122,37,65,-0.02002280936261123],[122,37,66,-0.02460445658806911],[122,37,67,-0.028905170944768462],[122,37,68,-0.032929170368308225],[122,37,69,-0.03667691972177284],[122,37,70,-0.04015062673444621],[122,37,71,-0.04335486096080726],[122,37,72,-0.046296922481529834],[122,37,73,-0.048987099311884476],[122,37,74,-0.05143881390369212],[122,37,75,-0.05366865940126779],[122,37,76,-0.05569632657428771],[122,37,77,-0.05754442259850779],[122,37,78,-0.059238183084580294],[122,37,79,-0.06080507896545437],[122,38,64,-0.024228832682970852],[122,38,65,-0.029293390548684767],[122,38,66,-0.034075930637783615],[122,38,67,-0.03857895941801461],[122,38,68,-0.04280667495705375],[122,38,69,-0.046760444807125434],[122,38,70,-0.05044329391916384],[122,38,71,-0.05386047949704786],[122,38,72,-0.05701984203765312],[122,38,73,-0.05993204917807112],[122,38,74,-0.06261073270964052],[122,38,75,-0.06507251938269779],[122,38,76,-0.06733695637877889],[122,38,77,-0.06646880574322649],[122,38,78,-0.06085197837317656],[122,38,79,-0.05524552086212339],[122,39,64,-0.0332374898745497],[122,39,65,-0.038495945297372644],[122,39,66,-0.04347653432562301],[122,39,67,-0.04818049631787506],[122,39,68,-0.05261201354959846],[122,39,69,-0.056773341519208285],[122,39,70,-0.060668242378749085],[122,39,71,-0.06430252583980285],[122,39,72,-0.06768439343956108],[122,39,73,-0.07082467910664661],[122,39,74,-0.07373698634495623],[122,39,75,-0.06945352055340763],[122,39,76,-0.06401668193692044],[122,39,77,-0.05853698854989966],[122,39,78,-0.0530431909477033],[122,39,79,-0.047565677373933996],[122,40,64,-0.042184802877335364],[122,40,65,-0.04763169767072704],[122,40,66,-0.052806246611330154],[122,40,67,-0.05770833839693463],[122,40,68,-0.062342141884005234],[122,40,69,-0.06671085193155633],[122,40,70,-0.07081894823895808],[122,40,71,-0.07467271106569137],[122,40,72,-0.07691257844545377],[122,40,73,-0.0718541771374473],[122,40,74,-0.06668755279130337],[122,40,75,-0.06143458620418301],[122,40,76,-0.056119391798274756],[122,40,77,-0.050768173729193275],[122,40,78,-0.045408984925483314],[122,40,79,-0.04007139043685251],[122,41,64,-0.05107506176916398],[122,41,65,-0.05670398324739107],[122,41,66,-0.06206730882070349],[122,41,67,-0.06716342123053229],[122,41,68,-0.07199647963632425],[122,41,69,-0.07657072234203313],[122,41,70,-0.07822408683191492],[122,41,71,-0.07352929904152478],[122,41,72,-0.06869802660339332],[122,41,73,-0.06374772143376377],[122,41,74,-0.058001672761471286],[122,41,75,-0.052008078650141676],[122,41,76,-0.046007629966000635],[122,41,77,-0.040022061912594394],[122,41,78,-0.034074580986735194],[122,41,79,-0.028189565702269118],[122,42,64,-0.059913798650629624],[122,42,65,-0.065717653851695],[122,42,66,-0.0712637014069258],[122,42,67,-0.0765486206672404],[122,42,68,-0.07870357347144223],[122,42,69,-0.07392117597973037],[122,42,70,-0.06810656786445872],[122,42,71,-0.062209140386497164],[122,42,72,-0.05624262403199788],[122,42,73,-0.05022198974878194],[122,42,74,-0.044163657370645856],[122,42,75,-0.03808560751985461],[122,42,76,-0.03200739756405936],[122,42,77,-0.025950082423925897],[122,42,78,-0.019936041234393326],[122,42,79,-0.013988711051567496],[122,43,64,-0.06870461415250764],[122,43,65,-0.07467594242595509],[122,43,66,-0.07783909109763666],[122,43,67,-0.07221339165767432],[122,43,68,-0.06647163981122899],[122,43,69,-0.0606277080898956],[122,43,70,-0.054695115259794695],[122,43,71,-0.048687514279581776],[122,43,72,-0.04261912563450155],[122,43,73,-0.036505075069688454],[122,43,74,-0.030361635717676864],[122,43,75,-0.024206374859170807],[122,43,76,-0.018058205788956602],[122,43,77,-0.011937345478928659],[122,43,78,-0.005865178937432611],[122,43,79,1.3596864560308508E-4],[122,44,64,-0.0761199567483021],[122,44,65,-0.07060847717763775],[122,44,66,-0.0649722991027461],[122,44,67,-0.05921247095228599],[122,44,68,-0.0533411126482067],[122,44,69,-0.047373927306755145],[122,44,70,-0.04132581682690157],[122,44,71,-0.035211361810317504],[122,44,72,-0.029045293550637227],[122,44,73,-0.02284287141464935],[122,44,74,-0.016620165494746486],[122,44,75,-0.010394244656337256],[122,44,76,-0.004183270337556606],[122,44,77,0.001993503319976721],[122,44,78,0.008115822221471723],[122,44,79,0.014162616969709552],[122,45,64,-0.06359036068172422],[122,45,65,-0.057934804809286714],[122,45,66,-0.052161148547172735],[122,45,67,-0.04626833191911895],[122,45,68,-0.040268819979356156],[122,45,69,-0.03418034444216619],[122,45,70,-0.02801933548065766],[122,45,71,-0.021801395282833126],[122,45,72,-0.015541814673704295],[122,45,73,-0.009255995882881273],[122,45,74,-0.002959781210361636],[122,45,75,0.003330312411200154],[122,45,76,0.00959695272413986],[122,45,77,0.0158219448660828],[122,45,78,0.02198627683366481],[122,45,79,0.028070256824259315],[122,46,64,-0.05111943044616955],[122,46,65,-0.04532163207174089],[122,46,66,-0.03941260186676878],[122,46,67,-0.033389047890635314],[122,46,68,-0.02726386011215685],[122,46,69,-0.021057003875959],[122,46,70,-0.014786596155196632],[122,46,71,-0.00846937320930969],[122,46,72,-0.0021212561223151547],[122,46,73,0.004242176833202202],[122,46,74,0.010605311389410468],[122,46,75,0.016952212169754104],[122,46,76,0.023266431167105757],[122,46,77,0.029530909485606334],[122,46,78,0.035727971802963325],[122,46,79,0.0418394128098488],[122,47,64,-0.03871150161201553],[122,47,65,-0.03277477159530964],[122,47,66,-0.026733801046200156],[122,47,67,-0.02058300555013309],[122,47,68,-0.01433580659028627],[122,47,69,-0.008014607423624589],[122,47,70,-0.0016393763845088984],[122,47,71,0.00477189190845101],[122,47,72,0.011202559500268008],[122,47,73,0.01763682045046266],[122,47,74,0.02405926911285306],[122,47,75,0.030454561621505533],[122,47,76,0.036807170620542416],[122,47,77,0.04310123304641181],[122,47,78,0.04932049055256664],[122,47,79,0.055448321962329336],[122,48,64,-0.026424365937654258],[122,48,65,-0.020352305997436638],[122,48,66,-0.014182830857798735],[122,48,67,-0.007908043800757495],[122,48,68,-0.0015420062168568227],[122,48,69,0.004890261776566979],[122,48,70,0.011366787884200615],[122,48,71,0.017868194063716876],[122,48,72,0.02437702693117151],[122,48,73,0.03087717968186575],[122,48,74,0.037353406199498077],[122,48,75,0.04379092777650574],[122,48,76,0.05017513262701447],[122,48,77,0.05649136814216881],[122,48,78,0.06272482561571271],[122,48,79,0.06886051695959232],[122,49,64,-0.014323754546083325],[122,49,65,-0.00811999224199381],[122,49,66,-0.0018251787387493067],[122,49,67,0.004570876849266804],[122,49,68,0.01105337055440363],[122,49,69,0.017594521965061984],[122,49,70,0.024170223201071935],[122,49,71,0.03075959453408893],[122,49,72,0.037344262640737064],[122,49,73,0.043907729383230884],[122,49,74,0.05043483193814141],[122,49,75,0.056911294843005326],[122,49,76,0.06332337428732479],[122,49,77,0.0696575947405388],[122,49,78,0.07590057778463473],[122,49,79,0.08121128079267302],[122,50,64,-0.002466894280445416],[122,50,65,0.0038648379634226935],[122,50,66,0.010281969862709675],[122,50,67,0.016796927320395824],[122,50,68,0.023394067899829448],[122,50,69,0.030042746754025948],[122,50,70,0.03671661449295684],[122,50,71,0.04339318371683057],[122,50,72,0.05005305676908388],[122,50,73,0.05667924294686426],[122,50,74,0.06325656613553868],[122,50,75,0.06977116358203454],[122,50,76,0.07621007627729935],[122,50,77,0.08233385642965944],[122,50,78,0.08749944487073244],[122,50,79,0.09257449082576663],[122,51,64,0.009097425493606396],[122,51,65,0.015553223562194426],[122,51,66,0.022089687918299745],[122,51,67,0.02872137886068111],[122,51,68,0.035431727768636526],[122,51,69,0.04218716298528683],[122,51,70,0.04895901694915099],[122,51,71,0.05572310537745319],[122,51,72,0.062458907269321955],[122,51,73,0.06914883323496133],[122,51,74,0.07577758325865278],[122,51,75,0.08197406207673161],[122,51,76,0.08756402630686622],[122,51,77,0.09306085257461003],[122,51,78,0.09846854408373665],[122,51,79,0.10379100173383775],[122,52,64,0.020328729382495164],[122,52,65,0.026904462428873302],[122,52,66,0.033557206276499565],[122,52,67,0.040303515343203505],[122,52,68,0.04712581692277542],[122,52,69,0.05398759317089919],[122,52,70,0.060857813409726624],[122,52,71,0.06771052758604851],[122,52,72,0.07420071003957095],[122,52,73,0.08027613002712448],[122,52,74,0.0862553519461226],[122,52,75,0.09214363776008241],[122,52,76,0.09794488548855552],[122,52,77,0.10366206290478204],[122,52,78,0.10929754985257381],[122,52,79,0.11485338912997431],[122,53,64,0.029271824837322456],[122,53,65,0.036664807811682305],[122,53,66,0.04388941256522498],[122,53,67,0.05091736774049762],[122,53,68,0.05775751135099002],[122,53,69,0.06443959475971757],[122,53,70,0.07098747237458862],[122,53,71,0.07741951363374958],[122,53,72,0.08374952730118466],[122,53,73,0.0899875992563538],[122,53,74,0.09614084241092533],[122,53,75,0.10221405763593422],[122,53,76,0.10821030482949126],[122,53,77,0.1141313834963863],[122,53,78,0.11997822244294992],[122,53,79,0.12575117841359357],[122,54,64,0.03786829951998391],[122,54,65,0.04535837283782863],[122,54,66,0.052683545891450786],[122,54,67,0.059813795429210614],[122,54,68,0.06675889740049723],[122,54,69,0.07355123285713276],[122,54,70,0.08021674358196325],[122,54,71,0.0867753301667399],[122,54,72,0.0932418137730754],[122,54,73,0.0996268125034788],[122,54,74,0.10593753089984008],[122,54,75,0.11217846133656655],[122,54,76,0.11835199632240626],[122,54,77,0.12445895096673892],[122,54,78,0.1304989950992062],[122,54,79,0.13647099475621435],[122,55,64,0.046487047825327976],[122,55,65,0.054067475073056474],[122,55,66,0.06148510489367308],[122,55,67,0.06870839879207259],[122,55,68,0.07574811536941516],[122,55,69,0.08263916732233714],[122,55,70,0.08940953737425833],[122,55,71,0.09608066158487838],[122,55,72,0.10266842309664727],[122,55,73,0.1091840615792904],[122,55,74,0.11563499678541024],[122,55,75,0.12202556487932625],[122,55,76,0.1283576664478565],[122,55,77,0.1346313253436548],[122,55,78,0.14084515774543493],[122,55,79,0.14699675104518545],[122,56,64,0.05511325162755804],[122,56,65,0.06277735777955366],[122,56,66,0.0702794105487099],[122,56,67,0.07758660939206131],[122,56,68,0.0847107239934755],[122,56,69,0.09168906412157335],[122,56,70,0.09855157587814106],[122,56,71,0.10532120972525832],[122,56,72,0.11201494049566481],[122,56,73,0.11864470413956907],[122,56,74,0.1252182495286911],[122,56,75,0.1317399038865378],[122,56,76,0.1382112506598887],[122,56,77,0.14463171888817924],[122,56,78,0.15099908336140827],[122,56,79,0.15730987508358893],[122,57,64,0.06372593351795063],[122,57,65,0.07146713491428225],[122,57,66,0.07904572484150106],[122,57,67,0.08642790235429396],[122,57,68,0.09362645921037205],[122,57,69,0.1006809351037596],[122,57,70,0.10762313312153632],[122,57,71,0.11447747232923801],[122,57,72,0.12126202824983592],[122,57,73,0.12798949104804982],[122,57,74,0.1346680396610544],[122,57,75,0.141302130363735],[122,57,76,0.14789319850180588],[122,57,77,0.15444027236730504],[122,57,78,0.16094049842474653],[122,57,79,0.167389577322777],[122,58,64,0.07229849935360147],[122,58,65,0.08011032515488067],[122,58,66,0.08775777320943691],[122,58,67,0.09520630400225095],[122,58,68,0.10246972421622878],[122,58,69,0.10958960852289486],[122,58,70,0.11659948484701575],[122,58,71,0.12352517169885194],[122,58,72,0.13038583341552598],[122,58,73,0.13719495398939607],[122,58,74,0.14396122765729089],[122,58,75,0.15068936467028882],[122,58,76,0.1573808109078655],[122,58,77,0.16403438024064404],[122,58,78,0.1706467987792361],[122,58,79,0.1772131603729893],[122,59,64,0.08079934889186008],[122,59,65,0.08867545477178933],[122,59,66,0.09638433592417583],[122,59,67,0.10389096823638032],[122,59,68,0.11121014790679039],[122,59,69,0.11838526734305137],[122,59,70,0.12545142519661015],[122,59,71,0.1324357489607238],[122,59,72,0.1393584595125689],[122,59,73,0.14623385502187336],[122,59,74,0.15307121234488358],[122,59,75,0.1598756042669624],[122,59,76,0.16664863120006693],[122,59,77,0.1733890661807554],[122,59,78,0.18009341224682635],[122,59,79,0.18675637149639873],[122,60,64,0.08919255556891148],[122,60,65,0.09712673045857734],[122,60,66,0.10488990956173949],[122,60,67,0.11244682283891681],[122,60,68,0.11981321291669542],[122,60,69,0.12703405656197553],[122,60,70,0.13414585151699157],[122,60,71,0.14117692518730113],[122,60,72,0.148148503414107],[122,60,73,0.1550756992788308],[122,60,74,0.1619684200151884],[122,60,75,0.16883219034710503],[122,60,76,0.175668890812458],[122,60,77,0.1824774098708767],[122,60,78,0.18925420882522365],[122,60,79,0.1959937988111882],[122,61,64,0.09743860579574314],[122,61,65,0.10542477247237259],[122,61,66,0.11323542887844625],[122,61,67,0.12083527598390849],[122,61,68,0.12824094349515375],[122,61,69,0.1354987497455305],[122,61,70,0.14264640742284007],[122,61,71,0.14971331944815414],[122,61,72,0.15672164743467046],[122,61,73,0.16368730072298657],[122,61,74,0.17062084403492453],[122,61,75,0.17752832202973587],[122,61,76,0.18441199928682284],[122,61,77,0.19127101447605593],[122,61,78,0.19810194770696446],[122,61,79,0.2048993002717239],[122,62,64,0.10549522109714136],[122,62,65,0.11352743162178917],[122,62,66,0.1213790728270549],[122,62,67,0.1290150068773725],[122,62,68,0.13645267732898123],[122,62,69,0.14373949906199127],[122,62,70,0.15091420857444532],[122,62,71,0.1580071484008815],[122,62,72,0.16504133136404336],[122,62,73,0.1720334258221514],[122,62,74,0.17899465992987815],[122,62,75,0.1859316431715102],[122,62,76,0.1928471036637501],[122,62,77,0.19974053996120672],[122,62,78,0.20660878632651472],[122,62,79,0.213446490649343],[122,63,64,0.1133182689189215],[122,63,65,0.12139069602087695],[122,63,66,0.12927716071285672],[122,63,67,0.13694284660449063],[122,63,68,0.14440592746481146],[122,63,69,0.15171467503726613],[122,63,70,0.158908657451189],[122,63,71,0.16601901375266997],[122,63,72,0.17306951081418706],[122,63,73,0.18007752153524603],[122,63,74,0.18705492233568413],[122,63,75,0.19400890818239383],[122,63,76,0.20094272362788346],[122,63,77,0.2078563085733686],[122,63,78,0.21474685769661125],[122,63,79,0.22160929270566157],[122,64,64,0.1208627339465245],[122,64,65,0.12896965930199614],[122,64,66,0.1368851100241536],[122,64,67,0.14457472055932116],[122,64,68,0.15205730554825392],[122,64,69,0.15938176708910376],[122,64,70,0.16658831801435503],[122,64,71,0.17370874831399796],[122,64,72,0.1807674724194947],[122,64,73,0.1877824979569671],[122,64,74,0.19476631396047056],[122,64,75,0.20172669677417582],[122,64,76,0.20866743210874777],[122,64,77,0.2155889519502159],[122,64,78,0.22248888524582844],[122,64,79,0.22936252151091566],[122,65,64,0.12808376349114467],[122,65,65,0.13621956398745583],[122,65,66,0.14415846977022811],[122,65,67,0.15186666642010604],[122,65,68,0.15936352047115657],[122,65,69,0.16669835905430358],[122,65,70,0.1739118645878872],[122,65,71,0.18103633507689854],[122,65,72,0.18809672041365857],[122,65,73,0.19511158022070516],[122,65,74,0.2020939612195925],[122,65,75,0.2090521923462905],[122,65,76,0.21599059606927665],[122,65,77,0.22291011459826185],[122,65,78,0.2298088498964523],[122,65,79,0.23668251662744239],[122,66,64,0.13493778845391965],[122,66,65,0.14309692158951387],[122,66,66,0.1510540309474901],[122,66,67,0.1587759293405564],[122,66,68,0.16628245414690565],[122,66,69,0.17362318147502492],[122,66,70,0.18083910676304268],[122,66,71,0.18796290115471323],[122,66,72,0.19501993644011753],[122,66,73,0.2020292315241033],[122,66,74,0.20900431840045863],[122,66,75,0.21595402584600562],[122,66,76,0.22288317928330223],[122,66,77,0.22979321549149118],[122,66,78,0.2366827110687079],[122,66,79,0.24354782376644007],[122,67,64,0.14138372033641744],[122,67,65,0.14956070995777723],[122,67,66,0.15753101469723924],[122,67,67,0.16526213496453437],[122,67,68,0.17277431506574956],[122,67,69,0.1801172413382215],[122,67,70,0.187332091057573],[122,67,71,0.19445178734265722],[122,67,72,0.2015020133740475],[122,67,73,0.20850214806212164],[122,67,74,0.2154661211361978],[122,67,75,0.22240318586174812],[122,67,76,0.229318607826515],[122,67,77,0.23621426846639093],[122,67,78,0.24308918222490133],[122,67,79,0.24993992645609764],[122,68,64,0.14738422458616504],[122,68,65,0.155573648210905],[122,68,66,0.16355233853531875],[122,68,67,0.17128854068827998],[122,68,68,0.17880287009943455],[122,68,69,0.1861450297808917],[122,68,70,0.19335627988099827],[122,68,71,0.20046969388262104],[122,68,72,0.2075111637620544],[122,68,73,0.21450032648564402],[122,68,74,0.22145140980587222],[122,68,75,0.22837399555378585],[122,68,76,0.2352736988579345],[122,68,77,0.24215276194941626],[122,68,78,0.2490105614349479],[122,68,79,0.25584402813506923],[122,69,64,0.15290707586626695],[122,69,65,0.16110355502623236],[122,69,66,0.16908596660646927],[122,69,67,0.17682337130142572],[122,69,68,0.18433676085110634],[122,69,69,0.1916758141843108],[122,69,70,0.19888181429929286],[122,69,71,0.20598790892337843],[122,69,72,0.21302010928515874],[122,69,73,0.21999821011492482],[122,69,74,0.2269366288198966],[122,69,75,0.23384516201566086],[122,69,76,0.24072965782818254],[122,69,77,0.24759260260981042],[122,69,78,0.2544336209345981],[122,69,79,0.2612498879529791],[122,70,64,0.157940449419583],[122,70,65,0.16613900319682853],[122,70,66,0.17412091299840304],[122,70,67,0.18185615957528917],[122,70,68,0.18936613615983014],[122,70,69,0.1967004627575689],[122,70,70,0.20390038698864663],[122,70,71,0.21099905293179716],[122,70,72,0.21802249651515784],[122,70,73,0.22499056204211942],[122,70,74,0.23191773777738367],[122,70,75,0.23881390875313854],[122,70,76,0.24568502518805507],[122,70,77,0.252533685140719],[122,70,78,0.2593596302408505],[122,70,79,0.2661601535561987],[122,71,64,0.16251797349422534],[122,71,65,0.17071503448913292],[122,71,66,0.17869362703229832],[122,71,67,0.18642479480374116],[122,71,68,0.19393028324097955],[122,71,69,0.20125947491757928],[122,71,70,0.20845340561034742],[122,71,71,0.2155450457128231],[122,71,72,0.22256029372415034],[122,71,73,0.22951889072989065],[122,71,74,0.23643525377610972],[122,71,75,0.2433192262728926],[122,71,76,0.25017674379633437],[122,71,77,0.25701041388705326],[122,71,78,0.26382000866511035],[122,71,79,0.27060286929586436],[122,72,64,0.16667523903216364],[122,72,65,0.1748685756137142],[122,72,66,0.18284235195999335],[122,72,67,0.19056884454053896],[122,72,68,0.19807002790828349],[122,72,69,0.2053947339770315],[122,72,70,0.21258350003193008],[122,72,71,0.21966886761008333],[122,72,72,0.2266763740958955],[122,72,73,0.23362546504759013],[122,72,74,0.240530325133483],[122,72,75,0.2474006257917877],[122,72,76,0.2542421879610108],[122,72,77,0.26105755845735124],[122,72,78,0.2678464987977501],[122,72,79,0.2746063854822201],[122,73,64,0.17044197644479336],[122,73,65,0.17863037791415978],[122,73,66,0.18659882726858978],[122,73,67,0.1943210185594433],[122,73,68,0.20181897962891224],[122,73,69,0.2091405848219377],[122,73,70,0.2163255102648212],[122,73,71,0.22340555541720947],[122,73,72,0.23040563171902706],[122,73,73,0.23734467153814875],[122,73,74,0.2442364552782145],[122,73,75,0.2510903547419344],[122,73,76,0.25791199107921214],[122,73,77,0.26470380587945236],[122,73,78,0.271465544190301],[122,73,79,0.2781946484606574],[122,74,64,0.17384412558539147],[122,74,65,0.18202709900493114],[122,74,66,0.18999037575050956],[122,74,67,0.1977092558190642],[122,74,68,0.20520561004945304],[122,74,69,0.21252589093822208],[122,74,70,0.2197085053216826],[122,74,71,0.2267841638863123],[122,74,72,0.23377686506896894],[122,74,73,0.24070479862002744],[122,74,74,0.24758116667493282],[122,74,75,0.2544149204167352],[122,74,76,0.2612114106472186],[122,74,77,0.26797295081526823],[122,74,78,0.27469929127494785],[122,74,79,0.2813880037621913],[122,75,64,0.17690588531821755],[122,75,65,0.18508336486508478],[122,75,66,0.19304197195596864],[122,75,67,0.20075879374710817],[122,75,68,0.2082553148591673],[122,75,69,0.21557607601243278],[122,75,70,0.2227577882078294],[122,75,71,0.2298297153252558],[122,75,72,0.23681465097093216],[122,75,73,0.24372981411749606],[122,75,74,0.25058766137474275],[122,75,75,0.2573966139675042],[122,75,76,0.2641616977336567],[122,75,77,0.2708850946875966],[122,75,78,0.2775666049195753],[122,75,79,0.28420401781878935],[122,76,64,0.17965173982053756],[122,76,65,0.18782380951507582],[122,76,66,0.19577828915723003],[122,76,67,0.20349421698551415],[122,76,68,0.2109924561587118],[122,76,69,0.2183151473239585],[122,76,70,0.22549688434197337],[122,76,71,0.2325651346899627],[122,76,72,0.23954120659714026],[122,76,73,0.24644113385653763],[122,76,74,0.25327647615030785],[122,76,75,0.2600550329662791],[122,76,76,0.26678146942181835],[122,76,77,0.27345785254505706],[122,76,78,0.28008409679006935],[122,76,79,0.2866583177813827],[122,77,64,0.18210845860815827],[122,77,65,0.19027508925032366],[122,77,66,0.1982257217929507],[122,77,67,0.20594148256976366],[122,77,68,0.21344238232778068],[122,77,69,0.22076769796582302],[122,77,70,0.22794951051697204],[122,77,71,0.23501316739077652],[122,77,72,0.2419782368634631],[122,77,73,0.24885937887702136],[122,77,74,0.25566712999093666],[122,77,75,0.2624086005732574],[122,77,76,0.269088082558137],[122,77,77,0.27570756633292076],[122,77,78,0.2822671655461192],[122,77,79,0.28876544884784616],[122,78,64,0.18430706714374664],[122,78,65,0.1924678682660253],[122,78,66,0.20041438021414432],[122,78,67,0.20812991836162542],[122,78,68,0.21563342222438392],[122,78,69,0.2229608847645559],[122,78,70,0.23014152133999885],[122,78,71,0.23719827685738248],[122,78,72,0.2441487644145301],[122,78,73,0.25100611863598266],[122,78,74,0.25777976155967663],[122,78,75,0.26447607917825117],[122,78,76,0.27109900698140965],[122,78,77,0.2776505230838992],[122,78,78,0.28413104775384346],[122,78,79,0.290539748378004],[122,79,64,0.18626509636891256],[122,79,65,0.19441916417556415],[122,79,66,0.20236074866961457],[122,79,67,0.21007543153000832],[122,79,68,0.2175808890986272],[122,79,69,0.22490946736501258],[122,79,70,0.2320872096835013],[122,79,71,0.23913441191136414],[122,79,72,0.24606654290369243],[122,79,73,0.25289507782057286],[122,79,74,0.2596282421238478],[122,79,75,0.2662716643895269],[122,79,76,0.2728289363077104],[122,79,77,0.2793020784825498],[122,79,78,0.28569191087717266],[122,79,79,0.29199832697215417],[122,80,64,0.18793281004929357],[122,80,65,0.19607880317382295],[122,80,66,0.2040149583543176],[122,80,67,0.21172924687908548],[122,80,68,0.21923795462518958],[122,80,69,0.22656948170579078],[122,80,70,0.23374641267385607],[122,80,71,0.24078612702811047],[122,80,72,0.24770170456477886],[122,80,73,0.25450274129237593],[122,80,74,0.26119607379982157],[122,80,75,0.2677864102211463],[122,80,76,0.27427686618972064],[122,80,77,0.28066940441916466],[122,80,78,0.28696517678369726],[122,80,79,0.2931647679971093],[122,81,64,0.18925879434383738],[122,81,65,0.19739475126356024],[122,81,66,0.2053250715022765],[122,81,67,0.2130402814206955],[122,81,68,0.2205552173495436],[122,81,69,0.22789410736381877],[122,81,70,0.2350758181294342],[122,81,71,0.24211453228238788],[122,81,72,0.24902064688826375],[122,81,73,0.2558015797523037],[122,81,74,0.262462481465139],[122,81,75,0.26900685132804025],[122,81,76,0.27543705555672016],[122,81,77,0.2817547464121438],[122,81,78,0.28796118114724384],[122,81,79,0.29405743988930577],[122,82,64,0.19020833597710946],[122,82,65,0.19833146251947292],[122,82,66,0.20625518630357242],[122,82,67,0.21397277322949745],[122,82,68,0.22149761231593398],[122,82,69,0.22884961295692152],[122,82,70,0.2360437084282567],[122,82,71,0.24309061436778023],[122,82,72,0.24999773254273933],[122,82,73,0.25676995923009466],[122,82,74,0.2634103960623039],[122,82,75,0.2699209614576429],[122,82,76,0.2763029010168552],[122,82,77,0.2825571955246224],[122,82,78,0.2886848654417614],[122,82,79,0.29468717101151526],[122,83,64,0.19076094101600463],[122,83,65,0.19886745683840304],[122,83,66,0.20678310380665077],[122,83,67,0.21450407142866415],[122,83,68,0.2220423578864271],[122,83,69,0.22941349054007598],[122,83,70,0.23662830951620384],[122,83,71,0.24369382301036543],[122,83,72,0.25061413133798516],[122,83,73,0.25739125180293304],[122,83,74,0.2640258421695726],[122,83,75,0.2705178208006279],[122,83,76,0.276866881795802],[122,83,77,0.2830729037324274],[122,83,78,0.289136250866259],[122,83,79,0.29505796589704286],[122,84,64,0.1909080199126077],[122,84,65,0.19899306069584854],[122,84,66,0.20689815337251022],[122,84,67,0.214622578880786],[122,84,68,0.2221770480877697],[122,84,69,0.22957272724934139],[122,84,70,0.23681626801218714],[122,84,71,0.24391077568808983],[122,84,72,0.25085677028707876],[122,84,73,0.2576530440087517],[122,84,74,0.26429741287213],[122,84,75,0.270787360453295],[122,84,76,0.2771205719849384],[122,84,77,0.28329535735046474],[122,84,78,0.28931096177412025],[122,84,79,0.29516776326684635],[122,85,64,0.1906507444826455],[122,85,65,0.19870831648982426],[122,85,66,0.20659918210956935],[122,85,67,0.2143258527861273],[122,85,68,0.22189789538334356],[122,85,69,0.2293222187095321],[122,85,70,0.23660126047313249],[122,85,71,0.24373408419996356],[122,85,72,0.25071068027685506],[122,85,73,0.2573729924621366],[122,85,74,0.26401626046307536],[122,85,75,0.27063061426359336],[122,85,76,0.2770547204042514],[122,85,77,0.2832157081277524],[122,85,78,0.28920079753565275],[122,85,79,0.2950092340931085],[122,86,64,0.1899980828814947],[122,86,65,0.19802106650127113],[122,86,66,0.20589271421479627],[122,86,67,0.2136188689281871],[122,86,68,0.2212081293399582],[122,86,69,0.228663329324682],[122,86,70,0.23593166973158333],[122,86,71,0.2423674743769445],[122,86,72,0.248801634436532],[122,86,73,0.25522809567535654],[122,86,74,0.2616408664331885],[122,86,75,0.26803335170968257],[122,86,76,0.2743978060061857],[122,86,77,0.2807249066323153],[122,86,78,0.2870034488840189],[122,86,79,0.2932201642103037],[122,87,64,0.18896501816099662],[122,87,65,0.19694521702972045],[122,87,66,0.20479128568948324],[122,87,67,0.21251245486833237],[122,87,68,0.22011655624583046],[122,87,69,0.22760260418696662],[122,87,70,0.23416388356716356],[122,87,71,0.2403500476607699],[122,87,72,0.24653010773913667],[122,87,73,0.2527020639039957],[122,87,74,0.25886379976712465],[122,87,75,0.26501234654574435],[122,87,76,0.27114327240510455],[122,87,77,0.2772501989285849],[122,87,78,0.2833244462748459],[122,87,79,0.2893548082726731],[122,88,64,0.18757095554369188],[122,88,65,0.19549918782377856],[122,88,66,0.20331195947112898],[122,88,67,0.2110218969819647],[122,88,68,0.21863628434973958],[122,88,69,0.226131651703785],[122,88,70,0.2320718147627839],[122,88,71,0.23799768592613696],[122,88,72,0.24391073085620493],[122,88,73,0.2498131475547961],[122,88,74,0.2557069165137255],[122,88,75,0.26159298067487935],[122,88,76,0.2674705576357699],[122,88,77,0.27333658618627893],[122,88,78,0.2791853089200273],[122,88,79,0.28500799233343005],[122,89,64,0.18583832313581775],[122,89,65,0.19370455151758514],[122,89,66,0.20147502562576816],[122,89,67,0.2091657258478538],[122,89,68,0.2167836190318601],[122,89,69,0.22397601291169722],[122,89,70,0.22966193454824174],[122,89,71,0.23532059748285353],[122,89,72,0.24095765205613448],[122,89,73,0.2465795613301579],[122,89,74,0.25219254739882485],[122,89,75,0.2578016746693194],[122,89,76,0.26341007280955514],[122,89,77,0.2690183016832185],[122,89,78,0.2746238602285848],[122,89,79,0.28022084088364474],[122,90,64,0.1837913704137474],[122,90,65,0.19158486740392391],[122,90,66,0.19930289087494546],[122,90,67,0.2069646841471758],[122,90,68,0.21457713188140815],[122,90,69,0.22150990564784753],[122,90,70,0.22694024291388756],[122,90,71,0.23232865783609785],[122,90,72,0.23768488829469736],[122,90,73,0.2430196509087559],[122,90,74,0.2483434726394932],[122,90,75,0.25366566682381014],[122,90,76,0.2589934566201661],[122,90,77,0.2643312484513735],[122,90,78,0.2696800576389586],[122,90,79,0.2750370880454513],[122,91,64,0.18145516845869672],[122,91,65,0.1891647135203745],[122,91,66,0.1968191613866616],[122,91,67,0.20444088089774193],[122,91,68,0.21203690734341074],[122,91,69,0.21873590562406417],[122,91,70,0.22391279641538292],[122,91,71,0.22903179080084046],[122,91,72,0.2341065463098608],[122,91,73,0.23915194362486783],[122,91,74,0.24418279496869355],[122,91,75,0.2492127045797042],[122,91,76,0.25425308456764545],[122,91,77,0.2593123290205696],[122,91,78,0.26439514881789394],[122,91,79,0.2695020692007457],[122,92,64,0.17885481558054736],[122,92,65,0.18646892069586565],[122,92,66,0.1940479224391902],[122,92,67,0.20161713554118174],[122,92,68,0.2091839703060186],[122,92,69,0.21565718752051932],[122,92,70,0.22058607683249581],[122,92,71,0.22544020349602317],[122,92,72,0.2302369114356951],[122,92,73,0.23499508123412052],[122,92,74,0.23973370935858374],[122,92,75,0.2444706472283546],[122,92,76,0.2492215037449474],[122,92,77,0.2539987144594906],[122,92,78,0.25881078011018777],[122,92,79,0.2636616768328743],[122,93,64,0.17601485166133396],[122,93,65,0.18352201189905729],[122,93,66,0.19101321826846365],[122,93,67,0.19851651511424823],[122,93,68,0.20603989772865497],[122,93,69,0.2122778384639468],[122,93,70,0.21696719799133843],[122,93,71,0.22156447280014405],[122,93,72,0.22609040202813796],[122,93,73,0.23056763300263824],[122,93,74,0.2350191680501928],[122,93,75,0.23946697889160176],[122,93,76,0.2439307925866056],[122,93,77,0.24842705251891795],[122,93,78,0.2529680574452478],[122,93,79,0.2575612811758489],[122,94,64,0.17295888426084502],[122,94,65,0.18034784994563402],[122,94,66,0.18773873513233452],[122,94,67,0.1951620674685735],[122,94,68,0.20262661715864005],[122,94,69,0.20860299482801314],[122,94,70,0.21306394827343733],[122,94,71,0.21741548104079794],[122,94,72,0.22168138756113048],[122,94,73,0.225887787495612],[122,94,74,0.2300614396084855],[122,94,75,0.23422823086020753],[122,94,76,0.23841184503389098],[122,94,77,0.2426326147094248],[122,94,78,0.2469065599071919],[122,94,79,0.25124461624148153],[122,95,64,0.16970942926041113],[122,95,65,0.17696949635845172],[122,95,66,0.18424769036806257],[122,95,67,0.1915767532558282],[122,95,68,0.1989663947495429],[122,95,69,0.20463879989009054],[122,95,70,0.2088846665349427],[122,95,71,0.21300419886930685],[122,95,72,0.21702386860692502],[122,95,73,0.22097292157177542],[122,95,74,0.22488156082649086],[122,95,75,0.22877931244944444],[122,95,76,0.23269357862293952],[122,95,77,0.23664838217207387],[122,95,78,0.24066330617681542],[122,95,79,0.24475263177314072],[122,96,64,0.1662879685744001],[122,96,65,0.17340928393058028],[122,96,66,0.1805629299809434],[122,96,67,0.18778357916543234],[122,96,68,0.19508201517653623],[122,96,69,0.20039218008198456],[122,96,70,0.2044379493451422],[122,96,71,0.2083413134376996],[122,96,72,0.21213101705885293],[122,96,73,0.21583904521171593],[122,96,74,0.21949868039957776],[122,96,75,0.22314274960393932],[122,96,76,0.22680206605068604],[122,96,77,0.2305040702249517],[122,96,78,0.23427167405487112],[122,96,79,0.23812231165414502],[122,97,64,0.16271522723091286],[122,97,65,0.16968910531538872],[122,97,66,0.17670723708080718],[122,97,67,0.18380593468846868],[122,97,68,0.1909971556412426],[122,97,69,0.19587043776047888],[122,97,70,0.1997321876257033],[122,97,71,0.20343670014931498],[122,97,72,0.20701457508884039],[122,97,73,0.21050012092051965],[122,97,74,0.21392929338116407],[122,97,75,0.21733783055120007],[122,97,76,0.2207595898178531],[122,97,77,0.22422509149027042],[122,97,78,0.22776027327632525],[122,97,79,0.23138545927857646],[122,98,64,0.15901167191415627],[122,98,65,0.16583091976043085],[122,98,66,0.17270385327981871],[122,98,67,0.17966813448502805],[122,98,68,0.18673695597183348],[122,98,69,0.1910806585994102],[122,98,70,0.19477493093323842],[122,98,71,0.19829873639872858],[122,98,72,0.2016841114578939],[122,98,73,0.2049672565513618],[122,98,74,0.2081863655165058],[122,98,75,0.21137965786735502],[122,98,76,0.2145836195909906],[122,98,77,0.2178314575285022],[122,98,78,0.22115177182671883],[122,98,79,0.22456745037462747],[122,99,64,0.15519823286789222],[122,99,65,0.1618574799099077],[122,99,66,0.168577214976387],[122,99,67,0.17539616824957605],[122,99,68,0.18227801132240848],[122,99,69,0.18602893186637282],[122,99,70,0.1895720777757124],[122,99,71,0.1929334558491767],[122,99,72,0.19614613391314667],[122,99,73,0.1992477704936255],[122,99,74,0.20227834662885433],[122,99,75,0.20527810637641122],[122,99,76,0.2082857119633733],[122,99,77,0.2113366189241184],[122,99,78,0.21446167597083649],[122,99,79,0.21768595375167002],[122,100,64,0.1512972508836486],[122,100,65,0.15779328042540103],[122,100,66,0.16435390627769056],[122,100,67,0.17101865980184447],[122,100,68,0.17709482973729712],[122,100,69,0.18071938199734303],[122,100,70,0.18412689049118997],[122,100,71,0.18734354191951558],[122,100,72,0.19040305651321657],[122,100,73,0.19334412826029454],[122,100,74,0.1962080723055351],[122,100,75,0.19903668635918284],[122,100,76,0.20187033233079688],[122,100,77,0.2047462437853683],[122,100,78,0.2076970642039519],[122,100,79,0.21074962042544257],[122,101,64,0.14733132761567136],[122,101,65,0.15366318988056624],[122,101,66,0.16006107451645007],[122,101,67,0.16656506621179057],[122,101,68,0.1716467728297712],[122,101,69,0.17515639992790544],[122,101,70,0.1784424168400232],[122,101,71,0.18153091801127688],[122,101,72,0.18445593067115676],[122,101,73,0.18725678089775927],[122,101,74,0.18997567135906432],[122,101,75,0.19265547781681952],[122,101,76,0.19533777084623846],[122,101,77,0.19806106859295808],[122,101,78,0.20085932576106655],[122,101,79,0.20376066340746873],[122,102,64,0.14329756781303207],[122,102,65,0.1494642327304437],[122,102,66,0.15569576506487154],[122,102,67,0.162032566835092],[122,102,68,0.16597596708633908],[122,102,69,0.16938253688036803],[122,102,70,0.17256159209647806],[122,102,71,0.17553885341589237],[122,102,72,0.1783482861685474],[122,102,73,0.18102941195331884],[122,102,74,0.1836248355048291],[122,102,75,0.18617799409589392],[122,102,76,0.18873113612339923],[122,102,77,0.19132353488456047],[122,102,78,0.19398994291368557],[122,102,79,0.19675929162177203],[122,103,64,0.1391768230790722],[122,103,65,0.14517579571241995],[122,103,66,0.15123607887202845],[122,103,67,0.15658830525528586],[122,103,68,0.16014774259783543],[122,103,69,0.16346459533757499],[122,103,70,0.1665525077055492],[122,103,71,0.1694365084534889],[122,103,72,0.1721500839897479],[122,103,73,0.17473246075677787],[122,103,74,0.17722610492171742],[122,103,75,0.1796744468099537],[122,103,76,0.18211983686639913],[122,103,77,0.18460173928440557],[122,103,78,0.18715516880131214],[122,103,79,0.18980937552768973],[122,104,64,0.1349539997876106],[122,104,65,0.14078172264510683],[122,104,66,0.14666503508338025],[122,104,67,0.15074134604508593],[122,104,68,0.1542232915327884],[122,104,69,0.15746462050001525],[122,104,70,0.16047784678215662],[122,104,71,0.16328697433520525],[122,104,72,0.16592457031310204],[122,104,73,0.16842904745240975],[122,104,74,0.1708421638982872],[122,104,75,0.17320674796647523],[122,104,76,0.17556465469321694],[122,104,77,0.1779549603824129],[122,104,78,0.1804124007205229],[122,104,79,0.18296605739979643],[122,105,64,0.13062015387140882],[122,105,65,0.1362723779762896],[122,105,66,0.14119141659217904],[122,105,67,0.1448410207483966],[122,105,68,0.1482577676050255],[122,105,69,0.1514380691428216],[122,105,70,0.1543931287570886],[122,105,71,0.1571455983602069],[122,105,72,0.15972668542695448],[122,105,73,0.16217346726434503],[122,105,74,0.16452642060991665],[122,105,75,0.16682717403241992],[122,105,76,0.16911648997529083],[122,105,77,0.17143248264980446],[122,105,78,0.1738090773550605],[122,105,79,0.17627471618091325],[122,106,64,0.12617456445428282],[122,106,65,0.13156021524179518],[122,106,66,0.13534499647914583],[122,106,67,0.13893457722866956],[122,106,68,0.14229857454117845],[122,106,69,0.14543221506096732],[122,106,70,0.1483452393838896],[122,106,71,0.1510586434760038],[122,106,72,0.1536018551644933],[122,106,73,0.156010113452264],[122,106,74,0.1583220586312464],[122,106,75,0.16057754055591333],[122,106,76,0.1628156518214394],[122,106,77,0.16507299197386796],[122,106,78,0.16738216826623267],[122,106,79,0.1697705378696195],[122,107,64,0.12162716119621679],[122,107,65,0.1257928754479328],[122,107,66,0.12951941992677357],[122,107,67,0.1330597587709797],[122,107,68,0.13638332724314217],[122,107,69,0.1394842409885729],[122,107,70,0.14237066429675044],[122,107,71,0.14506167179128543],[122,107,72,0.14758452991932092],[122,107,73,0.1499721744937785],[122,107,74,0.1522608920331812],[122,107,75,0.15448821205393293],[122,107,76,0.15669101687661985],[122,107,77,0.15890387491457927],[122,107,78,0.1611576028231539],[122,107,79,0.1634780613064284],[122,108,64,0.11625448365402255],[122,108,65,0.12006219209030818],[122,108,66,0.12374036498834345],[122,108,67,0.12724230758894078],[122,108,68,0.13053748350225686],[122,108,69,0.13361901482670446],[122,108,70,0.1364934239603234],[122,108,71,0.13917764992253784],[122,108,72,0.14169646920111162],[122,108,73,0.14408010357163795],[122,108,74,0.14636202230385545],[122,108,75,0.14857694560981577],[122,108,76,0.15075905562636038],[122,108,77,0.15294042066178123],[122,108,78,0.1551496378773244],[122,108,79,0.15741069902279559],[122,109,64,0.11061858467753191],[122,109,65,0.11437859711295587],[122,109,66,0.11801864936745322],[122,109,67,0.12149307299024559],[122,109,68,0.12477159050292966],[122,109,69,0.12784649398140135],[122,109,70,0.13072265341777042],[122,109,71,0.13341471923162937],[122,109,72,0.13594471449068518],[122,109,73,0.13833980288251335],[122,109,74,0.14063023942604638],[122,109,75,0.14284751038903978],[122,109,76,0.14502266835230407],[122,109,77,0.14718486783607845],[122,109,78,0.14936010638169675],[122,109,79,0.1515701754668914],[122,110,64,0.10500026696325014],[122,110,65,0.10872297561555012],[122,110,66,0.11233550179169154],[122,110,67,0.11579331278919615],[122,110,68,0.11906664236928624],[122,110,69,0.12214716451641955],[122,110,70,0.12503814703587904],[122,110,71,0.1277518679504825],[122,110,72,0.13030740775091454],[122,110,73,0.1327286043068002],[122,110,74,0.13504217691455733],[122,110,75,0.1372760254780085],[122,110,76,0.1394577103349172],[122,110,77,0.1416131177599016],[122,110,78,0.14376531569451195],[122,110,79,0.1459336037825474],[122,111,64,0.09933503790923282],[122,111,65,0.10303102822984855],[122,111,66,0.1066267460657874],[122,111,67,0.11007891652498125],[122,111,68,0.11335856789079672],[122,111,69,0.11645701645370674],[122,111,70,0.11937603370955849],[122,111,71,0.1221255006447745],[122,111,72,0.12472142548470319],[122,111,73,0.12718410948855005],[122,111,74,0.12953646667648905],[122,111,75,0.13180250294125986],[122,111,76,0.13400595956087585],[122,111,77,0.13616912569364228],[122,111,78,0.13831182400417188],[122,111,79,0.1404505731430631],[122,112,64,0.09355753076591265],[122,112,65,0.09723620825274719],[122,112,66,0.10082523097395571],[122,112,67,0.10428277551722605],[122,112,68,0.1075809980205015],[122,112,69,0.11071115415799616],[122,112,70,0.11367364536249275],[122,112,71,0.1164759344712872],[122,112,72,0.1191308143060924],[122,112,73,0.12165480846764984],[122,112,74,0.12406670956492856],[122,112,75,0.1263862597159529],[122,112,76,0.12863297777260957],[122,112,77,0.13082513733756884],[122,112,78,0.13297889926009887],[122,112,79,0.13510760192228063],[122,113,64,0.08762645628388363],[122,113,65,0.09129546270900157],[122,113,66,0.0948866430760832],[122,113,67,0.0983598757582364],[122,113,68,0.10168881092689652],[122,113,69,0.10486496295477002],[122,113,70,0.10788750198036481],[122,113,71,0.11076145331477805],[122,113,72,0.11349624141673102],[122,113,73,0.11610434932902636],[122,113,74,0.1186000980594753],[122,113,75,0.12099855005996543],[122,113,76,0.12331454062676597],[122,113,77,0.12556184071542245],[122,113,78,0.12775245433677793],[122,113,79,0.12989605337958235],[122,114,64,0.08152303911006623],[122,114,65,0.08518804123995058],[122,114,66,0.08878852143294447],[122,114,67,0.09228633599002421],[122,114,68,0.09565700415069397],[122,114,69,0.09889262703374],[122,114,70,0.10199129472958027],[122,114,71,0.10495558934810721],[122,114,72,0.10779142665085978],[122,114,73,0.11050699577150447],[122,114,74,0.11311180070761154],[122,114,75,0.11561580699296356],[122,114,76,0.1180286966854896],[122,114,77,0.12035923453312986],[122,114,78,0.12261474791023774],[122,114,79,0.12480072285299237],[122,115,64,0.07524736274957324],[122,115,65,0.07891191960888734],[122,115,66,0.08252679918018911],[122,115,67,0.08605611143580587],[122,115,68,0.08947760715691777],[122,115,69,0.0927842978636372],[122,115,70,0.09597335566635203],[122,115,71,0.09904493613717509],[122,115,72,0.1020013362929313],[122,115,73,0.1048462329751483],[122,115,74,0.10758400445766414],[122,115,75,0.11021913789561542],[122,115,76,0.1127557250132991],[122,115,77,0.11519704821412928],[122,115,78,0.11754525908507699],[122,115,79,0.11980115106262197],[122,116,64,0.06881490667061607],[122,116,65,0.07248041082449254],[122,116,66,0.07611252570782559],[122,116,67,0.07967786845498058],[122,116,68,0.08315675255315888],[122,116,69,0.08654340670648351],[122,116,70,0.08983425497446487],[122,116,71,0.093027071033862],[122,116,72,0.0961204666284542],[122,116,73,0.09911344270290026],[122,116,74,0.1020050051599615],[122,116,75,0.10479384702076275],[122,116,76,0.10747809860984991],[122,116,77,0.11005514723169316],[122,116,78,0.11252152765408366],[122,116,79,0.11487288456821367],[122,117,64,0.062253278941677107],[122,117,65,0.06591896728864634],[122,117,66,0.0695687728227404],[122,117,67,0.07317203341707693],[122,117,68,0.0767119091295395],[122,117,69,0.0801841241870687],[122,117,70,0.08358452842757552],[122,117,71,0.08690858923456446],[122,117,72,0.09015121923231437],[122,117,73,0.09330664921722079],[122,117,74,0.0963683473494314],[122,117,75,0.09932898552594688],[122,117,76,0.10218045375634596],[122,117,77,0.1049139232659962],[122,117,78,0.1075199589598435],[122,117,79,0.10998868179385926],[122,118,64,0.055599147527698296],[122,118,65,0.05926217711660251],[122,118,66,0.06292772802081474],[122,118,67,0.06656801885012006],[122,118,68,0.07016927965058248],[122,118,69,0.07372896966633959],[122,118,70,0.07724253758670424],[122,118,71,0.08070325172168871],[122,118,72,0.08410236986630681],[122,118,73,0.08742933748991144],[122,118,74,0.09067201435208276],[122,118,75,0.09381692959877339],[122,118,76,0.09684956534886814],[122,118,77,0.09975466874254547],[122,118,78,0.10251659238928514],[122,118,79,0.10511966312595095],[122,119,64,0.04889537312571445],[122,119,65,0.052550957534748866],[122,119,66,0.05622797775902841],[122,119,67,0.05990162969269453],[122,119,68,0.06356136611652871],[122,119,69,0.06720657297179201],[122,119,70,0.070832465068316],[122,119,71,0.0744302491536114],[122,119,72,0.07798763273184998],[122,119,73,0.08148934508583983],[122,119,74,0.08491766969038472],[122,119,75,0.0882529872103612],[122,119,76,0.09404658763812357],[122,119,77,0.09971841259251842],[122,119,78,0.10502304682416869],[122,119,79,0.10870976378767644],[122,120,64,0.04218834571632306],[122,120,65,0.04582994755683995],[122,120,66,0.04951198291621544],[122,120,67,0.05321265178311275],[122,120,68,0.056924704525081464],[122,120,69,0.06064959036408728],[122,120,70,0.06615214416532977],[122,120,71,0.07255808827234317],[122,120,72,0.07893832530404679],[122,120,73,0.08527495876961125],[122,120,74,0.09154709880432463],[122,120,75,0.0977316744509951],[122,120,76,0.10380423983359095],[122,120,77,0.10847387615436536],[122,120,78,0.11195653059035993],[122,120,79,0.11538550633707959],[122,121,64,0.03552551147542689],[122,121,65,0.041721296991097494],[122,121,66,0.048212905999849315],[122,121,67,0.05473228346359727],[122,121,68,0.061275449846623635],[122,121,69,0.06784638934887594],[122,121,70,0.07444109273339977],[122,121,71,0.0810483276599402],[122,121,72,0.08765077374388384],[122,121,73,0.09422614252696312],[122,121,74,0.10074827981758429],[122,121,75,0.10718824795882606],[122,121,76,0.11245596076201653],[122,121,77,0.11572822862206938],[122,121,78,0.11893645221668508],[122,121,79,0.12210698182161997],[122,122,64,0.043089522756517264],[122,122,65,0.04957702509988728],[122,122,66,0.05612846213549691],[122,122,67,0.06272731438711657],[122,122,68,0.06937274270885381],[122,122,69,0.07607082293947696],[122,122,70,0.08281766809859012],[122,122,71,0.08960048135464968],[122,122,72,0.09639898414808735],[122,122,73,0.10318681670326856],[122,122,74,0.10993290760148858],[122,122,75,0.11660280922846838],[122,122,76,0.1200275528830421],[122,122,77,0.12302439483893687],[122,122,78,0.12596585821540007],[122,122,79,0.1288839541123892],[122,123,64,0.051152397479141194],[122,123,65,0.05766189695503669],[122,123,66,0.06425090617175463],[122,123,67,0.07090550383927868],[122,123,68,0.07762782510729672],[122,123,69,0.0844259909682031],[122,123,70,0.09129633845322206],[122,123,71,0.09822472939709584],[122,123,72,0.10518824541894335],[122,123,73,0.11215684427893538],[122,123,74,0.11909497356909951],[122,123,75,0.12479585388879866],[122,123,76,0.1276195345833059],[122,123,77,0.13035661089531608],[122,123,78,0.13304553452488263],[122,123,79,0.13572360214036006],[122,124,64,0.05948689847035053],[122,124,65,0.06599694260274447],[122,124,66,0.07260040258380332],[122,124,67,0.07928570889867526],[122,124,68,0.08605772929612221],[122,124,69,0.09292652097097223],[122,124,70,0.09988872021660647],[122,124,71,0.10692907628780433],[122,124,72,0.11402238272010538],[122,124,73,0.12113536060736226],[122,124,74,0.12822848916509635],[122,124,75,0.1326334034877384],[122,124,76,0.13521805980563695],[122,124,77,0.13771693427036322],[122,124,78,0.14017345500466857],[122,124,79,0.14262971329061552],[122,125,64,0.06810714797432518],[122,125,65,0.07459622219037731],[122,125,66,0.08119062410747414],[122,125,67,0.0878808342223315],[122,125,68,0.09467414438094138],[122,125,69,0.10158238151532425],[122,125,70,0.10860252887881405],[122,125,71,0.11571845139756212],[122,125,72,0.12290302945491197],[122,125,73,0.13012023684994387],[122,125,74,0.13732715771900214],[122,125,75,0.14043481052690748],[122,125,76,0.1428077400598451],[122,125,77,0.14509496793269508],[122,125,78,0.14734426876598994],[122,125,79,0.14960193806980143],[122,126,64,0.07701858176498089],[122,126,65,0.08346556516375252],[122,126,66,0.09002753150494121],[122,126,67,0.09669666469753582],[122,126,68,0.10348231755665264],[122,126,69,0.1103978709140937],[122,126,70,0.11744067579440369],[122,126,71,0.12459393483970574],[122,126,72,0.1318290024695107],[122,126,73,0.1391076230504309],[122,126,74,0.14584973137584706],[122,126,75,0.14817940039971472],[122,126,76,0.15037159705280842],[122,126,77,0.15247760134335347],[122,126,78,0.15454882832877676],[122,126,79,0.15663510836090963],[122,127,64,0.08621687412288263],[122,127,65,0.09260152149724717],[122,127,66,0.09910835830659098],[122,127,67,0.10573089292484947],[122,127,68,0.11248013699608997],[122,127,69,0.11937077161811951],[122,127,70,0.12640051218911516],[122,127,71,0.13355210993485717],[122,127,72,0.14079578144840058],[122,127,73,0.14809157162432146],[122,127,74,0.15366013272834755],[122,127,75,0.1558461772387253],[122,127,76,0.15789100747346987],[122,127,77,0.15984876858824548],[122,127,78,0.16177375912136893],[122,127,79,0.16371862007614707],[122,128,64,0.09568708037907393],[122,128,65,0.10199052631213067],[122,128,66,0.10842080189793264],[122,128,67,0.11497234289096006],[122,128,68,0.12165739771182525],[122,128,69,0.1284916715464463],[122,128,70,0.13547322154559283],[122,128,71,0.1425845433130606],[122,128,72,0.1497950933979781],[122,128,73,0.15706374198247267],[122,128,74,0.16133782515165002],[122,128,75,0.16341391621479592],[122,128,76,0.16534563988145276],[122,128,77,0.16718922384665524],[122,128,78,0.16900107079792698],[122,128,79,0.17083588095682414],[122,129,64,0.10540299824197129],[122,129,65,0.11160827913128969],[122,129,66,0.11794242221310754],[122,129,67,0.12440039108435409],[122,129,68,0.13099525161135753],[122,129,69,0.13774345351605272],[122,129,70,0.1446433614457227],[122,129,71,0.15167739361993574],[122,129,72,0.15881460304760867],[122,129,73,0.16601318695627604],[122,129,74,0.16886230808146352],[122,129,75,0.17086122210320098],[122,129,76,0.17271338364792657],[122,129,77,0.1744763343830848],[122,129,78,0.1762078108095638],[122,129,79,0.17796382421063447],[122,130,64,0.11532674903115857],[122,130,65,0.12141933892431135],[122,130,66,0.12764024920169056],[122,130,67,0.13398458621276133],[122,130,68,0.14046584287455496],[122,130,69,0.1471009538464449],[122,130,70,0.15388855586724184],[122,130,71,0.16081114972246174],[122,130,72,0.1678377099377357],[122,130,73,0.17405855660541203],[122,130,74,0.1762146086564779],[122,130,75,0.178166553858372],[122,130,76,0.17997026989742365],[122,130,77,0.18168389123165604],[122,130,78,0.1833657606286285],[122,130,79,0.185072488621482],[122,131,64,0.12540857986175302],[122,131,65,0.1313769360143836],[122,131,66,0.1374706001516769],[122,131,67,0.14368446859760511],[122,131,68,0.1500321297002092],[122,131,69,0.15653079113603927],[122,131,70,0.1631793388594866],[122,131,71,0.16996049924487833],[122,131,72,0.17684345290910541],[122,131,73,0.1812419355493072],[122,131,74,0.18337734084731383],[122,131,75,0.185308214953511],[122,131,76,0.18709038439788822],[122,131,77,0.1887819377239241],[122,131,78,0.190441174989708],[122,131,79,0.19212466571346243],[122,132,64,0.13558678540435634],[122,132,65,0.1414228913087428],[122,132,66,0.1473789892982324],[122,132,67,0.15344946364933404],[122,132,68,0.15964775873029113],[122,132,69,0.16599122340215725],[122,132,70,0.17247899978590092],[122,132,71,0.17909416992773017],[122,132,72,0.18580635734051956],[122,132,73,0.1882018442518816],[122,132,74,0.19033488056270598],[122,132,75,0.19226448963661655],[122,132,76,0.1940459548856265],[122,132,77,0.19573679890234702],[122,132,78,0.1973947458077993],[122,132,79,0.19907579220471405],[122,133,64,0.14577261402812236],[122,133,65,0.1514710996642546],[122,133,66,0.1572822014827003],[122,133,67,0.16319953908049378],[122,133,68,0.16923628570409796],[122,133,69,0.17540991865317965],[122,133,70,0.18171991207511096],[122,133,71,0.18814985786355012],[122,133,72,0.19256627737646692],[122,133,73,0.19495976642101256],[122,133,74,0.19710202864369644],[122,133,75,0.19904310404480097],[122,133,76,0.20083734963907593],[122,133,77,0.20254132095045474],[122,133,78,0.20421175733044342],[122,133,79,0.20590367600258225],[122,134,64,0.15584645651080925],[122,134,65,0.16140198002268277],[122,134,66,0.16706100716761985],[122,134,67,0.17281616872849337],[122,134,68,0.17868033055650087],[122,134,69,0.18467121125939331],[122,134,70,0.19078879525292325],[122,134,71,0.19648900463751615],[122,134,72,0.19918413689629635],[122,134,73,0.2015893950625377],[122,134,74,0.2037471872620865],[122,134,75,0.2057063548256726],[122,134,76,0.20751998686017195],[122,134,77,0.20924333326884706],[122,134,78,0.21093182140566458],[122,134,79,0.21263918122224992],[122,135,64,0.1657016360280107],[122,135,65,0.17110874410246188],[122,135,66,0.17660884387893308],[122,135,67,0.182193398980284],[122,135,68,0.18787500550400138],[122,135,69,0.19367182535739455],[122,135,70,0.1995846040486737],[122,135,71,0.20303178746353667],[122,135,72,0.20573521532262762],[122,135,73,0.20815387907917485],[122,135,74,0.21032877041541975],[122,135,75,0.2123072173790022],[122,135,76,0.21414073902151715],[122,135,77,0.21588299770795105],[122,135,78,0.21758785421041188],[122,135,79,0.219307530379595],[122,136,64,0.17524977453881596],[122,136,65,0.18050306592629628],[122,136,66,0.18583777079790256],[122,136,67,0.19124407013290162],[122,136,68,0.1967343879189014],[122,136,69,0.20232758535207807],[122,136,70,0.2065376224143063],[122,136,71,0.20955843776527575],[122,136,72,0.21226843585363409],[122,136,73,0.21469844488033496],[122,136,74,0.2168877389556557],[122,136,75,0.21888184983791342],[122,136,76,0.2207304693626343],[122,136,77,0.22248544787895758],[122,136,78,0.22419889370969948],[122,136,79,0.22592137834012238],[122,137,64,0.1844211214446564],[122,137,65,0.18951532829771314],[122,137,66,0.19467861903955733],[122,137,67,0.19989985021248993],[122,137,68,0.2051914177821768],[122,137,69,0.20974584440926963],[122,137,70,0.2130862007449479],[122,137,71,0.21610321653431921],[122,137,72,0.21881528732615016],[122,137,73,0.2212513597428019],[122,137,74,0.22344871799408175],[122,137,75,0.225450853027168],[122,137,76,0.2273054197724656],[122,137,77,0.22906228766770909],[122,137,78,0.23077168935286932],[122,137,79,0.23248247212787052],[122,138,64,0.1931652786740719],[122,138,65,0.198095262136898],[122,138,66,0.20308152777708585],[122,138,67,0.20811164415957858],[122,138,68,0.2127082909919812],[122,138,69,0.21635200986304517],[122,138,70,0.21967563565314754],[122,138,71,0.22268295209495736],[122,138,72,0.22539036157672593],[122,138,73,0.22782466662218884],[122,138,74,0.2300209249043735],[122,138,75,0.23202038332744102],[122,138,76,0.2338684964590928],[122,138,77,0.23561303433122294],[122,138,78,0.23730228434970996],[122,138,79,0.23898335176686034],[122,139,64,0.20145232471185687],[122,139,65,0.20621298121233136],[122,139,66,0.2110168687524249],[122,139,67,0.2154824199555138],[122,139,68,0.21939375151530296],[122,139,69,0.2230061051725808],[122,139,70,0.2263066300391527],[122,139,71,0.2292970823306134],[122,139,72,0.23199162458943431],[122,139,73,0.23441468839382618],[122,139,74,0.2365989060843993],[122,139,75,0.23858311681769004],[122,139,76,0.2404104520188064],[122,139,77,0.2421265050557045],[122,139,78,0.243777589696159],[122,139,79,0.24540909163664015],[122,140,64,0.20915797460120425],[122,140,65,0.21376606116696367],[122,140,66,0.218127937468686],[122,140,67,0.22225115977773086],[122,140,68,0.22611559997184955],[122,140,69,0.22969059980877643],[122,140,70,0.23296136180496646],[122,140,71,0.2359273969039283],[122,140,72,0.23860041933546927],[122,140,73,0.2410022995839318],[122,140,74,0.24316308072057943],[122,140,75,0.2451190631490475],[122,140,76,0.246910962593064],[122,140,77,0.2485821459233546],[122,140,78,0.25017694917684846],[122,140,79,0.2517390818672341],[122,141,64,0.21614969103665377],[122,141,65,0.22067370490690041],[122,141,66,0.22496183212546117],[122,141,67,0.22902258300625647],[122,141,68,0.2328352923647025],[122,141,69,0.23636761820987628],[122,141,70,0.23960264919503946],[122,141,71,0.242537477302496],[122,141,72,0.24518119827352192],[122,141,73,0.24755296372176216],[122,141,74,0.24968008987183937],[122,141,75,0.25159622767752676],[122,141,76,0.25333959887344626],[122,141,77,0.2549513023015594],[122,141,78,0.25647369462975755],[122,141,79,0.2579488493456787],[122,142,64,0.2230902687896738],[122,142,65,0.22752706235342343],[122,142,66,0.23173847798035602],[122,142,67,0.23573372047746965],[122,142,68,0.23949143124093863],[122,142,69,0.2429774982902952],[122,142,70,0.2461727842553951],[122,142,71,0.2490718325798944],[122,142,72,0.251680983527652],[122,142,73,0.25401653449929285],[122,142,74,0.2561029492518245],[122,142,75,0.25797112044760806],[122,142,76,0.25965668977983775],[122,142,77,0.26119842973057716],[122,142,78,0.2626366908152141],[122,142,79,0.2640119179548519],[122,143,64,0.22989771470733528],[122,143,65,0.23424549048843613],[122,143,66,0.23827058240181742],[122,143,67,0.24225866693812542],[122,143,68,0.2460086081789342],[122,143,69,0.24944705992964888],[122,143,70,0.25260114774593173],[122,143,71,0.2554627751989517],[122,143,72,0.2580354145550486],[122,143,73,0.26033238492286864],[122,143,74,0.2623751706998705],[122,143,75,0.26419178438315427],[122,143,76,0.265815177653408],[122,143,77,0.2672817044730288],[122,143,78,0.26862963976084175],[122,143,79,0.26989775701710883],[122,144,64,0.2365245040613838],[122,144,65,0.24034867329254644],[122,144,66,0.24414808596185014],[122,144,67,0.2479070236811848],[122,144,68,0.251642770603128],[122,144,69,0.2553875579250669],[122,144,70,0.25883944531847436],[122,144,71,0.2616619485544674],[122,144,72,0.26419616598176526],[122,144,73,0.266452334140664],[122,144,74,0.2684488462444364],[122,144,75,0.27021072345347447],[122,144,76,0.27176812412890317],[122,144,77,0.27315489446036323],[122,144,78,0.2744071637094091],[122,144,79,0.2755619871466723],[122,145,64,0.24250502946832947],[122,145,65,0.24612241618795475],[122,145,66,0.24970074398271422],[122,145,67,0.25322462995106376],[122,145,68,0.25671265038213403],[122,145,69,0.26019898560878885],[122,145,70,0.2637048747518372],[122,145,71,0.2672394803697507],[122,145,72,0.27012328662627555],[122,145,73,0.2723353987420789],[122,145,74,0.27428202972994303],[122,145,75,0.27598512384161095],[122,145,76,0.2774719656273063],[122,145,77,0.2787738240637422],[122,145,78,0.2799246292532848],[122,145,79,0.28095968444869784],[122,146,64,0.248180210554932],[122,146,65,0.25158646206646407],[122,146,66,0.25493896846852154],[122,146,67,0.2582232955028838],[122,146,68,0.2614594294984657],[122,146,69,0.2646834072273436],[122,146,70,0.2679189602858906],[122,146,71,0.27117821853873264],[122,146,72,0.27446304012225914],[122,146,73,0.277766335514625],[122,146,74,0.279836001956172],[122,146,75,0.2814753945558608],[122,146,76,0.28288639317144504],[122,146,77,0.2840976446704917],[122,146,78,0.28514084660523015],[122,146,79,0.2860495316492696],[122,147,64,0.2535557584076435],[122,147,65,0.25674750937664875],[122,147,66,0.25987076140144305],[122,147,67,0.2629124752812772],[122,147,68,0.2658941522757934],[122,147,69,0.268853553599968],[122,147,70,0.2718168141187268],[122,147,71,0.2747989811124972],[122,147,72,0.2778051759476438],[122,147,73,0.2808317615138148],[122,147,74,0.28386751311577524],[122,147,75,0.2866452386061633],[122,147,76,0.2879744345098562],[122,147,77,0.28908891531743575],[122,147,78,0.2900181354889445],[122,147,79,0.2907938555478992],[122,148,64,0.2586350735031035],[122,148,65,0.2616101414458728],[122,148,66,0.2645020276051546],[122,148,67,0.2672995429878981],[122,148,68,0.27002579166725904],[122,148,69,0.27272009098963834],[122,148,70,0.27541084900215246],[122,148,71,0.2781159369878335],[122,148,72,0.28084367516472936],[122,148,73,0.2835938365795125],[122,148,74,0.28635866743581795],[122,148,75,0.2891239221047667],[122,148,76,0.2918699110813553],[122,148,77,0.2937136942830459],[122,148,78,0.2945224056045023],[122,148,79,0.295158683647196],[122,149,64,0.26341977803399075],[122,149,65,0.2661771433597259],[122,149,66,0.2688368603677296],[122,149,67,0.2713900398732431],[122,149,68,0.2738614565215857],[122,149,69,0.27629178376894825],[122,149,70,0.27871153486802025],[122,149,71,0.28114126969036657],[122,149,72,0.2835923986861081],[122,149,73,0.2860680180602472],[122,149,74,0.2885637749798435],[122,149,75,0.2910687616026462],[122,149,76,0.29356643670250765],[122,149,77,0.2960355736605537],[122,149,78,0.29845123359425685],[122,149,79,0.2991138201514757],[122,150,64,0.26791002745032627],[122,150,65,0.2704497894910229],[122,150,66,0.272877799631464],[122,150,67,0.27518789856681525],[122,150,68,0.2774065768850572],[122,150,69,0.27957563830067744],[122,150,70,0.2817274999027634],[122,150,71,0.283885235912492],[122,150,72,0.2860631962635738],[122,150,73,0.2882676698597912],[122,150,74,0.29049759191219415],[122,150,75,0.2927452947037508],[122,150,76,0.29499730108206645],[122,150,77,0.29723515994205635],[122,150,78,0.29943632293098105],[122,150,79,0.3015750615887158],[122,151,64,0.2721047906689324],[122,151,65,0.2744281014906698],[122,151,66,0.27662606256407557],[122,151,67,0.27869564176589257],[122,151,68,0.28066506716927825],[122,151,69,0.2825770278749807],[122,151,70,0.2844656157474026],[122,151,71,0.2863562108648586],[122,151,72,0.2882659133862023],[122,151,73,0.2902040338201224],[122,151,74,0.29217264169482654],[122,151,75,0.2941671725399242],[122,151,76,0.29617709301330253],[122,151,77,0.2981866239347083],[122,151,78,0.3001755209256796],[122,151,79,0.30211991230333657],[122,152,64,0.2760020987699465],[122,152,65,0.27811107656000705],[122,152,66,0.2800817463326948],[122,152,67,0.28191455560959455],[122,152,68,0.2836394670202897],[122,152,69,0.2852997985497911],[122,152,70,0.28693106668137663],[122,152,71,0.2885607203109605],[122,152,72,0.2902083869644285],[122,152,73,0.2918861912248055],[122,152,74,0.29359914596092496],[122,152,75,0.29534561683271965],[122,152,76,0.29711786043785],[122,152,77,0.2989026363614409],[122,152,78,0.30068189329650263],[122,152,79,0.3024335293183535],[122,153,64,0.27959926200346624],[122,153,65,0.2814968858284861],[122,153,66,0.2832440029061233],[122,153,67,0.2848448375686005],[122,153,68,0.2863310597276793],[122,153,69,0.28774635574327795],[122,153,70,0.2891274026497828],[122,153,71,0.2905034591544491],[122,153,72,0.2918964296779183],[122,153,73,0.2933210143058667],[122,153,74,0.29478494582816867],[122,153,75,0.29628931489562543],[122,153,76,0.29782898418342324],[122,153,77,0.2993930923165722],[122,153,78,0.30096564818714316],[122,153,79,0.3025262161776462],[122,154,64,0.2828930549322876],[122,154,65,0.28458304266363726],[122,154,66,0.2861111857138637],[122,154,67,0.2874857186836921],[122,154,68,0.2887399680147679],[122,154,69,0.28991773142903643],[122,154,70,0.2910565759946159],[122,154,71,0.2921872964487892],[122,154,72,0.2933338028639153],[122,154,73,0.2945131076349887],[122,154,74,0.2957354135328435],[122,154,75,0.2970043043921601],[122,154,76,0.2983170398333458],[122,154,77,0.29966495525376347],[122,154,78,0.3010339681684234],[122,154,79,0.3024051918348504],[122,155,64,0.2858798695379416],[122,155,65,0.2873665407418713],[122,155,66,0.2886809679921029],[122,155,67,0.28983555998791855],[122,155,68,0.2908652270523915],[122,155,69,0.2918136317857395],[122,155,70,0.2927189617510289],[122,155,71,0.2936132666984642],[122,155,72,0.2945221778213536],[122,155,73,0.2954647392774027],[122,155,74,0.29645335426250485],[122,155,75,0.29749384772247045],[122,155,76,0.29858564759048195],[122,155,77,0.2997220862464523],[122,155,78,0.30089082371083453],[122,155,79,0.30207439391175517],[122,156,64,0.28855583611594166],[122,156,65,0.2898439617078289],[122,156,66,0.290950432646215],[122,156,67,0.2918919229466952],[122,156,68,0.29270483453832413],[122,156,69,0.2934324651523086],[122,156,70,0.29411336136853267],[122,156,71,0.2947805473191803],[122,156,72,0.2954610854033957],[122,156,73,0.29617576158323927],[122,156,74,0.2969388980602899],[122,156,75,0.29775829590552827],[122,156,76,0.29863530999188465],[122,156,77,0.2995650583611607],[122,156,78,0.30053676794712453],[122,156,79,0.3015342583766009],[122,157,64,0.2909169117833374],[122,157,65,0.2920115522477876],[122,157,66,0.2929161334574952],[122,157,67,0.2936516137485809],[122,157,68,0.29425577768304617],[122,157,69,0.29477135013835726],[122,157,70,0.2952369897155236],[122,157,71,0.2956864221224913],[122,157,72,0.2961478537683196],[122,157,73,0.29664352148748535],[122,157,74,0.2971893816693705],[122,157,75,0.2977949418184564],[122,157,76,0.2984632373240782],[122,157,77,0.29919095597708445],[122,157,78,0.29996871253677604],[122,157,79,0.30078147542745],[122,158,64,0.292958936417224],[122,158,65,0.29386527039890814],[122,158,66,0.29457412745861433],[122,158,67,0.29511070127673494],[122,158,68,0.29551403694023737],[122,158,69,0.2958261037375736],[122,158,70,0.2960854452234221],[122,158,71,0.29632623068785613],[122,158,72,0.2965775341556861],[122,158,73,0.2968627601858878],[122,158,74,0.2971992201813056],[122,158,75,0.29759786264879384],[122,158,76,0.2980631605822386],[122,158,77,0.29859315887795534],[122,158,78,0.2991796844363259],[122,158,79,0.2998087213578079],[122,159,64,0.29467765583590194],[122,159,65,0.2954008009100178],[122,159,66,0.2959199782968183],[122,159,67,0.29626450858622516],[122,159,68,0.29647456631618035],[122,159,69,0.2965912092879706],[122,159,70,0.29665266302315224],[122,159,71,0.2966933034814634],[122,159,72,0.29674281455059603],[122,159,73,0.29682550204932695],[122,159,74,0.296959768346314],[122,159,75,0.2971577514087486],[122,159,76,0.2974251318087485],[122,159,77,0.2977611109334636],[122,159,78,0.29815856337006913],[122,159,79,0.29860436617188707],[122,160,64,0.29606871202592544],[122,160,65,0.29661353946215074],[122,160,66,0.2969487303971985],[122,160,67,0.29710757770647356],[122,160,68,0.2971312500872067],[122,160,69,0.2970597641185578],[122,160,70,0.2969308509227151],[122,160,71,0.2967788825772299],[122,160,72,0.2966339210946334],[122,160,73,0.2965209326343481],[122,160,74,0.29645917139778666],[122,160,75,0.29646173735374654],[122,160,76,0.2965353116387497],[122,160,77,0.2966800731785833],[122,160,78,0.2968897997858101],[122,160,79,0.2971521567063466],[122,161,64,0.29712760020816964],[122,161,65,0.297498545548076],[122,161,66,0.29765485373027123],[122,161,67,0.2976336075810336],[122,161,68,0.2974768357482681],[122,161,69,0.2972234067168331],[122,161,70,0.29691040807005964],[122,161,71,0.2965720278310815],[122,161,72,0.29623850709764943],[122,161,73,0.2959352656425913],[122,161,74,0.2956822052375821],[122,161,75,0.29549319514073563],[122,161,76,0.29537574387225307],[122,161,77,0.29533086108985035],[122,161,78,0.29535311306986983],[122,161,79,0.295430875003921],[122,162,64,0.29784959252335963],[122,162,65,0.2980504637985877],[122,162,66,0.29803215897769275],[122,162,67,0.2978353649476332],[122,162,68,0.29750284300770946],[122,162,69,0.2970722232445939],[122,162,70,0.2965798261393749],[122,162,71,0.29605950835397593],[122,162,72,0.2955415294988957],[122,162,73,0.29505159867580194],[122,162,74,0.294610105821805],[122,162,75,0.2942315425537803],[122,162,76,0.2939241168831505],[122,162,77,0.29368956584702216],[122,162,78,0.2935231697835553],[122,162,79,0.2934139716710889],[122,163,64,0.29822962810388887],[122,163,65,0.2982634135310826],[122,163,66,0.29807368287886743],[122,163,67,0.2977045679516846],[122,163,68,0.29719944863503184],[122,163,69,0.29659463322261553],[122,163,70,0.2959255728730092],[122,163,71,0.295225679123833],[122,163,72,0.29452511262088815],[122,163,73,0.29384975762767634],[122,163,74,0.2932203875806071],[122,163,75,0.29265202661721607],[122,163,76,0.2921535116668262],[122,163,77,0.2917272593583527],[122,163,78,0.29136924167148415],[122,163,79,0.291069173938569],[122,164,64,0.2982606862674419],[122,164,65,0.2981293124026301],[122,164,66,0.29776997870774796],[122,164,67,0.2972301534428537],[122,164,68,0.29655373833187454],[122,164,69,0.29577563461981404],[122,164,70,0.2949303388633663],[122,164,71,0.29405073681383376],[122,164,72,0.2931668185230596],[122,164,73,0.2923045846002056],[122,164,74,0.2914851491015881],[122,164,75,0.29072404418959746],[122,164,76,0.2900307313502625],[122,164,77,0.28940832361537294],[122,164,78,0.28885352289747535],[122,164,79,0.2883567762178514],[122,165,64,0.297925764118747],[122,165,65,0.2976296355091137],[122,165,66,0.29710081068310534],[122,165,67,0.2963899655833533],[122,165,68,0.2955414298786085],[122,165,69,0.29458863722441064],[122,165,70,0.29356507764676065],[122,165,71,0.2925030702444367],[122,165,72,0.29143240725439745],[122,165,73,0.290379194092831],[122,165,74,0.28936489105411045],[122,165,75,0.28840556199662964],[122,165,76,0.28751133499053694],[122,165,77,0.2866860795509064],[122,165,78,0.28592730473419053],[122,165,79,0.285226282039296],[122,166,64,0.29720883997723574],[122,166,65,0.29674690091911515],[122,166,66,0.29604713784235187],[122,166,67,0.29516323657425836],[122,166,68,0.2941398586986294],[122,166,69,0.29300895937371274],[122,166,70,0.2918030197862014],[122,166,71,0.29055379928593567],[122,166,72,0.2892909103627852],[122,166,73,0.2880405939181852],[122,166,74,0.28682470069837346],[122,166,75,0.28565988439698325],[122,166,76,0.2845570115741656],[122,166,77,0.2835207931810676],[122,166,78,0.2825496421256166],[122,166,79,0.2816357609716573],[122,167,64,0.29610006981470294],[122,167,65,0.2954701188354338],[122,167,66,0.2945967595199774],[122,167,67,0.2935364151672003],[122,167,68,0.292333985406739],[122,167,69,0.29101999533560025],[122,167,70,0.2896259713445757],[122,167,71,0.2881831715374882],[122,167,72,0.2867210932101215],[122,167,73,0.2852661844812117],[122,167,74,0.28384076611325265],[122,167,75,0.2824621691962334],[122,167,76,0.28114209400129503],[122,167,77,0.27988619494691075],[122,167,78,0.27869389626095703],[122,167,79,0.2775584425715048],[122,168,64,0.2945941089627397],[122,168,65,0.29379311038151595],[122,168,66,0.2927426327080825],[122,168,67,0.2915014897225902],[122,168,68,0.29011473190532355],[122,168,69,0.2886115682993967],[122,168,70,0.2870226846722367],[122,168,71,0.2853789494187595],[122,168,72,0.28370985497970325],[122,168,73,0.2820421668601016],[122,168,74,0.2803987864432102],[122,168,75,0.278797833426083],[122,168,76,0.27725195333195296],[122,168,77,0.2757678551848929],[122,168,78,0.2743460840673345],[122,168,79,0.27298103292452597],[122,169,64,0.29268819324591894],[122,169,65,0.2917125844191787],[122,169,66,0.29048094777927214],[122,169,67,0.28905407115263126],[122,169,68,0.2874770801685991],[122,169,69,0.2857780506491553],[122,169,70,0.2839870032326885],[122,169,71,0.28213458044746326],[122,169,72,0.2802504235141381],[122,169,73,0.2783617598512572],[122,169,74,0.2764922076243124],[122,169,75,0.2746608033060069],[122,169,76,0.27288125784002903],[122,169,77,0.2711614466262653],[122,169,78,0.2695031381754237],[122,169,79,0.26790196591914145],[122,170,64,0.2903800109506292],[122,170,65,0.28922600508099505],[122,170,66,0.28780899618075756],[122,170,67,0.2861912701695029],[122,170,68,0.2844179688864517],[122,170,69,0.28251628730487466],[122,170,70,0.2805158166844931],[122,170,71,0.2784471871585545],[122,170,72,0.2763403814937296],[122,170,73,0.2742232623904863],[122,170,74,0.2721203197985093],[122,170,75,0.27005164434540313],[122,170,76,0.26803213259777736],[122,170,77,0.26607092949522804],[122,170,78,0.26417111292315715],[122,170,79,0.2623296250235293],[122,171,64,0.28766536342516574],[122,171,65,0.2863292478673307],[122,171,66,0.28472282801552745],[122,171,67,0.28290936683116624],[122,171,68,0.28093398604818454],[122,171,69,0.27882332031259366],[122,171,70,0.2766068245146622],[122,171,71,0.27431537508867326],[122,171,72,0.27197952252110297],[122,171,73,0.2696279600715489],[122,171,74,0.2672862153048155],[122,171,75,0.2649755706531627],[122,171,76,0.2627122188450967],[122,171,77,0.2605066586545971],[122,171,78,0.2583633360458103],[122,171,79,0.2562805354167597],[122,172,64,0.2845356119173267],[122,172,65,0.2830140419721311],[122,172,66,0.28121469724494536],[122,172,67,0.27920127020093005],[122,172,68,0.27701885537622334],[122,172,69,0.27469391270098353],[122,172,70,0.27225610636325],[122,172,71,0.2697368571024028],[122,172,72,0.26716753553990574],[122,172,73,0.2645778743547593],[122,172,74,0.26199460601727625],[122,172,75,0.25944033241243036],[122,172,76,0.25693263229803537],[122,172,77,0.2544834121567451],[122,172,78,0.25209850561786634],[122,172,79,0.24977752624899663],[122,173,64,0.2809749080581295],[122,173,65,0.27926519630721836],[122,173,66,0.2772702920570375],[122,173,67,0.27505376575196144],[122,173,68,0.2726607143409019],[122,173,69,0.27011786945012906],[122,173,70,0.2674554970148823],[122,173,71,0.26470589218174323],[122,173,72,0.2619015158697905],[122,173,73,0.25907335292277056],[122,173,74,0.25624949867441693],[122,173,75,0.2534539803636058],[122,173,76,0.25070581944654247],[122,173,77,0.2480183404630471],[122,173,78,0.24539873172680002],[122,173,79,0.24284786272888845],[122,174,64,0.2769572051952387],[122,174,65,0.27505760649290867],[122,174,66,0.27286574774690403],[122,174,67,0.2704445479551147],[122,174,68,0.26783918130062917],[122,174,69,0.2650771532384025],[122,174,70,0.26218976386126097],[122,174,71,0.25921053663758126],[122,174,72,0.2561733009871936],[122,174,73,0.25311049949857906],[122,174,74,0.25005172671382875],[122,174,75,0.24702250601884881],[122,174,76,0.24404331078292726],[122,174,77,0.24112883549743078],[122,174,78,0.23828752227166827],[122,174,79,0.23552134765863836],[122,175,64,0.27245773602768325],[122,175,65,0.270367621952003],[122,175,66,0.26797881746936836],[122,175,67,0.2653530915623206],[122,175,68,0.26253580759914835],[122,175,69,0.2595557828483271],[122,175,70,0.2564458057694728],[122,175,71,0.25324099002519845],[122,175,72,0.249976806485409],[122,175,73,0.24668734336328724],[122,175,74,0.24340380151077937],[122,175,75,0.24015323150824794],[122,175,76,0.2369575187851311],[122,175,77,0.23383262260935786],[122,175,78,0.23078807438653737],[122,175,79,0.22782674031941552],[122,176,64,0.26750135288566074],[122,176,65,0.26522106728873845],[122,176,66,0.262636284314368],[122,176,67,0.25980710351489533],[122,176,68,0.25677916532258266],[122,176,69,0.25358310886094915],[122,176,70,0.25025363607476675],[122,176,71,0.24682778417602483],[122,176,72,0.24334291198649022],[122,176,73,0.23983491814451452],[122,176,74,0.23633669829665827],[122,176,75,0.23287684799712322],[122,176,76,0.22947861763544825],[122,176,77,0.22615912530889407],[122,176,78,0.22292883315407844],[122,176,79,0.21979129225660393],[122,177,64,0.26212919366606624],[122,177,65,0.25966021101273873],[122,177,66,0.2568815083824577],[122,177,67,0.2538509842522759],[122,177,68,0.25061461071481356],[122,177,69,0.24720530948533148],[122,177,70,0.24366007319733768],[122,177,71,0.2400181517075355],[122,177,72,0.23631899934930914],[122,177,73,0.23260045777286573],[122,177,74,0.22889718157021446],[122,177,75,0.2252393134812764],[122,177,76,0.22165141557033607],[122,177,77,0.21815166235330855],[122,177,78,0.21475130144955162],[122,177,79,0.2114543869311621],[122,178,64,0.2563850009390551],[122,178,65,0.2537301394095819],[122,178,66,0.25076093420867335],[122,178,67,0.24753256577687516],[122,178,68,0.24409136625904504],[122,178,69,0.24047294386680487],[122,178,70,0.23671690331404702],[122,178,71,0.23286494383993384],[122,178,72,0.22895877549026009],[122,178,73,0.2250382744824899],[122,178,74,0.22113988490951994],[122,178,75,0.21729527363147363],[122,178,76,0.21353024479375124],[122,178,77,0.20986391999665843],[122,178,78,0.20630818973094328],[122,178,79,0.20286744128844633],[122,179,64,0.2503144875710758],[122,179,65,0.24747806664959227],[122,179,66,0.24432332837904686],[122,179,67,0.24090225713100064],[122,179,68,0.2372615529742833],[122,179,69,0.23343984992503555],[122,179,70,0.22947962290500268],[122,179,71,0.22542519787573256],[122,179,72,0.2213206466281148],[122,179,73,0.2172079237462163],[122,179,74,0.21312525303199778],[122,179,75,0.20910577026865523],[122,179,76,0.2051764287860569],[122,179,77,0.20135717387554775],[122,179,78,0.19766039168704852],[122,179,79,0.19409063783284974],[122,180,64,0.24396464866553522],[122,180,65,0.24095259253072246],[122,180,66,0.23761896811371394],[122,180,67,0.23401214593820446],[122,180,68,0.23017918583097685],[122,180,69,0.2261620147961809],[122,180,70,0.22200616615542262],[122,180,71,0.21775870475165063],[122,180,72,0.21346611085786854],[122,180,73,0.20917240879512924],[122,180,74,0.2049175475490416],[122,180,75,0.20073604026309144],[122,180,76,0.1966558690706419],[122,180,77,0.19269766130909108],[122,180,78,0.18887414274310035],[122,180,79,0.18518987301303647],[122,181,64,0.23738301905261386],[122,181,65,0.23420290709194702],[122,181,66,0.2306987800694592],[122,181,67,0.22691505528683084],[122,181,68,0.22289913159834854],[122,181,69,0.21869641724024338],[122,181,70,0.21435561663919692],[122,181,71,0.20992657617316104],[122,181,72,0.20545816866740083],[122,181,73,0.20099642445960364],[122,181,74,0.19658291629455457],[122,181,75,0.19225340489701828],[122,181,76,0.18803675165411482],[122,181,77,0.18395410441916676],[122,181,78,0.1800183620315267],[122,181,79,0.17623392273523053],[122,182,64,0.23061687550158982],[122,182,65,0.2272779412754539],[122,182,66,0.2236134285573156],[122,182,67,0.21966355517765432],[122,182,68,0.21547602838182897],[122,182,69,0.21109984132293722],[122,182,70,0.20658690266173596],[122,182,71,0.20198981079676975],[122,182,72,0.19735975096960226],[122,182,73,0.19274464003208813],[122,182,74,0.18818752607460662],[122,182,75,0.18372524970269224],[122,182,76,0.17938737333258745],[122,182,77,0.17519538445742416],[122,182,78,0.17116217841881076],[122,182,79,0.1672918258075211],[122,183,64,0.22371238276968217],[122,183,65,0.22022546275671565],[122,183,66,0.21641235231274983],[122,183,67,0.21230892770109333],[122,183,68,0.20796316605479656],[122,183,69,0.2034276606301032],[122,183,70,0.1987574755921384],[122,183,71,0.1940078588820609],[122,183,72,0.1892321641847695],[122,183,73,0.18448002081977727],[122,183,74,0.17979575865928848],[122,183,75,0.17521709476779945],[122,183,76,0.17077408804251099],[122,183,77,0.16648836771701564],[122,183,78,0.16237264117586017],[122,183,79,0.15843048611863558],[122,184,64,0.2167136825420392],[122,184,65,0.2130911160023704],[122,184,66,0.20914274889815224],[122,184,67,0.2049000850536749],[122,184,68,0.20041132673566675],[122,184,69,0.19573259222304823],[122,184,70,0.1909219704695154],[122,184,71,0.18603718479576004],[122,184,72,0.18113355187454913],[122,184,73,0.1762621880287595],[122,184,74,0.1714684698187199],[122,184,75,0.166790755488699],[122,184,76,0.16225937343071706],[122,184,77,0.15789588341055308],[122,184,78,0.15371261588959234],[122,184,79,0.14971249437093623],[122,185,64,0.2096619242577963],[122,185,65,0.20591740555648683],[122,185,66,0.20184850575954152],[122,185,67,0.19748243944793648],[122,185,68,0.1928675844089632],[122,185,69,0.1880634194948608],[122,185,70,0.18313084812517896],[122,185,71,0.1781298267132368],[122,185,72,0.17311737239919375],[122,185,73,0.16814581659987007],[122,185,74,0.16326131119260961],[122,185,75,0.15850259374859024],[122,185,76,0.15390001782418763],[122,185,77,0.1494748539107378],[122,185,78,0.1452388662370181],[122,185,79,0.14119417021883107],[122,186,64,0.20259423675711344],[122,186,65,0.19874262149621919],[122,186,66,0.19456907690157899],[122,186,67,0.19009672391477045],[122,186,68,0.1853740627373328],[122,186,69,0.1804636830407142],[122,186,70,0.17542901802124916],[122,186,71,0.170331952828875],[122,186,72,0.1652308920442376],[122,186,73,0.16017907060015635],[122,186,74,0.15522311477655826],[122,186,75,0.15040185950211904],[122,186,76,0.145745427795352],[122,186,77,0.14127457777615435],[122,186,78,0.13700032227950784],[122,186,79,0.1329238257099046],[122,187,64,0.195542639625838],[122,187,65,0.19159970594015316],[122,187,66,0.1873383040892534],[122,187,67,0.18277776294441717],[122,187,68,0.1779666500625867],[122,187,69,0.17297033861147865],[122,187,70,0.16785444096912333],[122,187,71,0.16268241335760442],[122,187,72,0.1575136930428635],[122,187,73,0.15240207576449208],[122,187,74,0.14739433981030725],[122,187,75,0.14252912276197577],[122,187,76,0.13783605654511596],[122,187,77,0.13333516602350054],[122,187,78,0.12903653598579448],[122,187,79,0.12494025098838955],[122,188,64,0.18853289305583695],[122,188,65,0.1845150594347093],[122,188,66,0.18018318142881473],[122,188,67,0.1755531918597567],[122,188,68,0.17067367054560817],[122,188,69,0.1656123811774011],[122,188,70,0.16043671085590333],[122,188,71,0.1552112875833084],[122,188,72,0.14999619590388308],[122,188,73,0.14484542877704434],[122,188,74,0.13980558186087838],[122,188,75,0.1349147960041235],[122,188,76,0.13020195336070933],[122,188,77,0.12568613215632826],[122,188,78,0.12137632475474552],[122,188,79,0.11727142329621562],[122,189,64,0.1893754663311365],[122,189,65,0.18418634418139054],[122,189,66,0.17880004570099675],[122,189,67,0.1732227601030595],[122,189,68,0.16749646128714438],[122,189,69,0.1616845363408533],[122,189,70,0.15584960604047124],[122,189,71,0.150051158912],[122,189,72,0.14434384089822969],[122,189,73,0.13877597772894862],[122,189,74,0.1333883359168957],[122,189,75,0.12821312793216413],[122,189,76,0.12327326673376049],[122,189,77,0.11858187446239504],[122,189,78,0.1141420497276786],[122,189,79,0.10994689755819345],[122,190,64,0.1920684116413219],[122,190,65,0.18675760308971018],[122,190,66,0.1812554804835005],[122,190,67,0.17556575762132995],[122,190,68,0.16973024054519764],[122,190,69,0.16381371623437896],[122,190,70,0.1578795998474805],[122,190,71,0.15198761423136295],[122,190,72,0.14619217114843588],[122,190,73,0.14054097991957365],[122,190,74,0.1350738891365193],[122,190,75,0.1298219667382217],[122,190,76,0.12480682338241376],[122,190,77,0.1200401836802956],[122,190,78,0.11552370950275191],[122,190,79,0.11124907921339781],[122,191,64,0.19480185030830127],[122,191,65,0.18937458743976554],[122,191,66,0.1837627153757529],[122,191,67,0.17796804267146307],[122,191,68,0.1720321853700098],[122,191,69,0.1660208759831259],[122,191,70,0.15999788567752488],[122,191,71,0.15402276372113183],[122,191,72,0.14814931430791284],[122,191,73,0.14242429505767798],[122,191,74,0.13688634256721702],[122,191,75,0.13156513004080755],[122,191,76,0.12648076167650874],[122,191,77,0.12164340813307073],[122,191,78,0.11705318705497209],[122,191,79,0.11270029229223165],[122,192,64,0.19755339009058054],[122,192,65,0.19201418213167487],[122,192,66,0.18629783296744523],[122,192,67,0.180404807868968],[122,192,68,0.17437652627855427],[122,192,69,0.16827924622616805],[122,192,70,0.16217669406141305],[122,192,71,0.1561278762658243],[122,192,72,0.1501856543292246],[122,192,73,0.1443955352719235],[122,192,74,0.13879468290786265],[122,192,75,0.1334111546069357],[122,192,76,0.12826336797500185],[122,192,77,0.12335980153074126],[122,192,78,0.118698933123722],[122,192,79,0.11426941950982893],[122,193,64,0.20028797722562391],[122,193,65,0.19464016481181468],[122,193,66,0.18882337998521198],[122,193,67,0.182837257031687],[122,193,68,0.17672303456380403],[122,193,69,0.17054715114167618],[122,193,70,0.16437296050765482],[122,193,71,0.15825862537130891],[122,193,72,0.15225579135570808],[122,193,73,0.14640847046607577],[122,193,74,0.14075213889587448],[122,193,75,0.13531305366004048],[122,193,76,0.13010779221731933],[122,193,77,0.1251430189166016],[122,193,78,0.12041548177997327],[122,193,79,0.11591224281971735],[122,194,64,0.20295637921338233],[122,194,65,0.19720165406175524],[122,194,66,0.1912867958944721],[122,194,67,0.1852110222597096],[122,194,68,0.1790154375323504],[122,194,69,0.1727664389059027],[122,194,70,0.16652679408642063],[122,194,71,0.16035362302407127],[122,194,72,0.15429717077888097],[122,194,73,0.14839978391625966],[122,194,74,0.1426950949733356],[122,194,75,0.1372074192230075],[122,194,76,0.13195136764651824],[122,194,77,0.12693167971033098],[122,194,78,0.12214327923322707],[122,194,79,0.11757155632658224],[122,195,64,0.20549426143837224],[122,195,65,0.19963219805314167],[122,195,66,0.1936195274693857],[122,195,67,0.18745531325767073],[122,195,68,0.1811806123975385],[122,195,69,0.17486173479933004],[122,195,70,0.1685608078694983],[122,195,71,0.16233384774848175],[122,195,72,0.15622963018764682],[122,195,73,0.150288759347244],[122,195,74,0.14454293879267185],[122,195,75,0.13901444866276164],[122,195,76,0.13371583267867282],[122,195,77,0.12864979835831744],[122,195,78,0.12380933350308782],[122,195,79,0.1191780417325561],[122,196,64,0.2078554973584281],[122,196,65,0.20188531054764478],[122,196,66,0.19577462794784978],[122,196,67,0.18952252742448128],[122,196,68,0.18317011416121118],[122,196,69,0.1767836411258211],[122,196,70,0.17042461014085902],[122,196,71,0.16414793273536307],[122,196,72,0.15800089834614586],[122,196,73,0.15202233524100917],[122,196,74,0.14624196818750362],[122,196,75,0.1406799765970668],[122,196,76,0.13534675657952727],[122,196,77,0.1302428900499556],[122,196,78,0.12535932374271816],[122,196,79,0.12067776070775045],[122,197,64,0.2100357432230864],[122,197,65,0.20395904914367158],[122,197,66,0.1977522261123475],[122,197,67,0.19141457550008734],[122,197,68,0.18498730216543693],[122,197,69,0.17853651698149728],[122,197,70,0.17212301095661994],[122,197,71,0.16580050902274748],[122,197,72,0.15961473578044727],[122,197,73,0.15360266887241628],[122,197,74,0.14779198376001626],[122,197,75,0.14220069339316704],[122,197,76,0.13683698597910768],[122,197,77,0.13169926377296198],[122,197,78,0.12677638553672024],[122,197,79,0.12204811504445078],[122,198,64,0.21203228000057622],[122,198,65,0.20585277125186827],[122,198,66,0.1995534180241174],[122,198,67,0.19313399388663272],[122,198,68,0.18663581398407428],[122,198,69,0.18012465502479877],[122,198,70,0.17366042115267716],[122,198,71,0.1672954967337929],[122,198,72,0.16107391043474611],[122,198,73,0.1550306816687021],[122,198,74,0.14919135293496616],[122,198,75,0.14357171130337396],[122,198,76,0.13817770202013915],[122,198,77,0.13300553693983833],[122,198,78,0.1280420002228439],[122,198,79,0.12326495347993155],[122,199,64,0.21384117123468438],[122,199,65,0.2075640852014657],[122,199,66,0.2011770421334387],[122,199,67,0.19468056313653995],[122,199,68,0.18811605090309585],[122,199,69,0.18154867325325658],[122,199,70,0.17503720302116532],[122,199,71,0.1686324778516112],[122,199,72,0.16237666366078485],[122,199,73,0.15630269481868134],[122,199,74,0.15043389432742904],[122,199,75,0.1447837770055303],[122,199,76,0.1393560384240444],[122,199,77,0.13414473207983482],[122,199,78,0.12913463703708253],[122,199,79,0.12430181802232079],[122,200,64,0.21545811439032386],[122,200,65,0.20908976534147514],[122,200,66,0.20262067098818945],[122,200,67,0.19605239059269497],[122,200,68,0.18942636525425277],[122,200,69,0.1828068185625625],[122,200,70,0.1762510989778491],[122,200,71,0.16980825595364873],[122,200,72,0.16351840388911318],[122,200,73,0.15741225660084499],[122,200,74,0.15151083533227658],[122,200,75,0.14582535306527755],[122,200,76,0.1403572776461172],[122,200,77,0.13509857598878652],[122,200,78,0.1300321413768868],[122,200,79,0.12513240565165568],[122,201,64,0.21687923585765082],[122,201,65,0.21042661379968422],[122,201,66,0.2038815541445375],[122,201,67,0.19724695056176136],[122,201,68,0.19056421353431902],[122,201,69,0.1838962462993161],[122,201,70,0.17729864835054684],[122,201,71,0.17081841801507341],[122,201,72,0.16449341798481562],[122,201,73,0.15835200447892797],[122,201,74,0.1524128227926773],[122,201,75,0.14668477174707428],[122,201,76,0.14116713931327413],[122,201,77,0.1358499114493172],[122,201,78,0.13071425595795555],[122,201,79,0.1257331829538134],[122,202,64,0.21810182934829583],[122,202,65,0.21157226871367923],[122,202,66,0.20495751219754552],[122,202,67,0.19826208206745496],[122,202,68,0.19152727551129523],[122,202,69,0.1848142761867087],[122,202,70,0.1781765928659739],[122,202,71,0.17165889907316867],[122,202,72,0.16529660130652446],[122,202,73,0.15911556321827297],[122,202,74,0.15313198823845597],[122,202,75,0.14735246290066323],[122,202,76,0.14177416290079167],[122,202,77,0.13638522369716302],[122,202,78,0.1311652772454828],[122,202,79,0.12608615625568206],[122,203,64,0.21873680861054826],[122,203,65,0.21252595869702806],[122,203,66,0.20584778180427304],[122,203,67,0.19909694419263496],[122,203,68,0.1923145394895577],[122,203,69,0.18555962498291026],[122,203,70,0.17888327140403296],[122,203,71,0.17232755054854454],[122,203,72,0.16592520750440656],[122,203,73,0.1596994803068484],[122,203,74,0.15366406922971546],[122,203,75,0.14782325770839946],[122,203,76,0.14217218667715464],[122,203,77,0.13669728389567126],[122,203,78,0.1313768496399478],[122,203,79,0.12618179994117315],[122,204,64,0.21807367130278646],[122,204,65,0.2132892032486403],[122,204,66,0.2065538115223168],[122,204,67,0.1997529289761498],[122,204,68,0.19292735387106832],[122,204,69,0.18613361620641986],[122,204,70,0.17942000457358023],[122,204,71,0.17282571301555555],[122,204,72,0.16638061910180602],[122,204,73,0.16010519998685452],[122,204,74,0.15401058837671058],[122,204,75,0.14809877012811656],[122,204,76,0.14236292500900677],[122,204,77,0.136787911956653],[122,204,78,0.13135089998635302],[122,204,79,0.1260221457283682],[122,205,64,0.2173590629075299],[122,205,65,0.21338233308754423],[122,205,66,0.20708000823293005],[122,205,67,0.20023453178274608],[122,205,68,0.19337044510956355],[122,205,69,0.1865413672310428],[122,205,70,0.17979246964190182],[122,205,71,0.17315979420330976],[122,205,72,0.16667013990589255],[122,205,73,0.1603410772158573],[122,205,74,0.1541810916327494],[122,205,75,0.14818985790501704],[122,205,76,0.14235864617000132],[122,205,77,0.1366708611103524],[122,205,78,0.13110271505268822],[122,205,79,0.12562403577657294],[122,206,64,0.21659523253501467],[122,206,65,0.21237294894760886],[122,206,66,0.2074344338606698],[122,206,67,0.20055017901274966],[122,206,68,0.19365290210975444],[122,206,69,0.18679295401616866],[122,206,70,0.18001206632206299],[122,206,71,0.17334285299051494],[122,206,72,0.16680881028527983],[122,206,73,0.16042443288043778],[122,206,74,0.15419544747288053],[122,206,75,0.14811916505424783],[122,206,76,0.14218495283781057],[122,206,77,0.13637482667985057],[122,206,78,0.1306641646876922],[122,206,79,0.12502254256748993],[122,207,64,0.21578084716294235],[122,207,65,0.21130440148593124],[122,207,66,0.20672805548171203],[122,207,67,0.20071366435287663],[122,207,68,0.19378966436587067],[122,207,69,0.18690478309414926],[122,207,70,0.18009700530940354],[122,207,71,0.17339524329834657],[122,207,72,0.16681945615208968],[122,207,73,0.16038087277854016],[122,207,74,0.15408231963656482],[122,207,75,0.14791865404597926],[122,207,76,0.14187730378625302],[122,207,77,0.135938913561022],[122,207,78,0.13007809877835608],[122,207,79,0.12408503465103365],[122,208,64,0.2149124846695069],[122,208,65,0.2101719433146264],[122,208,66,0.20533004629229884],[122,208,67,0.20035893257402596],[122,208,68,0.19380062744199889],[122,208,69,0.18689737288298944],[122,208,70,0.18006816852634033],[122,208,71,0.17333799007727219],[122,208,72,0.16672306819647062],[122,208,73,0.1602312228224955],[122,208,74,0.15386228828792323],[122,208,75,0.14760862976852934],[122,208,76,0.14145575148514503],[122,208,77,0.13538299696373496],[122,208,78,0.12819325321292843],[122,208,79,0.11997112252615469],[122,209,64,0.21398682261357016],[122,209,65,0.20897127632702422],[122,209,66,0.2038540573751067],[122,209,67,0.19860439020780465],[122,209,68,0.19317755489630095],[122,209,69,0.18678853971153844],[122,209,70,0.1799428381499621],[122,209,71,0.17318754398183658],[122,209,72,0.1665350320026203],[122,209,73,0.15998963901217278],[122,209,74,0.15354818796984454],[122,209,75,0.14720058806533542],[122,209,76,0.14009606737664362],[122,209,77,0.13220879736876728],[122,209,78,0.1241020695586099],[122,209,79,0.11580900332837267],[122,210,64,0.21300070858791376],[122,210,65,0.20769904045685603],[122,210,66,0.202296778507614],[122,210,67,0.1967603040143624],[122,210,68,0.1910460191835114],[122,210,69,0.18511423364521407],[122,210,70,0.1789353195760981],[122,210,71,0.17248931573621484],[122,210,72,0.1657653788123714],[122,210,73,0.1587611760022268],[122,210,74,0.1514822188770104],[122,210,75,0.14394113863920532],[122,210,76,0.13615690296348953],[122,210,77,0.1281539746741753],[122,210,78,0.11996141257130544],[122,210,79,0.11161191476749857],[122,211,64,0.21195099759431643],[122,211,65,0.2063525547147921],[122,211,66,0.20065619927730777],[122,211,67,0.19482563263651936],[122,211,68,0.18881854647191199],[122,211,69,0.18260000810264237],[122,211,70,0.1761451284597268],[122,211,71,0.16943843928133073],[122,211,72,0.1624732129731007],[122,211,73,0.15525074057744834],[122,211,74,0.14777956824797644],[122,211,75,0.14007469267824266],[122,211,76,0.1321567159802094],[122,211,77,0.12405096054679904],[122,211,78,0.11578654446617942],[122,211,79,0.10739541807998654],[122,212,64,0.21083445746148316],[122,212,65,0.2049296267604745],[122,212,66,0.19893132132423863],[122,212,67,0.19280081021199838],[122,212,68,0.18649724458382522],[122,212,69,0.1799905480300804],[122,212,70,0.17326060893265957],[122,212,71,0.16629643195934055],[122,212,72,0.15909532820192343],[122,212,73,0.15166208115842778],[122,212,74,0.1440080893126401],[122,212,75,0.1361504860907326],[122,212,76,0.12811123799400287],[122,212,77,0.11991622171899405],[122,212,78,0.11159428108284802],[122,212,79,0.10317626457016638],[122,213,64,0.20964774327562125],[122,213,65,0.2034284319150874],[122,213,66,0.19712194131080024],[122,213,67,0.1906874315933587],[122,213,68,0.18408567930968234],[122,213,69,0.17729149104989567],[122,213,70,0.17028949616041517],[122,213,71,0.16307307734265458],[122,213,72,0.1556434348591531],[122,213,73,0.14800864500175448],[122,213,74,0.14018271392602427],[122,213,75,0.1321846279551319],[122,213,76,0.12403740144817513],[122,213,77,0.11576712331259506],[122,213,78,0.10740200321970539],[122,213,79,0.0989714185540969],[122,214,64,0.20838744184998212],[122,214,65,0.20184746257694303],[122,214,66,0.19522850553130056],[122,214,67,0.1884880113247886],[122,214,68,0.18158853776023107],[122,214,69,0.1745097268066716],[122,214,70,0.16724083654534505],[122,214,71,0.15977945928361675],[122,214,72,0.15213046559506707],[122,214,73,0.14430496150891745],[122,214,74,0.13631926029264815],[122,214,75,0.12819387024282045],[122,214,76,0.11995249986285526],[122,214,77,0.11162108176329752],[122,214,78,0.10322681657197703],[122,214,79,0.09479723808633764],[122,215,64,0.20705018731376335],[122,215,65,0.2001855490581959],[122,215,66,0.1932520371316635],[122,215,67,0.18620581731201225],[122,215,68,0.1790113694034692],[122,215,69,0.171653048730002],[122,215,70,0.1641245559524623],[122,215,71,0.15642745454620896],[122,215,72,0.14857000230017034],[122,215,73,0.1405660150877162],[122,215,74,0.13243376467676862],[122,215,75,0.1241949122897005],[122,215,76,0.11587347955922762],[122,215,77,0.10749485845535882],[122,215,78,0.09908486168294041],[122,215,79,0.09066881496745792],[122,216,64,0.20563284895109343],[122,216,65,0.19844195291318398],[122,216,66,0.1911941369646487],[122,216,67,0.18384478017989073],[122,216,68,0.17636040576437362],[122,216,69,0.16872988838153907],[122,216,70,0.16095111538168727],[122,216,71,0.15302931865352137],[122,216,72,0.14497580288875814],[122,216,73,0.13680672523082132],[122,216,74,0.12854192837801875],[122,216,75,0.12020382912687896],[122,216,76,0.11181636424915434],[122,216,77,0.10340399549730436],[122,216,78,0.09499077543073922],[122,216,79,0.0865994756469898],[122,217,64,0.20413279246707336],[122,217,65,0.19661653387789557],[122,217,66,0.18905705915823667],[122,217,67,0.1814094793684397],[122,217,68,0.17364245982610008],[122,217,69,0.1657491334283511],[122,217,70,0.15773125514742983],[122,217,71,0.14959736604581206],[122,217,72,0.14136142905866067],[122,217,73,0.13304153501529564],[122,217,74,0.1246586812484335],[122,217,75,0.1162356250279303],[122,217,76,0.10779581393638293],[122,217,77,0.09936239517840044],[122,217,78,0.09095730568656346],[122,217,79,0.08260044475359399],[122,218,64,0.20254821589894068],[122,218,65,0.19470999158449906],[122,218,66,0.1868438625231082],[122,218,67,0.1789052070706481],[122,218,68,0.17086490622891976],[122,218,69,0.16272003034760074],[122,218,70,0.15447582869506085],[122,218,71,0.14614374571848027],[122,218,72,0.13773997625048703],[122,218,73,0.12928410931320616],[122,218,74,0.12079786311886548],[122,218,75,0.11230391372766114],[122,218,76,0.10382481967797323],[122,218,77,0.09538204475261913],[122,218,78,0.08699508089090816],[122,218,79,0.07868067309847855],[122,219,64,0.20087856142546062],[122,219,65,0.1927241832538973],[122,219,66,0.1845586389685719],[122,219,67,0.1763381111638485],[122,219,68,0.16803574341692168],[122,219,69,0.1596521730270866],[122,219,70,0.15119572724935917],[122,219,71,0.14268031358092678],[122,219,72,0.13412390710741728],[122,219,73,0.12554714408710385],[122,219,74,0.11697202459209217],[122,219,75,0.10842072686185869],[122,219,76,0.09991453585390493],[122,219,77,0.09147288830037059],[122,219,78,0.0831125364017368],[122,219,79,0.07484683210812493],[122,220,64,0.19912500435584854],[122,220,65,0.19066251860217376],[122,220,66,0.18220682013424425],[122,220,67,0.17371541832980736],[122,220,68,0.16516373893184255],[122,220,69,0.15655557848171825],[122,220,70,0.14790189655189345],[122,220,71,0.13921860284547827],[122,220,72,0.1305249898110007],[122,220,73,0.12184228822450341],[122,220,74,0.11319234874582834],[122,220,75,0.10459645226846673],[122,220,76,0.09607425168828215],[122,220,77,0.08764284751753305],[122,220,78,0.07931599957073424],[122,220,79,0.0711034767470664],[122,221,64,0.19729102059967507],[122,221,65,0.18853043322231],[122,221,66,0.1797955634759352],[122,221,67,0.17104573859587424],[122,221,68,0.16225865909690845],[122,221,69,0.15344085095605325],[122,221,70,0.14460544700093558],[122,221,71,0.13576989381868107],[122,221,72,0.12695434273776898],[122,221,73,0.1181801794406828],[122,221,74,0.10946869536936582],[122,221,75,0.10083990387587864],[122,221,76,0.09231150385479929],[122,221,77,0.08389799337383393],[122,221,78,0.07560993559882036],[122,221,79,0.06745337908809375],[122,222,64,0.19538303393044168],[122,222,65,0.18633594171986884],[122,222,66,0.17733421906773894],[122,222,67,0.16833945255960256],[122,222,68,0.15933158437041073],[122,222,69,0.15031943572675252],[122,222,70,0.14131785855802442],[122,222,71,0.13234538452432942],[122,222,72,0.12342258694470432],[122,222,73,0.11457059584798944],[122,222,74,0.10580976943143836],[122,222,75,0.0971585249821646],[122,222,76,0.08863233208074109],[122,222,77,0.08024287066683623],[122,222,78,0.07199735630799939],[122,222,79,0.06389803477397127],[122,223,64,0.1934111443566342],[122,223,65,0.18409027188928936],[122,223,66,0.17483487839717776],[122,223,67,0.16560918258117294],[122,223,68,0.15639531167791462],[122,223,69,0.14720396395515162],[122,223,70,0.1380512818286318],[122,223,71,0.12895646363755509],[122,223,72,0.11994010804762717],[122,223,73,0.11102272485128525],[122,223,74,0.10222341554298267],[122,223,75,0.09355872679888255],[122,223,76,0.08504167973640821],[122,223,77,0.07668097757223735],[122,223,78,0.06848039404191324],[122,223,79,0.060438344689912035],[122,224,64,0.19138993890387274],[122,224,65,0.18180858121483334],[122,224,66,0.17231300643513323],[122,224,67,0.16287034924042987],[122,224,68,0.15346484505206154],[122,224,69,0.14410868996770282],[122,224,70,0.13481893675902903],[122,224,71,0.12561508725048745],[122,224,72,0.11651742910363487],[122,224,73,0.10754555108124045],[122,224,74,0.09871704023462276],[122,224,75,0.09004636419233161],[122,224,76,0.08154394145808115],[122,224,77,0.0732154023532911],[122,224,78,0.06506104296937451],[122,224,79,0.057075474226709486],[122,225,64,0.18933938608924122],[122,225,65,0.17951075696599297],[122,225,66,0.1697881582561973],[122,225,67,0.16014181435730038],[122,225,68,0.15055797591888345],[122,225,69,0.14105002235961905],[122,225,70,0.13163561041617286],[122,225,71,0.12233426102116599],[122,225,72,0.1131656961454212],[122,225,73,0.10414836511845114],[122,225,74,0.09529816391340222],[122,225,75,0.0866273506020645],[122,225,76,0.07814365990058786],[122,225,77,0.0698496194399233],[122,225,78,0.0617420701115131],[122,225,79,0.05381189255825278],[122,226,64,0.18728581533243505],[122,226,65,0.17722230112990064],[122,226,66,0.16728478146658682],[122,226,67,0.15744661186448544],[122,226,68,0.14769595436802446],[122,226,69,0.13804715032343942],[122,226,70,0.128518255330991],[122,226,71,0.11912862927720665],[122,226,72,0.1098972780403679],[122,226,73,0.10084139479040184],[122,226,74,0.0919751043950545],[122,226,75,0.08330841414956983],[122,226,76,0.07484637374863103],[122,226,77,0.06658844711979764],[122,226,78,0.058528098442151226],[122,226,79,0.05065259438220736],[122,227,64,0.18526630539206068],[122,227,65,0.17497939444721594],[122,227,66,0.1648379112719399],[122,227,67,0.15481826592651152],[122,227,68,0.1449104256404616],[122,227,69,0.13512956598269502],[122,227,70,0.1254940357324403],[122,227,71,0.11602295413651093],[122,227,72,0.10673455990229279],[122,227,73,0.09764476918421001],[122,227,74,0.08876594608877328],[122,227,75,0.08010588891557051],[122,227,76,0.07166703504050234],[122,227,77,0.06344588703610497],[122,227,78,0.055432662317124015],[122,227,79,0.04761116829758339],[122,228,64,0.18333608244151786],[122,228,65,0.17283939257481445],[122,228,66,0.16250655578107867],[122,228,67,0.1523170009314325],[122,228,68,0.14226240777608204],[122,228,69,0.1323586322653169],[122,228,70,0.12262418303391202],[122,228,71,0.11307783400696468],[122,228,72,0.10373698582370423],[122,228,73,0.0946162445056655],[122,228,74,0.08572622088919588],[122,228,75,0.07707255402300393],[122,228,76,0.06865516140937511],[122,228,77,0.06046771864584547],[122,228,78,0.0524973707077698],[122,228,79,0.044724676801531096],[122,229,64,0.18154414369810257],[122,229,65,0.17085397199859131],[122,229,66,0.16034458708946953],[122,229,67,0.14999846389146346],[122,229,68,0.1398089189162322],[122,229,69,0.12979229166883163],[122,229,70,0.11996706977295263],[122,229,71,0.1103515306824942],[122,229,72,0.1009621244788763],[122,229,73,0.0918120804784633],[122,229,74,0.08291024113903468],[122,229,75,0.07426012642582434],[122,229,76,0.06585923146692634],[122,229,77,0.057698559997950045],[122,229,78,0.049762395772132526],[122,229,79,0.04202831379481108],[122,230,64,0.1799268505986102],[122,230,65,0.16906155115266824],[122,230,66,0.15839208737408356],[122,230,67,0.14790403874843033],[122,230,68,0.13759229910655854],[122,230,69,0.12747347825322916],[122,230,70,0.11756583985787461],[122,230,71,0.10788699019650591],[122,230,72,0.09845229435628779],[122,230,73,0.08927352070775103],[122,230,74,0.08035771707123356],[122,230,75,0.07170632166958216],[122,230,76,0.06331451162275714],[122,230,77,0.05517079140499247],[122,230,78,0.04725682335702803],[122,230,79,0.03954750202488097],[122,231,64,0.17850908311719124],[122,231,65,0.1674884380637004],[122,231,66,0.156676495225134],[122,231,67,0.14606200356041238],[122,231,68,0.13564139117981844],[122,231,69,0.12543133107721405],[122,231,70,0.11544965949251512],[122,231,71,0.10571313245330759],[122,231,72,0.09623588983853805],[122,231,73,0.0870281497481483],[122,231,74,0.07809513650810866],[122,231,75,0.06943624530305981],[122,231,76,0.061044446090218855],[122,231,77,0.052905929111543085],[122,231,78,0.044999993991945104],[122,231,79,0.037299184089814176],[122,232,64,0.17730534235677017],[122,232,65,0.1661499269323132],[122,232,66,0.15521370292450598],[122,232,67,0.1444886418806367],[122,232,68,0.13397268048280336],[122,232,69,0.12368237286928338],[122,232,70,0.11363494169267843],[122,232,71,0.10384612489968206],[122,232,72,0.09432870389580987],[122,232,73,0.085091261434453],[122,232,74,0.07613717242601833],[122,232,75,0.06746383052680109],[122,232,76,0.059062113030266164],[122,232,77,0.05091608624886731],[122,232,78,0.04300295324792119],[122,232,79,0.03529324547461212],[122,233,64,0.17632079894528524],[122,233,65,0.1650513408496787],[122,233,66,0.1540091015808084],[122,233,67,0.14318930497423896],[122,233,68,0.13259138985313262],[122,233,69,0.12223165014334413],[122,233,70,0.11212654046969803],[122,233,71,0.10229063625542512],[122,233,72,0.09273524344616582],[122,233,73,0.08346723466463485],[122,233,74,0.07448811482123892],[122,233,75,0.06579331887487651],[122,233,76,0.057371744106756474],[122,233,77,0.049205518941501575],[122,233,78,0.04127001002965853],[122,233,79,0.03353406899409779],[122,234,64,0.17555228679061574],[122,234,65,0.16418902026133567],[122,234,66,0.15305857380582935],[122,234,67,0.14215942464232384],[122,234,68,0.13149252971400086],[122,234,69,0.12107383474359967],[122,234,70,0.11091891480265978],[122,234,71,0.10104107058177401],[122,234,72,0.09145003783856363],[122,234,73,0.08215091728543782],[122,234,74,0.073143327736216],[122,234,75,0.06442078500868521],[122,234,76,0.055970308758267584],[122,234,77,0.04777225909934964],[122,234,78,0.039800404560963794],[122,234,79,0.03202222262244117],[122,235,64,0.1749892416771969],[122,235,65,0.16355125672397886],[122,235,66,0.15234943355416206],[122,235,67,0.1413854763614175],[122,235,68,0.1306619030934938],[122,235,69,0.12019428674043298],[122,235,70,0.1099972624551186],[122,235,71,0.10008278189737568],[122,235,72,0.09045894084107046],[122,235,73,0.08112901865300978],[122,235,74,0.07209073222293266],[122,235,75,0.06333570661474738],[122,235,76,0.05484916440060753],[122,235,77,0.04660983533451992],[122,235,78,0.03859008772633768],[122,235,79,0.03075628259011809],[122,236,64,0.17461458411777533],[122,236,65,0.16311917143579835],[122,236,66,0.15186131268563852],[122,236,67,0.14084589238525608],[122,236,68,0.13007706531283467],[122,236,69,0.11957007853378866],[122,236,70,0.10933862362240798],[122,236,71,0.0993932694759784],[122,236,72,0.08974042643460318],[122,236,73,0.08038151135155182],[122,236,74,0.07131231592304473],[122,236,75,0.06252258029366894],[122,236,76,0.05399577366194029],[122,236,77,0.04570908332286145],[122,236,78,0.03763361330598213],[122,236,79,0.029734793498160855],[122,237,64,0.17440551586094916],[122,237,65,0.16286750773500797],[122,237,66,0.15156696327276822],[122,237,67,0.14051189368948805],[122,237,68,0.1297082071164832],[122,237,69,0.11917094886955443],[122,237,70,0.10891292309218872],[122,237,71,0.09894332253273093],[122,237,72,0.08926684719149777],[122,237,73,0.0798830109697084],[122,237,74,0.07078563833180833],[122,237,75,0.061962552719554385],[122,237,76,0.05339545818455548],[122,237,77,0.04506001543865151],[122,237,78,0.03692611326371684],[122,237,79,0.028958335973762465],[122,238,64,0.17432790625812158],[122,238,65,0.16275895420561456],[122,238,66,0.15142653773592377],[122,238,67,0.14034175361833168],[122,238,68,0.1295124305261149],[122,238,69,0.11895361842145263],[122,238,70,0.10867735117090149],[122,238,71,0.09869148964540596],[122,238,72,0.08899901241800248],[122,238,73,0.07959747991352359],[122,238,74,0.07047867370154903],[122,238,75,0.06162841237270244],[122,238,76,0.05302654518928614],[122,238,77,0.04464712445682825],[122,238,78,0.03645875732843937],[122,238,79,0.02842513752825429],[122,239,64,0.17432328193097824],[122,239,65,0.1627320038755616],[122,239,66,0.15137619310551131],[122,239,67,0.14027001108052908],[122,239,68,0.1294234269353072],[122,239,69,0.11885178446955322],[122,239,70,0.10856652772109458],[122,239,71,0.09857427094202077],[122,239,72,0.08887627771669243],[122,239,73,0.07946809789321004],[122,239,74,0.07033936368107847],[122,239,75,0.061473746040547665],[122,239,76,0.05284907226440264],[122,239,77,0.044437605433372857],[122,239,78,0.036206486216639244],[122,239,79,0.028118337288308204],[122,240,64,0.17431031952507223],[122,240,65,0.16270544799875244],[122,240,66,0.15133504748337692],[122,240,67,0.1402162872962137],[122,240,68,0.12936151110044947],[122,240,69,0.11878671031483617],[122,240,70,0.10850298836581214],[122,240,71,0.09851586577856859],[122,240,72,0.08882496030567373],[122,240,73,0.07942380865832037],[122,240,74,0.07029983084371341],[122,240,75,0.0614344379097889],[122,240,76,0.05280328369927981],[122,240,77,0.044376661021455086],[122,240,78,0.036120042466328064],[122,240,79,0.027994765911681214],[122,241,64,0.1742175799007314],[122,241,65,0.16260835667356],[122,241,66,0.15123268803165923],[122,241,67,0.1401106338159523],[122,241,68,0.12925713602026248],[122,241,69,0.11868923225851916],[122,241,70,0.10841799473746085],[122,241,71,0.09844807261450517],[122,241,72,0.08877758098462783],[122,241,73,0.07939811516928622],[122,241,74,0.07029489095893429],[122,241,75,0.06144701128365335],[122,241,76,0.052827859613107764],[122,241,77,0.04440562021966794],[122,241,78,0.036143925281560546],[122,241,79,0.028002628655081973],[122,242,64,0.17398998267005808],[122,242,65,0.16238567501322274],[122,242,66,0.15101402773213057],[122,242,67,0.1398978074885605],[122,242,68,0.12905475371546196],[122,242,69,0.11850337566879782],[122,242,70,0.10825507097778728],[122,242,71,0.09831390129950418],[122,242,72,0.08867669301353844],[122,242,73,0.07933324727636136],[122,242,74,0.07026665973998762],[122,242,75,0.0614537500874094],[122,242,76,0.05286560138951099],[122,242,77,0.04446820914677096],[122,242,78,0.03622323974835644],[122,242,79,0.028088897959718445],[122,243,64,0.17358708162713712],[122,243,65,0.16199657174257784],[122,243,66,0.15063774197683216],[122,243,67,0.13953581397907394],[122,243,68,0.1287114869135201],[122,243,69,0.11818517641392559],[122,243,70,0.10796899586287051],[122,243,71,0.0980667553679834],[122,243,72,0.08847427188739909],[122,243,73,0.07917977354120857],[122,243,74,0.07016439807886918],[122,243,75,0.06140278534435069],[122,243,76,0.05286376345754653],[122,243,77,0.044511128314061614],[122,243,78,0.036304515900080485],[122,243,79,0.028200366822912794],[122,244,64,0.17298141151487667],[122,244,65,0.16141285714366846],[122,244,66,0.15007477156233023],[122,244,67,0.13899451332965185],[122,244,68,0.12819585703850073],[122,244,69,0.1177015518557207],[122,244,70,0.10752483708129171],[122,244,71,0.09766964872843893],[122,244,72,0.08813113167641655],[122,244,73,0.07889623197363735],[122,244,74,0.06994436894572986],[122,244,75,0.06124818665720185],[122,244,76,0.05277438417504443],[122,244,77,0.0444846239895651],[122,244,78,0.03633651786600678],[122,244,79,0.028284689328242484],[122,245,64,0.17215690720080926],[122,245,65,0.16061747135354648],[122,245,66,0.14930689300551533],[122,245,67,0.1382542883716376],[122,245,68,0.12748656918176696],[122,245,69,0.11702922193190207],[122,245,70,0.10689702803872288],[122,245,71,0.09709445696450725],[122,245,72,0.08761636799692359],[122,245,73,0.07844877960671187],[122,245,74,0.06956970574793776],[122,245,75,0.060950058379755465],[122,245,76,0.052554615408988134],[122,245,77,0.04434305318096563],[122,245,78,0.03627104258584666],[122,245,79,0.028291407797038887],[122,246,64,0.17110739645994968],[122,246,65,0.1596030441354435],[122,246,66,0.1483253572076992],[122,246,67,0.1373047768954959],[122,246,68,0.12657135481590792],[122,246,69,0.11615368092842467],[122,246,70,0.10606848761936595],[122,246,71,0.09632120350444752],[122,246,72,0.08690682769899268],[122,246,73,0.07781086083387694],[122,246,74,0.06901029192309108],[122,246,75,0.0604746401205738],[122,246,76,0.052167050342373816],[122,246,77,0.04404544167683484],[122,246,78,0.03606370746408473],[122,246,79,0.028172965894534052],[122,247,64,0.16983516768489684],[122,247,65,0.1583705273587393],[122,247,66,0.14712959759915945],[122,247,67,0.1361436685807218],[122,247,68,0.12544587309810537],[122,247,69,0.11506822061360818],[122,247,70,0.10502978339006225],[122,247,71,0.09533738095402873],[122,247,72,0.08598660537613298],[122,247,73,0.07696289443067324],[122,247,74,0.068242651517474],[122,247,75,0.05979441117516335],[122,247,76,0.05158004896844827],[122,247,77,0.04355603449392914],[122,247,78,0.03567472622330406],[122,247,79,0.02788570688711523],[122,248,64,0.1683496139598957],[122,248,65,0.15692790153196973],[122,248,66,0.14572600899648983],[122,248,67,0.13477556777842498],[122,248,68,0.12411267168885129],[122,248,69,0.11377300547285449],[122,248,70,0.1037783387852891],[122,248,71,0.09413730792351496],[122,248,72,0.08484656681950917],[122,248,73,0.07589197918024594],[122,248,74,0.06724985047613105],[122,248,75,0.058888198434594266],[122,248,76,0.05076806066084745],[122,248,77,0.04284483798170152],[122,248,78,0.0350696720948325],[122,248,79,0.027390856102630052],[122,249,64,0.16666595504573847],[122,249,65,0.15528895783572494],[122,249,66,0.14412679849938387],[122,249,67,0.13321092332448714],[122,249,68,0.12258020808687534],[122,249,69,0.11227420084578549],[122,249,70,0.10231768486033381],[122,249,71,0.09272152171241678],[122,249,72,0.0834838995538447],[122,249,73,0.07459161801626446],[122,249,74,0.0660214083430724],[122,249,75,0.057741287267314596],[122,249,76,0.04971194313234564],[122,249,77,0.04188815273405666],[122,249,78,0.03422022735846133],[122,249,79,0.0266554864938336],[122,250,64,0.16480403892493625],[122,250,65,0.15347215719748983],[122,250,66,0.1423489098407133],[122,250,67,0.13146502663991055],[122,250,68,0.12086193255042009],[122,250,69,0.11058315482585329],[122,250,70,0.10065675724506683],[122,250,71,0.09109620724542758],[122,250,72,0.08190169060417238],[122,250,73,0.07306146058889675],[122,250,74,0.06455322004006916],[122,250,75,0.056345534817037496],[122,250,76,0.04839927701578289],[122,250,77,0.04066909635303832],[122,250,78,0.033104918110895165],[122,250,79,0.025653466046222127],[122,251,64,0.16278722464903916],[122,251,65,0.15149956803583406],[122,251,66,0.14041302268154926],[122,251,67,0.12955707944499978],[122,251,68,0.11897543373651982],[122,251,69,0.1087156348339823],[122,251,70,0.09880923897016947],[122,251,71,0.08927266267791177],[122,251,72,0.08010853165053793],[122,251,73,0.07130706414784617],[122,251,74,0.06284748735896271],[122,251,75,0.05469948510200085],[122,251,76,0.046824675217420085],[122,251,77,0.039178114998724034],[122,251,78,0.031709833004256664],[122,251,79,0.024366385604850917],[122,252,64,0.1606413483122839],[122,252,65,0.14939588437684775],[122,252,66,0.13834262841121436],[122,252,67,0.1275093324754378],[122,252,68,0.11694164824391526],[122,252,69,0.1066911198229447],[122,252,70,0.09679294987189059],[122,252,71,0.08726680211011709],[122,252,72,0.07811815173238393],[122,252,73,0.06933967262214696],[122,252,74,0.06091265976643443],[122,252,75,0.05280848524085725],[122,252,76,0.04499008610671487],[122,252,77,0.037413482545471034],[122,252,78,0.03002932455271812],[122,252,79,0.022784465521667106],[122,253,64,0.15839377404477395],[122,253,65,0.14718752610831073],[122,253,66,0.13616318406852804],[122,253,67,0.12534629663832886],[122,253,68,0.11478413528901298],[122,253,69,0.10453214910545629],[122,253,70,0.09462928330815788],[122,253,71,0.08509869586384596],[122,253,72,0.07594907766379992],[122,253,73,0.06717601375767288],[122,253,74,0.05876338408027149],[122,253,75,0.050684802066511686],[122,253,76,0.04290508951608234],[122,253,77,0.03538178604561375],[122,253,78,0.02806669145608332],[122,253,79,0.02090743934434421],[122,254,64,0.1560725319733542],[122,254,65,0.14490182318598277],[122,254,66,0.13390134604344897],[122,254,67,0.12309402808424627],[122,254,68,0.11252841777737634],[122,254,69,0.10226372882610087],[122,254,70,0.09234269093795604],[122,254,71,0.08279214878368386],[122,254,72,0.07362432231528411],[122,254,73,0.06483811415054724],[122,254,74,0.05642046253278451],[122,254,75,0.04834773832206705],[122,254,76,0.040587184430316864],[122,254,77,0.033098396078607505],[122,254,78,0.02583484023476435],[122,254,79,0.018745412580428555],[122,255,64,0.1537055451373612],[122,255,65,0.14256628563983142],[122,255,66,0.13158428524660026],[122,255,67,0.12077948869568397],[122,255,68,0.11020139105422111],[122,255,69,0.09991279711389266],[122,255,70,0.08996021632631565],[122,255,71,0.0803743170261864],[122,255,72,0.07117110090651704],[122,255,73,0.062353131987381155],[122,255,74,0.05391081868995835],[122,255,75,0.045823747562505866],[122,255,76,0.038062067148033306],[122,255,77,0.030587920436509933],[122,255,78,0.02335692431120764],[122,255,79,0.01631969437701223],[122,256,64,0.15131994736702892],[122,256,65,0.140207961243537],[122,256,66,0.1292390854453486],[122,256,67,0.11842998350082032],[122,256,68,0.1078308006241844],[122,256,69,0.09750774895670501],[122,256,70,0.08751107813730906],[122,256,71,0.07787536379323129],[122,256,72,0.06862057543660689],[122,256,73,0.059753207270462676],[122,256,74,0.05126747064323183],[122,256,75,0.04314654681114197],[122,256,76,0.03536389859614226],[122,256,77,0.027884639465138424],[122,256,78,0.020666958508082537],[122,256,79,0.013663599755745307],[122,257,64,0.14894149602598372],[122,257,65,0.1378528840170464],[122,257,66,0.12689222724729246],[122,257,67,0.11607267685051682],[122,257,68,0.10544479010846836],[122,257,69,0.09507802161017052],[122,257,70,0.0850263034202781],[122,257,71,0.07532815438134563],[122,257,72,0.0660076276822544],[122,257,73,0.05707533021942036],[122,257,74,0.04852951263202428],[122,257,75,0.04035722879710639],[122,257,76,0.03253556348280869],[122,257,77,0.025032926780068684],[122,257,78,0.017810413868712963],[122,257,79,0.0108232286210321],[122,258,64,0.14659468739633424],[122,258,65,0.13552622525982166],[122,258,66,0.12456977467187076],[122,258,67,0.11373480954762143],[122,258,68,0.10307214044661354],[122,258,69,0.0926543457915685],[122,258,70,0.08253898014206905],[122,258,71,0.07276849966629591],[122,258,72,0.0633710842063488],[122,258,73,0.054361539880561145],[122,258,74,0.04574228124976925],[122,258,75,0.037504391963484145],[122,258,76,0.029628762698448833],[122,258,77,0.022087305107968372],[122,258,78,0.014844240419802665],[122,258,79,0.007857461251275611],[122,259,64,0.14431470857839027],[122,259,65,0.13326430477802678],[122,259,66,0.1223094650182694],[122,259,67,0.11145585773674181],[122,259,68,0.10075434661420189],[122,259,69,0.09028041049463235],[122,259,70,0.08009505500949594],[122,259,71,0.07024455491662332],[122,259,72,0.06076114922192058],[122,259,73,0.05166382505204742],[122,259,74,0.0429591894497078],[122,259,75,0.0346424281372617],[122,259,76,0.02669835017562852],[122,259,77,0.01910251733585039],[122,259,78,0.011822456904408125],[122,259,79,0.004818956558485311],[122,260,64,0.14214227851280697],[122,260,65,0.13110906522892354],[122,260,66,0.12015478361149454],[122,260,67,0.10928119000406146],[122,260,68,0.09853884632647804],[122,260,69,0.08800565688544273],[122,260,70,0.07774569313640224],[122,260,71,0.0678087547624202],[122,260,72,0.058230934553585606],[122,260,73,0.04903527961651249],[122,260,74,0.040232548231992946],[122,260,75,0.03182206153883164],[122,260,76,0.023792649088694735],[122,260,77,0.016123687192434608],[122,260,78,0.00878622886707519],[122,260,79,0.0017442240926108868],[122,261,64,0.14010798248156148],[122,261,65,0.12909213937300787],[122,261,66,0.1181387159076028],[122,261,67,0.10724548946096196],[122,261,68,0.09646224548470632],[122,261,69,0.08586862828055229],[122,261,70,0.07553120897960981],[122,261,71,0.06550286853050022],[122,261,72,0.05582322763274034],[122,261,73,0.046519179866875225],[122,261,74,0.03760552748982938],[122,261,75,0.02908571921079926],[122,261,76,0.02095268911626777],[122,261,77,0.013189795774431166],[122,261,78,0.00577186042384338],[122,261,79,-0.0013336969634316284],[122,262,64,0.13823212087744746],[122,262,65,0.12723471127416192],[122,262,66,0.116283611499897],[122,262,67,0.10537260725621463],[122,262,68,0.09455015105718656],[122,262,69,0.08389677902435241],[122,262,70,0.07348085319348896],[122,262,71,0.06335777106709371],[122,262,72,0.053570255115214876],[122,262,73,0.044148751567102115],[122,262,74,0.035111938118080256],[122,262,75,0.026467340010885243],[122,262,76,0.01821205379141893],[122,262,77,0.010333577887637047],[122,262,78,0.0028107490214163925],[122,262,79,-0.004385216664943937],[122,263,64,0.13652550706176353],[122,263,65,0.1255483337552067],[122,263,66,0.11460201091082832],[122,263,67,0.10367638332043526],[122,263,68,0.09281796656179425],[122,263,69,0.08210722335550535],[122,263,70,0.0716134925824299],[122,263,71,0.061394031581446566],[122,263,72,0.051494159435460735],[122,263,73,0.041947514830575204],[122,263,74,0.03277642827525405],[122,263,75,0.023992408290264326],[122,263,76,0.015596741009484967],[122,263,77,0.00758120246846757],[122,263,78,-7.111729366300352E-5],[122,263,79,-0.007384879334457148],[122,264,64,0.13499053377759956],[122,264,65,0.12403601233292158],[122,264,66,0.113097734506716],[122,264,67,0.10216172271461484],[122,264,68,0.09127193441696445],[122,264,69,0.08050772002231342],[122,264,70,0.06993851223615119],[122,264,71,0.05962270869484029],[122,264,72,0.04960766329926767],[122,264,73,0.03992979657768741],[122,264,74,0.030614825033998223],[122,264,75,0.021678109252007992],[122,264,76,0.013125120345247071],[122,264,77,0.0049520241677990726],[122,264,78,-0.0028536174611587875],[122,264,79,-0.010312029419492892],[122,265,64,0.13362250857018212],[122,265,65,0.12269355599870106],[122,265,66,0.11176723381057427],[122,265,67,0.10082592776985305],[122,265,68,0.08991042526961797],[122,265,69,0.07909789269111547],[122,265,70,0.06845693984532049],[122,265,71,0.05804635166619688],[122,265,72,0.04791492208176343],[122,265,73,0.038101410557603195],[122,265,74,0.02863462144574306],[122,265,75,0.019533606077684985],[122,265,76,0.010807987350232424],[122,265,77,0.0024584063688249305],[122,265,78,-0.005522909460176601],[122,265,79,-0.010290791656513917],[122,266,64,0.13241125835130912],[122,266,65,0.12151119490599809],[122,266,66,0.11060120519550734],[122,266,67,0.09966028592683954],[122,266,68,0.08872547414579707],[122,266,69,0.07787068594633438],[122,266,70,0.06716279196786419],[122,266,71,0.05666020755754781],[122,266,72,0.046412563909251796],[122,266,73,0.03646050475078535],[122,266,74,0.026835608896478107],[122,266,75,0.017560438780706226],[122,266,76,0.008648714889778059],[122,266,77,7.062692537164864E-4],[122,266,78,-9.082507216361582E-4],[122,266,79,-0.002429290062869487],[122,267,64,0.1313430029490466],[122,267,65,0.12047546473935954],[122,267,66,0.10958646566683233],[122,267,67,0.09865191292325681],[122,267,68,0.08770456302478917],[122,267,69,0.07681405645237804],[122,267,70,0.06604464180546703],[122,267,71,0.0554536339099382],[122,267,72,0.045090917029255925],[122,267,73,0.03499857581319823],[122,267,74,0.025210654493124],[122,267,75,0.015753044625007775],[122,267,76,0.011437869996415998],[122,267,77,0.009434008569937796],[122,267,78,0.007528937020238807],[122,267,79,0.005716296342131304],[122,268,64,0.1304024972073468],[122,268,65,0.11957135727288079],[122,268,66,0.10870809018602955],[122,268,67,0.09778585073582703],[122,268,68,0.08683264921092486],[122,268,69,0.07591289863692856],[122,268,70,0.06508740785576554],[122,268,71,0.054411716323496485],[122,268,72,0.04393542391358525],[122,268,73,0.033701650080695374],[122,268,74,0.025611933565676377],[122,268,75,0.023153643033617367],[122,268,76,0.020766325049002797],[122,268,77,0.018462776536352424],[122,268,78,0.016248818551578295],[122,268,79,0.01412353945056101],[122,269,64,0.1295754409427876],[122,269,65,0.11878473637805333],[122,269,66,0.10795180975351107],[122,269,67,0.09704741946088524],[122,269,68,0.08609443866876214],[122,269,69,0.07515120406188379],[122,269,70,0.06427436262827334],[122,269,71,0.05351709017403442],[122,269,72,0.04292824139398688],[122,269,73,0.038551300946969985],[122,269,74,0.03579252581561956],[122,269,75,0.03305918814178868],[122,269,76,0.030375120714729024],[122,269,77,0.027757810515902148],[122,269,78,0.025218342803557874],[122,269,79,0.022761476779427806],[122,270,64,0.1288511558267148],[122,270,65,0.11810501851164126],[122,270,66,0.10730666924942643],[122,270,67,0.0964248221124747],[122,270,68,0.08547690329628005],[122,270,69,0.07451445347161016],[122,270,70,0.06358936045036406],[122,270,71,0.05513151309298],[122,270,72,0.05222547177734848],[122,270,73,0.04924620865096871],[122,270,74,0.04623135483983138],[122,270,75,0.04321388646229912],[122,270,76,0.04022162255504373],[122,270,77,0.037276856540036464],[122,270,78,0.0343961214907113],[122,270,79,0.031590089244906444],[122,271,64,0.12566258645469897],[122,271,65,0.11750929906159199],[122,271,66,0.10674944558404273],[122,271,67,0.09589411875673433],[122,271,68,0.08495508106103934],[122,271,69,0.07397650653519466],[122,271,70,0.06941584139187143],[122,271,71,0.06646480963976428],[122,271,72,0.06336386642624599],[122,271,73,0.060154949940132194],[122,271,74,0.05687743297039613],[122,271,75,0.053567294434771026],[122,271,76,0.050256425708343565],[122,271,77,0.04697207244322065],[122,271,78,0.04373641234609247],[122,271,79,0.04056626916086462],[122,272,64,0.12079478945630517],[122,272,65,0.11402209332726905],[122,272,66,0.10469158457197231],[122,272,67,0.09536855880132349],[122,272,68,0.08652015210812326],[122,272,69,0.08390916957868744],[122,272,70,0.08102999272500194],[122,272,71,0.07792317271798539],[122,272,72,0.0746306583538997],[122,272,73,0.07119450036387173],[122,272,74,0.06765568981996312],[122,272,75,0.0640531320216294],[122,272,76,0.060422757011476966],[122,272,77,0.056796767634737615],[122,272,78,0.053203025824325345],[122,272,79,0.049664577564283385],[122,273,64,0.1162360123602576],[122,273,65,0.1077247957845349],[122,273,66,0.09837198739219874],[122,273,67,0.09524934409453642],[122,273,68,0.09500232038505885],[122,273,69,0.09478702374699223],[122,273,70,0.09265741608309287],[122,273,71,0.08940446985670375],[122,273,72,0.08593044789533971],[122,273,73,0.08227729233448358],[122,273,74,0.07848740432742395],[122,273,75,0.07460242148445187],[122,273,76,0.07066213385005221],[122,273,77,0.0667035395557933],[122,273,78,0.06276004104568915],[122,273,79,0.0588607825322854],[122,274,64,0.11112193014668463],[122,274,65,0.10237287674096186],[122,274,66,0.10192125846700945],[122,274,67,0.10152778108805409],[122,274,68,0.1012061462410831],[122,274,69,0.10094481679116421],[122,274,70,0.10072334545841062],[122,274,71,0.10051464011523681],[122,274,72,0.09717360299246058],[122,274,73,0.09332019103679787],[122,274,74,0.08929687950720293],[122,274,75,0.08514774833465777],[122,274,76,0.08091614666309621],[122,274,77,0.0766435624203459],[122,274,78,0.07236863485379083],[122,274,79,0.06812631088850092],[122,275,64,0.10811892109667975],[122,275,65,0.1052738639157263],[122,275,66,0.10305143200251127],[122,275,67,0.10143995417167195],[122,275,68,0.10041511952135562],[122,275,69,0.09993945859059772],[122,275,70,0.09996206609104635],[122,275,71,0.10042132101771262],[122,275,72,0.10124418108325817],[122,275,73,0.10234157905642877],[122,275,74,0.10001196272236589],[122,275,75,0.0956238281683124],[122,275,76,0.09112706317141955],[122,275,77,0.08656721920954083],[122,275,78,0.0819877317786434],[122,275,79,0.07742890643413453],[122,276,64,0.10459466685711327],[122,276,65,0.10179173078487186],[122,276,66,0.09964651918937706],[122,276,67,0.09814599390182066],[122,276,68,0.09726351099679675],[122,276,69,0.09695821268938631],[122,276,70,0.09717465977693296],[122,276,71,0.09784548383609315],[122,276,72,0.0988905824185865],[122,276,73,0.10021304465391445],[122,276,74,0.10170068254905473],[122,276,75,0.10325328265742889],[122,276,76,0.10123849933008182],[122,276,77,0.09642479863206758],[122,276,78,0.09157471688631694],[122,276,79,0.08673334869731811],[122,277,64,0.10144689681416658],[122,277,65,0.09868226994287926],[122,277,66,0.0966091937779267],[122,277,67,0.09521338379525818],[122,277,68,0.09446601096307183],[122,277,69,0.09432300376362546],[122,277,70,0.09472458944036277],[122,277,71,0.09559787692069632],[122,277,72,0.09685595134004532],[122,277,73,0.09839430574071462],[122,277,74,0.1000977030118878],[122,277,75,0.10186538017277869],[122,277,76,0.10361711221237835],[122,277,77,0.10529162924206448],[122,277,78,0.10108621108143304],[122,277,79,0.09600223168531476],[122,278,64,0.09868858822299886],[122,278,65,0.09595844770106937],[122,278,66,0.09395221538605636],[122,278,67,0.09265448959235245],[122,278,68,0.09203441754577618],[122,278,69,0.09204490721392067],[122,278,70,0.09262207674772127],[122,278,71,0.09368776708819337],[122,278,72,0.09514853466016071],[122,278,73,0.09689256375369343],[122,278,74,0.09880165675242153],[122,278,75,0.10077448402207256],[122,278,76,0.1027298691358558],[122,278,77,0.1046052277758493],[122,278,78,0.10635518538888628],[122,278,79,0.10519680211726548],[122,279,64,0.09633063522496293],[122,279,65,0.09363120662447655],[122,279,66,0.09168639162064557],[122,279,67,0.09047980770807845],[122,279,68,0.08997875150797047],[122,279,69,0.0901333204015074],[122,279,70,0.09087576986388196],[122,279,71,0.09212295505173573],[122,279,72,0.09377522080366868],[122,279,73,0.09571376725217295],[122,279,74,0.09781754609558602],[122,279,75,0.09998465542799795],[122,279,76,0.10213296860383803],[122,279,77,0.1041985898682325],[122,279,78,0.10613450847389416],[122,279,79,0.10790943733689007],[122,280,64,0.09438164904203028],[122,280,65,0.091709257991749],[122,280,66,0.08982036360513623],[122,280,67,0.0886977446749112],[122,280,68,0.08830703047790045],[122,280,69,0.08859573252503838],[122,280,70,0.08949250980611001],[122,280,71,0.09090953900899396],[122,280,72,0.09274130127673141],[122,280,73,0.09486237177525225],[122,280,74,0.09714898153910978],[122,280,75,0.09949866217946113],[122,280,76,0.10182834986573852],[122,280,77,0.10407285245747316],[122,280,78,0.10618353325960656],[122,280,79,0.10812717128001664],[122,281,64,0.09284779473556498],[122,281,65,0.0901989112956556],[122,281,66,0.08836042897518975],[122,281,67,0.08731443443219011],[122,281,68,0.08702508135339349],[122,281,69,0.08743753295823253],[122,281,70,0.08847713550053377],[122,281,71,0.09005171713702875],[122,281,72,0.09205027121642467],[122,281,73,0.09434113892890994],[122,281,74,0.09679797979789195],[122,281,75,0.09931777602818359],[122,281,76,0.10181655134868783],[122,281,77,0.10422784425921044],[122,281,78,0.10650141437373928],[122,281,79,0.10860211703062372],[122,282,64,0.09173281396393346],[122,282,65,0.08910409028022936],[122,282,66,0.08731055187851988],[122,282,67,0.08633374302102387],[122,282,68,0.08613654045249541],[122,282,69,0.08666200762084325],[122,282,70,0.08783247711368242],[122,282,71,0.08955177856068874],[122,282,72,0.0917038185657385],[122,282,73,0.09415112420144106],[122,282,74,0.09676495061693846],[122,282,75,0.09944175881342854],[122,282,76,0.10209669635321106],[122,282,77,0.10466207122310944],[122,282,78,0.10708607354710181],[122,282,79,0.10933165715348875],[122,283,64,0.09103850923199464],[122,283,65,0.0884268111199149],[122,283,66,0.08667283565736789],[122,283,67,0.08575773640507722],[122,283,68,0.085643317149802],[122,283,69,0.08627079912767699],[122,283,70,0.08755981340390118],[122,283,71,0.08941055852924956],[122,283,72,0.09170227757145799],[122,283,73,0.09429212912328866],[122,283,74,0.0970491478277678],[122,283,75,0.09986931257367071],[122,283,76,0.10266694229362577],[122,283,77,0.10537316487929022],[122,283,78,0.10793464693473104],[122,283,79,0.11031247481829953],[122,284,64,0.0907642373754966],[122,284,65,0.08816666988564675],[122,284,66,0.08644700496912838],[122,284,67,0.08558615794951502],[122,284,68,0.08554506742875734],[122,284,69,0.08626337711770454],[122,284,70,0.08765833949424834],[122,284,71,0.0896269042591964],[122,284,72,0.0920440932711199],[122,284,73,0.09476216489091749],[122,284,74,0.09764813255514249],[122,284,75,0.10059754275714289],[122,284,76,0.10352394429778822],[122,284,77,0.10635734666492302],[122,284,78,0.10904295044558465],[122,284,79,0.1115400203318328],[122,285,64,0.09090669440909582],[122,285,65,0.08832062195753182],[122,285,66,0.08663018035059578],[122,285,67,0.08581619876187219],[122,285,68,0.08583896064435581],[122,285,69,0.0866368020828508],[122,285,70,0.08812492838686486],[122,285,71,0.09019743471191588],[122,285,72,0.09272558004822978],[122,285,73,0.09555721012118173],[122,285,74,0.09855753052406263],[122,285,75,0.10162171538436116],[122,285,76,0.10466261246957598],[122,285,77,0.10760918546315301],[122,285,78,0.11040523765541532],[122,285,79,0.11300826943041953],[122,286,64,0.09145993577064832],[122,286,65,0.08888299739230582],[122,286,66,0.08721688921801635],[122,286,67,0.08644250487783572],[122,286,68,0.08651968347500338],[122,286,69,0.08738572667401606],[122,286,70,0.08895413019634252],[122,286,71,0.09111653828675237],[122,286,72,0.09374091824705416],[122,286,73,0.0966712067511582],[122,286,74,0.09977102752306283],[122,286,75,0.10293525228152384],[122,286,76,0.1060761070217936],[122,286,77,0.1091215926806865],[122,286,78,0.11201419478135488],[122,286,79,0.11470971800045132],[122,287,64,0.09241543316933765],[122,287,65,0.0898455533708975],[122,287,66,0.08819911437472794],[122,287,67,0.08745722233301367],[122,287,68,0.08757948209056915],[122,287,69,0.08850243550746922],[122,287,70,0.09013821012516732],[122,287,71,0.09237640946039727],[122,287,72,0.09508218990717965],[122,287,73,0.0980960952072456],[122,287,74,0.10128040425804025],[122,287,75,0.10452976578806084],[122,287,76,0.10775587292162647],[122,287,77,0.11088585682539082],[122,287,78,0.11386097508915755],[122,287,79,0.11663541610725292],[122,288,64,0.09376216801122317],[122,288,65,0.09119756369967669],[122,288,66,0.08956637999995531],[122,288,67,0.08885008009425599],[122,288,68,0.08900824251019568],[122,288,69,0.08997692344518077],[122,288,70,0.0916672251548098],[122,288,71,0.09396712434618831],[122,288,72,0.09673945359141611],[122,288,73,0.09982188881712095],[122,288,74,0.10307561057022474],[122,288,75,0.10639513291196878],[122,288,76,0.10969171402231132],[122,288,77,0.11289171755762362],[122,288,78,0.11593527270687254],[122,288,79,0.11877504130616134],[122,289,64,0.09548676140236279],[122,289,65,0.09292594536553833],[122,289,66,0.09130587511891591],[122,289,67,0.09060851085068],[122,289,68,0.09079360915001944],[122,289,69,0.09179701234924692],[122,289,70,0.09352913945260932],[122,289,71,0.09587675517346245],[122,289,72,0.09870085830719044],[122,289,73,0.10183678746469338],[122,289,74,0.10514487901842662],[122,289,75,0.10851960893306495],[122,289,76,0.11187190668115599],[122,289,77,0.11512747921541666],[122,289,78,0.11822543584507023],[122,289,79,0.12111701123593366],[122,290,64,0.09757364072939978],[122,290,65,0.09501542214471193],[122,290,66,0.09340261455412535],[122,290,67,0.09271780966429083],[122,290,68,0.09292114156068998],[122,290,69,0.09394850631029406],[122,290,70,0.0957099784943452],[122,290,71,0.09809152368685753],[122,290,72,0.10095279652132488],[122,290,73,0.10412733048795597],[122,290,74,0.10747487782546694],[122,290,75,0.11088998045406745],[122,290,76,0.11428335286381397],[122,290,77,0.11758016381342767],[122,290,78,0.1207186194235372],[122,290,79,0.12364863549439964],[122,291,64,0.10000524281759288],[122,291,65,0.09744872526527681],[122,291,66,0.0958396373578786],[122,291,67,0.09516133048017544],[122,291,68,0.09537450935466862],[122,291,69,0.09641538534984162],[122,291,70,0.09819402190247062],[122,291,71,0.10059599346553683],[122,291,72,0.10348009626817334],[122,291,73,0.1066785888197026],[122,291,74,0.11005090318875282],[122,291,75,0.11349175789946153],[122,291,76,0.11691177273477704],[122,291,77,0.12023570351561674],[122,291,78,0.1234009771043939],[122,291,79,0.12635630679631155],[122,292,64,0.10276225366641212],[122,292,65,0.1002068311235052],[122,292,66,0.09859824272603629],[122,292,67,0.097920720496394],[122,292,68,0.09813572532342879],[122,292,69,0.09918003759675059],[122,292,70,0.10096403500013695],[122,292,71,0.10337330116246657],[122,292,72,0.10626625235124765],[122,292,73,0.10947439637124678],[122,292,74,0.11285711095513906],[122,292,75,0.11630940746229568],[122,292,76,0.11974193673422584],[122,292,77,0.12307917258179185],[122,292,78,0.12625789273178228],[122,292,79,0.1292257314135412],[122,293,64,0.1058238847625933],[122,293,65,0.10326923605392546],[122,293,66,0.10165826339300088],[122,293,67,0.10097619239345901],[122,293,68,0.10118541674445014],[122,293,69,0.102223529937645],[122,293,70,0.10400153908089649],[122,293,71,0.10640542666363151],[122,293,72,0.10929369663821698],[122,293,73,0.11249762065902347],[122,293,74,0.11587678765995385],[122,293,75,0.11932662249878373],[122,293,76,0.12275793714111899],[122,293,77,0.126095058787901],[122,293,78,0.12927425117799984],[122,293,79,0.13224219889749778],[122,294,64,0.10916818597063588],[122,294,65,0.1066142681530905],[122,294,66,0.10499837650787391],[122,294,67,0.10430683442338956],[122,294,68,0.10450313487799118],[122,294,69,0.10552591714129234],[122,294,70,0.10728712039406924],[122,294,71,0.10967350216717564],[122,294,72,0.11254410744926813],[122,294,73,0.11573047267406039],[122,294,74,0.11909266093017701],[122,294,75,0.12252663437070199],[122,294,76,0.12594349912250408],[122,294,77,0.12926757432005653],[122,294,78,0.1324347485960637],[122,294,79,0.13539089108375202],[122,295,64,0.11277239500089159],[122,295,65,0.11021943615719998],[122,295,66,0.10859645199193835],[122,295,67,0.1078909583584865],[122,295,68,0.10806770265379045],[122,295,69,0.10906658945709574],[122,295,70,0.11080077784592535],[122,295,71,0.11315816018262076],[122,295,72,0.11599875803898152],[122,295,73,0.1191548559944765],[122,295,74,0.12248724925192744],[122,295,75,0.12589256273573812],[122,295,76,0.12928233126921368],[122,295,77,0.13258100614245324],[122,295,78,0.13572424207887057],[122,295,79,0.13865723037903177],[122,296,64,0.11661332345502995],[122,296,65,0.11406181537335991],[122,296,66,0.11242993837725268],[122,296,67,0.11170648529961513],[122,296,68,0.11185760054747718],[122,296,69,0.11282465868747404],[122,296,70,0.11452230941646174],[122,296,71,0.11683992044993907],[122,296,72,0.11963890417149281],[122,296,73,0.12275275514077635],[122,296,74,0.12604325110202869],[122,296,75,0.12940780528556006],[122,296,76,0.13275851561770946],[122,296,77,0.13602010583894397],[122,296,78,0.13912813872471175],[122,296,79,0.1420272673303478],[122,297,64,0.12066777944910917],[122,297,65,0.11811847066471093],[122,297,66,0.11647628612658639],[122,297,67,0.11573136934422473],[122,297,68,0.11585139064692629],[122,297,69,0.11677938273436927],[122,297,70,0.11843173729201056],[122,297,71,0.12069961577871943],[122,297,72,0.12344621078918949],[122,297,73,0.12650666317418818],[122,297,74,0.12974397344390076],[122,297,75,0.13305646693185477],[122,297,76,0.1363569371583268],[122,297,77,0.1395705189285258],[122,297,78,0.14263282410939965],[122,297,79,0.14548810747650778],[122,298,64,0.12491302681403488],[122,298,65,0.12236691648920484],[122,298,66,0.12071340843447767],[122,298,67,0.1199440591138845],[122,298,68,0.12002817890833284],[122,298,69,0.12091062861965382],[122,298,70,0.12250977171345181],[122,298,71,0.12471885680719808],[122,298,72,0.12740321777470298],[122,298,73,0.13040004853780882],[122,298,74,0.13357379958754131],[122,298,75,0.13682382844009733],[122,298,76,0.1400637528296795],[122,298,77,0.14321925365449423],[122,298,78,0.1462261301647616],[122,298,79,0.1490283774817719],[122,299,64,0.12932728087355616],[122,299,65,0.1267856139921822],[122,299,66,0.12512017950956367],[122,299,67,0.1243239971414894],[122,299,68,0.1243681156021636],[122,299,69,0.12519937397959544],[122,299,70,0.12673831354018944],[122,299,71,0.1288805356813145],[122,299,72,0.13149384480636517],[122,299,73,0.13441786114072202],[122,299,74,0.137518696413762],[122,299,75,0.14069685451121844],[122,299,76,0.14386689999939412],[122,299,77,0.1469551892474378],[122,299,78,0.1498978424636731],[122,299,79,0.1526387305518248],[122,300,64,0.1338902407997904],[122,300,65,0.13135450515273936],[122,300,66,0.12967697033817585],[122,300,67,0.1288521571181254],[122,300,68,0.1288529339489709],[122,300,69,0.12962824703336537],[122,300,70,0.13110099552987622],[122,300,71,0.1331693686537772],[122,300,72,0.135703935307109],[122,300,73,0.13854707768507202],[122,300,74,0.14156676096266324],[122,300,75,0.14466474131115317],[122,300,76,0.147756644431154],[122,300,77,0.1507696236620511],[122,300,78,0.1536402469116102],[122,300,79,0.15631239113204193],[122,301,64,0.1385836585461511],[122,301,65,0.1360555839837606],[122,301,66,0.1343662219290716],[122,301,67,0.13351161899946642],[122,301,68,0.1334665269449447],[122,301,69,0.13418210502546693],[122,301,70,0.13558376233376163],[122,301,71,0.13757247760301233],[122,301,72,0.140021839486688],[122,301,73,0.14277728623596492],[122,301,74,0.1457088063862182],[122,301,75,0.14871950344813994],[122,301,76,0.15172616773792458],[122,301,77,0.15465686078763802],[122,301,78,0.15744871584459122],[122,301,79,0.1600457388879196],[122,302,64,0.1433919443578267],[122,302,65,0.1408735047857635],[122,302,66,0.13917305603945365],[122,302,67,0.1382881819718549],[122,302,68,0.13819556237735267],[122,302,69,0.1388486511422315],[122,302,70,0.14017548920781506],[122,302,71,0.14208001047215085],[122,302,72,0.14443903647737083],[122,302,73,0.14710131003435625],[122,302,74,0.14993898726512625],[122,302,75,0.15285660039793297],[122,302,76,0.15577219432152245],[122,302,77,0.1586148371324694],[122,302,78,0.161322333533672],[122,302,79,0.1638389319678366],[122,303,64,0.14830280885976677],[122,303,65,0.14579622745451382],[122,303,66,0.14408592338223108],[122,303,67,0.1431710152780192],[122,303,68,0.1430301360298215],[122,303,69,0.14361908990233854],[122,303,70,0.14486863943957565],[122,303,71,0.14668580062800085],[122,303,72,0.14895079556305596],[122,303,73,0.15151587055286805],[122,303,74,0.15425546428987716],[122,303,75,0.15707560237686702],[122,303,76,0.15989565779846585],[122,303,77,0.16264578798192922],[122,303,78,0.16526456109593007],[122,303,79,0.1676965695480786],[122,304,64,0.1533079417220806],[122,304,65,0.150815699842315],[122,304,66,0.14909728931442925],[122,304,67,0.14815334690233503],[122,304,68,0.1479644630773696],[122,304,69,0.14848882102126543],[122,304,70,0.1496599604906389],[122,304,71,0.15138806513991973],[122,304,72,0.1535568765017232],[122,304,73,0.15602228979445287],[122,304,74,0.1586611083059461],[122,304,75,0.1613808956626953],[122,304,76,0.16410240691202913],[122,304,77,0.16675695303037702],[122,304,78,0.16928394081186476],[122,304,79,0.17162839366005433],[122,305,64,0.1584037269029872],[122,305,65,0.15592857717310887],[122,305,66,0.1542043570068836],[122,305,67,0.15323319011576775],[122,305,68,0.15299760767132176],[122,305,69,0.15345817174980395],[122,305,70,0.1545512188549127],[122,305,71,0.15619014197871572],[122,305,72,0.15826226894134943],[122,305,73,0.1606272318340326],[122,305,74,0.16316424372324406],[122,305,75,0.1657824273633257],[122,305,76,0.16840395093062577],[122,305,77,0.17096132148684573],[122,305,78,0.1733948398493316],[122,305,79,0.1756500302998229],[122,306,64,0.16359199446929096],[122,306,65,0.16113697851136688],[122,306,66,0.15940982809519788],[122,306,67,0.15841410788047128],[122,306,68,0.15813425071409037],[122,306,69,0.15853316768661962],[122,306,70,0.15954997363262372],[122,306,71,0.16110126613556097],[122,306,72,0.16307797092927223],[122,306,73,0.16534348360309398],[122,306,74,0.1677794312898089],[122,306,75,0.17029648963343977],[122,306,76,0.1728182445325028],[122,306,77,0.17527841665456156],[122,306,78,0.1776182333939987],[122,306,79,0.17978376981991656],[122,307,64,0.16887964294119118],[122,307,65,0.166448118517038],[122,307,66,0.16472153581727647],[122,307,67,0.16370483963197396],[122,307,68,0.16338430306091103],[122,307,69,0.16372512592949856],[122,307,70,0.1646691441776071],[122,307,71,0.1661361076095563],[122,307,72,0.16802049468296437],[122,307,73,0.1701894277656814],[122,307,74,0.17252690909893795],[122,307,75,0.17494513116325328],[122,307,76,0.17736907318673684],[122,307,77,0.17973365943124597],[122,307,78,0.1819810510873509],[122,307,79,0.18405790150731785],[122,308,64,0.1742551683015825],[122,308,65,0.17185090699377217],[122,308,66,0.17012896525089555],[122,308,67,0.16909559742657368],[122,308,68,0.16873884214433033],[122,308,69,0.16902611075955537],[122,308,70,0.1699018825086254],[122,308,71,0.171288982777515],[122,308,72,0.1730853696115773],[122,308,73,0.17516182653840373],[122,308,74,0.1774046835857721],[122,308,75,0.17972761334143375],[122,308,76,0.18205695831282181],[122,308,77,0.18432882677283802],[122,308,78,0.18648630860853876],[122,308,79,0.1884766490171521],[122,309,64,0.17968557182324224],[122,309,65,0.17731277694514963],[122,309,66,0.17560000589862365],[122,309,67,0.17455474733005552],[122,309,68,0.17416672626603782],[122,309,69,0.174405484588537],[122,309,70,0.17521806412552043],[122,309,71,0.17653028753957437],[122,309,72,0.1782435192623938],[122,309,73,0.18023214267788515],[122,309,74,0.18238479369146532],[122,309,75,0.18461661631380863],[122,309,76,0.18685530420378063],[122,309,77,0.18903813925457322],[122,309,78,0.1911091368908784],[122,309,79,0.19301614384150576],[122,310,64,0.18513660847475463],[122,310,65,0.18279982554350133],[122,310,66,0.18110112370179254],[122,310,67,0.18004914636846692],[122,310,68,0.17963522180676927],[122,310,69,0.17983093783178575],[122,310,70,0.18058581530241685],[122,310,71,0.18182859402646154],[122,310,72,0.18346397115879393],[122,310,73,0.1853698722564573],[122,310,74,0.18743724159613848],[122,310,75,0.18958271334802024],[122,310,76,0.19173533806512905],[122,310,77,0.19383357046159308],[122,310,78,0.19582235101193235],[122,310,79,0.19765013473450618],[122,311,64,0.19057400160246074],[122,311,65,0.18827803117009423],[122,311,66,0.1865985847570328],[122,311,67,0.18554537710369817],[122,311,68,0.18511125257787447],[122,311,69,0.18526975654315972],[122,311,70,0.18597280194599308],[122,311,71,0.1871519628815309],[122,311,72,0.1887151937797656],[122,311,73,0.1905439064763449],[122,311,74,0.19253137818375016],[122,311,75,0.19459577756206517],[122,311,76,0.19666753463264763],[122,311,77,0.19868628533446925],[122,311,78,0.20059789750279297],[122,311,79,0.20235143878762135],[122,312,64,0.19596386449431497],[122,312,65,0.19371367509684803],[122,312,66,0.1920588757829943],[122,312,67,0.19101016562002243],[122,312,68,0.1905618141626046],[122,312,69,0.19068923208009425],[122,312,70,0.19134663372288466],[122,312,71,0.19246834119538797],[122,312,72,0.19396548789094215],[122,312,73,0.1957229162512058],[122,312,74,0.19763628084970367],[122,312,75,0.19962535295605022],[122,312,76,0.20162198043351276],[122,312,77,0.2035669976588586],[122,312,78,0.20540720504703153],[122,312,79,0.20709228528857426],[122,313,64,0.20127394746926985],[122,313,65,0.19907448453000925],[122,313,66,0.19744974245729147],[122,313,67,0.19641131482713786],[122,313,68,0.1959548022202041],[122,313,69,0.1960573848347258],[122,313,70,0.19667548406423813],[122,313,71,0.19774608008048838],[122,313,72,0.19918340346616248],[122,313,73,0.20087567074471843],[122,313,74,0.20272097627677987],[122,313,75,0.2046407842921585],[122,313,76,0.20656841385681596],[122,313,77,0.20844592360768613],[122,313,78,0.2102210549451532],[122,313,79,0.2118441067028755],[122,314,64,0.2064734979207411],[122,314,65,0.2043295106663312],[122,314,66,0.20274008418560233],[122,314,67,0.20171761465553606],[122,314,68,0.2012589368651535],[122,314,69,0.20134290163162666],[122,314,70,0.2019280395278881],[122,314,71,0.20295389509080183],[122,314,72,0.20433771044185567],[122,314,73,0.20597101794311623],[122,314,74,0.20775443039190497],[122,314,75,0.20961121599637497],[122,314,76,0.2114762325406252],[122,314,77,0.213292797120968],[122,314,78,0.21500960395032778],[122,314,79,0.21657756837391984],[122,315,64,0.21153260426979426],[122,315,65,0.2094485779012862],[122,315,66,0.20789950671755408],[122,315,67,0.2068984960164283],[122,315,68,0.2064435157245677],[122,315,69,0.20651498548891833],[122,315,70,0.20707344376027206],[122,315,71,0.20806090181266162],[122,315,72,0.20939752333826367],[122,315,73,0.21097809571052079],[122,315,74,0.2127058431549695],[122,315,75,0.21450596780084158],[122,315,76,0.21631494680203733],[122,315,77,0.2180773978684051],[122,315,78,0.21974298331770475],[122,315,79,0.22126323502291723],[122,316,64,0.21642255223515172],[122,316,65,0.21440264993868535],[122,316,66,0.21289869681297974],[122,316,67,0.21192441276934937],[122,316,68,0.21147880200926883],[122,316,69,0.21154374868359424],[122,316,70,0.2120816945680984],[122,316,71,0.21303701611015552],[122,316,72,0.21433270403636817],[122,316,73,0.21586673666779205],[122,316,74,0.2175450552173595],[122,316,75,0.21929494288832221],[122,316,76,0.22105458898565256],[122,316,77,0.22276996151745349],[122,316,78,0.22439170969221459],[122,316,79,0.22587198192914731],[122,317,64,0.22111621969262657],[122,317,65,0.21916423101497107],[122,317,66,0.21770982859535432],[122,317,67,0.21676725200205396],[122,317,68,0.21633643757934784],[122,317,69,0.21640062755416375],[122,317,70,0.2169240595333795],[122,317,71,0.21785336978466255],[122,317,72,0.21911427690490765],[122,317,73,0.220607882422944],[122,317,74,0.22224296100849175],[122,317,75,0.22394903962997592],[122,317,76,0.22566612367251493],[122,317,77,0.22734158824293463],[122,317,78,0.2289270917441055],[122,317,79,0.22863029677731567],[122,318,64,0.22558847573202492],[122,318,65,0.22370777141666998],[122,318,66,0.22230697432055485],[122,318,67,0.22140074887044892],[122,318,68,0.22098986073235197],[122,318,69,0.2210588022009362],[122,318,70,0.22157349670727677],[122,318,71,0.22248273149343306],[122,318,72,0.2237148493577573],[122,318,73,0.22517400338657367],[122,318,74,0.22677192754694428],[122,318,75,0.2284405691786442],[122,318,76,0.23012186387266054],[122,318,77,0.23176465735083907],[122,318,78,0.23061210614826572],[122,318,79,0.22399901201533506],[122,319,64,0.22981658391151688],[122,319,65,0.228010077291005],[122,319,66,0.22666651956094166],[122,319,67,0.22580090599855757],[122,319,68,0.2254147287140911],[122,319,69,0.22549362108393448],[122,319,70,0.22600508038274864],[122,319,71,0.2268999329272022],[122,319,72,0.22810903784166003],[122,319,73,0.2295395241722924],[122,319,74,0.23110621897617012],[122,319,75,0.23274367891763673],[122,319,76,0.23439589320125906],[122,319,77,0.23239086321440494],[122,319,78,0.22554221030751548],[122,319,79,0.21901771159407588],[123,-64,64,0.345618052203312],[123,-64,65,0.3516637065781039],[123,-64,66,0.3578121510157914],[123,-64,67,0.36404768678901195],[123,-64,68,0.37037223565958993],[123,-64,69,0.3768006777177926],[123,-64,70,0.38334389135067426],[123,-64,71,0.3900078697583522],[123,-64,72,0.39679332664384276],[123,-64,73,0.40369541715325963],[123,-64,74,0.4107035770399108],[123,-64,75,0.4178014828819238],[123,-64,76,0.4249671360233258],[123,-64,77,0.4321730727347103],[123,-64,78,0.4393867029030515],[123,-64,79,0.446570779363516],[123,-63,64,0.34822832884108296],[123,-63,65,0.3543709403197955],[123,-63,66,0.36062135935273826],[123,-63,67,0.3669641068086554],[123,-63,68,0.37340032725653427],[123,-63,69,0.3799434749044423],[123,-63,70,0.3866030039185684],[123,-63,71,0.3933835274121711],[123,-63,72,0.40028444984116923],[123,-63,73,0.4072997122549458],[123,-63,74,0.4144176532439287],[123,-63,75,0.4216209882830009],[123,-63,76,0.4288869100122483],[123,-63,77,0.4361873118256517],[123,-63,78,0.44348913695538555],[123,-63,79,0.45075485504699925],[123,-62,64,0.3510208632682732],[123,-62,65,0.35725173118010856],[123,-62,66,0.363593861223217],[123,-62,67,0.3700323494888175],[123,-62,68,0.37656752469465327],[123,-62,69,0.383211122438843],[123,-62,70,0.38997099214407976],[123,-62,71,0.3968502938943607],[123,-62,72,0.40384714466586047],[123,-62,73,0.4109543752712769],[123,-62,74,0.41815940074691516],[123,-62,75,0.425444206771431],[123,-62,76,0.43278545455040024],[123,-62,77,0.4401547064333433],[123,-62,78,0.44751877435083415],[123,-62,79,0.45484019297138545],[123,-61,64,0.35397979588910167],[123,-61,65,0.36028993147260874],[123,-61,66,0.3667131702809249],[123,-61,67,0.3732355054631038],[123,-61,68,0.37985642655949886],[123,-61,69,0.3865857041453487],[123,-61,70,0.39342944237792893],[123,-61,71,0.4003893086335747],[123,-61,72,0.40746218110873905],[123,-61,73,0.41463990524661126],[123,-61,74,0.4219091616251426],[123,-61,75,0.42925144780484487],[123,-61,76,0.4366431764832989],[123,-61,77,0.4440558921395171],[123,-61,78,0.4514566081764748],[123,-61,79,0.4588082663867394],[123,-60,64,0.3570855706788166],[123,-60,65,0.36346580975856374],[123,-60,66,0.3699593824639131],[123,-60,67,0.3765534522685686],[123,-60,68,0.3832466575530526],[123,-60,69,0.3900466075341068],[123,-60,70,0.39695756179826996],[123,-60,71,0.40397968741644913],[123,-60,72,0.41110869623235463],[123,-60,73,0.4183355893285722],[123,-60,74,0.4256465112301454],[123,-60,75,0.4330227162715163],[123,-60,76,0.4404406494049927],[123,-60,77,0.4478721435691746],[123,-60,78,0.4552847355652613],[123,-60,79,0.4626421022103482],[123,-59,64,0.3603156599690748],[123,-59,65,0.3667567880351509],[123,-59,66,0.37330992862297974],[123,-59,67,0.3799636242696323],[123,-59,68,0.3867156555215422],[123,-59,69,0.39357132541003714],[123,-59,70,0.4005329900677121],[123,-59,71,0.4075993378840718],[123,-59,72,0.414765005957136],[123,-59,73,0.4220203022837259],[123,-59,74,0.4293510361876825],[123,-59,75,0.43673845935515687],[123,-59,76,0.44415931970252714],[123,-59,77,0.45158603014704307],[123,-59,78,0.4589869541841986],[123,-59,79,0.46632681000157206],[123,-58,64,0.3636454382189728],[123,-58,65,0.37013832746336905],[123,-58,66,0.37674047473959427],[123,-58,67,0.38344192867174076],[123,-58,68,0.39023960231074445],[123,-58,69,0.397136397994145],[123,-58,70,0.4041327469193575],[123,-58,71,0.41122590496380457],[123,-58,72,0.4184095393041676],[123,-58,73,0.42567341949303134],[123,-58,74,0.4330032154441171],[123,-58,75,0.4403804046514552],[123,-58,76,0.4477822908286411],[123,-58,77,0.45518213600327023],[123,-58,78,0.4625494079400494],[123,-58,79,0.4698501445963167],[123,-57,64,0.36704920414458136],[123,-57,65,0.3735849619608039],[123,-57,66,0.3802259690312824],[123,-57,67,0.38696380691335847],[123,-57,68,0.3937944977446624],[123,-57,69,0.4007184948774953],[123,-57,70,0.40773431503436824],[123,-57,71,0.4148378456594631],[123,-57,72,0.42202189459680933],[123,-57,73,0.429275843027384],[123,-57,74,0.4365854040773824],[123,-57,75,0.44393248938862034],[123,-57,76,0.4512951858073673],[123,-57,77,0.458647844201432],[123,-57,78,0.465961282258248],[123,-57,79,0.473203102951421],[123,-56,64,0.3704981432868587],[123,-56,65,0.37706814074824413],[123,-56,66,0.38373835289110136],[123,-56,67,0.39050180978782095],[123,-56,68,0.3973535985150881],[123,-56,69,0.40429171862414875],[123,-56,70,0.4113128113211295],[123,-56,71,0.41841147349608804],[123,-56,72,0.42557976539135356],[123,-56,73,0.4328068203321761],[123,-56,74,0.4400785588985636],[123,-56,75,0.4473775098006398],[123,-56,76,0.45468273958991534],[123,-56,77,0.46196989319703363],[123,-56,78,0.46921134713407503],[123,-56,79,0.4763764770387031],[123,-55,64,0.373942350665769],[123,-55,65,0.38053743893655645],[123,-55,66,0.3872268665399935],[123,-55,67,0.39400496625916215],[123,-55,68,0.4008658605973629],[123,-55,69,0.40780515793146055],[123,-55,70,0.41481771591681865],[123,-55,71,0.42189695669812166],[123,-55,72,0.4290343284408745],[123,-55,73,0.43621886777776964],[123,-55,74,0.44343686552105144],[123,-55,75,0.45067163788021775],[123,-55,76,0.4579034052991318],[123,-55,77,0.465109280889373],[123,-55,78,0.4722633702886571],[123,-55,79,0.479336984616683],[123,-54,64,0.3773281991409548],[123,-54,65,0.3839385110688634],[123,-54,66,0.39063661721383197],[123,-54,67,0.3974179759981754],[123,-54,68,0.4042757465354049],[123,-54,69,0.41120328119945876],[123,-54,70,0.41819380452864713],[123,-54,71,0.4252397232784346],[123,-54,72,0.43233203820866045],[123,-54,73,0.4394598557855973],[123,-54,74,0.44661000212911356],[123,-54,75,0.45376674142793866],[123,-54,76,0.46091160092516975],[123,-54,77,0.4680233044432034],[123,-54,78,0.4750778162733915],[123,-54,79,0.48204849710320175],[123,-53,64,0.3806099928300906],[123,-53,65,0.3872251800650071],[123,-53,66,0.39392113901739617],[123,-53,67,0.4006942511949419],[123,-53,68,0.40753674076899504],[123,-53,69,0.41443990171478434],[123,-53,70,0.421395524387369],[123,-53,71,0.42839519355983424],[123,-53,72,0.4354296475407643],[123,-53,73,0.4424882364363265],[123,-53,74,0.4495584818738743],[123,-53,75,0.45662574040078635],[123,-53,76,0.4636729726553417],[123,-53,77,0.47068062027721963],[123,-53,78,0.4776265923849193],[123,-53,79,0.4844863632982357],[123,-52,64,0.38375019695131496],[123,-52,65,0.3903596550195598],[123,-52,66,0.3970425954684234],[123,-52,67,0.40379610137711114],[123,-52,68,0.41061151441403765],[123,-52,69,0.41747831985320316],[123,-52,70,0.4243871112557621],[123,-52,71,0.43132886943944193],[123,-52,72,0.4382942668247939],[123,-52,73,0.4452730704525545],[123,-52,74,0.45225364598321693],[123,-52,75,0.4592225648901722],[123,-52,76,0.4661643169441213],[123,-52,77,0.47306112996031313],[123,-52,78,0.4798928986427222],[123,-52,79,0.48663722421273736],[123,-51,64,0.3867197239243371],[123,-51,65,0.3933128024944348],[123,-51,66,0.3999720324296126],[123,-51,67,0.4066949650908085],[123,-51,68,0.4134721330276988],[123,-51,69,0.42029150420424816],[123,-51,70,0.4271427412773174],[123,-51,71,0.43401645455070054],[123,-51,72,0.4409034503911628],[123,-51,73,0.4477940781909966],[123,-51,74,0.454677678189472],[123,-51,75,0.46154213236847796],[123,-51,76,0.4683735205264113],[123,-51,77,0.4751558835104452],[123,-51,78,0.48187109545184903],[123,-51,79,0.48849884670422583],[123,-50,64,0.38774139660047924],[123,-50,65,0.3954310954722472],[123,-50,66,0.4026897395104081],[123,-50,67,0.40937174886365046],[123,-50,68,0.41610037008431777],[123,-50,69,0.42286237654501607],[123,-50,70,0.42964678461244815],[123,-50,71,0.43644407403525587],[123,-50,72,0.44324538030807087],[123,-50,73,0.4500417858445556],[123,-50,74,0.4568237122793014],[123,-50,75,0.4635804161230413],[123,-50,76,0.4702995898858877],[123,-50,77,0.4769670706605991],[123,-50,78,0.48356665802343873],[123,-50,79,0.49008004296613916],[123,-49,64,0.388716736557061],[123,-49,65,0.3964121428240645],[123,-49,66,0.40411828121257654],[123,-49,67,0.4118134790770748],[123,-49,68,0.4184849498157162],[123,-49,69,0.4251816604480123],[123,-49,70,0.43189226277850207],[123,-49,71,0.4386073308634008],[123,-49,72,0.44531849901897724],[123,-49,73,0.4520176992367946],[123,-49,74,0.4586965003362568],[123,-49,75,0.465345551090224],[123,-49,76,0.4719541294501862],[123,-49,77,0.47850979987504355],[123,-49,78,0.48499818063316735],[123,-49,79,0.49140282280319064],[123,-48,64,0.3897827629797288],[123,-48,65,0.3974772532911004],[123,-48,66,0.40519157132517086],[123,-48,67,0.41290977846316507],[123,-48,68,0.4206115427868741],[123,-48,69,0.42723939862578364],[123,-48,70,0.43387387787798093],[123,-48,71,0.4405058041238578],[123,-48,72,0.44712740089027764],[123,-48,73,0.45373148136024993],[123,-48,74,0.4603107404114702],[123,-48,75,0.466857151223579],[123,-48,76,0.4733614685845765],[123,-48,77,0.47981284090408505],[123,-48,78,0.4861985328063411],[123,-48,79,0.4925037600309949],[123,-47,64,0.3909516657834105],[123,-47,65,0.39863580549512734],[123,-47,66,0.4063476456591216],[123,-47,67,0.4140719992950785],[123,-47,68,0.4218007339951923],[123,-47,69,0.42903025568584446],[123,-47,70,0.43559070918197],[123,-47,71,0.4421431289828529],[123,-47,72,0.44868033736421625],[123,-47,73,0.45519597650976823],[123,-47,74,0.46168376290862245],[123,-47,75,0.46813684651084825],[123,-47,76,0.47454727675954794],[123,-47,77,0.48090557749472196],[123,-47,78,0.4872004325889654],[123,-47,79,0.4934184840298057],[123,-46,64,0.39222644088493475],[123,-46,65,0.399888509722782],[123,-46,66,0.4075846567179373],[123,-46,67,0.41530071386894796],[123,-46,68,0.42302926252440437],[123,-46,69,0.4305550576304762],[123,-46,70,0.43704707070696136],[123,-46,71,0.44352717982552314],[123,-46,72,0.44998874743366857],[123,-46,73,0.45642612376523783],[123,-46,74,0.46283387569653556],[123,-46,75,0.46920611982843685],[123,-46,76,0.4755359618791566],[123,-46,77,0.4818150443491972],[123,-46,78,0.48803320428486835],[123,-46,79,0.4941782428217254],[123,-45,64,0.39360190196687306],[123,-45,65,0.4012283856776621],[123,-45,66,0.40889364466056183],[123,-45,67,0.4165847909694233],[123,-45,68,0.42429513812449593],[123,-45,69,0.431820047449163],[123,-45,70,0.4382518350046352],[123,-45,71,0.4446694678233682],[123,-45,72,0.4510667335818379],[123,-45,73,0.4574385147484528],[123,-45,74,0.46378000587040047],[123,-45,75,0.4700860335803941],[123,-45,76,0.47635048134913066],[123,-45,77,0.4825658208867998],[123,-45,78,0.48872275196287446],[123,-45,79,0.4948099522696344],[123,-44,64,0.3950656692366083],[123,-44,65,0.4026417183737246],[123,-44,66,0.4102594535020041],[123,-44,67,0.4179075149142745],[123,-44,68,0.42557998819740417],[123,-44,69,0.4328361562118155],[123,-44,70,0.4392177711098188],[123,-44,71,0.4455845514953009],[123,-44,72,0.45193054980598696],[123,-44,73,0.4582509628725418],[123,-44,74,0.4645413527812907],[123,-44,75,0.4707969677837292],[123,-44,76,0.47701216519297884],[123,-44,77,0.4831799380866737],[123,-44,78,0.4892915475039411],[123,-44,79,0.4953362616830491],[123,-43,64,0.396599138128248],[123,-43,65,0.40410899500139746],[123,-43,66,0.41166162928663913],[123,-43,67,0.41924743835163986],[123,-43,68,0.4268613385866398],[123,-43,69,0.4336182874496656],[123,-43,70,0.4399608946204135],[123,-43,71,0.4462894584306884],[123,-43,72,0.4525981000920939],[123,-43,73,0.4588820826492064],[123,-43,74,0.4651370510932983],[123,-43,75,0.4713583685451849],[123,-43,76,0.4775405503349452],[123,-43,77,0.4836767976887967],[123,-43,78,0.4897586326054411],[123,-43,79,0.49577563536753716],[123,-42,64,0.3981784308961341],[123,-42,65,0.40560582560096536],[123,-42,66,0.4130753029373911],[123,-42,67,0.42057922070561765],[123,-42,68,0.4278654106560314],[123,-42,69,0.43418461260888097],[123,-42,70,0.44049982788460273],[123,-42,71,0.44680311634948255],[123,-42,72,0.4530884457212514],[123,-42,73,0.4593508776422467],[123,-42,74,0.46558584266222425],[123,-42,75,0.47178850592256805],[123,-42,76,0.4779532252318865],[123,-42,77,0.4840731031103905],[123,-42,78,0.4901396342581556],[123,-42,79,0.49614244977207683],[123,-41,64,0.3997753340407124],[123,-41,65,0.40710385037214647],[123,-41,66,0.41447206047951957],[123,-41,67,0.4218744548218692],[123,-41,68,0.4282561049644028],[123,-41,69,0.4345558753678001],[123,-41,70,0.4408551682792907],[123,-41,71,0.447145791687751],[123,-41,72,0.4534213198083594],[123,-41,73,0.4596763356841638],[123,-41,74,0.46590575606873175],[123,-41,75,0.47210424021535397],[123,-41,76,0.4782656841022452],[123,-41,77,0.4843828015173094],[123,-41,78,0.49044679331142604],[123,-41,79,0.4964471060073949],[123,-40,64,0.4013582244895953],[123,-40,65,0.40857163643345723],[123,-40,66,0.4158208033238768],[123,-40,67,0.4221898581965608],[123,-40,68,0.4284647044931718],[123,-40,69,0.4347547026214302],[123,-40,70,0.4410488625785744],[123,-40,71,0.44733853391559736],[123,-40,72,0.45361664749808067],[123,-40,73,0.4598770300047997],[123,-40,74,0.4661137926808054],[123,-40,75,0.47232079578298064],[123,-40,76,0.4784911900676419],[123,-40,77,0.4846170365726108],[123,-40,78,0.4906890058413685],[123,-40,79,0.4966961576257655],[123,-39,64,0.4028929874291603],[123,-39,65,0.40983464128953956],[123,-39,66,0.4160153287826372],[123,-39,67,0.4222480542583694],[123,-39,68,0.4285159570001935],[123,-39,69,0.4348049199576658],[123,-39,70,0.44110358543335776],[123,-39,71,0.447402623819896],[123,-39,72,0.4536940702734395],[123,-39,73,0.459970724958308],[123,-39,74,0.4662256181666305],[123,-39,75,0.4724515415464013],[123,-39,76,0.47864064659248956],[123,-39,77,0.48478411146885014],[123,-39,78,0.49087187713732655],[123,-39,79,0.49689245367021584],[123,-38,64,0.40368824980689355],[123,-38,65,0.4097769139676799],[123,-38,66,0.4159424842319339],[123,-38,67,0.4221679645137239],[123,-38,68,0.4284355102323099],[123,-38,69,0.4347308694781663],[123,-38,70,0.4410421200124734],[123,-38,71,0.4473590240158818],[123,-38,72,0.4536724728681772],[123,-38,73,0.45997398507650716],[123,-38,74,0.4662552584287163],[123,-38,75,0.4725077773880581],[123,-38,76,0.47872247667836326],[123,-38,77,0.48488946193540244],[123,-38,78,0.490997788221466],[123,-38,79,0.49703529711706296],[123,-37,64,0.40353385723928253],[123,-37,65,0.4096001232686019],[123,-37,66,0.4157541192576056],[123,-37,67,0.4219767809112045],[123,-37,68,0.4282491745767942],[123,-37,69,0.43455672785305527],[123,-37,70,0.44088673889199065],[123,-37,71,0.44722782998948307],[123,-37,72,0.4535695113150522],[123,-37,73,0.4599017862227808],[123,-37,74,0.4662147989831309],[123,-37,75,0.47249852572731055],[123,-37,76,0.4787425093423789],[123,-37,77,0.48493563899698633],[123,-37,78,0.491065974915167],[123,-37,79,0.4971206189496692],[123,-36,64,0.40328807048114956],[123,-36,65,0.40933371468486],[123,-36,66,0.4154785111639113],[123,-36,67,0.4217013769623537],[123,-36,68,0.42798218388423015],[123,-36,69,0.434305822543408],[123,-36,70,0.4406585833235271],[123,-36,71,0.44702772001715585],[123,-36,72,0.4534011407094595],[123,-36,73,0.45976712767193223],[123,-36,74,0.46611408686483935],[123,-36,75,0.4724303276131683],[123,-36,76,0.4787038729831372],[123,-36,77,0.48492230134505987],[123,-36,78,0.49107261956409975],[123,-36,79,0.4971411682136272],[123,-35,64,0.4029806587683764],[123,-35,65,0.409006403579266],[123,-35,66,0.4151430249030763],[123,-35,67,0.42136751636371805],[123,-35,68,0.42765845227570004],[123,-35,69,0.43399994417849697],[123,-35,70,0.44037703906397707],[123,-35,71,0.44677540236141744],[123,-35,72,0.4531811413205127],[123,-35,73,0.45958064399714144],[123,-35,74,0.4659604342005764],[123,-35,75,0.47230704274311813],[123,-35,76,0.4786068953129734],[123,-35,77,0.4848462172688478],[123,-35,78,0.4910109556304337],[123,-35,79,0.49708671851298325],[123,-34,64,0.4026399260835629],[123,-34,65,0.4086453000049592],[123,-34,66,0.41477327343798115],[123,-34,67,0.4209990553013905],[123,-34,68,0.4272998248115142],[123,-34,69,0.4336586531360422],[123,-34,70,0.44005910700812084],[123,-34,71,0.4464850581982498],[123,-34,72,0.45292064174000046],[123,-34,73,0.45935021570527496],[123,-34,74,0.4657583226542807],[123,-34,75,0.47212965288560343],[123,-34,76,0.4784490096109091],[123,-34,77,0.48470127617696385],[123,-34,78,0.49087138545489334],[123,-34,79,0.49694429151286873],[123,-33,64,0.4022917995302384],[123,-33,65,0.40827502454844655],[123,-33,66,0.41439226932971013],[123,-33,67,0.4206171362440945],[123,-33,68,0.42692531997294314],[123,-33,69,0.43329857844417674],[123,-33,70,0.4397187669330296],[123,-33,71,0.44616777879799935],[123,-33,72,0.45262763782432913],[123,-33,73,0.45908057762717014],[123,-33,74,0.46550910801770007],[123,-33,75,0.4718960682551483],[123,-33,76,0.47822466712761436],[123,-33,77,0.48447850982458107],[123,-33,78,0.49064161158401637],[123,-33,79,0.49669839811658134],[123,-32,64,0.4019589063657968],[123,-32,65,0.40791681286596154],[123,-32,66,0.41401956532279],[123,-32,67,0.42023937111931686],[123,-32,68,0.426550361992103],[123,-32,69,0.43293270720305094],[123,-32,70,0.43936633273851644],[123,-32,71,0.44583099555373956],[123,-32,72,0.45230650625502383],[123,-32,73,0.4587729241393872],[123,-32,74,0.46521072428950555],[123,-32,75,0.4716009364622167],[123,-32,76,0.4779252555507403],[123,-32,77,0.4841661234436899],[123,-32,78,0.4903067821475761],[123,-32,79,0.49604866725803876],[123,-31,64,0.40165963740027033],[123,-31,65,0.40758760669256777],[123,-31,66,0.4136703818048609],[123,-31,67,0.4198790118656083],[123,-31,68,0.42618600115832794],[123,-31,69,0.43256966281195675],[123,-31,70,0.43900779765109327],[123,-31,71,0.445477901530248],[123,-31,72,0.4519575116194813],[123,-31,73,0.45842451036813914],[123,-31,74,0.4648573866598739],[123,-31,75,0.47074623509956437],[123,-31,76,0.47636284420978187],[123,-31,77,0.48196740605954935],[123,-31,78,0.48754948367604783],[123,-31,79,0.4930967902326349],[123,-30,64,0.40140719459476565],[123,-30,65,0.40729912922459993],[123,-30,66,0.4133547191331181],[123,-30,67,0.41954410646394835],[123,-30,68,0.42583812033314056],[123,-30,69,0.4322129703856676],[123,-30,70,0.4386441679510663],[123,-30,71,0.4451068632938589],[123,-30,72,0.45157630599651943],[123,-30,73,0.4571754140544613],[123,-30,74,0.46261006844026836],[123,-30,75,0.46806278509693167],[123,-30,76,0.4735285199780681],[123,-30,77,0.4789998441505324],[123,-30,78,0.48446695309911314],[123,-30,79,0.48991773251071447],[123,-29,64,0.4012086208320775],[123,-29,65,0.4070569429088792],[123,-29,66,0.4130764529466925],[123,-29,67,0.4192366386715346],[123,-29,68,0.42550662601972333],[123,-29,69,0.43186030785075097],[123,-29,70,0.4382707838828929],[123,-29,71,0.4441387473338512],[123,-29,72,0.4493339414971361],[123,-29,73,0.45456268347061757],[123,-29,74,0.4598265740369708],[123,-29,75,0.465124612745336],[123,-29,76,0.4704530488196207],[123,-29,77,0.4758053023606503],[123,-29,78,0.4811719561732157],[123,-29,79,0.4865408184328473],[123,-28,64,0.40106380998264307],[123,-28,65,0.40685948781664766],[123,-28,66,0.4128324107221512],[123,-28,67,0.41895164981244204],[123,-28,68,0.425184622456552],[123,-28,69,0.4315027413288194],[123,-28,70,0.436657686637379],[123,-28,71,0.4416262796579633],[123,-28,72,0.4466357450782225],[123,-28,73,0.45169230077348865],[123,-28,74,0.4567994301981993],[123,-28,75,0.46195761482642245],[123,-28,76,0.4671641498450258],[123,-28,77,0.472413043580214],[123,-28,78,0.4776950009995682],[123,-28,79,0.4829974914927932],[123,-27,64,0.4009644955531603],[123,-27,65,0.4066970989379423],[123,-27,66,0.41261142798019235],[123,-27,67,0.41867634112304314],[123,-27,68,0.424617040333185],[123,-27,69,0.4293295948179546],[123,-27,70,0.4340713510535159],[123,-27,71,0.4388555262680981],[123,-27,72,0.4436931034731462],[123,-27,73,0.44859233890834],[123,-27,74,0.45355836362511537],[123,-27,75,0.4585928800094106],[123,-27,76,0.4636939538886418],[123,-27,77,0.46885590270900357],[123,-27,78,0.47406928010898386],[123,-27,79,0.479320957054841],[123,-26,64,0.400893216381069],[123,-26,65,0.4065510009012881],[123,-26,66,0.41239338271335624],[123,-26,67,0.41765961144249697],[123,-26,68,0.4221616808523641],[123,-26,69,0.42668410431892306],[123,-26,70,0.43124454327124284],[123,-26,71,0.4358587271259084],[123,-26,72,0.4405398117058055],[123,-26,73,0.44529784182803345],[123,-26,74,0.4501393190514276],[123,-26,75,0.45506687540290447],[123,-26,76,0.4600790537257129],[123,-26,77,0.46517019511354285],[123,-26,78,0.4703304337144004],[123,-26,79,0.47554579900876887],[123,-25,64,0.4008223053835201],[123,-25,65,0.40639234718059736],[123,-25,66,0.4108463212917725],[123,-25,67,0.4151587978339941],[123,-25,68,0.41947708661693794],[123,-25,69,0.42382304238344826],[123,-25,70,0.4282169477378467],[123,-25,71,0.432676810519334],[123,-25,72,0.43721768358032936],[123,-25,73,0.4418510983149309],[123,-25,74,0.4465846129359323],[123,-25,75,0.45142147630888546],[123,-25,76,0.4563604079570721],[123,-25,77,0.46139549465395674],[123,-25,78,0.4665162038220761],[123,-25,79,0.4717075137610424],[123,-24,64,0.39998042616276086],[123,-24,65,0.4041683735932269],[123,-24,66,0.4083196861240615],[123,-24,67,0.4124556722213815],[123,-24,68,0.4166032553961634],[123,-24,69,0.4207869970685633],[123,-24,70,0.4250295575958792],[123,-24,71,0.4293509378280593],[123,-24,72,0.43376777611038725],[123,-24,73,0.4382927671983929],[123,-24,74,0.4429342040637722],[123,-24,75,0.4476956433633932],[123,-24,76,0.45257569513242873],[123,-24,77,0.4575679370494498],[123,-24,78,0.46266095340846614],[123,-24,79,0.467838498722227],[123,-23,64,0.3976210369324319],[123,-23,65,0.40163298957695026],[123,-23,66,0.4056133732179468],[123,-23,67,0.4095838380491262],[123,-23,68,0.41357300713204725],[123,-23,69,0.41760793701317467],[123,-23,70,0.4217134128707699],[123,-23,71,0.42591114790324414],[123,-23,72,0.4302190703407542],[123,-23,73,0.43465073933428683],[123,-23,74,0.4392148906592034],[123,-23,75,0.44391511294846603],[123,-23,76,0.44874965494514185],[123,-23,77,0.45371136403661705],[123,-23,78,0.4587877561069405],[123,-23,79,0.46396121652075006],[123,-22,64,0.3950980504194253],[123,-22,65,0.3989408674603051],[123,-22,66,0.40275870854946544],[123,-22,67,0.40657347015952267],[123,-22,68,0.4104152767321425],[123,-22,69,0.41431345073788095],[123,-22,70,0.41829464954783985],[123,-22,71,0.4223820326607113],[123,-22,72,0.4265945481650083],[123,-22,73,0.4309463541017898],[123,-22,74,0.43544637560630056],[123,-22,75,0.4400979984715476],[123,-22,76,0.4448988995381239],[123,-22,77,0.44984101407506394],[123,-22,78,0.454910640078985],[123,-22,79,0.46008867918523966],[123,-21,64,0.3924435954591689],[123,-21,65,0.39612279755794366],[123,-21,66,0.3997850559206602],[123,-21,67,0.4034523892543444],[123,-21,68,0.4071561971996402],[123,-21,69,0.41092782841485676],[123,-21,70,0.4147955678488746],[123,-21,71,0.41878377798777267],[123,-21,72,0.4229121906305542],[123,-21,73,0.42719533892651584],[123,-21,74,0.4316421304826904],[123,-21,75,0.43625556210176286],[123,-21,76,0.4410325764601808],[123,-21,77,0.4459640607854154],[123,-21,78,0.4510349873434983],[123,-21,79,0.4562246953050933],[123,-20,64,0.3896893492381563],[123,-20,65,0.39320879753509397],[123,-20,66,0.3967206077172142],[123,-20,67,0.40024677509071793],[123,-20,68,0.4038197304277211],[123,-20,69,0.407472607606736],[123,-20,70,0.4112350926091809],[123,-20,71,0.41513254083988443],[123,-20,72,0.41918527617148416],[123,-20,73,0.4234080352668453],[123,-20,74,0.4278095579117913],[123,-20,75,0.43239232383031856],[123,-20,76,0.4371524361924086],[123,-20,77,0.44207965176317465],[123,-20,78,0.44715755738458013],[123,-20,79,0.452363892229435],[123,-19,64,0.3868674566814483],[123,-19,65,0.3902289637510034],[123,-19,66,0.3935931623356309],[123,-19,67,0.3969818638884911],[123,-19,68,0.4004282795361105],[123,-19,69,0.40396709755465765],[123,-19,70,0.40762920880511716],[123,-19,71,0.411440797629825],[123,-19,72,0.4154226457879367],[123,-19,73,0.4195895867054718],[123,-19,74,0.4239501106952602],[123,-19,75,0.42850612152988343],[123,-19,76,0.43325284447719203],[123,-19,77,0.4381788856359839],[123,-19,78,0.44326644214222033],[123,-19,79,0.4484916625559581],[123,-18,64,0.38400779838231347],[123,-18,65,0.38721050803393653],[123,-18,66,0.39042692182607025],[123,-18,67,0.3936784986563031],[123,-18,68,0.3969989847303402],[123,-18,69,0.40042441547093643],[123,-18,70,0.40398673547746566],[123,-18,71,0.40771285539492136],[123,-18,72,0.4116239535035204],[123,-18,73,0.41573493310389026],[123,-18,74,0.4200540362808317],[123,-18,75,0.42458261434347916],[123,-18,76,0.4293150549539264],[123,-18,77,0.4342388656729152],[123,-18,78,0.4393349133734543],[123,-18,79,0.4445778187035259],[123,-17,64,0.38112193342495193],[123,-17,65,0.3841625339251567],[123,-17,66,0.38722828454227043],[123,-17,67,0.3903401237463672],[123,-17,68,0.393532095845361],[123,-17,69,0.39684139418559516],[123,-17,70,0.40030089875017455],[123,-17,71,0.4039381878198259],[123,-17,72,0.40777482652377844],[123,-17,73,0.41182581742683827],[123,-17,74,0.4160992136714093],[123,-17,75,0.42059589489370397],[123,-17,76,0.42530950583394933],[123,-17,77,0.4302265572639922],[123,-17,78,0.4353266885659978],[123,-17,79,0.4405830910152395],[123,-16,64,0.3781765991446594],[123,-16,65,0.38105317273147127],[123,-16,66,0.3839671540285819],[123,-16,67,0.386938805898099],[123,-16,68,0.3900022109119092],[123,-16,69,0.3931954804117008],[123,-16,70,0.3965522460133422],[123,-16,71,0.40010061926906826],[123,-16,72,0.4038624603478064],[123,-16,73,0.4078528154138661],[123,-16,74,0.41207952316236013],[123,-16,75,0.41654299065501926],[123,-16,76,0.4212361382860507],[123,-16,77,0.4261445133975021],[123,-16,78,0.43124657176101927],[123,-16,79,0.436514125850373],[123,-15,64,0.375137782702472],[123,-15,65,0.3778504459403245],[123,-15,66,0.3806139588998913],[123,-15,67,0.3834477620403912],[123,-15,68,0.38638568882164925],[123,-15,69,0.38946647051986233],[123,-15,70,0.39272423136020745],[123,-15,71,0.3961873948730585],[123,-15,72,0.3998779307068311],[123,-15,73,0.40381077675964805],[123,-15,74,0.40799343702703406],[123,-15,75,0.4124257552328816],[123,-15,76,0.41709986398230653],[123,-15,77,0.42200030885100825],[123,-15,78,0.42710434651030205],[123,-15,79,0.4323824156826606],[123,-14,64,0.37198217354353597],[123,-14,65,0.3745326546766354],[123,-14,66,0.37714880409659113],[123,-14,67,0.37984909530775257],[123,-14,68,0.38266680389439106],[123,-14,69,0.3856409385433724],[123,-14,70,0.3888058005826829],[123,-14,71,0.39218984014669317],[123,-14,72,0.3958148829664576],[123,-14,73,0.39969553864888374],[123,-14,74,0.4038387907770495],[123,-14,75,0.40824376881941116],[123,-14,76,0.41290170149313954],[123,-14,77,0.41779605088973903],[123,-14,78,0.42290282634354837],[123,-14,79,0.42819107670833867],[123,-13,64,0.3686951224042109],[123,-13,65,0.37108638347667433],[123,-13,66,0.3735595473501159],[123,-13,67,0.376131974208124],[123,-13,68,0.37883605872333914],[123,-13,69,0.38171071378878474],[123,-13,70,0.3847900637023503],[123,-13,71,0.3881022567309701],[123,-13,72,0.39166867669426636],[123,-13,73,0.39550334140272975],[123,-13,74,0.3996124882123929],[123,-13,75,0.4039943466002296],[123,-13,76,0.40863909730954895],[123,-13,77,0.4135290172659184],[123,-13,78,0.4186388091259306],[123,-13,79,0.42393611399610404],[123,-12,64,0.3652687730399826],[123,-12,65,0.36750467434456074],[123,-12,66,0.3698400418512069],[123,-12,67,0.37229097202822775],[123,-12,68,0.3748886491602647],[123,-12,69,0.37767150015131745],[123,-12,70,0.380673096330931],[123,-12,71,0.3839209316409477],[123,-12,72,0.38743562604180487],[123,-12,73,0.3912303200352377],[123,-12,74,0.3953102604891301],[123,-12,75,0.3996725775813574],[123,-12,76,0.40430625231405865],[123,-12,77,0.40919227369144057],[123,-12,78,0.4143039843073263],[123,-12,79,0.4196076127560132],[123,-11,64,0.36170036698375496],[123,-11,65,0.3637853713386288],[123,-11,66,0.36598854533019576],[123,-11,67,0.3683245666744559],[123,-11,68,0.3708230816538521],[123,-11,69,0.3735216373892454],[123,-11,70,0.37645287018048007],[123,-11,71,0.3796432604312974],[123,-11,72,0.3831123364679116],[123,-11,73,0.38687207238675575],[123,-11,74,0.39092648003543295],[123,-11,75,0.39527139485337864],[123,-11,76,0.39989445492544384],[123,-11,77,0.4047752722362083],[123,-11,78,0.4098857947597942],[123,-11,79,0.4151908576821069],[123,-10,64,0.35799072232670903],[123,-10,65,0.35992963660695954],[123,-10,66,0.3620062964119653],[123,-10,67,0.3642338017731358],[123,-10,68,0.36663994374331144],[123,-10,69,0.3692610051534524],[123,-10,70,0.37212831352886827],[123,-10,71,0.37526698510972484],[123,-10,72,0.3786951386740052],[123,-10,73,0.38242330476140135],[123,-10,74,0.3864540303160432],[123,-10,75,0.3907816783828009],[123,-10,76,0.3953924221136963],[123,-10,77,0.4002644319714457],[123,-10,78,0.4053682546608631],[123,-10,79,0.41066738197862923],[123,-9,64,0.3541428881545179],[123,-9,65,0.35594063942253806],[123,-9,66,0.35789625972210276],[123,-9,67,0.36002111044195384],[123,-9,68,0.3623408290622727],[123,-9,69,0.3648900710767498],[123,-9,70,0.36769850290055567],[123,-9,71,0.3707895480197546],[123,-9,72,0.37417962094128543],[123,-9,73,0.37787755623519115],[123,-9,74,0.3818842325979985],[123,-9,75,0.3861923914806741],[123,-9,76,0.3907866494448056],[123,-9,77,0.3956437030402986],[123,-9,78,0.400732724641524],[123,-9,79,0.4060159473393121],[123,-8,64,0.3501609768674578],[123,-8,65,0.35182242035604383],[123,-8,66,0.3536620417925103],[123,-8,67,0.3556893036920099],[123,-8,68,0.3579274187228378],[123,-8,69,0.36040908470055777],[123,-8,70,0.36316198764473],[123,-8,71,0.36620756327671433],[123,-8,72,0.3695602613541013],[123,-8,73,0.37322700302012873],[123,-8,74,0.3772068310069216],[123,-8,75,0.38149075214721967],[123,-8,76,0.3860617712714702],[123,-8,77,0.3908951151994418],[123,-8,78,0.39595864518248786],[123,-8,79,0.40121345581697243],[123,-7,64,0.34604917715798245],[123,-7,65,0.3475789332623602],[123,-7,66,0.34930698033860097],[123,-7,67,0.3512407259217149],[123,-7,68,0.35340072142097806],[123,-7,69,0.35581741944883694],[123,-7,70,0.35851624947757565],[123,-7,71,0.3615164076695365],[123,-7,72,0.36483016165878457],[123,-7,73,0.36846234446369175],[123,-7,74,0.3724100372801008],[123,-7,75,0.3766624405256338],[123,-7,76,0.3812009321336113],[123,-7,77,0.3859993117335877],[123,-7,78,0.39102422900927297],[123,-7,79,0.396235794196265],[123,-6,64,0.3418109509090408],[123,-6,65,0.3432132682409892],[123,-6,66,0.3448334099517907],[123,-6,67,0.346676580415311],[123,-6,68,0.3487604750281545],[123,-6,69,0.3511130652469373],[123,-6,70,0.35375729939930095],[123,-6,71,0.35670993323317096],[123,-6,72,0.35998088474039774],[123,-6,73,0.3635727724305803],[123,-6,74,0.36748063671837206],[123,-6,75,0.3716918437173847],[123,-6,76,0.37618617037114677],[123,-6,77,0.38093606950000763],[123,-6,78,0.38590711300693614],[123,-6,79,0.3910586111673881],[123,-5,64,0.33744841770782946],[123,-5,65,0.33872705915778606],[123,-5,66,0.34024210766753954],[123,-5,67,0.34199642815762543],[123,-5,68,0.3440047128078506],[123,-5,69,0.34629227472435803],[123,-5,70,0.34887941469798506],[123,-5,71,0.35178030395077614],[123,-5,72,0.3550023979004123],[123,-5,73,0.35854602595416285],[123,-5,74,0.3624041569139075],[123,-5,75,0.3665623392163016],[123,-5,76,0.37099881488263736],[123,-5,77,0.3756848057148518],[123,-5,78,0.38058496995189983],[123,-5,79,0.3856580272967124],[123,-4,64,0.3329619310365966],[123,-4,65,0.33412007967964336],[123,-4,66,0.33553192222463823],[123,-4,67,0.3371978636168157],[123,-4,68,0.33912949771381695],[123,-4,69,0.3413493662296931],[123,-4,70,0.3438750190060349],[123,-4,71,0.3467179592565362],[123,-4,72,0.34988312428183693],[123,-4,73,0.3533685331547648],[123,-4,74,0.35716510088194653],[123,-4,75,0.36125661820664634],[123,-4,76,0.365619895884872],[123,-4,77,0.3702250719455596],[123,-4,78,0.37503608014035944],[123,-4,79,0.3800112775013719],[123,-3,64,0.3283498504995005],[123,-3,65,0.32939003206995277],[123,-3,66,0.33069959112089137],[123,-3,67,0.33227637142361316],[123,-3,68,0.33412882848478437],[123,-3,69,0.33627668711909353],[123,-3,70,0.33873470857721616],[123,-3,71,0.3415117071754835],[123,-3,72,0.3446101049117767],[123,-3,73,0.3480256424983468],[123,-3,74,0.35174724624939346],[123,-3,75,0.35575704993992346],[123,-3,76,0.36003057043959014],[123,-3,77,0.36453703562404255],[123,-3,78,0.3692398627809428],[123,-3,79,0.37409728546025217],[123,-2,64,0.32360851467012336],[123,-2,65,0.3245325332187466],[123,-2,66,0.3257397497918628],[123,-2,67,0.3272253680871723],[123,-2,68,0.3289947214467023],[123,-2,69,0.33106474095526117],[123,-2,70,0.3334474281021032],[123,-2,71,0.3361489500558184],[123,-2,72,0.3391692739150763],[123,-2,73,0.3425019455130401],[123,-2,74,0.3461340121535245],[123,-2,75,0.3500460883585662],[123,-2,76,0.3542125634172387],[123,-2,77,0.3586019492472449],[123,-2,78,0.36317736681804125],[123,-2,79,0.3678971691387384],[123,-1,64,0.3187324192890513],[123,-1,65,0.3195413025283511],[123,-1,66,0.32064513738394684],[123,-1,67,0.3220364330252116],[123,-1,68,0.32371747205946616],[123,-1,69,0.3257024823637507],[123,-1,70,0.32800079946910626],[123,-1,71,0.3306160459139768],[123,-1,72,0.3335458494890499],[123,-1,73,0.33678169308540706],[123,-1,74,0.34030889547327703],[123,-1,75,0.3441067220658819],[123,-1,76,0.3481486244585694],[123,-1,77,0.3524026072804038],[123,-1,78,0.3568317206574534],[123,-1,79,0.3613946763655939],[123,0,64,0.31371460560399617],[123,0,65,0.314408556342356],[123,0,66,0.31540700366009083],[123,0,67,0.3166997332493055],[123,0,68,0.3182861003005811],[123,0,69,0.3201777833375472],[123,0,70,0.3223816069077621],[123,0,71,0.3248988084244002],[123,0,72,0.3277248432202175],[123,0,73,0.3308493074256576],[123,0,74,0.3342559779569098],[123,0,75,0.3379229686546753],[123,0,76,0.34182300137770655],[123,0,77,0.3459237906293551],[123,0,78,0.35018854008401074],[123,0,79,0.3545765491845925],[123,1,64,0.3085472615540039],[123,1,65,0.3091256108896545],[123,1,66,0.31001571847732146],[123,1,67,0.3112046427906438],[123,1,68,0.3126889807905676],[123,1,69,0.3144780718991319],[123,1,70,0.31657643962215964],[123,1,71,0.3189831470608759],[123,1,72,0.32169168985157925],[123,1,73,0.3246899926129509],[123,1,74,0.3279605081546445],[123,1,75,0.33148041848509413],[123,1,76,0.3352219364488294],[123,1,77,0.33915270662629354],[123,1,78,0.3432363039455825],[123,1,79,0.34743282828652716],[123,2,64,0.30322253763704626],[123,2,65,0.3036836944108012],[123,2,66,0.3044615839072207],[123,2,67,0.30554055684745235],[123,2,68,0.30691465801927426],[123,2,69,0.30859114433055307],[123,2,70,0.3105724944472439],[123,2,71,0.3128558517035696],[123,2,72,0.31543300403449603],[123,2,73,0.31829045288422564],[123,2,74,0.32140957032140527],[123,2,75,0.3247668434062614],[123,2,76,0.32833420467706664],[123,2,77,0.33207944745525636],[123,2,78,0.33596672451326604],[123,2,79,0.33995712850733584],[123,3,64,0.2977336065272975],[123,3,65,0.29807500456799413],[123,3,66,0.29873588921648464],[123,3,67,0.29969794223711255],[123,3,68,0.3009528869086289],[123,3,69,0.3025061870030805],[123,3,70,0.3043585674093054],[123,3,71,0.3065055404688467],[123,3,72,0.3089374697604952],[123,3,73,0.31163970846347466],[123,3,74,0.31459281151609303],[123,3,75,0.31777282063153456],[123,3,76,0.3211516210845396],[123,3,77,0.324697369043776],[123,3,78,0.32837498809765137],[123,3,79,0.3321467335064165],[123,4,64,0.2920759439748036],[123,4,65,0.29229398110640986],[123,4,66,0.29283217332874273],[123,4,67,0.29366958558283884],[123,4,68,0.2947958591640145],[123,4,69,0.29621496970035016],[123,4,70,0.2979262001079327],[123,4,71,0.2999237433916421],[123,4,72,0.3021968445521082],[123,4,73,0.30473000318143995],[123,4,74,0.3075032359597322],[123,4,75,0.3104923981388411],[123,4,76,0.31366956298104953],[123,4,77,0.3170034580096001],[123,4,78,0.3204599568282787],[123,4,79,0.32400262517829403],[123,5,64,0.2862488364601415],[123,5,65,0.28633879975724297],[123,5,66,0.28674770140424344],[123,5,67,0.28745204659896556],[123,5,68,0.2884396235323511],[123,5,69,0.28971321928409205],[123,5,70,0.2912709904301982],[123,5,71,0.2931061320215881],[123,5,72,0.2952070888766686],[123,5,73,0.2975578145744413],[123,5,74,0.30013807736472803],[123,5,75,0.30292381211457087],[123,5,76,0.3058875173183676],[123,5,77,0.30899869611519487],[123,5,78,0.3122243401824871],[123,5,79,0.31552945531047166],[123,6,64,0.28025712477372744],[123,6,65,0.28021309780457593],[123,6,66,0.2804851667641405],[123,6,67,0.28104732806828153],[123,6,68,0.28188571147432145],[123,6,69,0.2830021846290726],[123,6,70,0.28439407741701606],[123,6,71,0.2860539031019127],[123,6,72,0.28796962675178983],[123,6,73,0.2901249696897088],[123,6,74,0.2924997492018261],[123,6,75,0.29507025266203973],[123,6,76,0.2978096451657182],[123,6,77,0.3006884097047462],[123,6,78,0.30367481886464714],[123,6,79,0.3067354369812955],[123,7,64,0.2741156294500562],[123,7,65,0.2739307155952144],[123,7,66,0.2740576895613229],[123,7,67,0.2744681037516818],[123,7,68,0.2751465873738496],[123,7,69,0.2760943074269602],[123,7,70,0.2773080308354532],[123,7,71,0.27877988104399154],[123,7,72,0.2804976483779543],[123,7,73,0.28244512639719005],[123,7,74,0.28460247350060247],[123,7,75,0.28694659898877223],[123,7,76,0.28945157274620853],[123,7,77,0.29208905766492205],[123,7,78,0.2948287638989015],[123,7,79,0.29763892401394737],[123,8,64,0.2678550133453404],[123,8,65,0.26752288880145164],[123,8,66,0.26749714272840125],[123,8,67,0.2677471026513266],[123,8,68,0.2682561123106793],[123,8,69,0.26902482886915674],[123,8,70,0.27004968009467134],[123,8,71,0.2713226437407303],[123,8,72,0.27283158689270937],[123,8,73,0.27456062278337906],[123,8,74,0.27649048436953905],[123,8,75,0.2785989139298491],[123,8,76,0.2808610679163035],[123,8,77,0.2832499362690418],[123,8,78,0.2857367753882913],[123,8,79,0.2882915539471661],[123,9,64,0.26150459754807814],[123,9,65,0.2610200324258994],[123,9,66,0.26083508108295245],[123,9,67,0.2609172322514233],[123,9,68,0.26124883066779],[123,9,69,0.2618301936031331],[123,9,70,0.2626575933923189],[123,9,71,0.2637230526337552],[123,9,72,0.26501470333516064],[123,9,73,0.26651715623458755],[123,9,74,0.2682118796271719],[123,9,75,0.2700775870123081],[123,9,76,0.2720906328636561],[123,9,77,0.274225415816235],[123,9,78,0.2764547885626604],[123,9,79,0.27875047375314516],[123,10,64,0.25508919650503475],[123,10,65,0.25444810423021336],[123,10,66,0.2540986914234394],[123,10,67,0.2540071220004161],[123,10,68,0.2541550774096262],[123,10,69,0.25454267926502283],[123,10,70,0.2551661855042033],[123,10,71,0.25601779965511234],[123,10,72,0.25708604421765785],[123,10,73,0.25835613786321054],[123,10,74,0.25981037582200195],[123,10,75,0.2614285128266898],[123,10,76,0.26318814798150514],[123,10,77,0.26506511093096063],[123,10,78,0.26703384871178265],[123,10,79,0.26906781268519564],[123,11,64,0.2486316323503648],[123,11,65,0.24783111537143554],[123,11,66,0.24731327781386736],[123,11,67,0.2470435610735377],[123,11,68,0.24700334525808001],[123,11,69,0.24719266869774686],[123,11,70,0.24760786995799133],[123,11,71,0.24824141418045806],[123,11,72,0.24908227861697976],[123,11,73,0.25011633624076063],[123,11,74,0.2513267368423811],[123,11,75,0.25269428502934527],[123,11,76,0.25419781456130075],[123,11,77,0.25581455846920714],[123,11,78,0.25752051442722523],[123,11,79,0.2592908048694516],[123,12,64,0.24215555404305883],[123,12,65,0.24119394167840902],[123,12,66,0.24050504092040884],[123,12,67,0.24005422093025486],[123,12,68,0.2398229245870644],[123,12,69,0.23981117993477502],[123,12,70,0.2400154511832779],[123,12,71,0.24042848946216006],[123,12,72,0.24103973175011892],[123,12,73,0.24183569239895417],[123,12,74,0.24280034669338027],[123,12,75,0.24391550591147354],[123,12,76,0.24516118337590442],[123,12,77,0.2465159510135396],[123,12,78,0.2479572859720483],[123,12,79,0.24946190687516814],[123,13,64,0.23568856699266233],[123,13,65,0.23456544113437067],[123,13,66,0.2337041568115965],[123,13,67,0.23307066786199596],[123,13,68,0.23264682093863023],[123,13,69,0.2324326584775342],[123,13,70,0.2324247607065934],[123,13,71,0.23261613206867499],[123,13,72,0.2329966179409745],[123,13,73,0.23355330831488297],[123,13,74,0.2342709279060575],[123,13,75,0.23513221220103586],[123,13,76,0.23611826898464802],[123,13,77,0.23720892493184023],[123,13,78,0.23838305688977396],[123,13,79,0.23961890751941634],[123,14,64,0.22926568026028446],[123,14,65,0.22798188464492344],[123,14,66,0.22694816223301353],[123,14,67,0.2261316724013909],[123,14,68,0.22551495681320363],[123,14,69,0.22509803821709767],[123,14,70,0.22487754335497664],[123,14,71,0.22484663982236275],[123,14,72,0.22499547791703145],[123,14,73,0.22531161318957443],[123,14,74,0.22578040918877254],[123,14,75,0.22638541994618125],[123,14,76,0.22710875179654696],[123,14,77,0.2279314041836799],[123,14,78,0.22883358915652233],[123,14,79,0.22979502931545737],[123,15,64,0.22293195368773136],[123,15,65,0.22148940395144215],[123,15,66,0.22028410572877458],[123,15,67,0.21928497092498855],[123,15,68,0.21847546185118918],[123,15,69,0.2178554934412496],[123,15,70,0.21742162335803303],[123,15,71,0.21716705583939838],[123,15,72,0.21708211753431783],[123,15,73,0.2171547067513511],[123,15,74,0.21737071563206659],[123,15,75,0.2177144248310985],[123,15,76,0.21816887035371627],[123,15,77,0.21871618227102282],[123,15,78,0.21933789510338422],[123,15,79,0.22001522973232474],[123,16,64,0.21672821213145638],[123,16,65,0.2151291709418817],[123,16,66,0.21375308047668568],[123,16,67,0.21257107397140867],[123,16,68,0.21156772459574713],[123,16,69,0.21074275589343627],[123,16,70,0.2100925672486052],[123,16,71,0.20961031766899388],[123,16,72,0.209286441338077],[123,16,73,0.20910912837037507],[123,16,74,0.20906477030280432],[123,16,75,0.2091383699439983],[123,16,76,0.20931391529202645],[123,16,77,0.20957471731864435],[123,16,78,0.20990371150618703],[123,16,79,0.2102837231091768],[123,17,64,0.21067207496925552],[123,17,65,0.20891898884169882],[123,17,66,0.2073727568562577],[123,17,67,0.20600712720312067],[123,17,68,0.2048079486950843],[123,17,69,0.20377469062358478],[123,17,70,0.20290354500440919],[123,17,71,0.2021875988229225],[123,17,72,0.20161739139592486],[123,17,73,0.20118142805455086],[123,17,74,0.2008666497052869],[123,17,75,0.20065885793701996],[123,17,76,0.20054309545149998],[123,17,77,0.2005039817023628],[123,17,78,0.20052600373478804],[123,17,79,0.20059376232149453],[123,18,64,0.20475883879732268],[123,18,65,0.2028543393128765],[123,18,66,0.20113866343767567],[123,18,67,0.19958849305556323],[123,18,68,0.19819109186070755],[123,18,69,0.1969456329575817],[123,18,70,0.19584808649165192],[123,18,71,0.19489148499022987],[123,18,72,0.1940665216892181],[123,18,73,0.19336209586822622],[123,18,74,0.1927658047815793],[123,18,75,0.19226438190645942],[123,18,76,0.19184408136092854],[123,18,77,0.1914910084733364],[123,18,78,0.1911913966113525],[123,18,79,0.1909318305008813],[123,19,64,0.19603136210652125],[123,19,65,0.19471616936373745],[123,19,66,0.19340924928701395],[123,19,67,0.19213471975653557],[123,19,68,0.19090610465983787],[123,19,69,0.18972528816037176],[123,19,70,0.188595754991684],[123,19,71,0.187522313122752],[123,19,72,0.18651053826579653],[123,19,73,0.18556627918836813],[123,19,74,0.18469522420314946],[123,19,75,0.1839025290533893],[123,19,76,0.18319250625777708],[123,19,77,0.18251413478238668],[123,19,78,0.1818791490894179],[123,19,79,0.18127834904354775],[123,20,64,0.18484888191071697],[123,20,65,0.1833661194847554],[123,20,66,0.18191049384711858],[123,20,67,0.18050295151664011],[123,20,68,0.17915561580892075],[123,20,69,0.17787094020020952],[123,20,70,0.1766528612003357],[123,20,71,0.17550642591695875],[123,20,72,0.1744372012417406],[123,20,73,0.173450753365477],[123,20,74,0.1725521979498534],[123,20,75,0.1717458211046355],[123,20,76,0.17103477114265114],[123,20,77,0.170420820912535],[123,20,78,0.1699042003437804],[123,20,79,0.16948349867974938],[123,21,64,0.1733649536878388],[123,21,65,0.1717110438989988],[123,21,66,0.17010456204150834],[123,21,67,0.1685631831182736],[123,21,68,0.16709756610833693],[123,21,69,0.1657107131340908],[123,21,70,0.16440695110132877],[123,21,71,0.1631914684148225],[123,21,72,0.16206969503996954],[123,21,73,0.16104676217231584],[123,21,74,0.1601270417892872],[123,21,75,0.15931376615689563],[123,21,76,0.15860872716604904],[123,21,77,0.1580120551802536],[123,21,78,0.15752207689204345],[123,21,79,0.1571352515091723],[123,22,64,0.16164467939775898],[123,22,65,0.1598158972907448],[123,22,66,0.15805594372252602],[123,22,67,0.1563791946984572],[123,22,68,0.15479480775872137],[123,22,69,0.15330629446717942],[123,22,70,0.15191829399877363],[123,22,71,0.15063602545988297],[123,22,72,0.14946464591642114],[123,22,73,0.1484086968619414],[123,22,74,0.1474716393400546],[123,22,75,0.14665547771231485],[123,22,76,0.14596047184406152],[123,22,77,0.1453849372685999],[123,22,78,0.14492513268782484],[123,22,79,0.14457523397490224],[123,23,64,0.1497590085870099],[123,23,65,0.14775153644748829],[123,23,66,0.1458350258797692],[123,23,67,0.14402059728126168],[123,23,68,0.1423158961698606],[123,23,69,0.14072488699573185],[123,23,70,0.13925242977287708],[123,23,71,0.13790365631901672],[123,23,72,0.1366833138799956],[123,23,73,0.13559520539506723],[123,23,74,0.1346417265519122],[123,23,75,0.13382349953709774],[123,23,76,0.1331391031501144],[123,23,77,0.13258489871934218],[123,23,78,0.13215495103980998],[123,23,79,0.13184104334549404],[123,24,64,0.1377818699752113],[123,24,65,0.13559185888140127],[123,24,66,0.13351525837108988],[123,24,67,0.13156004494141404],[123,24,68,0.12973236761570398],[123,24,69,0.128036571291239],[123,24,70,0.126477635264168],[123,24,71,0.12506048324566602],[123,24,72,0.1237893204469132],[123,24,73,0.12266707470913042],[123,24,74,0.12169494175820512],[123,24,75,0.12087203440231556],[123,24,76,0.12019513523648596],[123,24,77,0.11965855217253146],[123,24,78,0.1192540758800712],[123,24,79,0.11897103800443777],[123,25,64,0.1257874243475019],[123,25,65,0.12341105981997284],[123,25,66,0.12117043382322336],[123,25,67,0.11907055552402038],[123,25,68,0.11711611835104933],[123,25,69,0.11531176107865437],[123,25,70,0.11366247357102126],[123,25,71,0.11217285166766468],[123,25,72,0.11084643556724877],[123,25,73,0.109685158720105],[123,25,74,0.10868890723750788],[123,25,75,0.10785518954906216],[123,25,76,0.10717891577051167],[123,25,77,0.1066522859854073],[123,25,78,0.10626478639922549],[123,25,79,0.10600329209406707],[123,26,64,0.11384744049241503],[123,26,65,0.11128100915274353],[123,26,66,0.10887208311412111],[123,26,67,0.10662294113304165],[123,26,68,0.10453688617846041],[123,26,69,0.10261875225067969],[123,26,70,0.10087342673652233],[123,26,71,0.09930506219437263],[123,26,72,0.09791642362614912],[123,26,73,0.09670835166140385],[123,26,74,0.09567934158979192],[123,26,75,0.09482523788853969],[123,26,76,0.09413904361055976],[123,26,77,0.0936108437291309],[123,26,78,0.09322784128059007],[123,26,79,0.09297450490773446],[123,27,64,0.10202879612013506],[123,27,65,0.09926875012145064],[123,27,66,0.09668698805236048],[123,27,67,0.0942833498050005],[123,27,68,0.09205983565571324],[123,27,69,0.09002136645678065],[123,27,70,0.08817261248919903],[123,27,71,0.0865171748147858],[123,27,72,0.08505694858428448],[123,27,73,0.0837916065079836],[123,27,74,0.08271820235468866],[123,27,75,0.08183089404529628],[123,27,76,0.08112078561712698],[123,27,77,0.08057588705732237],[123,27,78,0.08018119074211683],[123,27,79,0.0799188629742124],[123,28,64,0.09039110593110228],[123,28,65,0.0874341217812336],[123,28,66,0.0846748131123535],[123,28,67,0.08211092002817652],[123,28,68,0.07974324837535818],[123,28,69,0.07757669044117863],[123,28,70,0.07561558592858215],[123,28,71,0.0738628858719946],[123,28,72,0.07231953851943031],[123,28,73,0.07098399841113996],[123,28,74,0.0698518584533425],[123,28,75,0.06891560447907848],[123,28,76,0.0681644914919996],[123,28,77,0.06758454050577925],[123,28,78,0.06715865462600844],[123,28,79,0.06686685277355857],[123,29,64,0.07898447927087603],[123,29,65,0.07582750753219862],[123,29,66,0.07288585835895721],[123,29,67,0.07015555004285201],[123,29,68,0.06763632002061123],[123,29,69,0.06533291257062554],[123,29,70,0.06324922730339125],[123,29,71,0.06138747864270276],[123,29,72,0.059747610057075656],[123,29,73,0.05832683327436926],[123,29,74,0.05711929221548398],[123,29,75,0.05611585107273263],[123,29,76,0.05530400565916543],[123,29,77,0.0546679168696042],[123,29,78,0.05418856482672072],[123,29,79,0.05384402203683126],[123,30,64,0.06784742679512165],[123,30,65,0.06448772974899196],[123,30,66,0.061358954157103955],[123,30,67,0.05845580304594815],[123,30,68,0.05577708580623546],[123,30,69,0.05332727860357283],[123,30,70,0.05110973833594306],[123,30,71,0.04912587033893],[123,30,72,0.047374575835736545],[123,30,73,0.04585182491379711],[123,30,74,0.04455035470715448],[123,30,75,0.04345949215286939],[123,30,76,0.04256510039030295],[123,30,77,0.04184964758704636],[123,30,78,0.041292396708913374],[123,30,79,0.040869714504432254],[123,31,64,0.05700934731048016],[123,31,65,0.05344471307370802],[123,31,66,0.050124310518753594],[123,31,67,0.0470419500898655],[123,31,68,0.044195663450035366],[123,31,69,0.04158954139314631],[123,31,70,0.039226305300111286],[123,31,71,0.037106495004093874],[123,31,72,0.03522795328059261],[123,31,73,0.0335854352063385],[123,31,74,0.03217034201658306],[123,31,75,0.030970578781834457],[123,31,76,0.029970534928440613],[123,31,77,0.029151186345529594],[123,31,78,0.028490317558044077],[123,31,79,0.027962862202625137],[123,32,64,0.04649517260107357],[123,32,65,0.042724369627748573],[123,32,66,0.039208650397004816],[123,32,67,0.03594135679272223],[123,32,68,0.032919897498197265],[123,32,69,0.03014786709789926],[123,32,70,0.02762727136788016],[123,32,71,0.025357746094738044],[123,32,72,0.023336081231730872],[123,32,73,0.021555868147755425],[123,32,74,0.020007269557221565],[123,32,75,0.01867691141551049],[123,32,76,0.017547895773470983],[123,32,77,0.01659993330817029],[123,32,78,0.01580959399023929],[123,32,79,0.015150674111248381],[123,33,64,0.03631532839732853],[123,33,65,0.03233815060809786],[123,33,66,0.028624361722159493],[123,33,67,0.02516724387073499],[123,33,68,0.021963735977034427],[123,33,69,0.019016836431600848],[123,33,70,0.01632777175232934],[123,33,71,0.013895255539739597],[123,33,72,0.011715053566891634],[123,33,73,0.009779669194943587],[123,33,74,0.008078148669662761],[123,33,75,0.006596005558478082],[123,33,76,0.005315263304168835],[123,33,77,0.004214614602855105],[123,33,78,0.003269696064941069],[123,33,79,0.002453476388614836],[123,34,64,0.026462775364271215],[123,34,65,0.022279995415424338],[123,34,66,0.01836636118278161],[123,34,67,0.014715469758589176],[123,34,68,0.011323935142792238],[123,34,69,0.00819407532404902],[123,34,70,0.005326294582490404],[123,34,71,0.00271838962622894],[123,34,72,3.6515533945576106E-4],[123,34,73,-0.0017418927285116157],[123,34,74,-0.0036146796011723315],[123,34,75,-0.005268616593821966],[123,34,76,-0.00672253254152387],[123,34,77,-0.00799849182292965],[123,34,78,-0.009121500706423848],[123,34,79,-0.010119103764905926],[123,35,64,0.016911640285197864],[123,35,65,0.012524931088081118],[123,35,66,0.008410666471001488],[123,35,67,0.004563077635057623],[123,35,68,9.78582202331964E-4],[123,35,69,-0.002341245318039066],[123,35,70,-0.005396840423160697],[123,35,71,-0.008191290983940624],[123,35,72,-0.010730692873659523],[123,35,73,-0.013024393034019907],[123,35,74,-0.015085120459782641],[123,35,75,-0.016929005858209778],[123,35,76,-0.01857549100257716],[123,35,77,-0.02004712904726436],[123,35,78,-0.02136927730115459],[123,35,79,-0.022569684165866404],[123,36,64,0.007616003791774746],[123,36,65,0.003027824017282908],[123,36,66,-0.0012868851000799458],[123,36,67,-0.005333018924193703],[123,36,68,-0.009114253003461652],[123,36,69,-0.012629792457264508],[123,36,70,-0.01588089928379254],[123,36,71,-0.01887148231485923],[123,36,72,-0.021608418270086575],[123,36,73,-0.024101764744022536],[123,36,74,-0.02636486560972231],[123,36,75,-0.028414349585798516],[123,36,76,-0.030270022965582146],[123,36,77,-0.03195465774418446],[123,36,78,-0.03349367659776141],[123,36,79,-0.034914736368832154],[123,37,64,-0.0014911503984216187],[123,37,65,-0.006277711168876557],[123,37,66,-0.01079176684247921],[123,37,67,-0.015037207080261263],[123,37,68,-0.019017733003150405],[123,37,69,-0.022733332323685598],[123,37,70,-0.026186043382572386],[123,37,71,-0.029380495923500286],[123,37,72,-0.03232420393842404],[123,37,73,-0.035027754925524346],[123,37,74,-0.03750489603421354],[123,37,75,-0.039772517823640476],[123,37,76,-0.04185053660171377],[123,37,77,-0.043761676538124156],[123,37,78,-0.04553115295312778],[123,37,79,-0.04718625837373613],[123,38,64,-0.010496240995825443],[123,38,65,-0.015477641720418855],[123,38,66,-0.020189128441395466],[123,38,67,-0.02463358355739953],[123,38,68,-0.02881471167516529],[123,38,69,-0.0327332487072625],[123,38,70,-0.036391917906742566],[123,38,71,-0.03979592953171445],[123,38,72,-0.042953254473402105],[123,38,73,-0.045874798378109496],[123,38,74,-0.048574476715504515],[123,38,75,-0.051069191487650475],[123,38,76,-0.05337871050405246],[123,38,77,-0.0555254503651469],[123,38,78,-0.05753416449613664],[123,38,79,-0.05502714853254702],[123,39,64,-0.019448681249787075],[123,39,65,-0.024620710094757657],[123,39,66,-0.029526816313010087],[123,39,67,-0.034168887415942525],[123,39,68,-0.03855062950799332],[123,39,69,-0.042673503623361586],[123,39,70,-0.04654083193752795],[123,39,71,-0.05015826652949119],[123,39,72,-0.053534054597361984],[123,39,73,-0.056679207616642024],[123,39,74,-0.05960757485739017],[123,39,75,-0.062335821910384163],[123,39,76,-0.06399572722231656],[123,39,77,-0.05846396152381353],[123,39,78,-0.05292200672538298],[123,39,79,-0.04740040694094899],[123,40,64,-0.0283514511055995],[123,40,65,-0.033708975042330225],[123,40,66,-0.03880588906355289],[123,40,67,-0.0436429986826161],[123,40,68,-0.0482240015941879],[123,40,69,-0.052551116642683124],[123,40,70,-0.05662822955392938],[123,40,71,-0.06046133995191007],[123,40,72,-0.06405882942570142],[123,40,73,-0.06743163631738579],[123,40,74,-0.06685688231130288],[123,40,75,-0.061541920880453065],[123,40,76,-0.05616729037442315],[123,40,77,-0.05075959089355456],[123,40,78,-0.045347194076250805],[123,40,79,-0.03995987977868066],[123,41,64,-0.037208446431907766],[123,41,65,-0.042745582190105366],[123,41,66,-0.048028606841243285],[123,41,67,-0.053057082307704354],[123,41,68,-0.05783468515949929],[123,41,69,-0.062364471669709945],[123,41,70,-0.06665090103503662],[123,41,71,-0.07070026858613575],[123,41,72,-0.06908322299085698],[123,41,73,-0.06406528486169161],[123,41,74,-0.058948575894351284],[123,41,75,-0.0537550014420931],[123,41,76,-0.0485085247535391],[123,41,77,-0.04323500380941539],[123,41,78,-0.037961940663202035],[123,41,79,-0.03271814457804806],[123,42,64,-0.046023995483243645],[123,42,65,-0.05173433642788816],[123,42,66,-0.057198068747690706],[123,42,67,-0.062413303023376956],[123,42,68,-0.06738368546970108],[123,42,69,-0.07211322669392202],[123,42,70,-0.07056621560885606],[123,42,71,-0.06589988229307972],[123,42,72,-0.061106100866851476],[123,42,73,-0.056202412336604654],[123,42,74,-0.05120822823687675],[123,42,75,-0.04614487342714448],[123,42,76,-0.041035540592889504],[123,42,77,-0.03590515730110337],[123,42,78,-0.030780166646182577],[123,42,79,-0.025688222691555466],[123,43,64,-0.05479983834444423],[123,43,65,-0.06067672360551554],[123,43,66,-0.06631529717653009],[123,43,67,-0.07171199030030846],[123,43,68,-0.07125775968418997],[123,43,69,-0.06697651152214008],[123,43,70,-0.06254655328658333],[123,43,71,-0.0579826417235244],[123,43,72,-0.05330070328151469],[123,43,73,-0.04851808941350441],[123,43,74,-0.0436537433137131],[123,43,75,-0.03872827843014083],[123,43,76,-0.033763969306375666],[123,43,77,-0.027715456694116576],[123,43,78,-0.021573138339839315],[123,43,79,-0.01549559886571428],[123,44,64,-0.06353183647424536],[123,44,65,-0.06956866634158826],[123,44,66,-0.07113944403404579],[123,44,67,-0.06726964477418489],[123,44,68,-0.06323069453037694],[123,44,69,-0.059037518833639155],[123,44,70,-0.054705003701594396],[123,44,71,-0.050248423771140464],[123,44,72,-0.045246990811375475],[123,44,73,-0.03901682472881402],[123,44,74,-0.03275625942306075],[123,44,75,-0.026482705555074947],[123,44,76,-0.02021481086318315],[123,44,77,-0.013972410675346127],[123,44,78,-0.007776391891749241],[123,44,79,-0.0016484714537742546],[123,45,64,-0.07019641355905282],[123,45,65,-0.06675326204133346],[123,45,66,-0.06313403480272037],[123,45,67,-0.059340290633735394],[123,45,68,-0.05538455543507408],[123,45,69,-0.05057031727638834],[123,45,70,-0.044418859804657825],[123,45,71,-0.038199772411415145],[123,45,72,-0.03192770289018069],[123,45,73,-0.025617784105517932],[123,45,74,-0.019285895373123186],[123,45,75,-0.012948835164567789],[123,45,76,-0.006624405467533608],[123,45,77,-3.314083392833046E-4],[123,45,78,0.0059104446135324114],[123,45,79,0.01208070891582276],[123,46,64,-0.06222503266432264],[123,46,65,-0.058845966054455454],[123,46,66,-0.055300053502625506],[123,46,67,-0.04987399375589621],[123,46,68,-0.043785378975200205],[123,46,69,-0.03760656759915563],[123,46,70,-0.03135378099469424],[123,46,71,-0.025042419566909505],[123,46,72,-0.018687554285287813],[123,46,73,-0.012304329362415347],[123,46,74,-0.005908275834934053],[123,46,75,4.844639708469602E-4],[123,46,76,0.006857000883449493],[123,46,77,0.013191651823923367],[123,46,78,0.019469980619212734],[123,46,79,0.025672925888095284],[123,47,64,-0.05441179369963038],[123,47,65,-0.04927823991970484],[123,47,66,-0.043295811212804194],[123,47,67,-0.03719818746229521],[123,47,68,-0.030997896418748228],[123,47,69,-0.024714551589818314],[123,47,70,-0.018365938390840872],[123,47,71,-0.011968459072203444],[123,47,72,-0.005537681002050765],[123,47,73,9.112041151946009E-4],[123,47,74,0.007363010477805474],[123,47,75,0.01380227803975854],[123,47,76,0.020213081906838785],[123,47,77,0.026578930988068898],[123,47,78,0.032882755408372946],[123,47,79,0.03910698199660029],[123,48,64,-0.04294373790082436],[123,48,65,-0.03694961800526665],[123,48,66,-0.03085017686145354],[123,48,67,-0.024639980146533583],[123,48,68,-0.01833206935366628],[123,48,69,-0.011948377360241588],[123,48,70,-0.0055084082881261594],[123,48,71,9.70313226606366E-4],[123,48,72,0.007471634431778507],[123,48,73,0.013980256141434992],[123,48,74,0.020481304245477103],[123,48,75,0.02695999134861834],[123,48,76,0.03340136860835961],[123,48,77,0.03979016761947453],[123,48,78,0.046110731980256156],[123,48,79,0.05234703797751799],[123,49,64,-0.030907576572169554],[123,49,65,-0.02479407843087361],[123,49,66,-0.01858154304445571],[123,49,67,-0.012262280584687564],[123,49,68,-0.00584994544605787],[123,49,69,6.310483203867852E-4],[123,49,70,0.007159336878961156],[123,49,71,0.013716153607256176],[123,49,72,0.020284661019913632],[123,49,73,0.02684937220058769],[123,49,74,0.03339566243877179],[123,49,75,0.039909371522707265],[123,49,76,0.04637649690234495],[123,49,77,0.05278297770865133],[123,49,78,0.059114569397272984],[123,49,79,0.06535680857973764],[123,50,64,-0.01909600255711807],[123,50,65,-0.01286741810548588],[123,50,66,-0.006545449161238927],[123,50,67,-1.2016538300252573E-4],[123,50,68,0.0063940696431749044],[123,50,69,0.012970229968091048],[123,50,70,0.01958496957931109],[123,50,71,0.026218166620527047],[123,50,72,0.032852194981585314],[123,50,73,0.039471285624788854],[123,50,74,0.04606097849889125],[123,50,75,0.052607665642333025],[123,50,76,0.05909822583509282],[123,50,77,0.06551975092536387],[123,50,78,0.07185936373296943],[123,50,79,0.0777598961102188],[123,51,64,-0.007556812211450003],[123,51,65,-0.0012174698148047034],[123,51,66,0.0052104369739175115],[123,51,67,0.011739023619794078],[123,51,68,0.01835312536538443],[123,51,69,0.02502300795793819],[123,51,70,0.03172324331665816],[123,51,71,0.038432252136107445],[123,51,72,0.04513151645949346],[123,51,73,0.05180488222033621],[123,51,74,0.0584379527573599],[123,51,75,0.06501757405323971],[123,51,76,0.07153141220079505],[123,51,77,0.07796762336167054],[123,51,78,0.08368869081749196],[123,51,79,0.08895493395062305],[123,52,64,0.0036700489215728774],[123,52,65,0.01011574227807388],[123,52,66,0.016646170832041104],[123,52,67,0.023275539906257154],[123,52,68,0.02998779770612392],[123,52,69,0.036750441867960115],[123,52,70,0.04353588809010762],[123,52,71,0.05032101238234644],[123,52,72,0.05708630698978541],[123,52,73,0.06381512652088348],[123,52,74,0.07049302543432731],[123,52,75,0.07710718778106296],[123,52,76,0.08326715359396293],[123,52,77,0.08893119470948518],[123,52,78,0.09450839093691044],[123,52,79,0.10000174800569618],[123,53,64,0.014552279477585786],[123,53,65,0.021099803266208146],[123,53,66,0.027729339047657817],[123,53,67,0.034457049270253226],[123,53,68,0.04126591739262719],[123,53,69,0.048120651060060506],[123,53,70,0.05499146365338838],[123,53,71,0.061853617459273216],[123,53,72,0.06868652623019927],[123,53,73,0.07542783823731436],[123,53,74,0.08154821813461198],[123,53,75,0.08758159030941094],[123,53,76,0.09353064775949402],[123,53,77,0.09939729385073307],[123,53,78,0.1051829997255349],[123,53,79,0.11088906685599484],[123,54,64,0.023528351761186284],[123,54,65,0.0309637144386308],[123,54,66,0.03824445349603722],[123,54,67,0.045258401736822294],[123,54,68,0.05216235336866197],[123,54,69,0.059043438285264954],[123,54,70,0.06569645443101041],[123,54,71,0.07224192960087603],[123,54,72,0.07869200689063997],[123,54,73,0.08505517807849994],[123,54,74,0.09133706885438111],[123,54,75,0.09754113028085548],[123,54,76,0.10366923557575045],[123,54,77,0.10972218156120672],[123,54,78,0.1157000943689643],[123,54,79,0.12160273922715173],[123,55,64,0.03207113309305565],[123,55,65,0.03960291838735181],[123,55,66,0.04698256482127383],[123,55,67,0.05418037271029508],[123,55,68,0.06120532271807977],[123,55,69,0.0680880661645703],[123,55,70,0.07485272722480633],[123,55,71,0.0815173799090379],[123,55,72,0.08809506440761988],[123,55,73,0.09459471196685584],[123,55,74,0.1010219767324039],[123,55,75,0.10737997326475146],[123,55,76,0.11366991869577973],[123,55,77,0.11989167875438222],[123,55,78,0.1260442171387653],[123,55,79,0.13212594795355198],[123,56,64,0.04061407600586287],[123,56,65,0.048235401617999274],[123,56,66,0.05570577633534175],[123,56,67,0.062993995839717],[123,56,68,0.07011000162788747],[123,56,69,0.07708686729551437],[123,56,70,0.08395063535841887],[123,56,71,0.09072079276049125],[123,56,72,0.09741132932738307],[123,56,73,0.10403170444619776],[123,56,74,0.1105877202891043],[123,56,75,0.1170823001699177],[123,56,76,0.12351617089072922],[123,56,77,0.12988844819847437],[123,56,78,0.13619712472515375],[123,56,79,0.14243946003039717],[123,57,64,0.049137943073603],[123,57,65,0.05684187796400628],[123,57,66,0.06439479819663396],[123,57,67,0.0717642319056636],[123,57,68,0.07896111272468541],[123,57,69,0.08602081964144948],[123,57,70,0.09297124932809796],[123,57,71,0.09983328929612281],[123,57,72,0.10662191286807482],[123,57,73,0.11334718207320771],[123,57,74,0.12001515667695467],[123,57,75,0.1266287078281209],[123,57,76,0.13318823507886238],[123,57,77,0.13969228579871545],[123,57,78,0.14613807626145878],[123,57,79,0.15252191393246645],[123,58,64,0.05761823374236401],[123,58,65,0.06539783064565971],[123,58,66,0.07302517794052242],[123,58,67,0.0804667809271483],[123,58,68,0.08773457945454596],[123,58,69,0.09486611044494311],[123,58,70,0.1018910335819387],[123,58,71,0.10883160139924163],[123,58,72,0.11570378498710025],[123,58,73,0.12251830732552638],[123,58,74,0.12928158235737697],[123,58,75,0.13599655819084752],[123,58,76,0.14266346309484332],[123,58,77,0.14928045321982672],[123,58,78,0.15584416123739514],[123,58,79,0.16235014534406988],[123,59,64,0.06602572060387958],[123,59,65,0.07387404462773907],[123,59,66,0.08156782565344178],[123,59,67,0.0890727910848973],[123,59,68,0.09640188311079533],[123,59,69,0.10359462260570941],[123,59,70,0.1106823167058391],[123,59,71,0.11768852529302898],[123,59,72,0.1246302116141856],[123,59,73,0.1315188002375879],[123,59,74,0.13836114037373767],[123,59,75,0.1451603728670183],[123,59,76,0.1519166994406409],[123,59,77,0.15862805304894081],[123,59,78,0.16529066845436816],[123,59,79,0.1718995524014947],[123,60,64,0.07432703710955167],[123,60,65,0.08223719116546592],[123,60,66,0.08998959148454513],[123,60,67,0.09754942563830099],[123,60,68,0.10493061630504329],[123,60,69,0.11217447269026243],[123,60,70,0.11931381272135254],[123,60,71,0.12637342556793876],[123,60,72,0.13337124146919274],[123,60,73,0.14031940861799572],[123,60,74,0.14722527505548574],[123,60,75,0.1540922738099213],[123,60,76,0.16092070979186127],[123,60,77,0.16770844723123823],[123,60,78,0.17445149670726995],[123,60,79,0.18114450107931024],[123,61,64,0.08248530691729111],[123,61,65,0.09045045470225055],[123,61,66,0.0982538856178592],[123,61,67,0.10586047214692106],[123,61,68,0.11328507846890806],[123,61,69,0.1205705905578759],[123,61,70,0.1277511834272464],[123,61,71,0.1348527795125403],[123,61,72,0.14189423227348],[123,61,73,0.14888841658562582],[123,61,74,0.15584322381187998],[123,61,75,0.16276245972596315],[123,61,76,0.1696466437395051],[123,61,77,0.1764937081594817],[123,61,78,0.1832995964696911],[123,61,79,0.19005875988874282],[123,62,64,0.09046083760783191],[123,62,65,0.09847422504676327],[123,62,66,0.10632136380987843],[123,62,67,0.11396701727296751],[123,62,68,0.1214269368308353],[123,62,69,0.12874536420983831],[123,62,70,0.13595766554725655],[123,62,71,0.1430907856573776],[123,62,72,0.1501644404020126],[123,62,73,0.15719221559913127],[123,62,74,0.1641825703068784],[123,62,75,0.17113974260304507],[123,62,76,0.17806455626065668],[123,62,77,0.18495512699653188],[123,62,78,0.19180746723773814],[123,62,79,0.19861598861076787],[123,63,64,0.09821188422940205],[123,63,65,0.10626686036616073],[123,63,66,0.11415068409636436],[123,63,67,0.12182819283173821],[123,63,68,0.12931595859684866],[123,63,69,0.13665935564937662],[123,63,70,0.14389476852495026],[123,63,71,0.15105004241989933],[123,63,72,0.15814567990398096],[123,63,73,0.16519594393910675],[123,63,74,0.17220986499731425],[123,63,75,0.179192150354739],[123,63,76,0.18614399391964093],[123,63,77,0.1930637852294215],[123,63,78,0.19994771652034],[123,63,79,0.20679028703418795],[123,64,64,0.10569545464066817],[123,64,65,0.1137854928135369],[123,64,66,0.12169930632710839],[123,64,67,0.12940196458907058],[123,64,68,0.13691078567643486],[123,64,69,0.14427205893560702],[123,64,70,0.15152301398955736],[123,64,71,0.15869226771184028],[123,64,72,0.16580102158679824],[123,64,73,0.1728641651665414],[123,64,74,0.17989128338155505],[123,64,75,0.18688756574571114],[123,64,76,0.19385461577814644],[123,64,77,0.20079115924170954],[123,64,78,0.20769365006677465],[123,64,79,0.21455677309004803],[123,65,64,0.11286816981987335],[123,65,65,0.120986890083046],[123,65,66,0.1289243479379941],[123,65,67,0.13664597732794553],[123,65,68,0.14416976558732642],[123,65,69,0.15154271417368445],[123,65,70,0.15880273073829565],[123,65,71,0.16597907345135082],[123,65,72,0.1730935461947499],[123,65,73,0.1801615996690715],[123,65,74,0.18719333614105127],[123,65,75,0.19419441584199112],[123,65,76,0.20116686330933964],[123,65,77,0.20810977224099242],[123,65,78,0.2150199077010057],[123,65,79,0.2218922047762024],[123,66,64,0.11968718044379272],[123,66,65,0.1278283742416001],[123,66,66,0.13578349734710285],[123,66,67,0.14351845760750662],[123,66,68,0.15105183999935695],[123,66,69,0.15843117893658576],[123,66,70,0.16569490676240894],[123,66,71,0.17287279653384366],[123,66,72,0.1799871532567184],[123,66,73,0.18705391088266146],[123,66,74,0.19408363276766993],[123,66,75,0.20108241357593049],[123,66,76,0.20805268089430431],[123,66,77,0.21499389510007955],[123,66,78,0.22190314629356475],[123,66,79,0.2287756473676456],[123,67,64,0.12611114004354068],[123,67,65,0.1342687981815366],[123,67,66,0.14223598535054743],[123,67,67,0.14997917462101784],[123,67,68,0.1575174913557616],[123,67,69,0.16489885758771428],[123,67,70,0.17216209881399389],[123,67,71,0.17933738678201203],[123,67,72,0.18644742614099774],[123,67,73,0.19350854673742982],[123,67,74,0.20053169922862707],[123,67,75,0.20752335197266397],[123,67,76,0.21448628743433265],[123,67,77,0.22142029662381907],[123,67,78,0.22832277035345777],[123,67,79,0.235189186358144],[123,68,64,0.13210123490163675],[123,68,65,0.1402695798934892],[123,68,66,0.14824361474742945],[123,68,67,0.15599045941270373],[123,68,68,0.16352974786397428],[123,68,69,0.17090968882797403],[123,68,70,0.1781693998664765],[123,68,71,0.1853393522530614],[123,68,72,0.19244255371501548],[123,68,73,0.1994956367387194],[123,68,74,0.20650985008607134],[123,68,75,0.2134919514532049],[123,68,76,0.2204449994840829],[123,68,77,0.22736904362824256],[123,68,78,0.23426171060039444],[123,68,79,0.24111868645947923],[123,69,64,0.13762227649960995],[123,69,65,0.14579580048293342],[123,69,66,0.15377185422306305],[123,69,67,0.16151828858627504],[123,69,68,0.16905525307841404],[123,69,69,0.17643119774257346],[123,69,70,0.1836854707415534],[123,69,71,0.19084876810473314],[123,69,72,0.19794431466222986],[123,69,73,0.2049889505029488],[123,69,74,0.21199412057296768],[123,69,75,0.2189667653142321],[123,69,76,0.22591011052469934],[123,69,77,0.23282435489758999],[123,69,78,0.23970725396569983],[123,69,79,0.24655459943646774],[123,70,64,0.14265870218966192],[123,70,65,0.1508324175446816],[123,70,66,0.15880624261162596],[123,70,67,0.1665488655135664],[123,70,68,0.17408097792190588],[123,70,69,0.18145123838015445],[123,70,70,0.18869917069771747],[123,70,71,0.19585562196652645],[123,70,72,0.20294394437577556],[123,70,73,0.20998108255353215],[123,70,74,0.21697856401496912],[123,70,75,0.2239433905803932],[123,70,76,0.23087882890733938],[123,70,77,0.2377850985574985],[123,70,78,0.24465995628757578],[123,70,79,0.2514991755129936],[123,71,64,0.14724270556379782],[123,71,65,0.15541273780769385],[123,71,66,0.1633811895975706],[123,71,67,0.17111773408178943],[123,71,68,0.1786435609491847],[123,71,69,0.18600736687780114],[123,71,70,0.19324868607362317],[123,71,71,0.20039835991381413],[123,71,72,0.20747972017048666],[123,71,73,0.2145096778053683],[123,71,74,0.22149971487780032],[123,71,75,0.22845677739178272],[123,71,76,0.23538406718875804],[123,71,77,0.2422817312692882],[123,71,78,0.24914744719514817],[123,71,79,0.25597690348326574],[123,72,64,0.15140979156738693],[123,72,65,0.1595732825927704],[123,72,66,0.16753420463108076],[123,72,67,0.1752633967642449],[123,72,68,0.18278243079433382],[123,72,69,0.19013973810117252],[123,72,70,0.19737459234085455],[123,72,71,0.20451759387203244],[123,72,72,0.21159185271866207],[123,72,73,0.21861407718620457],[123,72,74,0.22559556564089928],[123,72,75,0.23254309924464472],[123,72,76,0.23945973371872853],[123,72,77,0.24634548848587481],[123,72,78,0.2531979318083099],[123,72,79,0.26001266079937013],[123,73,64,0.15519033592639417],[123,73,65,0.16334520361391103],[123,73,66,0.1712971740038292],[123,73,67,0.17901845382132978],[123,73,68,0.18653082806252483],[123,73,69,0.19388206342237696],[123,73,70,0.20111082668922386],[123,73,71,0.2082471868672666],[123,73,72,0.21531379452852129],[123,73,73,0.22232696693636841],[123,73,74,0.22929767642589755],[123,73,75,0.236232439808544],[123,73,76,0.24313410684863995],[123,73,77,0.2500025461351976],[123,73,78,0.2568352269400114],[123,73,79,0.2636276959125712],[123,74,64,0.15861146487402492],[123,74,65,0.16675616936774357],[123,74,66,0.17469824802093875],[123,74,67,0.18241148590516815],[123,74,68,0.18991767570541876],[123,74,69,0.19726345735575557],[123,74,70,0.20448649654282208],[123,74,71,0.2116160071235521],[123,74,72,0.21867392227081767],[123,74,73,0.22567597154079008],[123,74,74,0.23263266133413976],[123,74,75,0.23955015650453773],[123,74,76,0.24643106114709776],[123,74,77,0.2532750968741534],[123,74,78,0.26007967715264424],[123,74,79,0.2668403765359313],[123,75,64,0.16169892815312628],[123,75,65,0.16983224552060003],[123,75,66,0.17776372291515324],[123,75,67,0.18546893213619658],[123,75,68,0.19296944562232135],[123,75,69,0.20031028127639397],[123,75,70,0.2075276861786718],[123,75,71,0.21464968148682423],[123,75,72,0.22169721988536822],[123,75,73,0.22868524913435892],[123,75,74,0.23562367918987936],[123,75,75,0.24251825064884497],[123,75,76,0.24937130254842407],[123,75,77,0.2561824378237347],[123,75,78,0.2629490849929671],[123,75,79,0.26966695489621895],[123,76,64,0.16447896290741673],[123,76,65,0.1725997669045539],[123,76,66,0.1805199151225487],[123,76,67,0.18821696128813148],[123,76,68,0.19571201915310504],[123,76,69,0.20304798193507276],[123,76,70,0.21025925923175556],[123,76,71,0.21737234605468264],[123,76,72,0.22440696046908884],[123,76,73,0.231377087532216],[123,76,74,0.23829192701793156],[123,76,75,0.24515674269376636],[123,76,76,0.2519736111924053],[123,76,77,0.25874206879110145],[123,76,78,0.2654596546760307],[123,76,79,0.2721223495237476],[123,77,64,0.16698014592226212],[123,77,65,0.17508719857462557],[123,77,66,0.18299502537366488],[123,77,67,0.1906833335464008],[123,77,68,0.19817253895232928],[123,77,69,0.20550292230256945],[123,77,70,0.21270665468656502],[123,77,71,0.21980839170628466],[123,77,72,0.226826384762905],[123,77,73,0.23377349885504686],[123,77,74,0.24065813440781064],[123,77,75,0.24748505092780557],[123,77,76,0.2542560905529455],[123,77,77,0.2609707998347737],[123,77,78,0.2676269483520822],[123,77,79,0.27422094300710753],[123,78,64,0.16923523153454703],[123,78,65,0.17732698323138],[123,78,66,0.185220989899497],[123,78,67,0.1928992501446192],[123,78,68,0.2003812495680556],[123,78,69,0.20770420210581397],[123,78,70,0.21489767378164934],[123,78,71,0.22198420205130562],[123,78,72,0.22898037387952985],[123,78,73,0.23589781054590855],[123,78,74,0.24274405674670205],[123,78,75,0.24952337183313533],[123,78,76,0.2562374212973227],[123,78,77,0.2628858668829705],[123,78,78,0.26946685395586883],[123,78,79,0.2759773950183977],[123,79,64,0.1712631054251809],[123,79,65,0.17933758226959304],[123,79,66,0.18721582403407633],[123,79,67,0.1948822361762349],[123,79,68,0.20235516328501946],[123,79,69,0.20966834589396346],[123,79,70,0.21684841650868533],[123,79,71,0.22391554446803635],[123,79,72,0.23088447491501185],[123,79,73,0.23776547467989007],[123,79,74,0.2445651827052337],[123,79,75,0.25128736291267134],[123,79,76,0.25793355767888704],[123,79,77,0.26450364035079044],[123,79,78,0.2709962654840927],[123,79,79,0.27740921573492494],[123,80,64,0.17301444514020115],[123,80,65,0.18106935018508058],[123,80,66,0.18893029723959726],[123,80,67,0.19658425992048711],[123,80,68,0.2040482905927222],[123,80,69,0.21135230531463456],[123,80,70,0.21851968630503404],[123,80,71,0.22556795718852055],[123,80,72,0.2325097824008541],[123,80,73,0.23935387352542908],[123,80,74,0.2461058002557346],[123,80,75,0.2527687039463393],[123,80,76,0.259343911979571],[123,80,77,0.26583145143449644],[123,80,78,0.27223046079574903],[123,80,79,0.2785394986816255],[123,81,64,0.17443789594277392],[123,81,65,0.18247045753142493],[123,81,66,0.19031281911136053],[123,81,67,0.19795472468475975],[123,81,68,0.20541184687428643],[123,81,69,0.21270999167564353],[123,81,70,0.21986899483974284],[123,81,71,0.2269034368155202],[123,81,72,0.23382360760615165],[123,81,73,0.240636378282318],[123,81,74,0.24734597690338622],[123,81,75,0.25395466686340784],[123,81,76,0.2604633259416203],[123,81,77,0.2668719245945017],[123,81,78,0.27317990227511574],[123,81,79,0.27938644080486036],[123,82,64,0.175498587610649],[123,82,65,0.1835053751355137],[123,82,66,0.19132767880096285],[123,82,67,0.19895823208098706],[123,82,68,0.20641129798124808],[123,82,69,0.2137083607605585],[123,82,70,0.22086545096433172],[123,82,71,0.22789391249031377],[123,82,72,0.23480134218557555],[123,82,73,0.24159243543348133],[123,82,74,0.24826973551847883],[123,82,75,0.25483428482248477],[123,82,76,0.26128617616914007],[123,82,77,0.2676250028891065],[123,82,78,0.2738502064276227],[123,82,79,0.2799613205540896],[123,83,64,0.17617560717007397],[123,83,65,0.18415239981954806],[123,83,66,0.1919526536697052],[123,83,67,0.19957230732022904],[123,83,68,0.20702423584714147],[123,83,69,0.21432546969773378],[123,83,70,0.22148802633961093],[123,83,71,0.22851974380987322],[123,83,72,0.23542520752747922],[123,83,73,0.2422065819613754],[123,83,74,0.2488643449526231],[123,83,75,0.25539792275646855],[123,83,76,0.26180622413446525],[123,83,77,0.2680880720851972],[123,83,78,0.27424253205161236],[123,83,79,0.2802691356827923],[123,84,64,0.1764596526986327],[123,84,65,0.18440135793576168],[123,84,66,0.1921767912723666],[123,84,67,0.19978529195691525],[123,84,68,0.2072384142929395],[123,84,69,0.2145486855367664],[123,84,70,0.22172396322955062],[123,84,71,0.22876835049935473],[123,84,72,0.23568312476867723],[123,84,73,0.2424675696660369],[123,84,74,0.2491197079180386],[123,84,75,0.25563693326997644],[123,84,76,0.2620165397510794],[123,84,77,0.2682561468627486],[123,84,78,0.27435401952136645],[123,84,79,0.2803092818307107],[123,85,64,0.1763508742276461],[123,85,65,0.18425149266316942],[123,85,66,0.19199837047439444],[123,85,67,0.1995944096643251],[123,85,68,0.20704995030460624],[123,85,69,0.21437305043177207],[123,85,70,0.22156732890415992],[123,85,71,0.22863297775311878],[123,85,72,0.23556770879639938],[123,85,73,0.24236760125767853],[123,85,74,0.2490278481108452],[123,85,75,0.25553117749426446],[123,85,76,0.26190949902448324],[123,85,77,0.2681221188724591],[123,85,78,0.27417828019462126],[123,85,79,0.28007627017353615],[123,86,64,0.1758569080992622],[123,86,65,0.18370954140148504],[123,86,66,0.19142304794651543],[123,86,67,0.1990040111120157],[123,86,68,0.2064616965947668],[123,86,69,0.21379980890213549],[123,86,70,0.22101772170290918],[123,86,71,0.22811160180561663],[123,86,72,0.23441829640063755],[123,86,73,0.24068850522872293],[123,86,74,0.24693994109944836],[123,86,75,0.253165257236342],[123,86,76,0.2593562408791919],[123,86,77,0.2655034283300093],[123,86,78,0.2715958288439688],[123,86,79,0.27762075836920896],[123,87,64,0.17499111063646527],[123,87,65,0.1827880091078803],[123,87,66,0.19046219580378568],[123,87,67,0.19802400355708516],[123,87,68,0.20548179082561402],[123,87,69,0.21283510223582577],[123,87,70,0.22007913343883323],[123,87,71,0.226271178096868],[123,87,72,0.23231838342167332],[123,87,73,0.2383537412006165],[123,87,74,0.2443737761100472],[123,87,75,0.2503743460779159],[123,87,76,0.256350113090719],[123,87,77,0.26229412533411306],[123,87,78,0.26819751201994985],[123,87,79,0.27404929198279254],[123,88,64,0.1737709965206148],[123,88,65,0.18150364296537916],[123,88,66,0.18913143571066207],[123,88,67,0.19666847033251778],[123,88,68,0.20412238646371095],[123,88,69,0.2114888347210911],[123,88,70,0.21825106519497658],[123,88,71,0.2240651904510953],[123,88,72,0.2298650744112344],[123,88,73,0.23565118873264285],[123,88,74,0.2414237940639697],[123,88,75,0.24718224671359906],[123,88,76,0.25292441929935855],[123,88,77,0.25864623714591156],[123,88,78,0.2643413319021716],[123,88,79,0.2700008135676633],[123,89,64,0.17221688684002745],[123,89,65,0.1798761133467165],[123,89,66,0.1874493743592807],[123,89,67,0.19495448501701107],[123,89,68,0.20239856985908283],[123,89,69,0.20977371603939482],[123,89,70,0.21596300828880205],[123,89,71,0.22152859981075743],[123,89,72,0.22707224420030092],[123,89,73,0.23259842777481024],[123,89,74,0.2381113137966856],[123,89,75,0.24361398165886997],[123,89,76,0.249107784920797],[123,89,77,0.25459183012439407],[123,89,78,0.26006257801006816],[123,89,79,0.26551356845328683],[123,90,64,0.17035077137167529],[123,90,65,0.17792690564157737],[123,90,66,0.1854365448418536],[123,90,67,0.19290112469872236],[123,90,68,0.20032746778806546],[123,90,69,0.2077044838229636],[123,90,70,0.21335804810844441],[123,90,71,0.21867161749397446],[123,90,72,0.22395390371013904],[123,90,73,0.22921342759625396],[123,90,74,0.2344583451741049],[123,90,75,0.23969560777332805],[123,90,76,0.24493024640588296],[123,90,77,0.2501647825105478],[123,90,78,0.2553987668610651],[123,90,79,0.2606284481144554],[123,91,64,0.16819538928446168],[123,91,65,0.1756784271464023],[123,91,66,0.18311455807813531],[123,91,67,0.19052868639855677],[123,91,68,0.19792754937011922],[123,91,69,0.20529731007275556],[123,91,70,0.21044311586938078],[123,91,71,0.21550474616570847],[123,91,72,0.2205244061215042],[123,91,73,0.22551459506183583],[123,91,74,0.23048747325441266],[123,91,75,0.23545393317433586],[123,91,76,0.2404228008745671],[123,91,77,0.2454001697994052],[123,91,78,0.2503888690318145],[123,91,79,0.2553880676289745],[123,92,64,0.16577353210573673],[123,92,65,0.17315333287350929],[123,92,66,0.1805054681244283],[123,92,67,0.18785811039617883],[123,92,68,0.19521812596257718],[123,92,69,0.202343378928499],[123,92,70,0.20722574368334276],[123,92,71,0.21203897272261163],[123,92,72,0.21679850585813962],[123,92,73,0.22152069133382335],[123,92,74,0.226221627060891],[123,92,75,0.23091613524296742],[123,92,76,0.23561687333883302],[123,92,77,0.2403335839380002],[123,92,78,0.2450724857574672],[123,92,79,0.249835807610959],[123,93,64,0.16310757247051416],[123,93,65,0.1703740738178102],[123,93,66,0.17763135487927173],[123,93,67,0.1849106139015945],[123,93,68,0.19221905235182002],[123,93,69,0.19905764745945495],[123,93,70,0.203714201857507],[123,93,71,0.2082857965851526],[123,93,72,0.21279126805277476],[123,93,73,0.21725061501723683],[123,93,74,0.22168373136523858],[123,93,75,0.226109278526316],[123,93,76,0.23054370073935176],[123,93,77,0.2350003860028913],[123,93,78,0.23948897515167178],[123,93,79,0.24401482112335113],[123,94,64,0.16021922187368706],[123,94,65,0.1673626709234399],[123,94,66,0.17451412741134467],[123,94,67,0.1817075382354777],[123,94,68,0.18895063229329337],[123,94,69,0.19547699830515705],[123,94,70,0.19991745499127817],[123,94,71,0.20425709095685124],[123,94,72,0.20851782634387034],[123,94,73,0.21272304992038948],[123,94,74,0.21689624000537272],[123,94,75,0.22105973143541044],[123,94,76,0.2252336320862383],[123,94,77,0.2294348920472501],[123,94,78,0.2336765281377909],[123,94,79,0.2379670060538433],[123,95,64,0.157129520368961],[123,95,65,0.16414071771867336],[123,95,66,0.17117555086680886],[123,95,67,0.17827041242211455],[123,95,68,0.18543373120591056],[123,95,69,0.1916087566216517],[123,95,70,0.19584493439504036],[123,95,71,0.19996479480253906],[123,95,72,0.20399298702006174],[123,95,73,0.20795597574568878],[123,95,74,0.21188054937879064],[123,95,75,0.21579248072783005],[123,95,76,0.2197153440565599],[123,95,77,0.2236694918424248],[123,95,78,0.22767119419009466],[123,95,79,0.23173194342115372],[123,96,64,0.15385906090223683],[123,96,65,0.16072961433365557],[123,96,66,0.1676374996643529],[123,96,67,0.1746212358579277],[123,96,68,0.18169009859675056],[123,96,69,0.1874607578229667],[123,96,70,0.19150612455357335],[123,96,71,0.1954204334763261],[123,96,72,0.1992306776863384],[123,96,73,0.2029660401594959],[123,96,74,0.20665629086167533],[123,96,75,0.2103303428477974],[123,96,76,0.21401497145921453],[123,96,77,0.21773370027129169],[123,96,78,0.22150585699112177],[123,96,79,0.22534580206215932],[123,97,64,0.15042845073051364],[123,97,65,0.15715103538035569],[123,97,66,0.163922439455273],[123,97,67,0.17078298249476234],[123,97,68,0.17774290257834022],[123,97,69,0.18304079111542546],[123,97,70,0.18690996154072992],[123,97,71,0.19063446609579493],[123,97,72,0.19424323877178648],[123,97,73,0.19776779081394094],[123,97,74,0.20124050100513616],[123,97,75,0.20469307127405484],[123,97,76,0.20815515203129947],[123,97,77,0.21165314116028133],[123,97,78,0.21520916011761018],[123,97,79,0.21884021013417618],[123,98,64,0.146859012160491],[123,98,65,0.1534276339583922],[123,98,66,0.1600541401136933],[123,98,67,0.1667803287712087],[123,98,68,0.17361747864408844],[123,98,69,0.17835583969223057],[123,98,70,0.18206404146399374],[123,98,71,0.18561545791442208],[123,98,72,0.18904055633572706],[123,98,73,0.19237276601055972],[123,98,74,0.19564666845571735],[123,98,75,0.1988963590995702],[123,98,76,0.20215398508144955],[123,98,77,0.2054484633660112],[123,98,78,0.20880438287458403],[123,98,79,0.2122410938528897],[123,99,64,0.14317372464084277],[123,99,65,0.14958398385070157],[123,99,66,0.1560586218252018],[123,99,67,0.16264060733384983],[123,99,68,0.16934229468416476],[123,99,69,0.17341111569856854],[123,99,70,0.17697363717553108],[123,99,71,0.18036907608698793],[123,99,72,0.18362903475477887],[123,99,73,0.1867884428027397],[123,99,74,0.18988365663468681],[123,99,75,0.1929507361339673],[123,99,76,0.19602390354157015],[123,99,77,0.19913418895748547],[123,99,78,0.20230826640170085],[123,99,79,0.20556748387119927],[123,100,64,0.1393984100600521],[123,100,65,0.14564776179106126],[123,100,66,0.15196533616244828],[123,100,67,0.158394988415289],[123,100,68,0.16457545635175802],[123,100,69,0.1682088882366424],[123,100,70,0.17164052163365823],[123,100,71,0.17489690735617877],[123,100,72,0.178010407991176],[123,100,73,0.1810170414346457],[123,100,74,0.18395450129306373],[123,100,75,0.18686035988299582],[123,100,76,0.18977045903234935],[123,100,77,0.19271749335928826],[123,100,78,0.19572979018124037],[123,100,79,0.19883028969103764],[123,101,64,0.1355606226949901],[123,101,65,0.14164844657867656],[123,101,66,0.14780567657786076],[123,101,67,0.15407680181805747],[123,101,68,0.15922824977639455],[123,101,69,0.16275053827685868],[123,101,70,0.1660651848639166],[123,101,71,0.16919881621722602],[123,101,72,0.17218421272309217],[123,101,73,0.17505808247382212],[123,101,74,0.17785901675954227],[123,101,75,0.18062563301491047],[123,101,76,0.18339491064188687],[123,101,77,0.18620072458940992],[123,101,78,0.18907258103431565],[123,101,79,0.1920345589795122],[123,102,64,0.13166102107803013],[123,102,65,0.13758660011511312],[123,102,66,0.14358019537092473],[123,102,67,0.1496866977359474],[123,102,68,0.15365249791213498],[123,102,69,0.1570753412085066],[123,102,70,0.16028734870553984],[123,102,71,0.16331494687648268],[123,102,72,0.16619097232128904],[123,102,73,0.16895239531040157],[123,102,74,0.1716382285648036],[123,102,75,0.1742876274212469],[123,102,76,0.17693818698098093],[123,102,77,0.17962444129056968],[123,102,78,0.1823765690574106],[123,102,79,0.1852193098648119],[123,103,64,0.12768158636051352],[123,103,65,0.1334429341056695],[123,103,66,0.1392685107498293],[123,103,67,0.14434700498059364],[123,103,68,0.14791178680459177],[123,103,69,0.15124813554755862],[123,103,70,0.15437291200594477],[123,103,71,0.15731203280192535],[123,103,72,0.16009798655758584],[123,103,73,0.16276753082727005],[123,103,74,0.16535957661776227],[123,103,75,0.1679132667731924],[123,103,76,0.17046625394638837],[123,103,77,0.17305318332397948],[123,103,78,0.17570438472190908],[123,103,79,0.17844477812559312],[123,104,64,0.12360725225022193],[123,104,65,0.1292014677743641],[123,104,66,0.13485396638406302],[123,104,67,0.13857737162736855],[123,104,68,0.14206689275301826],[123,104,69,0.1453303653535648],[123,104,70,0.14838375488393435],[123,104,71,0.15125214386002125],[123,104,72,0.15396724817544236],[123,104,73,0.15656511468868292],[123,104,74,0.15908400696721248],[123,104,75,0.1615624855235354],[123,104,76,0.1640376883240804],[123,104,77,0.16654381679847513],[123,104,78,0.1691108320271731],[123,104,79,0.1717633652440365],[123,105,64,0.11942820924835462],[123,105,65,0.12485179996309785],[123,105,66,0.12909757591613186],[123,105,67,0.13274779727525216],[123,105,68,0.136173683995736],[123,105,69,0.13937805632021422],[123,105,70,0.14237579829070637],[123,105,71,0.1451908373764765],[123,105,72,0.1478536922811338],[123,105,73,0.15039920056318978],[123,105,74,0.15286443292922647],[123,105,75,0.15528680051466692],[123,105,76,0.15770236092051804],[123,105,77,0.16014432822853392],[123,105,78,0.16264179167509352],[123,105,79,0.165218647130087],[123,106,64,0.11514214250757954],[123,106,65,0.11953593776981089],[123,106,66,0.12331635259254704],[123,106,67,0.12690728991321096],[123,106,68,0.130281235094552],[123,106,69,0.13344004594904127],[123,106,70,0.13639735958531576],[123,106,71,0.13917564670140445],[123,106,72,0.14180382325938168],[123,106,73,0.14431503839606244],[123,106,74,0.14674464531198464],[123,106,75,0.1491283613507867],[123,106,76,0.1515006229485499],[123,106,77,0.15389314060086964],[123,106,78,0.15633365846732178],[123,106,79,0.1588449227129557],[123,107,64,0.10998236798906809],[123,107,65,0.11383225506606348],[123,107,66,0.11755444012492877],[123,107,67,0.12109611429795121],[123,107,68,0.12442963054934643],[123,107,69,0.12755591647589135],[123,107,70,0.1304872274830777],[123,107,71,0.13324430884926877],[123,107,72,0.135854103421374],[123,107,73,0.13834762980420923],[123,107,74,0.1407580375777695],[123,107,75,0.14311884556709187],[123,107,76,0.14546236867758836],[123,107,77,0.1478183382976643],[123,107,78,0.15021272076306336],[123,107,79,0.15266673787784046],[123,108,64,0.10437594446723374],[123,108,65,0.10816760275502683],[123,108,66,0.11184067170236568],[123,108,67,0.11534315740494604],[123,108,68,0.11864745571115672],[123,108,69,0.12175362860528191],[123,108,70,0.12467245444526728],[123,108,71,0.1274227293253624],[123,108,72,0.13002910157352118],[123,108,73,0.13252006889380818],[123,108,74,0.13492614439070225],[123,108,75,0.13727819722951395],[123,108,76,0.1396059732023943],[123,108,77,0.14193679998546116],[123,108,78,0.14429448139222806],[123,108,79,0.14669838445575684],[123,109,64,0.09881352731973084],[123,109,65,0.10255601540898568],[123,109,66,0.1061894907311838],[123,109,67,0.10966291487199636],[123,109,68,0.11294891874286231],[123,109,69,0.11604679939392648],[123,109,70,0.11896580948200101],[123,109,71,0.12172262678452643],[123,109,72,0.12433934387370735],[123,109,73,0.12684161063894384],[123,109,74,0.12925693551288184],[123,109,75,0.1316131508063113],[123,109,76,0.13393704710521429],[123,109,77,0.1362531812322088],[123,109,78,0.13858286182709142],[123,109,79,0.1409433161608911],[123,110,64,0.09327907496370877],[123,110,65,0.0969821609860283],[123,110,66,0.10058596350496496],[123,110,67,0.10404053457602234],[123,110,68,0.10731895150852823],[123,110,69,0.11041988672725579],[123,110,70,0.11335107145294332],[123,110,71,0.11612695858264006],[123,110,72,0.11876689260396946],[123,110,73,0.12129342086795744],[123,110,74,0.12373075161812738],[123,110,75,0.12610336376091982],[123,110,76,0.128434772948322],[123,110,77,0.1307464581303836],[123,110,78,0.1330569523255094],[123,110,79,0.13538110095351266],[123,111,64,0.08771101258291406],[123,111,65,0.09138474884638553],[123,111,66,0.09496900548663298],[123,111,67,0.09841507828925032],[123,111,68,0.10169673168742083],[123,111,69,0.10481219517567757],[123,111,70,0.10776773168593518],[123,111,71,0.110575515654697],[123,111,72,0.11325200520037823],[123,111,73,0.11581644279902453],[123,111,74,0.11828948933104066],[123,111,75,0.1206919960002849],[123,111,76,0.12304391825447103],[123,111,77,0.12536337546451595],[123,111,78,0.12766585975249775],[123,111,79,0.12996359699642038],[123,112,64,0.08204432552956777],[123,112,65,0.08569767699985564],[123,112,66,0.08927199404749334],[123,112,67,0.09272004589131964],[123,112,68,0.0960165745171217],[123,112,69,0.09915958001701158],[123,112,70,0.1021539254105122],[123,112,71,0.10500945152630474],[123,112,72,0.10773957355086682],[123,112,73,0.11035999212539707],[123,112,74,0.11288752327297356],[123,112,75,0.115339051111323],[123,112,76,0.117730606979328],[123,112,77,0.12007657827948028],[123,112,78,0.12238905001587208],[123,112,79,0.12467728169086764],[123,113,64,0.07623737196491222],[123,113,65,0.07987764129939073],[123,113,66,0.08345045877266244],[123,113,67,0.08691035723893997],[123,113,68,0.09023338036186025],[123,113,69,0.09341753206636934],[123,113,70,0.096466352850132],[123,113,71,0.09938729241973014],[123,113,72,0.10219055225323778],[123,113,73,0.10488802793859082],[123,113,74,0.10749235491671481],[123,113,75,0.11001606097916677],[123,113,76,0.1124708285907443],[123,113,77,0.11486686982988167],[123,113,78,0.11721241646539719],[123,113,79,0.11951332741978746],[123,114,64,0.07027089109752427],[123,114,65,0.07390351695332793],[123,114,66,0.07748167040899352],[123,114,67,0.08096196671524203],[123,114,68,0.08432208622083705],[123,114,69,0.08756027855345533],[123,114,70,0.09067884978441206],[123,114,71,0.09368281166305413],[123,114,72,0.09657898991969596],[123,114,73,0.09937521701975743],[123,114,74,0.10207961228947957],[123,114,75,0.10469995210366997],[123,114,76,0.10724313259665495],[123,114,77,0.10971472713047277],[123,114,78,0.1121186405307544],[123,114,79,0.11445686188288681],[123,115,64,0.06414428955222118],[123,115,65,0.06777271999645369],[123,115,66,0.07136111711994975],[123,115,67,0.07486849837745617],[123,115,68,0.07827450642447284],[123,115,69,0.08157787649395762],[123,115,70,0.08477977923933494],[123,115,71,0.08788276216275982],[123,115,72,0.09089014027222274],[123,115,73,0.09380545558190626],[123,115,74,0.09663200762149614],[123,115,75,0.09937245694066399],[123,115,76,0.10202850341697328],[123,115,77,0.10460064100021862],[123,115,78,0.10708799035484094],[123,115,79,0.10948821069638101],[123,116,64,0.057872136558916744],[123,116,65,0.06149777319057718],[123,116,66,0.06509917821547997],[123,116,67,0.06863806892995541],[123,116,68,0.0720963488741992],[123,116,69,0.07547346687355855],[123,116,70,0.07876956704829746],[123,116,71,0.0819847338781759],[123,116,72,0.08511867776409074],[123,116,73,0.08817047380468762],[123,116,74,0.09113835516466887],[123,116,75,0.0940195622828025],[123,116,76,0.0968102490414227],[123,116,77,0.09950544689645485],[123,116,78,0.10209908784854774],[123,116,79,0.10458408702322737],[123,117,64,0.05148087156439283],[123,117,65,0.0551030799798675],[123,117,66,0.0587179989572185],[123,117,67,0.06229030204370857],[123,117,68,0.06580441020839618],[123,117,69,0.06926069282695824],[123,117,70,0.07265838420370896],[123,117,71,0.07599513889346371],[123,117,72,0.07926701994073984],[123,117,73,0.08246852493858259],[123,117,74,0.08559265047391741],[123,117,75,0.08863099544784507],[123,117,76,0.09157390368444276],[123,117,77,0.09441064617106068],[123,117,78,0.09712964320741287],[123,117,79,0.09971872668104705],[123,118,64,0.04500572759754892],[123,118,65,0.04862190985750073],[123,118,66,0.05224856977758588],[123,118,67,0.055853537292002695],[123,118,68,0.059423953040209525],[123,118,69,0.06296128477548517],[123,118,70,0.06646397872166551],[123,118,71,0.06992732651060572],[123,118,72,0.07334375860891239],[123,118,73,0.0767031606414325],[123,118,74,0.07999321236227154],[123,118,75,0.08319974899453833],[123,118,76,0.08630714463526051],[123,118,77,0.08929871740239029],[123,118,78,0.09215715598682114],[123,118,79,0.09728322519633802],[123,119,64,0.03848787346328001],[123,119,65,0.04209359824788627],[123,119,66,0.0457280130052819],[123,119,67,0.0493622367358121],[123,119,68,0.05298626818967043],[123,119,69,0.05660281528029139],[123,119,70,0.06020965955582171],[123,119,71,0.06379983062381875],[123,119,72,0.06736220174614453],[123,119,73,0.07330773845424857],[123,119,74,0.07929034650561799],[123,119,75,0.08518839937270865],[123,119,76,0.09098345952031446],[123,119,77,0.09665631613490078],[123,119,78,0.10161808848655071],[123,119,79,0.10512957647566887],[123,120,64,0.03197177712565029],[123,120,65,0.03556096329354878],[123,120,66,0.03919707947670428],[123,120,67,0.04406322252221519],[123,120,68,0.05042254271922428],[123,120,69,0.05678237942574327],[123,120,70,0.0631410980027932],[123,120,71,0.06949109576890446],[123,120,72,0.07581967467029148],[123,120,73,0.08210991092406154],[123,120,74,0.08834151979443311],[123,120,75,0.09449171372322474],[123,120,76,0.10053605210437144],[123,120,77,0.10524480577524575],[123,120,78,0.108579000403553],[123,120,79,0.1118537246924325],[123,121,64,0.032566731771046555],[123,121,65,0.038955373210692514],[123,121,66,0.04538915021017879],[123,121,67,0.051845700115370874],[123,121,68,0.058321141058449495],[123,121,69,0.0648215962830422],[123,121,70,0.07134494346677049],[123,121,71,0.07788155187118694],[123,121,72,0.08441543461202895],[123,121,73,0.09092538562191085],[123,121,74,0.09738609872058762],[123,121,75,0.10376926630967687],[123,121,76,0.10934618201713564],[123,121,77,0.11249878559947],[123,121,78,0.11558096605137967],[123,121,79,0.11861939538757932],[123,122,64,0.04035014356367187],[123,122,65,0.04677485124635925],[123,122,66,0.053260823264565854],[123,122,67,0.059788870088800745],[123,122,68,0.066357894998205],[123,122,69,0.07297536893724053],[123,122,70,0.07963879395982289],[123,122,71,0.08633670344669628],[123,122,72,0.09305007481179256],[123,122,73,0.09975371583471161],[123,122,74,0.10641762134180374],[123,122,75,0.1130082970964861],[123,122,76,0.11688752894062701],[123,122,77,0.11978716585750022],[123,122,78,0.12262547928670112],[123,122,79,0.12543430260096453],[123,123,64,0.048381159307355454],[123,123,65,0.05482155654871216],[123,123,66,0.06133803937018599],[123,123,67,0.06791441874731921],[123,123,68,0.07455223322296677],[123,123,69,0.0812602648338144],[123,123,70,0.08803573947251615],[123,123,71,0.09486556583410594],[123,123,72,0.1017279848176529],[123,123,73,0.10859418281410967],[123,123,74,0.11542986497445265],[123,123,75,0.12168785528813011],[123,123,76,0.12444114219458352],[123,123,77,0.12710327462498172],[123,123,78,0.1297119131528545],[123,123,79,0.13230369409102308],[123,124,64,0.056679372245310895],[123,124,65,0.06311463836143041],[123,124,66,0.06963913953722119],[123,124,67,0.07623944324666677],[123,124,68,0.08291950487551374],[123,124,69,0.08968933388675732],[123,124,70,0.09654596435172094],[123,124,71,0.1034749045913639],[123,124,72,0.11045199565382122],[123,124,73,0.11744522533921414],[123,124,74,0.1244164933118944],[123,124,75,0.12945825192324795],[123,124,76,0.1319929220757116],[123,124,77,0.1344384439250102],[123,124,78,0.13683701711100565],[123,124,79,0.13922961557914756],[123,125,64,0.06525715257434322],[123,125,65,0.0716664282964703],[123,125,66,0.07817610505553804],[123,125,67,0.08477519992223058],[123,125,68,0.09146980609192393],[123,125,69,0.09827103348113353],[123,125,70,0.10517579188581425],[123,125,71,0.11216842045893499],[123,125,72,0.11922272463045797],[123,125,73,0.12630396166967134],[123,125,74,0.13337076995826927],[123,125,75,0.137185230285953],[123,125,76,0.1395273968085158],[123,125,77,0.14178175493511222],[123,125,78,0.14399444984515472],[123,125,79,0.14621023618748863],[123,126,64,0.07411849113006905],[123,126,65,0.08048131271092931],[123,126,66,0.08695346791329142],[123,126,67,0.09352606474767966],[123,126,68,0.10020700550032541],[123,126,69,0.10700833635567494],[123,126,70,0.11392689299579735],[123,126,71,0.1209460772505181],[123,126,72,0.12803803983451434],[123,126,73,0.1351658062428901],[123,126,74,0.14228534048891234],[123,126,75,0.14484853452057506],[123,126,76,0.14702766431773287],[123,126,77,0.14911979383875917],[123,126,78,0.1511743496060434],[123,126,79,0.15323923738129003],[123,127,64,0.08325807795821075],[123,127,65,0.08955483592521853],[123,127,66,0.09596744507805077],[123,127,67,0.10248870755212813],[123,127,68,0.10912797026891508],[123,127,69,0.11589802287654792],[123,127,70,0.12279566043656834],[123,127,71,0.12980357393571373],[123,127,72,0.13689264539390286],[123,127,73,0.14402418200448502],[123,127,74,0.15024150172708223],[123,127,75,0.1524276422111018],[123,127,76,0.15447531713591958],[123,127,77,0.15643641850018378],[123,127,78,0.1583629425824862],[123,127,79,0.16030526622084254],[123,128,64,0.09266061724607338],[123,128,65,0.09887303579052442],[123,128,66,0.10520529816122995],[123,128,67,0.11165148150479091],[123,128,68,0.11822199417318362],[123,128,69,0.12493015910418812],[123,128,70,0.13177274981205145],[123,128,71,0.1387319620895957],[123,128,72,0.14577778853104306],[123,128,73,0.15287032920007612],[123,128,74,0.15781313869999314],[123,128,75,0.15990179924796963],[123,128,76,0.16185035033174386],[123,128,77,0.16371253612460762],[123,128,78,0.16554218975070442],[123,128,79,0.16739145366887348],[123,129,64,0.10230037998242432],[123,129,65,0.10841201300577222],[123,129,66,0.11464491987832061],[123,129,67,0.12099402926900077],[123,129,68,0.1274704290483244],[123,129,69,0.1340877619564104],[123,129,70,0.1408427886167148],[123,129,71,0.1477174098027329],[123,129,72,0.15468108935233119],[123,129,73,0.1616932114010479],[123,129,74,0.16522789299484547],[123,129,75,0.16725000938301332],[123,129,76,0.1691310523482922],[123,129,77,0.17092589205023245],[123,129,78,0.17268947261643086],[123,129,79,0.17447499864315874],[123,130,64,0.1121409956225994],[123,130,65,0.11813773549055628],[123,130,66,0.12425464862256917],[123,130,67,0.13048710713300052],[123,130,68,0.1368465209005664],[123,130,69,0.14334665268299612],[123,130,70,0.14998425443433153],[123,130,71,0.1567411130720128],[123,130,72,0.16358649425749394],[123,130,73,0.17028818335025034],[123,130,74,0.17246685656588434],[123,130,75,0.17445097814128296],[123,130,76,0.1762938786441801],[123,130,77,0.1780508698035954],[123,130,78,0.17977731823095816],[123,130,79,0.18152681845144253],[123,131,64,0.122135483957398],[123,131,65,0.12800607903945832],[123,131,66,0.13399331238694864],[123,131,67,0.14009262834177164],[123,131,68,0.14631545186928907],[123,131,69,0.15267549978820474],[123,131,70,0.15916952335123027],[123,131,71,0.1657793556262037],[123,131,72,0.17247435379559312],[123,131,73,0.17734788961785805],[123,131,74,0.17951226867251852],[123,131,75,0.1814830107758722],[123,131,76,0.18331330803178633],[123,131,77,0.1850583025344904],[123,131,78,0.18677316382925352],[123,131,79,0.18851126619471464],[123,132,64,0.1322264171823568],[123,132,65,0.13796298607175173],[123,132,66,0.1438103758108595],[123,132,67,0.14976379138355025],[123,132,68,0.15583444574366548],[123,132,69,0.16203590112903762],[123,132,70,0.16836493058094334],[123,132,71,0.17480355191644267],[123,132,72,0.1813214531440665],[123,132,73,0.18417982238887534],[123,132,74,0.18634755854100005],[123,132,75,0.18832404888921353],[123,132,76,0.19016186752242883],[123,132,77,0.1919154809656905],[123,132,78,0.1936393435630219],[123,132,79,0.1953860928884646],[123,133,64,0.1423293696623507],[123,133,65,0.14792649343655126],[123,133,66,0.15362656173518208],[123,133,67,0.15942429012943465],[123,133,68,0.16533055388514767],[123,133,69,0.17135874836831616],[123,133,70,0.17750574418307685],[123,133,71,0.18375389754853],[123,133,72,0.18838607084935902],[123,133,73,0.19080423155885975],[123,133,74,0.19298689130941155],[123,133,75,0.19498183502566593],[123,133,76,0.1968406369594564],[123,133,77,0.1986166883772266],[123,133,78,0.2003633209334176],[123,133,79,0.20213203024530935],[123,134,64,0.15232611433479112],[123,134,65,0.15777821821721447],[123,134,66,0.16332364169221214],[123,134,67,0.16895639823228156],[123,134,68,0.17468699068764376],[123,134,69,0.180528756092873],[123,134,70,0.18647883771571241],[123,134,71,0.19215534589539487],[123,134,72,0.1948611405473527],[123,134,73,0.19729568445443854],[123,134,74,0.19949982260038016],[123,134,75,0.2015201064212534],[123,134,76,0.20340676731552343],[123,134,77,0.20521178093647272],[123,134,78,0.20698702703272512],[123,134,79,0.20878254929919707],[123,135,64,0.16211030834569376],[123,135,65,0.1674115495704255],[123,135,66,0.17279506892805266],[123,135,67,0.17825401485768144],[123,135,68,0.18379855897637432],[123,135,69,0.18944217888790824],[123,135,70,0.19518253966565202],[123,135,71,0.19854796167160343],[123,135,72,0.20126571782667232],[123,135,73,0.2037186606384555],[123,135,74,0.20594622699364198],[123,135,75,0.20799341789897866],[123,135,76,0.20990881726616248],[123,135,77,0.21174270074139015],[123,135,78,0.21354523926380137],[123,135,79,0.21536480174034775],[123,136,64,0.1715933141798275],[123,136,65,0.1767377742227932],[123,136,66,0.18195238838979166],[123,136,67,0.1872293399929898],[123,136,68,0.19257857285153016],[123,136,69,0.1980139622543295],[123,136,70,0.20190425285462],[123,136,71,0.20492169660746673],[123,136,72,0.20765014113381935],[123,136,73,0.21011985889851867],[123,136,74,0.21236857411882684],[123,136,75,0.2144394511999219],[123,136,76,0.2163791667066834],[123,136,77,0.21823606972652768],[123,136,78,0.220058435200226],[123,136,79,0.2218928145097024],[123,137,64,0.18070461664473614],[123,137,65,0.1856864102537809],[123,137,66,0.1907254718950147],[123,137,67,0.19581299017372306],[123,137,68,0.2009588333496203],[123,137,69,0.20497733451028832],[123,137,70,0.2082953774539445],[123,137,71,0.21131239046388892],[123,137,72,0.21404749557175295],[123,137,73,0.21652913323719408],[123,137,74,0.21879303779226764],[123,137,75,0.22088028884480784],[123,137,76,0.22283544360600474],[123,137,77,0.2247047548514469],[123,137,78,0.22653447895784368],[123,137,79,0.2283692781807716],[123,138,64,0.189392627965508],[123,138,65,0.19420592522590718],[123,138,66,0.19906313052580712],[123,138,67,0.20392509243869178],[123,138,68,0.20782016276450918],[123,138,69,0.211423323229858],[123,138,70,0.21472745274920516],[123,138,71,0.21773864214981317],[123,138,72,0.22047411439112968],[123,138,73,0.2229602068920497],[123,138,74,0.22523042119124564],[123,138,75,0.2273235449476591],[123,138,76,0.22928185105722726],[123,138,77,0.23114937841889843],[123,138,78,0.23297029862915927],[123,138,79,0.2347873726209016],[123,139,64,0.197420048595334],[123,139,65,0.20201995546034324],[123,139,66,0.20637500438870693],[123,139,67,0.21048880275054305],[123,139,68,0.21434440374329478],[123,139,69,0.21791873325582967],[123,139,70,0.22120313662102303],[123,139,71,0.22420181193338348],[123,139,72,0.22692982171671178],[123,139,73,0.2294111623473538],[123,139,74,0.2316768962060218],[123,139,75,0.23376335132765239],[123,139,76,0.23571039310277644],[123,139,77,0.23755977235625816],[123,139,78,0.23935355389111423],[123,139,79,0.2411326293376002],[123,140,64,0.20422975408499516],[123,140,65,0.20875120771825734],[123,140,66,0.2130387227075064],[123,140,67,0.21709676212562593],[123,140,68,0.22090803611412582],[123,140,69,0.2244481619649684],[123,140,70,0.22770670586926384],[123,140,71,0.2306857317145871],[123,140,72,0.23339791439652277],[123,140,73,0.23586470537986592],[123,140,74,0.23811455519225083],[123,140,75,0.24018119734647428],[123,140,76,0.24210199798925355],[123,140,77,0.24391637536435218],[123,140,78,0.2456642929579252],[123,140,79,0.24738482996463187],[123,141,64,0.2110579404364542],[123,141,65,0.21549724005173052],[123,141,66,0.2197135660349866],[123,141,67,0.22371202926189523],[123,141,68,0.22747479888384647],[123,141,69,0.230975990869443],[123,141,70,0.23420318933225032],[123,141,71,0.23715612117170404],[123,141,72,0.23984488092381095],[123,141,73,0.24228820124990108],[123,141,74,0.24451177341904148],[123,141,75,0.24654662197249522],[123,141,76,0.24842753757979907],[123,141,77,0.25019157190630836],[123,141,78,0.2518765981122725],[123,141,79,0.2535199403946075],[123,142,64,0.21783995700180628],[123,142,65,0.2221946828424889],[123,142,66,0.22633754179094973],[123,142,67,0.23027405958900485],[123,142,68,0.23398569063867808],[123,142,69,0.2374449140167531],[123,142,70,0.24063717755385536],[123,142,71,0.24355970763044293],[123,142,72,0.24621985542868577],[123,142,73,0.24863348120403977],[123,142,74,0.2508233805693401],[123,142,75,0.2528177566382856],[123,142,76,0.25464874171814456],[123,142,77,0.25635097207390284],[123,142,78,0.2579602191086219],[123,142,79,0.2595120801182747],[123,143,64,0.22449580852196527],[123,143,65,0.22876485934191146],[123,143,66,0.232833483926696],[123,143,67,0.2367073780776453],[123,143,68,0.24036713910210955],[123,143,69,0.2437835329824822],[123,143,70,0.24693976414241847],[123,143,71,0.24983042907199188],[123,143,72,0.25245999421000365],[123,143,73,0.25484130332155897],[123,143,74,0.2569941179659187],[123,143,75,0.2589436945267545],[123,143,76,0.2607194011434969],[123,143,77,0.26235337773881723],[123,143,78,0.26387924218400977],[123,143,79,0.26533084548177643],[123,144,64,0.23097758674778332],[123,144,65,0.2351597142830364],[123,144,66,0.2391531833848462],[123,144,67,0.24296357299081947],[123,144,68,0.24657048530719528],[123,144,69,0.24994293412509352],[123,144,70,0.2530618059229136],[123,144,71,0.2559189655714968],[123,144,72,0.2585158764622683],[123,144,73,0.26086224066235403],[123,144,74,0.2629746622573611],[123,144,75,0.2648753369445424],[123,144,76,0.2665907708310723],[123,144,77,0.26815053127435756],[123,144,78,0.2695860324740944],[123,144,79,0.27092935838960647],[123,145,64,0.23725160894048963],[123,145,65,0.24134492895936374],[123,145,66,0.24515136344497845],[123,145,67,0.24848179370246762],[123,145,68,0.2517631250967912],[123,145,69,0.2550231546732583],[123,145,70,0.2582788182792202],[123,145,71,0.26153694106746905],[123,145,72,0.26434586467998034],[123,145,73,0.26665347241926163],[123,145,74,0.2687210668022763],[123,145,75,0.2705676953983939],[123,145,76,0.2722169285608192],[123,145,77,0.2736957063248055],[123,145,78,0.2750332075351934],[123,145,79,0.2762597434433803],[123,146,64,0.2432882758825103],[123,146,65,0.24713393619033394],[123,146,66,0.25029396211984095],[123,146,67,0.25337489218229375],[123,146,68,0.2563944223372441],[123,146,69,0.2593823232059675],[123,146,70,0.2623581434137757],[123,146,71,0.2653317937332823],[123,146,72,0.2683046266762387],[123,146,73,0.2712705180005324],[123,146,74,0.2741927081805646],[123,146,75,0.2759791285954434],[123,146,76,0.27755536683392595],[123,146,77,0.2789457067007281],[123,146,78,0.28017708145310755],[123,146,79,0.28127804051675864],[123,147,64,0.24906164937708108],[123,147,65,0.25220671595762567],[123,147,66,0.2551273544956803],[123,147,67,0.2579555007604639],[123,147,68,0.26071047894760485],[123,147,69,0.2634239668972578],[123,147,70,0.26611809101186146],[123,147,71,0.268805839770292],[123,147,72,0.27149197137035036],[123,147,73,0.27417393550206554],[123,147,74,0.27684280760499036],[123,147,75,0.2794842339757639],[123,147,76,0.2820793861134859],[123,147,77,0.28386096164170804],[123,147,78,0.284977753005356],[123,147,79,0.28594427221136826],[123,148,64,0.25420165256936117],[123,148,65,0.2569794785762488],[123,148,66,0.25965848468234143],[123,148,67,0.26223216320216153],[123,148,68,0.2647215694441832],[123,148,69,0.2671601832372008],[123,148,70,0.269572630399892],[123,148,71,0.27197492336527535],[123,148,72,0.2743751899100385],[123,148,73,0.27677442899517923],[123,148,74,0.27916729263457696],[123,148,75,0.28154289269025906],[123,148,76,0.2838856314828178],[123,148,77,0.2861760551032046],[123,148,78,0.2883917283185013],[123,148,79,0.29022252474721716],[123,149,64,0.25890615184905735],[123,149,65,0.2614559131592715],[123,149,66,0.2638924829522539],[123,149,67,0.26621159220229407],[123,149,68,0.2684361079886889],[123,149,69,0.27060117061130956],[123,149,70,0.27273378490855316],[123,149,71,0.2748528879124605],[123,149,72,0.2769698936071121],[123,149,73,0.27908927840246456],[123,149,74,0.28120920682384165],[123,149,75,0.28332219686774246],[123,149,76,0.28541582443195973],[123,149,77,0.2874734661929628],[123,149,78,0.28947508027684116],[123,149,79,0.2913980240524741],[123,150,64,0.26331636862540186],[123,150,65,0.2656382087958472],[123,150,66,0.26783293806376823],[123,150,67,0.26989890384238585],[123,150,68,0.27186084074123873],[123,150,69,0.2737553756968484],[123,150,70,0.27561173307035153],[123,150,71,0.2774516315161409],[123,150,72,0.27928964185376626],[123,150,73,0.28113359971725227],[123,150,74,0.28298507307873877],[123,150,75,0.28483988466176635],[123,150,76,0.28668868918411755],[123,150,77,0.28851760530191817],[123,150,78,0.2903089020666651],[123,150,79,0.29204173965589],[123,151,64,0.2674320674401844],[123,151,65,0.2695273195062664],[123,151,66,0.2714821313501092],[123,151,67,0.27329781628427036],[123,151,68,0.27500100551831314],[123,151,69,0.27662961155497257],[123,151,70,0.27821488397945177],[123,151,71,0.27978113998311765],[123,151,72,0.2813459347301437],[123,151,73,0.28292030083797043],[123,151,74,0.28450905767061313],[123,151,75,0.28611119103028426],[123,151,76,0.28772030372474194],[123,151,77,0.28932513738645993],[123,151,78,0.29091016582637963],[123,151,79,0.29245626012081655],[123,152,64,0.2712520921945337],[123,152,65,0.2731231888523607],[123,152,66,0.27484123232799956],[123,152,67,0.27641081245997245],[123,152,68,0.27786045852461094],[123,152,69,0.2792291462002315],[123,152,70,0.28054992660981826],[123,152,71,0.28184949711621815],[123,152,72,0.28314818593351987],[123,152,73,0.2844600202688821],[123,152,74,0.28579287929336156],[123,152,75,0.2871487330952813],[123,152,76,0.28852396862948154],[123,152,77,0.2899098035418942],[123,152,78,0.29129278862277486],[123,152,79,0.2926553995250319],[123,153,64,0.2747745726201867],[123,153,65,0.27642493395879875],[123,153,66,0.27791045558272287],[123,153,67,0.2792392665195744],[123,153,68,0.2804417679296373],[123,153,69,0.2815577614301622],[123,153,70,0.28262185288796693],[123,153,71,0.2836628721193815],[123,153,72,0.284703675853367],[123,153,73,0.2857610485237625],[123,153,74,0.2868457027780927],[123,153,75,0.2879623814148262],[123,153,76,0.28911006228958935],[123,153,77,0.29028226756531145],[123,153,78,0.2914674785233564],[123,153,79,0.292649657004056],[123,154,64,0.27799708829828246],[123,154,65,0.27943098870185556],[123,154,66,0.2806891786874494],[123,154,67,0.28178353379977567],[123,154,68,0.28274627406050357],[123,154,69,0.28361778169784957],[123,154,70,0.28443395431610663],[123,154,71,0.2852254839234591],[123,154,72,0.2860174846142683],[123,154,73,0.2868292320658583],[123,154,74,0.2876740173076455],[123,154,75,0.2885591170157227],[123,154,76,0.2894858823847859],[123,154,77,0.2904499484335063],[123,154,78,0.2914415654110833],[123,154,79,0.29244605379370225],[123,155,64,0.28091678998090686],[123,155,65,0.2821392058211335],[123,155,66,0.28317602091371114],[123,155,67,0.28404300407497085],[123,155,68,0.2847741159814273],[123,155,69,0.2854100728090819],[123,155,70,0.2859877919397571],[123,155,71,0.2865395422395523],[123,155,72,0.2870924049056099],[123,155,73,0.28766785961364544],[123,155,74,0.2882814989687499],[123,155,75,0.2889428740297352],[123,155,76,0.28965547344797],[123,155,77,0.29041683853734185],[123,155,78,0.291218816374912],[123,155,79,0.2920479528241972],[123,156,64,0.2835304779659323],[123,156,65,0.2845469177055324],[123,156,66,0.2853688824860171],[123,156,67,0.28601611784897735],[123,156,68,0.2865242242268673],[123,156,69,0.2869340102221324],[123,156,70,0.28728313945009337],[123,156,71,0.2876051651424772],[123,156,72,0.28792883441218237],[123,156,73,0.2882775306364733],[123,156,74,0.2886688574735539],[123,156,75,0.2891143677697584],[123,156,76,0.2896194403591861],[123,156,77,0.2901833075068477],[123,156,78,0.2907992355026833],[123,156,79,0.2914548606795976],[123,157,64,0.2858346372688853],[123,157,65,0.2866509555985771],[123,157,66,0.2872649441278422],[123,157,67,0.28770034544017453],[123,157,68,0.28799427945017564],[123,157,69,0.2881874167233355],[123,157,70,0.28831789920641404],[123,157,71,0.28842027298189454],[123,157,72,0.28852464765442876],[123,157,73,0.2886560058583197],[123,157,74,0.28883366687586565],[123,157,75,0.2890709080754473],[123,157,76,0.28937474759905013],[123,157,77,0.2897458914540056],[123,157,78,0.290178847895709],[123,157,79,0.29066221172959666],[123,158,64,0.2878254293264795],[123,158,65,0.2884476269598567],[123,158,66,0.2888606266384432],[123,158,67,0.28909212860560324],[123,158,68,0.28918063674298455],[123,158,69,0.289166469245376],[123,158,70,0.2890879909581063],[123,158,71,0.28898045841264985],[123,158,72,0.28887504704091077],[123,158,73,0.28879803958141953],[123,158,74,0.288770180100609],[123,158,75,0.28880619775058214],[123,158,76,0.2889145040842898],[123,158,77,0.28909706745246266],[123,158,78,0.2893494677167958],[123,158,79,0.28966113423361983],[123,159,64,0.289498639954241],[123,159,65,0.28993265070798363],[123,159,66,0.290151510229304],[123,159,67,0.2901867844396493],[123,159,68,0.2900782153713679],[123,159,69,0.28986557458667794],[123,159,70,0.28958721303741186],[123,159,71,0.289278832328048],[123,159,72,0.2889723929277951],[123,159,73,0.2886951936336085],[123,159,74,0.28846912709681016],[123,159,75,0.28831011590594546],[123,159,76,0.2882277333992513],[123,159,77,0.2882250130644509],[123,159,78,0.28829845007450655],[123,159,79,0.2884381982084555],[123,160,64,0.2908495832663065],[123,160,65,0.29110105005711373],[123,160,66,0.29113221333648975],[123,160,67,0.290978371271325],[123,160,68,0.29068035366417166],[123,160,69,0.2902772137805023],[123,160,70,0.2898070757852168],[123,160,71,0.28930584547117344],[123,160,72,0.28880601247177895],[123,160,73,0.28833563273487917],[123,160,74,0.28791749641595177],[123,160,75,0.2875684860127767],[123,160,76,0.2872991292282755],[123,160,77,0.28711335071603433],[123,160,78,0.2870084265372518],[123,160,79,0.28697514484166037],[123,161,64,0.29187296124888845],[123,161,65,0.291947002643582],[123,161,66,0.2917962306106773],[123,161,67,0.2914595162707337],[123,161,68,0.2909786287766464],[123,161,69,0.29039175485121566],[123,161,70,0.28973660696187087],[123,161,71,0.2890490854898513],[123,161,72,0.28836198705380034],[123,161,73,0.28770390106977034],[123,161,74,0.28709830000865677],[123,161,75,0.28656282846284853],[123,161,76,0.2861087957845997],[123,161,77,0.2857408767123564],[123,161,78,0.2854570240612433],[123,161,79,0.285248597223451],[123,162,64,0.2925626786591197],[123,162,65,0.29246364762063937],[123,162,66,0.29213572976916646],[123,162,67,0.2916212044590908],[123,162,68,0.2909626410376914],[123,162,69,0.2901972336816937],[123,162,70,0.28936212888270846],[123,162,71,0.2884930491894271],[123,162,72,0.28762291804011303],[123,162,73,0.2867806798418198],[123,162,74,0.28599032102239885],[123,162,75,0.285270097420885],[123,162,76,0.28463197302093585],[123,162,77,0.28408127467382793],[123,162,78,0.2836165671054102],[123,162,79,0.2832297521588112],[123,163,64,0.29291161289973233],[123,163,65,0.2926428493793498],[123,163,66,0.29214130697549173],[123,163,67,0.29145252879941347],[123,163,68,0.2906197625733468],[123,163,69,0.28967910270171976],[123,163,70,0.2886670070052405],[123,163,71,0.2876188897259916],[123,163,72,0.2865676706365997],[123,163,73,0.2855425255761464],[123,163,74,0.2845678443730457],[123,163,75,0.2836624017451815],[123,163,76,0.28283874639687023],[123,163,77,0.2821028131639462],[123,163,78,0.2814537626958762],[123,163,79,0.28088405281084394],[123,164,64,0.29291022140514644],[123,164,65,0.29247381615627327],[123,164,66,0.2918006321026002],[123,164,67,0.29093937197216163],[123,164,68,0.289933863206502],[123,164,69,0.28881900837433466],[123,164,70,0.2876304850597177],[123,164,71,0.28640331298552324],[123,164,72,0.28517033189177116],[123,164,73,0.2839608863709583],[123,164,74,0.28279972383283775],[123,164,75,0.2817061113930838],[123,164,76,0.28069317710108327],[123,164,77,0.2797674805450788],[123,164,78,0.2789288175015321],[123,164,79,0.2781702629335146],[123,165,64,0.29254096042069777],[123,165,65,0.2919377357543],[123,165,66,0.2910934369486215],[123,165,67,0.29005980031332135],[123,165,68,0.28888114227299105],[123,165,69,0.28759111247062363],[123,165,70,0.28622455268885305],[123,165,71,0.2848160413181189],[123,165,72,0.28339830329130095],[123,165,73,0.28200083190459774],[123,165,74,0.2806487288902925],[123,165,75,0.2793617687221343],[123,165,76,0.2781536927476095],[123,165,77,0.2770317383567935],[123,165,78,0.275996408018302],[123,165,79,0.27504148264281003],[123,166,64,0.2917880183693758],[123,166,65,0.2910177394391512],[123,166,66,0.2900016902864964],[123,166,67,0.28879444941830223],[123,166,68,0.2874407328669583],[123,166,69,0.28597292502134253],[123,166,70,0.2844250220007442],[123,166,71,0.2828311556587144],[123,166,72,0.2812239389428314],[123,166,73,0.2796330274517135],[123,166,74,0.27808390372846115],[123,166,75,0.27659689043909447],[123,166,76,0.2751863981920424],[123,166,77,0.27386041336375005],[123,166,78,0.27262023090963666],[123,166,79,0.2714604367627092],[123,167,64,0.29064139114176946],[123,167,65,0.2897029936634506],[123,167,66,0.28851365740996815],[123,167,67,0.2871305405908615],[123,167,68,0.28559867419751694],[123,167,69,0.2839492229823628],[123,167,70,0.2822153802499683],[123,167,71,0.28043087246261],[123,167,72,0.2786282435817441],[123,167,73,0.27683735929831826],[123,167,74,0.2750841378444844],[123,167,75,0.27338951368413905],[123,167,76,0.2717686399822939],[123,167,77,0.270230335357062],[123,167,78,0.2687767800266463],[123,167,79,0.26740346608101334],[123,168,64,0.28909532085530093],[123,168,65,0.2879871408440674],[123,168,66,0.28662234478200993],[123,168,67,0.2850603367250246],[123,168,68,0.2833463863914658],[123,168,69,0.28151054836829636],[123,168,70,0.2795853128809137],[123,168,71,0.2776040908913837],[123,168,72,0.275599441222826],[123,168,73,0.2736015206629202],[123,168,74,0.27163676387206925],[123,168,75,0.26972679952320683],[123,168,76,0.26788760869902767],[123,168,77,0.26612893117204117],[123,168,78,0.2644539247969932],[123,168,79,0.2628590828577366],[123,169,64,0.2871464908146386],[123,169,65,0.2858664963157726],[123,169,66,0.2843237025085115],[123,169,67,0.28257935884945273],[123,169,68,0.28067891006716483],[123,169,69,0.27865147699362613],[123,169,70,0.2765290050598611],[123,169,71,0.2743447285951162],[123,169,72,0.27213134480237905],[123,169,73,0.26991941324236784],[123,169,74,0.2677359877642251],[123,169,75,0.26560348742021517],[123,169,76,0.2635388124977406],[123,169,77,0.2615527113984779],[123,169,78,0.25964940369511447],[123,169,79,0.2578264643049191],[123,170,64,0.2847920008734919],[123,170,65,0.28333802559098115],[123,170,66,0.2816146083949678],[123,170,67,0.2796843866198606],[123,170,68,0.2775929334508837],[123,170,69,0.27536867999935105],[123,170,70,0.2730432431979607],[123,170,71,0.2706498668602451],[123,170,72,0.2682215468381699],[123,170,73,0.26578938372258426],[123,170,74,0.26338117011781437],[123,170,75,0.2610202191192334],[123,170,76,0.25872444021679164],[123,170,77,0.2565056684417378],[123,170,78,0.25436925217185874],[123,170,79,0.2523139046164141],[123,171,64,0.28202712093066556],[123,171,65,0.28039709971219934],[123,171,66,0.2784906314380663],[123,171,67,0.27637124068737257],[123,171,68,0.2740846050508446],[123,171,69,0.27165877628055035],[123,171,70,0.269125314694488],[123,171,71,0.26651770348054765],[123,171,72,0.263869429606785],[123,171,73,0.2612122939091415],[123,171,74,0.258574957462495],[123,171,75,0.255981730937674],[123,171,76,0.2534516132400677],[123,171,77,0.2509975853182199],[123,171,78,0.24862616462704942],[123,171,79,0.24633722533402],[123,172,64,0.27884282010311545],[123,172,65,0.2770350262977302],[123,172,66,0.2749435724229478],[123,172,67,0.2726323446953781],[123,172,68,0.2701471297354663],[123,172,69,0.2675159737690734],[123,172,70,0.2647707039769103],[123,172,71,0.26194531156496487],[123,172,72,0.25907399320381647],[123,172,73,0.2561894230084802],[123,172,74,0.2533212622226485],[123,172,75,0.2504949133676519],[123,172,76,0.2477305252088276],[123,172,77,0.245042254483783],[123,172,78,0.24243778993200657],[123,172,79,0.23991814376735116],[123,173,64,0.27522306891963666],[123,173,65,0.2732363536859433],[123,173,66,0.2709587791065179],[123,173,67,0.26845406447275744],[123,173,68,0.2657681458842491],[123,173,69,0.26292949735506693],[123,173,70,0.25997058275232077],[123,173,71,0.25692620234338787],[123,173,72,0.25383149970977376],[123,173,73,0.25072020045863797],[123,173,74,0.24762308993981003],[123,173,75,0.24456673677248772],[123,173,76,0.24157246857780124],[123,173,77,0.2386556059045579],[123,173,78,0.2358249599294709],[123,173,79,0.23308259911398013],[123,174,64,0.2711419116715878],[123,174,65,0.2689759453798697],[123,174,66,0.2665122332683282],[123,174,67,0.26381382179810564],[123,174,68,0.26092688109307616],[123,174,69,0.2578808010520179],[123,174,70,0.25470909221443055],[123,174,71,0.25144768987078625],[123,174,72,0.24813293153434188],[123,174,73,0.24479976756916666],[123,174,74,0.24148021221545315],[123,174,75,0.23820204184937432],[123,174,76,0.23498774690628468],[123,174,77,0.2318537434865127],[123,174,78,0.2288098502560385],[123,174,79,0.22585903585395023],[123,175,64,0.26657416421403574],[123,175,65,0.26422958060847845],[123,175,66,0.26158097224035165],[123,175,67,0.2586902381787704],[123,175,68,0.25560390316820575],[123,175,69,0.25235279645975833],[123,175,70,0.24897190774105904],[123,175,71,0.245498642814726],[123,175,72,0.24197077705957096],[123,175,73,0.2384246436677314],[123,175,74,0.2348935639235703],[123,175,75,0.23140652638582454],[123,175,76,0.22798712142529876],[123,175,77,0.22465273715990636],[123,175,78,0.2214140224207838],[123,175,79,0.2182746219815029],[123,176,64,0.2615414454251935],[123,176,65,0.25901969062632646],[123,176,66,0.2561882488543176],[123,176,67,0.2531073776831007],[123,176,68,0.24982405243198094],[123,176,69,0.2463710372225978],[123,176,70,0.24278520503634693],[123,176,71,0.23910574039665877],[123,176,72,0.23537207548369227],[123,176,73,0.2316220627359001],[123,176,74,0.2278903912160421],[123,176,75,0.22420725361424854],[123,176,76,0.22059727035079488],[123,176,77,0.21707867682986387],[123,176,78,0.21366277948646178],[123,176,79,0.21035368586579414],[123,177,64,0.25608162889053393],[123,177,65,0.25338509331446124],[123,177,66,0.2503738094863175],[123,177,67,0.247105887716174],[123,177,68,0.24362881575405274],[123,177,69,0.23997773917160758],[123,177,70,0.2361917717645869],[123,177,71,0.23231214259236405],[123,177,72,0.22838012276715156],[123,177,73,0.22443519031155218],[123,177,74,0.2205134403552917],[123,177,75,0.2166462475366687],[123,177,76,0.21285918706389517],[123,177,77,0.2091712204796072],[123,177,78,0.2055941517621322],[123,177,79,0.20213235899355508],[123,178,64,0.25023602483352686],[123,178,65,0.24736822890177199],[123,178,66,0.24418125830034357],[123,178,67,0.24073058444190507],[123,178,68,0.23706424195506615],[123,178,69,0.23322014834244545],[123,178,70,0.2292399618490286],[123,178,71,0.22516717223518798],[123,178,72,0.2210450274491222],[123,178,73,0.21691469963880514],[123,178,74,0.21281369774472406],[123,178,75,0.208774533509618],[123,178,76,0.2048236473312602],[123,178,77,0.20098059997260487],[123,178,78,0.1972575357340455],[123,178,79,0.1936589222890795],[123,179,64,0.24404872055597132],[123,179,65,0.24101445169818414],[123,179,66,0.23765728357120114],[123,179,67,0.23402959441153323],[123,179,68,0.2301799781446371],[123,179,69,0.22614945119546753],[123,179,70,0.22198245913294354],[123,179,71,0.21772491262494176],[123,179,72,0.21342212417137998],[123,179,73,0.20911698499308398],[123,179,74,0.2048483892620584],[123,179,75,0.20064991245472868],[123,179,76,0.19654875020060228],[123,179,77,0.19256492358813246],[123,179,78,0.1887107564810589],[123,179,79,0.18499062999610646],[123,180,64,0.2375658577689034],[123,180,65,0.2343712600606842],[123,180,66,0.23085082557464154],[123,180,67,0.22705344284923254],[123,180,68,0.22302825975048432],[123,180,69,0.21881964796371337],[123,180,70,0.21447501633174548],[123,180,71,0.21004279550751428],[123,180,72,0.20557039563586188],[123,180,73,0.2011024044408165],[123,180,74,0.1966790328199971],[123,180,75,0.1923348146457142],[123,180,76,0.18809756706527675],[123,180,77,0.18398761718446083],[123,180,78,0.18001730061176785],[123,180,79,0.17619073694088766],[123,181,64,0.23083484595636797],[123,181,65,0.22748746374516954],[123,181,66,0.22381218522002405],[123,181,67,0.21985408780118093],[123,181,68,0.21566285348619285],[123,181,69,0.21128638843142517],[123,181,70,0.20677516865092638],[123,181,71,0.20218017889078074],[123,181,72,0.19755090257194538],[123,181,73,0.19293355173994456],[123,181,74,0.18836954400962008],[123,181,75,0.1838942330940903],[123,181,76,0.17953589910320192],[123,181,77,0.17531500439149972],[123,181,78,0.17124372033278848],[123,181,79,0.16732573000159137],[123,182,64,0.22390351084782528],[123,182,65,0.22041228773107138],[123,182,66,0.21659207253609764],[123,182,67,0.2124838992914888],[123,182,68,0.20813795244433395],[123,182,69,0.20360576938775968],[123,182,70,0.19894092138993327],[123,182,71,0.19419691411172063],[123,182,72,0.18942522124323719],[123,182,73,0.18467355704592334],[123,182,74,0.17998439464521582],[123,182,75,0.17539373652403487],[123,182,76,0.17093014326780273],[123,182,77,0.16661402621099825],[123,182,78,0.16245720923696225],[123,182,79,0.15846276459064226],[123,183,64,0.2168191770068487],[123,183,65,0.21319441153814267],[123,183,66,0.20924059405446513],[123,183,67,0.2049945825644471],[123,183,68,0.20050702244033453],[123,183,69,0.1958330929423543],[123,183,70,0.19102941079821978],[123,183,71,0.18615190152061137],[123,183,72,0.18125388798012299],[123,183,73,0.17638441605031935],[123,183,74,0.17158682399793726],[123,183,75,0.16689756190174673],[123,183,76,0.16234526698969232],[123,183,77,0.15795010038902033],[123,183,78,0.15372335039178253],[123,183,79,0.1496673069521402],[123,184,64,0.20962768347523827],[123,184,65,0.2058809429869043],[123,184,66,0.2018061780691158],[123,184,67,0.19743604442877447],[123,184,68,0.19282159867175713],[123,184,69,0.1880215848325568],[123,184,70,0.1830955373976758],[123,184,71,0.1781016341018775],[123,184,72,0.17309485018457227],[123,184,73,0.16812534714654995],[123,184,74,0.16323710248071774],[123,184,75,0.1584667864674815],[123,184,76,0.15384289173832705],[123,184,77,0.14938512092329276],[123,184,78,0.14510403731296212],[123,184,79,0.1410009830870105],[123,185,64,0.2023723313425102],[123,185,65,0.1985163252857946],[123,185,66,0.19433443668386954],[123,185,67,0.18985520165567782],[123,185,68,0.18513003169723238],[123,185,69,0.1802210717961435],[123,185,70,0.17519057093517804],[123,185,71,0.1700987283073009],[123,185,72,0.1650019232173962],[123,185,73,0.15995117618936128],[123,185,74,0.15499084752786596],[123,185,75,0.1501575792086887],[123,185,76,0.14547948559240048],[123,185,77,0.14097559807657914],[123,185,78,0.13665556842513263],[123,185,79,0.13251963514334147],[123,186,64,0.19509276204094128],[123,186,65,0.19114117625908725],[123,186,66,0.18686696349269244],[123,186,67,0.1822947303186334],[123,186,68,0.1774761816792197],[123,186,69,0.17247661702825628],[123,186,70,0.16736072608009409],[123,186,71,0.16219044133580587],[123,186,72,0.15702325254519806],[123,186,73,0.15191074839118754],[123,186,74,0.14689739139952515],[123,186,75,0.1420195317101008],[123,186,76,0.1373046649759922],[123,186,77,0.13277093928617426],[123,186,78,0.12842691564083525],[123,186,79,0.12427158614803485],[123,187,64,0.19119913956688506],[123,187,65,0.1861865359627809],[123,187,66,0.18096171708240472],[123,187,67,0.17553925467965278],[123,187,68,0.16996493252190853],[123,187,69,0.16482711268914757],[123,187,70,0.15964570793627877],[123,187,71,0.1544171740569539],[123,187,72,0.14919978049665852],[123,187,73,0.14404536688151806],[123,187,74,0.13899820063560198],[123,187,75,0.1340940683230767],[123,187,76,0.1293596057362419],[123,187,77,0.12481187139061252],[123,187,78,0.12045816773185775],[123,187,79,0.1162961140100055],[123,188,64,0.1935510859684458],[123,188,65,0.18841538648712786],[123,188,66,0.18307239616911286],[123,188,67,0.1775333150227987],[123,188,68,0.17184397677006416],[123,188,69,0.16606893272028297],[123,188,70,0.16027088587196037],[123,188,71,0.15450858442305065],[123,188,72,0.1488353156484308],[123,188,73,0.14329761830967272],[123,188,74,0.13793421905585457],[123,188,75,0.13277519792789327],[123,188,76,0.12784138772962425],[123,188,77,0.12314401167986307],[123,188,78,0.11868456341519115],[123,188,79,0.1144549330754327],[123,189,64,0.1959494843722001],[123,189,65,0.19069487226201973],[123,189,66,0.1852389617789656],[123,189,67,0.17959005072547773],[123,189,68,0.17379397301906],[123,189,69,0.16791719891180432],[123,189,70,0.16202363107601178],[123,189,71,0.15617254523793334],[123,189,72,0.1504171873126755],[123,189,73,0.14480358342092842],[123,189,74,0.13936956795691186],[123,189,75,0.13414403454175042],[123,189,76,0.1291464143587305],[123,189,77,0.124386386029812],[123,189,78,0.11986382086047366],[123,189,79,0.1155689669545742],[123,190,64,0.19839574383682235],[123,190,65,0.1930264600681651],[123,190,66,0.18746284871642138],[123,190,67,0.18171082722351242],[123,190,68,0.17581618553192627],[123,190,69,0.1698468691028487],[123,190,70,0.16386755539759387],[123,190,71,0.15793765433352097],[123,190,72,0.15211001173508418],[123,190,73,0.1464298196515252],[123,190,74,0.1409337384154729],[123,190,75,0.13564923499307263],[123,190,76,0.13059414185052295],[123,190,77,0.12577644023718867],[123,190,78,0.12119427146589021],[123,190,79,0.11683617945844549],[123,191,64,0.20088119210823968],[123,191,65,0.19540122791587275],[123,191,66,0.1897347874018612],[123,191,67,0.18388595443303107],[123,191,68,0.17790044108616432],[123,191,69,0.17184722541333736],[123,191,70,0.16579134261162837],[123,191,71,0.1597919567566197],[123,191,72,0.1539011721120009],[123,191,73,0.14816304505013828],[123,191,74,0.14261280116134092],[123,191,75,0.1372762618177191],[123,191,76,0.13216948414406637],[123,191,77,0.12729861803615972],[123,191,78,0.12265998356030294],[123,191,79,0.11824037176857755],[123,192,64,0.20338553639927692],[123,192,65,0.19779829606163862],[123,192,66,0.19203321554268515],[123,192,67,0.18609308349286244],[123,192,68,0.18002351644691564],[123,192,69,0.17389411647434014],[123,192,70,0.16776989598586914],[123,192,71,0.16170943040098124],[123,192,72,0.15576377750499104],[123,192,73,0.14997559106233035],[123,192,74,0.144378432969976],[123,192,75,0.13899628793499536],[123,192,76,0.13384328435905885],[123,192,77,0.1289236248134465],[123,192,78,0.12423172919455656],[123,192,79,0.11975259336380392],[123,193,64,0.20587524584784478],[123,193,65,0.20018318127162119],[123,193,66,0.19432261685885013],[123,193,67,0.18829553630217427],[123,193,68,0.18214746651560812],[123,193,69,0.17594829861028075],[123,193,70,0.1697627121315284],[123,193,71,0.16364841592872006],[123,193,72,0.15765517467482673],[123,193,73,0.15182402334709272],[123,193,74,0.14618667366554833],[123,193,75,0.14076511619777587],[123,193,76,0.1355714215493463],[123,193,77,0.13060774377254789],[123,193,78,0.12586652884537597],[123,193,79,0.1213309307996645],[123,194,64,0.20830185395913262],[123,194,65,0.20250607266060236],[123,194,66,0.1965517852446741],[123,194,67,0.1904405663105382],[123,194,68,0.1842178917103416],[123,194,69,0.17795372693006134],[123,194,70,0.17171221851129267],[123,194,71,0.16555002738375443],[123,194,72,0.15951546099862235],[123,194,73,0.1536477873641559],[123,194,74,0.14797673470292916],[123,194,75,0.14252218017283194],[123,194,76,0.13729403081668057],[123,194,77,0.13229229963054362],[123,194,78,0.12750737937263745],[123,194,79,0.12292051647416861],[123,195,64,0.21060085193959446],[123,195,65,0.20470073854054044],[123,195,66,0.1986527593355246],[123,195,67,0.1924583300011942],[123,195,68,0.1861629563986766],[123,195,69,0.17983663532377525],[123,195,70,0.17354293289306585],[123,195,71,0.16733741100067917],[123,195,72,0.1612668634044272],[123,195,73,0.15536872808262436],[123,195,74,0.1496706793156781],[123,195,75,0.144190402679827],[123,195,76,0.13893555587397569],[123,195,77,0.13390391803717472],[123,195,78,0.12908372995772127],[123,195,79,0.12445422732630036],[123,196,64,0.21272549416897235],[123,196,65,0.2067202277501892],[123,196,66,0.20057827749820684],[123,196,67,0.1943010496509393],[123,196,68,0.18793416361390922],[123,196,69,0.18154767457698984],[123,196,70,0.1752045845701053],[123,196,71,0.16895936133570463],[123,196,72,0.16285727697968597],[123,196,73,0.15693391769794154],[123,196,74,0.15121486777897786],[123,196,75,0.14571557082604003],[123,196,76,0.14044137088589048],[123,196,77,0.13538773591856756],[123,196,78,0.13054066579684895],[123,196,79,0.1258772867868088],[123,197,64,0.21467176275984304],[123,197,65,0.20856266343711538],[123,197,66,0.20232829392400833],[123,197,67,0.19597021930454536],[123,197,68,0.18953419446516084],[123,197,69,0.18309023724896123],[123,197,70,0.176700699985226],[123,197,71,0.1704188822197193],[123,197,72,0.16428847056163406],[123,197,73,0.1583431446013844],[123,197,74,0.1526063518542788],[123,197,75,0.1470912544373547],[123,197,76,0.14180084994014455],[123,197,77,0.13672826870751256],[123,197,78,0.13185724951768296],[123,197,79,0.12716279541210132],[123,198,64,0.21643810877858438],[123,198,65,0.21022834017540187],[123,198,66,0.2039046230003872],[123,198,67,0.1974688724414694],[123,198,68,0.19096694494644856],[123,198,69,0.1844686104184783],[123,198,70,0.1780353920855319],[123,198,71,0.17171927635339485],[123,198,72,0.1655622522418218],[123,198,73,0.15959601185597988],[123,198,74,0.1538418146083744],[123,198,75,0.1483105176679342],[123,198,76,0.1430027748761286],[123,198,77,0.13790940613746397],[123,198,78,0.13301193906720193],[123,198,79,0.12828332446341606],[123,199,64,0.21802230804012157],[123,199,65,0.21171640688471957],[123,199,66,0.2053074793121123],[123,199,67,0.1987979985622017],[123,199,68,0.19223384380701436],[123,199,69,0.185684235655569],[123,199,70,0.17920961649542394],[123,199,71,0.17286046200740296],[123,199,72,0.166676918198492],[123,199,73,0.16068859422524143],[123,199,74,0.15491451348689342],[123,199,75,0.1493632252383566],[123,199,76,0.14403307874625226],[123,199,77,0.13891266178900957],[123,199,78,0.13398140508813616],[123,199,79,0.12921035405294978],[123,200,64,0.21942205107108906],[123,200,65,0.2130255157667173],[123,200,66,0.20653620015094495],[123,200,67,0.1999573544879926],[123,200,68,0.1933347671117124],[123,200,69,0.18673673946437344],[123,200,70,0.18022232816303468],[123,200,71,0.17384026356577148],[123,200,72,0.16762868198209965],[123,200,73,0.16161500807773754],[123,200,74,0.15581598971961746],[123,200,75,0.15023788728783777],[123,200,76,0.14487681926461102],[123,200,77,0.13971926569868534],[123,200,78,0.1347427309408257],[123,200,79,0.12991656685227865],[123,201,64,0.22063549352734033],[123,201,65,0.21415443489538974],[123,201,66,0.20758993635439785],[123,201,67,0.20094625043238376],[123,201,68,0.19426893591486263],[123,201,69,0.18762495707294752],[123,201,70,0.1810716434083656],[123,201,71,0.17465572122205664],[123,201,72,0.16841313822897525],[123,201,73,0.16236903230723485],[123,201,74,0.15653784639606402],[123,201,75,0.15092359134825314],[123,201,76,0.1455202583369843],[123,201,77,0.14031238221649628],[123,201,78,0.13527575704460015],[123,201,79,0.13037830479296889],[123,202,64,0.22166176686692501],[123,202,65,0.21510262434073524],[123,202,66,0.20846831145422517],[123,202,67,0.2017643109524848],[123,202,68,0.19503579730863463],[123,202,69,0.1883479500075653],[123,202,70,0.18175600800731537],[123,202,71,0.17530442067540175],[123,202,72,0.1690267618750066],[123,202,73,0.1629457815724881],[123,202,74,0.15707359675032898],[123,202,75,0.15141202321200242],[123,202,76,0.1459530496709442],[123,202,77,0.14067945532717743],[123,202,78,0.13556557195569757],[123,202,79,0.130578191360753],[123,203,64,0.22250144904064995],[123,203,65,0.21587077567036245],[123,203,66,0.20917204908602136],[123,203,67,0.20241221086533406],[123,203,68,0.19563588909238147],[123,203,69,0.18890601788365213],[123,203,70,0.18227537195068516],[123,203,71,0.17578584368968858],[123,203,72,0.16946844396935296],[123,203,73,0.163343433201376],[123,203,74,0.15742058424759928],[123,203,75,0.15169957853199026],[123,203,76,0.14617053654369067],[123,203,77,0.1408146837412278],[123,203,78,0.1356051527012342],[123,203,79,0.1305079221977642],[123,204,64,0.22315699492066018],[123,204,65,0.21646131463605908],[123,204,66,0.20970356857866837],[123,204,67,0.20289238618821676],[123,204,68,0.1960716882903468],[123,204,69,0.1893017048351479],[123,204,70,0.18263237151662018],[123,204,71,0.1761027403889999],[123,204,72,0.16974106520956833],[123,204,73,0.16356500913736466],[123,204,74,0.15758197611022481],[123,204,75,0.15178956704977392],[123,204,76,0.14617616187515145],[123,204,77,0.1407216281434576],[123,204,78,0.13539815698163227],[123,204,79,0.13017122683063204],[123,205,64,0.22363312614342964],[123,205,65,0.21687886681195986],[123,205,66,0.2100675486065451],[123,205,67,0.20320972013166905],[123,205,68,0.19634844372186047],[123,205,69,0.18954080098873227],[123,205,70,0.18283351928857214],[123,205,71,0.17626252416610688],[123,205,72,0.16985310833360898],[123,205,73,0.16362021433148669],[123,205,74,0.1575688319579201],[123,205,75,0.15169451139619503],[123,205,76,0.14598399281366597],[123,205,77,0.1404159530577764],[123,205,78,0.1349618699356246],[123,205,79,0.12958700443397994],[123,206,64,0.22393717999787166],[123,206,65,0.2171306859086155],[123,206,66,0.21027145874916323],[123,206,67,0.2033722041407248],[123,206,68,0.19647499280114653],[123,206,69,0.1896333393695843],[123,206,70,0.18289040273925175],[123,206,71,0.17627869007806127],[123,206,72,0.16982031051124089],[123,206,73,0.16352733300028868],[123,206,74,0.15740224926450064],[123,206,75,0.15143854244739471],[123,206,76,0.14562136209086743],[123,206,77,0.13992830584674532],[123,206,78,0.13433030823184433],[123,206,79,0.1287926366182766],[123,207,64,0.22407999728256092],[123,207,65,0.21722803435630503],[123,207,66,0.21032729160381242],[123,207,67,0.20339286366297102],[123,207,68,0.1964657123033035],[123,207,69,0.18959539784190688],[123,207,70,0.18282116446449273],[123,207,71,0.1761718070041632],[123,207,72,0.169666012559632],[123,207,73,0.16331279593082598],[123,207,74,0.15711202946686345],[123,207,75,0.15105506779375252],[123,207,76,0.14512546776611984],[123,207,77,0.13929980387068266],[123,207,78,0.1335485792021767],[123,207,79,0.1274075862318167],[123,208,64,0.2234448595636833],[123,208,65,0.21718780257868534],[123,208,66,0.21025359508141095],[123,208,67,0.2032916108196808],[123,208,68,0.19634156674319989],[123,208,69,0.18944871057969967],[123,208,70,0.1826480588364817],[123,208,71,0.17596443641796092],[123,208,72,0.16941290920685262],[123,208,73,0.16299929908294652],[123,208,74,0.15672078171284687],[123,208,75,0.1505665673340367],[123,208,76,0.1445186646514308],[123,208,77,0.13855272786587775],[123,208,78,0.13198486905819112],[123,208,79,0.12337503537938108],[123,209,64,0.2223595568946752],[123,209,65,0.21702682271659823],[123,209,66,0.21006840142120572],[123,209,67,0.2030872602950595],[123,209,68,0.19612171673412393],[123,209,69,0.18921238854247557],[123,209,70,0.18238980088323886],[123,209,71,0.17567460663881768],[123,209,72,0.16907811191325653],[123,209,73,0.16260287153586608],[123,209,74,0.1562433546288277],[123,209,75,0.14998668021053999],[123,209,76,0.14381342272050554],[123,209,77,0.1364383964574332],[123,209,78,0.12795265551410406],[123,209,79,0.119287347650929],[123,210,64,0.22119099476128493],[123,210,65,0.21568092643461623],[123,210,66,0.20978780389192125],[123,210,67,0.2027960269551087],[123,210,68,0.19582212587473394],[123,210,69,0.18890182578669334],[123,210,70,0.18206095745651107],[123,210,71,0.17531586374577868],[123,210,72,0.16867401875414076],[123,210,73,0.16213470347535192],[123,210,74,0.15568973775267203],[123,210,75,0.14892421861095453],[123,210,76,0.1407784610747984],[123,210,77,0.1324129094807496],[123,210,78,0.1238599011722392],[123,210,79,0.11515538124751304],[123,211,64,0.21993665703779156],[123,211,65,0.2141427754229611],[123,211,66,0.2082296200453788],[123,211,67,0.20216514491032184],[123,211,68,0.19545607216458716],[123,211,69,0.18852931198384312],[123,211,70,0.18167265853023618],[123,211,71,0.17489807702596522],[123,211,72,0.16820920726160116],[123,211,73,0.16087158062429496],[123,211,74,0.1530712494565724],[123,211,75,0.1450303557645515],[123,211,76,0.1367721307404343],[123,211,77,0.12832465840476398],[123,211,78,0.11971988017829989],[123,211,79,0.1109925616937422],[123,212,64,0.21859451057869725],[123,212,65,0.21250706160081675],[123,212,66,0.20630432114688702],[123,212,67,0.199952200588689],[123,212,68,0.19341215956269361],[123,212,69,0.18665441922677542],[123,212,70,0.17965950200022535],[123,212,71,0.17241740378438183],[123,212,72,0.1649267471362672],[123,212,73,0.1571939084671148],[123,212,74,0.14923212004194744],[123,212,75,0.14106054758422742],[123,212,76,0.13270334431005085],[123,212,77,0.12418868222930929],[123,212,78,0.11554776155825273],[123,212,79,0.10681379908628388],[123,213,64,0.217162955255987],[123,213,65,0.21077354967000522],[123,213,66,0.20427478427582424],[123,213,67,0.1976307913489461],[123,213,68,0.1908053131425484],[123,213,69,0.1837740749903772],[123,213,70,0.17652270403591552],[123,213,71,0.1690457165099814],[123,213,72,0.16134558322131662],[123,213,73,0.15343178517888906],[123,213,74,0.14531986040017053],[123,213,75,0.1370304429637757],[123,213,76,0.12858829536154118],[123,213,77,0.1200213351945116],[123,213,78,0.11135965724117036],[123,213,79,0.10263455190214639],[123,214,64,0.21564082400036788],[123,214,65,0.20894283254029214],[123,214,66,0.20214341817210257],[123,214,67,0.19520525818223183],[123,214,68,0.18809451016437695],[123,214,69,0.1807923727166823],[123,214,70,0.17328948479739048],[123,214,71,0.16558473454120684],[123,214,72,0.15768424186259156],[123,214,73,0.14960034786242696],[123,214,74,0.14135061236305824],[123,214,75,0.13295682087646735],[123,214,76,0.12444400228268723],[123,214,77,0.11583945846089072],[123,214,78,0.10717180707587975],[123,214,79,0.09847003867574533],[123,215,64,0.21402743359995724],[123,215,65,0.20701629067050403],[123,215,66,0.1999136683172376],[123,215,67,0.19268116466404978],[123,215,68,0.18528746006491303],[123,215,69,0.17771911026879897],[123,215,70,0.16997159256876324],[123,215,71,0.16204794554399565],[123,215,72,0.15395767483136708],[123,215,73,0.14571568273807592],[123,215,74,0.13734122327992232],[123,215,75,0.12885688418478056],[123,215,76,0.12028759734857666],[123,215,77,0.11165967917209141],[123,215,78,0.10299990214351601],[123,215,79,0.0943345989617804],[123,216,64,0.21232268704509635],[123,216,65,0.20499610309104363],[123,216,66,0.19758993859090143],[123,216,67,0.19006513019388419],[123,216,68,0.1823929597372943],[123,216,69,0.1745651408858197],[123,216,70,0.16658173893950812],[123,216,71,0.15844965358181567],[123,216,72,0.15018145499419802],[123,216,73,0.1417942610022755],[123,216,74,0.13330865708279943],[123,216,75,0.12474766099090863],[123,216,76,0.11613573369030282],[123,216,77,0.10749783818577036],[123,216,78,0.09885854777054155],[123,216,79,0.09024120510835017],[123,217,64,0.21052722824054707],[123,217,65,0.20288531087668354],[123,217,66,0.1951775664710036],[123,217,67,0.1873647188293454],[123,217,68,0.17942069907933514],[123,217,69,0.17134210140398967],[123,217,70,0.1631332582816124],[123,217,71,0.15480458070918915],[123,217,72,0.14637133277306758],[123,217,73,0.13785246437511098],[123,217,74,0.1292695041701209],[123,217,75,0.12064551467607892],[123,217,76,0.11200411141762365],[123,217,77,0.10336854785615347],[123,217,78,0.094760867749895],[123,217,79,0.08620112647246664],[123,218,64,0.20864264993533094],[123,218,65,0.20068793387060008],[123,218,66,0.19268285254674766],[123,218,67,0.18458838446893677],[123,218,68,0.1763811259214794],[123,218,69,0.16806220395943974],[123,218,70,0.15963983591554992],[123,218,71,0.15112754356130964],[123,218,72,0.14254287496716017],[123,218,73,0.13390620135878445],[123,218,74,0.12523959123098183],[123,218,75,0.11656576386237932],[123,218,76,0.1079071242494509],[123,218,77,0.09928488134814362],[123,218,78,0.09071825137898595],[123,218,79,0.0822237478153319],[123,219,64,0.20667175574531169],[123,219,65,0.19840914148912484],[123,219,66,0.1901131451467976],[123,219,67,0.18174547317494838],[123,219,68,0.17328537113204392],[123,219,69,0.16473809199412862],[123,219,70,0.15611530582905286],[123,219,71,0.14743320586403708],[123,219,72,0.13871118693782283],[123,219,73,0.12997061530126555],[123,219,74,0.12123369221037811],[123,219,75,0.11252241361453116],[123,219,76,0.10385762809497467],[123,219,77,0.0952581950564691],[123,219,78,0.0867402450210086],[123,219,79,0.07831654371601826],[123,220,64,0.2046188771638138],[123,220,65,0.19605547846122237],[123,220,66,0.18747698091397258],[123,220,67,0.17884628346249204],[123,220,68,0.17014523473756094],[123,220,69,0.1613827614328005],[123,220,70,0.15257351886497886],[123,220,71,0.14373590784706575],[123,220,72,0.1348907192229066],[123,220,73,0.12605988542993962],[123,220,74,0.11726534169193815],[123,220,75,0.10852799928043007],[123,220,76,0.09986683311428196],[123,220,77,0.09129808579355146],[123,220,78,0.08283458998972176],[123,220,79,0.0744852109386891],[123,221,64,0.20249024647017178],[123,221,65,0.1936351463762708],[123,221,66,0.18478428218276213],[123,221,67,0.17590218541127203],[123,221,68,0.16697323393263505],[123,221,69,0.1580095479416339],[123,221,70,0.14902828234375098],[123,221,71,0.14004957359847744],[123,221,72,0.13109515970812008],[123,221,73,0.12218712208718893],[123,221,74,0.1133467520470267],[123,221,75,0.10459354444628914],[123,221,76,0.09594432086842185],[123,221,77,0.08741248449424392],[123,221,78,0.07900740864497424],[123,221,79,0.07073396077753252],[123,222,64,0.2002944264545429],[123,222,65,0.19115834192779965],[123,222,66,0.18204661203587674],[123,222,67,0.17292579948276346],[123,222,68,0.16378271388623922],[123,222,69,0.1546321812182714],[123,222,70,0.14549337213129132],[123,222,71,0.13638769745053142],[123,222,72,0.1273374125404877],[123,222,73,0.11836435746263282],[123,222,74,0.10948883576661461],[123,222,75,0.10072863455379787],[123,222,76,0.09209818824373656],[123,222,77,0.08360788826294634],[123,222,78,0.07526354066528154],[123,222,79,0.06706597348347318],[123,223,64,0.19804279787879459],[123,223,65,0.18863765274866073],[123,223,66,0.17927748793032125],[123,223,67,0.16993123594641488],[123,223,68,0.16058802227911967],[123,223,69,0.15126490729741757],[123,223,70,0.14198261820439406],[123,223,71,0.1327634105337102],[123,223,72,0.12362966502176742],[123,223,73,0.11460263317444536],[123,223,74,0.10570133445416567],[123,223,75,0.09694160779186259],[123,223,76,0.08833531990284114],[123,223,77,0.0798897326576655],[123,223,78,0.07160703153339662],[123,223,79,0.06348401694601064],[123,224,64,0.1957501055868597],[123,224,65,0.1860885117337413],[123,224,66,0.17649275479112975],[123,224,67,0.16693439583323688],[123,224,68,0.1574047485288538],[123,224,69,0.1479226798850118],[123,224,70,0.13851006480084554],[123,224,71,0.12918962867734646],[123,224,72,0.11998354376622339],[123,224,73,0.11091218610306985],[123,224,74,0.10199305601210128],[123,224,75,0.09323986493221442],[123,224,76,0.08466179107269305],[123,224,77,0.07626290616392567],[123,224,78,0.06804177532838436],[123,224,79,0.05999123185937711],[123,225,64,0.19343506416299147],[123,225,65,0.183529710739126],[123,225,66,0.17371101847126474],[123,225,67,0.16395333434305195],[123,225,68,0.15425002867444748],[123,225,69,0.1446214217563698],[123,225,70,0.13509020627045157],[123,225,71,0.12567928286971558],[123,225,72,0.11641036144643951],[123,225,73,0.10730273392363995],[123,225,74,0.09837222159993168],[123,225,75,0.08963029982501236],[123,225,76,0.08108340252715175],[123,225,77,0.07273240885728934],[123,225,78,0.06457231396132802],[123,225,79,0.05659208564247977],[123,226,64,0.1911210240117117],[123,226,65,0.18098397453052958],[123,226,66,0.1709541404683067],[123,226,67,0.16100868763181345],[123,226,68,0.1511429169002213],[123,226,69,0.14137835726876466],[123,226,70,0.1317382997646169],[123,226,71,0.12224563351735161],[123,226,72,0.11292145548199312],[123,226,73,0.10378386181748112],[123,226,74,0.094846923977767],[123,226,75,0.08611985230636651],[123,226,76,0.0776063496559598],[123,226,77,0.0693041572851743],[123,226,78,0.06120479501979993],[123,226,79,0.05329349740504459],[123,227,64,0.18884014398059387],[123,227,65,0.17848279944635825],[123,227,66,0.16825270545723103],[123,227,67,0.15812976345548363],[123,227,68,0.14811109064586378],[123,227,69,0.1382192904186935],[123,227,70,0.1284781420036856],[123,227,71,0.11891044083142202],[123,227,72,0.10953661886926462],[123,227,73,0.10037355604109821],[123,227,74,0.0914335858034393],[123,227,75,0.08272369767109078],[123,227,76,0.07424493920384899],[123,227,77,0.06599201968453108],[123,227,78,0.05795311744270751],[123,227,79,0.05010989250782221],[123,228,64,0.18664237192644964],[123,228,65,0.1760784645897664],[123,228,66,0.16566087483037997],[123,228,67,0.15537217823037885],[123,228,68,0.14521119415549905],[123,228,69,0.13520143246969887],[123,228,70,0.12536701673301992],[123,228,71,0.11573053656478727],[123,228,72,0.10631168343101093],[123,228,73,0.09712608580255508],[123,228,74,0.08818434675380259],[123,228,75,0.07949128678078826],[123,228,76,0.07104539432520703],[123,228,77,0.0628384861991988],[123,228,78,0.054855579820447434],[123,228,79,0.047074978887766655],[123,229,64,0.18457322966456985],[123,229,65,0.17381933564329008],[123,229,66,0.1632294001132502],[123,229,67,0.15278865624628532],[123,229,68,0.14249751004147088],[123,229,69,0.13238015236806017],[123,229,70,0.1224608488879008],[123,229,71,0.11276181739073038],[123,229,72,0.10330188731575526],[123,229,73,0.09409536526229263],[123,229,74,0.08515110953119807],[123,229,75,0.07647181643895673],[123,229,76,0.06805352084518893],[123,229,77,0.059885313034851444],[123,229,78,0.051949273803786285],[123,229,79,0.04422062931044564],[123,230,64,0.18266741565713202],[123,230,65,0.1717423055878862],[123,230,66,0.16099698884325392],[123,230,67,0.15041936108540072],[123,230,68,0.14001130247821145],[123,230,69,0.12979743015209622],[123,230,70,0.11980191792110541],[123,230,71,0.11004641547556843],[123,230,72,0.10054874270975295],[123,230,73,0.09132179457274892],[123,230,74,0.08237265942602842],[123,230,75,0.07370195358516514],[123,230,76,0.06530337441643898],[123,230,77,0.05716347405451042],[123,230,78,0.04926165551031849],[123,230,79,0.04157039264878944],[123,231,64,0.18094967540259418],[123,231,65,0.1698736579048331],[123,231,66,0.1589911679402345],[123,231,67,0.14829277203332988],[123,231,68,0.13778171969367647],[123,231,69,0.12748279473463603],[123,231,70,0.11741983630772153],[123,231,71,0.10761371953585311],[123,231,72,0.0980810978890319],[123,231,73,0.08883335822780716],[123,231,74,0.07987579140628445],[123,231,75,0.07120698101772095],[123,231,76,0.06281841255676743],[123,231,77,0.05469430496617207],[123,231,78,0.046811666237584294],[123,231,79,0.039140574445998694],[123,232,64,0.1794356367733443],[123,232,65,0.16822989566826485],[123,232,66,0.15722911514613525],[123,232,67,0.1464265319378665],[123,232,68,0.13582667267118947],[123,232,69,0.12545424434316643],[123,232,70,0.11533251904086819],[123,232,71,0.10548139721182864],[123,232,72,0.09591621292523671],[123,232,73,0.08664675135895443],[123,232,74,0.07767648127741118],[123,232,75,0.06900200495773001],[123,232,76,0.06061272771392565],[123,232,77,0.05249074886470039],[123,232,78,0.044610975694657974],[123,232,79,0.03694146167156218],[123,233,64,0.17813260806108028],[123,233,65,0.1668185339600379],[123,233,66,0.15571845567790166],[123,233,67,0.1448282633943031],[123,233,68,0.13415368670155367],[123,233,69,0.12371914606682458],[123,233,70,0.11354714044460826],[123,233,71,0.10365641504507697],[123,233,72,0.09406084539309874],[123,233,73,0.0847685304945861],[123,233,74,0.07578109771348245],[123,233,75,0.06709322165986106],[123,233,76,0.0586923590874203],[123,233,77,0.05055870150011444],[123,233,78,0.04266534687811972],[123,233,79,0.03497869165269036],[123,234,64,0.17704033851547377],[123,234,65,0.1656388554513214],[123,234,66,0.1544580240097108],[123,234,67,0.14349635325656154],[123,234,68,0.13276072588153137],[123,234,69,0.12227511472031793],[123,234,70,0.11206107864701331],[123,234,71,0.10213605655529265],[123,234,72,0.09251234674441794],[123,234,73,0.08319628963312396],[123,234,74,0.0741876562090299],[123,234,75,0.06547924432716382],[123,234,76,0.05705668467817121],[123,234,77,0.04889845795783222],[123,234,78,0.040976124489882755],[123,234,79,0.033254767283665415],[123,235,64,0.17615174111332702],[123,235,65,0.16468262895135818],[123,235,66,0.15343859065979312],[123,235,67,0.1424207054339703],[123,235,68,0.13163699061493742],[123,235,69,0.12111087119308006],[123,235,70,0.11086284801145949],[123,235,71,0.10090893886217404],[123,235,72,0.09125976995977719],[123,235,73,0.08191986242180724],[123,235,74,0.07288711593670835],[123,235,75,0.06415249151785594],[123,235,76,0.05569989496232191],[123,235,77,0.04750626235732913],[123,235,78,0.0395418487112587],[123,235,79,0.031770720529282565],[123,236,64,0.1754535772475622],[123,236,65,0.16393479068028877],[123,236,66,0.1526435538163353],[123,236,67,0.14158346189344742],[123,236,68,0.13076368813107023],[123,236,69,0.12020708040715934],[123,236,70,0.1099330197745141],[123,236,71,0.0999560282425182],[123,236,72,0.09028498902608345],[123,236,73,0.0809225511619569],[123,236,74,0.07186472041657965],[123,236,75,0.06310063814407114],[123,236,76,0.05461254948922655],[123,236,77,0.04637596207140536],[123,236,78,0.03835999603601223],[123,236,79,0.030527926120420858],[123,237,64,0.17492707167428845],[123,237,65,0.16337405641875405],[123,237,66,0.15204956380110235],[123,237,67,0.14095965974172217],[123,237,68,0.13011474380457239],[123,237,69,0.11953713661649519],[123,237,70,0.10924509861463418],[123,237,71,0.09925162238354533],[123,237,72,0.0895637980839262],[123,237,73,0.08018235061358744],[123,237,74,0.07110135014359678],[123,237,75,0.062308097425897685],[123,237,76,0.05378318502443684],[123,237,77,0.04550073538253831],[123,237,78,0.03742881640994548],[123,237,79,0.029530035052943996],[123,238,64,0.17454184241841197],[123,238,65,0.16296679400295472],[123,238,66,0.15162035959291953],[123,238,67,0.14051105867138905],[123,238,68,0.1296506482416536],[123,238,69,0.11906105761027727],[123,238,70,0.10875948950733208],[123,238,71,0.09875741293651591],[123,238,72,0.0890600897948544],[123,238,73,0.07966625901759236],[123,238,74,0.07056797958866676],[123,238,75,0.06175063353199245],[123,238,76,0.05319308977641431],[123,238,77,0.04486802957007627],[123,238,78,0.0367424339129609],[123,238,79,0.028778233278607263],[123,239,64,0.17424154429863106],[123,239,65,0.1626535525170371],[123,239,66,0.15129406596535988],[123,239,67,0.1401740766570729],[123,239,68,0.129306894241026],[123,239,69,0.11871428138000416],[123,239,70,0.10841251344386624],[123,239,71,0.0984115852770706],[123,239,72,0.08871491402882091],[123,239,73,0.07931918423894967],[123,239,74,0.07021433620075135],[123,239,75,0.06138369842005913],[123,239,76,0.0528042647911655],[123,239,77,0.04444711691708287],[123,239,78,0.03627799181879167],[123,239,79,0.028257995104456382],[123,240,64,0.17394360114645546],[123,240,65,0.16235181393508957],[123,240,66,0.15098844220187324],[123,240,67,0.13986695045978448],[123,240,68,0.12900242373533327],[123,240,69,0.11841675548944039],[123,240,70,0.10812549795529924],[123,240,71,0.09813729125544465],[123,240,72,0.08845375397001481],[123,240,73,0.07906950014338335],[123,240,74,0.06997228342170675],[123,240,75,0.0611432688362634],[123,240,76,0.05255743257350836],[123,240,77,0.04418408990472728],[123,240,78,0.0359875512905669],[123,240,79,0.02792790652722245],[123,241,64,0.1735749439078947],[123,241,65,0.16198894859508636],[123,241,66,0.15063131566211566],[123,241,67,0.13951793679185148],[123,241,68,0.1286658984545989],[123,241,69,0.11809757687390807],[123,241,70,0.10782807184535784],[123,241,71,0.0978648608896286],[123,241,72,0.08820788466828725],[123,241,73,0.07884974295231983],[123,241,74,0.06977600150542537],[123,241,75,0.06096561009094159],[123,241,76,0.05239143166239103],[123,241,77,0.044020882655003785],[123,241,78,0.03581668416355728],[123,241,79,0.027737723668966343],[123,242,64,0.17307926736894663],[123,242,65,0.16150858701704962],[123,242,66,0.15016620223312754],[123,242,67,0.13907033252780363],[123,242,68,0.12824028029388967],[123,242,69,0.11769929430645897],[123,242,70,0.10746234733961281],[123,242,71,0.09753601222872905],[123,242,72,0.0879187445759386],[123,242,73,0.07860126049839326],[123,242,74,0.06956700945625173],[123,242,75,0.06079274206832242],[123,242,76,0.05224917269910635],[123,242,77,0.04390173648341539],[123,242,78,0.03571144034799133],[123,242,79,0.02763580749192182],[123,243,64,0.17241518731078997],[123,243,65,0.16086885346058455],[123,243,66,0.14955063191713586],[123,243,67,0.13848091180354882],[123,243,68,0.1276814014412148],[123,243,69,0.11717663319140971],[123,243,70,0.10698182036761876],[123,243,71,0.09710294634601069],[123,243,72,0.08753724220896925],[123,243,73,0.07827374470242407],[123,243,74,0.06929393423121247],[123,243,75,0.06057245251086578],[123,243,76,0.05207789939367055],[123,243,77,0.043773708293349284],[123,243,78,0.035619099550238675],[123,243,79,0.02757011100554324],[123,244,64,0.17155448842249893],[123,244,65,0.16004068855754472],[123,244,66,0.14875456071708767],[123,244,67,0.1377184451771751],[123,244,68,0.12695661093080374],[123,244,69,0.11649529008152609],[123,244,70,0.10635033311641852],[123,244,71,0.09652749669013999],[123,244,72,0.08702310905760391],[123,244,73,0.07782480223608335],[123,244,74,0.06891231032715762],[123,244,75,0.060258333344586884],[123,244,76,0.051829465815713044],[123,244,77,0.04358718935291672],[123,244,78,0.0354889283318948],[123,244,79,0.027489167762985836],[123,245,64,0.1704804644041926],[123,245,65,0.15900626238272036],[123,245,66,0.14775887009379388],[123,245,67,0.13676230201119385],[123,245,68,0.12604349864451841],[123,245,69,0.11563079778882893],[123,245,70,0.10554109956379845],[123,245,71,0.09578033333889471],[123,245,72,0.08634429912934286],[123,245,73,0.07721956360060928],[123,245,74,0.06838440984273116],[123,245,75,0.05980984001087406],[123,245,76,0.05146062986989718],[123,245,77,0.04329643422992985],[123,245,78,0.03527294222072373],[123,245,79,0.027343081322689786],[123,246,64,0.16918635181966984],[123,246,65,0.1577574794430971],[123,246,66,0.14655395537665833],[123,246,67,0.13560113733322404],[123,246,68,0.12492869786885626],[123,246,69,0.1145674620295215],[123,246,70,0.10453579475425202],[123,246,71,0.09484022273657747],[123,246,72,0.0854764355257602],[123,246,73,0.07643033084971874],[123,246,74,0.06767910308180972],[123,246,75,0.05919237372547762],[123,246,76,0.050933362749433816],[123,246,77,0.04286009957286957],[123,246,78,0.03492667247889185],[123,246,79,0.027084515222550825],[123,247,64,0.16767385937622992],[123,247,65,0.15629457717641476],[123,247,66,0.14513840461069],[123,247,67,0.13423166452223806],[123,247,68,0.12360676759305596],[123,247,69,0.11329737060781203],[123,247,70,0.10332370862936384],[123,247,71,0.09369334352787585],[123,247,72,0.08440230446689823],[123,247,73,0.0754362641772663],[123,247,74,0.06677174973619276],[123,247,75,0.058377386534542636],[123,247,76,0.050215174088137804],[123,247,77,0.042241792330356256],[123,247,78,0.03440993701681659],[123,247,79,0.026669682876130987],[123,248,64,0.16595179441827954],[123,248,65,0.15462481965022526],[123,248,66,0.14351776941371325],[123,248,67,0.1326575152484583],[123,248,68,0.12207915580325718],[123,248,69,0.11181947619969322],[123,248,70,0.1019009652656243],[123,248,71,0.09233265912539275],[123,248,72,0.08311139718306122],[123,248,73,0.07422310757608262],[123,248,74,0.06564412064986494],[123,248,75,0.057342508979778904],[123,248,76,0.04927945245085185],[123,248,77,0.04141062689798793],[123,248,78,0.03368761481452722],[123,248,79,0.026059336651766407],[123,249,64,0.1640347885192535],[123,249,65,0.15276128824221724],[123,249,66,0.1417034294982146],[123,249,67,0.1308881881657442],[123,249,68,0.12035324508749776],[123,249,69,0.11013875384510122],[123,249,70,0.10026980840578001],[123,249,71,0.09075734766496343],[123,249,72,0.08159950009260564],[123,249,73,0.0727829537533846],[123,249,74,0.06428435012477553],[123,249,75,0.056071700120008054],[123,249,76,0.04810582071387432],[123,249,77,0.04034179056946867],[123,249,78,0.03273042307671956],[123,249,79,0.025219755236370288],[123,250,64,0.16194212414162729],[123,250,65,0.1507217711595745],[123,250,66,0.13971155258051166],[123,250,67,0.1289380879143002],[123,250,68,0.11844148191518797],[123,250,69,0.10826543429411017],[123,250,70,0.09843795419359666],[123,250,71,0.08897229001119887],[123,250,72,0.07986833367517013],[123,250,73,0.07111404845958785],[123,250,74,0.06268691867838229],[123,250,75,0.05455541958401987],[123,250,76,0.046680505791044574],[123,250,77,0.0390171165485793],[123,250,78,0.03151569620263956],[123,250,79,0.024123728216122776],[123,251,64,0.15969666440446653],[123,251,65,0.14852775371667903],[123,251,66,0.1375621514530939],[123,251,67,0.12682565603611276],[123,251,68,0.11636059098998844],[123,251,69,0.10621431437749343],[123,251,70,0.09641801203416428],[123,251,71,0.08698761647343635],[123,251,72,0.07792524043083218],[123,251,73,0.06922063434954459],[123,251,74,0.06085266610458514],[123,251,75,0.05279082124851977],[123,251,76,0.044996722056047524],[123,251,77,0.03742566364851646],[123,251,78,0.030028165496392045],[123,251,79,0.022751536625045827],[123,252,64,0.15732388805147265],[123,252,65,0.14620351133607426],[123,252,66,0.13527824003358943],[123,252,67,0.12457259543524872],[123,252,68,0.11413087609648077],[123,252,69,0.10400414558394892],[123,252,70,0.09422697450256955],[123,252,71,0.08481831287954396],[123,252,72,0.07578292228718428],[123,252,73,0.06711283444865337],[123,252,74,0.058788834622739844],[123,252,75,0.05078196804565101],[123,252,76,0.04305506769814156],[123,252,77,0.035564301666369515],[123,252,78,0.02826073837819784],[123,252,79,0.021091928020619505],[123,253,64,0.1548510317462807],[123,253,65,0.14377530726368073],[123,253,66,0.13288509022240788],[123,253,67,0.1222031900267206],[123,253,68,0.11177560886546092],[123,253,69,0.1016571020225694],[123,253,70,0.09188577721011629],[123,253,71,0.08248388662925102],[123,253,72,0.07345922777594524],[123,253,73,0.06480657523869705],[123,253,74,0.05650914182217406],[123,253,75,0.0485400673052847],[123,253,76,0.040863933125169255],[123,253,77,0.033438301271420875],[123,253,78,0.026215275681051413],[123,253,79,0.01914308444172033],[123,254,64,0.15230634183449376],[123,254,65,0.14127069699455672],[123,254,66,0.1304095913994512],[123,254,67,0.11974372120987434],[123,254,68,0.10932050686909361],[123,254,69,0.0991983289288284],[123,254,70,0.08941892950857945],[123,254,71,0.08000809330932274],[123,254,72,0.07097698924806276],[123,254,73,0.06232354930954558],[123,254,74,0.05403388302202385],[123,254,75,0.046083725928146684],[123,254,76,0.03843992039464407],[123,254,77,0.031061927086919613],[123,254,78,0.02390336543056918],[123,254,79,0.01691358138870994],[123,255,64,0.14971843770121512],[123,255,65,0.13871794138764143],[123,255,66,0.1278797143661173],[123,255,67,0.11722198277306944],[123,255,68,0.10679330242355711],[123,255,69,0.09665557283369128],[123,255,70,0.08685421686764154],[123,255,71,0.07741872439856186],[123,255,72,0.06836391033017845],[123,255,73,0.05969121744197907],[123,255,74,0.051390062567455944],[123,255,75,0.04343922456621833],[123,255,76,0.035808272510444834],[123,255,77,0.028459032475600443],[123,255,78,0.021347091308301598],[123,255,79,0.014423335738254333],[123,256,64,0.14711578881563472],[123,256,65,0.13614553040394667],[123,256,66,0.1253240814892322],[123,256,67,0.11466689578296109],[123,256,68,0.10422340342052881],[123,256,69,0.09405889445596076],[123,256,70,0.08422247569641038],[123,256,71,0.07474745651928064],[123,256,72,0.06565250374395878],[123,256,73,0.05694284989224435],[123,256,74,0.04861155347202835],[123,256,75,0.040640809855510864],[123,256,76,0.03300331126808763],[123,256,77,0.025663654358585877],[123,256,78,0.018579793789567353],[123,256,79,0.011704540265651549],[123,257,64,0.14452630808363204],[123,257,65,0.13358181943922048],[123,257,66,0.12277164441191751],[123,257,67,0.11210822426360022],[123,257,68,0.10164164650625267],[123,257,69,0.0914404642647707],[123,257,70,0.08155744033230988],[123,257,71,0.07202976190848757],[123,257,72,0.06288007930242599],[123,257,73,0.054117607033895794],[123,257,74,0.04573928610586836],[123,257,75,0.0377310061429062],[123,257,76,0.0300688860188546],[123,257,77,0.022720611535856326],[123,257,78,0.015646828668759515],[123,257,79,0.008802590852244753],[123,258,64,0.14197777483889318],[123,258,65,0.1310554778811686],[123,258,66,0.12025215630474013],[123,258,67,0.10957706593754066],[123,258,68,0.09908079828027092],[123,258,69,0.08883506452712375],[123,258,70,0.07889623581299246],[123,258,71,0.06930538215419742],[123,258,72,0.06008918992887888],[123,258,73,0.051260950613549454],[123,258,74,0.042821619691078346],[123,258,75,0.03476094455095095],[123,258,76,0.027058660115834476],[123,258,77,0.019685750851045528],[123,258,78,0.012605777749463185],[123,258,79,0.005776268831612049],[123,259,64,0.13951188438088855],[123,259,65,0.12860920557089878],[123,259,66,0.1178095701067796],[123,259,67,0.10711892237773915],[123,259,68,0.09658815863038195],[123,259,69,0.08629192633251274],[123,259,70,0.07629003902219883],[123,259,71,0.06662733955737186],[123,259,72,0.057334494290689285],[123,259,73,0.04842886685879795],[123,259,74,0.03991547064283375],[123,259,75,0.03178799884758738],[123,259,76,0.02402993104471054],[123,259,77,0.016615714932431067],[123,259,78,0.009512021984593394],[123,259,79,0.0026790755933926436],[123,260,64,0.137176850845936],[123,260,65,0.12629197527410468],[123,260,66,0.11549390150616645],[123,260,67,0.10478516964365892],[123,260,68,0.09421663201504747],[123,260,69,0.08386540226751024],[123,260,70,0.07379436275444223],[123,260,71,0.06405185268590825],[123,260,72,0.054672334312426824],[123,260,73,0.045677146541575765],[123,260,74,0.03707534518905221],[123,260,75,0.028864628942143915],[123,260,76,0.021032349996861634],[123,260,77,0.01355660822218786],[123,260,78,0.006407427610143728],[123,260,79,-4.519863132866359E-4],[123,261,64,0.13500844611205423],[123,261,65,0.12414021101244482],[123,261,66,0.11334251035114383],[123,261,67,0.10261443135389349],[123,261,68,0.09200631579164556],[123,261,69,0.0815970652389177],[123,261,70,0.07145208122085614],[123,261,71,0.061622779538555245],[123,261,72,0.05214712176105688],[123,261,73,0.04305024140378108],[123,261,74,0.034345164146070105],[123,261,75,0.026033621303271064],[123,261,76,0.018106955638098058],[123,261,77,0.010547118473886622],[123,261,78,0.0033277569630138027],[123,261,79,-0.003584609734711315],[123,262,64,0.13302996330248382],[123,262,65,0.12217778031294121],[123,262,66,0.11138011088776438],[123,262,67,0.10063259356281316],[123,262,68,0.08998450973410704],[123,262,69,0.07951570888008676],[123,262,70,0.06929342248337167],[123,262,71,0.05937160676929951],[123,262,72,0.04979133154632686],[123,262,73,0.040581270401600936],[123,262,74,0.03175829176375113],[123,262,75,0.02332815019486079],[123,262,76,0.015286277129582249],[123,262,77,0.007618670143510948],[123,262,78,3.0287970951145115E-4],[123,262,79,-0.006690907712162484],[123,263,64,0.13125324936848654],[123,263,65,0.12041704346494748],[123,263,66,0.1096198259837237],[123,263,67,0.09885384845217551],[123,263,68,0.08816673062977487],[123,263,69,0.0776383126147269],[123,263,70,0.06733686282956289],[123,263,71,0.05731825251418209],[123,263,72,0.04762619331212712],[123,263,73,0.038292582285153094],[123,263,74,0.029337954037127627],[123,263,75,0.020772039466151086],[123,263,76,0.012594430507186529],[123,263,77,0.004795350078535817],[123,263,78,-0.0026434736914867623],[123,263,79,-0.009747830008119365],[123,264,64,0.129679988122509],[123,264,65,0.11886015078022225],[123,264,66,0.10806448476104492],[123,264,67,0.0972819747199977],[123,264,68,0.08655795463724399],[123,264,69,0.07597122313840367],[123,264,70,0.06559022374144692],[123,264,71,0.05547205553578069],[123,264,72,0.04566255073411289],[123,264,73,0.036196465133122094],[123,264,74,0.027097781343308005],[123,264,75,0.018380124474965804],[123,264,76,0.01004728979873628],[123,264,77,0.002093881737748985],[123,264,78,-0.005493936601630225],[123,264,79,-0.012737584293744494],[123,265,64,0.12830323365522336],[123,265,65,0.11750058771393719],[123,265,66,0.10670816341749535],[123,265,67,0.09591185437204754],[123,265,68,0.08515408704477849],[123,265,69,0.0745115519045819],[123,265,70,0.06405197100850667],[123,265,71,0.05383295021742571],[123,265,72,0.04390188805717313],[123,265,73,0.034296002397726635],[123,265,74,0.025042475000798956],[123,265,75,0.016158713802262397],[123,265,76,0.007652732616131632],[123,265,77,-4.7635222646858237E-4],[123,265,78,-0.008237708952442527],[123,265,79,-0.011239222901172515],[123,266,64,0.12710919380598976],[123,266,65,0.11632496744988349],[123,266,66,0.10553796877386075],[123,266,67,0.09473122539231137],[123,266,68,0.0839436588553513],[123,266,69,0.07324878800542418],[123,266,70,0.06271271535677121],[123,266,71,0.05239282677998784],[123,266,72,0.042337523267001166],[123,266,73,0.03258607489632571],[123,266,74,0.023168597249715137],[123,266,75,0.014106150337590854],[123,266,76,0.005410959900353523],[123,266,77,-1.9047634518414708E-4],[123,266,78,-0.0016651486885026308],[123,266,79,-0.0030523514345532233],[123,267,64,0.12607926310789208],[123,267,65,0.11531507031417641],[123,267,66,0.10453606385688041],[123,267,67,0.09372266955493468],[123,267,68,0.08290974942540476],[123,267,69,0.07216662565486599],[123,267,70,0.06155691380041502],[123,267,71,0.05113707594684897],[123,267,72,0.04095596716146941],[123,267,73,0.031054508076301685],[123,267,74,0.021465484060482685],[123,267,75,0.01264922988996516],[123,267,76,0.01069614848256412],[123,267,77,0.008839108612214179],[123,267,78,0.007077591636528197],[123,267,79,0.0054041112473040874],[123,268,64,0.12519230439656528],[123,268,65,0.1144501291592605],[123,268,66,0.10368193461665597],[123,268,67,0.09286583444222307],[123,268,68,0.0820321342009474],[123,268,69,0.0712450053135462],[123,268,70,0.060564770770859644],[123,268,71,0.050046317148279465],[123,268,72,0.03973844747055977],[123,268,73,0.029683363780407573],[123,268,74,0.02486365932278421],[123,268,75,0.022551943547353043],[123,268,76,0.020311966844304613],[123,268,77,0.018155386875432264],[123,268,78,0.016086907711880052],[123,268,79,0.014104547173595265],[123,269,64,0.12442717805645506],[123,269,65,0.11370935965388485],[123,269,66,0.1029548966824981],[123,269,67,0.09213988855120625],[123,269,68,0.08128965642640185],[123,269,69,0.07046236734181298],[123,269,70,0.059714337940556174],[123,269,71,0.04909830923466038],[123,269,72,0.04056441846137231],[123,269,73,0.037944395544516375],[123,269,74,0.035323960350653424],[123,269,75,0.032732249193324764],[123,269,76,0.03019218612670372],[123,269,77,0.027720307254617087],[123,269,78,0.025326719258898202],[123,269,79,0.023015191998926526],[123,270,64,0.12376551767848017],[123,270,65,0.11307473422443985],[123,270,66,0.10233684088200738],[123,270,67,0.09152620820444245],[123,270,68,0.08066282154810867],[123,270,69,0.06979811692761076],[123,270,70,0.058983811533845874],[123,270,71,0.05455116440651923],[123,270,72,0.051764512012756],[123,270,73,0.04891042576050099],[123,270,74,0.046026043950566795],[123,270,75,0.04314377251150378],[123,270,76,0.04029077702253873],[123,270,77,0.037488613178471714],[123,270,78,0.03475299595897464],[123,270,79,0.032093707549076464],[123,271,64,0.12147229646918856],[123,271,65,0.11251689440963326],[123,271,66,0.10179840805657381],[123,271,67,0.09099506760702766],[123,271,68,0.08012126069848195],[123,271,69,0.07167045206780402],[123,271,70,0.06900763167851692],[123,271,71,0.06615821716171652],[123,271,72,0.06316565674003491],[123,271,73,0.06007177225888488],[123,271,74,0.05691575969368574],[123,271,75,0.05373333091665547],[123,271,76,0.05055599767679221],[123,271,77,0.047410498509240624],[123,271,78,0.0443183690562136],[123,271,79,0.041295656052682796],[123,272,64,0.11626399339457794],[123,272,65,0.11090481887979994],[123,272,66,0.10125176619408087],[123,272,67,0.0904600792123709],[123,272,68,0.08622571143282536],[123,272,69,0.0836897943577152],[123,272,70,0.08089264535140532],[123,272,71,0.07787493506332069],[123,272,72,0.07467880939949313],[123,272,73,0.07134652420113413],[123,272,74,0.0679192239278033],[123,272,75,0.06443586579930795],[123,272,76,0.06093229060062282],[123,272,77,0.0574404411050205],[123,272,78,0.053987728823847725],[123,272,79,0.05059654954865727],[123,273,64,0.11137055070624591],[123,273,65,0.1044085821605203],[123,273,66,0.09702160661889775],[123,273,67,0.09672620544995608],[123,273,68,0.09647552987252797],[123,273,69,0.09570167432373697],[123,273,70,0.0927784876598521],[123,273,71,0.08960133113675135],[123,273,72,0.08621081940967515],[123,273,73,0.08264942923012528],[123,273,74,0.07896005657273175],[123,273,75,0.07518472355342405],[123,273,76,0.07136343659428737],[123,273,77,0.06753319702950387],[123,273,78,0.06372716508708193],[123,273,79,0.05997397792440296],[123,274,64,0.10681172316925608],[123,274,65,0.1039467466349328],[123,274,66,0.10238921662210099],[123,274,67,0.10101501216107933],[123,274,68,0.10016869539239892],[123,274,69,0.09981366520675433],[123,274,70,0.09990204927352203],[123,274,71,0.10037766392949038],[123,274,72,0.09767430977158954],[123,274,73,0.09389972665984966],[123,274,74,0.08996501750865084],[123,274,75,0.08591498995505187],[123,274,76,0.08179352824843467],[123,274,77,0.0776424018440864],[123,274,78,0.07350023247669663],[123,274,79,0.06940162059818411],[123,275,64,0.102606452795873],[123,275,65,0.10016787483645251],[123,275,66,0.09833372446004696],[123,275,67,0.09708805540735088],[123,275,68,0.0964029533730581],[123,275,69,0.09623817659314848],[123,275,70,0.09654104640636602],[123,275,71,0.09724934335771346],[123,275,72,0.09829078632685417],[123,275,73,0.09957800624186497],[123,275,74,0.10086455165270118],[123,275,75,0.0965640739914527],[123,275,76,0.09216758410922639],[123,275,77,0.08772120637209209],[123,275,78,0.08326859900123842],[123,275,79,0.07884989929276913],[123,276,64,0.09877249512253417],[123,276,65,0.0963870975562523],[123,276,66,0.09464183847789842],[123,276,67,0.09351930982009515],[123,276,68,0.09298916559637027],[123,276,69,0.09300767535869037],[123,276,70,0.09351752678100772],[123,276,71,0.09445065634206051],[123,276,72,0.09572763189042949],[123,276,73,0.09725316184688282],[123,276,74,0.09891267388691055],[123,276,75,0.10060200235936578],[123,276,76,0.10223934483862951],[123,276,77,0.0977229525203195],[123,276,78,0.09299273199968802],[123,276,79,0.08828666518726941],[123,277,64,0.09532608355637606],[123,277,65,0.09299043622785941],[123,277,66,0.0913293280902257],[123,277,67,0.09032400710015892],[123,277,68,0.08994184128606697],[123,277,69,0.09013578448365256],[123,277,70,0.09084409005238953],[123,277,71,0.09199307478527735],[123,277,72,0.09349640347855653],[123,277,73,0.09525111066136083],[123,277,74,0.09713952824558564],[123,277,75,0.0990568755678638],[123,277,76,0.1009203060278207],[123,277,77,0.10266741144612429],[123,277,78,0.10263262100629625],[123,277,79,0.09767791990509343],[123,278,64,0.09228163179134191],[123,278,65,0.08999223787171096],[123,278,66,0.08841027492047782],[123,278,67,0.08751577377306374],[123,278,68,0.08727397610167575],[123,278,69,0.08763471212514701],[123,278,70,0.08853202485155726],[123,278,71,0.08988686616887331],[123,278,72,0.09160628224827644],[123,278,73,0.09357992257129183],[123,278,74,0.09568711585137912],[123,278,75,0.09782245477949553],[123,278,76,0.09990204379279888],[123,278,77,0.10186203434475549],[123,278,78,0.10365731627922675],[123,278,79,0.10526040801519526],[123,279,64,0.08965147429371462],[123,279,65,0.08740482316324949],[123,279,66,0.08589679999337962],[123,279,67,0.08510635301054242],[123,279,68,0.08499676946388846],[123,279,69,0.08551496530539582],[123,279,70,0.08659101964881943],[123,279,71,0.08814080232074861],[123,279,72,0.09006505920821639],[123,279,73,0.09224638129000917],[123,279,74,0.09456120819789626],[123,279,75,0.09690350626218458],[123,279,76,0.09918833863412874],[123,279,77,0.10135042632091357],[123,279,78,0.10334288463683716],[123,279,79,0.10513614997799142],[123,280,64,0.08744564485726297],[123,280,65,0.08523825836831939],[123,280,66,0.08379882982923414],[123,280,67,0.08310536569871868],[123,280,68,0.08311938142486813],[123,280,69,0.08378510339920597],[123,280,70,0.08502891363011483],[123,280,71,0.08676190837499137],[123,280,72,0.08887888284133183],[123,280,73,0.09125573107957435],[123,280,74,0.09376613826960162],[123,280,75,0.09630345644129662],[123,280,76,0.09878172745602742],[123,280,77,0.10113426441062828],[123,280,78,0.10331242618629993],[123,280,79,0.1052845736187431],[123,281,64,0.08567169322791884],[123,281,65,0.0835001657880432],[123,281,66,0.08212390144004894],[123,281,67,0.0815201107528492],[123,281,68,0.0816487290834143],[123,281,69,0.08245153142057227],[123,281,70,0.08385148758651612],[123,281,71,0.0857552519237767],[123,281,72,0.08805204707044062],[123,281,73,0.09061146394439262],[123,281,74,0.09330458731291047],[123,281,75,0.09602417857189027],[123,281,76,0.09868329042338364],[123,281,77,0.10121386305356073],[123,281,78,0.10356552953343862],[123,281,79,0.10570459394538118],[123,282,64,0.08433469003623678],[123,282,65,0.08219572301360312],[123,282,66,0.08087715656848027],[123,282,67,0.08035555504299757],[123,282,68,0.08058947292018409],[123,282,69,0.08151848348679502],[123,282,70,0.08306244519557276],[123,282,71,0.08512392273453356],[123,282,72,0.08758696991849846],[123,282,73,0.09031529760250046],[123,282,74,0.09317756240811476],[123,282,75,0.09606597015732804],[123,282,76,0.09889262841734886],[123,282,77,0.1015881517066039],[123,282,78,0.10410049029564789],[123,282,79,0.10639392266914843],[123,283,64,0.08343769684957714],[123,283,65,0.0813281279162471],[123,283,66,0.08006180216886782],[123,283,67,0.07961478997247651],[123,283,68,0.07994447011448974],[123,283,69,0.08098847352740207],[123,283,70,0.0826638617623342],[123,283,71,0.0848694800905751],[123,283,72,0.08748463988486838],[123,283,73,0.09036762117479691],[123,283,74,0.0933848416414787],[123,283,75,0.09642799769756533],[123,283,76,0.09940830736739847],[123,283,77,0.10225511867099962],[123,283,78,0.10491475422727037],[123,283,79,0.10734951031002038],[123,284,64,0.08298124128496859],[123,284,65,0.08089806870927946],[123,284,66,0.07967857607280321],[123,284,67,0.0792984934243205],[123,284,68,0.0797142334526737],[123,284,69,0.08086175181681104],[123,284,70,0.08265563899585798],[123,284,71,0.08499140638471175],[123,284,72,0.0877440688730976],[123,284,73,0.09076694787935186],[123,284,74,0.0939244269506484],[123,284,75,0.09710775004495104],[123,284,76,0.10022731244095334],[123,284,77,0.10321126639149858],[123,284,78,0.10600437384321221],[123,284,79,0.10856700428427396],[123,285,64,0.08296308662375312],[123,285,65,0.08090348905973671],[123,285,66,0.0797255081672591],[123,285,67,0.07940468760576491],[123,285,68,0.07989668645171089],[123,285,69,0.08113605798214518],[123,285,70,0.08303525647550447],[123,285,71,0.08548685757130536],[123,285,72,0.08836204208819382],[123,285,73,0.09150966473772748],[123,285,74,0.09479229393487831],[123,285,75,0.09810078856253401],[123,285,76,0.10134479873527402],[123,285,77,0.10445136279943468],[123,285,78,0.1073637604523282],[123,285,79,0.1100405015767077],[123,286,64,0.08337823944852507],[123,286,65,0.08133959174542005],[123,286,66,0.08019792056467057],[123,286,67,0.07992873626068442],[123,286,68,0.08048715816357033],[123,286,69,0.08180661395037225],[123,286,70,0.08379776327100474],[123,286,71,0.08635065394352953],[123,286,72,0.08933310838089487],[123,286,73,0.09259002279436357],[123,286,74,0.0959823821721365],[123,286,75,0.09940073768978541],[123,286,76,0.10275408216538551],[123,286,77,0.10596843251224708],[123,286,78,0.10898567556551969],[123,286,79,0.1117625401519865],[123,287,64,0.08421899538923427],[123,287,65,0.08219888086105376],[123,287,66,0.08108846671449504],[123,287,67,0.08086338116825648],[123,287,68,0.08147841756409546],[123,287,69,0.08286615673422715],[123,287,70,0.08493580961531688],[123,287,71,0.08757531114237876],[123,287,72,0.09064961097436963],[123,287,73,0.09400016784781551],[123,287,74,0.0974866261521371],[123,287,75,0.10099931619378422],[123,287,76,0.10444667106501326],[123,287,77,0.10775378872590607],[123,287,78,0.11086126292502396],[123,287,79,0.11372413086159583],[123,288,64,0.08547502295189358],[123,288,65,0.08347124254700344],[123,288,66,0.08238720942967481],[123,288,67,0.08219881790126371],[123,288,68,0.08286074749982275],[123,288,69,0.08430501103034171],[123,288,70,0.08643971860369559],[123,288,71,0.08915111137085502],[123,288,72,0.09230175854678474],[123,288,73,0.09573021166729168],[123,288,74,0.09929502679876706],[123,288,75,0.10288640907935664],[123,288,76,0.1064123384740564],[123,288,77,0.10979710577381196],[123,288,78,0.11298012112852318],[123,288,79,0.1159148298201027],[123,289,64,0.08713348543004318],[123,289,65,0.08514406424070492],[123,289,66,0.08408173782815509],[123,289,67,0.083922810844195],[123,289,68,0.08462205819289076],[123,289,69,0.0861112016297309],[123,289,70,0.0882975979191239],[123,289,71,0.0910662148134781],[123,289,72,0.09427773666987882],[123,289,73,0.09776834369462906],[123,289,74,0.10139576358204222],[123,289,75,0.10505018015830081],[123,289,76,0.10863923511272655],[123,289,77,0.1120865323522931],[123,289,78,0.11533041684819356],[123,289,79,0.11832285125084152],[123,290,64,0.08917920089886333],[123,290,65,0.08720239245069472],[123,290,66,0.08615732318934866],[123,290,67,0.08602084747102873],[123,290,68,0.08674804030393163],[123,290,69,0.08827060564052791],[123,290,70,0.09049549158400039],[123,290,71,0.09330681126101492],[123,290,72,0.09656385960344549],[123,290,73,0.10010098323161076],[123,290,74,0.103775347219498],[123,290,75,0.10747722527760606],[123,290,76,0.11111404304226435],[123,290,77,0.11460884541261768],[123,290,78,0.11789903864461382],[123,290,79,0.12093522080094632],[123,291,64,0.091594840291912],[123,291,65,0.08962912905321951],[123,291,66,0.08859711372552259],[123,291,67,0.08847633188268011],[123,291,68,0.08922235755291791],[123,291,69,0.09076714452294304],[123,291,70,0.09301757173805342],[123,291,71,0.09585731194039815],[123,291,72,0.09914476244568993],[123,291,73,0.10271297211258767],[123,291,74,0.10641881296697542],[123,291,75,0.11015276620662467],[123,291,76,0.11382217001218747],[123,291,77,0.11734964471947151],[123,291,78,0.12067179137548184],[123,291,79,0.12373796932567627],[123,292,64,0.09436116356061303],[123,292,65,0.09240526611155103],[123,292,66,0.0913823682682342],[123,292,67,0.09127081760423761],[123,292,68,0.09202687889809613],[123,292,69,0.09358301593657437],[123,292,70,0.0958463704426169],[123,292,71,0.09870058154996952],[123,292,72,0.10200363363959786],[123,292,73,0.10558780786254518],[123,292,74,0.10930995449894615],[123,292,75,0.11306088518334129],[123,292,76,0.11674798449422019],[123,292,77,0.12029358807605184],[123,292,78,0.12363363119929238],[123,292,79,0.12671636714218848],[123,293,64,0.09745729391638525],[123,293,65,0.09551015921789391],[123,293,66,0.09449272886970683],[123,293,67,0.09438427964187618],[123,293,68,0.09514195027289424],[123,293,69,0.09669896539996048],[123,293,70,0.09896305151115009],[123,293,71,0.1018182104999299],[123,293,72,0.10512248783519823],[123,293,73,0.10870791734049523],[123,293,74,0.11243159837825384],[123,293,75,0.11618480011961702],[123,293,76,0.11987509140277797],[123,293,77,0.12342466721565165],[123,293,78,0.12676894117384835],[123,293,79,0.12985519875263052],[123,294,64,0.10086103015539832],[123,294,65,0.09892183935787491],[123,294,66,0.09790653231912838],[123,294,67,0.09779542579943523],[123,294,68,0.0985467058807854],[123,294,69,0.10009459776235607],[123,294,70,0.1023477223659881],[123,294,71,0.10519082735798191],[123,294,72,0.10848247910770381],[123,294,73,0.11205497086817812],[123,294,74,0.11576591911525758],[123,294,75,0.11950718046539288],[123,294,76,0.12318664850199221],[123,294,77,0.12672652435971865],[123,294,78,0.13006184744958976],[123,294,79,0.1331390780365358],[123,295,64,0.10454919706610288],[123,295,65,0.10261736329776161],[123,295,66,0.10160116057402457],[123,295,67,0.10148204725480964],[123,295,68,0.10221941904826465],[123,295,69,0.10374872848788763],[123,295,70,0.10597978592147772],[123,295,71,0.10879845150032241],[123,295,72,0.11206425453168967],[123,295,73,0.11561023684423455],[123,295,74,0.11929479481653837],[123,295,75,0.12301050373201583],[123,295,76,0.12666572349944116],[123,295,77,0.13018280944255545],[123,295,78,0.13349657605790913],[123,295,79,0.13655280391269226],[123,296,64,0.10849803391931984],[123,296,65,0.10657320249419228],[123,296,66,0.10555343010648766],[123,296,67,0.10542140839593556],[123,296,68,0.1061378926357135],[123,296,69,0.10763977475186276],[123,296,70,0.1098383324932728],[123,296,71,0.1126208859677551],[123,296,72,0.11584834811107741],[123,296,73,0.11935497684361396],[123,296,74,0.12300020342293383],[123,296,75,0.12667745267444935],[123,296,76,0.13029569182634465],[123,296,77,0.13377757800241816],[123,296,78,0.13705785029420722],[123,296,79,0.1400817564702364],[123,297,64,0.11268362104112056],[123,297,65,0.11076567052665054],[123,297,66,0.10974002016449513],[123,297,67,0.10959067591660654],[123,297,68,0.11027988900639135],[123,297,69,0.11174618634947509],[123,297,70,0.11390257173403084],[123,297,71,0.1166381505271692],[123,297,72,0.1198156150651728],[123,297,73,0.12327088120247004],[123,297,74,0.12686465953715223],[123,297,75,0.13049135313262394],[123,297,76,0.13406067510448144],[123,297,77,0.13749572973927315],[123,297,78,0.14073132869595206],[123,297,79,0.1437123335692374],[123,298,64,0.11708234446827404],[123,298,65,0.11517138905246321],[123,298,66,0.11413793994809379],[123,298,67,0.11396738717189325],[123,298,68,0.11462359955332574],[123,298,69,0.1160469164166732],[123,298,70,0.11815230459527915],[123,298,71,0.1208309549381486],[123,298,72,0.12394770647052034],[123,298,73,0.12734054508830317],[123,298,74,0.13087169184072578],[123,298,75,0.1344366525316821],[123,298,76,0.13794602029958267],[123,298,77,0.1413234877389639],[123,298,78,0.1445040836154904],[123,298,79,0.14743242791051875],[123,299,64,0.12167139868641924],[123,299,65,0.11976779228447354],[123,299,66,0.11872503470060497],[123,299,67,0.1185299577933252],[123,299,68,0.11914815378426058],[123,299,69,0.12052193196335584],[123,299,70,0.1225684353156132],[123,299,71,0.12518121242487742],[123,299,72,0.12822758425874003],[123,299,73,0.13154798505551868],[123,299,74,0.13500636110047196],[123,299,75,0.13849943904129247],[123,299,76,0.1419388195613749],[123,299,77,0.14524891836396286],[123,299,78,0.14836512038778943],[123,299,79,0.15123194457489658],[123,300,64,0.1264293274509461],[123,300,65,0.12453366999138044],[123,300,66,0.12348053071484008],[123,300,67,0.12325822856382182],[123,300,68,0.12383416796464947],[123,300,69,0.12515276421887767],[123,300,70,0.12713352343521211],[123,300,71,0.12967259335332482],[123,300,72,0.13264007657033164],[123,300,73,0.1358791960863829],[123,300,74,0.1392558187644452],[123,300,75,0.1426680013940106],[123,300,76,0.14602847075025271],[123,300,77,0.14926249181068763],[123,300,78,0.1523059370930852],[123,300,79,0.15510335903181063],[123,301,64,0.131336602690464],[123,301,65,0.12944974902061682],[123,301,66,0.12838561925419817],[123,301,67,0.128134051552244],[123,301,68,0.1286643333185638],[123,301,69,0.12992309878973854],[123,301,70,0.13183237583654137],[123,301,71,0.13429111911357938],[123,301,72,0.13717247346431388],[123,301,73,0.14032274911724688],[123,301,74,0.14360990614724806],[123,301,75,0.14693342936255746],[123,301,76,0.1502072786504488],[123,301,77,0.15335768333325006],[123,301,78,0.1563211249143077],[123,301,79,0.15904231561721738],[123,302,64,0.13637624149300437],[123,302,65,0.13449931334391674],[123,302,66,0.13342407938879797],[123,302,67,0.13314191550772106],[123,302,68,0.13362404378767478],[123,302,69,0.13481940562961156],[123,302,70,0.13665267881140297],[123,302,71,0.13902579620749442],[123,302,72,0.1418151629838618],[123,302,73,0.1448704290502001],[123,302,74,0.14806179420486446],[123,302,75,0.15129025489617953],[123,302,76,0.15447109686986948],[123,302,77,0.15753161513380404],[123,302,78,0.1604090090894496],[123,302,79,0.16304826648091292],[123,303,64,0.141534461174914],[123,303,65,0.1396688626255264],[123,303,66,0.13858293974659752],[123,303,67,0.13826961051370418],[123,303,68,0.13870206334825386],[123,303,69,0.13983160882165788],[123,303,70,0.14158567015427498],[123,303,71,0.14386929054158523],[123,303,72,0.1465623075778821],[123,303,73,0.1495179132500937],[123,303,74,0.15260866389895572],[123,303,75,0.15573713391602811],[123,303,76,0.1588200104265281],[123,303,77,0.16178573891942816],[123,303,78,0.16457233045881126],[123,303,79,0.1671251510032188],[123,304,64,0.14680137243234354],[123,304,65,0.1449488093129664],[123,304,66,0.14385317917940849],[123,304,67,0.14350893190165367],[123,304,68,0.14389123288610592],[123,304,69,0.14495379617304116],[123,304,70,0.1466268512818591],[123,304,71,0.14881864192509664],[123,304,72,0.1514125608784462],[123,304,73,0.15426549052685412],[123,304,74,0.15725242715053747],[123,304,75,0.16027756876947918],[123,304,76,0.163259059021503],[123,304,77,0.16612655912546603],[123,304,78,0.1688189676070499],[123,304,79,0.17128211568095622],[123,305,64,0.1521717105754704],[123,305,65,0.15033421425047877],[123,305,66,0.14923046634394097],[123,305,67,0.1488564234244972],[123,305,68,0.14918921662956644],[123,305,69,0.1501849686217715],[123,305,70,0.15177673937896213],[123,305,71,0.15387601877336807],[123,305,72,0.15636982483420733],[123,305,73,0.15911882060321078],[123,305,74,0.1620004883831654],[123,305,75,0.16492067134351895],[123,305,76,0.16779900099854111],[123,305,77,0.17056639680544855],[123,305,78,0.17316269960015165],[123,305,79,0.17553427448283107],[123,306,64,0.15764560484543194],[123,306,65,0.15582556081514162],[123,306,66,0.154715938197859],[123,306,67,0.15431415968983656],[123,306,68,0.15459928814054524],[123,306,69,0.15552982945586485],[123,306,70,0.157041659570698],[123,306,71,0.15904951301648096],[123,306,72,0.16144404719978545],[123,306,73,0.16408973406782593],[123,306,74,0.1668665466556124],[123,306,75,0.16968196683718026],[123,306,76,0.17245711799029434],[123,306,77,0.17512419418758218],[123,306,78,0.17762400931731542],[123,306,79,0.1799035096742147],[123,307,64,0.1632282689576193],[123,307,65,0.1614284518410899],[123,307,66,0.16031589524845827],[123,307,67,0.15988943199067843],[123,307,68,0.16012999951820628],[123,307,69,0.16099843045104126],[123,307,70,0.1624333625801404],[123,307,71,0.16435272516038607],[123,307,72,0.1666507714724206],[123,307,73,0.16919574651509026],[123,307,74,0.17187007499257667],[123,307,75,0.1745828405563879],[123,307,76,0.1772566324869404],[123,307,77,0.17982490713293017],[123,307,78,0.18222945550685427],[123,307,79,0.18441782857332784],[123,308,64,0.16890746595681033],[123,308,65,0.16713108204309263],[123,308,66,0.16601913087458545],[123,308,67,0.1655717894329206],[123,308,68,0.1657717990182478],[123,308,69,0.16658224501323332],[123,308,70,0.16794445170844022],[123,308,71,0.16977946801820565],[123,308,72,0.1719850705889625],[123,308,73,0.1744332114451646],[123,308,74,0.17700871805816473],[123,308,75,0.17962223672901678],[123,308,76,0.1821977895284174],[123,308,77,0.18467007174064268],[123,308,78,0.1869818419215826],[123,308,79,0.18908126403818615],[123,309,64,0.17465015290900135],[123,309,65,0.172900804260623],[123,309,66,0.1717934230794695],[123,309,67,0.17132946010727534],[123,309,68,0.17149338537363523],[123,309,69,0.17225045904586112],[123,309,70,0.1735446131452958],[123,309,71,0.17529993867193663],[123,309,72,0.17741766185147803],[123,309,73,0.17977337836880025],[123,309,74,0.18225429276924968],[123,309,75,0.1847726007753139],[123,309,76,0.18725374024447264],[123,309,77,0.18963362976002507],[123,309,78,0.19185598660917402],[123,309,79,0.19386959135470505],[123,310,64,0.18042174421594487],[123,310,65,0.17870334365527613],[123,310,66,0.1776048385808356],[123,310,67,0.1771288790159469],[123,310,68,0.1772615845362862],[123,310,69,0.17797030827653376],[123,310,70,0.1792015078486588],[123,310,71,0.180882236119906],[123,310,72,0.18291709348807128],[123,310,73,0.18518525799636532],[123,310,74,0.18757630799427547],[123,310,75,0.19000400093888659],[123,310,76,0.19239518976718892],[123,310,77,0.19468700904060746],[123,310,78,0.196824127651882],[123,310,79,0.19875594272349206],[123,311,64,0.18618732424119358],[123,311,65,0.18450401480447656],[123,311,66,0.18341895870043634],[123,311,67,0.18293592693560723],[123,311,68,0.18304260541334622],[123,311,69,0.1837083543489351],[123,311,70,0.1848820709042745],[123,311,71,0.18649368607968814],[123,311,72,0.18845109615876496],[123,311,73,0.19063700058911454],[123,311,74,0.1929433685973],[123,311,75,0.19528555568653955],[123,311,76,0.19759184466987373],[123,311,77,0.19980058690450245],[123,311,78,0.20185739775447406],[123,311,79,0.2037122878953067],[123,312,64,0.19191211394765476],[123,312,65,0.19026818844014232],[123,312,66,0.18920134484943754],[123,312,67,0.18871639336670354],[123,312,68,0.188802499101615],[123,312,69,0.1894309393014091],[123,312,70,0.19055296038045172],[123,312,71,0.1921012835603992],[123,312,72,0.19398701883336572],[123,312,73,0.19609632499588814],[123,312,74,0.19832359759656054],[123,312,75,0.20058584895806392],[123,312,76,0.20281282127065703],[123,312,77,0.2049440914485289],[123,312,78,0.20692621846135764],[123,312,79,0.20870982118141387],[123,313,64,0.19756288164970948],[123,313,65,0.19596260341660354],[123,313,66,0.1949187508935979],[123,313,67,0.1944370888025822],[123,313,68,0.1945081709213905],[123,313,69,0.1951050976097684],[123,313,70,0.19618137003731556],[123,313,71,0.1976724073391517],[123,313,72,0.19949244660934856],[123,313,73,0.20153104187169582],[123,313,74,0.2036850671743503],[123,313,75,0.20587327158195248],[123,313,76,0.20802690026904086],[123,313,77,0.21008677239471657],[123,313,78,0.21200039036990684],[123,313,79,0.2137189743115594],[123,314,64,0.2031078192850059],[123,314,65,0.20155526010852803],[123,314,66,0.2005390323810761],[123,314,67,0.20006576851022528],[123,314,68,0.2001273175233775],[123,314,69,0.20069850547621806],[123,314,70,0.20173498976999105],[123,314,71,0.203174790682222],[123,314,72,0.20493518102243768],[123,314,73,0.20690904309661134],[123,314,74,0.20899579679563987],[123,314,75,0.2111160276653098],[123,314,76,0.21320254094572968],[123,314,77,0.21519742259490715],[123,314,78,0.2170491213811204],[123,314,79,0.2187094508093301],[123,315,64,0.20851580813196913],[123,315,65,0.20701478596920114],[123,315,66,0.2060306102165658],[123,315,67,0.20557069239627546],[123,315,68,0.20562808085613227],[123,315,69,0.20617922667600208],[123,315,70,0.20718184101733067],[123,315,71,0.20857644394264932],[123,315,72,0.21028324744443666],[123,315,73,0.21219839159579054],[123,315,74,0.21422392296441617],[123,315,75,0.2162823816129114],[123,315,76,0.21830820257754474],[123,315,77,0.22024477077883722],[123,315,78,0.22204148752166272],[123,315,79,0.22365075143321436],[123,316,64,0.21375681134191044],[123,316,65,0.2123108372531925],[123,316,66,0.2113628802912882],[123,316,67,0.21092104129482786],[123,316,68,0.21097946992529035],[123,316,69,0.21151613869569477],[123,316,70,0.21249070631295489],[123,316,71,0.21384608671696242],[123,316,72,0.21550532923202065],[123,316,73,0.21736775708004125],[123,316,74,0.21933813625323204],[123,316,75,0.2213410961575094],[123,316,76,0.22331278317988226],[123,316,77,0.2251979207070114],[123,316,78,0.22694687218066611],[123,316,79,0.22851261313526447],[123,317,64,0.21880230982529217],[123,317,65,0.21741454075756378],[123,317,66,0.21650665984065612],[123,317,67,0.21608736674192391],[123,317,68,0.2161518128526988],[123,317,69,0.21667938604208561],[123,317,70,0.2176315829373623],[123,317,71,0.2189536010944581],[123,317,72,0.22057122002064167],[123,317,73,0.2223868670451587],[123,317,74,0.2243081307757382],[123,317,75,0.2262618801020114],[123,317,76,0.2281860653277075],[123,317,77,0.23002679487863037],[123,317,78,0.23173540749909452],[123,317,79,0.23326544790105241],[123,318,64,0.22362574291574466],[123,318,65,0.2222989403951317],[123,318,66,0.2214346387169403],[123,318,67,0.22104204577296274],[123,318,68,0.22111721408687626],[123,318,69,0.22164083884599442],[123,318,70,0.22257614201759054],[123,318,71,0.2238704905085918],[123,318,72,0.22545228176903373],[123,318,73,0.2272269636564484],[123,318,74,0.2291050596669859],[123,318,75,0.2310158421868371],[123,318,76,0.23289916822010664],[123,318,77,0.23470258460792937],[123,318,78,0.23637842226377348],[123,318,79,0.2354683472966121],[123,319,64,0.22820295381183228],[123,319,65,0.22693944859978427],[123,319,66,0.22612183557693336],[123,319,67,0.2257597407430245],[123,319,68,0.22585001676479627],[123,319,69,0.22637455676101056],[123,319,70,0.2272981930744185],[123,319,71,0.2285703441904695],[123,319,72,0.23012190855430834],[123,319,73,0.23186126651842645],[123,319,74,0.23370199657148807],[123,319,75,0.23557595108243956],[123,319,76,0.2374250059883844],[123,319,77,0.23919820646891293],[123,319,78,0.23701775858409774],[123,319,79,0.23053023827699365],[124,-64,64,0.34533770769176386],[124,-64,65,0.35141423522661],[124,-64,66,0.3575921985419326],[124,-64,67,0.3638566651216354],[124,-64,68,0.37020822817546983],[124,-64,69,0.37666005330957303],[124,-64,70,0.3832222052420442],[124,-64,71,0.38990061169789436],[124,-64,72,0.39669650125311773],[124,-64,73,0.4036059686729916],[124,-64,74,0.4106196711863376],[124,-64,75,0.41772265899382466],[124,-64,76,0.42489434314577573],[124,-64,77,0.43210860374517773],[124,-64,78,0.43933404123616243],[124,-64,79,0.4465343733299837],[124,-63,64,0.34809974113829273],[124,-63,65,0.354269788163655],[124,-63,66,0.36054617637632574],[124,-63,67,0.36691405486556905],[124,-63,68,0.37337319913250344],[124,-63,69,0.3799354315784338],[124,-63,70,0.38660951453741044],[124,-63,71,0.3934001436757027],[124,-63,72,0.4003074023223154],[124,-63,73,0.4073263417544563],[124,-63,74,0.41444669076991636],[124,-63,75,0.4216526977353003],[124,-63,76,0.4289231081376786],[124,-63,77,0.4362312804893256],[124,-63,78,0.443545443242241],[124,-63,79,0.4508290951639484],[124,-62,64,0.35104987819445377],[124,-62,65,0.35730571257339677],[124,-62,66,0.36367124606955625],[124,-62,67,0.3701320698204736],[124,-62,68,0.37668710580448367],[124,-62,69,0.38334653045568534],[124,-62,70,0.39011760375660376],[124,-62,71,0.39700369011148745],[124,-62,72,0.4040037186308404],[124,-62,73,0.4111117679026581],[124,-62,74,0.4183167784848225],[124,-62,75,0.42560239621157847],[124,-62,76,0.43294694924764554],[124,-62,77,0.44032356164809394],[124,-62,78,0.44770040599212235],[124,-62,79,0.45504109745710736],[124,-61,64,0.3541719188211056],[124,-61,65,0.3605054760100155],[124,-61,66,0.3669504917242339],[124,-61,67,0.373493327923281],[124,-61,68,0.3801320314294615],[124,-61,69,0.3868748735458573],[124,-61,70,0.39372745014586497],[124,-61,71,0.4006917274822871],[124,-61,72,0.40776549816452434],[124,-61,73,0.41494196023183444],[124,-61,74,0.4222094224716418],[124,-61,75,0.4295511389926099],[124,-61,76,0.43694527590546695],[124,-61,77,0.44436501279218676],[124,-61,78,0.4517787814575423],[124,-61,79,0.45915064425903035],[124,-60,64,0.357445763168816],[124,-60,65,0.3638487125090429],[124,-60,66,0.3703632839181442],[124,-60,67,0.37697689188303435],[124,-60,68,0.38368669685254536],[124,-60,69,0.39049885441785737],[124,-60,70,0.3974171754527081],[124,-60,71,0.4044421938501863],[124,-60,72,0.41157060849455324],[124,-60,73,0.41879484701655617],[124,-60,74,0.42610275440714085],[124,-60,75,0.4334774094281142],[124,-60,76,0.4408970716047934],[124,-60,77,0.4483352614167794],[124,-60,78,0.455760976120159],[124,-60,79,0.4631390434404221],[124,-59,64,0.3608480740948405],[124,-59,65,0.36731189309835843],[124,-59,66,0.37388596150009],[124,-59,67,0.38055896417120927],[124,-59,68,0.38732716868631006],[124,-59,69,0.3941944559276985],[124,-59,70,0.4011627727118865],[124,-59,71,0.4082312180163655],[124,-59,72,0.4153954620988115],[124,-59,73,0.4226472861575817],[124,-59,74,0.4299742455446557],[124,-59,75,0.4373594594092779],[124,-59,76,0.44478152950070177],[124,-59,77,0.4522145906933824],[124,-59,78,0.45962849561914837],[124,-59,79,0.46698913560103594],[124,-58,64,0.3643530817953761],[124,-58,65,0.3708691379259871],[124,-58,66,0.3774926540337947],[124,-58,67,0.3842137211598654],[124,-58,68,0.39102770438553014],[124,-58,69,0.39793610322597783],[124,-58,70,0.4049389622970343],[124,-58,71,0.4120339722059434],[124,-58,72,0.41921585809893114],[124,-58,73,0.42647588756024135],[124,-58,74,0.4338015008188657],[124,-58,75,0.44117606609017945],[124,-58,76,0.4485787627338413],[124,-58,77,0.45598459474836367],[124,-58,78,0.46336453694815866],[124,-58,79,0.47068581598328124],[124,-57,64,0.3679335298030694],[124,-57,65,0.37449316919663733],[124,-57,66,0.3811562440447734],[124,-57,67,0.38791428554350227],[124,-57,68,0.3947617333699917],[124,-57,69,0.40169764959972426],[124,-57,70,0.40872017642254144],[124,-57,71,0.4158256475231864],[124,-57,72,0.4230079397284794],[124,-57,73,0.43025794283793656],[124,-57,74,0.43756315054603384],[124,-57,75,0.44490737523947615],[124,-57,76,0.45227058931123076],[124,-57,77,0.4596288954764252],[124,-57,78,0.4669546284049402],[124,-57,79,0.4742165898042635],[124,-56,64,0.37155869845088085],[124,-56,65,0.3781532728030433],[124,-56,66,0.3848462536663494],[124,-56,67,0.3916305333496715],[124,-56,68,0.39849958421895176],[124,-56,69,0.40545002461687857],[124,-56,70,0.41247813008360856],[124,-56,71,0.4195789507495234],[124,-56,72,0.4267456213292933],[124,-56,73,0.4339687881168114],[124,-56,74,0.44123615584593706],[124,-56,75,0.44853215716152384],[124,-56,76,0.4558377473080002],[124,-56,77,0.4631303264905215],[124,-56,78,0.4703837921978236],[124,-56,79,0.47756872359901187],[124,-55,64,0.3751774902439886],[124,-55,65,0.38179797075606214],[124,-55,66,0.38851099927507793],[124,-55,67,0.39531069538714775],[124,-55,68,0.4021895429217298],[124,-55,69,0.40914178024835096],[124,-55,70,0.41616190547804116],[124,-55,71,0.4232437952102646],[124,-55,72,0.4303799694613483],[124,-55,73,0.43756097241492],[124,-55,74,0.4447748718200299],[124,-55,75,0.45200687974654163],[124,-55,76,0.4592390972745652],[124,-55,77,0.46645038554680684],[124,-55,78,0.47361636545116154],[124,-55,79,0.4807095480282026],[124,-54,64,0.3787357232160962],[124,-54,65,0.3853726427827496],[124,-54,66,0.3920955787942597],[124,-54,67,0.39889972201773244],[124,-54,68,0.4057765842433702],[124,-54,69,0.4127181611042812],[124,-54,70,0.4197173186793788],[124,-54,71,0.4267669089081741],[124,-54,72,0.433858987249708],[124,-54,73,0.4409841450311514],[124,-54,74,0.44813095927622104],[124,-54,75,0.4552855626916803],[124,-54,76,0.46243133636156825],[124,-54,77,0.4695487275550461],[124,-54,78,0.4766151948962842],[124,-54,79,0.48360528297613964],[124,-53,64,0.3821874298004906],[124,-53,65,0.3888310563821958],[124,-53,66,0.39555367451789936],[124,-53,67,0.40235137148497],[124,-53,68,0.40921473673411407],[124,-53,69,0.4161337243495791],[124,-53,70,0.4230997611850914],[124,-53,71,0.4301048543758995],[124,-53,72,0.4371407607484746],[124,-53,73,0.44419826987243816],[124,-53,74,0.45126660351266623],[124,-53,75,0.45833293413149045],[124,-53,76,0.4653820249661112],[124,-53,77,0.47239599406635213],[124,-53,78,0.47935420452412364],[124,-53,79,0.486233282960876],[124,-52,64,0.385495084774477],[124,-52,65,0.39213558692686906],[124,-52,66,0.39884776194193683],[124,-52,67,0.40562840490978275],[124,-52,68,0.4124672614486661],[124,-52,69,0.41935249928427504],[124,-52,70,0.4262743372140435],[124,-52,71,0.433224140409277],[124,-52,72,0.44019354182291226],[124,-52,73,0.4471736763106322],[124,-52,74,0.4541545301938115],[124,-52,75,0.46112440888808204],[124,-52,76,0.46806952509980576],[124,-52,77,0.4749737099560117],[124,-52,78,0.4818182492827772],[124,-52,79,0.48858184708503977],[124,-51,64,0.3883552085650895],[124,-51,65,0.3952574941024683],[124,-51,66,0.4019493726464815],[124,-51,67,0.4087028326259821],[124,-51,68,0.41550687895771937],[124,-51,69,0.4223481920089559],[124,-51,70,0.4292160428875667],[124,-51,71,0.4361013726384448],[124,-51,72,0.4429958671128177],[124,-51,73,0.44989114376940836],[124,-51,74,0.45677805310842545],[124,-51,75,0.4636460973373656],[124,-51,76,0.47048296874877465],[124,-51,77,0.477274210155996],[124,-51,78,0.4840029995849355],[124,-51,79,0.4906500612603671],[124,-50,64,0.3894515167249803],[124,-50,65,0.39731423719442976],[124,-50,66,0.4048394653212855],[124,-50,67,0.41155626732541617],[124,-50,68,0.418316101466512],[124,-50,69,0.4251044932404755],[124,-50,70,0.4319100464594196],[124,-50,71,0.43872350300249174],[124,-50,72,0.4455367738014909],[124,-50,73,0.452342081148032],[124,-50,74,0.4591312149968322],[124,-50,75,0.4658949058396248],[124,-50,76,0.4726223166072633],[124,-50,77,0.4793006559253636],[124,-50,78,0.4859149149027051],[124,-50,79,0.49244772947390825],[124,-49,64,0.39062480018908297],[124,-49,65,0.39848695951132806],[124,-49,66,0.40635000728222864],[124,-49,67,0.4141763721091837],[124,-49,68,0.42088427200111594],[124,-49,69,0.4276127230483022],[124,-49,70,0.4343499410893549],[124,-49,71,0.4410866802335973],[124,-49,72,0.447815224475076],[124,-49,73,0.4545284901318229],[124,-49,74,0.4612192417568164],[124,-49,75,0.46787942406813504],[124,-49,76,0.47449961233002336],[124,-49,77,0.4810685834855606],[124,-49,78,0.4875730101967037],[124,-49,79,0.49399727979097763],[124,-48,64,0.39189102410037635],[124,-48,65,0.3997447976079456],[124,-48,66,0.4076086959777409],[124,-48,67,0.41546662551276986],[124,-48,68,0.42319684230245297],[124,-48,69,0.4298626278180209],[124,-48,70,0.43653005145957957],[124,-48,71,0.4431900237897063],[124,-48,72,0.44983527304302456],[124,-48,73,0.4564594162728704],[124,-48,74,0.46305614320672633],[124,-48,75,0.46961851531956034],[124,-48,76,0.4761383825191854],[124,-48,77,0.48260591970761846],[124,-48,78,0.4890092853384976],[124,-48,79,0.4953344039352182],[124,-47,64,0.39326172120056124],[124,-47,65,0.40109655671415906],[124,-47,66,0.40894959496866384],[124,-47,67,0.41680531078271654],[124,-47,68,0.4246564627398963],[124,-47,69,0.43184827536132653],[124,-47,70,0.4384487523781368],[124,-47,71,0.44503635676740116],[124,-47,72,0.45160425446952823],[124,-47,73,0.4581466894021047],[124,-47,74,0.4646581468984886],[124,-47,75,0.47113263094352725],[124,-47,76,0.4775630575436505],[124,-47,77,0.4839407664395043],[124,-47,78,0.4902551532266753],[124,-47,79,0.496493423796196],[124,-46,64,0.39473921433200587],[124,-46,65,0.4025423834316076],[124,-46,66,0.41037040411605086],[124,-46,67,0.4182085571768609],[124,-46,68,0.4260500830357621],[124,-46,69,0.4335698199718758],[124,-46,70,0.4401095613200121],[124,-46,71,0.4466326332051609],[124,-46,72,0.4531325681483729],[124,-46,73,0.45960409803794194],[124,-46,74,0.4660423112243374],[124,-46,75,0.4724419210751473],[124,-46,76,0.4787966482462286],[124,-46,77,0.48509871879779476],[124,-46,78,0.491338480143641],[124,-46,79,0.4975041366702668],[124,-45,64,0.3963176373617131],[124,-45,65,0.4040747484994022],[124,-45,66,0.41186174443242296],[124,-45,67,0.4196649470931783],[124,-45,68,0.42747806681364],[124,-45,69,0.4350327702799384],[124,-45,70,0.4415204775498482],[124,-45,71,0.44798935364846343],[124,-45,72,0.45443317397120536],[124,-45,73,0.46084696873895314],[124,-45,74,0.4672261894529167],[124,-45,75,0.47356598332736777],[124,-45,76,0.4798605778484766],[124,-45,77,0.48610277748264025],[124,-45,78,0.49228357442037496],[124,-45,79,0.4983918750941514],[124,-44,64,0.3979839326373314],[124,-44,65,0.4056794073095825],[124,-44,66,0.4134080751243612],[124,-44,67,0.4211575260254044],[124,-44,68,0.42892195266069344],[124,-44,69,0.4362472728240666],[124,-44,70,0.4426933356360383],[124,-44,71,0.44911999401722125],[124,-44,72,0.4555211009328518],[124,-44,73,0.4618917576227707],[124,-44,74,0.46822750600947355],[124,-44,75,0.47452362429169087],[124,-44,76,0.48077452773615514],[124,-44,77,0.48697327655925843],[124,-44,78,0.49311119265768893],[124,-44,79,0.49917758680482105],[124,-43,64,0.3997188279599822],[124,-43,65,0.4073363410271206],[124,-43,66,0.41498859229765017],[124,-43,67,0.4226646523407533],[124,-43,68,0.4303592309373557],[124,-43,69,0.4372274091500271],[124,-43,70,0.4436431713625814],[124,-43,71,0.4500404459838987],[124,-43,72,0.4564129666855138],[124,-43,73,0.46275565266346425],[124,-43,74,0.46906384380508187],[124,-43,75,0.47533263283278687],[124,-43,76,0.48155629627520474],[124,-43,77,0.4877278260004597],[124,-43,78,0.49383856292032413],[124,-43,79,0.4998779343388817],[124,-42,64,0.4014977960593252],[124,-42,65,0.40902068117201923],[124,-42,66,0.41657811203854633],[124,-42,67,0.42416083245203834],[124,-42,68,0.4315856578100088],[124,-42,69,0.43799050424598385],[124,-42,70,0.4443875980475945],[124,-42,71,0.45076846707903184],[124,-42,72,0.45712650647018715],[124,-42,73,0.46345618540666267],[124,-42,74,0.4697523414598006],[124,-42,75,0.4760095642176863],[124,-42,76,0.48222166988061843],[124,-42,77,0.4883812683763486],[124,-42,78,0.49447942443264264],[124,-42,79,0.50050541391904],[124,-41,64,0.40329199954767425],[124,-41,65,0.41070362051489834],[124,-41,66,0.4181479405798337],[124,-41,67,0.42561754393389095],[124,-41,68,0.4321627063913772],[124,-41,69,0.43855644412925743],[124,-41,70,0.44494619128687],[124,-41,71,0.4513231387555525],[124,-41,72,0.4576801098757706],[124,-41,73,0.464010850773615],[124,-41,74,0.4703093993087305],[124,-41,75,0.4765695341787349],[124,-41,76,0.48278430563564134],[124,-41,77,0.4889456491708856],[124,-41,78,0.4950440834183034],[124,-41,79,0.5010684934103005],[124,-40,64,0.40506922431133224],[124,-40,65,0.4123533131215928],[124,-40,66,0.41966673424607115],[124,-40,67,0.42617534546463376],[124,-40,68,0.4325550319714092],[124,-40,69,0.4389470004131338],[124,-40,70,0.4453398801564457],[124,-40,71,0.45172433066331125],[124,-40,72,0.4580923639029244],[124,-40,73,0.46443673366088906],[124,-40,74,0.4707503931267023],[124,-40,75,0.47702602206978967],[124,-40,76,0.48325562483471035],[124,-40,77,0.4894302002985833],[124,-40,78,0.49553948483921356],[124,-40,79,0.5015717692621134],[124,-39,64,0.4067948042689656],[124,-39,65,0.4137585124357538],[124,-39,66,0.42005882178424675],[124,-39,67,0.4264066318798453],[124,-39,68,0.4327866984190829],[124,-39,69,0.4391851597033025],[124,-39,70,0.4455903429310295],[124,-39,71,0.4519921694117313],[124,-39,72,0.45838160084207286],[124,-39,73,0.464750141082802],[124,-39,74,0.47108939455807036],[124,-39,75,0.4773906823385068],[124,-39,76,0.48364471690167526],[124,-39,77,0.4898413364894749],[124,-39,78,0.49596929990234445],[124,-39,79,0.5020161424858757],[124,-38,64,0.4076334850219874],[124,-38,65,0.4138566121047189],[124,-38,66,0.42014895709743266],[124,-38,67,0.42649627054968675],[124,-38,68,0.4328826914358545],[124,-38,69,0.4392944557021628],[124,-38,70,0.4457194054048045],[124,-38,71,0.4521465101310455],[124,-38,72,0.45856544951235506],[124,-38,73,0.4649662386481666],[124,-38,74,0.4713388972919384],[124,-38,75,0.47767316360299633],[124,-38,76,0.48395825321399116],[124,-38,77,0.49018266430533525],[124,-38,78,0.49633402931530374],[124,-38,79,0.5023990138484106],[124,-37,64,0.40762537799784604],[124,-37,65,0.41383322604134],[124,-37,66,0.4201204377228025],[124,-37,67,0.42647095644309896],[124,-37,68,0.4328681924455216],[124,-37,69,0.43929830193555097],[124,-37,70,0.44574843993769625],[124,-37,71,0.4522064091811019],[124,-37,72,0.4586603884508001],[124,-37,73,0.46509869021148625],[124,-37,74,0.47150954807994344],[124,-37,75,0.47788093468838716],[124,-37,76,0.4842004104434293],[124,-37,77,0.4904550036445493],[124,-37,78,0.49663112238231694],[124,-37,79,0.5027144985907122],[124,-36,64,0.4075240817002256],[124,-36,65,0.4137175742081516],[124,-36,66,0.42000119091636395],[124,-36,67,0.42635709530534155],[124,-36,68,0.43276785101042897],[124,-36,69,0.4392193230611937],[124,-36,70,0.44569776339442396],[124,-36,71,0.45218959640205386],[124,-36,72,0.4586812996893013],[124,-36,73,0.4651592995920261],[124,-36,74,0.4716098817541699],[124,-36,75,0.47801911704857764],[124,-36,76,0.4843728031049602],[124,-36,77,0.4906564216875071],[124,-36,78,0.4968551121419075],[124,-36,79,0.5029536611075937],[124,-35,64,0.4073592583496173],[124,-35,65,0.413538147360599],[124,-35,66,0.41981825080902846],[124,-35,67,0.42618002076919814],[124,-35,68,0.4326050536011558],[124,-35,69,0.4390786827710381],[124,-35,70,0.44558603219514414],[124,-35,71,0.4521119453528998],[124,-35,72,0.45864102181052985],[124,-35,73,0.46515765331161857],[124,-35,74,0.47164605946609633],[124,-35,75,0.4780903230697776],[124,-35,76,0.48447442508686],[124,-35,77,0.4907822793278074],[124,-35,78,0.4969977668548158],[124,-35,79,0.503104770146579],[124,-34,64,0.40715908462708],[124,-34,65,0.4133218334242114],[124,-34,66,0.41959692405460375],[124,-34,67,0.42596320547923405],[124,-34,68,0.43240118661106064],[124,-34,69,0.43889540636059665],[124,-34,70,0.4454296327552768],[124,-34,71,0.45198694004177353],[124,-34,72,0.4585499010326663],[124,-34,73,0.4651007633634392],[124,-34,74,0.4716216094334657],[124,-34,75,0.4780944998250568],[124,-34,76,0.48450160001632475],[124,-34,77,0.49082529022636645],[124,-34,78,0.4970482582548877],[124,-34,79,0.5031535752025946],[124,-33,64,0.4069493376943539],[124,-33,65,0.4130930351192637],[124,-33,66,0.4193599469845539],[124,-33,67,0.42572746403913303],[124,-33,68,0.43217489158110894],[124,-33,69,0.4386856961084869],[124,-33,70,0.4452420656590683],[124,-33,71,0.45182513671703395],[124,-33,72,0.45841533913765836],[124,-33,73,0.46499270909020696],[124,-33,74,0.4715371695514282],[124,-33,75,0.47802877792374826],[124,-33,76,0.48444794039665035],[124,-33,77,0.4907755927163474],[124,-33,78,0.4969933470773463],[124,-33,79,0.5029562587082833],[124,-32,64,0.4067524700054913],[124,-32,65,0.41287277648849047],[124,-32,66,0.4191266320371954],[124,-32,67,0.42549014568077526],[124,-32,68,0.4319413106838369],[124,-32,69,0.4384622376880053],[124,-32,70,0.4450333219861093],[124,-32,71,0.4516336193599553],[124,-32,72,0.45824133712793036],[124,-32,73,0.4648342773205302],[124,-32,74,0.47139023129635527],[124,-32,75,0.47769991738589823],[124,-32,76,0.48339470854728733],[124,-32,77,0.48906586541055097],[124,-32,78,0.49470492677372874],[124,-32,79,0.5003016597441686],[124,-31,64,0.4065866705939197],[124,-31,65,0.4126777960937278],[124,-31,66,0.4189120013335674],[124,-31,67,0.425264314652448],[124,-31,68,0.4317113206081448],[124,-31,69,0.43823349591982463],[124,-31,70,0.44480925029233065],[124,-31,71,0.4514154475981247],[124,-31,72,0.45802803357196514],[124,-31,73,0.4643181649186122],[124,-31,74,0.4698429127568718],[124,-31,75,0.47536952862704274],[124,-31,76,0.48089475882751054],[124,-31,77,0.4864132877807783],[124,-31,78,0.4919176239495454],[124,-31,79,0.49739805027348066],[124,-30,64,0.4064649106475691],[124,-30,65,0.41251962476983617],[124,-30,66,0.4187259053884909],[124,-30,67,0.4250579164334618],[124,-30,68,0.4314907530899593],[124,-30,69,0.43800299827188216],[124,-30,70,0.4445709128380696],[124,-30,71,0.4511690958445703],[124,-30,72,0.45675982440761836],[124,-30,73,0.4620792952165203],[124,-30,74,0.4674148740740854],[124,-30,75,0.4727671490853424],[124,-30,76,0.47813445839219865],[124,-30,77,0.4835126644357966],[124,-30,78,0.48889500809075576],[124,-30,79,0.49427204311662],[124,-29,64,0.4063939713255225],[124,-29,65,0.4124036459584898],[124,-29,66,0.4185721250728728],[124,-29,67,0.4248729280029717],[124,-29,68,0.4312796004470867],[124,-29,69,0.43776860461857736],[124,-29,70,0.4442469123846357],[124,-29,71,0.44933104987161543],[124,-29,72,0.4544342251258297],[124,-29,73,0.4595629057254418],[124,-29,74,0.46472172019460084],[124,-29,75,0.4699130078065838],[124,-29,76,0.475136461777788],[124,-29,77,0.4803888666114276],[124,-29,78,0.48566393019988274],[124,-29,79,0.49095221114258464],[124,-28,64,0.40637345192258423],[124,-28,65,0.4123281367904036],[124,-28,66,0.4184474550820505],[124,-28,67,0.4247044905219339],[124,-28,68,0.4310712045997329],[124,-28,69,0.4371793678987164],[124,-28,70,0.44204250959093244],[124,-28,71,0.4469253758838254],[124,-28,72,0.4518382026451898],[124,-28,73,0.4567896694147784],[124,-28,74,0.46178628989060283],[124,-28,75,0.4668319086070308],[124,-28,76,0.4719273047636746],[124,-28,77,0.47706990399384486],[124,-28,78,0.4822535986876835],[124,-28,79,0.48746867730956056],[124,-27,64,0.4063947566547329],[124,-27,65,0.4122832882438841],[124,-27,66,0.4183407673166228],[124,-27,67,0.42454002293056636],[124,-27,68,0.4302510329492901],[124,-27,69,0.4349002827331434],[124,-27,70,0.4395654238709798],[124,-27,71,0.44426010428560697],[124,-27,72,0.4489968780805774],[124,-27,73,0.4537864268994593],[124,-27,74,0.4586368988184317],[124,-27,75,0.4635533659405293],[124,-27,76,0.4685374016724839],[124,-27,77,0.47358677847237846],[124,-27,78,0.4786952866604251],[124,-27,79,0.4838526746878755],[124,-26,64,0.40644005851687154],[124,-26,65,0.41225020287839076],[124,-26,66,0.4182320527447303],[124,-26,67,0.42346023414022294],[124,-26,68,0.4279084508701784],[124,-26,69,0.43236460451097053],[124,-26,70,0.4368452143874664],[124,-26,71,0.4413663464069407],[124,-26,72,0.4459426597668145],[124,-26,73,0.45058658094390525],[124,-26,74,0.4553076063473279],[124,-26,75,0.46011173481606393],[124,-26,76,0.46500103093382095],[124,-26,77,0.4699733199202571],[124,-26,78,0.47502201464142135],[124,-26,79,0.4801360750652462],[124,-25,64,0.40648130607864885],[124,-25,65,0.41219995143606386],[124,-25,66,0.4168062821678425],[124,-25,67,0.42107148410768647],[124,-25,68,0.4253330370351625],[124,-25,69,0.42960969128369336],[124,-25,70,0.43392046647568394],[124,-25,71,0.43828361384037334],[124,-25,72,0.4427156220322288],[124,-25,73,0.44723035988833854],[124,-25,74,0.451838357509558],[124,-25,75,0.4565462268296803],[124,-25,76,0.46135622260938647],[124,-25,77,0.4662659445594683],[124,-25,78,0.4712681810635094],[124,-25,79,0.4763508947358896],[124,-24,64,0.4061414653728076],[124,-24,65,0.4102849310698592],[124,-24,66,0.4143907157137097],[124,-24,67,0.4184764384384418],[124,-24,68,0.4225642688171931],[124,-24,69,0.42667551992614455],[124,-24,70,0.4308314717348284],[124,-24,71,0.435052277948571],[124,-24,72,0.439355947032821],[124,-24,73,0.4437574683904422],[124,-24,74,0.44826808505172044],[124,-24,75,0.45289471399890135],[124,-24,76,0.4576395150025031],[124,-24,77,0.46249960859790806],[124,-24,78,0.46746694358070395],[124,-24,79,0.47252831415006796],[124,-23,64,0.4038941582040233],[124,-23,65,0.4078588442857544],[124,-23,66,0.41179081902317677],[124,-23,67,0.41570813390194267],[124,-23,68,0.4196346161884261],[124,-23,69,0.42359394452982085],[124,-23,70,0.4276094143372044],[124,-23,71,0.43170280398797567],[124,-23,72,0.43589334493438825],[124,-23,73,0.4401968438942833],[124,-23,74,0.444624958435616],[124,-23,75,0.44918462701277123],[124,-23,76,0.4538776542529808],[124,-23,77,0.45870045202799287],[124,-23,78,0.46364393658253633],[124,-23,79,0.4686935817293572],[124,-22,64,0.4014772699247645],[124,-22,65,0.4052704412254119],[124,-22,66,0.4090373313123492],[124,-22,67,0.41279635337329745],[124,-22,68,0.4165728268847378],[124,-22,69,0.4203925909804531],[124,-22,70,0.42428071677306267],[124,-22,71,0.4282603449233076],[124,-22,72,0.4323516561642474],[124,-22,73,0.43657099974930397],[124,-22,74,0.44093018106899456],[124,-22,75,0.4454359094135392],[124,-22,76,0.45008940658544305],[124,-22,77,0.45488617679037235],[124,-22,78,0.45981593795936276],[124,-22,79,0.46486271438296917],[124,-21,64,0.3989222390505697],[124,-21,65,0.4025499867819819],[124,-21,66,0.40615925029442124],[124,-21,67,0.40976871105556245],[124,-21,68,0.4134049973059706],[124,-21,69,0.4170959018227423],[124,-21,70,0.4208680443828949],[124,-21,71,0.42474568951569885],[124,-21,72,0.4287497258420373],[124,-21,73,0.4328968083265307],[124,-21,74,0.43719866460660517],[124,-21,75,0.4416615662822873],[124,-21,76,0.4462859657654195],[124,-21,77,0.4510662990000601],[124,-21,78,0.45599095408039575],[124,-21,79,0.4610424055109747],[124,-20,64,0.3962603324073091],[124,-20,65,0.39972721313717346],[124,-20,66,0.403184607779835],[124,-20,67,0.40665135411491843],[124,-20,68,0.4101551954064938],[124,-20,69,0.4137256776402953],[124,-20,70,0.41739076461816726],[124,-20,71,0.42117564105034466],[124,-20,72,0.42510170570725125],[124,-20,73,0.4291857319030168],[124,-20,74,0.43343919638516926],[124,-20,75,0.437867777412741],[124,-20,76,0.44247102250891607],[124,-20,77,0.4472421860772833],[124,-20,78,0.4521682367762231],[124,-20,79,0.45723003425643083],[124,-19,64,0.3935235417431837],[124,-19,65,0.3968321524839823],[124,-19,66,0.4001412321449843],[124,-19,67,0.40346964873443286],[124,-19,68,0.4068460653619905],[124,-19,69,0.4103015972899341],[124,-19,70,0.41386538189406613],[124,-19,71,0.41756336801576655],[124,-19,72,0.42141732396280307],[124,-19,73,0.4254440170319641],[124,-19,74,0.4296545655342325],[124,-19,75,0.43405396399958823],[124,-19,76,0.4386407819317956],[124,-19,77,0.4434070361767822],[124,-19,78,0.44833823666503303],[124,-19,79,0.45341360499135513],[124,-18,64,0.39074189642682383],[124,-18,65,0.39389222477718266],[124,-18,66,0.3970536026735451],[124,-18,67,0.40024479278439246],[124,-18,68,0.4034951914791807],[124,-18,69,0.40683732788627947],[124,-18,70,0.4103013906288808],[124,-18,71,0.4139139994284228],[124,-18,72,0.41769722437881784],[124,-18,73,0.4216677811139354],[124,-18,74,0.425836402756604],[124,-18,75,0.43020738922203844],[124,-18,76,0.4347783341309543],[124,-18,77,0.4395400292708924],[124,-18,78,0.44447654623214333],[124,-18,79,0.4495654945397619],[124,-17,64,0.38792773280909987],[124,-17,65,0.39091733774845777],[124,-17,66,0.39392895931917443],[124,-17,67,0.3969811170389159],[124,-17,68,0.40010376320643143],[124,-17,69,0.40333070694866424],[124,-17,70,0.4066931011073407],[124,-17,71,0.41021818854039654],[124,-17,72,0.4139283257476528],[124,-17,73,0.41784018725336963],[124,-17,74,0.4219641515462356],[124,-17,75,0.4263038690493837],[124,-17,76,0.4308560122636016],[124,-17,77,0.43561020789925853],[124,-17,78,0.4405491504905136],[124,-17,79,0.4456488966717332],[124,-16,64,0.3850498430341311],[124,-16,65,0.387877642764028],[124,-16,66,0.3907391915912643],[124,-16,67,0.393652635389461],[124,-16,68,0.3966482809166349],[124,-16,69,0.3997610349768343],[124,-16,70,0.4030228646754596],[124,-16,71,0.4064615150887894],[124,-16,72,0.4100995340961963],[124,-16,73,0.4139534829943593],[124,-16,74,0.41803333360707295],[124,-16,75,0.4223420522633615],[124,-16,76,0.42687537067507403],[124,-16,77,0.43162174340628906],[124,-16,78,0.4365624912947623],[124,-16,79,0.44167212986299764],[124,-15,64,0.382076387847315],[124,-15,65,0.38474326870327624],[124,-15,66,0.38745677022921904],[124,-15,67,0.39023453609852105],[124,-15,68,0.3931069954824486],[124,-15,69,0.3961099131666779],[124,-15,70,0.3992758470165757],[124,-15,71,0.4026328388837425],[124,-15,72,0.40620344213140464],[124,-15,73,0.41000393968094584],[124,-15,74,0.41404375320268755],[124,-15,75,0.41832504372069634],[124,-15,76,0.42284250354824165],[124,-15,77,0.42758333912100954],[124,-15,78,0.4325274439534614],[124,-15,79,0.4376477606126155],[124,-14,64,0.37898601234423335],[124,-14,65,0.3814943872564764],[124,-14,66,0.3840635896985932],[124,-14,67,0.3867106278858926],[124,-14,68,0.38946579542833837],[124,-14,69,0.3923654301220497],[124,-14,70,0.3954424013232811],[124,-14,71,0.3987247800160633],[124,-14,72,0.40223487406688213],[124,-14,73,0.405988458067574],[124,-14,74,0.4099941982929472],[124,-14,75,0.4142532729350683],[124,-14,76,0.418759187412614],[124,-14,77,0.42349778419474476],[124,-14,78,0.4284474462289058],[124,-14,79,0.4335794927236508],[124,-13,64,0.375765814603084],[124,-13,65,0.37811922947076715],[124,-13,66,0.38054905993948096],[124,-13,67,0.3830715365155011],[124,-13,68,0.3857165391213933],[124,-13,69,0.388520660546845],[124,-13,70,0.39151676343347613],[124,-13,71,0.3947326384651184],[124,-13,72,0.39819005498651144],[124,-13,73,0.4019040092798372],[124,-13,74,0.4058821709217273],[124,-13,75,0.410124527269411],[124,-13,76,0.4146232257526457],[124,-13,77,0.4193626132815971],[124,-13,78,0.42431947172435414],[124,-13,79,0.429463448064132],[124,-12,64,0.3724094860399874],[124,-12,65,0.37461227158658744],[124,-12,66,0.3769083633718674],[124,-12,67,0.37931306073839777],[124,-12,68,0.38185553831245594],[124,-12,69,0.3845723050005118],[124,-12,70,0.38749587538149827],[124,-12,71,0.39065342712006146],[124,-12,72,0.39406587635495877],[124,-12,73,0.3977471525517317],[124,-12,74,0.4017036731311096],[124,-12,75,0.4059340178036773],[124,-12,76,0.4104288021632563],[124,-12,77,0.4151707497199025],[124,-12,78,0.42013496119292415],[124,-12,79,0.42528937953776036],[124,-11,64,0.36891562376541315],[124,-11,65,0.3709725903867532],[124,-11,66,0.3731408773489864],[124,-11,67,0.37543468777897254],[124,-11,68,0.37788219323815575],[124,-11,69,0.380519470978632],[124,-11,70,0.3833783377044893],[124,-11,71,0.3864850186605145],[124,-11,72,0.38985925825427337],[124,-11,73,0.3935136304782675],[124,-11,74,0.39745304932605],[124,-11,75,0.401674479011195],[124,-11,76,0.40616684341678877],[124,-11,77,0.4109111338293753],[124,-11,78,0.41588071364961426],[124,-11,79,0.4210418184251977],[124,-10,64,0.36528621590528043],[124,-10,65,0.36720238895424534],[124,-10,66,0.36924876290428865],[124,-10,67,0.3714382691778307],[124,-10,68,0.3737977800833103],[124,-10,69,0.3763625961218086],[124,-10,70,0.3791634913287927],[124,-10,71,0.38222540716108566],[124,-10,72,0.3855666092689036],[124,-10,73,0.3891980427823131],[124,-10,74,0.3931228861836079],[124,-10,75,0.397336303451322],[124,-10,76,0.40182539378048754],[124,-10,77,0.40656933781105187],[124,-10,78,0.41153973893667406],[124,-10,79,0.4167011579223102],[124,-9,64,0.3615253014935724],[124,-9,65,0.3633056943677703],[124,-9,66,0.36523572125258247],[124,-9,67,0.36732685839321305],[124,-9,68,0.3696043921559573],[124,-9,69,0.37210251486389107],[124,-9,70,0.374850630314591],[124,-9,71,0.3778720856740969],[124,-9,72,0.3811833852595719],[124,-9,73,0.38479359983314065],[124,-9,74,0.388703971353257],[124,-9,75,0.39290771274692793],[124,-9,76,0.3973900018886631],[124,-9,77,0.4021281686038081],[124,-9,78,0.40709207315958135],[124,-9,79,0.4122446743694572],[124,-8,64,0.35763780714170645],[124,-8,65,0.3592872294534471],[124,-8,66,0.36110592007868214],[124,-8,67,0.36310371211085735],[124,-8,68,0.36530403664184796],[124,-8,69,0.3677396703026884],[124,-8,70,0.37043834715771623],[124,-8,71,0.3734215414055636],[124,-8,72,0.37670374855894706],[124,-8,73,0.38029195737114785],[124,-8,74,0.38418531232995007],[124,-8,75,0.3883749661632821],[124,-8,76,0.3928441214306632],[124,-8,77,0.39756825991441525],[124,-8,78,0.40251555817908996],[124,-8,79,0.40764748733933537],[124,-7,64,0.35362856323755104],[124,-7,65,0.35515146125076275],[124,-7,66,0.35686309217167866],[124,-7,67,0.3587714577141464],[124,-7,68,0.36089788927604133],[124,-7,69,0.36327347350746375],[124,-7,70,0.36592401273053654],[124,-7,71,0.3688688704260777],[124,-7,72,0.3721203293846301],[124,-7,73,0.3756831340847995],[124,-7,74,0.37955421699610786],[124,-7,75,0.3837226081373417],[124,-7,76,0.38816952686225903],[124,-7,77,0.3928686544960905],[124,-7,78,0.39778658611303],[124,-7,79,0.40288345942945497],[124,-6,64,0.3495015029192401],[124,-6,65,0.35090182933664027],[124,-6,66,0.35250980943531846],[124,-6,67,0.3543314298179869],[124,-6,68,0.35638570969223193],[124,-6,69,0.3587018128638687],[124,-6,70,0.3613033932855977],[124,-6,71,0.3642075141477291],[124,-6,72,0.36742409149494054],[124,-6,73,0.3709555138497691],[124,-6,74,0.37479643742089697],[124,-6,75,0.37893375612213426],[124,-6,76,0.3833467452835988],[124,-6,77,0.3880073776033946],[124,-6,78,0.3928808095705465],[124,-6,79,0.3979260362904274],[124,-5,64,0.345259047502845],[124,-5,65,0.3465401575802139],[124,-5,66,0.3480469357221875],[124,-5,67,0.34978317916855917],[124,-5,68,0.3517654205833198],[124,-5,69,0.35402071639657334],[124,-5,70,0.356570407244627],[124,-5,71,0.3594291200493328],[124,-5,72,0.3626043043096655],[124,-5,73,0.36609593457639666],[124,-5,74,0.3698963785754309],[124,-5,75,0.37399043011092503],[124,-5,76,0.37835550555315095],[124,-5,77,0.3829620024014837],[124,-5,78,0.3877738181142466],[124,-5,79,0.392749027116577],[124,-4,64,0.34090168241227387],[124,-4,65,0.34206625326651724],[124,-4,66,0.34347326229534686],[124,-4,67,0.3451241575508967],[124,-4,68,0.3470328541236839],[124,-4,69,0.349224170297103],[124,-4,70,0.3517170247463147],[124,-4,71,0.35452352934010617],[124,-4,72,0.3576486238767692],[124,-4,73,0.36108986571583623],[124,-4,74,0.3648373736673652],[124,-4,75,0.3688739251871551],[124,-4,76,0.373175205621633],[124,-4,77,0.3777102079533428],[124,-4,78,0.3824417812211533],[124,-4,79,0.38732732553042737],[124,-3,64,0.33642772795944903],[124,-3,65,0.33747769782476356],[124,-3,66,0.33878533001086597],[124,-3,67,0.34034958262245524],[124,-3,68,0.3421816693601225],[124,-3,69,0.3443040971150622],[124,-3,70,0.34673331312508043],[124,-3,71,0.3494788944130349],[124,-3,72,0.3525432851840308],[124,-3,73,0.35592167654514717],[124,-3,74,0.3596020278157541],[124,-3,75,0.3635652284074016],[124,-3,76,0.36778539897210805],[124,-3,77,0.3722303302496417],[124,-3,78,0.376862057792013],[124,-3,79,0.3816375705086329],[124,-2,64,0.3318333095505598],[124,-2,65,0.3327698336240927],[124,-2,66,0.33397744253636724],[124,-2,67,0.3354524868016824],[124,-2,68,0.33720344447303274],[124,-2,69,0.33925049724388323],[124,-2,70,0.34160763163907026],[124,-2,71,0.34428192905323807],[124,-2,72,0.34727340839193277],[124,-2,73,0.35057499738790093],[124,-2,74,0.35417263177849534],[124,-2,75,0.3580454812679297],[124,-2,76,0.36216630094502683],[124,-2,77,0.36650190658582454],[124,-2,78,0.37101377204469316],[124,-2,79,0.3756587467289513],[124,-1,64,0.3271125320410224],[124,-1,65,0.3279359514475373],[124,-1,66,0.3290418750652479],[124,-1,67,0.3304239544771391],[124,-1,68,0.3320879479332832],[124,-1,69,0.3340517574388829],[124,-1,70,0.3363269788505812],[124,-1,71,0.3389182944256589],[124,-1,72,0.34182342159324625],[124,-1,73,0.34503317592246413],[124,-1,74,0.34853164740351156],[124,-1,75,0.3522964889247028],[124,-1,76,0.3562993156044812],[124,-1,77,0.3605062134250326],[124,-1,78,0.3648783554168065],[124,-1,79,0.369372723462223],[124,0,64,0.3222578630266619],[124,0,65,0.322967683322697],[124,0,66,0.32396928305302397],[124,0,67,0.32525355186463223],[124,0,68,0.32682359263337885],[124,0,69,0.32869513014607477],[124,0,70,0.33087749608676204],[124,0,71,0.3333731238716875],[124,0,72,0.3361776026875236],[124,0,73,0.3392798306874922],[124,0,74,0.34266226640421005],[124,0,75,0.34630127723586],[124,0,76,0.35016758366897077],[124,0,77,0.35422679771891763],[124,0,78,0.3584400539015586],[124,0,79,0.36276473089704847],[124,1,64,0.3172607276620725],[124,1,65,0.31785560260961687],[124,1,66,0.3187493123818353],[124,1,67,0.3199299506016507],[124,1,68,0.3213980739422188],[124,1,69,0.3231673846450819],[124,1,70,0.3252451282450245],[124,1,71,0.32763168825520955],[124,1,72,0.3303207428046648],[124,1,73,0.33329950512741374],[124,1,74,0.33654904691759335],[124,1,75,0.3400447033945236],[124,1,76,0.34375655875993205],[124,1,77,0.34765001057837486],[124,1,78,0.35168641147443896],[124,1,79,0.35582378641706686],[124,2,64,0.31211231696850644],[124,2,65,0.31259003225659876],[124,2,66,0.3133714113824089],[124,2,67,0.3144417455272703],[124,2,68,0.3157991926242643],[124,2,69,0.31745563193391657],[124,2,70,0.31941644535911395],[124,2,71,0.32168020725634316],[124,2,72,0.3242389391322426],[124,2,73,0.32707843293131045],[124,2,74,0.3301786418970951],[124,2,75,0.33351413785100714],[124,2,76,0.33705463360292115],[124,2,77,0.3407655690877116],[124,2,78,0.3446087597146385],[124,2,79,0.34854310532227434],[124,3,64,0.30680464001578706],[124,3,65,0.30716209809787987],[124,3,66,0.3078258851948983],[124,3,67,0.30877850801193224],[124,3,68,0.31001590212926533],[124,3,69,0.31154835805910797],[124,3,70,0.31337965175605126],[124,3,71,0.3155068224557036],[124,3,72,0.3179205189252888],[124,3,73,0.3206053994182486],[124,3,74,0.3235405842951563],[124,3,75,0.3267001601668786],[124,3,76,0.3300537343172528],[124,3,77,0.3335670380730903],[124,3,78,0.3372025777116463],[124,3,79,0.34092033142973704],[124,4,64,0.30133179527384263],[124,4,65,0.30156499529900493],[124,4,66,0.30210515557646755],[124,4,67,0.30293203508829697],[124,4,68,0.3040395398875049],[124,4,69,0.3054366274000419],[124,4,70,0.3071257488656353],[124,4,71,0.3091027056215672],[124,4,72,0.31135707830624915],[124,4,73,0.3138726955905685],[124,4,74,0.31662814139078715],[124,4,75,0.3195972994410489],[124,4,76,0.3227499340349593],[124,4,77,0.3260523056854808],[124,4,78,0.3294678204029281],[124,4,79,0.3329577112517086],[124,5,64,0.29569146690691617],[124,5,65,0.29579547431200665],[124,5,66,0.2962052332346012],[124,5,67,0.2968978022583071],[124,5,68,0.2978652513113349],[124,5,69,0.29911546542075734],[124,5,70,0.30064986195319654],[124,5,71,0.30246331313343855],[124,5,72,0.30454464732079745],[124,5,73,0.30687717669117964],[124,5,74,0.30943925028119906],[124,5,75,0.31220483130363574],[124,5,76,0.315144097602971],[124,5,77,0.31822406408669407],[124,5,78,0.3214092259446916],[124,5,79,0.3246622214546357],[124,6,64,0.2898866554640465],[124,6,65,0.28985555698184],[124,6,66,0.2901274140743201],[124,6,67,0.29067663167758356],[124,6,68,0.2914936180617417],[124,6,69,0.29258543180132646],[124,6,70,0.2939527405019608],[124,6,71,0.2955897945237021],[124,6,72,0.29748498692306],[124,6,73,0.2996214280772544],[124,6,74,0.3019775339606468],[124,6,75,0.3045276270220708],[124,6,76,0.3072425485963991],[124,6,77,0.3100902817749509],[124,6,78,0.31303658365918996],[124,6,79,0.31604562592965585],[124,7,64,0.2839302273171314],[124,7,65,0.28375733308888934],[124,7,66,0.2838832682550417],[124,7,67,0.2842798471934906],[124,7,68,0.2849359694328727],[124,7,69,0.2858580806318661],[124,7,70,0.2870463580102273],[124,7,71,0.28849471839753005],[124,7,72,0.2901914214768135],[124,7,73,0.2921196776502881],[124,7,74,0.29425825952143164],[124,7,75,0.29658211598893625],[124,7,76,0.2990629879542393],[124,7,77,0.3016700246564225],[124,7,78,0.30437039966787394],[124,7,79,0.30712992561008534],[124,8,64,0.2778515715392162],[124,8,65,0.27753066865138143],[124,8,66,0.27750321644018067],[124,8,67,0.2777386470826479],[124,8,68,0.27822455888706416],[124,8,69,0.27896697355073674],[124,8,70,0.27996580111334884],[124,8,71,0.2812148691624712],[124,8,72,0.2827025560821415],[124,8,73,0.2844124204153432],[124,8,74,0.2863238253670699],[124,8,75,0.288412557494805],[124,8,76,0.29065143865787196],[124,8,77,0.29301093032666586],[124,8,78,0.29545972938892906],[124,8,79,0.2979653546315661],[124,9,64,0.27167946169729584],[124,9,65,0.2712052705870334],[124,9,66,0.2710179562986427],[124,9,67,0.27108493541137657],[124,9,68,0.27139277685716934],[124,9,69,0.27194724387806196],[124,9,70,0.27274816246612416],[124,9,71,0.273789463667184],[124,9,72,0.27505983679868384],[124,9,73,0.2765433715897229],[124,9,74,0.2782201883068097],[124,9,75,0.28006705496521067],[124,9,76,0.28205799076594806],[124,9,77,0.2841648549428333],[124,9,78,0.28635792025391504],[124,9,79,0.28860643040581807],[124,10,64,0.2654387137430172],[124,10,65,0.2648069732990133],[124,10,66,0.2644544306070436],[124,10,67,0.26434697657986855],[124,10,68,0.264470466452764],[124,10,69,0.2648305413969995],[124,10,70,0.26542708275646565],[124,10,71,0.2662542641498219],[124,10,72,0.26730121781781085],[124,10,73,0.26855268375812763],[124,10,74,0.26998964074967985],[124,10,75,0.2715899184183976],[124,10,76,0.27332878955027884],[124,10,77,0.27517954191428495],[124,10,78,0.27711402891946657],[124,10,79,0.2791031984955503],[124,11,64,0.25915263171029507],[124,11,65,0.25836017731446886],[124,11,66,0.2578382382258693],[124,11,67,0.25755175684244963],[124,11,68,0.2574862127116506],[124,11,69,0.25764722552814007],[124,11,70,0.258034823556431],[124,11,71,0.2586435066609292],[124,11,72,0.25946292207088634],[124,11,73,0.26047851756108525],[124,11,74,0.26167217118740765],[124,11,75,0.2630227967791638],[124,11,76,0.26450692445540097],[124,11,77,0.26609925550046637],[124,11,78,0.26777319100619984],[124,11,79,0.2695013337624018],[124,12,64,0.252845762246724],[124,12,65,0.251890592639385],[124,12,66,0.2511963432101106],[124,12,67,0.25072763470745574],[124,12,68,0.2504699086537842],[124,12,69,0.25042882032308494],[124,12,70,0.25060458412244757],[124,12,71,0.25099205279235054],[124,12,72,0.25158140192482276],[124,12,73,0.2523587869476904],[124,12,74,0.25330697174864664],[124,12,75,0.25440592818723373],[124,12,76,0.2556334058192384],[124,12,77,0.25696547123646546],[124,12,78,0.2583770165066341],[124,12,79,0.25984223628121655],[124,13,64,0.24654696375122637],[124,13,65,0.24542829250992826],[124,13,66,0.24456008759869627],[124,13,67,0.24390728556245986],[124,13,68,0.2434556032089354],[124,13,69,0.2432107359925903],[124,13,70,0.24317306642095757],[124,13,71,0.24333776846767796],[124,13,72,0.24369550312283889],[124,13,73,0.24423308148325004],[124,13,74,0.24493409458741283],[124,13,75,0.24577950928607994],[124,13,76,0.24674822952694467],[124,13,77,0.24781762252106804],[124,13,78,0.24896400935030366],[124,13,79,0.25016311966707894],[124,14,64,0.2402927973302872],[124,14,65,0.23901108474489616],[124,14,66,0.23796851501754193],[124,14,67,0.2371309475177552],[124,14,68,0.23648463778955098],[124,14,69,0.23603526343501657],[124,14,70,0.2357832944531569],[124,14,71,0.235724135389938],[124,14,72,0.2358488370050529],[124,14,73,0.23614477010726398],[124,14,74,0.23659626079079932],[124,14,75,0.23718518640446495],[124,14,76,0.2378915316852624],[124,14,77,0.23869390458918874],[124,14,78,0.239570011454619],[124,14,79,0.24049709123594484],[124,15,64,0.23412959845257972],[124,15,65,0.23268638819931636],[124,15,66,0.23146995912396026],[124,15,67,0.23044763372818997],[124,15,68,0.22960640522847944],[124,15,69,0.22895181784264684],[124,15,70,0.22848429959496894],[124,15,71,0.22819935657866858],[124,15,72,0.22808830729059187],[124,15,73,0.22813897290950405],[124,15,74,0.2283363227768663],[124,15,75,0.22866307445340703],[124,15,76,0.22910024783956587],[124,15,77,0.22962767296269695],[124,15,78,0.23022445114970985],[124,15,79,0.23086936941818278],[124,16,64,0.22809762700415193],[124,16,65,0.22649486559953647],[124,16,66,0.22510505928729008],[124,16,67,0.22389746497782123],[124,16,68,0.2228599795736032],[124,16,69,0.22199789992333938],[124,16,70,0.22131150571987868],[124,16,71,0.22079631687935394],[124,16,72,0.2204438540628551],[124,16,73,0.2202423481650712],[124,16,74,0.22017739805785663],[124,16,75,0.22023257600829774],[124,16,76,0.22038998032211207],[124,16,77,0.22063073489368457],[124,16,78,0.22093543547455913],[124,16,79,0.22128454260017266],[124,17,64,0.2222137249962543],[124,17,65,0.2204536174653877],[124,17,66,0.21889085779686457],[124,17,67,0.21749704287637792],[124,17,68,0.2162611171258392],[124,17,69,0.21518803440947934],[124,17,70,0.2142778568101526],[124,17,71,0.21352608199776085],[124,17,72,0.2129244299909262],[124,17,73,0.21246157138898072],[124,17,74,0.2121237963973453],[124,17,75,0.21189562411947369],[124,17,76,0.2117603517375021],[124,17,77,0.2117005433510145],[124,17,78,0.21169845838958865],[124,17,79,0.21173641965727635],[124,18,64,0.2164726734760196],[124,18,65,0.21455769353992543],[124,18,66,0.21282253197381432],[124,18,67,0.21124146534960633],[124,18,68,0.20980460761047381],[124,18,69,0.2085164934170217],[124,18,70,0.20737693009239405],[124,18,71,0.20638139829259286],[124,18,72,0.20552186233559558],[124,18,73,0.2047875142073709],[124,18,74,0.20416545061114996],[124,18,75,0.20364128259561076],[124,18,76,0.20319967746494905],[124,18,77,0.20282483283841835],[124,18,78,0.2025008828893657],[124,18,79,0.20221223695114005],[124,19,64,0.20744883022872407],[124,19,65,0.20610392604527147],[124,19,66,0.20475906173031114],[124,19,67,0.20344122357267236],[124,19,68,0.20216160822018664],[124,19,69,0.20091718688907742],[124,19,70,0.1997079812764493],[124,19,71,0.1985366715045392],[124,19,72,0.19740784735690498],[124,19,73,0.1963273319274772],[124,19,74,0.19530157826242078],[124,19,75,0.1943371393877106],[124,19,76,0.19344021192944885],[124,19,77,0.1926162533508834],[124,19,78,0.19186967265269486],[124,19,79,0.19120359421099695],[124,20,64,0.1964367743278144],[124,20,65,0.1949327628775526],[124,20,66,0.193447099465847],[124,20,67,0.19200378055307488],[124,20,68,0.1906128626424797],[124,20,69,0.1892720716942168],[124,20,70,0.18798195679546767],[124,20,71,0.18674542437771366],[124,20,72,0.18556697441784994],[124,20,73,0.18445201686062906],[124,20,74,0.18340626878032318],[124,20,75,0.18243523259346403],[124,20,76,0.1815437554306287],[124,20,77,0.18073566957529424],[124,20,78,0.18001351368484464],[124,20,79,0.1793783343226225],[124,21,64,0.1851213384332335],[124,21,65,0.183454914017878],[124,21,66,0.18182658132787868],[124,21,67,0.18025720393468564],[124,21,68,0.1787556383710934],[124,21,69,0.1773203775299399],[124,21,70,0.17595246187676492],[124,21,71,0.17465494439787196],[124,21,72,0.17343211893252583],[124,21,73,0.17228883623179933],[124,21,74,0.17122990819092423],[124,21,75,0.17025960047781685],[124,21,76,0.1693812135594281],[124,21,77,0.16859675191167323],[124,21,78,0.16790668099119396],[124,21,79,0.16730977134793898],[124,22,64,0.1735670138741233],[124,22,65,0.17173460869206839],[124,22,66,0.16996116435985129],[124,22,67,0.16826433659855536],[124,22,68,0.16665174429529944],[124,22,69,0.16512263864968135],[124,22,70,0.16367849826512315],[124,22,71,0.16232243110272015],[124,22,72,0.16105840266239504],[124,22,73,0.15989055892121068],[124,22,74,0.15882264439678165],[124,22,75,0.15785751546265694],[124,22,76,0.15699674880569695],[124,22,77,0.15624034468495615],[124,22,78,0.1555865244308375],[124,22,79,0.15503162141231558],[124,23,64,0.16184413325718122],[124,23,65,0.15984197245638765],[124,23,66,0.15792039721643814],[124,23,67,0.1560938482823907],[124,23,68,0.15436869127861283],[124,23,69,0.15274490650765618],[124,23,70,0.15122434289405917],[124,23,71,0.14981006470516986],[124,23,72,0.14850558747903475],[124,23,73,0.14731421511074022],[124,23,74,0.14623847837989792],[124,23,75,0.14527967494567384],[124,23,76,0.14443751058475512],[124,23,77,0.1437098412041785],[124,23,78,0.1430925149286179],[124,23,79,0.14257931334067545],[124,24,64,0.15002603375423212],[124,24,65,0.1478501997339438],[124,24,66,0.1457769216261036],[124,24,67,0.14381748496741717],[124,24,68,0.14197700830309007],[124,24,69,0.14025615183870518],[124,24,70,0.13865705484149654],[124,24,71,0.13718263607325787],[124,24,72,0.13583584522893585],[124,24,73,0.13461902117037003],[124,24,74,0.13353335714815354],[124,24,75,0.132578472935075],[124,24,76,0.13175209353141035],[124,24,77,0.13104983384787242],[124,24,78,0.1304650885300165],[124,24,79,0.1299890258586239],[124,25,64,0.13818633399409744],[124,25,65,0.1358328369841861],[124,25,66,0.13360378033912745],[124,25,67,0.13150741922365558],[124,25,68,0.12954765259729842],[124,25,69,0.12772575234040479],[124,25,70,0.12604405818530753],[124,25,71,0.12450524170982319],[124,25,72,0.12311158065539879],[124,25,73,0.12186434479793212],[124,25,74,0.12076329347211807],[124,25,75,0.1198062845697163],[124,25,76,0.1189889945590028],[124,25,77,0.11830474880938484],[124,25,78,0.11774446125559353],[124,25,79,0.11729668220038861],[124,26,64,0.12639632607429568],[124,26,65,0.12386117786747808],[124,26,66,0.1214718327496216],[124,26,67,0.11923370250526798],[124,26,68,0.11714951451928855],[124,26,69,0.11522106648804936],[124,26,70,0.11345080103207518],[124,26,71,0.11184104373594068],[124,26,72,0.11039330710490992],[124,26,73,0.10910770986068646],[124,26,74,0.1079825115847617],[124,26,75,0.1070137624289374],[124,26,76,0.10619506733196794],[124,26,77,0.10551746391150847],[124,26,78,0.10496941294570086],[124,26,79,0.10453690011918082],[124,27,64,0.11472248439617982],[124,27,65,0.11200177195909213],[124,27,66,0.10944727957479083],[124,27,67,0.10706182058236777],[124,27,68,0.10484701815802769],[124,27,69,0.10280509419973062],[124,27,70,0.10093849117045613],[124,27,71,0.09924909504838252],[124,27,72,0.09773757489669709],[124,27,73,0.09640284052048297],[124,27,74,0.0952416181287028],[124,27,75,0.0942481436245907],[124,27,76,0.09341397286219075],[124,27,77,0.0927279079330334],[124,27,78,0.0921760382891204],[124,27,79,0.09174189526698392],[124,28,64,0.1032240932555],[124,28,65,0.10031404880000998],[124,28,66,0.09758929821018598],[124,28,67,0.09505035353105058],[124,28,68,0.09269781884904918],[124,28,69,0.09053422529480526],[124,28,70,0.08856190901702087],[124,28,71,0.0867822300248507],[124,28,72,0.08519495242114555],[124,28,73,0.0837977443913529],[124,28,74,0.08258579777958491],[124,28,75,0.08155156678558613],[124,28,76,0.08068462502845945],[124,28,77,0.07997163994778703],[124,28,78,0.07939646325436148],[124,28,79,0.07894033590169616],[124,29,64,0.09195099538057884],[124,29,65,0.08884805933716403],[124,29,66,0.08594779064757085],[124,29,67,0.08324874197110285],[124,29,68,0.08075059906450882],[124,29,69,0.07845607694683752],[124,29,70,0.07636729877002761],[124,29,71,0.07448502138442768],[124,29,72,0.07280806024890649],[124,29,73,0.07133283467338425],[124,29,74,0.07005303314461887],[124,29,75,0.06895939818799297],[124,29,76,0.06803962993051203],[124,29,77,0.06727840725600066],[124,29,78,0.0666575251868241],[124,29,79,0.06615614688789419],[124,30,64,0.08094148086684788],[124,30,65,0.07764235482381752],[124,30,66,0.0745612646149896],[124,30,67,0.07169518076084579],[124,30,68,0.06904298439575769],[124,30,69,0.06660744231766516],[124,30,70,0.06439036038845432],[124,30,71,0.062391826216531165],[124,30,72,0.06060968162914772],[124,30,73,0.05903911498017565],[124,30,74,0.057672372971006296],[124,30,75,0.05649859136653425],[124,30,76,0.05550374370353012],[124,30,77,0.05467070681790726],[124,30,78,0.053979441764697864],[124,30,79,0.05340728847052229],[124,31,64,0.07022481808420881],[124,31,65,0.06672670190618707],[124,31,66,0.06345974272166507],[124,31,67,0.06041972965044452],[124,31,68,0.057604862272074515],[124,31,69,0.05501782434958964],[124,31,70,0.05266000566941622],[124,31,71,0.05053077148658009],[124,31,72,0.04862698423994394],[124,31,73,0.04694264358292106],[124,31,74,0.045468644343116135],[124,31,75,0.04419265173353003],[124,31,76,0.04309909285859051],[124,31,77,0.042169263293130727],[124,31,78,0.04138154726578374],[124,31,79,0.04071174975061592],[124,32,64,0.05982595433890827],[124,32,65,0.05612703383980055],[124,32,66,0.05266997231424987],[124,32,67,0.0494497871112248],[124,32,68,0.04646412404123371],[124,32,69,0.04371545079739081],[124,32,70,0.04120465115978633],[124,32,71,0.03893032975556479],[124,32,72,0.03688838342444083],[124,32,73,0.03507168844226208],[124,32,74,0.033469903161923095],[124,32,75,0.03206938534730938],[124,32,76,0.030853223204021018],[124,32,77,0.029801378853130125],[124,32,78,0.028890942755424524],[124,32,79,0.028096497373953474],[124,33,64,0.0497552840223741],[124,33,65,0.04585480009765354],[124,33,66,0.0422043667961984],[124,33,67,0.038798631430805405],[124,33,68,0.03563481357120098],[124,33,69,0.0327150393365243],[124,33,70,0.030039609888996142],[124,33,71,0.027606348578985765],[124,33,72,0.025410221025747717],[124,33,73,0.023443067783912794],[124,33,74,0.021693449111833615],[124,33,75,0.020146601083417932],[124,33,76,0.0187845020224054],[124,33,77,0.01758604798986859],[124,33,78,0.016527335826264665],[124,33,79,0.015582052039026677],[124,34,64,0.04000560995213512],[124,34,65,0.03590383578282402],[124,34,66,0.032057790201906466],[124,34,67,0.028462124705160484],[124,34,68,0.02511375410854463],[124,34,69,0.022014351673923342],[124,34,70,0.019163577964840365],[124,34,71,0.01655847552357847],[124,34,72,0.014193135313433],[124,34,73,0.012058471821495123],[124,34,74,0.010142106306408358],[124,34,75,0.008428357411766518],[124,34,76,0.0068983381137929164],[124,34,77,0.005530157734331199],[124,34,78,0.004299227531155819],[124,34,79,0.003178668177490958],[124,35,64,0.03055070890011536],[124,35,65,0.026248897148803293],[124,35,66,0.0222060679651493],[124,35,67,0.018417200943819045],[124,35,68,0.014879014839520754],[124,35,69,0.011592640602495293],[124,35,70,0.008557065043733004],[124,35,71,0.005768575765598293],[124,35,72,0.003220470102697496],[124,35,73,9.028683486082059E-4],[124,35,74,-0.0011973692667330733],[124,35,75,-0.003096622636338816],[124,35,76,-0.004814389900050769],[124,35,77,-0.00637306488718227],[124,35,78,-0.0077976153401061715],[124,35,79,-0.009115163570434699],[124,36,64,0.021344043271118537],[124,36,65,0.016844338923328848],[124,36,66,0.012604633616145066],[124,36,67,0.008620482440167186],[124,36,68,0.004888496178821108],[124,36,69,0.0014092044311836346],[124,36,70,-0.0018190808728938447],[124,36,71,-0.004800770565485861],[124,36,72,-0.007543252285980141],[124,36,73,-0.01005704481713015],[124,36,74,-0.012355853254419548],[124,36,75,-0.014456525791582487],[124,36,76,-0.016378913133926053],[124,36,77,-0.018145631766002084],[124,36,78,-0.01978173249714541],[124,36,79,-0.021314275887311995],[124,37,64,0.01231762364967835],[124,37,65,0.0076229380723865075],[124,37,66,0.003187315915169792],[124,37,67,-9.929712677788204E-4],[124,37,68,-0.004921362128194603],[124,37,69,-0.008597947420309546],[124,37,70,-0.012025050879355289],[124,37,71,-0.015207688266241002],[124,37,72,-0.018153791648341466],[124,37,73,-0.020874338455502503],[124,37,74,-0.023383385848940678],[124,37,75,-0.025698011169436992],[124,37,76,-0.027838159448852966],[124,37,77,-0.029826399173106137],[124,37,78,-0.03168758767137901],[124,37,79,-0.03344844767546986],[124,38,64,0.00338360087015787],[124,38,65,-0.0015025484741029993],[124,38,66,-0.006132147896542373],[124,38,67,-0.01050820182685488],[124,38,68,-0.01463417787614743],[124,38,69,-0.01851075793323149],[124,38,70,-0.022140814610269954],[124,38,71,-0.02552983243112706],[124,38,72,-0.028686111517010327],[124,38,73,-0.03162088010394158],[124,38,74,-0.034348316412098394],[124,38,75,-0.036885480605692675],[124,38,76,-0.039252157789923685],[124,38,77,-0.041470613186319845],[124,38,78,-0.0435652608055654],[124,38,79,-0.045562247097776384],[124,39,64,-0.005509255788667219],[124,39,65,-0.01058273978008923],[124,39,66,-0.015403531791031834],[124,39,67,-0.019973921790280902],[124,39,68,-0.024297397719134136],[124,39,69,-0.028375200397660894],[124,39,70,-0.03221065904722002],[124,39,71,-0.03580958484225942],[124,39,72,-0.039180464667880506],[124,39,73,-0.04233456710902503],[124,39,74,-0.0452859611601593],[124,39,75,-0.04805144835487392],[124,39,76,-0.05065040921496197],[124,39,77,-0.05310456510602277],[124,39,78,-0.052749392825132545],[124,39,79,-0.047203635586926515],[124,40,64,-0.01436507934860515],[124,40,65,-0.019621101265579366],[124,40,66,-0.024629552751014153],[124,40,67,-0.029391919264960837],[124,40,68,-0.03391168576943872],[124,40,69,-0.038190663830449195],[124,40,70,-0.04223258676717301],[124,40,71,-0.046043485091024364],[124,40,72,-0.04963188164994381],[124,40,73,-0.05300890167218567],[124,40,74,-0.056188298152765784],[124,40,75,-0.0591863932304378],[124,40,76,-0.05612571318944958],[124,40,77,-0.05067771471483234],[124,40,78,-0.04523028977389631],[124,40,79,-0.03981302932734896],[124,41,64,-0.023187828035254394],[124,41,65,-0.02862105217068099],[124,41,66,-0.03381295945023633],[124,41,67,-0.03876406413871054],[124,41,68,-0.04347781752048389],[124,41,69,-0.04795665383298195],[124,41,70,-0.052204696485998556],[124,41,71,-0.05622812399439587],[124,41,72,-0.060035377963190965],[124,41,73,-0.06363728787239002],[124,41,74,-0.059082533888910015],[124,41,75,-0.05383437872439162],[124,41,76,-0.04853762494119809],[124,41,77,-0.043218270844050374],[124,41,78,-0.03790384066730164],[124,41,79,-0.03262303016073853],[124,42,64,-0.03198096080924106],[124,42,65,-0.03758569058968654],[124,42,66,-0.04295631509696645],[124,42,67,-0.048092160960102305],[124,42,68,-0.0529966159313886],[124,42,69,-0.057672823550437874],[124,42,70,-0.06212531870862829],[124,42,71,-0.06631406192566255],[124,42,72,-0.06145318219812357],[124,42,73,-0.05648486040003337],[124,42,74,-0.05142875603358162],[124,42,75,-0.046306460118003094],[124,42,76,-0.04114140590558688],[124,42,77,-0.035958699982379244],[124,42,78,-0.030784874795086434],[124,42,79,-0.025647563795067607],[124,43,64,-0.04074457970078395],[124,43,65,-0.04651498201521904],[124,43,66,-0.05205925190546144],[124,43,67,-0.05737528713113335],[124,43,68,-0.06246639079005806],[124,43,69,-0.06733653251306283],[124,43,70,-0.06313061365552701],[124,43,71,-0.05849736024671962],[124,43,72,-0.05374729216854662],[124,43,73,-0.04889782590621025],[124,43,74,-0.04396808097714051],[124,43,75,-0.03897890556387576],[124,43,76,-0.03395282185198693],[124,43,77,-0.028913891863621987],[124,43,78,-0.023887504744542955],[124,43,79,-0.018900086614641664],[124,44,64,-0.04947229134584822],[124,44,65,-0.05540267111219878],[124,44,66,-0.06111545462093451],[124,44,67,-0.06660686819731124],[124,44,68,-0.06405956168789013],[124,44,69,-0.0597964690515486],[124,44,70,-0.05539487629410228],[124,44,71,-0.050869491006384604],[124,44,72,-0.046236079510352336],[124,44,73,-0.04151169733066155],[124,44,74,-0.03671483805449795],[124,44,75,-0.03186550089600376],[124,44,76,-0.026985177477427808],[124,44,77,-0.02209675852366018],[124,44,78,-0.017224361338408805],[124,44,79,-0.012393079087069495],[124,45,64,-0.058147781559394957],[124,45,65,-0.06423291052005381],[124,45,66,-0.06420463459776124],[124,45,67,-0.06034026034551982],[124,45,68,-0.05631669682350887],[124,45,69,-0.052148788598314226],[124,45,70,-0.04785128920329092],[124,45,71,-0.04343925393188144],[124,45,72,-0.03892840310520185],[124,45,73,-0.03433540290644714],[124,45,74,-0.029678063775436907],[124,45,75,-0.02497545656673607],[124,45,76,-0.020247946875777408],[124,45,77,-0.015517148127536021],[124,45,78,-0.010134718424684398],[124,45,79,-0.003906760107386987],[124,46,64,-0.06352532028832275],[124,46,65,-0.06007692168148052],[124,46,66,-0.05646249789890648],[124,46,67,-0.052683592709489475],[124,46,68,-0.04875241267822896],[124,46,69,-0.044685234293076845],[124,46,70,-0.04049773177906175],[124,46,71,-0.03620538557864342],[124,46,72,-0.03182390361130618],[124,46,73,-0.027369559034010726],[124,46,74,-0.02230707988297293],[124,46,75,-0.015889465677281264],[124,46,76,-0.009481627448929669],[124,46,77,-0.00310160442659964],[124,46,78,0.0032317262035267413],[124,46,79,0.009498808744849704],[124,47,64,-0.05578446804473287],[124,47,65,-0.052412077590635535],[124,47,66,-0.04888259598960023],[124,47,67,-0.04519542679924091],[124,47,68,-0.041362923727754464],[124,47,69,-0.03740299343283469],[124,47,70,-0.033332378285666056],[124,47,71,-0.02856334740733968],[124,47,72,-0.022145909343361792],[124,47,73,-0.015698151060113123],[124,47,74,-0.009234977427708464],[124,47,75,-0.0027718300675910797],[124,47,76,0.0036751686470994326],[124,47,77,0.010089156605008646],[124,47,78,0.016452557427264973],[124,47,79,0.02274718965965964],[124,48,64,-0.04824004568439572],[124,48,65,-0.04494981150162972],[124,48,66,-0.04151123550277292],[124,48,67,-0.037921481232527865],[124,48,68,-0.0341931375810971],[124,48,69,-0.028641682096883895],[124,48,70,-0.02224712175154189],[124,48,71,-0.015801966872068075],[124,48,72,-0.009321160634430108],[124,48,73,-0.002819204330122866],[124,48,74,0.0036894649085595626],[124,48,75,0.010190183575643398],[124,48,76,0.0166678584275433],[124,48,77,0.023106850052479422],[124,48,78,0.029490942935517274],[124,48,79,0.035803401393398604],[124,49,64,-0.04094737943282431],[124,49,65,-0.037745042862390416],[124,49,66,-0.03440265074297381],[124,49,67,-0.0289593873624798],[124,49,68,-0.02262269101688614],[124,49,69,-0.016208820845707725],[124,49,70,-0.00973663346806175],[124,49,71,-0.0032229344582527276],[124,49,72,0.003316902011148719],[124,49,73,0.009868401563778773],[124,49,74,0.016417546639336353],[124,49,75,0.02295042248751268],[124,49,76,0.029452952254040373],[124,49,77,0.03591072105608245],[124,49,78,0.04230888873297749],[124,49,79,0.048632190760786974],[124,50,64,-0.033953735416967],[124,50,65,-0.029478566476322167],[124,50,66,-0.02325523472059055],[124,50,67,-0.01692405590686042],[124,50,68,-0.010498264693854002],[124,50,69,-0.00400154371590713],[124,50,70,0.0025455644541153635],[124,50,71,0.009125179396696706],[124,50,72,0.015721393491923995],[124,50,73,0.022319672171898217],[124,50,74,0.028906344528828],[124,50,75,0.03546818478107425],[124,50,76,0.04199208486020883],[124,50,77,0.04846481815234994],[124,50,78,0.05487289420645308],[124,50,79,0.061202504014917454],[124,51,64,-0.024110653764228506],[124,51,65,-0.01789045203937001],[124,51,66,-0.011574737510683447],[124,51,67,-0.005153801527494338],[124,51,68,0.0013584637586676884],[124,51,69,0.007935933099379488],[124,51,70,0.014556256204630259],[124,51,71,0.021200363534930544],[124,51,72,0.027851707136520916],[124,51,73,0.0344955927242646],[124,51,74,0.04111860392528966],[124,51,75,0.04770811934086901],[124,51,76,0.05425192283608948],[124,51,77,0.060737907227913036],[124,51,78,0.067153871312128],[124,51,79,0.07348740995248981],[124,52,64,-0.01291188119734077],[124,52,65,-0.0065991486913286185],[124,52,66,-1.948309431371517E-4],[124,52,67,0.006312941464098571],[124,52,68,0.01290952577990114],[124,52,69,0.019566254855002685],[124,52,70,0.026258868008978038],[124,52,71,0.032967001416870076],[124,52,72,0.0396733601972643],[124,52,73,0.04636298343913769],[124,52,74,0.053022603243745206],[124,52,75,0.05964009859385229],[124,52,76,0.06620404460589432],[124,52,77,0.07270335747252926],[124,52,78,0.07912703516342484],[124,52,79,0.0850736184914446],[124,53,64,-0.002037147863393188],[124,53,65,0.00436347526966213],[124,53,66,0.010852780433421083],[124,53,67,0.01744470931488287],[124,53,68,0.024123779858928125],[124,53,69,0.030858715704761914],[124,53,70,0.037623265430232714],[124,53,71,0.04439567866959695],[124,53,72,0.05115781158943774],[124,53,73,0.05789432701921132],[124,53,74,0.0645919904735159],[124,53,75,0.0712390630309006],[124,53,76,0.07782479176859881],[124,53,77,0.08433899819540647],[124,53,78,0.0903158733410859],[124,53,79,0.09595763446476586],[124,54,64,0.00848853014583355],[124,54,65,0.014972428325560224],[124,54,66,0.021543205265813735],[124,54,67,0.028216750442395272],[124,54,68,0.034976660700884496],[124,54,69,0.04178901698099212],[124,54,70,0.04862552166420299],[124,54,71,0.05546296173869083],[124,54,72,0.06228225076707664],[124,54,73,0.06906756722383672],[124,54,74,0.07580559059605523],[124,54,75,0.08248483636079464],[124,54,76,0.08892288717903649],[124,54,77,0.09492190935317835],[124,54,78,0.10083812842791227],[124,54,79,0.10667205026900986],[124,55,64,0.017669306585766258],[124,55,65,0.025143052814336216],[124,55,66,0.03185807103342578],[124,55,67,0.038610736447404426],[124,55,68,0.045449897966994814],[124,55,69,0.05233899523109861],[124,55,70,0.05924765574973959],[124,55,71,0.0661511465600006],[124,55,72,0.07302935664738888],[124,55,73,0.07986587742528477],[124,55,74,0.08636140602256046],[124,55,75,0.09268451224880352],[124,55,76,0.09893042088201114],[124,55,77,0.10509872101967421],[124,55,78,0.11118859741735526],[124,55,79,0.11719915989967236],[124,56,64,0.02614536822056214],[124,56,65,0.03371478605205695],[124,56,66,0.041144880837106754],[124,56,67,0.048406130648343856],[124,56,68,0.05550669472520628],[124,56,69,0.062475417444177235],[124,56,70,0.06933442374707646],[124,56,71,0.07609970434264238],[124,56,72,0.08278221453274065],[124,56,73,0.0893888728647168],[124,56,74,0.09592345792358113],[124,56,75,0.10238740187153292],[124,56,76,0.10878047963226496],[124,56,77,0.11510139290121725],[124,56,78,0.12134824843655251],[124,56,79,0.12751893034907527],[124,57,64,0.03459580351235033],[124,57,65,0.042253601745872824],[124,57,66,0.04977242806839671],[124,57,67,0.05712124333899052],[124,57,68,0.06430915128494763],[124,57,69,0.07136733652880553],[124,57,70,0.07831974295269034],[124,57,71,0.08518366997734736],[124,57,72,0.09197092354386069],[124,57,73,0.09868886529907957],[124,57,74,0.10534135816384203],[124,57,75,0.11192960676385291],[124,57,76,0.11845289150018812],[124,57,77,0.12490919532750894],[124,57,78,0.13129572258923689],[124,57,79,0.1376093095300935],[124,58,64,0.04299793055019202],[124,58,65,0.05073666915619861],[124,58,66,0.058335655004492684],[124,58,67,0.06576255703443612],[124,58,68,0.07302746005622429],[124,58,69,0.08016379257214497],[124,58,70,0.08719727024461552],[124,58,71,0.09414650160453322],[124,58,72,0.10102418536323424],[124,58,73,0.10783820440514409],[124,58,74,0.11459261451532793],[124,58,75,0.12128852620327826],[124,58,76,0.12792487828794583],[124,58,77,0.13449910220684622],[124,58,78,0.14100767630010927],[124,58,79,0.1474465695984428],[124,59,64,0.05132465646047119],[124,59,65,0.059136790542250704],[124,59,66,0.06680735827365242],[124,59,67,0.07430297015609115],[124,59,68,0.08163471130306736],[124,59,69,0.08883812749860051],[124,59,70,0.09594063257289646],[124,59,71,0.10296212190724072],[124,59,72,0.10991620993459048],[124,59,73,0.11681136291762109],[124,59,74,0.12365192494404147],[124,59,75,0.13043903539183072],[124,59,76,0.1371714364265682],[124,59,77,0.14384616939683856],[124,59,78,0.15045915928782227],[124,59,79,0.15700568667743878],[124,60,64,0.059544980485946454],[124,60,65,0.06742290495224945],[124,60,66,0.07515654340581032],[124,60,67,0.08271168289305514],[124,60,68,0.0901004100104795],[124,60,69,0.09736023449272718],[124,60,70,0.1045201703639796],[124,60,71,0.11160135565744105],[124,60,72,0.11861832380907283],[124,60,73,0.12558016906284927],[124,60,74,0.13249160372393284],[124,60,75,0.13935390541399606],[124,60,76,0.1461657527975386],[124,60,77,0.1529239485570578],[124,60,78,0.15962402869433545],[124,60,79,0.16626075752466415],[124,61,64,0.06762452047410546],[124,61,65,0.07556061607777],[124,61,66,0.08334895017321811],[124,61,67,0.09095471644640737],[124,61,68,0.09839098632053708],[124,61,69,0.10569705796564391],[124,61,70,0.11290342626213488],[124,61,71,0.12003240724463796],[124,61,72,0.12709943711311397],[124,61,73,0.13411426414100577],[124,61,74,0.14108203122455013],[124,61,75,0.14800424713943586],[124,61,76,0.15487964488994835],[124,61,77,0.1617049258491268],[124,61,78,0.16847538869230216],[124,61,79,0.1751854424203816],[124,62,64,0.07552608488748733],[124,62,65,0.08351276645470125],[124,62,66,0.09134762457151684],[124,62,67,0.09899547897316482],[124,62,68,0.10647035266162075],[124,62,69,0.11381314018679942],[124,62,70,0.12105568052292422],[124,62,71,0.1282213848875874],[124,62,72,0.1353265572992614],[124,62,73,0.14238160707903363],[124,62,74,0.14939215095935968],[124,62,75,0.15636000278817566],[124,62,76,0.1632840491391902],[124,62,77,0.17016100945613152],[124,62,78,0.17698607966615926],[124,62,79,0.18375345849521998],[124,63,64,0.08321029539693997],[124,63,65,0.09124006313413127],[124,63,66,0.09911354261721136],[124,63,67,0.10679538345531837],[124,63,68,0.11430051284530848],[124,63,69,0.12167121990409865],[124,63,70,0.12894053842924666],[124,63,71,0.13613287694604553],[124,63,72,0.1432653551420203],[124,63,73,0.15034903146026127],[124,63,74,0.15739001944344025],[124,63,75,0.16439049074863366],[124,63,76,0.1713495630782994],[124,63,77,0.17826407159248234],[124,63,78,0.18512922267753484],[124,63,79,0.19193912924694215],[124,64,64,0.09063623213268414],[124,64,65,0.09870172674441412],[124,64,66,0.1066062577227019],[124,64,67,0.11431448909485079],[124,64,68,0.12184219457425972],[124,64,69,0.12923285424044442],[124,64,70,0.13652054086474383],[124,64,71,0.14373055131587906],[124,64,72,0.15088075381232516],[124,64,73,0.15798282571635455],[124,64,74,0.16504337940004346],[124,64,75,0.17206497404380358],[124,64,76,0.17904701155524677],[124,64,77,0.18598651511793204],[124,64,78,0.19287878919176774],[124,64,79,0.19971796008912343],[124,65,64,0.09776211433806221],[124,65,65,0.10585617679632972],[124,65,66,0.11378458459917236],[124,65,67,0.12151217928070228],[124,65,68,0.1290555185024431],[124,65,69,0.13645907710253707],[124,65,70,0.143757811373449],[124,65,71,0.1509777913275878],[124,65,72,0.15813755453969291],[124,65,73,0.1652493500772916],[124,65,74,0.17232026999588992],[124,65,75,0.17935326620716613],[124,65,76,0.18634805085703748],[124,65,77,0.1933018786735473],[124,65,78,0.20021021005808584],[124,65,79,0.2070672539970298],[124,66,64,0.10454601749077211],[124,66,65,0.11266175432727427],[124,66,66,0.12060732080772085],[124,66,67,0.1280481123765222],[124,66,68,0.13556677769704956],[124,66,69,0.14315500607538756],[124,66,70,0.15061474092340424],[124,66,71,0.1578383693898649],[124,66,72,0.16500110012648572],[124,66,73,0.17211569156524628],[124,66,74,0.17918967541105926],[124,66,75,0.1862263758926165],[124,66,76,0.19322581208180417],[124,66,77,0.20018548169629707],[124,66,78,0.20710102511428535],[124,66,79,0.2139667686346023],[124,67,64,0.11094662700548137],[124,67,65,0.11907748202188262],[124,67,66,0.1268562356111792],[124,67,67,0.13427360887760842],[124,67,68,0.14182145124862253],[124,67,69,0.14944179885741093],[124,67,70,0.157054710606643],[124,67,71,0.16427715863001469],[124,67,72,0.17143797658444873],[124,67,73,0.17855035731948057],[124,67,74,0.1856222120458747],[124,67,75,0.19265719053435862],[124,67,76,0.19965558408662867],[124,67,77,0.20661510965004334],[124,67,78,0.21353157376213805],[124,67,79,0.22039941531576177],[124,68,64,0.11692402852585118],[124,68,65,0.12506386183816695],[124,68,66,0.13283957631928342],[124,68,67,0.14027434419197682],[124,68,68,0.147842605231251],[124,68,69,0.155485731953358],[124,68,70,0.16304285239816507],[124,68,71,0.17026088267362702],[124,68,72,0.17741675305454194],[124,68,73,0.184524006430316],[124,68,74,0.19159085455803593],[124,68,75,0.19862119926315586],[124,68,76,0.20561553622847628],[124,68,77,0.2125717396991849],[124,68,78,0.21948572674659392],[124,68,79,0.2263520000380149],[124,69,64,0.12244054071765226],[124,69,65,0.1305837160921221],[124,69,66,0.13854592116428727],[124,69,67,0.1460723536299622],[124,69,68,0.15365141174707628],[124,69,69,0.16125227017948707],[124,69,70,0.16854685389896923],[124,69,71,0.17575890934915595],[124,69,72,0.18290876558480224],[124,69,73,0.1900102255712017],[124,69,74,0.197071705658711],[124,69,75,0.20409725957598993],[124,69,76,0.21108748489811555],[124,69,77,0.2180403102700979],[124,69,78,0.22495166198132008],[124,69,79,0.23181600879144057],[124,70,64,0.127477196941727],[124,70,65,0.135618726024472],[124,70,66,0.1435770173562012],[124,70,67,0.15131961191965493],[124,70,68,0.15886645762422855],[124,70,69,0.16626507096463794],[124,70,70,0.17355309360847382],[124,70,71,0.18075894344703075],[124,70,72,0.1879031828188023],[124,70,73,0.194999776430184],[124,70,74,0.2020572362147372],[124,70,75,0.20907965070498868],[124,70,76,0.21606759682057508],[124,70,77,0.22301893230102182],[124,70,78,0.22992946732669364],[124,70,79,0.23679351417680233],[124,71,64,0.1320644574460791],[124,71,65,0.14020015426905172],[124,71,66,0.14815105958649827],[124,71,67,0.1558856182828299],[124,71,68,0.16342442586926262],[124,71,69,0.17081532038255395],[124,71,70,0.17809618249764908],[124,71,71,0.18529559723958464],[124,71,72,0.1924342270297224],[124,71,73,0.19952607466291525],[124,71,74,0.20657963340583524],[124,71,75,0.21359892173891773],[124,71,76,0.22058440059390644],[124,71,77,0.22753377126329713],[124,71,78,0.2344426524732103],[124,71,79,0.2413051354166692],[124,72,64,0.13623740144285212],[124,72,65,0.144363765329282],[124,72,66,0.15230446099299783],[124,72,67,0.16002902827365256],[124,72,68,0.16755860204456918],[124,72,69,0.17494104979926933],[124,72,70,0.18221423727507843],[124,72,71,0.18940670219520905],[124,72,72,0.19653902877876062],[124,72,73,0.20362511261559402],[124,72,74,0.21067331305302692],[124,72,75,0.2176874905724371],[124,72,76,0.22466792696243618],[124,72,77,0.23161212641876452],[124,72,78,0.2385154960156232],[124,72,79,0.24537190429809583],[124,73,64,0.14002680636088308],[124,73,65,0.14814085805302052],[124,73,66,0.15606899204757435],[124,73,67,0.1637820604108256],[124,73,68,0.17130157580518643],[124,73,69,0.17867504519536717],[124,73,70,0.18593999106743567],[124,73,71,0.19312463775273447],[124,73,72,0.2002492817315614],[124,73,73,0.2073275529836883],[124,73,74,0.2143675645025845],[124,73,75,0.22137294741934938],[124,73,76,0.22834376950903715],[124,73,77,0.2352773351737961],[124,73,78,0.24216886531019738],[124,73,79,0.2490120557716247],[124,74,64,0.14346082806143134],[124,74,65,0.15155994743179618],[124,74,66,0.15947345845161115],[124,74,67,0.1671737567759997],[124,74,68,0.17468253248306173],[124,74,69,0.1820464741521178],[124,74,70,0.18930238252618165],[124,74,71,0.19647786923913102],[124,74,72,0.203592715480991],[124,74,73,0.2106601226717731],[124,74,74,0.21768785224809206],[124,74,75,0.22467925199281927],[124,74,76,0.23163416666168946],[124,74,77,0.23854973097960286],[124,74,78,0.24542104338957915],[124,74,79,0.2522417192381979],[124,75,64,0.14656668815203022],[124,75,65,0.15464845408087663],[124,75,66,0.16254538727628837],[124,75,67,0.1702316606427764],[124,75,68,0.17772891522522574],[124,75,69,0.18508252259734495],[124,75,70,0.19232815518716795],[124,75,71,0.1994924965482264],[124,75,72,0.20659457966081302],[124,75,73,0.2136470184999752],[124,75,74,0.2206571299825082],[124,75,75,0.22762794372690184],[124,75,76,0.23455909737958994],[124,75,77,0.24144761557547303],[124,75,78,0.24828857090684558],[124,75,79,0.2550756255718167],[124,76,64,0.14937236650747115],[124,76,65,0.15743439951462487],[124,76,66,0.16531271947593829],[124,76,67,0.17298350102859056],[124,76,68,0.18046809458576737],[124,76,69,0.18781003953968406],[124,76,70,0.19504346537376055],[124,76,71,0.20219381195032357],[124,76,72,0.20927913781729898],[124,76,73,0.2163113233389411],[124,76,74,0.2232971657939614],[124,76,75,0.23023936390048644],[124,76,76,0.23713738954104396],[124,76,77,0.24398824476984346],[124,76,78,0.2507871024853166],[124,76,79,0.25752782944250613],[124,77,64,0.1519082969494906],[124,77,65,0.15994810516860075],[124,77,66,0.16780550673459738],[124,77,67,0.1754588821469878],[124,77,68,0.18292904357761522],[124,77,69,0.19025718784043036],[124,77,70,0.19747549675318396],[124,77,71,0.20460786522185498],[124,77,72,0.21167116932705113],[124,77,73,0.2186764310803852],[124,77,74,0.22562987705000653],[124,77,75,0.23253388836359226],[124,77,76,0.239387839903897],[124,77,77,0.2461888268140588],[124,77,78,0.25293227672367036],[124,77,79,0.25961244639142506],[124,78,64,0.15420906388721775],[124,78,65,0.1622238929646198],[124,78,66,0.17005761044536585],[124,78,67,0.17769097557248276],[124,78,68,0.18514401602065636],[124,78,69,0.19245509889958476],[124,78,70,0.199654079481398],[124,78,71,0.20676303410959526],[124,78,72,0.2137974774761754],[124,78,73,0.2207674786804725],[124,78,74,0.2276786733504968],[124,78,75,0.23453316940846564],[124,78,76,0.2413303443606856],[124,78,77,0.24806753228569323],[124,78,78,0.2547405989800209],[124,78,79,0.2613444039974811],[124,79,64,0.1562950322092792],[124,79,65,0.16428179550007935],[124,79,66,0.17208870654159772],[124,79,67,0.17969905522369398],[124,79,68,0.18713185462048842],[124,79,69,0.19442219272346756],[124,79,70,0.20159724873352575],[124,79,71,0.20867702821887862],[124,79,72,0.21567552000801954],[124,79,73,0.22260175418231884],[124,79,74,0.22946075855455045],[124,79,75,0.23625441131119804],[124,79,76,0.2429821877854076],[124,79,77,0.24964179961163913],[124,79,78,0.25622972478895883],[124,79,79,0.2627416274468604],[124,80,64,0.15811737980250384],[124,80,65,0.16607279335757022],[124,80,66,0.17385031151895616],[124,80,67,0.18143595260405165],[124,80,68,0.18884753922520087],[124,80,69,0.19611647732286136],[124,80,70,0.20326692388995646],[124,80,71,0.21031652662936248],[124,80,72,0.21727751646273963],[124,80,73,0.2241577035035016],[124,80,74,0.23096137399783673],[124,80,75,0.23769008601959418],[124,80,76,0.24434336198403062],[124,80,77,0.25091927631964844],[124,80,78,0.25741493690325684],[124,80,79,0.2638268591203268],[124,81,64,0.15962492243296322],[124,81,65,0.16754538568282895],[124,81,66,0.17529131880562668],[124,81,67,0.18285170630893502],[124,81,68,0.19024306349029244],[124,81,69,0.19749276902297236],[124,81,70,0.20462162454233915],[124,81,71,0.21164460584046096],[124,81,72,0.21857189270346458],[124,81,73,0.2254098044606733],[124,81,74,0.23216163886685764],[124,81,75,0.23882841221158035],[124,81,76,0.24540949881938032],[124,81,77,0.25190316836925575],[124,81,78,0.25830701971824377],[124,81,79,0.2646183101612591],[124,82,64,0.16078278174669336],[124,82,65,0.168664220822923],[124,82,66,0.17637638089457439],[124,82,67,0.1839114654759014],[124,82,68,0.1912846195290001],[124,82,69,0.19851891705370003],[124,82,70,0.20563150201470626],[124,82,71,0.2126343616314364],[124,82,72,0.2195352998631237],[124,82,73,0.22633881859661467],[124,82,74,0.23304690426511135],[124,82,75,0.23965971789053495],[124,82,76,0.24617618680361486],[124,82,77,0.25259449655208466],[124,82,78,0.2589124817552676],[124,82,79,0.26512791490226345],[124,83,64,0.161569803245767],[124,83,65,0.16940756123800524],[124,83,66,0.17708345092568145],[124,83,67,0.18459314154054496],[124,83,68,0.19195039346702888],[124,83,69,0.1991737740675588],[124,83,70,0.20627651286351226],[124,83,71,0.21326730987541398],[124,83,72,0.2201512626785328],[124,83,73,0.22693070277797203],[124,83,74,0.23360593911951785],[124,83,75,0.24017590681026396],[124,83,76,0.24663871937769918],[124,83,77,0.25299212314542135],[124,83,78,0.25923385254476183],[124,83,79,0.26536188541380556],[124,84,64,0.16197617051212979],[124,84,65,0.16976494140364157],[124,84,66,0.17740151274241606],[124,84,67,0.18488524254571262],[124,84,68,0.1922285362041866],[124,84,69,0.19944533316381513],[124,84,70,0.2065447489367166],[124,84,71,0.21353193285687766],[124,84,72,0.2204089613272008],[124,84,73,0.2271756415328793],[124,84,74,0.2338302234998276],[124,84,75,0.24037001862991622],[124,84,76,0.24679192309464315],[124,84,77,0.25309284471358606],[124,84,78,0.25927003218042144],[124,84,79,0.2653213057268598],[124,85,64,0.16200122209332588],[124,85,65,0.16973502504390187],[124,85,66,0.17732850562317362],[124,85,67,0.18478489598810502],[124,85,68,0.1921153150692597],[124,85,69,0.1993290367245537],[124,85,70,0.2064309288355425],[124,85,71,0.21342237539676762],[124,85,72,0.22030215046033105],[124,85,73,0.22706720314846401],[124,85,74,0.23371335164470997],[124,85,75,0.24023588432481358],[124,85,76,0.246592287077694],[124,85,77,0.2527204115930201],[124,85,78,0.25877478874433985],[124,85,79,0.2647424391609229],[124,86,64,0.16165147772455954],[124,86,65,0.16932366836269255],[124,86,66,0.17686945027627482],[124,86,67,0.1842960666304126],[124,86,68,0.19161345254914017],[124,86,69,0.19882626291156508],[124,86,70,0.20593505621427513],[124,86,71,0.21293729573113265],[124,86,72,0.2198282198199959],[124,86,73,0.22614453815913435],[124,86,74,0.23223062538599196],[124,86,75,0.2382840672221037],[124,86,76,0.24429619489283275],[124,86,77,0.2502574355809787],[124,86,78,0.2561570652027604],[124,86,79,0.2619830571787827],[124,87,64,0.16093888004554618],[124,87,65,0.16854219543144353],[124,87,66,0.17603478218991564],[124,87,67,0.18342797522678927],[124,87,68,0.19073065781596624],[124,87,69,0.19794299524433248],[124,87,70,0.2050612499585859],[124,87,71,0.21207887573273515],[124,87,72,0.21812194801739657],[124,87,73,0.2240172704186702],[124,87,74,0.22989138811915544],[124,87,75,0.23573897086355405],[124,87,76,0.24155378173854378],[124,87,77,0.24732832611036734],[124,87,78,0.2530535964477116],[124,87,79,0.25871891394614743],[124,88,64,0.15987925748908646],[124,88,65,0.16740589141573997],[124,88,66,0.17483889796353308],[124,88,67,0.1821937236606173],[124,88,68,0.18947835634860558],[124,88,69,0.19668868027851658],[124,88,70,0.2038167509133373],[124,88,71,0.21016631153629314],[124,88,72,0.21585030623218882],[124,88,73,0.2215165683495796],[124,88,74,0.22716359585710236],[124,88,75,0.23278913755142094],[124,88,76,0.23838972441345813],[124,88,77,0.2439602972486098],[124,88,78,0.24949393181111976],[124,88,79,0.254981662378237],[124,89,64,0.15849101357046333],[124,89,65,0.1659327188810905],[124,89,66,0.17329891981450002],[124,89,67,0.18060913157577882],[124,89,68,0.1878706225469239],[124,89,69,0.1950752780311577],[124,89,70,0.20221110948681875],[124,89,71,0.2077849107194648],[124,89,72,0.21323236154450395],[124,89,73,0.21865914838829809],[124,89,74,0.22406732609518792],[124,89,75,0.22945796273155789],[124,89,76,0.23483063531204446],[124,89,77,0.2401830241439536],[124,89,78,0.24551060707226668],[124,89,79,0.25080645466468865],[124,90,64,0.15679404738966843],[124,90,65,0.16414226200577484],[124,90,66,0.17143368305078482],[124,90,67,0.17869178919297693],[124,90,68,0.18592331986596175],[124,90,69,0.19311650945035652],[124,90,70,0.19983970832144873],[124,90,71,0.20507643845613893],[124,90,72,0.21028192020817396],[124,90,73,0.21546240314636106],[124,90,74,0.22062361710034298],[124,90,75,0.22577012033063734],[124,90,76,0.2309047477677651],[124,90,77,0.23602816097377394],[124,90,78,0.24113850121714747],[124,90,79,0.2462311467983684],[124,91,64,0.15480890977018286],[124,91,65,0.1620549031446984],[124,91,66,0.16926295092431376],[124,91,67,0.17646033063922453],[124,91,68,0.18365345265062522],[124,91,69,0.19082730490184743],[124,91,70,0.19704960328575216],[124,91,71,0.20205181336351652],[124,91,72,0.20701341730719794],[124,91,73,0.21194445297110964],[124,91,74,0.21685436894069612],[124,91,75,0.22175131091801062],[124,91,76,0.22664151186392353],[124,91,77,0.2315287876967591],[124,91,78,0.2364141400720075],[124,91,79,0.24129546750102765],[124,92,64,0.15255619909757476],[124,92,65,0.15969123583144237],[124,92,66,0.166806860930387],[124,92,67,0.17393393178064284],[124,92,68,0.18107873352910622],[124,92,69,0.1882234573420379],[124,92,70,0.19395249964923106],[124,92,71,0.19872267794617698],[124,92,72,0.20344195109581606],[124,92,73,0.20812405187373637],[124,92,74,0.2127821167003979],[124,92,75,0.21742790050286034],[124,92,76,0.22207109966714322],[124,92,77,0.22671878505223758],[124,92,78,0.23137494674706344],[124,92,79,0.23604015197001513],[124,93,64,0.1500562005861775],[124,93,65,0.15707171797387393],[124,93,66,0.16408560629321955],[124,93,67,0.17113203623380685],[124,93,68,0.17821736992260534],[124,93,69,0.18532148356446945],[124,93,70,0.1905577431998124],[124,93,71,0.19510137330804664],[124,93,72,0.19958315222774686],[124,93,73,0.20402034560652002],[124,93,74,0.20842967405409857],[124,93,75,0.21282644856198876],[124,93,76,0.2172238189207179],[124,93,77,0.22163213729894668],[124,93,78,0.22605843884271265],[124,93,79,0.230506040854897],[124,94,64,0.1473287723910577],[124,94,65,0.1542165686902249],[124,94,66,0.16111935607500996],[124,94,67,0.16807431293756708],[124,94,68,0.1750880729486604],[124,94,69,0.18213869664293042],[124,94,70,0.18687543999776565],[124,94,71,0.19120073004232657],[124,94,72,0.19545288549373344],[124,94,73,0.19965247983852874],[124,94,74,0.2038196455137337],[124,94,75,0.2079731240014254],[124,94,76,0.21212943431191061],[124,94,77,0.21630216223127965],[124,94,78,0.22050137238561965],[124,94,79,0.22473314485824925],[124,95,64,0.14439348169481733],[124,95,65,0.15114591194700142],[124,95,66,0.157928417065471],[124,95,67,0.16478084839523793],[124,95,68,0.17171029173522556],[124,95,69,0.17869141672603056],[124,95,70,0.18291612863072312],[124,95,71,0.187033672833205],[124,95,72,0.19106678186932208],[124,95,73,0.1950390565362951],[124,95,74,0.19897380579033339],[124,95,75,0.20289300785679257],[124,95,76,0.20681639550011277],[124,95,77,0.21076066805484533],[124,95,78,0.21473883247722042],[124,95,79,0.21875967534226465],[124,96,64,0.14126999363255377],[124,96,65,0.14788016989542796],[124,96,66,0.15453364034844663],[124,96,67,0.16127257644424572],[124,96,68,0.1681046759205826],[124,96,69,0.1746472837017986],[124,96,70,0.17869024864941224],[124,96,71,0.18261263649526524],[124,96,72,0.1864395988451151],[124,96,73,0.1901974368025519],[124,96,74,0.19391234483489134],[124,96,75,0.19760928163233368],[124,96,76,0.20131097116074456],[124,96,77,0.20503703674398693],[124,96,78,0.20880327065115534],[124,96,79,0.21262104131073256],[124,97,64,0.1379787156721402],[124,97,65,0.1444407085580102],[124,97,66,0.15095707520077686],[124,97,67,0.1575719481754659],[124,97,68,0.16429376888895994],[124,97,69,0.17033305807613414],[124,97,70,0.17420740289802727],[124,97,71,0.17794879135484126],[124,97,72,0.18158440716995086],[124,97,73,0.18514288856234318],[124,97,74,0.1886529772350651],[124,97,75,0.19214230026667706],[124,97,76,0.1956362883627357],[124,97,77,0.19915723354146367],[124,97,78,0.20272348894854325],[124,97,79,0.20634881312388956],[124,98,64,0.134541699841437],[124,98,65,0.14085073829182598],[124,98,66,0.14722287275660692],[124,98,67,0.15370384440831206],[124,98,68,0.16030293408422655],[124,98,69,0.16575578917568512],[124,98,70,0.16947541163677657],[124,98,71,0.1730510760447772],[124,98,72,0.17651160228617124],[124,98,73,0.1798875776142104],[124,98,74,0.1832099147511116],[124,98,75,0.1865085487972196],[124,98,76,0.1898112766577707],[124,98,77,0.19314274229713255],[124,98,78,0.1965235707331285],[124,98,79,0.19996965329383276],[124,99,64,0.13098380498587273],[124,99,65,0.1371364712470152],[124,99,66,0.14335844166452444],[124,99,67,0.1496967329267438],[124,99,68,0.15616151655074972],[124,99,69,0.16092003521855341],[124,99,70,0.16449915652288521],[124,99,71,0.16792503593776734],[124,99,72,0.17122773887277526],[124,99,73,0.17443940068199207],[124,99,74,0.17759270087208548],[124,99,75,0.18071948187138817],[124,99,76,0.18384951631392235],[124,99,77,0.18700942637470658],[124,99,78,0.19022175827847843],[124,99,79,0.19350421469676637],[124,100,64,0.1273341210506055],[124,100,65,0.13332853784928658],[124,100,66,0.13939585777697452],[124,100,67,0.1455840724976055],[124,100,68,0.15190424167345892],[124,100,69,0.15582648771877194],[124,100,70,0.15927921267368733],[124,100,71,0.16257146558711888],[124,100,72,0.16573418704032528],[124,100,73,0.16880065921356271],[124,100,74,0.17180490636545911],[124,100,75,0.1747802453254581],[124,100,76,0.17775799017834384],[124,100,77,0.1807663148870068],[124,100,78,0.18382927717010827],[124,100,79,0.18696600652882167],[124,101,64,0.1236249393653734],[124,101,65,0.12946079499356425],[124,101,66,0.13537051251965168],[124,101,67,0.14140280161463045],[124,101,68,0.14694135070153988],[124,101,69,0.1504738043321772],[124,101,70,0.1538138147446901],[124,101,71,0.15698848824378106],[124,101,72,0.16002930096036705],[124,101,73,0.1629702890215489],[124,101,74,0.16584638888258652],[124,101,75,0.1686919326449395],[124,101,76,0.17153930273737342],[124,101,77,0.17441774989123673],[124,101,78,0.17735237789844147],[124,101,79,0.18036329820522498],[124,102,64,0.11986068923418011],[124,102,65,0.12553755593005622],[124,102,66,0.13128667526213797],[124,102,67,0.13715724739109236],[124,102,68,0.14146136475939672],[124,102,69,0.14489777921114985],[124,102,70,0.14813927272413083],[124,102,71,0.1512129334640267],[124,102,72,0.1541504189865205],[124,102,73,0.1569860999492002],[124,102,74,0.15975535791693016],[124,102,75,0.16249304225390293],[124,102,76,0.1652320906387807],[124,102,77,0.16800231728361537],[124,102,78,0.1708293724849241],[124,102,79,0.1737338766901953],[124,103,64,0.11602491652421562],[124,103,65,0.1215412988063343],[124,103,66,0.1271259280130007],[124,103,67,0.13223987511046723],[124,103,68,0.13580785624205027],[124,103,69,0.1391608194506518],[124,103,70,0.1423188245473011],[124,103,71,0.14530864129915927],[124,103,72,0.1481617179934348],[124,103,73,0.15091230117809426],[124,103,74,0.15359571214815684],[124,103,75,0.15624678528564886],[124,103,76,0.15889847289909512],[124,103,77,0.16158062074731647],[124,103,78,0.16431891797468184],[124,103,79,0.16713402473466998],[124,104,64,0.1121028979212972],[124,104,65,0.1174565395914548],[124,104,66,0.1228290751435542],[124,104,67,0.1265460485070205],[124,104,68,0.13004084110820807],[124,104,69,0.13332341994683658],[124,104,70,0.13641319704465904],[124,104,71,0.1393363094180393],[124,104,72,0.14212358796490462],[124,104,73,0.14480867850682133],[124,104,74,0.14742632060613373],[124,104,75,0.15001078931722345],[124,104,76,0.15259450456858145],[124,104,77,0.1552068124111589],[124,104,78,0.15787294191080298],[124,104,79,0.16061314101235052],[124,105,64,0.10808415846736222],[124,105,65,0.11327231662045216],[124,105,66,0.11713493797682711],[124,105,67,0.12078409576256105],[124,105,68,0.12421667387293855],[124,105,69,0.12744194288475374],[124,105,70,0.1304784767180113],[124,105,71,0.13335146655998498],[124,105,72,0.136090718719187],[124,105,73,0.13872880382820374],[124,105,74,0.14129936299031937],[124,105,75,0.14383557600950292],[124,105,76,0.1463687963865824],[124,105,77,0.1489273573088674],[124,105,78,0.15153555240858654],[124,105,79,0.15421279462105852],[124,106,64,0.10373763799873535],[124,106,65,0.10763903084737242],[124,106,66,0.11141418242922209],[124,106,67,0.11500466692955873],[124,106,68,0.11838597696558392],[124,106,69,0.12156666159174732],[124,106,70,0.12456427982452585],[124,106,71,0.12740277915227383],[124,106,72,0.13011055159728294],[124,106,73,0.1327186384036304],[124,106,74,0.13525908884067217],[124,106,75,0.13776347816819962],[124,106,76,0.14026158936413727],[124,106,77,0.14278026277180828],[124,106,78,0.1453424173836542],[124,106,79,0.14796624704560105],[124,107,64,0.09815797152603982],[124,107,65,0.10199264033604655],[124,107,66,0.10570945174402864],[124,107,67,0.10925052532453332],[124,107,68,0.11259127613819295],[124,107,69,0.11573952369739762],[124,107,70,0.11871165791667915],[124,107,71,0.12153011236673969],[124,107,72,0.12422150725295864],[124,107,73,0.1268149363434578],[124,107,74,0.12934040315079293],[124,107,75,0.13182741124491534],[124,107,76,0.13430371314750303],[124,107,77,0.1367942218315932],[124,107,78,0.1393200884280414],[124,107,79,0.14189794932525376],[124,108,64,0.09261045517108069],[124,108,65,0.09638597448679546],[124,108,66,0.10005280210399496],[124,108,67,0.10355376476013135],[124,108,68,0.10686434023185122],[124,108,69,0.10999163190336017],[124,108,70,0.11295073716106839],[124,108,71,0.11576234398419906],[124,108,72,0.11845098798724592],[124,108,73,0.12104344683970106],[124,108,74,0.12356727710297259],[124,108,75,0.12604949812102273],[124,108,76,0.12851542719697723],[124,108,77,0.130987669885155],[124,108,78,0.1334852688289286],[124,108,79,0.13602301418297422],[124,109,64,0.08711209493672288],[124,109,65,0.09083682050927142],[124,109,66,0.09446244644589048],[124,109,67,0.09793266446657807],[124,109,68,0.10122316860491062],[124,109,69,0.10434038528739434],[124,109,70,0.10729803401673983],[124,109,71,0.1101148733434356],[124,109,72,0.1128130966430342],[124,109,73,0.11541685695072182],[124,109,74,0.1179509255558664],[124,109,75,0.12043948868397246],[124,109,76,0.12290508621756861],[124,109,77,0.12536769603324638],[124,109,78,0.1278439671615065],[124,109,79,0.13034660461246922],[124,110,64,0.08165079642463946],[124,110,65,0.08533385042147085],[124,110,66,0.0889275027623802],[124,110,67,0.09237646895901037],[124,110,68,0.09565682929984586],[124,110,69,0.09877440289467221],[124,110,70,0.10174149081190674],[124,110,71,0.10457479406324248],[124,110,72,0.10729396951633177],[124,110,73,0.10992030503490931],[124,110,74,0.11247551814680305],[124,110,75,0.11498068219742834],[124,110,76,0.1174552836031771],[124,110,77,0.11991641347765505],[124,110,78,0.12237809656596896],[124,110,79,0.12485076009121168],[124,111,64,0.07616818259606048],[124,111,65,0.07981905775620342],[124,111,66,0.083390248058935],[124,111,67,0.08682767594003427],[124,111,68,0.0901080056493068],[124,111,69,0.09323655246372979],[124,111,70,0.09622420019445664],[124,111,71,0.09908551072649815],[124,111,72,0.10183745857011818],[124,111,73,0.10449827359946226],[124,111,74,0.10708639581973378],[124,111,75,0.10961954569722179],[124,111,76,0.1121139132794963],[124,111,77,0.11458346902798576],[124,111,78,0.117039398983719],[124,111,79,0.11948966659199885],[124,112,64,0.07059984119659302],[124,112,65,0.07422704093579932],[124,112,66,0.07778484843916776],[124,112,67,0.08122065779190195],[124,112,68,0.08451196401533373],[124,112,69,0.08766370837723741],[124,112,70,0.09068536812581347],[124,112,71,0.09358927728978834],[124,112,72,0.0963895586833732],[124,112,73,0.09910115210098486],[124,112,74,0.10173894202822356],[124,112,75,0.10431698792731249],[124,112,76,0.10684785988736425],[124,112,77,0.10934208216411671],[124,112,78,0.11180768687173631],[124,112,79,0.11424987983339543],[124,113,64,0.06490400152165135],[124,113,65,0.06851447674062529],[124,113,66,0.0720669164149795],[124,113,67,0.07551051574132162],[124,113,68,0.0788238816450376],[124,113,69,0.08201172773155889],[124,113,70,0.08508214027873821],[124,113,71,0.08804512972250042],[124,113,72,0.09091177877954593],[124,113,73,0.09369347404184213],[124,113,74,0.09640122380121231],[124,113,75,0.09904506463508542],[124,113,76,0.10163355905821961],[124,113,77,0.1041733863213918],[124,113,78,0.10666902821800238],[124,113,79,0.10912255154544634],[124,114,64,0.059061124360948444],[124,114,65,0.06266008158070874],[124,114,66,0.06621367846551697],[124,114,67,0.0696732725162431],[124,114,68,0.0730188764506022],[124,114,69,0.07625513049562681],[124,114,70,0.07938875390527386],[124,114,71,0.08242734490923292],[124,114,72,0.08537876209949333],[124,114,73,0.08825057608727066],[124,114,74,0.09104959357254326],[124,114,75,0.09378145578394563],[124,114,76,0.09645031306392457],[124,114,77,0.09905857719407743],[124,114,78,0.10160675287957645],[124,114,79,0.10409334964140723],[124,115,64,0.05307012993037764],[124,115,65,0.05666091085072189],[124,115,66,0.06022038557972409],[124,115,67,0.06370243810319126],[124,115,68,0.06708877452365222],[124,115,69,0.07038411590108733],[124,115,70,0.0735938488821267],[124,115,71,0.07672308911704181],[124,115,72,0.07977631041384531],[124,115,73,0.0827570307119047],[124,115,74,0.08566755636148979],[124,115,75,0.08850878605493848],[124,115,76,0.09128007561682078],[124,115,77,0.09397916472558707],[124,115,78,0.09660216650855767],[124,115,79,0.0991436208273286],[124,116,64,0.04694485116250942],[124,116,65,0.05052887940229087],[124,116,66,0.05409693803961674],[124,116,67,0.057605780155498755],[124,116,68,0.061039070028670595],[124,116,69,0.06440175635542533],[124,116,70,0.06769793900779397],[124,116,71,0.07093020725912749],[124,116,72,0.07409952767592382],[124,116,73,0.07720517535671594],[124,116,74,0.08024470931901849],[124,116,75,0.08321399273865579],[124,116,76,0.08610725865244027],[124,116,77,0.08891722164589186],[124,116,78,0.09163523596308036],[124,116,79,0.09425150039702891],[124,117,64,0.04071071618161423],[124,117,65,0.04428750698734288],[124,117,66,0.047864728277276794],[124,117,67,0.051402302809416746],[124,117,68,0.05488608109609472],[124,117,69,0.05832137229873608],[124,117,70,0.06171104670720475],[124,117,71,0.06505515578148252],[124,117,72,0.06835108555055684],[124,117,73,0.07159374008275382],[124,117,74,0.07477575512519671],[124,117,75,0.07788774195702314],[124,117,76,0.08091856145227413],[124,117,77,0.08385562830445771],[124,117,78,0.08668524532608675],[124,117,79,0.08939296770395619],[124,118,64,0.034401663506752056],[124,118,65,0.03796889224709024],[124,118,66,0.04155370536600531],[124,118,67,0.04511943740268472],[124,118,68,0.0486543050872479],[124,118,69,0.05216409119406611],[124,118,70,0.05565050409032763],[124,118,71,0.05911108181460594],[124,118,72,0.06253961309776805],[124,118,73,0.0659265755824956],[124,118,74,0.06925959063059599],[124,118,75,0.07275279852746241],[124,118,76,0.07829496905230136],[124,118,77,0.08373230456749046],[124,118,78,0.08904995738623567],[124,118,79,0.09423300861417581],[124,119,64,0.028057293261879064],[124,119,65,0.031610918559360504],[124,119,66,0.03519966444997588],[124,119,67,0.038790448343248435],[124,119,68,0.04237397636915538],[124,119,69,0.04595659362355089],[124,119,70,0.05187682921546723],[124,119,71,0.05796717825710404],[124,119,72,0.06402418664685777],[124,119,73,0.07003643729207573],[124,119,74,0.07598936910734203],[124,119,75,0.0818659628508579],[124,119,76,0.08764742961634936],[124,119,77,0.09331390077905409],[124,119,78,0.09804268523764371],[124,119,79,0.10137090913344533],[124,120,64,0.022154784414350107],[124,120,65,0.028430857380961023],[124,120,66,0.034733067483565534],[124,120,67,0.041032211845049175],[124,120,68,0.04732217017634216],[124,120,69,0.0536109325872633],[124,120,70,0.05989952189619964],[124,120,71,0.06618243519815549],[124,120,72,0.07244857130952354],[124,120,73,0.07868215317504407],[124,120,74,0.08486364324638046],[124,120,75,0.09097064991021947],[124,120,76,0.09697882311970622],[124,120,77,0.10186372385896257],[124,120,78,0.10504171762704734],[124,120,79,0.10815380602758169],[124,121,64,0.029670545647960924],[124,121,65,0.03599481385785455],[124,121,66,0.04236157923903042],[124,121,67,0.048745269764943824],[124,121,68,0.05514225732622365],[124,121,69,0.06156113196500591],[124,121,70,0.06800194842273749],[124,121,71,0.07445692826327566],[124,121,72,0.0809116319007777],[124,121,73,0.08734611497300208],[124,121,74,0.09373606642436798],[124,121,75,0.10005392576676378],[124,121,76,0.10610157160838718],[124,121,77,0.10912721415148482],[124,121,78,0.11207535911492618],[124,121,79,0.11497299687206827],[124,122,64,0.037408643698713155],[124,122,65,0.043762127270427977],[124,122,66,0.05017353876244112],[124,122,67,0.05662086232388344],[124,122,68,0.0631028938718794],[124,122,69,0.06962882634274914],[124,122,70,0.07619784157352419],[124,122,71,0.08280005545998971],[124,122,72,0.0894179174420347],[124,122,73,0.09602758475570851],[124,122,74,0.10260026821723704],[124,122,75,0.10910354643956995],[124,122,76,0.11362149792019298],[124,122,77,0.116416435723469],[124,122,78,0.11914337055683638],[124,122,79,0.12183395474398605],[124,123,64,0.045392576982569856],[124,123,65,0.05175554259339126],[124,123,66,0.0581905471935144],[124,123,67,0.06467897199872458],[124,123,68,0.07122190313459824],[124,123,69,0.07782910684083934],[124,123,70,0.08449898619247125],[124,123,71,0.09121974760908806],[124,123,72,0.09797100661352501],[124,123,73,0.10472535991243664],[124,123,74,0.11144992002154681],[124,123,75,0.11810780882141293],[124,123,76,0.1211441921563165],[124,123,77,0.12372367604475838],[124,123,78,0.12624356749434],[124,123,79,0.1287398398355],[124,124,64,0.05364004618621635],[124,124,65,0.059992360316523614],[124,124,66,0.06642915484413223],[124,124,67,0.07293496987992143],[124,124,68,0.07951298669958216],[124,124,69,0.0861734839028403],[124,124,70,0.09291417641186793],[124,124,71,0.09972157812259176],[124,124,72,0.10657278931672601],[124,124,73,0.1134372431486004],[124,124,74,0.12027840695249804],[124,124,75,0.1261777379734245],[124,124,76,0.12865522141263858],[124,124,77,0.13103945064565106],[124,124,78,0.13337137199065502],[124,124,79,0.13569084099869097],[124,125,64,0.06216168027434823],[124,125,65,0.06848319320619284],[124,125,66,0.074899660291321],[124,125,67,0.08139847188784081],[124,125,68,0.08798465516875323],[124,125,69,0.09466891141105933],[124,125,70,0.10144835223951994],[124,125,71,0.108308030473395],[124,125,72,0.11522288190356401],[124,125,73,0.12215962012303459],[124,125,74,0.12907857975170445],[124,125,75,0.133835068829572],[124,125,76,0.13613899646752411],[124,125,77,0.1383522743503252],[124,125,78,0.14051939641826386],[124,125,79,0.14268357805097406],[124,126,64,0.07096001422465811],[124,126,65,0.07723097089883733],[124,126,66,0.08360515041212861],[124,126,67,0.09007242591473019],[124,126,68,0.09663937668606264],[124,126,69,0.10331701235264283],[124,126,70,0.11010191855920565],[124,126,71,0.11697792625539563],[124,126,72,0.12391817878384773],[124,126,73,0.1308871472144147],[124,126,74,0.1378425889369954],[124,126,75,0.14142045074757226],[124,126,76,0.14357870668432313],[124,126,77,0.14564843653004908],[124,126,78,0.1476770611301484],[124,126,79,0.14971056714295938],[124,127,64,0.08002872024533551],[124,127,65,0.08623019411772039],[124,127,66,0.09254078316453035],[124,127,67,0.098952431681915],[124,127,68,0.10547294497993678],[124,127,69,0.11211350770319932],[124,127,70,0.11887024809950862],[124,127,71,0.1257260152424281],[124,127,72,0.13265254163799514],[124,127,73,0.13961255042935516],[124,127,74,0.14656180196120866],[124,127,75,0.14891390775410804],[124,127,76,0.15095622866311734],[124,127,77,0.15291178049838805],[124,127,78,0.15483024646827576],[124,127,79,0.15675974998224795],[124,128,64,0.08935209410821603],[124,128,65,0.09546644018071845],[124,128,66,0.10169331479460383],[124,128,67,0.10802629497943753],[124,128,68,0.11447406854877257],[124,128,69,0.1210478500821223],[124,128,70,0.12774336982159049],[124,128,71,0.13454272876048992],[124,128,72,0.14141662738124872],[124,128,73,0.14832653639899887],[124,128,74,0.15420207360994587],[124,128,75,0.1562952826778647],[124,128,76,0.15825200845549645],[124,128,77,0.16012348715819752],[124,128,78,0.1619609795287004],[124,128,79,0.16381408765026695],[124,129,64,0.09890479812437526],[124,129,65,0.10491612135821432],[124,129,66,0.11104087304058177],[124,129,67,0.11727381784647099],[124,129,68,0.12362418250923048],[124,129,69,0.13010306363246998],[124,129,70,0.1367058440822467],[124,129,71,0.14341409760288704],[124,129,72,0.1501978559522932],[124,129,73,0.15701781635129392],[124,129,74,0.16150740659095802],[124,129,75,0.16354416007615485],[124,129,76,0.1654449171641091],[124,129,77,0.16726186299838372],[124,129,78,0.1690471560703209],[124,129,79,0.17085121969608352],[124,130,64,0.10865186219807504],[124,130,65,0.11454649754650952],[124,130,66,0.12055297780916871],[124,130,67,0.12666682615559374],[124,130,68,0.1328974845335959],[124,130,69,0.13925579148855152],[124,130,70,0.14573682584477277],[124,130,71,0.15232183564216728],[124,130,72,0.1589805189336208],[124,130,73,0.16567324389283067],[124,130,74,0.16863259986652215],[124,130,75,0.1706397314919067],[124,130,76,0.17251207975597532],[124,130,77,0.1743021325272915],[124,130,78,0.1760622979240699],[124,130,79,0.17784318914126165],[124,131,64,0.11854894431823244],[124,131,65,0.12431594464219015],[124,131,66,0.13019081071734684],[124,131,67,0.1361694359810296],[124,131,68,0.14226119622033087],[124,131,69,0.1484765521149045],[124,131,70,0.1548103171353672],[124,131,71,0.16124359022462278],[124,131,72,0.16774602995166954],[124,131,73,0.17337573180367313],[124,131,74,0.17555980441775643],[124,131,75,0.17756060264895854],[124,131,76,0.1794286769233817],[124,131,77,0.18121623521748467],[124,131,78,0.18297534622940378],[124,131,79,0.18475623398159507],[124,132,64,0.1285427329883818],[124,132,65,0.13417435292062402],[124,132,66,0.13990759976370845],[124,132,67,0.14573841699873358],[124,132,68,0.1516759001435818],[124,132,69,0.1577300469266046],[124,132,70,0.16389544369175107],[124,132,71,0.17015318744321628],[124,132,72,0.17647313897102357],[124,132,73,0.18007937526036752],[124,132,74,0.18227184394607476],[124,132,75,0.18428473068506102],[124,132,76,0.18616790818660228],[124,132,77,0.18797281331853094],[124,132,78,0.1897506729883883],[124,132,79,0.1915508217397292],[124,133,64,0.1385531297238489],[124,133,65,0.1440438893345835],[124,133,66,0.1496279797668081],[124,133,67,0.1553011474936638],[124,133,68,0.1610720837746371],[124,133,69,0.1669503116645975],[124,133,70,0.1729302662343641],[124,133,71,0.17899319587183324],[124,133,72,0.1841373681916994],[124,133,73,0.18657005840257268],[124,133,74,0.18878246517835365],[124,133,75,0.1908201209491885],[124,133,76,0.19273184030551518],[124,133,77,0.19456789077758413],[124,133,78,0.1963782514434412],[124,133,79,0.1982109635062321],[124,134,64,0.14846364766348785],[124,134,65,0.15380771591208448],[124,134,66,0.15923505773927005],[124,134,67,0.16474102129937845],[124,134,68,0.17033385982855156],[124,134,69,0.17602272522522788],[124,134,70,0.18180207286529565],[124,134,71,0.18765353014884437],[124,134,72,0.19047001501062155],[124,134,73,0.19292306524614486],[124,134,74,0.19516225917921068],[124,134,75,0.1972318763298389],[124,134,76,0.19917932809896513],[124,134,77,0.20105336995283943],[124,134,78,0.20290240137289592],[124,134,79,0.20477285765022885],[124,135,64,0.1581686142801682],[124,135,65,0.16335972620514205],[124,135,66,0.16862261918781904],[124,135,67,0.1739520949366964],[124,135,68,0.1793560121145992],[124,135,69,0.18484334595146742],[124,135,70,0.19040881878680277],[124,135,71,0.19400690597257153],[124,135,72,0.1967281643604829],[124,135,73,0.19920404210725165],[124,135,74,0.20147243113214075],[124,135,75,0.20357603794539886],[124,135,76,0.2055605626621789],[124,135,77,0.20747296074252347],[124,135,78,0.20935979172676553],[124,135,79,0.2112656589615952],[124,136,64,0.16757939308948966],[124,136,65,0.17261107263315345],[124,136,66,0.1777019394853588],[124,136,67,0.1828461630631664],[124,136,68,0.188051314881116],[124,136,69,0.1933264500331901],[124,136,70,0.19722451937470487],[124,136,71,0.20022782261273142],[124,136,72,0.20296342383359064],[124,136,73,0.2054610378554093],[124,136,74,0.20775686324793588],[124,136,75,0.2098917430628385],[124,136,76,0.21190940225165],[124,136,77,0.21385476617952445],[124,136,78,0.21577236438700095],[124,136,79,0.21770482348678138],[124,137,64,0.17662488792494904],[124,137,65,0.18149058670983076],[124,137,66,0.186402103303903],[124,137,67,0.191352955804308],[124,137,68,0.19635058678698833],[124,137,69,0.2001728721110106],[124,137,70,0.20345799538458464],[124,137,71,0.20646388598431972],[124,137,72,0.20921037530877862],[124,137,73,0.2117254103337409],[124,137,74,0.2140432131766899],[124,137,75,0.21620251024078563],[124,137,76,0.21824483542523113],[124,137,77,0.2202129116539591],[124,137,78,0.2221491147295354],[124,137,79,0.22409402326525682],[124,138,64,0.1852524260348943],[124,138,65,0.1899455741408895],[124,138,66,0.19467069170742324],[124,138,67,0.1990781489033988],[124,138,68,0.20290566753568853],[124,138,69,0.20645791966496266],[124,138,70,0.20973171055935447],[124,138,71,0.21273540312627937],[124,138,72,0.2154870392412393],[124,138,73,0.21801251779677033],[124,138,74,0.22034383416815292],[124,138,75,0.22251738559303055],[124,138,76,0.22457234675099963],[124,138,77,0.22654911960737148],[124,138,78,0.2284878613537442],[124,138,79,0.2304270940378696],[124,139,64,0.19266803964620136],[124,139,65,0.19717105731897006],[124,139,66,0.20144052990429273],[124,139,67,0.2054772892034613],[124,139,68,0.20926714257420415],[124,139,69,0.2127929725011836],[124,139,70,0.21605026625857407],[124,139,71,0.21904564612920918],[124,139,72,0.22179508817824842],[124,139,73,0.2243221933197317],[124,139,74,0.22665651510747462],[124,139,75,0.22883194849709598],[124,139,76,0.23088518363018187],[124,139,77,0.23285422848541934],[124,139,78,0.23477700402599253],[124,139,79,0.23669001524863223],[124,140,64,0.19930898025012167],[124,140,65,0.20373488422775912],[124,140,66,0.2079387760145244],[124,140,67,0.21192201258097118],[124,140,68,0.21567008342565186],[124,140,69,0.2191648093552282],[124,140,70,0.22240008629361474],[124,140,71,0.2253805309499368],[124,140,72,0.22811980738150164],[124,140,73,0.23063900021229455],[124,140,74,0.23296503863452608],[124,140,75,0.23512917515342996],[124,140,76,0.23716552285752807],[124,140,77,0.23910965480862467],[124,140,78,0.2409972689487289],[124,140,79,0.24286292171587065],[124,141,64,0.20596988961781168],[124,141,65,0.2103157645976148],[124,141,66,0.21445117461283963],[124,141,67,0.21837781471898812],[124,141,68,0.2220806447823094],[124,141,69,0.2255401909331404],[124,141,70,0.22874851980348337],[124,141,71,0.23170801082331233],[124,141,72,0.2344298004976982],[124,141,73,0.23693226653710317],[124,141,74,0.23923955562693888],[124,141,75,0.24138015847482444],[124,141,76,0.24338553561618986],[124,141,77,0.2452887972914522],[124,141,78,0.24712344053174712],[124,141,79,0.24892214640587962],[124,142,64,0.21258885774342712],[124,142,65,0.21685304997668498],[124,142,66,0.22091842146402102],[124,142,67,0.2247868020896689],[124,142,68,0.22844243305944278],[124,142,69,0.23186436180704634],[124,142,70,0.235042629891125],[124,142,71,0.23797718211118246],[124,142,72,0.2406764382647525],[124,142,73,0.24315589688795258],[124,142,74,0.2454367743880959],[124,142,75,0.24754468285119735],[124,142,76,0.24950834967170127],[124,142,77,0.2513583820070371],[124,142,78,0.2531260789062551],[124,142,79,0.254842293800675],[124,143,64,0.2190881918912466],[124,143,65,0.22327032413620018],[124,143,66,0.22726555659970477],[124,143,67,0.23107564713339493],[124,143,68,0.23468395962020838],[124,143,69,0.23806793109043603],[124,143,70,0.24121542373921778],[124,143,71,0.24412378045738797],[124,143,72,0.246798534075548],[124,143,73,0.24925213975517366],[124,143,74,0.2515027335229345],[124,143,75,0.25357291984222047],[124,143,76,0.2554885910045963],[124,143,77,0.25727778100377174],[124,143,78,0.2589695564261523],[124,143,79,0.2605929467555901],[124,144,64,0.22541973950026042],[124,144,65,0.22951921893296834],[124,144,66,0.23344397834070102],[124,144,67,0.23719546182974235],[124,144,68,0.24075600103907155],[124,144,69,0.24410132244697852],[124,144,70,0.24721698289598493],[124,144,71,0.25009758072292554],[124,144,72,0.25274561275774565],[124,144,73,0.25517034463078964],[124,144,74,0.25738669693594574],[124,144,75,0.25941414972042404],[124,144,76,0.2612756676868138],[124,144,77,0.26299664839946896],[124,144,78,0.26460389568551107],[124,144,79,0.26612462031108197],[124,145,64,0.231549038248403],[124,145,65,0.2355645480945111],[124,145,66,0.2394176716184159],[124,145,67,0.2431092597098647],[124,145,68,0.24644152968843386],[124,145,69,0.24947580735557837],[124,145,70,0.25248258805729684],[124,145,71,0.2554662776314625],[124,145,72,0.2584241216294945],[124,145,73,0.26086584409115526],[124,145,74,0.26304269802957075],[124,145,75,0.2650211788710168],[124,145,76,0.2668212568068473],[124,145,77,0.2684656529412345],[124,145,78,0.2699788985287465],[124,145,79,0.2713864081336438],[124,146,64,0.23744581336897608],[124,146,65,0.24137523404664388],[124,146,66,0.24515463175295005],[124,146,67,0.24815790259300247],[124,146,68,0.2509607109431601],[124,146,69,0.25371329224976513],[124,146,70,0.2564309249021575],[124,146,71,0.2591212007199962],[124,146,72,0.26178485778799204],[124,146,73,0.26441662282556166],[124,146,74,0.2670060615480952],[124,146,75,0.2695384354965],[124,146,76,0.2719955638389969],[124,146,77,0.27363920774511785],[124,146,78,0.2750483316090139],[124,146,79,0.27633164733673093],[124,147,64,0.24308351090346228],[124,147,65,0.2469238752090422],[124,147,66,0.2500199543783908],[124,147,67,0.25263360867427004],[124,147,68,0.25516195421968746],[124,147,69,0.257630490274269],[124,147,70,0.26005722675875703],[124,147,71,0.2624529761088136],[124,147,72,0.2648220103305465],[124,147,73,0.26716274032367765],[124,147,74,0.26946841647848213],[124,147,75,0.27172784954194207],[124,147,76,0.27392615074461435],[124,147,77,0.27604549018296515],[124,147,78,0.27806587246279735],[124,147,79,0.279965928628217],[124,148,64,0.24843887887247415],[124,148,65,0.2519907674831839],[124,148,66,0.2544549809707903],[124,148,67,0.25680404241886057],[124,148,68,0.2590568582802305],[124,148,69,0.26124095264289254],[124,148,70,0.26337704136506573],[124,148,71,0.26547914420433594],[124,148,72,0.26755505984182987],[124,148,73,0.26960687670619315],[124,148,74,0.27163151917809925],[124,148,75,0.27362132871354855],[124,148,76,0.2755646793878381],[124,148,77,0.2774466273324898],[124,148,78,0.27924959351529155],[124,148,79,0.28095407929947624],[124,149,64,0.25349159670221466],[124,149,65,0.2563811123553107],[124,149,66,0.25859270854794786],[124,149,67,0.26067711650337616],[124,149,68,0.2626551706097767],[124,149,69,0.2645563383301788],[124,149,70,0.26640396993053495],[124,149,71,0.26821523020637883],[124,149,72,0.27000138716924504],[124,149,73,0.27176815071425675],[124,149,74,0.27351606144305973],[124,149,75,0.27524092974126624],[124,149,76,0.27693432513998567],[124,149,77,0.27858411592782784],[124,149,78,0.2801750589238414],[124,149,79,0.28168943927406087],[124,150,64,0.2582239532332946],[124,150,65,0.2604780865088381],[124,150,66,0.2624378048260175],[124,150,67,0.2642591605360653],[124,150,68,0.2659649822624309],[124,150,69,0.2675865608159016],[124,150,70,0.26914976474179786],[124,150,71,0.27067479336496164],[124,150,72,0.2721762769899726],[124,150,73,0.27366344173746004],[124,150,74,0.2751403397958207],[124,150,75,0.27660614575973574],[124,150,76,0.2780555196237639],[124,150,77,0.27947903690213804],[124,150,78,0.28086368625587094],[124,150,79,0.282193434926508],[124,151,64,0.2624194435927509],[124,151,65,0.2642836034631019],[124,151,66,0.2659936433416736],[124,151,67,0.26755511559019385],[124,151,68,0.26899288012020806],[124,151,69,0.2703398957849022],[124,151,70,0.2716243915355813],[124,151,71,0.272869444916952],[124,151,72,0.2740928939210687],[124,151,73,0.27530732841201155],[124,151,74,0.27652016250964473],[124,151,75,0.27773378918010794],[124,151,76,0.2789458181441435],[124,151,77,0.2801493980833755],[124,151,78,0.2813336240006684],[124,151,79,0.2824840304750731],[124,152,64,0.2661683441585867],[124,152,65,0.26779857500521065],[124,152,66,0.2692624882693185],[124,152,67,0.270568682753589],[124,152,68,0.2717440562655654],[124,152,69,0.27282304949760144],[124,152,70,0.2738360563712744],[124,152,71,0.27480883445424337],[124,152,72,0.27576223094472124],[124,152,73,0.2767120032360728],[124,152,74,0.27766873605479897],[124,152,75,0.27863785699223514],[124,152,76,0.2796197520808776],[124,152,77,0.28060998290201583],[124,152,78,0.28159960655395794],[124,152,79,0.28257559966127144],[124,153,64,0.269622895296568],[124,153,65,0.2710230778965299],[124,153,66,0.27224563050445894],[124,153,67,0.2733024253867905],[124,153,68,0.2742223741697513],[124,153,69,0.27504118754669316],[124,153,70,0.2757911967349861],[124,153,71,0.27650060447364433],[124,153,72,0.2771930299182774],[124,153,73,0.27788716299144794],[124,153,74,0.27859653077441593],[124,153,75,0.27932937832206906],[124,153,76,0.28008866608159466],[124,153,77,0.2808721858989623],[124,153,78,0.2816727974075449],[124,153,79,0.28247878641212465],[124,154,64,0.27278148362594756],[124,154,65,0.2739564697476603],[124,154,66,0.274943474699872],[124,154,67,0.2757578247813921],[124,154,68,0.276430391397995],[124,154,69,0.2769979237140857],[124,154,70,0.27749443660495476],[124,154,71,0.2779503128560192],[124,154,72,0.27839167393528225],[124,154,73,0.27883987475669436],[124,154,74,0.2793111255931356],[124,154,75,0.2798162440637531],[124,154,76,0.28036053988871307],[124,154,77,0.2809438348771582],[124,154,78,0.2815606203935171],[124,154,79,0.2822003543354559],[124,155,64,0.2756420094215681],[124,155,65,0.27659745374412686],[124,155,66,0.27735557693780716],[124,155,67,0.27793528890690095],[124,155,68,0.27836933852930157],[124,155,69,0.2786952686387566],[124,155,70,0.2789485052044668],[124,155,71,0.2791613230181025],[124,155,72,0.2793620512991581],[124,155,73,0.2795744172915918],[124,155,74,0.27981703155604415],[124,155,75,0.28010301839991103],[124,155,76,0.2804397946272559],[124,155,77,0.28082899953433427],[124,155,78,0.2812665788267692],[124,155,79,0.28174302489362796],[124,156,64,0.2782019218674675],[124,156,65,0.2789440918977296],[124,156,66,0.2794806327145497],[124,156,67,0.2798341139277952],[124,156,68,0.2800390539821681],[124,156,69,0.2801335379998208],[124,156,70,0.2801541191620448],[124,156,71,0.2801346614738472],[124,156,72,0.2801053908643193],[124,156,73,0.2800920975657751],[124,156,74,0.2801154939880059],[124,156,75,0.2801907320160354],[124,156,76,0.28032708337301404],[124,156,77,0.280527786406863],[124,156,78,0.2807900623826295],[124,156,79,0.28110530409493956],[124,157,64,0.2804582010786956],[124,157,65,0.2809937664886286],[124,157,66,0.2813164149042777],[124,157,67,0.28145239816352186],[124,157,68,0.28143787442903045],[124,157,69,0.281311219910933],[124,157,70,0.2811098277906775],[124,157,71,0.28086884253425515],[124,157,72,0.28062006849161325],[124,157,73,0.28039104219636624],[124,157,74,0.2802042730554492],[124,157,75,0.28007665680682864],[124,157,76,0.28001906581255914],[124,157,77,0.2800361199470546],[124,157,78,0.28012614153928944],[124,157,79,0.28028129753566505],[124,158,64,0.28240728654294445],[124,158,65,0.2827430893506274],[124,158,66,0.2828596613571528],[124,158,67,0.28278690815281393],[124,158,68,0.2825624804715099],[124,158,69,0.282224801211972],[124,158,70,0.28181182118815873],[124,158,71,0.2813596598652824],[124,158,72,0.28090138435585094],[124,158,73,0.28046596355047776],[124,158,74,0.28007740250385493],[124,158,75,0.27975406186371105],[124,158,76,0.27950816679824436],[124,158,77,0.27934550954829157],[124,158,78,0.2792653494074197],[124,158,79,0.27926051361932136],[124,159,64,0.2840449516165486],[124,159,65,0.28418775863589857],[124,159,66,0.2841059117711156],[124,159,67,0.2838328964690402],[124,159,68,0.28340769723471265],[124,159,69,0.2828685523309402],[124,159,70,0.2822537008482902],[124,159,71,0.2815999446116924],[124,159,72,0.2809413108319556],[124,159,73,0.28030790025763447],[124,159,74,0.2797249263337154],[124,159,75,0.2792119505225957],[124,159,76,0.27878231859164065],[124,159,77,0.27844280232323737],[124,159,78,0.27819345076093444],[124,159,79,0.278027654772265],[124,160,64,0.2853661236896594],[124,160,65,0.285322362676604],[124,160,66,0.2850492934589463],[124,160,67,0.28458387091636006],[124,160,68,0.28396624952295074],[124,160,69,0.28323427037416726],[124,160,70,0.28242621245883226],[124,160,71,0.2815792897817133],[124,160,72,0.28072821067398684],[124,160,73,0.27990393186552],[124,160,74,0.2791326131666745],[124,160,75,0.27843477824051843],[124,160,76,0.2778246865789135],[124,160,77,0.27730992143109096],[124,160,78,0.2768911980743882],[124,160,79,0.27656239646724695],[124,161,64,0.28611091354854873],[124,161,65,0.2861401305393689],[124,161,66,0.28568225561167426],[124,161,67,0.28503131471713167],[124,161,68,0.28422847116120475],[124,161,69,0.283310980086148],[124,161,70,0.2823169405465397],[124,161,71,0.28128374057292693],[124,161,72,0.28024652518785853],[124,161,73,0.2792368673599016],[124,161,74,0.2782816480417904],[124,161,75,0.27740215105868476],[124,161,76,0.2766133782313644],[124,161,77,0.2759235897403484],[124,161,78,0.2753340743638718],[124,161,79,0.27483915385897484],[124,162,64,0.2863438982624505],[124,162,65,0.28663262884343416],[124,162,66,0.2859952516354304],[124,162,67,0.28516435727834744],[124,162,68,0.2841819681254484],[124,162,69,0.2830845923006683],[124,162,70,0.2819099646114255],[124,162,71,0.28069545030299026],[124,162,72,0.2794764320829908],[124,162,73,0.278284907255126],[124,162,74,0.27714830136841123],[124,162,75,0.27608850439696647],[124,162,76,0.2751211350727181],[124,162,77,0.2742550386028015],[124,162,78,0.2734920226185103],[124,162,79,0.2728268358270458],[124,163,64,0.2862076154972275],[124,163,65,0.2867894043862897],[124,163,66,0.28597636911308816],[124,163,67,0.28496939510061026],[124,163,68,0.28381123504239697],[124,163,69,0.282537519484065],[124,163,70,0.2811854763733149],[124,163,71,0.27979230159135093],[124,163,72,0.27839347267219317],[124,163,73,0.2770212789469891],[124,163,74,0.27570357474879104],[124,163,75,0.27446276191264674],[124,163,76,0.2733150074035521],[124,163,77,0.2722697015043376],[124,163,78,0.27132916160054227],[124,163,79,0.2704885862136094],[124,164,64,0.2857157955191371],[124,164,65,0.2865969096836872],[124,164,66,0.28561034400243074],[124,164,67,0.2844292041997359],[124,164,68,0.2830968732421951],[124,164,69,0.281648005617055],[124,164,70,0.2801192250075157],[124,164,71,0.27854746665066366],[124,164,72,0.27696822229814144],[124,164,73,0.2754140072554128],[124,164,74,0.27391305634204594],[124,164,75,0.27248825520688125],[124,164,76,0.2711563130213764],[124,164,77,0.2699271821654017],[124,164,78,0.26880373011599856],[124,164,79,0.26778166835506595],[124,165,64,0.28488941980604626],[124,165,65,0.28603604459328535],[124,165,66,0.2848768873443185],[124,165,67,0.28352209860937],[124,165,68,0.2820156048352269],[124,165,69,0.28039102281843514],[124,165,70,0.2786843127705834],[124,165,71,0.2769320965167498],[124,165,72,0.2751698376837312],[124,165,73,0.2734302489652483],[124,165,74,0.2717419334923067],[124,165,75,0.2701282669217084],[124,165,76,0.268606526438172],[124,165,77,0.2671872724492249],[124,165,78,0.2658739883408072],[124,165,79,0.26466298325934196],[124,166,64,0.2837482617105814],[124,166,65,0.2848223972056538],[124,166,66,0.28375897156060004],[124,166,67,0.2822301304471131],[124,166,68,0.28054839471616466],[124,166,69,0.27874632926172127],[124,166,70,0.27685921284236703],[124,166,71,0.2749233359479876],[124,166,72,0.2729741210195433],[124,166,73,0.2710444740128722],[124,166,74,0.269163374496397],[124,166,75,0.26735471105220515],[124,166,76,0.26563636832686555],[124,166,77,0.2640195716562041],[124,166,78,0.2625084947709121],[124,166,79,0.2611001356813882],[124,167,64,0.28230792623527445],[124,167,65,0.28321817465399074],[124,167,66,0.2822452763903899],[124,167,67,0.28054125828205617],[124,167,68,0.2786823433344421],[124,167,69,0.27670008648493627],[124,167,70,0.27462911565800785],[124,167,71,0.27250541267718115],[124,167,72,0.27036437907709077],[124,167,73,0.26823913674738525],[124,167,74,0.2661590707337286],[124,167,75,0.26414862109700205],[124,167,76,0.26222633030461673],[124,167,77,0.2604041522012922],[124,167,78,0.2586870281846419],[124,167,79,0.25707273579752765],[124,168,64,0.28058125839577286],[124,168,65,0.28133430010875976],[124,168,66,0.28032877918825516],[124,168,67,0.2784479541262849],[124,168,68,0.27640931830297993],[124,168,69,0.2742435204633082],[124,168,70,0.2719846215797843],[124,168,71,0.2696683615197241],[124,168,72,0.2673301766687483],[124,168,73,0.2650034550775475],[124,168,74,0.2627180365647538],[124,168,75,0.26049896478232776],[124,168,76,0.25836549782007046],[124,168,77,0.2563303834963766],[124,168,78,0.25439940505710873],[124,168,79,0.25257120258760585],[124,169,64,0.2785799951243307],[124,169,65,0.27918333301841775],[124,169,66,0.2780051036508084],[124,169,67,0.27594557302139405],[124,169,68,0.27372435401846995],[124,169,69,0.27137135776041693],[124,169,70,0.2689202176275581],[124,169,71,0.266406543564914],[124,169,72,0.2638658982750128],[124,169,73,0.26133201284482094],[124,169,74,0.25883524931879753],[124,169,75,0.2564013173027692],[124,169,76,0.25405025125232894],[124,169,77,0.2517956546684732],[124,169,78,0.24964421699613398],[124,169,79,0.2475955086023053],[124,170,64,0.27631664382330823],[124,170,65,0.2767784300578359],[124,170,66,0.27527064067270607],[124,170,67,0.27303049711841243],[124,170,68,0.27062382936539825],[124,170,69,0.26808004498406357],[124,170,70,0.265432544666792],[124,170,71,0.26271696510659825],[124,170,72,0.2599691209223829],[124,170,73,0.2572231871999926],[124,170,74,0.2545101302120582],[124,170,75,0.25185639345271843],[124,170,76,0.2492828456924654],[124,170,77,0.24680399732717762],[124,170,78,0.24442749086787197],[124,170,79,0.242153870997943],[124,171,64,0.27380658988765294],[124,171,65,0.27413544281492397],[124,171,66,0.27212043912949746],[124,171,67,0.2696980521231118],[124,171,68,0.2671034214615412],[124,171,69,0.2643657496031685],[124,171,70,0.26151845322276984],[124,171,71,0.25859739460823417],[124,171,72,0.25563879674733886],[124,171,73,0.25267739957256896],[124,171,74,0.2497448649509471],[124,171,75,0.24686843758053015],[124,171,76,0.24406986852564724],[124,171,77,0.241364607692767],[124,171,78,0.2387612711220356],[124,171,79,0.23626138855014603],[124,172,64,0.2710704357048923],[124,172,65,0.2709267344099507],[124,172,66,0.26854586420535637],[124,172,67,0.26594019380558415],[124,172,68,0.2631558332367395],[124,172,69,0.2602221400240993],[124,172,70,0.2571728459406006],[124,172,71,0.25404427585794753],[124,172,72,0.25087324355249496],[124,172,73,0.24769518870315807],[124,172,74,0.24454256266751823],[124,172,75,0.24144347019942916],[124,172,76,0.2384205738440455],[124,172,77,0.23549026731796555],[124,172,78,0.23266212375697912],[124,172,79,0.2299386242958921],[124,173,64,0.2681365738403437],[124,173,65,0.26708905169591285],[124,173,66,0.2645320206943344],[124,173,67,0.2617429620898353],[124,173,68,0.25876829246078387],[124,173,69,0.2556379426569708],[124,173,70,0.2523863045517541],[124,173,71,0.24905043532019186],[124,173,72,0.2456679415225474],[124,173,73,0.24227510408160138],[124,173,74,0.23890525171752616],[124,173,75,0.2355873899842629],[124,173,76,0.2323450926267846],[124,173,77,0.22919566155301974],[124,173,78,0.2261495612913726],[124,173,79,0.2232101333888391],[124,174,64,0.2650439973233844],[124,174,65,0.2627867160330464],[124,174,66,0.2600549385052475],[124,174,67,0.2570837000467882],[124,174,68,0.2539198196510001],[124,174,69,0.25059427352536656],[124,174,70,0.24714249903996735],[124,174,71,0.24360258153281728],[124,174,72,0.24001313412074973],[124,174,73,0.23641141799825233],[124,174,74,0.23283171074818515],[124,174,75,0.22930392977175382],[124,174,76,0.22585251752366917],[124,174,77,0.22249559481575276],[124,174,78,0.21924438803215268],[124,174,79,0.21610293568590003],[124,175,64,0.26059062767252583],[124,175,65,0.25799512004145586],[124,175,66,0.25509111435313814],[124,175,67,0.2519403404196539],[124,175,68,0.24859015006580829],[124,175,69,0.24507307180050952],[124,175,70,0.2414259971948602],[124,175,71,0.23768834692071888],[124,175,72,0.2338999537934479],[124,175,73,0.23009918597240323],[124,175,74,0.22632131778911188],[124,175,75,0.22259715525970655],[124,175,76,0.21895192291985238],[124,175,77,0.2154044182007229],[124,175,78,0.21196643914734345],[124,175,79,0.20864249086988146],[124,176,64,0.25549192392665754],[124,176,65,0.25273297915993936],[124,176,66,0.24965993790502475],[124,176,67,0.24633296198539834],[124,176,68,0.24280004120442109],[124,176,69,0.23909573572301634],[124,176,70,0.23525877280916585],[124,176,71,0.23133018993080673],[124,176,72,0.2273512294908103],[124,176,73,0.22336147332512452],[124,176,74,0.21939722436241035],[124,176,75,0.21549014243346085],[124,176,76,0.21166614080367427],[124,176,77,0.20794454958543854],[124,176,78,0.20433755177324045],[124,176,79,0.20084989723665211],[124,177,64,0.2499542992553502],[124,177,65,0.24703524910999258],[124,177,66,0.24379711899589948],[124,177,67,0.2402980265814569],[124,177,68,0.23658666986490892],[124,177,69,0.23270007189238978],[124,177,70,0.2286791322222025],[124,177,71,0.22456674643643207],[124,177,72,0.22040572206578957],[124,177,73,0.2162369336318643],[124,177,74,0.21209772411163427],[124,177,75,0.20802055972281672],[124,177,76,0.20403194451744117],[124,177,77,0.200151600858434],[124,177,78,0.1963919214437671],[124,177,79,0.19275769813879903],[124,178,64,0.24401629365845715],[124,178,65,0.24094137249511977],[124,178,66,0.23754305809241677],[124,178,67,0.23387696070166689],[124,178,68,0.22999252803932635],[124,178,69,0.22592962236452407],[124,178,70,0.22173160060753896],[124,178,71,0.2174434112466761],[124,178,72,0.21310954173729962],[124,178,73,0.20877220401712826],[124,178,74,0.20446976527424343],[124,178,75,0.20023543076243003],[124,178,76,0.19609618504179172],[124,178,77,0.19207199761459942],[124,178,78,0.1881752985207043],[124,178,79,0.1844107290575443],[124,179,64,0.23772009061271632],[124,179,65,0.23449455177767747],[124,179,66,0.23094206120756808],[124,179,67,0.22711529345774178],[124,179,68,0.22306446381095915],[124,179,69,0.2188325881430611],[124,179,70,0.21446570803714382],[124,179,71,0.2100109675523014],[124,179,72,0.20551460303065497],[124,179,73,0.20102016943797307],[124,179,74,0.1965670102791128],[124,179,75,0.19218897773291788],[124,179,76,0.18791340924994268],[124,179,77,0.1837603664538949],[124,179,78,0.17974214178767198],[124,179,79,0.1758630379511657],[124,180,64,0.231110758796207],[124,180,65,0.2277409507347625],[124,180,66,0.22404148662836737],[124,180,67,0.22006173143153254],[124,180,68,0.21585266614949375],[124,180,69,0.2114607059483521],[124,180,70,0.20693474088642178],[124,180,71,0.2023241966395899],[124,180,72,0.1976770778363144],[124,180,73,0.19303824580978082],[124,180,74,0.18844793763558873],[124,180,75,0.18394053293288587],[124,180,76,0.1795435745119763],[124,180,77,0.17527704855549023],[124,180,78,0.17115292962683712],[124,180,79,0.16717499541268405],[124,181,64,0.22423541997222268],[124,181,65,0.2207288234581822],[124,181,66,0.2168908225497554],[124,181,67,0.21276716954835018],[124,181,68,0.20840959278177873],[124,181,69,0.20386807750332134],[124,181,70,0.19919445789807588],[124,181,71,0.1944404672874146],[124,181,72,0.18965584611927863],[124,181,73,0.18488668164325694],[124,181,74,0.18017398593851724],[124,181,75,0.1755525185793212],[124,181,76,0.17104985983533144],[124,181,77,0.16668573991558933],[124,181,78,0.16247162937943935],[124,181,79,0.15841059545854075],[124,182,64,0.21714234200594681],[124,182,65,0.2135075698893654],[124,182,66,0.20954069463553812],[124,182,67,0.20528363703145436],[124,182,68,0.2007888402483245],[124,182,69,0.19610995051118577],[124,182,70,0.19130177016217728],[124,182,71,0.18641830420667818],[124,182,72,0.18151094376005397],[124,182,73,0.17662687781520042],[124,182,74,0.17180773977236422],[124,182,75,0.16708849479744267],[124,182,76,0.16249657369584336],[124,182,77,0.15805125860931993],[124,182,78,0.15376332546645877],[124,182,79,0.14963494774733693],[124,183,64,0.20987995591020012],[124,183,65,0.20612671680396227],[124,183,66,0.20204180245299674],[124,183,67,0.1976631774261622],[124,183,68,0.19304395518706208],[124,183,69,0.18824145043510895],[124,183,70,0.18331338420945406],[124,183,71,0.1783159348261002],[124,183,72,0.17330200695875203],[124,183,73,0.16831972505250123],[124,183,74,0.16341115726092634],[124,183,75,0.15861127573090145],[124,183,76,0.153947158689664],[124,183,77,0.14943743941871573],[124,183,78,0.14509200683231832],[124,183,79,0.14091196201825015],[124,184,64,0.20249579573861073],[124,184,65,0.19863482308400146],[124,184,66,0.19444378365305987],[124,184,67,0.18995666161005967],[124,184,68,0.18522718581737493],[124,184,69,0.18031626212563856],[124,184,70,0.1752844073557618],[124,184,71,0.17018981367534697],[124,184,72,0.16508671258775592],[124,184,73,0.16002395867009536],[124,184,74,0.1550438389781931],[124,184,75,0.15018111368021833],[124,184,76,0.14546229312114534],[124,184,77,0.14090515616092497],[124,184,78,0.1365185142733208],[124,184,79,0.1323022255433531],[124,185,64,0.19503536006563094],[124,185,65,0.19107830803765913],[124,185,66,0.18679400469239296],[124,185,67,0.18221253263334025],[124,185,68,0.17738817252877315],[124,185,69,0.17238526027793083],[124,185,70,0.16726691437772417],[124,185,71,0.1620931235654251],[124,185,72,0.15691921383511312],[124,185,73,0.15179453006891208],[124,185,74,0.14676133791030857],[124,185,75,0.14185395116105057],[124,185,76,0.13709808963479603],[124,185,77,0.13251047205281952],[124,185,78,0.1280986482229815],[124,185,79,0.12386107440611263],[124,186,64,0.19598773252893653],[124,186,65,0.1910207072552427],[124,186,66,0.18583059835825913],[124,186,67,0.1804377262187262],[124,186,68,0.17489104994994745],[124,186,69,0.1692525158571016],[124,186,70,0.1635822158831748],[124,186,71,0.15793649686802155],[124,186,72,0.1523665263806919],[124,186,73,0.14691706858355927],[124,186,74,0.14162547544991222],[124,186,75,0.13652089832268938],[124,186,76,0.13162372446545673],[124,186,77,0.1269452429207712],[124,186,78,0.12248754365984696],[124,186,79,0.11824365368309306],[124,187,64,0.19806437212050623],[124,187,65,0.1929815984509951],[124,187,66,0.18768041317515555],[124,187,67,0.1821775594640473],[124,187,68,0.1765222724200667],[124,187,69,0.17077924663107835],[124,187,70,0.16501047083012302],[124,187,71,0.15927338160619509],[124,187,72,0.1536195444745603],[124,187,73,0.14809353894144675],[124,187,74,0.14273205256910731],[124,187,75,0.13756318872513842],[124,187,76,0.13260599237571957],[124,187,77,0.12787019795927623],[124,187,78,0.12335620305899017],[124,187,79,0.11905527128158572],[124,188,64,0.20016680056188987],[124,188,65,0.19497080637693479],[124,188,66,0.18956229608558522],[124,188,67,0.1839548107628462],[124,188,68,0.1781977977012952],[124,188,69,0.1723583392430774],[124,188,70,0.1664999674006195],[124,188,71,0.16068087253559152],[124,188,72,0.15495270324918237],[124,188,73,0.14935956390018998],[124,188,74,0.14393721443519264],[124,188,75,0.1387124769052086],[124,188,76,0.13370285273180446],[124,188,77,0.12891635447567562],[124,188,78,0.12435155555621688],[124,188,79,0.11999786107340203],[124,189,64,0.20230811691543457],[124,189,65,0.19700170595825528],[124,189,66,0.19148981441723997],[124,189,67,0.18578322622839746],[124,189,68,0.17993153816879695],[124,189,69,0.17400381474718193],[124,189,70,0.16806474469728655],[124,189,71,0.1621729147481597],[124,189,72,0.15637973027595395],[124,189,73,0.15072852698329522],[124,189,74,0.14525387796700368],[124,189,75,0.13998110023757568],[124,189,76,0.13492596445541144],[124,189,77,0.1300946113522992],[124,189,78,0.12548367801601276],[124,189,79,0.12108063693273702],[124,190,64,0.20449272561177836],[124,190,65,0.19907876133799182],[124,190,66,0.19346738978592948],[124,190,67,0.18766713202505367],[124,190,68,0.1817276768167534],[124,190,69,0.17571964079495445],[124,190,70,0.16970846818730606],[124,190,71,0.16375277905156496],[124,190,72,0.15790341105965675],[124,190,73,0.1522026455790907],[124,190,74,0.1466836220914136],[124,190,75,0.1413699447025671],[124,190,76,0.1362754842147021],[124,190,77,0.13140437894606272],[124,190,78,0.12675123720883047],[124,190,79,0.12230154408580524],[124,191,64,0.2067147222270831],[124,191,65,0.20119588822187945],[124,191,66,0.19548864517479836],[124,191,67,0.18959976895092687],[124,191,68,0.18357899320967475],[124,191,69,0.17749805820605843],[124,191,70,0.17142277039590897],[124,191,71,0.1654114333891764],[124,191,72,0.15951400983757638],[124,191,73,0.15377146087004193],[124,191,74,0.14821526680076513],[124,191,75,0.14286713256227238],[124,191,76,0.13773888104364243],[124,191,77,0.13283253724449046],[124,191,78,0.12814060589241827],[124,191,79,0.1236465449166622],[124,192,64,0.20895619105778282],[124,192,65,0.20333472968761715],[124,192,66,0.19753466932866476],[124,192,67,0.19156155008961273],[124,192,68,0.18546512036195648],[124,192,69,0.17931784893512218],[124,192,70,0.1731855464231623],[124,192,71,0.16712588566911274],[124,192,72,0.16118768159449845],[124,192,73,0.15541034194424963],[124,192,74,0.14982349234640954],[124,192,75,0.14444677884585633],[124,192,76,0.13928985081164305],[124,192,77,0.13435252686121468],[124,192,78,0.1296251461953639],[124,192,79,0.12508910749655894],[124,193,64,0.21118541263470564],[124,193,65,0.20546284363162154],[124,193,66,0.19957219669592258],[124,193,67,0.19351823984359276],[124,193,68,0.18735073096089297],[124,193,69,0.18114254398175914],[124,193,70,0.1749592029958544],[124,193,71,0.16885749691390028],[124,193,72,0.1628848744393042],[124,193,73,0.1570790035013128],[124,193,74,0.15146749827571004],[124,193,75,0.14606781667064248],[124,193,76,0.1408873309077876],[124,193,77,0.13592357358539894],[124,193,78,0.13116466137343166],[124,193,79,0.12658989826299383],[124,194,64,0.21335497925763744],[124,194,65,0.20753179996705123],[124,194,66,0.20155170109440948],[124,194,67,0.19541905261067033],[124,194,68,0.1891836513034116],[124,194,69,0.18291856975384252],[124,194,70,0.17668885973960796],[124,194,71,0.1705502636277518],[124,194,72,0.16454872148842084],[124,194,73,0.15872003658007203],[124,194,74,0.15308970205250036],[124,194,75,0.1476728914766448],[124,194,76,0.1424746155743596],[124,194,77,0.13749004728968797],[124,194,78,0.13270501711925065],[124,194,79,0.1280966804040608],[124,195,64,0.21540049232458122],[124,195,65,0.20947589291897756],[124,195,66,0.203406137500847],[124,195,67,0.19719543363770525],[124,195,68,0.19089369147576832],[124,195,69,0.18457414217555604],[124,195,70,0.17830132489797623],[124,195,71,0.17212989465813913],[124,195,72,0.16610423915639405],[124,195,73,0.16025824836057664],[124,195,74,0.154615239420178],[124,195,75,0.14918803926606172],[124,195,76,0.1439792270243549],[124,195,77,0.13898153815269823],[124,195,78,0.13417843199474205],[124,195,79,0.1295448242453476],[124,196,64,0.21727458521125467],[124,196,65,0.211247714453629],[124,196,66,0.20508794661276172],[124,196,67,0.19879945594088239],[124,196,68,0.19243233672630414],[124,196,69,0.18606000262734826],[124,196,70,0.17974649833748912],[124,196,71,0.17354540236021684],[124,196,72,0.16749955146713286],[124,196,73,0.16164091274838513],[124,196,74,0.15599060558370148],[124,196,75,0.15055907564464682],[124,196,76,0.14534642282371021],[124,196,77,0.1403428847758102],[124,196,78,0.13552947755634967],[124,196,79,0.13087879464766797],[124,197,64,0.21897321839500458],[124,197,65,0.21284509622931597],[124,197,66,0.20659654355966645],[124,197,67,0.20023182554077312],[124,197,68,0.19380121220861496],[124,197,69,0.1873781945185244],[124,197,70,0.18102623785014282],[124,197,71,0.1747977792088597],[124,197,72,0.16873405634196578],[124,197,73,0.16286507956339097],[124,197,74,0.15720974837461496],[124,197,75,0.15177611476063865],[124,197,76,0.146561794834331],[124,197,77,0.141554530302339],[124,197,78,0.13673290103459598],[124,197,79,0.13206718983779225],[124,198,64,0.22049574062107463],[124,198,65,0.21426898889443888],[124,198,66,0.20793417312456428],[124,198,67,0.20149577877927327],[124,198,68,0.19500417228716196],[124,198,69,0.1885326947550347],[124,198,70,0.18214405143802587],[124,198,71,0.17588940374387124],[124,198,72,0.16980829898105146],[124,198,73,0.1639287380394647],[124,198,74,0.15826738286150124],[124,198,75,0.15282990536136884],[124,198,76,0.14761147925408932],[124,198,77,0.14259741606503348],[124,198,78,0.13776394640969183],[124,198,79,0.1330791474619539],[124,199,64,0.22184145828687993],[124,199,65,0.21551989393747048],[124,199,66,0.20910223301204212],[124,199,67,0.2025933165726708],[124,199,68,0.19604347151988974],[124,199,69,0.18952556366992523],[124,199,70,0.1831012816030387],[124,199,71,0.17682032441925233],[124,199,72,0.1707204270522909],[124,199,73,0.16482751871039786],[124,199,74,0.15915601608271043],[124,199,75,0.15370925275846462],[124,199,76,0.14848004611890353],[124,199,77,0.14345140278066018],[124,199,78,0.13859736349800184],[124,199,79,0.1338839882699675],[124,200,64,0.2230099448403424],[124,200,65,0.21659822694390402],[124,200,66,0.21010170737915312],[124,200,67,0.20352572435164554],[124,200,68,0.1969203862157689],[124,200,69,0.19035768197526545],[124,200,70,0.1838979695492734],[124,200,71,0.17758926060730656],[124,200,72,0.17146733546195414],[124,200,73,0.16555598614056535],[124,200,74,0.15986738906566908],[124,200,75,0.15440260859115293],[124,200,76,0.14915223246293233],[124,200,77,0.1440971401011654],[124,200,78,0.13920940443946006],[124,200,79,0.13445332790511086],[124,201,64,0.2240013279153202],[124,201,65,0.2175046619909348],[124,201,66,0.21093358630605707],[124,201,67,0.20429408448857433],[124,201,68,0.19763583690029768],[124,201,69,0.19102949886592638],[124,201,70,0.184533742498765],[124,201,71,0.1781946402433167],[124,201,72,0.17204586266725444],[124,201,73,0.16610899924875483],[124,201,74,0.1603940033899158],[124,201,75,0.15489976271316713],[124,201,76,0.14961479552856977],[124,201,77,0.14451807419778237],[124,201,78,0.13957997596869584],[124,201,79,0.13476336171328818],[124,202,64,0.22481655407726117],[124,202,65,0.21824045712886767],[124,202,66,0.21159927125462696],[124,202,67,0.2048997813859319],[124,202,68,0.19819101201442496],[124,202,69,0.19154179177574931],[124,202,70,0.1850087248161538],[124,202,71,0.1786356750172641],[124,202,72,0.1724540396598443],[124,202,73,0.16648314058363292],[124,202,74,0.16073073388420248],[124,202,75,0.15519363902326114],[124,202,76,0.14985848806935562],[124,202,77,0.1447025956336214],[124,202,78,0.1396949499234267],[124,202,79,0.13479732520537807],[124,203,64,0.22545763103023145],[124,203,65,0.2188077608801639],[124,203,66,0.21210096654999128],[124,203,67,0.20534499939239498],[124,203,68,0.19858799317251957],[124,203,69,0.19189643829528136],[124,203,70,0.18532447365591076],[124,203,71,0.17891347404745736],[124,203,72,0.17269239278849685],[124,203,73,0.16667821595991797],[124,203,74,0.16087652911008612],[124,203,75,0.15528219713288713],[124,203,76,0.14988015787364722],[124,203,77,0.1446463298757508],[124,203,78,0.13954863454922453],[124,203,79,0.13454813292144344],[124,204,64,0.22592784711291458],[124,204,65,0.21920989966708943],[124,204,66,0.2124420569045097],[124,204,67,0.20563321370342147],[124,204,68,0.19883038230199815],[124,204,69,0.19209720076516296],[124,204,70,0.1854849398595587],[124,204,71,0.17903219699438785],[124,204,72,0.17276530162295642],[124,204,73,0.1666988259087178],[124,204,74,0.16083620133970594],[124,204,75,0.1551704418307349],[124,204,76,0.14968497371371803],[124,204,77,0.14435457288485387],[124,204,78,0.13914640925651905],[124,204,79,0.13402119855115438],[124,205,64,0.2262319678862552],[124,205,65,0.21945164605729992],[124,205,66,0.21262747098612045],[124,205,67,0.20576967439062754],[124,205,68,0.1989239309810101],[124,205,69,0.1921505240602963],[124,205,70,0.18549745483951494],[124,205,71,0.17900024759120914],[124,205,72,0.17268241308850027],[124,205,73,0.16655601043293672],[124,205,74,0.1606223077829865],[124,205,75,0.15487254236150577],[124,205,76,0.14928877999259904],[124,205,77,0.1438448742978442],[124,205,78,0.13850752557211043],[124,205,79,0.13323743925965842],[124,206,64,0.22637640958985172],[124,206,65,0.219539467694092],[124,206,66,0.21266403101402082],[124,206,67,0.2057618836898835],[124,206,68,0.19887717228175972],[124,206,69,0.19206634707761472],[124,206,70,0.1853737441912039],[124,206,71,0.17883150858027877],[124,206,72,0.1724601131223568],[124,206,73,0.16626896858920914],[124,206,74,0.16025712485924726],[124,206,75,0.1544140635852806],[124,206,76,0.148720582419096],[124,206,77,0.1431497707857895],[124,206,78,0.13766807710288204],[124,206,79,0.13223646725138097],[124,207,64,0.22637071370931167],[124,207,65,0.21948348232389084],[124,207,66,0.21256274285332488],[124,207,67,0.20562205792274518],[124,207,68,0.19870387990994062],[124,207,69,0.19186037930179956],[124,207,70,0.18513184306219757],[124,207,71,0.1785467242071086],[124,207,72,0.17212221672380199],[124,207,73,0.16586491317564536],[124,207,74,0.1597715451538257],[124,207,75,0.15382980662839796],[124,207,76,0.1480192601479426],[124,207,77,0.14231232574144442],[124,207,78,0.1366753522908897],[124,207,79,0.1304939495862948],[124,208,64,0.22623061440346692],[124,208,65,0.21930143969794577],[124,208,66,0.21234314050294256],[124,208,67,0.20537122167938165],[124,208,68,0.19842626568552602],[124,208,69,0.19155574687928414],[124,208,70,0.18479555126091732],[124,208,71,0.1781701607977243],[124,208,72,0.17169328463797612],[124,208,73,0.16536856393554084],[124,208,74,0.15919035026180292],[124,208,75,0.15314455748657654],[124,208,76,0.14720958692062514],[124,208,77,0.14135732543071308],[124,208,78,0.13554329778079016],[124,208,79,0.12655360532547194],[124,209,64,0.2259723274572696],[124,209,65,0.21901122512186977],[124,209,66,0.2120244338642556],[124,209,67,0.20502948601812143],[124,209,68,0.19806490904963217],[124,209,69,0.19117310869684537],[124,209,70,0.18438526767060612],[124,209,71,0.1777216713716356],[124,209,72,0.17119239527748906],[124,209,73,0.164798055912084],[124,209,74,0.15853062518295594],[124,209,75,0.1523743077917946],[124,209,76,0.14630648135000135],[124,209,77,0.1402986987645201],[124,209,78,0.131582305878717],[124,209,79,0.12255157850432334],[124,210,64,0.22561107687737697],[124,210,65,0.21862897407071266],[124,210,66,0.21162337534119124],[124,210,67,0.2046138509186888],[124,210,68,0.197636689615275],[124,210,69,0.19072891516701063],[124,210,70,0.18391676662598827],[124,210,71,0.17721617022785174],[124,210,72,0.17063348214130214],[124,210,73,0.16416628378619605],[124,210,74,0.1578042293082188],[124,210,75,0.1515299447350903],[124,210,76,0.1451832006623454],[124,210,77,0.13645866442030574],[124,210,78,0.1275499272252114],[124,210,79,0.1184961874874471],[124,211,64,0.2251611981585866],[124,211,65,0.21816926338087708],[124,211,66,0.21115454233352193],[124,211,67,0.20413858286507172],[124,211,68,0.19715526232362018],[124,211,69,0.19023598090584884],[124,211,70,0.18340186562156688],[124,211,71,0.1766643909315042],[124,211,72,0.17002617529102165],[124,211,73,0.16348181828231695],[124,211,74,0.15701877772187542],[124,211,75,0.14978082616759622],[124,211,76,0.14118458340637058],[124,211,77,0.13239845829881108],[124,211,78,0.12345724817897713],[124,211,79,0.11439854397995053],[124,212,64,0.22463621302612952],[124,212,65,0.21764527371558565],[124,212,66,0.21063058978392954],[124,212,67,0.20361556034506145],[124,212,68,0.19663149743602037],[124,212,69,0.1897040181070032],[124,212,70,0.18284904844930178],[124,212,71,0.17607359331270964],[124,212,72,0.16937658429089034],[124,212,73,0.1625323262186463],[124,212,74,0.15426354480448123],[124,212,75,0.1457793282053067],[124,212,76,0.1371060749054965],[124,212,77,0.1282742976299524],[124,212,78,0.11931758301495463],[124,212,79,0.11027152935406252],[124,213,64,0.2240488752818378],[124,213,65,0.21706892298515318],[124,213,66,0.21006247249761203],[124,213,67,0.20305458700941165],[124,213,68,0.1960738851151948],[124,213,69,0.18914013035971694],[124,213,70,0.18226404349046701],[124,213,71,0.17483730623794863],[124,213,72,0.1668670533903022],[124,213,73,0.15867485738955475],[124,213,74,0.15027784017730392],[124,213,75,0.14169833363815396],[124,213,76,0.13296289317103208],[124,213,77,0.1241013019453476],[124,213,78,0.11514556684876122],[124,213,79,0.10612890711240985],[124,214,64,0.2227212887310646],[124,214,65,0.2158657891070522],[124,214,66,0.20888624460426336],[124,214,67,0.2017507913736664],[124,214,68,0.19442926048262482],[124,214,69,0.18690437088829778],[124,214,70,0.1791681262860566],[124,214,71,0.17122071251710477],[124,214,72,0.1630695140196371],[124,214,73,0.15472813121776216],[124,214,74,0.1462154000643838],[124,214,75,0.13755441494179976],[124,214,76,0.12877155610392468],[124,214,77,0.11989552281708671],[124,214,78,0.11095637332423104],[124,214,79,0.10198457271774143],[124,215,64,0.22083797501057692],[124,215,65,0.2136814840902289],[124,215,66,0.20641071106967168],[124,215,67,0.19899294297250977],[124,215,68,0.1914011355980626],[124,215,69,0.18362398124445548],[124,215,70,0.17565868876259105],[124,215,71,0.16750974519396708],[124,215,72,0.1591878921104253],[124,215,73,0.1507091177309798],[124,215,74,0.14209366622459552],[124,215,75,0.13336506557408287],[124,215,76,0.1245491753354322],[124,215,77,0.11567325557938712],[124,215,78,0.10676505825010527],[124,215,79,0.09785194211712955],[124,216,64,0.21885074733751803],[124,216,65,0.21139026835228356],[124,216,66,0.20382733739287096],[124,216,67,0.19612873438387535],[124,216,68,0.18827057517201987],[124,216,69,0.18024732378775032],[124,216,70,0.17206115204997582],[124,216,71,0.16372057448755623],[124,216,72,0.15523938960471176],[124,216,73,0.14663565208106139],[124,216,74,0.13793067749888513],[124,216,75,0.12914808113493828],[124,216,76,0.12031285229205851],[124,216,77,0.11145046557756602],[124,216,78,0.1025860304635259],[124,216,79,0.0937434803862818],[124,217,64,0.21676342587817024],[124,217,65,0.20899825585612175],[124,217,66,0.20114442969068952],[124,217,67,0.193168593235196],[124,217,68,0.1850500185293522],[124,217,69,0.1767886507513856],[124,217,70,0.16839130496470445],[124,217,71,0.15987018535419065],[124,217,72,0.15124179687135778],[124,217,73,0.14252590309985713],[124,217,74,0.13374453210617437],[124,217,75,0.12492103196350504],[124,217,76,0.116079177553499],[124,217,77,0.10724233016166893],[124,217,78,0.0984326512904872],[124,217,79,0.08967037201768124],[124,218,64,0.2145809362410857],[124,218,65,0.20651271895065026],[124,218,66,0.19837145684205618],[124,218,67,0.1901240557512815],[124,218,68,0.18175290130800906],[124,218,69,0.17326304860381234],[124,218,70,0.16466556770042845],[124,218,71,0.15597595988860857],[124,218,72,0.1472130454405519],[124,218,73,0.13839791280379715],[124,218,74,0.1295529311599673],[124,218,75,0.1207008281735785],[124,218,76,0.11186383465187516],[124,218,77,0.1030628977274541],[124,218,78,0.09431696406419003],[124,218,79,0.08564233447203211],[124,219,64,0.2123094241201129],[124,219,65,0.2039421149333202],[124,219,66,0.19551899421004826],[124,219,67,0.1870076315918684],[124,219,68,0.17839344689372624],[124,219,69,0.16968616507833112],[124,219,70,0.16090066647382664],[124,219,71,0.15205531406212863],[124,219,72,0.14317082318315616],[124,219,73,0.13426920764933795],[124,219,74,0.1253728043368564],[124,219,75,0.11650337820102871],[124,219,76,0.10768130953859123],[124,219,77,0.0989248651906846],[124,219,78,0.09024955525023928],[124,219,79,0.08166757670470258],[124,220,64,0.20995640197819898],[124,220,65,0.201296144505516],[124,220,66,0.19259870027294512],[124,220,67,0.18383270365779447],[124,220,68,0.1749864959551477],[124,220,69,0.1660739786390983],[124,220,70,0.1571133562250072],[124,220,71,0.14812538944048487],[124,220,72,0.13913225267831114],[124,220,73,0.13015648240162178],[124,220,74,0.12122001869401809],[124,220,75,0.11234334200806449],[124,220,76,0.10354470702134917],[124,220,77,0.09483947536135313],[124,220,78,0.08623954881221732],[124,220,79,0.07775290446675048],[124,221,64,0.20753092827483618],[124,221,65,0.198585842591226],[124,221,66,0.18962332662323161],[124,221,67,0.18061346333159614],[124,221,68,0.17154737457042046],[124,221,69,0.16244261091997975],[124,221,70,0.15332019197520136],[124,221,71,0.1442028005710868],[124,221,72,0.13511363356567316],[124,221,73,0.12607535753716603],[124,221,74,0.1171091716964213],[124,221,75,0.10823398015753351],[124,221,76,0.09946567554630568],[124,221,77,0.09081653576043464],[124,221,78,0.08229473553001376],[124,221,79,0.07390397426120639],[124,222,64,0.20504381974505392],[124,222,65,0.1958237019996401],[124,222,66,0.1866067618091767],[124,222,67,0.1773648816398142],[124,222,68,0.16809180146385558],[124,222,69,0.1588081827063979],[124,222,70,0.14953734948426775],[124,222,71,0.14030343877507984],[124,222,72,0.13113024972977375],[124,222,73,0.12204021115757133],[124,222,74,0.11305346957510647],[124,222,75,0.10418710003493103],[124,222,76,0.09545444176799162],[124,222,77,0.08686456049183],[124,222,78,0.07842183905505612],[124,222,79,0.07012569790797274],[124,223,64,0.20250789723907323],[124,223,65,0.19302383041941093],[124,223,66,0.1835641095067035],[124,223,67,0.1741027168436275],[124,223,68,0.16463583489695924],[124,223,69,0.15518671406234727],[124,223,70,0.1457804958886497],[124,223,71,0.1364423331233573],[124,223,72,0.12719624221290196],[124,223,73,0.11806408644459877],[124,223,74,0.10906469219498516],[124,223,75,0.10021310055577985],[124,223,76,0.09151995641164548],[124,223,77,0.08299103684537629],[124,223,78,0.07462692055010793],[124,223,79,0.06642279973373326],[124,224,64,0.19993826562852007],[124,224,65,0.19020214123560186],[124,224,66,0.1805118015190963],[124,224,67,0.17084355898089504],[124,224,68,0.16119585978124717],[124,224,69,0.15159406923428043],[124,224,70,0.14206471103591903],[124,224,71,0.13263356941654764],[124,224,72,0.12332454879836968],[124,224,73,0.1141586757361581],[124,224,74,0.10515324566255307],[124,224,75,0.09632111674973826],[124,224,76,0.08767015298704509],[124,224,77,0.07920281836093833],[124,224,78,0.07091592381418138],[124,224,79,0.06280052845394377],[124,225,64,0.19735262827716213],[124,225,65,0.18737657865961768],[124,225,66,0.1774677461083714],[124,225,67,0.16760491189596752],[124,225,68,0.15778861560040058],[124,225,69,0.14804594699017137],[124,225,70,0.13840446026446723],[124,225,71,0.12889026802637113],[124,225,72,0.11952691124736704],[124,225,73,0.11033438234693375],[124,225,74,0.10132830394975496],[124,225,75,0.0925192656590828],[124,225,76,0.08391232095841263],[124,225,77,0.07550664612712686],[124,225,78,0.06729536283355704],[124,225,79,0.059265525850352156],[124,226,64,0.19477163656080143],[124,226,65,0.1845673776570155],[124,226,66,0.17445151216435847],[124,226,67,0.16440531330327698],[124,226,68,0.15443126574609514],[124,226,69,0.14455791707533935],[124,226,70,0.13481361940579453],[124,226,71,0.1252246214891971],[124,226,72,0.1158139512092972],[124,226,73,0.10660046129594732],[124,226,74,0.09759804084925915],[124,226,75,0.08881499502720408],[124,226,76,0.08025359501053406],[124,226,77,0.07190980011994505],[124,226,78,0.0637731537266143],[124,226,79,0.055826854368019915],[124,227,64,0.1922227499564543],[124,227,65,0.18180157986428785],[124,227,66,0.1714894715854503],[124,227,67,0.16127010023330224],[124,227,68,0.15114777350004457],[124,227,69,0.1411523564188225],[124,227,70,0.13131288501828176],[124,227,71,0.121655660053337],[124,227,72,0.11220314389446531],[124,227,73,0.10297303005340616],[124,227,74,0.09397748795306145],[124,227,75,0.08522258529894983],[124,227,76,0.0767078901578292],[124,227,77,0.06842625459858258],[124,227,78,0.06036378150591652],[124,227,79,0.0524999759383618],[124,228,64,0.18975044738801786],[124,228,65,0.17912620389846876],[124,228,66,0.16863076245944758],[124,228,67,0.15825011240922063],[124,228,68,0.1479902488794437],[124,228,69,0.13788217283803403],[124,228,70,0.127955450352663],[124,228,71,0.11823631520493795],[124,228,72,0.10874658467791073],[124,228,73,0.09950275626614437],[124,228,74,0.09051528791507805],[124,228,75,0.08178806413475936],[124,228,76,0.07331805007056248],[124,228,77,0.06509513535292123],[124,228,78,0.057102169294264725],[124,228,79,0.049315188753867575],[124,229,64,0.187396531114866],[124,229,65,0.17658606562810664],[124,229,66,0.16592278277090722],[124,229,67,0.15539492508497893],[124,229,68,0.14501001981587333],[124,229,69,0.13479995028707348],[124,229,70,0.12479458962839642],[124,229,71,0.11501992440429083],[124,229,72,0.10549699688402835],[124,229,73,0.09624103487305359],[124,229,74,0.08726077168675109],[124,229,75,0.07855795857728463],[124,229,76,0.07012707165326015],[124,229,77,0.06195521506355948],[124,229,78,0.05402222195573981],[124,229,79,0.046300954465608626],[124,230,64,0.1851938799158823],[124,230,65,0.17421638046221585],[124,230,66,0.16340271842213908],[124,230,67,0.1527433401006746],[124,230,68,0.14224713928981744],[124,230,69,0.1319465859475625],[124,230,70,0.12187159592861332],[124,230,71,0.11204769141204286],[124,230,72,0.10249497971900531],[124,230,73,0.09322732427554307],[124,230,74,0.08425171024719197],[124,230,75,0.07556780709540104],[124,230,76,0.06716773002933467],[124,230,77,0.05903600205320377],[124,230,78,0.05114971804399607],[124,230,79,0.04347891203702288],[124,231,64,0.18316702433667684],[124,231,65,0.1720433309298399],[124,231,66,0.16109811254952286],[124,231,67,0.15032397051679214],[124,231,68,0.13973099851074214],[124,231,69,0.12935194151807222],[124,231,70,0.11921647653507099],[124,231,71,0.10934942812756984],[124,231,72,0.09976979577739832],[124,231,73,0.09048997560392977],[124,231,74,0.0815151789008714],[124,231,75,0.0728430496490392],[124,231,76,0.06446348288715478],[124,231,77,0.05635864554755365],[124,231,78,0.048503201097259835],[124,231,79,0.04086473906685733],[124,232,64,0.18133270409362257],[124,232,65,0.1700846176454916],[124,232,66,0.1590274205746368],[124,232,67,0.14815581449234502],[124,232,68,0.1374809342082274],[124,232,69,0.12703549510751574],[124,232,70,0.11684865716037347],[124,232,71,0.1069443155046698],[124,232,72,0.0973401896995091],[124,232,73,0.08804710703704961],[124,232,74,0.07906848223292337],[124,232,75,0.07039999553706339],[124,232,76,0.062029471029391395],[124,232,77,0.05393695659150103],[124,232,78,0.04609500678135511],[124,232,79,0.03846916958277393],[124,233,64,0.17970040568347367],[124,233,65,0.16834999138740622],[124,233,66,0.1572005484301082],[124,233,67,0.1462488155804738],[124,233,68,0.13550682696965038],[124,233,69,0.12500699048239636],[124,233,70,0.11477769171529698],[124,233,71,0.1048416801614663],[124,233,72,0.09521523468046597],[124,233,73,0.08590752007519359],[124,233,74,0.07692013694299597],[124,233,75,0.0682468666944352],[124,233,76,0.05987361336089594],[124,233,77,0.05177854354444816],[124,233,78,0.04393242560517502],[124,233,79,0.03629916893223814],[124,234,64,0.17827288022882276],[124,234,65,0.16684176637838907],[124,234,66,0.15561937412064605],[124,234,67,0.14460440968354574],[124,234,68,0.1338096909612891],[124,234,69,0.12326708411580549],[124,234,70,0.11300397818771504],[124,234,71,0.10304178740712243],[124,234,72,0.09339520771600182],[124,234,73,0.08407165882785507],[124,234,74,0.07507091380687496],[124,234,75,0.0663849178834638],[124,234,76,0.05799779795963532],[124,234,77,0.04988606399926546],[124,234,78,0.042019003249529736],[124,234,79,0.03435926800069098],[124,235,64,0.1770466415643788],[124,235,65,0.16555531483805344],[124,235,66,0.15427825276156257],[124,235,67,0.14321605889273664],[124,235,68,0.13238225535188514],[124,235,69,0.12180799046596218],[124,235,70,0.11151948118596945],[124,235,71,0.10153665137975873],[124,235,72,0.09187249443637978],[124,235,73,0.0825326133383938],[124,235,74,0.0735149399695811],[124,235,75,0.06480963517224402],[124,235,76,0.05639917081746872],[124,235,77,0.048258594905990215],[124,235,78,0.040355980481715896],[124,235,79,0.03265305891396141],[124,236,64,0.17601244454340242],[124,236,65,0.16447954285378902],[124,236,66,0.15316450521814534],[124,236,67,0.14206977241848753],[124,236,68,0.13120953773738955],[124,236,69,0.12061412588810592],[124,236,70,0.11030846167023894],[124,236,71,0.10031086295399744],[124,236,72,0.09063252433619565],[124,236,73,0.08127716791542978],[124,236,74,0.07224086271228722],[124,236,75,0.06351201402270124],[124,236,76,0.055071523757603484],[124,236,77,0.04689312259243924],[124,236,78,0.03894387453082317],[124,236,79,0.031184854276915253],[124,237,64,0.1751557108654184],[124,237,65,0.16359731470664457],[124,237,66,0.15225885734630548],[124,237,67,0.14114458150575734],[124,237,68,0.13026937638715388],[124,237,69,0.11966271796429048],[124,237,70,0.10934818066208757],[124,237,71,0.09934240225724127],[124,237,72,0.08965470333208374],[124,237,73,0.08028686153967866],[124,237,74,0.07123304194111629],[124,237,75,0.0624798844566903],[124,237,76,0.05400674925649151],[124,237,77,0.04578612070542219],[124,237,78,0.03778417027750639],[124,237,79,0.02996147866376741],[124,238,64,0.17444999794329782],[124,238,65,0.16287887029085554],[124,238,66,0.1515288285539988],[124,238,67,0.14040592641591945],[124,238,68,0.129525844345816],[124,238,69,0.11891727412104897],[124,238,70,0.10860244779606294],[124,238,71,0.0985962900672254],[124,238,72,0.08890618798299116],[124,238,73,0.07953190161740671],[124,238,74,0.07046561668351473],[124,238,75,0.061692139864783085],[124,238,76,0.05318923744775233],[124,238,77,0.04492811765001312],[124,238,78,0.03687405685901482],[124,238,79,0.028987169828020944],[124,239,64,0.1738413418032947],[124,239,65,0.16226706973586882],[124,239,66,0.15091476708884793],[124,239,67,0.1397923596132947],[124,239,68,0.12891648981545092],[124,239,69,0.11831522424099239],[124,239,70,0.1080095319039368],[124,239,71,0.0980126373794609],[124,239,72,0.08832995440828294],[124,239,73,0.07895914558141684],[124,239,74,0.06989030878238829],[124,239,75,0.061106290888117],[124,239,76,0.05258312905769097],[124,239,77,0.04429061977235609],[124,239,78,0.036193015634703486],[124,239,79,0.02824984978899706],[124,240,64,0.17324634276013345],[124,240,65,0.16167851574435235],[124,240,66,0.15033350262186962],[124,240,67,0.1392211603206832],[124,240,68,0.12835930490084713],[124,240,69,0.11777561727542235],[124,240,70,0.10748996145076713],[124,240,71,0.09751394699861154],[124,240,72,0.08785103699990744],[124,240,73,0.07849676666125137],[124,240,74,0.06943907297323328],[124,240,75,0.060658735627706725],[124,240,76,0.05212992926293647],[124,240,77,0.04382088696388145],[124,240,78,0.03569467481382162],[124,240,79,0.02771007717167602],[124,241,64,0.17259071607856674],[124,241,65,0.16103929227251398],[124,241,66,0.14971151393941587],[124,241,67,0.13861919818040233],[124,241,68,0.12778156292296378],[124,241,69,0.1172262070614293],[124,241,70,0.10697212018158209],[124,241,71,0.09702945767445177],[124,241,72,0.08739982938221184],[124,241,73,0.07807668345871613],[124,241,74,0.06904578550524694],[124,241,75,0.060285792913481406],[124,241,76,0.051768924223865725],[124,241,77,0.043461723190395075],[124,241,78,0.035325917136367374],[124,241,79,0.027319369088341126],[124,242,64,0.17181727465424046],[124,242,65,0.16029205598312685],[124,242,66,0.14899125740951832],[124,242,67,0.13792864349828984],[124,242,68,0.12712506378004798],[124,242,69,0.11660838737733578],[124,242,70,0.10639702207976834],[124,242,71,0.09649989987028582],[124,242,72,0.08691694830967872],[124,242,73,0.07763964206577252],[124,242,74,0.06865163434493288],[124,242,75,0.05992946787838376],[124,242,76,0.05144336501584407],[124,242,77,0.04315809638593089],[124,242,78,0.03503392750061845],[124,242,79,0.0270276426079133],[124,243,64,0.17088396758139301],[124,243,65,0.15939415462635512],[124,243,66,0.14812938160223127],[124,243,67,0.1371052981197854],[124,243,68,0.12634460285500262],[124,243,69,0.11587582055011506],[124,243,70,0.10571712035044929],[124,243,71,0.09587650406089232],[124,243,72,0.08635245785401183],[124,243,73,0.07713466983964615],[124,243,74,0.06820481296313707],[124,243,75,0.05953739261654754],[124,243,76,0.05110065827005174],[124,243,77,0.04285757836074355],[124,243,78,0.03476687761723853],[124,243,79,0.026784135948585332],[124,244,64,0.1697620297241365],[124,244,65,0.15831585505918025],[124,244,66,0.1470950489452054],[124,244,67,0.13611702923369495],[124,244,68,0.12540653731838314],[124,244,69,0.11499315679946927],[124,244,70,0.104895199639262],[124,244,71,0.09512008418933965],[124,244,72,0.08566516034780917],[124,244,73,0.07651858743847444],[124,244,74,0.06766026400703219],[124,244,75,0.05906280866734809],[124,244,76,0.050692591074923785],[124,244,77,0.04251081205625301],[124,244,78,0.03447463188561714],[124,244,79,0.026538345672736316],[124,245,64,0.16843424410471877],[124,245,65,0.15703868264580484],[124,245,66,0.14586836606414313],[124,245,67,0.1349423076346901],[124,245,68,0.12428745121619791],[124,245,69,0.11393484554936696],[124,245,70,0.10390335254898159],[124,245,71,0.09420019717277761],[124,245,72,0.08482195480410765],[124,245,73,0.07575557967238758],[124,245,74,0.06697947325830624],[124,245,75,0.058464591587372175],[124,245,76,0.0501755902784977],[124,245,77,0.042072006185330094],[124,245,78,0.0341094744504972],[124,245,79,0.026240979784461035],[124,246,64,0.16689331904836935],[124,246,65,0.155553873898556],[124,246,66,0.14443892456479684],[124,246,67,0.13356885207113242],[124,246,68,0.12297292081418465],[124,246,69,0.11268404000568258],[124,246,70,0.10272204156797514],[124,246,71,0.09309437938108311],[124,246,72,0.08379726354580538],[124,246,73,0.0748168257195939],[124,246,74,0.06613031425275746],[124,246,75,0.05770731782524327],[124,246,76,0.04951101626385699],[124,246,77,0.04149945720761686],[124,246,78,0.033626857288418084],[124,246,79,0.025844926502836034],[124,247,64,0.16514038213912546],[124,247,65,0.15386094432445893],[124,247,66,0.14280445410874484],[124,247,67,0.13199238138913968],[124,247,68,0.12145638174191264],[124,247,69,0.11123159635598269],[124,247,70,0.10133924756601033],[124,247,71,0.09178746103633374],[124,247,72,0.08257252778424197],[124,247,73,0.07368018924235206],[124,247,74,0.06508694390101162],[124,247,75,0.056761374057459665],[124,247,76,0.04866549119163224],[124,247,77,0.04075609849013642],[124,247,78,0.03298616905346365],[124,247,79,0.025306238344324515],[124,248,64,0.163183593141694],[124,248,65,0.1519663735341424],[124,248,66,0.14096958971672618],[124,248,67,0.13021547625445665],[124,248,68,0.11973809953852287],[124,248,69,0.10957516899229937],[124,248,70,0.09974970604239079],[124,248,71,0.09027095949359243],[124,248,72,0.08113577288029131],[124,248,73,0.07232996891206049],[124,248,74,0.06382974940368225],[124,248,75,0.05560310907556804],[124,248,76,0.047611261613916],[124,248,77,0.03981007639210595],[124,248,78,0.03215152427911738],[124,248,79,0.02458513099446769],[124,249,64,0.16103687812929712],[124,249,65,0.149882409745411],[124,249,66,0.13894475529921202],[124,249,67,0.12824655228907722],[124,249,68,0.11782424524572786],[124,249,69,0.10771840318848977],[124,249,70,0.09795423232752659],[124,249,71,0.08854255236330652],[124,249,72,0.07948124400323006],[124,249,73,0.0707567098152515],[124,249,74,0.06234534669631221],[124,249,75,0.05421502823557427],[124,249,76,0.046326595262536116],[124,249,77,0.03863535288926205],[124,249,78,0.031092572387426243],[124,249,79,0.023646996281969878],[124,250,64,0.15871878712439727],[124,250,65,0.14762599587157588],[124,250,66,0.13674516546209028],[124,250,67,0.12609894649774173],[124,250,68,0.11572607772095668],[124,250,69,0.10567022667886401],[124,250,70,0.0959591369403095],[124,250,71,0.08660563142137402],[124,250,72,0.0776091128711554],[124,250,73,0.06895707616197667],[124,250,74,0.06062663058892682],[124,250,75,0.052586030388680025],[124,250,76,0.04479621170072791],[124,250,77,0.037212334216608065],[124,250,78,0.02978532579771718],[124,250,79,0.022463428387087925],[124,251,64,0.15625147760484265],[124,251,65,0.1452178194211021],[124,251,66,0.1343899476625387],[124,251,67,0.12379011887719134],[124,251,68,0.11345923435124407],[124,251,69,0.10344424158120387],[124,251,70,0.09377573228732104],[124,251,71,0.08446893822202452],[124,251,72,0.0755252562094801],[124,251,73,0.06693378565272029],[124,251,74,0.05867287668000608],[124,251,75,0.05071168710640242],[124,251,76,0.04301174639917232],[124,251,77,0.035528524857676574],[124,251,78,0.028213006253262094],[124,251,79,0.021013262219431963],[124,252,64,0.15365982625123784],[124,252,65,0.14268148844929412],[124,252,66,0.1319013867953915],[124,252,67,0.12134097109750672],[124,252,68,0.11104313183576041],[124,252,69,0.10105821808446082],[124,252,70,0.09141993185541422],[124,252,71,0.08214628228077143],[124,252,72,0.07324110650079786],[124,252,73,0.06469560577950971],[124,252,74,0.056489895025207654],[124,252,75,0.048594563893062166],[124,252,76,0.040972247655428846],[124,252,77,0.0335792060436495],[124,252,78,0.026366908296108812],[124,252,79,0.019283622688485484],[124,253,64,0.1509706713081671],[124,253,65,0.1400428357905433],[124,253,66,0.12930429426956952],[124,253,67,0.11877528411612112],[124,253,68,0.10850047866811022],[124,253,69,0.09853369127575734],[124,253,70,0.08891194299325507],[124,253,71,0.07965634262663229],[124,253,72,0.07077357551727313],[124,253,73,0.06225741223861328],[124,253,74,0.05409023542473801],[124,253,75,0.04624458294225116],[124,253,76,0.0386847056178744],[124,253,77,0.03136813774496314],[124,253,78,0.024247278615914178],[124,253,79,0.01727098336157674],[124,254,64,0.1482121879003786],[124,254,65,0.13732935375925914],[124,254,66,0.12662550358567426],[124,254,67,0.1161192765294818],[124,254,68,0.10585690088705575],[124,254,69,0.09589566241139845],[124,254,70,0.08627605429871092],[124,254,71,0.07702255343355281],[124,254,72,0.06814505102477447],[124,254,73,0.059640309515381414],[124,254,74,0.051493444059359746],[124,254,75,0.04367942684076879],[124,254,76,0.03616461250110116],[124,254,77,0.028908282941254693],[124,254,78,0.021864209777980516],[124,254,79,0.014982232758717445],[124,255,64,0.14541339858225438],[124,255,65,0.13456976143609498],[124,255,66,0.12389349434679126],[124,255,67,0.11340128538211221],[124,255,68,0.10314068257363465],[124,255,69,0.09317240584003265],[124,255,70,0.08354051852535145],[124,255,71,0.0742730743284803],[124,255,72,0.06538346692445374],[124,255,73,0.056871813564869256],[124,255,74,0.048726371052226276],[124,255,75,0.040924982452534495],[124,255,76,0.0334365528883408],[124,255,77,0.026222552741803393],[124,255,78,0.019238546598127695],[124,255,79,0.012435746271066824],[124,256,64,0.14260382130123933],[124,256,65,0.13179370654989017],[124,256,66,0.12113814652142355],[124,256,67,0.11065157103461923],[124,256,68,0.10038262245044599],[124,256,69,0.09039538265984161],[124,256,70,0.08073753178990603],[124,256,71,0.07144084583520552],[124,256,72,0.06252244694997308],[124,256,73,0.05398609635264252],[124,256,74,0.04582352836013208],[124,256,75,0.03801582402431394],[124,256,76,0.03053482280625893],[124,256,77,0.02334457069657843],[124,256,78,0.016402803176180827],[124,256,79,0.009662461408554696],[124,257,64,0.1398132562415922],[124,257,65,0.12903160285846177],[124,257,66,0.11839062534348108],[124,257,67,0.10790224600389058],[124,257,68,0.09761600609823357],[124,257,69,0.08759926034159214],[124,257,70,0.07790330817720015],[124,257,71,0.06856372908785546],[124,257,72,0.05960152128079827],[124,257,73,0.051024292040566036],[124,257,74,0.042827498402365584],[124,257,75,0.03499573673809549],[124,257,76,0.02750407979466073],[124,257,77,0.020319459681218253],[124,257,78,0.013402095272230834],[124,257,79,0.006706962474328311],[124,258,64,0.13707252425526248],[124,258,65,0.12631538370038733],[124,258,66,0.11568414625611735],[124,258,67,0.10518804582657654],[124,258,68,0.09487737514717734],[124,258,69,0.08482267111518765],[124,258,70,0.07507881774726147],[124,258,71,0.06568521435928147],[124,258,72,0.05666679770406136],[124,258,73,0.04803512467222466],[124,258,74,0.03978951434682268],[124,258,75,0.0319182481264506],[124,258,76,0.024399826563503035],[124,258,77,0.01720428150543112],[124,258,78,0.010294542081283465],[124,258,79,0.0036278530411651064],[124,259,64,0.1344294781853188],[124,259,65,0.12369377183407644],[124,259,66,0.11306851385493955],[124,259,67,0.10256012707443159],[124,259,68,0.09221945872361151],[124,259,69,0.08212000915036402],[124,259,70,0.07232008775613107],[124,259,71,0.06286281352389676],[124,259,72,0.05377701785952081],[124,259,73,0.045078216428191105],[124,259,74,0.03676964891481682],[124,259,75,0.028843385546519874],[124,259,76,0.0212814991321428],[124,259,77,0.014057301299601348],[124,259,78,0.0071366415509279465],[124,259,79,4.7926770479423536E-4],[124,260,64,0.13193936566119416],[124,260,65,0.12122228833739118],[124,260,66,0.11059977218622072],[124,260,67,0.10007535155762205],[124,260,68,0.08970008822072646],[124,260,69,0.0795499836307414],[124,260,70,0.06968641318748373],[124,260,71,0.06015595836009089],[124,260,72,0.05099118412187169],[124,260,73,0.04221149337726885],[124,260,74,0.033824057452863966],[124,260,75,0.025824821619319555],[124,260,76,0.018199584513208786],[124,260,77,0.010925150238666768],[124,260,78,0.003970551852718071],[124,260,79,-0.0027016551271054137],[124,261,64,0.12964272598452659],[124,261,65,0.11894171220882527],[124,261,66,0.10831920230999492],[124,261,67,0.09777581384507596],[124,261,68,0.08736236786646244],[124,261,69,0.07715669994232624],[124,261,70,0.0672227219003689],[124,261,71,0.057610084841062364],[124,261,72,0.04835482241905642],[124,261,73,0.03948007870950887],[124,261,74,0.030996919882954985],[124,261,75,0.022905228793335074],[124,261,76,0.015194681471534823],[124,261,77,0.007845804413118662],[124,261,78,8.311114579761638E-4],[124,261,79,-0.005883681020680025],[124,262,64,0.1275654849786201],[124,262,65,0.11687822097673911],[124,262,66,0.10625349668655108],[124,262,67,0.0956890359831457],[124,262,68,0.08523487987484545],[124,262,69,0.07496987105885677],[124,262,70,0.06495979245744432],[124,262,71,0.05525686083359239],[124,262,72,0.04590022542728475],[124,262,73,0.036916558387752756],[124,262,74,0.02832073638816448],[124,262,75,0.020116612676675114],[124,262,76,0.012297878691463855],[124,262,77,0.0048490142493110965],[124,262,78,-0.0022536747884382216],[124,262,79,-0.009040932563944542],[124,263,64,0.1257202313037761],[124,263,65,0.11504468067921611],[124,263,66,0.10441604958161796],[124,263,67,0.09382924266939237],[124,263,68,0.08333292646930222],[124,263,69,0.07300600690493768],[124,263,70,0.06291537084465226],[124,263,71,0.053115210696823775],[124,263,72,0.04364736691268859],[124,263,73,0.03454176913375062],[124,263,74,0.025816975545941673],[124,263,75,0.017480809856951263],[124,263,76,0.009531095173116455],[124,263,77,0.001956483919975368],[124,263,78,-0.00526261716973911],[124,263,79,-0.012153028087144387],[124,264,64,0.1241077242644063],[124,264,65,0.1134421645025901],[124,264,66,0.10280847128890769],[124,264,67,0.09219885333179255],[124,264,68,0.08165997966715782],[124,264,69,0.07126979990595819],[124,264,70,0.061095469288765816],[124,264,71,0.05119250539589479],[124,264,72,0.04160496262366248],[124,264,73,0.03236571181302725],[124,264,74,0.02349682478223561],[124,264,75,0.015010063356486228],[124,264,76,0.00690747233410488],[124,264,77,-8.17924317590684E-4],[124,264,78,-0.008181324878450424],[124,264,79,-0.015205249870622491],[124,265,64,0.12271863250847713],[124,265,65,0.11206169941348383],[124,265,66,0.10142232544037094],[124,265,67,0.09079019032342187],[124,265,68,0.08020933798310176],[124,265,69,0.06975570584203154],[124,265,70,0.05949584626396892],[124,265,71,0.04948591721185025],[124,265,72,0.03977167682296895],[124,265,73,0.03038858933294657],[124,265,74,0.021362042303701277],[124,265,75,0.012707674939415664],[124,265,76,0.004431817107737064],[124,265,77,-0.0034679614767764455],[124,265,78,-0.010861866792161263],[124,265,79,-0.011863492403146228],[124,266,64,0.12153550280756692],[124,266,65,0.1108862399163196],[124,266,66,0.10024108848307142],[124,266,67,0.0895874022645367],[124,266,68,0.07896598904627218],[124,266,69,0.06844971897665539],[124,266,70,0.05810366665010941],[124,266,71,0.04798393801993139],[124,266,72,0.03813747345947524],[124,266,73,0.02860196809996309],[124,266,74,0.019405909617826178],[124,266,75,0.01056873346093974],[124,266,76,0.002101095323256464],[124,266,77,-7.663741965471924E-4],[124,266,78,-0.0021011440502999353],[124,266,79,-0.003355996305863229],[124,267,64,0.1205349579061006],[124,267,65,0.10989286787792799],[124,267,66,0.09924233022251115],[124,267,67,0.08856860139782646],[124,267,68,0.07790867697394453],[124,267,69,0.06733134029502698],[124,267,70,0.05689934088662339],[124,267,71,0.04666806000781926],[124,267,72,0.036685110897715464],[124,267,73,0.026990062019664605],[124,267,74,0.017614283707885356],[124,267,75,0.012064020826969404],[124,267,76,0.010263745014313735],[124,267,77,0.008555974501208501],[124,267,78,0.006938981000751493],[124,267,79,0.005404214438797259],[124,268,64,0.11969012224220577],[124,268,65,0.10905521718409683],[124,268,66,0.09840011416651828],[124,268,67,0.08770821366949966],[124,268,68,0.07701217320565375],[124,268,69,0.06637573756296755],[124,268,70,0.05585854185837124],[124,268,71,0.045514617614683034],[124,268,72,0.03539177905031984],[124,268,73,0.026614256261681006],[124,268,74,0.024401399179494136],[124,268,75,0.02224222548571913],[124,268,76,0.02015427037234864],[124,268,77,0.018148016479918323],[124,268,78,0.016227057246517584],[124,268,79,0.014388388466256802],[124,269,64,0.1189732741701353],[124,269,65,0.10834612182970552],[124,269,66,0.09768761625147769],[124,269,67,0.08697954010873749],[124,269,68,0.076249749374861],[124,269,69,0.06555609580515728],[124,269,70,0.05495439815268556],[124,269,71,0.04449678939087558],[124,269,72,0.04007655814668357],[124,269,73,0.03759923256910352],[124,269,74,0.03512473541502419],[124,269,75,0.03268123972221382],[124,269,76,0.030290683853164625],[124,269,77,0.02796861094780038],[124,269,78,0.02572414369534206],[124,269,79,0.023560094269435724],[124,270,64,0.11835872315500302],[124,270,65,0.10774048589410169],[124,270,66,0.09707996039331511],[124,270,67,0.08635752795050672],[124,270,68,0.07559585068055723],[124,270,69,0.06484615670035],[124,270,70,0.056750167073569495],[124,270,71,0.05419506930251196],[124,270,72,0.051537100650792485],[124,270,73,0.04881692157415291],[124,270,74,0.046071054146211696],[124,270,75,0.0433312313122802],[124,270,76,0.040623887696267985],[124,270,77,0.03796979245031211],[124,270,78,0.035383824411616235],[124,270,79,0.032874889612239666],[124,271,64,0.11779749306095122],[124,271,65,0.10720295238577232],[124,271,66,0.0965421170971967],[124,271,67,0.08580714053527971],[124,271,68,0.07501518368176396],[124,271,69,0.07135091449650519],[124,271,70,0.06879251599847688],[124,271,71,0.06605426462262748],[124,271,72,0.06317939679337423],[124,271,73,0.06020949991296787],[124,271,74,0.05718348288871783],[124,271,75,0.05413669410943548],[124,271,76,0.051100187853491526],[124,271,77,0.04810013986537658],[124,271,78,0.045157412595896236],[124,271,79,0.042287270364829856],[124,272,64,0.11226921454117611],[124,272,65,0.10664505750967115],[124,272,66,0.09598676695118205],[124,272,67,0.08824297360084192],[124,272,68,0.08608301780692634],[124,272,69,0.08363132361085931],[124,272,70,0.08092548777779675],[124,272,71,0.07800622362471588],[124,272,72,0.07491578310363509],[124,272,73,0.07169652994605387],[124,272,74,0.06838966564685123],[124,272,75,0.06503410980366532],[124,272,76,0.06166553606498066],[124,272,77,0.058315564678387555],[124,272,78,0.055011112371447075],[124,272,79,0.05177390004308249],[124,273,64,0.10706084067384952],[124,273,65,0.10053733473438868],[124,273,66,0.09840174120633015],[124,273,67,0.09810740457157494],[124,273,68,0.09785082684342634],[124,273,69,0.09589151979906099],[124,273,70,0.09304575757488515],[124,273,71,0.08995347641152515],[124,273,72,0.08665571970679574],[124,273,73,0.08319542324840908],[124,273,74,0.07961589604503347],[124,273,75,0.07595946261196382],[124,273,76,0.07226626823622687],[124,273,77,0.06857324846757776],[124,273,78,0.06491326380520564],[124,273,79,0.06131440027692378],[124,274,64,0.10219315349641322],[124,274,65,0.1001062747331316],[124,274,66,0.09856804397190477],[124,274,67,0.09755987102882557],[124,274,68,0.09705283588745922],[124,274,69,0.09700756516562892],[124,274,70,0.09737436661751853],[124,274,71,0.09809635326573651],[124,274,72,0.09831446692333205],[124,274,73,0.09462816538963494],[124,274,74,0.09079174955736809],[124,274,75,0.08685068060326553],[124,274,76,0.08284930119349028],[124,274,77,0.07882958718326283],[124,274,78,0.07483007244439334],[124,274,79,0.07088494773036158],[124,275,64,0.09768623043402191],[124,275,65,0.09566536017198524],[124,275,66,0.09423044091893662],[124,275,67,0.09336123737312008],[124,275,68,0.09302619010028262],[124,275,69,0.09318220770239227],[124,275,70,0.09377471662225834],[124,275,71,0.09474072377814968],[124,275,72,0.09600847036083249],[124,275,73,0.0974920481389932],[124,275,74,0.09907808740640378],[124,275,75,0.09764822958552277],[124,275,76,0.09336275004114039],[124,275,77,0.08904082424234044],[124,275,78,0.08472625047278218],[124,275,79,0.08045891590981302],[124,276,64,0.09355904443978447],[124,276,65,0.09160127799610118],[124,276,66,0.0902656345524992],[124,276,67,0.08953033817439543],[124,276,68,0.0893613177102367],[124,276,69,0.08971191382546623],[124,276,70,0.09052284297988766],[124,276,71,0.09172519694689535],[124,276,72,0.09324000250960152],[124,276,73,0.09497337596631794],[124,276,74,0.09680873057622008],[124,276,75,0.09863857371413404],[124,276,76,0.10037911049967141],[124,276,77,0.09916369775267685],[124,276,78,0.09456566869960294],[124,276,79,0.09000752414463563],[124,277,64,0.08982910360287993],[124,277,65,0.08793136513340089],[124,277,66,0.0866905771054528],[124,277,67,0.08608353819889131],[124,277,68,0.08607380918247914],[124,277,69,0.08661133424085327],[124,277,70,0.08763231824870832],[124,277,71,0.08906216182862109],[124,277,72,0.09081492551401998],[124,277,73,0.09278899968247839],[124,277,74,0.09486465383713538],[124,277,75,0.09693370513187483],[124,277,76,0.09891120928850838],[124,277,77,0.10073405640103206],[124,277,78,0.10235968264249728],[124,277,79,0.09950049317234176],[124,278,64,0.0865121302245716],[124,278,65,0.08467122559165374],[124,278,66,0.08352055327939006],[124,278,67,0.08303561124775305],[124,278,68,0.08317775016928441],[124,278,69,0.08389370875545415],[124,278,70,0.0851154037233236],[124,278,71,0.08676279934051695],[124,278,72,0.08874327487102729],[124,278,73,0.09094778488599381],[124,278,74,0.09325355130581098],[124,278,75,0.09555169448464784],[124,278,76,0.09775612140816925],[124,278,77,0.09980216033915829],[124,278,78,0.10164533166770123],[124,278,79,0.1032603235436449],[124,279,64,0.08362177936196324],[124,279,65,0.08183444301356313],[124,279,66,0.08076888761109224],[124,279,67,0.08039944316262215],[124,279,68,0.08068542098662729],[124,279,69,0.0815705630335648],[124,279,70,0.0829827442264161],[124,279,71,0.0848367757548637],[124,279,72,0.08703367488862551],[124,279,73,0.08945728854056528],[124,279,74,0.09198190911154935],[124,279,75,0.09449796593927734],[124,279,76,0.09691823093528407],[124,279,77,0.09917648681029939],[124,279,78,0.10122635031218546],[124,279,79,0.10304029117399327],[124,280,64,0.08116939683968649],[124,280,65,0.07943233310543552],[124,280,66,0.07844669207172916],[124,280,67,0.07818577537691634],[124,280,68,0.0786070369046089],[124,280,69,0.07965144639322158],[124,280,70,0.0812431041282109],[124,280,71,0.08329197757632673],[124,280,72,0.08569307293650547],[124,280,73,0.08832349296776909],[124,280,74,0.09105473943692577],[124,280,75,0.09377656862172301],[124,280,76,0.09640064382347086],[124,280,77,0.09885923162587223],[124,280,78,0.10110407040267821],[124,280,79,0.10310542525034572],[124,281,64,0.07916381672943795],[124,281,65,0.0774737359393537],[124,281,66,0.07656265389872019],[124,281,67,0.07640298901271814],[124,281,68,0.07695052925164325],[124,281,69,0.07814371064231845],[124,281,70,0.07990314459355263],[124,281,71,0.082134287801932],[124,281,72,0.08472651520855068],[124,281,73,0.08755058146209321],[124,281,74,0.0904753562686052],[124,281,75,0.09338995275992745],[124,281,76,0.09620496465350548],[124,281,77,0.09885118476408117],[124,281,78,0.10127851136316812],[124,281,79,0.10345503148943852],[124,282,64,0.07761134931779884],[124,282,65,0.07596499921224342],[124,282,66,0.07512301478488498],[124,282,67,0.0750570806718392],[124,282,68,0.07572151849229813],[124,282,69,0.07705248111803309],[124,282,70,0.0789673932208867],[124,282,71,0.08136755472290003],[124,282,72,0.08413711513558142],[124,282,73,0.08714090662052265],[124,282,74,0.09024534386989941],[124,282,75,0.09333893848078273],[124,282,76,0.09633126587959495],[124,282,77,0.099151700120922],[124,282,78,0.10174835044272262],[124,282,79,0.10408716513539279],[124,283,64,0.0765162376557541],[124,283,65,0.07491043066995734],[124,283,66,0.07413201970807548],[124,283,67,0.07415210824777657],[124,283,68,0.07492375762602788],[124,283,69,0.07638109828333545],[124,283,70,0.07843868442821367],[124,283,71,0.08099403161449248],[124,283,72,0.08392649275822295],[124,283,73,0.08709542961618272],[124,283,74,0.09036499606413367],[124,283,75,0.09362315513462871],[124,283,76,0.09677852713994406],[124,283,77,0.09975913465524006],[124,283,78,0.10251136143590384],[124,283,79,0.10499906887643606],[124,284,64,0.07588011503834902],[124,284,65,0.07431175143298385],[124,284,66,0.07359136673714445],[124,284,67,0.07368963786173865],[124,284,68,0.0745585768999012],[124,284,69,0.07613056083821529],[124,284,70,0.07831760153626632],[124,284,71,0.08101381831368076],[124,284,72,0.08409421626183827],[124,284,73,0.08741316206618388],[124,284,74,0.09083275876219182],[124,284,75,0.09424048478334718],[124,284,76,0.09754407996988856],[124,284,77,0.10067029454359555],[124,284,78,0.10356386243583077],[124,284,79,0.10618662227865355],[124,285,64,0.07570175997683248],[124,285,65,0.07416784732978882],[124,285,66,0.07349995527653375],[124,285,67,0.07366848959204275],[124,285,68,0.07462462760274569],[124,285,69,0.07629926814487603],[124,285,70,0.07860221835497061],[124,285,71,0.08142460244568245],[124,285,72,0.0846375432506638],[124,285,73,0.08809090766288746],[124,285,74,0.09164497219057233],[124,285,75,0.09518680521368095],[124,285,76,0.09862335172986197],[124,285,77,0.10188018008425476],[124,285,78,0.10490046169759049],[124,285,79,0.10764408850287821],[124,286,64,0.07597709168279798],[124,286,65,0.07447476123200197],[124,286,66,0.07385387572703367],[124,286,67,0.07408472496468643],[124,286,68,0.07511786790380187],[124,286,69,0.0768830049283673],[124,286,70,0.07928808323423098],[124,286,71,0.08222164326294479],[124,286,72,0.08555140473523537],[124,286,73,0.0891232465660422],[124,286,74,0.09279585585826544],[124,286,75,0.09645597557683838],[124,286,76,0.100009851938065],[124,286,77,0.10338197265898863],[124,286,78,0.10651404507320594],[124,286,79,0.1093641019556637],[124,287,64,0.07669920505994576],[124,287,65,0.07522572530289234],[124,287,66,0.07464643941900245],[124,287,67,0.07493167502932563],[124,287,68,0.07603158954493971],[124,287,69,0.07787496705678587],[124,287,70,0.08036824438212259],[124,287,71,0.0833977969065951],[124,287,72,0.08682843067147061],[124,287,73,0.09050256145702867],[124,287,74,0.09427753527355653],[124,287,75,0.09803986383420649],[124,287,76,0.10169520042645463],[124,287,77,0.10516706349078137],[124,287,78,0.10839580516648273],[124,287,79,0.11133769753305917],[124,288,64,0.07785844517676488],[124,288,65,0.0764112331324216],[124,288,66,0.07586824879132115],[124,288,67,0.07620000899393864],[124,288,68,0.0773564853597139],[124,288,69,0.07926582837432633],[124,288,70,0.08183331642377345],[124,288,71,0.08494358306364624],[124,288,72,0.0884590170247016],[124,288,73,0.09221910522851628],[124,288,74,0.09608011038407988],[124,288,75,0.09992841598252322],[124,288,76,0.10366919729343715],[124,288,77,0.10722512417088148],[124,288,78,0.1105353121812202],[124,288,79,0.11355438143074398],[124,289,64,0.07944252122028961],[124,289,65,0.07801915175902907],[124,289,66,0.07750730781624321],[124,289,67,0.07787784341833098],[124,289,68,0.07908075761941225],[124,289,69,0.08104384858733188],[124,289,70,0.08367158820108372],[124,289,71,0.08684729302009986],[124,289,72,0.0904314343588003],[124,289,73,0.09426111030967199],[124,289,74,0.09819176574025806],[124,289,75,0.10210976705863734],[124,289,76,0.10591993465338972],[124,289,77,0.1095442189553153],[124,289,78,0.11292062646290751],[124,289,79,0.1160022435206372],[124,290,64,0.08143665993082116],[124,290,65,0.08003487357803718],[124,290,66,0.07954917267002665],[124,290,67,0.0799508919663704],[124,290,68,0.08119026720598777],[124,290,69,0.08319502220323782],[124,290,70,0.08586917181317799],[124,290,71,0.08909513910984962],[124,290,72,0.09273197795029625],[124,290,73,0.09661493962682394],[124,290,74,0.1005989223820341],[124,290,75,0.10457039392377099],[124,290,76,0.10843395018292884],[124,290,77,0.11211095883078348],[124,290,78,0.11553845273382618],[124,290,79,0.11866811129390775],[124,291,64,0.08382379851758853],[124,291,65,0.08244150813665685],[124,291,66,0.08197714264932376],[124,291,67,0.08240265571692656],[124,291,68,0.0836687236118474],[124,291,69,0.08570326852237942],[124,291,70,0.08841019289756002],[124,291,71,0.09167144555934592],[124,291,72,0.09534515942745209],[124,291,73,0.09926527919954165],[124,291,74,0.10328643144885241],[124,291,75,0.10729530982723406],[124,291,76,0.11119642246387368],[124,291,77,0.11491069734988751],[124,291,78,0.11837433602150282],[124,291,79,0.12153774537032572],[124,292,64,0.08658481705547838],[124,292,65,0.08522011381571587],[124,292,66,0.08477249133345888],[124,292,67,0.08521465403364653],[124,292,68,0.08649791576663013],[124,292,69,0.08855066268279782],[124,292,70,0.09127702215210476],[124,292,71,0.09455888072816399],[124,292,72,0.09825393993443526],[124,292,73,0.10219537237227566],[124,292,74,0.1062378095130383],[124,292,75,0.11026830074974425],[124,292,76,0.11419140812305661],[124,292,77,0.11792776823584],[124,292,78,0.12141289928067031],[124,292,79,0.12459607657411534],[124,293,64,0.08969881036272243],[124,293,65,0.0883499693980041],[124,293,66,0.0879147379924804],[124,293,67,0.0883666959934512],[124,293,68,0.08965798369085892],[124,293,69,0.09171770775792887],[124,293,70,0.09445054809777242],[124,293,71,0.09773873074535638],[124,293,72,0.10144000482046978],[124,293,73,0.10538729568143584],[124,293,74,0.10943551563644904],[124,293,75,0.11347220352622472],[124,293,76,0.11740212076885681],[124,293,77,0.12114576475653252],[124,293,78,0.1246381227086078],[124,293,79,0.12782748457617943],[124,294,64,0.09314339935952576],[124,294,65,0.09180888552321487],[124,294,66,0.09138195924097287],[124,294,67,0.09183719237373988],[124,294,68,0.09312773097645266],[124,294,69,0.09518364790715855],[124,294,70,0.09791049108202687],[124,294,71,0.1011912145415717],[124,294,72,0.10488407985394704],[124,294,73,0.10882227635789071],[124,294,74,0.11286127015038289],[124,294,75,0.11688922574806432],[124,294,76,0.12081125172443691],[124,294,77,0.12454786086794159],[124,294,78,0.12803366475384126],[124,294,79,0.13121611810267536],[124,295,64,0.09689508190778823],[124,295,65,0.09557355602963924],[124,295,66,0.09515114093778138],[124,295,67,0.09560350819845415],[124,295,68,0.09688497809425095],[124,295,69,0.09892682257940189],[124,295,70,0.10163575852311768],[124,295,71,0.10489584027710286],[124,295,72,0.10856628896166198],[124,295,73,0.11248105146505216],[124,295,74,0.1164964151589093],[124,295,75,0.12050130744500692],[124,295,76,0.12440133255785324],[124,295,77,0.12811717412704632],[124,295,78,0.1315832248183783],[124,295,79,0.13474625671011925],[124,296,64,0.10092962313170073],[124,296,65,0.09961994918238953],[124,296,66,0.0991985703314271],[124,296,67,0.09964235584277908],[124,296,68,0.10090695652832937],[124,296,69,0.10292506176947835],[124,296,70,0.10560484139499637],[124,296,71,0.10883180316562963],[124,296,72,0.11246655349293633],[124,296,73,0.11634426867230885],[124,296,74,0.12032231676538196],[124,296,75,0.1242905245464273],[124,296,76,0.12815513940879494],[124,296,77,0.13183717037400697],[124,296,78,0.13527094765322648],[124,296,79,0.13840271412676491],[124,297,64,0.10522248521944833],[124,297,65,0.10392373878838901],[124,297,66,0.10350026845144872],[124,297,67,0.10393022869672075],[124,297,68,0.10517074373734309],[124,297,69,0.10715612232752625],[124,297,70,0.10979625195311188],[124,297,71,0.11297842469390634],[124,297,72,0.11656503300888255],[124,297,73,0.1203929286640606],[124,297,74,0.12432080902238982],[124,297,75,0.12823953412225278],[124,297,76,0.13205613911221215],[124,297,77,0.13569211018387148],[124,297,78,0.13908186944746137],[124,297,79,0.14217128316052585],[124,298,64,0.10974929670579714],[124,298,65,0.10846077519790198],[124,298,66,0.10803246274544703],[124,298,67,0.10844387538733041],[124,298,68,0.10965373894267011],[124,298,69,0.11159816532122313],[124,298,70,0.11418900270084925],[124,298,71,0.11731563323715383],[124,298,72,0.12084260759656554],[124,298,73,0.12460886918411138],[124,298,74,0.1284746796049016],[124,298,75,0.13233206140328274],[124,298,76,0.13608897711858498],[124,298,77,0.13966753708755553],[124,298,78,0.1430024056105913],[124,298,79,0.146039222173185],[124,299,64,0.11448636123572264],[124,299,65,0.11320759619276172],[124,299,66,0.11277209996198756],[124,299,67,0.11316081455973626],[124,299,68,0.1143341797435159],[124,299,69,0.11623027445097683],[124,299,70,0.1187631265967789],[124,299,71,0.12182448607032664],[124,299,72,0.12528140170823443],[124,299,73,0.12897529071559277],[124,299,74,0.1327681972067765],[124,299,75,0.13655342858108144],[124,299,76,0.14024000721100824],[124,299,77,0.14375080756227587],[124,299,78,0.14702088024839732],[124,299,79,0.14999578312107373],[124,300,64,0.11941120580906384],[124,300,65,0.11814197776128288],[124,300,66,0.11769739927934852],[124,300,67,0.11805989021696883],[124,300,68,0.11919169955896258],[124,300,69,0.12103301551807005],[124,300,70,0.1235002385026987],[124,300,71,0.12648773277523515],[124,300,72,0.12986534952560347],[124,300,73,0.13347732379639837],[124,300,74,0.137187680660622],[124,300,75,0.1408911253874226],[124,300,76,0.14449786301907214],[124,300,77,0.1479316627914144],[124,300,78,0.15112809733222649],[124,300,79,0.15403278116219518],[124,301,64,0.12450316850608065],[124,301,65,0.1232435247597326],[124,301,66,0.12278844567998834],[124,301,67,0.12312186761844998],[124,301,68,0.12420792589683666],[124,301,69,0.12598903694563063],[124,301,70,0.12838413787233854],[124,301,71,0.13129042004339433],[124,301,72,0.1345808018490527],[124,301,73,0.13810263796999808],[124,301,74,0.14172210978086536],[124,301,75,0.14533542145315498],[124,301,76,0.14885407132940534],[124,301,77,0.1522028421936798],[124,301,78,0.15531795356160485],[124,301,79,0.15814520582966002],[124,302,64,0.12974402569406102],[124,302,65,0.12849430146051022],[124,302,66,0.12802782357088488],[124,302,67,0.128330069737304],[124,302,68,0.12936711944955],[124,302,69,0.1310837113525842],[124,302,70,0.13340145268088932],[124,302,71,0.13622053787475902],[124,302,72,0.13941717451191232],[124,302,73,0.1428420923717959],[124,302,74,0.14636377793020677],[124,302,75,0.1498800204466545],[124,302,76,0.15330370719304895],[124,302,77,0.15656073872173668],[124,302,78,0.15958809292034098],[124,302,79,0.16233187377160557],[124,303,64,0.1351186587149375],[124,303,65,0.13387950198699342],[124,303,66,0.13340129064969797],[124,303,67,0.1336710542764378],[124,303,68,0.13465685401686384],[124,303,69,0.13630581818053775],[124,303,70,0.13854232459529786],[124,303,71,0.14126970717228943],[124,303,72,0.14436763831976784],[124,303,73,0.14769042795097187],[124,303,74,0.15110898630938996],[124,303,75,0.1545227559917992],[124,303,76,0.15784609082959528],[124,303,77,0.16100609593023385],[124,303,78,0.16394060292604976],[124,303,79,0.16659612305752725],[124,304,64,0.1406157600538136],[124,304,65,0.13938816063494897],[124,304,66,0.13889849201666302],[124,304,67,0.13913533124330008],[124,304,68,0.14006873725548397],[124,304,69,0.14164826737350308],[124,304,70,0.14380113538524436],[124,304,71,0.1464339087322619],[124,304,72,0.1494298505147079],[124,304,73,0.15264700132772474],[124,304,74,0.15595877997021007],[124,304,75,0.15926632936538962],[124,304,76,0.16248552632801588],[124,304,77,0.1655447468131583],[124,304,78,0.16838275257302615],[124,304,79,0.17094654905095205],[124,305,64,0.1462285789885408],[124,305,65,0.14501390208065576],[124,305,66,0.14451371453235212],[124,305,67,0.1447181210834551],[124,305,68,0.14559917225562344],[124,305,69,0.14710886411059665],[124,305,70,0.14917727457493224],[124,305,71,0.1517142536304547],[124,305,72,0.15460672776463957],[124,305,73,0.15771656028604436],[124,305,74,0.16091972555188758],[124,305,75,0.16411908897413832],[124,305,76,0.16723208214430102],[124,305,77,0.17018839441063582],[124,305,78,0.1729277719685862],[124,305,79,0.17539778184857224],[124,306,64,0.15195570672032455],[124,306,65,0.15075573147570961],[124,306,66,0.1502466814212835],[124,306,67,0.150420153372952],[124,306,68,0.15125015994451368],[124,306,69,0.1526911145916947],[124,306,70,0.15467594833567364],[124,306,71,0.15711779500419307],[124,306,72,0.15990726067765837],[124,306,73,0.1629100609019992],[124,306,74,0.16600473074079097],[124,306,75,0.16909585161121587],[124,306,76,0.17210241339589877],[124,306,77,0.17495543418516668],[124,306,78,0.17759567366286613],[124,306,79,0.17997130528582894],[124,307,64,0.15780083056811203],[124,307,65,0.15661779222747926],[124,307,66,0.1561023055848228],[124,307,67,0.1562474079441358],[124,307,68,0.1570290208547232],[124,307,69,0.1584039220584322],[124,307,70,0.1603078443982517],[124,307,71,0.1626571577878148],[124,307,72,0.16534610586667026],[124,307,73,0.1682442212728467],[124,307,74,0.1712325606193842],[124,307,75,0.17421738363202674],[124,307,76,0.17711921108728404],[124,307,77,0.1798703753172549],[124,307,78,0.1824126506281562],[124,307,79,0.18469483661717673],[124,308,64,0.16375108288672163],[124,308,65,0.16258766466575922],[124,308,66,0.16206878722835263],[124,308,67,0.16218886667521257],[124,308,68,0.1629256663890326],[124,308,69,0.1642382574192361],[124,308,70,0.16606510130078905],[124,308,71,0.1683257303800467],[124,308,72,0.1709179538786106],[124,308,73,0.17371505507459722],[124,308,74,0.17660056173444882],[124,308,75,0.17948237052064347],[124,308,76,0.18228249713147993],[124,308,77,0.18493456129614821],[124,308,78,0.1873813381879873],[124,308,79,0.18957225701075542],[124,309,64,0.1697734422939542],[124,309,65,0.16863269013304502],[124,309,66,0.16811386443716084],[124,309,67,0.16821269411106254],[124,309,68,0.16890871286346335],[124,309,69,0.17016320977664373],[124,309,70,0.17191729799911246],[124,309,71,0.17409359530921104],[124,309,72,0.17659340207956806],[124,309,73,0.17929368685999306],[124,309,74,0.18208041931949911],[124,309,75,0.18486311558926505],[124,309,76,0.18756526474073784],[124,309,77,0.19012175337840748],[124,309,78,0.19247634347181677],[124,309,79,0.19457909176333982],[124,310,64,0.17583306828394787],[124,310,65,0.1747183100680444],[124,310,66,0.17420329563133236],[124,310,67,0.1742849967389281],[124,310,68,0.17494464178535435],[124,310,69,0.17614565848626995],[124,310,70,0.177831730622108],[124,310,71,0.17992848094756847],[124,310,72,0.1823406238125113],[124,310,73,0.1849487482489728],[124,310,74,0.18764125714573598],[124,310,75,0.19032929242412577],[124,310,76,0.1929378098105047],[124,310,77,0.195402949392673],[124,310,78,0.1976694466389171],[124,310,79,0.19968797948622496],[124,311,64,0.18189451070433135],[124,311,65,0.18080928186605028],[124,311,66,0.18030208612508253],[124,311,67,0.18037106439999645],[124,311,68,0.18099905998402913],[124,311,69,0.1821515554512602],[124,311,70,0.18377471980483442],[124,311,71,0.1857970960280655],[124,311,72,0.18812673133997182],[124,311,73,0.19064776944379866],[124,311,74,0.19325105648508262],[124,311,75,0.19584938900312038],[124,311,76,0.1983691969246356],[124,311,77,0.20074786757454277],[124,311,78,0.20293109786371913],[124,311,79,0.2048701770970001],[124,312,64,0.18792221815627028],[124,312,65,0.18687018737116223],[124,312,66,0.1863749953390028],[124,312,67,0.18643587492453131],[124,312,68,0.1870372004790414],[124,312,69,0.1881464211748999],[124,312,70,0.18971210105259148],[124,312,71,0.19166561365868007],[124,312,72,0.19391825309599098],[124,312,73,0.1963576495710608],[124,312,74,0.19887711949388848],[124,312,75,0.20139116406471128],[124,312,76,0.20382770863377875],[124,312,77,0.2061253886502648],[124,312,78,0.20823085208350678],[124,312,79,0.21009598704428833],[124,313,64,0.19388210942982487],[124,313,65,0.19286691086925145],[124,313,66,0.19238792037770816],[124,313,67,0.1924453826372276],[124,313,68,0.19302511560162464],[124,313,69,0.19409644256174066],[124,313,70,0.19561022769062675],[124,313,71,0.19750058032522064],[124,313,72,0.1996819501124461],[124,313,73,0.20204538237837538],[124,313,74,0.20448670634018917],[124,313,75,0.2069221980290231],[124,313,76,0.20928131271595132],[124,313,77,0.21150394214515822],[124,313,78,0.2135376772058888],[124,313,79,0.21533499038784362],[124,314,64,0.1997414625590293],[124,314,65,0.19876654439086566],[124,314,66,0.198307816291286],[124,314,67,0.1983664523128818],[124,314,68,0.19892962343586812],[124,314,69,0.199968430723202],[124,314,70,0.20143593903398807],[124,314,71,0.20326889358055672],[124,314,72,0.20538480257346],[124,314,73,0.20767805120815652],[124,314,74,0.21004703821445703],[124,314,75,0.21240990363047324],[124,314,76,0.2146976799718187],[124,314,77,0.2168515308288545],[124,314,78,0.21881998462940236],[124,314,79,0.22055608275005836],[124,315,64,0.20546809864399188],[124,315,65,0.20453666590968894],[124,315,66,0.2041020670512448],[124,315,67,0.20416632114877847],[124,315,68,0.20471785885601823],[124,315,69,0.20572945903154066],[124,315,70,0.20715628332883732],[124,315,71,0.20893760770030156],[124,315,72,0.21099389600790294],[124,315,73,0.21322279356806517],[124,315,74,0.2155253380089783],[124,315,75,0.2178216402425977],[124,315,76,0.22004436953229733],[124,315,77,0.22213598414189897],[124,315,78,0.22404594772395925],[124,315,79,0.22572785458474326],[124,316,64,0.21103080735218382],[124,316,65,0.21014577339764018],[124,316,66,0.2097389268789641],[124,316,67,0.20981304612524138],[124,316,68,0.2103577257462667],[124,316,69,0.2113473191247791],[124,316,70,0.2127389765986721],[124,316,71,0.21447439458916345],[124,316,72,0.21647688367064763],[124,316,73,0.21864726461570733],[124,316,74,0.2208892946231374],[124,316,75,0.22312517872324178],[124,316,76,0.2252892939516889],[124,316,77,0.22732542322217675],[124,316,78,0.22918396644276173],[124,316,79,0.23081905498370286],[124,317,64,0.21639982056371687],[124,317,65,0.2155637638324475],[124,317,66,0.2151880033771239],[124,317,67,0.215275990066644],[124,317,68,0.21581838486949695],[124,317,69,0.21679100956318914],[124,317,70,0.218152891200821],[124,317,71,0.21984803151332527],[124,317,72,0.22180247292237598],[124,317,73,0.2239201218708483],[124,317,74,0.2261075457911016],[124,317,75,0.22828918215720465],[124,317,76,0.23040119766665562],[124,317,77,0.23238873687097114],[124,317,78,0.23420314056408392],[124,317,79,0.2357990619299063],[124,318,64,0.22154729138731286],[124,318,65,0.22076241759150636],[124,318,66,0.2204207460936275],[124,318,67,0.2205263132083035],[124,318,68,0.2210707473382079],[124,318,69,0.2220312302019939],[124,318,70,0.22336855022486923],[124,318,71,0.22502889480509333],[124,318,72,0.22694091770857977],[124,318,73,0.22901151614245252],[124,318,74,0.23115016723082213],[124,318,75,0.2332836930247548],[124,318,76,0.2353501419900948],[124,318,77,0.2372960641730758],[124,318,78,0.23907374972135487],[124,318,79,0.24063835949268217],[124,319,64,0.22644777854696102],[124,319,65,0.22571588823201344],[124,319,66,0.22541094051801025],[124,319,67,0.22553747026925092],[124,319,68,0.22608797368761224],[124,319,69,0.22704088228028443],[124,319,70,0.22835862773300572],[124,319,71,0.22998945953980515],[124,319,72,0.23186451713774592],[124,319,73,0.23389358867053633],[124,319,74,0.23598916811433804],[124,319,75,0.23808062679600123],[124,319,76,0.2401079966398983],[124,319,77,0.24201928377094423],[124,319,78,0.24376774022153058],[124,319,79,0.24202824495862063],[125,-64,64,0.3446483157903033],[125,-64,65,0.35075636097475915],[125,-64,66,0.35696447707010653],[125,-64,67,0.3632584955743884],[125,-64,68,0.3696375627269298],[125,-64,69,0.37611296295413527],[125,-64,70,0.3826938260034206],[125,-64,71,0.38938593587372367],[125,-64,72,0.3961909964607191],[125,-64,73,0.403106036975184],[125,-64,74,0.4101229610514325],[125,-64,75,0.41722824332091746],[125,-64,76,0.42440277706204954],[125,-64,77,0.4316218763529298],[125,-64,78,0.43885543595070076],[125,-64,79,0.44606825190261096],[125,-63,64,0.3475595590626176],[125,-63,65,0.3537575941911477],[125,-63,66,0.3600604791776855],[125,-63,67,0.36645399246337884],[125,-63,68,0.37293642321543913],[125,-63,69,0.3795177956098013],[125,-63,70,0.3862060604870521],[125,-63,71,0.3930059205507435],[125,-63,72,0.3999181019777347],[125,-63,73,0.4069387651405202],[125,-63,74,0.4140590582717512],[125,-63,75,0.42126481775927466],[125,-63,76,0.4285364185963485],[125,-63,77,0.4358487783282084],[125,-63,78,0.443171517634486],[125,-63,79,0.4504692804701701],[125,-62,64,0.35066568362675127],[125,-62,65,0.3569469664650998],[125,-62,66,0.36333634791095354],[125,-62,67,0.36981991782474527],[125,-62,68,0.3763950753544651],[125,-62,69,0.3830702720614726],[125,-62,70,0.3898520606371994],[125,-62,71,0.39674393696231247],[125,-62,72,0.403745609530977],[125,-62,73,0.4108524072126741],[125,-62,74,0.4180548290997885],[125,-62,75,0.42533824004813536],[125,-62,76,0.4326827153551661],[125,-62,77,0.4400630378387355],[125,-62,78,0.44744885037967186],[125,-62,79,0.45480496677699195],[125,-61,64,0.35395012898902084],[125,-61,65,0.36030754082600236],[125,-61,66,0.366774718489597],[125,-61,67,0.3733383982554394],[125,-61,68,0.37999506930715127],[125,-61,69,0.3867513390241322],[125,-61,70,0.39361217904629137],[125,-61,71,0.4005797841970122],[125,-61,72,0.40765283170732125],[125,-61,73,0.414825877902528],[125,-61,74,0.4220888960225844],[125,-61,75,0.42942695870803094],[125,-61,76,0.436820068522959],[125,-61,77,0.4442431397068919],[125,-61,78,0.4516661341504923],[125,-61,79,0.45905435437856695],[125,-60,64,0.3573921988697672],[125,-60,65,0.3638182637446818],[125,-60,66,0.37035418278166693],[125,-60,67,0.3769876281913144],[125,-60,68,0.3837141687088305],[125,-60,69,0.39053834295670725],[125,-60,70,0.39746339905767053],[125,-60,71,0.40449016976035995],[125,-60,72,0.41161631379265123],[125,-60,73,0.4188356937163849],[125,-60,74,0.42613789388296225],[125,-60,75,0.43350788195226514],[125,-60,76,0.44092581727959806],[125,-60,77,0.44836700929872225],[125,-60,78,0.4558020288352547],[125,-60,79,0.4631969750766715],[125,-59,64,0.36096765876255077],[125,-59,65,0.36745456622072403],[125,-59,66,0.3740498974537662],[125,-59,67,0.3807424870748944],[125,-59,68,0.3875269769867296],[125,-59,69,0.39440566403374355],[125,-59,70,0.40137997351893945],[125,-59,71,0.40844934912516834],[125,-59,72,0.4156104692670721],[125,-59,73,0.4228565989130212],[125,-59,74,0.4301770804098779],[125,-59,75,0.4375569667094118],[125,-59,76,0.4449768002406348],[125,-59,77,0.4524125404990981],[125,-59,78,0.45983564323400505],[125,-59,79,0.4672132939097183],[125,-58,64,0.36464946880889565],[125,-58,65,0.37118909963615937],[125,-58,66,0.3778343259019341],[125,-58,67,0.38457528880449676],[125,-58,68,0.391405693757302],[125,-58,69,0.39832547705152044],[125,-58,70,0.40533418621553285],[125,-58,71,0.4124298824865246],[125,-58,72,0.41960832575370316],[125,-58,73,0.42686229388515606],[125,-58,74,0.43418103990952783],[125,-58,75,0.4415498903931473],[125,-58,76,0.44894998820229404],[125,-58,77,0.4563581826708524],[125,-58,78,0.4637470700072981],[125,-58,79,0.4710851865747222],[125,-57,64,0.36840865110784016],[125,-57,65,0.37499260542607243],[125,-57,66,0.3816781129665659],[125,-57,67,0.38845666243893856],[125,-57,68,0.3953210002634728],[125,-57,69,0.4022686382377117],[125,-57,70,0.40929723498083553],[125,-57,71,0.4164035077667217],[125,-57,72,0.4235823805383056],[125,-57,73,0.4308262651781839],[125,-57,74,0.4381244794495644],[125,-57,75,0.44546280489492024],[125,-57,76,0.45282318783266184],[125,-57,77,0.4601835864267071],[125,-57,78,0.4675179666216303],[125,-57,79,0.47479644953997163],[125,-56,64,0.37221238968326154],[125,-56,65,0.378832012106227],[125,-56,66,0.3855481642811065],[125,-56,67,0.39235360877267333],[125,-56,68,0.39924009326211024],[125,-56,69,0.40620269710964074],[125,-56,70,0.4132372223497789],[125,-56,71,0.42033911080755065],[125,-56,72,0.42750255076937094],[125,-56,73,0.43471971575022095],[125,-56,74,0.4419801387180604],[125,-56,75,0.44927022501362707],[125,-56,76,0.45657290706080034],[125,-56,77,0.46386744380138095],[125,-56,78,0.47112936761011925],[125,-56,79,0.47833058125391487],[125,-55,64,0.37600830418413683],[125,-55,65,0.3826546998869549],[125,-55,66,0.3893917849270954],[125,-55,67,0.39621347418197334],[125,-55,68,0.40311050385612396],[125,-55,69,0.4100755857705712],[125,-55,70,0.41710275170360656],[125,-55,71,0.42418627200033016],[125,-55,72,0.4313197182299897],[125,-55,73,0.4384951567361943],[125,-55,74,0.44570247639005095],[125,-55,75,0.4529288537374749],[125,-55,76,0.46015835859300364],[125,-55,77,0.4673717029752442],[125,-55,78,0.47454613610518154],[125,-55,79,0.48165548800082414],[125,-54,64,0.3797416224450898],[125,-54,65,0.38640574122863025],[125,-54,66,0.39315403356349826],[125,-54,67,0.39998143214160203],[125,-54,68,0.40687769404365526],[125,-54,69,0.413833303126925],[125,-54,70,0.4208406613098375],[125,-54,71,0.42789300568227856],[125,-54,72,0.4349834263866193],[125,-54,73,0.442104014131801],[125,-54,74,0.4492451406001544],[125,-54,75,0.4563948748916869],[125,-54,76,0.4635385390155767],[125,-54,77,0.470658405285373],[125,-54,78,0.47773353830452475],[125,-54,79,0.48473978404509055],[125,-53,64,0.3833660716441824],[125,-53,65,0.3900388163298687],[125,-53,66,0.3967887100610783],[125,-53,67,0.40361155740424043],[125,-53,68,0.41049620808330595],[125,-53,69,0.4174311232643996],[125,-53,70,0.4244072618882487],[125,-53,71,0.4314169940431511],[125,-53,72,0.43845307507950243],[125,-53,73,0.4455077480354139],[125,-53,74,0.45257197758178097],[125,-53,75,0.45963481858378247],[125,-53,76,0.4666829222444578],[125,-53,77,0.47370018264649166],[125,-53,78,0.4806675263422468],[125,-53,79,0.4875628474620919],[125,-52,64,0.3868441046636343],[125,-52,65,0.39351643589098295],[125,-52,66,0.4002585710037589],[125,-52,67,0.4070670315660331],[125,-52,68,0.4139298655445071],[125,-52,69,0.42083377278952566],[125,-52,70,0.4277684945648466],[125,-52,71,0.4347257216726557],[125,-52,72,0.44169802744467124],[125,-52,73,0.44867792766061304],[125,-52,74,0.45565707054889903],[125,-52,75,0.4626255599162031],[125,-52,76,0.4695714143244588],[125,-52,77,0.47648016508776],[125,-52,78,0.4833345956989827],[125,-52,79,0.4901146251194776],[125,-51,64,0.3894738455434846],[125,-51,65,0.3968102234648309],[125,-51,66,0.40353560331335514],[125,-51,67,0.4103204048624325],[125,-51,68,0.41715200837465616],[125,-51,69,0.42401565984136125],[125,-51,70,0.43090013818159195],[125,-51,71,0.43779665732344797],[125,-51,72,0.44469776220494384],[125,-51,73,0.4515963502622981],[125,-51,74,0.45848482150379904],[125,-51,75,0.46535436016180254],[125,-51,76,0.47219435079017463],[125,-51,77,0.47899193153131686],[125,-51,78,0.4857316871173719],[125,-51,79,0.49239548399690064],[125,-50,64,0.39076804018075595],[125,-50,65,0.39880708940508275],[125,-50,66,0.4066014058023535],[125,-50,67,0.41335396440423283],[125,-50,68,0.42014585256361137],[125,-50,69,0.42696120563928536],[125,-50,70,0.4337881169916688],[125,-50,71,0.4406175339374584],[125,-50,72,0.4474421222359932],[125,-50,73,0.4542552545766773],[125,-50,74,0.4610501261048104],[125,-50,75,0.4678189999196167],[125,-50,76,0.4745525853552687],[125,-50,77,0.481239551714994],[125,-50,78,0.487866179971455],[125,-50,79,0.4944161547760805],[125,-49,64,0.39214240147744767],[125,-49,65,0.40017460366468693],[125,-49,66,0.4081981420948173],[125,-49,67,0.4161559807482263],[125,-49,68,0.42290132681632236],[125,-49,69,0.4296622894929762],[125,-49,70,0.4364265542128867],[125,-49,71,0.4431850000214353],[125,-49,72,0.4499305399144829],[125,-49,73,0.45665708358406637],[125,-49,74,0.46335862553992446],[125,-49,75,0.47002846147464966],[125,-49,76,0.47665853561899324],[125,-49,77,0.4832389216951435],[125,-49,78,0.4897574399211734],[125,-49,79,0.49619941235181403],[125,-48,64,0.39361208298724326],[125,-48,65,0.40162840425567276],[125,-48,66,0.4096454399460529],[125,-48,67,0.41764691251699904],[125,-48,68,0.42540363890557137],[125,-48,69,0.43210833495491974],[125,-48,70,0.43880936963172545],[125,-48,71,0.4454976873897262],[125,-48,72,0.4521665006064062],[125,-48,73,0.45881023772224994],[125,-48,74,0.4654236146319892],[125,-48,75,0.4720008321140917],[125,-48,76,0.4785349019650176],[125,-48,77,0.48501710436801065],[125,-48,78,0.49143657887390535],[125,-48,79,0.49778005120605423],[125,-47,64,0.395187969134928],[125,-47,65,0.403176734209226],[125,-47,66,0.4111744984086994],[125,-47,67,0.41916536082093064],[125,-47,68,0.4271430441580021],[125,-47,69,0.4342927871518584],[125,-47,70,0.4409342070577307],[125,-47,71,0.44755758025894826],[125,-47,72,0.45415639609075753],[125,-47,73,0.46072550613601365],[125,-47,74,0.4672601927246862],[125,-47,75,0.47375536043257044],[125,-47,76,0.4802048531431471],[125,-47,77,0.48660089910211785],[125,-47,78,0.4929336862447694],[125,-47,79,0.49919106991432055],[125,-46,64,0.39687171886093203],[125,-46,65,0.4048191879693188],[125,-46,66,0.41278257824652725],[125,-46,67,0.42074657189432585],[125,-46,68,0.42870513023637524],[125,-46,69,0.4362151012581967],[125,-46,70,0.44280375866212424],[125,-46,71,0.44937068235279987],[125,-46,72,0.4559095551365847],[125,-46,73,0.462415494856979],[125,-46,74,0.46888413608013013],[125,-46,75,0.47531083062878365],[125,-46,76,0.4816899693992648],[125,-46,77,0.4880144277648503],[125,-46,78,0.49427513672340884],[125,-46,79,0.5004607817897486],[125,-45,64,0.3986567948641249],[125,-45,65,0.4065476982856487],[125,-45,66,0.4144598943357583],[125,-45,67,0.4223788565999462],[125,-45,68,0.43029874156847364],[125,-45,69,0.4378800238104452],[125,-45,70,0.44442512075505336],[125,-45,71,0.45094645193543326],[125,-45,72,0.4574377613439998],[125,-45,73,0.46389422959269183],[125,-45,74,0.47031158624712405],[125,-45,75,0.4766853355418506],[125,-45,76,0.4830100977533814],[125,-45,77,0.4892790683807018],[125,-45,78,0.4954835971428582],[125,-45,79,0.5016128886518167],[125,-44,64,0.40052946902788],[125,-44,65,0.4083475005831423],[125,-44,66,0.4161905327365471],[125,-44,67,0.4240450351558207],[125,-44,68,0.4319053433856526],[125,-44,69,0.4392968898151186],[125,-44,70,0.4458091640406061],[125,-44,71,0.45229725030174667],[125,-44,72,0.45875478381366513],[125,-44,73,0.4651767711866893],[125,-44,74,0.4715587514733336],[125,-44,75,0.4778960636755808],[125,-44,76,0.4841832228026579],[125,-44,77,0.49041340644846765],[125,-44,78,0.49657805372460123],[125,-44,79,0.5026665782414447],[125,-43,64,0.4024698070484566],[125,-43,65,0.4101980776830194],[125,-43,66,0.41795334923613936],[125,-43,67,0.42572328314884483],[125,-43,68,0.43350240406442275],[125,-43,69,0.4404789334883387],[125,-43,70,0.44696991639364725],[125,-43,71,0.4534378019784337],[125,-43,72,0.4598759191075024],[125,-43,73,0.4662788424151724],[125,-43,74,0.4726416200187705],[125,-43,75,0.47895909924381286],[125,-43,76,0.4852253522379165],[125,-43,77,0.491433203237042],[125,-43,78,0.49757385912331975],[125,-43,79,0.5036366447802941],[125,-42,64,0.40445263528535913],[125,-42,65,0.4120740877531883],[125,-42,66,0.4197228520845758],[125,-42,67,0.4273879628094438],[125,-42,68,0.434949663865627],[125,-42,69,0.4414426104642305],[125,-42,70,0.4479239562055505],[125,-42,71,0.45438466489917817],[125,-42,72,0.4608175429820026],[125,-42,73,0.4672164648163366],[125,-42,74,0.47357568427285035],[125,-42,75,0.47988923433188924],[125,-42,76,0.48615041634346023],[125,-42,77,0.4923513804822828],[125,-42,78,0.49848279882092483],[125,-42,79,0.5045336323228438],[125,-41,64,0.4064484928445614],[125,-41,65,0.4139462783595616],[125,-41,66,0.42147007163895245],[125,-41,67,0.4290104420920936],[125,-41,68,0.4357165073476382],[125,-41,69,0.4422069293155463],[125,-41,70,0.44868981435575134],[125,-41,71,0.45515570883304135],[125,-41,72,0.4615966703995343],[125,-41,73,0.4680056042834215],[125,-41,74,0.47437567462597585],[125,-41,75,0.4806997923342553],[125,-41,76,0.48697018083360255],[125,-41,77,0.49317802101179375],[125,-41,78,0.4993131765464912],[125,-41,79,0.5053640007009604],[125,-40,64,0.40842457188657044],[125,-40,65,0.4157823894739082],[125,-40,66,0.42316341961803877],[125,-40,67,0.429808423936525],[125,-40,68,0.43629587572709067],[125,-40,69,0.44279279024300294],[125,-40,70,0.4492873828818584],[125,-40,71,0.4557696003658816],[125,-40,72,0.4622305223513038],[125,-40,73,0.4686618241908975],[125,-40,74,0.4750553020976874],[125,-40,75,0.48140246189459496],[125,-40,76,0.48769417246347857],[125,-40,77,0.4939203849285866],[125,-40,78,0.5000699185246593],[125,-40,79,0.5061303140100258],[125,-39,64,0.41034564912255556],[125,-39,65,0.4173270008013532],[125,-39,66,0.4237498662389742],[125,-39,67,0.4302157728841607],[125,-39,68,0.43671113943027773],[125,-39,69,0.4432223288107137],[125,-39,70,0.44973732844399317],[125,-39,71,0.45624529276178527],[125,-39,72,0.4627360980593759],[125,-39,73,0.4691999448661389],[125,-39,74,0.47562700877815606],[125,-39,75,0.48200714064400607],[125,-39,76,0.4883296169376046],[125,-39,77,0.4945829410895129],[125,-39,78,0.5007546964809891],[125,-39,79,0.5068314517341845],[125,-38,64,0.41122269261707023],[125,-38,65,0.41758343724522284],[125,-38,66,0.42400564914364064],[125,-38,67,0.4304779808933517],[125,-38,68,0.4369866167858347],[125,-38,69,0.443518262633458],[125,-38,70,0.45006050870862824],[125,-38,71,0.45660151906439245],[125,-38,72,0.4631297511637244],[125,-38,73,0.46963370826566114],[125,-38,74,0.47610172519726585],[125,-38,75,0.4825217881034922],[125,-38,76,0.48888138872615167],[125,-38,77,0.4951674137188267],[125,-38,78,0.5013660694571805],[125,-38,79,0.5074628427543714],[125,-37,64,0.411363124259102],[125,-37,65,0.41771585378115755],[125,-37,66,0.4241395215819803],[125,-37,67,0.4306212465554498],[125,-37,68,0.4371468592762856],[125,-37,69,0.4437032389574198],[125,-37,70,0.4502773898135068],[125,-37,71,0.45685628683670815],[125,-37,72,0.4634267685436369],[125,-37,73,0.4699754467654397],[125,-37,74,0.476488633795567],[125,-37,75,0.4829522871891824],[125,-37,76,0.48935197248557744],[125,-37,77,0.49567284410072093],[125,-37,78,0.5018996446113977],[125,-37,79,0.5080167226256691],[125,-36,64,0.4114084776854936],[125,-36,65,0.4177532512814267],[125,-36,66,0.42417906641885206],[125,-36,67,0.4306715125603049],[125,-36,68,0.4372159355580298],[125,-36,69,0.4437991811202492],[125,-36,70,0.45040746311903285],[125,-36,71,0.4570263729832598],[125,-36,72,0.46364095047167897],[125,-36,73,0.4702357550296583],[125,-36,74,0.476794937734625],[125,-36,75,0.48330231383282546],[125,-36,76,0.489741435867672],[125,-36,77,0.4960956673976409],[125,-36,78,0.5023482572994915],[125,-36,79,0.5084824146505104],[125,-35,64,0.41138831844653323],[125,-35,65,0.4177239057466848],[125,-35,66,0.42415099631691],[125,-35,67,0.4306536911593604],[125,-35,68,0.4372167120915603],[125,-35,69,0.443826631928501],[125,-35,70,0.4504686595024263],[125,-35,71,0.4571268171498099],[125,-35,72,0.4637841908522559],[125,-35,73,0.4704231639808143],[125,-35,74,0.4770256343499753],[125,-35,75,0.48357321430529315],[125,-35,76,0.49004741358814774],[125,-35,77,0.49642980474239007],[125,-35,78,0.5027021708503627],[125,-35,79,0.5088466354097405],[125,-34,64,0.4113307090661782],[125,-34,65,0.41765449595332105],[125,-34,66,0.42408032440072735],[125,-34,67,0.4305908838624982],[125,-34,68,0.43717012828739715],[125,-34,69,0.4438040920507225],[125,-34,70,0.45047675950893656],[125,-34,71,0.4571704122532181],[125,-34,72,0.4638660563555092],[125,-34,73,0.47054381595623607],[125,-34,74,0.47718329261773057],[125,-34,75,0.4837638899067194],[125,-34,76,0.49026510271217943],[125,-34,77,0.4966667708509463],[125,-34,78,0.5029492965623052],[125,-34,79,0.5090938255437539],[125,-33,64,0.4112612922961674],[125,-33,65,0.41756922246549205],[125,-33,66,0.4239895266009281],[125,-33,67,0.43050359318191267],[125,-33,68,0.43709446414661934],[125,-33,69,0.4437473515936242],[125,-33,70,0.45044479774041096],[125,-33,71,0.45716719075838896],[125,-33,72,0.46389336332171016],[125,-33,73,0.47060114020259713],[125,-33,74,0.4772678340766868],[125,-33,75,0.48387068876422523],[125,-33,76,0.48973192549946415],[125,-33,77,0.49549756162007486],[125,-33,78,0.5012215576482674],[125,-33,79,0.5068953192364424],[125,-32,64,0.41120236318616804],[125,-32,65,0.41748891565106505],[125,-32,66,0.4238976934394714],[125,-32,67,0.4304089243246695],[125,-32,68,0.4370045984576153],[125,-32,69,0.44366881310639944],[125,-32,70,0.45038245993501896],[125,-32,71,0.4571239053899006],[125,-32,72,0.46386975138077513],[125,-32,73,0.4705955279301348],[125,-32,74,0.47633875848547436],[125,-32,75,0.481967297437563],[125,-32,76,0.48758104715267303],[125,-32,77,0.49317641329407963],[125,-32,78,0.49874781028574233],[125,-32,79,0.5042875140346501],[125,-31,64,0.4111719276285731],[125,-31,65,0.41743013045189026],[125,-31,66,0.42381966912209473],[125,-31,67,0.4303197748340689],[125,-31,68,0.4369112557027628],[125,-31,69,0.44357680434439195],[125,-31,70,0.45029547127289044],[125,-31,71,0.45704350304285885],[125,-31,72,0.46341237603871505],[125,-31,73,0.4688486998022755],[125,-31,74,0.4742837497178588],[125,-31,75,0.4797194163709532],[125,-31,76,0.48515578736788145],[125,-31,77,0.4905907951543616],[125,-31,78,0.4960199517106705],[125,-31,79,0.5014361707794227],[125,-30,64,0.4111827451669617],[125,-30,65,0.4174042257822666],[125,-30,66,0.4237651759205272],[125,-30,67,0.43024401028953313],[125,-30,68,0.43682023993125324],[125,-30,69,0.443474879218999],[125,-30,70,0.4501849745319187],[125,-30,71,0.4562602005144089],[125,-30,72,0.46148228844803085],[125,-30,73,0.46671007820532023],[125,-30,74,0.4719491364531403],[125,-30,75,0.47720338629761666],[125,-30,76,0.482474598300888],[125,-30,77,0.48776198403446314],[125,-30,78,0.49306189302596654],[125,-30,79,0.4983676137952544],[125,-29,64,0.41124135399991807],[125,-29,65,0.4174164265647842],[125,-29,66,0.4237379219549908],[125,-29,67,0.4301836242949819],[125,-29,68,0.4367316539666773],[125,-29,69,0.4433611054653536],[125,-29,70,0.4492445542081946],[125,-29,71,0.4542503603009496],[125,-29,72,0.45926442129248957],[125,-29,73,0.46429570589262237],[125,-29,74,0.4693519011817228],[125,-29,75,0.4744387292417453],[125,-29,76,0.4795593806418082],[125,-29,77,0.4847140658514678],[125,-29,78,0.48989968547207485],[125,-29,79,0.4951096199900804],[125,-28,64,0.4113470762668555],[125,-28,65,0.4174648665598949],[125,-28,66,0.42373469062669095],[125,-28,67,0.430133881116501],[125,-28,68,0.43663910244018],[125,-28,69,0.4423635359316136],[125,-28,70,0.44715695209141937],[125,-28,71,0.4519572648099506],[125,-28,72,0.45677634369181336],[125,-28,73,0.46162534685573253],[125,-28,74,0.4665138501849149],[125,-28,75,0.4714491062414594],[125,-28,76,0.47643543414548156],[125,-28,77,0.48147374151773775],[125,-28,78,0.48656117937726423],[125,-28,79,0.4916909306748041],[125,-27,64,0.4114910018712547],[125,-27,65,0.4175396103061773],[125,-27,66,0.4237444101020997],[125,-27,67,0.4300824394732435],[125,-27,68,0.4356130656708974],[125,-27,69,0.4402028011083615],[125,-27,70,0.44479483340199855],[125,-27,71,0.4494032210886268],[125,-27,72,0.4540420888376065],[125,-27,73,0.4587245608382866],[125,-27,74,0.463461835027817],[125,-27,75,0.4682623996939741],[125,-27,76,0.4731313937701955],[125,-27,77,0.4780701119149481],[125,-27,78,0.4830756552374216],[125,-27,79,0.48814072829847044],[125,-26,64,0.4116549492775392],[125,-26,65,0.41762165266046736],[125,-26,66,0.4237472014139098],[125,-26,67,0.42899026115491534],[125,-26,68,0.43338875073442745],[125,-26,69,0.437782501564591],[125,-26,70,0.44218684780233025],[125,-26,71,0.44661817077356486],[125,-26,72,0.45109263213720535],[125,-26,73,0.4556250573542162],[125,-26,74,0.4602279712325295],[125,-26,75,0.4649107870892105],[125,-26,76,0.46967915083214573],[125,-26,77,0.4745344410170774],[125,-26,78,0.4794734256848401],[125,-26,79,0.4844880765304219],[125,-25,64,0.41181048790752195],[125,-25,65,0.41768199029673614],[125,-25,66,0.42249649628409475],[125,-25,67,0.42671884291072915],[125,-25,68,0.43092787729429494],[125,-25,69,0.43513917502384886],[125,-25,70,0.43937044831163596],[125,-25,71,0.44364016987065685],[125,-25,72,0.4479662629150866],[125,-25,73,0.45236495119651676],[125,-25,74,0.4568497708439343],[125,-25,75,0.4614307455259035],[125,-25,76,0.4661137261945391],[125,-25,77,0.47089989640512303],[125,-25,78,0.47578544393565975],[125,-25,79,0.48076139915968596],[125,-24,64,0.41192353573346957],[125,-24,65,0.4161322534533212],[125,-24,66,0.42019707901310427],[125,-24,67,0.42423705754243],[125,-24,68,0.4282694417856824],[125,-24,69,0.4323122242548828],[125,-24,70,0.43638525872549794],[125,-24,71,0.44050882897776095],[125,-24,72,0.44470231195834686],[125,-24,73,0.44898300924120993],[125,-24,74,0.45336514852500914],[125,-24,75,0.4578590566369356],[125,-24,76,0.46247050523617483],[125,-24,77,0.46720023012743794],[125,-24,78,0.47204362480919426],[125,-24,79,0.4769906085949575],[125,-23,64,0.4098985500360763],[125,-23,65,0.4138204656363923],[125,-23,66,0.4177087062029087],[125,-23,67,0.42157748783895516],[125,-23,68,0.42544567803172617],[125,-23,69,0.4293335031277857],[125,-23,70,0.43326272129487664],[125,-23,71,0.437255152163357],[125,-23,72,0.44133132812121306],[125,-23,73,0.44550932079909156],[125,-23,74,0.4498037444281572],[125,-23,75,0.4542249374696876],[125,-23,76,0.45877832362306786],[125,-23,77,0.4634639530211441],[125,-23,78,0.4682762241221119],[125,-23,79,0.47320378650790484],[125,-22,64,0.4075927733983787],[125,-22,65,0.41134091035174397],[125,-22,66,0.4150616289487176],[125,-22,67,0.4187696247681615],[125,-22,68,0.42248524777421104],[125,-22,69,0.42623077664027503],[125,-22,70,0.4300296465624583],[125,-22,71,0.4339049538365333],[125,-22,72,0.43787810850913184],[125,-22,73,0.4419676678763982],[125,-22,74,0.44618835243790816],[125,-22,75,0.45055024561525236],[125,-22,76,0.4550581782386888],[125,-22,77,0.45971129849467235],[125,-22,78,0.4645028277154229],[125,-22,79,0.46942000208170037],[125,-21,64,0.4051423854760679],[125,-21,65,0.4087234084860172],[125,-21,66,0.4122845619311722],[125,-21,67,0.4158409603400475],[125,-21,68,0.41941429606106906],[125,-21,69,0.42302872541767306],[125,-21,70,0.42670915049742997],[125,-21,71,0.43047971015234565],[125,-21,72,0.4343624449453805],[125,-21,73,0.43837614755725346],[125,-21,74,0.44253540016999326],[125,-21,75,0.4468498000324153],[125,-21,76,0.4513233740946389],[125,-21,77,0.45595418327705645],[125,-21,78,0.46073411661749186],[125,-21,79,0.46564887522141163],[125,-20,64,0.40257831016813816],[125,-20,65,0.4059974763281936],[125,-20,66,0.4094054474948697],[125,-20,67,0.4128176813987896],[125,-20,68,0.41625707002880374],[125,-20,69,0.41974948659699535],[125,-20,70,0.42332111655332805],[125,-20,71,0.4269969433114446],[125,-20,72,0.4307994335341954],[125,-20,73,0.43474741169558695],[125,-20,74,0.43885512533238613],[125,-20,75,0.4431315020757209],[125,-20,76,0.4475795992242558],[125,-20,77,0.4521962462891182],[125,-20,78,0.4569718806105062],[125,-20,79,0.46189057581963816],[125,-19,64,0.3999324455605518],[125,-19,65,0.4031931433778348],[125,-19,66,0.4064522069513418],[125,-19,67,0.4097253481973267],[125,-19,68,0.41303651985264],[125,-19,69,0.41641317402965244],[125,-19,70,0.419882633921176],[125,-19,71,0.42347057863625964],[125,-19,72,0.4271997532810223],[125,-19,73,0.4310888716521791],[125,-19,74,0.4351517128461543],[125,-19,75,0.4393964127530017],[125,-19,76,0.44382495106576164],[125,-19,77,0.44843283409567875],[125,-19,78,0.4532089733458168],[125,-19,79,0.45813575946289115],[125,-18,64,0.3972350275131782],[125,-18,65,0.40033809729932773],[125,-18,66,0.40344965793725374],[125,-18,67,0.4065855758147832],[125,-18,68,0.40977073719008555],[125,-18,69,0.41303406851138935],[125,-18,70,0.41640393629182504],[125,-18,71,0.4199066306915433],[125,-18,72,0.4235651004863884],[125,-18,73,0.4273978839013387],[125,-18,74,0.43141823649929945],[125,-18,75,0.4356334569715653],[125,-18,76,0.4400444113280689],[125,-18,77,0.44464525563672963],[125,-18,78,0.4494233571159319],[125,-18,79,0.4543594130452145],[125,-17,64,0.3944992074002169],[125,-17,65,0.3974430885436741],[125,-17,66,0.4004059211857636],[125,-17,67,0.4034036210969284],[125,-17,68,0.4064618910236389],[125,-17,69,0.4096110522561644],[125,-17,70,0.41288045802922957],[125,-17,71,0.4162969719737423],[125,-17,72,0.4198837248293586],[125,-17,73,0.42365907049608664],[125,-17,74,0.42763574250469255],[125,-17,75,0.43182021163049134],[125,-17,76,0.4362122450169415],[125,-17,77,0.4408046668177493],[125,-17,78,0.4455833200131422],[125,-17,79,0.45052722871049994],[125,-16,64,0.39169577113993864],[125,-16,65,0.3944802239943377],[125,-16,66,0.3972948044411867],[125,-16,67,0.4001553744460632],[125,-16,68,0.4030883108591405],[125,-16,69,0.4061252042635608],[125,-16,70,0.40929627769588794],[125,-16,71,0.41262886014170486],[125,-16,72,0.4161461655380499],[125,-16,73,0.4198662744886627],[125,-16,74,0.4238013196587395],[125,-16,75,0.4279568754500262],[125,-16,76,0.4323315521891714],[125,-16,77,0.43691679469589806],[125,-16,78,0.4416968847369966],[125,-16,79,0.4466491465204201],[125,-15,64,0.38879496347751286],[125,-15,65,0.3914216460964474],[125,-15,66,0.3940907229957224],[125,-15,67,0.396817894527364],[125,-15,68,0.3996300357042],[125,-15,69,0.4025598244232369],[125,-15,70,0.40563816494589444],[125,-15,71,0.4088926615185847],[125,-15,72,0.4123464246356882],[125,-15,73,0.4160170828577323],[125,-15,74,0.4199160010322585],[125,-15,75,0.4240477053892872],[125,-15,76,0.42840951560669377],[125,-15,77,0.43299138356682293],[125,-15,78,0.43777593815870774],[125,-15,79,0.442738735123333],[125,-14,64,0.38577729290056306],[125,-14,65,0.38824930102069816],[125,-14,66,0.39077726150069153],[125,-14,67,0.3933765934288286],[125,-14,68,0.3960744635916904],[125,-14,69,0.3989044093235424],[125,-14,70,0.4018977726579064],[125,-14,71,0.4050821828343936],[125,-14,72,0.4084803980470799],[125,-14,73,0.4121093546963647],[125,-14,74,0.41597942486424827],[125,-14,75,0.420093882349393],[125,-14,76,0.42444857721477874],[125,-14,77,0.4290318184209288],[125,-14,78,0.4338244637460763],[125,-14,79,0.4388002158342953],[125,-13,64,0.3826315116580683],[125,-13,65,0.38495296974296866],[125,-13,66,0.3873452827422364],[125,-13,67,0.3898234523890841],[125,-13,68,0.39241470481359575],[125,-13,69,0.39515317369237896],[125,-13,70,0.3980703563046507],[125,-13,71,0.40119361627859346],[125,-13,72,0.4045450712739466],[125,-13,73,0.408140688926108],[125,-13,74,0.41198959163507065],[125,-13,75,0.41609357039327527],[125,-13,76,0.42044680745830104],[125,-13,77,0.42503580729299356],[125,-13,78,0.4298395348217376],[125,-13,79,0.4348297596901523],[125,-12,64,0.37935276645500304],[125,-12,65,0.3815284673723432],[125,-12,66,0.3837912006780607],[125,-12,67,0.38615539594996123],[125,-12,68,0.3886480856660152],[125,-12,69,0.39130371221159604],[125,-12,70,0.3941536212762864],[125,-12,71,0.3972245978286616],[125,-12,72,0.40053781150856765],[125,-12,73,0.40410796961721684],[125,-12,74,0.4079426781432216],[125,-12,75,0.41204201087059067],[125,-12,76,0.41639828622481867],[125,-12,77,0.4209960511292358],[125,-12,78,0.4258122707704399],[125,-12,79,0.4308167228118816],[125,-11,64,0.37594092007139135],[125,-11,65,0.37797601092651123],[125,-11,66,0.3801154179099586],[125,-11,67,0.382372824711897],[125,-11,68,0.38477480291527383],[125,-11,69,0.3873558019760738],[125,-11,70,0.39014669851976985],[125,-11,71,0.3931733793376657],[125,-11,72,0.3964557568191988],[125,-11,73,0.4000069897275979],[125,-11,74,0.4038329096045825],[125,-11,75,0.40793165269812],[125,-11,76,0.41229349691885797],[125,-11,77,0.41690090294949794],[125,-11,78,0.4217287582617357],[125,-11,79,0.4267448224404365],[125,-10,64,0.3723990448417954],[125,-10,65,0.3742987564286153],[125,-10,66,0.3763209284219612],[125,-10,67,0.37847830749657674],[125,-10,68,0.3807967297833651],[125,-10,69,0.38331034640922546],[125,-10,70,0.38604924933969686],[125,-10,71,0.3890381152807857],[125,-10,72,0.39229530338271035],[125,-10,73,0.3958321543324841],[125,-10,74,0.39965249096344935],[125,-10,75,0.4037523201221856],[125,-10,76,0.40811973514986427],[125,-10,77,0.4127350179598629],[125,-10,78,0.41757093933094047],[125,-10,79,0.4225932556884054],[125,-9,64,0.36873208957659287],[125,-9,65,0.3705015068337514],[125,-9,66,0.37241208702933626],[125,-9,67,0.37447543430945857],[125,-9,68,0.3767163748029736],[125,-9,69,0.37916846195316767],[125,-9,70,0.38186070065787675],[125,-9,71,0.3848162654489154],[125,-9,72,0.38805169205625645],[125,-9,73,0.3915762646540372],[125,-9,74,0.3953915987563401],[125,-9,75,0.39949141935074467],[125,-9,76,0.40386153348306564],[125,-9,77,0.4084799961411614],[125,-9,78,0.4133174679338597],[125,-9,79,0.41833776272565765],[125,-8,64,0.3649457221068202],[125,-8,65,0.36658959288376136],[125,-8,66,0.3683935475568321],[125,-8,67,0.37036783204255186],[125,-8,68,0.37253599540595594],[125,-8,69,0.3749307093224209],[125,-8,70,0.3775796124476497],[125,-8,71,0.38050411523587274],[125,-8,72,0.3837186958699404],[125,-8,73,0.3872303844148853],[125,-8,74,0.39103843500296653],[125,-8,75,0.3951341854898506],[125,-8,76,0.39950110365954455],[125,-8,77,0.40411501870359223],[125,-8,78,0.4089445363624179],[125,-8,79,0.4139516357961966],[125,-7,64,0.361045350184015],[125,-7,65,0.3625679295297995],[125,-7,66,0.36426937228961626],[125,-7,67,0.366158345359336],[125,-7,68,0.36825686857885115],[125,-7,69,0.3705964715393911],[125,-7,70,0.3732031794396261],[125,-7,71,0.3760964154896121],[125,-7,72,0.37928841028197763],[125,-7,73,0.3827837902280827],[125,-7,74,0.386579344710369],[125,-7,75,0.3906639712491968],[125,-7,76,0.39501879763671227],[125,-7,77,0.39961747965521943],[125,-7,78,0.4044266726775925],[125,-7,79,0.40940667514490975],[125,-6,64,0.35703532396071674],[125,-6,65,0.35844025104886246],[125,-6,66,0.3600423157129078],[125,-6,67,0.3618483856547118],[125,-6,68,0.36387872134065286],[125,-6,69,0.3661634813542025],[125,-6,70,0.36872686953458583],[125,-6,71,0.37158614418402863],[125,-6,72,0.3747511482641147],[125,-6,73,0.3782240078959143],[125,-6,74,0.38199899866432535],[125,-6,75,0.3860625788932673],[125,-6,76,0.3903935887325197],[125,-6,77,0.39496361358241144],[125,-6,78,0.39973751008359626],[125,-6,79,0.4046740926180402],[125,-5,64,0.35291832371309734],[125,-5,65,0.3542085284101581],[125,-5,66,0.3557132859735884],[125,-5,67,0.3574374513808536],[125,-5,68,0.359399324169436],[125,-5,69,0.36162750098874613],[125,-5,70,0.36414420165512973],[125,-5,71,0.3669643924152809],[125,-5,72,0.37009544247727716],[125,-5,73,0.37353693662112486],[125,-5,74,0.37728064324712135],[125,-5,75,0.38131063690918937],[125,-5,76,0.3856035740777206],[125,-5,77,0.3901291205855796],[125,-5,78,0.3948505289359372],[125,-5,79,0.3997253633935106],[125,-4,64,0.3486949368383643],[125,-4,65,0.34987257281362716],[125,-4,66,0.35128098785295414],[125,-4,67,0.3529228233687278],[125,-4,68,0.35481425081962176],[125,-4,69,0.3569821574294374],[125,-4,70,0.3594466660149806],[125,-4,71,0.36222037743003316],[125,-4,72,0.365308156951033],[125,-4,73,0.36870706323243857],[125,-4,74,0.37240641905897726],[125,-4,75,0.3763880228366191],[125,-4,76,0.3806264994877821],[125,-4,77,0.385089789151942],[125,-4,78,0.3897397718444826],[125,-4,79,0.39453302599600887],[125,-3,64,0.34436342846100676],[125,-3,65,0.3454298296211366],[125,-3,66,0.3467417513293587],[125,-3,67,0.3482994390501504],[125,-3,68,0.35011680822616914],[125,-3,69,0.3522189367208973],[125,-3,70,0.3546237899796632],[125,-3,71,0.3573415855491387],[125,-3,72,0.36037471079238004],[125,-3,73,0.363717768589045],[125,-3,74,0.3673577501298366],[125,-3,75,0.37127433365744517],[125,-3,76,0.3754403077588179],[125,-3,77,0.3798221175782607],[125,-3,78,0.3843805321014184],[125,-3,79,0.3890714304580766],[125,-2,64,0.3399197102113787],[125,-2,65,0.34087536712866956],[125,-2,66,0.34208955003080943],[125,-2,67,0.34355994969480425],[125,-2,68,0.34529814038434076],[125,-2,69,0.3473273408824618],[125,-2,70,0.3496633528339545],[125,-2,71,0.35231404795874405],[125,-2,72,0.35527941651986156],[125,-2,73,0.3585517283568921],[125,-2,74,0.3621158054902673],[125,-2,75,0.36594940507585605],[125,-2,76,0.37002371127291034],[125,-2,77,0.374303934384051],[125,-2,78,0.3787500154371858],[125,-2,79,0.38331743420718867],[125,-1,64,0.3353575118884815],[125,-1,65,0.33620206477617964],[125,-1,66,0.33731621402156775],[125,-1,67,0.33869496491165935],[125,-1,68,0.34034751021503906],[125,-1,69,0.34229521117241074],[125,-1,70,0.3445517528515311],[125,-1,71,0.3471227523935361],[125,-1,72,0.3500059356403468],[125,-1,73,0.3531914103358647],[125,-1,74,0.3566620348181007],[125,-1,75,0.36039388092609653],[125,-1,76,0.36435678966173096],[125,-1,77,0.3685150179745152],[125,-1,78,0.3728279748805812],[125,-1,79,0.37725104498609335],[125,0,64,0.3306687607851173],[125,0,65,0.33140100545983087],[125,0,66,0.3324118414328549],[125,0,67,0.3336934887243823],[125,0,68,0.3352527634760284],[125,0,69,0.33710922146146916],[125,0,70,0.3392745300815191],[125,0,71,0.34175219373517884],[125,0,72,0.3445378540599013],[125,0,73,0.3476196704637487],[125,0,74,0.35097877979433545],[125,0,75,0.35458983382994197],[125,0,76,0.35842161312804954],[125,0,77,0.36243771562777366],[125,0,78,0.3665973182783434],[125,0,79,0.3708560098563561],[125,1,64,0.32584417125641296],[125,1,65,0.3264620738781733],[125,1,66,0.3273654104137515],[125,1,67,0.3285435484174961],[125,1,68,0.3300009758161914],[125,1,69,0.33175554291568227],[125,1,70,0.3338170463741371],[125,1,71,0.3361870655989908],[125,1,72,0.3388593801842888],[125,1,73,0.3418204513629778],[125,1,74,0.3450499662627872],[125,1,75,0.34852144362911247],[125,1,76,0.3522028995621669],[125,1,77,0.356057571710341],[125,1,78,0.36004470026998925],[125,1,79,0.36344499474066444],[125,2,64,0.32087404684957666],[125,2,65,0.32137476230214707],[125,2,66,0.3221655924266208],[125,2,67,0.32323301730527976],[125,2,68,0.3245792847311602],[125,2,69,0.3262206828673817],[125,2,70,0.32816532717469654],[125,2,71,0.33041309961614146],[125,2,72,0.33295617510221714],[125,2,73,0.33577959598227425],[125,2,74,0.3388618933300821],[125,2,75,0.34217575368042663],[125,2,76,0.3456887297911307],[125,2,77,0.34936399393255885],[125,2,78,0.35316113214702777],[125,2,79,0.35561634028305616],[125,3,64,0.3157493254818172],[125,3,65,0.31612922017890477],[125,3,66,0.3168018063854217],[125,3,67,0.31775067131743234],[125,3,68,0.31897594394633677],[125,3,69,0.32049253000679445],[125,3,70,0.32230708863854807],[125,3,71,0.3244180641394307],[125,3,72,0.32681631154968754],[125,3,73,0.3294857549270768],[125,3,74,0.3324040770348869],[125,3,75,0.335543439107097],[125,3,76,0.33887122930514735],[125,3,77,0.34235083844037434],[125,3,78,0.34594246150741426],[125,3,79,0.3477494697515317],[125,4,64,0.31046284179523137],[125,4,65,0.3107175149034163],[125,4,66,0.31126547633285756],[125,4,67,0.31208743958124063],[125,4,68,0.31318156015292514],[125,4,69,0.31456156812000924],[125,4,70,0.31623291736077913],[125,4,71,0.3181928976316796],[125,4,72,0.3204313478216599],[125,4,73,0.3229313874563294],[125,4,74,0.32567016516204256],[125,4,75,0.3286196227737427],[125,4,76,0.3317472737516562],[125,4,77,0.3350169945616837],[125,4,78,0.33838982767465065],[125,4,79,0.3398458984080379],[125,5,64,0.3050108127614538],[125,5,65,0.3051351104914338],[125,5,66,0.30555150017752153],[125,5,67,0.3062378573863501],[125,5,68,0.30719052138065844],[125,5,69,0.30842226855161786],[125,5,70,0.3099376137534116],[125,5,71,0.3117329885464396],[125,5,72,0.313797529104736],[125,5,73,0.3161138691381337],[125,5,74,0.3186589365399899],[125,5,75,0.32140475247431827],[125,5,76,0.3243192316260916],[125,5,77,0.32736698235599015],[125,5,78,0.3305101055278406],[125,5,79,0.3319018536280645],[125,6,64,0.29939455607816967],[125,6,65,0.29938257481607583],[125,6,66,0.2996599408406091],[125,6,67,0.3002017331403502],[125,6,68,0.30100262841706066],[125,6,69,0.302074672091145],[125,6,70,0.303421708507585],[125,6,71,0.30503960930506613],[125,6,72,0.3069171214258687],[125,6,73,0.30903670838731506],[125,6,74,0.3113753835379416],[125,6,75,0.3139055340509339],[125,6,76,0.31659573444290673],[125,6,77,0.31941154844833697],[125,6,78,0.32231631813054373],[125,6,79,0.3239079731441402],[125,7,64,0.2936250671017739],[125,7,65,0.29347033359534364],[125,7,66,0.29360090747824513],[125,7,67,0.2939891318526344],[125,7,68,0.2946281684132279],[125,7,69,0.2955295397516861],[125,7,70,0.2966966745678812],[125,7,71,0.29812516912914416],[125,7,72,0.2998036798681777],[125,7,73,0.301714799170865],[125,7,74,0.3038359130999687],[125,7,75,0.30614003985288674],[125,7,76,0.30859664780926893],[125,7,77,0.3111724520877209],[125,7,78,0.3138321886015306],[125,7,79,0.3158449562281367],[125,8,64,0.2877301193016423],[125,8,65,0.2874265398784291],[125,8,66,0.2874030247411765],[125,8,67,0.28762937725331417],[125,8,68,0.2880974439501856],[125,8,69,0.28881841247015794],[125,8,70,0.2897955190621581],[125,8,71,0.2910243294741011],[125,8,72,0.29249366252588455],[125,8,73,0.29418648839351746],[125,8,74,0.2960808003808436],[125,8,75,0.2981504590269084],[125,8,76,0.30036600747336467],[125,8,77,0.302695457097587],[125,8,78,0.30510504250471054],[125,8,79,0.30755994506384066],[125,9,64,0.28173753420184183],[125,9,65,0.28127978516345803],[125,9,66,0.2810957244140144],[125,9,67,0.28115296037145365],[125,9,68,0.2814422817958493],[125,9,69,0.28197470425810256],[125,9,70,0.28275345552753],[125,9,71,0.28377426673781025],[125,9,72,0.28502631609402945],[125,9,73,0.28649314021287337],[125,9,74,0.2881535119074442],[125,9,75,0.28998228331619297],[125,9,76,0.2919511933675352],[125,9,77,0.29402963866791926],[125,9,78,0.29618540700264767],[125,9,79,0.2983853727436593],[125,10,64,0.2756718012599201],[125,10,65,0.2750554498042729],[125,10,66,0.27470537298792186],[125,10,67,0.27458744717445177],[125,10,68,0.27469169938283633],[125,10,69,0.27502910429210736],[125,10,70,0.2756030210535547],[125,10,71,0.276409489878614],[125,10,72,0.27743818781758567],[125,10,73,0.2786733462695059],[125,10,74,0.2800946290715616],[125,10,75,0.28167797011834833],[125,10,76,0.28339636956660474],[125,10,77,0.28522064778975226],[125,10,78,0.28712015635973925],[125,10,79,0.2890634454492103],[125,11,64,0.26955644625648034],[125,11,65,0.26877806085734984],[125,11,66,0.26825759945127037],[125,11,67,0.26795975490492846],[125,11,68,0.26787410715469556],[125,11,69,0.26801168206722314],[125,11,70,0.26837606089562005],[125,11,71,0.26896368152583655],[125,11,72,0.269764801046616],[125,11,73,0.27076441505662124],[125,11,74,0.2719431325938191],[125,11,75,0.27327800568608174],[125,11,76,0.2747433126386737],[125,11,77,0.27631129429364804],[125,11,78,0.27795284261922176],[125,11,79,0.27963814111167623],[125,12,64,0.2634167123407664],[125,12,65,0.2624739585207887],[125,12,66,0.2617799250998263],[125,12,67,0.26129872118808883],[125,12,68,0.2610197916088347],[125,12,69,0.2609542582385788],[125,12,70,0.2611059608315754],[125,12,71,0.2614717660500457],[125,12,72,0.2620425343159805],[125,12,73,0.2628040389921745],[125,12,74,0.2637378368126336],[125,12,75,0.2648220886071556],[125,12,76,0.26603232949180067],[125,12,77,0.26734218782586805],[125,12,78,0.2687240523678605],[125,12,79,0.27014968719533794],[125,13,64,0.25728255962636226],[125,13,65,0.25617427698873335],[125,13,66,0.25530470107249503],[125,13,67,0.2546379714344314],[125,13,68,0.25416368430435826],[125,13,69,0.25389304608215296],[125,13,70,0.2538301317731934],[125,13,71,0.2539722086047481],[125,13,72,0.25431070738520123],[125,13,73,0.25483214198354476],[125,13,74,0.2555189758821936],[125,13,75,0.2563504348913147],[125,13,76,0.2573032652496908],[125,13,77,0.25835243647532896],[125,13,78,0.2594717884694427],[125,13,79,0.2606346225176162],[125,14,64,0.25119199067246883],[125,14,65,0.24991824704865975],[125,14,66,0.24887236086834744],[125,14,67,0.2480190916490352],[125,14,68,0.24734842372146956],[125,14,69,0.24687157015154745],[125,14,70,0.24659275281190376],[125,14,71,0.24650955083426818],[125,14,72,0.24661387936402507],[125,14,73,0.24689291196162652],[125,14,74,0.2473299456352589],[125,14,75,0.24790520763552878],[125,14,76,0.24859660329044575],[125,14,77,0.24938040430717967],[125,14,78,0.25023187711678596],[125,14,79,0.25112585098668494],[125,15,64,0.24519256358250402],[125,15,65,0.2437545187334196],[125,15,66,0.2425324646297177],[125,15,67,0.24149231093740195],[125,15,68,0.2406246034460067],[125,15,69,0.23994042306869387],[125,15,70,0.23944399852960793],[125,15,71,0.2391330918212159],[125,15,72,0.2389999886533472],[125,15,73,0.23903242740167677],[125,15,74,0.23921446557201143],[125,15,75,0.23952728295605882],[125,15,76,0.239949920814189],[125,15,77,0.24045995658051852],[125,15,78,0.2410341137461583],[125,15,79,0.24164880673492303],[125,16,64,0.23932405724648095],[125,16,65,0.23772332976913102],[125,16,66,0.23632528266946987],[125,16,67,0.23509744639356725],[125,16,68,0.23403107112239543],[125,16,69,0.2331369651069632],[125,16,70,0.23241924351546378],[125,16,71,0.23187575992447246],[125,16,72,0.2314991098265332],[125,16,73,0.23127756690817963],[125,16,74,0.2311959511513527],[125,16,75,0.23123642798486954],[125,16,76,0.23137923788611037],[125,16,77,0.23160335600579007],[125,16,78,0.23188708156117008],[125,16,79,0.2322085569124505],[125,17,64,0.23360268672442597],[125,17,65,0.2318412295585964],[125,17,66,0.23026738212511544],[125,17,67,0.2288507104296429],[125,17,68,0.22758329298025057],[125,17,69,0.22647554051129654],[125,17,70,0.22553136794322776],[125,17,71,0.22474867710746688],[125,17,72,0.22412037137854285],[125,17,73,0.22363529698250112],[125,17,74,0.22327911007905055],[125,17,75,0.2230350689038064],[125,17,76,0.2228847504449549],[125,17,77,0.22280869131492126],[125,17,78,0.22278695266267354],[125,17,79,0.2227996091530807],[125,18,64,0.2280229040846438],[125,18,65,0.22610302383558104],[125,18,66,0.22435377819737062],[125,18,67,0.2227471271459892],[125,18,68,0.22127608323912806],[125,18,69,0.2199505522376167],[125,18,70,0.21877419139136486],[125,18,71,0.21774494537603062],[125,18,72,0.21685606760015],[125,18,73,0.21609706193295847],[125,18,74,0.21545454400477976],[125,18,75,0.21491302143628202],[125,18,76,0.21445559255553556],[125,18,77,0.21395705270204815],[125,18,78,0.21299178108600703],[125,18,79,0.21209360281354703],[125,19,64,0.2187401271251733],[125,19,65,0.2173732795517847],[125,19,66,0.21599854116068926],[125,19,67,0.21464570811791409],[125,19,68,0.2133235866767019],[125,19,69,0.21202418100091736],[125,19,70,0.21074399958313045],[125,19,71,0.20948354887012727],[125,19,72,0.2082463917373399],[125,19,73,0.20703828988973758],[125,19,74,0.20586643097080484],[125,19,75,0.20473874094314712],[125,19,76,0.20366328208708961],[125,19,77,0.20264773674917824],[125,19,78,0.20169897676383824],[125,19,79,0.2008227182683519],[125,20,64,0.2079188702794647],[125,20,65,0.20640150117572315],[125,20,66,0.20489392602876313],[125,20,67,0.20342316717369258],[125,20,68,0.20199713953354304],[125,20,69,0.20060874561472927],[125,20,70,0.19925506342228497],[125,20,71,0.1979367880356176],[125,20,72,0.1966572947444708],[125,20,73,0.1954217921828817],[125,20,74,0.19423656616643828],[125,20,75,0.19310831470539647],[125,20,76,0.19204357443534842],[125,20,77,0.19104823848007854],[125,20,78,0.1901271655412448],[125,20,79,0.18928387979645567],[125,21,64,0.1967928172114867],[125,21,65,0.19512189442661673],[125,21,66,0.19347988997357998],[125,21,67,0.19189086702914535],[125,21,68,0.1903617927818725],[125,21,69,0.18888651189075656],[125,21,70,0.1874626603525083],[125,21,71,0.18609105968466189],[125,21,72,0.18477479282708925],[125,21,73,0.18351837575200103],[125,21,74,0.18232702540111642],[125,21,75,0.18120602432234567],[125,21,76,0.18016018213487092],[125,21,77,0.17919339371300042],[125,21,78,0.1783082937490132],[125,21,79,0.17750600713337913],[125,22,64,0.1854255770790255],[125,22,65,0.18359769004413962],[125,22,66,0.1818189836554129],[125,22,67,0.18011043954441533],[125,22,68,0.1784780385826337],[125,22,69,0.1769165889870273],[125,22,70,0.17542425606919276],[125,22,71,0.1740019151106282],[125,22,72,0.17265224835239387],[125,22,73,0.17137894290074904],[125,22,74,0.17018599007184324],[125,22,75,0.1690770864400112],[125,22,76,0.16805513659962823],[125,22,77,0.16712185740196903],[125,22,78,0.16627748318967553],[125,22,79,0.16552057132232548],[125,23,64,0.17388658882635033],[125,23,65,0.1718980041361127],[125,23,66,0.1699796387362974],[125,23,67,0.16814933454427353],[125,23,68,0.16641206532164401],[125,23,69,0.1647636011432794],[125,23,70,0.16320259267093085],[125,23,71,0.1617298899112818],[125,23,72,0.1603476684469919],[125,23,73,0.15905866116424489],[125,23,74,0.15786549589706253],[125,23,75,0.15677013913967702],[125,23,76,0.15577344571422633],[125,23,77,0.15487481402427034],[125,23,78,0.15407194627879628],[125,23,79,0.15336071283667885],[125,24,64,0.16224832258707014],[125,24,65,0.1600950510737503],[125,24,66,0.15803341151219866],[125,24,67,0.156078112838103],[125,24,68,0.15423311859758185],[125,24,69,0.15249513561136002],[125,24,70,0.1508632422848769],[125,24,71,0.149338181260882],[125,24,72,0.14792152255320698],[125,24,73,0.1466149360256263],[125,24,74,0.14541957352820153],[125,24,75,0.1443355607260465],[125,24,76,0.14336159838397042],[125,24,77,0.14249467260734114],[125,24,78,0.14172987328859304],[125,24,79,0.14106031977032724],[125,25,64,0.15058358708831257],[125,25,65,0.14826145938411667],[125,25,66,0.14605232544845098],[125,25,67,0.14396783270455094],[125,25,68,0.14201094882165916],[125,25,69,0.14017926900416167],[125,25,70,0.13847222968864772],[125,25,71,0.1368903836691436],[125,25,72,0.1354346070409502],[125,25,73,0.13410541852127625],[125,25,74,0.1329024113484933],[125,25,75,0.13182379767807917],[125,25,76,0.13086606511650178],[125,25,77,0.13002374476691497],[125,25,78,0.1292892899065358],[125,25,79,0.12865306417524625],[125,26,64,0.1389629443533773],[125,26,65,0.13646769178279228],[125,26,66,0.1341063135898363],[125,26,67,0.1318875306183192],[125,26,68,0.1298133459903047],[125,26,69,0.12788217238994679],[125,26,70,0.12609372400737565],[125,26,71,0.12444828304858853],[125,26,72,0.1229459564358815],[125,26,73,0.12158604703605695],[125,26,74,0.1203665395074529],[125,26,75,0.11928370056908498],[125,26,76,0.11833179321528138],[125,26,77,0.11750290412972475],[125,26,78,0.11678688329778862],[125,26,79,0.11617139457585025],[125,27,64,0.1274522331799894],[125,27,65,0.12477957067339504],[125,27,66,0.12226076200213352],[125,27,67,0.11990179718152222],[125,27,68,0.11770376237398571],[125,27,69,0.1156657956347362],[125,27,70,0.11378779973140676],[125,27,71,0.112069709066748],[125,27,72,0.11051080096455423],[125,27,73,0.1091091227119891],[125,27,74,0.1078610343408581],[125,27,75,0.10676086684098476],[125,27,76,0.10580069521816743],[125,27,77,0.10497022553982616],[125,27,78,0.10425679485749385],[125,27,79,0.10364548265716786],[125,28,64,0.11611020309221276],[125,28,65,0.11325591066553684],[125,28,66,0.1105741556287716],[125,28,67,0.1080684494481325],[125,28,68,0.1057390240877732],[125,28,69,0.10358563171116775],[125,28,70,0.1016082675058817],[125,28,71,0.09980644595211566],[125,28,72,0.0981785702931],[125,28,73,0.09672141804991541],[125,28,74,0.09542974245944186],[125,28,75,0.0942959894255378],[125,28,76,0.09331012929438127],[125,28,77,0.09245960249782488],[125,28,78,0.09172937785777917],[125,28,79,0.0911021221104414],[125,29,64,0.10498626071760883],[125,29,65,0.10194625992068523],[125,29,66,0.09909582820613648],[125,29,67,0.09643630108918667],[125,29,68,0.09396713276452368],[125,29,69,0.09168856194029765],[125,29,70,0.08960057538081219],[125,29,71,0.08770220214590797],[125,29,72,0.08599094354145155],[125,29,73,0.08446231846802212],[125,29,74,0.0831095239495509],[125,29,75,0.0819232103381924],[125,29,76,0.08089137041629207],[125,29,77,0.0799993413536252],[125,29,78,0.07922991823229936],[125,29,79,0.07856357762324527],[125,30,64,0.09411834805820454],[125,30,65,0.09088877043458744],[125,30,66,0.08786383695599354],[125,30,67,0.08504305168922321],[125,30,68,0.08242517915314992],[125,30,69,0.0800108044829559],[125,30,70,0.07779980329765039],[125,30,71,0.07579066200405885],[125,30,72,0.07397996917931544],[125,30,73,0.07236202080330656],[125,30,74,0.07092853903474305],[125,30,75,0.06966850394442357],[125,30,76,0.06856809734969933],[125,30,77,0.0676107576378125],[125,30,78,0.06677734422685692],[125,30,79,0.06604641009197801],[125,31,64,0.08353552276235515],[125,31,65,0.08011297016135248],[125,31,66,0.07690793668461318],[125,31,67,0.07391847020204606],[125,31,68,0.07114274249778807],[125,31,69,0.06858153695569946],[125,31,70,0.0662345166645559],[125,31,71,0.0640995781073631],[125,31,72,0.06217240357111861],[125,31,73,0.060446125015721955],[125,31,74,0.05891109901817769],[125,31,75,0.05755479213554542],[125,31,76,0.05636177576830276],[125,31,77,0.05531382935757627],[125,31,78,0.054390150519221775],[125,31,79,0.053567670505343744],[125,32,64,0.07326271927543418],[125,32,65,0.06964478480141598],[125,32,66,0.06625487064919441],[125,32,67,0.0630899602075127],[125,32,68,0.060147734516037256],[125,32,69,0.05742902421686578],[125,32,70,0.054933183498749386],[125,32,71,0.05265748345007726],[125,32,72,0.05059672374304228],[125,32,73,0.04874295263167806],[125,32,74,0.04708529481427566],[125,32,75,0.04560988644719974],[125,32,76,0.04429991634477222],[125,32,77,0.043135772161301836],[125,32,78,0.042095290130653266],[125,32,79,0.041154106736242195],[125,33,64,0.06331033526167067],[125,33,65,0.059495696776733706],[125,33,66,0.055917112745354644],[125,33,67,0.05257089336292346],[125,33,68,0.04945433192562387],[125,33,69,0.04656815944471389],[125,33,70,0.04391133493801511],[125,33,71,0.04148048337524974],[125,33,72,0.03926956355804425],[125,33,73,0.0372696405322514],[125,33,74,0.035468762030316944],[125,33,75,0.03385193818859877],[125,33,76,0.03240122354295647],[125,33,77,0.031095900078145052],[125,33,78,0.02991275989665788],[125,33,79,0.028826485880889496],[125,34,64,0.053671121457169076],[125,34,65,0.04965954318300228],[125,34,66,0.04588958119323821],[125,34,67,0.04235724312905843],[125,34,68,0.039059533790525555],[125,34,69,0.035996950049899126],[125,34,70,0.03316798582338047],[125,34,71,0.03056861783372421],[125,34,72,0.028192025312320082],[125,34,73,0.026028409965582453],[125,34,74,0.024064915664044298],[125,34,75,0.02228564707145198],[125,34,76,0.020671786201255576],[125,34,77,0.019201805671696062],[125,34,78,0.017851777232246707],[125,34,79,0.016595773953581586],[125,35,64,0.04431868919168519],[125,35,65,0.040110995111436856],[125,35,66,0.036148095579305525],[125,35,67,0.03242602172021747],[125,35,68,0.02894157967643263],[125,35,69,0.02569491972229679],[125,35,70,0.022684024551516378],[125,35,71,0.019904243967749466],[125,35,72,0.017348060771885488],[125,35,73,0.01500495234219489],[125,35,74,0.012861347340086919],[125,35,75,0.010900676745387436],[125,35,76,0.00910351820728266],[125,35,77,0.0074478324927990305],[125,35,78,0.005909290627880379],[125,35,79,0.0044616901567939736],[125,36,64,0.035206153768940346],[125,36,65,0.030804168406045693],[125,36,66,0.02664795949873812],[125,36,67,0.022733835078848873],[125,36,68,0.019058476426679634],[125,36,69,0.015621607970463],[125,36,70,0.012420687721066711],[125,36,71,0.009450489410362388],[125,36,72,0.006702907690585036],[125,36,73,0.004166854369558959],[125,36,74,0.0018282451024079277],[125,36,75,-3.299242561994927E-4],[125,36,76,-0.0023274126409712614],[125,36,77,-0.0041864813003380415],[125,36,78,-0.005931555225984204],[125,36,79,-0.007588800015807301],[125,37,64,0.026264918173649673],[125,37,65,0.021671370235050887],[125,37,66,0.017322673043136814],[125,37,67,0.013215559932683345],[125,37,68,0.009346637373749817],[125,37,69,0.005715170670965865],[125,37,70,0.002318122739763815],[125,37,71,-8.502209315921546E-4],[125,37,72,-0.0037984158651348434],[125,37,73,-0.006537935628692207],[125,37,74,-0.009083162902139163],[125,37,75,-0.011451295357803128],[125,37,76,-0.01366216733290428],[125,37,77,-0.01573798845359851],[125,37,78,-0.017703000535257724],[125,37,79,-0.01958305423223796],[125,38,64,0.017406143198874423],[125,38,65,0.012624525022962275],[125,38,66,0.008085305356027153],[125,38,67,0.0037856560193672267],[125,38,68,-2.7787218722153187E-4],[125,38,69,-0.004106448379420194],[125,38,70,-0.007703522183841009],[125,38,71,-0.011075164253897572],[125,38,72,-0.014230207956031471],[125,38,73,-0.017180308539450524],[125,38,74,-0.019939920354286236],[125,38,75,-0.022526192877976834],[125,38,76,-0.024958786494395913],[125,38,77,-0.027259609142565342],[125,38,78,-0.029452475107980738],[125,38,79,-0.03156268736988436],[125,39,64,0.008576722435954877],[125,39,65,0.0036110783855752646],[125,39,66,-0.0011159042532519134],[125,39,67,-0.005606622183544874],[125,39,68,-0.009864564660586706],[125,39,69,-0.013891293191975435],[125,39,70,-0.01769057097194942],[125,39,71,-0.021268679091792406],[125,39,72,-0.024634546829346418],[125,39,73,-0.027799802772401967],[125,39,74,-0.030778747314661684],[125,39,75,-0.0335882472498201],[125,39,76,-0.03624755336631141],[125,39,77,-0.03877804211030912],[125,39,78,-0.041202882533941214],[125,39,79,-0.04354662987973047],[125,40,64,-2.2916810906470006E-4],[125,40,65,-0.005374383583171072],[125,40,66,-0.010285875573292271],[125,40,67,-0.014965517324951097],[125,40,68,-0.019416800670184767],[125,40,69,-0.023641668597489625],[125,40,70,-0.02764412686322829],[125,40,71,-0.03143054577886267],[125,40,72,-0.03500979042484156],[125,40,73,-0.038393274255227136],[125,40,74,-0.041594936591866236],[125,40,75,-0.04463114468808958],[125,40,76,-0.04752052121361438],[125,40,77,-0.05028369817245052],[125,40,78,-0.04503879774211036],[125,40,79,-0.03960682591156542],[125,41,64,-0.009015997714704462],[125,41,65,-0.014336005899966373],[125,41,66,-0.019428300442327927],[125,41,67,-0.024294060960097615],[125,41,68,-0.028936732068218528],[125,41,69,-0.03335865966374538],[125,41,70,-0.03756405200306618],[125,41,71,-0.041559276337675775],[125,41,72,-0.04535300072208795],[125,41,73,-0.04895626090862543],[125,41,74,-0.05238245277372092],[125,41,75,-0.05379950304861634],[125,41,76,-0.048462294814056374],[125,41,77,-0.043108913838840614],[125,41,78,-0.037766644428084035],[125,41,79,-0.032463762258624365],[125,42,64,-0.017786697854250848],[125,42,65,-0.02327652453168542],[125,42,66,-0.02854555308798863],[125,42,67,-0.03359404645339882],[125,42,68,-0.03842535017972251],[125,42,69,-0.04304226590859778],[125,42,70,-0.04744919595291405],[125,42,71,-0.05165244326869272],[125,42,72,-0.055660376443214865],[125,42,73,-0.056638294507981836],[125,42,74,-0.051525251112014316],[125,42,75,-0.04635130258990701],[125,42,76,-0.04113997958710323],[125,42,77,-0.03591636191610239],[125,42,78,-0.030706812296756415],[125,42,79,-0.025538640708086986],[125,43,64,-0.02653997487022279],[125,43,65,-0.03219462925399113],[125,43,66,-0.037636122206237764],[125,43,67,-0.04286354789152031],[125,43,68,-0.047880108568788333],[125,43,69,-0.0526891450553207],[125,43,70,-0.05729527717387684],[125,43,71,-0.05888070573150733],[125,43,72,-0.05406242873117267],[125,43,73,-0.04914835447780051],[125,43,74,-0.044157787186011564],[125,43,75,-0.03911173926550224],[125,43,76,-0.03403283987463248],[125,43,77,-0.028945171597882166],[125,43,78,-0.023874036198891443],[125,43,79,-0.018845650533905665],[125,44,64,-0.0352673309787293],[125,44,65,-0.04108203888315811],[125,44,66,-0.04669176130434978],[125,44,67,-0.05209416538644263],[125,44,68,-0.057292282811699555],[125,44,69,-0.06043367133086921],[125,44,70,-0.05595840341567601],[125,44,71,-0.05136159805086507],[125,44,72,-0.04665892348219598],[125,44,73,-0.04186746179324165],[125,44,74,-0.037005805310829275],[125,44,75,-0.03209407871225587],[125,44,76,-0.027153887390203958],[125,44,77,-0.02220819279663985],[125,44,78,-0.017281115639943678],[125,44,79,-0.012397667948382993],[125,45,64,-0.04394978708338139],[125,45,65,-0.04992028232816432],[125,45,66,-0.05569435077087891],[125,45,67,-0.06123781571584765],[125,45,68,-0.05713864857278995],[125,45,69,-0.05289754989793043],[125,45,70,-0.04852843702194881],[125,45,71,-0.04404582803944416],[125,45,72,-0.03946514061208025],[125,45,73,-0.03480291444324893],[125,45,74,-0.03007695750694752],[125,45,75,-0.025306416305619972],[125,45,76,-0.020511770614848213],[125,45,77,-0.01571475334539515],[125,45,78,-0.010938196313585861],[125,45,79,-0.006205802857617928],[125,46,64,-0.05255430109713797],[125,46,65,-0.05867717912056267],[125,46,66,-0.05753874117479865],[125,46,67,-0.05368561009181648],[125,46,68,-0.04968345797447948],[125,46,69,-0.045547024838084295],[125,46,70,-0.04129082602296004],[125,46,71,-0.03692952965122378],[125,46,72,-0.03247831643826958],[125,46,73,-0.027953161218435173],[125,46,74,-0.023371036141971314],[125,46,75,-0.018750035700824737],[125,46,76,-0.014109423932517023],[125,46,77,-0.009469604332913361],[125,46,78,-0.004852013178316685],[125,46,79,-2.789371132817797E-4],[125,47,64,-0.05710010446643059],[125,47,65,-0.05365483204987283],[125,47,66,-0.050053715715595415],[125,47,67,-0.046298273480237725],[125,47,68,-0.04240041332427302],[125,47,69,-0.038376137705569156],[125,47,70,-0.0342406953085843],[125,47,71,-0.030008987381857238],[125,47,72,-0.025695995450951976],[125,47,73,-0.021317128472143135],[125,47,74,-0.016888489244981503],[125,47,75,-0.012427060111753829],[125,47,76,-0.007950808173426503],[125,47,77,-0.0034787104432768227],[125,47,78,9.693004606134443E-4],[125,47,79,0.006406503821779753],[125,48,64,-0.04962883128675844],[125,48,65,-0.046273095591171876],[125,48,66,-0.042769954592065104],[125,48,67,-0.03911881695148475],[125,48,68,-0.035331677716603754],[125,48,69,-0.03142599466932566],[125,48,70,-0.02741789585973617],[125,48,71,-0.023322616987247795],[125,48,72,-0.019155002534400764],[125,48,73,-0.014929923812322873],[125,48,74,-0.010662613585497256],[125,48,75,-0.006368917163805639],[125,48,76,4.1818414727549935E-6],[125,48,77,0.006473706168389411],[125,48,78,0.012900541166847124],[125,48,79,0.019267483688723358],[125,49,64,-0.042398087494562586],[125,49,65,-0.03913839361322397],[125,49,66,-0.035739334139486684],[125,49,67,-0.0321981005031724],[125,49,68,-0.028526858573088187],[125,49,69,-0.024744706577916532],[125,49,70,-0.020868800596436324],[125,49,71,-0.016914824327791185],[125,49,72,-0.012897567786145335],[125,49,73,-0.0070113314658353165],[125,49,74,-4.737193187021715E-4],[125,49,75,0.006062448638062564],[125,49,76,0.01258313988776528],[125,49,77,0.019073746386477276],[125,49,78,0.02551902893275807],[125,49,79,0.031903147531504306],[125,50,64,-0.03545324549804641],[125,50,65,-0.03229561403118111],[125,50,66,-0.029006026348864573],[125,50,67,-0.02557938169201754],[125,50,68,-0.022028106218568606],[125,50,69,-0.018373111180688382],[125,50,70,-0.01438040100232872],[125,50,71,-0.00786373382221943],[125,50,72,-0.0013160715506524891],[125,50,73,0.005249249600909665],[125,50,74,0.011819365912148836],[125,50,75,0.018381500624439672],[125,50,76,0.02492266893117564],[125,50,77,0.03142947344072032],[125,50,78,0.0378879898480144],[125,50,79,0.044283742347593406],[125,51,64,-0.028832150463235492],[125,51,65,-0.025782137334383032],[125,51,66,-0.022606753969298423],[125,51,67,-0.0192985694239031],[125,51,68,-0.015530670600833048],[125,51,69,-0.009052464362714976],[125,51,70,-0.002519896873759654],[125,51,71,0.004050337482257086],[125,51,72,0.010643582344918648],[125,51,73,0.017246576625353442],[125,51,74,0.02384690492586572],[125,51,75,0.03043254170555257],[125,51,76,0.03699148951781516],[125,51,77,0.04351151140645749],[125,51,78,0.049979957317138925],[125,51,79,0.05638368416437699],[125,52,64,-0.02256538693982288],[125,52,65,-0.019628103497916487],[125,52,66,-0.01657105786206594],[125,52,67,-0.010561789445965154],[125,52,68,-0.004086890664941053],[125,52,69,0.0024572072744893543],[125,52,70,0.009049407313962766],[125,52,71,0.015671997165264857],[125,52,72,0.022309833966590874],[125,52,73,0.028949624450662154],[125,52,74,0.035579301630379825],[125,52,75,0.04218749873845736],[125,52,76,0.04876312089596253],[125,52,77,0.055295014732375726],[125,52,78,0.06177173593650024],[125,52,79,0.06818141448754626],[125,53,64,-0.01667655778593924],[125,53,65,-0.012298363020067385],[125,53,66,-0.00595445880812563],[125,53,67,4.961616130955068E-4],[125,53,68,0.007039468328834224],[125,53,69,0.013648034405143098],[125,53,70,0.02029901922235647],[125,53,71,0.02697357752365042],[125,53,72,0.033655964812944764],[125,53,73,0.040332741484252144],[125,53,74,0.046992076863366594],[125,53,75,0.05362315406089985],[125,53,76,0.060215676261253986],[125,53,77,0.06675947480663025],[125,53,78,0.0732442191785852],[125,53,79,0.07965922873617559],[125,54,64,-0.00803260178026274],[125,54,65,-0.0017143587863027703],[125,54,66,0.004696822716879264],[125,54,67,0.011214802696811375],[125,54,68,0.017824757802765427],[125,54,69,0.024496793862730737],[125,54,70,0.03120623235966656],[125,54,71,0.037932991170643984],[125,54,72,0.044660612847279194],[125,54,73,0.051375394844458216],[125,54,74,0.058065623052210136],[125,54,75,0.06472090969119901],[125,54,76,0.0713316363451],[125,54,77,0.07788850262465596],[125,54,78,0.08438218068848179],[125,54,79,0.09080307558899531],[125,55,64,0.002134869867589012],[125,55,65,0.008517989255328632],[125,55,66,0.01499311647431153],[125,55,67,0.021576070961117508],[125,55,68,0.028251146139391933],[125,55,69,0.03498592847351799],[125,55,70,0.04175383000268696],[125,55,71,0.04853344254157577],[125,55,72,0.05530749205157841],[125,55,73,0.06206189812360673],[125,55,74,0.06878494009815235],[125,55,75,0.07546653104170639],[125,55,76,0.08209760049898802],[125,55,77,0.08866958664933927],[125,55,78,0.09517403821315709],[125,55,79,0.1016023261847374],[125,56,64,0.011705421150160437],[125,56,65,0.018385946820595966],[125,56,66,0.024921842999569378],[125,56,67,0.031567515855167066],[125,56,68,0.03830629508622932],[125,56,69,0.045103228840692344],[125,56,70,0.051929773462697795],[125,56,71,0.05876312323554584],[125,56,72,0.06558509502441352],[125,56,73,0.07238112109070917],[125,56,74,0.07913935176965145],[125,56,75,0.08584986938434841],[125,56,76,0.09250401445808752],[125,56,77,0.09909382498335761],[125,56,78,0.10561158921145895],[125,56,79,0.11204951214483934],[125,57,64,0.02009889639817486],[125,57,65,0.027703067545157972],[125,57,66,0.0344757811703984],[125,57,67,0.04118195603575259],[125,57,68,0.047983020324628756],[125,57,69,0.054841499191019986],[125,57,70,0.061726874131977846],[125,57,71,0.06861489061164347],[125,57,72,0.07548637801739355],[125,57,73,0.08232618069723438],[125,57,74,0.08912220192931991],[125,57,75,0.09586456234510665],[125,57,76,0.10254487400485188],[125,57,77,0.10915563100959043],[125,57,78,0.11568971722761245],[125,57,79,0.12214003142027591],[125,58,64,0.02843821582352029],[125,58,65,0.03612876122279214],[125,58,66,0.04365270762593987],[125,58,67,0.05041711996597823],[125,58,68,0.057278935709896756],[125,58,69,0.06419820678101239],[125,58,70,0.07114244879441686],[125,58,71,0.07808592910487579],[125,58,72,0.08500842785076607],[125,58,73,0.0918941127947958],[125,58,74,0.09873052996356041],[125,58,75,0.10550771174839406],[125,58,76,0.11221740379675174],[125,58,77,0.1188524116982815],[125,58,78,0.1254060681530506],[125,58,79,0.13187182100564165],[125,59,64,0.03669815112001846],[125,59,65,0.04446690815701125],[125,59,66,0.052107079444834475],[125,59,67,0.05927526976512655],[125,59,68,0.06619608074104463],[125,59,69,0.07317511441063564],[125,59,70,0.08017795773444952],[125,59,71,0.08717739377726033],[125,59,72,0.09415211019866573],[125,59,73,0.10108552402311798],[125,59,74,0.10796472483322102],[125,59,75,0.11477953818122592],[125,59,76,0.12152171067101072],[125,59,77,0.1281842178282096],[125,59,78,0.13476069554991077],[125,59,79,0.14124499561204276],[125,60,64,0.044849837481144836],[125,60,65,0.05268848364096747],[125,60,66,0.06039626320161856],[125,60,67,0.0677628075527344],[125,60,68,0.07474053049242993],[125,60,69,0.0817778952641488],[125,60,70,0.08883862484769071],[125,60,71,0.09589403528632422],[125,60,72,0.10292169839900682],[125,60,73,0.1099042229889846],[125,60,74,0.11682815682392196],[125,60,75,0.12368301130558161],[125,60,76,0.13046041039605558],[125,60,77,0.13715336502449368],[125,60,78,0.14375567386357535],[125,60,79,0.15026145104324418],[125,61,64,0.05286120586127794],[125,61,65,0.060761328132700784],[125,61,66,0.06852754858403885],[125,61,67,0.07588985326183662],[125,61,68,0.08292197691138589],[125,61,69,0.09001571891000333],[125,61,70,0.0971330285102846],[125,61,71,0.10424379494906755],[125,61,72,0.11132447138202604],[125,61,73,0.118356819240154],[125,61,74,0.12532677540342912],[125,61,75,0.13222344422269727],[125,61,76,0.13903821606258843],[125,61,77,0.14576401368794767],[125,61,78,0.15239466747428804],[125,61,79,0.1589244200937979],[125,62,64,0.060697441836771615],[125,62,65,0.06865061211756993],[125,62,66,0.07646624663197159],[125,62,67,0.08366981528779437],[125,62,68,0.0907533029643618],[125,62,69,0.09790083005436492],[125,62,70,0.10507268490808533],[125,62,71,0.1122373917023469],[125,62,72,0.11937030261044959],[125,62,73,0.12645231201054274],[125,62,74,0.13346869523630467],[125,62,75,0.1404080740036027],[125,62,76,0.14726151028256493],[125,62,77,0.15402173002809294],[125,62,78,0.16068247783380113],[125,62,79,0.16723800323937515],[125,63,64,0.06832147570368757],[125,63,65,0.07631933300144687],[125,63,66,0.08410502939178799],[125,63,67,0.09111895834606636],[125,63,68,0.09825015402521695],[125,63,69,0.10544812445949463],[125,63,70,0.11267162825060724],[125,63,71,0.11988790539331488],[125,63,72,0.1270712444676958],[125,63,73,0.13420167316914786],[125,63,74,0.14126377477706245],[125,63,75,0.14824563278816458],[125,63,76,0.15513790557144785],[125,63,77,0.1619330325403606],[125,63,78,0.16862457298500866],[125,63,79,0.17520667836730136],[125,64,64,0.0756944759748908],[125,64,65,0.08372881604195602],[125,64,66,0.09120315976363506],[125,64,67,0.09825593997509291],[125,64,68,0.1054304777689404],[125,64,69,0.11267469311706454],[125,64,70,0.11994595878538059],[125,64,71,0.12721032713903221],[125,64,72,0.1344410786538776],[125,64,73,0.14161739474969168],[125,64,74,0.14872315763215016],[125,64,75,0.15574587945212928],[125,64,76,0.16267576271811465],[125,64,77,0.16950489353254858],[125,64,78,0.17622656886634172],[125,64,79,0.18283475874226854],[125,65,64,0.08277635856801442],[125,65,65,0.09083923169760524],[125,65,66,0.09801467103205186],[125,65,67,0.10510132811294404],[125,65,68,0.11231404506346487],[125,65,69,0.11959934722940349],[125,65,70,0.12691337122147558],[125,65,71,0.13422108941440494],[125,65,72,0.14149484529304351],[125,65,73,0.14871301380198182],[125,65,74,0.1558587894620719],[125,65,75,0.16291910463621295],[125,65,76,0.1698836799514297],[125,65,77,0.1767442085166724],[125,65,78,0.18349367521652782],[125,65,79,0.1901258120148973],[125,66,64,0.08952631248220097],[125,66,65,0.09760479946786535],[125,66,66,0.10456225578091086],[125,66,67,0.11167710061608271],[125,66,68,0.11892195272557196],[125,66,69,0.1262421248595202],[125,66,70,0.13359266441445725],[125,66,71,0.14093757670807477],[125,66,72,0.14824835157402236],[125,66,73,0.1555026153649675],[125,66,74,0.16268291119572464],[125,66,75,0.16977560987560175],[125,66,76,0.17676995360215617],[125,66,77,0.18365723411923518],[125,66,78,0.1904301066812331],[125,66,79,0.19708204081761135],[125,67,64,0.09590334185566238],[125,67,65,0.10389473147688544],[125,67,66,0.11086957765818786],[125,67,67,0.11800612680965805],[125,67,68,0.12527610822349622],[125,67,69,0.1326237793229249],[125,67,70,0.14000323237301893],[125,67,71,0.14737761679009576],[125,67,72,0.15471765994823594],[125,67,73,0.16200031355993885],[125,67,74,0.1692075285257097],[125,67,75,0.17632516076392166],[125,67,76,0.1833420101544264],[125,67,77,0.19024899435912307],[125,67,78,0.19703845892073002],[125,67,79,0.2037036246920812],[125,68,64,0.10186682422629603],[125,68,65,0.10997180293677239],[125,68,66,0.11696073456310639],[125,68,67,0.12411163123341745],[125,68,68,0.1313986964840546],[125,68,69,0.13876524947002158],[125,68,70,0.1461645367240178],[125,68,71,0.1535589527128501],[125,68,72,0.16091855598715227],[125,68,73,0.16821971088398077],[125,68,74,0.1754438577381493],[125,68,75,0.18257641417441872],[125,68,76,0.18960580967440224],[125,68,77,0.19652265524129545],[125,68,78,0.20331904962302588],[125,68,79,0.20998802320485266],[125,69,64,0.10737709088952258],[125,69,65,0.11548363266584172],[125,69,66,0.12285969830160316],[125,69,67,0.13001663381967066],[125,69,68,0.13731162310494346],[125,69,69,0.14468710625797687],[125,69,70,0.1520955551820987],[125,69,71,0.1594986902974085],[125,69,72,0.16686599092148308],[125,69,73,0.17417333106074404],[125,69,74,0.18140174363187092],[125,69,75,0.18853631574884774],[125,69,76,0.19556521733278184],[125,69,77,0.20247886493056355],[125,69,78,0.20926922226548658],[125,69,79,0.21592923869284264],[125,70,64,0.11241215237029134],[125,70,65,0.12051527149985522],[125,70,66,0.12845153340229853],[125,70,67,0.13572765236906809],[125,70,68,0.14302041805328194],[125,70,69,0.15039375629517385],[125,70,70,0.15779942150257664],[125,70,71,0.16519853570197243],[125,70,72,0.17256009096728503],[125,70,73,0.17985957702038755],[125,70,74,0.18707773709076092],[125,70,75,0.19419945473800462],[125,70,76,0.2012127739623183],[125,70,77,0.20810805455670553],[125,70,78,0.21487726429126042],[125,70,79,0.22151340916916148],[125,71,64,0.1170004536828221],[125,71,65,0.12509565082524032],[125,71,66,0.13302257519581362],[125,71,67,0.14074860135818212],[125,71,68,0.1482936891864407],[125,71,69,0.1557046391924496],[125,71,70,0.16301753216894976],[125,71,71,0.170258585252689],[125,71,72,0.17744571305492013],[125,71,73,0.1845899629248205],[125,71,74,0.19169682119444545],[125,71,75,0.1987673876352269],[125,71,76,0.2057994157342452],[125,71,77,0.21278821677077878],[125,71,78,0.21972742603571954],[125,71,79,0.22660962988739355],[125,72,64,0.12117630512777083],[125,72,65,0.12925942901531745],[125,72,66,0.13717352164999608],[125,72,67,0.14488697833251485],[125,72,68,0.15242045716541114],[125,72,69,0.1598210875302289],[125,72,70,0.16712518460764858],[125,72,71,0.17435911469624724],[125,72,72,0.18154085960150268],[125,72,73,0.18868145594506558],[125,72,74,0.19578630618886997],[125,72,75,0.2028563585482406],[125,72,76,0.20988915334475422],[125,72,77,0.2168797337204545],[125,72,78,0.2238214189959472],[125,72,79,0.23070643930489707],[125,73,64,0.12497062693038026],[125,73,65,0.13303778797281116],[125,73,66,0.14093575881695514],[125,73,67,0.14863418639032552],[125,73,68,0.1561542729756068],[125,73,69,0.16354309798619254],[125,73,70,0.17083690214209762],[125,73,71,0.17806196019186427],[125,73,72,0.18523614057299598],[125,73,73,0.19237034124416932],[125,73,74,0.19946979844766494],[125,73,75,0.20653526553665597],[125,73,76,0.21356405937538933],[125,73,77,0.22055097218814593],[125,73,78,0.22748904709106074],[125,73,79,0.23437021588840912],[125,74,64,0.1284124236718497],[125,74,65,0.1364599040531813],[125,74,66,0.1443385587949323],[125,74,67,0.15201953613644353],[125,74,68,0.1595243874325757],[125,74,69,0.16689969047151332],[125,74,70,0.17418125044927854],[125,74,71,0.18139497708454763],[125,74,72,0.1885584292809807],[125,74,73,0.19568223774477392],[125,74,74,0.2027714023031843],[125,74,75,0.20982646104070904],[125,74,76,0.2168445287378997],[125,74,77,0.22382020246076076],[125,74,78,0.23074633250225804],[125,74,79,0.2376146572206381],[125,75,64,0.13153027955883903],[125,75,65,0.1395544402661139],[125,75,66,0.14741056373519076],[125,75,67,0.1550715558623076],[125,75,68,0.16255909218407713],[125,75,69,0.16991874898140183],[125,75,70,0.17718550209319792],[125,75,71,0.18438460445579122],[125,75,72,0.1915331038002892],[125,75,73,0.1986412406590001],[125,75,74,0.20571372344175362],[125,75,75,0.21275087770656279],[125,75,76,0.21974966711017924],[125,75,77,0.22670458388006473],[125,75,78,0.2336084069961311],[125,75,79,0.24045282660734624],[125,76,64,0.13435387314714894],[125,76,65,0.1423510583836267],[125,76,66,0.15018129015657902],[125,76,67,0.15781948305672855],[125,76,68,0.16528719204422088],[125,76,69,0.17262846628036044],[125,76,70,0.17987704369524984],[125,76,71,0.18705722417666654],[125,76,72,0.19418534714437896],[125,76,73,0.20127115236916696],[125,76,74,0.20831902084357878],[125,76,75,0.21532909286553584],[125,76,76,0.22229826084760276],[125,76,77,0.22922103471147018],[125,76,78,0.23609027806505356],[125,76,79,0.242897813687641],[125,77,64,0.13691550997485716],[125,77,65,0.14488194941811305],[125,77,66,0.15268265204653844],[125,77,67,0.1602947750791946],[125,77,68,0.16773949680281267],[125,77,69,0.17505880827341827],[125,77,70,0.18228480286977886],[125,77,71,0.18944053965300678],[125,77,72,0.19654146689498803],[125,77,73,0.20359673235570325],[125,77,74,0.21061037719607628],[125,77,75,0.2175824107553563],[125,77,76,0.22450976376210394],[125,77,77,0.23138711788306535],[125,77,78,0.23820760984079525],[125,77,79,0.24496340864789926],[125,78,64,0.1392516714039529],[125,78,65,0.14718338077286852],[125,78,66,0.15495050106247832],[125,78,67,0.16253263732944315],[125,78,68,0.16995033087318034],[125,78,69,0.17724299646745778],[125,78,70,0.18444069338192368],[125,78,71,0.19156497278510162],[125,78,72,0.19863023288587756],[125,78,73,0.20564496486073278],[125,78,74,0.21261288656789967],[125,78,75,0.21953396137813763],[125,78,76,0.2264052997780433],[125,78,77,0.23322194172328328],[125,78,78,0.23997751803212752],[125,78,79,0.24666478941337763],[125,79,64,0.14138430564126528],[125,79,65,0.14927706143184696],[125,79,66,0.15700627942138623],[125,79,67,0.16455419833683516],[125,79,68,0.17194047278573815],[125,79,69,0.17920145061320655],[125,79,70,0.1863647878271053],[125,79,71,0.193450274515222],[125,79,72,0.20047110832366463],[125,79,73,0.20743506320902616],[125,79,74,0.21434555061323712],[125,79,75,0.22120257052281192],[125,79,76,0.22800355018463878],[125,79,77,0.23474406855617969],[125,79,78,0.24141846486535018],[125,79,79,0.24802032994368023],[125,80,64,0.14326520303578116],[125,80,65,0.15111471521700512],[125,80,66,0.1588023725476753],[125,80,67,0.16631327945554494],[125,80,68,0.1736660030165922],[125,80,69,0.18089337058591184],[125,80,70,0.18802026056967935],[125,80,71,0.19506440642641437],[125,80,72,0.20203758091928714],[125,80,73,0.20894668039218844],[125,80,74,0.215794706387689],[125,80,75,0.2225816422210201],[125,80,76,0.22930522241777365],[125,80,77,0.23596159321188287],[125,80,78,0.24254586258111233],[125,80,79,0.249052538569098],[125,81,64,0.14484349300206412],[125,81,65,0.15264531884146162],[125,81,66,0.1602883121652601],[125,81,67,0.16776071452357325],[125,81,68,0.17507985887665764],[125,81,69,0.18227464811463204],[125,81,70,0.1893668137689347],[125,81,71,0.19637170280479033],[125,81,72,0.20329937103493506],[125,81,73,0.21015558136992304],[125,81,74,0.2169427044012002],[125,81,75,0.22366051909215715],[125,81,76,0.2303069116288621],[125,81,77,0.23687847075398197],[125,81,78,0.24337097817114012],[125,81,79,0.24977979286205093],[125,82,64,0.14608446498087133],[125,82,65,0.1538338797513206],[125,82,66,0.16142930085798723],[125,82,67,0.16886239203837192],[125,82,68,0.17614915551812743],[125,82,69,0.18331422707165146],[125,82,70,0.19037584597413568],[125,82,71,0.19734663323178114],[125,82,72,0.20423459748532707],[125,82,73,0.21104405044536223],[125,82,74,0.21777642953168297],[125,82,75,0.224431025651548],[125,82,76,0.23100561431166922],[125,82,77,0.23749698851410628],[125,82,78,0.24390139213364517],[125,82,79,0.25021485271324323],[125,83,64,0.146966924430048],[125,83,65,0.15465883296636956],[125,83,66,0.16220367931272844],[125,83,67,0.16959682611345236],[125,83,68,0.17685289419331982],[125,83,69,0.1839919804541579],[125,83,70,0.19102852640292065],[125,83,71,0.19797209933639137],[125,83,72,0.20482831808681856],[125,83,73,0.211599692715439],[125,83,74,0.21828637599104928],[125,83,75,0.22488682473812285],[125,83,76,0.23139836938367428],[125,83,77,0.23781769027215585],[125,83,78,0.2441411995500514],[125,83,79,0.2503653276460126],[125,84,64,0.14748076035550284],[125,84,65,0.15510964619698314],[125,84,66,0.1626005972828003],[125,84,67,0.16995292518717442],[125,84,68,0.177179860823316],[125,84,69,0.18429676875001239],[125,84,70,0.1913140402391464],[125,84,71,0.19823789085467045],[125,84,72,0.2050712165857342],[125,84,73,0.2118143679224999],[125,84,74,0.21846583985785595],[125,84,75,0.22502287603203153],[125,84,76,0.23148198546827978],[125,84,77,0.23783937057445087],[125,84,78,0.24409126530441289],[125,84,79,0.2502341825845192],[125,85,64,0.14762473119541475],[125,85,65,0.15518463998394066],[125,85,66,0.16261789488460288],[125,85,67,0.1699279648858364],[125,85,68,0.17712672098435933],[125,85,69,0.18422468541496606],[125,85,70,0.1912280102103862],[125,85,71,0.19813930570564953],[125,85,72,0.20495844004563651],[125,85,73,0.21168326008627225],[125,85,74,0.2183102317934885],[125,85,75,0.22483499846646726],[125,85,76,0.23122240697236995],[125,85,77,0.23714603710713947],[125,85,78,0.24299100282206335],[125,85,79,0.2487453322396298],[125,86,64,0.14740447607234963],[125,86,65,0.15488902988198888],[125,86,66,0.16226020118252568],[125,86,67,0.16952577184779943],[125,86,68,0.17669631788314677],[125,86,69,0.18377749570940918],[125,86,70,0.19077110028487168],[125,86,71,0.1976759394342889],[125,86,72,0.20448859148017087],[125,86,73,0.21120408707230837],[125,86,74,0.21749836302236908],[125,86,75,0.22337571665631828],[125,86,76,0.22920449445802565],[125,86,77,0.23497502843256837],[125,86,78,0.24067688509877555],[125,86,79,0.2462987289816667],[125,87,64,0.14683075789244124],[125,87,65,0.15423319717832362],[125,87,66,0.16153725649838568],[125,87,67,0.1687551248130897],[125,87,68,0.17589617941214766],[125,87,69,0.18296127469071058],[125,87,70,0.18994780690894766],[125,87,71,0.19685064899150725],[125,87,72,0.20366288218025652],[125,87,73,0.20967727913721074],[125,87,74,0.2154012323633888],[125,87,75,0.22109119921264886],[125,87,76,0.22674004881079318],[125,87,77,0.23233976132539647],[125,87,78,0.23788122264176187],[125,87,79,0.24335409852300666],[125,88,64,0.14591794427090365],[125,88,65,0.1532311941425348],[125,88,66,0.16046246439699324],[125,88,67,0.16762837881347192],[125,88,68,0.17473723992728407],[125,88,69,0.18178524973432814],[125,88,70,0.1887654428142036],[125,88,71,0.1956686954650136],[125,88,72,0.20185102730277016],[125,88,73,0.20739334604069914],[125,88,74,0.2129102413421119],[125,88,75,0.21839784530771747],[125,88,76,0.22385135312774898],[125,88,77,0.22926474209593983],[125,88,78,0.23463056797653853],[125,88,79,0.23993983947133954],[125,89,64,0.1446827317981057],[125,89,65,0.15189948934426864],[125,89,66,0.15905167884830035],[125,89,67,0.16616031786091556],[125,89,68,0.1732327819723828],[125,89,69,0.1802608525630731],[125,89,70,0.18723331805844046],[125,89,71,0.19407482376686747],[125,89,72,0.19942229578840803],[125,89,73,0.20474538327170538],[125,89,74,0.21004400515084987],[125,89,75,0.2153172075030616],[125,89,76,0.22056279747233146],[125,89,77,0.22577705321009864],[125,89,78,0.23095451078244267],[125,89,79,0.23608782880756957],[125,90,64,0.14314311872716176],[125,90,65,0.15025595814578518],[125,90,66,0.15732223164581438],[125,90,67,0.16436724112453324],[125,90,68,0.17139760278464766],[125,90,69,0.1784009853960689],[125,90,70,0.18536212262353402],[125,90,71,0.1915283099473163],[125,90,72,0.19665306878459274],[125,90,73,0.2017500052759342],[125,90,74,0.2068223922759717],[125,90,75,0.2118723830563231],[125,90,76,0.21690062390631842],[125,90,77,0.22190594333236452],[125,90,78,0.22688511884960355],[125,90,79,0.2318327221700734],[125,91,64,0.14131763076053439],[125,91,65,0.14831912307676529],[125,91,66,0.15529220476864755],[125,91,67,0.16226628720556655],[125,91,68,0.16924741005118712],[125,91,69,0.17621950548536852],[125,91,70,0.1831635145744385],[125,91,71,0.18865819119666702],[125,91,72,0.19355768900979783],[125,91,73,0.198424873541405],[125,91,74,0.20326644820123624],[125,91,75,0.20808779900503632],[125,91,76,0.21289257398643238],[125,91,77,0.2176823407697088],[125,91,78,0.22245632336772936],[125,91,79,0.22721121907326133],[125,92,64,0.13922480423843428],[125,92,65,0.14610764842715482],[125,92,66,0.15297995200974718],[125,92,67,0.15987500076598277],[125,92,68,0.16679845104758895],[125,92,69,0.17373093198822712],[125,92,70,0.18064991748656745],[125,92,71,0.18547662559133002],[125,92,72,0.19015145957108306],[125,92,73,0.19478859750588556],[125,92,74,0.19939817874864554],[125,92,75,0.2039888773423299],[125,92,76,0.2085674374702961],[125,92,77,0.21313828957972114],[125,92,78,0.21770324833859228],[125,92,79,0.2222612933814787],[125,93,64,0.13688293068346816],[125,93,65,0.1436400930480887],[125,93,66,0.15040387385308873],[125,93,67,0.15721114543624998],[125,93,68,0.1640673789732566],[125,93,69,0.17095037882429337],[125,93,70,0.17748465452749904],[125,93,71,0.18199669688144013],[125,93,72,0.1864504785562869],[125,93,73,0.1908604731503138],[125,93,74,0.1952401909919376],[125,93,75,0.199601578658584],[125,93,76,0.2039545010708517],[125,93,77,0.20830630766554734],[125,93,78,0.2126614839282466],[125,93,79,0.2170213893491751],[125,94,64,0.13431006633240275],[125,94,65,0.14093492502942073],[125,94,66,0.14758244926633696],[125,94,67,0.15429276662038782],[125,94,68,0.16107136000322947],[125,94,69,0.16789371688808769],[125,94,70,0.1739249100016817],[125,94,71,0.17823214037203072],[125,94,72,0.1824712900994823],[125,94,73,0.18666005699000154],[125,94,74,0.190815189830111],[125,94,75,0.1949518227438059],[125,94,76,0.19908289618658587],[125,94,77,0.20321866623547413],[125,94,78,0.20736630359750746],[125,94,79,0.21152958352864304],[125,95,64,0.13152430998659456],[125,95,65,0.13801080162463222],[125,95,66,0.14453452778226342],[125,95,67,0.15113850753105884],[125,95,68,0.1578284243022345],[125,95,69,0.1645779687279133],[125,95,70,0.1700854446545103],[125,95,71,0.1741968652562819],[125,95,72,0.17823034949076128],[125,95,73,0.18220657334667065],[125,95,74,0.18614532845169723],[125,95,75,0.19006478475946273],[125,95,76,0.19398084461854279],[125,95,77,0.19790659005788253],[125,95,78,0.20185182487139647],[125,95,79,0.2058227128386959],[125,96,64,0.12854435223551586],[125,96,65,0.13488711751782123],[125,96,66,0.14127988496997915],[125,96,67,0.147768181522212],[125,96,68,0.15435806399169777],[125,96,69,0.1610219385607609],[125,96,70,0.16597770671101664],[125,96,71,0.16990427090594984],[125,96,72,0.1737433000853782],[125,96,73,0.17751815294420692],[125,96,74,0.18125141105437872],[125,96,75,0.18496406569501264],[125,96,76,0.18867480136330084],[125,96,77,0.1923993779916865],[125,96,78,0.19615011362889015],[125,96,79,0.1999354690800119],[125,97,64,0.12539029885153177],[125,97,65,0.131584824271726],[125,97,66,0.13784004414442383],[125,97,67,0.1442036035402614],[125,97,68,0.15068208082306367],[125,97,69,0.15724708026756054],[125,97,70,0.1616120798510127],[125,97,71,0.1653663548153993],[125,97,72,0.1690240599383549],[125,97,73,0.17261090101973006],[125,97,74,0.17615194630913733],[125,97,75,0.17967073592347174],[125,97,76,0.18318849364373765],[125,97,77,0.18672344331809923],[125,97,78,0.19029023181304186],[125,97,79,0.19389946017505563],[125,98,64,0.12208477091919481],[125,98,65,0.12812752356090926],[125,98,66,0.13423936693024735],[125,98,67,0.14046968328775794],[125,98,68,0.14682568609192576],[125,98,69,0.15326915344234204],[125,98,70,0.15699678715194582],[125,98,71,0.16059261007507944],[125,98,72,0.16408371625148646],[125,98,73,0.16749779328179315],[125,98,74,0.1708620501759903],[125,98,75,0.174202250764542],[125,98,76,0.1775418554089769],[125,98,77,0.18090127344396903],[125,98,78,0.18429722848070976],[125,98,79,0.18774223840472343],[125,99,64,0.11865428404554165],[125,99,65,0.12454283657697654],[125,99,66,0.1305064150807783],[125,99,67,0.1365957824825001],[125,99,68,0.1428188551235867],[125,99,69,0.14854434032161204],[125,99,70,0.1521365661485629],[125,99,71,0.15558871041543604],[125,99,72,0.15892922586772776],[125,99,73,0.16218739817647915],[125,99,74,0.16539219678660008],[125,99,75,0.16857123705000748],[125,99,76,0.17174985659808767],[125,99,77,0.1749503085865634],[125,99,78,0.17819107412704316],[125,99,79,0.18148629590632415],[125,100,64,0.1151309088008107],[125,100,65,0.12086405179471181],[125,100,66,0.12667558575601046],[125,100,67,0.13261733840192458],[125,100,68,0.1386979384737935],[125,100,69,0.14356087049842345],[125,100,70,0.14703111305842745],[125,100,71,0.15035498101668066],[125,100,72,0.1535619201867376],[125,100,73,0.15668242404345936],[125,100,74,0.15974681621120976],[125,100,75,0.1627841497678527],[125,100,76,0.16582122652248749],[125,100,77,0.16888173908808843],[125,100,78,0.17198553823611293],[125,100,79,0.17514802769173662],[125,101,64,0.11155136203767504],[125,101,65,0.1171290835769539],[125,101,66,0.12278593961756122],[125,101,67,0.12857456170892004],[125,101,68,0.13450423230459396],[125,101,69,0.13831502001162876],[125,101,70,0.14167675491780163],[125,101,71,0.14488815651879058],[125,101,72,0.14797932694229352],[125,101,73,0.15098157976207574],[125,101,74,0.15392616712662524],[125,101,75,0.15684312879633097],[125,101,76,0.15976026642520882],[125,101,77,0.16270224607314968],[125,101,78,0.1656898315873564],[125,101,79,0.16873925115020955],[125,102,64,0.10792399381136895],[125,102,65,0.1133461451464931],[125,102,66,0.11884561002723998],[125,102,67,0.12447560148884804],[125,102,68,0.12939206806775538],[125,102,69,0.13283895250600303],[125,102,70,0.13610624481063502],[125,102,71,0.13922161250367404],[125,102,72,0.1422154675823742],[125,102,73,0.14511953299889058],[125,102,74,0.14796553148424058],[125,102,75,0.1507840005554501],[125,102,76,0.15360323718328012],[125,102,77,0.156448375237671],[125,102,78,0.15934059847069693],[125,102,79,0.16229649144554145],[125,103,64,0.10423432860470591],[125,103,65,0.10949989908542646],[125,103,66,0.11483856376818048],[125,103,67,0.12025723369978544],[125,103,68,0.1238257673567647],[125,103,69,0.12719220814304455],[125,103,70,0.13037972595889538],[125,103,71,0.1334158663257736],[125,103,72,0.136330974585889],[125,103,73,0.1391567410969279],[125,103,74,0.1419248717292321],[125,103,75,0.1446658876057357],[125,103,76,0.14740805765726456],[125,103,77,0.15017646719944341],[125,103,78,0.15299222537416113],[125,103,79,0.15587181394154315],[125,104,64,0.1004683030123058],[125,104,65,0.10557567870609932],[125,104,66,0.11074976939845568],[125,104,67,0.11463807853288863],[125,104,68,0.11813546789667871],[125,104,69,0.1214339937239246],[125,104,70,0.12455643346585928],[125,104,71,0.12752990757828306],[125,104,72,0.13038430427588868],[125,104,73,0.13315082673456763],[125,104,74,0.13586066709402647],[125,104,75,0.13854381124452034],[125,104,76,0.14122797801236278],[125,104,77,0.1439376959911972],[125,104,78,0.14669352090157317],[125,104,79,0.14951139600341723],[125,105,64,0.09661499735146521],[125,105,65,0.10146164556289804],[125,105,66,0.10529539572832483],[125,105,67,0.10894119596416757],[125,105,68,0.11237776922113707],[125,105,69,0.11562076497119776],[125,105,70,0.11869237578893066],[125,105,71,0.12161899354043373],[125,105,72,0.12442966064155532],[125,105,73,0.1271546436203592],[125,105,74,0.12982413331311296],[125,105,75,0.13246707565816895],[125,105,76,0.1351101366867238],[125,105,77,0.13777680494564523],[125,105,78,0.14048663422719584],[125,105,79,0.1432546291267344],[125,106,64,0.09197758128044284],[125,106,65,0.09586292834166191],[125,106,66,0.09963100993179583],[125,106,67,0.10321872786614805],[125,106,68,0.10660468877951201],[125,106,69,0.10980407591990785],[125,106,70,0.11283831123940495],[125,106,71,0.11573276587872011],[125,106,72,0.11851526404008633],[125,106,73,0.12121470731147882],[125,106,74,0.12385982367780049],[125,106,75,0.12647804509865376],[125,106,76,0.12909451717605017],[125,106,77,0.1317312440808991],[125,106,78,0.134406371556184],[125,106,79,0.13713361047051353],[125,107,64,0.08644971985647919],[125,107,65,0.09026811884801116],[125,107,66,0.09397772886022711],[125,107,67,0.09751586644460197],[125,107,68,0.10086112102525134],[125,107,69,0.10402816418012542],[125,107,70,0.10703747602554865],[125,107,71,0.10991313714820836],[125,107,72,0.11268141035761521],[125,107,73,0.11536943930014885],[125,107,74,0.11800406800621495],[125,107,75,0.12061078510026117],[125,107,76,0.12321279606153775],[125,107,77,0.12583022658356632],[125,107,78,0.12847945974405303],[125,107,79,0.13117260936749406],[125,108,64,0.0809538218758706],[125,108,65,0.08471210696116083],[125,108,66,0.08837083761239514],[125,108,67,0.09186791523994343],[125,108,68,0.09518201796120489],[125,108,69,0.09832727064508508],[125,108,70,0.1013230624387129],[125,108,71,0.10419194574118035],[125,108,72,0.10695831934686013],[125,108,73,0.10964722317946113],[125,108,74,0.11228324845683404],[125,108,75,0.11488956680391496],[125,108,76,0.1174870815087452],[125,108,77,0.12009370379615794],[125,108,78,0.12272375667716601],[125,108,79,0.1253875086222268],[125,109,64,0.07551069622566708],[125,109,65,0.0792165064388422],[125,109,66,0.08283238949641851],[125,109,67,0.08629700459947989],[125,109,68,0.08958923404061574],[125,109,69,0.09272263619185339],[125,109,70,0.09571538941111116],[125,109,71,0.09858832122938993],[125,109,72,0.10136371384345247],[125,109,73,0.10406421438582131],[125,109,74,0.10671185351867966],[125,109,75,0.10932717559922991],[125,109,76,0.1119284833654856],[125,109,77,0.11453119979517178],[125,109,78,0.1171473494979517],[125,109,79,0.11978516171534032],[125,110,64,0.070112333550099],[125,110,65,0.07377412842090131],[125,110,66,0.07735568591334072],[125,110,67,0.0807966036996081],[125,110,68,0.08407609740348643],[125,110,69,0.08720716014173686],[125,110,70,0.09020667613754274],[125,110,71,0.09309360010652017],[125,110,72,0.09588790282272869],[125,110,73,0.09860961332666311],[125,110,74,0.10127796097440178],[125,110,75,0.10391062025534845],[125,110,76,0.10652306103504303],[125,110,77,0.1091280066109847],[125,110,78,0.11173500170477824],[125,110,79,0.11435009225570085],[125,111,64,0.06470374579221454],[125,111,65,0.06833043998363755],[125,111,66,0.071886552270098],[125,111,67,0.07531283011938394],[125,111,68,0.07858897755222727],[125,111,69,0.08172744959695209],[125,111,70,0.08474378726915781],[125,111,71,0.08765496435940301],[125,111,72,0.09047848803786004],[125,111,73,0.09323158691981717],[125,111,74,0.09593048939751551],[125,111,75,0.09858979480227528],[125,111,76,0.1012219397204504],[125,111,77,0.10383676154895248],[125,111,78,0.10644116114221101],[125,111,79,0.10903886617479874],[125,112,64,0.059221329598360316],[125,112,65,0.06282094933044656],[125,112,66,0.06636015502344045],[125,112,67,0.06978114229833449],[125,112,68,0.07306430695792258],[125,112,69,0.07622161345287304],[125,112,70,0.07926721389415708],[125,112,71,0.08221597997438265],[125,112,72,0.08508277411406233],[125,112,73,0.08788179806657945],[125,112,74,0.09062602134790146],[125,112,75,0.09332669164819413],[125,112,76,0.0959929291751237],[125,112,77,0.09863140667411442],[125,112,78,0.10124611667029705],[125,112,79,0.10383822728241668],[125,113,64,0.05362340039076058],[125,113,65,0.057202533500430475],[125,113,66,0.060732412806336414],[125,113,67,0.06415704975929944],[125,113,68,0.06745777009038575],[125,113,69,0.07064610797475399],[125,113,70,0.07373478122474274],[125,113,71,0.07673642621630805],[125,113,72,0.07966305524579913],[125,113,73,0.08252558072718469],[125,113,74,0.08533340811195117],[125,113,75,0.0880940992396262],[125,113,76,0.09081310765462937],[125,113,77,0.09349358725606763],[125,113,78,0.09613627548211581],[125,113,79,0.09873945207159562],[125,114,64,0.047890362996873846],[125,114,65,0.05145397712352806],[125,114,66,0.05498073904079202],[125,114,67,0.05841687900472901],[125,114,68,0.06174490528251599],[125,114,69,0.06497598875958385],[125,114,70,0.06812137306515946],[125,114,71,0.0711913291897102],[125,114,72,0.07419481360349174],[125,114,73,0.07713918218396539],[125,114,74,0.08002996131037908],[125,114,75,0.08287067734562344],[125,114,76,0.08566274558990267],[125,114,77,0.08840541965876136],[125,114,78,0.0910958021103278],[125,114,79,0.09372891702486391],[125,115,64,0.04202087740173945],[125,115,65,0.04557220579624196],[125,115,66,0.049100382764375436],[125,115,67,0.0525542657017443],[125,115,68,0.05591779466635717],[125,115,69,0.05920184551274009],[125,115,70,0.062416157336958246],[125,115,71,0.06556852118794722],[125,115,72,0.06866465132969388],[125,115,73,0.07170810106569254],[125,115,74,0.07470022392662388],[125,115,75,0.07764018092098876],[125,115,76,0.08052499445052706],[125,115,77,0.08334964939842299],[125,115,78,0.08610724180909406],[125,115,79,0.08878917549511874],[125,116,64,0.036028266339107023],[125,116,65,0.03956875720787738],[125,116,66,0.043101000414482116],[125,116,67,0.04657686830395041],[125,116,68,0.04998196329587948],[125,116,69,0.053326931043726815],[125,116,70,0.05661998823701107],[125,116,71,0.05986635664781312],[125,116,72,0.0630683569183312],[125,116,73,0.06622553564072747],[125,116,74,0.0693348259480086],[125,116,75,0.07239074177071171],[125,116,76,0.07538560585431203],[125,116,77,0.07830981157707437],[125,116,78,0.08115211855791299],[125,116,79,0.08389998199976018],[125,117,64,0.029937168782169003],[125,117,65,0.033466494111700565],[125,117,66,0.03700346264851364],[125,117,67,0.04050330711572124],[125,117,68,0.04395349132826673],[125,117,69,0.047364488153343105],[125,117,70,0.050742988433690926],[125,117,71,0.05409158778058529],[125,117,72,0.0574091086479398],[125,117,73,0.06069094458801727],[125,117,74,0.06392942631037357],[125,117,75,0.06711420913860397],[125,117,76,0.0702326814373872],[125,117,77,0.0732703935656013],[125,117,78,0.07621150690007987],[125,117,79,0.08120474320225585],[125,118,64,0.02378044310210429],[125,118,65,0.027296562945641457],[125,118,66,0.030836899994511918],[125,118,67,0.03436033253080488],[125,118,68,0.0378563428751608],[125,118,69,0.0413352778417098],[125,118,70,0.04480231448493301],[125,118,71,0.048257402753634715],[125,118,72,0.052310512269355985],[125,118,73,0.058059371940207494],[125,118,74,0.06375274058425748],[125,118,75,0.06937874446571685],[125,118,76,0.07492344742885625],[125,118,77,0.08037144312459711],[125,118,78,0.08570645539726247],[125,118,79,0.09056771742068336],[125,119,64,0.017596323388567977],[125,119,65,0.021095601635363545],[125,119,66,0.024635990860394523],[125,119,67,0.030295139752434582],[125,119,68,0.03638896476401572],[125,119,69,0.04245783018689795],[125,119,70,0.04850716187599635],[125,119,71,0.05453637644419724],[125,119,72,0.06053964618851272],[125,119,73,0.06650666661955137],[125,119,74,0.07242342502078321],[125,119,75,0.07827296850760358],[125,119,76,0.08403617010640135],[125,119,77,0.08969249143089655],[125,119,78,0.09425880216939359],[125,119,79,0.09739106041756734],[125,120,64,0.01910868457603341],[125,120,65,0.025318836152972507],[125,120,66,0.03155281329183586],[125,120,67,0.037777847701074924],[125,120,68,0.043988646278203196],[125,120,69,0.050196699145802895],[125,120,70,0.05640593586538155],[125,120,71,0.06261315479466119],[125,120,72,0.06880900867622865],[125,120,73,0.07497898315420284],[125,120,74,0.08110436607017826],[125,120,75,0.0871632054655902],[125,120,76,0.09313125430120726],[125,120,77,0.09829531072653354],[125,120,78,0.1013041782850023],[125,120,79,0.10424015491505419],[125,121,64,0.026561626708926287],[125,121,65,0.03281254188724063],[125,121,66,0.03910300733809356],[125,121,67,0.045404231710030364],[125,121,68,0.05171304830893741],[125,121,69,0.05804082916425812],[125,121,70,0.06439007071425214],[125,121,71,0.07075506084761277],[125,121,72,0.0771230740330415],[125,121,73,0.08347555045564525],[125,121,74,0.08978925646582259],[125,121,75,0.09603742375199026],[125,121,76,0.10219086476286034],[125,121,77,0.10557639554249859],[125,121,78,0.1083769442665313],[125,121,79,0.11111960684474034],[125,122,64,0.03423805651907785],[125,122,65,0.04051136506531204],[125,122,66,0.04683899332718109],[125,122,67,0.05319607557708935],[125,122,68,0.05958151091417013],[125,122,69,0.06600654427614217],[125,122,70,0.07247231461323823],[125,122,71,0.07897074457916986],[125,122,72,0.08548593013091361],[125,122,73,0.09199550607116594],[125,122,74,0.09847198433335551],[125,122,75,0.10488406194163405],[125,122,76,0.11019668391256329],[125,122,77,0.11287356052521302],[125,122,78,0.11547498027611063],[125,122,79,0.11803250506100421],[125,123,64,0.042159663757629244],[125,123,65,0.048436306818916294],[125,123,66,0.05478070739362929],[125,123,67,0.061171782428206097],[125,123,68,0.0676103783864947],[125,123,69,0.07410758753249488],[125,123,70,0.08066327739209489],[125,123,71,0.0872671841469614],[125,123,72,0.09390047809727865],[125,123,73,0.10053729793932123],[125,123,74,0.10714625020085201],[125,123,75,0.1136918703334223],[125,123,76,0.11769491567249407],[125,123,77,0.12017793031201335],[125,123,78,0.1225944238635748],[125,123,79,0.12497980415176106],[125,124,64,0.05034234523914015],[125,124,65,0.056602908404850064],[125,124,66,0.06294299944764799],[125,124,67,0.06934508841703214],[125,124,68,0.07581179682157026],[125,124,69,0.0823540230059227],[125,124,70,0.08897045716055309],[125,124,71,0.09564885612139255],[125,124,72,0.10236776309827204],[125,124,73,0.10909819007939286],[125,124,74,0.11580525885437551],[125,124,75,0.12244979677452728],[125,124,76,0.1251704097188548],[125,124,77,0.1274791154985683],[125,124,78,0.12972928132254247],[125,124,79,0.13195974816885583],[125,125,64,0.05879504260586539],[125,125,65,0.0650201176373548],[125,125,66,0.07133453916873503],[125,125,67,0.07772402276128036],[125,125,68,0.08419274494024045],[125,125,69,0.0907513547836359],[125,125,70,0.09739746457109746],[125,125,71,0.10411708104346874],[125,125,72,0.1108864554792783],[125,125,73,0.11767389132053609],[125,125,74,0.12444150495212682],[125,125,75,0.13035533241778613],[125,125,76,0.13260741104531057],[125,125,77,0.1347650146732477],[125,125,78,0.13687106724315712],[125,125,79,0.13896735456879863],[125,126,64,0.06751885030151002],[125,126,65,0.07368942182556928],[125,126,66,0.07995698172463282],[125,126,67,0.08631011757449092],[125,126,68,0.09275430158120289],[125,126,69,0.0992998662874482],[125,126,70,0.10594344792472873],[125,126,71,0.1126695473733484],[125,126,72,0.11945248513066292],[125,126,73,0.12625830970404836],[125,126,74,0.1330466547603913],[125,126,75,0.1378657211990067],[125,126,76,0.13998919653719472],[125,126,77,0.14202161369443345],[125,126,78,0.1440084741541231],[125,126,79,0.14599396065241943],[125,127,64,0.07650639567767058],[125,127,65,0.08260424917729149],[125,127,66,0.08880439519014047],[125,127,67,0.09509786945273317],[125,127,68,0.10149115177735275],[125,127,69,0.10799418175324797],[125,127,70,0.11460272083555638],[125,127,71,0.12130001539188265],[125,127,72,0.1280588304505741],[125,127,73,0.13484343370463822],[125,127,74,0.1416115248976432],[125,127,75,0.14527517970036383],[125,127,76,0.1472979717841581],[125,127,77,0.14923278226962036],[125,127,78,0.1511270726673158],[125,127,79,0.1530268332814265],[125,128,64,0.08574149303254522],[125,128,65,0.09174964050434206],[125,128,66,0.09786295151359456],[125,128,67,0.10407445465020003],[125,128,68,0.1103913332065769],[125,128,69,0.11682305158562614],[125,128,70,0.12336459406115169],[125,128,71,0.12999820251881516],[125,128,72,0.13669546319081233],[125,128,73,0.1434193413456197],[125,128,74,0.15012615891922146],[125,128,75,0.15256424949945085],[125,128,76,0.1545147318222243],[125,128,77,0.15638006788725203],[125,128,78,0.1582090425078641],[125,128,79,0.16004884259652946],[125,129,64,0.09519907327416528],[125,129,65,0.10110219295472825],[125,129,66,0.10711088276734938],[125,129,67,0.1132196995664827],[125,129,68,0.11943622469890018],[125,129,69,0.12576936319890322],[125,129,70,0.13221341300784023],[125,129,71,0.13874985142254304],[125,129,72,0.14534945039424355],[125,129,73,0.15197433821887102],[125,129,74,0.15767542812011537],[125,129,75,0.15971325556547272],[125,129,76,0.16161908555213544],[125,129,77,0.16344248714461523],[125,129,78,0.1652329347839952],[125,129,79,0.16703820041163855],[125,130,64,0.10484539080949187],[125,130,65,0.11063027740266566],[125,130,66,0.11651870432245927],[125,130,67,0.12250630817174903],[125,130,68,0.1286007783866559],[125,130,69,0.1348103788639075],[125,130,70,0.1411288023336754],[125,130,71,0.14753698221754213],[125,130,72,0.1540052145632434],[125,130,73,0.1604952253633262],[125,130,74,0.16468573503186154],[125,130,75,0.16670209665481073],[125,130,76,0.1685890435921734],[125,130,77,0.17039631450790454],[125,130,78,0.1721734658241926],[125,130,79,0.17396826391176973],[125,131,64,0.1146385091849496],[125,131,65,0.12029453104808999],[125,131,66,0.12604970650570343],[125,131,67,0.131900347912717],[125,131,68,0.13785399700142104],[125,131,69,0.1439182019991515],[125,131,70,0.1500861189953366],[125,131,71,0.15633832997532096],[125,131,72,0.16264495313675958],[125,131,73,0.16896769790422728],[125,131,74,0.17149310211380364],[125,131,75,0.17350996533568225],[125,131,76,0.17540076933210666],[125,131,77,0.17721486853202867],[125,131,78,0.1790013428826772],[125,131,79,0.18080740523701377],[125,132,64,0.12452894174220422],[125,132,65,0.13004849328074475],[125,132,66,0.13566057475738047],[125,132,67,0.14136184611212763],[125,132,68,0.1471595003779203],[125,132,69,0.15306030826797523],[125,132,70,0.1590569428949904],[125,132,71,0.1651297902512217],[125,132,72,0.17124903453990856],[125,132,73,0.17587600954852325],[125,132,74,0.17808010454332995],[125,132,75,0.1801151881619521],[125,132,76,0.1820284827874376],[125,132,77,0.18386848222566554],[125,132,78,0.18568330342578457],[125,132,79,0.18751912162237935],[125,133,64,0.1344407791088283],[125,133,65,0.13981831555050891],[125,133,66,0.1452797028120923],[125,133,67,0.15082170446062665],[125,133,68,0.15645104243342978],[125,133,69,0.16217369860320885],[125,133,70,0.16798193893842486],[125,133,71,0.17385610639107352],[125,133,72,0.17976667144453828],[125,133,73,0.1822314626679795],[125,133,74,0.18446030459677978],[125,133,75,0.18652627464265834],[125,133,76,0.1884754852483142],[125,133,77,0.190355172739791],[125,133,78,0.1922120863990049],[125,133,79,0.19409096130458142],[125,134,64,0.14425953428010568],[125,134,65,0.14948895844804638],[125,134,66,0.15479178077278577],[125,134,67,0.16016467800033704],[125,134,68,0.1656138673124441],[125,134,69,0.1711446393660413],[125,134,70,0.17674902043303745],[125,134,71,0.18240753559240708],[125,134,72,0.18598526592654432],[125,134,73,0.18844443933107893],[125,134,74,0.19070520588365125],[125,134,75,0.19280959747236],[125,134,76,0.19480226909397177],[125,134,77,0.19672885404176488],[125,134,78,0.19863439910490452],[125,134,79,0.20056188348745824],[125,135,64,0.1538804628520429],[125,135,65,0.1589550727398697],[125,135,66,0.16409117424407554],[125,135,67,0.16928522290766482],[125,135,68,0.17454297533846125],[125,135,69,0.17986921957115237],[125,135,70,0.18525598529688553],[125,135,71,0.18938195848567177],[125,135,72,0.1920952885189862],[125,135,73,0.19458159322430038],[125,135,74,0.19687720636129746],[125,135,75,0.1990225703573745],[125,135,76,0.20106057057516624],[125,135,77,0.2030349450113268],[125,135,78,0.20498877329362095],[125,135,79,0.20696304859164255],[125,136,64,0.16321512811510064],[125,136,65,0.1681278712844285],[125,136,66,0.17308907977176838],[125,136,67,0.17809491477034278],[125,136,68,0.18315078167510765],[125,136,69,0.1882612199443114],[125,136,70,0.1924693319303589],[125,136,71,0.19544800506774782],[125,136,72,0.19817926126702634],[125,136,73,0.20069220322374745],[125,136,74,0.2030214971099289],[125,136,75,0.20520570058392104],[125,136,76,0.20728566065595183],[125,136,77,0.20930298538380884],[125,136,78,0.21129859313880162],[125,136,79,0.21331134293940995],[125,137,64,0.17219199406847935],[125,137,65,0.1769356372199325],[125,137,66,0.18171393015858797],[125,137,67,0.18652272928694907],[125,137,68,0.19136725054544754],[125,137,69,0.19529994869785844],[125,137,70,0.19854254433748827],[125,137,71,0.20152680390051952],[125,137,72,0.20427316954997118],[125,137,73,0.20680904764527314],[125,137,74,0.20916714743016693],[125,137,75,0.21138388292837118],[125,137,76,0.2134978420686506],[125,137,77,0.21554832684673142],[125,137,78,0.21757396810827045],[125,137,79,0.21961141830584555],[125,138,64,0.1807573875616775],[125,138,65,0.1853245971448863],[125,138,66,0.18991215748304863],[125,138,67,0.194176539928372],[125,138,68,0.1979282072949146],[125,138,69,0.20142071249132884],[125,138,70,0.20465458346610504],[125,138,71,0.20764031107163253],[125,138,72,0.21039666660474077],[125,138,73,0.21294907066430557],[125,138,74,0.2153280175069835],[125,138,75,0.21756755890123852],[125,138,76,0.21970385128856806],[125,138,77,0.22177376985995564],[125,138,78,0.22381359294607533],[125,138,79,0.22585775990257612],[125,139,64,0.18788053838854643],[125,139,65,0.19227899244538268],[125,139,66,0.1964550806773493],[125,139,67,0.20040686369744617],[125,139,68,0.2041227382599078],[125,139,69,0.2075912955186805],[125,139,70,0.2108119754310188],[125,139,71,0.21379369226583775],[125,139,72,0.2165532557212473],[125,139,73,0.21911383885917893],[125,139,74,0.2215034967597487],[125,139,75,0.22375373963213402],[125,139,76,0.22589816394304785],[125,139,77,0.22797114493901113],[125,139,78,0.23000659374548157],[125,139,79,0.23203678202533926],[125,140,64,0.19434720852831117],[125,140,65,0.198670069080347],[125,140,66,0.20278267619009555],[125,140,67,0.20668328912713244],[125,140,68,0.21036002687726088],[125,140,69,0.2138006848276595],[125,140,70,0.21700331529333539],[125,140,71,0.2199749684869196],[125,140,72,0.2227302277624315],[125,140,73,0.22528978590884877],[125,140,74,0.22767906607804497],[125,140,75,0.22992689078345557],[125,140,76,0.23206420224830815],[125,140,77,0.2341228372159844],[125,140,78,0.23613435916084727],[125,140,79,0.23812895065644177],[125,141,64,0.2008345280974487],[125,141,65,0.2050796904049546],[125,141,66,0.20912669307612963],[125,141,67,0.21297383052070204],[125,141,68,0.21660872096063422],[125,141,69,0.22001809264357444],[125,141,70,0.223198338653549],[125,141,71,0.22615438539210472],[125,141,72,0.22889835195090982],[125,141,73,0.231448243542008],[125,141,74,0.23382668221402964],[125,141,75,0.23605967795456786],[125,141,76,0.23817544314204034],[125,141,77,0.24020325316513524],[125,141,78,0.24217235587501856],[125,141,79,0.24411093237552323],[125,142,64,0.20728347426000376],[125,142,65,0.21145007191110463],[125,142,66,0.21543065355402446],[125,142,67,0.21922337786255103],[125,142,68,0.22281516039517152],[125,142,69,0.22619143140324544],[125,142,70,0.2293466885617155],[125,142,71,0.23228350407971105],[125,142,72,0.23501131790877564],[125,142,73,0.23754525688815092],[125,142,74,0.23990498266278823],[125,142,75,0.24211357110397005],[125,142,76,0.2441964258483989],[125,142,77,0.24618022844963494],[125,142,78,0.2480919275063439],[125,142,79,0.24995776899545236],[125,143,64,0.21361883724743788],[125,143,65,0.2177072334411943],[125,143,66,0.22162197338310755],[125,143,67,0.22536091365887012],[125,143,68,0.22891009428927464],[125,143,69,0.23225346160471091],[125,143,70,0.2353834173881602],[125,143,71,0.23829997516878507],[125,143,72,0.241009697073783],[125,143,73,0.24352464746968705],[125,143,74,0.24586136580090945],[125,143,75,0.24803986095184088],[125,143,76,0.2500826293696365],[125,143,77,0.2520136990880903],[125,143,78,0.2538577016890681],[125,143,79,0.25563897412713926],[125,144,64,0.21979234209898785],[125,144,65,0.22380261168511748],[125,144,66,0.22765177164265243],[125,144,67,0.23133718241876952],[125,144,68,0.2348438384690199],[125,144,69,0.23815404193951975],[125,144,70,0.24125792200500024],[125,144,71,0.24415275049216834],[125,144,72,0.2468420323081392],[125,144,73,0.24933460245053843],[125,144,74,0.25164373154309566],[125,144,75,0.25378624178533776],[125,144,76,0.25578163514265567],[125,144,77,0.2576512355335429],[125,144,78,0.2594173466943384],[125,144,79,0.26110242731847766],[125,145,64,0.22576884156534566],[125,145,65,0.2297002438623725],[125,145,66,0.23348315612548873],[125,145,67,0.23711421665437113],[125,145,68,0.24057720567434612],[125,145,69,0.24357072626535847],[125,145,70,0.24632688149418439],[125,145,71,0.24903527824214228],[125,145,72,0.2516924711590524],[125,145,73,0.2542902974682684],[125,145,74,0.256816646803661],[125,145,75,0.25925623305660606],[125,145,76,0.2612427452505932],[125,145,77,0.26304091554727616],[125,145,78,0.26471784998051945],[125,145,79,0.2662941793862898],[125,146,64,0.23151747223511418],[125,146,65,0.23536835733868414],[125,146,66,0.23908331409852832],[125,146,67,0.24259443544212111],[125,146,68,0.24517735707451707],[125,146,69,0.24769218282559585],[125,146,70,0.2501499857402618],[125,146,71,0.25255607398730817],[125,146,72,0.2549105797326171],[125,146,73,0.2572090651711255],[125,146,74,0.2594431448064176],[125,146,75,0.2616011230638424],[125,146,76,0.26366864632601333],[125,146,77,0.26562936848882457],[125,146,78,0.26746562915204236],[125,146,79,0.2691591435813426],[125,147,64,0.23701114499076342],[125,147,65,0.24077889675258404],[125,147,66,0.24442308283883502],[125,147,67,0.246970994103118],[125,147,68,0.24926969576880526],[125,147,69,0.25149098091967764],[125,147,70,0.253648786921051],[125,147,71,0.25575176894151674],[125,147,72,0.2578037089168859],[125,147,73,0.25980395491876385],[125,147,74,0.26174789057897985],[125,147,75,0.2636274341866519],[125,147,76,0.26543156704553256],[125,147,77,0.26714689065607655],[125,147,78,0.26875821226992774],[125,147,79,0.27024915835479824],[125,148,64,0.24222609246787857],[125,148,65,0.24590710688121195],[125,148,66,0.24892034125322982],[125,148,67,0.25104127781408114],[125,148,68,0.25305464626492513],[125,148,69,0.25498205913975536],[125,148,70,0.25684034579334214],[125,148,71,0.2586415359390349],[125,148,72,0.26039308317990256],[125,148,73,0.2620981330230214],[125,148,74,0.2637558356144551],[125,148,75,0.26536170336539106],[125,148,76,0.266908013577503],[125,148,77,0.2683842561187444],[125,148,78,0.2697776261502651],[125,148,79,0.2710735618617288],[125,149,64,0.24714147392342936],[125,149,65,0.2507311716542337],[125,149,66,0.25296798740970194],[125,149,67,0.25481433472803067],[125,149,68,0.2565432248809104],[125,149,69,0.2581784725908871],[125,149,70,0.2597397773346718],[125,149,71,0.26124251877788796],[125,149,72,0.2626977913401172],[125,149,73,0.2641124979949054],[125,149,74,0.2654895041460704],[125,149,75,0.26682785232117456],[125,149,76,0.26812303832659834],[125,149,77,0.2693673494173999],[125,149,78,0.2705502649500876],[125,149,79,0.2716589199086727],[125,150,64,0.25173903790770064],[125,150,65,0.25500335860786244],[125,150,66,0.2567241091178657],[125,150,67,0.2582976460255683],[125,150,68,0.2597448053092036],[125,150,69,0.26109153896314696],[125,150,70,0.2623603448986001],[125,150,71,0.26356987553760053],[125,150,72,0.2647347820562017],[125,150,73,0.26586563310217676],[125,150,74,0.26696890944255613],[125,150,75,0.26804707586210236],[125,150,76,0.269098731503065],[125,150,77,0.2701188397105902],[125,150,78,0.2710990383283018],[125,150,79,0.27202803127616526],[125,151,64,0.25600284312561555],[125,151,65,0.2587316778118942],[125,151,66,0.2601931128478499],[125,151,67,0.261497316277712],[125,151,68,0.2626672635767153],[125,151,69,0.26373093606883363],[125,151,70,0.2647135099701092],[125,151,71,0.2656367819722654],[125,151,72,0.26651882409108774],[125,151,73,0.26737372851232927],[125,151,74,0.26821144450674234],[125,151,75,0.26903770931804943],[125,151,76,0.26985407476272],[125,151,77,0.27065803111990516],[125,151,78,0.27144322973538587],[125,151,79,0.27219980561655505],[125,152,64,0.25991903786959025],[125,152,65,0.26217222144004637],[125,152,66,0.26337830112301364],[125,152,67,0.2644182081322382],[125,152,68,0.2653170704271121],[125,152,69,0.2661047504912535],[125,152,70,0.26680893718733917],[125,152,71,0.26745439466852655],[125,152,72,0.26806243106599353],[125,152,73,0.2686504727647873],[125,152,74,0.2692317469501124],[125,152,75,0.26981507490542705],[125,152,76,0.2704047783452008],[125,152,77,0.2710007008707691],[125,152,78,0.2715983464492307],[125,152,79,0.27218913663472544],[125,153,64,0.2634756984047304],[125,153,65,0.2653259728116674],[125,153,66,0.2662819883109074],[125,153,67,0.2670640209443435],[125,153,68,0.26769933075626967],[125,153,69,0.2682194769908912],[125,153,70,0.2686544542945324],[125,153,71,0.26903177365592496],[125,153,72,0.26937575041720563],[125,153,73,0.2697069133122754],[125,153,74,0.2700415378113631],[125,153,75,0.2703913068179575],[125,153,76,0.2707631015332875],[125,153,77,0.27115892507628164],[125,153,78,0.27157596122558725],[125,153,79,0.2720067704369365],[125,154,64,0.2666627266901096],[125,154,65,0.26819316463321374],[125,154,66,0.2689055575839302],[125,154,67,0.2694373129700384],[125,154,68,0.26981776972928956],[125,154,69,0.27007996831195386],[125,154,70,0.2702559666878211],[125,154,71,0.2703757641533063],[125,154,72,0.27046641626407064],[125,154,73,0.2705512858664402],[125,154,74,0.2706494340816287],[125,154,75,0.27077515483367276],[125,154,76,0.2709376562500344],[125,154,77,0.2711408920052925],[125,154,78,0.27138354542565213],[125,154,79,0.271659168927575],[125,155,64,0.26947180782676644],[125,155,65,0.2707733074427983],[125,155,66,0.27124945865761924],[125,155,67,0.2715394667352912],[125,155,68,0.2716746652021492],[125,155,69,0.2716893350269133],[125,155,70,0.2716173262099846],[125,155,71,0.2714908371292602],[125,155,72,0.2713393658906495],[125,155,73,0.27118881227651037],[125,155,74,0.2710607346924985],[125,155,75,0.27097176622168695],[125,155,76,0.270933193603791],[125,155,77,0.27095070266943716],[125,155,78,0.2710242934773016],[125,155,79,0.2711483681282973],[125,156,64,0.2718964276329152],[125,156,65,0.2730651567391025],[125,156,66,0.273313145904804],[125,156,67,0.27337059718457557],[125,156,68,0.2732707260619806],[125,156,69,0.27304879504779167],[125,156,70,0.27274015384155004],[125,156,71,0.2723788883458595],[125,156,72,0.2719966195347955],[125,156,73,0.271621466661114],[125,156,74,0.2712771797143375],[125,156,75,0.2709824457238107],[125,156,76,0.2707503731829755],[125,156,77,0.27058815855609697],[125,156,78,0.2704969385193901],[125,156,79,0.27047183128787405],[125,157,64,0.2739319507608236],[125,157,65,0.2750666183787026],[125,157,66,0.2750949564311195],[125,157,67,0.27492940220024953],[125,157,68,0.27460491608823184],[125,157,69,0.2741574724216592],[125,157,70,0.27362361592472617],[125,157,71,0.2730389955444344],[125,157,72,0.2724370231682062],[125,157,73,0.2718477095034676],[125,157,74,0.2712966825028667],[125,157,75,0.270804393376945],[125,157,76,0.2703855148938877],[125,157,77,0.27004853632636827],[125,157,78,0.26979555907155195],[125,157,79,0.2696222966452094],[125,158,64,0.2755757597876834],[125,158,65,0.27677459180929087],[125,158,66,0.2765919276814536],[125,158,67,0.27621295506895893],[125,158,68,0.2756742229224618],[125,158,69,0.2750121450139975],[125,158,70,0.27426415354352074],[125,158,71,0.27346713341960927],[125,158,72,0.2726559539391046],[125,158,73,0.2718621894088751],[125,158,74,0.271113034521337],[125,158,75,0.2704304199322893],[125,158,76,0.2698303331257554],[125,158,77,0.2693223492890005],[125,158,78,0.2689093765649579],[125,158,79,0.26858761970234996],[125,159,64,0.2768274557337079],[125,159,65,0.27818475068551834],[125,159,66,0.2777995541269385],[125,159,67,0.27721643845215377],[125,159,68,0.27647337171632547],[125,159,69,0.27560694066635244],[125,159,70,0.27465516466709783],[125,159,71,0.27365584601246706],[125,159,72,0.2726449879347546],[125,159,73,0.27165541220994777],[125,159,74,0.2707155825530406],[125,159,75,0.26984863961580835],[125,159,76,0.26907165301672026],[125,159,77,0.26839509545198614],[125,159,78,0.26782254356157276],[125,159,79,0.26735060985796444],[125,160,64,0.2776891204855907],[125,160,65,0.27929126039029134],[125,160,66,0.2787114825591159],[125,160,67,0.27793281939584996],[125,160,68,0.27699448300650775],[125,160,69,0.2759329813950857],[125,160,70,0.27478663864504316],[125,160,71,0.2735938761365354],[125,160,72,0.27239152990506654],[125,160,73,0.27121337709022314],[125,160,74,0.2700888780054285],[125,160,75,0.26904213996222864],[125,160,76,0.2680911085836641],[125,160,77,0.26724699194416435],[125,160,78,0.2665139224817486],[125,160,79,0.26588886124581573],[125,161,64,0.2781656416321781],[125,161,65,0.2800864319572224],[125,161,66,0.279319145491822],[125,161,67,0.27835246488989435],[125,161,68,0.2772266743418371],[125,161,69,0.2759779751759709],[125,161,70,0.27464474262263233],[125,161,71,0.27326575143122667],[125,161,72,0.2718784045710073],[125,161,73,0.2705171793808601],[125,161,74,0.2692122979926493],[125,161,75,0.26798862844196913],[125,161,76,0.26686482246756055],[125,161,77,0.26585269558971036],[125,161,78,0.26495685465233637],[125,161,79,0.2641745776170742],[125,162,64,0.27826510025069384],[125,162,65,0.2800180406163575],[125,162,66,0.2796113321411777],[125,162,67,0.2784626974581915],[125,162,68,0.2771556051605854],[125,162,69,0.2757257548338404],[125,162,70,0.2742113594204231],[125,162,71,0.2726513266154039],[125,162,72,0.2710834091213918],[125,162,73,0.2695425796667755],[125,162,74,0.26805963786686804],[125,162,75,0.2666600555858354],[125,162,76,0.26536306703339047],[125,162,77,0.2641810094077311],[125,162,78,0.26311891947892907],[125,162,79,0.2621743910989202],[125,163,64,0.2779992222177278],[125,163,65,0.279571890392473],[125,163,66,0.2795736964216274],[125,163,67,0.278247290230459],[125,163,68,0.27676296438685083],[125,163,69,0.2751557635293251],[125,163,70,0.27346357639737817],[125,163,71,0.2717252814907114],[125,163,72,0.2699788264807225],[125,163,73,0.26825953881983133],[125,163,74,0.2665986748521125],[125,163,75,0.26502221429786815],[125,163,76,0.26354990655141525],[125,163,77,0.26219457479918584],[125,163,78,0.26096168353813765],[125,163,79,0.25984917465655866],[125,164,64,0.27738427074635547],[125,164,65,0.27877820004357656],[125,164,66,0.27918814758267374],[125,164,67,0.2776860186150306],[125,164,68,0.2760261903142976],[125,164,69,0.27424294774612995],[125,164,70,0.2723737524740702],[125,164,71,0.2704573577197814],[125,164,72,0.2685318215234718],[125,164,73,0.2666327568630452],[125,164,74,0.2647918262369196],[125,164,75,0.26303548777686747],[125,164,76,0.2613839995158152],[125,164,77,0.25985068799505007],[125,164,78,0.2584414869597038],[125,164,79,0.25715475146491285],[125,165,64,0.2764417252757283],[125,165,65,0.2776598371871219],[125,165,66,0.2784345218449145],[125,165,67,0.2767575976870855],[125,165,68,0.2749226890887819],[125,165,69,0.2729632590624002],[125,165,70,0.2709162788754277],[125,165,71,0.2688203175286782],[125,165,72,0.26671349334745603],[125,165,73,0.26463166758306594],[125,165,74,0.2626068877077466],[125,165,75,0.26066608764119403],[125,165,76,0.25883005169875584],[125,165,77,0.25711264860397476],[125,165,78,0.25552034146546454],[125,165,79,0.25405197918438277],[125,166,64,0.27519116366341845],[125,166,65,0.2762372343326288],[125,166,66,0.2772584093125136],[125,166,67,0.2754456225570834],[125,166,68,0.2734353946625248],[125,166,69,0.271298851809576],[125,166,70,0.26907244804815594],[125,166,71,0.26679453678719334],[125,166,72,0.26450326706100663],[125,166,73,0.2622347260122732],[125,166,74,0.26002133542431466],[125,166,75,0.25789050968578925],[125,166,76,0.2558635821177828],[125,166,77,0.25395500614058003],[125,166,78,0.25217183730917503],[125,166,79,0.25051350180717635],[125,167,64,0.2736484394712533],[125,167,65,0.2745270467642422],[125,167,66,0.27538270584775226],[125,167,67,0.27373886595551733],[125,167,68,0.2715525547550895],[125,167,69,0.269237367372088],[125,167,70,0.26682925776074573],[125,167,71,0.2643663667840315],[125,167,72,0.2618868707329671],[125,167,73,0.25942707932784975],[125,167,74,0.2570197911512416],[125,167,75,0.2546929140100207],[125,167,76,0.2524683572674367],[125,167,77,0.2503612027298735],[125,167,78,0.24837916022102352],[125,167,79,0.24652231353278817],[125,168,64,0.2718269450677564],[125,168,65,0.2725434020064536],[125,168,66,0.2732394096939835],[125,168,67,0.27163004640833005],[125,168,68,0.26926652926280364],[125,168,69,0.2667707680534716],[125,168,70,0.26417828305160757],[125,168,71,0.2615270446288794],[125,168,72,0.2588552826856593],[125,168,73,0.25619954783252147],[125,168,74,0.2535930323566941],[125,168,75,0.25106415855155245],[125,168,76,0.24863544152948555],[125,168,77,0.24632263318054215],[125,168,78,0.2441341534853134],[125,168,79,0.24207081494493385],[125,169,64,0.2697391199673996],[125,169,65,0.27029939166092853],[125,169,66,0.2708422725846319],[125,169,67,0.269114361483215],[125,169,68,0.26657236047139876],[125,169,69,0.2638939510448074],[125,169,70,0.26111433835326553],[125,169,71,0.25827140575915214],[125,169,72,0.25540349464586415],[125,169,73,0.25254743724753215],[125,169,74,0.2497368505769765],[125,169,75,0.24700069907592137],[125,169,76,0.24436213315415084],[125,169,77,0.24183761032652593],[125,169,78,0.23943630520271786],[125,169,79,0.23715981413853976],[125,170,64,0.2673981948775498],[125,170,65,0.2678087989905843],[125,170,66,0.2682055926143193],[125,170,67,0.26618778647947416],[125,170,68,0.26346611228110717],[125,170,69,0.260603136581592],[125,170,70,0.2576339208765821],[125,170,71,0.25459638686114067],[125,170,72,0.25152907664066393],[125,170,73,0.248469166264327],[125,170,74,0.2454507406664653],[125,170,75,0.24250333765074547],[125,170,76,0.23965076809682337],[125,170,77,0.236910219113342],[125,170,78,0.23429164640869446],[125,170,79,0.23179746170635884],[125,171,64,0.2648201738206027],[125,171,65,0.2650880645675534],[125,171,66,0.26534615690875657],[125,171,67,0.2628451363794236],[125,171,68,0.25994297634580554],[125,171,69,0.2568940282869043],[125,171,70,0.2537334333627909],[125,171,71,0.2504993174372788],[125,171,72,0.24723054200766337],[125,171,73,0.24396470787550847],[125,171,74,0.24073641961671588],[125,171,75,0.23757581846250603],[125,171,76,0.23450739075153557],[125,171,77,0.23154905866105593],[125,171,78,0.228711559475843],[125,171,79,0.225998119211967],[125,172,64,0.2620260568870051],[125,172,65,0.2621584924847043],[125,172,66,0.26197747322298437],[125,172,67,0.25907788870921244],[125,172,68,0.2559951428653415],[125,172,69,0.2527597435448006],[125,172,70,0.24940718416651006],[125,172,71,0.24597599811663412],[125,172,72,0.24250551076500632],[125,172,73,0.23903384289234036],[125,172,74,0.23559617352618628],[125,172,75,0.2322232697422249],[125,172,76,0.22894029054119555],[125,172,77,0.22576587146430607],[125,172,78,0.22271149616545666],[125,172,79,0.21978116072130213],[125,173,64,0.25904430637339876],[125,173,65,0.25904869982389056],[125,173,66,0.2579442924681046],[125,173,67,0.2548717647760752],[125,173,68,0.2516094335970169],[125,173,69,0.24818851158331404],[125,173,70,0.244645162477859],[125,173,71,0.24101856366098146],[125,173,72,0.23734866945278768],[125,173,73,0.2336742239336424],[125,173,74,0.23003103119117854],[125,173,75,0.22645049046707075],[125,173,76,0.2229584032366027],[125,173,77,0.21957405881257977],[125,173,78,0.21630960462634605],[125,173,79,0.21316970690685713],[125,174,64,0.25591355926830894],[125,174,65,0.2557973122774732],[125,174,66,0.25344688173809493],[125,174,67,0.2502040665582866],[125,174,68,0.24676469446908755],[125,174,69,0.24316113677198956],[125,174,70,0.23943058632700376],[125,174,71,0.23561312846458368],[125,174,72,0.2317495254145608],[125,174,73,0.22787924803989362],[125,174,74,0.2240387626697991],[125,174,75,0.22026008039844866],[125,174,76,0.21656957578193703],[125,174,77,0.21298708143136136],[125,174,78,0.2095252645675471],[125,174,79,0.20618929117738566],[125,175,64,0.252673767032512],[125,175,65,0.2516194003489831],[125,175,66,0.24846121815094538],[125,175,67,0.24505205341398067],[125,175,68,0.24143983677592276],[125,175,69,0.2376585866336415],[125,175,70,0.23374690805876341],[125,175,71,0.22974607157405388],[125,175,72,0.22569782830626273],[125,175,73,0.2216424701166809],[125,175,74,0.21761714237021132],[125,175,75,0.2136544165823544],[125,175,76,0.2097811297570238],[125,175,77,0.20601749680023385],[125,175,78,0.20237650196927423],[125,175,79,0.1988635748981599],[125,176,64,0.24931066566460655],[125,176,65,0.24631560004201772],[125,176,66,0.24300262555730373],[125,176,67,0.23943161069999697],[125,176,68,0.23565132199444674],[125,176,69,0.23169788646697298],[125,176,70,0.22761167871265234],[125,176,71,0.22343540781900828],[125,176,72,0.21921197351380636],[125,176,73,0.2149825647405848],[125,176,74,0.21078500816665707],[125,176,75,0.20665237371426098],[125,176,76,0.2026118437865042],[125,176,77,0.1986838524393557],[125,176,78,0.19488150033297907],[125,176,79,0.19121025088424615],[125,177,64,0.24370533913487769],[125,177,65,0.24056538034195063],[125,177,66,0.23710252832124654],[125,177,67,0.23337476006230704],[125,177,68,0.22943175726571866],[125,177,69,0.2253121702155334],[125,177,70,0.22105845751926415],[125,177,71,0.21671498261214106],[125,177,72,0.2123259218829469],[125,177,73,0.207933412303042],[125,177,74,0.20357594588192926],[125,177,75,0.19928701786660036],[125,177,76,0.19509403519098453],[125,177,77,0.1910174912696425],[125,177,78,0.18707041282013626],[125,177,79,0.18325808399525667],[125,178,64,0.23768485874026005],[125,178,65,0.23440496304876113],[125,178,66,0.2307978932354472],[125,178,67,0.22691930226531298],[125,178,68,0.22281983621367776],[125,178,69,0.21854102995020325],[125,178,70,0.2141276918257718],[125,178,71,0.20962601231248065],[125,178,72,0.20508153553065148],[125,178,73,0.20053736687348048],[125,178,74,0.19603262384426356],[125,178,75,0.1916011368237068],[125,178,76,0.18727040608284876],[125,178,77,0.18306082095401627],[125,178,78,0.17898514667170093],[125,178,79,0.17504828400117212],[125,179,64,0.23128931055425273],[125,179,65,0.2278751968122957],[125,179,66,0.22413043514578593],[125,179,67,0.2201079537589405],[125,179,68,0.2158593868394687],[125,179,69,0.2114294552376736],[125,179,70,0.20686552833223007],[125,179,71,0.2022157484284726],[125,179,72,0.19752707725433477],[125,179,73,0.19284357460083706],[125,179,74,0.18820491598608483],[125,179,75,0.1836451558338568],[125,179,76,0.17919174226567686],[125,179,77,0.17486478921220358],[125,179,78,0.17067661115940652],[125,179,79,0.166631525461141],[125,180,64,0.22456251959344176],[125,180,65,0.22102073185928683],[125,180,66,0.21714574444818666],[125,180,67,0.21298741018327905],[125,180,68,0.20859835333253735],[125,180,69,0.2040267157463073],[125,180,70,0.19932257952527038],[125,180,71,0.19453611178788371],[125,180,72,0.18971569753918263],[125,180,73,0.18490630015176937],[125,180,74,0.18014805607504975],[125,180,75,0.1754751100112615],[125,180,76,0.17091469641540274],[125,180,77,0.16648647279409887],[125,180,78,0.16220210989928827],[125,180,79,0.15806514354000525],[125,181,64,0.21755117364218082],[125,181,65,0.21388911223335522],[125,181,66,0.209892335466208],[125,181,67,0.20560733586223556],[125,181,68,0.20108771090341201],[125,181,69,0.19638518626208562],[125,181,70,0.1915526445667515],[125,181,71,0.18664229603569055],[125,181,72,0.1817039086477922],[125,181,73,0.1767832608122932],[125,181,74,0.17192082286525281],[125,181,75,0.16715067335428732],[125,181,76,0.16249965570326785],[125,181,77,0.15798678047857925],[125,181,78,0.1536228781115497],[125,181,79,0.14941050657135907],[125,182,64,0.21030386204127308],[125,182,65,0.20652978444038453],[125,182,66,0.20242061463790975],[125,182,67,0.1980192782603352],[125,182,68,0.19338031266884914],[125,182,69,0.1885591132167546],[125,182,70,0.18361138382854933],[125,182,71,0.17859133975945543],[125,182,72,0.17355004521984752],[125,182,73,0.16853396782839325],[125,182,74,0.16358375591064364],[125,182,75,0.15873324430550292],[125,182,76,0.15400869398465275],[125,182,77,0.14942827043272383],[125,182,78,0.1450017653821135],[125,182,79,0.14073056614930082],[125,183,64,0.20287002822323197],[125,183,65,0.19899302130699986],[125,183,66,0.19478176735823113],[125,183,67,0.19027550629747042],[125,183,68,0.18552966754416733],[125,183,69,0.18060332175859245],[125,183,70,0.1755549461978825],[125,183,71,0.17044066648050205],[125,183,72,0.16531271075447665],[125,183,73,0.16021807451262685],[125,183,74,0.15519740174085467],[125,183,75,0.15028408774391191],[125,183,76,0.1455036086489096],[125,183,77,0.140873082243152],[125,183,78,0.1364010644628945],[125,183,79,0.13208758551666197],[125,184,64,0.19919785366779658],[125,184,65,0.1943680888771245],[125,184,66,0.18930107840740212],[125,184,67,0.1840268533947501],[125,184,68,0.1785964032307062],[125,184,69,0.17306733921643186],[125,184,70,0.16749593668851165],[125,184,71,0.1622465916895963],[125,184,72,0.15704920929547886],[125,184,73,0.15189373059892794],[125,184,74,0.14682059006281215],[125,184,75,0.1418625332709438],[125,184,76,0.1370440422043711],[125,184,77,0.13238098391761519],[125,184,78,0.1278804866409055],[125,184,79,0.12354104701629023],[125,185,64,0.20107749943590747],[125,185,65,0.1961423040913087],[125,185,66,0.1909725875267794],[125,185,67,0.18559457965013235],[125,185,68,0.18005987062646386],[125,185,69,0.1744293581815153],[125,185,70,0.16876163781790077],[125,185,71,0.163111333386272],[125,185,72,0.15752779561537517],[125,185,73,0.15205399862994973],[125,185,74,0.14672563943784184],[125,185,75,0.1415704450535206],[125,185,76,0.13660769160903732],[125,185,77,0.13184793948845203],[125,185,78,0.12729298821182494],[125,185,79,0.12293605449199546],[125,186,64,0.20291920614978232],[125,186,65,0.19787891189664703],[125,186,66,0.19260823544130587],[125,186,67,0.18712978527522955],[125,186,68,0.18149568525490328],[125,186,69,0.17576989948027658],[125,186,70,0.170013111184616],[125,186,71,0.16428111522093408],[125,186,72,0.15862365196631173],[125,186,73,0.15308343192922053],[125,186,74,0.14769535567644393],[125,186,75,0.14248593339599808],[125,186,76,0.1374729081108843],[125,186,77,0.1326650862585562],[125,186,78,0.12806237905653248],[125,186,79,0.12365605778742401],[125,187,64,0.20475180366158358],[125,187,65,0.1996072155238561],[125,187,66,0.1942377639551276],[125,187,67,0.18866270553633482],[125,187,68,0.18293462438256786],[125,187,69,0.1771202617469109],[125,187,70,0.17128210166279909],[125,187,71,0.16547683291595594],[125,187,72,0.15975432107528484],[125,187,73,0.1541567637523973],[125,187,74,0.14871803333943273],[125,187,75,0.1434632111887319],[125,187,76,0.13840831691109082],[125,187,77,0.1335602361845906],[125,187,78,0.12891685018720966],[125,187,79,0.12446736949515423],[125,188,64,0.20659862049259384],[125,188,65,0.2013508984674452],[125,188,66,0.19588514541088314],[125,188,67,0.19021761537428544],[125,188,68,0.18440127583116853],[125,188,69,0.17850529772017354],[125,188,70,0.17259363469744768],[125,188,71,0.16672356183769627],[125,188,72,0.16094478674095608],[125,188,73,0.1552987363033509],[125,188,74,0.14981802303697397],[125,188,75,0.14452609455204707],[125,188,76,0.13943706954236645],[125,188,77,0.13455576334553204],[125,188,78,0.12987790588631945],[125,188,79,0.12539055455617695],[125,189,64,0.20847591125745976],[125,189,65,0.20312643307652042],[125,189,66,0.1975669763056083],[125,189,67,0.1918112073454932],[125,189,68,0.18591240030926565],[125,189,69,0.17994176525975988],[125,189,70,0.1739643636547296],[125,189,71,0.1680377304741605],[125,189,72,0.16221112361839993],[125,189,73,0.1565249414161624],[125,189,74,0.1510103117698649],[125,189,75,0.14568885620764496],[125,189,76,0.14057263185379526],[125,189,77,0.13566425407486807],[125,189,78,0.130957202311022],[125,189,79,0.12643631136254377],[125,190,64,0.2103911880612435],[125,190,65,0.2049413948299412],[125,190,66,0.1992907804069383],[125,190,67,0.1934508847341278],[125,190,68,0.187475216637323],[125,190,69,0.18143661150356433],[125,190,70,0.17540086341411182],[125,190,71,0.16942543662448467],[125,190,72,0.1635588509057532],[125,190,73,0.15784022755203955],[125,190,74,0.15229899923470228],[125,190,75,0.14695478663914147],[125,190,76,0.1418174445767142],[125,190,77,0.13688728002445621],[125,190,78,0.13215544431272722],[125,190,79,0.1276045014566403],[125,191,64,0.2123414539496295],[125,191,65,0.20679268041380539],[125,191,66,0.20105321954961847],[125,191,67,0.19513296809567413],[125,191,68,0.1890856082262169],[125,191,69,0.18298518865132518],[125,191,70,0.17689786884238648],[125,191,71,0.1708807247948704],[125,191,72,0.16498126668500102],[125,191,73,0.15923710995588272],[125,191,74,0.15367580268052322],[125,191,75,0.14831481181776163],[125,191,76,0.14316167074733352],[125,191,77,0.13821429024469523],[125,191,78,0.13346143483825665],[125,191,79,0.1288833662822878],[125,192,64,0.214311336412693],[125,192,65,0.20866462764090157],[125,192,66,0.20283821021732895],[125,192,67,0.19684081342178977],[125,192,68,0.19072624910512498],[125,192,69,0.18456939980383827],[125,192,70,0.17843645674301006],[125,192,71,0.17238382359103585],[125,192,72,0.1664577619355153],[125,192,73,0.16069418324946694],[125,192,74,0.15511858987862082],[125,192,75,0.1497461673615794],[125,192,76,0.14458203017792998],[125,192,77,0.1396216228073097],[125,192,78,0.13485127777843842],[125,192,79,0.13024893219195752],[125,193,64,0.21627111886667175],[125,193,65,0.21052703517739138],[125,193,66,0.20461494394377838],[125,193,67,0.19854284005011635],[125,193,68,0.1923646477347151],[125,193,69,0.18615577323496654],[125,193,70,0.17998216983215226],[125,193,71,0.17389934186706302],[125,193,72,0.16795211322242826],[125,193,73,0.16217453573695487],[125,193,74,0.15658993978263472],[125,193,75,0.15121112902979336],[125,193,76,0.14604072121995473],[125,193,77,0.1410716365673238],[125,193,78,0.13628773521890117],[125,193,79,0.13166460502156466],[125,194,64,0.21817466796709184],[125,194,65,0.2123330799724403],[125,194,66,0.2063358095008288],[125,194,67,0.20019046638131746],[125,194,68,0.1939511067865479],[125,194,69,0.1876934634268303],[125,194,70,0.18148308125614257],[125,194,71,0.17537442236590378],[125,194,72,0.16941075305127434],[125,194,73,0.16362416470345065],[125,194,74,0.15803573047809405],[125,194,75,0.15265579949380426],[125,194,76,0.14748443012163925],[125,194,77,0.14251196373937305],[125,194,78,0.13771974014578003],[125,194,79,0.13308095566122632],[125,195,64,0.2199579273218632],[125,195,65,0.2140178273782944],[125,195,66,0.2079349342758721],[125,195,67,0.20171669245821575],[125,195,68,0.1954173574223461],[125,195,69,0.18911295165153513],[125,195,70,0.18286857896321218],[125,195,71,0.17673762906384646],[125,195,72,0.17076178000759665],[125,195,73,0.16497112888750953],[125,195,74,0.1593844524439196],[125,195,75,0.1540095990885292],[125,195,76,0.14884401366034183],[125,195,77,0.14387539605339095],[125,195,78,0.13908249468931755],[125,195,79,0.13443603565065418],[125,196,64,0.22157286235826784],[125,196,65,0.21553337139399503],[125,196,66,0.20936442522233906],[125,196,67,0.20307341064582457],[125,196,68,0.19671484035198017],[125,196,69,0.19036504777767677],[125,196,70,0.18408871596181903],[125,196,71,0.17793817937997386],[125,196,72,0.1719535390061992],[125,196,73,0.16616290049973556],[125,196,74,0.16058273695038466],[125,196,75,0.1552183774394503],[125,196,76,0.15006462250057004],[125,196,77,0.14510648739878287],[125,196,78,0.14032007398997776],[125,196,79,0.13567357177669803],[125,197,64,0.22301499856134122],[125,197,65,0.21687683216633902],[125,197,66,0.210622733372469],[125,197,67,0.204260109440549],[125,197,68,0.19784369159758372],[125,197,69,0.19145001121021302],[125,197,70,0.1851432479035549],[125,197,71,0.17897462620903012],[125,197,72,0.1729826386654198],[125,197,73,0.1671933872978454],[125,197,74,0.16162104467304506],[125,197,75,0.15626843556094036],[125,197,76,0.15112774006904164],[125,197,77,0.14618131895979564],[125,197,78,0.14140266171480131],[125,197,79,0.13675745777396187],[125,198,64,0.22428424122364762],[125,198,65,0.2180494692538336],[125,198,66,0.2117121821633307],[125,198,67,0.205279872233913],[125,198,68,0.19880736470357233],[125,198,69,0.1923711478228883],[125,198,70,0.18603471790694498],[125,198,71,0.17984806822641722],[125,198,72,0.17384801370870107],[125,198,73,0.16805862951823483],[125,198,74,0.162491804495317],[125,198,75,0.15714791027240088],[125,198,76,0.15201658673197374],[125,198,77,0.14707764432269435],[125,198,78,0.14230208361368207],[125,198,79,0.1376532323407427],[125,199,64,0.225381182377605],[125,199,65,0.2190528873283102],[125,199,66,0.21263509966491503],[125,199,67,0.2061354556338443],[125,199,68,0.199608681884752],[125,199,69,0.19313087740961746],[125,199,70,0.18676459681516674],[125,199,71,0.18055842874157468],[125,199,72,0.17454741403019086],[125,199,73,0.16875357342471659],[125,199,74,0.16318654558330262],[125,199,75,0.1578443360264489],[125,199,76,0.15271417749887956],[125,199,77,0.14777350208466983],[125,199,78,0.14299102528706825],[125,199,79,0.13832794216752306],[125,200,64,0.2263071168254276],[125,200,65,0.21988910075244633],[125,200,66,0.21339394997827218],[125,200,67,0.2068295047528078],[125,200,68,0.20025014917208794],[125,200,69,0.19373116366980653],[125,200,70,0.18733384148668625],[125,200,71,0.18110515379780198],[125,200,72,0.1750782517981994],[125,200,73,0.1692730740467792],[125,200,74,0.1636970596619529],[125,200,75,0.158345967817492],[125,200,76,0.15320480384813862],[125,200,77,0.14824885214385897],[125,200,78,0.14344481589229258],[125,200,79,0.13875206362073672],[125,201,64,0.2270640534295751],[125,201,65,0.22056059701911954],[125,201,66,0.21399146842195357],[125,201,67,0.2073647789326655],[125,201,68,0.20073429048928054],[125,201,69,0.19417397337097483],[125,201,70,0.18774349412084929],[125,201,71,0.1814879645966131],[125,201,72,0.1754385173936519],[125,201,73,0.1696129822476093],[125,201,74,0.16401666384404584],[125,201,75,0.15864322132502343],[125,201,76,0.153475649651284],[125,201,77,0.14848736285593964],[125,201,78,0.1436433791144321],[125,201,79,0.13890160745564034],[125,202,64,0.2276547216131518],[125,202,65,0.22107039907582632],[125,202,66,0.2144308006272775],[125,202,67,0.20774438815081245],[125,202,68,0.20106400105507272],[125,202,69,0.19446176525733336],[125,202,70,0.18799532338050637],[125,202,71,0.1817076652176577],[125,202,72,0.1756277653746636],[125,202,73,0.16977131753964128],[125,202,74,0.16414156565828927],[125,202,75,0.15873023216391335],[125,202,76,0.1535185432873072],[125,202,77,0.1484783513566737],[125,202,78,0.14357335389454212],[125,202,79,0.13876040922674995],[125,203,64,0.228082573014594],[125,203,65,0.2214221265556997],[125,203,66,0.21471564566551957],[125,203,67,0.20797204036016845],[125,203,68,0.20124292052092468],[125,203,69,0.1945980092954184],[125,203,70,0.1880925081047899],[125,203,71,0.18176700664560583],[125,203,72,0.17564817170853278],[125,203,73,0.1697495281256533],[125,203,74,0.16407233199331933],[125,203,75,0.15860653619450418],[125,203,76,0.15333184812861103],[125,203,77,0.1482188794494178],[125,203,78,0.14323038751639103],[125,203,79,0.13832260818047368],[125,204,64,0.22835177823541478],[125,204,65,0.22162005593426973],[125,204,66,0.21485040333168268],[125,204,67,0.20805230002220387],[125,204,68,0.2012758262664638],[125,204,69,0.1945877368678274],[125,204,70,0.18804036443312888],[125,204,71,0.18167160815202782],[125,204,72,0.1755056635582256],[125,204,73,0.1695538396986625],[125,204,74,0.16381546373914255],[125,204,75,0.15827887291956558],[125,204,76,0.15292249366369076],[125,204,77,0.14771600754883402],[125,204,78,0.14262160375324273],[125,204,79,0.13759531752242993],[125,205,64,0.22846721861392325],[125,205,65,0.22166917962813076],[125,205,66,0.21484032571007614],[125,205,67,0.20799085809730264],[125,205,68,0.20116904728585638],[125,205,69,0.19443812254336568],[125,205,70,0.18784711718614816],[125,205,71,0.18143093711276823],[125,205,72,0.17521112295125907],[125,205,73,0.16919669458332373],[125,205,74,0.1633850779657465],[125,205,75,0.15776311406201474],[125,205,76,0.15230814959691943],[125,205,77,0.14698920925539627],[125,205,78,0.14176824886713177],[125,205,79,0.13660148904974675],[125,206,64,0.22843447295236624],[125,206,65,0.22157526404879596],[125,206,66,0.21469167314719662],[125,206,67,0.20779481376106085],[125,206,68,0.2009308991075046],[125,206,69,0.19415909806697457],[125,206,70,0.18752471637063056],[125,206,71,0.18105934836987958],[125,206,72,0.17478166569487347],[125,206,73,0.16869828284520585],[125,206,74,0.16280469953007487],[125,206,75,0.1570863194765106],[125,206,76,0.15151954533256362],[125,206,77,0.14607294920927916],[125,206,78,0.1407085183338409],[125,206,79,0.13538297522561937],[125,207,64,0.22826189472016742],[125,207,65,0.221347394817095],[125,207,66,0.21441457785357257],[125,207,67,0.207475687722074],[125,207,68,0.20057466620196196],[125,207,69,0.19376611805234986],[125,207,70,0.1870912017670313],[125,207,71,0.18057787071971107],[125,207,72,0.17424168550522104],[125,207,73,0.1680866972199249],[125,207,74,0.16210640139519616],[125,207,75,0.15628476220849993],[125,207,76,0.15059730651416917],[125,207,77,0.1450122871619876],[125,207,78,0.13949191500920158],[125,207,79,0.13330743366952277],[125,208,64,0.22796615792244027],[125,208,65,0.22100440451348816],[125,208,66,0.21402978393362293],[125,208,67,0.20705584121159887],[125,208,68,0.20012403159848086],[125,208,69,0.19328392322820595],[125,208,70,0.18657213839978753],[125,208,71,0.18001269034968626],[125,208,72,0.1736178171364913],[125,208,73,0.16738887975275413],[125,208,74,0.16131732407125512],[125,208,75,0.15538570615393435],[125,208,76,0.14956878037945853],[125,208,77,0.14383464978144347],[125,208,78,0.13814597793661781],[125,208,79,0.12946739470738447],[125,209,64,0.22756465166023293],[125,209,65,0.2205654977125802],[125,209,66,0.21355794633898867],[125,209,67,0.20655694994315887],[125,209,68,0.19960126226348493],[125,209,69,0.19273498838457737],[125,209,70,0.18598987456108357],[125,209,71,0.1793857459578439],[125,209,72,0.1729313598582287],[125,209,73,0.1666253155409953],[125,209,74,0.16045702032199352],[125,209,75,0.1544077111894171],[125,209,76,0.14845153140034267],[125,209,77,0.142556661353383],[125,209,78,0.1349473037374515],[125,209,79,0.1255594949176972],[125,210,64,0.22707325188911326],[125,210,65,0.2200476141905873],[125,210,66,0.21301675520018065],[125,210,67,0.20599707931072886],[125,210,68,0.19902443538511563],[125,210,69,0.19213710196472075],[125,210,70,0.18536167211113666],[125,210,71,0.1787135962394617],[125,210,72,0.17219805229025106],[125,210,73,0.1658108640932217],[125,210,74,0.15953946730340973],[125,210,75,0.15336392223552586],[125,210,76,0.14725797287372816],[125,210,77,0.1402436385786913],[125,210,78,0.1309854463689895],[125,210,79,0.12158937047989514],[125,211,64,0.22650639519219212],[125,211,65,0.21946558640073008],[125,211,66,0.21242118093068216],[125,211,67,0.20539102108499033],[125,211,68,0.19840786906762514],[125,211,69,0.1915038905677747],[125,211,70,0.184700322169812],[125,211,71,0.17800812194980545],[125,211,72,0.1714288540846335],[125,211,73,0.16495561223699437],[125,211,74,0.15857398097712697],[125,211,75,0.15226303446096004],[125,211,76,0.14534314450387717],[125,211,77,0.13622295378370428],[125,211,78,0.12695032015721427],[125,211,79,0.11756566750241443],[125,212,64,0.22587714449792082],[125,212,65,0.2188322888305879],[125,212,66,0.21178371004543134],[125,212,67,0.20475061870869576],[125,212,68,0.19776253852950185],[125,212,69,0.1908453247160759],[125,212,70,0.18401473658249587],[125,212,71,0.17727719694757613],[125,212,72,0.1706306884908797],[125,212,73,0.16406567855379003],[125,212,74,0.15756607152319524],[125,212,75,0.15025323945332625],[125,212,76,0.14126728046889495],[125,212,77,0.1321219354332239],[125,212,78,0.12285320244539293],[125,212,79,0.11349908290904274],[125,213,64,0.2251972466802499],[125,213,65,0.21815877922651306],[125,213,66,0.21111457170932413],[125,213,67,0.20408508122349822],[125,213,68,0.19709647783994946],[125,213,69,0.19016820590665015],[125,213,70,0.183310515145441],[125,213,71,0.1765253281499721],[125,213,72,0.16980714566113259],[125,213,73,0.16314396910511333],[125,213,74,0.15500113424694045],[125,213,75,0.14613411266349582],[125,213,76,0.13710793028783602],[125,213,77,0.1279542658873679],[125,213,78,0.11870707171134137],[125,213,79,0.10940153075414331],[125,214,64,0.22447718197470962],[125,214,65,0.21745443166544054],[125,214,66,0.21042195502497285],[125,214,67,0.20340128585174397],[125,214,68,0.19641516721630028],[125,214,69,0.18947663495036376],[125,214,70,0.1825904885549533],[125,214,71,0.17575426430389804],[125,214,72,0.16822795360079024],[125,214,73,0.15963159171740743],[125,214,74,0.15085813028138845],[125,214,75,0.1419319818929562],[125,214,76,0.13288090015333054],[125,214,77,0.1237350141176461],[125,214,78,0.11452586342336182],[125,214,79,0.10528543511168903],[125,215,64,0.2237262051404389],[125,215,65,0.21672706144978696],[125,215,66,0.20971221706228335],[125,215,67,0.20270406924728387],[125,215,68,0.19572190589198718],[125,215,69,0.18877246158499125],[125,215,70,0.18112521464153536],[125,215,71,0.17275408515439497],[125,215,72,0.16420341052531728],[125,215,73,0.1554902229302539],[125,215,74,0.1466357374873366],[125,215,75,0.13766442345253976],[125,215,76,0.1286030868621033],[125,215,77,0.11947996576956108],[125,215,78,0.1103238391843686],[125,215,79,0.1011631507714442],[125,216,64,0.22295237829432646],[125,216,65,0.21598304179563227],[125,216,66,0.2089900816244395],[125,216,67,0.2019708682979862],[125,216,68,0.19393074196085983],[125,216,69,0.185715975850772],[125,216,70,0.1773306912641485],[125,216,71,0.16878489566302998],[125,216,72,0.16009352649732003],[125,216,73,0.151275515900855],[125,216,74,0.14235287761948323],[125,216,75,0.13334981748834096],[125,216,76,0.12429186872797056],[125,216,77,0.1152050532753876],[125,216,78,0.1061150703090142],[125,216,79,0.09704651306338652],[125,217,64,0.22216259534012242],[125,217,65,0.21488954176657285],[125,217,66,0.20689378524773883],[125,217,67,0.19875927305851604],[125,217,68,0.1904705364878499],[125,217,69,0.18203065023382173],[125,217,70,0.17344872752290194],[125,217,71,0.16473862001736764],[125,217,72,0.1559179641943972],[125,217,73,0.1470072619869633],[125,217,74,0.13802899716150374],[125,217,75,0.12900678884775932],[125,217,76,0.11996458357052185],[125,217,77,0.11092588706207535],[125,217,78,0.10191303706040863],[125,217,79,0.0929465182197887],[125,218,64,0.22029905390745777],[125,218,65,0.21212183660632078],[125,218,66,0.203848907612535],[125,218,67,0.19545325110743858],[125,218,68,0.1869229528067916],[125,218,69,0.1782667483406836],[125,218,70,0.1694983522346544],[125,218,71,0.1606350787015128],[125,218,72,0.15169689320731922],[125,218,73,0.14270551184511737],[125,218,74,0.13368355010182167],[125,218,75,0.12465372252539092],[125,218,76,0.11563809471561218],[125,218,77,0.10665738897341571],[125,218,78,0.09773034485343578],[125,218,79,0.0888731357706129],[125,219,64,0.2177309685195133],[125,219,65,0.20926381946895128],[125,219,66,0.2007184322519302],[125,219,67,0.19206840394657482],[125,219,68,0.18330523245636662],[125,219,69,0.17444284549060465],[125,219,70,0.16549910525941147],[125,219,71,0.1564943601012371],[125,219,72,0.14745050362693465],[125,219,73,0.13839009520586343],[125,219,74,0.12933554348204945],[125,219,75,0.12030835451159763],[125,219,76,0.11132844601074889],[125,219,77,0.10241352909831763],[125,219,78,0.0935785588097404],[125,219,79,0.08483525455086999],[125,220,64,0.2150802645879508],[125,220,65,0.206328331222641],[125,220,66,0.19751712163530755],[125,220,67,0.1886211789264641],[125,220,68,0.1796352347194109],[125,220,69,0.17057787863906507],[125,220,70,0.16147061971539128],[125,220,71,0.1523363795556324],[125,220,72,0.143198561170624],[125,220,73,0.13408019250148545],[125,220,74,0.12500314642831328],[125,220,75,0.11598743892746113],[125,220,76,0.10705060692457265],[125,220,77,0.09820716726799344],[125,220,78,0.08946815812479676],[125,220,79,0.08084076397777964],[125,221,64,0.21235886665942283],[125,221,65,0.20332927900156744],[125,221,66,0.19426059419601371],[125,221,67,0.1851286249257282],[125,221,68,0.1759311292901732],[125,221,69,0.16669078851650454],[125,221,70,0.15743222965770837],[125,221,71,0.14818047138909168],[125,221,72,0.13896000430525304],[125,221,73,0.1297939589479685],[125,221,74,0.120703363430246],[125,221,75,0.11170649238910543],[125,221,76,0.1028183088631389],[125,221,77,0.09405000055207746],[125,221,78,0.0854086117778476],[125,221,79,0.07689677232852435],[125,222,64,0.2095799426122634],[125,222,65,0.20028154894666247],[125,222,66,0.19096516073593384],[125,222,67,0.18160815975290773],[125,222,68,0.1722111039458113],[125,222,69,0.16280018139870744],[125,222,70,0.15340260348589818],[125,222,71,0.14404501429574104],[125,222,72,0.13475258386791655],[125,222,73,0.12554820173203135],[125,222,74,0.11645177268580421],[125,222,75,0.1074796166014244],[125,222,76,0.09864397389583313],[125,222,77,0.08995261814623248],[125,222,78,0.08140857717976771],[125,222,79,0.07300996381471814],[125,223,64,0.20675791099268745],[125,223,65,0.19720092759927704],[125,223,66,0.18764767049919784],[125,223,67,0.17807734937063566],[125,223,68,0.16849308736641055],[125,223,69,0.158924010719452],[125,223,70,0.1493994033801792],[125,223,71,0.1399470904883412],[125,223,72,0.13059254573032725],[125,223,73,0.12135811100267208],[125,223,74,0.11226233038197615],[125,223,75,0.10331940023570059],[125,223,76,0.09453873713991727],[125,223,77,0.08592466510088431],[125,223,78,0.07747622341112294],[125,223,79,0.06918709630631091],[125,224,64,0.2039084574088546],[125,224,65,0.19410403202309093],[125,224,66,0.18432536700146931],[125,224,67,0.17455369905955836],[125,224,68,0.16479448727151555],[125,224,69,0.15507927876566263],[125,224,70,0.1454389711014085],[125,224,71,0.13590217906353283],[125,224,72,0.12649435709658255],[125,224,73,0.11723704541364342],[125,224,74,0.10814724183058472],[125,224,75,0.09923690119588527],[125,224,76,0.09051256410315518],[125,224,77,0.08197511639036102],[125,224,78,0.07361968075059952],[125,224,79,0.06543564160297106],[125,225,64,0.2010485600688955],[125,225,65,0.1910082487346554],[125,225,66,0.18101575371282042],[125,225,67,0.17105445665743413],[125,225,68,0.1611319440655206],[125,225,69,0.151281758725516],[125,225,70,0.14153604052507732],[125,225,71,0.1319238840749539],[125,225,72,0.12247047706687521],[125,225,73,0.11319637300816784],[125,225,74,0.10411690042408962],[125,225,75,0.09524171042360954],[125,225,76,0.08657446432763918],[125,225,77,0.07811266286261208],[125,225,78,0.06984761823103841],[125,225,79,0.061764570183270175],[125,226,64,0.19819652454628256],[125,226,65,0.1879316815275601],[125,226,66,0.17773646970380913],[125,226,67,0.16759642802730282],[125,226,68,0.15752110020923182],[125,226,69,0.14754573739076643],[125,226,70,0.1377034773153722],[125,226,71,0.1280236978450958],[125,226,72,0.11853117214139501],[125,226,73,0.10924536827973046],[125,226,74,0.10017989541819433],[125,226,75,0.09134209843175714],[125,226,76,0.08273280271412767],[125,226,77,0.07434621064094386],[125,226,78,0.06616995098542573],[125,226,79,0.05818528237989591],[125,227,64,0.19537544232459525],[125,227,65,0.18489725512441035],[125,227,66,0.1745100171213694],[125,227,67,0.16420132741856486],[125,227,68,0.15398255719723206],[125,227,69,0.14389051999230904],[125,227,70,0.13395923398626097],[125,227,71,0.12421827458761454],[125,227,72,0.11469194799427307],[125,227,73,0.1053986185793634],[125,227,74,0.09635019223783255],[125,227,75,0.08755175761075931],[125,227,76,0.07900138688275277],[125,227,77,0.07069009762820373],[125,227,78,0.06260197696907013],[125,227,79,0.054714469099594966],[125,228,64,0.19262426919466127],[125,228,65,0.1819466778636091],[125,228,66,0.17138046536305973],[125,228,67,0.16091517701989894],[125,228,68,0.15056385469219954],[125,228,69,0.140364679598367],[125,228,70,0.13035238687507564],[125,228,71,0.12055662400482944],[125,228,72,0.11100114691974086],[125,228,73,0.10170317819725642],[125,228,74,0.09267292948655435],[125,228,75,0.08391329007203764],[125,228,76,0.0754196832482486],[125,228,77,0.06718009195106071],[125,228,78,0.05917525486786965],[125,228,79,0.051379034034025675],[125,229,64,0.18998094947249045],[125,229,65,0.17912108067680105],[125,229,66,0.16839172725574109],[125,229,67,0.15778427517510737],[125,229,68,0.1473132421574305],[125,229,69,0.13701789599038036],[125,229,70,0.1269334455884186],[125,229,71,0.11708941653874813],[125,229,72,0.10750887661833339],[125,229,73,0.09820783004799455],[125,229,74,0.08919478259920936],[125,229,75,0.08047047942815082],[125,229,76,0.07202781727110193],[125,229,77,0.06385193239826412],[125,229,78,0.055920465493895434],[125,229,79,0.0482040044091068],[125,230,64,0.1874764529233037],[125,230,65,0.1764539149381091],[125,230,66,0.16557938355581153],[125,230,67,0.15484598160164037],[125,230,68,0.14426948441702103],[125,230,69,0.13388991034325973],[125,230,70,0.12374264799152221],[125,230,71,0.11385686356830932],[125,230,72,0.10425476484805625],[125,230,73,0.09495103850536714],[125,230,74,0.08595246287155284],[125,230,75,0.07725769793303033],[125,230,76,0.06885725414329263],[125,230,77,0.06073364137810708],[125,230,78,0.052861699130274026],[125,230,79,0.04520910881511071],[125,231,64,0.18513504843639458],[125,231,65,0.1739712180046994],[125,231,66,0.16297095183670515],[125,231,67,0.1521290039196986],[125,231,68,0.14146217924087998],[125,231,69,0.1310108837896173],[125,231,70,0.12081036620685286],[125,231,71,0.11088917394794374],[125,231,72,0.10126846641423153],[125,231,73,0.09196150375143217],[125,231,74,0.08297331329805939],[125,231,75,0.07430053541726375],[125,231,76,0.06593145019736042],[125,231,77,0.057846186262531935],[125,231,78,0.05001711270070101],[125,231,79,0.04240941488981978],[125,232,64,0.1829745773277046],[125,232,65,0.17169187990579218],[125,232,66,0.16058615904593151],[125,232,67,0.14965369149023217],[125,232,68,0.13891208720846968],[125,232,69,0.12840177479733464],[125,232,70,0.11815753967301441],[125,232,71,0.1082070476321071],[125,232,72,0.09857021904284184],[125,232,73,0.08925877850637921],[125,232,74,0.08027598185838297],[125,232,75,0.07161652213205111],[125,232,76,0.06326661585692807],[125,232,77,0.05520427082576276],[125,232,78,0.04739973622937193],[125,232,79,0.0398161358363841],[125,233,64,0.18100672466299253],[125,233,65,0.16962790925754878],[125,233,66,0.15843721552284482],[125,233,67,0.14743233408571105],[125,233,68,0.13663147113791613],[125,233,69,0.126074732466322],[125,233,70,0.11579613226801339],[125,233,71,0.10582220338530784],[125,233,72,0.09617144524359965],[125,233,73,0.08685394447320854],[125,233,74,0.07787116994107364],[125,233,75,0.06921594367362266],[125,233,76,0.060872588910199685],[125,233,77,0.05281725628968448],[125,233,78,0.04501842894631746],[125,233,79,0.03743760707369177],[125,234,64,0.1792372888856428],[125,234,65,0.16778469874821295],[125,234,66,0.15652909089119285],[125,234,67,0.14546946588770882],[125,234,68,0.13462444566728793],[125,234,69,0.12403350643927158],[125,234,70,0.11372961431586354],[125,234,71,0.10373794153664814],[125,234,72,0.09407540127632218],[125,234,73,0.08475034977769436],[125,234,74,0.07576245736143011],[125,234,75,0.06710274962770203],[125,234,76,0.05875381993153635],[125,234,77,0.0506902139857908],[125,234,78,0.04287898722828476],[125,234,79,0.03528043538193224],[125,235,64,0.17766645003118514],[125,235,65,0.16616129054006348],[125,235,66,0.154859792245222],[125,235,67,0.14376217531078972],[125,235,68,0.1328873375792186],[125,235,69,0.12227387412289063],[125,235,70,0.11195347029319987],[125,235,71,0.10194974273050918],[125,235,72,0.0922778743208594],[125,235,73,0.08294440866420792],[125,235,74,0.07394720540355045],[125,235,75,0.06527555753970624],[125,235,76,0.05691047163527478],[125,235,77,0.04882511159579566],[125,235,78,0.04098540651128612],[125,235,79,0.033350822846315534],[125,236,64,0.17628903680737706],[125,236,65,0.16475064193557476],[125,236,66,0.15342064505117603],[125,236,67,0.14230042115530345],[125,236,68,0.13140905746104045],[125,236,69,0.12078408591308],[125,236,70,0.110455733043812],[125,236,71,0.10044590360908959],[125,236,72,0.09076792892658168],[125,236,73,0.08142646467454419],[125,236,74,0.07241753927339761],[125,236,75,0.06372875376297996],[125,236,76,0.055339633882397446],[125,236,77,0.04722213485951706],[125,236,78,0.03934129922796887],[125,236,79,0.0316560678101873],[125,237,64,0.1750947588258105],[125,237,65,0.16353985744952035],[125,237,66,0.15219654278850517],[125,237,67,0.1410673210243689],[125,237,68,0.13017144857891985],[125,237,69,0.11954529428244504],[125,237,70,0.10921751037901976],[125,237,71,0.09920817536551256],[125,237,72,0.08952866878275596],[125,237,73,0.08018168349517218],[125,237,74,0.07116137633286687],[125,237,75,0.06245365777858072],[125,237,76,0.054036621194160694],[125,237,77,0.04588111189971224],[125,237,78,0.03795143624787958],[125,237,79,0.030206210674699273],[125,238,64,0.17406121296941424],[125,238,65,0.1625031497598933],[125,238,66,0.15115888622507967],[125,238,67,0.14003209657358304],[125,238,68,0.1291422667671138],[125,238,69,0.11852459561151213],[125,238,70,0.10820611414419332],[125,238,71,0.09820500281827699],[125,238,72,0.0885306056375981],[125,238,73,0.07918356830171883],[125,238,74,0.07015610096882305],[125,238,75,0.06143236607296619],[125,238,76,0.05298899146496172],[125,238,77,0.04479570898537391],[125,238,78,0.03681611842809764],[125,238,79,0.029008576712548115],[125,239,64,0.17313695090631853],[125,239,65,0.16158582489211953],[125,239,66,0.1502503818216384],[125,239,67,0.1391355689076181],[125,239,68,0.12826124861092955],[125,239,69,0.11766154268886439],[125,239,70,0.10736188908095319],[125,239,71,0.09737854657210854],[125,239,72,0.08771876051626827],[125,239,73,0.07838103808447155],[125,239,74,0.06935553336562912],[125,239,75,0.0606245424986883],[125,239,76,0.05216310886990781],[125,239,77,0.04393973827050279],[125,239,78,0.03591722378231031],[125,239,79,0.028053580040868185],[125,240,64,0.17223797594410856],[125,240,65,0.16070383220276677],[125,240,66,0.14938715426991286],[125,240,67,0.13829428229801916],[125,240,68,0.1274456560125086],[125,240,69,0.11687450136937731],[125,240,70,0.10660477464923346],[125,240,71,0.09665086348740952],[125,240,72,0.0870179135410746],[125,240,73,0.07770224969303778],[125,240,74,0.06869189183382345],[125,240,75,0.059967165136846357],[125,240,76,0.05150140461965495],[125,240,77,0.04326175366908218],[125,240,78,0.035210056103880547],[125,240,79,0.02730384125333428],[125,241,64,0.17128900711353606],[125,241,65,0.15978218730598548],[125,241,66,0.14849454983062135],[125,241,67,0.13743393270226886],[125,241,68,0.12662158377279614],[125,241,69,0.11609008774729625],[125,241,70,0.10586210914477566],[125,241,71,0.09595029355700697],[125,241,72,0.08635776087027504],[125,241,73,0.077078678002644],[125,241,74,0.06809891091142606],[125,241,75,0.059396755521814296],[125,241,76,0.05094374712915966],[125,241,77,0.04270554773583897],[125,241,78,0.034642910703029405],[125,241,79,0.026712722026096737],[125,242,64,0.17023215828408317],[125,242,65,0.15876275384692784],[125,242,66,0.14751414378073838],[125,242,67,0.13649573937094792],[125,242,68,0.12572984173604926],[125,242,69,0.11524870815808101],[125,242,70,0.1050739705069399],[125,242,71,0.09521673542413547],[125,242,72,0.08567824572871428],[125,242,73,0.07645060671554849],[125,242,74,0.0675175768200611],[125,242,75,0.05885542204233056],[125,242,76,0.05043383344804025],[125,242,77,0.042216906995388416],[125,242,78,0.034164184879717334],[125,242,79,0.026231757539153234],[125,243,64,0.16902485768972048],[125,243,65,0.15760224634361555],[125,243,66,0.146401843791387],[125,243,67,0.13543466930501866],[125,243,68,0.12472432235162756],[125,243,69,0.11430309153760657],[125,243,70,0.10419189399735801],[125,243,71,0.09440056802953835],[125,243,72,0.08492870021018449],[125,243,73,0.07576650356480447],[125,243,74,0.06689574600526722],[125,243,75,0.058290728177805694],[125,243,76,0.049919309814906554],[125,243,77,0.0417439836377276],[125,243,78,0.033722995820602675],[125,243,79,0.025811512002943092],[125,244,64,0.16763789916929603],[125,244,65,0.15627036370305777],[125,244,66,0.14512612155444957],[125,244,67,0.13421778598539197],[125,244,68,0.12357048708201111],[125,244,69,0.11321693401170055],[125,244,70,0.1031776945569185],[125,244,71,0.0934616686926949],[125,244,72,0.08406707481113766],[125,244,73,0.07498247431070217],[125,244,74,0.0661878335058478],[125,244,75,0.057655621773188004],[125,244,76,0.04935194481707588],[125,244,77,0.04123771191206583],[125,244,78,0.03326983596536121],[125,244,79,0.025402465236787707],[125,245,64,0.16605362732700926],[125,245,65,0.15474805554508458],[125,245,66,0.14366637469488852],[125,245,67,0.1328227242885664],[125,245,68,0.12224397342404868],[125,245,69,0.11196365731893504],[125,245,70,0.10200239526871263],[125,245,71,0.09236852887404465],[125,245,72,0.0830592567616867],[125,245,73,0.07406179641959774],[125,245,74,0.06535457187472865],[125,245,75,0.05690842592037575],[125,245,76,0.04868785558512025],[125,245,77,0.0406522695284137],[125,245,78,0.03275726605222264],[125,245,79,0.024955930431268043],[125,246,64,0.16426425894458754],[125,246,65,0.15302592358385902],[125,246,66,0.14201142111152754],[125,246,67,0.13123629359582664],[125,246,68,0.12072932439053319],[125,246,69,0.11052528273452435],[125,246,70,0.1006452634028509],[125,246,71,0.09109746889536245],[125,246,72,0.08187847823104917],[125,246,73,0.07297453330612394],[125,246,74,0.06436284134466687],[125,246,75,0.05601289196447417],[125,246,76,0.047887787381641234],[125,246,77,0.03994558428646067],[125,246,78,0.03214064594375103],[125,246,79,0.024425003100050097],[125,247,64,0.16227034308749988],[125,247,65,0.15110276041792092],[125,247,66,0.140158127979216],[125,247,67,0.12945321118176675],[125,247,68,0.11901884236421491],[125,247,69,0.10889142221343028],[125,247,70,0.09909295555305585],[125,247,71,0.08963195291182521],[125,247,72,0.08050481548215888],[125,247,73,0.07169722999763431],[125,247,74,0.06318557188966464],[125,247,75,0.05493831509006502],[125,247,76,0.04691744685992422],[125,247,77,0.039079886047355426],[125,247,78,0.03137890321050451],[125,247,79,0.023765541084869075],[125,248,64,0.1600793624397066],[125,248,65,0.1489842281618188],[125,248,66,0.1381101777168596],[125,248,67,0.12747496802787545],[125,248,68,0.11711156928350193],[125,248,69,0.1070583885036769],[125,248,70,0.09733877339214826],[125,248,71,0.08796200542942234],[125,248,72,0.07892478003194002],[125,248,73,0.07021269104212632],[125,248,74,0.061801717775197204],[125,248,75,0.053659712864320835],[125,248,76,0.04574788916911466],[125,248,77,0.03802230404450539],[125,248,78,0.030435339310840206],[125,248,79,0.022937175319014333],[125,249,64,0.1577044784729212],[125,249,65,0.14668167941379492],[125,249,66,0.13587697327666456],[125,249,67,0.12530882924653164],[125,249,68,0.1150123951464189],[125,249,69,0.10502842599460115],[125,249,70,0.09538203157225404],[125,249,71,0.08608373064364036],[125,249,72,0.07713100283827184],[125,249,73,0.0685098414265303],[125,249,74,0.06019630511622653],[125,249,75,0.0521580670192867],[125,249,76,0.04435595896737207],[125,249,77,0.03674550939373229],[125,249,78,0.029278473049106794],[125,249,79,0.021904350879131302],[125,250,64,0.1551634231045625],[125,250,65,0.14421112309200265],[125,250,66,0.1334726851375732],[125,250,67,0.12296697131756061],[125,250,68,0.11273129682454236],[125,250,69,0.1028090640571063],[125,250,70,0.09322753927371427],[125,250,71,0.08399893583790771],[125,250,72,0.07512201248024178],[125,250,73,0.06658367119960386],[125,250,74,0.0583605528700783],[125,250,75,0.05042062864373495],[125,250,76,0.04272478527205466],[125,250,77,0.03522840251008093],[125,250,78,0.027882920821004367],[125,250,79,0.020637397661766466],[125,251,64,0.15247753951963336],[125,251,65,0.14159233768254456],[125,251,66,0.13091544238651634],[125,251,67,0.12046575832984878],[125,251,68,0.11028270915810771],[125,251,69,0.10041259460055366],[125,251,70,0.09088519686108305],[125,251,71,0.08171486002008897],[125,251,72,0.0729021082220606],[125,251,73,0.06443526440007538],[125,251,74,0.056292067579111406],[125,251,75,0.04844128682336048],[125,251,76,0.04084432992421258],[125,251,77,0.03345684496629489],[125,251,78,0.026230312962063813],[125,251,79,0.019113629808022572],[125,252,64,0.1496709748241149],[125,252,65,0.1388481344246446],[125,252,66,0.12822667024321022],[125,252,67,0.11782515938290808],[125,252,68,0.10768503025586222],[125,252,69,0.09785567551249374],[125,252,70,0.0883697090341275],[125,252,71,0.0792440088914168],[125,252,72,0.07048132875221211],[125,252,73,0.06207191277552799],[125,252,74,0.05399511204529331],[125,252,75,0.046221000616475647],[125,252,76,0.038711989273371814],[125,252,77,0.03142443513643943],[125,252,78,0.02431024530315451],[125,252,79,0.017318472767181542],[125,253,64,0.1467700271565165],[125,253,65,0.13600377290697063],[125,253,66,0.12543057632334126],[125,253,67,0.11506830923338564],[125,253,68,0.10496026284436089],[125,253,69,0.09515906155893838],[125,253,70,0.08570041576257026],[125,253,71,0.07660409713103307],[125,253,72,0.06787551726461083],[125,253,73,0.0595073146375972],[125,253,74,0.051480947962280615],[125,253,75,0.04376829407795245],[125,253,76,0.03633324849520376],[125,253,77,0.029133326754933984],[125,253,78,0.02212126480336009],[125,253,79,0.015246616636038098],[125,254,64,0.14380264980753743],[125,254,65,0.1330865314620653],[125,254,66,0.12255378783869861],[125,254,67,0.11222121416700967],[125,254,68,0.10213379339905451],[125,254,69,0.09234746420230379],[125,254,70,0.0829012421635605],[125,254,71,0.07381809883904979],[125,254,72,0.0651064833962481],[125,254,73,0.05676185903308333],[125,254,74,0.04876825234932633],[125,254,75,0.041099813846051866],[125,254,76,0.033722387738404344],[125,254,77,0.026595089285757982],[125,254,78,0.019671887875025412],[125,254,79,0.012903194134589221],[125,255,64,0.14079811478190526],[125,255,65,0.13012543461958415],[125,255,66,0.11962514179776743],[125,255,67,0.10931260493409165],[125,255,68,0.09923431064056176],[125,255,69,0.08944954163851512],[125,255,70,0.08000076831776573],[125,255,71,0.07091440680922723],[125,255,72,0.06220226235368983],[125,255,73,0.053862995216413266],[125,255,74,0.045883607423355496],[125,255,75,0.03824094858326176],[125,255,76,0.030903239056478408],[125,255,77,0.023831608737470533],[125,255,78,0.016981649737054662],[125,255,79,0.010304981279613143],[125,256,64,0.13778683807713119],[125,256,65,0.127151139709387],[125,256,66,0.11667563009235411],[125,256,67,0.10637393840242197],[125,256,68,0.09629386479011612],[125,256,69,0.08649802016040153],[125,256,70,0.07703241982004988],[125,256,71,0.06792710109569981],[125,256,72,0.0591974713457935],[125,256,73,0.05084568718375199],[125,256,74,0.04286206330830765],[125,256,75,0.03522650931099449],[125,256,76,0.027909992812976507],[125,256,77,0.020876027275004774],[125,256,78,0.014082182828896624],[125,256,79,0.00748161849388995],[125,257,64,0.1348003671129956],[125,257,65,0.12419598257409674],[125,257,66,0.11373849900160454],[125,257,67,0.10343954707748099],[125,257,68,0.09334806642640008],[125,257,69,0.08352994549666602],[125,257,70,0.0740347776684507],[125,257,71,0.06489632560314637],[125,257,72,0.05613376236454409],[125,257,73,0.047752952817577986],[125,257,74,0.03974777383207238],[125,257,75,0.032101471777797395],[125,257,76,0.02478805576392249],[125,257,77,0.017773725052125627],[125,257,78,0.011018329061755188],[125,257,79,0.004476858385090999],[125,258,64,0.13187243326332027],[125,258,65,0.12129503454977585],[125,258,66,0.11085030498384699],[125,258,67,0.1005476879404203],[125,258,68,0.09043712122038201],[125,258,69,0.08058769481060354],[125,258,70,0.07105255854333996],[125,258,71,0.06186922826462311],[125,258,72,0.05306071523680136],[125,258,73,0.044636704716736975],[125,258,74,0.03659478237119259],[125,258,75,0.02892170713464071],[125,258,76,0.02159472906614467],[125,258,77,0.014582950722644598],[125,258,78,0.007848730539622513],[125,258,79,0.0013491266943541705],[125,259,64,0.12905672567449758],[125,259,65,0.118502716918333],[125,259,66,0.10806637634916977],[125,259,67,0.09775484125415045],[125,259,68,0.08761885380584858],[125,259,69,0.07773049092978428],[125,259,70,0.06814630736874851],[125,259,71,0.05890748250876375],[125,259,72,0.05004083464254107],[125,259,73,0.0415598928829041],[125,259,74,0.03346602552271828],[125,259,75,0.025749623566857657],[125,259,76,0.018391338098220446],[125,259,77,0.011363370085381899],[125,259,78,0.004630811197967528],[125,259,79,-0.0018469658350891826],[125,260,64,0.12641504166434128],[125,260,65,0.11588060398829034],[125,260,66,0.10544827905773638],[125,260,67,0.09512283704972622],[125,260,68,0.08495549518191116],[125,260,69,0.07502086513772588],[125,260,70,0.06537856342402021],[125,260,71,0.05607319673243893],[125,260,72,0.04713525352496817],[125,260,73,0.03858206141870239],[125,260,74,0.030418809307833295],[125,260,75,0.022639633075452612],[125,260,76,0.01522876366952097],[125,260,77,0.008161736248017129],[125,260,78,0.001406659041720961],[125,260,79,-0.005074459462925712],[125,261,64,0.12399226965900291],[125,261,65,0.11347340181700989],[125,261,66,0.10304077795538721],[125,261,67,0.09269679420587203],[125,261,68,0.08249270164550099],[125,261,69,0.0725049944720843],[125,261,70,0.06279584441721264],[125,261,71,0.05341292191359302],[125,261,72,0.044390154205805867],[125,261,73,0.03574855717270902],[125,261,74,0.02749713995187918],[125,261,75,0.01963388135677466],[125,261,76,0.012146776984434834],[125,261,77,0.005014955827259163],[125,261,78,-0.0017901348692850871],[125,261,79,-0.008303477822444132],[125,262,64,0.12181662770084097],[125,262,65,0.1113092498935591],[125,262,66,0.10087218836549479],[125,262,67,0.09050550838120482],[125,262,68,0.08025996923896117],[125,262,69,0.07021313800145013],[125,262,70,0.06042910381408795],[125,262,71,0.05095813201853948],[125,262,72,0.041837275761542725],[125,262,73,0.03309106905720888],[125,262,74,0.024732300559613885],[125,262,75,0.016762867188533124],[125,262,76,0.009174706643601148],[125,262,77,0.0019508077428423585],[125,262,78,-0.004933702565524213],[125,262,79,-0.011510396745953626],[125,263,64,0.11990118507992024],[125,263,65,0.10940125336398128],[125,263,66,0.09895590408848233],[125,263,67,0.08856295995088677],[125,263,68,0.07827210435026544],[125,263,69,0.06816105152994448],[125,263,70,0.058295070874968276],[125,263,71,0.04872647132730134],[125,263,72,0.03949505211481427],[125,263,73,0.03062864255534287],[125,263,74,0.02214373037511711],[125,263,75,0.014046177852575812],[125,263,76,0.006332024976165322],[125,263,77,-0.0010116213098972878],[125,263,78,-0.008005612800642235],[125,263,79,-0.014677701787715044],[125,264,64,0.11824559594214572],[125,264,65,0.10774922400611872],[125,264,66,0.09729212905742017],[125,264,67,0.08687001848314922],[125,264,68,0.07653088149733335],[125,264,69,0.06635157767716116],[125,264,70,0.05639775170997906],[125,264,71,0.04672314588510147],[125,264,72,0.03736987493286016],[125,264,73,0.028368797480909612],[125,264,74,0.01973998376672888],[125,264,75,0.011493279102522262],[125,264,76,0.0036289624512561556],[125,264,77,-0.003861500657629189],[125,264,78,-0.010994611763074993],[125,264,79,-0.017793900657352556],[125,265,64,0.11683804373899402],[125,265,65,0.10634162876336863],[125,265,66,0.09586981140831687],[125,265,67,0.08541634246855888],[125,265,68,0.07502688697081931],[125,265,69,0.06477640997973745],[125,265,70,0.054730089983560104],[125,265,71,0.04494245770965891],[125,265,72,0.035457479976436515],[125,265,73,0.026308747662980685],[125,265,74,0.01751976765259263],[125,265,75,0.009104358448946318],[125,265,76,0.001067149010856484],[125,265,77,-0.006595819794482786],[125,265,78,-0.01136986156768425],[125,265,79,-0.012248685874255465],[125,266,64,0.11565739522342948],[125,266,65,0.10515774449577003],[125,266,66,0.09466877858380521],[125,266,67,0.08418247288780638],[125,266,68,0.07374154689723567],[125,266,69,0.06341802956458889],[125,266,70,0.053275785820714835],[125,266,71,0.043369480324741465],[125,266,72,0.033744455503695925],[125,266,73,0.024436721209845268],[125,266,74,0.015473056086534834],[125,266,75,0.006871220561044193],[125,266,76,1.7301885763702958E-4],[125,266,77,-0.0011080913660584],[125,266,78,-0.0023028900236586386],[125,266,79,-0.0034261979284344497],[125,267,64,0.11467556254577105],[125,267,65,0.10417001746534449],[125,267,66,0.09366207195832135],[125,267,67,0.0831421190856433],[125,267,68,0.07264933818014851],[125,267,69,0.062251812855271246],[125,267,70,0.052011271395810965],[125,267,71,0.04198187413687001],[125,267,72,0.03220987129902168],[125,267,73,0.022733379991977568],[125,267,74,0.013582280729299921],[125,267,75,0.01169897868018006],[125,267,76,0.010054219553454464],[125,267,77,0.008497568408314516],[125,267,78,0.007026120433083466],[125,267,79,0.00563032106248643],[125,268,64,0.1138600718632356],[125,268,65,0.10334662594181894],[125,268,66,0.09281847935272615],[125,268,67,0.08226463531053214],[125,268,68,0.0717201806826226],[125,268,69,0.061248308693187745],[125,268,70,0.0509078416209971],[125,268,71,0.04075184012528737],[125,268,72,0.030827026867755847],[125,268,73,0.026197893679545014],[125,268,74,0.024141799837850475],[125,268,75,0.022139398079151176],[125,268,76,0.02020698480594922],[125,268,77,0.01835386594025716],[125,268,78,0.016582545643494175],[125,268,79,0.014889041347442249],[125,269,64,0.11317683674776667],[125,269,65,0.10265424419490898],[125,269,66,0.09210526369679656],[125,269,67,0.08151768618174174],[125,269,68,0.07092200892918327],[125,269,69,0.06037568318452566],[125,269,70,0.04993393829553256],[125,269,71,0.04206508259849689],[125,269,72,0.03976389055254631],[125,269,73,0.03743518177060777],[125,269,74,0.03511208077895023],[125,269,75,0.03282175228083048],[125,269,76,0.03058512092836901],[125,269,77,0.028416726861123395],[125,269,78,0.026324717048677643],[125,269,79,0.024310972274290507],[125,270,64,0.11259313455836106],[125,270,65,0.10206100602999368],[125,270,66,0.09149108599881171],[125,270,67,0.08087009925769326],[125,270,68,0.07022352152997333],[125,270,69,0.059602330521510594],[125,270,70,0.05641420536750688],[125,270,71,0.05398869421285254],[125,270,72,0.05146593907145436],[125,270,73,0.04888597764367873],[125,270,74,0.046284664061648925],[125,270,75,0.04369301577546311],[125,270,76,0.0411367050300072],[125,270,77,0.038635695425971575],[125,270,78,0.03620402383106207],[125,270,79,0.033849727686460586],[125,271,64,0.11206702675519517],[125,271,65,0.10152590924985284],[125,271,66,0.09093560545514087],[125,271,67,0.08028189115034585],[125,271,68,0.07337774789250978],[125,271,69,0.07114695693523297],[125,271,70,0.06869965463167096],[125,271,71,0.06607929368090938],[125,271,72,0.06332885986483947],[125,271,73,0.060489663938111324],[125,271,74,0.05760028539799608],[125,271,75,0.05469566939756229],[125,271,76,0.05180637781057441],[125,271,77,0.04895799520386256],[125,271,78,0.04617069022432032],[125,271,79,0.0434589326649475],[125,272,64,0.10880087924264131],[125,272,65,0.10096107211584096],[125,272,66,0.09035235186577116],[125,272,67,0.08810445823278953],[125,272,68,0.0860276857445264],[125,272,69,0.0836665468028],[125,272,70,0.08105856609329049],[125,272,71,0.07824449964291172],[125,272,72,0.07526669090684304],[125,272,73,0.07216758625308817],[125,272,74,0.06898841169292211],[125,272,75,0.06576801243110325],[125,272,76,0.06254185653486055],[125,272,77,0.0593412037471214],[125,272,78,0.05619244019902951],[125,272,79,0.05311657951137788],[125,273,64,0.10329795089165367],[125,273,65,0.10005086352440065],[125,273,66,0.09972811790176529],[125,273,67,0.0994360758211999],[125,273,68,0.09863772391643477],[125,273,69,0.09615229024241126],[125,273,70,0.09339034211996197],[125,273,71,0.09038969485594749],[125,273,72,0.08719183093269336],[125,273,73,0.0838401373394731],[125,273,74,0.08037831376945648],[125,273,75,0.0768489535680305],[125,273,76,0.07329229902315468],[125,273,77,0.0697451722934975],[125,273,78,0.0662400829773812],[125,273,79,0.06280451303700708],[125,274,64,0.09814079979753842],[125,274,65,0.09646753850755785],[125,274,66,0.09532409835119382],[125,274,67,0.09468770096359846],[125,274,68,0.09452584709993145],[125,274,69,0.09479633369787588],[125,274,70,0.09544753572220194],[125,274,71,0.09642168384788696],[125,274,72,0.0976547716846703],[125,274,73,0.09543238692426531],[125,274,74,0.0917027077528795],[125,274,75,0.08787957213206105],[125,274,76,0.08400773603438691],[125,274,77,0.08012932461744955],[125,274,78,0.07628271745450252],[125,274,79,0.07250162216592734],[125,275,64,0.09335049103999843],[125,275,65,0.09175160248328579],[125,275,66,0.09072018511630409],[125,275,67,0.09023175507398656],[125,275,68,0.09025111405973313],[125,275,69,0.09073228392746746],[125,275,70,0.09161870578146075],[125,275,71,0.09284645824832127],[125,275,72,0.09434407448037446],[125,275,73,0.09602686687399375],[125,275,74,0.09777987618867157],[125,275,75,0.09880371497770157],[125,275,76,0.09463968512314641],[125,275,77,0.09045328120602238],[125,275,78,0.08628836021810588],[125,275,79,0.08218446566219151],[125,276,64,0.08894707077914676],[125,276,65,0.08742001731609383],[125,276,66,0.08649692483684768],[125,276,67,0.08615170581198178],[125,276,68,0.08634658840706982],[125,276,69,0.08703196777339861],[125,276,70,0.08814652129374412],[125,276,71,0.08962036584027266],[125,276,72,0.09137478291046985],[125,276,73,0.09331708104064546],[125,276,74,0.09532903296227646],[125,276,75,0.09730044955044476],[125,276,76,0.09914606390120484],[125,276,77,0.10067747103861911],[125,276,78,0.09622455724178278],[125,276,79,0.09182787719860847],[125,277,64,0.08494918268700674],[125,277,65,0.0834912148987037],[125,277,66,0.0826723220165193],[125,277,67,0.08246492572613129],[125,277,68,0.08282882240093498],[125,277,69,0.08371095054641192],[125,277,70,0.08504542132694354],[125,277,71,0.08675661346824681],[125,277,72,0.08875880509216078],[125,277,73,0.09095155122307441],[125,277,74,0.09321343272814686],[125,277,75,0.09543348776756017],[125,277,76,0.09752519519983438],[125,277,77,0.09942516470367879],[125,277,78,0.1010919263397621],[125,277,79,0.10140554917568295],[125,278,64,0.0813737251292802],[125,278,65,0.07998192820316108],[125,278,66,0.07926274158937241],[125,278,67,0.07918721882063068],[125,278,68,0.07971288090971851],[125,278,69,0.08078339966198722],[125,278,70,0.0823285428798709],[125,278,71,0.08426720585223113],[125,278,72,0.08650694869086034],[125,278,73,0.08893986405234416],[125,278,74,0.09144144034954105],[125,278,75,0.0938999410337989],[125,278,76,0.09622759631114941],[125,278,77,0.09835933879499659],[125,278,78,0.10025165831872429],[125,278,79,0.10188166698400464],[125,279,64,0.07823554909723046],[125,279,65,0.07690688420818248],[125,279,66,0.07628259761537803],[125,279,67,0.07633250581183582],[125,279,68,0.07701202401836832],[125,279,69,0.07826176535847928],[125,279,70,0.08000740041256549],[125,279,71,0.08216262453888346],[125,279,72,0.08462859977136389],[125,279,73,0.08729028580574127],[125,279,74,0.0900202002276384],[125,279,75,0.09270584260677023],[125,279,76,0.0952582136045158],[125,279,77,0.09761059079486373],[125,279,78,0.09971744188082937],[125,279,79,0.10155353857431432],[125,280,64,0.0755471968898681],[125,280,65,0.07427853795043765],[125,280,66,0.07374408342809291],[125,280,67,0.07391255112014583],[125,280,68,0.07473743161092727],[125,280,69,0.07615650359025078],[125,280,70,0.07809160771499923],[125,280,71,0.08045154932386245],[125,280,72,0.08313144422928642],[125,280,73,0.08600948415381521],[125,280,74,0.08895535860597575],[125,280,75,0.09185582669187847],[125,280,76,0.09462069191154471],[125,280,77,0.09718161247006768],[125,280,78,0.09949106565970517],[125,280,79,0.10152150312146724],[125,281,64,0.07331868154635784],[125,281,65,0.07210684769968279],[125,281,66,0.07165694323435523],[125,281,67,0.07193673159717501],[125,281,68,0.07289796992836939],[125,281,69,0.07447584109572825],[125,281,70,0.07658864211411165],[125,281,71,0.07914062214523587],[125,281,72,0.08202123180270393],[125,281,73,0.08510229258036767],[125,281,74,0.0882508286204764],[125,281,75,0.09135289431558213],[125,281,76,0.0943171413738162],[125,281,77,0.09707365767771436],[125,281,78,0.0995729752659269],[125,281,79,0.10178525922452353],[125,282,64,0.07155745880510284],[125,282,65,0.07039924309813694],[125,282,66,0.07002843704849121],[125,282,67,0.07041199889539729],[125,282,68,0.07150015202092913],[125,282,69,0.07322573456386716],[125,282,70,0.07550380294404968],[125,282,71,0.07823440536835496],[125,282,72,0.08130173456416451],[125,282,73,0.08457166932995103],[125,282,74,0.087908749869468],[125,282,75,0.0911983736389077],[125,282,76,0.09434809856340987],[125,282,77,0.09728650428656277],[125,282,78,0.09996223592021836],[125,282,79,0.10234321857579654],[125,283,64,0.07026887091901551],[125,283,65,0.06916106570996972],[125,283,66,0.0688637784834174],[125,283,67,0.069343315047459],[125,283,68,0.07054857168381484],[125,283,69,0.07241030349555494],[125,283,70,0.07484064387850942],[125,283,71,0.07773581405322932],[125,283,72,0.08097517944884725],[125,283,73,0.08441913035921106],[125,283,74,0.08792992184041448],[125,283,75,0.09139235383299454],[125,283,76,0.09471296069333629],[125,283,77,0.09781888851162324],[125,283,78,0.10065696659445417],[125,283,79,0.10319293947207403],[125,284,64,0.06945558733698232],[125,284,65,0.0683950063695854],[125,284,66,0.06816556937825946],[125,284,67,0.06873308499472214],[125,284,68,0.07004533449908912],[125,284,69,0.0720312603409678],[125,284,70,0.07460040269265605],[125,284,71,0.07764554581539534],[125,284,72,0.08104167862621736],[125,284,73,0.08464418054230405],[125,284,74,0.0883132362221059],[125,284,75,0.09193311874416549],[125,284,76,0.09540942084456766],[125,284,77,0.09866794186426503],[125,284,78,0.10165377878628318],[125,284,79,0.10433056744267899],[125,285,64,0.06911734570336059],[125,285,65,0.06810084333297084],[125,285,66,0.06793353563070653],[125,285,67,0.06858089064709277],[125,285,68,0.06998979067007632],[125,285,69,0.072087642636877],[125,285,70,0.07478173319110876],[125,285,71,0.0779618129773223],[125,285,72,0.08149896223363406],[125,285,73,0.08524404724582174],[125,285,74,0.08905541150917656],[125,285,75,0.09281688266429083],[125,285,76,0.0964332049787961],[125,285,77,0.0998289294157298],[125,285,78,0.10294751596423135],[125,285,79,0.10575057571893748],[125,286,64,0.06925093570751789],[125,286,65,0.06827542373825912],[125,286,66,0.0681645067231087],[125,286,67,0.06888346895295361],[125,286,68,0.07037851212201518],[125,286,69,0.07257578961563826],[125,286,70,0.07538068177292928],[125,286,71,0.07868031948348597],[125,286,72,0.08234235595521627],[125,286,73,0.08621365877958886],[125,286,74,0.09015097244591291],[125,286,75,0.09403777081594511],[125,286,76,0.09777805343507939],[125,286,77,0.10129523219094361],[125,286,78,0.10453123665270336],[125,286,79,0.10744574870429835],[125,287,64,0.06985022372349964],[125,287,65,0.06891268623006824],[125,287,66,0.06885243674053165],[125,287,67,0.06963473174431883],[125,287,68,0.07120531161794541],[125,287,69,0.07348936102903114],[125,287,70,0.07639070637486828],[125,287,71,0.07979428032644015],[125,287,72,0.08356480122082333],[125,287,73,0.08754566556030907],[125,287,74,0.09159227225552985],[125,287,75,0.09558784266669912],[125,287,76,0.09943574526308924],[125,287,77,0.10305837236456339],[125,287,78,0.10639624023894617],[125,287,79,0.10940720803767229],[125,288,64,0.07090621821298632],[125,288,65,0.07000372472076288],[125,288,66,0.06998846685391313],[125,288,67,0.07082582733035603],[125,288,68,0.07246130386296612],[125,288,69,0.07481939816009714],[125,288,70,0.07780273776601343],[125,288,71,0.08129448345703805],[125,288,72,0.08515691799831204],[125,288,73,0.08923050396122911],[125,288,74,0.09336955762810573],[125,288,75,0.09745715804576316],[125,288,76,0.10139616536621154],[125,288,77,0.105108081232554],[125,288,78,0.10853213547532709],[125,288,79,0.11162448122341079],[125,289,64,0.07240717589169576],[125,289,65,0.07153689328879614],[125,289,66,0.0715610292684779],[125,289,67,0.07244524383942541],[125,289,68,0.07413500859702182],[125,289,69,0.07655442702312376],[125,289,70,0.07960528319398746],[125,289,71,0.08316939417894664],[125,289,72,0.0871071101792068],[125,289,73,0.09125650284795772],[125,289,74,0.09547107646730696],[125,289,75,0.0996338860631083],[125,289,76,0.10364741445462156],[125,289,77,0.1074324099594155],[125,289,78,0.11092695167704275],[125,289,79,0.11408561282803958],[125,290,64,0.07433874865911988],[125,290,65,0.07349795221402211],[125,290,66,0.07355599263730028],[125,290,67,0.07447895430953172],[125,290,68,0.07621249567610605],[125,290,69,0.07868060375166963],[125,290,70,0.08178457238259329],[125,290,71,0.08540530202735525],[125,290,72,0.08940171355768944],[125,290,73,0.09361003280034685],[125,290,74,0.09788322839581443],[125,290,75,0.10210445683098124],[125,290,76,0.10617596180825434],[125,290,77,0.11001788310098248],[125,290,78,0.11356729261518383],[125,290,79,0.11677731824367382],[125,291,64,0.07668417129157157],[125,291,65,0.07587025514994994],[125,291,66,0.07595684893998633],[125,291,67,0.07691060352715728],[125,291,68,0.07867757214185422],[125,291,69,0.08118190217459953],[125,291,70,0.08432474588087135],[125,291,71,0.08798651013183928],[125,291,72,0.09202518640286594],[125,291,73,0.09627569802038988],[125,291,74,0.10059075801940237],[125,291,75,0.10485375598776114],[125,291,76,0.10896684084961361],[125,291,77,0.112849694902738],[125,291,78,0.11643853310509578],[125,291,79,0.11968518001805212],[125,292,64,0.07942448989867024],[125,292,65,0.07863497743307413],[125,292,66,0.07874494182661007],[125,292,67,0.0797217366146108],[125,292,68,0.08151201127966085],[125,292,69,0.08404034358026569],[125,292,70,0.08720808576370986],[125,292,71,0.09089556706352342],[125,292,72,0.0949603426244558],[125,292,73,0.09923657092628607],[125,292,74,0.10357699094982303],[125,292,75,0.10786536202431313],[125,292,76,0.11200388752657897],[125,292,77,0.11591194837380187],[125,292,78,0.11952505829019655],[125,292,79,0.12279388675135416],[125,293,64,0.08253883114315475],[125,293,65,0.08177138552916641],[125,293,66,0.08189973642678944],[125,293,67,0.0828920693657797],[125,293,68,0.08469582366520512],[125,293,69,0.08723626866871925],[125,293,70,0.09041528868388837],[125,293,71,0.09411354116642318],[125,293,72,0.09818862753178431],[125,293,73,0.10247446943254912],[125,293,74,0.10682411258637087],[125,293,75,0.11112182641271146],[125,293,76,0.1152700215050802],[125,293,77,0.1191879371364642],[125,293,78,0.1228105456211222],[125,293,79,0.12608751455966913],[125,294,64,0.08600471222400752],[125,294,65,0.0852571476165116],[125,294,66,0.08539913062388205],[125,294,67,0.08639980033026323],[125,294,68,0.0882075701993672],[125,294,69,0.09074865169193369],[125,294,70,0.0939257812755373],[125,294,71,0.09762033737294679],[125,294,72,0.10169043618605594],[125,294,73,0.10597027691613747],[125,294,74,0.11031348965610693],[125,294,75,0.1146049965373136],[125,294,76,0.11874757017162169],[125,294,77,0.12266047005124234],[125,294,78,0.12627828953017747],[125,294,79,0.1295498511050951],[125,295,64,0.0897983916230426],[125,295,65,0.08906868530624462],[125,295,66,0.08921980779446292],[125,295,67,0.09022196464605081],[125,295,68,0.09202471713169524],[125,295,69,0.09455545678220134],[125,295,70,0.0977180779091768],[125,295,71,0.1013950565037216],[125,295,72,0.1054454743460781],[125,295,73,0.10970430486877897],[125,295,74,0.11402603451291532],[125,295,75,0.11829638142835586],[125,295,76,0.12241863544582932],[125,295,77,0.1263122386176399],[125,295,78,0.12991156880127153],[125,295,79,0.13316476219264684],[125,296,64,0.09389526061473696],[125,296,65,0.0931815664995631],[125,296,66,0.09333763101285297],[125,296,67,0.09433482962051293],[125,296,68,0.09612403307219314],[125,296,69,0.09863403646847069],[125,296,70,0.10177018079809885],[125,296,71,0.10541639705150946],[125,296,72,0.1094331620071945],[125,296,73,0.11365669823524477],[125,296,74,0.11794261219514479],[125,296,75,0.12217756029782595],[125,296,76,0.12626550340277037],[125,296,77,0.13012622715035277],[125,296,78,0.1336940566350826],[125,296,79,0.13691660093371852],[125,297,64,0.09827027553954026],[125,297,65,0.09757093938205558],[125,297,66,0.0977280787209418],[125,297,67,0.0987143320599499],[125,297,68,0.10048202799167327],[125,297,69,0.10296157238087289],[125,297,70,0.10606002245634422],[125,297,71,0.10966309944946195],[125,297,72,0.11363307953368301],[125,297,73,0.11780788343783127],[125,297,74,0.12204449024209799],[125,297,75,0.12623063387787217],[125,297,76,0.1302710967053126],[125,297,77,0.1340861657311922],[125,297,78,0.1376102734097221],[125,297,79,0.1407906594763694],[125,298,64,0.1028984308404382],[125,298,65,0.10221200755491483],[125,298,66,0.10236672186307372],[125,298,67,0.10333655734746422],[125,298,68,0.10507543421044063],[125,298,69,0.10751555814319819],[125,298,70,0.11056595050803336],[125,298,71,0.1141144328234735],[125,298,72,0.1180254563843745],[125,298,73,0.12213905908680367],[125,298,74,0.12631383126911738],[125,298,75,0.13043871856150074],[125,298,76,0.13441946984626735],[125,298,77,0.13817702593646736],[125,298,78,0.14164608213664043],[125,298,79,0.1447736633021764],[125,299,64,0.10775527286292608],[125,299,65,0.10708054630319946],[125,299,66,0.10722974248615885],[125,299,67,0.1081782602693222],[125,299,68,0.10988172937547247],[125,299,69,0.11227432445349184],[125,299,70,0.11526725484822142],[125,299,71,0.11875072422880545],[125,299,72,0.12259170243166481],[125,299,73,0.12663272937697434],[125,299,74,0.13073422830144588],[125,299,75,0.13478648334573712],[125,299,76,0.13869634720049867],[125,299,77,0.14238555934001074],[125,299,78,0.14578922661195823],[125,299,79,0.14885430808983663],[125,300,64,0.11281745441838081],[125,300,65,0.11215346000112592],[125,300,66,0.11229449380499401],[125,300,67,0.11321742758978692],[125,300,68,0.11487970142607801],[125,300,69,0.11721760635275136],[125,300,70,0.12014473715525895],[125,300,71,0.12355393037095946],[125,300,72,0.12731498187390045],[125,300,73,0.13127328017039852],[125,300,74,0.13529128286683947],[125,300,75,0.13926072957723143],[125,300,76,0.14308970388697337],[125,300,77,0.14670087879182114],[125,300,78,0.15002991226319756],[125,300,79,0.15302383914549444],[125,301,64,0.11806333011070269],[125,301,65,0.11740938065426665],[125,301,66,0.11754010173266494],[125,301,67,0.11843388237429503],[125,301,68,0.12005005554790782],[125,301,69,0.12232715268159394],[125,301,70,0.12518132275452654],[125,301,71,0.12850825181067105],[125,301,72,0.1321808297410062],[125,301,73,0.13604759776505132],[125,301,74,0.13997322584680094],[125,301,75,0.143851013500173],[125,301,76,0.14759038944062075],[125,301,77,0.15111508247219174],[125,301,78,0.15436142969127956],[125,301,79,0.1572766733996595],[125,302,64,0.1234735924263815],[125,302,65,0.1228293075788057],[125,302,66,0.12294810787618635],[125,302,67,0.12380993006113414],[125,302,68,0.12537606311547328],[125,302,69,0.12758737772505602],[125,302,70,0.13036271483370798],[125,302,71,0.13360078965318561],[125,302,72,0.13717781099352006],[125,302,73,0.14094573034965524],[125,302,74,0.14477158108660032],[125,302,75,0.1485503116066843],[125,302,76,0.15219279429417043],[125,302,77,0.15562392072149397],[125,302,78,0.1587808209079618],[125,302,79,0.16161106397088945],[125,303,64,0.1290319485879373],[125,303,65,0.12839728821780566],[125,303,66,0.1285031539973295],[125,303,67,0.12933104628156925],[125,303,68,0.13084425262311955],[125,303,69,0.1329860550454693],[125,303,70,0.13567809100954137],[125,303,71,0.13882224472175853],[125,303,72,0.14229822221497332],[125,303,73,0.14596159214459448],[125,303,74,0.14968187176401976],[125,303,75,0.15335572878962767],[125,303,76,0.1568955590699021],[125,303,77,0.16022750564554802],[125,303,78,0.16328958826864304],[125,303,79,0.1660298072961644],[125,304,64,0.1347258381706449],[125,304,65,0.13410114009439122],[125,304,66,0.1341937079385443],[125,304,67,0.13498660642832697],[125,304,68,0.13644514260436624],[125,304,69,0.13851505350332444],[125,304,70,0.1411208422459656],[125,304,71,0.14416765921529512],[125,304,72,0.14753883589753547],[125,304,73,0.15109371022883583],[125,304,74,0.15470436951674207],[125,304,75,0.15826924929774855],[125,304,76,0.1617023266812302],[125,304,77,0.164931063496507],[125,304,78,0.16789444610046533],[125,304,79,0.17054099282788288],[125,305,64,0.14054719148267678],[125,305,65,0.13993321390198643],[125,305,66,0.14001283101411327],[125,305,67,0.1407706569725738],[125,305,68,0.1421740165397483],[125,305,69,0.14417111546625705],[125,305,70,0.14668935412379067],[125,305,71,0.1496372008502597],[125,305,72,0.15290168732105075],[125,305,73,0.15634601405298243],[125,305,74,0.15984488632851068],[125,305,75,0.1632985304932774],[125,305,76,0.1666225372442483],[125,305,77,0.16974572982937441],[125,305,78,0.1726081150258307],[125,305,79,0.17515879529759823],[125,306,64,0.14649322870864717],[125,306,65,0.14589119773158749],[125,306,66,0.14595898686651942],[125,306,67,0.14668272852936964],[125,306,68,0.14803173975313944],[125,306,69,0.149956677206138],[125,306,70,0.15238783046187876],[125,306,71,0.1552369894868406],[125,306,72,0.15839490402545303],[125,306,73,0.16172866763844854],[125,306,74,0.16511560917404627],[125,306,75,0.16845773941198128],[125,306,76,0.17167226579922001],[125,306,77,0.17468938743414697],[125,306,78,0.17745015898132543],[125,306,79,0.17990430954648606],[125,307,64,0.15256627300129477],[125,307,65,0.15197793120872216],[125,307,66,0.15203584862702152],[125,307,67,0.152727628369952],[125,307,68,0.15402453016432416],[125,307,69,0.15587961156702484],[125,307,70,0.1582260026034069],[125,307,71,0.16097876902098257],[125,307,72,0.16403233785261767],[125,307,73,0.16725766111396634],[125,307,74,0.17053465197874473],[125,307,75,0.1737670672976484],[125,307,76,0.1768737025701795],[125,307,77,0.17978611626072719],[125,307,78,0.1824464093424033],[125,307,79,0.1848049537956211],[125,308,64,0.1587529303218657],[125,308,65,0.15818048279403926],[125,308,66,0.1582311234172475],[125,308,67,0.15889386817489146],[125,308,68,0.16014185569076317],[125,308,69,0.16193047611340114],[125,308,70,0.16419562878500749],[125,308,71,0.16685558282635016],[125,308,72,0.1698083710204657],[125,308,73,0.17292873695080918],[125,308,74,0.17609912632669597],[125,308,75,0.17922499862604588],[125,308,76,0.1822266987915306],[125,308,77,0.185037114580688],[125,308,78,0.18759937567811563],[125,308,79,0.1898644959308194],[125,309,64,0.16502026823353563],[125,309,65,0.164466252721366],[125,309,66,0.16451258273319716],[125,309,67,0.16514962508981684],[125,309,68,0.16635232902053745],[125,309,69,0.16807834436882835],[125,309,70,0.17026626416337576],[125,309,71,0.17283748432270254],[125,309,72,0.1756935682628229],[125,309,73,0.17871298384725573],[125,309,74,0.18178067677051474],[125,309,75,0.1848037877664966],[125,309,76,0.18770418549072002],[125,309,77,0.19041606198068883],[125,309,78,0.19288355673074314],[125,309,79,0.19505831819073782],[125,310,64,0.17133328010479265],[125,310,65,0.17080049016934237],[125,310,66,0.1708457707951828],[125,310,67,0.1714607737135715],[125,310,68,0.1726221862186269],[125,310,69,0.17428984051276286],[125,310,70,0.1764049432385032],[125,310,71,0.17889193629029398],[125,310,72,0.18165583478451808],[125,310,73,0.18457876275956714],[125,310,74,0.18754815219709958],[125,310,75,0.1904728258951278],[125,310,76,0.1932761639762981],[125,310,77,0.19589364378774743],[125,310,78,0.19827039567097476],[125,310,79,0.20035869055140623],[125,311,64,0.17765609023355944],[125,311,65,0.17714750647964556],[125,311,66,0.17719523014301092],[125,311,67,0.1777921281819415],[125,311,68,0.17891654911881752],[125,311,69,0.18053042547672907],[125,311,70,0.18257749248385133],[125,311,71,0.18498515214313274],[125,311,72,0.18766178740006317],[125,311,73,0.1904931080555727],[125,311,74,0.19336903589631765],[125,311,75,0.19620009772268854],[125,311,76,0.19891118599983737],[125,311,77,0.20143905064706324],[125,311,78,0.20372979444412653],[125,311,79,0.20573629471565416],[125,312,64,0.18395250048189193],[125,312,65,0.18347122188613213],[125,312,66,0.1835250470732515],[125,312,67,0.1841079850046753],[125,312,68,0.18519996436228528],[125,312,69,0.18676493112991224],[125,312,70,0.18874905880252585],[125,312,71,0.19108261799285114],[125,312,72,0.19367726979206373],[125,312,73,0.19642223581914217],[125,312,74,0.19920994685282734],[125,312,75,0.2019526756941958],[125,312,76,0.20457684075370453],[125,312,77,0.20702045817045],[125,312,78,0.2092305858767526],[125,312,79,0.21116068843315786],[125,313,64,0.19018771875685242],[125,313,65,0.18973680596688572],[125,313,66,0.1898004029384153],[125,313,67,0.19037358439378],[125,313,68,0.1914377742729582],[125,313,69,0.19295884058575624],[125,313,70,0.19488529954597913],[125,313,71,0.19715019308762144],[125,313,72,0.1996683645361529],[125,313,73,0.20233246909424038],[125,313,74,0.20503748013874712],[125,313,75,0.2076974776435413],[125,313,76,0.21024043206658913],[125,313,77,0.21260562610020406],[125,313,78,0.21474105736710383],[125,313,79,0.2166007563882089],[125,314,64,0.19632825727518832],[125,314,65,0.1959105912925143],[125,314,66,0.19598750189974273],[125,314,67,0.19655505087177597],[125,314,68,0.197596069132683],[125,314,69,0.19907825104759258],[125,314,70,0.20095235495849256],[125,314,71,0.20315409104243987],[125,314,72,0.20560138249713614],[125,314,73,0.20819023503595313],[125,314,74,0.21081821146403731],[125,314,75,0.21340127834380773],[125,314,76,0.21586899650043093],[125,314,77,0.21816192243738375],[125,314,78,0.22022898046021924],[125,314,79,0.22202474456078342],[125,315,64,0.20234103104582218],[125,315,65,0.2019592607867891],[125,315,66,0.20205284569626103],[125,315,67,0.2026187538137105],[125,315,68,0.20364113172585674],[125,315,69,0.20508940048339236],[125,315,70,0.20691645504184408],[125,315,71,0.20906056492185557],[125,315,72,0.21144262416379297],[125,315,73,0.21396190055791295],[125,315,74,0.21651860508581028],[125,315,75,0.2190306874282542],[125,315,76,0.22142934882923643],[125,315,77,0.22365643381947498],[125,315,78,0.22566178326027475],[125,315,79,0.2274004916052749],[125,316,64,0.20819381284038052],[125,316,65,0.20785031063208817],[125,316,66,0.20796370321024046],[125,316,67,0.20853178244190748],[125,316,68,0.20953991660579216],[125,316,69,0.21095915010905353],[125,316,70,0.21274440433470326],[125,316,71,0.2148363935602339],[125,316,72,0.21715886695270437],[125,316,73,0.2196142602762905],[125,316,74,0.22210550212984062],[125,316,75,0.22455263781805312],[125,316,76,0.22688857028091172],[125,316,77,0.22905645325308432],[125,316,78,0.2310070372902921],[125,316,79,0.23269591442366594],[125,317,64,0.21385574109957511],[125,317,65,0.21355256306809872],[125,317,66,0.2136886269224002],[125,317,67,0.21426246475077487],[125,317,68,0.21526057037908186],[125,317,69,0.21665550502809075],[125,317,70,0.2184041020390452],[125,317,71,0.22044940047248396],[125,317,72,0.22271788239822315],[125,317,73,0.22511505168718202],[125,317,74,0.22754663355374602],[125,317,75,0.22993489627532498],[125,317,76,0.23221451647655747],[125,317,77,0.23432998521681497],[125,317,78,0.23623295950622705],[125,317,79,0.23787950679861944],[125,318,64,0.21929783380808568],[125,318,65,0.21903668513884358],[125,318,66,0.2191979753276474],[125,318,67,0.21978089243353333],[125,318,68,0.2207729580583626],[125,318,69,0.22214814102627542],[125,318,70,0.2238650684021606],[125,318,71,0.2258689791281296],[125,318,72,0.2280889598125811],[125,318,73,0.23043347691205582],[125,318,74,0.232811139769659],[125,318,75,0.23514658070812652],[125,318,76,0.23737633222183907],[125,318,77,0.23944625772977185],[125,318,78,0.2413089214086619],[125,318,79,0.24292084527886204],[125,319,64,0.22449350833794152],[125,319,65,0.2242757133880228],[125,319,66,0.224464441311345],[125,319,67,0.2250594518108633],[125,319,68,0.22604919548347124],[125,319,69,0.22740893752121802],[125,319,70,0.22909897735425216],[125,319,71,0.23106662458871127],[125,319,72,0.23324343641612005],[125,319,73,0.23554073101124623],[125,319,74,0.23787009692637942],[125,319,75,0.2401586842273795],[125,319,76,0.2423449731504203],[125,319,77,0.24437624138568192],[125,319,78,0.2462059652520851],[125,319,79,0.24779110231684665],[126,-64,64,0.34353700903815304],[126,-64,65,0.3496782773167809],[126,-64,66,0.35591840751414583],[126,-64,67,0.3622439824120314],[126,-64,68,0.3686526119689096],[126,-64,69,0.37515357014839185],[126,-64,70,0.38175494252839426],[126,-64,71,0.38846228145561107],[126,-64,72,0.39527769920979244],[126,-64,73,0.40219911302835615],[126,-64,74,0.4092196463809559],[126,-64,75,0.4163271907452154],[126,-64,76,0.4235041319708921],[126,-64,77,0.43072724513231114],[126,-64,78,0.4379677615598128],[126,-64,79,0.4451916115134115],[126,-63,64,0.34659714626727883],[126,-63,65,0.3528249331104344],[126,-63,66,0.35915622718772866],[126,-63,67,0.3655774276636404],[126,-63,68,0.3720852478308041],[126,-63,69,0.37868778089428357],[126,-63,70,0.3853920540325708],[126,-63,71,0.39220268667541514],[126,-63,72,0.39912097911203465],[126,-63,73,0.40614415316912633],[126,-63,74,0.4132647492846885],[126,-63,75,0.4204701841645772],[126,-63,76,0.4277424730443793],[126,-63,77,0.4350581203916977],[126,-63,78,0.4423881826751205],[126,-63,79,0.449698506599208],[126,-62,64,0.3498596071622786],[126,-62,65,0.3561681592910679],[126,-62,66,0.36258335209522125],[126,-62,67,0.36909176884232353],[126,-62,68,0.3756891962023629],[126,-62,69,0.3823822254379332],[126,-62,70,0.3891765874891221],[126,-62,71,0.39607581757127225],[126,-62,72,0.4030803334558344],[126,-62,73,0.4101866657346761],[126,-62,74,0.4173868443274139],[126,-62,75,0.4246679453524885],[126,-62,76,0.43201180231889913],[126,-62,77,0.4393948854088609],[126,-62,78,0.44678835241396037],[126,-62,79,0.4541582746619009],[126,-61,64,0.3533074343324041],[126,-61,65,0.35969057779307223],[126,-61,66,0.36618193186637155],[126,-61,67,0.3727686043821866],[126,-61,68,0.3794454372544677],[126,-61,69,0.38621723659293994],[126,-61,70,0.39308823371077656],[126,-61,71,0.4000607585667479],[126,-61,72,0.40713430195089934],[126,-61,73,0.4143047292901282],[126,-61,74,0.42156365026479237],[126,-61,75,0.4288979482897343],[126,-61,76,0.4362894737506994],[126,-61,77,0.44371490470211766],[126,-61,78,0.4511457785264743],[126,-61,79,0.4585486978322083],[126,-60,64,0.35691927705257215],[126,-60,65,0.3633703895837466],[126,-60,66,0.369929721738417],[126,-60,67,0.3765852025467366],[126,-60,68,0.3833307195328691],[126,-60,69,0.3901690557880723],[126,-60,70,0.3971027795659428],[126,-60,71,0.40413292823701996],[126,-60,72,0.41125804873489824],[126,-60,73,0.4184733890102239],[126,-60,74,0.42577024461421936],[126,-60,75,0.433135464397522],[126,-60,76,0.4405511191498462],[126,-60,77,0.4479943368233527],[126,-60,78,0.45543730777948643],[126,-60,79,0.46284746327861737],[126,-59,64,0.3606699226114883],[126,-59,65,0.3671819051130838],[126,-59,66,0.37380061587844166],[126,-59,67,0.3805150396193388],[126,-59,68,0.3873181033041153],[126,-59,69,0.3942103805658684],[126,-59,70,0.4011926575736911],[126,-59,71,0.4082646281080691],[126,-59,72,0.41542390685294284],[126,-59,73,0.4226651928739162],[126,-59,74,0.4299795873347631],[126,-59,75,0.4373540693710628],[126,-59,76,0.4447711338822762],[126,-59,77,0.4522085948239311],[126,-59,78,0.45963955738164497],[126,-59,79,0.467032562191676],[126,-58,64,0.36453095624535387],[126,-58,65,0.37109620275153254],[126,-58,66,0.37776530769281813],[126,-58,67,0.3845284635835954],[126,-58,68,0.39137762721818],[126,-58,69,0.3983110323409404],[126,-58,70,0.40532761166773673],[126,-58,71,0.41242570240582027],[126,-58,72,0.4196020272957958],[126,-58,73,0.42685082485675935],[126,-58,74,0.4341631328183742],[126,-58,75,0.44152622859337265],[126,-58,76,0.44892323048969707],[126,-58,77,0.4563328631852694],[126,-58,78,0.46372939079205155],[126,-58,79,0.47108272062278045],[126,-57,64,0.368471548642506],[126,-57,65,0.37508191412169745],[126,-57,66,0.3817920759722446],[126,-57,67,0.38859348210291317],[126,-57,68,0.3954770970752165],[126,-57,69,0.40243874320310175],[126,-57,70,0.4094754779338571],[126,-57,71,0.4165843076024389],[126,-57,72,0.42376113151172645],[126,-57,73,0.43099983412967274],[126,-57,74,0.4382915293210065],[126,-57,75,0.4456239604042458],[126,-57,76,0.45298105967407004],[126,-57,77,0.4603426708565937],[126,-57,78,0.46768443777260515],[126,-57,79,0.47497786227452937],[126,-56,64,0.3724566460417989],[126,-56,65,0.3791034699509081],[126,-56,66,0.38584507018143216],[126,-56,67,0.39267408171544793],[126,-56,68,0.39958043931263165],[126,-56,69,0.4065575443258363],[126,-56,70,0.41360060785989644],[126,-56,71,0.4207053690798909],[126,-56,72,0.42786699825319285],[126,-56,73,0.4350791467717634],[126,-56,74,0.44233314800925416],[126,-56,75,0.4496173727441526],[126,-56,76,0.4569167427331946],[126,-56,77,0.4642124058505878],[126,-56,78,0.47148157602006596],[126,-56,79,0.4786975409614912],[126,-55,64,0.37643253281621253],[126,-55,65,0.383107055812778],[126,-55,66,0.38987053060951593],[126,-55,67,0.3967166701742919],[126,-55,68,0.40363437539701796],[126,-55,69,0.4106146928781545],[126,-55,70,0.41765107096189746],[126,-55,71,0.4247380796754007],[126,-55,72,0.43187027080437873],[126,-55,73,0.4390411837220665],[126,-55,74,0.44624250076359023],[126,-55,75,0.4534633558180505],[126,-55,76,0.4606897996673247],[126,-55,77,0.46790442543575816],[126,-55,78,0.47508615733033227],[126,-55,79,0.4822102056496116],[126,-54,64,0.3803438409150575],[126,-54,65,0.3870374301405494],[126,-54,66,0.39381346865709066],[126,-54,67,0.40066663484366094],[126,-54,68,0.40758484432169934],[126,-54,69,0.41455693124349174],[126,-54,70,0.42157471692119175],[126,-54,71,0.42863173009452543],[126,-54,72,0.43572202471648347],[126,-54,73,0.44283914210717085],[126,-54,74,0.44997522120266625],[126,-54,75,0.45712026050945226],[126,-54,76,0.4642615352353221],[126,-54,77,0.4713831729066035],[126,-54,78,0.4784658906008614],[126,-54,79,0.48548689672695033],[126,-53,64,0.3841439887551638],[126,-53,65,0.39084818136899363],[126,-53,66,0.39762779622861394],[126,-53,67,0.4044783603616568],[126,-53,68,0.4113868985062503],[126,-53,69,0.41834024227988903],[126,-53,70,0.42532876739697395],[126,-53,71,0.4323451143536324],[126,-53,72,0.43938296691991624],[126,-53,73,0.4464359734071839],[126,-53,74,0.4534968143671076],[126,-53,75,0.46055642026569504],[126,-53,76,0.46760334253951424],[126,-53,77,0.4746232812838907],[126,-53,78,0.48159877264598944],[126,-53,79,0.48850903880234176],[126,-52,64,0.38779540597118795],[126,-52,65,0.3945019533376356],[126,-52,66,0.40127654787618633],[126,-52,67,0.40811544473690625],[126,-52,68,0.41500491112689686],[126,-52,69,0.4219300443622788],[126,-52,70,0.42887999457297743],[126,-52,71,0.435846687082908],[126,-52,72,0.4428235666434081],[126,-52,73,0.44980448260855266],[126,-52,74,0.4567827186313098],[126,-52,75,0.4637501703493531],[126,-52,76,0.4706966743963495],[126,-52,77,0.47760949192058083],[126,-52,78,0.4844729496195895],[126,-52,79,0.4912682411100611],[126,-51,64,0.39019972132893027],[126,-51,65,0.3979707337770891],[126,-51,66,0.4047321653783129],[126,-51,67,0.41155097679744657],[126,-51,68,0.4184128434121413],[126,-51,69,0.42530144489715366],[126,-51,70,0.4322049567439898],[126,-51,71,0.43911477663148624],[126,-51,72,0.44602424119804057],[126,-51,73,0.45292748166461044],[126,-51,74,0.45981842180156884],[126,-51,75,0.4666899216248765],[126,-51,76,0.4735330700769146],[126,-51,77,0.48033662979656694],[126,-51,78,0.4870866369135185],[126,-51,79,0.4937661586160301],[126,-50,64,0.3916945630163167],[126,-50,65,0.3999117166777435],[126,-50,66,0.407976890053183],[126,-50,67,0.4147679197276937],[126,-50,68,0.421594616038527],[126,-50,69,0.4284395957660813],[126,-50,70,0.4352903336252419],[126,-50,71,0.4421378957894537],[126,-50,72,0.4489756374920453],[126,-50,73,0.45579803712522515],[126,-50,74,0.4625996702347639],[126,-50,75,0.4693743267027707],[126,-50,76,0.4761142742833732],[126,-50,77,0.48280967150828535],[126,-50,78,0.48944813281295707],[126,-50,79,0.49601444855197385],[126,-49,64,0.3932728403236715],[126,-49,65,0.4014769474974453],[126,-49,66,0.4096629869885714],[126,-49,67,0.41775515328024576],[126,-49,68,0.424540744342548],[126,-49,69,0.43133693557996466],[126,-49,70,0.4381307775649],[126,-49,71,0.44491319083776965],[126,-49,72,0.4516776545535345],[126,-49,73,0.4584190289433735],[126,-49,74,0.4651325148829508],[126,-49,75,0.47181275375473636],[126,-49,76,0.4784530706664016],[126,-49,77,0.4850448639421994],[126,-49,78,0.4915771436411622],[126,-49,79,0.49803622167756734],[126,-48,64,0.3949488941777252],[126,-48,65,0.4031297192430187],[126,-48,66,0.4113020030263657],[126,-48,67,0.4194492719679132],[126,-48,68,0.42723618341631203],[126,-48,69,0.43398255529568247],[126,-48,70,0.4407197923951194],[126,-48,71,0.44743879334215175],[126,-48,72,0.4541331948101958],[126,-48,73,0.4607981960313138],[126,-48,74,0.467429516944625],[126,-48,75,0.4740224930431514],[126,-48,76,0.48057130985863056],[126,-48,77,0.4870683798815963],[126,-48,78,0.4935038645544959],[126,-48,79,0.499865343801344],[126,-47,64,0.3967329614955895],[126,-47,65,0.4048777135340395],[126,-47,66,0.4130224232110927],[126,-47,67,0.42115079682829737],[126,-47,68,0.4292575900162989],[126,-47,69,0.4363692669961475],[126,-47,70,0.44305427953364235],[126,-47,71,0.4497158359001691],[126,-47,72,0.4563476924477413],[126,-47,73,0.4629452704485636],[126,-47,74,0.4695046288561492],[126,-47,75,0.4760215691235341],[126,-47,76,0.48249087486974257],[126,-47,77,0.48890568904692355],[126,-47,78,0.4952570311054082],[126,-47,79,0.5015334564847583],[126,-46,64,0.3986260370797719],[126,-46,65,0.40671997218372963],[126,-46,66,0.4148210685079249],[126,-46,67,0.42291338729856287],[126,-46,68,0.43099167313964526],[126,-46,69,0.4384958187937994],[126,-46,70,0.4451360972207693],[126,-46,71,0.4517493622656228],[126,-46,72,0.458329394553463],[126,-46,73,0.4648716628918752],[126,-46,74,0.4713723297204311],[126,-46,75,0.477827382670756],[126,-46,76,0.484231894850614],[126,-46,77,0.4905794163313104],[126,-46,78,0.4968614991680904],[126,-46,79,0.503067358120569],[126,-45,64,0.40062091120811405],[126,-45,65,0.4086478882683309],[126,-45,66,0.4166877454988589],[126,-45,67,0.4247250801060255],[126,-45,68,0.43275455019620457],[126,-45,69,0.440366189423933],[126,-45,70,0.44697143273210727],[126,-45,71,0.45354778159972564],[126,-45,72,0.46008890045743744],[126,-45,73,0.46659008863759954],[126,-45,74,0.4730473377267296],[126,-45,75,0.4794565075956074],[126,-45,76,0.485812623512507],[126,-45,77,0.49210929661678376],[126,-45,78,0.4983382698876139],[126,-45,79,0.504489091588295],[126,-44,64,0.402703183066261],[126,-44,65,0.410646174409119],[126,-44,66,0.41860616357269886],[126,-44,67,0.42656846597527304],[126,-44,68,0.4345276082543386],[126,-44,69,0.44198889869986113],[126,-44,70,0.44857018914845814],[126,-44,71,0.45512233632799565],[126,-44,72,0.461638714189204],[126,-44,73,0.46811420665682435],[126,-44,74,0.4745443364128535],[126,-44,75,0.48092450332917336],[126,-44,76,0.48724933471775145],[126,-44,77,0.49351214944595634],[126,-44,78,0.4997045378311329],[126,-44,79,0.5058160590845105],[126,-43,64,0.4048522530758713],[126,-43,65,0.4126938111620707],[126,-43,66,0.42055483340545274],[126,-43,67,0.42842153201488914],[126,-43,68,0.43628828718520973],[126,-43,69,0.4433763316962138],[126,-43,70,0.4499453847645272],[126,-43,71,0.45648658190202296],[126,-43,72,0.4629928085632576],[126,-43,73,0.46945827062180273],[126,-43,74,0.4758777136788798],[126,-43,75,0.48224574135485504],[126,-43,76,0.4885562344678363],[126,-43,77,0.49480187289250316],[126,-43,78,0.5009737617700172],[126,-43,79,0.507061163608328],[126,-42,64,0.40704229717237855],[126,-42,65,0.4147649784130393],[126,-42,66,0.42250794945913306],[126,-42,67,0.4302584892413371],[126,-42,68,0.4379600587501602],[126,-42,69,0.44454407452561967],[126,-42,70,0.4511125632216629],[126,-42,71,0.4576558767760024],[126,-42,72,0.46416619942747067],[126,-42,73,0.47063679055603486],[126,-42,74,0.4770613125113617],[126,-42,75,0.48343324513660413],[126,-42,76,0.4897453886050613],[126,-42,77,0.4959894560878321],[126,-42,78,0.5021557576616846],[126,-42,79,0.508232976749682],[126,-41,64,0.40924322607721353],[126,-41,65,0.41682997267010025],[126,-41,66,0.42443625922218703],[126,-41,67,0.4320505877797617],[126,-41,68,0.4389201621033216],[126,-41,69,0.4455102595803444],[126,-41,70,0.4520892124600461],[126,-41,71,0.45864688092457656],[126,-41,72,0.4651745286344907],[126,-41,73,0.4716642039185043],[126,-41,74,0.47810819243035463],[126,-41,75,0.4844985426633682],[126,-41,76,0.4908266656360987],[126,-41,77,0.4970830099767025],[126,-41,78,0.5032568135404554],[126,-41,79,0.5093359325954023],[126,-40,64,0.41142163259024356],[126,-40,65,0.41885611312868376],[126,-40,66,0.4263079219006372],[126,-40,67,0.43309181994548895],[126,-40,68,0.4396900453495623],[126,-40,69,0.44629491812341165],[126,-40,70,0.45289419060179575],[126,-40,71,0.45947706125014454],[126,-40,72,0.4660336543261224],[126,-40,73,0.472554554953821],[126,-40,74,0.479030400727082],[126,-40,75,0.48545153090236065],[126,-40,76,0.4918076941782672],[126,-40,77,0.4980878159892869],[126,-40,78,0.504279826165875],[126,-40,79,0.5103705477333129],[126,-39,64,0.4135417298990536],[126,-39,65,0.42054344183160214],[126,-39,66,0.4270917446100577],[126,-39,67,0.4336787009222882],[126,-39,68,0.4402923879112997],[126,-39,69,0.4469193381344237],[126,-39,70,0.4535471568994516],[126,-39,71,0.4601642022555374],[126,-39,72,0.4667592471558831],[126,-39,73,0.4733211811855331],[126,-39,74,0.47983875261881315],[126,-39,75,0.4863003515286701],[126,-39,76,0.49269383462307675],[126,-39,77,0.49900639243228323],[126,-39,78,0.5052244594156252],[126,-39,79,0.5113336674986032],[126,-38,64,0.41446038941469976],[126,-38,65,0.42096166361401577],[126,-38,66,0.4275166427546354],[126,-38,67,0.43411695890687335],[126,-38,68,0.44075084388172114],[126,-38,69,0.4474054253433329],[126,-38,70,0.4540680059138074],[126,-38,71,0.4607259203912659],[126,-38,72,0.4673663911146754],[126,-38,73,0.47397640597887064],[126,-38,74,0.4805426195086982],[126,-38,75,0.48705127737489623],[126,-38,76,0.4934881647055332],[126,-38,77,0.4998385785158798],[126,-38,78,0.5060873245468154],[126,-38,79,0.5122187387677785],[126,-37,64,0.4147527819710996],[126,-37,65,0.4212533385911208],[126,-37,66,0.4278163850748193],[126,-37,67,0.43443229855370663],[126,-37,68,0.44108933843060305],[126,-37,69,0.44777506542089157],[126,-37,70,0.4544763031211397],[126,-37,71,0.46117918052543944],[126,-37,72,0.4678691876687704],[126,-37,73,0.47453123615155],[126,-37,74,0.4811497246016091],[126,-37,75,0.48770860912158626],[126,-37,76,0.49419147876128977],[126,-37,77,0.5005816360460418],[126,-37,78,0.506862182583466],[126,-37,79,0.5130161097628058],[126,-36,64,0.4149482115954595],[126,-36,65,0.42144724915886395],[126,-36,66,0.42801821168149573],[126,-36,67,0.43465020226133355],[126,-36,68,0.4413313632123966],[126,-36,69,0.44804948533817585],[126,-36,70,0.4547907201932555],[126,-36,71,0.46153981302966923],[126,-36,72,0.46828036196877687],[126,-36,73,0.4749950636676748],[126,-36,74,0.48166594519313277],[126,-36,75,0.4882745818278389],[126,-36,76,0.49480230054751445],[126,-36,77,0.501230368923105],[126,-36,78,0.5075401692195813],[126,-36,79,0.513713357481745],[126,-35,64,0.41507614732542103],[126,-35,65,0.4215714575003526],[126,-35,66,0.42814851563930306],[126,-35,67,0.43479516380175187],[126,-35,68,0.4414992686330381],[126,-35,69,0.44824861195913496],[126,-35,70,0.4550284682440972],[126,-35,71,0.46182203002532707],[126,-35,72,0.4686108699424065],[126,-35,73,0.47537537050952483],[126,-35,74,0.48209512101694324],[126,-35,75,0.4887492809805468],[126,-35,76,0.4953169095961824],[126,-35,77,0.5017772606967984],[126,-35,78,0.5081100427549621],[126,-35,79,0.5142956435206049],[126,-34,64,0.41516453799301584],[126,-34,65,0.421652434381887],[126,-34,66,0.4282320184904377],[126,-34,67,0.43488991639569763],[126,-34,68,0.44161355089506443],[126,-34,69,0.44839042598955625],[126,-34,70,0.4552047273938594],[126,-34,71,0.46203793939138194],[126,-34,72,0.46886950514250697],[126,-34,73,0.4756774358849316],[126,-34,74,0.48243886810551334],[126,-34,75,0.48913056781999714],[126,-34,76,0.49536852043353546],[126,-34,77,0.5012583340893795],[126,-34,78,0.5070967156354823],[126,-34,79,0.5128761916966661],[126,-33,64,0.41523889261395275],[126,-33,65,0.42171417942250516],[126,-33,66,0.4282909376231023],[126,-33,67,0.4349546530503628],[126,-33,68,0.4416921318133598],[126,-33,69,0.44849030947410223],[126,-33,70,0.45533207106662055],[126,-33,71,0.4621970551985594],[126,-33,72,0.46906250428587476],[126,-33,73,0.47590404499480765],[126,-33,74,0.4820819275550776],[126,-33,75,0.4878431501166836],[126,-33,76,0.4935771588991926],[126,-33,77,0.49928156645875166],[126,-33,78,0.5049521642804865],[126,-33,79,0.5105827008806608],[126,-32,64,0.4153213496094306],[126,-32,65,0.421777330459827],[126,-32,66,0.42834414323916425],[126,-32,67,0.435006237064147],[126,-32,68,0.4417496294758903],[126,-32,69,0.44856038510968976],[126,-32,70,0.4554198835098263],[126,-32,71,0.46230580330416277],[126,-32,72,0.4691931504870957],[126,-32,73,0.4748451325587766],[126,-32,74,0.48041058453899027],[126,-32,75,0.48596213811129263],[126,-32,76,0.49150116828973855],[126,-32,77,0.4970271743299001],[126,-32,78,0.5025374196234894],[126,-32,79,0.5080266635227243],[126,-31,64,0.41542973249362386],[126,-31,65,0.42185825974705243],[126,-31,66,0.42840630278072517],[126,-31,67,0.435057400701244],[126,-31,68,0.4417966179151022],[126,-31,69,0.44860884572846277],[126,-31,70,0.45547376910356746],[126,-31,71,0.46236702091747284],[126,-31,72,0.4677421205133006],[126,-31,73,0.47309919786941174],[126,-31,74,0.478450663968175],[126,-31,75,0.4838016444229841],[126,-31,76,0.4891555407881011],[126,-31,77,0.49451350572779007],[126,-31,78,0.4998740276525975],[126,-31,79,0.5052326257316394],[126,-30,64,0.415576589792051],[126,-30,65,0.4219681548403623],[126,-30,66,0.42848701079220886],[126,-30,67,0.4351159301481535],[126,-30,68,0.4418388740573223],[126,-30,69,0.4486392723980219],[126,-30,70,0.45549495211551594],[126,-30,71,0.46077919394651246],[126,-30,72,0.4659233283850967],[126,-30,73,0.4710654819161796],[126,-30,74,0.4762142310325141],[126,-30,75,0.4813768069267531],[126,-30,76,0.4865583841076288],[126,-30,77,0.49176149461248975],[126,-30,78,0.49698556895653767],[126,-30,79,0.5022266047664027],[126,-29,64,0.41576821710056766],[126,-29,65,0.42211208217236484],[126,-29,66,0.42858990232285615],[126,-29,67,0.4351838349841659],[126,-29,68,0.4418766103290008],[126,-29,69,0.44864993968981887],[126,-29,70,0.45395353157481205],[126,-29,71,0.45888676490902003],[126,-29,72,0.463817677607962],[126,-29,73,0.4687577193147187],[126,-29,74,0.4737176106579002],[126,-29,75,0.47870642848094463],[126,-29,76,0.48373083120837695],[126,-29,77,0.4887944257339778],[126,-29,78,0.4938972770018658],[126,-29,79,0.4990355612321028],[126,-28,64,0.4160036593516789],[126,-28,65,0.4222880314555697],[126,-28,66,0.42871174811410084],[126,-28,67,0.4352565005283979],[126,-28,68,0.4419036914198546],[126,-28,69,0.44725758037930013],[126,-28,70,0.4519869188236999],[126,-28,71,0.45671054741117567],[126,-28,72,0.46144195532399646],[126,-28,73,0.4661947582215053],[126,-28,74,0.4709815682512966],[126,-28,75,0.4758130170157162],[126,-28,76,0.48069693313167683],[126,-28,77,0.4856376757898728],[126,-28,78,0.49063562548021844],[126,-28,79,0.4956868328059924],[126,-27,64,0.4162736915258247],[126,-27,65,0.4224859392217736],[126,-27,66,0.42884152996887154],[126,-27,67,0.43532182156878607],[126,-27,68,0.4406834618129146],[126,-27,69,0.4452192071388304],[126,-27,70,0.4497438838761496],[126,-27,71,0.4542719559672297],[126,-27,72,0.4588191041555639],[126,-27,73,0.463400873618591],[126,-27,74,0.46803148557108354],[126,-27,75,0.4727228147338172],[126,-27,76,0.47748353431633456],[126,-27,77,0.4823184299068458],[126,-27,78,0.4872278833995856],[126,-27,79,0.4922075278227135],[126,-26,64,0.4165597762284666],[126,-26,65,0.422686689976851],[126,-26,66,0.4289594948634586],[126,-26,67,0.43422709977690466],[126,-26,68,0.438581260198636],[126,-26,69,0.44291823110374484],[126,-26,70,0.4472521684721594],[126,-26,71,0.451599764062006],[126,-26,72,0.4559786674559878],[126,-26,73,0.46040608126701943],[126,-26,74,0.46489753165436976],[126,-26,75,0.4694658160455538],[126,-26,76,0.47412012969100376],[126,-26,77,0.4788653724008375],[126,-26,78,0.4837016365289492],[126,-26,79,0.48862387698182086],[126,-25,64,0.4168331000285974],[126,-25,65,0.4228612009255869],[126,-25,66,0.42789193220715477],[126,-25,67,0.43207670885587596],[126,-25,68,0.43623871597006464],[126,-25,69,0.44039037548262416],[126,-25,70,0.44454809988827176],[126,-25,71,0.4487305787872166],[126,-25,72,0.45295715552883775],[126,-25,73,0.45724638681875956],[126,-25,74,0.46161478743197765],[126,-25,75,0.46607576189791305],[126,-25,76,0.47063872473466584],[126,-25,77,0.47530841051215816],[126,-25,78,0.48008437472066895],[126,-25,79,0.4849606861152319],[126,-24,64,0.4170599520752569],[126,-24,65,0.42168327880186185],[126,-24,66,0.4257122839683906],[126,-24,67,0.4297118936633342],[126,-24,68,0.43369441360600447],[126,-24,69,0.4376745376753575],[126,-24,70,0.4416707017314546],[126,-24,71,0.4457033153717026],[126,-24,72,0.44979310971701747],[126,-24,73,0.45395967647464924],[126,-24,74,0.4582202003841305],[126,-24,75,0.46258838685714276],[126,-24,76,0.4670735863151268],[126,-24,77,0.4716801164132246],[126,-24,78,0.4764067830191818],[126,-24,79,0.48124660049405144],[126,-23,64,0.4156054556180565],[126,-23,65,0.4194894831929203],[126,-23,66,0.4233392154464737],[126,-23,67,0.42716492572545783],[126,-23,68,0.4309804918081009],[126,-23,69,0.43480270984614017],[126,-23,70,0.4386518091452419],[126,-23,71,0.4425496463652722],[126,-23,72,0.4465180404931477],[126,-23,73,0.4505773059461977],[126,-23,74,0.4547449858512587],[126,-23,75,0.45903478723211477],[126,-23,76,0.46345571951469383],[126,-23,77,0.46801143742878376],[126,-23,78,0.4726997890506704],[126,-23,79,0.4775125693960167],[126,-22,64,0.41341468408704757],[126,-22,65,0.4171227556133654],[126,-22,66,0.4208026119693364],[126,-22,67,0.4244651251880919],[126,-22,68,0.42812564586609053],[126,-22,69,0.4318029134185576],[126,-22,70,0.4355187348143699],[126,-22,71,0.43929615727732285],[126,-22,72,0.44315780552734546],[126,-22,73,0.4471244226280227],[126,-22,74,0.45121361640227914],[126,-22,75,0.4554388130505141],[126,-22,76,0.4598084192681353],[126,-22,77,0.4643251938156089],[126,-22,78,0.46898582914769293],[126,-22,79,0.4737807433625295],[126,-21,64,0.41107321729322127],[126,-21,65,0.4146125690335774],[126,-21,66,0.41813100039704015],[126,-21,67,0.4216399560563882],[126,-21,68,0.425156162437111],[126,-21,69,0.4287001583028595],[126,-21,70,0.4322951340064062],[126,-21,71,0.43596509684341794],[126,-21,72,0.4397332239998399],[126,-21,73,0.44362042334625695],[126,-21,74,0.4476441039390946],[126,-21,75,0.4518171577478645],[126,-21,76,0.4561471537781638],[126,-21,77,0.4606357454051973],[126,-21,78,0.46527829137619736],[126,-21,79,0.47006369058542263],[126,-20,64,0.40861170752961884],[126,-20,65,0.41198829483434607],[126,-20,66,0.4153523038928798],[126,-20,67,0.4187157143463885],[126,-20,68,0.4220965364062163],[126,-20,69,0.4255169854446441],[126,-20,70,0.42900147154854046],[126,-20,71,0.4325747689647532],[126,-20,72,0.43626039579654247],[126,-20,73,0.44007920476580664],[126,-20,74,0.4440481867843658],[126,-20,75,0.44817948872545227],[126,-20,76,0.4524796464266435],[126,-20,77,0.4569490335912045],[126,-20,78,0.4615815268903178],[126,-20,79,0.4663643872071599],[126,-19,64,0.40606200764085465],[126,-19,65,0.40928000793654823],[126,-19,66,0.41249458428660774],[126,-19,67,0.41571820139142796],[126,-19,68,0.41897007031051925],[126,-19,69,0.42227398915629927],[126,-19,70,0.42565546559776785],[126,-19,71,0.4291398982382894],[126,-19,72,0.4327509908858627],[126,-19,73,0.4365093803787268],[126,-19,74,0.44043147958288786],[126,-19,75,0.4445285368158473],[126,-19,76,0.44880591258176794],[126,-19,77,0.4532625741310776],[126,-19,78,0.45789080798631115],[126,-19,79,0.46267615020904307],[126,-18,64,0.40345458997372474],[126,-18,65,0.40651569343545174],[126,-18,66,0.4095830269148875],[126,-18,67,0.4126694784542878],[126,-18,68,0.41579539173907143],[126,-18,69,0.4189860919774707],[126,-18,70,0.4222681164582487],[126,-18,71,0.425667411133819],[126,-18,72,0.4292077831718173],[126,-18,73,0.4329095692033919],[126,-18,74,0.4367885207530598],[126,-18,75,0.4408549079631459],[126,-18,76,0.44511284234836],[126,-18,77,0.4495598189365788],[126,-18,78,0.4541864777747346],[126,-18,79,0.45897658440708733],[126,-17,64,0.4008034438002004],[126,-17,65,0.4037069668914653],[126,-17,66,0.40662665507297463],[126,-17,67,0.40957574951868786],[126,-17,68,0.4125756694331171],[126,-17,69,0.4156532400414152],[126,-17,70,0.4188360006177937],[126,-17,71,0.4221504160655333],[126,-17,72,0.425620368329767],[126,-17,73,0.42926586560207025],[126,-17,74,0.4331019706683736],[126,-17,75,0.4371379493705534],[126,-17,76,0.4413766397663675],[126,-17,77,0.4458140421858767],[126,-17,78,0.45043912999957303],[126,-17,79,0.45523388053735425],[126,-16,64,0.39808137624084383],[126,-16,65,0.40082791683033897],[126,-16,66,0.4036012190606474],[126,-16,67,0.40641480342011016],[126,-16,68,0.4092910809470014],[126,-16,69,0.4122583061912675],[126,-16,70,0.415344935121528],[126,-16,71,0.41857785536856545],[126,-16,72,0.42198092067950377],[126,-16,73,0.4255737048979449],[126,-16,74,0.4293704766831832],[126,-16,75,0.4333793957918732],[126,-16,76,0.4376019313523821],[126,-16,77,0.4420325021692844],[126,-16,78,0.44665833870758326],[126,-16,79,0.4514595660265339],[126,-15,64,0.3952607201770649],[126,-15,65,0.39785270222013175],[126,-15,66,0.40048308012367456],[126,-15,67,0.40316556854246466],[126,-15,68,0.40592345012538106],[126,-15,69,0.4087862826721331],[126,-15,70,0.41178328389237395],[126,-15,71,0.4149415885909384],[126,-15,72,0.41828483456051285],[126,-15,73,0.4218319689592222],[126,-15,74,0.42559627623924307],[126,-15,75,0.4295846282957427],[126,-15,76,0.43379695710639055],[126,-15,77,0.43822594973425344],[126,-15,78,0.4428569651756609],[126,-15,79,0.4476681721528753],[126,-14,64,0.3923238239280488],[126,-14,65,0.3947650193418188],[126,-14,66,0.3972574877915177],[126,-14,67,0.3998150337755092],[126,-14,68,0.40246165637772596],[126,-14,69,0.40522804420563807],[126,-14,70,0.4081439679037814],[126,-14,71,0.4112365758621461],[126,-14,72,0.41452904290479514],[126,-14,73,0.41803943930772375],[126,-14,74,0.42177982105468037],[126,-14,75,0.4257555418379679],[126,-14,76,0.42996478690854645],[126,-14,77,0.4343983284798947],[126,-14,78,0.4390395019977871],[126,-14,79,0.4438644022066089],[126,-13,64,0.3892610464044143],[126,-13,65,0.3915561511171089],[126,-13,66,0.39391670933253037],[126,-13,67,0.39635648694953657],[126,-13,68,0.39890001240905587],[126,-13,69,0.4015788954899074],[126,-13,70,0.40442321191443115],[126,-13,71,0.40745985130702034],[126,-13,72,0.41071124188898683],[126,-13,73,0.414194293965363],[126,-13,74,0.4179195629442907],[126,-13,75,0.421890632225842],[126,-13,76,0.42610371589356205],[126,-13,77,0.4305474807425663],[126,-13,78,0.43520308678744635],[126,-13,79,0.4400444450146909],[126,-12,64,0.38606892182605734],[126,-12,65,0.3882231835776287],[126,-12,66,0.39045832240923994],[126,-12,67,0.3927879106992003],[126,-12,68,0.39523679156012737],[126,-12,69,0.3978372583229054],[126,-12,70,0.40061941863799494],[126,-12,71,0.40360960954356495],[126,-12,72,0.4068292122646508],[126,-12,73,0.4102936826879728],[126,-12,74,0.41401179807523186],[126,-12,75,0.4179851201750364],[126,-12,76,0.42220767449245816],[126,-12,77,0.4266658450794316],[126,-12,78,0.43133848382355633],[126,-12,79,0.4361972328404732],[126,-11,64,0.382748494230637],[126,-11,65,0.3847673896587378],[126,-11,66,0.38688367109970867],[126,-11,67,0.3891105359330963],[126,-11,68,0.39147290497382503],[126,-11,69,0.3940034986370709],[126,-11,70,0.39673217073902745],[126,-11,71,0.39968440579120784],[126,-11,72,0.40288023806036405],[126,-11,73,0.4063333814779483],[126,-11,74,0.4100505707761899],[126,-11,75,0.4140311138299343],[126,-11,76,0.41826665478825387],[126,-11,77,0.4227411471912695],[126,-11,78,0.4274310358904237],[126,-11,79,0.4323056462276088],[126,-10,64,0.3793038226875166],[126,-10,65,0.3811927811765132],[126,-10,66,0.3831964861055652],[126,-10,67,0.38532755371101085],[126,-10,68,0.38761072939123364],[126,-10,69,0.3900788942718166],[126,-10,70,0.39276136152723745],[126,-10,71,0.39568247053069033],[126,-10,72,0.398860623689374],[126,-10,73,0.4023075275254017],[126,-10,74,0.4060276381882787],[126,-10,75,0.4100178111955863],[126,-10,76,0.4142671548131737],[126,-10,77,0.4187570861085902],[126,-10,78,0.4234615883463864],[126,-10,79,0.42834766804419616],[126,-9,64,0.37574065877830337],[126,-9,65,0.37750483048070155],[126,-9,66,0.3794016705821499],[126,-9,67,0.3814429869178098],[126,-9,68,0.3836530869311619],[126,-9,69,0.38606474481479647],[126,-9,70,0.38870645567168577],[126,-9,71,0.39160114004241653],[126,-9,72,0.39476531081052546],[126,-9,73,0.3982084359627088],[126,-9,74,0.4019324971964028],[126,-9,75,0.40593174399046933],[126,-9,76,0.41019264238313075],[126,-9,77,0.4146940173385326],[126,-9,78,0.4194073872340293],[126,-9,79,0.42429748866723804],[126,-8,64,0.37206529850654024],[126,-8,65,0.3737093638669473],[126,-8,66,0.37550425359870543],[126,-8,67,0.37746072366936284],[126,-8,68,0.3796023787186095],[126,-8,69,0.3819616253110329],[126,-8,70,0.3845658816723741],[126,-8,71,0.3874364045054161],[126,-8,72,0.39058759657720754],[126,-8,73,0.39402650002928646],[126,-8,74,0.3977524752108815],[126,-8,75,0.401757064474841],[126,-8,76,0.4060240400220825],[126,-8,77,0.41052963453617114],[126,-8,78,0.41524295301982744],[126,-8,79,0.42012656393221637],[126,-7,64,0.36828361134969345],[126,-7,65,0.3698116293724623],[126,-7,66,0.3715085137608601],[126,-7,67,0.3733837148859613],[126,-7,68,0.3754598746952528],[126,-7,69,0.3777687860656608],[126,-7,70,0.3803365582041425],[126,-7,71,0.3831825756593433],[126,-7,72,0.386318955164844],[126,-7,73,0.3897501764281656],[126,-7,74,0.39347288647728773],[126,-7,75,0.39747587683661983],[126,-7,76,0.4017402324717977],[126,-7,77,0.40623965112071425],[126,-7,78,0.41094093132129544],[126,-7,79,0.4158046271569826],[126,-6,64,0.36440024966171647],[126,-6,65,0.3658155420659572],[126,-6,66,0.36741727599932256],[126,-6,67,0.36921333891808833],[126,-6,68,0.37122516236436803],[126,-6,69,0.3734837011473923],[126,-6,70,0.37601355678325366],[126,-6,71,0.3788320763140248],[126,-6,72,0.38194896468919537],[126,-6,73,0.38536605781116373],[126,-6,74,0.3890772556759034],[126,-6,75,0.3930686147241684],[126,-6,76,0.3973185982109482],[126,-6,77,0.4017984831045228],[126,-6,78,0.4064729217456597],[126,-6,79,0.4113006562343099],[126,-5,64,0.36041804207112965],[126,-5,65,0.3617231103721974],[126,-5,66,0.363231384945015],[126,-5,67,0.36494893650560417],[126,-5,68,0.3668957575914439],[126,-5,69,0.3691017685338062],[126,-5,70,0.371589903498884],[126,-5,71,0.374375354233719],[126,-5,72,0.3774653418147214],[126,-5,73,0.3808590344549486],[126,-5,74,0.38454761063124115],[126,-5,75,0.38851446650398264],[126,-5,76,0.39273556632270556],[126,-5,77,0.3971799342430221],[126,-5,78,0.4018102857284778],[126,-5,79,0.40658379647669557],[126,-4,64,0.3563375748915072],[126,-4,65,0.3575340473377674],[126,-4,66,0.35894935866561906],[126,-4,67,0.3605875196883641],[126,-4,68,0.3624668808941497],[126,-4,69,0.3646161651205975],[126,-4,70,0.36705652279461737],[126,-4,71,0.36980092312147783],[126,-4,72,0.37285408649982354],[126,-4,73,0.3762125472818473],[126,-4,74,0.3798648459830343],[126,-4,75,0.3837918497879128],[126,-4,76,0.38796719994959467],[126,-4,77,0.3923578844443655],[126,-4,78,0.39692493402200857],[126,-4,79,0.40162423958943283],[126,-3,64,0.352156965863392],[126,-3,65,0.35324557104248233],[126,-3,66,0.3545672268268444],[126,-3,67,0.3561236585592478],[126,-3,68,0.3579314029068244],[126,-3,69,0.36001786004072095],[126,-3,70,0.36240232647497445],[126,-3,71,0.36509553357923086],[126,-3,72,0.3680997394308509],[126,-3,73,0.3714089344342574],[126,-3,74,0.37500915967085097],[126,-3,75,0.37887893671763445],[126,-3,76,0.38298980745723515],[126,-3,77,0.38730698219878446],[126,-3,78,0.3917900942417523],[126,-3,79,0.39639405884448364],[126,-2,64,0.3478718347767037],[126,-2,65,0.3488523985882614],[126,-2,66,0.3500785575616109],[126,-2,67,0.3515495499577991],[126,-2,68,0.35327996289373964],[126,-2,69,0.3552957899047816],[126,-2,70,0.35761445124833025],[126,-2,71,0.360244477021177],[126,-2,72,0.3631857547595287],[126,-2,73,0.3664298736307564],[126,-2,74,0.36996056405642036],[126,-2,75,0.37375423141566083],[126,-2,76,0.3777805822975078],[126,-2,77,0.38200334160229227],[126,-2,78,0.38638105863950517],[126,-2,79,0.39086800023299734],[126,-1,64,0.34347547567156256],[126,-1,65,0.3443469382450243],[126,-1,66,0.3454746774727359],[126,-1,67,0.3468552723351293],[126,-1,68,0.34850126430318257],[126,-1,69,0.3504371996723753],[126,-1,70,0.35267864819175804],[126,-1,71,0.3552320255636146],[126,-1,72,0.3580949907711771],[126,-1,73,0.3612569225081011],[126,-1,74,0.36469947344399517],[126,-1,75,0.36839720090585315],[126,-1,76,0.3723182724107379],[126,-1,77,0.37642524435249614],[126,-1,78,0.38067591202773865],[126,-1,79,0.3850242290842876],[126,0,64,0.33895923538215117],[126,0,65,0.3397196844005102],[126,0,66,0.3407450892589952],[126,0,67,0.34202923107810185],[126,0,68,0.34358255140090277],[126,0,69,0.34542815289574164],[126,0,70,0.34757982753626426],[126,0,71,0.35004201090479986],[126,0,72,0.35281032107561416],[126,0,73,0.3558721590887714],[126,0,74,0.3592073696627215],[126,0,75,0.3627889606759738],[126,0,76,0.36658387984024027],[126,0,77,0.370553846890982],[126,0,78,0.3746562395391706],[126,0,79,0.377617450400222],[126,1,64,0.3343131011216845],[126,1,65,0.33495981740464276],[126,1,66,0.33587808863885626],[126,1,67,0.337058795724788],[126,1,68,0.338510268354714],[126,1,69,0.34025421285765106],[126,1,70,0.34230276067467674],[126,1,71,0.3446585447188444],[126,1,72,0.3473153697109145],[126,1,73,0.35025892687006194],[126,1,74,0.35346755154061843],[126,1,75,0.35691302225478894],[126,1,76,0.36056139965968576],[126,1,77,0.36437390367634737],[126,1,78,0.3683078272112374],[126,1,79,0.36986503924096226],[126,2,64,0.3295265001137044],[126,2,65,0.33005601051148326],[126,2,66,0.33086158252498654],[126,2,67,0.33193113125893886],[126,2,68,0.333270903674715],[126,2,69,0.334901298756333],[126,2,70,0.33683294534990993],[126,2,71,0.3390668888842415],[126,2,72,0.34159538138191775],[126,2,73,0.34440269915877886],[126,2,74,0.3474659867442413],[126,2,75,0.35075612550987245],[126,2,76,0.3542386254575098],[126,2,77,0.3578745385923805],[126,2,78,0.36162139229334817],[126,2,79,0.36208867143799345],[126,3,64,0.3245893403244684],[126,3,65,0.32499747831994685],[126,3,66,0.32568414542020063],[126,3,67,0.32663426036936893],[126,3,68,0.32785205403079465],[126,3,69,0.3293567449977861],[126,3,70,0.3311576528318011],[126,3,71,0.33325448174121597],[126,3,72,0.3356382170943337],[126,3,73,0.33829203380578116],[126,3,74,0.34119221509778347],[126,3,75,0.3443090801272375],[126,3,76,0.3476079189674677],[126,3,77,0.35104993344093904],[126,3,78,0.35459318231804077],[126,3,79,0.3542943089669751],[126,4,64,0.3194932664776342],[126,4,65,0.3197752345035816],[126,4,66,0.3203362775481564],[126,4,67,0.3211583180080631],[126,4,68,0.3222436688805552],[126,4,69,0.3236105277388372],[126,4,70,0.3252671267838961],[126,4,71,0.3272120986229617],[126,4,72,0.32943546500073584],[126,4,73,0.33191962270553577],[126,4,74,0.33464032513679726],[126,4,75,0.3375676580423884],[126,4,76,0.3406670079640901],[126,4,77,0.34390002196803365],[126,4,78,0.347021180735294],[126,4,79,0.34648200407885366],[126,5,64,0.3142331377879654],[126,5,65,0.3143835659995984],[126,5,66,0.31481187274753925],[126,5,67,0.3154970072092091],[126,5,68,0.31643948583870934],[126,5,69,0.3176566695877193],[126,5,70,0.3191559456768414],[126,5,71,0.32093515940653716],[126,5,72,0.3229836799975565],[126,5,73,0.3252834502640926],[126,5,74,0.3278100186052822],[126,5,75,0.33053355185262506],[126,5,76,0.3334198275700635],[126,5,77,0.3364312044702185],[126,5,78,0.3392426547063384],[126,5,79,0.3386453855747543],[126,6,64,0.3088087368188914],[126,6,65,0.30882173411327646],[126,6,66,0.3091099072140099],[126,6,67,0.3096492674589684],[126,6,68,0.31043866782556023],[126,6,69,0.3114948327284585],[126,6,70,0.3128245576824416],[126,6,71,0.3144251901025039],[126,6,72,0.3162857565915799],[126,6,73,0.31838806228279926],[126,6,74,0.3207077607332984],[126,6,75,0.3232153929453807],[126,6,76,0.32587739417603323],[126,6,77,0.3286570672876952],[126,6,78,0.3314214917634169],[126,6,79,0.33077119368646174],[126,7,64,0.30322927558179097],[126,7,65,0.3030985876793105],[126,7,66,0.3032391150414811],[126,7,67,0.30362398934198337],[126,7,68,0.3042505423982123],[126,7,69,0.30513506507916277],[126,7,70,0.3062840116303521],[126,7,71,0.30769451228702505],[126,7,72,0.3093555463662264],[126,7,73,0.31124907733407453],[126,7,74,0.31335114836675504],[126,7,75,0.3156329370257758],[126,7,76,0.318061767775762],[126,7,77,0.32060208118654104],[126,7,78,0.3232163587816541],[126,7,79,0.32283614850783715],[126,8,64,0.29752057129806675],[126,8,65,0.29724022577839104],[126,8,66,0.29722598434134734],[126,8,67,0.29744828225759745],[126,8,68,0.2979031228120268],[126,8,69,0.29860655123617985],[126,8,70,0.29956490445466394],[126,8,71,0.30077534137428974],[126,8,72,0.3022270478893665],[126,8,73,0.30390239541560726],[126,8,74,0.30577805149992127],[126,8,75,0.30782604117518964],[126,8,76,0.3100147578559323],[126,8,77,0.3123099227024126],[126,8,78,0.31467549151826624],[126,8,79,0.31479966852011093],[126,9,64,0.2917090939500679],[126,9,65,0.2912737246277024],[126,9,66,0.29109828188746767],[126,9,67,0.2911508261388502],[126,9,68,0.2914262758857726],[126,9,69,0.29194059317328713],[126,9,70,0.2927001840233729],[126,9,71,0.2937024361710517],[126,9,72,0.29493694439507206],[126,9,73,0.29638668241453875],[126,9,74,0.2980291199320205],[126,9,75,0.2998372835421141],[126,9,76,0.30178076036716994],[126,9,77,0.3038266434286089],[126,9,78,0.3059404179139151],[126,9,79,0.30661958144493406],[126,10,64,0.28581869461812437],[126,10,65,0.28522369818000215],[126,10,66,0.2848814858760449],[126,10,67,0.2847581770392093],[126,10,68,0.28484788290074403],[126,10,69,0.28516661132945115],[126,10,70,0.2857209800536862],[126,10,71,0.2865087554479235],[126,10,72,0.28752008897820924],[126,10,73,0.28873869454456147],[126,10,74,0.29014296533625744],[126,10,75,0.2917070289682289],[126,10,76,0.29340173982268464],[126,10,77,0.29519560767919373],[126,10,78,0.29705566187963894],[126,10,79,0.2982570540355947],[126,11,64,0.2798728907887088],[126,11,65,0.27911456939624496],[126,11,66,0.27860102475101256],[126,11,67,0.2782969525160444],[126,11,68,0.27819594929406416],[126,11,69,0.2783141560411648],[126,11,70,0.2786584948702939],[126,11,71,0.27922720624503156],[126,11,72,0.2800110897762479],[126,11,73,0.28099468129870825],[126,11,74,0.2821573648793252],[126,11,75,0.283474418572608],[126,11,76,0.2849179929056873],[126,11,77,0.2864580212446386],[126,11,78,0.28806306136643195],[126,11,79,0.2896764592799116],[126,12,64,0.2738974678617907],[126,12,65,0.27297315371219394],[126,12,66,0.27228482166727436],[126,12,67,0.27179631341735083],[126,12,68,0.27150099869520855],[126,12,69,0.27141518829671635],[126,12,70,0.2715461454805027],[126,12,71,0.27189262258803426],[126,12,72,0.2724461019294801],[126,12,73,0.273191969081273],[126,12,74,0.274110617282086],[126,12,75,0.2751784817877496],[126,12,76,0.27636900322184077],[126,12,77,0.27765351913672265],[126,12,78,0.2790020831804055],[126,12,79,0.2803842114449533],[126,13,64,0.2679234029029677],[126,13,65,0.26683156069518527],[126,13,66,0.2659661504888421],[126,13,67,0.2652907478047239],[126,13,68,0.26479875679951514],[126,13,69,0.2645066349871184],[126,13,70,0.26442196174074023],[126,13,71,0.26454397890907044],[126,13,72,0.2648648300585851],[126,13,73,0.2653707286327942],[126,13,74,0.2660430537492182],[126,13,75,0.26685937253787084],[126,13,76,0.26779438810987294],[126,13,77,0.26882081243086586],[126,13,78,0.2699101635617893],[126,13,79,0.27103348691644563],[126,14,64,0.261990118096274],[126,14,65,0.2607304213383837],[126,14,66,0.2596868106953957],[126,14,67,0.25882316423887913],[126,14,68,0.2581331320771614],[126,14,69,0.25763322533822397],[126,14,70,0.2573312468962326],[126,14,71,0.2572268439631216],[126,14,72,0.2573127464728593],[126,14,73,0.25757593080351615],[126,14,74,0.2579987075918863],[126,14,75,0.2585597325878878],[126,14,76,0.259234939689708],[126,14,77,0.25999839549498044],[126,14,78,0.2608230748987208],[126,14,79,0.26168155746235916],[126,15,64,0.25614641749437833],[126,15,65,0.25471963947285403],[126,15,66,0.25349761057296855],[126,15,67,0.2524450281961927],[126,15,68,0.25155593774082674],[126,15,69,0.25084674638548743],[126,15,70,0.2503253334723962],[126,15,71,0.24999162503799197],[126,15,72,0.24983883347655206],[126,15,73,0.249854618467586],[126,15,74,0.2500221679580533],[126,15,75,0.2503211981936091],[126,15,76,0.2507288719968932],[126,15,77,0.2512206346945554],[126,15,78,0.25177096729874715],[126,15,79,0.25235405675012507],[126,16,64,0.2504316368516718],[126,16,65,0.24883906621278232],[126,16,66,0.24743849034072607],[126,16,67,0.24619589276958254],[126,16,68,0.24510583550056042],[126,16,69,0.24418445905210412],[126,16,70,0.2434395881239036],[126,16,71,0.24287133512312062],[126,16,72,0.24247334040544433],[126,16,73,0.24223392929371873],[126,16,74,0.24213718470783951],[126,16,75,0.24216393445438708],[126,16,76,0.2422926524392057],[126,16,77,0.24250027327998624],[126,16,78,0.24276292000924288],[126,16,79,0.24249674286336548],[126,17,64,0.24486145845380242],[126,17,65,0.24310479463886403],[126,17,66,0.24152563731672114],[126,17,67,0.24009167715723814],[126,17,68,0.2387980981184165],[126,17,69,0.23766062393715354],[126,17,70,0.23668692362362836],[126,17,71,0.23587724751564298],[126,17,72,0.2352256642614241],[126,17,73,0.2347212098826578],[126,17,74,0.23434894780361892],[126,17,75,0.23409093895903405],[126,17,76,0.2339271213193166],[126,17,77,0.23383609839605632],[126,17,78,0.233209829503843],[126,17,79,0.2321050568449662],[126,18,64,0.23943016023355074],[126,18,65,0.237511541701534],[126,18,66,0.23575405986909023],[126,18,67,0.23412748693470167],[126,18,68,0.23262771939069274],[126,18,69,0.23126992901406349],[126,18,70,0.23006155412211426],[126,18,71,0.2290029688054248],[126,18,72,0.22808871050439528],[126,18,73,0.22730861494159826],[126,18,74,0.22664885735944293],[126,18,75,0.22609289925133425],[126,18,76,0.22487073555158774],[126,18,77,0.22366345993954662],[126,18,78,0.22250627875003046],[126,18,79,0.22140946331407488],[126,19,64,0.22987395007544648],[126,19,65,0.22849222060751398],[126,19,66,0.2270951255704991],[126,19,67,0.22571516767694974],[126,19,68,0.22435875817219456],[126,19,69,0.22301299232047203],[126,19,70,0.2216708962137394],[126,19,71,0.22033080801998597],[126,19,72,0.2189952475605409],[126,19,73,0.21766988114399363],[126,19,74,0.21636258263003907],[126,19,75,0.2150825914481984],[126,19,76,0.21383976804870916],[126,19,77,0.21264394701786543],[126,19,78,0.21150438785103148],[126,19,79,0.21042932314334672],[126,20,64,0.2192658442603386],[126,20,65,0.21774217413318125],[126,20,66,0.2162201370521112],[126,20,67,0.21472970876267955],[126,20,68,0.21327664222714693],[126,20,69,0.21184903035891892],[126,20,70,0.2104404767800514],[126,20,71,0.2090494466247184],[126,20,72,0.20767815953698587],[126,20,73,0.20633158226855974],[126,20,74,0.20501652176147891],[126,20,75,0.20374081934197574],[126,20,76,0.20251264639460081],[126,20,77,0.20133990163227541],[126,20,78,0.20022970983163205],[126,20,79,0.19918802166380528],[126,21,64,0.2083522543936918],[126,21,65,0.20668388260427908],[126,21,66,0.2050355829887238],[126,21,67,0.20343457825599337],[126,21,68,0.20188590966700595],[126,21,69,0.20037874154521887],[126,21,70,0.19890726676179338],[126,21,71,0.19747003194355436],[126,21,72,0.19606886288932923],[126,21,73,0.19470789351167253],[126,21,74,0.19339269908912757],[126,21,75,0.19212953434629645],[126,21,76,0.19092467661372964],[126,21,77,0.189783874059142],[126,21,78,0.18871189872929642],[126,21,79,0.18771220389812243],[126,22,64,0.19719560142324044],[126,22,65,0.1953792726523532],[126,22,66,0.19360260341779184],[126,22,67,0.19188989461431968],[126,22,68,0.19024543613966216],[126,22,69,0.18865951421599236],[126,22,70,0.18712690615654],[126,22,71,0.18564618586648693],[126,22,72,0.18421869057631313],[126,22,73,0.18284759449568036],[126,22,74,0.18153709006315927],[126,22,75,0.1802916771916784],[126,22,76,0.17911556063773978],[126,22,77,0.17801215535648135],[126,22,78,0.17698369944823217],[126,22,79,0.1760309740554671],[126,23,64,0.18586410985545165],[126,23,65,0.1838961306451918],[126,23,66,0.18198819424710944],[126,23,67,0.18016157104539643],[126,23,68,0.17841977370236908],[126,23,69,0.17675423594258924],[126,23,70,0.17516029928972435],[126,23,71,0.17363650547551915],[126,23,72,0.17218361288583786],[126,23,73,0.17080372269847602],[126,23,74,0.16949951527019286],[126,23,75,0.16827359704920272],[126,23,76,0.16712795801275482],[126,23,77,0.16606353935977472],[126,23,78,0.16507991092961063],[126,23,79,0.16417505756994394],[126,24,64,0.1744290563256327],[126,24,65,0.17230536496228493],[126,24,66,0.17026250201507573],[126,24,67,0.168318661035669],[126,24,68,0.16647656541869107],[126,24,69,0.1647287959229582],[126,24,70,0.16307122350889344],[126,24,71,0.16150229573047267],[126,24,72,0.16002211045599943],[126,24,73,0.15863160135327464],[126,24,74,0.15733183557309394],[126,24,75,0.15612342377997887],[126,24,76,0.15500604239958682],[126,24,77,0.15397806768080044],[126,24,78,0.15303632091093053],[126,24,79,0.15217592387504045],[126,25,64,0.1629621165462998],[126,25,65,0.16067836361506554],[126,25,66,0.15849620995888156],[126,25,67,0.15643078984044462],[126,25,68,0.15448403919058712],[126,25,69,0.15264965860833746],[126,25,70,0.15092399997521266],[126,25,71,0.14930535413582807],[126,25,72,0.14779308835892166],[126,25,73,0.14638689688130538],[126,25,74,0.1450861648421471],[126,25,75,0.1438894456281868],[126,25,76,0.14279405137020895],[126,25,77,0.14179575605983508],[126,25,78,0.1408886104973858],[126,25,79,0.14006486803652543],[126,26,64,0.15153281171706295],[126,26,65,0.14908444814100208],[126,26,66,0.14675801615039563],[126,26,67,0.1445656725052058],[126,26,68,0.14250858118357798],[126,26,69,0.1405815086949885],[126,26,70,0.13878122644365382],[126,26,71,0.13710580703559627],[126,26,72,0.13555383064964435],[126,26,73,0.13412370501988186],[126,26,74,0.13281309921014128],[126,26,75,0.13161849107471058],[126,26,76,0.1305348280203631],[126,26,77,0.12955530041572688],[126,26,78,0.12867122673885287],[126,26,79,0.12787204931296195],[126,27,64,0.1402060556503831],[126,27,65,0.13758842487472586],[126,27,66,0.13511220463491896],[126,27,67,0.13278671916181725],[126,27,68,0.13061238937361097],[126,27,69,0.12858496777541314],[126,27,70,0.12670157207825167],[126,27,71,0.12495999732601565],[126,27,72,0.12335799491020749],[126,27,73,0.12189266491859774],[126,27,74,0.1205599618741058],[126,27,75,0.1193543136362633],[126,27,76,0.11826835296184814],[126,27,77,0.1172927609562768],[126,27,78,0.11641622139717385],[126,27,79,0.11562548467652146],[126,28,64,0.12903980408004662],[126,28,65,0.12624823491519865],[126,28,66,0.12361631072506843],[126,28,67,0.12115072855918295],[126,28,68,0.11885120795585141],[126,28,69,0.11671438314787039],[126,28,70,0.11473763454279044],[126,28,71,0.11291842355632471],[126,28,72,0.11125364648288233],[126,28,73,0.10973910062063781],[126,28,74,0.10836906258840379],[126,28,75,0.10713597849215016],[126,28,76,0.10603026532847813],[126,28,77,0.10504022275332504],[126,28,78,0.1041520541007035],[126,28,79,0.10334999530870397],[126,29,64,0.11808280786491672],[126,29,65,0.11511270435730478],[126,29,66,0.11231888185284578],[126,29,67,0.10970567103731466],[126,29,68,0.1072721436005682],[126,29,69,0.10501568952016556],[126,29,70,0.10293385983329391],[126,29,71,0.10102373059932349],[126,29,72,0.09928133228014528],[126,29,73,0.09770118951883143],[126,29,74,0.09627597114257666],[126,29,75,0.09499624994295122],[126,29,76,0.09385037152304465],[126,29,77,0.09282443124971856],[126,29,78,0.09190235811399394],[126,29,79,0.09106610408386452],[126,30,64,0.10737248956903216],[126,30,65,0.10421941492723938],[126,30,66,0.10125735475005097],[126,30,67,0.0984885823092298],[126,30,68,0.09591158547598921],[126,30,69,0.09352436604745712],[126,30,70,0.09132454778027549],[126,30,71,0.08930877528065059],[126,30,72,0.0874722179987716],[126,30,73,0.08580818203470775],[126,30,74,0.08430782948044824],[126,30,75,0.08296000475810018],[126,30,76,0.08175116715956367],[126,30,77,0.08066542855084842],[126,30,78,0.07968469497864825],[126,30,79,0.07878891070810484],[126,31,64,0.09693758005406357],[126,31,65,0.09359753999943293],[126,31,66,0.09046110122267875],[126,31,67,0.08752882629023837],[126,31,68,0.08479869168670502],[126,31,69,0.08226915395407813],[126,31,70,0.0799378090257357],[126,31,71,0.07780083104550203],[126,31,72,0.07585254857864246],[126,31,73,0.07408512538490747],[126,31,74,0.07248834538892329],[126,31,75,0.07104950122843649],[126,31,76,0.0697533855164244],[126,31,77,0.06858238372142608],[126,31,78,0.06751666735569238],[126,31,79,0.06653448596307283],[126,32,64,0.08680294626271479],[126,32,65,0.08327294296846528],[126,32,66,0.0799568058745212],[126,32,67,0.0768537574490217],[126,32,68,0.07396134061469985],[126,32,69,0.07127830229269325],[126,32,70,0.0688021113071964],[126,32,71,0.06652844114445725],[126,32,72,0.06445081456357409],[126,32,73,0.06256034894781376],[126,32,74,0.06084560195584394],[126,32,75,0.05929251678862934],[126,32,76,0.057884466154620916],[126,32,77,0.05660239379573478],[126,32,78,0.05542505223350755],[126,32,79,0.05432933520883403],[126,33,64,0.07697900876839334],[126,33,65,0.07325715867622405],[126,33,66,0.06975702244368917],[126,33,67,0.06647686007751255],[126,33,68,0.06341386099280702],[126,33,69,0.06056689872815003],[126,33,70,0.057933222533228274],[126,33,71,0.0555079868621858],[126,33,72,0.05328395925848883],[126,33,73,0.05125132470035886],[126,33,74,0.04939758590477777],[126,33,75,0.04770755885656341],[126,33,76,0.046163462608094785],[126,33,77,0.04474510218737238],[126,33,78,0.043430143261181525],[126,33,79,0.04219447702622744],[126,34,64,0.06745856971980015],[126,34,65,0.06354412954527051],[126,34,66,0.059856826270220195],[126,34,67,0.05639432143484423],[126,34,68,0.053153529416376494],[126,34,69,0.05013329687837662],[126,34,70,0.047330574864481015],[126,34,71,0.0447399963368195],[126,34,72,0.042353641033366835],[126,34,73,0.04016089218509607],[126,34,74,0.0381483845446532],[126,34,75,0.03630004295948276],[126,34,76,0.03459721051409766],[126,34,77,0.03301886507086175],[126,34,78,0.03154192286012939],[126,34,79,0.03014162760881553],[126,35,64,0.058215271245410594],[126,35,65,0.05410863762620735],[126,35,66,0.05023222653620129],[126,35,67,0.04658342645536731],[126,35,68,0.043158948974787274],[126,35,69,0.039957482158997276],[126,35,70,0.03697562261288484],[126,35,71,0.034207500573660836],[126,35,72,0.031644594413509],[126,35,73,0.02927563224286641],[126,35,74,0.027086580034922546],[126,35,75,0.025060715486010805],[126,35,76,0.02317878663104881],[126,35,77,0.021419254050358452],[126,35,78,0.019758615337879985],[126,35,79,0.01817181035081751],[126,36,64,0.0492021793868478],[126,36,65,0.04490485768289016],[126,36,66,0.04083869375725648],[126,36,67,0.037001060228797136],[126,36,68,0.03338852639444874],[126,36,69,0.029999525246187486],[126,36,70,0.026830275420929164],[126,36,71,0.023874451172144866],[126,36,72,0.021123038326454784],[126,36,73,0.018564272611361406],[126,36,74,0.016183659758271296],[126,36,75,0.013964076591556207],[126,36,76,0.011885952131184568],[126,36,77,0.009927527565593867],[126,36,78,0.008065193796741331],[126,36,79,0.0062739051203883475],[126,37,64,0.04035049776824194],[126,37,65,0.035865035425287364],[126,37,66,0.03160980649632718],[126,37,67,0.027582322032842402],[126,37,68,0.02377905122800916],[126,37,69,0.020198126394012028],[126,37,70,0.016835409609540643],[126,37,71,0.01368420226236451],[126,37,72,0.01073513357089501],[126,37,73,0.007976126991803537],[126,37,74,0.005392443915089031],[126,37,75,0.0029668038662157515],[126,37,76,6.795802630398381E-4],[126,37,77,-0.0014909293846663654],[126,37,78,-0.0035681600895349423],[126,37,79,-0.00557686420014172],[126,38,64,0.03157089743968362],[126,38,65,0.026900763361493864],[126,38,66,0.022458465035648793],[126,38,67,0.01824167014280106],[126,38,68,0.014246765755496814],[126,38,69,0.01047160435478023],[126,38,70,0.006911770225743184],[126,38,71,0.0035603201722209273],[126,38,72,4.076951589165826E-4],[126,38,73,-0.0025582941605398384],[126,38,74,-0.005352408618701107],[126,38,75,-0.007991849173359331],[126,38,76,-0.010496053933453152],[126,38,77,-0.01288642464528156],[126,38,78,-0.015185983847825366],[126,38,79,-0.017418964026601723],[126,39,64,0.022808418379830008],[126,39,65,0.017957574187891973],[126,39,66,0.013330944345448065],[126,39,67,0.008926348195145565],[126,39,68,0.0047401133734549655],[126,39,69,7.698648190027062E-4],[126,39,70,-0.0029889850252418568],[126,39,71,-0.006543474525508773],[126,39,72,-0.009903168404132637],[126,39,73,-0.013080162697317224],[126,39,74,-0.016089019691465284],[126,39,75,-0.018946633569458565],[126,39,76,-0.02167202765272299],[126,39,77,-0.02428608426820717],[126,39,78,-0.02681120839794671],[126,39,79,-0.029270926383239852],[126,40,64,0.014055085518275473],[126,40,65,0.009027645428860701],[126,40,66,0.004219662807943626],[126,40,67,-3.7079865360943945E-4],[126,40,68,-0.004747418750045097],[126,40,69,-0.008912765109404438],[126,40,70,-0.012871506649936512],[126,40,71,-0.01663064115088124],[126,40,72,-0.020199569274962515],[126,40,73,-0.023590100444941215],[126,40,74,-0.02681639110782079],[126,40,75,-0.02989481607848004],[126,40,76,-0.032843773803815764],[126,40,77,-0.035683426526992836],[126,40,78,-0.03843537645560204],[126,40,79,-0.03931637473347138],[126,41,64,0.0053055281749944784],[126,41,65,1.0571566343087722E-4],[126,41,66,-0.004880404603272653],[126,41,67,-0.009654352798251883],[126,41,68,-0.014219746654765105],[126,41,69,-0.018579335160857267],[126,41,70,-0.022737800866646046],[126,41,71,-0.026701986639643606],[126,41,72,-0.030480979993065885],[126,41,73,-0.03408613075906351],[126,41,74,-0.03753100259294456],[126,41,75,-0.040831258949967385],[126,41,76,-0.04400448432321366],[126,41,77,-0.04289037895435274],[126,41,78,-0.03752964158537411],[126,41,79,-0.032215245950659416],[126,42,64,-0.003442960501749595],[126,42,65,-0.008810892338190341],[126,42,66,-0.013971746376673519],[126,42,67,-0.018926399341187207],[126,42,68,-0.02367833226532157],[126,42,69,-0.02823049175993902],[126,42,70,-0.032587533604297045],[126,42,71,-0.03675605806755448],[126,42,72,-0.04074471649585287],[126,42,73,-0.04456425173555907],[126,42,74,-0.04822747281734214],[126,42,75,-0.04626995710120911],[126,42,76,-0.04101836913908168],[126,42,77,-0.035761435727418044],[126,42,78,-0.03052516191774672],[126,42,79,-0.02533631132839335],[126,43,64,-0.012187913950895869],[126,43,65,-0.017719816133288983],[126,43,66,-0.02305193142094939],[126,43,67,-0.02818423290849624],[126,43,68,-0.033119996635259955],[126,43,69,-0.03786241363620586],[126,43,70,-0.04241610340506243],[126,43,71,-0.04678736640269851],[126,43,72,-0.05098432460369502],[126,43,73,-0.04926548409916207],[126,43,74,-0.044216141002063135],[126,43,75,-0.039117070917181695],[126,43,76,-0.03399091879868122],[126,43,77,-0.028861646414839487],[126,43,78,-0.023754284519758136],[126,43,79,-0.018694622643452775],[126,44,64,-0.020918880648061758],[126,44,65,-0.02661090021526374],[126,44,66,-0.03211093406612215],[126,44,67,-0.037417780709863666],[126,44,68,-0.042534460150361664],[126,44,69,-0.04746448778067654],[126,44,70,-0.05221247077607111],[126,44,71,-0.05172365145151432],[126,44,72,-0.046949743518182825],[126,44,73,-0.042090992012007715],[126,44,74,-0.03716612215051209],[126,44,75,-0.03219535346040956],[126,44,76,-0.027200317663441432],[126,44,77,-0.02220391050683984],[126,44,78,-0.017230078401664357],[126,44,79,-0.012303540854002296],[126,45,64,-0.029614303734501177],[126,45,65,-0.035463137830218074],[126,45,66,-0.0411281602488349],[126,45,67,-0.04660673506781364],[126,45,68,-0.05190160307094998],[126,45,69,-0.053529494031943625],[126,45,70,-0.04908335901289423],[126,45,71,-0.04452618249301693],[126,45,72,-0.03987326236189247],[126,45,73,-0.03514111674598354],[126,45,74,-0.030347585829978766],[126,45,75,-0.02551186391312168],[126,45,76,-0.0206544621943237],[126,45,77,-0.015797102935564192],[126,45,78,-0.010962545797172948],[126,45,79,-0.006174347269461398],[126,46,64,-0.038238085162906756],[126,46,65,-0.04424130130217799],[126,46,66,-0.050069168195071415],[126,46,67,-0.0545917400978189],[126,46,68,-0.05051102469820464],[126,46,69,-0.04629849172554161],[126,46,70,-0.04196784515050382],[126,46,71,-0.037533199082755785],[126,46,72,-0.0330093835511896],[126,46,73,-0.02841217719175786],[126,46,74,-0.023758466876634923],[126,46,75,-0.019066334503434753],[126,46,76,-0.014355071339804449],[126,46,77,-0.009645120485340195],[126,46,78,-0.004957948167900288],[126,46,79,-3.15844733357034E-4],[126,47,64,-0.046754011057943426],[126,47,65,-0.052910036117329036],[126,47,66,-0.051146095804299865],[126,47,67,-0.04731424400619578],[126,47,68,-0.043343178481009915],[126,47,69,-0.039247410392687386],[126,47,70,-0.03504102440925418],[126,47,71,-0.03073806462605581],[126,47,72,-0.026352912181699148],[126,47,73,-0.021900586480247473],[126,47,74,-0.017396969918460466],[126,47,75,-0.012858956214018825],[126,47,76,-0.008304522619593907],[126,47,77,-0.003752726486756076],[126,47,78,7.76373188544139E-4],[126,47,79,0.005261868452563738],[126,48,64,-0.05096736488273136],[126,48,65,-0.04753727609017001],[126,48,66,-0.04396107934592236],[126,48,67,-0.040240185362297974],[126,48,68,-0.0363861407005702],[126,48,69,-0.032414519223450844],[126,48,70,-0.028339925055856977],[126,48,71,-0.024176422047823165],[126,48,72,-0.01993799014292846],[126,48,73,-0.015638901668200075],[126,48,74,-0.011294017295742854],[126,48,75,-0.006919001636945422],[126,48,76,-0.0025304586327256073],[126,48,77,0.0018540129037550295],[126,48,78,0.0062158430537915445],[126,48,79,0.010535593162525586],[126,49,64,-0.04381184060067678],[126,49,65,-0.04048575953355729],[126,49,66,-0.03702132272595006],[126,49,67,-0.03341783806465209],[126,49,68,-0.029686858348652673],[126,49,69,-0.025845213438496745],[126,49,70,-0.021908176776460227],[126,49,71,-0.017889940742837025],[126,49,72,-0.013804157338001891],[126,49,73,-0.009664394764282488],[126,49,74,-0.005484509497643416],[126,49,75,-0.0012789336643934442],[126,49,76,0.0029371222444280892],[126,49,77,0.007147551080385098],[126,49,78,0.011335314729333005],[126,49,79,0.015482493166406082],[126,50,64,-0.03693064234571788],[126,50,65,-0.033715240158395214],[126,50,66,-0.030368671427581508],[126,50,67,-0.026888026343031224],[126,50,68,-0.02328495023115313],[126,50,69,-0.019577719537860073],[126,50,70,-0.01578243298851869],[126,50,71,-0.011913534293222483],[126,50,72,-0.007984441336878966],[126,50,73,-0.004008086966823299],[126,50,74,2.6292020595831272E-6],[126,50,75,0.004034478303963668],[126,50,76,0.00807362916660449],[126,50,77,0.014443664020128399],[126,50,78,0.020937103546795732],[126,50,79,0.02738280490521531],[126,51,64,-0.030359818868905156],[126,51,65,-0.02726116643917449],[126,51,66,-0.02403778628697382],[126,51,67,-0.020684470618595047],[126,51,68,-0.017213052390929708],[126,51,69,-0.013643437423304577],[126,51,70,-0.009992706698247646],[126,51,71,-0.006275687040436401],[126,51,72,-0.0025056716383787293],[126,51,73,0.0013049523551894714],[126,51,74,0.006646286419313075],[126,51,75,0.013216326588470113],[126,51,76,0.0197777919368362],[126,51,77,0.02631839575669046],[126,51,78,0.03282514397224136],[126,51,79,0.03928428095655022],[126,52,64,-0.024128524819630442],[126,52,65,-0.02115210001385222],[126,52,66,-0.018056484865561485],[126,52,67,-0.014834131245715336],[126,52,68,-0.01149716155266407],[126,52,69,-0.008067280869496731],[126,52,70,-0.004562705332951706],[126,52,71,-9.98780641057937E-4],[126,52,72,0.00501588444190299],[126,52,73,0.01159682335169958],[126,52,74,0.018186710486980638],[126,52,75,0.024774945915893826],[126,52,76,0.031350805990762426],[126,52,77,0.03790313399557353],[126,52,78,0.04442013094671299],[126,52,79,0.050889246210800744],[126,53,64,-0.018259350846948554],[126,53,65,-0.015410050600944282],[126,53,66,-0.012446080847034907],[126,53,67,-0.0093575503855825],[126,53,68,-0.006156976848197241],[126,53,69,-0.0028680166142833995],[126,53,70,0.0030363252340236385],[126,53,71,0.009606060485498436],[126,53,72,0.016201127384564015],[126,53,73,0.022809935312185198],[126,53,74,0.02942203843122819],[126,53,75,0.03602754951532347],[126,53,76,0.042616659126942444],[126,53,77,0.049179260425228716],[126,53,78,0.055704679619784],[126,53,79,0.062181511836194525],[126,54,64,-0.012768651164582593],[126,54,65,-0.010050808900214972],[126,54,66,-0.0072217216625348486],[126,54,67,-0.004269192222784572],[126,54,68,7.223590021905053E-4],[126,54,69,0.0072482918299680565],[126,54,70,0.013824584227179635],[126,54,71,0.0204341909610254],[126,54,72,0.027063217187329354],[126,54,73,0.03370003825912753],[126,54,74,0.0403345284032389],[126,54,75,0.046957399275232944],[126,54,76,0.05355964910262877],[126,54,77,0.06013212283509892],[126,54,78,0.0666651834390088],[126,54,79,0.07314849420620805],[126,55,64,-0.007666868711674636],[126,55,65,-0.00508427762885106],[126,55,66,-0.0018358299952664602],[126,55,67,0.0045719550459367864],[126,55,68,0.011077505351547199],[126,55,69,0.01765244130229094],[126,55,70,0.024273867366357477],[126,55,71,0.03092362918344723],[126,55,72,0.03758723828050083],[126,55,73,0.044252908979055205],[126,55,74,0.0509107090019228],[126,55,75,0.057551824961922876],[126,55,76,0.06416794359813958],[126,55,77,0.07075074931737135],[126,55,78,0.07729153830025369],[126,55,79,0.08378094914748832],[126,56,64,-0.0029588580025685218],[126,56,65,0.0017271985064835037],[126,56,66,0.00807029760519486],[126,56,67,0.014527072296137786],[126,56,68,0.021082599985151787],[126,56,69,0.027706069224552606],[126,56,70,0.03437278017476658],[126,56,71,0.04106336265779944],[126,56,72,0.04776261697225051],[126,56,73,0.05445847138872007],[126,56,74,0.061141058019721105],[126,56,75,0.06780190841729794],[126,56,76,0.07443326991820919],[126,56,77,0.0810275434325669],[126,56,78,0.08757684305751416],[126,56,79,0.09407267759746506],[126,57,64,0.004945029556712678],[126,57,65,0.011234149516964208],[126,57,66,0.01762179061116996],[126,57,67,0.02412579260552332],[126,57,68,0.03073028127379735],[126,57,69,0.037401971772649034],[126,57,70,0.04411429316319036],[126,57,71,0.05084657052698738],[126,57,72,0.05758278662788304],[126,57,73,0.0643104645188658],[126,57,74,0.07101967297006766],[126,57,75,0.07770215623793462],[126,57,76,0.08435058934699965],[126,57,77,0.09095795971640744],[126,57,78,0.09751707563373498],[126,57,79,0.10402020176344182],[126,58,64,0.013951328894354968],[126,58,65,0.020385674973804283],[126,58,66,0.026815448067944204],[126,58,67,0.033365027015799784],[126,58,68,0.04001750789585537],[126,58,69,0.046737126202981975],[126,58,70,0.05349540091354527],[126,58,71,0.060270284152032436],[126,58,72,0.06704484943577403],[126,58,73,0.07380610484042971],[126,58,74,0.08054393313791432],[126,58,75,0.0872501605882966],[126,58,76,0.0939177557043668],[126,58,77,0.10054015895401863],[126,58,78,0.10711074402175225],[126,58,79,0.11362241092128003],[126,59,64,0.022160277978704335],[126,59,65,0.02918266038853519],[126,59,66,0.03565226712440049],[126,59,67,0.042245784472441664],[126,59,68,0.04894521645647867],[126,59,69,0.05571234873798299],[126,59,70,0.06251678059253085],[126,59,71,0.06933504592524715],[126,59,72,0.07614923467985225],[126,59,73,0.0829457427977942],[126,59,74,0.08971415294656039],[126,59,75,0.09644624785324546],[126,59,76,0.10313515770362534],[126,59,77,0.10977464270039686],[126,59,78,0.11635851151742131],[126,59,79,0.12288017604459103],[126,60,64,0.030257531635021644],[126,60,65,0.03762993609876945],[126,60,66,0.0441371055466115],[126,60,67,0.05077283084881867],[126,60,68,0.05751797934716668],[126,60,69,0.06433195229699915],[126,60,70,0.07118244955344707],[126,60,71,0.07804456594635366],[126,60,72,0.08489935310736654],[126,60,73,0.09173251308168613],[126,60,74,0.09853322610124081],[126,60,75,0.10529311450153496],[126,60,76,0.11200534437700135],[126,60,77,0.11866386619145494],[126,60,78,0.12526279519182135],[126,60,79,0.13179593211959342],[126,61,64,0.038213110862761114],[126,61,65,0.04573593678138036],[126,61,66,0.052278334401320445],[126,61,67,0.058954337956535735],[126,61,68,0.06574365236047403],[126,61,69,0.07260339352433315],[126,61,70,0.07949941140744979],[126,61,71,0.0864053658621931],[126,61,72,0.09330123659976275],[126,61,73,0.10017196774294213],[126,61,74,0.10700624948920064],[126,61,75,0.11379543900303295],[126,61,76,0.12053262225892046],[126,61,77,0.1272118181679373],[126,61,78,0.13382732594250069],[126,61,79,0.14037321629003469],[126,62,64,0.045994414447754386],[126,62,65,0.0535123726895441],[126,62,66,0.06008750224275082],[126,62,67,0.06680154399575626],[126,62,68,0.07363303363030838],[126,62,69,0.08053693079454197],[126,62,70,0.08747731234403466],[126,62,71,0.09442643173699196],[126,62,72,0.1013631850862285],[126,62,73,0.10827171414305346],[126,62,74,0.11514014887112163],[126,62,75,0.12195949185540127],[126,62,76,0.12872264638540928],[126,62,77,0.1354235896549565],[126,62,78,0.14205669213359648],[126,62,79,0.14861618379277924],[126,63,64,0.0535665871393324],[126,63,65,0.060973917227967356],[126,63,66,0.0675790154454257],[126,63,67,0.07432843011819949],[126,63,68,0.08119953859799925],[126,63,69,0.08814529791708274],[126,63,70,0.0951281124364446],[126,63,71,0.10211888069184015],[126,63,72,0.10909542542889139],[126,63,73,0.11604106244665842],[126,63,74,0.12294331103000025],[126,63,75,0.1297927483313476],[126,63,76,0.13658200964961534],[126,63,77,0.14330493615014026],[126,63,78,0.1499558711755386],[126,63,79,0.15652910591829491],[126,64,64,0.06089287200238742],[126,64,65,0.0681378834253296],[126,64,66,0.07476980708822428],[126,64,67,0.08155138535753995],[126,64,68,0.08845886310783911],[126,64,69,0.09544336548975887],[126,64,70,0.10246574372158304],[126,64,71,0.10949561293537191],[126,64,72,0.11650975372462505],[126,64,73,0.12349065391307079],[126,64,74,0.13042519343489936],[126,64,75,0.13730347479184],[126,64,76,0.14411780113428],[126,64,77,0.1508618036044002],[126,64,78,0.15752971917992734],[126,64,79,0.16411581987264115],[126,65,64,0.06793495875336245],[126,65,65,0.07502390174836185],[126,65,66,0.08167900690829703],[126,65,67,0.08848887252001106],[126,65,68,0.09542864729536203],[126,65,69,0.1024478026284704],[126,65,70,0.1095057678376817],[126,65,71,0.11657096201414173],[126,65,72,0.12361917388497601],[126,65,73,0.13063208286777822],[126,65,74,0.1375959243052889],[126,65,75,0.14450030144048706],[126,65,76,0.15133714627029132],[126,65,77,0.15809983100292932],[126,65,78,0.16478243144071186],[126,65,79,0.17137914322152942],[126,66,64,0.07465332858379042],[126,66,65,0.08165360041105406],[126,66,66,0.08832761349021065],[126,66,67,0.09516109621277022],[126,66,68,0.10212814145505038],[126,66,69,0.10917674026390908],[126,66,70,0.11626503440716666],[126,66,71,0.12336034445802947],[126,66,72,0.1304375336469919],[126,66,73,0.13747751347244175],[126,66,74,0.14446589414763167],[126,66,75,0.15139178253061836],[126,66,76,0.1582467297592167],[126,66,77,0.16502383039725985],[126,66,78,0.17171697449246015],[126,66,79,0.1783202535550086],[126,67,64,0.08100759511314058],[126,67,65,0.0880502885419498],[126,67,66,0.0947381690621711],[126,67,67,0.1015896733906162],[126,67,68,0.10857787427363243],[126,67,69,0.11564943639199161],[126,67,70,0.12276134054554821],[126,67,71,0.12987990918740466],[126,67,72,0.1369791583581238],[126,67,73,0.14403929160241905],[126,67,74,0.151045339027616],[126,67,75,0.15798594423080004],[126,67,76,0.16485230139555007],[126,67,77,0.17163724444182898],[126,67,78,0.17833448970493437],[126,67,79,0.18493803322650124],[126,68,64,0.08695684107779626],[126,68,65,0.09423864260999033],[126,68,66,0.10093443731039553],[126,68,67,0.1077973068420487],[126,68,68,0.11479932385654211],[126,68,69,0.1218859437074763],[126,68,70,0.12901309192161914],[126,68,71,0.13614618709587906],[126,68,72,0.1432584829291219],[126,68,73,0.15032955219639343],[126,68,74,0.15734391590306512],[126,68,75,0.16428982042348483],[126,68,76,0.17115816500198153],[126,68,77,0.1779415815758747],[126,68,78,0.18463366847148965],[126,68,79,0.19122837913013502],[126,69,64,0.09245995651116944],[126,69,65,0.10024439046184588],[126,69,66,0.10694107868803408],[126,69,67,0.11380745621911861],[126,69,68,0.12081458629305934],[126,69,69,0.12790677453925392],[126,69,70,0.1350389605053227],[126,69,71,0.1421757362153439],[126,69,72,0.14928967768733742],[126,69,73,0.156359818190606],[126,69,74,0.1633702665602693],[126,69,75,0.17030897345319568],[126,69,76,0.17716664800241474],[126,69,77,0.18393582690832005],[126,69,78,0.19061009759557385],[126,69,79,0.1971834766696706],[126,70,64,0.09749236852333941],[126,70,65,0.10555059610180788],[126,70,66,0.11276751814215616],[126,70,67,0.11962852658474785],[126,70,68,0.12663093130525105],[126,70,69,0.13371792020743875],[126,70,70,0.14084349947885955],[126,70,71,0.14797150526491407],[126,70,72,0.15507392276727128],[126,70,73,0.1621293467547619],[126,70,74,0.16912158688796455],[126,70,75,0.17603842082554833],[126,70,76,0.18287049765308244],[126,70,77,0.18961039375577043],[126,70,78,0.19625182284649492],[126,70,79,0.20278900146468296],[126,71,64,0.10208027444039118],[126,71,65,0.11012854942154078],[126,71,66,0.118024663772547],[126,71,67,0.12522185671218175],[126,71,68,0.13220966668015585],[126,71,69,0.1392808053019295],[126,71,70,0.14638848204366967],[126,71,71,0.1534959016023561],[126,71,72,0.16057457278358853],[126,71,73,0.16760275813901068],[126,71,74,0.1745640678438335],[126,71,75,0.18144620086269359],[126,71,76,0.1882398360253617],[126,71,77,0.19493767521493247],[126,71,78,0.20153364046117553],[126,71,79,0.20802222633567635],[126,72,64,0.10625690297877026],[126,72,65,0.11429042772605234],[126,72,66,0.12217115827703523],[126,72,67,0.1298665129547872],[126,72,68,0.13739662831617452],[126,72,69,0.14455220784944947],[126,72,70,0.15163141498734245],[126,72,71,0.15870749988072994],[126,72,72,0.1657516366980353],[126,72,73,0.17274186486193274],[126,72,74,0.17966167703094035],[126,72,75,0.1864987533212302],[126,72,76,0.19324384446000353],[126,72,77,0.19988980614487023],[126,72,78,0.20643078647540733],[126,72,79,0.21286156792837013],[126,73,64,0.1100530720783807],[126,73,65,0.11806705009003482],[126,73,66,0.1259281759697924],[126,73,67,0.13360505466142655],[126,73,68,0.14111853234371333],[126,73,69,0.1485150806400548],[126,73,70,0.15582951930014022],[126,73,71,0.163086076366059],[126,73,72,0.17030013413944647],[126,73,73,0.17747983632032832],[126,73,74,0.18438206529731765],[126,73,75,0.19116602181072978],[126,73,76,0.19785498978120847],[126,73,77,0.20444195689498204],[126,73,78,0.21092125922272026],[126,73,79,0.217287917821122],[126,74,64,0.11349845276376336],[126,74,65,0.12148807092764251],[126,74,66,0.12932527168890723],[126,74,67,0.13698011170984423],[126,74,68,0.14447395686974324],[126,74,69,0.15185309723575496],[126,74,70,0.15915220555432746],[126,74,71,0.16639539380740626],[126,74,72,0.17359794094929298],[126,74,73,0.1807678844169314],[126,74,74,0.1879074718134333],[126,74,75,0.19501446958053067],[126,74,76,0.20204827319305405],[126,74,77,0.20857165313317427],[126,74,78,0.21498521018934333],[126,74,79,0.22128410309000232],[126,75,64,0.1166228670885734],[126,75,65,0.12458326967992266],[126,75,66,0.13239207594787478],[126,75,67,0.14002107008367806],[126,75,68,0.14749191426644156],[126,75,69,0.15485021797747606],[126,75,70,0.16213012753134542],[126,75,71,0.16935537192422048],[126,75,72,0.17654095717245186],[126,75,73,0.18369472787103477],[126,75,74,0.190818792393185],[126,75,75,0.1979108085577969],[126,75,76,0.2049651269944056],[126,75,77,0.21197378983252402],[126,75,78,0.2186043179291871],[126,75,79,0.22483433334538377],[126,76,64,0.11945761928800534],[126,76,65,0.12738387402254764],[126,76,66,0.13515960538186403],[126,76,67,0.14275859929143456],[126,76,68,0.15020256626199463],[126,76,69,0.1575359014038346],[126,76,70,0.16479182391589037],[126,76,71,0.17199340418046558],[126,76,72,0.17915520805910753],[126,76,73,0.18628481271998104],[126,76,74,0.19338419047825717],[126,76,75,0.20045095752323047],[126,76,76,0.20747948479555017],[126,76,77,0.2144618686623343],[126,76,78,0.2213887594128469],[126,76,79,0.2279236346495031],[126,77,64,0.12203685910190179],[126,77,65,0.1299239155724122],[126,77,66,0.13766160593611154],[126,77,67,0.14522597816850677],[126,77,68,0.1526385265022894],[126,77,69,0.15994188243422955],[126,77,70,0.16716793133421481],[126,77,71,0.17433881202380533],[126,77,72,0.18146849345025545],[126,77,73,0.18856422805283468],[126,77,74,0.19562787840519344],[126,77,75,0.2026571140932659],[126,77,76,0.2096464761615992],[126,77,77,0.21658830682935246],[126,77,78,0.22347354253649282],[126,77,79,0.23029236872983525],[126,78,64,0.12439897607054597],[126,78,65,0.13224161690755454],[126,78,66,0.13993592762988083],[126,78,67,0.14746045246416267],[126,78,68,0.15483619499709167],[126,78,69,0.1621034762078985],[126,78,70,0.16929244925142511],[126,78,71,0.17642406221231097],[126,78,72,0.18351154910299244],[126,78,73,0.1905618035152672],[126,78,74,0.1975766316552769],[126,78,75,0.2045538818480661],[126,78,76,0.21148844795194527],[126,78,77,0.21837314447213202],[126,78,78,0.2251994515036737],[126,78,79,0.23195812796449009],[126,79,64,0.1265675476610064],[126,79,65,0.134360408297442],[126,79,66,0.14200582258009223],[126,79,67,0.14948504760487788],[126,79,68,0.1568183270419156],[126,79,69,0.16404314171923226],[126,79,70,0.17118752559068987],[126,79,71,0.1782709831567439],[126,79,72,0.18530587784468935],[126,79,73,0.19229870970093882],[126,79,74,0.19925127931364417],[126,79,75,0.20616173521816591],[126,79,76,0.2130255023699032],[126,79,77,0.2198360895963344],[126,79,78,0.22658577425909307],[126,79,79,0.23326616266660255],[126,80,64,0.1284950660603364],[126,80,65,0.13623284722720042],[126,80,66,0.14382463606461407],[126,80,67,0.1512546659474646],[126,80,68,0.15854219487262106],[126,80,69,0.16572136143097563],[126,80,70,0.1728176795285145],[126,80,71,0.17984890733588416],[126,80,72,0.18682632195493143],[126,80,73,0.1937558905343731],[126,80,74,0.20063933497199737],[126,80,75,0.20747508765112357],[126,80,76,0.21425913596716148],[126,80,77,0.22098575370373896],[126,80,78,0.22764811761340056],[126,80,79,0.2342388078446125],[126,81,64,0.13013110261039054],[126,81,65,0.13780851771877534],[126,81,66,0.14534266864920042],[126,81,67,0.1527210676217299],[126,81,68,0.15996181073114207],[126,81,69,0.16709523349992572],[126,81,70,0.17414392593928688],[126,81,71,0.18112355537711577],[126,81,72,0.18804402249687227],[126,81,73,0.19491052120658514],[126,81,74,0.2017244997122483],[126,81,75,0.20848452045552118],[126,81,76,0.21518701685907024],[126,81,77,0.22182694510194476],[126,81,78,0.22839832941869034],[126,81,79,0.23489469967881554],[126,82,64,0.13144127495356442],[126,82,65,0.13905294806294705],[126,82,66,0.14652583539009537],[126,82,67,0.15385104322985227],[126,82,68,0.16104537566794108],[126,82,69,0.1681349589101615],[126,82,70,0.17513907197940654],[126,82,71,0.18207093013096098],[126,82,72,0.1889387226182432],[126,82,73,0.19574656169262292],[126,82,74,0.2024953404549132],[126,82,75,0.20918349743711956],[126,82,76,0.21580768605182146],[126,82,77,0.2223633473011425],[126,82,78,0.22884518438440055],[126,82,79,0.23524753808275267],[126,83,64,0.13240453590712747],[126,83,65,0.1399449344699677],[126,83,66,0.14735305364033968],[126,83,67,0.1546238989217864],[126,83,68,0.1617728954321356],[126,83,69,0.16882161985596744],[126,83,70,0.1757856870995385],[126,83,71,0.18267550434772103],[126,83,72,0.18949719534852594],[126,83,73,0.19625344315311266],[126,83,74,0.20294424916867054],[126,83,75,0.2095676066187322],[126,83,76,0.21612008674048022],[126,83,77,0.22259733627955725],[126,83,78,0.22899448506674044],[126,83,79,0.23530646267726313],[126,84,64,0.13301068893860088],[126,84,65,0.14047408804674166],[126,84,66,0.147813849584117],[126,84,67,0.15502915418176955],[126,84,68,0.16213400153380647],[126,84,69,0.1691451541474944],[126,84,70,0.17607425830113665],[126,84,71,0.1829285812359372],[126,84,72,0.18971183043225415],[126,84,73,0.1964248981916299],[126,84,74,0.20306652960958524],[126,84,75,0.20963391223900882],[126,84,76,0.21612318595669927],[126,84,77,0.22252987175448616],[126,84,78,0.2286459140096231],[126,84,79,0.23429460842826574],[126,85,64,0.13325813746031426],[126,85,65,0.14063861225961977],[126,85,66,0.1479061905305382],[126,85,67,0.15506445915181855],[126,85,68,0.16212598401371617],[126,85,69,0.16910253179370072],[126,85,70,0.17600153631941987],[126,85,71,0.18282683302222053],[126,85,72,0.18957938466924748],[126,85,73,0.1962579387105387],[126,85,74,0.20285961453402324],[126,85,75,0.20938041911591787],[126,85,76,0.2157931948152546],[126,85,77,0.22151050049766963],[126,85,78,0.22714442957587624],[126,85,79,0.2326840072141743],[126,86,64,0.13315187531186612],[126,86,65,0.14044331827079004],[126,86,66,0.14763455030173228],[126,86,67,0.15473373869128698],[126,86,68,0.16175204289544712],[126,86,69,0.16869614042356632],[126,86,70,0.1755690789905951],[126,86,71,0.1823710232809066],[126,86,72,0.1890999009599938],[126,86,73,0.19575198591956305],[126,86,74,0.20232241723081595],[126,86,75,0.2084239783474922],[126,86,76,0.21406671402767963],[126,86,77,0.21964398626419376],[126,86,78,0.2251456557835892],[126,86,79,0.23056108008694914],[126,87,64,0.13270172524434853],[126,87,65,0.1398978849864835],[126,87,66,0.14700821451044888],[126,87,67,0.1540455698475435],[126,87,68,0.16101976479244082],[126,87,69,0.1679323857313382],[126,87,70,0.17478199761876761],[126,87,71,0.1815649183977913],[126,87,72,0.18827580089309104],[126,87,73,0.1949081567370881],[126,87,74,0.2008849293560802],[126,87,75,0.20641388362783672],[126,87,76,0.21189342388123011],[126,87,77,0.21731501836501071],[126,87,78,0.2226694604229867],[126,87,79,0.22794677448210676],[126,88,64,0.1319208317020601],[126,88,65,0.13901537014162532],[126,88,66,0.1460398320180155],[126,88,67,0.15301179892292685],[126,88,68,0.15993983067242099],[126,88,69,0.16682051268687506],[126,88,70,0.17364791174384542],[126,88,71,0.18041439315352803],[126,88,72,0.18711115537291614],[126,88,73,0.19326203120003954],[126,88,74,0.19864488020015816],[126,88,75,0.2039905810759921],[126,88,76,0.20929301030141279],[126,88,77,0.2145452029212849],[126,88,78,0.2197392189204179],[126,88,79,0.22486606747058724],[126,89,64,0.13082441371521933],[126,89,65,0.13781097826742617],[126,89,66,0.14474421839383406],[126,89,67,0.15164640386682698],[126,89,68,0.15852496034381158],[126,89,69,0.16537165283781993],[126,89,70,0.17217611732584984],[126,89,71,0.17892673505942575],[126,89,72,0.18561113747007968],[126,89,73,0.19083764820769453],[126,89,74,0.1960223291849781],[126,89,75,0.2011735750879637],[126,89,76,0.20628744538543173],[126,89,77,0.21135884496872295],[126,89,78,0.21638140209736997],[126,89,79,0.221347400989939],[126,90,64,0.12942878326772192],[126,90,65,0.1363010909425056],[126,90,66,0.1431374167593642],[126,90,67,0.14996460729575573],[126,90,68,0.15678909881981068],[126,90,69,0.16359810264316843],[126,90,70,0.17037697300027307],[126,90,71,0.17711015174832573],[126,90,72,0.18304827029537488],[126,90,73,0.18805705540141746],[126,90,74,0.19303577550116333],[126,90,75,0.19798419468589515],[126,90,76,0.2029007975958397],[126,90,77,0.20778261576823376],[126,90,78,0.212625106164801],[126,90,79,0.2174220823617008],[126,91,64,0.12775063408524182],[126,91,65,0.13450256431243998],[126,91,66,0.14123602099073837],[126,91,67,0.14798224504666022],[126,91,68,0.15474684933383842],[126,91,69,0.1615128374159811],[126,91,70,0.16826150872175083],[126,91,71,0.17497348541436797],[126,91,72,0.18013889507905773],[126,91,73,0.18493726991936524],[126,91,74,0.18970523067780307],[126,91,75,0.19444542136348272],[126,91,76,0.19915893650452282],[126,91,77,0.20384513818632288],[126,91,78,0.20850152456007726],[126,91,79,0.21312365031342262],[126,92,64,0.1258066053998944],[126,92,65,0.13243229847610943],[126,92,66,0.1390567658738209],[126,92,67,0.14571539479858867],[126,92,68,0.15241315742432845],[126,92,69,0.15912926511584558],[126,92,70,0.16584126079882805],[126,92,71,0.17228422237451108],[126,92,72,0.17690971380387682],[126,92,73,0.18149659815217897],[126,92,74,0.18605201823074893],[126,92,75,0.1905815865730635],[126,92,76,0.1950891306122342],[126,92,77,0.19957648922088522],[126,92,78,0.20404336126810463],[126,92,79,0.20848720671881146],[126,93,64,0.1236131248857771],[126,93,65,0.13010708297736895],[126,93,66,0.13661638845108925],[126,93,67,0.1431802689526152],[126,93,68,0.14980325017479354],[126,93,69,0.1564612239167314],[126,93,70,0.1631283370285539],[126,93,71,0.1689565245356453],[126,93,72,0.17337716338248346],[126,93,73,0.1777543613404219],[126,93,74,0.18209841818984254],[126,93,75,0.18641793699658218],[126,93,76,0.1907195368754346],[126,93,77,0.19500761881747988],[126,93,78,0.19928418530039016],[126,93,79,0.20354871426481033],[126,94,64,0.1211865346233684],[126,94,65,0.12754372230576153],[126,94,66,0.13393176446963964],[126,94,67,0.14039337563808466],[126,94,68,0.14693283438520943],[126,94,69,0.1535232271816744],[126,94,70,0.16013571536467655],[126,94,71,0.16533760317294036],[126,94,72,0.16955837964313586],[126,94,73,0.17373044195895848],[126,94,74,0.1778671543556524],[126,94,75,0.18198006587635815],[126,94,76,0.18607858067194075],[126,94,77,0.19016968418615343],[126,94,78,0.19425772603579827],[126,94,79,0.19834426024989318],[126,95,64,0.11854350363946187],[126,95,65,0.12475944499975264],[126,95,66,0.13102032353339255],[126,95,67,0.13737195141440284],[126,95,68,0.1438185571627691],[126,95,69,0.15033095920206063],[126,95,70,0.15687777929728505],[126,95,71,0.16144231074385315],[126,95,72,0.1654706023363708],[126,95,73,0.16944464853558244],[126,95,74,0.1733807222930308],[126,95,75,0.17729320880787103],[126,95,76,0.18119422503143406],[126,95,77,0.1850932988909359],[126,95,78,0.18899710915610518],[126,95,79,0.19290928671477314],[126,96,64,0.11570173028096285],[126,96,65,0.1217725996581585],[126,96,66,0.1279007462781214],[126,96,67,0.1341346689595901],[126,96,68,0.14047873215181297],[126,96,69,0.14690202480406284],[126,96,70,0.1533594617929322],[126,96,71,0.15728502553887094],[126,96,72,0.16113037552861964],[126,96,73,0.16491589672442822],[126,96,74,0.16866055621536644],[126,96,75,0.17238140251495232],[126,96,76,0.1760931280454205],[126,96,77,0.17980769604224772],[126,96,78,0.18353403293686343],[126,96,79,0.1872777871036597],[126,97,64,0.11268093741408515],[126,97,65,0.11860364089867974],[126,97,66,0.12459394662381366],[126,97,67,0.13070262277831485],[126,97,68,0.13693433437290242],[126,97,69,0.14325695568672547],[126,97,70,0.14911678833020087],[126,97,71,0.15287864929276415],[126,97,72,0.15655254109194655],[126,97,73,0.1601612046161043],[126,97,74,0.16372603305002487],[126,97,75,0.16726650523795125],[126,97,76,0.17079968745371332],[126,97,77,0.17433980497645823],[126,97,78,0.17789788467927864],[126,97,79,0.18148146965072795],[126,98,64,0.10950416319582464],[126,98,65,0.1152764080573875],[126,98,66,0.12112434191583812],[126,98,67,0.12710059572387616],[126,98,68,0.1332102664104777],[126,98,69,0.13942047613628078],[126,98,70,0.14462280557967866],[126,98,71,0.14823337649055526],[126,98,72,0.15174902317229427],[126,98,73,0.15519450041872032],[126,98,74,0.1585933121047602],[126,98,75,0.16196707747016179],[126,98,76,0.1653349714834389],[126,98,77,0.16871324085914804],[126,98,78,0.1721147970941353],[126,98,79,0.17554888768489202],[126,99,64,0.10619934993873678],[126,99,65,0.11181969919617821],[126,99,66,0.11752141354091478],[126,99,67,0.12335860890707584],[126,99,68,0.1293368984736785],[126,99,69,0.13542303055585805],[126,99,70,0.13988233278671347],[126,99,71,0.14335523321260188],[126,99,72,0.14672740167832532],[126,99,73,0.15002524078430585],[126,99,74,0.1532740088739223],[126,99,75,0.1564971218739769],[126,99,76,0.15971553508865247],[126,99,77,0.16294720669579008],[126,99,78,0.16620664447061229],[126,99,79,0.16950453704241414],[126,100,64,0.10280123338461816],[126,100,65,0.10826914277840537],[126,100,66,0.11382156039781355],[126,100,67,0.11951375736203927],[126,100,68,0.12535188465780248],[126,100,69,0.13130257506100773],[126,100,70,0.1348944983643207],[126,100,71,0.13824438352868185],[126,100,72,0.1414892729827662],[126,100,73,0.14465683818717354],[126,100,74,0.14777370163572523],[126,100,75,0.15086468129950276],[126,100,76,0.15395212080752183],[126,100,77,0.15705530727919245],[126,100,78,0.16018997848473016],[126,100,79,0.16336792077498402],[126,101,64,0.09935059324712366],[126,101,65,0.10466634502582352],[126,101,66,0.11006714509880818],[126,101,67,0.11560915533441224],[126,101,68,0.12129901022616729],[126,101,69,0.12627568480759221],[126,101,70,0.12965408036639722],[126,101,71,0.1328965289169212],[126,101,72,0.13603168867280369],[126,101,73,0.13908811759807668],[126,101,74,0.14209338369551439],[126,101,75,0.1450732640799849],[126,101,76,0.14805103515092202],[126,101,77,0.15104685592368775],[126,101,78,0.15407724632728909],[126,101,79,0.157154662028163],[126,102,64,0.09585980940063106],[126,102,65,0.10102352732467695],[126,102,66,0.10627027215124843],[126,102,67,0.11165687980312486],[126,102,68,0.117190382210939],[126,102,69,0.1209021972177016],[126,102,70,0.12419016700623361],[126,102,71,0.12734148776669446],[126,102,72,0.13038525623636849],[126,102,73,0.1333505150948114],[126,102,74,0.136265329174974],[126,102,75,0.13915595490048713],[126,102,76,0.14204610538643808],[126,102,77,0.1449563133760614],[126,102,78,0.14790339392314308],[126,102,79,0.15090000847214566],[126,103,64,0.09231678955958296],[126,103,65,0.09732794210807841],[126,103,66,0.10241769821844096],[126,103,67,0.10764337309310193],[126,103,68,0.11197225084072152],[126,103,69,0.1153475380203645],[126,103,70,0.11855940425244291],[126,103,71,0.121636061396142],[126,103,72,0.12460668307682521],[126,103,73,0.12750037181146576],[126,103,74,0.13034521991441006],[126,103,75,0.1331674669747442],[126,103,76,0.13599075642335526],[126,103,77,0.1388354934360499],[126,103,78,0.1417183061499281],[126,103,79,0.14465161190616568],[126,104,64,0.08870845644045246],[126,104,65,0.09356606718543116],[126,104,66,0.09849569319455322],[126,104,67,0.102863747861795],[126,104,68,0.10635947081480807],[126,104,69,0.10966929324369355],[126,104,70,0.1128192075752311],[126,104,71,0.11583721073818186],[126,104,72,0.11875218143361589],[126,104,73,0.12159285004357785],[126,104,74,0.1243868642810827],[126,104,75,0.1271599534083914],[126,104,76,0.1299351935746253],[126,104,77,0.13273237654955175],[126,104,78,0.13556748385898237],[126,104,79,0.13845226806123673],[126,105,64,0.08502368954825792],[126,105,65,0.08972651277486539],[126,105,66,0.09359300702988191],[126,105,67,0.09723138914078228],[126,105,68,0.1006676917350158],[126,105,69,0.10392375922006852],[126,105,70,0.10702525781897147],[126,105,71,0.109999677365625],[126,105,72,0.11287523273042495],[126,105,73,0.11567985839984479],[126,105,74,0.11844029929137831],[126,105,75,0.12118130061090475],[126,105,76,0.1239248992855606],[126,105,77,0.1266898192331064],[126,105,78,0.12949097245979366],[126,105,79,0.1323390677154049],[126,106,64,0.08035948132478044],[126,106,65,0.08422565844461075],[126,106,66,0.08798289347665547],[126,106,67,0.09156379610840591],[126,106,68,0.09495014836449518],[126,106,69,0.09816359375260093],[126,106,70,0.10122928033376973],[126,106,71,0.10417390648711528],[126,106,72,0.10702466951636974],[126,106,73,0.10980830642655351],[126,106,74,0.11255022986916297],[126,106,75,0.11527376198633366],[126,106,76,0.1179994686170786],[126,106,77,0.12074459606349595],[126,106,78,0.12352261235296248],[126,106,79,0.12634285467633785],[126,107,64,0.07487963599898247],[126,107,65,0.07867866093232243],[126,107,66,0.08237731640549147],[126,107,67,0.08590848595006126],[126,107,68,0.08925399920272041],[126,107,69,0.09243521953738605],[126,107,70,0.09547659154794637],[126,107,71,0.09840375490641089],[126,107,72,0.10124256201971506],[126,107,73,0.10401818535433045],[126,107,74,0.1067543172838512],[126,107,75,0.10947246505776287],[126,107,76,0.11219134323350785],[126,107,77,0.1149263656602472],[126,107,78,0.11768923885256063],[126,107,79,0.12048765834819802],[126,108,64,0.0694298883018521],[126,108,65,0.07316785193397883],[126,108,66,0.07681475721223048],[126,108,67,0.08030393775098267],[126,108,68,0.08361734375681613],[126,108,69,0.08677597870376866],[126,108,70,0.08980341187470282],[126,108,71,0.09272398288683495],[126,108,72,0.09556190832186984],[126,108,73,0.09834047405779954],[126,108,74,0.1010813159576226],[126,108,75,0.10380379132854703],[126,108,76,0.1065244433247142],[126,108,77,0.10925656022857727],[126,108,78,0.11200983131189514],[126,108,79,0.11479010074924641],[126,109,64,0.06403488772209344],[126,109,65,0.06771870746533279],[126,109,66,0.07132114318781917],[126,109,67,0.07477616441613727],[126,109,68,0.07806592074478903],[126,109,69,0.08121098067745205],[126,109,70,0.08423388686431268],[126,109,71,0.08715747157069957],[126,109,72,0.0900040695729363],[126,109,73,0.09279481145458097],[126,109,74,0.09554899970746199],[126,109,75,0.09828356981929226],[126,109,76,0.1010126383085028],[126,109,77,0.10374713944863814],[126,109,78,0.1064945522102387],[126,109,79,0.1092587187398425],[126,110,64,0.05869081443991626],[126,110,65,0.06232827995791148],[126,110,66,0.06589405868475481],[126,110,67,0.06932295647894764],[126,110,68,0.0725974119519518],[126,110,69,0.07573749497969151],[126,110,70,0.07876459826959178],[126,110,71,0.08169988108722512],[126,110,72,0.0845636025079256],[126,110,73,0.08737452863576622],[126,110,74,0.09014941590035518],[126,110,75,0.09290257234146962],[126,110,76,0.09564549859290811],[126,110,77,0.09838661008136404],[126,110,78,0.1011310417645477],[126,110,79,0.10388053654728466],[126,111,64,0.05334623935917211],[126,111,65,0.056945678010890385],[126,111,66,0.06048304296619812],[126,111,67,0.06389421393354686],[126,111,68,0.067162032149698],[126,111,69,0.07030602292259065],[126,111,70,0.0733463323019552],[126,111,71,0.07630231390412474],[126,111,72,0.07919199398425066],[126,111,73,0.08203160316367442],[126,111,74,0.08483517659316639],[126,111,75,0.08761422415685932],[126,111,76,0.09037747214797508],[126,111,77,0.09313067767698241],[126,111,78,0.09587651690647353],[126,111,79,0.09861454804668009],[126,112,64,0.0479385729940941],[126,112,65,0.051507525197536624],[126,112,66,0.05502446841367652],[126,112,67,0.05842668637424421],[126,112,68,0.06169758390835144],[126,112,69,0.06485610977059517],[126,112,70,0.06792106356556213],[126,112,71,0.07090984140693542],[126,112,72,0.07383804503294611],[126,112,73,0.07671914958176865],[126,112,74,0.07956423144188633],[126,112,75,0.08238175744312508],[126,112,76,0.08517743650726901],[126,112,77,0.08795413473390493],[126,112,78,0.09071185475810567],[126,112,79,0.09344778008344203],[126,113,64,0.04242643467874237],[126,113,65,0.04597111816065817],[126,113,66,0.04947478013672278],[126,113,67,0.05287651268906559],[126,113,68,0.05616048021390094],[126,113,69,0.05934503151949975],[126,113,70,0.062447515312767585],[126,113,71,0.06548320099034127],[126,113,72,0.06846504449619166],[126,113,73,0.07140350433369187],[126,113,74,0.07430640874600138],[126,113,75,0.07717887495747336],[126,113,76,0.08002328125066638],[126,113,77,0.08283929253923408],[126,113,78,0.08562393998707006],[126,113,79,0.08837175512006823],[126,114,64,0.03679039988996278],[126,114,65,0.0403155381601437],[126,114,66,0.04381180825850465],[126,114,67,0.04722055412703458],[126,114,68,0.050526911670918995],[126,114,69,0.053748611265533736],[126,114,70,0.05690144850802218],[126,114,71,0.05999839571790015],[126,114,72,0.06304953651212605],[126,114,73,0.06606204168705915],[126,114,74,0.0690401869875796],[126,114,75,0.07198541325192648],[126,114,76,0.07489642933261938],[126,114,77,0.07776935810987738],[126,114,78,0.08059792583462468],[126,114,79,0.0833736949647825],[126,115,64,0.0310291010944694],[126,115,65,0.03453781567768131],[126,115,66,0.03803103614716928],[126,115,67,0.041452809909200666],[126,115,68,0.04478945570366931],[126,115,69,0.04805806903862379],[126,115,70,0.051272798323849005],[126,115,71,0.05444416086927307],[126,115,72,0.05757915645000672],[126,115,73,0.06068141315086167],[126,115,74,0.06375136560994853],[126,115,75,0.06678646571938641],[126,115,76,0.06978142578376036],[126,115,77,0.07272849408426968],[126,115,78,0.07561776274875988],[126,115,79,0.0784375077861354],[126,116,64,0.025155586587604015],[126,116,65,0.028649349078649706],[126,116,66,0.032142115999090184],[126,116,67,0.03558107074614491],[126,116,68,0.03895391144549391],[126,116,69,0.042277082258321066],[126,116,70,0.04556300337542075],[126,116,71,0.04881960264802082],[126,116,72,0.05205061594208957],[126,116,73,0.0552559107199999],[126,116,74,0.05843183248833311],[126,116,75,0.0615715737194667],[126,116,76,0.06466556482830767],[126,116,77,0.06770188676451712],[126,116,78,0.07066670476489005],[126,116,79,0.07354472280112175],[126,117,64,0.01919394162891258],[126,117,65,0.02267258167585794],[126,117,66,0.026165636107093857],[126,117,67,0.02962381452634535],[126,117,68,0.03303636444955882],[126,117,69,0.03641906074675739],[126,117,70,0.039782531359258654],[126,117,71,0.043132012375847795],[126,117,72,0.04646783992906717],[126,117,73,0.04978595638862486],[126,117,74,0.053078429997997056],[126,117,75,0.0571075841109035],[126,117,76,0.062439942988201394],[126,117,77,0.06769482501653311],[126,117,78,0.07285888515113115],[126,117,79,0.07791795742719701],[126,118,64,0.013176175876700651],[126,118,65,0.016637941239251552],[126,118,66,0.020130143851956484],[126,118,67,0.023607348154373833],[126,118,68,0.027060485081792783],[126,118,69,0.031426542471845495],[126,118,70,0.03723538600065855],[126,118,71,0.04301410869786541],[126,118,72,0.04876232064351128],[126,118,73,0.054475021553115094],[126,118,74,0.06014328453979281],[126,118,75,0.06575494425675525],[126,118,76,0.07129528813406105],[126,118,77,0.07674774946482997],[126,118,78,0.0820946011440511],[126,118,79,0.08626205926500517],[126,119,64,0.008713412281686879],[126,119,65,0.014797024810225084],[126,119,66,0.020886152259674686],[126,119,67,0.026940333497653905],[126,119,68,0.03295354074899978],[126,119,69,0.03894179516585172],[126,119,70,0.04491404326209038],[126,119,71,0.05087235177008727],[126,119,72,0.056812769291064005],[126,119,73,0.06272618669458573],[126,119,74,0.06859919442857948],[126,119,75,0.07441493495808908],[126,119,76,0.08015394861489639],[126,119,77,0.08579501121121594],[126,119,78,0.0902360052200672],[126,119,79,0.09316014248333845],[126,120,64,0.01588502500582969],[126,120,65,0.022018865158943135],[126,120,66,0.028173932392033214],[126,120,67,0.03431399450718697],[126,120,68,0.040434797626005096],[126,120,69,0.04655157974480621],[126,120,70,0.05267138338006966],[126,120,71,0.05879347358284665],[126,120,72,0.06491038417198224],[126,120,73,0.0710089549103433],[126,120,74,0.07707135731257204],[126,120,75,0.0830761068562117],[126,120,76,0.08899905945932611],[126,120,77,0.09450641426481442],[126,120,78,0.09733341903471088],[126,120,79,0.10008010158601076],[126,121,64,0.023257747296202277],[126,121,65,0.029424975251300316],[126,121,66,0.035628550938502215],[126,121,67,0.04183654423406498],[126,121,68,0.04804647273382432],[126,121,69,0.05427276935568435],[126,121,70,0.06052060351693695],[126,121,71,0.0667865137782028],[126,121,72,0.073059628993156],[126,121,73,0.07932287318865522],[126,121,74,0.08555415141618884],[126,121,75,0.09172751392329893],[126,121,76,0.0978142961101886],[126,121,77,0.10181108385832865],[126,121,78,0.10445040684820492],[126,121,79,0.10702394060035954],[126,122,64,0.030856088516247725],[126,122,65,0.03703895930466236],[126,122,66,0.043272317001322703],[126,122,67,0.049528507526934946],[126,122,68,0.05580676598118644],[126,122,69,0.06212069655283142],[126,122,70,0.06847364940357546],[126,122,71,0.07485955541637941],[126,122,72,0.08126430921934494],[126,122,73,0.08766712940212075],[126,122,74,0.09404189275190104],[126,122,75,0.10035843946584072],[126,122,76,0.10657634743893793],[126,122,77,0.10912140552033134],[126,122,78,0.11158284933110568],[126,122,79,0.11399225832517519],[126,123,64,0.03870007910705003],[126,123,65,0.04488022502398103],[126,123,66,0.05112365301898178],[126,123,67,0.05740686048210062],[126,123,68,0.06373069596637367],[126,123,69,0.07010791028306335],[126,123,70,0.07654010974729689],[126,123,71,0.08301877685037122],[126,123,72,0.08952679909737746],[126,123,73,0.09603996923669642],[126,123,74,0.10252845333590177],[126,123,75,0.10895822330766486],[126,123,76,0.11405513009253403],[126,123,77,0.11642723384210285],[126,123,78,0.11872510885829703],[126,123,79,0.12098371767968294],[126,124,64,0.04680392961071542],[126,124,65,0.052962672719349735],[126,124,66,0.05919582732022908],[126,124,67,0.06548382374163224],[126,124,68,0.07182897330823887],[126,124,69,0.07824314853677344],[126,124,70,0.08472630664181643],[126,124,71,0.09126767677891842],[126,124,72,0.09784741608873129],[126,124,73,0.10443823211111895],[126,124,74,0.11100696769882232],[126,124,75,0.11751614472573116],[126,124,76,0.12149906910042914],[126,124,77,0.12371719500300893],[126,124,78,0.12586970448627585],[126,124,79,0.12799455531091294],[126,125,64,0.055174974562781476],[126,125,65,0.06129366573117038],[126,125,66,0.06749596129854164],[126,125,67,0.0737659205851714],[126,125,68,0.08010712572962708],[126,125,69,0.08653054638305256],[126,125,70,0.093034601671059],[126,125,71,0.09960649209673439],[126,125,72,0.10622396220992822],[126,125,73,0.11285702542133688],[126,125,74,0.11946964681833554],[126,125,75,0.1260213800183866],[126,125,76,0.12889219141700467],[126,125,77,0.13097852406807436],[126,125,78,0.13300701133585072],[126,125,79,0.13501815079413237],[126,126,64,0.06381290483248792],[126,126,65,0.06987328579320387],[126,126,66,0.07602431486102482],[126,126,67,0.08225330346183747],[126,126,68,0.08856487849710909],[126,126,69,0.09496908291189388],[126,126,70,0.10146292110836297],[126,126,71,0.10803181178018346],[126,126,72,0.11465143531366709],[126,126,73,0.12128953989682058],[126,126,74,0.12790770197592075],[126,126,75,0.13414415100469745],[126,126,76,0.13621784831710718],[126,126,77,0.13819689274125696],[126,126,78,0.14012498622916816],[126,126,79,0.14204465769827462],[126,127,64,0.07270929050869636],[126,127,65,0.0786938754711676],[126,127,66,0.08477385230346418],[126,127,67,0.09093935109889766],[126,127,68,0.09719579230616439],[126,127,69,0.10355226908938883],[126,127,70,0.11000450209581662],[126,127,71,0.11653638853286423],[126,127,72,0.1231219118356904],[126,127,73,0.12972700735609588],[126,127,74,0.13631137955135794],[126,127,75,0.14147068653705624],[126,127,76,0.1434586052143566],[126,127,77,0.14535622756422611],[126,127,78,0.1472089199494131],[126,127,79,0.14906069727554647],[126,128,64,0.08184739630316448],[126,128,65,0.08773986968571912],[126,128,66,0.09373009063324378],[126,128,67,0.09981053819458256],[126,128,68,0.10598716057450983],[126,128,69,0.11226807841051462],[126,128,70,0.11864786157470875],[126,128,71,0.12510914981181676],[126,128,72,0.13162460244108182],[126,128,73,0.13815880207234604],[126,128,74,0.14467010770901123],[126,128,75,0.14866747683858503],[126,128,76,0.15059608578215616],[126,128,77,0.1524385185472203],[126,128,78,0.15424121646517236],[126,128,79,0.15604911548424164],[126,129,64,0.09120229133398773],[126,129,65,0.09698791821658345],[126,129,66,0.10287123224797727],[126,129,67,0.10884657958846908],[126,129,68,0.11492016799418771],[126,129,69,0.12109912212606679],[126,129,70,0.12737698963632826],[126,129,71,0.13373540976195586],[126,129,72,0.1401460819215475],[126,129,73,0.14657268689099445],[126,129,74,0.1529727558763774],[126,129,75,0.15571572690769123],[126,129,76,0.15761077004327198],[126,129,77,0.1594236182153451],[126,129,78,0.1612011994366854],[126,129,79,0.16298880400673904],[126,130,64,0.10074125506051697],[126,130,65,0.10640730098943182],[126,130,66,0.11216858378012357],[126,130,67,0.11802085070441361],[126,130,68,0.12397031209552585],[126,130,69,0.13002307072570524],[126,130,70,0.13617176887281462],[126,130,71,0.14239728350404712],[126,130,72,0.14867069462239732],[126,130,73,0.15495520517999153],[126,130,74,0.1605854326710299],[126,130,75,0.16259624452545685],[126,130,76,0.16448174610948899],[126,130,77,0.1662890310505348],[126,130,78,0.16806494629816413],[126,130,79,0.16985458588088634],[126,131,64,0.11042448106564594],[126,131,65,0.11596063786760874],[126,131,66,0.1215872628352949],[126,131,67,0.1273010859767839],[126,131,68,0.13310808949180913],[126,131,69,0.13901332327661153],[126,131,70,0.14500862122905386],[126,131,71,0.15107430514866788],[126,131,72,0.15718113661301245],[126,131,73,0.1632922196385998],[126,131,74,0.16727107357815107],[126,131,75,0.169289078413231],[126,131,76,0.17118641526517075],[126,131,77,0.17300969330464985],[126,131,78,0.17480515018731993],[126,131,79,0.17661716632074365],[126,132,64,0.12020595005361893],[126,132,65,0.12560475610152017],[126,132,66,0.13108704774699054],[126,132,67,0.13665020239126496],[126,132,68,0.1422997860342795],[126,132,69,0.14803975628106048],[126,132,70,0.15386120705734546],[126,132,71,0.15974406815644568],[126,132,72,0.1656590282885008],[126,132,73,0.1715290285486352],[126,132,74,0.1737310417141481],[126,132,75,0.17577326558653053],[126,132,76,0.17770034040999558],[126,132,77,0.1795579293128934],[126,132,78,0.18139118988618053],[126,132,79,0.1832433208651731],[126,133,64,0.13001372878361],[126,133,65,0.13526957494864753],[126,133,66,0.1405998713687568],[126,133,67,0.14600240198262873],[126,133,68,0.15148219559549783],[126,133,69,0.15704210630758358],[126,133,70,0.1626725636447957],[126,133,71,0.16835325777968563],[126,133,72,0.17405502400211492],[126,133,73,0.17774750040153164],[126,133,74,0.17997895068599207],[126,133,75,0.18205804944574908],[126,133,76,0.184028279158632],[126,133,77,0.18593396145746335],[126,133,78,0.18781877058488233],[126,133,79,0.18972432239229686],[126,134,64,0.13973554498618967],[126,134,65,0.14484206606483985],[126,134,66,0.15001221749440657],[126,134,67,0.1552440094133602],[126,134,68,0.16054189895047882],[126,134,69,0.16590772758366787],[126,134,70,0.17133142308942068],[126,134,71,0.17679265822860313],[126,134,72,0.1813659064955736],[126,134,73,0.18381866958001758],[126,134,74,0.18608708360288562],[126,134,75,0.18821095834726562],[126,134,76,0.19023226844192115],[126,134,77,0.1921936454177643],[126,134,78,0.19413694198651926],[126,134,79,0.196101871892333],[126,135,64,0.1492678145083427],[126,135,65,0.15421786764158682],[126,135,66,0.1592192604023257],[126,135,67,0.16427010711013756],[126,135,68,0.1693743365179353],[126,135,69,0.17453295874347757],[126,135,70,0.17973563827350578],[126,135,71,0.184631704289262],[126,135,72,0.18732588624447602],[126,135,73,0.1898100285513607],[126,135,74,0.19211887928232985],[126,135,75,0.19429064587195305],[126,135,76,0.19636547848646324],[126,135,77,0.1983840214813783],[126,135,78,0.20038603642601335],[126,135,79,0.20240909994402298],[126,136,64,0.15852248814150163],[126,136,65,0.16330843912898202],[126,136,66,0.16813230252569478],[126,136,67,0.17299223450812806],[126,136,68,0.17789174460436058],[126,136,69,0.18283126124062246],[126,136,70,0.1875965091339807],[126,136,71,0.19054060548496338],[126,136,72,0.19325628541723133],[126,136,73,0.19577195305118983],[126,136,74,0.1981207181977114],[126,136,75,0.20033888552408483],[126,136,76,0.2024645066820999],[126,136,77,0.20453599895324545],[126,136,78,0.20659083375313025],[126,136,79,0.20866429811676085],[126,137,64,0.16742773357024898],[126,137,65,0.17204165763672064],[126,137,66,0.17667926600722844],[126,137,67,0.18133875261909752],[126,137,68,0.18602337054713242],[126,137,69,0.1903153543494648],[126,137,70,0.19350663357019426],[126,137,71,0.1964593427377858],[126,137,72,0.19919438452683072],[126,137,73,0.2017385423765818],[126,137,74,0.2041229922577764],[126,137,75,0.20638187120080254],[126,137,76,0.20855090615585034],[126,137,77,0.21066610656217027],[126,137,78,0.21276252380196933],[126,137,79,0.21487308050567605],[126,138,64,0.17592897651637457],[126,138,65,0.18036276921815297],[126,138,66,0.1848055317775982],[126,138,67,0.18917478681199418],[126,138,68,0.19284338461630093],[126,138,69,0.19626831576562373],[126,138,70,0.19945353474617078],[126,138,71,0.20241144284873508],[126,138,72,0.20516139611034345],[126,138,73,0.20772825906849562],[126,138,74,0.21014100800762392],[126,138,75,0.2124313872151115],[126,138,76,0.21463262159277402],[126,138,77,0.21677818878972635],[126,138,78,0.21890065383493856],[126,138,79,0.22103056905334084],[126,139,64,0.18300912856700574],[126,139,65,0.1872961807120894],[126,139,66,0.19137200214779987],[126,139,67,0.19523191163179],[126,139,68,0.1988666656267151],[126,139,69,0.20227019962053472],[126,139,70,0.20544561981641096],[126,139,71,0.20840392299388535],[126,139,72,0.2111626142435149],[126,139,73,0.21374436594391383],[126,139,74,0.21617572136896218],[126,139,75,0.21848584616591818],[126,139,76,0.22070533078955826],[126,139,77,0.22286504681379934],[126,139,78,0.2249950598713491],[126,139,79,0.22712360179449698],[126,140,64,0.18929602174359478],[126,140,65,0.19350915511650463],[126,140,66,0.19752371591783932],[126,140,67,0.20133490635855786],[126,140,68,0.20493325992660152],[126,140,69,0.20831219622497413],[126,140,70,0.21147364916883887],[126,140,71,0.21442690242022444],[126,140,72,0.2171873277108123],[126,140,73,0.21977515851321386],[126,140,74,0.22221430211600196],[126,140,75,0.22453119302872937],[126,140,76,0.22675369050608907],[126,140,77,0.22891002283572648],[126,140,78,0.23102778088263295],[126,140,79,0.23313296322524174],[126,141,64,0.1956035076565597],[126,141,65,0.19974143803993882],[126,141,66,0.20369340053231502],[126,141,67,0.2074543433839947],[126,141,68,0.2110143457076582],[126,141,69,0.21436600391603108],[126,141,70,0.21750977628574833],[126,141,71,0.22045294692066458],[126,141,72,0.2232084947809652],[126,141,73,0.22579399088298588],[126,141,74,0.22823052635358737],[126,141,75,0.23054167391444563],[126,141,76,0.2327524852556381],[126,141,77,0.2348885266347922],[126,141,78,0.2369749549083342],[126,141,79,0.23903563606555325],[126,142,64,0.20187554140951328],[126,142,65,0.20593819749762898],[126,142,66,0.20982749069771692],[126,142,67,0.21353797914271036],[126,142,68,0.21705907541128494],[126,142,69,0.22038227730624507],[126,142,70,0.22350629266748517],[126,142,71,0.22643614393844866],[126,142,72,0.22918217758139767],[126,142,73,0.23175909329706557],[126,142,74,0.2341849953242903],[126,142,75,0.23648046800957004],[126,142,76,0.23866767774392367],[126,142,77,0.24076950326513663],[126,142,78,0.24280869621784829],[126,142,79,0.24480707375231447],[126,143,64,0.20803952134652726],[126,143,65,0.21202801187666107],[126,143,66,0.2158558973347077],[126,143,67,0.21951722196360315],[126,143,68,0.22300054705058475],[126,143,69,0.22629603368453863],[126,143,70,0.22940039421223515],[126,143,71,0.2323161489426635],[126,143,72,0.23505078558266917],[126,143,73,0.2376159290240909],[126,143,74,0.24002652331434596],[126,143,75,0.24230002758167477],[126,143,76,0.24445562761915776],[126,143,77,0.24651346475822675],[126,143,78,0.2484938835829057],[126,143,79,0.25041669995060206],[126,144,64,0.2140471568315086],[126,144,65,0.21796222776383192],[126,144,66,0.22172956410921285],[126,144,67,0.22534255166168837],[126,144,68,0.22878871731157496],[126,144,69,0.23205666681770495],[126,144,70,0.23514089099254565],[126,144,71,0.23804118567242125],[126,144,72,0.24076197079182293],[126,144,73,0.2433116092392181],[126,144,74,0.24570172684671296],[126,144,75,0.24794653483213933],[126,144,76,0.25006215597258824],[126,144,77,0.25206595574298246],[126,144,78,0.2539758796019697],[126,144,79,0.2558097975502152],[126,145,64,0.21986272047344496],[126,145,65,0.22370420950271608],[126,145,66,0.22741082487941858],[126,145,67,0.23097512296751854],[126,145,68,0.2343834137180578],[126,145,69,0.2373187457907819],[126,145,70,0.2398212378135284],[126,145,71,0.24225244144854882],[126,145,72,0.24460831034924418],[126,145,73,0.24688147677281058],[126,145,74,0.24906180179682594],[126,145,75,0.2511369359544758],[126,145,76,0.25309288946571884],[126,145,77,0.25491461125715936],[126,145,78,0.25658657598456486],[126,145,79,0.25809337829903667],[126,146,64,0.22545487160119496],[126,146,65,0.22922159981651147],[126,146,66,0.2328661691028452],[126,146,67,0.23638011523227295],[126,146,68,0.2390566571800239],[126,146,69,0.24132990693696532],[126,146,70,0.24352500744537572],[126,146,71,0.24564510979723955],[126,146,72,0.2476898180246292],[126,146,73,0.24965556309279222],[126,146,74,0.25153600144225],[126,146,75,0.25332243776386976],[126,146,76,0.25500427166949763],[126,146,77,0.25656946790444596],[126,146,78,0.2580050497373637],[126,146,79,0.2592976151582375],[126,147,64,0.2307961020475603],[126,147,65,0.2344858048622423],[126,147,66,0.23806577314961302],[126,147,67,0.24098130430230763],[126,147,68,0.24304601007771215],[126,147,69,0.2450164318668812],[126,147,70,0.24690259280112495],[126,147,71,0.24871110068046964],[126,147,72,0.25044531281417043],[126,147,73,0.2521055394493342],[126,147,74,0.25368928607331137],[126,147,75,0.2551915348172845],[126,147,76,0.25660506513421133],[126,147,77,0.25792081387468824],[126,147,78,0.25912827484011997],[126,147,79,0.2602159378544975],[126,148,64,0.23586224788584653],[126,148,65,0.2394715441735986],[126,148,66,0.2429830948841055],[126,148,67,0.24495740315929726],[126,148,68,0.2467272064188239],[126,148,69,0.24839452874680967],[126,148,70,0.2499724498437383],[126,148,71,0.25147110249812044],[126,148,72,0.25289764831573563],[126,148,73,0.2542563066509326],[126,148,74,0.25554843762415724],[126,148,75,0.25677268001818787],[126,148,76,0.25792514475718487],[126,148,77,0.2589996645886515],[126,148,78,0.2599881005096493],[126,148,79,0.26088070540615477],[126,149,64,0.24063206759654146],[126,149,65,0.24415646597492272],[126,149,66,0.24703269643990383],[126,149,67,0.2486365735410607],[126,149,68,0.25011241272906165],[126,149,69,0.25147852949206145],[126,149,70,0.252751088048098],[126,149,71,0.25394375943933056],[126,149,72,0.25506750539133743],[126,149,73,0.25613043068502406],[126,149,74,0.2571377055399156],[126,149,75,0.25809155938167355],[126,149,76,0.2589913472434911],[126,149,77,0.2598336899318126],[126,149,78,0.2606126889728321],[126,149,79,0.26132021724868737],[126,150,64,0.24508688712983956],[126,150,65,0.2485208283370675],[126,150,66,0.25070578850498626],[126,150,67,0.2520273315761562],[126,150,68,0.25321216764107],[126,150,69,0.254281037672007],[126,150,70,0.255253163650325],[126,150,71,0.2561457114213261],[126,150,72,0.25697338212628373],[126,150,73,0.25774808795892634],[126,150,74,0.25847871436839603],[126,150,75,0.25917097067023037],[126,150,76,0.2598273308686175],[126,150,77,0.2604470663385114],[126,150,78,0.2610263718666943],[126,150,79,0.261558586408069],[126,151,64,0.24921031232055585],[126,151,65,0.2525472466366623],[126,151,66,0.25409384166020044],[126,151,67,0.25513683211324156],[126,151,68,0.25603552211019887],[126,151,69,0.2568130184841961],[126,151,70,0.25749151941259485],[126,151,71,0.2580915855682421],[126,151,72,0.2586315408482587],[126,151,73,0.2591269735258096],[126,151,74,0.25959034057083347],[126,151,75,0.2600306776908822],[126,151,76,0.2604534174499997],[126,151,77,0.2608603176336669],[126,151,78,0.26124950184306256],[126,151,79,0.2616156141240684],[126,152,64,0.2529880091086658],[126,152,65,0.2562205077769272],[126,152,66,0.2572010905602758],[126,152,67,0.25797099215441094],[126,152,68,0.25859011746210053],[126,152,69,0.2590838303718926],[126,152,70,0.25947717050014024],[126,152,71,0.259793938854209],[126,152,72,0.260055911862762],[126,152,73,0.26028217198805176],[126,152,74,0.2604885582827231],[126,152,75,0.2606872400251343],[126,152,76,0.260886416339711],[126,152,77,0.2610901444844275],[126,152,78,0.26129829926815656],[126,152,79,0.2615066658485216],[126,153,64,0.25640755201820636],[126,153,65,0.25934538179171895],[126,153,66,0.26003077544168596],[126,153,67,0.260534548575271],[126,153,68,0.26088220082899655],[126,153,69,0.26110119785810604],[126,153,70,0.26121923606530423],[126,153,71,0.261263151532459],[126,153,72,0.26125795355806675],[126,153,73,0.26122599076626773],[126,153,74,0.2611862537509771],[126,153,75,0.26115381795762965],[126,153,76,0.2611394302444719],[126,153,77,0.2611492423075215],[126,153,78,0.26118469390059745],[126,153,79,0.2612425485366118],[126,154,64,0.25945834135158774],[126,154,65,0.26215126900182356],[126,154,66,0.262585171797328],[126,154,67,0.26283104967442755],[126,154,68,0.2629165775276943],[126,154,69,0.26287112516525607],[126,154,70,0.262724816129264],[126,154,71,0.2625072709675984],[126,154,72,0.2622464685278263],[126,154,73,0.2619677554168619],[126,154,74,0.26169300816778956],[126,154,75,0.26143995236325196],[126,154,76,0.2612216426727443],[126,154,77,0.26104610747158974],[126,154,78,0.26091616142488966],[126,154,79,0.260829389143047],[126,155,64,0.26213158956521],[126,155,65,0.26467504670821373],[126,155,66,0.2648655510792654],[126,155,67,0.26486278008781566],[126,155,68,0.26469649992534094],[126,155,69,0.26439775018257183],[126,155,70,0.26399881334500375],[126,155,71,0.26353180548109156],[126,155,72,0.263027375352302],[126,155,73,0.262513566673721],[126,155,74,0.26201484861435936],[126,155,75,0.2615513193052211],[126,155,76,0.2611380868016336],[126,155,77,0.26078483162702853],[126,155,78,0.2604955547111302],[126,155,79,0.26026851422934455],[126,156,64,0.2644203773046446],[126,156,65,0.2669161097106827],[126,156,66,0.2668720719478276],[126,156,67,0.26663061859152687],[126,156,68,0.2662234923274683],[126,156,69,0.2656831383322048],[126,156,70,0.26504369921427884],[126,156,71,0.26433946780943923],[126,156,72,0.2636034356688748],[126,156,73,0.26286601887966665],[126,156,74,0.26215396681795405],[126,156,75,0.2614894590875051],[126,156,76,0.26088939554765606],[126,156,77,0.2603648839878678],[126,156,78,0.2599209296645168],[126,156,79,0.25955633058222743],[126,157,64,0.2663197795946572],[126,157,65,0.26887285357444685],[126,157,66,0.2686036015695797],[126,157,67,0.2681338283015641],[126,157,68,0.2674971114082413],[126,157,69,0.26672701587096825],[126,157,70,0.26585922431781855],[126,157,71,0.26492986776162375],[126,157,72,0.26397393615022435],[126,157,73,0.263023879461668],[126,157,74,0.26210840541493546],[126,157,75,0.2612514794948204],[126,157,76,0.26047153261629036],[126,157,77,0.259780881382143],[126,157,78,0.2591853655213559],[126,157,79,0.258684206737636],[126,158,64,0.2678270627008589],[126,158,65,0.27024984588799356],[126,158,66,0.27005746644714895],[126,158,67,0.26936977876017876],[126,158,68,0.2685146416848244],[126,158,69,0.2675264421474509],[126,158,70,0.2664420721017248],[126,158,71,0.2652991536470239],[126,158,72,0.2641343249941589],[126,158,73,0.2629817290904525],[126,158,74,0.26187171140011134],[126,158,75,0.2608297329424655],[126,158,76,0.259875504295548],[126,158,77,0.2590223458789723],[126,158,78,0.25827677944161753],[126,158,79,0.25763835529992285],[126,159,64,0.2689419522048509],[126,159,65,0.27119970656613385],[126,159,66,0.2712291322397448],[126,159,67,0.27033359937519463],[126,159,68,0.26927072551554976],[126,159,69,0.26807542031310355],[126,159,70,0.26678545574303775],[126,159,71,0.2654396020262557],[126,159,72,0.2640758025116504],[126,159,73,0.2627295621491368],[126,159,74,0.26143255642827207],[126,159,75,0.26021146724532357],[126,159,76,0.25908705174760327],[126,159,77,0.25807344979121105],[126,159,78,0.2571777352407106],[126,159,79,0.25639971594052396],[126,160,64,0.2696669728643589],[126,160,65,0.27175298737392833],[126,160,66,0.2721118120054889],[126,160,67,0.2710177636520961],[126,160,68,0.2697569270761523],[126,160,69,0.268364445961835],[126,160,70,0.26687865759483814],[126,160,71,0.2653391553163617],[126,160,72,0.26378486538027096],[126,160,73,0.26225234711791706],[126,160,74,0.2607743236180741],[126,160,75,0.25937844970169116],[126,160,76,0.25808632354096334],[126,160,77,0.2569127478432271],[126,160,78,0.2558652460961769],[126,160,79,0.2549438389559012],[126,161,64,0.2700078608638494],[126,161,65,0.2719169079896384],[126,161,66,0.2726960022653039],[126,161,67,0.27141160362852956],[126,161,68,0.269961229739662],[126,161,69,0.2683799931455771],[126,161,70,0.2667065106859379],[126,161,71,0.26498090675834735],[126,161,72,0.263242804108834],[126,161,73,0.2615295464626216],[126,161,74,0.2598746604914804],[126,161,75,0.25830656417301967],[126,161,76,0.2568475281536098],[126,161,77,0.2555128962839222],[126,161,78,0.2543105710583286],[126,161,79,0.25324076926071076],[126,162,64,0.2699740490983936],[126,162,65,0.2717027796106169],[126,162,66,0.2729689462520967],[126,162,67,0.2715007538862852],[126,162,68,0.26986746625260594],[126,162,69,0.2681039371822063],[126,162,70,0.26624882172118236],[126,162,71,0.26434253222825854],[126,162,72,0.2624251532346056],[126,162,73,0.26053459559301745],[126,162,74,0.2587049976627076],[126,162,75,0.25696538082420184],[126,162,76,0.2553385661639947],[126,162,77,0.2538403587145999],[126,162,78,0.25247900518644156],[126,162,79,0.25125493068794835],[126,163,64,0.2695792261757529],[126,163,65,0.2711265866674161],[126,163,66,0.27265467626372025],[126,163,67,0.2712665244786208],[126,163,68,0.26945468106483517],[126,163,69,0.2675129136389879],[126,163,70,0.2654797349975071],[126,163,71,0.2633956683446501],[126,163,72,0.2613010937488463],[126,163,73,0.25923434043403987],[126,163,74,0.2572300328709602],[126,163,75,0.25531769817253014],[126,163,76,0.2535206418335688],[126,163,77,0.2518550983914736],[126,163,78,0.25032966312581],[126,163,79,0.24894501046508147],[126,164,64,0.26884197882247285],[126,164,65,0.2702094232641292],[126,164,66,0.2715581033053125],[126,164,67,0.2706858943944414],[126,164,68,0.2686973546839051],[126,164,69,0.26657877714170414],[126,164,70,0.2643684239810011],[126,164,71,0.2621068285191723],[126,164,72,0.2598345778700567],[126,164,73,0.25759034733229336],[126,164,74,0.2554091946347189],[126,164,75,0.25332112173153126],[126,164,76,0.2513499113680468],[126,164,77,0.2495122451663359],[126,164,78,0.24781710951306726],[126,164,79,0.24626549507395726],[126,165,64,0.2677840662935251],[126,165,65,0.26897416367538185],[126,165,66,0.270146305878892],[126,165,67,0.26973819914577385],[126,165,68,0.2675737989156766],[126,165,69,0.26527868181971054],[126,165,70,0.26289079205890825],[126,165,71,0.26045060761871963],[126,165,72,0.25799886456932913],[126,165,73,0.25557453816002135],[126,165,74,0.25321308903916545],[126,165,75,0.25094498245710356],[126,165,76,0.24879448783101477],[126,165,77,0.24677876557272035],[126,165,78,0.2449072476066932],[126,165,79,0.24318131754075192],[126,166,64,0.26642469274923225],[126,166,65,0.26744043218793573],[126,166,66,0.2684394579787251],[126,166,67,0.26840875799510416],[126,166,68,0.26606910056636135],[126,166,69,0.2635973640016575],[126,166,70,0.26103113771397213],[126,166,71,0.25841079879250367],[126,166,72,0.2557771855862765],[126,166,73,0.2531695322202153],[126,166,74,0.25062367251295536],[126,166,75,0.2481705212871873],[126,166,76,0.24583484058064062],[126,166,77,0.2436342977829742],[126,166,78,0.24157882224520694],[126,166,79,0.23967026643846956],[126,167,64,0.2647798245965245],[126,167,65,0.26562465531113977],[126,167,66,0.2664545403071124],[126,167,67,0.26668729449060896],[126,167,68,0.26417279365160146],[126,167,69,0.2615240858993977],[126,167,70,0.2587784081596343],[126,167,71,0.25597601896976185],[126,167,72,0.2531578309276826],[126,167,73,0.2503633071082844],[126,167,74,0.24762863001617044],[126,167,75,0.24498515116231145],[126,167,76,0.24245812886724113],[126,167,77,0.24006576140794494],[126,167,78,0.23781852214407745],[126,167,79,0.23571880278623553],[126,168,64,0.2628633038803718],[126,168,65,0.2635411563520438],[126,168,66,0.26420641358485303],[126,168,67,0.2645668702198434],[126,168,68,0.26187782890722605],[126,168,69,0.2590516464315903],[126,168,70,0.2561252545417795],[126,168,71,0.2531388092914296],[126,168,72,0.250133293430484],[126,168,73,0.2471483846078194],[126,168,74,0.24422059800967644],[126,168,75,0.2413817115780705],[126,168,76,0.2386574814680786],[126,168,77,0.236066654916994],[126,168,78,0.2336202872161613],[126,168,79,0.23132136900249625],[126,169,64,0.26068820843559587],[126,169,65,0.26120349242475005],[126,169,66,0.2617091285359149],[126,169,67,0.26204258630256855],[126,169,68,0.25917931908570596],[126,169,69,0.25617517736050216],[126,169,70,0.2530668836148385],[126,169,71,0.249894544840353],[126,169,72,0.2466992370349598],[126,169,73,0.2435208561331351],[126,169,74,0.24039624400016024],[126,169,75,0.2373575976482589],[126,169,76,0.2344311693493591],[126,169,77,0.231636264835123],[126,169,78,0.2289845462942873],[126,169,79,0.22647964640487664],[126,170,64,0.2582684566284846],[126,170,65,0.25862603607499557],[126,170,66,0.2589774791996735],[126,170,67,0.25911004145123434],[126,170,68,0.2560730443625025],[126,170,69,0.2528907046622018],[126,170,70,0.24959968163195062],[126,170,71,0.2462401256006953],[126,170,72,0.24285325742284541],[126,170,73,0.23947921379566234],[126,170,74,0.23615516701817152],[126,170,75,0.23291372732004206],[126,170,76,0.2297816354098836],[126,170,77,0.22677875241235243],[126,170,78,0.22391735388662476],[126,170,79,0.22120173414980907],[126,171,64,0.25562065910499],[126,171,65,0.2558258038878112],[126,171,66,0.25602880187860844],[126,171,67,0.2557635443614111],[126,171,68,0.2525537156956584],[126,171,69,0.2491934730670477],[126,171,70,0.24571960849310623],[126,171,71,0.24217244681134906],[126,171,72,0.23859343331979652],[126,171,73,0.23502298554135537],[126,171,74,0.231498617636205],[126,171,75,0.22805334551887163],[126,171,76,0.22471438026390803],[126,171,77,0.22150211691009916],[126,171,78,0.21842942530208787],[126,171,79,0.21550124914488003],[126,172,64,0.2527662201487386],[126,172,65,0.25282453462680204],[126,172,66,0.2528850222034747],[126,172,67,0.2519940780277315],[126,172,68,0.2486129938234148],[126,172,69,0.24507603155779498],[126,172,70,0.2414203600553879],[126,172,71,0.23768664674878062],[126,172,72,0.23391666664313818],[126,172,73,0.2301511726989687],[126,172,74,0.22642803603777462],[126,172,75,0.22278066391580464],[126,172,76,0.21923670294635061],[126,172,77,0.2158170345848562],[126,172,78,0.21253506942773095],[126,172,79,0.20939634641965427],[126,173,64,0.2497336914495168],[126,173,65,0.24965101964544162],[126,173,66,0.24957495298334073],[126,173,67,0.24778701340275072],[126,173,68,0.24423726141467136],[126,173,69,0.24052607745178312],[126,173,70,0.2366912963585351],[126,173,71,0.23277412983456208],[126,173,72,0.2288168095469964],[126,173,73,0.2248604881619382],[126,173,74,0.2209434065432104],[126,173,75,0.21709933491650238],[126,173,76,0.213356295341612],[126,173,77,0.20973557237859886],[126,173,78,0.20625101837941168],[126,173,79,0.20290865938930436],[126,174,64,0.24656138129070929],[126,174,65,0.24634368851320085],[126,174,66,0.24613684570396355],[126,174,67,0.24311956962740672],[126,174,68,0.23940514570653637],[126,174,69,0.2355240565222393],[126,174,70,0.2315151333577356],[126,174,71,0.22742036281251582],[126,174,72,0.22328257627828357],[126,174,73,0.21914339330020993],[126,174,74,0.21504142688404507],[126,174,75,0.2110107583698912],[126,174,76,0.2070796890483696],[126,174,77,0.2032697752483379],[126,174,78,0.19959515318124313],[126,174,79,0.196062159389949],[126,175,64,0.24328944089373924],[126,175,65,0.24294275395083909],[126,175,66,0.24163537634224355],[126,175,67,0.23796829674569203],[126,175,68,0.2340946948569575],[126,175,69,0.23004992166336385],[126,175,70,0.22587416079825404],[126,175,71,0.2216104198363617],[126,175,72,0.21730227780791267],[126,175,73,0.21299188225995516],[126,175,74,0.20871820371213376],[126,175,75,0.20451555492514956],[126,175,76,0.20041238196599004],[126,175,77,0.196430333618384],[126,175,78,0.19258361525378218],[126,175,79,0.18887863285168455],[126,176,64,0.2399225477530004],[126,176,65,0.23945312536633578],[126,176,66,0.23615924360124937],[126,176,67,0.23234487901531467],[126,176,68,0.22831806372343086],[126,176,69,0.22411631161871146],[126,176,70,0.21978149049630183],[126,176,71,0.21535785317152178],[126,176,72,0.21088985509890318],[126,176,73,0.2064202168181087],[126,176,74,0.2019882388336101],[126,176,75,0.1976283761174084],[126,176,76,0.19336907900149355],[126,176,77,0.18923190680281338],[126,176,78,0.18523092010209344],[126,176,79,0.18137235718300698],[126,177,64,0.23645051823946706],[126,177,65,0.233919410287281],[126,177,66,0.23023241154915491],[126,177,67,0.22627686834367486],[126,177,68,0.22210325772745032],[126,177,69,0.21775165328119384],[126,177,70,0.2132658983249554],[126,177,71,0.20869168038983532],[126,177,72,0.20407443139697704],[126,177,73,0.19945746744446435],[126,177,74,0.19488037553988818],[126,177,75,0.19037765421087383],[126,177,76,0.18597761451568048],[126,177,77,0.18170154756465476],[126,177,78,0.17756316425456808],[126,177,79,0.17356831251567809],[126,178,64,0.2311878083079082],[126,178,65,0.22770337330522727],[126,178,66,0.2238883552044268],[126,178,67,0.21979837944247735],[126,178,68,0.21548510954426808],[126,178,69,0.2109915242321141],[126,178,70,0.20636368802953506],[126,178,71,0.20164887326824288],[126,178,72,0.1968935553474984],[126,178,73,0.1921416418153771],[126,178,74,0.187432942311421],[126,178,75,0.18280188601763658],[126,178,76,0.17827649286793668],[126,178,77,0.1738776043683519],[126,178,78,0.1696183794852926],[126,178,79,0.16550406067067097],[126,179,64,0.22470406060768996],[126,179,65,0.22110211183396394],[126,179,66,0.21716611411211262],[126,179,67,0.2129492298955959],[126,179,68,0.20850433888532638],[126,179,69,0.20387761284860217],[126,179,70,0.19911753243570565],[126,179,71,0.1942730614475574],[126,179,72,0.18939174942808096],[126,179,73,0.18451806169877302],[126,179,74,0.17969194354837653],[126,179,75,0.17494762491185317],[126,179,76,0.1703126714902059],[126,179,77,0.16580728787946955],[126,179,78,0.16144387789687883],[126,179,79,0.1572268669185368],[126,180,64,0.2178713869655439],[126,180,65,0.21415865944442913],[126,180,66,0.2101094054817985],[126,180,67,0.20577399720173462],[126,180,68,0.20120653620952425],[126,180,69,0.1964566116043451],[126,180,70,0.19157525971063363],[126,180,71,0.18661319575917373],[126,180,72,0.18161903546414923],[126,180,73,0.17663773707805555],[126,180,74,0.1717092702845351],[126,180,75,0.16686751792509177],[126,180,76,0.16213941618810598],[126,180,77,0.15754433852078378],[126,180,78,0.15309372816007927],[126,180,79,0.14879098382074848],[126,181,64,0.210735924932859],[126,181,65,0.20691973061148436],[126,181,66,0.20276564816851833],[126,181,67,0.1983209917638528],[126,181,68,0.1936410693944621],[126,181,69,0.18877904266834997],[126,181,70,0.18378858387259892],[126,181,71,0.1787221705244177],[126,181,72,0.1736294366607673],[126,181,73,0.16855573709603158],[126,181,74,0.16354093063169725],[126,181,75,0.15861838785323876],[126,181,76,0.153814228797716],[126,181,77,0.14914679542411238],[126,181,78,0.14462636347040794],[126,181,79,0.14025509794022487],[126,182,64,0.20334645735152931],[126,182,65,0.1994346872820558],[126,182,66,0.1951848963327492],[126,182,67,0.19064114471313667],[126,182,68,0.1858599123181807],[126,182,69,0.18089801482994353],[126,182,70,0.17581177867255648],[126,182,71,0.1706554040644514],[126,182,72,0.16547945552275725],[126,182,73,0.1603295573443255],[126,182,74,0.15524529965184597],[126,182,75,0.15025936026065986],[126,182,76,0.14539684728670393],[126,182,77,0.14067486708150806],[126,182,78,0.13610232174945594],[126,182,79,0.13167994017883777],[126,183,64,0.20462176311637173],[126,183,65,0.19978714588958923],[126,183,66,0.19470462617691936],[126,183,67,0.18940981648723115],[126,183,68,0.1839554552716188],[126,183,69,0.17839735880464563],[126,183,70,0.1727899951305832],[126,183,71,0.16718491001306793],[126,183,72,0.1616293542846016],[126,183,73,0.15616510868480066],[126,183,74,0.15082751136508532],[126,183,75,0.14564469292151466],[126,183,76,0.14063702349925802],[126,183,77,0.13581677619483082],[126,183,78,0.13118801066975627],[126,183,79,0.12674668058367597],[126,184,64,0.20638436954472905],[126,184,65,0.20145946705973192],[126,184,66,0.19628844112933838],[126,184,67,0.1909033290213696],[126,184,68,0.1853577487747478],[126,184,69,0.17971093159225118],[126,184,70,0.17401967768429574],[126,184,71,0.16833686226168887],[126,184,72,0.1627102166776224],[126,184,73,0.15718129837087708],[126,184,74,0.15178465436759683],[126,184,75,0.1465471827996464],[126,184,76,0.14148769659664662],[126,184,77,0.13661669320926145],[126,184,78,0.13193633392708617],[126,184,79,0.12744063606734463],[126,185,64,0.20805598417395527],[126,185,65,0.20303964266025998],[126,185,66,0.1977804818909447],[126,185,67,0.19230703700655938],[126,185,68,0.18667373854038796],[126,185,69,0.18094309513276366],[126,185,70,0.17517408072243287],[126,185,71,0.1694207259167847],[126,185,72,0.16373105728878273],[126,185,73,0.15814621659572442],[126,185,74,0.15269976425220935],[126,185,75,0.14741717110709723],[126,185,76,0.14231550229071885],[126,185,77,0.1374032966170732],[126,185,78,0.13268064474993072],[126,185,79,0.1281394690733064],[126,186,64,0.20967184078410497],[126,186,65,0.20456327962575072],[126,186,66,0.19921672567994614],[126,186,67,0.19365737319220244],[126,186,68,0.18794038736247837],[126,186,69,0.1821313438853607],[126,186,70,0.17629117489892285],[126,186,71,0.1704748507118201],[126,186,72,0.1647304796108824],[126,186,73,0.15909857863322535],[126,186,74,0.15361151921102634],[126,186,75,0.14829315133115448],[126,186,76,0.14315860958566243],[126,186,77,0.1382143042255269],[126,186,78,0.13345810007260703],[126,186,79,0.128879685894979],[126,187,64,0.21126350251158024],[126,187,65,0.2060622550763986],[126,187,66,0.20062932481111617],[126,187,67,0.19498680948333522],[126,187,68,0.18919052302106423],[126,187,69,0.1833088317590215],[126,187,70,0.17740436011684202],[126,187,71,0.17153276718314328],[126,187,72,0.16574200735049865],[126,187,73,0.16007175299505852],[126,187,74,0.15455298269074008],[126,187,75,0.14920773819831365],[126,187,76,0.14404905322060108],[126,187,77,0.13908105666903606],[126,187,78,0.13429925294755374],[126,187,79,0.12969098152839134],[126,188,64,0.2128572698106934],[126,188,65,0.2075631115997044],[126,188,66,0.20204499104667906],[126,188,67,0.1963222280973183],[126,188,68,0.1904511946267004],[126,188,69,0.18450271562367185],[126,188,70,0.1785408010119941],[126,188,71,0.17262152099616676],[126,188,72,0.1667924258577353],[126,188,73,0.16109211902656287],[126,188,74,0.1555499865097318],[126,188,75,0.15018608552704654],[126,188,76,0.145011194969629],[126,188,77,0.14002703006932116],[126,188,78,0.1352266234450325],[126,188,79,0.13059487447876875],[126,189,64,0.21447248306146036],[126,189,65,0.20908534894812672],[126,189,66,0.20348328018579656],[126,189,67,0.19768319860872743],[126,189,68,0.1917419425219527],[126,189,69,0.18573242251785504],[126,189,70,0.17971969905331717],[126,189,71,0.17375995976184838],[126,189,72,0.1679000949193032],[126,189,73,0.16217741767134009],[126,189,74,0.15661953171340395],[126,189,75,0.15124434889562616],[126,189,76,0.1460602590085563],[126,189,77,0.1410664537934416],[126,189,78,0.1362534070162637],[126,189,79,0.13160351224871772],[126,190,64,0.21611971780458378],[126,190,65,0.21063961017865235],[126,190,66,0.2049547749861213],[126,190,67,0.19908015906038248],[126,190,68,0.19307298002084744],[126,190,69,0.18700783896056078],[126,190,70,0.18095049982165193],[126,190,71,0.17495697108725305],[126,190,72,0.16907323186886558],[126,190,73,0.16333509459473128],[126,190,74,0.15776820661715046],[126,190,75,0.15238819285285732],[126,190,76,0.14720094136932357],[126,190,77,0.1422030336334711],[126,190,78,0.1373823209510513],[126,190,79,0.13271864844553038],[126,191,64,0.21779887049007796],[126,191,65,0.21222576016755448],[126,191,66,0.20645916442164125],[126,191,67,0.200512499233983],[126,191,68,0.19444328518878065],[126,191,69,0.188327420704238],[126,191,70,0.18223103396722903],[126,191,71,0.17620967055394976],[126,191,72,0.17030816393129175],[126,191,73,0.16456063483315161],[126,191,74,0.1589906214784833],[126,191,75,0.15361134240779103],[126,191,76,0.14842609352786823],[126,191,77,0.1434287807731165],[126,191,78,0.13860458961894256],[126,191,79,0.13393079251900056],[126,192,64,0.21949713253544365],[126,192,65,0.21383085434484478],[126,192,66,0.2079832171957717],[126,192,67,0.20196654409342935],[126,192,68,0.1958386007912979],[126,192,69,0.18967622119988403],[126,192,70,0.18354559028988032],[126,192,71,0.17750153827320658],[126,192,72,0.17158754868592413],[126,192,73,0.1658358881194597],[126,192,74,0.16026785923899403],[126,192,75,0.1548941785505341],[126,192,76,0.14971548020469866],[126,192,77,0.14472294695770022],[126,192,78,0.139899069251569],[126,192,79,0.13521853322664742],[126,193,64,0.22118685040286676],[126,193,65,0.21542699540822083],[126,193,66,0.20949864734740023],[126,193,67,0.20341343533754497],[126,193,68,0.19722934047018728],[126,193,69,0.19102383698327136],[126,193,70,0.1848629193341279],[126,193,71,0.17880050262694563],[126,193,72,0.17287856150756098],[126,193,73,0.16712738402331892],[126,193,74,0.16156594178209274],[126,193,75,0.15620237757900451],[126,193,76,0.1510346114983],[126,193,77,0.1460510663431805],[126,193,78,0.1412315131013358],[126,193,79,0.13654803701857865],[126,194,64,0.2228232693235656],[126,194,65,0.21696907569659238],[126,194,66,0.21095986971127564],[126,194,67,0.20480690892750156],[126,194,68,0.1985683991403466],[126,194,69,0.19232226813460956],[126,194,70,0.18613416584469414],[126,194,71,0.18005696976886928],[126,194,72,0.17413104882318964],[126,194,73,0.16838463604033088],[126,194,74,0.1628343111641587],[126,194,75,0.15748559403610876],[126,194,76,0.15233364951974493],[126,194,77,0.14736410456711282],[126,194,78,0.14255397789778715],[126,194,79,0.13787272263885078],[126,195,64,0.22434282179196652],[126,195,65,0.21839308352871173],[126,195,66,0.21230233926195266],[126,195,67,0.20608167774786917],[126,195,68,0.1997895897022985],[126,195,69,0.19350442365065276],[126,195,70,0.18729146010189912],[126,195,71,0.18120251977272378],[126,195,72,0.1752763484502523],[126,195,73,0.1695391051344945],[126,195,74,0.16400495424600675],[126,195,75,0.1586767625393635],[126,195,76,0.15354690122374767],[126,195,77,0.14859815366015958],[126,195,78,0.14380472888341775],[126,195,79,0.13913338108622036],[126,196,64,0.22569669173209844],[126,196,65,0.2196505034354169],[126,196,66,0.21347771904238252],[126,196,67,0.20718934460060193],[126,196,68,0.2008442009968794],[126,196,69,0.19452107662158485],[126,196,70,0.18828490564473965],[126,196,71,0.18218647582618397],[126,196,72,0.17626293091067777],[126,196,73,0.17053837124796775],[126,196,74,0.16502455317414647],[126,196,75,0.159721687554726],[126,196,76,0.1546193377601041],[126,196,77,0.1496974172223391],[126,196,78,0.14492728661137136],[126,196,79,0.14027295056881325],[126,197,64,0.22687948404691355],[126,197,65,0.22073725527539276],[126,197,66,0.2144830052591148],[126,197,67,0.2081276883728124],[126,197,68,0.20173038764123769],[126,197,69,0.19537021248584108],[126,197,70,0.18911167191581937],[126,197,71,0.18300447747687276],[126,197,72,0.1770841570467861],[126,197,73,0.17137276224849674],[126,197,74,0.165879669786784],[126,197,75,0.1606024768870125],[126,197,76,0.15552799089332325],[126,197,77,0.15063331297115137],[126,197,78,0.14588701575784258],[126,197,79,0.14125041471517627],[126,198,64,0.2278912462323607],[126,198,65,0.2216544903003011],[126,198,66,0.21532018103372402],[126,198,67,0.20889921930535488],[126,198,68,0.202450781922683],[126,198,69,0.1960540475530613],[126,198,70,0.18977292359936782],[126,198,71,0.18365593875525452],[126,198,72,0.1777369593891724],[126,198,73,0.17203599532855623],[126,198,74,0.1665600951418629],[126,198,75,0.16130433089591747],[126,198,76,0.1562528722529866],[126,198,77,0.15138014966787244],[126,198,78,0.14665210635309753],[126,198,79,0.14202753859946668],[126,199,64,0.22873354502198],[126,199,65,0.22240460328823874],[126,199,66,0.21599219041805012],[126,199,67,0.20950713439233573],[126,199,68,0.2030084582284208],[126,199,69,0.196575047026878],[126,199,70,0.1902699495815161],[126,199,71,0.18414035413990487],[126,199,72,0.178218396225458],[126,199,73,0.17252205197966117],[126,199,74,0.16705611693764938],[126,199,75,0.1618132700369484],[126,199,76,0.15677522255343168],[126,199,77,0.15191395156208307],[126,199,78,0.1471930174359782],[126,199,79,0.14256896482444364],[126,200,64,0.22940918371823824],[126,200,65,0.22299099303792094],[126,200,66,0.2165027621948275],[126,200,67,0.20995522249271825],[126,200,68,0.20340693620395003],[126,200,69,0.19693604242683108],[126,200,70,0.1906044097582031],[126,200,71,0.1844576882685488],[126,200,72,0.17852619570934078],[126,200,73,0.17282588564584417],[126,200,74,0.1673593972695565],[126,200,75,0.16211718653736243],[126,200,76,0.15707873818534937],[126,200,77,0.15221385807572396],[126,200,78,0.14748404525835912],[126,200,79,0.14284394306352724],[126,201,64,0.22992193230819713],[126,201,65,0.22341783944702515],[126,201,66,0.21685625531103575],[126,201,67,0.21024779782134742],[126,201,68,0.2036502208555312],[126,201,69,0.1971403962003634],[126,201,70,0.1907786407837161],[126,201,71,0.1846088376383286],[126,201,72,0.17865938607505472],[126,201,73,0.17294423041756754],[126,201,74,0.16746396691978468],[126,201,75,0.16220702838598167],[126,201,76,0.15715094592049578],[126,201,77,0.15226368715072577],[126,201,78,0.14750507019674183],[126,201,79,0.1428282526025397],[126,202,64,0.2302762703937468],[126,202,65,0.22368989727694322],[126,202,66,0.21705752614184604],[126,202,67,0.21038966213998817],[126,202,68,0.2037428800666188],[126,202,69,0.19719221416737806],[126,202,70,0.1907960215943261],[126,202,71,0.18459616533685919],[126,202,72,0.17861901321652346],[126,202,73,0.1728765122490839],[126,202,74,0.1673673378879395],[126,202,75,0.16207811756709495],[126,202,76,0.15698472787441967],[126,202,77,0.15205366460847755],[126,202,78,0.14724348490768469],[126,202,79,0.14250632058819868],[126,203,64,0.23047714297787242],[126,203,65,0.22381230672035568],[126,203,66,0.21711181780091673],[126,203,67,0.21038609599168856],[126,203,68,0.20369016002687587],[126,203,69,0.19709660647553223],[126,203,70,0.1906613995849069],[126,203,71,0.18442410989739907],[126,203,72,0.1784089469509843],[126,203,73,0.17262586425167362],[126,203,74,0.16707173594911928],[126,203,75,0.16173160455575616],[126,203,76,0.1565799989676268],[126,203,77,0.15158232197285537],[126,203,78,0.14669630637453873],[126,203,79,0.14187353880776593],[126,204,64,0.23052972916035996],[126,204,65,0.22379042090269083],[126,204,66,0.2170246717308397],[126,204,67,0.2102428793442761],[126,204,68,0.20349813910041467],[126,204,69,0.1968599977788937],[126,204,70,0.19038157835805952],[126,204,71,0.18409986942078474],[126,204,72,0.17803677734422715],[126,204,73,0.17220024768079195],[126,204,74,0.16658545509980466],[126,204,75,0.1611760611737007],[126,204,76,0.15594553921530277],[126,204,77,0.15085856530554193],[126,204,78,0.14587247459670866],[126,204,79,0.14093878193404386],[126,205,64,0.2304392238090902],[126,205,65,0.2236296504637323],[126,205,66,0.2168018618257757],[126,205,67,0.20996634203100653],[126,205,68,0.20317392068708512],[126,205,69,0.1964904873855744],[126,205,70,0.18996586800466908],[126,205,71,0.1836341621531175],[126,205,72,0.17751480252817728],[126,205,73,0.1716136802961208],[126,205,74,0.1659243358202458],[126,205,75,0.16042921398071194],[126,205,76,0.15510098325825467],[126,205,77,0.14990391769146533],[126,205,78,0.14479534076776393],[126,205,79,0.13972713027042394],[126,206,64,0.23021063228722202],[126,206,65,0.22333532538198653],[126,206,66,0.21644935135732576],[126,206,67,0.2095634443988725],[126,206,68,0.20272586565748363],[126,206,69,0.19599826015186494],[126,206,70,0.18942669891239197],[126,206,71,0.18304206475179374],[126,206,72,0.176861109491453],[126,206,73,0.17088757382986428],[126,206,74,0.1651133691447817],[126,206,75,0.1595198204452699],[126,206,76,0.15407896962276335],[126,206,77,0.14875493809283205],[126,206,78,0.14350534787456024],[126,206,79,0.13828280012113964],[126,207,64,0.22985141350798868],[126,207,65,0.22291579321336885],[126,207,66,0.21597669268140263],[126,207,67,0.2090453045251195],[126,207,68,0.20216706059983017],[126,207,69,0.19539880413087402],[126,207,70,0.18878239886812076],[126,207,71,0.18234516675042167],[126,207,72,0.17610093717697958],[126,207,73,0.1700511551682853],[126,207,74,0.16418604767909442],[126,207,75,0.15848584725641543],[126,207,76,0.15292207217398623],[126,207,77,0.1474588621226942],[126,207,78,0.14205436849669822],[126,207,79,0.13579091850154854],[126,208,64,0.22937940161788997],[126,208,65,0.22239118930396592],[126,208,66,0.21540605906557883],[126,208,67,0.20843583835070317],[126,208,68,0.20152287647135803],[126,208,69,0.19471868896897665],[126,208,70,0.18806050848044836],[126,208,71,0.18157177859053772],[126,208,72,0.17526319045087943],[126,208,73,0.16913377396080528],[126,208,74,0.16317204274380298],[126,208,75,0.1573571920905025],[126,208,76,0.1516603489839501],[126,208,77,0.1460458732769476],[126,208,78,0.14047270905728054],[126,208,79,0.13205672579648617],[126,209,64,0.22881338975859852],[126,209,65,0.22178226809050233],[126,209,66,0.21475978043844077],[126,209,67,0.20775851541909568],[126,209,68,0.20081749582240954],[126,209,69,0.19398243119403472],[126,209,70,0.18728554734283911],[126,209,71,0.18074614040853323],[126,209,72,0.17437159653399412],[126,209,73,0.16815846103263535],[126,209,74,0.1620935562539692],[126,209,75,0.15615514729519728],[126,209,76,0.15031415465880585],[126,209,77,0.14453541291710134],[126,209,78,0.13798283927866706],[126,209,79,0.12824894478462606],[126,210,64,0.22817016859233794],[126,210,65,0.22110703678049923],[126,210,66,0.21405674751221598],[126,210,67,0.20703272893288513],[126,210,68,0.20007045485441455],[126,210,69,0.19320941646641548],[126,210,70,0.18647651982560878],[126,210,71,0.17988670362515147],[126,210,72,0.17344393802482802],[126,210,73,0.1671422670597836],[126,210,74,0.16096689379673132],[126,210,75,0.15489530735996032],[126,210,76,0.1488984509099744],[126,210,77,0.14294192962646857],[126,210,78,0.13409968567247063],[126,210,79,0.12437043944758243],[126,211,64,0.22746456086388062],[126,211,65,0.22038086931833417],[126,211,66,0.21331260966026866],[126,211,67,0.20627408170244682],[126,211,68,0.19929701979845282],[126,211,69,0.1924143661115336],[126,211,70,0.1856474690840689],[126,211,71,0.17900676762783066],[126,211,72,0.17249276563170318],[126,211,73,0.16609704321986463],[126,211,74,0.15980330389065064],[126,211,75,0.153588456629628],[126,211,76,0.14742373206038345],[126,211,77,0.1397275717745422],[126,211,78,0.13013056462541395],[126,211,79,0.1204272857314818],[126,212,64,0.22670946855090862],[126,212,65,0.21961663301652457],[126,212,66,0.21253998434368654],[126,212,67,0.2054946815485542],[126,212,68,0.19850856963519328],[126,212,69,0.19160780565152033],[126,212,70,0.18480802734725943],[126,212,71,0.17811510555809376],[126,212,72,0.17152609135706937],[126,212,73,0.1650301921991552],[126,212,74,0.15860977614561578],[126,212,75,0.15224140322923496],[126,212,76,0.1451135967630269],[126,212,77,0.13565994816012358],[126,212,78,0.12608457010759466],[126,212,79,0.11642788140904918],[126,213,64,0.225915932851301],[126,213,65,0.2188248281426678],[126,213,66,0.21174867840107045],[126,213,67,0.20470344648239613],[126,213,68,0.19771298547394373],[126,213,69,0.19079653562927135],[126,213,70,0.1839639627349928],[126,213,71,0.17721657938409857],[126,213,72,0.17054806222445593],[126,213,73,0.1639453895358079],[126,213,74,0.15738979817353654],[126,213,75,0.15026274380093924],[126,213,76,0.1409497165583302],[126,213,77,0.13150778222344087],[126,213,78,0.12197287184718003],[126,213,79,0.11238217057219109],[126,214,64,0.2250932072700085],[126,214,65,0.2180137407658906],[126,214,66,0.21094592152732983],[126,214,67,0.2039064199956113],[126,214,68,0.19691504691435624],[126,214,69,0.18998410501975505],[126,214,70,0.18311772284748257],[126,214,71,0.17631274442903055],[126,214,72,0.16955961462233787],[126,214,73,0.1628432752553775],[126,214,74,0.15520323675966616],[126,214,75,0.14601492674848857],[126,214,76,0.13669830784074605],[126,214,77,0.12728497932237545],[126,214,78,0.11780801445059542],[126,214,79,0.10830098381158478],[126,215,64,0.2242488440820552],[126,215,65,0.2171896091794908],[126,215,66,0.21013661227808883],[126,215,67,0.203107096800928],[126,215,68,0.19611683571871355],[126,215,69,0.18917128752341883],[126,215,70,0.18226897536651998],[126,215,71,0.1754024435146605],[126,215,72,0.16855910932099658],[126,215,73,0.15998397923247867],[126,215,74,0.15089305063502118],[126,215,75,0.14168108007192282],[126,215,76,0.1323758535683188],[126,215,77,0.12300664053181201],[126,215,78,0.11360331704270234],[126,215,79,0.10419549521847551],[126,216,64,0.22338879446066306],[126,216,65,0.21635680422741244],[126,216,66,0.20932357694481724],[126,216,67,0.20230675936925882],[126,216,68,0.19531814712402415],[126,216,69,0.1883565610331147],[126,216,70,0.1814151458982729],[126,216,71,0.17356854384834722],[126,216,72,0.16467032723560387],[126,216,73,0.1556406785481352],[126,216,74,0.14650228823433498],[126,216,75,0.13727996419998775],[126,216,76,0.12799982400221532],[126,216,77,0.1186885022839691],[126,216,78,0.10937237443567825],[126,216,79,0.10007679742185593],[126,217,64,0.22251752257134175],[126,217,65,0.21551802387216662],[126,217,66,0.2085078416529808],[126,217,67,0.20150482561276944],[126,217,68,0.19451690912261377],[126,217,69,0.18699576857829248],[126,217,70,0.17823379652550933],[126,217,71,0.1693385554134665],[126,217,72,0.16032869596753446],[126,217,73,0.15122538922313014],[126,217,74,0.14205154867959904],[126,217,75,0.13283107717376827],[126,217,76,0.12358813957265787],[126,217,77,0.11434646233140469],[126,217,78,0.10512866090641854],[126,217,79,0.09595559595285207],[126,218,64,0.22163813394327586],[126,218,65,0.21467450234994184],[126,218,66,0.2076889180404709],[126,218,67,0.20050565592578418],[126,218,68,0.19182171010510052],[126,218,69,0.18300430912483964],[126,218,70,0.17406955609439556],[126,218,71,0.16503638660967476],[126,218,72,0.15592577885411313],[126,218,73,0.14675999793316882],[126,218,74,0.13756187569509168],[126,218,75,0.12835412723209297],[126,218,76,0.11915870519233257],[126,218,77,0.10999619296514562],[126,218,78,0.10088523773232064],[126,218,79,0.09184202430489646],[126,219,64,0.22075251843830992],[126,219,65,0.21382623426479586],[126,219,66,0.20564405287045534],[126,219,67,0.19686109764771353],[126,219,68,0.1879546314227637],[126,219,69,0.17894243347304298],[126,219,70,0.16984506807138813],[126,219,71,0.1606846590399564],[126,219,72,0.15148413274953285],[126,219,73,0.14226650743496974],[126,219,74,0.13305423014177864],[126,219,75,0.1238685625439743],[126,219,76,0.1147290167939617],[126,219,77,0.1056528424825039],[126,219,78,0.09665456570346131],[126,219,79,0.08774558113206511],[126,220,64,0.21986150814547448],[126,220,65,0.21108759877756506],[126,220,66,0.20216841362704657],[126,220,67,0.1931484869042253],[126,220,68,0.18402869850852788],[126,220,69,0.17483195081634662],[126,220,70,0.16558275778157883],[126,220,71,0.15630597685574163],[126,220,72,0.14702608335915418],[126,220,73,0.13776650332766538],[126,220,74,0.12854900621096238],[126,220,75,0.11939315870730166],[126,220,76,0.11031584092459848],[126,220,77,0.10133082596027874],[126,220,78,0.0924484238951965],[126,220,79,0.08367519109842661],[126,221,64,0.21691263957852858],[126,221,65,0.20780443276878852],[126,221,66,0.19863560068329228],[126,221,67,0.18938770992303272],[126,221,68,0.18006490361556962],[126,221,69,0.17069459915422183],[126,221,70,0.16130471585669554],[126,221,71,0.15192237120937382],[126,221,72,0.14257318466808025],[126,221,73,0.13328065202012307],[126,221,74,0.12406559174239519],[126,221,75,0.11494566468301089],[126,221,76,0.10593496828362287],[126,221,77,0.0970437064474116],[126,221,78,0.08827793604705532],[126,221,79,0.07963939095605667],[126,222,64,0.2138445357838902],[126,222,65,0.2044739878803399],[126,222,66,0.19506440068163336],[126,222,67,0.18559868393022175],[126,222,68,0.17608395522002177],[126,222,69,0.16655152067460524],[126,222,70,0.15703215213577287],[126,222,71,0.1475547548210666],[126,222,72,0.13814569835369211],[126,222,73,0.12882823022473297],[126,222,74,0.11962197317780729],[126,222,75,0.11054250788328784],[126,222,76,0.10160104214375969],[126,222,77,0.09280416774595758],[126,222,78,0.08415370595045192],[126,222,79,0.07564664248727195],[126,223,64,0.2107374131982463],[126,223,65,0.20111386409320942],[126,223,66,0.19147354228235844],[126,223,67,0.1818009156237932],[126,223,68,0.17210578440973948],[126,223,69,0.16242273247480618],[126,223,70,0.1527848514466633],[126,223,71,0.14322238670020235],[126,223,72,0.13376209337263778],[126,223,73,0.12442668634157873],[126,223,74,0.11523438570714525],[126,223,75,0.1061985591809214],[126,223,76,0.09732746264448511],[126,223,77,0.08862407999999436],[126,223,78,0.08008606329848567],[126,223,79,0.07170577399672871],[126,224,64,0.20760775996486738],[126,224,65,0.1977416040629138],[126,224,66,0.18788130217843954],[126,224,67,0.17801304636104376],[126,224,68,0.1681490414732184],[126,224,69,0.15832659246351014],[126,224,70,0.1485806312162524],[126,224,71,0.13894234709904055],[126,224,72,0.1294385659544542],[126,224,73,0.12009123414114285],[126,224,74,0.11091700921064145],[126,224,75,0.10192695865338133],[126,224,76,0.09312636799330234],[126,224,77,0.08451465935695424],[126,224,78,0.07608542149386223],[126,224,79,0.06782655207887611],[126,225,64,0.20447214474320552],[126,225,65,0.19437435292670113],[126,225,66,0.18430509526175579],[126,225,67,0.17425238378685706],[126,225,68,0.16423058247858602],[126,225,69,0.1542792603195226],[126,225,70,0.14443480089482225],[126,225,71,0.13472902281806798],[126,225,72,0.12518858027765703],[126,225,73,0.11583447919865375],[126,225,74,0.10668171064486072],[126,225,75,0.0977390029190399],[126,225,76,0.08900869365183268],[126,225,77,0.0804867230038238],[126,225,78,0.07216274894439317],[126,225,79,0.06402038541429855],[126,226,64,0.20134694348778887],[126,226,65,0.1910285008657059],[126,226,66,0.18076104864527728],[126,226,67,0.17053441965630803],[126,226,68,0.16036494566484516],[126,226,69,0.15029415342033728],[126,226,70,0.1403596232215965],[126,226,71,0.1305936030267031],[126,226,72,0.12102243015004652],[126,226,73,0.11166607857900765],[126,226,74,0.10253783356504577],[126,226,75,0.09364409496395097],[126,226,76,0.08498431062003843],[126,226,77,0.07655104091105935],[126,226,78,0.06833015539879822],[126,226,79,0.06030116236358393],[126,227,64,0.1982513177172404],[126,227,65,0.1877232954600715],[126,227,66,0.17726823503112896],[126,227,67,0.16687768579617404],[126,227,68,0.15656981019247526],[126,227,69,0.14638794165254396],[126,227,70,0.13637073672171482],[126,227,71,0.12655078569570077],[126,227,72,0.11695405672903678],[126,227,73,0.10759947491793616],[126,227,74,0.09849863803141361],[126,227,75,0.08965567037219899],[126,227,76,0.08106721605719641],[126,227,77,0.07272257281817168],[126,227,78,0.06460396724130218],[126,227,79,0.05668697218820673],[126,228,64,0.19521879549658716],[126,228,65,0.18449523059281492],[126,228,66,0.17386575068751442],[126,228,67,0.1633234819035541],[126,228,68,0.15288823981872202],[126,228,69,0.1426049570856796],[126,228,70,0.13251319374273554],[126,228,71,0.12264575069765332],[126,228,72,0.11302814006368414],[126,228,73,0.1036781987179301],[126,228,74,0.09460584675793382],[126,228,75,0.08581299232918276],[126,228,76,0.07729358409416291],[126,228,77,0.06903381241489341],[126,228,78,0.061012460129977755],[126,228,79,0.053201403623272726],[126,229,64,0.19228345160504426],[126,229,65,0.1813817405635985],[126,229,66,0.17059401103185834],[126,229,67,0.15991481642433228],[126,229,68,0.14936539197496448],[126,229,69,0.13899196166767974],[126,229,70,0.12883472625855705],[126,229,71,0.11892649001846411],[126,229,72,0.1092921634649341],[126,229,73,0.09994841596409063],[126,229,74,0.0909034798577689],[126,229,75,0.08215710755913329],[126,229,76,0.0737006828499053],[126,229,77,0.06551748740610698],[126,229,78,0.057583123381583765],[126,229,79,0.04986609268867085],[126,230,64,0.1894743487510845],[126,230,65,0.17841451458562532],[126,230,66,0.1674869930467669],[126,230,67,0.15668760763618356],[126,230,68,0.1460387434033062],[126,230,69,0.1355875403547665],[126,230,70,0.12537451693793286],[126,230,71,0.11543222358575758],[126,230,72,0.1057847858736085],[126,230,73,0.09644760220435411],[126,230,74,0.08742719762943209],[126,230,75,0.07872123519589472],[126,230,76,0.07031868599382768],[126,230,77,0.06220015886752198],[126,230,78,0.054338390551965834],[126,230,79,0.046698896802869115],[126,231,64,0.18681550714212358],[126,231,65,0.1756194578015589],[126,231,66,0.1645722013062137],[126,231,67,0.15367066969901574],[126,231,68,0.14293810984147012],[126,231,69,0.13242216472909013],[126,231,70,0.12216331368857397],[126,231,71,0.11219356851542758],[126,231,72,0.10253606649193463],[126,231,73,0.09320482031582769],[126,231,74,0.08420462647100749],[126,231,75,0.0755311333511862],[126,231,76,0.06717107022949542],[126,231,77,0.059102637954324085],[126,231,78,0.051296062048679855],[126,231,79,0.04371430869642315],[126,232,64,0.1843258909114477],[126,232,65,0.17301667097302342],[126,232,66,0.1618706553731454],[126,232,67,0.15088572385204196],[126,232,68,0.14008569593363415],[126,232,69,0.12951829342671115],[126,232,70,0.11922358922164492],[126,232,71,0.10923276326059955],[126,232,72,0.09956775585101678],[126,232,73,0.09024107781230432],[126,232,74,0.08125577888085148],[126,232,75,0.07260557557874976],[126,232,76,0.06427513953491987],[126,232,77,0.05624054703617868],[126,232,78,0.04846989038488657],[126,232,79,0.04092405144840161],[126,233,64,0.18201941018237242],[126,233,65,0.1706204473149778],[126,233,66,0.15939689675466517],[126,233,67,0.14834743267563893],[126,233,68,0.13749617304910713],[126,233,69,0.126890506881794],[126,233,70,0.11656974305053419],[126,233,71,0.10656394408783124],[126,233,72,0.09689365086700848],[126,233,73,0.08756976150005294],[126,233,74,0.07859356573759041],[126,233,75,0.0699569359449896],[126,233,76,0.061642675516629726],[126,233,77,0.05362502538429581],[126,233,78,0.045870329080208855],[126,233,79,0.038337856629574764],[126,234,64,0.17990493930855253],[126,234,65,0.16843928707523934],[126,234,66,0.15715901608388913],[126,234,67,0.1460634581656461],[126,234,68,0.13517678584740908],[126,234,69,0.12454567733071231],[126,234,70,0.11420834698754316],[126,234,71,0.10419347507836318],[126,234,72,0.09452001523069353],[126,234,73,0.08519715098403235],[126,234,74,0.07622440252679433],[126,234,75,0.06759188454344021],[126,234,76,0.05928071588626173],[126,234,77,0.051263581588776384],[126,234,78,0.04350544755108068],[126,234,79,0.03596442805087522],[126,235,64,0.1779863518506828],[126,235,65,0.1664759304847291],[126,235,66,0.15515870122513922],[126,235,67,0.14403454439569305],[126,235,68,0.1331274884547695],[126,235,69,0.12248317504315177],[126,235,70,0.11213843522105373],[126,235,71,0.10212033286551078],[126,235,72,0.09244606648190744],[126,235,73,0.08312301252611556],[126,235,74,0.07414891117339857],[126,235,75,0.06551219527409272],[126,235,76,0.05719246304405],[126,235,77,0.04916109485224158],[126,235,78,0.04138201429338916],[126,235,79,0.03381259356900921],[126,236,64,0.17626257286910557],[126,236,65,0.16472740972718733],[126,236,66,0.1533913070242061],[126,236,67,0.14225462556790516],[126,236,68,0.13134111113936645],[126,236,69,0.12069511176516584],[126,236,70,0.11035184006743197],[126,236,71,0.10033654732332428],[126,236,72,0.09066453111534692],[126,236,73,0.08134127474216192],[126,236,74,0.07236271911364388],[126,236,75,0.0637156676723312],[126,236,76,0.05537832470624264],[126,236,77,0.04732096724745579],[126,236,78,0.03950675059140652],[126,236,79,0.03189264732241647],[126,237,64,0.17472761381813792],[126,237,65,0.16318508509085689],[126,237,66,0.15184591176725332],[126,237,67,0.14071092444413813],[126,237,68,0.12980352243765797],[126,237,69,0.11916658632216935],[126,237,70,0.10883353837920108],[126,237,71,0.09882766326082401],[126,237,72,0.08916223288445059],[126,237,73,0.07984075145620065],[126,237,74,0.07085732111461233],[126,237,75,0.06219712852223067],[126,237,76,0.05383705257301888],[126,237,77,0.04574639323069682],[126,237,78,0.037887721371413066],[126,237,79,0.030217849372293878],[126,238,64,0.1733631154601334],[126,238,65,0.1618271485876516],[126,238,66,0.15049780640509725],[126,238,67,0.13937645520766354],[126,238,68,0.12848617429932896],[126,238,69,0.11786829927673008],[126,238,70,0.10755436090842346],[126,238,71,0.09756556715060596],[126,238,72,0.08791305661907484],[126,238,73,0.0785982590852836],[126,238,74,0.06961336324028847],[126,238,75,0.06094189182572749],[126,238,76,0.05255938409122758],[126,238,77,0.04443418540473018],[126,238,78,0.036528343720456435],[126,238,79,0.028798612497053854],[126,239,64,0.17212017274212957],[126,239,65,0.16060138125642334],[126,239,66,0.1492920863301924],[126,239,67,0.13819433990972096],[126,239,68,0.1273310253829352],[126,239,69,0.11674196099701335],[126,239,70,0.10645676340166446],[126,239,71,0.09649450403376207],[126,239,72,0.08686410202627709],[126,239,73,0.07756481005792541],[126,239,74,0.06858679312739757],[126,239,75,0.059911800112564945],[126,239,76,0.051513927856737564],[126,239,77,0.04336047741269362],[126,239,78,0.035412901974913855],[126,239,79,0.027627845939541228],[126,240,64,0.17091433066087153],[126,240,65,0.15942321472691726],[126,240,66,0.1481443035748713],[126,240,67,0.13708051647506184],[126,240,68,0.12625473163690934],[126,240,69,0.1157053732913964],[126,240,70,0.1054602091713888],[126,240,71,0.09553619039965537],[126,240,72,0.08593999210382268],[126,240,73,0.07666863240919924],[126,240,74,0.06771016952757333],[126,240,75,0.05904447655867726],[126,240,76,0.050644093525011084],[126,240,77,0.04247515607181459],[126,240,78,0.034498400186087116],[126,240,79,0.026670242219812797],[126,241,64,0.1696694562100028],[126,241,65,0.15821673663267258],[126,241,66,0.14697880819756326],[126,241,67,0.1359596390410805],[126,241,68,0.1251823360880181],[126,241,69,0.11468413526893351],[126,241,70,0.1044911048121752],[126,241,71,0.09461817310279737],[126,241,72,0.08506982186386702],[126,241,73,0.07584084313601792],[126,241,74,0.06691715950817159],[126,241,75,0.05827670697320683],[126,241,76,0.049890379708895656],[126,241,77,0.04172303601820222],[126,241,78,0.033734564607794254],[126,241,79,0.025881010337315803],[126,242,64,0.16832708082524334],[126,242,65,0.156923130874524],[126,242,66,0.14573640426422108],[126,242,67,0.13477208198644003],[126,242,68,0.12405376046234574],[126,242,69,0.11361776274797633],[126,242,70,0.10348868321528333],[126,242,71,0.09367960300657216],[126,242,72,0.08419293700148321],[126,242,73,0.07502133041048648],[126,242,74,0.06614860418931791],[126,242,75,0.05755074841146923],[126,242,76,0.04919696268451592],[126,242,77,0.04105074265209924],[126,242,78,0.03307101159042171],[126,242,79,0.025213296083874105],[126,243,64,0.16684420193430002],[126,243,65,0.15549856597611217],[126,243,66,0.14437234301058238],[126,243,67,0.1334720589618368],[126,243,68,0.12282207235545882],[126,243,69,0.11245812528396949],[126,243,70,0.10240363082760157],[126,243,71,0.09267007084146618],[126,243,72,0.08325799416263847],[126,243,73,0.07415805106442715],[126,243,74,0.0653520629061328],[126,243,75,0.05681412589010352],[126,243,76,0.048511747807662264],[126,243,77,0.04040701663279857],[126,243,78,0.032457799810845636],[126,243,79,0.02461897308626845],[126,244,64,0.16519123705437805],[126,244,65,0.15391223527252496],[126,244,66,0.14285446559030268],[126,244,67,0.13202588766138576],[126,244,68,0.12145189282303426],[126,244,69,0.11116801704449572],[126,244,70,0.10119684115430103],[126,244,71,0.09154856089385667],[126,244,72,0.08222213003765867],[126,244,73,0.07320642751574649],[126,244,74,0.06448144725817695],[126,244,75,0.05601950946403976],[126,244,76,0.04778649198685217],[126,244,77,0.03974308052521641],[126,244,78,0.03184603631572014],[126,244,79,0.024049480041648384],[126,245,64,0.1633501330390175],[126,245,65,0.15214455146085393],[126,245,66,0.14116149783750626],[126,245,67,0.1304104026353637],[126,245,68,0.11991794654096581],[126,245,69,0.10971986351075809],[126,245,70,0.09983829630210847],[126,245,71,0.09028252413301159],[126,245,72,0.08105024069671027],[126,245,73,0.07212884536496354],[126,245,74,0.06349674609344433],[126,245,75,0.055124672542705797],[126,245,76,0.046976997934959956],[126,245,77,0.03901306818164902],[126,245,78,0.031188536842649262],[126,245,79,0.023456704512236838],[126,246,64,0.16131263320198044],[126,246,65,0.15018549815716825],[126,246,66,0.13928149957668526],[126,246,67,0.12861151853674788],[126,246,68,0.11820375676150208],[126,246,69,0.10809456604655332],[126,246,70,0.09830607840495473],[126,246,71,0.08884707241057777],[126,246,72,0.07971437259131674],[126,246,73,0.07089425287790638],[126,246,74,0.06236384244181507],[126,246,75,0.054092532270360344],[126,246,76,0.046043380849023346],[126,246,77,0.03817451735088917],[126,246,78,0.03044054077431401],[126,246,79,0.02279391351952491],[126,247,64,0.15907870515244177],[126,247,65,0.14803314120041502],[126,247,66,0.13721047109750223],[126,247,67,0.1266229462660901],[126,247,68,0.11630048735017505],[126,247,69,0.10628048641872606],[126,247,70,0.09658551280005918],[126,247,71,0.08722429537533455],[126,247,72,0.07819322663562495],[126,247,73,0.06947786354078712],[126,247,74,0.06105442336315911],[126,247,75,0.05289127272571856],[126,247,76,0.04495040807834436],[126,247,77,0.03718892589815302],[126,247,78,0.029560480953569376],[126,247,79,0.022016731033921204],[126,248,64,0.1566551322592748],[126,248,65,0.14569230251654897],[126,248,66,0.13495111947350102],[126,248,67,0.12444506452842163],[126,248,68,0.11420593422394934],[126,248,69,0.10427257337396369],[126,248,70,0.0946684448273185],[126,248,71,0.08540270173352896],[126,248,72,0.07647177675042138],[126,248,73,0.06786096282410001],[126,248,74,0.05954598360596718],[126,248,75,0.051494551606964145],[126,248,76,0.043667912232281794],[126,248,77,0.03602237189136748],[126,248,78,0.028510808441150417],[126,248,79,0.021084162292004792],[126,249,64,0.15405427172018843],[126,249,65,0.1431733994032081],[126,249,66,0.13251178743943273],[126,249,67,0.12208394933958557],[126,249,68,0.11192366852172128],[126,249,69,0.10207163337332653],[126,249,70,0.09255265210600179],[126,249,71,0.08337678644969197],[126,249,72,0.0745410041998672],[126,249,73,0.0660308202203197],[126,249,74,0.057821923881890044],[126,249,75,0.04988179095840491],[126,249,76,0.0421712780499488],[126,249,77,0.034646197661091685],[126,249,78,0.027258872130874814],[126,249,79,0.019959664689164228],[126,250,64,0.15129298224079546],[126,250,65,0.14049145211340933],[126,250,66,0.12990554754884898],[126,250,67,0.11955056401470862],[126,250,68,0.10946233382120023],[126,250,69,0.09968374755537478],[126,250,70,0.09024139409766357],[126,250,71,0.08114672542203735],[126,250,72,0.0723977489733892],[126,250,73,0.06398070752519938],[126,250,74,0.05587174444805804],[126,250,75,0.048038552362760015],[126,250,76,0.040442003202836904],[126,250,77,0.033037757771390105],[126,250,78,0.025777852948923034],[126,250,79,0.01861226478947136],[126,251,64,0.14839172432506492],[126,251,65,0.13766526260176815],[126,251,66,0.12714946430756627],[126,251,67,0.11686011213431316],[126,251,68,0.10683509966729811],[126,251,69,0.09711983693732207],[126,251,70,0.0877431006891898],[126,251,71,0.07871819907690014],[126,251,72,0.07004467935979744],[126,251,73,0.06171002421044297],[126,251,74,0.05369133454959871],[126,251,75,0.04595699686562807],[126,251,76,0.038468333025665054],[126,251,77,0.031181230644935852],[126,251,78,0.02404775215166338],[126,251,79,0.01701772076495808],[126,252,64,0.14537383613992313],[126,252,65,0.1347167672465143],[126,252,66,0.12426402691748922],[126,252,67,0.11403155591180689],[126,252,68,0.104059273594516],[126,252,69,0.09439537776946871],[126,252,70,0.08507120142330263],[126,252,71,0.07610234620663915],[126,252,72,0.06749038072617104],[126,252,73,0.0592245305855101],[126,252,74,0.05128335810839486],[126,252,75,0.04363642971526867],[126,252,76,0.03624596896984508],[126,252,77,0.02906849336700193],[126,252,78,0.022056433000230073],[126,252,79,0.015159729322884584],[126,253,64,0.14226498783794223],[126,253,65,0.13167056627005796],[126,253,66,0.121272755164095],[126,253,67,0.11108730227490092],[126,253,68,0.10115607370469204],[126,253,69,0.09153026882673222],[126,253,70,0.08224409686133283],[126,253,71,0.07331584922088151],[126,253,72,0.06474956434644771],[126,253,73,0.05653668926459334],[126,253,74,0.04865773584735353],[126,253,75,0.04108392978819743],[126,253,76,0.033778850344833376],[126,253,77,0.026700058947006403],[126,253,78,0.01980071482700915],[126,253,79,0.013031175899554666],[126,254,64,0.1390928171000948],[126,254,65,0.1285536324470352],[126,254,66,0.11820198083669545],[126,254,67,0.10805305882001368],[126,254,68,0.09815056369913742],[126,254,69,0.08854885224973112],[126,254,70,0.07928527338213812],[126,254,71,0.07038115178963988],[126,254,72,0.06184339692186258],[126,254,73,0.05366611523952261],[126,254,74,0.04583222381062277],[126,254,75,0.03831506332776739],[126,254,76,0.031080008654018894],[126,254,77,0.024086075041745154],[126,254,78,0.017287518218373883],[126,254,79,0.010635426591984593],[126,255,64,0.13588674849142188],[126,255,65,0.12539520150762878],[126,255,66,0.11508080687941707],[126,255,67,0.1049578615990608],[126,255,68,0.09507175205686197],[126,255,69,0.08548008933306671],[126,255,70,0.07622356249836573],[126,255,71,0.0673268096255402],[126,255,72,0.05879995119451401],[126,255,73,0.05064013460780228],[126,255,74,0.04283308797683259],[126,255,75,0.03535468134664857],[126,255,76,0.02817249354166672],[126,255,77,0.02124738283962091],[126,255,78,0.014535059717842068],[126,255,79,0.007987659962775348],[126,256,64,0.13267799900136748],[126,256,65,0.12222684641073611],[126,256,66,0.11194124622797398],[126,256,67,0.10183427644758719],[126,256,68,0.0919528567938537],[126,256,69,0.0823578923958779],[126,256,70,0.07309354550271611],[126,256,71,0.06418797487729376],[126,256,72,0.05565477777274198],[126,256,73,0.04749445171378149],[126,256,74,0.03969587436141091],[126,256,75,0.03223779973203907],[126,256,76,0.02509036904312285],[126,256,77,0.018216634467573226],[126,256,78,0.01157409410202196],[126,256,79,0.0051162364868141685],[126,257,64,0.12949976929482437],[126,257,65,0.11908273462766651],[126,257,66,0.10881853913412354],[126,257,67,0.09871877236428994],[126,257,68,0.08883173409538077],[126,257,69,0.07922161092293671],[126,257,70,0.06993610167506721],[126,257,71,0.06100701257715712],[126,257,72,0.052451597006781966],[126,257,73,0.04427392412754396],[126,257,74,0.03646627480818773],[126,257,75,0.029010563211243012],[126,257,76,0.021879782421236005],[126,257,77,0.015039472477530801],[126,257,78,0.008449209184572806],[126,257,79,0.002064112090096333],[126,258,64,0.1263886021529497],[126,258,65,0.1160009802414799],[126,258,66,0.10575249136220924],[126,258,67,0.0956530397375001],[126,258,68,0.08575216987409372],[126,258,69,0.07611728835329712],[126,258,70,0.06679962196150059],[126,258,71,0.05783466361352103],[126,258,72,0.04924340517211156],[126,258,73,0.041033608044265764],[126,258,74,0.033201110091028885],[126,258,75,0.02573116735049477],[126,258,76,0.018599829044348693],[126,258,77,0.01177534431815036],[126,258,78,0.0052195991580913995],[126,258,79,-0.0011104180703206748],[126,259,64,0.12340366515765247],[126,259,65,0.11304134663862593],[126,259,66,0.1028035997984222],[126,259,67,0.092698528850509],[126,259,68,0.08277673300075492],[126,259,69,0.07310862911429133],[126,259,70,0.06374882862060074],[126,259,71,0.0547364323976087],[126,259,72,0.04609615257714308],[126,259,73,0.037839480641180506],[126,259,74,0.0299659004775189],[126,259,75,0.022464145011941654],[126,259,76,0.015313494989864295],[126,259,77,0.008485118445401979],[126,259,78,0.0019434493734251015],[126,259,79,-0.004352395891967717],[126,260,64,0.12061274691559522],[126,260,65,0.11027090187754596],[126,260,66,0.10003839188365407],[126,260,67,0.08992147684500791],[126,260,68,0.07997149344553427],[126,260,69,0.07026142881263506],[126,260,70,0.060848953679393865],[126,260,71,0.05177656274284301],[126,260,72,0.04307257651591423],[126,260,73,0.03475219776995654],[126,260,74,0.02681862137643748],[126,260,75,0.01926419629041618],[126,260,76,0.01207163835958772],[126,260,77,0.0052152925927448695],[126,260,78,-0.0013375565158708878],[126,260,79,-0.007625328037004402],[126,261,64,0.11806462274974015],[126,261,65,0.10773781590827668],[126,261,66,0.09750465230411817],[126,261,67,0.08736956243112848],[126,261,68,0.0773841955029408],[126,261,69,0.06762347440681042],[126,261,70,0.05814764803586589],[126,261,71,0.04900227237805576],[126,261,72,0.04021907960807198],[126,261,73,0.03181691000156327],[126,261,74,0.023802705633428997],[126,261,75,0.01617256474135466],[126,261,76,0.008912855562015666],[126,261,77,0.002001388382226272],[126,261,78,-0.004591355505441122],[126,261,79,-0.010900939295653498],[126,262,64,0.11578944667447179],[126,262,65,0.10547183319632683],[126,262,66,0.09523196168510449],[126,262,67,0.08507249694362805],[126,262,68,0.0750448914455431],[126,262,69,0.06522521526147401],[126,262,70,0.05567568812103751],[126,262,71,0.046444495806711575],[126,262,72,0.03756651097265519],[126,262,73,0.02906408505984836],[126,262,74,0.02094791043937051],[126,262,75,0.013217951820052006],[126,262,76,0.005864445867634682],[126,262,77,-0.0011310320982779098],[126,262,78,-0.0077944355319140525],[126,262,79,-0.014158049474859458],[126,263,64,0.11380051467483059],[126,263,65,0.10348604345430265],[126,263,66,0.09323345835978852],[126,263,67,0.08304376112090311],[126,263,68,0.0729676366897657],[126,263,69,0.06308139911325303],[126,263,70,0.05344853513992018],[126,263,71,0.04411935026031109],[126,263,72,0.03513152404113311],[126,263,73,0.02651074495375356],[126,263,74,0.018271424018060655],[126,263,75,0.010417486471709753],[126,263,76,0.002943240569743939],[126,263,77,-0.004165677477630487],[126,263,78,-0.01093128350675289],[126,263,79,-0.017382151495062136],[126,264,64,0.1120962202036639],[126,264,65,0.1017788409688146],[126,264,66,0.09150778338680668],[126,264,67,0.08128251781182805],[126,264,68,0.07115235132218894],[126,264,69,0.06119286235465815],[126,264,70,0.051468034007237026],[126,264,71,0.04202972414780095],[126,264,72,0.03291803719629259],[126,264,73,0.024161783983397588],[126,264,74,0.015779029216426342],[126,264,75,0.007777725956097548],[126,264,76,1.5643638627471125E-4],[126,264,77,-0.007094861955602275],[126,264,78,-0.013993885422615822],[126,264,79,-0.020565070005826063],[126,265,64,0.11066220023392731],[126,265,65,0.10033607081445256],[126,265,66,0.09004120707139623],[126,265,67,0.07977569883408898],[126,265,68,0.06958684618535996],[126,265,69,0.059548472819501035],[126,265,70,0.049724250156514285],[126,265,71,0.040166986186747376],[126,265,72,0.030918795442274313],[126,265,73,0.022011365857166575],[126,265,74,0.013466322277956043],[126,265,75,0.005295686241866849],[126,265,76,-0.002497568498565241],[126,265,77,-0.009918865358134632],[126,265,78,-0.011704098269911478],[126,265,79,-0.01246264094061511],[126,266,64,0.10947367009413161],[126,266,65,0.09913336014680066],[126,266,66,0.08880993515578799],[126,266,67,0.0785002641309258],[126,266,68,0.06824901165952092],[126,266,69,0.058127223206539506],[126,266,70,0.04819744237214387],[126,266,71,0.03851281339225197],[126,266,72,0.02911703132185676],[126,266,73,0.02004439818945036],[126,266,74,0.011319985135114796],[126,266,75,0.0029599003837205303],[126,266,76,-1.4729554210077137E-4],[126,266,77,-0.0012820157894278643],[126,266,78,-0.002338196268536062],[126,266,79,-0.0033315830857042206],[126,267,64,0.10849794521237123],[126,267,65,0.09813863267319389],[126,267,66,0.08778259276176427],[126,267,67,0.07742563130238683],[126,267,68,0.06710916721944853],[126,267,69,0.056900473236075076],[126,267,70,0.04686016976873779],[126,267,71,0.037041136092371016],[126,267,72,0.02748822330910445],[126,267,73,0.018238082680816205],[126,267,74,0.01306125145153239],[126,267,75,0.011491784144502065],[126,267,76,0.01000274969921133],[126,267,77,0.008597112200630934],[126,267,78,0.007270848481699007],[126,267,79,0.006013465758295],[126,268,64,0.10769714779981159],[126,268,65,0.09731480431454742],[126,268,66,0.08692288409316322],[126,268,67,0.07651627352365568],[126,268,68,0.06613256979508447],[126,268,69,0.055834338598163974],[126,268,70,0.045679531021808745],[126,268,71,0.035720198135457244],[126,268,72,0.02785212621357002],[126,268,73,0.025923053519359616],[126,268,74,0.024025328943609637],[126,268,75,0.022181046645563376],[126,268,76,0.020405293420006406],[126,268,77,0.018706236188545253],[126,268,78,0.01708533432821845],[126,268,79,0.015537676468055804],[126,269,64,0.10703109641829182],[126,269,65,0.09662265799440106],[126,269,66,0.08619242583890833],[126,269,67,0.07573448380697015],[126,269,68,0.06528207892106],[126,269,69,0.05489222472122836],[126,269,70,0.044619533938754584],[126,269,71,0.041727464555234475],[126,269,72,0.03957369905536599],[126,269,73,0.0373960505456203],[126,269,74,0.03522666663115752],[126,269,75,0.033091720766072384],[126,269,76,0.03101114628970026],[126,269,77,0.028998506787732442],[126,269,78,0.027061002808485994],[126,269,79,0.025199614766102982],[126,270,64,0.10646037629867838],[126,270,65,0.0960238954221794],[126,270,66,0.08555375215770136],[126,270,67,0.07504330351495905],[126,270,68,0.06452097662336237],[126,270,69,0.05833442905889295],[126,270,70,0.05617595914030304],[126,270,71,0.0538830370597147],[126,270,72,0.051498514877470675],[126,270,73,0.049061820625409286],[126,270,74,0.046608155029480076],[126,270,75,0.044167835204046005],[126,270,76,0.041765786052251994],[126,270,77,0.03942117987141849],[126,270,78,0.03714722443225611],[126,270,79,0.0349510995775295],[126,271,64,0.10593749411688612],[126,271,65,0.09547225302446276],[126,271,66,0.08496159267809675],[126,271,67,0.0750125806626212],[126,271,68,0.07314052137301284],[126,271,69,0.07101681795050946],[126,271,70,0.06868376861933527],[126,271,71,0.06618460334578247],[126,271,72,0.06356208682338482],[126,271,73,0.06085727753097567],[126,271,74,0.058108444424510464],[126,271,75,0.05535014256019986],[126,271,76,0.052612448684052696],[126,271,77,0.04992035756308908],[126,271,78,0.04729333957804789],[126,271,79,0.04474505984821773],[126,272,64,0.10537433538112626],[126,272,65,0.09488078525550064],[126,272,66,0.08969369913523795],[126,272,67,0.08801193115893417],[126,272,68,0.08602126753537673],[126,272,69,0.0837537674439933],[126,272,70,0.081246958970005],[126,272,71,0.07854170311641223],[126,272,72,0.07568048395005829],[126,272,73,0.07270586659393975],[126,272,74,0.06965912498412216],[126,272,75,0.06657904102284135],[126,272,76,0.06350087647243217],[126,272,77,0.06045551864942021],[126,272,78,0.057468800696334615],[126,272,79,0.05456099693251507],[126,273,64,0.10006707556738836],[126,273,65,0.09872251394450204],[126,273,66,0.09785051850236232],[126,273,67,0.09742604003110772],[126,273,68,0.09741588482326624],[126,273,69,0.09644266980792765],[126,273,70,0.09376800934150913],[126,273,71,0.09086291518101774],[126,273,72,0.08776937799115504],[126,273,73,0.08453128411571242],[126,273,74,0.08119275203092903],[126,273,75,0.0777966529780026],[126,273,76,0.0743833174302083],[126,273,77,0.07098942873867671],[126,273,78,0.06764710499215937],[126,273,79,0.064383169822149],[126,274,64,0.0946402228069873],[126,274,65,0.09337911752100297],[126,274,66,0.09262939685991678],[126,274,67,0.09236417382168693],[126,274,68,0.09254740766250469],[126,274,69,0.09313405143165254],[126,274,70,0.09407047025347631],[126,274,71,0.09529786068173818],[126,274,72,0.09675230649121952],[126,274,73,0.09626201489358405],[126,274,74,0.09264549856123012],[126,274,75,0.08894750746646543],[126,274,76,0.08521319403043648],[126,274,77,0.08148479383589072],[126,274,78,0.07780047335133537],[126,274,79,0.07419338056234427],[126,275,64,0.08958514063993761],[126,275,65,0.08840558211141347],[126,275,66,0.08777526921563256],[126,275,67,0.08766556409701448],[126,275,68,0.08803768458548683],[126,275,69,0.08884277090821652],[126,275,70,0.09002222299349766],[126,275,71,0.0915110622875967],[126,275,72,0.093237899311368],[126,275,73,0.09511903178293807],[126,275,74,0.09703828194048902],[126,275,75,0.09888423717721118],[126,275,76,0.09594570706130963],[126,275,77,0.09190486953058621],[126,275,78,0.08790045964588783],[126,275,79,0.0839715788647856],[126,276,64,0.08492280237373945],[126,276,65,0.08382258786382824],[126,276,66,0.08330829295526809],[126,276,67,0.08334962840188337],[126,276,68,0.08390519416985887],[126,276,69,0.0849224645380206],[126,276,70,0.08633804333197637],[126,276,71,0.08808096661308029],[126,276,72,0.09007258036162163],[126,276,73,0.0922211729093908],[126,276,74,0.09440724885633844],[126,276,75,0.09651854692460637],[126,276,76,0.09846883414790247],[126,276,77,0.10019663569459925],[126,276,78,0.09791851645370314],[126,276,79,0.09369641813471903],[126,277,64,0.08067284573848565],[126,277,65,0.07964952432421596],[126,277,66,0.07924739241644374],[126,277,67,0.07943462010990182],[126,277,68,0.08016732952860722],[126,277,69,0.08138949777435744],[126,277,70,0.08303312923517675],[126,277,71,0.08502149780817786],[126,277,72,0.08726893327323987],[126,277,73,0.08967596558340818],[126,277,74,0.09211986037868874],[126,277,75,0.09448749627109881],[126,277,76,0.09669128353236439],[126,277,77,0.0986679499729809],[126,277,78,0.10037741273998291],[126,277,79,0.10180187500991772],[126,278,64,0.07685320973590615],[126,278,65,0.07590412282872172],[126,278,66,0.07560988761352472],[126,278,67,0.07593725428265463],[126,278,68,0.07684002209402391],[126,278,69,0.078258859888516],[126,278,70,0.08012139486920566],[126,278,71,0.08234539329379553],[126,278,72,0.084838454328653],[126,278,73,0.0874936414836685],[126,278,74,0.09018508369559725],[126,278,75,0.0927988015592015],[126,278,76,0.09524585854128353],[126,278,77,0.09746119785933177],[126,278,78,0.0994025843653687],[126,278,79,0.10104976157309797],[126,279,64,0.07347981339782017],[126,279,65,0.0726021311494886],[126,279,66,0.07241116551563398],[126,279,67,0.07287237633789179],[126,279,68,0.07393740842475821],[126,279,69,0.0755438296294817],[126,279,70,0.07761513576231466],[126,279,71,0.08006386898038204],[126,279,72,0.08279121815785045],[126,279,73,0.08568311069054257],[126,279,74,0.08861066359624042],[126,279,75,0.09145905483103989],[126,279,76,0.09413802503739871],[126,279,77,0.09658075997262483],[126,279,78,0.09874289555364146],[126,279,79,0.10060172805710632],[126,280,64,0.07056627645418856],[126,280,65,0.0697570303941879],[126,280,66,0.06966439387798923],[126,280,67,0.0702526735269341],[126,280,68,0.07147154003614498],[126,280,69,0.07325568408220917],[126,280,70,0.07552473730664783],[126,280,71,0.07818632793816577],[126,280,72,0.08113558697699569],[126,280,73,0.08425167174245879],[126,280,74,0.08740283352795725],[126,280,75,0.09047343604753932],[126,280,76,0.093371934832301],[126,280,77,0.09602979941778905],[126,280,78,0.09840057421007065],[126,280,79,0.10045913430797337],[126,281,64,0.06812368191067969],[126,281,65,0.06737979415917839],[126,281,66,0.0673802776264808],[126,281,67,0.06808842922121738],[126,281,68,0.06945213625373237],[126,281,69,0.07140345072439014],[126,281,70,0.07385842659936687],[126,281,71,0.07672011251893979],[126,281,72,0.07987796336920888],[126,281,73,0.0832047653108432],[126,281,74,0.0865660703304802],[126,281,75,0.08984546901690993],[126,281,76,0.09295018290111279],[126,281,77,0.09581002032196301],[126,281,78,0.09837648542321009],[126,281,79,0.10062207172337495],[126,282,64,0.06616053303766534],[126,282,65,0.06547884250333907],[126,282,66,0.06556701040571156],[126,282,67,0.06638747264388145],[126,282,68,0.06788653273884765],[126,282,69,0.06999385533572727],[126,282,70,0.07262222027940962],[126,282,71,0.0756704525820146],[126,282,72,0.07902273924073738],[126,282,73,0.08254592408202382],[126,282,74,0.08610304515629774],[126,282,75,0.0895769734185829],[126,282,76,0.09287376051664237],[126,282,77,0.09592162201549226],[126,282,78,0.09867008654724885],[126,282,79,0.10108931899574236],[126,283,64,0.06468318528322897],[126,283,65,0.06406047137355309],[126,283,66,0.06423070199982106],[126,283,67,0.0651556048022065],[126,283,68,0.06678010646525179],[126,283,69,0.06903174654788474],[126,283,70,0.07182034915188817],[126,283,71,0.07504089060993074],[126,283,72,0.07857272170424956],[126,283,73,0.08227719951971924],[126,283,74,0.08601505111238172],[126,283,75,0.08966849324398007],[126,283,76,0.09314248432066147],[126,283,77,0.09636372846806168],[126,283,78,0.09927985663080591],[126,283,79,0.10185877104459806],[126,284,64,0.06369527107862166],[126,284,65,0.06312827481728944],[126,284,66,0.06337479854197653],[126,284,67,0.06439601728714439],[126,284,68,0.06613569368744082],[126,284,69,0.06851951352539942],[126,284,70,0.07145467606849826],[126,284,71,0.07483270021754657],[126,284,72,0.07852855258122682],[126,284,73,0.08239858263540567],[126,284,74,0.08630142552212738],[126,284,75,0.09011872074550648],[126,284,76,0.09375442211759577],[126,284,77,0.09713381603654725],[126,284,78,0.10020272616926701],[126,284,79,0.10292687075263263],[126,285,64,0.0631974276067171],[126,285,65,0.06268287061604089],[126,285,66,0.06299980651993997],[126,285,67,0.06410901517002776],[126,285,68,0.06595331224320222],[126,285,69,0.06845680816564798],[126,285,70,0.07152441847224544],[126,285,71,0.07504460943099434],[126,285,72,0.07888843272872498],[126,285,73,0.08290772957577375],[126,285,74,0.08695927691455052],[126,285,75,0.09092422491539942],[126,285,76,0.09470562287046114],[126,285,77,0.09822744493704255],[126,285,78,0.10143380993481554],[126,285,79,0.10428834294887457],[126,286,64,0.06318726959375631],[126,286,65,0.06272187137336299],[126,286,66,0.06310326259368737],[126,286,67,0.06429198600169012],[126,286,68,0.06623013019004242],[126,286,69,0.06884051381499884],[126,286,70,0.07202611760233907],[126,286,71,0.07567277073405887],[126,286,72,0.07964809319777755],[126,286,73,0.08379993405717046],[126,286,74,0.08798345881084157],[126,286,75,0.09207942662672663],[126,286,76,0.09599009311971873],[126,286,77,0.09963823678025058],[126,286,78,0.10296638537574021],[126,286,79,0.10593617332031557],[126,287,64,0.06365940405064396],[126,287,65,0.06323989789658946],[126,287,66,0.06367974600632997],[126,287,67,0.06493941166078404],[126,287,68,0.06696047750487633],[126,287,69,0.06966475722352056],[126,287,70,0.07295365107851953],[126,287,71,0.07671077460615588],[126,287,72,0.08080080997400807],[126,287,73,0.08506814345864316],[126,287,74,0.0893665872281118],[126,287,75,0.09357661752365759],[126,287,76,0.09759981714979671],[126,287,77,0.10135789581361787],[126,287,78,0.10479191463810106],[126,287,79,0.10786163081534395],[126,288,64,0.064605486936827],[126,288,65,0.06422863484524632],[126,288,66,0.06472093356134834],[126,288,67,0.06604292302431258],[126,288,68,0.06813590081998888],[126,288,69,0.07092096371125967],[126,288,70,0.07429828883783351],[126,288,71,0.07814970652492681],[126,288,72,0.08233746227347899],[126,288,73,0.08670301854662332],[126,288,74,0.09109910187338882],[126,288,75,0.09540602263409192],[126,288,76,0.09952482087639675],[126,288,77,0.10337627384337428],[126,288,78,0.10690011018297296],[126,288,79,0.1100543335122745],[126,289,64,0.06601432174691024],[126,289,65,0.06567692864631725],[126,289,66,0.066215697166295],[126,289,67,0.06759139746052423],[126,289,68,0.06974526119542179],[126,289,69,0.07259795554623694],[126,289,70,0.07604879242400309],[126,289,71,0.07997824743359461],[126,289,72,0.08424663439391483],[126,289,73,0.08869303683138385],[126,289,74,0.09316937102799189],[126,289,75,0.0975559067047681],[126,289,76,0.10175327945470763],[126,289,77,0.10568147883659601],[126,289,78,0.10927904399938232],[126,289,79,0.11250235795308705],[126,290,64,0.0678720000198999],[126,290,65,0.06757092767625444],[126,290,66,0.06815024394285646],[126,290,67,0.06957109914406562],[126,290,68,0.0717748749276777],[126,290,69,0.07468209353405902],[126,290,70,0.07819155762928831],[126,290,71,0.08218281767298247],[126,290,72,0.0865147611212072],[126,290,73,0.09102463955518153],[126,290,74,0.09556384012220037],[126,290,75,0.10001272425877367],[126,290,76,0.1042716686084465],[126,290,77,0.10826002720321742],[126,290,78,0.11191530041286435],[126,290,79,0.11519239194230568],[126,291,64,0.07016208377104893],[126,291,65,0.06989426470970267],[126,291,66,0.07050829890324667],[126,291,67,0.0719658621933616],[126,291,68,0.07420869739471136],[126,291,69,0.07715746181910949],[126,291,70,0.08071080048880597],[126,291,71,0.08474776437815412],[126,291,72,0.08912631669115567],[126,291,73,0.09368242231203505],[126,291,74,0.09826722400016419],[126,291,75,0.10276131337539846],[126,291,76,0.10706495967966984],[126,291,77,0.11109703975792978],[126,291,78,0.11479417248957596],[126,291,79,0.11810993081094906],[126,292,64,0.07286582984643308],[126,292,65,0.07262828163507296],[126,292,66,0.07327133019306464],[126,292,67,0.07475731663035656],[126,292,68,0.07702854993734481],[126,292,69,0.08000609589746038],[126,292,70,0.08358878662744584],[126,292,71,0.08765559233982234],[126,292,72,0.09206404730659468],[126,292,73,0.09664936929929208],[126,292,74,0.10126274287521131],[126,292,75,0.10578513319249166],[126,292,76,0.1101168583995154],[126,292,77,0.11417648136213038],[126,292,78,0.11789990203613221],[126,292,79,0.12123951714572237],[126,293,64,0.07596245620014902],[126,293,65,0.075752296436852],[126,293,66,0.07641881690050412],[126,293,67,0.07792515716250425],[126,293,68,0.0802143897769893],[126,293,69,0.08320825384138691],[126,293,70,0.0868061039592678],[126,293,71,0.0908872383304038],[126,293,72,0.09530924720978307],[126,293,73,0.09990713120085909],[126,293,74,0.10453240197542524],[126,293,75,0.1090665451311934],[126,293,76,0.11341008737974478],[126,293,77,0.11748144424579088],[126,293,78,0.1212159631950313],[126,293,79,0.12456502398331634],[126,294,64,0.07942945009411334],[126,294,65,0.07924391244462636],[126,294,66,0.07992855943189353],[126,294,67,0.08144745478698612],[126,294,68,0.08374462296965646],[126,294,69,0.08674273073546429],[126,294,70,0.09034197873935662],[126,294,71,0.09442238889470073],[126,294,72,0.098842078310036],[126,294,73,0.10343634670207524],[126,294,74,0.10805731487947307],[126,294,75,0.11258713784301905],[126,294,76,0.11692671232506524],[126,294,77,0.12099447500922345],[126,294,78,0.12472538963564805],[126,294,79,0.12806998146979026],[126,295,64,0.08324291822061958],[126,295,65,0.08307936984898323],[126,295,66,0.08377703245372897],[126,295,67,0.08530101121731787],[126,295,68,0.0875964603964191],[126,295,69,0.09058721632441191],[126,295,70,0.0941746349683033],[126,295,71,0.09823984160537674],[126,295,72,0.10264193336676847],[126,295,73,0.1072170076364003],[126,295,74,0.11181807054285636],[126,295,75,0.11632809587947368],[126,295,76,0.12064851196640933],[126,295,77,0.12469794530492395],[126,295,78,0.12841114534097559],[126,295,79,0.1317379469852232],[126,296,64,0.0873779787474312],[126,296,65,0.08723393948405844],[126,296,66,0.08793978040096984],[126,296,67,0.0894617561321166],[126,296,68,0.09174631679009132],[126,296,69,0.09471869587245013],[126,296,70,0.09828169714907387],[126,296,71,0.10231790978298794],[126,296,72,0.10668784272770926],[126,296,73,0.11122886776367225],[126,296,74,0.11579514401433738],[126,296,75,0.12027061208394454],[126,296,76,0.12455739171491748],[126,296,77,0.12857446619923588],[126,296,78,0.13225653898985856],[126,296,79,0.135552918733372],[126,297,64,0.09180919528564413],[126,297,65,0.09168235887697385],[126,297,66,0.0923918555518401],[126,297,67,0.09390518724627034],[126,297,68,0.0961702527983736],[126,297,69,0.09911389423441852],[126,297,70,0.10264063639651866],[126,297,71,0.10663487068082245],[126,297,72,0.11095892462254142],[126,297,73,0.11545189518019555],[126,297,74,0.11996935084280436],[126,297,75,0.12439634370613778],[126,297,76,0.12863584103689338],[126,297,77,0.1326073462141074],[126,297,78,0.1362456819349897],[126,297,79,0.13949979279661157],[126,298,64,0.09651105278009697],[126,298,65,0.09639931056393214],[126,298,66,0.09710829866890275],[126,298,67,0.09860685320427731],[126,298,68,0.10084446008322545],[126,298,69,0.10374976313841627],[126,298,70,0.1072292598992799],[126,298,71,0.11116945713430543],[126,298,72,0.11543487901172339],[126,298,73,0.11986676836040855],[126,298,74,0.12432234517432283],[126,298,75,0.12868791223880516],[126,298,76,0.13286743454947447],[126,298,77,0.13678109304868022],[126,298,78,0.14036398977640943],[126,298,79,0.1435648636558955],[126,299,64,0.10145847532248276],[126,299,65,0.10135994267313331],[126,299,66,0.10206466220657145],[126,299,67,0.10354287929591932],[126,299,68,0.10574578945663493],[126,299,69,0.10860401168013545],[126,299,70,0.11202624373426828],[126,299,71,0.11590139267514221],[126,299,72,0.1200965249906649],[126,299,73,0.12445541583030961],[126,299,74,0.12883716153955277],[126,299,75,0.13312944697694196],[126,299,76,0.13723737683720083],[126,299,77,0.14108195898089748],[126,299,78,0.14459872753069508],[126,299,79,0.14773636817592295],[126,300,64,0.10662738588715226],[126,300,65,0.10654043177449551],[126,300,66,0.10723757608504375],[126,300,67,0.10869053599425427],[126,300,68,0.1108523220527659],[126,300,69,0.11365568002886689],[126,300,70,0.11701170903369135],[126,300,71,0.12081197011018091],[126,300,72,0.12492638174923842],[126,300,73,0.12920159947261894],[126,300,74,0.13349880033150932],[126,300,75,0.13770717229943227],[126,300,76,0.14173309098945874],[126,300,77,0.14549852994910384],[126,300,78,0.14893959839581267],[126,300,79,0.15200507305548722],[126,301,64,0.11199530798947965],[126,301,65,0.11191858799605353],[126,301,66,0.1126053560305254],[126,301,67,0.1140288503157954],[126,301,68,0.11614398353635336],[126,301,69,0.11888575634504822],[126,301,70,0.12216784150450027],[126,301,71,0.1258846735648591],[126,301,72,0.12990929308649246],[126,301,73,0.13409154146354307],[126,301,74,0.138294856973533],[126,301,75,0.1424100386730079],[126,301,76,0.146344850858663],[126,301,77,0.1500223583135037],[126,301,78,0.15337937611149804],[126,301,79,0.15636490574286965],[126,302,64,0.11754200926694341],[126,302,65,0.11747450240718843],[126,302,66,0.11814865448190487],[126,302,67,0.1195392600030391],[126,302,68,0.12160320134750749],[126,302,69,0.12427783690951916],[126,302,70,0.12747955430041905],[126,302,71,0.1311058439914046],[126,302,72,0.13503309548073367],[126,302,73,0.13911459484131128],[126,302,74,0.14321619477763908],[126,302,75,0.14723039737869226],[126,302,76,0.15106645703935265],[126,302,77,0.15464863929765085],[126,302,78,0.15791458091534039],[126,302,79,0.1608136288164544],[126,303,64,0.12325018698287799],[126,303,65,0.1231912366686431],[126,303,66,0.12385115406382632],[126,303,67,0.12520631052928646],[126,303,68,0.12721560498287163],[126,303,69,0.12981882946442197],[126,303,70,0.1329351942464992],[126,303,71,0.13646538814172599],[126,303,72,0.1402893297149161],[126,303,73,0.14426395770641856],[126,303,74,0.148257661493181],[126,303,75,0.15216471896066142],[126,303,76,0.15589595656812846],[126,303,77,0.15937693110990003],[126,303,78,0.16254619909449697],[126,303,79,0.16535355783049135],[126,304,64,0.12910619545279675],[126,304,65,0.12905555494922372],[126,304,66,0.12970030362606794],[126,304,67,0.13101839492566847],[126,304,68,0.13297076931304505],[126,304,69,0.13549969976566473],[126,304,70,0.1385272914161117],[126,304,71,0.14195753100491065],[126,304,72,0.14567399605725434],[126,304,73,0.1495374310534959],[126,304,74,0.15341884954574891],[126,304,75,0.15721435539744513],[126,304,76,0.1608364063443595],[126,304,77,0.16421191874474436],[126,304,78,0.16728044613296633],[126,304,79,0.16999232262593572],[126,305,64,0.13510081539343016],[126,305,65,0.1350586981093321],[126,305,66,0.13568809684936373],[126,305,67,0.13696853643051102],[126,305,68,0.13886300093640425],[126,305,69,0.1413162613470776],[126,305,70,0.14425335206051085],[126,305,71,0.14758161170946155],[126,305,72,0.15118835299719136],[126,305,73,0.15493822023493484],[126,305,74,0.15870489996642828],[126,305,75,0.16238634599559318],[126,305,76,0.16589668027177926],[126,305,77,0.16916422146416255],[126,305,78,0.1721295734545413],[126,305,79,0.17474367210648414],[126,306,64,0.14123006519445558],[126,306,65,0.14119720015130527],[126,306,66,0.14181189341765038],[126,306,67,0.14305521396102094],[126,306,68,0.14489216756930784],[126,306,69,0.14727000849624777],[126,306,70,0.15011669489095236],[126,306,71,0.1533429228902557],[126,306,72,0.15683975953670504],[126,306,73,0.16047578005625296],[126,306,74,0.1641273500114085],[126,306,75,0.1676942670057951],[126,306,76,0.17109232012096318],[126,306,77,0.17425124395896605],[126,306,78,0.17711271876143103],[126,306,79,0.17962832247979824],[126,307,64,0.14749506804519524],[126,307,65,0.14747275411796645],[126,307,66,0.14807427572487386],[126,307,67,0.14928220202597314],[126,307,68,0.1510635141298866],[126,307,69,0.15336790226292296],[126,307,70,0.15612620178846487],[126,307,71,0.15925242214890445],[126,307,72,0.16264134498638327],[126,307,73,0.16616544226369323],[126,307,74,0.16970371924820332],[126,307,75,0.17315777841436683],[126,307,76,0.17644504611729322],[126,307,77,0.17949665460820852],[126,307,78,0.18225535643505453],[126,307,79,0.18467338468734634],[126,308,64,0.1538820093375002],[126,308,65,0.15387202044116355],[126,308,66,0.1544625590213549],[126,308,67,0.15563764006272435],[126,308,68,0.1573661591490757],[126,308,69,0.15960017656609393],[126,308,70,0.1622733355166042],[126,308,71,0.1653028874216827],[126,308,72,0.1685872573361639],[126,308,73,0.17200274663716536],[126,308,74,0.175430947224935],[126,308,75,0.1787752211146528],[126,308,76,0.18195459092663147],[126,308,77,0.1849015535543531],[126,308,78,0.187559912766136],[126,308,79,0.18988255172161264],[126,309,64,0.16035811488125715],[126,309,65,0.16036253053890254],[126,309,66,0.16094462338898013],[126,309,67,0.16208979570327098],[126,309,68,0.1637687920646679],[126,309,69,0.16593597197541038],[126,309,70,0.1685277120593171],[126,309,71,0.17146442942933196],[126,309,72,0.17464811672445144],[126,309,73,0.17795883563455644],[126,309,74,0.18128072912535698],[126,309,75,0.18451889383979525],[126,309,76,0.18759391913988613],[126,309,77,0.19043963747595738],[126,309,78,0.19300088055773695],[126,309,79,0.1952311696469276],[126,310,64,0.16688830357856554],[126,310,65,0.16690943563887078],[126,310,66,0.16748589571110833],[126,310,67,0.16860441092309042],[126,310,68,0.17023750497470108],[126,310,69,0.17234176096664028],[126,310,70,0.17485620954530234],[126,310,71,0.1777043522195632],[126,310,72,0.1807916685564449],[126,310,73,0.18400190934299815],[126,310,74,0.18722175033110078],[126,310,75,0.19035801859959592],[126,310,76,0.19333285299575248],[126,310,77,0.19608139750253567],[126,310,78,0.1985494876800983],[126,310,79,0.2006912655348177],[126,311,64,0.17343638689594398],[126,311,65,0.17347671584530025],[126,311,66,0.1740505725658391],[126,311,67,0.17514594281542553],[126,311,68,0.1767370550528922],[126,311,69,0.17878263531633207],[126,311,70,0.1812242833998428],[126,311,71,0.18398849814503868],[126,311,72,0.18698415950844938],[126,311,73,0.19009863266090266],[126,311,74,0.19322112370300423],[126,311,75,0.19626020583638457],[126,311,76,0.19913956222059764],[126,311,77,0.20179562975247328],[126,311,78,0.20417522368425506],[126,311,79,0.20623308504236543],[126,312,64,0.17996565005641202],[126,312,65,0.18002776144216573],[126,312,66,0.18060220024321105],[126,312,67,0.18167814100573015],[126,312,68,0.18323143815604592],[126,312,69,0.18522287484358002],[126,312,70,0.18759652934215432],[126,312,71,0.1902818044523244],[126,312,72,0.1931908872948578],[126,312,73,0.19621467809327747],[126,312,74,0.19924492533660448],[126,312,75,0.20219198304084315],[126,312,76,0.20498108536518778],[126,312,77,0.20754994920540631],[126,312,78,0.20984634597295734],[126,312,79,0.21182559058649872],[126,313,64,0.18644073333701355],[126,313,65,0.18652717163815372],[126,313,66,0.18710538966580464],[126,313,67,0.1881656777715851],[126,313,68,0.18968543349286343],[126,313,69,0.19162740633388628],[126,313,70,0.19393805665786484],[126,313,71,0.19654959141475775],[126,313,72,0.19937740462201764],[126,313,73,0.20231584694496035],[126,313,74,0.20525923469360707],[126,313,75,0.20811975568680344],[126,313,76,0.21082421355824663],[126,313,77,0.21331159842527797],[126,313,78,0.21553061576371121],[126,313,79,0.21743712692080278],[126,314,64,0.19282753590720142],[126,314,65,0.19294067294411185],[126,314,66,0.1935257480391813],[126,314,67,0.1945740917347598],[126,314,68,0.19606455819103885],[126,314,69,0.19796176791070763],[126,314,70,0.20021446143263388],[126,314,71,0.20275754364703008],[126,314,72,0.20550950799769346],[126,314,73,0.20836806524811258],[126,314,74,0.2112301373191654],[126,314,75,0.21400981635668098],[126,314,76,0.21663550559619268],[126,314,77,0.21904746810132567],[126,314,78,0.22119532349231233],[126,314,79,0.22303545073097092],[126,315,64,0.1990922258085145],[126,315,65,0.19923421251513007],[126,315,66,0.1998290542183087],[126,315,67,0.20086904376418652],[126,315,68,0.20233440212922438],[126,315,69,0.20419152110077182],[126,315,70,0.20639131410037076],[126,315,71,0.20887127136575404],[126,315,72,0.21155287094932693],[126,315,73,0.21433708721771705],[126,315,74,0.21712349670289918],[126,315,75,0.21982818297354417],[126,315,76,0.22238119030519735],[126,315,77,0.22472406109116017],[126,315,78,0.22680731188004674],[126,315,79,0.22858780986219107],[126,316,64,0.2052017207524699],[126,316,65,0.20537444628748813],[126,316,66,0.20598175291672996],[126,316,67,0.20701681603910718],[126,316,68,0.2084611307130387],[126,316,69,0.210282756288466],[126,316,70,0.2124346666784687],[126,316,71,0.21485681867594697],[126,316,72,0.21747355283162903],[126,316,73,0.22018900426390503],[126,316,74,0.22290546325355504],[126,316,75,0.22554110747782125],[126,316,76,0.2280276746306241],[126,316,77,0.2303079995952597],[126,316,78,0.23233348181846233],[126,316,79,0.23406144748382615],[126,317,64,0.21112422662461797],[126,317,65,0.21132928193270958],[126,317,66,0.21195150087971928],[126,317,67,0.21298486026353305],[126,317,68,0.21441203403373324],[126,317,69,0.2162026418308049],[126,317,70,0.2183116009896],[126,317,71,0.22068121021844447],[126,317,72,0.22323854341693697],[126,317,73,0.22589078725537975],[126,317,74,0.2285430140489635],[126,317,75,0.2311156128737313],[126,317,76,0.23354207777400401],[126,317,77,0.2357665561521314],[126,317,78,0.2377413199540383],[126,317,79,0.2394241259489896],[126,318,64,0.21682978255146404],[126,318,65,0.2170684283216994],[126,318,66,0.21770771954869186],[126,318,67,0.21874235238407366],[126,318,68,0.2201560825693775],[126,318,69,0.22191997977623493],[126,318,70,0.223990783564951],[126,318,71,0.2263130045856945],[126,318,72,0.22881631434218933],[126,318,73,0.2314108357210503],[126,318,74,0.23400449960172515],[126,318,75,0.2365200373726693],[126,318,76,0.23889277251870306],[126,318,77,0.24106819193027837],[126,318,78,0.2429994336991392],[126,318,79,0.24464465823545764],[126,319,64,0.2222908125302569],[126,319,65,0.2225639514989629],[126,319,66,0.22322215421686242],[126,319,67,0.22426075381113086],[126,319,68,0.22566448942856224],[126,319,69,0.2274057681872706],[126,319,70,0.2294430272288838],[126,319,71,0.23172285450592378],[126,319,72,0.23417737741251118],[126,319,73,0.2367195339898658],[126,319,74,0.239260197640615],[126,319,75,0.24172458563353166],[126,319,76,0.2440499337442688],[126,319,77,0.24618310231695914],[126,319,78,0.24807809366924],[126,319,79,0.24969344696790424],[127,-64,64,0.34199033504144544],[127,-64,65,0.34816791310337897],[127,-64,66,0.35444348481081456],[127,-64,67,0.3608043544373043],[127,-64,68,0.36724652812932546],[127,-64,69,0.3737771693306296],[127,-64,70,0.38040321255244397],[127,-64,71,0.38712987020707174],[127,-64,72,0.39395955777474734],[127,-64,73,0.40089098242219584],[127,-64,74,0.40791839992079787],[127,-64,75,0.4150310445788279],[127,-64,76,0.4222127367400007],[127,-64,77,0.4294416722117295],[127,-64,78,0.43669039777299334],[127,-64,79,0.44392597667695216],[127,-63,64,0.3452012770620808],[127,-63,65,0.3514620431537554],[127,-63,66,0.357825303299299],[127,-63,67,0.36427805264998336],[127,-63,68,0.37081536068124965],[127,-63,69,0.377443284367248],[127,-63,70,0.38416781524791943],[127,-63,71,0.3909933765252364],[127,-63,72,0.3979217333016944],[127,-63,73,0.4049510673272599],[127,-63,74,0.412075221061878],[127,-63,75,0.4192831157259848],[127,-63,76,0.4265583478481864],[127,-63,77,0.43387896862952846],[127,-63,78,0.4412174502295957],[127,-63,79,0.44854084284444923],[127,-62,64,0.34862243570921775],[127,-62,65,0.35496160565356943],[127,-62,66,0.36140627708279754],[127,-62,67,0.3679435061777088],[127,-62,68,0.37456739891647983],[127,-62,69,0.38128257679927585],[127,-62,70,0.38809383299990347],[127,-62,71,0.395004625463136],[127,-62,72,0.4020159687847346],[127,-62,73,0.40912549118300573],[127,-62,74,0.41632666131791035],[127,-62,75,0.42360818957880636],[127,-62,76,0.43095360829853796],[127,-62,77,0.4383410351619649],[127,-62,78,0.445743123863159],[127,-62,79,0.45312720583082694],[127,-61,64,0.35223639468477663],[127,-61,65,0.358648720104354],[127,-61,66,0.36516800967838675],[127,-61,67,0.3717817257386657],[127,-61,68,0.3784829946117201],[127,-61,69,0.3852747084939393],[127,-61,70,0.3921602393655675],[127,-61,71,0.3991419330758467],[127,-61,72,0.4062199793068856],[127,-61,73,0.41339144676293604],[127,-61,74,0.4206494882810866],[127,-61,75,0.42798272042507485],[127,-61,76,0.43537478196138235],[127,-61,77,0.44280407542819655],[127,-61,78,0.45024369579523504],[127,-61,79,0.4576615499792663],[127,-60,64,0.3560210752654698],[127,-60,65,0.362500770062155],[127,-60,66,0.3690873495224733],[127,-60,67,0.3757689851362098],[127,-60,68,0.38253781497598127],[127,-60,69,0.38939475176905586],[127,-60,70,0.3963415629007571],[127,-60,71,0.4033793694304801],[127,-60,72,0.41050749048939095],[127,-60,73,0.41772245263069285],[127,-60,74,0.4250171687612887],[127,-60,75,0.4323802911507909],[127,-60,76,0.439795742852935],[127,-60,77,0.4472424316877525],[127,-60,78,0.4546941507223841],[127,-60,79,0.4621196689575776],[127,-59,64,0.3599502021098333],[127,-59,65,0.36649086372174755],[127,-59,66,0.3731368493228923],[127,-59,67,0.37987728140464666],[127,-59,68,0.3867033040161912],[127,-59,69,0.39361365144808064],[127,-59,70,0.40060834862833733],[127,-59,71,0.40768721764687094],[127,-59,72,0.4148486928620904],[127,-59,73,0.4220888003418096],[127,-59,74,0.42940030619500164],[127,-59,75,0.43677203822017996],[127,-59,76,0.4441883851376331],[127,-59,77,0.45162897748860625],[127,-59,78,0.45906855407685826],[127,-59,79,0.4664770176001882],[127,-58,64,0.36399389107020147],[127,-58,65,0.3705884158613562],[127,-58,66,0.37728534575538547],[127,-58,67,0.38407491380313824],[127,-58,68,0.39094726060535967],[127,-58,69,0.3978988006417174],[127,-58,70,0.40492772929782],[127,-58,71,0.4120325377556691],[127,-58,72,0.4192107950049096],[127,-58,73,0.426458093305421],[127,-58,74,0.4337671615828168],[127,-58,75,0.44112715111029405],[127,-58,76,0.44852309767458765],[127,-58,77,0.45593556424275333],[127,-58,78,0.4633404679421505],[127,-58,79,0.47070909494167706],[127,-57,64,0.36811935786256494],[127,-57,65,0.37475984991090033],[127,-57,66,0.3814986581999239],[127,-57,67,0.3883271803039362],[127,-57,68,0.3952345318678497],[127,-57,69,0.40221472885924964],[127,-57,70,0.40926410505083377],[127,-57,71,0.4163798340248403],[127,-57,72,0.4235586741747668],[127,-57,73,0.4307958761116414],[127,-57,74,0.43808425688143676],[127,-57,75,0.4454134452750719],[127,-57,76,0.4527693023599799],[127,-57,77,0.46013352118461714],[127,-57,78,0.46748340940654565],[127,-57,79,0.474791858374207],[127,-56,64,0.3722892102271383],[127,-56,65,0.3789670034306675],[127,-56,66,0.38573808966619627],[127,-56,67,0.39259496800126964],[127,-56,68,0.3995256937805556],[127,-56,69,0.40652187347157476],[127,-56,70,0.41357800488248486],[127,-56,71,0.42069000299174064],[127,-56,72,0.4278539041984992],[127,-56,73,0.4350647318631972],[127,-56,74,0.4423155274720669],[127,-56,75,0.44959655163736817],[127,-56,76,0.456894658996004],[127,-56,77,0.46419285089511586],[127,-56,78,0.4714700095562304],[127,-56,79,0.47870081719286023],[127,-55,64,0.3764483726464978],[127,-55,65,0.38315484030569896],[127,-55,66,0.3899487861400608],[127,-55,67,0.39682371414790835],[127,-55,68,0.4037666240780016],[127,-55,69,0.4107667805866836],[127,-55,70,0.4178169265346412],[127,-55,71,0.42491181057260113],[127,-55,72,0.4320468494434476],[127,-55,73,0.43921695032449376],[127,-55,74,0.44641549746976356],[127,-55,75,0.4536335072933058],[127,-55,76,0.4608589558888316],[127,-55,77,0.4680762828104586],[127,-55,78,0.47526607474606414],[127,-55,79,0.48240493250196304],[127,-54,64,0.38054089602579766],[127,-54,65,0.38726781445288766],[127,-54,66,0.39407571603120667],[127,-54,67,0.40095901913730064],[127,-54,68,0.40790373295890503],[127,-54,69,0.4148969257157498],[127,-54,70,0.42192971676128765],[127,-54,71,0.4289958062838851],[127,-54,72,0.4360900977536613],[127,-54,73,0.4432074789019904],[127,-54,74,0.4503417654137675],[127,-54,75,0.45748481139676905],[127,-54,76,0.4646257905500355],[127,-54,77,0.4717506517862603],[127,-54,78,0.47884175287367275],[127,-54,79,0.4858776754540624],[127,-53,64,0.38451991069733477],[127,-53,65,0.39125943898670745],[127,-53,66,0.398072915541268],[127,-53,67,0.40495558564301465],[127,-53,68,0.4118925851538385],[127,-53,69,0.4188690008670579],[127,-53,70,0.4258745051343766],[127,-53,71,0.4329018900577089],[127,-53,72,0.4399456550308808],[127,-53,73,0.44700075095696346],[127,-53,74,0.45406148523219747],[127,-53,75,0.46112059147458395],[127,-53,76,0.4681684678360374],[127,-53,77,0.4751925875735743],[127,-53,78,0.4821770853693562],[127,-53,79,0.4891025226846135],[127,-52,64,0.38834785023651636],[127,-52,65,0.3950925148593366],[127,-52,66,0.40190371795360263],[127,-52,67,0.4087774456427494],[127,-52,68,0.41569812181515314],[127,-52,69,0.42264912744876004],[127,-52,70,0.42961890322661056],[127,-52,71,0.43659949223694766],[127,-52,72,0.4435850999953584],[127,-52,73,0.45057080887128304],[127,-52,74,0.45755145090885024],[127,-52,75,0.4645206429217436],[127,-52,76,0.47146998760567754],[127,-52,77,0.4783884442521334],[127,-52,78,0.4852618724652009],[127,-52,79,0.492072752082771],[127,-51,64,0.3905374479019471],[127,-51,65,0.3987394262487257],[127,-51,66,0.4055410498164995],[127,-51,67,0.41239825404042507],[127,-51,68,0.4192949484207263],[127,-51,69,0.42621313452238196],[127,-51,70,0.43314026857061916],[127,-51,71,0.44006781798892536],[127,-51,72,0.4469898033167831],[127,-51,73,0.4539014918062999],[127,-51,74,0.4607982465732662],[127,-51,75,0.4676745350702183],[127,-51,76,0.4745231005158369],[127,-51,77,0.4813342997584957],[127,-51,78,0.4880956108738405],[127,-51,79,0.4947913136000358],[127,-50,64,0.39223542374209974],[127,-50,65,0.40063098336148667],[127,-50,66,0.40896783468562575],[127,-50,67,0.41580168803813683],[127,-50,68,0.4226677262887242],[127,-50,69,0.42954693837831903],[127,-50,70,0.43642606766882475],[127,-50,71,0.4432961886676791],[127,-50,72,0.4501512418949794],[127,-50,73,0.45698671723203327],[127,-50,74,0.4637984894981961],[127,-50,75,0.4705818098968619],[127,-50,76,0.4773304568408895],[127,-50,77,0.48403604951453244],[127,-50,78,0.49068752735494053],[127,-50,79,0.4972707984445007],[127,-49,64,0.39402014687608694],[127,-49,65,0.40239663791838337],[127,-49,66,0.4107456777786022],[127,-49,67,0.4189772731982131],[127,-49,68,0.4258075919142407],[127,-49,69,0.43264356888698874],[127,-49,70,0.4394715108900299],[127,-49,71,0.44628227365871714],[127,-49,72,0.4530698027165757],[127,-49,73,0.45982981894116287],[127,-49,74,0.46655865247140377],[127,-49,75,0.4732522284540533],[127,-49,76,0.4799052079988632],[127,-49,77,0.4865102875620982],[127,-49,78,0.4930576598080897],[127,-49,79,0.4995346388114091],[127,-48,64,0.3959051381421821],[127,-48,65,0.4042511486046549],[127,-48,66,0.41257938755112766],[127,-48,67,0.4208731893781461],[127,-48,68,0.4286992405241755],[127,-48,69,0.43549177310490045],[127,-48,70,0.44226966974671206],[127,-48,71,0.44902368193425857],[127,-48,72,0.45574777608092015],[127,-48,73,0.4624378375004315],[127,-48,74,0.46909051793648765],[127,-48,75,0.47570222998099115],[127,-48,76,0.4822682915862082],[127,-48,77,0.48878222372984115],[127,-48,78,0.49523520412667105],[127,-48,79,0.5016156796987337],[127,-47,64,0.39789999001143694],[127,-47,65,0.4062016385173125],[127,-47,66,0.41449423506456573],[127,-47,67,0.4227610954120281],[127,-47,68,0.4309980686174803],[127,-47,69,0.4380837132071813],[127,-47,70,0.444816682617551],[127,-47,71,0.45152066915740385],[127,-47,72,0.45818960773209505],[127,-47,73,0.46481941068357513],[127,-47,74,0.4714068471189776],[127,-47,75,0.4779485629253266],[127,-47,76,0.48444024448219847],[127,-47,77,0.4908759289424181],[127,-47,78,0.4972474637911454],[127,-47,79,0.5035441182186605],[127,-46,64,0.4000050358878223],[127,-46,65,0.4082465984760673],[127,-46,66,0.41648660245636876],[127,-46,67,0.42470848880762085],[127,-46,68,0.4329078438241658],[127,-46,69,0.4404174202059794],[127,-46,70,0.4471135619095224],[127,-46,71,0.4537773045994854],[127,-46,72,0.4604024451830859],[127,-46,73,0.4669847318069837],[127,-46,74,0.47352079500827376],[127,-46,75,0.48000721185582357],[127,-46,76,0.4864397058686037],[127,-46,77,0.49281248536162886],[127,-46,78,0.4991177227174854],[127,-46,79,0.505345176914652],[127,-45,64,0.402212396014779],[127,-45,65,0.4103768823604228],[127,-45,66,0.4185458868495755],[127,-45,67,0.4267031296531804],[127,-45,68,0.43484382701062535],[127,-45,69,0.44249610100845016],[127,-45,70,0.44916558165552367],[127,-45,71,0.45580094331236465],[127,-45,72,0.4623956970113014],[127,-45,73,0.4689451970338731],[127,-45,74,0.4754456448021757],[127,-45,75,0.4818932164135536],[127,-45,76,0.48828331634816236],[127,-45,77,0.4946099597502065],[127,-45,78,0.5008652855398561],[127,-45,79,0.5070392024563399],[127,-44,64,0.40450699888402303],[127,-44,65,0.4125766793939298],[127,-44,66,0.42065541789419014],[127,-44,67,0.42872737378274767],[127,-44,68,0.4367873195530978],[127,-44,69,0.444327461432186],[127,-44,70,0.45098167978518305],[127,-44,71,0.4576017121019304],[127,-44,72,0.46418060561356406],[127,-44,73,0.47071306642031374],[127,-44,74,0.47719455706962133],[127,-44,75,0.4836205066976929],[127,-44,76,0.48998563597684125],[127,-44,77,0.49628339899138585],[127,-44,78,0.5025055440319965],[127,-44,79,0.5086417951543072],[127,-43,64,0.40686758123369604],[127,-43,65,0.4148244662906195],[127,-43,66,0.4227933564126841],[127,-43,67,0.4307590119269784],[127,-43,68,0.4387157218143829],[127,-43,69,0.44592304307051134],[127,-43,70,0.45257387318554787],[127,-43,71,0.45919200764392415],[127,-43,72,0.46576983198034366],[127,-43,73,0.4723011374695586],[127,-43,74,0.47878033258667024],[127,-43,75,0.48520175420579037],[127,-43,76,0.4915590804657266],[127,-43,77,0.4978448471229754],[127,-43,78,0.5040500690925569],[127,-43,79,0.510163968748019],[127,-42,64,0.4092676697235405],[127,-42,65,0.4170939421815311],[127,-42,66,0.42493357688505645],[127,-42,67,0.43277209386772303],[127,-42,68,0.44060329270689],[127,-42,69,0.4472975718992029],[127,-42,70,0.4539566836724882],[127,-42,71,0.4605860050952503],[127,-42,72,0.4671770510720795],[127,-42,73,0.4737224299985059],[127,-42,74,0.4802151878557689],[127,-42,75,0.48664823752409453],[127,-42,76,0.49301387490775334],[127,-42,77,0.499303383370228],[127,-42,78,0.5055067278735714],[127,-42,79,0.5116123401041155],[127,-41,64,0.4116765473657351],[127,-41,65,0.4193549492330225],[127,-41,66,0.4270465365041725],[127,-41,67,0.43473774013178185],[127,-41,68,0.44177528176824876],[127,-41,69,0.4484683165225854],[127,-41,70,0.4551465730043275],[127,-41,71,0.4617991755717029],[127,-41,72,0.4684165564084226],[127,-41,73,0.4749898811615956],[127,-41,74,0.48151054237654384],[127,-41,75,0.4879697220416893],[127,-41,76,0.4943580244855087],[127,-41,77,0.5006651807883477],[127,-41,78,0.5068798257855415],[127,-41,79,0.5129893486461201],[127,-40,64,0.4140602077706256],[127,-40,65,0.4215743818524232],[127,-40,66,0.42910013351800147],[127,-40,67,0.43602661518590513],[127,-40,68,0.44273860851744556],[127,-40,69,0.44945445396990047],[127,-40,70,0.4561613850855952],[127,-40,71,0.4628478108856102],[127,-40,72,0.4695028725130504],[127,-40,73,0.4761160495217533],[127,-40,74,0.4826768167964506],[127,-40,75,0.4891743530411893],[127,-40,76,0.49559730171729705],[127,-40,77,0.5019335852510561],[127,-40,78,0.5081702732651597],[127,-40,79,0.5142935055180233],[127,-39,64,0.4163823002370786],[127,-39,65,0.4234091833309706],[127,-39,66,0.43008550193152734],[127,-39,67,0.43679619949200144],[127,-39,68,0.44353096750572785],[127,-39,69,0.45027644097341446],[127,-39,70,0.45701979353197925],[127,-39,71,0.46374855396537856],[127,-39,72,0.47045037389349387],[127,-39,73,0.47711282710626884],[127,-39,74,0.48372324113261944],[127,-39,75,0.4902685615997009],[127,-39,76,0.4967352499005347],[127,-39,77,0.5031092146472141],[127,-39,78,0.5093757773433689],[127,-39,79,0.5155196726639528],[127,-38,64,0.4173486551014529],[127,-38,65,0.42399277277964104],[127,-38,66,0.43068291257838],[127,-38,67,0.4374136967546824],[127,-38,68,0.4441753604093589],[127,-38,69,0.45095538868753776],[127,-38,70,0.45774075279710325],[127,-38,71,0.4645179334127868],[127,-38,72,0.47127290927651955],[127,-38,73,0.4779911584369733],[127,-38,74,0.4846576723212887],[127,-38,75,0.4912569828155558],[127,-38,76,0.497773202513137],[127,-38,77,0.5041900782716705],[127,-38,78,0.5104910582006724],[127,-38,79,0.5166593721824817],[127,-37,64,0.4177967491830863],[127,-37,65,0.42444729481384674],[127,-37,66,0.431151938058764],[127,-37,67,0.43790432466944595],[127,-37,68,0.44469509821304104],[127,-37,69,0.4515124388433884],[127,-37,70,0.4583429510976969],[127,-37,71,0.4651719006930993],[127,-37,72,0.47198342986495045],[127,-37,73,0.47876076557858366],[127,-37,74,0.48548642041805884],[127,-37,75,0.4921423859586298],[127,-37,76,0.49871031843437313],[127,-37,77,0.5051717165186409],[127,-37,78,0.511508091042602],[127,-37,79,0.5177011264861295],[127,-36,64,0.41814598612052445],[127,-36,65,0.4248013117100847],[127,-36,66,0.4315194782013806],[127,-36,67,0.43829311234627427],[127,-36,68,0.4451131075386849],[127,-36,69,0.4519681393764549],[127,-36,70,0.4588442634168248],[127,-36,71,0.46572536849839824],[127,-36,72,0.4725936204320799],[127,-36,73,0.4794298783072762],[127,-36,74,0.4862140828413793],[127,-36,75,0.4929256162253626],[127,-36,76,0.4995436329470854],[127,-36,77,0.5060473611063165],[127,-36,78,0.5124163737711795],[127,-36,79,0.5186308299643136],[127,-35,64,0.41842573379862447],[127,-35,65,0.4250826705894663],[127,-35,66,0.43181160900006255],[127,-35,67,0.43860414179499413],[127,-35,68,0.44545123409063536],[127,-35,69,0.4523418176160144],[127,-35,70,0.4592612029146818],[127,-35,71,0.46619174887545717],[127,-35,72,0.473113532124453],[127,-35,73,0.4800049685627058],[127,-35,74,0.48684338612240474],[127,-35,75,0.49360554786289945],[127,-35,76,0.5002681245820779],[127,-35,77,0.5063488614515904],[127,-35,78,0.5123298100954427],[127,-35,79,0.5182419223689022],[127,-34,64,0.4186638235235105],[127,-34,65,0.4253176333127773],[127,-34,66,0.4320527628255363],[127,-34,67,0.43885978407434223],[127,-34,68,0.4457295411503345],[127,-34,69,0.45265094918374504],[127,-34,70,0.4596083691330517],[127,-34,71,0.4665824897659693],[127,-34,72,0.4735512159026293],[127,-34,73,0.48049048841061626],[127,-34,74,0.48707280985508133],[127,-34,75,0.4929980967458662],[127,-34,76,0.49888443052480813],[127,-34,77,0.5047300359520333],[127,-34,78,0.5105314796720333],[127,-34,79,0.5162834007290257],[127,-33,64,0.41888562761309267],[127,-33,65,0.425529997960723],[127,-33,66,0.4322649006499935],[127,-33,67,0.4390799279241685],[127,-33,68,0.4459656011255889],[127,-33,69,0.45291052081643507],[127,-33,70,0.4598978914437403],[127,-33,71,0.46690660866982137],[127,-33,72,0.47391235561339684],[127,-33,73,0.4800646719988139],[127,-33,74,0.4857929543512972],[127,-33,75,0.4914942386803034],[127,-33,76,0.4971706304899531],[127,-33,77,0.5028225988707715],[127,-33,78,0.5084485514320309],[127,-33,79,0.5140445020498714],[127,-32,64,0.41911312584013916],[127,-32,65,0.42574020950588826],[127,-32,66,0.43246667403243966],[127,-32,67,0.43928119878808763],[127,-32,68,0.44617377824099985],[127,-32,69,0.4531323854034047],[127,-32,70,0.46013886626261236],[127,-32,71,0.46717022221080456],[127,-32,72,0.473202919156332],[127,-32,73,0.4787215713336381],[127,-32,74,0.4842197445893253],[127,-32,75,0.4897032889244207],[127,-32,76,0.4951766863365851],[127,-32,77,0.5006424394285758],[127,-32,78,0.5061005722842579],[127,-32,79,0.5115482446950499],[127,-31,64,0.4193639583358875],[127,-31,65,0.42596445739586586],[127,-31,66,0.4326725747182227],[127,-31,67,0.43947616623184893],[127,-31,68,0.44636450054674803],[127,-31,69,0.4533246076131992],[127,-31,70,0.4603367866292604],[127,-31,71,0.46649199297721655],[127,-31,72,0.47179743421656584],[127,-31,73,0.47708410984786187],[127,-31,74,0.4823611190673903],[127,-31,75,0.4876367332955182],[127,-31,76,0.49291757288616417],[127,-31,77,0.4982079140780324],[127,-31,78,0.5035091275397567],[127,-31,79,0.5088192496676872],[127,-30,64,0.4196504626959032],[127,-30,65,0.4262137578923798],[127,-30,66,0.4328920698233828],[127,-30,67,0.4396725378717436],[127,-30,68,0.44654351952383226],[127,-30,69,0.45349079857734986],[127,-30,70,0.4599244726223574],[127,-30,71,0.4650202489954773],[127,-30,72,0.4700952259623724],[127,-30,73,0.47516090914406556],[127,-30,74,0.4802288011025943],[127,-30,75,0.48530934617664107],[127,-30,76,0.49041102185249025],[127,-30,77,0.4955395783042371],[127,-30,78,0.5006974275218576],[127,-30,79,0.5058831832231392],[127,-29,64,0.4199786931762599],[127,-29,65,0.4264930191486878],[127,-29,66,0.43312872070313335],[127,-29,67,0.43987233804708065],[127,-29,68,0.4467111556745249],[127,-29,69,0.45348624302357876],[127,-29,70,0.4583807254844707],[127,-29,71,0.46325001072644667],[127,-29,72,0.4681068512846823],[127,-29,73,0.47296510710308753],[127,-29,74,0.47783844424808136],[127,-29,75,0.4827391946178877],[127,-29,76,0.4876773785699711],[127,-29,77,0.4926598921556719],[127,-29,78,0.4976898604080236],[127,-29,79,0.5027661578785507],[127,-28,64,0.4203474200270853],[127,-28,65,0.42680008715708373],[127,-28,66,0.43337928374382023],[127,-28,67,0.4400710696010409],[127,-28,68,0.44686152860715644],[127,-28,69,0.45186584840111166],[127,-28,70,0.45653945171421056],[127,-28,71,0.4611952539187898],[127,-28,72,0.46584831511453795],[127,-28,73,0.4705146351219406],[127,-28,74,0.4752097708465943],[127,-28,75,0.47994762938278607],[127,-28,76,0.48473943882147835],[127,-28,77,0.4895928984680301],[127,-28,78,0.49451150990585735],[127,-28,79,0.4994940900664272],[127,-27,64,0.42074710718363323],[127,-27,65,0.4271247708614954],[127,-27,66,0.43363279147074796],[127,-27,67,0.44025685727678204],[127,-27,68,0.445464105589498],[127,-27,69,0.44995384201657085],[127,-27,70,0.4544196924445319],[127,-27,71,0.4588765092690253],[127,-27,72,0.4633414795568264],[127,-27,73,0.46783249419827216],[127,-27,74,0.47236670365430744],[127,-27,75,0.47695926254033655],[127,-27,76,0.4816222650168184],[127,-27,77,0.4863638726722407],[127,-27,78,0.4911876362909259],[127,-27,79,0.49609201259890806],[127,-26,64,0.4211588667205867],[127,-26,65,0.427447844905213],[127,-26,66,0.4338696125284191],[127,-26,67,0.43917033586675813],[127,-26,68,0.44348775831828113],[127,-26,69,0.44777607750193715],[127,-26,70,0.452048296328831],[127,-26,71,0.4563214004848937],[127,-26,72,0.460614477281516],[127,-26,73,0.46494703002062193],[127,-26,74,0.4693374903909803],[127,-26,75,0.47380193113198726],[127,-26,76,0.4783529809059694],[127,-26,77,0.48299894301324015],[127,-26,78,0.48774311926910113],[127,-26,79,0.49258334004173354],[127,-25,64,0.4215535073985068],[127,-25,65,0.427740145835651],[127,-25,66,0.4329900675352821],[127,-25,67,0.4371445138255418],[127,-25,68,0.4412672038718747],[127,-25,69,0.44536748255180564],[127,-25,70,0.4494604895203806],[127,-25,71,0.45356511558957147],[127,-25,72,0.45770207406615676],[127,-25,73,0.4618921774759474],[127,-25,74,0.4661548221765804],[127,-25,75,0.4705066830590799],[127,-25,76,0.47496062022217705],[127,-25,77,0.4795247991761212],[127,-25,78,0.48420202579808147],[127,-25,79,0.48898929692236404],[127,-24,64,0.4218976131584217],[127,-24,65,0.4269335251752287],[127,-24,66,0.4309336417013254],[127,-24,67,0.43490022320863886],[127,-24,68,0.43884069473284015],[127,-24,69,0.4427665307124236],[127,-24,70,0.446694777730571],[127,-24,71,0.450645956509131],[127,-24,72,0.45464210247068576],[127,-24,73,0.4587050200460494],[127,-24,74,0.4628547531873186],[127,-24,75,0.46710827422496304],[127,-24,76,0.47147839287221044],[127,-24,77,0.47597288683449057],[127,-24,78,0.4805938551297737],[127,-24,79,0.485337294870559],[127,-23,64,0.42100853867078786],[127,-23,65,0.42486127409435653],[127,-23,66,0.4286795152465371],[127,-23,67,0.43246958117334694],[127,-23,68,0.4362404269527801],[127,-23,69,0.44000549948980977],[127,-23,70,0.4437835291722122],[127,-23,71,0.44759639586514577],[127,-23,72,0.45146715575952573],[127,-23,73,0.4554182887814936],[127,-23,74,0.4594701689551032],[127,-23,75,0.4636397597711276],[127,-23,76,0.46793953626285356],[127,-23,77,0.4723766351283176],[127,-23,78,0.4769522338716933],[127,-23,79,0.48166115956779765],[127,-22,64,0.41893659027137026],[127,-22,65,0.42261126321869397],[127,-22,66,0.42625734439966534],[127,-22,67,0.4298818702242564],[127,-22,68,0.43349525882931633],[127,-22,69,0.43711279166959066],[127,-22,70,0.4407546778811402],[127,-22,71,0.4444439023013679],[127,-22,72,0.4482042554676707],[127,-22,73,0.45205858947426986],[127,-22,74,0.45602730198762637],[127,-22,75,0.46012705036618134],[127,-22,76,0.4643696974635928],[127,-22,77,0.468761490319728],[127,-22,78,0.47330247256460595],[127,-22,79,0.47798613098067155],[127,-21,64,0.4167083227578341],[127,-21,65,0.4202127262588699],[127,-21,66,0.42369557432847593],[127,-21,67,0.42716463009431244],[127,-21,68,0.43063171988357163],[127,-21,69,0.43411384466948527],[127,-21,70,0.4376325127193204],[127,-21,71,0.44121158639218055],[127,-21,72,0.44487533113076966],[127,-21,73,0.4486466941878308],[127,-21,74,0.4525458152751666],[127,-21,75,0.45658877095515954],[127,-21,76,0.46078655421586545],[127,-21,77,0.4651442902846858],[127,-21,78,0.4696606893466748],[127,-21,79,0.4743277364451573],[127,-20,64,0.4143541978591181],[127,-20,65,0.417694969158555],[127,-20,66,0.42102218689720217],[127,-20,67,0.4243443424912046],[127,-20,68,0.427674627970922],[127,-20,69,0.4310316768545226],[127,-20,70,0.4344381512939261],[127,-20,71,0.4379186021579449],[127,-20,72,0.44149755095367643],[127,-20,73,0.44519780411765697],[127,-20,74,0.44903900173504896],[127,-20,75,0.4530364023657964],[127,-20,76,0.4571999052676288],[127,-20,77,0.46153331091072636],[127,-20,78,0.4660338202822347],[127,-20,79,0.4706917730841109],[127,-19,64,0.4119060766394303],[127,-19,65,0.41508816489315364],[127,-19,66,0.4182654363761771],[127,-19,67,0.42144710135749125],[127,-19,68,0.4246476893306944],[127,-19,69,0.4278874140693928],[127,-19,70,0.4311899912266358],[127,-19,71,0.4345805229298509],[127,-19,72,0.4380836237125497],[127,-19,73,0.4417217804781076],[127,-19,74,0.4455139484114166],[127,-19,75,0.4494743843651766],[127,-19,76,0.4536117188500489],[127,-19,77,0.4579282673556007],[127,-19,78,0.4624195813264925],[127,-19,79,0.4670742387191644],[127,-18,64,0.409394698304618],[127,-18,65,0.4124206262143277],[127,-18,66,0.4154509061287849],[127,-18,67,0.41849544497029995],[127,-18,68,0.42157009915468735],[127,-18,69,0.4246966532485958],[127,-18,70,0.42789983303723855],[127,-18,71,0.4312052214712938],[127,-18,72,0.4346374358163849],[127,-18,73,0.43821853989075626],[127,-18,74,0.4419666931565221],[127,-18,75,0.44589503803227226],[127,-18,76,0.45001082638995943],[127,-18,77,0.4543147857906828],[127,-18,78,0.45880072560687213],[127,-18,79,0.4634553827759523],[127,-17,64,0.4068349372940186],[127,-17,65,0.4097048806148047],[127,-17,66,0.4125885682103176],[127,-17,67,0.41549656990907163],[127,-17,68,0.41844607050688026],[127,-17,69,0.42146044786029413],[127,-17,70,0.42456543727067814],[127,-17,71,0.42778708217411443],[127,-17,72,0.43114996669611316],[127,-17,73,0.4346756840416779],[127,-17,74,0.4383815423312092],[127,-17,75,0.44227950908728786],[127,-17,76,0.44637539516590075],[127,-17,77,0.450668278512078],[127,-17,78,0.4551501677089092],[127,-17,79,0.45980590488398904],[127,-16,64,0.40420177049403916],[127,-16,65,0.40691714362865633],[127,-16,66,0.40965625558837987],[127,-16,67,0.41243029610205617],[127,-16,68,0.4152577519512621],[127,-16,69,0.41816357563763057],[127,-16,70,0.4211744564755443],[127,-16,71,0.42431681310504554],[127,-16,72,0.42761508913964846],[127,-16,73,0.43109028478131745],[127,-16,74,0.4347587258505618],[127,-16,75,0.438631071267531],[127,-16,76,0.442711559603198],[127,-16,77,0.4469974949021438],[127,-16,78,0.4514789715648923],[127,-16,79,0.4561388376716796],[127,-15,64,0.40146973220210735],[127,-15,65,0.4040337014037974],[127,-15,66,0.40663238156054576],[127,-15,67,0.4092775210785271],[127,-15,68,0.41198884281485104],[127,-15,69,0.4147928010555537],[127,-15,70,0.4177169161262642],[127,-15,71,0.42078782011621607],[127,-15,72,0.42402962730906474],[127,-15,73,0.42746253969983117],[127,-15,74,0.43110168887255546],[127,-15,75,0.4349562150965557],[127,-15,76,0.43902858407914],[127,-15,77,0.4433141413931372],[127,-15,78,0.4478009041835875],[127,-15,79,0.4524695893528176],[127,-14,64,0.39862305658365865],[127,-14,65,0.401040045159984],[127,-14,66,0.4035039029006384],[127,-14,67,0.4060268489917279],[127,-14,68,0.40862973706160327],[127,-14,69,0.4113404036762187],[127,-14,70,0.4141870245344202],[127,-14,71,0.4171962277139217],[127,-14,72,0.4203915532407666],[127,-14,73,0.4237921455347678],[127,-14,74,0.4274116798199349],[127,-14,75,0.43125752317027427],[127,-14,76,0.43533013044072166],[127,-14,77,0.4396226749143386],[127,-14,78,0.4441209130851453],[127,-14,79,0.4488032825945004],[127,-13,64,0.3956536966660387],[127,-13,65,0.39792894730625145],[127,-13,66,0.40026447829909134],[127,-13,67,0.40267285975323525],[127,-13,68,0.4051759331151938],[127,-13,69,0.4078027588140506],[127,-13,70,0.41058195347214826],[127,-13,71,0.41353988668426034],[127,-13,72,0.416699245567917],[127,-13,73,0.4200778284122792],[127,-13,74,0.42368756831692445],[127,-13,75,0.4275337872945595],[127,-13,76,0.4316146808937241],[127,-13,77,0.4359210329830112],[127,-13,78,0.44043615993207436],[127,-13,79,0.44513608303007995],[127,-12,64,0.39255951149026685],[127,-12,65,0.3946987032993266],[127,-12,66,0.3969127886528795],[127,-12,67,0.3992145343185269],[127,-12,68,0.40162659211799245],[127,-12,69,0.40417905681614713],[127,-12,70,0.4069007454700629],[127,-12,71,0.4098174943870569],[127,-12,72,0.4129508449567911],[127,-12,73,0.4163169530734722],[127,-12,74,0.41992572283115653],[127,-12,75,0.4237801647627146],[127,-12,76,0.4278759784813985],[127,-12,77,0.4322013591771327],[127,-12,78,0.43673702702249495],[127,-12,79,0.44145647815910777],[127,-11,64,0.38934262163860783],[127,-11,65,0.39135153942439954],[127,-11,66,0.39345101937602167],[127,-11,67,0.39565383631244283],[127,-11,68,0.3979832448629052],[127,-11,69,0.40047016127520446],[127,-11,70,0.4031433482212776],[127,-11,71,0.40602782829833284],[127,-11,72,0.40914370701978037],[127,-11,73,0.41250521206344265],[127,-11,74,0.41611994924326],[127,-11,75,0.41998837526710675],[127,-11,76,0.4241034869419817],[127,-11,77,0.42845072609262225],[127,-11,78,0.4330080990753524],[127,-11,79,0.4377465093988092],[127,-10,64,0.3860079340428948],[127,-10,65,0.38789218735274195],[127,-10,66,0.3898835055534901],[127,-10,67,0.3919944508052945],[127,-10,68,0.3942486482178357],[127,-10,69,0.39667760702689986],[127,-10,70,0.3993097770003369],[127,-10,71,0.4021690937926186],[127,-10,72,0.40527395380468645],[127,-10,73,0.4086363961163984],[127,-10,74,0.4122614917355766],[127,-10,75,0.41614694001700747],[127,-10,76,0.4202828717177434],[127,-10,77,0.42465185777544767],[127,-10,78,0.42922912252911455],[127,-10,79,0.43398295974918005],[127,-9,64,0.3825618376234919],[127,-9,65,0.38432662696271225],[127,-9,66,0.3862155413733816],[127,-9,67,0.3882406816340772],[127,-9,68,0.39042579240902675],[127,-9,69,0.3928027392838851],[127,-9,70,0.3953994064509011],[127,-9,71,0.3982383875378189],[127,-9,72,0.4013361252700235],[127,-9,73,0.4047022472022632],[127,-9,74,0.4083390975397428],[127,-9,75,0.41224146469487066],[127,-9,76,0.41639650385737054],[127,-9,77,0.42078385349548786],[127,-9,78,0.42537594435929627],[127,-9,79,0.4301384992263594],[127,-8,64,0.3790110719088123],[127,-8,65,0.3806609994989561],[127,-8,66,0.3824523558417838],[127,-8,67,0.3843965092061844],[127,-8,68,0.3865170610372817],[127,-8,69,0.3888459957223558],[127,-8,70,0.39141039350733836],[127,-8,71,0.3942312782259956],[127,-8,72,0.39732293243861105],[127,-8,73,0.40069239590807354],[127,-8,74,0.4043391472106863],[127,-8,75,0.40825496792672744],[127,-8,76,0.4124239885096521],[127,-8,77,0.41682291459634263],[127,-8,78,0.42142143219849754],[127,-8,79,0.4261827899095867],[127,-7,64,0.3753617713345165],[127,-7,65,0.3769006936831884],[127,-7,66,0.3785982573060938],[127,-7,67,0.38046481121948766],[127,-7,68,0.38252354616449347],[127,-7,69,0.3848063337592168],[127,-7,70,0.3873392335878372],[127,-7,71,0.39014150667853376],[127,-7,72,0.39322511417233014],[127,-7,73,0.39659438500728],[127,-7,74,0.400245852198318],[127,-7,75,0.4041682569659387],[127,-7,76,0.40834271964695673],[127,-7,77,0.4127430760112385],[127,-7,78,0.41733637731384204],[127,-7,79,0.4220835521346721],[127,-6,64,0.371618688415255],[127,-6,65,0.3730496078742845],[127,-6,66,0.3746559497811566],[127,-6,67,0.37644674917831283],[127,-6,68,0.37844452122292016],[127,-6,69,0.38068080563430573],[127,-6,70,0.383180452526779],[127,-6,71,0.3859608076405431],[127,-6,72,0.38903139972678574],[127,-6,73,0.3923937812194348],[127,-6,74,0.3960415215660531],[127,-6,75,0.399960352291923],[127,-6,76,0.4041284625811358],[127,-6,77,0.4085169438795657],[127,-6,78,0.413090381761098],[127,-6,79,0.4178075930523458],[127,-5,64,0.3677845994170819],[127,-5,65,0.3691095918026005],[127,-5,66,0.3706260244857401],[127,-5,67,0.3723413239771959],[127,-5,68,0.37427707486394596],[127,-5,69,0.3764642842409961],[127,-5,70,0.3789264370002069],[127,-5,71,0.3816788558157697],[127,-5,72,0.38472857942498473],[127,-5,73,0.38807437728139915],[127,-5,74,0.3917068997574737],[127,-5,75,0.39560896280745245],[127,-5,76,0.39975596574361016],[127,-5,77,0.4041164405333777],[127,-5,78,0.4086527307949361],[127,-5,79,0.41332179845633266],[127,-4,64,0.36385989652920087],[127,-4,65,0.3650800717672612],[127,-4,66,0.3665066303483907],[127,-4,67,0.36814510415725815],[127,-4,68,0.37001590917077165],[127,-4,69,0.37214934292409313],[127,-4,70,0.37456740643497133],[127,-4,71,0.3772833388847248],[127,-4,72,0.3803016859293191],[127,-4,73,0.3836184865349053],[127,-4,74,0.3872215773352228],[127,-4,75,0.39109101327644386],[127,-4,76,0.3951996030927885],[127,-4,77,0.39951355794618926],[127,-4,78,0.4039932513690861],[127,-4,79,0.40859408847237344],[127,-3,64,0.35984237083440723],[127,-3,65,0.3609578634805866],[127,-3,66,0.3622933275267121],[127,-3,67,0.36385213070888295],[127,-3,68,0.3656533059060561],[127,-3,69,0.367726292682012],[127,-3,70,0.3700915295755346],[127,-3,71,0.3727601603915931],[127,-3,72,0.37573428868803793],[127,-3,73,0.37900733228138683],[127,-3,74,0.38256447660741116],[127,-3,75,0.38638322557722127],[127,-3,76,0.3904340483845379],[127,-3,77,0.39468112054716087],[127,-3,78,0.3990831573087077],[127,-3,79,0.403594337386428],[127,-2,64,0.3557271906061844],[127,-2,65,0.3567371769686972],[127,-2,66,0.35797912820059063],[127,-2,67,0.3594540024973174],[127,-2,68,0.3611792646494966],[127,-2,69,0.3631833803696398],[127,-2,70,0.36548518901175336],[127,-2,71,0.3680937754794684],[127,-2,72,0.37100890418613947],[127,-2,73,0.37422153416419157],[127,-2,74,0.37771441401775463],[127,-2,75,0.38146275525595535],[127,-2,76,0.38543498239780766],[127,-2,77,0.3895935581054822],[127,-2,78,0.39389588148398036],[127,-2,79,0.39829525758246603],[127,-1,64,0.351507079607791],[127,-1,65,0.3524098180825625],[127,-1,66,0.3535547290387688],[127,-1,67,0.3549401465158651],[127,-1,68,0.3565818167928035],[127,-1,69,0.35850715159030794],[127,-1,70,0.3607333970377455],[127,-1,71,0.363267662490409],[127,-1,72,0.366107524633456],[127,-1,73,0.3692416938031891],[127,-1,74,0.37265074109938034],[127,-1,75,0.3763078847448914],[127,-1,76,0.3801798340416661],[127,-1,77,0.384227689177018],[127,-1,78,0.3884078950538487],[127,-1,79,0.39158164810528384],[127,0,64,0.3471727001338737],[127,0,65,0.3479655912384935],[127,0,66,0.3490089397988424],[127,0,67,0.3502982772241241],[127,0,68,0.3518475194004597],[127,0,69,0.3536829819903252],[127,0,70,0.35582036621700414],[127,0,71,0.35826493342800997],[127,0,72,0.3610122676764484],[127,0,73,0.36404908182984896],[127,0,74,0.36735406568181916],[127,0,75,0.3708987744638199],[127,0,76,0.3746485560864394],[127,0,77,0.378563515383216],[127,0,78,0.3825995135878744],[127,0,79,0.38388422239318604],[127,1,64,0.34271324379404056],[127,1,65,0.34339290582137516],[127,1,66,0.34432931011466517],[127,1,67,0.34551504681670514],[127,1,68,0.3469621307564516],[127,1,69,0.34869577896751536],[127,1,70,0.3507302370959499],[127,1,71,0.35306908640758405],[127,1,72,0.3557061511969268],[127,1,73,0.3586264315736087],[127,1,74,0.3618070600253196],[127,1,75,0.36521828011702456],[127,1,76,0.3688244456568983],[127,1,77,0.37258503864106673],[127,1,78,0.37645570428416364],[127,1,79,0.37617161472282745],[127,2,64,0.33811723422884526],[127,2,65,0.33867958976131735],[127,2,66,0.3395029578400203],[127,2,67,0.3405768901219956],[127,2,68,0.3419114721090481],[127,2,69,0.34353085966317704],[127,2,70,0.3454479708707543],[127,2,71,0.34766491041745945],[127,2,72,0.35017400660385156],[127,2,73,0.35295885641200897],[127,2,74,0.3559953769670493],[127,2,75,0.3592528617358454],[127,2,76,0.3626950398131438],[127,2,77,0.3662811366634488],[127,2,78,0.36897747087765187],[127,2,79,0.36845541416191613],[127,3,64,0.33337356708558924],[127,3,65,0.3338139403952126],[127,3,66,0.33451763114231514],[127,3,67,0.33547109580532136],[127,3,68,0.33668250398845506],[127,3,69,0.3381750271627896],[127,3,70,0.3399604191092237],[127,3,71,0.3420395412128306],[127,3,72,0.3444035127481016],[127,3,73,0.3470348529726579],[127,3,74,0.3499086133379804],[127,3,75,0.3529934981600645],[127,3,76,0.3562529721360774],[127,3,77,0.3596463531456719],[127,3,78,0.36134408329449974],[127,3,79,0.3607410642293074],[127,4,64,0.3284727632643612],[127,4,65,0.32878598262874004],[127,4,66,0.3293629704256021],[127,4,67,0.33018706808301834],[127,4,68,0.33126458171603884],[127,4,69,0.3326178125902814],[127,4,70,0.3342575441904959],[127,4,71,0.33618365104008663],[127,4,72,0.33838634528918043],[127,4,73,0.3408474001812797],[127,4,74,0.34354134868975017],[127,4,75,0.3464366556831872],[127,4,76,0.3494968620546294],[127,4,77,0.3526816993340178],[127,4,78,0.3536996868086467],[127,4,79,0.35302713430102695],[127,5,64,0.32340844234705535],[127,5,65,0.3235889421164062],[127,5,66,0.3240319787273127],[127,5,67,0.32471778858983424],[127,5,68,0.3256509007824476],[127,5,69,0.32685289482340124],[127,5,70,0.32833380322737976],[127,5,71,0.3300927859482522],[127,5,72,0.3321194561823405],[127,5,73,0.3343951696220487],[127,5,74,0.3368942754493256],[127,5,75,0.3395853274567471],[127,5,76,0.3424322537897161],[127,5,77,0.3453954839165131],[127,5,78,0.3460382417596028],[127,5,79,0.34530465591186726],[127,6,64,0.3181790251424184],[127,6,65,0.31822094337722173],[127,6,66,0.3185227110797722],[127,6,67,0.3190614890495237],[127,6,68,0.3198401424468886],[127,6,69,0.32087970736154087],[127,6,70,0.32218970361380894],[127,6,71,0.32376885685055234],[127,6,72,0.325606486877186],[127,6,73,0.32768384765405406],[127,6,74,0.32997541725754476],[127,6,75,0.3324501362318506],[127,6,76,0.3350725928894292],[127,6,77,0.33780415425691557],[127,6,78,0.3383456917205097],[127,6,79,0.33755649788655623],[127,7,64,0.3127920701067917],[127,7,65,0.3126893844231528],[127,7,66,0.312842648085269],[127,7,67,0.3132260023292848],[127,7,68,0.3138407858280256],[127,7,69,0.3147076892690102],[127,7,70,0.3158359655588942],[127,7,71,0.3172241823133588],[127,7,72,0.31886165700771435],[127,7,73,0.32072983371925845],[127,7,74,0.3228035997823114],[127,7,75,0.32505254082603546],[127,7,76,0.3274421328201758],[127,7,77,0.3299348699144796],[127,7,78,0.3305976782929322],[127,7,79,0.3297554682001339],[127,8,64,0.3072711483885729],[127,8,65,0.3070180213765985],[127,8,66,0.3070158535025674],[127,8,67,0.30723593678165906],[127,8,68,0.3076782694915696],[127,8,69,0.3083633858101789],[127,8,70,0.30930049679732],[127,8,71,0.3104882587269965],[127,8,72,0.3119162409659804],[127,8,73,0.3135663270408369],[127,8,74,0.31541404724161554],[127,8,75,0.31742984127977397],[127,8,76,0.31958024969231613],[127,8,77,0.3218290328632074],[127,8,78,0.32275680492046294],[127,8,79,0.32186252334663035],[127,9,64,0.3016410311400234],[127,9,65,0.30123206943414554],[127,9,66,0.30106808537749113],[127,9,67,0.3011178193837186],[127,9,68,0.30138016058957123],[127,9,69,0.30187565070084554],[127,9,70,0.30261364898306087],[127,9,71,0.3035931051986618],[127,9,72,0.3048040479835068],[127,9,73,0.30622899957138766],[127,9,74,0.3078443152464314],[127,9,75,0.3096214460893571],[127,9,76,0.31152812377404815],[127,9,77,0.313529466365196],[127,9,78,0.3147847975661384],[127,9,79,0.3138382634057989],[127,10,64,0.295924672442629],[127,10,65,0.29535511811683335],[127,10,66,0.29502367633411164],[127,10,67,0.2948969393330795],[127,10,68,0.2949729475712433],[127,10,69,0.2952723800312786],[127,10,70,0.29580489142194966],[127,10,71,0.2965698818549395],[127,10,72,0.29755799548381506],[127,10,73,0.2987525400572764],[127,10,74,0.30013082580036476],[127,10,75,0.3016654222371838],[127,10,76,0.3033253317722505],[127,10,77,0.3050770790541601],[127,10,78,0.30664565643059605],[127,10,79,0.305645947437603],[127,11,64,0.2901454057005093],[127,11,65,0.2894113101975799],[127,11,66,0.28890767772997145],[127,11,67,0.2885994368500246],[127,11,68,0.28848405169228275],[127,11,69,0.2885824245713059],[127,11,70,0.2889046027273336],[127,11,71,0.2894505402911978],[127,11,72,0.29021159907474486],[127,11,73,0.2911719660328257],[127,11,74,0.2923099858450573],[127,11,75,0.29359940727658607],[127,11,76,0.2950105421911651],[127,11,77,0.29651133630621906],[127,11,78,0.298068350998703],[127,11,79,0.29725139362108943],[127,12,64,0.2843294590998679],[127,12,65,0.28342783575892766],[127,12,66,0.28274831241839643],[127,12,67,0.2822546913881586],[127,12,68,0.2819441259134595],[127,12,69,0.2818377744639009],[127,12,70,0.2819461168391299],[127,12,71,0.2822697074018633],[127,12,72,0.282800672146602],[127,12,73,0.28352411910373826],[127,12,74,0.2844194605616732],[127,12,75,0.2854616458097497],[127,12,76,0.2866223033274445],[127,12,77,0.28787079156953715],[127,12,78,0.28917515772328095],[127,12,79,0.28862288332294506],[127,13,64,0.2785087963527534],[127,13,65,0.2774377475708279],[127,13,66,0.27657974222627996],[127,13,67,0.2758980152146986],[127,13,68,0.2753896469274591],[127,13,69,0.2750760217450845],[127,13,70,0.2749680284625594],[127,13,71,0.27506680718723875],[127,13,72,0.2753652391358222],[127,13,73,0.27584934697393915],[127,13,74,0.2764996042153404],[127,13,75,0.2772921524258359],[127,13,76,0.2781999252071543],[127,13,77,0.2791936781669396],[127,13,78,0.2802429243135068],[127,13,79,0.279731070202655],[127,14,64,0.27272429028967343],[127,14,65,0.2714831053437592],[127,14,66,0.27044515762670823],[127,14,67,0.26957365968993724],[127,14,68,0.26886580741271804],[127,14,69,0.2683431074711862],[127,14,70,0.26801676430014565],[127,14,71,0.26788842641327887],[127,14,72,0.2679516677463937],[127,14,73,0.2681933768421096],[127,14,74,0.2685950524284739],[127,14,75,0.26913400417991257],[127,14,76,0.26978445768615483],[127,14,77,0.27051856289238896],[127,14,78,0.27130730551221194],[127,14,79,0.27054889490368406],[127,15,64,0.26702602429739564],[127,15,65,0.2656150980709907],[127,15,66,0.264396643658764],[127,15,67,0.263334351609583],[127,15,68,0.2624256605345008],[127,15,69,0.2616920278798401],[127,15,70,0.2611448232452777],[127,15,71,0.26078608192410396],[127,15,72,0.26060997789597545],[127,15,73,0.2606042016406026],[127,15,74,0.26075124136413885],[127,15,75,0.26102956647442455],[127,15,76,0.26141471238636754],[127,15,77,0.261880265983554],[127,15,78,0.26230294511332963],[127,15,79,0.26105543521202434],[127,16,64,0.26145279802517923],[127,16,65,0.2598730986541527],[127,16,66,0.25847372110449157],[127,16,67,0.2572192938551826],[127,16,68,0.2561075997150116],[127,16,69,0.2551598665470901],[127,16,70,0.2543874906557011],[127,16,71,0.25379280267679555],[127,16,72,0.2533705295843502],[127,16,73,0.2531091582502798],[127,16,74,0.2529921991967154],[127,16,75,0.25299934943280067],[127,16,76,0.2531075535215726],[127,16,77,0.25329196227485234],[127,16,78,0.2525213016567349],[127,16,79,0.2512489941821039],[127,17,64,0.2560197377766255],[127,17,65,0.25427272187985356],[127,17,66,0.2526921775572401],[127,17,67,0.25124409547074156],[127,17,68,0.2499266909547554],[127,17,69,0.24876079108709281],[127,17,70,0.2477577064870082],[127,17,71,0.24692001147368642],[127,17,72,0.2462429894830174],[127,17,73,0.2457159767086447],[127,17,74,0.24532360266402062],[127,17,75,0.24504692662445843],[127,17,76,0.24486446916975912],[127,17,77,0.24375192266745882],[127,17,78,0.24241928178996916],[127,17,79,0.24113725532345534],[127,18,64,0.2507210362170052],[127,18,65,0.24880868493559488],[127,18,66,0.2470471040324589],[127,18,67,0.24540403387932627],[127,18,68,0.2438781990620486],[127,18,69,0.2424898666865804],[127,18,70,0.24125017172043955],[127,18,71,0.24016191079733845],[127,18,72,0.23922096332813553],[127,18,73,0.238417607608921],[127,18,74,0.2375198579276437],[127,18,75,0.2361080817998067],[127,18,76,0.23471006231566766],[127,18,77,0.23333940028644592],[127,18,78,0.23200951731260536],[127,18,79,0.23073305359858928],[127,19,64,0.24081502152942186],[127,19,65,0.2394264519525389],[127,19,66,0.23801605150807287],[127,19,67,0.23661889160795677],[127,19,68,0.23523902035285515],[127,19,69,0.23385874713779276],[127,19,70,0.23246766356024579],[127,19,71,0.23106192049688906],[127,19,72,0.22964292025243668],[127,19,73,0.22821611462840807],[127,19,74,0.22678991005891008],[127,19,75,0.22537468068401761],[127,19,76,0.22398188995534327],[127,19,77,0.22262332109501407],[127,19,78,0.22131041646200017],[127,19,79,0.2200537256186474],[127,20,64,0.23044590575131865],[127,20,65,0.22892381410487614],[127,20,66,0.22739612323128552],[127,20,67,0.2258956486900021],[127,20,68,0.22442599325516108],[127,20,69,0.22297051845215257],[127,20,70,0.22151936932912145],[127,20,71,0.22006874208820898],[127,20,72,0.21861961700424884],[127,20,73,0.21717659992275434],[127,20,74,0.21574687338654247],[127,20,75,0.21433925815752486],[127,20,76,0.21296338561880263],[127,20,77,0.21162898126440005],[127,20,78,0.21034525921335123],[127,20,79,0.209120427421556],[127,21,64,0.219771678549602],[127,21,65,0.21811356488799108],[127,21,66,0.21646751894539001],[127,21,67,0.2148638357302243],[127,21,68,0.2133056219298067],[127,21,69,0.2117773930898242],[127,21,70,0.21026988149371256],[127,21,71,0.20877929934577275],[127,21,72,0.20730612226293593],[127,21,73,0.2058539835351158],[127,21,74,0.2044286800932144],[127,21,75,0.20303729083623728],[127,21,76,0.2016874076836662],[127,21,77,0.20038647943857074],[127,21,78,0.19914126827454115],[127,21,79,0.1979574183956055],[127,22,64,0.20885319978992314],[127,22,65,0.20705595674917032],[127,22,66,0.20528960194110915],[127,22,67,0.20358169641201035],[127,22,68,0.20193481004458905],[127,22,69,0.20033469089648753],[127,22,70,0.1987726769151756],[127,22,71,0.19724496032904346],[127,22,72,0.19575143111863127],[127,22,73,0.19429463289246884],[127,22,74,0.1928788319854227],[127,22,75,0.19150920030668336],[127,22,76,0.1901911121770489],[127,22,77,0.18892955511331708],[127,22,78,0.18772865424515345],[127,22,79,0.18659130978697527],[127,23,64,0.19775707459620886],[127,23,65,0.1958170444777441],[127,23,66,0.1939275350080393],[127,23,67,0.192113215401108],[127,23,68,0.19037608815789758],[127,23,69,0.18870318644614098],[127,23,70,0.18708645729900605],[127,23,71,0.18552203322749608],[127,23,72,0.18400914426479012],[127,23,73,0.18254914343399428],[127,23,74,0.18114464632726346],[127,23,75,0.17979878519217585],[127,23,76,0.1785145776334138],[127,23,77,0.1772944097566167],[127,23,78,0.17613963331057558],[127,23,79,0.1750502761239806],[127,24,64,0.1865529637517102],[127,24,65,0.18446601138693355],[127,24,66,0.1824496406523676],[127,24,67,0.18052553046320502],[127,24,68,0.17869509569639513],[127,24,69,0.17694667927972862],[127,24,70,0.17527282586877269],[127,24,71,0.17366956680293127],[127,24,72,0.17213540816615716],[127,24,73,0.17067043262748308],[127,24,74,0.16927551561317605],[127,24,75,0.16795165607085555],[127,24,76,0.16669942179963143],[127,24,77,0.16551850904165297],[127,24,78,0.1644074157633377],[127,24,79,0.16336322779923054],[127,25,64,0.1753109844215069],[127,25,65,0.17307258276332874],[127,25,66,0.17092484461243604],[127,25,67,0.16888642263851955],[127,25,68,0.16695813440536042],[127,25,69,0.16512962782680005],[127,25,70,0.16339401888853627],[127,25,71,0.16174719597662948],[127,25,72,0.16018688998463257],[127,25,73,0.15871185786772127],[127,25,74,0.1573211800560964],[127,25,75,0.15601367185103313],[127,25,76,0.154787408644113],[127,25,77,0.15363936452590118],[127,25,78,0.15256516358856664],[127,25,79,0.1515589429779749],[127,26,64,0.1640992020638141],[127,26,65,0.16170452729791673],[127,26,66,0.15942020321992018],[127,26,67,0.15726188483512205],[127,26,68,0.15522979342749818],[127,26,69,0.15331484694585656],[127,26,70,0.1515106917410535],[127,26,71,0.1498130320373004],[127,26,72,0.14821878651087017],[127,26,73,0.14672535728485328],[127,26,74,0.1453300116123215],[127,26,75,0.14402937623584894],[127,26,76,0.1428190441338247],[127,26,77,0.14169329309589163],[127,26,78,0.1406449153151585],[127,26,79,0.13966515694381754],[127,27,64,0.15298121455834926],[127,27,65,0.1504252473758387],[127,27,66,0.14799851531834568],[127,27,67,0.14571376936506275],[127,27,68,0.14357064632417363],[127,27,69,0.14156126917028328],[127,27,70,0.13967975941050997],[127,27,71,0.13792159707514848],[127,27,72,0.13628286646394544],[127,27,73,0.1347596125879682],[127,27,74,0.1333473084421715],[127,27,75,0.1320404329656852],[127,27,76,0.13083215927644182],[127,27,77,0.12971415250652085],[127,27,78,0.12867647631854778],[127,27,79,0.12770760695189218],[127,28,64,0.1420138297825152],[127,28,65,0.13929145930716974],[127,28,66,0.13671601965644634],[127,28,67,0.13429751515128666],[127,28,68,0.13203502055216523],[127,28,69,0.12992176993815624],[127,28,70,0.12795229139913838],[127,28,71,0.1261218024142414],[127,28,72,0.12442554567168974],[127,28,73,0.12285823320011054],[127,28,74,0.12141359881475729],[127,28,75,0.12008405861210524],[127,28,76,0.11886047898460042],[127,28,77,0.11773205137650528],[127,28,78,0.11668627276579827],[127,28,79,0.11570903063617453],[127,29,64,0.13124483810226445],[127,29,65,0.1283509648200538],[127,29,66,0.12562017891366858],[127,29,67,0.12305995557111336],[127,29,68,0.1206688401417364],[127,29,69,0.11844105730859883],[127,29,70,0.11637146131989505],[127,29,71,0.1144549710133845],[127,29,72,0.11268599482439488],[127,29,73,0.11105796110019797],[127,29,74,0.1095629536009575],[127,29,75,0.10819145180710087],[127,29,76,0.10693217540148905],[127,29,77,0.10577203205465502],[127,29,78,0.10469616741665733],[127,29,79,0.10368811600991625],[127,30,64,0.12071089925449796],[127,30,65,0.11764053396981883],[127,30,66,0.11474757116351217],[127,30,67,0.1120372283588197],[127,30,68,0.10950756357789511],[127,30,69,0.10715364871259692],[127,30,70,0.10497057423058724],[127,30,71,0.10295292739483529],[127,30,72,0.10109430383672502],[127,30,73,0.09938692086885613],[127,30,74,0.09782133230540069],[127,30,75,0.09638624430852379],[127,30,76,0.09506843153934254],[127,30,77,0.093852752663642],[127,30,78,0.09272226405005843],[127,30,79,0.09165843030180423],[127,31,64,0.11044024465885509],[127,31,65,0.10718881428005192],[127,31,66,0.10412701633473305],[127,31,67,0.10125812656966804],[127,31,68,0.09857976577083952],[127,31,69,0.09608769170161736],[127,31,70,0.09377713469986643],[127,31,71,0.0916423218278601],[127,31,72,0.08967607075474852],[127,31,73,0.08786948132633059],[127,31,74,0.08621172449069506],[127,31,75,0.08468992801105678],[127,31,76,0.08328915816950665],[127,31,77,0.0819924964498275],[127,31,78,0.08078120998794679],[127,31,79,0.07963501439503078],[127,32,64,0.10045757991223811],[127,32,65,0.09702151358398074],[127,32,66,0.09378504843351697],[127,32,67,0.09074986539531114],[127,32,68,0.08791320382385934],[127,32,69,0.08527133437676948],[127,32,70,0.08281952848191988],[127,32,71,0.0805516302194825],[127,32,72,0.07845972677713277],[127,32,73,0.07653391214671278],[127,32,74,0.07476214364635426],[127,32,75,0.07313019062776284],[127,32,76,0.07162167451388347],[127,32,77,0.07021819910984967],[127,32,78,0.06889956994387267],[127,32,79,0.06764410122448472],[127,33,64,0.09077334816343484],[127,33,65,0.08715021878603738],[127,33,66,0.08373430104658824],[127,33,67,0.08052604238046748],[127,33,68,0.0775223598606837],[127,33,69,0.07471986110396528],[127,33,70,0.07211376331868809],[127,33,71,0.06969751364076077],[127,33,72,0.06746252913680112],[127,33,73,0.06539802531807667],[127,33,74,0.06349093268055493],[127,33,75,0.061725900575540844],[127,33,76,0.060085387514400374],[127,33,77,0.05854983682204578],[127,33,78,0.05709793638105139],[127,33,79,0.05570696105129733],[127,34,64,0.08138050687583387],[127,34,65,0.07756908092327655],[127,34,66,0.07397010930868315],[127,34,67,0.07058316065396653],[127,34,68,0.06740488929481961],[127,34,69,0.06443207174093067],[127,34,70,0.06165978676289354],[127,34,71,0.05908108364146146],[127,34,72,0.056686783635224225],[127,34,73,0.054465365068555927],[127,34,74,0.05240293150299171],[127,34,75,0.050483262257898724],[127,34,76,0.04868794435886207],[127,34,77,0.046996584816797284],[127,34,78,0.04538710198119522],[127,34,79,0.04383609456686124],[127,35,64,0.07225294660352335],[127,35,65,0.06825320942692961],[127,35,66,0.06446888678173888],[127,35,67,0.060898990770619096],[127,35,68,0.05753996922411452],[127,35,69,0.054388620422888126],[127,35,70,0.051439821045280415],[127,35,71,0.04868624029855202],[127,35,72,0.04611819397028615],[127,35,73,0.04372357719134361],[127,35,74,0.04148787533772309],[127,35,75,0.03939425231473675],[127,35,76,0.037423715292653315],[127,35,77,0.035555354800511606],[127,35,78,0.03376665893785462],[127,35,79,0.032033900332335496],[127,36,64,0.06334402440724692],[127,36,65,0.05915717648060999],[127,36,66,0.05518660670995351],[127,36,67,0.05143102956753549],[127,36,68,0.04788673474752948],[127,36,69,0.04455043163926672],[127,36,70,0.04141676328400583],[127,36,71,0.03847806258017236],[127,36,72,0.035724249528605284],[127,36,73,0.03314280242071176],[127,36,74,0.03071880237669848],[127,36,75,0.02843505046979173],[127,36,76,0.026272256510557583],[127,36,77,0.02420929841511736],[127,36,78,0.022223550945851114],[127,36,79,0.020291282492617486],[127,37,64,0.054585215831123746],[127,37,65,0.05021363529138741],[127,37,66,0.046057391323635385],[127,37,67,0.042115059514044276],[127,37,68,0.038382806435607375],[127,37,69,0.034857196534776376],[127,37,70,0.03153265362554582],[127,37,71,0.028401253230244387],[127,37,72,0.025452653429406905],[127,37,73,0.022674095201274107],[127,37,74,0.020050471652023512],[127,37,75,0.01756446537816331],[127,37,76,0.015196753052016947],[127,37,77,0.012926276181839686],[127,37,78,0.01073057687336954],[127,37,79,0.008586197308993333],[127,38,64,0.04588728636221402],[127,38,65,0.0413344279871308],[127,38,66,0.03699454901150109],[127,38,67,0.03286610877256155],[127,38,68,0.02894516764436683],[127,38,69,0.025228162561202357],[127,38,70,0.021709373165323162],[127,38,71,0.018380741835500786],[127,38,72,0.01523182863412154],[127,38,73,0.012249831799178785],[127,38,74,0.009419673188133519],[127,38,75,0.006724147930973992],[127,38,76,0.004144137408990261],[127,38,77,0.0016588845456953511],[127,38,78,-7.536697195784652E-4],[127,38,79,-0.0031164900072333593],[127,39,64,0.037193568676338606],[127,39,65,0.03246332135926893],[127,39,66,0.02794253733981821],[127,39,67,0.02362955633601705],[127,39,68,0.019520362096900362],[127,39,69,0.015611326528880202],[127,39,70,0.011896697728549784],[127,39,71,0.008368437562117935],[127,39,72,0.005016190642475555],[127,39,73,0.001827315627743983],[127,39,74,-0.0012130217348434212],[127,39,75,-0.004121694537625832],[127,39,76,-0.006917400464901416],[127,39,77,-0.009620388343060829],[127,39,78,-0.012252126571673553],[127,39,79,-0.014834914614875353],[127,40,64,0.028493616169724297],[127,40,65,0.02358976733342559],[127,40,66,0.01889079982466553],[127,40,67,0.01439502595373522],[127,40,68,0.010098419299171544],[127,40,69,0.005997346333515062],[127,40,70,0.002086133732513243],[127,40,71,-0.001643087019498001],[127,40,72,-0.005200407805078917],[127,40,73,-0.008598112042781839],[127,40,74,-0.01185058339745379],[127,40,75,-0.014974155715830523],[127,40,76,-0.017986904999802707],[127,40,77,-0.020908384348046434],[127,40,78,-0.023759302901684567],[127,40,79,-0.026561149922055348],[127,41,64,0.019780884220241053],[127,41,65,0.014707117865983086],[127,41,66,0.009832710807654037],[127,41,67,0.005156119500352263],[127,41,68,6.733965843676634E-4],[127,41,69,-0.0036190518916132406],[127,41,70,-0.007726724626944845],[127,41,71,-0.011657183968774312],[127,41,72,-0.015420093146650897],[127,41,73,-0.019027194777735946],[127,41,74,-0.022492231149267742],[127,41,75,-0.025830806919177128],[127,41,76,-0.029060195002070306],[127,41,77,-0.03219908652444411],[127,41,78,-0.03526728583664383],[127,41,79,-0.03185726405791567],[127,42,64,0.011052679931794498],[127,42,65,0.005812544998845595],[127,42,66,7.654595726766956E-4],[127,42,67,-0.004089746600005423],[127,42,68,-0.008756844219507147],[127,42,69,-0.01323936562483796],[127,42,70,-0.017542561432741858],[127,42,71,-0.021673573168131025],[127,42,72,-0.025641491782893176],[127,42,73,-0.02945735761319083],[127,42,74,-0.03313410222791377],[127,42,75,-0.03668643275615886],[127,42,76,-0.04013065940912654],[127,42,77,-0.03548002753262747],[127,42,78,-0.030223568340635543],[127,42,79,-0.02502147414824613],[127,43,64,0.0023124831613495047],[127,43,65,-0.0030906959757603944],[127,43,66,-0.00830776195580333],[127,43,67,-0.01333924632399491],[127,43,68,-0.018188650466847478],[127,43,69,-0.022859453062546883],[127,43,70,-0.027356612658584144],[127,43,71,-0.031686763676956615],[127,43,72,-0.035858308393755596],[127,43,73,-0.039881449404590215],[127,43,74,-0.04376816296083401],[127,43,75,-0.038985808350739774],[127,43,76,-0.033816156167879675],[127,43,77,-0.028650286870381063],[127,43,78,-0.023512795189098813],[127,43,79,-0.01842885287469391],[127,44,64,-0.006427421768245184],[127,44,65,-0.011990696724857362],[127,44,66,-0.017375270888394877],[127,44,67,-0.022580756626722407],[127,44,68,-0.027610310782942415],[127,44,69,-0.03246740214720362],[127,44,70,-0.037156688016251875],[127,44,71,-0.04168424240645217],[127,44,72,-0.04605769330549854],[127,44,73,-0.042176410408417006],[127,44,74,-0.03718873200891579],[127,44,75,-0.03216078437669538],[127,44,76,-0.02711413868168493],[127,44,77,-0.02207149784475873],[127,44,78,-0.017056474322364568],[127,44,79,-0.012093310187675867],[127,45,64,-0.015142996526811541],[127,45,65,-0.02086401229428758],[127,45,66,-0.02641409728702183],[127,45,67,-0.03179167060655498],[127,45,68,-0.03699949868787942],[127,45,69,-0.04204112488442922],[127,45,70,-0.04692093473247812],[127,45,71,-0.044876308554426626],[127,45,72,-0.04014809650482999],[127,45,73,-0.03534441486463311],[127,45,74,-0.030483157372989816],[127,45,75,-0.025583532019873484],[127,45,76,-0.020666000079608355],[127,45,77,-0.015752152404077395],[127,45,78,-0.010864523757790265],[127,45,79,-0.006026346093521541],[127,46,64,-0.02379517442765029],[127,46,65,-0.02967245672740653],[127,46,66,-0.035386873330503284],[127,46,67,-0.04093540434645279],[127,46,68,-0.04632042099650672],[127,46,69,-0.046936616429288834],[127,46,70,-0.042525455968996866],[127,46,71,-0.03801254655754823],[127,46,72,-0.033412524133668325],[127,46,73,-0.028741057490591783],[127,46,74,-0.024014972836028017],[127,46,75,-0.019252310514275683],[127,46,76,-0.014472314315959231],[127,46,77,-0.009695353953845093],[127,46,78,-0.004942781425101675],[127,46,79,-2.3672210965729537E-4],[127,47,64,-0.03234461053505925],[127,47,65,-0.03837752162632091],[127,47,66,-0.044255881253322485],[127,47,67,-0.048240972395215166],[127,47,68,-0.044188729601325076],[127,47,69,-0.040014050408361646],[127,47,70,-0.03573016815941715],[127,47,71,-0.031350498767037153],[127,47,72,-0.026888976793249503],[127,47,73,-0.022360319025974885],[127,47,74,-0.017780215514217983],[127,47,75,-0.01316544820993194],[127,47,76,-0.008533937541846824],[127,47,77,-0.0039047174143578478],[127,47,78,7.021607187287105E-4],[127,47,79,0.005265793911857948],[127,48,64,-0.04080894111134322],[127,48,65,-0.046996325500391144],[127,48,66,-0.045082934238929145],[127,48,67,-0.04128376691501424],[127,48,68,-0.037354428543164175],[127,48,69,-0.033308987275154925],[127,48,70,-0.029160822196457683],[127,48,71,-0.024923045733309026],[127,48,72,-0.020608923190077934],[127,48,73,-0.01623221496244202],[127,48,74,-0.011807441243595465],[127,48,75,-0.007350069242608678],[127,48,76,-0.002876623127950991],[127,48,77,0.0015952829064582279],[127,48,78,0.0060469878821603675],[127,48,79,0.010458902853245659],[127,49,64,-0.04518803441943739],[127,49,65,-0.04178644773796601],[127,49,66,-0.03824773697866365],[127,49,67,-0.034573077927726896],[127,49,68,-0.03077353588914367],[127,49,69,-0.026864027863369916],[127,49,70,-0.02285822711491657],[127,49,71,-0.01876904474954112],[127,49,72,-0.014609139614468757],[127,49,73,-0.010391345605937862],[127,49,74,-0.006129016042175715],[127,49,75,-0.0018362849796959837],[127,49,76,0.0024717544373014655],[127,49,77,0.006778954302297916],[127,49,78,0.011068098463383764],[127,49,79,0.015320970570522797],[127,50,64,-0.03838661473118082],[127,50,65,-0.03510397300550531],[127,50,66,-0.0316911292701602],[127,50,67,-0.028147138551463894],[127,50,68,-0.024482983046359826],[127,50,69,-0.020714634003792164],[127,50,70,-0.01685622204938926],[127,50,71,-0.012920580212085747],[127,50,72,-0.00891984971941235],[127,50,73,-0.004865997558425797],[127,50,74,-7.712452889539591E-4],[127,50,75,0.003351591165246647],[127,50,76,0.007488850790711758],[127,50,77,0.011625865645593455],[127,50,78,0.015746887519607],[127,50,79,0.019835102507190245],[127,51,64,-0.031883681688785546],[127,51,65,-0.028726562951301226],[127,51,66,-0.02544548305984405],[127,51,67,-0.022037256295824544],[127,51,68,-0.018512877390778],[127,51,69,-0.014889579039764147],[127,51,70,-0.01118212183206808],[127,51,71,-0.0074033999717481565],[127,51,72,-0.003565147085191984],[127,51,73,3.214521355410973E-4],[127,51,74,0.0042452451489151735],[127,51,75,0.008194690075970606],[127,51,76,0.01215752969327089],[127,51,77,0.016120560850056313],[127,51,78,0.02006949902268006],[127,51,79,0.023988937502664485],[127,52,64,-0.025706671637402728],[127,52,65,-0.022680914573945346],[127,52,66,-0.019536609218794375],[127,52,67,-0.01626824556074565],[127,52,68,-0.012886937726918775],[127,52,69,-0.00941138296232898],[127,52,70,-0.0058571482314290135],[127,52,71,-0.002237338887196451],[127,52,72,0.0014365928387653458],[127,52,73,0.005154139635559347],[127,52,74,0.00890513208780382],[127,52,75,0.012679233432231872],[127,52,76,0.016465536430285407],[127,52,77,0.020552048187478182],[127,52,78,0.027097901097458816],[127,52,79,0.03361450108204172],[127,53,64,-0.019876828550936226],[127,53,65,-0.01698753625818381],[127,53,66,-0.013984167452177556],[127,53,67,-0.010858843673255136],[127,53,68,-0.0076229136080237115],[127,53,69,-0.004296732013391303],[127,53,70,-8.968467071168301E-4],[127,53,71,0.0025632705022398464],[127,53,72,0.006072311437838028],[127,53,73,0.009620325689092974],[127,53,74,0.013198022341749601],[127,53,75,0.01847398162304642],[127,53,76,0.02505084554739216],[127,53,77,0.03162280757591156],[127,53,78,0.03817890697775202],[127,53,79,0.044707086180982625],[127,54,64,-0.01440957918940325],[127,54,65,-0.01166113219637148],[127,54,66,-0.00880205927551184],[127,54,67,-0.005822110233688367],[127,54,68,-0.002732988295285276],[127,54,69,4.4311745048242375E-4],[127,54,70,0.0036885115005027332],[127,54,71,0.006989200324423435],[127,54,72,0.010333876361965515],[127,54,73,0.01606027634602283],[127,54,74,0.02263258591781836],[127,54,75,0.029216055280890295],[127,54,76,0.0358023046614765],[127,54,77,0.04238234712959601],[127,54,78,0.04894627449747441],[127,54,79,0.05548305956337622],[127,55,64,-0.009314890138050777],[127,55,65,-0.006710969244307672],[127,55,66,-0.00399880377350811],[127,55,67,-0.0011658094905214224],[127,55,68,0.0017758349197363014],[127,55,69,0.004801951097150458],[127,55,70,0.007893542185039404],[127,55,71,0.013336850585630885],[127,55,72,0.019885424543136236],[127,55,73,0.026457408159206997],[127,55,74,0.033044618535041724],[127,55,75,0.039639493794671285],[127,55,76,0.04623447118543581],[127,55,77,0.052821488494984234],[127,55,78,0.059391608958115925],[127,55,79,0.06593476952801833],[127,56,64,-0.004597606380119442],[127,56,65,-0.0021412258743790415],[127,56,66,4.221041910841515E-4],[127,56,67,0.003107224587686549],[127,56,68,0.005901363358089396],[127,56,69,0.010315543114959776],[127,56,70,0.016818916279443465],[127,56,71,0.023363127472466813],[127,56,72,0.02993589319271043],[127,56,73,0.03652758405761758],[127,56,74,0.04313027289266244],[127,56,75,0.04973691112658958],[127,56,76,0.056340634469180806],[127,56,77,0.06293419850325185],[127,56,78,0.06950954448855516],[127,56,79,0.07605749535682983],[127,57,64,-2.577710129931868E-4],[127,57,65,0.0020486771558752004],[127,57,66,0.00446185369861974],[127,57,67,0.0070584746730651855],[127,57,68,0.013463207492174008],[127,57,69,0.019945081636224972],[127,57,70,0.026481403644426187],[127,57,71,0.03305501531834444],[127,57,72,0.039652996811331935],[127,57,73,0.04626550060057566],[127,57,74,0.052884718239619884],[127,57,75,0.05950398140643368],[127,57,76,0.0661169983876781],[127,57,77,0.07271722677581395],[127,57,78,0.0792973828026747],[127,57,79,0.08584908739594005],[127,58,64,0.0037090743231458848],[127,58,65,0.005863764845047555],[127,58,66,0.009946436921234448],[127,58,67,0.016278112171607156],[127,58,68,0.022718450486803543],[127,58,69,0.029235829861948802],[127,58,70,0.03580572958469842],[127,58,71,0.042409742401596055],[127,58,72,0.04903419051311092],[127,58,73,0.05566887767344974],[127,58,74,0.062305979490840845],[127,58,75,0.06893907362333111],[127,58,76,0.07556231117276738],[127,58,77,0.08216973019770574],[127,58,78,0.08875471189517825],[127,58,79,0.0953095796465267],[127,59,64,0.0073116087724159305],[127,59,65,0.012558913525723116],[127,59,66,0.018795297618689893],[127,59,67,0.0251593356743283],[127,59,68,0.031634935775919346],[127,59,69,0.03818800010317198],[127,59,70,0.04479212323852927],[127,59,71,0.05142756398452235],[127,59,72,0.058079781009647224],[127,59,73,0.06473810936345817],[127,59,74,0.07139458014761804],[127,59,75,0.07804288521260615],[127,59,76,0.08467748834095673],[127,59,77,0.09129288397952585],[127,59,78,0.09788300419614356],[127,59,79,0.1044407741651716],[127,60,64,0.014893905227021883],[127,60,65,0.021046632373742456],[127,60,66,0.02731004769563441],[127,60,67,0.03370558945811748],[127,60,68,0.040216043511212704],[127,60,69,0.046804850188346965],[127,60,70,0.053443693816854376],[127,60,71,0.06011143941607013],[127,60,72,0.06679259565588756],[127,60,73,0.07347592292747371],[127,60,74,0.08015318899505158],[127,60,75,0.08681807426593262],[127,60,76,0.09346522829239248],[127,60,77,0.10008947870585905],[127,60,78,0.10668519338205956],[127,60,79,0.11324579625046417],[127,61,64,0.02303338752293002],[127,61,65,0.029208171321092345],[127,61,66,0.03549727076459402],[127,61,67,0.041923360877117836],[127,61,68,0.04846805347816475],[127,61,69,0.05509237956743343],[127,61,70,0.06176612017556555],[127,61,71,0.06846671337176598],[127,61,72,0.0751776528951484],[127,61,73,0.08188703557037351],[127,61,74,0.08858626014795],[127,61,75,0.09526887976503556],[127,61,76,0.10192960978610308],[127,61,77,0.10856349235677173],[127,61,78,0.11516521858945673],[127,61,79,0.1217286089014614],[127,62,64,0.03085820766032022],[127,62,65,0.037053123588919004],[127,62,66,0.04336646921885127],[127,62,67,0.04982191826888712],[127,62,68,0.056399876620997255],[127,62,69,0.06305905454128863],[127,62,70,0.06976736834625782],[127,62,71,0.07650082317803614],[127,62,72,0.08324185610275611],[127,62,73,0.08997783106187104],[127,62,74,0.09669968847612559],[127,62,75,0.1034007518465178],[127,62,76,0.11007569324918932],[127,62,77,0.11671965918415138],[127,62,78,0.12332755781217952],[127,62,79,0.12989350820535236],[127,63,64,0.03838087591145787],[127,63,65,0.044593919207397456],[127,63,66,0.050929845585727815],[127,63,67,0.057413083841537094],[127,63,68,0.06402282133173642],[127,63,69,0.07071556767135435],[127,63,70,0.0774574420933347],[127,63,71,0.08422303728528904],[127,63,72,0.09099371586974324],[127,63,73,0.09775606118862812],[127,63,74,0.10450048533797301],[127,63,75,0.11121999693459694],[127,63,76,0.11790913064026994],[127,63,77,0.12456304002281826],[127,63,78,0.13117675489909067],[127,63,79,0.13774460388695065],[127,64,64,0.04561667638439744],[127,64,65,0.051845626712736334],[127,64,66,0.05820209220153625],[127,64,67,0.06471101465034818],[127,64,68,0.07135036748244332],[127,64,69,0.07807460421300624],[127,64,70,0.08484813919502357],[127,64,71,0.09164419742801848],[127,64,72,0.09844307308934938],[127,64,73,0.1052305442105444],[127,64,74,0.11199644657752039],[127,64,75,0.11873340946257886],[127,64,76,0.1254357553327998],[127,64,77,0.13209856522644406],[127,64,78,0.13871691104737682],[127,64,79,0.14528525560272498],[127,65,64,0.05258350559620048],[127,65,65,0.05882577613968532],[127,65,66,0.06520020190916337],[127,65,67,0.07173200444613513],[127,65,68,0.07839796105943003],[127,65,69,0.08515062849905546],[127,65,70,0.09195282642989919],[127,65,71,0.09877647749284885],[127,65,72,0.10560083588808276],[127,65,73,0.11241087336317615],[127,65,74,0.11919582580493168],[127,65,75,0.12594790315794213],[127,65,76,0.13266116492457414],[127,65,77,0.1393305630428745],[127,65,78,0.1459511534920577],[127,65,79,0.15251747754517242],[127,66,64,0.05930173432186542],[127,66,65,0.06555420477775438],[127,66,66,0.07194330127098562],[127,66,67,0.07849430791244716],[127,66,68,0.0851828309368761],[127,66,69,0.09195969182345404],[127,66,70,0.09878623482058095],[127,66,71,0.10563316063385977],[127,66,72,0.11247873191190377],[127,66,73,0.11930713686963869],[127,66,74,0.1261070143566856],[127,66,75,0.13287014319928753],[127,66,76,0.13959029817252114],[127,66,77,0.14626227449781398],[127,66,78,0.15288108231032432],[127,66,79,0.1594413121069516],[127,67,64,0.06579409335984852],[127,67,65,0.07205292635113306],[127,67,66,0.0784525069793429],[127,67,67,0.08501798799558988],[127,67,68,0.09172382851152242],[127,67,69,0.09851926255733343],[127,67,70,0.10536427586702328],[127,67,71,0.112228435355081],[127,67,72,0.1190890766598269],[127,67,73,0.12592965010973442],[127,67,74,0.13273822852027012],[127,67,75,0.1395061797478303],[127,67,76,0.1462270064536061],[127,67,77,0.15289535506629728],[127,67,78,0.1595061954798064],[127,67,79,0.16605417258578664],[127,68,64,0.07208558385656433],[127,68,65,0.07834602428634341],[127,68,66,0.0847508061528393],[127,68,67,0.09132478703905267],[127,68,68,0.09804129092923858],[127,68,69,0.10484807924062532],[127,68,70,0.11170387951582698],[127,68,71,0.11857721129820076],[127,68,72,0.1254445585809695],[127,68,73,0.1322887006250227],[127,68,74,0.13909720464815625],[127,68,75,0.14586108340668907],[127,68,76,0.1525736202156081],[127,68,77,0.15922936348821964],[127,68,78,0.1658232924220563],[127,68,79,0.1723501550199209],[127,69,64,0.07772917732866988],[127,69,65,0.08445956375798837],[127,69,66,0.09086295540785258],[127,69,67,0.09743801681582484],[127,69,68,0.10415692321330576],[127,69,69,0.11096602220478023],[127,69,70,0.11782284970695552],[127,69,71,0.12469495090822989],[127,69,72,0.13155803748528977],[127,69,73,0.1383943029305072],[127,69,74,0.14519089958890552],[127,69,75,0.15193858052129747],[127,69,76,0.1586305088347993],[127,69,77,0.16526123665591155],[127,69,78,0.17182585546607249],[127,69,79,0.1783193190803991],[127,70,64,0.08275820780626461],[127,70,65,0.09040554718823894],[127,70,66,0.09679989870776597],[127,70,67,0.10336746005024063],[127,70,68,0.11007922906209658],[127,70,69,0.11688016749083063],[127,70,70,0.12372666751591403],[127,70,71,0.13058536555633196],[127,70,72,0.13743128261930063],[127,70,73,0.1442461223494018],[127,70,74,0.1510167304765163],[127,70,75,0.1577337188786941],[127,70,76,0.16439025700032014],[127,70,77,0.1709810328992762],[127,70,78,0.1775013857405663],[127,70,79,0.18394661111348473],[127,71,64,0.08734462877245233],[127,71,65,0.09533664420686822],[127,71,66,0.10252576404072551],[127,71,67,0.10907750098336774],[127,71,68,0.11577287715316732],[127,71,69,0.1225556054307679],[127,71,70,0.1293810570057612],[127,71,71,0.13621506881324116],[127,71,72,0.14303207010947394],[127,71,73,0.14981336591783262],[127,71,74,0.15654558113680886],[127,71,75,0.163219268620763],[127,71,76,0.169827684069092],[127,71,77,0.17636573009326534],[127,71,78,0.18282907137509313],[127,71,79,0.18921342238896152],[127,72,64,0.09152034563456646],[127,72,65,0.09949498472363195],[127,72,66,0.10733255709779381],[127,72,67,0.11452626108736948],[127,72,68,0.12119658694926212],[127,72,69,0.12795184357491737],[127,72,70,0.13474658698961767],[127,72,71,0.1415460120592358],[127,72,72,0.14832407352536078],[127,72,73,0.15506176239076566],[127,72,74,0.1617455415231959],[127,72,75,0.16836594386754528],[127,72,76,0.17491633618439936],[127,72,77,0.18139185076920714],[127,72,78,0.1877884871524148],[127,72,79,0.19410238534198368],[127,73,64,0.09531587749116777],[127,73,65,0.10326746312863262],[127,73,66,0.11108203699946279],[127,73,67,0.118727338777837],[127,73,68,0.1262238110957671],[127,73,69,0.13303087537651342],[127,73,70,0.13978630711410459],[127,73,71,0.1465425983327364],[127,73,72,0.15327336124547228],[127,73,73,0.1599593509507676],[127,73,74,0.16658690313729502],[127,73,75,0.17314653209000966],[127,73,76,0.17963169197665135],[127,73,77,0.1860377039355131],[127,73,78,0.19236085103627845],[127,73,79,0.19859764275127714],[127,74,64,0.09876140501253913],[127,74,65,0.10668405672540027],[127,74,66,0.11447021735301813],[127,74,67,0.12208902227043751],[127,74,68,0.1295616007516341],[127,74,69,0.1369337701850457],[127,74,70,0.14423893474014862],[127,74,71,0.15117085656769247],[127,74,72,0.15784761440440753],[127,74,73,0.1644757453265016],[127,74,74,0.17104147069330314],[127,74,75,0.17753525353562166],[127,74,76,0.18395056878391822],[127,74,77,0.1902828359677742],[127,74,78,0.19652851650864098],[127,74,79,0.20268437730107247],[127,75,64,0.10188786450716684],[127,75,65,0.10977553793633789],[127,75,66,0.11752759431673615],[127,75,67,0.12511485631847022],[127,75,68,0.13255891777076892],[127,75,69,0.13990523669621316],[127,75,70,0.14718699281359163],[127,75,71,0.15442630184408163],[127,75,72,0.16163608254494632],[127,75,73,0.1685813596514899],[127,75,74,0.17508183884279255],[127,75,75,0.1815070895823122],[127,75,76,0.1878505021624339],[127,75,77,0.19410745957330874],[127,75,78,0.20027444810496325],[127,75,79,0.20634832971030856],[127,76,64,0.1047280877976093],[127,76,65,0.11257460100730486],[127,76,66,0.12028658453011772],[127,76,67,0.1278368418059633],[127,76,68,0.13524717996319188],[127,76,69,0.142562158073971],[127,76,70,0.14981434027463972],[127,76,71,0.15702547711366707],[127,76,72,0.1642083129974709],[127,76,73,0.17136825331610936],[127,76,74,0.17850488741797274],[127,76,75,0.18503708017751905],[127,76,76,0.19130909888294298],[127,76,77,0.19749186108135255],[127,76,78,0.20358168046989897],[127,76,79,0.2095753058375676],[127,77,64,0.1073179873692567],[127,77,65,0.11511703417796448],[127,77,66,0.12278267975882877],[127,77,67,0.13028999105637867],[127,77,68,0.1376607154180958],[127,77,69,0.14493794807056556],[127,77,70,0.15215323264786035],[127,77,71,0.15932769755877219],[127,77,72,0.166473782704947],[127,77,73,0.17359683266804765],[127,77,74,0.18069655265830176],[127,77,75,0.1877683239260517],[127,77,76,0.19430336372246595],[127,77,77,0.2004157864127601],[127,77,78,0.20643276134699665],[127,77,79,0.21235067325007845],[127,78,64,0.10969778609348445],[127,78,65,0.11744293664028549],[127,78,66,0.12505564642395278],[127,78,67,0.1325135052042534],[127,78,68,0.13983791230480624],[127,78,69,0.14706992624198373],[127,78,70,0.1542396649273869],[127,78,71,0.16136738458789587],[127,78,72,0.16846510408498097],[127,78,73,0.1755381035571035],[127,78,74,0.18258629385329397],[127,78,75,0.189605453610328],[127,78,76,0.19658833120801714],[127,78,77,0.20285780618813273],[127,78,78,0.2088091790088425],[127,78,79,0.21465884782553127],[127,79,64,0.11189262707546158],[127,79,65,0.1195773929329683],[127,79,66,0.12713047614935066],[127,79,67,0.13453223301464962],[127,79,68,0.14180342630934578],[127,79,69,0.1489825120794438],[127,79,70,0.15609777977843156],[127,79,71,0.1631683622706905],[127,79,72,0.17020573723717758],[127,79,73,0.17721511169872714],[127,79,74,0.18419668635194936],[127,79,75,0.19114679676868349],[127,79,76,0.19805892886383875],[127,79,77,0.20479822560813637],[127,79,78,0.21069226871374971],[127,79,79,0.21648226414663888],[127,80,64,0.11385570875368971],[127,80,65,0.1214737998694788],[127,80,66,0.1289614799487835],[127,80,67,0.1363021631389292],[127,80,68,0.14351572542837068],[127,80,69,0.15063747267802147],[127,80,70,0.15769344070331248],[127,80,71,0.1647013305250682],[127,80,72,0.17167187231299394],[127,80,73,0.178610081934705],[127,80,74,0.18551640707168124],[127,80,75,0.19238776018867407],[127,80,76,0.19921843596623706],[127,80,77,0.2060009111248254],[127,80,78,0.21206934756012777],[127,80,79,0.21780219238385723],[127,81,64,0.11553709887758566],[127,81,65,0.12308240492865372],[127,81,66,0.13049978390999767],[127,81,67,0.137776038403221],[127,81,68,0.14492995225487793],[127,81,69,0.15199316630532744],[127,81,70,0.15898902651607147],[127,81,71,0.1659334444595625],[127,81,72,0.17283611565100113],[127,81,73,0.17970164039761044],[127,81,74,0.18653054441964],[127,81,75,0.1933201967902346],[127,81,76,0.20006562303228476],[127,81,77,0.20676021149725662],[127,81,78,0.21293280753128055],[127,81,79,0.21860489214969944],[127,82,64,0.11690283474553168],[127,82,65,0.1243693494358854],[127,82,66,0.1317121075192096],[127,82,67,0.1389216427094658],[127,82,68,0.14601548373317788],[127,82,69,0.15302113929023123],[127,82,70,0.15995883884292494],[127,82,71,0.1668423231068585],[127,82,72,0.17367991420287326],[127,82,73,0.1804754984019738],[127,82,74,0.18722941902499743],[127,82,75,0.19393927731898794],[127,82,76,0.2006006393906101],[127,82,77,0.2072076475314859],[127,82,78,0.21327918315654573],[127,82,79,0.21888257924614452],[127,83,64,0.1179321426047302],[127,83,65,0.125313916754029],[127,83,66,0.13257806981948966],[127,83,67,0.1397191980291115],[127,83,68,0.1467534524368158],[127,83,69,0.15370380347004536],[127,83,70,0.160586965390662],[127,83,71,0.1674141253625721],[127,83,72,0.17419186769166142],[127,83,73,0.1809230206490871],[127,83,74,0.18760742375118847],[127,83,75,0.19424261359723505],[127,83,76,0.20082442659246436],[127,83,77,0.20734751710655341],[127,83,78,0.21310918042080754],[127,83,79,0.21863317076265096],[127,84,64,0.11861489803881416],[127,84,65,0.12590601817877123],[127,84,66,0.1330877286382601],[127,84,67,0.14015898840948918],[127,84,68,0.14713448723761438],[127,84,69,0.15403232367598957],[127,84,70,0.16086534208925848],[127,84,71,0.16764181182267188],[127,84,72,0.17436621195184998],[127,84,73,0.18103994828708478],[127,84,74,0.1876620008112875],[127,84,75,0.19422949992769423],[127,84,76,0.20073823008879826],[127,84,77,0.2068934854453409],[127,84,78,0.21242765132669303],[127,84,79,0.21785999677058465],[127,85,64,0.11894933495958095],[127,85,65,0.12614392410297603],[127,85,66,0.13323936032683695],[127,85,67,0.14023921823569396],[127,85,68,0.14715668032176593],[127,85,69,0.15400472183254518],[127,85,70,0.16079202020736333],[127,85,71,0.16752359804464573],[127,85,72,0.174201478309247],[127,85,73,0.18082528092969782],[127,85,74,0.18739275925605525],[127,85,75,0.19390027501706192],[127,85,76,0.2003049184042865],[127,85,77,0.20581798944758029],[127,85,78,0.21124351188621782],[127,85,79,0.21657147739110888],[127,86,64,0.11894001093021746],[127,86,65,0.12603224820947986],[127,86,66,0.1330374877308969],[127,86,67,0.1399641123435289],[127,86,68,0.14682378793614548],[127,86,69,0.15362420474913496],[127,86,70,0.16036964512131793],[127,86,71,0.16706160542407705],[127,86,72,0.17369933461628462],[127,86,73,0.18028032259240742],[127,86,74,0.1868007370641017],[127,86,75,0.19325580785725116],[127,86,76,0.19888128005443384],[127,86,77,0.20426645278295488],[127,86,78,0.20956960272903685],[127,86,79,0.2147807653362801],[127,87,64,0.11859603597410026],[127,87,65,0.12558019188289274],[127,87,66,0.13249116355114823],[127,87,67,0.13934226503432132],[127,87,68,0.14614367172391873],[127,87,69,0.15289772218503375],[127,87,70,0.15960415295325378],[127,87,71,0.16626071545112714],[127,87,72,0.1728636131742318],[127,87,73,0.17940789616832198],[127,87,74,0.18588781177878191],[127,87,75,0.1917008090855802],[127,87,76,0.19701076753353713],[127,87,77,0.2022544240416521],[127,87,78,0.20742249157195203],[127,87,79,0.21250535402236626],[127,88,64,0.11792957148768017],[127,88,65,0.12480005549923551],[127,88,66,0.131612515730291],[127,88,67,0.13838524453290216],[127,88,68,0.14512698701812957],[127,88,69,0.15183476130270193],[127,88,70,0.1585036908581965],[127,88,71,0.16512763271113187],[127,88,72,0.17169953041365746],[127,88,73,0.17821173075034868],[127,88,74,0.1843579710076499],[127,88,75,0.18956017405352588],[127,88,76,0.19471028695152243],[127,88,77,0.19980043752699772],[127,88,78,0.20482221684700763],[127,88,79,0.20976665135265302],[127,89,64,0.1169546053772526],[127,89,65,0.12370602275697445],[127,89,66,0.13041556101488],[127,89,67,0.13710645895521562],[127,89,68,0.1437861240048759],[127,89,69,0.15044638319056688],[127,89,70,0.1570777663339869],[127,89,71,0.16367016162030665],[127,89,72,0.1702131028686878],[127,89,73,0.17669602581189606],[127,89,74,0.18199250911619477],[127,89,75,0.18701928827486217],[127,89,76,0.19199920855537908],[127,89,77,0.1969258491229064],[127,89,78,0.20179197183637046],[127,89,79,0.20658951926697772],[127,90,64,0.1156860090743162],[127,90,65,0.12231322375087675],[127,90,66,0.12891529238562266],[127,90,67,0.13552028940852445],[127,90,68,0.14213440724054177],[127,90,69,0.14874450673038705],[127,90,70,0.1553366305479482],[127,90,71,0.16189670153826027],[127,90,72,0.1684107636661474],[127,90,73,0.17437263852673826],[127,90,74,0.1792541123891104],[127,90,75,0.18409752116224437],[127,90,76,0.18889924769082445],[127,90,77,0.19365458619368936],[127,90,78,0.1983577287097859],[127,90,79,0.20300177915519615],[127,91,64,0.11413888165066971],[127,91,65,0.12063708205902146],[127,91,66,0.12712704562486338],[127,91,67,0.13364149543297513],[127,91,68,0.14018555860841078],[127,91,69,0.14674144470478737],[127,91,70,0.15329090031878845],[127,91,71,0.15981596457199934],[127,91,72,0.166299183456032],[127,91,73,0.17147163935882667],[127,91,74,0.17616156588834436],[127,91,75,0.1808162270445484],[127,91,76,0.185434232581368],[127,91,77,0.19001281031085912],[127,91,78,0.1945478019049403],[127,91,79,0.19903368323170328],[127,92,64,0.11232818585127763],[127,92,65,0.118692950712217],[127,92,66,0.12506614989455078],[127,92,67,0.13148489760743687],[127,92,68,0.13795342842796016],[127,92,69,0.144449696686645],[127,92,70,0.1509514230606569],[127,92,71,0.15743692008089513],[127,92,72,0.16370784738583247],[127,92,73,0.16823932890080492],[127,92,74,0.17273533448915918],[127,92,75,0.17719848134827137],[127,92,76,0.18162975722201039],[127,92,77,0.1860284916866744],[127,92,78,0.1903923503341012],[127,92,79,0.1947173519693278],[127,93,64,0.11026868048774797],[127,93,65,0.11649604154141494],[127,93,66,0.12274786682922967],[127,93,67,0.12906534178244042],[127,93,68,0.13545199908266187],[127,93,69,0.14188200292116776],[127,93,70,0.14832938868604306],[127,93,71,0.15476896960628925],[127,93,72,0.16035636425324148],[127,93,73,0.16469489160045722],[127,93,74,0.168997218101261],[127,93,75,0.1732686741305183],[127,93,76,0.17751271780357136],[127,93,77,0.1817308942739402],[127,93,78,0.1859228179407549],[127,93,79,0.19008617769203806],[127,94,64,0.10797515328633535],[127,94,65,0.11406165205081636],[127,94,66,0.1201876223049157],[127,94,67,0.12639794906708626],[127,94,68,0.1326956652076077],[127,94,69,0.13905166310223455],[127,94,70,0.14543669217390826],[127,94,71,0.15182235568168279],[127,94,72,0.15670962510949735],[127,94,73,0.16085840538206067],[127,94,74,0.16496983700692505],[127,94,75,0.16905195901191372],[127,94,76,0.17311073119489506],[127,94,77,0.17714997056637086],[127,94,78,0.18117131216777246],[127,94,79,0.18517419442680838],[127,95,64,0.10546295796118514],[127,95,65,0.11140569364175176],[127,95,66,0.11740153472564618],[127,95,67,0.12349865538459218],[127,95,68,0.12969979417643895],[127,95,69,0.13597312365664835],[127,95,70,0.14228655023898137],[127,95,71,0.14860880772984603],[127,95,72,0.15278555774476604],[127,95,73,0.1567501722391577],[127,95,74,0.1606759450909503],[127,95,75,0.1645735556963765],[127,95,76,0.16845143411570226],[127,95,77,0.17231566520518976],[127,95,78,0.17616991993532732],[127,95,79,0.18001541411705718],[127,96,64,0.10274885898396012],[127,96,65,0.10854552471291543],[127,96,66,0.11440724337287227],[127,96,67,0.12038504412050259],[127,96,68,0.12648157034568458],[127,96,69,0.1326628368812168],[127,96,70,0.13889437528536788],[127,96,71,0.14475729427966585],[127,96,72,0.1486015605596129],[127,96,73,0.1523898503807176],[127,96,74,0.1561375688964989],[127,96,75,0.1598579043945414],[127,96,76,0.16356166173180595],[127,96,77,0.1672571265645908],[127,96,78,0.17094996076118565],[127,96,79,0.17464312930188067],[127,97,64,0.0998521872436102],[127,97,65,0.10550109188473422],[127,97,66,0.1112250400872484],[127,97,67,0.11707747511710187],[127,97,68,0.1230611262523645],[127,97,69,0.12914039502671348],[127,97,70,0.13527890959130262],[127,97,71,0.14049127914287918],[127,97,72,0.14417341241824644],[127,97,73,0.14779538569358902],[127,97,74,0.1513749705895085],[127,97,75,0.1549276705889048],[127,97,76,0.15846650449679234],[127,97,77,0.1620018255511139],[127,97,78,0.16554117668784515],[127,97,79,0.1690891823664697],[127,98,64,0.09679630953548296],[127,98,65,0.10229638234021253],[127,98,66,0.10787930729852677],[127,98,67,0.1136005130180644],[127,98,68,0.11946296371845642],[127,98,69,0.1254299421907633],[127,98,70,0.13146362245308704],[127,98,71,0.13598222949280106],[127,98,72,0.1395139570534149],[127,98,73,0.14298174044841094],[127,98,74,0.14640543305511158],[127,98,75,0.14980259869407891],[127,98,76,0.15318824215265459],[127,98,77,0.15657458091233953],[127,98,78,0.1599708587126813],[127,98,79,0.16338320147194166],[127,99,64,0.09361041458382126],[127,99,65,0.0989611900380356],[127,99,66,0.10440026518360158],[127,99,67,0.10998465773519875],[127,99,68,0.11571766758990351],[127,99,69,0.12156186666483408],[127,99,70,0.12747837281126126],[127,99,71,0.1312366898030863],[127,99,72,0.13463155986268438],[127,99,73,0.13795941732790723],[127,99,74,0.14124186547941703],[127,99,75,0.1444982132718034],[127,99,76,0.14774515388297024],[127,99,77,0.1509964904051484],[127,99,78,0.15426290944515758],[127,99,79,0.15755180327352028],[127,100,64,0.09033161808766155],[127,100,65,0.09553319833783346],[127,100,66,0.10082603051716647],[127,100,67,0.10626837959631212],[127,100,68,0.11186391463033588],[127,100,69,0.11757477618100852],[127,100,70,0.12288768109728113],[127,100,71,0.12625492303669142],[127,100,72,0.1295283350967617],[127,100,73,0.13273277699939262],[127,100,74,0.13589122789281086],[127,100,75,0.13902436656124983],[127,100,76,0.14215020368970438],[127,100,77,0.14528376722677983],[127,100,78,0.148436841742901],[127,100,79,0.15161776253817094],[127,101,64,0.08700440534936778],[127,101,65,0.09205734873180252],[127,101,66,0.09720191326668043],[127,101,67,0.1024973440191118],[127,101,68,0.10794762922016969],[127,101,69,0.11351459288781665],[127,101,70,0.11776749724163654],[127,101,71,0.12103192212233618],[127,101,72,0.12420117336491036],[127,101,73,0.12730106395494054],[127,101,74,0.13035553769365393],[127,101,75,0.13338620879828067],[127,101,76,0.13641195899195022],[127,101,77,0.13944859325085956],[127,101,78,0.1425085552173059],[127,101,79,0.14560070313114437],[127,102,64,0.08364529061250736],[127,102,65,0.08854997279312589],[127,102,66,0.09354408838723677],[127,102,67,0.09868765199632397],[127,102,68,0.10398488745726693],[127,102,69,0.10911604172759465],[127,102,70,0.11241605800399007],[127,102,71,0.11559386450195967],[127,102,72,0.11867719299271198],[127,102,73,0.12169241731460938],[127,102,74,0.12466400685130252],[127,102,75,0.12761404075957664],[127,102,76,0.1305617843803223],[127,102,77,0.13352332909475656],[127,102,78,0.13651129671831266],[127,102,79,0.13953460935840292],[127,103,64,0.08024498007458379],[127,103,65,0.085001323938236],[127,103,66,0.08984250812357403],[127,103,67,0.09482913283576255],[127,103,68,0.09996558228826041],[127,103,69,0.10365886319600988],[127,103,70,0.10688613398944945],[127,103,71,0.10999347409432919],[127,103,72,0.11300883547200348],[127,103,73,0.11595874550359916],[127,103,74,0.11886774810304214],[127,103,75,0.12175790919179223],[127,103,76,0.12464838803508459],[127,103,77,0.12755507576073072],[127,103,78,0.13049030220469207],[127,103,79,0.13346261205471388],[127,104,64,0.0767917314748065],[127,104,65,0.08139937060261662],[127,104,66,0.0860850858148253],[127,104,67,0.09090989361352986],[127,104,68,0.0947521179454287],[127,104,69,0.09806483014975219],[127,104,70,0.10123299956820159],[127,104,71,0.10428537606720593],[127,104,72,0.10724977962481923],[127,104,73,0.11015248231151477],[127,104,74,0.11301765535719122],[127,104,75,0.11586688301214307],[127,104,76,0.11871874472558579],[127,104,77,0.1215884669829407],[127,104,78,0.12448764596298989],[127,104,79,0.1274240420001873],[127,105,64,0.07327449551208268],[127,105,65,0.07773290211385746],[127,105,66,0.08207784428383161],[127,105,67,0.08570119903305477],[127,105,68,0.08912927477246722],[127,105,69,0.09238981506918693],[127,105,70,0.0955117521867459],[127,105,71,0.09852355192253519],[127,105,72,0.10145255428233924],[127,105,73,0.10432437850377459],[127,105,74,0.107162394300758],[127,105,75,0.10998726101603092],[127,105,76,0.11281653618472703],[127,105,77,0.11566435483001891],[127,105,78,0.11854118063257338],[127,105,79,0.1214536299408786],[127,106,64,0.06894398858130385],[127,106,65,0.07278449199434647],[127,106,66,0.0765235668332153],[127,106,67,0.08008996272749],[127,106,68,0.08346863129537936],[127,106,69,0.0866873854733497],[127,106,70,0.08977489608787284],[127,106,71,0.0927590703933279],[127,106,72,0.09566643465875618],[127,106,73,0.09852158096885844],[127,106,74,0.10134668003831764],[127,106,75,0.10416106165732933],[127,106,76,0.10698086420640332],[127,106,77,0.10981875450106782],[127,106,78,0.1126837190526829],[127,106,79,0.11558092766209026],[127,107,64,0.0635118913335714],[127,107,65,0.06728504574052324],[127,107,66,0.07096541598323519],[127,107,67,0.07448187439223052],[127,107,68,0.07781948701727122],[127,107,69,0.08100602747600309],[127,107,70,0.0840697090711808],[127,107,71,0.08703761814558825],[127,107,72,0.08993515714871869],[127,107,73,0.09278555048268851],[127,107,74,0.095609414803042],[127,107,75,0.09842439527674217],[127,107,76,0.10124486912798601],[127,107,77,0.10408171763353219],[127,107,78,0.10694216756359846],[127,107,79,0.10982970290396636],[127,108,64,0.05810609620154979],[127,108,65,0.061817270413951866],[127,108,66,0.06544502815557707],[127,108,67,0.06891854475618109],[127,108,68,0.072223042865931],[127,108,69,0.07538613687084582],[127,108,70,0.07843539149204079],[127,108,71,0.0813968295320064],[127,108,72,0.08429445185556098],[127,108,73,0.08714981746815371],[127,108,74,0.0899816851974818],[127,108,75,0.0928057183224883],[127,108,76,0.09563425333395068],[127,108,77,0.09847613385403976],[127,108,78,0.10133661058897703],[127,108,79,0.10421730804109547],[127,109,64,0.05275514594479397],[127,109,65,0.05641055175789963],[127,109,66,0.05999224707508266],[127,109,67,0.06342990679514428],[127,109,68,0.0667089544920248],[127,109,69,0.06985671963924789],[127,109,70,0.07289993912304339],[127,109,71,0.07586335677987947],[127,109,72,0.07876933401898475],[127,109,73,0.08163751673229311],[127,109,74,0.08448455978780553],[127,109,75,0.08732391025508678],[127,109,76,0.09016565036672894],[127,109,77,0.09301640107803485],[127,109,78,0.09587928694942116],[127,109,79,0.09875396294384134],[127,110,64,0.047459556763394],[127,110,65,0.051066322943233364],[127,110,66,0.05460907227572728],[127,110,67,0.05801819716226001],[127,110,68,0.06127937429558931],[127,110,69,0.06441952429095901],[127,110,70,0.06746439645823903],[127,110,71,0.07043727479339253],[127,110,72,0.07335868979749055],[127,110,73,0.07624618183122392],[127,110,74,0.07911411705839796],[127,110,75,0.0819735569017637],[127,110,76,0.08483218180714781],[127,110,77,0.0876942699880206],[127,110,78,0.09056073170284883],[127,110,79,0.09342919950341362],[127,111,64,0.04217169825424612],[127,111,65,0.04573756672730594],[127,111,66,0.04924898172500439],[127,111,67,0.05263731458042379],[127,111,68,0.05588856917631775],[127,111,69,0.059029142618862794],[127,111,70,0.06208365567550907],[127,111,71,0.0650737777125264],[127,111,72,0.06801804776743252],[127,111,73,0.07093174169184596],[127,111,74,0.07382678615010849],[127,111,75,0.07671172014789807],[127,111,76,0.0795917046570133],[127,111,77,0.08246858079829579],[127,111,78,0.08534097694465062],[127,111,79,0.08820446501177714],[127,112,64,0.036830256163144656],[127,112,65,0.04036228269618378],[127,112,66,0.043849812513030474],[127,112,67,0.04722555554351019],[127,112,68,0.050475963072339786],[127,112,69,0.05362680126048609],[127,112,70,0.056701411610995935],[127,112,71,0.05971966860225028],[127,112,72,0.06269791903835846],[127,112,73,0.06564896145909711],[127,112,74,0.06858206610021185],[127,112,75,0.0715030358043345],[127,112,76,0.07441430819566688],[127,112,77,0.07731509934858527],[127,112,78,0.08020158910171003],[127,112,79,0.08306714809607554],[127,113,64,0.03139438769569939],[127,113,65,0.03489842237833723],[127,113,66,0.03836877208942151],[127,113,67,0.04173992409125744],[127,113,68,0.0449989322715268],[127,113,69,0.048170828357903955],[127,113,70,0.05127751391031641],[127,113,71,0.05433686537902577],[127,113,72,0.05736280153311837],[127,113,73,0.06036538453234057],[127,113,74,0.06335095481172545],[127,113,75,0.06632229987975136],[127,113,76,0.06927885706595555],[127,113,77,0.07221695019354071],[127,113,78,0.07513006009673519],[127,113,79,0.07800912885266058],[127,114,64,0.02584504906161902],[127,114,65,0.02932557529650833],[127,114,66,0.03278432018734187],[127,114,67,0.036158030341309745],[127,114,68,0.03943453466152974],[127,114,69,0.042638029558496375],[127,114,70,0.04578881453809329],[127,114,71,0.048902559156229125],[127,114,72,0.05199050798482475],[127,114,73,0.05505971253320707],[127,114,74,0.05811328994811514],[127,114,75,0.061150708269645714],[127,114,76,0.06416809797897922],[127,114,77,0.06715858953705614],[127,114,78,0.0701126765815881],[127,114,79,0.0730186044238925],[127,115,64,0.020181037241249228],[127,115,65,0.02364107051689414],[127,115,66,0.02709236995697901],[127,115,67,0.030474434676379336],[127,115,68,0.03377604286776912],[127,115,69,0.03702045697685681],[127,115,70,0.04022621860655209],[127,115,71,0.043406590543193034],[127,115,72,0.046569907471812055],[127,115,73,0.04971994681351352],[127,115,74,0.0528563191409682],[127,115,75,0.05597487760560642],[127,115,76,0.059068145792618085],[127,115,77,0.062125763407666644],[127,115,78,0.06513494919224176],[127,115,79,0.06808098046367009],[127,116,64,0.014415304760643163],[127,116,65,0.017856347436043134],[127,116,66,0.021302751739054056],[127,116,67,0.024697245231762043],[127,116,68,0.02802971854676677],[127,116,69,0.03132240420270807],[127,116,70,0.0345919431366145],[127,116,71,0.03784901283076177],[127,116,72,0.041098830031108674],[127,116,73,0.044341666727992037],[127,116,74,0.047573378472375756],[127,116,75,0.050785944102206125],[127,116,76,0.05396801596027039],[127,116,77,0.05710547969757801],[127,116,78,0.06034375279302731],[127,116,79,0.06526504050664125],[127,117,64,0.008571552022458387],[127,117,65,0.01199360039823005],[127,117,66,0.015435944064264741],[127,117,67,0.018844973204436493],[127,117,68,0.02221183222782093],[127,117,69,0.025557631550424786],[127,117,70,0.028896987677021167],[127,117,71,0.03223784564486432],[127,117,72,0.03722169860866197],[127,117,73,0.04268666264831375],[127,117,74,0.048115566424335614],[127,117,75,0.05350032849570438],[127,117,76,0.058829836230498894],[127,117,77,0.06409061769021013],[127,117,78,0.06926751507612122],[127,117,79,0.07434435860618355],[127,118,64,0.0026811014273035137],[127,118,65,0.006082701425419814],[127,118,66,0.010476825341374302],[127,118,67,0.016347264691151418],[127,118,68,0.022150746525723797],[127,118,69,0.027909156796068896],[127,118,70,0.03363733099993206],[127,118,71,0.03934306172401169],[127,118,72,0.0450279010502289],[127,118,73,0.050687964203056886],[127,118,74,0.056314732726004575],[127,118,75,0.06189585552331743],[127,118,76,0.0674159461576682],[127,118,77,0.07285737485615927],[127,118,78,0.07820105374538357],[127,118,79,0.08169784859685077],[127,119,64,0.005492341196981864],[127,119,65,0.011494299588382759],[127,119,66,0.0174989399114844],[127,119,67,0.02346219326319645],[127,119,68,0.029379575989073703],[127,119,69,0.03527164074469064],[127,119,70,0.04115097962640004],[127,119,71,0.04702243234952759],[127,119,72,0.05288404335862221],[127,119,73,0.05872801385522242],[127,119,74,0.06454164664380818],[127,119,75,0.07030828176661266],[127,119,76,0.07600822097543883],[127,119,77,0.08161963917358585],[127,119,78,0.08596062175736725],[127,119,79,0.08867319590833173],[127,120,64,0.012562546656756485],[127,120,65,0.018607000427088842],[127,120,66,0.024669301521435157],[127,120,67,0.030709874915923637],[127,120,68,0.03672567305251481],[127,120,69,0.042735850802247906],[127,120,70,0.0487507216209397],[127,120,71,0.054772163831845126],[127,120,72,0.060794727218373194],[127,120,73,0.06680672857274135],[127,120,74,0.07279133372744245],[127,120,75,0.07872762368712531],[127,120,76,0.08459164257746017],[127,120,77,0.0903574252346134],[127,120,78,0.09311312006185485],[127,120,79,0.09566598379816757],[127,121,64,0.019837856499485513],[127,121,65,0.025908526194147345],[127,121,66,0.03201158278504538],[127,121,67,0.03811205109032684],[127,121,68,0.044208315357242366],[127,121,69,0.050318079181042315],[127,121,70,0.0564493744317198],[127,121,71,0.06260115930525567],[127,121,72,0.06876456616543236],[127,121,73,0.07492413281399568],[127,121,74,0.08105901436324904],[127,121,75,0.0871441729950402],[127,121,76,0.09315154300889623],[127,121,77,0.0978038571351184],[127,121,78,0.10027672892707366],[127,121,79,0.10267551072039707],[127,122,64,0.02734137220418196],[127,122,65,0.033421157574281615],[127,122,66,0.03954686709150161],[127,122,67,0.04568812654452721],[127,122,68,0.05184470381570267],[127,122,69,0.05803281044659374],[127,122,70,0.06425822664860267],[127,122,71,0.07051708111678212],[127,122,72,0.07679722907361763],[127,122,73,0.08307960870728537],[127,122,74,0.08933957285356649],[127,122,75,0.0955481928977168],[127,122,76,0.10167353200930437],[127,122,77,0.10513003279323069],[127,122,78,0.10744523348158114],[127,122,79,0.10969980075539111],[127,123,64,0.035091589174274164],[127,123,65,0.041162832948149194],[127,123,66,0.04729218738905362],[127,123,67,0.0534537753952555],[127,123,68,0.0596486577746604],[127,123,69,0.06589152722262395],[127,123,70,0.0721859744262257],[127,123,71,0.07852543623702761],[127,123,72,0.08489469036006536],[127,123,73,0.09127132394317579],[127,123,74,0.09762717262486495],[127,123,75,0.10392972674116455],[127,123,76,0.11014350154439821],[127,123,77,0.11243919843318001],[127,123,78,0.1146111471131262],[127,123,79,0.11673516287885835],[127,124,64,0.04310113936785494],[127,124,65,0.04914591877024323],[127,124,66,0.05525933703940632],[127,124,67,0.06141980942986809],[127,124,68,0.0676295594332144],[127,124,69,0.07390174872136414],[127,124,70,0.08023787082285543],[127,124,71,0.08662885125699885],[127,124,72,0.09305664319894791],[127,124,73,0.09949579312125094],[127,124,74,0.10591497271803221],[127,124,75,0.11227847357308245],[127,124,76,0.11759912656317748],[127,124,77,0.1197189375451804],[127,124,78,0.12176545356196335],[127,124,79,0.12377578951104548],[127,125,64,0.051375835711260705],[127,125,65,0.05737627837143194],[127,125,66,0.06345397254619146],[127,125,67,0.06959132859376546],[127,125,68,0.07579156748189446],[127,125,69,0.08206632208219881],[127,125,70,0.08841510800761143],[127,125,71,0.09482655684419652],[127,125,72,0.10128009548826122],[127,125,73,0.10774759211941594],[127,125,74,0.11419496490639396],[127,125,75,0.12058374970809979],[127,125,76,0.12494941794118467],[127,125,77,0.12695579310595279],[127,125,78,0.12889736947224173],[127,125,79,0.13081341371933886],[127,126,64,0.059914022059240964],[127,126,65,0.06585264300321977],[127,126,66,0.07187501199967287],[127,126,67,0.07796715748839342],[127,126,68,0.0841331037551698],[127,126,69,0.0903829702283413],[127,126,70,0.09671443592056883],[127,126,71,0.1031140850732087],[127,126,72,0.10955915177124223],[127,126,73,0.11601922843016581],[127,126,74,0.1224579340873992],[127,126,75,0.12883453860457253],[127,126,76,0.1322190739271427],[127,126,77,0.13413512768900138],[127,126,78,0.1359941292010155],[127,126,79,0.1378370273238841],[127,127,64,0.06870623097401682],[127,127,65,0.07456628743795835],[127,127,66,0.08051433156700842],[127,127,67,0.08653957019438178],[127,127,68,0.09264661516375186],[127,127,69,0.09884409842260274],[127,127,70,0.10512801944168938],[127,127,71,0.11148318152035708],[127,127,72,0.11788498279397354],[127,127,73,0.12430116889662096],[127,127,74,0.1306935430932189],[127,127,75,0.13701962987489968],[127,127,76,0.1393910564639579],[127,127,77,0.14124096716074322],[127,127,78,0.1430407922027946],[127,127,79,0.14483266064112946],[127,128,64,0.07773515146667714],[127,128,65,0.08350101230725776],[127,128,66,0.08935676222386395],[127,128,67,0.09529430560119463],[127,128,68,0.10131861304234227],[127,128,69,0.10743686157734317],[127,128,70,0.11364353600576349],[127,128,71,0.1199219339029022],[127,128,72,0.12624598428390396],[127,128,73,0.13258202619895326],[127,128,74,0.13889054300029405],[127,128,75,0.1445515087375419],[127,128,76,0.14644769866596188],[127,128,77,0.14825582787947145],[127,128,78,0.1500200732853877],[127,128,79,0.1517832245534005],[127,129,64,0.08697590873356445],[127,129,65,0.09263343524646879],[127,129,66,0.09838038880660592],[127,129,67,0.10421087530762072],[127,129,68,0.11012999193293825],[127,129,69,0.11614349426181671],[127,129,70,0.12224451549459897],[127,129,71,0.12841511894565627],[127,129,72,0.13462812644703234],[127,129,73,0.14084890536786626],[127,129,74,0.1470371099591676],[127,129,75,0.15149758403752683],[127,129,76,0.15337048154796418],[127,129,77,0.1551605273154663],[127,129,78,0.15691219601206477],[127,129,79,0.1586684155488783],[127,130,64,0.096396657827743],[127,130,65,0.10193359281650653],[127,130,66,0.10755715336489403],[127,130,67,0.11326316605678294],[127,130,68,0.11905662972369346],[127,130,69,0.12494190525252667],[127,130,70,0.13091092414476155],[127,130,71,0.13694476907180636],[127,130,72,0.14301549560459473],[127,130,73,0.14908791153625855],[127,130,74,0.1551213095139254],[127,130,75,0.15826785539199126],[127,130,76,0.16013975476101186],[127,130,77,0.16193397801170795],[127,130,78,0.1636947695058783],[127,130,79,0.16546468433584544],[127,131,64,0.1059594931300747],[127,131,65,0.11136585509422446],[127,131,66,0.1168537647109829],[127,131,67,0.12242033858375467],[127,131,68,0.12807027097731663],[127,131,69,0.13380653838759196],[127,131,70,0.1396199941279161],[127,131,71,0.1454909604389195],[127,131,72,0.15139102932181908],[127,131,73,0.15728482008160932],[127,131,74,0.1628362539366069],[127,131,75,0.16484348131022447],[127,131,76,0.16673440095138903],[127,131,77,0.16855296480385984],[127,131,78,0.17034268889263085],[127,131,79,0.17214526859607043],[127,132,64,0.11562154147046498],[127,132,65,0.12089001256408793],[127,132,66,0.12623276577902848],[127,132,67,0.1316478665156994],[127,132,68,0.13713952923881534],[127,132,69,0.1427093280744403],[127,132,70,0.1483471204185289],[127,132,71,0.15403263819603277],[127,132,72,0.15973725643380526],[127,132,73,0.1654257176065704],[127,132,74,0.16916785797619807],[127,132,75,0.17120453385684092],[127,132,76,0.17313163320764519],[127,132,77,0.1749920900220468],[127,132,78,0.1768282372749184],[127,132,79,0.17868045889738093],[127,133,64,0.12531466246120004],[127,133,65,0.1304395661695917],[127,133,66,0.13562943943979652],[127,133,67,0.14088305900968576],[127,133,68,0.14620404000283266],[127,133,69,0.15159254298131347],[127,133,70,0.1570375046013057],[127,133,71,0.16251821811261072],[127,133,72,0.16800605996417126],[127,133,73,0.17306069082592024],[127,133,74,0.1752824537703709],[127,133,75,0.17736120549581297],[127,133,76,0.17933787327859763],[127,133,77,0.1812539795414877],[127,133,78,0.18315027276945206],[127,133,79,0.18506542603953938],[127,134,64,0.1349290624982661],[127,134,65,0.1399037610445572],[127,134,66,0.1449323237455687],[127,134,67,0.15001406772468265],[127,134,68,0.15515197276835183],[127,134,69,0.16034486949720367],[127,134,70,0.16558093125900028],[127,134,71,0.17083923153835254],[127,134,72,0.17609141733011802],[127,134,73,0.17898991725636862],[127,134,74,0.1812529519391211],[127,134,75,0.18338205290145912],[127,134,76,0.18541660220566866],[127,134,77,0.18739635909986377],[127,134,78,0.18936014607281293],[127,134,79,0.19134460263369715],[127,135,64,0.14436261552954477],[127,135,65,0.14917951935672555],[127,135,66,0.15403769626374597],[127,135,67,0.15893689256440777],[127,135,68,0.16387949369698668],[127,135,69,0.16886317319951213],[127,135,70,0.173875574103297],[127,135,71,0.1788958287434459],[127,135,72,0.18236571578278837],[127,135,73,0.1848352945991651],[127,135,74,0.1871436553054839],[127,135,75,0.18932682044319976],[127,135,76,0.19142230556144038],[127,135,77,0.193467804486008],[127,135,78,0.19549993870500157],[127,135,79,0.19755307377512948],[127,136,64,0.1535279221042099],[127,136,65,0.15817880832472192],[127,136,66,0.16285722458055438],[127,136,67,0.16756329272508952],[127,136,68,0.1722989107585484],[127,136,69,0.17706083886630897],[127,136,70,0.18183647909066936],[127,136,71,0.1854542434256146],[127,136,72,0.18814272805097826],[127,136,73,0.19064812357892172],[127,136,74,0.19300198470717375],[127,136,75,0.1952384243969518],[127,136,76,0.19739281172096107],[127,136,77,0.19950052917635686],[127,136,78,0.20159579242937115],[127,136,79,0.20371053525914293],[127,137,64,0.1623530731575636],[127,137,65,0.16682931793389408],[127,137,66,0.17131853752869905],[127,137,67,0.1758212290170624],[127,137,68,0.1803389642510308],[127,137,69,0.18486788715945215],[127,137,70,0.18830273201604744],[127,137,71,0.19121316001768818],[127,137,72,0.1939247766663392],[127,137,73,0.19646368316320034],[127,137,74,0.19885953303211898],[127,137,75,0.20114425820560758],[127,137,76,0.20335084878385074],[127,137,77,0.20551218943752567],[127,137,78,0.2076599552444281],[127,137,79,0.20982356956263426],[127,138,64,0.1707827623366233],[127,138,65,0.1750754827217863],[127,138,66,0.17936613308315477],[127,138,67,0.18365563217799996],[127,138,68,0.18760913092238235],[127,138,69,0.19095773830708557],[127,138,70,0.19408449091075441],[127,138,71,0.19700347862136405],[127,138,72,0.19973451066868816],[127,138,73,0.2023018445528061],[127,138,74,0.20473295864739446],[127,138,75,0.20705737153830558],[127,138,76,0.20930551100558833],[127,138,77,0.21150763539724673],[127,138,78,0.2136928099764246],[127,138,79,0.21588794065107447],[127,139,64,0.17801914109868933],[127,139,65,0.18218730587086324],[127,139,66,0.18615518617956425],[127,139,67,0.18991542557213686],[127,139,68,0.1934608858207166],[127,139,69,0.19679042549516895],[127,139,70,0.19991050109203715],[127,139,71,0.20283397711509332],[127,139,72,0.2055789303488034],[127,139,73,0.20816748996215276],[127,139,74,0.21062471634269953],[127,139,75,0.21297752143191948],[127,139,76,0.21525363319664625],[127,139,77,0.2174806067281594],[127,139,78,0.21968488431091798],[127,139,79,0.22189090664769162],[127,140,64,0.18412530926639006],[127,140,65,0.18822128084518394],[127,140,66,0.192130094428249],[127,140,67,0.19584397492285477],[127,140,68,0.19935562711435878],[127,140,69,0.20266368130262286],[127,140,70,0.20577364514335342],[127,140,71,0.20869682937230422],[127,140,72,0.21144927898642377],[127,140,73,0.21405073423682408],[127,140,74,0.21652362398681416],[127,140,75,0.21889209387775518],[127,140,76,0.22118107162814357],[127,140,77,0.22341537166747735],[127,140,78,0.22561884117669387],[127,140,79,0.2278135494717648],[127,141,64,0.19025111881579396],[127,141,65,0.1942744394936072],[127,141,66,0.19812364121125248],[127,141,67,0.2017904214159057],[127,141,68,0.20526709110084393],[127,141,69,0.2085517118793413],[127,141,70,0.2116485095816476],[127,141,71,0.2145669295188388],[127,141,72,0.2173207048529002],[127,141,73,0.21992694741869953],[127,141,74,0.2224052631647371],[127,141,75,0.22477689429004036],[127,141,76,0.22706389005876587],[127,141,77,0.22928830817225734],[127,141,78,0.2314714484708763],[127,141,79,0.23363312062527408],[127,142,64,0.19634363710457653],[127,142,65,0.2002950312536316],[127,142,66,0.20408529610752732],[127,142,67,0.20770550227835508],[127,142,68,0.21114734734255838],[127,142,69,0.2144080070568332],[127,142,70,0.21749011419638722],[127,142,71,0.22040095641332438],[127,142,72,0.22315169148720046],[127,142,73,0.22575657642058214],[127,142,74,0.2282322121227747],[127,142,75,0.23059680535872004],[127,142,76,0.2328694495682209],[127,142,77,0.2350694260832144],[127,142,78,0.23721552718807848],[127,142,79,0.23932540238010458],[127,143,64,0.20233306292017306],[127,143,65,0.20621437910675422],[127,143,66,0.2099476436492241],[127,143,67,0.21352322068174473],[127,143,68,0.2169320002209149],[127,143,69,0.22016998461204657],[127,143,70,0.22323792614704924],[127,143,71,0.2261406800432054],[127,143,72,0.22888657606196525],[127,143,73,0.23148679422162421],[127,143,74,0.23395474588773837],[127,143,75,0.23630546148447104],[127,143,76,0.23855498602432343],[127,143,77,0.24071978360279883],[127,143,78,0.24281615194860534],[127,143,79,0.24485964805901833],[127,144,64,0.20817118612960653],[127,144,65,0.21198383295596143],[127,144,66,0.21566154357856562],[127,144,67,0.21919388182872415],[127,144,68,0.22257073625728324],[127,144,69,0.22578666144771808],[127,144,70,0.22884025595896829],[127,144,71,0.23149338708722023],[127,144,72,0.23386915573389863],[127,144,73,0.23613808905137812],[127,144,74,0.2382881981727891],[127,144,75,0.24030629717234406],[127,144,76,0.2421785044400774],[127,144,77,0.24389074803962663],[127,144,78,0.24542927434019074],[127,144,79,0.24678115924588123],[127,145,64,0.21382176592609944],[127,145,65,0.21756615013236513],[127,145,66,0.22118862233921183],[127,145,67,0.22467783109733253],[127,145,68,0.2280224691057645],[127,145,69,0.23070927160307778],[127,145,70,0.2329579458567871],[127,145,71,0.23511345814783344],[127,145,72,0.2371712265666737],[127,145,73,0.23912466950525554],[127,145,74,0.24096554619172966],[127,145,75,0.24268431579624114],[127,145,76,0.24427051481957684],[127,145,77,0.24571315246798447],[127,145,78,0.24700112371368232],[127,145,79,0.2481236397418085],[127,146,64,0.2192530560692817],[127,146,65,0.22292846042192557],[127,146,66,0.22649474484566154],[127,146,67,0.22993951103613305],[127,146,68,0.23258217514685622],[127,146,69,0.23461271152647956],[127,146,70,0.23654546662570577],[127,146,71,0.23838156643710162],[127,146,72,0.24012013720684453],[127,146,73,0.24175845750312325],[127,146,74,0.2432921428914858],[127,146,75,0.24471536347193132],[127,146,76,0.24602109448762818],[127,146,77,0.24720140017416223],[127,146,78,0.2482477509817404],[127,146,79,0.249151374271426],[127,147,64,0.22443720647557364],[127,147,65,0.22804170938825402],[127,147,66,0.23154950672109875],[127,147,67,0.23464238447935112],[127,147,68,0.23647119859555138],[127,147,69,0.23819013300199943],[127,147,70,0.2398054982259616],[127,147,71,0.24132196771800932],[127,147,72,0.2427425088388437],[127,147,73,0.2440683603850571],[127,147,74,0.24529905754593798],[127,147,75,0.24643250510215778],[127,147,76,0.24746509959858368],[127,147,77,0.24839190114841708],[127,147,78,0.24920685545521565],[127,147,79,0.2499030665739869],[127,148,64,0.22934973926475644],[127,148,65,0.23288017529200986],[127,148,66,0.23632579861605654],[127,148,67,0.23852696384198996],[127,148,68,0.24005181048436514],[127,148,69,0.24145891597742902],[127,148,70,0.24275778858183467],[127,148,71,0.24395675750893686],[127,148,72,0.24506271103817096],[127,148,73,0.24608089630289753],[127,148,74,0.24701478224749907],[127,148,75,0.24786598714296848],[127,148,76,0.24863427193477516],[127,148,77,0.24931760058654023],[127,148,78,0.2499122684771235],[127,148,79,0.2504130998082808],[127,149,64,0.23396909981373556],[127,149,65,0.23742106016459025],[127,149,66,0.2407558446831755],[127,149,67,0.2421153399862011],[127,149,68,0.2433372282842311],[127,149,69,0.24443456461583243],[127,149,70,0.24542013199990284],[127,149,71,0.24630596613399344],[127,149,72,0.24710289864001506],[127,149,73,0.24782017782530114],[127,149,74,0.24846516908719227],[127,149,75,0.2490431369387387],[127,149,76,0.24955711048405707],[127,149,77,0.2500078340257117],[127,149,78,0.25039380434459224],[127,149,79,0.25071139605660603],[127,150,64,0.23827628335558637],[127,150,65,0.24164415558097183],[127,150,66,0.2443488592058658],[127,150,67,0.2454169643900949],[127,150,68,0.2463390509743052],[127,150,69,0.24713085881241575],[127,150,70,0.24780846351765146],[127,150,71,0.24838759750440803],[127,150,72,0.24888299858717666],[127,150,73,0.2493078524542202],[127,150,74,0.24967333177667506],[127,150,75,0.2499882345278723],[127,150,76,0.25025872390276926],[127,150,77,0.2504881720450449],[127,150,78,0.2506771096113643],[127,150,79,0.25082328303026613],[127,151,64,0.24225453765226357],[127,151,65,0.24553158366682265],[127,151,66,0.24765915274313374],[127,151,67,0.248439938865726],[127,151,68,0.24906739645706436],[127,151,69,0.2495599387477257],[127,151,70,0.24993689100963565],[127,151,71,0.25021761118623204],[127,151,72,0.2504206463516765],[127,151,73,0.25056299969211676],[127,151,74,0.25065951140128145],[127,151,75,0.2507223566617322],[127,151,76,0.25076066366257216],[127,151,77,0.25078025438618756],[127,151,78,0.25078351068265947],[127,151,79,0.2507693679428819],[127,152,64,0.24588914226606096],[127,152,65,0.24906761387160303],[127,152,66,0.25069179133405173],[127,152,67,0.25119112989915426],[127,152,68,0.25153096760538957],[127,152,69,0.2517323219779044],[127,152,70,0.2518176645767641],[127,152,71,0.2518098473116085],[127,152,72,0.2517310715253989],[127,152,73,0.2516019842990614],[127,152,74,0.25144090599183794],[127,152,75,0.25126319277684195],[127,152,76,0.25108073767591255],[127,152,77,0.25090161334450073],[127,152,78,0.2507298596082934],[127,152,79,0.2505654185109059],[127,153,64,0.24916726495493258],[127,153,65,0.2522385560391702],[127,153,66,0.253450840896096],[127,153,67,0.25367620803095514],[127,153,68,0.25373704642335293],[127,153,69,0.253656852561166],[127,153,70,0.25346108274221896],[127,153,71,0.2531758938882168],[127,153,72,0.2528269321717946],[127,153,73,0.2524382653748283],[127,153,74,0.2520314635982185],[127,153,75,0.25162483265488583],[127,153,76,0.2512328041886548],[127,153,77,0.2508654862744648],[127,153,78,0.25052837797247285],[127,153,79,0.2502222510327458],[127,154,64,0.25207789572215367],[127,154,65,0.25503273031247514],[127,154,66,0.2559393724620878],[127,154,67,0.25589961174357617],[127,154,68,0.25569141579777066],[127,154,69,0.25534058171489254],[127,154,70,0.2548753349725586],[127,154,71,0.25432489605628045],[127,154,72,0.25371809752517227],[127,154,73,0.2530821608953038],[127,154,74,0.25244163854153606],[127,154,75,0.25181752549868897],[127,154,76,0.25122654572185094],[127,154,77,0.2506806170462213],[127,154,78,0.25018649877186],[127,154,79,0.24974562549107202],[127,155,64,0.25461185906124095],[127,155,65,0.2574405144189828],[127,155,66,0.2581593891222653],[127,155,67,0.25786443531320113],[127,155,68,0.2573982083090421],[127,155,69,0.25678857948934675],[127,155,70,0.2560662800342682],[127,155,71,0.25526330683435],[127,155,72,0.25441137861603946],[127,155,73,0.2535405673245934],[127,155,74,0.25267811051408906],[127,155,75,0.25184741014480727],[127,155,76,0.251067222837336],[127,155,77,0.25035104628322435],[127,155,78,0.24970670616698049],[127,155,79,0.24913614761685376],[127,156,64,0.25676190495153495],[127,156,65,0.25945446889744417],[127,156,66,0.26011167411017916],[127,156,67,0.2595722400699361],[127,156,68,0.2588596815563613],[127,156,69,0.2580036769309816],[127,156,70,0.25703715968343516],[127,156,71,0.2559945788829382],[127,156,72,0.2549102063893139],[127,156,73,0.2538166339131217],[127,156,74,0.2527434661857172],[127,156,75,0.2517162161235744],[127,156,76,0.25075540749282615],[127,156,77,0.24987589020281278],[127,156,78,0.2490863729848079],[127,156,79,0.2483891778474457],[127,157,64,0.25852287917952227],[127,157,65,0.26106954084575645],[127,157,66,0.2617955594526747],[127,157,67,0.261022788492313],[127,157,68,0.26007591943521],[127,157,69,0.2589861381918185],[127,157,70,0.2577882471704467],[127,157,71,0.2565187968001224],[127,157,72,0.25521425686816557],[127,157,73,0.2539093912789456],[127,157,74,0.25263584296322833],[127,157,75,0.2514209352666442],[127,157,76,0.2502866957426599],[127,157,77,0.2492491078733372],[127,157,78,0.24831759584364785],[127,157,79,0.2474947471058546],[127,158,64,0.2598919735856828],[127,158,65,0.26228334679370086],[127,158,66,0.2632086145815106],[127,158,67,0.2622137005401787],[127,158,68,0.26104445878395893],[127,158,69,0.2597332620212432],[127,158,70,0.2583164300225442],[127,158,71,0.25683224944532695],[127,158,72,0.2553190228996403],[127,158,73,0.2538133338543208],[127,158,74,0.25234853453592276],[127,158,75,0.2509534635501014],[127,158,76,0.2496513995301448],[127,158,77,0.24845925669319074],[127,158,78,0.24738702776511637],[127,158,79,0.24643747932405125],[127,159,64,0.26086905686544487],[127,159,65,0.2630965353324031],[127,159,66,0.2643462542762718],[127,159,67,0.2631400316030975],[127,159,68,0.2617598407905434],[127,159,69,0.26023891205190075],[127,159,70,0.25861472654376433],[127,159,71,0.25692694176573255],[127,159,72,0.255215331998138],[127,159,73,0.253517955761333],[127,159,74,0.2518695578240306],[127,159,75,0.2503002128471593],[127,159,76,0.24883421730570307],[127,159,77,0.24748923588773045],[127,159,78,0.24627570813116573],[127,159,79,0.24519652062891778],[127,160,64,0.2614570865867118],[127,160,65,0.26351323016542616],[127,160,66,0.2652012652762383],[127,160,67,0.26379377141052296],[127,160,68,0.2622130865205915],[127,160,69,0.26049297526327597],[127,160,70,0.2586717354453779],[127,160,71,0.2567900455752137],[127,160,72,0.25488880978037703],[127,160,73,0.2530072396602577],[127,160,74,0.25118118092920716],[127,160,75,0.24944169224945056],[127,160,76,0.2478138831928077],[127,160,77,0.24631601781080242],[127,160,78,0.2449588898378607],[127,160,79,0.24374547510628392],[127,161,64,0.26166260312519835],[127,161,65,0.263541554284274],[127,161,66,0.2654087118697286],[127,161,67,0.2641632632151169],[127,161,68,0.26239109589501725],[127,161,69,0.26048074797491483],[127,161,70,0.2584710179903012],[127,161,71,0.25640328870832574],[127,161,72,0.2543192884605726],[127,161,73,0.25225909809214153],[127,161,74,0.25025941166701265],[127,161,75,0.2483520585998372],[127,161,76,0.2465627944109319],[127,161,77,0.24491036682827153],[127,161,78,0.24340586349185508],[127,161,79,0.24205234705637554],[127,162,64,0.2614963062613588],[127,162,65,0.263194236012652],[127,162,66,0.26488066349091877],[127,162,67,0.264232542520703],[127,162,68,0.26227596940691705],[127,162,69,0.26018224868507833],[127,162,70,0.2579904120010926],[127,162,71,0.25574228194059123],[127,162,72,0.2534801598461883],[127,162,73,0.25124476681188374],[127,162,74,0.2490734462394925],[127,162,75,0.2469986358614918],[127,162,76,0.24504661665038205],[127,162,77,0.2432365455505743],[127,162,78,0.2415797784892229],[127,162,79,0.24007948965185474],[127,163,64,0.26097371523068036],[127,163,65,0.26248929771076274],[127,163,66,0.26399357988651556],[127,163,67,0.2639805945833458],[127,163,68,0.2618442518265504],[127,163,69,0.25957145703183115],[127,163,70,0.25720127704496737],[127,163,71,0.2547757830331087],[127,163,72,0.25233767224466175],[127,163,73,0.24992814958172996],[127,163,74,0.24758507758348344],[127,163,75,0.24534140292962422],[127,163,76,0.24322386707982363],[127,163,77,0.2412520081717344],[127,163,78,0.2394374608113093],[127,163,79,0.237783559909302],[127,164,64,0.2601155590375809],[127,164,65,0.2614501752868868],[127,164,66,0.26277381743127737],[127,164,67,0.2633817893822769],[127,164,68,0.26106765975274876],[127,164,69,0.25861733611364063],[127,164,70,0.25606980717909433],[127,164,71,0.253467287570346],[127,164,72,0.2508527782042444],[127,164,73,0.24826789243578884],[127,164,74,0.24575095674373743],[127,164,75,0.24333539425181994],[127,164,76,0.2410483988772157],[127,164,77,0.23890990739689005],[127,164,78,0.23693187622558856],[127,164,79,0.235117869211477],[127,165,64,0.25894369809136086],[127,165,65,0.26009957174966897],[127,165,66,0.26124510439912285],[127,165,67,0.26232988385769135],[127,165,68,0.2599255808407301],[127,165,69,0.25729841332720155],[127,165,70,0.2545735885682054],[127,165,71,0.2517933924597041],[127,165,72,0.2490010632808371],[127,165,73,0.24623856763922666],[127,165,74,0.24354465624910146],[127,165,75,0.24095320799226982],[127,165,76,0.2384918702051248],[127,165,77,0.2361810026275918],[127,165,78,0.2340329319467771],[127,165,79,0.23205152337381907],[127,166,64,0.2574768231440734],[127,166,65,0.2584561653383993],[127,166,66,0.2594262463793579],[127,166,67,0.26033484054771777],[127,166,68,0.25840537856855367],[127,166,69,0.25560212959802237],[127,166,70,0.2527000468811992],[127,166,71,0.24974142725308132],[127,166,72,0.24676968211920233],[127,166,73,0.24382707120934421],[127,166,74,0.24095272034576956],[127,166,75,0.23818093179836652],[127,166,76,0.23553979528832025],[127,166,77,0.2330501071905105],[127,166,78,0.23072460497735375],[127,166,79,0.22856752344808653],[127,167,64,0.2557309052469869],[127,167,65,0.25653604668084773],[127,167,66,0.25733355669110575],[127,167,67,0.2580695735169033],[127,167,68,0.25649796893444793],[127,167,69,0.2535194635426917],[127,167,70,0.25044017421374704],[127,167,71,0.2473023695127569],[127,167,72,0.24414958070651338],[127,167,73,0.24102430360961108],[127,167,74,0.23796598732058907],[127,167,75,0.23500931850049517],[127,167,76,0.23218280933398783],[127,167,77,0.22950769679991326],[127,167,78,0.22699716036884557],[127,167,79,0.22465586474421656],[127,168,64,0.25372015492666816],[127,168,65,0.2543536540628305],[127,168,66,0.25498176522977245],[127,168,67,0.2555492168769553],[127,168,68,0.2541969647655791],[127,168,69,0.2510441225275007],[127,168,70,0.24778777029807025],[127,168,71,0.2444701373959291],[127,168,72,0.24113483958997284],[127,168,73,0.23782456110368355],[127,168,74,0.2345790249485916],[127,168,75,0.23143326027197142],[127,168,76,0.22841617489259539],[127,168,77,0.22554944068600744],[127,168,78,0.22284669897192974],[127,168,79,0.22031309255594655],[127,169,64,0.25145822919604455],[127,169,65,0.2519229507614548],[127,169,66,0.2523851622709888],[127,169,67,0.25278845681169404],[127,169,68,0.25149760013494427],[127,169,69,0.24817152454820884],[127,169,70,0.244738486735272],[127,169,71,0.2412406989309006],[127,169,72,0.23772184880288247],[127,169,73,0.23422477498205446],[127,169,74,0.2307894308620082],[127,169,75,0.22745114533591318],[127,169,76,0.2242391886302826],[127,169,77,0.2211756508866211],[127,169,78,0.2182746406363031],[127,169,79,0.21554180981656115],[127,170,64,0.2489596915251726],[127,170,65,0.24925885535363607],[127,170,66,0.2495589939796353],[127,170,67,0.24980288254672894],[127,170,68,0.24839540645118735],[127,170,69,0.24489753682783622],[127,170,70,0.24128863480409565],[127,170,71,0.23761095370923005],[127,170,72,0.23390826610677987],[127,170,73,0.23022354706392387],[127,170,74,0.2265969441380467],[127,170,75,0.22306404267898605],[127,170,76,0.21965443454407554],[127,170,77,0.21639059782030623],[127,170,78,0.2132870946482018],[127,170,79,0.21035009375014554],[127,171,64,0.24624172723535637],[127,171,65,0.24637892741685932],[127,171,66,0.24652111198353835],[127,171,67,0.24661058898517677],[127,171,68,0.24488463800701768],[127,171,69,0.24121696900831818],[127,171,70,0.23743375482532988],[127,171,71,0.23357738509009648],[127,171,72,0.2296917567764329],[127,171,73,0.2258199798445817],[127,171,74,0.22200236663121928],[127,171,75,0.21827471346401642],[127,171,76,0.21466688248727714],[127,171,77,0.2112016911909294],[127,171,78,0.2078941166437579],[127,171,79,0.20475082094797178],[127,172,64,0.24332611696428513],[127,172,65,0.24330531121690213],[127,172,66,0.24329387954208673],[127,172,67,0.24323403346450498],[127,172,68,0.2409564446177438],[127,172,69,0.23712181866712764],[127,172,70,0.2331669449265348],[127,172,71,0.22913448088935778],[127,172,72,0.22506851304194597],[127,172,73,0.2210122995575197],[127,172,74,0.21700629248641512],[127,172,75,0.21308644775514],[127,172,76,0.20928283080486235],[127,172,77,0.20561852521643834],[127,172,78,0.20210885118826835],[127,172,79,0.1987609002597554],[127,173,64,0.24024147104553806],[127,173,65,0.24006694016679025],[127,173,66,0.23990633702259911],[127,173,67,0.23970214926436245],[127,173,68,0.23659678881522656],[127,173,69,0.23259926673330514],[127,173,70,0.22847694690545653],[127,173,71,0.2242729203905822],[127,173,72,0.22003155117869042],[127,173,73,0.21579627030896778],[127,173,74,0.21160764416953737],[127,173,75,0.20750172508180936],[127,173,76,0.20350869180306308],[127,173,77,0.19965178710995143],[127,173,78,0.1959465591572198],[127,173,79,0.19240041284460735],[127,174,64,0.23702572785256854],[127,174,65,0.23670200504207586],[127,174,66,0.23639662959121543],[127,174,67,0.23576974735811362],[127,174,68,0.23178410488507642],[127,174,69,0.22762942020944182],[127,174,70,0.223345986733146],[127,174,71,0.2189775253693359],[127,174,72,0.21456878410180658],[127,174,73,0.21016339732109665],[127,174,74,0.20580201324383357],[127,174,75,0.20152069727206295],[127,174,76,0.19734961869391582],[127,174,77,0.19331202766993602],[127,174,78,0.18942352899484058],[127,174,79,0.185691658676805],[127,175,64,0.2337191351138931],[127,175,65,0.23325098199880584],[127,175,66,0.23280514373510647],[127,175,67,0.2306267949515521],[127,175,68,0.22649566172810268],[127,175,69,0.22219129329308765],[127,175,70,0.21775525730939038],[127,175,71,0.21323211863083402],[127,175,72,0.20866712361988418],[127,175,73,0.20410413791079257],[127,175,74,0.19958384563339565],[127,175,75,0.19514221767743548],[127,175,76,0.1908092561366287],[127,175,77,0.1866080216295382],[127,175,78,0.18255394975460862],[127,175,79,0.17865446250376008],[127,176,64,0.2303298061820207],[127,176,65,0.22972239881575063],[127,176,66,0.22906317284426966],[127,176,67,0.225009040966309],[127,176,68,0.22073955218809482],[127,176,69,0.2162933774420836],[127,176,70,0.21171366397176733],[127,176,71,0.2070460151369479],[127,176,72,0.20233627330510873],[127,176,73,0.1976285493168729],[127,176,74,0.19296350621775135],[127,176,75,0.1883769045283617],[127,176,76,0.18389841590029513],[127,176,77,0.17955071157847527],[127,176,78,0.1753488316670558],[127,176,79,0.1712998407787592],[127,177,64,0.22685120697548436],[127,177,65,0.2261100959923285],[127,177,66,0.22311952800852727],[127,177,67,0.21893978002547623],[127,177,68,0.2145393903469246],[127,177,69,0.2099596000236069],[127,177,70,0.20524540340317726],[127,177,71,0.20044360516019596],[127,177,72,0.1956007156462158],[127,177,73,0.190761085321045],[127,177,74,0.1859652856021715],[127,177,75,0.18124874306553837],[127,177,76,0.17664063352249326],[127,177,77,0.17216304208828467],[127,177,78,0.16783039495070978],[127,177,79,0.1636491681473696],[127,178,64,0.2232707620538815],[127,178,65,0.22076728784124677],[127,178,66,0.21674739259758063],[127,178,67,0.2124495703520994],[127,178,68,0.20792627672743905],[127,178,69,0.20322165174424284],[127,178,70,0.19838276206000396],[127,178,71,0.19345774101899263],[127,178,72,0.18849381004386137],[127,178,73,0.18353553096319716],[127,178,74,0.17862329622549253],[127,178,75,0.17379206356337537],[127,178,76,0.16907034128118337],[127,178,77,0.1644794299474791],[127,178,78,0.16003292588547816],[127,178,79,0.1557364914723821],[127,179,64,0.21789460437409663],[127,179,65,0.21410737288747939],[127,179,66,0.2099831843540327],[127,179,67,0.20557538499872646],[127,179,68,0.2009378774627546],[127,179,69,0.19611797479036652],[127,179,70,0.19116499439153467],[127,179,71,0.18612848692356962],[127,179,72,0.18105639663535547],[127,179,73,0.17599344386274782],[127,179,74,0.1709797362100641],[127,179,75,0.16604961458398113],[127,179,76,0.16123073987395636],[127,179,77,0.15654342570075652],[127,179,78,0.15200022228524537],[127,179,79,0.14760575612687474],[127,180,64,0.21097032306212044],[127,180,65,0.20708924596510792],[127,180,66,0.2028687326810314],[127,180,67,0.1983596702531654],[127,180,68,0.19361741757360626],[127,180,69,0.18869267428850867],[127,180,70,0.18363713614322713],[127,180,71,0.17850181837119466],[127,180,72,0.1733353668733595],[127,180,73,0.16818258217390472],[127,180,74,0.16308316224602548],[127,180,75,0.15807066995169006],[127,180,76,0.153171730486486],[127,180,77,0.1484054638679476],[127,180,78,0.1437831571564576],[127,180,79,0.1393081807553445],[127,181,64,0.2081009659987162],[127,181,65,0.20330564066578827],[127,181,66,0.1982535296142846],[127,181,67,0.1929883742218273],[127,181,68,0.1875627428193016],[127,181,69,0.18202682697301964],[127,181,70,0.1764309091529422],[127,181,71,0.17082377491292766],[127,181,72,0.16538220023967787],[127,181,73,0.16015531870843377],[127,181,74,0.1549867712140283],[127,181,75,0.14990916933936466],[127,181,76,0.14494790734318905],[127,181,77,0.14012070214980438],[127,181,78,0.13543736107358295],[127,181,79,0.1308997812643695],[127,182,64,0.21002536098896707],[127,182,65,0.20515931126705342],[127,182,66,0.20003551600001956],[127,182,67,0.1946946148863146],[127,182,68,0.1891903821423454],[127,182,69,0.18357642596156193],[127,182,70,0.1779053049483012],[127,182,71,0.17222704550360393],[127,182,72,0.1665877746131038],[127,182,73,0.16102854606322706],[127,182,74,0.15558436523829744],[127,182,75,0.1502834173409705],[127,182,76,0.14514650356605893],[127,182,77,0.14018668944633209],[127,182,78,0.1354091692822568],[127,182,79,0.13081135026781285],[127,183,64,0.21176070249059076],[127,183,65,0.20682148004186088],[127,183,66,0.20162507979455768],[127,183,67,0.19620893732578898],[127,183,68,0.1906279889832459],[127,183,69,0.18493927643754332],[127,183,70,0.17919760376211746],[127,183,71,0.17345416444871709],[127,183,72,0.1677553516485269],[127,183,73,0.16214175126573832],[127,183,74,0.15664732256743102],[127,183,75,0.15129877068344239],[127,183,76,0.1461151150782699],[127,183,77,0.14110745778687903],[127,183,78,0.13627895492143915],[127,183,79,0.13162499467815306],[127,184,64,0.21334638219850716],[127,184,65,0.20833173426740606],[127,184,66,0.20306207567181078],[127,184,67,0.1975716142932569],[127,184,68,0.19191638755446705],[127,184,69,0.18615681380131147],[127,184,70,0.18034985400312628],[127,184,71,0.174547752180483],[127,184,72,0.1687970278936201],[127,184,73,0.16313764085442067],[127,184,74,0.1576023318328768],[127,184,75,0.152216143758766],[127,184,76,0.14699612664836076],[127,184,77,0.14195122971717034],[127,184,78,0.13708238377669707],[127,184,79,0.13238277675742444],[127,185,64,0.21482151767141014],[127,185,65,0.20972938168987426],[127,185,66,0.2043860372069759],[127,185,67,0.1988225222398075],[127,185,68,0.19309589899813087],[127,185,69,0.18726983298608663],[127,185,70,0.1814032973727515],[127,185,71,0.175549429885035],[127,185,72,0.16975471007982507],[127,185,73,0.1640582979970712],[127,185,74,0.15849153787389447],[127,185,75,0.15307763034930705],[127,185,76,0.14783147633872096],[127,185,77,0.14275969550975234],[127,185,78,0.1378608220494637],[127,185,79,0.13312568017934873],[127,186,64,0.21622348258413335],[127,186,65,0.2110519723050199],[127,186,66,0.20563468787351596],[127,186,67,0.19999963592393244],[127,186,68,0.19420481434925463],[127,186,69,0.18831693708751301],[127,186,70,0.1823967925064495],[127,186,71,0.17649821901665877],[127,186,72,0.17066746734734115],[127,186,73,0.16494271358685586],[127,186,74,0.15935372618553387],[127,186,75,0.15392168988694535],[127,186,76,0.14865918932344907],[127,186,77,0.14357035478488864],[127,186,78,0.13865117244915104],[127,186,79,0.1338899611510001],[127,187,64,0.217586324731221],[127,187,65,0.21233370965163778],[127,187,66,0.20684234529910378],[127,187,67,0.20113742181139974],[127,187,68,0.19527777379345923],[127,187,69,0.18933290218843513],[127,187,70,0.18336516739812878],[127,187,71,0.17742888502884785],[127,187,72,0.1715698711039282],[127,187,73,0.16582512768712612],[127,187,74,0.16022267164576934],[127,187,75,0.15478150906985919],[127,187,76,0.14951175765231248],[127,187,77,0.14441491912858753],[127,187,78,0.13948430367435788],[127,187,79,0.1347056079684891],[127,188,64,0.2189390698018147],[127,188,65,0.21360374968734064],[127,188,66,0.20803821691840607],[127,188,67,0.2022651284866472],[127,188,68,0.1963440505393103],[127,188,69,0.19034695681912278],[127,188,70,0.18433749919163697],[127,188,71,0.17837022407477515],[127,188,72,0.17249029636472576],[127,188,73,0.16673335380716928],[127,188,74,0.1611254940934987],[127,188,75,0.1556833967666936],[127,188,76,0.15041458182899864],[127,188,77,0.1453178067557566],[127,188,78,0.14038360343985665],[127,188,79,0.13559495641986602],[127,189,64,0.22030390883771886],[127,189,65,0.21488438521002554],[127,189,66,0.20924458505824414],[127,189,67,0.20340497219919937],[127,189,68,0.19742573753403006],[127,189,69,0.1913809744091706],[127,189,70,0.18533531984823404],[127,189,71,0.17934329136506877],[127,189,72,0.17344918346573562],[127,189,73,0.1676870851303249],[127,189,74,0.1620810201288565],[127,189,75,0.15664521184718275],[127,189,76,0.15138447412375894],[127,189,77,0.14629472942842964],[127,189,78,0.1413636555531263],[127,189,79,0.13657146183196087],[127,190,64,0.22169426717947807],[127,190,65,0.2161891136835186],[127,190,66,0.2104748793894801],[127,190,67,0.20457021557234495],[127,190,68,0.19853583516125706],[127,190,69,0.1924475770049388],[127,190,70,0.18637074612588145],[127,190,71,0.18035956980851328],[127,190,72,0.17445725899362463],[127,190,73,0.16869618177942408],[127,190,74,0.1630981504852809],[127,190,75,0.1576748235714333],[127,190,76,0.15242822354915236],[127,190,77,0.1473513718630372],[127,190,78,0.14242904158330813],[127,190,79,0.13763862861132367],[127,191,64,0.22311275260050745],[127,191,65,0.2175205862231308],[127,191,66,0.21173163458087782],[127,191,67,0.20576313740721275],[127,191,68,0.19967623797176529],[127,191,69,0.19354814844654855],[127,191,70,0.18744453223591],[127,191,71,0.18141907750229344],[127,191,72,0.17551371472828492],[127,191,73,0.16975893817240525],[127,191,74,0.16417423230587674],[127,191,75,0.1587686041691257],[127,191,76,0.1535412224430097],[127,191,77,0.14848216389257263],[127,191,78,0.14357326771345108],[127,191,79,0.1387890981929161],[127,192,64,0.22454898022851175],[127,192,65,0.21886843539804698],[127,192,66,0.21300433089505422],[127,192,67,0.20697289142527908],[127,192,68,0.20083561841442168],[127,192,69,0.1946707551229264],[127,192,70,0.18854404347700532],[127,192,71,0.1825084125843902],[127,192,72,0.17660434335382752],[127,192,73,0.1708603294948846],[127,192,74,0.16529343564638008],[127,192,75,0.15990995324635005],[127,192,76,0.15470615462640955],[127,192,77,0.1496691456904833],[127,192,78,0.1447778174250161],[127,192,79,0.14000389638480204],[127,193,64,0.22597727175684632],[127,193,65,0.22020697941274664],[127,193,66,0.2142671153754914],[127,193,67,0.20817325170624015],[127,193,68,0.20198720545506293],[127,193,69,0.19578797235203851],[127,193,70,0.1896411490851388],[127,193,71,0.18359873391129874],[127,193,72,0.17769962965783306],[127,193,73,0.17197023629568262],[127,193,74,0.16642513352257782],[127,193,75,0.16106785367060794],[127,193,76,0.1558917451350993],[127,193,77,0.15088092641182194],[127,193,78,0.14601133073019104],[127,193,79,0.14125184118103007],[127,194,64,0.22735422635711683],[127,194,65,0.22149280014004627],[127,194,66,0.2154764011874702],[127,194,67,0.2093202424970426],[127,194,68,0.2030864558963608],[127,194,69,0.1968546143671259],[127,194,70,0.19069003248191643],[127,194,71,0.1846436759801273],[127,194,72,0.17875279590835644],[127,194,73,0.17304164619635676],[127,194,74,0.1675222848217679],[127,194,75,0.16219545860389717],[127,194,76,0.15705157156051217],[127,194,77,0.15207173666352172],[127,194,78,0.1472289107423997],[127,194,79,0.14248911220775726],[127,195,64,0.22861680876333104],[127,195,65,0.22266285045656084],[127,195,66,0.21656900965171846],[127,195,67,0.2103503256012038],[127,195,68,0.20406929807939952],[127,195,69,0.19780604894037368],[127,195,70,0.19162559394437936],[127,195,71,0.18557785817202804],[127,195,72,0.17969843661943666],[127,195,73,0.17400943269028146],[127,195,74,0.16852037447291365],[127,195,75,0.1632292085874012],[127,195,76,0.1581233712912816],[127,195,77,0.1531809364455232],[127,195,78,0.14837183986644967],[127,195,79,0.143659179524611],[127,196,64,0.2297152329481921],[127,196,65,0.22366781634086463],[127,196,66,0.21749596978046248],[127,196,67,0.21121462346369393],[127,196,68,0.2048866783699265],[127,196,69,0.19859282305287568],[127,196,70,0.19239780073706342],[127,196,71,0.1863505265215896],[127,196,72,0.1804849702942634],[127,196,73,0.17482111253921997],[127,196,74,0.16936597267878495],[127,196,75,0.16411470949578738],[127,196,76,0.15905179309577014],[127,196,77,0.15415224779111947],[127,196,78,0.14938296522376213],[127,196,79,0.14470408698908838],[127,197,64,0.23064263091460008],[127,197,65,0.22450186646118372],[127,197,66,0.21825227442906023],[127,197,67,0.21190866001982772],[127,197,68,0.2055342295041151],[127,197,69,0.1992101156415158],[127,197,70,0.1930007156307824],[127,197,71,0.18695390370450543],[127,197,72,0.18110202872040643],[127,197,73,0.1754629801762963],[127,197,74,0.17004132206454414],[127,197,75,0.16482949389514698],[127,197,76,0.15980907813811024],[127,197,77,0.15495213326730772],[127,197,78,0.15022259153198142],[127,197,79,0.14557772053783288],[127,198,64,0.23139871017600408],[127,198,65,0.22516556281407243],[127,198,66,0.21883908761344034],[127,198,67,0.21243389642376306],[127,198,68,0.20601329086064615],[127,198,69,0.19965858874345704],[127,198,70,0.193433670703633],[127,198,71,0.1873852797151974],[127,198,72,0.18154412226308952],[127,198,73,0.1759260339968074],[127,198,74,0.17053320908730255],[127,198,75,0.1653554924252029],[127,198,76,0.1603717337274327],[127,198,77,0.1555512025586147],[127,198,78,0.15085506322593006],[127,198,79,0.14623790847056106],[127,199,64,0.23198563980123119],[127,199,65,0.2256617187952607],[127,199,66,0.21925959948476748],[127,199,67,0.21279360229483074],[127,199,68,0.20632682443484043],[127,199,69,0.19994039364484337],[127,199,70,0.19369742157139797],[127,199,71,0.18764338019347435],[127,199,72,0.18180729250619673],[127,199,73,0.17620298427225303],[127,199,74,0.17083039589153556],[127,199,75,0.1656769533656762],[127,199,76,0.16071899726954073],[127,199,77,0.15592326858783145],[127,199,78,0.15124845023443395],[127,199,79,0.14664676304405938],[127,200,64,0.23240747172482826],[127,200,65,0.2259948582964666],[127,200,66,0.2195185452010627],[127,200,67,0.2129924532806911],[127,200,68,0.2064791085847764],[127,200,69,0.20005897826174585],[127,200,70,0.19379408519338187],[127,200,71,0.18772845020472953],[127,200,72,0.1818893558273153],[127,200,73,0.17628866821128247],[127,200,74,0.17092421610253175],[127,200,75,0.1657812257321523],[127,200,76,0.16083381040623948],[127,200,77,0.1560465135360069],[127,200,78,0.15137590381362862],[127,200,79,0.1467722212174238],[127,201,64,0.23266959213187505],[127,201,65,0.22617070886910184],[127,201,66,0.21962176303145695],[127,201,67,0.2130361746933105],[127,201,68,0.20647548648081399],[127,201,69,0.20001895946632872],[127,201,70,0.19372715426471926],[127,201,71,0.18764242741407589],[127,201,72,0.18179025009091473],[127,201,73,0.17618058251907265],[127,201,74,0.1708093028879513],[127,201,75,0.16565968953121915],[127,201,76,0.16070395506237306],[127,201,77,0.15590483112008569],[127,201,78,0.15121720234668254],[127,201,79,0.14658978820636293],[127,202,64,0.23277820303296695],[127,202,65,0.22619572914112224],[127,202,66,0.21957579197357185],[127,202,67,0.21293123161988467],[127,202,68,0.2063221698090909],[127,202,69,0.19982606108039946],[127,202,70,0.19350158910799584],[127,202,71,0.18738920577259563],[127,202,72,0.18151248579323273],[127,202,73,0.17587953500954057],[127,202,74,0.17048445106354004],[127,202,75,0.16530883516892164],[127,202,76,0.16032335360474173],[127,202,77,0.15548934753070226],[127,202,78,0.15076048969548028],[127,202,79,0.14608448659673418],[127,203,64,0.23273983417179048],[127,203,65,0.22607667070245768],[127,203,66,0.2193875091968413],[127,203,67,0.21268456594740798],[127,203,68,0.2060260983214565],[127,203,69,0.19948711830664506],[127,203,70,0.19312398803206438],[127,203,71,0.18697499089629918],[127,203,72,0.1810617030625471],[127,203,73,0.17539041690266863],[127,203,74,0.1699536151046284],[127,203,75,0.16473149409965412],[127,203,76,0.1596935354172636],[127,203,77,0.15480012353946881],[127,203,78,0.1500042088026567],[127,203,79,0.1452530138856809],[127,204,64,0.23256088543630057],[127,204,65,0.22582017470528293],[127,204,66,0.219063807658288],[127,204,67,0.2123033807771281],[127,204,68,0.20559485586674192],[127,204,69,0.19901014941599304],[127,204,70,0.1926028371803928],[127,204,71,0.18640874837959484],[127,204,72,0.1804473359866904],[127,204,73,0.17472309751446216],[127,204,74,0.169227045007277],[127,204,75,0.1639382228915843],[127,204,76,0.15882527229213675],[127,204,77,0.15384804038641553],[127,204,78,0.14895923334906253],[127,204,79,0.14410611143013685],[127,205,64,0.23224719997495047],[127,205,65,0.22543240345787594],[127,205,66,0.21861131427226527],[127,205,67,0.21179497274354406],[127,205,68,0.20503664358102322],[127,205,69,0.19840449555736145],[127,205,70,0.19194884094472167],[127,205,71,0.18570274634447118],[127,205,72,0.17968338580523077],[127,205,73,0.17389344311882166],[127,205,74,0.1683225620207649],[127,205,75,0.16294884296842604],[127,205,76,0.1577403851259872],[127,205,77,0.15265687215256032],[127,205,78,0.14765120037062518],[127,205,79,0.14267114788531793],[127,206,64,0.23180366825232848],[127,206,65,0.22491870732551117],[127,206,66,0.2180361490525397],[127,206,67,0.21116661279239762],[127,206,68,0.2043603109580774],[127,206,69,0.19768102960398354],[127,206,70,0.19117533407253381],[127,206,71,0.1848731935844078],[127,206,72,0.17878930456676478],[127,206,73,0.17292446182883792],[127,206,74,0.16726697634645019],[127,206,75,0.16179413836553394],[127,206,76,0.15647372449267521],[127,206,77,0.15126554740939108],[127,206,78,0.1461230468290164],[127,206,79,0.14099492030939062],[127,207,64,0.23123733129893925],[127,207,65,0.22428716931779932],[127,207,66,0.2173477536414246],[127,207,67,0.21042947987464275],[127,207,68,0.20357920289544598],[127,207,69,0.19685571965976947],[127,207,70,0.19030136670673112],[127,207,71,0.18394265952734884],[127,207,72,0.1777915773745805],[127,207,73,0.17184689439249304],[127,207,74,0.16609555587003355],[127,207,75,0.16051409837579633],[127,207,76,0.15507011249017125],[127,207,77,0.1497237468216395],[127,207,78,0.14442925197754083],[127,207,79,0.13788056217184122],[127,208,64,0.23056734707192683],[127,208,65,0.2235593841696913],[127,208,66,0.21656988017124235],[127,208,67,0.2096091877517292],[127,208,68,0.2027205147888515],[127,208,69,0.19595709356242544],[127,208,70,0.18935657595579047],[127,208,71,0.18294168995708135],[127,208,72,0.17672147876976516],[127,208,73,0.17069258428186926],[127,208,74,0.16484057374725652],[127,208,75,0.15914130848617672],[127,208,76,0.15356235337489166],[127,208,77,0.14806442586672958],[127,208,78,0.14260288327223958],[127,208,79,0.13425574726453327],[127,209,64,0.2298140608272932],[127,209,65,0.2227577972699744],[127,209,66,0.2157266678488634],[127,209,67,0.20873112776488334],[127,209,68,0.2018104664832565],[127,209,69,0.19501182438819947],[127,209,70,0.18836775942068645],[127,209,71,0.18189692343689573],[127,209,72,0.17560524930801497],[127,209,73,0.16948717978659758],[127,209,74,0.1635269370410792],[127,209,75,0.15769983171772556],[127,209,76,0.15197361035522386],[127,209,77,0.14630983995256452],[127,209,78,0.14061579822576878],[127,209,79,0.13055228867305602],[127,210,64,0.22899540105176522],[127,210,65,0.2219017005665071],[127,210,66,0.21483841934958417],[127,210,67,0.20781622651429144],[127,210,68,0.20087025268250805],[127,210,69,0.1940410872835105],[127,210,70,0.1873558472829873],[127,210,71,0.18082887625004748],[127,210,72,0.17446287405423033],[127,210,73,0.16825006495608458],[127,210,74,0.16217340303868405],[127,210,75,0.15620781388997243],[127,210,76,0.15032147141607363],[127,210,77,0.14447710864494098],[127,210,78,0.13681830350904237],[127,210,79,0.12677028207233862],[127,211,64,0.22812685963144877],[127,211,65,0.2210072878050641],[127,211,66,0.21392173626609556],[127,211,67,0.20688116592739955],[127,211,68,0.19991635001801417],[127,211,69,0.193060953264993],[127,211,70,0.18633638020848745],[127,211,71,0.17975249974205432],[127,211,72,0.17330871299131798],[127,211,73,0.1669950553301304],[127,211,74,0.16079333152270653],[127,211,75,0.15467828294870384],[127,211,76,0.14861878584389238],[127,211,77,0.14257907947311838],[127,211,78,0.1329228271246977],[127,211,79,0.12291319809680995],[127,212,64,0.22722150548987108],[127,212,65,0.2200877434501091],[127,212,66,0.21298968716921463],[127,212,67,0.20593863385574038],[127,212,68,0.19896085150526016],[127,212,69,0.1920828059489813],[127,212,70,0.18532000421926248],[127,212,71,0.17867774705880768],[127,212,72,0.1721521316011772],[127,212,73,0.16573108299078038],[127,212,74,0.1593954139655966],[127,212,75,0.15311991140156908],[127,212,76,0.14687444879989772],[127,212,77,0.138808532811905],[127,212,78,0.1289361761220394],[127,212,79,0.11898706744075996],[127,213,64,0.22629003225401984],[127,213,65,0.2191533658824346],[127,213,66,0.2120520088921865],[127,213,67,0.2049976058141753],[127,213,68,0.19801182898839936],[127,213,69,0.19111378177692717],[127,213,70,0.18431298304406318],[127,213,71,0.1776101497096576],[127,213,72,0.17099813194211522],[127,213,73,0.1644628711316471],[127,213,74,0.15798437969429152],[127,213,75,0.15153774174137197],[127,213,76,0.14440539498224814],[127,213,77,0.13468251701215037],[127,213,78,0.12486757995612933],[127,213,79,0.11499976971914375],[127,214,64,0.225340840539536],[127,214,65,0.218211725500436],[127,214,66,0.21111534168038265],[127,214,67,0.2040636585037762],[127,214,68,0.19707372419697353],[127,214,69,0.1901572343226516],[127,214,70,0.18331772847092462],[127,214,71,0.17655140439219114],[127,214,72,0.1698479845471145],[127,214,73,0.16319159833288863],[127,214,74,0.15656167905534957],[127,214,75,0.149719012795447],[127,214,76,0.1401422474411544],[127,214,77,0.13046704232976186],[127,214,78,0.12072804019271936],[127,214,79,0.11096042705457175],[127,215,64,0.22438015547787551],[127,215,65,0.21726785838246396],[127,215,66,0.2101834988768081],[127,215,67,0.20313931578521388],[127,215,68,0.19614776906074677],[127,215,69,0.18921322328461943],[127,215,70,0.18233334923763586],[127,215,71,0.1754999705207189],[127,215,72,0.16869986146534857],[127,215,73,0.16191555271988722],[127,215,74,0.15478161526797266],[127,215,75,0.1453329480209654],[127,215,76,0.1357877309954208],[127,215,77,0.12617632526110517],[127,215,78,0.11652976788284365],[127,215,79,0.10687890342535658],[127,216,64,0.22341218013753067],[127,216,65,0.2163244961955584],[127,216,66,0.2092577718392221],[127,216,67,0.20222442779164687],[127,216,68,0.1952324359467101],[127,216,69,0.1882790287796594],[127,216,70,0.18135621900322568],[127,216,71,0.17445167890146127],[127,216,72,0.16754947076299917],[127,216,73,0.15964885093712455],[127,216,74,0.15029779781054958],[127,216,75,0.140858981959494],[127,216,76,0.13135917359673674],[127,216,77,0.12182570208132934],[127,216,78,0.11228570947793659],[127,216,79,0.10276541087780193],[127,217,64,0.22243928551896033],[127,217,65,0.21538233306168145],[127,217,66,0.20833727080776362],[127,217,67,0.20131658388965568],[127,217,68,0.19432391849764172],[127,217,69,0.18734969156488157],[127,217,70,0.18038056394822033],[127,217,71,0.17340035199556975],[127,217,72,0.1643945828062217],[127,217,73,0.15510145475610004],[127,217,74,0.14573425735678608],[127,217,75,0.13631723409531504],[127,217,76,0.12687485113919517],[127,217,77,0.1174311577632458],[127,217,78,0.1080091622168487],[127,217,79,0.09863022377499028],[127,218,64,0.22146223782763746],[127,218,65,0.21444033011516772],[127,218,66,0.20741930246147536],[127,218,67,0.20041156021246073],[127,218,68,0.19341664376281928],[127,218,69,0.18641857982063226],[127,218,70,0.17830350654755897],[127,218,71,0.16910417786485996],[127,218,72,0.15982414026174857],[127,218,73,0.15048618263485877],[127,218,74,0.14111337729834922],[127,218,75,0.1317285042194521],[127,218,76,0.12235349924133457],[127,218,77,0.11300892709802163],[127,218,78,0.10371347997582481],[127,218,79,0.09448350232163683],[127,219,64,0.2204804637511865],[127,219,65,0.21349605850406364],[127,219,66,0.20649978491764898],[127,219,67,0.1995038025010687],[127,219,68,0.19227051778729845],[127,219,69,0.18311355345177213],[127,219,70,0.1738669803330345],[127,219,71,0.1645545224856555],[127,219,72,0.15520004133372017],[127,219,73,0.14582698267599858],[127,219,74,0.13645785657600767],[127,219,75,0.12711375104367761],[127,219,76,0.11781388035732096],[127,219,77,0.10857516881347899],[127,219,78,0.09941187063070119],[127,219,79,0.09033522666921356],[127,220,64,0.21949235448485152],[127,220,65,0.21254608160329547],[127,220,66,0.20557370093942748],[127,220,67,0.19734764272920816],[127,220,68,0.18809968619483944],[127,220,69,0.17876878169855254],[127,220,70,0.1693821576384058],[127,220,71,0.15996641355526978],[127,220,72,0.15054698769900932],[127,220,73,0.14114766747255753],[127,220,74,0.1317901437435328],[127,220,75,0.12249360994454267],[127,220,76,0.11327440681169357],[127,220,77,0.10414571353699761],[127,220,78,0.09511728603723076],[127,220,79,0.0861952429672793],[127,221,64,0.2184956092635385],[127,221,65,0.21158637721809787],[127,221,66,0.2026850066557217],[127,221,67,0.19332725634230702],[127,221,68,0.18388511811157932],[127,221,69,0.1743903216555152],[127,221,70,0.1648737664820699],[127,221,71,0.15536445959407666],[127,221,72,0.14588902999958528],[127,221,73,0.13647129723190318],[127,221,74,0.12713189490302723],[127,221,75,0.11788795023110521],[127,221,76,0.10875282039712968],[127,221,77,0.09973588649931758],[127,221,78,0.09084240578860764],[127,221,79,0.08207342278353942],[127,222,64,0.2174876191680743],[127,222,65,0.20834070551870243],[127,222,66,0.19884411135205537],[127,222,67,0.1892761043602527],[127,222,68,0.1796500143619496],[127,222,69,0.1700018195845477],[127,222,70,0.1603655229008084],[127,222,71,0.15077206872465015],[127,222,72,0.14124889872370044],[127,222,73,0.13181957270181968],[127,222,74,0.12250345571309695],[127,222,75,0.11331547237123407],[127,222,76,0.10426592921896098],[127,222,77,0.09536040592237291],[127,222,78,0.08659971595813887],[127,222,79,0.07797993736555854],[127,223,64,0.21438845556582942],[127,223,65,0.20470463467450922],[127,223,66,0.1949838359455638],[127,223,67,0.18521571091306158],[127,223,68,0.1754163803834519],[127,223,69,0.16562542302213612],[127,223,70,0.1558793952780192],[127,223,71,0.14621073088511657],[127,223,72,0.13664733222856143],[127,223,73,0.12721223792396638],[127,223,74,0.11792336771143061],[127,223,75,0.10879334565352755],[127,223,76,0.09982940251363734],[127,223,77,0.09103335807837792],[127,223,78,0.08240168407906771],[127,223,79,0.07392564826045896],[127,224,64,0.21097980853688997],[127,224,65,0.20105863303250027],[127,224,66,0.19112368606845656],[127,224,67,0.18116604372573553],[127,224,68,0.171204293479475],[127,224,69,0.1612810230416436],[127,224,70,0.151434845765187],[127,224,71,0.1416992861067622],[127,224,72,0.13210240177470312],[127,224,73,0.12266649288058513],[127,224,74,0.11340789923521935],[127,224,75,0.10433688680393652],[127,224,76,0.09545762420966657],[127,224,77,0.0867682500471102],[127,224,78,0.07826103165086727],[127,224,79,0.06992261584314627],[127,225,64,0.20756807927491364],[127,225,65,0.1974199323289583],[127,225,66,0.1872813100362326],[127,225,67,0.1771447860855844],[127,225,68,0.16703113430488611],[127,225,69,0.1569854660528686],[127,225,70,0.14704804839075344],[127,225,71,0.13725317859697797],[127,225,72,0.12762883348581422],[127,225,73,0.11819641614450725],[127,225,74,0.10897060126638464],[127,225,75,0.09995928011789036],[127,225,76,0.09116360603822161],[127,225,77,0.08257814123288282],[127,225,78,0.07419110549079265],[127,225,79,0.06598472732716314],[127,226,64,0.20416818595158218],[127,226,65,0.19380367540333415],[127,226,66,0.1834717828698205],[127,226,67,0.1731665687080431],[127,226,68,0.16291078200271394],[127,226,69,0.15275173465562122],[127,226,70,0.1427310834968196],[127,226,71,0.13288369641704595],[127,226,72,0.12323732719681149],[127,226,73,0.1138123976906116],[127,226,74,0.10462188857416671],[127,226,75,0.09567133971018138],[127,226,76,0.08695896103651975],[127,226,77,0.07847585473173078],[127,226,78,0.07020634927047674],[127,226,79,0.06212844584430001],[127,227,64,0.20079590407141173],[127,227,65,0.19022597096882882],[127,227,66,0.17971127923874916],[127,227,67,0.16924726496707315],[127,227,68,0.1588585086365546],[127,227,69,0.1485943671575899],[127,227,70,0.13849776406657308],[127,227,71,0.12860404980080697],[127,227,72,0.11894070301423161],[127,227,73,0.1095271485553527],[127,227,74,0.1003746933352523],[127,227,75,0.09148658114904233],[127,227,76,0.08285816735101151],[127,227,77,0.07447721412393252],[127,227,78,0.0663243069306597],[127,227,79,0.05837339259003964],[127,228,64,0.19747959599676296],[127,228,65,0.18671835444002713],[127,228,66,0.17603417089788856],[127,228,67,0.1654236927042861],[127,228,68,0.1549131344662719],[127,228,69,0.14455367860610302],[127,228,70,0.1343893338471092],[127,228,71,0.12445579549317796],[127,228,72,0.11478017671667136],[127,228,73,0.10538086472259996],[127,228,74,0.09626750302021866],[127,228,75,0.08744110085805905],[127,228,76,0.07889427070521254],[127,228,77,0.07061159449250375],[127,228,78,0.06257011916627103],[127,228,79,0.054739981953686054],[127,229,64,0.19424960865645324],[127,229,65,0.1833146995833339],[127,229,66,0.1724775052113593],[127,229,67,0.1617356924994909],[127,229,68,0.15111683960922698],[127,229,69,0.1406736210165525],[127,229,70,0.13045084915241803],[127,229,71,0.12048434426088205],[127,229,72,0.11080070114014211],[127,229,73,0.1014171873991589],[127,229,74,0.09234177444239781],[127,229,75,0.08357330221155462],[127,229,76,0.07510177853198972],[127,229,77,0.06690881373509726],[127,229,78,0.05896819106033446],[127,229,79,0.05124657318110397],[127,230,64,0.1911332218735512],[127,230,65,0.18004505287242523],[127,230,66,0.1690737691157032],[127,230,67,0.15821784866130892],[127,230,68,0.14750591381808886],[127,230,69,0.1369917181161874],[127,230,70,0.12672052694086489],[127,230,71,0.11672800941739278],[127,230,72,0.10704004764277542],[127,230,73,0.09767268211743026],[127,230,74,0.08863219454523467],[127,230,75,0.07991532898088896],[127,230,76,0.07150965211709763],[127,230,77,0.06339405332285308],[127,230,78,0.05553938487255657],[127,230,79,0.047909242642820746],[127,231,64,0.18815431377294942],[127,231,65,0.17693529008287764],[127,231,66,0.1658505525334292],[127,231,67,0.15489917520107635],[127,231,68,0.14411047884110553],[127,231,69,0.13353883478538467],[127,231,70,0.12322956889109239],[127,231,71,0.11321789000021316],[127,231,72,0.1035287498557582],[127,231,73,0.09417684166770707],[127,231,74,0.08516673842548471],[127,231,75,0.0764931718616182],[127,231,76,0.0681414527825244],[127,231,77,0.06008803329942831],[127,231,78,0.05230121131969312],[127,231,79,0.04474197749538474],[127,232,64,0.18533305923712906],[127,232,65,0.17400680805173138],[127,232,66,0.16283024983605854],[127,232,67,0.1518028437818027],[127,232,68,0.1409542579653904],[127,232,69,0.13033900034060544],[127,232,70,0.12000204752291091],[127,232,71,0.10997782576747134],[127,232,72,0.10029013056473908],[127,232,73,0.09095218492109702],[127,232,74,0.0819668373216459],[127,232,75,0.07332690018069757],[127,232,76,0.06501562939792618],[127,232,77,0.057007345456669814],[127,232,78,0.049268196330146986],[127,232,79,0.04175706230029294],[127,233,64,0.1826856606018056],[127,233,65,0.171276250492195],[127,233,66,0.16002979796329475],[127,233,67,0.14894595198066254],[127,233,68,0.1380543908468883],[127,233,69,0.12740928359161946],[127,233,70,0.11705485221338645],[127,233,71,0.10702442188977992],[127,233,72,0.09734040974555924],[127,233,73,0.0880144498459394],[127,233,74,0.07904765528480091],[127,233,75,0.07043101805019243],[127,233,76,0.06214594716638055],[127,233,77,0.05416494543514733],[127,233,78,0.04645242493350459],[127,233,79,0.038965661269488666],[127,234,64,0.18022411137325048],[127,234,65,0.1687552687079582],[127,234,66,0.15746045211116003],[127,234,67,0.146339332855415],[127,234,68,0.13542129470693628],[127,234,69,0.12475972085577598],[127,234,70,0.11439769640723382],[127,234,71,0.10436714476543608],[127,234,72,0.09468889532236943],[127,234,73,0.08537288243454397],[127,234,74,0.07641847640357703],[127,234,75,0.06781494699723126],[127,234,76,0.05954205987230876],[127,234,77,0.05157080609246488],[127,234,78,0.043864264776971994],[127,234,79,0.03666617242129728],[127,235,64,0.17795599379362367],[127,235,65,0.16645031809993824],[127,235,66,0.1551275999522056],[127,235,67,0.14398740685538647],[127,235,68,0.13305857302372429],[127,235,69,0.12239329815695038],[127,235,70,0.11203318736051507],[127,235,71,0.10200849042073085],[127,235,72,0.09233825824264738],[127,235,73,0.0830306232755021],[127,235,74,0.07408320446473501],[127,235,75,0.06548363710080873],[127,235,76,0.05721022777120316],[127,235,77,0.049232734465100327],[127,235,78,0.04151327173484667],[127,235,79,0.036886859219252825],[127,236,64,0.17588431112259795],[127,236,65,0.16436249140390952],[127,236,66,0.15303061539808555],[127,236,67,0.1418880771641397],[127,236,68,0.1309629728905518],[127,236,69,0.12030598887552961],[127,236,70,0.10995695978869949],[127,236,71,0.0999442269809614],[127,236,72,0.09028489347794523],[127,236,73,0.08098519351055213],[127,236,74,0.07204097692330852],[127,236,75,0.06343830864660395],[127,236,76,0.05515418326933554],[127,236,77,0.04715735460609544],[127,236,78,0.03940928002210745],[127,236,79,0.03679143841995227],[127,237,64,0.17400731892462357],[127,237,65,0.1624873528461965],[127,237,66,0.15116271601152703],[127,237,67,0.1400326325273774],[127,237,68,0.12912435507199646],[127,237,69,0.1184868108923608],[127,237,70,0.10815783751005706],[127,237,71,0.09816367538839955],[127,237,72,0.08851933124930221],[127,237,73,0.079229044634602],[127,237,74,0.07028685783657888],[127,237,75,0.06167728918455373],[127,237,76,0.05337610954189527],[127,237,77,0.04535122174244223],[127,237,78,0.037563642581479706],[127,237,79,0.03638860247160646],[127,238,64,0.17231060048908364],[127,238,65,0.16080698059806003],[127,238,66,0.14950299857429697],[127,238,67,0.13839780438773408],[127,238,68,0.12751780138307037],[127,238,69,0.11691001142466255],[127,238,70,0.10661012088780929],[127,238,71,0.0966421220536611],[127,238,72,0.08701879455188707],[127,238,73,0.07774227731679523],[127,238,74,0.06880473095135886],[127,238,75,0.06018909027470649],[127,238,76,0.05186990671522071],[127,238,77,0.04381428010529282],[127,238,78,0.03598287933900545],[127,238,79,0.03569299540573311],[127,239,64,0.17074774329934134],[127,239,65,0.15927158666342459],[127,239,66,0.14799891060638817],[127,239,67,0.13692898631524622],[127,239,68,0.1260874702608146],[127,239,69,0.11551944273547149],[127,239,70,0.10525836684622342],[127,239,71,0.09532589155028917],[127,239,72,0.08573246072550905],[127,239,73,0.07647799907231681],[127,239,74,0.06755267450099287],[127,239,75,0.058937736559526124],[127,239,76,0.050606430364672335],[127,239,77,0.042524985413425274],[127,239,78,0.034653678577968965],[127,239,79,0.03471920314436487],[127,240,64,0.1692341129038265],[127,240,65,0.15779635703248684],[127,240,66,0.14656569619699766],[127,240,67,0.13554176612668362],[127,240,68,0.12474965792611009],[127,240,69,0.11423257697740977],[127,240,70,0.10402178310099404],[127,240,71,0.09413656461652503],[127,240,72,0.08458498224236703],[127,240,73,0.07536467568767458],[127,240,74,0.0664637323454544],[127,240,75,0.05786161741786303],[127,240,76,0.04953016473380218],[127,240,77,0.04143462745506241],[127,240,78,0.03353478781460572],[127,240,79,0.03345540586536589],[127,241,64,0.16769302896114155],[127,241,65,0.1563047475367946],[127,241,66,0.14512699617474056],[127,241,67,0.1341600327181049],[127,241,68,0.12342862018721205],[127,241,69,0.11297424686890704],[127,241,70,0.1028260790489263],[127,241,71,0.09300111116396327],[127,241,72,0.08350504864695721],[127,241,73,0.07433323932567318],[127,241,74,0.06547165253891625],[127,241,75,0.05689790507913122],[127,241,76,0.04858233302065847],[127,241,77,0.04048910845088195],[127,241,78,0.032577400090513964],[127,241,79,0.031879844091566814],[127,242,64,0.1660656762466251],[127,242,65,0.15473749168710021],[127,242,66,0.14362306588823426],[127,242,67,0.13272353032547168],[127,242,68,0.12206359627523648],[127,242,69,0.1116832725555014],[127,242,70,0.1016098247062125],[127,242,71,0.09185810176783944],[127,242,72,0.08243155887874175],[127,242,73,0.07332331470400834],[127,242,74,0.06451724262318832],[127,242,75,0.055989094569807184],[127,242,76,0.047707656387349626],[127,242,77,0.039635933545704785],[127,242,78,0.03173236605237095],[127,242,79,0.029968228097745964],[127,243,64,0.16430879393862746],[127,243,65,0.153050380113654],[127,243,66,0.142008663551906],[127,243,67,0.13118587733290354],[127,243,68,0.12060698061689068],[127,243,69,0.11031080808330747],[127,243,70,0.10032299210659006],[127,243,71,0.09065646208127712],[127,243,72,0.08131260414499152],[127,243,73,0.07228244280591473],[127,243,74,0.06354784317763158],[127,243,75,0.0550827325097318],[127,243,76,0.04685433969460899],[127,243,77,0.038824451430565836],[127,243,78,0.03095068373195197],[127,243,79,0.027694474030648314],[127,244,64,0.16239253811667273],[127,244,65,0.1512122128239007],[127,244,66,0.14025110933576854],[127,244,67,0.12951275210674207],[127,244,68,0.11902265641482496],[127,244,69,0.10881884314631261],[127,244,70,0.09892564431603783],[127,244,71,0.08935436628315152],[127,244,72,0.08010458052061512],[127,244,73,0.07116542449162354],[127,244,74,0.06251691112848001],[127,244,75,0.054131245413451476],[127,244,76,0.04597414657190157],[127,244,77,0.03800617440651049],[127,244,78,0.030184058330821932],[127,244,79,0.025031499926425116],[127,245,64,0.16029852046857948],[127,245,65,0.14920292720073064],[127,245,66,0.13832851801829849],[127,245,67,0.127680248542118],[127,245,68,0.11728449356563464],[127,245,69,0.10717886246192264],[127,245,70,0.09738677422915305],[127,245,71,0.0879182715269141],[127,245,72,0.07877143304098391],[127,245,73,0.06993378557642503],[127,245,74,0.06138371418860972],[127,245,75,0.053091868682282106],[127,245,76,0.0450225648362429],[127,245,77,0.03713517874658626],[127,245,78,0.02938553272771396],[127,245,79,0.021952082225145487],[127,246,64,0.15801802632908316],[127,246,65,0.1470119047790174],[127,246,66,0.13622820812419584],[127,246,67,0.1256734040980948],[127,246,68,0.11537501352018407],[127,246,69,0.1053706651876789],[127,246,70,0.09568329535345754],[127,246,71,0.08632209538040828],[127,246,72,0.07728403305723394],[127,246,73,0.06855536492493618],[127,246,74,0.0601131377627796],[127,246,75,0.05192667741709541],[127,246,76,0.04395906319805317],[127,246,77,0.036168586119302404],[127,246,78,0.028510189316150875],[127,246,79,0.02093688904669062],[127,247,64,0.1555504152745083],[127,247,65,0.14463645992895943],[127,247,66,0.13394529054759627],[127,247,67,0.12348490316308425],[127,247,68,0.11328422374206482],[127,247,69,0.10338134682741523],[127,247,70,0.09379918680623424],[127,247,71,0.08454653824705602],[127,247,72,0.07561969060510537],[127,247,73,0.0670040270734586],[127,247,74,0.05867560559616115],[127,247,75,0.05060272010523969],[127,247,76,0.04274744009682266],[127,247,77,0.035067126723035316],[127,247,78,0.02751592364883971],[127,247,79,0.02004622100347487],[127,248,64,0.15290170757266783],[127,248,65,0.14208051363788107],[127,248,66,0.1314814397123758],[127,248,67,0.12111395863033793],[127,248,68,0.11100862444396697],[127,248,69,0.10120444608376925],[127,248,70,0.09172479474071472],[127,248,71,0.08257855273359498],[127,248,72,0.07376180349498421],[127,248,73,0.06525950083020107],[127,248,74,0.05704711536288303],[127,248,75,0.049092256134979806],[127,248,76,0.041356265390725205],[127,248,77,0.03379578464424286],[127,248,78,0.026364290211678923],[127,248,79,0.019013596478023437],[127,249,64,0.15008335983136817],[127,249,65,0.13935345561451506],[127,249,66,0.12884385034152454],[127,249,67,0.11856537457092292],[127,249,68,0.10855039027566403],[127,249,69,0.09883925909315028],[127,249,70,0.08945629238185278],[127,249,71,0.08041096187628187],[127,249,72,0.0716996447601021],[127,249,73,0.06330734521443858],[127,249,74,0.05520939028432528],[127,249,75,0.047373097965515865],[127,249,76,0.03975941548091616],[127,249,77,0.03232452579139125],[127,249,78,0.025021420472484734],[127,249,79,0.017801437183475925],[127,250,64,0.14711123319916147],[127,250,65,0.13646919793795098],[127,250,66,0.1260443828936858],[127,250,67,0.11584879286529746],[127,250,68,0.10591672959786455],[127,250,69,0.09629032342579655],[127,250,70,0.08699530078353247],[127,250,71,0.0780422280533083],[127,250,72,0.06942828999916469],[127,250,73,0.06113904397791491],[127,250,74,0.05315014773171005],[127,250,75,0.04542905862794073],[127,250,76,0.0379367022811818],[127,250,77,0.030629108569469286],[127,250,78,0.023459013146216907],[127,250,79,0.016377422646316666],[127,251,64,0.14400475744354824],[127,251,65,0.13344542343255786],[127,251,66,0.12309890067213546],[127,251,67,0.11297812658978465],[127,251,68,0.10311942389888876],[127,251,69,0.0935670741431008],[127,251,70,0.08434867231467022],[127,251,71,0.07547637429207515],[127,251,72,0.06694868601519259],[127,251,73,0.0587522298013612],[127,251,74,0.050863485600768046],[127,251,75,0.04325050504920963],[127,251,76,0.03587459624386284],[127,251,77,0.028691977244054694],[127,251,78,0.02165539638692095],[127,251,79,0.014715717604167938],[127,252,64,0.1407862941620355],[127,252,65,0.1303030318676888],[127,252,66,0.12002680151713421],[127,252,67,0.10997118284834496],[127,252,68,0.10017454979350518],[127,252,69,0.0906836740745743],[127,252,70,0.08152843873907276],[127,252,71,0.07272305952395075],[127,252,72,0.0642678619822336],[127,252,73,0.05615103907423436],[127,252,74,0.04835038704643344],[127,252,75,0.040835017476067936],[127,252,76,0.03356704342249145],[127,252,77,0.026503237698205413],[127,252,78,0.01959666135607092],[127,252,79,0.012798260581390445],[127,253,64,0.13748070226477577],[127,253,65,0.1270657869512718],[127,253,66,0.11685074685118832],[127,253,67,0.10684947758768823],[127,253,68,0.0971023858800601],[127,253,69,0.08765902030259251],[127,253,70,0.07855192556824625],[127,253,71,0.06979780914145595],[127,253,72,0.06139928416138494],[127,253,73,0.05334659794246478],[127,253,74,0.0456193439286508],[127,253,75,0.038188155025155976],[127,253,76,0.031016376286827026],[127,253,77,0.024061715006689157],[127,253,78,0.017277866324436158],[127,253,79,0.010616112559691065],[127,254,64,0.13411510870035653],[127,254,65,0.12376016690592966],[127,254,66,0.11359659065481352],[127,254,67,0.10363824473147541],[127,254,68,0.09392750651992039],[127,254,69,0.0845169286212076],[127,254,70,0.0754420341345385],[127,254,71,0.06672240197069502],[127,254,72,0.05836335493460538],[127,254,73,0.05035764004470308],[127,254,74,0.042687099044292784],[127,254,75,0.035324327097208987],[127,254,76,0.02823431770520509],[127,254,77,0.021376091938683936],[127,254,78,0.014704310138589907],[127,254,79,0.00817086432252347],[127,255,64,0.13071888717412544],[127,255,65,0.12041542118049377],[127,255,66,0.11029351070336899],[127,255,67,0.1003666417127291],[127,255,68,0.09067906433792111],[127,255,69,0.08128649746169657],[127,255,70,0.07222769255013944],[127,255,71,0.063525414481512],[127,255,72,0.05518805662559825],[127,255,73,0.047211256049042666],[127,255,74,0.03957950690181627],[127,255,75,0.032267770064626194],[127,255,76,0.02524307716977553],[127,255,77,0.01846612714974412],[127,255,78,0.011892873521700717],[127,255,79,0.00547610067933239],[127,256,64,0.12732384732584626],[127,256,65,0.11706383555329383],[127,256,66,0.10697434408810096],[127,256,67,0.09706815316737451],[127,256,68,0.08739126291888248],[127,256,69,0.07800265244723534],[127,256,70,0.06894447638083512],[127,256,71,0.06024292271484288],[127,256,72,0.051909740227402204],[127,256,73,0.04394377474545624],[127,256,74,0.03633251243099153],[127,256,75,0.029053628269254037],[127,256,76,0.022076537959133356],[127,256,77,0.015363951433655161],[127,256,78,0.008873426278526973],[127,256,79,0.0025589193661695302],[127,257,64,0.12396463313429731],[127,257,65,0.11374120409614474],[127,257,66,0.1036761252384113],[127,257,67,0.09378119080088555],[127,257,68,0.08410401758064683],[127,257,69,0.07470686943918008],[127,257,70,0.06563539702368722],[127,257,71,0.05691936020985386],[127,257,72,0.04857405779290145],[127,257,73,0.04060177510952697],[127,257,74,0.03299324788650118],[127,257,75,0.0257291406076452],[127,257,76,0.018781537694682222],[127,257,77,0.012115445810286625],[127,257,78,0.0056903056168656554],[127,257,79,-5.38488640565769E-4],[127,258,64,0.12068037675120954],[127,258,65,0.11048846582883542],[127,258,66,0.10044169592039742],[127,258,67,0.09055067034898824],[127,258,68,0.08086449304415344],[127,258,69,0.07144866536591213],[127,258,70,0.062352338035624275],[127,258,71,0.053608893072827644],[127,258,72,0.045237271165819645],[127,258,73,0.03724332587071633],[127,258,74,0.029621203061641583],[127,258,75,0.022354744035955162],[127,258,76,0.015418910667343976],[127,258,77,0.008781230997538527],[127,258,78,0.0024032636677624227],[127,258,79,-0.0037579203888597045],[127,259,64,0.11753519455878253],[127,259,65,0.10737020416256414],[127,259,66,0.09733620766227198],[127,259,67,0.08744250713783126],[127,259,68,0.07773950799484469],[127,259,69,0.0682957449867385],[127,259,70,0.05916373423567758],[127,259,71,0.050380412249947264],[127,259,72,0.041968356266388715],[127,259,73,0.033937039974580974],[127,259,74,0.02628412317451452],[127,259,75,0.018996773886346126],[127,259,76,0.01205302140518891],[127,259,77,0.005423138777144652],[127,259,78,-9.28946831537018E-4],[127,259,79,-0.007044217394759555],[127,260,64,0.11460212008522],[127,260,65,0.10445824507905974],[127,260,66,0.09443042491073622],[127,260,67,0.08452663312123647],[127,260,68,0.07479827286516505],[127,260,69,0.06531648625692923],[127,260,70,0.05613684854056993],[127,260,71,0.047299659372603046],[127,260,72,0.038831045853892604],[127,260,73,0.030744109392197953],[127,260,74,0.02304011508576864],[127,260,75,0.01570972227074649],[127,260,76,0.008734254834751848],[127,260,77,0.002087009867420075],[127,260,78,-0.004265396800625832],[127,260,79,-0.010361649628282376],[127,261,64,0.11193321209796397],[127,261,65,0.10180362794964512],[127,261,66,0.09177456730683334],[127,261,67,0.08185271220955928],[127,261,68,0.07209005690475757],[127,261,69,0.06255973685627143],[127,261,70,0.05331993261572034],[127,261,71,0.04441400666218261],[127,261,72,0.03587147438835947],[127,261,73,0.027709027465519044],[127,261,74,0.019931608431636025],[127,261,75,0.012533535284587964],[127,261,76,0.005499674806674324],[127,261,77,-0.001193336700366381],[127,261,78,-0.007575826625549564],[127,261,79,-0.013683774584821297],[127,262,64,0.10956011118723773],[127,262,65,0.09943725990990862],[127,262,66,0.08939904594584067],[127,262,67,0.07945094454859644],[127,262,68,0.06964505074942863],[127,262,69,0.06005572931454108],[127,262,70,0.05074319172187475],[127,262,71,0.0417534706254248],[127,262,72,0.033119240895629294],[127,262,73,0.024860701839962984],[127,262,74,0.016986519621709065],[127,262,75,0.009494828816718526],[127,262,76,0.002374291976344925],[127,262,77,-0.004394783998676904],[127,262,78,-0.010839275920072854],[127,262,79,-0.01699201809801439],[127,263,64,0.10749604006307965],[127,263,65,0.0973719203429828],[127,263,66,0.08731645403914794],[127,263,67,0.077334027129691],[127,263,68,0.06747628099346946],[127,263,69,0.057817932931315846],[127,263,70,0.04842055771485991],[127,263,71,0.03933239107067752],[127,263,72,0.03058898084144013],[127,263,73,0.02221390849468448],[127,263,74,0.01421958019293813],[127,263,75,0.006608086544252456],[127,263,76,-6.278699364339261E-4],[127,263,77,-0.007503980705477389],[127,263,78,-0.014043271527781426],[127,263,79,-0.020274978452314612],[127,264,64,0.10573797639364746],[127,264,65,0.09560443389033979],[127,264,66,0.08552372050692077],[127,264,67,0.07549926980737676],[127,264,68,0.06558167039364221],[127,264,69,0.05584503905553043],[127,264,70,0.04635158052090535],[127,264,71,0.03715121110175224],[127,264,72,0.028282018971015038],[127,264,73,0.019770804399853823],[127,264,74,0.011633699388441868],[127,264,75,0.0038768660111806524],[127,264,76,-0.0035027273095244007],[127,264,77,-0.010516452486188299],[127,264,78,-0.01718309237925997],[127,264,79,-0.02172882593450021],[127,265,64,0.10426899600866847],[127,265,65,0.09411800977864905],[127,265,66,0.08400442426681064],[127,265,67,0.07393086447326282],[127,265,68,0.06394624144265615],[127,265,69,0.05412307745937321],[127,265,70,0.04452343582786576],[127,265,71,0.03519835584506876],[127,265,72,0.02618810089500466],[127,265,73,0.017522496616412454],[127,265,74,0.009221358819961854],[127,265,75,0.001295010700695983],[127,265,76,-0.006255111234712738],[127,265,77,-0.011185246383058112],[127,265,78,-0.011875220968431322],[127,265,79,-0.012520666987963171],[127,266,64,0.10306078423238643],[127,266,65,0.09288474520113771],[127,266,66,0.08273126694424232],[127,266,67,0.07260230510701748],[127,266,68,0.06254446103585451],[127,266,69,0.05262766154265049],[127,266,70,0.042913046751683843],[127,266,71,0.0334522077040399],[127,266,72,0.02428720126169579],[127,266,73,0.015450665735004797],[127,266,74,0.0069660371773415854],[127,266,75,7.759393481524359E-4],[127,266,76,-2.996908100728786E-4],[127,266,77,-0.0012943523365761293],[127,266,78,-0.0022183176911193493],[127,266,79,-0.003088128965383099],[127,267,64,0.10207631305471968],[127,267,65,0.09186829044553198],[127,267,66,0.08166870169355771],[127,267,67,0.0714789564005521],[127,267,68,0.06134272394324269],[127,267,69,0.05132636010701741],[127,267,70,0.041489317257239304],[127,267,71,0.03188317597250924],[127,267,72,0.022551406412686992],[127,267,73,0.014344793328316568],[127,267,74,0.01286176579698976],[127,267,75,0.011446440558275317],[127,267,76,0.01010787926738687],[127,267,77,0.008847883201453454],[127,267,78,0.007661423947814433],[127,267,79,0.006537183780320456],[127,268,64,0.10127268179909069],[127,268,65,0.09102667341950871],[127,268,66,0.08077571578799396],[127,268,67,0.07052076863129732],[127,268,68,0.060301972791360535],[127,268,69,0.05018119344595877],[127,268,70,0.040215475134769606],[127,268,71,0.030455858677974495],[127,268,72,0.027579219143086888],[127,268,73,0.02580396044461758],[127,268,74,0.02406075802335185],[127,268,75,0.022370532161572056],[127,268,76,0.020747250051954037],[127,268,77,0.019198034667037317],[127,268,78,0.017723397029985738],[127,268,79,0.016317591510335842],[127,269,64,0.10060411890096509],[127,269,65,0.09031528118907767],[127,269,66,0.08000876461052989],[127,269,67,0.06968513644518345],[127,269,68,0.05938045225620846],[127,269,69,0.04915125150642874],[127,269,70,0.04348473322435153],[127,269,71,0.04153320646670653],[127,269,72,0.0395243801166888],[127,269,73,0.03749507784735596],[127,269,74,0.03547653546795013],[127,269,75,0.03349400855293594],[127,269,76,0.03156651708808043],[127,269,77,0.0297067273663796],[127,269,78,0.02792097116127324],[127,269,79,0.02620940200713357],[127,270,64,0.10002514237252111],[127,270,65,0.089689996115428],[127,270,66,0.07932485465699668],[127,270,67,0.06892989919949626],[127,270,68,0.05995581559280763],[127,270,69,0.05809555278148395],[127,270,70,0.05606205398784442],[127,270,71,0.053900136975154035],[127,270,72,0.05165212955661788],[127,270,73,0.04935690713923639],[127,270,74,0.04704907969028842],[127,270,75,0.044758329115669175],[127,270,76,0.042508897796790825],[127,270,77,0.04031922879403899],[127,270,78,0.038201757991599014],[127,270,79,0.03616285823257254],[127,271,64,0.09948338371683185],[127,271,65,0.08909996002278488],[127,271,66,0.07867443844142692],[127,271,67,0.07478016678700766],[127,271,68,0.07300712441732757],[127,271,69,0.07098971887395901],[127,271,70,0.06877003522771313],[127,271,71,0.0663911373979231],[127,271,72,0.06389562950344523],[127,271,73,0.061324379298716536],[127,271,74,0.058715405301330306],[127,271,75,0.05610292894620805],[127,271,76,0.053516592831167276],[127,271,77,0.05098084585128377],[127,271,78,0.04851449575679894],[127,271,79,0.046130429413324604],[127,272,64,0.0988919018730659],[127,272,65,0.09088947393109494],[127,272,66,0.08960341707372975],[127,272,67,0.08799994081573626],[127,272,68,0.08609505445765997],[127,272,69,0.0839208047923071],[127,272,70,0.08151480603041308],[127,272,71,0.07891810337377585],[127,272,72,0.07617339518592228],[127,272,73,0.07332343173412627],[127,272,74,0.07040959249346446],[127,272,75,0.06747064370423526],[127,272,76,0.06454167757477339],[127,272,77,0.06165323422436142],[127,272,78,0.05883060716755177],[127,272,79,0.05609333285385234],[127,273,64,0.09734845319880503],[127,273,65,0.09640223044343321],[127,273,66,0.09591063443420894],[127,273,67,0.09584466902197059],[127,273,68,0.09616771058762619],[127,273,69,0.09678953843627933],[127,273,70,0.09420232784492358],[127,273,71,0.09139320244269758],[127,273,72,0.08840474839113173],[127,273,73,0.08528142290051963],[127,273,74,0.08206781848645227],[127,273,75,0.07880712308698554],[127,273,76,0.07553977776113674],[127,273,77,0.07230233336137407],[127,273,78,0.069126507247909],[127,273,79,0.06603844079314844],[127,274,64,0.09167179451117885],[127,274,65,0.09081468214211141],[127,274,66,0.09045112462289495],[127,274,67,0.0905502591331886],[127,274,68,0.09107259070710666],[127,274,69,0.09197025925993724],[127,274,70,0.09318758253225512],[127,274,71,0.09466460432564511],[127,274,72,0.09633728555649657],[127,274,73,0.09713060030845837],[127,274,74,0.09363004098031995],[127,274,75,0.09006065131136838],[127,274,76,0.08646798834136116],[127,274,77,0.08289438556028887],[127,274,78,0.07937776460220873],[127,274,79,0.07595066457549937],[127,275,64,0.08637068446796431],[127,275,65,0.08560110178281866],[127,275,66,0.08536302159802384],[127,275,67,0.08562379914055313],[127,275,68,0.08634117186748974],[127,275,69,0.08746344715960741],[127,275,70,0.08892996586192314],[127,275,71,0.09067459463771343],[127,275,72,0.09262583053211398],[127,275,73,0.09470073509611626],[127,275,74,0.09678227503066594],[127,275,75,0.0987576649379936],[127,275,76,0.09728546084363521],[127,275,77,0.09339652391236598],[127,275,78,0.08955968602619686],[127,275,79,0.08581353248047624],[127,276,64,0.08146687768662109],[127,276,65,0.08078292486858613],[127,276,66,0.08066721095717277],[127,276,67,0.0810854065909205],[127,276,68,0.08199260349253346],[127,276,69,0.08333342206042937],[127,276,70,0.08504239442902384],[127,276,71,0.08704739936101813],[127,276,72,0.08926967868840147],[127,276,73,0.0916182998478623],[127,276,74,0.09397286465372329],[127,276,75,0.09621964588790222],[127,276,76,0.09827192650201355],[127,276,77,0.1000688208215999],[127,276,78,0.09964783076799721],[127,276,79,0.09560969156249002],[127,277,64,0.07698086398109771],[127,277,65,0.07638036101288026],[127,277,66,0.07638340428948742],[127,277,67,0.07695408866416797],[127,277,68,0.07804499858983738],[127,277,69,0.07959723508049055],[127,277,70,0.08154071744238545],[127,277,71,0.0837975593682675],[127,277,72,0.08628199581659068],[127,277,73,0.08889535163650952],[127,277,74,0.09151394457318096],[127,277,75,0.09402309722997593],[127,277,76,0.09633463723888669],[127,277,77,0.09838577886699246],[127,277,78,0.10013807990363677],[127,277,79,0.10157662811906143],[127,278,64,0.0729314865323536],[127,278,65,0.0724120084762192],[127,278,66,0.07252975083875524],[127,278,67,0.07324735172930796],[127,278,68,0.07451504194985664],[127,278,69,0.0762705910515239],[127,278,70,0.07843952713196833],[127,278,71,0.0809384530602707],[127,278,72,0.08367488257169503],[127,278,73,0.08654269042265422],[127,278,74,0.08941501499300619],[127,278,75,0.09217623437324857],[127,278,76,0.09473673464071142],[127,278,77,0.09703184675957643],[127,278,78,0.09902087717889835],[127,278,79,0.10068635791798275],[127,279,64,0.06933560299955421],[127,279,65,0.06889451196074475],[127,279,66,0.06912249269809018],[127,279,67,0.06998085466324006],[127,279,68,0.07141764229803305],[127,279,69,0.0733675001741787],[127,279,70,0.07575181050936175],[127,279,71,0.07848194873459369],[127,279,72,0.08145902781807657],[127,279,73,0.08456980335136072],[127,279,74,0.08768436186988765],[127,279,75,0.09068615636349897],[127,279,76,0.09348415961570355],[127,279,77,0.09601185087413122],[127,279,78,0.09822631316932995],[127,279,79,0.1001075397993626],[127,280,64,0.06620778957212753],[127,280,65,0.06584226366294194],[127,280,66,0.0661756635364229],[127,280,67,0.06716810593233247],[127,280,68,0.06876562840023381],[127,280,69,0.07089997377978435],[127,280,70,0.07348864535517352],[127,280,71,0.0764381012745694],[127,280,72,0.07964340636915856],[127,280,73,0.08298456374026209],[127,280,74,0.08632875727933448],[127,280,75,0.08955854773361022],[127,280,76,0.09258153701982258],[127,280,77,0.09532939878002022],[127,280,78,0.0977570349983688],[127,280,79,0.09984193125065566],[127,281,64,0.06356008796259877],[127,281,65,0.0632671475844232],[127,281,66,0.06370083085671252],[127,281,67,0.06482020443675457],[127,281,68,0.06656948912142069],[127,281,69,0.06887776419853242],[127,281,70,0.07165894043324306],[127,281,71,0.07481489315859946],[127,281,72,0.07823502112122671],[127,281,73,0.08179297452329859],[127,281,74,0.08535320428325721],[127,281,75,0.08879742487694087],[127,281,76,0.09203192357375295],[127,281,77,0.09498662868275909],[127,281,78,0.09761431767608764],[127,281,79,0.09989001322868912],[127,282,64,0.06140194853278047],[127,282,65,0.06117848035994389],[127,282,66,0.06170703508955999],[127,282,67,0.06294577744816554],[127,282,68,0.0648373107822649],[127,282,69,0.06730830208509814],[127,282,70,0.07026937328606941],[127,282,71,0.07361817314161245],[127,282,72,0.07723884291486899],[127,282,73,0.08099910943985644],[127,282,74,0.08476087951032457],[127,282,75,0.08840508003312264],[127,282,76,0.09183675320881574],[127,282,77,0.09498415601439347],[127,282,78,0.09779801173687991],[127,282,79,0.10025093855403178],[127,283,64,0.059740651188632976],[127,283,65,0.05958343035881647],[127,283,66,0.060201207358996256],[127,283,67,0.06155139752612837],[127,283,68,0.06357519372431869],[127,283,69,0.06619711312336007],[127,283,70,0.06932480753884873],[127,283,71,0.07285207453154446],[127,283,72,0.07665823001490368],[127,283,73,0.08060553378381052],[127,283,74,0.08455355512689072],[127,283,75,0.08838250435177342],[127,283,76,0.0919962610049686],[127,283,77,0.09532149792981603],[127,283,78,0.09830696787208326],[127,283,79,0.10092295614245184],[127,284,64,0.05858071530854897],[127,284,65,0.0584864256773574],[127,284,66,0.059187576105533546],[127,284,67,0.06064098833660936],[127,284,68,0.06278665786998927],[127,284,69,0.06554722383516098],[127,284,70,0.06882769940426164],[127,284,71,0.07251842277743653],[127,284,72,0.07649433710321968],[127,284,73,0.08061271503210898],[127,284,74,0.08473101128015526],[127,284,75,0.08872880229953978],[127,284,76,0.09250889967229625],[127,284,77,0.09599649192483245],[127,284,78,0.09913845768813356],[127,284,79,0.10190283383703413],[127,285,64,0.057923615086126146],[127,285,65,0.057888867979692504],[127,285,66,0.058667379909440764],[127,285,67,0.06021553694936216],[127,285,68,0.06247235497717896],[127,285,69,0.06535887424863024],[127,285,70,0.06877781117378656],[127,285,71,0.07261645013306223],[127,285,72,0.07674583138692914],[127,285,73,0.08101874056854369],[127,285,74,0.08529075553579807],[127,285,75,0.0894409128553712],[127,285,76,0.09337106248633831],[127,285,77,0.09700502042522763],[127,285,78,0.10028789978639324],[127,285,79,0.10318558573028114],[127,286,64,0.05776774189395373],[127,286,65,0.05778909376606739],[127,286,66,0.0586388280748662],[127,286,67,0.06027305416335521],[127,286,68,0.06263002913147164],[127,286,69,0.06562947896582372],[127,286,70,0.06917217323338215],[127,286,71,0.07314275893500621],[127,286,72,0.07740885736985725],[127,286,73,0.08181928407278],[127,286,74,0.0862279909198197],[127,286,75,0.09051357916545832],[127,286,76,0.09457705443663084],[127,286,77,0.09834098322436202],[127,286,78,0.10174883319428646],[127,286,79,0.10476444619540948],[127,287,64,0.05810840962833641],[127,287,65,0.058182378939396484],[127,287,66,0.05909710478586444],[127,287,67,0.06080857863513617],[127,287,68,0.0632545212317358],[127,287,69,0.06635363237696479],[127,287,70,0.07000509034617325],[127,287,71,0.07409132924120765],[127,287,72,0.07847704605828532],[127,287,73,0.08300761640517368],[127,287,74,0.08753562850199137],[127,287,75,0.09193936276128367],[127,287,76,0.0961191079284221],[127,287,77,0.09999631442691709],[127,287,78,0.10351293521426524],[127,287,79,0.10663088820302052],[127,288,64,0.05893790300785756],[127,288,65,0.059060986642941016],[127,288,66,0.06003441680721355],[127,288,67,0.061814224783014904],[127,288,68,0.06433781744202605],[127,288,69,0.0675231579941728],[127,288,70,0.07126819217502761],[127,288,71,0.07545357080286086],[127,288,72,0.0799415685738466],[127,288,73,0.08457466096028815],[127,288,74,0.0892043444938444],[127,288,75,0.09370870231374201],[127,288,76,0.09798744301055129],[127,288,77,0.10196104387182736],[127,288,78,0.10557008366369774],[127,288,79,0.10877468589630596],[127,289,64,0.0602455688259429],[127,289,65,0.060414258369276],[127,289,66,0.061440084730180644],[127,289,67,0.06327927446722059],[127,289,68,0.06586914160993845],[127,289,69,0.0691272019048293],[127,289,70,0.07295052804517055],[127,289,71,0.0772184193698161],[127,289,72,0.08179123417371381],[127,289,73,0.08650909348924624],[127,289,74,0.09122268186132848],[127,289,75,0.09581001692345459],[127,289,76,0.10017037212961344],[127,289,77,0.10422340303451383],[127,289,78,0.10790846350579308],[127,289,79,0.11118402142490064],[127,290,64,0.06201795015731082],[127,290,65,0.062228748340435125],[127,290,66,0.06330067776312504],[127,290,67,0.06519031244592571],[127,290,68,0.06783509165131207],[127,290,69,0.07115237034447802],[127,290,70,0.0750387059467375],[127,290,71,0.07937247732938485],[127,290,72,0.08401263267798531],[127,290,73,0.08879748639082785],[127,290,74,0.09357719645205542],[127,290,75,0.09822985394719824],[127,290,76,0.1026544494103323],[127,290,77,0.1067699754083491],[127,290,78,0.11051471787149347],[127,290,79,0.1138456360373144],[127,291,64,0.06423896351828301],[127,291,65,0.06448840115920279],[127,291,66,0.06560019206690887],[127,291,67,0.06753140560710319],[127,291,68,0.07021981990124293],[127,291,69,0.07358291138922313],[127,291,70,0.0775170757772245],[127,291,71,0.08190019867850373],[127,291,72,0.08659032130422362],[127,291,73,0.0914244974712618],[127,291,74,0.0962526476370722],[127,291,75,0.10095308136038827],[127,291,76,0.1054246644620806],[127,291,77,0.10958589136528535],[127,291,78,0.11337414347226471],[127,291,79,0.1167450254318727],[127,292,64,0.06689011898108754],[127,292,65,0.0671747727316917],[127,292,66,0.0683202726352527],[127,292,67,0.07028432597635759],[127,292,68,0.07300525743155056],[127,292,69,0.07640094076776627],[127,292,70,0.08036795682398173],[127,292,71,0.08478411832940902],[127,292,72,0.08950705590929664],[127,292,73,0.09437310317286857],[127,292,74,0.09923223346732268],[127,292,75,0.10396312465578056],[127,292,76,0.108464680711711],[127,292,77,0.11265506749581589],[127,292,78,0.11647093040395484],[127,292,79,0.11986667936633899],[127,293,64,0.06995078324204462],[127,293,65,0.07026729446108865],[127,293,66,0.07144047871991965],[127,293,67,0.07342881750061142],[127,293,68,0.07617138233458087],[127,293,69,0.079586711792966],[127,293,70,0.08357190948663051],[127,293,71,0.08800512574869696],[127,293,72,0.09274406663839974],[127,293,73,0.0976248762714268],[127,293,74,0.1024978703446705],[127,293,75,0.10724224827825984],[127,293,76,0.11175711826256784],[127,293,77,0.11596049042813511],[127,293,78,0.11978844634158825],[127,293,79,0.12319436552608096],[127,294,64,0.07339848564360979],[127,294,65,0.0737435807125505],[127,294,66,0.07493859280070897],[127,294,67,0.07694290660762765],[127,294,68,0.07969653197332294],[127,294,69,0.08311892941289728],[127,294,70,0.08710805123938176],[127,294,71,0.09154278292974927],[127,294,72,0.09628137798123437],[127,294,73,0.10116030804224102],[127,294,74,0.10603051720745932],[127,294,75,0.11077188159569312],[127,294,76,0.11528388127965516],[127,294,77,0.11948454512647422],[127,294,78,0.12330956512506897],[127,294,79,0.1267114576507597],[127,295,64,0.07720926715043952],[127,295,65,0.07757977954941014],[127,295,66,0.0787909731004201],[127,295,67,0.08080325654153192],[127,295,68,0.08355775919800557],[127,295,69,0.08697510838157801],[127,295,70,0.09095441683342442],[127,295,71,0.0953756866986949],[127,295,72,0.10009817323551845],[127,295,73,0.10495917489508777],[127,295,74,0.10981054423078923],[127,295,75,0.11453298940602741],[127,295,76,0.11902652990114326],[127,295,77,0.12320938766879672],[127,295,78,0.1270170397359806],[127,295,79,0.13040130791972632],[127,296,64,0.08135807227924874],[127,296,65,0.08175096674046423],[127,296,66,0.08297294964455798],[127,296,67,0.08498556547410158],[127,296,68,0.08773123252893955],[127,296,69,0.09113197554912589],[127,296,70,0.09508836273914606],[127,296,71,0.09948187535366493],[127,296,72,0.10417320337758074],[127,296,73,0.10900094947778882],[127,296,74,0.11381814604125684],[127,296,75,0.11850648698037702],[127,296,76,0.1229666966759572],[127,296,77,0.1271173625035927],[127,296,78,0.1308939196652196],[127,296,79,0.13424766359586232],[127,297,64,0.085819183982702],[127,297,65,0.08623158303858514],[127,297,66,0.08745926386602237],[127,297,67,0.08946500839206778],[127,297,68,0.09219268030585342],[127,297,69,0.09556591627159572],[127,297,70,0.09948701582843611],[127,297,71,0.1038392796375977],[127,297,72,0.10848524034030188],[127,297,73,0.113265256248677],[127,297,74,0.11803379944642511],[127,297,75,0.12267369964236935],[127,297,76,0.1270865475277168],[127,297,77,0.13119146418604677],[127,297,78,0.13492401267173806],[127,297,79,0.13823512792814202],[127,298,64,0.09056670148710749],[127,298,65,0.09099591473042357],[127,298,66,0.09222455175454808],[127,298,67,0.09421672276019488],[127,298,68,0.09691787880348401],[127,298,69,0.10025346494025839],[127,298,70,0.10412776629683168],[127,298,71,0.10842621804434793],[127,298,72,0.11301357469814938],[127,298,73,0.11773237151770044],[127,298,74,0.12243876567876893],[127,298,75,0.12701686688349226],[127,298,76,0.13136928724477054],[127,298,77,0.13541584359331763],[127,298,78,0.13909239093213355],[127,298,79,0.14234966531265267],[127,299,64,0.09557506108407676],[127,299,65,0.09601861745736712],[127,299,66,0.09724387055106087],[127,299,67,0.09921633796030238],[127,299,68,0.10188318431359139],[127,299,69,0.10517183963048904],[127,299,70,0.10898880482567624],[127,299,71,0.11322193645827439],[127,299,72,0.11773855775948705],[127,299,73,0.12238376795634645],[127,299,74,0.12701563715427658],[127,299,75,0.13151969101462593],[127,299,76,0.1357997094965082],[127,299,77,0.1397763586191165],[127,299,78,0.1433859415812725],[127,299,79,0.1465791507122602],[127,300,64,0.10081959987613409],[127,300,65,0.10127528330773922],[127,300,66,0.102493268986933],[127,300,67,0.1044405485062167],[127,300,68,0.10706610919338055],[127,300,69,0.11029952087025019],[127,300,70,0.11404970398427411],[127,300,71,0.11820719212728659],[127,300,72,0.12264218806613594],[127,300,73,0.127202703576362],[127,300,74,0.13174892874568572],[127,300,75,0.13616793035373592],[127,300,76,0.14036479137592617],[127,300,77,0.1442611693475578],[127,300,78,0.1477939616439225],[127,300,79,0.15091396333489476],[127,301,64,0.10627716247614771],[127,301,65,0.10674305118010652],[127,301,66,0.10795040106800868],[127,301,67,0.10986773103451619],[127,301,68,0.11244594188019724],[127,301,69,0.11561687452803204],[127,301,70,0.11929204387190517],[127,301,71,0.12336488196921624],[127,301,72,0.12770874230005297],[127,301,73,0.13217485517713576],[127,301,74,0.13662571357021755],[127,301,75,0.14095003694959135],[127,301,76,0.14505433246831123],[127,301,77,0.14886137770614782],[127,301,78,0.15230879735725658],[127,301,79,0.1553476245703194],[127,302,64,0.11192675066073754],[127,302,65,0.11240126041785548],[127,302,66,0.11359518340355634],[127,302,67,0.1154786050712347],[127,302,68,0.11800441087266117],[127,302,69,0.12110681882042035],[127,302,70,0.12470008199986773],[127,302,71,0.12868071521168206],[127,302,72,0.1329254505972969],[127,302,73,0.13728899626191363],[127,302,74,0.14163630329198115],[127,302,75,0.1458578388416814],[127,302,76,0.14986163844621664],[127,302,77,0.1535717115980848],[127,302,78,0.1569265278844053],[127,302,79,0.15987748018555856],[127,303,64,0.11775021597761337],[127,303,65,0.11823214771498602],[127,303,66,0.11941049608009968],[127,303,67,0.12125693757446754],[127,303,68,0.12372639267818109],[127,303,69,0.12675553543922924],[127,303,70,0.13026146741348937],[127,303,71,0.13414393036538425],[127,303,72,0.13828321626921702],[127,303,73,0.1425377194227812],[127,303,74,0.14677497293898215],[127,303,75,0.15088726685626264],[127,303,76,0.15478424919065945],[127,303,77,0.15839125351380057],[127,303,78,0.16164769341898538],[127,303,79,0.16450542677891394],[127,304,64,0.12373299530674303],[127,304,65,0.1242215872930279],[127,304,66,0.12538292708003052],[127,304,67,0.12719029125278936],[127,304,68,0.12960066372676132],[127,304,69,0.13255322479811335],[127,304,70,0.13596799905401913],[127,304,71,0.13974805653074673],[127,304,72,0.1437773799307828],[127,304,73,0.14791820319433258],[127,304,74,0.15204073023465509],[127,304,75,0.15603912593845776],[127,304,76,0.15982471143846533],[127,304,77,0.16332421362166805],[127,304,78,0.16647806768052967],[127,304,79,0.16923868249249405],[127,305,64,0.12986488937549714],[127,305,65,0.1303598743492193],[127,305,66,0.13150356024514392],[127,305,67,0.1332708166596209],[127,305,68,0.1356206962512354],[127,305,69,0.13849490539879264],[127,305,70,0.14181642836053437],[127,305,71,0.14549171903803726],[127,305,72,0.14940852803618504],[127,305,73,0.15343302337615478],[127,305,74,0.15743812944404773],[127,305,75,0.16131991102053378],[127,305,76,0.1649913959558827],[127,305,77,0.168380747337999],[127,305,78,0.1714294748009427],[127,305,79,0.17409060198337895],[127,306,64,0.13614088422774542],[127,306,65,0.1366425517759297],[127,306,66,0.13776880678507747],[127,306,67,0.13949608806352648],[127,306,68,0.14178549813391206],[127,306,69,0.14458125731687516],[127,306,70,0.1478093061118476],[127,306,71,0.15137948942095117],[127,306,72,0.15518334582169407],[127,306,73,0.1590910088241148],[127,306,74,0.16297812973464515],[127,306,75,0.16674266742634614],[127,306,76,0.1702993592384579],[127,306,77,0.1735778173763205],[127,306,78,0.17652065060197059],[127,306,79,0.1790815356534124],[127,307,64,0.14256106752383332],[127,307,65,0.14307032323221788],[127,307,66,0.14418030723771474],[127,307,67,0.1458689867834752],[127,307,68,0.1480994706734757],[127,307,69,0.1508184482434493],[127,307,70,0.15395477160099313],[127,307,71,0.1574216338395717],[127,307,72,0.16111432260550096],[127,307,73,0.164906902994999],[127,307,74,0.16867771385650607],[127,307,75,0.17232656875850563],[127,307,76,0.17576988365005533],[127,307,77,0.1789386999619283],[127,307,78,0.1817767193044243],[127,307,79,0.18423828169491477],[127,308,64,0.1491113111855223],[127,308,65,0.14962954607424647],[127,308,66,0.15072508716034197],[127,308,67,0.15237737880390756],[127,308,68,0.1545514778371308],[127,308,69,0.1571964787811333],[127,308,70,0.16024407750252292],[127,308,71,0.16361074487839938],[127,308,72,0.16719544670618036],[127,308,73,0.1708761119176847],[127,308,74,0.1745337126693037],[127,308,75,0.17806987020325865],[127,308,76,0.18140263592032385],[127,308,77,0.18446444484247157],[127,308,78,0.18720006722058763],[127,308,79,0.18956449765367633],[127,309,64,0.15575907109176454],[127,309,65,0.15628795761313452],[127,309,66,0.15737121265996296],[127,309,67,0.15898970220019892],[127,309,68,0.16111036803533393],[127,309,69,0.16368464076435713],[127,309,70,0.16664698657878435],[127,309,71,0.16991707801624242],[127,309,72,0.17339748247463352],[127,309,73,0.17696992192828384],[127,309,74,0.18051796355565758],[127,309,75,0.18394500819483486],[127,309,76,0.18717070978591707],[127,309,77,0.19012886421981048],[127,309,78,0.19276528320193434],[127,309,79,0.19503559974880125],[127,310,64,0.16246928622622092],[127,310,65,0.16301070819793223],[127,310,66,0.1640840927403241],[127,310,67,0.1656716679783664],[127,310,68,0.16774219302774612],[127,310,69,0.1702493603324986],[127,310,70,0.17313032746667187],[127,310,71,0.17630788677040757],[127,310,72,0.1796881249207525],[127,310,73,0.18315648283926647],[127,310,74,0.18659910032317234],[127,310,75,0.18992114914877023],[127,310,76,0.1930438640653103],[127,310,77,0.1959023732985154],[127,310,78,0.19844350134432148],[127,310,79,0.20062349762005388],[127,311,64,0.16920557112184392],[127,311,65,0.16976156454536612],[127,311,66,0.17082769768166495],[127,311,67,0.1723874974894019],[127,311,68,0.17441146806244803],[127,311,69,0.17685548406632284],[127,311,70,0.17965930953209305],[127,311,71,0.1827487682947664],[127,311,72,0.18603337723139346],[127,311,73,0.1894022175296191],[127,311,74,0.1927439938064283],[127,311,75,0.19596565887632972],[127,311,76,0.19899001772260416],[127,311,77,0.2017535070382803],[127,311,78,0.2042039348259312],[127,311,79,0.20629814015056763],[127,312,64,0.17593082785836553],[127,312,65,0.1765035218824199],[127,312,66,0.17756516992357013],[127,312,67,0.17910053072984303],[127,312,68,0.18108177638589606],[127,312,69,0.18346687864615904],[127,312,70,0.186198116796184],[127,312,71,0.18920425090932846],[127,312,72,0.192398131489196],[127,312,73,0.19567239570156653],[127,312,74,0.1989183185847609],[127,312,75,0.2020446621456995],[127,312,76,0.20497580210700245],[127,312,77,0.20764946485393887],[127,312,78,0.2100144127923974],[127,312,79,0.2120280441986163],[127,313,64,0.18260927543254557],[127,313,65,0.1832007562933865],[127,313,66,0.1842606979726267],[127,313,67,0.18577502067819973],[127,313,68,0.18771748319149656],[127,313,69,0.1900480639423115],[127,313,70,0.19271146007472462],[127,313,71,0.19563926560439232],[127,313,72,0.19874756029659724],[127,313,73,0.20193244682742867],[127,313,74,0.20508778872061167],[127,313,75,0.20812420283074595],[127,313,76,0.2109676472672987],[127,313,77,0.21355712497432278],[127,313,78,0.21584232474828233],[127,313,79,0.21778117110481568],[127,314,64,0.18920635554581186],[127,314,65,0.1898185442268256],[127,314,66,0.19087944837824466],[127,314,67,0.1923760765279536],[127,314,68,0.19428368896663206],[127,314,69,0.19656417543229204],[127,314,70,0.1991645475527767],[127,314,71,0.2020191240232347],[127,314,72,0.20504710161367587],[127,314,73,0.2081479514989488],[127,314,74,0.21121815531953914],[127,314,75,0.2141702473196977],[127,314,76,0.21693179077810484],[127,314,77,0.2194430581796464],[127,314,78,0.22165463861820556],[127,314,79,0.22352494840284343],[127,315,64,0.19568765127038712],[127,315,65,0.19632225900683592],[127,315,66,0.19738663888462207],[127,315,67,0.1988688121415238],[127,315,68,0.2007454518047792],[127,315,69,0.20298025885274334],[127,315,70,0.2055224502156616],[127,315,71,0.20830895310237887],[127,315,72,0.21126196106346964],[127,315,73,0.2142842098950888],[127,315,74,0.2172748395478403],[127,315,75,0.22014838026558536],[127,315,76,0.22283403419800987],[127,315,77,0.22527334273285543],[127,315,78,0.22741777170721955],[127,315,79,0.22922619415561268],[127,316,64,0.20201938996327962],[127,316,65,0.20267788051797647],[127,316,66,0.20374805363001613],[127,316,67,0.20521886555974803],[127,316,68,0.20706831010169963],[127,316,69,0.20926179506854492],[127,316,70,0.21175062801665848],[127,316,71,0.21447422183335785],[127,316,72,0.2173576387837915],[127,316,73,0.22030676843327468],[127,316,74,0.22322345886084358],[127,316,75,0.22602433014364043],[127,316,76,0.22864026767227796],[127,316,77,0.23101408769934167],[127,316,78,0.23309811235663946],[127,316,79,0.23485163650564544],[127,317,64,0.20816900861115784],[127,317,65,0.20885256458990342],[127,317,66,0.20993061534716467],[127,317,67,0.21139297285080053],[127,317,68,0.213218856969525],[127,317,69,0.21537527408073767],[127,317,70,0.21781550264811675],[127,317,71,0.2204813121361894],[127,317,72,0.223300497941535],[127,317,73,0.2261819856751166],[127,317,74,0.2290303901281316],[127,317,75,0.2317645294128753],[127,317,76,0.23431702692486175],[127,317,77,0.23663198653081388],[127,317,78,0.23866256983919104],[127,317,79,0.24036845954971575],[127,318,64,0.21410572632020144],[127,318,65,0.21481521944493212],[127,318,66,0.2159029645798807],[127,318,67,0.21735954896102047],[127,318,68,0.21916532166723124],[127,318,69,0.22128877608932393],[127,318,70,0.22368503742415882],[127,318,71,0.22629809691250286],[127,318,72,0.2290583404980065],[127,318,73,0.2318776055498995],[127,318,74,0.23466334014137297],[127,318,75,0.23733668213119588],[127,318,76,0.2398320577878992],[127,318,77,0.24209487828955084],[127,318,78,0.2440791320213664],[127,318,79,0.24574485713556288],[127,319,64,0.21980112395092688],[127,319,65,0.22053708920852005],[127,319,66,0.22163604591581432],[127,319,67,0.22308927556764474],[127,319,68,0.22487815804749753],[127,319,69,0.22697255961093926],[127,319,70,0.22932932427496588],[127,319,71,0.23189452527830914],[127,319,72,0.23460099022527692],[127,319,73,0.23736333789583342],[127,319,74,0.24009192350475367],[127,319,75,0.24271033902403627],[127,319,76,0.24515488826868234],[127,319,77,0.24737231651302422],[127,319,78,0.24931743079297325],[127,319,79,0.25095059458066277]] diff --git a/pumpkin-world/assets/converted_cave_noodle_7_4.json b/pumpkin-world/assets/converted_cave_noodle_7_4.json new file mode 100644 index 000000000..f6c736cbd --- /dev/null +++ b/pumpkin-world/assets/converted_cave_noodle_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,64.0],[112,-64,65,64.0],[112,-64,66,64.0],[112,-64,67,64.0],[112,-64,68,64.0],[112,-64,69,64.0],[112,-64,70,64.0],[112,-64,71,64.0],[112,-64,72,64.0],[112,-64,73,64.0],[112,-64,74,64.0],[112,-64,75,64.0],[112,-64,76,64.0],[112,-64,77,64.0],[112,-64,78,64.0],[112,-64,79,64.0],[112,-63,64,64.0],[112,-63,65,64.0],[112,-63,66,64.0],[112,-63,67,64.0],[112,-63,68,64.0],[112,-63,69,64.0],[112,-63,70,64.0],[112,-63,71,64.0],[112,-63,72,64.0],[112,-63,73,64.0],[112,-63,74,64.0],[112,-63,75,64.0],[112,-63,76,64.0],[112,-63,77,64.0],[112,-63,78,64.0],[112,-63,79,64.0],[112,-62,64,64.0],[112,-62,65,64.0],[112,-62,66,64.0],[112,-62,67,64.0],[112,-62,68,64.0],[112,-62,69,64.0],[112,-62,70,64.0],[112,-62,71,64.0],[112,-62,72,64.0],[112,-62,73,64.0],[112,-62,74,64.0],[112,-62,75,64.0],[112,-62,76,64.0],[112,-62,77,64.0],[112,-62,78,64.0],[112,-62,79,64.0],[112,-61,64,64.0],[112,-61,65,64.0],[112,-61,66,64.0],[112,-61,67,64.0],[112,-61,68,64.0],[112,-61,69,64.0],[112,-61,70,64.0],[112,-61,71,64.0],[112,-61,72,64.0],[112,-61,73,64.0],[112,-61,74,64.0],[112,-61,75,64.0],[112,-61,76,64.0],[112,-61,77,64.0],[112,-61,78,64.0],[112,-61,79,64.0],[112,-60,64,64.0],[112,-60,65,64.0],[112,-60,66,64.0],[112,-60,67,64.0],[112,-60,68,64.0],[112,-60,69,64.0],[112,-60,70,64.0],[112,-60,71,64.0],[112,-60,72,64.0],[112,-60,73,64.0],[112,-60,74,64.0],[112,-60,75,64.0],[112,-60,76,64.0],[112,-60,77,64.0],[112,-60,78,64.0],[112,-60,79,64.0],[112,-59,64,64.0],[112,-59,65,64.0],[112,-59,66,64.0],[112,-59,67,64.0],[112,-59,68,64.0],[112,-59,69,64.0],[112,-59,70,64.0],[112,-59,71,64.0],[112,-59,72,64.0],[112,-59,73,64.0],[112,-59,74,64.0],[112,-59,75,64.0],[112,-59,76,64.0],[112,-59,77,64.0],[112,-59,78,64.0],[112,-59,79,64.0],[112,-58,64,64.0],[112,-58,65,64.0],[112,-58,66,64.0],[112,-58,67,64.0],[112,-58,68,64.0],[112,-58,69,64.0],[112,-58,70,64.0],[112,-58,71,64.0],[112,-58,72,64.0],[112,-58,73,64.0],[112,-58,74,64.0],[112,-58,75,64.0],[112,-58,76,64.0],[112,-58,77,64.0],[112,-58,78,64.0],[112,-58,79,64.0],[112,-57,64,64.0],[112,-57,65,64.0],[112,-57,66,64.0],[112,-57,67,64.0],[112,-57,68,64.0],[112,-57,69,64.0],[112,-57,70,64.0],[112,-57,71,64.0],[112,-57,72,64.0],[112,-57,73,64.0],[112,-57,74,64.0],[112,-57,75,64.0],[112,-57,76,64.0],[112,-57,77,64.0],[112,-57,78,64.0],[112,-57,79,64.0],[112,-56,64,64.0],[112,-56,65,64.0],[112,-56,66,64.0],[112,-56,67,64.0],[112,-56,68,64.0],[112,-56,69,64.0],[112,-56,70,64.0],[112,-56,71,64.0],[112,-56,72,64.0],[112,-56,73,64.0],[112,-56,74,64.0],[112,-56,75,64.0],[112,-56,76,64.0],[112,-56,77,64.0],[112,-56,78,64.0],[112,-56,79,64.0],[112,-55,64,64.0],[112,-55,65,64.0],[112,-55,66,64.0],[112,-55,67,64.0],[112,-55,68,64.0],[112,-55,69,64.0],[112,-55,70,64.0],[112,-55,71,64.0],[112,-55,72,64.0],[112,-55,73,64.0],[112,-55,74,64.0],[112,-55,75,64.0],[112,-55,76,64.0],[112,-55,77,64.0],[112,-55,78,64.0],[112,-55,79,64.0],[112,-54,64,64.0],[112,-54,65,64.0],[112,-54,66,64.0],[112,-54,67,64.0],[112,-54,68,64.0],[112,-54,69,64.0],[112,-54,70,64.0],[112,-54,71,64.0],[112,-54,72,64.0],[112,-54,73,64.0],[112,-54,74,64.0],[112,-54,75,64.0],[112,-54,76,64.0],[112,-54,77,64.0],[112,-54,78,64.0],[112,-54,79,64.0],[112,-53,64,64.0],[112,-53,65,64.0],[112,-53,66,64.0],[112,-53,67,64.0],[112,-53,68,64.0],[112,-53,69,64.0],[112,-53,70,64.0],[112,-53,71,64.0],[112,-53,72,64.0],[112,-53,73,64.0],[112,-53,74,64.0],[112,-53,75,64.0],[112,-53,76,64.0],[112,-53,77,64.0],[112,-53,78,64.0],[112,-53,79,64.0],[112,-52,64,64.0],[112,-52,65,64.0],[112,-52,66,64.0],[112,-52,67,64.0],[112,-52,68,64.0],[112,-52,69,64.0],[112,-52,70,64.0],[112,-52,71,64.0],[112,-52,72,64.0],[112,-52,73,64.0],[112,-52,74,64.0],[112,-52,75,64.0],[112,-52,76,64.0],[112,-52,77,64.0],[112,-52,78,64.0],[112,-52,79,64.0],[112,-51,64,64.0],[112,-51,65,64.0],[112,-51,66,64.0],[112,-51,67,64.0],[112,-51,68,64.0],[112,-51,69,64.0],[112,-51,70,64.0],[112,-51,71,64.0],[112,-51,72,64.0],[112,-51,73,64.0],[112,-51,74,64.0],[112,-51,75,64.0],[112,-51,76,64.0],[112,-51,77,64.0],[112,-51,78,64.0],[112,-51,79,64.0],[112,-50,64,64.0],[112,-50,65,64.0],[112,-50,66,64.0],[112,-50,67,64.0],[112,-50,68,64.0],[112,-50,69,64.0],[112,-50,70,64.0],[112,-50,71,64.0],[112,-50,72,64.0],[112,-50,73,64.0],[112,-50,74,64.0],[112,-50,75,64.0],[112,-50,76,64.0],[112,-50,77,64.0],[112,-50,78,64.0],[112,-50,79,64.0],[112,-49,64,64.0],[112,-49,65,64.0],[112,-49,66,64.0],[112,-49,67,64.0],[112,-49,68,64.0],[112,-49,69,64.0],[112,-49,70,64.0],[112,-49,71,64.0],[112,-49,72,64.0],[112,-49,73,64.0],[112,-49,74,64.0],[112,-49,75,64.0],[112,-49,76,64.0],[112,-49,77,64.0],[112,-49,78,64.0],[112,-49,79,64.0],[112,-48,64,64.0],[112,-48,65,64.0],[112,-48,66,64.0],[112,-48,67,64.0],[112,-48,68,64.0],[112,-48,69,64.0],[112,-48,70,64.0],[112,-48,71,64.0],[112,-48,72,64.0],[112,-48,73,64.0],[112,-48,74,64.0],[112,-48,75,64.0],[112,-48,76,64.0],[112,-48,77,64.0],[112,-48,78,64.0],[112,-48,79,64.0],[112,-47,64,64.0],[112,-47,65,64.0],[112,-47,66,64.0],[112,-47,67,64.0],[112,-47,68,64.0],[112,-47,69,64.0],[112,-47,70,64.0],[112,-47,71,64.0],[112,-47,72,64.0],[112,-47,73,64.0],[112,-47,74,64.0],[112,-47,75,64.0],[112,-47,76,64.0],[112,-47,77,64.0],[112,-47,78,64.0],[112,-47,79,64.0],[112,-46,64,64.0],[112,-46,65,64.0],[112,-46,66,64.0],[112,-46,67,64.0],[112,-46,68,64.0],[112,-46,69,64.0],[112,-46,70,64.0],[112,-46,71,64.0],[112,-46,72,64.0],[112,-46,73,64.0],[112,-46,74,64.0],[112,-46,75,64.0],[112,-46,76,64.0],[112,-46,77,64.0],[112,-46,78,64.0],[112,-46,79,64.0],[112,-45,64,64.0],[112,-45,65,64.0],[112,-45,66,64.0],[112,-45,67,64.0],[112,-45,68,64.0],[112,-45,69,64.0],[112,-45,70,64.0],[112,-45,71,64.0],[112,-45,72,64.0],[112,-45,73,64.0],[112,-45,74,64.0],[112,-45,75,64.0],[112,-45,76,64.0],[112,-45,77,64.0],[112,-45,78,64.0],[112,-45,79,64.0],[112,-44,64,64.0],[112,-44,65,64.0],[112,-44,66,64.0],[112,-44,67,64.0],[112,-44,68,64.0],[112,-44,69,64.0],[112,-44,70,64.0],[112,-44,71,64.0],[112,-44,72,64.0],[112,-44,73,64.0],[112,-44,74,64.0],[112,-44,75,64.0],[112,-44,76,64.0],[112,-44,77,64.0],[112,-44,78,64.0],[112,-44,79,64.0],[112,-43,64,64.0],[112,-43,65,64.0],[112,-43,66,64.0],[112,-43,67,64.0],[112,-43,68,64.0],[112,-43,69,64.0],[112,-43,70,64.0],[112,-43,71,64.0],[112,-43,72,64.0],[112,-43,73,64.0],[112,-43,74,64.0],[112,-43,75,64.0],[112,-43,76,64.0],[112,-43,77,64.0],[112,-43,78,64.0],[112,-43,79,64.0],[112,-42,64,64.0],[112,-42,65,64.0],[112,-42,66,64.0],[112,-42,67,64.0],[112,-42,68,64.0],[112,-42,69,64.0],[112,-42,70,64.0],[112,-42,71,64.0],[112,-42,72,64.0],[112,-42,73,64.0],[112,-42,74,64.0],[112,-42,75,64.0],[112,-42,76,64.0],[112,-42,77,64.0],[112,-42,78,64.0],[112,-42,79,64.0],[112,-41,64,64.0],[112,-41,65,64.0],[112,-41,66,64.0],[112,-41,67,64.0],[112,-41,68,64.0],[112,-41,69,64.0],[112,-41,70,64.0],[112,-41,71,64.0],[112,-41,72,64.0],[112,-41,73,64.0],[112,-41,74,64.0],[112,-41,75,64.0],[112,-41,76,64.0],[112,-41,77,64.0],[112,-41,78,64.0],[112,-41,79,64.0],[112,-40,64,64.0],[112,-40,65,64.0],[112,-40,66,64.0],[112,-40,67,64.0],[112,-40,68,64.0],[112,-40,69,64.0],[112,-40,70,64.0],[112,-40,71,64.0],[112,-40,72,64.0],[112,-40,73,64.0],[112,-40,74,64.0],[112,-40,75,64.0],[112,-40,76,64.0],[112,-40,77,64.0],[112,-40,78,64.0],[112,-40,79,64.0],[112,-39,64,64.0],[112,-39,65,64.0],[112,-39,66,64.0],[112,-39,67,64.0],[112,-39,68,64.0],[112,-39,69,64.0],[112,-39,70,64.0],[112,-39,71,64.0],[112,-39,72,64.0],[112,-39,73,64.0],[112,-39,74,64.0],[112,-39,75,64.0],[112,-39,76,64.0],[112,-39,77,64.0],[112,-39,78,64.0],[112,-39,79,64.0],[112,-38,64,64.0],[112,-38,65,64.0],[112,-38,66,64.0],[112,-38,67,64.0],[112,-38,68,64.0],[112,-38,69,64.0],[112,-38,70,64.0],[112,-38,71,64.0],[112,-38,72,64.0],[112,-38,73,64.0],[112,-38,74,64.0],[112,-38,75,64.0],[112,-38,76,64.0],[112,-38,77,64.0],[112,-38,78,64.0],[112,-38,79,64.0],[112,-37,64,64.0],[112,-37,65,64.0],[112,-37,66,64.0],[112,-37,67,64.0],[112,-37,68,64.0],[112,-37,69,64.0],[112,-37,70,64.0],[112,-37,71,64.0],[112,-37,72,64.0],[112,-37,73,64.0],[112,-37,74,64.0],[112,-37,75,64.0],[112,-37,76,64.0],[112,-37,77,64.0],[112,-37,78,64.0],[112,-37,79,64.0],[112,-36,64,64.0],[112,-36,65,64.0],[112,-36,66,64.0],[112,-36,67,64.0],[112,-36,68,64.0],[112,-36,69,64.0],[112,-36,70,64.0],[112,-36,71,64.0],[112,-36,72,64.0],[112,-36,73,64.0],[112,-36,74,64.0],[112,-36,75,64.0],[112,-36,76,64.0],[112,-36,77,64.0],[112,-36,78,64.0],[112,-36,79,64.0],[112,-35,64,64.0],[112,-35,65,64.0],[112,-35,66,64.0],[112,-35,67,64.0],[112,-35,68,64.0],[112,-35,69,64.0],[112,-35,70,64.0],[112,-35,71,64.0],[112,-35,72,64.0],[112,-35,73,64.0],[112,-35,74,64.0],[112,-35,75,64.0],[112,-35,76,64.0],[112,-35,77,64.0],[112,-35,78,64.0],[112,-35,79,64.0],[112,-34,64,64.0],[112,-34,65,64.0],[112,-34,66,64.0],[112,-34,67,64.0],[112,-34,68,64.0],[112,-34,69,64.0],[112,-34,70,64.0],[112,-34,71,64.0],[112,-34,72,64.0],[112,-34,73,64.0],[112,-34,74,64.0],[112,-34,75,64.0],[112,-34,76,64.0],[112,-34,77,64.0],[112,-34,78,64.0],[112,-34,79,64.0],[112,-33,64,64.0],[112,-33,65,64.0],[112,-33,66,64.0],[112,-33,67,64.0],[112,-33,68,64.0],[112,-33,69,64.0],[112,-33,70,64.0],[112,-33,71,64.0],[112,-33,72,64.0],[112,-33,73,64.0],[112,-33,74,64.0],[112,-33,75,64.0],[112,-33,76,64.0],[112,-33,77,64.0],[112,-33,78,64.0],[112,-33,79,64.0],[112,-32,64,64.0],[112,-32,65,64.0],[112,-32,66,64.0],[112,-32,67,64.0],[112,-32,68,64.0],[112,-32,69,64.0],[112,-32,70,64.0],[112,-32,71,64.0],[112,-32,72,64.0],[112,-32,73,64.0],[112,-32,74,64.0],[112,-32,75,64.0],[112,-32,76,64.0],[112,-32,77,64.0],[112,-32,78,64.0],[112,-32,79,64.0],[112,-31,64,64.0],[112,-31,65,64.0],[112,-31,66,64.0],[112,-31,67,64.0],[112,-31,68,64.0],[112,-31,69,64.0],[112,-31,70,64.0],[112,-31,71,64.0],[112,-31,72,64.0],[112,-31,73,64.0],[112,-31,74,64.0],[112,-31,75,64.0],[112,-31,76,64.0],[112,-31,77,64.0],[112,-31,78,64.0],[112,-31,79,64.0],[112,-30,64,64.0],[112,-30,65,64.0],[112,-30,66,64.0],[112,-30,67,64.0],[112,-30,68,64.0],[112,-30,69,64.0],[112,-30,70,64.0],[112,-30,71,64.0],[112,-30,72,64.0],[112,-30,73,64.0],[112,-30,74,64.0],[112,-30,75,64.0],[112,-30,76,64.0],[112,-30,77,64.0],[112,-30,78,64.0],[112,-30,79,64.0],[112,-29,64,64.0],[112,-29,65,64.0],[112,-29,66,64.0],[112,-29,67,64.0],[112,-29,68,64.0],[112,-29,69,64.0],[112,-29,70,64.0],[112,-29,71,64.0],[112,-29,72,64.0],[112,-29,73,64.0],[112,-29,74,64.0],[112,-29,75,64.0],[112,-29,76,64.0],[112,-29,77,64.0],[112,-29,78,64.0],[112,-29,79,64.0],[112,-28,64,64.0],[112,-28,65,64.0],[112,-28,66,64.0],[112,-28,67,64.0],[112,-28,68,64.0],[112,-28,69,64.0],[112,-28,70,64.0],[112,-28,71,64.0],[112,-28,72,64.0],[112,-28,73,64.0],[112,-28,74,64.0],[112,-28,75,64.0],[112,-28,76,64.0],[112,-28,77,64.0],[112,-28,78,64.0],[112,-28,79,64.0],[112,-27,64,64.0],[112,-27,65,64.0],[112,-27,66,64.0],[112,-27,67,64.0],[112,-27,68,64.0],[112,-27,69,64.0],[112,-27,70,64.0],[112,-27,71,64.0],[112,-27,72,64.0],[112,-27,73,64.0],[112,-27,74,64.0],[112,-27,75,64.0],[112,-27,76,64.0],[112,-27,77,64.0],[112,-27,78,64.0],[112,-27,79,64.0],[112,-26,64,64.0],[112,-26,65,64.0],[112,-26,66,64.0],[112,-26,67,64.0],[112,-26,68,64.0],[112,-26,69,64.0],[112,-26,70,64.0],[112,-26,71,64.0],[112,-26,72,64.0],[112,-26,73,64.0],[112,-26,74,64.0],[112,-26,75,64.0],[112,-26,76,64.0],[112,-26,77,64.0],[112,-26,78,64.0],[112,-26,79,64.0],[112,-25,64,64.0],[112,-25,65,64.0],[112,-25,66,64.0],[112,-25,67,64.0],[112,-25,68,64.0],[112,-25,69,64.0],[112,-25,70,64.0],[112,-25,71,64.0],[112,-25,72,64.0],[112,-25,73,64.0],[112,-25,74,64.0],[112,-25,75,64.0],[112,-25,76,64.0],[112,-25,77,64.0],[112,-25,78,64.0],[112,-25,79,64.0],[112,-24,64,64.0],[112,-24,65,64.0],[112,-24,66,64.0],[112,-24,67,64.0],[112,-24,68,64.0],[112,-24,69,64.0],[112,-24,70,64.0],[112,-24,71,64.0],[112,-24,72,64.0],[112,-24,73,64.0],[112,-24,74,64.0],[112,-24,75,64.0],[112,-24,76,64.0],[112,-24,77,64.0],[112,-24,78,64.0],[112,-24,79,64.0],[112,-23,64,64.0],[112,-23,65,64.0],[112,-23,66,64.0],[112,-23,67,64.0],[112,-23,68,64.0],[112,-23,69,64.0],[112,-23,70,64.0],[112,-23,71,64.0],[112,-23,72,64.0],[112,-23,73,64.0],[112,-23,74,64.0],[112,-23,75,64.0],[112,-23,76,64.0],[112,-23,77,64.0],[112,-23,78,64.0],[112,-23,79,64.0],[112,-22,64,64.0],[112,-22,65,64.0],[112,-22,66,64.0],[112,-22,67,64.0],[112,-22,68,64.0],[112,-22,69,64.0],[112,-22,70,64.0],[112,-22,71,64.0],[112,-22,72,64.0],[112,-22,73,64.0],[112,-22,74,64.0],[112,-22,75,64.0],[112,-22,76,64.0],[112,-22,77,64.0],[112,-22,78,64.0],[112,-22,79,64.0],[112,-21,64,64.0],[112,-21,65,64.0],[112,-21,66,64.0],[112,-21,67,64.0],[112,-21,68,64.0],[112,-21,69,64.0],[112,-21,70,64.0],[112,-21,71,64.0],[112,-21,72,64.0],[112,-21,73,64.0],[112,-21,74,64.0],[112,-21,75,64.0],[112,-21,76,64.0],[112,-21,77,64.0],[112,-21,78,64.0],[112,-21,79,64.0],[112,-20,64,64.0],[112,-20,65,64.0],[112,-20,66,64.0],[112,-20,67,64.0],[112,-20,68,64.0],[112,-20,69,64.0],[112,-20,70,64.0],[112,-20,71,64.0],[112,-20,72,64.0],[112,-20,73,64.0],[112,-20,74,64.0],[112,-20,75,64.0],[112,-20,76,64.0],[112,-20,77,64.0],[112,-20,78,64.0],[112,-20,79,64.0],[112,-19,64,64.0],[112,-19,65,64.0],[112,-19,66,64.0],[112,-19,67,64.0],[112,-19,68,64.0],[112,-19,69,64.0],[112,-19,70,64.0],[112,-19,71,64.0],[112,-19,72,64.0],[112,-19,73,64.0],[112,-19,74,64.0],[112,-19,75,64.0],[112,-19,76,64.0],[112,-19,77,64.0],[112,-19,78,64.0],[112,-19,79,64.0],[112,-18,64,64.0],[112,-18,65,64.0],[112,-18,66,64.0],[112,-18,67,64.0],[112,-18,68,64.0],[112,-18,69,64.0],[112,-18,70,64.0],[112,-18,71,64.0],[112,-18,72,64.0],[112,-18,73,64.0],[112,-18,74,64.0],[112,-18,75,64.0],[112,-18,76,64.0],[112,-18,77,64.0],[112,-18,78,64.0],[112,-18,79,64.0],[112,-17,64,64.0],[112,-17,65,64.0],[112,-17,66,64.0],[112,-17,67,64.0],[112,-17,68,64.0],[112,-17,69,64.0],[112,-17,70,64.0],[112,-17,71,64.0],[112,-17,72,64.0],[112,-17,73,64.0],[112,-17,74,64.0],[112,-17,75,64.0],[112,-17,76,64.0],[112,-17,77,64.0],[112,-17,78,64.0],[112,-17,79,64.0],[112,-16,64,64.0],[112,-16,65,64.0],[112,-16,66,64.0],[112,-16,67,64.0],[112,-16,68,64.0],[112,-16,69,64.0],[112,-16,70,64.0],[112,-16,71,64.0],[112,-16,72,64.0],[112,-16,73,64.0],[112,-16,74,64.0],[112,-16,75,64.0],[112,-16,76,64.0],[112,-16,77,64.0],[112,-16,78,64.0],[112,-16,79,64.0],[112,-15,64,64.0],[112,-15,65,64.0],[112,-15,66,64.0],[112,-15,67,64.0],[112,-15,68,64.0],[112,-15,69,64.0],[112,-15,70,64.0],[112,-15,71,64.0],[112,-15,72,64.0],[112,-15,73,64.0],[112,-15,74,64.0],[112,-15,75,64.0],[112,-15,76,64.0],[112,-15,77,64.0],[112,-15,78,64.0],[112,-15,79,64.0],[112,-14,64,64.0],[112,-14,65,64.0],[112,-14,66,64.0],[112,-14,67,64.0],[112,-14,68,64.0],[112,-14,69,64.0],[112,-14,70,64.0],[112,-14,71,64.0],[112,-14,72,64.0],[112,-14,73,64.0],[112,-14,74,64.0],[112,-14,75,64.0],[112,-14,76,64.0],[112,-14,77,64.0],[112,-14,78,64.0],[112,-14,79,64.0],[112,-13,64,64.0],[112,-13,65,64.0],[112,-13,66,64.0],[112,-13,67,64.0],[112,-13,68,64.0],[112,-13,69,64.0],[112,-13,70,64.0],[112,-13,71,64.0],[112,-13,72,64.0],[112,-13,73,64.0],[112,-13,74,64.0],[112,-13,75,64.0],[112,-13,76,64.0],[112,-13,77,64.0],[112,-13,78,64.0],[112,-13,79,64.0],[112,-12,64,64.0],[112,-12,65,64.0],[112,-12,66,64.0],[112,-12,67,64.0],[112,-12,68,64.0],[112,-12,69,64.0],[112,-12,70,64.0],[112,-12,71,64.0],[112,-12,72,64.0],[112,-12,73,64.0],[112,-12,74,64.0],[112,-12,75,64.0],[112,-12,76,64.0],[112,-12,77,64.0],[112,-12,78,64.0],[112,-12,79,64.0],[112,-11,64,64.0],[112,-11,65,64.0],[112,-11,66,64.0],[112,-11,67,64.0],[112,-11,68,64.0],[112,-11,69,64.0],[112,-11,70,64.0],[112,-11,71,64.0],[112,-11,72,64.0],[112,-11,73,64.0],[112,-11,74,64.0],[112,-11,75,64.0],[112,-11,76,64.0],[112,-11,77,64.0],[112,-11,78,64.0],[112,-11,79,64.0],[112,-10,64,64.0],[112,-10,65,64.0],[112,-10,66,64.0],[112,-10,67,64.0],[112,-10,68,64.0],[112,-10,69,64.0],[112,-10,70,64.0],[112,-10,71,64.0],[112,-10,72,64.0],[112,-10,73,64.0],[112,-10,74,64.0],[112,-10,75,64.0],[112,-10,76,64.0],[112,-10,77,64.0],[112,-10,78,64.0],[112,-10,79,64.0],[112,-9,64,64.0],[112,-9,65,64.0],[112,-9,66,64.0],[112,-9,67,64.0],[112,-9,68,64.0],[112,-9,69,64.0],[112,-9,70,64.0],[112,-9,71,64.0],[112,-9,72,64.0],[112,-9,73,64.0],[112,-9,74,64.0],[112,-9,75,64.0],[112,-9,76,64.0],[112,-9,77,64.0],[112,-9,78,64.0],[112,-9,79,64.0],[112,-8,64,64.0],[112,-8,65,64.0],[112,-8,66,64.0],[112,-8,67,64.0],[112,-8,68,64.0],[112,-8,69,64.0],[112,-8,70,64.0],[112,-8,71,64.0],[112,-8,72,64.0],[112,-8,73,64.0],[112,-8,74,64.0],[112,-8,75,64.0],[112,-8,76,64.0],[112,-8,77,64.0],[112,-8,78,64.0],[112,-8,79,64.0],[112,-7,64,64.0],[112,-7,65,64.0],[112,-7,66,64.0],[112,-7,67,64.0],[112,-7,68,64.0],[112,-7,69,64.0],[112,-7,70,64.0],[112,-7,71,64.0],[112,-7,72,64.0],[112,-7,73,64.0],[112,-7,74,64.0],[112,-7,75,64.0],[112,-7,76,64.0],[112,-7,77,64.0],[112,-7,78,64.0],[112,-7,79,64.0],[112,-6,64,64.0],[112,-6,65,64.0],[112,-6,66,64.0],[112,-6,67,64.0],[112,-6,68,64.0],[112,-6,69,64.0],[112,-6,70,64.0],[112,-6,71,64.0],[112,-6,72,64.0],[112,-6,73,64.0],[112,-6,74,64.0],[112,-6,75,64.0],[112,-6,76,64.0],[112,-6,77,64.0],[112,-6,78,64.0],[112,-6,79,64.0],[112,-5,64,64.0],[112,-5,65,64.0],[112,-5,66,64.0],[112,-5,67,64.0],[112,-5,68,64.0],[112,-5,69,64.0],[112,-5,70,64.0],[112,-5,71,64.0],[112,-5,72,64.0],[112,-5,73,64.0],[112,-5,74,64.0],[112,-5,75,64.0],[112,-5,76,64.0],[112,-5,77,64.0],[112,-5,78,64.0],[112,-5,79,64.0],[112,-4,64,64.0],[112,-4,65,64.0],[112,-4,66,64.0],[112,-4,67,64.0],[112,-4,68,64.0],[112,-4,69,64.0],[112,-4,70,64.0],[112,-4,71,64.0],[112,-4,72,64.0],[112,-4,73,64.0],[112,-4,74,64.0],[112,-4,75,64.0],[112,-4,76,64.0],[112,-4,77,64.0],[112,-4,78,64.0],[112,-4,79,64.0],[112,-3,64,64.0],[112,-3,65,64.0],[112,-3,66,64.0],[112,-3,67,64.0],[112,-3,68,64.0],[112,-3,69,64.0],[112,-3,70,64.0],[112,-3,71,64.0],[112,-3,72,64.0],[112,-3,73,64.0],[112,-3,74,64.0],[112,-3,75,64.0],[112,-3,76,64.0],[112,-3,77,64.0],[112,-3,78,64.0],[112,-3,79,64.0],[112,-2,64,64.0],[112,-2,65,64.0],[112,-2,66,64.0],[112,-2,67,64.0],[112,-2,68,64.0],[112,-2,69,64.0],[112,-2,70,64.0],[112,-2,71,64.0],[112,-2,72,64.0],[112,-2,73,64.0],[112,-2,74,64.0],[112,-2,75,64.0],[112,-2,76,64.0],[112,-2,77,64.0],[112,-2,78,64.0],[112,-2,79,64.0],[112,-1,64,64.0],[112,-1,65,64.0],[112,-1,66,64.0],[112,-1,67,64.0],[112,-1,68,64.0],[112,-1,69,64.0],[112,-1,70,64.0],[112,-1,71,64.0],[112,-1,72,64.0],[112,-1,73,64.0],[112,-1,74,64.0],[112,-1,75,64.0],[112,-1,76,64.0],[112,-1,77,64.0],[112,-1,78,64.0],[112,-1,79,64.0],[112,0,64,64.0],[112,0,65,64.0],[112,0,66,64.0],[112,0,67,64.0],[112,0,68,64.0],[112,0,69,64.0],[112,0,70,64.0],[112,0,71,64.0],[112,0,72,64.0],[112,0,73,64.0],[112,0,74,64.0],[112,0,75,64.0],[112,0,76,64.0],[112,0,77,64.0],[112,0,78,64.0],[112,0,79,64.0],[112,1,64,64.0],[112,1,65,64.0],[112,1,66,64.0],[112,1,67,64.0],[112,1,68,64.0],[112,1,69,64.0],[112,1,70,64.0],[112,1,71,64.0],[112,1,72,64.0],[112,1,73,64.0],[112,1,74,64.0],[112,1,75,64.0],[112,1,76,64.0],[112,1,77,64.0],[112,1,78,64.0],[112,1,79,64.0],[112,2,64,64.0],[112,2,65,64.0],[112,2,66,64.0],[112,2,67,64.0],[112,2,68,64.0],[112,2,69,64.0],[112,2,70,64.0],[112,2,71,64.0],[112,2,72,64.0],[112,2,73,64.0],[112,2,74,64.0],[112,2,75,64.0],[112,2,76,64.0],[112,2,77,64.0],[112,2,78,64.0],[112,2,79,64.0],[112,3,64,64.0],[112,3,65,64.0],[112,3,66,64.0],[112,3,67,64.0],[112,3,68,64.0],[112,3,69,64.0],[112,3,70,64.0],[112,3,71,64.0],[112,3,72,64.0],[112,3,73,64.0],[112,3,74,64.0],[112,3,75,64.0],[112,3,76,64.0],[112,3,77,64.0],[112,3,78,64.0],[112,3,79,64.0],[112,4,64,64.0],[112,4,65,64.0],[112,4,66,64.0],[112,4,67,64.0],[112,4,68,64.0],[112,4,69,64.0],[112,4,70,64.0],[112,4,71,64.0],[112,4,72,64.0],[112,4,73,64.0],[112,4,74,64.0],[112,4,75,64.0],[112,4,76,64.0],[112,4,77,64.0],[112,4,78,64.0],[112,4,79,64.0],[112,5,64,64.0],[112,5,65,64.0],[112,5,66,64.0],[112,5,67,64.0],[112,5,68,64.0],[112,5,69,64.0],[112,5,70,64.0],[112,5,71,64.0],[112,5,72,64.0],[112,5,73,64.0],[112,5,74,64.0],[112,5,75,64.0],[112,5,76,64.0],[112,5,77,64.0],[112,5,78,64.0],[112,5,79,64.0],[112,6,64,64.0],[112,6,65,64.0],[112,6,66,64.0],[112,6,67,64.0],[112,6,68,64.0],[112,6,69,64.0],[112,6,70,64.0],[112,6,71,64.0],[112,6,72,64.0],[112,6,73,64.0],[112,6,74,64.0],[112,6,75,64.0],[112,6,76,64.0],[112,6,77,64.0],[112,6,78,64.0],[112,6,79,64.0],[112,7,64,64.0],[112,7,65,64.0],[112,7,66,64.0],[112,7,67,64.0],[112,7,68,64.0],[112,7,69,64.0],[112,7,70,64.0],[112,7,71,64.0],[112,7,72,64.0],[112,7,73,64.0],[112,7,74,64.0],[112,7,75,64.0],[112,7,76,64.0],[112,7,77,64.0],[112,7,78,64.0],[112,7,79,64.0],[112,8,64,64.0],[112,8,65,64.0],[112,8,66,64.0],[112,8,67,64.0],[112,8,68,64.0],[112,8,69,64.0],[112,8,70,64.0],[112,8,71,64.0],[112,8,72,64.0],[112,8,73,64.0],[112,8,74,64.0],[112,8,75,64.0],[112,8,76,64.0],[112,8,77,64.0],[112,8,78,64.0],[112,8,79,64.0],[112,9,64,64.0],[112,9,65,64.0],[112,9,66,64.0],[112,9,67,64.0],[112,9,68,64.0],[112,9,69,64.0],[112,9,70,64.0],[112,9,71,64.0],[112,9,72,64.0],[112,9,73,64.0],[112,9,74,64.0],[112,9,75,64.0],[112,9,76,64.0],[112,9,77,64.0],[112,9,78,64.0],[112,9,79,64.0],[112,10,64,64.0],[112,10,65,64.0],[112,10,66,64.0],[112,10,67,64.0],[112,10,68,64.0],[112,10,69,64.0],[112,10,70,64.0],[112,10,71,64.0],[112,10,72,64.0],[112,10,73,64.0],[112,10,74,64.0],[112,10,75,64.0],[112,10,76,64.0],[112,10,77,64.0],[112,10,78,64.0],[112,10,79,64.0],[112,11,64,64.0],[112,11,65,64.0],[112,11,66,64.0],[112,11,67,64.0],[112,11,68,64.0],[112,11,69,64.0],[112,11,70,64.0],[112,11,71,64.0],[112,11,72,64.0],[112,11,73,64.0],[112,11,74,64.0],[112,11,75,64.0],[112,11,76,64.0],[112,11,77,64.0],[112,11,78,64.0],[112,11,79,64.0],[112,12,64,64.0],[112,12,65,64.0],[112,12,66,64.0],[112,12,67,64.0],[112,12,68,64.0],[112,12,69,64.0],[112,12,70,64.0],[112,12,71,64.0],[112,12,72,64.0],[112,12,73,64.0],[112,12,74,64.0],[112,12,75,64.0],[112,12,76,64.0],[112,12,77,64.0],[112,12,78,64.0],[112,12,79,64.0],[112,13,64,64.0],[112,13,65,64.0],[112,13,66,64.0],[112,13,67,64.0],[112,13,68,64.0],[112,13,69,64.0],[112,13,70,64.0],[112,13,71,64.0],[112,13,72,64.0],[112,13,73,64.0],[112,13,74,64.0],[112,13,75,64.0],[112,13,76,64.0],[112,13,77,64.0],[112,13,78,64.0],[112,13,79,64.0],[112,14,64,64.0],[112,14,65,64.0],[112,14,66,64.0],[112,14,67,64.0],[112,14,68,64.0],[112,14,69,64.0],[112,14,70,64.0],[112,14,71,64.0],[112,14,72,64.0],[112,14,73,64.0],[112,14,74,64.0],[112,14,75,64.0],[112,14,76,64.0],[112,14,77,64.0],[112,14,78,64.0],[112,14,79,64.0],[112,15,64,64.0],[112,15,65,64.0],[112,15,66,64.0],[112,15,67,64.0],[112,15,68,64.0],[112,15,69,64.0],[112,15,70,64.0],[112,15,71,64.0],[112,15,72,64.0],[112,15,73,64.0],[112,15,74,64.0],[112,15,75,64.0],[112,15,76,64.0],[112,15,77,64.0],[112,15,78,64.0],[112,15,79,64.0],[112,16,64,64.0],[112,16,65,64.0],[112,16,66,64.0],[112,16,67,64.0],[112,16,68,64.0],[112,16,69,64.0],[112,16,70,64.0],[112,16,71,64.0],[112,16,72,64.0],[112,16,73,64.0],[112,16,74,64.0],[112,16,75,64.0],[112,16,76,64.0],[112,16,77,64.0],[112,16,78,64.0],[112,16,79,64.0],[112,17,64,64.0],[112,17,65,64.0],[112,17,66,64.0],[112,17,67,64.0],[112,17,68,64.0],[112,17,69,64.0],[112,17,70,64.0],[112,17,71,64.0],[112,17,72,64.0],[112,17,73,64.0],[112,17,74,64.0],[112,17,75,64.0],[112,17,76,64.0],[112,17,77,64.0],[112,17,78,64.0],[112,17,79,64.0],[112,18,64,64.0],[112,18,65,64.0],[112,18,66,64.0],[112,18,67,64.0],[112,18,68,64.0],[112,18,69,64.0],[112,18,70,64.0],[112,18,71,64.0],[112,18,72,64.0],[112,18,73,64.0],[112,18,74,64.0],[112,18,75,64.0],[112,18,76,64.0],[112,18,77,64.0],[112,18,78,64.0],[112,18,79,64.0],[112,19,64,64.0],[112,19,65,64.0],[112,19,66,64.0],[112,19,67,64.0],[112,19,68,64.0],[112,19,69,64.0],[112,19,70,64.0],[112,19,71,64.0],[112,19,72,64.0],[112,19,73,64.0],[112,19,74,64.0],[112,19,75,64.0],[112,19,76,64.0],[112,19,77,64.0],[112,19,78,64.0],[112,19,79,64.0],[112,20,64,64.0],[112,20,65,64.0],[112,20,66,64.0],[112,20,67,64.0],[112,20,68,64.0],[112,20,69,64.0],[112,20,70,64.0],[112,20,71,64.0],[112,20,72,64.0],[112,20,73,64.0],[112,20,74,64.0],[112,20,75,64.0],[112,20,76,64.0],[112,20,77,64.0],[112,20,78,64.0],[112,20,79,64.0],[112,21,64,64.0],[112,21,65,64.0],[112,21,66,64.0],[112,21,67,64.0],[112,21,68,64.0],[112,21,69,64.0],[112,21,70,64.0],[112,21,71,64.0],[112,21,72,64.0],[112,21,73,64.0],[112,21,74,64.0],[112,21,75,64.0],[112,21,76,64.0],[112,21,77,64.0],[112,21,78,64.0],[112,21,79,64.0],[112,22,64,64.0],[112,22,65,64.0],[112,22,66,64.0],[112,22,67,64.0],[112,22,68,64.0],[112,22,69,64.0],[112,22,70,64.0],[112,22,71,64.0],[112,22,72,64.0],[112,22,73,64.0],[112,22,74,64.0],[112,22,75,64.0],[112,22,76,64.0],[112,22,77,64.0],[112,22,78,64.0],[112,22,79,64.0],[112,23,64,64.0],[112,23,65,64.0],[112,23,66,64.0],[112,23,67,64.0],[112,23,68,64.0],[112,23,69,64.0],[112,23,70,64.0],[112,23,71,64.0],[112,23,72,64.0],[112,23,73,64.0],[112,23,74,64.0],[112,23,75,64.0],[112,23,76,64.0],[112,23,77,64.0],[112,23,78,64.0],[112,23,79,64.0],[112,24,64,64.0],[112,24,65,64.0],[112,24,66,64.0],[112,24,67,64.0],[112,24,68,64.0],[112,24,69,64.0],[112,24,70,64.0],[112,24,71,64.0],[112,24,72,64.0],[112,24,73,64.0],[112,24,74,64.0],[112,24,75,64.0],[112,24,76,64.0],[112,24,77,64.0],[112,24,78,64.0],[112,24,79,64.0],[112,25,64,64.0],[112,25,65,64.0],[112,25,66,64.0],[112,25,67,64.0],[112,25,68,64.0],[112,25,69,64.0],[112,25,70,64.0],[112,25,71,64.0],[112,25,72,64.0],[112,25,73,64.0],[112,25,74,64.0],[112,25,75,64.0],[112,25,76,64.0],[112,25,77,64.0],[112,25,78,64.0],[112,25,79,64.0],[112,26,64,64.0],[112,26,65,64.0],[112,26,66,64.0],[112,26,67,64.0],[112,26,68,64.0],[112,26,69,64.0],[112,26,70,64.0],[112,26,71,64.0],[112,26,72,64.0],[112,26,73,64.0],[112,26,74,64.0],[112,26,75,64.0],[112,26,76,64.0],[112,26,77,64.0],[112,26,78,64.0],[112,26,79,64.0],[112,27,64,64.0],[112,27,65,64.0],[112,27,66,64.0],[112,27,67,64.0],[112,27,68,64.0],[112,27,69,64.0],[112,27,70,64.0],[112,27,71,64.0],[112,27,72,64.0],[112,27,73,64.0],[112,27,74,64.0],[112,27,75,64.0],[112,27,76,64.0],[112,27,77,64.0],[112,27,78,64.0],[112,27,79,64.0],[112,28,64,64.0],[112,28,65,64.0],[112,28,66,64.0],[112,28,67,64.0],[112,28,68,64.0],[112,28,69,64.0],[112,28,70,64.0],[112,28,71,64.0],[112,28,72,64.0],[112,28,73,64.0],[112,28,74,64.0],[112,28,75,64.0],[112,28,76,64.0],[112,28,77,64.0],[112,28,78,64.0],[112,28,79,64.0],[112,29,64,64.0],[112,29,65,64.0],[112,29,66,64.0],[112,29,67,64.0],[112,29,68,64.0],[112,29,69,64.0],[112,29,70,64.0],[112,29,71,64.0],[112,29,72,64.0],[112,29,73,64.0],[112,29,74,64.0],[112,29,75,64.0],[112,29,76,64.0],[112,29,77,64.0],[112,29,78,64.0],[112,29,79,64.0],[112,30,64,64.0],[112,30,65,64.0],[112,30,66,64.0],[112,30,67,64.0],[112,30,68,64.0],[112,30,69,64.0],[112,30,70,64.0],[112,30,71,64.0],[112,30,72,64.0],[112,30,73,64.0],[112,30,74,64.0],[112,30,75,64.0],[112,30,76,64.0],[112,30,77,64.0],[112,30,78,64.0],[112,30,79,64.0],[112,31,64,64.0],[112,31,65,64.0],[112,31,66,64.0],[112,31,67,64.0],[112,31,68,64.0],[112,31,69,64.0],[112,31,70,64.0],[112,31,71,64.0],[112,31,72,64.0],[112,31,73,64.0],[112,31,74,64.0],[112,31,75,64.0],[112,31,76,64.0],[112,31,77,64.0],[112,31,78,64.0],[112,31,79,64.0],[112,32,64,64.0],[112,32,65,64.0],[112,32,66,64.0],[112,32,67,64.0],[112,32,68,64.0],[112,32,69,64.0],[112,32,70,64.0],[112,32,71,64.0],[112,32,72,64.0],[112,32,73,64.0],[112,32,74,64.0],[112,32,75,64.0],[112,32,76,64.0],[112,32,77,64.0],[112,32,78,64.0],[112,32,79,64.0],[112,33,64,64.0],[112,33,65,64.0],[112,33,66,64.0],[112,33,67,64.0],[112,33,68,64.0],[112,33,69,64.0],[112,33,70,64.0],[112,33,71,64.0],[112,33,72,64.0],[112,33,73,64.0],[112,33,74,64.0],[112,33,75,64.0],[112,33,76,64.0],[112,33,77,64.0],[112,33,78,64.0],[112,33,79,64.0],[112,34,64,64.0],[112,34,65,64.0],[112,34,66,64.0],[112,34,67,64.0],[112,34,68,64.0],[112,34,69,64.0],[112,34,70,64.0],[112,34,71,64.0],[112,34,72,64.0],[112,34,73,64.0],[112,34,74,64.0],[112,34,75,64.0],[112,34,76,64.0],[112,34,77,64.0],[112,34,78,64.0],[112,34,79,64.0],[112,35,64,64.0],[112,35,65,64.0],[112,35,66,64.0],[112,35,67,64.0],[112,35,68,64.0],[112,35,69,64.0],[112,35,70,64.0],[112,35,71,64.0],[112,35,72,64.0],[112,35,73,64.0],[112,35,74,64.0],[112,35,75,64.0],[112,35,76,64.0],[112,35,77,64.0],[112,35,78,64.0],[112,35,79,64.0],[112,36,64,64.0],[112,36,65,64.0],[112,36,66,64.0],[112,36,67,64.0],[112,36,68,64.0],[112,36,69,64.0],[112,36,70,64.0],[112,36,71,64.0],[112,36,72,64.0],[112,36,73,64.0],[112,36,74,64.0],[112,36,75,64.0],[112,36,76,64.0],[112,36,77,64.0],[112,36,78,64.0],[112,36,79,64.0],[112,37,64,64.0],[112,37,65,64.0],[112,37,66,64.0],[112,37,67,64.0],[112,37,68,64.0],[112,37,69,64.0],[112,37,70,64.0],[112,37,71,64.0],[112,37,72,64.0],[112,37,73,64.0],[112,37,74,64.0],[112,37,75,64.0],[112,37,76,64.0],[112,37,77,64.0],[112,37,78,64.0],[112,37,79,64.0],[112,38,64,64.0],[112,38,65,64.0],[112,38,66,64.0],[112,38,67,64.0],[112,38,68,64.0],[112,38,69,64.0],[112,38,70,64.0],[112,38,71,64.0],[112,38,72,64.0],[112,38,73,64.0],[112,38,74,64.0],[112,38,75,64.0],[112,38,76,64.0],[112,38,77,64.0],[112,38,78,64.0],[112,38,79,64.0],[112,39,64,64.0],[112,39,65,64.0],[112,39,66,64.0],[112,39,67,64.0],[112,39,68,64.0],[112,39,69,64.0],[112,39,70,64.0],[112,39,71,64.0],[112,39,72,64.0],[112,39,73,64.0],[112,39,74,64.0],[112,39,75,64.0],[112,39,76,64.0],[112,39,77,64.0],[112,39,78,64.0],[112,39,79,64.0],[112,40,64,64.0],[112,40,65,64.0],[112,40,66,64.0],[112,40,67,64.0],[112,40,68,64.0],[112,40,69,64.0],[112,40,70,64.0],[112,40,71,64.0],[112,40,72,64.0],[112,40,73,64.0],[112,40,74,64.0],[112,40,75,64.0],[112,40,76,64.0],[112,40,77,64.0],[112,40,78,64.0],[112,40,79,64.0],[112,41,64,64.0],[112,41,65,64.0],[112,41,66,64.0],[112,41,67,64.0],[112,41,68,64.0],[112,41,69,64.0],[112,41,70,64.0],[112,41,71,64.0],[112,41,72,64.0],[112,41,73,64.0],[112,41,74,64.0],[112,41,75,64.0],[112,41,76,64.0],[112,41,77,64.0],[112,41,78,64.0],[112,41,79,64.0],[112,42,64,64.0],[112,42,65,64.0],[112,42,66,64.0],[112,42,67,64.0],[112,42,68,64.0],[112,42,69,64.0],[112,42,70,64.0],[112,42,71,64.0],[112,42,72,64.0],[112,42,73,64.0],[112,42,74,64.0],[112,42,75,64.0],[112,42,76,64.0],[112,42,77,64.0],[112,42,78,64.0],[112,42,79,64.0],[112,43,64,64.0],[112,43,65,64.0],[112,43,66,64.0],[112,43,67,64.0],[112,43,68,64.0],[112,43,69,64.0],[112,43,70,64.0],[112,43,71,64.0],[112,43,72,64.0],[112,43,73,64.0],[112,43,74,64.0],[112,43,75,64.0],[112,43,76,64.0],[112,43,77,64.0],[112,43,78,64.0],[112,43,79,64.0],[112,44,64,64.0],[112,44,65,64.0],[112,44,66,64.0],[112,44,67,64.0],[112,44,68,64.0],[112,44,69,64.0],[112,44,70,64.0],[112,44,71,64.0],[112,44,72,64.0],[112,44,73,64.0],[112,44,74,64.0],[112,44,75,64.0],[112,44,76,64.0],[112,44,77,64.0],[112,44,78,64.0],[112,44,79,64.0],[112,45,64,64.0],[112,45,65,64.0],[112,45,66,64.0],[112,45,67,64.0],[112,45,68,64.0],[112,45,69,64.0],[112,45,70,64.0],[112,45,71,64.0],[112,45,72,64.0],[112,45,73,64.0],[112,45,74,64.0],[112,45,75,64.0],[112,45,76,64.0],[112,45,77,64.0],[112,45,78,64.0],[112,45,79,64.0],[112,46,64,64.0],[112,46,65,64.0],[112,46,66,64.0],[112,46,67,64.0],[112,46,68,64.0],[112,46,69,64.0],[112,46,70,64.0],[112,46,71,64.0],[112,46,72,64.0],[112,46,73,64.0],[112,46,74,64.0],[112,46,75,64.0],[112,46,76,64.0],[112,46,77,64.0],[112,46,78,64.0],[112,46,79,64.0],[112,47,64,64.0],[112,47,65,64.0],[112,47,66,64.0],[112,47,67,64.0],[112,47,68,64.0],[112,47,69,64.0],[112,47,70,64.0],[112,47,71,64.0],[112,47,72,64.0],[112,47,73,64.0],[112,47,74,64.0],[112,47,75,64.0],[112,47,76,64.0],[112,47,77,64.0],[112,47,78,64.0],[112,47,79,64.0],[112,48,64,64.0],[112,48,65,64.0],[112,48,66,64.0],[112,48,67,64.0],[112,48,68,64.0],[112,48,69,64.0],[112,48,70,64.0],[112,48,71,64.0],[112,48,72,64.0],[112,48,73,64.0],[112,48,74,64.0],[112,48,75,64.0],[112,48,76,64.0],[112,48,77,64.0],[112,48,78,64.0],[112,48,79,64.0],[112,49,64,64.0],[112,49,65,64.0],[112,49,66,64.0],[112,49,67,64.0],[112,49,68,64.0],[112,49,69,64.0],[112,49,70,64.0],[112,49,71,64.0],[112,49,72,64.0],[112,49,73,64.0],[112,49,74,64.0],[112,49,75,64.0],[112,49,76,64.0],[112,49,77,64.0],[112,49,78,64.0],[112,49,79,64.0],[112,50,64,64.0],[112,50,65,64.0],[112,50,66,64.0],[112,50,67,64.0],[112,50,68,64.0],[112,50,69,64.0],[112,50,70,64.0],[112,50,71,64.0],[112,50,72,64.0],[112,50,73,64.0],[112,50,74,64.0],[112,50,75,64.0],[112,50,76,64.0],[112,50,77,64.0],[112,50,78,64.0],[112,50,79,64.0],[112,51,64,64.0],[112,51,65,64.0],[112,51,66,64.0],[112,51,67,64.0],[112,51,68,64.0],[112,51,69,64.0],[112,51,70,64.0],[112,51,71,64.0],[112,51,72,64.0],[112,51,73,64.0],[112,51,74,64.0],[112,51,75,64.0],[112,51,76,64.0],[112,51,77,64.0],[112,51,78,64.0],[112,51,79,64.0],[112,52,64,64.0],[112,52,65,64.0],[112,52,66,64.0],[112,52,67,64.0],[112,52,68,64.0],[112,52,69,64.0],[112,52,70,64.0],[112,52,71,64.0],[112,52,72,64.0],[112,52,73,64.0],[112,52,74,64.0],[112,52,75,64.0],[112,52,76,64.0],[112,52,77,64.0],[112,52,78,64.0],[112,52,79,64.0],[112,53,64,64.0],[112,53,65,64.0],[112,53,66,64.0],[112,53,67,64.0],[112,53,68,64.0],[112,53,69,64.0],[112,53,70,64.0],[112,53,71,64.0],[112,53,72,64.0],[112,53,73,64.0],[112,53,74,64.0],[112,53,75,64.0],[112,53,76,64.0],[112,53,77,64.0],[112,53,78,64.0],[112,53,79,64.0],[112,54,64,64.0],[112,54,65,64.0],[112,54,66,64.0],[112,54,67,64.0],[112,54,68,64.0],[112,54,69,64.0],[112,54,70,64.0],[112,54,71,64.0],[112,54,72,64.0],[112,54,73,64.0],[112,54,74,64.0],[112,54,75,64.0],[112,54,76,64.0],[112,54,77,64.0],[112,54,78,64.0],[112,54,79,64.0],[112,55,64,64.0],[112,55,65,64.0],[112,55,66,64.0],[112,55,67,64.0],[112,55,68,64.0],[112,55,69,64.0],[112,55,70,64.0],[112,55,71,64.0],[112,55,72,64.0],[112,55,73,64.0],[112,55,74,64.0],[112,55,75,64.0],[112,55,76,64.0],[112,55,77,64.0],[112,55,78,64.0],[112,55,79,64.0],[112,56,64,64.0],[112,56,65,64.0],[112,56,66,64.0],[112,56,67,64.0],[112,56,68,64.0],[112,56,69,64.0],[112,56,70,64.0],[112,56,71,64.0],[112,56,72,64.0],[112,56,73,64.0],[112,56,74,64.0],[112,56,75,64.0],[112,56,76,64.0],[112,56,77,64.0],[112,56,78,64.0],[112,56,79,64.0],[112,57,64,64.0],[112,57,65,64.0],[112,57,66,64.0],[112,57,67,64.0],[112,57,68,64.0],[112,57,69,64.0],[112,57,70,64.0],[112,57,71,64.0],[112,57,72,64.0],[112,57,73,64.0],[112,57,74,64.0],[112,57,75,64.0],[112,57,76,64.0],[112,57,77,64.0],[112,57,78,64.0],[112,57,79,64.0],[112,58,64,64.0],[112,58,65,64.0],[112,58,66,64.0],[112,58,67,64.0],[112,58,68,64.0],[112,58,69,64.0],[112,58,70,64.0],[112,58,71,64.0],[112,58,72,64.0],[112,58,73,64.0],[112,58,74,64.0],[112,58,75,64.0],[112,58,76,64.0],[112,58,77,64.0],[112,58,78,64.0],[112,58,79,64.0],[112,59,64,64.0],[112,59,65,64.0],[112,59,66,64.0],[112,59,67,64.0],[112,59,68,64.0],[112,59,69,64.0],[112,59,70,64.0],[112,59,71,64.0],[112,59,72,64.0],[112,59,73,64.0],[112,59,74,64.0],[112,59,75,64.0],[112,59,76,64.0],[112,59,77,64.0],[112,59,78,64.0],[112,59,79,64.0],[112,60,64,64.0],[112,60,65,64.0],[112,60,66,64.0],[112,60,67,64.0],[112,60,68,64.0],[112,60,69,64.0],[112,60,70,64.0],[112,60,71,64.0],[112,60,72,64.0],[112,60,73,64.0],[112,60,74,64.0],[112,60,75,64.0],[112,60,76,64.0],[112,60,77,64.0],[112,60,78,64.0],[112,60,79,64.0],[112,61,64,64.0],[112,61,65,64.0],[112,61,66,64.0],[112,61,67,64.0],[112,61,68,64.0],[112,61,69,64.0],[112,61,70,64.0],[112,61,71,64.0],[112,61,72,64.0],[112,61,73,64.0],[112,61,74,64.0],[112,61,75,64.0],[112,61,76,64.0],[112,61,77,64.0],[112,61,78,64.0],[112,61,79,64.0],[112,62,64,64.0],[112,62,65,64.0],[112,62,66,64.0],[112,62,67,64.0],[112,62,68,64.0],[112,62,69,64.0],[112,62,70,64.0],[112,62,71,64.0],[112,62,72,64.0],[112,62,73,64.0],[112,62,74,64.0],[112,62,75,64.0],[112,62,76,64.0],[112,62,77,64.0],[112,62,78,64.0],[112,62,79,64.0],[112,63,64,64.0],[112,63,65,64.0],[112,63,66,64.0],[112,63,67,64.0],[112,63,68,64.0],[112,63,69,64.0],[112,63,70,64.0],[112,63,71,64.0],[112,63,72,64.0],[112,63,73,64.0],[112,63,74,64.0],[112,63,75,64.0],[112,63,76,64.0],[112,63,77,64.0],[112,63,78,64.0],[112,63,79,64.0],[112,64,64,64.0],[112,64,65,64.0],[112,64,66,64.0],[112,64,67,64.0],[112,64,68,64.0],[112,64,69,64.0],[112,64,70,64.0],[112,64,71,64.0],[112,64,72,64.0],[112,64,73,64.0],[112,64,74,64.0],[112,64,75,64.0],[112,64,76,64.0],[112,64,77,64.0],[112,64,78,64.0],[112,64,79,64.0],[112,65,64,64.0],[112,65,65,64.0],[112,65,66,64.0],[112,65,67,64.0],[112,65,68,64.0],[112,65,69,64.0],[112,65,70,64.0],[112,65,71,64.0],[112,65,72,64.0],[112,65,73,64.0],[112,65,74,64.0],[112,65,75,64.0],[112,65,76,64.0],[112,65,77,64.0],[112,65,78,64.0],[112,65,79,64.0],[112,66,64,64.0],[112,66,65,64.0],[112,66,66,64.0],[112,66,67,64.0],[112,66,68,64.0],[112,66,69,64.0],[112,66,70,64.0],[112,66,71,64.0],[112,66,72,64.0],[112,66,73,64.0],[112,66,74,64.0],[112,66,75,64.0],[112,66,76,64.0],[112,66,77,64.0],[112,66,78,64.0],[112,66,79,64.0],[112,67,64,64.0],[112,67,65,64.0],[112,67,66,64.0],[112,67,67,64.0],[112,67,68,64.0],[112,67,69,64.0],[112,67,70,64.0],[112,67,71,64.0],[112,67,72,64.0],[112,67,73,64.0],[112,67,74,64.0],[112,67,75,64.0],[112,67,76,64.0],[112,67,77,64.0],[112,67,78,64.0],[112,67,79,64.0],[112,68,64,64.0],[112,68,65,64.0],[112,68,66,64.0],[112,68,67,64.0],[112,68,68,64.0],[112,68,69,64.0],[112,68,70,64.0],[112,68,71,64.0],[112,68,72,64.0],[112,68,73,64.0],[112,68,74,64.0],[112,68,75,64.0],[112,68,76,64.0],[112,68,77,64.0],[112,68,78,64.0],[112,68,79,64.0],[112,69,64,64.0],[112,69,65,64.0],[112,69,66,64.0],[112,69,67,64.0],[112,69,68,64.0],[112,69,69,64.0],[112,69,70,64.0],[112,69,71,64.0],[112,69,72,64.0],[112,69,73,64.0],[112,69,74,64.0],[112,69,75,64.0],[112,69,76,64.0],[112,69,77,64.0],[112,69,78,64.0],[112,69,79,64.0],[112,70,64,64.0],[112,70,65,64.0],[112,70,66,64.0],[112,70,67,64.0],[112,70,68,64.0],[112,70,69,64.0],[112,70,70,64.0],[112,70,71,64.0],[112,70,72,64.0],[112,70,73,64.0],[112,70,74,64.0],[112,70,75,64.0],[112,70,76,64.0],[112,70,77,64.0],[112,70,78,64.0],[112,70,79,64.0],[112,71,64,64.0],[112,71,65,64.0],[112,71,66,64.0],[112,71,67,64.0],[112,71,68,64.0],[112,71,69,64.0],[112,71,70,64.0],[112,71,71,64.0],[112,71,72,64.0],[112,71,73,64.0],[112,71,74,64.0],[112,71,75,64.0],[112,71,76,64.0],[112,71,77,64.0],[112,71,78,64.0],[112,71,79,64.0],[112,72,64,64.0],[112,72,65,64.0],[112,72,66,64.0],[112,72,67,64.0],[112,72,68,64.0],[112,72,69,64.0],[112,72,70,64.0],[112,72,71,64.0],[112,72,72,64.0],[112,72,73,64.0],[112,72,74,64.0],[112,72,75,64.0],[112,72,76,64.0],[112,72,77,64.0],[112,72,78,64.0],[112,72,79,64.0],[112,73,64,64.0],[112,73,65,64.0],[112,73,66,64.0],[112,73,67,64.0],[112,73,68,64.0],[112,73,69,64.0],[112,73,70,64.0],[112,73,71,64.0],[112,73,72,64.0],[112,73,73,64.0],[112,73,74,64.0],[112,73,75,64.0],[112,73,76,64.0],[112,73,77,64.0],[112,73,78,64.0],[112,73,79,64.0],[112,74,64,64.0],[112,74,65,64.0],[112,74,66,64.0],[112,74,67,64.0],[112,74,68,64.0],[112,74,69,64.0],[112,74,70,64.0],[112,74,71,64.0],[112,74,72,64.0],[112,74,73,64.0],[112,74,74,64.0],[112,74,75,64.0],[112,74,76,64.0],[112,74,77,64.0],[112,74,78,64.0],[112,74,79,64.0],[112,75,64,64.0],[112,75,65,64.0],[112,75,66,64.0],[112,75,67,64.0],[112,75,68,64.0],[112,75,69,64.0],[112,75,70,64.0],[112,75,71,64.0],[112,75,72,64.0],[112,75,73,64.0],[112,75,74,64.0],[112,75,75,64.0],[112,75,76,64.0],[112,75,77,64.0],[112,75,78,64.0],[112,75,79,64.0],[112,76,64,64.0],[112,76,65,64.0],[112,76,66,64.0],[112,76,67,64.0],[112,76,68,64.0],[112,76,69,64.0],[112,76,70,64.0],[112,76,71,64.0],[112,76,72,64.0],[112,76,73,64.0],[112,76,74,64.0],[112,76,75,64.0],[112,76,76,64.0],[112,76,77,64.0],[112,76,78,64.0],[112,76,79,64.0],[112,77,64,64.0],[112,77,65,64.0],[112,77,66,64.0],[112,77,67,64.0],[112,77,68,64.0],[112,77,69,64.0],[112,77,70,64.0],[112,77,71,64.0],[112,77,72,64.0],[112,77,73,64.0],[112,77,74,64.0],[112,77,75,64.0],[112,77,76,64.0],[112,77,77,64.0],[112,77,78,64.0],[112,77,79,64.0],[112,78,64,64.0],[112,78,65,64.0],[112,78,66,64.0],[112,78,67,64.0],[112,78,68,64.0],[112,78,69,64.0],[112,78,70,64.0],[112,78,71,64.0],[112,78,72,64.0],[112,78,73,64.0],[112,78,74,64.0],[112,78,75,64.0],[112,78,76,64.0],[112,78,77,64.0],[112,78,78,64.0],[112,78,79,64.0],[112,79,64,64.0],[112,79,65,64.0],[112,79,66,64.0],[112,79,67,64.0],[112,79,68,64.0],[112,79,69,64.0],[112,79,70,64.0],[112,79,71,64.0],[112,79,72,64.0],[112,79,73,64.0],[112,79,74,64.0],[112,79,75,64.0],[112,79,76,64.0],[112,79,77,64.0],[112,79,78,64.0],[112,79,79,64.0],[112,80,64,64.0],[112,80,65,64.0],[112,80,66,64.0],[112,80,67,64.0],[112,80,68,64.0],[112,80,69,64.0],[112,80,70,64.0],[112,80,71,64.0],[112,80,72,64.0],[112,80,73,64.0],[112,80,74,64.0],[112,80,75,64.0],[112,80,76,64.0],[112,80,77,64.0],[112,80,78,64.0],[112,80,79,64.0],[112,81,64,64.0],[112,81,65,64.0],[112,81,66,64.0],[112,81,67,64.0],[112,81,68,64.0],[112,81,69,64.0],[112,81,70,64.0],[112,81,71,64.0],[112,81,72,64.0],[112,81,73,64.0],[112,81,74,64.0],[112,81,75,64.0],[112,81,76,64.0],[112,81,77,64.0],[112,81,78,64.0],[112,81,79,64.0],[112,82,64,64.0],[112,82,65,64.0],[112,82,66,64.0],[112,82,67,64.0],[112,82,68,64.0],[112,82,69,64.0],[112,82,70,64.0],[112,82,71,64.0],[112,82,72,64.0],[112,82,73,64.0],[112,82,74,64.0],[112,82,75,64.0],[112,82,76,64.0],[112,82,77,64.0],[112,82,78,64.0],[112,82,79,64.0],[112,83,64,64.0],[112,83,65,64.0],[112,83,66,64.0],[112,83,67,64.0],[112,83,68,64.0],[112,83,69,64.0],[112,83,70,64.0],[112,83,71,64.0],[112,83,72,64.0],[112,83,73,64.0],[112,83,74,64.0],[112,83,75,64.0],[112,83,76,64.0],[112,83,77,64.0],[112,83,78,64.0],[112,83,79,64.0],[112,84,64,64.0],[112,84,65,64.0],[112,84,66,64.0],[112,84,67,64.0],[112,84,68,64.0],[112,84,69,64.0],[112,84,70,64.0],[112,84,71,64.0],[112,84,72,64.0],[112,84,73,64.0],[112,84,74,64.0],[112,84,75,64.0],[112,84,76,64.0],[112,84,77,64.0],[112,84,78,64.0],[112,84,79,64.0],[112,85,64,64.0],[112,85,65,64.0],[112,85,66,64.0],[112,85,67,64.0],[112,85,68,64.0],[112,85,69,64.0],[112,85,70,64.0],[112,85,71,64.0],[112,85,72,64.0],[112,85,73,64.0],[112,85,74,64.0],[112,85,75,64.0],[112,85,76,64.0],[112,85,77,64.0],[112,85,78,64.0],[112,85,79,64.0],[112,86,64,64.0],[112,86,65,64.0],[112,86,66,64.0],[112,86,67,64.0],[112,86,68,64.0],[112,86,69,64.0],[112,86,70,64.0],[112,86,71,64.0],[112,86,72,64.0],[112,86,73,64.0],[112,86,74,64.0],[112,86,75,64.0],[112,86,76,64.0],[112,86,77,64.0],[112,86,78,64.0],[112,86,79,64.0],[112,87,64,64.0],[112,87,65,64.0],[112,87,66,64.0],[112,87,67,64.0],[112,87,68,64.0],[112,87,69,64.0],[112,87,70,64.0],[112,87,71,64.0],[112,87,72,64.0],[112,87,73,64.0],[112,87,74,64.0],[112,87,75,64.0],[112,87,76,64.0],[112,87,77,64.0],[112,87,78,64.0],[112,87,79,64.0],[112,88,64,64.0],[112,88,65,64.0],[112,88,66,64.0],[112,88,67,64.0],[112,88,68,64.0],[112,88,69,64.0],[112,88,70,64.0],[112,88,71,64.0],[112,88,72,64.0],[112,88,73,64.0],[112,88,74,64.0],[112,88,75,64.0],[112,88,76,64.0],[112,88,77,64.0],[112,88,78,64.0],[112,88,79,64.0],[112,89,64,64.0],[112,89,65,64.0],[112,89,66,64.0],[112,89,67,64.0],[112,89,68,64.0],[112,89,69,64.0],[112,89,70,64.0],[112,89,71,64.0],[112,89,72,64.0],[112,89,73,64.0],[112,89,74,64.0],[112,89,75,64.0],[112,89,76,64.0],[112,89,77,64.0],[112,89,78,64.0],[112,89,79,64.0],[112,90,64,64.0],[112,90,65,64.0],[112,90,66,64.0],[112,90,67,64.0],[112,90,68,64.0],[112,90,69,64.0],[112,90,70,64.0],[112,90,71,64.0],[112,90,72,64.0],[112,90,73,64.0],[112,90,74,64.0],[112,90,75,64.0],[112,90,76,64.0],[112,90,77,64.0],[112,90,78,64.0],[112,90,79,64.0],[112,91,64,64.0],[112,91,65,64.0],[112,91,66,64.0],[112,91,67,64.0],[112,91,68,64.0],[112,91,69,64.0],[112,91,70,64.0],[112,91,71,64.0],[112,91,72,64.0],[112,91,73,64.0],[112,91,74,64.0],[112,91,75,64.0],[112,91,76,64.0],[112,91,77,64.0],[112,91,78,64.0],[112,91,79,64.0],[112,92,64,64.0],[112,92,65,64.0],[112,92,66,64.0],[112,92,67,64.0],[112,92,68,64.0],[112,92,69,64.0],[112,92,70,64.0],[112,92,71,64.0],[112,92,72,64.0],[112,92,73,64.0],[112,92,74,64.0],[112,92,75,64.0],[112,92,76,64.0],[112,92,77,64.0],[112,92,78,64.0],[112,92,79,64.0],[112,93,64,64.0],[112,93,65,64.0],[112,93,66,64.0],[112,93,67,64.0],[112,93,68,64.0],[112,93,69,64.0],[112,93,70,64.0],[112,93,71,64.0],[112,93,72,64.0],[112,93,73,64.0],[112,93,74,64.0],[112,93,75,64.0],[112,93,76,64.0],[112,93,77,64.0],[112,93,78,64.0],[112,93,79,64.0],[112,94,64,64.0],[112,94,65,64.0],[112,94,66,64.0],[112,94,67,64.0],[112,94,68,64.0],[112,94,69,64.0],[112,94,70,64.0],[112,94,71,64.0],[112,94,72,64.0],[112,94,73,64.0],[112,94,74,64.0],[112,94,75,64.0],[112,94,76,64.0],[112,94,77,64.0],[112,94,78,64.0],[112,94,79,64.0],[112,95,64,64.0],[112,95,65,64.0],[112,95,66,64.0],[112,95,67,64.0],[112,95,68,64.0],[112,95,69,64.0],[112,95,70,64.0],[112,95,71,64.0],[112,95,72,64.0],[112,95,73,64.0],[112,95,74,64.0],[112,95,75,64.0],[112,95,76,64.0],[112,95,77,64.0],[112,95,78,64.0],[112,95,79,64.0],[112,96,64,64.0],[112,96,65,64.0],[112,96,66,64.0],[112,96,67,64.0],[112,96,68,64.0],[112,96,69,64.0],[112,96,70,64.0],[112,96,71,64.0],[112,96,72,64.0],[112,96,73,64.0],[112,96,74,64.0],[112,96,75,64.0],[112,96,76,64.0],[112,96,77,64.0],[112,96,78,64.0],[112,96,79,64.0],[112,97,64,64.0],[112,97,65,64.0],[112,97,66,64.0],[112,97,67,64.0],[112,97,68,64.0],[112,97,69,64.0],[112,97,70,64.0],[112,97,71,64.0],[112,97,72,64.0],[112,97,73,64.0],[112,97,74,64.0],[112,97,75,64.0],[112,97,76,64.0],[112,97,77,64.0],[112,97,78,64.0],[112,97,79,64.0],[112,98,64,64.0],[112,98,65,64.0],[112,98,66,64.0],[112,98,67,64.0],[112,98,68,64.0],[112,98,69,64.0],[112,98,70,64.0],[112,98,71,64.0],[112,98,72,64.0],[112,98,73,64.0],[112,98,74,64.0],[112,98,75,64.0],[112,98,76,64.0],[112,98,77,64.0],[112,98,78,64.0],[112,98,79,64.0],[112,99,64,64.0],[112,99,65,64.0],[112,99,66,64.0],[112,99,67,64.0],[112,99,68,64.0],[112,99,69,64.0],[112,99,70,64.0],[112,99,71,64.0],[112,99,72,64.0],[112,99,73,64.0],[112,99,74,64.0],[112,99,75,64.0],[112,99,76,64.0],[112,99,77,64.0],[112,99,78,64.0],[112,99,79,64.0],[112,100,64,64.0],[112,100,65,64.0],[112,100,66,64.0],[112,100,67,64.0],[112,100,68,64.0],[112,100,69,64.0],[112,100,70,64.0],[112,100,71,64.0],[112,100,72,64.0],[112,100,73,64.0],[112,100,74,64.0],[112,100,75,64.0],[112,100,76,64.0],[112,100,77,64.0],[112,100,78,64.0],[112,100,79,64.0],[112,101,64,64.0],[112,101,65,64.0],[112,101,66,64.0],[112,101,67,64.0],[112,101,68,64.0],[112,101,69,64.0],[112,101,70,64.0],[112,101,71,64.0],[112,101,72,64.0],[112,101,73,64.0],[112,101,74,64.0],[112,101,75,64.0],[112,101,76,64.0],[112,101,77,64.0],[112,101,78,64.0],[112,101,79,64.0],[112,102,64,64.0],[112,102,65,64.0],[112,102,66,64.0],[112,102,67,64.0],[112,102,68,64.0],[112,102,69,64.0],[112,102,70,64.0],[112,102,71,64.0],[112,102,72,64.0],[112,102,73,64.0],[112,102,74,64.0],[112,102,75,64.0],[112,102,76,64.0],[112,102,77,64.0],[112,102,78,64.0],[112,102,79,64.0],[112,103,64,64.0],[112,103,65,64.0],[112,103,66,64.0],[112,103,67,64.0],[112,103,68,64.0],[112,103,69,64.0],[112,103,70,64.0],[112,103,71,64.0],[112,103,72,64.0],[112,103,73,64.0],[112,103,74,64.0],[112,103,75,64.0],[112,103,76,64.0],[112,103,77,64.0],[112,103,78,64.0],[112,103,79,64.0],[112,104,64,64.0],[112,104,65,64.0],[112,104,66,64.0],[112,104,67,64.0],[112,104,68,64.0],[112,104,69,64.0],[112,104,70,64.0],[112,104,71,64.0],[112,104,72,64.0],[112,104,73,64.0],[112,104,74,64.0],[112,104,75,64.0],[112,104,76,64.0],[112,104,77,64.0],[112,104,78,64.0],[112,104,79,64.0],[112,105,64,64.0],[112,105,65,64.0],[112,105,66,64.0],[112,105,67,64.0],[112,105,68,64.0],[112,105,69,64.0],[112,105,70,64.0],[112,105,71,64.0],[112,105,72,64.0],[112,105,73,64.0],[112,105,74,64.0],[112,105,75,64.0],[112,105,76,64.0],[112,105,77,64.0],[112,105,78,64.0],[112,105,79,64.0],[112,106,64,64.0],[112,106,65,64.0],[112,106,66,64.0],[112,106,67,64.0],[112,106,68,64.0],[112,106,69,64.0],[112,106,70,64.0],[112,106,71,64.0],[112,106,72,64.0],[112,106,73,64.0],[112,106,74,64.0],[112,106,75,64.0],[112,106,76,64.0],[112,106,77,64.0],[112,106,78,64.0],[112,106,79,64.0],[112,107,64,64.0],[112,107,65,64.0],[112,107,66,64.0],[112,107,67,64.0],[112,107,68,64.0],[112,107,69,64.0],[112,107,70,64.0],[112,107,71,64.0],[112,107,72,64.0],[112,107,73,64.0],[112,107,74,64.0],[112,107,75,64.0],[112,107,76,64.0],[112,107,77,64.0],[112,107,78,64.0],[112,107,79,64.0],[112,108,64,64.0],[112,108,65,64.0],[112,108,66,64.0],[112,108,67,64.0],[112,108,68,64.0],[112,108,69,64.0],[112,108,70,64.0],[112,108,71,64.0],[112,108,72,64.0],[112,108,73,64.0],[112,108,74,64.0],[112,108,75,64.0],[112,108,76,64.0],[112,108,77,64.0],[112,108,78,64.0],[112,108,79,64.0],[112,109,64,64.0],[112,109,65,64.0],[112,109,66,64.0],[112,109,67,64.0],[112,109,68,64.0],[112,109,69,64.0],[112,109,70,64.0],[112,109,71,64.0],[112,109,72,64.0],[112,109,73,64.0],[112,109,74,64.0],[112,109,75,64.0],[112,109,76,64.0],[112,109,77,64.0],[112,109,78,64.0],[112,109,79,64.0],[112,110,64,64.0],[112,110,65,64.0],[112,110,66,64.0],[112,110,67,64.0],[112,110,68,64.0],[112,110,69,64.0],[112,110,70,64.0],[112,110,71,64.0],[112,110,72,64.0],[112,110,73,64.0],[112,110,74,64.0],[112,110,75,64.0],[112,110,76,64.0],[112,110,77,64.0],[112,110,78,64.0],[112,110,79,64.0],[112,111,64,64.0],[112,111,65,64.0],[112,111,66,64.0],[112,111,67,64.0],[112,111,68,64.0],[112,111,69,64.0],[112,111,70,64.0],[112,111,71,64.0],[112,111,72,64.0],[112,111,73,64.0],[112,111,74,64.0],[112,111,75,64.0],[112,111,76,64.0],[112,111,77,64.0],[112,111,78,64.0],[112,111,79,64.0],[112,112,64,64.0],[112,112,65,64.0],[112,112,66,64.0],[112,112,67,64.0],[112,112,68,64.0],[112,112,69,64.0],[112,112,70,64.0],[112,112,71,64.0],[112,112,72,64.0],[112,112,73,64.0],[112,112,74,64.0],[112,112,75,64.0],[112,112,76,64.0],[112,112,77,64.0],[112,112,78,64.0],[112,112,79,64.0],[112,113,64,64.0],[112,113,65,64.0],[112,113,66,64.0],[112,113,67,64.0],[112,113,68,64.0],[112,113,69,64.0],[112,113,70,64.0],[112,113,71,64.0],[112,113,72,64.0],[112,113,73,64.0],[112,113,74,64.0],[112,113,75,64.0],[112,113,76,64.0],[112,113,77,64.0],[112,113,78,64.0],[112,113,79,64.0],[112,114,64,64.0],[112,114,65,64.0],[112,114,66,64.0],[112,114,67,64.0],[112,114,68,64.0],[112,114,69,64.0],[112,114,70,64.0],[112,114,71,64.0],[112,114,72,64.0],[112,114,73,64.0],[112,114,74,64.0],[112,114,75,64.0],[112,114,76,64.0],[112,114,77,64.0],[112,114,78,64.0],[112,114,79,64.0],[112,115,64,64.0],[112,115,65,64.0],[112,115,66,64.0],[112,115,67,64.0],[112,115,68,64.0],[112,115,69,64.0],[112,115,70,64.0],[112,115,71,64.0],[112,115,72,64.0],[112,115,73,64.0],[112,115,74,64.0],[112,115,75,64.0],[112,115,76,64.0],[112,115,77,64.0],[112,115,78,64.0],[112,115,79,64.0],[112,116,64,64.0],[112,116,65,64.0],[112,116,66,64.0],[112,116,67,64.0],[112,116,68,64.0],[112,116,69,64.0],[112,116,70,64.0],[112,116,71,64.0],[112,116,72,64.0],[112,116,73,64.0],[112,116,74,64.0],[112,116,75,64.0],[112,116,76,64.0],[112,116,77,64.0],[112,116,78,64.0],[112,116,79,64.0],[112,117,64,64.0],[112,117,65,64.0],[112,117,66,64.0],[112,117,67,64.0],[112,117,68,64.0],[112,117,69,64.0],[112,117,70,64.0],[112,117,71,64.0],[112,117,72,64.0],[112,117,73,64.0],[112,117,74,64.0],[112,117,75,64.0],[112,117,76,64.0],[112,117,77,64.0],[112,117,78,64.0],[112,117,79,64.0],[112,118,64,64.0],[112,118,65,64.0],[112,118,66,64.0],[112,118,67,64.0],[112,118,68,64.0],[112,118,69,64.0],[112,118,70,64.0],[112,118,71,64.0],[112,118,72,64.0],[112,118,73,64.0],[112,118,74,64.0],[112,118,75,64.0],[112,118,76,64.0],[112,118,77,64.0],[112,118,78,64.0],[112,118,79,64.0],[112,119,64,64.0],[112,119,65,64.0],[112,119,66,64.0],[112,119,67,64.0],[112,119,68,64.0],[112,119,69,64.0],[112,119,70,64.0],[112,119,71,64.0],[112,119,72,64.0],[112,119,73,64.0],[112,119,74,64.0],[112,119,75,64.0],[112,119,76,64.0],[112,119,77,64.0],[112,119,78,64.0],[112,119,79,64.0],[112,120,64,64.0],[112,120,65,64.0],[112,120,66,64.0],[112,120,67,64.0],[112,120,68,64.0],[112,120,69,64.0],[112,120,70,64.0],[112,120,71,64.0],[112,120,72,64.0],[112,120,73,64.0],[112,120,74,64.0],[112,120,75,64.0],[112,120,76,64.0],[112,120,77,64.0],[112,120,78,64.0],[112,120,79,64.0],[112,121,64,64.0],[112,121,65,64.0],[112,121,66,64.0],[112,121,67,64.0],[112,121,68,64.0],[112,121,69,64.0],[112,121,70,64.0],[112,121,71,64.0],[112,121,72,64.0],[112,121,73,64.0],[112,121,74,64.0],[112,121,75,64.0],[112,121,76,64.0],[112,121,77,64.0],[112,121,78,64.0],[112,121,79,64.0],[112,122,64,64.0],[112,122,65,64.0],[112,122,66,64.0],[112,122,67,64.0],[112,122,68,64.0],[112,122,69,64.0],[112,122,70,64.0],[112,122,71,64.0],[112,122,72,64.0],[112,122,73,64.0],[112,122,74,64.0],[112,122,75,64.0],[112,122,76,64.0],[112,122,77,64.0],[112,122,78,64.0],[112,122,79,64.0],[112,123,64,64.0],[112,123,65,64.0],[112,123,66,64.0],[112,123,67,64.0],[112,123,68,64.0],[112,123,69,64.0],[112,123,70,64.0],[112,123,71,64.0],[112,123,72,64.0],[112,123,73,64.0],[112,123,74,64.0],[112,123,75,64.0],[112,123,76,64.0],[112,123,77,64.0],[112,123,78,64.0],[112,123,79,64.0],[112,124,64,64.0],[112,124,65,64.0],[112,124,66,64.0],[112,124,67,64.0],[112,124,68,64.0],[112,124,69,64.0],[112,124,70,64.0],[112,124,71,64.0],[112,124,72,64.0],[112,124,73,64.0],[112,124,74,64.0],[112,124,75,64.0],[112,124,76,64.0],[112,124,77,64.0],[112,124,78,64.0],[112,124,79,64.0],[112,125,64,64.0],[112,125,65,64.0],[112,125,66,64.0],[112,125,67,64.0],[112,125,68,64.0],[112,125,69,64.0],[112,125,70,64.0],[112,125,71,64.0],[112,125,72,64.0],[112,125,73,64.0],[112,125,74,64.0],[112,125,75,64.0],[112,125,76,64.0],[112,125,77,64.0],[112,125,78,64.0],[112,125,79,64.0],[112,126,64,64.0],[112,126,65,64.0],[112,126,66,64.0],[112,126,67,64.0],[112,126,68,64.0],[112,126,69,64.0],[112,126,70,64.0],[112,126,71,64.0],[112,126,72,64.0],[112,126,73,64.0],[112,126,74,64.0],[112,126,75,64.0],[112,126,76,64.0],[112,126,77,64.0],[112,126,78,64.0],[112,126,79,64.0],[112,127,64,64.0],[112,127,65,64.0],[112,127,66,64.0],[112,127,67,64.0],[112,127,68,64.0],[112,127,69,64.0],[112,127,70,64.0],[112,127,71,64.0],[112,127,72,64.0],[112,127,73,64.0],[112,127,74,64.0],[112,127,75,64.0],[112,127,76,64.0],[112,127,77,64.0],[112,127,78,64.0],[112,127,79,64.0],[112,128,64,64.0],[112,128,65,64.0],[112,128,66,64.0],[112,128,67,64.0],[112,128,68,64.0],[112,128,69,64.0],[112,128,70,64.0],[112,128,71,64.0],[112,128,72,64.0],[112,128,73,64.0],[112,128,74,64.0],[112,128,75,64.0],[112,128,76,64.0],[112,128,77,64.0],[112,128,78,64.0],[112,128,79,64.0],[112,129,64,64.0],[112,129,65,64.0],[112,129,66,64.0],[112,129,67,64.0],[112,129,68,64.0],[112,129,69,64.0],[112,129,70,64.0],[112,129,71,64.0],[112,129,72,64.0],[112,129,73,64.0],[112,129,74,64.0],[112,129,75,64.0],[112,129,76,64.0],[112,129,77,64.0],[112,129,78,64.0],[112,129,79,64.0],[112,130,64,64.0],[112,130,65,64.0],[112,130,66,64.0],[112,130,67,64.0],[112,130,68,64.0],[112,130,69,64.0],[112,130,70,64.0],[112,130,71,64.0],[112,130,72,64.0],[112,130,73,64.0],[112,130,74,64.0],[112,130,75,64.0],[112,130,76,64.0],[112,130,77,64.0],[112,130,78,64.0],[112,130,79,64.0],[112,131,64,64.0],[112,131,65,64.0],[112,131,66,64.0],[112,131,67,64.0],[112,131,68,64.0],[112,131,69,64.0],[112,131,70,64.0],[112,131,71,64.0],[112,131,72,64.0],[112,131,73,64.0],[112,131,74,64.0],[112,131,75,64.0],[112,131,76,64.0],[112,131,77,64.0],[112,131,78,64.0],[112,131,79,64.0],[112,132,64,64.0],[112,132,65,64.0],[112,132,66,64.0],[112,132,67,64.0],[112,132,68,64.0],[112,132,69,64.0],[112,132,70,64.0],[112,132,71,64.0],[112,132,72,64.0],[112,132,73,64.0],[112,132,74,64.0],[112,132,75,64.0],[112,132,76,64.0],[112,132,77,64.0],[112,132,78,64.0],[112,132,79,64.0],[112,133,64,64.0],[112,133,65,64.0],[112,133,66,64.0],[112,133,67,64.0],[112,133,68,64.0],[112,133,69,64.0],[112,133,70,64.0],[112,133,71,64.0],[112,133,72,64.0],[112,133,73,64.0],[112,133,74,64.0],[112,133,75,64.0],[112,133,76,64.0],[112,133,77,64.0],[112,133,78,64.0],[112,133,79,64.0],[112,134,64,64.0],[112,134,65,64.0],[112,134,66,64.0],[112,134,67,64.0],[112,134,68,64.0],[112,134,69,64.0],[112,134,70,64.0],[112,134,71,64.0],[112,134,72,64.0],[112,134,73,64.0],[112,134,74,64.0],[112,134,75,64.0],[112,134,76,64.0],[112,134,77,64.0],[112,134,78,64.0],[112,134,79,64.0],[112,135,64,64.0],[112,135,65,64.0],[112,135,66,64.0],[112,135,67,64.0],[112,135,68,64.0],[112,135,69,64.0],[112,135,70,64.0],[112,135,71,64.0],[112,135,72,64.0],[112,135,73,64.0],[112,135,74,64.0],[112,135,75,64.0],[112,135,76,64.0],[112,135,77,64.0],[112,135,78,64.0],[112,135,79,64.0],[112,136,64,64.0],[112,136,65,64.0],[112,136,66,64.0],[112,136,67,64.0],[112,136,68,64.0],[112,136,69,64.0],[112,136,70,64.0],[112,136,71,64.0],[112,136,72,64.0],[112,136,73,64.0],[112,136,74,64.0],[112,136,75,64.0],[112,136,76,64.0],[112,136,77,64.0],[112,136,78,64.0],[112,136,79,64.0],[112,137,64,64.0],[112,137,65,64.0],[112,137,66,64.0],[112,137,67,64.0],[112,137,68,64.0],[112,137,69,64.0],[112,137,70,64.0],[112,137,71,64.0],[112,137,72,64.0],[112,137,73,64.0],[112,137,74,64.0],[112,137,75,64.0],[112,137,76,64.0],[112,137,77,64.0],[112,137,78,64.0],[112,137,79,64.0],[112,138,64,64.0],[112,138,65,64.0],[112,138,66,64.0],[112,138,67,64.0],[112,138,68,64.0],[112,138,69,64.0],[112,138,70,64.0],[112,138,71,64.0],[112,138,72,64.0],[112,138,73,64.0],[112,138,74,64.0],[112,138,75,64.0],[112,138,76,64.0],[112,138,77,64.0],[112,138,78,64.0],[112,138,79,64.0],[112,139,64,64.0],[112,139,65,64.0],[112,139,66,64.0],[112,139,67,64.0],[112,139,68,64.0],[112,139,69,64.0],[112,139,70,64.0],[112,139,71,64.0],[112,139,72,64.0],[112,139,73,64.0],[112,139,74,64.0],[112,139,75,64.0],[112,139,76,64.0],[112,139,77,64.0],[112,139,78,64.0],[112,139,79,64.0],[112,140,64,64.0],[112,140,65,64.0],[112,140,66,64.0],[112,140,67,64.0],[112,140,68,64.0],[112,140,69,64.0],[112,140,70,64.0],[112,140,71,64.0],[112,140,72,64.0],[112,140,73,64.0],[112,140,74,64.0],[112,140,75,64.0],[112,140,76,64.0],[112,140,77,64.0],[112,140,78,64.0],[112,140,79,64.0],[112,141,64,64.0],[112,141,65,64.0],[112,141,66,64.0],[112,141,67,64.0],[112,141,68,64.0],[112,141,69,64.0],[112,141,70,64.0],[112,141,71,64.0],[112,141,72,64.0],[112,141,73,64.0],[112,141,74,64.0],[112,141,75,64.0],[112,141,76,64.0],[112,141,77,64.0],[112,141,78,64.0],[112,141,79,64.0],[112,142,64,64.0],[112,142,65,64.0],[112,142,66,64.0],[112,142,67,64.0],[112,142,68,64.0],[112,142,69,64.0],[112,142,70,64.0],[112,142,71,64.0],[112,142,72,64.0],[112,142,73,64.0],[112,142,74,64.0],[112,142,75,64.0],[112,142,76,64.0],[112,142,77,64.0],[112,142,78,64.0],[112,142,79,64.0],[112,143,64,64.0],[112,143,65,64.0],[112,143,66,64.0],[112,143,67,64.0],[112,143,68,64.0],[112,143,69,64.0],[112,143,70,64.0],[112,143,71,64.0],[112,143,72,64.0],[112,143,73,64.0],[112,143,74,64.0],[112,143,75,64.0],[112,143,76,64.0],[112,143,77,64.0],[112,143,78,64.0],[112,143,79,64.0],[112,144,64,64.0],[112,144,65,64.0],[112,144,66,64.0],[112,144,67,64.0],[112,144,68,64.0],[112,144,69,64.0],[112,144,70,64.0],[112,144,71,64.0],[112,144,72,64.0],[112,144,73,64.0],[112,144,74,64.0],[112,144,75,64.0],[112,144,76,64.0],[112,144,77,64.0],[112,144,78,64.0],[112,144,79,64.0],[112,145,64,64.0],[112,145,65,64.0],[112,145,66,64.0],[112,145,67,64.0],[112,145,68,64.0],[112,145,69,64.0],[112,145,70,64.0],[112,145,71,64.0],[112,145,72,64.0],[112,145,73,64.0],[112,145,74,64.0],[112,145,75,64.0],[112,145,76,64.0],[112,145,77,64.0],[112,145,78,64.0],[112,145,79,64.0],[112,146,64,64.0],[112,146,65,64.0],[112,146,66,64.0],[112,146,67,64.0],[112,146,68,64.0],[112,146,69,64.0],[112,146,70,64.0],[112,146,71,64.0],[112,146,72,64.0],[112,146,73,64.0],[112,146,74,64.0],[112,146,75,64.0],[112,146,76,64.0],[112,146,77,64.0],[112,146,78,64.0],[112,146,79,64.0],[112,147,64,64.0],[112,147,65,64.0],[112,147,66,64.0],[112,147,67,64.0],[112,147,68,64.0],[112,147,69,64.0],[112,147,70,64.0],[112,147,71,64.0],[112,147,72,64.0],[112,147,73,64.0],[112,147,74,64.0],[112,147,75,64.0],[112,147,76,64.0],[112,147,77,64.0],[112,147,78,64.0],[112,147,79,64.0],[112,148,64,64.0],[112,148,65,64.0],[112,148,66,64.0],[112,148,67,64.0],[112,148,68,64.0],[112,148,69,64.0],[112,148,70,64.0],[112,148,71,64.0],[112,148,72,64.0],[112,148,73,64.0],[112,148,74,64.0],[112,148,75,64.0],[112,148,76,64.0],[112,148,77,64.0],[112,148,78,64.0],[112,148,79,64.0],[112,149,64,64.0],[112,149,65,64.0],[112,149,66,64.0],[112,149,67,64.0],[112,149,68,64.0],[112,149,69,64.0],[112,149,70,64.0],[112,149,71,64.0],[112,149,72,64.0],[112,149,73,64.0],[112,149,74,64.0],[112,149,75,64.0],[112,149,76,64.0],[112,149,77,64.0],[112,149,78,64.0],[112,149,79,64.0],[112,150,64,64.0],[112,150,65,64.0],[112,150,66,64.0],[112,150,67,64.0],[112,150,68,64.0],[112,150,69,64.0],[112,150,70,64.0],[112,150,71,64.0],[112,150,72,64.0],[112,150,73,64.0],[112,150,74,64.0],[112,150,75,64.0],[112,150,76,64.0],[112,150,77,64.0],[112,150,78,64.0],[112,150,79,64.0],[112,151,64,64.0],[112,151,65,64.0],[112,151,66,64.0],[112,151,67,64.0],[112,151,68,64.0],[112,151,69,64.0],[112,151,70,64.0],[112,151,71,64.0],[112,151,72,64.0],[112,151,73,64.0],[112,151,74,64.0],[112,151,75,64.0],[112,151,76,64.0],[112,151,77,64.0],[112,151,78,64.0],[112,151,79,64.0],[112,152,64,64.0],[112,152,65,64.0],[112,152,66,64.0],[112,152,67,64.0],[112,152,68,64.0],[112,152,69,64.0],[112,152,70,64.0],[112,152,71,64.0],[112,152,72,64.0],[112,152,73,64.0],[112,152,74,64.0],[112,152,75,64.0],[112,152,76,64.0],[112,152,77,64.0],[112,152,78,64.0],[112,152,79,64.0],[112,153,64,64.0],[112,153,65,64.0],[112,153,66,64.0],[112,153,67,64.0],[112,153,68,64.0],[112,153,69,64.0],[112,153,70,64.0],[112,153,71,64.0],[112,153,72,64.0],[112,153,73,64.0],[112,153,74,64.0],[112,153,75,64.0],[112,153,76,64.0],[112,153,77,64.0],[112,153,78,64.0],[112,153,79,64.0],[112,154,64,64.0],[112,154,65,64.0],[112,154,66,64.0],[112,154,67,64.0],[112,154,68,64.0],[112,154,69,64.0],[112,154,70,64.0],[112,154,71,64.0],[112,154,72,64.0],[112,154,73,64.0],[112,154,74,64.0],[112,154,75,64.0],[112,154,76,64.0],[112,154,77,64.0],[112,154,78,64.0],[112,154,79,64.0],[112,155,64,64.0],[112,155,65,64.0],[112,155,66,64.0],[112,155,67,64.0],[112,155,68,64.0],[112,155,69,64.0],[112,155,70,64.0],[112,155,71,64.0],[112,155,72,64.0],[112,155,73,64.0],[112,155,74,64.0],[112,155,75,64.0],[112,155,76,64.0],[112,155,77,64.0],[112,155,78,64.0],[112,155,79,64.0],[112,156,64,64.0],[112,156,65,64.0],[112,156,66,64.0],[112,156,67,64.0],[112,156,68,64.0],[112,156,69,64.0],[112,156,70,64.0],[112,156,71,64.0],[112,156,72,64.0],[112,156,73,64.0],[112,156,74,64.0],[112,156,75,64.0],[112,156,76,64.0],[112,156,77,64.0],[112,156,78,64.0],[112,156,79,64.0],[112,157,64,64.0],[112,157,65,64.0],[112,157,66,64.0],[112,157,67,64.0],[112,157,68,64.0],[112,157,69,64.0],[112,157,70,64.0],[112,157,71,64.0],[112,157,72,64.0],[112,157,73,64.0],[112,157,74,64.0],[112,157,75,64.0],[112,157,76,64.0],[112,157,77,64.0],[112,157,78,64.0],[112,157,79,64.0],[112,158,64,64.0],[112,158,65,64.0],[112,158,66,64.0],[112,158,67,64.0],[112,158,68,64.0],[112,158,69,64.0],[112,158,70,64.0],[112,158,71,64.0],[112,158,72,64.0],[112,158,73,64.0],[112,158,74,64.0],[112,158,75,64.0],[112,158,76,64.0],[112,158,77,64.0],[112,158,78,64.0],[112,158,79,0.3282166564951934],[112,159,64,64.0],[112,159,65,64.0],[112,159,66,64.0],[112,159,67,64.0],[112,159,68,64.0],[112,159,69,64.0],[112,159,70,64.0],[112,159,71,64.0],[112,159,72,64.0],[112,159,73,64.0],[112,159,74,64.0],[112,159,75,64.0],[112,159,76,64.0],[112,159,77,64.0],[112,159,78,0.31774258780553327],[112,159,79,0.3276702900435259],[112,160,64,64.0],[112,160,65,64.0],[112,160,66,64.0],[112,160,67,64.0],[112,160,68,64.0],[112,160,69,64.0],[112,160,70,64.0],[112,160,71,64.0],[112,160,72,64.0],[112,160,73,64.0],[112,160,74,64.0],[112,160,75,64.0],[112,160,76,64.0],[112,160,77,0.3560039079647642],[112,160,78,0.3079894762123868],[112,160,79,0.3269712881977377],[112,161,64,64.0],[112,161,65,64.0],[112,161,66,64.0],[112,161,67,64.0],[112,161,68,64.0],[112,161,69,64.0],[112,161,70,64.0],[112,161,71,64.0],[112,161,72,64.0],[112,161,73,64.0],[112,161,74,64.0],[112,161,75,0.43086927437564143],[112,161,76,0.38763418428458124],[112,161,77,0.34332278361835056],[112,161,78,0.29801887335900046],[112,161,79,0.32626281369070387],[112,162,64,64.0],[112,162,65,64.0],[112,162,66,64.0],[112,162,67,64.0],[112,162,68,64.0],[112,162,69,64.0],[112,162,70,64.0],[112,162,71,64.0],[112,162,72,64.0],[112,162,73,64.0],[112,162,74,0.45090964612025364],[112,162,75,0.41190484124785515],[112,162,76,0.371761792293596],[112,162,77,0.3304548297910768],[112,162,78,0.28803149394911454],[112,162,79,0.3256881735378738],[112,163,64,64.0],[112,163,65,64.0],[112,163,66,64.0],[112,163,67,64.0],[112,163,68,64.0],[112,163,69,64.0],[112,163,70,64.0],[112,163,71,64.0],[112,163,72,0.49688218517008387],[112,163,73,0.4630226536249227],[112,163,74,0.42836619871072507],[112,163,75,0.392666432568016],[112,163,76,0.3557738673754054],[112,163,77,0.31762502899088896],[112,163,78,0.27823160984552714],[112,163,79,0.32538819810629543],[112,164,64,64.0],[112,164,65,64.0],[112,164,66,64.0],[112,164,67,64.0],[112,164,68,64.0],[112,164,69,64.0],[112,164,70,64.0],[112,164,71,0.4972165873774115],[112,164,72,0.4672881247533798],[112,164,73,0.436875238451601],[112,164,74,0.405684334936611],[112,164,75,0.3734292127094061],[112,164,76,0.33992175768806976],[112,164,77,0.3050613977693676],[112,164,78,0.26882460374925365],[112,164,79,0.32549841030509075],[112,165,64,64.0],[112,165,65,64.0],[112,165,66,64.0],[112,165,67,64.0],[112,165,68,64.0],[112,165,69,64.0],[112,165,70,0.4894751774647246],[112,165,71,0.4640192028019138],[112,165,72,0.43761404349415606],[112,165,73,0.410774093892658],[112,165,74,0.3831682298914441],[112,165,75,0.354471562472416],[112,165,76,0.3244583654810537],[112,165,77,0.29299188485402555],[112,165,78,0.2644482811276859],[112,165,79,0.3261459848973944],[112,166,64,64.0],[112,166,65,64.0],[112,166,66,64.0],[112,166,67,64.0],[112,166,68,0.4906427955240601],[112,166,69,0.4730068807735353],[112,166,70,0.45288216350027594],[112,166,71,0.4309936826137511],[112,166,72,0.40821894302353623],[112,166,73,0.38505097254737297],[112,166,74,0.3611223583694484],[112,166,75,0.33607084419461486],[112,166,76,0.3096343023278054],[112,166,77,0.281640908241547],[112,166,78,0.26615169632955704],[112,166,79,0.3274464979337447],[112,167,64,64.0],[112,167,65,64.0],[112,167,66,64.0],[112,167,67,0.45863165566075975],[112,167,68,0.4474443394406966],[112,167,69,0.4333006448907536],[112,167,70,0.41675856301906017],[112,167,71,0.39852435153676585],[112,167,72,0.3794589918039418],[112,167,73,0.3600337707272903],[112,167,74,0.3398463953072061],[112,167,75,0.3184987360201593],[112,167,76,0.29569365191822805],[112,167,77,0.27122553801087385],[112,167,78,0.2687880173404515],[112,167,79,0.329500472935652],[112,168,64,64.0],[112,168,65,64.0],[112,168,66,0.417195678270475],[112,168,67,0.41271448754368106],[112,168,68,0.4049839176986022],[112,168,69,0.3944031371361721],[112,168,70,0.38150866868677724],[112,168,71,0.366986872323659],[112,168,72,0.3516810445046712],[112,168,73,0.3360405217368595],[112,168,74,0.3196296836253271],[112,168,75,0.30201617188957075],[112,168,76,0.28286937663320855],[112,168,77,0.2619513607423836],[112,168,78,0.27242503868489415],[112,168,79,0.332389759053253],[112,169,64,0.4544099233961901],[112,169,65,0.4025266957275807],[112,169,66,0.3690329414957168],[112,169,67,0.3679324139869861],[112,169,68,0.3637065110729204],[112,169,69,0.35673121710355443],[112,169,70,0.3475207341421639],[112,169,71,0.3367406205214662],[112,169,72,0.325215527792691],[112,169,73,0.3133727957997655],[112,169,74,0.30074514853301365],[112,169,75,0.2868677674879036],[112,169,76,0.2713782493046515],[112,169,77,0.25400790810191926],[112,169,78,0.2771063252982112],[112,169,79,0.3361736260343699],[112,170,64,0.43767743082996724],[112,170,65,0.3864528027019679],[112,170,66,0.33181468018497057],[112,170,67,0.3247327521158756],[112,170,68,0.324032015955853],[112,170,69,0.32067675013587177],[112,170,70,0.3151582087462064],[112,170,71,0.30812046392924974],[112,170,72,0.3003687707444734],[112,170,73,0.29230858403468496],[112,170,74,0.2834427349031276],[112,170,75,0.27327580796902884],[112,170,76,0.2614153851953678],[112,170,77,0.24756372384743383],[112,170,78,0.2828473444116769],[112,170,79,0.3408846487310274],[112,171,64,0.41846031821265117],[112,171,65,0.36796562692910206],[112,171,66,0.3140660985548851],[112,171,67,0.2835266940453572],[112,171,68,0.2863447391687825],[112,171,69,0.2865966607317232],[112,171,70,0.2847503649241377],[112,171,71,0.2814279745627308],[112,171,72,0.27741480744589847],[112,171,73,0.27309469380154455],[112,171,74,0.26794239479471704],[112,171,75,0.2614338242907782],[112,171,76,0.25314840079337364],[112,171,77,0.24276109561470127],[112,171,78,0.28963144205684177],[112,171,79,0.3465244070303388],[112,172,64,0.39704997263706526],[112,172,65,0.3473422455165074],[112,172,66,0.29424479999419983],[112,172,67,0.24467751061974985],[112,172,68,0.2509821786137285],[112,172,69,0.2548023110854105],[112,172,70,0.25658229060120985],[112,172,71,0.25692204589849105],[112,172,72,0.25658662482271477],[112,172,73,0.2559386287287181],[112,172,74,0.2544265986993962],[112,172,75,0.25149973200122655],[112,172,76,0.24671117352256303],[112,172,77,0.23971042584348412],[112,172,78,0.29740563880731696],[112,172,79,0.3530589760826897],[112,173,64,0.37378954715137985],[112,173,65,0.32491081800395594],[112,173,66,0.27266339573506154],[112,173,67,0.2174169703867726],[112,173,68,0.21822308956862096],[112,173,69,0.2255482045670622],[112,173,70,0.23088424654055031],[112,173,71,0.23480891520796549],[112,173,72,0.23806685551365017],[112,173,73,0.24099995323513612],[112,173,74,0.24303237032741254],[112,173,75,0.24358853229378502],[112,173,76,0.24219720218926377],[112,173,77,0.24804310536626997],[112,173,78,0.30607624458135607],[112,173,79,0.3604142066522694],[112,174,64,0.34907491399784124],[112,174,65,0.30105171058804964],[112,174,66,0.24968613972608544],[112,174,67,0.19534979726631108],[112,174,68,0.18827483662661915],[112,174,69,0.1990200141430276],[112,174,70,0.20782038858328827],[112,174,71,0.21523159098137848],[112,174,72,0.22197791578631837],[112,174,73,0.22838114154741934],[112,174,74,0.2338428449334914],[112,174,75,0.23776457533117545],[112,174,76,0.23965256816471964],[112,174,77,0.2588093765397292],[112,174,78,0.3155042925051766],[112,174,79,0.36847079558990903],[112,175,64,0.3233555076966517],[112,175,65,0.2761985203837395],[112,175,66,0.22573014682844456],[112,175,67,0.17232370724695417],[112,175,68,0.16126003127971206],[112,175,69,0.17532193573674923],[112,175,70,0.1874768547911566],[112,175,71,0.19825868544182357],[112,175,72,0.2083715884960894],[112,175,73,0.21811791121220264],[112,175,74,0.2268783511826066],[112,175,75,0.23403338583841568],[112,175,76,0.23906849730361862],[112,175,77,0.27018224878067054],[112,175,78,0.3255007918368806],[112,175,79,0.3770591464281001],[112,176,64,0.2971350579744616],[112,176,65,0.250838999722251],[112,176,66,0.20126652308079493],[112,176,67,0.14879254634521272],[112,176,68,0.13720245514613313],[112,176,69,0.1544633665296857],[112,176,70,0.16984921749116877],[112,176,71,0.18387265214911078],[112,176,72,0.1972180510875995],[112,176,73,0.21016904110334667],[112,176,74,0.22208701655541127],[112,176,75,0.23233305096459103],[112,176,76,0.24037352259847142],[112,176,77,0.2818985953002002],[112,176,78,0.33582179995121303],[112,176,79,0.3859540200984001],[112,177,64,0.2708032403728623],[112,177,65,0.22535068699923202],[112,177,66,0.1766603979761202],[112,177,67,0.12510881605645163],[112,177,68,0.11601226884183619],[112,177,69,0.1363449082025126],[112,177,70,0.15482930022258473],[112,177,71,0.17195742869358252],[112,177,72,0.18839434863906626],[112,177,73,0.20440567392419431],[112,177,74,0.21933489629346453],[112,177,75,0.23252517041352205],[112,177,76,0.24342524756993372],[112,177,77,0.2937330125924309],[112,177,78,0.3462537183357458],[112,177,79,0.39495312388063053],[112,178,64,0.24399297355683486],[112,178,65,0.19937237043138828],[112,178,66,0.15155802490220022],[112,178,67,0.10092781586683869],[112,178,68,0.09747050649622346],[112,178,69,0.12074369511678468],[112,178,70,0.14219135958632667],[112,178,71,0.16228548448004657],[112,178,72,0.18167231194955902],[112,178,73,0.2006001032050003],[112,178,74,0.21839562588437564],[112,178,75,0.23438536884343988],[112,178,76,0.2517055389217228],[112,178,77,0.30587526949953936],[112,178,78,0.35696784564784056],[112,178,79,0.4042092980646943],[112,179,64,0.21623616158395587],[112,179,65,0.17244444125653602],[112,179,66,0.12551000970559079],[112,179,67,0.07581205702339841],[112,179,68,0.08121288096984913],[112,179,69,0.10729807153025572],[112,179,70,0.1315776550766401],[112,179,71,0.1545042956286296],[112,179,72,0.1767059416133544],[112,179,73,0.1984140646377115],[112,179,74,0.2189396158184902],[112,179,75,0.23759338815912087],[112,179,76,0.2658477833996439],[112,179,77,0.31857942135792494],[112,179,78,0.3681975424591579],[112,179,79,0.41393543927050636],[112,180,64,0.18722669939983683],[112,180,65,0.14426590694216784],[112,180,66,0.09822167771817447],[112,180,67,0.04947435279939552],[112,180,68,0.06691120187629551],[112,180,69,0.0956822518033495],[112,180,70,0.12266598126009264],[112,180,71,0.14829644389687288],[112,180,72,0.17318383788377814],[112,180,73,0.1975433368127696],[112,180,74,0.22067074614264792],[112,180,75,0.2418618835160929],[112,180,76,0.28078231398306297],[112,180,77,0.3320163380840128],[112,180,78,0.38010103801355427],[112,180,79,0.4242774090045622],[112,181,64,0.15680158951154094],[112,181,65,0.11467595978269222],[112,181,66,0.06953514496176985],[112,181,67,0.021760443473714766],[112,181,68,0.05476648705817122],[112,181,69,0.08608033267423255],[112,181,70,0.11562356423078561],[112,181,71,0.14381255978952748],[112,181,72,0.17124054420786078],[112,181,73,0.1981070431590993],[112,181,74,0.2236934015556036],[112,181,75,0.2472811880598973],[112,181,76,0.296612024909351],[112,181,77,0.34628307943086256],[112,181,78,0.39276983124779374],[112,181,79,0.435321449123853],[112,182,64,0.12492279747770071],[112,182,65,0.08363627051519062],[112,182,66,0.03941209786283785],[112,182,67,0.009327599234271719],[112,182,68,0.045015603812522134],[112,182,69,0.07871165863304455],[112,182,70,0.1106520697809139],[112,182,71,0.14123670508038283],[112,182,72,0.1710428378010966],[112,182,73,0.2002551809074053],[112,182,74,0.22814136473911797],[112,182,75,0.26296502196448823],[112,182,76,0.31336892306182224],[112,182,77,0.36141190513482446],[112,182,78,0.4062367682593805],[112,182,79,0.4471013159615508],[112,183,64,0.09165994619817978],[112,183,65,0.05121410467485918],[112,183,66,0.007917376691730246],[112,183,67,-8.081631193074257E-5],[112,183,68,0.03778761770234933],[112,183,69,0.07369261189806259],[112,183,70,0.10785511058818809],[112,183,71,0.140659818610132],[112,183,72,0.17266927750484679],[112,183,73,0.20405437710966745],[112,183,74,0.2340698329001995],[112,183,75,0.28226667120416143],[112,183,76,0.33102358814676386],[112,183,77,0.37737886354540534],[112,183,78,0.4204837437023922],[112,183,79,0.4596050844189794],[112,184,64,0.057173849003711114],[112,184,65,0.01756626169055947],[112,184,66,-0.024796637273106492],[112,184,67,-0.006773193610495776],[112,184,68,0.03309806057052703],[112,184,69,0.07103100480473777],[112,184,70,0.10723277272524367],[112,184,71,0.1420743836221467],[112,184,72,0.17610501543726514],[112,184,73,0.2094828482069373],[112,184,74,0.25388142845003825],[112,184,75,0.3024355612060473],[112,184,76,0.3494941668156223],[112,184,77,0.3941119587381305],[112,184,78,0.43544902611112246],[112,184,79,0.4727816220237029],[112,185,64,0.02170088154474832],[112,185,65,-0.01707616328027041],[112,185,66,-0.05451212718852784],[112,185,67,-0.010851099374441536],[112,185,68,0.03084269962884642],[112,185,69,0.07061996328022044],[112,185,70,0.10867562368008203],[112,185,71,0.14536856736613565],[112,185,72,0.18123607189475857],[112,185,73,0.22873076545314502],[112,185,74,0.2764698821455325],[112,185,75,0.3233329829024584],[112,185,76,0.3686549007327646],[112,185,77,0.41149889611078366],[112,185,78,0.45103420715187226],[112,185,79,0.48654673295402856],[112,186,64,-0.005217871200389593],[112,186,65,-0.05242219477701701],[112,186,66,-0.05782418329192475],[112,186,67,-0.012547618974412283],[112,186,68,0.030790807622521107],[112,186,69,0.07223130140351416],[112,186,70,0.11282307719203377],[112,186,71,0.15980525440070018],[112,186,72,0.2068405132362225],[112,186,73,0.2535580115200601],[112,186,74,0.29963436568275975],[112,186,75,0.3447815379908034],[112,186,76,0.38834418858862724],[112,186,77,0.4293944064628549],[112,186,78,0.4671107748027394],[112,186,79,0.5007889720297979],[112,187,64,-0.0015402861665772816],[112,187,65,-0.05180177448582281],[112,187,66,-0.03167797021101998],[112,187,67,0.009863815364475212],[112,187,68,0.053041854792555715],[112,187,69,0.09743057447562102],[112,187,70,0.1426014145179535],[112,187,71,0.18813564850811848],[112,187,72,0.23363726011626906],[112,187,73,0.2787458765061187],[112,187,74,0.3231497585620716],[112,187,75,0.3665734120221404],[112,187,76,0.4083721820579941],[112,187,77,0.44762714855795877],[112,187,78,0.4835263104611931],[112,187,79,0.5153751286692674],[112,188,64,1.7875623974589194E-4],[112,188,65,-0.03571432961226423],[112,188,66,0.0028920544102705587],[112,188,67,0.04342424277212428],[112,188,68,0.08547555540052724],[112,188,69,0.1286254894993979],[112,188,70,0.1724523577295448],[112,188,71,0.21654598652673718],[112,188,72,0.2605204745573426],[112,188,73,0.30402701131131615],[112,188,74,0.3467667558329923],[112,188,75,0.388478138108575],[112,188,76,0.42852791570387816],[112,188,77,0.46600619016965866],[112,188,78,0.5001103099798246],[112,188,79,0.5301553808124337],[112,189,64,-3.2939898668510326E-5],[112,189,65,-6.518697877061358E-4],[112,189,66,0.03709643020531814],[112,189,67,0.07664759138292311],[112,189,68,0.11759850012274503],[112,189,69,0.15953423357048566],[112,189,70,0.2020405834809385],[112,189,71,0.2447166439448662],[112,189,72,0.2871874630014378],[112,189,73,0.32911675813603153],[112,189,74,0.3702196956638201],[112,189,75,0.4102498512492605],[112,189,76,0.44858597082678414],[112,189,77,0.4843270676104904],[112,189,78,0.5166796286300874],[112,189,79,0.544968118810636],[112,190,64,-0.0012624681769446006],[112,190,65,0.033610999776726755],[112,190,66,0.07054048526200449],[112,190,67,0.1091489233935766],[112,190,68,0.14903716044390541],[112,190,69,0.18979630697506888],[112,190,70,0.2310201590147005],[112,190,71,0.2723176872766451],[112,190,72,0.313325594426051],[112,190,73,0.3537209403887218],[112,190,74,0.39323383570511217],[112,190,75,0.43163403327471345],[112,190,76,0.4683126732590857],[112,190,77,0.5023774237439458],[112,190,78,0.5330435499938124],[112,190,79,0.5596444392822396],[112,191,64,0.032444922213641966],[112,191,65,0.06667143320006107],[112,191,66,0.10282879273865407],[112,191,67,0.1405420543388276],[112,191,68,0.179416381127199],[112,191,69,0.21904930448185347],[112,191,70,0.2590430552604347],[112,191,71,0.2990169676226557],[112,191,72,0.3386199554469652],[112,191,73,0.3775430613412105],[112,191,74,0.41553207824764593],[112,191,75,0.4523737484099962],[112,191,76,0.4874718251050281],[112,191,77,0.519942224479879],[112,191,78,0.5490084787829135],[112,191,79,0.5740123089347792],[112,192,64,0.06450561971650806],[112,192,65,0.09813591973032654],[112,192,66,0.13357435383077326],[112,192,67,0.17044842148704265],[112,192,68,0.20836791549213374],[112,192,69,0.24693709926103585],[112,192,70,0.28576696163813853],[112,192,71,0.3244875492144276],[112,192,72,0.36276037615421225],[112,192,73,0.4002909115312448],[112,192,74,0.43684114417454784],[112,192,75,0.4722153694564792],[112,192,76,0.5058299704260901],[112,192,77,0.5368085537530961],[112,192,78,0.5643822575870725],[112,192,79,0.5879003983533655],[112,193,64,0.09454080313843474],[112,193,65,0.1276289399200695],[112,193,66,0.16240697701380846],[112,193,67,0.1985051705070357],[112,193,68,0.2355382039169418],[112,193,69,0.27311729787402333],[112,193,70,0.3108624025659756],[112,193,71,0.3484144729425189],[112,193,72,0.3854478266809132],[112,193,73,0.42168258491203886],[112,193,74,0.456897195707329],[112,193,75,0.4909137945919402],[112,193,76,0.5231611948714813],[112,193,77,0.5527699869849193],[112,193,78,0.578978107549207],[112,193,79,0.601141585755185],[112,194,64,0.12219899623165709],[112,194,65,0.15480079906358196],[112,194,66,0.18898085356275135],[112,194,67,0.22437246040693037],[112,194,68,0.2605953955663397],[112,194,69,0.29726796633464625],[112,194,70,0.33401915567317314],[112,194,71,0.3705008548688449],[112,194,72,0.4064001845056334],[112,194,73,0.44145190374939935],[112,194,74,0.4754509079463842],[112,194,75,0.5082371547895196],[112,194,76,0.5392514592542537],[112,194,77,0.5676305430281677],[112,194,78,0.592618192969126],[112,194,79,0.6135761307104524],[112,195,64,0.1471633077401919],[112,195,65,0.17933463789536283],[112,195,66,0.21298132934812392],[112,195,67,0.24773998674460945],[112,195,68,0.28323561334420694],[112,195,69,0.31909362724144297],[112,195,70,0.3549519717176451],[112,195,71,0.39047331972287264],[112,195,72,0.42535737248789074],[112,195,73,0.4593532522660987],[112,195,74,0.49227198920564],[112,195,75,0.5239710118552379],[112,195,76,0.5539024670727578],[112,195,77,0.5812082145953054],[112,195,78,0.6051368098351502],[112,195,79,0.6250545178296198],[112,196,64,0.16915776416635353],[112,196,65,0.20095254939835444],[112,196,66,0.23413079910895074],[112,196,67,0.2683326467122161],[112,196,68,0.3031883831487837],[112,196,69,0.3383304466253991],[112,196,70,0.3734055125231843],[112,196,71,0.4080866834750895],[112,196,72,0.4420857796123121],[112,196,73,0.4751657289796119],[112,196,74,0.5071530581197206],[112,196,75,0.5379219531240244],[112,196,76,0.5669349702019276],[112,196,77,0.5933379798903281],[112,196,78,0.6163830999741076],[112,196,79,0.6354398716845229],[112,197,64,0.18784595137170534],[112,197,65,0.21930993461988268],[112,197,66,0.252078783233645],[112,197,67,0.2857963877956454],[112,197,68,0.320098343654794],[112,197,69,0.35462392476642673],[112,197,70,0.38902816380223376],[112,197,71,0.4229940385304086],[112,197,72,0.4562447644658064],[112,197,73,0.48855619379005055],[112,197,74,0.519769320541764],[112,197,75,0.5497739369580544],[112,197,76,0.5780419725534549],[112,197,77,0.6037223539410367],[112,197,78,0.6260696977078248],[112,197,79,0.6444556593761194],[112,198,64,0.20265769183417015],[112,198,65,0.23381584170174574],[112,198,66,0.2662157637886546],[112,198,67,0.2995054592543175],[112,198,68,0.3333259075846997],[112,198,69,0.3673230270822846],[112,198,70,0.4011597473003198],[112,198,71,0.4345281934217784],[112,198,72,0.4671619825828338],[112,198,73,0.4988486321407941],[112,198,74,0.5294420798866573],[112,198,75,0.558846007106532],[112,198,76,0.5865409880891378],[112,198,77,0.6116790586548058],[112,198,78,0.6335171343852255],[112,198,79,0.6514285259174335],[112,199,64,0.2131091262952557],[112,199,65,0.24396609467020403],[112,199,66,0.27601906689907796],[112,199,67,0.3089206358391426],[112,199,68,0.34231731697148293],[112,199,69,0.37586149006235564],[112,199,70,0.4092234575233491],[112,199,71,0.4421036194707858],[112,199,72,0.47424476548417516],[112,199,73,0.5054444830636596],[112,199,74,0.5355676827866156],[112,199,75,0.5645297038809509],[112,199,76,0.5918193616536629],[112,199,77,0.6165928500360209],[112,199,78,0.6381100392522501],[112,199,79,0.6557461348324952],[112,200,64,0.21886265016796197],[112,200,65,0.24940568435804714],[112,200,66,0.2811176779941451],[112,200,67,0.3136564016608484],[112,200,68,0.3466741183317335],[112,200,69,0.3798294937691724],[112,200,70,0.41279962702793016],[112,200,71,0.4452922010629725],[112,200,72,0.47705775344129714],[112,200,73,0.5079020671577374],[112,200,74,0.5376986815548873],[112,200,75,0.5663719323014837],[112,200,76,0.5934187313345258],[112,200,77,0.6180012938791024],[112,200,78,0.6393838020650957],[112,200,79,0.6569441715894646],[112,201,64,0.21971796854448972],[112,201,65,0.2499195803107773],[112,201,66,0.2812828197183954],[112,201,67,0.31347130436422704],[112,201,68,0.34614330420779393],[112,201,69,0.37896360232765386],[112,201,70,0.41161547746870575],[112,201,71,0.44381280838082227],[112,201,72,0.47531229994862567],[112,201,73,0.5059258311123596],[112,201,74,0.5355329245799978],[112,201,75,0.5640639015221753],[112,201,76,0.5910238279520508],[112,201,77,0.6185125543746771],[112,201,78,0.6439497043337339],[112,201,79,0.6648949837248079],[112,202,64,0.2156027999462781],[112,202,65,0.24542320762426031],[112,202,66,0.2764182138997491],[112,202,67,0.3082580154461009],[112,202,68,0.340607185880596],[112,202,69,0.37313646348788054],[112,202,70,0.40553466039404373],[112,202,71,0.43752069319174025],[112,202,72,0.4688557350161788],[112,202,73,0.5054375397098811],[112,202,74,0.5429134333994341],[112,202,75,0.5780673091493924],[112,202,76,0.610196910928206],[112,202,77,0.6387164103271152],[112,202,78,0.6631508680395699],[112,202,79,0.6831307727988254],[112,203,64,0.20656322881662986],[112,203,65,0.2359525887140801],[112,203,66,0.2665500275747005],[112,203,67,0.2980330967172291],[112,203,68,0.3328103302220218],[112,203,69,0.374286584487604],[112,203,70,0.4144053756103656],[112,203,71,0.45344500332157117],[112,203,72,0.4918277684796454],[112,203,73,0.5295784845334796],[112,203,74,0.5658516385647256],[112,203,75,0.59982425832304],[112,203,76,0.6307971353956401],[112,203,77,0.6581888732388363],[112,203,78,0.6815300259050805],[112,203,79,0.7004573274655412],[112,204,64,0.1927537067556951],[112,204,65,0.23431940062801077],[112,204,66,0.2786988195363907],[112,204,67,0.3216590030726048],[112,204,68,0.3631347628429705],[112,204,69,0.4031584352502864],[112,204,70,0.44187477679300785],[112,204,71,0.47955649902501324],[112,204,72,0.5166146875273896],[112,204,73,0.5530631317132615],[112,204,74,0.5880548468077265],[112,204,75,0.6207685005648281],[112,204,76,0.6505083131252452],[112,204,77,0.6766977520548708],[112,204,78,0.6988733321514541],[112,204,79,0.7166785200193007],[112,205,64,0.22489386420060473],[112,205,65,0.2688454791930092],[112,205,66,0.3115590716086547],[112,205,67,0.3528968992363435],[112,205,68,0.39280119884007225],[112,205,69,0.43130779551432324],[112,205,70,0.4685603255447527],[112,205,71,0.5048250727741881],[112,205,72,0.5405007288784898],[112,205,73,0.5755891503571063],[112,205,74,0.6092419834352731],[112,205,75,0.6406398145151182],[112,205,76,0.6690906231019309],[112,205,77,0.6940231105742594],[112,205,78,0.7149801485460083],[112,205,79,0.7316123468205439],[112,206,64,0.26025717603580223],[112,206,65,0.30245393163638135],[112,206,66,0.3434494559643025],[112,206,67,0.38311674537606655],[112,206,68,0.4214052945076316],[112,206,69,0.45835403210391357],[112,206,70,0.4941048427882365],[112,206,71,0.5289166747716538],[112,206,72,0.5631746161997762],[112,206,73,0.5968676788440567],[112,206,74,0.6291462256273311],[112,206,75,0.6591930019041253],[112,206,76,0.6863200223508683],[112,206,77,0.7099615240814611],[112,206,78,0.7296670548377012],[112,206,79,0.7450946962545699],[112,207,64,0.29427243301624373],[112,207,65,0.3346822980287376],[112,207,66,0.37393199947414424],[112,207,67,0.4119051307075945],[112,207,68,0.4485581302309516],[112,207,69,0.4839325222125882],[112,207,70,0.5181677141470232],[112,207,71,0.5515143516543263],[112,207,72,0.5843426914838359],[112,207,73,0.6166279949511717],[112,207,74,0.6475194073672933],[112,207,75,0.6762020305061032],[112,207,76,0.7019921302964276],[112,207,77,0.7243297088962206],[112,207,78,0.7427712278834653],[112,207,79,0.7569824825637734],[112,208,64,0.32647228940687334],[112,208,65,0.3650879345163258],[112,208,66,0.40258895649388604],[112,208,67,0.43886924020732143],[112,208,68,0.47389171005657227],[112,208,69,0.5076998591077527],[112,208,70,0.5404298055213671],[112,208,71,0.572322876274673],[112,208,72,0.6037332634435074],[112,208,73,0.6346215869133983],[112,208,74,0.6641358170065602],[112,208,75,0.6914635621546777],[112,208,76,0.7159254915486525],[112,208,77,0.7369675248419547],[112,208,78,0.7541531894654059],[112,208,79,0.7671561455533953],[112,209,64,0.3564149277392224],[112,209,65,0.39325387748140517],[112,209,66,0.4290283669078976],[112,209,67,0.4636421058965883],[112,209,68,0.4970639073591935],[112,209,69,0.5293384948014082],[112,209,70,0.5605978064865415],[112,209,71,0.59107279620256],[112,209,72,0.6211003656205949],[112,209,73,0.6506256254165861],[112,209,74,0.6787953874635441],[112,209,75,0.7047998658194886],[112,209,76,0.7279642171174412],[112,209,77,0.7477403506328409],[112,209,78,0.7636989227990518],[112,209,79,0.7755215161709654],[112,210,64,0.38368970779337225],[112,210,65,0.41879418055213014],[112,210,66,0.45288907826748837],[112,210,67,0.48588731328442514],[112,210,68,0.5177628566054838],[112,210,69,0.5485608196872341],[112,210,70,0.5784080015138648],[112,210,71,0.6075239009478453],[112,210,72,0.636226924208863],[112,210,73,0.6644458365236564],[112,210,74,0.6913262790570822],[112,210,75,0.716061115744099],[112,210,76,0.7379800040543668],[112,210,77,0.7565408321795216],[112,210,78,0.7713213577325607],[112,210,79,0.7820110479593363],[112,211,64,0.40792229694784865],[112,211,65,0.44135872446112334],[112,211,66,0.4738452320229257],[112,211,67,0.5053031629679484],[112,211,68,0.535710791214141],[112,211,69,0.5651126791434357],[112,211,70,0.5936294690138988],[112,211,71,0.6214681079032482],[112,211,72,0.6489273355908928],[112,211,73,0.675918775533576],[112,211,74,0.7015868549739505],[112,211,75,0.7251270746449114],[112,211,76,0.7458735335219241],[112,211,77,0.7632900038132475],[112,211,78,0.7769612246367332],[112,211,79,0.7865844143831916],[112,212,64,0.42877928189855663],[112,212,65,0.4606374997537829],[112,212,66,0.49161021385016945],[112,212,67,0.5216262873913232],[112,212,68,0.5506673275130309],[112,212,69,0.5787763271021348],[112,212,70,0.6060667082025187],[112,212,71,0.6327317670081379],[112,212,72,0.6590494535893847],[112,212,73,0.684913501773648],[112,212,74,0.7094670493709421],[112,212,75,0.7319081619714972],[112,212,76,0.7515752472905571],[112,212,77,0.7679377824287726],[112,212,78,0.7805872769861075],[112,212,79,0.7892284720292575],[112,213,64,0.44597226174600235],[112,213,65,0.4763643623456055],[112,213,66,0.505940068071659],[112,213,67,0.5346347227626735],[112,213,68,0.5624321947928419],[112,213,69,0.5893728165847778],[112,213,70,0.6155616937893861],[112,213,71,0.6411773841328079],[112,213,72,0.6664759864325167],[112,213,73,0.6913326543247761],[112,213,74,0.7148891281112054],[112,213,75,0.7363459072280727],[112,213,76,0.755045502663233],[112,213,77,0.7704628345457908],[112,213,78,0.7821958826309517],[112,213,79,0.7899565896800638],[112,214,64,0.4592614224509113],[112,214,65,0.48832026192864264],[112,214,66,0.5166363761712538],[112,214,67,0.5441504361290292],[112,214,68,0.5708474114573331],[112,214,69,0.5967638272036271],[112,214,70,0.6219953584888742],[112,214,71,0.6467047631832806],[112,214,72,0.6711253034333883],[112,214,73,0.6951129286797215],[112,214,74,0.7178078421348459],[112,214,75,0.7384127883561235],[112,214,76,0.7562741058275614],[112,214,77,0.7708718162889177],[112,214,78,0.7818099837601574],[112,214,79,0.788807343261259],[112,215,64,0.46845859265854645],[112,215,65,0.4963359432273623],[112,215,66,0.5235485994035873],[112,215,67,0.5500413076095589],[112,215,68,0.5757989072704099],[112,215,69,0.6008529296295652],[112,215,70,0.625288503353662],[112,215,71,0.6492515669268449],[112,215,72,0.672951651383747],[112,215,73,0.6962249543345406],[112,215,74,0.7182099734639731],[112,215,75,0.7381114551783376],[112,215,76,0.7552792236356051],[112,215,77,0.7691979862863417],[112,215,78,0.7794774255551421],[112,215,79,0.7858425766625655],[112,216,64,0.4734297808914576],[112,216,65,0.500294120103668],[112,216,66,0.5265758854975969],[112,216,67,0.5522225677868591],[112,216,68,0.5772175916998064],[112,216,69,0.601586287025992],[112,216,70,0.6254021359307903],[112,216,71,0.6487932965381318],[112,216,72,0.6719447806618104],[112,216,73,0.6946725733130179],[112,216,74,0.7161132738420182],[112,216,75,0.7354733379036911],[112,216,76,0.7521056738112348],[112,216,77,0.7654991914870148],[112,216,78,0.7752686535346406],[112,216,79,0.7811448284322755],[112,217,64,0.4740971941106836],[112,217,65,0.5001311225111015],[112,217,66,0.525668339454266],[112,217,67,0.550657690256343],[112,217,68,0.5750798683574296],[112,217,69,0.5989527934488815],[112,217,70,0.6223372362402501],[112,217,71,0.6453426898657976],[112,217,72,0.6681289810542524],[112,217,73,0.6904915196241788],[112,217,74,0.7115647960074063],[112,217,75,0.7305566406937655],[112,217,76,0.746822593585116],[112,217,77,0.7598552258964643],[112,217,78,0.7692737795904743],[112,217,79,0.7748141243453674],[112,218,64,0.4704407376454755],[112,218,65,0.49583801629828705],[112,218,66,0.5208277584386181],[112,218,67,0.5453587393337616],[112,218,68,0.5694075955363844],[112,218,69,0.5929836492130056],[112,218,70,0.6161339505761042],[112,218,71,0.6389485384198165],[112,218,72,0.6615615272923574],[112,218,73,0.6837474996528705],[112,218,74,0.7046386176015689],[112,218,75,0.7234437202902877],[112,218,76,0.7395204867573035],[112,218,77,0.7523645622312111],[112,218,78,0.7615990167142721],[112,218,79,0.7669641358452249],[112,219,64,0.4624989964916412],[112,219,65,0.4874611958617015],[112,219,66,0.5121078307660439],[112,219,67,0.536386172920921],[112,219,68,0.5602674928447289],[112,219,69,0.5837513732243658],[112,219,70,0.6068702131301662],[112,219,71,0.6296939230793858],[112,219,72,0.6523305343023285],[112,219,73,0.6745336734833858],[112,219,74,0.6954329577112559],[112,219,75,0.7142378497038259],[112,219,76,0.7303076491873736],[112,219,77,0.7431404564916961],[112,219,78,0.7523624824150394],[112,219,79,0.7577177043588285],[112,220,64,0.45036969797824034],[112,220,65,0.4751024496475451],[112,220,66,0.4996137989827707],[112,220,67,0.5238481005294455],[112,220,68,0.547769993935855],[112,220,69,0.5713682522787564],[112,220,70,0.5946597954382018],[112,220,71,0.6176938685214501],[112,220,72,0.6405522221697855],[112,220,73,0.662967537156203],[112,220,74,0.6840666860452584],[112,220,75,0.7030593669637963],[112,220,76,0.7193059727122785],[112,220,77,0.7323064254539384],[112,220,78,0.7416893708278227],[112,220,79,0.7472017314857122],[112,221,64,0.4342096558027791],[112,221,65,0.4589184985028255],[112,221,66,0.48350158704055224],[112,221,67,0.5078989964626379],[112,221,68,0.5320675453355075],[112,221,69,0.555984227326455],[112,221,70,0.5796497836486172],[112,221,71,0.6030924163697804],[112,221,72,0.6263675908183757],[112,221,73,0.6491872058577379],[112,221,74,0.6706752247454073],[112,221,75,0.6900412089296176],[112,221,76,0.7066461274917318],[112,221,77,0.7199910970797161],[112,221,78,0.7297064935132442],[112,221,79,0.7355414350604262],[112,222,64,0.4142341954351299],[112,222,65,0.4391200068758616],[112,222,66,0.46397639156577364],[112,222,67,0.4887378681556058],[112,222,68,0.5133523513655958],[112,222,69,0.5377842167031653],[112,222,70,0.5620174836137399],[112,222,71,0.5860591170646898],[112,222,72,0.6099385044025464],[112,222,73,0.6333470980431344],[112,222,74,0.6554058428318591],[112,222,75,0.6753238301630043],[112,222,76,0.6924621227811042],[112,222,77,0.7063224338452155],[112,222,78,0.7165361889478322],[112,222,79,0.7228539710884183],[112,223,64,0.3907160608895942],[112,223,65,0.41597006686571064],[112,223,66,0.4412907372225487],[112,223,67,0.4666058796733148],[112,223,68,0.4918535651645371],[112,223,69,0.5169848763270327],[112,223,70,0.5419667538035924],[112,223,71,0.5667849404533716],[112,223,72,0.5914431854145445],[112,223,73,0.6156130204922371],[112,223,74,0.6384123432828841],[112,223,75,0.6590495068616853],[112,223,76,0.6768852461321785],[112,223,77,0.6914213289885858],[112,223,78,0.7022896007056441],[112,223,79,0.7092414215558969],[112,224,64,0.36398380286593607],[112,224,65,0.38978215512122216],[112,224,66,0.41574199617040153],[112,224,67,0.4417834303670447],[112,224,68,0.46783392580449207],[112,224,69,0.49383079686198206],[112,224,70,0.5197237660422904],[112,224,71,0.5454776051008677],[112,224,72,0.5710711185055469],[112,224,73,0.5961566542985386],[112,224,74,0.619849142748844],[112,224,75,0.6413560258541333],[112,224,76,0.6600373810212561],[112,224,77,0.6753945756757722],[112,224,78,0.6870593243304733],[112,224,79,0.6947831481128705],[112,225,64,0.33441964825829934],[112,225,65,0.3609175625887566],[112,225,66,0.3876693716156864],[112,225,67,0.41458668868852144],[112,225,68,0.4415858415048855],[112,225,69,0.4685901378468863],[112,225,70,0.4955321940666992],[112,225,71,0.5223563263214335],[112,225,72,0.5490173640207946],[112,225,73,0.5751494417910941],[112,225,74,0.5998647439004605],[112,225,75,0.622369758655518],[112,225,76,0.6420237029049276],[112,225,77,0.6583272090850607],[112,225,78,0.6709114228991608],[112,225,79,0.679527511629984],[112,226,64,0.3024568510333887],[112,226,65,0.32978229710984186],[112,226,66,0.3574503454579134],[112,226,67,0.3853635811627837],[112,226,68,0.4134269189431617],[112,226,69,0.4415496987914051],[112,226,70,0.4696478299080727],[112,226,71,0.49764598293089696],[112,226,72,0.525476281249227],[112,226,73,0.5527558743897821],[112,226,74,0.5785946004116562],[112,226,75,0.6021981205850508],[112,226,76,0.6229247537035799],[112,226,77,0.640274221410301],[112,226,78,0.6538768112758897],[112,226,79,0.6634829576289397],[112,227,64,0.2684954143603786],[112,227,65,0.29674331173351776],[112,227,66,0.32541766966077434],[112,227,67,0.3544117823920715],[112,227,68,0.3836191629483917],[112,227,69,0.4129355120834433],[112,227,70,0.4422607232162705],[112,227,71,0.4715009233348003],[112,227,72,0.5005670865302636],[112,227,73,0.5290608526166237],[112,227,74,0.5560902950884711],[112,227,75,0.5808605492064716],[112,227,76,0.6027291685232147],[112,227,77,0.6211949508802023],[112,227,78,0.6358871882683161],[112,227,79,0.6465553405517461],[112,228,64,0.24044920270167927],[112,228,65,0.26179993940269924],[112,228,66,0.2915378028467726],[112,228,67,0.3216651850914971],[112,228,68,0.35206438254227707],[112,228,69,0.38261794688345424],[112,228,70,0.41321059381306724],[112,228,71,0.44373113771324985],[112,228,72,0.4740710690845527],[112,228,73,0.503818058995083],[112,228,74,0.5320790125979891],[112,228,75,0.5580588483592549],[112,228,76,0.5811144923843778],[112,228,77,0.6007438059890252],[112,228,78,0.61657494244984],[112,228,79,0.6283561329353777],[112,229,64,0.2446911233974169],[112,229,65,0.24253502476007105],[112,229,66,0.2557258631305161],[112,229,67,0.2870080768136481],[112,229,68,0.3186168370556059],[112,229,69,0.35042214630135426],[112,229,70,0.3822944665790052],[112,229,71,0.41410659011932116],[112,229,72,0.4457322194990114],[112,229,73,0.4767465892044965],[112,229,74,0.5062559945356527],[112,229,75,0.5334654070624705],[112,229,76,0.5577312234324806],[112,229,77,0.578550314255007],[112,229,78,0.5955495069410579],[112,229,79,0.608475502498836],[112,230,64,0.24752594843271897],[112,230,65,0.24623283038082688],[112,230,66,0.23982225078743313],[112,230,67,0.2504054897643876],[112,230,68,0.2832116172066237],[112,230,69,0.3162541316539024],[112,230,70,0.3493902387819613],[112,230,71,0.3824780399349207],[112,230,72,0.4153751501150009],[112,230,73,0.44764587374711956],[112,230,74,0.47839642711056235],[112,230,75,0.5068320815869971],[112,230,76,0.5323087814933019],[112,230,77,0.5543223323434147],[112,230,78,0.5724980275422132],[112,230,79,0.5865807135114011],[112,231,64,0.24905474370991548],[112,231,65,0.24857411273251484],[112,231,66,0.24290562937957197],[112,231,67,0.23201048716447836],[112,231,68,0.2458513928670194],[112,231,69,0.2800876968597711],[112,231,70,0.3144437339577112],[112,231,71,0.3487642643519944],[112,231,72,0.3828924908753515],[112,231,73,0.41638324889766576],[112,231,74,0.44834318903723325],[112,231,75,0.47797812236292747],[112,231,76,0.5046436160901252],[112,231,77,0.5278343371219161],[112,231,78,0.5471738384328749],[112,231,79,0.5624047882953703],[112,232,64,0.24937242314906422],[112,232,65,0.24965627529114243],[112,232,66,0.24469961035451898],[112,232,67,0.2344525949358735],[112,232,68,0.218978318596845],[112,232,69,0.24195102886021996],[112,232,70,0.27745546144711897],[112,232,71,0.3129389663371152],[112,232,72,0.348231950788372],[112,232,73,0.38288117389476745],[112,232,74,0.4159942270937982],[112,232,75,0.44677771106810477],[112,232,76,0.47458690850369567],[112,232,77,0.49891529619057856],[112,232,78,0.5193845045376093],[112,232,79,0.5357347245015343],[112,233,64,0.24856740113346548],[112,233,65,0.2495704494775756],[112,233,66,0.2452989640231881],[112,233,67,0.23569237963365597],[112,233,68,0.22080431520848448],[112,233,69,0.2019131346899994],[112,233,70,0.23846716034533855],[112,233,71,0.2750174448394857],[112,233,72,0.31138311968394206],[112,233,73,0.3471041669128282],[112,233,74,0.3812896297357748],[112,233,75,0.4131471761643387],[112,233,76,0.4420319340852913],[112,233,77,0.4674361821458893],[112,233,78,0.48897949300946475],[112,233,79,0.5063993289813147],[112,234,64,0.24672046328666813],[112,234,65,0.24840060477159048],[112,234,66,0.24479148072529217],[112,234,67,0.23582208398881532],[112,234,68,0.2215363663408666],[112,234,69,0.20209462340670403],[112,234,70,0.19754812786416193],[112,234,71,0.23504302724338516],[112,234,72,0.2723640102625911],[112,234,73,0.30904545981506154],[112,234,74,0.3441983987660882],[112,234,75,0.37703188688189265],[112,234,76,0.40690108482339693],[112,234,77,0.43329713057918173],[112,234,78,0.4558374738315651],[112,234,79,0.4742566682557715],[112,235,64,0.2439028555807291],[112,235,65,0.24622188082757684],[112,235,66,0.24325653686498294],[112,235,67,0.23492565490121609],[112,235,68,0.2212633089667086],[112,235,69,0.20242050764587619],[112,235,70,0.1786675684422065],[112,235,71,0.19307326406451536],[112,235,72,0.23120734043712876],[112,235,73,0.2687133716873886],[112,235,74,0.3047049190611231],[112,235,75,0.33839282565211065],[112,235,76,0.3691325521639432],[112,235,77,0.3964142418095259],[112,235,78,0.41985324953694797],[112,235,79,0.43918113558169725],[112,236,64,0.2401735917761943],[112,236,65,0.2430981415923701],[112,236,66,0.24076288731087392],[112,236,67,0.23307676407461853],[112,236,68,0.2200637457402092],[112,236,69,0.20186482634864428],[112,236,70,0.17874068357811887],[112,236,71,0.15107502417851645],[112,236,72,0.18793672886676244],[112,236,73,0.22610758280899407],[112,236,74,0.2627853296151643],[112,236,75,0.29718308538184857],[112,236,76,0.3286569885509789],[112,236,77,0.35669645205230716],[112,236,78,0.3809148872237124],[112,236,79,0.4010408995093322],[112,237,64,0.23557597919365375],[112,237,65,0.23907875142506246],[112,237,66,0.2373656841602962],[112,237,67,0.23033606007564847],[112,237,68,0.21800351960705577],[112,237,69,0.20049831698140003],[112,237,70,0.17807025381861308],[112,237,71,0.1510922903041746],[112,237,72,0.1422888586032285],[112,237,73,0.18094201405093122],[112,237,74,0.2181314813290582],[112,237,75,0.2530735098984359],[112,237,76,0.28512564049347267],[112,237,77,0.31377714063014894],[112,237,78,0.3386399206263136],[112,237,79,0.35943993013427017],[112,238,64,0.2301333628164902],[112,238,65,0.23419457321840825],[112,238,66,0.2331027218673967],[112,238,67,0.22674765181632373],[112,238,68,0.21513242558981688],[112,238,69,0.19837584306660283],[112,238,70,0.17671562896639087],[112,238,71,0.15051228994090998],[112,238,72,0.12025364126919995],[112,238,73,0.13273428116299318],[112,238,74,0.1702423036296159],[112,238,75,0.2055458454133841],[112,238,76,0.23800510610735678],[112,238,77,0.2671102678805342],[112,238,78,0.292472600291426],[112,238,79,0.31381605582212807],[112,239,64,0.2238440877254235],[112,239,65,0.22845318852242996],[112,239,66,0.22798990873569563],[112,239,67,0.2223348234607531],[112,239,68,0.21148015974935075],[112,239,69,0.19553256674984965],[112,239,70,0.17471654420713398],[112,239,71,0.14937852932166595],[112,239,72,0.11999164196778034],[112,239,73,0.08716108827168075],[112,239,74,0.11881502249804902],[112,239,75,0.1542832432440422],[112,239,76,0.18696599520937787],[112,239,77,0.21635581847598628],[112,239,78,0.24206454240287045],[112,239,79,0.26381507746465543],[112,240,64,0.21667567986452466],[112,240,65,0.22183333966990432],[112,240,66,0.22201596477477975],[112,240,67,0.2170949807556918],[112,240,68,0.20705150532190852],[112,240,69,0.1919793649710769],[112,240,70,0.17208875582914826],[112,240,71,0.1477105486742254],[112,240,72,0.11930123814442019],[112,240,73,0.08744853613016626],[112,240,74,0.063742870184376],[112,240,75,0.09916794311846988],[112,240,76,0.13188056677406723],[112,240,77,0.16137736832879723],[112,240,78,0.18727219601577533],[112,240,79,0.20928810332685716],[112,241,64,0.20855824513855029],[112,241,65,0.2142785939035606],[112,241,66,0.21513634592095054],[112,241,67,0.21099382878475723],[112,241,68,0.20182075603172298],[112,241,69,0.1876974892396683],[112,241,70,0.16881892762699002],[112,241,71,0.14549902515295912],[112,241,72,0.11817593511889084],[112,241,73,0.08741778227062673],[112,241,74,0.05392906240165597],[112,241,75,0.04025755927588702],[112,241,76,0.07279908158539661],[112,241,77,0.1022185567244275],[112,241,78,0.1281334945020608],[112,241,79,0.15026844500916337],[112,242,64,0.24830958538038378],[112,242,65,0.21599469162049842],[112,242,66,0.2072663946222127],[112,242,67,0.2039587811467046],[112,242,68,0.19572537657950326],[112,242,69,0.18263246901391128],[112,242,70,0.16485876798953075],[112,242,71,0.14270013415315433],[112,242,72,0.11657491772693308],[112,242,73,0.08702990578425043],[112,242,74,0.054746878332655124],[112,242,75,0.02051221118092525],[112,242,76,0.009927142540428702],[112,242,77,0.039080520982985936],[112,242,78,0.06484544290724557],[112,242,79,0.08694942106371857],[112,243,64,0.3014565235431607],[112,243,65,0.27072243259193096],[112,243,66,0.23842465045005512],[112,243,67,0.204746894704112],[112,243,68,0.18865890030671312],[112,243,69,0.17668725868467156],[112,243,70,0.16011841767232451],[112,243,71,0.13922916900778282],[112,243,72,0.11441689329014829],[112,243,73,0.08620568776079375],[112,243,74,0.05525308276163424],[112,243,75,0.022321075877275706],[112,243,76,-0.012321235964411717],[112,243,77,-0.027699706353033732],[112,243,78,-0.0022573587832387665],[112,243,79,0.019663068262969166],[112,244,64,0.35452502659950447],[112,244,65,0.3256675767746319],[112,244,66,0.2951468082367394],[112,244,67,0.26314382775105244],[112,244,68,0.22986116029512726],[112,244,69,0.19552123284080902],[112,244,70,0.1603647458791641],[112,244,71,0.13487318949347857],[112,244,72,0.11149188956126431],[112,244,73,0.08473707730578747],[112,244,74,0.0552408965577877],[112,244,75,0.02373976565605214],[112,244,76,-0.009501393321205753],[112,244,77,-0.044602309385661114],[112,244,78,-0.07272325646553077],[112,244,79,-0.05114023947674676],[112,245,64,0.4070565040851759],[112,245,65,0.3803606707300766],[112,245,66,0.3518969654695222],[112,245,67,0.32184299950317113],[112,245,68,0.2904003176779767],[112,245,69,0.25779312977488],[112,245,70,0.22426691916871044],[112,245,71,0.19008692886129358],[112,245,72,0.15553858765791825],[112,245,73,0.12110943654040875],[112,245,74,0.08756893743668658],[112,245,75,0.05559937779453472],[112,245,76,0.02576410798788817],[112,245,77,-0.001484064003755295],[112,245,78,-0.025795088735114186],[112,245,79,-0.046914502254072454],[112,246,64,0.45856017677493277],[112,246,65,0.434295641629979],[112,246,66,0.4081546266750612],[112,246,67,0.3803103693095333],[112,246,68,0.3509627777245645],[112,246,69,0.3203374493397518],[112,246,70,0.2886845567227052],[112,246,71,0.25627760099159524],[112,246,72,0.22341393237078336],[112,246,73,0.19058132950060166],[112,246,74,0.15852489338800924],[112,246,75,0.12790337108390892],[112,246,76,0.09926035520962814],[112,246,77,0.07303259556044171],[112,246,78,0.04955767579799049],[112,246,79,0.02908105523161622],[112,247,64,0.5085282014301117],[112,247,65,0.4869453013296798],[112,247,66,0.4633742746946254],[112,247,67,0.4379831180698057],[112,247,68,0.41096943472493186],[112,247,69,0.3825597779831329],[112,247,70,0.3530088527441385],[112,247,71,0.322598575202072],[112,247,72,0.2916387166146561],[112,247,73,0.26061712271556214],[112,247,74,0.23025268696617868],[112,247,75,0.20117867238186088],[112,247,76,0.17391708775552625],[112,247,77,0.14888693610641213],[112,247,78,0.12641180261968338],[112,247,79,0.10672678207690972],[112,248,64,0.5564495724237076],[112,248,65,0.5377756386604263],[112,248,66,0.5170000164572076],[112,248,67,0.4942846118599956],[112,248,68,0.46982404507894693],[112,248,69,0.4438453539271793],[112,248,70,0.41660754687882273],[112,248,71,0.3884010057463604],[112,248,72,0.35954828128538946],[112,248,73,0.33053712573551064],[112,248,74,0.3020586894979802],[112,248,75,0.27471910789292775],[112,248,76,0.2490172331123335],[112,248,77,0.22535284088106775],[112,248,78,0.2040341496409528],[112,248,79,0.1852846522578684],[112,249,64,0.6018228002410569],[112,249,65,0.5862588999384967],[112,249,66,0.5684790309625747],[112,249,67,0.5486381841184091],[112,249,68,0.5269273125561349],[112,249,69,0.5035734274653857],[112,249,70,0.4788395356265296],[112,249,71,0.4530244188186351],[112,249,72,0.4264636093057915],[112,249,73,0.39964461514633076],[112,249,74,0.3732296537671731],[112,249,75,0.3477964250647896],[112,249,76,0.32381933833743126],[112,249,77,0.301677699755051],[112,249,78,0.28166318416948805],[112,249,79,0.2639865912649295],[112,250,64,0.6441673668571528],[112,250,65,0.6318854576923494],[112,250,66,0.617273819475576],[112,250,67,0.6004797363932861],[112,250,68,0.5816898104795171],[112,250,69,0.5611304781611492],[112,250,70,0.5390683617982288],[112,250,71,0.5158104562193295],[112,250,72,0.49170531120561756],[112,250,73,0.4672400508461194],[112,250,74,0.4430471413878496],[112,250,75,0.4196749031028527],[112,250,76,0.39757232852839836],[112,250,77,0.37709727432552975],[112,250,78,0.3585239082509213],[112,250,79,0.3420494112420771],[112,251,64,0.6830339579900978],[112,251,65,0.6741744676071485],[112,251,66,0.6628732579309171],[112,251,67,0.649269157651171],[112,251,68,0.6335437408323732],[112,251,69,0.615922288946785],[112,251,70,0.5966745820180754],[112,251,71,0.5761155188754106],[112,251,72,0.5546065324807697],[112,251,73,0.5326342359171705],[112,251,74,0.5108009158846576],[112,251,75,0.4896249519995201],[112,251,76,0.46952927764126257],[112,251,77,0.4508496004915352],[112,251,78,0.4338418480993255],[112,251,79,0.4186888384724266],[112,252,64,0.7180134722314284],[112,252,65,0.7126833136875749],[112,252,66,0.7048024515494768],[112,252,67,0.6945005621472716],[112,252,68,0.681953530289341],[112,252,69,0.6673848771245633],[112,252,70,0.6510670122718687],[112,252,71,0.6333223102170743],[112,252,72,0.6145247827337141],[112,252,73,0.5951604200955387],[112,252,74,0.5758013014821495],[112,252,75,0.5569357000805368],[112,252,76,0.5389601916599323],[112,252,77,0.5221879285044554],[112,252,78,0.5068561076196627],[112,252,79,0.49313263321301604],[112,253,64,0.7487448070519589],[112,253,65,0.7470158416373633],[112,253,66,0.7426313916644055],[112,253,67,0.7357113458558393],[112,253,68,0.7264252631697],[112,253,69,0.7149942822674329],[112,253,70,0.7016928514994641],[112,253,71,0.6868502794081817],[112,253,72,0.6708526865922689],[112,253,73,0.6541853468351765],[112,253,74,0.6373905076001084],[112,253,75,0.6209265700651133],[112,253,76,0.6051638041133891],[112,253,77,0.5903927004901275],[112,253,78,0.5768314860185353],[112,253,79,0.564632801875051],[112,254,64,0.7749214216847634],[112,254,65,0.7768293804574091],[112,254,66,0.7759824147590688],[112,254,67,0.7724900614628563],[112,254,68,0.766514951315325],[112,254,69,0.7582752110221149],[112,254,70,0.7480466832340261],[112,254,71,0.7361649644334932],[112,254,72,0.7230276564099983],[112,254,73,0.7091192439700527],[112,254,74,0.6949529190584245],[112,254,75,0.6809578436435555],[112,254,76,0.6674783839445034],[112,254,77,0.6547825654465406],[112,254,78,0.64306965950735],[112,254,79,0.6324769015538232],[112,255,64,0.7962966768840838],[112,255,65,0.8018405522610199],[112,255,66,0.8045364637152033],[112,255,67,0.8044831119191795],[112,255,68,0.8018356408912681],[112,255,69,0.7968085388123315],[112,255,70,0.789678355285685],[112,255,71,0.7807862350400993],[112,255,72,0.7705404867454434],[112,255,73,0.7594247579713161],[112,255,74,0.7479243519884167],[112,255,75,0.7364402145691537],[112,255,76,0.7252915557270886],[112,255,77,0.7147244317136191],[112,255,78,0.7049194270942631],[112,255,79,0.6959984369045602],[112,256,64,0.8126879515606439],[112,256,65,0.8218298703069781],[112,256,66,0.8280381512721301],[112,256,67,0.8314002625551875],[112,256,68,0.8320633561101856],[112,256,69,0.8302376684435643],[112,256,70,0.8261997374711746],[112,256,71,0.8202954355347813],[112,256,72,0.8129428706220708],[112,256,73,0.8046248318015359],[112,256,74,0.7958002754527859],[112,256,75,0.7868433302666396],[112,256,76,0.7780491322336377],[112,256,77,0.7696425569176611],[112,256,78,0.7617860204675855],[112,256,79,0.754586349366994],[112,257,64,0.8239795362933627],[112,257,65,0.8366451252502323],[112,257,66,0.8462996256966814],[112,257,67,0.8530189717563945],[112,257,68,0.8569418798799127],[112,257,69,0.858273745608472],[112,257,70,0.8572903573884147],[112,257,71,0.8543414274361074],[112,257,72,0.8498538375676039],[112,257,73,0.8443095263645407],[112,257,74,0.8381429987725815],[112,257,75,0.8317033219554755],[112,257,76,0.82526295935187],[112,257,77,0.8190266753884405],[112,257,78,0.813139477968546],[112,257,79,0.8076935987364373],[112,258,64,0.830124303717488],[112,258,65,0.8462035596104299],[112,258,66,0.8592032386642267],[112,258,67,0.8691875402006164],[112,258,68,0.8762863713749476],[112,258,69,0.88069973129392],[112,258,70,0.8827019142371577],[112,258,71,0.8826455319825577],[112,258,72,0.8809651134341874],[112,258,73,0.8781417855524606],[112,258,74,0.8745878245629279],[112,258,75,0.8706293232898576],[112,258,76,0.8665177733521165],[112,258,77,0.8624391630511217],[112,258,78,0.8585220826556816],[112,258,79,0.8548448370837531],[112,259,64,0.8311441557888835],[112,259,65,0.850492830457809],[112,259,66,0.8667030153501145],[112,259,67,0.8798270786557925],[112,259,68,0.8899858205307465],[112,259,69,0.8973733310883041],[112,259,70,0.902261670684202],[112,259,71,0.9050053724949899],[112,259,72,0.9060454019975136],[112,259,73,0.9058621448879299],[112,259,74,0.9048481674753089],[112,259,75,0.9033089775130713],[112,259,76,0.901477070503023],[112,259,77,0.8995212397903354],[112,259,78,0.8975548644580761],[112,259,79,0.8956431750213124],[112,260,64,0.8271292479248473],[112,260,65,0.8495707603170478],[112,260,66,0.8688249267323438],[112,260,67,0.8849322943394897],[112,260,68,0.8980043394620667],[112,260,69,0.9082287813906362],[112,260,70,0.9158747227748254],[112,260,71,0.9212976165952865],[112,260,72,0.9249435883369477],[112,260,73,0.9272923837636613],[112,260,74,0.9287196386487906],[112,260,75,0.9295129331287468],[112,260,76,0.9298879890382792],[112,260,77,0.9299982092892592],[112,260,78,0.9299431664204137],[112,260,79,0.9297760403180343],[112,261,64,0.8182359900212071],[112,261,65,0.8435638762886166],[112,261,66,0.8656659641048141],[112,261,67,0.8845710958392504],[112,261,68,0.9003812908043284],[112,261,69,0.9132774925201534],[112,261,70,0.9235251478890276],[112,261,71,0.9314796182796155],[112,261,72,0.9375908639948975],[112,261,73,0.9423381212774831],[112,261,74,0.9460830958681213],[112,261,75,0.9490983280868031],[112,261,76,0.9515852034720197],[112,261,77,0.953683736341225],[112,261,78,0.955481275037266],[112,261,79,0.9570201288608114],[112,262,64,0.8046838243457337],[112,262,65,0.8326647373878445],[112,262,66,0.8573920158015218],[112,262,67,0.8788830165942997],[112,262,68,0.897230252978668],[112,262,69,0.912607548727294],[112,262,70,0.9252760307435708],[112,262,71,0.9355899598474116],[112,262,72,0.9440017739166969],[112,262,73,0.9509903556642324],[112,262,74,0.9569066594302205],[112,262,75,0.9620112624857144],[112,262,76,0.9664938312646447],[112,262,77,0.9704831616357016],[112,262,78,0.9740561146785409],[112,262,79,0.9772454479643464],[112,263,64,0.7867507803080258],[112,263,65,0.8171280501017042],[112,263,66,0.8442345461315783],[112,263,67,0.8680764569383684],[112,263,68,0.8887368223803056],[112,263,69,0.9063820651055166],[112,263,70,0.9212683674391734],[112,263,71,0.933747893685334],[112,263,72,0.9442741851701181],[112,263,73,0.9533259473235145],[112,263,74,0.9612466937179713],[112,263,75,0.9682882597899116],[112,263,76,0.9746313518377783],[112,263,77,0.9803958540172864],[112,263,78,0.9856500061046585],[112,263,79,0.9904184520278791],[112,264,64,0.7647678061054968],[112,264,65,0.7972655721630881],[112,264,66,0.8264860765249553],[112,264,67,0.8524247447036527],[112,264,68,0.8751552524903807],[112,264,69,0.8948364014042631],[112,264,70,0.9117188475532703],[112,264,71,0.9261516839067254],[112,264,72,0.9385881774451711],[112,264,73,0.9495070454440949],[112,264,74,0.9592477544821794],[112,264,75,0.9680567165632797],[112,264,76,0.9761085379394211],[112,264,77,0.9835166002188492],[112,264,78,0.9903424890726694],[112,264,79,0.9966042705401085],[112,265,64,0.7391118772460796],[112,265,65,0.7734398045430508],[112,265,66,0.8044944688892816],[112,265,67,0.8322610143861081],[112,265,68,0.8568039299113099],[112,265,69,0.8782742327429656],[112,265,70,0.8969165142781246],[112,265,71,0.9130758478462193],[112,265,72,0.9272038553337025],[112,265,73,0.9397794582243175],[112,265,74,0.9511415018309827],[112,265,75,0.9615343407179339],[112,265,76,0.9711293993583738],[112,265,77,0.9800360320678076],[112,265,78,0.9883112090322164],[112,265,79,0.9959680284311089],[112,266,64,0.7101978819469303],[112,266,65,0.7460564716604295],[112,266,66,0.7786560111772539],[112,266,67,0.8079719048717696],[112,266,68,0.8340596873254973],[112,266,69,0.8570624772260738],[112,266,70,0.8772183026043757],[112,266,71,0.8948672974097285],[112,266,72,0.910458082389153],[112,266,73,0.9244699666890204],[112,266,74,0.9372445789272945],[112,266,75,0.9490275782789526],[112,266,76,0.9599901389887149],[112,266,77,0.9702400911664122],[112,266,78,0.9798318679122918],[112,266,79,0.9887752587722959],[112,267,64,0.6784692834096123],[112,267,65,0.7155557898092234],[112,267,66,0.7494073051649204],[112,267,67,0.7799900757242484],[112,267,68,0.8073509533774437],[112,267,69,0.8316250804590338],[112,267,70,0.8530434555498755],[112,267,71,0.8719403802795427],[112,267,72,0.8887601369661058],[112,267,73,0.9039825821025],[112,267,74,0.9179554563937419],[112,267,75,0.9309290286644585],[112,267,76,0.9430771212436414],[112,267,77,0.9545085310452803],[112,267,78,0.9652772389979738],[112,267,79,0.975391407823548],[112,268,64,0.6443875589717899],[112,268,65,0.6824025238038126],[112,268,66,0.7172159564409963],[112,268,67,0.7487855420336315],[112,268,68,0.7771497394795334],[112,268,69,0.802435656965565],[112,268,70,0.8248668184341947],[112,268,71,0.8447708209749912],[112,268,72,0.8625862898401302],[112,268,73,0.8787937469780694],[112,268,74,0.8937502424256921],[112,268,75,0.9077138484816744],[112,268,76,0.9208638528193447],[112,268,77,0.9333124567908826],[112,268,78,0.9451152458978733],[112,268,79,0.9562804324282499],[112,269,64,0.608420416134994],[112,269,65,0.6470748318415787],[112,269,66,0.6825700666067376],[112,269,67,0.7148558278262871],[112,269,68,0.7439624635409943],[112,269,69,0.7700089885057106],[112,269,70,0.7932110111982779],[112,269,71,0.813888561768126],[112,269,72,0.8324733036073722],[112,269,73,0.8494464796836508],[112,269,74,0.8651774586118023],[112,269,75,0.8799351438383874],[112,269,76,0.8939069758083426],[112,269,77,0.907210902146401],[112,269,78,0.9199061056017096],[112,269,79,0.9320024897556746],[112,270,64,0.5710287854688401],[112,270,65,0.6100518985832784],[112,270,66,0.6459665276867298],[112,270,67,0.6787149380359291],[112,270,68,0.7083196106203735],[112,270,69,0.7348913792949945],[112,270,70,0.758637478769562],[112,270,71,0.7798695034547352],[112,270,72,0.7990108538641826],[112,270,73,0.8165434626436963],[112,270,74,0.8328517814623704],[112,270,75,0.8482183511700889],[112,270,76,0.862841273162535],[112,270,77,0.8768464440862233],[112,270,78,0.8902985356282701],[112,270,79,0.9032107193909498],[112,271,64,0.532652590391748],[112,271,65,0.571800356451246],[112,271,66,0.6078981187506732],[112,271,67,0.6408811490360276],[112,271,68,0.6707642305016142],[112,271,69,0.6976498681247848],[112,271,70,0.7217364194726655],[112,271,71,0.7433261459807984],[112,271,72,0.7628328721669096],[112,271,73,0.780739074137549],[112,271,74,0.7974467496456099],[112,271,75,0.8132546065829112],[112,271,76,0.8283736865060961],[112,271,77,0.8429398548641736],[112,271,78,0.8570250252638509],[112,271,79,0.8706471177727115],[112,272,64,0.4936952938278891],[112,272,65,0.5327594951451438],[112,272,66,0.5688394047458802],[112,272,67,0.6018636177332874],[112,272,68,0.6318392721934788],[112,272,69,0.6588602973836011],[112,272,70,0.6831155914853989],[112,272,71,0.7048971289241415],[112,272,72,0.7246078107716151],[112,272,73,0.7427303636940323],[112,272,74,0.7596864369316416],[112,272,75,0.7757931037121749],[112,272,76,0.7912763462980361],[112,272,77,0.8062837915353396],[112,272,78,0.8208961708910588],[112,272,79,0.8351375049783245],[112,273,64,0.454507221740218],[112,273,65,0.49332525937510735],[112,273,66,0.5292314375403326],[112,273,67,0.5621478092220293],[112,273,68,0.5920737553521218],[112,273,69,0.6190942389791764],[112,273,70,0.6433879973398823],[112,273,71,0.6652356718310676],[112,273,72,0.685027829153478],[112,273,73,0.7032469710820037],[112,273,74,0.7203360908439247],[112,273,75,0.7366324400962472],[112,273,76,0.7523786143441137],[112,273,77,0.7677355229511532],[112,273,78,0.7827940754076119],[112,273,79,0.797585583856308],[112,274,64,0.41540883019287533],[112,274,65,0.4538675650335272],[112,274,66,0.48949317208326204],[112,274,67,0.5222010928962353],[112,274,68,0.5519826539261472],[112,274,69,0.5789132988761331],[112,274,70,0.6031607663132263],[112,274,71,0.6249932125473002],[112,274,72,0.644787384796499],[112,274,73,0.6630248848557782],[112,274,74,0.6801712955623855],[112,274,75,0.6965854390618836],[112,274,76,0.7125278333219197],[112,274,77,0.7281738856140593],[112,274,78,0.7436257951584772],[112,274,79,0.7589231649315487],[112,275,64,0.37697266430865745],[112,275,65,0.4149632404332808],[112,275,66,0.450205531111345],[112,275,67,0.4826083306806667],[112,275,68,0.5121546587832767],[112,275,69,0.5389099445537203],[112,275,70,0.5630301625700727],[112,275,71,0.5847699205675776],[112,275,72,0.6044907659217262],[112,275,73,0.6226726808872819],[112,275,74,0.6398047584805174],[112,275,75,0.6562684581402666],[112,275,76,0.6723432365124928],[112,275,77,0.6882199530312367],[112,275,78,0.7040129788052876],[112,275,79,0.7197710088106222],[112,276,64,0.3398313268919476],[112,276,65,0.377229583976159],[112,276,66,0.4119704066094567],[112,276,67,0.4439560435556798],[112,276,68,0.4731611020245361],[112,276,69,0.49964065782848543],[112,276,70,0.5235383231902081],[112,276,71,0.5450942722005676],[112,276,72,0.5646536613658977],[112,276,73,0.5826941655400992],[112,276,74,0.5997290453497174],[112,276,75,0.6161631877101477],[112,276,76,0.6322957467717972],[112,276,77,0.648333749915651],[112,276,78,0.6644044026533231],[112,276,79,0.6805660924316459],[112,277,64,0.3044989298865304],[112,277,65,0.34117204374369675],[112,277,66,0.37528447760807915],[112,277,67,0.4067321380706329],[112,277,68,0.43548122745957557],[112,277,69,0.4615762552534288],[112,277,70,0.48514801266450813],[112,277,71,0.5064215103927762],[112,277,72,0.5257244941054444],[112,277,73,0.5435316639067906],[112,277,74,0.5603808365030987],[112,277,75,0.5767008335006827],[112,277,76,0.5928110011040092],[112,277,77,0.6089350050355007],[112,277,78,0.6252133215825628],[112,277,79,0.6417144247718828],[112,278,64,0.2713625614785094],[112,278,65,0.30717524186287065],[112,278,66,0.34052980307087943],[112,278,67,0.37131607963015906],[112,278,68,0.39949195643376423],[112,278,69,0.4250912584977398],[112,278,70,0.4482316092715154],[112,278,71,0.4691222575010419],[112,278,72,0.48807266931344184],[112,278,73,0.5055539147951802],[112,278,74,0.5221284909604778],[112,278,75,0.5382493821161659],[112,278,76,0.5542563586698481],[112,278,77,0.5703899502227393],[112,278,78,0.586804113753606],[112,278,79,0.603577596893855],[112,279,64,0.24067389598125627],[112,279,65,0.27549395991667547],[112,279,66,0.30796419760613286],[112,279,67,0.33796867461365776],[112,279,68,0.3654570933567757],[112,279,69,0.39045254068485225],[112,279,70,0.41305920947667085],[112,279,71,0.43347009425715477],[112,279,72,0.45197564305416016],[112,279,73,0.46904264748709734],[112,279,74,0.48525816107918107],[112,279,75,0.5010992943689225],[112,279,76,0.5169262230333377],[112,279,77,0.5329963297283763],[112,279,78,0.5494770417920918],[112,279,79,0.5664573648105978],[112,280,64,0.21253969317657603],[112,280,65,0.24624303099388123],[112,280,66,0.27771053386187006],[112,280,67,0.3068208017479804],[112,280,68,0.33351550518966444],[112,280,69,0.35780697308832665],[112,280,70,0.37978576028812594],[112,280,71,0.39962819493955587],[112,280,72,0.417605075490016],[112,280,73,0.43417827110078433],[112,280,74,0.44995904804487774],[112,280,75,0.4654483681920988],[112,280,76,0.48102656352096385],[112,280,77,0.49696763924101284],[112,280,78,0.513452275373671],[112,280,79,0.5305795267917102],[112,281,64,0.18691118711113824],[112,281,65,0.21938613837695775],[112,281,66,0.24974497160367815],[112,281,67,0.27786109273219955],[112,281,68,0.30366827488926906],[112,281,69,0.3271680721843504],[112,281,70,0.3484372195678777],[112,281,71,0.3676350187508123],[112,281,72,0.38501206859958464],[112,281,73,0.40102467655557883],[112,281,74,0.4163077982010221],[112,281,75,0.4313857711308977],[112,281,76,0.44665863569174713],[112,281,77,0.46241659456710016],[112,281,78,0.478853175207998],[112,281,79,0.49607709510866155],[112,282,64,0.1635723643487143],[112,282,65,0.19472352086876457],[112,282,66,0.2238841134758099],[112,282,67,0.2509225621151626],[112,282,68,0.2757648288106984],[112,282,69,0.29840164706166017],[112,282,70,0.3188957442990854],[112,282,71,0.33738905740177655],[112,282,72,0.35411148840761864],[112,282,73,0.3695131511398735],[112,282,74,0.38425204021793863],[112,282,75,0.3988752424133318],[112,282,76,0.4138019009193363],[112,282,77,0.42933782997405895],[112,282,78,0.4456888384229076],[112,282,79,0.46297276222053757],[112,283,64,0.14212713167849192],[112,283,65,0.17187858475822682],[112,283,66,0.19977108744576766],[112,283,67,0.22566818642594394],[112,283,68,0.24948803806795922],[112,283,69,0.27121044718889314],[112,283,70,0.2908839068095135],[112,283,71,0.3086326389023195],[112,283,72,0.3246653717269198],[112,283,73,0.33942540568213986],[112,283,74,0.35359306310129424],[112,283,75,0.367737464600193],[112,283,76,0.3822961450857772],[112,283,77,0.39758982619587185],[112,283,78,0.41383590534835],[112,283,79,0.4311606613997614],[112,284,64,0.12200689396469712],[112,284,65,0.15030466730682807],[112,284,66,0.17688150246709008],[112,284,67,0.20159606090459606],[112,284,68,0.224358587150521],[112,284,69,0.24513775515042074],[112,284,70,0.26396752468013474],[112,284,71,0.2809540078351987],[112,284,72,0.29628426935893537],[112,284,73,0.3103941916764134],[112,284,74,0.32398571673887033],[112,284,75,0.3376492567495688],[112,284,76,0.35183997435480346],[112,284,77,0.3668927205023284],[112,284,78,0.38303569798351955],[112,284,79,0.4004028506593248],[112,285,64,0.10311844741903427],[112,285,65,0.12992424807189215],[112,285,66,0.15515328569304865],[112,285,67,0.17865925589208453],[112,285,68,0.20034433646331945],[112,285,69,0.22016584334772288],[112,285,70,0.23814290701548826],[112,285,71,0.2545192692727437],[112,285,72,0.275180049376652],[112,285,73,0.293680145124873],[112,285,74,0.30992585781763876],[112,285,75,0.32387215758903326],[112,285,76,0.33523712519648136],[112,285,77,0.34357217482791114],[112,285,78,0.35337323617906446],[112,285,79,0.3707889575356199],[112,286,64,0.08601062652374591],[112,286,65,0.111294396330755],[112,286,66,0.13988899658301232],[112,286,67,0.1682902489202795],[112,286,68,0.1956537188108829],[112,286,69,0.2216738330911516],[112,286,70,0.24607744206418958],[112,286,71,0.26863077100162447],[112,286,72,0.2891466043220731],[112,286,73,0.30749170244644675],[112,286,74,0.32359445133002734],[112,286,75,0.3374337652770516],[112,286,76,0.3487355619941666],[112,286,77,0.35704378184011526],[112,286,78,0.36200206671798507],[112,286,79,0.3633576436022429],[112,287,64,0.09128085595859481],[112,287,65,0.1210228656371156],[112,287,66,0.15032410369334476],[112,287,67,0.17884007101099805],[112,287,68,0.20624732751099872],[112,287,69,0.23225009814181902],[112,287,70,0.2565871191498098],[112,287,71,0.27903872462983936],[112,287,72,0.2994341733560324],[112,287,73,0.3176592158927345],[112,287,74,0.3336639019856267],[112,287,75,0.34745064412030624],[112,287,76,0.35875355805548165],[112,287,77,0.36711002664660103],[112,287,78,0.37215633804486536],[112,287,79,0.3736320894308063],[112,288,64,0.09772355728606286],[112,288,65,0.1277016855225926],[112,288,66,0.1571659031664946],[112,288,67,0.18577807621363002],[112,288,68,0.21322280296282195],[112,288,69,0.23921414734460905],[112,288,70,0.26350262070759045],[112,288,71,0.2858824120626702],[112,288,72,0.30619886678500435],[112,288,73,0.32435621377377555],[112,288,74,0.3403255410697086],[112,288,75,0.3541320800809534],[112,288,76,0.3655182125301018],[112,288,77,0.3740153610301238],[112,288,78,0.3792528384962481],[112,288,79,0.3809627574418181],[112,289,64,0.10084605413721787],[112,289,65,0.13103114580196246],[112,289,66,0.16064168736405232],[112,289,67,0.18934624797171634],[112,289,68,0.2168376186205419],[112,289,69,0.24283968037884185],[112,289,70,0.2671145297779317],[112,289,71,0.2894698613676299],[112,289,72,0.3097666074367793],[112,289,73,0.32792683489892305],[112,289,74,0.34394189934304076],[112,289,75,0.3578590016678507],[112,289,76,0.3694285370572431],[112,289,77,0.3781761454389594],[112,289,78,0.38372415381065345],[112,289,79,0.3857969819320033],[112,290,64,0.10101712918190538],[112,290,65,0.13139727187434758],[112,290,66,0.16115508502568435],[112,290,67,0.18996615145391885],[112,290,68,0.21753157401909493],[112,290,69,0.24358498672068163],[112,290,70,0.26789983214638885],[112,290,71,0.29029690527272056],[112,290,72,0.3106521636170711],[112,290,73,0.3289048037414974],[112,290,74,0.3450656041080667],[112,290,75,0.35920279147340917],[112,290,76,0.37107417425851774],[112,290,77,0.38019925581746516],[112,290,78,0.3861928773713594],[112,290,79,0.3887711192619843],[112,291,64,0.0987413630464451],[112,291,65,0.1293251520167923],[112,291,66,0.15925145248061345],[112,291,67,0.18820315710352592],[112,291,68,0.2158897870200083],[112,291,69,0.24205465426932293],[112,291,70,0.2664823001690704],[112,291,71,0.289006209626684],[112,291,72,0.30951680138867044],[112,291,73,0.32796969422773037],[112,291,74,0.3443942490676568],[112,291,75,0.35887876599318197],[112,291,76,0.3711875749599108],[112,291,77,0.38083317996618327],[112,291,78,0.38742196273364565],[112,291,79,0.39066058886573735],[112,292,64,0.09429677343624222],[112,292,65,0.12510564585559225],[112,292,66,0.15523376758707902],[112,292,67,0.18437168897595263],[112,292,68,0.21223750921625742],[112,292,69,0.23858419681446744],[112,292,70,0.2632071957265579],[112,292,71,0.285952317168812],[112,292,72,0.3067239171021801],[112,292,73,0.32549335939031565],[112,292,74,0.3423077646311918],[112,292,75,0.35727457180568656],[112,292,76,0.37016401503662677],[112,292,77,0.38048116834489343],[112,292,78,0.3878233166174513],[112,292,79,0.3918868784795505],[112,293,64,0.0878080093648976],[112,293,65,0.11886929229947353],[112,293,66,0.14923789700766749],[112,293,67,0.17861244108477584],[112,293,68,0.20671981928611166],[112,293,69,0.23332268568766457],[112,293,70,0.25822723110320145],[112,293,71,0.28129125575810465],[112,293,72,0.3024325372197735],[112,293,73,0.3216374935847068],[112,293,74,0.33897014192217145],[112,293,75,0.35455608461999705],[112,293,76,0.368171290428262],[112,293,77,0.3793137544226868],[112,293,78,0.3875716722396374],[112,293,79,0.39263088908679095],[112,294,64,0.07938496987587286],[112,294,65,0.11072874823111428],[112,294,66,0.1413789776124646],[112,294,67,0.17104279143961343],[112,294,68,0.1994561285565583],[112,294,69,0.22639137759133574],[112,294,70,0.251665325729561],[112,294,71,0.27514741190208514],[112,294,72,0.29676828438658875],[112,294,73,0.31652866282323366],[112,294,74,0.33450850464427384],[112,294,75,0.3508504997998165],[112,294,76,0.36533652845327325],[112,294,77,0.37745852145283987],[112,294,78,0.38679614476055213],[112,294,79,0.3930247807612944],[112,295,64,0.0691287351615158],[112,295,65,0.10078511959016404],[112,295,66,0.13175808242043782],[112,295,67,0.1617637397461244],[112,295,68,0.19054733051730194],[112,295,69,0.21789102034581292],[112,295,70,0.24362201821264],[112,295,71,0.26762100607749095],[112,295,72,0.2898308813904191],[112,295,73,0.31026581250558893],[112,295,74,0.32902060699710234],[112,295,75,0.34625381953596374],[112,295,76,0.3617536738688286],[112,295,77,0.3750076041480649],[112,295,78,0.3855877709762274],[112,295,79,0.3931595772015968],[112,296,64,0.07370112249657164],[112,296,65,0.08913291888584318],[112,296,66,0.12046748416232944],[112,296,67,0.150865419160088],[112,296,68,0.18008150605806605],[112,296,69,0.20790770114748722],[112,296,70,0.23418141254369282],[112,296,71,0.2587940984037971],[112,296,72,0.28170018564998706],[112,296,73,0.30292630919856445],[112,296,74,0.3225808716946551],[112,296,75,0.3408368878259276],[112,296,76,0.35748953271015405],[112,296,77,0.3720237621470692],[112,296,78,0.3840056403474926],[112,296,79,0.39309138787280673],[112,297,64,0.08897281954182559],[112,297,65,0.09923193993083275],[112,297,66,0.10964151947930789],[112,297,67,0.13843193363027076],[112,297,68,0.168138956054097],[112,297,69,0.1965180291648082],[112,297,70,0.22341647051339594],[112,297,71,0.2487359568180431],[112,297,72,0.27244160636011816],[112,297,73,0.294571388417507],[112,297,74,0.31524585973522296],[112,297,75,0.3346508844773758],[112,297,76,0.35258930326491056],[112,297,77,0.3685459691228057],[112,297,78,0.38208257016285785],[112,297,79,0.39284720237547655],[112,298,64,0.10661689740673491],[112,298,65,0.1160249791940511],[112,298,66,0.12568468164780797],[112,298,67,0.13539226282138],[112,298,68,0.15479656130046313],[112,298,69,0.18379365247272875],[112,298,70,0.2113936503349753],[112,298,71,0.23750778775155265],[112,298,72,0.2621109042943832],[112,298,73,0.2852510084100578],[112,298,74,0.30705917192326476],[112,298,75,0.32773227813615113],[112,298,76,0.34708159418311735],[112,298,77,0.364594517532904],[112,298,78,0.3798303248356376],[112,298,79,0.3924302570419212],[112,299,64,0.126347642464924],[112,299,65,0.1350389396379365],[112,299,66,0.14407068313863156],[112,299,67,0.1532365503447449],[112,299,68,0.16234579314887565],[112,299,69,0.17122891753476738],[112,299,70,0.19817689147437836],[112,299,71,0.22516682930764192],[112,299,72,0.2507583742643308],[112,299,73,0.27500810994130864],[112,299,74,0.2980557821424112],[112,299,75,0.3201072383379353],[112,299,76,0.3409829297218269],[112,299,77,0.36017563901152694],[112,299,78,0.3772443793345878],[112,299,79,0.39182497375929387],[112,300,64,0.14785542356154477],[112,300,65,0.15597025783988178],[112,300,66,0.16450116303001355],[112,300,67,0.17323967857734882],[112,300,68,0.18199246589766108],[112,300,69,0.19058711033815387],[112,300,70,0.19887820341508214],[112,300,71,0.21176980694074216],[112,300,72,0.2384324102357217],[112,300,73,0.2638822820807872],[112,300,74,0.2882658023800089],[112,300,75,0.31179550658397504],[112,300,76,0.33430174212494146],[112,300,77,0.3552856404030225],[112,300,78,0.3743082267484187],[112,300,79,0.39100147101976535],[112,301,64,0.17081165157373895],[112,301,65,0.1784945158013678],[112,301,66,0.1866551513989046],[112,301,67,0.19508343155467858],[112,301,68,0.20358424992493063],[112,301,69,0.2119834733530202],[112,301,70,0.22013419390706418],[112,301,71,0.22792328023595881],[112,301,72,0.23528062997138946],[112,301,73,0.251912833991654],[112,301,74,0.27771767950356174],[112,301,75,0.30281372644121596],[112,301,76,0.327041851138489],[112,301,77,0.3499145554376706],[112,301,78,0.370997229984454],[112,301,79,0.38991964719805283],[112,302,64,0.19487348294831974],[112,302,65,0.20227109170351498],[112,302,66,0.2101936782257231],[112,302,67,0.2184299463300527],[112,302,68,0.22678387340215628],[112,302,69,0.23508084128583256],[112,302,70,0.24317408498226561],[112,302,71,0.2509514591608527],[112,302,72,0.25834472120015156],[112,302,73,0.2655294452161038],[112,302,74,0.27299771896822217],[112,302,75,0.29317823266617904],[112,302,76,0.31920543066073404],[112,302,77,0.3440493120489385],[112,302,78,0.3672820176008953],[112,302,79,0.3885328360558015],[112,303,64,0.2196882672165846],[112,303,65,0.22694758933417403],[112,303,66,0.23476419466606502],[112,303,67,0.24292613534264806],[112,303,68,0.25123734420598953],[112,303,69,0.25952396996843297],[112,303,70,0.2676410480005579],[112,303,71,0.2754795067484496],[112,303,72,0.2829754835686833],[112,303,73,0.29028960539393694],[112,303,74,0.297865535083356],[112,303,75,0.3060655937499807],[112,303,76,0.3151439443696021],[112,303,77,0.3376764153324646],[112,303,78,0.3631314237728927],[112,303,79,0.38679103447299945],[112,304,64,0.2448977384856675],[112,304,65,0.2521640461859794],[112,304,66,0.2600048066888156],[112,304,67,0.2682079538121751],[112,304,68,0.2765782585037101],[112,304,69,0.2849438927364676],[112,304,70,0.2931633460570949],[112,304,71,0.30113269478647003],[112,304,72,0.3087949529644733],[112,304,73,0.3162968547799154],[112,304,74,0.32403169751224015],[112,304,75,0.3323150769340244],[112,304,76,0.3413621162504842],[112,304,77,0.3512991598570825],[112,304,78,0.3621748364017121],[112,304,79,0.3846437024067785],[112,305,64,0.27014195090739085],[112,305,65,0.277556920226294],[112,305,66,0.2855483210815529],[112,305,67,0.2939045121610444],[112,305,68,0.302431985990911],[112,305,69,0.31096218408970294],[112,305,70,0.31935868089358627],[112,305,71,0.3275247364525778],[112,305,72,0.3354126849117509],[112,305,73,0.3431565737173661],[112,305,74,0.3510979038998368],[112,305,75,0.3595041617157345],[112,305,76,0.36855038967251535],[112,305,77,0.3783303005233827],[112,305,78,0.38886680803306095],[112,305,79,0.4001219745145163],[112,306,64,0.2950629581239391],[112,306,65,0.3027628553384037],[112,306,66,0.3110261038226425],[112,306,67,0.3196420334634737],[112,306,68,0.3284197317809344],[112,306,69,0.3371951306338242],[112,306,70,0.34583847681131014],[112,306,71,0.35426218651055136],[112,306,72,0.3624302738465607],[112,306,73,0.37046544123898417],[112,306,74,0.37865648829180076],[112,306,75,0.3872218996530508],[112,306,76,0.39629601085941846],[112,306,77,0.4059395222756861],[112,306,78,0.41614947683702236],[112,306,79,0.42686870159412893],[112,307,64,0.31930823669041275],[112,307,65,0.32742222543398525],[112,307,66,0.33607175082001184],[112,307,67,0.34504765592147746],[112,307,68,0.3541624749459422],[112,307,69,0.3632578093035324],[112,307,70,0.3722121015856267],[112,307,71,0.3809488074542049],[112,307,72,0.38944586670036224],[112,307,73,0.39781609565195664],[112,307,74,0.4062952216064156],[112,307,75,0.4150523365740899],[112,307,76,0.4241808635879991],[112,307,77,0.4337084552681177],[112,307,78,0.4436064024795016],[112,307,79,0.453798553084278],[112,308,64,0.3425338534744371],[112,308,65,0.351182457237059],[112,308,66,0.3603245710168533],[112,308,67,0.36975308036803534],[112,308,68,0.3792847837099765],[112,308,69,0.38876807286735743],[112,308,70,0.3980910243824667],[112,308,71,0.4071899015996062],[112,308,72,0.41605867079277625],[112,308,73,0.4248018172951035],[112,308,74,0.43360216147498726],[112,308,75,0.4425795152509949],[112,308,76,0.4517866048501272],[112,308,77,0.46121834383441296],[112,308,78,0.47082066147519963],[112,308,79,0.4804988864751579],[112,309,64,0.3644073770332002],[112,309,65,0.3737011317397536],[112,309,66,0.38343288186452756],[112,309,67,0.39339806279765166],[112,309,68,0.40341850729414686],[112,309,69,0.4133504427142495],[112,309,70,0.42309291067677757],[112,309,71,0.4325966091254876],[112,309,72,0.44187345603327727],[112,309,73,0.4510212334677544],[112,309,74,0.4601705514503093],[112,309,75,0.4693925537817],[112,309,76,0.4786999015254948],[112,309,77,0.48805541563976806],[112,309,78,0.497380318891108],[112,309,79,0.5065620770509599],[112,310,64,0.38461053296660225],[112,310,65,0.39464886432862784],[112,310,66,0.4050571171614913],[112,310,67,0.4156337519232114],[112,310,68,0.42620634441294586],[112,310,69,0.43663990892104676],[112,310,70,0.44684565417213573],[112,310,71,0.45679017206116845],[112,310,72,0.4665050514312772],[112,310,73,0.4760830455299117],[112,310,74,0.48560376958288276],[112,310,75,0.49509079967941594],[112,310,76,0.5045177680650763],[112,310,77,0.5138163759407064],[112,310,78,0.5228840478950311],[112,310,79,0.5315912279709494],[112,311,64,0.4028416032483565],[112,311,65,0.41371196358331297],[112,311,66,0.42487274725992213],[112,311,67,0.43612587176070167],[112,311,68,0.4473052884231583],[112,311,69,0.45828563760217417],[112,311,70,0.46899134572275375],[112,311,71,0.47940616422309246],[112,311,72,0.4895828359155643],[112,311,73,0.49961077817454175],[112,311,74,0.5095203263655881],[112,311,75,0.5192890596703932],[112,311,76,0.5288530051857087],[112,311,77,0.5381140269532484],[112,311,78,0.5469468971492722],[112,311,79,0.5552060494338762],[112,312,64,0.4188175695335154],[112,312,65,0.43059486874603325],[112,312,66,0.44257301163868296],[112,312,67,0.4545577492405567],[112,312,68,0.46638994912421655],[112,312,69,0.4779545855405338],[112,312,70,0.48919017925695896],[112,312,71,0.5000986870991782],[112,312,72,0.5107552234624216],[112,312,73,0.5212475508714369],[112,312,74,0.5315589120463821],[112,312,75,0.5416229051996647],[112,312,76,0.5513397395756232],[112,312,77,0.5605830123293313],[112,312,78,0.5692062060495594],[112,312,79,0.5770489069259079],[112,313,64,0.43227600044321174],[112,313,65,0.44502236586270877],[112,313,66,0.45787146384325716],[112,313,67,0.4706331868461443],[112,313,68,0.4831557512104371],[112,313,69,0.4953350220999273],[112,313,70,0.5071242947023895],[112,313,71,0.5185445316811224],[112,313,72,0.5296941425324629],[112,313,73,0.5406608714825816],[112,313,74,0.5513834933088506],[112,313,75,0.5617540536444977],[112,313,76,0.5716390646105537],[112,313,77,0.5808856867410197],[112,313,78,0.589327667808663],[112,313,79,0.5967910385514579],[112,314,64,0.4429766828261726],[112,314,65,0.45674158259528364],[112,314,66,0.47050432879236914],[112,314,67,0.48407918027921215],[112,314,68,0.49732200937504145],[112,314,69,0.5101399584189985],[112,314,70,0.5225015579129811],[112,314,71,0.5344473062448268],[112,314,72,0.5460995098164471],[112,314,73,0.5575474520493836],[112,314,74,0.5686884593210655],[112,314,75,0.5793758252360879],[112,314,76,0.5894447820810457],[112,314,77,0.5987181105731991],[112,314,78,0.6070115403854647],[112,314,79,0.6141389414477305],[112,315,64,0.45070299699782557],[112,315,65,0.4655237617060166],[112,315,66,0.48023267245194556],[112,315,67,0.4946484811528554],[112,315,68,0.5086348800664253],[112,315,69,0.5221104838870727],[112,315,70,0.5350592775980274],[112,315,71,0.5475415300791295],[112,315,72,0.5597036982901531],[112,315,73,0.5716380467517437],[112,315,74,0.5832038171526245],[112,315,75,0.5942186756892849],[112,315,76,0.6044892449306547],[112,315,77,0.6138161697243638],[112,315,78,0.621999005259011],[112,315,79,0.6288409272824376],[112,316,64,0.45526303595566303],[112,316,65,0.47116581321246637],[112,316,66,0.48684438387522994],[112,316,67,0.5021220047108927],[112,316,68,0.5168701898956571],[112,316,69,0.5310190099009592],[112,316,70,0.5445678592524726],[112,316,71,0.5575966931620986],[112,316,72,0.5702759995776748],[112,316,73,0.5827023120384311],[112,316,74,0.5947004365594386],[112,316,75,0.6060558045400039],[112,316,76,0.6165493010047958],[112,316,77,0.6259618205153474],[112,316,78,0.6340786740474893],[112,316,79,0.6406938468347247],[112,317,64,0.4564904685719374],[112,317,65,0.47349164521421916],[112,317,66,0.4901559696100558],[112,317,67,0.5063110825746263],[112,317,68,0.521836140696134],[112,317,69,0.5366724209035955],[112,317,70,0.5508343960892667],[112,317,71,0.5644212817856598],[112,317,72,0.5776270806238465],[112,317,73,0.5905536889294098],[112,317,74,0.6029953441368541],[112,317,75,0.6147088391908596],[112,317,76,0.6254523378107102],[112,317,77,0.6349894597064019],[112,317,78,0.6430932429724759],[112,317,79,0.649549983659576],[112,318,64,0.4542451467637808],[112,318,65,0.47235327339142064],[112,318,66,0.4900141604733187],[112,318,67,0.5070595605169921],[112,318,68,0.5233758912353731],[112,318,69,0.5389151327044929],[112,318,70,0.5537061969737145],[112,318,71,0.5678667701284731],[112,318,72,0.5816134346756947],[112,318,73,0.5950543074899974],[112,318,74,0.6079570668409696],[112,318,75,0.6200535946648609],[112,318,76,0.6310824282883778],[112,318,77,0.6407924196224514],[112,318,78,0.6489462951682594],[112,318,79,0.6553241168355151],[112,319,64,0.4484134566393896],[112,319,65,0.4676317091738271],[112,319,66,0.486297330691435],[112,319,67,0.504245741262976],[112,319,68,0.5213700155779037],[112,319,69,0.5376320580810272],[112,319,70,0.5530742513589548],[112,319,71,0.5678315777762796],[112,319,72,0.582141826572228],[112,319,73,0.596119913476254],[112,319,74,0.6095110248776408],[112,319,75,0.6220259090667426],[112,319,76,0.6333865775920368],[112,319,77,0.6433295883862458],[112,319,78,0.651609250836063],[112,319,79,0.6580007527954805],[113,-64,64,64.0],[113,-64,65,64.0],[113,-64,66,64.0],[113,-64,67,64.0],[113,-64,68,64.0],[113,-64,69,64.0],[113,-64,70,64.0],[113,-64,71,64.0],[113,-64,72,64.0],[113,-64,73,64.0],[113,-64,74,64.0],[113,-64,75,64.0],[113,-64,76,64.0],[113,-64,77,64.0],[113,-64,78,64.0],[113,-64,79,64.0],[113,-63,64,64.0],[113,-63,65,64.0],[113,-63,66,64.0],[113,-63,67,64.0],[113,-63,68,64.0],[113,-63,69,64.0],[113,-63,70,64.0],[113,-63,71,64.0],[113,-63,72,64.0],[113,-63,73,64.0],[113,-63,74,64.0],[113,-63,75,64.0],[113,-63,76,64.0],[113,-63,77,64.0],[113,-63,78,64.0],[113,-63,79,64.0],[113,-62,64,64.0],[113,-62,65,64.0],[113,-62,66,64.0],[113,-62,67,64.0],[113,-62,68,64.0],[113,-62,69,64.0],[113,-62,70,64.0],[113,-62,71,64.0],[113,-62,72,64.0],[113,-62,73,64.0],[113,-62,74,64.0],[113,-62,75,64.0],[113,-62,76,64.0],[113,-62,77,64.0],[113,-62,78,64.0],[113,-62,79,64.0],[113,-61,64,64.0],[113,-61,65,64.0],[113,-61,66,64.0],[113,-61,67,64.0],[113,-61,68,64.0],[113,-61,69,64.0],[113,-61,70,64.0],[113,-61,71,64.0],[113,-61,72,64.0],[113,-61,73,64.0],[113,-61,74,64.0],[113,-61,75,64.0],[113,-61,76,64.0],[113,-61,77,64.0],[113,-61,78,64.0],[113,-61,79,64.0],[113,-60,64,64.0],[113,-60,65,64.0],[113,-60,66,64.0],[113,-60,67,64.0],[113,-60,68,64.0],[113,-60,69,64.0],[113,-60,70,64.0],[113,-60,71,64.0],[113,-60,72,64.0],[113,-60,73,64.0],[113,-60,74,64.0],[113,-60,75,64.0],[113,-60,76,64.0],[113,-60,77,64.0],[113,-60,78,64.0],[113,-60,79,64.0],[113,-59,64,64.0],[113,-59,65,64.0],[113,-59,66,64.0],[113,-59,67,64.0],[113,-59,68,64.0],[113,-59,69,64.0],[113,-59,70,64.0],[113,-59,71,64.0],[113,-59,72,64.0],[113,-59,73,64.0],[113,-59,74,64.0],[113,-59,75,64.0],[113,-59,76,64.0],[113,-59,77,64.0],[113,-59,78,64.0],[113,-59,79,64.0],[113,-58,64,64.0],[113,-58,65,64.0],[113,-58,66,64.0],[113,-58,67,64.0],[113,-58,68,64.0],[113,-58,69,64.0],[113,-58,70,64.0],[113,-58,71,64.0],[113,-58,72,64.0],[113,-58,73,64.0],[113,-58,74,64.0],[113,-58,75,64.0],[113,-58,76,64.0],[113,-58,77,64.0],[113,-58,78,64.0],[113,-58,79,64.0],[113,-57,64,64.0],[113,-57,65,64.0],[113,-57,66,64.0],[113,-57,67,64.0],[113,-57,68,64.0],[113,-57,69,64.0],[113,-57,70,64.0],[113,-57,71,64.0],[113,-57,72,64.0],[113,-57,73,64.0],[113,-57,74,64.0],[113,-57,75,64.0],[113,-57,76,64.0],[113,-57,77,64.0],[113,-57,78,64.0],[113,-57,79,64.0],[113,-56,64,64.0],[113,-56,65,64.0],[113,-56,66,64.0],[113,-56,67,64.0],[113,-56,68,64.0],[113,-56,69,64.0],[113,-56,70,64.0],[113,-56,71,64.0],[113,-56,72,64.0],[113,-56,73,64.0],[113,-56,74,64.0],[113,-56,75,64.0],[113,-56,76,64.0],[113,-56,77,64.0],[113,-56,78,64.0],[113,-56,79,64.0],[113,-55,64,64.0],[113,-55,65,64.0],[113,-55,66,64.0],[113,-55,67,64.0],[113,-55,68,64.0],[113,-55,69,64.0],[113,-55,70,64.0],[113,-55,71,64.0],[113,-55,72,64.0],[113,-55,73,64.0],[113,-55,74,64.0],[113,-55,75,64.0],[113,-55,76,64.0],[113,-55,77,64.0],[113,-55,78,64.0],[113,-55,79,64.0],[113,-54,64,64.0],[113,-54,65,64.0],[113,-54,66,64.0],[113,-54,67,64.0],[113,-54,68,64.0],[113,-54,69,64.0],[113,-54,70,64.0],[113,-54,71,64.0],[113,-54,72,64.0],[113,-54,73,64.0],[113,-54,74,64.0],[113,-54,75,64.0],[113,-54,76,64.0],[113,-54,77,64.0],[113,-54,78,64.0],[113,-54,79,64.0],[113,-53,64,64.0],[113,-53,65,64.0],[113,-53,66,64.0],[113,-53,67,64.0],[113,-53,68,64.0],[113,-53,69,64.0],[113,-53,70,64.0],[113,-53,71,64.0],[113,-53,72,64.0],[113,-53,73,64.0],[113,-53,74,64.0],[113,-53,75,64.0],[113,-53,76,64.0],[113,-53,77,64.0],[113,-53,78,64.0],[113,-53,79,64.0],[113,-52,64,64.0],[113,-52,65,64.0],[113,-52,66,64.0],[113,-52,67,64.0],[113,-52,68,64.0],[113,-52,69,64.0],[113,-52,70,64.0],[113,-52,71,64.0],[113,-52,72,64.0],[113,-52,73,64.0],[113,-52,74,64.0],[113,-52,75,64.0],[113,-52,76,64.0],[113,-52,77,64.0],[113,-52,78,64.0],[113,-52,79,64.0],[113,-51,64,64.0],[113,-51,65,64.0],[113,-51,66,64.0],[113,-51,67,64.0],[113,-51,68,64.0],[113,-51,69,64.0],[113,-51,70,64.0],[113,-51,71,64.0],[113,-51,72,64.0],[113,-51,73,64.0],[113,-51,74,64.0],[113,-51,75,64.0],[113,-51,76,64.0],[113,-51,77,64.0],[113,-51,78,64.0],[113,-51,79,64.0],[113,-50,64,64.0],[113,-50,65,64.0],[113,-50,66,64.0],[113,-50,67,64.0],[113,-50,68,64.0],[113,-50,69,64.0],[113,-50,70,64.0],[113,-50,71,64.0],[113,-50,72,64.0],[113,-50,73,64.0],[113,-50,74,64.0],[113,-50,75,64.0],[113,-50,76,64.0],[113,-50,77,64.0],[113,-50,78,64.0],[113,-50,79,64.0],[113,-49,64,64.0],[113,-49,65,64.0],[113,-49,66,64.0],[113,-49,67,64.0],[113,-49,68,64.0],[113,-49,69,64.0],[113,-49,70,64.0],[113,-49,71,64.0],[113,-49,72,64.0],[113,-49,73,64.0],[113,-49,74,64.0],[113,-49,75,64.0],[113,-49,76,64.0],[113,-49,77,64.0],[113,-49,78,64.0],[113,-49,79,64.0],[113,-48,64,64.0],[113,-48,65,64.0],[113,-48,66,64.0],[113,-48,67,64.0],[113,-48,68,64.0],[113,-48,69,64.0],[113,-48,70,64.0],[113,-48,71,64.0],[113,-48,72,64.0],[113,-48,73,64.0],[113,-48,74,64.0],[113,-48,75,64.0],[113,-48,76,64.0],[113,-48,77,64.0],[113,-48,78,64.0],[113,-48,79,64.0],[113,-47,64,64.0],[113,-47,65,64.0],[113,-47,66,64.0],[113,-47,67,64.0],[113,-47,68,64.0],[113,-47,69,64.0],[113,-47,70,64.0],[113,-47,71,64.0],[113,-47,72,64.0],[113,-47,73,64.0],[113,-47,74,64.0],[113,-47,75,64.0],[113,-47,76,64.0],[113,-47,77,64.0],[113,-47,78,64.0],[113,-47,79,64.0],[113,-46,64,64.0],[113,-46,65,64.0],[113,-46,66,64.0],[113,-46,67,64.0],[113,-46,68,64.0],[113,-46,69,64.0],[113,-46,70,64.0],[113,-46,71,64.0],[113,-46,72,64.0],[113,-46,73,64.0],[113,-46,74,64.0],[113,-46,75,64.0],[113,-46,76,64.0],[113,-46,77,64.0],[113,-46,78,64.0],[113,-46,79,64.0],[113,-45,64,64.0],[113,-45,65,64.0],[113,-45,66,64.0],[113,-45,67,64.0],[113,-45,68,64.0],[113,-45,69,64.0],[113,-45,70,64.0],[113,-45,71,64.0],[113,-45,72,64.0],[113,-45,73,64.0],[113,-45,74,64.0],[113,-45,75,64.0],[113,-45,76,64.0],[113,-45,77,64.0],[113,-45,78,64.0],[113,-45,79,64.0],[113,-44,64,64.0],[113,-44,65,64.0],[113,-44,66,64.0],[113,-44,67,64.0],[113,-44,68,64.0],[113,-44,69,64.0],[113,-44,70,64.0],[113,-44,71,64.0],[113,-44,72,64.0],[113,-44,73,64.0],[113,-44,74,64.0],[113,-44,75,64.0],[113,-44,76,64.0],[113,-44,77,64.0],[113,-44,78,64.0],[113,-44,79,64.0],[113,-43,64,64.0],[113,-43,65,64.0],[113,-43,66,64.0],[113,-43,67,64.0],[113,-43,68,64.0],[113,-43,69,64.0],[113,-43,70,64.0],[113,-43,71,64.0],[113,-43,72,64.0],[113,-43,73,64.0],[113,-43,74,64.0],[113,-43,75,64.0],[113,-43,76,64.0],[113,-43,77,64.0],[113,-43,78,64.0],[113,-43,79,64.0],[113,-42,64,64.0],[113,-42,65,64.0],[113,-42,66,64.0],[113,-42,67,64.0],[113,-42,68,64.0],[113,-42,69,64.0],[113,-42,70,64.0],[113,-42,71,64.0],[113,-42,72,64.0],[113,-42,73,64.0],[113,-42,74,64.0],[113,-42,75,64.0],[113,-42,76,64.0],[113,-42,77,64.0],[113,-42,78,64.0],[113,-42,79,64.0],[113,-41,64,64.0],[113,-41,65,64.0],[113,-41,66,64.0],[113,-41,67,64.0],[113,-41,68,64.0],[113,-41,69,64.0],[113,-41,70,64.0],[113,-41,71,64.0],[113,-41,72,64.0],[113,-41,73,64.0],[113,-41,74,64.0],[113,-41,75,64.0],[113,-41,76,64.0],[113,-41,77,64.0],[113,-41,78,64.0],[113,-41,79,64.0],[113,-40,64,64.0],[113,-40,65,64.0],[113,-40,66,64.0],[113,-40,67,64.0],[113,-40,68,64.0],[113,-40,69,64.0],[113,-40,70,64.0],[113,-40,71,64.0],[113,-40,72,64.0],[113,-40,73,64.0],[113,-40,74,64.0],[113,-40,75,64.0],[113,-40,76,64.0],[113,-40,77,64.0],[113,-40,78,64.0],[113,-40,79,64.0],[113,-39,64,64.0],[113,-39,65,64.0],[113,-39,66,64.0],[113,-39,67,64.0],[113,-39,68,64.0],[113,-39,69,64.0],[113,-39,70,64.0],[113,-39,71,64.0],[113,-39,72,64.0],[113,-39,73,64.0],[113,-39,74,64.0],[113,-39,75,64.0],[113,-39,76,64.0],[113,-39,77,64.0],[113,-39,78,64.0],[113,-39,79,64.0],[113,-38,64,64.0],[113,-38,65,64.0],[113,-38,66,64.0],[113,-38,67,64.0],[113,-38,68,64.0],[113,-38,69,64.0],[113,-38,70,64.0],[113,-38,71,64.0],[113,-38,72,64.0],[113,-38,73,64.0],[113,-38,74,64.0],[113,-38,75,64.0],[113,-38,76,64.0],[113,-38,77,64.0],[113,-38,78,64.0],[113,-38,79,64.0],[113,-37,64,64.0],[113,-37,65,64.0],[113,-37,66,64.0],[113,-37,67,64.0],[113,-37,68,64.0],[113,-37,69,64.0],[113,-37,70,64.0],[113,-37,71,64.0],[113,-37,72,64.0],[113,-37,73,64.0],[113,-37,74,64.0],[113,-37,75,64.0],[113,-37,76,64.0],[113,-37,77,64.0],[113,-37,78,64.0],[113,-37,79,64.0],[113,-36,64,64.0],[113,-36,65,64.0],[113,-36,66,64.0],[113,-36,67,64.0],[113,-36,68,64.0],[113,-36,69,64.0],[113,-36,70,64.0],[113,-36,71,64.0],[113,-36,72,64.0],[113,-36,73,64.0],[113,-36,74,64.0],[113,-36,75,64.0],[113,-36,76,64.0],[113,-36,77,64.0],[113,-36,78,64.0],[113,-36,79,64.0],[113,-35,64,64.0],[113,-35,65,64.0],[113,-35,66,64.0],[113,-35,67,64.0],[113,-35,68,64.0],[113,-35,69,64.0],[113,-35,70,64.0],[113,-35,71,64.0],[113,-35,72,64.0],[113,-35,73,64.0],[113,-35,74,64.0],[113,-35,75,64.0],[113,-35,76,64.0],[113,-35,77,64.0],[113,-35,78,64.0],[113,-35,79,64.0],[113,-34,64,64.0],[113,-34,65,64.0],[113,-34,66,64.0],[113,-34,67,64.0],[113,-34,68,64.0],[113,-34,69,64.0],[113,-34,70,64.0],[113,-34,71,64.0],[113,-34,72,64.0],[113,-34,73,64.0],[113,-34,74,64.0],[113,-34,75,64.0],[113,-34,76,64.0],[113,-34,77,64.0],[113,-34,78,64.0],[113,-34,79,64.0],[113,-33,64,64.0],[113,-33,65,64.0],[113,-33,66,64.0],[113,-33,67,64.0],[113,-33,68,64.0],[113,-33,69,64.0],[113,-33,70,64.0],[113,-33,71,64.0],[113,-33,72,64.0],[113,-33,73,64.0],[113,-33,74,64.0],[113,-33,75,64.0],[113,-33,76,64.0],[113,-33,77,64.0],[113,-33,78,64.0],[113,-33,79,64.0],[113,-32,64,64.0],[113,-32,65,64.0],[113,-32,66,64.0],[113,-32,67,64.0],[113,-32,68,64.0],[113,-32,69,64.0],[113,-32,70,64.0],[113,-32,71,64.0],[113,-32,72,64.0],[113,-32,73,64.0],[113,-32,74,64.0],[113,-32,75,64.0],[113,-32,76,64.0],[113,-32,77,64.0],[113,-32,78,64.0],[113,-32,79,64.0],[113,-31,64,64.0],[113,-31,65,64.0],[113,-31,66,64.0],[113,-31,67,64.0],[113,-31,68,64.0],[113,-31,69,64.0],[113,-31,70,64.0],[113,-31,71,64.0],[113,-31,72,64.0],[113,-31,73,64.0],[113,-31,74,64.0],[113,-31,75,64.0],[113,-31,76,64.0],[113,-31,77,64.0],[113,-31,78,64.0],[113,-31,79,64.0],[113,-30,64,64.0],[113,-30,65,64.0],[113,-30,66,64.0],[113,-30,67,64.0],[113,-30,68,64.0],[113,-30,69,64.0],[113,-30,70,64.0],[113,-30,71,64.0],[113,-30,72,64.0],[113,-30,73,64.0],[113,-30,74,64.0],[113,-30,75,64.0],[113,-30,76,64.0],[113,-30,77,64.0],[113,-30,78,64.0],[113,-30,79,64.0],[113,-29,64,64.0],[113,-29,65,64.0],[113,-29,66,64.0],[113,-29,67,64.0],[113,-29,68,64.0],[113,-29,69,64.0],[113,-29,70,64.0],[113,-29,71,64.0],[113,-29,72,64.0],[113,-29,73,64.0],[113,-29,74,64.0],[113,-29,75,64.0],[113,-29,76,64.0],[113,-29,77,64.0],[113,-29,78,64.0],[113,-29,79,64.0],[113,-28,64,64.0],[113,-28,65,64.0],[113,-28,66,64.0],[113,-28,67,64.0],[113,-28,68,64.0],[113,-28,69,64.0],[113,-28,70,64.0],[113,-28,71,64.0],[113,-28,72,64.0],[113,-28,73,64.0],[113,-28,74,64.0],[113,-28,75,64.0],[113,-28,76,64.0],[113,-28,77,64.0],[113,-28,78,64.0],[113,-28,79,64.0],[113,-27,64,64.0],[113,-27,65,64.0],[113,-27,66,64.0],[113,-27,67,64.0],[113,-27,68,64.0],[113,-27,69,64.0],[113,-27,70,64.0],[113,-27,71,64.0],[113,-27,72,64.0],[113,-27,73,64.0],[113,-27,74,64.0],[113,-27,75,64.0],[113,-27,76,64.0],[113,-27,77,64.0],[113,-27,78,64.0],[113,-27,79,64.0],[113,-26,64,64.0],[113,-26,65,64.0],[113,-26,66,64.0],[113,-26,67,64.0],[113,-26,68,64.0],[113,-26,69,64.0],[113,-26,70,64.0],[113,-26,71,64.0],[113,-26,72,64.0],[113,-26,73,64.0],[113,-26,74,64.0],[113,-26,75,64.0],[113,-26,76,64.0],[113,-26,77,64.0],[113,-26,78,64.0],[113,-26,79,64.0],[113,-25,64,64.0],[113,-25,65,64.0],[113,-25,66,64.0],[113,-25,67,64.0],[113,-25,68,64.0],[113,-25,69,64.0],[113,-25,70,64.0],[113,-25,71,64.0],[113,-25,72,64.0],[113,-25,73,64.0],[113,-25,74,64.0],[113,-25,75,64.0],[113,-25,76,64.0],[113,-25,77,64.0],[113,-25,78,64.0],[113,-25,79,64.0],[113,-24,64,64.0],[113,-24,65,64.0],[113,-24,66,64.0],[113,-24,67,64.0],[113,-24,68,64.0],[113,-24,69,64.0],[113,-24,70,64.0],[113,-24,71,64.0],[113,-24,72,64.0],[113,-24,73,64.0],[113,-24,74,64.0],[113,-24,75,64.0],[113,-24,76,64.0],[113,-24,77,64.0],[113,-24,78,64.0],[113,-24,79,64.0],[113,-23,64,64.0],[113,-23,65,64.0],[113,-23,66,64.0],[113,-23,67,64.0],[113,-23,68,64.0],[113,-23,69,64.0],[113,-23,70,64.0],[113,-23,71,64.0],[113,-23,72,64.0],[113,-23,73,64.0],[113,-23,74,64.0],[113,-23,75,64.0],[113,-23,76,64.0],[113,-23,77,64.0],[113,-23,78,64.0],[113,-23,79,64.0],[113,-22,64,64.0],[113,-22,65,64.0],[113,-22,66,64.0],[113,-22,67,64.0],[113,-22,68,64.0],[113,-22,69,64.0],[113,-22,70,64.0],[113,-22,71,64.0],[113,-22,72,64.0],[113,-22,73,64.0],[113,-22,74,64.0],[113,-22,75,64.0],[113,-22,76,64.0],[113,-22,77,64.0],[113,-22,78,64.0],[113,-22,79,64.0],[113,-21,64,64.0],[113,-21,65,64.0],[113,-21,66,64.0],[113,-21,67,64.0],[113,-21,68,64.0],[113,-21,69,64.0],[113,-21,70,64.0],[113,-21,71,64.0],[113,-21,72,64.0],[113,-21,73,64.0],[113,-21,74,64.0],[113,-21,75,64.0],[113,-21,76,64.0],[113,-21,77,64.0],[113,-21,78,64.0],[113,-21,79,64.0],[113,-20,64,64.0],[113,-20,65,64.0],[113,-20,66,64.0],[113,-20,67,64.0],[113,-20,68,64.0],[113,-20,69,64.0],[113,-20,70,64.0],[113,-20,71,64.0],[113,-20,72,64.0],[113,-20,73,64.0],[113,-20,74,64.0],[113,-20,75,64.0],[113,-20,76,64.0],[113,-20,77,64.0],[113,-20,78,64.0],[113,-20,79,64.0],[113,-19,64,64.0],[113,-19,65,64.0],[113,-19,66,64.0],[113,-19,67,64.0],[113,-19,68,64.0],[113,-19,69,64.0],[113,-19,70,64.0],[113,-19,71,64.0],[113,-19,72,64.0],[113,-19,73,64.0],[113,-19,74,64.0],[113,-19,75,64.0],[113,-19,76,64.0],[113,-19,77,64.0],[113,-19,78,64.0],[113,-19,79,64.0],[113,-18,64,64.0],[113,-18,65,64.0],[113,-18,66,64.0],[113,-18,67,64.0],[113,-18,68,64.0],[113,-18,69,64.0],[113,-18,70,64.0],[113,-18,71,64.0],[113,-18,72,64.0],[113,-18,73,64.0],[113,-18,74,64.0],[113,-18,75,64.0],[113,-18,76,64.0],[113,-18,77,64.0],[113,-18,78,64.0],[113,-18,79,64.0],[113,-17,64,64.0],[113,-17,65,64.0],[113,-17,66,64.0],[113,-17,67,64.0],[113,-17,68,64.0],[113,-17,69,64.0],[113,-17,70,64.0],[113,-17,71,64.0],[113,-17,72,64.0],[113,-17,73,64.0],[113,-17,74,64.0],[113,-17,75,64.0],[113,-17,76,64.0],[113,-17,77,64.0],[113,-17,78,64.0],[113,-17,79,64.0],[113,-16,64,64.0],[113,-16,65,64.0],[113,-16,66,64.0],[113,-16,67,64.0],[113,-16,68,64.0],[113,-16,69,64.0],[113,-16,70,64.0],[113,-16,71,64.0],[113,-16,72,64.0],[113,-16,73,64.0],[113,-16,74,64.0],[113,-16,75,64.0],[113,-16,76,64.0],[113,-16,77,64.0],[113,-16,78,64.0],[113,-16,79,64.0],[113,-15,64,64.0],[113,-15,65,64.0],[113,-15,66,64.0],[113,-15,67,64.0],[113,-15,68,64.0],[113,-15,69,64.0],[113,-15,70,64.0],[113,-15,71,64.0],[113,-15,72,64.0],[113,-15,73,64.0],[113,-15,74,64.0],[113,-15,75,64.0],[113,-15,76,64.0],[113,-15,77,64.0],[113,-15,78,64.0],[113,-15,79,64.0],[113,-14,64,64.0],[113,-14,65,64.0],[113,-14,66,64.0],[113,-14,67,64.0],[113,-14,68,64.0],[113,-14,69,64.0],[113,-14,70,64.0],[113,-14,71,64.0],[113,-14,72,64.0],[113,-14,73,64.0],[113,-14,74,64.0],[113,-14,75,64.0],[113,-14,76,64.0],[113,-14,77,64.0],[113,-14,78,64.0],[113,-14,79,64.0],[113,-13,64,64.0],[113,-13,65,64.0],[113,-13,66,64.0],[113,-13,67,64.0],[113,-13,68,64.0],[113,-13,69,64.0],[113,-13,70,64.0],[113,-13,71,64.0],[113,-13,72,64.0],[113,-13,73,64.0],[113,-13,74,64.0],[113,-13,75,64.0],[113,-13,76,64.0],[113,-13,77,64.0],[113,-13,78,64.0],[113,-13,79,64.0],[113,-12,64,64.0],[113,-12,65,64.0],[113,-12,66,64.0],[113,-12,67,64.0],[113,-12,68,64.0],[113,-12,69,64.0],[113,-12,70,64.0],[113,-12,71,64.0],[113,-12,72,64.0],[113,-12,73,64.0],[113,-12,74,64.0],[113,-12,75,64.0],[113,-12,76,64.0],[113,-12,77,64.0],[113,-12,78,64.0],[113,-12,79,64.0],[113,-11,64,64.0],[113,-11,65,64.0],[113,-11,66,64.0],[113,-11,67,64.0],[113,-11,68,64.0],[113,-11,69,64.0],[113,-11,70,64.0],[113,-11,71,64.0],[113,-11,72,64.0],[113,-11,73,64.0],[113,-11,74,64.0],[113,-11,75,64.0],[113,-11,76,64.0],[113,-11,77,64.0],[113,-11,78,64.0],[113,-11,79,64.0],[113,-10,64,64.0],[113,-10,65,64.0],[113,-10,66,64.0],[113,-10,67,64.0],[113,-10,68,64.0],[113,-10,69,64.0],[113,-10,70,64.0],[113,-10,71,64.0],[113,-10,72,64.0],[113,-10,73,64.0],[113,-10,74,64.0],[113,-10,75,64.0],[113,-10,76,64.0],[113,-10,77,64.0],[113,-10,78,64.0],[113,-10,79,64.0],[113,-9,64,64.0],[113,-9,65,64.0],[113,-9,66,64.0],[113,-9,67,64.0],[113,-9,68,64.0],[113,-9,69,64.0],[113,-9,70,64.0],[113,-9,71,64.0],[113,-9,72,64.0],[113,-9,73,64.0],[113,-9,74,64.0],[113,-9,75,64.0],[113,-9,76,64.0],[113,-9,77,64.0],[113,-9,78,64.0],[113,-9,79,64.0],[113,-8,64,64.0],[113,-8,65,64.0],[113,-8,66,64.0],[113,-8,67,64.0],[113,-8,68,64.0],[113,-8,69,64.0],[113,-8,70,64.0],[113,-8,71,64.0],[113,-8,72,64.0],[113,-8,73,64.0],[113,-8,74,64.0],[113,-8,75,64.0],[113,-8,76,64.0],[113,-8,77,64.0],[113,-8,78,64.0],[113,-8,79,64.0],[113,-7,64,64.0],[113,-7,65,64.0],[113,-7,66,64.0],[113,-7,67,64.0],[113,-7,68,64.0],[113,-7,69,64.0],[113,-7,70,64.0],[113,-7,71,64.0],[113,-7,72,64.0],[113,-7,73,64.0],[113,-7,74,64.0],[113,-7,75,64.0],[113,-7,76,64.0],[113,-7,77,64.0],[113,-7,78,64.0],[113,-7,79,64.0],[113,-6,64,64.0],[113,-6,65,64.0],[113,-6,66,64.0],[113,-6,67,64.0],[113,-6,68,64.0],[113,-6,69,64.0],[113,-6,70,64.0],[113,-6,71,64.0],[113,-6,72,64.0],[113,-6,73,64.0],[113,-6,74,64.0],[113,-6,75,64.0],[113,-6,76,64.0],[113,-6,77,64.0],[113,-6,78,64.0],[113,-6,79,64.0],[113,-5,64,64.0],[113,-5,65,64.0],[113,-5,66,64.0],[113,-5,67,64.0],[113,-5,68,64.0],[113,-5,69,64.0],[113,-5,70,64.0],[113,-5,71,64.0],[113,-5,72,64.0],[113,-5,73,64.0],[113,-5,74,64.0],[113,-5,75,64.0],[113,-5,76,64.0],[113,-5,77,64.0],[113,-5,78,64.0],[113,-5,79,64.0],[113,-4,64,64.0],[113,-4,65,64.0],[113,-4,66,64.0],[113,-4,67,64.0],[113,-4,68,64.0],[113,-4,69,64.0],[113,-4,70,64.0],[113,-4,71,64.0],[113,-4,72,64.0],[113,-4,73,64.0],[113,-4,74,64.0],[113,-4,75,64.0],[113,-4,76,64.0],[113,-4,77,64.0],[113,-4,78,64.0],[113,-4,79,64.0],[113,-3,64,64.0],[113,-3,65,64.0],[113,-3,66,64.0],[113,-3,67,64.0],[113,-3,68,64.0],[113,-3,69,64.0],[113,-3,70,64.0],[113,-3,71,64.0],[113,-3,72,64.0],[113,-3,73,64.0],[113,-3,74,64.0],[113,-3,75,64.0],[113,-3,76,64.0],[113,-3,77,64.0],[113,-3,78,64.0],[113,-3,79,64.0],[113,-2,64,64.0],[113,-2,65,64.0],[113,-2,66,64.0],[113,-2,67,64.0],[113,-2,68,64.0],[113,-2,69,64.0],[113,-2,70,64.0],[113,-2,71,64.0],[113,-2,72,64.0],[113,-2,73,64.0],[113,-2,74,64.0],[113,-2,75,64.0],[113,-2,76,64.0],[113,-2,77,64.0],[113,-2,78,64.0],[113,-2,79,64.0],[113,-1,64,64.0],[113,-1,65,64.0],[113,-1,66,64.0],[113,-1,67,64.0],[113,-1,68,64.0],[113,-1,69,64.0],[113,-1,70,64.0],[113,-1,71,64.0],[113,-1,72,64.0],[113,-1,73,64.0],[113,-1,74,64.0],[113,-1,75,64.0],[113,-1,76,64.0],[113,-1,77,64.0],[113,-1,78,64.0],[113,-1,79,64.0],[113,0,64,64.0],[113,0,65,64.0],[113,0,66,64.0],[113,0,67,64.0],[113,0,68,64.0],[113,0,69,64.0],[113,0,70,64.0],[113,0,71,64.0],[113,0,72,64.0],[113,0,73,64.0],[113,0,74,64.0],[113,0,75,64.0],[113,0,76,64.0],[113,0,77,64.0],[113,0,78,64.0],[113,0,79,64.0],[113,1,64,64.0],[113,1,65,64.0],[113,1,66,64.0],[113,1,67,64.0],[113,1,68,64.0],[113,1,69,64.0],[113,1,70,64.0],[113,1,71,64.0],[113,1,72,64.0],[113,1,73,64.0],[113,1,74,64.0],[113,1,75,64.0],[113,1,76,64.0],[113,1,77,64.0],[113,1,78,64.0],[113,1,79,64.0],[113,2,64,64.0],[113,2,65,64.0],[113,2,66,64.0],[113,2,67,64.0],[113,2,68,64.0],[113,2,69,64.0],[113,2,70,64.0],[113,2,71,64.0],[113,2,72,64.0],[113,2,73,64.0],[113,2,74,64.0],[113,2,75,64.0],[113,2,76,64.0],[113,2,77,64.0],[113,2,78,64.0],[113,2,79,64.0],[113,3,64,64.0],[113,3,65,64.0],[113,3,66,64.0],[113,3,67,64.0],[113,3,68,64.0],[113,3,69,64.0],[113,3,70,64.0],[113,3,71,64.0],[113,3,72,64.0],[113,3,73,64.0],[113,3,74,64.0],[113,3,75,64.0],[113,3,76,64.0],[113,3,77,64.0],[113,3,78,64.0],[113,3,79,64.0],[113,4,64,64.0],[113,4,65,64.0],[113,4,66,64.0],[113,4,67,64.0],[113,4,68,64.0],[113,4,69,64.0],[113,4,70,64.0],[113,4,71,64.0],[113,4,72,64.0],[113,4,73,64.0],[113,4,74,64.0],[113,4,75,64.0],[113,4,76,64.0],[113,4,77,64.0],[113,4,78,64.0],[113,4,79,64.0],[113,5,64,64.0],[113,5,65,64.0],[113,5,66,64.0],[113,5,67,64.0],[113,5,68,64.0],[113,5,69,64.0],[113,5,70,64.0],[113,5,71,64.0],[113,5,72,64.0],[113,5,73,64.0],[113,5,74,64.0],[113,5,75,64.0],[113,5,76,64.0],[113,5,77,64.0],[113,5,78,64.0],[113,5,79,64.0],[113,6,64,64.0],[113,6,65,64.0],[113,6,66,64.0],[113,6,67,64.0],[113,6,68,64.0],[113,6,69,64.0],[113,6,70,64.0],[113,6,71,64.0],[113,6,72,64.0],[113,6,73,64.0],[113,6,74,64.0],[113,6,75,64.0],[113,6,76,64.0],[113,6,77,64.0],[113,6,78,64.0],[113,6,79,64.0],[113,7,64,64.0],[113,7,65,64.0],[113,7,66,64.0],[113,7,67,64.0],[113,7,68,64.0],[113,7,69,64.0],[113,7,70,64.0],[113,7,71,64.0],[113,7,72,64.0],[113,7,73,64.0],[113,7,74,64.0],[113,7,75,64.0],[113,7,76,64.0],[113,7,77,64.0],[113,7,78,64.0],[113,7,79,64.0],[113,8,64,64.0],[113,8,65,64.0],[113,8,66,64.0],[113,8,67,64.0],[113,8,68,64.0],[113,8,69,64.0],[113,8,70,64.0],[113,8,71,64.0],[113,8,72,64.0],[113,8,73,64.0],[113,8,74,64.0],[113,8,75,64.0],[113,8,76,64.0],[113,8,77,64.0],[113,8,78,64.0],[113,8,79,64.0],[113,9,64,64.0],[113,9,65,64.0],[113,9,66,64.0],[113,9,67,64.0],[113,9,68,64.0],[113,9,69,64.0],[113,9,70,64.0],[113,9,71,64.0],[113,9,72,64.0],[113,9,73,64.0],[113,9,74,64.0],[113,9,75,64.0],[113,9,76,64.0],[113,9,77,64.0],[113,9,78,64.0],[113,9,79,64.0],[113,10,64,64.0],[113,10,65,64.0],[113,10,66,64.0],[113,10,67,64.0],[113,10,68,64.0],[113,10,69,64.0],[113,10,70,64.0],[113,10,71,64.0],[113,10,72,64.0],[113,10,73,64.0],[113,10,74,64.0],[113,10,75,64.0],[113,10,76,64.0],[113,10,77,64.0],[113,10,78,64.0],[113,10,79,64.0],[113,11,64,64.0],[113,11,65,64.0],[113,11,66,64.0],[113,11,67,64.0],[113,11,68,64.0],[113,11,69,64.0],[113,11,70,64.0],[113,11,71,64.0],[113,11,72,64.0],[113,11,73,64.0],[113,11,74,64.0],[113,11,75,64.0],[113,11,76,64.0],[113,11,77,64.0],[113,11,78,64.0],[113,11,79,64.0],[113,12,64,64.0],[113,12,65,64.0],[113,12,66,64.0],[113,12,67,64.0],[113,12,68,64.0],[113,12,69,64.0],[113,12,70,64.0],[113,12,71,64.0],[113,12,72,64.0],[113,12,73,64.0],[113,12,74,64.0],[113,12,75,64.0],[113,12,76,64.0],[113,12,77,64.0],[113,12,78,64.0],[113,12,79,64.0],[113,13,64,64.0],[113,13,65,64.0],[113,13,66,64.0],[113,13,67,64.0],[113,13,68,64.0],[113,13,69,64.0],[113,13,70,64.0],[113,13,71,64.0],[113,13,72,64.0],[113,13,73,64.0],[113,13,74,64.0],[113,13,75,64.0],[113,13,76,64.0],[113,13,77,64.0],[113,13,78,64.0],[113,13,79,64.0],[113,14,64,64.0],[113,14,65,64.0],[113,14,66,64.0],[113,14,67,64.0],[113,14,68,64.0],[113,14,69,64.0],[113,14,70,64.0],[113,14,71,64.0],[113,14,72,64.0],[113,14,73,64.0],[113,14,74,64.0],[113,14,75,64.0],[113,14,76,64.0],[113,14,77,64.0],[113,14,78,64.0],[113,14,79,64.0],[113,15,64,64.0],[113,15,65,64.0],[113,15,66,64.0],[113,15,67,64.0],[113,15,68,64.0],[113,15,69,64.0],[113,15,70,64.0],[113,15,71,64.0],[113,15,72,64.0],[113,15,73,64.0],[113,15,74,64.0],[113,15,75,64.0],[113,15,76,64.0],[113,15,77,64.0],[113,15,78,64.0],[113,15,79,64.0],[113,16,64,64.0],[113,16,65,64.0],[113,16,66,64.0],[113,16,67,64.0],[113,16,68,64.0],[113,16,69,64.0],[113,16,70,64.0],[113,16,71,64.0],[113,16,72,64.0],[113,16,73,64.0],[113,16,74,64.0],[113,16,75,64.0],[113,16,76,64.0],[113,16,77,64.0],[113,16,78,64.0],[113,16,79,64.0],[113,17,64,64.0],[113,17,65,64.0],[113,17,66,64.0],[113,17,67,64.0],[113,17,68,64.0],[113,17,69,64.0],[113,17,70,64.0],[113,17,71,64.0],[113,17,72,64.0],[113,17,73,64.0],[113,17,74,64.0],[113,17,75,64.0],[113,17,76,64.0],[113,17,77,64.0],[113,17,78,64.0],[113,17,79,64.0],[113,18,64,64.0],[113,18,65,64.0],[113,18,66,64.0],[113,18,67,64.0],[113,18,68,64.0],[113,18,69,64.0],[113,18,70,64.0],[113,18,71,64.0],[113,18,72,64.0],[113,18,73,64.0],[113,18,74,64.0],[113,18,75,64.0],[113,18,76,64.0],[113,18,77,64.0],[113,18,78,64.0],[113,18,79,64.0],[113,19,64,64.0],[113,19,65,64.0],[113,19,66,64.0],[113,19,67,64.0],[113,19,68,64.0],[113,19,69,64.0],[113,19,70,64.0],[113,19,71,64.0],[113,19,72,64.0],[113,19,73,64.0],[113,19,74,64.0],[113,19,75,64.0],[113,19,76,64.0],[113,19,77,64.0],[113,19,78,64.0],[113,19,79,64.0],[113,20,64,64.0],[113,20,65,64.0],[113,20,66,64.0],[113,20,67,64.0],[113,20,68,64.0],[113,20,69,64.0],[113,20,70,64.0],[113,20,71,64.0],[113,20,72,64.0],[113,20,73,64.0],[113,20,74,64.0],[113,20,75,64.0],[113,20,76,64.0],[113,20,77,64.0],[113,20,78,64.0],[113,20,79,64.0],[113,21,64,64.0],[113,21,65,64.0],[113,21,66,64.0],[113,21,67,64.0],[113,21,68,64.0],[113,21,69,64.0],[113,21,70,64.0],[113,21,71,64.0],[113,21,72,64.0],[113,21,73,64.0],[113,21,74,64.0],[113,21,75,64.0],[113,21,76,64.0],[113,21,77,64.0],[113,21,78,64.0],[113,21,79,64.0],[113,22,64,64.0],[113,22,65,64.0],[113,22,66,64.0],[113,22,67,64.0],[113,22,68,64.0],[113,22,69,64.0],[113,22,70,64.0],[113,22,71,64.0],[113,22,72,64.0],[113,22,73,64.0],[113,22,74,64.0],[113,22,75,64.0],[113,22,76,64.0],[113,22,77,64.0],[113,22,78,64.0],[113,22,79,64.0],[113,23,64,64.0],[113,23,65,64.0],[113,23,66,64.0],[113,23,67,64.0],[113,23,68,64.0],[113,23,69,64.0],[113,23,70,64.0],[113,23,71,64.0],[113,23,72,64.0],[113,23,73,64.0],[113,23,74,64.0],[113,23,75,64.0],[113,23,76,64.0],[113,23,77,64.0],[113,23,78,64.0],[113,23,79,64.0],[113,24,64,64.0],[113,24,65,64.0],[113,24,66,64.0],[113,24,67,64.0],[113,24,68,64.0],[113,24,69,64.0],[113,24,70,64.0],[113,24,71,64.0],[113,24,72,64.0],[113,24,73,64.0],[113,24,74,64.0],[113,24,75,64.0],[113,24,76,64.0],[113,24,77,64.0],[113,24,78,64.0],[113,24,79,64.0],[113,25,64,64.0],[113,25,65,64.0],[113,25,66,64.0],[113,25,67,64.0],[113,25,68,64.0],[113,25,69,64.0],[113,25,70,64.0],[113,25,71,64.0],[113,25,72,64.0],[113,25,73,64.0],[113,25,74,64.0],[113,25,75,64.0],[113,25,76,64.0],[113,25,77,64.0],[113,25,78,64.0],[113,25,79,64.0],[113,26,64,64.0],[113,26,65,64.0],[113,26,66,64.0],[113,26,67,64.0],[113,26,68,64.0],[113,26,69,64.0],[113,26,70,64.0],[113,26,71,64.0],[113,26,72,64.0],[113,26,73,64.0],[113,26,74,64.0],[113,26,75,64.0],[113,26,76,64.0],[113,26,77,64.0],[113,26,78,64.0],[113,26,79,64.0],[113,27,64,64.0],[113,27,65,64.0],[113,27,66,64.0],[113,27,67,64.0],[113,27,68,64.0],[113,27,69,64.0],[113,27,70,64.0],[113,27,71,64.0],[113,27,72,64.0],[113,27,73,64.0],[113,27,74,64.0],[113,27,75,64.0],[113,27,76,64.0],[113,27,77,64.0],[113,27,78,64.0],[113,27,79,64.0],[113,28,64,64.0],[113,28,65,64.0],[113,28,66,64.0],[113,28,67,64.0],[113,28,68,64.0],[113,28,69,64.0],[113,28,70,64.0],[113,28,71,64.0],[113,28,72,64.0],[113,28,73,64.0],[113,28,74,64.0],[113,28,75,64.0],[113,28,76,64.0],[113,28,77,64.0],[113,28,78,64.0],[113,28,79,64.0],[113,29,64,64.0],[113,29,65,64.0],[113,29,66,64.0],[113,29,67,64.0],[113,29,68,64.0],[113,29,69,64.0],[113,29,70,64.0],[113,29,71,64.0],[113,29,72,64.0],[113,29,73,64.0],[113,29,74,64.0],[113,29,75,64.0],[113,29,76,64.0],[113,29,77,64.0],[113,29,78,64.0],[113,29,79,64.0],[113,30,64,64.0],[113,30,65,64.0],[113,30,66,64.0],[113,30,67,64.0],[113,30,68,64.0],[113,30,69,64.0],[113,30,70,64.0],[113,30,71,64.0],[113,30,72,64.0],[113,30,73,64.0],[113,30,74,64.0],[113,30,75,64.0],[113,30,76,64.0],[113,30,77,64.0],[113,30,78,64.0],[113,30,79,64.0],[113,31,64,64.0],[113,31,65,64.0],[113,31,66,64.0],[113,31,67,64.0],[113,31,68,64.0],[113,31,69,64.0],[113,31,70,64.0],[113,31,71,64.0],[113,31,72,64.0],[113,31,73,64.0],[113,31,74,64.0],[113,31,75,64.0],[113,31,76,64.0],[113,31,77,64.0],[113,31,78,64.0],[113,31,79,64.0],[113,32,64,64.0],[113,32,65,64.0],[113,32,66,64.0],[113,32,67,64.0],[113,32,68,64.0],[113,32,69,64.0],[113,32,70,64.0],[113,32,71,64.0],[113,32,72,64.0],[113,32,73,64.0],[113,32,74,64.0],[113,32,75,64.0],[113,32,76,64.0],[113,32,77,64.0],[113,32,78,64.0],[113,32,79,64.0],[113,33,64,64.0],[113,33,65,64.0],[113,33,66,64.0],[113,33,67,64.0],[113,33,68,64.0],[113,33,69,64.0],[113,33,70,64.0],[113,33,71,64.0],[113,33,72,64.0],[113,33,73,64.0],[113,33,74,64.0],[113,33,75,64.0],[113,33,76,64.0],[113,33,77,64.0],[113,33,78,64.0],[113,33,79,64.0],[113,34,64,64.0],[113,34,65,64.0],[113,34,66,64.0],[113,34,67,64.0],[113,34,68,64.0],[113,34,69,64.0],[113,34,70,64.0],[113,34,71,64.0],[113,34,72,64.0],[113,34,73,64.0],[113,34,74,64.0],[113,34,75,64.0],[113,34,76,64.0],[113,34,77,64.0],[113,34,78,64.0],[113,34,79,64.0],[113,35,64,64.0],[113,35,65,64.0],[113,35,66,64.0],[113,35,67,64.0],[113,35,68,64.0],[113,35,69,64.0],[113,35,70,64.0],[113,35,71,64.0],[113,35,72,64.0],[113,35,73,64.0],[113,35,74,64.0],[113,35,75,64.0],[113,35,76,64.0],[113,35,77,64.0],[113,35,78,64.0],[113,35,79,64.0],[113,36,64,64.0],[113,36,65,64.0],[113,36,66,64.0],[113,36,67,64.0],[113,36,68,64.0],[113,36,69,64.0],[113,36,70,64.0],[113,36,71,64.0],[113,36,72,64.0],[113,36,73,64.0],[113,36,74,64.0],[113,36,75,64.0],[113,36,76,64.0],[113,36,77,64.0],[113,36,78,64.0],[113,36,79,64.0],[113,37,64,64.0],[113,37,65,64.0],[113,37,66,64.0],[113,37,67,64.0],[113,37,68,64.0],[113,37,69,64.0],[113,37,70,64.0],[113,37,71,64.0],[113,37,72,64.0],[113,37,73,64.0],[113,37,74,64.0],[113,37,75,64.0],[113,37,76,64.0],[113,37,77,64.0],[113,37,78,64.0],[113,37,79,64.0],[113,38,64,64.0],[113,38,65,64.0],[113,38,66,64.0],[113,38,67,64.0],[113,38,68,64.0],[113,38,69,64.0],[113,38,70,64.0],[113,38,71,64.0],[113,38,72,64.0],[113,38,73,64.0],[113,38,74,64.0],[113,38,75,64.0],[113,38,76,64.0],[113,38,77,64.0],[113,38,78,64.0],[113,38,79,64.0],[113,39,64,64.0],[113,39,65,64.0],[113,39,66,64.0],[113,39,67,64.0],[113,39,68,64.0],[113,39,69,64.0],[113,39,70,64.0],[113,39,71,64.0],[113,39,72,64.0],[113,39,73,64.0],[113,39,74,64.0],[113,39,75,64.0],[113,39,76,64.0],[113,39,77,64.0],[113,39,78,64.0],[113,39,79,64.0],[113,40,64,64.0],[113,40,65,64.0],[113,40,66,64.0],[113,40,67,64.0],[113,40,68,64.0],[113,40,69,64.0],[113,40,70,64.0],[113,40,71,64.0],[113,40,72,64.0],[113,40,73,64.0],[113,40,74,64.0],[113,40,75,64.0],[113,40,76,64.0],[113,40,77,64.0],[113,40,78,64.0],[113,40,79,64.0],[113,41,64,64.0],[113,41,65,64.0],[113,41,66,64.0],[113,41,67,64.0],[113,41,68,64.0],[113,41,69,64.0],[113,41,70,64.0],[113,41,71,64.0],[113,41,72,64.0],[113,41,73,64.0],[113,41,74,64.0],[113,41,75,64.0],[113,41,76,64.0],[113,41,77,64.0],[113,41,78,64.0],[113,41,79,64.0],[113,42,64,64.0],[113,42,65,64.0],[113,42,66,64.0],[113,42,67,64.0],[113,42,68,64.0],[113,42,69,64.0],[113,42,70,64.0],[113,42,71,64.0],[113,42,72,64.0],[113,42,73,64.0],[113,42,74,64.0],[113,42,75,64.0],[113,42,76,64.0],[113,42,77,64.0],[113,42,78,64.0],[113,42,79,64.0],[113,43,64,64.0],[113,43,65,64.0],[113,43,66,64.0],[113,43,67,64.0],[113,43,68,64.0],[113,43,69,64.0],[113,43,70,64.0],[113,43,71,64.0],[113,43,72,64.0],[113,43,73,64.0],[113,43,74,64.0],[113,43,75,64.0],[113,43,76,64.0],[113,43,77,64.0],[113,43,78,64.0],[113,43,79,64.0],[113,44,64,64.0],[113,44,65,64.0],[113,44,66,64.0],[113,44,67,64.0],[113,44,68,64.0],[113,44,69,64.0],[113,44,70,64.0],[113,44,71,64.0],[113,44,72,64.0],[113,44,73,64.0],[113,44,74,64.0],[113,44,75,64.0],[113,44,76,64.0],[113,44,77,64.0],[113,44,78,64.0],[113,44,79,64.0],[113,45,64,64.0],[113,45,65,64.0],[113,45,66,64.0],[113,45,67,64.0],[113,45,68,64.0],[113,45,69,64.0],[113,45,70,64.0],[113,45,71,64.0],[113,45,72,64.0],[113,45,73,64.0],[113,45,74,64.0],[113,45,75,64.0],[113,45,76,64.0],[113,45,77,64.0],[113,45,78,64.0],[113,45,79,64.0],[113,46,64,64.0],[113,46,65,64.0],[113,46,66,64.0],[113,46,67,64.0],[113,46,68,64.0],[113,46,69,64.0],[113,46,70,64.0],[113,46,71,64.0],[113,46,72,64.0],[113,46,73,64.0],[113,46,74,64.0],[113,46,75,64.0],[113,46,76,64.0],[113,46,77,64.0],[113,46,78,64.0],[113,46,79,64.0],[113,47,64,64.0],[113,47,65,64.0],[113,47,66,64.0],[113,47,67,64.0],[113,47,68,64.0],[113,47,69,64.0],[113,47,70,64.0],[113,47,71,64.0],[113,47,72,64.0],[113,47,73,64.0],[113,47,74,64.0],[113,47,75,64.0],[113,47,76,64.0],[113,47,77,64.0],[113,47,78,64.0],[113,47,79,64.0],[113,48,64,64.0],[113,48,65,64.0],[113,48,66,64.0],[113,48,67,64.0],[113,48,68,64.0],[113,48,69,64.0],[113,48,70,64.0],[113,48,71,64.0],[113,48,72,64.0],[113,48,73,64.0],[113,48,74,64.0],[113,48,75,64.0],[113,48,76,64.0],[113,48,77,64.0],[113,48,78,64.0],[113,48,79,64.0],[113,49,64,64.0],[113,49,65,64.0],[113,49,66,64.0],[113,49,67,64.0],[113,49,68,64.0],[113,49,69,64.0],[113,49,70,64.0],[113,49,71,64.0],[113,49,72,64.0],[113,49,73,64.0],[113,49,74,64.0],[113,49,75,64.0],[113,49,76,64.0],[113,49,77,64.0],[113,49,78,64.0],[113,49,79,64.0],[113,50,64,64.0],[113,50,65,64.0],[113,50,66,64.0],[113,50,67,64.0],[113,50,68,64.0],[113,50,69,64.0],[113,50,70,64.0],[113,50,71,64.0],[113,50,72,64.0],[113,50,73,64.0],[113,50,74,64.0],[113,50,75,64.0],[113,50,76,64.0],[113,50,77,64.0],[113,50,78,64.0],[113,50,79,64.0],[113,51,64,64.0],[113,51,65,64.0],[113,51,66,64.0],[113,51,67,64.0],[113,51,68,64.0],[113,51,69,64.0],[113,51,70,64.0],[113,51,71,64.0],[113,51,72,64.0],[113,51,73,64.0],[113,51,74,64.0],[113,51,75,64.0],[113,51,76,64.0],[113,51,77,64.0],[113,51,78,64.0],[113,51,79,64.0],[113,52,64,64.0],[113,52,65,64.0],[113,52,66,64.0],[113,52,67,64.0],[113,52,68,64.0],[113,52,69,64.0],[113,52,70,64.0],[113,52,71,64.0],[113,52,72,64.0],[113,52,73,64.0],[113,52,74,64.0],[113,52,75,64.0],[113,52,76,64.0],[113,52,77,64.0],[113,52,78,64.0],[113,52,79,64.0],[113,53,64,64.0],[113,53,65,64.0],[113,53,66,64.0],[113,53,67,64.0],[113,53,68,64.0],[113,53,69,64.0],[113,53,70,64.0],[113,53,71,64.0],[113,53,72,64.0],[113,53,73,64.0],[113,53,74,64.0],[113,53,75,64.0],[113,53,76,64.0],[113,53,77,64.0],[113,53,78,64.0],[113,53,79,64.0],[113,54,64,64.0],[113,54,65,64.0],[113,54,66,64.0],[113,54,67,64.0],[113,54,68,64.0],[113,54,69,64.0],[113,54,70,64.0],[113,54,71,64.0],[113,54,72,64.0],[113,54,73,64.0],[113,54,74,64.0],[113,54,75,64.0],[113,54,76,64.0],[113,54,77,64.0],[113,54,78,64.0],[113,54,79,64.0],[113,55,64,64.0],[113,55,65,64.0],[113,55,66,64.0],[113,55,67,64.0],[113,55,68,64.0],[113,55,69,64.0],[113,55,70,64.0],[113,55,71,64.0],[113,55,72,64.0],[113,55,73,64.0],[113,55,74,64.0],[113,55,75,64.0],[113,55,76,64.0],[113,55,77,64.0],[113,55,78,64.0],[113,55,79,64.0],[113,56,64,64.0],[113,56,65,64.0],[113,56,66,64.0],[113,56,67,64.0],[113,56,68,64.0],[113,56,69,64.0],[113,56,70,64.0],[113,56,71,64.0],[113,56,72,64.0],[113,56,73,64.0],[113,56,74,64.0],[113,56,75,64.0],[113,56,76,64.0],[113,56,77,64.0],[113,56,78,64.0],[113,56,79,64.0],[113,57,64,64.0],[113,57,65,64.0],[113,57,66,64.0],[113,57,67,64.0],[113,57,68,64.0],[113,57,69,64.0],[113,57,70,64.0],[113,57,71,64.0],[113,57,72,64.0],[113,57,73,64.0],[113,57,74,64.0],[113,57,75,64.0],[113,57,76,64.0],[113,57,77,64.0],[113,57,78,64.0],[113,57,79,64.0],[113,58,64,64.0],[113,58,65,64.0],[113,58,66,64.0],[113,58,67,64.0],[113,58,68,64.0],[113,58,69,64.0],[113,58,70,64.0],[113,58,71,64.0],[113,58,72,64.0],[113,58,73,64.0],[113,58,74,64.0],[113,58,75,64.0],[113,58,76,64.0],[113,58,77,64.0],[113,58,78,64.0],[113,58,79,64.0],[113,59,64,64.0],[113,59,65,64.0],[113,59,66,64.0],[113,59,67,64.0],[113,59,68,64.0],[113,59,69,64.0],[113,59,70,64.0],[113,59,71,64.0],[113,59,72,64.0],[113,59,73,64.0],[113,59,74,64.0],[113,59,75,64.0],[113,59,76,64.0],[113,59,77,64.0],[113,59,78,64.0],[113,59,79,64.0],[113,60,64,64.0],[113,60,65,64.0],[113,60,66,64.0],[113,60,67,64.0],[113,60,68,64.0],[113,60,69,64.0],[113,60,70,64.0],[113,60,71,64.0],[113,60,72,64.0],[113,60,73,64.0],[113,60,74,64.0],[113,60,75,64.0],[113,60,76,64.0],[113,60,77,64.0],[113,60,78,64.0],[113,60,79,64.0],[113,61,64,64.0],[113,61,65,64.0],[113,61,66,64.0],[113,61,67,64.0],[113,61,68,64.0],[113,61,69,64.0],[113,61,70,64.0],[113,61,71,64.0],[113,61,72,64.0],[113,61,73,64.0],[113,61,74,64.0],[113,61,75,64.0],[113,61,76,64.0],[113,61,77,64.0],[113,61,78,64.0],[113,61,79,64.0],[113,62,64,64.0],[113,62,65,64.0],[113,62,66,64.0],[113,62,67,64.0],[113,62,68,64.0],[113,62,69,64.0],[113,62,70,64.0],[113,62,71,64.0],[113,62,72,64.0],[113,62,73,64.0],[113,62,74,64.0],[113,62,75,64.0],[113,62,76,64.0],[113,62,77,64.0],[113,62,78,64.0],[113,62,79,64.0],[113,63,64,64.0],[113,63,65,64.0],[113,63,66,64.0],[113,63,67,64.0],[113,63,68,64.0],[113,63,69,64.0],[113,63,70,64.0],[113,63,71,64.0],[113,63,72,64.0],[113,63,73,64.0],[113,63,74,64.0],[113,63,75,64.0],[113,63,76,64.0],[113,63,77,64.0],[113,63,78,64.0],[113,63,79,64.0],[113,64,64,64.0],[113,64,65,64.0],[113,64,66,64.0],[113,64,67,64.0],[113,64,68,64.0],[113,64,69,64.0],[113,64,70,64.0],[113,64,71,64.0],[113,64,72,64.0],[113,64,73,64.0],[113,64,74,64.0],[113,64,75,64.0],[113,64,76,64.0],[113,64,77,64.0],[113,64,78,64.0],[113,64,79,64.0],[113,65,64,64.0],[113,65,65,64.0],[113,65,66,64.0],[113,65,67,64.0],[113,65,68,64.0],[113,65,69,64.0],[113,65,70,64.0],[113,65,71,64.0],[113,65,72,64.0],[113,65,73,64.0],[113,65,74,64.0],[113,65,75,64.0],[113,65,76,64.0],[113,65,77,64.0],[113,65,78,64.0],[113,65,79,64.0],[113,66,64,64.0],[113,66,65,64.0],[113,66,66,64.0],[113,66,67,64.0],[113,66,68,64.0],[113,66,69,64.0],[113,66,70,64.0],[113,66,71,64.0],[113,66,72,64.0],[113,66,73,64.0],[113,66,74,64.0],[113,66,75,64.0],[113,66,76,64.0],[113,66,77,64.0],[113,66,78,64.0],[113,66,79,64.0],[113,67,64,64.0],[113,67,65,64.0],[113,67,66,64.0],[113,67,67,64.0],[113,67,68,64.0],[113,67,69,64.0],[113,67,70,64.0],[113,67,71,64.0],[113,67,72,64.0],[113,67,73,64.0],[113,67,74,64.0],[113,67,75,64.0],[113,67,76,64.0],[113,67,77,64.0],[113,67,78,64.0],[113,67,79,64.0],[113,68,64,64.0],[113,68,65,64.0],[113,68,66,64.0],[113,68,67,64.0],[113,68,68,64.0],[113,68,69,64.0],[113,68,70,64.0],[113,68,71,64.0],[113,68,72,64.0],[113,68,73,64.0],[113,68,74,64.0],[113,68,75,64.0],[113,68,76,64.0],[113,68,77,64.0],[113,68,78,64.0],[113,68,79,64.0],[113,69,64,64.0],[113,69,65,64.0],[113,69,66,64.0],[113,69,67,64.0],[113,69,68,64.0],[113,69,69,64.0],[113,69,70,64.0],[113,69,71,64.0],[113,69,72,64.0],[113,69,73,64.0],[113,69,74,64.0],[113,69,75,64.0],[113,69,76,64.0],[113,69,77,64.0],[113,69,78,64.0],[113,69,79,64.0],[113,70,64,64.0],[113,70,65,64.0],[113,70,66,64.0],[113,70,67,64.0],[113,70,68,64.0],[113,70,69,64.0],[113,70,70,64.0],[113,70,71,64.0],[113,70,72,64.0],[113,70,73,64.0],[113,70,74,64.0],[113,70,75,64.0],[113,70,76,64.0],[113,70,77,64.0],[113,70,78,64.0],[113,70,79,64.0],[113,71,64,64.0],[113,71,65,64.0],[113,71,66,64.0],[113,71,67,64.0],[113,71,68,64.0],[113,71,69,64.0],[113,71,70,64.0],[113,71,71,64.0],[113,71,72,64.0],[113,71,73,64.0],[113,71,74,64.0],[113,71,75,64.0],[113,71,76,64.0],[113,71,77,64.0],[113,71,78,64.0],[113,71,79,64.0],[113,72,64,64.0],[113,72,65,64.0],[113,72,66,64.0],[113,72,67,64.0],[113,72,68,64.0],[113,72,69,64.0],[113,72,70,64.0],[113,72,71,64.0],[113,72,72,64.0],[113,72,73,64.0],[113,72,74,64.0],[113,72,75,64.0],[113,72,76,64.0],[113,72,77,64.0],[113,72,78,64.0],[113,72,79,64.0],[113,73,64,64.0],[113,73,65,64.0],[113,73,66,64.0],[113,73,67,64.0],[113,73,68,64.0],[113,73,69,64.0],[113,73,70,64.0],[113,73,71,64.0],[113,73,72,64.0],[113,73,73,64.0],[113,73,74,64.0],[113,73,75,64.0],[113,73,76,64.0],[113,73,77,64.0],[113,73,78,64.0],[113,73,79,64.0],[113,74,64,64.0],[113,74,65,64.0],[113,74,66,64.0],[113,74,67,64.0],[113,74,68,64.0],[113,74,69,64.0],[113,74,70,64.0],[113,74,71,64.0],[113,74,72,64.0],[113,74,73,64.0],[113,74,74,64.0],[113,74,75,64.0],[113,74,76,64.0],[113,74,77,64.0],[113,74,78,64.0],[113,74,79,64.0],[113,75,64,64.0],[113,75,65,64.0],[113,75,66,64.0],[113,75,67,64.0],[113,75,68,64.0],[113,75,69,64.0],[113,75,70,64.0],[113,75,71,64.0],[113,75,72,64.0],[113,75,73,64.0],[113,75,74,64.0],[113,75,75,64.0],[113,75,76,64.0],[113,75,77,64.0],[113,75,78,64.0],[113,75,79,64.0],[113,76,64,64.0],[113,76,65,64.0],[113,76,66,64.0],[113,76,67,64.0],[113,76,68,64.0],[113,76,69,64.0],[113,76,70,64.0],[113,76,71,64.0],[113,76,72,64.0],[113,76,73,64.0],[113,76,74,64.0],[113,76,75,64.0],[113,76,76,64.0],[113,76,77,64.0],[113,76,78,64.0],[113,76,79,64.0],[113,77,64,64.0],[113,77,65,64.0],[113,77,66,64.0],[113,77,67,64.0],[113,77,68,64.0],[113,77,69,64.0],[113,77,70,64.0],[113,77,71,64.0],[113,77,72,64.0],[113,77,73,64.0],[113,77,74,64.0],[113,77,75,64.0],[113,77,76,64.0],[113,77,77,64.0],[113,77,78,64.0],[113,77,79,64.0],[113,78,64,64.0],[113,78,65,64.0],[113,78,66,64.0],[113,78,67,64.0],[113,78,68,64.0],[113,78,69,64.0],[113,78,70,64.0],[113,78,71,64.0],[113,78,72,64.0],[113,78,73,64.0],[113,78,74,64.0],[113,78,75,64.0],[113,78,76,64.0],[113,78,77,64.0],[113,78,78,64.0],[113,78,79,64.0],[113,79,64,64.0],[113,79,65,64.0],[113,79,66,64.0],[113,79,67,64.0],[113,79,68,64.0],[113,79,69,64.0],[113,79,70,64.0],[113,79,71,64.0],[113,79,72,64.0],[113,79,73,64.0],[113,79,74,64.0],[113,79,75,64.0],[113,79,76,64.0],[113,79,77,64.0],[113,79,78,64.0],[113,79,79,64.0],[113,80,64,64.0],[113,80,65,64.0],[113,80,66,64.0],[113,80,67,64.0],[113,80,68,64.0],[113,80,69,64.0],[113,80,70,64.0],[113,80,71,64.0],[113,80,72,64.0],[113,80,73,64.0],[113,80,74,64.0],[113,80,75,64.0],[113,80,76,64.0],[113,80,77,64.0],[113,80,78,64.0],[113,80,79,64.0],[113,81,64,64.0],[113,81,65,64.0],[113,81,66,64.0],[113,81,67,64.0],[113,81,68,64.0],[113,81,69,64.0],[113,81,70,64.0],[113,81,71,64.0],[113,81,72,64.0],[113,81,73,64.0],[113,81,74,64.0],[113,81,75,64.0],[113,81,76,64.0],[113,81,77,64.0],[113,81,78,64.0],[113,81,79,64.0],[113,82,64,64.0],[113,82,65,64.0],[113,82,66,64.0],[113,82,67,64.0],[113,82,68,64.0],[113,82,69,64.0],[113,82,70,64.0],[113,82,71,64.0],[113,82,72,64.0],[113,82,73,64.0],[113,82,74,64.0],[113,82,75,64.0],[113,82,76,64.0],[113,82,77,64.0],[113,82,78,64.0],[113,82,79,64.0],[113,83,64,64.0],[113,83,65,64.0],[113,83,66,64.0],[113,83,67,64.0],[113,83,68,64.0],[113,83,69,64.0],[113,83,70,64.0],[113,83,71,64.0],[113,83,72,64.0],[113,83,73,64.0],[113,83,74,64.0],[113,83,75,64.0],[113,83,76,64.0],[113,83,77,64.0],[113,83,78,64.0],[113,83,79,64.0],[113,84,64,64.0],[113,84,65,64.0],[113,84,66,64.0],[113,84,67,64.0],[113,84,68,64.0],[113,84,69,64.0],[113,84,70,64.0],[113,84,71,64.0],[113,84,72,64.0],[113,84,73,64.0],[113,84,74,64.0],[113,84,75,64.0],[113,84,76,64.0],[113,84,77,64.0],[113,84,78,64.0],[113,84,79,64.0],[113,85,64,64.0],[113,85,65,64.0],[113,85,66,64.0],[113,85,67,64.0],[113,85,68,64.0],[113,85,69,64.0],[113,85,70,64.0],[113,85,71,64.0],[113,85,72,64.0],[113,85,73,64.0],[113,85,74,64.0],[113,85,75,64.0],[113,85,76,64.0],[113,85,77,64.0],[113,85,78,64.0],[113,85,79,64.0],[113,86,64,64.0],[113,86,65,64.0],[113,86,66,64.0],[113,86,67,64.0],[113,86,68,64.0],[113,86,69,64.0],[113,86,70,64.0],[113,86,71,64.0],[113,86,72,64.0],[113,86,73,64.0],[113,86,74,64.0],[113,86,75,64.0],[113,86,76,64.0],[113,86,77,64.0],[113,86,78,64.0],[113,86,79,64.0],[113,87,64,64.0],[113,87,65,64.0],[113,87,66,64.0],[113,87,67,64.0],[113,87,68,64.0],[113,87,69,64.0],[113,87,70,64.0],[113,87,71,64.0],[113,87,72,64.0],[113,87,73,64.0],[113,87,74,64.0],[113,87,75,64.0],[113,87,76,64.0],[113,87,77,64.0],[113,87,78,64.0],[113,87,79,64.0],[113,88,64,64.0],[113,88,65,64.0],[113,88,66,64.0],[113,88,67,64.0],[113,88,68,64.0],[113,88,69,64.0],[113,88,70,64.0],[113,88,71,64.0],[113,88,72,64.0],[113,88,73,64.0],[113,88,74,64.0],[113,88,75,64.0],[113,88,76,64.0],[113,88,77,64.0],[113,88,78,64.0],[113,88,79,64.0],[113,89,64,64.0],[113,89,65,64.0],[113,89,66,64.0],[113,89,67,64.0],[113,89,68,64.0],[113,89,69,64.0],[113,89,70,64.0],[113,89,71,64.0],[113,89,72,64.0],[113,89,73,64.0],[113,89,74,64.0],[113,89,75,64.0],[113,89,76,64.0],[113,89,77,64.0],[113,89,78,64.0],[113,89,79,64.0],[113,90,64,64.0],[113,90,65,64.0],[113,90,66,64.0],[113,90,67,64.0],[113,90,68,64.0],[113,90,69,64.0],[113,90,70,64.0],[113,90,71,64.0],[113,90,72,64.0],[113,90,73,64.0],[113,90,74,64.0],[113,90,75,64.0],[113,90,76,64.0],[113,90,77,64.0],[113,90,78,64.0],[113,90,79,64.0],[113,91,64,64.0],[113,91,65,64.0],[113,91,66,64.0],[113,91,67,64.0],[113,91,68,64.0],[113,91,69,64.0],[113,91,70,64.0],[113,91,71,64.0],[113,91,72,64.0],[113,91,73,64.0],[113,91,74,64.0],[113,91,75,64.0],[113,91,76,64.0],[113,91,77,64.0],[113,91,78,64.0],[113,91,79,64.0],[113,92,64,64.0],[113,92,65,64.0],[113,92,66,64.0],[113,92,67,64.0],[113,92,68,64.0],[113,92,69,64.0],[113,92,70,64.0],[113,92,71,64.0],[113,92,72,64.0],[113,92,73,64.0],[113,92,74,64.0],[113,92,75,64.0],[113,92,76,64.0],[113,92,77,64.0],[113,92,78,64.0],[113,92,79,64.0],[113,93,64,64.0],[113,93,65,64.0],[113,93,66,64.0],[113,93,67,64.0],[113,93,68,64.0],[113,93,69,64.0],[113,93,70,64.0],[113,93,71,64.0],[113,93,72,64.0],[113,93,73,64.0],[113,93,74,64.0],[113,93,75,64.0],[113,93,76,64.0],[113,93,77,64.0],[113,93,78,64.0],[113,93,79,64.0],[113,94,64,64.0],[113,94,65,64.0],[113,94,66,64.0],[113,94,67,64.0],[113,94,68,64.0],[113,94,69,64.0],[113,94,70,64.0],[113,94,71,64.0],[113,94,72,64.0],[113,94,73,64.0],[113,94,74,64.0],[113,94,75,64.0],[113,94,76,64.0],[113,94,77,64.0],[113,94,78,64.0],[113,94,79,64.0],[113,95,64,64.0],[113,95,65,64.0],[113,95,66,64.0],[113,95,67,64.0],[113,95,68,64.0],[113,95,69,64.0],[113,95,70,64.0],[113,95,71,64.0],[113,95,72,64.0],[113,95,73,64.0],[113,95,74,64.0],[113,95,75,64.0],[113,95,76,64.0],[113,95,77,64.0],[113,95,78,64.0],[113,95,79,64.0],[113,96,64,64.0],[113,96,65,64.0],[113,96,66,64.0],[113,96,67,64.0],[113,96,68,64.0],[113,96,69,64.0],[113,96,70,64.0],[113,96,71,64.0],[113,96,72,64.0],[113,96,73,64.0],[113,96,74,64.0],[113,96,75,64.0],[113,96,76,64.0],[113,96,77,64.0],[113,96,78,64.0],[113,96,79,64.0],[113,97,64,64.0],[113,97,65,64.0],[113,97,66,64.0],[113,97,67,64.0],[113,97,68,64.0],[113,97,69,64.0],[113,97,70,64.0],[113,97,71,64.0],[113,97,72,64.0],[113,97,73,64.0],[113,97,74,64.0],[113,97,75,64.0],[113,97,76,64.0],[113,97,77,64.0],[113,97,78,64.0],[113,97,79,64.0],[113,98,64,64.0],[113,98,65,64.0],[113,98,66,64.0],[113,98,67,64.0],[113,98,68,64.0],[113,98,69,64.0],[113,98,70,64.0],[113,98,71,64.0],[113,98,72,64.0],[113,98,73,64.0],[113,98,74,64.0],[113,98,75,64.0],[113,98,76,64.0],[113,98,77,64.0],[113,98,78,64.0],[113,98,79,64.0],[113,99,64,64.0],[113,99,65,64.0],[113,99,66,64.0],[113,99,67,64.0],[113,99,68,64.0],[113,99,69,64.0],[113,99,70,64.0],[113,99,71,64.0],[113,99,72,64.0],[113,99,73,64.0],[113,99,74,64.0],[113,99,75,64.0],[113,99,76,64.0],[113,99,77,64.0],[113,99,78,64.0],[113,99,79,64.0],[113,100,64,64.0],[113,100,65,64.0],[113,100,66,64.0],[113,100,67,64.0],[113,100,68,64.0],[113,100,69,64.0],[113,100,70,64.0],[113,100,71,64.0],[113,100,72,64.0],[113,100,73,64.0],[113,100,74,64.0],[113,100,75,64.0],[113,100,76,64.0],[113,100,77,64.0],[113,100,78,64.0],[113,100,79,64.0],[113,101,64,64.0],[113,101,65,64.0],[113,101,66,64.0],[113,101,67,64.0],[113,101,68,64.0],[113,101,69,64.0],[113,101,70,64.0],[113,101,71,64.0],[113,101,72,64.0],[113,101,73,64.0],[113,101,74,64.0],[113,101,75,64.0],[113,101,76,64.0],[113,101,77,64.0],[113,101,78,64.0],[113,101,79,64.0],[113,102,64,64.0],[113,102,65,64.0],[113,102,66,64.0],[113,102,67,64.0],[113,102,68,64.0],[113,102,69,64.0],[113,102,70,64.0],[113,102,71,64.0],[113,102,72,64.0],[113,102,73,64.0],[113,102,74,64.0],[113,102,75,64.0],[113,102,76,64.0],[113,102,77,64.0],[113,102,78,64.0],[113,102,79,64.0],[113,103,64,64.0],[113,103,65,64.0],[113,103,66,64.0],[113,103,67,64.0],[113,103,68,64.0],[113,103,69,64.0],[113,103,70,64.0],[113,103,71,64.0],[113,103,72,64.0],[113,103,73,64.0],[113,103,74,64.0],[113,103,75,64.0],[113,103,76,64.0],[113,103,77,64.0],[113,103,78,64.0],[113,103,79,64.0],[113,104,64,64.0],[113,104,65,64.0],[113,104,66,64.0],[113,104,67,64.0],[113,104,68,64.0],[113,104,69,64.0],[113,104,70,64.0],[113,104,71,64.0],[113,104,72,64.0],[113,104,73,64.0],[113,104,74,64.0],[113,104,75,64.0],[113,104,76,64.0],[113,104,77,64.0],[113,104,78,64.0],[113,104,79,64.0],[113,105,64,64.0],[113,105,65,64.0],[113,105,66,64.0],[113,105,67,64.0],[113,105,68,64.0],[113,105,69,64.0],[113,105,70,64.0],[113,105,71,64.0],[113,105,72,64.0],[113,105,73,64.0],[113,105,74,64.0],[113,105,75,64.0],[113,105,76,64.0],[113,105,77,64.0],[113,105,78,64.0],[113,105,79,64.0],[113,106,64,64.0],[113,106,65,64.0],[113,106,66,64.0],[113,106,67,64.0],[113,106,68,64.0],[113,106,69,64.0],[113,106,70,64.0],[113,106,71,64.0],[113,106,72,64.0],[113,106,73,64.0],[113,106,74,64.0],[113,106,75,64.0],[113,106,76,64.0],[113,106,77,64.0],[113,106,78,64.0],[113,106,79,64.0],[113,107,64,64.0],[113,107,65,64.0],[113,107,66,64.0],[113,107,67,64.0],[113,107,68,64.0],[113,107,69,64.0],[113,107,70,64.0],[113,107,71,64.0],[113,107,72,64.0],[113,107,73,64.0],[113,107,74,64.0],[113,107,75,64.0],[113,107,76,64.0],[113,107,77,64.0],[113,107,78,64.0],[113,107,79,64.0],[113,108,64,64.0],[113,108,65,64.0],[113,108,66,64.0],[113,108,67,64.0],[113,108,68,64.0],[113,108,69,64.0],[113,108,70,64.0],[113,108,71,64.0],[113,108,72,64.0],[113,108,73,64.0],[113,108,74,64.0],[113,108,75,64.0],[113,108,76,64.0],[113,108,77,64.0],[113,108,78,64.0],[113,108,79,64.0],[113,109,64,64.0],[113,109,65,64.0],[113,109,66,64.0],[113,109,67,64.0],[113,109,68,64.0],[113,109,69,64.0],[113,109,70,64.0],[113,109,71,64.0],[113,109,72,64.0],[113,109,73,64.0],[113,109,74,64.0],[113,109,75,64.0],[113,109,76,64.0],[113,109,77,64.0],[113,109,78,64.0],[113,109,79,64.0],[113,110,64,64.0],[113,110,65,64.0],[113,110,66,64.0],[113,110,67,64.0],[113,110,68,64.0],[113,110,69,64.0],[113,110,70,64.0],[113,110,71,64.0],[113,110,72,64.0],[113,110,73,64.0],[113,110,74,64.0],[113,110,75,64.0],[113,110,76,64.0],[113,110,77,64.0],[113,110,78,64.0],[113,110,79,64.0],[113,111,64,64.0],[113,111,65,64.0],[113,111,66,64.0],[113,111,67,64.0],[113,111,68,64.0],[113,111,69,64.0],[113,111,70,64.0],[113,111,71,64.0],[113,111,72,64.0],[113,111,73,64.0],[113,111,74,64.0],[113,111,75,64.0],[113,111,76,64.0],[113,111,77,64.0],[113,111,78,64.0],[113,111,79,64.0],[113,112,64,64.0],[113,112,65,64.0],[113,112,66,64.0],[113,112,67,64.0],[113,112,68,64.0],[113,112,69,64.0],[113,112,70,64.0],[113,112,71,64.0],[113,112,72,64.0],[113,112,73,64.0],[113,112,74,64.0],[113,112,75,64.0],[113,112,76,64.0],[113,112,77,64.0],[113,112,78,64.0],[113,112,79,64.0],[113,113,64,64.0],[113,113,65,64.0],[113,113,66,64.0],[113,113,67,64.0],[113,113,68,64.0],[113,113,69,64.0],[113,113,70,64.0],[113,113,71,64.0],[113,113,72,64.0],[113,113,73,64.0],[113,113,74,64.0],[113,113,75,64.0],[113,113,76,64.0],[113,113,77,64.0],[113,113,78,64.0],[113,113,79,64.0],[113,114,64,64.0],[113,114,65,64.0],[113,114,66,64.0],[113,114,67,64.0],[113,114,68,64.0],[113,114,69,64.0],[113,114,70,64.0],[113,114,71,64.0],[113,114,72,64.0],[113,114,73,64.0],[113,114,74,64.0],[113,114,75,64.0],[113,114,76,64.0],[113,114,77,64.0],[113,114,78,64.0],[113,114,79,64.0],[113,115,64,64.0],[113,115,65,64.0],[113,115,66,64.0],[113,115,67,64.0],[113,115,68,64.0],[113,115,69,64.0],[113,115,70,64.0],[113,115,71,64.0],[113,115,72,64.0],[113,115,73,64.0],[113,115,74,64.0],[113,115,75,64.0],[113,115,76,64.0],[113,115,77,64.0],[113,115,78,64.0],[113,115,79,64.0],[113,116,64,64.0],[113,116,65,64.0],[113,116,66,64.0],[113,116,67,64.0],[113,116,68,64.0],[113,116,69,64.0],[113,116,70,64.0],[113,116,71,64.0],[113,116,72,64.0],[113,116,73,64.0],[113,116,74,64.0],[113,116,75,64.0],[113,116,76,64.0],[113,116,77,64.0],[113,116,78,64.0],[113,116,79,64.0],[113,117,64,64.0],[113,117,65,64.0],[113,117,66,64.0],[113,117,67,64.0],[113,117,68,64.0],[113,117,69,64.0],[113,117,70,64.0],[113,117,71,64.0],[113,117,72,64.0],[113,117,73,64.0],[113,117,74,64.0],[113,117,75,64.0],[113,117,76,64.0],[113,117,77,64.0],[113,117,78,64.0],[113,117,79,64.0],[113,118,64,64.0],[113,118,65,64.0],[113,118,66,64.0],[113,118,67,64.0],[113,118,68,64.0],[113,118,69,64.0],[113,118,70,64.0],[113,118,71,64.0],[113,118,72,64.0],[113,118,73,64.0],[113,118,74,64.0],[113,118,75,64.0],[113,118,76,64.0],[113,118,77,64.0],[113,118,78,64.0],[113,118,79,64.0],[113,119,64,64.0],[113,119,65,64.0],[113,119,66,64.0],[113,119,67,64.0],[113,119,68,64.0],[113,119,69,64.0],[113,119,70,64.0],[113,119,71,64.0],[113,119,72,64.0],[113,119,73,64.0],[113,119,74,64.0],[113,119,75,64.0],[113,119,76,64.0],[113,119,77,64.0],[113,119,78,64.0],[113,119,79,64.0],[113,120,64,64.0],[113,120,65,64.0],[113,120,66,64.0],[113,120,67,64.0],[113,120,68,64.0],[113,120,69,64.0],[113,120,70,64.0],[113,120,71,64.0],[113,120,72,64.0],[113,120,73,64.0],[113,120,74,64.0],[113,120,75,64.0],[113,120,76,64.0],[113,120,77,64.0],[113,120,78,64.0],[113,120,79,64.0],[113,121,64,64.0],[113,121,65,64.0],[113,121,66,64.0],[113,121,67,64.0],[113,121,68,64.0],[113,121,69,64.0],[113,121,70,64.0],[113,121,71,64.0],[113,121,72,64.0],[113,121,73,64.0],[113,121,74,64.0],[113,121,75,64.0],[113,121,76,64.0],[113,121,77,64.0],[113,121,78,64.0],[113,121,79,64.0],[113,122,64,64.0],[113,122,65,64.0],[113,122,66,64.0],[113,122,67,64.0],[113,122,68,64.0],[113,122,69,64.0],[113,122,70,64.0],[113,122,71,64.0],[113,122,72,64.0],[113,122,73,64.0],[113,122,74,64.0],[113,122,75,64.0],[113,122,76,64.0],[113,122,77,64.0],[113,122,78,64.0],[113,122,79,64.0],[113,123,64,64.0],[113,123,65,64.0],[113,123,66,64.0],[113,123,67,64.0],[113,123,68,64.0],[113,123,69,64.0],[113,123,70,64.0],[113,123,71,64.0],[113,123,72,64.0],[113,123,73,64.0],[113,123,74,64.0],[113,123,75,64.0],[113,123,76,64.0],[113,123,77,64.0],[113,123,78,64.0],[113,123,79,64.0],[113,124,64,64.0],[113,124,65,64.0],[113,124,66,64.0],[113,124,67,64.0],[113,124,68,64.0],[113,124,69,64.0],[113,124,70,64.0],[113,124,71,64.0],[113,124,72,64.0],[113,124,73,64.0],[113,124,74,64.0],[113,124,75,64.0],[113,124,76,64.0],[113,124,77,64.0],[113,124,78,64.0],[113,124,79,64.0],[113,125,64,64.0],[113,125,65,64.0],[113,125,66,64.0],[113,125,67,64.0],[113,125,68,64.0],[113,125,69,64.0],[113,125,70,64.0],[113,125,71,64.0],[113,125,72,64.0],[113,125,73,64.0],[113,125,74,64.0],[113,125,75,64.0],[113,125,76,64.0],[113,125,77,64.0],[113,125,78,64.0],[113,125,79,64.0],[113,126,64,64.0],[113,126,65,64.0],[113,126,66,64.0],[113,126,67,64.0],[113,126,68,64.0],[113,126,69,64.0],[113,126,70,64.0],[113,126,71,64.0],[113,126,72,64.0],[113,126,73,64.0],[113,126,74,64.0],[113,126,75,64.0],[113,126,76,64.0],[113,126,77,64.0],[113,126,78,64.0],[113,126,79,64.0],[113,127,64,64.0],[113,127,65,64.0],[113,127,66,64.0],[113,127,67,64.0],[113,127,68,64.0],[113,127,69,64.0],[113,127,70,64.0],[113,127,71,64.0],[113,127,72,64.0],[113,127,73,64.0],[113,127,74,64.0],[113,127,75,64.0],[113,127,76,64.0],[113,127,77,64.0],[113,127,78,64.0],[113,127,79,64.0],[113,128,64,64.0],[113,128,65,64.0],[113,128,66,64.0],[113,128,67,64.0],[113,128,68,64.0],[113,128,69,64.0],[113,128,70,64.0],[113,128,71,64.0],[113,128,72,64.0],[113,128,73,64.0],[113,128,74,64.0],[113,128,75,64.0],[113,128,76,64.0],[113,128,77,64.0],[113,128,78,64.0],[113,128,79,64.0],[113,129,64,64.0],[113,129,65,64.0],[113,129,66,64.0],[113,129,67,64.0],[113,129,68,64.0],[113,129,69,64.0],[113,129,70,64.0],[113,129,71,64.0],[113,129,72,64.0],[113,129,73,64.0],[113,129,74,64.0],[113,129,75,64.0],[113,129,76,64.0],[113,129,77,64.0],[113,129,78,64.0],[113,129,79,64.0],[113,130,64,64.0],[113,130,65,64.0],[113,130,66,64.0],[113,130,67,64.0],[113,130,68,64.0],[113,130,69,64.0],[113,130,70,64.0],[113,130,71,64.0],[113,130,72,64.0],[113,130,73,64.0],[113,130,74,64.0],[113,130,75,64.0],[113,130,76,64.0],[113,130,77,64.0],[113,130,78,64.0],[113,130,79,64.0],[113,131,64,64.0],[113,131,65,64.0],[113,131,66,64.0],[113,131,67,64.0],[113,131,68,64.0],[113,131,69,64.0],[113,131,70,64.0],[113,131,71,64.0],[113,131,72,64.0],[113,131,73,64.0],[113,131,74,64.0],[113,131,75,64.0],[113,131,76,64.0],[113,131,77,64.0],[113,131,78,64.0],[113,131,79,64.0],[113,132,64,64.0],[113,132,65,64.0],[113,132,66,64.0],[113,132,67,64.0],[113,132,68,64.0],[113,132,69,64.0],[113,132,70,64.0],[113,132,71,64.0],[113,132,72,64.0],[113,132,73,64.0],[113,132,74,64.0],[113,132,75,64.0],[113,132,76,64.0],[113,132,77,64.0],[113,132,78,64.0],[113,132,79,64.0],[113,133,64,64.0],[113,133,65,64.0],[113,133,66,64.0],[113,133,67,64.0],[113,133,68,64.0],[113,133,69,64.0],[113,133,70,64.0],[113,133,71,64.0],[113,133,72,64.0],[113,133,73,64.0],[113,133,74,64.0],[113,133,75,64.0],[113,133,76,64.0],[113,133,77,64.0],[113,133,78,64.0],[113,133,79,64.0],[113,134,64,64.0],[113,134,65,64.0],[113,134,66,64.0],[113,134,67,64.0],[113,134,68,64.0],[113,134,69,64.0],[113,134,70,64.0],[113,134,71,64.0],[113,134,72,64.0],[113,134,73,64.0],[113,134,74,64.0],[113,134,75,64.0],[113,134,76,64.0],[113,134,77,64.0],[113,134,78,64.0],[113,134,79,64.0],[113,135,64,64.0],[113,135,65,64.0],[113,135,66,64.0],[113,135,67,64.0],[113,135,68,64.0],[113,135,69,64.0],[113,135,70,64.0],[113,135,71,64.0],[113,135,72,64.0],[113,135,73,64.0],[113,135,74,64.0],[113,135,75,64.0],[113,135,76,64.0],[113,135,77,64.0],[113,135,78,64.0],[113,135,79,64.0],[113,136,64,64.0],[113,136,65,64.0],[113,136,66,64.0],[113,136,67,64.0],[113,136,68,64.0],[113,136,69,64.0],[113,136,70,64.0],[113,136,71,64.0],[113,136,72,64.0],[113,136,73,64.0],[113,136,74,64.0],[113,136,75,64.0],[113,136,76,64.0],[113,136,77,64.0],[113,136,78,64.0],[113,136,79,64.0],[113,137,64,64.0],[113,137,65,64.0],[113,137,66,64.0],[113,137,67,64.0],[113,137,68,64.0],[113,137,69,64.0],[113,137,70,64.0],[113,137,71,64.0],[113,137,72,64.0],[113,137,73,64.0],[113,137,74,64.0],[113,137,75,64.0],[113,137,76,64.0],[113,137,77,64.0],[113,137,78,64.0],[113,137,79,64.0],[113,138,64,64.0],[113,138,65,64.0],[113,138,66,64.0],[113,138,67,64.0],[113,138,68,64.0],[113,138,69,64.0],[113,138,70,64.0],[113,138,71,64.0],[113,138,72,64.0],[113,138,73,64.0],[113,138,74,64.0],[113,138,75,64.0],[113,138,76,64.0],[113,138,77,64.0],[113,138,78,64.0],[113,138,79,64.0],[113,139,64,64.0],[113,139,65,64.0],[113,139,66,64.0],[113,139,67,64.0],[113,139,68,64.0],[113,139,69,64.0],[113,139,70,64.0],[113,139,71,64.0],[113,139,72,64.0],[113,139,73,64.0],[113,139,74,64.0],[113,139,75,64.0],[113,139,76,64.0],[113,139,77,64.0],[113,139,78,64.0],[113,139,79,64.0],[113,140,64,64.0],[113,140,65,64.0],[113,140,66,64.0],[113,140,67,64.0],[113,140,68,64.0],[113,140,69,64.0],[113,140,70,64.0],[113,140,71,64.0],[113,140,72,64.0],[113,140,73,64.0],[113,140,74,64.0],[113,140,75,64.0],[113,140,76,64.0],[113,140,77,64.0],[113,140,78,64.0],[113,140,79,64.0],[113,141,64,64.0],[113,141,65,64.0],[113,141,66,64.0],[113,141,67,64.0],[113,141,68,64.0],[113,141,69,64.0],[113,141,70,64.0],[113,141,71,64.0],[113,141,72,64.0],[113,141,73,64.0],[113,141,74,64.0],[113,141,75,64.0],[113,141,76,64.0],[113,141,77,64.0],[113,141,78,64.0],[113,141,79,64.0],[113,142,64,64.0],[113,142,65,64.0],[113,142,66,64.0],[113,142,67,64.0],[113,142,68,64.0],[113,142,69,64.0],[113,142,70,64.0],[113,142,71,64.0],[113,142,72,64.0],[113,142,73,64.0],[113,142,74,64.0],[113,142,75,64.0],[113,142,76,64.0],[113,142,77,64.0],[113,142,78,64.0],[113,142,79,64.0],[113,143,64,64.0],[113,143,65,64.0],[113,143,66,64.0],[113,143,67,64.0],[113,143,68,64.0],[113,143,69,64.0],[113,143,70,64.0],[113,143,71,64.0],[113,143,72,64.0],[113,143,73,64.0],[113,143,74,64.0],[113,143,75,64.0],[113,143,76,64.0],[113,143,77,64.0],[113,143,78,64.0],[113,143,79,64.0],[113,144,64,64.0],[113,144,65,64.0],[113,144,66,64.0],[113,144,67,64.0],[113,144,68,64.0],[113,144,69,64.0],[113,144,70,64.0],[113,144,71,64.0],[113,144,72,64.0],[113,144,73,64.0],[113,144,74,64.0],[113,144,75,64.0],[113,144,76,64.0],[113,144,77,64.0],[113,144,78,64.0],[113,144,79,64.0],[113,145,64,64.0],[113,145,65,64.0],[113,145,66,64.0],[113,145,67,64.0],[113,145,68,64.0],[113,145,69,64.0],[113,145,70,64.0],[113,145,71,64.0],[113,145,72,64.0],[113,145,73,64.0],[113,145,74,64.0],[113,145,75,64.0],[113,145,76,64.0],[113,145,77,64.0],[113,145,78,64.0],[113,145,79,64.0],[113,146,64,64.0],[113,146,65,64.0],[113,146,66,64.0],[113,146,67,64.0],[113,146,68,64.0],[113,146,69,64.0],[113,146,70,64.0],[113,146,71,64.0],[113,146,72,64.0],[113,146,73,64.0],[113,146,74,64.0],[113,146,75,64.0],[113,146,76,64.0],[113,146,77,64.0],[113,146,78,64.0],[113,146,79,64.0],[113,147,64,64.0],[113,147,65,64.0],[113,147,66,64.0],[113,147,67,64.0],[113,147,68,64.0],[113,147,69,64.0],[113,147,70,64.0],[113,147,71,64.0],[113,147,72,64.0],[113,147,73,64.0],[113,147,74,64.0],[113,147,75,64.0],[113,147,76,64.0],[113,147,77,64.0],[113,147,78,64.0],[113,147,79,64.0],[113,148,64,64.0],[113,148,65,64.0],[113,148,66,64.0],[113,148,67,64.0],[113,148,68,64.0],[113,148,69,64.0],[113,148,70,64.0],[113,148,71,64.0],[113,148,72,64.0],[113,148,73,64.0],[113,148,74,64.0],[113,148,75,64.0],[113,148,76,64.0],[113,148,77,64.0],[113,148,78,64.0],[113,148,79,64.0],[113,149,64,64.0],[113,149,65,64.0],[113,149,66,64.0],[113,149,67,64.0],[113,149,68,64.0],[113,149,69,64.0],[113,149,70,64.0],[113,149,71,64.0],[113,149,72,64.0],[113,149,73,64.0],[113,149,74,64.0],[113,149,75,64.0],[113,149,76,64.0],[113,149,77,64.0],[113,149,78,64.0],[113,149,79,64.0],[113,150,64,64.0],[113,150,65,64.0],[113,150,66,64.0],[113,150,67,64.0],[113,150,68,64.0],[113,150,69,64.0],[113,150,70,64.0],[113,150,71,64.0],[113,150,72,64.0],[113,150,73,64.0],[113,150,74,64.0],[113,150,75,64.0],[113,150,76,64.0],[113,150,77,64.0],[113,150,78,64.0],[113,150,79,64.0],[113,151,64,64.0],[113,151,65,64.0],[113,151,66,64.0],[113,151,67,64.0],[113,151,68,64.0],[113,151,69,64.0],[113,151,70,64.0],[113,151,71,64.0],[113,151,72,64.0],[113,151,73,64.0],[113,151,74,64.0],[113,151,75,64.0],[113,151,76,64.0],[113,151,77,64.0],[113,151,78,64.0],[113,151,79,64.0],[113,152,64,64.0],[113,152,65,64.0],[113,152,66,64.0],[113,152,67,64.0],[113,152,68,64.0],[113,152,69,64.0],[113,152,70,64.0],[113,152,71,64.0],[113,152,72,64.0],[113,152,73,64.0],[113,152,74,64.0],[113,152,75,64.0],[113,152,76,64.0],[113,152,77,64.0],[113,152,78,64.0],[113,152,79,64.0],[113,153,64,64.0],[113,153,65,64.0],[113,153,66,64.0],[113,153,67,64.0],[113,153,68,64.0],[113,153,69,64.0],[113,153,70,64.0],[113,153,71,64.0],[113,153,72,64.0],[113,153,73,64.0],[113,153,74,64.0],[113,153,75,64.0],[113,153,76,64.0],[113,153,77,64.0],[113,153,78,64.0],[113,153,79,64.0],[113,154,64,64.0],[113,154,65,64.0],[113,154,66,64.0],[113,154,67,64.0],[113,154,68,64.0],[113,154,69,64.0],[113,154,70,64.0],[113,154,71,64.0],[113,154,72,64.0],[113,154,73,64.0],[113,154,74,64.0],[113,154,75,64.0],[113,154,76,64.0],[113,154,77,64.0],[113,154,78,64.0],[113,154,79,64.0],[113,155,64,64.0],[113,155,65,64.0],[113,155,66,64.0],[113,155,67,64.0],[113,155,68,64.0],[113,155,69,64.0],[113,155,70,64.0],[113,155,71,64.0],[113,155,72,64.0],[113,155,73,64.0],[113,155,74,64.0],[113,155,75,64.0],[113,155,76,64.0],[113,155,77,64.0],[113,155,78,64.0],[113,155,79,64.0],[113,156,64,64.0],[113,156,65,64.0],[113,156,66,64.0],[113,156,67,64.0],[113,156,68,64.0],[113,156,69,64.0],[113,156,70,64.0],[113,156,71,64.0],[113,156,72,64.0],[113,156,73,64.0],[113,156,74,64.0],[113,156,75,64.0],[113,156,76,64.0],[113,156,77,64.0],[113,156,78,64.0],[113,156,79,64.0],[113,157,64,64.0],[113,157,65,64.0],[113,157,66,64.0],[113,157,67,64.0],[113,157,68,64.0],[113,157,69,64.0],[113,157,70,64.0],[113,157,71,64.0],[113,157,72,64.0],[113,157,73,64.0],[113,157,74,64.0],[113,157,75,64.0],[113,157,76,64.0],[113,157,77,64.0],[113,157,78,64.0],[113,157,79,64.0],[113,158,64,64.0],[113,158,65,64.0],[113,158,66,64.0],[113,158,67,64.0],[113,158,68,64.0],[113,158,69,64.0],[113,158,70,64.0],[113,158,71,64.0],[113,158,72,64.0],[113,158,73,64.0],[113,158,74,64.0],[113,158,75,64.0],[113,158,76,64.0],[113,158,77,64.0],[113,158,78,64.0],[113,158,79,64.0],[113,159,64,64.0],[113,159,65,64.0],[113,159,66,64.0],[113,159,67,64.0],[113,159,68,64.0],[113,159,69,64.0],[113,159,70,64.0],[113,159,71,64.0],[113,159,72,64.0],[113,159,73,64.0],[113,159,74,64.0],[113,159,75,64.0],[113,159,76,64.0],[113,159,77,64.0],[113,159,78,64.0],[113,159,79,0.3520292226377109],[113,160,64,64.0],[113,160,65,64.0],[113,160,66,64.0],[113,160,67,64.0],[113,160,68,64.0],[113,160,69,64.0],[113,160,70,64.0],[113,160,71,64.0],[113,160,72,64.0],[113,160,73,64.0],[113,160,74,64.0],[113,160,75,64.0],[113,160,76,64.0],[113,160,77,0.33637738215716],[113,160,78,0.29239787828311614],[113,160,79,0.3517329919821777],[113,161,64,64.0],[113,161,65,64.0],[113,161,66,64.0],[113,161,67,64.0],[113,161,68,64.0],[113,161,69,64.0],[113,161,70,64.0],[113,161,71,64.0],[113,161,72,64.0],[113,161,73,64.0],[113,161,74,64.0],[113,161,75,64.0],[113,161,76,0.3643275743792038],[113,161,77,0.321602756084636],[113,161,78,0.2915119193587401],[113,161,79,0.35151322614058733],[113,162,64,64.0],[113,162,65,64.0],[113,162,66,64.0],[113,162,67,64.0],[113,162,68,64.0],[113,162,69,64.0],[113,162,70,64.0],[113,162,71,64.0],[113,162,72,64.0],[113,162,73,64.0],[113,162,74,64.0],[113,162,75,0.3849743200291476],[113,162,76,0.3463262554916753],[113,162,77,0.3066190238465324],[113,162,78,0.2910521525081727],[113,162,79,0.35150472997156756],[113,163,64,64.0],[113,163,65,64.0],[113,163,66,64.0],[113,163,67,64.0],[113,163,68,64.0],[113,163,69,64.0],[113,163,70,64.0],[113,163,71,64.0],[113,163,72,64.0],[113,163,73,0.43135507765113995],[113,163,74,0.39793290029677414],[113,163,75,0.36360286546571163],[113,163,76,0.3282062885356687],[113,163,77,0.2916690370008462],[113,163,78,0.29114704490763],[113,163,79,0.35183898986910334],[113,164,64,64.0],[113,164,65,64.0],[113,164,66,64.0],[113,164,67,64.0],[113,164,68,64.0],[113,164,69,64.0],[113,164,70,64.0],[113,164,71,64.0],[113,164,72,0.4324634077285754],[113,164,73,0.4031174748582422],[113,164,74,0.3731430399543406],[113,164,75,0.3422480737580314],[113,164,76,0.3102367218407203],[113,164,77,0.27699889303388736],[113,164,78,0.29191668780883073],[113,164,79,0.352641534992902],[113,165,64,64.0],[113,165,65,64.0],[113,165,66,64.0],[113,165,67,64.0],[113,165,68,64.0],[113,165,69,64.0],[113,165,70,64.0],[113,165,71,0.42627623631247535],[113,165,72,0.40075627282078025],[113,165,73,0.37495910773682173],[113,165,74,0.3485518077834239],[113,165,75,0.321205466207247],[113,165,76,0.2926880910191667],[113,165,77,0.2628545665327583],[113,165,78,0.2934700721445802],[113,165,79,0.35402911215092747],[113,166,64,64.0],[113,166,65,64.0],[113,166,66,64.0],[113,166,67,64.0],[113,166,68,64.0],[113,166,69,0.4320791043962767],[113,166,70,0.4124861716609621],[113,166,71,0.3912928775068888],[113,166,72,0.3693758606543569],[113,166,73,0.34722729254481577],[113,166,74,0.3244798931117523],[113,166,75,0.3007691988855681],[113,166,76,0.275828294071438],[113,166,77,0.24947815581990995],[113,166,78,0.2959022061127],[113,166,79,0.35610667433407306],[113,167,64,64.0],[113,167,65,64.0],[113,167,66,64.0],[113,167,67,64.0],[113,167,68,0.40435214037225964],[113,167,69,0.39053869194997454],[113,167,70,0.3744944614036529],[113,167,71,0.3569260038162607],[113,167,72,0.33869262141912526],[113,167,73,0.32026488947183646],[113,167,74,0.30124256590392046],[113,167,75,0.28122710765069114],[113,167,76,0.2599180517723406],[113,167,77,0.2371037517876594],[113,167,78,0.29929108141088123],[113,167,79,0.3589641895109525],[113,168,64,64.0],[113,168,65,64.0],[113,168,66,64.0],[113,168,67,0.3677685121940688],[113,168,68,0.36016125116861053],[113,168,69,0.3498746022787003],[113,168,70,0.3374468894394429],[113,168,71,0.3235640540362096],[113,168,72,0.30906685563727687],[113,168,73,0.29440401874232314],[113,168,74,0.2791438502367738],[113,168,75,0.2628553378197615],[113,168,76,0.24520598945027924],[113,168,77,0.24116772090415875],[113,168,78,0.3036945235669284],[113,168,79,0.3626733047981841],[113,169,64,64.0],[113,169,65,64.0],[113,169,66,0.32255605161481093],[113,169,67,0.32136823955677135],[113,169,68,0.31722775480623944],[113,169,69,0.3105141483645272],[113,169,70,0.30174281393609037],[113,169,71,0.2915781338327787],[113,169,72,0.2808413246285281],[113,169,73,0.269959165543697],[113,169,74,0.2584701249518214],[113,169,75,0.2459124391108926],[113,169,76,0.2319232219309197],[113,169,77,0.24741736483327328],[113,169,78,0.30914681043198733],[113,169,79,0.3672837512057161],[113,170,64,0.40426711296242024],[113,170,65,0.35177940539382574],[113,170,66,0.29613491138779785],[113,170,67,0.276629074518567],[113,170,68,0.27598028837625554],[113,170,69,0.27285851931205884],[113,170,70,0.2677555643903495],[113,170,71,0.26131352525089246],[113,170,72,0.2543332890413795],[113,170,73,0.24721975094076126],[113,170,74,0.23948322785107756],[113,170,75,0.23063300143002938],[113,170,76,0.22027751644099353],[113,170,77,0.2548559006409201],[113,170,78,0.31565513208901574],[113,170,79,0.3728195614484978],[113,171,64,0.38493395278424136],[113,171,65,0.3331496686883796],[113,171,66,0.27821429571628886],[113,171,67,0.23396921701567575],[113,171,68,0.23681065570771176],[113,171,69,0.23727259747071025],[113,171,70,0.23582280801724081],[113,171,71,0.23308061362960703],[113,171,72,0.22982600293600397],[113,171,73,0.22644219601631538],[113,171,74,0.22241309043257385],[113,171,75,0.21722085825760162],[113,171,76,0.21044705998689922],[113,171,77,0.2634418345759657],[113,171,78,0.32319591821795296],[113,171,79,0.37927512663270424],[113,172,64,0.36343730412210634],[113,172,65,0.3124130689656708],[113,172,66,0.25824979981023183],[113,172,67,0.20131194593787344],[113,172,68,0.20006238662268022],[113,172,69,0.20407408881381903],[113,172,70,0.20623626777564263],[113,172,71,0.20714520478020826],[113,172,72,0.207559636544238],[113,172,73,0.2078414526309847],[113,172,74,0.20744987682408],[113,172,75,0.20584183155694757],[113,172,76,0.21158215935999292],[113,172,77,0.2730981823921474],[113,172,78,0.3317110076162515],[113,172,79,0.38661106676939444],[113,173,64,0.34012012051279006],[113,173,65,0.28989775087566566],[113,173,66,0.2365542088383204],[113,173,67,0.18045592481206074],[113,173,68,0.16601857155833813],[113,173,69,0.17352196638154654],[113,173,70,0.17923079183906598],[113,173,71,0.18371823223791983],[113,173,72,0.18772162751932742],[113,173,73,0.19158200061678288],[113,173,74,0.19473562673140415],[113,173,75,0.19661601802272155],[113,173,76,0.22337049111474064],[113,173,77,0.28370879760373013],[113,173,78,0.3411036596986851],[113,173,79,0.3947499149412329],[113,174,64,0.31537566856734556],[113,174,65,0.2659816522492832],[113,174,66,0.21348952940929194],[113,174,67,0.15826748752722436],[113,174,68,0.1348889715563225],[113,174,69,0.14580422678778576],[113,174,70,0.15497277451181551],[113,174,71,0.16294485458740302],[113,174,72,0.17043646067557522],[113,174,73,0.17776831140453797],[113,174,74,0.18435540240137796],[113,174,75,0.18960961666936876],[113,174,76,0.23601229155298087],[113,174,77,0.29511456966793714],[113,174,78,0.3512344079763692],[113,174,79,0.40357161512221706],[113,175,64,0.289648018444974],[113,175,65,0.2410931718731263],[113,175,66,0.18946784700484132],[113,175,67,0.13514180870420173],[113,175,68,0.1067964036195848],[113,175,69,0.12102495979131342],[113,175,70,0.13354792859074982],[113,175,71,0.14489294286224425],[113,175,72,0.15575487621808162],[113,175,73,0.16643477808534893],[113,175,74,0.17632793959968562],[113,175,75,0.1893406203299997],[113,175,76,0.24928185233182382],[113,175,77,0.30710949209398686],[113,175,78,0.3619167555148391],[113,175,79,0.4129088336502772],[113,176,64,0.2634324072965762],[113,176,65,0.21571172025694116],[113,176,66,0.16495207822180447],[113,176,67,0.11152469995004871],[113,176,68,0.08176240143625642],[113,176,69,0.09919073093071903],[113,176,70,0.11494840917221669],[113,176,71,0.12954095801803467],[113,176,72,0.14364250646221732],[113,176,73,0.1575351119057556],[113,176,74,0.1705958026032471],[113,176,75,0.2042136844922261],[113,176,76,0.26290292213616606],[113,176,77,0.3194366004790216],[113,176,78,0.37291271237144746],[113,176,79,0.4225420843529737],[113,177,64,0.23710815627201387],[113,177,65,0.19020457752642275],[113,177,66,0.1402971987886084],[113,177,67,0.0877586238753146],[113,177,68,0.059692151470795415],[113,177,69,0.08019627722336922],[113,177,70,0.09905928890439131],[113,177,71,0.11676521847926463],[113,177,72,0.133967941043021],[113,177,73,0.15093120519678904],[113,177,74,0.16701504320730692],[113,177,75,0.21921656604280454],[113,177,76,0.2766461871522048],[113,177,77,0.3318784828251002],[113,177,78,0.3840163796629008],[113,177,79,0.4322764807012891],[113,178,64,0.21030360848910845],[113,178,65,0.164205873043608],[113,178,66,0.11514476874096428],[113,178,67,0.06349420771549348],[113,178,68,0.04035870442260521],[113,178,69,0.06380951592857531],[113,178,70,0.08564438468519067],[113,178,71,0.10632655776017856],[113,178,72,0.1264902206146662],[113,178,73,0.14638146073703973],[113,178,74,0.1771888877824187],[113,178,75,0.23457747913024907],[113,178,76,0.2907209657043148],[113,178,77,0.3446252890922446],[113,178,78,0.39539858034639574],[113,178,79,0.4422634722652343],[113,179,64,0.1825486687643431],[113,179,65,0.1372538961500426],[113,179,66,0.08904324804861383],[113,179,67,0.0382918390481861],[113,179,68,0.023386488560076038],[113,179,69,0.04965589198863578],[113,179,70,0.07433146047300096],[113,179,71,0.09785639583708293],[113,179,72,0.1208457816938103],[113,179,73,0.14352860915589183],[113,179,74,0.19448995739629227],[113,179,75,0.2505909494681531],[113,179,76,0.30540019101165605],[113,179,77,0.3579282456459861],[113,179,78,0.40728886028627453],[113,179,79,0.45271108726889625],[113,180,64,0.15353561535185173],[113,180,65,0.10904597334563254],[113,180,66,0.06169627149512],[113,180,67,0.011862692263806277],[113,180,68,0.008443493998516335],[113,180,69,0.0374043256245646],[113,180,70,0.06479154406802219],[113,180,71,0.091029091732217],[113,180,72,0.11671357723825947],[113,180,73,0.15729631190038182],[113,180,74,0.21269986472914176],[113,180,75,0.2674521027025738],[113,180,76,0.3208652615191758],[113,180,77,0.3719550650597019],[113,180,78,0.41984137666466315],[113,180,79,0.4637601421438302],[113,181,64,0.12310018533337518],[113,181,65,0.07942000030879601],[113,181,66,0.03294467785830818],[113,181,67,-0.01594869405321453],[113,181,68,-0.004240446080311044],[113,181,69,0.02726783545209656],[113,181,70,0.057220819656562366],[113,181,71,0.08602420071141877],[113,181,72,0.12344562052617665],[113,181,73,0.17789414978235085],[113,181,74,0.23193260555816908],[113,181,75,0.2852680219670105],[113,181,76,0.3372164703117295],[113,181,77,0.38679942350071417],[113,181,78,0.4331434053628766],[113,181,79,0.47549176706472485],[113,182,64,0.09120340007479927],[113,182,65,0.04833670043114423],[113,182,66,0.0027492493804867346],[113,182,67,-0.045181148383135694],[113,182,68,-0.014398780737847547],[113,182,69,0.019495823265681944],[113,182,70,0.0518513121958387],[113,182,71,0.09332496084048393],[113,182,72,0.146540510071706],[113,182,73,0.19961345143177817],[113,182,74,0.2522191403207885],[113,182,75,0.30406865427574337],[113,182,76,0.35448302212090776],[113,182,77,0.40249006565432077],[113,182,78,0.4472235167452444],[113,182,79,0.4879346413899106],[113,183,64,0.057914229864404795],[113,183,65,0.015862706741765403],[113,183,66,-0.02882574408651973],[113,183,67,-0.05972588087185031],[113,183,68,-0.02188012145886481],[113,183,69,0.016126147994921708],[113,183,70,0.06724591298659328],[113,183,71,0.11892960426100672],[113,183,72,0.1707735925478706],[113,183,73,0.2224096619611699],[113,183,74,0.2735186061707417],[113,183,75,0.3238172024782916],[113,183,76,0.3726325786323782],[113,183,77,0.4189994818801063],[113,183,78,0.4620593684981578],[113,183,79,0.5010718915609296],[113,184,64,0.03788476653140865],[113,184,65,-0.007084784665409294],[113,184,66,-0.05051035126223706],[113,184,67,-0.0511538821411643],[113,184,68,-0.00353701753831738],[113,184,69,0.045413675250246435],[113,184,70,0.09526805978409035],[113,184,71,0.14560537615640373],[113,184,72,0.19602760789308382],[113,184,73,0.2461728921682514],[113,184,74,0.2957289733368105],[113,184,75,0.3444200027747235],[113,184,76,0.39158033209350696],[113,184,77,0.43625215760031205],[113,184,78,0.47758511552413846],[113,184,79,0.5148476514609963],[113,185,64,0.046851041111977576],[113,185,65,1.943033337672151E-4],[113,185,66,-0.044976415353144686],[113,185,67,-0.018603623223291177],[113,185,68,0.027906229685115802],[113,185,69,0.07565333626515312],[113,185,70,0.12421201118980528],[113,185,71,0.17316715074639533],[113,185,72,0.2221274608318441],[113,185,73,0.2707387297461464],[113,185,74,0.3186971457846395],[113,185,75,0.36573588779229527],[113,185,76,0.4111976072216892],[113,185,77,0.45413239492066504],[113,185,78,0.49369843689128695],[113,185,79,0.5291732852326603],[113,186,64,0.052765665712966286],[113,186,65,0.004578121835475721],[113,186,66,-0.029177615361912143],[113,186,67,0.014663515853670206],[113,186,68,0.06005852486595431],[113,186,69,0.10658800411727071],[113,186,70,0.1538314491831795],[113,186,71,0.2013803086176355],[113,186,72,0.24885108044410045],[113,186,73,0.29589845529233844],[113,186,74,0.34222850618143524],[113,186,75,0.38758503522320603],[113,186,76,0.43131999141319743],[113,186,77,0.47249170648348626],[113,186,78,0.5102671798379512],[113,186,79,0.5439332725545355],[113,187,64,0.05602663439761636],[113,187,65,0.006458899848348937],[113,187,66,0.005486178141895573],[113,187,67,0.04832685402798351],[113,187,68,0.09260934264137728],[113,187,69,0.13791846133917596],[113,187,70,0.18383957927069533],[113,187,71,0.22997154234078176],[113,187,72,0.27593964703637563],[113,187,73,0.3214086631160791],[113,187,74,0.3660959051632352],[113,187,75,0.4097573020231746],[113,187,76,0.4517549932522784],[113,187,77,0.491155781552831],[113,187,78,0.5271356208323927],[113,187,79,0.5589907563768923],[113,188,64,0.0571773866227851],[113,188,65,0.006370755758822941],[113,188,66,0.04017530132290406],[113,188,67,0.0820330223455574],[113,188,68,0.1252162503307714],[113,188,69,0.1693145433901569],[113,188,70,0.21391978503403342],[113,188,71,0.2586389941308519],[113,188,72,0.303107186315299],[113,188,73,0.34700028684486084],[113,188,74,0.3900480949053176],[113,188,75,0.43202004417137957],[113,188,76,0.4722892293209908],[113,188,77,0.5099310243321175],[113,188,78,0.5441303436878594],[113,188,79,0.5741927531164809],[113,189,64,0.056252497896021283],[113,189,65,0.035206380386271496],[113,189,66,0.07450516371729597],[113,189,67,0.11540721405104953],[113,189,68,0.1575157527916956],[113,189,69,0.20042555114997462],[113,189,70,0.24373558190320097],[113,189,71,0.2870617255505368],[113,189,72,0.33004953086323574],[113,189,73,0.3723870298296569],[113,189,74,0.41381760699547937],[113,189,75,0.45412542199150024],[113,189,76,0.4926951393095511],[113,189,77,0.5286106645140237],[113,189,78,0.561065734732868],[113,189,79,0.5893750253104094],[113,190,64,0.052662519859111356],[113,190,65,0.06957666241150029],[113,190,66,0.10808034792625987],[113,190,67,0.14806365166649232],[113,190,68,0.18913337885026832],[113,190,69,0.23088993243422112],[113,190,70,0.2729398701542431],[113,190,71,0.3149085192560994],[113,190,72,0.35645264891566497],[113,190,73,0.39727320034860036],[113,190,74,0.4371280746098705],[113,190,75,0.47581719103357556],[113,190,76,0.5127372294269166],[113,190,77,0.5469804400624105],[113,190,78,0.577749095036478],[113,190,79,0.6043666167288808],[113,191,64,0.06672506052496763],[113,191,65,0.10275037159358887],[113,191,66,0.14050462799836222],[113,191,67,0.179615271058291],[113,191,68,0.219693009306797],[113,191,69,0.26034423253205935],[113,191,70,0.30118348713229304],[113,191,71,0.3418460127865817],[113,191,72,0.38200034044098313],[113,191,73,0.4213609516097439],[113,191,74,0.4597009989919902],[113,191,75,0.49683697851723746],[113,191,76,0.5321778441121279],[113,191,77,0.5648238522267444],[113,191,78,0.5939853696889843],[113,191,79,0.6189940499471691],[113,192,64,0.0988823241740303],[113,192,65,0.13433323833325056],[113,192,66,0.1713901831380625],[113,192,67,0.2096826224921535],[113,192,68,0.24882544651622449],[113,192,69,0.2884313137659388],[113,192,70,0.3281230586995706],[113,192,71,0.36754616439594345],[113,192,72,0.4063813005223869],[113,192,73,0.4443569265525679],[113,192,74,0.48126196023452905],[113,192,75,0.5169300453360317],[113,192,76,0.5507824660461407],[113,192,77,0.581926992788776],[113,192,78,0.6095814941378075],[113,192,79,0.6330851863766435],[113,193,64,0.12901914162925673],[113,193,65,0.1639489780609612],[113,193,66,0.20036600673997265],[113,193,67,0.2379019886755701],[113,193,68,0.27617622554302573],[113,193,69,0.3148078440729322],[113,193,70,0.35342814990798876],[113,193,71,0.39169305092781376],[113,193,72,0.42929555004152364],[113,193,73,0.4659783074479491],[113,193,74,0.5015462723637913],[113,193,75,0.5358505336225726],[113,193,76,0.5683245444639132],[113,193,77,0.5980829435412587],[113,193,78,0.624350357578388],[113,193,79,0.6464727487546575],[113,194,64,0.15678332958674873],[113,194,65,0.19124715195622605],[113,194,66,0.22708551074969946],[113,194,67,0.2639327197886516],[113,194,68,0.30141266689133234],[113,194,69,0.3391510546084427],[113,194,70,0.3767877148970866],[113,194,71,0.41398899773353676],[113,194,72,0.45046023366456056],[113,194,73,0.4859582702971987],[113,194,74,0.5203040827272651],[113,194,75,0.5533661998750643],[113,194,76,0.5845898517672449],[113,194,77,0.6130957479991601],[113,194,78,0.638114383400491],[113,194,79,0.6589975060936766],[113,195,64,0.18185732415963016],[113,195,65,0.21591020427815966],[113,195,66,0.25123332535079623],[113,195,67,0.2874637855028691],[113,195,68,0.3242301708098453],[113,195,69,0.36116476637185624],[113,195,70,0.3979158460168832],[113,195,71,0.43416004063312386],[113,195,72,0.4696147851303035],[113,195,73,0.5040508440298261],[113,195,74,0.5373049156840198],[113,195,75,0.5692626336448894],[113,195,76,0.599380368438084],[113,195,77,0.6267839553431129],[113,195,78,0.6507087266896997],[113,195,79,0.6705111210894389],[113,196,64,0.20396453863999447],[113,196,65,0.23765960546832693],[113,196,66,0.27253122049699247],[113,196,67,0.30821946792041977],[113,196,68,0.34435767459614486],[113,196,69,0.3805846048667761],[113,196,70,0.4165567388838756],[113,196,71,0.45196063443426154],[113,196,72,0.48652537226850034],[113,196,73,0.5200350849315032],[113,196,74,0.5523415690954495],[113,196,75,0.5833468683785308],[113,196,76,0.6125176010648014],[113,196,77,0.6389836399396682],[113,196,78,0.6619839911364795],[113,196,79,0.6808785619583823],[113,197,64,0.22276849588255024],[113,197,65,0.2561506995073912],[113,197,66,0.29062868446272067],[113,197,67,0.32584573096324676],[113,197,68,0.36143990995251074],[113,197,69,0.39705627227649726],[113,197,70,0.4323591262611175],[113,197,71,0.4670444036940482],[113,197,72,0.5008521142107076],[113,197,73,0.5335788880842889],[113,197,74,0.5650906074200589],[113,197,75,0.5953045950300383],[113,197,76,0.6236967063721552],[113,197,77,0.6493999269987143],[113,197,78,0.6716559068917446],[113,197,79,0.689826897041265],[113,198,64,0.23770015277414636],[113,198,65,0.2707936863269394],[113,198,66,0.3049174191313191],[113,198,67,0.339718165220988],[113,198,68,0.3748388082668075],[113,198,69,0.40993048763896267],[113,198,70,0.4446648773252956],[113,198,71,0.47874655770628205],[113,198,72,0.5119254801864356],[113,198,73,0.5440095246820726],[113,198,74,0.5748771499656251],[113,198,75,0.6044592598166688],[113,198,76,0.6322402399832339],[113,198,77,0.6573562663468627],[113,198,78,0.6790514607348773],[113,198,79,0.6966899895290276],[113,199,64,0.2482764079608814],[113,199,65,0.2810851720068811],[113,199,66,0.3148756145712204],[113,199,67,0.34929855180251257],[113,199,68,0.3840018230579973],[113,199,69,0.41864246833383056],[113,199,70,0.45289900207174905],[113,199,71,0.48648378334257364],[113,199,72,0.5191554824063415],[113,199,73,0.5507316436490061],[113,199,74,0.581101344895881],[113,199,75,0.6102068564270773],[113,199,76,0.6375407088602202],[113,199,77,0.6622433374666035],[113,199,78,0.6835620146108038],[113,199,79,0.7008630875138956],[113,200,64,0.2541597997600613],[113,200,65,0.2866703210904231],[113,200,66,0.32013251964779954],[113,200,67,0.3542017899814175],[113,200,68,0.3885311321922702],[113,200,69,0.42278330822582144],[113,200,70,0.4566430967104181],[113,200,71,0.4898296463418654],[113,200,72,0.5221089278139619],[113,200,73,0.5533062842949369],[113,200,74,0.5833190804499552],[113,200,75,0.6120983060323781],[113,200,76,0.6391445075144361],[113,200,77,0.6636042591425507],[113,200,78,0.6847293597530727],[113,200,79,0.7018891733908446],[113,201,64,0.2551496436888867],[113,201,65,0.2873337512370143],[113,201,66,0.3204591026112801],[113,201,67,0.3541863336278124],[113,201,68,0.3881738608637675],[113,201,69,0.4220899983265097],[113,201,70,0.4556251731292185],[113,201,71,0.48850424017337246],[113,201,72,0.5204988958379074],[113,201,73,0.5514401906749963],[113,201,74,0.581231141112611],[113,201,75,0.6098284577880995],[113,201,76,0.636740773174826],[113,201,77,0.6611233253428807],[113,201,78,0.6822343730337306],[113,201,79,0.6994475919317004],[113,202,64,0.2511728151180596],[113,202,65,0.28299008902059514],[113,202,66,0.31575839173948006],[113,202,67,0.34914432951852836],[113,202,68,0.3828120311706469],[113,202,69,0.4164352015987185],[113,202,70,0.4497092727756946],[113,202,71,0.4823636521843363],[113,202,72,0.5141740687164128],[113,202,73,0.5449750160312969],[113,202,74,0.5746722933741214],[113,202,75,0.603225060168523],[113,202,76,0.6301502542165673],[113,202,77,0.6546147972196201],[113,202,78,0.6758857720120878],[113,202,79,0.6933428187025232],[113,203,64,0.24227417705056806],[113,203,65,0.27367418687339995],[113,203,66,0.30605549603563476],[113,203,67,0.3390914575259713],[113,203,68,0.3724522382866945],[113,203,69,0.4058167819037161],[113,203,70,0.43888486495713547],[113,203,71,0.4713892470327634],[113,203,72,0.5031079143944133],[113,203,73,0.5338764173169047],[113,203,74,0.5636003010799372],[113,203,75,0.5922377031335571],[113,203,76,0.6193141918499562],[113,203,77,0.6440117512279246],[113,203,78,0.6656089686825064],[113,203,79,0.6834933688243985],[113,204,64,0.228606653025423],[113,204,65,0.2595310011750889],[113,204,66,0.2914873059810822],[113,204,67,0.32415647268541725],[113,204,68,0.35721505322829594],[113,204,69,0.3903470870910297],[113,204,70,0.42325602955898667],[113,204,71,0.45567676740499113],[113,204,72,0.4873877219929922],[113,204,73,0.5225860940711206],[113,204,74,0.5581390968735032],[113,204,75,0.5915596526954467],[113,204,76,0.6221690266735671],[113,204,77,0.6494034072826455],[113,204,78,0.672807939401766],[113,204,79,0.6920308726644986],[113,205,64,0.21042094514643328],[113,205,65,0.2408051314873052],[113,205,66,0.2825871630937513],[113,205,67,0.3236386276370028],[113,205,68,0.3633799577154595],[113,205,69,0.40184334254476906],[113,205,70,0.43916631142929985],[113,205,71,0.4756064998539264],[113,205,72,0.5115515181023782],[113,205,73,0.5470041140022992],[113,205,74,0.5811397067485393],[113,205,75,0.6131609144638114],[113,205,76,0.6423933244116669],[113,205,77,0.66827902776843],[113,205,78,0.6903702832534838],[113,205,79,0.708323309617916],[113,206,64,0.23448257367071784],[113,206,65,0.276137921954138],[113,206,66,0.3167046775722713],[113,206,67,0.35605719302980865],[113,206,68,0.394144221907038],[113,206,69,0.43100173274382036],[113,206,70,0.46676633230293596],[113,206,71,0.5016892982127156],[113,206,72,0.5361457531923458],[113,206,73,0.5701264934412372],[113,206,74,0.602806037204389],[113,206,75,0.6333896126528624],[113,206,76,0.6612074157060478],[113,206,77,0.685707752028755],[113,206,78,0.7064503221615746],[113,206,79,0.7230996497845111],[113,207,64,0.2707155392932968],[113,207,65,0.3105745227898353],[113,207,66,0.3493747174404977],[113,207,67,0.3870014903161345],[113,207,68,0.42341111759475386],[113,207,69,0.4586429019527395],[113,207,70,0.4928318686049346],[113,207,71,0.5262220399935146],[113,207,72,0.5591748957502617],[113,207,73,0.5916684279088371],[113,207,74,0.6228763337866381],[113,207,75,0.6520066581777295],[113,207,76,0.6783944294146481],[113,207,77,0.7014944029403485],[113,207,78,0.7208739628977476],[113,207,79,0.7362061817368755],[113,208,64,0.3050833937767994],[113,208,65,0.3431359547505127],[113,208,66,0.38016383675817383],[113,208,67,0.41606316887801315],[113,208,68,0.45079734772908286],[113,208,69,0.48440844200560373],[113,208,70,0.5170291439169307],[113,208,71,0.5488952675330533],[113,208,72,0.5803534807207102],[113,208,73,0.6113681276771454],[113,208,74,0.641112139965846],[113,208,75,0.6687965360769911],[113,208,76,0.6937613332380894],[113,208,77,0.7154678910865414],[113,208,78,0.7334914287556347],[113,208,79,0.7475137153739752],[113,209,64,0.3371290979548963],[113,209,65,0.37339008519109756],[113,209,66,0.40866503705672774],[113,209,67,0.44286042797222613],[113,209,68,0.47594622919697593],[113,209,69,0.5079665900366349],[113,209,70,0.5390510334134055],[113,209,71,0.5694261657991766],[113,209,72,0.5994226736159273],[113,209,73,0.6289904262497028],[113,209,74,0.6573016166006657],[113,209,75,0.6835703402366725],[113,209,76,0.7071416886121619],[113,209,77,0.7274836955522407],[113,209,78,0.744179472954113],[113,209,79,0.7569195357058425],[113,210,64,0.3664275491464607],[113,210,65,0.40093659325157427],[113,210,66,0.43450295865902044],[113,210,67,0.467042888724244],[113,210,68,0.49853224565030096],[113,210,69,0.5290164639056434],[113,210,70,0.558620984884608],[113,210,71,0.5875621728105357],[113,210,72,0.6161535744160376],[113,210,73,0.644329781810805],[113,210,74,0.6712622453373962],[113,210,75,0.6961681837716247],[113,210,76,0.7183977739524359],[113,210,77,0.7374257069305565],[113,210,78,0.75284294943866],[113,210,79,0.7643487106830437],[113,211,64,0.39259088372525164],[113,211,65,0.4254119495500307],[113,211,66,0.4573385333660084],[113,211,67,0.48829591785552706],[113,211,68,0.5182650422777778],[113,211,69,0.5472917296849489],[113,211,70,0.575496361911202],[113,211,71,0.6030840023344027],[113,211,72,0.630349923973303],[113,211,73,0.6572126716431875],[113,211,74,0.6828429159455474],[113,211,75,0.7064609850639072],[113,211,76,0.7274220762506785],[113,211,77,0.745207432540822],[113,211,78,0.7594157410805035],[113,211,79,0.769754753070735],[113,212,64,0.41527325960570505],[113,212,65,0.4464938666580271],[113,212,66,0.47687309851145376],[113,212,67,0.5063444031452304],[113,212,68,0.5348928625213853],[113,212,69,0.5625637012086866],[113,212,70,0.5894712091914851],[113,212,71,0.6158080788633865],[113,212,72,0.6418502129210811],[113,212,73,0.6674993795147705],[113,212,74,0.6919253975899877],[113,212,75,0.7143516294586953],[113,212,76,0.7341381510235256],[113,212,77,0.750772563858396],[113,212,78,0.7638610452739191],[113,212,79,0.7731196363676016],[113,213,64,0.4341751186439466],[113,213,65,0.46390522035744974],[113,213,66,0.49285197238387846],[113,213,67,0.5209559806255691],[113,213,68,0.5482054267365435],[113,213,69,0.574643871683851],[113,213,70,0.6003784400205833],[113,213,71,0.6255883848705012],[113,213,72,0.6505291930870059],[113,213,73,0.6750851760340204],[113,213,74,0.6984251940392747],[113,213,75,0.7197755066173466],[113,213,76,0.7385008506130988],[113,213,77,0.7540949061559761],[113,213,78,0.7661710169314294],[113,213,79,0.7744531647694695],[113,214,64,0.44904692895424536],[113,214,65,0.47741744167906053],[113,214,66,0.5050674910159785],[113,214,67,0.5319437135110444],[113,214,68,0.5580362527962531],[113,214,69,0.5833858773632512],[113,214,70,0.608091445921767],[113,214,71,0.6323177203427228],[113,214,72,0.6562987914104983],[113,214,73,0.6799008919740235],[113,214,74,0.7022917828102535],[113,214,75,0.7227004235277029],[113,214,76,0.740495920839622],[113,214,77,0.7551776703564695],[113,214,78,0.7663657688769542],[113,214,79,0.7737916971776406],[113,215,64,0.4596924071411196],[113,215,65,0.4868533797229326],[113,215,66,0.5133615063416613],[113,215,67,0.5391682228616823],[113,215,68,0.5642644186393461],[113,215,69,0.5886868932805119],[113,215,70,0.6125251284300348],[113,215,71,0.6359283745931645],[113,215,72,0.659108426364742],[113,215,73,0.6819128845653964],[113,215,74,0.7035082382490361],[113,215,75,0.7231258931717347],[113,215,76,0.7401389660061409],[113,215,77,0.7540521270975155],[113,215,78,0.7644917296369835],[113,215,79,0.771196225251997],[113,216,64,0.4659712204469143],[113,216,65,0.4920896352606086],[113,216,66,0.5176273457205597],[113,216,67,0.5425392699801449],[113,216,68,0.5668157667626996],[113,216,69,0.590488461046989],[113,216,70,0.6136363530278187],[113,216,71,0.6363922103517401],[113,216,72,0.6589447268829883],[113,216,73,0.6811223967579093],[113,216,74,0.7020902385482466],[113,216,75,0.7210817988504139],[113,216,76,0.7374737822552381],[113,216,77,0.7507756230075538],[113,216,78,0.7606193586296867],[113,216,79,0.766749805508813],[113,217,64,0.46780116881477907],[113,217,65,0.4930583651189173],[113,217,66,0.517811232829966],[113,217,67,0.5420167905426733],[113,217,68,0.5656635506573934],[113,217,69,0.5887767487105822],[113,217,70,0.6114238252328194],[113,217,71,0.6337201601343231],[113,217,72,0.655830653789217],[113,217,73,0.6775643094508456],[113,217,74,0.6980844567005631],[113,217,75,0.7166264341658559],[113,217,76,0.7325700592777886],[113,217,77,0.7454289591935012],[113,217,78,0.7548402187520146],[113,217,79,0.7605543454633232],[113,218,64,0.46515984686720646],[113,218,65,0.4897485573455921],[113,218,66,0.5139131699243158],[113,218,67,0.5376113804639667],[113,218,68,0.5608285231888981],[113,218,69,0.5835822426765241],[113,218,70,0.6059273888380293],[113,218,71,0.6279611348904566],[113,218,72,0.6498240237331879],[113,218,73,0.6713052866921367],[113,218,74,0.6915663353885853],[113,218,75,0.7098439186607546],[113,218,76,0.725520450373773],[113,218,77,0.7381131319400316],[113,218,78,0.7472634063647934],[113,218,79,0.7527267438170442],[113,219,64,0.45808578580015635],[113,219,65,0.4822067771567121],[113,219,66,0.505987281462231],[113,219,67,0.5293842334960138],[113,219,68,0.5523784669212991],[113,219,69,0.5749788716901387],[113,219,70,0.5972267463039309],[113,219,71,0.6192003449295833],[113,219,72,0.6410154356298499],[113,219,73,0.6624413138462194],[113,219,74,0.6826372458109629],[113,219,75,0.7008409891150242],[113,219,76,0.7164370108650521],[113,219,77,0.7289454356203641],[113,219,78,0.738011338675697],[113,219,79,0.7433943846897254],[113,220,64,0.44667907519253985],[113,220,65,0.47053738366577375],[113,220,66,0.49414161910097104],[113,220,67,0.5174465305607449],[113,220,68,0.5404271663854636],[113,220,69,0.5630825628815116],[113,220,70,0.5854396013028449],[113,220,71,0.6075570331258145],[113,220,72,0.6295255996031525],[113,220,73,0.6510946287306919],[113,220,74,0.6714210304448968],[113,220,75,0.6897431664998069],[113,220,76,0.7054470048602903],[113,220,77,0.7180549278187719],[113,220,78,0.7272148985203398],[113,220,79,0.7326899858962034],[113,221,64,0.43110146473119826],[113,221,65,0.4549022173944958],[113,221,66,0.4785374280583613],[113,221,67,0.5019582808165577],[113,221,68,0.5251328222911735],[113,221,69,0.5480492298720702],[113,221,70,0.5707192234153999],[113,221,71,0.593181620401171],[113,221,72,0.6155020684341774],[113,221,73,0.6374100457216717],[113,221,74,0.6580599297448885],[113,221,75,0.6766902985886841],[113,221,76,0.6926880803718459],[113,221,77,0.7055772566646077],[113,221,78,0.7150079365412708],[113,221,79,0.7207458012679102],[113,222,64,0.4115759458515986],[113,222,65,0.43551975856556746],[113,222,66,0.4593878748423898],[113,222,67,0.48312661445888133],[113,222,68,0.506695907683369],[113,222,69,0.5300721929431932],[113,222,70,0.5532514349792261],[113,222,71,0.5762522634873889],[113,222,72,0.5991153715136518],[113,222,73,0.6215506728278841],[113,222,74,0.6427098927777511],[113,222,75,0.6618314782260917],[113,222,76,0.678302812784608],[113,222,77,0.6916488503778077],[113,222,78,0.7015211307648058],[113,222,79,0.7076871770189682],[113,223,64,0.3883858132936683],[113,223,65,0.41266375617683193],[113,223,66,0.4369562363480455],[113,223,67,0.4612035272544323],[113,223,68,0.4853564660422346],[113,223,69,0.5093790312666631],[113,223,70,0.5332510200897583],[113,223,71,0.556970824966246],[113,223,72,0.5805545512988805],[113,223,73,0.6036930217336023],[113,223,74,0.6255352717940679],[113,223,75,0.6453193372531977],[113,223,76,0.6624326166771072],[113,223,77,0.6764004690262684],[113,223,78,0.6868752035761598],[113,223,79,0.6936254621573792],[113,224,64,0.36187320657359845],[113,224,65,0.38666132785762986],[113,224,66,0.41155355032200625],[113,224,67,0.43648307680965737],[113,224,68,0.4613908513275108],[113,224,69,0.48622786719723265],[113,224,70,0.5109575557533098],[113,224,71,0.5355582555884618],[113,224,72,0.5600221022750409],[113,224,73,0.5840215108102716],[113,224,74,0.6067029007358351],[113,224,75,0.6273037160908725],[113,224,76,0.64521102599443],[113,224,77,0.6599501184945307],[113,224,78,0.6711734960922219],[113,224,79,0.6786502729405813],[113,225,64,0.33243713137052494],[113,225,65,0.3578905305063187],[113,225,66,0.38353572719431284],[113,225,67,0.409298030572615],[113,225,68,0.4351079099663984],[113,225,69,0.4609030826267867],[113,225,70,0.48663066519202],[113,225,71,0.5122493888708903],[113,225,72,0.5377283124206729],[113,225,73,0.5627223610967633],[113,225,74,0.5863755576803402],[113,225,75,0.6079247089799126],[113,225,76,0.6267563425732071],[113,225,77,0.6423953266641389],[113,225,78,0.6544938999324375],[113,225,79,0.6628211113759126],[113,226,64,0.30053096082946884],[113,226,65,0.32677740171025754],[113,226,66,0.35330012327820665],[113,226,67,0.38001596556937217],[113,226,68,0.40684460478602696],[113,226,69,0.43371046740096336],[113,226,70,0.4605446933014227],[113,226,71,0.4872871479726438],[113,226,72,0.5138850071778952],[113,226,73,0.5399768852486839],[113,226,74,0.5647048112205959],[113,226,75,0.5873050848787382],[113,226,76,0.6071636530187909],[113,226,77,0.6238047818057004],[113,226,78,0.6368801463877297],[113,226,79,0.6461583377658388],[113,227,64,0.2665768909294234],[113,227,65,0.29371056897947717],[113,227,66,0.32120057122649603],[113,227,67,0.34895496927310937],[113,227,68,0.3768826138935151],[113,227,69,0.404894918953766],[113,227,70,0.43290768186025935],[113,227,71,0.4608429405364205],[113,227,72,0.4886274746515992],[113,227,73,0.5158850198224681],[113,227,74,0.5417562038091664],[113,227,75,0.5654771323616744],[113,227,76,0.5864333115945133],[113,227,77,0.6041483957402175],[113,227,78,0.6182733583993019],[113,227,79,0.6285760872866935],[113,228,64,0.23062363292944432],[113,228,65,0.25870356652985405],[113,228,66,0.2872155277916777],[113,228,67,0.3160587202874081],[113,228,68,0.3451313274222089],[113,228,69,0.37433220650691756],[113,228,70,0.4035626091868294],[113,228,71,0.43272792822626155],[113,228,72,0.46173615727792094],[113,228,73,0.4901976639519437],[113,228,74,0.5172522932485264],[113,228,75,0.5421362884775267],[113,228,76,0.5642348694460552],[113,228,77,0.5830710768898152],[113,228,78,0.5982950458450882],[113,228,79,0.6096737079613479],[113,229,64,0.20911336891429505],[113,229,65,0.22171262163173938],[113,229,66,0.2512675451057857],[113,229,67,0.28121678254966864],[113,229,68,0.31144815607947257],[113,229,69,0.34184854930431086],[113,229,70,0.3723055671535783],[113,229,71,0.40270921438669993],[113,229,72,0.4329503528445739],[113,229,73,0.4626274960353031],[113,229,74,0.49088029611936584],[113,229,75,0.5169454339370385],[113,229,76,0.5402079638711874],[113,229,77,0.5601902749924934],[113,229,78,0.5765414860652416],[113,229,79,0.5890272744136568],[113,230,64,0.21199529120743849],[113,230,65,0.20834097818776848],[113,230,66,0.21335866333500275],[113,230,67,0.24439895264845035],[113,230,68,0.2757714501773101],[113,230,69,0.30735176422658794],[113,230,70,0.3390148383610254],[113,230,71,0.3706365996214182],[113,230,72,0.4020924483889694],[113,230,73,0.43297054132159424],[113,230,74,0.46241090529205336],[113,230,75,0.4896509395368438],[113,230,76,0.5140756361481691],[113,230,77,0.5352066762360903],[113,230,78,0.5526919646060597],[113,230,79,0.5662956029518126],[113,231,64,0.2135334537473712],[113,231,65,0.21068437284099092],[113,231,66,0.20283828972695633],[113,231,67,0.2056421876864425],[113,231,68,0.2381074889834668],[113,231,69,0.2708183317611995],[113,231,70,0.30363805132995925],[113,231,71,0.3364298356992885],[113,231,72,0.36905527859631104],[113,231,73,0.40109363813737153],[113,231,74,0.4316858679036261],[113,231,75,0.4600703604916216],[113,231,76,0.48563214726911563],[113,231,77,0.5078921456599722],[113,231,78,0.5264968495823762],[113,231,79,0.5412084630403439],[113,232,64,0.2138235945967495],[113,232,65,0.21173427392432329],[113,232,66,0.2045893510856144],[113,232,67,0.1923509988352768],[113,232,68,0.1985172128623185],[113,232,69,0.23228018710723877],[113,232,70,0.2661790432833162],[113,232,71,0.3000655697125344],[113,232,72,0.33378915741442305],[113,232,73,0.3669215607644612],[113,232,74,0.3986052041801682],[113,232,75,0.4280797568382457],[113,232,76,0.45473040624335503],[113,232,77,0.47807727010205026],[113,232,78,0.49776525621113304],[113,232,79,0.5135543703604044],[113,233,64,0.21295682232672242],[113,233,65,0.21158480432523996],[113,233,66,0.20511681740643828],[113,233,67,0.1935042281797657],[113,233,68,0.17681034163141102],[113,233,69,0.19181132006484197],[113,233,70,0.22668451259270772],[113,233,71,0.26156405883540546],[113,233,72,0.2962886613900863],[113,233,73,0.33042387554948993],[113,233,74,0.3631141417185566],[113,233,75,0.39360071255556395],[113,233,76,0.4212690816797249],[113,233,77,0.44563857054030026],[113,233,78,0.46635236861900276],[113,233,79,0.48316802696566746],[113,234,64,0.21101820236403596],[113,234,65,0.21032447930767909],[113,234,66,0.20451330532274992],[113,234,67,0.1935255034069188],[113,234,68,0.17741470781705554],[113,234,69,0.15634829602711198],[113,234,70,0.1852304608907741],[113,234,71,0.22097565568443248],[113,234,72,0.25657916472784176],[113,234,73,0.2916015302460362],[113,234,74,0.325189765228326],[113,234,75,0.35658705340045965],[113,234,76,0.38517939664836987],[113,234,77,0.41048538382924693],[113,234,78,0.43214641892443123],[113,234,79,0.44991740853411],[113,235,64,0.20808458194896196],[113,235,65,0.20803426948834913],[113,235,66,0.202864276870118],[113,235,67,0.1925051368258693],[113,235,68,0.17700058071756192],[113,235,69,0.15650877401602334],[113,235,70,0.1419084248486703],[113,235,71,0.1783670642796707],[113,235,72,0.21470312607077197],[113,235,73,0.2504731765890113],[113,235,74,0.2848273817333581],[113,235,75,0.31701126345999303],[113,235,76,0.3464116068219251],[113,235,77,0.3725464138313868],[113,235,78,0.3950553235941612],[113,235,79,0.4136904987158216],[113,236,64,0.20422165370451192],[113,236,65,0.2047849064817209],[113,236,66,0.20024557722730132],[113,236,67,0.19052414752183783],[113,236,68,0.17565420192122416],[113,236,69,0.1557839501195278],[113,236,70,0.13117846174065773],[113,236,71,0.13379746621664024],[113,236,72,0.17069623165058573],[113,236,73,0.20705133960760286],[113,236,74,0.24201673643412774],[113,236,75,0.27484077881363556],[113,236,76,0.3049114123901581],[113,236,77,0.33174630965575813],[113,236,78,0.3549834821962109],[113,236,79,0.3743723672948745],[113,237,64,0.19948025781679032],[113,237,65,0.20063343121356234],[113,237,66,0.19672021996200514],[113,237,67,0.18765127266049098],[113,237,68,0.17344977269656967],[113,237,69,0.1542532322011254],[113,237,70,0.13031599379930103],[113,237,71,0.10201244015774331],[113,237,72,0.12430715073265038],[113,237,73,0.16106285118098934],[113,237,74,0.19646348817969317],[113,237,75,0.22976111031249016],[113,237,76,0.2603455392008139],[113,237,77,0.2877346877406938],[113,237,78,0.3115653621704727],[113,237,79,0.33158454796932524],[113,238,64,0.19389192282611398],[113,238,65,0.19561898490263624],[113,238,66,0.19233441978106045],[113,238,67,0.18393923191801256],[113,238,68,0.17044593860837443],[113,238,69,0.15198062334006063],[113,238,70,0.1287856885332084],[113,238,71,0.10122330766335322],[113,238,72,0.07508287909522202],[113,238,73,0.11203617295341972],[113,238,74,0.14767844093710814],[113,238,75,0.18126685736084802],[113,238,76,0.2121943572638349],[113,238,77,0.23998013042696142],[113,238,78,0.2642606102738888],[113,238,79,0.2847809576561083],[113,239,64,0.18746364502948687],[113,239,65,0.18975784271115845],[113,239,66,0.18711287278563513],[113,239,67,0.17942024503749818],[113,239,68,0.16668153366014368],[113,239,69,0.14901068076565896],[113,239,70,0.1266369875632337],[113,239,71,0.09990879320568785],[113,239,72,0.06929784130423897],[113,239,73,0.05969393442319956],[113,239,74,0.09537017636879819],[113,239,75,0.12905360234048874],[113,239,76,0.1601419127756073],[113,239,77,0.18815698490449423],[113,239,78,0.21273604450505781],[113,239,79,0.23362334532308093],[113,240,64,0.18017190649411371],[113,240,65,0.18303769006369836],[113,240,66,0.1810532842311557],[113,240,67,0.17410080251136145],[113,240,68,0.16217058396274048],[113,240,69,0.14536374147911924],[113,240,70,0.12389538307998872],[113,240,71,0.0980985061987833],[113,240,72,0.06842856496928251],[113,240,73,0.03546871051060037],[113,240,74,0.03944274869949345],[113,240,75,0.07301554264589238],[113,240,76,0.10407348015837205],[113,240,77,0.13214281311217252],[113,240,78,0.15686297555488654],[113,240,79,0.17797845529133421],[113,241,64,0.19744638510682633],[113,241,65,0.17541114163436228],[113,241,66,0.17412014379176866],[113,241,67,0.16795568938955646],[113,241,68,0.15689657092895903],[113,241,69,0.1410304145625409],[113,241,70,0.12055712827699273],[113,241,71,0.09579300587271972],[113,241,72,0.06717548674031687],[113,241,73,0.03526857143438501],[113,241,74,7.688930439863628E-4],[113,241,75,0.013221619893518569],[113,241,76,0.044051725944846895],[113,241,77,0.07199464556253878],[113,241,78,0.0966936129549304],[113,241,79,0.11789465364902274],[113,242,64,0.25012987717812324],[113,242,65,0.2201507245680438],[113,242,66,0.18878727185065025],[113,242,67,0.16092126221401265],[113,242,68,0.15080595399445243],[113,242,69,0.13596534017561857],[113,242,70,0.11658322236564167],[113,242,71,0.09295800177679699],[113,242,72,0.06550763028890355],[113,242,73,0.03477519807595536],[113,242,74,0.0014351577953148204],[113,242,75,-0.03373636931394454],[113,242,76,-0.019706121101196822],[113,242,77,0.007926218826083992],[113,242,78,0.03243843064278716],[113,242,79,0.05357948800840963],[113,243,64,0.3031356241219117],[113,243,65,0.2748401093274569],[113,243,66,0.2450646943264812],[113,243,67,0.2139669941351528],[113,243,68,0.18172323526214745],[113,243,69,0.14852684638907376],[113,243,70,0.11458693791445015],[113,243,71,0.08951783745326494],[113,243,72,0.06335300214178842],[113,243,73,0.03391897987211803],[113,243,74,0.0018664980379251572],[113,243,75,-0.03205208588704222],[113,243,76,-0.06756371781537698],[113,243,77,-0.059713803326805974],[113,243,78,-0.02781959768179708],[113,243,79,0.012696032227831833],[113,244,64,0.3560594741006623],[113,244,65,0.3297389677373845],[113,244,66,0.30183699005671627],[113,244,67,0.2725076765157742],[113,244,68,0.24192609398027348],[113,244,69,0.21028704828121558],[113,244,70,0.1778037686221145],[113,244,71,0.1447064688367585],[113,244,72,0.11124292862923293],[113,244,73,0.0778683884908129],[113,244,74,0.045333256263413085],[113,244,75,0.01430253199522119],[113,244,76,-0.014677182820384382],[113,244,77,-0.04116905806299684],[113,244,78,-0.033315465594034234],[113,244,79,0.005887846838555935],[113,245,64,0.408449049696496],[113,245,65,0.3843826674290884],[113,245,66,0.3586279593157383],[113,245,67,0.33133472380607026],[113,245,68,0.3026762534046499],[113,245,69,0.27284839949392337],[113,245,70,0.2420685022917598],[113,245,71,0.21057418594359278],[113,245,72,0.17862401177396342],[113,245,73,0.1466732573692407],[113,245,74,0.11544988370722778],[113,245,75,0.08559743874293445],[113,245,76,0.0576447751384002],[113,245,77,0.032014576686284005],[113,245,78,0.009031260955427153],[113,245,79,-6.038200674738509E-4],[113,246,64,0.4598199127341868],[113,246,65,0.4382701639913214],[113,246,66,0.4149208286381163],[113,246,67,0.3899165264734934],[113,246,68,0.3634281586911082],[113,246,69,0.3356522690144015],[113,246,70,0.3068102586905398],[113,246,71,0.2771474553432404],[113,246,72,0.2469338664365775],[113,246,73,0.2166246924814133],[113,246,74,0.18692343874661527],[113,246,75,0.15845010568319387],[113,246,76,0.1317138549528371],[113,246,77,0.10712145296740269],[113,246,78,0.0849850649538599],[113,246,79,0.06552939954470545],[113,247,64,0.5096705233119824],[113,247,65,0.49087936168451773],[113,247,66,0.4701739734596481],[113,247,67,0.44769297802886365],[113,247,68,0.4236042648390843],[113,247,69,0.39810468785667186],[113,247,70,0.37141960318736567],[113,247,71,0.3438022498521343],[113,247,72,0.3155346317445302],[113,247,73,0.28707177557555474],[113,247,74,0.25909099807168745],[113,247,75,0.23218691933085267],[113,247,76,0.20684728644872957],[113,247,77,0.18346135365900257],[113,247,78,0.16232758573474637],[113,247,79,0.14366068465096077],[113,248,64,0.557495993042297],[113,248,65,0.5416812768050526],[113,248,66,0.5238354544190759],[113,248,67,0.5040903485042304],[113,248,68,0.4826102139432741],[113,248,69,0.4595918000522442],[113,248,70,0.43526424589813945],[113,248,71,0.40988880876388817],[113,248,72,0.3837599025994104],[113,248,73,0.3573322985910963],[113,248,74,0.33125570989426156],[113,248,75,0.30609784924375916],[113,248,76,0.282323583620541],[113,248,77,0.26030327191355],[113,248,78,0.24032039715780557],[113,248,79,0.2225784933486984],[113,249,64,0.6028006325003797],[113,249,65,0.5901530036975119],[113,249,66,0.5753563673182611],[113,249,67,0.5585349848940915],[113,249,68,0.5398488546818594],[113,249,69,0.5194941727416289],[113,249,70,0.4977036179578307],[113,249,71,0.4747464610037435],[113,249,72,0.4509297866512336],[113,249,73,0.426708042608939],[113,249,74,0.4027022741342834],[113,249,75,0.3794520998467396],[113,249,76,0.3573983308459184],[113,249,77,0.3368912880425693],[113,249,78,0.31819838412651624],[113,249,79,0.30151097017155215],[113,250,64,0.645109292882004],[113,250,65,0.6357894834161759],[113,250,66,0.6242030067421784],[113,250,67,0.6104658385614709],[113,250,68,0.5947331040429433],[113,250,69,0.5771999653684714],[113,250,70,0.5581023249213017],[113,250,71,0.537717344117244],[113,250,72,0.5163648759594307],[113,250,73,0.4944989902858905],[113,250,74,0.4727113752635716],[113,250,75,0.4515127348890878],[113,250,76,0.43131896286703575],[113,250,77,0.41245946274512335],[113,250,78,0.39518470167536646],[113,250,79,0.37967299780136715],[113,251,64,0.6839775018696559],[113,251,65,0.6781140750350368],[113,251,66,0.669867843337886],[113,251,67,0.6593458196078692],[113,251,68,0.6466976512880671],[113,251,69,0.6321169579750308],[113,251,70,0.6158424772914757],[113,251,71,0.598159019091595],[113,251,72,0.5793991333388707],[113,251,73,0.5600164717714969],[113,251,74,0.540573067804996],[113,251,75,0.521550274533571],[113,251,76,0.5033385385366731],[113,251,77,0.48624574667737086],[113,251,78,0.470504774640646],[113,251,79,0.45628023721164135],[113,252,64,0.7190003937079847],[113,252,65,0.7166879296072908],[113,252,66,0.711879314753598],[113,252,67,0.7046719782083765],[113,252,68,0.6952095041542612],[113,252,69,0.6836834386006241],[113,252,70,0.6703348981766138],[113,252,71,0.6554559810116324],[113,252,72,0.6393916933929839],[113,252,73,0.622595244109467],[113,252,74,0.6055991144894126],[113,252,75,0.5888552650793859],[113,252,76,0.5727285083315801],[113,252,77,0.5575049063658454],[113,252,78,0.5433993379175287],[113,252,79,0.530562234471142],[113,253,64,0.749820433487138],[113,253,65,0.7511181667727181],[113,253,66,0.7498104302360602],[113,253,67,0.745984512909955],[113,253,68,0.7397773772924426],[113,253,69,0.7313779497806584],[113,253,70,0.7210292080741547],[113,253,71,0.7090300655476717],[113,253,72,0.6957375782310873],[113,253,73,0.6816045041206389],[113,253,74,0.6671342770671572],[113,253,75,0.6527498213157418],[113,253,76,0.6387904756296631],[113,253,77,0.6255204664608849],[113,253,78,0.6131365172997594],[113,253,79,0.6017745942039224],[113,254,64,0.7761339356356252],[113,254,65,0.7810648540148244],[113,254,66,0.7832861888883239],[113,254,67,0.7828746058951973],[113,254,68,0.7799599229446824],[113,254,69,0.7747278941489724],[113,254,70,0.7674227867840222],[113,254,71,0.758349751278336],[113,254,72,0.7478773278731956],[113,254,73,0.7364578347709354],[113,254,74,0.7245665597777069],[113,254,75,0.7125981415098163],[113,254,76,0.70086695175489],[113,254,77,0.6896156683342228],[113,254,78,0.6790229509060797],[113,254,79,0.6692102197099654],[113,255,64,0.7976963766214623],[113,255,65,0.806246788566273],[113,255,66,0.8119898115862443],[113,255,67,0.8149910852096833],[113,255,68,0.8153728038582514],[113,255,69,0.8133169991412094],[113,255,70,0.8090686124489425],[113,255,71,0.8029383578457227],[113,255,72,0.7953055453394978],[113,255,73,0.7866220850213338],[113,255,74,0.7773364054743737],[113,255,75,0.7678159950258132],[113,255,76,0.7583511047865003],[113,255,77,0.7491634450172173],[113,255,78,0.7404139511897423],[113,255,79,0.732209619742712],[113,256,64,0.8143265018621317],[113,256,65,0.826446081963341],[113,256,66,0.8356677865546107],[113,256,67,0.8420459139540254],[113,256,68,0.8456946084377255],[113,256,69,0.8467916408006688],[113,256,70,0.8455819777233851],[113,256,71,0.8423811399446824],[113,256,72,0.837578356426435],[113,256,73,0.8316251831619214],[113,256,74,0.8249448444062515],[113,256,75,0.8178791825774666],[113,256,76,0.8106955021349921],[113,256,77,0.80359541248229],[113,256,78,0.79672270753381],[113,256,79,0.7901702819462592],[113,257,64,0.8259092268432792],[113,257,65,0.8415115472491388],[113,257,66,0.8541337286024857],[113,257,67,0.8638185064400055],[113,257,68,0.8706716081343816],[113,257,69,0.8748660266857109],[113,257,70,0.8766460830700396],[113,257,71,0.8763312771449754],[113,257,72,0.8743197841679922],[113,257,73,0.8710628836285225],[113,257,74,0.8669605956557576],[113,257,75,0.8623309691122163],[113,257,76,0.8574198468829907],[113,257,77,0.8524098772655817],[113,257,78,0.8474285294301246],[113,257,79,0.8425551129500244],[113,258,64,0.8323973324462453],[113,258,65,0.8513608888258782],[113,258,66,0.8672710520182169],[113,258,67,0.8801588713114565],[113,258,68,0.8901213570737135],[113,258,69,0.8973262378797131],[113,258,70,0.9020165071850014],[113,258,71,0.9045147595476338],[113,258,72,0.9052270379836953],[113,258,73,0.9046044473035266],[113,258,74,0.9030261212335539],[113,258,75,0.9007884893289652],[113,258,76,0.8981177078930357],[113,258,77,0.8951788604329718],[113,258,78,0.8920841302442185],[113,258,79,0.8888999451232442],[113,259,64,0.8338119544840935],[113,259,65,0.855981694955648],[113,259,66,0.8750344571233735],[113,259,67,0.8909895816289286],[113,259,68,0.9039351339199112],[113,259,69,0.9140331301022281],[113,259,70,0.921524554550124],[113,259,71,0.9267341692738141],[113,259,72,0.9300747175114159],[113,259,73,0.9319972552988611],[113,259,74,0.9328626328286173],[113,259,75,0.9329481258270449],[113,259,76,0.9324622436797744],[113,259,77,0.9315541378868222],[113,259,78,0.9303219515633967],[113,259,79,0.9288201099864293],[113,260,64,0.8302418674465831],[113,260,65,0.8554312329103501],[113,260,66,0.8774502304864782],[113,260,67,0.8963065719192257],[113,260,68,0.9120792259785939],[113,260,69,0.9249240939228377],[113,260,70,0.9350794801142291],[113,260,71,0.9428713577880077],[113,260,72,0.9487179311270397],[113,260,73,0.95307035622333],[113,260,74,0.9562740512158581],[113,260,75,0.9585898598889371],[113,260,76,0.9602109200492543],[113,260,77,0.9612722970162689],[113,260,78,0.9618595281309426],[113,260,79,0.9620160782828394],[113,261,64,0.8218415624537473],[113,261,65,0.8498350467702739],[113,261,66,0.8746153587958181],[113,261,67,0.8961787621889077],[113,261,68,0.9145950555367081],[113,261,69,0.9300136740764287],[113,261,70,0.9426695911017223],[113,261,71,0.9528890190540034],[113,261,72,0.9610943291492213],[113,261,73,0.9677369469323953],[113,261,74,0.9731499183192109],[113,261,75,0.9775805948945437],[113,261,76,0.98120922150297],[113,261,77,0.9841588096886041],[113,261,78,0.9865038933638801],[113,261,79,0.9882781667073101],[113,262,64,0.808828119418225],[113,262,65,0.8393843578716076],[113,262,66,0.8666954563917832],[113,262,67,0.8907465089023551],[113,262,68,0.9115981484403359],[113,262,69,0.9293930478807853],[113,262,70,0.9443622259496542],[113,262,71,0.9568311585247617],[113,262,72,0.967225051730525],[113,262,73,0.9759957867618152],[113,262,74,0.9834672619317227],[113,262,75,0.9898764523686352],[113,262,76,0.9953933564084113],[113,262,77,1.000131121583581],[113,262,78,1.0041550254562055],[113,262,79,1.007490311294427],[113,263,64,0.7914768734163824],[113,263,65,0.8243322679027913],[113,263,66,0.8539215064585224],[113,263,67,0.8802188829240638],[113,263,68,0.9032759449099571],[113,263,69,0.9232283627559181],[113,263,70,0.9403026103725265],[113,263,71,0.9548224579653997],[113,263,72,0.9672145914340357],[113,263,73,0.9779315452441294],[113,263,74,0.987291413091546],[113,263,75,0.9955240406602951],[113,263,76,1.0027919559348317],[113,263,77,1.0092007578692896],[113,263,78,1.0148083340661798],[113,263,79,1.0196329074645665],[113,264,64,0.7701158752679619],[113,264,65,0.8049887646495868],[113,264,66,0.8365854158748965],[113,264,67,0.8648697744252724],[113,264,68,0.8898844525933898],[113,264,69,0.911757932845476],[113,264,70,0.9307115905553056],[113,264,71,0.947066536109855],[113,264,72,0.9612495704961181],[113,264,73,0.9737140833087626],[113,264,74,0.9847757761146941],[113,264,75,0.9946606962553113],[113,264,76,1.003526766755282],[113,264,77,1.011474445220728],[113,264,78,1.0185561875888545],[113,264,79,1.0247847167290542],[113,265,64,0.7451191463247856],[113,265,65,0.7817145303892362],[113,265,66,0.8150343837249918],[113,265,67,0.8450328247550503],[113,265,68,0.8717437418564075],[113,265,69,0.8952882947401084],[113,265,70,0.9158822434743916],[113,265,71,0.9338431051508573],[113,265,72,0.9495964327748354],[113,265,73,0.9635966679651554],[113,265,74,0.976160551283861],[113,265,75,0.9875136977207126],[113,265,76,0.9978123375140122],[113,265,77,1.0071542501800732],[113,265,78,1.015588481012783],[113,265,79,1.0231238400533034],[113,266,64,0.7168987274678746],[113,266,65,0.754913552933228],[113,266,66,0.7896640834678187],[113,266,67,0.8210951852756041],[113,266,68,0.8492322833109155],[113,266,69,0.8741891223027841],[113,266,70,0.8961753643466595],[113,266,71,0.9155040230634393],[113,266,72,0.932598050384376],[113,266,73,0.9479131204693726],[113,266,74,0.9617704101938686],[113,266,75,0.9743984522821144],[113,266,76,0.98595469905999],[113,266,77,0.9965367338595015],[113,266,78,1.0061922443618245],[113,266,79,1.014927757878925],[113,267,64,0.6858955223133828],[113,267,65,0.7250245393189396],[113,267,66,0.7609106587663794],[113,267,67,0.7934901031618821],[113,267,68,0.8227801275806698],[113,267,69,0.8488870005959633],[113,267,70,0.8720138312063843],[113,267,71,0.8924682417617157],[113,267,72,0.9106692450151227],[113,267,73,0.927073897973745],[113,267,74,0.9420111237532093],[113,267,75,0.9557156550332695],[113,267,76,0.9683490384458745],[113,267,77,0.9800111229858244],[113,267,78,0.9907502917212543],[113,267,79,1.0005724368039692],[113,268,64,0.6525689346274474],[113,268,65,0.692511132150339],[113,268,66,0.729241532976339],[113,268,67,0.7626883341657706],[113,268,68,0.7928609273048851],[113,268,69,0.8198580589110034],[113,268,70,0.8438758466104805],[113,268,71,0.865215651089399],[113,268,72,0.8842912239398877],[113,268,73,0.9015611086601084],[113,268,74,0.9173651428422912],[113,268,75,0.9319474207784584],[113,268,76,0.9454763666931042],[113,268,77,0.9580564972876263],[113,268,78,0.9697389108489014],[113,268,79,0.9805305029220304],[113,269,64,0.6173852999494908],[113,269,65,0.6578509285872508],[113,269,66,0.6951450322937841],[113,269,67,0.7291883823443475],[113,269,68,0.7599828013791838],[113,269,69,0.787619462899257],[113,269,70,0.8122870564714992],[113,269,71,0.8342798186434911],[113,269,72,0.8540049307057354],[113,269,73,0.8719224603560523],[113,269,74,0.8883861316277953],[113,269,75,0.9036523885071353],[113,269,76,0.9178991803225153],[113,269,77,0.9312379932243235],[113,269,78,0.9437245933707177],[113,269,79,0.9553684818196385],[113,270,64,0.5808051114243129],[113,270,65,0.6215233019835225],[113,270,66,0.6591188225624107],[113,270,67,0.6935055667525327],[113,270,68,0.7246780414342237],[113,270,69,0.752719765805181],[113,270,70,0.7778115460186971],[113,270,71,0.8002396254314594],[113,270,72,0.8204033105117032],[113,270,73,0.8387641426344895],[113,270,74,0.8556924535334443],[113,270,75,0.8714597985011154],[113,270,76,0.8862561166507721],[113,270,77,0.9002020240574233],[113,270,78,0.9133598055610678],[113,270,79,0.9257431052322084],[113,271,64,0.5432690398431214],[113,271,65,0.5839960261742437],[113,271,66,0.6216571597402875],[113,271,67,0.6561599151002814],[113,271,68,0.6874916605521394],[113,271,69,0.7157281188016004],[113,271,70,0.7410417128873209],[113,271,71,0.7637097973620361],[113,271,72,0.784122490272546],[113,271,73,0.8027426423966613],[113,271,74,0.8199596098672943],[113,271,75,0.8360625420744161],[113,271,76,0.8512556028527083],[113,271,77,0.8656705162640647],[113,271,78,0.8793777997077992],[113,271,79,0.8923966843585998],[113,272,64,0.5051827478931007],[113,272,65,0.5457107024116338],[113,272,66,0.5832369540258221],[113,272,67,0.6176628843739611],[113,272,68,0.6489687842204702],[113,272,69,0.677222340426806],[113,272,70,0.7025870173358032],[113,272,71,0.7253303325693561],[113,272,72,0.7458318733682532],[113,272,73,0.764555492938349],[113,272,74,0.7819116311053481],[113,272,75,0.7982091839455655],[113,272,76,0.8136684987894264],[113,272,77,0.8284341622927188],[113,272,78,0.8425864660620035],[113,272,79,0.8561515498342277],[113,273,64,0.46690049861550575],[113,273,65,0.5070669889495505],[113,273,66,0.5443026476428695],[113,273,67,0.57850290842183],[113,273,68,0.6096408835234545],[113,273,69,0.6377758451233531],[113,273,70,0.6630616095907113],[113,273,71,0.6857548245702489],[113,273,72,0.7062231490791153],[113,273,73,0.7249309564990478],[113,273,74,0.7423114208312072],[113,273,75,0.7586949572420716],[113,273,76,0.7743197336018144],[113,273,77,0.7893446896606865],[113,273,78,0.8038612253720765],[113,273,79,0.8179035583622991],[113,274,64,0.42874977882045645],[113,274,65,0.4684413962404105],[113,274,66,0.505279242837315],[113,274,67,0.5391527483957342],[113,274,68,0.5700275647076167],[113,274,69,0.5979540136729248],[113,274,70,0.6230754456655819],[113,274,71,0.6456365081646532],[113,274,72,0.6659914706499191],[113,274,73,0.6846045542844582],[113,274,74,0.7019328777987642],[113,274,75,0.7183297346299017],[113,274,76,0.7340523958306996],[113,274,77,0.7492753488458909],[113,274,78,0.7641021981912225],[113,274,79,0.778576228035583],[113,275,64,0.3913190326915895],[113,275,65,0.43042735122191667],[113,275,66,0.4667649328245571],[113,275,67,0.5002151789053558],[113,275,68,0.5307360424609449],[113,275,69,0.5583684165741526],[113,275,70,0.5832444397364256],[113,275,71,0.6055957179971708],[113,275,72,0.6257617757208589],[113,275,73,0.6442059649737802],[113,275,74,0.6614102324081352],[113,275,75,0.6777517817926695],[113,275,76,0.6935079758743782],[113,275,77,0.7088697828306241],[113,275,78,0.7239538786399966],[113,275,79,0.7388134053719613],[113,276,64,0.3552554722024557],[113,276,65,0.39365805866421755],[113,276,66,0.42937883456425907],[113,276,67,0.46229528091109806],[113,276,68,0.49235755515697444],[113,276,69,0.5195967943544838],[113,276,70,0.5441333410810151],[113,276,71,0.5661848921309003],[113,276,72,0.5860750557098793],[113,276,73,0.6042656239630003],[113,276,74,0.6212639841947697],[113,276,75,0.6374719988234174],[113,276,76,0.6531878467668767],[113,276,77,0.6686196653943843],[113,276,78,0.6838978438897474],[113,276,79,0.6990859680263188],[113,277,64,0.3210812826601249],[113,277,65,0.3586482502165693],[113,277,66,0.3936281454277324],[113,277,67,0.42589273345779666],[113,277,68,0.4553843872787632],[113,277,69,0.4821242809821886],[113,277,70,0.5062205114212684],[113,277,71,0.5278761481831753],[113,277,72,0.5473978779845539],[113,277,73,0.5652452570961208],[113,277,74,0.5819514509415233],[113,277,75,0.5979434397810623],[113,277,76,0.6135406730536346],[113,277,77,0.6289688949155897],[113,277,78,0.6443726183286365],[113,277,79,0.6598262476968435],[113,278,64,0.2891857214015837],[113,278,65,0.3257858296437525],[113,278,66,0.35989934607504526],[113,278,67,0.39139258595022],[113,278,68,0.420200223151723],[113,278,69,0.44633335101636595],[113,278,70,0.46988747690774163],[113,278,71,0.49105045053429364],[113,278,72,0.5101111771837445],[113,278,73,0.5275263078324907],[113,278,74,0.543854854201202],[113,278,75,0.5595490894167412],[113,278,76,0.5749499205380042],[113,278,77,0.5903008865897801],[113,278,78,0.6057608040435121],[113,278,79,0.6214150597450088],[113,279,64,0.2598173635902561],[113,279,65,0.29532348922971075],[113,279,66,0.32844920248196213],[113,279,67,0.359055662161482],[113,279,68,0.3870699701871718],[113,279,69,0.4124930797309556],[113,279,70,0.4354076426026573],[113,279,71,0.45598579587108096],[113,279,72,0.4744979271425266],[113,279,73,0.4913971140817136],[113,279,74,0.5072680312508763],[113,279,75,0.5225881516000418],[113,279,76,0.5377197721308495],[113,279,77,0.5529241747510352],[113,279,78,0.5683744352991544],[113,279,79,0.584166880739606],[113,280,64,0.2330752041708398],[113,280,65,0.2673692001369453],[113,280,66,0.29939466262644954],[113,280,67,0.32900788216798493],[113,280,68,0.35612852548616686],[113,280,69,0.38074737374991596],[113,280,70,0.402934005839005],[113,280,71,0.42284442662874355],[113,280,72,0.44072986978846435],[113,280,73,0.4570391708587856],[113,280,74,0.4723822618505543],[113,280,75,0.4872614820277767],[113,280,76,0.5020602182439271],[113,280,77,0.5170572210065831],[113,280,78,0.5324395712755098],[113,280,79,0.5483142979942439],[113,281,64,0.20889861598161807],[113,281,65,0.24187557672075663],[113,281,66,0.2727016478337798],[113,281,67,0.3012285022098647],[113,281,68,0.3273684858025341],[113,281,69,0.35110217219242396],[113,281,70,0.372485868454516],[113,281,71,0.39165907232975095],[113,281,72,0.40885330100794287],[113,281,73,0.4245124787581056],[113,281,74,0.4392712098048136],[113,281,75,0.45365616521386687],[113,281,76,0.46807132172556387],[113,281,77,0.48281242818307735],[113,281,78,0.49808012706137617],[113,281,79,0.513991731096751],[113,282,64,0.18705616402466774],[113,282,65,0.2186281147988246],[113,282,66,0.2481727387807851],[113,282,67,0.27553727247754783],[113,282,68,0.3006268008657665],[113,282,69,0.32341161832883025],[113,282,70,0.34393454790129857],[113,282,71,0.36231821882060355],[113,282,72,0.37877391348344663],[113,282,73,0.3937399782473165],[113,282,74,0.4078749793283971],[113,282,75,0.4217292357613758],[113,282,76,0.4357266573397312],[113,282,77,0.45017936008567977],[113,282,78,0.465300942905699],[113,282,79,0.48121842543168003],[113,283,64,0.16713327589436527],[113,283,65,0.19723230387646074],[113,283,66,0.22543375615953326],[113,283,67,0.251580512824636],[113,283,68,0.27557037006393836],[113,283,69,0.29736320174745484],[113,283,70,0.3169880872311648],[113,283,71,0.33455040540643893],[113,283,72,0.35024069650169526],[113,283,73,0.36449106978081675],[113,283,74,0.37798328621555394],[113,283,75,0.39129054391643364],[113,283,76,0.40485592578818974],[113,283,77,0.41900716706957963],[113,283,78,0.43397009172607004],[113,283,79,0.4498807176954439],[113,284,64,0.1485404584602248],[113,284,65,0.17712102378849812],[113,284,66,0.203940342932542],[113,284,67,0.228836888744701],[113,284,68,0.2517010222925292],[113,284,69,0.27248195377144413],[113,284,70,0.2911946787400822],[113,284,71,0.3079268896782777],[113,284,72,0.3228478544563631],[113,284,73,0.3363827970158687],[113,284,74,0.34923591530053827],[113,284,75,0.36200249650624483],[113,284,76,0.37514398817405614],[113,284,77,0.3890029258088555],[113,284,78,0.4038165384251145],[113,284,79,0.41972903201987183],[113,285,64,0.1311666999546502],[113,285,65,0.15819915288954528],[113,285,66,0.18361304551695726],[113,285,67,0.2072423216750391],[113,285,68,0.22896970976600312],[113,285,69,0.2487334855816596],[113,285,70,0.2665342207976492],[113,285,71,0.2824415171362976],[113,285,72,0.2966029056151843],[113,285,73,0.30943599909558406],[113,285,74,0.3216663125556034],[113,285,75,0.3339100884643724],[113,285,76,0.34664603835641233],[113,285,77,0.3602304361939798],[113,285,78,0.37491090021422546],[113,285,79,0.3908388632612231],[113,286,64,0.11554727368530945],[113,286,65,0.14101017456242423],[113,286,66,0.16500241977323848],[113,286,67,0.18735332701417456],[113,286,68,0.20793785072245538],[113,286,69,0.22668315236967507],[113,286,70,0.2448153663844197],[113,286,71,0.26739662303153156],[113,286,72,0.2879486613592545],[113,286,73,0.3063585689235647],[113,286,74,0.3225767403965874],[113,286,75,0.33660518523463767],[113,286,76,0.34818335756340113],[113,286,77,0.3568590149188965],[113,286,78,0.36227817413826624],[113,286,79,0.3641892270880871],[113,287,64,0.10214880815991624],[113,287,65,0.1260307381623682],[113,287,66,0.1485938360880228],[113,287,67,0.17604215135013762],[113,287,68,0.2035830740339462],[113,287,69,0.22968626677483395],[113,287,70,0.2541056994736131],[113,287,71,0.2766385867172966],[113,287,72,0.29713266071853983],[113,287,73,0.3154937091177062],[113,287,74,0.3316933776474728],[113,287,75,0.34575665154835306],[113,287,76,0.35743075339447095],[113,287,77,0.366256523687864],[113,287,78,0.371872167764182],[113,287,79,0.3740178923659381],[113,288,64,0.09272235265627542],[113,288,65,0.12300272106159459],[113,288,66,0.152709475813869],[113,288,67,0.1815146505537662],[113,288,68,0.20911485549114522],[113,288,69,0.23523787748217007],[113,288,70,0.25964955410654095],[113,288,71,0.28216092174515334],[113,288,72,0.30263563765798585],[113,288,73,0.3209976760623444],[113,288,74,0.3372392982113754],[113,288,75,0.3514077681156921],[113,288,76,0.36325814505606135],[113,288,77,0.372324968045165],[113,288,78,0.37823902457482245],[113,288,79,0.3807324924660647],[113,289,64,0.09426011989409006],[113,289,65,0.12473841199491927],[113,289,66,0.15459091274375958],[113,289,67,0.18349682626477337],[113,289,68,0.21116131200220983],[113,289,69,0.23732221286116137],[113,289,70,0.2617570670752185],[113,289,71,0.28429040380133463],[113,289,72,0.3048013224417039],[113,289,73,0.32323135569278116],[113,289,74,0.33959261632135046],[113,289,75,0.35395379912757907],[113,289,76,0.36607756142865444],[113,289,77,0.3754923443846606],[113,289,78,0.381821530592375],[113,289,79,0.384789081231723],[113,290,64,0.09276035353251055],[113,290,65,0.12342059548526575],[113,290,66,0.15341557340609133],[113,290,67,0.1824319934345215],[113,290,68,0.2101837080291769],[113,290,69,0.23641857900525493],[113,290,70,0.2609256345594082],[113,290,71,0.28354252028231147],[113,290,72,0.30416324415873075],[113,290,73,0.3227462155552183],[113,290,74,0.33932257819534106],[113,290,75,0.3539815354781293],[113,290,76,0.36649277064887986],[113,290,77,0.3763783076561024],[113,290,78,0.38325365703351366],[113,290,79,0.3868339468130431],[113,291,64,0.08875014763396216],[113,291,65,0.11959710302018278],[113,291,66,0.14975163038591732],[113,291,67,0.17890825211005468],[113,291,68,0.20678964424135096],[113,291,69,0.23315364184309872],[113,291,70,0.25780054903443783],[113,291,71,0.2805807537286135],[113,291,72,0.3014026470679959],[113,291,73,0.3202408475559849],[113,291,74,0.33714472988570593],[113,291,75,0.3522230938300566],[113,291,76,0.36525179852500306],[113,291,77,0.3757456305495399],[113,291,78,0.3833112960708058],[113,291,79,0.3876540542843001],[113,292,64,0.0825364990285583],[113,292,65,0.11358764630397704],[113,292,66,0.14393069286797075],[113,292,67,0.1732683393818563],[113,292,68,0.20133226693618064],[113,292,69,0.22789029035123673],[113,292,70,0.252753827075312],[113,292,71,0.2757856816809717],[113,292,72,0.29690814595919546],[113,292,73,0.3161114146114899],[113,292,74,0.3334623165398807],[113,292,75,0.3490883604093027],[113,292,76,0.36277100897410597],[113,292,77,0.374017424569578],[113,292,78,0.3824249156976247],[113,292,79,0.3876880842303057],[113,293,64,0.08243282576180296],[113,293,65,0.10555419666472457],[113,293,66,0.13611977065642403],[113,293,67,0.16568373225019417],[113,293,68,0.19398700339783492],[113,293,69,0.22080743333679675],[113,293,70,0.24596742885261025],[113,293,71,0.2693419109221244],[113,293,72,0.2908665977373786],[113,293,73,0.310546614110225],[113,293,74,0.32846542725760763],[113,293,75,0.3447683279357302],[113,293,76,0.3592422573332116],[113,293,77,0.37138714640275006],[113,293,78,0.3807909574761719],[113,293,79,0.387137354063403],[113,294,64,0.08992025237891865],[113,294,65,0.1035297615918211],[113,294,66,0.12646474865518348],[113,294,67,0.1563022983847131],[113,294,68,0.18490342218228842],[113,294,69,0.21205607577799512],[113,294,70,0.23759353499395924],[113,294,71,0.26140252321248963],[113,294,72,0.28343167560835936],[113,294,73,0.303700340145336],[113,294,74,0.32230771533687397],[113,294,75,0.33941584924339213],[113,294,76,0.3548173823638455],[113,294,77,0.3680060690617406],[113,294,78,0.37856112887941257],[113,294,79,0.386155444501305],[113,295,64,0.10028515978374336],[113,295,65,0.11271018041828232],[113,295,66,0.12499700011240061],[113,295,67,0.14525489948800624],[113,295,68,0.1742120499458073],[113,295,69,0.2017662953864367],[113,295,70,0.22776163472201044],[113,295,71,0.2520962337130207],[113,295,72,0.2747310647147446],[113,295,73,0.2956988929200718],[113,295,74,0.3151136090986698],[113,295,75,0.3331528496135601],[113,295,76,0.34961543058709066],[113,295,77,0.3639905357252779],[113,295,78,0.3758497097183931],[113,295,79,0.38485558598707437],[113,296,64,0.11333753322253909],[113,296,65,0.12468781923564856],[113,296,66,0.1360211220403224],[113,296,67,0.14712324510643476],[113,296,68,0.1620297721886249],[113,296,69,0.19005278810448534],[113,296,70,0.2165841727455053],[113,296,71,0.24153310240726011],[113,296,72,0.26487220893655494],[113,296,73,0.2866467407457444],[113,296,74,0.306984079180443],[113,296,75,0.3260761010155493],[113,296,76,0.34372845014211134],[113,296,77,0.35942779466396885],[113,296,78,0.3727394566608673],[113,296,79,0.38331666684419274],[113,297,64,0.12884915544134334],[113,297,65,0.13924473871134058],[113,297,66,0.14973416073704243],[113,297,67,0.16010004882934742],[113,297,68,0.17014291932396752],[113,297,69,0.1796867610944608],[113,297,70,0.20416155671162342],[113,297,71,0.22980962064979676],[113,297,72,0.25394745108101124],[113,297,73,0.27663169673520865],[113,297,74,0.29800184411174957],[113,297,75,0.3182624596379565],[113,297,76,0.33722677369942405],[113,297,77,0.3543813493128207],[113,297,78,0.3692870489211622],[113,297,79,0.381588808191646],[113,298,64,0.1465594635709051],[113,298,65,0.15612908139889464],[113,298,66,0.1658918306440047],[113,298,67,0.1756275436662671],[113,298,68,0.18513284608979164],[113,298,69,0.19422680434267264],[113,298,70,0.2027567788174658],[113,298,71,0.21701317284172547],[113,298,72,0.24203856646208186],[113,298,73,0.26572951019244784],[113,298,74,0.2882360141726711],[113,298,75,0.3097735667108644],[113,298,76,0.33016379042944943],[113,298,77,0.3488958234909618],[113,298,78,0.36552807512178087],[113,298,79,0.37969850561950164],[113,299,64,0.16618110746039483],[113,299,65,0.17506048143359612],[113,299,66,0.1842197360129752],[113,299,67,0.19343632852210255],[113,299,68,0.20250375092287723],[113,299,69,0.2112372709967357],[113,299,70,0.21947989875779594],[113,299,71,0.22710857809789178],[113,299,72,0.23404341426915465],[113,299,73,0.254007872697362],[113,299,74,0.277746173534113],[113,299,75,0.3006600126181542],[113,299,76,0.3225802070255168],[113,299,77,0.3430013417677678],[113,299,78,0.361481561325976],[113,299,79,0.3776533376242502],[113,300,64,0.18740520946016917],[113,300,65,0.19573521116336473],[113,300,66,0.20441841745559222],[113,300,67,0.21323036672141585],[113,300,68,0.22196222204936572],[113,300,69,0.23042663536378272],[113,300,70,0.2384638561129534],[113,300,71,0.2459480845134849],[113,300,72,0.2527967246419715],[113,300,73,0.25921229196469775],[113,300,74,0.2665859006804086],[113,300,75,0.29096496430034113],[113,300,76,0.3145077977817248],[113,300,77,0.33671742497578133],[113,300,78,0.35715404024167563],[113,300,79,0.37544624080427325],[113,301,64,0.20990632565308628],[113,301,65,0.21783106471440783],[113,301,66,0.22616816992061078],[113,301,67,0.23469174982286595],[113,301,68,0.24319148404002633],[113,301,69,0.2514786389787062],[113,301,70,0.25939234701026304],[113,301,71,0.2668061491046268],[113,301,72,0.27363727519457903],[113,301,73,0.2800720440004685],[113,301,74,0.286657140839354],[113,301,75,0.293853496621929],[113,301,76,0.30597264372599653],[113,301,77,0.3300564008707455],[113,301,78,0.35254316159704935],[113,301,79,0.37305935181570365],[113,302,64,0.2333471085348861],[113,302,65,0.2410119784921364],[113,302,66,0.24913363209932754],[113,302,67,0.2574852663217133],[113,302,68,0.2658559553736825],[113,302,69,0.27405684563345745],[113,302,70,0.281927632359501],[113,302,71,0.28934331820858494],[113,302,72,0.2962235227486809],[113,302,73,0.30273911445850854],[113,302,74,0.30939085954930806],[113,302,75,0.31659722553979475],[113,302,76,0.3246625029163135],[113,302,77,0.33378947555062305],[113,302,78,0.34764084368713744],[113,302,79,0.37046741608814543],[113,303,64,0.2573826711435614],[113,303,65,0.26493238861727814],[113,303,66,0.272968147259108],[113,303,67,0.28126277524030496],[113,303,68,0.2896056433119007],[113,303,69,0.2978090651416555],[113,303,70,0.30571499711586214],[113,303,71,0.3132020376059579],[113,303,72,0.3201947676689817],[113,303,73,0.32684953095435754],[113,303,74,0.3336187467350784],[113,303,75,0.3408761024977073],[113,303,76,0.34888841774264456],[113,303,77,0.35782778118025116],[113,303,78,0.36778296612790856],[113,303,79,0.37877012410805744],[113,304,64,0.28166465263711127],[113,304,65,0.28924132529658964],[113,304,66,0.29731789550445253],[113,304,67,0.3056673846060102],[113,304,68,0.31408037608445794],[113,304,69,0.3223716458380864],[113,304,70,0.3303871087857124],[113,304,71,0.338011081800278],[113,304,72,0.3451756577482979],[113,304,73,0.35202374911076617],[113,304,74,0.35895749515016995],[113,304,75,0.3663039485562708],[113,304,76,0.37429102185730534],[113,304,77,0.38305906142294716],[113,304,78,0.39267174773535074],[113,304,79,0.40312632192831915],[113,305,64,0.3058449853206598],[113,305,65,0.31358624412912195],[113,305,66,0.3218257974665109],[113,305,67,0.3303374348174604],[113,305,68,0.3389138723863776],[113,305,69,0.34737363581380415],[113,305,70,0.35556827517575934],[113,305,71,0.36338991226602496],[113,305,72,0.3707806501901404],[113,305,73,0.3778712186254129],[113,305,74,0.3850120604380054],[113,305,75,0.3924822219326204],[113,305,76,0.4004696814129223],[113,305,77,0.4090823345085651],[113,305,78,0.4183583537281476],[113,305,79,0.4282759222381345],[113,306,64,0.32957936312222424],[113,306,65,0.3376165943473635],[113,306,66,0.3461351894204091],[113,306,67,0.354910286898517],[113,306,68,0.36373764818602794],[113,306,69,0.37244081288639563],[113,306,70,0.3808786013852836],[113,306,71,0.38895296466478324],[113,306,72,0.3966184316885982],[113,306,73,0.4039949360540988],[113,306,74,0.4113803398491811],[113,306,75,0.41900480969818155],[113,306,76,0.42701578250903405],[113,306,77,0.43548834139867343],[113,306,78,0.444435013376716],[113,306,79,0.45381498878745224],[113,307,64,0.3525304115172494],[113,307,65,0.3609871239933321],[113,307,66,0.36989326983042825],[113,307,67,0.37902591563995436],[113,307,68,0.38818476084420117],[113,307,69,0.397199583305279],[113,307,70,0.4059380460412296],[113,307,71,0.4143138650292649],[113,307,72,0.42229629660515866],[113,307,73,0.42999598430897373],[113,307,74,0.43765786560734465],[113,307,75,0.44546286117892203],[113,307,76,0.45351768528769826],[113,307,77,0.46186459656611134],[113,307,78,0.4704906173533457],[113,307,79,0.4793362215888571],[113,308,64,0.37437055890201143],[113,308,65,0.38336092202976957],[113,308,66,0.3927543173232241],[113,308,67,0.4023303076290964],[113,308,68,0.4118933905444837],[113,308,69,0.4212807491923902],[113,308,70,0.4303703767765769],[113,308,71,0.4390895749156928],[113,308,72,0.4474244832430459],[113,308,73,0.45547805887244713],[113,308,74,0.4634425129244225],[113,308,75,0.4714496630589034],[113,308,76,0.4795657457212475],[113,308,77,0.48780053121719436],[113,308,78,0.49611595310475565],[113,308,79,0.5044342519030741],[113,309,64,0.3947846094163336],[113,309,65,0.40441219738682277],[113,309,66,0.41438268008942],[113,309,67,0.4244786641676782],[113,309,68,0.4345102590351023],[113,309,69,0.44432314471837747],[113,309,70,0.45380702495203384],[113,309,71,0.4629044655244925],[113,309,72,0.4716204682189207],[113,309,73,0.48005198072654226],[113,309,74,0.4883392226648598],[113,309,75,0.49656555618669496],[113,309,76,0.5047574050916731],[113,309,77,0.5128927289559639],[113,309,78,0.5209090560199223],[113,309,79,0.5287110748336514],[113,310,64,0.4134720172142423],[113,310,65,0.42382879494290576],[113,310,66,0.4344555367123389],[113,310,67,0.4451384090767811],[113,310,68,0.4556938856811981],[113,310,69,0.4659771410133542],[113,310,70,0.4758908396202035],[113,310,71,0.48539432078856654],[113,310,72,0.4945132189313465],[113,310,73,0.5033401959972092],[113,310,74,0.5119647386585137],[113,310,75,0.5204228940844247],[113,310,76,0.528702347161524],[113,310,77,0.536750253890489],[113,310,78,0.5444806763933097],[113,310,79,0.5517816195310645],[113,311,64,0.4301488621844484],[113,311,65,0.4413144484415592],[113,311,66,0.4526654284256073],[113,311,67,0.4639920013904713],[113,311,68,0.47511768082905276],[113,311,69,0.48590801981361276],[113,311,70,0.4962797407335102],[113,311,71,0.5062102694303018],[113,311,72,0.5157474041270271],[113,311,73,0.5249812623144744],[113,311,74,0.5339523596629407],[113,311,75,0.5426510431600561],[113,311,76,0.5510277230367818],[113,311,77,0.5590000711815412],[113,311,78,0.5664598621836806],[113,311,79,0.573279457006286],[113,312,64,0.4445495271190753],[113,312,65,0.4565907703427976],[113,312,66,0.46872256279820235],[113,312,67,0.48073955293682585],[113,312,68,0.492472876481043],[113,312,69,0.5037992158431961],[113,312,70,0.5146502715948957],[113,312,71,0.5250226459864398],[113,312,72,0.534987562564083],[113,312,73,0.5446343218878171],[113,312,74,0.5539567059745887],[113,312,75,0.5629014246225393],[113,312,76,0.5713834437214783],[113,312,77,0.5792925600335322],[113,312,78,0.5864996575685048],[113,312,79,0.592862645553951],[113,313,64,0.4564280763314949],[113,313,65,0.46939897860973095],[113,313,66,0.4823568888476619],[113,313,67,0.4951012508069549],[113,313,68,0.5074712942818508],[113,313,69,0.5193554279307537],[113,313,70,0.5307010505516113],[113,313,71,0.541524780801047],[113,313,72,0.5519222297724855],[113,313,73,0.5619835612967863],[113,313,74,0.571658500688816],[113,313,75,0.5808525980996535],[113,313,76,0.5894475403637742],[113,313,77,0.5973071191273476],[113,313,78,0.6042829172935045],[113,313,79,0.6102197137845863],[113,314,64,0.4655593357227418],[113,314,65,0.47950136043001806],[113,314,66,0.4933199435810707],[113,314,67,0.5068195847117372],[113,314,68,0.5198479508157358],[113,314,69,0.5323055988615709],[113,314,70,0.5441561219320886],[113,314,71,0.5554367189866432],[113,314,72,0.5662680229118153],[113,314,73,0.5767426579971197],[113,314,74,0.5867693656090758],[113,314,75,0.5962153869589633],[113,314,76,0.6049315921940146],[113,314,77,0.6127578644956523],[113,314,78,0.6195282368179895],[113,314,79,0.6250757812666049],[113,315,64,0.47173967429741165],[113,315,65,0.48668247287296207],[113,315,66,0.5013864699645761],[113,315,67,0.5156613792269261],[113,315,68,0.5293635002154182],[113,315,69,0.5424057639652387],[113,315,70,0.5547682062262606],[113,315,71,0.5665088683537669],[113,315,72,0.577773683726512],[113,315,73,0.5886592135424311],[113,315,74,0.5990366318052464],[113,315,75,0.6087380453317817],[113,315,76,0.6175862221545483],[113,315,77,0.625399419840389],[113,315,78,0.6319959982556146],[113,315,79,0.637198816777637],[113,316,64,0.47478748712764723],[113,316,65,0.49075008048093244],[113,316,66,0.5063558063201747],[113,316,67,0.5214196309254454],[113,316,68,0.5358065140814994],[113,316,69,0.5494417684379739],[113,316,70,0.5623218495084279],[113,316,71,0.5745255763081833],[113,316,72,0.5862240795979242],[113,316,73,0.5975191735208734],[113,316,74,0.6082481648206067],[113,316,75,0.6182114668397315],[113,316,76,0.6272066602210111],[113,316,77,0.6350327992922499],[113,316,78,0.6414945321104375],[113,316,79,0.6464060341651559],[113,317,64,0.4745433797663067],[113,317,65,0.49153582979617494],[113,317,66,0.5080530471507989],[113,317,67,0.5239151503978707],[113,317,68,0.538995598713357],[113,317,69,0.5532318534004735],[113,317,70,0.5666364721035148],[113,317,71,0.5793086357164996],[113,317,72,0.5914441626938687],[113,317,73,0.6031512342074313],[113,317,74,0.6142372045280547],[113,317,75,0.6244744350244421],[113,317,76,0.6336383744155423],[113,317,77,0.641511382612532],[113,317,78,0.6478863948086219],[113,317,79,0.6525704258166833],[113,318,64,0.47087005410942295],[113,318,65,0.4888956608230878],[113,318,66,0.506329975393767],[113,318,67,0.5229980091611309],[113,318,68,0.5387813496515271],[113,318,69,0.5536291106913035],[113,318,70,0.5675693164966832],[113,318,71,0.5807207197401525],[113,318,72,0.5933028872156428],[113,318,73,0.6054312359317674],[113,318,74,0.6168872196354711],[113,318,75,0.627418915480275],[113,318,76,0.6367827695118171],[113,318,77,0.6447469828372527],[113,318,78,0.6510947620256572],[113,318,79,0.655627433739442],[113,319,64,0.4636518957065612],[113,319,65,0.4827099554246501],[113,319,66,0.501065766101339],[113,319,67,0.51854879145425],[113,319,68,0.5350481435304799],[113,319,69,0.5505238063948026],[113,319,70,0.5650182944853778],[113,319,71,0.5786687456369255],[113,319,72,0.5917170847417332],[113,319,73,0.6042865431609443],[113,319,74,0.6161367768396466],[113,319,75,0.6269953896895719],[113,319,76,0.6366029534314718],[113,319,77,0.6447160063631744],[113,319,78,0.6511099378088152],[113,319,79,0.6555817582492448],[114,-64,64,64.0],[114,-64,65,64.0],[114,-64,66,64.0],[114,-64,67,64.0],[114,-64,68,64.0],[114,-64,69,64.0],[114,-64,70,64.0],[114,-64,71,64.0],[114,-64,72,64.0],[114,-64,73,64.0],[114,-64,74,64.0],[114,-64,75,64.0],[114,-64,76,64.0],[114,-64,77,64.0],[114,-64,78,64.0],[114,-64,79,64.0],[114,-63,64,64.0],[114,-63,65,64.0],[114,-63,66,64.0],[114,-63,67,64.0],[114,-63,68,64.0],[114,-63,69,64.0],[114,-63,70,64.0],[114,-63,71,64.0],[114,-63,72,64.0],[114,-63,73,64.0],[114,-63,74,64.0],[114,-63,75,64.0],[114,-63,76,64.0],[114,-63,77,64.0],[114,-63,78,64.0],[114,-63,79,64.0],[114,-62,64,64.0],[114,-62,65,64.0],[114,-62,66,64.0],[114,-62,67,64.0],[114,-62,68,64.0],[114,-62,69,64.0],[114,-62,70,64.0],[114,-62,71,64.0],[114,-62,72,64.0],[114,-62,73,64.0],[114,-62,74,64.0],[114,-62,75,64.0],[114,-62,76,64.0],[114,-62,77,64.0],[114,-62,78,64.0],[114,-62,79,64.0],[114,-61,64,64.0],[114,-61,65,64.0],[114,-61,66,64.0],[114,-61,67,64.0],[114,-61,68,64.0],[114,-61,69,64.0],[114,-61,70,64.0],[114,-61,71,64.0],[114,-61,72,64.0],[114,-61,73,64.0],[114,-61,74,64.0],[114,-61,75,64.0],[114,-61,76,64.0],[114,-61,77,64.0],[114,-61,78,64.0],[114,-61,79,64.0],[114,-60,64,64.0],[114,-60,65,64.0],[114,-60,66,64.0],[114,-60,67,64.0],[114,-60,68,64.0],[114,-60,69,64.0],[114,-60,70,64.0],[114,-60,71,64.0],[114,-60,72,64.0],[114,-60,73,64.0],[114,-60,74,64.0],[114,-60,75,64.0],[114,-60,76,64.0],[114,-60,77,64.0],[114,-60,78,64.0],[114,-60,79,64.0],[114,-59,64,64.0],[114,-59,65,64.0],[114,-59,66,64.0],[114,-59,67,64.0],[114,-59,68,64.0],[114,-59,69,64.0],[114,-59,70,64.0],[114,-59,71,64.0],[114,-59,72,64.0],[114,-59,73,64.0],[114,-59,74,64.0],[114,-59,75,64.0],[114,-59,76,64.0],[114,-59,77,64.0],[114,-59,78,64.0],[114,-59,79,64.0],[114,-58,64,64.0],[114,-58,65,64.0],[114,-58,66,64.0],[114,-58,67,64.0],[114,-58,68,64.0],[114,-58,69,64.0],[114,-58,70,64.0],[114,-58,71,64.0],[114,-58,72,64.0],[114,-58,73,64.0],[114,-58,74,64.0],[114,-58,75,64.0],[114,-58,76,64.0],[114,-58,77,64.0],[114,-58,78,64.0],[114,-58,79,64.0],[114,-57,64,64.0],[114,-57,65,64.0],[114,-57,66,64.0],[114,-57,67,64.0],[114,-57,68,64.0],[114,-57,69,64.0],[114,-57,70,64.0],[114,-57,71,64.0],[114,-57,72,64.0],[114,-57,73,64.0],[114,-57,74,64.0],[114,-57,75,64.0],[114,-57,76,64.0],[114,-57,77,64.0],[114,-57,78,64.0],[114,-57,79,64.0],[114,-56,64,64.0],[114,-56,65,64.0],[114,-56,66,64.0],[114,-56,67,64.0],[114,-56,68,64.0],[114,-56,69,64.0],[114,-56,70,64.0],[114,-56,71,64.0],[114,-56,72,64.0],[114,-56,73,64.0],[114,-56,74,64.0],[114,-56,75,64.0],[114,-56,76,64.0],[114,-56,77,64.0],[114,-56,78,64.0],[114,-56,79,64.0],[114,-55,64,64.0],[114,-55,65,64.0],[114,-55,66,64.0],[114,-55,67,64.0],[114,-55,68,64.0],[114,-55,69,64.0],[114,-55,70,64.0],[114,-55,71,64.0],[114,-55,72,64.0],[114,-55,73,64.0],[114,-55,74,64.0],[114,-55,75,64.0],[114,-55,76,64.0],[114,-55,77,64.0],[114,-55,78,64.0],[114,-55,79,64.0],[114,-54,64,64.0],[114,-54,65,64.0],[114,-54,66,64.0],[114,-54,67,64.0],[114,-54,68,64.0],[114,-54,69,64.0],[114,-54,70,64.0],[114,-54,71,64.0],[114,-54,72,64.0],[114,-54,73,64.0],[114,-54,74,64.0],[114,-54,75,64.0],[114,-54,76,64.0],[114,-54,77,64.0],[114,-54,78,64.0],[114,-54,79,64.0],[114,-53,64,64.0],[114,-53,65,64.0],[114,-53,66,64.0],[114,-53,67,64.0],[114,-53,68,64.0],[114,-53,69,64.0],[114,-53,70,64.0],[114,-53,71,64.0],[114,-53,72,64.0],[114,-53,73,64.0],[114,-53,74,64.0],[114,-53,75,64.0],[114,-53,76,64.0],[114,-53,77,64.0],[114,-53,78,64.0],[114,-53,79,64.0],[114,-52,64,64.0],[114,-52,65,64.0],[114,-52,66,64.0],[114,-52,67,64.0],[114,-52,68,64.0],[114,-52,69,64.0],[114,-52,70,64.0],[114,-52,71,64.0],[114,-52,72,64.0],[114,-52,73,64.0],[114,-52,74,64.0],[114,-52,75,64.0],[114,-52,76,64.0],[114,-52,77,64.0],[114,-52,78,64.0],[114,-52,79,64.0],[114,-51,64,64.0],[114,-51,65,64.0],[114,-51,66,64.0],[114,-51,67,64.0],[114,-51,68,64.0],[114,-51,69,64.0],[114,-51,70,64.0],[114,-51,71,64.0],[114,-51,72,64.0],[114,-51,73,64.0],[114,-51,74,64.0],[114,-51,75,64.0],[114,-51,76,64.0],[114,-51,77,64.0],[114,-51,78,64.0],[114,-51,79,64.0],[114,-50,64,64.0],[114,-50,65,64.0],[114,-50,66,64.0],[114,-50,67,64.0],[114,-50,68,64.0],[114,-50,69,64.0],[114,-50,70,64.0],[114,-50,71,64.0],[114,-50,72,64.0],[114,-50,73,64.0],[114,-50,74,64.0],[114,-50,75,64.0],[114,-50,76,64.0],[114,-50,77,64.0],[114,-50,78,64.0],[114,-50,79,64.0],[114,-49,64,64.0],[114,-49,65,64.0],[114,-49,66,64.0],[114,-49,67,64.0],[114,-49,68,64.0],[114,-49,69,64.0],[114,-49,70,64.0],[114,-49,71,64.0],[114,-49,72,64.0],[114,-49,73,64.0],[114,-49,74,64.0],[114,-49,75,64.0],[114,-49,76,64.0],[114,-49,77,64.0],[114,-49,78,64.0],[114,-49,79,64.0],[114,-48,64,64.0],[114,-48,65,64.0],[114,-48,66,64.0],[114,-48,67,64.0],[114,-48,68,64.0],[114,-48,69,64.0],[114,-48,70,64.0],[114,-48,71,64.0],[114,-48,72,64.0],[114,-48,73,64.0],[114,-48,74,64.0],[114,-48,75,64.0],[114,-48,76,64.0],[114,-48,77,64.0],[114,-48,78,64.0],[114,-48,79,64.0],[114,-47,64,64.0],[114,-47,65,64.0],[114,-47,66,64.0],[114,-47,67,64.0],[114,-47,68,64.0],[114,-47,69,64.0],[114,-47,70,64.0],[114,-47,71,64.0],[114,-47,72,64.0],[114,-47,73,64.0],[114,-47,74,64.0],[114,-47,75,64.0],[114,-47,76,64.0],[114,-47,77,64.0],[114,-47,78,64.0],[114,-47,79,64.0],[114,-46,64,64.0],[114,-46,65,64.0],[114,-46,66,64.0],[114,-46,67,64.0],[114,-46,68,64.0],[114,-46,69,64.0],[114,-46,70,64.0],[114,-46,71,64.0],[114,-46,72,64.0],[114,-46,73,64.0],[114,-46,74,64.0],[114,-46,75,64.0],[114,-46,76,64.0],[114,-46,77,64.0],[114,-46,78,64.0],[114,-46,79,64.0],[114,-45,64,64.0],[114,-45,65,64.0],[114,-45,66,64.0],[114,-45,67,64.0],[114,-45,68,64.0],[114,-45,69,64.0],[114,-45,70,64.0],[114,-45,71,64.0],[114,-45,72,64.0],[114,-45,73,64.0],[114,-45,74,64.0],[114,-45,75,64.0],[114,-45,76,64.0],[114,-45,77,64.0],[114,-45,78,64.0],[114,-45,79,64.0],[114,-44,64,64.0],[114,-44,65,64.0],[114,-44,66,64.0],[114,-44,67,64.0],[114,-44,68,64.0],[114,-44,69,64.0],[114,-44,70,64.0],[114,-44,71,64.0],[114,-44,72,64.0],[114,-44,73,64.0],[114,-44,74,64.0],[114,-44,75,64.0],[114,-44,76,64.0],[114,-44,77,64.0],[114,-44,78,64.0],[114,-44,79,64.0],[114,-43,64,64.0],[114,-43,65,64.0],[114,-43,66,64.0],[114,-43,67,64.0],[114,-43,68,64.0],[114,-43,69,64.0],[114,-43,70,64.0],[114,-43,71,64.0],[114,-43,72,64.0],[114,-43,73,64.0],[114,-43,74,64.0],[114,-43,75,64.0],[114,-43,76,64.0],[114,-43,77,64.0],[114,-43,78,64.0],[114,-43,79,64.0],[114,-42,64,64.0],[114,-42,65,64.0],[114,-42,66,64.0],[114,-42,67,64.0],[114,-42,68,64.0],[114,-42,69,64.0],[114,-42,70,64.0],[114,-42,71,64.0],[114,-42,72,64.0],[114,-42,73,64.0],[114,-42,74,64.0],[114,-42,75,64.0],[114,-42,76,64.0],[114,-42,77,64.0],[114,-42,78,64.0],[114,-42,79,64.0],[114,-41,64,64.0],[114,-41,65,64.0],[114,-41,66,64.0],[114,-41,67,64.0],[114,-41,68,64.0],[114,-41,69,64.0],[114,-41,70,64.0],[114,-41,71,64.0],[114,-41,72,64.0],[114,-41,73,64.0],[114,-41,74,64.0],[114,-41,75,64.0],[114,-41,76,64.0],[114,-41,77,64.0],[114,-41,78,64.0],[114,-41,79,64.0],[114,-40,64,64.0],[114,-40,65,64.0],[114,-40,66,64.0],[114,-40,67,64.0],[114,-40,68,64.0],[114,-40,69,64.0],[114,-40,70,64.0],[114,-40,71,64.0],[114,-40,72,64.0],[114,-40,73,64.0],[114,-40,74,64.0],[114,-40,75,64.0],[114,-40,76,64.0],[114,-40,77,64.0],[114,-40,78,64.0],[114,-40,79,64.0],[114,-39,64,64.0],[114,-39,65,64.0],[114,-39,66,64.0],[114,-39,67,64.0],[114,-39,68,64.0],[114,-39,69,64.0],[114,-39,70,64.0],[114,-39,71,64.0],[114,-39,72,64.0],[114,-39,73,64.0],[114,-39,74,64.0],[114,-39,75,64.0],[114,-39,76,64.0],[114,-39,77,64.0],[114,-39,78,64.0],[114,-39,79,64.0],[114,-38,64,64.0],[114,-38,65,64.0],[114,-38,66,64.0],[114,-38,67,64.0],[114,-38,68,64.0],[114,-38,69,64.0],[114,-38,70,64.0],[114,-38,71,64.0],[114,-38,72,64.0],[114,-38,73,64.0],[114,-38,74,64.0],[114,-38,75,64.0],[114,-38,76,64.0],[114,-38,77,64.0],[114,-38,78,64.0],[114,-38,79,64.0],[114,-37,64,64.0],[114,-37,65,64.0],[114,-37,66,64.0],[114,-37,67,64.0],[114,-37,68,64.0],[114,-37,69,64.0],[114,-37,70,64.0],[114,-37,71,64.0],[114,-37,72,64.0],[114,-37,73,64.0],[114,-37,74,64.0],[114,-37,75,64.0],[114,-37,76,64.0],[114,-37,77,64.0],[114,-37,78,64.0],[114,-37,79,64.0],[114,-36,64,64.0],[114,-36,65,64.0],[114,-36,66,64.0],[114,-36,67,64.0],[114,-36,68,64.0],[114,-36,69,64.0],[114,-36,70,64.0],[114,-36,71,64.0],[114,-36,72,64.0],[114,-36,73,64.0],[114,-36,74,64.0],[114,-36,75,64.0],[114,-36,76,64.0],[114,-36,77,64.0],[114,-36,78,64.0],[114,-36,79,64.0],[114,-35,64,64.0],[114,-35,65,64.0],[114,-35,66,64.0],[114,-35,67,64.0],[114,-35,68,64.0],[114,-35,69,64.0],[114,-35,70,64.0],[114,-35,71,64.0],[114,-35,72,64.0],[114,-35,73,64.0],[114,-35,74,64.0],[114,-35,75,64.0],[114,-35,76,64.0],[114,-35,77,64.0],[114,-35,78,64.0],[114,-35,79,64.0],[114,-34,64,64.0],[114,-34,65,64.0],[114,-34,66,64.0],[114,-34,67,64.0],[114,-34,68,64.0],[114,-34,69,64.0],[114,-34,70,64.0],[114,-34,71,64.0],[114,-34,72,64.0],[114,-34,73,64.0],[114,-34,74,64.0],[114,-34,75,64.0],[114,-34,76,64.0],[114,-34,77,64.0],[114,-34,78,64.0],[114,-34,79,64.0],[114,-33,64,64.0],[114,-33,65,64.0],[114,-33,66,64.0],[114,-33,67,64.0],[114,-33,68,64.0],[114,-33,69,64.0],[114,-33,70,64.0],[114,-33,71,64.0],[114,-33,72,64.0],[114,-33,73,64.0],[114,-33,74,64.0],[114,-33,75,64.0],[114,-33,76,64.0],[114,-33,77,64.0],[114,-33,78,64.0],[114,-33,79,64.0],[114,-32,64,64.0],[114,-32,65,64.0],[114,-32,66,64.0],[114,-32,67,64.0],[114,-32,68,64.0],[114,-32,69,64.0],[114,-32,70,64.0],[114,-32,71,64.0],[114,-32,72,64.0],[114,-32,73,64.0],[114,-32,74,64.0],[114,-32,75,64.0],[114,-32,76,64.0],[114,-32,77,64.0],[114,-32,78,64.0],[114,-32,79,64.0],[114,-31,64,64.0],[114,-31,65,64.0],[114,-31,66,64.0],[114,-31,67,64.0],[114,-31,68,64.0],[114,-31,69,64.0],[114,-31,70,64.0],[114,-31,71,64.0],[114,-31,72,64.0],[114,-31,73,64.0],[114,-31,74,64.0],[114,-31,75,64.0],[114,-31,76,64.0],[114,-31,77,64.0],[114,-31,78,64.0],[114,-31,79,64.0],[114,-30,64,64.0],[114,-30,65,64.0],[114,-30,66,64.0],[114,-30,67,64.0],[114,-30,68,64.0],[114,-30,69,64.0],[114,-30,70,64.0],[114,-30,71,64.0],[114,-30,72,64.0],[114,-30,73,64.0],[114,-30,74,64.0],[114,-30,75,64.0],[114,-30,76,64.0],[114,-30,77,64.0],[114,-30,78,64.0],[114,-30,79,64.0],[114,-29,64,64.0],[114,-29,65,64.0],[114,-29,66,64.0],[114,-29,67,64.0],[114,-29,68,64.0],[114,-29,69,64.0],[114,-29,70,64.0],[114,-29,71,64.0],[114,-29,72,64.0],[114,-29,73,64.0],[114,-29,74,64.0],[114,-29,75,64.0],[114,-29,76,64.0],[114,-29,77,64.0],[114,-29,78,64.0],[114,-29,79,64.0],[114,-28,64,64.0],[114,-28,65,64.0],[114,-28,66,64.0],[114,-28,67,64.0],[114,-28,68,64.0],[114,-28,69,64.0],[114,-28,70,64.0],[114,-28,71,64.0],[114,-28,72,64.0],[114,-28,73,64.0],[114,-28,74,64.0],[114,-28,75,64.0],[114,-28,76,64.0],[114,-28,77,64.0],[114,-28,78,64.0],[114,-28,79,64.0],[114,-27,64,64.0],[114,-27,65,64.0],[114,-27,66,64.0],[114,-27,67,64.0],[114,-27,68,64.0],[114,-27,69,64.0],[114,-27,70,64.0],[114,-27,71,64.0],[114,-27,72,64.0],[114,-27,73,64.0],[114,-27,74,64.0],[114,-27,75,64.0],[114,-27,76,64.0],[114,-27,77,64.0],[114,-27,78,64.0],[114,-27,79,64.0],[114,-26,64,64.0],[114,-26,65,64.0],[114,-26,66,64.0],[114,-26,67,64.0],[114,-26,68,64.0],[114,-26,69,64.0],[114,-26,70,64.0],[114,-26,71,64.0],[114,-26,72,64.0],[114,-26,73,64.0],[114,-26,74,64.0],[114,-26,75,64.0],[114,-26,76,64.0],[114,-26,77,64.0],[114,-26,78,64.0],[114,-26,79,64.0],[114,-25,64,64.0],[114,-25,65,64.0],[114,-25,66,64.0],[114,-25,67,64.0],[114,-25,68,64.0],[114,-25,69,64.0],[114,-25,70,64.0],[114,-25,71,64.0],[114,-25,72,64.0],[114,-25,73,64.0],[114,-25,74,64.0],[114,-25,75,64.0],[114,-25,76,64.0],[114,-25,77,64.0],[114,-25,78,64.0],[114,-25,79,64.0],[114,-24,64,64.0],[114,-24,65,64.0],[114,-24,66,64.0],[114,-24,67,64.0],[114,-24,68,64.0],[114,-24,69,64.0],[114,-24,70,64.0],[114,-24,71,64.0],[114,-24,72,64.0],[114,-24,73,64.0],[114,-24,74,64.0],[114,-24,75,64.0],[114,-24,76,64.0],[114,-24,77,64.0],[114,-24,78,64.0],[114,-24,79,64.0],[114,-23,64,64.0],[114,-23,65,64.0],[114,-23,66,64.0],[114,-23,67,64.0],[114,-23,68,64.0],[114,-23,69,64.0],[114,-23,70,64.0],[114,-23,71,64.0],[114,-23,72,64.0],[114,-23,73,64.0],[114,-23,74,64.0],[114,-23,75,64.0],[114,-23,76,64.0],[114,-23,77,64.0],[114,-23,78,64.0],[114,-23,79,64.0],[114,-22,64,64.0],[114,-22,65,64.0],[114,-22,66,64.0],[114,-22,67,64.0],[114,-22,68,64.0],[114,-22,69,64.0],[114,-22,70,64.0],[114,-22,71,64.0],[114,-22,72,64.0],[114,-22,73,64.0],[114,-22,74,64.0],[114,-22,75,64.0],[114,-22,76,64.0],[114,-22,77,64.0],[114,-22,78,64.0],[114,-22,79,64.0],[114,-21,64,64.0],[114,-21,65,64.0],[114,-21,66,64.0],[114,-21,67,64.0],[114,-21,68,64.0],[114,-21,69,64.0],[114,-21,70,64.0],[114,-21,71,64.0],[114,-21,72,64.0],[114,-21,73,64.0],[114,-21,74,64.0],[114,-21,75,64.0],[114,-21,76,64.0],[114,-21,77,64.0],[114,-21,78,64.0],[114,-21,79,64.0],[114,-20,64,64.0],[114,-20,65,64.0],[114,-20,66,64.0],[114,-20,67,64.0],[114,-20,68,64.0],[114,-20,69,64.0],[114,-20,70,64.0],[114,-20,71,64.0],[114,-20,72,64.0],[114,-20,73,64.0],[114,-20,74,64.0],[114,-20,75,64.0],[114,-20,76,64.0],[114,-20,77,64.0],[114,-20,78,64.0],[114,-20,79,64.0],[114,-19,64,64.0],[114,-19,65,64.0],[114,-19,66,64.0],[114,-19,67,64.0],[114,-19,68,64.0],[114,-19,69,64.0],[114,-19,70,64.0],[114,-19,71,64.0],[114,-19,72,64.0],[114,-19,73,64.0],[114,-19,74,64.0],[114,-19,75,64.0],[114,-19,76,64.0],[114,-19,77,64.0],[114,-19,78,64.0],[114,-19,79,64.0],[114,-18,64,64.0],[114,-18,65,64.0],[114,-18,66,64.0],[114,-18,67,64.0],[114,-18,68,64.0],[114,-18,69,64.0],[114,-18,70,64.0],[114,-18,71,64.0],[114,-18,72,64.0],[114,-18,73,64.0],[114,-18,74,64.0],[114,-18,75,64.0],[114,-18,76,64.0],[114,-18,77,64.0],[114,-18,78,64.0],[114,-18,79,64.0],[114,-17,64,64.0],[114,-17,65,64.0],[114,-17,66,64.0],[114,-17,67,64.0],[114,-17,68,64.0],[114,-17,69,64.0],[114,-17,70,64.0],[114,-17,71,64.0],[114,-17,72,64.0],[114,-17,73,64.0],[114,-17,74,64.0],[114,-17,75,64.0],[114,-17,76,64.0],[114,-17,77,64.0],[114,-17,78,64.0],[114,-17,79,64.0],[114,-16,64,64.0],[114,-16,65,64.0],[114,-16,66,64.0],[114,-16,67,64.0],[114,-16,68,64.0],[114,-16,69,64.0],[114,-16,70,64.0],[114,-16,71,64.0],[114,-16,72,64.0],[114,-16,73,64.0],[114,-16,74,64.0],[114,-16,75,64.0],[114,-16,76,64.0],[114,-16,77,64.0],[114,-16,78,64.0],[114,-16,79,64.0],[114,-15,64,64.0],[114,-15,65,64.0],[114,-15,66,64.0],[114,-15,67,64.0],[114,-15,68,64.0],[114,-15,69,64.0],[114,-15,70,64.0],[114,-15,71,64.0],[114,-15,72,64.0],[114,-15,73,64.0],[114,-15,74,64.0],[114,-15,75,64.0],[114,-15,76,64.0],[114,-15,77,64.0],[114,-15,78,64.0],[114,-15,79,64.0],[114,-14,64,64.0],[114,-14,65,64.0],[114,-14,66,64.0],[114,-14,67,64.0],[114,-14,68,64.0],[114,-14,69,64.0],[114,-14,70,64.0],[114,-14,71,64.0],[114,-14,72,64.0],[114,-14,73,64.0],[114,-14,74,64.0],[114,-14,75,64.0],[114,-14,76,64.0],[114,-14,77,64.0],[114,-14,78,64.0],[114,-14,79,64.0],[114,-13,64,64.0],[114,-13,65,64.0],[114,-13,66,64.0],[114,-13,67,64.0],[114,-13,68,64.0],[114,-13,69,64.0],[114,-13,70,64.0],[114,-13,71,64.0],[114,-13,72,64.0],[114,-13,73,64.0],[114,-13,74,64.0],[114,-13,75,64.0],[114,-13,76,64.0],[114,-13,77,64.0],[114,-13,78,64.0],[114,-13,79,64.0],[114,-12,64,64.0],[114,-12,65,64.0],[114,-12,66,64.0],[114,-12,67,64.0],[114,-12,68,64.0],[114,-12,69,64.0],[114,-12,70,64.0],[114,-12,71,64.0],[114,-12,72,64.0],[114,-12,73,64.0],[114,-12,74,64.0],[114,-12,75,64.0],[114,-12,76,64.0],[114,-12,77,64.0],[114,-12,78,64.0],[114,-12,79,64.0],[114,-11,64,64.0],[114,-11,65,64.0],[114,-11,66,64.0],[114,-11,67,64.0],[114,-11,68,64.0],[114,-11,69,64.0],[114,-11,70,64.0],[114,-11,71,64.0],[114,-11,72,64.0],[114,-11,73,64.0],[114,-11,74,64.0],[114,-11,75,64.0],[114,-11,76,64.0],[114,-11,77,64.0],[114,-11,78,64.0],[114,-11,79,64.0],[114,-10,64,64.0],[114,-10,65,64.0],[114,-10,66,64.0],[114,-10,67,64.0],[114,-10,68,64.0],[114,-10,69,64.0],[114,-10,70,64.0],[114,-10,71,64.0],[114,-10,72,64.0],[114,-10,73,64.0],[114,-10,74,64.0],[114,-10,75,64.0],[114,-10,76,64.0],[114,-10,77,64.0],[114,-10,78,64.0],[114,-10,79,64.0],[114,-9,64,64.0],[114,-9,65,64.0],[114,-9,66,64.0],[114,-9,67,64.0],[114,-9,68,64.0],[114,-9,69,64.0],[114,-9,70,64.0],[114,-9,71,64.0],[114,-9,72,64.0],[114,-9,73,64.0],[114,-9,74,64.0],[114,-9,75,64.0],[114,-9,76,64.0],[114,-9,77,64.0],[114,-9,78,64.0],[114,-9,79,64.0],[114,-8,64,64.0],[114,-8,65,64.0],[114,-8,66,64.0],[114,-8,67,64.0],[114,-8,68,64.0],[114,-8,69,64.0],[114,-8,70,64.0],[114,-8,71,64.0],[114,-8,72,64.0],[114,-8,73,64.0],[114,-8,74,64.0],[114,-8,75,64.0],[114,-8,76,64.0],[114,-8,77,64.0],[114,-8,78,64.0],[114,-8,79,64.0],[114,-7,64,64.0],[114,-7,65,64.0],[114,-7,66,64.0],[114,-7,67,64.0],[114,-7,68,64.0],[114,-7,69,64.0],[114,-7,70,64.0],[114,-7,71,64.0],[114,-7,72,64.0],[114,-7,73,64.0],[114,-7,74,64.0],[114,-7,75,64.0],[114,-7,76,64.0],[114,-7,77,64.0],[114,-7,78,64.0],[114,-7,79,64.0],[114,-6,64,64.0],[114,-6,65,64.0],[114,-6,66,64.0],[114,-6,67,64.0],[114,-6,68,64.0],[114,-6,69,64.0],[114,-6,70,64.0],[114,-6,71,64.0],[114,-6,72,64.0],[114,-6,73,64.0],[114,-6,74,64.0],[114,-6,75,64.0],[114,-6,76,64.0],[114,-6,77,64.0],[114,-6,78,64.0],[114,-6,79,64.0],[114,-5,64,64.0],[114,-5,65,64.0],[114,-5,66,64.0],[114,-5,67,64.0],[114,-5,68,64.0],[114,-5,69,64.0],[114,-5,70,64.0],[114,-5,71,64.0],[114,-5,72,64.0],[114,-5,73,64.0],[114,-5,74,64.0],[114,-5,75,64.0],[114,-5,76,64.0],[114,-5,77,64.0],[114,-5,78,64.0],[114,-5,79,64.0],[114,-4,64,64.0],[114,-4,65,64.0],[114,-4,66,64.0],[114,-4,67,64.0],[114,-4,68,64.0],[114,-4,69,64.0],[114,-4,70,64.0],[114,-4,71,64.0],[114,-4,72,64.0],[114,-4,73,64.0],[114,-4,74,64.0],[114,-4,75,64.0],[114,-4,76,64.0],[114,-4,77,64.0],[114,-4,78,64.0],[114,-4,79,64.0],[114,-3,64,64.0],[114,-3,65,64.0],[114,-3,66,64.0],[114,-3,67,64.0],[114,-3,68,64.0],[114,-3,69,64.0],[114,-3,70,64.0],[114,-3,71,64.0],[114,-3,72,64.0],[114,-3,73,64.0],[114,-3,74,64.0],[114,-3,75,64.0],[114,-3,76,64.0],[114,-3,77,64.0],[114,-3,78,64.0],[114,-3,79,64.0],[114,-2,64,64.0],[114,-2,65,64.0],[114,-2,66,64.0],[114,-2,67,64.0],[114,-2,68,64.0],[114,-2,69,64.0],[114,-2,70,64.0],[114,-2,71,64.0],[114,-2,72,64.0],[114,-2,73,64.0],[114,-2,74,64.0],[114,-2,75,64.0],[114,-2,76,64.0],[114,-2,77,64.0],[114,-2,78,64.0],[114,-2,79,64.0],[114,-1,64,64.0],[114,-1,65,64.0],[114,-1,66,64.0],[114,-1,67,64.0],[114,-1,68,64.0],[114,-1,69,64.0],[114,-1,70,64.0],[114,-1,71,64.0],[114,-1,72,64.0],[114,-1,73,64.0],[114,-1,74,64.0],[114,-1,75,64.0],[114,-1,76,64.0],[114,-1,77,64.0],[114,-1,78,64.0],[114,-1,79,64.0],[114,0,64,64.0],[114,0,65,64.0],[114,0,66,64.0],[114,0,67,64.0],[114,0,68,64.0],[114,0,69,64.0],[114,0,70,64.0],[114,0,71,64.0],[114,0,72,64.0],[114,0,73,64.0],[114,0,74,64.0],[114,0,75,64.0],[114,0,76,64.0],[114,0,77,64.0],[114,0,78,64.0],[114,0,79,64.0],[114,1,64,64.0],[114,1,65,64.0],[114,1,66,64.0],[114,1,67,64.0],[114,1,68,64.0],[114,1,69,64.0],[114,1,70,64.0],[114,1,71,64.0],[114,1,72,64.0],[114,1,73,64.0],[114,1,74,64.0],[114,1,75,64.0],[114,1,76,64.0],[114,1,77,64.0],[114,1,78,64.0],[114,1,79,64.0],[114,2,64,64.0],[114,2,65,64.0],[114,2,66,64.0],[114,2,67,64.0],[114,2,68,64.0],[114,2,69,64.0],[114,2,70,64.0],[114,2,71,64.0],[114,2,72,64.0],[114,2,73,64.0],[114,2,74,64.0],[114,2,75,64.0],[114,2,76,64.0],[114,2,77,64.0],[114,2,78,64.0],[114,2,79,64.0],[114,3,64,64.0],[114,3,65,64.0],[114,3,66,64.0],[114,3,67,64.0],[114,3,68,64.0],[114,3,69,64.0],[114,3,70,64.0],[114,3,71,64.0],[114,3,72,64.0],[114,3,73,64.0],[114,3,74,64.0],[114,3,75,64.0],[114,3,76,64.0],[114,3,77,64.0],[114,3,78,64.0],[114,3,79,64.0],[114,4,64,64.0],[114,4,65,64.0],[114,4,66,64.0],[114,4,67,64.0],[114,4,68,64.0],[114,4,69,64.0],[114,4,70,64.0],[114,4,71,64.0],[114,4,72,64.0],[114,4,73,64.0],[114,4,74,64.0],[114,4,75,64.0],[114,4,76,64.0],[114,4,77,64.0],[114,4,78,64.0],[114,4,79,64.0],[114,5,64,64.0],[114,5,65,64.0],[114,5,66,64.0],[114,5,67,64.0],[114,5,68,64.0],[114,5,69,64.0],[114,5,70,64.0],[114,5,71,64.0],[114,5,72,64.0],[114,5,73,64.0],[114,5,74,64.0],[114,5,75,64.0],[114,5,76,64.0],[114,5,77,64.0],[114,5,78,64.0],[114,5,79,64.0],[114,6,64,64.0],[114,6,65,64.0],[114,6,66,64.0],[114,6,67,64.0],[114,6,68,64.0],[114,6,69,64.0],[114,6,70,64.0],[114,6,71,64.0],[114,6,72,64.0],[114,6,73,64.0],[114,6,74,64.0],[114,6,75,64.0],[114,6,76,64.0],[114,6,77,64.0],[114,6,78,64.0],[114,6,79,64.0],[114,7,64,64.0],[114,7,65,64.0],[114,7,66,64.0],[114,7,67,64.0],[114,7,68,64.0],[114,7,69,64.0],[114,7,70,64.0],[114,7,71,64.0],[114,7,72,64.0],[114,7,73,64.0],[114,7,74,64.0],[114,7,75,64.0],[114,7,76,64.0],[114,7,77,64.0],[114,7,78,64.0],[114,7,79,64.0],[114,8,64,64.0],[114,8,65,64.0],[114,8,66,64.0],[114,8,67,64.0],[114,8,68,64.0],[114,8,69,64.0],[114,8,70,64.0],[114,8,71,64.0],[114,8,72,64.0],[114,8,73,64.0],[114,8,74,64.0],[114,8,75,64.0],[114,8,76,64.0],[114,8,77,64.0],[114,8,78,64.0],[114,8,79,64.0],[114,9,64,64.0],[114,9,65,64.0],[114,9,66,64.0],[114,9,67,64.0],[114,9,68,64.0],[114,9,69,64.0],[114,9,70,64.0],[114,9,71,64.0],[114,9,72,64.0],[114,9,73,64.0],[114,9,74,64.0],[114,9,75,64.0],[114,9,76,64.0],[114,9,77,64.0],[114,9,78,64.0],[114,9,79,64.0],[114,10,64,64.0],[114,10,65,64.0],[114,10,66,64.0],[114,10,67,64.0],[114,10,68,64.0],[114,10,69,64.0],[114,10,70,64.0],[114,10,71,64.0],[114,10,72,64.0],[114,10,73,64.0],[114,10,74,64.0],[114,10,75,64.0],[114,10,76,64.0],[114,10,77,64.0],[114,10,78,64.0],[114,10,79,64.0],[114,11,64,64.0],[114,11,65,64.0],[114,11,66,64.0],[114,11,67,64.0],[114,11,68,64.0],[114,11,69,64.0],[114,11,70,64.0],[114,11,71,64.0],[114,11,72,64.0],[114,11,73,64.0],[114,11,74,64.0],[114,11,75,64.0],[114,11,76,64.0],[114,11,77,64.0],[114,11,78,64.0],[114,11,79,64.0],[114,12,64,64.0],[114,12,65,64.0],[114,12,66,64.0],[114,12,67,64.0],[114,12,68,64.0],[114,12,69,64.0],[114,12,70,64.0],[114,12,71,64.0],[114,12,72,64.0],[114,12,73,64.0],[114,12,74,64.0],[114,12,75,64.0],[114,12,76,64.0],[114,12,77,64.0],[114,12,78,64.0],[114,12,79,64.0],[114,13,64,64.0],[114,13,65,64.0],[114,13,66,64.0],[114,13,67,64.0],[114,13,68,64.0],[114,13,69,64.0],[114,13,70,64.0],[114,13,71,64.0],[114,13,72,64.0],[114,13,73,64.0],[114,13,74,64.0],[114,13,75,64.0],[114,13,76,64.0],[114,13,77,64.0],[114,13,78,64.0],[114,13,79,64.0],[114,14,64,64.0],[114,14,65,64.0],[114,14,66,64.0],[114,14,67,64.0],[114,14,68,64.0],[114,14,69,64.0],[114,14,70,64.0],[114,14,71,64.0],[114,14,72,64.0],[114,14,73,64.0],[114,14,74,64.0],[114,14,75,64.0],[114,14,76,64.0],[114,14,77,64.0],[114,14,78,64.0],[114,14,79,64.0],[114,15,64,64.0],[114,15,65,64.0],[114,15,66,64.0],[114,15,67,64.0],[114,15,68,64.0],[114,15,69,64.0],[114,15,70,64.0],[114,15,71,64.0],[114,15,72,64.0],[114,15,73,64.0],[114,15,74,64.0],[114,15,75,64.0],[114,15,76,64.0],[114,15,77,64.0],[114,15,78,64.0],[114,15,79,64.0],[114,16,64,64.0],[114,16,65,64.0],[114,16,66,64.0],[114,16,67,64.0],[114,16,68,64.0],[114,16,69,64.0],[114,16,70,64.0],[114,16,71,64.0],[114,16,72,64.0],[114,16,73,64.0],[114,16,74,64.0],[114,16,75,64.0],[114,16,76,64.0],[114,16,77,64.0],[114,16,78,64.0],[114,16,79,64.0],[114,17,64,64.0],[114,17,65,64.0],[114,17,66,64.0],[114,17,67,64.0],[114,17,68,64.0],[114,17,69,64.0],[114,17,70,64.0],[114,17,71,64.0],[114,17,72,64.0],[114,17,73,64.0],[114,17,74,64.0],[114,17,75,64.0],[114,17,76,64.0],[114,17,77,64.0],[114,17,78,64.0],[114,17,79,64.0],[114,18,64,64.0],[114,18,65,64.0],[114,18,66,64.0],[114,18,67,64.0],[114,18,68,64.0],[114,18,69,64.0],[114,18,70,64.0],[114,18,71,64.0],[114,18,72,64.0],[114,18,73,64.0],[114,18,74,64.0],[114,18,75,64.0],[114,18,76,64.0],[114,18,77,64.0],[114,18,78,64.0],[114,18,79,64.0],[114,19,64,64.0],[114,19,65,64.0],[114,19,66,64.0],[114,19,67,64.0],[114,19,68,64.0],[114,19,69,64.0],[114,19,70,64.0],[114,19,71,64.0],[114,19,72,64.0],[114,19,73,64.0],[114,19,74,64.0],[114,19,75,64.0],[114,19,76,64.0],[114,19,77,64.0],[114,19,78,64.0],[114,19,79,64.0],[114,20,64,64.0],[114,20,65,64.0],[114,20,66,64.0],[114,20,67,64.0],[114,20,68,64.0],[114,20,69,64.0],[114,20,70,64.0],[114,20,71,64.0],[114,20,72,64.0],[114,20,73,64.0],[114,20,74,64.0],[114,20,75,64.0],[114,20,76,64.0],[114,20,77,64.0],[114,20,78,64.0],[114,20,79,64.0],[114,21,64,64.0],[114,21,65,64.0],[114,21,66,64.0],[114,21,67,64.0],[114,21,68,64.0],[114,21,69,64.0],[114,21,70,64.0],[114,21,71,64.0],[114,21,72,64.0],[114,21,73,64.0],[114,21,74,64.0],[114,21,75,64.0],[114,21,76,64.0],[114,21,77,64.0],[114,21,78,64.0],[114,21,79,64.0],[114,22,64,64.0],[114,22,65,64.0],[114,22,66,64.0],[114,22,67,64.0],[114,22,68,64.0],[114,22,69,64.0],[114,22,70,64.0],[114,22,71,64.0],[114,22,72,64.0],[114,22,73,64.0],[114,22,74,64.0],[114,22,75,64.0],[114,22,76,64.0],[114,22,77,64.0],[114,22,78,64.0],[114,22,79,64.0],[114,23,64,64.0],[114,23,65,64.0],[114,23,66,64.0],[114,23,67,64.0],[114,23,68,64.0],[114,23,69,64.0],[114,23,70,64.0],[114,23,71,64.0],[114,23,72,64.0],[114,23,73,64.0],[114,23,74,64.0],[114,23,75,64.0],[114,23,76,64.0],[114,23,77,64.0],[114,23,78,64.0],[114,23,79,64.0],[114,24,64,64.0],[114,24,65,64.0],[114,24,66,64.0],[114,24,67,64.0],[114,24,68,64.0],[114,24,69,64.0],[114,24,70,64.0],[114,24,71,64.0],[114,24,72,64.0],[114,24,73,64.0],[114,24,74,64.0],[114,24,75,64.0],[114,24,76,64.0],[114,24,77,64.0],[114,24,78,64.0],[114,24,79,64.0],[114,25,64,64.0],[114,25,65,64.0],[114,25,66,64.0],[114,25,67,64.0],[114,25,68,64.0],[114,25,69,64.0],[114,25,70,64.0],[114,25,71,64.0],[114,25,72,64.0],[114,25,73,64.0],[114,25,74,64.0],[114,25,75,64.0],[114,25,76,64.0],[114,25,77,64.0],[114,25,78,64.0],[114,25,79,64.0],[114,26,64,64.0],[114,26,65,64.0],[114,26,66,64.0],[114,26,67,64.0],[114,26,68,64.0],[114,26,69,64.0],[114,26,70,64.0],[114,26,71,64.0],[114,26,72,64.0],[114,26,73,64.0],[114,26,74,64.0],[114,26,75,64.0],[114,26,76,64.0],[114,26,77,64.0],[114,26,78,64.0],[114,26,79,64.0],[114,27,64,64.0],[114,27,65,64.0],[114,27,66,64.0],[114,27,67,64.0],[114,27,68,64.0],[114,27,69,64.0],[114,27,70,64.0],[114,27,71,64.0],[114,27,72,64.0],[114,27,73,64.0],[114,27,74,64.0],[114,27,75,64.0],[114,27,76,64.0],[114,27,77,64.0],[114,27,78,64.0],[114,27,79,64.0],[114,28,64,64.0],[114,28,65,64.0],[114,28,66,64.0],[114,28,67,64.0],[114,28,68,64.0],[114,28,69,64.0],[114,28,70,64.0],[114,28,71,64.0],[114,28,72,64.0],[114,28,73,64.0],[114,28,74,64.0],[114,28,75,64.0],[114,28,76,64.0],[114,28,77,64.0],[114,28,78,64.0],[114,28,79,64.0],[114,29,64,64.0],[114,29,65,64.0],[114,29,66,64.0],[114,29,67,64.0],[114,29,68,64.0],[114,29,69,64.0],[114,29,70,64.0],[114,29,71,64.0],[114,29,72,64.0],[114,29,73,64.0],[114,29,74,64.0],[114,29,75,64.0],[114,29,76,64.0],[114,29,77,64.0],[114,29,78,64.0],[114,29,79,64.0],[114,30,64,64.0],[114,30,65,64.0],[114,30,66,64.0],[114,30,67,64.0],[114,30,68,64.0],[114,30,69,64.0],[114,30,70,64.0],[114,30,71,64.0],[114,30,72,64.0],[114,30,73,64.0],[114,30,74,64.0],[114,30,75,64.0],[114,30,76,64.0],[114,30,77,64.0],[114,30,78,64.0],[114,30,79,64.0],[114,31,64,64.0],[114,31,65,64.0],[114,31,66,64.0],[114,31,67,64.0],[114,31,68,64.0],[114,31,69,64.0],[114,31,70,64.0],[114,31,71,64.0],[114,31,72,64.0],[114,31,73,64.0],[114,31,74,64.0],[114,31,75,64.0],[114,31,76,64.0],[114,31,77,64.0],[114,31,78,64.0],[114,31,79,64.0],[114,32,64,64.0],[114,32,65,64.0],[114,32,66,64.0],[114,32,67,64.0],[114,32,68,64.0],[114,32,69,64.0],[114,32,70,64.0],[114,32,71,64.0],[114,32,72,64.0],[114,32,73,64.0],[114,32,74,64.0],[114,32,75,64.0],[114,32,76,64.0],[114,32,77,64.0],[114,32,78,64.0],[114,32,79,64.0],[114,33,64,64.0],[114,33,65,64.0],[114,33,66,64.0],[114,33,67,64.0],[114,33,68,64.0],[114,33,69,64.0],[114,33,70,64.0],[114,33,71,64.0],[114,33,72,64.0],[114,33,73,64.0],[114,33,74,64.0],[114,33,75,64.0],[114,33,76,64.0],[114,33,77,64.0],[114,33,78,64.0],[114,33,79,64.0],[114,34,64,64.0],[114,34,65,64.0],[114,34,66,64.0],[114,34,67,64.0],[114,34,68,64.0],[114,34,69,64.0],[114,34,70,64.0],[114,34,71,64.0],[114,34,72,64.0],[114,34,73,64.0],[114,34,74,64.0],[114,34,75,64.0],[114,34,76,64.0],[114,34,77,64.0],[114,34,78,64.0],[114,34,79,64.0],[114,35,64,64.0],[114,35,65,64.0],[114,35,66,64.0],[114,35,67,64.0],[114,35,68,64.0],[114,35,69,64.0],[114,35,70,64.0],[114,35,71,64.0],[114,35,72,64.0],[114,35,73,64.0],[114,35,74,64.0],[114,35,75,64.0],[114,35,76,64.0],[114,35,77,64.0],[114,35,78,64.0],[114,35,79,64.0],[114,36,64,64.0],[114,36,65,64.0],[114,36,66,64.0],[114,36,67,64.0],[114,36,68,64.0],[114,36,69,64.0],[114,36,70,64.0],[114,36,71,64.0],[114,36,72,64.0],[114,36,73,64.0],[114,36,74,64.0],[114,36,75,64.0],[114,36,76,64.0],[114,36,77,64.0],[114,36,78,64.0],[114,36,79,64.0],[114,37,64,64.0],[114,37,65,64.0],[114,37,66,64.0],[114,37,67,64.0],[114,37,68,64.0],[114,37,69,64.0],[114,37,70,64.0],[114,37,71,64.0],[114,37,72,64.0],[114,37,73,64.0],[114,37,74,64.0],[114,37,75,64.0],[114,37,76,64.0],[114,37,77,64.0],[114,37,78,64.0],[114,37,79,64.0],[114,38,64,64.0],[114,38,65,64.0],[114,38,66,64.0],[114,38,67,64.0],[114,38,68,64.0],[114,38,69,64.0],[114,38,70,64.0],[114,38,71,64.0],[114,38,72,64.0],[114,38,73,64.0],[114,38,74,64.0],[114,38,75,64.0],[114,38,76,64.0],[114,38,77,64.0],[114,38,78,64.0],[114,38,79,64.0],[114,39,64,64.0],[114,39,65,64.0],[114,39,66,64.0],[114,39,67,64.0],[114,39,68,64.0],[114,39,69,64.0],[114,39,70,64.0],[114,39,71,64.0],[114,39,72,64.0],[114,39,73,64.0],[114,39,74,64.0],[114,39,75,64.0],[114,39,76,64.0],[114,39,77,64.0],[114,39,78,64.0],[114,39,79,64.0],[114,40,64,64.0],[114,40,65,64.0],[114,40,66,64.0],[114,40,67,64.0],[114,40,68,64.0],[114,40,69,64.0],[114,40,70,64.0],[114,40,71,64.0],[114,40,72,64.0],[114,40,73,64.0],[114,40,74,64.0],[114,40,75,64.0],[114,40,76,64.0],[114,40,77,64.0],[114,40,78,64.0],[114,40,79,64.0],[114,41,64,64.0],[114,41,65,64.0],[114,41,66,64.0],[114,41,67,64.0],[114,41,68,64.0],[114,41,69,64.0],[114,41,70,64.0],[114,41,71,64.0],[114,41,72,64.0],[114,41,73,64.0],[114,41,74,64.0],[114,41,75,64.0],[114,41,76,64.0],[114,41,77,64.0],[114,41,78,64.0],[114,41,79,64.0],[114,42,64,64.0],[114,42,65,64.0],[114,42,66,64.0],[114,42,67,64.0],[114,42,68,64.0],[114,42,69,64.0],[114,42,70,64.0],[114,42,71,64.0],[114,42,72,64.0],[114,42,73,64.0],[114,42,74,64.0],[114,42,75,64.0],[114,42,76,64.0],[114,42,77,64.0],[114,42,78,64.0],[114,42,79,64.0],[114,43,64,64.0],[114,43,65,64.0],[114,43,66,64.0],[114,43,67,64.0],[114,43,68,64.0],[114,43,69,64.0],[114,43,70,64.0],[114,43,71,64.0],[114,43,72,64.0],[114,43,73,64.0],[114,43,74,64.0],[114,43,75,64.0],[114,43,76,64.0],[114,43,77,64.0],[114,43,78,64.0],[114,43,79,64.0],[114,44,64,64.0],[114,44,65,64.0],[114,44,66,64.0],[114,44,67,64.0],[114,44,68,64.0],[114,44,69,64.0],[114,44,70,64.0],[114,44,71,64.0],[114,44,72,64.0],[114,44,73,64.0],[114,44,74,64.0],[114,44,75,64.0],[114,44,76,64.0],[114,44,77,64.0],[114,44,78,64.0],[114,44,79,64.0],[114,45,64,64.0],[114,45,65,64.0],[114,45,66,64.0],[114,45,67,64.0],[114,45,68,64.0],[114,45,69,64.0],[114,45,70,64.0],[114,45,71,64.0],[114,45,72,64.0],[114,45,73,64.0],[114,45,74,64.0],[114,45,75,64.0],[114,45,76,64.0],[114,45,77,64.0],[114,45,78,64.0],[114,45,79,64.0],[114,46,64,64.0],[114,46,65,64.0],[114,46,66,64.0],[114,46,67,64.0],[114,46,68,64.0],[114,46,69,64.0],[114,46,70,64.0],[114,46,71,64.0],[114,46,72,64.0],[114,46,73,64.0],[114,46,74,64.0],[114,46,75,64.0],[114,46,76,64.0],[114,46,77,64.0],[114,46,78,64.0],[114,46,79,64.0],[114,47,64,64.0],[114,47,65,64.0],[114,47,66,64.0],[114,47,67,64.0],[114,47,68,64.0],[114,47,69,64.0],[114,47,70,64.0],[114,47,71,64.0],[114,47,72,64.0],[114,47,73,64.0],[114,47,74,64.0],[114,47,75,64.0],[114,47,76,64.0],[114,47,77,64.0],[114,47,78,64.0],[114,47,79,64.0],[114,48,64,64.0],[114,48,65,64.0],[114,48,66,64.0],[114,48,67,64.0],[114,48,68,64.0],[114,48,69,64.0],[114,48,70,64.0],[114,48,71,64.0],[114,48,72,64.0],[114,48,73,64.0],[114,48,74,64.0],[114,48,75,64.0],[114,48,76,64.0],[114,48,77,64.0],[114,48,78,64.0],[114,48,79,64.0],[114,49,64,64.0],[114,49,65,64.0],[114,49,66,64.0],[114,49,67,64.0],[114,49,68,64.0],[114,49,69,64.0],[114,49,70,64.0],[114,49,71,64.0],[114,49,72,64.0],[114,49,73,64.0],[114,49,74,64.0],[114,49,75,64.0],[114,49,76,64.0],[114,49,77,64.0],[114,49,78,64.0],[114,49,79,64.0],[114,50,64,64.0],[114,50,65,64.0],[114,50,66,64.0],[114,50,67,64.0],[114,50,68,64.0],[114,50,69,64.0],[114,50,70,64.0],[114,50,71,64.0],[114,50,72,64.0],[114,50,73,64.0],[114,50,74,64.0],[114,50,75,64.0],[114,50,76,64.0],[114,50,77,64.0],[114,50,78,64.0],[114,50,79,64.0],[114,51,64,64.0],[114,51,65,64.0],[114,51,66,64.0],[114,51,67,64.0],[114,51,68,64.0],[114,51,69,64.0],[114,51,70,64.0],[114,51,71,64.0],[114,51,72,64.0],[114,51,73,64.0],[114,51,74,64.0],[114,51,75,64.0],[114,51,76,64.0],[114,51,77,64.0],[114,51,78,64.0],[114,51,79,64.0],[114,52,64,64.0],[114,52,65,64.0],[114,52,66,64.0],[114,52,67,64.0],[114,52,68,64.0],[114,52,69,64.0],[114,52,70,64.0],[114,52,71,64.0],[114,52,72,64.0],[114,52,73,64.0],[114,52,74,64.0],[114,52,75,64.0],[114,52,76,64.0],[114,52,77,64.0],[114,52,78,64.0],[114,52,79,64.0],[114,53,64,64.0],[114,53,65,64.0],[114,53,66,64.0],[114,53,67,64.0],[114,53,68,64.0],[114,53,69,64.0],[114,53,70,64.0],[114,53,71,64.0],[114,53,72,64.0],[114,53,73,64.0],[114,53,74,64.0],[114,53,75,64.0],[114,53,76,64.0],[114,53,77,64.0],[114,53,78,64.0],[114,53,79,64.0],[114,54,64,64.0],[114,54,65,64.0],[114,54,66,64.0],[114,54,67,64.0],[114,54,68,64.0],[114,54,69,64.0],[114,54,70,64.0],[114,54,71,64.0],[114,54,72,64.0],[114,54,73,64.0],[114,54,74,64.0],[114,54,75,64.0],[114,54,76,64.0],[114,54,77,64.0],[114,54,78,64.0],[114,54,79,64.0],[114,55,64,64.0],[114,55,65,64.0],[114,55,66,64.0],[114,55,67,64.0],[114,55,68,64.0],[114,55,69,64.0],[114,55,70,64.0],[114,55,71,64.0],[114,55,72,64.0],[114,55,73,64.0],[114,55,74,64.0],[114,55,75,64.0],[114,55,76,64.0],[114,55,77,64.0],[114,55,78,64.0],[114,55,79,64.0],[114,56,64,64.0],[114,56,65,64.0],[114,56,66,64.0],[114,56,67,64.0],[114,56,68,64.0],[114,56,69,64.0],[114,56,70,64.0],[114,56,71,64.0],[114,56,72,64.0],[114,56,73,64.0],[114,56,74,64.0],[114,56,75,64.0],[114,56,76,64.0],[114,56,77,64.0],[114,56,78,64.0],[114,56,79,64.0],[114,57,64,64.0],[114,57,65,64.0],[114,57,66,64.0],[114,57,67,64.0],[114,57,68,64.0],[114,57,69,64.0],[114,57,70,64.0],[114,57,71,64.0],[114,57,72,64.0],[114,57,73,64.0],[114,57,74,64.0],[114,57,75,64.0],[114,57,76,64.0],[114,57,77,64.0],[114,57,78,64.0],[114,57,79,64.0],[114,58,64,64.0],[114,58,65,64.0],[114,58,66,64.0],[114,58,67,64.0],[114,58,68,64.0],[114,58,69,64.0],[114,58,70,64.0],[114,58,71,64.0],[114,58,72,64.0],[114,58,73,64.0],[114,58,74,64.0],[114,58,75,64.0],[114,58,76,64.0],[114,58,77,64.0],[114,58,78,64.0],[114,58,79,64.0],[114,59,64,64.0],[114,59,65,64.0],[114,59,66,64.0],[114,59,67,64.0],[114,59,68,64.0],[114,59,69,64.0],[114,59,70,64.0],[114,59,71,64.0],[114,59,72,64.0],[114,59,73,64.0],[114,59,74,64.0],[114,59,75,64.0],[114,59,76,64.0],[114,59,77,64.0],[114,59,78,64.0],[114,59,79,64.0],[114,60,64,64.0],[114,60,65,64.0],[114,60,66,64.0],[114,60,67,64.0],[114,60,68,64.0],[114,60,69,64.0],[114,60,70,64.0],[114,60,71,64.0],[114,60,72,64.0],[114,60,73,64.0],[114,60,74,64.0],[114,60,75,64.0],[114,60,76,64.0],[114,60,77,64.0],[114,60,78,64.0],[114,60,79,64.0],[114,61,64,64.0],[114,61,65,64.0],[114,61,66,64.0],[114,61,67,64.0],[114,61,68,64.0],[114,61,69,64.0],[114,61,70,64.0],[114,61,71,64.0],[114,61,72,64.0],[114,61,73,64.0],[114,61,74,64.0],[114,61,75,64.0],[114,61,76,64.0],[114,61,77,64.0],[114,61,78,64.0],[114,61,79,64.0],[114,62,64,64.0],[114,62,65,64.0],[114,62,66,64.0],[114,62,67,64.0],[114,62,68,64.0],[114,62,69,64.0],[114,62,70,64.0],[114,62,71,64.0],[114,62,72,64.0],[114,62,73,64.0],[114,62,74,64.0],[114,62,75,64.0],[114,62,76,64.0],[114,62,77,64.0],[114,62,78,64.0],[114,62,79,64.0],[114,63,64,64.0],[114,63,65,64.0],[114,63,66,64.0],[114,63,67,64.0],[114,63,68,64.0],[114,63,69,64.0],[114,63,70,64.0],[114,63,71,64.0],[114,63,72,64.0],[114,63,73,64.0],[114,63,74,64.0],[114,63,75,64.0],[114,63,76,64.0],[114,63,77,64.0],[114,63,78,64.0],[114,63,79,64.0],[114,64,64,64.0],[114,64,65,64.0],[114,64,66,64.0],[114,64,67,64.0],[114,64,68,64.0],[114,64,69,64.0],[114,64,70,64.0],[114,64,71,64.0],[114,64,72,64.0],[114,64,73,64.0],[114,64,74,64.0],[114,64,75,64.0],[114,64,76,64.0],[114,64,77,64.0],[114,64,78,64.0],[114,64,79,64.0],[114,65,64,64.0],[114,65,65,64.0],[114,65,66,64.0],[114,65,67,64.0],[114,65,68,64.0],[114,65,69,64.0],[114,65,70,64.0],[114,65,71,64.0],[114,65,72,64.0],[114,65,73,64.0],[114,65,74,64.0],[114,65,75,64.0],[114,65,76,64.0],[114,65,77,64.0],[114,65,78,64.0],[114,65,79,64.0],[114,66,64,64.0],[114,66,65,64.0],[114,66,66,64.0],[114,66,67,64.0],[114,66,68,64.0],[114,66,69,64.0],[114,66,70,64.0],[114,66,71,64.0],[114,66,72,64.0],[114,66,73,64.0],[114,66,74,64.0],[114,66,75,64.0],[114,66,76,64.0],[114,66,77,64.0],[114,66,78,64.0],[114,66,79,64.0],[114,67,64,64.0],[114,67,65,64.0],[114,67,66,64.0],[114,67,67,64.0],[114,67,68,64.0],[114,67,69,64.0],[114,67,70,64.0],[114,67,71,64.0],[114,67,72,64.0],[114,67,73,64.0],[114,67,74,64.0],[114,67,75,64.0],[114,67,76,64.0],[114,67,77,64.0],[114,67,78,64.0],[114,67,79,64.0],[114,68,64,64.0],[114,68,65,64.0],[114,68,66,64.0],[114,68,67,64.0],[114,68,68,64.0],[114,68,69,64.0],[114,68,70,64.0],[114,68,71,64.0],[114,68,72,64.0],[114,68,73,64.0],[114,68,74,64.0],[114,68,75,64.0],[114,68,76,64.0],[114,68,77,64.0],[114,68,78,64.0],[114,68,79,64.0],[114,69,64,64.0],[114,69,65,64.0],[114,69,66,64.0],[114,69,67,64.0],[114,69,68,64.0],[114,69,69,64.0],[114,69,70,64.0],[114,69,71,64.0],[114,69,72,64.0],[114,69,73,64.0],[114,69,74,64.0],[114,69,75,64.0],[114,69,76,64.0],[114,69,77,64.0],[114,69,78,64.0],[114,69,79,64.0],[114,70,64,64.0],[114,70,65,64.0],[114,70,66,64.0],[114,70,67,64.0],[114,70,68,64.0],[114,70,69,64.0],[114,70,70,64.0],[114,70,71,64.0],[114,70,72,64.0],[114,70,73,64.0],[114,70,74,64.0],[114,70,75,64.0],[114,70,76,64.0],[114,70,77,64.0],[114,70,78,64.0],[114,70,79,64.0],[114,71,64,64.0],[114,71,65,64.0],[114,71,66,64.0],[114,71,67,64.0],[114,71,68,64.0],[114,71,69,64.0],[114,71,70,64.0],[114,71,71,64.0],[114,71,72,64.0],[114,71,73,64.0],[114,71,74,64.0],[114,71,75,64.0],[114,71,76,64.0],[114,71,77,64.0],[114,71,78,64.0],[114,71,79,64.0],[114,72,64,64.0],[114,72,65,64.0],[114,72,66,64.0],[114,72,67,64.0],[114,72,68,64.0],[114,72,69,64.0],[114,72,70,64.0],[114,72,71,64.0],[114,72,72,64.0],[114,72,73,64.0],[114,72,74,64.0],[114,72,75,64.0],[114,72,76,64.0],[114,72,77,64.0],[114,72,78,64.0],[114,72,79,64.0],[114,73,64,64.0],[114,73,65,64.0],[114,73,66,64.0],[114,73,67,64.0],[114,73,68,64.0],[114,73,69,64.0],[114,73,70,64.0],[114,73,71,64.0],[114,73,72,64.0],[114,73,73,64.0],[114,73,74,64.0],[114,73,75,64.0],[114,73,76,64.0],[114,73,77,64.0],[114,73,78,64.0],[114,73,79,64.0],[114,74,64,64.0],[114,74,65,64.0],[114,74,66,64.0],[114,74,67,64.0],[114,74,68,64.0],[114,74,69,64.0],[114,74,70,64.0],[114,74,71,64.0],[114,74,72,64.0],[114,74,73,64.0],[114,74,74,64.0],[114,74,75,64.0],[114,74,76,64.0],[114,74,77,64.0],[114,74,78,64.0],[114,74,79,64.0],[114,75,64,64.0],[114,75,65,64.0],[114,75,66,64.0],[114,75,67,64.0],[114,75,68,64.0],[114,75,69,64.0],[114,75,70,64.0],[114,75,71,64.0],[114,75,72,64.0],[114,75,73,64.0],[114,75,74,64.0],[114,75,75,64.0],[114,75,76,64.0],[114,75,77,64.0],[114,75,78,64.0],[114,75,79,64.0],[114,76,64,64.0],[114,76,65,64.0],[114,76,66,64.0],[114,76,67,64.0],[114,76,68,64.0],[114,76,69,64.0],[114,76,70,64.0],[114,76,71,64.0],[114,76,72,64.0],[114,76,73,64.0],[114,76,74,64.0],[114,76,75,64.0],[114,76,76,64.0],[114,76,77,64.0],[114,76,78,64.0],[114,76,79,64.0],[114,77,64,64.0],[114,77,65,64.0],[114,77,66,64.0],[114,77,67,64.0],[114,77,68,64.0],[114,77,69,64.0],[114,77,70,64.0],[114,77,71,64.0],[114,77,72,64.0],[114,77,73,64.0],[114,77,74,64.0],[114,77,75,64.0],[114,77,76,64.0],[114,77,77,64.0],[114,77,78,64.0],[114,77,79,64.0],[114,78,64,64.0],[114,78,65,64.0],[114,78,66,64.0],[114,78,67,64.0],[114,78,68,64.0],[114,78,69,64.0],[114,78,70,64.0],[114,78,71,64.0],[114,78,72,64.0],[114,78,73,64.0],[114,78,74,64.0],[114,78,75,64.0],[114,78,76,64.0],[114,78,77,64.0],[114,78,78,64.0],[114,78,79,64.0],[114,79,64,64.0],[114,79,65,64.0],[114,79,66,64.0],[114,79,67,64.0],[114,79,68,64.0],[114,79,69,64.0],[114,79,70,64.0],[114,79,71,64.0],[114,79,72,64.0],[114,79,73,64.0],[114,79,74,64.0],[114,79,75,64.0],[114,79,76,64.0],[114,79,77,64.0],[114,79,78,64.0],[114,79,79,64.0],[114,80,64,64.0],[114,80,65,64.0],[114,80,66,64.0],[114,80,67,64.0],[114,80,68,64.0],[114,80,69,64.0],[114,80,70,64.0],[114,80,71,64.0],[114,80,72,64.0],[114,80,73,64.0],[114,80,74,64.0],[114,80,75,64.0],[114,80,76,64.0],[114,80,77,64.0],[114,80,78,64.0],[114,80,79,64.0],[114,81,64,64.0],[114,81,65,64.0],[114,81,66,64.0],[114,81,67,64.0],[114,81,68,64.0],[114,81,69,64.0],[114,81,70,64.0],[114,81,71,64.0],[114,81,72,64.0],[114,81,73,64.0],[114,81,74,64.0],[114,81,75,64.0],[114,81,76,64.0],[114,81,77,64.0],[114,81,78,64.0],[114,81,79,64.0],[114,82,64,64.0],[114,82,65,64.0],[114,82,66,64.0],[114,82,67,64.0],[114,82,68,64.0],[114,82,69,64.0],[114,82,70,64.0],[114,82,71,64.0],[114,82,72,64.0],[114,82,73,64.0],[114,82,74,64.0],[114,82,75,64.0],[114,82,76,64.0],[114,82,77,64.0],[114,82,78,64.0],[114,82,79,64.0],[114,83,64,64.0],[114,83,65,64.0],[114,83,66,64.0],[114,83,67,64.0],[114,83,68,64.0],[114,83,69,64.0],[114,83,70,64.0],[114,83,71,64.0],[114,83,72,64.0],[114,83,73,64.0],[114,83,74,64.0],[114,83,75,64.0],[114,83,76,64.0],[114,83,77,64.0],[114,83,78,64.0],[114,83,79,64.0],[114,84,64,64.0],[114,84,65,64.0],[114,84,66,64.0],[114,84,67,64.0],[114,84,68,64.0],[114,84,69,64.0],[114,84,70,64.0],[114,84,71,64.0],[114,84,72,64.0],[114,84,73,64.0],[114,84,74,64.0],[114,84,75,64.0],[114,84,76,64.0],[114,84,77,64.0],[114,84,78,64.0],[114,84,79,64.0],[114,85,64,64.0],[114,85,65,64.0],[114,85,66,64.0],[114,85,67,64.0],[114,85,68,64.0],[114,85,69,64.0],[114,85,70,64.0],[114,85,71,64.0],[114,85,72,64.0],[114,85,73,64.0],[114,85,74,64.0],[114,85,75,64.0],[114,85,76,64.0],[114,85,77,64.0],[114,85,78,64.0],[114,85,79,64.0],[114,86,64,64.0],[114,86,65,64.0],[114,86,66,64.0],[114,86,67,64.0],[114,86,68,64.0],[114,86,69,64.0],[114,86,70,64.0],[114,86,71,64.0],[114,86,72,64.0],[114,86,73,64.0],[114,86,74,64.0],[114,86,75,64.0],[114,86,76,64.0],[114,86,77,64.0],[114,86,78,64.0],[114,86,79,64.0],[114,87,64,64.0],[114,87,65,64.0],[114,87,66,64.0],[114,87,67,64.0],[114,87,68,64.0],[114,87,69,64.0],[114,87,70,64.0],[114,87,71,64.0],[114,87,72,64.0],[114,87,73,64.0],[114,87,74,64.0],[114,87,75,64.0],[114,87,76,64.0],[114,87,77,64.0],[114,87,78,64.0],[114,87,79,64.0],[114,88,64,64.0],[114,88,65,64.0],[114,88,66,64.0],[114,88,67,64.0],[114,88,68,64.0],[114,88,69,64.0],[114,88,70,64.0],[114,88,71,64.0],[114,88,72,64.0],[114,88,73,64.0],[114,88,74,64.0],[114,88,75,64.0],[114,88,76,64.0],[114,88,77,64.0],[114,88,78,64.0],[114,88,79,64.0],[114,89,64,64.0],[114,89,65,64.0],[114,89,66,64.0],[114,89,67,64.0],[114,89,68,64.0],[114,89,69,64.0],[114,89,70,64.0],[114,89,71,64.0],[114,89,72,64.0],[114,89,73,64.0],[114,89,74,64.0],[114,89,75,64.0],[114,89,76,64.0],[114,89,77,64.0],[114,89,78,64.0],[114,89,79,64.0],[114,90,64,64.0],[114,90,65,64.0],[114,90,66,64.0],[114,90,67,64.0],[114,90,68,64.0],[114,90,69,64.0],[114,90,70,64.0],[114,90,71,64.0],[114,90,72,64.0],[114,90,73,64.0],[114,90,74,64.0],[114,90,75,64.0],[114,90,76,64.0],[114,90,77,64.0],[114,90,78,64.0],[114,90,79,64.0],[114,91,64,64.0],[114,91,65,64.0],[114,91,66,64.0],[114,91,67,64.0],[114,91,68,64.0],[114,91,69,64.0],[114,91,70,64.0],[114,91,71,64.0],[114,91,72,64.0],[114,91,73,64.0],[114,91,74,64.0],[114,91,75,64.0],[114,91,76,64.0],[114,91,77,64.0],[114,91,78,64.0],[114,91,79,64.0],[114,92,64,64.0],[114,92,65,64.0],[114,92,66,64.0],[114,92,67,64.0],[114,92,68,64.0],[114,92,69,64.0],[114,92,70,64.0],[114,92,71,64.0],[114,92,72,64.0],[114,92,73,64.0],[114,92,74,64.0],[114,92,75,64.0],[114,92,76,64.0],[114,92,77,64.0],[114,92,78,64.0],[114,92,79,64.0],[114,93,64,64.0],[114,93,65,64.0],[114,93,66,64.0],[114,93,67,64.0],[114,93,68,64.0],[114,93,69,64.0],[114,93,70,64.0],[114,93,71,64.0],[114,93,72,64.0],[114,93,73,64.0],[114,93,74,64.0],[114,93,75,64.0],[114,93,76,64.0],[114,93,77,64.0],[114,93,78,64.0],[114,93,79,64.0],[114,94,64,64.0],[114,94,65,64.0],[114,94,66,64.0],[114,94,67,64.0],[114,94,68,64.0],[114,94,69,64.0],[114,94,70,64.0],[114,94,71,64.0],[114,94,72,64.0],[114,94,73,64.0],[114,94,74,64.0],[114,94,75,64.0],[114,94,76,64.0],[114,94,77,64.0],[114,94,78,64.0],[114,94,79,64.0],[114,95,64,64.0],[114,95,65,64.0],[114,95,66,64.0],[114,95,67,64.0],[114,95,68,64.0],[114,95,69,64.0],[114,95,70,64.0],[114,95,71,64.0],[114,95,72,64.0],[114,95,73,64.0],[114,95,74,64.0],[114,95,75,64.0],[114,95,76,64.0],[114,95,77,64.0],[114,95,78,64.0],[114,95,79,64.0],[114,96,64,64.0],[114,96,65,64.0],[114,96,66,64.0],[114,96,67,64.0],[114,96,68,64.0],[114,96,69,64.0],[114,96,70,64.0],[114,96,71,64.0],[114,96,72,64.0],[114,96,73,64.0],[114,96,74,64.0],[114,96,75,64.0],[114,96,76,64.0],[114,96,77,64.0],[114,96,78,64.0],[114,96,79,64.0],[114,97,64,64.0],[114,97,65,64.0],[114,97,66,64.0],[114,97,67,64.0],[114,97,68,64.0],[114,97,69,64.0],[114,97,70,64.0],[114,97,71,64.0],[114,97,72,64.0],[114,97,73,64.0],[114,97,74,64.0],[114,97,75,64.0],[114,97,76,64.0],[114,97,77,64.0],[114,97,78,64.0],[114,97,79,64.0],[114,98,64,64.0],[114,98,65,64.0],[114,98,66,64.0],[114,98,67,64.0],[114,98,68,64.0],[114,98,69,64.0],[114,98,70,64.0],[114,98,71,64.0],[114,98,72,64.0],[114,98,73,64.0],[114,98,74,64.0],[114,98,75,64.0],[114,98,76,64.0],[114,98,77,64.0],[114,98,78,64.0],[114,98,79,64.0],[114,99,64,64.0],[114,99,65,64.0],[114,99,66,64.0],[114,99,67,64.0],[114,99,68,64.0],[114,99,69,64.0],[114,99,70,64.0],[114,99,71,64.0],[114,99,72,64.0],[114,99,73,64.0],[114,99,74,64.0],[114,99,75,64.0],[114,99,76,64.0],[114,99,77,64.0],[114,99,78,64.0],[114,99,79,64.0],[114,100,64,64.0],[114,100,65,64.0],[114,100,66,64.0],[114,100,67,64.0],[114,100,68,64.0],[114,100,69,64.0],[114,100,70,64.0],[114,100,71,64.0],[114,100,72,64.0],[114,100,73,64.0],[114,100,74,64.0],[114,100,75,64.0],[114,100,76,64.0],[114,100,77,64.0],[114,100,78,64.0],[114,100,79,64.0],[114,101,64,64.0],[114,101,65,64.0],[114,101,66,64.0],[114,101,67,64.0],[114,101,68,64.0],[114,101,69,64.0],[114,101,70,64.0],[114,101,71,64.0],[114,101,72,64.0],[114,101,73,64.0],[114,101,74,64.0],[114,101,75,64.0],[114,101,76,64.0],[114,101,77,64.0],[114,101,78,64.0],[114,101,79,64.0],[114,102,64,64.0],[114,102,65,64.0],[114,102,66,64.0],[114,102,67,64.0],[114,102,68,64.0],[114,102,69,64.0],[114,102,70,64.0],[114,102,71,64.0],[114,102,72,64.0],[114,102,73,64.0],[114,102,74,64.0],[114,102,75,64.0],[114,102,76,64.0],[114,102,77,64.0],[114,102,78,64.0],[114,102,79,64.0],[114,103,64,64.0],[114,103,65,64.0],[114,103,66,64.0],[114,103,67,64.0],[114,103,68,64.0],[114,103,69,64.0],[114,103,70,64.0],[114,103,71,64.0],[114,103,72,64.0],[114,103,73,64.0],[114,103,74,64.0],[114,103,75,64.0],[114,103,76,64.0],[114,103,77,64.0],[114,103,78,64.0],[114,103,79,64.0],[114,104,64,64.0],[114,104,65,64.0],[114,104,66,64.0],[114,104,67,64.0],[114,104,68,64.0],[114,104,69,64.0],[114,104,70,64.0],[114,104,71,64.0],[114,104,72,64.0],[114,104,73,64.0],[114,104,74,64.0],[114,104,75,64.0],[114,104,76,64.0],[114,104,77,64.0],[114,104,78,64.0],[114,104,79,64.0],[114,105,64,64.0],[114,105,65,64.0],[114,105,66,64.0],[114,105,67,64.0],[114,105,68,64.0],[114,105,69,64.0],[114,105,70,64.0],[114,105,71,64.0],[114,105,72,64.0],[114,105,73,64.0],[114,105,74,64.0],[114,105,75,64.0],[114,105,76,64.0],[114,105,77,64.0],[114,105,78,64.0],[114,105,79,64.0],[114,106,64,64.0],[114,106,65,64.0],[114,106,66,64.0],[114,106,67,64.0],[114,106,68,64.0],[114,106,69,64.0],[114,106,70,64.0],[114,106,71,64.0],[114,106,72,64.0],[114,106,73,64.0],[114,106,74,64.0],[114,106,75,64.0],[114,106,76,64.0],[114,106,77,64.0],[114,106,78,64.0],[114,106,79,64.0],[114,107,64,64.0],[114,107,65,64.0],[114,107,66,64.0],[114,107,67,64.0],[114,107,68,64.0],[114,107,69,64.0],[114,107,70,64.0],[114,107,71,64.0],[114,107,72,64.0],[114,107,73,64.0],[114,107,74,64.0],[114,107,75,64.0],[114,107,76,64.0],[114,107,77,64.0],[114,107,78,64.0],[114,107,79,64.0],[114,108,64,64.0],[114,108,65,64.0],[114,108,66,64.0],[114,108,67,64.0],[114,108,68,64.0],[114,108,69,64.0],[114,108,70,64.0],[114,108,71,64.0],[114,108,72,64.0],[114,108,73,64.0],[114,108,74,64.0],[114,108,75,64.0],[114,108,76,64.0],[114,108,77,64.0],[114,108,78,64.0],[114,108,79,64.0],[114,109,64,64.0],[114,109,65,64.0],[114,109,66,64.0],[114,109,67,64.0],[114,109,68,64.0],[114,109,69,64.0],[114,109,70,64.0],[114,109,71,64.0],[114,109,72,64.0],[114,109,73,64.0],[114,109,74,64.0],[114,109,75,64.0],[114,109,76,64.0],[114,109,77,64.0],[114,109,78,64.0],[114,109,79,64.0],[114,110,64,64.0],[114,110,65,64.0],[114,110,66,64.0],[114,110,67,64.0],[114,110,68,64.0],[114,110,69,64.0],[114,110,70,64.0],[114,110,71,64.0],[114,110,72,64.0],[114,110,73,64.0],[114,110,74,64.0],[114,110,75,64.0],[114,110,76,64.0],[114,110,77,64.0],[114,110,78,64.0],[114,110,79,64.0],[114,111,64,64.0],[114,111,65,64.0],[114,111,66,64.0],[114,111,67,64.0],[114,111,68,64.0],[114,111,69,64.0],[114,111,70,64.0],[114,111,71,64.0],[114,111,72,64.0],[114,111,73,64.0],[114,111,74,64.0],[114,111,75,64.0],[114,111,76,64.0],[114,111,77,64.0],[114,111,78,64.0],[114,111,79,64.0],[114,112,64,64.0],[114,112,65,64.0],[114,112,66,64.0],[114,112,67,64.0],[114,112,68,64.0],[114,112,69,64.0],[114,112,70,64.0],[114,112,71,64.0],[114,112,72,64.0],[114,112,73,64.0],[114,112,74,64.0],[114,112,75,64.0],[114,112,76,64.0],[114,112,77,64.0],[114,112,78,64.0],[114,112,79,64.0],[114,113,64,64.0],[114,113,65,64.0],[114,113,66,64.0],[114,113,67,64.0],[114,113,68,64.0],[114,113,69,64.0],[114,113,70,64.0],[114,113,71,64.0],[114,113,72,64.0],[114,113,73,64.0],[114,113,74,64.0],[114,113,75,64.0],[114,113,76,64.0],[114,113,77,64.0],[114,113,78,64.0],[114,113,79,64.0],[114,114,64,64.0],[114,114,65,64.0],[114,114,66,64.0],[114,114,67,64.0],[114,114,68,64.0],[114,114,69,64.0],[114,114,70,64.0],[114,114,71,64.0],[114,114,72,64.0],[114,114,73,64.0],[114,114,74,64.0],[114,114,75,64.0],[114,114,76,64.0],[114,114,77,64.0],[114,114,78,64.0],[114,114,79,64.0],[114,115,64,64.0],[114,115,65,64.0],[114,115,66,64.0],[114,115,67,64.0],[114,115,68,64.0],[114,115,69,64.0],[114,115,70,64.0],[114,115,71,64.0],[114,115,72,64.0],[114,115,73,64.0],[114,115,74,64.0],[114,115,75,64.0],[114,115,76,64.0],[114,115,77,64.0],[114,115,78,64.0],[114,115,79,64.0],[114,116,64,64.0],[114,116,65,64.0],[114,116,66,64.0],[114,116,67,64.0],[114,116,68,64.0],[114,116,69,64.0],[114,116,70,64.0],[114,116,71,64.0],[114,116,72,64.0],[114,116,73,64.0],[114,116,74,64.0],[114,116,75,64.0],[114,116,76,64.0],[114,116,77,64.0],[114,116,78,64.0],[114,116,79,64.0],[114,117,64,64.0],[114,117,65,64.0],[114,117,66,64.0],[114,117,67,64.0],[114,117,68,64.0],[114,117,69,64.0],[114,117,70,64.0],[114,117,71,64.0],[114,117,72,64.0],[114,117,73,64.0],[114,117,74,64.0],[114,117,75,64.0],[114,117,76,64.0],[114,117,77,64.0],[114,117,78,64.0],[114,117,79,64.0],[114,118,64,64.0],[114,118,65,64.0],[114,118,66,64.0],[114,118,67,64.0],[114,118,68,64.0],[114,118,69,64.0],[114,118,70,64.0],[114,118,71,64.0],[114,118,72,64.0],[114,118,73,64.0],[114,118,74,64.0],[114,118,75,64.0],[114,118,76,64.0],[114,118,77,64.0],[114,118,78,64.0],[114,118,79,64.0],[114,119,64,64.0],[114,119,65,64.0],[114,119,66,64.0],[114,119,67,64.0],[114,119,68,64.0],[114,119,69,64.0],[114,119,70,64.0],[114,119,71,64.0],[114,119,72,64.0],[114,119,73,64.0],[114,119,74,64.0],[114,119,75,64.0],[114,119,76,64.0],[114,119,77,64.0],[114,119,78,64.0],[114,119,79,64.0],[114,120,64,64.0],[114,120,65,64.0],[114,120,66,64.0],[114,120,67,64.0],[114,120,68,64.0],[114,120,69,64.0],[114,120,70,64.0],[114,120,71,64.0],[114,120,72,64.0],[114,120,73,64.0],[114,120,74,64.0],[114,120,75,64.0],[114,120,76,64.0],[114,120,77,64.0],[114,120,78,64.0],[114,120,79,64.0],[114,121,64,64.0],[114,121,65,64.0],[114,121,66,64.0],[114,121,67,64.0],[114,121,68,64.0],[114,121,69,64.0],[114,121,70,64.0],[114,121,71,64.0],[114,121,72,64.0],[114,121,73,64.0],[114,121,74,64.0],[114,121,75,64.0],[114,121,76,64.0],[114,121,77,64.0],[114,121,78,64.0],[114,121,79,64.0],[114,122,64,64.0],[114,122,65,64.0],[114,122,66,64.0],[114,122,67,64.0],[114,122,68,64.0],[114,122,69,64.0],[114,122,70,64.0],[114,122,71,64.0],[114,122,72,64.0],[114,122,73,64.0],[114,122,74,64.0],[114,122,75,64.0],[114,122,76,64.0],[114,122,77,64.0],[114,122,78,64.0],[114,122,79,64.0],[114,123,64,64.0],[114,123,65,64.0],[114,123,66,64.0],[114,123,67,64.0],[114,123,68,64.0],[114,123,69,64.0],[114,123,70,64.0],[114,123,71,64.0],[114,123,72,64.0],[114,123,73,64.0],[114,123,74,64.0],[114,123,75,64.0],[114,123,76,64.0],[114,123,77,64.0],[114,123,78,64.0],[114,123,79,64.0],[114,124,64,64.0],[114,124,65,64.0],[114,124,66,64.0],[114,124,67,64.0],[114,124,68,64.0],[114,124,69,64.0],[114,124,70,64.0],[114,124,71,64.0],[114,124,72,64.0],[114,124,73,64.0],[114,124,74,64.0],[114,124,75,64.0],[114,124,76,64.0],[114,124,77,64.0],[114,124,78,64.0],[114,124,79,64.0],[114,125,64,64.0],[114,125,65,64.0],[114,125,66,64.0],[114,125,67,64.0],[114,125,68,64.0],[114,125,69,64.0],[114,125,70,64.0],[114,125,71,64.0],[114,125,72,64.0],[114,125,73,64.0],[114,125,74,64.0],[114,125,75,64.0],[114,125,76,64.0],[114,125,77,64.0],[114,125,78,64.0],[114,125,79,64.0],[114,126,64,64.0],[114,126,65,64.0],[114,126,66,64.0],[114,126,67,64.0],[114,126,68,64.0],[114,126,69,64.0],[114,126,70,64.0],[114,126,71,64.0],[114,126,72,64.0],[114,126,73,64.0],[114,126,74,64.0],[114,126,75,64.0],[114,126,76,64.0],[114,126,77,64.0],[114,126,78,64.0],[114,126,79,64.0],[114,127,64,64.0],[114,127,65,64.0],[114,127,66,64.0],[114,127,67,64.0],[114,127,68,64.0],[114,127,69,64.0],[114,127,70,64.0],[114,127,71,64.0],[114,127,72,64.0],[114,127,73,64.0],[114,127,74,64.0],[114,127,75,64.0],[114,127,76,64.0],[114,127,77,64.0],[114,127,78,64.0],[114,127,79,64.0],[114,128,64,64.0],[114,128,65,64.0],[114,128,66,64.0],[114,128,67,64.0],[114,128,68,64.0],[114,128,69,64.0],[114,128,70,64.0],[114,128,71,64.0],[114,128,72,64.0],[114,128,73,64.0],[114,128,74,64.0],[114,128,75,64.0],[114,128,76,64.0],[114,128,77,64.0],[114,128,78,64.0],[114,128,79,64.0],[114,129,64,64.0],[114,129,65,64.0],[114,129,66,64.0],[114,129,67,64.0],[114,129,68,64.0],[114,129,69,64.0],[114,129,70,64.0],[114,129,71,64.0],[114,129,72,64.0],[114,129,73,64.0],[114,129,74,64.0],[114,129,75,64.0],[114,129,76,64.0],[114,129,77,64.0],[114,129,78,64.0],[114,129,79,64.0],[114,130,64,64.0],[114,130,65,64.0],[114,130,66,64.0],[114,130,67,64.0],[114,130,68,64.0],[114,130,69,64.0],[114,130,70,64.0],[114,130,71,64.0],[114,130,72,64.0],[114,130,73,64.0],[114,130,74,64.0],[114,130,75,64.0],[114,130,76,64.0],[114,130,77,64.0],[114,130,78,64.0],[114,130,79,64.0],[114,131,64,64.0],[114,131,65,64.0],[114,131,66,64.0],[114,131,67,64.0],[114,131,68,64.0],[114,131,69,64.0],[114,131,70,64.0],[114,131,71,64.0],[114,131,72,64.0],[114,131,73,64.0],[114,131,74,64.0],[114,131,75,64.0],[114,131,76,64.0],[114,131,77,64.0],[114,131,78,64.0],[114,131,79,64.0],[114,132,64,64.0],[114,132,65,64.0],[114,132,66,64.0],[114,132,67,64.0],[114,132,68,64.0],[114,132,69,64.0],[114,132,70,64.0],[114,132,71,64.0],[114,132,72,64.0],[114,132,73,64.0],[114,132,74,64.0],[114,132,75,64.0],[114,132,76,64.0],[114,132,77,64.0],[114,132,78,64.0],[114,132,79,64.0],[114,133,64,64.0],[114,133,65,64.0],[114,133,66,64.0],[114,133,67,64.0],[114,133,68,64.0],[114,133,69,64.0],[114,133,70,64.0],[114,133,71,64.0],[114,133,72,64.0],[114,133,73,64.0],[114,133,74,64.0],[114,133,75,64.0],[114,133,76,64.0],[114,133,77,64.0],[114,133,78,64.0],[114,133,79,64.0],[114,134,64,64.0],[114,134,65,64.0],[114,134,66,64.0],[114,134,67,64.0],[114,134,68,64.0],[114,134,69,64.0],[114,134,70,64.0],[114,134,71,64.0],[114,134,72,64.0],[114,134,73,64.0],[114,134,74,64.0],[114,134,75,64.0],[114,134,76,64.0],[114,134,77,64.0],[114,134,78,64.0],[114,134,79,64.0],[114,135,64,64.0],[114,135,65,64.0],[114,135,66,64.0],[114,135,67,64.0],[114,135,68,64.0],[114,135,69,64.0],[114,135,70,64.0],[114,135,71,64.0],[114,135,72,64.0],[114,135,73,64.0],[114,135,74,64.0],[114,135,75,64.0],[114,135,76,64.0],[114,135,77,64.0],[114,135,78,64.0],[114,135,79,64.0],[114,136,64,64.0],[114,136,65,64.0],[114,136,66,64.0],[114,136,67,64.0],[114,136,68,64.0],[114,136,69,64.0],[114,136,70,64.0],[114,136,71,64.0],[114,136,72,64.0],[114,136,73,64.0],[114,136,74,64.0],[114,136,75,64.0],[114,136,76,64.0],[114,136,77,64.0],[114,136,78,64.0],[114,136,79,64.0],[114,137,64,64.0],[114,137,65,64.0],[114,137,66,64.0],[114,137,67,64.0],[114,137,68,64.0],[114,137,69,64.0],[114,137,70,64.0],[114,137,71,64.0],[114,137,72,64.0],[114,137,73,64.0],[114,137,74,64.0],[114,137,75,64.0],[114,137,76,64.0],[114,137,77,64.0],[114,137,78,64.0],[114,137,79,64.0],[114,138,64,64.0],[114,138,65,64.0],[114,138,66,64.0],[114,138,67,64.0],[114,138,68,64.0],[114,138,69,64.0],[114,138,70,64.0],[114,138,71,64.0],[114,138,72,64.0],[114,138,73,64.0],[114,138,74,64.0],[114,138,75,64.0],[114,138,76,64.0],[114,138,77,64.0],[114,138,78,64.0],[114,138,79,64.0],[114,139,64,64.0],[114,139,65,64.0],[114,139,66,64.0],[114,139,67,64.0],[114,139,68,64.0],[114,139,69,64.0],[114,139,70,64.0],[114,139,71,64.0],[114,139,72,64.0],[114,139,73,64.0],[114,139,74,64.0],[114,139,75,64.0],[114,139,76,64.0],[114,139,77,64.0],[114,139,78,64.0],[114,139,79,64.0],[114,140,64,64.0],[114,140,65,64.0],[114,140,66,64.0],[114,140,67,64.0],[114,140,68,64.0],[114,140,69,64.0],[114,140,70,64.0],[114,140,71,64.0],[114,140,72,64.0],[114,140,73,64.0],[114,140,74,64.0],[114,140,75,64.0],[114,140,76,64.0],[114,140,77,64.0],[114,140,78,64.0],[114,140,79,64.0],[114,141,64,64.0],[114,141,65,64.0],[114,141,66,64.0],[114,141,67,64.0],[114,141,68,64.0],[114,141,69,64.0],[114,141,70,64.0],[114,141,71,64.0],[114,141,72,64.0],[114,141,73,64.0],[114,141,74,64.0],[114,141,75,64.0],[114,141,76,64.0],[114,141,77,64.0],[114,141,78,64.0],[114,141,79,64.0],[114,142,64,64.0],[114,142,65,64.0],[114,142,66,64.0],[114,142,67,64.0],[114,142,68,64.0],[114,142,69,64.0],[114,142,70,64.0],[114,142,71,64.0],[114,142,72,64.0],[114,142,73,64.0],[114,142,74,64.0],[114,142,75,64.0],[114,142,76,64.0],[114,142,77,64.0],[114,142,78,64.0],[114,142,79,64.0],[114,143,64,64.0],[114,143,65,64.0],[114,143,66,64.0],[114,143,67,64.0],[114,143,68,64.0],[114,143,69,64.0],[114,143,70,64.0],[114,143,71,64.0],[114,143,72,64.0],[114,143,73,64.0],[114,143,74,64.0],[114,143,75,64.0],[114,143,76,64.0],[114,143,77,64.0],[114,143,78,64.0],[114,143,79,64.0],[114,144,64,64.0],[114,144,65,64.0],[114,144,66,64.0],[114,144,67,64.0],[114,144,68,64.0],[114,144,69,64.0],[114,144,70,64.0],[114,144,71,64.0],[114,144,72,64.0],[114,144,73,64.0],[114,144,74,64.0],[114,144,75,64.0],[114,144,76,64.0],[114,144,77,64.0],[114,144,78,64.0],[114,144,79,64.0],[114,145,64,64.0],[114,145,65,64.0],[114,145,66,64.0],[114,145,67,64.0],[114,145,68,64.0],[114,145,69,64.0],[114,145,70,64.0],[114,145,71,64.0],[114,145,72,64.0],[114,145,73,64.0],[114,145,74,64.0],[114,145,75,64.0],[114,145,76,64.0],[114,145,77,64.0],[114,145,78,64.0],[114,145,79,64.0],[114,146,64,64.0],[114,146,65,64.0],[114,146,66,64.0],[114,146,67,64.0],[114,146,68,64.0],[114,146,69,64.0],[114,146,70,64.0],[114,146,71,64.0],[114,146,72,64.0],[114,146,73,64.0],[114,146,74,64.0],[114,146,75,64.0],[114,146,76,64.0],[114,146,77,64.0],[114,146,78,64.0],[114,146,79,64.0],[114,147,64,64.0],[114,147,65,64.0],[114,147,66,64.0],[114,147,67,64.0],[114,147,68,64.0],[114,147,69,64.0],[114,147,70,64.0],[114,147,71,64.0],[114,147,72,64.0],[114,147,73,64.0],[114,147,74,64.0],[114,147,75,64.0],[114,147,76,64.0],[114,147,77,64.0],[114,147,78,64.0],[114,147,79,64.0],[114,148,64,64.0],[114,148,65,64.0],[114,148,66,64.0],[114,148,67,64.0],[114,148,68,64.0],[114,148,69,64.0],[114,148,70,64.0],[114,148,71,64.0],[114,148,72,64.0],[114,148,73,64.0],[114,148,74,64.0],[114,148,75,64.0],[114,148,76,64.0],[114,148,77,64.0],[114,148,78,64.0],[114,148,79,64.0],[114,149,64,64.0],[114,149,65,64.0],[114,149,66,64.0],[114,149,67,64.0],[114,149,68,64.0],[114,149,69,64.0],[114,149,70,64.0],[114,149,71,64.0],[114,149,72,64.0],[114,149,73,64.0],[114,149,74,64.0],[114,149,75,64.0],[114,149,76,64.0],[114,149,77,64.0],[114,149,78,64.0],[114,149,79,64.0],[114,150,64,64.0],[114,150,65,64.0],[114,150,66,64.0],[114,150,67,64.0],[114,150,68,64.0],[114,150,69,64.0],[114,150,70,64.0],[114,150,71,64.0],[114,150,72,64.0],[114,150,73,64.0],[114,150,74,64.0],[114,150,75,64.0],[114,150,76,64.0],[114,150,77,64.0],[114,150,78,64.0],[114,150,79,64.0],[114,151,64,64.0],[114,151,65,64.0],[114,151,66,64.0],[114,151,67,64.0],[114,151,68,64.0],[114,151,69,64.0],[114,151,70,64.0],[114,151,71,64.0],[114,151,72,64.0],[114,151,73,64.0],[114,151,74,64.0],[114,151,75,64.0],[114,151,76,64.0],[114,151,77,64.0],[114,151,78,64.0],[114,151,79,64.0],[114,152,64,64.0],[114,152,65,64.0],[114,152,66,64.0],[114,152,67,64.0],[114,152,68,64.0],[114,152,69,64.0],[114,152,70,64.0],[114,152,71,64.0],[114,152,72,64.0],[114,152,73,64.0],[114,152,74,64.0],[114,152,75,64.0],[114,152,76,64.0],[114,152,77,64.0],[114,152,78,64.0],[114,152,79,64.0],[114,153,64,64.0],[114,153,65,64.0],[114,153,66,64.0],[114,153,67,64.0],[114,153,68,64.0],[114,153,69,64.0],[114,153,70,64.0],[114,153,71,64.0],[114,153,72,64.0],[114,153,73,64.0],[114,153,74,64.0],[114,153,75,64.0],[114,153,76,64.0],[114,153,77,64.0],[114,153,78,64.0],[114,153,79,64.0],[114,154,64,64.0],[114,154,65,64.0],[114,154,66,64.0],[114,154,67,64.0],[114,154,68,64.0],[114,154,69,64.0],[114,154,70,64.0],[114,154,71,64.0],[114,154,72,64.0],[114,154,73,64.0],[114,154,74,64.0],[114,154,75,64.0],[114,154,76,64.0],[114,154,77,64.0],[114,154,78,64.0],[114,154,79,64.0],[114,155,64,64.0],[114,155,65,64.0],[114,155,66,64.0],[114,155,67,64.0],[114,155,68,64.0],[114,155,69,64.0],[114,155,70,64.0],[114,155,71,64.0],[114,155,72,64.0],[114,155,73,64.0],[114,155,74,64.0],[114,155,75,64.0],[114,155,76,64.0],[114,155,77,64.0],[114,155,78,64.0],[114,155,79,64.0],[114,156,64,64.0],[114,156,65,64.0],[114,156,66,64.0],[114,156,67,64.0],[114,156,68,64.0],[114,156,69,64.0],[114,156,70,64.0],[114,156,71,64.0],[114,156,72,64.0],[114,156,73,64.0],[114,156,74,64.0],[114,156,75,64.0],[114,156,76,64.0],[114,156,77,64.0],[114,156,78,64.0],[114,156,79,64.0],[114,157,64,64.0],[114,157,65,64.0],[114,157,66,64.0],[114,157,67,64.0],[114,157,68,64.0],[114,157,69,64.0],[114,157,70,64.0],[114,157,71,64.0],[114,157,72,64.0],[114,157,73,64.0],[114,157,74,64.0],[114,157,75,64.0],[114,157,76,64.0],[114,157,77,64.0],[114,157,78,64.0],[114,157,79,64.0],[114,158,64,64.0],[114,158,65,64.0],[114,158,66,64.0],[114,158,67,64.0],[114,158,68,64.0],[114,158,69,64.0],[114,158,70,64.0],[114,158,71,64.0],[114,158,72,64.0],[114,158,73,64.0],[114,158,74,64.0],[114,158,75,64.0],[114,158,76,64.0],[114,158,77,64.0],[114,158,78,64.0],[114,158,79,64.0],[114,159,64,64.0],[114,159,65,64.0],[114,159,66,64.0],[114,159,67,64.0],[114,159,68,64.0],[114,159,69,64.0],[114,159,70,64.0],[114,159,71,64.0],[114,159,72,64.0],[114,159,73,64.0],[114,159,74,64.0],[114,159,75,64.0],[114,159,76,64.0],[114,159,77,64.0],[114,159,78,64.0],[114,159,79,64.0],[114,160,64,64.0],[114,160,65,64.0],[114,160,66,64.0],[114,160,67,64.0],[114,160,68,64.0],[114,160,69,64.0],[114,160,70,64.0],[114,160,71,64.0],[114,160,72,64.0],[114,160,73,64.0],[114,160,74,64.0],[114,160,75,64.0],[114,160,76,64.0],[114,160,77,64.0],[114,160,78,0.31976317898350826],[114,160,79,0.3775495519650627],[114,161,64,64.0],[114,161,65,64.0],[114,161,66,64.0],[114,161,67,64.0],[114,161,68,64.0],[114,161,69,64.0],[114,161,70,64.0],[114,161,71,64.0],[114,161,72,64.0],[114,161,73,64.0],[114,161,74,64.0],[114,161,75,64.0],[114,161,76,64.0],[114,161,77,0.29846941754172085],[114,161,78,0.31928180679709506],[114,161,79,0.3777609466936301],[114,162,64,64.0],[114,162,65,64.0],[114,162,66,64.0],[114,162,67,64.0],[114,162,68,64.0],[114,162,69,64.0],[114,162,70,64.0],[114,162,71,64.0],[114,162,72,64.0],[114,162,73,64.0],[114,162,74,64.0],[114,162,75,64.0],[114,162,76,0.31933476367376745],[114,162,77,0.2812437338418417],[114,162,78,0.31930566578293584],[114,162,79,0.37826657739307473],[114,163,64,64.0],[114,163,65,64.0],[114,163,66,64.0],[114,163,67,64.0],[114,163,68,64.0],[114,163,69,64.0],[114,163,70,64.0],[114,163,71,64.0],[114,163,72,64.0],[114,163,73,64.0],[114,163,74,0.36583975806490815],[114,163,75,0.33287610113263466],[114,163,76,0.2989769641128333],[114,163,77,0.26405864528712575],[114,163,78,0.3199537577310482],[114,163,79,0.3791884131779334],[114,164,64,64.0],[114,164,65,64.0],[114,164,66,64.0],[114,164,67,64.0],[114,164,68,64.0],[114,164,69,64.0],[114,164,70,64.0],[114,164,71,64.0],[114,164,72,64.0],[114,164,73,0.3676405141393147],[114,164,74,0.33886644500946517],[114,164,75,0.3093190476180942],[114,164,76,0.27879607155822367],[114,164,77,0.25862787981615626],[114,164,78,0.3213360389986031],[114,164,79,0.38064175371384823],[114,165,64,64.0],[114,165,65,64.0],[114,165,66,64.0],[114,165,67,64.0],[114,165,68,64.0],[114,165,69,64.0],[114,165,70,64.0],[114,165,71,64.0],[114,165,72,0.36215216325198424],[114,165,73,0.3373706467919992],[114,165,74,0.31213672765190004],[114,165,75,0.2861190527248251],[114,165,76,0.2590807299211063],[114,165,77,0.26091513003804995],[114,165,78,0.3235509149047002],[114,165,79,0.3827326245289528],[114,166,64,64.0],[114,166,65,64.0],[114,166,66,64.0],[114,166,67,64.0],[114,166,68,64.0],[114,166,69,64.0],[114,166,70,0.37038445598108194],[114,166,71,0.34984874747172073],[114,166,72,0.32875303340610035],[114,166,73,0.30758789815921184],[114,166,74,0.2859876903361415],[114,166,75,0.26358730709052786],[114,166,76,0.24011642573012243],[114,166,77,0.2643058916006556],[114,166,78,0.3266825996771105],[114,166,79,0.3855550101770333],[114,167,64,64.0],[114,167,65,64.0],[114,167,66,64.0],[114,167,67,64.0],[114,167,68,64.0],[114,167,69,0.34611550494117976],[114,167,70,0.3305200322732825],[114,167,71,0.31357114821752874],[114,167,72,0.296124784744091],[114,167,73,0.27865004704812224],[114,167,74,0.2607502094251738],[114,167,75,0.24202787333225734],[114,167,76,0.22218064482250865],[114,167,77,0.2688559142157453],[114,167,78,0.330798348602531],[114,167,79,0.3891879318395163],[114,168,64,64.0],[114,168,65,64.0],[114,168,66,64.0],[114,168,67,64.0],[114,168,68,0.3137531830585403],[114,168,69,0.30369914399047243],[114,168,70,0.2916808616508444],[114,168,71,0.2783826038620574],[114,168,72,0.2646409039061668],[114,168,73,0.25090309303301495],[114,168,74,0.23674283555539044],[114,168,75,0.22173200780870095],[114,168,76,0.21046523769600378],[114,168,77,0.27459927450723043],[114,168,78,0.3359455977148757],[114,168,79,0.393692404372225],[114,169,64,64.0],[114,169,65,64.0],[114,169,66,64.0],[114,169,67,0.2733247876036111],[114,169,68,0.2691954189922732],[114,169,69,0.26267420185689877],[114,169,70,0.25427690157191185],[114,169,71,0.24466549215521738],[114,169,72,0.2346560761930643],[114,169,73,0.22467407321828503],[114,169,74,0.21426508673727077],[114,169,75,0.2029719299104371],[114,169,76,0.2181096974196978],[114,169,77,0.28154550821087554],[114,169,78,0.3421488954561919],[114,169,79,0.39910815836170177],[114,170,64,64.0],[114,170,65,0.3136506995365351],[114,170,66,0.25710514979306653],[114,170,67,0.2270936859433625],[114,170,68,0.2264153544861225],[114,170,69,0.22345051557417545],[114,170,70,0.21869072682688273],[114,170,71,0.21277491626968142],[114,170,72,0.20649794272891042],[114,170,73,0.20026332987917497],[114,170,74,0.19359022842622994],[114,170,75,0.1859941142145653],[114,170,76,0.22707053634006574],[114,170,77,0.28967663470764776],[114,170,78,0.3494066993245949],[114,170,79,0.4054501994456927],[114,171,64,0.34786887528262167],[114,171,65,0.2948803836291793],[114,171,66,0.2390141378626053],[114,171,67,0.18303476119385204],[114,171,68,0.1858114732293696],[114,171,69,0.18640014124338575],[114,171,70,0.18526764987968125],[114,171,71,0.18302936085399693],[114,171,72,0.1804582994925122],[114,171,73,0.1779362561386867],[114,171,74,0.1749575674787181],[114,171,75,0.17361972298242834],[114,171,76,0.23728174655914155],[114,171,77,0.2989441000875702],[114,171,78,0.35768806347094717],[114,171,79,0.4127052306266462],[114,172,64,0.3262918755402429],[114,172,65,0.2740355696403848],[114,172,66,0.218910951471466],[114,172,67,0.16127895057852276],[114,172,68,0.14773243751094992],[114,172,69,0.1518462547995459],[114,172,70,0.15430518233612323],[114,172,71,0.1557007262836697],[114,172,72,0.15678371142591457],[114,172,73,0.15791449315665437],[114,172,74,0.1585642337346968],[114,172,75,0.18597697415801206],[114,172,76,0.24864262777298782],[114,172,77,0.3092656132674785],[114,172,78,0.36692919202395957],[114,172,79,0.42082791261172253],[114,173,64,0.30292682657744413],[114,173,65,0.2514442332019959],[114,173,66,0.19710844043863623],[114,173,67,0.1402821681469752],[114,173,68,0.11246471330876934],[114,173,69,0.12005135690620945],[114,173,70,0.12604183734880817],[114,173,71,0.13100374092154432],[114,173,72,0.1356655414334293],[114,173,73,0.1403665786460442],[114,173,74,0.14455644904341475],[114,173,75,0.19942271680278492],[114,173,76,0.2610148143364437],[114,173,77,0.32052187498544743],[114,173,78,0.3770298579682095],[114,173,79,0.4297369620055267],[114,174,64,0.27816404148591267],[114,174,65,0.22748158596049411],[114,174,66,0.17396611525251832],[114,174,67,0.11798191641966774],[114,174,68,0.08021946339625585],[114,174,69,0.09120478197835122],[114,174,70,0.10064527295873808],[114,174,71,0.10908475138765321],[114,174,72,0.11722939427129758],[114,174,73,0.12539804671662258],[114,174,74,0.1521814376798991],[114,174,75,0.21375852279681692],[114,174,76,0.274219221968056],[114,174,77,0.33255319967180347],[114,174,78,0.38784968757500193],[114,174,79,0.4393110873554943],[114,175,64,0.2524417147920579],[114,175,65,0.20257037033382463],[114,175,66,0.14989062719922897],[114,175,67,0.09476816235568934],[114,175,68,0.05111870846639817],[114,175,69,0.06540951133376675],[114,175,70,0.07819977637389768],[114,175,71,0.09000989083876476],[114,175,72,0.1015239753281789],[114,175,73,0.1130409790461705],[114,175,74,0.16829114276235657],[114,175,75,0.2287420329312743],[114,175,76,0.2880329140949937],[114,175,77,0.3451560301965407],[114,175,78,0.3992043103859072],[114,175,79,0.4493847630497838],[114,176,64,0.2262458994278287],[114,176,65,0.17718101967123234],[114,176,66,0.1253361255028537],[114,176,67,0.07107816411493309],[114,176,68,0.025180756272758606],[114,176,69,0.042668290472509876],[114,176,70,0.05869308918434764],[114,176,71,0.07375262525720189],[114,176,72,0.08850936429609844],[114,176,73,0.12494778145065154],[114,176,74,0.18477888360041095],[114,176,75,0.24408410570403033],[114,176,76,0.3021858878382876],[114,176,77,0.35807934549345377],[114,176,78,0.41086137474925766],[114,176,79,0.45974384106793037],[114,177,64,0.1999449922044479],[114,177,65,0.1516700367998064],[114,177,66,0.10064696521438632],[114,177,67,0.04724393221748126],[114,177,68,0.002304898787735446],[114,177,69,0.02286905048462641],[114,177,70,0.04200257351406193],[114,177,71,0.06018067774916022],[114,177,72,0.08364515211335977],[114,177,73,0.1426784136769594],[114,177,74,0.20139960550671498],[114,177,75,0.25955168901800063],[114,177,76,0.3164569120353723],[114,177,77,0.37111344470041285],[114,177,78,0.4226223095724868],[114,177,79,0.4702003727247199],[114,178,64,0.17316360871300313],[114,178,65,0.12566775129419558],[114,178,66,0.07546087982993485],[114,178,67,0.022912293370239825],[114,178,68,-0.017744622621716367],[114,178,69,0.005769633586371739],[114,178,70,0.027880719109708865],[114,178,71,0.04904233085269606],[114,178,72,0.10287567422955492],[114,178,73,0.16081594528494608],[114,178,74,0.2184016764029224],[114,178,75,0.2753740066221544],[114,178,76,0.33105559225707987],[114,178,77,0.38444796440938256],[114,178,78,0.43465655269955394],[114,178,79,0.48090348734063837],[114,179,64,0.14543085308906256],[114,179,65,0.09871154799126503],[114,179,66,0.04932537527616537],[114,179,67,-0.0023573061781110433],[114,179,68,-0.0353553560712898],[114,179,69,-0.00901815011195381],[114,179,70,0.015940017587621147],[114,179,71,0.06598877615084679],[114,179,72,0.12289330188088787],[114,179,73,0.1796962958691895],[114,179,74,0.23609953291200686],[114,179,75,0.2918434504508747],[114,179,76,0.34625192046711656],[114,179,77,0.3983302936815471],[114,179,78,0.4471888356026189],[114,179,79,0.49205534889757674],[114,180,64,0.11643843975925722],[114,180,65,0.07049812465106933],[114,180,66,0.021943443603553103],[114,180,67,-0.028854290886192804],[114,180,68,-0.05086386927004196],[114,180,69,-0.021831486482379286],[114,180,70,0.03261429947938152],[114,180,71,0.08817394397284804],[114,180,72,0.1439326753868526],[114,180,73,0.19954054112993613],[114,180,74,0.25470019365990354],[114,180,75,0.3091526897246487],[114,180,76,0.3622240782948847],[114,180,77,0.41292409021805165],[114,180,78,0.4603683521228614],[114,180,79,0.5037908394718016],[114,181,64,0.08602175063737538],[114,181,65,0.04086499016531413],[114,181,66,-0.006844447384745461],[114,181,67,-0.056734423928119365],[114,181,68,-0.049662923805792555],[114,181,69,0.003277451888374097],[114,181,70,0.05715812444742932],[114,181,71,0.11156793877339156],[114,181,72,0.16612051086897645],[114,181,73,0.2204681144242961],[114,181,74,0.2743156017452575],[114,181,75,0.32740612017236426],[114,181,76,0.3790689632917553],[114,181,77,0.4283188594272085],[114,181,78,0.4742773719510625],[114,181,79,0.516185194791207],[114,182,64,0.06815078131324918],[114,182,65,0.027861118506981072],[114,182,66,-0.010967381379493643],[114,182,67,-0.04819980176707371],[114,182,68,-0.021607675709681723],[114,182,69,0.030260520161223284],[114,182,70,0.08300082200254959],[114,182,71,0.13620475061892146],[114,182,72,0.18948906102058516],[114,182,73,0.2425094791637696],[114,182,74,0.29497447307778596],[114,182,75,0.3466308558060173],[114,182,76,0.3968122958435516],[114,182,77,0.4445391534149735],[114,182,78,0.48893951419293163],[114,182,79,0.5292613406551305],[114,183,64,0.08396748634947009],[114,183,65,0.04167981706848063],[114,183,66,7.760536892058717E-4],[114,183,67,-0.03859379274701126],[114,183,68,0.007776846018954203],[114,183,69,0.05853422704565446],[114,183,70,0.11008766405852417],[114,183,71,0.16203224386940157],[114,183,72,0.21398893965018007],[114,183,73,0.26561820194878866],[114,183,74,0.31663358439909206],[114,183,75,0.3667872010536313],[114,183,76,0.41541824857606446],[114,183,77,0.46155333577565105],[114,183,78,0.5043276309156036],[114,183,79,0.5429968840826889],[114,184,64,0.09624746875318765],[114,184,65,0.05211528784884606],[114,184,66,0.009299156871512448],[114,184,67,-0.010138995050504016],[114,184,68,0.038347999330536287],[114,184,69,0.0879612882933703],[114,184,70,0.1382871125131374],[114,184,71,0.1889250257151037],[114,184,72,0.23950130999809932],[114,184,73,0.28968242643996717],[114,184,74,0.33918850098564113],[114,184,75,0.38777860325012087],[114,184,76,0.4347985982533585],[114,184,77,0.4792819121826013],[114,184,78,0.5203713006750945],[114,184,79,0.5573307591894435],[114,185,64,0.10506997583561364],[114,185,65,0.05924918086569188],[114,185,66,0.014686028146444055],[114,185,67,0.022482076380923255],[114,185,68,0.0698940172799546],[114,185,69,0.11833772290827758],[114,185,70,0.16740362815904705],[114,185,71,0.216696643734493],[114,185,72,0.2658494368270543],[114,185,73,0.31453574796661476],[114,185,74,0.3624837440344254],[114,185,75,0.40946108548658977],[114,185,76,0.4548214001693148],[114,185,77,0.4976054267793645],[114,185,78,0.5369639320250985],[114,185,79,0.5721695277927377],[114,186,64,0.1106726183763785],[114,186,65,0.06331756983024003],[114,186,66,0.01717088051345611],[114,186,67,0.05581945566067284],[114,186,68,0.10214717009223988],[114,186,69,0.14940550436723393],[114,186,70,0.19718977627551615],[114,186,71,0.24511111247293157],[114,186,72,0.29280960228627495],[114,186,73,0.339967488872264],[114,186,74,0.38632239773107585],[114,186,75,0.4316521598178378],[114,186,76,0.47531918503221043],[114,186,77,0.5163719243710165],[114,186,78,0.5539694770069501],[114,186,79,0.5873933347455494],[114,187,64,0.11345886821197712],[114,187,65,0.06471840678107772],[114,187,66,0.045534949576617176],[114,187,67,0.08955184117892434],[114,187,68,0.13479616712493447],[114,187,69,0.18086447876674389],[114,187,70,0.22735762890060932],[114,187,71,0.2738937690418223],[114,187,72,0.32012138554890296],[114,187,73,0.36573237459687147],[114,187,74,0.41047515600010787],[114,187,75,0.45413922082778374],[114,187,76,0.4960966783420558],[114,187,77,0.5354039784154988],[114,187,78,0.5712287546205276],[114,187,79,0.6028615179986548],[114,188,64,0.11398374415630774],[114,188,65,0.06399774275448028],[114,188,66,0.08026486724206036],[114,188,67,0.12332522102380174],[114,188,68,0.16749779872795426],[114,188,69,0.21238354989636796],[114,188,70,0.2575894637845866],[114,188,71,0.3027414577388907],[114,188,72,0.3474973062233017],[114,188,73,0.3915596104963206],[114,188,74,0.43468880893788747],[114,188,75,0.47668741955335264],[114,188,76,0.5169380422612023],[114,188,77,0.5545052848153933],[114,188,78,0.5885653842765161],[114,188,79,0.6184178733914858],[114,189,64,0.1122882430919906],[114,189,65,0.07388781723811196],[114,189,66,0.11463437063759242],[114,189,67,0.15676415714848968],[114,189,68,0.1998878180005611],[114,189,69,0.2436111312384775],[114,189,70,0.2875477600241404],[114,189,71,0.33133204368927227],[114,189,72,0.37463183153795654],[114,189,73,0.4171613593989242],[114,189,74,0.45869416892803394],[114,189,75,0.4990470177665641],[114,189,76,0.5376136399779736],[114,189,77,0.5734668215099193],[114,189,78,0.6057913292298336],[114,189,79,0.6338955741714937],[114,190,64,0.1077801117426168],[114,190,65,0.1082730158870177],[114,190,66,0.14824754783723204],[114,190,67,0.18948228523479993],[114,190,68,0.23159106244502287],[114,190,69,0.27418486489394867],[114,190,70,0.31688449037708805],[114,190,71,0.35933325550702594],[114,190,72,0.4012097472996188],[114,190,73,0.4422406198985911],[114,190,74,0.4822134364389472],[114,190,75,0.5209602226145247],[114,190,76,0.5578863225630492],[114,190,77,0.5920725738668967],[114,190,78,0.622712049993985],[114,190,79,0.6491217452418216],[114,191,64,0.10372009182661489],[114,191,65,0.14146064110411816],[114,191,66,0.18070774061746692],[114,191,67,0.22109203025404311],[114,191,68,0.26223081551778615],[114,191,69,0.30374060743458986],[114,191,70,0.34524971025827983],[114,191,71,0.3864108569778091],[114,191,72,0.42691389262537927],[114,191,73,0.4664985053853138],[114,191,74,0.5049670055040706],[114,191,75,0.5421675016179033],[114,191,76,0.5775172383191319],[114,191,77,0.6101048258751705],[114,191,78,0.6391312677367949],[114,191,79,0.6639216921376757],[114,192,64,0.13586936497642005],[114,192,65,0.17305613742355422],[114,192,66,0.21162678641912325],[114,192,67,0.2512135377247645],[114,192,68,0.29143740807773644],[114,192,69,0.3319206826818924],[114,192,70,0.3722994434163299],[114,192,71,0.41223614776233247],[114,192,72,0.4514322584483159],[114,192,73,0.4896409238126319],[114,192,74,0.5266797088845745],[114,192,75,0.5624133780275858],[114,192,76,0.5962711646236212],[114,192,77,0.6273490171372367],[114,192,78,0.6548553376572834],[114,192,79,0.6781227847311984],[114,193,64,0.16599752370583776],[114,193,65,0.20268303812870483],[114,193,66,0.24063345469895694],[114,193,67,0.2794828206669556],[114,193,68,0.31885605973117037],[114,193,69,0.3583814014117438],[114,193,70,0.3977028642908259],[114,193,71,0.4364927931202685],[114,193,72,0.4744644497964061],[114,193,73,0.511384658201788],[114,193,74,0.5470865029141818],[114,193,75,0.5814517065392596],[114,193,76,0.6139213622640592],[114,193,77,0.6435981656618572],[114,193,78,0.6696972323434901],[114,193,79,0.691557995664654],[114,194,64,0.1937523517427896],[114,194,65,0.22999085079613069],[114,194,66,0.26738107767180874],[114,194,67,0.30555912225355986],[114,194,68,0.34415396007426996],[114,194,69,0.38279984798586575],[114,194,70,0.42114877705074305],[114,194,71,0.45888298265530736],[114,194,72,0.4957275118453558],[114,194,73,0.5314628478831859],[114,194,74,0.5659375920267214],[114,194,75,0.5990504293664637],[114,194,76,0.630253952266849],[114,194,77,0.6586568564571225],[114,194,78,0.6834801351116642],[114,194,79,0.7040690935123146],[114,195,64,0.21881638996967148],[114,195,65,0.25466211883829737],[114,195,66,0.2915543754428491],[114,195,67,0.32913149415880955],[114,195,68,0.36702658983263203],[114,195,69,0.40487993390954097],[114,195,70,0.4423513913136518],[114,195,71,0.47913291808096636],[114,195,72,0.5149611197449807],[114,195,73,0.5496298704748086],[114,195,74,0.5830029929660788],[114,195,75,0.6149958126718049],[114,195,76,0.6450718152189631],[114,195,77,0.6723447959237022],[114,195,78,0.6960406433265873],[114,195,79,0.7155094906708309],[114,196,64,0.2409133169491564],[114,196,65,0.2764185886295785],[114,196,66,0.3128754024823678],[114,196,67,0.34992451498653393],[114,196,68,0.3872032037967199],[114,196,69,0.424357637832341],[114,196,70,0.46105531179297954],[114,196,71,0.49699754510056937],[114,196,72,0.5319320452681219],[114,196,73,0.5656655356949002],[114,196,74,0.5980764478882862],[114,196,75,0.6290960707086808],[114,196,76,0.6581979187010703],[114,196,77,0.684499836245628],[114,196,78,0.7072314849550075],[114,196,79,0.7257466488946855],[114,197,64,0.25970773039371403],[114,197,65,0.29491670899356354],[114,197,66,0.330994794119749],[114,197,67,0.36758535518871877],[114,197,68,0.40432982193070777],[114,197,69,0.4408800590745935],[114,197,70,0.47691080912762374],[114,197,71,0.512132203250535],[114,197,72,0.546302340227822],[114,197,73,0.5792399335330748],[114,197,74,0.6108370264896088],[114,197,75,0.6410397609705585],[114,197,76,0.6693306948677741],[114,197,77,0.6948308261808218],[114,197,78,0.7167725927875006],[114,197,79,0.7345123412282075],[114,198,64,0.2746333073023574],[114,198,65,0.3095694483931391],[114,198,66,0.3453071222141395],[114,198,67,0.3814926323922656],[114,198,68,0.4177716174284757],[114,198,69,0.4538014325188386],[114,198,70,0.4892636026667636],[114,198,71,0.5238763470869047],[114,198,72,0.5574071749005051],[114,198,73,0.5896855521221092],[114,198,74,0.6206156399378505],[114,198,75,0.6501567537623507],[114,198,76,0.6777998074760327],[114,198,77,0.7026690511642752],[114,198,78,0.7239995518025781],[114,198,79,0.7411498186177782],[114,199,64,0.28520915155884907],[114,199,65,0.3198756718813489],[114,199,66,0.35529295079614776],[114,199,67,0.3911106803738801],[114,199,68,0.4269788407568176],[114,199,69,0.46256008357762923],[114,199,70,0.497542188923049],[114,199,71,0.5316505958429454],[114,199,72,0.5646610064045623],[114,199,73,0.5964120632918678],[114,199,74,0.6268181009502031],[114,199,75,0.6558494101920939],[114,199,76,0.6830048898973624],[114,199,77,0.7074131250078017],[114,199,78,0.7283125077913692],[114,199,79,0.7450639967066315],[114,200,64,0.2910991587017795],[114,200,65,0.3254819585013229],[114,200,66,0.36058306225376224],[114,200,67,0.3960561155261837],[114,200,68,0.4315556372748689],[114,200,69,0.46674939231402657],[114,200,70,0.501330838233713],[114,200,71,0.5350316467674218],[114,200,72,0.5676342996091212],[114,200,73,0.5989847586796807],[114,200,74,0.6290052108428659],[114,200,75,0.6576742893331828],[114,200,76,0.6844987591222976],[114,200,77,0.7086134272729601],[114,200,78,0.7292613983990557],[114,200,79,0.745806930592818],[114,201,64,0.29210325591161934],[114,201,65,0.32617359861950923],[114,201,66,0.3609492205952086],[114,201,67,0.3960883756736673],[114,201,68,0.4312503719662976],[114,201,69,0.4661079148261554],[114,201,70,0.5003595234708822],[114,201,71,0.5337420212638831],[114,201,72,0.5660430996535228],[114,201,73,0.597113955770281],[114,201,74,0.6268820036820452],[114,201,75,0.6553312323606395],[114,201,76,0.6819763494695255],[114,201,77,0.7059609117129192],[114,201,78,0.7265346750578854],[114,201,79,0.7430665004312216],[114,202,64,0.2881482823633524],[114,202,65,0.32186524748827233],[114,202,66,0.3562946096431128],[114,202,67,0.3910999553847668],[114,202,68,0.4259456750752556],[114,202,69,0.46050925272443244],[114,202,70,0.49449362671502395],[114,202,71,0.527639621410482],[114,202,72,0.5597384496454305],[114,202,73,0.5906442860986483],[114,202,74,0.6202869115487644],[114,202,75,0.6486524084618442],[114,202,76,0.6752636498989616],[114,202,77,0.6992759605741732],[114,202,78,0.7199481127635275],[114,202,79,0.7366552259430088],[114,203,64,0.27927850994495307],[114,203,65,0.31259123503810765],[114,203,66,0.3466439461602092],[114,203,67,0.38110633778028635],[114,203,68,0.41564820864629837],[114,203,69,0.449951670701669],[114,203,70,0.4837234238917248],[114,203,71,0.5167070968605068],[114,203,72,0.5486956535377426],[114,203,73,0.5795438656159211],[114,203,74,0.6091808509176413],[114,203,75,0.6375913225218777],[114,203,76,0.6643066449289172],[114,203,77,0.6884972847582363],[114,203,78,0.7094337076948987],[114,203,79,0.7264992098326336],[114,204,64,0.2656458043414787],[114,204,65,0.298495531899252],[114,204,66,0.33213326790638176],[114,204,67,0.36623562283796834],[114,204,68,0.40047815396808395],[114,204,69,0.43454746219586377],[114,204,70,0.46815334737162395],[114,204,71,0.5010410221234647],[114,204,72,0.5330033841841552],[114,204,73,0.5638933472182327],[114,204,74,0.5936362301494974],[114,204,75,0.6222117845833505],[114,204,76,0.6491602591572362],[114,204,77,0.6736708698432152],[114,204,78,0.6950286626773617],[114,204,79,0.7126272101123101],[114,205,64,0.24749942648486306],[114,205,65,0.27982137165277876],[114,205,66,0.3129993966271244],[114,205,67,0.34671785219329393],[114,205,68,0.3806584199209331],[114,205,69,0.4145120631457673],[114,205,70,0.4479910265335776],[114,205,71,0.4808408842267842],[114,205,72,0.5128526365734354],[114,205,73,0.5438748554385268],[114,205,74,0.5738258780978434],[114,205,75,0.6026768410807518],[114,205,76,0.6299773053864284],[114,205,77,0.6549389679652707],[114,205,78,0.6768644604893017],[114,205,79,0.6951598413339389],[114,206,64,0.2251754743694383],[114,206,65,0.25690052931119617],[114,206,66,0.289697816974296],[114,206,67,0.32850337261281487],[114,206,68,0.36615176116905557],[114,206,69,0.4026778070514312],[114,206,70,0.4382145356124959],[114,206,71,0.47300708258677604],[114,206,72,0.5074219215807074],[114,206,73,0.5414532466582241],[114,206,74,0.5743021933525914],[114,206,75,0.6051989639890366],[114,206,76,0.6334943262404024],[114,206,77,0.6586529152931722],[114,206,78,0.68024668858579],[114,206,79,0.6979485331192765],[114,207,64,0.24724581755209607],[114,207,65,0.28633328051410445],[114,207,66,0.32445429080004906],[114,207,67,0.3614979383602731],[114,207,68,0.39742226700098204],[114,207,69,0.4322662258070441],[114,207,70,0.4661622187213616],[114,207,71,0.49934925228072613],[114,207,72,0.5321814393552342],[114,207,73,0.5646412268748856],[114,207,74,0.5959294374185534],[114,207,75,0.6252796456534584],[114,207,76,0.6520481123095813],[114,207,77,0.675706671343705],[114,207,78,0.6958357833339793],[114,207,79,0.7121177551050084],[114,208,64,0.28368004321735685],[114,208,65,0.32094517729563027],[114,208,66,0.3572662778068824],[114,208,67,0.39254369199787015],[114,208,68,0.42674325351220277],[114,208,69,0.4599075206207005],[114,208,70,0.4921675790776271],[114,208,71,0.5237554096027168],[114,208,72,0.5550116538015442],[114,208,73,0.5859062100060011],[114,208,74,0.6156396529798781],[114,208,75,0.6434490911755503],[114,208,76,0.6686964367704091],[114,208,77,0.6908608762744675],[114,208,78,0.7095315215944392],[114,208,79,0.724400241554296],[114,209,64,0.31771903347240915],[114,209,65,0.35317435536347563],[114,209,66,0.3877125444407761],[114,209,67,0.4212448332397801],[114,209,68,0.4537443453855267],[114,209,69,0.48525660992445085],[114,209,70,0.515910606000375],[114,209,71,0.545930337874594],[114,209,72,0.5756418552779422],[114,209,73,0.6050017159519387],[114,209,74,0.6332102810238046],[114,209,75,0.6595082972927935],[114,209,76,0.6832634116640437],[114,209,77,0.7039622279445108],[114,209,78,0.7212025587936203],[114,209,79,0.7346858728286384],[114,210,64,0.3489240694132162],[114,210,65,0.38260698910835156],[114,210,66,0.4154044180445996],[114,210,67,0.44723793850804455],[114,210,68,0.47808732135069515],[114,210,69,0.5080003117271124],[114,210,70,0.5371029103759312],[114,210,71,0.5656101504461998],[114,210,72,0.5938323709256959],[114,210,73,0.6217120138022835],[114,210,74,0.648449226741171],[114,210,75,0.6732884389390933],[114,210,76,0.6956030371467394],[114,210,77,0.714887015653848],[114,210,78,0.7307468364990399],[114,210,79,0.7428934999043871],[114,211,64,0.3768946931891807],[114,211,65,0.4088670952779611],[114,211,66,0.43999059701149545],[114,211,67,0.4701964373977462],[114,211,68,0.49947025606342055],[114,211,69,0.5278611517538235],[114,211,70,0.5554912012995793],[114,211,71,0.5825654390501473],[114,211,72,0.6093773884151547],[114,211,73,0.6358546248741904],[114,211,74,0.6611970464050291],[114,211,75,0.6846527454455391],[114,211,76,0.7056007736268866],[114,211,77,0.7235423961083465],[114,211,78,0.7380925714741138],[114,211,79,0.7489716571921153],[114,212,64,0.40127365210105903],[114,212,65,0.4316211416815777],[114,212,66,0.4611614186312692],[114,212,67,0.4898345364932629],[114,212,68,0.5176310988099675],[114,212,69,0.5446005977734569],[114,212,70,0.5708601782275443],[114,212,71,0.5966038270214881],[114,212,72,0.6221071740156056],[114,212,73,0.6472822097849042],[114,212,74,0.6713285085171996],[114,212,75,0.6934977420230356],[114,212,76,0.7131744712045087],[114,212,77,0.7298670199109103],[114,212,78,0.7431985898534177],[114,212,79,0.7528986165788404],[114,213,64,0.421751320246966],[114,213,65,0.45058212367512157],[114,213,66,0.4786525846288633],[114,213,67,0.5059105905347319],[114,213,68,0.5323506890364593],[114,213,69,0.558021720113135],[114,213,70,0.5830348386385439],[114,213,71,0.6075719273816256],[114,213,72,0.6318896849882656],[114,213,73,0.6558838395579087],[114,213,74,0.678753529222283],[114,213,75,0.6997538565263705],[114,213,76,0.7182746564128344],[114,213,77,0.7338310085786113],[114,213,78,0.7460540064380855],[114,213,79,0.7546817826928404],[114,214,64,0.43806959771679105],[114,214,65,0.465513108427058],[114,214,66,0.4922483443952279],[114,214,67,0.5182299209350245],[114,214,68,0.5434552087031888],[114,214,69,0.5679712783601024],[114,214,70,0.591882201205138],[114,214,71,0.615356705786694],[114,214,72,0.6386315763026055],[114,214,73,0.6615856507628743],[114,214,74,0.6834174819892751],[114,214,75,0.7033853914998488],[114,214,76,0.720884176262049],[114,214,77,0.7354352820858637],[114,214,78,0.7466772491114303],[114,214,79,0.7543564293911417],[114,215,64,0.4500252873351488],[114,215,65,0.47623024696521293],[114,215,66,0.5017841359106712],[114,215,67,0.5266470816473005],[114,215,68,0.5508180714640079],[114,215,69,0.574341234251031],[114,215,70,0.5973124444749498],[114,215,71,0.6198862483404608],[114,215,72,0.6422786016760756],[114,215,73,0.6643508846894745],[114,215,74,0.6853008815608552],[114,215,75,0.704389861504559],[114,215,76,0.7210171995853021],[114,215,77,0.7347102369337065],[114,215,78,0.7451144283748337],[114,215,79,0.7519837774697158],[114,216,64,0.4574729489527699],[114,216,65,0.4826052540044298],[114,216,66,0.5071486843606196],[114,216,67,0.5310675723830806],[114,216,68,0.5543612486707216],[114,216,69,0.5770696907486795],[114,216,70,0.5992794610616853],[114,216,71,0.6211299342716915],[114,216,72,0.6428154089371542],[114,216,73,0.6641793105549932],[114,216,74,0.6844184421702687],[114,216,75,0.7027966957271926],[114,216,76,0.7187175756868767],[114,216,77,0.7317137747451091],[114,216,78,0.7414370520038353],[114,216,79,0.7476484135963236],[114,217,64,0.4603272312861742],[114,217,65,0.4845673555549174],[114,217,66,0.5082855584436531],[114,217,67,0.5314489991807156],[114,217,68,0.5540560322023937],[114,217,69,0.5761412573058304],[114,217,70,0.5977808273458838],[114,217,71,0.6190980134759139],[114,217,72,0.6402647297116876],[114,217,73,0.6611060327457013],[114,217,74,0.6808175100257968],[114,217,75,0.6986653058704286],[114,217,76,0.7140565502925563],[114,217,77,0.7265286813863426],[114,217,78,0.7357390848244674],[114,217,79,0.7414550504660556],[114,218,64,0.458564681305864],[114,218,65,0.48210470431151026],[114,218,66,0.5051941843720169],[114,218,67,0.5278016823244336],[114,218,68,0.5499232341197188],[114,218,69,0.5715868413166466],[114,218,70,0.5928571886855258],[114,218,71,0.6138405889217012],[114,218,72,0.6346859634326087],[114,218,73,0.6551996820920805],[114,218,74,0.6745758700628791],[114,218,75,0.6920825193249224],[114,218,76,0.7071298388022131],[114,218,77,0.7192593566144259],[114,218,78,0.7281333536098347],[114,218,79,0.7335246281795653],[114,219,64,0.45222503117300733],[114,219,65,0.47526526282380577],[114,219,66,0.497930317564567],[114,219,67,0.5201887116139202],[114,219,68,0.5420328231444128],[114,219,69,0.5634828657553879],[114,219,70,0.5845910601364384],[114,219,71,0.6054460039213998],[114,219,72,0.6261731556729692],[114,219,73,0.6465599911778186],[114,219,74,0.6657989269637997],[114,219,75,0.6831593776228161],[114,219,76,0.6980540568445199],[114,219,77,0.7100278942505548],[114,219,78,0.7187472970968385],[114,219,79,0.7239897568438781],[114,220,64,0.4414119627244111],[114,220,65,0.4641571544470121],[114,220,66,0.4866059720320225],[114,220,67,0.5087254489843381],[114,220,68,0.530502997963562],[114,220,69,0.5519499130024637],[114,220,70,0.5731050426824935],[114,220,71,0.5940386342663342],[114,220,72,0.6148523708023372],[114,220,73,0.6353147536826599],[114,220,74,0.6546162604450572],[114,220,75,0.6720273001729129],[114,220,76,0.6869625081339723],[114,220,77,0.6989695128797065],[114,220,78,0.7077180611232686],[114,220,79,0.712989500396036],[114,221,64,0.4262933495059189],[114,221,65,0.44894848207361027],[114,221,66,0.4713888074545942],[114,221,67,0.49357847847682124],[114,221,68,0.5154986973589395],[114,221,69,0.5371507948577997],[114,221,70,0.5585594549755686],[114,221,71,0.5797760852264314],[114,221,72,0.6008784589664832],[114,221,73,0.6216161677590074],[114,221,74,0.6411775548122912],[114,221,75,0.6588336132773657],[114,221,76,0.6740003296300315],[114,221,77,0.6862273370762308],[114,221,78,0.6951869388850496],[114,221,79,0.7006635016493359],[114,222,64,0.40710097635444353],[114,222,65,0.4298666146460294],[114,222,66,0.4525009739521725],[114,222,67,0.47496400355961765],[114,222,68,0.49722954716143847],[114,222,69,0.5192880487416586],[114,222,70,0.5411493805853722],[114,222,71,0.5628457934143463],[114,222,72,0.5844312173904166],[114,222,73,0.6056365634423271],[114,222,74,0.6256479027827913],[114,222,75,0.6437364444298896],[114,222,76,0.6593189939983937],[114,222,77,0.6719465291554029],[114,222,78,0.6812931563136012],[114,222,79,0.687145448562112],[114,223,64,0.38412973652806537],[114,223,65,0.4071969414498306],[114,223,66,0.4302174145466453],[114,223,67,0.45314569179952036],[114,223,68,0.4759472440303452],[114,223,69,0.4986008600826993],[114,223,70,0.521101130759008],[114,223,71,0.5434610335140375],[114,223,72,0.5657109460047935],[114,223,73,0.5875635140954348],[114,223,74,0.6082024835757449],[114,223,75,0.6268989818957211],[114,223,76,0.6430701693746673],[114,223,77,0.6562677714512879],[114,223,78,0.6661670025737243],[114,223,79,0.6725558817295235],[114,224,64,0.3577363063850261],[114,224,65,0.3812810941881326],[114,224,66,0.40486362531697223],[114,224,67,0.42843196688410445],[114,224,68,0.4519423760578551],[114,224,69,0.47536141089357786],[114,224,70,0.4986681226904636],[114,224,71,0.5218563298738744],[114,224,72,0.5449333973956714],[114,224,73,0.5675943318865492],[114,224,74,0.5890206152700042],[114,224,75,0.6084830995730055],[114,224,76,0.6253989364300478],[114,224,77,0.6393200991204108],[114,224,78,0.6499223056814201],[114,224,79,0.6569943430976838],[114,225,64,0.3283372976105232],[114,225,65,0.35251463683628426],[114,225,66,0.3768128732461251],[114,225,67,0.40117274799399716],[114,225,68,0.42554068019817115],[114,225,69,0.4498706545335461],[114,225,70,0.47412617329959755],[114,225,71,0.49828227296395594],[114,225,72,0.5223241210774038],[114,225,73,0.5459299473010052],[114,225,74,0.568279181429373],[114,225,75,0.5886423471357218],[114,225,76,0.6064363627391939],[114,225,77,0.6212130834715409],[114,225,78,0.6326482532420372],[114,225,79,0.6405308659006025],[114,226,64,0.2964068869926898],[114,226,65,0.32134422327807804],[114,226,66,0.3464828717610996],[114,226,67,0.37175563652627563],[114,226,68,0.39709873652218564],[114,226,69,0.4224535166589317],[114,226,70,0.4477682085214],[114,226,71,0.47299974069831807],[114,226,72,0.49811220208924417],[114,226,73,0.5227681726871013],[114,226,74,0.5461454319957842],[114,226,75,0.56751430545841],[114,226,76,0.5862914344504877],[114,226,77,0.6020283658216712],[114,226,78,0.6144005583087507],[114,226,79,0.6231968058198686],[114,227,64,0.2623899809738679],[114,227,65,0.2881806006151164],[114,227,66,0.31424890202458305],[114,227,67,0.3405194192843408],[114,227,68,0.36691809826626914],[114,227,69,0.3933738746168659],[114,227,70,0.4198202887017384],[114,227,71,0.4461971375097662],[114,227,72,0.47244884955223143],[114,227,73,0.4982237431694285],[114,227,74,0.5226985473177581],[114,227,75,0.5451437113044164],[114,227,76,0.5649757450273413],[114,227,77,0.5817458790842185],[114,227,78,0.5951291480948397],[114,227,79,0.6049138972367937],[114,228,64,0.22635198149092245],[114,228,65,0.253051929135208],[114,228,66,0.280101958579722],[114,228,67,0.3074182167114222],[114,228,68,0.3349165097113993],[114,228,69,0.3625137879961493],[114,228,70,0.3901296578449742],[114,228,71,0.4176879197135053],[114,228,72,0.44511489690077577],[114,228,73,0.47204612509559085],[114,228,74,0.49765791946525734],[114,228,75,0.5212212037824254],[114,228,76,0.5421525249780685],[114,228,77,0.5600028053894746],[114,228,78,0.5744465237692039],[114,228,79,0.5852713250549898],[114,229,64,0.1882951528573557],[114,229,65,0.21592426811003848],[114,229,66,0.2439724177108274],[114,229,67,0.2723474270558556],[114,229,68,0.30095526073389617],[114,229,69,0.3297014508715699],[114,229,70,0.35849254445142476],[114,229,71,0.38723756960288724],[114,229,72,0.41584635700273154],[114,229,73,0.44394315307360155],[114,229,74,0.4707044756914612],[114,229,75,0.495402048942666],[114,229,76,0.5174525973060214],[114,229,77,0.5364067102972528],[114,229,78,0.5519381409193661],[114,229,79,0.5638335379188809],[114,230,64,0.1769957281987457],[114,230,65,0.17684033206715505],[114,230,66,0.20586869553131854],[114,230,67,0.23528184071589042],[114,230,68,0.26497634253741886],[114,230,69,0.29484700996712865],[114,230,70,0.32478830389138996],[114,230,71,0.3546957688937164],[114,230,72,0.38446438242366765],[114,230,73,0.413708586668734],[114,230,74,0.44160570100795393],[114,230,75,0.4674285600209911],[114,230,76,0.49059419094182577],[114,230,77,0.5106528091843182],[114,230,78,0.5272772524918142],[114,230,79,0.5402528537107683],[114,231,64,0.17860695642567204],[114,231,65,0.17345599986195284],[114,231,66,0.16586448480800625],[114,231,67,0.19626285490050271],[114,231,68,0.22698965588378056],[114,231,69,0.25792978078911766],[114,231,70,0.2889666548407663],[114,231,71,0.31998366535780787],[114,231,72,0.3508625690523013],[114,231,73,0.38120945593911243],[114,231,74,0.4102030316040607],[114,231,75,0.4371175458367557],[114,231,76,0.46137045206554894],[114,231,77,0.4825115500339583],[114,231,78,0.5002125719553364],[114,231,79,0.5142572121457556],[114,232,64,0.17892941360417347],[114,232,65,0.17453270541876226],[114,232,66,0.16526301915500655],[114,232,67,0.15538544147341],[114,232,68,0.18705995762441532],[114,232,69,0.21898518723583846],[114,232,70,0.25103462451034886],[114,232,71,0.28308083378813786],[114,232,72,0.3149939398932342],[114,232,73,0.34637307342172996],[114,232,74,0.3763989017183548],[114,232,75,0.4043474006168222],[114,232,76,0.4296365860218311],[114,232,77,0.4518158173664862],[114,232,78,0.47055554969084246],[114,232,79,0.4856375343415541],[114,233,64,0.1780562656563655],[114,233,65,0.17437440539385407],[114,233,66,0.1657722627286552],[114,233,67,0.1522137166229515],[114,233,68,0.1452936331134603],[114,233,69,0.17809151114850696],[114,233,70,0.21104328780901715],[114,233,71,0.2440120149341549],[114,233,72,0.276857691019902],[114,233,73,0.30917379280755347],[114,233,74,0.34014352237540313],[114,233,75,0.369044911800393],[114,233,76,0.395296704530931],[114,233,77,0.4184478302082031],[114,233,78,0.4381673337854801],[114,233,79,0.4542347589454004],[114,234,64,0.17607636753468964],[114,234,65,0.1730736853833221],[114,234,66,0.16512188539440914],[114,234,67,0.15217421537111406],[114,234,68,0.13429469497123175],[114,234,69,0.13535645180466158],[114,234,70,0.16907430044202296],[114,234,71,0.20283363240837093],[114,234,72,0.23648569968875527],[114,234,73,0.2696195143066362],[114,234,74,0.30142139198856566],[114,234,75,0.331171785825388],[114,234,76,0.3582903781963124],[114,234,77,0.3823257340993591],[114,234,78,0.4029454152314964],[114,234,79,0.41992655481845576],[114,235,64,0.17307182030327395],[114,235,65,0.1707170104031583],[114,235,66,0.16340310859375878],[114,235,67,0.15107295484086367],[114,235,68,0.13378066071015116],[114,235,69,0.11169240012361059],[114,235,70,0.12522622594364263],[114,235,71,0.1596200875635885],[114,235,72,0.19392879461411985],[114,235,73,0.2277379367027772],[114,235,74,0.26023753882849127],[114,235,75,0.2907108918960944],[114,235,76,0.31857889430858544],[114,235,77,0.3433898871410073],[114,235,78,0.36480995752981793],[114,235,79,0.38261371027773583],[114,236,64,0.16911478873106975],[114,236,65,0.1673817792104454],[114,236,66,0.16069867335700683],[114,236,67,0.14899811306577443],[114,236,68,0.1323240339807099],[114,236,69,0.11083273966379728],[114,236,70,0.08479471997163021],[114,236,71,0.11443992156901811],[114,236,72,0.1492328827388458],[114,236,73,0.1835526593557436],[114,236,74,0.21659362030546764],[114,236,75,0.24764239175492914],[114,236,76,0.276121459795996],[114,236,77,0.30157918668873923],[114,236,78,0.32368030404053993],[114,236,79,0.34219688292103734],[114,237,64,0.16426357939661804],[114,237,65,0.16313264357470492],[114,237,66,0.15707939000763516],[114,237,67,0.14602645249725943],[114,237,68,0.13000731297822798],[114,237,69,0.1091676445457076],[114,237,70,0.08376739340813992],[114,237,71,0.067074396637718],[114,237,72,0.10215805732296375],[114,237,73,0.13680292901981805],[114,237,74,0.17020867194006062],[114,237,75,0.2016660947360949],[114,237,76,0.230599971038705],[114,237,77,0.25655923336431247],[114,237,78,0.27920765416760385],[114,237,79,0.29831501403950583],[114,238,64,0.15855797930408344],[114,238,65,0.1580170924990341],[114,238,66,0.1525999581258569],[114,238,67,0.1422193641560847],[114,238,68,0.12689805131138077],[114,238,69,0.10677031293013639],[114,238,70,0.08208432487456283],[114,238,71,0.05320520547780798],[114,238,72,0.05226227158061372],[114,238,73,0.0870292798864588],[114,238,74,0.12060664423662638],[114,238,75,0.15229076658057555],[114,238,76,0.18150991838749936],[114,238,77,0.20781460793274342],[114,238,78,0.23086844662498673],[114,238,79,0.25043951437416573],[114,239,64,0.15201385501113218],[114,239,65,0.15206030139161256],[114,239,66,0.14729405677194896],[114,239,67,0.13761818823063152],[114,239,68,0.12304439688092236],[114,239,69,0.10369486572697148],[114,239,70,0.07980482535078363],[114,239,71,0.05172583742958364],[114,239,72,0.019929796083718948],[114,239,73,0.03396559583694134],[114,239,74,0.06750853427731641],[114,239,75,0.09922550357557787],[114,239,76,0.12854988606912107],[114,239,77,0.1550351351193157],[114,239,78,0.1783458231452235],[114,239,79,0.1982492024278968],[114,240,64,0.14991791578208635],[114,240,65,0.14525924618727043],[114,240,66,0.14116870496905054],[114,240,67,0.13223881112159416],[114,240,68,0.11846991426223803],[114,240,69,0.09997138200354912],[114,240,70,0.07696439348475928],[114,240,71,0.049785435548396734],[114,240,72,0.01889050156224359],[114,240,73,-0.015140007112903447],[114,240,74,0.010829966388282347],[114,240,75,0.042377215404861196],[114,240,76,0.07161892243521249],[114,240,77,0.09811312180176472],[114,240,78,0.12152671126036667],[114,240,79,0.14162720531270134],[114,241,64,0.20180603019349613],[114,241,65,0.172838800466732],[114,241,66,0.14266914954699236],[114,241,67,0.12606553893293249],[114,241,68,0.11316769059152836],[114,241,69,0.09560022580441357],[114,241,70,0.07356925118516666],[114,241,71,0.047394805041718266],[114,241,72,0.017515245748330202],[114,241,73,-0.015507674974115593],[114,241,74,-0.049342770209467],[114,241,75,-0.018173381822188833],[114,241,76,0.010792536804985597],[114,241,77,0.03711941508280191],[114,241,78,0.060478008331248265],[114,241,79,0.08063733918231829],[114,242,64,0.25433589824720076],[114,242,65,0.22684886325140322],[114,242,66,0.19806870305202656],[114,242,67,0.16812928920324424],[114,242,68,0.13718041429306316],[114,242,69,0.10538652283631911],[114,242,70,0.07292533482085117],[114,242,71,0.04452965803684025],[114,242,72,0.01578334019532676],[114,242,73,-0.016107440639047163],[114,242,74,-0.05047334985099361],[114,242,75,-0.08219472929728203],[114,242,76,-0.04728775746462967],[114,242,77,-0.008278627406391334],[114,242,78,0.032285478018370006],[114,242,79,0.07429769839041653],[114,243,64,0.30717402897118556],[114,243,65,0.28146217185890865],[114,243,66,0.2543596877586355],[114,243,67,0.22599702519404846],[114,243,68,0.19652266084025805],[114,243,69,0.16610201580368944],[114,243,70,0.13491625115171146],[114,243,71,0.10316094269200614],[114,243,72,0.07104683870750202],[114,243,73,0.03899587113140107],[114,243,74,0.007735182303906504],[114,243,75,-0.022091843807092962],[114,243,76,-0.04995941812816436],[114,243,77,-0.012231469174589754],[114,243,78,0.02722410334268345],[114,243,79,0.06813417994353511],[114,244,64,0.35992194082118356],[114,244,65,0.3362713407804547],[114,244,66,0.3111262677157586],[114,244,67,0.28461289792067057],[114,244,68,0.2568778010381342],[114,244,69,0.22808708228523863],[114,244,70,0.1984253906073329],[114,244,71,0.16809479276146644],[114,244,72,0.13731558114273418],[114,244,73,0.10650951535010278],[114,244,74,0.07638337497006915],[114,244,75,0.04756133473856937],[114,244,76,0.02055356142448081],[114,244,77,-0.00423502530187958],[114,244,78,0.02196567047938397],[114,244,79,0.06163936977545929],[114,245,64,0.41213332700388816],[114,245,65,0.3908164819878039],[114,245,66,0.36789566364453974],[114,245,67,0.34349194963510044],[114,245,68,0.3177494221810424],[114,245,69,0.2908345760746527],[114,245,70,0.2629355795437111],[114,245,71,0.23426138797082774],[114,245,72,0.20504262911465812],[114,245,73,0.1757008204743224],[114,245,74,0.14692025151618326],[114,245,75,0.11930368757284648],[114,245,76,0.09334365867630254],[114,245,77,0.06943111931024243],[114,245,78,0.04786347154745553],[114,245,79,0.05533040331968388],[114,246,64,0.4633300322599508],[114,246,65,0.4446015986023846],[114,246,66,0.42415492136695415],[114,246,67,0.4021051778889547],[114,246,68,0.37859338885878596],[114,246,69,0.35378613048768015],[114,246,70,0.3278750868517813],[114,246,71,0.3010764424145683],[114,246,72,0.27363187231388575],[114,246,73,0.24596261006268733],[114,246,74,0.2187285611045185],[114,246,75,0.1925090988744399],[114,246,76,0.16777727984568322],[114,246,77,0.14490841954098105],[114,246,78,0.12418800466250682],[114,246,79,0.10581894134044523],[114,247,64,0.5130168411058761],[114,247,65,0.4971097955851991],[114,247,66,0.47936650530178787],[114,247,67,0.45989547374481027],[114,247,68,0.4388340903313086],[114,247,69,0.4163486829518771],[114,247,70,0.39263439855965027],[114,247,71,0.36791491180259633],[114,247,72,0.34244354805604793],[114,247,73,0.3166412379520937],[114,247,74,0.29114189206082286],[114,247,75,0.26649977817453235],[114,247,76,0.24316686602873389],[114,247,77,0.2215013385451867],[114,247,78,0.20177541030256563],[114,247,79,0.18418245323478352],[114,248,64,0.5606950775368755],[114,248,65,0.5478173074497359],[114,248,66,0.5329827170303089],[114,248,67,0.5162923953316096],[114,248,68,0.4978795354429645],[114,248,69,0.47790986089516974],[114,248,70,0.4565818686471607],[114,248,71,0.4341268886541822],[114,248,72,0.41081036698139506],[114,248,73,0.38705293191461465],[114,248,74,0.3634612115083228],[114,248,75,0.3405629646053651],[114,248,76,0.3187877226135548],[114,248,77,0.2984752563829818],[114,248,78,0.27988331995341453],[114,248,79,0.2631946711718148],[114,249,64,0.6058750161887636],[114,249,65,0.5962063429958022],[114,249,66,0.5844589389293913],[114,249,67,0.5707257767417525],[114,249,68,0.5551352950738422],[114,249,69,0.5378522289305746],[114,249,70,0.5190782460699912],[114,249,71,0.49905238930636187],[114,249,72,0.4780525463521853],[114,249,73,0.456499060693329],[114,249,74,0.43497034461599465],[114,249,75,0.41396658790490215],[114,249,76,0.3938938238761859],[114,249,77,0.375072373519712],[114,249,78,0.3577445348650039],[114,249,79,0.34208151757079375],[114,250,64,0.6480871049599748],[114,250,65,0.6417767470655183],[114,250,66,0.6332657028734896],[114,250,67,0.6226381722714199],[114,250,68,0.6100172921298314],[114,250,69,0.5955663973388986],[114,250,70,0.57949007799525],[114,250,71,0.5620350327388908],[114,250,72,0.5434917509500604],[114,250,73,0.5242803244193787],[114,250,74,0.5049503934635173],[114,250,75,0.4859738861800855],[114,250,76,0.46773259276083756],[114,250,77,0.45052660952698903],[114,250,78,0.43458199544714626],[114,250,79,0.42005764113786886],[114,251,64,0.6868919990931404],[114,251,65,0.6840564793207522],[114,251,66,0.6788995840045758],[114,251,67,0.6714961360030895],[114,251,68,0.6619634390702462],[114,251,69,0.6504629918480934],[114,251,70,0.6372019892470985],[114,251,71,0.622434611214156],[114,251,72,0.6064639415716927],[114,251,73,0.5897098684084234],[114,251,74,0.5726930955209681],[114,251,75,0.5558569804266438],[114,251,76,0.539558655842273],[114,251,77,0.5240774969826045],[114,251,78,0.5096227677142167],[114,251,79,0.49634044556492996],[114,252,64,0.721889406717024],[114,252,65,0.7226109100429682],[114,252,66,0.7208929195712083],[114,252,67,0.7168003367315843],[114,252,68,0.7104441229745092],[114,252,69,0.70198348471093],[114,252,70,0.6916278379642259],[114,252,71,0.6796385527340134],[114,252,72,0.6663311311248117],[114,252,73,0.6521253203387328],[114,252,74,0.6375131217456248],[114,252,75,0.6229094058079311],[114,252,76,0.6086465734729221],[114,252,77,0.5949830705719952],[114,252,78,0.5821110467816363],[114,252,79,0.5701631591460685],[114,253,64,0.7527257458474078],[114,253,65,0.757050932953882],[114,253,66,0.7588223528348954],[114,253,67,0.7580945082316194],[114,253,68,0.7549715381456731],[114,253,69,0.7496098870785792],[114,253,70,0.7422207474665816],[114,253,71,0.7330722753107894],[114,253,72,0.7224920483216833],[114,253,73,0.710899750807839],[114,253,74,0.6987593142926519],[114,253,75,0.6864575996894419],[114,253,76,0.6743025451112514],[114,253,77,0.6625317513876728],[114,253,78,0.6513201774104456],[114,253,79,0.6407869453078524],[114,254,64,0.7791006128486069],[114,254,65,0.7870398950588136],[114,254,66,0.7923162020458899],[114,254,67,0.7949732348691936],[114,254,68,0.7951078662533284],[114,254,69,0.7928733026728524],[114,254,70,0.7884820143343126],[114,254,71,0.7822084330555734],[114,254,72,0.7743917089733493],[114,254,73,0.765451557271212],[114,254,74,0.7558248638432942],[114,254,75,0.7458713464327669],[114,254,76,0.735875089835289],[114,254,77,0.7260532264306361],[114,254,78,0.7165636916040945],[114,254,79,0.7075120540576448],[114,255,64,0.8007720623543159],[114,255,65,0.8122993435112377],[114,255,66,0.821060654486683],[114,255,67,0.8270885725548942],[114,255,68,0.8304723040137755],[114,255,69,0.8313613427547851],[114,255,70,0.8299688926964017],[114,255,71,0.8265750540811255],[114,255,72,0.8215298948817749],[114,255,73,0.8152532713599657],[114,255,74,0.8081564265474248],[114,255,75,0.800573178945702],[114,255,76,0.7927647020378856],[114,255,77,0.7849283233102294],[114,255,78,0.7772053632538104],[114,255,79,0.7696880143462339],[114,256,64,0.8175606986483894],[114,256,65,0.8326135894993155],[114,256,66,0.8448047855841823],[114,256,67,0.8541555050402775],[114,256,68,0.8607469384087888],[114,256,69,0.8647244023910643],[114,256,70,0.866301254730674],[114,256,71,0.865762570221221],[114,256,72,0.8634685403318865],[114,256,73,0.8598392895796942],[114,256,74,0.8552621805826958],[114,256,75,0.8500467369908787],[114,256,76,0.8444324823061966],[114,256,77,0.8385978801450396],[114,256,78,0.8326682798352292],[114,256,79,0.8267228673475466],[114,257,64,0.8293525785054011],[114,257,65,0.8478330891540787],[114,257,66,0.8633644030900665],[114,257,67,0.8759562355566513],[114,257,68,0.885681469442145],[114,257,69,0.8926807980173118],[114,257,70,0.8971671273740309],[114,257,71,0.899429738565143],[114,257,72,0.8998380261820594],[114,257,73,0.8988125273888901],[114,257,74,0.8967188223286029],[114,257,75,0.8938440822511131],[114,257,76,0.8904077434834757],[114,257,77,0.8865706106628232],[114,257,78,0.8824429311541894],[114,257,79,0.8780914406532583],[114,258,64,0.8361009254911493],[114,258,65,0.8578766414796246],[114,258,66,0.8766247163298573],[114,258,67,0.8923433137969761],[114,258,68,0.905096780434801],[114,258,69,0.915020766299276],[114,258,70,0.9223271052441264],[114,258,71,0.9273084548086975],[114,258,72,0.9303423815545895],[114,258,73,0.9318499966586],[114,258,74,0.9321775021572678],[114,258,75,0.931591970153401],[114,258,76,0.9302945919152213],[114,258,77,0.9284299645016039],[114,258,78,0.9260943151439375],[114,258,79,0.9233426633846376],[114,259,64,0.8378266557227149],[114,259,65,0.8627324033047131],[114,259,66,0.8845418305198947],[114,259,67,0.9032415982398768],[114,259,68,0.9188873558575223],[114,259,69,0.9316093242905455],[114,259,70,0.941617639770916],[114,259,71,0.9492074584200048],[114,259,72,0.9547633931242279],[114,259,73,0.9587073065112525],[114,259,74,0.9613686998387081],[114,259,75,0.9629970784491901],[114,259,76,0.9637774838771745],[114,259,77,0.9638399827093367],[114,259,78,0.9632680607110077],[114,259,79,0.9621059222187966],[114,260,64,0.8346177150885736],[114,260,65,0.8624577212564836],[114,260,66,0.8871430661531521],[114,260,67,0.9086490538168984],[114,260,68,0.9270225467022878],[114,260,69,0.9423879908883092],[114,260,70,0.9549532045397879],[114,260,71,0.9650149296219585],[114,260,72,0.972963622006845],[114,260,73,0.9792220875408774],[114,260,74,0.9841060395629819],[114,260,75,0.9878501925534598],[114,260,76,0.9906257571878389],[114,260,77,0.9925501484449084],[114,260,78,0.9936955676326871],[114,260,79,0.994096458332351],[114,261,64,0.8266272279283498],[114,261,65,0.8571777807556948],[114,261,66,0.884526103453094],[114,261,67,0.9086363849220356],[114,261,68,0.9295466833913346],[114,261,69,0.9473753695858471],[114,261,70,0.9623273368448053],[114,261,71,0.9746999781897142],[114,261,72,0.9848883282464362],[114,261,73,0.9933163394127916],[114,261,74,1.0002890445771377],[114,261,75,1.0060293476404099],[114,261,76,1.0106971380032013],[114,261,77,1.0143992328780687],[114,261,78,1.0171981635035439],[114,261,79,1.0191198052598769],[114,262,64,0.814070457172463],[114,262,65,0.8470830720338791],[114,262,66,0.8768569518961267],[114,262,67,0.9033455037642211],[114,262,68,0.9265780362246611],[114,262,69,0.9466665925227035],[114,262,70,0.9638125554531257],[114,262,71,0.9783130240644123],[114,262,72,0.9905663029017869],[114,262,73,1.000997701844177],[114,262,74,1.0099048314385035],[114,262,75,1.0175019274973967],[114,262,76,1.0239402227953842],[114,262,77,1.0293181362900863],[114,262,78,1.0336902777328874],[114,262,79,1.0370752676691137],[114,263,64,0.7972205759415831],[114,263,65,0.832425673172214],[114,263,66,0.8643667448023182],[114,263,67,0.8929868340623414],[114,263,68,0.91830662336544],[114,263,69,0.9404316258319013],[114,263,70,0.959559154579865],[114,263,71,0.9759850697822877],[114,263,72,0.9901096077318585],[114,263,73,1.0023596489645261],[114,263,74,1.013028743883207],[114,263,75,1.0223257201359202],[114,263,76,1.030395935513959],[114,263,77,1.0373317243738083],[114,263,78,1.0431816325917918],[114,263,79,1.0479584410514806],[114,264,64,0.7764032506057479],[114,264,65,0.8135143501620753],[114,264,66,0.847347358994476],[114,264,67,0.8778354500829738],[114,264,68,0.9049908663636553],[114,264,69,0.9289124362845964],[114,264,70,0.9497928740738998],[114,264,71,0.9679258647197684],[114,264,72,0.9837122224805915],[114,264,73,0.9975806070567371],[114,264,74,1.0098239263107875],[114,264,75,1.0206489301606132],[114,264,76,1.0301979599309492],[114,264,77,1.038559659734209],[114,264,78,1.0457784513108184],[114,264,79,1.0518627723290943],[114,265,64,0.7519900353035676],[114,265,65,0.7907084739875796],[114,265,66,0.826145859525751],[114,265,67,0.8582260510209008],[114,265,68,0.8869530932178912],[114,265,69,0.9124190192319994],[114,265,70,0.9348114458143274],[114,265,71,0.9544209611541702],[114,265,72,0.9716475997606273],[114,265,73,0.9869219956782602],[114,265,74,1.0005398368842198],[114,265,75,1.012709147895455],[114,265,76,1.0235721471686565],[114,265,77,1.0332162285884894],[114,265,78,1.0416836832274299],[114,265,79,1.0489801613772283],[114,266,64,0.7243905779209768],[114,266,65,0.7644107547296869],[114,266,66,0.8011577694754791],[114,266,67,0.8345467707222156],[114,266,68,0.864573888975208],[114,266,69,0.8913242878446086],[114,266,70,0.9149800163177335],[114,266,71,0.9358276621402439],[114,266,72,0.9542651275363032],[114,266,73,0.9707251921627559],[114,266,74,0.9855097002458837],[114,266,75,0.9988312752678318],[114,266,76,1.010834898411018],[114,266,77,1.0216091626665087],[114,266,78,1.031196245983954],[114,266,79,1.0396006034631258],[114,267,64,0.6940436375298226],[114,267,65,0.735058792692069],[114,267,66,0.7728191648133558],[114,267,67,0.8072318227500451],[114,267,68,0.8382852938690419],[114,267,69,0.8660578236486005],[114,267,70,0.8907254455560363],[114,267,71,0.9125698612022647],[114,267,72,0.9319854992055459],[114,267,73,0.949407419501802],[114,267,74,0.9651468998489721],[114,267,75,0.9794244084498778],[114,267,76,0.9923905227978722],[114,267,77,1.004137456310873],[114,267,78,1.0147092847753636],[114,267,79,1.024110872600394],[114,268,64,0.6614069132864996],[114,268,65,0.7031154465490002],[114,268,66,0.7415975943322588],[114,268,67,0.7767529807932345],[114,268,68,0.8085628489955164],[114,268,69,0.8370984883598188],[114,268,70,0.8625294819853802],[114,268,71,0.8851317738421749],[114,268,72,0.9052949912812001],[114,268,73,0.9234565576072381],[114,268,74,0.939940309904931],[114,268,75,0.9549776772577168],[114,268,76,0.968727570502766],[114,268,77,0.9812881787773351],[114,268,78,0.9927074486475502],[114,268,79,1.002992245819666],[114,269,64,0.6269456847901067],[114,269,65,0.6690580185147278],[114,269,66,0.7079818246491645],[114,269,67,0.743609894417438],[114,269,68,0.7759164895275998],[114,269,69,0.8049658970147789],[114,269,70,0.8309208137855009],[114,269,71,0.8540505608631981],[114,269,72,0.8747386486712051],[114,269,73,0.8934248779535412],[114,269,74,0.9104485669463455],[114,269,75,0.9260550413080091],[114,269,76,0.9404141409937262],[114,269,77,0.953632281734928],[114,269,78,0.9657631838455191],[114,269,79,0.9768172683549685],[114,270,64,0.5911202639004356],[114,270,65,0.633366256534643],[114,270,66,0.6724704102744694],[114,270,67,0.708319240158921],[114,270,68,0.7408802854674211],[114,270,69,0.7702107523990015],[114,270,70,0.7964659963098627],[114,270,71,0.8199078435092202],[114,270,72,0.840912377557923],[114,270,73,0.859921701600544],[114,270,74,0.8772932810055696],[114,270,75,0.8932890429321141],[114,270,76,0.9080921664772879],[114,270,77,0.9218194019661256],[114,270,78,0.9345320442117908],[114,270,79,0.9462455597460793],[114,271,64,0.5543722580160435],[114,271,65,0.596509173498481],[114,271,66,0.6355590887499494],[114,271,67,0.671402707961302],[114,271,68,0.704001029936945],[114,271,69,0.7334040407728665],[114,271,70,0.7597592557467545],[114,271,71,0.7833201104201104],[114,271,72,0.8044539458767693],[114,271,73,0.8236049805966308],[114,271,74,0.8411511864092167],[114,271,75,0.8573735168479573],[114,271,76,0.8724706705258589],[114,271,77,0.8865716592670958],[114,271,78,0.8997470186350607],[114,271,79,0.9120186608569015],[114,272,64,0.5171096448118806],[114,272,65,0.5589306834750614],[114,272,66,0.5977270008548798],[114,272,67,0.6333738229547758],[114,272,68,0.6658256750065945],[114,272,69,0.6951250888946062],[114,272,70,0.7214111689909862],[114,272,71,0.7449280164026656],[114,272,72,0.766032891393861],[114,272,73,0.7851718027621523],[114,272,74,0.8027452321882997],[114,272,75,0.8190552565894315],[114,272,76,0.8343180018882889],[114,272,77,0.8486764495479358],[114,272,78,0.8622118755490452],[114,272,79,0.8749539218098232],[114,273,64,0.479690658436575],[114,273,65,0.5210340549686248],[114,273,66,0.5594217358803504],[114,273,67,0.5947236025778269],[114,273,68,0.6268876150617816],[114,273,69,0.6559484823403529],[114,273,70,0.6820362197260762],[114,273,71,0.7053845730170125],[114,273,72,0.7263393373824883],[114,273,73,0.7453478198528367],[114,273,74,0.7628346121037457],[114,273,75,0.7791246376930143],[114,273,76,0.7944530434832807],[114,273,77,0.8089782331325098],[114,273,78,0.8227935244810927],[114,273,79,0.8359374308356058],[114,274,64,0.442449709988463],[114,274,65,0.4832021409219759],[114,274,66,0.521073942801102],[114,274,67,0.5559296486273805],[114,274,68,0.5877103857804826],[114,274,69,0.6164425217027191],[114,274,70,0.6422461839634899],[114,274,71,0.6653436547035856],[114,274,72,0.6860678268128066],[114,274,73,0.7048666338186849],[114,274,74,0.7221899461271085],[114,274,75,0.7383868533010018],[114,274,76,0.7537127726761315],[114,274,77,0.7683426978388112],[114,274,78,0.7823830636414588],[114,274,79,0.7958822277560542],[114,275,64,0.40599053771108473],[114,275,65,0.4460443287946052],[114,275,66,0.4832984152407727],[114,275,67,0.517611947513522],[114,275,68,0.5489189951067548],[114,275,69,0.577237121328816],[114,275,70,0.6026758390777344],[114,275,71,0.6254449476071471],[114,275,72,0.6458631068513324],[114,275,73,0.6643781607205154],[114,275,74,0.6814660981629587],[114,275,75,0.6975011658582356],[114,275,76,0.7127600065318336],[114,275,77,0.7274351099988585],[114,275,78,0.7416468746630911],[114,275,79,0.755454279471447],[114,276,64,0.37097415452261867],[114,276,65,0.4102089432876428],[114,276,66,0.4467307335265071],[114,276,67,0.48039340606204844],[114,276,68,0.5111238832918834],[114,276,69,0.53893060751908],[114,276,70,0.5639119062553059],[114,276,71,0.5862642444963658],[114,276,72,0.6062908976296929],[114,276,73,0.6244389239318671],[114,276,74,0.6412109932667447],[114,276,75,0.6570072100300192],[114,276,76,0.6721261268615591],[114,276,77,0.6867783856460894],[114,276,78,0.7010989643803128],[114,276,79,0.7151580299065263],[114,277,64,0.3379300326091247],[114,277,65,0.37621922629584315],[114,277,66,0.41188785583874354],[114,277,67,0.44478473638545446],[114,277,68,0.47482965611557904],[114,277,69,0.502021733860532],[114,277,70,0.5264476692913911],[114,277,71,0.5482898856746784],[114,277,72,0.5678352820545722],[114,277,73,0.5855294440521589],[114,277,74,0.6019020036720452],[114,277,75,0.6173793287713634],[114,277,76,0.632282290816359],[114,277,77,0.646840083569233],[114,277,78,0.6612026447128212],[114,277,79,0.675451680413157],[114,278,64,0.3072488236082325],[114,278,65,0.3444655926579634],[114,278,66,0.37915992039153956],[114,278,67,0.4111758160608111],[114,278,68,0.44042601497569167],[114,278,69,0.4669001930857161],[114,278,70,0.4906730795705283],[114,278,71,0.5119124674392201],[114,278,72,0.5308880266253968],[114,278,73,0.5480431839014568],[114,278,74,0.5639345407781478],[114,278,75,0.5790148456782547],[114,278,76,0.5936274261368634],[114,278,77,0.6080201738061817],[114,278,78,0.6223581312450014],[114,278,79,0.6367346804928432],[114,279,64,0.27917522852916427],[114,279,65,0.3151978660107284],[114,279,66,0.3488018624111096],[114,279,67,0.37982670278041164],[114,279,68,0.4081781866620392],[114,279,69,0.4338364798126244],[114,279,70,0.4568640694401066],[114,279,71,0.47741362295987877],[114,279,72,0.4957368452818327],[114,279,73,0.5122743140477247],[114,279,74,0.5276093529197299],[114,279,75,0.542220936870468],[114,279,76,0.5564747287628268],[114,279,77,0.5706372208143157],[114,279,78,0.5848884785320615],[114,279,79,0.5993334871184931],[114,280,64,0.2537996905047714],[114,280,65,0.28851635590610597],[114,280,66,0.32092389375566693],[114,280,67,0.3508575356189829],[114,280,68,0.3782162659161582],[114,280,69,0.4029706939770191],[114,280,70,0.42517083540895234],[114,280,71,0.44495380277735447],[114,280,72,0.46255269271035815],[114,280,73,0.47840453739832445],[114,280,74,0.4931189119295244],[114,280,75,0.5072006218776104],[114,280,76,0.5210373104254409],[114,280,77,0.5349137485960732],[114,280,78,0.5490247304923886],[114,280,79,0.5634865735454033],[114,281,64,0.23104891037486106],[114,281,65,0.26436177619108603],[114,281,66,0.2954808451757007],[114,281,67,0.3242373229165123],[114,281,68,0.35052347077596546],[114,281,69,0.3743002849560831],[114,281,70,0.395605091169859],[114,281,71,0.4145590549190197],[114,281,72,0.43137608710864994],[114,281,73,0.4464889728544387],[114,281,74,0.4605328884925903],[114,281,75,0.4740378735269707],[114,281,76,0.48741299622094364],[114,281,77,0.5009607877782462],[114,281,78,0.5148902858845659],[114,281,79,0.5293286876098737],[114,282,64,0.21067518510111435],[114,282,65,0.24250400465034766],[114,282,66,0.27226037121513413],[114,282,67,0.29977161677721886],[114,282,68,0.3249233107059193],[114,282,69,0.34766673638405093],[114,282,70,0.36802629044678714],[114,282,71,0.3861068046333711],[114,282,72,0.40210246240863395],[114,282,73,0.41644109802933804],[114,282,74,0.4297827162931637],[114,282,75,0.4426818468341977],[114,282,76,0.45556827216659856],[114,282,77,0.4687616046461281],[114,282,78,0.48248447887022394],[114,282,79,0.49687435951666037],[114,283,64,0.19224456901411774],[114,283,65,0.22252968391226152],[114,283,66,0.2508700177537488],[114,283,67,0.2770890741849735],[114,283,68,0.30106566751292274],[114,283,69,0.32274119165999443],[114,283,70,0.34212681966683245],[114,283,71,0.3593106337430977],[114,283,72,0.3744665499581599],[114,283,73,0.3880167510303782],[114,283,74,0.40064524495391685],[114,283,75,0.4129302268965783],[114,283,76,0.42532138273875475],[114,283,77,0.43815461213216234],[114,283,78,0.4516653746623181],[114,283,79,0.4660006591148098],[114,284,64,0.17514567652896176],[114,284,65,0.2038502001685869],[114,284,66,0.23074438160471888],[114,284,67,0.2556478048953268],[114,284,68,0.2784323410935306],[114,284,69,0.2990292087710008],[114,284,70,0.31743597417071295],[114,284,71,0.3337234909889804],[114,284,72,0.3480448354320825],[114,284,73,0.36081584500613806],[114,284,74,0.37274372175680415],[114,284,75,0.38442948700902824],[114,284,76,0.3963418754194431],[114,284,77,0.40883221257421043],[114,284,78,0.42214792476485735],[114,284,79,0.43644468094216615],[114,285,64,0.1592474567738153],[114,285,65,0.18635059340248342],[114,285,66,0.21178438807426359],[114,285,67,0.23536434049639166],[114,285,68,0.2569551363195286],[114,285,69,0.276477502337645],[114,285,70,0.2939150116624173],[114,285,71,0.30932083887206013],[114,285,72,0.3228267100640444],[114,285,73,0.3348413451923912],[114,285,74,0.34609397205694287],[114,285,75,0.3572072578423399],[114,285,76,0.36866784157562654],[114,285,77,0.38084137240792343],[114,285,78,0.39398619063427476],[114,285,79,0.4082656514517219],[114,286,64,0.14506843195239008],[114,286,65,0.17055760581247043],[114,286,66,0.1945238372469214],[114,286,67,0.21677840300192058],[114,286,68,0.23717861945902294],[114,286,69,0.2556344986379533],[114,286,70,0.27211536576695416],[114,286,71,0.28665643842061367],[114,286,72,0.2993677947719749],[114,286,73,0.31065011060012726],[114,286,74,0.3212526676725951],[114,286,75,0.3343323842089413],[114,286,76,0.34617208447237857],[114,286,77,0.35520190999535234],[114,286,78,0.36770932002695655],[114,286,79,0.3819771657510298],[114,287,64,0.13305797946375275],[114,287,65,0.15693054904402423],[114,287,66,0.17943064824793772],[114,287,67,0.20036522687079153],[114,287,68,0.21958411728987004],[114,287,69,0.2369865003841394],[114,287,70,0.2525273458214351],[114,287,71,0.272810936167414],[114,287,72,0.2933877282044952],[114,287,73,0.3118668070392726],[114,287,74,0.3282427458050512],[114,287,75,0.3425646521227495],[114,287,76,0.3545937062778335],[114,287,77,0.36387431985247043],[114,287,78,0.37004670024314945],[114,287,79,0.3728517404894572],[114,288,64,0.12356085435045995],[114,288,65,0.14582588723566672],[114,288,66,0.16687157756829357],[114,288,67,0.18650048130966435],[114,288,68,0.2045549048194479],[114,288,69,0.22982910250365016],[114,288,70,0.25435196035090557],[114,288,71,0.27697930604523674],[114,288,72,0.29759390100614475],[114,288,73,0.31614047391572975],[114,288,74,0.3326337034708401],[114,288,75,0.3471443383819695],[114,288,76,0.3594409632451047],[114,288,77,0.36906142657489316],[114,288,78,0.37563814792496303],[114,288,79,0.37890350985855564],[114,289,64,0.11682618429518037],[114,289,65,0.13750572965832147],[114,289,66,0.1571202334082593],[114,289,67,0.17622022895073736],[114,289,68,0.20405013890589507],[114,289,69,0.2303580690805206],[114,289,70,0.2549373783468266],[114,289,71,0.2776299832156826],[114,289,72,0.2983338904429995],[114,289,73,0.31701104165355637],[114,289,74,0.3336954699821784],[114,289,75,0.3484787250416596],[114,289,76,0.3611365720182017],[114,289,77,0.3712005229416545],[114,289,78,0.3782952435177286],[114,289,79,0.38214443655643177],[114,290,64,0.11301612560252243],[114,290,65,0.13214602059707248],[114,290,66,0.15036482253736466],[114,290,67,0.17347450514359403],[114,290,68,0.20140019181043367],[114,290,69,0.22780050304383],[114,290,70,0.25248040701151686],[114,290,71,0.2752949169053203],[114,290,72,0.2961567833002239],[114,290,73,0.3150445098963563],[114,290,74,0.33201069264380306],[114,290,75,0.3471667863160618],[114,290,76,0.36029519449798125],[114,290,77,0.37092080708489517],[114,290,78,0.3786601009924968],[114,290,79,0.3832275128739683],[114,291,64,0.11221418016721366],[114,291,65,0.1298444264763886],[114,291,66,0.14671562967176835],[114,291,67,0.16819966238678985],[114,291,68,0.19625861226455737],[114,291,69,0.22280123290982143],[114,291,70,0.24764392286512327],[114,291,71,0.2706544564632673],[114,291,72,0.2917598437447127],[114,291,73,0.3109545256224849],[114,291,74,0.3283089042945126],[114,291,75,0.3439534709112175],[114,291,76,0.3576764614971816],[114,291,77,0.3689953681035549],[114,291,78,0.37751758992186346],[114,291,79,0.382947303456247],[114,292,64,0.11443317342792975],[114,292,65,0.1306279202282024],[114,292,66,0.14621222936850142],[114,292,67,0.16097123068671731],[114,292,68,0.18900373487960748],[114,292,69,0.21574779702976948],[114,292,70,0.24082395854757654],[114,292,71,0.26411246842157965],[114,292,72,0.28555415650487664],[114,292,73,0.30515881360060026],[114,292,74,0.323013918894713],[114,292,75,0.33926816087426387],[114,292,76,0.35371508270934626],[114,292,77,0.36586443779618866],[114,292,78,0.3753140007705375],[114,292,79,0.38175694575259456],[114,293,64,0.11962289330707795],[114,293,65,0.1344600629030691],[114,293,66,0.1488304304367347],[114,293,67,0.16251502631317705],[114,293,68,0.17983972788357871],[114,293,69,0.20684732951683105],[114,293,70,0.2322301091304032],[114,293,71,0.2558805278042219],[114,293,72,0.2777528029874512],[114,293,73,0.29787147470082204],[114,293,74,0.3163403311033029],[114,293,75,0.33332538038932813],[114,293,76,0.34862539306798884],[114,293,77,0.3617428202652513],[114,293,78,0.372265909368869],[114,293,79,0.37987659853148886],[114,294,64,0.12767739013652632],[114,294,65,0.14124798252443066],[114,294,66,0.15448895286613193],[114,294,67,0.1671774271611841],[114,294,68,0.1791139984399726],[114,294,69,0.19627942889162517],[114,294,70,0.2220426705842629],[114,294,71,0.24613927605421615],[114,294,72,0.26853638270235053],[114,294,73,0.28927261876274746],[114,294,74,0.3084672235404531],[114,294,75,0.32630255117104],[114,294,76,0.3425828648684272],[114,294,77,0.35680440941933395],[114,294,78,0.36854655349822185],[114,294,79,0.37748020535299087],[114,295,64,0.1384419375690262],[114,295,65,0.15084905018575895],[114,295,66,0.16305583727207962],[114,295,67,0.17483576257326944],[114,295,68,0.18598376978896763],[114,295,69,0.19632187944761925],[114,295,70,0.21041934248915128],[114,295,71,0.23504520038068538],[114,295,72,0.25805983799018206],[114,295,73,0.27951521286586123],[114,295,74,0.29954502760443297],[114,295,75,0.3183468669816921],[114,295,76,0.3357310073606174],[114,295,77,0.35118913194843865],[114,295,78,0.3642928430519739],[114,295,79,0.37470259994940214],[114,296,64,0.15171965447575095],[114,296,65,0.16307725339093923],[114,296,66,0.17435458685810246],[114,296,67,0.18532174549605612],[114,296,68,0.19576859676541336],[114,296,69,0.2055103864371679],[114,296,70,0.21439347008548382],[114,296,71,0.22273599533157423],[114,296,72,0.24645785709518686],[114,296,73,0.26873050723069003],[114,296,74,0.28970096355818065],[114,296,75,0.3095807505267857],[114,296,76,0.32818685390795843],[114,296,77,0.3450084868955471],[114,296,78,0.35961098115887447],[114,296,79,0.37164524346577377],[114,297,64,0.16727778782953256],[114,297,65,0.17770926663753198],[114,297,66,0.18817004189515538],[114,297,67,0.19842716652610143],[114,297,68,0.20826607360653343],[114,297,69,0.21749621199873215],[114,297,70,0.2259568316921178],[114,297,71,0.2335229188515846],[114,297,72,0.24011439178524188],[114,297,73,0.25703288765197635],[114,297,74,0.27904392851113496],[114,297,75,0.30010678092468634],[114,297,76,0.32004594307001777],[114,297,77,0.338350602758826],[114,297,78,0.3545816263208609],[114,297,79,0.3683815257233846],[114,298,64,0.1848536565740836],[114,298,65,0.19449021924316956],[114,298,66,0.20425398671801645],[114,298,67,0.2139093547200151],[114,298,68,0.22323802795424905],[114,298,69,0.23204471985835323],[114,298,70,0.2401630217283658],[114,298,71,0.24746144122151956],[114,298,72,0.25385262045340906],[114,298,73,0.2595677148841658],[114,298,74,0.26766883229690946],[114,298,75,0.29001209175095977],[114,298,76,0.3113867936097272],[114,298,77,0.3312848121249957],[114,298,78,0.34926459556583944],[114,298,79,0.3649616305066776],[114,299,64,0.2041602564790055],[114,299,65,0.2131391604149026],[114,299,66,0.22233048923860693],[114,299,67,0.23149640516868325],[114,299,68,0.2404156492476118],[114,299,69,0.24888933516300488],[114,299,70,0.25674693196093723],[114,299,71,0.26385243565134187],[114,299,72,0.2701136106464556],[114,299,73,0.2757447061910421],[114,299,74,0.28138347600172975],[114,299,75,0.287578143328179],[114,299,76,0.3022748734241899],[114,299,77,0.3238657438330383],[114,299,78,0.34370310861464115],[114,299,79,0.36141696487289987],[114,300,64,0.22489152598088263],[114,300,65,0.2333542215617796],[114,300,66,0.24210097297652017],[114,300,67,0.2508921733358763],[114,300,68,0.25950441709269173],[114,300,69,0.2677364175257694],[114,300,70,0.27541513233718984],[114,300,71,0.2824020973630099],[114,300,72,0.28860269280885364],[114,300,73,0.29421464608118586],[114,300,74,0.2998360676858131],[114,300,75,0.3059786838623251],[114,300,76,0.3130282999284976],[114,300,77,0.32125831459593823],[114,300,78,0.33792757306253984],[114,300,79,0.35776415248481874],[114,301,64,0.24672727300995112],[114,301,65,0.2548174758501751],[114,301,66,0.26324902160627633],[114,301,67,0.2717810361607693],[114,301,68,0.28018882960945685],[114,301,69,0.28826996626078494],[114,301,70,0.29585056154001665],[114,301,71,0.30279180579817744],[114,301,72,0.30899925700507525],[114,301,73,0.3146547012517359],[114,301,74,0.3203132696280633],[114,301,75,0.32644702819163185],[114,301,76,0.33340841683635286],[114,301,77,0.3414432972577566],[114,301,78,0.35070314075648695],[114,301,79,0.36125635588004823],[114,302,64,0.2693377628028534],[114,302,65,0.27719949500235097],[114,302,66,0.28544491602178756],[114,302,67,0.29383241992484993],[114,302,68,0.30213693175612066],[114,302,69,0.3101561578084562],[114,302,70,0.31771708102525215],[114,302,71,0.32468270153755263],[114,302,72,0.3309613576330341],[114,302,73,0.3367196659461183],[114,302,74,0.34246688022237065],[114,302,75,0.3486326508399031],[114,302,76,0.35553385219908007],[114,302,77,0.36338712602612544],[114,302,78,0.37232061219099044],[114,302,79,0.3823848670395218],[114,303,64,0.2923879667014157],[114,303,65,0.3001636033381968],[114,303,66,0.30834990391796685],[114,303,67,0.3167050948831358],[114,303,68,0.3250046436308563],[114,303,69,0.33304771535079447],[114,303,70,0.3406638925414187],[114,303,71,0.34772015720475513],[114,303,72,0.35413024201853893],[114,303,73,0.36004654942853587],[114,303,74,0.3659300309063169],[114,303,75,0.3721656065156552],[114,303,76,0.3790327610112012],[114,303,77,0.38671754796910796],[114,303,78,0.39532382964841084],[114,303,79,0.4048837525831979],[114,304,64,0.31554147193682236],[114,304,65,0.32336982905954004],[114,304,66,0.3316202018889046],[114,304,67,0.3400512366591672],[114,304,68,0.3484398887503908],[114,304,69,0.3565881106164606],[114,304,70,0.3643298191314633],[114,304,71,0.37153814235439525],[114,304,72,0.37813480289056145],[114,304,73,0.3842591167119608],[114,304,74,0.3903218094565985],[114,304,75,0.3966612244114147],[114,304,76,0.40351803025033794],[114,304,77,0.4110466556401943],[114,304,78,0.4193260080150535],[114,304,79,0.42836947651904284],[114,305,64,0.33846405240019617],[114,305,65,0.34647855277799977],[114,305,66,0.3549107300435379],[114,305,67,0.36352025440463676],[114,305,68,0.3720865223062801],[114,305,69,0.3804155978762308],[114,305,70,0.38834744961711304],[114,305,71,0.39576348234491154],[114,305,72,0.40259595473775606],[114,305,73,0.4089723825399583],[114,305,74,0.41525186520831664],[114,305,75,0.4217248121939942],[114,305,76,0.4285920639559409],[114,305,77,0.4359757311648499],[114,305,78,0.44392936641342146],[114,305,79,0.452447468432966],[114,306,64,0.36082690039882764],[114,306,65,0.369153853285668],[114,306,66,0.3778785791381476],[114,306,67,0.38676238572305743],[114,306,68,0.39558805939832653],[114,306,69,0.40416708012843067],[114,306,70,0.4123471465654728],[114,306,71,0.4200200111958845],[114,306,72,0.42713093404604663],[114,306,73,0.43379705862226203],[114,306,74,0.4403249961981449],[114,306,75,0.4469563696858709],[114,306,76,0.4538516046731692],[114,306,77,0.46110015209525973],[114,306,78,0.46873009133237153],[114,306,79,0.47671711373287284],[114,307,64,0.38230951939822966],[114,307,65,0.3910665505687554],[114,307,66,0.40018621022577344],[114,307,67,0.40943205835750013],[114,307,68,0.4185912032451143],[114,307,69,0.42748180747423925],[114,307,70,0.4359609177377116],[114,307,71,0.4439326184295888],[114,307,72,0.4513575234169594],[114,307,73,0.45834395412369355],[114,307,74,0.46514571823088946],[114,307,75,0.4719553122370908],[114,307,76,0.47889259126125827],[114,307,77,0.4860143590325362],[114,307,78,0.49332338549368004],[114,307,79,0.5007768520181701],[114,308,64,0.4026022777500484],[114,308,65,0.41189694606427313],[114,308,66,0.421504386822667],[114,308,67,0.43119101864257947],[114,308,68,0.44074917337190206],[114,308,69,0.4500049076831688],[114,308,70,0.4588261510201975],[114,308,71,0.467131189897222],[114,308,72,0.47489819956721835],[114,308,73,0.48222832940701976],[114,308,74,0.489322815870112],[114,308,75,0.496325203788454],[114,308,76,0.5033150530672074],[114,308,77,0.510316885017282],[114,308,78,0.5173086024559761],[114,308,79,0.5242293835757369],[114,309,64,0.421408623406347],[114,309,65,0.43133726016021734],[114,309,66,0.44151483959218896],[114,309,67,0.4517112267210193],[114,309,68,0.46172483377612517],[114,309,69,0.4713907489488989],[114,309,70,0.48058921283817724],[114,309,71,0.48925444258981504],[114,309,72,0.49738420520951304],[114,309,73,0.5050742030295676],[114,309,74,0.5124738753525372],[114,309,75,0.5196784996255998],[114,309,76,0.5267280404643108],[114,309,77,0.533615446687947],[114,309,78,0.5402944669554004],[114,309,79,0.5466869840016356],[114,310,64,0.43844695961881996],[114,310,65,0.4490937669378791],[114,310,66,0.4599126635448481],[114,310,67,0.4706775185235945],[114,310,68,0.48119362106940633],[114,310,69,0.49130613483445496],[114,310,70,0.5009089100511084],[114,310,71,0.50995365343305],[114,310,72,0.5184595448137882],[114,310,73,0.5265186119930587],[114,310,74,0.534229799425837],[114,310,75,0.5416412988237141],[114,310,76,0.5487545917553821],[114,310,77,0.5555320972069584],[114,310,78,0.5619043809830783],[114,310,79,0.5677769269487816],[114,311,64,0.4534521816248958],[114,311,65,0.464888626158159],[114,311,66,0.47640844775627994],[114,311,67,0.4877900345141336],[114,311,68,0.49884627259764447],[114,311,69,0.509433331408198],[114,311,70,0.5194598153309783],[114,311,71,0.5288962820671823],[114,311,72,0.5377849042501103],[114,311,73,0.5462158252475986],[114,311,74,0.5542393041105798],[114,311,75,0.5618581063835028],[114,311,76,0.5690367364411744],[114,311,77,0.575708440954971],[114,311,78,0.5817818155996332],[114,311,79,0.5871470150006461],[114,312,64,0.46617687431906524],[114,312,65,0.47846141249030727],[114,312,66,0.4907301376016643],[114,312,67,0.5027664151981898],[114,312,68,0.5143913545378973],[114,312,69,0.5254729265694413],[114,312,70,0.5359354560225453],[114,312,71,0.5457694876111367],[114,312,72,0.5550414943123188],[114,312,73,0.5638415104491303],[114,312,74,0.5721733973857867],[114,312,75,0.5799966050580103],[114,312,76,0.5872405348536951],[114,312,77,0.5938109099930775],[114,312,78,0.5995957884866832],[114,312,79,0.6044712186710628],[114,313,64,0.476392170910392],[114,313,65,0.4895703419839665],[114,313,66,0.502624629507385],[114,313,67,0.5153437633960909],[114,313,68,0.5275575899726789],[114,313,69,0.5391465215642242],[114,313,70,0.5500513664859368],[114,313,71,0.5602835394110961],[114,313,72,0.5699348181226598],[114,313,73,0.5790968539704757],[114,313,74,0.5877298397981183],[114,313,75,0.5957524368701889],[114,313,76,0.6030611541542411],[114,313,77,0.6095361022927014],[114,313,78,0.6150464272349682],[114,313,79,0.6194554235297047],[114,314,64,0.4838882725655832],[114,314,65,0.4979931957839678],[114,314,66,0.5118590982194589],[114,314,67,0.5252803732799778],[114,314,68,0.5380959869413586],[114,314,69,0.5501992546910205],[114,314,70,0.5615480039214635],[114,314,71,0.5721751217735468],[114,314,72,0.5821983624174755],[114,314,73,0.591712634166101],[114,314,74,0.6006375869949098],[114,314,75,0.6088539943215404],[114,314,76,0.6162279806965333],[114,314,77,0.6226161817336312],[114,314,78,0.6278706183696329],[114,314,79,0.6318432854538121],[114,315,64,0.4884746290385963],[114,315,65,0.5035279410887888],[114,315,66,0.5182220565895576],[114,315,67,0.5323572261755745],[114,315,68,0.545781766469326],[114,315,69,0.5584021571969426],[114,315,70,0.5701935276771283],[114,315,71,0.5812105326831476],[114,315,72,0.5915972127142053],[114,315,73,0.6014532478907884],[114,315,74,0.6106612141811445],[114,315,75,0.6190672212918193],[114,315,76,0.6265097687548724],[114,315,77,0.6328243398700311],[114,315,78,0.6378477421124159],[114,315,79,0.6414221940058511],[114,316,64,0.48997978028535094],[114,316,65,0.5059930493512967],[114,316,66,0.5215241478773276],[114,316,67,0.5363792531274636],[114,316,68,0.5504160905737717],[114,316,69,0.5635543413633973],[114,316,70,0.5757864420378613],[114,316,71,0.5871887765045692],[114,316,72,0.597931592358949],[114,316,73,0.6081206902715446],[114,316,74,0.6176053224998002],[114,316,75,0.6262004236293237],[114,316,76,0.633719825616923],[114,316,77,0.6399803194641317],[114,316,78,0.6448054928805492],[114,316,79,0.6480293439370015],[114,317,64,0.4882508590646375],[114,317,65,0.5052275117228464],[114,317,66,0.5215986705700313],[114,317,67,0.5371763642288641],[114,317,68,0.5518275902470371],[114,317,69,0.5654850207820779],[114,317,70,0.5781581024973322],[114,317,71,0.5899445506690729],[114,317,72,0.601040325455308],[114,317,73,0.6115584877334134],[114,317,74,0.6213189273361611],[114,317,75,0.630109089432318],[114,317,76,0.6377212330416149],[114,317,77,0.6439559997880225],[114,317,78,0.6486257855227182],[114,317,79,0.6515579148167472],[114,318,64,0.4831527545253593],[114,318,65,0.5010905517408486],[114,318,66,0.5183018357196106],[114,318,67,0.5346042447159755],[114,318,68,0.5498736934175844],[114,318,69,0.564055362821338],[114,318,70,0.5771750855123478],[114,318,71,0.5893511263458519],[114,318,72,0.6008042236744918],[114,318,73,0.6116555842791633],[114,318,74,0.6216998285460701],[114,318,75,0.630700719021536],[114,318,76,0.6384321050820991],[114,318,77,0.6446810436934814],[114,318,78,0.6492507472920137],[114,318,79,0.651963358788512],[114,319,64,0.47456693677868306],[114,319,65,0.4934610352584372],[114,319,66,0.5115127567958684],[114,319,67,0.5285449178256694],[114,319,68,0.5444417528874288],[114,319,69,0.5591601732818643],[114,319,70,0.5727414217388496],[114,319,71,0.5853231230971943],[114,319,72,0.5971493969458637],[114,319,73,0.6083501810220973],[114,319,74,0.6186989626074327],[114,319,75,0.6279396646031682],[114,319,76,0.6358308822732363],[114,319,77,0.6421486064493866],[114,319,78,0.6466887955554989],[114,319,79,0.649269796451022],[115,-64,64,64.0],[115,-64,65,64.0],[115,-64,66,64.0],[115,-64,67,64.0],[115,-64,68,64.0],[115,-64,69,64.0],[115,-64,70,64.0],[115,-64,71,64.0],[115,-64,72,64.0],[115,-64,73,64.0],[115,-64,74,64.0],[115,-64,75,64.0],[115,-64,76,64.0],[115,-64,77,64.0],[115,-64,78,64.0],[115,-64,79,64.0],[115,-63,64,64.0],[115,-63,65,64.0],[115,-63,66,64.0],[115,-63,67,64.0],[115,-63,68,64.0],[115,-63,69,64.0],[115,-63,70,64.0],[115,-63,71,64.0],[115,-63,72,64.0],[115,-63,73,64.0],[115,-63,74,64.0],[115,-63,75,64.0],[115,-63,76,64.0],[115,-63,77,64.0],[115,-63,78,64.0],[115,-63,79,64.0],[115,-62,64,64.0],[115,-62,65,64.0],[115,-62,66,64.0],[115,-62,67,64.0],[115,-62,68,64.0],[115,-62,69,64.0],[115,-62,70,64.0],[115,-62,71,64.0],[115,-62,72,64.0],[115,-62,73,64.0],[115,-62,74,64.0],[115,-62,75,64.0],[115,-62,76,64.0],[115,-62,77,64.0],[115,-62,78,64.0],[115,-62,79,64.0],[115,-61,64,64.0],[115,-61,65,64.0],[115,-61,66,64.0],[115,-61,67,64.0],[115,-61,68,64.0],[115,-61,69,64.0],[115,-61,70,64.0],[115,-61,71,64.0],[115,-61,72,64.0],[115,-61,73,64.0],[115,-61,74,64.0],[115,-61,75,64.0],[115,-61,76,64.0],[115,-61,77,64.0],[115,-61,78,64.0],[115,-61,79,64.0],[115,-60,64,64.0],[115,-60,65,64.0],[115,-60,66,64.0],[115,-60,67,64.0],[115,-60,68,64.0],[115,-60,69,64.0],[115,-60,70,64.0],[115,-60,71,64.0],[115,-60,72,64.0],[115,-60,73,64.0],[115,-60,74,64.0],[115,-60,75,64.0],[115,-60,76,64.0],[115,-60,77,64.0],[115,-60,78,64.0],[115,-60,79,64.0],[115,-59,64,64.0],[115,-59,65,64.0],[115,-59,66,64.0],[115,-59,67,64.0],[115,-59,68,64.0],[115,-59,69,64.0],[115,-59,70,64.0],[115,-59,71,64.0],[115,-59,72,64.0],[115,-59,73,64.0],[115,-59,74,64.0],[115,-59,75,64.0],[115,-59,76,64.0],[115,-59,77,64.0],[115,-59,78,64.0],[115,-59,79,64.0],[115,-58,64,64.0],[115,-58,65,64.0],[115,-58,66,64.0],[115,-58,67,64.0],[115,-58,68,64.0],[115,-58,69,64.0],[115,-58,70,64.0],[115,-58,71,64.0],[115,-58,72,64.0],[115,-58,73,64.0],[115,-58,74,64.0],[115,-58,75,64.0],[115,-58,76,64.0],[115,-58,77,64.0],[115,-58,78,64.0],[115,-58,79,64.0],[115,-57,64,64.0],[115,-57,65,64.0],[115,-57,66,64.0],[115,-57,67,64.0],[115,-57,68,64.0],[115,-57,69,64.0],[115,-57,70,64.0],[115,-57,71,64.0],[115,-57,72,64.0],[115,-57,73,64.0],[115,-57,74,64.0],[115,-57,75,64.0],[115,-57,76,64.0],[115,-57,77,64.0],[115,-57,78,64.0],[115,-57,79,64.0],[115,-56,64,64.0],[115,-56,65,64.0],[115,-56,66,64.0],[115,-56,67,64.0],[115,-56,68,64.0],[115,-56,69,64.0],[115,-56,70,64.0],[115,-56,71,64.0],[115,-56,72,64.0],[115,-56,73,64.0],[115,-56,74,64.0],[115,-56,75,64.0],[115,-56,76,64.0],[115,-56,77,64.0],[115,-56,78,64.0],[115,-56,79,64.0],[115,-55,64,64.0],[115,-55,65,64.0],[115,-55,66,64.0],[115,-55,67,64.0],[115,-55,68,64.0],[115,-55,69,64.0],[115,-55,70,64.0],[115,-55,71,64.0],[115,-55,72,64.0],[115,-55,73,64.0],[115,-55,74,64.0],[115,-55,75,64.0],[115,-55,76,64.0],[115,-55,77,64.0],[115,-55,78,64.0],[115,-55,79,64.0],[115,-54,64,64.0],[115,-54,65,64.0],[115,-54,66,64.0],[115,-54,67,64.0],[115,-54,68,64.0],[115,-54,69,64.0],[115,-54,70,64.0],[115,-54,71,64.0],[115,-54,72,64.0],[115,-54,73,64.0],[115,-54,74,64.0],[115,-54,75,64.0],[115,-54,76,64.0],[115,-54,77,64.0],[115,-54,78,64.0],[115,-54,79,64.0],[115,-53,64,64.0],[115,-53,65,64.0],[115,-53,66,64.0],[115,-53,67,64.0],[115,-53,68,64.0],[115,-53,69,64.0],[115,-53,70,64.0],[115,-53,71,64.0],[115,-53,72,64.0],[115,-53,73,64.0],[115,-53,74,64.0],[115,-53,75,64.0],[115,-53,76,64.0],[115,-53,77,64.0],[115,-53,78,64.0],[115,-53,79,64.0],[115,-52,64,64.0],[115,-52,65,64.0],[115,-52,66,64.0],[115,-52,67,64.0],[115,-52,68,64.0],[115,-52,69,64.0],[115,-52,70,64.0],[115,-52,71,64.0],[115,-52,72,64.0],[115,-52,73,64.0],[115,-52,74,64.0],[115,-52,75,64.0],[115,-52,76,64.0],[115,-52,77,64.0],[115,-52,78,64.0],[115,-52,79,64.0],[115,-51,64,64.0],[115,-51,65,64.0],[115,-51,66,64.0],[115,-51,67,64.0],[115,-51,68,64.0],[115,-51,69,64.0],[115,-51,70,64.0],[115,-51,71,64.0],[115,-51,72,64.0],[115,-51,73,64.0],[115,-51,74,64.0],[115,-51,75,64.0],[115,-51,76,64.0],[115,-51,77,64.0],[115,-51,78,64.0],[115,-51,79,64.0],[115,-50,64,64.0],[115,-50,65,64.0],[115,-50,66,64.0],[115,-50,67,64.0],[115,-50,68,64.0],[115,-50,69,64.0],[115,-50,70,64.0],[115,-50,71,64.0],[115,-50,72,64.0],[115,-50,73,64.0],[115,-50,74,64.0],[115,-50,75,64.0],[115,-50,76,64.0],[115,-50,77,64.0],[115,-50,78,64.0],[115,-50,79,64.0],[115,-49,64,64.0],[115,-49,65,64.0],[115,-49,66,64.0],[115,-49,67,64.0],[115,-49,68,64.0],[115,-49,69,64.0],[115,-49,70,64.0],[115,-49,71,64.0],[115,-49,72,64.0],[115,-49,73,64.0],[115,-49,74,64.0],[115,-49,75,64.0],[115,-49,76,64.0],[115,-49,77,64.0],[115,-49,78,64.0],[115,-49,79,64.0],[115,-48,64,64.0],[115,-48,65,64.0],[115,-48,66,64.0],[115,-48,67,64.0],[115,-48,68,64.0],[115,-48,69,64.0],[115,-48,70,64.0],[115,-48,71,64.0],[115,-48,72,64.0],[115,-48,73,64.0],[115,-48,74,64.0],[115,-48,75,64.0],[115,-48,76,64.0],[115,-48,77,64.0],[115,-48,78,64.0],[115,-48,79,64.0],[115,-47,64,64.0],[115,-47,65,64.0],[115,-47,66,64.0],[115,-47,67,64.0],[115,-47,68,64.0],[115,-47,69,64.0],[115,-47,70,64.0],[115,-47,71,64.0],[115,-47,72,64.0],[115,-47,73,64.0],[115,-47,74,64.0],[115,-47,75,64.0],[115,-47,76,64.0],[115,-47,77,64.0],[115,-47,78,64.0],[115,-47,79,64.0],[115,-46,64,64.0],[115,-46,65,64.0],[115,-46,66,64.0],[115,-46,67,64.0],[115,-46,68,64.0],[115,-46,69,64.0],[115,-46,70,64.0],[115,-46,71,64.0],[115,-46,72,64.0],[115,-46,73,64.0],[115,-46,74,64.0],[115,-46,75,64.0],[115,-46,76,64.0],[115,-46,77,64.0],[115,-46,78,64.0],[115,-46,79,64.0],[115,-45,64,64.0],[115,-45,65,64.0],[115,-45,66,64.0],[115,-45,67,64.0],[115,-45,68,64.0],[115,-45,69,64.0],[115,-45,70,64.0],[115,-45,71,64.0],[115,-45,72,64.0],[115,-45,73,64.0],[115,-45,74,64.0],[115,-45,75,64.0],[115,-45,76,64.0],[115,-45,77,64.0],[115,-45,78,64.0],[115,-45,79,64.0],[115,-44,64,64.0],[115,-44,65,64.0],[115,-44,66,64.0],[115,-44,67,64.0],[115,-44,68,64.0],[115,-44,69,64.0],[115,-44,70,64.0],[115,-44,71,64.0],[115,-44,72,64.0],[115,-44,73,64.0],[115,-44,74,64.0],[115,-44,75,64.0],[115,-44,76,64.0],[115,-44,77,64.0],[115,-44,78,64.0],[115,-44,79,64.0],[115,-43,64,64.0],[115,-43,65,64.0],[115,-43,66,64.0],[115,-43,67,64.0],[115,-43,68,64.0],[115,-43,69,64.0],[115,-43,70,64.0],[115,-43,71,64.0],[115,-43,72,64.0],[115,-43,73,64.0],[115,-43,74,64.0],[115,-43,75,64.0],[115,-43,76,64.0],[115,-43,77,64.0],[115,-43,78,64.0],[115,-43,79,64.0],[115,-42,64,64.0],[115,-42,65,64.0],[115,-42,66,64.0],[115,-42,67,64.0],[115,-42,68,64.0],[115,-42,69,64.0],[115,-42,70,64.0],[115,-42,71,64.0],[115,-42,72,64.0],[115,-42,73,64.0],[115,-42,74,64.0],[115,-42,75,64.0],[115,-42,76,64.0],[115,-42,77,64.0],[115,-42,78,64.0],[115,-42,79,64.0],[115,-41,64,64.0],[115,-41,65,64.0],[115,-41,66,64.0],[115,-41,67,64.0],[115,-41,68,64.0],[115,-41,69,64.0],[115,-41,70,64.0],[115,-41,71,64.0],[115,-41,72,64.0],[115,-41,73,64.0],[115,-41,74,64.0],[115,-41,75,64.0],[115,-41,76,64.0],[115,-41,77,64.0],[115,-41,78,64.0],[115,-41,79,64.0],[115,-40,64,64.0],[115,-40,65,64.0],[115,-40,66,64.0],[115,-40,67,64.0],[115,-40,68,64.0],[115,-40,69,64.0],[115,-40,70,64.0],[115,-40,71,64.0],[115,-40,72,64.0],[115,-40,73,64.0],[115,-40,74,64.0],[115,-40,75,64.0],[115,-40,76,64.0],[115,-40,77,64.0],[115,-40,78,64.0],[115,-40,79,64.0],[115,-39,64,64.0],[115,-39,65,64.0],[115,-39,66,64.0],[115,-39,67,64.0],[115,-39,68,64.0],[115,-39,69,64.0],[115,-39,70,64.0],[115,-39,71,64.0],[115,-39,72,64.0],[115,-39,73,64.0],[115,-39,74,64.0],[115,-39,75,64.0],[115,-39,76,64.0],[115,-39,77,64.0],[115,-39,78,64.0],[115,-39,79,64.0],[115,-38,64,64.0],[115,-38,65,64.0],[115,-38,66,64.0],[115,-38,67,64.0],[115,-38,68,64.0],[115,-38,69,64.0],[115,-38,70,64.0],[115,-38,71,64.0],[115,-38,72,64.0],[115,-38,73,64.0],[115,-38,74,64.0],[115,-38,75,64.0],[115,-38,76,64.0],[115,-38,77,64.0],[115,-38,78,64.0],[115,-38,79,64.0],[115,-37,64,64.0],[115,-37,65,64.0],[115,-37,66,64.0],[115,-37,67,64.0],[115,-37,68,64.0],[115,-37,69,64.0],[115,-37,70,64.0],[115,-37,71,64.0],[115,-37,72,64.0],[115,-37,73,64.0],[115,-37,74,64.0],[115,-37,75,64.0],[115,-37,76,64.0],[115,-37,77,64.0],[115,-37,78,64.0],[115,-37,79,64.0],[115,-36,64,64.0],[115,-36,65,64.0],[115,-36,66,64.0],[115,-36,67,64.0],[115,-36,68,64.0],[115,-36,69,64.0],[115,-36,70,64.0],[115,-36,71,64.0],[115,-36,72,64.0],[115,-36,73,64.0],[115,-36,74,64.0],[115,-36,75,64.0],[115,-36,76,64.0],[115,-36,77,64.0],[115,-36,78,64.0],[115,-36,79,64.0],[115,-35,64,64.0],[115,-35,65,64.0],[115,-35,66,64.0],[115,-35,67,64.0],[115,-35,68,64.0],[115,-35,69,64.0],[115,-35,70,64.0],[115,-35,71,64.0],[115,-35,72,64.0],[115,-35,73,64.0],[115,-35,74,64.0],[115,-35,75,64.0],[115,-35,76,64.0],[115,-35,77,64.0],[115,-35,78,64.0],[115,-35,79,64.0],[115,-34,64,64.0],[115,-34,65,64.0],[115,-34,66,64.0],[115,-34,67,64.0],[115,-34,68,64.0],[115,-34,69,64.0],[115,-34,70,64.0],[115,-34,71,64.0],[115,-34,72,64.0],[115,-34,73,64.0],[115,-34,74,64.0],[115,-34,75,64.0],[115,-34,76,64.0],[115,-34,77,64.0],[115,-34,78,64.0],[115,-34,79,64.0],[115,-33,64,64.0],[115,-33,65,64.0],[115,-33,66,64.0],[115,-33,67,64.0],[115,-33,68,64.0],[115,-33,69,64.0],[115,-33,70,64.0],[115,-33,71,64.0],[115,-33,72,64.0],[115,-33,73,64.0],[115,-33,74,64.0],[115,-33,75,64.0],[115,-33,76,64.0],[115,-33,77,64.0],[115,-33,78,64.0],[115,-33,79,64.0],[115,-32,64,64.0],[115,-32,65,64.0],[115,-32,66,64.0],[115,-32,67,64.0],[115,-32,68,64.0],[115,-32,69,64.0],[115,-32,70,64.0],[115,-32,71,64.0],[115,-32,72,64.0],[115,-32,73,64.0],[115,-32,74,64.0],[115,-32,75,64.0],[115,-32,76,64.0],[115,-32,77,64.0],[115,-32,78,64.0],[115,-32,79,64.0],[115,-31,64,64.0],[115,-31,65,64.0],[115,-31,66,64.0],[115,-31,67,64.0],[115,-31,68,64.0],[115,-31,69,64.0],[115,-31,70,64.0],[115,-31,71,64.0],[115,-31,72,64.0],[115,-31,73,64.0],[115,-31,74,64.0],[115,-31,75,64.0],[115,-31,76,64.0],[115,-31,77,64.0],[115,-31,78,64.0],[115,-31,79,64.0],[115,-30,64,64.0],[115,-30,65,64.0],[115,-30,66,64.0],[115,-30,67,64.0],[115,-30,68,64.0],[115,-30,69,64.0],[115,-30,70,64.0],[115,-30,71,64.0],[115,-30,72,64.0],[115,-30,73,64.0],[115,-30,74,64.0],[115,-30,75,64.0],[115,-30,76,64.0],[115,-30,77,64.0],[115,-30,78,64.0],[115,-30,79,64.0],[115,-29,64,64.0],[115,-29,65,64.0],[115,-29,66,64.0],[115,-29,67,64.0],[115,-29,68,64.0],[115,-29,69,64.0],[115,-29,70,64.0],[115,-29,71,64.0],[115,-29,72,64.0],[115,-29,73,64.0],[115,-29,74,64.0],[115,-29,75,64.0],[115,-29,76,64.0],[115,-29,77,64.0],[115,-29,78,64.0],[115,-29,79,64.0],[115,-28,64,64.0],[115,-28,65,64.0],[115,-28,66,64.0],[115,-28,67,64.0],[115,-28,68,64.0],[115,-28,69,64.0],[115,-28,70,64.0],[115,-28,71,64.0],[115,-28,72,64.0],[115,-28,73,64.0],[115,-28,74,64.0],[115,-28,75,64.0],[115,-28,76,64.0],[115,-28,77,64.0],[115,-28,78,64.0],[115,-28,79,64.0],[115,-27,64,64.0],[115,-27,65,64.0],[115,-27,66,64.0],[115,-27,67,64.0],[115,-27,68,64.0],[115,-27,69,64.0],[115,-27,70,64.0],[115,-27,71,64.0],[115,-27,72,64.0],[115,-27,73,64.0],[115,-27,74,64.0],[115,-27,75,64.0],[115,-27,76,64.0],[115,-27,77,64.0],[115,-27,78,64.0],[115,-27,79,64.0],[115,-26,64,64.0],[115,-26,65,64.0],[115,-26,66,64.0],[115,-26,67,64.0],[115,-26,68,64.0],[115,-26,69,64.0],[115,-26,70,64.0],[115,-26,71,64.0],[115,-26,72,64.0],[115,-26,73,64.0],[115,-26,74,64.0],[115,-26,75,64.0],[115,-26,76,64.0],[115,-26,77,64.0],[115,-26,78,64.0],[115,-26,79,64.0],[115,-25,64,64.0],[115,-25,65,64.0],[115,-25,66,64.0],[115,-25,67,64.0],[115,-25,68,64.0],[115,-25,69,64.0],[115,-25,70,64.0],[115,-25,71,64.0],[115,-25,72,64.0],[115,-25,73,64.0],[115,-25,74,64.0],[115,-25,75,64.0],[115,-25,76,64.0],[115,-25,77,64.0],[115,-25,78,64.0],[115,-25,79,64.0],[115,-24,64,64.0],[115,-24,65,64.0],[115,-24,66,64.0],[115,-24,67,64.0],[115,-24,68,64.0],[115,-24,69,64.0],[115,-24,70,64.0],[115,-24,71,64.0],[115,-24,72,64.0],[115,-24,73,64.0],[115,-24,74,64.0],[115,-24,75,64.0],[115,-24,76,64.0],[115,-24,77,64.0],[115,-24,78,64.0],[115,-24,79,64.0],[115,-23,64,64.0],[115,-23,65,64.0],[115,-23,66,64.0],[115,-23,67,64.0],[115,-23,68,64.0],[115,-23,69,64.0],[115,-23,70,64.0],[115,-23,71,64.0],[115,-23,72,64.0],[115,-23,73,64.0],[115,-23,74,64.0],[115,-23,75,64.0],[115,-23,76,64.0],[115,-23,77,64.0],[115,-23,78,64.0],[115,-23,79,64.0],[115,-22,64,64.0],[115,-22,65,64.0],[115,-22,66,64.0],[115,-22,67,64.0],[115,-22,68,64.0],[115,-22,69,64.0],[115,-22,70,64.0],[115,-22,71,64.0],[115,-22,72,64.0],[115,-22,73,64.0],[115,-22,74,64.0],[115,-22,75,64.0],[115,-22,76,64.0],[115,-22,77,64.0],[115,-22,78,64.0],[115,-22,79,64.0],[115,-21,64,64.0],[115,-21,65,64.0],[115,-21,66,64.0],[115,-21,67,64.0],[115,-21,68,64.0],[115,-21,69,64.0],[115,-21,70,64.0],[115,-21,71,64.0],[115,-21,72,64.0],[115,-21,73,64.0],[115,-21,74,64.0],[115,-21,75,64.0],[115,-21,76,64.0],[115,-21,77,64.0],[115,-21,78,64.0],[115,-21,79,64.0],[115,-20,64,64.0],[115,-20,65,64.0],[115,-20,66,64.0],[115,-20,67,64.0],[115,-20,68,64.0],[115,-20,69,64.0],[115,-20,70,64.0],[115,-20,71,64.0],[115,-20,72,64.0],[115,-20,73,64.0],[115,-20,74,64.0],[115,-20,75,64.0],[115,-20,76,64.0],[115,-20,77,64.0],[115,-20,78,64.0],[115,-20,79,64.0],[115,-19,64,64.0],[115,-19,65,64.0],[115,-19,66,64.0],[115,-19,67,64.0],[115,-19,68,64.0],[115,-19,69,64.0],[115,-19,70,64.0],[115,-19,71,64.0],[115,-19,72,64.0],[115,-19,73,64.0],[115,-19,74,64.0],[115,-19,75,64.0],[115,-19,76,64.0],[115,-19,77,64.0],[115,-19,78,64.0],[115,-19,79,64.0],[115,-18,64,64.0],[115,-18,65,64.0],[115,-18,66,64.0],[115,-18,67,64.0],[115,-18,68,64.0],[115,-18,69,64.0],[115,-18,70,64.0],[115,-18,71,64.0],[115,-18,72,64.0],[115,-18,73,64.0],[115,-18,74,64.0],[115,-18,75,64.0],[115,-18,76,64.0],[115,-18,77,64.0],[115,-18,78,64.0],[115,-18,79,64.0],[115,-17,64,64.0],[115,-17,65,64.0],[115,-17,66,64.0],[115,-17,67,64.0],[115,-17,68,64.0],[115,-17,69,64.0],[115,-17,70,64.0],[115,-17,71,64.0],[115,-17,72,64.0],[115,-17,73,64.0],[115,-17,74,64.0],[115,-17,75,64.0],[115,-17,76,64.0],[115,-17,77,64.0],[115,-17,78,64.0],[115,-17,79,64.0],[115,-16,64,64.0],[115,-16,65,64.0],[115,-16,66,64.0],[115,-16,67,64.0],[115,-16,68,64.0],[115,-16,69,64.0],[115,-16,70,64.0],[115,-16,71,64.0],[115,-16,72,64.0],[115,-16,73,64.0],[115,-16,74,64.0],[115,-16,75,64.0],[115,-16,76,64.0],[115,-16,77,64.0],[115,-16,78,64.0],[115,-16,79,64.0],[115,-15,64,64.0],[115,-15,65,64.0],[115,-15,66,64.0],[115,-15,67,64.0],[115,-15,68,64.0],[115,-15,69,64.0],[115,-15,70,64.0],[115,-15,71,64.0],[115,-15,72,64.0],[115,-15,73,64.0],[115,-15,74,64.0],[115,-15,75,64.0],[115,-15,76,64.0],[115,-15,77,64.0],[115,-15,78,64.0],[115,-15,79,64.0],[115,-14,64,64.0],[115,-14,65,64.0],[115,-14,66,64.0],[115,-14,67,64.0],[115,-14,68,64.0],[115,-14,69,64.0],[115,-14,70,64.0],[115,-14,71,64.0],[115,-14,72,64.0],[115,-14,73,64.0],[115,-14,74,64.0],[115,-14,75,64.0],[115,-14,76,64.0],[115,-14,77,64.0],[115,-14,78,64.0],[115,-14,79,64.0],[115,-13,64,64.0],[115,-13,65,64.0],[115,-13,66,64.0],[115,-13,67,64.0],[115,-13,68,64.0],[115,-13,69,64.0],[115,-13,70,64.0],[115,-13,71,64.0],[115,-13,72,64.0],[115,-13,73,64.0],[115,-13,74,64.0],[115,-13,75,64.0],[115,-13,76,64.0],[115,-13,77,64.0],[115,-13,78,64.0],[115,-13,79,64.0],[115,-12,64,64.0],[115,-12,65,64.0],[115,-12,66,64.0],[115,-12,67,64.0],[115,-12,68,64.0],[115,-12,69,64.0],[115,-12,70,64.0],[115,-12,71,64.0],[115,-12,72,64.0],[115,-12,73,64.0],[115,-12,74,64.0],[115,-12,75,64.0],[115,-12,76,64.0],[115,-12,77,64.0],[115,-12,78,64.0],[115,-12,79,64.0],[115,-11,64,64.0],[115,-11,65,64.0],[115,-11,66,64.0],[115,-11,67,64.0],[115,-11,68,64.0],[115,-11,69,64.0],[115,-11,70,64.0],[115,-11,71,64.0],[115,-11,72,64.0],[115,-11,73,64.0],[115,-11,74,64.0],[115,-11,75,64.0],[115,-11,76,64.0],[115,-11,77,64.0],[115,-11,78,64.0],[115,-11,79,64.0],[115,-10,64,64.0],[115,-10,65,64.0],[115,-10,66,64.0],[115,-10,67,64.0],[115,-10,68,64.0],[115,-10,69,64.0],[115,-10,70,64.0],[115,-10,71,64.0],[115,-10,72,64.0],[115,-10,73,64.0],[115,-10,74,64.0],[115,-10,75,64.0],[115,-10,76,64.0],[115,-10,77,64.0],[115,-10,78,64.0],[115,-10,79,64.0],[115,-9,64,64.0],[115,-9,65,64.0],[115,-9,66,64.0],[115,-9,67,64.0],[115,-9,68,64.0],[115,-9,69,64.0],[115,-9,70,64.0],[115,-9,71,64.0],[115,-9,72,64.0],[115,-9,73,64.0],[115,-9,74,64.0],[115,-9,75,64.0],[115,-9,76,64.0],[115,-9,77,64.0],[115,-9,78,64.0],[115,-9,79,64.0],[115,-8,64,64.0],[115,-8,65,64.0],[115,-8,66,64.0],[115,-8,67,64.0],[115,-8,68,64.0],[115,-8,69,64.0],[115,-8,70,64.0],[115,-8,71,64.0],[115,-8,72,64.0],[115,-8,73,64.0],[115,-8,74,64.0],[115,-8,75,64.0],[115,-8,76,64.0],[115,-8,77,64.0],[115,-8,78,64.0],[115,-8,79,64.0],[115,-7,64,64.0],[115,-7,65,64.0],[115,-7,66,64.0],[115,-7,67,64.0],[115,-7,68,64.0],[115,-7,69,64.0],[115,-7,70,64.0],[115,-7,71,64.0],[115,-7,72,64.0],[115,-7,73,64.0],[115,-7,74,64.0],[115,-7,75,64.0],[115,-7,76,64.0],[115,-7,77,64.0],[115,-7,78,64.0],[115,-7,79,64.0],[115,-6,64,64.0],[115,-6,65,64.0],[115,-6,66,64.0],[115,-6,67,64.0],[115,-6,68,64.0],[115,-6,69,64.0],[115,-6,70,64.0],[115,-6,71,64.0],[115,-6,72,64.0],[115,-6,73,64.0],[115,-6,74,64.0],[115,-6,75,64.0],[115,-6,76,64.0],[115,-6,77,64.0],[115,-6,78,64.0],[115,-6,79,64.0],[115,-5,64,64.0],[115,-5,65,64.0],[115,-5,66,64.0],[115,-5,67,64.0],[115,-5,68,64.0],[115,-5,69,64.0],[115,-5,70,64.0],[115,-5,71,64.0],[115,-5,72,64.0],[115,-5,73,64.0],[115,-5,74,64.0],[115,-5,75,64.0],[115,-5,76,64.0],[115,-5,77,64.0],[115,-5,78,64.0],[115,-5,79,64.0],[115,-4,64,64.0],[115,-4,65,64.0],[115,-4,66,64.0],[115,-4,67,64.0],[115,-4,68,64.0],[115,-4,69,64.0],[115,-4,70,64.0],[115,-4,71,64.0],[115,-4,72,64.0],[115,-4,73,64.0],[115,-4,74,64.0],[115,-4,75,64.0],[115,-4,76,64.0],[115,-4,77,64.0],[115,-4,78,64.0],[115,-4,79,64.0],[115,-3,64,64.0],[115,-3,65,64.0],[115,-3,66,64.0],[115,-3,67,64.0],[115,-3,68,64.0],[115,-3,69,64.0],[115,-3,70,64.0],[115,-3,71,64.0],[115,-3,72,64.0],[115,-3,73,64.0],[115,-3,74,64.0],[115,-3,75,64.0],[115,-3,76,64.0],[115,-3,77,64.0],[115,-3,78,64.0],[115,-3,79,64.0],[115,-2,64,64.0],[115,-2,65,64.0],[115,-2,66,64.0],[115,-2,67,64.0],[115,-2,68,64.0],[115,-2,69,64.0],[115,-2,70,64.0],[115,-2,71,64.0],[115,-2,72,64.0],[115,-2,73,64.0],[115,-2,74,64.0],[115,-2,75,64.0],[115,-2,76,64.0],[115,-2,77,64.0],[115,-2,78,64.0],[115,-2,79,64.0],[115,-1,64,64.0],[115,-1,65,64.0],[115,-1,66,64.0],[115,-1,67,64.0],[115,-1,68,64.0],[115,-1,69,64.0],[115,-1,70,64.0],[115,-1,71,64.0],[115,-1,72,64.0],[115,-1,73,64.0],[115,-1,74,64.0],[115,-1,75,64.0],[115,-1,76,64.0],[115,-1,77,64.0],[115,-1,78,64.0],[115,-1,79,64.0],[115,0,64,64.0],[115,0,65,64.0],[115,0,66,64.0],[115,0,67,64.0],[115,0,68,64.0],[115,0,69,64.0],[115,0,70,64.0],[115,0,71,64.0],[115,0,72,64.0],[115,0,73,64.0],[115,0,74,64.0],[115,0,75,64.0],[115,0,76,64.0],[115,0,77,64.0],[115,0,78,64.0],[115,0,79,64.0],[115,1,64,64.0],[115,1,65,64.0],[115,1,66,64.0],[115,1,67,64.0],[115,1,68,64.0],[115,1,69,64.0],[115,1,70,64.0],[115,1,71,64.0],[115,1,72,64.0],[115,1,73,64.0],[115,1,74,64.0],[115,1,75,64.0],[115,1,76,64.0],[115,1,77,64.0],[115,1,78,64.0],[115,1,79,64.0],[115,2,64,64.0],[115,2,65,64.0],[115,2,66,64.0],[115,2,67,64.0],[115,2,68,64.0],[115,2,69,64.0],[115,2,70,64.0],[115,2,71,64.0],[115,2,72,64.0],[115,2,73,64.0],[115,2,74,64.0],[115,2,75,64.0],[115,2,76,64.0],[115,2,77,64.0],[115,2,78,64.0],[115,2,79,64.0],[115,3,64,64.0],[115,3,65,64.0],[115,3,66,64.0],[115,3,67,64.0],[115,3,68,64.0],[115,3,69,64.0],[115,3,70,64.0],[115,3,71,64.0],[115,3,72,64.0],[115,3,73,64.0],[115,3,74,64.0],[115,3,75,64.0],[115,3,76,64.0],[115,3,77,64.0],[115,3,78,64.0],[115,3,79,64.0],[115,4,64,64.0],[115,4,65,64.0],[115,4,66,64.0],[115,4,67,64.0],[115,4,68,64.0],[115,4,69,64.0],[115,4,70,64.0],[115,4,71,64.0],[115,4,72,64.0],[115,4,73,64.0],[115,4,74,64.0],[115,4,75,64.0],[115,4,76,64.0],[115,4,77,64.0],[115,4,78,64.0],[115,4,79,64.0],[115,5,64,64.0],[115,5,65,64.0],[115,5,66,64.0],[115,5,67,64.0],[115,5,68,64.0],[115,5,69,64.0],[115,5,70,64.0],[115,5,71,64.0],[115,5,72,64.0],[115,5,73,64.0],[115,5,74,64.0],[115,5,75,64.0],[115,5,76,64.0],[115,5,77,64.0],[115,5,78,64.0],[115,5,79,64.0],[115,6,64,64.0],[115,6,65,64.0],[115,6,66,64.0],[115,6,67,64.0],[115,6,68,64.0],[115,6,69,64.0],[115,6,70,64.0],[115,6,71,64.0],[115,6,72,64.0],[115,6,73,64.0],[115,6,74,64.0],[115,6,75,64.0],[115,6,76,64.0],[115,6,77,64.0],[115,6,78,64.0],[115,6,79,64.0],[115,7,64,64.0],[115,7,65,64.0],[115,7,66,64.0],[115,7,67,64.0],[115,7,68,64.0],[115,7,69,64.0],[115,7,70,64.0],[115,7,71,64.0],[115,7,72,64.0],[115,7,73,64.0],[115,7,74,64.0],[115,7,75,64.0],[115,7,76,64.0],[115,7,77,64.0],[115,7,78,64.0],[115,7,79,64.0],[115,8,64,64.0],[115,8,65,64.0],[115,8,66,64.0],[115,8,67,64.0],[115,8,68,64.0],[115,8,69,64.0],[115,8,70,64.0],[115,8,71,64.0],[115,8,72,64.0],[115,8,73,64.0],[115,8,74,64.0],[115,8,75,64.0],[115,8,76,64.0],[115,8,77,64.0],[115,8,78,64.0],[115,8,79,64.0],[115,9,64,64.0],[115,9,65,64.0],[115,9,66,64.0],[115,9,67,64.0],[115,9,68,64.0],[115,9,69,64.0],[115,9,70,64.0],[115,9,71,64.0],[115,9,72,64.0],[115,9,73,64.0],[115,9,74,64.0],[115,9,75,64.0],[115,9,76,64.0],[115,9,77,64.0],[115,9,78,64.0],[115,9,79,64.0],[115,10,64,64.0],[115,10,65,64.0],[115,10,66,64.0],[115,10,67,64.0],[115,10,68,64.0],[115,10,69,64.0],[115,10,70,64.0],[115,10,71,64.0],[115,10,72,64.0],[115,10,73,64.0],[115,10,74,64.0],[115,10,75,64.0],[115,10,76,64.0],[115,10,77,64.0],[115,10,78,64.0],[115,10,79,64.0],[115,11,64,64.0],[115,11,65,64.0],[115,11,66,64.0],[115,11,67,64.0],[115,11,68,64.0],[115,11,69,64.0],[115,11,70,64.0],[115,11,71,64.0],[115,11,72,64.0],[115,11,73,64.0],[115,11,74,64.0],[115,11,75,64.0],[115,11,76,64.0],[115,11,77,64.0],[115,11,78,64.0],[115,11,79,64.0],[115,12,64,64.0],[115,12,65,64.0],[115,12,66,64.0],[115,12,67,64.0],[115,12,68,64.0],[115,12,69,64.0],[115,12,70,64.0],[115,12,71,64.0],[115,12,72,64.0],[115,12,73,64.0],[115,12,74,64.0],[115,12,75,64.0],[115,12,76,64.0],[115,12,77,64.0],[115,12,78,64.0],[115,12,79,64.0],[115,13,64,64.0],[115,13,65,64.0],[115,13,66,64.0],[115,13,67,64.0],[115,13,68,64.0],[115,13,69,64.0],[115,13,70,64.0],[115,13,71,64.0],[115,13,72,64.0],[115,13,73,64.0],[115,13,74,64.0],[115,13,75,64.0],[115,13,76,64.0],[115,13,77,64.0],[115,13,78,64.0],[115,13,79,64.0],[115,14,64,64.0],[115,14,65,64.0],[115,14,66,64.0],[115,14,67,64.0],[115,14,68,64.0],[115,14,69,64.0],[115,14,70,64.0],[115,14,71,64.0],[115,14,72,64.0],[115,14,73,64.0],[115,14,74,64.0],[115,14,75,64.0],[115,14,76,64.0],[115,14,77,64.0],[115,14,78,64.0],[115,14,79,64.0],[115,15,64,64.0],[115,15,65,64.0],[115,15,66,64.0],[115,15,67,64.0],[115,15,68,64.0],[115,15,69,64.0],[115,15,70,64.0],[115,15,71,64.0],[115,15,72,64.0],[115,15,73,64.0],[115,15,74,64.0],[115,15,75,64.0],[115,15,76,64.0],[115,15,77,64.0],[115,15,78,64.0],[115,15,79,64.0],[115,16,64,64.0],[115,16,65,64.0],[115,16,66,64.0],[115,16,67,64.0],[115,16,68,64.0],[115,16,69,64.0],[115,16,70,64.0],[115,16,71,64.0],[115,16,72,64.0],[115,16,73,64.0],[115,16,74,64.0],[115,16,75,64.0],[115,16,76,64.0],[115,16,77,64.0],[115,16,78,64.0],[115,16,79,64.0],[115,17,64,64.0],[115,17,65,64.0],[115,17,66,64.0],[115,17,67,64.0],[115,17,68,64.0],[115,17,69,64.0],[115,17,70,64.0],[115,17,71,64.0],[115,17,72,64.0],[115,17,73,64.0],[115,17,74,64.0],[115,17,75,64.0],[115,17,76,64.0],[115,17,77,64.0],[115,17,78,64.0],[115,17,79,64.0],[115,18,64,64.0],[115,18,65,64.0],[115,18,66,64.0],[115,18,67,64.0],[115,18,68,64.0],[115,18,69,64.0],[115,18,70,64.0],[115,18,71,64.0],[115,18,72,64.0],[115,18,73,64.0],[115,18,74,64.0],[115,18,75,64.0],[115,18,76,64.0],[115,18,77,64.0],[115,18,78,64.0],[115,18,79,64.0],[115,19,64,64.0],[115,19,65,64.0],[115,19,66,64.0],[115,19,67,64.0],[115,19,68,64.0],[115,19,69,64.0],[115,19,70,64.0],[115,19,71,64.0],[115,19,72,64.0],[115,19,73,64.0],[115,19,74,64.0],[115,19,75,64.0],[115,19,76,64.0],[115,19,77,64.0],[115,19,78,64.0],[115,19,79,64.0],[115,20,64,64.0],[115,20,65,64.0],[115,20,66,64.0],[115,20,67,64.0],[115,20,68,64.0],[115,20,69,64.0],[115,20,70,64.0],[115,20,71,64.0],[115,20,72,64.0],[115,20,73,64.0],[115,20,74,64.0],[115,20,75,64.0],[115,20,76,64.0],[115,20,77,64.0],[115,20,78,64.0],[115,20,79,64.0],[115,21,64,64.0],[115,21,65,64.0],[115,21,66,64.0],[115,21,67,64.0],[115,21,68,64.0],[115,21,69,64.0],[115,21,70,64.0],[115,21,71,64.0],[115,21,72,64.0],[115,21,73,64.0],[115,21,74,64.0],[115,21,75,64.0],[115,21,76,64.0],[115,21,77,64.0],[115,21,78,64.0],[115,21,79,64.0],[115,22,64,64.0],[115,22,65,64.0],[115,22,66,64.0],[115,22,67,64.0],[115,22,68,64.0],[115,22,69,64.0],[115,22,70,64.0],[115,22,71,64.0],[115,22,72,64.0],[115,22,73,64.0],[115,22,74,64.0],[115,22,75,64.0],[115,22,76,64.0],[115,22,77,64.0],[115,22,78,64.0],[115,22,79,64.0],[115,23,64,64.0],[115,23,65,64.0],[115,23,66,64.0],[115,23,67,64.0],[115,23,68,64.0],[115,23,69,64.0],[115,23,70,64.0],[115,23,71,64.0],[115,23,72,64.0],[115,23,73,64.0],[115,23,74,64.0],[115,23,75,64.0],[115,23,76,64.0],[115,23,77,64.0],[115,23,78,64.0],[115,23,79,64.0],[115,24,64,64.0],[115,24,65,64.0],[115,24,66,64.0],[115,24,67,64.0],[115,24,68,64.0],[115,24,69,64.0],[115,24,70,64.0],[115,24,71,64.0],[115,24,72,64.0],[115,24,73,64.0],[115,24,74,64.0],[115,24,75,64.0],[115,24,76,64.0],[115,24,77,64.0],[115,24,78,64.0],[115,24,79,64.0],[115,25,64,64.0],[115,25,65,64.0],[115,25,66,64.0],[115,25,67,64.0],[115,25,68,64.0],[115,25,69,64.0],[115,25,70,64.0],[115,25,71,64.0],[115,25,72,64.0],[115,25,73,64.0],[115,25,74,64.0],[115,25,75,64.0],[115,25,76,64.0],[115,25,77,64.0],[115,25,78,64.0],[115,25,79,64.0],[115,26,64,64.0],[115,26,65,64.0],[115,26,66,64.0],[115,26,67,64.0],[115,26,68,64.0],[115,26,69,64.0],[115,26,70,64.0],[115,26,71,64.0],[115,26,72,64.0],[115,26,73,64.0],[115,26,74,64.0],[115,26,75,64.0],[115,26,76,64.0],[115,26,77,64.0],[115,26,78,64.0],[115,26,79,64.0],[115,27,64,64.0],[115,27,65,64.0],[115,27,66,64.0],[115,27,67,64.0],[115,27,68,64.0],[115,27,69,64.0],[115,27,70,64.0],[115,27,71,64.0],[115,27,72,64.0],[115,27,73,64.0],[115,27,74,64.0],[115,27,75,64.0],[115,27,76,64.0],[115,27,77,64.0],[115,27,78,64.0],[115,27,79,64.0],[115,28,64,64.0],[115,28,65,64.0],[115,28,66,64.0],[115,28,67,64.0],[115,28,68,64.0],[115,28,69,64.0],[115,28,70,64.0],[115,28,71,64.0],[115,28,72,64.0],[115,28,73,64.0],[115,28,74,64.0],[115,28,75,64.0],[115,28,76,64.0],[115,28,77,64.0],[115,28,78,64.0],[115,28,79,64.0],[115,29,64,64.0],[115,29,65,64.0],[115,29,66,64.0],[115,29,67,64.0],[115,29,68,64.0],[115,29,69,64.0],[115,29,70,64.0],[115,29,71,64.0],[115,29,72,64.0],[115,29,73,64.0],[115,29,74,64.0],[115,29,75,64.0],[115,29,76,64.0],[115,29,77,64.0],[115,29,78,64.0],[115,29,79,64.0],[115,30,64,64.0],[115,30,65,64.0],[115,30,66,64.0],[115,30,67,64.0],[115,30,68,64.0],[115,30,69,64.0],[115,30,70,64.0],[115,30,71,64.0],[115,30,72,64.0],[115,30,73,64.0],[115,30,74,64.0],[115,30,75,64.0],[115,30,76,64.0],[115,30,77,64.0],[115,30,78,64.0],[115,30,79,64.0],[115,31,64,64.0],[115,31,65,64.0],[115,31,66,64.0],[115,31,67,64.0],[115,31,68,64.0],[115,31,69,64.0],[115,31,70,64.0],[115,31,71,64.0],[115,31,72,64.0],[115,31,73,64.0],[115,31,74,64.0],[115,31,75,64.0],[115,31,76,64.0],[115,31,77,64.0],[115,31,78,64.0],[115,31,79,64.0],[115,32,64,64.0],[115,32,65,64.0],[115,32,66,64.0],[115,32,67,64.0],[115,32,68,64.0],[115,32,69,64.0],[115,32,70,64.0],[115,32,71,64.0],[115,32,72,64.0],[115,32,73,64.0],[115,32,74,64.0],[115,32,75,64.0],[115,32,76,64.0],[115,32,77,64.0],[115,32,78,64.0],[115,32,79,64.0],[115,33,64,64.0],[115,33,65,64.0],[115,33,66,64.0],[115,33,67,64.0],[115,33,68,64.0],[115,33,69,64.0],[115,33,70,64.0],[115,33,71,64.0],[115,33,72,64.0],[115,33,73,64.0],[115,33,74,64.0],[115,33,75,64.0],[115,33,76,64.0],[115,33,77,64.0],[115,33,78,64.0],[115,33,79,64.0],[115,34,64,64.0],[115,34,65,64.0],[115,34,66,64.0],[115,34,67,64.0],[115,34,68,64.0],[115,34,69,64.0],[115,34,70,64.0],[115,34,71,64.0],[115,34,72,64.0],[115,34,73,64.0],[115,34,74,64.0],[115,34,75,64.0],[115,34,76,64.0],[115,34,77,64.0],[115,34,78,64.0],[115,34,79,64.0],[115,35,64,64.0],[115,35,65,64.0],[115,35,66,64.0],[115,35,67,64.0],[115,35,68,64.0],[115,35,69,64.0],[115,35,70,64.0],[115,35,71,64.0],[115,35,72,64.0],[115,35,73,64.0],[115,35,74,64.0],[115,35,75,64.0],[115,35,76,64.0],[115,35,77,64.0],[115,35,78,64.0],[115,35,79,64.0],[115,36,64,64.0],[115,36,65,64.0],[115,36,66,64.0],[115,36,67,64.0],[115,36,68,64.0],[115,36,69,64.0],[115,36,70,64.0],[115,36,71,64.0],[115,36,72,64.0],[115,36,73,64.0],[115,36,74,64.0],[115,36,75,64.0],[115,36,76,64.0],[115,36,77,64.0],[115,36,78,64.0],[115,36,79,64.0],[115,37,64,64.0],[115,37,65,64.0],[115,37,66,64.0],[115,37,67,64.0],[115,37,68,64.0],[115,37,69,64.0],[115,37,70,64.0],[115,37,71,64.0],[115,37,72,64.0],[115,37,73,64.0],[115,37,74,64.0],[115,37,75,64.0],[115,37,76,64.0],[115,37,77,64.0],[115,37,78,64.0],[115,37,79,64.0],[115,38,64,64.0],[115,38,65,64.0],[115,38,66,64.0],[115,38,67,64.0],[115,38,68,64.0],[115,38,69,64.0],[115,38,70,64.0],[115,38,71,64.0],[115,38,72,64.0],[115,38,73,64.0],[115,38,74,64.0],[115,38,75,64.0],[115,38,76,64.0],[115,38,77,64.0],[115,38,78,64.0],[115,38,79,64.0],[115,39,64,64.0],[115,39,65,64.0],[115,39,66,64.0],[115,39,67,64.0],[115,39,68,64.0],[115,39,69,64.0],[115,39,70,64.0],[115,39,71,64.0],[115,39,72,64.0],[115,39,73,64.0],[115,39,74,64.0],[115,39,75,64.0],[115,39,76,64.0],[115,39,77,64.0],[115,39,78,64.0],[115,39,79,64.0],[115,40,64,64.0],[115,40,65,64.0],[115,40,66,64.0],[115,40,67,64.0],[115,40,68,64.0],[115,40,69,64.0],[115,40,70,64.0],[115,40,71,64.0],[115,40,72,64.0],[115,40,73,64.0],[115,40,74,64.0],[115,40,75,64.0],[115,40,76,64.0],[115,40,77,64.0],[115,40,78,64.0],[115,40,79,64.0],[115,41,64,64.0],[115,41,65,64.0],[115,41,66,64.0],[115,41,67,64.0],[115,41,68,64.0],[115,41,69,64.0],[115,41,70,64.0],[115,41,71,64.0],[115,41,72,64.0],[115,41,73,64.0],[115,41,74,64.0],[115,41,75,64.0],[115,41,76,64.0],[115,41,77,64.0],[115,41,78,64.0],[115,41,79,64.0],[115,42,64,64.0],[115,42,65,64.0],[115,42,66,64.0],[115,42,67,64.0],[115,42,68,64.0],[115,42,69,64.0],[115,42,70,64.0],[115,42,71,64.0],[115,42,72,64.0],[115,42,73,64.0],[115,42,74,64.0],[115,42,75,64.0],[115,42,76,64.0],[115,42,77,64.0],[115,42,78,64.0],[115,42,79,64.0],[115,43,64,64.0],[115,43,65,64.0],[115,43,66,64.0],[115,43,67,64.0],[115,43,68,64.0],[115,43,69,64.0],[115,43,70,64.0],[115,43,71,64.0],[115,43,72,64.0],[115,43,73,64.0],[115,43,74,64.0],[115,43,75,64.0],[115,43,76,64.0],[115,43,77,64.0],[115,43,78,64.0],[115,43,79,64.0],[115,44,64,64.0],[115,44,65,64.0],[115,44,66,64.0],[115,44,67,64.0],[115,44,68,64.0],[115,44,69,64.0],[115,44,70,64.0],[115,44,71,64.0],[115,44,72,64.0],[115,44,73,64.0],[115,44,74,64.0],[115,44,75,64.0],[115,44,76,64.0],[115,44,77,64.0],[115,44,78,64.0],[115,44,79,64.0],[115,45,64,64.0],[115,45,65,64.0],[115,45,66,64.0],[115,45,67,64.0],[115,45,68,64.0],[115,45,69,64.0],[115,45,70,64.0],[115,45,71,64.0],[115,45,72,64.0],[115,45,73,64.0],[115,45,74,64.0],[115,45,75,64.0],[115,45,76,64.0],[115,45,77,64.0],[115,45,78,64.0],[115,45,79,64.0],[115,46,64,64.0],[115,46,65,64.0],[115,46,66,64.0],[115,46,67,64.0],[115,46,68,64.0],[115,46,69,64.0],[115,46,70,64.0],[115,46,71,64.0],[115,46,72,64.0],[115,46,73,64.0],[115,46,74,64.0],[115,46,75,64.0],[115,46,76,64.0],[115,46,77,64.0],[115,46,78,64.0],[115,46,79,64.0],[115,47,64,64.0],[115,47,65,64.0],[115,47,66,64.0],[115,47,67,64.0],[115,47,68,64.0],[115,47,69,64.0],[115,47,70,64.0],[115,47,71,64.0],[115,47,72,64.0],[115,47,73,64.0],[115,47,74,64.0],[115,47,75,64.0],[115,47,76,64.0],[115,47,77,64.0],[115,47,78,64.0],[115,47,79,64.0],[115,48,64,64.0],[115,48,65,64.0],[115,48,66,64.0],[115,48,67,64.0],[115,48,68,64.0],[115,48,69,64.0],[115,48,70,64.0],[115,48,71,64.0],[115,48,72,64.0],[115,48,73,64.0],[115,48,74,64.0],[115,48,75,64.0],[115,48,76,64.0],[115,48,77,64.0],[115,48,78,64.0],[115,48,79,64.0],[115,49,64,64.0],[115,49,65,64.0],[115,49,66,64.0],[115,49,67,64.0],[115,49,68,64.0],[115,49,69,64.0],[115,49,70,64.0],[115,49,71,64.0],[115,49,72,64.0],[115,49,73,64.0],[115,49,74,64.0],[115,49,75,64.0],[115,49,76,64.0],[115,49,77,64.0],[115,49,78,64.0],[115,49,79,64.0],[115,50,64,64.0],[115,50,65,64.0],[115,50,66,64.0],[115,50,67,64.0],[115,50,68,64.0],[115,50,69,64.0],[115,50,70,64.0],[115,50,71,64.0],[115,50,72,64.0],[115,50,73,64.0],[115,50,74,64.0],[115,50,75,64.0],[115,50,76,64.0],[115,50,77,64.0],[115,50,78,64.0],[115,50,79,64.0],[115,51,64,64.0],[115,51,65,64.0],[115,51,66,64.0],[115,51,67,64.0],[115,51,68,64.0],[115,51,69,64.0],[115,51,70,64.0],[115,51,71,64.0],[115,51,72,64.0],[115,51,73,64.0],[115,51,74,64.0],[115,51,75,64.0],[115,51,76,64.0],[115,51,77,64.0],[115,51,78,64.0],[115,51,79,64.0],[115,52,64,64.0],[115,52,65,64.0],[115,52,66,64.0],[115,52,67,64.0],[115,52,68,64.0],[115,52,69,64.0],[115,52,70,64.0],[115,52,71,64.0],[115,52,72,64.0],[115,52,73,64.0],[115,52,74,64.0],[115,52,75,64.0],[115,52,76,64.0],[115,52,77,64.0],[115,52,78,64.0],[115,52,79,64.0],[115,53,64,64.0],[115,53,65,64.0],[115,53,66,64.0],[115,53,67,64.0],[115,53,68,64.0],[115,53,69,64.0],[115,53,70,64.0],[115,53,71,64.0],[115,53,72,64.0],[115,53,73,64.0],[115,53,74,64.0],[115,53,75,64.0],[115,53,76,64.0],[115,53,77,64.0],[115,53,78,64.0],[115,53,79,64.0],[115,54,64,64.0],[115,54,65,64.0],[115,54,66,64.0],[115,54,67,64.0],[115,54,68,64.0],[115,54,69,64.0],[115,54,70,64.0],[115,54,71,64.0],[115,54,72,64.0],[115,54,73,64.0],[115,54,74,64.0],[115,54,75,64.0],[115,54,76,64.0],[115,54,77,64.0],[115,54,78,64.0],[115,54,79,64.0],[115,55,64,64.0],[115,55,65,64.0],[115,55,66,64.0],[115,55,67,64.0],[115,55,68,64.0],[115,55,69,64.0],[115,55,70,64.0],[115,55,71,64.0],[115,55,72,64.0],[115,55,73,64.0],[115,55,74,64.0],[115,55,75,64.0],[115,55,76,64.0],[115,55,77,64.0],[115,55,78,64.0],[115,55,79,64.0],[115,56,64,64.0],[115,56,65,64.0],[115,56,66,64.0],[115,56,67,64.0],[115,56,68,64.0],[115,56,69,64.0],[115,56,70,64.0],[115,56,71,64.0],[115,56,72,64.0],[115,56,73,64.0],[115,56,74,64.0],[115,56,75,64.0],[115,56,76,64.0],[115,56,77,64.0],[115,56,78,64.0],[115,56,79,64.0],[115,57,64,64.0],[115,57,65,64.0],[115,57,66,64.0],[115,57,67,64.0],[115,57,68,64.0],[115,57,69,64.0],[115,57,70,64.0],[115,57,71,64.0],[115,57,72,64.0],[115,57,73,64.0],[115,57,74,64.0],[115,57,75,64.0],[115,57,76,64.0],[115,57,77,64.0],[115,57,78,64.0],[115,57,79,64.0],[115,58,64,64.0],[115,58,65,64.0],[115,58,66,64.0],[115,58,67,64.0],[115,58,68,64.0],[115,58,69,64.0],[115,58,70,64.0],[115,58,71,64.0],[115,58,72,64.0],[115,58,73,64.0],[115,58,74,64.0],[115,58,75,64.0],[115,58,76,64.0],[115,58,77,64.0],[115,58,78,64.0],[115,58,79,64.0],[115,59,64,64.0],[115,59,65,64.0],[115,59,66,64.0],[115,59,67,64.0],[115,59,68,64.0],[115,59,69,64.0],[115,59,70,64.0],[115,59,71,64.0],[115,59,72,64.0],[115,59,73,64.0],[115,59,74,64.0],[115,59,75,64.0],[115,59,76,64.0],[115,59,77,64.0],[115,59,78,64.0],[115,59,79,64.0],[115,60,64,64.0],[115,60,65,64.0],[115,60,66,64.0],[115,60,67,64.0],[115,60,68,64.0],[115,60,69,64.0],[115,60,70,64.0],[115,60,71,64.0],[115,60,72,64.0],[115,60,73,64.0],[115,60,74,64.0],[115,60,75,64.0],[115,60,76,64.0],[115,60,77,64.0],[115,60,78,64.0],[115,60,79,64.0],[115,61,64,64.0],[115,61,65,64.0],[115,61,66,64.0],[115,61,67,64.0],[115,61,68,64.0],[115,61,69,64.0],[115,61,70,64.0],[115,61,71,64.0],[115,61,72,64.0],[115,61,73,64.0],[115,61,74,64.0],[115,61,75,64.0],[115,61,76,64.0],[115,61,77,64.0],[115,61,78,64.0],[115,61,79,64.0],[115,62,64,64.0],[115,62,65,64.0],[115,62,66,64.0],[115,62,67,64.0],[115,62,68,64.0],[115,62,69,64.0],[115,62,70,64.0],[115,62,71,64.0],[115,62,72,64.0],[115,62,73,64.0],[115,62,74,64.0],[115,62,75,64.0],[115,62,76,64.0],[115,62,77,64.0],[115,62,78,64.0],[115,62,79,64.0],[115,63,64,64.0],[115,63,65,64.0],[115,63,66,64.0],[115,63,67,64.0],[115,63,68,64.0],[115,63,69,64.0],[115,63,70,64.0],[115,63,71,64.0],[115,63,72,64.0],[115,63,73,64.0],[115,63,74,64.0],[115,63,75,64.0],[115,63,76,64.0],[115,63,77,64.0],[115,63,78,64.0],[115,63,79,64.0],[115,64,64,64.0],[115,64,65,64.0],[115,64,66,64.0],[115,64,67,64.0],[115,64,68,64.0],[115,64,69,64.0],[115,64,70,64.0],[115,64,71,64.0],[115,64,72,64.0],[115,64,73,64.0],[115,64,74,64.0],[115,64,75,64.0],[115,64,76,64.0],[115,64,77,64.0],[115,64,78,64.0],[115,64,79,64.0],[115,65,64,64.0],[115,65,65,64.0],[115,65,66,64.0],[115,65,67,64.0],[115,65,68,64.0],[115,65,69,64.0],[115,65,70,64.0],[115,65,71,64.0],[115,65,72,64.0],[115,65,73,64.0],[115,65,74,64.0],[115,65,75,64.0],[115,65,76,64.0],[115,65,77,64.0],[115,65,78,64.0],[115,65,79,64.0],[115,66,64,64.0],[115,66,65,64.0],[115,66,66,64.0],[115,66,67,64.0],[115,66,68,64.0],[115,66,69,64.0],[115,66,70,64.0],[115,66,71,64.0],[115,66,72,64.0],[115,66,73,64.0],[115,66,74,64.0],[115,66,75,64.0],[115,66,76,64.0],[115,66,77,64.0],[115,66,78,64.0],[115,66,79,64.0],[115,67,64,64.0],[115,67,65,64.0],[115,67,66,64.0],[115,67,67,64.0],[115,67,68,64.0],[115,67,69,64.0],[115,67,70,64.0],[115,67,71,64.0],[115,67,72,64.0],[115,67,73,64.0],[115,67,74,64.0],[115,67,75,64.0],[115,67,76,64.0],[115,67,77,64.0],[115,67,78,64.0],[115,67,79,64.0],[115,68,64,64.0],[115,68,65,64.0],[115,68,66,64.0],[115,68,67,64.0],[115,68,68,64.0],[115,68,69,64.0],[115,68,70,64.0],[115,68,71,64.0],[115,68,72,64.0],[115,68,73,64.0],[115,68,74,64.0],[115,68,75,64.0],[115,68,76,64.0],[115,68,77,64.0],[115,68,78,64.0],[115,68,79,64.0],[115,69,64,64.0],[115,69,65,64.0],[115,69,66,64.0],[115,69,67,64.0],[115,69,68,64.0],[115,69,69,64.0],[115,69,70,64.0],[115,69,71,64.0],[115,69,72,64.0],[115,69,73,64.0],[115,69,74,64.0],[115,69,75,64.0],[115,69,76,64.0],[115,69,77,64.0],[115,69,78,64.0],[115,69,79,64.0],[115,70,64,64.0],[115,70,65,64.0],[115,70,66,64.0],[115,70,67,64.0],[115,70,68,64.0],[115,70,69,64.0],[115,70,70,64.0],[115,70,71,64.0],[115,70,72,64.0],[115,70,73,64.0],[115,70,74,64.0],[115,70,75,64.0],[115,70,76,64.0],[115,70,77,64.0],[115,70,78,64.0],[115,70,79,64.0],[115,71,64,64.0],[115,71,65,64.0],[115,71,66,64.0],[115,71,67,64.0],[115,71,68,64.0],[115,71,69,64.0],[115,71,70,64.0],[115,71,71,64.0],[115,71,72,64.0],[115,71,73,64.0],[115,71,74,64.0],[115,71,75,64.0],[115,71,76,64.0],[115,71,77,64.0],[115,71,78,64.0],[115,71,79,64.0],[115,72,64,64.0],[115,72,65,64.0],[115,72,66,64.0],[115,72,67,64.0],[115,72,68,64.0],[115,72,69,64.0],[115,72,70,64.0],[115,72,71,64.0],[115,72,72,64.0],[115,72,73,64.0],[115,72,74,64.0],[115,72,75,64.0],[115,72,76,64.0],[115,72,77,64.0],[115,72,78,64.0],[115,72,79,64.0],[115,73,64,64.0],[115,73,65,64.0],[115,73,66,64.0],[115,73,67,64.0],[115,73,68,64.0],[115,73,69,64.0],[115,73,70,64.0],[115,73,71,64.0],[115,73,72,64.0],[115,73,73,64.0],[115,73,74,64.0],[115,73,75,64.0],[115,73,76,64.0],[115,73,77,64.0],[115,73,78,64.0],[115,73,79,64.0],[115,74,64,64.0],[115,74,65,64.0],[115,74,66,64.0],[115,74,67,64.0],[115,74,68,64.0],[115,74,69,64.0],[115,74,70,64.0],[115,74,71,64.0],[115,74,72,64.0],[115,74,73,64.0],[115,74,74,64.0],[115,74,75,64.0],[115,74,76,64.0],[115,74,77,64.0],[115,74,78,64.0],[115,74,79,64.0],[115,75,64,64.0],[115,75,65,64.0],[115,75,66,64.0],[115,75,67,64.0],[115,75,68,64.0],[115,75,69,64.0],[115,75,70,64.0],[115,75,71,64.0],[115,75,72,64.0],[115,75,73,64.0],[115,75,74,64.0],[115,75,75,64.0],[115,75,76,64.0],[115,75,77,64.0],[115,75,78,64.0],[115,75,79,64.0],[115,76,64,64.0],[115,76,65,64.0],[115,76,66,64.0],[115,76,67,64.0],[115,76,68,64.0],[115,76,69,64.0],[115,76,70,64.0],[115,76,71,64.0],[115,76,72,64.0],[115,76,73,64.0],[115,76,74,64.0],[115,76,75,64.0],[115,76,76,64.0],[115,76,77,64.0],[115,76,78,64.0],[115,76,79,64.0],[115,77,64,64.0],[115,77,65,64.0],[115,77,66,64.0],[115,77,67,64.0],[115,77,68,64.0],[115,77,69,64.0],[115,77,70,64.0],[115,77,71,64.0],[115,77,72,64.0],[115,77,73,64.0],[115,77,74,64.0],[115,77,75,64.0],[115,77,76,64.0],[115,77,77,64.0],[115,77,78,64.0],[115,77,79,64.0],[115,78,64,64.0],[115,78,65,64.0],[115,78,66,64.0],[115,78,67,64.0],[115,78,68,64.0],[115,78,69,64.0],[115,78,70,64.0],[115,78,71,64.0],[115,78,72,64.0],[115,78,73,64.0],[115,78,74,64.0],[115,78,75,64.0],[115,78,76,64.0],[115,78,77,64.0],[115,78,78,64.0],[115,78,79,64.0],[115,79,64,64.0],[115,79,65,64.0],[115,79,66,64.0],[115,79,67,64.0],[115,79,68,64.0],[115,79,69,64.0],[115,79,70,64.0],[115,79,71,64.0],[115,79,72,64.0],[115,79,73,64.0],[115,79,74,64.0],[115,79,75,64.0],[115,79,76,64.0],[115,79,77,64.0],[115,79,78,64.0],[115,79,79,64.0],[115,80,64,64.0],[115,80,65,64.0],[115,80,66,64.0],[115,80,67,64.0],[115,80,68,64.0],[115,80,69,64.0],[115,80,70,64.0],[115,80,71,64.0],[115,80,72,64.0],[115,80,73,64.0],[115,80,74,64.0],[115,80,75,64.0],[115,80,76,64.0],[115,80,77,64.0],[115,80,78,64.0],[115,80,79,64.0],[115,81,64,64.0],[115,81,65,64.0],[115,81,66,64.0],[115,81,67,64.0],[115,81,68,64.0],[115,81,69,64.0],[115,81,70,64.0],[115,81,71,64.0],[115,81,72,64.0],[115,81,73,64.0],[115,81,74,64.0],[115,81,75,64.0],[115,81,76,64.0],[115,81,77,64.0],[115,81,78,64.0],[115,81,79,64.0],[115,82,64,64.0],[115,82,65,64.0],[115,82,66,64.0],[115,82,67,64.0],[115,82,68,64.0],[115,82,69,64.0],[115,82,70,64.0],[115,82,71,64.0],[115,82,72,64.0],[115,82,73,64.0],[115,82,74,64.0],[115,82,75,64.0],[115,82,76,64.0],[115,82,77,64.0],[115,82,78,64.0],[115,82,79,64.0],[115,83,64,64.0],[115,83,65,64.0],[115,83,66,64.0],[115,83,67,64.0],[115,83,68,64.0],[115,83,69,64.0],[115,83,70,64.0],[115,83,71,64.0],[115,83,72,64.0],[115,83,73,64.0],[115,83,74,64.0],[115,83,75,64.0],[115,83,76,64.0],[115,83,77,64.0],[115,83,78,64.0],[115,83,79,64.0],[115,84,64,64.0],[115,84,65,64.0],[115,84,66,64.0],[115,84,67,64.0],[115,84,68,64.0],[115,84,69,64.0],[115,84,70,64.0],[115,84,71,64.0],[115,84,72,64.0],[115,84,73,64.0],[115,84,74,64.0],[115,84,75,64.0],[115,84,76,64.0],[115,84,77,64.0],[115,84,78,64.0],[115,84,79,64.0],[115,85,64,64.0],[115,85,65,64.0],[115,85,66,64.0],[115,85,67,64.0],[115,85,68,64.0],[115,85,69,64.0],[115,85,70,64.0],[115,85,71,64.0],[115,85,72,64.0],[115,85,73,64.0],[115,85,74,64.0],[115,85,75,64.0],[115,85,76,64.0],[115,85,77,64.0],[115,85,78,64.0],[115,85,79,64.0],[115,86,64,64.0],[115,86,65,64.0],[115,86,66,64.0],[115,86,67,64.0],[115,86,68,64.0],[115,86,69,64.0],[115,86,70,64.0],[115,86,71,64.0],[115,86,72,64.0],[115,86,73,64.0],[115,86,74,64.0],[115,86,75,64.0],[115,86,76,64.0],[115,86,77,64.0],[115,86,78,64.0],[115,86,79,64.0],[115,87,64,64.0],[115,87,65,64.0],[115,87,66,64.0],[115,87,67,64.0],[115,87,68,64.0],[115,87,69,64.0],[115,87,70,64.0],[115,87,71,64.0],[115,87,72,64.0],[115,87,73,64.0],[115,87,74,64.0],[115,87,75,64.0],[115,87,76,64.0],[115,87,77,64.0],[115,87,78,64.0],[115,87,79,64.0],[115,88,64,64.0],[115,88,65,64.0],[115,88,66,64.0],[115,88,67,64.0],[115,88,68,64.0],[115,88,69,64.0],[115,88,70,64.0],[115,88,71,64.0],[115,88,72,64.0],[115,88,73,64.0],[115,88,74,64.0],[115,88,75,64.0],[115,88,76,64.0],[115,88,77,64.0],[115,88,78,64.0],[115,88,79,64.0],[115,89,64,64.0],[115,89,65,64.0],[115,89,66,64.0],[115,89,67,64.0],[115,89,68,64.0],[115,89,69,64.0],[115,89,70,64.0],[115,89,71,64.0],[115,89,72,64.0],[115,89,73,64.0],[115,89,74,64.0],[115,89,75,64.0],[115,89,76,64.0],[115,89,77,64.0],[115,89,78,64.0],[115,89,79,64.0],[115,90,64,64.0],[115,90,65,64.0],[115,90,66,64.0],[115,90,67,64.0],[115,90,68,64.0],[115,90,69,64.0],[115,90,70,64.0],[115,90,71,64.0],[115,90,72,64.0],[115,90,73,64.0],[115,90,74,64.0],[115,90,75,64.0],[115,90,76,64.0],[115,90,77,64.0],[115,90,78,64.0],[115,90,79,64.0],[115,91,64,64.0],[115,91,65,64.0],[115,91,66,64.0],[115,91,67,64.0],[115,91,68,64.0],[115,91,69,64.0],[115,91,70,64.0],[115,91,71,64.0],[115,91,72,64.0],[115,91,73,64.0],[115,91,74,64.0],[115,91,75,64.0],[115,91,76,64.0],[115,91,77,64.0],[115,91,78,64.0],[115,91,79,64.0],[115,92,64,64.0],[115,92,65,64.0],[115,92,66,64.0],[115,92,67,64.0],[115,92,68,64.0],[115,92,69,64.0],[115,92,70,64.0],[115,92,71,64.0],[115,92,72,64.0],[115,92,73,64.0],[115,92,74,64.0],[115,92,75,64.0],[115,92,76,64.0],[115,92,77,64.0],[115,92,78,64.0],[115,92,79,64.0],[115,93,64,64.0],[115,93,65,64.0],[115,93,66,64.0],[115,93,67,64.0],[115,93,68,64.0],[115,93,69,64.0],[115,93,70,64.0],[115,93,71,64.0],[115,93,72,64.0],[115,93,73,64.0],[115,93,74,64.0],[115,93,75,64.0],[115,93,76,64.0],[115,93,77,64.0],[115,93,78,64.0],[115,93,79,64.0],[115,94,64,64.0],[115,94,65,64.0],[115,94,66,64.0],[115,94,67,64.0],[115,94,68,64.0],[115,94,69,64.0],[115,94,70,64.0],[115,94,71,64.0],[115,94,72,64.0],[115,94,73,64.0],[115,94,74,64.0],[115,94,75,64.0],[115,94,76,64.0],[115,94,77,64.0],[115,94,78,64.0],[115,94,79,64.0],[115,95,64,64.0],[115,95,65,64.0],[115,95,66,64.0],[115,95,67,64.0],[115,95,68,64.0],[115,95,69,64.0],[115,95,70,64.0],[115,95,71,64.0],[115,95,72,64.0],[115,95,73,64.0],[115,95,74,64.0],[115,95,75,64.0],[115,95,76,64.0],[115,95,77,64.0],[115,95,78,64.0],[115,95,79,64.0],[115,96,64,64.0],[115,96,65,64.0],[115,96,66,64.0],[115,96,67,64.0],[115,96,68,64.0],[115,96,69,64.0],[115,96,70,64.0],[115,96,71,64.0],[115,96,72,64.0],[115,96,73,64.0],[115,96,74,64.0],[115,96,75,64.0],[115,96,76,64.0],[115,96,77,64.0],[115,96,78,64.0],[115,96,79,64.0],[115,97,64,64.0],[115,97,65,64.0],[115,97,66,64.0],[115,97,67,64.0],[115,97,68,64.0],[115,97,69,64.0],[115,97,70,64.0],[115,97,71,64.0],[115,97,72,64.0],[115,97,73,64.0],[115,97,74,64.0],[115,97,75,64.0],[115,97,76,64.0],[115,97,77,64.0],[115,97,78,64.0],[115,97,79,64.0],[115,98,64,64.0],[115,98,65,64.0],[115,98,66,64.0],[115,98,67,64.0],[115,98,68,64.0],[115,98,69,64.0],[115,98,70,64.0],[115,98,71,64.0],[115,98,72,64.0],[115,98,73,64.0],[115,98,74,64.0],[115,98,75,64.0],[115,98,76,64.0],[115,98,77,64.0],[115,98,78,64.0],[115,98,79,64.0],[115,99,64,64.0],[115,99,65,64.0],[115,99,66,64.0],[115,99,67,64.0],[115,99,68,64.0],[115,99,69,64.0],[115,99,70,64.0],[115,99,71,64.0],[115,99,72,64.0],[115,99,73,64.0],[115,99,74,64.0],[115,99,75,64.0],[115,99,76,64.0],[115,99,77,64.0],[115,99,78,64.0],[115,99,79,64.0],[115,100,64,64.0],[115,100,65,64.0],[115,100,66,64.0],[115,100,67,64.0],[115,100,68,64.0],[115,100,69,64.0],[115,100,70,64.0],[115,100,71,64.0],[115,100,72,64.0],[115,100,73,64.0],[115,100,74,64.0],[115,100,75,64.0],[115,100,76,64.0],[115,100,77,64.0],[115,100,78,64.0],[115,100,79,64.0],[115,101,64,64.0],[115,101,65,64.0],[115,101,66,64.0],[115,101,67,64.0],[115,101,68,64.0],[115,101,69,64.0],[115,101,70,64.0],[115,101,71,64.0],[115,101,72,64.0],[115,101,73,64.0],[115,101,74,64.0],[115,101,75,64.0],[115,101,76,64.0],[115,101,77,64.0],[115,101,78,64.0],[115,101,79,64.0],[115,102,64,64.0],[115,102,65,64.0],[115,102,66,64.0],[115,102,67,64.0],[115,102,68,64.0],[115,102,69,64.0],[115,102,70,64.0],[115,102,71,64.0],[115,102,72,64.0],[115,102,73,64.0],[115,102,74,64.0],[115,102,75,64.0],[115,102,76,64.0],[115,102,77,64.0],[115,102,78,64.0],[115,102,79,64.0],[115,103,64,64.0],[115,103,65,64.0],[115,103,66,64.0],[115,103,67,64.0],[115,103,68,64.0],[115,103,69,64.0],[115,103,70,64.0],[115,103,71,64.0],[115,103,72,64.0],[115,103,73,64.0],[115,103,74,64.0],[115,103,75,64.0],[115,103,76,64.0],[115,103,77,64.0],[115,103,78,64.0],[115,103,79,64.0],[115,104,64,64.0],[115,104,65,64.0],[115,104,66,64.0],[115,104,67,64.0],[115,104,68,64.0],[115,104,69,64.0],[115,104,70,64.0],[115,104,71,64.0],[115,104,72,64.0],[115,104,73,64.0],[115,104,74,64.0],[115,104,75,64.0],[115,104,76,64.0],[115,104,77,64.0],[115,104,78,64.0],[115,104,79,64.0],[115,105,64,64.0],[115,105,65,64.0],[115,105,66,64.0],[115,105,67,64.0],[115,105,68,64.0],[115,105,69,64.0],[115,105,70,64.0],[115,105,71,64.0],[115,105,72,64.0],[115,105,73,64.0],[115,105,74,64.0],[115,105,75,64.0],[115,105,76,64.0],[115,105,77,64.0],[115,105,78,64.0],[115,105,79,64.0],[115,106,64,64.0],[115,106,65,64.0],[115,106,66,64.0],[115,106,67,64.0],[115,106,68,64.0],[115,106,69,64.0],[115,106,70,64.0],[115,106,71,64.0],[115,106,72,64.0],[115,106,73,64.0],[115,106,74,64.0],[115,106,75,64.0],[115,106,76,64.0],[115,106,77,64.0],[115,106,78,64.0],[115,106,79,64.0],[115,107,64,64.0],[115,107,65,64.0],[115,107,66,64.0],[115,107,67,64.0],[115,107,68,64.0],[115,107,69,64.0],[115,107,70,64.0],[115,107,71,64.0],[115,107,72,64.0],[115,107,73,64.0],[115,107,74,64.0],[115,107,75,64.0],[115,107,76,64.0],[115,107,77,64.0],[115,107,78,64.0],[115,107,79,64.0],[115,108,64,64.0],[115,108,65,64.0],[115,108,66,64.0],[115,108,67,64.0],[115,108,68,64.0],[115,108,69,64.0],[115,108,70,64.0],[115,108,71,64.0],[115,108,72,64.0],[115,108,73,64.0],[115,108,74,64.0],[115,108,75,64.0],[115,108,76,64.0],[115,108,77,64.0],[115,108,78,64.0],[115,108,79,64.0],[115,109,64,64.0],[115,109,65,64.0],[115,109,66,64.0],[115,109,67,64.0],[115,109,68,64.0],[115,109,69,64.0],[115,109,70,64.0],[115,109,71,64.0],[115,109,72,64.0],[115,109,73,64.0],[115,109,74,64.0],[115,109,75,64.0],[115,109,76,64.0],[115,109,77,64.0],[115,109,78,64.0],[115,109,79,64.0],[115,110,64,64.0],[115,110,65,64.0],[115,110,66,64.0],[115,110,67,64.0],[115,110,68,64.0],[115,110,69,64.0],[115,110,70,64.0],[115,110,71,64.0],[115,110,72,64.0],[115,110,73,64.0],[115,110,74,64.0],[115,110,75,64.0],[115,110,76,64.0],[115,110,77,64.0],[115,110,78,64.0],[115,110,79,64.0],[115,111,64,64.0],[115,111,65,64.0],[115,111,66,64.0],[115,111,67,64.0],[115,111,68,64.0],[115,111,69,64.0],[115,111,70,64.0],[115,111,71,64.0],[115,111,72,64.0],[115,111,73,64.0],[115,111,74,64.0],[115,111,75,64.0],[115,111,76,64.0],[115,111,77,64.0],[115,111,78,64.0],[115,111,79,64.0],[115,112,64,64.0],[115,112,65,64.0],[115,112,66,64.0],[115,112,67,64.0],[115,112,68,64.0],[115,112,69,64.0],[115,112,70,64.0],[115,112,71,64.0],[115,112,72,64.0],[115,112,73,64.0],[115,112,74,64.0],[115,112,75,64.0],[115,112,76,64.0],[115,112,77,64.0],[115,112,78,64.0],[115,112,79,64.0],[115,113,64,64.0],[115,113,65,64.0],[115,113,66,64.0],[115,113,67,64.0],[115,113,68,64.0],[115,113,69,64.0],[115,113,70,64.0],[115,113,71,64.0],[115,113,72,64.0],[115,113,73,64.0],[115,113,74,64.0],[115,113,75,64.0],[115,113,76,64.0],[115,113,77,64.0],[115,113,78,64.0],[115,113,79,64.0],[115,114,64,64.0],[115,114,65,64.0],[115,114,66,64.0],[115,114,67,64.0],[115,114,68,64.0],[115,114,69,64.0],[115,114,70,64.0],[115,114,71,64.0],[115,114,72,64.0],[115,114,73,64.0],[115,114,74,64.0],[115,114,75,64.0],[115,114,76,64.0],[115,114,77,64.0],[115,114,78,64.0],[115,114,79,64.0],[115,115,64,64.0],[115,115,65,64.0],[115,115,66,64.0],[115,115,67,64.0],[115,115,68,64.0],[115,115,69,64.0],[115,115,70,64.0],[115,115,71,64.0],[115,115,72,64.0],[115,115,73,64.0],[115,115,74,64.0],[115,115,75,64.0],[115,115,76,64.0],[115,115,77,64.0],[115,115,78,64.0],[115,115,79,64.0],[115,116,64,64.0],[115,116,65,64.0],[115,116,66,64.0],[115,116,67,64.0],[115,116,68,64.0],[115,116,69,64.0],[115,116,70,64.0],[115,116,71,64.0],[115,116,72,64.0],[115,116,73,64.0],[115,116,74,64.0],[115,116,75,64.0],[115,116,76,64.0],[115,116,77,64.0],[115,116,78,64.0],[115,116,79,64.0],[115,117,64,64.0],[115,117,65,64.0],[115,117,66,64.0],[115,117,67,64.0],[115,117,68,64.0],[115,117,69,64.0],[115,117,70,64.0],[115,117,71,64.0],[115,117,72,64.0],[115,117,73,64.0],[115,117,74,64.0],[115,117,75,64.0],[115,117,76,64.0],[115,117,77,64.0],[115,117,78,64.0],[115,117,79,64.0],[115,118,64,64.0],[115,118,65,64.0],[115,118,66,64.0],[115,118,67,64.0],[115,118,68,64.0],[115,118,69,64.0],[115,118,70,64.0],[115,118,71,64.0],[115,118,72,64.0],[115,118,73,64.0],[115,118,74,64.0],[115,118,75,64.0],[115,118,76,64.0],[115,118,77,64.0],[115,118,78,64.0],[115,118,79,64.0],[115,119,64,64.0],[115,119,65,64.0],[115,119,66,64.0],[115,119,67,64.0],[115,119,68,64.0],[115,119,69,64.0],[115,119,70,64.0],[115,119,71,64.0],[115,119,72,64.0],[115,119,73,64.0],[115,119,74,64.0],[115,119,75,64.0],[115,119,76,64.0],[115,119,77,64.0],[115,119,78,64.0],[115,119,79,64.0],[115,120,64,64.0],[115,120,65,64.0],[115,120,66,64.0],[115,120,67,64.0],[115,120,68,64.0],[115,120,69,64.0],[115,120,70,64.0],[115,120,71,64.0],[115,120,72,64.0],[115,120,73,64.0],[115,120,74,64.0],[115,120,75,64.0],[115,120,76,64.0],[115,120,77,64.0],[115,120,78,64.0],[115,120,79,64.0],[115,121,64,64.0],[115,121,65,64.0],[115,121,66,64.0],[115,121,67,64.0],[115,121,68,64.0],[115,121,69,64.0],[115,121,70,64.0],[115,121,71,64.0],[115,121,72,64.0],[115,121,73,64.0],[115,121,74,64.0],[115,121,75,64.0],[115,121,76,64.0],[115,121,77,64.0],[115,121,78,64.0],[115,121,79,64.0],[115,122,64,64.0],[115,122,65,64.0],[115,122,66,64.0],[115,122,67,64.0],[115,122,68,64.0],[115,122,69,64.0],[115,122,70,64.0],[115,122,71,64.0],[115,122,72,64.0],[115,122,73,64.0],[115,122,74,64.0],[115,122,75,64.0],[115,122,76,64.0],[115,122,77,64.0],[115,122,78,64.0],[115,122,79,64.0],[115,123,64,64.0],[115,123,65,64.0],[115,123,66,64.0],[115,123,67,64.0],[115,123,68,64.0],[115,123,69,64.0],[115,123,70,64.0],[115,123,71,64.0],[115,123,72,64.0],[115,123,73,64.0],[115,123,74,64.0],[115,123,75,64.0],[115,123,76,64.0],[115,123,77,64.0],[115,123,78,64.0],[115,123,79,64.0],[115,124,64,64.0],[115,124,65,64.0],[115,124,66,64.0],[115,124,67,64.0],[115,124,68,64.0],[115,124,69,64.0],[115,124,70,64.0],[115,124,71,64.0],[115,124,72,64.0],[115,124,73,64.0],[115,124,74,64.0],[115,124,75,64.0],[115,124,76,64.0],[115,124,77,64.0],[115,124,78,64.0],[115,124,79,64.0],[115,125,64,64.0],[115,125,65,64.0],[115,125,66,64.0],[115,125,67,64.0],[115,125,68,64.0],[115,125,69,64.0],[115,125,70,64.0],[115,125,71,64.0],[115,125,72,64.0],[115,125,73,64.0],[115,125,74,64.0],[115,125,75,64.0],[115,125,76,64.0],[115,125,77,64.0],[115,125,78,64.0],[115,125,79,64.0],[115,126,64,64.0],[115,126,65,64.0],[115,126,66,64.0],[115,126,67,64.0],[115,126,68,64.0],[115,126,69,64.0],[115,126,70,64.0],[115,126,71,64.0],[115,126,72,64.0],[115,126,73,64.0],[115,126,74,64.0],[115,126,75,64.0],[115,126,76,64.0],[115,126,77,64.0],[115,126,78,64.0],[115,126,79,64.0],[115,127,64,64.0],[115,127,65,64.0],[115,127,66,64.0],[115,127,67,64.0],[115,127,68,64.0],[115,127,69,64.0],[115,127,70,64.0],[115,127,71,64.0],[115,127,72,64.0],[115,127,73,64.0],[115,127,74,64.0],[115,127,75,64.0],[115,127,76,64.0],[115,127,77,64.0],[115,127,78,64.0],[115,127,79,64.0],[115,128,64,64.0],[115,128,65,64.0],[115,128,66,64.0],[115,128,67,64.0],[115,128,68,64.0],[115,128,69,64.0],[115,128,70,64.0],[115,128,71,64.0],[115,128,72,64.0],[115,128,73,64.0],[115,128,74,64.0],[115,128,75,64.0],[115,128,76,64.0],[115,128,77,64.0],[115,128,78,64.0],[115,128,79,64.0],[115,129,64,64.0],[115,129,65,64.0],[115,129,66,64.0],[115,129,67,64.0],[115,129,68,64.0],[115,129,69,64.0],[115,129,70,64.0],[115,129,71,64.0],[115,129,72,64.0],[115,129,73,64.0],[115,129,74,64.0],[115,129,75,64.0],[115,129,76,64.0],[115,129,77,64.0],[115,129,78,64.0],[115,129,79,64.0],[115,130,64,64.0],[115,130,65,64.0],[115,130,66,64.0],[115,130,67,64.0],[115,130,68,64.0],[115,130,69,64.0],[115,130,70,64.0],[115,130,71,64.0],[115,130,72,64.0],[115,130,73,64.0],[115,130,74,64.0],[115,130,75,64.0],[115,130,76,64.0],[115,130,77,64.0],[115,130,78,64.0],[115,130,79,64.0],[115,131,64,64.0],[115,131,65,64.0],[115,131,66,64.0],[115,131,67,64.0],[115,131,68,64.0],[115,131,69,64.0],[115,131,70,64.0],[115,131,71,64.0],[115,131,72,64.0],[115,131,73,64.0],[115,131,74,64.0],[115,131,75,64.0],[115,131,76,64.0],[115,131,77,64.0],[115,131,78,64.0],[115,131,79,64.0],[115,132,64,64.0],[115,132,65,64.0],[115,132,66,64.0],[115,132,67,64.0],[115,132,68,64.0],[115,132,69,64.0],[115,132,70,64.0],[115,132,71,64.0],[115,132,72,64.0],[115,132,73,64.0],[115,132,74,64.0],[115,132,75,64.0],[115,132,76,64.0],[115,132,77,64.0],[115,132,78,64.0],[115,132,79,64.0],[115,133,64,64.0],[115,133,65,64.0],[115,133,66,64.0],[115,133,67,64.0],[115,133,68,64.0],[115,133,69,64.0],[115,133,70,64.0],[115,133,71,64.0],[115,133,72,64.0],[115,133,73,64.0],[115,133,74,64.0],[115,133,75,64.0],[115,133,76,64.0],[115,133,77,64.0],[115,133,78,64.0],[115,133,79,64.0],[115,134,64,64.0],[115,134,65,64.0],[115,134,66,64.0],[115,134,67,64.0],[115,134,68,64.0],[115,134,69,64.0],[115,134,70,64.0],[115,134,71,64.0],[115,134,72,64.0],[115,134,73,64.0],[115,134,74,64.0],[115,134,75,64.0],[115,134,76,64.0],[115,134,77,64.0],[115,134,78,64.0],[115,134,79,64.0],[115,135,64,64.0],[115,135,65,64.0],[115,135,66,64.0],[115,135,67,64.0],[115,135,68,64.0],[115,135,69,64.0],[115,135,70,64.0],[115,135,71,64.0],[115,135,72,64.0],[115,135,73,64.0],[115,135,74,64.0],[115,135,75,64.0],[115,135,76,64.0],[115,135,77,64.0],[115,135,78,64.0],[115,135,79,64.0],[115,136,64,64.0],[115,136,65,64.0],[115,136,66,64.0],[115,136,67,64.0],[115,136,68,64.0],[115,136,69,64.0],[115,136,70,64.0],[115,136,71,64.0],[115,136,72,64.0],[115,136,73,64.0],[115,136,74,64.0],[115,136,75,64.0],[115,136,76,64.0],[115,136,77,64.0],[115,136,78,64.0],[115,136,79,64.0],[115,137,64,64.0],[115,137,65,64.0],[115,137,66,64.0],[115,137,67,64.0],[115,137,68,64.0],[115,137,69,64.0],[115,137,70,64.0],[115,137,71,64.0],[115,137,72,64.0],[115,137,73,64.0],[115,137,74,64.0],[115,137,75,64.0],[115,137,76,64.0],[115,137,77,64.0],[115,137,78,64.0],[115,137,79,64.0],[115,138,64,64.0],[115,138,65,64.0],[115,138,66,64.0],[115,138,67,64.0],[115,138,68,64.0],[115,138,69,64.0],[115,138,70,64.0],[115,138,71,64.0],[115,138,72,64.0],[115,138,73,64.0],[115,138,74,64.0],[115,138,75,64.0],[115,138,76,64.0],[115,138,77,64.0],[115,138,78,64.0],[115,138,79,64.0],[115,139,64,64.0],[115,139,65,64.0],[115,139,66,64.0],[115,139,67,64.0],[115,139,68,64.0],[115,139,69,64.0],[115,139,70,64.0],[115,139,71,64.0],[115,139,72,64.0],[115,139,73,64.0],[115,139,74,64.0],[115,139,75,64.0],[115,139,76,64.0],[115,139,77,64.0],[115,139,78,64.0],[115,139,79,64.0],[115,140,64,64.0],[115,140,65,64.0],[115,140,66,64.0],[115,140,67,64.0],[115,140,68,64.0],[115,140,69,64.0],[115,140,70,64.0],[115,140,71,64.0],[115,140,72,64.0],[115,140,73,64.0],[115,140,74,64.0],[115,140,75,64.0],[115,140,76,64.0],[115,140,77,64.0],[115,140,78,64.0],[115,140,79,64.0],[115,141,64,64.0],[115,141,65,64.0],[115,141,66,64.0],[115,141,67,64.0],[115,141,68,64.0],[115,141,69,64.0],[115,141,70,64.0],[115,141,71,64.0],[115,141,72,64.0],[115,141,73,64.0],[115,141,74,64.0],[115,141,75,64.0],[115,141,76,64.0],[115,141,77,64.0],[115,141,78,64.0],[115,141,79,64.0],[115,142,64,64.0],[115,142,65,64.0],[115,142,66,64.0],[115,142,67,64.0],[115,142,68,64.0],[115,142,69,64.0],[115,142,70,64.0],[115,142,71,64.0],[115,142,72,64.0],[115,142,73,64.0],[115,142,74,64.0],[115,142,75,64.0],[115,142,76,64.0],[115,142,77,64.0],[115,142,78,64.0],[115,142,79,64.0],[115,143,64,64.0],[115,143,65,64.0],[115,143,66,64.0],[115,143,67,64.0],[115,143,68,64.0],[115,143,69,64.0],[115,143,70,64.0],[115,143,71,64.0],[115,143,72,64.0],[115,143,73,64.0],[115,143,74,64.0],[115,143,75,64.0],[115,143,76,64.0],[115,143,77,64.0],[115,143,78,64.0],[115,143,79,64.0],[115,144,64,64.0],[115,144,65,64.0],[115,144,66,64.0],[115,144,67,64.0],[115,144,68,64.0],[115,144,69,64.0],[115,144,70,64.0],[115,144,71,64.0],[115,144,72,64.0],[115,144,73,64.0],[115,144,74,64.0],[115,144,75,64.0],[115,144,76,64.0],[115,144,77,64.0],[115,144,78,64.0],[115,144,79,64.0],[115,145,64,64.0],[115,145,65,64.0],[115,145,66,64.0],[115,145,67,64.0],[115,145,68,64.0],[115,145,69,64.0],[115,145,70,64.0],[115,145,71,64.0],[115,145,72,64.0],[115,145,73,64.0],[115,145,74,64.0],[115,145,75,64.0],[115,145,76,64.0],[115,145,77,64.0],[115,145,78,64.0],[115,145,79,64.0],[115,146,64,64.0],[115,146,65,64.0],[115,146,66,64.0],[115,146,67,64.0],[115,146,68,64.0],[115,146,69,64.0],[115,146,70,64.0],[115,146,71,64.0],[115,146,72,64.0],[115,146,73,64.0],[115,146,74,64.0],[115,146,75,64.0],[115,146,76,64.0],[115,146,77,64.0],[115,146,78,64.0],[115,146,79,64.0],[115,147,64,64.0],[115,147,65,64.0],[115,147,66,64.0],[115,147,67,64.0],[115,147,68,64.0],[115,147,69,64.0],[115,147,70,64.0],[115,147,71,64.0],[115,147,72,64.0],[115,147,73,64.0],[115,147,74,64.0],[115,147,75,64.0],[115,147,76,64.0],[115,147,77,64.0],[115,147,78,64.0],[115,147,79,64.0],[115,148,64,64.0],[115,148,65,64.0],[115,148,66,64.0],[115,148,67,64.0],[115,148,68,64.0],[115,148,69,64.0],[115,148,70,64.0],[115,148,71,64.0],[115,148,72,64.0],[115,148,73,64.0],[115,148,74,64.0],[115,148,75,64.0],[115,148,76,64.0],[115,148,77,64.0],[115,148,78,64.0],[115,148,79,64.0],[115,149,64,64.0],[115,149,65,64.0],[115,149,66,64.0],[115,149,67,64.0],[115,149,68,64.0],[115,149,69,64.0],[115,149,70,64.0],[115,149,71,64.0],[115,149,72,64.0],[115,149,73,64.0],[115,149,74,64.0],[115,149,75,64.0],[115,149,76,64.0],[115,149,77,64.0],[115,149,78,64.0],[115,149,79,64.0],[115,150,64,64.0],[115,150,65,64.0],[115,150,66,64.0],[115,150,67,64.0],[115,150,68,64.0],[115,150,69,64.0],[115,150,70,64.0],[115,150,71,64.0],[115,150,72,64.0],[115,150,73,64.0],[115,150,74,64.0],[115,150,75,64.0],[115,150,76,64.0],[115,150,77,64.0],[115,150,78,64.0],[115,150,79,64.0],[115,151,64,64.0],[115,151,65,64.0],[115,151,66,64.0],[115,151,67,64.0],[115,151,68,64.0],[115,151,69,64.0],[115,151,70,64.0],[115,151,71,64.0],[115,151,72,64.0],[115,151,73,64.0],[115,151,74,64.0],[115,151,75,64.0],[115,151,76,64.0],[115,151,77,64.0],[115,151,78,64.0],[115,151,79,64.0],[115,152,64,64.0],[115,152,65,64.0],[115,152,66,64.0],[115,152,67,64.0],[115,152,68,64.0],[115,152,69,64.0],[115,152,70,64.0],[115,152,71,64.0],[115,152,72,64.0],[115,152,73,64.0],[115,152,74,64.0],[115,152,75,64.0],[115,152,76,64.0],[115,152,77,64.0],[115,152,78,64.0],[115,152,79,64.0],[115,153,64,64.0],[115,153,65,64.0],[115,153,66,64.0],[115,153,67,64.0],[115,153,68,64.0],[115,153,69,64.0],[115,153,70,64.0],[115,153,71,64.0],[115,153,72,64.0],[115,153,73,64.0],[115,153,74,64.0],[115,153,75,64.0],[115,153,76,64.0],[115,153,77,64.0],[115,153,78,64.0],[115,153,79,64.0],[115,154,64,64.0],[115,154,65,64.0],[115,154,66,64.0],[115,154,67,64.0],[115,154,68,64.0],[115,154,69,64.0],[115,154,70,64.0],[115,154,71,64.0],[115,154,72,64.0],[115,154,73,64.0],[115,154,74,64.0],[115,154,75,64.0],[115,154,76,64.0],[115,154,77,64.0],[115,154,78,64.0],[115,154,79,64.0],[115,155,64,64.0],[115,155,65,64.0],[115,155,66,64.0],[115,155,67,64.0],[115,155,68,64.0],[115,155,69,64.0],[115,155,70,64.0],[115,155,71,64.0],[115,155,72,64.0],[115,155,73,64.0],[115,155,74,64.0],[115,155,75,64.0],[115,155,76,64.0],[115,155,77,64.0],[115,155,78,64.0],[115,155,79,64.0],[115,156,64,64.0],[115,156,65,64.0],[115,156,66,64.0],[115,156,67,64.0],[115,156,68,64.0],[115,156,69,64.0],[115,156,70,64.0],[115,156,71,64.0],[115,156,72,64.0],[115,156,73,64.0],[115,156,74,64.0],[115,156,75,64.0],[115,156,76,64.0],[115,156,77,64.0],[115,156,78,64.0],[115,156,79,64.0],[115,157,64,64.0],[115,157,65,64.0],[115,157,66,64.0],[115,157,67,64.0],[115,157,68,64.0],[115,157,69,64.0],[115,157,70,64.0],[115,157,71,64.0],[115,157,72,64.0],[115,157,73,64.0],[115,157,74,64.0],[115,157,75,64.0],[115,157,76,64.0],[115,157,77,64.0],[115,157,78,64.0],[115,157,79,64.0],[115,158,64,64.0],[115,158,65,64.0],[115,158,66,64.0],[115,158,67,64.0],[115,158,68,64.0],[115,158,69,64.0],[115,158,70,64.0],[115,158,71,64.0],[115,158,72,64.0],[115,158,73,64.0],[115,158,74,64.0],[115,158,75,64.0],[115,158,76,64.0],[115,158,77,64.0],[115,158,78,64.0],[115,158,79,64.0],[115,159,64,64.0],[115,159,65,64.0],[115,159,66,64.0],[115,159,67,64.0],[115,159,68,64.0],[115,159,69,64.0],[115,159,70,64.0],[115,159,71,64.0],[115,159,72,64.0],[115,159,73,64.0],[115,159,74,64.0],[115,159,75,64.0],[115,159,76,64.0],[115,159,77,64.0],[115,159,78,64.0],[115,159,79,64.0],[115,160,64,64.0],[115,160,65,64.0],[115,160,66,64.0],[115,160,67,64.0],[115,160,68,64.0],[115,160,69,64.0],[115,160,70,64.0],[115,160,71,64.0],[115,160,72,64.0],[115,160,73,64.0],[115,160,74,64.0],[115,160,75,64.0],[115,160,76,64.0],[115,160,77,64.0],[115,160,78,64.0],[115,160,79,0.40411810996975195],[115,161,64,64.0],[115,161,65,64.0],[115,161,66,64.0],[115,161,67,64.0],[115,161,68,64.0],[115,161,69,64.0],[115,161,70,64.0],[115,161,71,64.0],[115,161,72,64.0],[115,161,73,64.0],[115,161,74,64.0],[115,161,75,64.0],[115,161,76,64.0],[115,161,77,64.0],[115,161,78,0.347961404639084],[115,161,79,0.4046988879468708],[115,162,64,64.0],[115,162,65,64.0],[115,162,66,64.0],[115,162,67,64.0],[115,162,68,64.0],[115,162,69,64.0],[115,162,70,64.0],[115,162,71,64.0],[115,162,72,64.0],[115,162,73,64.0],[115,162,74,64.0],[115,162,75,64.0],[115,162,76,0.2911681686049936],[115,162,77,0.28782279683836065],[115,162,78,0.34841844444876724],[115,162,79,0.4056622580460947],[115,163,64,64.0],[115,163,65,64.0],[115,163,66,64.0],[115,163,67,64.0],[115,163,68,64.0],[115,163,69,64.0],[115,163,70,64.0],[115,163,71,64.0],[115,163,72,64.0],[115,163,73,64.0],[115,163,74,64.0],[115,163,75,0.3009117906343204],[115,163,76,0.26849616571603785],[115,163,77,0.28862256344594867],[115,163,78,0.3495740070185933],[115,163,79,0.40712053869317133],[115,164,64,64.0],[115,164,65,64.0],[115,164,66,64.0],[115,164,67,64.0],[115,164,68,64.0],[115,164,69,64.0],[115,164,70,64.0],[115,164,71,64.0],[115,164,72,64.0],[115,164,73,64.0],[115,164,74,0.30332017369900144],[115,164,75,0.27509442013987756],[115,164,76,0.24603745506945712],[115,164,77,0.29041960076574885],[115,164,78,0.3515276919205613],[115,164,79,0.40917860366994846],[115,165,64,64.0],[115,165,65,64.0],[115,165,66,64.0],[115,165,67,64.0],[115,165,68,64.0],[115,165,69,64.0],[115,165,70,64.0],[115,165,71,64.0],[115,165,72,64.0],[115,165,73,0.2985091788463978],[115,165,74,0.27441221061679905],[115,165,75,0.24968900602042168],[115,165,76,0.2295080030628493],[115,165,77,0.2932942661325146],[115,165,78,0.3543670453403918],[115,165,79,0.4119315019026807],[115,166,64,64.0],[115,166,65,64.0],[115,166,66,64.0],[115,166,67,64.0],[115,166,68,64.0],[115,166,69,64.0],[115,166,70,64.0],[115,166,71,0.3071993807352392],[115,166,72,0.2868804935328636],[115,166,73,0.26665363934528746],[115,166,74,0.24615618962232522],[115,166,75,0.22502387012566705],[115,166,76,0.23369634111076423],[115,166,77,0.29731034361644737],[115,166,78,0.35816516755744443],[115,166,79,0.4154619398056235],[115,167,64,64.0],[115,167,65,64.0],[115,167,66,64.0],[115,167,67,64.0],[115,167,68,64.0],[115,167,69,64.0],[115,167,70,0.2853954092093999],[115,167,71,0.2690140652449863],[115,167,72,0.2523025788704806],[115,167,73,0.2357280081095933],[115,167,74,0.2188985021838039],[115,167,75,0.20141925883294517],[115,167,76,0.2392426804265776],[115,167,77,0.3025126917578162],[115,167,78,0.36297821667540175],[115,167,79,0.4198376327458767],[115,168,64,64.0],[115,168,65,64.0],[115,168,66,64.0],[115,168,67,64.0],[115,168,68,64.0],[115,168,69,0.2564530873657348],[115,168,70,0.24478357390307073],[115,168,71,0.2320105228796562],[115,168,72,0.2189648510236959],[115,168,73,0.20609189740197156],[115,168,74,0.1929720024585331],[115,168,75,0.18145395870802156],[115,168,76,0.24615773505404356],[115,168,77,0.3089248498616782],[115,168,78,0.36884284382750004],[115,168,79,0.42510856052513923],[115,169,64,64.0],[115,169,65,64.0],[115,169,66,64.0],[115,169,67,64.0],[115,169,68,0.2201959922931781],[115,169,69,0.2137972753148254],[115,169,70,0.2057064039813556],[115,169,71,0.1965819401916121],[115,169,72,0.18723349422673288],[115,169,73,0.17808450981416793],[115,169,74,0.16868900091546563],[115,169,75,0.19032795773208477],[115,169,76,0.254426697434887],[115,169,77,0.3165464865173542],[115,169,78,0.3757734446605265],[115,169,79,0.4313040128112355],[115,170,64,64.0],[115,170,65,64.0],[115,170,66,0.21497147335345979],[115,170,67,0.1767171999926639],[115,170,68,0.17593012011813508],[115,170,69,0.17304586374215092],[115,170,70,0.1685551236477005],[115,170,71,0.16309267890756768],[115,170,72,0.15744600116671442],[115,170,73,0.1520166140030031],[115,170,74,0.14633373111154113],[115,170,75,0.20064171409820503],[115,170,76,0.264006816160885],[115,170,77,0.32535076388356426],[115,170,78,0.38375929987240753],[115,170,79,0.43842949653548335],[115,171,64,64.0],[115,171,65,0.2533870814133347],[115,171,66,0.19670826111187878],[115,171,67,0.13779895789770402],[115,171,68,0.13394431453347191],[115,171,69,0.1345773804202836],[115,171,70,0.13368201574306537],[115,171,71,0.13186867625288562],[115,171,72,0.12990209159092125],[115,171,73,0.12816198601902545],[115,171,74,0.14873391952871212],[115,171,75,0.21230522093732646],[115,171,76,0.2748249420037795],[115,171,77,0.3352816438554651],[115,171,78,0.3927616306848158],[115,171,79,0.44646353090478313],[115,172,64,0.2858247985987981],[115,172,65,0.23243522137858375],[115,172,66,0.17646735338011482],[115,172,67,0.11827816080886533],[115,172,68,0.09459159363890622],[115,172,69,0.09871971433018585],[115,172,70,0.10138964499602339],[115,172,71,0.10318721413115242],[115,172,72,0.10485403512644716],[115,172,73,0.10674828978716748],[115,172,74,0.16252099835656006],[115,172,75,0.22519457441060087],[115,172,76,0.28677501657007254],[115,172,77,0.3462511107189279],[115,172,78,0.4027105441120642],[115,172,79,0.45535430514316905],[115,173,64,0.26241664061640485],[115,173,65,0.2097718405929134],[115,173,66,0.15456159278762982],[115,173,67,0.09714441841434573],[115,173,68,0.05816099541307594],[115,173,69,0.06573810349940576],[115,173,70,0.0719194144083198],[115,173,71,0.07726605697091395],[115,173,72,0.08249637812600683],[115,173,73,0.11526793428747341],[115,173,74,0.17744913700540305],[115,173,75,0.23914968377343182],[115,173,76,0.2997155034023148],[115,173,77,0.35813631011541547],[115,173,78,0.41350186785137133],[115,173,79,0.4650161987896165],[115,174,64,0.23764285058067636],[115,174,65,0.18576917448241775],[115,174,66,0.13134779349759546],[115,174,67,0.0747385619575534],[115,174,68,0.024864278504868373],[115,174,69,0.035822420722064666],[115,174,70,0.04543945477611751],[115,174,71,0.05425195823976568],[115,174,72,0.07060574200204651],[115,174,73,0.13210991596421778],[115,174,74,0.19330095324178398],[115,174,75,0.2539719492976726],[115,174,76,0.3134667615267816],[115,174,77,0.37077660431735787],[115,174,78,0.42499387479440504],[115,174,79,0.4753261645520258],[115,175,64,0.21193529498879254],[115,175,65,0.16084391127072356],[115,175,66,0.10722682894710517],[115,175,67,0.05144506126756093],[115,175,68,-0.005178113642387738],[115,175,69,0.009073757160878437],[115,175,70,0.022031847347166497],[115,175,71,0.034208535626021025],[115,175,72,0.08914211401290364],[115,175,73,0.14965442380691235],[115,175,74,0.2098180380482164],[115,175,75,0.26942190805175276],[115,175,76,0.32780836144733316],[115,175,77,0.38397054381383816],[115,175,78,0.4370038971599358],[115,175,79,0.48611997371722193],[115,176,64,0.1857702236420731],[115,176,65,0.13545694599712715],[115,176,66,0.08264357837980928],[115,176,67,0.027692178179991034],[115,176,68,-0.02900629842415549],[115,176,69,-0.014509696169283992],[115,176,70,0.0016791796134270898],[115,176,71,0.04844849311613865],[115,176,72,0.10807852408095296],[115,176,73,0.16758127197423145],[115,176,74,0.22669890761732153],[115,176,75,0.2852168475391195],[115,176,76,0.34247634358581636],[115,176,77,0.39747275520692144],[115,176,78,0.44930483024790036],[115,176,79,0.4971883241172502],[115,177,64,0.1595046201546682],[115,177,65,0.10995356778522086],[115,177,66,0.05793139305215385],[115,177,67,0.003801142543103042],[115,177,68,-0.05204553566092836],[115,177,69,-0.03504746903603813],[115,177,70,0.01001089289298554],[115,177,71,0.06850501037747861],[115,177,72,0.1271548902556855],[115,177,73,0.18564230080714242],[115,177,74,0.24370715804640014],[115,177,75,0.3011319581256339],[115,177,76,0.3572572839538894],[115,177,77,0.411080887521574],[115,177,78,0.46170497865298515],[115,177,79,0.5083496567323005],[115,178,64,0.13276027708123758],[115,178,65,0.08396122316554391],[115,178,66,0.03272510475221585],[115,178,67,-0.020584090260991547],[115,178,68,-0.07557416108174966],[115,178,69,-0.025569669557263495],[115,178,70,0.03147897234429897],[115,178,71,0.08900880642281318],[115,178,72,0.14665742945316523],[115,178,73,0.20410565800348568],[115,178,74,0.2610919005989441],[115,178,75,0.31739657278363487],[115,178,76,0.3723601761552249],[115,178,77,0.42498316253865415],[115,178,78,0.47437148720674144],[115,178,79,0.5197498613763246],[115,179,64,0.10506674175157887],[115,179,65,0.05701763595863739],[115,179,66,0.006572503119853301],[115,179,67,-0.03530305198547982],[115,179,68,-0.05754324643305847],[115,179,69,-0.0022838507001829017],[115,179,70,0.05380593294730797],[115,179,71,0.1103350749800255],[115,179,72,0.1669413177400037],[115,179,73,0.2233053627386069],[115,179,74,0.27916508531045897],[115,179,75,0.3342999116313678],[115,179,76,0.38805105821584795],[115,179,77,0.4394221419807961],[115,179,78,0.4875233019673817],[115,179,79,0.531584281358259],[115,180,64,0.0835205858981502],[115,180,65,0.048597135602586494],[115,180,66,0.015095697316696632],[115,180,67,-0.01688900032300889],[115,180,68,-0.032145669992893894],[115,180,69,0.022161777954399206],[115,180,70,0.07725038865162293],[115,180,71,0.13273006039953034],[115,180,72,0.18823951530659644],[115,180,73,0.24346033241157028],[115,180,74,0.29813100734415277],[115,180,75,0.35203126710563204],[115,180,76,0.4045039959758888],[115,180,77,0.4545565486730548],[115,180,78,0.5013037891736394],[115,180,79,0.5439810119664623],[115,181,64,0.10643361084107972],[115,181,65,0.06923471347091611],[115,181,66,0.033360733479438895],[115,181,67,-0.001075265766235567],[115,181,68,-0.0054025576340774595],[115,181,69,0.0479123294146437],[115,181,70,0.10195129655254512],[115,181,71,0.15632592965870723],[115,181,72,0.21067686364743982],[115,181,73,0.26468766415443895],[115,181,74,0.3180987351134813],[115,181,75,0.37069154435856144],[115,181,76,0.42181170580798727],[115,181,77,0.4704709470404966],[115,181,78,0.5157894547266578],[115,181,79,0.5570086461318253],[115,182,64,0.1259770285263194],[115,182,65,0.08663801364691104],[115,182,66,0.04853568267225514],[115,182,67,0.011799955404682413],[115,182,68,0.022723344228588724],[115,182,69,0.07500372964473065],[115,182,70,0.1279429341834373],[115,182,71,0.1811550468304426],[115,182,72,0.2342836157337706],[115,182,73,0.28701538191329695],[115,182,74,0.3390940384074578],[115,182,75,0.39030433771816897],[115,182,76,0.4399957508500484],[115,182,77,0.48718503570526145],[115,182,78,0.5309983152244571],[115,182,79,0.5706837116893326],[115,183,64,0.14191415093687396],[115,183,65,0.1005802733738761],[115,183,66,0.06040445920268671],[115,183,67,0.021531904275596578],[115,183,68,0.05217147738531404],[115,183,69,0.10337761866723189],[115,183,70,0.15516917089863644],[115,183,71,0.20716357349006165],[115,183,72,0.25900832635800264],[115,183,73,0.31039458011885085],[115,183,74,0.3610707514802152],[115,183,75,0.41082648219408124],[115,183,76,0.45901625380029243],[115,183,77,0.5046624993141337],[115,183,78,0.5468978717497643],[115,183,79,0.5849777554657662],[115,184,64,0.15415931349011341],[115,184,65,0.11098208271921253],[115,184,66,0.06889431552686806],[115,184,67,0.03360085806796874],[115,184,68,0.082798197813375],[115,184,69,0.1328955164650521],[115,184,70,0.183497033346545],[115,184,71,0.23422439506030368],[115,184,72,0.28473010264962834],[115,184,73,0.33471096394630023],[115,184,74,0.3839215711045276],[115,184,75,0.4321580800281839],[115,184,76,0.4787811262743394],[115,184,77,0.5228194195963823],[115,184,78,0.5634126864109884],[115,184,79,0.5998240741933513],[115,185,64,0.16278432128173154],[115,185,65,0.11791774923929671],[115,185,66,0.07408210169000501],[115,185,67,0.0662368660113112],[115,185,68,0.11439073986513722],[115,185,69,0.16335225368361905],[115,185,70,0.2127295650335554],[115,185,71,0.262149373094968],[115,185,72,0.3112702147631834],[115,185,73,0.3597957861650416],[115,185,74,0.4074882895898276],[115,185,75,0.45415200229068364],[115,185,76,0.4991548147247986],[115,185,77,0.5415322456523072],[115,185,78,0.580431561636736],[115,185,79,0.6151240922497064],[115,186,64,0.16802539444302406],[115,186,65,0.12162217645421101],[115,186,66,0.07620105268603863],[115,186,67,0.09958049776991901],[115,186,68,0.1466804186617285],[115,186,69,0.19448866713301718],[115,186,70,0.24261797997851436],[115,186,71,0.29070092350094834],[115,186,72,0.3384030667380063],[115,186,73,0.38543618057795315],[115,186,74,0.431571462764475],[115,186,75,0.4766228655213583],[115,186,76,0.5199665629231491],[115,186,77,0.5606453234722892],[115,186,78,0.5978143222236914],[115,186,79,0.6307533862239353],[115,187,64,0.17029061261216766],[115,187,65,0.12249825613286647],[115,187,66,0.08825783513284798],[115,187,67,0.1333097212177401],[115,187,68,0.17935507069192988],[115,187,69,0.2260035600896471],[115,187,70,0.27287311045732415],[115,187,71,0.3196029206982718],[115,187,72,0.36586652752942567],[115,187,73,0.41138489204991086],[115,187,74,0.45593951292195395],[115,187,75,0.49935548341568964],[115,187,76,0.5410181910036301],[115,187,77,0.5799779846860889],[115,187,78,0.6153982001376155],[115,187,79,0.6465673563086379],[115,188,64,0.17014525088722487],[115,188,65,0.12110272449441668],[115,188,66,0.12294871847707273],[115,188,67,0.16706990344376596],[115,188,68,0.2120707326170826],[115,188,69,0.2575649273981817],[115,188,70,0.3031761488384235],[115,188,71,0.3485509277188507],[115,188,72,0.39337162221205246],[115,188,73,0.4373694031261781],[115,188,74,0.48033726673159866],[115,188,75,0.522112793556444],[115,188,76,0.562091391069665],[115,188,77,0.5993311945428745],[115,188,78,0.6330038220679157],[115,188,79,0.6624065445182532],[115,189,64,0.16763645743817784],[115,189,65,0.11748761749374428],[115,189,66,0.15727000327077548],[115,189,67,0.20048512729279513],[115,189,68,0.24446255828162833],[115,189,69,0.2888204453734478],[115,189,70,0.3331886835087903],[115,189,71,0.37722175224360766],[115,189,72,0.4206115833548496],[115,189,73,0.46310045724036064],[115,189,74,0.5044939281135596],[115,189,75,0.5446432591904292],[115,189,76,0.5829545393625641],[115,189,77,0.6184937591217469],[115,189,78,0.650440799735564],[115,189,79,0.6781015997335278],[115,190,64,0.16217048040092807],[115,190,65,0.14950348604093266],[115,190,66,0.19082556078969115],[115,190,67,0.23316872231663316],[115,190,68,0.27615497392885474],[115,190,69,0.31940722650182307],[115,190,70,0.3625620288900718],[115,190,71,0.4052823285775948],[115,190,72,0.4472702625676228],[115,190,73,0.48827997851158506],[115,190,74,0.5281304860776899],[115,190,75,0.5666877460501271],[115,190,76,0.6033690249922337],[115,190,77,0.6372480917725053],[115,190,78,0.6675129229541352],[115,190,79,0.6934778895719081],[115,191,64,0.15327933425109821],[115,191,65,0.18260313120482285],[115,191,66,0.22321870522167386],[115,191,67,0.26473301013658834],[115,191,68,0.3067710716226801],[115,191,69,0.3489608389429504],[115,191,70,0.3909458495456143],[115,191,71,0.43239792556384565],[115,191,72,0.4730299022196328],[115,191,73,0.5126083881315686],[115,191,74,0.5509665575269745],[115,191,75,0.5879858742207885],[115,191,76,0.6230950952304283],[115,191,77,0.6553755387871557],[115,191,78,0.684022955444423],[115,191,79,0.7083597590842654],[115,192,64,0.17528576984540803],[115,192,65,0.2141025885126982],[115,192,66,0.25406146218824],[115,192,67,0.2947982642168214],[115,192,68,0.3359412408750464],[115,192,69,0.377123590831354],[115,192,70,0.41799607837799113],[115,192,71,0.4582396804355775],[115,192,72,0.4975782673299645],[115,192,73,0.5357913173412318],[115,192,74,0.5727266650251841],[115,192,75,0.6082818450526867],[115,192,76,0.6418972173662691],[115,192,77,0.6726612643018997],[115,192,78,0.6997770334023913],[115,192,79,0.7225744362777407],[115,193,64,0.20529214603045207],[115,193,65,0.24362585337614584],[115,193,66,0.2829830307455983],[115,193,67,0.3230008840481569],[115,193,68,0.3633110384785443],[115,193,69,0.40355207937759763],[115,193,70,0.443382128916685],[115,193,71,0.4824914586064132],[115,193,72,0.5206151376293418],[115,193,73,0.5575457169965601],[115,193,74,0.5931459495284662],[115,193,75,0.627329743118267],[115,193,76,0.6595489571237841],[115,193,77,0.6888986944293828],[115,193,78,0.7145886668202631],[115,193,79,0.7359555844645241],[115,194,64,0.23291917997644634],[115,194,65,0.2708231452202653],[115,194,66,0.3096374388660123],[115,194,67,0.3490007837431791],[115,194,68,0.38854829654506395],[115,194,69,0.42792400476974646],[115,194,70,0.4667934016966553],[115,194,71,0.5048560393993231],[115,194,72,0.5418581597940485],[115,194,73,0.577605363724344],[115,194,74,0.6119753180814725],[115,194,75,0.6448983132147481],[115,194,76,0.6758373736419849],[115,194,77,0.703893520621676],[115,194,78,0.7282823435611763],[115,194,79,0.7483465014369614],[115,195,64,0.2578503825522706],[115,195,65,0.29537799167383993],[115,195,66,0.33371039239901845],[115,195,67,0.37248799504214936],[115,195,68,0.4113494687500244],[115,195,69,0.4499442488747018],[115,195,70,0.4879450847273774],[115,195,71,0.52506062771389],[115,195,72,0.5610480598515858],[115,195,73,0.5957257626674364],[115,195,74,0.6289860264776861],[115,195,75,0.6607752124118607],[115,195,76,0.6905669310171877],[115,195,77,0.7174672622637198],[115,195,78,0.7406967361871616],[115,195,79,0.7596029654687646],[115,196,64,0.2798106793453985],[115,196,65,0.3170134183208925],[115,196,66,0.35492524502135925],[115,196,67,0.393188409692876],[115,196,68,0.43144513729306117],[115,196,69,0.4693501389076236],[115,196,70,0.5065831659970542],[115,196,71,0.5428616074740167],[115,196,72,0.5779531296111754],[115,196,73,0.6116883587793631],[115,196,74,0.6439736070163452],[115,196,75,0.6747706454804047],[115,196,76,0.7035628330694694],[115,196,77,0.7294602937966965],[115,196,78,0.7516874159509593],[115,196,79,0.7695956322709574],[115,197,64,0.2984670082212913],[115,197,65,0.3353882710545339],[115,197,66,0.37293509055565],[115,197,67,0.4107517280647895],[115,197,68,0.4484839390415426],[115,197,69,0.4857914991994647],[115,197,70,0.5223607758801783],[115,197,71,0.5579173446675935],[115,197,72,0.5922386512419946],[115,197,73,0.6251667184739012],[115,197,74,0.6566208987579484],[115,197,75,0.6865772831458886],[115,197,76,0.7145280176101987],[115,197,77,0.7395864030172554],[115,197,78,0.7609797214194651],[115,197,79,0.7780621733092193],[115,198,64,0.3132575004777789],[115,198,65,0.349920059019668],[115,198,66,0.38713918266518593],[115,198,67,0.42456144774291454],[115,198,68,0.461836184141411],[115,198,69,0.49862801872422075],[115,198,70,0.5346294658996614],[115,198,71,0.5695735653459021],[115,198,72,0.6032465668910899],[115,198,73,0.6355006625484485],[115,198,74,0.666266765706569],[115,198,75,0.6955336264001961],[115,198,76,0.7228015073200328],[115,198,77,0.7471870013750952],[115,198,78,0.7679201584576344],[115,198,79,0.7843575725721522],[115,199,64,0.32370503571196096],[115,199,65,0.3601115131959922],[115,199,66,0.39702210565424817],[115,199,67,0.43408614334235696],[115,199,68,0.47095665216279736],[115,199,69,0.5073029088322244],[115,199,70,0.5428230441677014],[115,199,71,0.577256694492359],[115,199,72,0.610397701160233],[115,199,73,0.6421068582002184],[115,199,74,0.6723247080793401],[115,199,75,0.7010504776886572],[115,199,76,0.727792185440068],[115,199,77,0.7516708053609978],[115,199,78,0.771919862455742],[115,199,79,0.7878986465161453],[115,200,64,0.329476173871151],[115,200,65,0.3656119667595886],[115,200,66,0.4022175496828425],[115,200,67,0.4389455591057475],[115,200,68,0.47545290473941215],[115,200,69,0.5114133239080574],[115,200,70,0.5465299836539186],[115,200,71,0.5805481305807216],[115,200,72,0.6132677884354942],[115,200,73,0.6445565034286459],[115,200,74,0.6743621372925173],[115,200,75,0.7026917745238961],[115,200,76,0.729061074560599],[115,200,77,0.7525972775766885],[115,200,78,0.7725387732267417],[115,200,79,0.7882484046623719],[115,201,64,0.3303725204317728],[115,201,65,0.36620847784310506],[115,201,66,0.40249919954022023],[115,201,67,0.43890127309917437],[115,201,68,0.4750757352732685],[115,201,69,0.5107006069824273],[115,201,70,0.5454834739810034],[115,201,71,0.5791741132045157],[115,201,72,0.611577164795084],[115,201,73,0.6425648498054937],[115,201,74,0.6720897335820902],[115,201,75,0.7001637831810525],[115,201,76,0.726310375184459],[115,201,77,0.7496655343293681],[115,201,78,0.7694744492276389],[115,201,79,0.7851048193322037],[115,202,64,0.326321725945246],[115,202,65,0.36181660238544283],[115,202,66,0.3977712920137642],[115,202,67,0.4338470513172679],[115,202,68,0.46970933265099013],[115,202,69,0.5050402761867866],[115,202,70,0.5395512435257266],[115,202,71,0.5729953929745402],[115,202,72,0.6051802964858886],[115,202,73,0.6359805982623942],[115,202,74,0.6653507150246192],[115,202,75,0.6933042438595387],[115,202,76,0.7193724969768447],[115,202,77,0.7427032875578308],[115,202,78,0.762550957496757],[115,202,79,0.7782897115867629],[115,203,64,0.31736811995112396],[115,203,65,0.3524708170712022],[115,203,66,0.3880588418534803],[115,203,67,0.42379889169766805],[115,203,68,0.4593611589719183],[115,203,69,0.49443175205090417],[115,203,70,0.5287251518255123],[115,203,71,0.561996703684641],[115,203,72,0.5940551449688789],[115,203,73,0.6247751678959966],[115,203,74,0.654110017958446],[115,203,75,0.682071467311483],[115,203,76,0.7081990827017689],[115,203,77,0.7316558210903013],[115,203,78,0.7517078393070269],[115,203,79,0.7677377533707295],[115,204,64,0.30366297925725416],[115,204,65,0.3383145923596646],[115,204,66,0.3734975363318773],[115,204,67,0.4088847580446704],[115,204,68,0.4441515412878261],[115,204,69,0.47898782564319525],[115,204,70,0.5131105522903889],[115,204,71,0.5462760367455859],[115,204,72,0.5782923685332323],[115,204,73,0.6090318377905648],[115,204,74,0.6384433888051517],[115,204,75,0.6665333829367339],[115,204,76,0.6928500248450251],[115,204,77,0.7165750012338868],[115,204,78,0.7369891515351994],[115,204,79,0.7534855858603203],[115,205,64,0.28545443058704745],[115,205,65,0.31959011560339845],[115,205,66,0.35432329839932847],[115,205,67,0.3893340038621332],[115,205,68,0.4243029773543195],[115,205,69,0.4589238675538987],[115,205,70,0.4929154252204018],[115,205,71,0.5260337178871037],[115,205,72,0.5580843604792323],[115,205,73,0.5889347618580913],[115,205,74,0.6185263872912979],[115,205,75,0.6468565383444597],[115,205,76,0.673482474923687],[115,205,77,0.6976083216956567],[115,205,78,0.7185325837469907],[115,205,79,0.7356610540154286],[115,206,64,0.26307698759388526],[115,206,65,0.296627664256511],[115,206,66,0.33086151843492656],[115,206,67,0.36546648609566557],[115,206,68,0.40012915539394],[115,206,69,0.4345467777211052],[115,206,70,0.4684392811284944],[115,206,71,0.5015612861281105],[115,206,72,0.5337141238699601],[115,206,73,0.5647578566959381],[115,206,74,0.594623301070486],[115,206,75,0.623295050381379],[115,206,76,0.6503398454821889],[115,206,77,0.6749879828354031],[115,206,78,0.6965586509982151],[115,206,79,0.7144725573359973],[115,207,64,0.23694072224252657],[115,207,65,0.2698346291724148],[115,207,66,0.3035159545927086],[115,207,67,0.33768136878396626],[115,207,68,0.372023687870848],[115,207,69,0.4062436760995269],[115,207,70,0.4400618343687462],[115,207,71,0.47323017501500786],[115,207,72,0.5055439828516777],[115,207,73,0.5368535624619116],[115,207,74,0.5670759717456308],[115,207,75,0.5962154118039904],[115,207,76,0.6237408047748874],[115,207,77,0.6490200052499842],[115,207,78,0.6713599623518155],[115,207,79,0.690198516822532],[115,208,64,0.26232040591360867],[115,208,65,0.2985873093938912],[115,208,66,0.3339813944523105],[115,208,67,0.3684090706459733],[115,208,68,0.40184046191226575],[115,208,69,0.43432044105587186],[115,208,70,0.465980244765004],[115,208,71,0.4970496691567685],[115,208,72,0.5278648311876505],[115,208,73,0.5584029289745928],[115,208,74,0.587894579840178],[115,208,75,0.6156053816433151],[115,208,76,0.6409214354484587],[115,208,77,0.6633419171547976],[115,208,78,0.6824718376810225],[115,208,79,0.6980149917056723],[115,209,64,0.29822959002178523],[115,209,65,0.33266513557009414],[115,209,66,0.36624288831349894],[115,209,67,0.3988807000279743],[115,209,68,0.4305567244366309],[115,209,69,0.4613197282492739],[115,209,70,0.4912999468238676],[115,209,71,0.5207204844498448],[115,209,72,0.5499043216110138],[115,209,73,0.5788165354940812],[115,209,74,0.6066881504006919],[115,209,75,0.632789045077286],[115,209,76,0.6565117815546206],[115,209,77,0.6773637472664833],[115,209,78,0.6949594992595882],[115,209,79,0.7090133104946504],[115,210,64,0.3312124491733136],[115,210,65,0.3638521924497594],[115,210,66,0.39565397217247045],[115,210,67,0.4265465825123678],[115,210,68,0.4565155995445095],[115,210,69,0.48561296394744446],[115,210,70,0.5139670719609122],[115,210,71,0.5417933746018254],[115,210,72,0.5694006293074667],[115,210,73,0.5967410383441286],[115,210,74,0.6230460332409258],[115,210,75,0.6475898119562806],[115,210,76,0.6697713930906185],[115,210,77,0.6891063356894269],[115,210,78,0.7052186751145797],[115,210,79,0.7178330749839283],[115,211,64,0.36085692749041326],[115,211,65,0.3917610581163541],[115,211,66,0.42185214523490916],[115,211,67,0.45106926379742607],[115,211,68,0.4794046635475538],[115,211,69,0.5069126245404585],[115,211,70,0.5337187843494828],[115,211,71,0.5600299369601862],[115,211,72,0.5861395337737343],[115,211,73,0.6119861640398502],[115,211,74,0.6368016265470501],[115,211,75,0.6598644096945301],[115,211,76,0.6805798997253246],[115,211,77,0.698471689672889],[115,211,78,0.713173118696852],[115,211,79,0.7244190418079356],[115,212,64,0.3867954183263192],[115,212,65,0.41604802686018183],[115,212,66,0.444517830133055],[115,212,67,0.47215336842177147],[115,212,68,0.4989526841333853],[115,212,69,0.5249714573333015],[115,212,70,0.5503315764334442],[115,212,71,0.5752301440404057],[115,212,72,0.5999442386738911],[115,212,73,0.6243981221498495],[115,212,74,0.6478238788809029],[115,212,75,0.6695041904334086],[115,212,76,0.6888506368268041],[115,212,77,0.7053946101944645],[115,212,78,0.7187784733969257],[115,212,79,0.7287469635874749],[115,213,64,0.40870933413235144],[115,213,65,0.43641732949850176],[115,213,66,0.4633782368149592],[115,213,67,0.4895491027615344],[115,213,68,0.514932760248396],[115,213,69,0.5395852570744346],[115,213,70,0.5636236835118009],[115,213,71,0.5872343988165608],[115,213,72,0.6106770712378371],[115,213,73,0.6338609528433795],[115,213,74,0.6560182901796895],[115,213,75,0.6764357923189989],[115,213,76,0.6945309755086938],[115,213,77,0.7098427010220013],[115,213,78,0.7220219726621441],[115,213,79,0.7308229939199544],[115,214,64,0.42633315070796207],[115,214,65,0.45262481766451723],[115,214,66,0.4782106796316084],[115,214,67,0.503055200170729],[115,214,68,0.5271648928616537],[115,214,69,0.5505950619741269],[115,214,70,0.5734569063719043],[115,214,71,0.5959249866490993],[115,214,72,0.6182405669950951],[115,214,73,0.640297248735433],[115,214,74,0.6613272765590004],[115,214,75,0.6806211548941207],[115,214,76,0.6976019981401765],[115,214,77,0.7118157158281185],[115,214,78,0.7229214721671406],[115,214,79,0.730682419977509],[115,215,64,0.4394579258337795],[115,215,65,0.4644811120652354],[115,215,66,0.48884534762191745],[115,215,67,0.5125213082648395],[115,215,68,0.5355179866098988],[115,215,69,0.5578887692125366],[115,215,70,0.5797378419712336],[115,215,71,0.6012269238497977],[115,215,72,0.6225779398439459],[115,215,73,0.6436682510297813],[115,215,74,0.6637298989191717],[115,215,75,0.6820568886048471],[115,215,76,0.6980775193195902],[115,215,77,0.711344243357362],[115,215,78,0.7215238140376513],[115,215,79,0.7283877227130375],[115,216,64,0.44793429228765236],[115,216,65,0.47185421470820965],[115,216,66,0.49516752799559705],[115,216,67,0.5178498183476241],[115,216,68,0.5399112823236382],[115,216,69,0.5614021699375498],[115,216,70,0.5824185221677499],[115,216,71,0.6031082028838844],[115,216,72,0.6236729374558754],[115,216,73,0.6439733199599244],[115,216,74,0.6632409553549455],[115,216,75,0.6807729984214614],[115,216,76,0.6960024523116114],[115,216,77,0.7084877306459355],[115,216,78,0.7179025231276067],[115,216,79,0.7240259646740944],[115,217,64,0.45167492524343955],[115,217,65,0.4746715850969304],[115,217,66,0.4971192828136866],[115,217,67,0.5189971369809452],[115,217,68,0.5403152204341652],[115,217,69,0.5611194037522218],[115,217,70,0.5814964604986955],[115,217,71,0.6015794342092272],[115,217,72,0.6215490820152463],[115,217,73,0.6412487795278989],[115,217,74,0.6599094373683954],[115,217,75,0.6768309615738384],[115,217,76,0.6914505209480172],[115,217,77,0.7033318442940296],[115,217,78,0.7121548353495447],[115,217,79,0.7177055054246904],[115,218,64,0.45065648405287306],[115,218,65,0.4729216803951606],[115,218,66,0.4947005788670224],[115,218,67,0.5159743996978761],[115,218,68,0.5367517352617336],[115,218,69,0.5570728326920267],[115,218,70,0.5770141070080128],[115,218,71,0.5966928847527371],[115,218,72,0.6162682962943341],[115,218,73,0.6355661365410459],[115,218,74,0.653816349885197],[115,218,75,0.6703211594013113],[115,218,76,0.6845213169920725],[115,218,77,0.6959851697907721],[115,218,78,0.7043980580583448],[115,218,79,0.7095520445749834],[115,219,64,0.4449210284103928],[115,219,65,0.46665495956012104],[115,219,66,0.48796987075254533],[115,219,67,0.5088476268589828],[115,219,68,0.5292939801847815],[115,219,69,0.5493423346918116],[115,219,70,0.5690577111222882],[115,219,71,0.5885409130238926],[115,219,72,0.6079289150636258],[115,219,73,0.6270296739466467],[115,219,74,0.6450718950741562],[115,219,75,0.6613596633169323],[115,219,76,0.6753367029664413],[115,219,77,0.6865752488917026],[115,219,78,0.694765262488192],[115,219,79,0.6997039924187723],[115,220,64,0.43457690890079903],[115,220,65,0.4559843514444006],[115,220,66,0.4770441371473553],[115,220,67,0.4977373216517211],[115,220,68,0.5180654836901754],[115,220,69,0.5380540165424562],[115,220,70,0.5577555925752394],[115,220,71,0.5772538008654278],[115,220,72,0.5966630818374493],[115,220,73,0.6157734184645177],[115,220,74,0.6338120199701034],[115,220,75,0.6500843748862671],[115,220,76,0.6640365604447926],[115,220,77,0.6752439550489631],[115,220,78,0.6834003082429806],[115,220,79,0.6883071681790192],[115,221,64,0.4197991319298348],[115,221,65,0.4410851868666718],[115,221,66,0.46209837028056283],[115,221,67,0.4828175102329729],[115,221,68,0.5032387363044748],[115,221,69,0.523378346337204],[115,221,70,0.5432758203807],[115,221,71,0.562996981841118],[115,221,72,0.5826335309548492],[115,221,73,0.6019574825174576],[115,221,74,0.6201943279000344],[115,221,75,0.6366505200205725],[115,221,76,0.6507738838069279],[115,221,77,0.6621422068940108],[115,221,78,0.6704521998399449],[115,221,79,0.6755088258611732],[115,222,64,0.4008291990379166],[115,222,65,0.4221945946514194],[115,222,66,0.4433645186031312],[115,222,67,0.464314224014895],[115,222,68,0.48503320840636904],[115,222,69,0.5055277054078133],[115,222,70,0.5258232998542192],[115,222,71,0.5459676662607617],[115,222,72,0.5660297549957863],[115,222,73,0.5857637804596075],[115,222,74,0.6043933537125324],[115,222,75,0.6212254972843873],[115,222,76,0.6357092194574417],[115,222,77,0.6474240197728506],[115,222,78,0.6560687753065029],[115,222,79,0.6614510077142661],[115,223,64,0.3779744205964385],[115,223,65,0.39961036163717345],[115,223,66,0.42112988265527196],[115,223,67,0.44250342409371946],[115,223,68,0.4637127989199985],[115,223,69,0.48475335975029993],[115,223,70,0.5056362676831267],[115,223,71,0.5263908628422778],[115,223,72,0.5470635575326522],[115,223,73,0.567391119102779],[115,223,74,0.5865952028106006],[115,223,75,0.6039830803177151],[115,223,76,0.6190044505081633],[115,223,77,0.6312398953340944],[115,223,78,0.640389726830671],[115,223,79,0.6462632253001931],[115,224,64,0.35160670388748927],[115,224,65,0.3736892566539873],[115,224,66,0.3957349641320278],[115,224,67,0.41770836782203147],[115,224,68,0.43958271488958534],[115,224,69,0.4613418509405952],[115,224,70,0.4829821950452853],[115,224,71,0.5045147970110372],[115,224,72,0.5259639912171113],[115,224,73,0.5470496625406731],[115,224,74,0.5669915539877234],[115,224,75,0.5850969743725413],[115,224,76,0.6008159269240186],[115,224,77,0.6137295491693999],[115,224,78,0.6235389534645259],[115,224,79,0.6300544681705735],[115,225,64,0.3221608155658745],[115,225,65,0.3448448184691546],[115,225,66,0.36757076814614775],[115,225,67,0.39029641752373734],[115,225,68,0.4129857819346887],[115,225,69,0.43561080653954887],[115,225,70,0.4581530987760599],[115,225,71,0.48060572583607303],[115,225,72,0.5029716812020276],[115,225,73,0.5249547712708391],[115,225,74,0.5457730260671168],[115,225,75,0.5647337269637253],[115,225,76,0.5812869411324644],[115,225,77,0.5950139765065298],[115,225,78,0.6056162458810408],[115,225,79,0.6129045401516052],[115,226,64,0.2901321185048436],[115,226,65,0.31354460770247294],[115,226,66,0.33707555868946093],[115,226,67,0.3606752913528371],[115,226,68,0.38429818558710466],[115,226,69,0.40790416998818846],[115,226,70,0.4314602605843225],[115,226,71,0.454942149603876],[115,226,72,0.4783325338990808],[115,226,73,0.5013202156148909],[115,226,74,0.5231219083445793],[115,226,75,0.5430449926346032],[115,226,76,0.5605395490967243],[115,226,77,0.5751868559551825],[115,226,78,0.586688303184358],[115,226,79,0.5948547232368945],[115,227,64,0.2559884503055492],[115,227,65,0.280221647088776],[115,227,66,0.3046461529833266],[115,227,67,0.32920449133102986],[115,227,68,0.35384129599985553],[115,227,69,0.3785046645740043],[115,227,70,0.4031475488197604],[115,227,71,0.4277291824270985],[115,227,72,0.4522133167462182],[115,227,73,0.47627509280961733],[115,227,74,0.4991305114111217],[115,227,75,0.5200873807067136],[115,227,76,0.5385959436950694],[115,227,77,0.5542374419450975],[115,227,78,0.566713102330582],[115,227,79,0.5758335467719137],[115,228,64,0.21981206296471573],[115,228,65,0.24491900661564175],[115,228,66,0.2702864935637027],[115,228,67,0.2958491180909632],[115,228,68,0.32154187892603137],[115,228,69,0.34730143665563884],[115,228,70,0.3730673980701501],[115,228,71,0.39878362744299617],[115,228,72,0.42439643182529707],[115,228,73,0.44956873720605384],[115,228,74,0.4735164826105488],[115,228,75,0.49554827005292823],[115,228,76,0.5151146850954266],[115,228,77,0.5317969485328662],[115,228,78,0.5452959967131388],[115,228,79,0.5554219904936404],[115,229,64,0.18161705574648734],[115,229,65,0.20761274111554295],[115,229,66,0.23393511794392882],[115,229,67,0.26051091776950464],[115,229,68,0.28726579532726665],[115,229,69,0.3141255261008851],[115,229,70,0.34101722308109195],[115,229,71,0.3678705727309205],[115,229,72,0.394616008731993],[115,229,73,0.4209057127784871],[115,229,74,0.4459562003702188],[115,229,75,0.46907721488438126],[115,229,76,0.4897198412748597],[115,229,77,0.5074652661256664],[115,229,78,0.5220139714920468],[115,229,79,0.5331753625292317],[115,230,64,0.14273245133420434],[115,230,65,0.1683532450728316],[115,230,66,0.19560687528543455],[115,230,67,0.22316988595674203],[115,230,68,0.2509590448086636],[115,230,69,0.2788899339275682],[115,230,70,0.3068781331978778],[115,230,71,0.3348404179465578],[115,230,72,0.3626929560037222],[115,230,73,0.39007865470935027],[115,230,74,0.4162152305852467],[115,230,75,0.440413902973168],[115,230,76,0.46212639950276346],[115,230,77,0.48093384312963383],[115,230,78,0.4965360779278821],[115,230,79,0.5087414336371304],[115,231,64,0.14448826403689],[115,231,65,0.1371209766892874],[115,231,66,0.1553804916322677],[115,231,67,0.1838717457976619],[115,231,68,0.21263517103667384],[115,231,69,0.24157696864231976],[115,231,70,0.2706022318692385],[115,231,71,0.2996161373108034],[115,231,72,0.32852219539750377],[115,231,73,0.3569554814272557],[115,231,74,0.38413552439846704],[115,231,75,0.4093753487018333],[115,231,76,0.4321274654351156],[115,231,77,0.4519729028254298],[115,231,78,0.4686106804649719],[115,231,79,0.4818477273601577],[115,232,64,0.14491172669222807],[115,232,65,0.13829223289138876],[115,232,66,0.12697840921518622],[115,232,67,0.14271517134054745],[115,232,68,0.17236240031468653],[115,232,69,0.2022253137582705],[115,232,70,0.23219962552552362],[115,232,71,0.262180240404017],[115,232,72,0.2920595826978861],[115,232,73,0.3214662823242395],[115,232,74,0.3496222814849161],[115,232,75,0.3758427423530877],[115,232,76,0.3995811102969091],[115,232,77,0.42041830146237796],[115,232,78,0.43805233958539913],[115,232,79,0.4522884420330365],[115,233,64,0.14409737122712069],[115,233,65,0.13818958303086404],[115,233,66,0.12753266390670387],[115,233,67,0.11210350022064536],[115,233,68,0.13025060324063292],[115,233,69,0.16091690552961874],[115,233,70,0.19172522975128337],[115,233,71,0.2225615173651421],[115,233,72,0.25330860016352663],[115,233,73,0.2835899646341487],[115,233,74,0.31263056059717154],[115,233,75,0.3397480356101232],[115,233,76,0.3643969443165189],[115,233,77,0.3861581039480518],[115,233,78,0.4047284050839886],[115,233,79,0.4199110776677497],[115,234,64,0.1421372778075518],[115,234,65,0.136909133053144],[115,234,66,0.1268950953794547],[115,234,67,0.11206134900143098],[115,234,68,0.09248294185883844],[115,234,69,0.1177636209044315],[115,234,70,0.14926537275351218],[115,234,71,0.18082156849685657],[115,234,72,0.21230682061349082],[115,234,73,0.2433406594731398],[115,234,74,0.27315163737243114],[115,234,75,0.3010602632683162],[115,234,76,0.32652241641269875],[115,234,77,0.3491188771339202],[115,234,78,0.3685453197647961],[115,234,79,0.38460276771718593],[115,235,64,0.13911836329467636],[115,235,65,0.1345424141362172],[115,235,66,0.12516226521040516],[115,235,67,0.11093358889347518],[115,235,68,0.09192154175181276],[115,235,69,0.0728937756948091],[115,235,70,0.10492419612477542],[115,235,71,0.1370411182760607],[115,235,72,0.16911214315266887],[115,235,73,0.20075388704177854],[115,235,74,0.23119910940090116],[115,235,75,0.25977160115797443],[115,235,76,0.2859288401339536],[115,235,77,0.30925170069687336],[115,235,78,0.32943463355899777],[115,235,79,0.34627631571703354],[115,236,64,0.13511895371517396],[115,236,65,0.1311731857458705],[115,236,66,0.12242350786972647],[115,236,67,0.10881525814388915],[115,236,68,0.09040340759655728],[115,236,69,0.0673532012758459],[115,236,70,0.058799983853219315],[115,236,71,0.09129624676737946],[115,236,72,0.12377893868925278],[115,236,73,0.15586262809248502],[115,236,74,0.18678491726067628],[115,236,75,0.2158733717736882],[115,236,76,0.24258742862562346],[115,236,77,0.2665082842819404],[115,236,78,0.287329262228852],[115,236,79,0.3048466600149869],[115,237,64,0.13020464074571897],[115,237,65,0.12687352751411746],[115,237,66,0.11875724570864829],[115,237,67,0.10579095809293497],[115,237,68,0.0880191466570227],[115,237,69,0.06559651944894744],[115,237,70,0.03878968815496875],[115,237,71,0.04337801180116023],[115,237,72,0.07607815768538975],[115,237,73,0.10841802983019334],[115,237,74,0.13964101016935626],[115,237,75,0.16907926975844956],[115,237,76,0.19619488304662147],[115,237,77,0.22056989126611654],[115,237,78,0.24189685625397567],[115,237,79,0.25996990470589776],[115,238,64,0.12442342221121785],[115,238,65,0.12169921994045468],[115,238,66,0.11422659854678484],[115,238,67,0.10193067861468323],[115,238,68,0.0848451408968087],[115,238,69,0.06311338733949187],[115,238,70,0.03699046347558951],[115,238,71,0.006845742184196285],[115,238,72,0.025579764207839042],[115,238,73,0.05797378638103927],[115,238,74,0.08930560462613538],[115,238,75,0.11891337525494163],[115,238,76,0.14626298587312409],[115,238,77,0.17093829016973489],[115,238,78,0.19263184586792265],[115,238,79,0.2111361558368],[115,239,64,0.11780012659736906],[115,239,65,0.11568441391651169],[115,239,66,0.10887428785950548],[115,239,67,0.09728492490911242],[115,239,68,0.08093888289529334],[115,239,69,0.05996750781703915],[115,239,70,0.03461308930744193],[115,239,71,0.005231764741508077],[115,239,72,-0.027702828013121822],[115,239,73,0.004275938015090214],[115,239,74,0.035513028432070604],[115,239,75,0.06509922474058606],[115,239,76,0.09250579324451988],[115,239,77,0.11731972036949617],[115,239,78,0.13923463165415806],[115,239,79,0.15804222856908265],[115,240,64,0.15675713522113233],[115,240,65,0.1290639795526558],[115,240,66,0.10271683556504964],[115,240,67,0.09187914564535088],[115,240,68,0.07633362083283671],[115,240,69,0.0561988276903302],[115,240,70,0.03170317887168321],[115,240,71,0.0031880470930888832],[115,240,72,-0.028888387970476104],[115,240,73,-0.05273962963528157],[115,240,74,-0.02180890404643153],[115,240,75,0.007557055115813824],[115,240,76,0.03483673554986043],[115,240,77,0.05962183251653766],[115,240,78,0.09294601538186358],[115,240,79,0.13684235486870622],[115,241,64,0.20849304988870965],[115,241,65,0.1820692963030151],[115,241,66,0.15454115216657147],[115,241,67,0.12601851557135002],[115,241,68,0.09662464850062266],[115,241,69,0.06649508079691908],[115,241,70,0.03577641295680278],[115,241,71,0.004625017752467542],[115,241,72,-0.026792008829718404],[115,241,73,-0.05808663063530382],[115,241,74,-0.07023145769639233],[115,241,75,-0.032337942321530526],[115,241,76,0.006802158707676739],[115,241,77,0.047308716637470855],[115,241,78,0.08919137025440954],[115,241,79,0.13234850478262394],[115,242,64,0.2608474322100282],[115,242,65,0.2359885645019279],[115,242,66,0.20993278758701053],[115,242,67,0.18278669363310668],[115,242,68,0.15467212221574062],[115,242,69,0.12572521798573177],[115,242,70,0.09609537267474119],[115,242,71,0.06594405143875982],[115,242,72,0.03544574753766003],[115,242,73,0.004988208963078375],[115,242,74,-0.024728836197565517],[115,242,75,-0.0338340863452113],[115,242,76,0.0043539037952777665],[115,242,77,0.04394558910909421],[115,242,78,0.08493714013347084],[115,242,79,0.12721539445788166],[115,243,64,0.3134915052258367],[115,243,65,0.29048780595644674],[115,243,66,0.2661874977867228],[115,243,67,0.24069301125741496],[115,243,68,0.21412417440013964],[115,243,69,0.18661746418411007],[115,243,70,0.1583251276524874],[115,243,71,0.1294141727483445],[115,243,72,0.10006735188237861],[115,243,73,0.07067203375627043],[115,243,74,0.041909769236121414],[115,243,75,0.014381178852067758],[115,243,76,0.001724040921215142],[115,243,77,0.0402624508263662],[115,243,78,0.08022423210077995],[115,243,79,0.12148525038569986],[115,244,64,0.36603219762877925],[115,244,65,0.34516371380056776],[115,244,66,0.3228921928954157],[115,244,67,0.2993150800879235],[115,244,68,0.2745496297183601],[115,244,69,0.24873239057882388],[115,244,70,0.22201854626156375],[115,244,71,0.19458111056945288],[115,244,72,0.16661196612513046],[115,244,73,0.13849806137947723],[115,244,74,0.11090057474052119],[115,244,75,0.0844009904581579],[115,244,76,0.05947136858267335],[115,244,77,0.03648324123670689],[115,244,78,0.07521542611994705],[115,244,79,0.11532179481003857],[115,245,64,0.4180291001661421],[115,245,65,0.39956104500977785],[115,245,66,0.3795774895636411],[115,245,67,0.35817010163520796],[115,245,68,0.33545301905199865],[115,245,69,0.3115626080033793],[115,245,70,0.28665706200958996],[115,245,71,0.26091584151798625],[115,245,72,0.23454079435567854],[115,245,73,0.20791844902322681],[115,245,74,0.18168759943803395],[115,245,75,0.15640850763666148],[115,245,76,0.1325358422230768],[115,245,77,0.11042747223915977],[115,245,78,0.09035261178590176],[115,245,79,0.10921360154636758],[115,246,64,0.46901025055501955],[115,246,65,0.45318884415341504],[115,246,66,0.4357343316556011],[115,246,67,0.41673184465657104],[115,246,68,0.39629187599470905],[115,246,69,0.37455034877725724],[115,246,70,0.35166851195305454],[115,246,71,0.32783266243254144],[115,246,72,0.303255374479397],[115,246,73,0.2783227908568093],[115,246,74,0.2536495500450009],[115,246,75,0.22977283037778257],[115,246,76,0.20712818514348103],[115,246,77,0.18605825086265723],[115,246,78,0.16682077752248642],[115,246,79,0.14959598076781438],[115,247,64,0.5184867469090135],[115,247,65,0.5055354983838803],[115,247,66,0.49082944729977873],[115,247,67,0.4744464661725093],[115,247,68,0.45649288613381844],[115,247,69,0.4371039120155955],[115,247,70,0.41644385040910215],[115,247,71,0.39470615069921733],[115,247,72,0.3721147704332112],[115,247,73,0.3490555288103897],[115,247,74,0.3261174269074041],[115,247,75,0.3038129717259802],[115,247,76,0.2825571050821505],[115,247,77,0.2626758446874272],[115,247,78,0.24441421671622862],[115,247,79,0.22794347985958063],[115,248,64,0.5659661896785273],[115,248,65,0.5560826236649086],[115,248,66,0.5443196422997366],[115,248,67,0.5307471761223217],[115,248,68,0.5154668891211526],[115,248,69,0.4986129724120336],[115,248,70,0.4803527379691622],[115,248,71,0.46088701240913044],[115,248,72,0.44045166497396293],[115,248,73,0.4194322767189135],[115,248,74,0.3983910567181772],[115,248,75,0.3778145668400124],[115,248,76,0.35809590533916613],[115,248,77,0.3395433005654339],[115,248,78,0.3223879641802555],[115,248,79,0.3067912038813658],[115,249,64,0.6109649521027272],[115,249,65,0.6043177822368055],[115,249,66,0.5956649299028316],[115,249,67,0.5850677456564503],[115,249,68,0.5726227335305201],[115,249,69,0.5584627524920202],[115,249,70,0.5427580058115931],[115,249,71,0.5257168183456924],[115,249,72,0.5075873530361381],[115,249,73,0.48875505782463147],[115,249,74,0.4697545519128452],[115,249,75,0.4510455230572846],[115,249,76,0.4329982865410343],[115,249,77,0.41590235256794583],[115,249,78,0.39997421986756176],[115,249,79,0.38536439551079854],[115,250,64,0.6530192791742762],[115,250,65,0.6497460313199137],[115,250,66,0.6443404969282661],[115,250,67,0.6368548590671326],[115,250,68,0.6273799845035749],[115,250,69,0.6160470583384541],[115,250,70,0.6030289953153398],[115,250,71,0.5885416278037711],[115,250,72,0.5728456356611932],[115,250,73,0.5563264556405909],[115,250,74,0.5394906967459507],[115,250,75,0.5227706109650477],[115,250,76,0.5065131051438614],[115,250,77,0.4909883041367445],[115,250,78,0.4763973057568598],[115,250,79,0.4628791275268995],[115,251,64,0.6916952151162443],[115,251,65,0.6919003030555516],[115,251,66,0.6898475062535595],[115,251,67,0.6855793093562872],[115,251,68,0.6791804841828372],[115,251,69,0.6707801787882828],[115,251,70,0.6605537729730973],[115,251,71,0.648724500239096],[115,251,72,0.6355656144967229],[115,251,73,0.6214626781732246],[115,251,74,0.606894260046285],[115,251,75,0.5922649964763693],[115,251,76,0.577898088672923],[115,251,77,0.5640438844367254],[115,251,78,0.5508876163989361],[115,251,79,0.5385562967568488],[115,252,64,0.7265973593720246],[115,252,65,0.73035061568544],[115,252,66,0.731722735660635],[115,252,67,0.7307460374420071],[115,252,68,0.727498764933405],[115,252,69,0.7221076481017671],[115,252,70,0.7147502206058358],[115,252,71,0.7056568947499152],[115,252,72,0.6951133868676144],[115,252,73,0.6835055355063065],[115,252,74,0.6712842346533184],[115,252,75,0.6588267139133822],[115,252,76,0.6464325077012362],[115,252,77,0.6343320789125868],[115,252,78,0.6226945631263054],[115,252,79,0.6116346333378808],[115,253,64,0.7573764511068257],[115,253,65,0.7647121159679695],[115,253,66,0.7695470530396642],[115,253,67,0.7719030150016006],[115,253,68,0.7718513153511133],[115,253,69,0.7695158721019668],[115,253,70,0.7650760008760744],[115,253,71,0.758768957388119],[115,253,72,0.7508926414162358],[115,253,73,0.7418333307431775],[115,253,74,0.7320150035315917],[115,253,75,0.7217880800944436],[115,253,76,0.7114288045636521],[115,253,77,0.7011479340460244],[115,253,78,0.6910985119224716],[115,253,79,0.6813827252905273],[115,254,64,0.7837357822224403],[115,254,65,0.7946519528332384],[115,254,66,0.802952727952829],[115,254,67,0.8086489709535511],[115,254,68,0.8118046990597101],[115,254,69,0.8125406177872281],[115,254,70,0.8110373981028648],[115,254,71,0.8075386963029686],[115,254,72,0.8023541543149846],[115,254,73,0.7958706643107224],[115,254,74,0.7884864325666975],[115,254,75,0.7805260494289746],[115,254,76,0.7722431788103594],[115,254,77,0.7638293363174287],[115,254,78,0.7554217149549061],[115,254,79,0.7471100584074121],[115,255,64,0.8054364388839552],[115,255,65,0.8198949822753135],[115,255,66,0.8316295795562304],[115,255,67,0.8406399615764291],[115,255,68,0.8469825262948923],[115,255,69,0.8507743664143206],[115,255,70,0.8521970343759575],[115,255,71,0.851500044714739],[115,255,72,0.8490041860483207],[115,255,73,0.845097151622078],[115,255,74,0.8401528900396923],[115,255,75,0.8344715100166843],[115,255,76,0.8282851293963891],[115,255,77,0.8217667653685714],[115,255,78,0.8150382357681252],[115,255,79,0.8081770714538844],[115,256,64,0.8223013715590651],[115,256,65,0.8402283034825597],[115,256,66,0.8553299608809884],[115,256,67,0.867594784265969],[115,256,68,0.8770712782765833],[115,256,69,0.883872530053773],[115,256,70,0.8881804609708559],[115,256,71,0.8902498117201257],[115,256,72,0.8904117787662995],[115,256,73,0.8890550541002098],[115,256,74,0.8865311927822019],[115,256,75,0.8831175207535605],[115,256,76,0.879025953609603],[115,256,77,0.8744120213688609],[115,256,78,0.8693828681395347],[115,256,79,0.8640042266832535],[115,257,64,0.8342182935697631],[115,257,65,0.8555046262056407],[115,257,66,0.8738725794729553],[115,257,67,0.8892992349295784],[115,257,68,0.9018249843685628],[115,257,69,0.9115585316163655],[115,257,70,0.9186816250635748],[115,257,71,0.9234535209280942],[115,257,72,0.9262149542081318],[115,257,73,0.9273558235607727],[115,257,74,0.9272074790105163],[115,257,75,0.9260264894428143],[115,257,76,0.9240062027352605],[115,257,77,0.9212859265831655],[115,257,78,0.9179590485959617],[115,257,79,0.9140800956644496],[115,258,64,0.8411414081566413],[115,258,65,0.8656444693636108],[115,258,66,0.8871451543916443],[115,258,67,0.9056092090190508],[115,258,68,0.9210687520263863],[115,258,69,0.9336277483518782],[115,258,70,0.9434672117463476],[115,258,71,0.9508501369275664],[115,258,72,0.9561258121973213],[115,258,73,0.9596855599559322],[115,258,74,0.9618430078404762],[115,258,75,0.9628362919126994],[115,258,76,0.9628420944591825],[115,258,77,0.9619850011433275],[115,258,78,0.9603457625930805],[115,258,79,0.9579684604244185],[115,259,64,0.843091964055356],[115,259,65,0.870637190887439],[115,259,66,0.8951059095675188],[115,259,67,0.916452646200432],[115,259,68,0.9347011495323574],[115,259,69,0.9499503188186785],[115,259,70,0.9623798613427046],[115,259,71,0.9722556795851959],[115,259,72,0.9799345297064623],[115,259,73,0.9858093824770777],[115,259,74,0.9901788854809476],[115,259,75,0.9932653321388633],[115,259,76,0.9952308820070614],[115,259,77,0.9961871130207977],[115,259,78,0.9962034443550655],[115,259,79,0.995314429902475],[115,260,64,0.840157639585807],[115,260,65,0.8705408488017319],[115,260,66,0.8977839035186089],[115,260,67,0.9218303186622074],[115,260,68,0.9426954415189154],[115,260,69,0.9604728133256907],[115,260,70,0.9753402620236322],[115,260,71,0.9875657261751216],[115,260,72,0.997512260493754],[115,260,73,1.005574714018643],[115,260,74,1.0120397181082326],[115,260,75,1.0171165433737257],[115,260,76,1.020955180022519],[115,260,77,1.0236561022031188],[115,260,78,1.0252788703773037],[115,260,79,1.0258495717195508],[115,261,64,0.8324907552535544],[115,261,65,0.8654808935439949],[115,261,66,0.8952781954256159],[115,261,67,0.9218154630607978],[115,261,68,0.9450996772792513],[115,261,69,0.9652187678454069],[115,261,70,0.9823481177233243],[115,261,71,0.9967568013390463],[115,261,72,1.0088129353094384],[115,261,73,1.0189134790011063],[115,261,74,1.0273361914193762],[115,261,75,1.034280330280714],[115,261,76,1.0398862471816555],[115,261,77,1.0442453790718897],[115,261,78,1.0474090465897015],[115,261,79,1.0493960592597928],[115,262,64,0.8203053148638138],[115,262,65,0.8556476915219093],[115,262,66,0.8877558475661205],[115,262,67,0.9165522561041131],[115,262,68,0.9420356318660332],[115,262,69,0.9642880813989382],[115,262,70,0.9834819913556371],[115,262,71,0.9998866548778838],[115,262,72,1.01387396267351],[115,262,73,1.025843214554611],[115,262,74,1.0360665768658943],[115,262,75,1.0447364520749796],[115,262,76,1.0519862255457741],[115,262,77,1.057900496983974],[115,262,78,1.062524089182428],[115,262,79,1.0658698340664],[115,263,64,0.8038728751478427],[115,263,65,0.8412928799083285],[115,263,66,0.8754487641074941],[115,263,67,0.9062531337726498],[115,263,68,0.9336965999776338],[115,263,69,0.9578552769124005],[115,263,70,0.9788980233304572],[115,263,71,0.9970934273740799],[115,263,72,1.0128158302237162],[115,263,73,1.026467095062164],[115,263,74,1.0383171645668126],[115,263,75,1.048554846669407],[115,263,76,1.0573093366510473],[115,263,77,1.0646606990546634],[115,263,78,1.0706490990927413],[115,263,79,1.0752827835503234],[115,264,64,0.7835172439016659],[115,264,65,0.8227245526740531],[115,264,66,0.858649366258669],[115,264,67,0.891194954178409],[115,264,68,0.9203440426322171],[115,264,69,0.9461666255450943],[115,264,70,0.9688275253705242],[115,264,71,0.9885937036452437],[115,264,72,1.0058406066345749],[115,264,73,1.0209728700631946],[115,264,74,1.0342616229018697],[115,264,75,1.0458953958268518],[115,264,76,1.0560020343361083],[115,264,77,1.0646594391438369],[115,264,78,1.0719050301540054],[115,264,79,1.0777439340129509],[115,265,64,0.759608006637488],[115,265,65,0.8003012778586107],[115,265,66,0.8377051037808861],[115,265,67,0.8717140040616194],[115,265,68,0.9023030866295824],[115,265,69,0.9295361344892641],[115,265,70,0.9535734496283967],[115,265,71,0.974679454028683],[115,265,72,0.9932293441069034],[115,265,73,1.0096307155169049],[115,265,74,1.0241592847842345],[115,265,75,1.037006631317856],[115,265,76,1.0483021143067615],[115,265,77,1.058123877044238],[115,265,78,1.0665085509059424],[115,265,79,1.0734596589818024],[115,266,64,0.7325528817473259],[115,266,65,0.774424946078687],[115,266,66,0.8130118028571764],[115,266,67,0.8481998489251467],[115,266,68,0.8799568768007326],[115,266,69,0.9083403982415091],[115,266,70,0.9335057331037357],[115,266,71,0.9557138634971006],[115,266,72,0.9753383814282115],[115,266,73,0.9927899984258234],[115,266,74,1.008352360613227],[115,266,75,1.0222233820844342],[115,266,76,1.0345367804384558],[115,266,77,1.0453733478725848],[115,266,78,1.0547709000669059],[115,266,79,1.0627329028600472],[115,267,64,0.7027889041790648],[115,267,65,0.7455324502743312],[115,267,66,0.7850058503206145],[115,267,67,0.8210880268065408],[115,267,68,0.8537397810450548],[115,267,69,0.8830123133456629],[115,267,70,0.9090555173606427],[115,267,71,0.9321260486051395],[115,267,72,0.9525945476035748],[115,267,73,0.9708749548191412],[115,267,74,0.9872620779065712],[115,267,75,1.0019633624093829],[115,267,76,1.0151196678159453],[115,267,77,1.0268168056628932],[115,267,78,1.0370957356675177],[115,267,79,1.0459614198891667],[115,268,64,0.670772437625238],[115,268,65,0.7140861966932754],[115,268,66,0.754155214241724],[115,268,67,0.7908515856881371],[115,268,68,0.8241294481555601],[115,268,69,0.8540336566076137],[115,268,70,0.8807082435455662],[115,268,71,0.9044046622672997],[115,268,72,0.9254892660575483],[115,268,73,0.9443792810964005],[115,268,74,0.9613837476127639],[115,268,75,0.9767227010917308],[115,268,76,0.9905468225107568],[115,268,77,1.0029492411626384],[115,268,78,1.0139759778462933],[115,268,79,1.0236350284253832],[115,269,64,0.6369680152239493],[115,269,65,0.6805634471127748],[115,269,66,0.7209493008744416],[115,269,67,0.7579914645446204],[115,269,68,0.7916377184315813],[115,269,69,0.8219265267814697],[115,269,70,0.8489956227051648],[115,269,71,0.8730903863666292],[115,269,72,0.8945715594065107],[115,269,73,0.9138596387309295],[115,269,74,0.9312807571029617],[115,269,75,0.9470704116277257],[115,269,76,0.9613916380958647],[115,269,77,0.9743470738311728],[115,269,78,0.9859896453066905],[115,269,79,0.9963318805293129],[115,270,64,0.6018360087722381],[115,270,65,0.6454444922992781],[115,270,66,0.6858876479609335],[115,270,67,0.7230257180283326],[115,270,68,0.7568003870792226],[115,270,69,0.787243649727358],[115,270,70,0.8144864814044357],[115,270,71,0.8387673121944867],[115,270,72,0.8604399548017474],[115,270,73,0.8799280723333381],[115,270,74,0.8975774898426959],[115,270,75,0.9136418033976774],[115,270,76,0.9282987488979075],[115,270,77,0.9416625180407255],[115,270,78,0.9537946854358994],[115,270,79,0.9647137468691471],[115,271,64,0.5658191264522107],[115,271,65,0.6091996567062256],[115,271,66,0.6494674543955659],[115,271,67,0.6864775847926232],[115,271,68,0.7201658203998295],[115,271,69,0.7505575470411079],[115,271,70,0.7777764826453135],[115,271,71,0.8020532087215739],[115,271,72,0.8237332898434413],[115,271,73,0.8432433410752107],[115,271,74,0.8609511717435363],[115,271,75,0.8771308338587456],[115,271,76,0.8919768799869887],[115,271,77,0.9056169234800051],[115,271,78,0.9181227980853814],[115,271,79,0.9295203169373513],[115,272,64,0.529327739069307],[115,272,65,0.5722751344093888],[115,272,66,0.6121699462474629],[115,272,67,0.6488623994527034],[115,272,68,0.6822824247659827],[115,272,69,0.7124485681553616],[115,272,70,0.7394767220853526],[115,272,71,0.7635886786998717],[115,272,72,0.7851204190652544],[115,272,73,0.8045011634727355],[115,272,74,0.8221226441944771],[115,272,75,0.8382814017434935],[115,272,76,0.8531906539039511],[115,272,77,0.86699308976034],[115,272,78,0.8797722530131219],[115,272,79,0.8915625145808884],[115,273,64,0.49272403480290916],[115,273,65,0.5350776562799073],[115,273,66,0.5744455791417704],[115,273,67,0.6106733481840777],[115,273,68,0.6436849683850505],[115,273,69,0.6734917859121035],[115,273,70,0.7002011995564066],[115,273,71,0.7240252025953724],[115,273,72,0.7452888209893376],[115,273,73,0.7644233755300448],[115,273,74,0.7818460637727787],[115,273,75,0.7978775812638986],[115,273,76,0.8127513541247458],[115,273,77,0.8266265552239319],[115,273,78,0.8395997009871374],[115,273,79,0.8517148288444695],[115,274,64,0.4563491673476097],[115,274,65,0.49799609928298133],[115,274,66,0.5367301913897562],[115,274,67,0.5723922757665745],[115,274,68,0.6049001778828857],[115,274,69,0.6342575416301023],[115,274,70,0.6605624923384572],[115,274,71,0.6840161377594778],[115,274,72,0.7049311358564249],[115,274,73,0.723740234934921],[115,274,74,0.7408872187044553],[115,274,75,0.7567182110797567],[115,274,76,0.771488057083197],[115,274,77,0.7853735487770784],[115,274,78,0.7984852243905628],[115,274,79,0.8108777406412954],[115,275,64,0.4208214216258216],[115,275,65,0.46165502965957506],[115,275,66,0.49965436213243636],[115,275,67,0.5346555336083685],[115,275,68,0.5665699769780591],[115,275,69,0.5953931865279131],[115,275,70,0.6212133056214871],[115,275,71,0.6442195589932828],[115,275,72,0.6647109308051022],[115,275,73,0.6831208797184832],[115,275,74,0.6999205666607085],[115,275,75,0.7154824885241693],[115,275,76,0.7300838252708807],[115,275,77,0.74391986275645],[115,275,78,0.7571159825943683],[115,275,79,0.7697382190606652],[115,276,64,0.386814672463176],[115,276,65,0.4267169682009884],[115,276,66,0.46386922915849527],[115,276,67,0.4981029688285648],[115,276,68,0.5293231445709994],[115,276,69,0.557516793364266],[115,276,70,0.5827615181812879],[115,276,71,0.6052338249892102],[115,276,72,0.6252178913935031],[115,276,73,0.643147183122189],[115,276,74,0.6595207452921712],[115,276,75,0.6747380954317926],[115,276,76,0.6890993880020582],[115,276,77,0.7028190211260266],[115,276,78,0.7160378057097906],[115,276,79,0.7288336969551034],[115,277,64,0.35486481363055683],[115,277,65,0.39371280920278945],[115,277,66,0.42990066339228894],[115,277,67,0.46325549037568636],[115,277,68,0.49367578507243637],[115,277,69,0.5211399276094562],[115,277,70,0.5457145440294824],[115,277,71,0.5675627232430586],[115,277,72,0.5869528569115348],[115,277,73,0.604317717454793],[115,277,74,0.6201844545090534],[115,277,75,0.6349799537124071],[115,277,76,0.649027702826508],[115,277,77,0.662561569800572],[115,277,78,0.6757381402501226],[115,277,79,0.6886476143505401],[115,278,64,0.3253630849357211],[115,278,65,0.3630346719937015],[115,278,66,0.39814165541716373],[115,278,67,0.4305070018611121],[115,278,68,0.4600228192629342],[115,278,69,0.4866587080418072],[115,278,70,0.5104699740013973],[115,278,71,0.5316057029357669],[115,278,72,0.5503176534215912],[115,278,73,0.5670371991936015],[115,278,74,0.5823195367508724],[115,278,75,0.5966189746570766],[115,278,76,0.6102824170910308],[115,278,77,0.6235633016612722],[115,278,78,0.6366340954448716],[115,278,79,0.6495973492505358],[115,279,64,0.29854954996548255],[115,279,65,0.33492874022441155],[115,279,66,0.36884453161704867],[115,279,67,0.4001160112354338],[115,279,68,0.42862900510288593],[115,279,69,0.45434425668889045],[115,279,70,0.47730547265014567],[115,279,71,0.49764723579768116],[115,279,72,0.5156039341839516],[115,279,73,0.5316048278527504],[115,279,74,0.5462328451852837],[115,279,75,0.5599694988127492],[115,279,76,0.57318493170906],[115,279,77,0.586152004773093],[115,279,78,0.5990589432938842],[115,279,79,0.6120205422988246],[115,280,64,0.2745053635514913],[115,280,65,0.30948690995778666],[115,280,66,0.34211200118002255],[115,280,67,0.3721960960148135],[115,280,68,0.3996188409984861],[115,280,69,0.4243320598848995],[115,280,70,0.44636761615317655],[115,280,71,0.46584514854526704],[115,280,72,0.4829810222554407],[115,280,73,0.49820165737952093],[115,280,74,0.5121171749000373],[115,280,75,0.5252358297813674],[115,280,76,0.5379505905380746],[115,280,77,0.550553368866516],[115,280,78,0.5632478106789596],[115,280,79,0.5761606485402699],[115,281,64,0.253143828958983],[115,281,65,0.2866372465597867],[115,281,66,0.3178870339630764],[115,281,67,0.34670522405647775],[115,281,68,0.37296535152273913],[115,281,69,0.39661024044316207],[115,281,70,0.4176596712301935],[115,281,71,0.4362179268891036],[115,281,72,0.45248275526011505],[115,281,73,0.4668770000773962],[115,281,74,0.48003725708670186],[115,281,75,0.4924978619420649],[115,281,76,0.5046739953633299],[115,281,77,0.516876050082118],[115,281,78,0.5293225635313842],[115,281,79,0.5421517162786256],[115,282,64,0.2342002447986996],[115,282,65,0.26613325039135866],[115,282,66,0.2959415692184255],[115,282,67,0.3234339298837867],[115,282,68,0.34847775559201644],[115,282,69,0.371006740944381],[115,282,70,0.3910283150731168],[115,282,71,0.4086309911139023],[115,282,72,0.42399333233279407],[115,282,73,0.4375338630567411],[115,282,74,0.44991481621710155],[115,282,75,0.46169580209746386],[115,282,76,0.47331344648898466],[115,282,77,0.4850958939791244],[115,282,78,0.49727588305655834],[115,282,79,0.5100023930323194],[115,283,64,0.21722054166261368],[115,283,65,0.24754193130186752],[115,283,66,0.2758640551818551],[115,283,67,0.30199234656128093],[115,283,68,0.32578801709849076],[115,283,69,0.34717541814085073],[115,283,70,0.3661492962882485],[115,283,71,0.3827819432306352],[115,283,72,0.39723216323544164],[115,283,73,0.409913417213041],[115,283,74,0.42151269021233123],[115,283,75,0.4326139850438624],[115,283,76,0.4436745089363467],[115,283,77,0.4550393168075967],[115,283,78,0.4669545340153173],[115,283,79,0.47957915858780326],[115,284,64,0.20157061919250177],[115,284,65,0.23025231934253498],[115,284,66,0.25706713762574807],[115,284,67,0.28181707890144114],[115,284,68,0.30435691181687874],[115,284,69,0.32460131436907613],[115,284,70,0.34253192282206807],[115,284,71,0.3582042839795759],[115,284,72,0.3717568268213871],[115,284,73,0.3835972082430664],[115,284,74,0.3944363035279076],[115,284,75,0.4048816178885914],[115,284,76,0.4154100379497742],[115,284,77,0.42638262389846043],[115,284,78,0.43805799018846103],[115,284,79,0.45060427479898957],[115,285,64,0.18709747675545385],[115,285,65,0.2141276979837923],[115,285,66,0.23943019763446535],[115,285,67,0.2628033429078226],[115,285,68,0.2840951710298064],[115,285,69,0.3032103227466512],[115,285,70,0.3201168895196029],[115,285,71,0.33485317441958873],[115,285,72,0.3475366730783018],[115,285,73,0.35856841776813464],[115,285,74,0.36868195640318496],[115,285,75,0.37850706888081836],[115,285,76,0.388539132069881],[115,285,77,0.3991540674921912],[115,285,78,0.4106218881201281],[115,285,79,0.4231188442903758],[115,286,64,0.17430013815040502],[115,286,65,0.19967535062265268],[115,286,66,0.22346759990390097],[115,286,67,0.24547143318034267],[115,286,68,0.26552792726440155],[115,286,69,0.28353141672748744],[115,286,70,0.299436147323476],[115,286,71,0.3132628547028363],[115,286,72,0.3251077584175859],[115,286,73,0.33536429246362864],[115,286,74,0.3447866541596806],[115,286,75,0.354024937108324],[115,286,76,0.36359123108013475],[115,286,77,0.37387472098395363],[115,286,78,0.38515539737621207],[115,286,79,0.39761637850936743],[115,287,64,0.16360857612062987],[115,287,65,0.1873351209251793],[115,287,66,0.20962771320888934],[115,287,67,0.23027693371619712],[115,287,68,0.24911674070664444],[115,287,69,0.26603100243887223],[115,287,70,0.28095996774018006],[115,287,71,0.2939066746615798],[115,287,72,0.30494595998626417],[115,287,73,0.3144625780083401],[115,287,74,0.3233999165631977],[115,287,75,0.33796020072442823],[115,287,76,0.35032492480383165],[115,287,77,0.36004214591470807],[115,287,78,0.3667541300480806],[115,287,79,0.3745380853212972],[115,288,64,0.15534848321034983],[115,288,65,0.17744424818441146],[115,288,66,0.1982578869817639],[115,288,67,0.21757590626883472],[115,288,68,0.2352250624225103],[115,288,69,0.25107871104316953],[115,288,70,0.26506310849362935],[115,288,71,0.2771636654639278],[115,288,72,0.2911559037009206],[115,288,73,0.3098652727958563],[115,288,74,0.3265871249441494],[115,288,75,0.34141713625177106],[115,288,76,0.3541382467450237],[115,288,77,0.3642917781034527],[115,288,78,0.37151192074549677],[115,288,79,0.3755313944830051],[115,289,64,0.1497506594231171],[115,289,65,0.1702462545313878],[115,289,66,0.18961286219144413],[115,289,67,0.20763284883115463],[115,289,68,0.22412576359026223],[115,289,69,0.23895452040671378],[115,289,70,0.25203154714099985],[115,289,71,0.26956524215777583],[115,289,72,0.29043954817074447],[115,289,73,0.30933899921011765],[115,289,74,0.32632067405873744],[115,289,75,0.3415003208974995],[115,289,76,0.3546676419317495],[115,289,77,0.36535746917681844],[115,289,78,0.3731959693703818],[115,289,79,0.37790678923902005],[115,290,64,0.1469600225405706],[115,290,65,0.16589949181046804],[115,290,66,0.18386287792152572],[115,290,67,0.2006283848354282],[115,290,68,0.21600842943879597],[115,290,69,0.22985567446547367],[115,290,70,0.24263646186830035],[115,290,71,0.2656252208172425],[115,290,72,0.2867020200917437],[115,290,73,0.3058662750836527],[115,290,74,0.323193075418779],[115,290,75,0.3388173770731492],[115,290,76,0.35253513367902695],[115,290,77,0.3638744343168279],[115,290,78,0.37245301839311734],[115,290,79,0.3779849027776697],[115,291,64,0.1470442411028205],[115,291,65,0.16448534812011759],[115,291,66,0.1811014736484572],[115,291,67,0.19666668307095575],[115,291,68,0.21098641789296244],[115,291,69,0.22390340028834937],[115,291,70,0.23608019562386146],[115,291,71,0.25929349126036316],[115,291,72,0.2806522324059855],[115,291,73,0.30017143363359505],[115,291,74,0.3179434850192756],[115,291,75,0.3341217278876664],[115,291,76,0.34850760752415266],[115,291,77,0.3606217402804097],[115,291,78,0.37007259427820993],[115,291,79,0.37656360598286653],[115,292,64,0.1500019900496592],[115,292,65,0.16601611401845048],[115,292,66,0.18135298721918391],[115,292,67,0.19578260831891636],[115,292,68,0.2091036829254095],[115,292,69,0.22114942283770472],[115,292,70,0.23179336286969718],[115,292,71,0.25099410260871896],[115,292,72,0.2727206360917357],[115,292,73,0.2926906647488001],[115,292,74,0.3110131983846606],[115,292,75,0.32785917410633836],[115,292,76,0.34303505201487283],[115,292,77,0.35605368295825246],[115,292,78,0.36651376550425924],[115,292,79,0.37410746190551164],[115,293,64,0.15577082902298123],[115,293,65,0.17044250839383063],[115,293,66,0.18457974852848405],[115,293,67,0.19794860270456904],[115,293,68,0.210341362615031],[115,293,69,0.2215822774271735],[115,293,70,0.23153330872786676],[115,293,71,0.24096371428451008],[115,293,72,0.2631446630885705],[115,293,73,0.2836616112338281],[115,293,74,0.30263946812170905],[115,293,75,0.32026593805918885],[115,293,76,0.33635246204497893],[115,293,77,0.35040460662128303],[115,293,78,0.3620114454251885],[115,293,79,0.3708536820307773],[115,294,64,0.1642347033303645],[115,294,65,0.17766086400052045],[115,294,66,0.1906889688960225],[115,294,67,0.20308129776685993],[115,294,68,0.2146241319121136],[115,294,69,0.22513341987685132],[115,294,70,0.23446049787839554],[115,294,71,0.2424978649619082],[115,294,72,0.25213049915942926],[115,294,73,0.2732892759969555],[115,294,74,0.2930255016748686],[115,294,75,0.3115427242176829],[115,294,76,0.3286576751891698],[115,294,77,0.34386977449251277],[115,294,78,0.3567591654128022],[115,294,79,0.3669953485629849],[115,295,64,0.17523106756955537],[115,295,65,0.1875199726591404],[115,295,66,0.19953932614290204],[115,295,67,0.21104785724523475],[115,295,68,0.2218263201099882],[115,295,69,0.23168313436569454],[115,295,70,0.24046009966116744],[115,295,71,0.24803818417141385],[115,295,72,0.25434667994338966],[115,295,73,0.26175244091881167],[115,295,74,0.28234690367231857],[115,295,75,0.3018611872813249],[115,295,76,0.32011787780009193],[115,295,77,0.3366119319905386],[115,295,78,0.3509157198081389],[115,295,79,0.36268816979531104],[115,296,64,0.18855763191431563],[115,296,65,0.19982759012234208],[115,296,66,0.21094724536806475],[115,296,67,0.22167205058396294],[115,296,68,0.2317777930234587],[115,296,69,0.24106623898136437],[115,296,70,0.2493708719868497],[115,296,71,0.2565627244688816],[115,296,72,0.2625595528009788],[115,296,73,0.26762191761693943],[115,296,74,0.2724907797932871],[115,296,75,0.29136900998742177],[115,296,76,0.31087472353279544],[115,296,77,0.328766488831684],[115,296,78,0.3446104413743102],[115,296,79,0.358055884026797],[115,297,64,0.20397873106116576],[115,297,65,0.2143566006052832],[115,297,66,0.22469287542418148],[115,297,67,0.23474005715364993],[115,297,68,0.2442695998737161],[115,297,69,0.2530775889672502],[115,297,70,0.2609905330748928],[115,297,71,0.2678712691462585],[115,297,72,0.27362815805979335],[115,297,73,0.27850481082160955],[115,297,74,0.2832148203604674],[115,297,75,0.288379323950654],[115,297,76,0.3010489539401288],[115,297,77,0.32044622427078345],[115,297,78,0.3379480207748096],[115,297,79,0.35319522787429086],[115,298,64,0.22123131583736133],[115,298,65,0.23085084098120578],[115,298,66,0.24052576109330157],[115,298,67,0.2500060011901951],[115,298,68,0.2590593848799819],[115,298,69,0.2674773776669165],[115,298,70,0.2750809629569603],[115,298,71,0.2817266507642206],[115,298,72,0.28731569502115595],[115,298,73,0.29207474611534223],[115,298,74,0.29668562100636425],[115,298,75,0.30174040304381994],[115,298,76,0.3076960096382918],[115,298,77,0.31488837751548365],[115,298,78,0.33101287007780944],[115,298,79,0.34818046897981997],[115,299,64,0.24003056746985996],[115,299,65,0.24903058464189826],[115,299,66,0.2581702109620543],[115,299,67,0.26719721745098535],[115,299,68,0.27587656355766843],[115,299,69,0.2839962351657386],[115,299,70,0.29137323474554],[115,299,71,0.29785972365184177],[115,299,72,0.30335226245922275],[115,299,73,0.30806073132180356],[115,299,74,0.3126310667101833],[115,299,75,0.3176224215923369],[115,299,76,0.3234638142285916],[115,299,77,0.330467930341946],[115,299,78,0.33884393043392513],[115,299,79,0.3487092622460239],[115,300,64,0.26007513451560565],[115,300,65,0.26859768502334413],[115,300,66,0.2773303609966987],[115,300,67,0.2860192475886235],[115,300,68,0.2944272637233624],[115,300,69,0.3023401246300596],[115,300,70,0.309572475668087],[115,300,71,0.31597419744403815],[115,300,72,0.3214396706947588],[115,300,73,0.32616239879143655],[115,300,74,0.3307486897083503],[115,300,75,0.3357212197621385],[115,300,76,0.3414782299556225],[115,300,77,0.3483069002411415],[115,300,78,0.35639577481962137],[115,300,79,0.36584623847541853],[115,301,64,0.28105199245261503],[115,301,65,0.2892403787960708],[115,301,66,0.29769493381754564],[115,301,67,0.30616056724171725],[115,301,68,0.31439903120615253],[115,301,69,0.32219503634337165],[115,301,70,0.329362557866184],[115,301,71,0.33575133165624726],[115,301,72,0.3412561453637354],[115,301,73,0.3460547204426566],[115,301,74,0.35071039200009946],[115,301,75,0.35570618819423394],[115,301,76,0.3614070175665589],[115,301,77,0.3680725734737489],[115,301,78,0.3758693366168129],[115,301,79,0.3848816756676061],[115,302,64,0.30264092593236147],[115,302,65,0.31063774872067085],[115,302,66,0.31894169367321556],[115,302,67,0.32729704384319463],[115,302,68,0.3354653002657762],[115,302,69,0.343231479440013],[115,302,70,0.35041061896023706],[115,302,71,0.35685449129688707],[115,302,72,0.36246092288133064],[115,302,73,0.3673926446194039],[115,302,74,0.37216711906992783],[115,302,75,0.3772249685128717],[115,302,76,0.3828955685181454],[115,302,77,0.3894094439777521],[115,302,78,0.3969098111628915],[115,302,79,0.4054632658060622],[115,303,64,0.3245186336934173],[115,303,65,0.33246384616845925],[115,303,66,0.34074159711468704],[115,303,67,0.34909612514608046],[115,303,68,0.35728962871749187],[115,303,69,0.36510877133625336],[115,303,70,0.3723714123795283],[115,303,71,0.3789335635173704],[115,303,72,0.38469873760105266],[115,303,73,0.3898156547647111],[115,303,74,0.3947534848265049],[115,303,75,0.39990813352468724],[115,303,76,0.40557162452416406],[115,303,77,0.41194395224579655],[115,303,78,0.41914412919922306],[115,303,79,0.42722042781924324],[115,304,64,0.3463624561357053],[115,304,65,0.3543914733066399],[115,304,66,0.36276263936854425],[115,304,67,0.37122075846618635],[115,304,68,0.37952969776318435],[115,304,69,0.38747912485833624],[115,304,70,0.3948914874572746],[115,304,71,0.40162923529939915],[115,304,72,0.40760420066879693],[115,304,73,0.4129522499101888],[115,304,74,0.41809234775803544],[115,304,75,0.4233738471089296],[115,304,76,0.42905000414758043],[115,304,77,0.4352892572974508],[115,304,78,0.4421857493834287],[115,304,79,0.44976909300657414],[115,305,64,0.3678537255563947],[115,305,65,0.37609562494897764],[115,305,66,0.38467339641036763],[115,305,67,0.393333040642598],[115,305,68,0.4018410765295116],[115,305,69,0.4099915330682096],[115,305,70,0.4176131992913256],[115,305,71,0.42457713218007725],[115,305,72,0.43080607057226716],[115,305,73,0.43642434698175153],[115,305,74,0.44179933830428725],[115,305,75,0.4472325037988605],[115,305,76,0.45293733643735],[115,305,77,0.4590500417462355],[115,305,78,0.4656395084759838],[115,305,79,0.47271657109814474],[115,306,64,0.3886807390466442],[115,306,65,0.3972565900712204],[115,306,66,0.4061462627375635],[115,306,67,0.41509759871531743],[115,306,68,0.4238807513125312],[115,306,69,0.43229545178645634],[115,306,70,0.4401785483701074],[115,306,71,0.44741181801453933],[115,306,72,0.45393141538556536],[115,306,73,0.45985160492149046],[115,306,74,0.46548733744529425],[115,306,75,0.47109134805444663],[115,306,76,0.4768368016101077],[115,306,77,0.48282734996175514],[115,306,78,0.4891065292015764],[115,306,79,0.4956664969486591],[115,307,64,0.4085413540494283],[115,307,65,0.4175627129914713],[115,307,66,0.4268603848417884],[115,307,67,0.4361847013201611],[115,307,68,0.44531041952883277],[115,307,69,0.4540442798123863],[115,307,70,0.46223284996369507],[115,307,71,0.4697706557759031],[115,307,72,0.4766096667086676],[115,307,73,0.48285567062532425],[115,307,74,0.48877090650628136],[115,307,75,0.4945590732258051],[115,307,76,0.5003528787761204],[115,307,77,0.5062234593262219],[115,307,78,0.5121891857844387],[115,307,79,0.5182238578647828],[115,308,64,0.42714520657840654],[115,308,65,0.43671281421550373],[115,308,66,0.44650429038100786],[115,308,67,0.4562731008010077],[115,308,68,0.46579954837334225],[115,308,69,0.4748986368415253],[115,308,70,0.4834282332803201],[115,308,71,0.4912975293929229],[115,308,72,0.4984765653022447],[115,308,73,0.5050643466969688],[115,308,74,0.5112706681794286],[115,308,75,0.5172504002080953],[115,308,76,0.5230961007102671],[115,308,77,0.5288467845862189],[115,308,78,0.5344961271585629],[115,308,79,0.5400001015668527],[115,309,64,0.4442155520984199],[115,309,65,0.45441827094756215],[115,309,66,0.464778213051671],[115,309,67,0.4750526060398084],[115,309,68,0.4850281981841277],[115,309,69,0.49452943908074065],[115,309,70,0.5034269703884662],[115,309,71,0.5116464266254084],[115,309,72,0.5191779984177969],[115,309,73,0.5261156810180946],[115,309,74,0.53261763876225],[115,309,75,0.5387906357875392],[115,309,76,0.5446878156676382],[115,309,77,0.5503168152991915],[115,309,78,0.5556473578522034],[115,309,79,0.5606183247842745],[115,310,64,0.45949072906611665],[115,310,65,0.47040475726520775],[115,310,66,0.4813961131596392],[115,310,67,0.4922263860030894],[115,310,68,0.5026896105130363],[115,310,69,0.5126207725599464],[115,310,70,0.5219046349036105],[115,310,71,0.5304848829765825],[115,310,72,0.5383737288223975],[115,310,73,0.5456619781340981],[115,310,74,0.5524575116121349],[115,310,75,0.5588202106782449],[115,310,76,0.5647649562435523],[115,310,77,0.5702690863745994],[115,310,78,0.575279376546722],[115,310,79,0.5797185424847844],[115,311,64,0.47272524513271696],[115,311,65,0.48441364396014863],[115,311,66,0.4960873938917182],[115,311,67,0.5075130040066903],[115,311,68,0.5184925609038006],[115,311,69,0.5288725641419008],[115,311,70,0.5385530904409964],[115,311,71,0.5474972866436315],[115,311,72,0.5557410155191632],[115,311,73,0.5633737324564528],[115,311,74,0.5704548918178854],[115,311,75,0.5769991972505191],[115,311,76,0.5829848152785352],[115,311,77,0.5883601817101293],[115,311,78,0.5930503723100341],[115,311,79,0.5969630377376919],[115,312,64,0.48369048600718456],[115,312,65,0.49620305804340115],[115,312,66,0.5085983132862306],[115,312,67,0.5206481826972769],[115,312,68,0.5321634763762475],[115,312,69,0.543003050228849],[115,312,70,0.5530833088333025],[115,312,71,0.5623880445054396],[115,312,72,0.570978126162568],[115,312,73,0.5789434832809036],[115,312,74,0.5862974820876274],[115,312,75,0.593011806950183],[115,312,76,0.5990298288079038],[115,312,77,0.6042727709227311],[115,312,78,0.6086454785045439],[115,312,79,0.6120417922111101],[115,313,64,0.49217504698086223],[115,313,65,0.505548601915752],[115,313,66,0.5186930919035162],[115,313,67,0.5313862997514274],[115,313,68,0.5434483176173299],[115,313,69,0.5547510431666299],[115,313,70,0.565228018113739],[115,313,71,0.5748846091479314],[115,313,72,0.5838077411689234],[115,313,73,0.5920895916217048],[115,313,74,0.5997002198532088],[115,313,75,0.6065708674089004],[115,313,76,0.6126123660558647],[115,313,77,0.6177206791743064],[115,313,78,0.6217820843693066],[115,313,79,0.6246779973028389],[115,314,64,0.49798468711282845],[115,314,65,0.5122437322028742],[115,314,66,0.5261547161957878],[115,314,67,0.5395016142918032],[115,314,68,0.5521142258785658],[115,314,69,0.5638779953459188],[115,314,70,0.5747441802643226],[115,314,71,0.5847403669268662],[115,314,72,0.5939802495219564],[115,314,73,0.6025599388619358],[115,314,74,0.610409365591197],[115,314,75,0.6174222792457134],[115,314,76,0.6234795264744036],[115,314,77,0.6284539900923878],[115,314,78,0.632215204276827],[115,314,79,0.6346336459053584],[115,315,64,0.500941906077064],[115,315,65,0.5160997982560871],[115,315,66,0.5307854375772607],[115,315,67,0.5447892240212344],[115,315,68,0.5579509345806324],[115,315,69,0.5701698610012647],[115,315,70,0.5814152987299015],[115,315,71,0.591737387068561],[115,315,72,0.6012769362738701],[115,315,73,0.6101355472201784],[115,315,74,0.618206542360669],[115,315,75,0.6253494525598895],[115,315,76,0.6314179438269845],[115,315,77,0.6362641817857514],[115,315,78,0.6397429046643586],[115,315,79,0.6417152048047321],[115,316,64,0.5008851436699204],[115,316,65,0.5169457403173372],[115,316,66,0.5324069671931957],[115,316,67,0.5470657530734402],[115,316,68,0.5607719456239202],[115,316,69,0.5734387557068181],[115,316,70,0.5850535556969105],[115,316,71,0.5956890318076183],[115,316,72,0.6055130617410519],[115,316,73,0.6146341220328192],[115,316,74,0.6229127265571522],[115,316,75,0.6301777231145361],[115,316,76,0.6362585973166024],[115,316,77,0.6409892959546005],[115,316,78,0.6442117886394294],[115,316,79,0.6457793677132375],[115,317,64,0.49766760197900695],[115,317,65,0.5146274473494727],[115,317,66,0.5308603663888987],[115,317,67,0.5461697705813875],[115,317,68,0.5604154704059998],[115,317,69,0.5735244135696399],[115,317,70,0.5855017791377017],[115,317,71,0.5964424275624397],[115,317,72,0.6065408323951641],[115,317,73,0.6159135158526504],[115,317,74,0.6243921898833326],[115,317,75,0.6317787482115333],[115,317,76,0.6378816297586869],[115,317,77,0.6425191400957457],[115,317,78,0.6455225382599573],[115,317,79,0.6467388889360098],[115,318,64,0.4911556902136547],[115,318,65,0.5090067745319548],[115,318,66,0.5260056328787982],[115,318,67,0.541961939963385],[115,318,68,0.5567451355460844],[115,318,69,0.5702954421206748],[115,318,70,0.5826352396205148],[115,318,71,0.5938807971485884],[115,318,72,0.6042522634496508],[115,318,73,0.6138751143637929],[115,318,74,0.6225563925365377],[115,318,75,0.6300748822577849],[115,318,76,0.6362211727988393],[115,318,77,0.6408005228027713],[115,318,78,0.6436355144889421],[115,318,79,0.6445684976716974],[115,319,64,0.48122709219548715],[115,319,65,0.49996022042059995],[115,319,66,0.5177209826142565],[115,319,67,0.534324898925648],[115,319,68,0.549650453315291],[115,319,69,0.5636503749022516],[115,319,70,0.5763632768840201],[115,319,71,0.5879256530289967],[115,319,72,0.5985819331407496],[115,319,73,0.6084671441121049],[115,319,74,0.617367827612238],[115,319,75,0.6250435320221065],[115,319,76,0.6312701791748051],[115,319,77,0.6358425221606469],[115,319,78,0.638576414823261],[115,319,79,0.6393108929467174],[116,-64,64,64.0],[116,-64,65,64.0],[116,-64,66,64.0],[116,-64,67,64.0],[116,-64,68,64.0],[116,-64,69,64.0],[116,-64,70,64.0],[116,-64,71,64.0],[116,-64,72,64.0],[116,-64,73,64.0],[116,-64,74,64.0],[116,-64,75,64.0],[116,-64,76,64.0],[116,-64,77,64.0],[116,-64,78,64.0],[116,-64,79,64.0],[116,-63,64,64.0],[116,-63,65,64.0],[116,-63,66,64.0],[116,-63,67,64.0],[116,-63,68,64.0],[116,-63,69,64.0],[116,-63,70,64.0],[116,-63,71,64.0],[116,-63,72,64.0],[116,-63,73,64.0],[116,-63,74,64.0],[116,-63,75,64.0],[116,-63,76,64.0],[116,-63,77,64.0],[116,-63,78,64.0],[116,-63,79,64.0],[116,-62,64,64.0],[116,-62,65,64.0],[116,-62,66,64.0],[116,-62,67,64.0],[116,-62,68,64.0],[116,-62,69,64.0],[116,-62,70,64.0],[116,-62,71,64.0],[116,-62,72,64.0],[116,-62,73,64.0],[116,-62,74,64.0],[116,-62,75,64.0],[116,-62,76,64.0],[116,-62,77,64.0],[116,-62,78,64.0],[116,-62,79,64.0],[116,-61,64,64.0],[116,-61,65,64.0],[116,-61,66,64.0],[116,-61,67,64.0],[116,-61,68,64.0],[116,-61,69,64.0],[116,-61,70,64.0],[116,-61,71,64.0],[116,-61,72,64.0],[116,-61,73,64.0],[116,-61,74,64.0],[116,-61,75,64.0],[116,-61,76,64.0],[116,-61,77,64.0],[116,-61,78,64.0],[116,-61,79,64.0],[116,-60,64,64.0],[116,-60,65,64.0],[116,-60,66,64.0],[116,-60,67,64.0],[116,-60,68,64.0],[116,-60,69,64.0],[116,-60,70,64.0],[116,-60,71,64.0],[116,-60,72,64.0],[116,-60,73,64.0],[116,-60,74,64.0],[116,-60,75,64.0],[116,-60,76,64.0],[116,-60,77,64.0],[116,-60,78,64.0],[116,-60,79,64.0],[116,-59,64,64.0],[116,-59,65,64.0],[116,-59,66,64.0],[116,-59,67,64.0],[116,-59,68,64.0],[116,-59,69,64.0],[116,-59,70,64.0],[116,-59,71,64.0],[116,-59,72,64.0],[116,-59,73,64.0],[116,-59,74,64.0],[116,-59,75,64.0],[116,-59,76,64.0],[116,-59,77,64.0],[116,-59,78,64.0],[116,-59,79,64.0],[116,-58,64,64.0],[116,-58,65,64.0],[116,-58,66,64.0],[116,-58,67,64.0],[116,-58,68,64.0],[116,-58,69,64.0],[116,-58,70,64.0],[116,-58,71,64.0],[116,-58,72,64.0],[116,-58,73,64.0],[116,-58,74,64.0],[116,-58,75,64.0],[116,-58,76,64.0],[116,-58,77,64.0],[116,-58,78,64.0],[116,-58,79,64.0],[116,-57,64,64.0],[116,-57,65,64.0],[116,-57,66,64.0],[116,-57,67,64.0],[116,-57,68,64.0],[116,-57,69,64.0],[116,-57,70,64.0],[116,-57,71,64.0],[116,-57,72,64.0],[116,-57,73,64.0],[116,-57,74,64.0],[116,-57,75,64.0],[116,-57,76,64.0],[116,-57,77,64.0],[116,-57,78,64.0],[116,-57,79,64.0],[116,-56,64,64.0],[116,-56,65,64.0],[116,-56,66,64.0],[116,-56,67,64.0],[116,-56,68,64.0],[116,-56,69,64.0],[116,-56,70,64.0],[116,-56,71,64.0],[116,-56,72,64.0],[116,-56,73,64.0],[116,-56,74,64.0],[116,-56,75,64.0],[116,-56,76,64.0],[116,-56,77,64.0],[116,-56,78,64.0],[116,-56,79,64.0],[116,-55,64,64.0],[116,-55,65,64.0],[116,-55,66,64.0],[116,-55,67,64.0],[116,-55,68,64.0],[116,-55,69,64.0],[116,-55,70,64.0],[116,-55,71,64.0],[116,-55,72,64.0],[116,-55,73,64.0],[116,-55,74,64.0],[116,-55,75,64.0],[116,-55,76,64.0],[116,-55,77,64.0],[116,-55,78,64.0],[116,-55,79,64.0],[116,-54,64,64.0],[116,-54,65,64.0],[116,-54,66,64.0],[116,-54,67,64.0],[116,-54,68,64.0],[116,-54,69,64.0],[116,-54,70,64.0],[116,-54,71,64.0],[116,-54,72,64.0],[116,-54,73,64.0],[116,-54,74,64.0],[116,-54,75,64.0],[116,-54,76,64.0],[116,-54,77,64.0],[116,-54,78,64.0],[116,-54,79,64.0],[116,-53,64,64.0],[116,-53,65,64.0],[116,-53,66,64.0],[116,-53,67,64.0],[116,-53,68,64.0],[116,-53,69,64.0],[116,-53,70,64.0],[116,-53,71,64.0],[116,-53,72,64.0],[116,-53,73,64.0],[116,-53,74,64.0],[116,-53,75,64.0],[116,-53,76,64.0],[116,-53,77,64.0],[116,-53,78,64.0],[116,-53,79,64.0],[116,-52,64,64.0],[116,-52,65,64.0],[116,-52,66,64.0],[116,-52,67,64.0],[116,-52,68,64.0],[116,-52,69,64.0],[116,-52,70,64.0],[116,-52,71,64.0],[116,-52,72,64.0],[116,-52,73,64.0],[116,-52,74,64.0],[116,-52,75,64.0],[116,-52,76,64.0],[116,-52,77,64.0],[116,-52,78,64.0],[116,-52,79,64.0],[116,-51,64,64.0],[116,-51,65,64.0],[116,-51,66,64.0],[116,-51,67,64.0],[116,-51,68,64.0],[116,-51,69,64.0],[116,-51,70,64.0],[116,-51,71,64.0],[116,-51,72,64.0],[116,-51,73,64.0],[116,-51,74,64.0],[116,-51,75,64.0],[116,-51,76,64.0],[116,-51,77,64.0],[116,-51,78,64.0],[116,-51,79,64.0],[116,-50,64,64.0],[116,-50,65,64.0],[116,-50,66,64.0],[116,-50,67,64.0],[116,-50,68,64.0],[116,-50,69,64.0],[116,-50,70,64.0],[116,-50,71,64.0],[116,-50,72,64.0],[116,-50,73,64.0],[116,-50,74,64.0],[116,-50,75,64.0],[116,-50,76,64.0],[116,-50,77,64.0],[116,-50,78,64.0],[116,-50,79,64.0],[116,-49,64,64.0],[116,-49,65,64.0],[116,-49,66,64.0],[116,-49,67,64.0],[116,-49,68,64.0],[116,-49,69,64.0],[116,-49,70,64.0],[116,-49,71,64.0],[116,-49,72,64.0],[116,-49,73,64.0],[116,-49,74,64.0],[116,-49,75,64.0],[116,-49,76,64.0],[116,-49,77,64.0],[116,-49,78,64.0],[116,-49,79,64.0],[116,-48,64,64.0],[116,-48,65,64.0],[116,-48,66,64.0],[116,-48,67,64.0],[116,-48,68,64.0],[116,-48,69,64.0],[116,-48,70,64.0],[116,-48,71,64.0],[116,-48,72,64.0],[116,-48,73,64.0],[116,-48,74,64.0],[116,-48,75,64.0],[116,-48,76,64.0],[116,-48,77,64.0],[116,-48,78,64.0],[116,-48,79,64.0],[116,-47,64,64.0],[116,-47,65,64.0],[116,-47,66,64.0],[116,-47,67,64.0],[116,-47,68,64.0],[116,-47,69,64.0],[116,-47,70,64.0],[116,-47,71,64.0],[116,-47,72,64.0],[116,-47,73,64.0],[116,-47,74,64.0],[116,-47,75,64.0],[116,-47,76,64.0],[116,-47,77,64.0],[116,-47,78,64.0],[116,-47,79,64.0],[116,-46,64,64.0],[116,-46,65,64.0],[116,-46,66,64.0],[116,-46,67,64.0],[116,-46,68,64.0],[116,-46,69,64.0],[116,-46,70,64.0],[116,-46,71,64.0],[116,-46,72,64.0],[116,-46,73,64.0],[116,-46,74,64.0],[116,-46,75,64.0],[116,-46,76,64.0],[116,-46,77,64.0],[116,-46,78,64.0],[116,-46,79,64.0],[116,-45,64,64.0],[116,-45,65,64.0],[116,-45,66,64.0],[116,-45,67,64.0],[116,-45,68,64.0],[116,-45,69,64.0],[116,-45,70,64.0],[116,-45,71,64.0],[116,-45,72,64.0],[116,-45,73,64.0],[116,-45,74,64.0],[116,-45,75,64.0],[116,-45,76,64.0],[116,-45,77,64.0],[116,-45,78,64.0],[116,-45,79,64.0],[116,-44,64,64.0],[116,-44,65,64.0],[116,-44,66,64.0],[116,-44,67,64.0],[116,-44,68,64.0],[116,-44,69,64.0],[116,-44,70,64.0],[116,-44,71,64.0],[116,-44,72,64.0],[116,-44,73,64.0],[116,-44,74,64.0],[116,-44,75,64.0],[116,-44,76,64.0],[116,-44,77,64.0],[116,-44,78,64.0],[116,-44,79,64.0],[116,-43,64,64.0],[116,-43,65,64.0],[116,-43,66,64.0],[116,-43,67,64.0],[116,-43,68,64.0],[116,-43,69,64.0],[116,-43,70,64.0],[116,-43,71,64.0],[116,-43,72,64.0],[116,-43,73,64.0],[116,-43,74,64.0],[116,-43,75,64.0],[116,-43,76,64.0],[116,-43,77,64.0],[116,-43,78,64.0],[116,-43,79,64.0],[116,-42,64,64.0],[116,-42,65,64.0],[116,-42,66,64.0],[116,-42,67,64.0],[116,-42,68,64.0],[116,-42,69,64.0],[116,-42,70,64.0],[116,-42,71,64.0],[116,-42,72,64.0],[116,-42,73,64.0],[116,-42,74,64.0],[116,-42,75,64.0],[116,-42,76,64.0],[116,-42,77,64.0],[116,-42,78,64.0],[116,-42,79,64.0],[116,-41,64,64.0],[116,-41,65,64.0],[116,-41,66,64.0],[116,-41,67,64.0],[116,-41,68,64.0],[116,-41,69,64.0],[116,-41,70,64.0],[116,-41,71,64.0],[116,-41,72,64.0],[116,-41,73,64.0],[116,-41,74,64.0],[116,-41,75,64.0],[116,-41,76,64.0],[116,-41,77,64.0],[116,-41,78,64.0],[116,-41,79,64.0],[116,-40,64,64.0],[116,-40,65,64.0],[116,-40,66,64.0],[116,-40,67,64.0],[116,-40,68,64.0],[116,-40,69,64.0],[116,-40,70,64.0],[116,-40,71,64.0],[116,-40,72,64.0],[116,-40,73,64.0],[116,-40,74,64.0],[116,-40,75,64.0],[116,-40,76,64.0],[116,-40,77,64.0],[116,-40,78,64.0],[116,-40,79,64.0],[116,-39,64,64.0],[116,-39,65,64.0],[116,-39,66,64.0],[116,-39,67,64.0],[116,-39,68,64.0],[116,-39,69,64.0],[116,-39,70,64.0],[116,-39,71,64.0],[116,-39,72,64.0],[116,-39,73,64.0],[116,-39,74,64.0],[116,-39,75,64.0],[116,-39,76,64.0],[116,-39,77,64.0],[116,-39,78,64.0],[116,-39,79,64.0],[116,-38,64,64.0],[116,-38,65,64.0],[116,-38,66,64.0],[116,-38,67,64.0],[116,-38,68,64.0],[116,-38,69,64.0],[116,-38,70,64.0],[116,-38,71,64.0],[116,-38,72,64.0],[116,-38,73,64.0],[116,-38,74,64.0],[116,-38,75,64.0],[116,-38,76,64.0],[116,-38,77,64.0],[116,-38,78,64.0],[116,-38,79,64.0],[116,-37,64,64.0],[116,-37,65,64.0],[116,-37,66,64.0],[116,-37,67,64.0],[116,-37,68,64.0],[116,-37,69,64.0],[116,-37,70,64.0],[116,-37,71,64.0],[116,-37,72,64.0],[116,-37,73,64.0],[116,-37,74,64.0],[116,-37,75,64.0],[116,-37,76,64.0],[116,-37,77,64.0],[116,-37,78,64.0],[116,-37,79,64.0],[116,-36,64,64.0],[116,-36,65,64.0],[116,-36,66,64.0],[116,-36,67,64.0],[116,-36,68,64.0],[116,-36,69,64.0],[116,-36,70,64.0],[116,-36,71,64.0],[116,-36,72,64.0],[116,-36,73,64.0],[116,-36,74,64.0],[116,-36,75,64.0],[116,-36,76,64.0],[116,-36,77,64.0],[116,-36,78,64.0],[116,-36,79,64.0],[116,-35,64,64.0],[116,-35,65,64.0],[116,-35,66,64.0],[116,-35,67,64.0],[116,-35,68,64.0],[116,-35,69,64.0],[116,-35,70,64.0],[116,-35,71,64.0],[116,-35,72,64.0],[116,-35,73,64.0],[116,-35,74,64.0],[116,-35,75,64.0],[116,-35,76,64.0],[116,-35,77,64.0],[116,-35,78,64.0],[116,-35,79,64.0],[116,-34,64,64.0],[116,-34,65,64.0],[116,-34,66,64.0],[116,-34,67,64.0],[116,-34,68,64.0],[116,-34,69,64.0],[116,-34,70,64.0],[116,-34,71,64.0],[116,-34,72,64.0],[116,-34,73,64.0],[116,-34,74,64.0],[116,-34,75,64.0],[116,-34,76,64.0],[116,-34,77,64.0],[116,-34,78,64.0],[116,-34,79,64.0],[116,-33,64,64.0],[116,-33,65,64.0],[116,-33,66,64.0],[116,-33,67,64.0],[116,-33,68,64.0],[116,-33,69,64.0],[116,-33,70,64.0],[116,-33,71,64.0],[116,-33,72,64.0],[116,-33,73,64.0],[116,-33,74,64.0],[116,-33,75,64.0],[116,-33,76,64.0],[116,-33,77,64.0],[116,-33,78,64.0],[116,-33,79,64.0],[116,-32,64,64.0],[116,-32,65,64.0],[116,-32,66,64.0],[116,-32,67,64.0],[116,-32,68,64.0],[116,-32,69,64.0],[116,-32,70,64.0],[116,-32,71,64.0],[116,-32,72,64.0],[116,-32,73,64.0],[116,-32,74,64.0],[116,-32,75,64.0],[116,-32,76,64.0],[116,-32,77,64.0],[116,-32,78,64.0],[116,-32,79,64.0],[116,-31,64,64.0],[116,-31,65,64.0],[116,-31,66,64.0],[116,-31,67,64.0],[116,-31,68,64.0],[116,-31,69,64.0],[116,-31,70,64.0],[116,-31,71,64.0],[116,-31,72,64.0],[116,-31,73,64.0],[116,-31,74,64.0],[116,-31,75,64.0],[116,-31,76,64.0],[116,-31,77,64.0],[116,-31,78,64.0],[116,-31,79,64.0],[116,-30,64,64.0],[116,-30,65,64.0],[116,-30,66,64.0],[116,-30,67,64.0],[116,-30,68,64.0],[116,-30,69,64.0],[116,-30,70,64.0],[116,-30,71,64.0],[116,-30,72,64.0],[116,-30,73,64.0],[116,-30,74,64.0],[116,-30,75,64.0],[116,-30,76,64.0],[116,-30,77,64.0],[116,-30,78,64.0],[116,-30,79,64.0],[116,-29,64,64.0],[116,-29,65,64.0],[116,-29,66,64.0],[116,-29,67,64.0],[116,-29,68,64.0],[116,-29,69,64.0],[116,-29,70,64.0],[116,-29,71,64.0],[116,-29,72,64.0],[116,-29,73,64.0],[116,-29,74,64.0],[116,-29,75,64.0],[116,-29,76,64.0],[116,-29,77,64.0],[116,-29,78,64.0],[116,-29,79,64.0],[116,-28,64,64.0],[116,-28,65,64.0],[116,-28,66,64.0],[116,-28,67,64.0],[116,-28,68,64.0],[116,-28,69,64.0],[116,-28,70,64.0],[116,-28,71,64.0],[116,-28,72,64.0],[116,-28,73,64.0],[116,-28,74,64.0],[116,-28,75,64.0],[116,-28,76,64.0],[116,-28,77,64.0],[116,-28,78,64.0],[116,-28,79,64.0],[116,-27,64,64.0],[116,-27,65,64.0],[116,-27,66,64.0],[116,-27,67,64.0],[116,-27,68,64.0],[116,-27,69,64.0],[116,-27,70,64.0],[116,-27,71,64.0],[116,-27,72,64.0],[116,-27,73,64.0],[116,-27,74,64.0],[116,-27,75,64.0],[116,-27,76,64.0],[116,-27,77,64.0],[116,-27,78,64.0],[116,-27,79,64.0],[116,-26,64,64.0],[116,-26,65,64.0],[116,-26,66,64.0],[116,-26,67,64.0],[116,-26,68,64.0],[116,-26,69,64.0],[116,-26,70,64.0],[116,-26,71,64.0],[116,-26,72,64.0],[116,-26,73,64.0],[116,-26,74,64.0],[116,-26,75,64.0],[116,-26,76,64.0],[116,-26,77,64.0],[116,-26,78,64.0],[116,-26,79,64.0],[116,-25,64,64.0],[116,-25,65,64.0],[116,-25,66,64.0],[116,-25,67,64.0],[116,-25,68,64.0],[116,-25,69,64.0],[116,-25,70,64.0],[116,-25,71,64.0],[116,-25,72,64.0],[116,-25,73,64.0],[116,-25,74,64.0],[116,-25,75,64.0],[116,-25,76,64.0],[116,-25,77,64.0],[116,-25,78,64.0],[116,-25,79,64.0],[116,-24,64,64.0],[116,-24,65,64.0],[116,-24,66,64.0],[116,-24,67,64.0],[116,-24,68,64.0],[116,-24,69,64.0],[116,-24,70,64.0],[116,-24,71,64.0],[116,-24,72,64.0],[116,-24,73,64.0],[116,-24,74,64.0],[116,-24,75,64.0],[116,-24,76,64.0],[116,-24,77,64.0],[116,-24,78,64.0],[116,-24,79,64.0],[116,-23,64,64.0],[116,-23,65,64.0],[116,-23,66,64.0],[116,-23,67,64.0],[116,-23,68,64.0],[116,-23,69,64.0],[116,-23,70,64.0],[116,-23,71,64.0],[116,-23,72,64.0],[116,-23,73,64.0],[116,-23,74,64.0],[116,-23,75,64.0],[116,-23,76,64.0],[116,-23,77,64.0],[116,-23,78,64.0],[116,-23,79,64.0],[116,-22,64,64.0],[116,-22,65,64.0],[116,-22,66,64.0],[116,-22,67,64.0],[116,-22,68,64.0],[116,-22,69,64.0],[116,-22,70,64.0],[116,-22,71,64.0],[116,-22,72,64.0],[116,-22,73,64.0],[116,-22,74,64.0],[116,-22,75,64.0],[116,-22,76,64.0],[116,-22,77,64.0],[116,-22,78,64.0],[116,-22,79,64.0],[116,-21,64,64.0],[116,-21,65,64.0],[116,-21,66,64.0],[116,-21,67,64.0],[116,-21,68,64.0],[116,-21,69,64.0],[116,-21,70,64.0],[116,-21,71,64.0],[116,-21,72,64.0],[116,-21,73,64.0],[116,-21,74,64.0],[116,-21,75,64.0],[116,-21,76,64.0],[116,-21,77,64.0],[116,-21,78,64.0],[116,-21,79,64.0],[116,-20,64,64.0],[116,-20,65,64.0],[116,-20,66,64.0],[116,-20,67,64.0],[116,-20,68,64.0],[116,-20,69,64.0],[116,-20,70,64.0],[116,-20,71,64.0],[116,-20,72,64.0],[116,-20,73,64.0],[116,-20,74,64.0],[116,-20,75,64.0],[116,-20,76,64.0],[116,-20,77,64.0],[116,-20,78,64.0],[116,-20,79,64.0],[116,-19,64,64.0],[116,-19,65,64.0],[116,-19,66,64.0],[116,-19,67,64.0],[116,-19,68,64.0],[116,-19,69,64.0],[116,-19,70,64.0],[116,-19,71,64.0],[116,-19,72,64.0],[116,-19,73,64.0],[116,-19,74,64.0],[116,-19,75,64.0],[116,-19,76,64.0],[116,-19,77,64.0],[116,-19,78,64.0],[116,-19,79,64.0],[116,-18,64,64.0],[116,-18,65,64.0],[116,-18,66,64.0],[116,-18,67,64.0],[116,-18,68,64.0],[116,-18,69,64.0],[116,-18,70,64.0],[116,-18,71,64.0],[116,-18,72,64.0],[116,-18,73,64.0],[116,-18,74,64.0],[116,-18,75,64.0],[116,-18,76,64.0],[116,-18,77,64.0],[116,-18,78,64.0],[116,-18,79,64.0],[116,-17,64,64.0],[116,-17,65,64.0],[116,-17,66,64.0],[116,-17,67,64.0],[116,-17,68,64.0],[116,-17,69,64.0],[116,-17,70,64.0],[116,-17,71,64.0],[116,-17,72,64.0],[116,-17,73,64.0],[116,-17,74,64.0],[116,-17,75,64.0],[116,-17,76,64.0],[116,-17,77,64.0],[116,-17,78,64.0],[116,-17,79,64.0],[116,-16,64,64.0],[116,-16,65,64.0],[116,-16,66,64.0],[116,-16,67,64.0],[116,-16,68,64.0],[116,-16,69,64.0],[116,-16,70,64.0],[116,-16,71,64.0],[116,-16,72,64.0],[116,-16,73,64.0],[116,-16,74,64.0],[116,-16,75,64.0],[116,-16,76,64.0],[116,-16,77,64.0],[116,-16,78,64.0],[116,-16,79,64.0],[116,-15,64,64.0],[116,-15,65,64.0],[116,-15,66,64.0],[116,-15,67,64.0],[116,-15,68,64.0],[116,-15,69,64.0],[116,-15,70,64.0],[116,-15,71,64.0],[116,-15,72,64.0],[116,-15,73,64.0],[116,-15,74,64.0],[116,-15,75,64.0],[116,-15,76,64.0],[116,-15,77,64.0],[116,-15,78,64.0],[116,-15,79,64.0],[116,-14,64,64.0],[116,-14,65,64.0],[116,-14,66,64.0],[116,-14,67,64.0],[116,-14,68,64.0],[116,-14,69,64.0],[116,-14,70,64.0],[116,-14,71,64.0],[116,-14,72,64.0],[116,-14,73,64.0],[116,-14,74,64.0],[116,-14,75,64.0],[116,-14,76,64.0],[116,-14,77,64.0],[116,-14,78,64.0],[116,-14,79,64.0],[116,-13,64,64.0],[116,-13,65,64.0],[116,-13,66,64.0],[116,-13,67,64.0],[116,-13,68,64.0],[116,-13,69,64.0],[116,-13,70,64.0],[116,-13,71,64.0],[116,-13,72,64.0],[116,-13,73,64.0],[116,-13,74,64.0],[116,-13,75,64.0],[116,-13,76,64.0],[116,-13,77,64.0],[116,-13,78,64.0],[116,-13,79,64.0],[116,-12,64,64.0],[116,-12,65,64.0],[116,-12,66,64.0],[116,-12,67,64.0],[116,-12,68,64.0],[116,-12,69,64.0],[116,-12,70,64.0],[116,-12,71,64.0],[116,-12,72,64.0],[116,-12,73,64.0],[116,-12,74,64.0],[116,-12,75,64.0],[116,-12,76,64.0],[116,-12,77,64.0],[116,-12,78,64.0],[116,-12,79,64.0],[116,-11,64,64.0],[116,-11,65,64.0],[116,-11,66,64.0],[116,-11,67,64.0],[116,-11,68,64.0],[116,-11,69,64.0],[116,-11,70,64.0],[116,-11,71,64.0],[116,-11,72,64.0],[116,-11,73,64.0],[116,-11,74,64.0],[116,-11,75,64.0],[116,-11,76,64.0],[116,-11,77,64.0],[116,-11,78,64.0],[116,-11,79,64.0],[116,-10,64,64.0],[116,-10,65,64.0],[116,-10,66,64.0],[116,-10,67,64.0],[116,-10,68,64.0],[116,-10,69,64.0],[116,-10,70,64.0],[116,-10,71,64.0],[116,-10,72,64.0],[116,-10,73,64.0],[116,-10,74,64.0],[116,-10,75,64.0],[116,-10,76,64.0],[116,-10,77,64.0],[116,-10,78,64.0],[116,-10,79,64.0],[116,-9,64,64.0],[116,-9,65,64.0],[116,-9,66,64.0],[116,-9,67,64.0],[116,-9,68,64.0],[116,-9,69,64.0],[116,-9,70,64.0],[116,-9,71,64.0],[116,-9,72,64.0],[116,-9,73,64.0],[116,-9,74,64.0],[116,-9,75,64.0],[116,-9,76,64.0],[116,-9,77,64.0],[116,-9,78,64.0],[116,-9,79,64.0],[116,-8,64,64.0],[116,-8,65,64.0],[116,-8,66,64.0],[116,-8,67,64.0],[116,-8,68,64.0],[116,-8,69,64.0],[116,-8,70,64.0],[116,-8,71,64.0],[116,-8,72,64.0],[116,-8,73,64.0],[116,-8,74,64.0],[116,-8,75,64.0],[116,-8,76,64.0],[116,-8,77,64.0],[116,-8,78,64.0],[116,-8,79,64.0],[116,-7,64,64.0],[116,-7,65,64.0],[116,-7,66,64.0],[116,-7,67,64.0],[116,-7,68,64.0],[116,-7,69,64.0],[116,-7,70,64.0],[116,-7,71,64.0],[116,-7,72,64.0],[116,-7,73,64.0],[116,-7,74,64.0],[116,-7,75,64.0],[116,-7,76,64.0],[116,-7,77,64.0],[116,-7,78,64.0],[116,-7,79,64.0],[116,-6,64,64.0],[116,-6,65,64.0],[116,-6,66,64.0],[116,-6,67,64.0],[116,-6,68,64.0],[116,-6,69,64.0],[116,-6,70,64.0],[116,-6,71,64.0],[116,-6,72,64.0],[116,-6,73,64.0],[116,-6,74,64.0],[116,-6,75,64.0],[116,-6,76,64.0],[116,-6,77,64.0],[116,-6,78,64.0],[116,-6,79,64.0],[116,-5,64,64.0],[116,-5,65,64.0],[116,-5,66,64.0],[116,-5,67,64.0],[116,-5,68,64.0],[116,-5,69,64.0],[116,-5,70,64.0],[116,-5,71,64.0],[116,-5,72,64.0],[116,-5,73,64.0],[116,-5,74,64.0],[116,-5,75,64.0],[116,-5,76,64.0],[116,-5,77,64.0],[116,-5,78,64.0],[116,-5,79,64.0],[116,-4,64,64.0],[116,-4,65,64.0],[116,-4,66,64.0],[116,-4,67,64.0],[116,-4,68,64.0],[116,-4,69,64.0],[116,-4,70,64.0],[116,-4,71,64.0],[116,-4,72,64.0],[116,-4,73,64.0],[116,-4,74,64.0],[116,-4,75,64.0],[116,-4,76,64.0],[116,-4,77,64.0],[116,-4,78,64.0],[116,-4,79,64.0],[116,-3,64,64.0],[116,-3,65,64.0],[116,-3,66,64.0],[116,-3,67,64.0],[116,-3,68,64.0],[116,-3,69,64.0],[116,-3,70,64.0],[116,-3,71,64.0],[116,-3,72,64.0],[116,-3,73,64.0],[116,-3,74,64.0],[116,-3,75,64.0],[116,-3,76,64.0],[116,-3,77,64.0],[116,-3,78,64.0],[116,-3,79,64.0],[116,-2,64,64.0],[116,-2,65,64.0],[116,-2,66,64.0],[116,-2,67,64.0],[116,-2,68,64.0],[116,-2,69,64.0],[116,-2,70,64.0],[116,-2,71,64.0],[116,-2,72,64.0],[116,-2,73,64.0],[116,-2,74,64.0],[116,-2,75,64.0],[116,-2,76,64.0],[116,-2,77,64.0],[116,-2,78,64.0],[116,-2,79,64.0],[116,-1,64,64.0],[116,-1,65,64.0],[116,-1,66,64.0],[116,-1,67,64.0],[116,-1,68,64.0],[116,-1,69,64.0],[116,-1,70,64.0],[116,-1,71,64.0],[116,-1,72,64.0],[116,-1,73,64.0],[116,-1,74,64.0],[116,-1,75,64.0],[116,-1,76,64.0],[116,-1,77,64.0],[116,-1,78,64.0],[116,-1,79,64.0],[116,0,64,64.0],[116,0,65,64.0],[116,0,66,64.0],[116,0,67,64.0],[116,0,68,64.0],[116,0,69,64.0],[116,0,70,64.0],[116,0,71,64.0],[116,0,72,64.0],[116,0,73,64.0],[116,0,74,64.0],[116,0,75,64.0],[116,0,76,64.0],[116,0,77,64.0],[116,0,78,64.0],[116,0,79,64.0],[116,1,64,64.0],[116,1,65,64.0],[116,1,66,64.0],[116,1,67,64.0],[116,1,68,64.0],[116,1,69,64.0],[116,1,70,64.0],[116,1,71,64.0],[116,1,72,64.0],[116,1,73,64.0],[116,1,74,64.0],[116,1,75,64.0],[116,1,76,64.0],[116,1,77,64.0],[116,1,78,64.0],[116,1,79,64.0],[116,2,64,64.0],[116,2,65,64.0],[116,2,66,64.0],[116,2,67,64.0],[116,2,68,64.0],[116,2,69,64.0],[116,2,70,64.0],[116,2,71,64.0],[116,2,72,64.0],[116,2,73,64.0],[116,2,74,64.0],[116,2,75,64.0],[116,2,76,64.0],[116,2,77,64.0],[116,2,78,64.0],[116,2,79,64.0],[116,3,64,64.0],[116,3,65,64.0],[116,3,66,64.0],[116,3,67,64.0],[116,3,68,64.0],[116,3,69,64.0],[116,3,70,64.0],[116,3,71,64.0],[116,3,72,64.0],[116,3,73,64.0],[116,3,74,64.0],[116,3,75,64.0],[116,3,76,64.0],[116,3,77,64.0],[116,3,78,64.0],[116,3,79,64.0],[116,4,64,64.0],[116,4,65,64.0],[116,4,66,64.0],[116,4,67,64.0],[116,4,68,64.0],[116,4,69,64.0],[116,4,70,64.0],[116,4,71,64.0],[116,4,72,64.0],[116,4,73,64.0],[116,4,74,64.0],[116,4,75,64.0],[116,4,76,64.0],[116,4,77,64.0],[116,4,78,64.0],[116,4,79,64.0],[116,5,64,64.0],[116,5,65,64.0],[116,5,66,64.0],[116,5,67,64.0],[116,5,68,64.0],[116,5,69,64.0],[116,5,70,64.0],[116,5,71,64.0],[116,5,72,64.0],[116,5,73,64.0],[116,5,74,64.0],[116,5,75,64.0],[116,5,76,64.0],[116,5,77,64.0],[116,5,78,64.0],[116,5,79,64.0],[116,6,64,64.0],[116,6,65,64.0],[116,6,66,64.0],[116,6,67,64.0],[116,6,68,64.0],[116,6,69,64.0],[116,6,70,64.0],[116,6,71,64.0],[116,6,72,64.0],[116,6,73,64.0],[116,6,74,64.0],[116,6,75,64.0],[116,6,76,64.0],[116,6,77,64.0],[116,6,78,64.0],[116,6,79,64.0],[116,7,64,64.0],[116,7,65,64.0],[116,7,66,64.0],[116,7,67,64.0],[116,7,68,64.0],[116,7,69,64.0],[116,7,70,64.0],[116,7,71,64.0],[116,7,72,64.0],[116,7,73,64.0],[116,7,74,64.0],[116,7,75,64.0],[116,7,76,64.0],[116,7,77,64.0],[116,7,78,64.0],[116,7,79,64.0],[116,8,64,64.0],[116,8,65,64.0],[116,8,66,64.0],[116,8,67,64.0],[116,8,68,64.0],[116,8,69,64.0],[116,8,70,64.0],[116,8,71,64.0],[116,8,72,64.0],[116,8,73,64.0],[116,8,74,64.0],[116,8,75,64.0],[116,8,76,64.0],[116,8,77,64.0],[116,8,78,64.0],[116,8,79,64.0],[116,9,64,64.0],[116,9,65,64.0],[116,9,66,64.0],[116,9,67,64.0],[116,9,68,64.0],[116,9,69,64.0],[116,9,70,64.0],[116,9,71,64.0],[116,9,72,64.0],[116,9,73,64.0],[116,9,74,64.0],[116,9,75,64.0],[116,9,76,64.0],[116,9,77,64.0],[116,9,78,64.0],[116,9,79,64.0],[116,10,64,64.0],[116,10,65,64.0],[116,10,66,64.0],[116,10,67,64.0],[116,10,68,64.0],[116,10,69,64.0],[116,10,70,64.0],[116,10,71,64.0],[116,10,72,64.0],[116,10,73,64.0],[116,10,74,64.0],[116,10,75,64.0],[116,10,76,64.0],[116,10,77,64.0],[116,10,78,64.0],[116,10,79,64.0],[116,11,64,64.0],[116,11,65,64.0],[116,11,66,64.0],[116,11,67,64.0],[116,11,68,64.0],[116,11,69,64.0],[116,11,70,64.0],[116,11,71,64.0],[116,11,72,64.0],[116,11,73,64.0],[116,11,74,64.0],[116,11,75,64.0],[116,11,76,64.0],[116,11,77,64.0],[116,11,78,64.0],[116,11,79,64.0],[116,12,64,64.0],[116,12,65,64.0],[116,12,66,64.0],[116,12,67,64.0],[116,12,68,64.0],[116,12,69,64.0],[116,12,70,64.0],[116,12,71,64.0],[116,12,72,64.0],[116,12,73,64.0],[116,12,74,64.0],[116,12,75,64.0],[116,12,76,64.0],[116,12,77,64.0],[116,12,78,64.0],[116,12,79,64.0],[116,13,64,64.0],[116,13,65,64.0],[116,13,66,64.0],[116,13,67,64.0],[116,13,68,64.0],[116,13,69,64.0],[116,13,70,64.0],[116,13,71,64.0],[116,13,72,64.0],[116,13,73,64.0],[116,13,74,64.0],[116,13,75,64.0],[116,13,76,64.0],[116,13,77,64.0],[116,13,78,64.0],[116,13,79,64.0],[116,14,64,64.0],[116,14,65,64.0],[116,14,66,64.0],[116,14,67,64.0],[116,14,68,64.0],[116,14,69,64.0],[116,14,70,64.0],[116,14,71,64.0],[116,14,72,64.0],[116,14,73,64.0],[116,14,74,64.0],[116,14,75,64.0],[116,14,76,64.0],[116,14,77,64.0],[116,14,78,64.0],[116,14,79,64.0],[116,15,64,64.0],[116,15,65,64.0],[116,15,66,64.0],[116,15,67,64.0],[116,15,68,64.0],[116,15,69,64.0],[116,15,70,64.0],[116,15,71,64.0],[116,15,72,64.0],[116,15,73,64.0],[116,15,74,64.0],[116,15,75,64.0],[116,15,76,64.0],[116,15,77,64.0],[116,15,78,64.0],[116,15,79,64.0],[116,16,64,64.0],[116,16,65,64.0],[116,16,66,64.0],[116,16,67,64.0],[116,16,68,64.0],[116,16,69,64.0],[116,16,70,64.0],[116,16,71,64.0],[116,16,72,64.0],[116,16,73,64.0],[116,16,74,64.0],[116,16,75,64.0],[116,16,76,64.0],[116,16,77,64.0],[116,16,78,64.0],[116,16,79,64.0],[116,17,64,64.0],[116,17,65,64.0],[116,17,66,64.0],[116,17,67,64.0],[116,17,68,64.0],[116,17,69,64.0],[116,17,70,64.0],[116,17,71,64.0],[116,17,72,64.0],[116,17,73,64.0],[116,17,74,64.0],[116,17,75,64.0],[116,17,76,64.0],[116,17,77,64.0],[116,17,78,64.0],[116,17,79,64.0],[116,18,64,64.0],[116,18,65,64.0],[116,18,66,64.0],[116,18,67,64.0],[116,18,68,64.0],[116,18,69,64.0],[116,18,70,64.0],[116,18,71,64.0],[116,18,72,64.0],[116,18,73,64.0],[116,18,74,64.0],[116,18,75,64.0],[116,18,76,64.0],[116,18,77,64.0],[116,18,78,64.0],[116,18,79,64.0],[116,19,64,64.0],[116,19,65,64.0],[116,19,66,64.0],[116,19,67,64.0],[116,19,68,64.0],[116,19,69,64.0],[116,19,70,64.0],[116,19,71,64.0],[116,19,72,64.0],[116,19,73,64.0],[116,19,74,64.0],[116,19,75,64.0],[116,19,76,64.0],[116,19,77,64.0],[116,19,78,64.0],[116,19,79,64.0],[116,20,64,64.0],[116,20,65,64.0],[116,20,66,64.0],[116,20,67,64.0],[116,20,68,64.0],[116,20,69,64.0],[116,20,70,64.0],[116,20,71,64.0],[116,20,72,64.0],[116,20,73,64.0],[116,20,74,64.0],[116,20,75,64.0],[116,20,76,64.0],[116,20,77,64.0],[116,20,78,64.0],[116,20,79,64.0],[116,21,64,64.0],[116,21,65,64.0],[116,21,66,64.0],[116,21,67,64.0],[116,21,68,64.0],[116,21,69,64.0],[116,21,70,64.0],[116,21,71,64.0],[116,21,72,64.0],[116,21,73,64.0],[116,21,74,64.0],[116,21,75,64.0],[116,21,76,64.0],[116,21,77,64.0],[116,21,78,64.0],[116,21,79,64.0],[116,22,64,64.0],[116,22,65,64.0],[116,22,66,64.0],[116,22,67,64.0],[116,22,68,64.0],[116,22,69,64.0],[116,22,70,64.0],[116,22,71,64.0],[116,22,72,64.0],[116,22,73,64.0],[116,22,74,64.0],[116,22,75,64.0],[116,22,76,64.0],[116,22,77,64.0],[116,22,78,64.0],[116,22,79,64.0],[116,23,64,64.0],[116,23,65,64.0],[116,23,66,64.0],[116,23,67,64.0],[116,23,68,64.0],[116,23,69,64.0],[116,23,70,64.0],[116,23,71,64.0],[116,23,72,64.0],[116,23,73,64.0],[116,23,74,64.0],[116,23,75,64.0],[116,23,76,64.0],[116,23,77,64.0],[116,23,78,64.0],[116,23,79,64.0],[116,24,64,64.0],[116,24,65,64.0],[116,24,66,64.0],[116,24,67,64.0],[116,24,68,64.0],[116,24,69,64.0],[116,24,70,64.0],[116,24,71,64.0],[116,24,72,64.0],[116,24,73,64.0],[116,24,74,64.0],[116,24,75,64.0],[116,24,76,64.0],[116,24,77,64.0],[116,24,78,64.0],[116,24,79,64.0],[116,25,64,64.0],[116,25,65,64.0],[116,25,66,64.0],[116,25,67,64.0],[116,25,68,64.0],[116,25,69,64.0],[116,25,70,64.0],[116,25,71,64.0],[116,25,72,64.0],[116,25,73,64.0],[116,25,74,64.0],[116,25,75,64.0],[116,25,76,64.0],[116,25,77,64.0],[116,25,78,64.0],[116,25,79,64.0],[116,26,64,64.0],[116,26,65,64.0],[116,26,66,64.0],[116,26,67,64.0],[116,26,68,64.0],[116,26,69,64.0],[116,26,70,64.0],[116,26,71,64.0],[116,26,72,64.0],[116,26,73,64.0],[116,26,74,64.0],[116,26,75,64.0],[116,26,76,64.0],[116,26,77,64.0],[116,26,78,64.0],[116,26,79,64.0],[116,27,64,64.0],[116,27,65,64.0],[116,27,66,64.0],[116,27,67,64.0],[116,27,68,64.0],[116,27,69,64.0],[116,27,70,64.0],[116,27,71,64.0],[116,27,72,64.0],[116,27,73,64.0],[116,27,74,64.0],[116,27,75,64.0],[116,27,76,64.0],[116,27,77,64.0],[116,27,78,64.0],[116,27,79,64.0],[116,28,64,64.0],[116,28,65,64.0],[116,28,66,64.0],[116,28,67,64.0],[116,28,68,64.0],[116,28,69,64.0],[116,28,70,64.0],[116,28,71,64.0],[116,28,72,64.0],[116,28,73,64.0],[116,28,74,64.0],[116,28,75,64.0],[116,28,76,64.0],[116,28,77,64.0],[116,28,78,64.0],[116,28,79,64.0],[116,29,64,64.0],[116,29,65,64.0],[116,29,66,64.0],[116,29,67,64.0],[116,29,68,64.0],[116,29,69,64.0],[116,29,70,64.0],[116,29,71,64.0],[116,29,72,64.0],[116,29,73,64.0],[116,29,74,64.0],[116,29,75,64.0],[116,29,76,64.0],[116,29,77,64.0],[116,29,78,64.0],[116,29,79,64.0],[116,30,64,64.0],[116,30,65,64.0],[116,30,66,64.0],[116,30,67,64.0],[116,30,68,64.0],[116,30,69,64.0],[116,30,70,64.0],[116,30,71,64.0],[116,30,72,64.0],[116,30,73,64.0],[116,30,74,64.0],[116,30,75,64.0],[116,30,76,64.0],[116,30,77,64.0],[116,30,78,64.0],[116,30,79,64.0],[116,31,64,64.0],[116,31,65,64.0],[116,31,66,64.0],[116,31,67,64.0],[116,31,68,64.0],[116,31,69,64.0],[116,31,70,64.0],[116,31,71,64.0],[116,31,72,64.0],[116,31,73,64.0],[116,31,74,64.0],[116,31,75,64.0],[116,31,76,64.0],[116,31,77,64.0],[116,31,78,64.0],[116,31,79,64.0],[116,32,64,64.0],[116,32,65,64.0],[116,32,66,64.0],[116,32,67,64.0],[116,32,68,64.0],[116,32,69,64.0],[116,32,70,64.0],[116,32,71,64.0],[116,32,72,64.0],[116,32,73,64.0],[116,32,74,64.0],[116,32,75,64.0],[116,32,76,64.0],[116,32,77,64.0],[116,32,78,64.0],[116,32,79,64.0],[116,33,64,64.0],[116,33,65,64.0],[116,33,66,64.0],[116,33,67,64.0],[116,33,68,64.0],[116,33,69,64.0],[116,33,70,64.0],[116,33,71,64.0],[116,33,72,64.0],[116,33,73,64.0],[116,33,74,64.0],[116,33,75,64.0],[116,33,76,64.0],[116,33,77,64.0],[116,33,78,64.0],[116,33,79,64.0],[116,34,64,64.0],[116,34,65,64.0],[116,34,66,64.0],[116,34,67,64.0],[116,34,68,64.0],[116,34,69,64.0],[116,34,70,64.0],[116,34,71,64.0],[116,34,72,64.0],[116,34,73,64.0],[116,34,74,64.0],[116,34,75,64.0],[116,34,76,64.0],[116,34,77,64.0],[116,34,78,64.0],[116,34,79,64.0],[116,35,64,64.0],[116,35,65,64.0],[116,35,66,64.0],[116,35,67,64.0],[116,35,68,64.0],[116,35,69,64.0],[116,35,70,64.0],[116,35,71,64.0],[116,35,72,64.0],[116,35,73,64.0],[116,35,74,64.0],[116,35,75,64.0],[116,35,76,64.0],[116,35,77,64.0],[116,35,78,64.0],[116,35,79,64.0],[116,36,64,64.0],[116,36,65,64.0],[116,36,66,64.0],[116,36,67,64.0],[116,36,68,64.0],[116,36,69,64.0],[116,36,70,64.0],[116,36,71,64.0],[116,36,72,64.0],[116,36,73,64.0],[116,36,74,64.0],[116,36,75,64.0],[116,36,76,64.0],[116,36,77,64.0],[116,36,78,64.0],[116,36,79,64.0],[116,37,64,64.0],[116,37,65,64.0],[116,37,66,64.0],[116,37,67,64.0],[116,37,68,64.0],[116,37,69,64.0],[116,37,70,64.0],[116,37,71,64.0],[116,37,72,64.0],[116,37,73,64.0],[116,37,74,64.0],[116,37,75,64.0],[116,37,76,64.0],[116,37,77,64.0],[116,37,78,64.0],[116,37,79,64.0],[116,38,64,64.0],[116,38,65,64.0],[116,38,66,64.0],[116,38,67,64.0],[116,38,68,64.0],[116,38,69,64.0],[116,38,70,64.0],[116,38,71,64.0],[116,38,72,64.0],[116,38,73,64.0],[116,38,74,64.0],[116,38,75,64.0],[116,38,76,64.0],[116,38,77,64.0],[116,38,78,64.0],[116,38,79,64.0],[116,39,64,64.0],[116,39,65,64.0],[116,39,66,64.0],[116,39,67,64.0],[116,39,68,64.0],[116,39,69,64.0],[116,39,70,64.0],[116,39,71,64.0],[116,39,72,64.0],[116,39,73,64.0],[116,39,74,64.0],[116,39,75,64.0],[116,39,76,64.0],[116,39,77,64.0],[116,39,78,64.0],[116,39,79,64.0],[116,40,64,64.0],[116,40,65,64.0],[116,40,66,64.0],[116,40,67,64.0],[116,40,68,64.0],[116,40,69,64.0],[116,40,70,64.0],[116,40,71,64.0],[116,40,72,64.0],[116,40,73,64.0],[116,40,74,64.0],[116,40,75,64.0],[116,40,76,64.0],[116,40,77,64.0],[116,40,78,64.0],[116,40,79,64.0],[116,41,64,64.0],[116,41,65,64.0],[116,41,66,64.0],[116,41,67,64.0],[116,41,68,64.0],[116,41,69,64.0],[116,41,70,64.0],[116,41,71,64.0],[116,41,72,64.0],[116,41,73,64.0],[116,41,74,64.0],[116,41,75,64.0],[116,41,76,64.0],[116,41,77,64.0],[116,41,78,64.0],[116,41,79,64.0],[116,42,64,64.0],[116,42,65,64.0],[116,42,66,64.0],[116,42,67,64.0],[116,42,68,64.0],[116,42,69,64.0],[116,42,70,64.0],[116,42,71,64.0],[116,42,72,64.0],[116,42,73,64.0],[116,42,74,64.0],[116,42,75,64.0],[116,42,76,64.0],[116,42,77,64.0],[116,42,78,64.0],[116,42,79,64.0],[116,43,64,64.0],[116,43,65,64.0],[116,43,66,64.0],[116,43,67,64.0],[116,43,68,64.0],[116,43,69,64.0],[116,43,70,64.0],[116,43,71,64.0],[116,43,72,64.0],[116,43,73,64.0],[116,43,74,64.0],[116,43,75,64.0],[116,43,76,64.0],[116,43,77,64.0],[116,43,78,64.0],[116,43,79,64.0],[116,44,64,64.0],[116,44,65,64.0],[116,44,66,64.0],[116,44,67,64.0],[116,44,68,64.0],[116,44,69,64.0],[116,44,70,64.0],[116,44,71,64.0],[116,44,72,64.0],[116,44,73,64.0],[116,44,74,64.0],[116,44,75,64.0],[116,44,76,64.0],[116,44,77,64.0],[116,44,78,64.0],[116,44,79,64.0],[116,45,64,64.0],[116,45,65,64.0],[116,45,66,64.0],[116,45,67,64.0],[116,45,68,64.0],[116,45,69,64.0],[116,45,70,64.0],[116,45,71,64.0],[116,45,72,64.0],[116,45,73,64.0],[116,45,74,64.0],[116,45,75,64.0],[116,45,76,64.0],[116,45,77,64.0],[116,45,78,64.0],[116,45,79,64.0],[116,46,64,64.0],[116,46,65,64.0],[116,46,66,64.0],[116,46,67,64.0],[116,46,68,64.0],[116,46,69,64.0],[116,46,70,64.0],[116,46,71,64.0],[116,46,72,64.0],[116,46,73,64.0],[116,46,74,64.0],[116,46,75,64.0],[116,46,76,64.0],[116,46,77,64.0],[116,46,78,64.0],[116,46,79,64.0],[116,47,64,64.0],[116,47,65,64.0],[116,47,66,64.0],[116,47,67,64.0],[116,47,68,64.0],[116,47,69,64.0],[116,47,70,64.0],[116,47,71,64.0],[116,47,72,64.0],[116,47,73,64.0],[116,47,74,64.0],[116,47,75,64.0],[116,47,76,64.0],[116,47,77,64.0],[116,47,78,64.0],[116,47,79,64.0],[116,48,64,64.0],[116,48,65,64.0],[116,48,66,64.0],[116,48,67,64.0],[116,48,68,64.0],[116,48,69,64.0],[116,48,70,64.0],[116,48,71,64.0],[116,48,72,64.0],[116,48,73,64.0],[116,48,74,64.0],[116,48,75,64.0],[116,48,76,64.0],[116,48,77,64.0],[116,48,78,64.0],[116,48,79,64.0],[116,49,64,64.0],[116,49,65,64.0],[116,49,66,64.0],[116,49,67,64.0],[116,49,68,64.0],[116,49,69,64.0],[116,49,70,64.0],[116,49,71,64.0],[116,49,72,64.0],[116,49,73,64.0],[116,49,74,64.0],[116,49,75,64.0],[116,49,76,64.0],[116,49,77,64.0],[116,49,78,64.0],[116,49,79,64.0],[116,50,64,64.0],[116,50,65,64.0],[116,50,66,64.0],[116,50,67,64.0],[116,50,68,64.0],[116,50,69,64.0],[116,50,70,64.0],[116,50,71,64.0],[116,50,72,64.0],[116,50,73,64.0],[116,50,74,64.0],[116,50,75,64.0],[116,50,76,64.0],[116,50,77,64.0],[116,50,78,64.0],[116,50,79,64.0],[116,51,64,64.0],[116,51,65,64.0],[116,51,66,64.0],[116,51,67,64.0],[116,51,68,64.0],[116,51,69,64.0],[116,51,70,64.0],[116,51,71,64.0],[116,51,72,64.0],[116,51,73,64.0],[116,51,74,64.0],[116,51,75,64.0],[116,51,76,64.0],[116,51,77,64.0],[116,51,78,64.0],[116,51,79,64.0],[116,52,64,64.0],[116,52,65,64.0],[116,52,66,64.0],[116,52,67,64.0],[116,52,68,64.0],[116,52,69,64.0],[116,52,70,64.0],[116,52,71,64.0],[116,52,72,64.0],[116,52,73,64.0],[116,52,74,64.0],[116,52,75,64.0],[116,52,76,64.0],[116,52,77,64.0],[116,52,78,64.0],[116,52,79,64.0],[116,53,64,64.0],[116,53,65,64.0],[116,53,66,64.0],[116,53,67,64.0],[116,53,68,64.0],[116,53,69,64.0],[116,53,70,64.0],[116,53,71,64.0],[116,53,72,64.0],[116,53,73,64.0],[116,53,74,64.0],[116,53,75,64.0],[116,53,76,64.0],[116,53,77,64.0],[116,53,78,64.0],[116,53,79,64.0],[116,54,64,64.0],[116,54,65,64.0],[116,54,66,64.0],[116,54,67,64.0],[116,54,68,64.0],[116,54,69,64.0],[116,54,70,64.0],[116,54,71,64.0],[116,54,72,64.0],[116,54,73,64.0],[116,54,74,64.0],[116,54,75,64.0],[116,54,76,64.0],[116,54,77,64.0],[116,54,78,64.0],[116,54,79,64.0],[116,55,64,64.0],[116,55,65,64.0],[116,55,66,64.0],[116,55,67,64.0],[116,55,68,64.0],[116,55,69,64.0],[116,55,70,64.0],[116,55,71,64.0],[116,55,72,64.0],[116,55,73,64.0],[116,55,74,64.0],[116,55,75,64.0],[116,55,76,64.0],[116,55,77,64.0],[116,55,78,64.0],[116,55,79,64.0],[116,56,64,64.0],[116,56,65,64.0],[116,56,66,64.0],[116,56,67,64.0],[116,56,68,64.0],[116,56,69,64.0],[116,56,70,64.0],[116,56,71,64.0],[116,56,72,64.0],[116,56,73,64.0],[116,56,74,64.0],[116,56,75,64.0],[116,56,76,64.0],[116,56,77,64.0],[116,56,78,64.0],[116,56,79,64.0],[116,57,64,64.0],[116,57,65,64.0],[116,57,66,64.0],[116,57,67,64.0],[116,57,68,64.0],[116,57,69,64.0],[116,57,70,64.0],[116,57,71,64.0],[116,57,72,64.0],[116,57,73,64.0],[116,57,74,64.0],[116,57,75,64.0],[116,57,76,64.0],[116,57,77,64.0],[116,57,78,64.0],[116,57,79,64.0],[116,58,64,64.0],[116,58,65,64.0],[116,58,66,64.0],[116,58,67,64.0],[116,58,68,64.0],[116,58,69,64.0],[116,58,70,64.0],[116,58,71,64.0],[116,58,72,64.0],[116,58,73,64.0],[116,58,74,64.0],[116,58,75,64.0],[116,58,76,64.0],[116,58,77,64.0],[116,58,78,64.0],[116,58,79,64.0],[116,59,64,64.0],[116,59,65,64.0],[116,59,66,64.0],[116,59,67,64.0],[116,59,68,64.0],[116,59,69,64.0],[116,59,70,64.0],[116,59,71,64.0],[116,59,72,64.0],[116,59,73,64.0],[116,59,74,64.0],[116,59,75,64.0],[116,59,76,64.0],[116,59,77,64.0],[116,59,78,64.0],[116,59,79,64.0],[116,60,64,64.0],[116,60,65,64.0],[116,60,66,64.0],[116,60,67,64.0],[116,60,68,64.0],[116,60,69,64.0],[116,60,70,64.0],[116,60,71,64.0],[116,60,72,64.0],[116,60,73,64.0],[116,60,74,64.0],[116,60,75,64.0],[116,60,76,64.0],[116,60,77,64.0],[116,60,78,64.0],[116,60,79,64.0],[116,61,64,64.0],[116,61,65,64.0],[116,61,66,64.0],[116,61,67,64.0],[116,61,68,64.0],[116,61,69,64.0],[116,61,70,64.0],[116,61,71,64.0],[116,61,72,64.0],[116,61,73,64.0],[116,61,74,64.0],[116,61,75,64.0],[116,61,76,64.0],[116,61,77,64.0],[116,61,78,64.0],[116,61,79,64.0],[116,62,64,64.0],[116,62,65,64.0],[116,62,66,64.0],[116,62,67,64.0],[116,62,68,64.0],[116,62,69,64.0],[116,62,70,64.0],[116,62,71,64.0],[116,62,72,64.0],[116,62,73,64.0],[116,62,74,64.0],[116,62,75,64.0],[116,62,76,64.0],[116,62,77,64.0],[116,62,78,64.0],[116,62,79,64.0],[116,63,64,64.0],[116,63,65,64.0],[116,63,66,64.0],[116,63,67,64.0],[116,63,68,64.0],[116,63,69,64.0],[116,63,70,64.0],[116,63,71,64.0],[116,63,72,64.0],[116,63,73,64.0],[116,63,74,64.0],[116,63,75,64.0],[116,63,76,64.0],[116,63,77,64.0],[116,63,78,64.0],[116,63,79,64.0],[116,64,64,64.0],[116,64,65,64.0],[116,64,66,64.0],[116,64,67,64.0],[116,64,68,64.0],[116,64,69,64.0],[116,64,70,64.0],[116,64,71,64.0],[116,64,72,64.0],[116,64,73,64.0],[116,64,74,64.0],[116,64,75,64.0],[116,64,76,64.0],[116,64,77,64.0],[116,64,78,64.0],[116,64,79,64.0],[116,65,64,64.0],[116,65,65,64.0],[116,65,66,64.0],[116,65,67,64.0],[116,65,68,64.0],[116,65,69,64.0],[116,65,70,64.0],[116,65,71,64.0],[116,65,72,64.0],[116,65,73,64.0],[116,65,74,64.0],[116,65,75,64.0],[116,65,76,64.0],[116,65,77,64.0],[116,65,78,64.0],[116,65,79,64.0],[116,66,64,64.0],[116,66,65,64.0],[116,66,66,64.0],[116,66,67,64.0],[116,66,68,64.0],[116,66,69,64.0],[116,66,70,64.0],[116,66,71,64.0],[116,66,72,64.0],[116,66,73,64.0],[116,66,74,64.0],[116,66,75,64.0],[116,66,76,64.0],[116,66,77,64.0],[116,66,78,64.0],[116,66,79,64.0],[116,67,64,64.0],[116,67,65,64.0],[116,67,66,64.0],[116,67,67,64.0],[116,67,68,64.0],[116,67,69,64.0],[116,67,70,64.0],[116,67,71,64.0],[116,67,72,64.0],[116,67,73,64.0],[116,67,74,64.0],[116,67,75,64.0],[116,67,76,64.0],[116,67,77,64.0],[116,67,78,64.0],[116,67,79,64.0],[116,68,64,64.0],[116,68,65,64.0],[116,68,66,64.0],[116,68,67,64.0],[116,68,68,64.0],[116,68,69,64.0],[116,68,70,64.0],[116,68,71,64.0],[116,68,72,64.0],[116,68,73,64.0],[116,68,74,64.0],[116,68,75,64.0],[116,68,76,64.0],[116,68,77,64.0],[116,68,78,64.0],[116,68,79,64.0],[116,69,64,64.0],[116,69,65,64.0],[116,69,66,64.0],[116,69,67,64.0],[116,69,68,64.0],[116,69,69,64.0],[116,69,70,64.0],[116,69,71,64.0],[116,69,72,64.0],[116,69,73,64.0],[116,69,74,64.0],[116,69,75,64.0],[116,69,76,64.0],[116,69,77,64.0],[116,69,78,64.0],[116,69,79,64.0],[116,70,64,64.0],[116,70,65,64.0],[116,70,66,64.0],[116,70,67,64.0],[116,70,68,64.0],[116,70,69,64.0],[116,70,70,64.0],[116,70,71,64.0],[116,70,72,64.0],[116,70,73,64.0],[116,70,74,64.0],[116,70,75,64.0],[116,70,76,64.0],[116,70,77,64.0],[116,70,78,64.0],[116,70,79,64.0],[116,71,64,64.0],[116,71,65,64.0],[116,71,66,64.0],[116,71,67,64.0],[116,71,68,64.0],[116,71,69,64.0],[116,71,70,64.0],[116,71,71,64.0],[116,71,72,64.0],[116,71,73,64.0],[116,71,74,64.0],[116,71,75,64.0],[116,71,76,64.0],[116,71,77,64.0],[116,71,78,64.0],[116,71,79,64.0],[116,72,64,64.0],[116,72,65,64.0],[116,72,66,64.0],[116,72,67,64.0],[116,72,68,64.0],[116,72,69,64.0],[116,72,70,64.0],[116,72,71,64.0],[116,72,72,64.0],[116,72,73,64.0],[116,72,74,64.0],[116,72,75,64.0],[116,72,76,64.0],[116,72,77,64.0],[116,72,78,64.0],[116,72,79,64.0],[116,73,64,64.0],[116,73,65,64.0],[116,73,66,64.0],[116,73,67,64.0],[116,73,68,64.0],[116,73,69,64.0],[116,73,70,64.0],[116,73,71,64.0],[116,73,72,64.0],[116,73,73,64.0],[116,73,74,64.0],[116,73,75,64.0],[116,73,76,64.0],[116,73,77,64.0],[116,73,78,64.0],[116,73,79,64.0],[116,74,64,64.0],[116,74,65,64.0],[116,74,66,64.0],[116,74,67,64.0],[116,74,68,64.0],[116,74,69,64.0],[116,74,70,64.0],[116,74,71,64.0],[116,74,72,64.0],[116,74,73,64.0],[116,74,74,64.0],[116,74,75,64.0],[116,74,76,64.0],[116,74,77,64.0],[116,74,78,64.0],[116,74,79,64.0],[116,75,64,64.0],[116,75,65,64.0],[116,75,66,64.0],[116,75,67,64.0],[116,75,68,64.0],[116,75,69,64.0],[116,75,70,64.0],[116,75,71,64.0],[116,75,72,64.0],[116,75,73,64.0],[116,75,74,64.0],[116,75,75,64.0],[116,75,76,64.0],[116,75,77,64.0],[116,75,78,64.0],[116,75,79,64.0],[116,76,64,64.0],[116,76,65,64.0],[116,76,66,64.0],[116,76,67,64.0],[116,76,68,64.0],[116,76,69,64.0],[116,76,70,64.0],[116,76,71,64.0],[116,76,72,64.0],[116,76,73,64.0],[116,76,74,64.0],[116,76,75,64.0],[116,76,76,64.0],[116,76,77,64.0],[116,76,78,64.0],[116,76,79,64.0],[116,77,64,64.0],[116,77,65,64.0],[116,77,66,64.0],[116,77,67,64.0],[116,77,68,64.0],[116,77,69,64.0],[116,77,70,64.0],[116,77,71,64.0],[116,77,72,64.0],[116,77,73,64.0],[116,77,74,64.0],[116,77,75,64.0],[116,77,76,64.0],[116,77,77,64.0],[116,77,78,64.0],[116,77,79,64.0],[116,78,64,64.0],[116,78,65,64.0],[116,78,66,64.0],[116,78,67,64.0],[116,78,68,64.0],[116,78,69,64.0],[116,78,70,64.0],[116,78,71,64.0],[116,78,72,64.0],[116,78,73,64.0],[116,78,74,64.0],[116,78,75,64.0],[116,78,76,64.0],[116,78,77,64.0],[116,78,78,64.0],[116,78,79,64.0],[116,79,64,64.0],[116,79,65,64.0],[116,79,66,64.0],[116,79,67,64.0],[116,79,68,64.0],[116,79,69,64.0],[116,79,70,64.0],[116,79,71,64.0],[116,79,72,64.0],[116,79,73,64.0],[116,79,74,64.0],[116,79,75,64.0],[116,79,76,64.0],[116,79,77,64.0],[116,79,78,64.0],[116,79,79,64.0],[116,80,64,64.0],[116,80,65,64.0],[116,80,66,64.0],[116,80,67,64.0],[116,80,68,64.0],[116,80,69,64.0],[116,80,70,64.0],[116,80,71,64.0],[116,80,72,64.0],[116,80,73,64.0],[116,80,74,64.0],[116,80,75,64.0],[116,80,76,64.0],[116,80,77,64.0],[116,80,78,64.0],[116,80,79,64.0],[116,81,64,64.0],[116,81,65,64.0],[116,81,66,64.0],[116,81,67,64.0],[116,81,68,64.0],[116,81,69,64.0],[116,81,70,64.0],[116,81,71,64.0],[116,81,72,64.0],[116,81,73,64.0],[116,81,74,64.0],[116,81,75,64.0],[116,81,76,64.0],[116,81,77,64.0],[116,81,78,64.0],[116,81,79,64.0],[116,82,64,64.0],[116,82,65,64.0],[116,82,66,64.0],[116,82,67,64.0],[116,82,68,64.0],[116,82,69,64.0],[116,82,70,64.0],[116,82,71,64.0],[116,82,72,64.0],[116,82,73,64.0],[116,82,74,64.0],[116,82,75,64.0],[116,82,76,64.0],[116,82,77,64.0],[116,82,78,64.0],[116,82,79,64.0],[116,83,64,64.0],[116,83,65,64.0],[116,83,66,64.0],[116,83,67,64.0],[116,83,68,64.0],[116,83,69,64.0],[116,83,70,64.0],[116,83,71,64.0],[116,83,72,64.0],[116,83,73,64.0],[116,83,74,64.0],[116,83,75,64.0],[116,83,76,64.0],[116,83,77,64.0],[116,83,78,64.0],[116,83,79,64.0],[116,84,64,64.0],[116,84,65,64.0],[116,84,66,64.0],[116,84,67,64.0],[116,84,68,64.0],[116,84,69,64.0],[116,84,70,64.0],[116,84,71,64.0],[116,84,72,64.0],[116,84,73,64.0],[116,84,74,64.0],[116,84,75,64.0],[116,84,76,64.0],[116,84,77,64.0],[116,84,78,64.0],[116,84,79,64.0],[116,85,64,64.0],[116,85,65,64.0],[116,85,66,64.0],[116,85,67,64.0],[116,85,68,64.0],[116,85,69,64.0],[116,85,70,64.0],[116,85,71,64.0],[116,85,72,64.0],[116,85,73,64.0],[116,85,74,64.0],[116,85,75,64.0],[116,85,76,64.0],[116,85,77,64.0],[116,85,78,64.0],[116,85,79,64.0],[116,86,64,64.0],[116,86,65,64.0],[116,86,66,64.0],[116,86,67,64.0],[116,86,68,64.0],[116,86,69,64.0],[116,86,70,64.0],[116,86,71,64.0],[116,86,72,64.0],[116,86,73,64.0],[116,86,74,64.0],[116,86,75,64.0],[116,86,76,64.0],[116,86,77,64.0],[116,86,78,64.0],[116,86,79,64.0],[116,87,64,64.0],[116,87,65,64.0],[116,87,66,64.0],[116,87,67,64.0],[116,87,68,64.0],[116,87,69,64.0],[116,87,70,64.0],[116,87,71,64.0],[116,87,72,64.0],[116,87,73,64.0],[116,87,74,64.0],[116,87,75,64.0],[116,87,76,64.0],[116,87,77,64.0],[116,87,78,64.0],[116,87,79,64.0],[116,88,64,64.0],[116,88,65,64.0],[116,88,66,64.0],[116,88,67,64.0],[116,88,68,64.0],[116,88,69,64.0],[116,88,70,64.0],[116,88,71,64.0],[116,88,72,64.0],[116,88,73,64.0],[116,88,74,64.0],[116,88,75,64.0],[116,88,76,64.0],[116,88,77,64.0],[116,88,78,64.0],[116,88,79,64.0],[116,89,64,64.0],[116,89,65,64.0],[116,89,66,64.0],[116,89,67,64.0],[116,89,68,64.0],[116,89,69,64.0],[116,89,70,64.0],[116,89,71,64.0],[116,89,72,64.0],[116,89,73,64.0],[116,89,74,64.0],[116,89,75,64.0],[116,89,76,64.0],[116,89,77,64.0],[116,89,78,64.0],[116,89,79,64.0],[116,90,64,64.0],[116,90,65,64.0],[116,90,66,64.0],[116,90,67,64.0],[116,90,68,64.0],[116,90,69,64.0],[116,90,70,64.0],[116,90,71,64.0],[116,90,72,64.0],[116,90,73,64.0],[116,90,74,64.0],[116,90,75,64.0],[116,90,76,64.0],[116,90,77,64.0],[116,90,78,64.0],[116,90,79,64.0],[116,91,64,64.0],[116,91,65,64.0],[116,91,66,64.0],[116,91,67,64.0],[116,91,68,64.0],[116,91,69,64.0],[116,91,70,64.0],[116,91,71,64.0],[116,91,72,64.0],[116,91,73,64.0],[116,91,74,64.0],[116,91,75,64.0],[116,91,76,64.0],[116,91,77,64.0],[116,91,78,64.0],[116,91,79,64.0],[116,92,64,64.0],[116,92,65,64.0],[116,92,66,64.0],[116,92,67,64.0],[116,92,68,64.0],[116,92,69,64.0],[116,92,70,64.0],[116,92,71,64.0],[116,92,72,64.0],[116,92,73,64.0],[116,92,74,64.0],[116,92,75,64.0],[116,92,76,64.0],[116,92,77,64.0],[116,92,78,64.0],[116,92,79,64.0],[116,93,64,64.0],[116,93,65,64.0],[116,93,66,64.0],[116,93,67,64.0],[116,93,68,64.0],[116,93,69,64.0],[116,93,70,64.0],[116,93,71,64.0],[116,93,72,64.0],[116,93,73,64.0],[116,93,74,64.0],[116,93,75,64.0],[116,93,76,64.0],[116,93,77,64.0],[116,93,78,64.0],[116,93,79,64.0],[116,94,64,64.0],[116,94,65,64.0],[116,94,66,64.0],[116,94,67,64.0],[116,94,68,64.0],[116,94,69,64.0],[116,94,70,64.0],[116,94,71,64.0],[116,94,72,64.0],[116,94,73,64.0],[116,94,74,64.0],[116,94,75,64.0],[116,94,76,64.0],[116,94,77,64.0],[116,94,78,64.0],[116,94,79,64.0],[116,95,64,64.0],[116,95,65,64.0],[116,95,66,64.0],[116,95,67,64.0],[116,95,68,64.0],[116,95,69,64.0],[116,95,70,64.0],[116,95,71,64.0],[116,95,72,64.0],[116,95,73,64.0],[116,95,74,64.0],[116,95,75,64.0],[116,95,76,64.0],[116,95,77,64.0],[116,95,78,64.0],[116,95,79,64.0],[116,96,64,64.0],[116,96,65,64.0],[116,96,66,64.0],[116,96,67,64.0],[116,96,68,64.0],[116,96,69,64.0],[116,96,70,64.0],[116,96,71,64.0],[116,96,72,64.0],[116,96,73,64.0],[116,96,74,64.0],[116,96,75,64.0],[116,96,76,64.0],[116,96,77,64.0],[116,96,78,64.0],[116,96,79,64.0],[116,97,64,64.0],[116,97,65,64.0],[116,97,66,64.0],[116,97,67,64.0],[116,97,68,64.0],[116,97,69,64.0],[116,97,70,64.0],[116,97,71,64.0],[116,97,72,64.0],[116,97,73,64.0],[116,97,74,64.0],[116,97,75,64.0],[116,97,76,64.0],[116,97,77,64.0],[116,97,78,64.0],[116,97,79,64.0],[116,98,64,64.0],[116,98,65,64.0],[116,98,66,64.0],[116,98,67,64.0],[116,98,68,64.0],[116,98,69,64.0],[116,98,70,64.0],[116,98,71,64.0],[116,98,72,64.0],[116,98,73,64.0],[116,98,74,64.0],[116,98,75,64.0],[116,98,76,64.0],[116,98,77,64.0],[116,98,78,64.0],[116,98,79,64.0],[116,99,64,64.0],[116,99,65,64.0],[116,99,66,64.0],[116,99,67,64.0],[116,99,68,64.0],[116,99,69,64.0],[116,99,70,64.0],[116,99,71,64.0],[116,99,72,64.0],[116,99,73,64.0],[116,99,74,64.0],[116,99,75,64.0],[116,99,76,64.0],[116,99,77,64.0],[116,99,78,64.0],[116,99,79,64.0],[116,100,64,64.0],[116,100,65,64.0],[116,100,66,64.0],[116,100,67,64.0],[116,100,68,64.0],[116,100,69,64.0],[116,100,70,64.0],[116,100,71,64.0],[116,100,72,64.0],[116,100,73,64.0],[116,100,74,64.0],[116,100,75,64.0],[116,100,76,64.0],[116,100,77,64.0],[116,100,78,64.0],[116,100,79,64.0],[116,101,64,64.0],[116,101,65,64.0],[116,101,66,64.0],[116,101,67,64.0],[116,101,68,64.0],[116,101,69,64.0],[116,101,70,64.0],[116,101,71,64.0],[116,101,72,64.0],[116,101,73,64.0],[116,101,74,64.0],[116,101,75,64.0],[116,101,76,64.0],[116,101,77,64.0],[116,101,78,64.0],[116,101,79,64.0],[116,102,64,64.0],[116,102,65,64.0],[116,102,66,64.0],[116,102,67,64.0],[116,102,68,64.0],[116,102,69,64.0],[116,102,70,64.0],[116,102,71,64.0],[116,102,72,64.0],[116,102,73,64.0],[116,102,74,64.0],[116,102,75,64.0],[116,102,76,64.0],[116,102,77,64.0],[116,102,78,64.0],[116,102,79,64.0],[116,103,64,64.0],[116,103,65,64.0],[116,103,66,64.0],[116,103,67,64.0],[116,103,68,64.0],[116,103,69,64.0],[116,103,70,64.0],[116,103,71,64.0],[116,103,72,64.0],[116,103,73,64.0],[116,103,74,64.0],[116,103,75,64.0],[116,103,76,64.0],[116,103,77,64.0],[116,103,78,64.0],[116,103,79,64.0],[116,104,64,64.0],[116,104,65,64.0],[116,104,66,64.0],[116,104,67,64.0],[116,104,68,64.0],[116,104,69,64.0],[116,104,70,64.0],[116,104,71,64.0],[116,104,72,64.0],[116,104,73,64.0],[116,104,74,64.0],[116,104,75,64.0],[116,104,76,64.0],[116,104,77,64.0],[116,104,78,64.0],[116,104,79,64.0],[116,105,64,64.0],[116,105,65,64.0],[116,105,66,64.0],[116,105,67,64.0],[116,105,68,64.0],[116,105,69,64.0],[116,105,70,64.0],[116,105,71,64.0],[116,105,72,64.0],[116,105,73,64.0],[116,105,74,64.0],[116,105,75,64.0],[116,105,76,64.0],[116,105,77,64.0],[116,105,78,64.0],[116,105,79,64.0],[116,106,64,64.0],[116,106,65,64.0],[116,106,66,64.0],[116,106,67,64.0],[116,106,68,64.0],[116,106,69,64.0],[116,106,70,64.0],[116,106,71,64.0],[116,106,72,64.0],[116,106,73,64.0],[116,106,74,64.0],[116,106,75,64.0],[116,106,76,64.0],[116,106,77,64.0],[116,106,78,64.0],[116,106,79,64.0],[116,107,64,64.0],[116,107,65,64.0],[116,107,66,64.0],[116,107,67,64.0],[116,107,68,64.0],[116,107,69,64.0],[116,107,70,64.0],[116,107,71,64.0],[116,107,72,64.0],[116,107,73,64.0],[116,107,74,64.0],[116,107,75,64.0],[116,107,76,64.0],[116,107,77,64.0],[116,107,78,64.0],[116,107,79,64.0],[116,108,64,64.0],[116,108,65,64.0],[116,108,66,64.0],[116,108,67,64.0],[116,108,68,64.0],[116,108,69,64.0],[116,108,70,64.0],[116,108,71,64.0],[116,108,72,64.0],[116,108,73,64.0],[116,108,74,64.0],[116,108,75,64.0],[116,108,76,64.0],[116,108,77,64.0],[116,108,78,64.0],[116,108,79,64.0],[116,109,64,64.0],[116,109,65,64.0],[116,109,66,64.0],[116,109,67,64.0],[116,109,68,64.0],[116,109,69,64.0],[116,109,70,64.0],[116,109,71,64.0],[116,109,72,64.0],[116,109,73,64.0],[116,109,74,64.0],[116,109,75,64.0],[116,109,76,64.0],[116,109,77,64.0],[116,109,78,64.0],[116,109,79,64.0],[116,110,64,64.0],[116,110,65,64.0],[116,110,66,64.0],[116,110,67,64.0],[116,110,68,64.0],[116,110,69,64.0],[116,110,70,64.0],[116,110,71,64.0],[116,110,72,64.0],[116,110,73,64.0],[116,110,74,64.0],[116,110,75,64.0],[116,110,76,64.0],[116,110,77,64.0],[116,110,78,64.0],[116,110,79,64.0],[116,111,64,64.0],[116,111,65,64.0],[116,111,66,64.0],[116,111,67,64.0],[116,111,68,64.0],[116,111,69,64.0],[116,111,70,64.0],[116,111,71,64.0],[116,111,72,64.0],[116,111,73,64.0],[116,111,74,64.0],[116,111,75,64.0],[116,111,76,64.0],[116,111,77,64.0],[116,111,78,64.0],[116,111,79,64.0],[116,112,64,64.0],[116,112,65,64.0],[116,112,66,64.0],[116,112,67,64.0],[116,112,68,64.0],[116,112,69,64.0],[116,112,70,64.0],[116,112,71,64.0],[116,112,72,64.0],[116,112,73,64.0],[116,112,74,64.0],[116,112,75,64.0],[116,112,76,64.0],[116,112,77,64.0],[116,112,78,64.0],[116,112,79,64.0],[116,113,64,64.0],[116,113,65,64.0],[116,113,66,64.0],[116,113,67,64.0],[116,113,68,64.0],[116,113,69,64.0],[116,113,70,64.0],[116,113,71,64.0],[116,113,72,64.0],[116,113,73,64.0],[116,113,74,64.0],[116,113,75,64.0],[116,113,76,64.0],[116,113,77,64.0],[116,113,78,64.0],[116,113,79,64.0],[116,114,64,64.0],[116,114,65,64.0],[116,114,66,64.0],[116,114,67,64.0],[116,114,68,64.0],[116,114,69,64.0],[116,114,70,64.0],[116,114,71,64.0],[116,114,72,64.0],[116,114,73,64.0],[116,114,74,64.0],[116,114,75,64.0],[116,114,76,64.0],[116,114,77,64.0],[116,114,78,64.0],[116,114,79,64.0],[116,115,64,64.0],[116,115,65,64.0],[116,115,66,64.0],[116,115,67,64.0],[116,115,68,64.0],[116,115,69,64.0],[116,115,70,64.0],[116,115,71,64.0],[116,115,72,64.0],[116,115,73,64.0],[116,115,74,64.0],[116,115,75,64.0],[116,115,76,64.0],[116,115,77,64.0],[116,115,78,64.0],[116,115,79,64.0],[116,116,64,64.0],[116,116,65,64.0],[116,116,66,64.0],[116,116,67,64.0],[116,116,68,64.0],[116,116,69,64.0],[116,116,70,64.0],[116,116,71,64.0],[116,116,72,64.0],[116,116,73,64.0],[116,116,74,64.0],[116,116,75,64.0],[116,116,76,64.0],[116,116,77,64.0],[116,116,78,64.0],[116,116,79,64.0],[116,117,64,64.0],[116,117,65,64.0],[116,117,66,64.0],[116,117,67,64.0],[116,117,68,64.0],[116,117,69,64.0],[116,117,70,64.0],[116,117,71,64.0],[116,117,72,64.0],[116,117,73,64.0],[116,117,74,64.0],[116,117,75,64.0],[116,117,76,64.0],[116,117,77,64.0],[116,117,78,64.0],[116,117,79,64.0],[116,118,64,64.0],[116,118,65,64.0],[116,118,66,64.0],[116,118,67,64.0],[116,118,68,64.0],[116,118,69,64.0],[116,118,70,64.0],[116,118,71,64.0],[116,118,72,64.0],[116,118,73,64.0],[116,118,74,64.0],[116,118,75,64.0],[116,118,76,64.0],[116,118,77,64.0],[116,118,78,64.0],[116,118,79,64.0],[116,119,64,64.0],[116,119,65,64.0],[116,119,66,64.0],[116,119,67,64.0],[116,119,68,64.0],[116,119,69,64.0],[116,119,70,64.0],[116,119,71,64.0],[116,119,72,64.0],[116,119,73,64.0],[116,119,74,64.0],[116,119,75,64.0],[116,119,76,64.0],[116,119,77,64.0],[116,119,78,64.0],[116,119,79,64.0],[116,120,64,64.0],[116,120,65,64.0],[116,120,66,64.0],[116,120,67,64.0],[116,120,68,64.0],[116,120,69,64.0],[116,120,70,64.0],[116,120,71,64.0],[116,120,72,64.0],[116,120,73,64.0],[116,120,74,64.0],[116,120,75,64.0],[116,120,76,64.0],[116,120,77,64.0],[116,120,78,64.0],[116,120,79,64.0],[116,121,64,64.0],[116,121,65,64.0],[116,121,66,64.0],[116,121,67,64.0],[116,121,68,64.0],[116,121,69,64.0],[116,121,70,64.0],[116,121,71,64.0],[116,121,72,64.0],[116,121,73,64.0],[116,121,74,64.0],[116,121,75,64.0],[116,121,76,64.0],[116,121,77,64.0],[116,121,78,64.0],[116,121,79,64.0],[116,122,64,64.0],[116,122,65,64.0],[116,122,66,64.0],[116,122,67,64.0],[116,122,68,64.0],[116,122,69,64.0],[116,122,70,64.0],[116,122,71,64.0],[116,122,72,64.0],[116,122,73,64.0],[116,122,74,64.0],[116,122,75,64.0],[116,122,76,64.0],[116,122,77,64.0],[116,122,78,64.0],[116,122,79,64.0],[116,123,64,64.0],[116,123,65,64.0],[116,123,66,64.0],[116,123,67,64.0],[116,123,68,64.0],[116,123,69,64.0],[116,123,70,64.0],[116,123,71,64.0],[116,123,72,64.0],[116,123,73,64.0],[116,123,74,64.0],[116,123,75,64.0],[116,123,76,64.0],[116,123,77,64.0],[116,123,78,64.0],[116,123,79,64.0],[116,124,64,64.0],[116,124,65,64.0],[116,124,66,64.0],[116,124,67,64.0],[116,124,68,64.0],[116,124,69,64.0],[116,124,70,64.0],[116,124,71,64.0],[116,124,72,64.0],[116,124,73,64.0],[116,124,74,64.0],[116,124,75,64.0],[116,124,76,64.0],[116,124,77,64.0],[116,124,78,64.0],[116,124,79,64.0],[116,125,64,64.0],[116,125,65,64.0],[116,125,66,64.0],[116,125,67,64.0],[116,125,68,64.0],[116,125,69,64.0],[116,125,70,64.0],[116,125,71,64.0],[116,125,72,64.0],[116,125,73,64.0],[116,125,74,64.0],[116,125,75,64.0],[116,125,76,64.0],[116,125,77,64.0],[116,125,78,64.0],[116,125,79,64.0],[116,126,64,64.0],[116,126,65,64.0],[116,126,66,64.0],[116,126,67,64.0],[116,126,68,64.0],[116,126,69,64.0],[116,126,70,64.0],[116,126,71,64.0],[116,126,72,64.0],[116,126,73,64.0],[116,126,74,64.0],[116,126,75,64.0],[116,126,76,64.0],[116,126,77,64.0],[116,126,78,64.0],[116,126,79,64.0],[116,127,64,64.0],[116,127,65,64.0],[116,127,66,64.0],[116,127,67,64.0],[116,127,68,64.0],[116,127,69,64.0],[116,127,70,64.0],[116,127,71,64.0],[116,127,72,64.0],[116,127,73,64.0],[116,127,74,64.0],[116,127,75,64.0],[116,127,76,64.0],[116,127,77,64.0],[116,127,78,64.0],[116,127,79,64.0],[116,128,64,64.0],[116,128,65,64.0],[116,128,66,64.0],[116,128,67,64.0],[116,128,68,64.0],[116,128,69,64.0],[116,128,70,64.0],[116,128,71,64.0],[116,128,72,64.0],[116,128,73,64.0],[116,128,74,64.0],[116,128,75,64.0],[116,128,76,64.0],[116,128,77,64.0],[116,128,78,64.0],[116,128,79,64.0],[116,129,64,64.0],[116,129,65,64.0],[116,129,66,64.0],[116,129,67,64.0],[116,129,68,64.0],[116,129,69,64.0],[116,129,70,64.0],[116,129,71,64.0],[116,129,72,64.0],[116,129,73,64.0],[116,129,74,64.0],[116,129,75,64.0],[116,129,76,64.0],[116,129,77,64.0],[116,129,78,64.0],[116,129,79,64.0],[116,130,64,64.0],[116,130,65,64.0],[116,130,66,64.0],[116,130,67,64.0],[116,130,68,64.0],[116,130,69,64.0],[116,130,70,64.0],[116,130,71,64.0],[116,130,72,64.0],[116,130,73,64.0],[116,130,74,64.0],[116,130,75,64.0],[116,130,76,64.0],[116,130,77,64.0],[116,130,78,64.0],[116,130,79,64.0],[116,131,64,64.0],[116,131,65,64.0],[116,131,66,64.0],[116,131,67,64.0],[116,131,68,64.0],[116,131,69,64.0],[116,131,70,64.0],[116,131,71,64.0],[116,131,72,64.0],[116,131,73,64.0],[116,131,74,64.0],[116,131,75,64.0],[116,131,76,64.0],[116,131,77,64.0],[116,131,78,64.0],[116,131,79,64.0],[116,132,64,64.0],[116,132,65,64.0],[116,132,66,64.0],[116,132,67,64.0],[116,132,68,64.0],[116,132,69,64.0],[116,132,70,64.0],[116,132,71,64.0],[116,132,72,64.0],[116,132,73,64.0],[116,132,74,64.0],[116,132,75,64.0],[116,132,76,64.0],[116,132,77,64.0],[116,132,78,64.0],[116,132,79,64.0],[116,133,64,64.0],[116,133,65,64.0],[116,133,66,64.0],[116,133,67,64.0],[116,133,68,64.0],[116,133,69,64.0],[116,133,70,64.0],[116,133,71,64.0],[116,133,72,64.0],[116,133,73,64.0],[116,133,74,64.0],[116,133,75,64.0],[116,133,76,64.0],[116,133,77,64.0],[116,133,78,64.0],[116,133,79,64.0],[116,134,64,64.0],[116,134,65,64.0],[116,134,66,64.0],[116,134,67,64.0],[116,134,68,64.0],[116,134,69,64.0],[116,134,70,64.0],[116,134,71,64.0],[116,134,72,64.0],[116,134,73,64.0],[116,134,74,64.0],[116,134,75,64.0],[116,134,76,64.0],[116,134,77,64.0],[116,134,78,64.0],[116,134,79,64.0],[116,135,64,64.0],[116,135,65,64.0],[116,135,66,64.0],[116,135,67,64.0],[116,135,68,64.0],[116,135,69,64.0],[116,135,70,64.0],[116,135,71,64.0],[116,135,72,64.0],[116,135,73,64.0],[116,135,74,64.0],[116,135,75,64.0],[116,135,76,64.0],[116,135,77,64.0],[116,135,78,64.0],[116,135,79,64.0],[116,136,64,64.0],[116,136,65,64.0],[116,136,66,64.0],[116,136,67,64.0],[116,136,68,64.0],[116,136,69,64.0],[116,136,70,64.0],[116,136,71,64.0],[116,136,72,64.0],[116,136,73,64.0],[116,136,74,64.0],[116,136,75,64.0],[116,136,76,64.0],[116,136,77,64.0],[116,136,78,64.0],[116,136,79,64.0],[116,137,64,64.0],[116,137,65,64.0],[116,137,66,64.0],[116,137,67,64.0],[116,137,68,64.0],[116,137,69,64.0],[116,137,70,64.0],[116,137,71,64.0],[116,137,72,64.0],[116,137,73,64.0],[116,137,74,64.0],[116,137,75,64.0],[116,137,76,64.0],[116,137,77,64.0],[116,137,78,64.0],[116,137,79,64.0],[116,138,64,64.0],[116,138,65,64.0],[116,138,66,64.0],[116,138,67,64.0],[116,138,68,64.0],[116,138,69,64.0],[116,138,70,64.0],[116,138,71,64.0],[116,138,72,64.0],[116,138,73,64.0],[116,138,74,64.0],[116,138,75,64.0],[116,138,76,64.0],[116,138,77,64.0],[116,138,78,64.0],[116,138,79,64.0],[116,139,64,64.0],[116,139,65,64.0],[116,139,66,64.0],[116,139,67,64.0],[116,139,68,64.0],[116,139,69,64.0],[116,139,70,64.0],[116,139,71,64.0],[116,139,72,64.0],[116,139,73,64.0],[116,139,74,64.0],[116,139,75,64.0],[116,139,76,64.0],[116,139,77,64.0],[116,139,78,64.0],[116,139,79,64.0],[116,140,64,64.0],[116,140,65,64.0],[116,140,66,64.0],[116,140,67,64.0],[116,140,68,64.0],[116,140,69,64.0],[116,140,70,64.0],[116,140,71,64.0],[116,140,72,64.0],[116,140,73,64.0],[116,140,74,64.0],[116,140,75,64.0],[116,140,76,64.0],[116,140,77,64.0],[116,140,78,64.0],[116,140,79,64.0],[116,141,64,64.0],[116,141,65,64.0],[116,141,66,64.0],[116,141,67,64.0],[116,141,68,64.0],[116,141,69,64.0],[116,141,70,64.0],[116,141,71,64.0],[116,141,72,64.0],[116,141,73,64.0],[116,141,74,64.0],[116,141,75,64.0],[116,141,76,64.0],[116,141,77,64.0],[116,141,78,64.0],[116,141,79,64.0],[116,142,64,64.0],[116,142,65,64.0],[116,142,66,64.0],[116,142,67,64.0],[116,142,68,64.0],[116,142,69,64.0],[116,142,70,64.0],[116,142,71,64.0],[116,142,72,64.0],[116,142,73,64.0],[116,142,74,64.0],[116,142,75,64.0],[116,142,76,64.0],[116,142,77,64.0],[116,142,78,64.0],[116,142,79,64.0],[116,143,64,64.0],[116,143,65,64.0],[116,143,66,64.0],[116,143,67,64.0],[116,143,68,64.0],[116,143,69,64.0],[116,143,70,64.0],[116,143,71,64.0],[116,143,72,64.0],[116,143,73,64.0],[116,143,74,64.0],[116,143,75,64.0],[116,143,76,64.0],[116,143,77,64.0],[116,143,78,64.0],[116,143,79,64.0],[116,144,64,64.0],[116,144,65,64.0],[116,144,66,64.0],[116,144,67,64.0],[116,144,68,64.0],[116,144,69,64.0],[116,144,70,64.0],[116,144,71,64.0],[116,144,72,64.0],[116,144,73,64.0],[116,144,74,64.0],[116,144,75,64.0],[116,144,76,64.0],[116,144,77,64.0],[116,144,78,64.0],[116,144,79,64.0],[116,145,64,64.0],[116,145,65,64.0],[116,145,66,64.0],[116,145,67,64.0],[116,145,68,64.0],[116,145,69,64.0],[116,145,70,64.0],[116,145,71,64.0],[116,145,72,64.0],[116,145,73,64.0],[116,145,74,64.0],[116,145,75,64.0],[116,145,76,64.0],[116,145,77,64.0],[116,145,78,64.0],[116,145,79,64.0],[116,146,64,64.0],[116,146,65,64.0],[116,146,66,64.0],[116,146,67,64.0],[116,146,68,64.0],[116,146,69,64.0],[116,146,70,64.0],[116,146,71,64.0],[116,146,72,64.0],[116,146,73,64.0],[116,146,74,64.0],[116,146,75,64.0],[116,146,76,64.0],[116,146,77,64.0],[116,146,78,64.0],[116,146,79,64.0],[116,147,64,64.0],[116,147,65,64.0],[116,147,66,64.0],[116,147,67,64.0],[116,147,68,64.0],[116,147,69,64.0],[116,147,70,64.0],[116,147,71,64.0],[116,147,72,64.0],[116,147,73,64.0],[116,147,74,64.0],[116,147,75,64.0],[116,147,76,64.0],[116,147,77,64.0],[116,147,78,64.0],[116,147,79,64.0],[116,148,64,64.0],[116,148,65,64.0],[116,148,66,64.0],[116,148,67,64.0],[116,148,68,64.0],[116,148,69,64.0],[116,148,70,64.0],[116,148,71,64.0],[116,148,72,64.0],[116,148,73,64.0],[116,148,74,64.0],[116,148,75,64.0],[116,148,76,64.0],[116,148,77,64.0],[116,148,78,64.0],[116,148,79,64.0],[116,149,64,64.0],[116,149,65,64.0],[116,149,66,64.0],[116,149,67,64.0],[116,149,68,64.0],[116,149,69,64.0],[116,149,70,64.0],[116,149,71,64.0],[116,149,72,64.0],[116,149,73,64.0],[116,149,74,64.0],[116,149,75,64.0],[116,149,76,64.0],[116,149,77,64.0],[116,149,78,64.0],[116,149,79,64.0],[116,150,64,64.0],[116,150,65,64.0],[116,150,66,64.0],[116,150,67,64.0],[116,150,68,64.0],[116,150,69,64.0],[116,150,70,64.0],[116,150,71,64.0],[116,150,72,64.0],[116,150,73,64.0],[116,150,74,64.0],[116,150,75,64.0],[116,150,76,64.0],[116,150,77,64.0],[116,150,78,64.0],[116,150,79,64.0],[116,151,64,64.0],[116,151,65,64.0],[116,151,66,64.0],[116,151,67,64.0],[116,151,68,64.0],[116,151,69,64.0],[116,151,70,64.0],[116,151,71,64.0],[116,151,72,64.0],[116,151,73,64.0],[116,151,74,64.0],[116,151,75,64.0],[116,151,76,64.0],[116,151,77,64.0],[116,151,78,64.0],[116,151,79,64.0],[116,152,64,64.0],[116,152,65,64.0],[116,152,66,64.0],[116,152,67,64.0],[116,152,68,64.0],[116,152,69,64.0],[116,152,70,64.0],[116,152,71,64.0],[116,152,72,64.0],[116,152,73,64.0],[116,152,74,64.0],[116,152,75,64.0],[116,152,76,64.0],[116,152,77,64.0],[116,152,78,64.0],[116,152,79,64.0],[116,153,64,64.0],[116,153,65,64.0],[116,153,66,64.0],[116,153,67,64.0],[116,153,68,64.0],[116,153,69,64.0],[116,153,70,64.0],[116,153,71,64.0],[116,153,72,64.0],[116,153,73,64.0],[116,153,74,64.0],[116,153,75,64.0],[116,153,76,64.0],[116,153,77,64.0],[116,153,78,64.0],[116,153,79,64.0],[116,154,64,64.0],[116,154,65,64.0],[116,154,66,64.0],[116,154,67,64.0],[116,154,68,64.0],[116,154,69,64.0],[116,154,70,64.0],[116,154,71,64.0],[116,154,72,64.0],[116,154,73,64.0],[116,154,74,64.0],[116,154,75,64.0],[116,154,76,64.0],[116,154,77,64.0],[116,154,78,64.0],[116,154,79,64.0],[116,155,64,64.0],[116,155,65,64.0],[116,155,66,64.0],[116,155,67,64.0],[116,155,68,64.0],[116,155,69,64.0],[116,155,70,64.0],[116,155,71,64.0],[116,155,72,64.0],[116,155,73,64.0],[116,155,74,64.0],[116,155,75,64.0],[116,155,76,64.0],[116,155,77,64.0],[116,155,78,64.0],[116,155,79,64.0],[116,156,64,64.0],[116,156,65,64.0],[116,156,66,64.0],[116,156,67,64.0],[116,156,68,64.0],[116,156,69,64.0],[116,156,70,64.0],[116,156,71,64.0],[116,156,72,64.0],[116,156,73,64.0],[116,156,74,64.0],[116,156,75,64.0],[116,156,76,64.0],[116,156,77,64.0],[116,156,78,64.0],[116,156,79,64.0],[116,157,64,64.0],[116,157,65,64.0],[116,157,66,64.0],[116,157,67,64.0],[116,157,68,64.0],[116,157,69,64.0],[116,157,70,64.0],[116,157,71,64.0],[116,157,72,64.0],[116,157,73,64.0],[116,157,74,64.0],[116,157,75,64.0],[116,157,76,64.0],[116,157,77,64.0],[116,157,78,64.0],[116,157,79,64.0],[116,158,64,64.0],[116,158,65,64.0],[116,158,66,64.0],[116,158,67,64.0],[116,158,68,64.0],[116,158,69,64.0],[116,158,70,64.0],[116,158,71,64.0],[116,158,72,64.0],[116,158,73,64.0],[116,158,74,64.0],[116,158,75,64.0],[116,158,76,64.0],[116,158,77,64.0],[116,158,78,64.0],[116,158,79,64.0],[116,159,64,64.0],[116,159,65,64.0],[116,159,66,64.0],[116,159,67,64.0],[116,159,68,64.0],[116,159,69,64.0],[116,159,70,64.0],[116,159,71,64.0],[116,159,72,64.0],[116,159,73,64.0],[116,159,74,64.0],[116,159,75,64.0],[116,159,76,64.0],[116,159,77,64.0],[116,159,78,64.0],[116,159,79,64.0],[116,160,64,64.0],[116,160,65,64.0],[116,160,66,64.0],[116,160,67,64.0],[116,160,68,64.0],[116,160,69,64.0],[116,160,70,64.0],[116,160,71,64.0],[116,160,72,64.0],[116,160,73,64.0],[116,160,74,64.0],[116,160,75,64.0],[116,160,76,64.0],[116,160,77,64.0],[116,160,78,64.0],[116,160,79,64.0],[116,161,64,64.0],[116,161,65,64.0],[116,161,66,64.0],[116,161,67,64.0],[116,161,68,64.0],[116,161,69,64.0],[116,161,70,64.0],[116,161,71,64.0],[116,161,72,64.0],[116,161,73,64.0],[116,161,74,64.0],[116,161,75,64.0],[116,161,76,64.0],[116,161,77,64.0],[116,161,78,0.3771754555370038],[116,161,79,0.4319566018862816],[116,162,64,64.0],[116,162,65,64.0],[116,162,66,64.0],[116,162,67,64.0],[116,162,68,64.0],[116,162,69,64.0],[116,162,70,64.0],[116,162,71,64.0],[116,162,72,64.0],[116,162,73,64.0],[116,162,74,64.0],[116,162,75,64.0],[116,162,76,64.0],[116,162,77,0.31929617365089813],[116,162,78,0.37801322205526217],[116,162,79,0.43331885607677517],[116,163,64,64.0],[116,163,65,64.0],[116,163,66,64.0],[116,163,67,64.0],[116,163,68,64.0],[116,163,69,64.0],[116,163,70,64.0],[116,163,71,64.0],[116,163,72,64.0],[116,163,73,64.0],[116,163,74,64.0],[116,163,75,64.0],[116,163,76,0.2587460566567992],[116,163,77,0.32053342499885873],[116,163,78,0.37962842744551023],[116,163,79,0.4352598685197294],[116,164,64,64.0],[116,164,65,64.0],[116,164,66,64.0],[116,164,67,64.0],[116,164,68,64.0],[116,164,69,64.0],[116,164,70,64.0],[116,164,71,64.0],[116,164,72,64.0],[116,164,73,64.0],[116,164,74,64.0],[116,164,75,0.24003079404600158],[116,164,76,0.2608160664060166],[116,164,77,0.32283148135396417],[116,164,78,0.38211012931444577],[116,164,79,0.43787392919021384],[116,165,64,64.0],[116,165,65,64.0],[116,165,66,64.0],[116,165,67,64.0],[116,165,68,64.0],[116,165,69,64.0],[116,165,70,64.0],[116,165,71,64.0],[116,165,72,64.0],[116,165,73,0.2588795632081349],[116,165,74,0.2358727188116555],[116,165,75,0.21239804628692555],[116,165,76,0.2642032773154786],[116,165,77,0.3262596942118109],[116,165,78,0.3855347764385874],[116,165,79,0.4412448923223892],[116,166,64,64.0],[116,166,65,64.0],[116,166,66,64.0],[116,166,67,64.0],[116,166,68,64.0],[116,166,69,64.0],[116,166,70,64.0],[116,166,71,64.0],[116,166,72,0.2442926470159329],[116,166,73,0.22495080003365167],[116,166,74,0.2055023024161389],[116,166,75,0.2051036963521072],[116,166,76,0.2689513696693636],[116,166,77,0.3308705921000751],[116,166,78,0.38996406803418876],[116,166,79,0.4454439115298123],[116,167,64,64.0],[116,167,65,64.0],[116,167,66,64.0],[116,167,67,64.0],[116,167,68,64.0],[116,167,69,64.0],[116,167,70,64.0],[116,167,71,0.22381275096707948],[116,167,72,0.20777805114525172],[116,167,73,0.1920437275231462],[116,167,74,0.1762240317859899],[116,167,75,0.21150015067440675],[116,167,76,0.2750831745628123],[116,167,77,0.33669780295578744],[116,167,78,0.39544273365430826],[116,167,79,0.45052706906283757],[116,168,64,64.0],[116,168,65,64.0],[116,168,66,64.0],[116,168,67,64.0],[116,168,68,64.0],[116,168,69,64.0],[116,168,70,0.19733046250872485],[116,168,71,0.18501965708661572],[116,168,72,0.1726056105427085],[116,168,73,0.16053124968137866],[116,168,74,0.15526217017262567],[116,168,75,0.2194347431985934],[116,168,76,0.28259873832924653],[116,168,77,0.34375395868651015],[116,168,78,0.40199626882534656],[116,168,79,0.45653293398772865],[116,169,64,64.0],[116,169,65,64.0],[116,169,66,64.0],[116,169,67,64.0],[116,169,68,64.0],[116,169,69,0.1644698697817031],[116,169,70,0.1566168833503686],[116,169,71,0.14791043906692222],[116,169,72,0.13915257849879967],[116,169,73,0.13076433329391227],[116,169,74,0.16521813490438367],[116,169,75,0.22886881943602455],[116,169,76,0.2914732779412636],[116,169,77,0.3520284659535094],[116,169,78,0.4096285115993203],[116,169,79,0.46347993559098455],[116,170,64,64.0],[116,170,65,64.0],[116,170,66,64.0],[116,170,67,0.12608680437807598],[116,170,68,0.12511572561422415],[116,170,69,0.12223761102265311],[116,170,70,0.11794180986671901],[116,170,71,0.11285819902562445],[116,170,72,0.10776580547716352],[116,170,73,0.11326269874198261],[116,170,74,0.17673097617154285],[116,170,75,0.23973538889449372],[116,170,76,0.3016551014561648],[116,170,77,0.36148521647576937],[116,170,78,0.41831913255556546],[116,170,79,0.4713636237847514],[116,171,64,64.0],[116,171,65,64.0],[116,171,66,0.15162878210890457],[116,171,67,0.09234287522368922],[116,171,68,0.08180350883178288],[116,171,69,0.08240143686162539],[116,171,70,0.0816639127274885],[116,171,71,0.08019576416325867],[116,171,72,0.07875239277828337],[116,171,73,0.1269389030313956],[116,171,74,0.1896873373684992],[116,171,75,0.2519372611676741],[116,171,76,0.3130635197779425],[116,171,77,0.372060262889973],[116,171,78,0.4280210640524727],[116,171,79,0.4801538420816678],[116,172,64,64.0],[116,172,65,0.18792676795047536],[116,172,66,0.1312462708134003],[116,172,67,0.07264810350060662],[116,172,68,0.041235119203575504],[116,172,69,0.045293330088120795],[116,172,70,0.04809020525111962],[116,172,71,0.0502052090517951],[116,172,72,0.0796843561475854],[116,172,73,0.1420023372594445],[116,172,74,0.20394079011232363],[116,172,75,0.26534517256176116],[116,172,76,0.32558672416552653],[116,172,77,0.3836594348542279],[116,172,78,0.43865784367264765],[116,172,79,0.48979178833569126],[116,173,64,0.21888500703112174],[116,173,65,0.16519005060299474],[116,173,66,0.10923598566438306],[116,173,67,0.05137662487252706],[116,173,68,0.003701542343722955],[116,173,69,0.011180650265992728],[116,173,70,0.01746437458986909],[116,173,71,0.03512072457065994],[116,173,72,0.09678811262223629],[116,173,73,0.15825426154141303],[116,173,74,0.21931021116337956],[116,173,75,0.27979590307975355],[116,173,76,0.33907962930948915],[116,173,77,0.39615589521947714],[116,173,78,0.45012087168716647],[116,173,79,0.5001869630762921],[116,174,64,0.19410195517157158],[116,174,65,0.14114858734084507],[116,174,66,0.08595190124136844],[116,174,67,0.02886676232309232],[116,174,68,-0.02972755716346949],[116,174,69,-0.019746780470168132],[116,174,70,-0.006632538154462894],[116,174,71,0.054108253477932494],[116,174,72,0.11489814947981769],[116,174,73,0.17545911477962362],[116,174,74,0.235578173626166],[116,174,75,0.2950903837632509],[116,174,76,0.35336168197709683],[116,174,77,0.4093876362684976],[116,174,78,0.46226658253883113],[116,174,79,0.5112140054359249],[116,175,64,0.1684130569364618],[116,175,65,0.11621268567279508],[116,175,66,0.06178884074554579],[116,175,67,0.005497270025893966],[116,175,68,-0.052281986379523276],[116,175,69,-0.04551588168482609],[116,175,70,0.013987727309588513],[116,175,71,0.07384388693274987],[116,175,72,0.13372258684657265],[116,175,73,0.19334321178925945],[116,175,74,0.25248935243014003],[116,175,75,0.31099179439154484],[116,175,76,0.3682146352254922],[116,175,77,0.42315491602227473],[116,175,78,0.47491353034423445],[116,175,79,0.5227094166706017],[116,176,64,0.14228422691318945],[116,176,65,0.09083322836510131],[116,176,66,0.037181998120004695],[116,176,67,-0.018312942233896283],[116,176,68,-0.06776829717155439],[116,176,69,-0.02361140324503716],[116,176,70,0.03502061720204527],[116,176,71,0.09397829981349409],[116,176,72,0.15293015967292162],[116,176,73,0.21159347761629657],[116,176,74,0.26974894409094347],[116,176,75,0.3272236515383955],[116,176,76,0.3833802881833836],[116,176,77,0.4372176346141139],[116,176,78,0.4878393884149645],[116,176,79,0.534468171273871],[116,177,64,0.11606063980406708],[116,177,65,0.06534394810219436],[116,177,66,0.012453431604413326],[116,177,67,-0.021942784230218913],[116,177,68,-0.04372175729168657],[116,177,69,-0.0015688924245662456],[116,177,70,0.056191845513483135],[116,177,71,0.11424904047026535],[116,177,72,0.17227010205862964],[116,177,73,0.22997064938795447],[116,177,74,0.2871289909397225],[116,177,75,0.34356910843062344],[116,177,76,0.3986526651732344],[116,177,77,0.4513803480804478],[116,177,78,0.5008588050396633],[116,177,79,0.5463144734984393],[116,178,64,0.0893622194848945],[116,178,65,0.05566452494888796],[116,178,66,0.028090496185398536],[116,178,67,0.0019908526728201342],[116,178,68,-0.022682456884820082],[116,178,69,0.020946088751183325],[116,178,70,0.07782154577950068],[116,178,71,0.13496038988814438],[116,178,72,0.19202942831132297],[116,178,73,0.24874322518486397],[116,178,74,0.30487842064876847],[116,178,75,0.3602566906724623],[116,178,76,0.4142392397982283],[116,178,77,0.4658289610666487],[116,178,78,0.5141357316642825],[116,178,79,0.5583900707203456],[116,179,64,0.11369119094291467],[116,179,65,0.08219633723691049],[116,179,66,0.0520131077669828],[116,179,67,0.023210380010254925],[116,179,68,-0.004238101542817105],[116,179,69,0.04434287371244926],[116,179,70,0.10030168418853432],[116,179,71,0.15648535885785314],[116,179,72,0.21256076883762126],[116,179,73,0.26824222342952164],[116,179,74,0.32330563117810224],[116,179,75,0.3775714160837174],[116,179,76,0.4304010997551564],[116,179,77,0.4808002435949038],[116,179,78,0.5278823935311573],[116,179,79,0.5708825751949101],[116,180,64,0.14000707262973247],[116,180,65,0.106123762287144],[116,180,66,0.07344442032476046],[116,180,67,0.042057823832768126],[116,180,68,0.01443564191887678],[116,180,69,0.06888957986831161],[116,180,70,0.12388884372794991],[116,180,71,0.17906787428031695],[116,180,72,0.23409440067176981],[116,180,73,0.2886834295299283],[116,180,74,0.3426112507267183],[116,180,75,0.3956982871036976],[116,180,76,0.44730731133048407],[116,180,77,0.4964471274536963],[116,180,78,0.5422354979893037],[116,180,79,0.5839124855165755],[116,181,64,0.16324203613735477],[116,181,65,0.12709045573076802],[116,181,66,0.09204349515654482],[116,181,67,0.05820846909130463],[116,181,68,0.04123038706206257],[116,181,69,0.09472945211615817],[116,181,70,0.14871988895306917],[116,181,71,0.20283771893580024],[116,181,72,0.25675241844765617],[116,181,73,0.31018075708291826],[116,181,74,0.36290065130339905],[116,181,75,0.4147339222196068],[116,181,76,0.4650456385098517],[116,181,77,0.512848488145885],[116,181,78,0.5572650601158287],[116,181,79,0.5975410426774],[116,182,64,0.18298937106355118],[116,182,65,0.14470301132635116],[116,182,66,0.10743135273721374],[116,182,67,0.07129874145217796],[116,182,68,0.06939514969694287],[116,182,69,0.12189655118561138],[116,182,70,0.17482700105820786],[116,182,71,0.22782486936374888],[116,182,72,0.2805623334841611],[116,182,73,0.3327590692128117],[116,182,74,0.3841959562749159],[116,182,75,0.43469771681314867],[116,182,76,0.48363282830542814],[116,182,77,0.5300185309590921],[116,182,78,0.5729828712041363],[116,182,79,0.6117777683040467],[116,183,64,0.19899345168236998],[116,183,65,0.15871567471740555],[116,183,66,0.11937289404544069],[116,183,67,0.0811048840537035],[116,183,68,0.09886774112191411],[116,183,69,0.15033070464112164],[116,183,70,0.20215200442024994],[116,183,71,0.25397315655982067],[116,183,72,0.30547002939202306],[116,183,73,0.35636639229503286],[116,183,74,0.40644747809489273],[116,183,75,0.45554247366562706],[116,183,76,0.5030244066322085],[116,183,77,0.5479157296041275],[116,183,78,0.5893505626731299],[116,183,79,0.6265876417001246],[116,184,64,0.2111555578467451],[116,184,65,0.16903605690839757],[116,184,66,0.12778248272696635],[116,184,67,0.08754838733258986],[116,184,68,0.12950298989515596],[116,184,69,0.17989172054284558],[116,184,70,0.23055998461439203],[116,184,71,0.28115324948975173],[116,184,72,0.33135207420187723],[116,184,73,0.3808855220643706],[116,184,74,0.4295445862130285],[116,184,75,0.47716450312126046],[116,184,76,0.5231239847329933],[116,184,77,0.5664513174212056],[116,184,78,0.6062872653971925],[116,184,79,0.6418979156936793],[116,185,64,0.2195402050691712],[116,185,65,0.17573137238554942],[116,185,66,0.13273006678817995],[116,185,67,0.11236638770217836],[116,185,68,0.1610867471752378],[116,185,69,0.2103728637664966],[116,185,70,0.25985219790272207],[116,185,71,0.30917496142069734],[116,185,72,0.35802738901408143],[116,185,73,0.4061450221084659],[116,185,74,0.45332600516522903],[116,185,75,0.4994131929092259],[116,185,76,0.5437920761525302],[116,185,77,0.5854973311544069],[116,185,78,0.6236768644573535],[116,185,79,0.6576045712902113],[116,186,64,0.22438198377949004],[116,186,65,0.17903520188161998],[116,186,66,0.13444783981935685],[116,186,67,0.14565314099820845],[116,186,68,0.19334912857586883],[116,186,69,0.24151359498185854],[116,186,70,0.2897782721953308],[116,186,71,0.3377988790697572],[116,186,72,0.3852682731700514],[116,186,73,0.43192961474626057],[116,186,74,0.47758954284439864],[116,186,75,0.5221000476241998],[116,186,76,0.5648544242606035],[116,186,77,0.604894207294174],[116,186,78,0.6413748493134573],[116,186,79,0.6735784111310484],[116,187,64,0.22609290776044902],[116,187,65,0.1793547797851906],[116,187,66,0.13337861150609384],[116,187,67,0.1793074054120725],[116,187,68,0.22597699253435363],[116,187,69,0.27301157228954115],[116,187,70,0.320047699483554],[116,187,71,0.3667473145693003],[116,187,72,0.41281078594473597],[116,187,73,0.45798996429105654],[116,187,74,0.5021012489515599],[116,187,75,0.54500719786508],[116,187,76,0.5861098403237734],[116,187,77,0.6244579309875778],[116,187,78,0.6592147593970814],[116,187,79,0.6896707917568448],[116,188,64,0.22524739942782596],[116,188,65,0.1772564841124767],[116,188,66,0.1679509406708376],[116,188,67,0.21297395759497834],[116,188,68,0.25862565519455966],[116,188,69,0.30453391551675646],[116,188,70,0.35034061974609343],[116,188,71,0.39571458024980455],[116,188,72,0.4403644847609189],[116,188,73,0.484051852698839],[116,188,74,0.5266040036279178],[116,188,75,0.5678953790324748],[116,188,76,0.6073375521263128],[116,188,77,0.6439867375168536],[116,188,78,0.6770142251256711],[116,188,79,0.7057189946766316],[116,189,64,0.22189856811229522],[116,189,65,0.17279865465818972],[116,189,66,0.20213602485213766],[116,189,67,0.24627657057563462],[116,189,68,0.2909298418040082],[116,189,69,0.33572773317173865],[116,189,70,0.38031789632765245],[116,189,71,0.4243765862398662],[116,189,72,0.4676215199250131],[116,189,73,0.5098247476015441],[116,189,74,0.5508255362675687],[116,189,75,0.5905113797846699],[116,189,76,0.6283040631400737],[116,189,77,0.6632673663459611],[116,189,78,0.6945806043376606],[116,189,79,0.7215512362422107],[116,190,64,0.2154523571986539],[116,190,65,0.19301026707019603],[116,190,66,0.23553782175086171],[116,190,67,0.27882857492200097],[116,190,68,0.3225138746246619],[116,190,69,0.3662299120563975],[116,190,70,0.4096304827896953],[116,190,71,0.4523997608829993],[116,190,72,0.49426508588399043],[116,190,73,0.5350097627249346],[116,190,74,0.5744858745105335],[116,190,75,0.6125949601517765],[116,190,76,0.6487695222430048],[116,190,77,0.682080867734911],[116,190,78,0.7117162141483464],[116,190,79,0.736991316327676],[116,191,64,0.20544241396225565],[116,191,65,0.22591946641033],[116,191,66,0.26776005850538154],[116,191,67,0.3102426330453465],[116,191,68,0.353001097358243],[116,191,69,0.3956761695380112],[116,191,70,0.43792808123410165],[116,191,71,0.4794492939719689],[116,191,72,0.51997722900415],[116,191,73,0.5593070106917507],[116,191,74,0.5973042234167464],[116,191,75,0.6338852393086557],[116,191,76,0.6684936039868736],[116,191,77,0.700207961922372],[116,191,78,0.7282231582269807],[116,191,79,0.7518629058144899],[116,192,64,0.2168926233481338],[116,192,65,0.25721331463900443],[116,192,66,0.29841552594846643],[116,192,67,0.3401397266461718],[116,192,68,0.3820225360856538],[116,192,69,0.4237093684795411],[116,192,70,0.46486709209931554],[116,192,71,0.5051967028002712],[116,192,72,0.544446011871363],[116,192,73,0.5824223482097883],[116,192,74,0.6190052748206728],[116,192,75,0.6541265530063056],[116,192,76,0.6872408994139059],[116,192,77,0.7174339508762866],[116,192,78,0.7439077494948405],[116,192,79,0.7659934728818927],[116,193,64,0.2466632744221509],[116,193,65,0.28651697207372734],[116,193,66,0.3271345654698813],[116,193,67,0.36815735730160243],[116,193,68,0.40922479672011713],[116,193,69,0.4499870948282043],[116,193,70,0.49011785542864195],[116,193,71,0.5293267210304291],[116,193,72,0.5673720341124734],[116,193,73,0.6040735136446063],[116,193,74,0.6393249468662721],[116,193,75,0.6730737806614505],[116,193,76,0.7047858174220922],[116,193,77,0.7335531826122723],[116,193,78,0.7585845282440673],[116,193,79,0.7792178481024572],[116,194,64,0.2740430546738166],[116,194,65,0.3134822071340035],[116,194,66,0.35357274848554204],[116,194,67,0.39395696019507864],[116,194,68,0.4342771989748383],[116,194,69,0.4741884978630739],[116,194,70,0.5133711836114265],[116,194,71,0.5515435103798096],[116,194,72,0.5884743097385279],[116,194,73,0.623995656977499],[116,194,74,0.6580155537229042],[116,194,75,0.6904971421048929],[116,194,76,0.7209169966796927],[116,194,77,0.7483730680802911],[116,194,78,0.7720798756777137],[116,194,79,0.7913814283431856],[116,195,64,0.298717395098786],[116,195,65,0.33779450254052446],[116,195,66,0.3774177485127472],[116,195,67,0.4172305309878783],[116,195,68,0.45687814684473416],[116,195,69,0.49602039310127155],[116,195,70,0.5343441855967015],[116,195,71,0.5715761951235601],[116,195,72,0.607495501009454],[116,195,73,0.6419462621483711],[116,195,74,0.6748504054818438],[116,195,75,0.7061864639883089],[116,195,76,0.7354412280886331],[116,195,77,0.7617176506193135],[116,195,78,0.7842352228707535],[116,195,79,0.8023430194719291],[116,196,64,0.320413550206191],[116,196,65,0.3591792672349605],[116,196,66,0.39839533404506167],[116,196,67,0.43770639151137647],[116,196,68,0.47676065887007146],[116,196,69,0.5152225488380605],[116,196,70,0.5527853013889289],[116,196,71,0.5891836361858991],[116,196,72,0.6242064236715589],[116,196,73,0.6577093748142583],[116,196,74,0.6896277495114371],[116,196,75,0.7199548254061408],[116,196,76,0.7481867957538442],[116,196,77,0.7734306346457636],[116,196,78,0.7949097609954486],[116,196,79,0.8119772234912033],[116,197,64,0.3388021823094615],[116,197,65,0.37729915757741805],[116,197,66,0.4161624914247999],[116,197,67,0.45503821868769434],[116,197,68,0.4935774406181911],[116,197,69,0.5314489646150219],[116,197,70,0.5683519637437281],[116,197,71,0.6040286560469332],[116,197,72,0.6382770036444387],[116,197,73,0.6709634316230623],[116,197,74,0.7020355667164655],[116,197,75,0.7315003609794096],[116,197,76,0.7588624725532984],[116,197,77,0.783232056484962],[116,197,78,0.8038355259661555],[116,197,79,0.8200288865150746],[116,198,64,0.35332773765201414],[116,198,65,0.3915781286445166],[116,198,66,0.4301251068863499],[116,198,67,0.46861638691896257],[116,198,68,0.5067059824045352],[116,198,69,0.5440668730731049],[116,198,70,0.5804036920771374],[116,198,71,0.6154654337540999],[116,198,72,0.6490581817967651],[116,198,73,0.681057857831174],[116,198,74,0.7114229904024854],[116,198,75,0.740172563384872],[116,198,76,0.7668190435893021],[116,198,77,0.7904758941792525],[116,198,78,0.8103724138009148],[116,198,79,0.8258672126234133],[116,199,64,0.363518545029874],[116,199,65,0.40152449398633605],[116,199,66,0.43977354689138104],[116,199,67,0.4779155204388018],[116,199,68,0.5156074498289479],[116,199,69,0.5525262774469898],[116,199,70,0.588381561609248],[116,199,71,0.622928205378127],[116,199,72,0.6559792054453945],[116,199,73,0.6874184210837332],[116,199,74,0.7172133631667901],[116,199,75,0.7453928810344626],[116,199,76,0.7714768942975266],[116,199,77,0.7945832613987905],[116,199,78,0.8139448776049915],[116,199,79,0.8289232696834442],[116,200,64,0.36904521339742985],[116,200,65,0.40679176371205705],[116,200,66,0.4447458717570644],[116,200,67,0.4825599943432326],[116,200,68,0.51989436512834],[116,200,69,0.5564296925113321],[116,200,70,0.591879875917988],[116,200,71,0.6260047404786194],[116,200,72,0.6586227900975444],[116,200,73,0.6896239789142735],[116,200,74,0.718982501156613],[116,200,75,0.7467344659446578],[116,200,76,0.7724071288262764],[116,200,77,0.7951246153994891],[116,200,78,0.8141248000253208],[116,200,79,0.8287729827521089],[116,201,64,0.36971214725815715],[116,201,65,0.4071699177324125],[116,201,66,0.44481887511166285],[116,201,67,0.48231474953014225],[116,201,68,0.5193212074799356],[116,201,69,0.5555225403718184],[116,201,70,0.5906363681534065],[116,201,71,0.6244263579851345],[116,201,72,0.6567149579738174],[116,201,73,0.687396145963729],[116,201,74,0.7164481933854011],[116,201,75,0.7439115057256652],[116,201,76,0.7693207426533396],[116,201,77,0.79180879332123],[116,201,78,0.8106204294908597],[116,201,79,0.8251260176324159],[116,202,64,0.36544868911522155],[116,202,65,0.402576321661382],[116,202,66,0.43989878433354174],[116,202,67,0.47707578969568015],[116,202,68,0.5137747191658721],[116,202,69,0.5496832785948226],[116,202,70,0.5845221636460709],[116,202,71,0.6180577349783801],[116,202,72,0.6501147032300688],[116,202,73,0.6805888238052179],[116,202,74,0.7094596014619565],[116,202,75,0.7367684954473037],[116,202,76,0.7620577756829962],[116,202,77,0.7844720699972008],[116,202,78,0.8032653787516266],[116,202,79,0.8178147666509016],[116,203,64,0.35629988898222775],[116,203,65,0.3930462853773792],[116,203,66,0.4300116219738434],[116,203,67,0.4668603603878095],[116,203,68,0.5032639175993726],[116,203,69,0.5389132606758671],[116,203,70,0.5735315039097723],[116,203,71,0.6068865083717124],[116,203,72,0.6388034838783027],[116,203,73,0.6691775933747783],[116,203,74,0.6979865597326109],[116,203,75,0.7252694493817319],[116,203,76,0.7505764458233157],[116,203,77,0.7730672372744918],[116,203,78,0.7920076857165523],[116,203,79,0.8067834366563156],[116,204,64,0.34241690095388366],[116,204,65,0.37872326424371366],[116,204,66,0.41529322816260816],[116,204,67,0.4517968101168113],[116,204,68,0.48790981321229354],[116,204,69,0.5233263288467066],[116,204,70,0.5577712320383665],[116,204,71,0.5910126694927739],[116,204,72,0.6228745404064341],[116,204,73,0.6532489700079069],[116,204,74,0.6821087758362913],[116,204,75,0.709487052622897],[116,204,76,0.7349422630436386],[116,204,77,0.7576527048458459],[116,204,78,0.7768989365900535],[116,204,79,0.7920772392394483],[116,205,64,0.3240470068366672],[116,205,65,0.3598487029884105],[116,205,66,0.39597894399842876],[116,205,67,0.43211413352282785],[116,205,68,0.467934833204131],[116,205,69,0.5031381392211102],[116,205,70,0.5374500394968187],[116,205,71,0.5706377515653345],[116,205,72,0.6025220410969819],[116,205,73,0.6329895210819496],[116,205,74,0.6620049316725228],[116,205,75,0.6895917525827382],[116,205,76,0.7153171239122603],[116,205,77,0.7383816225925781],[116,205,78,0.7580834513073235],[116,205,79,0.7738316831740905],[116,206,64,0.30152326683952296],[116,206,65,0.33675152224341376],[116,206,66,0.37239295592166105],[116,206,67,0.4081311966004563],[116,206,68,0.4436519511524991],[116,206,69,0.4786552192793548],[116,206,70,0.5128674743064694],[116,206,71,0.5460538100913555],[116,206,72,0.5780300540447088],[116,206,73,0.6086748462643772],[116,206,74,0.6379416847824013],[116,206,75,0.6658407903641815],[116,206,76,0.691948386614365],[116,206,77,0.7154910244387157],[116,206,78,0.7357875312684107],[116,206,79,0.7522619690791992],[116,207,64,0.2752537973244519],[116,207,65,0.30983724774304056],[116,207,66,0.34493730107105713],[116,207,67,0.3802456439802736],[116,207,68,0.41545352248496004],[116,207,69,0.4502637576913151],[116,207,70,0.4844027106244103],[116,207,71,0.5176321961331632],[116,207,72,0.5497613458731025],[116,207,73,0.5806584203668311],[116,207,74,0.6102625701424281],[116,207,75,0.6385671720108254],[116,207,76,0.6651579264501063],[116,207,77,0.6892909937162591],[116,207,78,0.7103087693709809],[116,207,79,0.7276524863021687],[116,208,64,0.24571067561726823],[116,208,65,0.2795767821819541],[116,208,66,0.31408053362409366],[116,208,67,0.34892248826755423],[116,208,68,0.3837998258124656],[116,208,69,0.41841812647840226],[116,208,70,0.45250307971720766],[116,208,71,0.4858121224959703],[116,208,72,0.5181460071499235],[116,208,73,0.5493602988051584],[116,208,74,0.579376802371409],[116,208,75,0.6081685796335008],[116,208,76,0.6353311718130098],[116,208,77,0.6601538500417228],[116,208,78,0.6820054223419045],[116,208,79,0.7003464120233338],[116,209,64,0.27869286583925496],[116,209,65,0.3119112248836359],[116,209,66,0.34432183163128693],[116,209,67,0.37585084046491735],[116,209,68,0.406483148675082],[116,209,69,0.4362724725289362],[116,209,70,0.4653519806522007],[116,209,71,0.49394548472426764],[116,209,72,0.5223744004992661],[116,209,73,0.5506140136139235],[116,209,74,0.5779281841136485],[116,209,75,0.603618084676881],[116,209,76,0.6271032609745402],[116,209,77,0.6479138358634664],[116,209,78,0.665682923410823],[116,209,79,0.6801392527494596],[116,210,64,0.31331728666730513],[116,210,65,0.34471359071468927],[116,210,66,0.37531014108919597],[116,210,67,0.4050446373937983],[116,210,68,0.4339101895380259],[116,210,69,0.461964666598885],[116,210,70,0.48934056517900937],[116,210,71,0.516255397261973],[116,210,72,0.543017888252543],[116,210,73,0.5695917544815265],[116,210,74,0.5952419639163847],[116,210,75,0.6192747126577688],[116,210,76,0.6411167727175018],[116,210,77,0.6603072593193112],[116,210,78,0.6764896208731064],[116,210,79,0.6894038516228032],[116,211,64,0.34449652660442104],[116,211,65,0.37412964967072465],[116,211,66,0.40297628019651655],[116,211,67,0.43098502786726195],[116,211,68,0.45815649093369437],[116,211,69,0.4845518788580505],[116,211,70,0.5103021165054769],[116,211,71,0.5356174298805412],[116,211,72,0.5607927861505602],[116,211,73,0.585779600876225],[116,211,74,0.6098439019890285],[116,211,75,0.6322968668142461],[116,211,76,0.6525723873001796],[116,211,77,0.6702184122176404],[116,211,78,0.6848885252941288],[116,211,79,0.696333759282703],[116,212,64,0.3718536867275243],[116,212,65,0.39980659809437724],[116,212,66,0.4269918455661316],[116,212,67,0.4533681553062471],[116,212,68,0.4789427514316046],[116,212,69,0.5037792594602244],[116,212,70,0.5280060534753412],[116,212,71,0.5518250470057803],[116,212,72,0.5755163864215406],[116,212,73,0.5990184697430158],[116,212,74,0.6215982908886039],[116,212,75,0.6425718934341945],[116,212,76,0.6613800932485729],[116,212,77,0.6775794115880976],[116,212,78,0.6908332577105176],[116,212,79,0.7009033610079232],[116,213,64,0.39506230559348104],[116,213,65,0.4214409991930453],[116,213,66,0.447076660267386],[116,213,67,0.4719371895014093],[116,213,68,0.4960354471558327],[116,213,69,0.5194364502608142],[116,213,70,0.5422649760779013],[116,213,71,0.5647135718302445],[116,213,72,0.5870465191301091],[116,213,73,0.6091885048449969],[116,213,74,0.6304073488576862],[116,213,75,0.6500237735870399],[116,213,76,0.6674852347351622],[116,213,77,0.6823564652664288],[116,213,78,0.6943102827142499],[116,213,79,0.7031186598155683],[116,214,64,0.413850536249115],[116,214,65,0.43878259471908904],[116,214,66,0.4630022118089345],[116,214,67,0.48648538509585704],[116,214,68,0.5092495073658224],[116,214,69,0.5313598762570666],[116,214,70,0.5529365733575408],[116,214,71,0.57416171275624],[116,214,72,0.595282700199915],[116,214,73,0.6162098503386018],[116,214,74,0.6362116245523779],[116,214,75,0.6546131664751095],[116,214,76,0.67086820301299],[116,214,77,0.6845492229223707],[116,214,78,0.6953379326459203],[116,214,79,0.7030159894071055],[116,215,64,0.428004793796963],[116,215,65,0.4516375761395965],[116,215,66,0.47459453815601654],[116,215,67,0.4968585763369616],[116,215,68,0.5184504143127884],[116,215,69,0.53943444916675],[116,215,70,0.5599249312668455],[116,215,71,0.5800924776161912],[116,215,72,0.600166655162755],[116,215,73,0.6200427883015085],[116,215,74,0.6389897545105905],[116,215,75,0.6563367951430743],[116,215,76,0.6715434608933676],[116,215,77,0.6841894520913132],[116,215,78,0.6939647502028822],[116,215,79,0.7006600405374539],[116,216,64,0.43737287351687115],[116,216,65,0.4598713152958106],[116,216,66,0.48173656178225366],[116,216,67,0.5029571080973315],[116,216,68,0.5235557273717927],[116,216,69,0.5435946831453687],[116,216,70,0.5631812404633627],[116,216,71,0.5824734756704091],[116,216,72,0.6016822186342188],[116,216,73,0.6206872402132395],[116,216,74,0.6387575733606277],[116,216,75,0.6552261745454484],[116,216,76,0.6695579002671753],[116,216,77,0.6813390392096921],[116,216,78,0.6902671494622049],[116,216,79,0.696141200807072],[116,217,64,0.44186653954309596],[116,217,65,0.46341055455190594],[116,217,66,0.48436987175568247],[116,217,67,0.5047372031646854],[116,217,68,0.5245360314492554],[116,217,69,0.5438252226416967],[116,217,70,0.5627039040498196],[116,217,71,0.5813166073821042],[116,217,72,0.5998546095157344],[116,217,73,0.6181816323883488],[116,217,74,0.6355665767700002],[116,217,75,0.6513456819721147],[116,217,76,0.6649885326697447],[116,217,77,0.6760873156541238],[116,217,78,0.6843463953184831],[116,217,79,0.6895722078771147],[116,218,64,0.4414635840973067],[116,218,65,0.46224505643348246],[116,218,66,0.48249595385935773],[116,218,67,0.502211765800936],[116,218,68,0.5214153096661862],[116,218,69,0.5401607823918827],[116,218,70,0.5585380452580311],[116,218,71,0.5766771419698442],[116,218,72,0.5947490819231771],[116,218,73,0.6126011253623385],[116,218,74,0.6295017371345781],[116,218,75,0.6447899698319494],[116,218,76,0.6579395128893682],[116,218,77,0.6685477087843084],[116,218,78,0.6763249013364977],[116,218,79,0.681084116107618],[116,219,64,0.43620935727733123],[116,219,65,0.456428712755624],[116,219,66,0.47617686874638165],[116,219,67,0.4954506215703406],[116,219,68,0.514270740316989],[116,219,69,0.5326854995519923],[116,219,70,0.5507744150763604],[116,219,71,0.5686521827373265],[116,219,72,0.5864689518419256],[116,219,73,0.6040552072301908],[116,219,74,0.6206786720079813],[116,219,75,0.6356807207944493],[116,219,76,0.6485384956193563],[116,219,77,0.6588537179896108],[116,219,78,0.6663418460186499],[116,219,79,0.6708215766186534],[116,220,64,0.42621776740153094],[116,220,65,0.4460801132404322],[116,220,66,0.4655353781292954],[116,220,67,0.4845801934366788],[116,220,68,0.5032319181038362],[116,220,69,0.5215316979690031],[116,220,70,0.5395476998207719],[116,220,71,0.5573785201805272],[116,220,72,0.5751529995084408],[116,220,73,0.5926846509376145],[116,220,74,0.6092401652713191],[116,220,75,0.6241627452894998],[116,220,76,0.6369323251537811],[116,220,77,0.6471542157395012],[116,220,78,0.6545481074873558],[116,220,79,0.6589374307746447],[116,221,64,0.41167175190889943],[116,221,65,0.43138257362410354],[116,221,66,0.4507545190038718],[116,221,67,0.4697826141294786],[116,221,68,0.4884794996466011],[116,221,69,0.506878064590216],[116,221,70,0.5250342286494203],[116,221,71,0.54302987287215],[116,221,72,0.5609722475182778],[116,221,73,0.5786578355248908],[116,221,74,0.5953520410431523],[116,221,75,0.610399421365131],[116,221,76,0.6232820581267555],[116,221,77,0.63360807363766],[116,221,78,0.6411005165822032],[116,221,79,0.645586617091644],[116,222,64,0.39282321881510157],[116,222,65,0.41258362325375597],[116,222,66,0.43207662590750545],[116,222,67,0.4512942747794614],[116,222,68,0.470243273268505],[116,222,69,0.4889472380112286],[116,222,70,0.5074490810209082],[116,222,71,0.5258135161234883],[116,222,72,0.5441261146606204],[116,222,73,0.5621664313233986],[116,222,74,0.5791983903297354],[116,222,75,0.5945674769033082],[116,222,76,0.6077573192952614],[116,222,77,0.6183781134797689],[116,222,78,0.6261554283718672],[116,222,79,0.6309193915675386],[116,223,64,0.3699924587238863],[116,223,65,0.38999395217349786],[116,223,66,0.40980180121175747],[116,223,67,0.42940380982284065],[116,223,68,0.4487996530571855],[116,223,69,0.4680028091622396],[116,223,70,0.4870425940960375],[116,223,71,0.5059662984235936],[116,223,72,0.5248379454793031],[116,223,73,0.5434204491048433],[116,223,74,0.5609761504156293],[116,223,75,0.5768511141939058],[116,223,76,0.5905299903657483],[116,223,77,0.6016243833152509],[116,223,78,0.6098616120811085],[116,223,79,0.6150738614355697],[116,224,64,0.3435670273947089],[116,224,65,0.36398581770048694],[116,224,66,0.38428583344970324],[116,224,67,0.40444951817501507],[116,224,68,0.42446859720162067],[116,224,69,0.4443457341330227],[116,224,70,0.46409627008330523],[116,224,71,0.4837500456559065],[116,224,72,0.5033499155603737],[116,224,73,0.5226426531831506],[116,224,74,0.5408890369945512],[116,224,75,0.5574354768666426],[116,224,76,0.571767231864184],[116,224,77,0.5834967585125643],[116,224,78,0.5923524594323769],[116,224,79,0.5981678323406152],[116,225,64,0.3140000988654533],[116,225,65,0.33499091048995855],[116,225,66,0.3559375636771667],[116,225,67,0.37681622067284937],[116,225,68,0.3976099506042118],[116,225,69,0.41831015913597625],[116,225,70,0.43891808352764894],[116,225,71,0.4594463530919502],[116,225,72,0.4799173125459047],[116,225,73,0.5000623384688313],[116,225,74,0.5191408290403696],[116,225,75,0.536499459180982],[116,225,76,0.5516238380496608],[116,225,77,0.564126867828241],[116,225,78,0.5737375114022931],[116,225,79,0.5802899689385781],[116,226,64,0.2818082891316578],[116,226,65,0.30349768009054867],[116,226,66,0.3252156998690726],[116,226,67,0.34693155378667623],[116,226,68,0.3686192117690596],[116,226,69,0.39025865760818523],[116,226,70,0.4118371885432828],[116,226,71,0.4333507651628385],[116,226,72,0.4548021928747103],[116,226,73,0.47590847147638016],[116,226,74,0.4959280064187098],[116,226,75,0.5142078576743724],[116,226,76,0.5302339248718372],[116,226,77,0.5436193444798667],[116,226,78,0.5540933033931336],[116,226,79,0.5614902689189397],[116,227,64,0.24748228258503074],[116,227,65,0.26996128458711216],[116,227,66,0.29253839629310513],[116,227,67,0.3151754747968067],[116,227,68,0.3378372452787507],[116,227,69,0.3604924128595932],[116,227,70,0.3831148119432805],[116,227,71,0.4056845930499964],[116,227,72,0.42818630794368207],[116,227,73,0.45032387750333747],[116,227,74,0.4713553188649582],[116,227,75,0.49062840925786105],[116,227,76,0.5076294894336225],[116,227,77,0.5219719230645539],[116,227,78,0.533384979011006],[116,227,79,0.5417031364574869],[116,228,64,0.21112118465013488],[116,228,65,0.23443984092982265],[116,228,66,0.25792281718950627],[116,228,67,0.28152447638614553],[116,228,68,0.30520038922162507],[116,228,69,0.32890834790871876],[116,228,70,0.3526094070456023],[116,228,71,0.37626895159890694],[116,228,72,0.3998547279045127],[116,228,73,0.4230589900123244],[116,228,74,0.4451400282701759],[116,228,75,0.46544671582053715],[116,228,76,0.4834660239606207],[116,228,77,0.49881156566298923],[116,228,78,0.5112125676553199],[116,228,79,0.5205032710593058],[116,229,64,0.1727508558132117],[116,229,65,0.1969195016219562],[116,229,66,0.22131594325660486],[116,229,67,0.24588711717121006],[116,229,68,0.2705797244376828],[116,229,69,0.29534118177035495],[116,229,70,0.3201205919408389],[116,229,71,0.3448697335831773],[116,229,72,0.36954107680950965],[116,229,73,0.39381665494303164],[116,229,74,0.41695568684466455],[116,229,75,0.4383085065971657],[116,229,76,0.4573628858982163],[116,229,77,0.47373268221243403],[116,229,78,0.4871469207243944],[116,229,79,0.4974393100926411],[116,230,64,0.13246641050079727],[116,230,65,0.1574582278811935],[116,230,66,0.18273909730603632],[116,230,67,0.20824879502018162],[116,230,68,0.23392561406879292],[116,230,69,0.259707283427347],[116,230,70,0.2855319015978688],[116,230,71,0.3113388846713905],[116,230,72,0.337067001187091],[116,230,73,0.36238951578242956],[116,230,74,0.3865672207573214],[116,230,75,0.40895226533755474],[116,230,76,0.42903337901460037],[116,230,77,0.44642464303413804],[116,230,78,0.46085470078721213],[116,230,79,0.4721564071040032],[116,231,64,0.11137050019036862],[116,231,65,0.11617382243196607],[116,231,66,0.14227581382693774],[116,231,67,0.16865946650673758],[116,231,68,0.1952552861595088],[116,231,69,0.22199213052338745],[116,231,70,0.24879813477813575],[116,231,71,0.27560164932185577],[116,231,72,0.3023293237163517],[116,231,73,0.32864708300384954],[116,231,74,0.3538179252727439],[116,231,75,0.3771961630298973],[116,231,76,0.3982716372278573],[116,231,77,0.4166586285927696],[116,231,78,0.43208521310698567],[116,231,79,0.44438306164635094],[116,232,64,0.11197011522831563],[116,232,65,0.10322932228508243],[116,232,66,0.10005945480609871],[116,232,67,0.12722110319864854],[116,232,68,0.15464014378763574],[116,232,69,0.18223748644454701],[116,232,70,0.20993241040674768],[116,232,71,0.23764351745323145],[116,232,72,0.2652868892864697],[116,232,73,0.292522487900999],[116,232,74,0.31861613692628543],[116,232,75,0.3429246611526291],[116,232,76,0.36493917348243],[116,232,77,0.3842741400083366],[116,232,78,0.40065689492481593],[116,232,79,0.41391760527312726],[116,233,64,0.11128720625097063],[116,233,65,0.10325414472440593],[116,233,66,0.09063707301046764],[116,233,67,0.08407497724431169],[116,233,68,0.11219289476710984],[116,233,69,0.14052838713197918],[116,233,70,0.1689930237875446],[116,233,71,0.19749696109563805],[116,233,72,0.22594719126703477],[116,233,73,0.25399900710259743],[116,233,74,0.28092166735722046],[116,233,75,0.30607486832306663],[116,233,76,0.3289511747453127],[116,233,77,0.3491652495883048],[116,233,78,0.3664435400054289],[116,233,79,0.3806144195126846],[116,234,64,0.10941645342749923],[116,234,65,0.10206296334376258],[116,234,66,0.09008024571554145],[116,234,67,0.07344784239995279],[116,234,68,0.06805450092467091],[116,234,69,0.09697993762719503],[116,234,70,0.12607010266344293],[116,234,71,0.15522796102347497],[116,234,72,0.1843527779904128],[116,234,73,0.2130963577686611],[116,234,74,0.24073199880095789],[116,234,75,0.2666226503436793],[116,234,76,0.2902625431227364],[116,234,77,0.3112665913805929],[116,234,78,0.3293602584455996],[116,234,79,0.34436988582362765],[116,235,64,0.10644907151124783],[116,235,65,0.09975186607374112],[116,235,66,0.08839825071792642],[116,235,67,0.07235716712046492],[116,235,68,0.05170541192920386],[116,235,69,0.05172391834900186],[116,235,70,0.08127206312122978],[116,235,71,0.11092232336920131],[116,235,72,0.14056743944549652],[116,235,73,0.16985676346786593],[116,235,74,0.1980682412398152],[116,235,75,0.2245684936455895],[116,235,76,0.24885368309701725],[116,235,77,0.27053909174719387],[116,235,78,0.2893491717450753],[116,235,79,0.3051080675309613],[116,236,64,0.10246914076992084],[116,236,65,0.09641056864582366],[116,236,66,0.08568661335355539],[116,236,67,0.0702557588300453],[116,236,68,0.05018462749762009],[116,236,69,0.02564820626344],[116,236,70,0.034702088866025854],[116,236,71,0.06466201170405123],[116,236,72,0.09465240485414256],[116,236,73,0.12432103035416234],[116,236,74,0.15295111226851044],[116,236,75,0.17991342554499118],[116,236,76,0.20470640878835245],[116,236,77,0.22694591852490165],[116,236,78,0.2463554654763055],[116,236,79,0.26275693284255625],[116,237,64,0.09754924698352194],[116,237,65,0.0921182833632269],[116,237,66,0.0820310682764153],[116,237,67,0.06723575329914425],[116,237,68,0.047788455219503076],[116,237,69,0.02385374461917475],[116,237,70,-0.004294062492164935],[116,237,71,0.01624729426286259],[116,237,72,0.04638893399527409],[116,237,73,0.07625169544901436],[116,237,74,0.10512500082657625],[116,237,75,0.1323845875249958],[116,237,76,0.1575318214548667],[116,237,77,0.1801836246792584],[116,237,78,0.20006289672043792],[116,237,79,0.21698942953437667],[116,238,64,0.09174543050971105],[116,238,65,0.08693890210383351],[116,238,66,0.0775029636313854],[116,238,67,0.06337553576768332],[116,238,68,0.04460189074776995],[116,238,69,0.021335392439467346],[116,238,70,-0.00616097043133676],[116,238,71,-0.034723609411593685],[116,238,72,-0.00464009763622128],[116,238,73,0.025216532501243116],[116,238,74,0.05414332684606339],[116,238,75,0.08152232667021596],[116,238,76,0.10685895952099038],[116,238,77,0.12977213671612062],[116,238,78,0.14998485805497966],[116,238,79,0.1919089571360758],[116,239,64,0.11506773652904805],[116,239,65,0.08891005036418585],[116,239,66,0.07215398569296695],[116,239,67,0.05873467955719411],[116,239,68,0.040691656044215666],[116,239,69,0.018166301897608872],[116,239,70,-0.008590926715302274],[116,239,71,-0.03921796073262069],[116,239,72,-0.05866476597479469],[116,239,73,-0.029025517020997482],[116,239,74,-2.4550658536066916E-4],[116,239,75,0.02706536243609073],[116,239,76,0.05933450367666969],[116,239,77,0.10154899622214872],[116,239,78,0.14491073650950867],[116,239,79,0.18933764854195947],[116,240,64,0.16579989217696425],[116,240,65,0.14069697659251518],[116,240,66,0.11467902875338229],[116,240,67,0.08783175046493899],[116,240,68,0.06025179437758976],[116,240,69,0.03204587248196264],[116,240,70,0.0033297716156218127],[116,240,71,-0.025772724018699074],[116,240,72,-0.055128647319693073],[116,240,73,-0.06034220224938902],[116,240,74,-0.02222789917067068],[116,240,75,0.017218735942869504],[116,240,76,0.0577081431970735],[116,240,77,0.09936378434992245],[116,240,78,0.14220093832005357],[116,240,79,0.18612557626918963],[116,241,64,0.2173661897027821],[116,241,65,0.1936105411970814],[116,241,66,0.16885300244268203],[116,241,67,0.14317616778911813],[116,241,68,0.11667523927217388],[116,241,69,0.08945725766182559],[116,241,70,0.06164022529726215],[116,241,71,0.033352120708984204],[116,241,72,0.0047320693333346014],[116,241,73,-0.023867089299814827],[116,241,74,-0.02258589632288084],[116,241,75,0.016058322264382113],[116,241,76,0.05580594403232941],[116,241,77,0.0967654673267225],[116,241,78,0.13893846439893845],[116,241,79,0.1822187797775071],[116,242,64,0.26952361282702286],[116,242,65,0.24740662661666654],[116,242,66,0.2241931552301509],[116,242,67,0.19996180686160303],[116,242,68,0.17480572122304283],[116,242,69,0.14883196202674484],[116,242,70,0.12216078560397543],[116,242,71,0.0949247856601045],[116,242,72,0.06727007264980737],[116,242,73,0.039548917116204035],[116,242,74,0.012413728812645144],[116,242,75,0.014748233526216722],[116,242,76,0.05361586854396354],[116,242,77,0.09373979882390625],[116,242,78,0.13510789524910363],[116,242,79,0.17760207097905295],[116,243,64,0.3219477319479106],[116,243,65,0.30175427475214567],[116,243,66,0.28036216425493166],[116,243,67,0.2578451868433668],[116,243,68,0.2342938545117042],[116,243,69,0.20981499841502027],[116,243,70,0.18453122267801525],[116,243,71,0.15858021845894255],[116,243,72,0.13211597674422626],[116,243,73,0.10549016780252281],[116,243,74,0.07933703053561113],[116,243,75,0.054212789009960335],[116,243,76,0.051168828020443646],[116,243,77,0.09031586766225191],[116,243,78,0.13073762017949137],[116,243,79,0.17230464548267418],[116,244,64,0.37425060412299194],[116,244,65,0.3562540461020518],[116,244,66,0.336949546338863],[116,244,67,0.31640527452531253],[116,244,68,0.2947085850214405],[116,244,69,0.2719658509712157],[116,244,70,0.24830214275008158],[116,244,71,0.22386075074427064],[116,244,72,0.19880445724939197],[116,244,73,0.17348435847666424],[116,244,74,0.14851444160476615],[116,244,75,0.12443199294760007],[116,244,76,0.10166961227685706],[116,244,77,0.0866419731968252],[116,244,78,0.12597506898936647],[116,244,79,0.1664744098240684],[116,245,64,0.42599751830420074],[116,245,65,0.41045522409979396],[116,245,66,0.39348927747520246],[116,245,67,0.3751614767200825],[116,245,68,0.3555555160727226],[116,245,69,0.33477709892574914],[116,245,70,0.3129538795785982],[116,245,71,0.2902352335367511],[116,245,72,0.2667936147725213],[116,245,73,0.2429796193814755],[116,245,74,0.21938509360186023],[116,245,75,0.19652642179509688],[116,245,76,0.17481917972612213],[116,245,77,0.15458706253819915],[116,245,78,0.13607015112343857],[116,245,79,0.16056956245600912],[116,246,64,0.4767225858253879],[116,246,65,0.4638718646515268],[116,246,66,0.4494762597707872],[116,246,67,0.4335904844460471],[116,246,68,0.41629409220857494],[116,246,69,0.39769190598431736],[116,246,70,0.37791426029217806],[116,246,71,0.3571170565142795],[116,246,72,0.33548323200234526],[116,246,73,0.3133629960571752],[116,246,74,0.29132441253586394],[116,246,75,0.26986122996733986],[116,246,76,0.2493703953833416],[116,246,77,0.2301608939243352],[116,246,78,0.2124618965687531],[116,246,79,0.19643021598556443],[116,247,64,0.5259431761414293],[116,247,65,0.5159976908737098],[116,247,66,0.5043816358406015],[116,247,67,0.4911419689023762],[116,247,68,0.47635364092873245],[116,247,69,0.46012037532593336],[116,247,70,0.4425752456339991],[116,247,71,0.4238810511939457],[116,247,72,0.40423192446581213],[116,247,73,0.3839778336062407],[116,247,74,0.3636617124917183],[116,247,75,0.34375321788314356],[116,247,76,0.32462929421142184],[116,247,77,0.30658294258332214],[116,247,78,0.2898312659146304],[116,247,79,0.2745227901906132],[116,248,64,0.5731731978209719],[116,248,65,0.5663198330325656],[116,248,66,0.5576669506571005],[116,248,67,0.5472531292376751],[116,248,68,0.5351482723751989],[116,248,69,0.5214547702123056],[116,248,70,0.5063084446109326],[116,248,71,0.48987927802355674],[116,248,72,0.47237318493743596],[116,248,73,0.45414006445426924],[116,248,74,0.4356967032224535],[116,248,75,0.4174875263810215],[116,248,76,0.3998683674148099],[116,248,77,0.38311518575869996],[116,248,78,0.3674320269884622],[116,248,79,0.35295822559821843],[116,249,64,0.6179352247908858],[116,249,65,0.6143314136833316],[116,249,66,0.6087971608520195],[116,249,67,0.6013620921097586],[116,249,68,0.5920906369666288],[116,249,69,0.5810836002058414],[116,249,70,0.5684795035445722],[116,249,71,0.5544556973797463],[116,249,72,0.5392303214982029],[116,249,73,0.5231533996036156],[116,249,74,0.5067149116813767],[116,249,75,0.4903332566244173],[116,249,76,0.4743423410566436],[116,249,77,0.45900026597902066],[116,249,78,0.44449722111647305],[116,249,79,0.4309625869656087],[116,250,64,0.6597714678335453],[116,250,65,0.6595429780105957],[116,250,66,0.657252491472123],[116,250,67,0.6529201630381729],[116,250,68,0.6466045409832919],[116,250,69,0.6384045729981738],[116,250,70,0.6284613695261952],[116,250,71,0.6169597244748294],[116,250,72,0.6041302892463065],[116,250,73,0.5903234233821838],[116,250,74,0.5760020174968101],[116,250,75,0.5615580154989668],[116,250,76,0.5473028932398013],[116,250,77,0.5334763356761638],[116,250,78,0.5202540857209239],[116,250,79,0.5077549647802758],[116,251,64,0.6982535913363117],[116,251,65,0.7014927693689248],[116,251,66,0.7025391401879362],[116,251,67,0.7014029295483464],[116,251,68,0.6981364201013541],[116,251,69,0.6928364118478006],[116,251,70,0.6856464282741135],[116,251,71,0.6767586681707249],[116,251,72,0.6664164156579171],[116,251,73,0.654970591685475],[116,251,74,0.6428571023873739],[116,251,75,0.63044138649969],[116,251,76,0.6180123098496622],[116,251,77,0.6057908553066136],[116,251,78,0.5939379475093591],[116,251,79,0.5825614123701182],[116,252,64,0.7329913752940841],[116,252,65,0.7397558500248304],[116,252,66,0.7441988289566884],[116,252,67,0.7463202161087849],[116,252,68,0.7461656708780492],[116,252,69,0.7438295386285734],[116,252,70,0.739457516395295],[116,252,71,0.7332490537019829],[116,252,72,0.7254600196001562],[116,252,73,0.7164421337141766],[116,252,74,0.7066048135202191],[116,252,75,0.6962873261106267],[116,252,76,0.6857560788611886],[116,252,77,0.6752133449784036],[116,252,78,0.6648050862586847],[116,252,79,0.6546278730595256],[116,253,64,0.7636402225634551],[116,253,65,0.7739520670984039],[116,253,66,0.7818172031375913],[116,253,67,0.7872248908592174],[116,253,68,0.7902138401854674],[116,253,69,0.7908756224865758],[116,253,70,0.7893578080486338],[116,253,71,0.7858668293051119],[116,253,72,0.7806709239933188],[116,253,73,0.7741228572041979],[116,253,74,0.7666064408089805],[116,253,75,0.7584354856735616],[116,253,76,0.7498544232068611],[116,253,77,0.7410470895801538],[116,253,78,0.7321445691904078],[116,253,79,0.7232320973676579],[116,254,64,0.7899075113702028],[116,254,65,0.8037528637065748],[116,254,66,0.815031078061623],[116,254,67,0.8237205241320926],[116,254,68,0.8298526725955546],[116,254,69,0.8335159941081829],[116,254,70,0.83485957601283],[116,254,71,0.834096456757365],[116,254,72,0.8315068621256594],[116,254,73,0.8274448571526223],[116,254,74,0.8222699081550623],[116,254,75,0.8162714587495816],[116,254,76,0.8096727722093352],[116,254,77,0.8026397974161777],[116,254,78,0.7952890559411153],[116,254,79,0.7876945502530762],[116,255,64,0.8115577930687424],[116,255,65,0.8288869353064018],[116,255,66,0.8435345330540269],[116,255,67,0.8554678987654243],[116,255,68,0.8647110157141336],[116,255,69,0.8713489255969253],[116,255,70,0.875531827156345],[116,255,71,0.8774788858222613],[116,255,72,0.877481777617874],[116,255,73,0.8758961280365597],[116,255,74,0.8730586786291054],[116,255,75,0.8692359539701929],[116,255,76,0.8646311715754268],[116,255,77,0.8593932123441689],[116,255,78,0.8536245741246047],[116,255,79,0.8473883084010572],[116,256,64,0.8284168351542619],[116,256,65,0.8491447312393079],[116,256,66,0.8670838529106107],[116,256,67,0.8821903722082476],[116,256,68,0.894480583465377],[116,256,69,0.9040357759607534],[116,256,70,0.9110068123111632],[116,256,71,0.9156184126037384],[116,256,72,0.9181730180393008],[116,256,73,0.91902807952705],[116,256,74,0.9184995735949022],[116,256,75,0.9168328933803707],[116,256,76,0.9142126319539048],[116,256,77,0.910771679418023],[116,256,78,0.9065992654883128],[116,256,79,0.9017479475563154],[116,257,64,0.8403745095272379],[116,257,65,0.864381801475787],[116,257,66,0.885501316827211],[116,257,67,0.9036780904178959],[116,257,68,0.9189205773257842],[116,257,69,0.9313060022085998],[116,257,70,0.9409854105491368],[116,257,71,0.9481884218075658],[116,257,72,0.9532274221743476],[116,257,73,0.9564619556964108],[116,257,74,0.9581895057740512],[116,257,75,0.9586364362717315],[116,257,76,0.9579704160551842],[116,257,77,0.956309664033823],[116,257,78,0.9537311026619816],[116,257,79,0.950277419898998],[116,258,64,0.8473865260106404],[116,258,65,0.8745209885610661],[116,258,66,0.8986778347829836],[116,258,67,0.9197910535499203],[116,258,68,0.937861165508651],[116,258,69,0.9529610360573931],[116,258,70,0.965241387862194],[116,258,71,0.9749360129114503],[116,258,72,0.9823663009407111],[116,258,73,0.9878941577207155],[116,258,74,0.9918011262531456],[116,258,75,0.9942969285077349],[116,258,76,0.9955342643349264],[116,258,77,0.9956182245810686],[116,258,78,0.9946145765007378],[116,258,79,0.9925569214662059],[116,259,64,0.8494750111193173],[116,259,65,0.8795534647610181],[116,259,66,0.9065744313766145],[116,259,67,0.9304610334395661],[116,259,68,0.9512058200977619],[116,259,69,0.9688770262480719],[116,259,70,0.9836245302448141],[116,259,71,0.9956855102420689],[116,259,72,1.0053893119574726],[116,259,73,1.0131004700753503],[116,259,74,1.0190873854313152],[116,259,75,1.023545777338608],[116,259,76,1.0266155592391324],[116,259,77,1.028390438596641],[116,259,78,1.0289263540199718],[116,259,79,1.0282487496163408],[116,260,64,0.8467279320821665],[116,260,65,0.879538614409137],[116,260,66,0.9092225771164649],[116,260,67,0.9356923428760049],[116,260,68,0.9589325121316907],[116,260,69,0.9790064464721624],[116,260,70,0.9960626511804871],[116,260,71,1.0103408569609214],[116,260,72,1.0221772277651144],[116,260,73,1.0319391902258317],[116,260,74,1.0398850079104394],[116,260,75,1.0461992517084377],[116,260,76,1.0510114280132778],[116,260,77,1.0544057824241544],[116,260,78,1.0564299069247745],[116,260,79,1.0571021505391256],[116,261,64,0.8392973661165497],[116,261,65,0.8746027614538452],[116,261,66,0.9067233671637547],[116,261,67,0.9355614566682623],[116,261,68,0.9610937646374902],[116,261,69,0.9833785689075532],[116,261,70,1.0025624735306533],[116,261,71,1.018886892957343],[116,261,72,1.0326935976956668],[116,261,73,1.0443531618119808],[116,261,74,1.0541168813260162],[116,261,75,1.062161208052304],[116,261,76,1.0686077840732828],[116,261,77,1.0735334643764018],[116,261,78,1.076979110731549],[116,261,79,1.0789571568088376],[116,262,64,0.8273966149553793],[116,262,65,0.864936742206712],[116,262,66,0.8992455475294745],[116,262,67,0.9302154845036632],[116,262,68,0.9578155636147052],[116,262,69,0.9820988033645104],[116,262,70,1.0032093858272721],[116,262,71,1.021389516649943],[116,262,72,1.0369853033943501],[116,262,73,1.0503707113268972],[116,262,74,1.0617933591202025],[116,262,75,1.071424741585053],[116,262,76,1.0793813069399656],[116,262,77,1.085734711402602],[116,262,78,1.0905208144835605],[116,262,79,1.0937474149825763],[116,263,64,0.8112961646265849],[116,263,65,0.8507923232911709],[116,263,66,0.8870223887245398],[116,263,67,0.9198694955981979],[116,263,68,0.9492951269690337],[116,263,69,0.9753469020411705],[116,263,70,0.9981660729681737],[116,263,71,1.0179947306955413],[116,263,72,1.0351820079917076],[116,263,73,1.0501054882896719],[116,263,74,1.0630124772559115],[116,263,75,1.0740727630805416],[116,263,76,1.0834003607357736],[116,263,77,1.091064009259195],[116,263,78,1.09709638105915],[116,263,79,1.1015020032422471],[116,264,64,0.7913184904850121],[116,264,65,0.8324774647918999],[116,264,66,0.8703474068634233],[116,264,67,0.9048026951391522],[116,264,68,0.9357975313960567],[116,264,69,0.9633740298890211],[116,264,70,0.9876700213157881],[116,264,71,1.0089265716062639],[116,264,72,1.0274944989269659],[116,264,73,1.043755208912632],[116,264,74,1.0579590848728246],[116,264,75,1.070277501142251],[116,264,76,1.0808248512447394],[116,264,77,1.089669296185193],[116,264,78,1.0968421980736276],[116,264,79,1.1023462390813166],[116,265,64,0.7678317074970118],[116,265,65,0.8103504286050085],[116,265,66,0.8495689322213196],[116,265,67,0.8853534525199467],[116,265,68,0.9176511972148897],[116,265,69,0.946498700588122],[116,265,70,0.9720298981989088],[116,265,71,0.9944839232743886],[116,265,72,1.014211924422126],[116,265,73,1.0315993032625588],[116,265,74,1.0469028888846763],[116,265,75,1.0602989299645826],[116,265,76,1.0719050215349089],[116,265,77,1.0817911100812556],[116,265,78,1.089989159373993],[116,265,79,1.0965014770354478],[116,266,64,0.7412420657773323],[116,266,65,0.7848127319887492],[116,266,66,0.8250835252446549],[116,266,67,0.8619131813670955],[116,266,68,0.8952422311517554],[116,266,69,0.9251015781321633],[116,266,70,0.9516208058176809],[116,266,71,0.9750362144051905],[116,266,72,0.9956979236071207],[116,266,73,1.0139954659162669],[116,266,74,1.030195412518283],[116,266,75,1.0444821225853556],[116,266,76,1.056979186143823],[116,266,77,1.067760689193147],[116,266,78,1.0768611171271774],[116,266,79,1.0842838964577413],[116,267,64,0.7119852913784337],[116,267,65,0.756300946314798],[116,267,66,0.7973282400149161],[116,267,67,0.8349190713591923],[116,267,68,0.8690076270733281],[116,267,69,0.8996191440231414],[116,267,70,0.9268784095515266],[116,267,71,0.9510179998574647],[116,267,72,0.9723856502956623],[116,267,73,0.9913751101101458],[116,267,74,1.0082658677938572],[116,267,75,1.0232535296290177],[116,267,76,1.036470403826532],[116,267,77,1.0479970262990081],[116,267,78,1.057872304501208],[116,267,79,1.0661022793379715],[116,268,64,0.6805167723326084],[116,268,65,0.7252773410205231],[116,268,66,0.7667717351662475],[116,268,67,0.8048456718383993],[116,268,68,0.8394273246703421],[116,268,69,0.8705362300761774],[116,268,70,0.8982919406705648],[116,268,71,0.9229224258922873],[116,268,72,0.9447716904123504],[116,268,73,0.9642377253842224],[116,268,74,0.9816159419471941],[116,268,75,0.9971161835411565],[116,268,76,1.0108820888667271],[116,268,77,1.0230028764010364],[116,268,78,1.033523728939898],[116,268,79,1.04245477816641],[116,269,64,0.6473005899462811],[116,269,65,0.6922193727616077],[116,269,66,0.7339042322561815],[116,269,67,0.7721953272138024],[116,269,68,0.8070151260908331],[116,269,69,0.8383774168338369],[116,269,70,0.8663960734498738],[116,269,71,0.8912935793293738],[116,269,72,0.9134088730704127],[116,269,73,0.9331441387201426],[116,269,74,0.9508134977931179],[116,269,75,0.9666438283137103],[116,269,76,0.980792560950403],[116,269,77,0.9933597179209954],[116,269,78,1.0043985360304883],[116,269,79,1.0139246738416792],[116,270,64,0.6127973953467624],[116,270,65,0.6576080197653038],[116,270,66,0.6992263215897757],[116,270,67,0.7374874641569136],[116,270,68,0.7723084705232955],[116,270,69,0.8036972975902483],[116,270,70,0.8317616766869077],[116,270,71,0.85671772061135],[116,270,72,0.8788979753003924],[116,270,73,0.8987086791733778],[116,270,74,0.9164851880305108],[116,270,75,0.932473974701209],[116,270,76,0.946848533602386],[116,270,77,0.959721667399898],[116,270,78,0.9711563439645902],[116,270,79,0.9811751236229882],[116,271,64,0.5774511312818674],[116,271,65,0.6219149613847111],[116,271,66,0.66323661549754],[116,271,67,0.7012467305896692],[116,271,68,0.7358570667300741],[116,271,69,0.7670696080253038],[116,271,70,0.7949854396223172],[116,271,71,0.8198134007761477],[116,271,72,0.8418783204299667],[116,271,73,0.8615902459998144],[116,271,74,0.8793079834890436],[116,271,75,0.8952998809281193],[116,271,76,0.9097575411857686],[116,271,77,0.9228083477018584],[116,271,78,0.9345265485923944],[116,271,79,0.9449428991266835],[116,272,64,0.5416745991716566],[116,272,65,0.5855886028533752],[116,272,66,0.6264182490664776],[116,272,67,0.6639899864643062],[116,272,68,0.6982103835304267],[116,272,69,0.7290752214484314],[116,272,70,0.7566783722637151],[116,272,71,0.7812204623371328],[116,272,72,0.803017270114554],[116,272,73,0.8224822802764347],[116,272,74,0.8399996153173763],[116,272,75,0.8558614588871348],[116,272,76,0.870279304464141],[116,272,77,0.8833967097220756],[116,272,78,0.8953005990701536],[116,272,79,0.9060311143671717],[116,273,64,0.5058338714126127],[116,273,65,0.5490389452404693],[116,273,66,0.5892242283244613],[116,273,67,0.6262121463352728],[116,273,68,0.6599039982333574],[116,273,69,0.6902890096519813],[116,273,70,0.717453180112371],[116,273,71,0.741587924070877],[116,273,72,0.7629986100185636],[116,273,73,0.7821016400158891],[116,273,74,0.7993079311125606],[116,273,75,0.8149351058280709],[116,273,76,0.8292160347262315],[116,273,77,0.8423118075984858],[116,273,78,0.8543232441004414],[116,273,79,0.8653009438416704],[116,274,64,0.4702765886999022],[116,274,65,0.512660508055633],[116,274,66,0.5520950721593735],[116,274,67,0.5883986612801437],[116,274,68,0.621467063899546],[116,274,69,0.6512824631497351],[116,274,70,0.677922224649486],[116,274,71,0.7015674857382664],[116,274,72,0.7225118163791914],[116,274,73,0.74117386004725],[116,274,74,0.7579923961305454],[116,274,75,0.7733117079562284],[116,274,76,0.7873872096994237],[116,274,77,0.800398621629131],[116,274,78,0.8124616773077437],[116,274,79,0.823638362744222],[116,275,64,0.4356347028014077],[116,275,65,0.4770921214492576],[116,275,66,0.5156761965656423],[116,275,67,0.5512012665390689],[116,275,68,0.5835574076509283],[116,275,69,0.6127193277202407],[116,275,70,0.6387550678174583],[116,275,71,0.6618345120472385],[116,275,72,0.6822381507649163],[116,275,73,0.7003861490192969],[116,275,74,0.7167458862210564],[116,275,75,0.7316891998195516],[116,275,76,0.7454949201911153],[116,275,77,0.7583622366773883],[116,275,78,0.7704225893744923],[116,275,79,0.781750086673091],[116,276,64,0.402593894148045],[116,276,65,0.44300945447955176],[116,276,66,0.4806332598285312],[116,276,67,0.5152757255044778],[116,276,68,0.5468211377124755],[116,276,69,0.5752364293218195],[116,276,70,0.6005797697354831],[116,276,71,0.6230089688603454],[116,276,72,0.6427903228703189],[116,276,73,0.6603448059516872],[116,276,74,0.6761688447690207],[116,276,75,0.6906624211146756],[116,276,76,0.7041283718326293],[116,276,77,0.7167859323352569],[116,276,78,0.7287828011818729],[116,276,79,0.7402057257190937],[116,277,64,0.37169554758510304],[116,277,65,0.41095012508302764],[116,277,66,0.44750012059535593],[116,277,67,0.4811522244350714],[116,277,68,0.5117849445796655],[116,277,69,0.5393572409137566],[116,277,70,0.5639169792084799],[116,277,71,0.5856092048375586],[116,277,72,0.6046850517239049],[116,277,73,0.6215655874232922],[116,277,74,0.6367764413010932],[116,277,75,0.6507460245573655],[116,277,76,0.6638014851752303],[116,277,77,0.6761824160975758],[116,277,78,0.6880530814561501],[116,277,79,0.6995131608531003],[116,278,64,0.3433306675758998],[116,278,65,0.381307128526199],[116,278,66,0.4166717897698785],[116,278,67,0.4492278588057538],[116,278,68,0.47884813329732906],[116,278,69,0.505483472191863],[116,278,70,0.5291710920483685],[116,278,71,0.5500426885744549],[116,278,72,0.5683333904870049],[116,278,73,0.5844636320144064],[116,278,74,0.5989881189578007],[116,278,75,0.6123636807252276],[116,278,76,0.624941801773254],[116,278,77,0.6369824826971494],[116,278,78,0.648666618157773],[116,278,79,0.6601068916452264],[116,279,64,0.31773394323327936],[116,279,65,0.35432225991783844],[116,279,66,0.38839722587751535],[116,279,67,0.41975881829566297],[116,279,68,0.44827421577469795],[116,279,69,0.47388608734561133],[116,279,70,0.49662071221847726],[116,279,71,0.5165959302738747],[116,279,72,0.5340301243582551],[116,279,73,0.5493423534836777],[116,279,74,0.5631160141280575],[116,279,75,0.575836066927574],[116,279,76,0.5878780950601281],[116,279,77,0.5995223081943944],[116,279,78,0.6109660639158845],[116,279,79,0.6223349066300803],[116,280,64,0.2949765704289279],[116,280,65,0.330078313528926],[116,280,66,0.36277092998295],[116,280,67,0.39285139672733116],[116,280,68,0.4201813556889262],[116,280,69,0.44469520480972335],[116,280,70,0.46640802562241745],[116,280,71,0.48542334737686965],[116,280,72,0.5019421437872164],[116,280,73,0.5163813403465717],[116,280,74,0.5293524136734334],[116,280,75,0.5413679253021505],[116,280,76,0.5528270828199189],[116,280,77,0.5640298789811613],[116,280,78,0.5751897508060593],[116,280,79,0.5864447586632896],[116,281,64,0.2749578309799914],[116,281,65,0.30849005891968156],[116,281,66,0.33972334015944794],[116,281,67,0.3684518269561906],[116,281,68,0.39453166597621797],[116,281,69,0.41788887900925753],[116,281,70,0.43852708653638955],[116,281,71,0.4565350741518248],[116,281,72,0.47209579299593674],[116,281,73,0.4856232618540991],[116,281,74,0.4977562497408248],[116,281,75,0.5090341901373125],[116,281,76,0.5198792412529234],[116,281,77,0.5306105556971964],[116,281,78,0.5414570744696853],[116,281,79,0.5525688452676711],[116,282,64,0.25739542891308415],[116,282,65,0.2892939938738587],[116,282,66,0.3190100255101448],[116,282,67,0.34633494071077364],[116,282,68,0.3711193589109986],[116,282,69,0.39328076409872165],[116,282,70,0.4128110166855268],[116,282,71,0.42978371524244063],[116,282,72,0.4443631938092317],[116,282,73,0.456959780372655],[116,282,74,0.46823863216445943],[116,282,75,0.478765184420643],[116,282,76,0.48898372063637147],[116,282,77,0.49923177206036895],[116,282,78,0.5097530475761682],[116,282,79,0.520708893970276],[116,283,64,0.24181458380643614],[116,283,65,0.27203687414096583],[116,283,66,0.30019967974188366],[116,283,67,0.3260916533841065],[116,283,68,0.34955774877353696],[116,283,69,0.37050665969552776],[116,283,70,0.3889181169645125],[116,283,71,0.4048500431747252],[116,283,72,0.4184475447937378],[116,283,73,0.430116470164949],[116,283,74,0.44054741845712625],[116,283,75,0.4503308856138373],[116,283,76,0.4599323625799843],[116,283,77,0.4697068686103357],[116,283,78,0.47991202262756655],[116,283,79,0.4907196526298556],[116,284,64,0.22755785261075998],[116,284,65,0.25608470797735183],[116,284,66,0.28268229203731005],[116,284,67,0.307136317531836],[116,284,68,0.3292857965763625],[116,284,69,0.34903025728199927],[116,284,70,0.36633682725951816],[116,284,71,0.3812471840058012],[116,284,72,0.39388654507555765],[116,284,73,0.4046554904799658],[116,284,74,0.4142691456429692],[116,284,75,0.42334212528979265],[116,284,76,0.43236017728281184],[116,284,77,0.44169485911501316],[116,284,78,0.4516167615271759],[116,284,79,0.4623072792488335],[116,285,64,0.21444873829737834],[116,285,65,0.2412774669154758],[116,285,66,0.2663141371723598],[116,285,67,0.28934126682191774],[116,285,68,0.31019159040779626],[116,285,69,0.3287550575793317],[116,285,70,0.34498570863415357],[116,285,71,0.3589084272873823],[116,285,72,0.3706279346360498],[116,285,73,0.3805386721429055],[116,285,74,0.3893790238895603],[116,285,75,0.397786447564048],[116,285,76,0.40626571331805134],[116,285,77,0.41520373062605387],[116,285,78,0.4248829328314667],[116,285,79,0.43549321937979063],[116,286,64,0.20296451975985735],[116,286,65,0.22810075309733335],[116,286,66,0.25158795343752277],[116,286,67,0.2732052156012065],[116,286,68,0.29277872033814784],[116,286,69,0.31018852162574906],[116,286,70,0.3253752227835005],[116,286,71,0.33834654140314313],[116,286,72,0.34918631139913825],[116,286,73,0.3582818128672921],[116,286,74,0.3663926136214519],[116,286,75,0.3741770036446816],[116,286,76,0.3821569513303879],[116,286,77,0.3907330769662382],[116,286,78,0.40019819633275083],[116,286,79,0.4107494344166181],[116,287,64,0.19351404797734376],[116,287,65,0.2169732440542544],[116,287,66,0.23893088707562274],[116,287,67,0.2591624576130903],[116,287,68,0.27748737822930925],[116,287,69,0.2937756000718169],[116,287,70,0.3079540910741041],[116,287,71,0.3200132257638084],[116,287,72,0.33001579840139983],[116,287,73,0.3383407981658674],[116,287,74,0.34576617542561827],[116,287,75,0.35296837962970556],[116,287,76,0.36048422434552174],[116,287,77,0.3687259936029391],[116,287,78,0.3779951329678638],[116,287,79,0.3884945253452629],[116,288,64,0.18640277906217445],[116,288,65,0.20821179257587852],[116,288,66,0.2286697373777047],[116,288,67,0.2475483284221625],[116,288,68,0.2646601019327426],[116,288,69,0.2798648145771411],[116,288,70,0.2930757581841419],[116,288,71,0.3042659900020895],[116,288,72,0.31347735896195333],[116,288,73,0.3210793753997848],[116,288,74,0.32786495485682104],[116,288,75,0.3345254699778654],[116,288,76,0.3474383138574353],[116,288,77,0.35810011834746436],[116,288,78,0.3659394171670709],[116,288,79,0.3706893921626985],[116,289,64,0.18184249976573022],[116,289,65,0.20204065436271756],[116,289,66,0.22103971064410094],[116,289,67,0.23860750966221272],[116,289,68,0.2545496530065492],[116,289,69,0.26871573071467836],[116,289,70,0.28100547972808937],[116,289,71,0.29137487289291647],[116,289,72,0.2998451596946174],[116,289,73,0.3067751693923683],[116,289,74,0.31755621857769434],[116,289,75,0.3331032775129236],[116,289,76,0.3467513599859131],[116,289,77,0.3580388436908327],[116,289,78,0.3665936024765162],[116,289,79,0.3721394291159408],[116,290,64,0.17996063948054664],[116,290,65,0.19860033989854486],[116,290,66,0.21619283513685378],[116,290,67,0.23250203004294465],[116,290,68,0.24732662593866583],[116,290,69,0.26050619613402215],[116,290,70,0.2719272079702829],[116,290,71,0.2815289913923549],[116,290,72,0.2893127950456311],[116,290,73,0.295625590426122],[116,290,74,0.31295215260380504],[116,290,75,0.3290118605562786],[116,290,76,0.3432864103824155],[116,290,77,0.3553074068587549],[116,290,78,0.36469414318698823],[116,290,79,0.3711604950824442],[116,291,64,0.18080916874003428],[116,291,65,0.19795609054388058],[116,291,66,0.21420603702467722],[116,291,67,0.22931896311652653],[116,291,68,0.2430867888772122],[116,291,69,0.2553393439846142],[116,291,70,0.2659502756282716],[116,291,71,0.2748429197960257],[116,291,72,0.2819993733576965],[116,291,73,0.2879725639552715],[116,291,74,0.3061259314011593],[116,291,75,0.3228009165561263],[116,291,76,0.3378129686932929],[116,291,77,0.3506862369004072],[116,291,78,0.3610306360235106],[116,291,79,0.3685492190386213],[116,292,64,0.18437308421491935],[116,292,65,0.20010597884977555],[116,292,66,0.21508887731974863],[116,292,67,0.22907782180334668],[116,292,68,0.24185815586744291],[116,292,69,0.2532503615984089],[116,292,70,0.26311587776553547],[116,292,71,0.27136289901667565],[116,292,72,0.27795546446004066],[116,292,73,0.2832135767125758],[116,292,74,0.29753295894854903],[116,292,75,0.3149293098755067],[116,292,76,0.3307929657904166],[116,292,77,0.34464037696880523],[116,292,78,0.3560716319384857],[116,292,79,0.364778317385851],[116,293,64,0.19057848020685636],[116,293,65,0.2049886330922627],[116,293,66,0.21879094980662658],[116,293,67,0.23173764967719784],[116,293,68,0.24360779059545898],[116,293,69,0.2542130244320832],[116,293,70,0.26340335177362706],[116,293,71,0.2710728759808961],[116,293,72,0.2771689087844592],[116,293,73,0.28199655517334665],[116,293,74,0.2874310672454033],[116,293,75,0.3056529038971626],[116,293,76,0.3224800208113707],[116,293,77,0.33742169635551605],[116,293,78,0.35006838578484917],[116,293,79,0.3601000754166434],[116,294,64,0.19930020663912934],[116,294,65,0.21249058602743442],[116,294,66,0.22520893996328356],[116,294,67,0.2372038090099152],[116,294,68,0.24824834163873916],[116,294,69,0.25814599526888404],[116,294,70,0.26673625544383806],[116,294,71,0.2739003731451276],[116,294,72,0.27957048800749335],[116,294,73,0.2840360497718274],[116,294,74,0.288086388940052],[116,294,75,0.2951942154949254],[116,294,76,0.3130928910218033],[116,294,77,0.3292454060471778],[116,294,78,0.34323332362715153],[116,294,79,0.35472533576765924],[116,295,64,0.2103691135441798],[116,295,65,0.22245324786689818],[116,295,66,0.23419334487402835],[116,295,67,0.24533446557525562],[116,295,68,0.2556443092232861],[116,295,69,0.2649188886799149],[116,295,70,0.2729882431282119],[116,295,71,0.2797221881307648],[116,295,72,0.2850394572185601],[116,295,73,0.289213251474772],[116,295,74,0.29301511260480934],[116,295,75,0.29712223161188683],[116,295,76,0.30282151147460096],[116,295,77,0.3202961690820119],[116,295,78,0.33574624914937784],[116,295,79,0.34882983031218495],[116,296,64,0.22357888204845094],[116,296,65,0.2346795034740512],[116,296,66,0.24555485413470501],[116,296,67,0.255946770212365],[116,296,68,0.26561804348770063],[116,296,69,0.27435810074514677],[116,296,70,0.281988739990155],[116,296,71,0.2883699234786042],[116,296,72,0.2934089386142685],[116,296,73,0.29736232474943397],[116,296,74,0.3009789669718973],[116,296,75,0.304915602203133],[116,296,76,0.30968746414334114],[116,296,77,0.3156829387276663],[116,296,78,0.32775920714680534],[116,296,79,0.3425591842412724],[116,297,64,0.23869244185404415],[116,297,65,0.24893993378071644],[116,297,66,0.25907039174976154],[116,297,67,0.2688227371484578],[116,297,68,0.27795547425383993],[116,297,69,0.28625240403382984],[116,297,70,0.29352841434434596],[116,297,71,0.299635346522336],[116,297,72,0.3044711767186193],[116,297,73,0.30827556224666763],[116,297,74,0.3117700492404745],[116,297,75,0.3155865100432496],[116,297,76,0.32021889326719327],[116,297,77,0.326037590778024],[116,297,78,0.3333026819589342],[116,297,79,0.3421760552540256],[116,298,64,0.2554479752175575],[116,298,65,0.2649786614244861],[116,298,66,0.274488819021505],[116,298,67,0.2837148190810221],[116,298,68,0.29241157230435844],[116,298,69,0.3003583078446087],[116,298,70,0.3073644480862435],[116,298,71,0.3132755793814035],[116,298,72,0.3179826551294346],[116,298,73,0.3217084318679396],[116,298,74,0.3251426845678085],[116,298,75,0.3288882407939393],[116,298,76,0.33341433345226823],[116,298,77,0.3390706302726421],[116,298,78,0.3461001833933428],[116,298,79,0.35465129904731535],[116,299,64,0.2735645074258439],[116,299,65,0.2825188206065149],[116,299,66,0.2915362984312987],[116,299,67,0.3003511790192888],[116,299,68,0.3087155421668699],[116,299,69,0.3164051837050554],[116,299,70,0.32322560521089283],[116,299,71,0.3290181190728856],[116,299,72,0.33366907479064023],[116,299,73,0.337384516215827],[116,299,74,0.34081832413631885],[116,299,75,0.34454038683186633],[116,299,76,0.3489920413332603],[116,299,77,0.35449971815173653],[116,299,78,0.36128755067967727],[116,299,79,0.3694889492626595],[116,300,64,0.29274708376901437],[116,300,65,0.301267651170089],[116,300,66,0.3099213185130145],[116,300,67,0.31844065888529766],[116,300,68,0.3265757464050686],[116,300,69,0.3341001561309862],[116,300,70,0.3408170984214164],[116,300,71,0.34656568774283913],[116,300,72,0.3512301937908652],[116,300,73,0.35500034442852196],[116,300,74,0.35849036572423504],[116,300,75,0.36223364805431246],[116,300,76,0.3666407441160023],[116,300,77,0.37201258399229226],[116,300,78,0.3785527009305921],[116,300,79,0.3863784678353389],[116,301,64,0.31269153301019614],[116,301,65,0.3209212168994821],[116,301,66,0.3293393797182718],[116,301,67,0.3376774448740791],[116,301,68,0.34568436141632286],[116,301,69,0.3531327586450529],[116,301,70,0.3598252538266607],[116,301,71,0.3656009130165246],[116,301,72,0.3703445286877645],[116,301,73,0.37423011639769616],[116,301,74,0.3778288967791874],[116,301,75,0.38163458435877684],[116,301,76,0.3860243874352259],[116,301,77,0.3912717514185383],[116,301,78,0.39755816010597483],[116,301,79,0.40498399489510617],[116,302,64,0.33308881735250195],[116,302,65,0.34116874803955677],[116,302,66,0.3494773412739032],[116,302,67,0.3577454295734037],[116,302,68,0.3657217647362049],[116,302,69,0.37317935505509914],[116,302,70,0.3799219737285138],[116,302,71,0.38579083846808093],[116,302,72,0.3906739173586513],[116,302,73,0.39473031937036496],[116,302,74,0.39848535999541485],[116,302,75,0.40239031979724665],[116,302,76,0.40678686290960947],[116,302,77,0.41191926989706773],[116,302,78,0.4179457766498427],[116,302,79,0.42494901931302814],[116,303,64,0.35362896890320894],[116,303,65,0.36169660803609344],[116,303,66,0.37001742903162627],[116,303,67,0.3783222708430536],[116,303,68,0.3863606538498809],[116,303,69,0.3939073259921557],[116,303,70,0.4007689974987236],[116,303,71,0.4067912642094119],[116,303,72,0.4118679433771547],[116,303,73,0.41614423693439695],[116,303,74,0.42009714139416143],[116,303,75,0.42413319840464725],[116,303,76,0.4285567153935474],[116,303,77,0.4335814529159687],[116,303,78,0.43934146669201657],[116,303,79,0.44590110433408026],[116,304,64,0.37400461263446894],[116,304,65,0.38219188449620267],[116,304,66,0.3906409043093124],[116,304,67,0.3990831474530522],[116,304,68,0.4072698965098521],[116,304,69,0.4149790207076466],[116,304,70,0.4220219605448612],[116,304,71,0.4282509175980187],[116,304,72,0.4335682219157204],[116,304,73,0.4381063503875839],[116,304,74,0.4422920809072828],[116,304,75,0.4464853917015905],[116,304,76,0.45095182992586336],[116,304,77,0.45587362254829045],[116,304,78,0.4613599908149962],[116,304,79,0.467456668296021],[116,305,64,0.39391407584161414],[116,305,65,0.4023456043698413],[116,305,66,0.411031393724813],[116,305,67,0.41970421148175335],[116,305,68,0.4281181125608784],[116,305,69,0.43605547413053836],[116,305,70,0.44333425136606974],[116,305,71,0.44981545406431506],[116,305,72,0.45541254717438606],[116,305,73,0.4602466324905873],[116,305,74,0.4646929054642605],[116,305,75,0.46906345787149684],[116,305,76,0.4735840983754225],[116,305,77,0.4784048603996796],[116,305,78,0.48360976238574793],[116,305,79,0.48922582043413376],[116,306,64,0.41306408409821666],[116,306,65,0.4218555733516314],[116,306,66,0.43087788002160876],[116,306,67,0.43986573747311564],[116,306,68,0.44857698727147793],[116,306,69,0.45679988918392245],[116,306,70,0.4643606666981789],[116,306,71,0.47113128805810617],[116,306,72,0.47703890133561216],[116,306,73,0.4821947336036523],[116,306,74,0.48692158458262025],[116,306,75,0.49148285261220526],[116,306,76,0.49606406578387086],[116,306,77,0.5007827649405223],[116,306,78,0.5056976874528523],[116,306,79,0.5108172517723928],[116,307,64,0.4311720437082067],[116,307,65,0.4404288395032529],[116,307,66,0.44987735388649175],[116,307,67,0.45925496835331675],[116,307,68,0.46832431617210013],[116,307,69,0.47688088436104376],[116,307,70,0.48476086474812174],[116,307,71,0.4918492541140794],[116,307,72,0.4980893250449343],[116,307,73,0.5035840602067653],[116,307,74,0.5086036084613471],[116,307,75,0.5133623916615698],[116,307,76,0.518005556404906],[116,307,77,0.5226182152219164],[116,307,78,0.5272340362082566],[116,307,79,0.5318431811002219],[116,308,64,0.44796791065492325],[116,308,65,0.45778378109631973],[116,308,66,0.4677371267592491],[116,308,67,0.47756865810673377],[116,308,68,0.48704678140005503],[116,308,69,0.4959755065609384],[116,308,70,0.5042026165178897],[116,308,71,0.5116280980366266],[116,308,72,0.5182136494178348],[116,308,73,0.524055745803733],[116,308,74,0.529372188577851],[116,308,75,0.5343286649976775],[116,308,76,0.5390302794408003],[116,308,77,0.5435301409762643],[116,308,78,0.5478373460144872],[116,308,79,0.5519243560357616],[116,309,64,0.4631956460477661],[116,309,65,0.47365181867636],[116,309,66,0.4841768046348992],[116,309,67,0.49451531121176817],[116,309,68,0.5044424595516009],[116,309,69,0.5137720091839927],[116,309,70,0.5223648552182472],[116,309,71,0.5301377982041202],[116,309,72,0.5370730895728586],[116,309,73,0.5432625142101122],[116,309,74,0.5488723807883173],[116,309,75,0.5540204027134269],[116,309,76,0.5587724144758104],[116,309,77,0.5631502991020287],[116,309,78,0.5671393559967775],[116,309,79,0.5706951091750181],[116,310,64,0.476614258064879],[116,310,65,0.4877787513463927],[116,310,66,0.49892992285706106],[116,310,67,0.5098171188351871],[116,310,68,0.5202230610399698],[116,310,69,0.5299723954863069],[116,310,70,0.5389405237712069],[116,310,71,0.5470627169917708],[116,310,72,0.5543436996902255],[116,310,73,0.560872435224367],[116,310,74,0.566765130930947],[116,310,75,0.5720927925650947],[116,310,76,0.5768831766062384],[116,310,77,0.5811280565325467],[116,310,78,0.5847899732001312],[116,310,79,0.5878084693270378],[116,311,64,0.48799843039394175],[116,311,65,0.4999257172721066],[116,311,66,0.5117452419043622],[116,311,67,0.5232115917867854],[116,311,68,0.5341159009610077],[116,311,69,0.5442947271944332],[116,311,70,0.5536392204027034],[116,311,71,0.5621045823143632],[116,311,72,0.5697196895970982],[116,311,73,0.5765725726832731],[116,311,74,0.58273124293296],[116,311,75,0.5882217491956254],[116,311,76,0.5930353612677287],[116,311,77,0.5971351794893345],[116,311,78,0.6004622703116145],[116,311,79,0.6029413278352527],[116,312,64,0.49713873716925877],[116,312,65,0.5098697784069041],[116,312,66,0.5223877041682453],[116,312,67,0.5344528902328276],[116,312,68,0.5458656014650091],[116,312,69,0.5564751983791643],[116,312,70,0.5661896423242648],[116,312,71,0.5749852992877956],[116,312,72,0.5829166028785598],[116,312,73,0.5900725249007497],[116,312,74,0.5964752694206747],[116,312,75,0.6021081350320883],[116,312,76,0.6069278687593742],[116,312,77,0.6108706291195938],[116,312,78,0.6138575149477025],[116,312,79,0.6157996599849547],[116,313,64,0.5038414444062985],[116,313,65,0.5174041294378912],[116,313,66,0.530639051723168],[116,313,67,0.5433128501691733],[116,313,68,0.5552355256355521],[116,313,69,0.5662699745890944],[116,313,70,0.5763418275043034],[116,313,71,0.5854495920099498],[116,313,72,0.5936743565147186],[116,313,73,0.6011078574904385],[116,313,74,0.6077293248328811],[116,313,75,0.6134819328574073],[116,313,76,0.6182902084646453],[116,313,77,0.6220653635178318],[116,313,78,0.6247102305065182],[116,313,79,0.6261238014966464],[116,314,64,0.507927897932841],[116,314,65,0.5223379309520396],[116,314,66,0.5362981050885033],[116,314,67,0.5495817066534782],[116,314,68,0.5620089428748108],[116,314,69,0.5734567972435145],[116,314,70,0.5838691945286696],[116,314,71,0.5932674754606123],[116,314,72,0.6017601420437588],[116,314,73,0.6094434285719306],[116,314,74,0.6162568210374931],[116,314,75,0.6221063700564509],[116,314,76,0.6268869827692991],[116,314,77,0.6304871461318309],[116,314,78,0.6327932885852525],[116,314,79,0.6336937801056178],[116,315,64,0.5092334978178995],[116,315,65,0.5244957668236248],[116,315,66,0.539180702983162],[116,315,67,0.5530685137974091],[116,315,68,0.5659899257961912],[116,315,69,0.577836353285391],[116,315,70,0.58857038055114],[116,315,71,0.5982365575210331],[116,315,72,0.6069711882514235],[116,315,73,0.6148766063610378],[116,315,74,0.6218561254517847],[116,315,75,0.6277819945366789],[116,315,76,0.6325223506763921],[116,315,77,0.6359453605530059],[116,315,78,0.6379230329627403],[116,315,79,0.6383347022276573],[116,316,64,0.5076062592968761],[116,316,65,0.5237167258214455],[116,316,66,0.5391193030715153],[116,316,67,0.553601261517524],[116,316,68,0.5670039786230374],[116,316,69,0.5792334100932709],[116,316,70,0.5902708773327581],[116,316,71,0.6001841711121303],[116,316,72,0.6091373853860337],[116,316,73,0.6172403791433071],[116,316,74,0.6243641416655079],[116,316,75,0.6303507023227526],[116,316,76,0.6350444711178787],[116,316,77,0.6382958316907281],[116,316,78,0.6399644351468504],[116,316,79,0.639922194710639],[116,317,64,0.5029049601940498],[116,317,65,0.519853107436911],[116,317,66,0.5359622437016691],[116,317,67,0.5510266890458329],[116,317,68,0.5648983970943615],[116,317,69,0.5774977156530087],[116,317,70,0.5888244653708757],[116,317,71,0.5989693364521367],[116,317,72,0.6081237708997829],[116,317,73,0.6164063576314576],[116,317,74,0.6236598125675009],[116,317,75,0.6296997168256442],[116,317,76,0.6343499259632909],[116,317,77,0.6374456533310388],[116,317,78,0.6388362814870523],[116,317,79,0.6383879016722817],[116,318,64,0.4949968748426046],[116,318,65,0.5127687519331763],[116,318,66,0.529572666636248],[116,318,67,0.5452097952001763],[116,318,68,0.5595423598777303],[116,318,69,0.572504663989439],[116,318,70,0.5841144461180099],[116,318,71,0.5944845534337783],[116,318,72,0.6038328767163844],[116,318,73,0.612287669706805],[116,318,74,0.619667545975858],[116,318,75,0.6257655197863203],[116,318,76,0.6303881227255423],[116,318,77,0.6333580220798051],[116,318,78,0.6345163918522139],[116,318,79,0.6337250364241394],[116,319,64,0.4837550945006769],[116,319,65,0.5023369946138586],[116,319,66,0.5198271007742886],[116,319,67,0.5360330454130876],[116,319,68,0.5508267514880375],[116,319,69,0.5641557258567911],[116,319,70,0.5760546722893745],[116,319,71,0.5866574241199349],[116,319,72,0.5962069380240947],[116,319,73,0.6048417475437758],[116,319,74,0.612360562770819],[116,319,75,0.6185377338932156],[116,319,76,0.6231656769631703],[116,319,77,0.6260570776896822],[116,319,78,0.6270468698730524],[116,319,79,0.6259939884813104],[117,-64,64,64.0],[117,-64,65,64.0],[117,-64,66,64.0],[117,-64,67,64.0],[117,-64,68,64.0],[117,-64,69,64.0],[117,-64,70,64.0],[117,-64,71,64.0],[117,-64,72,64.0],[117,-64,73,64.0],[117,-64,74,64.0],[117,-64,75,64.0],[117,-64,76,64.0],[117,-64,77,64.0],[117,-64,78,64.0],[117,-64,79,64.0],[117,-63,64,64.0],[117,-63,65,64.0],[117,-63,66,64.0],[117,-63,67,64.0],[117,-63,68,64.0],[117,-63,69,64.0],[117,-63,70,64.0],[117,-63,71,64.0],[117,-63,72,64.0],[117,-63,73,64.0],[117,-63,74,64.0],[117,-63,75,64.0],[117,-63,76,64.0],[117,-63,77,64.0],[117,-63,78,64.0],[117,-63,79,64.0],[117,-62,64,64.0],[117,-62,65,64.0],[117,-62,66,64.0],[117,-62,67,64.0],[117,-62,68,64.0],[117,-62,69,64.0],[117,-62,70,64.0],[117,-62,71,64.0],[117,-62,72,64.0],[117,-62,73,64.0],[117,-62,74,64.0],[117,-62,75,64.0],[117,-62,76,64.0],[117,-62,77,64.0],[117,-62,78,64.0],[117,-62,79,64.0],[117,-61,64,64.0],[117,-61,65,64.0],[117,-61,66,64.0],[117,-61,67,64.0],[117,-61,68,64.0],[117,-61,69,64.0],[117,-61,70,64.0],[117,-61,71,64.0],[117,-61,72,64.0],[117,-61,73,64.0],[117,-61,74,64.0],[117,-61,75,64.0],[117,-61,76,64.0],[117,-61,77,64.0],[117,-61,78,64.0],[117,-61,79,64.0],[117,-60,64,64.0],[117,-60,65,64.0],[117,-60,66,64.0],[117,-60,67,64.0],[117,-60,68,64.0],[117,-60,69,64.0],[117,-60,70,64.0],[117,-60,71,64.0],[117,-60,72,64.0],[117,-60,73,64.0],[117,-60,74,64.0],[117,-60,75,64.0],[117,-60,76,64.0],[117,-60,77,64.0],[117,-60,78,64.0],[117,-60,79,64.0],[117,-59,64,64.0],[117,-59,65,64.0],[117,-59,66,64.0],[117,-59,67,64.0],[117,-59,68,64.0],[117,-59,69,64.0],[117,-59,70,64.0],[117,-59,71,64.0],[117,-59,72,64.0],[117,-59,73,64.0],[117,-59,74,64.0],[117,-59,75,64.0],[117,-59,76,64.0],[117,-59,77,64.0],[117,-59,78,64.0],[117,-59,79,64.0],[117,-58,64,64.0],[117,-58,65,64.0],[117,-58,66,64.0],[117,-58,67,64.0],[117,-58,68,64.0],[117,-58,69,64.0],[117,-58,70,64.0],[117,-58,71,64.0],[117,-58,72,64.0],[117,-58,73,64.0],[117,-58,74,64.0],[117,-58,75,64.0],[117,-58,76,64.0],[117,-58,77,64.0],[117,-58,78,64.0],[117,-58,79,64.0],[117,-57,64,64.0],[117,-57,65,64.0],[117,-57,66,64.0],[117,-57,67,64.0],[117,-57,68,64.0],[117,-57,69,64.0],[117,-57,70,64.0],[117,-57,71,64.0],[117,-57,72,64.0],[117,-57,73,64.0],[117,-57,74,64.0],[117,-57,75,64.0],[117,-57,76,64.0],[117,-57,77,64.0],[117,-57,78,64.0],[117,-57,79,64.0],[117,-56,64,64.0],[117,-56,65,64.0],[117,-56,66,64.0],[117,-56,67,64.0],[117,-56,68,64.0],[117,-56,69,64.0],[117,-56,70,64.0],[117,-56,71,64.0],[117,-56,72,64.0],[117,-56,73,64.0],[117,-56,74,64.0],[117,-56,75,64.0],[117,-56,76,64.0],[117,-56,77,64.0],[117,-56,78,64.0],[117,-56,79,64.0],[117,-55,64,64.0],[117,-55,65,64.0],[117,-55,66,64.0],[117,-55,67,64.0],[117,-55,68,64.0],[117,-55,69,64.0],[117,-55,70,64.0],[117,-55,71,64.0],[117,-55,72,64.0],[117,-55,73,64.0],[117,-55,74,64.0],[117,-55,75,64.0],[117,-55,76,64.0],[117,-55,77,64.0],[117,-55,78,64.0],[117,-55,79,64.0],[117,-54,64,64.0],[117,-54,65,64.0],[117,-54,66,64.0],[117,-54,67,64.0],[117,-54,68,64.0],[117,-54,69,64.0],[117,-54,70,64.0],[117,-54,71,64.0],[117,-54,72,64.0],[117,-54,73,64.0],[117,-54,74,64.0],[117,-54,75,64.0],[117,-54,76,64.0],[117,-54,77,64.0],[117,-54,78,64.0],[117,-54,79,64.0],[117,-53,64,64.0],[117,-53,65,64.0],[117,-53,66,64.0],[117,-53,67,64.0],[117,-53,68,64.0],[117,-53,69,64.0],[117,-53,70,64.0],[117,-53,71,64.0],[117,-53,72,64.0],[117,-53,73,64.0],[117,-53,74,64.0],[117,-53,75,64.0],[117,-53,76,64.0],[117,-53,77,64.0],[117,-53,78,64.0],[117,-53,79,64.0],[117,-52,64,64.0],[117,-52,65,64.0],[117,-52,66,64.0],[117,-52,67,64.0],[117,-52,68,64.0],[117,-52,69,64.0],[117,-52,70,64.0],[117,-52,71,64.0],[117,-52,72,64.0],[117,-52,73,64.0],[117,-52,74,64.0],[117,-52,75,64.0],[117,-52,76,64.0],[117,-52,77,64.0],[117,-52,78,64.0],[117,-52,79,64.0],[117,-51,64,64.0],[117,-51,65,64.0],[117,-51,66,64.0],[117,-51,67,64.0],[117,-51,68,64.0],[117,-51,69,64.0],[117,-51,70,64.0],[117,-51,71,64.0],[117,-51,72,64.0],[117,-51,73,64.0],[117,-51,74,64.0],[117,-51,75,64.0],[117,-51,76,64.0],[117,-51,77,64.0],[117,-51,78,64.0],[117,-51,79,64.0],[117,-50,64,64.0],[117,-50,65,64.0],[117,-50,66,64.0],[117,-50,67,64.0],[117,-50,68,64.0],[117,-50,69,64.0],[117,-50,70,64.0],[117,-50,71,64.0],[117,-50,72,64.0],[117,-50,73,64.0],[117,-50,74,64.0],[117,-50,75,64.0],[117,-50,76,64.0],[117,-50,77,64.0],[117,-50,78,64.0],[117,-50,79,64.0],[117,-49,64,64.0],[117,-49,65,64.0],[117,-49,66,64.0],[117,-49,67,64.0],[117,-49,68,64.0],[117,-49,69,64.0],[117,-49,70,64.0],[117,-49,71,64.0],[117,-49,72,64.0],[117,-49,73,64.0],[117,-49,74,64.0],[117,-49,75,64.0],[117,-49,76,64.0],[117,-49,77,64.0],[117,-49,78,64.0],[117,-49,79,64.0],[117,-48,64,64.0],[117,-48,65,64.0],[117,-48,66,64.0],[117,-48,67,64.0],[117,-48,68,64.0],[117,-48,69,64.0],[117,-48,70,64.0],[117,-48,71,64.0],[117,-48,72,64.0],[117,-48,73,64.0],[117,-48,74,64.0],[117,-48,75,64.0],[117,-48,76,64.0],[117,-48,77,64.0],[117,-48,78,64.0],[117,-48,79,64.0],[117,-47,64,64.0],[117,-47,65,64.0],[117,-47,66,64.0],[117,-47,67,64.0],[117,-47,68,64.0],[117,-47,69,64.0],[117,-47,70,64.0],[117,-47,71,64.0],[117,-47,72,64.0],[117,-47,73,64.0],[117,-47,74,64.0],[117,-47,75,64.0],[117,-47,76,64.0],[117,-47,77,64.0],[117,-47,78,64.0],[117,-47,79,64.0],[117,-46,64,64.0],[117,-46,65,64.0],[117,-46,66,64.0],[117,-46,67,64.0],[117,-46,68,64.0],[117,-46,69,64.0],[117,-46,70,64.0],[117,-46,71,64.0],[117,-46,72,64.0],[117,-46,73,64.0],[117,-46,74,64.0],[117,-46,75,64.0],[117,-46,76,64.0],[117,-46,77,64.0],[117,-46,78,64.0],[117,-46,79,64.0],[117,-45,64,64.0],[117,-45,65,64.0],[117,-45,66,64.0],[117,-45,67,64.0],[117,-45,68,64.0],[117,-45,69,64.0],[117,-45,70,64.0],[117,-45,71,64.0],[117,-45,72,64.0],[117,-45,73,64.0],[117,-45,74,64.0],[117,-45,75,64.0],[117,-45,76,64.0],[117,-45,77,64.0],[117,-45,78,64.0],[117,-45,79,64.0],[117,-44,64,64.0],[117,-44,65,64.0],[117,-44,66,64.0],[117,-44,67,64.0],[117,-44,68,64.0],[117,-44,69,64.0],[117,-44,70,64.0],[117,-44,71,64.0],[117,-44,72,64.0],[117,-44,73,64.0],[117,-44,74,64.0],[117,-44,75,64.0],[117,-44,76,64.0],[117,-44,77,64.0],[117,-44,78,64.0],[117,-44,79,64.0],[117,-43,64,64.0],[117,-43,65,64.0],[117,-43,66,64.0],[117,-43,67,64.0],[117,-43,68,64.0],[117,-43,69,64.0],[117,-43,70,64.0],[117,-43,71,64.0],[117,-43,72,64.0],[117,-43,73,64.0],[117,-43,74,64.0],[117,-43,75,64.0],[117,-43,76,64.0],[117,-43,77,64.0],[117,-43,78,64.0],[117,-43,79,64.0],[117,-42,64,64.0],[117,-42,65,64.0],[117,-42,66,64.0],[117,-42,67,64.0],[117,-42,68,64.0],[117,-42,69,64.0],[117,-42,70,64.0],[117,-42,71,64.0],[117,-42,72,64.0],[117,-42,73,64.0],[117,-42,74,64.0],[117,-42,75,64.0],[117,-42,76,64.0],[117,-42,77,64.0],[117,-42,78,64.0],[117,-42,79,64.0],[117,-41,64,64.0],[117,-41,65,64.0],[117,-41,66,64.0],[117,-41,67,64.0],[117,-41,68,64.0],[117,-41,69,64.0],[117,-41,70,64.0],[117,-41,71,64.0],[117,-41,72,64.0],[117,-41,73,64.0],[117,-41,74,64.0],[117,-41,75,64.0],[117,-41,76,64.0],[117,-41,77,64.0],[117,-41,78,64.0],[117,-41,79,64.0],[117,-40,64,64.0],[117,-40,65,64.0],[117,-40,66,64.0],[117,-40,67,64.0],[117,-40,68,64.0],[117,-40,69,64.0],[117,-40,70,64.0],[117,-40,71,64.0],[117,-40,72,64.0],[117,-40,73,64.0],[117,-40,74,64.0],[117,-40,75,64.0],[117,-40,76,64.0],[117,-40,77,64.0],[117,-40,78,64.0],[117,-40,79,64.0],[117,-39,64,64.0],[117,-39,65,64.0],[117,-39,66,64.0],[117,-39,67,64.0],[117,-39,68,64.0],[117,-39,69,64.0],[117,-39,70,64.0],[117,-39,71,64.0],[117,-39,72,64.0],[117,-39,73,64.0],[117,-39,74,64.0],[117,-39,75,64.0],[117,-39,76,64.0],[117,-39,77,64.0],[117,-39,78,64.0],[117,-39,79,64.0],[117,-38,64,64.0],[117,-38,65,64.0],[117,-38,66,64.0],[117,-38,67,64.0],[117,-38,68,64.0],[117,-38,69,64.0],[117,-38,70,64.0],[117,-38,71,64.0],[117,-38,72,64.0],[117,-38,73,64.0],[117,-38,74,64.0],[117,-38,75,64.0],[117,-38,76,64.0],[117,-38,77,64.0],[117,-38,78,64.0],[117,-38,79,64.0],[117,-37,64,64.0],[117,-37,65,64.0],[117,-37,66,64.0],[117,-37,67,64.0],[117,-37,68,64.0],[117,-37,69,64.0],[117,-37,70,64.0],[117,-37,71,64.0],[117,-37,72,64.0],[117,-37,73,64.0],[117,-37,74,64.0],[117,-37,75,64.0],[117,-37,76,64.0],[117,-37,77,64.0],[117,-37,78,64.0],[117,-37,79,64.0],[117,-36,64,64.0],[117,-36,65,64.0],[117,-36,66,64.0],[117,-36,67,64.0],[117,-36,68,64.0],[117,-36,69,64.0],[117,-36,70,64.0],[117,-36,71,64.0],[117,-36,72,64.0],[117,-36,73,64.0],[117,-36,74,64.0],[117,-36,75,64.0],[117,-36,76,64.0],[117,-36,77,64.0],[117,-36,78,64.0],[117,-36,79,64.0],[117,-35,64,64.0],[117,-35,65,64.0],[117,-35,66,64.0],[117,-35,67,64.0],[117,-35,68,64.0],[117,-35,69,64.0],[117,-35,70,64.0],[117,-35,71,64.0],[117,-35,72,64.0],[117,-35,73,64.0],[117,-35,74,64.0],[117,-35,75,64.0],[117,-35,76,64.0],[117,-35,77,64.0],[117,-35,78,64.0],[117,-35,79,64.0],[117,-34,64,64.0],[117,-34,65,64.0],[117,-34,66,64.0],[117,-34,67,64.0],[117,-34,68,64.0],[117,-34,69,64.0],[117,-34,70,64.0],[117,-34,71,64.0],[117,-34,72,64.0],[117,-34,73,64.0],[117,-34,74,64.0],[117,-34,75,64.0],[117,-34,76,64.0],[117,-34,77,64.0],[117,-34,78,64.0],[117,-34,79,64.0],[117,-33,64,64.0],[117,-33,65,64.0],[117,-33,66,64.0],[117,-33,67,64.0],[117,-33,68,64.0],[117,-33,69,64.0],[117,-33,70,64.0],[117,-33,71,64.0],[117,-33,72,64.0],[117,-33,73,64.0],[117,-33,74,64.0],[117,-33,75,64.0],[117,-33,76,64.0],[117,-33,77,64.0],[117,-33,78,64.0],[117,-33,79,64.0],[117,-32,64,64.0],[117,-32,65,64.0],[117,-32,66,64.0],[117,-32,67,64.0],[117,-32,68,64.0],[117,-32,69,64.0],[117,-32,70,64.0],[117,-32,71,64.0],[117,-32,72,64.0],[117,-32,73,64.0],[117,-32,74,64.0],[117,-32,75,64.0],[117,-32,76,64.0],[117,-32,77,64.0],[117,-32,78,64.0],[117,-32,79,64.0],[117,-31,64,64.0],[117,-31,65,64.0],[117,-31,66,64.0],[117,-31,67,64.0],[117,-31,68,64.0],[117,-31,69,64.0],[117,-31,70,64.0],[117,-31,71,64.0],[117,-31,72,64.0],[117,-31,73,64.0],[117,-31,74,64.0],[117,-31,75,64.0],[117,-31,76,64.0],[117,-31,77,64.0],[117,-31,78,64.0],[117,-31,79,64.0],[117,-30,64,64.0],[117,-30,65,64.0],[117,-30,66,64.0],[117,-30,67,64.0],[117,-30,68,64.0],[117,-30,69,64.0],[117,-30,70,64.0],[117,-30,71,64.0],[117,-30,72,64.0],[117,-30,73,64.0],[117,-30,74,64.0],[117,-30,75,64.0],[117,-30,76,64.0],[117,-30,77,64.0],[117,-30,78,64.0],[117,-30,79,64.0],[117,-29,64,64.0],[117,-29,65,64.0],[117,-29,66,64.0],[117,-29,67,64.0],[117,-29,68,64.0],[117,-29,69,64.0],[117,-29,70,64.0],[117,-29,71,64.0],[117,-29,72,64.0],[117,-29,73,64.0],[117,-29,74,64.0],[117,-29,75,64.0],[117,-29,76,64.0],[117,-29,77,64.0],[117,-29,78,64.0],[117,-29,79,64.0],[117,-28,64,64.0],[117,-28,65,64.0],[117,-28,66,64.0],[117,-28,67,64.0],[117,-28,68,64.0],[117,-28,69,64.0],[117,-28,70,64.0],[117,-28,71,64.0],[117,-28,72,64.0],[117,-28,73,64.0],[117,-28,74,64.0],[117,-28,75,64.0],[117,-28,76,64.0],[117,-28,77,64.0],[117,-28,78,64.0],[117,-28,79,64.0],[117,-27,64,64.0],[117,-27,65,64.0],[117,-27,66,64.0],[117,-27,67,64.0],[117,-27,68,64.0],[117,-27,69,64.0],[117,-27,70,64.0],[117,-27,71,64.0],[117,-27,72,64.0],[117,-27,73,64.0],[117,-27,74,64.0],[117,-27,75,64.0],[117,-27,76,64.0],[117,-27,77,64.0],[117,-27,78,64.0],[117,-27,79,64.0],[117,-26,64,64.0],[117,-26,65,64.0],[117,-26,66,64.0],[117,-26,67,64.0],[117,-26,68,64.0],[117,-26,69,64.0],[117,-26,70,64.0],[117,-26,71,64.0],[117,-26,72,64.0],[117,-26,73,64.0],[117,-26,74,64.0],[117,-26,75,64.0],[117,-26,76,64.0],[117,-26,77,64.0],[117,-26,78,64.0],[117,-26,79,64.0],[117,-25,64,64.0],[117,-25,65,64.0],[117,-25,66,64.0],[117,-25,67,64.0],[117,-25,68,64.0],[117,-25,69,64.0],[117,-25,70,64.0],[117,-25,71,64.0],[117,-25,72,64.0],[117,-25,73,64.0],[117,-25,74,64.0],[117,-25,75,64.0],[117,-25,76,64.0],[117,-25,77,64.0],[117,-25,78,64.0],[117,-25,79,64.0],[117,-24,64,64.0],[117,-24,65,64.0],[117,-24,66,64.0],[117,-24,67,64.0],[117,-24,68,64.0],[117,-24,69,64.0],[117,-24,70,64.0],[117,-24,71,64.0],[117,-24,72,64.0],[117,-24,73,64.0],[117,-24,74,64.0],[117,-24,75,64.0],[117,-24,76,64.0],[117,-24,77,64.0],[117,-24,78,64.0],[117,-24,79,64.0],[117,-23,64,64.0],[117,-23,65,64.0],[117,-23,66,64.0],[117,-23,67,64.0],[117,-23,68,64.0],[117,-23,69,64.0],[117,-23,70,64.0],[117,-23,71,64.0],[117,-23,72,64.0],[117,-23,73,64.0],[117,-23,74,64.0],[117,-23,75,64.0],[117,-23,76,64.0],[117,-23,77,64.0],[117,-23,78,64.0],[117,-23,79,64.0],[117,-22,64,64.0],[117,-22,65,64.0],[117,-22,66,64.0],[117,-22,67,64.0],[117,-22,68,64.0],[117,-22,69,64.0],[117,-22,70,64.0],[117,-22,71,64.0],[117,-22,72,64.0],[117,-22,73,64.0],[117,-22,74,64.0],[117,-22,75,64.0],[117,-22,76,64.0],[117,-22,77,64.0],[117,-22,78,64.0],[117,-22,79,64.0],[117,-21,64,64.0],[117,-21,65,64.0],[117,-21,66,64.0],[117,-21,67,64.0],[117,-21,68,64.0],[117,-21,69,64.0],[117,-21,70,64.0],[117,-21,71,64.0],[117,-21,72,64.0],[117,-21,73,64.0],[117,-21,74,64.0],[117,-21,75,64.0],[117,-21,76,64.0],[117,-21,77,64.0],[117,-21,78,64.0],[117,-21,79,64.0],[117,-20,64,64.0],[117,-20,65,64.0],[117,-20,66,64.0],[117,-20,67,64.0],[117,-20,68,64.0],[117,-20,69,64.0],[117,-20,70,64.0],[117,-20,71,64.0],[117,-20,72,64.0],[117,-20,73,64.0],[117,-20,74,64.0],[117,-20,75,64.0],[117,-20,76,64.0],[117,-20,77,64.0],[117,-20,78,64.0],[117,-20,79,64.0],[117,-19,64,64.0],[117,-19,65,64.0],[117,-19,66,64.0],[117,-19,67,64.0],[117,-19,68,64.0],[117,-19,69,64.0],[117,-19,70,64.0],[117,-19,71,64.0],[117,-19,72,64.0],[117,-19,73,64.0],[117,-19,74,64.0],[117,-19,75,64.0],[117,-19,76,64.0],[117,-19,77,64.0],[117,-19,78,64.0],[117,-19,79,64.0],[117,-18,64,64.0],[117,-18,65,64.0],[117,-18,66,64.0],[117,-18,67,64.0],[117,-18,68,64.0],[117,-18,69,64.0],[117,-18,70,64.0],[117,-18,71,64.0],[117,-18,72,64.0],[117,-18,73,64.0],[117,-18,74,64.0],[117,-18,75,64.0],[117,-18,76,64.0],[117,-18,77,64.0],[117,-18,78,64.0],[117,-18,79,64.0],[117,-17,64,64.0],[117,-17,65,64.0],[117,-17,66,64.0],[117,-17,67,64.0],[117,-17,68,64.0],[117,-17,69,64.0],[117,-17,70,64.0],[117,-17,71,64.0],[117,-17,72,64.0],[117,-17,73,64.0],[117,-17,74,64.0],[117,-17,75,64.0],[117,-17,76,64.0],[117,-17,77,64.0],[117,-17,78,64.0],[117,-17,79,64.0],[117,-16,64,64.0],[117,-16,65,64.0],[117,-16,66,64.0],[117,-16,67,64.0],[117,-16,68,64.0],[117,-16,69,64.0],[117,-16,70,64.0],[117,-16,71,64.0],[117,-16,72,64.0],[117,-16,73,64.0],[117,-16,74,64.0],[117,-16,75,64.0],[117,-16,76,64.0],[117,-16,77,64.0],[117,-16,78,64.0],[117,-16,79,64.0],[117,-15,64,64.0],[117,-15,65,64.0],[117,-15,66,64.0],[117,-15,67,64.0],[117,-15,68,64.0],[117,-15,69,64.0],[117,-15,70,64.0],[117,-15,71,64.0],[117,-15,72,64.0],[117,-15,73,64.0],[117,-15,74,64.0],[117,-15,75,64.0],[117,-15,76,64.0],[117,-15,77,64.0],[117,-15,78,64.0],[117,-15,79,64.0],[117,-14,64,64.0],[117,-14,65,64.0],[117,-14,66,64.0],[117,-14,67,64.0],[117,-14,68,64.0],[117,-14,69,64.0],[117,-14,70,64.0],[117,-14,71,64.0],[117,-14,72,64.0],[117,-14,73,64.0],[117,-14,74,64.0],[117,-14,75,64.0],[117,-14,76,64.0],[117,-14,77,64.0],[117,-14,78,64.0],[117,-14,79,64.0],[117,-13,64,64.0],[117,-13,65,64.0],[117,-13,66,64.0],[117,-13,67,64.0],[117,-13,68,64.0],[117,-13,69,64.0],[117,-13,70,64.0],[117,-13,71,64.0],[117,-13,72,64.0],[117,-13,73,64.0],[117,-13,74,64.0],[117,-13,75,64.0],[117,-13,76,64.0],[117,-13,77,64.0],[117,-13,78,64.0],[117,-13,79,64.0],[117,-12,64,64.0],[117,-12,65,64.0],[117,-12,66,64.0],[117,-12,67,64.0],[117,-12,68,64.0],[117,-12,69,64.0],[117,-12,70,64.0],[117,-12,71,64.0],[117,-12,72,64.0],[117,-12,73,64.0],[117,-12,74,64.0],[117,-12,75,64.0],[117,-12,76,64.0],[117,-12,77,64.0],[117,-12,78,64.0],[117,-12,79,64.0],[117,-11,64,64.0],[117,-11,65,64.0],[117,-11,66,64.0],[117,-11,67,64.0],[117,-11,68,64.0],[117,-11,69,64.0],[117,-11,70,64.0],[117,-11,71,64.0],[117,-11,72,64.0],[117,-11,73,64.0],[117,-11,74,64.0],[117,-11,75,64.0],[117,-11,76,64.0],[117,-11,77,64.0],[117,-11,78,64.0],[117,-11,79,64.0],[117,-10,64,64.0],[117,-10,65,64.0],[117,-10,66,64.0],[117,-10,67,64.0],[117,-10,68,64.0],[117,-10,69,64.0],[117,-10,70,64.0],[117,-10,71,64.0],[117,-10,72,64.0],[117,-10,73,64.0],[117,-10,74,64.0],[117,-10,75,64.0],[117,-10,76,64.0],[117,-10,77,64.0],[117,-10,78,64.0],[117,-10,79,64.0],[117,-9,64,64.0],[117,-9,65,64.0],[117,-9,66,64.0],[117,-9,67,64.0],[117,-9,68,64.0],[117,-9,69,64.0],[117,-9,70,64.0],[117,-9,71,64.0],[117,-9,72,64.0],[117,-9,73,64.0],[117,-9,74,64.0],[117,-9,75,64.0],[117,-9,76,64.0],[117,-9,77,64.0],[117,-9,78,64.0],[117,-9,79,64.0],[117,-8,64,64.0],[117,-8,65,64.0],[117,-8,66,64.0],[117,-8,67,64.0],[117,-8,68,64.0],[117,-8,69,64.0],[117,-8,70,64.0],[117,-8,71,64.0],[117,-8,72,64.0],[117,-8,73,64.0],[117,-8,74,64.0],[117,-8,75,64.0],[117,-8,76,64.0],[117,-8,77,64.0],[117,-8,78,64.0],[117,-8,79,64.0],[117,-7,64,64.0],[117,-7,65,64.0],[117,-7,66,64.0],[117,-7,67,64.0],[117,-7,68,64.0],[117,-7,69,64.0],[117,-7,70,64.0],[117,-7,71,64.0],[117,-7,72,64.0],[117,-7,73,64.0],[117,-7,74,64.0],[117,-7,75,64.0],[117,-7,76,64.0],[117,-7,77,64.0],[117,-7,78,64.0],[117,-7,79,64.0],[117,-6,64,64.0],[117,-6,65,64.0],[117,-6,66,64.0],[117,-6,67,64.0],[117,-6,68,64.0],[117,-6,69,64.0],[117,-6,70,64.0],[117,-6,71,64.0],[117,-6,72,64.0],[117,-6,73,64.0],[117,-6,74,64.0],[117,-6,75,64.0],[117,-6,76,64.0],[117,-6,77,64.0],[117,-6,78,64.0],[117,-6,79,64.0],[117,-5,64,64.0],[117,-5,65,64.0],[117,-5,66,64.0],[117,-5,67,64.0],[117,-5,68,64.0],[117,-5,69,64.0],[117,-5,70,64.0],[117,-5,71,64.0],[117,-5,72,64.0],[117,-5,73,64.0],[117,-5,74,64.0],[117,-5,75,64.0],[117,-5,76,64.0],[117,-5,77,64.0],[117,-5,78,64.0],[117,-5,79,64.0],[117,-4,64,64.0],[117,-4,65,64.0],[117,-4,66,64.0],[117,-4,67,64.0],[117,-4,68,64.0],[117,-4,69,64.0],[117,-4,70,64.0],[117,-4,71,64.0],[117,-4,72,64.0],[117,-4,73,64.0],[117,-4,74,64.0],[117,-4,75,64.0],[117,-4,76,64.0],[117,-4,77,64.0],[117,-4,78,64.0],[117,-4,79,64.0],[117,-3,64,64.0],[117,-3,65,64.0],[117,-3,66,64.0],[117,-3,67,64.0],[117,-3,68,64.0],[117,-3,69,64.0],[117,-3,70,64.0],[117,-3,71,64.0],[117,-3,72,64.0],[117,-3,73,64.0],[117,-3,74,64.0],[117,-3,75,64.0],[117,-3,76,64.0],[117,-3,77,64.0],[117,-3,78,64.0],[117,-3,79,64.0],[117,-2,64,64.0],[117,-2,65,64.0],[117,-2,66,64.0],[117,-2,67,64.0],[117,-2,68,64.0],[117,-2,69,64.0],[117,-2,70,64.0],[117,-2,71,64.0],[117,-2,72,64.0],[117,-2,73,64.0],[117,-2,74,64.0],[117,-2,75,64.0],[117,-2,76,64.0],[117,-2,77,64.0],[117,-2,78,64.0],[117,-2,79,64.0],[117,-1,64,64.0],[117,-1,65,64.0],[117,-1,66,64.0],[117,-1,67,64.0],[117,-1,68,64.0],[117,-1,69,64.0],[117,-1,70,64.0],[117,-1,71,64.0],[117,-1,72,64.0],[117,-1,73,64.0],[117,-1,74,64.0],[117,-1,75,64.0],[117,-1,76,64.0],[117,-1,77,64.0],[117,-1,78,64.0],[117,-1,79,64.0],[117,0,64,64.0],[117,0,65,64.0],[117,0,66,64.0],[117,0,67,64.0],[117,0,68,64.0],[117,0,69,64.0],[117,0,70,64.0],[117,0,71,64.0],[117,0,72,64.0],[117,0,73,64.0],[117,0,74,64.0],[117,0,75,64.0],[117,0,76,64.0],[117,0,77,64.0],[117,0,78,64.0],[117,0,79,64.0],[117,1,64,64.0],[117,1,65,64.0],[117,1,66,64.0],[117,1,67,64.0],[117,1,68,64.0],[117,1,69,64.0],[117,1,70,64.0],[117,1,71,64.0],[117,1,72,64.0],[117,1,73,64.0],[117,1,74,64.0],[117,1,75,64.0],[117,1,76,64.0],[117,1,77,64.0],[117,1,78,64.0],[117,1,79,64.0],[117,2,64,64.0],[117,2,65,64.0],[117,2,66,64.0],[117,2,67,64.0],[117,2,68,64.0],[117,2,69,64.0],[117,2,70,64.0],[117,2,71,64.0],[117,2,72,64.0],[117,2,73,64.0],[117,2,74,64.0],[117,2,75,64.0],[117,2,76,64.0],[117,2,77,64.0],[117,2,78,64.0],[117,2,79,64.0],[117,3,64,64.0],[117,3,65,64.0],[117,3,66,64.0],[117,3,67,64.0],[117,3,68,64.0],[117,3,69,64.0],[117,3,70,64.0],[117,3,71,64.0],[117,3,72,64.0],[117,3,73,64.0],[117,3,74,64.0],[117,3,75,64.0],[117,3,76,64.0],[117,3,77,64.0],[117,3,78,64.0],[117,3,79,64.0],[117,4,64,64.0],[117,4,65,64.0],[117,4,66,64.0],[117,4,67,64.0],[117,4,68,64.0],[117,4,69,64.0],[117,4,70,64.0],[117,4,71,64.0],[117,4,72,64.0],[117,4,73,64.0],[117,4,74,64.0],[117,4,75,64.0],[117,4,76,64.0],[117,4,77,64.0],[117,4,78,64.0],[117,4,79,64.0],[117,5,64,64.0],[117,5,65,64.0],[117,5,66,64.0],[117,5,67,64.0],[117,5,68,64.0],[117,5,69,64.0],[117,5,70,64.0],[117,5,71,64.0],[117,5,72,64.0],[117,5,73,64.0],[117,5,74,64.0],[117,5,75,64.0],[117,5,76,64.0],[117,5,77,64.0],[117,5,78,64.0],[117,5,79,64.0],[117,6,64,64.0],[117,6,65,64.0],[117,6,66,64.0],[117,6,67,64.0],[117,6,68,64.0],[117,6,69,64.0],[117,6,70,64.0],[117,6,71,64.0],[117,6,72,64.0],[117,6,73,64.0],[117,6,74,64.0],[117,6,75,64.0],[117,6,76,64.0],[117,6,77,64.0],[117,6,78,64.0],[117,6,79,64.0],[117,7,64,64.0],[117,7,65,64.0],[117,7,66,64.0],[117,7,67,64.0],[117,7,68,64.0],[117,7,69,64.0],[117,7,70,64.0],[117,7,71,64.0],[117,7,72,64.0],[117,7,73,64.0],[117,7,74,64.0],[117,7,75,64.0],[117,7,76,64.0],[117,7,77,64.0],[117,7,78,64.0],[117,7,79,64.0],[117,8,64,64.0],[117,8,65,64.0],[117,8,66,64.0],[117,8,67,64.0],[117,8,68,64.0],[117,8,69,64.0],[117,8,70,64.0],[117,8,71,64.0],[117,8,72,64.0],[117,8,73,64.0],[117,8,74,64.0],[117,8,75,64.0],[117,8,76,64.0],[117,8,77,64.0],[117,8,78,64.0],[117,8,79,64.0],[117,9,64,64.0],[117,9,65,64.0],[117,9,66,64.0],[117,9,67,64.0],[117,9,68,64.0],[117,9,69,64.0],[117,9,70,64.0],[117,9,71,64.0],[117,9,72,64.0],[117,9,73,64.0],[117,9,74,64.0],[117,9,75,64.0],[117,9,76,64.0],[117,9,77,64.0],[117,9,78,64.0],[117,9,79,64.0],[117,10,64,64.0],[117,10,65,64.0],[117,10,66,64.0],[117,10,67,64.0],[117,10,68,64.0],[117,10,69,64.0],[117,10,70,64.0],[117,10,71,64.0],[117,10,72,64.0],[117,10,73,64.0],[117,10,74,64.0],[117,10,75,64.0],[117,10,76,64.0],[117,10,77,64.0],[117,10,78,64.0],[117,10,79,64.0],[117,11,64,64.0],[117,11,65,64.0],[117,11,66,64.0],[117,11,67,64.0],[117,11,68,64.0],[117,11,69,64.0],[117,11,70,64.0],[117,11,71,64.0],[117,11,72,64.0],[117,11,73,64.0],[117,11,74,64.0],[117,11,75,64.0],[117,11,76,64.0],[117,11,77,64.0],[117,11,78,64.0],[117,11,79,64.0],[117,12,64,64.0],[117,12,65,64.0],[117,12,66,64.0],[117,12,67,64.0],[117,12,68,64.0],[117,12,69,64.0],[117,12,70,64.0],[117,12,71,64.0],[117,12,72,64.0],[117,12,73,64.0],[117,12,74,64.0],[117,12,75,64.0],[117,12,76,64.0],[117,12,77,64.0],[117,12,78,64.0],[117,12,79,64.0],[117,13,64,64.0],[117,13,65,64.0],[117,13,66,64.0],[117,13,67,64.0],[117,13,68,64.0],[117,13,69,64.0],[117,13,70,64.0],[117,13,71,64.0],[117,13,72,64.0],[117,13,73,64.0],[117,13,74,64.0],[117,13,75,64.0],[117,13,76,64.0],[117,13,77,64.0],[117,13,78,64.0],[117,13,79,64.0],[117,14,64,64.0],[117,14,65,64.0],[117,14,66,64.0],[117,14,67,64.0],[117,14,68,64.0],[117,14,69,64.0],[117,14,70,64.0],[117,14,71,64.0],[117,14,72,64.0],[117,14,73,64.0],[117,14,74,64.0],[117,14,75,64.0],[117,14,76,64.0],[117,14,77,64.0],[117,14,78,64.0],[117,14,79,64.0],[117,15,64,64.0],[117,15,65,64.0],[117,15,66,64.0],[117,15,67,64.0],[117,15,68,64.0],[117,15,69,64.0],[117,15,70,64.0],[117,15,71,64.0],[117,15,72,64.0],[117,15,73,64.0],[117,15,74,64.0],[117,15,75,64.0],[117,15,76,64.0],[117,15,77,64.0],[117,15,78,64.0],[117,15,79,64.0],[117,16,64,64.0],[117,16,65,64.0],[117,16,66,64.0],[117,16,67,64.0],[117,16,68,64.0],[117,16,69,64.0],[117,16,70,64.0],[117,16,71,64.0],[117,16,72,64.0],[117,16,73,64.0],[117,16,74,64.0],[117,16,75,64.0],[117,16,76,64.0],[117,16,77,64.0],[117,16,78,64.0],[117,16,79,64.0],[117,17,64,64.0],[117,17,65,64.0],[117,17,66,64.0],[117,17,67,64.0],[117,17,68,64.0],[117,17,69,64.0],[117,17,70,64.0],[117,17,71,64.0],[117,17,72,64.0],[117,17,73,64.0],[117,17,74,64.0],[117,17,75,64.0],[117,17,76,64.0],[117,17,77,64.0],[117,17,78,64.0],[117,17,79,64.0],[117,18,64,64.0],[117,18,65,64.0],[117,18,66,64.0],[117,18,67,64.0],[117,18,68,64.0],[117,18,69,64.0],[117,18,70,64.0],[117,18,71,64.0],[117,18,72,64.0],[117,18,73,64.0],[117,18,74,64.0],[117,18,75,64.0],[117,18,76,64.0],[117,18,77,64.0],[117,18,78,64.0],[117,18,79,64.0],[117,19,64,64.0],[117,19,65,64.0],[117,19,66,64.0],[117,19,67,64.0],[117,19,68,64.0],[117,19,69,64.0],[117,19,70,64.0],[117,19,71,64.0],[117,19,72,64.0],[117,19,73,64.0],[117,19,74,64.0],[117,19,75,64.0],[117,19,76,64.0],[117,19,77,64.0],[117,19,78,64.0],[117,19,79,64.0],[117,20,64,64.0],[117,20,65,64.0],[117,20,66,64.0],[117,20,67,64.0],[117,20,68,64.0],[117,20,69,64.0],[117,20,70,64.0],[117,20,71,64.0],[117,20,72,64.0],[117,20,73,64.0],[117,20,74,64.0],[117,20,75,64.0],[117,20,76,64.0],[117,20,77,64.0],[117,20,78,64.0],[117,20,79,64.0],[117,21,64,64.0],[117,21,65,64.0],[117,21,66,64.0],[117,21,67,64.0],[117,21,68,64.0],[117,21,69,64.0],[117,21,70,64.0],[117,21,71,64.0],[117,21,72,64.0],[117,21,73,64.0],[117,21,74,64.0],[117,21,75,64.0],[117,21,76,64.0],[117,21,77,64.0],[117,21,78,64.0],[117,21,79,64.0],[117,22,64,64.0],[117,22,65,64.0],[117,22,66,64.0],[117,22,67,64.0],[117,22,68,64.0],[117,22,69,64.0],[117,22,70,64.0],[117,22,71,64.0],[117,22,72,64.0],[117,22,73,64.0],[117,22,74,64.0],[117,22,75,64.0],[117,22,76,64.0],[117,22,77,64.0],[117,22,78,64.0],[117,22,79,64.0],[117,23,64,64.0],[117,23,65,64.0],[117,23,66,64.0],[117,23,67,64.0],[117,23,68,64.0],[117,23,69,64.0],[117,23,70,64.0],[117,23,71,64.0],[117,23,72,64.0],[117,23,73,64.0],[117,23,74,64.0],[117,23,75,64.0],[117,23,76,64.0],[117,23,77,64.0],[117,23,78,64.0],[117,23,79,64.0],[117,24,64,64.0],[117,24,65,64.0],[117,24,66,64.0],[117,24,67,64.0],[117,24,68,64.0],[117,24,69,64.0],[117,24,70,64.0],[117,24,71,64.0],[117,24,72,64.0],[117,24,73,64.0],[117,24,74,64.0],[117,24,75,64.0],[117,24,76,64.0],[117,24,77,64.0],[117,24,78,64.0],[117,24,79,64.0],[117,25,64,64.0],[117,25,65,64.0],[117,25,66,64.0],[117,25,67,64.0],[117,25,68,64.0],[117,25,69,64.0],[117,25,70,64.0],[117,25,71,64.0],[117,25,72,64.0],[117,25,73,64.0],[117,25,74,64.0],[117,25,75,64.0],[117,25,76,64.0],[117,25,77,64.0],[117,25,78,64.0],[117,25,79,64.0],[117,26,64,64.0],[117,26,65,64.0],[117,26,66,64.0],[117,26,67,64.0],[117,26,68,64.0],[117,26,69,64.0],[117,26,70,64.0],[117,26,71,64.0],[117,26,72,64.0],[117,26,73,64.0],[117,26,74,64.0],[117,26,75,64.0],[117,26,76,64.0],[117,26,77,64.0],[117,26,78,64.0],[117,26,79,64.0],[117,27,64,64.0],[117,27,65,64.0],[117,27,66,64.0],[117,27,67,64.0],[117,27,68,64.0],[117,27,69,64.0],[117,27,70,64.0],[117,27,71,64.0],[117,27,72,64.0],[117,27,73,64.0],[117,27,74,64.0],[117,27,75,64.0],[117,27,76,64.0],[117,27,77,64.0],[117,27,78,64.0],[117,27,79,64.0],[117,28,64,64.0],[117,28,65,64.0],[117,28,66,64.0],[117,28,67,64.0],[117,28,68,64.0],[117,28,69,64.0],[117,28,70,64.0],[117,28,71,64.0],[117,28,72,64.0],[117,28,73,64.0],[117,28,74,64.0],[117,28,75,64.0],[117,28,76,64.0],[117,28,77,64.0],[117,28,78,64.0],[117,28,79,64.0],[117,29,64,64.0],[117,29,65,64.0],[117,29,66,64.0],[117,29,67,64.0],[117,29,68,64.0],[117,29,69,64.0],[117,29,70,64.0],[117,29,71,64.0],[117,29,72,64.0],[117,29,73,64.0],[117,29,74,64.0],[117,29,75,64.0],[117,29,76,64.0],[117,29,77,64.0],[117,29,78,64.0],[117,29,79,64.0],[117,30,64,64.0],[117,30,65,64.0],[117,30,66,64.0],[117,30,67,64.0],[117,30,68,64.0],[117,30,69,64.0],[117,30,70,64.0],[117,30,71,64.0],[117,30,72,64.0],[117,30,73,64.0],[117,30,74,64.0],[117,30,75,64.0],[117,30,76,64.0],[117,30,77,64.0],[117,30,78,64.0],[117,30,79,64.0],[117,31,64,64.0],[117,31,65,64.0],[117,31,66,64.0],[117,31,67,64.0],[117,31,68,64.0],[117,31,69,64.0],[117,31,70,64.0],[117,31,71,64.0],[117,31,72,64.0],[117,31,73,64.0],[117,31,74,64.0],[117,31,75,64.0],[117,31,76,64.0],[117,31,77,64.0],[117,31,78,64.0],[117,31,79,64.0],[117,32,64,64.0],[117,32,65,64.0],[117,32,66,64.0],[117,32,67,64.0],[117,32,68,64.0],[117,32,69,64.0],[117,32,70,64.0],[117,32,71,64.0],[117,32,72,64.0],[117,32,73,64.0],[117,32,74,64.0],[117,32,75,64.0],[117,32,76,64.0],[117,32,77,64.0],[117,32,78,64.0],[117,32,79,64.0],[117,33,64,64.0],[117,33,65,64.0],[117,33,66,64.0],[117,33,67,64.0],[117,33,68,64.0],[117,33,69,64.0],[117,33,70,64.0],[117,33,71,64.0],[117,33,72,64.0],[117,33,73,64.0],[117,33,74,64.0],[117,33,75,64.0],[117,33,76,64.0],[117,33,77,64.0],[117,33,78,64.0],[117,33,79,64.0],[117,34,64,64.0],[117,34,65,64.0],[117,34,66,64.0],[117,34,67,64.0],[117,34,68,64.0],[117,34,69,64.0],[117,34,70,64.0],[117,34,71,64.0],[117,34,72,64.0],[117,34,73,64.0],[117,34,74,64.0],[117,34,75,64.0],[117,34,76,64.0],[117,34,77,64.0],[117,34,78,64.0],[117,34,79,64.0],[117,35,64,64.0],[117,35,65,64.0],[117,35,66,64.0],[117,35,67,64.0],[117,35,68,64.0],[117,35,69,64.0],[117,35,70,64.0],[117,35,71,64.0],[117,35,72,64.0],[117,35,73,64.0],[117,35,74,64.0],[117,35,75,64.0],[117,35,76,64.0],[117,35,77,64.0],[117,35,78,64.0],[117,35,79,64.0],[117,36,64,64.0],[117,36,65,64.0],[117,36,66,64.0],[117,36,67,64.0],[117,36,68,64.0],[117,36,69,64.0],[117,36,70,64.0],[117,36,71,64.0],[117,36,72,64.0],[117,36,73,64.0],[117,36,74,64.0],[117,36,75,64.0],[117,36,76,64.0],[117,36,77,64.0],[117,36,78,64.0],[117,36,79,64.0],[117,37,64,64.0],[117,37,65,64.0],[117,37,66,64.0],[117,37,67,64.0],[117,37,68,64.0],[117,37,69,64.0],[117,37,70,64.0],[117,37,71,64.0],[117,37,72,64.0],[117,37,73,64.0],[117,37,74,64.0],[117,37,75,64.0],[117,37,76,64.0],[117,37,77,64.0],[117,37,78,64.0],[117,37,79,64.0],[117,38,64,64.0],[117,38,65,64.0],[117,38,66,64.0],[117,38,67,64.0],[117,38,68,64.0],[117,38,69,64.0],[117,38,70,64.0],[117,38,71,64.0],[117,38,72,64.0],[117,38,73,64.0],[117,38,74,64.0],[117,38,75,64.0],[117,38,76,64.0],[117,38,77,64.0],[117,38,78,64.0],[117,38,79,64.0],[117,39,64,64.0],[117,39,65,64.0],[117,39,66,64.0],[117,39,67,64.0],[117,39,68,64.0],[117,39,69,64.0],[117,39,70,64.0],[117,39,71,64.0],[117,39,72,64.0],[117,39,73,64.0],[117,39,74,64.0],[117,39,75,64.0],[117,39,76,64.0],[117,39,77,64.0],[117,39,78,64.0],[117,39,79,64.0],[117,40,64,64.0],[117,40,65,64.0],[117,40,66,64.0],[117,40,67,64.0],[117,40,68,64.0],[117,40,69,64.0],[117,40,70,64.0],[117,40,71,64.0],[117,40,72,64.0],[117,40,73,64.0],[117,40,74,64.0],[117,40,75,64.0],[117,40,76,64.0],[117,40,77,64.0],[117,40,78,64.0],[117,40,79,64.0],[117,41,64,64.0],[117,41,65,64.0],[117,41,66,64.0],[117,41,67,64.0],[117,41,68,64.0],[117,41,69,64.0],[117,41,70,64.0],[117,41,71,64.0],[117,41,72,64.0],[117,41,73,64.0],[117,41,74,64.0],[117,41,75,64.0],[117,41,76,64.0],[117,41,77,64.0],[117,41,78,64.0],[117,41,79,64.0],[117,42,64,64.0],[117,42,65,64.0],[117,42,66,64.0],[117,42,67,64.0],[117,42,68,64.0],[117,42,69,64.0],[117,42,70,64.0],[117,42,71,64.0],[117,42,72,64.0],[117,42,73,64.0],[117,42,74,64.0],[117,42,75,64.0],[117,42,76,64.0],[117,42,77,64.0],[117,42,78,64.0],[117,42,79,64.0],[117,43,64,64.0],[117,43,65,64.0],[117,43,66,64.0],[117,43,67,64.0],[117,43,68,64.0],[117,43,69,64.0],[117,43,70,64.0],[117,43,71,64.0],[117,43,72,64.0],[117,43,73,64.0],[117,43,74,64.0],[117,43,75,64.0],[117,43,76,64.0],[117,43,77,64.0],[117,43,78,64.0],[117,43,79,64.0],[117,44,64,64.0],[117,44,65,64.0],[117,44,66,64.0],[117,44,67,64.0],[117,44,68,64.0],[117,44,69,64.0],[117,44,70,64.0],[117,44,71,64.0],[117,44,72,64.0],[117,44,73,64.0],[117,44,74,64.0],[117,44,75,64.0],[117,44,76,64.0],[117,44,77,64.0],[117,44,78,64.0],[117,44,79,64.0],[117,45,64,64.0],[117,45,65,64.0],[117,45,66,64.0],[117,45,67,64.0],[117,45,68,64.0],[117,45,69,64.0],[117,45,70,64.0],[117,45,71,64.0],[117,45,72,64.0],[117,45,73,64.0],[117,45,74,64.0],[117,45,75,64.0],[117,45,76,64.0],[117,45,77,64.0],[117,45,78,64.0],[117,45,79,64.0],[117,46,64,64.0],[117,46,65,64.0],[117,46,66,64.0],[117,46,67,64.0],[117,46,68,64.0],[117,46,69,64.0],[117,46,70,64.0],[117,46,71,64.0],[117,46,72,64.0],[117,46,73,64.0],[117,46,74,64.0],[117,46,75,64.0],[117,46,76,64.0],[117,46,77,64.0],[117,46,78,64.0],[117,46,79,64.0],[117,47,64,64.0],[117,47,65,64.0],[117,47,66,64.0],[117,47,67,64.0],[117,47,68,64.0],[117,47,69,64.0],[117,47,70,64.0],[117,47,71,64.0],[117,47,72,64.0],[117,47,73,64.0],[117,47,74,64.0],[117,47,75,64.0],[117,47,76,64.0],[117,47,77,64.0],[117,47,78,64.0],[117,47,79,64.0],[117,48,64,64.0],[117,48,65,64.0],[117,48,66,64.0],[117,48,67,64.0],[117,48,68,64.0],[117,48,69,64.0],[117,48,70,64.0],[117,48,71,64.0],[117,48,72,64.0],[117,48,73,64.0],[117,48,74,64.0],[117,48,75,64.0],[117,48,76,64.0],[117,48,77,64.0],[117,48,78,64.0],[117,48,79,64.0],[117,49,64,64.0],[117,49,65,64.0],[117,49,66,64.0],[117,49,67,64.0],[117,49,68,64.0],[117,49,69,64.0],[117,49,70,64.0],[117,49,71,64.0],[117,49,72,64.0],[117,49,73,64.0],[117,49,74,64.0],[117,49,75,64.0],[117,49,76,64.0],[117,49,77,64.0],[117,49,78,64.0],[117,49,79,64.0],[117,50,64,64.0],[117,50,65,64.0],[117,50,66,64.0],[117,50,67,64.0],[117,50,68,64.0],[117,50,69,64.0],[117,50,70,64.0],[117,50,71,64.0],[117,50,72,64.0],[117,50,73,64.0],[117,50,74,64.0],[117,50,75,64.0],[117,50,76,64.0],[117,50,77,64.0],[117,50,78,64.0],[117,50,79,64.0],[117,51,64,64.0],[117,51,65,64.0],[117,51,66,64.0],[117,51,67,64.0],[117,51,68,64.0],[117,51,69,64.0],[117,51,70,64.0],[117,51,71,64.0],[117,51,72,64.0],[117,51,73,64.0],[117,51,74,64.0],[117,51,75,64.0],[117,51,76,64.0],[117,51,77,64.0],[117,51,78,64.0],[117,51,79,64.0],[117,52,64,64.0],[117,52,65,64.0],[117,52,66,64.0],[117,52,67,64.0],[117,52,68,64.0],[117,52,69,64.0],[117,52,70,64.0],[117,52,71,64.0],[117,52,72,64.0],[117,52,73,64.0],[117,52,74,64.0],[117,52,75,64.0],[117,52,76,64.0],[117,52,77,64.0],[117,52,78,64.0],[117,52,79,64.0],[117,53,64,64.0],[117,53,65,64.0],[117,53,66,64.0],[117,53,67,64.0],[117,53,68,64.0],[117,53,69,64.0],[117,53,70,64.0],[117,53,71,64.0],[117,53,72,64.0],[117,53,73,64.0],[117,53,74,64.0],[117,53,75,64.0],[117,53,76,64.0],[117,53,77,64.0],[117,53,78,64.0],[117,53,79,64.0],[117,54,64,64.0],[117,54,65,64.0],[117,54,66,64.0],[117,54,67,64.0],[117,54,68,64.0],[117,54,69,64.0],[117,54,70,64.0],[117,54,71,64.0],[117,54,72,64.0],[117,54,73,64.0],[117,54,74,64.0],[117,54,75,64.0],[117,54,76,64.0],[117,54,77,64.0],[117,54,78,64.0],[117,54,79,64.0],[117,55,64,64.0],[117,55,65,64.0],[117,55,66,64.0],[117,55,67,64.0],[117,55,68,64.0],[117,55,69,64.0],[117,55,70,64.0],[117,55,71,64.0],[117,55,72,64.0],[117,55,73,64.0],[117,55,74,64.0],[117,55,75,64.0],[117,55,76,64.0],[117,55,77,64.0],[117,55,78,64.0],[117,55,79,64.0],[117,56,64,64.0],[117,56,65,64.0],[117,56,66,64.0],[117,56,67,64.0],[117,56,68,64.0],[117,56,69,64.0],[117,56,70,64.0],[117,56,71,64.0],[117,56,72,64.0],[117,56,73,64.0],[117,56,74,64.0],[117,56,75,64.0],[117,56,76,64.0],[117,56,77,64.0],[117,56,78,64.0],[117,56,79,64.0],[117,57,64,64.0],[117,57,65,64.0],[117,57,66,64.0],[117,57,67,64.0],[117,57,68,64.0],[117,57,69,64.0],[117,57,70,64.0],[117,57,71,64.0],[117,57,72,64.0],[117,57,73,64.0],[117,57,74,64.0],[117,57,75,64.0],[117,57,76,64.0],[117,57,77,64.0],[117,57,78,64.0],[117,57,79,64.0],[117,58,64,64.0],[117,58,65,64.0],[117,58,66,64.0],[117,58,67,64.0],[117,58,68,64.0],[117,58,69,64.0],[117,58,70,64.0],[117,58,71,64.0],[117,58,72,64.0],[117,58,73,64.0],[117,58,74,64.0],[117,58,75,64.0],[117,58,76,64.0],[117,58,77,64.0],[117,58,78,64.0],[117,58,79,64.0],[117,59,64,64.0],[117,59,65,64.0],[117,59,66,64.0],[117,59,67,64.0],[117,59,68,64.0],[117,59,69,64.0],[117,59,70,64.0],[117,59,71,64.0],[117,59,72,64.0],[117,59,73,64.0],[117,59,74,64.0],[117,59,75,64.0],[117,59,76,64.0],[117,59,77,64.0],[117,59,78,64.0],[117,59,79,64.0],[117,60,64,64.0],[117,60,65,64.0],[117,60,66,64.0],[117,60,67,64.0],[117,60,68,64.0],[117,60,69,64.0],[117,60,70,64.0],[117,60,71,64.0],[117,60,72,64.0],[117,60,73,64.0],[117,60,74,64.0],[117,60,75,64.0],[117,60,76,64.0],[117,60,77,64.0],[117,60,78,64.0],[117,60,79,64.0],[117,61,64,64.0],[117,61,65,64.0],[117,61,66,64.0],[117,61,67,64.0],[117,61,68,64.0],[117,61,69,64.0],[117,61,70,64.0],[117,61,71,64.0],[117,61,72,64.0],[117,61,73,64.0],[117,61,74,64.0],[117,61,75,64.0],[117,61,76,64.0],[117,61,77,64.0],[117,61,78,64.0],[117,61,79,64.0],[117,62,64,64.0],[117,62,65,64.0],[117,62,66,64.0],[117,62,67,64.0],[117,62,68,64.0],[117,62,69,64.0],[117,62,70,64.0],[117,62,71,64.0],[117,62,72,64.0],[117,62,73,64.0],[117,62,74,64.0],[117,62,75,64.0],[117,62,76,64.0],[117,62,77,64.0],[117,62,78,64.0],[117,62,79,64.0],[117,63,64,64.0],[117,63,65,64.0],[117,63,66,64.0],[117,63,67,64.0],[117,63,68,64.0],[117,63,69,64.0],[117,63,70,64.0],[117,63,71,64.0],[117,63,72,64.0],[117,63,73,64.0],[117,63,74,64.0],[117,63,75,64.0],[117,63,76,64.0],[117,63,77,64.0],[117,63,78,64.0],[117,63,79,64.0],[117,64,64,64.0],[117,64,65,64.0],[117,64,66,64.0],[117,64,67,64.0],[117,64,68,64.0],[117,64,69,64.0],[117,64,70,64.0],[117,64,71,64.0],[117,64,72,64.0],[117,64,73,64.0],[117,64,74,64.0],[117,64,75,64.0],[117,64,76,64.0],[117,64,77,64.0],[117,64,78,64.0],[117,64,79,64.0],[117,65,64,64.0],[117,65,65,64.0],[117,65,66,64.0],[117,65,67,64.0],[117,65,68,64.0],[117,65,69,64.0],[117,65,70,64.0],[117,65,71,64.0],[117,65,72,64.0],[117,65,73,64.0],[117,65,74,64.0],[117,65,75,64.0],[117,65,76,64.0],[117,65,77,64.0],[117,65,78,64.0],[117,65,79,64.0],[117,66,64,64.0],[117,66,65,64.0],[117,66,66,64.0],[117,66,67,64.0],[117,66,68,64.0],[117,66,69,64.0],[117,66,70,64.0],[117,66,71,64.0],[117,66,72,64.0],[117,66,73,64.0],[117,66,74,64.0],[117,66,75,64.0],[117,66,76,64.0],[117,66,77,64.0],[117,66,78,64.0],[117,66,79,64.0],[117,67,64,64.0],[117,67,65,64.0],[117,67,66,64.0],[117,67,67,64.0],[117,67,68,64.0],[117,67,69,64.0],[117,67,70,64.0],[117,67,71,64.0],[117,67,72,64.0],[117,67,73,64.0],[117,67,74,64.0],[117,67,75,64.0],[117,67,76,64.0],[117,67,77,64.0],[117,67,78,64.0],[117,67,79,64.0],[117,68,64,64.0],[117,68,65,64.0],[117,68,66,64.0],[117,68,67,64.0],[117,68,68,64.0],[117,68,69,64.0],[117,68,70,64.0],[117,68,71,64.0],[117,68,72,64.0],[117,68,73,64.0],[117,68,74,64.0],[117,68,75,64.0],[117,68,76,64.0],[117,68,77,64.0],[117,68,78,64.0],[117,68,79,64.0],[117,69,64,64.0],[117,69,65,64.0],[117,69,66,64.0],[117,69,67,64.0],[117,69,68,64.0],[117,69,69,64.0],[117,69,70,64.0],[117,69,71,64.0],[117,69,72,64.0],[117,69,73,64.0],[117,69,74,64.0],[117,69,75,64.0],[117,69,76,64.0],[117,69,77,64.0],[117,69,78,64.0],[117,69,79,64.0],[117,70,64,64.0],[117,70,65,64.0],[117,70,66,64.0],[117,70,67,64.0],[117,70,68,64.0],[117,70,69,64.0],[117,70,70,64.0],[117,70,71,64.0],[117,70,72,64.0],[117,70,73,64.0],[117,70,74,64.0],[117,70,75,64.0],[117,70,76,64.0],[117,70,77,64.0],[117,70,78,64.0],[117,70,79,64.0],[117,71,64,64.0],[117,71,65,64.0],[117,71,66,64.0],[117,71,67,64.0],[117,71,68,64.0],[117,71,69,64.0],[117,71,70,64.0],[117,71,71,64.0],[117,71,72,64.0],[117,71,73,64.0],[117,71,74,64.0],[117,71,75,64.0],[117,71,76,64.0],[117,71,77,64.0],[117,71,78,64.0],[117,71,79,64.0],[117,72,64,64.0],[117,72,65,64.0],[117,72,66,64.0],[117,72,67,64.0],[117,72,68,64.0],[117,72,69,64.0],[117,72,70,64.0],[117,72,71,64.0],[117,72,72,64.0],[117,72,73,64.0],[117,72,74,64.0],[117,72,75,64.0],[117,72,76,64.0],[117,72,77,64.0],[117,72,78,64.0],[117,72,79,64.0],[117,73,64,64.0],[117,73,65,64.0],[117,73,66,64.0],[117,73,67,64.0],[117,73,68,64.0],[117,73,69,64.0],[117,73,70,64.0],[117,73,71,64.0],[117,73,72,64.0],[117,73,73,64.0],[117,73,74,64.0],[117,73,75,64.0],[117,73,76,64.0],[117,73,77,64.0],[117,73,78,64.0],[117,73,79,64.0],[117,74,64,64.0],[117,74,65,64.0],[117,74,66,64.0],[117,74,67,64.0],[117,74,68,64.0],[117,74,69,64.0],[117,74,70,64.0],[117,74,71,64.0],[117,74,72,64.0],[117,74,73,64.0],[117,74,74,64.0],[117,74,75,64.0],[117,74,76,64.0],[117,74,77,64.0],[117,74,78,64.0],[117,74,79,64.0],[117,75,64,64.0],[117,75,65,64.0],[117,75,66,64.0],[117,75,67,64.0],[117,75,68,64.0],[117,75,69,64.0],[117,75,70,64.0],[117,75,71,64.0],[117,75,72,64.0],[117,75,73,64.0],[117,75,74,64.0],[117,75,75,64.0],[117,75,76,64.0],[117,75,77,64.0],[117,75,78,64.0],[117,75,79,64.0],[117,76,64,64.0],[117,76,65,64.0],[117,76,66,64.0],[117,76,67,64.0],[117,76,68,64.0],[117,76,69,64.0],[117,76,70,64.0],[117,76,71,64.0],[117,76,72,64.0],[117,76,73,64.0],[117,76,74,64.0],[117,76,75,64.0],[117,76,76,64.0],[117,76,77,64.0],[117,76,78,64.0],[117,76,79,64.0],[117,77,64,64.0],[117,77,65,64.0],[117,77,66,64.0],[117,77,67,64.0],[117,77,68,64.0],[117,77,69,64.0],[117,77,70,64.0],[117,77,71,64.0],[117,77,72,64.0],[117,77,73,64.0],[117,77,74,64.0],[117,77,75,64.0],[117,77,76,64.0],[117,77,77,64.0],[117,77,78,64.0],[117,77,79,64.0],[117,78,64,64.0],[117,78,65,64.0],[117,78,66,64.0],[117,78,67,64.0],[117,78,68,64.0],[117,78,69,64.0],[117,78,70,64.0],[117,78,71,64.0],[117,78,72,64.0],[117,78,73,64.0],[117,78,74,64.0],[117,78,75,64.0],[117,78,76,64.0],[117,78,77,64.0],[117,78,78,64.0],[117,78,79,64.0],[117,79,64,64.0],[117,79,65,64.0],[117,79,66,64.0],[117,79,67,64.0],[117,79,68,64.0],[117,79,69,64.0],[117,79,70,64.0],[117,79,71,64.0],[117,79,72,64.0],[117,79,73,64.0],[117,79,74,64.0],[117,79,75,64.0],[117,79,76,64.0],[117,79,77,64.0],[117,79,78,64.0],[117,79,79,64.0],[117,80,64,64.0],[117,80,65,64.0],[117,80,66,64.0],[117,80,67,64.0],[117,80,68,64.0],[117,80,69,64.0],[117,80,70,64.0],[117,80,71,64.0],[117,80,72,64.0],[117,80,73,64.0],[117,80,74,64.0],[117,80,75,64.0],[117,80,76,64.0],[117,80,77,64.0],[117,80,78,64.0],[117,80,79,64.0],[117,81,64,64.0],[117,81,65,64.0],[117,81,66,64.0],[117,81,67,64.0],[117,81,68,64.0],[117,81,69,64.0],[117,81,70,64.0],[117,81,71,64.0],[117,81,72,64.0],[117,81,73,64.0],[117,81,74,64.0],[117,81,75,64.0],[117,81,76,64.0],[117,81,77,64.0],[117,81,78,64.0],[117,81,79,64.0],[117,82,64,64.0],[117,82,65,64.0],[117,82,66,64.0],[117,82,67,64.0],[117,82,68,64.0],[117,82,69,64.0],[117,82,70,64.0],[117,82,71,64.0],[117,82,72,64.0],[117,82,73,64.0],[117,82,74,64.0],[117,82,75,64.0],[117,82,76,64.0],[117,82,77,64.0],[117,82,78,64.0],[117,82,79,64.0],[117,83,64,64.0],[117,83,65,64.0],[117,83,66,64.0],[117,83,67,64.0],[117,83,68,64.0],[117,83,69,64.0],[117,83,70,64.0],[117,83,71,64.0],[117,83,72,64.0],[117,83,73,64.0],[117,83,74,64.0],[117,83,75,64.0],[117,83,76,64.0],[117,83,77,64.0],[117,83,78,64.0],[117,83,79,64.0],[117,84,64,64.0],[117,84,65,64.0],[117,84,66,64.0],[117,84,67,64.0],[117,84,68,64.0],[117,84,69,64.0],[117,84,70,64.0],[117,84,71,64.0],[117,84,72,64.0],[117,84,73,64.0],[117,84,74,64.0],[117,84,75,64.0],[117,84,76,64.0],[117,84,77,64.0],[117,84,78,64.0],[117,84,79,64.0],[117,85,64,64.0],[117,85,65,64.0],[117,85,66,64.0],[117,85,67,64.0],[117,85,68,64.0],[117,85,69,64.0],[117,85,70,64.0],[117,85,71,64.0],[117,85,72,64.0],[117,85,73,64.0],[117,85,74,64.0],[117,85,75,64.0],[117,85,76,64.0],[117,85,77,64.0],[117,85,78,64.0],[117,85,79,64.0],[117,86,64,64.0],[117,86,65,64.0],[117,86,66,64.0],[117,86,67,64.0],[117,86,68,64.0],[117,86,69,64.0],[117,86,70,64.0],[117,86,71,64.0],[117,86,72,64.0],[117,86,73,64.0],[117,86,74,64.0],[117,86,75,64.0],[117,86,76,64.0],[117,86,77,64.0],[117,86,78,64.0],[117,86,79,64.0],[117,87,64,64.0],[117,87,65,64.0],[117,87,66,64.0],[117,87,67,64.0],[117,87,68,64.0],[117,87,69,64.0],[117,87,70,64.0],[117,87,71,64.0],[117,87,72,64.0],[117,87,73,64.0],[117,87,74,64.0],[117,87,75,64.0],[117,87,76,64.0],[117,87,77,64.0],[117,87,78,64.0],[117,87,79,64.0],[117,88,64,64.0],[117,88,65,64.0],[117,88,66,64.0],[117,88,67,64.0],[117,88,68,64.0],[117,88,69,64.0],[117,88,70,64.0],[117,88,71,64.0],[117,88,72,64.0],[117,88,73,64.0],[117,88,74,64.0],[117,88,75,64.0],[117,88,76,64.0],[117,88,77,64.0],[117,88,78,64.0],[117,88,79,64.0],[117,89,64,64.0],[117,89,65,64.0],[117,89,66,64.0],[117,89,67,64.0],[117,89,68,64.0],[117,89,69,64.0],[117,89,70,64.0],[117,89,71,64.0],[117,89,72,64.0],[117,89,73,64.0],[117,89,74,64.0],[117,89,75,64.0],[117,89,76,64.0],[117,89,77,64.0],[117,89,78,64.0],[117,89,79,64.0],[117,90,64,64.0],[117,90,65,64.0],[117,90,66,64.0],[117,90,67,64.0],[117,90,68,64.0],[117,90,69,64.0],[117,90,70,64.0],[117,90,71,64.0],[117,90,72,64.0],[117,90,73,64.0],[117,90,74,64.0],[117,90,75,64.0],[117,90,76,64.0],[117,90,77,64.0],[117,90,78,64.0],[117,90,79,64.0],[117,91,64,64.0],[117,91,65,64.0],[117,91,66,64.0],[117,91,67,64.0],[117,91,68,64.0],[117,91,69,64.0],[117,91,70,64.0],[117,91,71,64.0],[117,91,72,64.0],[117,91,73,64.0],[117,91,74,64.0],[117,91,75,64.0],[117,91,76,64.0],[117,91,77,64.0],[117,91,78,64.0],[117,91,79,64.0],[117,92,64,64.0],[117,92,65,64.0],[117,92,66,64.0],[117,92,67,64.0],[117,92,68,64.0],[117,92,69,64.0],[117,92,70,64.0],[117,92,71,64.0],[117,92,72,64.0],[117,92,73,64.0],[117,92,74,64.0],[117,92,75,64.0],[117,92,76,64.0],[117,92,77,64.0],[117,92,78,64.0],[117,92,79,64.0],[117,93,64,64.0],[117,93,65,64.0],[117,93,66,64.0],[117,93,67,64.0],[117,93,68,64.0],[117,93,69,64.0],[117,93,70,64.0],[117,93,71,64.0],[117,93,72,64.0],[117,93,73,64.0],[117,93,74,64.0],[117,93,75,64.0],[117,93,76,64.0],[117,93,77,64.0],[117,93,78,64.0],[117,93,79,64.0],[117,94,64,64.0],[117,94,65,64.0],[117,94,66,64.0],[117,94,67,64.0],[117,94,68,64.0],[117,94,69,64.0],[117,94,70,64.0],[117,94,71,64.0],[117,94,72,64.0],[117,94,73,64.0],[117,94,74,64.0],[117,94,75,64.0],[117,94,76,64.0],[117,94,77,64.0],[117,94,78,64.0],[117,94,79,64.0],[117,95,64,64.0],[117,95,65,64.0],[117,95,66,64.0],[117,95,67,64.0],[117,95,68,64.0],[117,95,69,64.0],[117,95,70,64.0],[117,95,71,64.0],[117,95,72,64.0],[117,95,73,64.0],[117,95,74,64.0],[117,95,75,64.0],[117,95,76,64.0],[117,95,77,64.0],[117,95,78,64.0],[117,95,79,64.0],[117,96,64,64.0],[117,96,65,64.0],[117,96,66,64.0],[117,96,67,64.0],[117,96,68,64.0],[117,96,69,64.0],[117,96,70,64.0],[117,96,71,64.0],[117,96,72,64.0],[117,96,73,64.0],[117,96,74,64.0],[117,96,75,64.0],[117,96,76,64.0],[117,96,77,64.0],[117,96,78,64.0],[117,96,79,64.0],[117,97,64,64.0],[117,97,65,64.0],[117,97,66,64.0],[117,97,67,64.0],[117,97,68,64.0],[117,97,69,64.0],[117,97,70,64.0],[117,97,71,64.0],[117,97,72,64.0],[117,97,73,64.0],[117,97,74,64.0],[117,97,75,64.0],[117,97,76,64.0],[117,97,77,64.0],[117,97,78,64.0],[117,97,79,64.0],[117,98,64,64.0],[117,98,65,64.0],[117,98,66,64.0],[117,98,67,64.0],[117,98,68,64.0],[117,98,69,64.0],[117,98,70,64.0],[117,98,71,64.0],[117,98,72,64.0],[117,98,73,64.0],[117,98,74,64.0],[117,98,75,64.0],[117,98,76,64.0],[117,98,77,64.0],[117,98,78,64.0],[117,98,79,64.0],[117,99,64,64.0],[117,99,65,64.0],[117,99,66,64.0],[117,99,67,64.0],[117,99,68,64.0],[117,99,69,64.0],[117,99,70,64.0],[117,99,71,64.0],[117,99,72,64.0],[117,99,73,64.0],[117,99,74,64.0],[117,99,75,64.0],[117,99,76,64.0],[117,99,77,64.0],[117,99,78,64.0],[117,99,79,64.0],[117,100,64,64.0],[117,100,65,64.0],[117,100,66,64.0],[117,100,67,64.0],[117,100,68,64.0],[117,100,69,64.0],[117,100,70,64.0],[117,100,71,64.0],[117,100,72,64.0],[117,100,73,64.0],[117,100,74,64.0],[117,100,75,64.0],[117,100,76,64.0],[117,100,77,64.0],[117,100,78,64.0],[117,100,79,64.0],[117,101,64,64.0],[117,101,65,64.0],[117,101,66,64.0],[117,101,67,64.0],[117,101,68,64.0],[117,101,69,64.0],[117,101,70,64.0],[117,101,71,64.0],[117,101,72,64.0],[117,101,73,64.0],[117,101,74,64.0],[117,101,75,64.0],[117,101,76,64.0],[117,101,77,64.0],[117,101,78,64.0],[117,101,79,64.0],[117,102,64,64.0],[117,102,65,64.0],[117,102,66,64.0],[117,102,67,64.0],[117,102,68,64.0],[117,102,69,64.0],[117,102,70,64.0],[117,102,71,64.0],[117,102,72,64.0],[117,102,73,64.0],[117,102,74,64.0],[117,102,75,64.0],[117,102,76,64.0],[117,102,77,64.0],[117,102,78,64.0],[117,102,79,64.0],[117,103,64,64.0],[117,103,65,64.0],[117,103,66,64.0],[117,103,67,64.0],[117,103,68,64.0],[117,103,69,64.0],[117,103,70,64.0],[117,103,71,64.0],[117,103,72,64.0],[117,103,73,64.0],[117,103,74,64.0],[117,103,75,64.0],[117,103,76,64.0],[117,103,77,64.0],[117,103,78,64.0],[117,103,79,64.0],[117,104,64,64.0],[117,104,65,64.0],[117,104,66,64.0],[117,104,67,64.0],[117,104,68,64.0],[117,104,69,64.0],[117,104,70,64.0],[117,104,71,64.0],[117,104,72,64.0],[117,104,73,64.0],[117,104,74,64.0],[117,104,75,64.0],[117,104,76,64.0],[117,104,77,64.0],[117,104,78,64.0],[117,104,79,64.0],[117,105,64,64.0],[117,105,65,64.0],[117,105,66,64.0],[117,105,67,64.0],[117,105,68,64.0],[117,105,69,64.0],[117,105,70,64.0],[117,105,71,64.0],[117,105,72,64.0],[117,105,73,64.0],[117,105,74,64.0],[117,105,75,64.0],[117,105,76,64.0],[117,105,77,64.0],[117,105,78,64.0],[117,105,79,64.0],[117,106,64,64.0],[117,106,65,64.0],[117,106,66,64.0],[117,106,67,64.0],[117,106,68,64.0],[117,106,69,64.0],[117,106,70,64.0],[117,106,71,64.0],[117,106,72,64.0],[117,106,73,64.0],[117,106,74,64.0],[117,106,75,64.0],[117,106,76,64.0],[117,106,77,64.0],[117,106,78,64.0],[117,106,79,64.0],[117,107,64,64.0],[117,107,65,64.0],[117,107,66,64.0],[117,107,67,64.0],[117,107,68,64.0],[117,107,69,64.0],[117,107,70,64.0],[117,107,71,64.0],[117,107,72,64.0],[117,107,73,64.0],[117,107,74,64.0],[117,107,75,64.0],[117,107,76,64.0],[117,107,77,64.0],[117,107,78,64.0],[117,107,79,64.0],[117,108,64,64.0],[117,108,65,64.0],[117,108,66,64.0],[117,108,67,64.0],[117,108,68,64.0],[117,108,69,64.0],[117,108,70,64.0],[117,108,71,64.0],[117,108,72,64.0],[117,108,73,64.0],[117,108,74,64.0],[117,108,75,64.0],[117,108,76,64.0],[117,108,77,64.0],[117,108,78,64.0],[117,108,79,64.0],[117,109,64,64.0],[117,109,65,64.0],[117,109,66,64.0],[117,109,67,64.0],[117,109,68,64.0],[117,109,69,64.0],[117,109,70,64.0],[117,109,71,64.0],[117,109,72,64.0],[117,109,73,64.0],[117,109,74,64.0],[117,109,75,64.0],[117,109,76,64.0],[117,109,77,64.0],[117,109,78,64.0],[117,109,79,64.0],[117,110,64,64.0],[117,110,65,64.0],[117,110,66,64.0],[117,110,67,64.0],[117,110,68,64.0],[117,110,69,64.0],[117,110,70,64.0],[117,110,71,64.0],[117,110,72,64.0],[117,110,73,64.0],[117,110,74,64.0],[117,110,75,64.0],[117,110,76,64.0],[117,110,77,64.0],[117,110,78,64.0],[117,110,79,64.0],[117,111,64,64.0],[117,111,65,64.0],[117,111,66,64.0],[117,111,67,64.0],[117,111,68,64.0],[117,111,69,64.0],[117,111,70,64.0],[117,111,71,64.0],[117,111,72,64.0],[117,111,73,64.0],[117,111,74,64.0],[117,111,75,64.0],[117,111,76,64.0],[117,111,77,64.0],[117,111,78,64.0],[117,111,79,64.0],[117,112,64,64.0],[117,112,65,64.0],[117,112,66,64.0],[117,112,67,64.0],[117,112,68,64.0],[117,112,69,64.0],[117,112,70,64.0],[117,112,71,64.0],[117,112,72,64.0],[117,112,73,64.0],[117,112,74,64.0],[117,112,75,64.0],[117,112,76,64.0],[117,112,77,64.0],[117,112,78,64.0],[117,112,79,64.0],[117,113,64,64.0],[117,113,65,64.0],[117,113,66,64.0],[117,113,67,64.0],[117,113,68,64.0],[117,113,69,64.0],[117,113,70,64.0],[117,113,71,64.0],[117,113,72,64.0],[117,113,73,64.0],[117,113,74,64.0],[117,113,75,64.0],[117,113,76,64.0],[117,113,77,64.0],[117,113,78,64.0],[117,113,79,64.0],[117,114,64,64.0],[117,114,65,64.0],[117,114,66,64.0],[117,114,67,64.0],[117,114,68,64.0],[117,114,69,64.0],[117,114,70,64.0],[117,114,71,64.0],[117,114,72,64.0],[117,114,73,64.0],[117,114,74,64.0],[117,114,75,64.0],[117,114,76,64.0],[117,114,77,64.0],[117,114,78,64.0],[117,114,79,64.0],[117,115,64,64.0],[117,115,65,64.0],[117,115,66,64.0],[117,115,67,64.0],[117,115,68,64.0],[117,115,69,64.0],[117,115,70,64.0],[117,115,71,64.0],[117,115,72,64.0],[117,115,73,64.0],[117,115,74,64.0],[117,115,75,64.0],[117,115,76,64.0],[117,115,77,64.0],[117,115,78,64.0],[117,115,79,64.0],[117,116,64,64.0],[117,116,65,64.0],[117,116,66,64.0],[117,116,67,64.0],[117,116,68,64.0],[117,116,69,64.0],[117,116,70,64.0],[117,116,71,64.0],[117,116,72,64.0],[117,116,73,64.0],[117,116,74,64.0],[117,116,75,64.0],[117,116,76,64.0],[117,116,77,64.0],[117,116,78,64.0],[117,116,79,64.0],[117,117,64,64.0],[117,117,65,64.0],[117,117,66,64.0],[117,117,67,64.0],[117,117,68,64.0],[117,117,69,64.0],[117,117,70,64.0],[117,117,71,64.0],[117,117,72,64.0],[117,117,73,64.0],[117,117,74,64.0],[117,117,75,64.0],[117,117,76,64.0],[117,117,77,64.0],[117,117,78,64.0],[117,117,79,64.0],[117,118,64,64.0],[117,118,65,64.0],[117,118,66,64.0],[117,118,67,64.0],[117,118,68,64.0],[117,118,69,64.0],[117,118,70,64.0],[117,118,71,64.0],[117,118,72,64.0],[117,118,73,64.0],[117,118,74,64.0],[117,118,75,64.0],[117,118,76,64.0],[117,118,77,64.0],[117,118,78,64.0],[117,118,79,64.0],[117,119,64,64.0],[117,119,65,64.0],[117,119,66,64.0],[117,119,67,64.0],[117,119,68,64.0],[117,119,69,64.0],[117,119,70,64.0],[117,119,71,64.0],[117,119,72,64.0],[117,119,73,64.0],[117,119,74,64.0],[117,119,75,64.0],[117,119,76,64.0],[117,119,77,64.0],[117,119,78,64.0],[117,119,79,64.0],[117,120,64,64.0],[117,120,65,64.0],[117,120,66,64.0],[117,120,67,64.0],[117,120,68,64.0],[117,120,69,64.0],[117,120,70,64.0],[117,120,71,64.0],[117,120,72,64.0],[117,120,73,64.0],[117,120,74,64.0],[117,120,75,64.0],[117,120,76,64.0],[117,120,77,64.0],[117,120,78,64.0],[117,120,79,64.0],[117,121,64,64.0],[117,121,65,64.0],[117,121,66,64.0],[117,121,67,64.0],[117,121,68,64.0],[117,121,69,64.0],[117,121,70,64.0],[117,121,71,64.0],[117,121,72,64.0],[117,121,73,64.0],[117,121,74,64.0],[117,121,75,64.0],[117,121,76,64.0],[117,121,77,64.0],[117,121,78,64.0],[117,121,79,64.0],[117,122,64,64.0],[117,122,65,64.0],[117,122,66,64.0],[117,122,67,64.0],[117,122,68,64.0],[117,122,69,64.0],[117,122,70,64.0],[117,122,71,64.0],[117,122,72,64.0],[117,122,73,64.0],[117,122,74,64.0],[117,122,75,64.0],[117,122,76,64.0],[117,122,77,64.0],[117,122,78,64.0],[117,122,79,64.0],[117,123,64,64.0],[117,123,65,64.0],[117,123,66,64.0],[117,123,67,64.0],[117,123,68,64.0],[117,123,69,64.0],[117,123,70,64.0],[117,123,71,64.0],[117,123,72,64.0],[117,123,73,64.0],[117,123,74,64.0],[117,123,75,64.0],[117,123,76,64.0],[117,123,77,64.0],[117,123,78,64.0],[117,123,79,64.0],[117,124,64,64.0],[117,124,65,64.0],[117,124,66,64.0],[117,124,67,64.0],[117,124,68,64.0],[117,124,69,64.0],[117,124,70,64.0],[117,124,71,64.0],[117,124,72,64.0],[117,124,73,64.0],[117,124,74,64.0],[117,124,75,64.0],[117,124,76,64.0],[117,124,77,64.0],[117,124,78,64.0],[117,124,79,64.0],[117,125,64,64.0],[117,125,65,64.0],[117,125,66,64.0],[117,125,67,64.0],[117,125,68,64.0],[117,125,69,64.0],[117,125,70,64.0],[117,125,71,64.0],[117,125,72,64.0],[117,125,73,64.0],[117,125,74,64.0],[117,125,75,64.0],[117,125,76,64.0],[117,125,77,64.0],[117,125,78,64.0],[117,125,79,64.0],[117,126,64,64.0],[117,126,65,64.0],[117,126,66,64.0],[117,126,67,64.0],[117,126,68,64.0],[117,126,69,64.0],[117,126,70,64.0],[117,126,71,64.0],[117,126,72,64.0],[117,126,73,64.0],[117,126,74,64.0],[117,126,75,64.0],[117,126,76,64.0],[117,126,77,64.0],[117,126,78,64.0],[117,126,79,64.0],[117,127,64,64.0],[117,127,65,64.0],[117,127,66,64.0],[117,127,67,64.0],[117,127,68,64.0],[117,127,69,64.0],[117,127,70,64.0],[117,127,71,64.0],[117,127,72,64.0],[117,127,73,64.0],[117,127,74,64.0],[117,127,75,64.0],[117,127,76,64.0],[117,127,77,64.0],[117,127,78,64.0],[117,127,79,64.0],[117,128,64,64.0],[117,128,65,64.0],[117,128,66,64.0],[117,128,67,64.0],[117,128,68,64.0],[117,128,69,64.0],[117,128,70,64.0],[117,128,71,64.0],[117,128,72,64.0],[117,128,73,64.0],[117,128,74,64.0],[117,128,75,64.0],[117,128,76,64.0],[117,128,77,64.0],[117,128,78,64.0],[117,128,79,64.0],[117,129,64,64.0],[117,129,65,64.0],[117,129,66,64.0],[117,129,67,64.0],[117,129,68,64.0],[117,129,69,64.0],[117,129,70,64.0],[117,129,71,64.0],[117,129,72,64.0],[117,129,73,64.0],[117,129,74,64.0],[117,129,75,64.0],[117,129,76,64.0],[117,129,77,64.0],[117,129,78,64.0],[117,129,79,64.0],[117,130,64,64.0],[117,130,65,64.0],[117,130,66,64.0],[117,130,67,64.0],[117,130,68,64.0],[117,130,69,64.0],[117,130,70,64.0],[117,130,71,64.0],[117,130,72,64.0],[117,130,73,64.0],[117,130,74,64.0],[117,130,75,64.0],[117,130,76,64.0],[117,130,77,64.0],[117,130,78,64.0],[117,130,79,64.0],[117,131,64,64.0],[117,131,65,64.0],[117,131,66,64.0],[117,131,67,64.0],[117,131,68,64.0],[117,131,69,64.0],[117,131,70,64.0],[117,131,71,64.0],[117,131,72,64.0],[117,131,73,64.0],[117,131,74,64.0],[117,131,75,64.0],[117,131,76,64.0],[117,131,77,64.0],[117,131,78,64.0],[117,131,79,64.0],[117,132,64,64.0],[117,132,65,64.0],[117,132,66,64.0],[117,132,67,64.0],[117,132,68,64.0],[117,132,69,64.0],[117,132,70,64.0],[117,132,71,64.0],[117,132,72,64.0],[117,132,73,64.0],[117,132,74,64.0],[117,132,75,64.0],[117,132,76,64.0],[117,132,77,64.0],[117,132,78,64.0],[117,132,79,64.0],[117,133,64,64.0],[117,133,65,64.0],[117,133,66,64.0],[117,133,67,64.0],[117,133,68,64.0],[117,133,69,64.0],[117,133,70,64.0],[117,133,71,64.0],[117,133,72,64.0],[117,133,73,64.0],[117,133,74,64.0],[117,133,75,64.0],[117,133,76,64.0],[117,133,77,64.0],[117,133,78,64.0],[117,133,79,64.0],[117,134,64,64.0],[117,134,65,64.0],[117,134,66,64.0],[117,134,67,64.0],[117,134,68,64.0],[117,134,69,64.0],[117,134,70,64.0],[117,134,71,64.0],[117,134,72,64.0],[117,134,73,64.0],[117,134,74,64.0],[117,134,75,64.0],[117,134,76,64.0],[117,134,77,64.0],[117,134,78,64.0],[117,134,79,64.0],[117,135,64,64.0],[117,135,65,64.0],[117,135,66,64.0],[117,135,67,64.0],[117,135,68,64.0],[117,135,69,64.0],[117,135,70,64.0],[117,135,71,64.0],[117,135,72,64.0],[117,135,73,64.0],[117,135,74,64.0],[117,135,75,64.0],[117,135,76,64.0],[117,135,77,64.0],[117,135,78,64.0],[117,135,79,64.0],[117,136,64,64.0],[117,136,65,64.0],[117,136,66,64.0],[117,136,67,64.0],[117,136,68,64.0],[117,136,69,64.0],[117,136,70,64.0],[117,136,71,64.0],[117,136,72,64.0],[117,136,73,64.0],[117,136,74,64.0],[117,136,75,64.0],[117,136,76,64.0],[117,136,77,64.0],[117,136,78,64.0],[117,136,79,64.0],[117,137,64,64.0],[117,137,65,64.0],[117,137,66,64.0],[117,137,67,64.0],[117,137,68,64.0],[117,137,69,64.0],[117,137,70,64.0],[117,137,71,64.0],[117,137,72,64.0],[117,137,73,64.0],[117,137,74,64.0],[117,137,75,64.0],[117,137,76,64.0],[117,137,77,64.0],[117,137,78,64.0],[117,137,79,64.0],[117,138,64,64.0],[117,138,65,64.0],[117,138,66,64.0],[117,138,67,64.0],[117,138,68,64.0],[117,138,69,64.0],[117,138,70,64.0],[117,138,71,64.0],[117,138,72,64.0],[117,138,73,64.0],[117,138,74,64.0],[117,138,75,64.0],[117,138,76,64.0],[117,138,77,64.0],[117,138,78,64.0],[117,138,79,64.0],[117,139,64,64.0],[117,139,65,64.0],[117,139,66,64.0],[117,139,67,64.0],[117,139,68,64.0],[117,139,69,64.0],[117,139,70,64.0],[117,139,71,64.0],[117,139,72,64.0],[117,139,73,64.0],[117,139,74,64.0],[117,139,75,64.0],[117,139,76,64.0],[117,139,77,64.0],[117,139,78,64.0],[117,139,79,64.0],[117,140,64,64.0],[117,140,65,64.0],[117,140,66,64.0],[117,140,67,64.0],[117,140,68,64.0],[117,140,69,64.0],[117,140,70,64.0],[117,140,71,64.0],[117,140,72,64.0],[117,140,73,64.0],[117,140,74,64.0],[117,140,75,64.0],[117,140,76,64.0],[117,140,77,64.0],[117,140,78,64.0],[117,140,79,64.0],[117,141,64,64.0],[117,141,65,64.0],[117,141,66,64.0],[117,141,67,64.0],[117,141,68,64.0],[117,141,69,64.0],[117,141,70,64.0],[117,141,71,64.0],[117,141,72,64.0],[117,141,73,64.0],[117,141,74,64.0],[117,141,75,64.0],[117,141,76,64.0],[117,141,77,64.0],[117,141,78,64.0],[117,141,79,64.0],[117,142,64,64.0],[117,142,65,64.0],[117,142,66,64.0],[117,142,67,64.0],[117,142,68,64.0],[117,142,69,64.0],[117,142,70,64.0],[117,142,71,64.0],[117,142,72,64.0],[117,142,73,64.0],[117,142,74,64.0],[117,142,75,64.0],[117,142,76,64.0],[117,142,77,64.0],[117,142,78,64.0],[117,142,79,64.0],[117,143,64,64.0],[117,143,65,64.0],[117,143,66,64.0],[117,143,67,64.0],[117,143,68,64.0],[117,143,69,64.0],[117,143,70,64.0],[117,143,71,64.0],[117,143,72,64.0],[117,143,73,64.0],[117,143,74,64.0],[117,143,75,64.0],[117,143,76,64.0],[117,143,77,64.0],[117,143,78,64.0],[117,143,79,64.0],[117,144,64,64.0],[117,144,65,64.0],[117,144,66,64.0],[117,144,67,64.0],[117,144,68,64.0],[117,144,69,64.0],[117,144,70,64.0],[117,144,71,64.0],[117,144,72,64.0],[117,144,73,64.0],[117,144,74,64.0],[117,144,75,64.0],[117,144,76,64.0],[117,144,77,64.0],[117,144,78,64.0],[117,144,79,64.0],[117,145,64,64.0],[117,145,65,64.0],[117,145,66,64.0],[117,145,67,64.0],[117,145,68,64.0],[117,145,69,64.0],[117,145,70,64.0],[117,145,71,64.0],[117,145,72,64.0],[117,145,73,64.0],[117,145,74,64.0],[117,145,75,64.0],[117,145,76,64.0],[117,145,77,64.0],[117,145,78,64.0],[117,145,79,64.0],[117,146,64,64.0],[117,146,65,64.0],[117,146,66,64.0],[117,146,67,64.0],[117,146,68,64.0],[117,146,69,64.0],[117,146,70,64.0],[117,146,71,64.0],[117,146,72,64.0],[117,146,73,64.0],[117,146,74,64.0],[117,146,75,64.0],[117,146,76,64.0],[117,146,77,64.0],[117,146,78,64.0],[117,146,79,64.0],[117,147,64,64.0],[117,147,65,64.0],[117,147,66,64.0],[117,147,67,64.0],[117,147,68,64.0],[117,147,69,64.0],[117,147,70,64.0],[117,147,71,64.0],[117,147,72,64.0],[117,147,73,64.0],[117,147,74,64.0],[117,147,75,64.0],[117,147,76,64.0],[117,147,77,64.0],[117,147,78,64.0],[117,147,79,64.0],[117,148,64,64.0],[117,148,65,64.0],[117,148,66,64.0],[117,148,67,64.0],[117,148,68,64.0],[117,148,69,64.0],[117,148,70,64.0],[117,148,71,64.0],[117,148,72,64.0],[117,148,73,64.0],[117,148,74,64.0],[117,148,75,64.0],[117,148,76,64.0],[117,148,77,64.0],[117,148,78,64.0],[117,148,79,64.0],[117,149,64,64.0],[117,149,65,64.0],[117,149,66,64.0],[117,149,67,64.0],[117,149,68,64.0],[117,149,69,64.0],[117,149,70,64.0],[117,149,71,64.0],[117,149,72,64.0],[117,149,73,64.0],[117,149,74,64.0],[117,149,75,64.0],[117,149,76,64.0],[117,149,77,64.0],[117,149,78,64.0],[117,149,79,64.0],[117,150,64,64.0],[117,150,65,64.0],[117,150,66,64.0],[117,150,67,64.0],[117,150,68,64.0],[117,150,69,64.0],[117,150,70,64.0],[117,150,71,64.0],[117,150,72,64.0],[117,150,73,64.0],[117,150,74,64.0],[117,150,75,64.0],[117,150,76,64.0],[117,150,77,64.0],[117,150,78,64.0],[117,150,79,64.0],[117,151,64,64.0],[117,151,65,64.0],[117,151,66,64.0],[117,151,67,64.0],[117,151,68,64.0],[117,151,69,64.0],[117,151,70,64.0],[117,151,71,64.0],[117,151,72,64.0],[117,151,73,64.0],[117,151,74,64.0],[117,151,75,64.0],[117,151,76,64.0],[117,151,77,64.0],[117,151,78,64.0],[117,151,79,64.0],[117,152,64,64.0],[117,152,65,64.0],[117,152,66,64.0],[117,152,67,64.0],[117,152,68,64.0],[117,152,69,64.0],[117,152,70,64.0],[117,152,71,64.0],[117,152,72,64.0],[117,152,73,64.0],[117,152,74,64.0],[117,152,75,64.0],[117,152,76,64.0],[117,152,77,64.0],[117,152,78,64.0],[117,152,79,64.0],[117,153,64,64.0],[117,153,65,64.0],[117,153,66,64.0],[117,153,67,64.0],[117,153,68,64.0],[117,153,69,64.0],[117,153,70,64.0],[117,153,71,64.0],[117,153,72,64.0],[117,153,73,64.0],[117,153,74,64.0],[117,153,75,64.0],[117,153,76,64.0],[117,153,77,64.0],[117,153,78,64.0],[117,153,79,64.0],[117,154,64,64.0],[117,154,65,64.0],[117,154,66,64.0],[117,154,67,64.0],[117,154,68,64.0],[117,154,69,64.0],[117,154,70,64.0],[117,154,71,64.0],[117,154,72,64.0],[117,154,73,64.0],[117,154,74,64.0],[117,154,75,64.0],[117,154,76,64.0],[117,154,77,64.0],[117,154,78,64.0],[117,154,79,64.0],[117,155,64,64.0],[117,155,65,64.0],[117,155,66,64.0],[117,155,67,64.0],[117,155,68,64.0],[117,155,69,64.0],[117,155,70,64.0],[117,155,71,64.0],[117,155,72,64.0],[117,155,73,64.0],[117,155,74,64.0],[117,155,75,64.0],[117,155,76,64.0],[117,155,77,64.0],[117,155,78,64.0],[117,155,79,64.0],[117,156,64,64.0],[117,156,65,64.0],[117,156,66,64.0],[117,156,67,64.0],[117,156,68,64.0],[117,156,69,64.0],[117,156,70,64.0],[117,156,71,64.0],[117,156,72,64.0],[117,156,73,64.0],[117,156,74,64.0],[117,156,75,64.0],[117,156,76,64.0],[117,156,77,64.0],[117,156,78,64.0],[117,156,79,64.0],[117,157,64,64.0],[117,157,65,64.0],[117,157,66,64.0],[117,157,67,64.0],[117,157,68,64.0],[117,157,69,64.0],[117,157,70,64.0],[117,157,71,64.0],[117,157,72,64.0],[117,157,73,64.0],[117,157,74,64.0],[117,157,75,64.0],[117,157,76,64.0],[117,157,77,64.0],[117,157,78,64.0],[117,157,79,64.0],[117,158,64,64.0],[117,158,65,64.0],[117,158,66,64.0],[117,158,67,64.0],[117,158,68,64.0],[117,158,69,64.0],[117,158,70,64.0],[117,158,71,64.0],[117,158,72,64.0],[117,158,73,64.0],[117,158,74,64.0],[117,158,75,64.0],[117,158,76,64.0],[117,158,77,64.0],[117,158,78,64.0],[117,158,79,64.0],[117,159,64,64.0],[117,159,65,64.0],[117,159,66,64.0],[117,159,67,64.0],[117,159,68,64.0],[117,159,69,64.0],[117,159,70,64.0],[117,159,71,64.0],[117,159,72,64.0],[117,159,73,64.0],[117,159,74,64.0],[117,159,75,64.0],[117,159,76,64.0],[117,159,77,64.0],[117,159,78,64.0],[117,159,79,64.0],[117,160,64,64.0],[117,160,65,64.0],[117,160,66,64.0],[117,160,67,64.0],[117,160,68,64.0],[117,160,69,64.0],[117,160,70,64.0],[117,160,71,64.0],[117,160,72,64.0],[117,160,73,64.0],[117,160,74,64.0],[117,160,75,64.0],[117,160,76,64.0],[117,160,77,64.0],[117,160,78,64.0],[117,160,79,64.0],[117,161,64,64.0],[117,161,65,64.0],[117,161,66,64.0],[117,161,67,64.0],[117,161,68,64.0],[117,161,69,64.0],[117,161,70,64.0],[117,161,71,64.0],[117,161,72,64.0],[117,161,73,64.0],[117,161,74,64.0],[117,161,75,64.0],[117,161,76,64.0],[117,161,77,64.0],[117,161,78,64.0],[117,161,79,0.4591150916143766],[117,162,64,64.0],[117,162,65,64.0],[117,162,66,64.0],[117,162,67,64.0],[117,162,68,64.0],[117,162,69,64.0],[117,162,70,64.0],[117,162,71,64.0],[117,162,72,64.0],[117,162,73,64.0],[117,162,74,64.0],[117,162,75,64.0],[117,162,76,64.0],[117,162,77,64.0],[117,162,78,0.4076622264555148],[117,162,79,0.4608166136241879],[117,163,64,64.0],[117,163,65,64.0],[117,163,66,64.0],[117,163,67,64.0],[117,163,68,64.0],[117,163,69,64.0],[117,163,70,64.0],[117,163,71,64.0],[117,163,72,64.0],[117,163,73,64.0],[117,163,74,64.0],[117,163,75,64.0],[117,163,76,64.0],[117,163,77,0.35266678869644347],[117,163,78,0.4096887494515207],[117,163,79,0.4631857473674198],[117,164,64,64.0],[117,164,65,64.0],[117,164,66,64.0],[117,164,67,64.0],[117,164,68,64.0],[117,164,69,64.0],[117,164,70,64.0],[117,164,71,64.0],[117,164,72,64.0],[117,164,73,64.0],[117,164,74,64.0],[117,164,75,0.23342337493544257],[117,164,76,0.29539267864097585],[117,164,77,0.3554281914911551],[117,164,78,0.4126545151681659],[117,164,79,0.46630607881121666],[117,165,64,64.0],[117,165,65,64.0],[117,165,66,64.0],[117,165,67,64.0],[117,165,68,64.0],[117,165,69,64.0],[117,165,70,64.0],[117,165,71,64.0],[117,165,72,64.0],[117,165,73,64.0],[117,165,74,0.19701006727517112],[117,165,75,0.23720384077423506],[117,165,76,0.2992750452425502],[117,165,77,0.35937594865170897],[117,165,78,0.4166246717399229],[117,165,79,0.47025008615280645],[117,166,64,64.0],[117,166,65,64.0],[117,166,66,64.0],[117,166,67,64.0],[117,166,68,64.0],[117,166,69,64.0],[117,166,70,64.0],[117,166,71,64.0],[117,166,72,64.0],[117,166,73,0.18300292999772988],[117,166,74,0.17953142564607505],[117,166,75,0.24255706450223935],[117,166,76,0.30455795531549057],[117,166,77,0.36455106078329913],[117,166,78,0.42164926304235806],[117,166,79,0.47507713037437704],[117,167,64,64.0],[117,167,65,64.0],[117,167,66,64.0],[117,167,67,64.0],[117,167,68,64.0],[117,167,69,64.0],[117,167,70,64.0],[117,167,71,64.0],[117,167,72,0.1630997477183872],[117,167,73,0.14814010403403677],[117,167,74,0.18665777490160193],[117,167,75,0.24948423301059583],[117,167,76,0.3112528739149483],[117,167,77,0.37097561303883875],[117,167,78,0.4277612882671181],[117,167,79,0.48083136511063224],[117,168,64,64.0],[117,168,65,64.0],[117,168,66,64.0],[117,168,67,64.0],[117,168,68,64.0],[117,168,69,64.0],[117,168,70,64.0],[117,168,71,0.13797696251271718],[117,168,72,0.12612681012872534],[117,168,73,0.13249767347602218],[117,168,74,0.19548357630771318],[117,168,75,0.2579623489128171],[117,168,76,0.31934882673826204],[117,168,77,0.3786509823658953],[117,168,78,0.4349747416608428],[117,168,79,0.4875396005018656],[117,169,64,64.0],[117,169,65,64.0],[117,169,66,64.0],[117,169,67,64.0],[117,169,68,64.0],[117,169,69,0.11526991721853662],[117,169,70,0.10758704498171524],[117,169,71,0.099228838380975],[117,169,72,0.09098899031903593],[117,169,73,0.1434142736625479],[117,169,74,0.20594687806391446],[117,169,75,0.2679426835722742],[117,169,76,0.32881068045918216],[117,169,77,0.3875559351330329],[117,169,78,0.44328251797853674],[117,169,79,0.4952090077090994],[117,170,64,64.0],[117,170,65,64.0],[117,170,66,64.0],[117,170,67,64.0],[117,170,68,0.07455213832633843],[117,170,69,0.07160945253398229],[117,170,70,0.06743635712155188],[117,170,71,0.06265728380475719],[117,170,72,0.09356706143911679],[117,170,73,0.1559969760853181],[117,170,74,0.21795706590432234],[117,170,75,0.2793492426362527],[117,170,76,0.3395774113826865],[117,170,77,0.3976446881910247],[117,170,78,0.45265425594252884],[117,170,79,0.50382473562541],[117,171,64,64.0],[117,171,65,64.0],[117,171,66,64.0],[117,171,67,0.044678395832320514],[117,171,68,0.029971078580304567],[117,171,69,0.030459088503996312],[117,171,70,0.029803019593113794],[117,171,71,0.0462152567760325],[117,171,72,0.10833066087111318],[117,171,73,0.17010976165651434],[117,171,74,0.23139357679529615],[117,171,75,0.29207727050510846],[117,171,76,0.3515603886103875],[117,171,77,0.40884495932249376],[117,171,78,0.4630341454263178],[117,171,79,0.5133474652707337],[117,172,64,64.0],[117,172,65,64.0],[117,172,66,0.08365034470508888],[117,172,67,0.024800910865486275],[117,172,68,-0.011755338713768146],[117,172,69,-0.007845558238004743],[117,172,70,0.001619376173337822],[117,172,71,0.06314174365584953],[117,172,72,0.124542057989022],[117,172,73,0.1855844221294723],[117,172,74,0.24610464913880684],[117,172,75,0.3059917679895153],[117,172,76,0.36464164622949313],[117,172,77,0.4210559818506478],[117,172,78,0.47433867338930225],[117,172,79,0.5237108771490441],[117,173,64,64.0],[117,173,65,0.11808400904017473],[117,173,66,0.06152827667068593],[117,173,67,0.0033853036064879632],[117,173,68,-0.050334601663018126],[117,173,69,-0.040001187786011944],[117,173,70,0.020605202557677907],[117,173,71,0.08136498624616072],[117,173,72,0.14198295527474863],[117,173,73,0.20221958856265973],[117,173,74,0.26190610930079394],[117,173,75,0.32092602297683614],[117,173,76,0.3786721443481176],[117,173,77,0.4341464832316469],[117,173,78,0.4864543083886657],[117,173,79,0.5348190313958749],[117,174,64,0.14790665598504693],[117,174,65,0.09399858414533752],[117,174,66,0.03816904713621855],[117,174,67,-0.019232643739576144],[117,174,68,-0.07077640026461736],[117,174,69,-0.019149782266184454],[117,174,70,0.040665611331195436],[117,174,71,0.10061484861508392],[117,174,72,0.16040044388358665],[117,174,73,0.21977981844094518],[117,174,74,0.27858019446438614],[117,174,75,0.3366801541064918],[117,174,76,0.3934700189768191],[117,174,77,0.44795262763048926],[117,174,78,0.49923512366830597],[117,174,79,0.5465436607160894],[117,175,64,0.12223361952168538],[117,175,65,0.06904907731270174],[117,175,66,0.013961236333060928],[117,175,67,-0.024040440934616374],[117,175,68,-0.039267871378301386],[117,175,69,0.002481585237860434],[117,175,70,0.06147763424116508],[117,175,71,0.12058567697221487],[117,175,72,0.17950642045785797],[117,175,73,0.23799474145389404],[117,175,74,0.2958744118077252],[117,175,75,0.35301966745408764],[117,175,76,0.40881882075613785],[117,175,77,0.4622759224801983],[117,175,78,0.5125003588246094],[117,175,79,0.5587213761117071],[117,176,64,0.09613995145528498],[117,176,65,0.047961916092265564],[117,176,66,0.026785501995472055],[117,176,67,0.007084110054902851],[117,176,68,-0.011240504467204038],[117,176,69,0.024516925778599832],[117,176,70,0.08268245020646846],[117,176,71,0.1409360721643807],[117,176,72,0.19897708382040796],[117,176,73,0.2565582639315513],[117,176,74,0.31350043400684086],[117,176,75,0.3696740262247171],[117,176,76,0.42446574253053354],[117,176,77,0.4768810890246914],[117,176,78,0.526031920049421],[117,176,79,0.5711507854001185],[117,177,64,0.10665472758089846],[117,177,65,0.08133631463974747],[117,177,66,0.0573619078810375],[117,177,67,0.03475007185406635],[117,177,68,0.013426758342744316],[117,177,69,0.046680448394652116],[117,177,70,0.10401580640392466],[117,177,71,0.1614131929562489],[117,177,72,0.21857082581305373],[117,177,73,0.27523979576817026],[117,177,74,0.3312384566739612],[117,177,75,0.3864339810693673],[117,177,76,0.4402118149364084],[117,177,77,0.4915790671078789],[117,177,78,0.5396501898827473],[117,177,79,0.5836611551886421],[117,178,64,0.13920485040733882],[117,178,65,0.11130874088421217],[117,178,66,0.0846301927859022],[117,178,67,0.059210200940886706],[117,178,68,0.03499793250603819],[117,178,69,0.06930723881049655],[117,178,70,0.1257982809633578],[117,178,71,0.1823214918545666],[117,178,72,0.23857448307074625],[117,178,73,0.2943072265869352],[117,178,74,0.3493362819848647],[117,178,75,0.40352632515024756],[117,178,76,0.45626208219335584],[117,178,77,0.5065525482935418],[117,178,78,0.5535150406602564],[117,178,79,0.596389210886502],[117,179,64,0.16865811823185856],[117,179,65,0.13827892040629258],[117,179,66,0.10899933691888729],[117,179,67,0.0808816973342813],[117,179,68,0.053897271251729675],[117,179,69,0.09280367933370519],[117,179,70,0.14841872483260932],[117,179,71,0.20403062271969147],[117,179,72,0.259337003316832],[117,179,73,0.3140874766731329],[117,179,74,0.3680976999028698],[117,179,75,0.42123086046205555],[117,179,76,0.4728717103567541],[117,179,77,0.5220315804292295],[117,179,78,0.5678310847297058],[117,179,79,0.6095139766367123],[117,180,64,0.19533474788460217],[117,180,65,0.16257630145038993],[117,180,66,0.13080729504668243],[117,180,67,0.1001101664571355],[117,180,68,0.0704770509294503],[117,180,69,0.11743497412443003],[117,180,70,0.1721306216431928],[117,180,71,0.22678115616022682],[117,180,72,0.2810849741241539],[117,180,73,0.33479222796464325],[117,180,74,0.38771873656475053],[117,180,75,0.4397274015126522],[117,180,76,0.4902039052014462],[117,180,77,0.5381624790435052],[117,180,78,0.5827275788826122],[117,180,79,0.6231475932290036],[117,181,64,0.21884017081647178],[117,181,65,0.18382087994578222],[117,181,66,0.1496896744974119],[117,181,67,0.11654770672803635],[117,181,68,0.08985874265680248],[117,181,69,0.14334154823293052],[117,181,70,0.19706781426438202],[117,181,71,0.2506995872528497],[117,181,72,0.3039368678906283],[117,181,73,0.35653136517902884],[117,181,74,0.4083002535451074],[117,181,75,0.45910749804759654],[117,181,76,0.5083407280182118],[117,181,77,0.5550177110933887],[117,181,78,0.5982673565467687],[117,181,79,0.6373432851042994],[117,182,64,0.23874401265066003],[117,182,65,0.201595510545289],[117,182,66,0.16524373090299965],[117,182,67,0.12980700707999757],[117,182,68,0.11803404706514352],[117,182,69,0.1705547879407121],[117,182,70,0.22325959766574466],[117,182,71,0.27581273688708285],[117,182,72,0.3279167099204356],[117,182,73,0.37932587151627023],[117,182,74,0.4298600349562045],[117,182,75,0.47938568043807595],[117,182,76,0.5272934702294497],[117,182,77,0.5726053747610805],[117,182,78,0.614455394068774],[117,182,79,0.6521030000296515],[117,183,64,0.254772702089704],[117,183,65,0.21563654745088517],[117,183,66,0.17721656013471598],[117,183,67,0.13964662841987852],[117,183,68,0.14749508078895618],[117,183,69,0.19901204162010222],[117,183,70,0.25064510062524625],[117,183,71,0.302061472789153],[117,183,72,0.35296709935330967],[117,183,73,0.40312011251374497],[117,183,74,0.45234429991253877],[117,183,75,0.5005101693041982],[117,183,76,0.5470125324993766],[117,183,77,0.5908782251094223],[117,183,78,0.6312469650309845],[117,183,79,0.6673846794940907],[117,184,64,0.26681513888999125],[117,184,65,0.22583939445739093],[117,184,66,0.18551050585961948],[117,184,67,0.14597624716590857],[117,184,68,0.17809460915475334],[117,184,69,0.22857088111188104],[117,184,70,0.2790869562825538],[117,184,71,0.3293137502245788],[117,184,72,0.378961582941586],[117,184,73,0.42779350805313204],[117,184,74,0.4756386403598364],[117,184,75,0.5223730493733535],[117,184,76,0.5673968083384782],[117,184,77,0.6097422455958436],[117,184,78,0.6485553826026532],[117,184,79,0.6831091598251747],[117,185,64,0.27492887905692637],[117,185,65,0.23226458840404818],[117,185,66,0.19018911612388484],[117,185,67,0.16051824009984578],[117,185,68,0.20961670911491365],[117,185,69,0.2590226236216576],[117,185,70,0.3083842615382086],[117,185,71,0.3573769723801363],[117,185,72,0.4057163816756239],[117,185,73,0.45317159251982864],[117,185,74,0.4995783842690362],[117,185,75,0.5448199075741824],[117,185,76,0.5883025722027093],[117,185,77,0.6290647654452581],[117,185,78,0.6662593299256943],[117,185,79,0.6991667040266372],[117,186,64,0.2793468372598087],[117,186,65,0.23514441603318956],[117,186,66,0.19148364896238934],[117,186,67,0.19368739500166993],[117,186,68,0.2417900504946976],[117,186,69,0.29010511413468343],[117,186,70,0.33828482529836784],[117,186,71,0.3860096704249082],[117,186,72,0.4330014702573296],[117,186,73,0.47903646311461406],[117,186,74,0.5239583841950078],[117,186,75,0.5676589353659023],[117,186,76,0.609551872087214],[117,186,77,0.6486821228816986],[117,186,78,0.6842097785348704],[117,186,79,0.715423164336952],[117,187,64,0.2804845064670562],[117,187,65,0.23489006425649572],[117,187,66,0.1898001270348963],[117,187,67,0.22719694504394428],[117,187,68,0.27430041207490125],[117,187,69,0.32151476834867415],[117,187,70,0.3684967055647041],[117,187,71,0.41493250325002506],[117,187,72,0.46055100942139626],[117,187,73,0.505136616317202],[117,187,74,0.5485422311996607],[117,187,75,0.5906694953026772],[117,187,76,0.6309404266142674],[117,187,77,0.6684068742184104],[117,187,78,0.7022364948121462],[117,187,79,0.731725775508576],[117,188,64,0.27892459568981914],[117,188,65,0.23207674634496345],[117,188,66,0.21494052269219388],[117,188,67,0.26069111565399566],[117,188,68,0.3068024325109622],[117,188,69,0.35291787612542846],[117,188,70,0.3986990353702209],[117,188,71,0.44383857688782596],[117,188,72,0.4880731311049654],[117,188,73,0.531196172502344],[117,188,74,0.5730708941400804],[117,188,75,0.613610151833624],[117,188,76,0.6522450266160003],[117,188,77,0.6880345488069263],[117,188,78,0.7201541344756907],[117,188,79,0.7479085788083152],[117,189,64,0.274726063655258],[117,189,65,0.22676900452140106],[117,189,66,0.24890305532692242],[117,189,67,0.2937935553437543],[117,189,68,0.33893059608812204],[117,189,69,0.3839611654608619],[117,189,70,0.42855213756061716],[117,189,71,0.47240308361008654],[117,189,72,0.5152590764653657],[117,189,73,0.5569234887081647],[117,189,74,0.59727078432138],[117,189,75,0.636226166338163],[117,189,76,0.6732304412116255],[117,189,77,0.7073499498448599],[117,189,78,0.7377679251032893],[117,189,79,0.7637974767385914],[117,190,64,0.2672955790547977],[117,190,65,0.23848253723185017],[117,190,66,0.2820562464934016],[117,190,67,0.32611792708292575],[117,190,68,0.37030945331222137],[117,190,69,0.4142816269730437],[117,190,70,0.45770692842080346],[117,190,71,0.5002922607049315],[117,190,72,0.5417916867455685],[117,190,73,0.5820191595563791],[117,190,74,0.6208612455139421],[117,190,75,0.6582564563964113],[117,190,76,0.6936558283788902],[117,190,77,0.7261330010421679],[117,190,78,0.7548789366899268],[117,190,79,0.7792149184793941],[117,191,64,0.2561693827544992],[117,191,65,0.2711001117186764],[117,191,66,0.31400470960624255],[117,191,67,0.35727771157393295],[117,191,68,0.40056307633696275],[117,191,69,0.44351559890904607],[117,191,70,0.48581361014735036],[117,191,71,0.5271716689331833],[117,191,72,0.5673532469880751],[117,191,73,0.6061834063250773],[117,191,74,0.6435614693356987],[117,191,75,0.67944001929522],[117,191,76,0.7132806500203142],[117,191,77,0.744164139146388],[117,191,78,0.7712889402400197],[117,191,79,0.7939842160513558],[117,192,64,0.26040069940406274],[117,192,65,0.30207979748657116],[117,192,66,0.3443626207908368],[117,192,67,0.3868952224281789],[117,192,68,0.42932374922721184],[117,192,69,0.4713071126701888],[117,192,70,0.5125296521664658],[117,192,71,0.5527137906637573],[117,192,72,0.5916326825968652],[117,192,73,0.6291228541737184],[117,192,74,0.6650968359991074],[117,192,75,0.6995218197695419],[117,192,76,0.7318700915239187],[117,192,77,0.7612292523265949],[117,192,78,0.7868048543940499],[117,192,79,0.8079334911997198],[117,193,64,0.2898227902982277],[117,193,65,0.3310486764429764],[117,193,66,0.3727622307550581],[117,193,67,0.4146098332432368],[117,193,68,0.4562398930579509],[117,193,69,0.4973154988553109],[117,193,70,0.5375270612971477],[117,193,71,0.5766049476877652],[117,193,72,0.6143321087470839],[117,193,73,0.6505566975200328],[117,193,74,0.6852046804225431],[117,193,75,0.7182581419788612],[117,193,76,0.7491999858182],[117,193,77,0.777124164415832],[117,193,78,0.8012427800893849],[117,193,79,0.8208992529990072],[117,194,64,0.31683680803859743],[117,194,65,0.35766096942646364],[117,194,66,0.3988615684399788],[117,194,67,0.44008541658179723],[117,194,68,0.48098322584969455],[117,194,69,0.5212222538228432],[117,194,70,0.5604989407602575],[117,194,71,0.5985515387120441],[117,194,72,0.6351727326431496],[117,194,73,0.6702222535694786],[117,194,74,0.7036394837067129],[117,194,75,0.7354214057192574],[117,194,76,0.7650612419218769],[117,194,77,0.7916586650125184],[117,194,78,0.8144316232557385],[117,194,79,0.8327296061788004],[117,195,64,0.3411311332704009],[117,195,65,0.38160516475518474],[117,195,66,0.42235133644911294],[117,195,67,0.4630169948519032],[117,195,68,0.503255157339906],[117,195,69,0.5427371667712446],[117,195,70,0.5811653380330922],[117,195,71,0.6182855965317021],[117,195,72,0.6539001086248943],[117,195,73,0.6878799039968825],[117,195,74,0.7201774899757457],[117,195,75,0.750804446870776],[117,195,76,0.7792637779881098],[117,195,77,0.8046600854405467],[117,195,78,0.8262163055450136],[117,195,79,0.8432870901703994],[117,196,64,0.3624365252653209],[117,196,65,0.4026102528460601],[117,196,66,0.4429609272650792],[117,196,67,0.4831365296221587],[117,196,68,0.5227923427642446],[117,196,69,0.5616036292806796],[117,196,70,0.5992783013971202],[117,196,71,0.6355695827687359],[117,196,72,0.6702886621724047],[117,196,73,0.7033173390977985],[117,196,74,0.7346206612376449],[117,196,75,0.7642241731039222],[117,196,76,0.7916398683561431],[117,196,77,0.815976328873905],[117,196,78,0.8364604706560089],[117,196,79,0.8524510562813736],[117,197,64,0.3804288627021412],[117,197,65,0.4203442230537695],[117,197,66,0.460352763833327],[117,197,67,0.5001032313930299],[117,197,68,0.5392531183116493],[117,197,69,0.5774813755653931],[117,197,70,0.6145011164458425],[117,197,71,0.6500723122255269],[117,197,72,0.684014479570855],[117,197,73,0.71621935970231],[117,197,74,0.7466635893021707],[117,197,75,0.775385626191922],[117,197,76,0.8019055385681643],[117,197,77,0.8253350730073348],[117,197,78,0.8449042214986736],[117,197,79,0.8599748738711007],[117,198,64,0.39456087032647974],[117,198,65,0.4342394907891429],[117,198,66,0.4739414302207592],[117,198,67,0.5133164671455306],[117,198,68,0.5520243200457711],[117,198,69,0.5897473963793861],[117,198,70,0.6262035326579565],[117,198,71,0.6611587255859999],[117,198,72,0.6944398542611319],[117,198,73,0.7259473934350444],[117,198,74,0.7556681178355482],[117,198,75,0.7836517740543584],[117,198,76,0.809425859609445],[117,198,77,0.8321054196692016],[117,198,78,0.8509234258675196],[117,198,79,0.8652445612204998],[117,199,64,0.4043680812579017],[117,199,65,0.44381175680407176],[117,199,66,0.4832249303378021],[117,199,67,0.5222588173750162],[117,199,68,0.5605754578571304],[117,199,69,0.5978604966088061],[117,199,70,0.6338359532087862],[117,199,71,0.6682729812743732],[117,199,72,0.7010046171592856],[117,199,73,0.7319385180648091],[117,199,74,0.7610696895644807],[117,199,75,0.7884570163006465],[117,199,76,0.8136350691835094],[117,199,77,0.8357232683354465],[117,199,78,0.8539582722790345],[117,199,79,0.8677078721952597],[117,200,64,0.40952659878370273],[117,200,65,0.4487201971088226],[117,200,66,0.48784722776114386],[117,200,67,0.5265608653743312],[117,200,68,0.5645256359305826],[117,200,69,0.60143021622874],[117,200,70,0.6370002197921006],[117,200,71,0.6710109692164797],[117,200,72,0.7033002549582659],[117,200,73,0.733781080562388],[117,200,74,0.7624543943304227],[117,200,75,0.7893856268952809],[117,200,76,0.8141162968014197],[117,200,77,0.8357720461219478],[117,200,78,0.8535945853786874],[117,200,79,0.8669556609778067],[117,201,64,0.4098447887785679],[117,201,65,0.4487589135751726],[117,201,66,0.4875894628945243],[117,201,67,0.5259921901636443],[117,201,68,0.56363433119106],[117,201,69,0.6002074041813734],[117,201,70,0.6354399915840978],[117,201,71,0.6691105037773095],[117,201,72,0.7010599245858493],[117,201,73,0.7312045386340092],[117,201,74,0.7595486405329175],[117,201,75,0.7861612554446527],[117,201,76,0.8105909019863805],[117,201,77,0.8319719047384122],[117,201,78,0.8495529163947546],[117,201,79,0.86271091165314],[117,202,64,0.40525459052561713],[117,202,65,0.44384801843762595],[117,202,66,0.48236082218706916],[117,202,67,0.5204520323245423],[117,202,68,0.5577918681701234],[117,202,69,0.5940745148052508],[117,202,70,0.629030875410934],[117,202,71,0.6624412989528339],[117,202,72,0.6941482832129579],[117,202,73,0.7240691531678981],[117,202,74,0.75220871471383],[117,202,75,0.778636355482111],[117,202,76,0.8029077794609715],[117,202,77,0.8241689248430508],[117,202,78,0.8416776811911298],[117,202,79,0.8548178547655603],[117,203,64,0.39580244593910413],[117,203,65,0.4340243526929666],[117,203,66,0.4721890594094107],[117,203,67,0.5099596327386107],[117,203,68,0.547009590293543],[117,203,69,0.5830356268158472],[117,203,70,0.617770307119995],[117,203,71,0.6509947258163046],[117,203,72,0.6825511338125456],[117,203,73,0.7123555315940632],[117,203,74,0.7404102292826362],[117,203,75,0.7667815397514233],[117,203,76,0.7910326313171508],[117,203,77,0.8123243277981727],[117,203,78,0.8299263459192343],[117,203,79,0.8432311708464002],[117,204,64,0.3816398471885344],[117,204,65,0.41943183839792303],[117,204,66,0.45721066898737955],[117,204,67,0.4946442442302984],[117,204,68,0.5314097275897155],[117,204,69,0.5672061848372598],[117,204,70,0.6017671841547337],[117,204,71,0.634873352218853],[117,204,72,0.6663648862688966],[117,204,73,0.6961540221571875],[117,204,74,0.7242374583826313],[117,204,75,0.7506748624885019],[117,204,76,0.7750372061689182],[117,204,77,0.7965036948265858],[117,204,78,0.8143586602689378],[117,204,79,0.8280052809126748],[117,205,64,0.3630135027242952],[117,205,65,0.40031146486503494],[117,205,66,0.4376607113933552],[117,205,67,0.4747348161141497],[117,205,68,0.511214960818993],[117,205,69,0.546802463485101],[117,205,70,0.5812312493331466],[117,205,71,0.6142802647444648],[117,205,72,0.6457858340373916],[117,205,73,0.675653959102664],[117,205,74,0.7038725618981019],[117,205,75,0.7304910287014401],[117,205,76,0.7550885052876554],[117,205,77,0.7768661935688312],[117,205,78,0.7951259383184993],[117,205,79,0.8092837239366512],[117,206,64,0.3402551217048197],[117,206,65,0.37699090875674046],[117,206,66,0.4138622905952932],[117,206,67,0.4505493516464181],[117,206,68,0.48673768202394413],[117,206,69,0.5221307540006064],[117,206,70,0.5564622258299055],[117,206,71,0.5895081729193409],[117,206,72,0.6210992463547709],[117,206,73,0.6511327587758077],[117,206,74,0.6795846976024906],[117,206,75,0.7064905304488872],[117,206,76,0.7314379557201961],[117,206,77,0.7536538120412914],[117,206,78,0.7724603869835769],[117,206,79,0.7872886212863965],[117,207,64,0.3137708168251526],[117,207,65,0.3498737880775564],[117,207,66,0.38621568356330277],[117,207,67,0.4224839383809426],[117,207,68,0.4583689515004243],[117,207,69,0.49357627343584043],[117,207,70,0.5278387033620259],[117,207,71,0.5609282956755383],[117,207,72,0.5926682759997768],[117,207,73,0.6229448666341357],[117,207,74,0.6517190214474528],[117,207,75,0.6790087101166652],[117,207,76,0.7044105503895168],[117,207,77,0.7271805999950784],[117,207,78,0.7466644820652175],[117,207,79,0.7623102281372159],[117,208,64,0.2840301255471875],[117,208,65,0.3194285500646186],[117,208,66,0.35518712183403955],[117,208,67,0.39100145142954457],[117,208,68,0.42656715118971344],[117,208,69,0.4615917963902516],[117,208,70,0.4958067755783248],[117,208,71,0.5289790300691225],[117,208,72,0.5609226826044051],[117,208,73,0.5915105551729275],[117,208,74,0.6206855759930002],[117,208,75,0.6484447506928119],[117,208,76,0.6743939551782288],[117,208,77,0.6978219176758618],[117,208,78,0.7181003918969652],[117,208,79,0.7346965718541022],[117,209,64,0.2591251600873642],[117,209,65,0.290948549340649],[117,209,66,0.32200552522742604],[117,209,67,0.356619929626653],[117,209,68,0.39184633449143025],[117,209,69,0.426686009298292],[117,209,70,0.46086842865238264],[117,209,71,0.49415440225256635],[117,209,72,0.5263473715155131],[117,209,73,0.5573045727638282],[117,209,74,0.5869480669785172],[117,209,75,0.615250593040844],[117,209,76,0.6418275829946773],[117,209,77,0.6660036919844627],[117,209,78,0.6871794485909425],[117,209,79,0.7048431773450723],[117,210,64,0.2952521754730551],[117,210,65,0.32522452424061005],[117,210,66,0.3544266798787834],[117,210,67,0.38280671546447187],[117,210,68,0.4103667860633317],[117,210,69,0.43717221809031415],[117,210,70,0.46336112808815644],[117,210,71,0.48915457092376347],[117,210,72,0.5148626569411339],[117,210,73,0.5404621680111967],[117,210,74,0.5652534991841217],[117,210,75,0.5885767177790343],[117,210,76,0.6098881422969944],[117,210,77,0.6321916800382492],[117,210,78,0.654351666882925],[117,210,79,0.6731828793854093],[117,211,64,0.32782636192279535],[117,211,65,0.35600559778019814],[117,211,66,0.3834163185443884],[117,211,67,0.4100181417332824],[117,211,68,0.43582153311965594],[117,211,69,0.4608961715439283],[117,211,70,0.48537980391683144],[117,211,71,0.5094875904119047],[117,211,72,0.5335174573770599],[117,211,73,0.5574352429174532],[117,211,74,0.5805431571512035],[117,211,75,0.6021869912133916],[117,211,76,0.6218309750705031],[117,211,77,0.6390491338509385],[117,211,78,0.6535168861882089],[117,211,79,0.6650028845768181],[117,212,64,0.35646255715046193],[117,212,65,0.382930910304089],[117,212,66,0.4086382656697033],[117,212,67,0.4335550088971559],[117,212,68,0.4576990676241017],[117,212,69,0.4811435586111139],[117,212,70,0.5040248860400768],[117,212,71,0.5265512909757983],[117,212,72,0.549007451488789],[117,212,73,0.5713475372728417],[117,212,74,0.5928754630186858],[117,212,75,0.6129426073123265],[117,212,76,0.6310208901197953],[117,212,77,0.6466937070904385],[117,212,78,0.6596471184515954],[117,212,79,0.669661292494665],[117,213,64,0.38082745604779156],[117,213,65,0.40569039608073876],[117,213,66,0.42980600312835443],[117,213,67,0.45315450153230385],[117,213,68,0.4757602987174824],[117,213,69,0.4976989274387578],[117,213,70,0.5191044006301819],[117,213,71,0.5401769788566189],[117,213,72,0.5611870354116506],[117,213,73,0.5820763609935813],[117,213,74,0.6021504137267886],[117,213,75,0.6207659464567212],[117,213,76,0.6374022549645624],[117,213,77,0.6516517107602953],[117,213,78,0.6632105613544573],[117,213,79,0.6718699980085718],[117,214,64,0.40064390810240186],[117,214,65,0.4240287097364197],[117,214,66,0.4466862161910085],[117,214,67,0.4686054204765572],[117,214,68,0.48981610777486284],[117,214,69,0.5103951113388276],[117,214,70,0.5304729431582019],[117,214,71,0.5502407993913287],[117,214,72,0.5699537142787996],[117,214,73,0.5895404126388087],[117,214,74,0.6083076861543489],[117,214,75,0.625617374492073],[117,214,76,0.6409557462948912],[117,214,77,0.6539236547807288],[117,214,78,0.6642269739180772],[117,214,79,0.6716673151783339],[117,215,64,0.4156946810410661],[117,215,65,0.4377486071982293],[117,215,66,0.45910178186948913],[117,215,67,0.4797507713939575],[117,215,68,0.49972953258472924],[117,215,69,0.5191150063326162],[117,215,70,0.538033049113751],[117,215,71,0.5566647024010198],[117,215,72,0.5752486649970977],[117,215,73,0.59369994352344],[117,215,74,0.611326408526401],[117,215,75,0.6274946296237316],[117,215,76,0.6416973628728523],[117,215,77,0.6535433569590802],[117,215,78,0.662747453168441],[117,215,79,0.6691209791450647],[117,216,64,0.42582569069843534],[117,216,65,0.4467137811462622],[117,216,66,0.4669341996363105],[117,216,67,0.4864897832474633],[117,216,68,0.5054173687229835],[117,216,69,0.5237927530207506],[117,216,70,0.5417359561175904],[117,216,71,0.5594167860676511],[117,216,72,0.5770566647285291],[117,216,73,0.594556275042962],[117,216,74,0.611224273119375],[117,216,75,0.6264315395487682],[117,216,76,0.6396767587056885],[117,216,77,0.6505759063903741],[117,216,78,0.6588520444692196],[117,216,79,0.6643254225135661],[117,217,64,0.43094869711078176],[117,217,65,0.4508511509745474],[117,217,66,0.47012546451926185],[117,217,67,0.48877935667944145],[117,217,68,0.5068511881214652],[117,217,69,0.5244143227786973],[117,217,70,0.5415817574267696],[117,217,71,0.5585110192989914],[117,217,72,0.5754053850769822],[117,217,73,0.5921506692100271],[117,217,74,0.6080559902638255],[117,217,75,0.6224960688244132],[117,217,76,0.6349748964905854],[117,217,77,0.6451149384719339],[117,217,78,0.6526466562993184],[117,217,79,0.657398350647756],[117,218,64,0.4310434668352392],[117,218,65,0.4501526072611914],[117,218,66,0.4686793825714501],[117,218,67,0.48663494230031035],[117,218,68,0.5040577748313352],[117,218,69,0.5210175082780644],[117,218,70,0.5376189468325946],[117,218,71,0.5540063425819958],[117,218,72,0.5703640519805984],[117,218,73,0.5865625524030101],[117,218,74,0.6019110836448042],[117,218,75,0.6157876964731538],[117,218,76,0.6277010213310728],[117,218,77,0.6372792215320607],[117,218,78,0.644259279474972],[117,218,79,0.6484766158790904],[117,219,64,0.4261594014943231],[117,219,65,0.4446762107475209],[117,219,66,0.4626623287165996],[117,219,67,0.4801308488851476],[117,219,68,0.497118977981136],[117,219,69,0.5136913183335314],[117,219,70,0.5299433549512558],[117,219,71,0.5460051473244644],[117,219,72,0.5620414713095491],[117,219,73,0.5779070923264042],[117,219,74,0.5929110268997777],[117,219,75,0.6064341238243944],[117,219,76,0.6179889547249797],[117,219,77,0.6272085550727109],[117,219,78,0.6338355108163347],[117,219,79,0.637711390627947],[117,220,64,0.4164166325456523],[117,220,65,0.4345468458261665],[117,220,66,0.4522034469695799],[117,220,67,0.46939998147825374],[117,220,68,0.48617098192955266],[117,220,69,0.5025747770754415],[117,220,70,0.5186964769071748],[117,220,71,0.5346511336850583],[117,220,72,0.5505834201693253],[117,220,73,0.566332128183153],[117,220,74,0.5812057215141988],[117,220,75,0.5945873125928084],[117,220,76,0.6059927088240767],[117,220,77,0.6150589796263227],[117,220,78,0.6215333812587298],[117,220,79,0.6252626394381419],[117,221,64,0.40200658227694996],[117,221,65,0.41995632853814635],[117,221,66,0.4374942930321867],[117,221,67,0.4546330094056735],[117,221,68,0.4714029936128433],[117,221,69,0.48785512744800996],[117,221,70,0.5040631914090045],[117,221,71,0.5201265468915899],[117,221,72,0.5361694039094463],[117,221,73,0.552014454058813],[117,221,74,0.5669693160145983],[117,221,75,0.5804188531932323],[117,221,76,0.5918814209652485],[117,221,77,0.6009972982266202],[117,221,78,0.6075174884083606],[117,221,79,0.611292889924375],[117,222,64,0.3831919910265463],[117,222,65,0.4011629690791503],[117,222,66,0.4187879192643731],[117,222,67,0.43607696419585845],[117,222,68,0.45305534708711154],[117,222,69,0.4697654390333045],[117,222,70,0.4862688712184179],[117,222,71,0.5026487920477021],[117,222,72,0.5190087788376845],[117,222,73,0.5351554555176223],[117,222,74,0.5503953664592766],[117,222,75,0.5641146632921639],[117,222,76,0.5758336084732406],[117,222,77,0.5851949094934179],[117,222,78,0.591952433542512],[117,222,79,0.5959603026326132],[117,223,64,0.3603064106288116],[117,223,65,0.37849058881452663],[117,223,66,0.39639740203049056],[117,223,67,0.41403326740809177],[117,223,68,0.4314170252651106],[117,223,69,0.4485816202007509],[117,223,70,0.46557588501150526],[117,223,71,0.4824664274278298],[117,223,72,0.49933624063975557],[117,223,73,0.5159760994104899],[117,223,74,0.5316913382266507],[117,223,75,0.5458690165959798],[117,223,76,0.5580307437351499],[117,223,77,0.5678209523316552],[117,223,78,0.5749955630545084],[117,223,79,0.5794110398137268],[117,224,64,0.33375316408536615],[117,224,65,0.35232699180371463],[117,224,66,0.37069381142118835],[117,224,67,0.3888551883692344],[117,224,68,0.40682259884803446],[117,224,69,0.4246188345825256],[117,224,70,0.4422794906330475],[117,224,71,0.45985453626060385],[117,224,72,0.4774066785045522],[117,224,73,0.49471127689488914],[117,224,74,0.5110724491011667],[117,224,75,0.5258779018756923],[117,224,76,0.5386501495464],[117,224,77,0.5490347622443241],[117,224,78,0.5567890143430178],[117,224,79,0.5617709331099023],[117,225,64,0.30400377146094093],[117,225,65,0.32312189083310067],[117,225,66,0.34210362335005073],[117,225,67,0.3609447318179628],[117,225,68,0.3796485824515742],[117,225,69,0.3982273218742089],[117,225,70,0.4167031197431404],[117,225,71,0.4351094770002837],[117,225,72,0.4534893949545966],[117,225,73,0.47160349966643095],[117,225,74,0.4887548536566369],[117,225,75,0.5043317122282056],[117,225,76,0.5178572147282463],[117,225,77,0.5289776392594103],[117,225,78,0.5374510661459103],[117,225,79,0.5431364501541126],[117,226,64,0.27159584200531023],[117,226,65,0.2913842879586289],[117,226,66,0.31110557402621236],[117,226,67,0.33074895545765803],[117,226,68,0.35030920792730125],[117,226,69,0.3697876229616769],[117,226,70,0.38919305385704867],[117,226,71,0.40854301208699756],[117,226,72,0.427861691382405],[117,226,73,0.4468959494027182],[117,226,74,0.46494816893751695],[117,226,75,0.48140726457449123],[117,226,76,0.49579693001714914],[117,226,77,0.5077639274711185],[117,226,78,0.5170667933188565],[117,226,79,0.5235649600827542],[117,227,64,0.2370425118072523],[117,227,65,0.25759103508733006],[117,227,66,0.2781386650821764],[117,227,67,0.2986677327827912],[117,227,68,0.31916424520714787],[117,227,69,0.3396187419481812],[117,227,70,0.36002718933996214],[117,227,71,0.38039191224205093],[117,227,72,0.4007195186745181],[117,227,73,0.42074435029875734],[117,227,74,0.43976871266032347],[117,227,75,0.4571825133327696],[117,227,76,0.4725101511534798],[117,227,77,0.4853988642447167],[117,227,78,0.49560750082220584],[117,227,79,0.5029957127912362],[117,228,64,0.20045958524734578],[117,228,65,0.2218152832789255],[117,228,66,0.24323341397943327],[117,228,67,0.26468922622519264],[117,228,68,0.2861600294683197],[117,228,69,0.30762595027113715],[117,228,70,0.32907071606214505],[117,228,71,0.3504824661135456],[117,228,72,0.37185161883781537],[117,228,73,0.3929013770773724],[117,228,74,0.4129346376983931],[117,228,75,0.4313426893210898],[117,228,76,0.44765083230291236],[117,228,77,0.4615068073738665],[117,228,78,0.4726696527943368],[117,228,79,0.48099899003539737],[117,229,64,0.1618845467420748],[117,229,65,0.184053325174266],[117,229,66,0.20634547064744146],[117,229,67,0.2287292190510827],[117,229,68,0.2511734609870588],[117,229,69,0.27364843303571046],[117,229,70,0.29612642855250665],[117,229,71,0.3185825279952693],[117,229,72,0.34099244741026064],[117,229,73,0.36306967032630727],[117,229,74,0.3841183528803268],[117,229,75,0.4035315433650146],[117,229,76,0.4208356233805064],[117,229,77,0.43567883764557075],[117,229,78,0.44782025764883737],[117,229,79,0.45711917914003924],[117,230,64,0.12142090840327686],[117,230,65,0.14437056661042577],[117,230,66,0.16750266344338818],[117,230,67,0.19077869966591385],[117,230,68,0.21415961230147967],[117,230,69,0.237606430782303],[117,230,70,0.26108094778952584],[117,230,71,0.28454640478456933],[117,230,72,0.3079653560349922],[117,230,73,0.3310429971114175],[117,230,74,0.35308540360255203],[117,230,75,0.3734877526563434],[117,230,76,0.39177767478118763],[117,230,77,0.4076039035967609],[117,230,78,0.4207253646486278],[117,230,79,0.43100070328660994],[117,231,64,0.0794265571296891],[117,231,65,0.10288990030047465],[117,231,66,0.12679315060692753],[117,231,67,0.15089180236980004],[117,231,68,0.17513947042217431],[117,231,69,0.19948879550015494],[117,231,70,0.22389210306768695],[117,231,71,0.24830207490568998],[117,231,72,0.27266965821214495],[117,231,73,0.2966931730057561],[117,231,74,0.31968126195240354],[117,231,75,0.3410315931327753],[117,231,76,0.3602732081726482],[117,231,77,0.3770553085221853],[117,231,78,0.39113648623275915],[117,231,79,0.40237439923128004],[117,232,64,0.08028178288498476],[117,232,65,0.06953609407322292],[117,232,66,0.0843533066132351],[117,232,67,0.10917347627009602],[117,232,68,0.13418740064860607],[117,232,69,0.1593402619143704],[117,232,70,0.18457602304983908],[117,232,71,0.2098381105986488],[117,232,72,0.23506739288211748],[117,232,73,0.2599566767936218],[117,232,74,0.28381780493906],[117,232,75,0.30605129618260507],[117,232,76,0.32618776877838224],[117,232,77,0.34387687721915494],[117,232,78,0.35887669951347406],[117,232,79,0.3710435748912739],[117,233,64,0.07980836775256332],[117,233,65,0.06976544897589496],[117,233,66,0.055296270469122],[117,233,67,0.0657669765172903],[117,233,68,0.0914184259021225],[117,233,69,0.11724852740038527],[117,233,70,0.1431940285243133],[117,233,71,0.16919039500595626],[117,233,72,0.19516987596540675],[117,233,73,0.22082104648079548],[117,233,74,0.2454595678198185],[117,233,75,0.268489174907614],[117,233,76,0.28944224256027196],[117,233,77,0.30796888402780215],[117,233,78,0.32382650666752477],[117,233,79,0.33686982474786853],[117,234,64,0.07810291850600176],[117,234,65,0.06873882852876335],[117,234,66,0.054894334028421865],[117,234,67,0.03656265927690401],[117,234,68,0.0469753215771002],[117,234,69,0.07333114052730548],[117,234,70,0.0998393268681412],[117,234,71,0.12642863405843846],[117,234,72,0.15302403986017374],[117,234,73,0.17931105661204558],[117,234,74,0.20460977252270757],[117,234,75,0.22832751994506875],[117,234,76,0.24999863830154737],[117,234,77,0.26927374216760525],[117,234,78,0.28590945422241754],[117,234,79,0.29975860306666247],[117,235,64,0.07526036064221178],[117,235,65,0.06655629729686975],[117,235,66,0.05333528601711132],[117,235,67,0.035579879908069545],[117,235,68,0.013379030932559238],[117,235,69,0.027722198229176903],[117,235,70,0.054623508215511374],[117,235,71,0.08164266315937778],[117,235,72,0.10869856089684066],[117,235,73,0.13547467689527887],[117,235,74,0.16129613116488986],[117,235,75,0.185574264848358],[117,235,76,0.207845634589729],[117,235,77,0.22776145436985462],[117,235,78,0.24507751123733257],[117,235,79,0.25964455493492017],[117,236,64,0.07137003386677669],[117,236,65,0.06331303306299686],[117,236,66,0.05072034806559152],[117,236,67,0.03356396547126016],[117,236,68,0.011922696179964443],[117,236,69,-0.014017992754142103],[117,236,70,0.0076532009643411475],[117,236,71,0.03491890817543272],[117,236,72,0.06226013945823344],[117,236,73,0.08935918575708304],[117,236,74,0.11554681950345642],[117,236,75,0.14023885766861696],[117,236,76,0.1629743978363285],[117,236,77,0.18340543407387622],[117,236,78,0.20128695727179194],[117,236,79,0.2392678071318491],[117,237,64,0.06651112317207218],[117,237,65,0.05909497917898604],[117,237,66,0.04714215819781675],[117,237,67,0.03061416947928987],[117,237,68,0.00957932149640793],[117,237,69,-0.015787186930090208],[117,237,70,-0.04124429798098544],[117,237,71,-0.013933675230902748],[117,237,72,0.01349984233473854],[117,237,73,0.04073802848699214],[117,237,74,0.06711820515321629],[117,237,75,0.09206144555116566],[117,237,76,0.11511000706897152],[117,237,77,0.14985534651895316],[117,237,78,0.19371168460263055],[117,237,79,0.2383840475077989],[117,238,64,0.07661971186773088],[117,238,65,0.053973838010874214],[117,238,66,0.04267997685356796],[117,238,67,0.026816941360526814],[117,238,68,0.006442170062065544],[117,238,69,-0.018280219424892483],[117,238,70,-0.04707826533869518],[117,238,71,-0.06530443593323049],[117,238,72,-0.03798582438793228],[117,238,73,-0.010806219189222921],[117,238,74,0.0230082650050564],[117,238,75,0.06413979547796697],[117,238,76,0.10602260181482626],[117,238,77,0.14879711458533684],[117,238,78,0.1924978091548988],[117,238,79,0.23705166789442642],[117,239,64,0.1262583047185471],[117,239,65,0.10273056949699441],[117,239,66,0.07847658226385353],[117,239,67,0.05355761974336949],[117,239,68,0.028043643781788474],[117,239,69,0.0020126433847492686],[117,239,70,-0.024450106484630155],[117,239,71,-0.05125286934696976],[117,239,72,-0.054351211586938],[117,239,73,-0.016718941260228173],[117,239,74,0.022836642635868307],[117,239,75,0.06350619533395903],[117,239,76,0.10499672374102124],[117,239,77,0.14743564742668575],[117,239,78,0.19084494590179057],[117,239,79,0.23513988285775528],[117,240,64,0.17683802264077653],[117,240,65,0.1544361451663256],[117,240,66,0.13122719700821628],[117,240,67,0.10726964802891384],[117,240,68,0.08263208925035335],[117,240,69,0.05739266765031202],[117,240,70,0.03163842214545315],[117,240,71,0.005464520761043923],[117,240,72,-0.021024335251974127],[117,240,73,-0.016221857592321504],[117,240,74,0.022668076345315702],[117,240,75,0.06274263963682383],[117,240,76,0.10370701464838047],[117,240,77,0.14567438748248898],[117,240,78,0.18865334609863577],[117,240,79,0.23254689891593555],[117,241,64,0.2282178757615178],[117,241,65,0.20723089307731507],[117,241,66,0.1853480657884905],[117,241,67,0.16262413749849722],[117,241,68,0.1391256671635936],[117,241,69,0.11493059353628629],[117,241,70,0.09012768450888144],[117,241,71,0.06481587135714181],[117,241,72,0.03910564251760787],[117,241,73,0.013313646753312772],[117,241,74,0.022448918785136857],[117,241,75,0.0617917826086854],[117,241,76,0.10209238146480157],[117,241,77,0.14344895526899004],[117,241,78,0.18585624236870585],[117,241,79,0.22920481545900592],[117,242,64,0.280157736560252],[117,242,65,0.26087227275402924],[117,242,66,0.24059405806366846],[117,242,67,0.21937324617572979],[117,242,68,0.19727377116016215],[117,242,69,0.17437308005947838],[117,242,70,0.150761733587347],[117,242,71,0.12654287493659944],[117,242,72,0.10183363634189625],[117,242,73,0.0769498992679275],[117,242,74,0.05249534169675478],[117,242,75,0.060632924709576694],[117,242,76,0.1001289130478141],[117,242,77,0.14073275212133277],[117,242,78,0.1824253363748471],[117,242,79,0.22508499571032572],[117,243,64,0.33233715002863284],[117,243,65,0.3150320416164387],[117,243,66,0.29662930534323256],[117,243,67,0.2771736928383609],[117,243,68,0.25672597495691774],[117,243,69,0.23536288164151095],[117,243,70,0.2131768928013496],[117,243,71,0.19027588020865188],[117,243,72,0.1667845511724254],[117,243,73,0.14301805221157798],[117,243,74,0.11956200862988405],[117,243,75,0.09692700770823434],[117,243,76,0.09783612591386281],[117,243,77,0.1375430725709948],[117,243,78,0.178376777133037],[117,243,79,0.2202039077297797],[117,244,64,0.38437300539923236],[117,244,65,0.36931440972540974],[117,244,66,0.3530457931386878],[117,244,67,0.3356057420965932],[117,244,68,0.3170513693367936],[117,244,69,0.29745849987243006],[117,244,70,0.2769216908075296],[117,244,71,0.25555408497249527],[117,244,72,0.23348891688583273],[117,244,73,0.2110406947920154],[117,244,74,0.18877503141111424],[117,244,75,0.16718388797746023],[117,244,76,0.14665938905366863],[117,244,77,0.1340131296966508],[117,244,78,0.17384250094482112],[117,244,79,0.2146935252485821],[117,245,64,0.43583606944544784],[117,245,65,0.42327305334607457],[117,245,66,0.4093808111934699],[117,245,67,0.39419104922282705],[117,245,68,0.37775676212695986],[117,245,69,0.36015270297254376],[117,245,70,0.3414756698230798],[117,245,71,0.3218446090685688],[117,245,72,0.3014022093565316],[117,245,73,0.2804624909526272],[117,245,74,0.25956929342862256],[117,245,75,0.23919411533132606],[117,245,76,0.21971253333501467],[117,245,77,0.2014132635103716],[117,245,78,0.18450654898567564],[117,245,79,0.20897997283163827],[117,246,64,0.48626638135159495],[117,246,65,0.47642698732857813],[117,246,66,0.4651332619902057],[117,246,67,0.4524093647317898],[117,246,68,0.43830374116621124],[117,246,69,0.42288991295140754],[117,246,70,0.4062670674761356],[117,246,71,0.38856044740400275],[117,246,72,0.36992305841830103],[117,246,73,0.3506686273530072],[117,246,74,0.3313177136398423],[117,246,75,0.3123197518432881],[117,246,76,0.2940322898011314],[117,246,77,0.2767299579111628],[117,246,78,0.26061273311435146],[117,246,79,0.24581349757451582],[117,247,64,0.5351875091523011],[117,247,65,0.5282752963052455],[117,247,66,0.5197788275342963],[117,247,67,0.5097140987099548],[117,247,68,0.49812460026042643],[117,247,69,0.48508246046273673],[117,247,70,0.47068937218086754],[117,247,71,0.45507730305090555],[117,247,72,0.438410342713415],[117,247,73,0.42100215520107637],[117,247,74,0.4033488105169167],[117,247,75,0.3858763590215164],[117,247,76,0.36892307191462026],[117,247,77,0.35274833564510955],[117,247,78,0.33754080755501664],[117,247,79,0.32342583275759024],[117,248,64,0.5821196677432572],[117,248,65,0.5783107247063737],[117,248,66,0.5727839944161707],[117,248,67,0.5655467448967324],[117,248,68,0.5566371281287038],[117,248,69,0.5461257073579829],[117,248,70,0.5341167520401248],[117,248,71,0.5207493004204425],[117,248,72,0.5061991714323606],[117,248,73,0.49078022593989706],[117,248,74,0.4749631674857588],[117,248,75,0.45914965930344454],[117,248,76,0.4436577141973774],[117,248,77,0.42873053261743815],[117,248,78,0.4145445669275323],[117,248,79,0.4012168118682052],[117,249,64,0.6265916984613881],[117,249,65,0.6260321255925382],[117,249,66,0.6236189371499344],[117,249,67,0.6193501645149994],[117,249,68,0.6132582603375922],[117,249,69,0.6054120369358377],[117,249,70,0.595918357272762],[117,249,71,0.5849235785097139],[117,249,72,0.5726157529410398],[117,249,73,0.5593092207859658],[117,249,74,0.5454487998554055],[117,249,75,0.5314111078731689],[117,249,76,0.5174932086864054],[117,249,77,0.5039214138062125],[117,249,78,0.4908592737347925],[117,249,79,0.47841475907916814],[117,250,64,0.6681519102355868],[117,250,65,0.670955768304724],[117,250,66,0.6717692597898852],[117,250,67,0.6705807298525934],[117,250,68,0.6674165942251931],[117,250,69,0.6623437118895911],[117,250,70,0.6554714961677077],[117,250,71,0.6469537642236153],[117,250,72,0.6369911502977511],[117,250,73,0.6258987741213882],[117,250,74,0.6140954232401664],[117,250,75,0.6019323748042912],[117,250,76,0.5896853621814756],[117,250,77,0.5775633608216642],[117,250,78,0.5657165263611488],[117,250,79,0.5542432849660957],[117,251,64,0.7063777823073563],[117,251,65,0.7126255049314602],[117,251,66,0.7167465958239099],[117,251,67,0.718719327593632],[117,251,68,0.7185637668138422],[117,251,69,0.716344599950904],[117,251,70,0.7121736845631994],[117,251,71,0.706212325769978],[117,251,72,0.6986739236581323],[117,251,73,0.6898746907380099],[117,251,74,0.6802076234725413],[117,251,75,0.6699987375260834],[117,251,76,0.6595023742824495],[117,251,77,0.6489099927207004],[117,251,78,0.6383580750858059],[117,251,79,0.6279351463541912],[117,252,64,0.7408845285222465],[117,252,65,0.7506217955940302],[117,252,66,0.7580980663450201],[117,252,67,0.7632812219010857],[117,252,68,0.7661846957129657],[117,252,69,0.7668707672317533],[117,252,70,0.7654535688530922],[117,252,71,0.7621018061300419],[117,252,72,0.757041659570246],[117,252,73,0.7505907569358057],[117,252,74,0.7431169280093208],[117,252,75,0.7349213836154957],[117,252,76,0.726237336218862],[117,252,77,0.7172388200792875],[117,252,78,0.7080485861139683],[117,252,79,0.6987450714659323],[117,253,64,0.7713325231906154],[117,253,65,0.7845695925480735],[117,253,66,0.7954145964991294],[117,253,67,0.803824777248511],[117,253,68,0.8098066830098285],[117,253,69,0.8134199392620807],[117,253,70,0.8147807225176067],[117,253,71,0.8140649366014541],[117,253,72,0.8115113871568577],[117,253,73,0.8074394454724354],[117,253,74,0.8021927788276519],[117,253,75,0.7960486239116659],[117,253,76,0.789219650468325],[117,253,77,0.78186283231916],[117,253,78,0.7740873536221021],[117,253,79,0.765961550365952],[117,254,64,0.7974335885194517],[117,254,65,0.8141450831035432],[117,254,66,0.8283380902112627],[117,254,67,0.8399590410033417],[117,254,68,0.849007382150775],[117,254,69,0.8555398297259391],[117,254,70,0.8596743161814832],[117,254,71,0.8615936304169479],[117,254,72,0.8615488811882064],[117,254,73,0.8598615143674186],[117,254,74,0.8568524068146531],[117,254,75,0.8527760159566463],[117,254,76,0.8478253711675785],[117,254,77,0.8421410182927996],[117,254,78,0.8358189598213388],[117,254,79,0.8289175907072217],[117,255,64,0.8189561436138573],[117,255,65,0.8390812913614067],[117,255,66,0.8565674631883713],[117,255,67,0.8713501857597191],[117,255,68,0.883421627810749],[117,255,69,0.8928353368937516],[117,255,70,0.899710661196992],[117,255,71,0.9042368564359744],[117,255,72,0.9066768520424082],[117,255,73,0.9073544995579285],[117,255,74,0.9065696076474531],[117,255,75,0.9045553977591034],[117,255,76,0.9014864653128378],[117,255,77,0.8974878201232197],[117,255,78,0.8926428830354827],[117,255,79,0.8870004387749233],[117,256,64,0.8357292150489694],[117,256,65,0.8591725387680467],[117,256,66,0.879863534199897],[117,256,67,0.8977268114221696],[117,256,68,0.9127471287525734],[117,256,69,0.9249746077523004],[117,256,70,0.9345296267535648],[117,256,71,0.9416073929112037],[117,256,72,0.9464820225555244],[117,256,73,0.9494801014083505],[117,256,74,0.9508824191659138],[117,256,75,0.9509028318833439],[117,256,76,0.949698994751882],[117,256,77,0.9473815203010983],[117,256,78,0.9440220537962323],[117,256,79,0.9396602658306816],[117,257,64,0.8476453090119441],[117,257,65,0.8742777634868268],[117,257,66,0.8980527746353819],[117,257,67,0.918884107039277],[117,257,68,0.936749023674979],[117,257,69,0.9516939698313173],[117,257,70,0.9638399305127816],[117,257,71,0.9733874613284945],[117,257,72,0.9806210917597848],[117,257,73,0.9858704650719972],[117,257,74,0.9893997002363192],[117,257,75,0.9914054598618721],[117,257,76,0.9920302189660083],[117,257,77,0.991371562037301],[117,257,78,0.9894903589535878],[117,257,79,0.9864178197550778],[117,258,64,0.8546621450143803],[117,258,65,0.8843226985873686],[117,258,66,0.9110299163398431],[117,258,67,0.9346868723882262],[117,258,68,0.9552633000504226],[117,258,69,0.9728017307278437],[117,258,70,0.987423302770026],[117,258,71,0.9993332403217872],[117,258,72,1.0088255855115387],[117,258,73,1.0162333547066615],[117,258,74,1.0218066111078266],[117,258,75,1.0257272669333606],[117,258,76,1.0281246186438167],[117,258,77,1.029084802872839],[117,258,78,1.028659093803569],[117,258,79,1.0268710419906228],[117,259,64,0.8568032511746182],[117,259,65,0.8893009090517839],[117,259,66,0.9187594177259684],[117,259,67,0.945071399309097],[117,259,68,0.9681990759513958],[117,259,69,0.988180845326909],[117,259,70,1.0051375241411977],[117,259,71,1.0192782596611494],[117,259,72,1.030905594007031],[117,259,73,1.0403562215419728],[117,259,74,1.0478689952595266],[117,259,75,1.05361375710377],[117,259,76,1.0577088400444687],[117,259,77,1.060230701543816],[117,259,78,1.0612223622307098],[117,259,79,1.0607006497825922],[117,260,64,0.854157421070576],[117,260,65,0.8892736875987195],[117,260,66,0.9212757881641763],[117,260,67,0.9500462127901352],[117,260,68,0.9755397448666261],[117,260,69,0.9977904507200925],[117,260,70,1.0169183367762067],[117,260,71,1.033135674315862],[117,260,72,1.0467523961880225],[117,260,73,1.058109165800718],[117,260,74,1.0674366627403797],[117,260,75,1.0748955385330101],[117,260,76,1.0805955601529058],[117,260,77,1.084605438103945],[117,260,78,1.0869614248679935],[117,260,79,1.087674683720453],[117,261,64,0.8468770321625054],[117,261,65,0.8843688093244279],[117,261,66,0.9186827706495989],[117,261,67,0.9496916718028984],[117,261,68,0.9773429835059247],[117,261,69,1.0016662688205786],[117,261,70,1.0227802290977261],[117,261,71,1.0408994185908818],[117,261,72,1.0563399710354833],[117,261,73,1.069446792472232],[117,261,74,1.080445575000058],[117,261,75,1.0894908192450643],[117,261,76,1.0966862726248727],[117,261,77,1.1020949673023983],[117,261,78,1.1057479952719296],[117,261,79,1.1076520205775304],[117,262,64,0.8351752257861934],[117,262,65,0.8747781451615209],[117,262,66,0.9111513827467543],[117,262,67,0.9441584298881621],[117,262,68,0.9737396225946673],[117,262,69,0.999919876675798],[117,262,70,1.022816094066391],[117,262,71,1.042644240337972],[117,262,72,1.0597253957527226],[117,262,73,1.0744089609393095],[117,262,74,1.0869189312121879],[117,262,75,1.0974068131631407],[117,262,76,1.1059729945233583],[117,262,77,1.1126770052186583],[117,262,78,1.1175464841144755],[117,262,79,1.1205848514506513],[117,263,64,0.8193219487162109],[117,263,65,0.860754134154901],[117,263,66,0.898916815811325],[117,263,67,0.9336647554919173],[117,263,68,0.9649313806571616],[117,263,69,0.9927368444768351],[117,263,70,1.017195760971553],[117,263,71,1.0385246152405336],[117,263,72,1.0570481308369415],[117,263,73,1.07312042845756],[117,263,74,1.0869671560888894],[117,263,75,1.0987400564687062],[117,263,76,1.1085388938452805],[117,263,77,1.1164219491531582],[117,263,78,1.1224151913905733],[117,263,79,1.1265201251985115],[117,264,64,0.7996388562993586],[117,264,65,0.8426051145551242],[117,264,66,0.8822741924893703],[117,264,67,0.9184927120518656],[117,264,68,0.9511874607893895],[117,264,69,0.9803737412651519],[117,264,70,1.0061634007482136],[117,264,71,1.0287725411728317],[117,264,72,1.0485281920399432],[117,264,73,1.065789387488008],[117,264,74,1.0807867891874432],[117,264,75,1.093675634285274],[117,264,76,1.1045578378393155],[117,264,77,1.1134927307746558],[117,264,78,1.1205064466422634],[117,264,79,1.1255999571797564],[117,265,64,0.7764930771584868],[117,265,65,0.8206895137292609],[117,265,66,0.8615731824939569],[117,265,67,0.89898319783431],[117,265,68,0.9328400104209291],[117,265,69,0.9631540083363654],[117,265,70,0.9900338048197873],[117,265,71,1.0136942126331925],[117,265,72,1.0344632092175314],[117,265,73,1.0527048968823887],[117,265,74,1.0686582757084921],[117,265,75,1.0824853176862994],[117,265,76,1.0942928621141865],[117,265,77,1.1041436025235956],[117,265,78,1.1120656971986074],[117,265,79,1.1180610032899692],[117,266,64,0.7502898394663755],[117,266,65,0.7954088968890475],[117,266,66,0.8372114766590765],[117,266,67,0.8755298455213923],[117,266,68,0.9102784440660936],[117,266,69,0.9414627003411833],[117,266,70,0.9691875374668812],[117,266,71,0.9936655752514241],[117,266,72,1.0152243720678928],[117,266,73,1.0342332069215106],[117,266,74,1.0509426587861959],[117,266,75,1.0655246110276508],[117,266,76,1.0780935605379167],[117,266,77,1.0887178572720284],[117,266,78,1.0974295444320017],[117,266,79,1.1042327992981853],[117,267,64,0.7214639587897121],[117,267,65,0.7671998746362878],[117,267,66,0.8096271192707608],[117,267,67,0.8485717815485352],[117,267,68,0.8839426290640874],[117,267,69,0.9157400940832549],[117,267,70,0.944064961721797],[117,267,71,0.9691267603701322],[117,267,72,0.9912512627586094],[117,267,73,1.0108129782062871],[117,267,74,1.0280771732699132],[117,267,75,1.043228709604213],[117,267,76,1.0563923959275892],[117,267,77,1.0676444812395869],[117,267,78,1.0770227280303977],[117,267,79,1.0845350654824302],[117,268,64,0.6904701875036373],[117,268,65,0.7365248693260072],[117,268,66,0.7792896986759152],[117,268,67,0.818585245192623],[117,268,68,0.8543149343087374],[117,268,69,0.8864741650145025],[117,268,70,0.9151591387893336],[117,268,71,0.9405753997005091],[117,268,72,0.9630455754428802],[117,268,73,0.9829493944020216],[117,268,74,1.000569740997998],[117,268,75,1.0161073676311878],[117,268,76,1.0296999315301634],[117,268,77,1.0414337401660803],[117,268,78,1.051354058285945],[117,268,79,1.0594739765647954],[117,269,64,0.6577724257761768],[117,269,65,0.7038617402466825],[117,269,66,0.7466903961681892],[117,269,67,0.7860740674102433],[117,269,68,0.8219111419671171],[117,269,69,0.8541919314272615],[117,269,70,0.8830076009932236],[117,269,71,0.9085588200519347],[117,269,72,0.9311637226643024],[117,269,73,0.9512071688353048],[117,269,74,0.968992367563071],[117,269,75,0.984738676549488],[117,269,76,0.9985989832937677],[117,269,77,1.0106716987401259],[117,269,78,1.0210112963995244],[117,269,79,1.0296373969455195],[117,270,64,0.6238317941228204],[117,270,65,0.6696922676177964],[117,270,66,0.7123308931511448],[117,270,67,0.7515590094262669],[117,270,68,0.7872702221873493],[117,270,69,0.819449666343518],[117,270,70,0.8481829982485],[117,270,71,0.8736651181357095],[117,270,72,0.8962083286505327],[117,270,73,0.9162024449438586],[117,270,74,0.9339734405691216],[117,270,75,0.9497617536555693],[117,270,76,0.9637376929298149],[117,270,77,0.9760136732841856],[117,270,78,0.9866549828015214],[117,270,79,0.9956890812364557],[117,271,64,0.589093567531741],[117,271,65,0.6344894954052],[117,271,66,0.6767111365791748],[117,271,67,0.715565961073163],[117,271,68,0.7509429707959571],[117,271,69,0.7828219771015794],[117,271,70,0.8112826180600886],[117,271,71,0.8365131154431557],[117,271,72,0.8588186094960324],[117,271,73,0.8785935905794812],[117,271,74,0.8961889293805367],[117,271,75,0.9118683410557669],[117,271,76,0.9258215217659634],[117,271,77,0.9381766176959779],[117,271,78,0.9490112134887823],[117,271,79,0.9583618400937952],[117,272,64,0.5539729711587932],[117,272,65,0.5987039329534631],[117,272,66,0.6403159626753998],[117,272,67,0.6786129988803615],[117,272,68,0.7134795099841182],[117,272,69,0.7448897526395946],[117,272,70,0.7729167790471121],[117,272,71,0.7977411931976469],[117,272,72,0.8196596402335212],[117,272,73,0.8390708861637858],[117,272,74,0.8563524863628384],[117,272,75,0.8717933149449751],[117,272,76,0.8856041653898343],[117,272,77,0.8979304426462424],[117,272,78,0.9088633643777907],[117,272,79,0.9184496713501816],[117,273,64,0.5188398375927261],[117,273,65,0.562748615435585],[117,273,66,0.6036005789268588],[117,273,67,0.6411963039138895],[117,273,68,0.6754156519830044],[117,273,69,0.7062269784760296],[117,273,70,0.7336960979929344],[117,273,71,0.7579950073805263],[117,273,72,0.7794105087940206],[117,273,73,0.7983451066965503],[117,273,74,0.8152044496148501],[117,273,75,0.8303041052093302],[117,273,76,0.8438773890830711],[117,273,77,0.8560882680323854],[117,273,78,0.8670427636735272],[117,273,79,0.8767988564455887],[117,274,64,0.48404796691108437],[117,274,65,0.5270232642346314],[117,274,66,0.5670096304194225],[117,274,67,0.6038042655093587],[117,274,68,0.6372821953133231],[117,274,69,0.6674054017820945],[117,274,70,0.6942317184542145],[117,274,71,0.7179234909707168],[117,274,72,0.7387563141627154],[117,274,73,0.7571357505194978],[117,274,74,0.7734965521313962],[117,274,75,0.7881821463454948],[117,274,76,0.8014494892171653],[117,274,77,0.8134821668190426],[117,274,78,0.8244019893927425],[117,274,79,0.8342790783433662],[117,275,64,0.45024197669552507],[117,275,65,0.49217993726531617],[117,275,66,0.5312022999858191],[117,275,67,0.5671029001542515],[117,275,68,0.5997517366706486],[117,275,69,0.6291039991331963],[117,275,70,0.6552088666878989],[117,275,71,0.6782180786324928],[117,275,72,0.6983947658963128],[117,275,73,0.7161468250611204],[117,275,74,0.7319387922937138],[117,275,75,0.7461427927212257],[117,275,76,0.7590402482387811],[117,275,77,0.7708351632434214],[117,275,78,0.7816658969791659],[117,275,79,0.7916154224932561],[117,276,64,0.4181181943078759],[117,276,65,0.45890629492076385],[117,276,66,0.4968576131843186],[117,276,67,0.5317627397250118],[117,276,68,0.5634865726989355],[117,276,69,0.591977216802322],[117,276,70,0.6172746600801912],[117,276,71,0.6395192285330433],[117,276,72,0.6589604921541479],[117,276,73,0.6760079584330788],[117,276,74,0.6911563315597277],[117,276,75,0.7048069635494191],[117,276,76,0.717266279563571],[117,276,77,0.7287592344689391],[117,276,78,0.7394412512949121],[117,276,79,0.7494086415889062],[117,277,64,0.38822251453847945],[117,277,65,0.4277456938171118],[117,277,66,0.46451642919698893],[117,277,67,0.4983222597961906],[117,277,68,0.5290229923820416],[117,277,69,0.556559448993612],[117,277,70,0.5809619980079538],[117,277,71,0.6023588686499852],[117,277,72,0.6209851122321707],[117,277,73,0.6372511142603628],[117,277,74,0.6516818342688911],[117,277,75,0.6647080704485718],[117,277,76,0.6766614984855783],[117,277,77,0.6877882859240656],[117,277,78,0.6982611853981034],[117,277,79,0.7081901067329673],[117,278,64,0.36094488022792515],[117,278,65,0.39909116951112344],[117,278,66,0.43457493543317316],[117,278,67,0.4671808968015966],[117,278,68,0.4967638279600111],[117,278,69,0.523257133831033],[117,278,70,0.5466812138825654],[117,278,71,0.5671516150173879],[117,278,72,0.5848880298295333],[117,278,73,0.60030097202999],[117,278,74,0.6139454587257783],[117,278,75,0.6262816540518974],[117,278,76,0.6376664488015404],[117,278,77,0.6483672207282507],[117,278,78,0.6585740724867268],[117,278,79,0.6684105472123272],[117,279,64,0.3365139101672178],[117,279,65,0.3731794181668088],[117,279,66,0.4072779983626823],[117,279,67,0.4385917848554129],[117,279,68,0.46697059551387887],[117,279,69,0.4923403159093323],[117,279,70,0.5147110777103995],[117,279,71,0.5341852315389297],[117,279,72,0.5509663659221214],[117,279,73,0.565464352209856],[117,279,74,0.5782638060207688],[117,279,75,0.5898538997010602],[117,279,76,0.6006164386499508],[117,279,77,0.6108397574793302],[117,279,78,0.6207310944413975],[117,279,79,0.6304274441243501],[117,280,64,0.31499025213336923],[117,280,65,0.3500835237374474],[117,280,66,0.3827112832877023],[117,280,67,0.4126532876126999],[117,280,68,0.43975445894700715],[117,280,69,0.46393306237942805],[117,280,70,0.48518868357584277],[117,280,71,0.5036100067765623],[117,280,72,0.519383840693447],[117,280,73,0.5329186222377997],[117,280,74,0.5448278816142788],[117,280,75,0.555629198226672],[117,280,76,0.5657287544690588],[117,280,77,0.5754353601159922],[117,280,78,0.5849729574804095],[117,280,79,0.5944916073393302],[117,281,64,0.29625866106000004],[117,281,65,0.3297044306625041],[117,281,66,0.3607921430528142],[117,281,67,0.38929932516858273],[117,281,68,0.41506601736216053],[117,281,69,0.4380027325673407],[117,281,70,0.45809822204586476],[117,281,71,0.4754270477136119],[117,281,72,0.490158604521735],[117,281,73,0.5026990833796448],[117,281,74,0.5136900696832112],[117,281,75,0.523676751814145],[117,281,76,0.5330889530723297],[117,281,77,0.5422552798537598],[117,281,78,0.5514157549254699],[117,281,79,0.5607329357975115],[117,282,64,0.2800188023429313],[117,282,65,0.3117611620795112],[117,282,66,0.3412592756932964],[117,282,67,0.36828849599638785],[117,282,68,0.39268391583468026],[117,282,69,0.4143481011271247],[117,282,70,0.4332586374966917],[117,282,71,0.4494754904929508],[117,282,72,0.46315001802393696],[117,282,73,0.47468533845702804],[117,282,74,0.4847501202305219],[117,282,75,0.4939162249558806],[117,282,76,0.5026362318424203],[117,282,77,0.5112577091956123],[117,282,78,0.5200359770793035],[117,282,79,0.5291453611419122],[117,283,64,0.26577478028162643],[117,283,65,0.29577978355169265],[117,283,66,0.32366115102239135],[117,283,67,0.34919199392531847],[117,283,68,0.37220227958224533],[117,283,69,0.3925863347281943],[117,283,70,0.4103101703628824],[117,283,71,0.4254186281304512],[117,283,72,0.4380443811567824],[117,283,73,0.44858664044503926],[117,283,74,0.4577401489578395],[117,283,75,0.46610244048964217],[117,283,76,0.4741478770434344],[117,283,77,0.4822420480169342],[117,283,78,0.49065466821474213],[117,283,79,0.4995709746865018],[117,284,64,0.25284539812874385],[117,284,65,0.2811028361515961],[117,284,66,0.30736461986082253],[117,284,67,0.33140139936617763],[117,284,68,0.35303769540778185],[117,284,69,0.37215917385408015],[117,284,70,0.38871975080954735],[117,284,71,0.40274852833206454],[117,284,72,0.41435878748494737],[117,284,73,0.4239449942985769],[117,284,74,0.43222699605013853],[117,284,75,0.43982700426195925],[117,284,76,0.44724016398241406],[117,284,77,0.4548490905180332],[117,284,78,0.4629369140657725],[117,284,79,0.471698832245501],[117,285,64,0.24102952337116385],[117,285,65,0.26754583044582236],[117,285,66,0.2922016933879619],[117,285,67,0.314764999691153],[117,285,68,0.3350544390262976],[117,285,69,0.3529465537020387],[117,285,70,0.36838263007880057],[117,285,71,0.38137543093638704],[117,285,72,0.3920181870131061],[117,285,73,0.40069969858307264],[117,285,74,0.40816359923063866],[117,285,75,0.4150554538699753],[117,285,76,0.42188991002626636],[117,285,77,0.42906537984014526],[117,285,78,0.4368772405362835],[117,285,79,0.4455295533561891],[117,286,64,0.2307810017984501],[117,286,65,0.25557101685023464],[117,286,66,0.27864183693913513],[117,286,67,0.2997583120267541],[117,286,68,0.31873297567122705],[117,286,69,0.3354328793227582],[117,286,70,0.34978627916096455],[117,286,71,0.3617891754739583],[117,286,72,0.3715143075451379],[117,286,73,0.3793437362816138],[117,286,74,0.38604275489236634],[117,286,75,0.39227822123395406],[117,286,76,0.398582414270528],[117,286,77,0.40536785814548815],[117,286,78,0.41294067714781213],[117,286,79,0.4215124815731135],[117,287,64,0.22248632607265054],[117,287,65,0.24557468428379292],[117,287,66,0.26708977170927994],[117,287,67,0.28679316269785116],[117,287,68,0.3044909818403511],[117,287,69,0.3200405330096714],[117,287,70,0.3333567937318644],[117,287,71,0.34441877488835626],[117,287,72,0.353278522521517],[117,287,73,0.36031017822805195],[117,287,74,0.3662978408924258],[117,287,75,0.3719269377468801],[117,287,76,0.37774497839588533],[117,287,77,0.3841765077092455],[117,287,78,0.3915366042307487],[117,287,79,0.40004292410242703],[117,288,64,0.21642993692479465],[117,288,65,0.2378525292244286],[117,288,66,0.2578509914607946],[117,288,67,0.27618342496010123],[117,288,68,0.29264936962210897],[117,288,69,0.3070962415925037],[117,288,70,0.31942565019740343],[117,288,71,0.3295995941399249],[117,288,72,0.3376494728252383],[117,288,73,0.3439402711886896],[117,288,74,0.3492714233175096],[117,288,75,0.35434363851446743],[117,288,76,0.35971680767371833],[117,288,77,0.3658250630992924],[117,288,78,0.37299040090408114],[117,288,79,0.3814348659893788],[117,289,64,0.21280423675125204],[117,289,65,0.23260917463086875],[117,289,66,0.25114081097477337],[117,289,67,0.2681536209958031],[117,289,68,0.2834404654488275],[117,289,69,0.29683885368958585],[117,289,70,0.3082371009936916],[117,289,71,0.31758038013573764],[117,289,72,0.3248797441350443],[117,289,73,0.33048977113550493],[117,289,74,0.3352212504747343],[117,289,75,0.33978641896832423],[117,289,76,0.34475432992140437],[117,289,77,0.35056599063358207],[117,289,78,0.3585770503765074],[117,289,79,0.36592526147557036],[117,290,64,0.2117191556697563],[117,290,65,0.22996727973803516],[117,290,66,0.24709304285730438],[117,290,67,0.2628471887573106],[117,290,68,0.2770158891806013],[117,290,69,0.2894268517852997],[117,290,70,0.29995533828519794],[117,290,71,0.3085300928271087],[117,290,72,0.3151423775851989],[117,290,73,0.320135141403554],[117,290,74,0.3243261425889894],[117,290,75,0.3284350170372686],[117,290,76,0.33303646869217984],[117,290,77,0.3453080275464165],[117,290,78,0.35546575924067],[117,290,79,0.36282967316503856],[117,291,64,0.21321127003654172],[117,291,65,0.22997624072737746],[117,291,66,0.24576830270211142],[117,291,67,0.2603344136592003],[117,291,68,0.2734541335209422],[117,291,69,0.28494559913370654],[117,291,70,0.294671426061893],[117,291,71,0.3025445374755578],[117,291,72,0.3085372137326561],[117,291,73,0.3129796157333372],[117,291,74,0.3166917772075346],[117,291,75,0.3203963208774879],[117,291,76,0.3256812523576868],[117,291,77,0.33927185236091584],[117,291,78,0.3504680672490804],[117,291,79,0.35897293178079687],[117,292,64,0.21725247342362192],[117,292,65,0.2326204822712579],[117,292,66,0.24716194260874502],[117,292,67,0.26062002511848503],[117,292,68,0.27276784376356333],[117,292,69,0.2834143214877894],[117,292,70,0.2924100006348904],[117,292,71,0.29965279808679346],[117,292,72,0.3050970698312417],[117,292,73,0.30905912619780235],[117,292,74,0.3123563703115583],[117,292,75,0.31570980216129674],[117,292,76,0.3196940874806088],[117,292,77,0.3317026495717588],[117,292,78,0.3440585155898645],[117,292,79,0.35383225305313315],[117,293,64,0.22375820005672292],[117,293,65,0.23782733995182598],[117,293,66,0.2512116130566804],[117,293,67,0.2636504579431592],[117,293,68,0.2749107978705243],[117,293,69,0.2847928236544787],[117,293,70,0.2931357395306977],[117,293,71,0.2998234720127785],[117,293,72,0.30479375041286916],[117,293,73,0.3083480960139643],[117,293,74,0.3112962531346481],[117,293,75,0.31435287492440955],[117,293,76,0.3180867112844494],[117,293,77,0.3229356591965863],[117,293,78,0.3365025309906504],[117,293,79,0.3476728523690392],[117,294,64,0.2325952007137603],[117,294,65,0.24547453355430454],[117,294,66,0.25780445313528405],[117,294,67,0.26932077856906955],[117,294,68,0.2797845868817598],[117,294,69,0.2889879408755148],[117,294,70,0.296759598784157],[117,294,71,0.30297070572198237],[117,294,72,0.3075438911759165],[117,294,73,0.3107650972392888],[117,294,74,0.3134313446883362],[117,294,75,0.31624617997190835],[117,294,76,0.3197684652087129],[117,294,77,0.32442729013431115],[117,294,78,0.3305356067269648],[117,294,79,0.34072181548464475],[117,295,64,0.2435888710835873],[117,295,65,0.2553972312344386],[117,295,66,0.26678390912941546],[117,295,67,0.2774812761448955],[117,295,68,0.28724499565578376],[117,295,69,0.2958597250339428],[117,295,70,0.30314481862987847],[117,295,71,0.3089600317376259],[117,295,72,0.31321463618057027],[117,295,73,0.3161783733526459],[117,295,74,0.31863051999452446],[117,295,75,0.3212587948427095],[117,295,76,0.32460824756121764],[117,295,77,0.32909598213779434],[117,295,78,0.3350246391883427],[117,295,79,0.34259463716961785],[117,296,64,0.2565301325855386],[117,296,65,0.2673947045605729],[117,296,66,0.2779561814610819],[117,296,67,0.28794371846561245],[117,296,68,0.29710808394191407],[117,296,69,0.3052273656865619],[117,296,70,0.31211269759246446],[117,296,71,0.31761400674420226],[117,296,72,0.32162914835140965],[117,296,73,0.32441122672010053],[117,296,74,0.3267168740250528],[117,296,75,0.32921336933279216],[117,296,76,0.33242813046065384],[117,296,77,0.3367631983512349],[117,296,78,0.3425085190150649],[117,296,79,0.349854023041542],[117,297,64,0.2711818656492243],[117,297,65,0.28123657442986727],[117,297,66,0.29109629998669895],[117,297,67,0.3004872727540269],[117,297,68,0.30915596778362875],[117,297,69,0.31687484592195664],[117,297,70,0.32344813497516645],[117,297,71,0.32871765086191956],[117,297,72,0.3325719532868765],[117,297,73,0.3352472709451788],[117,297,74,0.33747288134803927],[117,297,75,0.33989118657680173],[117,297,76,0.34300831267136295],[117,297,77,0.3472083049443123],[117,297,78,0.35276616175701747],[117,297,79,0.35985970675770534],[117,298,64,0.2872848954549849],[117,298,65,0.29666864785903013],[117,298,66,0.30595382765031687],[117,298,67,0.31486409129073345],[117,298,68,0.3231423012534034],[117,298,69,0.33055633304446336],[117,298,70,0.3369049417473371],[117,298,71,0.3420236880894455],[117,298,72,0.34579411637603463],[117,298,73,0.3484355481040424],[117,298,74,0.35064545148146026],[117,298,75,0.3530371496885345],[117,298,76,0.3560920266734047],[117,298,77,0.36017338447411074],[117,298,78,0.3655391819030677],[117,298,79,0.37235365459406145],[117,299,64,0.30456353013470827],[117,299,65,0.3134183456492843],[117,299,66,0.3222581924925292],[117,299,67,0.3308045618922012],[117,299,68,0.3387974585187193],[117,299,69,0.34600130408374274],[117,299,70,0.3522109198303202],[117,299,71,0.35725758791456325],[117,299,72,0.3610182532221857],[117,299,73,0.3636955108650931],[117,299,74,0.36595087995343634],[117,299,75,0.3683646939597167],[117,299,76,0.3713903999672667],[117,299,77,0.37536803079162495],[117,299,78,0.3805366031187554],[117,299,79,0.38704544166015487],[117,300,64,0.3227306514333569],[117,300,65,0.33119972092590017],[117,300,66,0.33972364801540117],[117,300,67,0.34802222323733656],[117,300,68,0.35583341623961273],[117,300,69,0.36291940613034845],[117,300,70,0.3690727097822025],[117,300,71,0.37412240809319797],[117,300,72,0.3779433733738465],[117,300,73,0.3807218694935613],[117,300,74,0.38307969506983863],[117,300,75,0.3855606246177453],[117,300,76,0.38858727061393983],[117,300,77,0.3924741254936328],[117,300,78,0.3974395757976724],[117,300,79,0.403616888469803],[117,301,64,0.34149235783071297],[117,301,65,0.34971806855182597],[117,301,66,0.35805386190294614],[117,301,67,0.3662183450420494],[117,301,68,0.37394833629727103],[117,301,69,0.3810050514967849],[117,301,70,0.38718040688088795],[117,301,71,0.3923034385962434],[117,301,72,0.3962495573624775],[117,301,73,0.39918930374042133],[117,301,74,0.4017014003885035],[117,301,75,0.40428988014163164],[117,301,76,0.4073439570095573],[117,301,77,0.4111505959190773],[117,301,78,0.4159061019256301],[117,301,79,0.42172672889432855],[117,302,64,0.36055216012378444],[117,302,65,0.36867412541583533],[117,302,66,0.3769461330975761],[117,302,67,0.38508617308225307],[117,302,68,0.39283084885413083],[117,302,69,0.3999417477045233],[117,302,70,0.40621194560600066],[117,302,71,0.4114726467247323],[117,302,72,0.4156024670475479],[117,302,73,0.4187570396162728],[117,302,74,0.42146911290074945],[117,302,75,0.4242002211368944],[117,302,76,0.42730398189538565],[117,302,77,0.43103815469080287],[117,302,78,0.435575767258504],[117,302,79,0.44101530949927825],[117,303,64,0.37961472946988567],[117,303,65,0.38776786159521254],[117,303,66,0.3960952372325264],[117,303,67,0.40431483906527055],[117,303,68,0.4121640357454094],[117,303,69,0.4194061622968733],[117,303,70,0.4258372525194577],[117,303,71,0.43129292339312936],[117,303,72,0.4356576892686548],[117,303,73,0.4390732910498285],[117,303,74,0.44202409691976496],[117,303,75,0.4449268447688919],[117,303,76,0.4480977506025928],[117,303,77,0.45176402080199435],[117,303,78,0.4560744808130323],[117,303,79,0.46110932026383733],[117,304,64,0.39838919788970384],[117,304,65,0.40670186239230466],[117,304,66,0.4151969004196241],[117,304,67,0.4235929353490751],[117,304,68,0.43162911420156114],[117,304,69,0.4390719224772684],[117,304,70,0.4457221675443521],[117,304,71,0.45142213058048125],[117,304,72,0.45606491280452044],[117,304,73,0.4597795664309394],[117,304,74,0.46300019367589834],[117,304,75,0.46609692475473674],[117,304,76,0.46934718353203714],[117,304,77,0.47294662224766965],[117,304,78,0.47701922167102934],[117,304,79,0.4816265566835042],[117,305,64,0.4165920112314324],[117,305,65,0.4251843012459852],[117,305,66,0.43395090139338877],[117,305,67,0.44261175451027746],[117,305,68,0.4509088209024951],[117,305,69,0.4586131495737075],[117,305,70,0.465532133642791],[117,305,71,0.47151694994995774],[117,305,72,0.47647193863929477],[117,305,73,0.48051484003846034],[117,305,74,0.48402814661903326],[117,305,75,0.4873340769138482],[117,305,76,0.4906703028690098],[117,305,77,0.49420028020103446],[117,305,78,0.49802279309669223],[117,305,79,0.502180713255578],[117,306,64,0.4339493345950844],[117,306,65,0.4429315035171858],[117,306,66,0.4520638020106822],[117,306,67,0.4610681937601498],[117,306,68,0.46969049636291493],[117,306,69,0.4777077283288155],[117,306,70,0.4849356548922453],[117,306,71,0.4912365326364424],[117,306,72,0.4965285235359255],[117,306,73,0.5009195883528362],[117,306,74,0.5047398224280447],[117,306,75,0.5082627502772549],[117,306,76,0.5116857735331586],[117,306,77,0.5151398747350405],[117,306,78,0.5186985839674578],[117,306,79,0.5223862083480315],[117,307,64,0.45019901021737396],[117,307,65,0.45967010114883927],[117,307,66,0.4692513061061939],[117,307,67,0.478667324208911],[117,307,68,0.4876688696489462],[117,307,69,0.4960403110155952],[117,307,70,0.5036075229604019],[117,307,71,0.5102459502020832],[117,307,72,0.5158900569164144],[117,307,73,0.5206396912531303],[117,307,74,0.5247723277269621],[117,307,75,0.5285125437551783],[117,307,76,0.5320173983630334],[117,307,77,0.5353854920884977],[117,307,78,0.5386653375176778],[117,307,79,0.5418630404509519],[117,308,64,0.465092067816935],[117,308,65,0.47513877820005135],[117,308,66,0.48524024670363763],[117,308,67,0.49512462497820875],[117,308,68,0.5045485434260468],[117,308,69,0.5133050563789513],[117,308,70,0.5212318119786787],[117,308,71,0.5282194467600354],[117,308,72,0.5342210710492823],[117,308,73,0.5393301980989026],[117,308,74,0.5437720215083331],[117,308,75,0.5477224483634807],[117,308,76,0.5512985675359137],[117,308,77,0.5545670534774839],[117,308,78,0.5575519273959221],[117,308,79,0.5602416758114277],[117,309,64,0.47839378740064226],[117,309,65,0.48908960725520895],[117,309,66,0.4997702015832963],[117,309,67,0.5101678821623621],[117,309,68,0.5200461793386844],[117,309,69,0.5292081034033771],[117,309,70,0.5375046418146973],[117,309,71,0.5448434922666026],[117,309,72,0.551198584544342],[117,309,73,0.5566589586969383],[117,309,74,0.5613984232636868],[117,309,75,0.5655450150087658],[117,309,76,0.5691766622226127],[117,309,77,0.572328925451641],[117,309,78,0.575002141035413],[117,309,79,0.5771679674512986],[117,310,64,0.48988431452939274],[117,310,65,0.5012889767064531],[117,310,66,0.5125947372044288],[117,310,67,0.5235387526369728],[117,310,68,0.533892383720495],[117,310,69,0.5434697799056297],[117,310,70,0.5521367097426572],[117,310,71,0.559819636980838],[117,310,72,0.566515279153972],[117,310,73,0.5723101191521472],[117,310,74,0.5773280168205461],[117,310,75,0.5816504478317224],[117,310,76,0.5853174124769783],[117,310,77,0.5883345117952145],[117,310,78,0.5906794703375706],[117,310,79,0.5923081055678738],[117,311,64,0.4993588280454831],[117,311,65,0.5115181089115719],[117,311,66,0.5234822809845036],[117,311,67,0.5349939927167602],[117,311,68,0.545833293636658],[117,311,69,0.5558265459540088],[117,311,70,0.5648555905131009],[117,311,71,0.5728671670929605],[117,311,72,0.5798825098821022],[117,311,73,0.5859874826037013],[117,311,74,0.5912579498869152],[117,311,75,0.5957306231094852],[117,311,76,0.5994092093607111],[117,311,77,0.6022708269733125],[117,311,78,0.604271909669004],[117,311,79,0.6053535993178059],[117,312,64,0.5066272602597024],[117,312,65,0.5195731692255161],[117,312,66,0.5322166219335459],[117,312,67,0.5443063516610169],[117,312,68,0.5556318632569981],[117,312,69,0.5660326721128578],[117,312,70,0.5754078048207997],[117,312,71,0.5837255615204425],[117,312,72,0.5910331483999004],[117,312,73,0.5974177348455312],[117,312,74,0.6029096293024878],[117,312,75,0.6075030337163917],[117,312,76,0.6111673713030228],[117,312,77,0.6138530511230245],[117,312,78,0.6154967611717128],[117,312,79,0.6160262899840119],[117,313,64,0.5115135695993869],[117,313,65,0.5252649659067019],[117,313,66,0.5385970396446876],[117,313,67,0.551265130027677],[117,313,68,0.5630688505607091],[117,313,69,0.5738616525130944],[117,313,70,0.5835606561714796],[117,313,71,0.5921567498723826],[117,313,72,0.5997242597686679],[117,313,73,0.6063535348315856],[117,313,74,0.6120322119968865],[117,313,75,0.6167146591433424],[117,313,76,0.6203383646952303],[117,313,77,0.6228290665894182],[117,313,78,0.6241054473864277],[117,313,79,0.6240833955254904],[117,314,64,0.5138545657164871],[117,314,65,0.5284182408972332],[117,314,66,0.5424380616401266],[117,314,67,0.5556764028752859],[117,314,68,0.5679435043720752],[117,314,69,0.5791073527482262],[117,314,70,0.5891038361469194],[117,314,71,0.5979471715817875],[117,314,72,0.6057396124696566],[117,314,73,0.6125764700656525],[117,314,74,0.6184059916548068],[117,314,75,0.6231457610757276],[117,314,76,0.6267039787203368],[117,314,77,0.6289839760065236],[117,314,78,0.6298883311892687],[117,314,79,0.6293225865102616],[117,315,64,0.513498287056911],[117,315,65,0.528870551478227],[117,315,66,0.5435688490735978],[117,315,67,0.5573629078139001],[117,315,68,0.5700739517281298],[117,315,69,0.5815848925967033],[117,315,70,0.5918507980691899],[117,315,71,0.6009096362064392],[117,315,72,0.6088920217413899],[117,315,73,0.6158998768762358],[117,315,74,0.6218456810884815],[117,315,75,0.6266136045302346],[117,315,76,0.6300854544178244],[117,315,77,0.6321446019234591],[117,315,78,0.6326795430417989],[117,315,79,0.6315870934314527],[117,316,64,0.5103019308895371],[117,316,65,0.5264707427986995],[117,316,66,0.5418322107878932],[117,316,67,0.5561635979035173],[117,316,68,0.5692972855769365],[117,316,69,0.5811312635693813],[117,316,70,0.591639899062893],[117,316,71,0.6008849848972959],[117,316,72,0.6090255262235327],[117,316,73,0.6161715255756222],[117,316,74,0.6222035903166802],[117,316,75,0.6269761045498632],[117,316,76,0.6303475679830794],[117,316,77,0.6321839679752049],[117,316,78,0.6323618155540663],[117,316,79,0.6307708454061974],[117,317,64,0.504129335796019],[117,317,65,0.5210770112791104],[117,317,66,0.5370832457284782],[117,317,67,0.5519328594010517],[117,317,68,0.56546935280746],[117,317,69,0.5776056812830056],[117,317,70,0.5883353105162579],[117,317,71,0.5977435530352306],[117,317,72,0.6060173979080528],[117,317,73,0.6132761705038239],[117,317,74,0.6193727003508812],[117,317,75,0.6241353984577032],[117,317,76,0.6274026683019415],[117,317,77,0.629025761598452],[117,317,78,0.6288713253610024],[117,317,79,0.6268236402576551],[117,318,64,0.49484801662160127],[117,318,65,0.5125545588897601],[117,318,66,0.5291876137133971],[117,318,67,0.5445393943560333],[117,318,68,0.5584642426111859],[117,318,69,0.570889672659876],[117,318,70,0.5818276969412435],[117,318,71,0.5913864340362425],[117,318,72,0.5997799853978013],[117,318,73,0.6071379649575159],[117,318,74,0.61328963268872],[117,318,75,0.6180413436695893],[117,318,76,0.621214668720488],[117,318,77,0.6226487782926428],[117,318,78,0.6222025423122834],[117,318,79,0.61975634598026],[117,319,64,0.48232575188539983],[117,319,65,0.5007728383025499],[117,319,66,0.5180194345580266],[117,319,67,0.5338647680536414],[117,319,68,0.5481734751741764],[117,319,69,0.5608868979524264],[117,319,70,0.5720346632314516],[117,319,71,0.5817465443240172],[117,319,72,0.5902623904714563],[117,319,73,0.5977227410029802],[117,319,74,0.6039375145137982],[117,319,75,0.6086949410647745],[117,319,76,0.6118029930492613],[117,319,77,0.6130913474254645],[117,319,78,0.6124130859749929],[117,319,79,0.6096461335875996],[118,-64,64,64.0],[118,-64,65,64.0],[118,-64,66,64.0],[118,-64,67,64.0],[118,-64,68,64.0],[118,-64,69,64.0],[118,-64,70,64.0],[118,-64,71,64.0],[118,-64,72,64.0],[118,-64,73,64.0],[118,-64,74,64.0],[118,-64,75,64.0],[118,-64,76,64.0],[118,-64,77,64.0],[118,-64,78,64.0],[118,-64,79,64.0],[118,-63,64,64.0],[118,-63,65,64.0],[118,-63,66,64.0],[118,-63,67,64.0],[118,-63,68,64.0],[118,-63,69,64.0],[118,-63,70,64.0],[118,-63,71,64.0],[118,-63,72,64.0],[118,-63,73,64.0],[118,-63,74,64.0],[118,-63,75,64.0],[118,-63,76,64.0],[118,-63,77,64.0],[118,-63,78,64.0],[118,-63,79,64.0],[118,-62,64,64.0],[118,-62,65,64.0],[118,-62,66,64.0],[118,-62,67,64.0],[118,-62,68,64.0],[118,-62,69,64.0],[118,-62,70,64.0],[118,-62,71,64.0],[118,-62,72,64.0],[118,-62,73,64.0],[118,-62,74,64.0],[118,-62,75,64.0],[118,-62,76,64.0],[118,-62,77,64.0],[118,-62,78,64.0],[118,-62,79,64.0],[118,-61,64,64.0],[118,-61,65,64.0],[118,-61,66,64.0],[118,-61,67,64.0],[118,-61,68,64.0],[118,-61,69,64.0],[118,-61,70,64.0],[118,-61,71,64.0],[118,-61,72,64.0],[118,-61,73,64.0],[118,-61,74,64.0],[118,-61,75,64.0],[118,-61,76,64.0],[118,-61,77,64.0],[118,-61,78,64.0],[118,-61,79,64.0],[118,-60,64,64.0],[118,-60,65,64.0],[118,-60,66,64.0],[118,-60,67,64.0],[118,-60,68,64.0],[118,-60,69,64.0],[118,-60,70,64.0],[118,-60,71,64.0],[118,-60,72,64.0],[118,-60,73,64.0],[118,-60,74,64.0],[118,-60,75,64.0],[118,-60,76,64.0],[118,-60,77,64.0],[118,-60,78,64.0],[118,-60,79,64.0],[118,-59,64,64.0],[118,-59,65,64.0],[118,-59,66,64.0],[118,-59,67,64.0],[118,-59,68,64.0],[118,-59,69,64.0],[118,-59,70,64.0],[118,-59,71,64.0],[118,-59,72,64.0],[118,-59,73,64.0],[118,-59,74,64.0],[118,-59,75,64.0],[118,-59,76,64.0],[118,-59,77,64.0],[118,-59,78,64.0],[118,-59,79,64.0],[118,-58,64,64.0],[118,-58,65,64.0],[118,-58,66,64.0],[118,-58,67,64.0],[118,-58,68,64.0],[118,-58,69,64.0],[118,-58,70,64.0],[118,-58,71,64.0],[118,-58,72,64.0],[118,-58,73,64.0],[118,-58,74,64.0],[118,-58,75,64.0],[118,-58,76,64.0],[118,-58,77,64.0],[118,-58,78,64.0],[118,-58,79,64.0],[118,-57,64,64.0],[118,-57,65,64.0],[118,-57,66,64.0],[118,-57,67,64.0],[118,-57,68,64.0],[118,-57,69,64.0],[118,-57,70,64.0],[118,-57,71,64.0],[118,-57,72,64.0],[118,-57,73,64.0],[118,-57,74,64.0],[118,-57,75,64.0],[118,-57,76,64.0],[118,-57,77,64.0],[118,-57,78,64.0],[118,-57,79,64.0],[118,-56,64,64.0],[118,-56,65,64.0],[118,-56,66,64.0],[118,-56,67,64.0],[118,-56,68,64.0],[118,-56,69,64.0],[118,-56,70,64.0],[118,-56,71,64.0],[118,-56,72,64.0],[118,-56,73,64.0],[118,-56,74,64.0],[118,-56,75,64.0],[118,-56,76,64.0],[118,-56,77,64.0],[118,-56,78,64.0],[118,-56,79,64.0],[118,-55,64,64.0],[118,-55,65,64.0],[118,-55,66,64.0],[118,-55,67,64.0],[118,-55,68,64.0],[118,-55,69,64.0],[118,-55,70,64.0],[118,-55,71,64.0],[118,-55,72,64.0],[118,-55,73,64.0],[118,-55,74,64.0],[118,-55,75,64.0],[118,-55,76,64.0],[118,-55,77,64.0],[118,-55,78,64.0],[118,-55,79,64.0],[118,-54,64,64.0],[118,-54,65,64.0],[118,-54,66,64.0],[118,-54,67,64.0],[118,-54,68,64.0],[118,-54,69,64.0],[118,-54,70,64.0],[118,-54,71,64.0],[118,-54,72,64.0],[118,-54,73,64.0],[118,-54,74,64.0],[118,-54,75,64.0],[118,-54,76,64.0],[118,-54,77,64.0],[118,-54,78,64.0],[118,-54,79,64.0],[118,-53,64,64.0],[118,-53,65,64.0],[118,-53,66,64.0],[118,-53,67,64.0],[118,-53,68,64.0],[118,-53,69,64.0],[118,-53,70,64.0],[118,-53,71,64.0],[118,-53,72,64.0],[118,-53,73,64.0],[118,-53,74,64.0],[118,-53,75,64.0],[118,-53,76,64.0],[118,-53,77,64.0],[118,-53,78,64.0],[118,-53,79,64.0],[118,-52,64,64.0],[118,-52,65,64.0],[118,-52,66,64.0],[118,-52,67,64.0],[118,-52,68,64.0],[118,-52,69,64.0],[118,-52,70,64.0],[118,-52,71,64.0],[118,-52,72,64.0],[118,-52,73,64.0],[118,-52,74,64.0],[118,-52,75,64.0],[118,-52,76,64.0],[118,-52,77,64.0],[118,-52,78,64.0],[118,-52,79,64.0],[118,-51,64,64.0],[118,-51,65,64.0],[118,-51,66,64.0],[118,-51,67,64.0],[118,-51,68,64.0],[118,-51,69,64.0],[118,-51,70,64.0],[118,-51,71,64.0],[118,-51,72,64.0],[118,-51,73,64.0],[118,-51,74,64.0],[118,-51,75,64.0],[118,-51,76,64.0],[118,-51,77,64.0],[118,-51,78,64.0],[118,-51,79,64.0],[118,-50,64,64.0],[118,-50,65,64.0],[118,-50,66,64.0],[118,-50,67,64.0],[118,-50,68,64.0],[118,-50,69,64.0],[118,-50,70,64.0],[118,-50,71,64.0],[118,-50,72,64.0],[118,-50,73,64.0],[118,-50,74,64.0],[118,-50,75,64.0],[118,-50,76,64.0],[118,-50,77,64.0],[118,-50,78,64.0],[118,-50,79,64.0],[118,-49,64,64.0],[118,-49,65,64.0],[118,-49,66,64.0],[118,-49,67,64.0],[118,-49,68,64.0],[118,-49,69,64.0],[118,-49,70,64.0],[118,-49,71,64.0],[118,-49,72,64.0],[118,-49,73,64.0],[118,-49,74,64.0],[118,-49,75,64.0],[118,-49,76,64.0],[118,-49,77,64.0],[118,-49,78,64.0],[118,-49,79,64.0],[118,-48,64,64.0],[118,-48,65,64.0],[118,-48,66,64.0],[118,-48,67,64.0],[118,-48,68,64.0],[118,-48,69,64.0],[118,-48,70,64.0],[118,-48,71,64.0],[118,-48,72,64.0],[118,-48,73,64.0],[118,-48,74,64.0],[118,-48,75,64.0],[118,-48,76,64.0],[118,-48,77,64.0],[118,-48,78,64.0],[118,-48,79,64.0],[118,-47,64,64.0],[118,-47,65,64.0],[118,-47,66,64.0],[118,-47,67,64.0],[118,-47,68,64.0],[118,-47,69,64.0],[118,-47,70,64.0],[118,-47,71,64.0],[118,-47,72,64.0],[118,-47,73,64.0],[118,-47,74,64.0],[118,-47,75,64.0],[118,-47,76,64.0],[118,-47,77,64.0],[118,-47,78,64.0],[118,-47,79,64.0],[118,-46,64,64.0],[118,-46,65,64.0],[118,-46,66,64.0],[118,-46,67,64.0],[118,-46,68,64.0],[118,-46,69,64.0],[118,-46,70,64.0],[118,-46,71,64.0],[118,-46,72,64.0],[118,-46,73,64.0],[118,-46,74,64.0],[118,-46,75,64.0],[118,-46,76,64.0],[118,-46,77,64.0],[118,-46,78,64.0],[118,-46,79,64.0],[118,-45,64,64.0],[118,-45,65,64.0],[118,-45,66,64.0],[118,-45,67,64.0],[118,-45,68,64.0],[118,-45,69,64.0],[118,-45,70,64.0],[118,-45,71,64.0],[118,-45,72,64.0],[118,-45,73,64.0],[118,-45,74,64.0],[118,-45,75,64.0],[118,-45,76,64.0],[118,-45,77,64.0],[118,-45,78,64.0],[118,-45,79,64.0],[118,-44,64,64.0],[118,-44,65,64.0],[118,-44,66,64.0],[118,-44,67,64.0],[118,-44,68,64.0],[118,-44,69,64.0],[118,-44,70,64.0],[118,-44,71,64.0],[118,-44,72,64.0],[118,-44,73,64.0],[118,-44,74,64.0],[118,-44,75,64.0],[118,-44,76,64.0],[118,-44,77,64.0],[118,-44,78,64.0],[118,-44,79,64.0],[118,-43,64,64.0],[118,-43,65,64.0],[118,-43,66,64.0],[118,-43,67,64.0],[118,-43,68,64.0],[118,-43,69,64.0],[118,-43,70,64.0],[118,-43,71,64.0],[118,-43,72,64.0],[118,-43,73,64.0],[118,-43,74,64.0],[118,-43,75,64.0],[118,-43,76,64.0],[118,-43,77,64.0],[118,-43,78,64.0],[118,-43,79,64.0],[118,-42,64,64.0],[118,-42,65,64.0],[118,-42,66,64.0],[118,-42,67,64.0],[118,-42,68,64.0],[118,-42,69,64.0],[118,-42,70,64.0],[118,-42,71,64.0],[118,-42,72,64.0],[118,-42,73,64.0],[118,-42,74,64.0],[118,-42,75,64.0],[118,-42,76,64.0],[118,-42,77,64.0],[118,-42,78,64.0],[118,-42,79,64.0],[118,-41,64,64.0],[118,-41,65,64.0],[118,-41,66,64.0],[118,-41,67,64.0],[118,-41,68,64.0],[118,-41,69,64.0],[118,-41,70,64.0],[118,-41,71,64.0],[118,-41,72,64.0],[118,-41,73,64.0],[118,-41,74,64.0],[118,-41,75,64.0],[118,-41,76,64.0],[118,-41,77,64.0],[118,-41,78,64.0],[118,-41,79,64.0],[118,-40,64,64.0],[118,-40,65,64.0],[118,-40,66,64.0],[118,-40,67,64.0],[118,-40,68,64.0],[118,-40,69,64.0],[118,-40,70,64.0],[118,-40,71,64.0],[118,-40,72,64.0],[118,-40,73,64.0],[118,-40,74,64.0],[118,-40,75,64.0],[118,-40,76,64.0],[118,-40,77,64.0],[118,-40,78,64.0],[118,-40,79,64.0],[118,-39,64,64.0],[118,-39,65,64.0],[118,-39,66,64.0],[118,-39,67,64.0],[118,-39,68,64.0],[118,-39,69,64.0],[118,-39,70,64.0],[118,-39,71,64.0],[118,-39,72,64.0],[118,-39,73,64.0],[118,-39,74,64.0],[118,-39,75,64.0],[118,-39,76,64.0],[118,-39,77,64.0],[118,-39,78,64.0],[118,-39,79,64.0],[118,-38,64,64.0],[118,-38,65,64.0],[118,-38,66,64.0],[118,-38,67,64.0],[118,-38,68,64.0],[118,-38,69,64.0],[118,-38,70,64.0],[118,-38,71,64.0],[118,-38,72,64.0],[118,-38,73,64.0],[118,-38,74,64.0],[118,-38,75,64.0],[118,-38,76,64.0],[118,-38,77,64.0],[118,-38,78,64.0],[118,-38,79,64.0],[118,-37,64,64.0],[118,-37,65,64.0],[118,-37,66,64.0],[118,-37,67,64.0],[118,-37,68,64.0],[118,-37,69,64.0],[118,-37,70,64.0],[118,-37,71,64.0],[118,-37,72,64.0],[118,-37,73,64.0],[118,-37,74,64.0],[118,-37,75,64.0],[118,-37,76,64.0],[118,-37,77,64.0],[118,-37,78,64.0],[118,-37,79,64.0],[118,-36,64,64.0],[118,-36,65,64.0],[118,-36,66,64.0],[118,-36,67,64.0],[118,-36,68,64.0],[118,-36,69,64.0],[118,-36,70,64.0],[118,-36,71,64.0],[118,-36,72,64.0],[118,-36,73,64.0],[118,-36,74,64.0],[118,-36,75,64.0],[118,-36,76,64.0],[118,-36,77,64.0],[118,-36,78,64.0],[118,-36,79,64.0],[118,-35,64,64.0],[118,-35,65,64.0],[118,-35,66,64.0],[118,-35,67,64.0],[118,-35,68,64.0],[118,-35,69,64.0],[118,-35,70,64.0],[118,-35,71,64.0],[118,-35,72,64.0],[118,-35,73,64.0],[118,-35,74,64.0],[118,-35,75,64.0],[118,-35,76,64.0],[118,-35,77,64.0],[118,-35,78,64.0],[118,-35,79,64.0],[118,-34,64,64.0],[118,-34,65,64.0],[118,-34,66,64.0],[118,-34,67,64.0],[118,-34,68,64.0],[118,-34,69,64.0],[118,-34,70,64.0],[118,-34,71,64.0],[118,-34,72,64.0],[118,-34,73,64.0],[118,-34,74,64.0],[118,-34,75,64.0],[118,-34,76,64.0],[118,-34,77,64.0],[118,-34,78,64.0],[118,-34,79,64.0],[118,-33,64,64.0],[118,-33,65,64.0],[118,-33,66,64.0],[118,-33,67,64.0],[118,-33,68,64.0],[118,-33,69,64.0],[118,-33,70,64.0],[118,-33,71,64.0],[118,-33,72,64.0],[118,-33,73,64.0],[118,-33,74,64.0],[118,-33,75,64.0],[118,-33,76,64.0],[118,-33,77,64.0],[118,-33,78,64.0],[118,-33,79,64.0],[118,-32,64,64.0],[118,-32,65,64.0],[118,-32,66,64.0],[118,-32,67,64.0],[118,-32,68,64.0],[118,-32,69,64.0],[118,-32,70,64.0],[118,-32,71,64.0],[118,-32,72,64.0],[118,-32,73,64.0],[118,-32,74,64.0],[118,-32,75,64.0],[118,-32,76,64.0],[118,-32,77,64.0],[118,-32,78,64.0],[118,-32,79,64.0],[118,-31,64,64.0],[118,-31,65,64.0],[118,-31,66,64.0],[118,-31,67,64.0],[118,-31,68,64.0],[118,-31,69,64.0],[118,-31,70,64.0],[118,-31,71,64.0],[118,-31,72,64.0],[118,-31,73,64.0],[118,-31,74,64.0],[118,-31,75,64.0],[118,-31,76,64.0],[118,-31,77,64.0],[118,-31,78,64.0],[118,-31,79,64.0],[118,-30,64,64.0],[118,-30,65,64.0],[118,-30,66,64.0],[118,-30,67,64.0],[118,-30,68,64.0],[118,-30,69,64.0],[118,-30,70,64.0],[118,-30,71,64.0],[118,-30,72,64.0],[118,-30,73,64.0],[118,-30,74,64.0],[118,-30,75,64.0],[118,-30,76,64.0],[118,-30,77,64.0],[118,-30,78,64.0],[118,-30,79,64.0],[118,-29,64,64.0],[118,-29,65,64.0],[118,-29,66,64.0],[118,-29,67,64.0],[118,-29,68,64.0],[118,-29,69,64.0],[118,-29,70,64.0],[118,-29,71,64.0],[118,-29,72,64.0],[118,-29,73,64.0],[118,-29,74,64.0],[118,-29,75,64.0],[118,-29,76,64.0],[118,-29,77,64.0],[118,-29,78,64.0],[118,-29,79,64.0],[118,-28,64,64.0],[118,-28,65,64.0],[118,-28,66,64.0],[118,-28,67,64.0],[118,-28,68,64.0],[118,-28,69,64.0],[118,-28,70,64.0],[118,-28,71,64.0],[118,-28,72,64.0],[118,-28,73,64.0],[118,-28,74,64.0],[118,-28,75,64.0],[118,-28,76,64.0],[118,-28,77,64.0],[118,-28,78,64.0],[118,-28,79,64.0],[118,-27,64,64.0],[118,-27,65,64.0],[118,-27,66,64.0],[118,-27,67,64.0],[118,-27,68,64.0],[118,-27,69,64.0],[118,-27,70,64.0],[118,-27,71,64.0],[118,-27,72,64.0],[118,-27,73,64.0],[118,-27,74,64.0],[118,-27,75,64.0],[118,-27,76,64.0],[118,-27,77,64.0],[118,-27,78,64.0],[118,-27,79,64.0],[118,-26,64,64.0],[118,-26,65,64.0],[118,-26,66,64.0],[118,-26,67,64.0],[118,-26,68,64.0],[118,-26,69,64.0],[118,-26,70,64.0],[118,-26,71,64.0],[118,-26,72,64.0],[118,-26,73,64.0],[118,-26,74,64.0],[118,-26,75,64.0],[118,-26,76,64.0],[118,-26,77,64.0],[118,-26,78,64.0],[118,-26,79,64.0],[118,-25,64,64.0],[118,-25,65,64.0],[118,-25,66,64.0],[118,-25,67,64.0],[118,-25,68,64.0],[118,-25,69,64.0],[118,-25,70,64.0],[118,-25,71,64.0],[118,-25,72,64.0],[118,-25,73,64.0],[118,-25,74,64.0],[118,-25,75,64.0],[118,-25,76,64.0],[118,-25,77,64.0],[118,-25,78,64.0],[118,-25,79,64.0],[118,-24,64,64.0],[118,-24,65,64.0],[118,-24,66,64.0],[118,-24,67,64.0],[118,-24,68,64.0],[118,-24,69,64.0],[118,-24,70,64.0],[118,-24,71,64.0],[118,-24,72,64.0],[118,-24,73,64.0],[118,-24,74,64.0],[118,-24,75,64.0],[118,-24,76,64.0],[118,-24,77,64.0],[118,-24,78,64.0],[118,-24,79,64.0],[118,-23,64,64.0],[118,-23,65,64.0],[118,-23,66,64.0],[118,-23,67,64.0],[118,-23,68,64.0],[118,-23,69,64.0],[118,-23,70,64.0],[118,-23,71,64.0],[118,-23,72,64.0],[118,-23,73,64.0],[118,-23,74,64.0],[118,-23,75,64.0],[118,-23,76,64.0],[118,-23,77,64.0],[118,-23,78,64.0],[118,-23,79,64.0],[118,-22,64,64.0],[118,-22,65,64.0],[118,-22,66,64.0],[118,-22,67,64.0],[118,-22,68,64.0],[118,-22,69,64.0],[118,-22,70,64.0],[118,-22,71,64.0],[118,-22,72,64.0],[118,-22,73,64.0],[118,-22,74,64.0],[118,-22,75,64.0],[118,-22,76,64.0],[118,-22,77,64.0],[118,-22,78,64.0],[118,-22,79,64.0],[118,-21,64,64.0],[118,-21,65,64.0],[118,-21,66,64.0],[118,-21,67,64.0],[118,-21,68,64.0],[118,-21,69,64.0],[118,-21,70,64.0],[118,-21,71,64.0],[118,-21,72,64.0],[118,-21,73,64.0],[118,-21,74,64.0],[118,-21,75,64.0],[118,-21,76,64.0],[118,-21,77,64.0],[118,-21,78,64.0],[118,-21,79,64.0],[118,-20,64,64.0],[118,-20,65,64.0],[118,-20,66,64.0],[118,-20,67,64.0],[118,-20,68,64.0],[118,-20,69,64.0],[118,-20,70,64.0],[118,-20,71,64.0],[118,-20,72,64.0],[118,-20,73,64.0],[118,-20,74,64.0],[118,-20,75,64.0],[118,-20,76,64.0],[118,-20,77,64.0],[118,-20,78,64.0],[118,-20,79,64.0],[118,-19,64,64.0],[118,-19,65,64.0],[118,-19,66,64.0],[118,-19,67,64.0],[118,-19,68,64.0],[118,-19,69,64.0],[118,-19,70,64.0],[118,-19,71,64.0],[118,-19,72,64.0],[118,-19,73,64.0],[118,-19,74,64.0],[118,-19,75,64.0],[118,-19,76,64.0],[118,-19,77,64.0],[118,-19,78,64.0],[118,-19,79,64.0],[118,-18,64,64.0],[118,-18,65,64.0],[118,-18,66,64.0],[118,-18,67,64.0],[118,-18,68,64.0],[118,-18,69,64.0],[118,-18,70,64.0],[118,-18,71,64.0],[118,-18,72,64.0],[118,-18,73,64.0],[118,-18,74,64.0],[118,-18,75,64.0],[118,-18,76,64.0],[118,-18,77,64.0],[118,-18,78,64.0],[118,-18,79,64.0],[118,-17,64,64.0],[118,-17,65,64.0],[118,-17,66,64.0],[118,-17,67,64.0],[118,-17,68,64.0],[118,-17,69,64.0],[118,-17,70,64.0],[118,-17,71,64.0],[118,-17,72,64.0],[118,-17,73,64.0],[118,-17,74,64.0],[118,-17,75,64.0],[118,-17,76,64.0],[118,-17,77,64.0],[118,-17,78,64.0],[118,-17,79,64.0],[118,-16,64,64.0],[118,-16,65,64.0],[118,-16,66,64.0],[118,-16,67,64.0],[118,-16,68,64.0],[118,-16,69,64.0],[118,-16,70,64.0],[118,-16,71,64.0],[118,-16,72,64.0],[118,-16,73,64.0],[118,-16,74,64.0],[118,-16,75,64.0],[118,-16,76,64.0],[118,-16,77,64.0],[118,-16,78,64.0],[118,-16,79,64.0],[118,-15,64,64.0],[118,-15,65,64.0],[118,-15,66,64.0],[118,-15,67,64.0],[118,-15,68,64.0],[118,-15,69,64.0],[118,-15,70,64.0],[118,-15,71,64.0],[118,-15,72,64.0],[118,-15,73,64.0],[118,-15,74,64.0],[118,-15,75,64.0],[118,-15,76,64.0],[118,-15,77,64.0],[118,-15,78,64.0],[118,-15,79,64.0],[118,-14,64,64.0],[118,-14,65,64.0],[118,-14,66,64.0],[118,-14,67,64.0],[118,-14,68,64.0],[118,-14,69,64.0],[118,-14,70,64.0],[118,-14,71,64.0],[118,-14,72,64.0],[118,-14,73,64.0],[118,-14,74,64.0],[118,-14,75,64.0],[118,-14,76,64.0],[118,-14,77,64.0],[118,-14,78,64.0],[118,-14,79,64.0],[118,-13,64,64.0],[118,-13,65,64.0],[118,-13,66,64.0],[118,-13,67,64.0],[118,-13,68,64.0],[118,-13,69,64.0],[118,-13,70,64.0],[118,-13,71,64.0],[118,-13,72,64.0],[118,-13,73,64.0],[118,-13,74,64.0],[118,-13,75,64.0],[118,-13,76,64.0],[118,-13,77,64.0],[118,-13,78,64.0],[118,-13,79,64.0],[118,-12,64,64.0],[118,-12,65,64.0],[118,-12,66,64.0],[118,-12,67,64.0],[118,-12,68,64.0],[118,-12,69,64.0],[118,-12,70,64.0],[118,-12,71,64.0],[118,-12,72,64.0],[118,-12,73,64.0],[118,-12,74,64.0],[118,-12,75,64.0],[118,-12,76,64.0],[118,-12,77,64.0],[118,-12,78,64.0],[118,-12,79,64.0],[118,-11,64,64.0],[118,-11,65,64.0],[118,-11,66,64.0],[118,-11,67,64.0],[118,-11,68,64.0],[118,-11,69,64.0],[118,-11,70,64.0],[118,-11,71,64.0],[118,-11,72,64.0],[118,-11,73,64.0],[118,-11,74,64.0],[118,-11,75,64.0],[118,-11,76,64.0],[118,-11,77,64.0],[118,-11,78,64.0],[118,-11,79,64.0],[118,-10,64,64.0],[118,-10,65,64.0],[118,-10,66,64.0],[118,-10,67,64.0],[118,-10,68,64.0],[118,-10,69,64.0],[118,-10,70,64.0],[118,-10,71,64.0],[118,-10,72,64.0],[118,-10,73,64.0],[118,-10,74,64.0],[118,-10,75,64.0],[118,-10,76,64.0],[118,-10,77,64.0],[118,-10,78,64.0],[118,-10,79,64.0],[118,-9,64,64.0],[118,-9,65,64.0],[118,-9,66,64.0],[118,-9,67,64.0],[118,-9,68,64.0],[118,-9,69,64.0],[118,-9,70,64.0],[118,-9,71,64.0],[118,-9,72,64.0],[118,-9,73,64.0],[118,-9,74,64.0],[118,-9,75,64.0],[118,-9,76,64.0],[118,-9,77,64.0],[118,-9,78,64.0],[118,-9,79,64.0],[118,-8,64,64.0],[118,-8,65,64.0],[118,-8,66,64.0],[118,-8,67,64.0],[118,-8,68,64.0],[118,-8,69,64.0],[118,-8,70,64.0],[118,-8,71,64.0],[118,-8,72,64.0],[118,-8,73,64.0],[118,-8,74,64.0],[118,-8,75,64.0],[118,-8,76,64.0],[118,-8,77,64.0],[118,-8,78,64.0],[118,-8,79,64.0],[118,-7,64,64.0],[118,-7,65,64.0],[118,-7,66,64.0],[118,-7,67,64.0],[118,-7,68,64.0],[118,-7,69,64.0],[118,-7,70,64.0],[118,-7,71,64.0],[118,-7,72,64.0],[118,-7,73,64.0],[118,-7,74,64.0],[118,-7,75,64.0],[118,-7,76,64.0],[118,-7,77,64.0],[118,-7,78,64.0],[118,-7,79,64.0],[118,-6,64,64.0],[118,-6,65,64.0],[118,-6,66,64.0],[118,-6,67,64.0],[118,-6,68,64.0],[118,-6,69,64.0],[118,-6,70,64.0],[118,-6,71,64.0],[118,-6,72,64.0],[118,-6,73,64.0],[118,-6,74,64.0],[118,-6,75,64.0],[118,-6,76,64.0],[118,-6,77,64.0],[118,-6,78,64.0],[118,-6,79,64.0],[118,-5,64,64.0],[118,-5,65,64.0],[118,-5,66,64.0],[118,-5,67,64.0],[118,-5,68,64.0],[118,-5,69,64.0],[118,-5,70,64.0],[118,-5,71,64.0],[118,-5,72,64.0],[118,-5,73,64.0],[118,-5,74,64.0],[118,-5,75,64.0],[118,-5,76,64.0],[118,-5,77,64.0],[118,-5,78,64.0],[118,-5,79,64.0],[118,-4,64,64.0],[118,-4,65,64.0],[118,-4,66,64.0],[118,-4,67,64.0],[118,-4,68,64.0],[118,-4,69,64.0],[118,-4,70,64.0],[118,-4,71,64.0],[118,-4,72,64.0],[118,-4,73,64.0],[118,-4,74,64.0],[118,-4,75,64.0],[118,-4,76,64.0],[118,-4,77,64.0],[118,-4,78,64.0],[118,-4,79,64.0],[118,-3,64,64.0],[118,-3,65,64.0],[118,-3,66,64.0],[118,-3,67,64.0],[118,-3,68,64.0],[118,-3,69,64.0],[118,-3,70,64.0],[118,-3,71,64.0],[118,-3,72,64.0],[118,-3,73,64.0],[118,-3,74,64.0],[118,-3,75,64.0],[118,-3,76,64.0],[118,-3,77,64.0],[118,-3,78,64.0],[118,-3,79,64.0],[118,-2,64,64.0],[118,-2,65,64.0],[118,-2,66,64.0],[118,-2,67,64.0],[118,-2,68,64.0],[118,-2,69,64.0],[118,-2,70,64.0],[118,-2,71,64.0],[118,-2,72,64.0],[118,-2,73,64.0],[118,-2,74,64.0],[118,-2,75,64.0],[118,-2,76,64.0],[118,-2,77,64.0],[118,-2,78,64.0],[118,-2,79,64.0],[118,-1,64,64.0],[118,-1,65,64.0],[118,-1,66,64.0],[118,-1,67,64.0],[118,-1,68,64.0],[118,-1,69,64.0],[118,-1,70,64.0],[118,-1,71,64.0],[118,-1,72,64.0],[118,-1,73,64.0],[118,-1,74,64.0],[118,-1,75,64.0],[118,-1,76,64.0],[118,-1,77,64.0],[118,-1,78,64.0],[118,-1,79,64.0],[118,0,64,64.0],[118,0,65,64.0],[118,0,66,64.0],[118,0,67,64.0],[118,0,68,64.0],[118,0,69,64.0],[118,0,70,64.0],[118,0,71,64.0],[118,0,72,64.0],[118,0,73,64.0],[118,0,74,64.0],[118,0,75,64.0],[118,0,76,64.0],[118,0,77,64.0],[118,0,78,64.0],[118,0,79,64.0],[118,1,64,64.0],[118,1,65,64.0],[118,1,66,64.0],[118,1,67,64.0],[118,1,68,64.0],[118,1,69,64.0],[118,1,70,64.0],[118,1,71,64.0],[118,1,72,64.0],[118,1,73,64.0],[118,1,74,64.0],[118,1,75,64.0],[118,1,76,64.0],[118,1,77,64.0],[118,1,78,64.0],[118,1,79,64.0],[118,2,64,64.0],[118,2,65,64.0],[118,2,66,64.0],[118,2,67,64.0],[118,2,68,64.0],[118,2,69,64.0],[118,2,70,64.0],[118,2,71,64.0],[118,2,72,64.0],[118,2,73,64.0],[118,2,74,64.0],[118,2,75,64.0],[118,2,76,64.0],[118,2,77,64.0],[118,2,78,64.0],[118,2,79,64.0],[118,3,64,64.0],[118,3,65,64.0],[118,3,66,64.0],[118,3,67,64.0],[118,3,68,64.0],[118,3,69,64.0],[118,3,70,64.0],[118,3,71,64.0],[118,3,72,64.0],[118,3,73,64.0],[118,3,74,64.0],[118,3,75,64.0],[118,3,76,64.0],[118,3,77,64.0],[118,3,78,64.0],[118,3,79,64.0],[118,4,64,64.0],[118,4,65,64.0],[118,4,66,64.0],[118,4,67,64.0],[118,4,68,64.0],[118,4,69,64.0],[118,4,70,64.0],[118,4,71,64.0],[118,4,72,64.0],[118,4,73,64.0],[118,4,74,64.0],[118,4,75,64.0],[118,4,76,64.0],[118,4,77,64.0],[118,4,78,64.0],[118,4,79,64.0],[118,5,64,64.0],[118,5,65,64.0],[118,5,66,64.0],[118,5,67,64.0],[118,5,68,64.0],[118,5,69,64.0],[118,5,70,64.0],[118,5,71,64.0],[118,5,72,64.0],[118,5,73,64.0],[118,5,74,64.0],[118,5,75,64.0],[118,5,76,64.0],[118,5,77,64.0],[118,5,78,64.0],[118,5,79,64.0],[118,6,64,64.0],[118,6,65,64.0],[118,6,66,64.0],[118,6,67,64.0],[118,6,68,64.0],[118,6,69,64.0],[118,6,70,64.0],[118,6,71,64.0],[118,6,72,64.0],[118,6,73,64.0],[118,6,74,64.0],[118,6,75,64.0],[118,6,76,64.0],[118,6,77,64.0],[118,6,78,64.0],[118,6,79,64.0],[118,7,64,64.0],[118,7,65,64.0],[118,7,66,64.0],[118,7,67,64.0],[118,7,68,64.0],[118,7,69,64.0],[118,7,70,64.0],[118,7,71,64.0],[118,7,72,64.0],[118,7,73,64.0],[118,7,74,64.0],[118,7,75,64.0],[118,7,76,64.0],[118,7,77,64.0],[118,7,78,64.0],[118,7,79,64.0],[118,8,64,64.0],[118,8,65,64.0],[118,8,66,64.0],[118,8,67,64.0],[118,8,68,64.0],[118,8,69,64.0],[118,8,70,64.0],[118,8,71,64.0],[118,8,72,64.0],[118,8,73,64.0],[118,8,74,64.0],[118,8,75,64.0],[118,8,76,64.0],[118,8,77,64.0],[118,8,78,64.0],[118,8,79,64.0],[118,9,64,64.0],[118,9,65,64.0],[118,9,66,64.0],[118,9,67,64.0],[118,9,68,64.0],[118,9,69,64.0],[118,9,70,64.0],[118,9,71,64.0],[118,9,72,64.0],[118,9,73,64.0],[118,9,74,64.0],[118,9,75,64.0],[118,9,76,64.0],[118,9,77,64.0],[118,9,78,64.0],[118,9,79,64.0],[118,10,64,64.0],[118,10,65,64.0],[118,10,66,64.0],[118,10,67,64.0],[118,10,68,64.0],[118,10,69,64.0],[118,10,70,64.0],[118,10,71,64.0],[118,10,72,64.0],[118,10,73,64.0],[118,10,74,64.0],[118,10,75,64.0],[118,10,76,64.0],[118,10,77,64.0],[118,10,78,64.0],[118,10,79,64.0],[118,11,64,64.0],[118,11,65,64.0],[118,11,66,64.0],[118,11,67,64.0],[118,11,68,64.0],[118,11,69,64.0],[118,11,70,64.0],[118,11,71,64.0],[118,11,72,64.0],[118,11,73,64.0],[118,11,74,64.0],[118,11,75,64.0],[118,11,76,64.0],[118,11,77,64.0],[118,11,78,64.0],[118,11,79,64.0],[118,12,64,64.0],[118,12,65,64.0],[118,12,66,64.0],[118,12,67,64.0],[118,12,68,64.0],[118,12,69,64.0],[118,12,70,64.0],[118,12,71,64.0],[118,12,72,64.0],[118,12,73,64.0],[118,12,74,64.0],[118,12,75,64.0],[118,12,76,64.0],[118,12,77,64.0],[118,12,78,64.0],[118,12,79,64.0],[118,13,64,64.0],[118,13,65,64.0],[118,13,66,64.0],[118,13,67,64.0],[118,13,68,64.0],[118,13,69,64.0],[118,13,70,64.0],[118,13,71,64.0],[118,13,72,64.0],[118,13,73,64.0],[118,13,74,64.0],[118,13,75,64.0],[118,13,76,64.0],[118,13,77,64.0],[118,13,78,64.0],[118,13,79,64.0],[118,14,64,64.0],[118,14,65,64.0],[118,14,66,64.0],[118,14,67,64.0],[118,14,68,64.0],[118,14,69,64.0],[118,14,70,64.0],[118,14,71,64.0],[118,14,72,64.0],[118,14,73,64.0],[118,14,74,64.0],[118,14,75,64.0],[118,14,76,64.0],[118,14,77,64.0],[118,14,78,64.0],[118,14,79,64.0],[118,15,64,64.0],[118,15,65,64.0],[118,15,66,64.0],[118,15,67,64.0],[118,15,68,64.0],[118,15,69,64.0],[118,15,70,64.0],[118,15,71,64.0],[118,15,72,64.0],[118,15,73,64.0],[118,15,74,64.0],[118,15,75,64.0],[118,15,76,64.0],[118,15,77,64.0],[118,15,78,64.0],[118,15,79,64.0],[118,16,64,64.0],[118,16,65,64.0],[118,16,66,64.0],[118,16,67,64.0],[118,16,68,64.0],[118,16,69,64.0],[118,16,70,64.0],[118,16,71,64.0],[118,16,72,64.0],[118,16,73,64.0],[118,16,74,64.0],[118,16,75,64.0],[118,16,76,64.0],[118,16,77,64.0],[118,16,78,64.0],[118,16,79,64.0],[118,17,64,64.0],[118,17,65,64.0],[118,17,66,64.0],[118,17,67,64.0],[118,17,68,64.0],[118,17,69,64.0],[118,17,70,64.0],[118,17,71,64.0],[118,17,72,64.0],[118,17,73,64.0],[118,17,74,64.0],[118,17,75,64.0],[118,17,76,64.0],[118,17,77,64.0],[118,17,78,64.0],[118,17,79,64.0],[118,18,64,64.0],[118,18,65,64.0],[118,18,66,64.0],[118,18,67,64.0],[118,18,68,64.0],[118,18,69,64.0],[118,18,70,64.0],[118,18,71,64.0],[118,18,72,64.0],[118,18,73,64.0],[118,18,74,64.0],[118,18,75,64.0],[118,18,76,64.0],[118,18,77,64.0],[118,18,78,64.0],[118,18,79,64.0],[118,19,64,64.0],[118,19,65,64.0],[118,19,66,64.0],[118,19,67,64.0],[118,19,68,64.0],[118,19,69,64.0],[118,19,70,64.0],[118,19,71,64.0],[118,19,72,64.0],[118,19,73,64.0],[118,19,74,64.0],[118,19,75,64.0],[118,19,76,64.0],[118,19,77,64.0],[118,19,78,64.0],[118,19,79,64.0],[118,20,64,64.0],[118,20,65,64.0],[118,20,66,64.0],[118,20,67,64.0],[118,20,68,64.0],[118,20,69,64.0],[118,20,70,64.0],[118,20,71,64.0],[118,20,72,64.0],[118,20,73,64.0],[118,20,74,64.0],[118,20,75,64.0],[118,20,76,64.0],[118,20,77,64.0],[118,20,78,64.0],[118,20,79,64.0],[118,21,64,64.0],[118,21,65,64.0],[118,21,66,64.0],[118,21,67,64.0],[118,21,68,64.0],[118,21,69,64.0],[118,21,70,64.0],[118,21,71,64.0],[118,21,72,64.0],[118,21,73,64.0],[118,21,74,64.0],[118,21,75,64.0],[118,21,76,64.0],[118,21,77,64.0],[118,21,78,64.0],[118,21,79,64.0],[118,22,64,64.0],[118,22,65,64.0],[118,22,66,64.0],[118,22,67,64.0],[118,22,68,64.0],[118,22,69,64.0],[118,22,70,64.0],[118,22,71,64.0],[118,22,72,64.0],[118,22,73,64.0],[118,22,74,64.0],[118,22,75,64.0],[118,22,76,64.0],[118,22,77,64.0],[118,22,78,64.0],[118,22,79,64.0],[118,23,64,64.0],[118,23,65,64.0],[118,23,66,64.0],[118,23,67,64.0],[118,23,68,64.0],[118,23,69,64.0],[118,23,70,64.0],[118,23,71,64.0],[118,23,72,64.0],[118,23,73,64.0],[118,23,74,64.0],[118,23,75,64.0],[118,23,76,64.0],[118,23,77,64.0],[118,23,78,64.0],[118,23,79,64.0],[118,24,64,64.0],[118,24,65,64.0],[118,24,66,64.0],[118,24,67,64.0],[118,24,68,64.0],[118,24,69,64.0],[118,24,70,64.0],[118,24,71,64.0],[118,24,72,64.0],[118,24,73,64.0],[118,24,74,64.0],[118,24,75,64.0],[118,24,76,64.0],[118,24,77,64.0],[118,24,78,64.0],[118,24,79,64.0],[118,25,64,64.0],[118,25,65,64.0],[118,25,66,64.0],[118,25,67,64.0],[118,25,68,64.0],[118,25,69,64.0],[118,25,70,64.0],[118,25,71,64.0],[118,25,72,64.0],[118,25,73,64.0],[118,25,74,64.0],[118,25,75,64.0],[118,25,76,64.0],[118,25,77,64.0],[118,25,78,64.0],[118,25,79,64.0],[118,26,64,64.0],[118,26,65,64.0],[118,26,66,64.0],[118,26,67,64.0],[118,26,68,64.0],[118,26,69,64.0],[118,26,70,64.0],[118,26,71,64.0],[118,26,72,64.0],[118,26,73,64.0],[118,26,74,64.0],[118,26,75,64.0],[118,26,76,64.0],[118,26,77,64.0],[118,26,78,64.0],[118,26,79,64.0],[118,27,64,64.0],[118,27,65,64.0],[118,27,66,64.0],[118,27,67,64.0],[118,27,68,64.0],[118,27,69,64.0],[118,27,70,64.0],[118,27,71,64.0],[118,27,72,64.0],[118,27,73,64.0],[118,27,74,64.0],[118,27,75,64.0],[118,27,76,64.0],[118,27,77,64.0],[118,27,78,64.0],[118,27,79,64.0],[118,28,64,64.0],[118,28,65,64.0],[118,28,66,64.0],[118,28,67,64.0],[118,28,68,64.0],[118,28,69,64.0],[118,28,70,64.0],[118,28,71,64.0],[118,28,72,64.0],[118,28,73,64.0],[118,28,74,64.0],[118,28,75,64.0],[118,28,76,64.0],[118,28,77,64.0],[118,28,78,64.0],[118,28,79,64.0],[118,29,64,64.0],[118,29,65,64.0],[118,29,66,64.0],[118,29,67,64.0],[118,29,68,64.0],[118,29,69,64.0],[118,29,70,64.0],[118,29,71,64.0],[118,29,72,64.0],[118,29,73,64.0],[118,29,74,64.0],[118,29,75,64.0],[118,29,76,64.0],[118,29,77,64.0],[118,29,78,64.0],[118,29,79,64.0],[118,30,64,64.0],[118,30,65,64.0],[118,30,66,64.0],[118,30,67,64.0],[118,30,68,64.0],[118,30,69,64.0],[118,30,70,64.0],[118,30,71,64.0],[118,30,72,64.0],[118,30,73,64.0],[118,30,74,64.0],[118,30,75,64.0],[118,30,76,64.0],[118,30,77,64.0],[118,30,78,64.0],[118,30,79,64.0],[118,31,64,64.0],[118,31,65,64.0],[118,31,66,64.0],[118,31,67,64.0],[118,31,68,64.0],[118,31,69,64.0],[118,31,70,64.0],[118,31,71,64.0],[118,31,72,64.0],[118,31,73,64.0],[118,31,74,64.0],[118,31,75,64.0],[118,31,76,64.0],[118,31,77,64.0],[118,31,78,64.0],[118,31,79,64.0],[118,32,64,64.0],[118,32,65,64.0],[118,32,66,64.0],[118,32,67,64.0],[118,32,68,64.0],[118,32,69,64.0],[118,32,70,64.0],[118,32,71,64.0],[118,32,72,64.0],[118,32,73,64.0],[118,32,74,64.0],[118,32,75,64.0],[118,32,76,64.0],[118,32,77,64.0],[118,32,78,64.0],[118,32,79,64.0],[118,33,64,64.0],[118,33,65,64.0],[118,33,66,64.0],[118,33,67,64.0],[118,33,68,64.0],[118,33,69,64.0],[118,33,70,64.0],[118,33,71,64.0],[118,33,72,64.0],[118,33,73,64.0],[118,33,74,64.0],[118,33,75,64.0],[118,33,76,64.0],[118,33,77,64.0],[118,33,78,64.0],[118,33,79,64.0],[118,34,64,64.0],[118,34,65,64.0],[118,34,66,64.0],[118,34,67,64.0],[118,34,68,64.0],[118,34,69,64.0],[118,34,70,64.0],[118,34,71,64.0],[118,34,72,64.0],[118,34,73,64.0],[118,34,74,64.0],[118,34,75,64.0],[118,34,76,64.0],[118,34,77,64.0],[118,34,78,64.0],[118,34,79,64.0],[118,35,64,64.0],[118,35,65,64.0],[118,35,66,64.0],[118,35,67,64.0],[118,35,68,64.0],[118,35,69,64.0],[118,35,70,64.0],[118,35,71,64.0],[118,35,72,64.0],[118,35,73,64.0],[118,35,74,64.0],[118,35,75,64.0],[118,35,76,64.0],[118,35,77,64.0],[118,35,78,64.0],[118,35,79,64.0],[118,36,64,64.0],[118,36,65,64.0],[118,36,66,64.0],[118,36,67,64.0],[118,36,68,64.0],[118,36,69,64.0],[118,36,70,64.0],[118,36,71,64.0],[118,36,72,64.0],[118,36,73,64.0],[118,36,74,64.0],[118,36,75,64.0],[118,36,76,64.0],[118,36,77,64.0],[118,36,78,64.0],[118,36,79,64.0],[118,37,64,64.0],[118,37,65,64.0],[118,37,66,64.0],[118,37,67,64.0],[118,37,68,64.0],[118,37,69,64.0],[118,37,70,64.0],[118,37,71,64.0],[118,37,72,64.0],[118,37,73,64.0],[118,37,74,64.0],[118,37,75,64.0],[118,37,76,64.0],[118,37,77,64.0],[118,37,78,64.0],[118,37,79,64.0],[118,38,64,64.0],[118,38,65,64.0],[118,38,66,64.0],[118,38,67,64.0],[118,38,68,64.0],[118,38,69,64.0],[118,38,70,64.0],[118,38,71,64.0],[118,38,72,64.0],[118,38,73,64.0],[118,38,74,64.0],[118,38,75,64.0],[118,38,76,64.0],[118,38,77,64.0],[118,38,78,64.0],[118,38,79,64.0],[118,39,64,64.0],[118,39,65,64.0],[118,39,66,64.0],[118,39,67,64.0],[118,39,68,64.0],[118,39,69,64.0],[118,39,70,64.0],[118,39,71,64.0],[118,39,72,64.0],[118,39,73,64.0],[118,39,74,64.0],[118,39,75,64.0],[118,39,76,64.0],[118,39,77,64.0],[118,39,78,64.0],[118,39,79,64.0],[118,40,64,64.0],[118,40,65,64.0],[118,40,66,64.0],[118,40,67,64.0],[118,40,68,64.0],[118,40,69,64.0],[118,40,70,64.0],[118,40,71,64.0],[118,40,72,64.0],[118,40,73,64.0],[118,40,74,64.0],[118,40,75,64.0],[118,40,76,64.0],[118,40,77,64.0],[118,40,78,64.0],[118,40,79,64.0],[118,41,64,64.0],[118,41,65,64.0],[118,41,66,64.0],[118,41,67,64.0],[118,41,68,64.0],[118,41,69,64.0],[118,41,70,64.0],[118,41,71,64.0],[118,41,72,64.0],[118,41,73,64.0],[118,41,74,64.0],[118,41,75,64.0],[118,41,76,64.0],[118,41,77,64.0],[118,41,78,64.0],[118,41,79,64.0],[118,42,64,64.0],[118,42,65,64.0],[118,42,66,64.0],[118,42,67,64.0],[118,42,68,64.0],[118,42,69,64.0],[118,42,70,64.0],[118,42,71,64.0],[118,42,72,64.0],[118,42,73,64.0],[118,42,74,64.0],[118,42,75,64.0],[118,42,76,64.0],[118,42,77,64.0],[118,42,78,64.0],[118,42,79,64.0],[118,43,64,64.0],[118,43,65,64.0],[118,43,66,64.0],[118,43,67,64.0],[118,43,68,64.0],[118,43,69,64.0],[118,43,70,64.0],[118,43,71,64.0],[118,43,72,64.0],[118,43,73,64.0],[118,43,74,64.0],[118,43,75,64.0],[118,43,76,64.0],[118,43,77,64.0],[118,43,78,64.0],[118,43,79,64.0],[118,44,64,64.0],[118,44,65,64.0],[118,44,66,64.0],[118,44,67,64.0],[118,44,68,64.0],[118,44,69,64.0],[118,44,70,64.0],[118,44,71,64.0],[118,44,72,64.0],[118,44,73,64.0],[118,44,74,64.0],[118,44,75,64.0],[118,44,76,64.0],[118,44,77,64.0],[118,44,78,64.0],[118,44,79,64.0],[118,45,64,64.0],[118,45,65,64.0],[118,45,66,64.0],[118,45,67,64.0],[118,45,68,64.0],[118,45,69,64.0],[118,45,70,64.0],[118,45,71,64.0],[118,45,72,64.0],[118,45,73,64.0],[118,45,74,64.0],[118,45,75,64.0],[118,45,76,64.0],[118,45,77,64.0],[118,45,78,64.0],[118,45,79,64.0],[118,46,64,64.0],[118,46,65,64.0],[118,46,66,64.0],[118,46,67,64.0],[118,46,68,64.0],[118,46,69,64.0],[118,46,70,64.0],[118,46,71,64.0],[118,46,72,64.0],[118,46,73,64.0],[118,46,74,64.0],[118,46,75,64.0],[118,46,76,64.0],[118,46,77,64.0],[118,46,78,64.0],[118,46,79,64.0],[118,47,64,64.0],[118,47,65,64.0],[118,47,66,64.0],[118,47,67,64.0],[118,47,68,64.0],[118,47,69,64.0],[118,47,70,64.0],[118,47,71,64.0],[118,47,72,64.0],[118,47,73,64.0],[118,47,74,64.0],[118,47,75,64.0],[118,47,76,64.0],[118,47,77,64.0],[118,47,78,64.0],[118,47,79,64.0],[118,48,64,64.0],[118,48,65,64.0],[118,48,66,64.0],[118,48,67,64.0],[118,48,68,64.0],[118,48,69,64.0],[118,48,70,64.0],[118,48,71,64.0],[118,48,72,64.0],[118,48,73,64.0],[118,48,74,64.0],[118,48,75,64.0],[118,48,76,64.0],[118,48,77,64.0],[118,48,78,64.0],[118,48,79,64.0],[118,49,64,64.0],[118,49,65,64.0],[118,49,66,64.0],[118,49,67,64.0],[118,49,68,64.0],[118,49,69,64.0],[118,49,70,64.0],[118,49,71,64.0],[118,49,72,64.0],[118,49,73,64.0],[118,49,74,64.0],[118,49,75,64.0],[118,49,76,64.0],[118,49,77,64.0],[118,49,78,64.0],[118,49,79,64.0],[118,50,64,64.0],[118,50,65,64.0],[118,50,66,64.0],[118,50,67,64.0],[118,50,68,64.0],[118,50,69,64.0],[118,50,70,64.0],[118,50,71,64.0],[118,50,72,64.0],[118,50,73,64.0],[118,50,74,64.0],[118,50,75,64.0],[118,50,76,64.0],[118,50,77,64.0],[118,50,78,64.0],[118,50,79,64.0],[118,51,64,64.0],[118,51,65,64.0],[118,51,66,64.0],[118,51,67,64.0],[118,51,68,64.0],[118,51,69,64.0],[118,51,70,64.0],[118,51,71,64.0],[118,51,72,64.0],[118,51,73,64.0],[118,51,74,64.0],[118,51,75,64.0],[118,51,76,64.0],[118,51,77,64.0],[118,51,78,64.0],[118,51,79,64.0],[118,52,64,64.0],[118,52,65,64.0],[118,52,66,64.0],[118,52,67,64.0],[118,52,68,64.0],[118,52,69,64.0],[118,52,70,64.0],[118,52,71,64.0],[118,52,72,64.0],[118,52,73,64.0],[118,52,74,64.0],[118,52,75,64.0],[118,52,76,64.0],[118,52,77,64.0],[118,52,78,64.0],[118,52,79,64.0],[118,53,64,64.0],[118,53,65,64.0],[118,53,66,64.0],[118,53,67,64.0],[118,53,68,64.0],[118,53,69,64.0],[118,53,70,64.0],[118,53,71,64.0],[118,53,72,64.0],[118,53,73,64.0],[118,53,74,64.0],[118,53,75,64.0],[118,53,76,64.0],[118,53,77,64.0],[118,53,78,64.0],[118,53,79,64.0],[118,54,64,64.0],[118,54,65,64.0],[118,54,66,64.0],[118,54,67,64.0],[118,54,68,64.0],[118,54,69,64.0],[118,54,70,64.0],[118,54,71,64.0],[118,54,72,64.0],[118,54,73,64.0],[118,54,74,64.0],[118,54,75,64.0],[118,54,76,64.0],[118,54,77,64.0],[118,54,78,64.0],[118,54,79,64.0],[118,55,64,64.0],[118,55,65,64.0],[118,55,66,64.0],[118,55,67,64.0],[118,55,68,64.0],[118,55,69,64.0],[118,55,70,64.0],[118,55,71,64.0],[118,55,72,64.0],[118,55,73,64.0],[118,55,74,64.0],[118,55,75,64.0],[118,55,76,64.0],[118,55,77,64.0],[118,55,78,64.0],[118,55,79,64.0],[118,56,64,64.0],[118,56,65,64.0],[118,56,66,64.0],[118,56,67,64.0],[118,56,68,64.0],[118,56,69,64.0],[118,56,70,64.0],[118,56,71,64.0],[118,56,72,64.0],[118,56,73,64.0],[118,56,74,64.0],[118,56,75,64.0],[118,56,76,64.0],[118,56,77,64.0],[118,56,78,64.0],[118,56,79,64.0],[118,57,64,64.0],[118,57,65,64.0],[118,57,66,64.0],[118,57,67,64.0],[118,57,68,64.0],[118,57,69,64.0],[118,57,70,64.0],[118,57,71,64.0],[118,57,72,64.0],[118,57,73,64.0],[118,57,74,64.0],[118,57,75,64.0],[118,57,76,64.0],[118,57,77,64.0],[118,57,78,64.0],[118,57,79,64.0],[118,58,64,64.0],[118,58,65,64.0],[118,58,66,64.0],[118,58,67,64.0],[118,58,68,64.0],[118,58,69,64.0],[118,58,70,64.0],[118,58,71,64.0],[118,58,72,64.0],[118,58,73,64.0],[118,58,74,64.0],[118,58,75,64.0],[118,58,76,64.0],[118,58,77,64.0],[118,58,78,64.0],[118,58,79,64.0],[118,59,64,64.0],[118,59,65,64.0],[118,59,66,64.0],[118,59,67,64.0],[118,59,68,64.0],[118,59,69,64.0],[118,59,70,64.0],[118,59,71,64.0],[118,59,72,64.0],[118,59,73,64.0],[118,59,74,64.0],[118,59,75,64.0],[118,59,76,64.0],[118,59,77,64.0],[118,59,78,64.0],[118,59,79,64.0],[118,60,64,64.0],[118,60,65,64.0],[118,60,66,64.0],[118,60,67,64.0],[118,60,68,64.0],[118,60,69,64.0],[118,60,70,64.0],[118,60,71,64.0],[118,60,72,64.0],[118,60,73,64.0],[118,60,74,64.0],[118,60,75,64.0],[118,60,76,64.0],[118,60,77,64.0],[118,60,78,64.0],[118,60,79,64.0],[118,61,64,64.0],[118,61,65,64.0],[118,61,66,64.0],[118,61,67,64.0],[118,61,68,64.0],[118,61,69,64.0],[118,61,70,64.0],[118,61,71,64.0],[118,61,72,64.0],[118,61,73,64.0],[118,61,74,64.0],[118,61,75,64.0],[118,61,76,64.0],[118,61,77,64.0],[118,61,78,64.0],[118,61,79,64.0],[118,62,64,64.0],[118,62,65,64.0],[118,62,66,64.0],[118,62,67,64.0],[118,62,68,64.0],[118,62,69,64.0],[118,62,70,64.0],[118,62,71,64.0],[118,62,72,64.0],[118,62,73,64.0],[118,62,74,64.0],[118,62,75,64.0],[118,62,76,64.0],[118,62,77,64.0],[118,62,78,64.0],[118,62,79,64.0],[118,63,64,64.0],[118,63,65,64.0],[118,63,66,64.0],[118,63,67,64.0],[118,63,68,64.0],[118,63,69,64.0],[118,63,70,64.0],[118,63,71,64.0],[118,63,72,64.0],[118,63,73,64.0],[118,63,74,64.0],[118,63,75,64.0],[118,63,76,64.0],[118,63,77,64.0],[118,63,78,64.0],[118,63,79,64.0],[118,64,64,64.0],[118,64,65,64.0],[118,64,66,64.0],[118,64,67,64.0],[118,64,68,64.0],[118,64,69,64.0],[118,64,70,64.0],[118,64,71,64.0],[118,64,72,64.0],[118,64,73,64.0],[118,64,74,64.0],[118,64,75,64.0],[118,64,76,64.0],[118,64,77,64.0],[118,64,78,64.0],[118,64,79,64.0],[118,65,64,64.0],[118,65,65,64.0],[118,65,66,64.0],[118,65,67,64.0],[118,65,68,64.0],[118,65,69,64.0],[118,65,70,64.0],[118,65,71,64.0],[118,65,72,64.0],[118,65,73,64.0],[118,65,74,64.0],[118,65,75,64.0],[118,65,76,64.0],[118,65,77,64.0],[118,65,78,64.0],[118,65,79,64.0],[118,66,64,64.0],[118,66,65,64.0],[118,66,66,64.0],[118,66,67,64.0],[118,66,68,64.0],[118,66,69,64.0],[118,66,70,64.0],[118,66,71,64.0],[118,66,72,64.0],[118,66,73,64.0],[118,66,74,64.0],[118,66,75,64.0],[118,66,76,64.0],[118,66,77,64.0],[118,66,78,64.0],[118,66,79,64.0],[118,67,64,64.0],[118,67,65,64.0],[118,67,66,64.0],[118,67,67,64.0],[118,67,68,64.0],[118,67,69,64.0],[118,67,70,64.0],[118,67,71,64.0],[118,67,72,64.0],[118,67,73,64.0],[118,67,74,64.0],[118,67,75,64.0],[118,67,76,64.0],[118,67,77,64.0],[118,67,78,64.0],[118,67,79,64.0],[118,68,64,64.0],[118,68,65,64.0],[118,68,66,64.0],[118,68,67,64.0],[118,68,68,64.0],[118,68,69,64.0],[118,68,70,64.0],[118,68,71,64.0],[118,68,72,64.0],[118,68,73,64.0],[118,68,74,64.0],[118,68,75,64.0],[118,68,76,64.0],[118,68,77,64.0],[118,68,78,64.0],[118,68,79,64.0],[118,69,64,64.0],[118,69,65,64.0],[118,69,66,64.0],[118,69,67,64.0],[118,69,68,64.0],[118,69,69,64.0],[118,69,70,64.0],[118,69,71,64.0],[118,69,72,64.0],[118,69,73,64.0],[118,69,74,64.0],[118,69,75,64.0],[118,69,76,64.0],[118,69,77,64.0],[118,69,78,64.0],[118,69,79,64.0],[118,70,64,64.0],[118,70,65,64.0],[118,70,66,64.0],[118,70,67,64.0],[118,70,68,64.0],[118,70,69,64.0],[118,70,70,64.0],[118,70,71,64.0],[118,70,72,64.0],[118,70,73,64.0],[118,70,74,64.0],[118,70,75,64.0],[118,70,76,64.0],[118,70,77,64.0],[118,70,78,64.0],[118,70,79,64.0],[118,71,64,64.0],[118,71,65,64.0],[118,71,66,64.0],[118,71,67,64.0],[118,71,68,64.0],[118,71,69,64.0],[118,71,70,64.0],[118,71,71,64.0],[118,71,72,64.0],[118,71,73,64.0],[118,71,74,64.0],[118,71,75,64.0],[118,71,76,64.0],[118,71,77,64.0],[118,71,78,64.0],[118,71,79,64.0],[118,72,64,64.0],[118,72,65,64.0],[118,72,66,64.0],[118,72,67,64.0],[118,72,68,64.0],[118,72,69,64.0],[118,72,70,64.0],[118,72,71,64.0],[118,72,72,64.0],[118,72,73,64.0],[118,72,74,64.0],[118,72,75,64.0],[118,72,76,64.0],[118,72,77,64.0],[118,72,78,64.0],[118,72,79,64.0],[118,73,64,64.0],[118,73,65,64.0],[118,73,66,64.0],[118,73,67,64.0],[118,73,68,64.0],[118,73,69,64.0],[118,73,70,64.0],[118,73,71,64.0],[118,73,72,64.0],[118,73,73,64.0],[118,73,74,64.0],[118,73,75,64.0],[118,73,76,64.0],[118,73,77,64.0],[118,73,78,64.0],[118,73,79,64.0],[118,74,64,64.0],[118,74,65,64.0],[118,74,66,64.0],[118,74,67,64.0],[118,74,68,64.0],[118,74,69,64.0],[118,74,70,64.0],[118,74,71,64.0],[118,74,72,64.0],[118,74,73,64.0],[118,74,74,64.0],[118,74,75,64.0],[118,74,76,64.0],[118,74,77,64.0],[118,74,78,64.0],[118,74,79,64.0],[118,75,64,64.0],[118,75,65,64.0],[118,75,66,64.0],[118,75,67,64.0],[118,75,68,64.0],[118,75,69,64.0],[118,75,70,64.0],[118,75,71,64.0],[118,75,72,64.0],[118,75,73,64.0],[118,75,74,64.0],[118,75,75,64.0],[118,75,76,64.0],[118,75,77,64.0],[118,75,78,64.0],[118,75,79,64.0],[118,76,64,64.0],[118,76,65,64.0],[118,76,66,64.0],[118,76,67,64.0],[118,76,68,64.0],[118,76,69,64.0],[118,76,70,64.0],[118,76,71,64.0],[118,76,72,64.0],[118,76,73,64.0],[118,76,74,64.0],[118,76,75,64.0],[118,76,76,64.0],[118,76,77,64.0],[118,76,78,64.0],[118,76,79,64.0],[118,77,64,64.0],[118,77,65,64.0],[118,77,66,64.0],[118,77,67,64.0],[118,77,68,64.0],[118,77,69,64.0],[118,77,70,64.0],[118,77,71,64.0],[118,77,72,64.0],[118,77,73,64.0],[118,77,74,64.0],[118,77,75,64.0],[118,77,76,64.0],[118,77,77,64.0],[118,77,78,64.0],[118,77,79,64.0],[118,78,64,64.0],[118,78,65,64.0],[118,78,66,64.0],[118,78,67,64.0],[118,78,68,64.0],[118,78,69,64.0],[118,78,70,64.0],[118,78,71,64.0],[118,78,72,64.0],[118,78,73,64.0],[118,78,74,64.0],[118,78,75,64.0],[118,78,76,64.0],[118,78,77,64.0],[118,78,78,64.0],[118,78,79,64.0],[118,79,64,64.0],[118,79,65,64.0],[118,79,66,64.0],[118,79,67,64.0],[118,79,68,64.0],[118,79,69,64.0],[118,79,70,64.0],[118,79,71,64.0],[118,79,72,64.0],[118,79,73,64.0],[118,79,74,64.0],[118,79,75,64.0],[118,79,76,64.0],[118,79,77,64.0],[118,79,78,64.0],[118,79,79,64.0],[118,80,64,64.0],[118,80,65,64.0],[118,80,66,64.0],[118,80,67,64.0],[118,80,68,64.0],[118,80,69,64.0],[118,80,70,64.0],[118,80,71,64.0],[118,80,72,64.0],[118,80,73,64.0],[118,80,74,64.0],[118,80,75,64.0],[118,80,76,64.0],[118,80,77,64.0],[118,80,78,64.0],[118,80,79,64.0],[118,81,64,64.0],[118,81,65,64.0],[118,81,66,64.0],[118,81,67,64.0],[118,81,68,64.0],[118,81,69,64.0],[118,81,70,64.0],[118,81,71,64.0],[118,81,72,64.0],[118,81,73,64.0],[118,81,74,64.0],[118,81,75,64.0],[118,81,76,64.0],[118,81,77,64.0],[118,81,78,64.0],[118,81,79,64.0],[118,82,64,64.0],[118,82,65,64.0],[118,82,66,64.0],[118,82,67,64.0],[118,82,68,64.0],[118,82,69,64.0],[118,82,70,64.0],[118,82,71,64.0],[118,82,72,64.0],[118,82,73,64.0],[118,82,74,64.0],[118,82,75,64.0],[118,82,76,64.0],[118,82,77,64.0],[118,82,78,64.0],[118,82,79,64.0],[118,83,64,64.0],[118,83,65,64.0],[118,83,66,64.0],[118,83,67,64.0],[118,83,68,64.0],[118,83,69,64.0],[118,83,70,64.0],[118,83,71,64.0],[118,83,72,64.0],[118,83,73,64.0],[118,83,74,64.0],[118,83,75,64.0],[118,83,76,64.0],[118,83,77,64.0],[118,83,78,64.0],[118,83,79,64.0],[118,84,64,64.0],[118,84,65,64.0],[118,84,66,64.0],[118,84,67,64.0],[118,84,68,64.0],[118,84,69,64.0],[118,84,70,64.0],[118,84,71,64.0],[118,84,72,64.0],[118,84,73,64.0],[118,84,74,64.0],[118,84,75,64.0],[118,84,76,64.0],[118,84,77,64.0],[118,84,78,64.0],[118,84,79,64.0],[118,85,64,64.0],[118,85,65,64.0],[118,85,66,64.0],[118,85,67,64.0],[118,85,68,64.0],[118,85,69,64.0],[118,85,70,64.0],[118,85,71,64.0],[118,85,72,64.0],[118,85,73,64.0],[118,85,74,64.0],[118,85,75,64.0],[118,85,76,64.0],[118,85,77,64.0],[118,85,78,64.0],[118,85,79,64.0],[118,86,64,64.0],[118,86,65,64.0],[118,86,66,64.0],[118,86,67,64.0],[118,86,68,64.0],[118,86,69,64.0],[118,86,70,64.0],[118,86,71,64.0],[118,86,72,64.0],[118,86,73,64.0],[118,86,74,64.0],[118,86,75,64.0],[118,86,76,64.0],[118,86,77,64.0],[118,86,78,64.0],[118,86,79,64.0],[118,87,64,64.0],[118,87,65,64.0],[118,87,66,64.0],[118,87,67,64.0],[118,87,68,64.0],[118,87,69,64.0],[118,87,70,64.0],[118,87,71,64.0],[118,87,72,64.0],[118,87,73,64.0],[118,87,74,64.0],[118,87,75,64.0],[118,87,76,64.0],[118,87,77,64.0],[118,87,78,64.0],[118,87,79,64.0],[118,88,64,64.0],[118,88,65,64.0],[118,88,66,64.0],[118,88,67,64.0],[118,88,68,64.0],[118,88,69,64.0],[118,88,70,64.0],[118,88,71,64.0],[118,88,72,64.0],[118,88,73,64.0],[118,88,74,64.0],[118,88,75,64.0],[118,88,76,64.0],[118,88,77,64.0],[118,88,78,64.0],[118,88,79,64.0],[118,89,64,64.0],[118,89,65,64.0],[118,89,66,64.0],[118,89,67,64.0],[118,89,68,64.0],[118,89,69,64.0],[118,89,70,64.0],[118,89,71,64.0],[118,89,72,64.0],[118,89,73,64.0],[118,89,74,64.0],[118,89,75,64.0],[118,89,76,64.0],[118,89,77,64.0],[118,89,78,64.0],[118,89,79,64.0],[118,90,64,64.0],[118,90,65,64.0],[118,90,66,64.0],[118,90,67,64.0],[118,90,68,64.0],[118,90,69,64.0],[118,90,70,64.0],[118,90,71,64.0],[118,90,72,64.0],[118,90,73,64.0],[118,90,74,64.0],[118,90,75,64.0],[118,90,76,64.0],[118,90,77,64.0],[118,90,78,64.0],[118,90,79,64.0],[118,91,64,64.0],[118,91,65,64.0],[118,91,66,64.0],[118,91,67,64.0],[118,91,68,64.0],[118,91,69,64.0],[118,91,70,64.0],[118,91,71,64.0],[118,91,72,64.0],[118,91,73,64.0],[118,91,74,64.0],[118,91,75,64.0],[118,91,76,64.0],[118,91,77,64.0],[118,91,78,64.0],[118,91,79,64.0],[118,92,64,64.0],[118,92,65,64.0],[118,92,66,64.0],[118,92,67,64.0],[118,92,68,64.0],[118,92,69,64.0],[118,92,70,64.0],[118,92,71,64.0],[118,92,72,64.0],[118,92,73,64.0],[118,92,74,64.0],[118,92,75,64.0],[118,92,76,64.0],[118,92,77,64.0],[118,92,78,64.0],[118,92,79,64.0],[118,93,64,64.0],[118,93,65,64.0],[118,93,66,64.0],[118,93,67,64.0],[118,93,68,64.0],[118,93,69,64.0],[118,93,70,64.0],[118,93,71,64.0],[118,93,72,64.0],[118,93,73,64.0],[118,93,74,64.0],[118,93,75,64.0],[118,93,76,64.0],[118,93,77,64.0],[118,93,78,64.0],[118,93,79,64.0],[118,94,64,64.0],[118,94,65,64.0],[118,94,66,64.0],[118,94,67,64.0],[118,94,68,64.0],[118,94,69,64.0],[118,94,70,64.0],[118,94,71,64.0],[118,94,72,64.0],[118,94,73,64.0],[118,94,74,64.0],[118,94,75,64.0],[118,94,76,64.0],[118,94,77,64.0],[118,94,78,64.0],[118,94,79,64.0],[118,95,64,64.0],[118,95,65,64.0],[118,95,66,64.0],[118,95,67,64.0],[118,95,68,64.0],[118,95,69,64.0],[118,95,70,64.0],[118,95,71,64.0],[118,95,72,64.0],[118,95,73,64.0],[118,95,74,64.0],[118,95,75,64.0],[118,95,76,64.0],[118,95,77,64.0],[118,95,78,64.0],[118,95,79,64.0],[118,96,64,64.0],[118,96,65,64.0],[118,96,66,64.0],[118,96,67,64.0],[118,96,68,64.0],[118,96,69,64.0],[118,96,70,64.0],[118,96,71,64.0],[118,96,72,64.0],[118,96,73,64.0],[118,96,74,64.0],[118,96,75,64.0],[118,96,76,64.0],[118,96,77,64.0],[118,96,78,64.0],[118,96,79,64.0],[118,97,64,64.0],[118,97,65,64.0],[118,97,66,64.0],[118,97,67,64.0],[118,97,68,64.0],[118,97,69,64.0],[118,97,70,64.0],[118,97,71,64.0],[118,97,72,64.0],[118,97,73,64.0],[118,97,74,64.0],[118,97,75,64.0],[118,97,76,64.0],[118,97,77,64.0],[118,97,78,64.0],[118,97,79,64.0],[118,98,64,64.0],[118,98,65,64.0],[118,98,66,64.0],[118,98,67,64.0],[118,98,68,64.0],[118,98,69,64.0],[118,98,70,64.0],[118,98,71,64.0],[118,98,72,64.0],[118,98,73,64.0],[118,98,74,64.0],[118,98,75,64.0],[118,98,76,64.0],[118,98,77,64.0],[118,98,78,64.0],[118,98,79,64.0],[118,99,64,64.0],[118,99,65,64.0],[118,99,66,64.0],[118,99,67,64.0],[118,99,68,64.0],[118,99,69,64.0],[118,99,70,64.0],[118,99,71,64.0],[118,99,72,64.0],[118,99,73,64.0],[118,99,74,64.0],[118,99,75,64.0],[118,99,76,64.0],[118,99,77,64.0],[118,99,78,64.0],[118,99,79,64.0],[118,100,64,64.0],[118,100,65,64.0],[118,100,66,64.0],[118,100,67,64.0],[118,100,68,64.0],[118,100,69,64.0],[118,100,70,64.0],[118,100,71,64.0],[118,100,72,64.0],[118,100,73,64.0],[118,100,74,64.0],[118,100,75,64.0],[118,100,76,64.0],[118,100,77,64.0],[118,100,78,64.0],[118,100,79,64.0],[118,101,64,64.0],[118,101,65,64.0],[118,101,66,64.0],[118,101,67,64.0],[118,101,68,64.0],[118,101,69,64.0],[118,101,70,64.0],[118,101,71,64.0],[118,101,72,64.0],[118,101,73,64.0],[118,101,74,64.0],[118,101,75,64.0],[118,101,76,64.0],[118,101,77,64.0],[118,101,78,64.0],[118,101,79,64.0],[118,102,64,64.0],[118,102,65,64.0],[118,102,66,64.0],[118,102,67,64.0],[118,102,68,64.0],[118,102,69,64.0],[118,102,70,64.0],[118,102,71,64.0],[118,102,72,64.0],[118,102,73,64.0],[118,102,74,64.0],[118,102,75,64.0],[118,102,76,64.0],[118,102,77,64.0],[118,102,78,64.0],[118,102,79,64.0],[118,103,64,64.0],[118,103,65,64.0],[118,103,66,64.0],[118,103,67,64.0],[118,103,68,64.0],[118,103,69,64.0],[118,103,70,64.0],[118,103,71,64.0],[118,103,72,64.0],[118,103,73,64.0],[118,103,74,64.0],[118,103,75,64.0],[118,103,76,64.0],[118,103,77,64.0],[118,103,78,64.0],[118,103,79,64.0],[118,104,64,64.0],[118,104,65,64.0],[118,104,66,64.0],[118,104,67,64.0],[118,104,68,64.0],[118,104,69,64.0],[118,104,70,64.0],[118,104,71,64.0],[118,104,72,64.0],[118,104,73,64.0],[118,104,74,64.0],[118,104,75,64.0],[118,104,76,64.0],[118,104,77,64.0],[118,104,78,64.0],[118,104,79,64.0],[118,105,64,64.0],[118,105,65,64.0],[118,105,66,64.0],[118,105,67,64.0],[118,105,68,64.0],[118,105,69,64.0],[118,105,70,64.0],[118,105,71,64.0],[118,105,72,64.0],[118,105,73,64.0],[118,105,74,64.0],[118,105,75,64.0],[118,105,76,64.0],[118,105,77,64.0],[118,105,78,64.0],[118,105,79,64.0],[118,106,64,64.0],[118,106,65,64.0],[118,106,66,64.0],[118,106,67,64.0],[118,106,68,64.0],[118,106,69,64.0],[118,106,70,64.0],[118,106,71,64.0],[118,106,72,64.0],[118,106,73,64.0],[118,106,74,64.0],[118,106,75,64.0],[118,106,76,64.0],[118,106,77,64.0],[118,106,78,64.0],[118,106,79,64.0],[118,107,64,64.0],[118,107,65,64.0],[118,107,66,64.0],[118,107,67,64.0],[118,107,68,64.0],[118,107,69,64.0],[118,107,70,64.0],[118,107,71,64.0],[118,107,72,64.0],[118,107,73,64.0],[118,107,74,64.0],[118,107,75,64.0],[118,107,76,64.0],[118,107,77,64.0],[118,107,78,64.0],[118,107,79,64.0],[118,108,64,64.0],[118,108,65,64.0],[118,108,66,64.0],[118,108,67,64.0],[118,108,68,64.0],[118,108,69,64.0],[118,108,70,64.0],[118,108,71,64.0],[118,108,72,64.0],[118,108,73,64.0],[118,108,74,64.0],[118,108,75,64.0],[118,108,76,64.0],[118,108,77,64.0],[118,108,78,64.0],[118,108,79,64.0],[118,109,64,64.0],[118,109,65,64.0],[118,109,66,64.0],[118,109,67,64.0],[118,109,68,64.0],[118,109,69,64.0],[118,109,70,64.0],[118,109,71,64.0],[118,109,72,64.0],[118,109,73,64.0],[118,109,74,64.0],[118,109,75,64.0],[118,109,76,64.0],[118,109,77,64.0],[118,109,78,64.0],[118,109,79,64.0],[118,110,64,64.0],[118,110,65,64.0],[118,110,66,64.0],[118,110,67,64.0],[118,110,68,64.0],[118,110,69,64.0],[118,110,70,64.0],[118,110,71,64.0],[118,110,72,64.0],[118,110,73,64.0],[118,110,74,64.0],[118,110,75,64.0],[118,110,76,64.0],[118,110,77,64.0],[118,110,78,64.0],[118,110,79,64.0],[118,111,64,64.0],[118,111,65,64.0],[118,111,66,64.0],[118,111,67,64.0],[118,111,68,64.0],[118,111,69,64.0],[118,111,70,64.0],[118,111,71,64.0],[118,111,72,64.0],[118,111,73,64.0],[118,111,74,64.0],[118,111,75,64.0],[118,111,76,64.0],[118,111,77,64.0],[118,111,78,64.0],[118,111,79,64.0],[118,112,64,64.0],[118,112,65,64.0],[118,112,66,64.0],[118,112,67,64.0],[118,112,68,64.0],[118,112,69,64.0],[118,112,70,64.0],[118,112,71,64.0],[118,112,72,64.0],[118,112,73,64.0],[118,112,74,64.0],[118,112,75,64.0],[118,112,76,64.0],[118,112,77,64.0],[118,112,78,64.0],[118,112,79,64.0],[118,113,64,64.0],[118,113,65,64.0],[118,113,66,64.0],[118,113,67,64.0],[118,113,68,64.0],[118,113,69,64.0],[118,113,70,64.0],[118,113,71,64.0],[118,113,72,64.0],[118,113,73,64.0],[118,113,74,64.0],[118,113,75,64.0],[118,113,76,64.0],[118,113,77,64.0],[118,113,78,64.0],[118,113,79,64.0],[118,114,64,64.0],[118,114,65,64.0],[118,114,66,64.0],[118,114,67,64.0],[118,114,68,64.0],[118,114,69,64.0],[118,114,70,64.0],[118,114,71,64.0],[118,114,72,64.0],[118,114,73,64.0],[118,114,74,64.0],[118,114,75,64.0],[118,114,76,64.0],[118,114,77,64.0],[118,114,78,64.0],[118,114,79,64.0],[118,115,64,64.0],[118,115,65,64.0],[118,115,66,64.0],[118,115,67,64.0],[118,115,68,64.0],[118,115,69,64.0],[118,115,70,64.0],[118,115,71,64.0],[118,115,72,64.0],[118,115,73,64.0],[118,115,74,64.0],[118,115,75,64.0],[118,115,76,64.0],[118,115,77,64.0],[118,115,78,64.0],[118,115,79,64.0],[118,116,64,64.0],[118,116,65,64.0],[118,116,66,64.0],[118,116,67,64.0],[118,116,68,64.0],[118,116,69,64.0],[118,116,70,64.0],[118,116,71,64.0],[118,116,72,64.0],[118,116,73,64.0],[118,116,74,64.0],[118,116,75,64.0],[118,116,76,64.0],[118,116,77,64.0],[118,116,78,64.0],[118,116,79,64.0],[118,117,64,64.0],[118,117,65,64.0],[118,117,66,64.0],[118,117,67,64.0],[118,117,68,64.0],[118,117,69,64.0],[118,117,70,64.0],[118,117,71,64.0],[118,117,72,64.0],[118,117,73,64.0],[118,117,74,64.0],[118,117,75,64.0],[118,117,76,64.0],[118,117,77,64.0],[118,117,78,64.0],[118,117,79,64.0],[118,118,64,64.0],[118,118,65,64.0],[118,118,66,64.0],[118,118,67,64.0],[118,118,68,64.0],[118,118,69,64.0],[118,118,70,64.0],[118,118,71,64.0],[118,118,72,64.0],[118,118,73,64.0],[118,118,74,64.0],[118,118,75,64.0],[118,118,76,64.0],[118,118,77,64.0],[118,118,78,64.0],[118,118,79,64.0],[118,119,64,64.0],[118,119,65,64.0],[118,119,66,64.0],[118,119,67,64.0],[118,119,68,64.0],[118,119,69,64.0],[118,119,70,64.0],[118,119,71,64.0],[118,119,72,64.0],[118,119,73,64.0],[118,119,74,64.0],[118,119,75,64.0],[118,119,76,64.0],[118,119,77,64.0],[118,119,78,64.0],[118,119,79,64.0],[118,120,64,64.0],[118,120,65,64.0],[118,120,66,64.0],[118,120,67,64.0],[118,120,68,64.0],[118,120,69,64.0],[118,120,70,64.0],[118,120,71,64.0],[118,120,72,64.0],[118,120,73,64.0],[118,120,74,64.0],[118,120,75,64.0],[118,120,76,64.0],[118,120,77,64.0],[118,120,78,64.0],[118,120,79,64.0],[118,121,64,64.0],[118,121,65,64.0],[118,121,66,64.0],[118,121,67,64.0],[118,121,68,64.0],[118,121,69,64.0],[118,121,70,64.0],[118,121,71,64.0],[118,121,72,64.0],[118,121,73,64.0],[118,121,74,64.0],[118,121,75,64.0],[118,121,76,64.0],[118,121,77,64.0],[118,121,78,64.0],[118,121,79,64.0],[118,122,64,64.0],[118,122,65,64.0],[118,122,66,64.0],[118,122,67,64.0],[118,122,68,64.0],[118,122,69,64.0],[118,122,70,64.0],[118,122,71,64.0],[118,122,72,64.0],[118,122,73,64.0],[118,122,74,64.0],[118,122,75,64.0],[118,122,76,64.0],[118,122,77,64.0],[118,122,78,64.0],[118,122,79,64.0],[118,123,64,64.0],[118,123,65,64.0],[118,123,66,64.0],[118,123,67,64.0],[118,123,68,64.0],[118,123,69,64.0],[118,123,70,64.0],[118,123,71,64.0],[118,123,72,64.0],[118,123,73,64.0],[118,123,74,64.0],[118,123,75,64.0],[118,123,76,64.0],[118,123,77,64.0],[118,123,78,64.0],[118,123,79,64.0],[118,124,64,64.0],[118,124,65,64.0],[118,124,66,64.0],[118,124,67,64.0],[118,124,68,64.0],[118,124,69,64.0],[118,124,70,64.0],[118,124,71,64.0],[118,124,72,64.0],[118,124,73,64.0],[118,124,74,64.0],[118,124,75,64.0],[118,124,76,64.0],[118,124,77,64.0],[118,124,78,64.0],[118,124,79,64.0],[118,125,64,64.0],[118,125,65,64.0],[118,125,66,64.0],[118,125,67,64.0],[118,125,68,64.0],[118,125,69,64.0],[118,125,70,64.0],[118,125,71,64.0],[118,125,72,64.0],[118,125,73,64.0],[118,125,74,64.0],[118,125,75,64.0],[118,125,76,64.0],[118,125,77,64.0],[118,125,78,64.0],[118,125,79,64.0],[118,126,64,64.0],[118,126,65,64.0],[118,126,66,64.0],[118,126,67,64.0],[118,126,68,64.0],[118,126,69,64.0],[118,126,70,64.0],[118,126,71,64.0],[118,126,72,64.0],[118,126,73,64.0],[118,126,74,64.0],[118,126,75,64.0],[118,126,76,64.0],[118,126,77,64.0],[118,126,78,64.0],[118,126,79,64.0],[118,127,64,64.0],[118,127,65,64.0],[118,127,66,64.0],[118,127,67,64.0],[118,127,68,64.0],[118,127,69,64.0],[118,127,70,64.0],[118,127,71,64.0],[118,127,72,64.0],[118,127,73,64.0],[118,127,74,64.0],[118,127,75,64.0],[118,127,76,64.0],[118,127,77,64.0],[118,127,78,64.0],[118,127,79,64.0],[118,128,64,64.0],[118,128,65,64.0],[118,128,66,64.0],[118,128,67,64.0],[118,128,68,64.0],[118,128,69,64.0],[118,128,70,64.0],[118,128,71,64.0],[118,128,72,64.0],[118,128,73,64.0],[118,128,74,64.0],[118,128,75,64.0],[118,128,76,64.0],[118,128,77,64.0],[118,128,78,64.0],[118,128,79,64.0],[118,129,64,64.0],[118,129,65,64.0],[118,129,66,64.0],[118,129,67,64.0],[118,129,68,64.0],[118,129,69,64.0],[118,129,70,64.0],[118,129,71,64.0],[118,129,72,64.0],[118,129,73,64.0],[118,129,74,64.0],[118,129,75,64.0],[118,129,76,64.0],[118,129,77,64.0],[118,129,78,64.0],[118,129,79,64.0],[118,130,64,64.0],[118,130,65,64.0],[118,130,66,64.0],[118,130,67,64.0],[118,130,68,64.0],[118,130,69,64.0],[118,130,70,64.0],[118,130,71,64.0],[118,130,72,64.0],[118,130,73,64.0],[118,130,74,64.0],[118,130,75,64.0],[118,130,76,64.0],[118,130,77,64.0],[118,130,78,64.0],[118,130,79,64.0],[118,131,64,64.0],[118,131,65,64.0],[118,131,66,64.0],[118,131,67,64.0],[118,131,68,64.0],[118,131,69,64.0],[118,131,70,64.0],[118,131,71,64.0],[118,131,72,64.0],[118,131,73,64.0],[118,131,74,64.0],[118,131,75,64.0],[118,131,76,64.0],[118,131,77,64.0],[118,131,78,64.0],[118,131,79,64.0],[118,132,64,64.0],[118,132,65,64.0],[118,132,66,64.0],[118,132,67,64.0],[118,132,68,64.0],[118,132,69,64.0],[118,132,70,64.0],[118,132,71,64.0],[118,132,72,64.0],[118,132,73,64.0],[118,132,74,64.0],[118,132,75,64.0],[118,132,76,64.0],[118,132,77,64.0],[118,132,78,64.0],[118,132,79,64.0],[118,133,64,64.0],[118,133,65,64.0],[118,133,66,64.0],[118,133,67,64.0],[118,133,68,64.0],[118,133,69,64.0],[118,133,70,64.0],[118,133,71,64.0],[118,133,72,64.0],[118,133,73,64.0],[118,133,74,64.0],[118,133,75,64.0],[118,133,76,64.0],[118,133,77,64.0],[118,133,78,64.0],[118,133,79,64.0],[118,134,64,64.0],[118,134,65,64.0],[118,134,66,64.0],[118,134,67,64.0],[118,134,68,64.0],[118,134,69,64.0],[118,134,70,64.0],[118,134,71,64.0],[118,134,72,64.0],[118,134,73,64.0],[118,134,74,64.0],[118,134,75,64.0],[118,134,76,64.0],[118,134,77,64.0],[118,134,78,64.0],[118,134,79,64.0],[118,135,64,64.0],[118,135,65,64.0],[118,135,66,64.0],[118,135,67,64.0],[118,135,68,64.0],[118,135,69,64.0],[118,135,70,64.0],[118,135,71,64.0],[118,135,72,64.0],[118,135,73,64.0],[118,135,74,64.0],[118,135,75,64.0],[118,135,76,64.0],[118,135,77,64.0],[118,135,78,64.0],[118,135,79,64.0],[118,136,64,64.0],[118,136,65,64.0],[118,136,66,64.0],[118,136,67,64.0],[118,136,68,64.0],[118,136,69,64.0],[118,136,70,64.0],[118,136,71,64.0],[118,136,72,64.0],[118,136,73,64.0],[118,136,74,64.0],[118,136,75,64.0],[118,136,76,64.0],[118,136,77,64.0],[118,136,78,64.0],[118,136,79,64.0],[118,137,64,64.0],[118,137,65,64.0],[118,137,66,64.0],[118,137,67,64.0],[118,137,68,64.0],[118,137,69,64.0],[118,137,70,64.0],[118,137,71,64.0],[118,137,72,64.0],[118,137,73,64.0],[118,137,74,64.0],[118,137,75,64.0],[118,137,76,64.0],[118,137,77,64.0],[118,137,78,64.0],[118,137,79,64.0],[118,138,64,64.0],[118,138,65,64.0],[118,138,66,64.0],[118,138,67,64.0],[118,138,68,64.0],[118,138,69,64.0],[118,138,70,64.0],[118,138,71,64.0],[118,138,72,64.0],[118,138,73,64.0],[118,138,74,64.0],[118,138,75,64.0],[118,138,76,64.0],[118,138,77,64.0],[118,138,78,64.0],[118,138,79,64.0],[118,139,64,64.0],[118,139,65,64.0],[118,139,66,64.0],[118,139,67,64.0],[118,139,68,64.0],[118,139,69,64.0],[118,139,70,64.0],[118,139,71,64.0],[118,139,72,64.0],[118,139,73,64.0],[118,139,74,64.0],[118,139,75,64.0],[118,139,76,64.0],[118,139,77,64.0],[118,139,78,64.0],[118,139,79,64.0],[118,140,64,64.0],[118,140,65,64.0],[118,140,66,64.0],[118,140,67,64.0],[118,140,68,64.0],[118,140,69,64.0],[118,140,70,64.0],[118,140,71,64.0],[118,140,72,64.0],[118,140,73,64.0],[118,140,74,64.0],[118,140,75,64.0],[118,140,76,64.0],[118,140,77,64.0],[118,140,78,64.0],[118,140,79,64.0],[118,141,64,64.0],[118,141,65,64.0],[118,141,66,64.0],[118,141,67,64.0],[118,141,68,64.0],[118,141,69,64.0],[118,141,70,64.0],[118,141,71,64.0],[118,141,72,64.0],[118,141,73,64.0],[118,141,74,64.0],[118,141,75,64.0],[118,141,76,64.0],[118,141,77,64.0],[118,141,78,64.0],[118,141,79,64.0],[118,142,64,64.0],[118,142,65,64.0],[118,142,66,64.0],[118,142,67,64.0],[118,142,68,64.0],[118,142,69,64.0],[118,142,70,64.0],[118,142,71,64.0],[118,142,72,64.0],[118,142,73,64.0],[118,142,74,64.0],[118,142,75,64.0],[118,142,76,64.0],[118,142,77,64.0],[118,142,78,64.0],[118,142,79,64.0],[118,143,64,64.0],[118,143,65,64.0],[118,143,66,64.0],[118,143,67,64.0],[118,143,68,64.0],[118,143,69,64.0],[118,143,70,64.0],[118,143,71,64.0],[118,143,72,64.0],[118,143,73,64.0],[118,143,74,64.0],[118,143,75,64.0],[118,143,76,64.0],[118,143,77,64.0],[118,143,78,64.0],[118,143,79,64.0],[118,144,64,64.0],[118,144,65,64.0],[118,144,66,64.0],[118,144,67,64.0],[118,144,68,64.0],[118,144,69,64.0],[118,144,70,64.0],[118,144,71,64.0],[118,144,72,64.0],[118,144,73,64.0],[118,144,74,64.0],[118,144,75,64.0],[118,144,76,64.0],[118,144,77,64.0],[118,144,78,64.0],[118,144,79,64.0],[118,145,64,64.0],[118,145,65,64.0],[118,145,66,64.0],[118,145,67,64.0],[118,145,68,64.0],[118,145,69,64.0],[118,145,70,64.0],[118,145,71,64.0],[118,145,72,64.0],[118,145,73,64.0],[118,145,74,64.0],[118,145,75,64.0],[118,145,76,64.0],[118,145,77,64.0],[118,145,78,64.0],[118,145,79,64.0],[118,146,64,64.0],[118,146,65,64.0],[118,146,66,64.0],[118,146,67,64.0],[118,146,68,64.0],[118,146,69,64.0],[118,146,70,64.0],[118,146,71,64.0],[118,146,72,64.0],[118,146,73,64.0],[118,146,74,64.0],[118,146,75,64.0],[118,146,76,64.0],[118,146,77,64.0],[118,146,78,64.0],[118,146,79,64.0],[118,147,64,64.0],[118,147,65,64.0],[118,147,66,64.0],[118,147,67,64.0],[118,147,68,64.0],[118,147,69,64.0],[118,147,70,64.0],[118,147,71,64.0],[118,147,72,64.0],[118,147,73,64.0],[118,147,74,64.0],[118,147,75,64.0],[118,147,76,64.0],[118,147,77,64.0],[118,147,78,64.0],[118,147,79,64.0],[118,148,64,64.0],[118,148,65,64.0],[118,148,66,64.0],[118,148,67,64.0],[118,148,68,64.0],[118,148,69,64.0],[118,148,70,64.0],[118,148,71,64.0],[118,148,72,64.0],[118,148,73,64.0],[118,148,74,64.0],[118,148,75,64.0],[118,148,76,64.0],[118,148,77,64.0],[118,148,78,64.0],[118,148,79,64.0],[118,149,64,64.0],[118,149,65,64.0],[118,149,66,64.0],[118,149,67,64.0],[118,149,68,64.0],[118,149,69,64.0],[118,149,70,64.0],[118,149,71,64.0],[118,149,72,64.0],[118,149,73,64.0],[118,149,74,64.0],[118,149,75,64.0],[118,149,76,64.0],[118,149,77,64.0],[118,149,78,64.0],[118,149,79,64.0],[118,150,64,64.0],[118,150,65,64.0],[118,150,66,64.0],[118,150,67,64.0],[118,150,68,64.0],[118,150,69,64.0],[118,150,70,64.0],[118,150,71,64.0],[118,150,72,64.0],[118,150,73,64.0],[118,150,74,64.0],[118,150,75,64.0],[118,150,76,64.0],[118,150,77,64.0],[118,150,78,64.0],[118,150,79,64.0],[118,151,64,64.0],[118,151,65,64.0],[118,151,66,64.0],[118,151,67,64.0],[118,151,68,64.0],[118,151,69,64.0],[118,151,70,64.0],[118,151,71,64.0],[118,151,72,64.0],[118,151,73,64.0],[118,151,74,64.0],[118,151,75,64.0],[118,151,76,64.0],[118,151,77,64.0],[118,151,78,64.0],[118,151,79,64.0],[118,152,64,64.0],[118,152,65,64.0],[118,152,66,64.0],[118,152,67,64.0],[118,152,68,64.0],[118,152,69,64.0],[118,152,70,64.0],[118,152,71,64.0],[118,152,72,64.0],[118,152,73,64.0],[118,152,74,64.0],[118,152,75,64.0],[118,152,76,64.0],[118,152,77,64.0],[118,152,78,64.0],[118,152,79,64.0],[118,153,64,64.0],[118,153,65,64.0],[118,153,66,64.0],[118,153,67,64.0],[118,153,68,64.0],[118,153,69,64.0],[118,153,70,64.0],[118,153,71,64.0],[118,153,72,64.0],[118,153,73,64.0],[118,153,74,64.0],[118,153,75,64.0],[118,153,76,64.0],[118,153,77,64.0],[118,153,78,64.0],[118,153,79,64.0],[118,154,64,64.0],[118,154,65,64.0],[118,154,66,64.0],[118,154,67,64.0],[118,154,68,64.0],[118,154,69,64.0],[118,154,70,64.0],[118,154,71,64.0],[118,154,72,64.0],[118,154,73,64.0],[118,154,74,64.0],[118,154,75,64.0],[118,154,76,64.0],[118,154,77,64.0],[118,154,78,64.0],[118,154,79,64.0],[118,155,64,64.0],[118,155,65,64.0],[118,155,66,64.0],[118,155,67,64.0],[118,155,68,64.0],[118,155,69,64.0],[118,155,70,64.0],[118,155,71,64.0],[118,155,72,64.0],[118,155,73,64.0],[118,155,74,64.0],[118,155,75,64.0],[118,155,76,64.0],[118,155,77,64.0],[118,155,78,64.0],[118,155,79,64.0],[118,156,64,64.0],[118,156,65,64.0],[118,156,66,64.0],[118,156,67,64.0],[118,156,68,64.0],[118,156,69,64.0],[118,156,70,64.0],[118,156,71,64.0],[118,156,72,64.0],[118,156,73,64.0],[118,156,74,64.0],[118,156,75,64.0],[118,156,76,64.0],[118,156,77,64.0],[118,156,78,64.0],[118,156,79,64.0],[118,157,64,64.0],[118,157,65,64.0],[118,157,66,64.0],[118,157,67,64.0],[118,157,68,64.0],[118,157,69,64.0],[118,157,70,64.0],[118,157,71,64.0],[118,157,72,64.0],[118,157,73,64.0],[118,157,74,64.0],[118,157,75,64.0],[118,157,76,64.0],[118,157,77,64.0],[118,157,78,64.0],[118,157,79,64.0],[118,158,64,64.0],[118,158,65,64.0],[118,158,66,64.0],[118,158,67,64.0],[118,158,68,64.0],[118,158,69,64.0],[118,158,70,64.0],[118,158,71,64.0],[118,158,72,64.0],[118,158,73,64.0],[118,158,74,64.0],[118,158,75,64.0],[118,158,76,64.0],[118,158,77,64.0],[118,158,78,64.0],[118,158,79,64.0],[118,159,64,64.0],[118,159,65,64.0],[118,159,66,64.0],[118,159,67,64.0],[118,159,68,64.0],[118,159,69,64.0],[118,159,70,64.0],[118,159,71,64.0],[118,159,72,64.0],[118,159,73,64.0],[118,159,74,64.0],[118,159,75,64.0],[118,159,76,64.0],[118,159,77,64.0],[118,159,78,64.0],[118,159,79,64.0],[118,160,64,64.0],[118,160,65,64.0],[118,160,66,64.0],[118,160,67,64.0],[118,160,68,64.0],[118,160,69,64.0],[118,160,70,64.0],[118,160,71,64.0],[118,160,72,64.0],[118,160,73,64.0],[118,160,74,64.0],[118,160,75,64.0],[118,160,76,64.0],[118,160,77,64.0],[118,160,78,64.0],[118,160,79,64.0],[118,161,64,64.0],[118,161,65,64.0],[118,161,66,64.0],[118,161,67,64.0],[118,161,68,64.0],[118,161,69,64.0],[118,161,70,64.0],[118,161,71,64.0],[118,161,72,64.0],[118,161,73,64.0],[118,161,74,64.0],[118,161,75,64.0],[118,161,76,64.0],[118,161,77,64.0],[118,161,78,64.0],[118,161,79,64.0],[118,162,64,64.0],[118,162,65,64.0],[118,162,66,64.0],[118,162,67,64.0],[118,162,68,64.0],[118,162,69,64.0],[118,162,70,64.0],[118,162,71,64.0],[118,162,72,64.0],[118,162,73,64.0],[118,162,74,64.0],[118,162,75,64.0],[118,162,76,64.0],[118,162,77,64.0],[118,162,78,64.0],[118,162,79,0.4877026958856746],[118,163,64,64.0],[118,163,65,64.0],[118,163,66,64.0],[118,163,67,64.0],[118,163,68,64.0],[118,163,69,64.0],[118,163,70,64.0],[118,163,71,64.0],[118,163,72,64.0],[118,163,73,64.0],[118,163,74,64.0],[118,163,75,64.0],[118,163,76,64.0],[118,163,77,0.38454894448243865],[118,163,78,0.43929160386151256],[118,163,79,0.4904459314071833],[118,164,64,64.0],[118,164,65,64.0],[118,164,66,64.0],[118,164,67,64.0],[118,164,68,64.0],[118,164,69,64.0],[118,164,70,64.0],[118,164,71,64.0],[118,164,72,64.0],[118,164,73,64.0],[118,164,74,64.0],[118,164,75,64.0],[118,164,76,0.3298918547396094],[118,164,77,0.3877371766811764],[118,164,78,0.44269829061312893],[118,164,79,0.49402327028482745],[118,165,64,64.0],[118,165,65,64.0],[118,165,66,64.0],[118,165,67,64.0],[118,165,68,64.0],[118,165,69,64.0],[118,165,70,64.0],[118,165,71,64.0],[118,165,72,64.0],[118,165,73,64.0],[118,165,74,64.0],[118,165,75,0.27425973368373086],[118,165,76,0.33424303570293135],[118,165,77,0.39217160731697703],[118,165,78,0.4471749249210576],[118,165,79,0.498495669811864],[118,166,64,64.0],[118,166,65,64.0],[118,166,66,64.0],[118,166,67,64.0],[118,166,68,64.0],[118,166,69,64.0],[118,166,70,64.0],[118,166,71,64.0],[118,166,72,64.0],[118,166,73,64.0],[118,166,74,0.21905182312653607],[118,166,75,0.2801029485472609],[118,166,76,0.3400373727853703],[118,166,77,0.3978814680906045],[118,166,78,0.45275967421324814],[118,166,79,0.5039104934672909],[118,167,64,64.0],[118,167,65,64.0],[118,167,66,64.0],[118,167,67,64.0],[118,167,68,64.0],[118,167,69,64.0],[118,167,70,64.0],[118,167,71,64.0],[118,167,72,64.0],[118,167,73,0.16519732388937686],[118,167,74,0.2266692184393938],[118,167,75,0.28754592234763265],[118,167,76,0.34727466530871226],[118,167,77,0.4048770172518712],[118,167,78,0.4594735357001392],[118,167,79,0.5102997031133668],[118,168,64,64.0],[118,168,65,64.0],[118,168,66,64.0],[118,168,67,64.0],[118,168,68,64.0],[118,168,69,64.0],[118,168,70,64.0],[118,168,71,0.09143530996337138],[118,168,72,0.11305386339289565],[118,168,73,0.1748162513847289],[118,168,74,0.23599601164666795],[118,168,75,0.2965545171798711],[118,168,76,0.35593258651675874],[118,168,77,0.41314805274382543],[118,168,78,0.467318682646744],[118,168,79,0.5176780302262438],[118,169,64,64.0],[118,169,65,64.0],[118,169,66,64.0],[118,169,67,64.0],[118,169,68,64.0],[118,169,69,64.0],[118,169,70,0.059179268096139326],[118,169,71,0.06298307693200941],[118,169,72,0.12484067894293648],[118,169,73,0.1862016472357756],[118,169,74,0.2469600738565289],[118,169,75,0.3070695685370626],[118,169,76,0.3659652928653694],[118,169,77,0.42266233987784885],[118,169,78,0.47627670114896953],[118,169,79,0.5260410132114858],[118,170,64,64.0],[118,170,65,64.0],[118,170,66,64.0],[118,170,67,64.0],[118,170,68,64.0],[118,170,69,0.021726004076742786],[118,170,70,0.017607289749388563],[118,170,71,0.07703559235782358],[118,170,72,0.13839378273327768],[118,170,73,0.19923989054059055],[118,170,74,0.25946172759996455],[118,170,75,0.31900570150364954],[118,170,76,0.37730204490352115],[118,170,77,0.4333640263505385],[118,170,78,0.4863067894614202],[118,170,79,0.5353629720954293],[118,171,64,64.0],[118,171,65,64.0],[118,171,66,64.0],[118,171,67,64.0],[118,171,68,-0.020993220756244907],[118,171,69,-0.020683057184594192],[118,171,70,0.031696491742448166],[118,171,71,0.09279292769528369],[118,171,72,0.15355515273378206],[118,171,73,0.2137877404446411],[118,171,74,0.2733728317086306],[118,171,75,0.332250208445963],[118,171,76,0.38984586585318437],[118,171,77,0.44517207047396257],[118,171,78,0.49734394551423594],[118,171,79,0.5455949459981636],[118,172,64,64.0],[118,172,65,64.0],[118,172,66,64.0],[118,172,67,-0.024790307421912038],[118,172,68,-0.06382181291129384],[118,172,69,-0.01090757538324938],[118,172,70,0.04961570100400012],[118,172,71,0.11005038186842392],[118,172,72,0.17013553985367932],[118,172,73,0.2296716966481648],[118,172,74,0.28853592473766987],[118,172,75,0.34666196253676196],[118,172,76,0.40347221248451764],[118,172,77,0.45797865747324856],[118,172,78,0.5092971177280234],[118,172,79,0.5566625687498272],[118,173,64,64.0],[118,173,65,64.0],[118,173,66,0.01189727085544938],[118,173,67,-0.04433954810302624],[118,173,68,-0.05056063526089192],[118,173,69,0.009047160496576098],[118,173,70,0.0688607478349127],[118,173,71,0.12857092033076908],[118,173,72,0.1879141341574947],[118,173,73,0.2466874400320031],[118,173,74,0.30476342675336043],[118,173,75,0.36207036693541167],[118,173,76,0.41802765810977466],[118,173,77,0.47164760367664627],[118,173,78,0.5220473189537459],[118,173,79,0.5684638824788053],[118,174,64,0.09948629617858544],[118,174,65,0.04476083323144106],[118,174,66,0.007685863192795447],[118,174,67,-0.005255459730044168],[118,174,68,-0.016820223762702785],[118,174,69,0.030085751469169184],[118,174,70,0.08914576414956545],[118,174,71,0.1480851744267472],[118,174,72,0.20663833187880942],[118,174,73,0.26459935340174584],[118,174,74,0.32183689948544614],[118,174,75,0.378274339623561],[118,174,76,0.43332858769578975],[118,174,77,0.4860127485979334],[118,174,78,0.5354457035374511],[118,174,79,0.5808670891717056],[118,175,64,0.0823788264793629],[118,175,65,0.06356237364665832],[118,175,66,0.04617740221178278],[118,175,67,0.030187247176690232],[118,175,68,0.015464776034725],[118,175,69,0.05187323005176185],[118,175,70,0.11015233183690497],[118,175,71,0.16829156104745915],[118,175,72,0.22602360323156995],[118,175,73,0.2831401223499173],[118,175,74,0.3395063648438941],[118,175,75,0.39504133389607654],[118,175,76,0.44915990509480896],[118,175,77,0.5008763349109432],[118,175,78,0.5493116075096263],[118,175,79,0.5937082402049213],[118,176,64,0.1227033058429503],[118,176,65,0.1011807965816623],[118,176,66,0.0809401999815986],[118,176,67,0.06196925272520572],[118,176,68,0.04416616145716888],[118,176,69,0.0740424435367582],[118,176,70,0.13152997795301402],[118,176,71,0.1888565225813153],[118,176,72,0.24575346101943824],[118,176,73,0.30201041623667846],[118,176,74,0.3574896818005324],[118,176,75,0.4121063945076646],[118,176,76,0.46527375239407903],[118,176,77,0.5160073763166106],[118,176,78,0.5634305518995532],[118,176,79,0.6067888638481261],[118,177,64,0.1592551653599502],[118,177,65,0.13509124514481508],[118,177,66,0.11206986057704152],[118,177,67,0.09020237434726293],[118,177,68,0.06941151331322272],[118,177,69,0.09632794995685938],[118,177,70,0.15302434760116632],[118,177,71,0.20953663534289457],[118,177,72,0.26559520200597686],[118,177,73,0.32098800225971663],[118,177,74,0.3755748181264765],[118,177,75,0.4292674194055681],[118,177,76,0.4814776435292366],[118,177,77,0.5312225960983332],[118,177,78,0.5776279709090708],[118,177,79,0.6199425191588139],[118,178,64,0.1922528835220605],[118,178,65,0.16552660703081606],[118,178,66,0.13981325082670087],[118,178,67,0.11514684601310035],[118,178,68,0.09147364463726415],[118,178,69,0.11906444426008465],[118,178,70,0.1749554374135382],[118,178,71,0.23063551326342613],[118,178,72,0.28583449393391974],[118,178,73,0.3403391913990836],[118,178,74,0.3940075027362879],[118,178,75,0.44674854453647006],[118,178,76,0.49797329107454197],[118,178,77,0.5467005913712646],[118,178,78,0.5920587946792557],[118,178,79,0.633300061314262],[118,179,64,0.2220903940998415],[118,179,65,0.19289263772439708],[118,179,66,0.16458708845635997],[118,179,67,0.13722933132933102],[118,179,68,0.11078800195945926],[118,179,69,0.14265411896292152],[118,179,70,0.19770777669355077],[118,179,71,0.25251828407283805],[118,179,72,0.3068154740581194],[118,179,73,0.36038572285434506],[118,179,74,0.4130858820654636],[118,179,75,0.4648233696409954],[118,179,76,0.515009002676377],[118,179,77,0.562663800038241],[118,179,78,0.606919182124401],[118,179,79,0.6470311302924163],[118,180,64,0.24908617302250888],[118,180,65,0.21751866214132531],[118,180,66,0.1867308648564205],[118,180,67,0.1567986618196327],[118,180,68,0.1277117936630348],[118,180,69,0.1673581671528364],[118,180,70,0.2215306807522132],[118,180,71,0.27542112627276083],[118,180,72,0.328760041475471],[118,180,73,0.38133421583819044],[118,180,74,0.43300046292027183],[118,180,75,0.48366564746544205],[118,180,76,0.5327412936725385],[118,180,77,0.5792511347352265],[118,180,78,0.6223301945551001],[118,180,79,0.6612388034189552],[118,181,64,0.2728231471103141],[118,181,65,0.23900241927372884],[118,181,66,0.20585823745238613],[118,181,67,0.17348535325322062],[118,181,68,0.1418931500430578],[118,181,69,0.19331323785919602],[118,181,70,0.24655404006463838],[118,181,71,0.29946634561777086],[118,181,72,0.35178217689521707],[118,181,73,0.40328969139190884],[118,181,74,0.45384679817277146],[118,181,75,0.5033610984971609],[118,181,76,0.5512458002817995],[118,181,77,0.5965279690992127],[118,181,78,0.6383468352097978],[118,181,79,0.675967674171124],[118,182,64,0.29284872050907473],[118,182,65,0.2569045750154482],[118,182,66,0.22154435461892152],[118,182,67,0.18688012141374313],[118,182,68,0.16821649728780463],[118,182,69,0.2205472290907729],[118,182,70,0.2728034716368088],[118,182,71,0.32467684063584623],[118,182,72,0.37590168041452243],[118,182,73,0.42626854313369833],[118,182,74,0.47563765407726144],[118,182,75,0.5239187415482394],[118,182,76,0.5705277441656216],[118,182,77,0.6144957119751684],[118,182,78,0.6549667140722538],[118,182,79,0.6912115941247076],[118,183,64,0.30887252346003147],[118,183,65,0.2709448344457462],[118,183,66,0.23351984437527834],[118,183,67,0.19672527631590916],[118,183,68,0.19763424064478358],[118,183,69,0.24899433926828746],[118,183,70,0.30021475660072217],[118,183,71,0.3509898846949227],[118,183,72,0.401057258471172],[118,183,73,0.45021089192777863],[118,183,74,0.49831459813660023],[118,183,75,0.545281683152574],[118,183,76,0.5905318954308538],[118,183,77,0.6331009207720156],[118,183,78,0.6721382933335805],[118,183,79,0.7069210375293232],[118,184,64,0.3207719110310402],[118,184,65,0.28100731287364006],[118,184,66,0.24167603264113363],[118,184,67,0.20291976574196202],[118,184,68,0.22815781538069468],[118,184,69,0.2785093770516005],[118,184,70,0.32864756403754924],[118,184,71,0.3782702246151898],[118,184,72,0.4271189599730466],[118,184,73,0.47499232447397743],[118,184,74,0.5217590075180817],[118,184,75,0.5673373657760375],[118,184,76,0.6111520340731297],[118,184,77,0.6522439539673694],[118,184,78,0.6897687134986176],[118,184,79,0.7230100885118087],[118,185,64,0.3285979854906583],[118,185,65,0.28714644738621947],[118,185,66,0.24607071830732324],[118,185,67,0.2102913580118304],[118,185,68,0.2595691308235224],[118,185,69,0.30888132956225306],[118,185,70,0.35789846102947603],[118,185,71,0.4063224958277802],[118,185,72,0.45389996160500246],[118,185,73,0.5004350158183921],[118,185,74,0.5458024980194396],[118,185,75,0.589927274840289],[118,185,76,0.6322399098614876],[118,185,77,0.67178716276153],[118,185,78,0.707731200137095],[118,185,79,0.7393630509081268],[118,186,64,0.3325821423241927],[118,186,65,0.28959344890017114],[118,186,66,0.2469345051208628],[118,186,67,0.2432859810916237],[118,186,68,0.29159516547715597],[118,186,69,0.339846189001041],[118,186,70,0.38771320893992794],[118,186,71,0.4349029540795595],[118,186,72,0.4811677023128734],[118,186,73,0.5263182357848546],[118,186,74,0.5702367735847222],[118,186,75,0.6128561045599725],[118,186,76,0.6536137006639704],[118,186,77,0.6915626218805014],[118,186,78,0.7258720512793758],[118,186,79,0.7558406807235911],[118,187,64,0.33314313989231764],[118,187,65,0.288763294716975],[118,187,66,0.24467769038455772],[118,187,67,0.2765845661124503],[118,187,68,0.32392052161595003],[118,187,69,0.3710990376601964],[118,187,70,0.4177983459217617],[118,187,71,0.4637305236836142],[118,187,72,0.508654366964213],[118,187,73,0.5523882393268356],[118,187,74,0.5948228963696893],[118,187,75,0.6359003825929822],[118,187,76,0.6750659692139024],[118,187,77,0.7113793995277502],[118,187,78,0.7440172054565111],[118,187,79,0.7722860412211674],[118,188,64,0.33087139642974456],[118,188,65,0.285239497434993],[118,188,66,0.26354003447020646],[118,188,67,0.30983083499960934],[118,188,68,0.35619921306425134],[118,188,69,0.4023053913309649],[118,188,70,0.4478320556541898],[118,188,71,0.49249716231618007],[118,188,72,0.5360667191864831],[118,188,73,0.5783675408004627],[118,188,74,0.6192999773573777],[118,188,75,0.6588165535044027],[118,188,76,0.6963711183174177],[118,188,77,0.7310303664852451],[118,188,78,0.7619783903851098],[118,188,79,0.7885299806383163],[118,189,64,0.3258316833557738],[118,189,65,0.27909277168576285],[118,189,66,0.29719690732273374],[118,189,67,0.3426485115319709],[118,189,68,0.3880656861604941],[118,189,69,0.43311180110619746],[118,189,70,0.47747432230806663],[118,189,71,0.5208775423596483],[118,189,72,0.5630952833823457],[118,189,73,0.603963572158324],[118,189,74,0.6433932875235154],[118,189,75,0.6813485210438208],[118,189,76,0.7172923445019509],[118,189,77,0.7502985443635051],[118,189,78,0.7795588522967712],[118,189,79,0.8043962325321387],[118,190,64,0.31743220456346155],[118,190,65,0.2855645939678331],[118,190,66,0.3300096374775373],[118,190,67,0.374651943845534],[118,190,68,0.41914507390543587],[118,190,69,0.4631557135775426],[118,190,70,0.5063763717391363],[118,190,71,0.5485380487912698],[118,190,72,0.589422875921691],[118,190,73,0.6288767250637098],[118,190,74,0.6668217895514614],[118,190,75,0.7032346492357081],[118,190,76,0.737588090105411],[118,190,77,0.7689629930003955],[118,190,78,0.7965586659118397],[118,190,79,0.8197061387526096],[118,191,64,0.30521250776068454],[118,191,65,0.31779238932414283],[118,191,66,0.3615842267230004],[118,191,67,0.40545593763748544],[118,191,68,0.449062683295377],[118,191,69,0.49207458942805105],[118,191,70,0.5341893989100296],[118,191,71,0.5751450936183096],[118,191,72,0.6147324855111267],[118,191,73,0.6528077769259772],[118,191,74,0.6893050900973197],[118,191,75,0.7242142222834802],[118,191,76,0.7570179938066067],[118,191,77,0.786804237009204],[118,191,78,0.8127796250579696],[118,191,79,0.8342829950443458],[118,192,64,0.3054780316898952],[118,192,65,0.34835218570362847],[118,192,66,0.39153689434231964],[118,192,67,0.4346848000703153],[118,192,68,0.47745271583992754],[118,192,69,0.519514280419775],[118,192,70,0.5605725815406015],[118,192,71,0.6003727468592627],[118,192,72,0.6387145027405494],[118,192,73,0.675464700856685],[118,192,74,0.7105698126048883],[118,192,75,0.7440333632869185],[118,192,76,0.7753483395966265],[118,192,77,0.8036092314757157],[118,192,78,0.8280297139332485],[118,192,79,0.8479560192766725],[118,193,64,0.3344416630756282],[118,193,65,0.3768737910163229],[118,193,66,0.41950261511468867],[118,193,67,0.46198059437558775],[118,193,68,0.503966221263939],[118,193,69,0.5451366647759903],[118,193,70,0.5852003799862554],[118,193,71,0.6239096840707896],[118,193,72,0.6610732988064779],[118,193,73,0.6965688595461875],[118,193,74,0.7303553906701554],[118,193,75,0.7624504117726786],[118,193,76,0.7923570041909166],[118,193,77,0.8191758668040553],[118,193,78,0.8421271590136544],[118,193,79,0.8605639423017934],[118,194,64,0.3609742453559833],[118,194,65,0.40301484089523126],[118,194,66,0.4451428483230555],[118,194,67,0.4870106051582055],[118,194,68,0.528278284394409],[118,194,69,0.5686265409588207],[118,194,70,0.6077691233450032],[118,194,71,0.6454654504210934],[118,194,72,0.6815331534128336],[118,194,73,0.7158605830613418],[118,194,74,0.7484192819559566],[118,194,75,0.779240760038469],[118,194,76,0.8078379028826044],[118,194,77,0.8333170127117968],[118,194,78,0.8549040616053196],[118,194,79,0.8719582214414839],[118,195,64,0.38476820984812793],[118,195,65,0.4264679509472069],[118,195,66,0.4681524577679632],[118,195,67,0.5094740144006918],[118,195,68,0.5500944452318991],[118,195,69,0.5896977798418256],[118,195,70,0.628002881792838],[118,195,71,0.6647760413093241],[118,195,72,0.6998435318487766],[118,195,73,0.7331041305639562],[118,195,74,0.7645416026564443],[118,195,75,0.7942011483105643],[118,195,76,0.821604933836748],[118,195,77,0.8458641013740534],[118,195,78,0.8662096110413255],[118,195,79,0.8820058766020671],[118,196,64,0.4055590814517473],[118,196,65,0.44696697562152204],[118,196,66,0.48826575274188294],[118,196,67,0.5291077156954288],[118,196,68,0.5691562774365349],[118,196,69,0.6080986583503281],[118,196,70,0.6456585462086241],[118,196,71,0.6816087187234448],[118,196,72,0.7157836286978098],[118,196,73,0.7480919517737004],[118,196,74,0.7785290967774912],[118,196,75,0.8071533314558698],[118,196,76,0.8334953321594246],[118,196,77,0.8566701599406171],[118,196,78,0.8759127880894239],[118,196,79,0.8905918585057839],[118,197,64,0.423029540794666],[118,197,65,0.4641868543554398],[118,197,66,0.5051522319161657],[118,197,67,0.5455781052293085],[118,197,68,0.5851294044143597],[118,197,69,0.6234962986361734],[118,197,70,0.6604068979445198],[118,197,71,0.6956399162754542],[118,197,72,0.7290372956142096],[118,197,73,0.7605167913195171],[118,197,74,0.7900845186096276],[118,197,75,0.817810780604737],[118,197,76,0.8432338686113856],[118,197,77,0.8654719708234883],[118,197,78,0.883763197879749],[118,197,79,0.8974794685075894],[118,198,64,0.43664263283171334],[118,198,65,0.477570561194717],[118,198,66,0.5182373311240912],[118,198,67,0.5582957507731389],[118,198,68,0.5974122687764032],[118,198,69,0.635279761008548],[118,198,70,0.6716302765157058],[118,198,71,0.7062477426198807],[118,198,72,0.7389806291961184],[118,198,73,0.7697545721223586],[118,198,74,0.7985849559022266],[118,198,75,0.8255525122768979],[118,198,76,0.8502025099361834],[118,198,77,0.8716563992053881],[118,198,78,0.8891553391784427],[118,198,79,0.9020742051185171],[118,199,64,0.4459429094468867],[118,199,65,0.4866430539477459],[118,199,66,0.5270286171202749],[118,199,67,0.5667531696600387],[118,199,68,0.6054847596654773],[118,199,69,0.6429187401894519],[118,199,70,0.6787905530123103],[118,199,71,0.7128884686370454],[118,199,72,0.7450662825062669],[118,199,73,0.7752559674409066],[118,199,74,0.8034802823009017],[118,199,75,0.8298282523620636],[118,199,76,0.8538517622988846],[118,199,77,0.8746765807151602],[118,199,78,0.8915476101586808],[118,199,79,0.9038429933176962],[118,200,64,0.4506134566699694],[118,200,65,0.4910707116118046],[118,200,66,0.5311775420296811],[118,200,67,0.5705887859850869],[118,200,68,0.6089742418923062],[118,200,69,0.6460315245703282],[118,200,70,0.681498873254431],[118,200,71,0.7151679115680112],[118,200,72,0.7468963594543789],[118,200,73,0.776620697068446],[118,200,74,0.8043687806285426],[118,200,75,0.830235350832988],[118,200,76,0.8537787667400403],[118,200,77,0.8741309249993396],[118,200,78,0.8905418084758204],[118,200,79,0.9023936554539799],[118,201,64,0.45046779227019185],[118,201,65,0.49065299057179884],[118,201,66,0.5304708666224934],[118,201,67,0.5695781301883697],[118,201,68,0.6076465415153751],[118,201,69,0.644375777566268],[118,201,70,0.6795062443534199],[118,201,71,0.7128318353680339],[118,201,72,0.7442126361055016],[118,201,73,0.7735875746868245],[118,201,74,0.8009870185763358],[118,201,75,0.8265084850761538],[118,201,76,0.8497168363019314],[118,201,77,0.8697525071421758],[118,201,78,0.8858724100463264],[118,201,79,0.8974641210438271],[118,202,64,0.44544137172323506],[118,202,65,0.48531370458885714],[118,202,66,0.5248217253927845],[118,202,67,0.5636247010777157],[118,202,68,0.6013966171020019],[118,202,69,0.6378390304446995],[118,202,70,0.6726938610042682],[118,202,71,0.7057561213914672],[118,202,72,0.7368865851161792],[118,202,73,0.7660243931680952],[118,202,74,0.793199598991482],[118,202,75,0.8185092760702586],[118,202,76,0.8415249453697318],[118,202,77,0.8613984511117991],[118,202,78,0.8773958794738227],[118,202,79,0.8889117070579861],[118,203,64,0.4355827025518404],[118,203,65,0.47509192857903504],[118,203,66,0.514260333441222],[118,203,67,0.5527504902913488],[118,203,68,0.5902389166708522],[118,203,69,0.6264288866287697],[118,203,70,0.6610631715092924],[118,203,71,0.6939367094083022],[118,203,72,0.7249092032986375],[118,203,73,0.7539176478240047],[118,203,74,0.7809887847617701],[118,203,75,0.806215817412645],[118,203,76,0.8291771712277223],[118,203,77,0.8490393052326473],[118,203,78,0.8650800121223847],[118,203,79,0.8767024686970812],[118,204,64,0.4210440670397958],[118,204,65,0.46013252618190115],[118,204,66,0.49892433516160234],[118,204,67,0.5370861692002495],[118,204,68,0.574297420315702],[118,204,69,0.6102629374752336],[118,204,70,0.6447256835329389],[118,204,71,0.6774793089521816],[118,204,72,0.7083806423128272],[118,204,73,0.7373620976031819],[118,204,74,0.7644439982968683],[118,204,75,0.7897121171935525],[118,204,76,0.8127520878304445],[118,204,77,0.8327484096840594],[118,204,78,0.8489933078369807],[118,204,79,0.8609006206560254],[118,205,64,0.40207185331938755],[118,205,65,0.4406763011191017],[118,205,66,0.479048794731297],[118,205,67,0.5168609382503183],[118,205,68,0.5537953685105305],[118,205,69,0.5895583895269267],[118,205,70,0.623892509587789],[118,205,71,0.6565888809999483],[118,205,72,0.6874996424863847],[118,205,73,0.7165501642360823],[118,205,74,0.7437511956063796],[118,205,75,0.7691774527182261],[118,205,76,0.7924221117888252],[118,205,77,0.8126912560250512],[118,205,78,0.8292943763110754],[118,205,79,0.8416580288772598],[118,206,64,0.3789964948323418],[118,206,65,0.4170497723429173],[118,206,66,0.45495582840562865],[118,206,67,0.4923920387443471],[118,206,68,0.5290446760959552],[118,206,69,0.5646214032398376],[118,206,70,0.5988636522517702],[118,206,71,0.631558889982754],[118,206,72,0.6625527697625332],[118,206,73,0.6917611693277081],[118,206,74,0.7191821149746906],[118,206,75,0.744875638076917],[118,206,76,0.7684428005713027],[118,206,77,0.7891148387453165],[118,206,78,0.8062213741014431],[118,206,79,0.8192037727928767],[118,207,64,0.3522220181641216],[118,207,65,0.3896545729746819],[118,207,66,0.4270438786160484],[118,207,67,0.4640739270636813],[118,207,68,0.5004350319468888],[118,207,69,0.5358361431846588],[118,207,70,0.570017029116466],[118,207,71,0.6027603261286083],[118,207,72,0.6339034557758118],[118,207,73,0.6633504093980028],[118,207,74,0.6910834002325124],[118,207,75,0.7171442045626718],[118,207,76,0.7411421029198647],[118,207,77,0.7623369988423598],[118,207,78,0.7800814732900957],[118,207,79,0.7938337780555292],[118,208,64,0.3222151992518523],[118,208,65,0.35895647303334044],[118,208,66,0.3957766298723897],[118,208,67,0.43236711132983563],[118,208,68,0.46842268432168294],[118,208,69,0.5036535397230769],[118,208,70,0.5377972374667666],[118,208,71,0.5706304981366094],[118,208,72,0.6019808410558602],[118,208,73,0.6317380688701317],[118,208,74,0.6598655986253057],[118,208,75,0.6863834939371032],[118,208,76,0.7109095614811687],[118,208,77,0.7327357594249226],[118,208,78,0.7512403617934783],[118,208,79,0.7659005197582724],[118,209,64,0.2894943279655732],[118,209,65,0.32547402595383534],[118,209,66,0.36167156646888615],[118,209,67,0.3977866505057642],[118,209,68,0.4335189118924566],[118,209,69,0.4685797621585055],[118,209,70,0.5027040586915832],[118,209,71,0.5356615961825887],[118,209,72,0.567268421359007],[118,209,73,0.5973979710064077],[118,209,74,0.6259920332783824],[118,209,75,0.6530456645439299],[118,209,76,0.6781854676525537],[118,209,77,0.7007386533425259],[118,209,78,0.7201117753187706],[118,209,79,0.7358027961431848],[118,210,64,0.2770171176465052],[118,210,65,0.30540746261643004],[118,210,66,0.3330495472608294],[118,210,67,0.36089031593684173],[118,210,68,0.3962781804566735],[118,210,69,0.43116440336132567],[118,210,70,0.4652807024256824],[118,210,71,0.49838902525622125],[118,210,72,0.5302924971277051],[118,210,73,0.5608461667919107],[118,210,74,0.5899675502587071],[118,210,75,0.617623610270326],[118,210,76,0.6434499686429804],[118,210,77,0.6668120428411646],[118,210,78,0.6871470609673231],[118,210,79,0.7039755727988026],[118,211,64,0.31085128318720995],[118,211,65,0.33741635093357225],[118,211,66,0.3632233793240181],[118,211,67,0.3882441950384168],[118,211,68,0.41250038122743876],[118,211,69,0.4360713649927506],[118,211,70,0.4591030026804086],[118,211,71,0.48181666298738957],[118,211,72,0.5045144717268776],[118,211,73,0.5271780225732818],[118,211,74,0.5523271402336971],[118,211,75,0.5806397923563476],[118,211,76,0.6072121267491459],[118,211,77,0.6314504312453799],[118,211,78,0.6528247724854435],[118,211,79,0.6708798973465545],[118,212,64,0.34063377385707416],[118,212,65,0.36545542266478437],[118,212,66,0.38951537982305373],[118,212,67,0.4127968940482995],[118,212,68,0.4353298492433267],[118,212,69,0.457198136318304],[118,212,70,0.47854748269367153],[118,212,71,0.49959373948492536],[118,212,72,0.5206273682236449],[118,212,73,0.5416196697791928],[118,212,74,0.5619130754338848],[118,212,75,0.5808958661215684],[118,212,76,0.5980725587135082],[118,212,77,0.6130548260218112],[118,212,78,0.6255526767809063],[118,212,79,0.6369928846158598],[118,213,64,0.3660253701241758],[118,213,65,0.3892089199766502],[118,213,66,0.4116336323457112],[118,213,67,0.43329325700827576],[118,213,68,0.45422499991141363],[118,213,69,0.47451619199291195],[118,213,70,0.49431137610057585],[118,213,71,0.513819812010216],[118,213,72,0.5333192229908404],[118,213,73,0.5527698849007198],[118,213,74,0.5715165294835551],[118,213,75,0.5889535390589135],[118,213,76,0.604593564224026],[118,213,77,0.6180580307256119],[118,213,78,0.6290679182659369],[118,213,79,0.6374348112430994],[118,214,64,0.3867445104599021],[118,214,65,0.40841730585679703],[118,214,66,0.42934091664418156],[118,214,67,0.44951852732146297],[118,214,68,0.4689935613033577],[118,214,69,0.4878556651394973],[118,214,70,0.5062470720613846],[118,214,71,0.5243693448566492],[118,214,72,0.5424864062755206],[118,214,73,0.5605467897853281],[118,214,74,0.5778972883071762],[118,214,75,0.5939380648335113],[118,214,76,0.6081894634556274],[118,214,77,0.6202821280255778],[118,214,78,0.6299474050058227],[118,214,79,0.6370080305066051],[118,215,64,0.4025711587985803],[118,215,65,0.4228807423484392],[118,215,66,0.44245778662418606],[118,215,67,0.46131371440924657],[118,215,68,0.4794969520767225],[118,215,69,0.4970982531069479],[118,215,70,0.514256363226636],[118,215,71,0.5311640271695712],[118,215,72,0.5480703327136703],[118,215,73,0.5649113797015213],[118,215,74,0.581035734039233],[118,215,75,0.5958489455191297],[118,215,76,0.6088785251897958],[118,215,77,0.6197637042563741],[118,215,78,0.6282454896216363],[118,215,79,0.6341570160678187],[118,216,64,0.41335013356990835],[118,216,65,0.43246201800113543],[118,216,66,0.4508650847508131],[118,216,67,0.46857768649024245],[118,216,68,0.48565194680414003],[118,216,69,0.5021784520869891],[118,216,70,0.5182912486616839],[118,216,71,0.5341731451204267],[118,216,72,0.5500574051772638],[118,216,73,0.5658670428287594],[118,216,74,0.580952066639674],[118,216,75,0.5947229541037188],[118,216,76,0.6067137798924613],[118,216,77,0.6165716465713578],[118,216,78,0.6240464245074665],[118,216,79,0.6289808009688365],[118,217,64,0.418993898303699],[118,217,65,0.4370889245373009],[118,217,66,0.45450589287064147],[118,217,67,0.47126868662192173],[118,217,68,0.48743175114999604],[118,217,69,0.5030841879974389],[118,217,70,0.5183541193877902],[118,217,71,0.5334133230769518],[118,217,72,0.5484783141247274],[118,217,73,0.5634584220592014],[118,217,74,0.577704735116763],[118,217,75,0.5906321449951422],[118,217,76,0.6017806222861408],[118,217,77,0.6108043532587308],[118,217,78,0.6174611983777211],[118,217,79,0.6216024725579774],[118,218,64,0.41948481380746794],[118,218,65,0.43675608273497135],[118,218,66,0.45338691945061904],[118,218,67,0.4694052720053181],[118,218,68,0.4848664868950217],[118,218,69,0.49985684363219435],[118,218,70,0.514497326540071],[118,218,71,0.5289476337696747],[118,218,72,0.5434066924550206],[118,218,73,0.5577696191114414],[118,218,74,0.5713881984665872],[118,218,75,0.5836811825235005],[118,218,76,0.5941937213212187],[118,218,77,0.6025862421978684],[118,218,78,0.608623663218697],[118,218,79,0.6121649407690373],[118,219,64,0.41487685191659573],[118,219,65,0.43152621752655607],[118,219,66,0.44757932323344346],[118,219,67,0.4630666765525905],[118,219,68,0.4780430868085736],[118,219,69,0.4925906820777417],[118,219,70,0.5068221321421046],[118,219,71,0.5208840774545608],[118,219,72,0.5349571258651874],[118,219,73,0.548921740956111],[118,219,74,0.5621300163291125],[118,219,75,0.5740039874399625],[118,219,76,0.5840932375463121],[118,219,77,0.5920635574557784],[118,219,78,0.5976859516443978],[118,219,79,0.6008259907454375],[118,220,64,0.40529677081703086],[118,220,65,0.4215308823135748],[118,220,66,0.43721897330945647],[118,220,67,0.4523925967174568],[118,220,68,0.4671045993686451],[118,220,69,0.48143166639625],[118,220,70,0.4954770424972814],[118,220,71,0.5093734300718805],[118,220,72,0.5232825187114666],[118,220,73,0.5370697885534481],[118,220,74,0.5500872693608928],[118,220,75,0.5617597014122155],[118,220,76,0.5716403478778314],[118,220,77,0.5793994740238233],[118,220,78,0.5848131846567259],[118,220,79,0.5877526198094216],[118,221,64,0.3909447519405851],[118,221,65,0.40697063249739773],[118,221,66,0.4225061456050519],[118,221,67,0.4375824005884925],[118,221,68,0.45224890332956824],[118,221,69,0.46657567557518986],[118,221,70,0.4806555241968113],[118,221,71,0.4946064604012114],[118,221,72,0.5085708153738622],[118,221,73,0.5223988879027147],[118,221,74,0.5354423093243074],[118,221,75,0.5471279695163976],[118,221,76,0.5570120777685933],[118,221,77,0.5647685006945344],[118,221,78,0.5701774698098816],[118,221,79,0.5731146587760928],[118,222,64,0.37209449843304615],[118,222,65,0.38811464822621117],[118,222,66,0.4037046557878044],[118,222,67,0.4188937602454718],[118,222,68,0.433726832137583],[118,222,69,0.4482661167436397],[118,222,70,0.46259310274454335],[118,222,71,0.4768105162127074],[118,222,72,0.49104107712428474],[118,222,73,0.5051198634035641],[118,222,74,0.5183978388934065],[118,222,75,0.5303035407255794],[118,222,76,0.5403954407755335],[118,222,77,0.5483501810785645],[118,222,78,0.55395118977899],[118,222,79,0.557077677612331],[118,223,64,0.3490927951945494],[118,223,65,0.3652998063576978],[118,223,66,0.38114042858787484],[118,223,67,0.3966407073783829],[118,223,68,0.41183970819395954],[118,223,69,0.4267909336550235],[118,223,70,0.44156384379839747],[118,223,71,0.456245479414495],[118,223,72,0.4709389144981895],[118,223,73,0.48546415352933675],[118,223,74,0.4991713211764047],[118,223,75,0.5114901863948825],[118,223,76,0.5219808855266661],[118,223,77,0.5303220927619665],[118,223,78,0.5362995813332017],[118,223,79,0.5397951754408579],[118,224,64,0.32235853049304064],[118,224,65,0.3389292016381895],[118,224,66,0.35519950353634827],[118,224,67,0.3711911121696727],[118,224,68,0.38693628696613774],[118,224,69,0.4024790114366557],[118,224,70,0.41787621702869565],[118,224,71,0.4331990901963982],[118,224,72,0.4485312751698179],[118,224,73,0.4636780688123119],[118,224,74,0.4779887189547609],[118,224,75,0.49089393674310083],[118,224,76,0.5019550500870696],[118,224,77,0.5108521446035132],[118,224,78,0.5173726047129],[118,224,79,0.5214000548890272],[118,225,64,0.2923811791497092],[118,225,65,0.30947011709725086],[118,225,66,0.3263254771195685],[118,225,67,0.3429635854388826],[118,225,68,0.35940911094614536],[118,225,69,0.37569597760545076],[118,225,70,0.39186834259284553],[118,225,71,0.4079816401695371],[118,225,72,0.4241005873306881],[118,225,73,0.44001639214064076],[118,225,74,0.45507756363866647],[118,225,75,0.46871563533072813],[118,225,76,0.4804928237238933],[118,225,77,0.4900901721721225],[118,225,78,0.4972961034111663],[118,225,79,0.5019953807825615],[118,226,64,0.25971874729782063],[118,226,65,0.27745144365904834],[118,226,66,0.29501638135073244],[118,226,67,0.312423804050855],[118,226,68,0.3296902734573817],[118,226,69,0.346839399350793],[118,226,70,0.36390262022728337],[118,226,71,0.3809200345026186],[118,226,72,0.397938258572059],[118,226,73,0.4147353213676136],[118,226,74,0.430659353939504],[118,226,75,0.44514281153487156],[118,226,76,0.4577487160707808],[118,226,77,0.4681588313247145],[118,226,78,0.47616225435975157],[118,226,79,0.48164442318441075],[118,227,64,0.22490611372760577],[118,227,65,0.24337098169792926],[118,227,66,0.2617312829508043],[118,227,67,0.27999073836817373],[118,227,68,0.2981575936407945],[118,227,69,0.316245209340371],[118,227,70,0.3342726886723568],[118,227,71,0.3522655429094174],[118,227,72,0.3702534473676433],[118,227,73,0.38800245873744676],[118,227,74,0.4048609284608456],[118,227,75,0.4202625668757814],[118,227,76,0.4337713509095168],[118,227,77,0.4450697546640574],[118,227,78,0.4539474027516279],[118,227,79,0.46029014638019083],[118,228,64,0.18807546924834073],[118,228,65,0.20731675118279796],[118,228,66,0.22651403765027683],[118,228,67,0.24566435777472162],[118,228,68,0.2647676940108477],[118,228,69,0.28382747060787805],[118,228,70,0.3028510693601532],[118,228,71,0.32185037264460864],[118,228,72,0.3408394592527828],[118,228,73,0.3595737550109235],[118,228,74,0.3774025043523155],[118,228,75,0.393761067530398],[118,228,76,0.4082145777842939],[118,228,77,0.42044624932587576],[118,228,78,0.4302461138433108],[118,228,79,0.43750018552106623],[118,229,64,0.14927572716616438],[118,229,65,0.16929517096656094],[118,229,66,0.18932913536577756],[118,229,67,0.20936802787562975],[118,229,68,0.22940383983455284],[118,229,69,0.24943056739528377],[118,229,70,0.26944465214918717],[118,229,71,0.2894454413872233],[118,229,72,0.3094328620618264],[118,229,73,0.3291531000865926],[118,229,74,0.3479569694963647],[118,229,75,0.3652818691063895],[118,229,76,0.3806942751305842],[118,229,77,0.3938781471539916],[118,229,78,0.40462376800307703],[118,229,79,0.41281701751384664],[118,230,64,0.10861852938704729],[118,230,65,0.12937897244637397],[118,230,66,0.15021094287555953],[118,230,67,0.17109851440698096],[118,230,68,0.19202615461803574],[118,230,69,0.2129791079025047],[118,230,70,0.23394379333233545],[118,230,71,0.25490821740984615],[118,230,72,0.27585966020705477],[118,230,73,0.2965364755793402],[118,230,74,0.31629171787256294],[118,230,75,0.33456520434239473],[118,230,76,0.35092492851715434],[118,230,77,0.3650555829604571],[118,230,78,0.37674752126647604],[118,230,79,0.38588615928780085],[118,231,64,0.06626722557184571],[118,231,65,0.08769589155652233],[118,231,66,0.10925211723923695],[118,231,67,0.1309141281237995],[118,231,68,0.152659507596262],[118,231,69,0.17446556618422202],[118,231,70,0.19630972393740628],[118,231,71,0.21816990592953656],[118,231,72,0.24002226979162633],[118,231,73,0.2615987295492934],[118,231,74,0.28225523752262693],[118,231,75,0.30143440064687793],[118,231,76,0.318705896436842],[118,231,77,0.3337551292082951],[118,231,78,0.3463723311365646],[118,231,79,0.3564421081522161],[118,232,64,0.05000147698270786],[118,232,65,0.044417088679204894],[118,232,66,0.06659174277383872],[118,232,67,0.08892258913213076],[118,232,68,0.11138111681834753],[118,232,69,0.13393763606807932],[118,232,70,0.15656166675581137],[118,232,71,0.17922234117706745],[118,232,72,0.20188619671385957],[118,232,73,0.2242800518492146],[118,232,74,0.24576339730707325],[118,232,75,0.2657819953230536],[118,232,76,0.28390737354386436],[118,232,77,0.2998256288828591],[118,232,78,0.31332668238457795],[118,232,79,0.324293985098264],[118,233,64,0.04981910586744491],[118,233,65,0.03789450725966746],[118,233,66,0.022403287016174653],[118,233,67,0.04526870630441557],[118,233,68,0.0683079633359412],[118,233,69,0.09148539214680224],[118,233,70,0.11476375639587622],[118,233,71,0.13810467745039112],[118,233,72,0.16146650975390112],[118,233,73,0.1845722405963891],[118,233,74,0.20678552130150474],[118,233,75,0.2275556355369493],[118,233,76,0.24645613651301101],[118,233,77,0.26317380979841165],[118,233,78,0.2774980941665333],[118,233,79,0.2893109604720046],[118,234,64,0.0483595108070726],[118,234,65,0.0371121865281242],[118,234,66,0.021524318243087093],[118,234,67,0.0016030361353900902],[118,234,68,0.023584016496225754],[118,234,69,0.04722825784570653],[118,234,70,0.07101176236217485],[118,234,71,0.0948898791536309],[118,234,72,0.11881410864399373],[118,234,73,0.14250475977013743],[118,234,74,0.16533025083358505],[118,234,75,0.18674376302958182],[118,234,76,0.20632107252160714],[118,234,77,0.22374968034074014],[118,234,78,0.238818408456508],[118,234,79,0.27981006382314144],[118,235,64,0.04572068219341284],[118,235,65,0.03513665550198268],[118,235,66,0.020165762396340672],[118,235,67,8.044095876143798E-4],[118,235,68,-0.022632729661508894],[118,235,69,0.001301780564619312],[118,235,70,0.025419615159987308],[118,235,71,0.04967100982077244],[118,235,72,0.0740017871215967],[118,235,73,0.09813058793427847],[118,235,74,0.12143119416009826],[118,235,75,0.1433610835727125],[118,235,76,0.16349849035379557],[118,235,77,0.192724314781609],[118,235,78,0.2360910337502364],[118,235,79,0.2799779965135064],[118,236,64,0.04199664520218069],[118,236,65,0.032067978584568196],[118,236,66,0.017723513974283886],[118,236,67,-0.0010510010341008291],[118,236,68,-0.024164117996034337],[118,236,69,-0.04616525583848652],[118,236,70,-0.021903740374344546],[118,236,71,0.0025378461154605264],[118,236,72,0.02710062215976866],[118,236,73,0.05150239814399486],[118,236,74,0.07512292478102177],[118,236,75,0.10703154214226163],[118,236,76,0.14939151321554112],[118,236,77,0.19233061040666544],[118,236,78,0.2358985708150671],[118,236,79,0.28004189903001997],[118,237,64,0.04107999614168917],[118,237,65,0.027998328608682704],[118,237,66,0.014296602767026295],[118,237,67,-0.0038573467749320745],[118,237,68,-0.026382550334686755],[118,237,69,-0.05309249063888788],[118,237,70,-0.07112388647721063],[118,237,71,-0.04669239825532121],[118,237,72,-0.015551691634997936],[118,237,73,0.023830951530054267],[118,237,74,0.06483614913459573],[118,237,75,0.10663893103419277],[118,237,76,0.1489471272657919],[118,237,77,0.19190278502474828],[118,237,78,0.23554608490524362],[118,237,79,0.27981366813046377],[118,238,64,0.08966567842644099],[118,238,65,0.06795787933863143],[118,238,66,0.04571103861605724],[118,238,67,0.022961761944456704],[118,238,68,-2.467838197327543E-4],[118,238,69,-0.02386526957656704],[118,238,70,-0.04783867533886761],[118,238,71,-0.05143011699515372],[118,238,72,-0.014886051497003228],[118,238,73,0.024087493948027214],[118,238,74,0.06475808028526231],[118,238,75,0.10630694245561056],[118,238,76,0.14843831510607808],[118,238,77,0.19128304127343576],[118,238,78,0.23487006286378737],[118,238,79,0.279124961867945],[118,239,64,0.13917695867678154],[118,239,65,0.11837379739427899],[118,239,66,0.09695683344191927],[118,239,67,0.07496028835350932],[118,239,68,0.05242617606237095],[118,239,69,0.029403969180993347],[118,239,70,0.005950177340147619],[118,239,71,-0.017872162412538736],[118,239,72,-0.013900263999282958],[118,239,73,0.02453951543727856],[118,239,74,0.06474629204578489],[118,239,75,0.10591093729373742],[118,239,76,0.14773473188424224],[118,239,77,0.19033562600255843],[118,239,78,0.23373001818254308],[118,239,79,0.27783155085700095],[118,240,64,0.18959134510612527],[118,240,65,0.16997558967105902],[118,240,66,0.14966349047291647],[118,240,67,0.1286859064565871],[118,240,68,0.10708295907042094],[118,240,69,0.08490379777016607],[118,240,70,0.062206261058083134],[118,240,71,0.039056433057235246],[118,240,72,0.015530268464117175],[118,240,73,0.025097014013389304],[118,240,74,0.06470623217028271],[118,240,75,0.1053515713075357],[118,240,76,0.1467321192119046],[118,240,77,0.18895171640214337],[118,240,78,0.23201332243421108],[118,240,79,0.27581809784998246],[118,241,64,0.24076891122848554],[118,241,65,0.22262549437859028],[118,241,66,0.2036948424019266],[118,241,67,0.18400354290871254],[118,241,68,0.16358917827673364],[118,241,69,0.14250022694933193],[118,241,70,0.12079584294951053],[118,241,71,0.0985455136101524],[118,241,72,0.07583067791472137],[118,241,73,0.05293113344302275],[118,241,74,0.06457347439242911],[118,241,75,0.1045603136888924],[118,241,76,0.14535773992501896],[118,241,77,0.18705477646965346],[118,241,78,0.22964048681355848],[118,241,79,0.27300336562398986],[118,242,64,0.29247198594277646],[118,242,65,0.2760821828416628],[118,242,66,0.2588057222521757],[118,242,67,0.24066407539232837],[118,242,68,0.2216917150621747],[118,242,69,0.2019361907895169],[118,242,70,0.18145806429206252],[118,242,71,0.16033070525602766],[118,242,72,0.13864192579419735],[118,242,73,0.11667063602809624],[118,242,74,0.09497082226888724],[118,242,75,0.10350547248762221],[118,242,76,0.14357630202296875],[118,242,77,0.18460638381608413],[118,242,78,0.22657089378736248],[118,242,79,0.26934585317791904],[118,243,64,0.3443837209797533],[118,243,65,0.3300198372692404],[118,243,66,0.31466150398190107],[118,243,67,0.2983242903002989],[118,243,68,0.28103905102545323],[118,243,69,0.26285221413181403],[118,243,70,0.24382591036782936],[118,243,71,0.2240379449021006],[118,243,72,0.20358347175609148],[118,243,73,0.18274061251665646],[118,243,74,0.16204551802637424],[118,243,75,0.14196231189459052],[118,243,76,0.1413963717863152],[118,243,77,0.18161252681102225],[118,243,78,0.2228089788531904],[118,243,79,0.2648498602397166],[118,244,64,0.39612553570939774],[118,244,65,0.38404610052187904],[118,244,66,0.370856511846967],[118,244,67,0.35656570787676295],[118,244,68,0.3412004677625769],[118,244,69,0.3248059497628047],[118,244,70,0.30744605299813343],[118,244,71,0.2892036028140734],[118,244,72,0.27018208982816694],[118,244,73,0.25065901657887846],[118,244,74,0.23115086428580967],[118,244,75,0.21210354053524852],[118,244,76,0.19386803469133218],[118,244,77,0.17819138670996204],[118,244,78,0.21847127682183526],[118,244,79,0.2596315525032166],[118,245,64,0.44727343931094127],[118,245,65,0.43771889787985097],[118,245,66,0.4269312985238139],[118,245,67,0.41491227481830223],[118,245,68,0.40168411451900893],[118,245,69,0.38729058531059196],[118,245,70,0.37179756575436307],[118,245,71,0.35529348143490974],[118,245,72,0.33789113370356094],[118,245,73,0.3198676344626302],[118,245,74,0.3017181674375819],[118,245,75,0.2838687191109047],[118,245,76,0.2666542998874037],[118,245,77,0.25032813707459833],[118,245,78,0.23507018266969942],[118,245,79,0.2540834264135545],[118,246,64,0.4973732303045595],[118,246,65,0.4905621308109782],[118,246,66,0.48238879199171314],[118,246,67,0.472846924334376],[118,246,68,0.46195394371345544],[118,246,69,0.4497521198603547],[118,246,70,0.43630951184375066],[118,246,71,0.4217206905602687],[118,246,72,0.4061086823638884],[118,246,73,0.38975048544123525],[118,246,74,0.3731186166840189],[118,246,75,0.356617675971741],[118,246,76,0.34056534052839116],[118,246,77,0.3252014615729683],[118,246,78,0.3106964427169338],[118,246,79,0.2971589001086096],[118,247,64,0.5459545734438516],[118,247,65,0.5420802427372151],[118,247,66,0.5367093111733072],[118,247,67,0.5298270036659286],[118,247,68,0.5214455143321294],[118,247,69,0.5116055102882089],[118,247,70,0.5003774046688325],[118,247,71,0.4878623988692534],[118,247,72,0.4741945660329231],[118,247,73,0.45965110676367166],[118,247,74,0.4446808024360722],[118,247,75,0.42966568416697115],[118,247,76,0.4149049764388859],[118,247,77,0.4006241138437136],[118,247,78,0.3869830047077612],[118,247,79,0.3740835415981082],[118,248,64,0.592543953971159],[118,248,65,0.5917716568021886],[118,248,66,0.5893644503357759],[118,248,67,0.585298569064658],[118,248,68,0.579580663196102],[118,248,69,0.5722496873161071],[118,248,70,0.5633785410634304],[118,248,71,0.5530754618134249],[118,248,72,0.5414862724639034],[118,248,73,0.5288887231103471],[118,248,74,0.5157071241300168],[118,248,75,0.5023000733188578],[118,248,76,0.48894748860360737],[118,248,77,0.4758595627480489],[118,248,78,0.46318492846790205],[118,248,79,0.45101803395436896],[118,249,64,0.6366765092337816],[118,249,65,0.6391410856375742],[118,249,66,0.6398298322503466],[118,249,67,0.6387095482304898],[118,249,68,0.6357810440991442],[118,249,69,0.6310814412850397],[118,249,70,0.6246862072022845],[118,249,71,0.6167109258610826],[118,249,72,0.6073137335573501],[118,249,73,0.5967733005512293],[118,249,74,0.5854890874608499],[118,249,75,0.5737957371088394],[118,249,76,0.5619532961632641],[118,249,77,0.5501561269556603],[118,249,78,0.5385409918481678],[118,249,79,0.5271943101497834],[118,250,64,0.6779067376622527],[118,250,65,0.6837107131296418],[118,250,66,0.6875967301116448],[118,250,67,0.6895217702089218],[118,250,68,0.6894805348178605],[118,250,69,0.6875081776484767],[118,250,70,0.6836827571864121],[118,250,71,0.678127409099011],[118,250,72,0.6710129923117109],[118,250,73,0.6626194850087511],[118,250,74,0.6533214910348992],[118,250,75,0.6434295363783686],[118,250,76,0.6331835369603189],[118,250,77,0.6227616877994442],[118,250,78,0.6122884857174365],[118,250,79,0.6018418855853362],[118,251,64,0.7158180851099882],[118,251,65,0.7250302481851196],[118,251,66,0.7321825582158673],[118,251,67,0.7372218627470574],[118,251,68,0.7401365119927957],[118,251,69,0.7409595421845898],[118,251,70,0.739771564302596],[118,251,71,0.7367033581899737],[118,251,72,0.7319387501049908],[118,251,73,0.7257594252235461],[118,251,74,0.7185155024396069],[118,251,75,0.7104935978423343],[118,251,76,0.7019135516324553],[118,251,77,0.6929373157355243],[118,251,78,0.6836769350518744],[118,251,79,0.6742016223432722],[118,252,64,0.750031408555226],[118,252,65,0.7626858504974735],[118,252,66,0.7731402313990595],[118,252,67,0.7813310171097838],[118,252,68,0.7872399938821268],[118,252,69,0.7908979159290276],[118,252,70,0.7923878449589218],[118,252,71,0.7918481816880054],[118,252,72,0.7894757943095609],[118,252,73,0.785554480225322],[118,252,74,0.7804106237328987],[118,252,75,0.7743075084175797],[118,252,76,0.7674452712563465],[118,252,77,0.7599698104112274],[118,252,78,0.7519807461231572],[118,252,79,0.7435384347063528],[118,253,64,0.7802123171637654],[118,253,65,0.7963079283119032],[118,253,66,0.8100663932335888],[118,253,67,0.8214136203539948],[118,253,68,0.8303246509856551],[118,253,69,0.8368277798257752],[118,253,70,0.8410083552937315],[118,253,71,0.8430122597087225],[118,253,72,0.8430493062372038],[118,253,73,0.8414058113057976],[118,253,74,0.8383855463489397],[118,253,75,0.8342294051632045],[118,253,76,0.8291185085383079],[118,253,77,0.823183154337508],[118,253,78,0.8165107797821027],[118,253,79,0.8091529359400442],[118,254,64,0.8060773907142612],[118,254,65,0.8255778081910328],[118,254,66,0.8426085129850127],[118,254,67,0.8570847550632535],[118,254,68,0.8689746845416952],[118,254,69,0.8783039490988875],[118,254,70,0.8851599604609556],[118,254,71,0.8896958299577691],[118,254,72,0.8921340494176768],[118,254,73,0.8927638584971245],[118,254,74,0.8918678954238375],[118,254,75,0.8896659608363271],[118,254,76,0.8863211525556238],[118,254,77,0.8819488801697088],[118,254,78,0.8766248508416798],[118,254,79,0.8703920263416763],[118,255,64,0.8273992753846368],[118,255,65,0.8502332767796533],[118,255,66,0.8704708513274929],[118,255,67,0.8880165665408678],[118,255,68,0.9028315728946434],[118,255,69,0.9149386773426988],[118,255,70,0.9244270765892648],[118,255,71,0.9314567501146931],[118,255,72,0.9362624382079447],[118,255,73,0.9391367015528165],[118,255,74,0.9403428635381825],[118,255,75,0.9400812650600943],[118,255,76,0.9384982670452313],[118,255,77,0.9356953515932509],[118,255,78,0.9317371535559167],[118,255,79,0.926658422553026],[118,256,64,0.8440106569004566],[118,256,65,0.87007299456953],[118,256,66,0.8934192948189443],[118,256,67,0.9139434974627184],[118,256,68,0.9315996857347253],[118,256,69,0.9464076303321636],[118,256,70,0.9584579854168339],[118,256,71,0.9679171365741754],[118,256,72,0.9750314867341181],[118,256,73,0.9800973054333314],[118,256,74,0.9833607338786788],[118,256,75,0.9850046011062747],[118,256,76,0.9851600922421819],[118,256,77,0.9839159578167501],[118,256,78,0.9813266131972653],[118,256,79,0.9774191281389382],[118,257,64,0.8558071110448029],[118,257,65,0.8849597816636671],[118,257,66,0.911285059135156],[118,257,67,0.9346663899889385],[118,257,68,0.9550507662088844],[118,257,69,0.9724547295521521],[118,257,70,0.9869700216004179],[118,257,71,0.9987688795431897],[118,257,72,1.0081086381645787],[118,257,73,1.015289650294688],[118,257,74,1.0205432928171594],[118,257,75,1.0240371182906565],[118,257,76,1.0258889502660302],[118,257,77,1.0261762216706378],[118,257,78,1.024944163730447],[118,257,79,1.0222128454299626],[118,258,64,0.8627488315301066],[118,258,65,0.8948227755406428],[118,258,66,0.923967261063656],[118,258,67,0.9500554553353668],[118,258,68,0.9730272809038727],[118,258,69,0.9928958654469047],[118,258,70,1.009753632700075],[118,258,71,1.0237780344955563],[118,258,72,1.0352364743158584],[118,258,73,1.0444337459817923],[118,258,74,1.051589131908751],[118,258,75,1.056857399983096],[118,258,76,1.0603450540570731],[118,258,77,1.0621198213132876],[118,258,78,1.0622189515848368],[118,258,79,1.0606563286311126],[118,259,64,0.8648612352313151],[118,259,65,0.8996584608182107],[118,259,66,0.9314343592563403],[118,259,67,0.9600521108036236],[118,259,68,0.9854446377002383],[118,259,69,1.0076214803881796],[118,259,70,1.0266753118379242],[118,259,71,1.0427880899821393],[118,259,72,1.0562363055893966],[118,259,73,1.0673295310244748],[118,259,74,1.0762778393070842],[118,259,75,1.0832259272300166],[118,259,76,1.0882712198601447],[118,259,77,1.09147352554227],[118,259,78,1.0928634655229394],[118,259,79,1.092449678194244],[118,260,64,0.862234444781103],[118,260,65,0.8995305710170637],[118,260,66,0.9337244637419421],[118,260,67,0.9646696842710583],[118,260,68,0.9922922714986159],[118,260,69,1.016598021363664],[118,260,70,1.037679403032656],[118,260,71,1.0557221117985385],[118,260,72,1.0710106412411615],[118,260,73,1.0838596561383476],[118,260,74,1.094473080598768],[118,260,75,1.1029884379916752],[118,260,76,1.1094964832583838],[118,260,77,1.1140510427132235],[118,260,78,1.116677592607526],[118,260,79,1.117380576456676],[118,261,64,0.8550216485264469],[118,261,65,0.894568862323921],[118,261,66,0.930944514197346],[118,261,67,0.9639929861394307],[118,261,68,0.9936335978170481],[118,261,69,1.0198682623842381],[118,261,70,1.0427887792082615],[118,261,71,1.0625837635086373],[118,261,72,1.0795445399823833],[118,261,73,1.09399115222863],[118,261,74,1.106124569055185],[118,261,75,1.116078181992173],[118,261,76,1.1239386187548759],[118,261,77,1.1297557832642005],[118,261,78,1.1335516002652162],[118,261,79,1.135327464543797],[118,262,64,0.8434363378471827],[118,262,65,0.8849667593546733],[118,262,66,0.9232683269785985],[118,262,67,0.958176748743274],[118,262,68,0.989604834260382],[118,262,69,1.0175504966112334],[118,262,70,1.0421043928782086],[118,262,71,1.0634572033253011],[118,262,72,1.081905840912765],[118,262,73,1.097775982898372],[118,262,74,1.1112689253031005],[118,262,75,1.1225170711837569],[118,262,76,1.1316055629037463],[118,262,77,1.1385825358470774],[118,262,78,1.143468044448144],[118,262,79,1.1462616605373246],[118,263,64,0.8277484218360377],[118,263,65,0.8709778729169911],[118,263,66,0.9109335109109301],[118,263,67,0.9474429332171915],[118,263,68,0.980412689860925],[118,263,69,1.0098365982028008],[118,263,70,1.0358036995041173],[118,263,71,1.058505857347236],[118,263,72,1.0782442747851442],[118,263,73,1.095350481460011],[118,263,74,1.1100294264129742],[118,263,75,1.122415725824262],[118,263,76,1.1325957409895568],[118,263,77,1.1406180570648852],[118,263,78,1.1465026038925341],[118,263,79,1.1502484189080222],[118,264,64,0.8082792193403854],[118,264,65,0.852911389772729],[118,264,66,0.8942372518382098],[118,264,67,0.932076903822564],[118,264,68,0.9663309222908998],[118,264,69,0.996988953879995],[118,264,70,1.024137953529606],[118,264,71,1.0479700691527203],[118,264,72,1.068789455602347],[118,264,73,1.086933672451036],[118,264,74,1.1026146444057978],[118,264,75,1.115972416168563],[118,264,76,1.1270972972558695],[118,264,77,1.136040574815926],[118,264,78,1.1428238404750872],[118,264,79,1.1474469312137903],[118,265,64,0.7853953283658243],[118,265,65,0.8311263344001315],[118,265,66,0.8735309659317441],[118,265,67,0.912422469733517],[118,265,68,0.9476957629464771],[118,265,69,0.9793362642122756],[118,265,70,1.0074283770889332],[118,265,71,1.0321636257497875],[118,265,72,1.0538477525457708],[118,265,73,1.0728244776532592],[118,265,74,1.0893159741779024],[118,265,75,1.1034708997734162],[118,265,76,1.1153862286823513],[118,265,77,1.1251182052440294],[118,265,78,1.1326918856664807],[118,265,79,1.1381092680624225],[118,266,64,0.7595013728413373],[118,266,65,0.8060247027556898],[118,266,66,0.8492138217583504],[118,266,67,0.8888757942821386],[118,266,68,0.9249002099034423],[118,266,69,0.957268214622559],[118,266,70,0.9860612013906318],[118,266,71,1.0114691598830983],[118,266,72,1.0337980422359845],[118,266,73,1.05339780661601],[118,266,74,1.0705040508440973],[118,266,75,1.0852771544161197],[118,266,76,1.0978234223108547],[118,266,77,1.1082062832954112],[118,266,78,1.1164560530824919],[118,266,79,1.1225782623395442],[118,267,64,0.7310316267459817],[118,267,65,0.7780434680355381],[118,267,66,0.8217251311075477],[118,267,67,0.8618781716627499],[118,267,68,0.8983871887442634],[118,267,69,0.9312290161115362],[118,267,70,0.9604815807758328],[118,267,71,0.9863324286971769],[118,267,72,1.009086341324986],[118,267,73,1.029099531682894],[118,267,74,1.0466240564987657],[118,267,75,1.061835006626576],[118,267,76,1.0748505961200727],[118,267,77,1.0857436068817201],[118,267,78,1.0945513771323163],[118,267,79,1.1012843337013125],[118,268,64,0.7004405155976743],[118,268,65,0.7476454584369712],[118,268,66,0.7915356085784583],[118,268,67,0.8319076710958362],[118,268,68,0.8686415812571654],[118,268,69,0.9017098157018779],[118,268,70,0.9311863794518723],[118,268,71,0.9572554687566065],[118,268,72,0.9802193194207169],[118,268,73,1.0004403475226893],[118,268,74,1.0181899163954766],[118,268,75,1.0336606558333241],[118,268,76,1.046985143449296],[118,268,77,1.0582475946497918],[118,268,78,1.0674940777645745],[118,268,79,1.0747412543323442],[118,269,64,0.6681919953033377],[118,269,65,0.7153091069193556],[118,269,66,0.7591374999256904],[118,269,67,0.7994696484509082],[118,269,68,0.8361811220064939],[118,269,69,0.869239976601608],[118,269,70,0.8987158309005008],[118,269,71,0.9247886274225057],[118,269,72,0.9477566923431628],[118,269,73,0.9679885151637306],[118,269,74,0.9857773845444808],[118,269,75,1.0013360941229086],[118,269,76,1.0148138809706788],[118,269,77,1.0263083573575242],[118,269,78,1.0358759513104607],[118,269,79,1.043540855968348],[118,270,64,0.6347478083706388],[118,270,65,0.681517072964671],[118,270,66,0.7250335791644579],[118,270,67,0.765086125328559],[118,270,68,0.8015461627746467],[118,270,69,0.8343772280869455],[118,270,70,0.8636440699609866],[118,270,71,0.8895214705855964],[118,270,72,0.9123024957123668],[118,270,73,0.9323614905321219],[118,270,74,0.9500160187284428],[118,270,75,0.9655014216129656],[118,270,76,0.9789857002103904],[118,270,77,0.9905816828562753],[118,270,78,1.0003576874244176],[118,270,79,1.0083466781838613],[118,271,64,0.6005546174819116],[118,271,65,0.6467437363382388],[118,271,66,0.6897250144354438],[118,271,67,0.7292840356021899],[118,271,68,0.765288304875994],[118,271,69,0.7976966851049795],[118,271,70,0.8265685375884407],[118,271,71,0.8520725667561369],[118,271,72,0.8744952388685736],[118,271,73,0.8942164374939414],[118,271,74,0.9115800449365192],[118,271,75,0.9268460574390684],[118,271,76,0.9402031226186487],[118,271,77,0.9517809346797148],[118,271,78,0.961661112122246],[118,271,79,0.9698865579449384],[118,272,64,0.5660300164292816],[118,272,65,0.6114415628487142],[118,272,66,0.6536981026285608],[118,272,67,0.6925823394186131],[118,272,68,0.7279578993420722],[118,272,69,0.7597787375955427],[118,272,70,0.7880982582867985],[118,272,71,0.8130781475102382],[118,272,72,0.8349969391241032],[118,272,73,0.8542396254011154],[118,272,74,0.8711781112165435],[118,272,75,0.886098846355186],[118,272,76,0.899212758188564],[118,272,77,0.9106678642391463],[118,272,78,0.9205603569167182],[118,272,79,0.9289441604269413],[118,273,64,0.5315474184115375],[118,273,65,0.5760263421078149],[118,273,66,0.617409872765996],[118,273,67,0.6554780046578559],[118,273,68,0.6900904149782953],[118,273,69,0.7211958095324412],[118,273,70,0.7488409902165397],[118,273,71,0.7731796442925494],[118,273,72,0.7944810363468587],[118,273,73,0.8131347111407838],[118,273,74,0.8295419309450502],[118,273,75,0.8440170609473918],[118,273,76,0.8567946676233587],[118,273,77,0.8680423366247783],[118,273,78,0.8778719540501169],[118,273,79,0.886349451096779],[118,274,64,0.49746638563489826],[118,274,65,0.5409025016756067],[118,274,66,0.5813085020631833],[118,274,67,0.6184616671828154],[118,274,68,0.6522175076939655],[118,274,69,0.6825190222289211],[118,274,70,0.7094056844759461],[118,274,71,0.7330221596469495],[118,274,72,0.7536271028092387],[118,274,73,0.771613925149432],[118,274,74,0.7874141961442234],[118,274,75,0.8013713034152028],[118,274,76,0.813744519541873],[118,274,77,0.8247220118804854],[118,274,78,0.8344323082152395],[118,274,79,0.8429542182418917],[118,275,64,0.46444309170406806],[118,275,65,0.5067341828780657],[118,275,66,0.5460657624691417],[118,275,67,0.5822124149034357],[118,275,68,0.6150253031400301],[118,275,69,0.6444413129659264],[118,275,70,0.6704919333678767],[118,275,71,0.693311872980986],[118,275,72,0.713147945030002],[118,275,73,0.7303966979854181],[118,275,74,0.7455206290182319],[118,275,75,0.7588929281003003],[118,275,76,0.7707983492675324],[118,275,77,0.7814463984024956],[118,275,78,0.790982970604033],[118,275,79,0.7995004371439368],[118,276,64,0.43318326593342626],[118,276,65,0.47421978756748684],[118,276,66,0.5123727935412878],[118,276,67,0.5474142928251423],[118,276,68,0.5791910300502133],[118,276,69,0.6076334918970415],[118,276,70,0.6327646556104517],[118,276,71,0.654708479640749],[118,276,72,0.6736988553077752],[118,276,73,0.6901347331734262],[118,276,74,0.7045098561030079],[118,276,75,0.7172276816522464],[118,276,76,0.7285989272272173],[118,276,77,0.7388549219782846],[118,276,78,0.7481594035565197],[118,276,79,0.75661875973264],[118,277,64,0.40423629676544587],[118,277,65,0.44390738555836],[118,277,66,0.48077642150882205],[118,277,67,0.5146130253936235],[118,277,68,0.5452595293871753],[118,277,69,0.5726398226071117],[118,277,70,0.5967679444364937],[118,277,71,0.6177564256225219],[118,277,72,0.6358252873338296],[118,277,73,0.651375130859773],[118,277,74,0.6649309615319287],[118,277,75,0.6769266554798383],[118,277,76,0.6876990808612748],[118,277,77,0.6975016006765636],[118,277,78,0.7065160174074089],[118,277,79,0.7148629594802741],[118,278,64,0.37799025159811506],[118,278,65,0.41618922553170185],[118,278,66,0.4516731706135003],[118,278,67,0.48420953857925425],[118,278,68,0.5136362980714477],[118,278,69,0.5398705985752548],[118,278,70,0.562917187614306],[118,278,71,0.582876581206193],[118,278,72,0.5999540922289118],[118,278,73,0.6145511983914747],[118,278,74,0.6272238960650779],[118,278,75,0.638436328451189],[118,278,76,0.648551416076226],[118,278,77,0.6578444985798356],[118,278,78,0.6665154170898818],[118,278,79,0.6746990371841832],[118,279,64,0.35466703964997504],[118,279,65,0.39129624832788035],[118,279,66,0.42530314223363896],[118,279,67,0.4564532216808066],[118,279,68,0.48458015128887577],[118,279,69,0.5095942242543573],[118,279,70,0.5314905854218391],[118,279,71,0.5503572131549387],[118,279,72,0.5663839608671339],[118,279,73,0.5799723820823188],[118,279,74,0.5917089300015864],[118,279,75,0.6020875844820444],[118,279,76,0.6114969532383294],[118,279,77,0.6202340425293349],[118,279,78,0.6285164690557676],[118,279,79,0.6364931130685767],[118,280,64,0.3343162689557283],[118,280,65,0.36929131539029536],[118,280,66,0.4017426332480456],[118,280,67,0.43143395515611893],[118,280,68,0.4581946798840518],[118,280,69,0.48192812208658486],[118,280,70,0.5026195266618777],[118,280,71,0.5203438477250523],[118,280,72,0.5352747898016855],[118,280,73,0.547813155091975],[118,280,74,0.5585750947808841],[118,280,75,0.5680837517987974],[118,280,76,0.5767528185126202],[118,280,77,0.5849004287823846],[118,280,78,0.5927614937248981],[118,280,79,0.6004984811844772],[118,281,64,0.3168077974921027],[118,281,65,0.35006115235949564],[118,281,66,0.38089549363935216],[118,281,67,0.4090729044790977],[118,281,68,0.4344185028390174],[118,281,69,0.45682846545406597],[118,281,70,0.47627782271730496],[118,281,71,0.49282802448487784],[118,281,72,0.5066359707912337],[118,281,73,0.5181008614169155],[118,281,74,0.5278676132715443],[118,281,75,0.5364876638748093],[118,281,76,0.5443989905459478],[118,281,77,0.551940119580628],[118,281,78,0.5593625834620282],[118,281,79,0.5668418261061622],[118,282,64,0.30182297843385214],[118,282,65,0.33330700781771583],[118,282,66,0.3624832233368341],[118,282,67,0.38911208002324],[118,282,68,0.4130143148375162],[118,282,69,0.4340787375651504],[118,282,70,0.4522697996469511],[118,282,71,0.46763494094344654],[118,282,72,0.4803136039277031],[118,282,73,0.49070251599393444],[118,282,74,0.49947431874860415],[118,282,75,0.5072077420409917],[118,282,76,0.5143641024950526],[118,282,77,0.5213014296302501],[118,282,78,0.5282870460825102],[118,282,79,0.5355086019253438],[118,283,64,0.288844599540861],[118,283,65,0.31853402718470314],[118,283,66,0.3460338082994907],[118,283,67,0.37110266297234556],[118,283,68,0.39355672891537463],[118,283,69,0.41327711627670244],[118,283,70,0.4302172483223759],[118,283,71,0.4444099879890741],[118,283,72,0.45597663436559693],[118,283,73,0.4653105609163286],[118,283,74,0.4731110625593212],[118,283,75,0.47998309977053355],[118,283,76,0.4864102993994739],[118,283,77,0.49276920249389505],[118,283,78,0.4993419738863469],[118,283,79,0.5063275735426371],[118,284,64,0.2771675390228062],[118,284,65,0.3050610829369309],[118,284,66,0.33089072777340334],[118,284,67,0.3544131950834455],[118,284,68,0.37543965662057643],[118,284,69,0.39384305452241186],[118,284,70,0.4095652164447219],[118,284,71,0.422623765647675],[118,284,72,0.4331211040963041],[118,284,73,0.44144636432610895],[118,284,74,0.448324469442],[118,284,75,0.45438556316996953],[118,284,76,0.46013453322139264],[118,284,77,0.4659653911755074],[118,284,78,0.4721741231979565],[118,284,79,0.47897001159544944],[118,285,64,0.26656534073433746],[118,285,65,0.29267852561945973],[118,285,66,0.31686102053971715],[118,285,67,0.3388672000026298],[118,285,68,0.35850283627570223],[118,285,69,0.37563219029429257],[118,285,70,0.3901849078655085],[118,285,71,0.40216272116805896],[118,285,72,0.41164842530671275],[118,285,73,0.41902593998830484],[118,285,74,0.4250444479524489],[118,285,75,0.43035790318108147],[118,285,76,0.43549112755202213],[118,285,77,0.44085433106185257],[118,285,78,0.44675611344920063],[118,285,79,0.45341494721848746],[118,286,64,0.25746734410303],[118,286,65,0.281824191387622],[118,286,66,0.3043898318818532],[118,286,67,0.3249159702995351],[118,286,68,0.3432026045364105],[118,286,69,0.35910489575965904],[118,286,70,0.3725398553811574],[118,286,71,0.38349284891442675],[118,286,72,0.39202657141833924],[118,286,73,0.39851860431569675],[118,286,74,0.40374021169168745],[118,286,75,0.4083670476710145],[118,286,76,0.4129419502324763],[118,286,77,0.4178895991268491],[118,286,78,0.42352966762704247],[118,286,79,0.430088468110579],[118,287,64,0.2502369703652303],[118,287,65,0.27287127607678074],[118,287,66,0.2938587665948613],[118,287,67,0.3129481907640943],[118,287,68,0.3299334693145122],[118,287,69,0.3446603556339187],[118,287,70,0.3570329262123944],[118,287,71,0.36701990075887264],[118,287,72,0.37466362068386916],[118,287,73,0.3803340972526442],[118,287,74,0.38482176958795733],[118,287,75,0.388821218011736],[118,287,76,0.39289084817748365],[118,287,77,0.3974676739921381],[118,287,78,0.4028806089940076],[118,287,79,0.4093622661868338],[118,288,64,0.24513729003338303],[118,288,65,0.2660939706282036],[118,288,66,0.28555167331745224],[118,288,67,0.30325594607728384],[118,288,68,0.3189944072963248],[118,288,69,0.33260321171262697],[118,288,70,0.34397335995205713],[118,288,71,0.3530568516680549],[118,288,72,0.359875670239992],[118,288,73,0.36479096802591393],[118,288,74,0.3686088362699914],[118,288,75,0.3720394437303187],[118,288,76,0.3756538667511801],[118,288,77,0.3798989758370773],[118,288,78,0.3851108477527856],[118,288,79,0.3915267031494945],[118,289,64,0.24234128133866759],[118,289,65,0.2616772285042709],[118,289,66,0.27966394516512905],[118,289,67,0.296043578711947],[118,289,68,0.3105973023510713],[118,289,69,0.323151603548318],[118,289,70,0.33358443106976876],[118,289,71,0.3418312006194723],[118,289,72,0.3478937882211048],[118,289,73,0.35212318693554195],[118,289,74,0.3553371083070751],[118,289,75,0.35825750506972154],[118,289,76,0.3614648583285309],[118,289,77,0.3654131390750707],[118,289,78,0.37044331493306515],[118,289,79,0.37679540213424273],[118,290,64,0.24194160913016],[118,290,65,0.25972609263359897],[118,290,66,0.27631141805542336],[118,290,67,0.2914361817156329],[118,290,68,0.3048750550138474],[118,290,69,0.3164449154131354],[118,290,70,0.3260108519945184],[118,290,71,0.33349204558208445],[118,290,72,0.33887077278624655],[118,290,73,0.34248659633465567],[118,290,74,0.34516441114180735],[118,290,75,0.34763377675385887],[118,290,76,0.35048102137140563],[118,290,77,0.35416424345830055],[118,290,78,0.3590268810447619],[118,290,79,0.36530984872482575],[118,291,64,0.2439599242320577],[118,291,65,0.2602745818875245],[118,291,66,0.2755388667266017],[118,291,67,0.2894877263767292],[118,291,68,0.3018893630443569],[118,291,69,0.3125512295483847],[118,291,70,0.3213259167762015],[118,291,71,0.3281169325622614],[118,291,72,0.332887718060185],[118,291,73,0.33596520079912245],[118,291,74,0.33817671671637217],[118,291,75,0.34025497295771606],[118,291,76,0.3427883700200228],[118,291,77,0.34623600361153684],[118,291,78,0.3509412594982767],[118,291,79,0.35714400133660495],[118,292,64,0.2483556832579176],[118,292,65,0.2632941370869978],[118,292,66,0.27732809844897477],[118,292,67,0.2901888247731039],[118,292,68,0.3016381730607105],[118,292,69,0.3114744857003748],[118,292,70,0.31953838532555046],[118,292,71,0.3257184787145575],[118,292,72,0.3299603869882079],[118,292,73,0.33257729648662243],[118,292,74,0.33439403179196653],[118,292,75,0.3361417934822005],[118,292,76,0.3384071341994859],[118,292,77,0.3416469169947761],[118,292,78,0.34620189479156205],[118,292,79,0.35230891096882616],[118,293,64,0.2550344888824816],[118,293,65,0.26870162654037133],[118,293,66,0.2816056444292225],[118,293,67,0.2934741272036034],[118,293,68,0.30406280324856677],[118,293,69,0.3131613469427694],[118,293,70,0.3205991082326252],[118,293,71,0.3262507695174274],[118,293,72,0.3300453911046902],[118,293,73,0.33228143968518375],[118,293,74,0.33377615696138596],[118,293,75,0.3352544711337004],[118,293,76,0.3372970902413565],[118,293,77,0.34035537029463636],[118,293,78,0.34476483546390685],[118,293,79,0.35075735032551136],[118,294,64,0.26385595057094324],[118,294,65,0.2763669111119848],[118,294,66,0.2882500489076693],[118,294,67,0.299229354502371],[118,294,68,0.3090547371456138],[118,294,69,0.31750777178547607],[118,294,70,0.3244073921639167],[118,294,71,0.3296155300139634],[118,294,72,0.3330461772155432],[118,294,73,0.33498225455130143],[118,294,74,0.33622831635490985],[118,294,75,0.3374982203085044],[118,294,76,0.33936282202043655],[118,294,77,0.3422647042446897],[118,294,78,0.3465315918166332],[118,294,79,0.35238845230516874],[118,295,64,0.2746410657653896],[118,295,65,0.28611996882128776],[118,295,66,0.29709875594827134],[118,295,67,0.3072979652357608],[118,295,68,0.3164620885011744],[118,295,69,0.32436529256985974],[118,295,70,0.33081710583785817],[118,295,71,0.3356680701174493],[118,295,72,0.33881882099433625],[118,295,73,0.34053608003743374],[118,295,74,0.34160665803927376],[118,295,75,0.34272858678187246],[118,295,76,0.34445891260654066],[118,295,77,0.3472282368745089],[118,295,78,0.35135397840046917],[118,295,79,0.35705235785908634],[118,296,64,0.2871791215289558],[118,296,65,0.29775757897299837],[118,296,66,0.3079545939217617],[118,296,67,0.3174874577822542],[118,296,68,0.32609573721131185],[118,296,69,0.333547000150638],[118,296,70,0.3396425265790747],[118,296,71,0.34422300398205175],[118,296,72,0.3471776274924064],[118,296,73,0.3487564560091829],[118,296,74,0.34972362511004135],[118,296,75,0.3507566987020676],[118,296,76,0.35239506643157437],[118,296,77,0.3550542451877533],[118,296,78,0.3590389412699418],[118,296,79,0.36455487321855473],[118,297,64,0.3012341166471254],[118,297,65,0.31104956581776555],[118,297,66,0.3205918576814665],[118,297,67,0.32957530729492773],[118,297,68,0.3377351363290069],[118,297,69,0.34483323486403966],[118,297,70,0.35066392745096997],[118,297,71,0.35505974343824376],[118,297,72,0.3579005385625472],[118,297,73,0.35941944855174535],[118,297,74,0.3603531974769387],[118,297,75,0.3613544187888972],[118,297,76,0.36294116197144943],[118,297,77,0.3655109052687985],[118,297,78,0.36935337000425983],[118,297,79,0.37466213649047164],[118,298,64,0.3165507041866106],[118,298,65,0.32574460174375597],[118,298,66,0.33476198843219546],[118,298,67,0.3433145375468609],[118,298,68,0.35113379014979584],[118,298,69,0.35797698378262455],[118,298,70,0.36363290496705947],[118,298,71,0.36792776549339784],[118,298,72,0.3707343471967376],[118,298,73,0.3722688144661241],[118,298,74,0.37323600434268933],[118,298,75,0.37425939773734074],[118,298,76,0.3758322349434533],[118,298,77,0.3783311908185767],[118,298,78,0.3820288944954098],[118,298,79,0.3871052936220925],[118,299,64,0.3328596545114975],[118,299,65,0.3415755699988505],[118,299,66,0.3501988512918874],[118,299,67,0.3584389276591602],[118,299,68,0.36602440337252795],[118,299,69,0.37270898425640175],[118,299,70,0.3782774473806496],[118,299,71,0.38255165389710355],[118,299,72,0.3853997187774262],[118,299,73,0.38702100495456576],[118,299,74,0.38808430737475397],[118,299,75,0.3891800288256115],[118,299,76,0.3907733920183604],[118,299,77,0.39321773011885053],[118,299,78,0.3967666665026174],[118,299,79,0.40158518373402124],[118,300,64,0.34988283875699944],[118,300,65,0.35826448694379],[118,300,66,0.36662361054636133],[118,300,67,0.37466785371196004],[118,300,68,0.3821237013356219],[118,300,69,0.3887425337406508],[118,300,70,0.3943067435533138],[118,300,71,0.39863591477170646],[118,300,72,0.4015960192429111],[118,300,73,0.4033700084958224],[118,300,74,0.40458685457062876],[118,300,75,0.40580030372836656],[118,300,76,0.4074446550480644],[118,300,77,0.40984762142576237],[118,300,78,0.41324212597408333],[118,300,79,0.417777033822408],[118,301,64,0.36733773276035836],[118,301,65,0.3755269838358254],[118,301,66,0.3837492025967174],[118,301,67,0.39171076523793635],[118,301,68,0.39913692132834644],[118,301,69,0.405778005909944],[118,301,70,0.4114157324016217],[118,301,71,0.4158695663074855],[118,301,72,0.4190059501661926],[118,301,73,0.42099203290955783],[118,301,74,0.422413604815979],[118,301,75,0.4237845695342851],[118,301,76,0.4255057358078923],[118,301,77,0.4278772067917678],[118,301,78,0.43110975213504893],[118,301,79,0.43533516282936235],[118,302,64,0.3849414414492872],[118,302,65,0.39307634814324666],[118,302,66,0.4012844065997805],[118,302,67,0.40927129659873984],[118,302,68,0.4167619749775423],[118,302,69,0.4235070730588246],[118,302,70,0.42928939292261914],[118,302,71,0.43393050252300736],[118,302,72,0.4372999907478801],[118,302,73,0.43955002661054077],[118,302,74,0.441220323136297],[118,302,75,0.44278218696876515],[118,302,76,0.44460074125440996],[118,302,77,0.4469468043168164],[118,302,78,0.4500077993431062],[118,302,79,0.4538976950825433],[118,303,64,0.40241424368801826],[118,303,65,0.41062712439085897],[118,303,66,0.41893751280161595],[118,303,67,0.4270510132443469],[118,303,68,0.43469328170975274],[118,303,69,0.44161663478904745],[118,303,70,0.44760677479790445],[118,303,71,0.4524896310904418],[118,303,72,0.4561406467228757],[118,303,73,0.4586980390522658],[118,303,74,0.46065304664165246],[118,303,75,0.4624320898212239],[118,303,76,0.464362809298127],[118,303,77,0.46668539882810955],[118,303,78,0.46956301771000647],[118,303,79,0.4730912831031084],[118,304,64,0.4194826575802239],[118,304,65,0.4278982745356965],[118,304,66,0.43641958856347096],[118,304,67,0.444752792854733],[118,304,68,0.4526252732882328],[118,304,69,0.45979245298294047],[118,304,70,0.4660447695759477],[118,304,71,0.47121478522557597],[118,304,72,0.4751865061806626],[118,304,73,0.4780854203599416],[118,304,74,0.480352421164582],[118,304,75,0.4823672455771606],[118,304,76,0.4844186750913651],[118,304,77,0.48671529098881305],[118,304,78,0.4893953584904584],[118,304,79,0.4925358397826236],[118,305,64,0.4358820262299372],[118,305,65,0.4446158978740533],[118,305,66,0.45344734208114534],[118,305,67,0.4620838413648106],[118,305,68,0.4702555694256883],[118,305,69,0.47772249306363324],[118,305,70,0.484281622433295],[118,305,71,0.48977440964305985],[118,305,72,0.49409610229962],[118,305,73,0.4973608601531405],[118,305,74,0.49995790859128547],[118,305,75,0.5022190172550219],[118,305,76,0.5043931678312077],[118,305,77,0.5066567048355083],[118,305,78,0.5091226642375656],[118,305,79,0.5118492799284516],[118,306,64,0.4513586239595231],[118,306,65,0.4605155104789415],[118,306,66,0.4697455837969732],[118,306,67,0.4787583438718706],[118,306,68,0.4872878244720764],[118,306,69,0.49509997154158725],[118,306,70,0.5020001845141884],[118,306,71,0.507841020576522],[118,306,72,0.512531582995113],[118,306,73,0.5161762655579754],[118,306,74,0.5191118648861155],[118,306,75,0.5216214264479753],[118,306,76,0.5239136380777502],[118,306,77,0.5261323537447256],[118,306,78,0.5283653437253677],[118,306,79,0.5306522711781998],[118,307,64,0.465671282985172],[118,307,65,0.47534388416838536],[118,307,66,0.4850492855047641],[118,307,67,0.49449975042583016],[118,307,68,0.5034342451776919],[118,307,69,0.5116261098475591],[118,307,70,0.5188909058486593],[118,307,71,0.525094439863516],[118,307,72,0.5301621874812235],[118,307,73,0.5341904784085747],[118,307,74,0.5374634888090284],[118,307,75,0.5402153175701591],[118,307,76,0.5426143155871292],[118,307,77,0.544771964827942],[118,307,78,0.5467510316377776],[118,307,79,0.5485729942824391],[118,308,64,0.4785925405495892],[118,308,65,0.48886044500429393],[118,308,66,0.49910523714750465],[118,308,67,0.5090426967021293],[118,308,68,0.5184177795314511],[118,308,69,0.5270125944520021],[118,308,70,0.5346545688491632],[118,308,71,0.5412248030954592],[118,308,72,0.5466675297463722],[118,308,73,0.551072831638193],[118,308,74,0.5546726413264309],[118,308,75,0.5576524233079375],[118,308,76,0.5601405976599383],[118,308,77,0.5622167617557312],[118,308,78,0.5639192330246787],[118,308,79,0.5652519127565202],[118,309,64,0.48990930651273645],[118,309,65,0.5008382313226876],[118,309,66,0.5116733013085242],[118,309,67,0.5221345595579263],[118,309,68,0.5319739766749463],[118,309,69,0.540983743271368],[118,309,70,0.5490047623861385],[118,309,71,0.5559353418328403],[118,309,72,0.5617406889430029],[118,309,73,0.5665065448600234],[118,309,74,0.570413535715375],[118,309,75,0.5735993312759987],[118,309,76,0.5761532680047714],[118,309,77,0.5781239060107112],[118,309,78,0.5795259525247297],[118,309,79,0.5803465519009536],[118,310,64,0.4994230513989061],[118,310,65,0.5110644112936532],[118,310,66,0.5225272653945875],[118,310,67,0.5335366474701307],[118,310,68,0.5438525178909044],[118,310,69,0.5532783783600754],[118,310,70,0.5616700964413668],[118,310,71,0.5689449398847],[118,310,72,0.5750911066904659],[118,310,73,0.5801919591369833],[118,310,74,0.5843782983605113],[118,310,75,0.5877413518778521],[118,310,76,0.5903326461165791],[118,310,77,0.5921708965691025],[118,310,78,0.5932483083548262],[118,310,79,0.5935362871904222],[118,311,64,0.5069495149023355],[118,311,65,0.519340360013132],[118,311,66,0.5314552915129261],[118,311,67,0.5430250258571938],[118,311,68,0.553818418667863],[118,311,69,0.5636514048898185],[118,311,70,0.5723961573406774],[118,311,71,0.5799904636537908],[118,311,72,0.5864472912923634],[118,311,73,0.5918496109415838],[118,311,74,0.5962804002447646],[118,311,75,0.5997862873715291],[118,311,76,0.6023826671704976],[118,311,77,0.6040599280114137],[118,311,78,0.6047891310665847],[118,311,79,0.6045271420316508],[118,312,64,0.5123179348493961],[118,312,65,0.5254812961246806],[118,312,66,0.5382599640404324],[118,312,67,0.5503909772829708],[118,312,68,0.5616529018394802],[118,312,69,0.5718750964147589],[118,312,70,0.5809472035646641],[118,312,71,0.5888288665462084],[118,312,72,0.595559328867274],[118,312,73,0.6012231453049444],[118,312,74,0.6058579591329206],[118,312,75,0.609468102139817],[118,312,76,0.6120348924306078],[118,312,77,0.6135222070618379],[118,312,78,0.6138815470695539],[118,312,79,0.6130565948899633],[118,313,64,0.5153697966187109],[118,313,65,0.5293154779724564],[118,313,66,0.5427579348861928],[118,313,67,0.5554410965437551],[118,313,68,0.5671539417994924],[118,313,69,0.5777400864235076],[118,313,70,0.587107602138218],[118,313,71,0.5952390674461984],[118,313,72,0.6022012013934673],[118,313,73,0.6080820681554437],[118,313,74,0.6128769124485187],[118,313,75,0.6165504941653162],[118,313,76,0.6190524501738188],[118,313,77,0.6203222275564608],[118,313,78,0.620293546921184],[118,313,79,0.61889839578447],[118,314,64,0.5159571030181329],[118,314,65,0.5306829592844562],[118,314,66,0.5447791664464661],[118,314,67,0.5579970206376543],[118,314,68,0.5701364797915661],[118,314,69,0.581056066177242],[118,314,70,0.5906830055983062],[118,314,71,0.5990236032556536],[118,314,72,0.6061729116671994],[118,314,73,0.612224337846702],[118,314,74,0.6171340608438233],[118,314,75,0.6208303677101739],[118,314,76,0.6232339071288091],[118,314,77,0.6242620038402881],[118,314,78,0.6238325383836044],[118,314,79,0.6218673921520008],[118,315,64,0.513940164619952],[118,315,65,0.5294339043872871],[118,315,66,0.5441657722532999],[118,315,67,0.5578947936174425],[118,315,68,0.5704323102750951],[118,315,69,0.5816521888349053],[118,315,70,0.5915012695408641],[118,315,71,0.6000100554990815],[118,315,72,0.6073024151752848],[118,315,73,0.6134787958754808],[118,315,74,0.6184599824633814],[118,315,75,0.6221412072009209],[118,315,76,0.6244170704303618],[118,315,77,0.6251852625933485],[118,315,78,0.6243498842474096],[118,315,79,0.6218243640799063],[118,316,64,0.5091849105526574],[118,316,65,0.5254264629508695],[118,316,66,0.5407704553152657],[118,316,67,0.5549838663254173],[118,316,68,0.5678896383655608],[118,316,69,0.5793771798642074],[118,316,70,0.5894131107455929],[118,316,71,0.5980522509929194],[118,316,72,0.6054473588809167],[118,316,73,0.6117074367885852],[118,316,74,0.6167218179003273],[118,316,75,0.6203563523176574],[118,316,76,0.6224827200884372],[118,316,77,0.6229815930853043],[118,316,78,0.6217454249219624],[118,316,79,0.6186808689073364],[118,317,64,0.5015597197503969],[118,317,65,0.5185242042641722],[118,317,66,0.5344545441513691],[118,317,67,0.5491257310113018],[118,317,68,0.5623723083504306],[118,317,69,0.5740991537393392],[118,317,70,0.5842925058795341],[118,317,71,0.5930312365800213],[118,317,72,0.60049662692349],[118,317,73,0.6068075172794425],[118,317,74,0.6118259258460685],[118,317,75,0.6153921742881631],[118,317,76,0.6173582719724945],[118,317,77,0.6175905558590173],[118,317,78,0.615971985792605],[118,317,79,0.6124040951953013],[118,318,64,0.4909317726603714],[118,318,65,0.5085931110422188],[118,318,66,0.5250856265183594],[118,318,67,0.5401921908333851],[118,318,68,0.5537587032807999],[118,318,69,0.5657051369256008],[118,318,70,0.5760368307796051],[118,318,71,0.5848560279294781],[118,318,72,0.592371693232597],[118,318,73,0.5987135044745395],[118,318,74,0.60372040943351],[118,318,75,0.6072111533870881],[118,318,76,0.6090213713112118],[118,318,77,0.6090057498432214],[118,318,78,0.6070398693449235],[118,318,79,0.6030217260656829],[118,319,64,0.4771629234065812],[118,319,65,0.49549813276281135],[118,319,66,0.5125347808299481],[118,319,67,0.5280632642414789],[118,319,68,0.5419403156373911],[118,319,69,0.554100297149618],[118,319,70,0.5645667403128398],[118,319,71,0.5734641324005986],[118,319,72,0.5810277810550729],[118,319,73,0.5873988634086451],[118,319,74,0.592397513272825],[118,319,75,0.595824857639291],[118,319,76,0.5975034167067409],[118,319,77,0.5972788378934952],[118,319,78,0.5950213320553261],[118,319,79,0.5906268119085043],[119,-64,64,64.0],[119,-64,65,64.0],[119,-64,66,64.0],[119,-64,67,64.0],[119,-64,68,64.0],[119,-64,69,64.0],[119,-64,70,64.0],[119,-64,71,64.0],[119,-64,72,64.0],[119,-64,73,64.0],[119,-64,74,64.0],[119,-64,75,64.0],[119,-64,76,64.0],[119,-64,77,64.0],[119,-64,78,64.0],[119,-64,79,64.0],[119,-63,64,64.0],[119,-63,65,64.0],[119,-63,66,64.0],[119,-63,67,64.0],[119,-63,68,64.0],[119,-63,69,64.0],[119,-63,70,64.0],[119,-63,71,64.0],[119,-63,72,64.0],[119,-63,73,64.0],[119,-63,74,64.0],[119,-63,75,64.0],[119,-63,76,64.0],[119,-63,77,64.0],[119,-63,78,64.0],[119,-63,79,64.0],[119,-62,64,64.0],[119,-62,65,64.0],[119,-62,66,64.0],[119,-62,67,64.0],[119,-62,68,64.0],[119,-62,69,64.0],[119,-62,70,64.0],[119,-62,71,64.0],[119,-62,72,64.0],[119,-62,73,64.0],[119,-62,74,64.0],[119,-62,75,64.0],[119,-62,76,64.0],[119,-62,77,64.0],[119,-62,78,64.0],[119,-62,79,64.0],[119,-61,64,64.0],[119,-61,65,64.0],[119,-61,66,64.0],[119,-61,67,64.0],[119,-61,68,64.0],[119,-61,69,64.0],[119,-61,70,64.0],[119,-61,71,64.0],[119,-61,72,64.0],[119,-61,73,64.0],[119,-61,74,64.0],[119,-61,75,64.0],[119,-61,76,64.0],[119,-61,77,64.0],[119,-61,78,64.0],[119,-61,79,64.0],[119,-60,64,64.0],[119,-60,65,64.0],[119,-60,66,64.0],[119,-60,67,64.0],[119,-60,68,64.0],[119,-60,69,64.0],[119,-60,70,64.0],[119,-60,71,64.0],[119,-60,72,64.0],[119,-60,73,64.0],[119,-60,74,64.0],[119,-60,75,64.0],[119,-60,76,64.0],[119,-60,77,64.0],[119,-60,78,64.0],[119,-60,79,64.0],[119,-59,64,64.0],[119,-59,65,64.0],[119,-59,66,64.0],[119,-59,67,64.0],[119,-59,68,64.0],[119,-59,69,64.0],[119,-59,70,64.0],[119,-59,71,64.0],[119,-59,72,64.0],[119,-59,73,64.0],[119,-59,74,64.0],[119,-59,75,64.0],[119,-59,76,64.0],[119,-59,77,64.0],[119,-59,78,64.0],[119,-59,79,64.0],[119,-58,64,64.0],[119,-58,65,64.0],[119,-58,66,64.0],[119,-58,67,64.0],[119,-58,68,64.0],[119,-58,69,64.0],[119,-58,70,64.0],[119,-58,71,64.0],[119,-58,72,64.0],[119,-58,73,64.0],[119,-58,74,64.0],[119,-58,75,64.0],[119,-58,76,64.0],[119,-58,77,64.0],[119,-58,78,64.0],[119,-58,79,64.0],[119,-57,64,64.0],[119,-57,65,64.0],[119,-57,66,64.0],[119,-57,67,64.0],[119,-57,68,64.0],[119,-57,69,64.0],[119,-57,70,64.0],[119,-57,71,64.0],[119,-57,72,64.0],[119,-57,73,64.0],[119,-57,74,64.0],[119,-57,75,64.0],[119,-57,76,64.0],[119,-57,77,64.0],[119,-57,78,64.0],[119,-57,79,64.0],[119,-56,64,64.0],[119,-56,65,64.0],[119,-56,66,64.0],[119,-56,67,64.0],[119,-56,68,64.0],[119,-56,69,64.0],[119,-56,70,64.0],[119,-56,71,64.0],[119,-56,72,64.0],[119,-56,73,64.0],[119,-56,74,64.0],[119,-56,75,64.0],[119,-56,76,64.0],[119,-56,77,64.0],[119,-56,78,64.0],[119,-56,79,64.0],[119,-55,64,64.0],[119,-55,65,64.0],[119,-55,66,64.0],[119,-55,67,64.0],[119,-55,68,64.0],[119,-55,69,64.0],[119,-55,70,64.0],[119,-55,71,64.0],[119,-55,72,64.0],[119,-55,73,64.0],[119,-55,74,64.0],[119,-55,75,64.0],[119,-55,76,64.0],[119,-55,77,64.0],[119,-55,78,64.0],[119,-55,79,64.0],[119,-54,64,64.0],[119,-54,65,64.0],[119,-54,66,64.0],[119,-54,67,64.0],[119,-54,68,64.0],[119,-54,69,64.0],[119,-54,70,64.0],[119,-54,71,64.0],[119,-54,72,64.0],[119,-54,73,64.0],[119,-54,74,64.0],[119,-54,75,64.0],[119,-54,76,64.0],[119,-54,77,64.0],[119,-54,78,64.0],[119,-54,79,64.0],[119,-53,64,64.0],[119,-53,65,64.0],[119,-53,66,64.0],[119,-53,67,64.0],[119,-53,68,64.0],[119,-53,69,64.0],[119,-53,70,64.0],[119,-53,71,64.0],[119,-53,72,64.0],[119,-53,73,64.0],[119,-53,74,64.0],[119,-53,75,64.0],[119,-53,76,64.0],[119,-53,77,64.0],[119,-53,78,64.0],[119,-53,79,64.0],[119,-52,64,64.0],[119,-52,65,64.0],[119,-52,66,64.0],[119,-52,67,64.0],[119,-52,68,64.0],[119,-52,69,64.0],[119,-52,70,64.0],[119,-52,71,64.0],[119,-52,72,64.0],[119,-52,73,64.0],[119,-52,74,64.0],[119,-52,75,64.0],[119,-52,76,64.0],[119,-52,77,64.0],[119,-52,78,64.0],[119,-52,79,64.0],[119,-51,64,64.0],[119,-51,65,64.0],[119,-51,66,64.0],[119,-51,67,64.0],[119,-51,68,64.0],[119,-51,69,64.0],[119,-51,70,64.0],[119,-51,71,64.0],[119,-51,72,64.0],[119,-51,73,64.0],[119,-51,74,64.0],[119,-51,75,64.0],[119,-51,76,64.0],[119,-51,77,64.0],[119,-51,78,64.0],[119,-51,79,64.0],[119,-50,64,64.0],[119,-50,65,64.0],[119,-50,66,64.0],[119,-50,67,64.0],[119,-50,68,64.0],[119,-50,69,64.0],[119,-50,70,64.0],[119,-50,71,64.0],[119,-50,72,64.0],[119,-50,73,64.0],[119,-50,74,64.0],[119,-50,75,64.0],[119,-50,76,64.0],[119,-50,77,64.0],[119,-50,78,64.0],[119,-50,79,64.0],[119,-49,64,64.0],[119,-49,65,64.0],[119,-49,66,64.0],[119,-49,67,64.0],[119,-49,68,64.0],[119,-49,69,64.0],[119,-49,70,64.0],[119,-49,71,64.0],[119,-49,72,64.0],[119,-49,73,64.0],[119,-49,74,64.0],[119,-49,75,64.0],[119,-49,76,64.0],[119,-49,77,64.0],[119,-49,78,64.0],[119,-49,79,64.0],[119,-48,64,64.0],[119,-48,65,64.0],[119,-48,66,64.0],[119,-48,67,64.0],[119,-48,68,64.0],[119,-48,69,64.0],[119,-48,70,64.0],[119,-48,71,64.0],[119,-48,72,64.0],[119,-48,73,64.0],[119,-48,74,64.0],[119,-48,75,64.0],[119,-48,76,64.0],[119,-48,77,64.0],[119,-48,78,64.0],[119,-48,79,64.0],[119,-47,64,64.0],[119,-47,65,64.0],[119,-47,66,64.0],[119,-47,67,64.0],[119,-47,68,64.0],[119,-47,69,64.0],[119,-47,70,64.0],[119,-47,71,64.0],[119,-47,72,64.0],[119,-47,73,64.0],[119,-47,74,64.0],[119,-47,75,64.0],[119,-47,76,64.0],[119,-47,77,64.0],[119,-47,78,64.0],[119,-47,79,64.0],[119,-46,64,64.0],[119,-46,65,64.0],[119,-46,66,64.0],[119,-46,67,64.0],[119,-46,68,64.0],[119,-46,69,64.0],[119,-46,70,64.0],[119,-46,71,64.0],[119,-46,72,64.0],[119,-46,73,64.0],[119,-46,74,64.0],[119,-46,75,64.0],[119,-46,76,64.0],[119,-46,77,64.0],[119,-46,78,64.0],[119,-46,79,64.0],[119,-45,64,64.0],[119,-45,65,64.0],[119,-45,66,64.0],[119,-45,67,64.0],[119,-45,68,64.0],[119,-45,69,64.0],[119,-45,70,64.0],[119,-45,71,64.0],[119,-45,72,64.0],[119,-45,73,64.0],[119,-45,74,64.0],[119,-45,75,64.0],[119,-45,76,64.0],[119,-45,77,64.0],[119,-45,78,64.0],[119,-45,79,64.0],[119,-44,64,64.0],[119,-44,65,64.0],[119,-44,66,64.0],[119,-44,67,64.0],[119,-44,68,64.0],[119,-44,69,64.0],[119,-44,70,64.0],[119,-44,71,64.0],[119,-44,72,64.0],[119,-44,73,64.0],[119,-44,74,64.0],[119,-44,75,64.0],[119,-44,76,64.0],[119,-44,77,64.0],[119,-44,78,64.0],[119,-44,79,64.0],[119,-43,64,64.0],[119,-43,65,64.0],[119,-43,66,64.0],[119,-43,67,64.0],[119,-43,68,64.0],[119,-43,69,64.0],[119,-43,70,64.0],[119,-43,71,64.0],[119,-43,72,64.0],[119,-43,73,64.0],[119,-43,74,64.0],[119,-43,75,64.0],[119,-43,76,64.0],[119,-43,77,64.0],[119,-43,78,64.0],[119,-43,79,64.0],[119,-42,64,64.0],[119,-42,65,64.0],[119,-42,66,64.0],[119,-42,67,64.0],[119,-42,68,64.0],[119,-42,69,64.0],[119,-42,70,64.0],[119,-42,71,64.0],[119,-42,72,64.0],[119,-42,73,64.0],[119,-42,74,64.0],[119,-42,75,64.0],[119,-42,76,64.0],[119,-42,77,64.0],[119,-42,78,64.0],[119,-42,79,64.0],[119,-41,64,64.0],[119,-41,65,64.0],[119,-41,66,64.0],[119,-41,67,64.0],[119,-41,68,64.0],[119,-41,69,64.0],[119,-41,70,64.0],[119,-41,71,64.0],[119,-41,72,64.0],[119,-41,73,64.0],[119,-41,74,64.0],[119,-41,75,64.0],[119,-41,76,64.0],[119,-41,77,64.0],[119,-41,78,64.0],[119,-41,79,64.0],[119,-40,64,64.0],[119,-40,65,64.0],[119,-40,66,64.0],[119,-40,67,64.0],[119,-40,68,64.0],[119,-40,69,64.0],[119,-40,70,64.0],[119,-40,71,64.0],[119,-40,72,64.0],[119,-40,73,64.0],[119,-40,74,64.0],[119,-40,75,64.0],[119,-40,76,64.0],[119,-40,77,64.0],[119,-40,78,64.0],[119,-40,79,64.0],[119,-39,64,64.0],[119,-39,65,64.0],[119,-39,66,64.0],[119,-39,67,64.0],[119,-39,68,64.0],[119,-39,69,64.0],[119,-39,70,64.0],[119,-39,71,64.0],[119,-39,72,64.0],[119,-39,73,64.0],[119,-39,74,64.0],[119,-39,75,64.0],[119,-39,76,64.0],[119,-39,77,64.0],[119,-39,78,64.0],[119,-39,79,64.0],[119,-38,64,64.0],[119,-38,65,64.0],[119,-38,66,64.0],[119,-38,67,64.0],[119,-38,68,64.0],[119,-38,69,64.0],[119,-38,70,64.0],[119,-38,71,64.0],[119,-38,72,64.0],[119,-38,73,64.0],[119,-38,74,64.0],[119,-38,75,64.0],[119,-38,76,64.0],[119,-38,77,64.0],[119,-38,78,64.0],[119,-38,79,64.0],[119,-37,64,64.0],[119,-37,65,64.0],[119,-37,66,64.0],[119,-37,67,64.0],[119,-37,68,64.0],[119,-37,69,64.0],[119,-37,70,64.0],[119,-37,71,64.0],[119,-37,72,64.0],[119,-37,73,64.0],[119,-37,74,64.0],[119,-37,75,64.0],[119,-37,76,64.0],[119,-37,77,64.0],[119,-37,78,64.0],[119,-37,79,64.0],[119,-36,64,64.0],[119,-36,65,64.0],[119,-36,66,64.0],[119,-36,67,64.0],[119,-36,68,64.0],[119,-36,69,64.0],[119,-36,70,64.0],[119,-36,71,64.0],[119,-36,72,64.0],[119,-36,73,64.0],[119,-36,74,64.0],[119,-36,75,64.0],[119,-36,76,64.0],[119,-36,77,64.0],[119,-36,78,64.0],[119,-36,79,64.0],[119,-35,64,64.0],[119,-35,65,64.0],[119,-35,66,64.0],[119,-35,67,64.0],[119,-35,68,64.0],[119,-35,69,64.0],[119,-35,70,64.0],[119,-35,71,64.0],[119,-35,72,64.0],[119,-35,73,64.0],[119,-35,74,64.0],[119,-35,75,64.0],[119,-35,76,64.0],[119,-35,77,64.0],[119,-35,78,64.0],[119,-35,79,64.0],[119,-34,64,64.0],[119,-34,65,64.0],[119,-34,66,64.0],[119,-34,67,64.0],[119,-34,68,64.0],[119,-34,69,64.0],[119,-34,70,64.0],[119,-34,71,64.0],[119,-34,72,64.0],[119,-34,73,64.0],[119,-34,74,64.0],[119,-34,75,64.0],[119,-34,76,64.0],[119,-34,77,64.0],[119,-34,78,64.0],[119,-34,79,64.0],[119,-33,64,64.0],[119,-33,65,64.0],[119,-33,66,64.0],[119,-33,67,64.0],[119,-33,68,64.0],[119,-33,69,64.0],[119,-33,70,64.0],[119,-33,71,64.0],[119,-33,72,64.0],[119,-33,73,64.0],[119,-33,74,64.0],[119,-33,75,64.0],[119,-33,76,64.0],[119,-33,77,64.0],[119,-33,78,64.0],[119,-33,79,64.0],[119,-32,64,64.0],[119,-32,65,64.0],[119,-32,66,64.0],[119,-32,67,64.0],[119,-32,68,64.0],[119,-32,69,64.0],[119,-32,70,64.0],[119,-32,71,64.0],[119,-32,72,64.0],[119,-32,73,64.0],[119,-32,74,64.0],[119,-32,75,64.0],[119,-32,76,64.0],[119,-32,77,64.0],[119,-32,78,64.0],[119,-32,79,64.0],[119,-31,64,64.0],[119,-31,65,64.0],[119,-31,66,64.0],[119,-31,67,64.0],[119,-31,68,64.0],[119,-31,69,64.0],[119,-31,70,64.0],[119,-31,71,64.0],[119,-31,72,64.0],[119,-31,73,64.0],[119,-31,74,64.0],[119,-31,75,64.0],[119,-31,76,64.0],[119,-31,77,64.0],[119,-31,78,64.0],[119,-31,79,64.0],[119,-30,64,64.0],[119,-30,65,64.0],[119,-30,66,64.0],[119,-30,67,64.0],[119,-30,68,64.0],[119,-30,69,64.0],[119,-30,70,64.0],[119,-30,71,64.0],[119,-30,72,64.0],[119,-30,73,64.0],[119,-30,74,64.0],[119,-30,75,64.0],[119,-30,76,64.0],[119,-30,77,64.0],[119,-30,78,64.0],[119,-30,79,64.0],[119,-29,64,64.0],[119,-29,65,64.0],[119,-29,66,64.0],[119,-29,67,64.0],[119,-29,68,64.0],[119,-29,69,64.0],[119,-29,70,64.0],[119,-29,71,64.0],[119,-29,72,64.0],[119,-29,73,64.0],[119,-29,74,64.0],[119,-29,75,64.0],[119,-29,76,64.0],[119,-29,77,64.0],[119,-29,78,64.0],[119,-29,79,64.0],[119,-28,64,64.0],[119,-28,65,64.0],[119,-28,66,64.0],[119,-28,67,64.0],[119,-28,68,64.0],[119,-28,69,64.0],[119,-28,70,64.0],[119,-28,71,64.0],[119,-28,72,64.0],[119,-28,73,64.0],[119,-28,74,64.0],[119,-28,75,64.0],[119,-28,76,64.0],[119,-28,77,64.0],[119,-28,78,64.0],[119,-28,79,64.0],[119,-27,64,64.0],[119,-27,65,64.0],[119,-27,66,64.0],[119,-27,67,64.0],[119,-27,68,64.0],[119,-27,69,64.0],[119,-27,70,64.0],[119,-27,71,64.0],[119,-27,72,64.0],[119,-27,73,64.0],[119,-27,74,64.0],[119,-27,75,64.0],[119,-27,76,64.0],[119,-27,77,64.0],[119,-27,78,64.0],[119,-27,79,64.0],[119,-26,64,64.0],[119,-26,65,64.0],[119,-26,66,64.0],[119,-26,67,64.0],[119,-26,68,64.0],[119,-26,69,64.0],[119,-26,70,64.0],[119,-26,71,64.0],[119,-26,72,64.0],[119,-26,73,64.0],[119,-26,74,64.0],[119,-26,75,64.0],[119,-26,76,64.0],[119,-26,77,64.0],[119,-26,78,64.0],[119,-26,79,64.0],[119,-25,64,64.0],[119,-25,65,64.0],[119,-25,66,64.0],[119,-25,67,64.0],[119,-25,68,64.0],[119,-25,69,64.0],[119,-25,70,64.0],[119,-25,71,64.0],[119,-25,72,64.0],[119,-25,73,64.0],[119,-25,74,64.0],[119,-25,75,64.0],[119,-25,76,64.0],[119,-25,77,64.0],[119,-25,78,64.0],[119,-25,79,64.0],[119,-24,64,64.0],[119,-24,65,64.0],[119,-24,66,64.0],[119,-24,67,64.0],[119,-24,68,64.0],[119,-24,69,64.0],[119,-24,70,64.0],[119,-24,71,64.0],[119,-24,72,64.0],[119,-24,73,64.0],[119,-24,74,64.0],[119,-24,75,64.0],[119,-24,76,64.0],[119,-24,77,64.0],[119,-24,78,64.0],[119,-24,79,64.0],[119,-23,64,64.0],[119,-23,65,64.0],[119,-23,66,64.0],[119,-23,67,64.0],[119,-23,68,64.0],[119,-23,69,64.0],[119,-23,70,64.0],[119,-23,71,64.0],[119,-23,72,64.0],[119,-23,73,64.0],[119,-23,74,64.0],[119,-23,75,64.0],[119,-23,76,64.0],[119,-23,77,64.0],[119,-23,78,64.0],[119,-23,79,64.0],[119,-22,64,64.0],[119,-22,65,64.0],[119,-22,66,64.0],[119,-22,67,64.0],[119,-22,68,64.0],[119,-22,69,64.0],[119,-22,70,64.0],[119,-22,71,64.0],[119,-22,72,64.0],[119,-22,73,64.0],[119,-22,74,64.0],[119,-22,75,64.0],[119,-22,76,64.0],[119,-22,77,64.0],[119,-22,78,64.0],[119,-22,79,64.0],[119,-21,64,64.0],[119,-21,65,64.0],[119,-21,66,64.0],[119,-21,67,64.0],[119,-21,68,64.0],[119,-21,69,64.0],[119,-21,70,64.0],[119,-21,71,64.0],[119,-21,72,64.0],[119,-21,73,64.0],[119,-21,74,64.0],[119,-21,75,64.0],[119,-21,76,64.0],[119,-21,77,64.0],[119,-21,78,64.0],[119,-21,79,64.0],[119,-20,64,64.0],[119,-20,65,64.0],[119,-20,66,64.0],[119,-20,67,64.0],[119,-20,68,64.0],[119,-20,69,64.0],[119,-20,70,64.0],[119,-20,71,64.0],[119,-20,72,64.0],[119,-20,73,64.0],[119,-20,74,64.0],[119,-20,75,64.0],[119,-20,76,64.0],[119,-20,77,64.0],[119,-20,78,64.0],[119,-20,79,64.0],[119,-19,64,64.0],[119,-19,65,64.0],[119,-19,66,64.0],[119,-19,67,64.0],[119,-19,68,64.0],[119,-19,69,64.0],[119,-19,70,64.0],[119,-19,71,64.0],[119,-19,72,64.0],[119,-19,73,64.0],[119,-19,74,64.0],[119,-19,75,64.0],[119,-19,76,64.0],[119,-19,77,64.0],[119,-19,78,64.0],[119,-19,79,64.0],[119,-18,64,64.0],[119,-18,65,64.0],[119,-18,66,64.0],[119,-18,67,64.0],[119,-18,68,64.0],[119,-18,69,64.0],[119,-18,70,64.0],[119,-18,71,64.0],[119,-18,72,64.0],[119,-18,73,64.0],[119,-18,74,64.0],[119,-18,75,64.0],[119,-18,76,64.0],[119,-18,77,64.0],[119,-18,78,64.0],[119,-18,79,64.0],[119,-17,64,64.0],[119,-17,65,64.0],[119,-17,66,64.0],[119,-17,67,64.0],[119,-17,68,64.0],[119,-17,69,64.0],[119,-17,70,64.0],[119,-17,71,64.0],[119,-17,72,64.0],[119,-17,73,64.0],[119,-17,74,64.0],[119,-17,75,64.0],[119,-17,76,64.0],[119,-17,77,64.0],[119,-17,78,64.0],[119,-17,79,64.0],[119,-16,64,64.0],[119,-16,65,64.0],[119,-16,66,64.0],[119,-16,67,64.0],[119,-16,68,64.0],[119,-16,69,64.0],[119,-16,70,64.0],[119,-16,71,64.0],[119,-16,72,64.0],[119,-16,73,64.0],[119,-16,74,64.0],[119,-16,75,64.0],[119,-16,76,64.0],[119,-16,77,64.0],[119,-16,78,64.0],[119,-16,79,64.0],[119,-15,64,64.0],[119,-15,65,64.0],[119,-15,66,64.0],[119,-15,67,64.0],[119,-15,68,64.0],[119,-15,69,64.0],[119,-15,70,64.0],[119,-15,71,64.0],[119,-15,72,64.0],[119,-15,73,64.0],[119,-15,74,64.0],[119,-15,75,64.0],[119,-15,76,64.0],[119,-15,77,64.0],[119,-15,78,64.0],[119,-15,79,64.0],[119,-14,64,64.0],[119,-14,65,64.0],[119,-14,66,64.0],[119,-14,67,64.0],[119,-14,68,64.0],[119,-14,69,64.0],[119,-14,70,64.0],[119,-14,71,64.0],[119,-14,72,64.0],[119,-14,73,64.0],[119,-14,74,64.0],[119,-14,75,64.0],[119,-14,76,64.0],[119,-14,77,64.0],[119,-14,78,64.0],[119,-14,79,64.0],[119,-13,64,64.0],[119,-13,65,64.0],[119,-13,66,64.0],[119,-13,67,64.0],[119,-13,68,64.0],[119,-13,69,64.0],[119,-13,70,64.0],[119,-13,71,64.0],[119,-13,72,64.0],[119,-13,73,64.0],[119,-13,74,64.0],[119,-13,75,64.0],[119,-13,76,64.0],[119,-13,77,64.0],[119,-13,78,64.0],[119,-13,79,64.0],[119,-12,64,64.0],[119,-12,65,64.0],[119,-12,66,64.0],[119,-12,67,64.0],[119,-12,68,64.0],[119,-12,69,64.0],[119,-12,70,64.0],[119,-12,71,64.0],[119,-12,72,64.0],[119,-12,73,64.0],[119,-12,74,64.0],[119,-12,75,64.0],[119,-12,76,64.0],[119,-12,77,64.0],[119,-12,78,64.0],[119,-12,79,64.0],[119,-11,64,64.0],[119,-11,65,64.0],[119,-11,66,64.0],[119,-11,67,64.0],[119,-11,68,64.0],[119,-11,69,64.0],[119,-11,70,64.0],[119,-11,71,64.0],[119,-11,72,64.0],[119,-11,73,64.0],[119,-11,74,64.0],[119,-11,75,64.0],[119,-11,76,64.0],[119,-11,77,64.0],[119,-11,78,64.0],[119,-11,79,64.0],[119,-10,64,64.0],[119,-10,65,64.0],[119,-10,66,64.0],[119,-10,67,64.0],[119,-10,68,64.0],[119,-10,69,64.0],[119,-10,70,64.0],[119,-10,71,64.0],[119,-10,72,64.0],[119,-10,73,64.0],[119,-10,74,64.0],[119,-10,75,64.0],[119,-10,76,64.0],[119,-10,77,64.0],[119,-10,78,64.0],[119,-10,79,64.0],[119,-9,64,64.0],[119,-9,65,64.0],[119,-9,66,64.0],[119,-9,67,64.0],[119,-9,68,64.0],[119,-9,69,64.0],[119,-9,70,64.0],[119,-9,71,64.0],[119,-9,72,64.0],[119,-9,73,64.0],[119,-9,74,64.0],[119,-9,75,64.0],[119,-9,76,64.0],[119,-9,77,64.0],[119,-9,78,64.0],[119,-9,79,64.0],[119,-8,64,64.0],[119,-8,65,64.0],[119,-8,66,64.0],[119,-8,67,64.0],[119,-8,68,64.0],[119,-8,69,64.0],[119,-8,70,64.0],[119,-8,71,64.0],[119,-8,72,64.0],[119,-8,73,64.0],[119,-8,74,64.0],[119,-8,75,64.0],[119,-8,76,64.0],[119,-8,77,64.0],[119,-8,78,64.0],[119,-8,79,64.0],[119,-7,64,64.0],[119,-7,65,64.0],[119,-7,66,64.0],[119,-7,67,64.0],[119,-7,68,64.0],[119,-7,69,64.0],[119,-7,70,64.0],[119,-7,71,64.0],[119,-7,72,64.0],[119,-7,73,64.0],[119,-7,74,64.0],[119,-7,75,64.0],[119,-7,76,64.0],[119,-7,77,64.0],[119,-7,78,64.0],[119,-7,79,64.0],[119,-6,64,64.0],[119,-6,65,64.0],[119,-6,66,64.0],[119,-6,67,64.0],[119,-6,68,64.0],[119,-6,69,64.0],[119,-6,70,64.0],[119,-6,71,64.0],[119,-6,72,64.0],[119,-6,73,64.0],[119,-6,74,64.0],[119,-6,75,64.0],[119,-6,76,64.0],[119,-6,77,64.0],[119,-6,78,64.0],[119,-6,79,64.0],[119,-5,64,64.0],[119,-5,65,64.0],[119,-5,66,64.0],[119,-5,67,64.0],[119,-5,68,64.0],[119,-5,69,64.0],[119,-5,70,64.0],[119,-5,71,64.0],[119,-5,72,64.0],[119,-5,73,64.0],[119,-5,74,64.0],[119,-5,75,64.0],[119,-5,76,64.0],[119,-5,77,64.0],[119,-5,78,64.0],[119,-5,79,64.0],[119,-4,64,64.0],[119,-4,65,64.0],[119,-4,66,64.0],[119,-4,67,64.0],[119,-4,68,64.0],[119,-4,69,64.0],[119,-4,70,64.0],[119,-4,71,64.0],[119,-4,72,64.0],[119,-4,73,64.0],[119,-4,74,64.0],[119,-4,75,64.0],[119,-4,76,64.0],[119,-4,77,64.0],[119,-4,78,64.0],[119,-4,79,64.0],[119,-3,64,64.0],[119,-3,65,64.0],[119,-3,66,64.0],[119,-3,67,64.0],[119,-3,68,64.0],[119,-3,69,64.0],[119,-3,70,64.0],[119,-3,71,64.0],[119,-3,72,64.0],[119,-3,73,64.0],[119,-3,74,64.0],[119,-3,75,64.0],[119,-3,76,64.0],[119,-3,77,64.0],[119,-3,78,64.0],[119,-3,79,64.0],[119,-2,64,64.0],[119,-2,65,64.0],[119,-2,66,64.0],[119,-2,67,64.0],[119,-2,68,64.0],[119,-2,69,64.0],[119,-2,70,64.0],[119,-2,71,64.0],[119,-2,72,64.0],[119,-2,73,64.0],[119,-2,74,64.0],[119,-2,75,64.0],[119,-2,76,64.0],[119,-2,77,64.0],[119,-2,78,64.0],[119,-2,79,64.0],[119,-1,64,64.0],[119,-1,65,64.0],[119,-1,66,64.0],[119,-1,67,64.0],[119,-1,68,64.0],[119,-1,69,64.0],[119,-1,70,64.0],[119,-1,71,64.0],[119,-1,72,64.0],[119,-1,73,64.0],[119,-1,74,64.0],[119,-1,75,64.0],[119,-1,76,64.0],[119,-1,77,64.0],[119,-1,78,64.0],[119,-1,79,64.0],[119,0,64,64.0],[119,0,65,64.0],[119,0,66,64.0],[119,0,67,64.0],[119,0,68,64.0],[119,0,69,64.0],[119,0,70,64.0],[119,0,71,64.0],[119,0,72,64.0],[119,0,73,64.0],[119,0,74,64.0],[119,0,75,64.0],[119,0,76,64.0],[119,0,77,64.0],[119,0,78,64.0],[119,0,79,64.0],[119,1,64,64.0],[119,1,65,64.0],[119,1,66,64.0],[119,1,67,64.0],[119,1,68,64.0],[119,1,69,64.0],[119,1,70,64.0],[119,1,71,64.0],[119,1,72,64.0],[119,1,73,64.0],[119,1,74,64.0],[119,1,75,64.0],[119,1,76,64.0],[119,1,77,64.0],[119,1,78,64.0],[119,1,79,64.0],[119,2,64,64.0],[119,2,65,64.0],[119,2,66,64.0],[119,2,67,64.0],[119,2,68,64.0],[119,2,69,64.0],[119,2,70,64.0],[119,2,71,64.0],[119,2,72,64.0],[119,2,73,64.0],[119,2,74,64.0],[119,2,75,64.0],[119,2,76,64.0],[119,2,77,64.0],[119,2,78,64.0],[119,2,79,64.0],[119,3,64,64.0],[119,3,65,64.0],[119,3,66,64.0],[119,3,67,64.0],[119,3,68,64.0],[119,3,69,64.0],[119,3,70,64.0],[119,3,71,64.0],[119,3,72,64.0],[119,3,73,64.0],[119,3,74,64.0],[119,3,75,64.0],[119,3,76,64.0],[119,3,77,64.0],[119,3,78,64.0],[119,3,79,64.0],[119,4,64,64.0],[119,4,65,64.0],[119,4,66,64.0],[119,4,67,64.0],[119,4,68,64.0],[119,4,69,64.0],[119,4,70,64.0],[119,4,71,64.0],[119,4,72,64.0],[119,4,73,64.0],[119,4,74,64.0],[119,4,75,64.0],[119,4,76,64.0],[119,4,77,64.0],[119,4,78,64.0],[119,4,79,64.0],[119,5,64,64.0],[119,5,65,64.0],[119,5,66,64.0],[119,5,67,64.0],[119,5,68,64.0],[119,5,69,64.0],[119,5,70,64.0],[119,5,71,64.0],[119,5,72,64.0],[119,5,73,64.0],[119,5,74,64.0],[119,5,75,64.0],[119,5,76,64.0],[119,5,77,64.0],[119,5,78,64.0],[119,5,79,64.0],[119,6,64,64.0],[119,6,65,64.0],[119,6,66,64.0],[119,6,67,64.0],[119,6,68,64.0],[119,6,69,64.0],[119,6,70,64.0],[119,6,71,64.0],[119,6,72,64.0],[119,6,73,64.0],[119,6,74,64.0],[119,6,75,64.0],[119,6,76,64.0],[119,6,77,64.0],[119,6,78,64.0],[119,6,79,64.0],[119,7,64,64.0],[119,7,65,64.0],[119,7,66,64.0],[119,7,67,64.0],[119,7,68,64.0],[119,7,69,64.0],[119,7,70,64.0],[119,7,71,64.0],[119,7,72,64.0],[119,7,73,64.0],[119,7,74,64.0],[119,7,75,64.0],[119,7,76,64.0],[119,7,77,64.0],[119,7,78,64.0],[119,7,79,64.0],[119,8,64,64.0],[119,8,65,64.0],[119,8,66,64.0],[119,8,67,64.0],[119,8,68,64.0],[119,8,69,64.0],[119,8,70,64.0],[119,8,71,64.0],[119,8,72,64.0],[119,8,73,64.0],[119,8,74,64.0],[119,8,75,64.0],[119,8,76,64.0],[119,8,77,64.0],[119,8,78,64.0],[119,8,79,64.0],[119,9,64,64.0],[119,9,65,64.0],[119,9,66,64.0],[119,9,67,64.0],[119,9,68,64.0],[119,9,69,64.0],[119,9,70,64.0],[119,9,71,64.0],[119,9,72,64.0],[119,9,73,64.0],[119,9,74,64.0],[119,9,75,64.0],[119,9,76,64.0],[119,9,77,64.0],[119,9,78,64.0],[119,9,79,64.0],[119,10,64,64.0],[119,10,65,64.0],[119,10,66,64.0],[119,10,67,64.0],[119,10,68,64.0],[119,10,69,64.0],[119,10,70,64.0],[119,10,71,64.0],[119,10,72,64.0],[119,10,73,64.0],[119,10,74,64.0],[119,10,75,64.0],[119,10,76,64.0],[119,10,77,64.0],[119,10,78,64.0],[119,10,79,64.0],[119,11,64,64.0],[119,11,65,64.0],[119,11,66,64.0],[119,11,67,64.0],[119,11,68,64.0],[119,11,69,64.0],[119,11,70,64.0],[119,11,71,64.0],[119,11,72,64.0],[119,11,73,64.0],[119,11,74,64.0],[119,11,75,64.0],[119,11,76,64.0],[119,11,77,64.0],[119,11,78,64.0],[119,11,79,64.0],[119,12,64,64.0],[119,12,65,64.0],[119,12,66,64.0],[119,12,67,64.0],[119,12,68,64.0],[119,12,69,64.0],[119,12,70,64.0],[119,12,71,64.0],[119,12,72,64.0],[119,12,73,64.0],[119,12,74,64.0],[119,12,75,64.0],[119,12,76,64.0],[119,12,77,64.0],[119,12,78,64.0],[119,12,79,64.0],[119,13,64,64.0],[119,13,65,64.0],[119,13,66,64.0],[119,13,67,64.0],[119,13,68,64.0],[119,13,69,64.0],[119,13,70,64.0],[119,13,71,64.0],[119,13,72,64.0],[119,13,73,64.0],[119,13,74,64.0],[119,13,75,64.0],[119,13,76,64.0],[119,13,77,64.0],[119,13,78,64.0],[119,13,79,64.0],[119,14,64,64.0],[119,14,65,64.0],[119,14,66,64.0],[119,14,67,64.0],[119,14,68,64.0],[119,14,69,64.0],[119,14,70,64.0],[119,14,71,64.0],[119,14,72,64.0],[119,14,73,64.0],[119,14,74,64.0],[119,14,75,64.0],[119,14,76,64.0],[119,14,77,64.0],[119,14,78,64.0],[119,14,79,64.0],[119,15,64,64.0],[119,15,65,64.0],[119,15,66,64.0],[119,15,67,64.0],[119,15,68,64.0],[119,15,69,64.0],[119,15,70,64.0],[119,15,71,64.0],[119,15,72,64.0],[119,15,73,64.0],[119,15,74,64.0],[119,15,75,64.0],[119,15,76,64.0],[119,15,77,64.0],[119,15,78,64.0],[119,15,79,64.0],[119,16,64,64.0],[119,16,65,64.0],[119,16,66,64.0],[119,16,67,64.0],[119,16,68,64.0],[119,16,69,64.0],[119,16,70,64.0],[119,16,71,64.0],[119,16,72,64.0],[119,16,73,64.0],[119,16,74,64.0],[119,16,75,64.0],[119,16,76,64.0],[119,16,77,64.0],[119,16,78,64.0],[119,16,79,64.0],[119,17,64,64.0],[119,17,65,64.0],[119,17,66,64.0],[119,17,67,64.0],[119,17,68,64.0],[119,17,69,64.0],[119,17,70,64.0],[119,17,71,64.0],[119,17,72,64.0],[119,17,73,64.0],[119,17,74,64.0],[119,17,75,64.0],[119,17,76,64.0],[119,17,77,64.0],[119,17,78,64.0],[119,17,79,64.0],[119,18,64,64.0],[119,18,65,64.0],[119,18,66,64.0],[119,18,67,64.0],[119,18,68,64.0],[119,18,69,64.0],[119,18,70,64.0],[119,18,71,64.0],[119,18,72,64.0],[119,18,73,64.0],[119,18,74,64.0],[119,18,75,64.0],[119,18,76,64.0],[119,18,77,64.0],[119,18,78,64.0],[119,18,79,64.0],[119,19,64,64.0],[119,19,65,64.0],[119,19,66,64.0],[119,19,67,64.0],[119,19,68,64.0],[119,19,69,64.0],[119,19,70,64.0],[119,19,71,64.0],[119,19,72,64.0],[119,19,73,64.0],[119,19,74,64.0],[119,19,75,64.0],[119,19,76,64.0],[119,19,77,64.0],[119,19,78,64.0],[119,19,79,64.0],[119,20,64,64.0],[119,20,65,64.0],[119,20,66,64.0],[119,20,67,64.0],[119,20,68,64.0],[119,20,69,64.0],[119,20,70,64.0],[119,20,71,64.0],[119,20,72,64.0],[119,20,73,64.0],[119,20,74,64.0],[119,20,75,64.0],[119,20,76,64.0],[119,20,77,64.0],[119,20,78,64.0],[119,20,79,64.0],[119,21,64,64.0],[119,21,65,64.0],[119,21,66,64.0],[119,21,67,64.0],[119,21,68,64.0],[119,21,69,64.0],[119,21,70,64.0],[119,21,71,64.0],[119,21,72,64.0],[119,21,73,64.0],[119,21,74,64.0],[119,21,75,64.0],[119,21,76,64.0],[119,21,77,64.0],[119,21,78,64.0],[119,21,79,64.0],[119,22,64,64.0],[119,22,65,64.0],[119,22,66,64.0],[119,22,67,64.0],[119,22,68,64.0],[119,22,69,64.0],[119,22,70,64.0],[119,22,71,64.0],[119,22,72,64.0],[119,22,73,64.0],[119,22,74,64.0],[119,22,75,64.0],[119,22,76,64.0],[119,22,77,64.0],[119,22,78,64.0],[119,22,79,64.0],[119,23,64,64.0],[119,23,65,64.0],[119,23,66,64.0],[119,23,67,64.0],[119,23,68,64.0],[119,23,69,64.0],[119,23,70,64.0],[119,23,71,64.0],[119,23,72,64.0],[119,23,73,64.0],[119,23,74,64.0],[119,23,75,64.0],[119,23,76,64.0],[119,23,77,64.0],[119,23,78,64.0],[119,23,79,64.0],[119,24,64,64.0],[119,24,65,64.0],[119,24,66,64.0],[119,24,67,64.0],[119,24,68,64.0],[119,24,69,64.0],[119,24,70,64.0],[119,24,71,64.0],[119,24,72,64.0],[119,24,73,64.0],[119,24,74,64.0],[119,24,75,64.0],[119,24,76,64.0],[119,24,77,64.0],[119,24,78,64.0],[119,24,79,64.0],[119,25,64,64.0],[119,25,65,64.0],[119,25,66,64.0],[119,25,67,64.0],[119,25,68,64.0],[119,25,69,64.0],[119,25,70,64.0],[119,25,71,64.0],[119,25,72,64.0],[119,25,73,64.0],[119,25,74,64.0],[119,25,75,64.0],[119,25,76,64.0],[119,25,77,64.0],[119,25,78,64.0],[119,25,79,64.0],[119,26,64,64.0],[119,26,65,64.0],[119,26,66,64.0],[119,26,67,64.0],[119,26,68,64.0],[119,26,69,64.0],[119,26,70,64.0],[119,26,71,64.0],[119,26,72,64.0],[119,26,73,64.0],[119,26,74,64.0],[119,26,75,64.0],[119,26,76,64.0],[119,26,77,64.0],[119,26,78,64.0],[119,26,79,64.0],[119,27,64,64.0],[119,27,65,64.0],[119,27,66,64.0],[119,27,67,64.0],[119,27,68,64.0],[119,27,69,64.0],[119,27,70,64.0],[119,27,71,64.0],[119,27,72,64.0],[119,27,73,64.0],[119,27,74,64.0],[119,27,75,64.0],[119,27,76,64.0],[119,27,77,64.0],[119,27,78,64.0],[119,27,79,64.0],[119,28,64,64.0],[119,28,65,64.0],[119,28,66,64.0],[119,28,67,64.0],[119,28,68,64.0],[119,28,69,64.0],[119,28,70,64.0],[119,28,71,64.0],[119,28,72,64.0],[119,28,73,64.0],[119,28,74,64.0],[119,28,75,64.0],[119,28,76,64.0],[119,28,77,64.0],[119,28,78,64.0],[119,28,79,64.0],[119,29,64,64.0],[119,29,65,64.0],[119,29,66,64.0],[119,29,67,64.0],[119,29,68,64.0],[119,29,69,64.0],[119,29,70,64.0],[119,29,71,64.0],[119,29,72,64.0],[119,29,73,64.0],[119,29,74,64.0],[119,29,75,64.0],[119,29,76,64.0],[119,29,77,64.0],[119,29,78,64.0],[119,29,79,64.0],[119,30,64,64.0],[119,30,65,64.0],[119,30,66,64.0],[119,30,67,64.0],[119,30,68,64.0],[119,30,69,64.0],[119,30,70,64.0],[119,30,71,64.0],[119,30,72,64.0],[119,30,73,64.0],[119,30,74,64.0],[119,30,75,64.0],[119,30,76,64.0],[119,30,77,64.0],[119,30,78,64.0],[119,30,79,64.0],[119,31,64,64.0],[119,31,65,64.0],[119,31,66,64.0],[119,31,67,64.0],[119,31,68,64.0],[119,31,69,64.0],[119,31,70,64.0],[119,31,71,64.0],[119,31,72,64.0],[119,31,73,64.0],[119,31,74,64.0],[119,31,75,64.0],[119,31,76,64.0],[119,31,77,64.0],[119,31,78,64.0],[119,31,79,64.0],[119,32,64,64.0],[119,32,65,64.0],[119,32,66,64.0],[119,32,67,64.0],[119,32,68,64.0],[119,32,69,64.0],[119,32,70,64.0],[119,32,71,64.0],[119,32,72,64.0],[119,32,73,64.0],[119,32,74,64.0],[119,32,75,64.0],[119,32,76,64.0],[119,32,77,64.0],[119,32,78,64.0],[119,32,79,64.0],[119,33,64,64.0],[119,33,65,64.0],[119,33,66,64.0],[119,33,67,64.0],[119,33,68,64.0],[119,33,69,64.0],[119,33,70,64.0],[119,33,71,64.0],[119,33,72,64.0],[119,33,73,64.0],[119,33,74,64.0],[119,33,75,64.0],[119,33,76,64.0],[119,33,77,64.0],[119,33,78,64.0],[119,33,79,64.0],[119,34,64,64.0],[119,34,65,64.0],[119,34,66,64.0],[119,34,67,64.0],[119,34,68,64.0],[119,34,69,64.0],[119,34,70,64.0],[119,34,71,64.0],[119,34,72,64.0],[119,34,73,64.0],[119,34,74,64.0],[119,34,75,64.0],[119,34,76,64.0],[119,34,77,64.0],[119,34,78,64.0],[119,34,79,64.0],[119,35,64,64.0],[119,35,65,64.0],[119,35,66,64.0],[119,35,67,64.0],[119,35,68,64.0],[119,35,69,64.0],[119,35,70,64.0],[119,35,71,64.0],[119,35,72,64.0],[119,35,73,64.0],[119,35,74,64.0],[119,35,75,64.0],[119,35,76,64.0],[119,35,77,64.0],[119,35,78,64.0],[119,35,79,64.0],[119,36,64,64.0],[119,36,65,64.0],[119,36,66,64.0],[119,36,67,64.0],[119,36,68,64.0],[119,36,69,64.0],[119,36,70,64.0],[119,36,71,64.0],[119,36,72,64.0],[119,36,73,64.0],[119,36,74,64.0],[119,36,75,64.0],[119,36,76,64.0],[119,36,77,64.0],[119,36,78,64.0],[119,36,79,64.0],[119,37,64,64.0],[119,37,65,64.0],[119,37,66,64.0],[119,37,67,64.0],[119,37,68,64.0],[119,37,69,64.0],[119,37,70,64.0],[119,37,71,64.0],[119,37,72,64.0],[119,37,73,64.0],[119,37,74,64.0],[119,37,75,64.0],[119,37,76,64.0],[119,37,77,64.0],[119,37,78,64.0],[119,37,79,64.0],[119,38,64,64.0],[119,38,65,64.0],[119,38,66,64.0],[119,38,67,64.0],[119,38,68,64.0],[119,38,69,64.0],[119,38,70,64.0],[119,38,71,64.0],[119,38,72,64.0],[119,38,73,64.0],[119,38,74,64.0],[119,38,75,64.0],[119,38,76,64.0],[119,38,77,64.0],[119,38,78,64.0],[119,38,79,64.0],[119,39,64,64.0],[119,39,65,64.0],[119,39,66,64.0],[119,39,67,64.0],[119,39,68,64.0],[119,39,69,64.0],[119,39,70,64.0],[119,39,71,64.0],[119,39,72,64.0],[119,39,73,64.0],[119,39,74,64.0],[119,39,75,64.0],[119,39,76,64.0],[119,39,77,64.0],[119,39,78,64.0],[119,39,79,64.0],[119,40,64,64.0],[119,40,65,64.0],[119,40,66,64.0],[119,40,67,64.0],[119,40,68,64.0],[119,40,69,64.0],[119,40,70,64.0],[119,40,71,64.0],[119,40,72,64.0],[119,40,73,64.0],[119,40,74,64.0],[119,40,75,64.0],[119,40,76,64.0],[119,40,77,64.0],[119,40,78,64.0],[119,40,79,64.0],[119,41,64,64.0],[119,41,65,64.0],[119,41,66,64.0],[119,41,67,64.0],[119,41,68,64.0],[119,41,69,64.0],[119,41,70,64.0],[119,41,71,64.0],[119,41,72,64.0],[119,41,73,64.0],[119,41,74,64.0],[119,41,75,64.0],[119,41,76,64.0],[119,41,77,64.0],[119,41,78,64.0],[119,41,79,64.0],[119,42,64,64.0],[119,42,65,64.0],[119,42,66,64.0],[119,42,67,64.0],[119,42,68,64.0],[119,42,69,64.0],[119,42,70,64.0],[119,42,71,64.0],[119,42,72,64.0],[119,42,73,64.0],[119,42,74,64.0],[119,42,75,64.0],[119,42,76,64.0],[119,42,77,64.0],[119,42,78,64.0],[119,42,79,64.0],[119,43,64,64.0],[119,43,65,64.0],[119,43,66,64.0],[119,43,67,64.0],[119,43,68,64.0],[119,43,69,64.0],[119,43,70,64.0],[119,43,71,64.0],[119,43,72,64.0],[119,43,73,64.0],[119,43,74,64.0],[119,43,75,64.0],[119,43,76,64.0],[119,43,77,64.0],[119,43,78,64.0],[119,43,79,64.0],[119,44,64,64.0],[119,44,65,64.0],[119,44,66,64.0],[119,44,67,64.0],[119,44,68,64.0],[119,44,69,64.0],[119,44,70,64.0],[119,44,71,64.0],[119,44,72,64.0],[119,44,73,64.0],[119,44,74,64.0],[119,44,75,64.0],[119,44,76,64.0],[119,44,77,64.0],[119,44,78,64.0],[119,44,79,64.0],[119,45,64,64.0],[119,45,65,64.0],[119,45,66,64.0],[119,45,67,64.0],[119,45,68,64.0],[119,45,69,64.0],[119,45,70,64.0],[119,45,71,64.0],[119,45,72,64.0],[119,45,73,64.0],[119,45,74,64.0],[119,45,75,64.0],[119,45,76,64.0],[119,45,77,64.0],[119,45,78,64.0],[119,45,79,64.0],[119,46,64,64.0],[119,46,65,64.0],[119,46,66,64.0],[119,46,67,64.0],[119,46,68,64.0],[119,46,69,64.0],[119,46,70,64.0],[119,46,71,64.0],[119,46,72,64.0],[119,46,73,64.0],[119,46,74,64.0],[119,46,75,64.0],[119,46,76,64.0],[119,46,77,64.0],[119,46,78,64.0],[119,46,79,64.0],[119,47,64,64.0],[119,47,65,64.0],[119,47,66,64.0],[119,47,67,64.0],[119,47,68,64.0],[119,47,69,64.0],[119,47,70,64.0],[119,47,71,64.0],[119,47,72,64.0],[119,47,73,64.0],[119,47,74,64.0],[119,47,75,64.0],[119,47,76,64.0],[119,47,77,64.0],[119,47,78,64.0],[119,47,79,64.0],[119,48,64,64.0],[119,48,65,64.0],[119,48,66,64.0],[119,48,67,64.0],[119,48,68,64.0],[119,48,69,64.0],[119,48,70,64.0],[119,48,71,64.0],[119,48,72,64.0],[119,48,73,64.0],[119,48,74,64.0],[119,48,75,64.0],[119,48,76,64.0],[119,48,77,64.0],[119,48,78,64.0],[119,48,79,64.0],[119,49,64,64.0],[119,49,65,64.0],[119,49,66,64.0],[119,49,67,64.0],[119,49,68,64.0],[119,49,69,64.0],[119,49,70,64.0],[119,49,71,64.0],[119,49,72,64.0],[119,49,73,64.0],[119,49,74,64.0],[119,49,75,64.0],[119,49,76,64.0],[119,49,77,64.0],[119,49,78,64.0],[119,49,79,64.0],[119,50,64,64.0],[119,50,65,64.0],[119,50,66,64.0],[119,50,67,64.0],[119,50,68,64.0],[119,50,69,64.0],[119,50,70,64.0],[119,50,71,64.0],[119,50,72,64.0],[119,50,73,64.0],[119,50,74,64.0],[119,50,75,64.0],[119,50,76,64.0],[119,50,77,64.0],[119,50,78,64.0],[119,50,79,64.0],[119,51,64,64.0],[119,51,65,64.0],[119,51,66,64.0],[119,51,67,64.0],[119,51,68,64.0],[119,51,69,64.0],[119,51,70,64.0],[119,51,71,64.0],[119,51,72,64.0],[119,51,73,64.0],[119,51,74,64.0],[119,51,75,64.0],[119,51,76,64.0],[119,51,77,64.0],[119,51,78,64.0],[119,51,79,64.0],[119,52,64,64.0],[119,52,65,64.0],[119,52,66,64.0],[119,52,67,64.0],[119,52,68,64.0],[119,52,69,64.0],[119,52,70,64.0],[119,52,71,64.0],[119,52,72,64.0],[119,52,73,64.0],[119,52,74,64.0],[119,52,75,64.0],[119,52,76,64.0],[119,52,77,64.0],[119,52,78,64.0],[119,52,79,64.0],[119,53,64,64.0],[119,53,65,64.0],[119,53,66,64.0],[119,53,67,64.0],[119,53,68,64.0],[119,53,69,64.0],[119,53,70,64.0],[119,53,71,64.0],[119,53,72,64.0],[119,53,73,64.0],[119,53,74,64.0],[119,53,75,64.0],[119,53,76,64.0],[119,53,77,64.0],[119,53,78,64.0],[119,53,79,64.0],[119,54,64,64.0],[119,54,65,64.0],[119,54,66,64.0],[119,54,67,64.0],[119,54,68,64.0],[119,54,69,64.0],[119,54,70,64.0],[119,54,71,64.0],[119,54,72,64.0],[119,54,73,64.0],[119,54,74,64.0],[119,54,75,64.0],[119,54,76,64.0],[119,54,77,64.0],[119,54,78,64.0],[119,54,79,64.0],[119,55,64,64.0],[119,55,65,64.0],[119,55,66,64.0],[119,55,67,64.0],[119,55,68,64.0],[119,55,69,64.0],[119,55,70,64.0],[119,55,71,64.0],[119,55,72,64.0],[119,55,73,64.0],[119,55,74,64.0],[119,55,75,64.0],[119,55,76,64.0],[119,55,77,64.0],[119,55,78,64.0],[119,55,79,64.0],[119,56,64,64.0],[119,56,65,64.0],[119,56,66,64.0],[119,56,67,64.0],[119,56,68,64.0],[119,56,69,64.0],[119,56,70,64.0],[119,56,71,64.0],[119,56,72,64.0],[119,56,73,64.0],[119,56,74,64.0],[119,56,75,64.0],[119,56,76,64.0],[119,56,77,64.0],[119,56,78,64.0],[119,56,79,64.0],[119,57,64,64.0],[119,57,65,64.0],[119,57,66,64.0],[119,57,67,64.0],[119,57,68,64.0],[119,57,69,64.0],[119,57,70,64.0],[119,57,71,64.0],[119,57,72,64.0],[119,57,73,64.0],[119,57,74,64.0],[119,57,75,64.0],[119,57,76,64.0],[119,57,77,64.0],[119,57,78,64.0],[119,57,79,64.0],[119,58,64,64.0],[119,58,65,64.0],[119,58,66,64.0],[119,58,67,64.0],[119,58,68,64.0],[119,58,69,64.0],[119,58,70,64.0],[119,58,71,64.0],[119,58,72,64.0],[119,58,73,64.0],[119,58,74,64.0],[119,58,75,64.0],[119,58,76,64.0],[119,58,77,64.0],[119,58,78,64.0],[119,58,79,64.0],[119,59,64,64.0],[119,59,65,64.0],[119,59,66,64.0],[119,59,67,64.0],[119,59,68,64.0],[119,59,69,64.0],[119,59,70,64.0],[119,59,71,64.0],[119,59,72,64.0],[119,59,73,64.0],[119,59,74,64.0],[119,59,75,64.0],[119,59,76,64.0],[119,59,77,64.0],[119,59,78,64.0],[119,59,79,64.0],[119,60,64,64.0],[119,60,65,64.0],[119,60,66,64.0],[119,60,67,64.0],[119,60,68,64.0],[119,60,69,64.0],[119,60,70,64.0],[119,60,71,64.0],[119,60,72,64.0],[119,60,73,64.0],[119,60,74,64.0],[119,60,75,64.0],[119,60,76,64.0],[119,60,77,64.0],[119,60,78,64.0],[119,60,79,64.0],[119,61,64,64.0],[119,61,65,64.0],[119,61,66,64.0],[119,61,67,64.0],[119,61,68,64.0],[119,61,69,64.0],[119,61,70,64.0],[119,61,71,64.0],[119,61,72,64.0],[119,61,73,64.0],[119,61,74,64.0],[119,61,75,64.0],[119,61,76,64.0],[119,61,77,64.0],[119,61,78,64.0],[119,61,79,64.0],[119,62,64,64.0],[119,62,65,64.0],[119,62,66,64.0],[119,62,67,64.0],[119,62,68,64.0],[119,62,69,64.0],[119,62,70,64.0],[119,62,71,64.0],[119,62,72,64.0],[119,62,73,64.0],[119,62,74,64.0],[119,62,75,64.0],[119,62,76,64.0],[119,62,77,64.0],[119,62,78,64.0],[119,62,79,64.0],[119,63,64,64.0],[119,63,65,64.0],[119,63,66,64.0],[119,63,67,64.0],[119,63,68,64.0],[119,63,69,64.0],[119,63,70,64.0],[119,63,71,64.0],[119,63,72,64.0],[119,63,73,64.0],[119,63,74,64.0],[119,63,75,64.0],[119,63,76,64.0],[119,63,77,64.0],[119,63,78,64.0],[119,63,79,64.0],[119,64,64,64.0],[119,64,65,64.0],[119,64,66,64.0],[119,64,67,64.0],[119,64,68,64.0],[119,64,69,64.0],[119,64,70,64.0],[119,64,71,64.0],[119,64,72,64.0],[119,64,73,64.0],[119,64,74,64.0],[119,64,75,64.0],[119,64,76,64.0],[119,64,77,64.0],[119,64,78,64.0],[119,64,79,64.0],[119,65,64,64.0],[119,65,65,64.0],[119,65,66,64.0],[119,65,67,64.0],[119,65,68,64.0],[119,65,69,64.0],[119,65,70,64.0],[119,65,71,64.0],[119,65,72,64.0],[119,65,73,64.0],[119,65,74,64.0],[119,65,75,64.0],[119,65,76,64.0],[119,65,77,64.0],[119,65,78,64.0],[119,65,79,64.0],[119,66,64,64.0],[119,66,65,64.0],[119,66,66,64.0],[119,66,67,64.0],[119,66,68,64.0],[119,66,69,64.0],[119,66,70,64.0],[119,66,71,64.0],[119,66,72,64.0],[119,66,73,64.0],[119,66,74,64.0],[119,66,75,64.0],[119,66,76,64.0],[119,66,77,64.0],[119,66,78,64.0],[119,66,79,64.0],[119,67,64,64.0],[119,67,65,64.0],[119,67,66,64.0],[119,67,67,64.0],[119,67,68,64.0],[119,67,69,64.0],[119,67,70,64.0],[119,67,71,64.0],[119,67,72,64.0],[119,67,73,64.0],[119,67,74,64.0],[119,67,75,64.0],[119,67,76,64.0],[119,67,77,64.0],[119,67,78,64.0],[119,67,79,64.0],[119,68,64,64.0],[119,68,65,64.0],[119,68,66,64.0],[119,68,67,64.0],[119,68,68,64.0],[119,68,69,64.0],[119,68,70,64.0],[119,68,71,64.0],[119,68,72,64.0],[119,68,73,64.0],[119,68,74,64.0],[119,68,75,64.0],[119,68,76,64.0],[119,68,77,64.0],[119,68,78,64.0],[119,68,79,64.0],[119,69,64,64.0],[119,69,65,64.0],[119,69,66,64.0],[119,69,67,64.0],[119,69,68,64.0],[119,69,69,64.0],[119,69,70,64.0],[119,69,71,64.0],[119,69,72,64.0],[119,69,73,64.0],[119,69,74,64.0],[119,69,75,64.0],[119,69,76,64.0],[119,69,77,64.0],[119,69,78,64.0],[119,69,79,64.0],[119,70,64,64.0],[119,70,65,64.0],[119,70,66,64.0],[119,70,67,64.0],[119,70,68,64.0],[119,70,69,64.0],[119,70,70,64.0],[119,70,71,64.0],[119,70,72,64.0],[119,70,73,64.0],[119,70,74,64.0],[119,70,75,64.0],[119,70,76,64.0],[119,70,77,64.0],[119,70,78,64.0],[119,70,79,64.0],[119,71,64,64.0],[119,71,65,64.0],[119,71,66,64.0],[119,71,67,64.0],[119,71,68,64.0],[119,71,69,64.0],[119,71,70,64.0],[119,71,71,64.0],[119,71,72,64.0],[119,71,73,64.0],[119,71,74,64.0],[119,71,75,64.0],[119,71,76,64.0],[119,71,77,64.0],[119,71,78,64.0],[119,71,79,64.0],[119,72,64,64.0],[119,72,65,64.0],[119,72,66,64.0],[119,72,67,64.0],[119,72,68,64.0],[119,72,69,64.0],[119,72,70,64.0],[119,72,71,64.0],[119,72,72,64.0],[119,72,73,64.0],[119,72,74,64.0],[119,72,75,64.0],[119,72,76,64.0],[119,72,77,64.0],[119,72,78,64.0],[119,72,79,64.0],[119,73,64,64.0],[119,73,65,64.0],[119,73,66,64.0],[119,73,67,64.0],[119,73,68,64.0],[119,73,69,64.0],[119,73,70,64.0],[119,73,71,64.0],[119,73,72,64.0],[119,73,73,64.0],[119,73,74,64.0],[119,73,75,64.0],[119,73,76,64.0],[119,73,77,64.0],[119,73,78,64.0],[119,73,79,64.0],[119,74,64,64.0],[119,74,65,64.0],[119,74,66,64.0],[119,74,67,64.0],[119,74,68,64.0],[119,74,69,64.0],[119,74,70,64.0],[119,74,71,64.0],[119,74,72,64.0],[119,74,73,64.0],[119,74,74,64.0],[119,74,75,64.0],[119,74,76,64.0],[119,74,77,64.0],[119,74,78,64.0],[119,74,79,64.0],[119,75,64,64.0],[119,75,65,64.0],[119,75,66,64.0],[119,75,67,64.0],[119,75,68,64.0],[119,75,69,64.0],[119,75,70,64.0],[119,75,71,64.0],[119,75,72,64.0],[119,75,73,64.0],[119,75,74,64.0],[119,75,75,64.0],[119,75,76,64.0],[119,75,77,64.0],[119,75,78,64.0],[119,75,79,64.0],[119,76,64,64.0],[119,76,65,64.0],[119,76,66,64.0],[119,76,67,64.0],[119,76,68,64.0],[119,76,69,64.0],[119,76,70,64.0],[119,76,71,64.0],[119,76,72,64.0],[119,76,73,64.0],[119,76,74,64.0],[119,76,75,64.0],[119,76,76,64.0],[119,76,77,64.0],[119,76,78,64.0],[119,76,79,64.0],[119,77,64,64.0],[119,77,65,64.0],[119,77,66,64.0],[119,77,67,64.0],[119,77,68,64.0],[119,77,69,64.0],[119,77,70,64.0],[119,77,71,64.0],[119,77,72,64.0],[119,77,73,64.0],[119,77,74,64.0],[119,77,75,64.0],[119,77,76,64.0],[119,77,77,64.0],[119,77,78,64.0],[119,77,79,64.0],[119,78,64,64.0],[119,78,65,64.0],[119,78,66,64.0],[119,78,67,64.0],[119,78,68,64.0],[119,78,69,64.0],[119,78,70,64.0],[119,78,71,64.0],[119,78,72,64.0],[119,78,73,64.0],[119,78,74,64.0],[119,78,75,64.0],[119,78,76,64.0],[119,78,77,64.0],[119,78,78,64.0],[119,78,79,64.0],[119,79,64,64.0],[119,79,65,64.0],[119,79,66,64.0],[119,79,67,64.0],[119,79,68,64.0],[119,79,69,64.0],[119,79,70,64.0],[119,79,71,64.0],[119,79,72,64.0],[119,79,73,64.0],[119,79,74,64.0],[119,79,75,64.0],[119,79,76,64.0],[119,79,77,64.0],[119,79,78,64.0],[119,79,79,64.0],[119,80,64,64.0],[119,80,65,64.0],[119,80,66,64.0],[119,80,67,64.0],[119,80,68,64.0],[119,80,69,64.0],[119,80,70,64.0],[119,80,71,64.0],[119,80,72,64.0],[119,80,73,64.0],[119,80,74,64.0],[119,80,75,64.0],[119,80,76,64.0],[119,80,77,64.0],[119,80,78,64.0],[119,80,79,64.0],[119,81,64,64.0],[119,81,65,64.0],[119,81,66,64.0],[119,81,67,64.0],[119,81,68,64.0],[119,81,69,64.0],[119,81,70,64.0],[119,81,71,64.0],[119,81,72,64.0],[119,81,73,64.0],[119,81,74,64.0],[119,81,75,64.0],[119,81,76,64.0],[119,81,77,64.0],[119,81,78,64.0],[119,81,79,64.0],[119,82,64,64.0],[119,82,65,64.0],[119,82,66,64.0],[119,82,67,64.0],[119,82,68,64.0],[119,82,69,64.0],[119,82,70,64.0],[119,82,71,64.0],[119,82,72,64.0],[119,82,73,64.0],[119,82,74,64.0],[119,82,75,64.0],[119,82,76,64.0],[119,82,77,64.0],[119,82,78,64.0],[119,82,79,64.0],[119,83,64,64.0],[119,83,65,64.0],[119,83,66,64.0],[119,83,67,64.0],[119,83,68,64.0],[119,83,69,64.0],[119,83,70,64.0],[119,83,71,64.0],[119,83,72,64.0],[119,83,73,64.0],[119,83,74,64.0],[119,83,75,64.0],[119,83,76,64.0],[119,83,77,64.0],[119,83,78,64.0],[119,83,79,64.0],[119,84,64,64.0],[119,84,65,64.0],[119,84,66,64.0],[119,84,67,64.0],[119,84,68,64.0],[119,84,69,64.0],[119,84,70,64.0],[119,84,71,64.0],[119,84,72,64.0],[119,84,73,64.0],[119,84,74,64.0],[119,84,75,64.0],[119,84,76,64.0],[119,84,77,64.0],[119,84,78,64.0],[119,84,79,64.0],[119,85,64,64.0],[119,85,65,64.0],[119,85,66,64.0],[119,85,67,64.0],[119,85,68,64.0],[119,85,69,64.0],[119,85,70,64.0],[119,85,71,64.0],[119,85,72,64.0],[119,85,73,64.0],[119,85,74,64.0],[119,85,75,64.0],[119,85,76,64.0],[119,85,77,64.0],[119,85,78,64.0],[119,85,79,64.0],[119,86,64,64.0],[119,86,65,64.0],[119,86,66,64.0],[119,86,67,64.0],[119,86,68,64.0],[119,86,69,64.0],[119,86,70,64.0],[119,86,71,64.0],[119,86,72,64.0],[119,86,73,64.0],[119,86,74,64.0],[119,86,75,64.0],[119,86,76,64.0],[119,86,77,64.0],[119,86,78,64.0],[119,86,79,64.0],[119,87,64,64.0],[119,87,65,64.0],[119,87,66,64.0],[119,87,67,64.0],[119,87,68,64.0],[119,87,69,64.0],[119,87,70,64.0],[119,87,71,64.0],[119,87,72,64.0],[119,87,73,64.0],[119,87,74,64.0],[119,87,75,64.0],[119,87,76,64.0],[119,87,77,64.0],[119,87,78,64.0],[119,87,79,64.0],[119,88,64,64.0],[119,88,65,64.0],[119,88,66,64.0],[119,88,67,64.0],[119,88,68,64.0],[119,88,69,64.0],[119,88,70,64.0],[119,88,71,64.0],[119,88,72,64.0],[119,88,73,64.0],[119,88,74,64.0],[119,88,75,64.0],[119,88,76,64.0],[119,88,77,64.0],[119,88,78,64.0],[119,88,79,64.0],[119,89,64,64.0],[119,89,65,64.0],[119,89,66,64.0],[119,89,67,64.0],[119,89,68,64.0],[119,89,69,64.0],[119,89,70,64.0],[119,89,71,64.0],[119,89,72,64.0],[119,89,73,64.0],[119,89,74,64.0],[119,89,75,64.0],[119,89,76,64.0],[119,89,77,64.0],[119,89,78,64.0],[119,89,79,64.0],[119,90,64,64.0],[119,90,65,64.0],[119,90,66,64.0],[119,90,67,64.0],[119,90,68,64.0],[119,90,69,64.0],[119,90,70,64.0],[119,90,71,64.0],[119,90,72,64.0],[119,90,73,64.0],[119,90,74,64.0],[119,90,75,64.0],[119,90,76,64.0],[119,90,77,64.0],[119,90,78,64.0],[119,90,79,64.0],[119,91,64,64.0],[119,91,65,64.0],[119,91,66,64.0],[119,91,67,64.0],[119,91,68,64.0],[119,91,69,64.0],[119,91,70,64.0],[119,91,71,64.0],[119,91,72,64.0],[119,91,73,64.0],[119,91,74,64.0],[119,91,75,64.0],[119,91,76,64.0],[119,91,77,64.0],[119,91,78,64.0],[119,91,79,64.0],[119,92,64,64.0],[119,92,65,64.0],[119,92,66,64.0],[119,92,67,64.0],[119,92,68,64.0],[119,92,69,64.0],[119,92,70,64.0],[119,92,71,64.0],[119,92,72,64.0],[119,92,73,64.0],[119,92,74,64.0],[119,92,75,64.0],[119,92,76,64.0],[119,92,77,64.0],[119,92,78,64.0],[119,92,79,64.0],[119,93,64,64.0],[119,93,65,64.0],[119,93,66,64.0],[119,93,67,64.0],[119,93,68,64.0],[119,93,69,64.0],[119,93,70,64.0],[119,93,71,64.0],[119,93,72,64.0],[119,93,73,64.0],[119,93,74,64.0],[119,93,75,64.0],[119,93,76,64.0],[119,93,77,64.0],[119,93,78,64.0],[119,93,79,64.0],[119,94,64,64.0],[119,94,65,64.0],[119,94,66,64.0],[119,94,67,64.0],[119,94,68,64.0],[119,94,69,64.0],[119,94,70,64.0],[119,94,71,64.0],[119,94,72,64.0],[119,94,73,64.0],[119,94,74,64.0],[119,94,75,64.0],[119,94,76,64.0],[119,94,77,64.0],[119,94,78,64.0],[119,94,79,64.0],[119,95,64,64.0],[119,95,65,64.0],[119,95,66,64.0],[119,95,67,64.0],[119,95,68,64.0],[119,95,69,64.0],[119,95,70,64.0],[119,95,71,64.0],[119,95,72,64.0],[119,95,73,64.0],[119,95,74,64.0],[119,95,75,64.0],[119,95,76,64.0],[119,95,77,64.0],[119,95,78,64.0],[119,95,79,64.0],[119,96,64,64.0],[119,96,65,64.0],[119,96,66,64.0],[119,96,67,64.0],[119,96,68,64.0],[119,96,69,64.0],[119,96,70,64.0],[119,96,71,64.0],[119,96,72,64.0],[119,96,73,64.0],[119,96,74,64.0],[119,96,75,64.0],[119,96,76,64.0],[119,96,77,64.0],[119,96,78,64.0],[119,96,79,64.0],[119,97,64,64.0],[119,97,65,64.0],[119,97,66,64.0],[119,97,67,64.0],[119,97,68,64.0],[119,97,69,64.0],[119,97,70,64.0],[119,97,71,64.0],[119,97,72,64.0],[119,97,73,64.0],[119,97,74,64.0],[119,97,75,64.0],[119,97,76,64.0],[119,97,77,64.0],[119,97,78,64.0],[119,97,79,64.0],[119,98,64,64.0],[119,98,65,64.0],[119,98,66,64.0],[119,98,67,64.0],[119,98,68,64.0],[119,98,69,64.0],[119,98,70,64.0],[119,98,71,64.0],[119,98,72,64.0],[119,98,73,64.0],[119,98,74,64.0],[119,98,75,64.0],[119,98,76,64.0],[119,98,77,64.0],[119,98,78,64.0],[119,98,79,64.0],[119,99,64,64.0],[119,99,65,64.0],[119,99,66,64.0],[119,99,67,64.0],[119,99,68,64.0],[119,99,69,64.0],[119,99,70,64.0],[119,99,71,64.0],[119,99,72,64.0],[119,99,73,64.0],[119,99,74,64.0],[119,99,75,64.0],[119,99,76,64.0],[119,99,77,64.0],[119,99,78,64.0],[119,99,79,64.0],[119,100,64,64.0],[119,100,65,64.0],[119,100,66,64.0],[119,100,67,64.0],[119,100,68,64.0],[119,100,69,64.0],[119,100,70,64.0],[119,100,71,64.0],[119,100,72,64.0],[119,100,73,64.0],[119,100,74,64.0],[119,100,75,64.0],[119,100,76,64.0],[119,100,77,64.0],[119,100,78,64.0],[119,100,79,64.0],[119,101,64,64.0],[119,101,65,64.0],[119,101,66,64.0],[119,101,67,64.0],[119,101,68,64.0],[119,101,69,64.0],[119,101,70,64.0],[119,101,71,64.0],[119,101,72,64.0],[119,101,73,64.0],[119,101,74,64.0],[119,101,75,64.0],[119,101,76,64.0],[119,101,77,64.0],[119,101,78,64.0],[119,101,79,64.0],[119,102,64,64.0],[119,102,65,64.0],[119,102,66,64.0],[119,102,67,64.0],[119,102,68,64.0],[119,102,69,64.0],[119,102,70,64.0],[119,102,71,64.0],[119,102,72,64.0],[119,102,73,64.0],[119,102,74,64.0],[119,102,75,64.0],[119,102,76,64.0],[119,102,77,64.0],[119,102,78,64.0],[119,102,79,64.0],[119,103,64,64.0],[119,103,65,64.0],[119,103,66,64.0],[119,103,67,64.0],[119,103,68,64.0],[119,103,69,64.0],[119,103,70,64.0],[119,103,71,64.0],[119,103,72,64.0],[119,103,73,64.0],[119,103,74,64.0],[119,103,75,64.0],[119,103,76,64.0],[119,103,77,64.0],[119,103,78,64.0],[119,103,79,64.0],[119,104,64,64.0],[119,104,65,64.0],[119,104,66,64.0],[119,104,67,64.0],[119,104,68,64.0],[119,104,69,64.0],[119,104,70,64.0],[119,104,71,64.0],[119,104,72,64.0],[119,104,73,64.0],[119,104,74,64.0],[119,104,75,64.0],[119,104,76,64.0],[119,104,77,64.0],[119,104,78,64.0],[119,104,79,64.0],[119,105,64,64.0],[119,105,65,64.0],[119,105,66,64.0],[119,105,67,64.0],[119,105,68,64.0],[119,105,69,64.0],[119,105,70,64.0],[119,105,71,64.0],[119,105,72,64.0],[119,105,73,64.0],[119,105,74,64.0],[119,105,75,64.0],[119,105,76,64.0],[119,105,77,64.0],[119,105,78,64.0],[119,105,79,64.0],[119,106,64,64.0],[119,106,65,64.0],[119,106,66,64.0],[119,106,67,64.0],[119,106,68,64.0],[119,106,69,64.0],[119,106,70,64.0],[119,106,71,64.0],[119,106,72,64.0],[119,106,73,64.0],[119,106,74,64.0],[119,106,75,64.0],[119,106,76,64.0],[119,106,77,64.0],[119,106,78,64.0],[119,106,79,64.0],[119,107,64,64.0],[119,107,65,64.0],[119,107,66,64.0],[119,107,67,64.0],[119,107,68,64.0],[119,107,69,64.0],[119,107,70,64.0],[119,107,71,64.0],[119,107,72,64.0],[119,107,73,64.0],[119,107,74,64.0],[119,107,75,64.0],[119,107,76,64.0],[119,107,77,64.0],[119,107,78,64.0],[119,107,79,64.0],[119,108,64,64.0],[119,108,65,64.0],[119,108,66,64.0],[119,108,67,64.0],[119,108,68,64.0],[119,108,69,64.0],[119,108,70,64.0],[119,108,71,64.0],[119,108,72,64.0],[119,108,73,64.0],[119,108,74,64.0],[119,108,75,64.0],[119,108,76,64.0],[119,108,77,64.0],[119,108,78,64.0],[119,108,79,64.0],[119,109,64,64.0],[119,109,65,64.0],[119,109,66,64.0],[119,109,67,64.0],[119,109,68,64.0],[119,109,69,64.0],[119,109,70,64.0],[119,109,71,64.0],[119,109,72,64.0],[119,109,73,64.0],[119,109,74,64.0],[119,109,75,64.0],[119,109,76,64.0],[119,109,77,64.0],[119,109,78,64.0],[119,109,79,64.0],[119,110,64,64.0],[119,110,65,64.0],[119,110,66,64.0],[119,110,67,64.0],[119,110,68,64.0],[119,110,69,64.0],[119,110,70,64.0],[119,110,71,64.0],[119,110,72,64.0],[119,110,73,64.0],[119,110,74,64.0],[119,110,75,64.0],[119,110,76,64.0],[119,110,77,64.0],[119,110,78,64.0],[119,110,79,64.0],[119,111,64,64.0],[119,111,65,64.0],[119,111,66,64.0],[119,111,67,64.0],[119,111,68,64.0],[119,111,69,64.0],[119,111,70,64.0],[119,111,71,64.0],[119,111,72,64.0],[119,111,73,64.0],[119,111,74,64.0],[119,111,75,64.0],[119,111,76,64.0],[119,111,77,64.0],[119,111,78,64.0],[119,111,79,64.0],[119,112,64,64.0],[119,112,65,64.0],[119,112,66,64.0],[119,112,67,64.0],[119,112,68,64.0],[119,112,69,64.0],[119,112,70,64.0],[119,112,71,64.0],[119,112,72,64.0],[119,112,73,64.0],[119,112,74,64.0],[119,112,75,64.0],[119,112,76,64.0],[119,112,77,64.0],[119,112,78,64.0],[119,112,79,64.0],[119,113,64,64.0],[119,113,65,64.0],[119,113,66,64.0],[119,113,67,64.0],[119,113,68,64.0],[119,113,69,64.0],[119,113,70,64.0],[119,113,71,64.0],[119,113,72,64.0],[119,113,73,64.0],[119,113,74,64.0],[119,113,75,64.0],[119,113,76,64.0],[119,113,77,64.0],[119,113,78,64.0],[119,113,79,64.0],[119,114,64,64.0],[119,114,65,64.0],[119,114,66,64.0],[119,114,67,64.0],[119,114,68,64.0],[119,114,69,64.0],[119,114,70,64.0],[119,114,71,64.0],[119,114,72,64.0],[119,114,73,64.0],[119,114,74,64.0],[119,114,75,64.0],[119,114,76,64.0],[119,114,77,64.0],[119,114,78,64.0],[119,114,79,64.0],[119,115,64,64.0],[119,115,65,64.0],[119,115,66,64.0],[119,115,67,64.0],[119,115,68,64.0],[119,115,69,64.0],[119,115,70,64.0],[119,115,71,64.0],[119,115,72,64.0],[119,115,73,64.0],[119,115,74,64.0],[119,115,75,64.0],[119,115,76,64.0],[119,115,77,64.0],[119,115,78,64.0],[119,115,79,64.0],[119,116,64,64.0],[119,116,65,64.0],[119,116,66,64.0],[119,116,67,64.0],[119,116,68,64.0],[119,116,69,64.0],[119,116,70,64.0],[119,116,71,64.0],[119,116,72,64.0],[119,116,73,64.0],[119,116,74,64.0],[119,116,75,64.0],[119,116,76,64.0],[119,116,77,64.0],[119,116,78,64.0],[119,116,79,64.0],[119,117,64,64.0],[119,117,65,64.0],[119,117,66,64.0],[119,117,67,64.0],[119,117,68,64.0],[119,117,69,64.0],[119,117,70,64.0],[119,117,71,64.0],[119,117,72,64.0],[119,117,73,64.0],[119,117,74,64.0],[119,117,75,64.0],[119,117,76,64.0],[119,117,77,64.0],[119,117,78,64.0],[119,117,79,64.0],[119,118,64,64.0],[119,118,65,64.0],[119,118,66,64.0],[119,118,67,64.0],[119,118,68,64.0],[119,118,69,64.0],[119,118,70,64.0],[119,118,71,64.0],[119,118,72,64.0],[119,118,73,64.0],[119,118,74,64.0],[119,118,75,64.0],[119,118,76,64.0],[119,118,77,64.0],[119,118,78,64.0],[119,118,79,64.0],[119,119,64,64.0],[119,119,65,64.0],[119,119,66,64.0],[119,119,67,64.0],[119,119,68,64.0],[119,119,69,64.0],[119,119,70,64.0],[119,119,71,64.0],[119,119,72,64.0],[119,119,73,64.0],[119,119,74,64.0],[119,119,75,64.0],[119,119,76,64.0],[119,119,77,64.0],[119,119,78,64.0],[119,119,79,64.0],[119,120,64,64.0],[119,120,65,64.0],[119,120,66,64.0],[119,120,67,64.0],[119,120,68,64.0],[119,120,69,64.0],[119,120,70,64.0],[119,120,71,64.0],[119,120,72,64.0],[119,120,73,64.0],[119,120,74,64.0],[119,120,75,64.0],[119,120,76,64.0],[119,120,77,64.0],[119,120,78,64.0],[119,120,79,64.0],[119,121,64,64.0],[119,121,65,64.0],[119,121,66,64.0],[119,121,67,64.0],[119,121,68,64.0],[119,121,69,64.0],[119,121,70,64.0],[119,121,71,64.0],[119,121,72,64.0],[119,121,73,64.0],[119,121,74,64.0],[119,121,75,64.0],[119,121,76,64.0],[119,121,77,64.0],[119,121,78,64.0],[119,121,79,64.0],[119,122,64,64.0],[119,122,65,64.0],[119,122,66,64.0],[119,122,67,64.0],[119,122,68,64.0],[119,122,69,64.0],[119,122,70,64.0],[119,122,71,64.0],[119,122,72,64.0],[119,122,73,64.0],[119,122,74,64.0],[119,122,75,64.0],[119,122,76,64.0],[119,122,77,64.0],[119,122,78,64.0],[119,122,79,64.0],[119,123,64,64.0],[119,123,65,64.0],[119,123,66,64.0],[119,123,67,64.0],[119,123,68,64.0],[119,123,69,64.0],[119,123,70,64.0],[119,123,71,64.0],[119,123,72,64.0],[119,123,73,64.0],[119,123,74,64.0],[119,123,75,64.0],[119,123,76,64.0],[119,123,77,64.0],[119,123,78,64.0],[119,123,79,64.0],[119,124,64,64.0],[119,124,65,64.0],[119,124,66,64.0],[119,124,67,64.0],[119,124,68,64.0],[119,124,69,64.0],[119,124,70,64.0],[119,124,71,64.0],[119,124,72,64.0],[119,124,73,64.0],[119,124,74,64.0],[119,124,75,64.0],[119,124,76,64.0],[119,124,77,64.0],[119,124,78,64.0],[119,124,79,64.0],[119,125,64,64.0],[119,125,65,64.0],[119,125,66,64.0],[119,125,67,64.0],[119,125,68,64.0],[119,125,69,64.0],[119,125,70,64.0],[119,125,71,64.0],[119,125,72,64.0],[119,125,73,64.0],[119,125,74,64.0],[119,125,75,64.0],[119,125,76,64.0],[119,125,77,64.0],[119,125,78,64.0],[119,125,79,64.0],[119,126,64,64.0],[119,126,65,64.0],[119,126,66,64.0],[119,126,67,64.0],[119,126,68,64.0],[119,126,69,64.0],[119,126,70,64.0],[119,126,71,64.0],[119,126,72,64.0],[119,126,73,64.0],[119,126,74,64.0],[119,126,75,64.0],[119,126,76,64.0],[119,126,77,64.0],[119,126,78,64.0],[119,126,79,64.0],[119,127,64,64.0],[119,127,65,64.0],[119,127,66,64.0],[119,127,67,64.0],[119,127,68,64.0],[119,127,69,64.0],[119,127,70,64.0],[119,127,71,64.0],[119,127,72,64.0],[119,127,73,64.0],[119,127,74,64.0],[119,127,75,64.0],[119,127,76,64.0],[119,127,77,64.0],[119,127,78,64.0],[119,127,79,64.0],[119,128,64,64.0],[119,128,65,64.0],[119,128,66,64.0],[119,128,67,64.0],[119,128,68,64.0],[119,128,69,64.0],[119,128,70,64.0],[119,128,71,64.0],[119,128,72,64.0],[119,128,73,64.0],[119,128,74,64.0],[119,128,75,64.0],[119,128,76,64.0],[119,128,77,64.0],[119,128,78,64.0],[119,128,79,64.0],[119,129,64,64.0],[119,129,65,64.0],[119,129,66,64.0],[119,129,67,64.0],[119,129,68,64.0],[119,129,69,64.0],[119,129,70,64.0],[119,129,71,64.0],[119,129,72,64.0],[119,129,73,64.0],[119,129,74,64.0],[119,129,75,64.0],[119,129,76,64.0],[119,129,77,64.0],[119,129,78,64.0],[119,129,79,64.0],[119,130,64,64.0],[119,130,65,64.0],[119,130,66,64.0],[119,130,67,64.0],[119,130,68,64.0],[119,130,69,64.0],[119,130,70,64.0],[119,130,71,64.0],[119,130,72,64.0],[119,130,73,64.0],[119,130,74,64.0],[119,130,75,64.0],[119,130,76,64.0],[119,130,77,64.0],[119,130,78,64.0],[119,130,79,64.0],[119,131,64,64.0],[119,131,65,64.0],[119,131,66,64.0],[119,131,67,64.0],[119,131,68,64.0],[119,131,69,64.0],[119,131,70,64.0],[119,131,71,64.0],[119,131,72,64.0],[119,131,73,64.0],[119,131,74,64.0],[119,131,75,64.0],[119,131,76,64.0],[119,131,77,64.0],[119,131,78,64.0],[119,131,79,64.0],[119,132,64,64.0],[119,132,65,64.0],[119,132,66,64.0],[119,132,67,64.0],[119,132,68,64.0],[119,132,69,64.0],[119,132,70,64.0],[119,132,71,64.0],[119,132,72,64.0],[119,132,73,64.0],[119,132,74,64.0],[119,132,75,64.0],[119,132,76,64.0],[119,132,77,64.0],[119,132,78,64.0],[119,132,79,64.0],[119,133,64,64.0],[119,133,65,64.0],[119,133,66,64.0],[119,133,67,64.0],[119,133,68,64.0],[119,133,69,64.0],[119,133,70,64.0],[119,133,71,64.0],[119,133,72,64.0],[119,133,73,64.0],[119,133,74,64.0],[119,133,75,64.0],[119,133,76,64.0],[119,133,77,64.0],[119,133,78,64.0],[119,133,79,64.0],[119,134,64,64.0],[119,134,65,64.0],[119,134,66,64.0],[119,134,67,64.0],[119,134,68,64.0],[119,134,69,64.0],[119,134,70,64.0],[119,134,71,64.0],[119,134,72,64.0],[119,134,73,64.0],[119,134,74,64.0],[119,134,75,64.0],[119,134,76,64.0],[119,134,77,64.0],[119,134,78,64.0],[119,134,79,64.0],[119,135,64,64.0],[119,135,65,64.0],[119,135,66,64.0],[119,135,67,64.0],[119,135,68,64.0],[119,135,69,64.0],[119,135,70,64.0],[119,135,71,64.0],[119,135,72,64.0],[119,135,73,64.0],[119,135,74,64.0],[119,135,75,64.0],[119,135,76,64.0],[119,135,77,64.0],[119,135,78,64.0],[119,135,79,64.0],[119,136,64,64.0],[119,136,65,64.0],[119,136,66,64.0],[119,136,67,64.0],[119,136,68,64.0],[119,136,69,64.0],[119,136,70,64.0],[119,136,71,64.0],[119,136,72,64.0],[119,136,73,64.0],[119,136,74,64.0],[119,136,75,64.0],[119,136,76,64.0],[119,136,77,64.0],[119,136,78,64.0],[119,136,79,64.0],[119,137,64,64.0],[119,137,65,64.0],[119,137,66,64.0],[119,137,67,64.0],[119,137,68,64.0],[119,137,69,64.0],[119,137,70,64.0],[119,137,71,64.0],[119,137,72,64.0],[119,137,73,64.0],[119,137,74,64.0],[119,137,75,64.0],[119,137,76,64.0],[119,137,77,64.0],[119,137,78,64.0],[119,137,79,64.0],[119,138,64,64.0],[119,138,65,64.0],[119,138,66,64.0],[119,138,67,64.0],[119,138,68,64.0],[119,138,69,64.0],[119,138,70,64.0],[119,138,71,64.0],[119,138,72,64.0],[119,138,73,64.0],[119,138,74,64.0],[119,138,75,64.0],[119,138,76,64.0],[119,138,77,64.0],[119,138,78,64.0],[119,138,79,64.0],[119,139,64,64.0],[119,139,65,64.0],[119,139,66,64.0],[119,139,67,64.0],[119,139,68,64.0],[119,139,69,64.0],[119,139,70,64.0],[119,139,71,64.0],[119,139,72,64.0],[119,139,73,64.0],[119,139,74,64.0],[119,139,75,64.0],[119,139,76,64.0],[119,139,77,64.0],[119,139,78,64.0],[119,139,79,64.0],[119,140,64,64.0],[119,140,65,64.0],[119,140,66,64.0],[119,140,67,64.0],[119,140,68,64.0],[119,140,69,64.0],[119,140,70,64.0],[119,140,71,64.0],[119,140,72,64.0],[119,140,73,64.0],[119,140,74,64.0],[119,140,75,64.0],[119,140,76,64.0],[119,140,77,64.0],[119,140,78,64.0],[119,140,79,64.0],[119,141,64,64.0],[119,141,65,64.0],[119,141,66,64.0],[119,141,67,64.0],[119,141,68,64.0],[119,141,69,64.0],[119,141,70,64.0],[119,141,71,64.0],[119,141,72,64.0],[119,141,73,64.0],[119,141,74,64.0],[119,141,75,64.0],[119,141,76,64.0],[119,141,77,64.0],[119,141,78,64.0],[119,141,79,64.0],[119,142,64,64.0],[119,142,65,64.0],[119,142,66,64.0],[119,142,67,64.0],[119,142,68,64.0],[119,142,69,64.0],[119,142,70,64.0],[119,142,71,64.0],[119,142,72,64.0],[119,142,73,64.0],[119,142,74,64.0],[119,142,75,64.0],[119,142,76,64.0],[119,142,77,64.0],[119,142,78,64.0],[119,142,79,64.0],[119,143,64,64.0],[119,143,65,64.0],[119,143,66,64.0],[119,143,67,64.0],[119,143,68,64.0],[119,143,69,64.0],[119,143,70,64.0],[119,143,71,64.0],[119,143,72,64.0],[119,143,73,64.0],[119,143,74,64.0],[119,143,75,64.0],[119,143,76,64.0],[119,143,77,64.0],[119,143,78,64.0],[119,143,79,64.0],[119,144,64,64.0],[119,144,65,64.0],[119,144,66,64.0],[119,144,67,64.0],[119,144,68,64.0],[119,144,69,64.0],[119,144,70,64.0],[119,144,71,64.0],[119,144,72,64.0],[119,144,73,64.0],[119,144,74,64.0],[119,144,75,64.0],[119,144,76,64.0],[119,144,77,64.0],[119,144,78,64.0],[119,144,79,64.0],[119,145,64,64.0],[119,145,65,64.0],[119,145,66,64.0],[119,145,67,64.0],[119,145,68,64.0],[119,145,69,64.0],[119,145,70,64.0],[119,145,71,64.0],[119,145,72,64.0],[119,145,73,64.0],[119,145,74,64.0],[119,145,75,64.0],[119,145,76,64.0],[119,145,77,64.0],[119,145,78,64.0],[119,145,79,64.0],[119,146,64,64.0],[119,146,65,64.0],[119,146,66,64.0],[119,146,67,64.0],[119,146,68,64.0],[119,146,69,64.0],[119,146,70,64.0],[119,146,71,64.0],[119,146,72,64.0],[119,146,73,64.0],[119,146,74,64.0],[119,146,75,64.0],[119,146,76,64.0],[119,146,77,64.0],[119,146,78,64.0],[119,146,79,64.0],[119,147,64,64.0],[119,147,65,64.0],[119,147,66,64.0],[119,147,67,64.0],[119,147,68,64.0],[119,147,69,64.0],[119,147,70,64.0],[119,147,71,64.0],[119,147,72,64.0],[119,147,73,64.0],[119,147,74,64.0],[119,147,75,64.0],[119,147,76,64.0],[119,147,77,64.0],[119,147,78,64.0],[119,147,79,64.0],[119,148,64,64.0],[119,148,65,64.0],[119,148,66,64.0],[119,148,67,64.0],[119,148,68,64.0],[119,148,69,64.0],[119,148,70,64.0],[119,148,71,64.0],[119,148,72,64.0],[119,148,73,64.0],[119,148,74,64.0],[119,148,75,64.0],[119,148,76,64.0],[119,148,77,64.0],[119,148,78,64.0],[119,148,79,64.0],[119,149,64,64.0],[119,149,65,64.0],[119,149,66,64.0],[119,149,67,64.0],[119,149,68,64.0],[119,149,69,64.0],[119,149,70,64.0],[119,149,71,64.0],[119,149,72,64.0],[119,149,73,64.0],[119,149,74,64.0],[119,149,75,64.0],[119,149,76,64.0],[119,149,77,64.0],[119,149,78,64.0],[119,149,79,64.0],[119,150,64,64.0],[119,150,65,64.0],[119,150,66,64.0],[119,150,67,64.0],[119,150,68,64.0],[119,150,69,64.0],[119,150,70,64.0],[119,150,71,64.0],[119,150,72,64.0],[119,150,73,64.0],[119,150,74,64.0],[119,150,75,64.0],[119,150,76,64.0],[119,150,77,64.0],[119,150,78,64.0],[119,150,79,64.0],[119,151,64,64.0],[119,151,65,64.0],[119,151,66,64.0],[119,151,67,64.0],[119,151,68,64.0],[119,151,69,64.0],[119,151,70,64.0],[119,151,71,64.0],[119,151,72,64.0],[119,151,73,64.0],[119,151,74,64.0],[119,151,75,64.0],[119,151,76,64.0],[119,151,77,64.0],[119,151,78,64.0],[119,151,79,64.0],[119,152,64,64.0],[119,152,65,64.0],[119,152,66,64.0],[119,152,67,64.0],[119,152,68,64.0],[119,152,69,64.0],[119,152,70,64.0],[119,152,71,64.0],[119,152,72,64.0],[119,152,73,64.0],[119,152,74,64.0],[119,152,75,64.0],[119,152,76,64.0],[119,152,77,64.0],[119,152,78,64.0],[119,152,79,64.0],[119,153,64,64.0],[119,153,65,64.0],[119,153,66,64.0],[119,153,67,64.0],[119,153,68,64.0],[119,153,69,64.0],[119,153,70,64.0],[119,153,71,64.0],[119,153,72,64.0],[119,153,73,64.0],[119,153,74,64.0],[119,153,75,64.0],[119,153,76,64.0],[119,153,77,64.0],[119,153,78,64.0],[119,153,79,64.0],[119,154,64,64.0],[119,154,65,64.0],[119,154,66,64.0],[119,154,67,64.0],[119,154,68,64.0],[119,154,69,64.0],[119,154,70,64.0],[119,154,71,64.0],[119,154,72,64.0],[119,154,73,64.0],[119,154,74,64.0],[119,154,75,64.0],[119,154,76,64.0],[119,154,77,64.0],[119,154,78,64.0],[119,154,79,64.0],[119,155,64,64.0],[119,155,65,64.0],[119,155,66,64.0],[119,155,67,64.0],[119,155,68,64.0],[119,155,69,64.0],[119,155,70,64.0],[119,155,71,64.0],[119,155,72,64.0],[119,155,73,64.0],[119,155,74,64.0],[119,155,75,64.0],[119,155,76,64.0],[119,155,77,64.0],[119,155,78,64.0],[119,155,79,64.0],[119,156,64,64.0],[119,156,65,64.0],[119,156,66,64.0],[119,156,67,64.0],[119,156,68,64.0],[119,156,69,64.0],[119,156,70,64.0],[119,156,71,64.0],[119,156,72,64.0],[119,156,73,64.0],[119,156,74,64.0],[119,156,75,64.0],[119,156,76,64.0],[119,156,77,64.0],[119,156,78,64.0],[119,156,79,64.0],[119,157,64,64.0],[119,157,65,64.0],[119,157,66,64.0],[119,157,67,64.0],[119,157,68,64.0],[119,157,69,64.0],[119,157,70,64.0],[119,157,71,64.0],[119,157,72,64.0],[119,157,73,64.0],[119,157,74,64.0],[119,157,75,64.0],[119,157,76,64.0],[119,157,77,64.0],[119,157,78,64.0],[119,157,79,64.0],[119,158,64,64.0],[119,158,65,64.0],[119,158,66,64.0],[119,158,67,64.0],[119,158,68,64.0],[119,158,69,64.0],[119,158,70,64.0],[119,158,71,64.0],[119,158,72,64.0],[119,158,73,64.0],[119,158,74,64.0],[119,158,75,64.0],[119,158,76,64.0],[119,158,77,64.0],[119,158,78,64.0],[119,158,79,64.0],[119,159,64,64.0],[119,159,65,64.0],[119,159,66,64.0],[119,159,67,64.0],[119,159,68,64.0],[119,159,69,64.0],[119,159,70,64.0],[119,159,71,64.0],[119,159,72,64.0],[119,159,73,64.0],[119,159,74,64.0],[119,159,75,64.0],[119,159,76,64.0],[119,159,77,64.0],[119,159,78,64.0],[119,159,79,64.0],[119,160,64,64.0],[119,160,65,64.0],[119,160,66,64.0],[119,160,67,64.0],[119,160,68,64.0],[119,160,69,64.0],[119,160,70,64.0],[119,160,71,64.0],[119,160,72,64.0],[119,160,73,64.0],[119,160,74,64.0],[119,160,75,64.0],[119,160,76,64.0],[119,160,77,64.0],[119,160,78,64.0],[119,160,79,64.0],[119,161,64,64.0],[119,161,65,64.0],[119,161,66,64.0],[119,161,67,64.0],[119,161,68,64.0],[119,161,69,64.0],[119,161,70,64.0],[119,161,71,64.0],[119,161,72,64.0],[119,161,73,64.0],[119,161,74,64.0],[119,161,75,64.0],[119,161,76,64.0],[119,161,77,64.0],[119,161,78,64.0],[119,161,79,64.0],[119,162,64,64.0],[119,162,65,64.0],[119,162,66,64.0],[119,162,67,64.0],[119,162,68,64.0],[119,162,69,64.0],[119,162,70,64.0],[119,162,71,64.0],[119,162,72,64.0],[119,162,73,64.0],[119,162,74,64.0],[119,162,75,64.0],[119,162,76,64.0],[119,162,77,64.0],[119,162,78,64.0],[119,162,79,0.5135041051570728],[119,163,64,64.0],[119,163,65,64.0],[119,163,66,64.0],[119,163,67,64.0],[119,163,68,64.0],[119,163,69,64.0],[119,163,70,64.0],[119,163,71,64.0],[119,163,72,64.0],[119,163,73,64.0],[119,163,74,64.0],[119,163,75,64.0],[119,163,76,64.0],[119,163,77,64.0],[119,163,78,0.4679515082874007],[119,163,79,0.5165693148231738],[119,164,64,64.0],[119,164,65,64.0],[119,164,66,64.0],[119,164,67,64.0],[119,164,68,64.0],[119,164,69,64.0],[119,164,70,64.0],[119,164,71,64.0],[119,164,72,64.0],[119,164,73,64.0],[119,164,74,64.0],[119,164,75,64.0],[119,164,76,64.0],[119,164,77,0.41926168105008743],[119,164,78,0.47175796308978396],[119,164,79,0.5205561235131168],[119,165,64,64.0],[119,165,65,64.0],[119,165,66,64.0],[119,165,67,64.0],[119,165,68,64.0],[119,165,69,64.0],[119,165,70,64.0],[119,165,71,64.0],[119,165,72,64.0],[119,165,73,64.0],[119,165,74,64.0],[119,165,75,64.0],[119,165,76,0.36860054857682584],[119,165,77,0.4241521083089687],[119,165,78,0.4767039454601618],[119,165,79,0.5255138591128142],[119,166,64,64.0],[119,166,65,64.0],[119,166,66,64.0],[119,166,67,64.0],[119,166,68,64.0],[119,166,69,64.0],[119,166,70,64.0],[119,166,71,64.0],[119,166,72,64.0],[119,166,73,64.0],[119,166,74,0.25835443717264983],[119,166,75,0.31722611152596786],[119,166,76,0.3748854175459423],[119,166,77,0.43036943139871736],[119,166,78,0.48281555904920537],[119,166,79,0.5314777180686294],[119,167,64,64.0],[119,167,65,64.0],[119,167,66,64.0],[119,167,67,64.0],[119,167,68,64.0],[119,167,69,64.0],[119,167,70,64.0],[119,167,71,64.0],[119,167,72,64.0],[119,167,73,0.20702536500594954],[119,167,74,0.2664570099871032],[119,167,75,0.3251728653176409],[119,167,76,0.38264689057273726],[119,167,77,0.4379118268122381],[119,167,78,0.49010155867060223],[119,167,79,0.5384672405527074],[119,168,64,64.0],[119,168,65,64.0],[119,168,66,64.0],[119,168,67,64.0],[119,168,68,64.0],[119,168,69,64.0],[119,168,70,64.0],[119,168,71,64.0],[119,168,72,0.15721098325051552],[119,168,73,0.2171188836038423],[119,168,74,0.27628049621747275],[119,168,75,0.3347018845379103],[119,168,76,0.3918509793845726],[119,168,77,0.4467572144664942],[119,168,78,0.4985520043028524],[119,168,79,0.5464847895177983],[119,169,64,64.0],[119,169,65,64.0],[119,169,66,64.0],[119,169,67,64.0],[119,169,68,64.0],[119,169,69,64.0],[119,169,70,64.0],[119,169,71,0.10921189803668893],[119,169,72,0.16944358560751066],[119,169,73,0.2289752066627969],[119,169,74,0.2877422367347765],[119,169,75,0.345743221272082],[119,169,76,0.40244078703716063],[119,169,77,0.45686201725309006],[119,169,78,0.508136830205547],[119,169,79,0.5555139210705504],[119,170,64,64.0],[119,170,65,64.0],[119,170,66,64.0],[119,170,67,64.0],[119,170,68,64.0],[119,170,69,64.0],[119,170,70,0.0633457851156039],[119,170,71,0.12366563860610214],[119,170,72,0.18342557599745823],[119,170,73,0.24247158725692006],[119,170,74,0.3007331232476015],[119,170,75,0.35820174963555024],[119,170,76,0.41433548352326977],[119,170,77,0.468159931664575],[119,170,78,0.51880440095233],[119,170,79,0.5655177172097878],[119,171,64,64.0],[119,171,65,64.0],[119,171,66,64.0],[119,171,67,64.0],[119,171,68,64.0],[119,171,69,0.019918248787530776],[119,171,70,0.08003016987387235],[119,171,71,0.13979655556094805],[119,171,72,0.19899169870316574],[119,171,73,0.2574571959159806],[119,171,74,0.3151170584075793],[119,171,75,0.37195641988269423],[119,171,76,0.42742934210121153],[119,171,77,0.4805607352857087],[119,171,78,0.5304800799359354],[119,171,79,0.5764371062535917],[119,172,64,64.0],[119,172,65,64.0],[119,172,66,64.0],[119,172,67,64.0],[119,172,68,-0.02080449267717839],[119,172,69,0.03876480617870566],[119,172,70,0.09825802015855806],[119,172,71,0.1573951062402268],[119,172,72,0.21594746141860327],[119,172,73,0.27375287654527536],[119,172,74,0.33073049634144225],[119,172,75,0.38685957083369205],[119,172,76,0.4415908110234925],[119,172,77,0.49394910608732345],[119,172,78,0.5430647855378274],[119,172,79,0.5881891464001411],[119,173,64,64.0],[119,173,65,64.0],[119,173,66,0.01587072185696027],[119,173,67,0.00672886567435052],[119,173,68,5.381069025636731E-5],[119,173,69,0.05895785894981828],[119,173,70,0.11777443230788065],[119,173,71,0.17622187103906195],[119,173,72,0.23406921596222968],[119,173,73,0.29115100377184155],[119,173,74,0.3473820634301016],[119,173,75,0.4027363004414797],[119,173,76,0.45666162048961806],[119,173,77,0.508183453348518],[119,173,78,0.5564335347899052],[119,173,79,0.6006652722514929],[119,174,64,64.0],[119,174,65,0.07236904865351439],[119,174,66,0.058827343173339944],[119,174,67,0.046622523725232234],[119,174,68,0.03559738891521315],[119,174,69,0.0801968269543832],[119,174,70,0.13829452948246213],[119,174,71,0.19600798529671248],[119,174,72,0.2531043605584203],[119,174,73,0.30941544171686175],[119,174,74,0.3648522593346064],[119,174,75,0.4193838944987127],[119,174,76,0.472455924822914],[119,174,77,0.5230947602070486],[119,174,78,0.570433974528145],[119,174,79,0.6137295043001743],[119,175,64,0.13209646263765218],[119,175,65,0.1144299232408188],[119,175,66,0.09800585128157432],[119,175,67,0.08277997604360421],[119,175,68,0.06862135440157982],[119,175,69,0.10215162982530461],[119,175,70,0.15950426792421368],[119,175,71,0.21645571175598594],[119,175,72,0.2727716636867075],[119,175,73,0.3282816041939867],[119,175,74,0.38289323826871063],[119,175,75,0.43657131348447104],[119,175,76,0.4887594798711102],[119,175,77,0.5384854378376787],[119,175,78,0.5848849000379516],[119,175,79,0.6272166213783711],[119,176,64,0.17297101900632478],[119,176,65,0.1526264509123501],[119,176,66,0.13337103796439967],[119,176,67,0.11518512997525866],[119,176,68,0.0979634309841285],[119,176,69,0.12446388729146617],[119,176,70,0.18106140156238962],[119,176,71,0.23723915359457398],[119,176,72,0.29276170949933805],[119,176,73,0.34745661633405844],[119,176,74,0.40122867051852407],[119,176,75,0.4540387375511616],[119,176,76,0.5053288556311322],[119,176,77,0.5541281912589093],[119,176,78,0.5995747611916171],[119,176,79,0.6409302960700997],[119,177,64,0.21000548931193885],[119,177,65,0.18704076873648343],[119,177,66,0.16502242355344643],[119,177,67,0.1439546562778537],[119,177,68,0.12375699744014707],[119,177,69,0.14687832220410135],[119,177,70,0.20272123684654428],[119,177,71,0.25812401391452333],[119,177,72,0.31285035261819216],[119,177,73,0.3667261968231589],[119,177,74,0.41965382867416795],[119,177,75,0.47159067997806753],[119,177,76,0.5219774491205879],[119,177,77,0.5698448545086784],[119,177,78,0.6143332940770301],[119,177,79,0.6547075481556309],[119,178,64,0.24342104577940604],[119,178,65,0.2179097173517247],[119,178,66,0.19321211620198275],[119,178,67,0.1693553359642495],[119,178,68,0.14628272487454352],[119,178,69,0.16972818498165526],[119,178,70,0.22480215024281258],[119,178,71,0.27941204863061503],[119,178,72,0.3333210951731203],[119,178,73,0.38635410678651805],[119,178,74,0.438411424723887],[119,178,75,0.48944770461193743],[119,178,76,0.5389027553564425],[119,178,77,0.5858090723649567],[119,178,78,0.6293096548168761],[119,178,79,0.6686725539853167],[119,179,64,0.2736148599637303],[119,179,65,0.2456439517013128],[119,179,66,0.21836342663487215],[119,179,67,0.19182213672630904],[119,179,68,0.1659860781155585],[119,179,69,0.19341025210766372],[119,179,70,0.24768315796014712],[119,179,71,0.3014627082643438],[119,179,72,0.3545121581267454],[119,179,73,0.4066558478861001],[119,179,74,0.4577929577907532],[119,179,75,0.5078762602349765],[119,179,76,0.5563453312458976],[119,179,77,0.6022348368959601],[119,179,78,0.644690768389179],[119,179,79,0.6829848421959037],[119,180,64,0.30090299518239294],[119,180,65,0.2705720079549184],[119,180,66,0.2408167225056828],[119,180,67,0.21170645984331607],[119,180,68,0.18322854443518727],[119,180,69,0.2181806168199647],[119,180,70,0.2716083496170814],[119,180,71,0.3245067581102092],[119,180,72,0.3766397715226843],[119,180,73,0.42783204013528353],[119,180,74,0.477982525843172],[119,180,75,0.5270431973893671],[119,180,76,0.5744542114294374],[119,180,77,0.6192529178004094],[119,180,78,0.6605888098398922],[119,180,79,0.6977377832829608],[119,181,64,0.324847240968099],[119,181,65,0.2922708226304498],[119,181,66,0.260165251887159],[119,181,67,0.22861886351870345],[119,181,68,0.19763880674135942],[119,181,69,0.24417120236281054],[119,181,70,0.29670274151385323],[119,181,71,0.3486614249391048],[119,181,72,0.39981257044701457],[119,181,73,0.44998202572911655],[119,181,74,0.4990695990772695],[119,181,75,0.5470276763171382],[119,181,76,0.5932979200092952],[119,181,77,0.636920952318952],[119,181,78,0.6770503522871851],[119,181,79,0.7129667813886218],[119,182,64,0.3449743504949173],[119,182,65,0.310280536611218],[119,182,66,0.27596381204842796],[119,182,67,0.2421299374946006],[119,182,68,0.21947903691622764],[119,182,69,0.27140560918978573],[119,182,70,0.32298748794238996],[119,182,71,0.37394492808899366],[119,182,72,0.42404540383944367],[119,182,73,0.47311691612275714],[119,182,74,0.5210612686800149],[119,182,75,0.5678325839227905],[119,182,76,0.6128750262090275],[119,182,77,0.6552331149963719],[119,182,78,0.694065131444305],[119,182,79,0.7286571197549649],[119,183,64,0.36097843357877685],[119,183,65,0.32430556426542895],[119,183,66,0.2879280013543993],[119,183,67,0.25196725774882156],[119,183,68,0.24882698330774444],[119,183,69,0.29981421847068146],[119,183,70,0.3503943761358497],[119,183,71,0.4002903239957453],[119,183,72,0.44927248883859144],[119,183,73,0.49717201882990286],[119,183,74,0.5438939113617961],[119,183,75,0.5893954041661],[119,183,76,0.6331241924633733],[119,183,77,0.6741293199291379],[119,183,78,0.7115743834449135],[119,183,79,0.7447514207606066],[119,184,64,0.37272628148126435],[119,184,65,0.3342197816575028],[119,184,66,0.29593924532386723],[119,184,67,0.25802022814203046],[119,184,68,0.2792394184375593],[119,184,69,0.32924855190193864],[119,184,70,0.37877960485734397],[119,184,71,0.4275586641637713],[119,184,72,0.4753599106610408],[119,184,73,0.5220186439408768],[119,184,74,0.5674442696581329],[119,184,75,0.6115985418848018],[119,184,76,0.6539337149381083],[119,184,77,0.6935039554980269],[119,184,78,0.7294787559706477],[119,184,79,0.7611567205402783],[119,185,64,0.3802632206367862],[119,185,65,0.3400722611758532],[119,185,66,0.300050386067893],[119,185,67,0.2612452493188412],[119,185,68,0.31049569256914933],[119,185,69,0.35949488782136174],[119,185,70,0.4079368466285237],[119,185,71,0.455551466577119],[119,185,72,0.5021174680147891],[119,185,73,0.5474752903609786],[119,185,74,0.5915399480011106],[119,185,75,0.6342791000477092],[119,185,76,0.6751505564804283],[119,185,77,0.7132141515863222],[119,185,78,0.7476457926813774],[119,185,79,0.7777511581878281],[119,186,64,0.38381949530215576],[119,186,65,0.3420935525763336],[119,186,66,0.3004918351078604],[119,186,67,0.29401339367198465],[119,186,68,0.3423208508612394],[119,186,69,0.39028713362678935],[119,186,70,0.4376095935977229],[119,186,71,0.48402250055072776],[119,186,72,0.5293098640468166],[119,186,73,0.5733182117688264],[119,186,74,0.6159693245602693],[119,186,75,0.6572381104380145],[119,186,76,0.6965888719996152],[119,186,77,0.7330875792833571],[119,186,78,0.7659169909479389],[119,186,79,0.7943902795424417],[119,187,64,0.3838171791292087],[119,187,65,0.34070251044181454],[119,187,66,0.2976782895735045],[119,187,67,0.3270395655917393],[119,187,68,0.37439822814986656],[119,187,69,0.42131895449828616],[119,187,70,0.4675027870472389],[119,187,71,0.5126888850214423],[119,187,72,0.5566672428243806],[119,187,73,0.5992913622943182],[119,187,74,0.6404908788525947],[119,187,75,0.6802492177664411],[119,187,76,0.7180380262776715],[119,187,77,0.7529297830731045],[119,187,78,0.7841144328870726],[119,187,79,0.8109129555578252],[119,188,64,0.38085414160544384],[119,188,65,0.33649071615102866],[119,188,66,0.3133341987701367],[119,188,67,0.3599670394086247],[119,188,68,0.4063812753031859],[119,188,69,0.45225515842465946],[119,188,70,0.4972937305405254],[119,188,71,0.5412415002795308],[119,188,72,0.5838950713507582],[119,188,73,0.625115721916901],[119,188,74,0.6648419351222701],[119,188,75,0.7030668172148612],[119,188,76,0.7392701042105195],[119,188,77,0.7725310455083743],[119,188,78,0.8020469896990826],[119,188,79,0.8271469152548374],[119,189,64,0.3750010000847903],[119,189,65,0.32953509269628023],[119,189,66,0.34660701231491114],[119,189,67,0.3924198265479726],[119,189,68,0.43790461714862083],[119,189,69,0.4827423375339063],[119,189,70,0.5266422867089207],[119,189,71,0.5693547131403425],[119,189,72,0.6106833671150804],[119,189,73,0.6504980015838067],[119,189,74,0.6887468214898618],[119,189,75,0.7254336454100824],[119,189,76,0.7600469134794569],[119,189,77,0.7916727843703318],[119,189,78,0.819516099307952],[119,189,79,0.842913893257322],[119,190,64,0.3656680217244484],[119,190,65,0.33386390845358327],[119,190,66,0.3789919739821365],[119,190,67,0.4240133310238756],[119,190,68,0.4685943419719266],[119,190,69,0.5124187657271813],[119,190,70,0.555200357677511],[119,190,71,0.5966954155557228],[119,190,72,0.6367152711758975],[119,190,73,0.675138728047913],[119,190,74,0.7119244448706118],[119,190,75,0.7470878248274814],[119,190,76,0.7801264796525974],[119,190,77,0.8101334823130786],[119,190,78,0.8363211173036786],[119,190,79,0.8580343919109179],[119,191,64,0.35239846824927984],[119,191,65,0.365608406600756],[119,191,66,0.4100969999763835],[119,191,67,0.45436421448181274],[119,191,68,0.49807752258901383],[119,191,69,0.540923552617101],[119,191,70,0.5826206491309167],[119,191,71,0.6229313766659433],[119,191,72,0.6616749667791961],[119,191,73,0.6987397084259169],[119,191,74,0.7340952816624947],[119,191,75,0.7677693616251181],[119,191,76,0.7992690337168664],[119,191,77,0.8276941489938334],[119,191,78,0.8522642411873216],[119,191,79,0.8723320579853073],[119,192,64,0.3517574219422745],[119,192,65,0.3956471044201239],[119,192,66,0.4395410420622925],[119,192,67,0.48309947078950705],[119,192,68,0.5259909689900929],[119,192,69,0.5679050537699616],[119,192,70,0.6085647180185987],[119,192,71,0.6477389082917544],[119,192,72,0.685254943510497],[119,192,73,0.7210108744764607],[119,192,74,0.7549877842036954],[119,192,75,0.787226096907995],[119,192,76,0.8172424920402507],[119,192,77,0.8441433156884267],[119,192,78,0.8671550079185026],[119,192,79,0.8856376739596621],[119,193,64,0.38015734853210686],[119,193,65,0.4236133804230381],[119,193,66,0.466962653808374],[119,193,67,0.5098647101756133],[119,193,68,0.5519892125557586],[119,193,69,0.5930285372514986],[119,193,70,0.6327103038993185],[119,193,71,0.6708098438662173],[119,193,72,0.7071626069807015],[119,193,73,0.7416765065979052],[119,193,74,0.7743442029992151],[119,193,75,0.8052191114221932],[119,193,76,0.8338274287640486],[119,193,77,0.8592815623918785],[119,193,78,0.880814364765141],[119,193,79,0.897792763891082],[119,194,64,0.40609743881209814],[119,194,65,0.44916929738024725],[119,194,66,0.49202774712799113],[119,194,67,0.5343316529170772],[119,194,68,0.5757517218458208],[119,194,69,0.6159831064769741],[119,194,70,0.6547579439255178],[119,194,71,0.6918578308070412],[119,194,72,0.7271262340463832],[119,194,73,0.7604808375464034],[119,194,74,0.7919258247172294],[119,194,75,0.8215275836794693],[119,194,76,0.848821540625664],[119,194,77,0.8729255774045614],[119,194,78,0.8930783134558896],[119,194,79,0.9086528138664659],[119,195,64,0.42927533737219936],[119,195,65,0.4720127806578096],[119,195,66,0.5144365391170327],[119,195,67,0.5562048325746852],[119,195,68,0.5969893499604257],[119,195,69,0.6364878793651428],[119,195,70,0.6744368714671761],[119,195,71,0.7106239363290101],[119,195,72,0.7449002735641271],[119,195,73,0.7771930358738989],[119,195,74,0.8075176259548413],[119,195,75,0.8359531015119798],[119,195,76,0.8620436042116334],[119,195,77,0.8849117494036586],[119,195,78,0.9038011276350071],[119,195,79,0.918090107037551],[119,196,64,0.44943266933671455],[119,196,65,0.4918839039167665],[119,196,66,0.5339296202156044],[119,196,67,0.5752274374364429],[119,196,68,0.6154499399086134],[119,196,69,0.6542973481601866],[119,196,70,0.6915101208248242],[119,196,71,0.7268814873834858],[119,196,72,0.7602699117406843],[119,196,73,0.7916114866351809],[119,196,74,0.8209322588854221],[119,196,75,0.8483233417658056],[119,196,76,0.8733368390605915],[119,196,77,0.8950992044202214],[119,196,78,0.9128580554805303],[119,196,79,0.9259960851042134],[119,197,64,0.46626058036530166],[119,197,65,0.5084662515926213],[119,197,66,0.5501852818426461],[119,197,67,0.5910747791689743],[119,197,68,0.6308081360704207],[119,197,69,0.6690877525216103],[119,197,70,0.705657687127443],[119,197,71,0.7403162364020436],[119,197,72,0.7729284421718954],[119,197,73,0.8034385271030597],[119,197,74,0.831882258352763],[119,197,75,0.8583617905052604],[119,197,76,0.8824363135280661],[119,197,77,0.9032353487271274],[119,197,78,0.9200096908231036],[119,197,79,0.9321454363442868],[119,198,64,0.47923452982860626],[119,198,65,0.5212155123295947],[119,198,66,0.5626420273395578],[119,198,67,0.6031708994622555],[119,198,68,0.642476315397774],[119,198,69,0.6802626018085729],[119,198,70,0.7162769280295369],[119,198,71,0.7503219336226216],[119,198,72,0.7822682807758068],[119,198,73,0.8120671315462656],[119,198,74,0.8397625499480126],[119,198,75,0.8654661426593434],[119,198,76,0.8887435523822638],[119,198,77,0.9087274982062478],[119,198,78,0.9246718651409442],[119,198,79,0.9359658421805587],[119,199,64,0.4879099391439455],[119,199,65,0.5296678125408996],[119,199,66,0.5708189576671396],[119,199,67,0.6110202821933067],[119,199,68,0.6499468324323008],[119,199,69,0.6873046209135174],[119,199,70,0.7228433745606596],[119,199,71,0.7563692034737194],[119,199,72,0.78775719031483],[119,199,73,0.816963900297918],[119,199,74,0.8440398117823971],[119,199,75,0.8691038642491429],[119,199,76,0.891727780725993],[119,199,77,0.9110485042178408],[119,199,78,0.926323684069869],[119,199,79,0.9369459010530883],[119,200,64,0.49197839023649415],[119,200,65,0.5334983005864053],[119,200,66,0.5743766316098423],[119,200,67,0.6142708601871801],[119,200,68,0.6528570280742203],[119,200,69,0.6898426070860819],[119,200,70,0.7249792793520426],[119,200,71,0.7580756326419131],[119,200,72,0.789009770763649],[119,200,73,0.8177418390321347],[119,200,74,0.8443264648093776],[119,200,75,0.8688873568280632],[119,200,76,0.8910021539506002],[119,200,77,0.9098137828456195],[119,200,78,0.9245849545020555],[119,200,79,0.9347124410871698],[119,201,64,0.49125975733096394],[119,201,65,0.5325130377108901],[119,201,66,0.5731087245115232],[119,201,67,0.6127054510822504],[119,201,68,0.6509804522821258],[119,201,69,0.6876424491748148],[119,201,70,0.7224444416944363],[119,201,71,0.7551964092828816],[119,201,72,0.7857779194983194],[119,201,73,0.8141506445948216],[119,201,74,0.8403707860733424],[119,201,75,0.8645638968354405],[119,201,76,0.8863135283983599],[119,201,77,0.9047709359252881],[119,201,78,0.9192056871876418],[119,201,79,0.9290199457277212],[119,202,64,0.48569393572389274],[119,202,65,0.5266405013233308],[119,202,66,0.5669333172417771],[119,202,67,0.6062328438693201],[119,202,68,0.6442177604284752],[119,202,69,0.6805978459935514],[119,202,70,0.7151267595917261],[119,202,71,0.7476147193863926],[119,202,72,0.7779410809425006],[119,202,73,0.8060668145738218],[119,202,74,0.8320468817723662],[119,202,75,0.8560054724135163],[119,202,76,0.8775321682442337],[119,202,77,0.8957893475071053],[119,202,78,0.9100556138308574],[119,202,79,0.9197400322045398],[119,203,64,0.47533216753679775],[119,203,65,0.5159227006174752],[119,203,66,0.5558838153930685],[119,203,67,0.5948785361047689],[119,203,68,0.6325872833110036],[119,203,69,0.6687207238126625],[119,203,70,0.7030325088105229],[119,203,71,0.7353319002954342],[119,203,72,0.7654962856709859],[119,203,73,0.7934835806085871],[119,203,74,0.8193445201351912],[119,203,75,0.8431985176879011],[119,203,76,0.8646413885971338],[119,203,77,0.8828497557525974],[119,203,78,0.897113718680781],[119,203,79,0.9068509828285293],[119,204,64,0.4603279644499711],[119,204,65,0.5005059045334803],[119,204,66,0.5400994987084671],[119,204,67,0.5787751217975429],[119,204,68,0.6162152708198619],[119,204,69,0.6521313529749834],[119,204,70,0.6862763489255475],[119,204,71,0.7184573513793282],[119,204,72,0.7485479789703832],[119,204,73,0.7765006654392317],[119,204,74,0.8023588241122901],[119,204,75,0.8262335445114125],[119,204,76,0.8477271348205692],[119,204,77,0.8660338002653175],[119,204,78,0.8804577846166519],[119,204,79,0.8904273291188123],[119,205,64,0.4409276274170057],[119,205,65,0.4806309820607083],[119,205,66,0.5198157007400647],[119,205,67,0.5581523299700718],[119,205,68,0.5953258092605702],[119,205,69,0.6310481636365107],[119,205,70,0.6650710563608858],[119,205,71,0.6971982018608858],[119,205,72,0.7272976388570044],[119,205,73,0.7553138636950156],[119,205,74,0.7812798238810651],[119,205,75,0.8052946716713287],[119,205,76,0.8269674980727219],[119,205,77,0.8455135448556792],[119,205,78,0.8602539537277425],[119,205,79,0.8706294887607512],[119,206,64,0.41746036336007286],[119,206,65,0.4566233548816927],[119,206,66,0.4953536187380953],[119,206,67,0.5333267138931261],[119,206,68,0.5702304123327907],[119,206,69,0.6057772606318724],[119,206,70,0.639716984427129],[119,206,71,0.6718487357976334],[119,206,72,0.7020331835519826],[119,206,73,0.7302044464222881],[119,206,74,0.7563818691652041],[119,206,75,0.7806490515600797],[119,206,76,0.8026221670659711],[119,206,77,0.8215409757398976],[119,206,78,0.8367463023878353],[119,206,79,0.8476934553949049],[119,207,64,0.39032799884581626],[119,207,65,0.4288825623571484],[119,207,66,0.4671097537706256],[119,207,67,0.5046909909944879],[119,207,68,0.5413172857648058],[119,207,69,0.5767016374644568],[119,207,70,0.6105912503542816],[119,207,71,0.6427795742169845],[119,207,72,0.673118168413508],[119,207,73,0.7015283893517774],[119,207,74,0.7280129013680935],[119,207,75,0.7526361943092812],[119,207,76,0.7750218160457767],[119,207,77,0.794437475172948],[119,207,78,0.8102464308242122],[119,207,79,0.8219205412368477],[119,208,64,0.3599942907421437],[119,208,65,0.3978714388523008],[119,208,66,0.4355449810740945],[119,208,67,0.4727030334417099],[119,208,68,0.5090402656039604],[119,208,69,0.5442700894214556],[119,208,70,0.5781366493206875],[119,208,71,0.6104266144056067],[119,208,72,0.6409807723264122],[119,208,73,0.6697054249054479],[119,208,74,0.6965835855204907],[119,208,75,0.7216571893873052],[119,208,76,0.7445574289891026],[119,208,77,0.7645832705157055],[119,208,78,0.7811230671813137],[119,208,79,0.7936671725279846],[119,209,64,0.32697383385560247],[119,209,65,0.36410490340422164],[119,209,66,0.40117325063438847],[119,209,67,0.4378745093986529],[119,209,68,0.47390743016277415],[119,209,69,0.5089858258135321],[119,209,70,0.5428502954776936],[119,209,71,0.5752797263527053],[119,209,72,0.606102573548841],[119,209,73,0.6352079179426813],[119,209,74,0.6625563020422294],[119,209,75,0.6881638246601678],[119,209,76,0.7116695600221774],[119,209,77,0.7324068587360865],[119,209,78,0.7497916860788973],[119,209,79,0.7633347378172142],[119,210,64,0.29182056554939745],[119,210,65,0.3281383617302332],[119,210,66,0.3645499179985163],[119,210,67,0.40075917495586416],[119,210,68,0.43646938562077675],[119,210,69,0.4713947813391695],[119,210,70,0.5052719899701026],[119,210,71,0.5378712063472837],[119,210,72,0.5690071150160692],[119,210,73,0.5985495652458283],[119,210,74,0.6264339983179992],[119,210,75,0.652647602915782],[119,210,76,0.6768375300576318],[119,210,77,0.6983744063442234],[119,210,78,0.7167041416647312],[119,210,79,0.7313594890734689],[119,211,64,0.2935660187662181],[119,211,65,0.31838168600220856],[119,211,66,0.34244372519481725],[119,211,67,0.3657370546464933],[119,211,68,0.3973072252824319],[119,211,69,0.4320736265740519],[119,211,70,0.46597231595276123],[119,211,71,0.4987639877297059],[119,211,72,0.5302482591017704],[119,211,73,0.560273918745432],[119,211,74,0.58874890008749],[119,211,75,0.615628655851839],[119,211,76,0.6405685596512684],[119,211,77,0.6629791247619118],[119,211,78,0.6823383151620342],[119,211,79,0.6982024956293276],[119,212,64,0.32437526966314933],[119,212,65,0.3474132439254911],[119,212,66,0.36968293538224273],[119,212,67,0.39118134418800676],[119,212,68,0.4119512449077917],[119,212,69,0.43208826972127806],[119,212,70,0.45174845512134637],[119,212,71,0.47115625210680645],[119,212,72,0.4906088849385094],[119,212,73,0.5209427324846239],[119,212,74,0.5500510826494199],[119,212,75,0.5776445555268704],[119,212,76,0.603386838078031],[119,212,77,0.6267306211259217],[119,212,78,0.6471877769112919],[119,212,79,0.6643396509553542],[119,213,64,0.35067917143009864],[119,213,65,0.37204497847137],[119,213,66,0.39263472015042467],[119,213,67,0.41245656238853856],[119,213,68,0.4315614454760456],[119,213,69,0.4500494664337197],[119,213,70,0.4680766843387414],[119,213,71,0.48586234861519606],[119,213,72,0.5036925130980974],[119,213,73,0.5215469862994645],[119,213,74,0.5388109553567471],[119,213,75,0.5549175901634029],[119,213,76,0.569414001280129],[119,213,77,0.5901442245254431],[119,213,78,0.6117514629067013],[119,213,79,0.6302517322654103],[119,214,64,0.37219246883333734],[119,214,65,0.392013880586521],[119,214,66,0.4110586740640068],[119,214,67,0.42934511480956034],[119,214,68,0.446931198148121],[119,214,69,0.4639203489873208],[119,214,70,0.48046750494942636],[119,214,71,0.49678558283366114],[119,214,72,0.5131483721574811],[119,214,73,0.5295252700754334],[119,214,74,0.54530427291527],[119,214,75,0.559925039994982],[119,214,76,0.5729431039986835],[119,214,77,0.5840199416796259],[119,214,78,0.5929133324802299],[119,214,79,0.5994680050691371],[119,215,64,0.38869296514821705],[119,215,65,0.40711815931550405],[119,215,66,0.4247736649398521],[119,215,67,0.4416866462872974],[119,215,68,0.4579209273983343],[119,215,69,0.47358203309910474],[119,215,70,0.4888225748617717],[119,215,71,0.50384798151403],[119,215,72,0.5189187022434001],[119,215,73,0.5339929892849042],[119,215,74,0.548461323418857],[119,215,75,0.5617694199457224],[119,215,76,0.573480663965132],[119,215,77,0.5832658115540885],[119,215,78,0.5908929905653293],[119,215,79,0.5962180010458454],[119,216,64,0.4000249391163891],[119,216,65,0.41722024987520406],[119,216,66,0.43366042045314307],[119,216,67,0.4493801964455807],[119,216,68,0.4644479075781036],[119,216,69,0.4789698788664716],[119,216,70,0.4930951495405893],[119,216,71,0.507020499732446],[119,216,72,0.5209919983451873],[119,216,73,0.5349560504279685],[119,216,74,0.5483052507499515],[119,216,75,0.5604908687635746],[119,216,76,0.5710834923217908],[119,216,77,0.5797623916148501],[119,216,78,0.5863051946172483],[119,216,79,0.5905778740448385],[119,217,64,0.40610201870463397],[119,217,65,0.4222492655519995],[119,217,66,0.43766354512136557],[119,217,67,0.45238577176905514],[119,217,68,0.4664873830336101],[119,217,69,0.48007415465860565],[119,217,70,0.4932902879160824],[119,217,71,0.5063227692305625],[119,217,72,0.5194023032490229],[119,217,73,0.5324627922478777],[119,217,74,0.5448985389786739],[119,217,75,0.5561658084050553],[119,217,76,0.5658416747457307],[119,217,77,0.5736130831592382],[119,217,78,0.5792662349116734],[119,217,79,0.5826762960273709],[119,218,64,0.4069095116658985],[119,218,65,0.4222028934222055],[119,218,66,0.4367929676666827],[119,218,67,0.45072533423721656],[119,218,68,0.4640730906914488],[119,218,69,0.4769400892081874],[119,218,70,0.4894644321528912],[119,218,71,0.5018222063072094],[119,218,72,0.5142278458472062],[119,218,73,0.5266021588040125],[119,218,74,0.5383407276557985],[119,218,75,0.5489042122892754],[119,218,76,0.5578754066890146],[119,218,77,0.5649480355397918],[119,218,78,0.5699158862593592],[119,218,79,0.5726622764616447],[119,219,64,0.40250619290221745],[119,219,65,0.4171487338954951],[119,219,66,0.43112481875641595],[119,219,67,0.44448320651900797],[119,219,68,0.45729718511202494],[119,219,69,0.4696673119031901],[119,219,70,0.48172436127904245],[119,219,71,0.4936324792603603],[119,219,72,0.5055890248222998],[119,219,73,0.5175012040566794],[119,219,74,0.5287654453669494],[119,219,75,0.5388461794586359],[119,219,76,0.5473311233188523],[119,219,77,0.5539198505014001],[119,219,78,0.5584127086528325],[119,219,79,0.5607000842794729],[119,220,64,0.39302554862952427],[119,220,65,0.4072250840813131],[119,220,66,0.4208017391216659],[119,220,67,0.4338058937280228],[119,220,68,0.44630956601075134],[119,220,69,0.45840868127882917],[119,220,70,0.47022551867487083],[119,220,71,0.4819113353794778],[119,220,72,0.4936457377062294],[119,220,73,0.5053219279638296],[119,220,74,0.5163367615481091],[119,220,75,0.526157814646293],[119,220,76,0.5343769241577727],[119,220,77,0.5406985713794813],[119,220,78,0.5449286244912579],[119,220,79,0.5469634398411928],[119,221,64,0.37867647734438276],[119,221,65,0.3926411649782946],[119,221,66,0.40603261805406354],[119,221,67,0.4189013217382846],[119,221,68,0.43131660824700413],[119,221,69,0.4433685017095978],[119,221,70,0.45516971342184065],[119,221,71,0.46685778748815054],[119,221,72,0.4785940553142402],[119,221,73,0.4902574440895838],[119,221,74,0.5012448565623167],[119,221,75,0.5110264142502534],[119,221,76,0.5191972924236667],[119,221,77,0.5254659571590335],[119,221,78,0.5296427723832978],[119,221,79,0.53162897690864],[119,222,64,0.35974344759286825],[119,222,65,0.37367679248690533],[119,222,66,0.38709176228085895],[119,222,67,0.40003749206080064],[119,222,68,0.41257929428101486],[119,222,69,0.4248001283015631],[119,222,70,0.4368021955114191],[119,222,71,0.44870866003715976],[119,222,72,0.46066224155383284],[119,222,73,0.47252747872467554],[119,222,74,0.4837010100376537],[119,222,75,0.4936549582141878],[119,222,76,0.5019871090697742],[119,222,77,0.5084090413946328],[119,222,78,0.5127346375280263],[119,222,79,0.5148689746262413],[119,223,64,0.3365861125410429],[119,223,65,0.35068149224480816],[119,223,66,0.3643174952179039],[119,223,67,0.37754055328050334],[119,223,68,0.39041074909837536],[119,223,69,0.40300295998464675],[119,223,70,0.4154081049137893],[119,223,71,0.42773449474781905],[119,223,72,0.44010611860858007],[119,223,73,0.45237320151876514],[119,223,74,0.46393190746651713],[119,223,75,0.4742559078150126],[119,223,76,0.48294496152471716],[119,223,77,0.4897129759915157],[119,223,78,0.4943764586740782],[119,223,79,0.4968433595104441],[119,224,64,0.3096383813478578],[119,224,65,0.3240730582856968],[119,224,66,0.33811018660119085],[119,224,67,0.3517922890541518],[119,224,68,0.36517317760263834],[119,224,69,0.37831882080529605],[119,224,70,0.3913082945067176],[119,224,71,0.40423481580581566],[119,224,72,0.41720377749696475],[119,224,73,0.43005138762468637],[119,224,74,0.4421732650661708],[119,224,75,0.4530443093571539],[119,224,76,0.46226574713241275],[119,224,77,0.4695531598475152],[119,224,78,0.4747249116567357],[119,224,79,0.4776909774471263],[119,225,64,0.2794069473393533],[119,225,65,0.29433555552056334],[119,225,66,0.30892971249599843],[119,225,67,0.3232270226683378],[119,225,68,0.3372742044752497],[119,225,69,0.35112772941886466],[119,225,70,0.36485452686399056],[119,225,71,0.37853275460506464],[119,225,72,0.3922496340058442],[119,225,73,0.40582791135431584],[119,225,74,0.41866277290034415],[119,225,75,0.4302302037733435],[119,225,76,0.44013257129180433],[119,225,77,0.4480866523558628],[119,225,78,0.4539120695130403],[119,225,79,0.45752013569713673],[119,226,64,0.24646927298560034],[119,226,65,0.2620167660427585],[119,226,66,0.2772923456849245],[119,226,67,0.29232793815879443],[119,226,68,0.30716261650392906],[119,226,69,0.321843056782741],[119,226,70,0.3364240449043684],[119,226,71,0.35096903404243124],[119,226,72,0.36554782999931124],[119,226,73,0.37997057134675366],[119,226,74,0.39363235626248827],[119,226,75,0.4060103421324822],[119,226,76,0.4167079402968621],[119,226,77,0.4254428717692381],[119,226,78,0.4320356391752351],[119,226,79,0.4363984149102127],[119,227,64,0.21138095622872424],[119,227,65,0.2276343892882473],[119,227,66,0.24367614336401447],[119,227,67,0.25953200389254305],[119,227,68,0.2752331601825178],[119,227,69,0.29081652082795995],[119,227,70,0.3063250668217512],[119,227,71,0.32180824236950883],[119,227,72,0.337319535886076],[119,227,73,0.35265763958606666],[119,227,74,0.3672181563409165],[119,227,75,0.38047974750024854],[119,227,76,0.3920470159289822],[119,227,77,0.401638614157878],[119,227,78,0.40907577527502825],[119,227,79,0.41427126655827873],[119,228,64,0.17429010517103186],[119,228,65,0.19129099595186],[119,228,66,0.20813813536644338],[119,228,67,0.22485098804518555],[119,228,68,0.24145289411348583],[119,228,69,0.2579712816735176],[119,228,70,0.27443790660686285],[119,228,71,0.2908891196979959],[119,228,72,0.3073633850035881],[119,228,73,0.32364925301028746],[119,228,74,0.33914350551589945],[119,228,75,0.3533267072839982],[119,228,76,0.3658048572124108],[119,228,77,0.37629757092381144],[119,228,78,0.384626691886223],[119,228,79,0.3907053310634108],[119,229,64,0.13525681658036276],[119,229,65,0.15300306557591747],[119,229,66,0.17065176922551267],[119,229,67,0.188216141255586],[119,229,68,0.20571193688960204],[119,229,69,0.22315759592294632],[119,229,70,0.24057440551697817],[119,229,71,0.25798668271224],[119,229,72,0.2754192681750418],[119,229,73,0.2926519310160494],[119,229,74,0.3090833138143545],[119,229,75,0.3241962803263464],[119,229,76,0.337598416501843],[119,229,77,0.34901030810796424],[119,229,78,0.3582542523194544],[119,229,79,0.3652434032754408],[119,230,64,0.09440061511950579],[119,230,65,0.11285055306485778],[119,230,66,0.13125799571943714],[119,230,67,0.14963020134428867],[119,230,68,0.1679758073512404],[119,230,69,0.18630493275920337],[119,230,70,0.20462929572024574],[119,230,71,0.22296234611543994],[119,230,72,0.2413167684219816],[119,230,73,0.2594649318130459],[119,230,74,0.27680801671047306],[119,230,75,0.29283157263727283],[119,230,76,0.3071449503641772],[119,230,77,0.3194696934106105],[119,230,78,0.32962836894886427],[119,230,79,0.33753383811145854],[119,231,64,0.05188978290894995],[119,231,65,0.07096587953686541],[119,231,66,0.09005392779569599],[119,231,67,0.10915572896541961],[119,231,68,0.12827344714982936],[119,231,69,0.14740969472680587],[119,231,70,0.16656763125620055],[119,231,71,0.18575107584532746],[119,231,72,0.20496204804580714],[119,231,73,0.2239668855626719],[119,231,74,0.24216996965501794],[119,231,75,0.25905991171583576],[119,231,76,0.2742479947613698],[119,231,77,0.28745669556458303],[119,231,78,0.2985086519570831],[119,231,79,0.3155770939460658],[119,232,64,0.021261443717003864],[119,232,65,0.027522637567764144],[119,232,66,0.04718121199492287],[119,232,67,0.06690315420517234],[119,232,68,0.08668495304160048],[119,232,69,0.10652264735690235],[119,232,70,0.1264119272684232],[119,232,71,0.14634825029090978],[119,232,72,0.1663244437185903],[119,232,73,0.18610213586517724],[119,232,74,0.20508955179554178],[119,232,75,0.22277873156455805],[119,232,76,0.2387830532132018],[119,232,77,0.25282589985902976],[119,232,78,0.2738956457969167],[119,232,79,0.31529143904801826],[119,233,64,0.021453467733321074],[119,233,65,0.007786114069907368],[119,233,66,0.0028142089230611955],[119,233,67,0.023018630989081787],[119,233,68,0.043329115725981124],[119,233,69,0.06373615405718022],[119,233,70,0.08422910321573515],[119,233,71,0.10479632420420247],[119,233,72,0.1254228629981186],[119,233,73,0.14586688149903543],[119,233,74,0.16554106908568322],[119,233,75,0.18394125673570033],[119,233,76,0.2006830843102093],[119,233,77,0.23154085762453147],[119,233,78,0.2734744939881162],[119,233,79,0.3155832978650557],[119,234,64,0.020323198688747796],[119,234,65,0.007330609432326121],[119,234,66,-0.009872588383319586],[119,234,67,-0.02232830070026475],[119,234,68,-0.001649234769796018],[119,234,69,0.019171216268104765],[119,234,70,0.040117230063348],[119,234,71,0.06117129530829174],[119,234,72,0.0823119822684264],[119,234,73,0.10329511841370623],[119,234,74,0.12353845678464673],[119,234,75,0.14692251458663852],[119,234,76,0.18886751191543483],[119,234,77,0.23104318783528704],[119,234,78,0.2735071572632849],[119,234,79,0.3162209465992044],[119,235,64,0.017970997754416476],[119,235,65,0.005644375968653123],[119,235,66,-0.010949297578356887],[119,235,67,-0.03179962423297069],[119,235,68,-0.04809207716093634],[119,235,69,-0.027035681115513688],[119,235,70,-0.005807918546966773],[119,235,71,0.015568973600862776],[119,235,72,0.037068246105018826],[119,235,73,0.06250996293640274],[119,235,74,0.10410897308096043],[119,235,75,0.14615892925698107],[119,235,76,0.18837088272811492],[119,235,77,0.23089299391542484],[119,235,78,0.2737776819692449],[119,235,79,0.31697970334209197],[119,236,64,0.014494931326409125],[119,236,65,0.0028317169073395765],[119,236,66,-0.013138032406242228],[119,236,67,-0.033414652316387294],[119,236,68,-0.057893703327438026],[119,236,69,-0.07475520060008065],[119,236,70,-0.05161993537699836],[119,236,71,-0.01625998945062554],[119,236,72,0.021845301309891776],[119,236,73,0.062062785510471785],[119,236,74,0.1036462102421585],[119,236,75,0.14576883816283218],[119,236,76,0.18813693446724278],[119,236,77,0.23089225337024333],[119,236,78,0.27407969905355123],[119,236,79,0.31764550865195473],[119,237,64,0.05560380076112913],[119,237,65,0.03594437102808136],[119,237,66,0.015930835357148412],[119,237,67,-0.004425143570010656],[119,237,68,-0.02510733960534775],[119,237,69,-0.04609508218943642],[119,237,70,-0.0507183934141543],[119,237,71,-0.015740093084924536],[119,237,72,0.022061125534762305],[119,237,73,0.062057467052084606],[119,237,74,0.10350634888956634],[119,237,75,0.14558257855616022],[119,237,76,0.18798799582726022],[119,237,77,0.23085546073885135],[119,237,78,0.2742203488214343],[119,237,79,0.3180188917140611],[119,238,64,0.10409117171486375],[119,238,65,0.08511983558404065],[119,238,66,0.06572528821503544],[119,238,67,0.04591737146617696],[119,238,68,0.025711544352512813],[119,238,69,0.005128804855756619],[119,238,70,-0.015804464386695652],[119,238,71,-0.014683859640064384],[119,238,72,0.022699155214449457],[119,238,73,0.06235286774900989],[119,238,74,0.10354164892953194],[119,238,75,0.145445486370414],[119,238,76,0.1877622985443953],[119,238,77,0.23061394969722784],[119,238,78,0.2740246142439106],[119,238,79,0.3179193220848753],[119,239,64,0.15346517762513778],[119,239,65,0.135454010833597],[119,239,66,0.11694337098086856],[119,239,67,0.09794022321000573],[119,239,68,0.07845841147428029],[119,239,69,0.05851865139390082],[119,239,70,0.03814843064929542],[119,239,71,0.01738181691095765],[119,239,72,0.02364194408100155],[119,239,73,0.06282589409116071],[119,239,74,0.10362328650571213],[119,239,75,0.14522269272624297],[119,239,76,0.18731874717255287],[119,239,77,0.23002064515742346],[119,239,78,0.2733400628166017],[119,239,79,0.31718994701951286],[119,240,64,0.20370225173882323],[119,240,65,0.18693059497966563],[119,240,66,0.16957503125951323],[119,240,67,0.15163867765328365],[119,240,68,0.13313303475863186],[119,240,69,0.11407808436801165],[119,240,70,0.09450227723788603],[119,240,71,0.07444241095508802],[119,240,72,0.05394547616373306],[119,240,73,0.06337688720164278],[119,240,74,0.10364667482978],[119,240,75,0.14480438943211071],[119,240,76,0.18654213893350735],[119,240,77,0.22895524536310868],[119,240,78,0.27204199696945436],[119,240,79,0.3157027143826726],[119,241,64,0.2546630853576746],[119,241,65,0.239411229138912],[119,241,66,0.22348228550458832],[119,241,67,0.2068746290447507],[119,241,68,0.18959678862455165],[119,241,69,0.17166768606714178],[119,241,70,0.15311674661986702],[119,241,71,0.13398388120376775],[119,241,72,0.11432132900801821],[119,241,73,0.09437172298338745],[119,241,74,0.10353727203319697],[119,241,75,0.14411156348003534],[119,241,76,0.18534883364163598],[119,241,77,0.2273298339817148],[119,241,78,0.27003901302760996],[119,241,79,0.3133638811432933],[119,242,64,0.30611206375340605],[119,242,65,0.29265547399624836],[119,242,66,0.27841968741225515],[119,242,67,0.26339751272604656],[119,242,68,0.2475939618132202],[119,242,69,0.2310266669534081],[119,242,70,0.21372615089798308],[119,242,71,0.19573594975241349],[119,242,72,0.17711447423959098],[119,242,73,0.1581034220612234],[119,242,74,0.13920660071861843],[119,242,75,0.14310220053604975],[119,242,76,0.18369287370278298],[119,242,77,0.22509492219275498],[119,242,78,0.26727896872301365],[119,242,79,0.3101199074525302],[119,243,64,0.35773559461396154],[119,243,65,0.3463396711254644],[119,243,66,0.3340536751484778],[119,243,67,0.32086409283759687],[119,243,68,0.3067719428561427],[119,243,69,0.29179341015383436],[119,243,70,0.2759603131514481],[119,243,71,0.2593204043324582],[119,243,72,0.2419392735385733],[119,243,73,0.22405785068639805],[119,243,74,0.20616240892447496],[119,243,75,0.1886702107048739],[119,243,76,0.1815725541873509],[119,243,77,0.22224592077241906],[119,243,78,0.2637553592568531],[119,243,79,0.3059637363051354],[119,244,64,0.4091593290187898],[119,244,65,0.40007468897369547],[119,244,66,0.3899807974073527],[119,244,67,0.3788571248919271],[119,244,68,0.36670027810693184],[119,244,69,0.3535248876143423],[119,244,70,0.33936430940500273],[119,244,71,0.32427114021632153],[119,244,72,0.3083191869443218],[119,244,73,0.29174885537858763],[119,244,74,0.27502717872084514],[119,244,75,0.25855369444805115],[119,244,76,0.24263796372054677],[119,244,77,0.2275090092074052],[119,244,78,0.259569649383081],[119,244,79,0.3009960954177053],[119,245,64,0.45996427494531494],[119,245,65,0.45342255351201355],[119,245,66,0.44574481830288554],[119,245,67,0.4369028932168606],[119,245,68,0.4268886023392864],[119,245,69,0.415714947918507],[119,245,70,0.40341708245519703],[119,245,71,0.39005307490443997],[119,245,72,0.3757059706749729],[119,245,73,0.36061595868815827],[119,245,74,0.3452293391215822],[119,245,75,0.3299263529872206],[119,245,76,0.31500122600426467],[119,245,77,0.3006714909778423],[119,245,78,0.2870866138756905],[119,245,79,0.29557446906552687],[119,246,64,0.5097018033056319],[119,246,65,0.5059119635511431],[119,246,66,0.500852701093192],[119,246,67,0.49448762326755746],[119,246,68,0.48680344191009245],[119,246,69,0.4778114757699831],[119,246,70,0.467548927552785],[119,246,71,0.4560799355932246],[119,246,72,0.4434977489721488],[119,246,73,0.4300426991351707],[119,246,74,0.4161391228879738],[119,246,75,0.4021466363921636],[119,246,76,0.3883429035689401],[119,246,77,0.37493285718404684],[119,246,78,0.36205718926983554],[119,246,79,0.3498001108844576],[119,247,64,0.5579075465125486],[119,247,65,0.5570526907213524],[119,247,66,0.554789470736098],[119,247,67,0.5510727688063006],[119,247,68,0.545883890486499],[119,247,69,0.5392324231373906],[119,247,70,0.5311578499399663],[119,247,71,0.5217309194226337],[119,247,72,0.5110559599694604],[119,247,73,0.49937384665826096],[119,247,74,0.48708602538962814],[119,247,75,0.4745304439484762],[119,247,76,0.4619672136072416],[119,247,77,0.4495877446570721],[119,247,78,0.4375231150731109],[119,247,79,0.42585167231388754],[119,248,64,0.6041141895770257],[119,248,65,0.6063488641187165],[119,248,66,0.6070319552784863],[119,248,67,0.6061091739525125],[119,248,68,0.603556157339573],[119,248,69,0.5993807120643926],[119,248,70,0.5936247942453174],[119,248,71,0.5863662265063035],[119,248,72,0.5777211755878526],[119,248,73,0.5679314935765216],[119,248,74,0.5573751412715153],[119,248,75,0.5463676716940101],[119,248,76,0.5351509173807997],[119,248,77,0.5239020575630315],[119,248,78,0.5127418806421358],[119,248,79,0.501742241962955],[119,249,64,0.6478631537350616],[119,249,65,0.6533111396156291],[119,249,66,0.6570614060770937],[119,249,67,0.6590501101005506],[119,249,68,0.6592469882019346],[119,249,69,0.6576580091422172],[119,249,70,0.6543277457335364],[119,249,71,0.6493414657412399],[119,249,72,0.642827795454674],[119,249,73,0.6350300210611737],[119,249,74,0.6263023789238535],[119,249,75,0.6169376414152792],[119,249,76,0.6071589225903102],[119,249,77,0.5971286955175543],[119,249,78,0.5869569656671364],[119,249,79,0.5767086003548012],[119,250,64,0.6887151726052103],[119,250,65,0.6974677538369193],[119,250,66,0.704374996852278],[119,250,67,0.7093631877069507],[119,250,68,0.7123959586911895],[119,250,69,0.7134773716465843],[119,250,70,0.7126547034120866],[119,250,71,0.7100209333992773],[119,250,72,0.7057176148487962],[119,250,73,0.699989941119446],[119,250,74,0.6931685527573519],[119,250,75,0.6855234111064221],[119,250,76,0.6772587727056291],[119,250,77,0.6685221763970388],[119,250,78,0.6594125460933622],[119,250,79,0.6499874092050401],[119,251,64,0.7262597608760136],[119,251,65,0.738374462800686],[119,251,66,0.7484962015737111],[119,251,67,0.7565411429459247],[119,251,68,0.7624666402978157],[119,251,69,0.7662747653375545],[119,251,70,0.7680155249931305],[119,251,71,0.7677897644985774],[119,251,72,0.765752266669938],[119,251,73,0.7621506140887176],[119,251,74,0.7572923532817748],[119,251,75,0.7514249668886058],[119,251,76,0.744734023253667],[119,251,77,0.7373521538444575],[119,251,78,0.7293671050391197],[119,251,79,0.7208288642835633],[119,252,64,0.7601235755242939],[119,252,65,0.7756233652249799],[119,252,66,0.7889840511793004],[119,252,67,0.8001114992345802],[119,252,68,0.8089566389391368],[119,252,69,0.8155194539240819],[119,252,70,0.8198526437126787],[119,252,71,0.8220649569572182],[119,252,72,0.8223245374343712],[119,252,73,0.8208818416432211],[119,252,74,0.8180221949902224],[119,252,75,0.8139712963923573],[119,252,76,0.8088965050666609],[119,252,77,0.8029158294723502],[119,252,78,0.7961059487131301],[119,252,79,0.7885092663997015],[119,253,64,0.7899776695627949],[119,253,65,0.8088506104986146],[119,253,66,0.8254412691254175],[119,253,67,0.8396451036257568],[119,253,68,0.8514065060770892],[119,253,69,0.8607232601908125],[119,253,70,0.8676506570043295],[119,253,71,0.8723052685261077],[119,253,72,0.8748685572941024],[119,253,73,0.8755943353102588],[119,253,74,0.8747469420459695],[119,253,75,0.872531343599554],[119,253,76,0.8690974744874512],[119,253,77,0.8645492597595595],[119,253,78,0.8589526273276928],[119,253,79,0.8523425105071692],[119,254,64,0.8155436383189478],[119,254,65,0.8377429913180993],[119,254,66,0.8575212857706443],[119,254,67,0.8747635380708787],[119,254,68,0.8894075224023816],[119,254,69,0.9014486987898966],[119,254,70,0.9109447870305432],[119,254,71,0.9180199865043187],[119,254,72,0.92286886408277],[119,254,73,0.9257490604993179],[119,254,74,0.9269055117753646],[119,254,75,0.9265238451486969],[119,254,76,0.9247376505354898],[119,254,77,0.9216375576455226],[119,254,78,0.917279261011536],[119,254,79,0.9116904929327323],[119,255,64,0.8365986582432899],[119,255,65,0.8620434209890219],[119,255,66,0.884934131591167],[119,255,67,0.9051454055507786],[119,255,68,0.922608354082815],[119,255,69,0.9373159806954304],[119,255,70,0.9493282130689037],[119,255,71,0.9587765702341523],[119,255,72,0.9658683413854378],[119,255,73,0.9708654560411356],[119,255,74,0.9739953559637347],[119,255,75,0.9754260481003004],[119,255,76,0.975276139030325],[119,255,77,0.9736239888187785],[119,255,78,0.9705157707189573],[119,255,79,0.9659724367251468],[119,256,64,0.8529794182484332],[119,256,65,0.8815552953929474],[119,256,66,0.9074512092290428],[119,256,67,0.9305314910758714],[119,256,68,0.9507205815773012],[119,256,69,0.9680088893221918],[119,256,70,0.982458275755169],[119,256,71,0.9942071663778548],[119,256,72,1.0034750306343097],[119,256,73,1.0105285292388442],[119,256,74,1.015579819956513],[119,256,75,1.0187813091647009],[119,256,76,1.0202382436749386],[119,256,77,1.020017962702134],[119,256,78,1.0181580141377453],[119,256,79,1.0146731351269018],[119,257,64,0.8645849435780615],[119,257,65,0.8961457396191603],[119,257,66,0.9249089443725328],[119,257,67,0.9507287975547267],[119,257,68,0.9735231010144904],[119,257,69,0.9932795283074657],[119,257,70,1.0100615531817896],[119,257,71,1.024013996974558],[119,257,72,1.0353678172288523],[119,257,73,1.044394826429591],[119,257,74,1.0512943795639063],[119,257,75,1.0562055753905368],[119,257,76,1.0592221640971184],[119,257,77,1.0604019181326223],[119,257,78,1.0597748265939662],[119,257,79,1.0573501131668221],[119,258,64,0.8713783122064649],[119,258,65,0.9057477392619192],[119,258,66,0.9372113154693086],[119,258,67,0.9656134565320036],[119,258,68,0.99086539813711],[119,258,69,1.0129519409571877],[119,258,70,1.0319378088532378],[119,258,71,1.0479736202789023],[119,258,72,1.0613009906818747],[119,258,73,1.0721972790582792],[119,258,74,1.0808517557708341],[119,258,75,1.0873927463156972],[119,258,76,1.0919045808507437],[119,258,77,1.0944371037381786],[119,258,78,1.0950139669556016],[119,258,79,1.093639707375543],[119,259,64,0.8733872637679494],[119,259,65,0.9103611563823808],[119,259,66,0.9443312622715321],[119,259,67,0.9751325137945754],[119,259,68,1.0026696948106903],[119,259,69,1.0269246013549365],[119,259,70,1.0479628114965527],[119,259,71,1.0659400643796155],[119,259,72,1.081107678789726],[119,259,73,1.093748925261485],[119,259,74,1.1040459072500939],[119,259,75,1.1121189175786137],[119,259,76,1.118045127374763],[119,259,77,1.1218682530087558],[119,259,78,1.1236069685326875],[119,259,79,1.1232620636214703],[119,260,64,0.870703701016869],[119,260,65,0.9100526301361234],[119,260,66,0.9463109732139025],[119,260,67,0.9793045898471059],[119,260,68,1.0089319680980904],[119,260,69,1.0351717771353344],[119,260,70,1.0580900267287907],[119,260,71,1.0778468335998685],[119,260,72,1.0947021558285548],[119,260,73,1.1089455069635918],[119,260,74,1.1207549006808961],[119,260,75,1.1302455059921257],[119,260,76,1.1374897489121867],[119,260,77,1.1425271540642628],[119,260,78,1.1453728949764068],[119,260,79,1.1460250530697245],[119,261,64,0.8634820838175432],[119,261,65,0.9049543620653826],[119,261,66,0.9432610516236399],[119,261,67,0.978219415255909],[119,261,68,1.0097218418985354],[119,261,69,1.0377437639204476],[119,261,70,1.0623511805798616],[119,261,71,1.0837077876777816],[119,261,72,1.1020810247749029],[119,261,73,1.1177669424833458],[119,261,74,1.1309426588708944],[119,261,75,1.1417212560779708],[119,261,76,1.1501729483870868],[119,261,77,1.1563351141172697],[119,261,78,1.1602210011750351],[119,261,79,1.1618271062619276],[119,262,64,0.8519367156647658],[119,262,65,0.8952617860568067],[119,262,66,0.9353585607633171],[119,262,67,0.9720362408621036],[119,262,68,1.0051813511522498],[119,262,69,1.0347659914203513],[119,262,70,1.0608556948719898],[119,262,71,1.0836168937283905],[119,262,72,1.1033232735520022],[119,262,73,1.1202776746522392],[119,262,74,1.1346595866831557],[119,262,75,1.146583128063393],[119,262,76,1.1561189192411099],[119,262,77,1.163304318632013],[119,262,78,1.1681522991482802],[119,262,79,1.1706589653183976],[119,263,64,0.8363379227342914],[119,263,65,0.8812301229640466],[119,263,66,0.922843947705784],[119,263,67,0.9609811228632291],[119,263,68,0.9955225786098135],[119,263,69,1.0264370011969315],[119,263,70,1.05378899445483],[119,263,71,1.077746850986059],[119,263,72,1.0985892053007307],[119,263,73,1.116625894443652],[119,263,74,1.1320420747669944],[119,263,75,1.1449560673387669],[119,263,76,1.155441565228414],[119,263,77,1.1635380851785995],[119,263,78,1.169260028938931],[119,263,79,1.172604354261653],[119,264,64,0.8170071254636468],[119,264,65,0.8631698198955996],[119,264,66,0.9060168460416639],[119,264,67,0.9453430827638808],[119,264,68,0.9810241641668321],[119,264,69,1.0130252960915704],[119,264,70,1.0414096862969167],[119,264,71,1.0663465883280547],[119,264,72,1.0881182426759748],[119,264,73,1.107041640113534],[119,264,74,1.123310881093452],[119,264,75,1.1370516553770391],[119,264,76,1.1483434071698266],[119,264,77,1.1572300119832168],[119,264,78,1.1637290345026114],[119,264,79,1.1678395674620394],[119,265,64,0.7943108026632894],[119,265,65,0.8414408741678467],[119,265,66,0.8852307574192972],[119,265,67,0.9254691421951537],[119,265,68,0.9620266867636699],[119,265,69,0.9948650613163972],[119,265,70,1.0240456104330915],[119,265,71,1.0497376345788882],[119,265,72,1.0722256061679556],[119,265,73,1.0918337718521351],[119,265,74,1.1087683902949232],[119,265,75,1.123165642114463],[119,265,76,1.1351133766656798],[119,265,77,1.1446620211737923],[119,265,78,1.1518340445950717],[119,265,79,1.1566319762048851],[119,266,64,0.7686533481579383],[119,266,65,0.8164460419231846],[119,266,66,0.8608866119170911],[119,266,67,0.9017582326029304],[119,266,68,0.9389269188503195],[119,266,69,0.9723507572092398],[119,266,70,1.0020887627680797],[119,266,71,1.0283093615956247],[119,266,72,1.051297866448769],[119,266,73,1.0713858219470807],[119,266,74,1.0887947508092306],[119,266,75,1.1036743597929497],[119,266,76,1.1161234967676745],[119,266,77,1.126201296721458],[119,266,78,1.1339368586573928],[119,266,79,1.1393374533795846],[119,267,64,0.7404688199579519],[119,267,65,0.7886229314130804],[119,267,66,0.833425207248075],[119,267,67,0.8746539798047687],[119,267,68,0.9121709534161482],[119,267,69,0.9459305836519851],[119,267,70,0.9759890897359107],[119,267,71,1.002513100133855],[119,267,72,1.025787370743808],[119,267,73,1.0461507204574432],[119,267,74,1.063842889827813],[119,267,75,1.0790300182637051],[119,267,76,1.0918244496094334],[119,267,77,1.1022961170775],[119,267,78,1.1104824376987845],[119,267,79,1.1163967162902892],[119,268,64,0.7102115819613954],[119,268,65,0.7584349809467054],[119,268,66,0.8033185267973124],[119,268,67,0.8446363634160481],[119,268,68,0.8822462035851677],[119,268,69,0.9160988161529944],[119,268,70,0.9462471548158136],[119,268,71,0.9728551284949323],[119,268,72,0.9962055432286678],[119,268,73,1.0166443963993945],[119,268,74,1.034432406048579],[119,268,75,1.0497548817526725],[119,268,76,1.0627400309962434],[119,268,77,1.0734705825062538],[119,268,78,1.0819939001774075],[119,268,79,1.088330587588611],[119,269,64,0.6783458381860159],[119,269,65,0.7263613215043643],[119,269,66,0.7710599364914018],[119,269,67,0.8122122511446097],[119,269,68,0.8496722747760779],[119,269,69,0.883387013592832],[119,269,70,0.9134056769038642],[119,269,71,0.9398885339537769],[119,269,72,0.963115059450842],[119,269,73,0.9834382544427636],[119,269,74,1.0011423402327748],[119,269,75,1.0164343270871574],[119,269,76,1.02946049195339],[119,269,77,1.0403182371133761],[119,269,78,1.049066422878683],[119,269,79,1.0557341743278257],[119,270,64,0.6453340595313426],[119,270,65,0.6928855240159542],[119,270,66,0.737153260500307],[119,270,67,0.7779048079541486],[119,270,68,0.8149907094273574],[119,270,69,0.8483540976335994],[119,270,70,0.8780399405406888],[119,270,71,0.9042039469675653],[119,270,72,0.9271208947765515],[119,270,73,0.9471505271188629],[119,270,74,0.9646028235662475],[119,270,75,0.9797087833840283],[119,270,76,0.9926347672334797],[119,270,77,1.0034945855699082],[119,270,78,1.012360046791505],[119,270,79,1.0192699651390087],[119,271,64,0.6116243030715777],[119,271,65,0.6584832313050734],[119,271,66,0.7021007357720923],[119,271,67,0.7422417800968828],[119,271,68,0.77875360428787],[119,271,69,0.811575303792281],[119,271,70,0.8407470779955752],[119,271,71,0.8664191481655962],[119,271,72,0.8888602468629307],[119,271,73,0.9084365025397396],[119,271,74,0.9254856038251903],[119,271,75,0.9402645531995223],[119,271,76,0.9529615907827318],[119,271,77,0.9637085045320373],[119,271,78,0.9725913879822212],[119,271,79,0.9796598455288975],[119,272,64,0.5776364238781913],[119,272,65,0.6236086746977626],[119,272,66,0.6663898453996207],[119,272,67,0.7057426540146319],[119,272,68,0.7415111002722033],[119,272,69,0.7736300041774136],[119,272,70,0.8021342232063852],[119,272,71,0.8271675481198146],[119,272,72,0.8489913321551474],[119,272,73,0.8679776276285234],[119,272,74,0.8844934493461452],[119,272,75,0.8988235151405085],[119,272,76,0.9111794981661738],[119,272,77,0.9217125487565989],[119,272,78,0.9305242534664869],[119,272,79,0.9376760312996835],[119,273,64,0.5437471793728688],[119,273,65,0.5886800752964483],[119,273,66,0.6304790308196959],[119,273,67,0.6689046901087049],[119,273,68,0.7037977448810462],[119,273,69,0.7350884018892803],[119,273,70,0.762805537575386],[119,273,71,0.7870855398960167],[119,273,72,0.8081810564083811],[119,273,73,0.8264694868607004],[119,273,74,0.8423484307999779],[119,273,75,0.856131707936856],[119,273,76,0.8680557159512964],[119,273,77,0.8782921519117655],[119,273,78,0.8869591620783771],[119,273,79,0.8941309200900353],[119,274,64,0.5103214298491323],[119,274,65,0.5541060205569199],[119,274,66,0.5948193736161898],[119,274,67,0.632220062859163],[119,274,68,0.6661452652240245],[119,274,69,0.6965201302883526],[119,274,70,0.7233668445665523],[119,274,71,0.7468133905712041],[119,274,72,0.7671023938604503],[119,274,73,0.784615909125024],[119,274,74,0.7997830078036801],[119,274,75,0.8129476573011281],[119,274,76,0.8243719935063261],[119,274,77,0.834249228093174],[119,274,78,0.8427149766509546],[119,274,79,0.8498570076445595],[119,275,64,0.4780256998682552],[119,275,65,0.5205614967802674],[119,275,66,0.560093964139661],[119,275,67,0.5963796297864099],[119,275,68,0.6292519842455171],[119,275,69,0.6586307271356068],[119,275,70,0.6845307150357527],[119,275,71,0.7070706108104567],[119,275,72,0.7264818097346212],[119,275,73,0.7431502863445009],[119,275,74,0.7575371426174905],[119,275,75,0.7700172135092395],[119,275,76,0.7808790966268642],[119,275,77,0.7903382311313353],[119,275,78,0.7985483912202934],[119,275,79,0.8056115941913422],[119,276,64,0.4475738064887421],[119,276,65,0.4887543217532131],[119,276,66,0.52700472008586],[119,276,67,0.5620796036886948],[119,276,68,0.5938087086807687],[119,276,69,0.6221060041926825],[119,276,70,0.6469784989705027],[119,276,71,0.6685347554889984],[119,276,72,0.6869938752261532],[119,276,73,0.7027450045200481],[119,276,74,0.7162815262444596],[119,276,75,0.7280095425054378],[119,276,76,0.7382445373219009],[119,276,77,0.7472246130461555],[119,276,78,0.755122136637014],[119,276,79,0.7620537957855571],[119,277,64,0.4195175965164307],[119,277,65,0.4592362289979214],[119,277,66,0.4961033717598985],[119,277,67,0.5298718820744311],[119,277,68,0.5603677433757555],[119,277,69,0.5874989944837175],[119,277,70,0.6112643719881712],[119,277,71,0.6317616657942478],[119,277,72,0.6491967442537444],[119,277,73,0.6639611547775323],[119,277,74,0.6765805058235517],[119,277,75,0.6874922477442693],[119,277,76,0.697038876909148],[119,277,77,0.7054813163059488],[119,277,78,0.7130107029539983],[119,277,79,0.7197585821294743],[119,278,64,0.39424247624693026],[119,278,65,0.4323978777995675],[119,278,66,0.4677859613107693],[119,278,67,0.500158045539359],[119,278,68,0.5293363994049461],[119,278,69,0.5552229810102578],[119,278,70,0.5778078953086745],[119,278,71,0.5971775704168866],[119,278,72,0.6135238046322266],[119,278,73,0.627239746737032],[119,278,74,0.6388828843498385],[119,278,75,0.6489217918960763],[119,278,76,0.657725815356986],[119,278,77,0.665578585045378],[119,278,78,0.672689933953499],[119,278,79,0.6792062216730617],[119,279,64,0.3719630783730438],[119,279,65,0.40846386759611425],[119,279,66,0.44228722000117354],[119,279,67,0.47318311478191916],[119,279,68,0.5009701486934868],[119,279,69,0.525544067303026],[119,279,70,0.5468860204263895],[119,279,71,0.5650705417508534],[119,279,72,0.5802746017809701],[119,279,73,0.5928921191690282],[119,279,74,0.603511850209409],[119,279,75,0.6126329891193568],[119,279,76,0.6206513004434577],[119,279,77,0.6278727539567112],[119,279,78,0.6345255657623328],[119,279,79,0.6407706455843304],[119,280,64,0.35271759318051665],[119,280,65,0.3874864382990385],[119,280,66,0.41967365614275703],[119,280,67,0.44902804573497174],[119,280,68,0.4753645464924263],[119,280,69,0.49857254736325135],[119,280,70,0.5186239259669644],[119,280,71,0.5355808177364418],[119,280,72,0.5496046615498396],[119,280,73,0.5610892829508985],[119,280,74,0.5706538722461912],[119,280,75,0.5788274964863561],[119,280,76,0.5860316703503796],[119,280,77,0.5925941057658984],[119,280,78,0.5987608702194283],[119,280,79,0.6047069537565635],[119,281,64,0.3363607640318965],[119,281,65,0.3693378565446751],[119,281,66,0.3998353536963073],[119,281,67,0.4276009628132975],[119,281,68,0.4524459217063053],[119,281,69,0.4742530749927749],[119,281,70,0.49298468672813756],[119,281,71,0.5086899893455077],[119,281,72,0.5215142121615899],[119,281,73,0.5318501963225135],[119,281,74,0.5403465603593876],[119,281,75,0.5475613045604911],[119,281,76,0.5539408296910873],[119,281,77,0.5598337972919067],[119,281,78,0.565503402994102],[119,281,79,0.5711380628507311],[119,282,64,0.3225555471382859],[119,282,65,0.3537014878760717],[119,282,66,0.3824764815369184],[119,282,67,0.4086271302769998],[119,282,68,0.43196083507334326],[119,282,69,0.4523536325132733],[119,282,70,0.4697577749050084],[119,282,71,0.4842090537093381],[119,282,72,0.4958358052713695],[119,282,73,0.5050289724416919],[119,282,74,0.5124654916323805],[119,282,75,0.5187312271265642],[119,282,76,0.5242964589728553],[119,282,77,0.5295298540904368],[119,282,78,0.5347108564562525],[119,282,79,0.5400404963743595],[119,283,64,0.3107634356200529],[119,283,65,0.3400615548563187],[119,283,66,0.3671045133849803],[119,283,67,0.3916376617115542],[119,283,68,0.41346430519885413],[119,283,69,0.4324532988751239],[119,283,70,0.4485463935001797],[119,283,71,0.4617653328894889],[119,283,72,0.47222083614352495],[119,283,73,0.48030101923961593],[119,283,74,0.48671000199310366],[119,283,75,0.4920603900736615],[119,283,76,0.49684525749379377],[119,283,77,0.5014522336817345],[119,283,78,0.5061760172981077],[119,283,79,0.5112293167964024],[119,284,64,0.30025547394637586],[119,284,65,0.32771332792124996],[119,284,66,0.35303959737961527],[119,284,67,0.37597807345175743],[119,284,68,0.3963275534295055],[119,284,69,0.41394919561483046],[119,284,70,0.4287736345078411],[119,284,71,0.44080785633410186],[119,284,72,0.45014416262431967],[119,284,73,0.4571669059983513],[119,284,74,0.4626063095962324],[119,284,75,0.4671006201261215],[119,284,76,0.47116460652007774],[119,284,77,0.4752037738279466],[119,284,78,0.47952701292921046],[119,284,79,0.4843576860628608],[119,285,64,0.2907796882998744],[119,285,65,0.3164217918800953],[119,285,66,0.3400635830909997],[119,285,67,0.36144689808856234],[119,285,68,0.3803655434187052],[119,285,69,0.3966724168277044],[119,285,70,0.4102863987557281],[119,285,71,0.4211990145134328],[119,285,72,0.4294833866099416],[119,285,73,0.4355190811809238],[119,285,74,0.44006100574639867],[119,285,75,0.4437716265406676],[119,285,76,0.44718603469206564],[119,285,77,0.4507262957806922],[119,285,78,0.4547142457785538],[119,285,79,0.4593827333721717],[119,286,64,0.2827405090113501],[119,286,65,0.30659996892791463],[119,286,66,0.3285969020165944],[119,286,67,0.3484708185733077],[119,286,68,0.3660101092773481],[119,286,69,0.38105894099781656],[119,286,70,0.3935239348707852],[119,286,71,0.40338062664712104],[119,286,72,0.4106824137802996],[119,286,73,0.4158028982115957],[119,286,74,0.4195194423085758],[119,286,75,0.42251657238831297],[119,286,76,0.42534773690329747],[119,286,77,0.428449789589597],[119,286,78,0.4321559314296798],[119,286,79,0.43670711142995544],[119,287,64,0.27647813772989216],[119,287,65,0.2985978162872998],[119,287,66,0.31899790244280923],[119,287,67,0.33741524605194284],[119,287,68,0.353632468533392],[119,287,69,0.36748464575783957],[119,287,70,0.37886578599561715],[119,287,71,0.38773510292312746],[119,287,72,0.3941259622015867],[119,287,73,0.39840471707543706],[119,287,74,0.40136822665108574],[119,287,75,0.4037202535184394],[119,287,76,0.40603010773654535],[119,287,77,0.4087472514555788],[119,287,78,0.4122143769781371],[119,287,79,0.4166789582599016],[119,288,64,0.2722343715425498],[119,288,65,0.292668117832678],[119,288,66,0.3115288905270064],[119,288,67,0.3285505857609516],[119,288,68,0.3435097801700223],[119,288,69,0.35623221592714654],[119,288,70,0.3665990947676427],[119,288,71,0.37455318100177687],[119,288,72,0.38010775134028835],[119,288,73,0.3836205692234831],[119,288,74,0.38590441587056235],[119,288,75,0.38767890260735055],[119,288,76,0.38952625692759296],[119,288,77,0.3919060278070909],[119,288,78,0.39516828152854155],[119,288,79,0.39956528801714075],[119,289,64,0.2701630710579253],[119,289,65,0.28897646512850306],[119,289,66,0.3063656485799134],[119,289,67,0.3220613166395818],[119,289,68,0.3358338088344896],[119,289,69,0.3474994140957465],[119,289,70,0.35692649984562475],[119,289,71,0.36404146506699187],[119,289,72,0.36883769641347364],[119,289,73,0.37166301568059523],[119,289,74,0.37334204339888144],[119,289,75,0.3746063860964519],[119,289,76,0.37604787626704433],[119,289,77,0.3781333502247591],[119,289,78,0.38121793617579364],[119,289,79,0.38555685250722627],[119,290,64,0.27034011881646014],[119,290,65,0.28761076849538697],[119,290,66,0.3036065221878615],[119,290,67,0.3180546776388866],[119,290,68,0.33071923261614683],[119,290,69,0.3414070306764889],[119,290,70,0.34997374688757404],[119,290,71,0.3563297135046415],[119,290,72,0.3604488848978635],[119,290,73,0.3626678202592928],[119,290,74,0.36381849287520407],[119,290,75,0.36464027954189304],[119,290,76,0.36573101483373577],[119,290,77,0.36756180719208914],[119,290,78,0.37049038769829695],[119,290,79,0.3747729915308604],[119,291,64,0.27277286802902256],[119,291,65,0.28859029810568665],[119,291,66,0.303281076176279],[119,291,67,0.3165689607289237],[119,291,68,0.32821159439496195],[119,291,69,0.3380065134267307],[119,291,70,0.3457970139811508],[119,291,71,0.35147787520905804],[119,291,72,0.3550043351986677],[119,291,73,0.3567004378804898],[119,291,74,0.357400719284014],[119,291,75,0.35784782137650706],[119,291,76,0.358641762560538],[119,291,77,0.3602547526729901],[119,291,78,0.3630445659638786],[119,291,79,0.36726647205503293],[119,292,64,0.2774090816426865],[119,292,65,0.2918742551075325],[119,292,66,0.3053583194135081],[119,292,67,0.3175814106032706],[119,292,68,0.32829489675973517],[119,292,69,0.3372872764387713],[119,292,70,0.3443899515259315],[119,292,71,0.34948287451715015],[119,292,72,0.35250353747767327],[119,292,73,0.3537623180006713],[119,292,74,0.3540913173587294],[119,292,75,0.3542317450836642],[119,292,76,0.354781842132202],[119,292,77,0.3562116515157968],[119,292,78,0.35887637504812453],[119,292,79,0.36302831621030923],[119,293,64,0.2841453617343212],[119,293,65,0.29736987277783655],[119,293,66,0.3097544984554166],[119,293,67,0.3210157310812448],[119,293,68,0.3308988404963479],[119,293,69,0.3391836885993243],[119,293,70,0.3456904365677617],[119,293,71,0.3502851447702845],[119,293,72,0.35288877664071494],[119,293,73,0.3537970231455981],[119,293,74,0.35383443725094343],[119,293,75,0.35373598978306653],[119,293,76,0.35409410921525003],[119,293,77,0.3553733616837744],[119,293,78,0.3579237480650942],[119,293,79,0.3619926181142161],[119,294,64,0.29283506923182295],[119,294,65,0.30494004770414873],[119,294,66,0.3163404600307008],[119,294,67,0.3267491982077748],[119,294,68,0.3359057066460197],[119,294,69,0.34358174151802656],[119,294,70,0.3495870415852189],[119,294,71,0.35377491050398857],[119,294,72,0.3560512374846],[119,294,73,0.35669616255063746],[119,294,74,0.3565215474654089],[119,294,75,0.35625128922861504],[119,294,76,0.3564679610200587],[119,294,77,0.35762735331226114],[119,294,78,0.3600716657105825],[119,294,79,0.36404134952090506],[119,295,64,0.303295733962721],[119,295,65,0.314410500995114],[119,295,66,0.3249485823666506],[119,295,67,0.3346193800506887],[119,295,68,0.34315688213335],[119,295,69,0.35032539692477505],[119,295,70,0.35592521772798014],[119,295,71,0.35979821826526265],[119,295,72,0.3618368920032802],[119,295,73,0.3623051409075027],[119,295,74,0.36199704506054775],[119,295,75,0.36162063921812293],[119,295,76,0.3617446531948994],[119,295,77,0.3628128645922112],[119,295,78,0.3651571385176822],[119,295,79,0.36900915429683273],[119,296,64,0.31531595503071386],[119,296,65,0.32557646952002933],[119,296,66,0.33537927535583506],[119,296,67,0.344430463195855],[119,296,68,0.3524590289645482],[119,296,69,0.35922261353626384],[119,296,70,0.3645131925074484],[119,296,71,0.36816271605785383],[119,296,72,0.3700521688536071],[119,296,73,0.3704287222177455],[119,296,74,0.37006371311482905],[119,296,75,0.3696446434152289],[119,296,76,0.36972252505229936],[119,296,77,0.3707259944805077],[119,296,78,0.3729741528250298],[119,296,79,0.37668813172286525],[119,297,64,0.32866179151954067],[119,297,65,0.3382089271769617],[119,297,66,0.34740704956319957],[119,297,67,0.3559591859396872],[119,297,68,0.36358989699538524],[119,297,69,0.37005105339127337],[119,297,70,0.3751275819391996],[119,297,71,0.3786431814150424],[119,297,72,0.3804694049802284],[119,297,73,0.38083640875253544],[119,297,74,0.38048802545853466],[119,297,75,0.38008673758300127],[119,297,76,0.38016213312719105],[119,297,77,0.3811247322364891],[119,297,78,0.38327858045714935],[119,297,79,0.3868326086221773],[119,298,64,0.34308264352465606],[119,298,65,0.3520603361898612],[119,298,66,0.36078615407400305],[119,298,67,0.36896037817944094],[119,298,68,0.37630378026929945],[119,298,69,0.38256346765515137],[119,298,70,0.38751871713770225],[119,298,71,0.39098679810042725],[119,298,72,0.39283207940012754],[119,298,73,0.3932676351192755],[119,298,74,0.3930052986715016],[119,298,75,0.392678292229874],[119,298,76,0.39279129306753585],[119,298,77,0.39373392378542527],[119,298,78,0.39579305211768256],[119,298,79,0.3991639003148012],[119,299,64,0.3583166235123631],[119,299,65,0.36686992843433924],[119,299,66,0.3752557831822553],[119,299,67,0.3831721080009468],[119,299,68,0.3903366169252748],[119,299,69,0.3964927618930797],[119,299,70,0.40141568536287225],[119,299,71,0.4049181814362205],[119,299,72,0.4068598291462805],[119,299,73,0.4074367774344673],[119,299,74,0.4073246913461945],[119,299,75,0.4071235936672001],[119,299,76,0.4073100298566469],[119,299,77,0.40825017490809945],[119,299,78,0.41021179449459166],[119,299,79,0.4133750603978333],[119,300,64,0.37409541800675744],[119,300,65,0.38236851679245437],[119,300,66,0.390544851920008],[119,300,67,0.3983204349641514],[119,300,68,0.4054107326758955],[119,300,69,0.41155674081255667],[119,300,70,0.41653108551893137],[119,300,71,0.4201441522595743],[119,300,72,0.4222532473709978],[119,300,73,0.4230379776034513],[119,300,74,0.4231340506167991],[119,300,75,0.423104703479183],[119,300,76,0.4233954363680318],[119,300,77,0.42434669125738667],[119,300,78,0.42620543107829667],[119,300,79,0.42913561935233074],[119,301,64,0.3901486396040431],[119,301,65,0.39828283653607877],[119,301,66,0.40637634042706594],[119,301,67,0.41412377008601997],[119,301,68,0.4212392278551014],[119,301,69,0.427462532474598],[119,301,70,0.4325654981050332],[119,301,71,0.4363582595063574],[119,301,72,0.43869846360832315],[119,301,73,0.4397497827063438],[119,301,74,0.440104605953598],[119,301,75,0.4402861964043837],[119,301,76,0.44070644025190203],[119,301,77,0.4416780552009136],[119,301,78,0.44342574669177054],[119,301,79,0.4460963119758679],[119,302,64,0.4062076693145702],[119,302,65,0.4143394167391895],[119,302,66,0.42247120716147135],[119,302,67,0.4302968425211685],[119,302,68,0.4375300080360448],[119,302,69,0.44391069197408456],[119,302,70,0.44921166961812925],[119,302,71,0.4532450514229016],[119,302,72,0.4558715061960614],[119,302,73,0.45723959949079884],[119,302,74,0.4578955102233193],[119,302,75,0.45831977662955886],[119,302,76,0.4588884791541575],[119,302,77,0.45988493949067205],[119,302,78,0.4615104157335255],[119,302,79,0.4638937936417368],[119,303,64,0.42200898923270447],[119,303,65,0.430267981719179],[119,303,66,0.4385518709508315],[119,303,67,0.4465542729402634],[119,303,68,0.45398945821903525],[119,303,69,0.4605989845891907],[119,303,70,0.46615841140794717],[119,303,71,0.4704840954055186],[119,303,72,0.473442446857164],[119,303,73,0.47516796397124234],[119,303,74,0.4761582280150228],[119,303,75,0.4768487724953106],[119,303,76,0.4775780842672492],[119,303,77,0.4785987577589021],[119,303,78,0.4800876941327232],[119,303,79,0.48215534538394905],[119,304,64,0.43729700553375916],[119,304,65,0.445804382506459],[119,304,66,0.45434526188381175],[119,304,67,0.46261375360556695],[119,304,68,0.47032576058902764],[119,304,69,0.4772258483994345],[119,304,70,0.4830942129837099],[119,304,71,0.4877537464675223],[119,304,72,0.49107932744030564],[119,304,73,0.4931926261345262],[119,304,74,0.49454077123158224],[119,304,75,0.4955125096137213],[119,304,76,0.49640737221320524],[119,304,77,0.4974462518406507],[119,304,78,0.4987810750169311],[119,304,79,0.5005035678086748],[119,305,64,0.4518263617991529],[119,305,65,0.46069305834345753],[119,305,66,0.46958544104282735],[119,305,67,0.47819883514459083],[119,305,68,0.48625185584352293],[119,305,69,0.4934935363731138],[119,305,70,0.4997105697732527],[119,305,71,0.5047346643342876],[119,305,72,0.5084518688200698],[119,305,73,0.5109724497522854],[119,305,74,0.5126917819469214],[119,305,75,0.513950562397995],[119,305,76,0.515008445258711],[119,305,77,0.5160540159227586],[119,305,78,0.5172139080921451],[119,305,79,0.518561063831604],[119,306,64,0.46536374266878733],[119,306,65,0.4746890282120724],[119,306,66,0.48401578907706816],[119,306,67,0.4930413200210617],[119,306,68,0.5014880480901762],[119,306,69,0.5091109379235242],[119,306,70,0.5157050253340419],[119,306,71,0.5211130791659686],[119,306,72,0.5252349619564716],[119,306,73,0.5281711272998579],[119,306,74,0.5302644625289799],[119,306,75,0.5318068840042136],[119,306,76,0.5330176998624742],[119,306,77,0.5340529575196294],[119,306,78,0.5350139827355499],[119,306,79,0.5359551102418237],[119,307,64,0.47768916782120285],[119,307,65,0.48755941239007367],[119,307,66,0.49739076361628154],[119,307,67,0.5068832627035627],[119,307,68,0.5157642533143985],[119,307,69,0.5237960799341594],[119,307,70,0.5307839280162001],[119,307,71,0.5365838059078817],[119,307,72,0.5411119411137351],[119,307,73,0.5444607099815721],[119,307,74,0.5469203530281167],[119,307,75,0.5487338146848062],[119,307,76,0.5500800435543721],[119,307,77,0.5510826952751868],[119,307,78,0.5518180748003356],[119,307,79,0.5523223180914398],[119,308,64,0.48859677628108544],[119,308,65,0.4990844840360914],[119,308,66,0.5094772255250194],[119,308,67,0.5194785765316169],[119,308,68,0.5288218914167893],[119,308,69,0.5372783072528102],[119,308,70,0.5446649020775454],[119,308,71,0.5508530072686507],[119,308,72,0.5557776392385103],[119,308,73,0.5595249528626868],[119,308,74,0.5623329558313293],[119,308,75,0.5643959685542026],[119,308,76,0.5658530201469443],[119,308,77,0.5667958935916605],[119,308,78,0.5672764571332862],[119,308,79,0.5673132819117315],[119,309,64,0.4978951010550691],[119,309,65,0.5090582508040651],[119,309,66,0.5200553339981413],[119,309,67,0.5305942472799348],[119,309,68,0.5404154218210371],[119,309,69,0.5493001426551082],[119,309,70,0.5570790332510843],[119,309,71,0.5636407053264524],[119,309,72,0.5689412254977566],[119,309,73,0.5730624751080999],[119,309,74,0.5761912075822894],[119,309,75,0.57847399876657],[119,309,76,0.5800108432790209],[119,309,77,0.5808625340848923],[119,309,78,0.5810573738047349],[119,309,79,0.5805972177553428],[119,310,64,0.5054068340940501],[119,310,65,0.5172885664854476],[119,310,66,0.5289190104959695],[119,310,67,0.5400111534193051],[119,310,68,0.5503135226508794],[119,310,69,0.5596188262762184],[119,310,70,0.5677727687637946],[119,310,71,0.5746830417623223],[119,310,72,0.580328824975389],[119,310,73,0.5847897353270612],[119,310,74,0.5882027983665764],[119,310,75,0.5906682411051424],[119,310,76,0.5922483382911335],[119,310,77,0.5929741238659438],[119,310,78,0.5928514780508014],[119,310,79,0.5918665900645546],[119,311,64,0.5109680815842722],[119,311,65,0.5235967726813422],[119,311,66,0.535875971521164],[119,311,67,0.5475244930761051],[119,311,68,0.5582999134779694],[119,311,69,0.5680075345124039],[119,311,70,0.5765095318082732],[119,311,71,0.5837342867219627],[119,311,72,0.5896859205289904],[119,311,73,0.5944438220250344],[119,311,74,0.5980973381630971],[119,311,75,0.600702235983987],[119,311,76,0.602284792433403],[119,311,77,0.6028478406495541],[119,311,78,0.6023762339283079],[119,311,79,0.600841727365888],[119,312,64,0.5144271095651569],[119,312,65,0.5278168705026235],[119,312,66,0.5407473302354713],[119,312,67,0.5529438176886755],[119,312,68,0.5641738216390138],[119,312,69,0.5742562783909422],[119,312,70,0.5830710504658696],[119,312,71,0.5905685963047906],[119,312,72,0.5967795368054472],[119,312,73,0.6017850591617114],[119,312,74,0.6056293705608328],[119,312,75,0.6083261288614791],[119,312,76,0.6098677134053079],[119,312,77,0.6102306146889692],[119,312,78,0.609380281682028],[119,312,79,0.6072754267908147],[119,313,64,0.5156425798753121],[119,313,65,0.5297942222994064],[119,313,66,0.5433667669176206],[119,313,67,0.5560926723617486],[119,313,68,0.5677500921232761],[119,313,69,0.5781724814093909],[119,313,70,0.5872584010821875],[119,313,71,0.5949815186810198],[119,313,72,0.6014002064162018],[119,313,73,0.6065994268157634],[119,313,74,0.6105812337413921],[119,313,75,0.6133199490658656],[119,313,76,0.6147764962276135],[119,313,77,0.61490314753735],[119,313,78,0.6136477668243827],[119,313,79,0.610957547422612],[119,314,64,0.5144812764255663],[119,314,65,0.529383783418774],[119,314,66,0.5435792682613618],[119,314,67,0.5568078429180052],[119,314,68,0.5688589410295994],[119,314,69,0.5795812368434439],[119,314,70,0.5888927660942846],[119,314,71,0.5967912488361808],[119,314,72,0.6033637182716256],[119,314,73,0.608700796955909],[119,314,74,0.6127657687270369],[119,314,75,0.615496767032663],[119,314,76,0.61682599844629],[119,314,77,0.6166838676356347],[119,314,78,0.6150026329275273],[119,314,79,0.6117195924693575],[119,315,64,0.51081532180046],[119,315,65,0.5264478639921351],[119,315,66,0.5412394355149356],[119,315,67,0.5549382096479674],[119,315,68,0.5673453525940763],[119,315,69,0.5783252445244143],[119,315,70,0.5878159063105315],[119,315,71,0.5958396319439555],[119,315,72,0.6025126480752757],[119,315,73,0.6079329843189963],[119,315,74,0.612028874894786],[119,315,75,0.6147057299544103],[119,315,76,0.6158700236688515],[119,315,77,0.6154328227272313],[119,315,78,0.613312878128129],[119,315,79,0.6094392802633039],[119,316,64,0.5045188841864985],[119,316,65,0.5208534207505677],[119,316,66,0.5362093614603985],[119,316,67,0.5503432077567284],[119,316,68,0.5630681197869428],[119,316,69,0.5742644270850114],[119,316,70,0.5838903476418607],[119,316,71,0.5919929153661518],[119,316,72,0.5987176709769756],[119,316,73,0.6041716123941023],[119,316,74,0.6082519127556987],[119,316,75,0.610834975841969],[119,316,76,0.6118047134324016],[119,316,77,0.6110555090989016],[119,316,78,0.6084947753442873],[119,316,79,0.6040451040861604],[119,317,64,0.49546437462828585],[119,317,65,0.5124688788692426],[119,317,66,0.5283560762338683],[119,317,67,0.5428908945085368],[119,317,68,0.5558985284796714],[119,317,69,0.5672752256743286],[119,317,70,0.5769992822852918],[119,317,71,0.5851422492806385],[119,317,72,0.5918786563854622],[119,317,73,0.5973257945133553],[119,317,74,0.6013539539999752],[119,317,75,0.6038144259979465],[119,317,76,0.6045718474038985],[119,317,77,0.6035066376482857],[119,317,78,0.6005170562049773],[119,317,79,0.5955208808206027],[119,318,64,0.48351813461282916],[119,318,65,0.5011604838412009],[119,318,66,0.5175485619869414],[119,318,67,0.532455623069486],[119,318,68,0.5457186851824999],[119,318,69,0.5572495751422765],[119,318,70,0.5670461843599439],[119,318,71,0.5752039359374493],[119,318,72,0.5819255449408195],[119,318,73,0.5873396300496836],[119,318,74,0.591293878808078],[119,318,75,0.5936184559024456],[119,318,76,0.5941620519128397],[119,318,77,0.5927938367782793],[119,318,78,0.5894050586922323],[119,318,79,0.5839102884282324],[119,319,64,0.4685356139803737],[119,319,65,0.48678818337889723],[119,319,66,0.5036543363877524],[119,319,67,0.5189153230468175],[119,319,68,0.5324194883509651],[119,319,69,0.5440935586920862],[119,319,70,0.5539541399942297],[119,319,71,0.5621194275418164],[119,319,72,0.5688190076455053],[119,319,73,0.5741935157203635],[119,319,74,0.5780723204268098],[119,319,75,0.5802684445101315],[119,319,76,0.5806179168154247],[119,319,77,0.5789812921173634],[119,319,78,0.5752448384952288],[119,319,79,0.5693213922532019],[120,-64,64,64.0],[120,-64,65,64.0],[120,-64,66,64.0],[120,-64,67,64.0],[120,-64,68,64.0],[120,-64,69,64.0],[120,-64,70,64.0],[120,-64,71,64.0],[120,-64,72,64.0],[120,-64,73,64.0],[120,-64,74,64.0],[120,-64,75,64.0],[120,-64,76,64.0],[120,-64,77,64.0],[120,-64,78,64.0],[120,-64,79,64.0],[120,-63,64,64.0],[120,-63,65,64.0],[120,-63,66,64.0],[120,-63,67,64.0],[120,-63,68,64.0],[120,-63,69,64.0],[120,-63,70,64.0],[120,-63,71,64.0],[120,-63,72,64.0],[120,-63,73,64.0],[120,-63,74,64.0],[120,-63,75,64.0],[120,-63,76,64.0],[120,-63,77,64.0],[120,-63,78,64.0],[120,-63,79,64.0],[120,-62,64,64.0],[120,-62,65,64.0],[120,-62,66,64.0],[120,-62,67,64.0],[120,-62,68,64.0],[120,-62,69,64.0],[120,-62,70,64.0],[120,-62,71,64.0],[120,-62,72,64.0],[120,-62,73,64.0],[120,-62,74,64.0],[120,-62,75,64.0],[120,-62,76,64.0],[120,-62,77,64.0],[120,-62,78,64.0],[120,-62,79,64.0],[120,-61,64,64.0],[120,-61,65,64.0],[120,-61,66,64.0],[120,-61,67,64.0],[120,-61,68,64.0],[120,-61,69,64.0],[120,-61,70,64.0],[120,-61,71,64.0],[120,-61,72,64.0],[120,-61,73,64.0],[120,-61,74,64.0],[120,-61,75,64.0],[120,-61,76,64.0],[120,-61,77,64.0],[120,-61,78,64.0],[120,-61,79,64.0],[120,-60,64,64.0],[120,-60,65,64.0],[120,-60,66,64.0],[120,-60,67,64.0],[120,-60,68,64.0],[120,-60,69,64.0],[120,-60,70,64.0],[120,-60,71,64.0],[120,-60,72,64.0],[120,-60,73,64.0],[120,-60,74,64.0],[120,-60,75,64.0],[120,-60,76,64.0],[120,-60,77,64.0],[120,-60,78,64.0],[120,-60,79,64.0],[120,-59,64,64.0],[120,-59,65,64.0],[120,-59,66,64.0],[120,-59,67,64.0],[120,-59,68,64.0],[120,-59,69,64.0],[120,-59,70,64.0],[120,-59,71,64.0],[120,-59,72,64.0],[120,-59,73,64.0],[120,-59,74,64.0],[120,-59,75,64.0],[120,-59,76,64.0],[120,-59,77,64.0],[120,-59,78,64.0],[120,-59,79,64.0],[120,-58,64,64.0],[120,-58,65,64.0],[120,-58,66,64.0],[120,-58,67,64.0],[120,-58,68,64.0],[120,-58,69,64.0],[120,-58,70,64.0],[120,-58,71,64.0],[120,-58,72,64.0],[120,-58,73,64.0],[120,-58,74,64.0],[120,-58,75,64.0],[120,-58,76,64.0],[120,-58,77,64.0],[120,-58,78,64.0],[120,-58,79,64.0],[120,-57,64,64.0],[120,-57,65,64.0],[120,-57,66,64.0],[120,-57,67,64.0],[120,-57,68,64.0],[120,-57,69,64.0],[120,-57,70,64.0],[120,-57,71,64.0],[120,-57,72,64.0],[120,-57,73,64.0],[120,-57,74,64.0],[120,-57,75,64.0],[120,-57,76,64.0],[120,-57,77,64.0],[120,-57,78,64.0],[120,-57,79,64.0],[120,-56,64,64.0],[120,-56,65,64.0],[120,-56,66,64.0],[120,-56,67,64.0],[120,-56,68,64.0],[120,-56,69,64.0],[120,-56,70,64.0],[120,-56,71,64.0],[120,-56,72,64.0],[120,-56,73,64.0],[120,-56,74,64.0],[120,-56,75,64.0],[120,-56,76,64.0],[120,-56,77,64.0],[120,-56,78,64.0],[120,-56,79,64.0],[120,-55,64,64.0],[120,-55,65,64.0],[120,-55,66,64.0],[120,-55,67,64.0],[120,-55,68,64.0],[120,-55,69,64.0],[120,-55,70,64.0],[120,-55,71,64.0],[120,-55,72,64.0],[120,-55,73,64.0],[120,-55,74,64.0],[120,-55,75,64.0],[120,-55,76,64.0],[120,-55,77,64.0],[120,-55,78,64.0],[120,-55,79,64.0],[120,-54,64,64.0],[120,-54,65,64.0],[120,-54,66,64.0],[120,-54,67,64.0],[120,-54,68,64.0],[120,-54,69,64.0],[120,-54,70,64.0],[120,-54,71,64.0],[120,-54,72,64.0],[120,-54,73,64.0],[120,-54,74,64.0],[120,-54,75,64.0],[120,-54,76,64.0],[120,-54,77,64.0],[120,-54,78,64.0],[120,-54,79,64.0],[120,-53,64,64.0],[120,-53,65,64.0],[120,-53,66,64.0],[120,-53,67,64.0],[120,-53,68,64.0],[120,-53,69,64.0],[120,-53,70,64.0],[120,-53,71,64.0],[120,-53,72,64.0],[120,-53,73,64.0],[120,-53,74,64.0],[120,-53,75,64.0],[120,-53,76,64.0],[120,-53,77,64.0],[120,-53,78,64.0],[120,-53,79,64.0],[120,-52,64,64.0],[120,-52,65,64.0],[120,-52,66,64.0],[120,-52,67,64.0],[120,-52,68,64.0],[120,-52,69,64.0],[120,-52,70,64.0],[120,-52,71,64.0],[120,-52,72,64.0],[120,-52,73,64.0],[120,-52,74,64.0],[120,-52,75,64.0],[120,-52,76,64.0],[120,-52,77,64.0],[120,-52,78,64.0],[120,-52,79,64.0],[120,-51,64,64.0],[120,-51,65,64.0],[120,-51,66,64.0],[120,-51,67,64.0],[120,-51,68,64.0],[120,-51,69,64.0],[120,-51,70,64.0],[120,-51,71,64.0],[120,-51,72,64.0],[120,-51,73,64.0],[120,-51,74,64.0],[120,-51,75,64.0],[120,-51,76,64.0],[120,-51,77,64.0],[120,-51,78,64.0],[120,-51,79,64.0],[120,-50,64,64.0],[120,-50,65,64.0],[120,-50,66,64.0],[120,-50,67,64.0],[120,-50,68,64.0],[120,-50,69,64.0],[120,-50,70,64.0],[120,-50,71,64.0],[120,-50,72,64.0],[120,-50,73,64.0],[120,-50,74,64.0],[120,-50,75,64.0],[120,-50,76,64.0],[120,-50,77,64.0],[120,-50,78,64.0],[120,-50,79,64.0],[120,-49,64,64.0],[120,-49,65,64.0],[120,-49,66,64.0],[120,-49,67,64.0],[120,-49,68,64.0],[120,-49,69,64.0],[120,-49,70,64.0],[120,-49,71,64.0],[120,-49,72,64.0],[120,-49,73,64.0],[120,-49,74,64.0],[120,-49,75,64.0],[120,-49,76,64.0],[120,-49,77,64.0],[120,-49,78,64.0],[120,-49,79,64.0],[120,-48,64,64.0],[120,-48,65,64.0],[120,-48,66,64.0],[120,-48,67,64.0],[120,-48,68,64.0],[120,-48,69,64.0],[120,-48,70,64.0],[120,-48,71,64.0],[120,-48,72,64.0],[120,-48,73,64.0],[120,-48,74,64.0],[120,-48,75,64.0],[120,-48,76,64.0],[120,-48,77,64.0],[120,-48,78,64.0],[120,-48,79,64.0],[120,-47,64,64.0],[120,-47,65,64.0],[120,-47,66,64.0],[120,-47,67,64.0],[120,-47,68,64.0],[120,-47,69,64.0],[120,-47,70,64.0],[120,-47,71,64.0],[120,-47,72,64.0],[120,-47,73,64.0],[120,-47,74,64.0],[120,-47,75,64.0],[120,-47,76,64.0],[120,-47,77,64.0],[120,-47,78,64.0],[120,-47,79,64.0],[120,-46,64,64.0],[120,-46,65,64.0],[120,-46,66,64.0],[120,-46,67,64.0],[120,-46,68,64.0],[120,-46,69,64.0],[120,-46,70,64.0],[120,-46,71,64.0],[120,-46,72,64.0],[120,-46,73,64.0],[120,-46,74,64.0],[120,-46,75,64.0],[120,-46,76,64.0],[120,-46,77,64.0],[120,-46,78,64.0],[120,-46,79,64.0],[120,-45,64,64.0],[120,-45,65,64.0],[120,-45,66,64.0],[120,-45,67,64.0],[120,-45,68,64.0],[120,-45,69,64.0],[120,-45,70,64.0],[120,-45,71,64.0],[120,-45,72,64.0],[120,-45,73,64.0],[120,-45,74,64.0],[120,-45,75,64.0],[120,-45,76,64.0],[120,-45,77,64.0],[120,-45,78,64.0],[120,-45,79,64.0],[120,-44,64,64.0],[120,-44,65,64.0],[120,-44,66,64.0],[120,-44,67,64.0],[120,-44,68,64.0],[120,-44,69,64.0],[120,-44,70,64.0],[120,-44,71,64.0],[120,-44,72,64.0],[120,-44,73,64.0],[120,-44,74,64.0],[120,-44,75,64.0],[120,-44,76,64.0],[120,-44,77,64.0],[120,-44,78,64.0],[120,-44,79,64.0],[120,-43,64,64.0],[120,-43,65,64.0],[120,-43,66,64.0],[120,-43,67,64.0],[120,-43,68,64.0],[120,-43,69,64.0],[120,-43,70,64.0],[120,-43,71,64.0],[120,-43,72,64.0],[120,-43,73,64.0],[120,-43,74,64.0],[120,-43,75,64.0],[120,-43,76,64.0],[120,-43,77,64.0],[120,-43,78,64.0],[120,-43,79,64.0],[120,-42,64,64.0],[120,-42,65,64.0],[120,-42,66,64.0],[120,-42,67,64.0],[120,-42,68,64.0],[120,-42,69,64.0],[120,-42,70,64.0],[120,-42,71,64.0],[120,-42,72,64.0],[120,-42,73,64.0],[120,-42,74,64.0],[120,-42,75,64.0],[120,-42,76,64.0],[120,-42,77,64.0],[120,-42,78,64.0],[120,-42,79,64.0],[120,-41,64,64.0],[120,-41,65,64.0],[120,-41,66,64.0],[120,-41,67,64.0],[120,-41,68,64.0],[120,-41,69,64.0],[120,-41,70,64.0],[120,-41,71,64.0],[120,-41,72,64.0],[120,-41,73,64.0],[120,-41,74,64.0],[120,-41,75,64.0],[120,-41,76,64.0],[120,-41,77,64.0],[120,-41,78,64.0],[120,-41,79,64.0],[120,-40,64,64.0],[120,-40,65,64.0],[120,-40,66,64.0],[120,-40,67,64.0],[120,-40,68,64.0],[120,-40,69,64.0],[120,-40,70,64.0],[120,-40,71,64.0],[120,-40,72,64.0],[120,-40,73,64.0],[120,-40,74,64.0],[120,-40,75,64.0],[120,-40,76,64.0],[120,-40,77,64.0],[120,-40,78,64.0],[120,-40,79,64.0],[120,-39,64,64.0],[120,-39,65,64.0],[120,-39,66,64.0],[120,-39,67,64.0],[120,-39,68,64.0],[120,-39,69,64.0],[120,-39,70,64.0],[120,-39,71,64.0],[120,-39,72,64.0],[120,-39,73,64.0],[120,-39,74,64.0],[120,-39,75,64.0],[120,-39,76,64.0],[120,-39,77,64.0],[120,-39,78,64.0],[120,-39,79,64.0],[120,-38,64,64.0],[120,-38,65,64.0],[120,-38,66,64.0],[120,-38,67,64.0],[120,-38,68,64.0],[120,-38,69,64.0],[120,-38,70,64.0],[120,-38,71,64.0],[120,-38,72,64.0],[120,-38,73,64.0],[120,-38,74,64.0],[120,-38,75,64.0],[120,-38,76,64.0],[120,-38,77,64.0],[120,-38,78,64.0],[120,-38,79,64.0],[120,-37,64,64.0],[120,-37,65,64.0],[120,-37,66,64.0],[120,-37,67,64.0],[120,-37,68,64.0],[120,-37,69,64.0],[120,-37,70,64.0],[120,-37,71,64.0],[120,-37,72,64.0],[120,-37,73,64.0],[120,-37,74,64.0],[120,-37,75,64.0],[120,-37,76,64.0],[120,-37,77,64.0],[120,-37,78,64.0],[120,-37,79,64.0],[120,-36,64,64.0],[120,-36,65,64.0],[120,-36,66,64.0],[120,-36,67,64.0],[120,-36,68,64.0],[120,-36,69,64.0],[120,-36,70,64.0],[120,-36,71,64.0],[120,-36,72,64.0],[120,-36,73,64.0],[120,-36,74,64.0],[120,-36,75,64.0],[120,-36,76,64.0],[120,-36,77,64.0],[120,-36,78,64.0],[120,-36,79,64.0],[120,-35,64,64.0],[120,-35,65,64.0],[120,-35,66,64.0],[120,-35,67,64.0],[120,-35,68,64.0],[120,-35,69,64.0],[120,-35,70,64.0],[120,-35,71,64.0],[120,-35,72,64.0],[120,-35,73,64.0],[120,-35,74,64.0],[120,-35,75,64.0],[120,-35,76,64.0],[120,-35,77,64.0],[120,-35,78,64.0],[120,-35,79,64.0],[120,-34,64,64.0],[120,-34,65,64.0],[120,-34,66,64.0],[120,-34,67,64.0],[120,-34,68,64.0],[120,-34,69,64.0],[120,-34,70,64.0],[120,-34,71,64.0],[120,-34,72,64.0],[120,-34,73,64.0],[120,-34,74,64.0],[120,-34,75,64.0],[120,-34,76,64.0],[120,-34,77,64.0],[120,-34,78,64.0],[120,-34,79,64.0],[120,-33,64,64.0],[120,-33,65,64.0],[120,-33,66,64.0],[120,-33,67,64.0],[120,-33,68,64.0],[120,-33,69,64.0],[120,-33,70,64.0],[120,-33,71,64.0],[120,-33,72,64.0],[120,-33,73,64.0],[120,-33,74,64.0],[120,-33,75,64.0],[120,-33,76,64.0],[120,-33,77,64.0],[120,-33,78,64.0],[120,-33,79,64.0],[120,-32,64,64.0],[120,-32,65,64.0],[120,-32,66,64.0],[120,-32,67,64.0],[120,-32,68,64.0],[120,-32,69,64.0],[120,-32,70,64.0],[120,-32,71,64.0],[120,-32,72,64.0],[120,-32,73,64.0],[120,-32,74,64.0],[120,-32,75,64.0],[120,-32,76,64.0],[120,-32,77,64.0],[120,-32,78,64.0],[120,-32,79,64.0],[120,-31,64,64.0],[120,-31,65,64.0],[120,-31,66,64.0],[120,-31,67,64.0],[120,-31,68,64.0],[120,-31,69,64.0],[120,-31,70,64.0],[120,-31,71,64.0],[120,-31,72,64.0],[120,-31,73,64.0],[120,-31,74,64.0],[120,-31,75,64.0],[120,-31,76,64.0],[120,-31,77,64.0],[120,-31,78,64.0],[120,-31,79,64.0],[120,-30,64,64.0],[120,-30,65,64.0],[120,-30,66,64.0],[120,-30,67,64.0],[120,-30,68,64.0],[120,-30,69,64.0],[120,-30,70,64.0],[120,-30,71,64.0],[120,-30,72,64.0],[120,-30,73,64.0],[120,-30,74,64.0],[120,-30,75,64.0],[120,-30,76,64.0],[120,-30,77,64.0],[120,-30,78,64.0],[120,-30,79,64.0],[120,-29,64,64.0],[120,-29,65,64.0],[120,-29,66,64.0],[120,-29,67,64.0],[120,-29,68,64.0],[120,-29,69,64.0],[120,-29,70,64.0],[120,-29,71,64.0],[120,-29,72,64.0],[120,-29,73,64.0],[120,-29,74,64.0],[120,-29,75,64.0],[120,-29,76,64.0],[120,-29,77,64.0],[120,-29,78,64.0],[120,-29,79,64.0],[120,-28,64,64.0],[120,-28,65,64.0],[120,-28,66,64.0],[120,-28,67,64.0],[120,-28,68,64.0],[120,-28,69,64.0],[120,-28,70,64.0],[120,-28,71,64.0],[120,-28,72,64.0],[120,-28,73,64.0],[120,-28,74,64.0],[120,-28,75,64.0],[120,-28,76,64.0],[120,-28,77,64.0],[120,-28,78,64.0],[120,-28,79,64.0],[120,-27,64,64.0],[120,-27,65,64.0],[120,-27,66,64.0],[120,-27,67,64.0],[120,-27,68,64.0],[120,-27,69,64.0],[120,-27,70,64.0],[120,-27,71,64.0],[120,-27,72,64.0],[120,-27,73,64.0],[120,-27,74,64.0],[120,-27,75,64.0],[120,-27,76,64.0],[120,-27,77,64.0],[120,-27,78,64.0],[120,-27,79,64.0],[120,-26,64,64.0],[120,-26,65,64.0],[120,-26,66,64.0],[120,-26,67,64.0],[120,-26,68,64.0],[120,-26,69,64.0],[120,-26,70,64.0],[120,-26,71,64.0],[120,-26,72,64.0],[120,-26,73,64.0],[120,-26,74,64.0],[120,-26,75,64.0],[120,-26,76,64.0],[120,-26,77,64.0],[120,-26,78,64.0],[120,-26,79,64.0],[120,-25,64,64.0],[120,-25,65,64.0],[120,-25,66,64.0],[120,-25,67,64.0],[120,-25,68,64.0],[120,-25,69,64.0],[120,-25,70,64.0],[120,-25,71,64.0],[120,-25,72,64.0],[120,-25,73,64.0],[120,-25,74,64.0],[120,-25,75,64.0],[120,-25,76,64.0],[120,-25,77,64.0],[120,-25,78,64.0],[120,-25,79,64.0],[120,-24,64,64.0],[120,-24,65,64.0],[120,-24,66,64.0],[120,-24,67,64.0],[120,-24,68,64.0],[120,-24,69,64.0],[120,-24,70,64.0],[120,-24,71,64.0],[120,-24,72,64.0],[120,-24,73,64.0],[120,-24,74,64.0],[120,-24,75,64.0],[120,-24,76,64.0],[120,-24,77,64.0],[120,-24,78,64.0],[120,-24,79,64.0],[120,-23,64,64.0],[120,-23,65,64.0],[120,-23,66,64.0],[120,-23,67,64.0],[120,-23,68,64.0],[120,-23,69,64.0],[120,-23,70,64.0],[120,-23,71,64.0],[120,-23,72,64.0],[120,-23,73,64.0],[120,-23,74,64.0],[120,-23,75,64.0],[120,-23,76,64.0],[120,-23,77,64.0],[120,-23,78,64.0],[120,-23,79,64.0],[120,-22,64,64.0],[120,-22,65,64.0],[120,-22,66,64.0],[120,-22,67,64.0],[120,-22,68,64.0],[120,-22,69,64.0],[120,-22,70,64.0],[120,-22,71,64.0],[120,-22,72,64.0],[120,-22,73,64.0],[120,-22,74,64.0],[120,-22,75,64.0],[120,-22,76,64.0],[120,-22,77,64.0],[120,-22,78,64.0],[120,-22,79,64.0],[120,-21,64,64.0],[120,-21,65,64.0],[120,-21,66,64.0],[120,-21,67,64.0],[120,-21,68,64.0],[120,-21,69,64.0],[120,-21,70,64.0],[120,-21,71,64.0],[120,-21,72,64.0],[120,-21,73,64.0],[120,-21,74,64.0],[120,-21,75,64.0],[120,-21,76,64.0],[120,-21,77,64.0],[120,-21,78,64.0],[120,-21,79,64.0],[120,-20,64,64.0],[120,-20,65,64.0],[120,-20,66,64.0],[120,-20,67,64.0],[120,-20,68,64.0],[120,-20,69,64.0],[120,-20,70,64.0],[120,-20,71,64.0],[120,-20,72,64.0],[120,-20,73,64.0],[120,-20,74,64.0],[120,-20,75,64.0],[120,-20,76,64.0],[120,-20,77,64.0],[120,-20,78,64.0],[120,-20,79,64.0],[120,-19,64,64.0],[120,-19,65,64.0],[120,-19,66,64.0],[120,-19,67,64.0],[120,-19,68,64.0],[120,-19,69,64.0],[120,-19,70,64.0],[120,-19,71,64.0],[120,-19,72,64.0],[120,-19,73,64.0],[120,-19,74,64.0],[120,-19,75,64.0],[120,-19,76,64.0],[120,-19,77,64.0],[120,-19,78,64.0],[120,-19,79,64.0],[120,-18,64,64.0],[120,-18,65,64.0],[120,-18,66,64.0],[120,-18,67,64.0],[120,-18,68,64.0],[120,-18,69,64.0],[120,-18,70,64.0],[120,-18,71,64.0],[120,-18,72,64.0],[120,-18,73,64.0],[120,-18,74,64.0],[120,-18,75,64.0],[120,-18,76,64.0],[120,-18,77,64.0],[120,-18,78,64.0],[120,-18,79,64.0],[120,-17,64,64.0],[120,-17,65,64.0],[120,-17,66,64.0],[120,-17,67,64.0],[120,-17,68,64.0],[120,-17,69,64.0],[120,-17,70,64.0],[120,-17,71,64.0],[120,-17,72,64.0],[120,-17,73,64.0],[120,-17,74,64.0],[120,-17,75,64.0],[120,-17,76,64.0],[120,-17,77,64.0],[120,-17,78,64.0],[120,-17,79,64.0],[120,-16,64,64.0],[120,-16,65,64.0],[120,-16,66,64.0],[120,-16,67,64.0],[120,-16,68,64.0],[120,-16,69,64.0],[120,-16,70,64.0],[120,-16,71,64.0],[120,-16,72,64.0],[120,-16,73,64.0],[120,-16,74,64.0],[120,-16,75,64.0],[120,-16,76,64.0],[120,-16,77,64.0],[120,-16,78,64.0],[120,-16,79,64.0],[120,-15,64,64.0],[120,-15,65,64.0],[120,-15,66,64.0],[120,-15,67,64.0],[120,-15,68,64.0],[120,-15,69,64.0],[120,-15,70,64.0],[120,-15,71,64.0],[120,-15,72,64.0],[120,-15,73,64.0],[120,-15,74,64.0],[120,-15,75,64.0],[120,-15,76,64.0],[120,-15,77,64.0],[120,-15,78,64.0],[120,-15,79,64.0],[120,-14,64,64.0],[120,-14,65,64.0],[120,-14,66,64.0],[120,-14,67,64.0],[120,-14,68,64.0],[120,-14,69,64.0],[120,-14,70,64.0],[120,-14,71,64.0],[120,-14,72,64.0],[120,-14,73,64.0],[120,-14,74,64.0],[120,-14,75,64.0],[120,-14,76,64.0],[120,-14,77,64.0],[120,-14,78,64.0],[120,-14,79,64.0],[120,-13,64,64.0],[120,-13,65,64.0],[120,-13,66,64.0],[120,-13,67,64.0],[120,-13,68,64.0],[120,-13,69,64.0],[120,-13,70,64.0],[120,-13,71,64.0],[120,-13,72,64.0],[120,-13,73,64.0],[120,-13,74,64.0],[120,-13,75,64.0],[120,-13,76,64.0],[120,-13,77,64.0],[120,-13,78,64.0],[120,-13,79,64.0],[120,-12,64,64.0],[120,-12,65,64.0],[120,-12,66,64.0],[120,-12,67,64.0],[120,-12,68,64.0],[120,-12,69,64.0],[120,-12,70,64.0],[120,-12,71,64.0],[120,-12,72,64.0],[120,-12,73,64.0],[120,-12,74,64.0],[120,-12,75,64.0],[120,-12,76,64.0],[120,-12,77,64.0],[120,-12,78,64.0],[120,-12,79,64.0],[120,-11,64,64.0],[120,-11,65,64.0],[120,-11,66,64.0],[120,-11,67,64.0],[120,-11,68,64.0],[120,-11,69,64.0],[120,-11,70,64.0],[120,-11,71,64.0],[120,-11,72,64.0],[120,-11,73,64.0],[120,-11,74,64.0],[120,-11,75,64.0],[120,-11,76,64.0],[120,-11,77,64.0],[120,-11,78,64.0],[120,-11,79,64.0],[120,-10,64,64.0],[120,-10,65,64.0],[120,-10,66,64.0],[120,-10,67,64.0],[120,-10,68,64.0],[120,-10,69,64.0],[120,-10,70,64.0],[120,-10,71,64.0],[120,-10,72,64.0],[120,-10,73,64.0],[120,-10,74,64.0],[120,-10,75,64.0],[120,-10,76,64.0],[120,-10,77,64.0],[120,-10,78,64.0],[120,-10,79,64.0],[120,-9,64,64.0],[120,-9,65,64.0],[120,-9,66,64.0],[120,-9,67,64.0],[120,-9,68,64.0],[120,-9,69,64.0],[120,-9,70,64.0],[120,-9,71,64.0],[120,-9,72,64.0],[120,-9,73,64.0],[120,-9,74,64.0],[120,-9,75,64.0],[120,-9,76,64.0],[120,-9,77,64.0],[120,-9,78,64.0],[120,-9,79,64.0],[120,-8,64,64.0],[120,-8,65,64.0],[120,-8,66,64.0],[120,-8,67,64.0],[120,-8,68,64.0],[120,-8,69,64.0],[120,-8,70,64.0],[120,-8,71,64.0],[120,-8,72,64.0],[120,-8,73,64.0],[120,-8,74,64.0],[120,-8,75,64.0],[120,-8,76,64.0],[120,-8,77,64.0],[120,-8,78,64.0],[120,-8,79,64.0],[120,-7,64,64.0],[120,-7,65,64.0],[120,-7,66,64.0],[120,-7,67,64.0],[120,-7,68,64.0],[120,-7,69,64.0],[120,-7,70,64.0],[120,-7,71,64.0],[120,-7,72,64.0],[120,-7,73,64.0],[120,-7,74,64.0],[120,-7,75,64.0],[120,-7,76,64.0],[120,-7,77,64.0],[120,-7,78,64.0],[120,-7,79,64.0],[120,-6,64,64.0],[120,-6,65,64.0],[120,-6,66,64.0],[120,-6,67,64.0],[120,-6,68,64.0],[120,-6,69,64.0],[120,-6,70,64.0],[120,-6,71,64.0],[120,-6,72,64.0],[120,-6,73,64.0],[120,-6,74,64.0],[120,-6,75,64.0],[120,-6,76,64.0],[120,-6,77,64.0],[120,-6,78,64.0],[120,-6,79,64.0],[120,-5,64,64.0],[120,-5,65,64.0],[120,-5,66,64.0],[120,-5,67,64.0],[120,-5,68,64.0],[120,-5,69,64.0],[120,-5,70,64.0],[120,-5,71,64.0],[120,-5,72,64.0],[120,-5,73,64.0],[120,-5,74,64.0],[120,-5,75,64.0],[120,-5,76,64.0],[120,-5,77,64.0],[120,-5,78,64.0],[120,-5,79,64.0],[120,-4,64,64.0],[120,-4,65,64.0],[120,-4,66,64.0],[120,-4,67,64.0],[120,-4,68,64.0],[120,-4,69,64.0],[120,-4,70,64.0],[120,-4,71,64.0],[120,-4,72,64.0],[120,-4,73,64.0],[120,-4,74,64.0],[120,-4,75,64.0],[120,-4,76,64.0],[120,-4,77,64.0],[120,-4,78,64.0],[120,-4,79,64.0],[120,-3,64,64.0],[120,-3,65,64.0],[120,-3,66,64.0],[120,-3,67,64.0],[120,-3,68,64.0],[120,-3,69,64.0],[120,-3,70,64.0],[120,-3,71,64.0],[120,-3,72,64.0],[120,-3,73,64.0],[120,-3,74,64.0],[120,-3,75,64.0],[120,-3,76,64.0],[120,-3,77,64.0],[120,-3,78,64.0],[120,-3,79,64.0],[120,-2,64,64.0],[120,-2,65,64.0],[120,-2,66,64.0],[120,-2,67,64.0],[120,-2,68,64.0],[120,-2,69,64.0],[120,-2,70,64.0],[120,-2,71,64.0],[120,-2,72,64.0],[120,-2,73,64.0],[120,-2,74,64.0],[120,-2,75,64.0],[120,-2,76,64.0],[120,-2,77,64.0],[120,-2,78,64.0],[120,-2,79,64.0],[120,-1,64,64.0],[120,-1,65,64.0],[120,-1,66,64.0],[120,-1,67,64.0],[120,-1,68,64.0],[120,-1,69,64.0],[120,-1,70,64.0],[120,-1,71,64.0],[120,-1,72,64.0],[120,-1,73,64.0],[120,-1,74,64.0],[120,-1,75,64.0],[120,-1,76,64.0],[120,-1,77,64.0],[120,-1,78,64.0],[120,-1,79,64.0],[120,0,64,64.0],[120,0,65,64.0],[120,0,66,64.0],[120,0,67,64.0],[120,0,68,64.0],[120,0,69,64.0],[120,0,70,64.0],[120,0,71,64.0],[120,0,72,64.0],[120,0,73,64.0],[120,0,74,64.0],[120,0,75,64.0],[120,0,76,64.0],[120,0,77,64.0],[120,0,78,64.0],[120,0,79,64.0],[120,1,64,64.0],[120,1,65,64.0],[120,1,66,64.0],[120,1,67,64.0],[120,1,68,64.0],[120,1,69,64.0],[120,1,70,64.0],[120,1,71,64.0],[120,1,72,64.0],[120,1,73,64.0],[120,1,74,64.0],[120,1,75,64.0],[120,1,76,64.0],[120,1,77,64.0],[120,1,78,64.0],[120,1,79,64.0],[120,2,64,64.0],[120,2,65,64.0],[120,2,66,64.0],[120,2,67,64.0],[120,2,68,64.0],[120,2,69,64.0],[120,2,70,64.0],[120,2,71,64.0],[120,2,72,64.0],[120,2,73,64.0],[120,2,74,64.0],[120,2,75,64.0],[120,2,76,64.0],[120,2,77,64.0],[120,2,78,64.0],[120,2,79,64.0],[120,3,64,64.0],[120,3,65,64.0],[120,3,66,64.0],[120,3,67,64.0],[120,3,68,64.0],[120,3,69,64.0],[120,3,70,64.0],[120,3,71,64.0],[120,3,72,64.0],[120,3,73,64.0],[120,3,74,64.0],[120,3,75,64.0],[120,3,76,64.0],[120,3,77,64.0],[120,3,78,64.0],[120,3,79,64.0],[120,4,64,64.0],[120,4,65,64.0],[120,4,66,64.0],[120,4,67,64.0],[120,4,68,64.0],[120,4,69,64.0],[120,4,70,64.0],[120,4,71,64.0],[120,4,72,64.0],[120,4,73,64.0],[120,4,74,64.0],[120,4,75,64.0],[120,4,76,64.0],[120,4,77,64.0],[120,4,78,64.0],[120,4,79,64.0],[120,5,64,64.0],[120,5,65,64.0],[120,5,66,64.0],[120,5,67,64.0],[120,5,68,64.0],[120,5,69,64.0],[120,5,70,64.0],[120,5,71,64.0],[120,5,72,64.0],[120,5,73,64.0],[120,5,74,64.0],[120,5,75,64.0],[120,5,76,64.0],[120,5,77,64.0],[120,5,78,64.0],[120,5,79,64.0],[120,6,64,64.0],[120,6,65,64.0],[120,6,66,64.0],[120,6,67,64.0],[120,6,68,64.0],[120,6,69,64.0],[120,6,70,64.0],[120,6,71,64.0],[120,6,72,64.0],[120,6,73,64.0],[120,6,74,64.0],[120,6,75,64.0],[120,6,76,64.0],[120,6,77,64.0],[120,6,78,64.0],[120,6,79,64.0],[120,7,64,64.0],[120,7,65,64.0],[120,7,66,64.0],[120,7,67,64.0],[120,7,68,64.0],[120,7,69,64.0],[120,7,70,64.0],[120,7,71,64.0],[120,7,72,64.0],[120,7,73,64.0],[120,7,74,64.0],[120,7,75,64.0],[120,7,76,64.0],[120,7,77,64.0],[120,7,78,64.0],[120,7,79,64.0],[120,8,64,64.0],[120,8,65,64.0],[120,8,66,64.0],[120,8,67,64.0],[120,8,68,64.0],[120,8,69,64.0],[120,8,70,64.0],[120,8,71,64.0],[120,8,72,64.0],[120,8,73,64.0],[120,8,74,64.0],[120,8,75,64.0],[120,8,76,64.0],[120,8,77,64.0],[120,8,78,64.0],[120,8,79,64.0],[120,9,64,64.0],[120,9,65,64.0],[120,9,66,64.0],[120,9,67,64.0],[120,9,68,64.0],[120,9,69,64.0],[120,9,70,64.0],[120,9,71,64.0],[120,9,72,64.0],[120,9,73,64.0],[120,9,74,64.0],[120,9,75,64.0],[120,9,76,64.0],[120,9,77,64.0],[120,9,78,64.0],[120,9,79,64.0],[120,10,64,64.0],[120,10,65,64.0],[120,10,66,64.0],[120,10,67,64.0],[120,10,68,64.0],[120,10,69,64.0],[120,10,70,64.0],[120,10,71,64.0],[120,10,72,64.0],[120,10,73,64.0],[120,10,74,64.0],[120,10,75,64.0],[120,10,76,64.0],[120,10,77,64.0],[120,10,78,64.0],[120,10,79,64.0],[120,11,64,64.0],[120,11,65,64.0],[120,11,66,64.0],[120,11,67,64.0],[120,11,68,64.0],[120,11,69,64.0],[120,11,70,64.0],[120,11,71,64.0],[120,11,72,64.0],[120,11,73,64.0],[120,11,74,64.0],[120,11,75,64.0],[120,11,76,64.0],[120,11,77,64.0],[120,11,78,64.0],[120,11,79,64.0],[120,12,64,64.0],[120,12,65,64.0],[120,12,66,64.0],[120,12,67,64.0],[120,12,68,64.0],[120,12,69,64.0],[120,12,70,64.0],[120,12,71,64.0],[120,12,72,64.0],[120,12,73,64.0],[120,12,74,64.0],[120,12,75,64.0],[120,12,76,64.0],[120,12,77,64.0],[120,12,78,64.0],[120,12,79,64.0],[120,13,64,64.0],[120,13,65,64.0],[120,13,66,64.0],[120,13,67,64.0],[120,13,68,64.0],[120,13,69,64.0],[120,13,70,64.0],[120,13,71,64.0],[120,13,72,64.0],[120,13,73,64.0],[120,13,74,64.0],[120,13,75,64.0],[120,13,76,64.0],[120,13,77,64.0],[120,13,78,64.0],[120,13,79,64.0],[120,14,64,64.0],[120,14,65,64.0],[120,14,66,64.0],[120,14,67,64.0],[120,14,68,64.0],[120,14,69,64.0],[120,14,70,64.0],[120,14,71,64.0],[120,14,72,64.0],[120,14,73,64.0],[120,14,74,64.0],[120,14,75,64.0],[120,14,76,64.0],[120,14,77,64.0],[120,14,78,64.0],[120,14,79,64.0],[120,15,64,64.0],[120,15,65,64.0],[120,15,66,64.0],[120,15,67,64.0],[120,15,68,64.0],[120,15,69,64.0],[120,15,70,64.0],[120,15,71,64.0],[120,15,72,64.0],[120,15,73,64.0],[120,15,74,64.0],[120,15,75,64.0],[120,15,76,64.0],[120,15,77,64.0],[120,15,78,64.0],[120,15,79,64.0],[120,16,64,64.0],[120,16,65,64.0],[120,16,66,64.0],[120,16,67,64.0],[120,16,68,64.0],[120,16,69,64.0],[120,16,70,64.0],[120,16,71,64.0],[120,16,72,64.0],[120,16,73,64.0],[120,16,74,64.0],[120,16,75,64.0],[120,16,76,64.0],[120,16,77,64.0],[120,16,78,64.0],[120,16,79,64.0],[120,17,64,64.0],[120,17,65,64.0],[120,17,66,64.0],[120,17,67,64.0],[120,17,68,64.0],[120,17,69,64.0],[120,17,70,64.0],[120,17,71,64.0],[120,17,72,64.0],[120,17,73,64.0],[120,17,74,64.0],[120,17,75,64.0],[120,17,76,64.0],[120,17,77,64.0],[120,17,78,64.0],[120,17,79,64.0],[120,18,64,64.0],[120,18,65,64.0],[120,18,66,64.0],[120,18,67,64.0],[120,18,68,64.0],[120,18,69,64.0],[120,18,70,64.0],[120,18,71,64.0],[120,18,72,64.0],[120,18,73,64.0],[120,18,74,64.0],[120,18,75,64.0],[120,18,76,64.0],[120,18,77,64.0],[120,18,78,64.0],[120,18,79,64.0],[120,19,64,64.0],[120,19,65,64.0],[120,19,66,64.0],[120,19,67,64.0],[120,19,68,64.0],[120,19,69,64.0],[120,19,70,64.0],[120,19,71,64.0],[120,19,72,64.0],[120,19,73,64.0],[120,19,74,64.0],[120,19,75,64.0],[120,19,76,64.0],[120,19,77,64.0],[120,19,78,64.0],[120,19,79,64.0],[120,20,64,64.0],[120,20,65,64.0],[120,20,66,64.0],[120,20,67,64.0],[120,20,68,64.0],[120,20,69,64.0],[120,20,70,64.0],[120,20,71,64.0],[120,20,72,64.0],[120,20,73,64.0],[120,20,74,64.0],[120,20,75,64.0],[120,20,76,64.0],[120,20,77,64.0],[120,20,78,64.0],[120,20,79,64.0],[120,21,64,64.0],[120,21,65,64.0],[120,21,66,64.0],[120,21,67,64.0],[120,21,68,64.0],[120,21,69,64.0],[120,21,70,64.0],[120,21,71,64.0],[120,21,72,64.0],[120,21,73,64.0],[120,21,74,64.0],[120,21,75,64.0],[120,21,76,64.0],[120,21,77,64.0],[120,21,78,64.0],[120,21,79,64.0],[120,22,64,64.0],[120,22,65,64.0],[120,22,66,64.0],[120,22,67,64.0],[120,22,68,64.0],[120,22,69,64.0],[120,22,70,64.0],[120,22,71,64.0],[120,22,72,64.0],[120,22,73,64.0],[120,22,74,64.0],[120,22,75,64.0],[120,22,76,64.0],[120,22,77,64.0],[120,22,78,64.0],[120,22,79,64.0],[120,23,64,64.0],[120,23,65,64.0],[120,23,66,64.0],[120,23,67,64.0],[120,23,68,64.0],[120,23,69,64.0],[120,23,70,64.0],[120,23,71,64.0],[120,23,72,64.0],[120,23,73,64.0],[120,23,74,64.0],[120,23,75,64.0],[120,23,76,64.0],[120,23,77,64.0],[120,23,78,64.0],[120,23,79,64.0],[120,24,64,64.0],[120,24,65,64.0],[120,24,66,64.0],[120,24,67,64.0],[120,24,68,64.0],[120,24,69,64.0],[120,24,70,64.0],[120,24,71,64.0],[120,24,72,64.0],[120,24,73,64.0],[120,24,74,64.0],[120,24,75,64.0],[120,24,76,64.0],[120,24,77,64.0],[120,24,78,64.0],[120,24,79,64.0],[120,25,64,64.0],[120,25,65,64.0],[120,25,66,64.0],[120,25,67,64.0],[120,25,68,64.0],[120,25,69,64.0],[120,25,70,64.0],[120,25,71,64.0],[120,25,72,64.0],[120,25,73,64.0],[120,25,74,64.0],[120,25,75,64.0],[120,25,76,64.0],[120,25,77,64.0],[120,25,78,64.0],[120,25,79,64.0],[120,26,64,64.0],[120,26,65,64.0],[120,26,66,64.0],[120,26,67,64.0],[120,26,68,64.0],[120,26,69,64.0],[120,26,70,64.0],[120,26,71,64.0],[120,26,72,64.0],[120,26,73,64.0],[120,26,74,64.0],[120,26,75,64.0],[120,26,76,64.0],[120,26,77,64.0],[120,26,78,64.0],[120,26,79,64.0],[120,27,64,64.0],[120,27,65,64.0],[120,27,66,64.0],[120,27,67,64.0],[120,27,68,64.0],[120,27,69,64.0],[120,27,70,64.0],[120,27,71,64.0],[120,27,72,64.0],[120,27,73,64.0],[120,27,74,64.0],[120,27,75,64.0],[120,27,76,64.0],[120,27,77,64.0],[120,27,78,64.0],[120,27,79,64.0],[120,28,64,64.0],[120,28,65,64.0],[120,28,66,64.0],[120,28,67,64.0],[120,28,68,64.0],[120,28,69,64.0],[120,28,70,64.0],[120,28,71,64.0],[120,28,72,64.0],[120,28,73,64.0],[120,28,74,64.0],[120,28,75,64.0],[120,28,76,64.0],[120,28,77,64.0],[120,28,78,64.0],[120,28,79,64.0],[120,29,64,64.0],[120,29,65,64.0],[120,29,66,64.0],[120,29,67,64.0],[120,29,68,64.0],[120,29,69,64.0],[120,29,70,64.0],[120,29,71,64.0],[120,29,72,64.0],[120,29,73,64.0],[120,29,74,64.0],[120,29,75,64.0],[120,29,76,64.0],[120,29,77,64.0],[120,29,78,64.0],[120,29,79,64.0],[120,30,64,64.0],[120,30,65,64.0],[120,30,66,64.0],[120,30,67,64.0],[120,30,68,64.0],[120,30,69,64.0],[120,30,70,64.0],[120,30,71,64.0],[120,30,72,64.0],[120,30,73,64.0],[120,30,74,64.0],[120,30,75,64.0],[120,30,76,64.0],[120,30,77,64.0],[120,30,78,64.0],[120,30,79,64.0],[120,31,64,64.0],[120,31,65,64.0],[120,31,66,64.0],[120,31,67,64.0],[120,31,68,64.0],[120,31,69,64.0],[120,31,70,64.0],[120,31,71,64.0],[120,31,72,64.0],[120,31,73,64.0],[120,31,74,64.0],[120,31,75,64.0],[120,31,76,64.0],[120,31,77,64.0],[120,31,78,64.0],[120,31,79,64.0],[120,32,64,64.0],[120,32,65,64.0],[120,32,66,64.0],[120,32,67,64.0],[120,32,68,64.0],[120,32,69,64.0],[120,32,70,64.0],[120,32,71,64.0],[120,32,72,64.0],[120,32,73,64.0],[120,32,74,64.0],[120,32,75,64.0],[120,32,76,64.0],[120,32,77,64.0],[120,32,78,64.0],[120,32,79,64.0],[120,33,64,64.0],[120,33,65,64.0],[120,33,66,64.0],[120,33,67,64.0],[120,33,68,64.0],[120,33,69,64.0],[120,33,70,64.0],[120,33,71,64.0],[120,33,72,64.0],[120,33,73,64.0],[120,33,74,64.0],[120,33,75,64.0],[120,33,76,64.0],[120,33,77,64.0],[120,33,78,64.0],[120,33,79,64.0],[120,34,64,64.0],[120,34,65,64.0],[120,34,66,64.0],[120,34,67,64.0],[120,34,68,64.0],[120,34,69,64.0],[120,34,70,64.0],[120,34,71,64.0],[120,34,72,64.0],[120,34,73,64.0],[120,34,74,64.0],[120,34,75,64.0],[120,34,76,64.0],[120,34,77,64.0],[120,34,78,64.0],[120,34,79,64.0],[120,35,64,64.0],[120,35,65,64.0],[120,35,66,64.0],[120,35,67,64.0],[120,35,68,64.0],[120,35,69,64.0],[120,35,70,64.0],[120,35,71,64.0],[120,35,72,64.0],[120,35,73,64.0],[120,35,74,64.0],[120,35,75,64.0],[120,35,76,64.0],[120,35,77,64.0],[120,35,78,64.0],[120,35,79,64.0],[120,36,64,64.0],[120,36,65,64.0],[120,36,66,64.0],[120,36,67,64.0],[120,36,68,64.0],[120,36,69,64.0],[120,36,70,64.0],[120,36,71,64.0],[120,36,72,64.0],[120,36,73,64.0],[120,36,74,64.0],[120,36,75,64.0],[120,36,76,64.0],[120,36,77,64.0],[120,36,78,64.0],[120,36,79,64.0],[120,37,64,64.0],[120,37,65,64.0],[120,37,66,64.0],[120,37,67,64.0],[120,37,68,64.0],[120,37,69,64.0],[120,37,70,64.0],[120,37,71,64.0],[120,37,72,64.0],[120,37,73,64.0],[120,37,74,64.0],[120,37,75,64.0],[120,37,76,64.0],[120,37,77,64.0],[120,37,78,64.0],[120,37,79,64.0],[120,38,64,64.0],[120,38,65,64.0],[120,38,66,64.0],[120,38,67,64.0],[120,38,68,64.0],[120,38,69,64.0],[120,38,70,64.0],[120,38,71,64.0],[120,38,72,64.0],[120,38,73,64.0],[120,38,74,64.0],[120,38,75,64.0],[120,38,76,64.0],[120,38,77,64.0],[120,38,78,64.0],[120,38,79,64.0],[120,39,64,64.0],[120,39,65,64.0],[120,39,66,64.0],[120,39,67,64.0],[120,39,68,64.0],[120,39,69,64.0],[120,39,70,64.0],[120,39,71,64.0],[120,39,72,64.0],[120,39,73,64.0],[120,39,74,64.0],[120,39,75,64.0],[120,39,76,64.0],[120,39,77,64.0],[120,39,78,64.0],[120,39,79,64.0],[120,40,64,64.0],[120,40,65,64.0],[120,40,66,64.0],[120,40,67,64.0],[120,40,68,64.0],[120,40,69,64.0],[120,40,70,64.0],[120,40,71,64.0],[120,40,72,64.0],[120,40,73,64.0],[120,40,74,64.0],[120,40,75,64.0],[120,40,76,64.0],[120,40,77,64.0],[120,40,78,64.0],[120,40,79,64.0],[120,41,64,64.0],[120,41,65,64.0],[120,41,66,64.0],[120,41,67,64.0],[120,41,68,64.0],[120,41,69,64.0],[120,41,70,64.0],[120,41,71,64.0],[120,41,72,64.0],[120,41,73,64.0],[120,41,74,64.0],[120,41,75,64.0],[120,41,76,64.0],[120,41,77,64.0],[120,41,78,64.0],[120,41,79,64.0],[120,42,64,64.0],[120,42,65,64.0],[120,42,66,64.0],[120,42,67,64.0],[120,42,68,64.0],[120,42,69,64.0],[120,42,70,64.0],[120,42,71,64.0],[120,42,72,64.0],[120,42,73,64.0],[120,42,74,64.0],[120,42,75,64.0],[120,42,76,64.0],[120,42,77,64.0],[120,42,78,64.0],[120,42,79,64.0],[120,43,64,64.0],[120,43,65,64.0],[120,43,66,64.0],[120,43,67,64.0],[120,43,68,64.0],[120,43,69,64.0],[120,43,70,64.0],[120,43,71,64.0],[120,43,72,64.0],[120,43,73,64.0],[120,43,74,64.0],[120,43,75,64.0],[120,43,76,64.0],[120,43,77,64.0],[120,43,78,64.0],[120,43,79,64.0],[120,44,64,64.0],[120,44,65,64.0],[120,44,66,64.0],[120,44,67,64.0],[120,44,68,64.0],[120,44,69,64.0],[120,44,70,64.0],[120,44,71,64.0],[120,44,72,64.0],[120,44,73,64.0],[120,44,74,64.0],[120,44,75,64.0],[120,44,76,64.0],[120,44,77,64.0],[120,44,78,64.0],[120,44,79,64.0],[120,45,64,64.0],[120,45,65,64.0],[120,45,66,64.0],[120,45,67,64.0],[120,45,68,64.0],[120,45,69,64.0],[120,45,70,64.0],[120,45,71,64.0],[120,45,72,64.0],[120,45,73,64.0],[120,45,74,64.0],[120,45,75,64.0],[120,45,76,64.0],[120,45,77,64.0],[120,45,78,64.0],[120,45,79,64.0],[120,46,64,64.0],[120,46,65,64.0],[120,46,66,64.0],[120,46,67,64.0],[120,46,68,64.0],[120,46,69,64.0],[120,46,70,64.0],[120,46,71,64.0],[120,46,72,64.0],[120,46,73,64.0],[120,46,74,64.0],[120,46,75,64.0],[120,46,76,64.0],[120,46,77,64.0],[120,46,78,64.0],[120,46,79,64.0],[120,47,64,64.0],[120,47,65,64.0],[120,47,66,64.0],[120,47,67,64.0],[120,47,68,64.0],[120,47,69,64.0],[120,47,70,64.0],[120,47,71,64.0],[120,47,72,64.0],[120,47,73,64.0],[120,47,74,64.0],[120,47,75,64.0],[120,47,76,64.0],[120,47,77,64.0],[120,47,78,64.0],[120,47,79,64.0],[120,48,64,64.0],[120,48,65,64.0],[120,48,66,64.0],[120,48,67,64.0],[120,48,68,64.0],[120,48,69,64.0],[120,48,70,64.0],[120,48,71,64.0],[120,48,72,64.0],[120,48,73,64.0],[120,48,74,64.0],[120,48,75,64.0],[120,48,76,64.0],[120,48,77,64.0],[120,48,78,64.0],[120,48,79,64.0],[120,49,64,64.0],[120,49,65,64.0],[120,49,66,64.0],[120,49,67,64.0],[120,49,68,64.0],[120,49,69,64.0],[120,49,70,64.0],[120,49,71,64.0],[120,49,72,64.0],[120,49,73,64.0],[120,49,74,64.0],[120,49,75,64.0],[120,49,76,64.0],[120,49,77,64.0],[120,49,78,64.0],[120,49,79,64.0],[120,50,64,64.0],[120,50,65,64.0],[120,50,66,64.0],[120,50,67,64.0],[120,50,68,64.0],[120,50,69,64.0],[120,50,70,64.0],[120,50,71,64.0],[120,50,72,64.0],[120,50,73,64.0],[120,50,74,64.0],[120,50,75,64.0],[120,50,76,64.0],[120,50,77,64.0],[120,50,78,64.0],[120,50,79,64.0],[120,51,64,64.0],[120,51,65,64.0],[120,51,66,64.0],[120,51,67,64.0],[120,51,68,64.0],[120,51,69,64.0],[120,51,70,64.0],[120,51,71,64.0],[120,51,72,64.0],[120,51,73,64.0],[120,51,74,64.0],[120,51,75,64.0],[120,51,76,64.0],[120,51,77,64.0],[120,51,78,64.0],[120,51,79,64.0],[120,52,64,64.0],[120,52,65,64.0],[120,52,66,64.0],[120,52,67,64.0],[120,52,68,64.0],[120,52,69,64.0],[120,52,70,64.0],[120,52,71,64.0],[120,52,72,64.0],[120,52,73,64.0],[120,52,74,64.0],[120,52,75,64.0],[120,52,76,64.0],[120,52,77,64.0],[120,52,78,64.0],[120,52,79,64.0],[120,53,64,64.0],[120,53,65,64.0],[120,53,66,64.0],[120,53,67,64.0],[120,53,68,64.0],[120,53,69,64.0],[120,53,70,64.0],[120,53,71,64.0],[120,53,72,64.0],[120,53,73,64.0],[120,53,74,64.0],[120,53,75,64.0],[120,53,76,64.0],[120,53,77,64.0],[120,53,78,64.0],[120,53,79,64.0],[120,54,64,64.0],[120,54,65,64.0],[120,54,66,64.0],[120,54,67,64.0],[120,54,68,64.0],[120,54,69,64.0],[120,54,70,64.0],[120,54,71,64.0],[120,54,72,64.0],[120,54,73,64.0],[120,54,74,64.0],[120,54,75,64.0],[120,54,76,64.0],[120,54,77,64.0],[120,54,78,64.0],[120,54,79,64.0],[120,55,64,64.0],[120,55,65,64.0],[120,55,66,64.0],[120,55,67,64.0],[120,55,68,64.0],[120,55,69,64.0],[120,55,70,64.0],[120,55,71,64.0],[120,55,72,64.0],[120,55,73,64.0],[120,55,74,64.0],[120,55,75,64.0],[120,55,76,64.0],[120,55,77,64.0],[120,55,78,64.0],[120,55,79,64.0],[120,56,64,64.0],[120,56,65,64.0],[120,56,66,64.0],[120,56,67,64.0],[120,56,68,64.0],[120,56,69,64.0],[120,56,70,64.0],[120,56,71,64.0],[120,56,72,64.0],[120,56,73,64.0],[120,56,74,64.0],[120,56,75,64.0],[120,56,76,64.0],[120,56,77,64.0],[120,56,78,64.0],[120,56,79,64.0],[120,57,64,64.0],[120,57,65,64.0],[120,57,66,64.0],[120,57,67,64.0],[120,57,68,64.0],[120,57,69,64.0],[120,57,70,64.0],[120,57,71,64.0],[120,57,72,64.0],[120,57,73,64.0],[120,57,74,64.0],[120,57,75,64.0],[120,57,76,64.0],[120,57,77,64.0],[120,57,78,64.0],[120,57,79,64.0],[120,58,64,64.0],[120,58,65,64.0],[120,58,66,64.0],[120,58,67,64.0],[120,58,68,64.0],[120,58,69,64.0],[120,58,70,64.0],[120,58,71,64.0],[120,58,72,64.0],[120,58,73,64.0],[120,58,74,64.0],[120,58,75,64.0],[120,58,76,64.0],[120,58,77,64.0],[120,58,78,64.0],[120,58,79,64.0],[120,59,64,64.0],[120,59,65,64.0],[120,59,66,64.0],[120,59,67,64.0],[120,59,68,64.0],[120,59,69,64.0],[120,59,70,64.0],[120,59,71,64.0],[120,59,72,64.0],[120,59,73,64.0],[120,59,74,64.0],[120,59,75,64.0],[120,59,76,64.0],[120,59,77,64.0],[120,59,78,64.0],[120,59,79,64.0],[120,60,64,64.0],[120,60,65,64.0],[120,60,66,64.0],[120,60,67,64.0],[120,60,68,64.0],[120,60,69,64.0],[120,60,70,64.0],[120,60,71,64.0],[120,60,72,64.0],[120,60,73,64.0],[120,60,74,64.0],[120,60,75,64.0],[120,60,76,64.0],[120,60,77,64.0],[120,60,78,64.0],[120,60,79,64.0],[120,61,64,64.0],[120,61,65,64.0],[120,61,66,64.0],[120,61,67,64.0],[120,61,68,64.0],[120,61,69,64.0],[120,61,70,64.0],[120,61,71,64.0],[120,61,72,64.0],[120,61,73,64.0],[120,61,74,64.0],[120,61,75,64.0],[120,61,76,64.0],[120,61,77,64.0],[120,61,78,64.0],[120,61,79,64.0],[120,62,64,64.0],[120,62,65,64.0],[120,62,66,64.0],[120,62,67,64.0],[120,62,68,64.0],[120,62,69,64.0],[120,62,70,64.0],[120,62,71,64.0],[120,62,72,64.0],[120,62,73,64.0],[120,62,74,64.0],[120,62,75,64.0],[120,62,76,64.0],[120,62,77,64.0],[120,62,78,64.0],[120,62,79,64.0],[120,63,64,64.0],[120,63,65,64.0],[120,63,66,64.0],[120,63,67,64.0],[120,63,68,64.0],[120,63,69,64.0],[120,63,70,64.0],[120,63,71,64.0],[120,63,72,64.0],[120,63,73,64.0],[120,63,74,64.0],[120,63,75,64.0],[120,63,76,64.0],[120,63,77,64.0],[120,63,78,64.0],[120,63,79,64.0],[120,64,64,64.0],[120,64,65,64.0],[120,64,66,64.0],[120,64,67,64.0],[120,64,68,64.0],[120,64,69,64.0],[120,64,70,64.0],[120,64,71,64.0],[120,64,72,64.0],[120,64,73,64.0],[120,64,74,64.0],[120,64,75,64.0],[120,64,76,64.0],[120,64,77,64.0],[120,64,78,64.0],[120,64,79,64.0],[120,65,64,64.0],[120,65,65,64.0],[120,65,66,64.0],[120,65,67,64.0],[120,65,68,64.0],[120,65,69,64.0],[120,65,70,64.0],[120,65,71,64.0],[120,65,72,64.0],[120,65,73,64.0],[120,65,74,64.0],[120,65,75,64.0],[120,65,76,64.0],[120,65,77,64.0],[120,65,78,64.0],[120,65,79,64.0],[120,66,64,64.0],[120,66,65,64.0],[120,66,66,64.0],[120,66,67,64.0],[120,66,68,64.0],[120,66,69,64.0],[120,66,70,64.0],[120,66,71,64.0],[120,66,72,64.0],[120,66,73,64.0],[120,66,74,64.0],[120,66,75,64.0],[120,66,76,64.0],[120,66,77,64.0],[120,66,78,64.0],[120,66,79,64.0],[120,67,64,64.0],[120,67,65,64.0],[120,67,66,64.0],[120,67,67,64.0],[120,67,68,64.0],[120,67,69,64.0],[120,67,70,64.0],[120,67,71,64.0],[120,67,72,64.0],[120,67,73,64.0],[120,67,74,64.0],[120,67,75,64.0],[120,67,76,64.0],[120,67,77,64.0],[120,67,78,64.0],[120,67,79,64.0],[120,68,64,64.0],[120,68,65,64.0],[120,68,66,64.0],[120,68,67,64.0],[120,68,68,64.0],[120,68,69,64.0],[120,68,70,64.0],[120,68,71,64.0],[120,68,72,64.0],[120,68,73,64.0],[120,68,74,64.0],[120,68,75,64.0],[120,68,76,64.0],[120,68,77,64.0],[120,68,78,64.0],[120,68,79,64.0],[120,69,64,64.0],[120,69,65,64.0],[120,69,66,64.0],[120,69,67,64.0],[120,69,68,64.0],[120,69,69,64.0],[120,69,70,64.0],[120,69,71,64.0],[120,69,72,64.0],[120,69,73,64.0],[120,69,74,64.0],[120,69,75,64.0],[120,69,76,64.0],[120,69,77,64.0],[120,69,78,64.0],[120,69,79,64.0],[120,70,64,64.0],[120,70,65,64.0],[120,70,66,64.0],[120,70,67,64.0],[120,70,68,64.0],[120,70,69,64.0],[120,70,70,64.0],[120,70,71,64.0],[120,70,72,64.0],[120,70,73,64.0],[120,70,74,64.0],[120,70,75,64.0],[120,70,76,64.0],[120,70,77,64.0],[120,70,78,64.0],[120,70,79,64.0],[120,71,64,64.0],[120,71,65,64.0],[120,71,66,64.0],[120,71,67,64.0],[120,71,68,64.0],[120,71,69,64.0],[120,71,70,64.0],[120,71,71,64.0],[120,71,72,64.0],[120,71,73,64.0],[120,71,74,64.0],[120,71,75,64.0],[120,71,76,64.0],[120,71,77,64.0],[120,71,78,64.0],[120,71,79,64.0],[120,72,64,64.0],[120,72,65,64.0],[120,72,66,64.0],[120,72,67,64.0],[120,72,68,64.0],[120,72,69,64.0],[120,72,70,64.0],[120,72,71,64.0],[120,72,72,64.0],[120,72,73,64.0],[120,72,74,64.0],[120,72,75,64.0],[120,72,76,64.0],[120,72,77,64.0],[120,72,78,64.0],[120,72,79,64.0],[120,73,64,64.0],[120,73,65,64.0],[120,73,66,64.0],[120,73,67,64.0],[120,73,68,64.0],[120,73,69,64.0],[120,73,70,64.0],[120,73,71,64.0],[120,73,72,64.0],[120,73,73,64.0],[120,73,74,64.0],[120,73,75,64.0],[120,73,76,64.0],[120,73,77,64.0],[120,73,78,64.0],[120,73,79,64.0],[120,74,64,64.0],[120,74,65,64.0],[120,74,66,64.0],[120,74,67,64.0],[120,74,68,64.0],[120,74,69,64.0],[120,74,70,64.0],[120,74,71,64.0],[120,74,72,64.0],[120,74,73,64.0],[120,74,74,64.0],[120,74,75,64.0],[120,74,76,64.0],[120,74,77,64.0],[120,74,78,64.0],[120,74,79,64.0],[120,75,64,64.0],[120,75,65,64.0],[120,75,66,64.0],[120,75,67,64.0],[120,75,68,64.0],[120,75,69,64.0],[120,75,70,64.0],[120,75,71,64.0],[120,75,72,64.0],[120,75,73,64.0],[120,75,74,64.0],[120,75,75,64.0],[120,75,76,64.0],[120,75,77,64.0],[120,75,78,64.0],[120,75,79,64.0],[120,76,64,64.0],[120,76,65,64.0],[120,76,66,64.0],[120,76,67,64.0],[120,76,68,64.0],[120,76,69,64.0],[120,76,70,64.0],[120,76,71,64.0],[120,76,72,64.0],[120,76,73,64.0],[120,76,74,64.0],[120,76,75,64.0],[120,76,76,64.0],[120,76,77,64.0],[120,76,78,64.0],[120,76,79,64.0],[120,77,64,64.0],[120,77,65,64.0],[120,77,66,64.0],[120,77,67,64.0],[120,77,68,64.0],[120,77,69,64.0],[120,77,70,64.0],[120,77,71,64.0],[120,77,72,64.0],[120,77,73,64.0],[120,77,74,64.0],[120,77,75,64.0],[120,77,76,64.0],[120,77,77,64.0],[120,77,78,64.0],[120,77,79,64.0],[120,78,64,64.0],[120,78,65,64.0],[120,78,66,64.0],[120,78,67,64.0],[120,78,68,64.0],[120,78,69,64.0],[120,78,70,64.0],[120,78,71,64.0],[120,78,72,64.0],[120,78,73,64.0],[120,78,74,64.0],[120,78,75,64.0],[120,78,76,64.0],[120,78,77,64.0],[120,78,78,64.0],[120,78,79,64.0],[120,79,64,64.0],[120,79,65,64.0],[120,79,66,64.0],[120,79,67,64.0],[120,79,68,64.0],[120,79,69,64.0],[120,79,70,64.0],[120,79,71,64.0],[120,79,72,64.0],[120,79,73,64.0],[120,79,74,64.0],[120,79,75,64.0],[120,79,76,64.0],[120,79,77,64.0],[120,79,78,64.0],[120,79,79,64.0],[120,80,64,64.0],[120,80,65,64.0],[120,80,66,64.0],[120,80,67,64.0],[120,80,68,64.0],[120,80,69,64.0],[120,80,70,64.0],[120,80,71,64.0],[120,80,72,64.0],[120,80,73,64.0],[120,80,74,64.0],[120,80,75,64.0],[120,80,76,64.0],[120,80,77,64.0],[120,80,78,64.0],[120,80,79,64.0],[120,81,64,64.0],[120,81,65,64.0],[120,81,66,64.0],[120,81,67,64.0],[120,81,68,64.0],[120,81,69,64.0],[120,81,70,64.0],[120,81,71,64.0],[120,81,72,64.0],[120,81,73,64.0],[120,81,74,64.0],[120,81,75,64.0],[120,81,76,64.0],[120,81,77,64.0],[120,81,78,64.0],[120,81,79,64.0],[120,82,64,64.0],[120,82,65,64.0],[120,82,66,64.0],[120,82,67,64.0],[120,82,68,64.0],[120,82,69,64.0],[120,82,70,64.0],[120,82,71,64.0],[120,82,72,64.0],[120,82,73,64.0],[120,82,74,64.0],[120,82,75,64.0],[120,82,76,64.0],[120,82,77,64.0],[120,82,78,64.0],[120,82,79,64.0],[120,83,64,64.0],[120,83,65,64.0],[120,83,66,64.0],[120,83,67,64.0],[120,83,68,64.0],[120,83,69,64.0],[120,83,70,64.0],[120,83,71,64.0],[120,83,72,64.0],[120,83,73,64.0],[120,83,74,64.0],[120,83,75,64.0],[120,83,76,64.0],[120,83,77,64.0],[120,83,78,64.0],[120,83,79,64.0],[120,84,64,64.0],[120,84,65,64.0],[120,84,66,64.0],[120,84,67,64.0],[120,84,68,64.0],[120,84,69,64.0],[120,84,70,64.0],[120,84,71,64.0],[120,84,72,64.0],[120,84,73,64.0],[120,84,74,64.0],[120,84,75,64.0],[120,84,76,64.0],[120,84,77,64.0],[120,84,78,64.0],[120,84,79,64.0],[120,85,64,64.0],[120,85,65,64.0],[120,85,66,64.0],[120,85,67,64.0],[120,85,68,64.0],[120,85,69,64.0],[120,85,70,64.0],[120,85,71,64.0],[120,85,72,64.0],[120,85,73,64.0],[120,85,74,64.0],[120,85,75,64.0],[120,85,76,64.0],[120,85,77,64.0],[120,85,78,64.0],[120,85,79,64.0],[120,86,64,64.0],[120,86,65,64.0],[120,86,66,64.0],[120,86,67,64.0],[120,86,68,64.0],[120,86,69,64.0],[120,86,70,64.0],[120,86,71,64.0],[120,86,72,64.0],[120,86,73,64.0],[120,86,74,64.0],[120,86,75,64.0],[120,86,76,64.0],[120,86,77,64.0],[120,86,78,64.0],[120,86,79,64.0],[120,87,64,64.0],[120,87,65,64.0],[120,87,66,64.0],[120,87,67,64.0],[120,87,68,64.0],[120,87,69,64.0],[120,87,70,64.0],[120,87,71,64.0],[120,87,72,64.0],[120,87,73,64.0],[120,87,74,64.0],[120,87,75,64.0],[120,87,76,64.0],[120,87,77,64.0],[120,87,78,64.0],[120,87,79,64.0],[120,88,64,64.0],[120,88,65,64.0],[120,88,66,64.0],[120,88,67,64.0],[120,88,68,64.0],[120,88,69,64.0],[120,88,70,64.0],[120,88,71,64.0],[120,88,72,64.0],[120,88,73,64.0],[120,88,74,64.0],[120,88,75,64.0],[120,88,76,64.0],[120,88,77,64.0],[120,88,78,64.0],[120,88,79,64.0],[120,89,64,64.0],[120,89,65,64.0],[120,89,66,64.0],[120,89,67,64.0],[120,89,68,64.0],[120,89,69,64.0],[120,89,70,64.0],[120,89,71,64.0],[120,89,72,64.0],[120,89,73,64.0],[120,89,74,64.0],[120,89,75,64.0],[120,89,76,64.0],[120,89,77,64.0],[120,89,78,64.0],[120,89,79,64.0],[120,90,64,64.0],[120,90,65,64.0],[120,90,66,64.0],[120,90,67,64.0],[120,90,68,64.0],[120,90,69,64.0],[120,90,70,64.0],[120,90,71,64.0],[120,90,72,64.0],[120,90,73,64.0],[120,90,74,64.0],[120,90,75,64.0],[120,90,76,64.0],[120,90,77,64.0],[120,90,78,64.0],[120,90,79,64.0],[120,91,64,64.0],[120,91,65,64.0],[120,91,66,64.0],[120,91,67,64.0],[120,91,68,64.0],[120,91,69,64.0],[120,91,70,64.0],[120,91,71,64.0],[120,91,72,64.0],[120,91,73,64.0],[120,91,74,64.0],[120,91,75,64.0],[120,91,76,64.0],[120,91,77,64.0],[120,91,78,64.0],[120,91,79,64.0],[120,92,64,64.0],[120,92,65,64.0],[120,92,66,64.0],[120,92,67,64.0],[120,92,68,64.0],[120,92,69,64.0],[120,92,70,64.0],[120,92,71,64.0],[120,92,72,64.0],[120,92,73,64.0],[120,92,74,64.0],[120,92,75,64.0],[120,92,76,64.0],[120,92,77,64.0],[120,92,78,64.0],[120,92,79,64.0],[120,93,64,64.0],[120,93,65,64.0],[120,93,66,64.0],[120,93,67,64.0],[120,93,68,64.0],[120,93,69,64.0],[120,93,70,64.0],[120,93,71,64.0],[120,93,72,64.0],[120,93,73,64.0],[120,93,74,64.0],[120,93,75,64.0],[120,93,76,64.0],[120,93,77,64.0],[120,93,78,64.0],[120,93,79,64.0],[120,94,64,64.0],[120,94,65,64.0],[120,94,66,64.0],[120,94,67,64.0],[120,94,68,64.0],[120,94,69,64.0],[120,94,70,64.0],[120,94,71,64.0],[120,94,72,64.0],[120,94,73,64.0],[120,94,74,64.0],[120,94,75,64.0],[120,94,76,64.0],[120,94,77,64.0],[120,94,78,64.0],[120,94,79,64.0],[120,95,64,64.0],[120,95,65,64.0],[120,95,66,64.0],[120,95,67,64.0],[120,95,68,64.0],[120,95,69,64.0],[120,95,70,64.0],[120,95,71,64.0],[120,95,72,64.0],[120,95,73,64.0],[120,95,74,64.0],[120,95,75,64.0],[120,95,76,64.0],[120,95,77,64.0],[120,95,78,64.0],[120,95,79,64.0],[120,96,64,64.0],[120,96,65,64.0],[120,96,66,64.0],[120,96,67,64.0],[120,96,68,64.0],[120,96,69,64.0],[120,96,70,64.0],[120,96,71,64.0],[120,96,72,64.0],[120,96,73,64.0],[120,96,74,64.0],[120,96,75,64.0],[120,96,76,64.0],[120,96,77,64.0],[120,96,78,64.0],[120,96,79,64.0],[120,97,64,64.0],[120,97,65,64.0],[120,97,66,64.0],[120,97,67,64.0],[120,97,68,64.0],[120,97,69,64.0],[120,97,70,64.0],[120,97,71,64.0],[120,97,72,64.0],[120,97,73,64.0],[120,97,74,64.0],[120,97,75,64.0],[120,97,76,64.0],[120,97,77,64.0],[120,97,78,64.0],[120,97,79,64.0],[120,98,64,64.0],[120,98,65,64.0],[120,98,66,64.0],[120,98,67,64.0],[120,98,68,64.0],[120,98,69,64.0],[120,98,70,64.0],[120,98,71,64.0],[120,98,72,64.0],[120,98,73,64.0],[120,98,74,64.0],[120,98,75,64.0],[120,98,76,64.0],[120,98,77,64.0],[120,98,78,64.0],[120,98,79,64.0],[120,99,64,64.0],[120,99,65,64.0],[120,99,66,64.0],[120,99,67,64.0],[120,99,68,64.0],[120,99,69,64.0],[120,99,70,64.0],[120,99,71,64.0],[120,99,72,64.0],[120,99,73,64.0],[120,99,74,64.0],[120,99,75,64.0],[120,99,76,64.0],[120,99,77,64.0],[120,99,78,64.0],[120,99,79,64.0],[120,100,64,64.0],[120,100,65,64.0],[120,100,66,64.0],[120,100,67,64.0],[120,100,68,64.0],[120,100,69,64.0],[120,100,70,64.0],[120,100,71,64.0],[120,100,72,64.0],[120,100,73,64.0],[120,100,74,64.0],[120,100,75,64.0],[120,100,76,64.0],[120,100,77,64.0],[120,100,78,64.0],[120,100,79,64.0],[120,101,64,64.0],[120,101,65,64.0],[120,101,66,64.0],[120,101,67,64.0],[120,101,68,64.0],[120,101,69,64.0],[120,101,70,64.0],[120,101,71,64.0],[120,101,72,64.0],[120,101,73,64.0],[120,101,74,64.0],[120,101,75,64.0],[120,101,76,64.0],[120,101,77,64.0],[120,101,78,64.0],[120,101,79,64.0],[120,102,64,64.0],[120,102,65,64.0],[120,102,66,64.0],[120,102,67,64.0],[120,102,68,64.0],[120,102,69,64.0],[120,102,70,64.0],[120,102,71,64.0],[120,102,72,64.0],[120,102,73,64.0],[120,102,74,64.0],[120,102,75,64.0],[120,102,76,64.0],[120,102,77,64.0],[120,102,78,64.0],[120,102,79,64.0],[120,103,64,64.0],[120,103,65,64.0],[120,103,66,64.0],[120,103,67,64.0],[120,103,68,64.0],[120,103,69,64.0],[120,103,70,64.0],[120,103,71,64.0],[120,103,72,64.0],[120,103,73,64.0],[120,103,74,64.0],[120,103,75,64.0],[120,103,76,64.0],[120,103,77,64.0],[120,103,78,64.0],[120,103,79,64.0],[120,104,64,64.0],[120,104,65,64.0],[120,104,66,64.0],[120,104,67,64.0],[120,104,68,64.0],[120,104,69,64.0],[120,104,70,64.0],[120,104,71,64.0],[120,104,72,64.0],[120,104,73,64.0],[120,104,74,64.0],[120,104,75,64.0],[120,104,76,64.0],[120,104,77,64.0],[120,104,78,64.0],[120,104,79,64.0],[120,105,64,64.0],[120,105,65,64.0],[120,105,66,64.0],[120,105,67,64.0],[120,105,68,64.0],[120,105,69,64.0],[120,105,70,64.0],[120,105,71,64.0],[120,105,72,64.0],[120,105,73,64.0],[120,105,74,64.0],[120,105,75,64.0],[120,105,76,64.0],[120,105,77,64.0],[120,105,78,64.0],[120,105,79,64.0],[120,106,64,64.0],[120,106,65,64.0],[120,106,66,64.0],[120,106,67,64.0],[120,106,68,64.0],[120,106,69,64.0],[120,106,70,64.0],[120,106,71,64.0],[120,106,72,64.0],[120,106,73,64.0],[120,106,74,64.0],[120,106,75,64.0],[120,106,76,64.0],[120,106,77,64.0],[120,106,78,64.0],[120,106,79,64.0],[120,107,64,64.0],[120,107,65,64.0],[120,107,66,64.0],[120,107,67,64.0],[120,107,68,64.0],[120,107,69,64.0],[120,107,70,64.0],[120,107,71,64.0],[120,107,72,64.0],[120,107,73,64.0],[120,107,74,64.0],[120,107,75,64.0],[120,107,76,64.0],[120,107,77,64.0],[120,107,78,64.0],[120,107,79,64.0],[120,108,64,64.0],[120,108,65,64.0],[120,108,66,64.0],[120,108,67,64.0],[120,108,68,64.0],[120,108,69,64.0],[120,108,70,64.0],[120,108,71,64.0],[120,108,72,64.0],[120,108,73,64.0],[120,108,74,64.0],[120,108,75,64.0],[120,108,76,64.0],[120,108,77,64.0],[120,108,78,64.0],[120,108,79,64.0],[120,109,64,64.0],[120,109,65,64.0],[120,109,66,64.0],[120,109,67,64.0],[120,109,68,64.0],[120,109,69,64.0],[120,109,70,64.0],[120,109,71,64.0],[120,109,72,64.0],[120,109,73,64.0],[120,109,74,64.0],[120,109,75,64.0],[120,109,76,64.0],[120,109,77,64.0],[120,109,78,64.0],[120,109,79,64.0],[120,110,64,64.0],[120,110,65,64.0],[120,110,66,64.0],[120,110,67,64.0],[120,110,68,64.0],[120,110,69,64.0],[120,110,70,64.0],[120,110,71,64.0],[120,110,72,64.0],[120,110,73,64.0],[120,110,74,64.0],[120,110,75,64.0],[120,110,76,64.0],[120,110,77,64.0],[120,110,78,64.0],[120,110,79,64.0],[120,111,64,64.0],[120,111,65,64.0],[120,111,66,64.0],[120,111,67,64.0],[120,111,68,64.0],[120,111,69,64.0],[120,111,70,64.0],[120,111,71,64.0],[120,111,72,64.0],[120,111,73,64.0],[120,111,74,64.0],[120,111,75,64.0],[120,111,76,64.0],[120,111,77,64.0],[120,111,78,64.0],[120,111,79,64.0],[120,112,64,64.0],[120,112,65,64.0],[120,112,66,64.0],[120,112,67,64.0],[120,112,68,64.0],[120,112,69,64.0],[120,112,70,64.0],[120,112,71,64.0],[120,112,72,64.0],[120,112,73,64.0],[120,112,74,64.0],[120,112,75,64.0],[120,112,76,64.0],[120,112,77,64.0],[120,112,78,64.0],[120,112,79,64.0],[120,113,64,64.0],[120,113,65,64.0],[120,113,66,64.0],[120,113,67,64.0],[120,113,68,64.0],[120,113,69,64.0],[120,113,70,64.0],[120,113,71,64.0],[120,113,72,64.0],[120,113,73,64.0],[120,113,74,64.0],[120,113,75,64.0],[120,113,76,64.0],[120,113,77,64.0],[120,113,78,64.0],[120,113,79,64.0],[120,114,64,64.0],[120,114,65,64.0],[120,114,66,64.0],[120,114,67,64.0],[120,114,68,64.0],[120,114,69,64.0],[120,114,70,64.0],[120,114,71,64.0],[120,114,72,64.0],[120,114,73,64.0],[120,114,74,64.0],[120,114,75,64.0],[120,114,76,64.0],[120,114,77,64.0],[120,114,78,64.0],[120,114,79,64.0],[120,115,64,64.0],[120,115,65,64.0],[120,115,66,64.0],[120,115,67,64.0],[120,115,68,64.0],[120,115,69,64.0],[120,115,70,64.0],[120,115,71,64.0],[120,115,72,64.0],[120,115,73,64.0],[120,115,74,64.0],[120,115,75,64.0],[120,115,76,64.0],[120,115,77,64.0],[120,115,78,64.0],[120,115,79,64.0],[120,116,64,64.0],[120,116,65,64.0],[120,116,66,64.0],[120,116,67,64.0],[120,116,68,64.0],[120,116,69,64.0],[120,116,70,64.0],[120,116,71,64.0],[120,116,72,64.0],[120,116,73,64.0],[120,116,74,64.0],[120,116,75,64.0],[120,116,76,64.0],[120,116,77,64.0],[120,116,78,64.0],[120,116,79,64.0],[120,117,64,64.0],[120,117,65,64.0],[120,117,66,64.0],[120,117,67,64.0],[120,117,68,64.0],[120,117,69,64.0],[120,117,70,64.0],[120,117,71,64.0],[120,117,72,64.0],[120,117,73,64.0],[120,117,74,64.0],[120,117,75,64.0],[120,117,76,64.0],[120,117,77,64.0],[120,117,78,64.0],[120,117,79,64.0],[120,118,64,64.0],[120,118,65,64.0],[120,118,66,64.0],[120,118,67,64.0],[120,118,68,64.0],[120,118,69,64.0],[120,118,70,64.0],[120,118,71,64.0],[120,118,72,64.0],[120,118,73,64.0],[120,118,74,64.0],[120,118,75,64.0],[120,118,76,64.0],[120,118,77,64.0],[120,118,78,64.0],[120,118,79,64.0],[120,119,64,64.0],[120,119,65,64.0],[120,119,66,64.0],[120,119,67,64.0],[120,119,68,64.0],[120,119,69,64.0],[120,119,70,64.0],[120,119,71,64.0],[120,119,72,64.0],[120,119,73,64.0],[120,119,74,64.0],[120,119,75,64.0],[120,119,76,64.0],[120,119,77,64.0],[120,119,78,64.0],[120,119,79,64.0],[120,120,64,64.0],[120,120,65,64.0],[120,120,66,64.0],[120,120,67,64.0],[120,120,68,64.0],[120,120,69,64.0],[120,120,70,64.0],[120,120,71,64.0],[120,120,72,64.0],[120,120,73,64.0],[120,120,74,64.0],[120,120,75,64.0],[120,120,76,64.0],[120,120,77,64.0],[120,120,78,64.0],[120,120,79,64.0],[120,121,64,64.0],[120,121,65,64.0],[120,121,66,64.0],[120,121,67,64.0],[120,121,68,64.0],[120,121,69,64.0],[120,121,70,64.0],[120,121,71,64.0],[120,121,72,64.0],[120,121,73,64.0],[120,121,74,64.0],[120,121,75,64.0],[120,121,76,64.0],[120,121,77,64.0],[120,121,78,64.0],[120,121,79,64.0],[120,122,64,64.0],[120,122,65,64.0],[120,122,66,64.0],[120,122,67,64.0],[120,122,68,64.0],[120,122,69,64.0],[120,122,70,64.0],[120,122,71,64.0],[120,122,72,64.0],[120,122,73,64.0],[120,122,74,64.0],[120,122,75,64.0],[120,122,76,64.0],[120,122,77,64.0],[120,122,78,64.0],[120,122,79,64.0],[120,123,64,64.0],[120,123,65,64.0],[120,123,66,64.0],[120,123,67,64.0],[120,123,68,64.0],[120,123,69,64.0],[120,123,70,64.0],[120,123,71,64.0],[120,123,72,64.0],[120,123,73,64.0],[120,123,74,64.0],[120,123,75,64.0],[120,123,76,64.0],[120,123,77,64.0],[120,123,78,64.0],[120,123,79,64.0],[120,124,64,64.0],[120,124,65,64.0],[120,124,66,64.0],[120,124,67,64.0],[120,124,68,64.0],[120,124,69,64.0],[120,124,70,64.0],[120,124,71,64.0],[120,124,72,64.0],[120,124,73,64.0],[120,124,74,64.0],[120,124,75,64.0],[120,124,76,64.0],[120,124,77,64.0],[120,124,78,64.0],[120,124,79,64.0],[120,125,64,64.0],[120,125,65,64.0],[120,125,66,64.0],[120,125,67,64.0],[120,125,68,64.0],[120,125,69,64.0],[120,125,70,64.0],[120,125,71,64.0],[120,125,72,64.0],[120,125,73,64.0],[120,125,74,64.0],[120,125,75,64.0],[120,125,76,64.0],[120,125,77,64.0],[120,125,78,64.0],[120,125,79,64.0],[120,126,64,64.0],[120,126,65,64.0],[120,126,66,64.0],[120,126,67,64.0],[120,126,68,64.0],[120,126,69,64.0],[120,126,70,64.0],[120,126,71,64.0],[120,126,72,64.0],[120,126,73,64.0],[120,126,74,64.0],[120,126,75,64.0],[120,126,76,64.0],[120,126,77,64.0],[120,126,78,64.0],[120,126,79,64.0],[120,127,64,64.0],[120,127,65,64.0],[120,127,66,64.0],[120,127,67,64.0],[120,127,68,64.0],[120,127,69,64.0],[120,127,70,64.0],[120,127,71,64.0],[120,127,72,64.0],[120,127,73,64.0],[120,127,74,64.0],[120,127,75,64.0],[120,127,76,64.0],[120,127,77,64.0],[120,127,78,64.0],[120,127,79,64.0],[120,128,64,64.0],[120,128,65,64.0],[120,128,66,64.0],[120,128,67,64.0],[120,128,68,64.0],[120,128,69,64.0],[120,128,70,64.0],[120,128,71,64.0],[120,128,72,64.0],[120,128,73,64.0],[120,128,74,64.0],[120,128,75,64.0],[120,128,76,64.0],[120,128,77,64.0],[120,128,78,64.0],[120,128,79,64.0],[120,129,64,64.0],[120,129,65,64.0],[120,129,66,64.0],[120,129,67,64.0],[120,129,68,64.0],[120,129,69,64.0],[120,129,70,64.0],[120,129,71,64.0],[120,129,72,64.0],[120,129,73,64.0],[120,129,74,64.0],[120,129,75,64.0],[120,129,76,64.0],[120,129,77,64.0],[120,129,78,64.0],[120,129,79,64.0],[120,130,64,64.0],[120,130,65,64.0],[120,130,66,64.0],[120,130,67,64.0],[120,130,68,64.0],[120,130,69,64.0],[120,130,70,64.0],[120,130,71,64.0],[120,130,72,64.0],[120,130,73,64.0],[120,130,74,64.0],[120,130,75,64.0],[120,130,76,64.0],[120,130,77,64.0],[120,130,78,64.0],[120,130,79,64.0],[120,131,64,64.0],[120,131,65,64.0],[120,131,66,64.0],[120,131,67,64.0],[120,131,68,64.0],[120,131,69,64.0],[120,131,70,64.0],[120,131,71,64.0],[120,131,72,64.0],[120,131,73,64.0],[120,131,74,64.0],[120,131,75,64.0],[120,131,76,64.0],[120,131,77,64.0],[120,131,78,64.0],[120,131,79,64.0],[120,132,64,64.0],[120,132,65,64.0],[120,132,66,64.0],[120,132,67,64.0],[120,132,68,64.0],[120,132,69,64.0],[120,132,70,64.0],[120,132,71,64.0],[120,132,72,64.0],[120,132,73,64.0],[120,132,74,64.0],[120,132,75,64.0],[120,132,76,64.0],[120,132,77,64.0],[120,132,78,64.0],[120,132,79,64.0],[120,133,64,64.0],[120,133,65,64.0],[120,133,66,64.0],[120,133,67,64.0],[120,133,68,64.0],[120,133,69,64.0],[120,133,70,64.0],[120,133,71,64.0],[120,133,72,64.0],[120,133,73,64.0],[120,133,74,64.0],[120,133,75,64.0],[120,133,76,64.0],[120,133,77,64.0],[120,133,78,64.0],[120,133,79,64.0],[120,134,64,64.0],[120,134,65,64.0],[120,134,66,64.0],[120,134,67,64.0],[120,134,68,64.0],[120,134,69,64.0],[120,134,70,64.0],[120,134,71,64.0],[120,134,72,64.0],[120,134,73,64.0],[120,134,74,64.0],[120,134,75,64.0],[120,134,76,64.0],[120,134,77,64.0],[120,134,78,64.0],[120,134,79,64.0],[120,135,64,64.0],[120,135,65,64.0],[120,135,66,64.0],[120,135,67,64.0],[120,135,68,64.0],[120,135,69,64.0],[120,135,70,64.0],[120,135,71,64.0],[120,135,72,64.0],[120,135,73,64.0],[120,135,74,64.0],[120,135,75,64.0],[120,135,76,64.0],[120,135,77,64.0],[120,135,78,64.0],[120,135,79,64.0],[120,136,64,64.0],[120,136,65,64.0],[120,136,66,64.0],[120,136,67,64.0],[120,136,68,64.0],[120,136,69,64.0],[120,136,70,64.0],[120,136,71,64.0],[120,136,72,64.0],[120,136,73,64.0],[120,136,74,64.0],[120,136,75,64.0],[120,136,76,64.0],[120,136,77,64.0],[120,136,78,64.0],[120,136,79,64.0],[120,137,64,64.0],[120,137,65,64.0],[120,137,66,64.0],[120,137,67,64.0],[120,137,68,64.0],[120,137,69,64.0],[120,137,70,64.0],[120,137,71,64.0],[120,137,72,64.0],[120,137,73,64.0],[120,137,74,64.0],[120,137,75,64.0],[120,137,76,64.0],[120,137,77,64.0],[120,137,78,64.0],[120,137,79,64.0],[120,138,64,64.0],[120,138,65,64.0],[120,138,66,64.0],[120,138,67,64.0],[120,138,68,64.0],[120,138,69,64.0],[120,138,70,64.0],[120,138,71,64.0],[120,138,72,64.0],[120,138,73,64.0],[120,138,74,64.0],[120,138,75,64.0],[120,138,76,64.0],[120,138,77,64.0],[120,138,78,64.0],[120,138,79,64.0],[120,139,64,64.0],[120,139,65,64.0],[120,139,66,64.0],[120,139,67,64.0],[120,139,68,64.0],[120,139,69,64.0],[120,139,70,64.0],[120,139,71,64.0],[120,139,72,64.0],[120,139,73,64.0],[120,139,74,64.0],[120,139,75,64.0],[120,139,76,64.0],[120,139,77,64.0],[120,139,78,64.0],[120,139,79,64.0],[120,140,64,64.0],[120,140,65,64.0],[120,140,66,64.0],[120,140,67,64.0],[120,140,68,64.0],[120,140,69,64.0],[120,140,70,64.0],[120,140,71,64.0],[120,140,72,64.0],[120,140,73,64.0],[120,140,74,64.0],[120,140,75,64.0],[120,140,76,64.0],[120,140,77,64.0],[120,140,78,64.0],[120,140,79,64.0],[120,141,64,64.0],[120,141,65,64.0],[120,141,66,64.0],[120,141,67,64.0],[120,141,68,64.0],[120,141,69,64.0],[120,141,70,64.0],[120,141,71,64.0],[120,141,72,64.0],[120,141,73,64.0],[120,141,74,64.0],[120,141,75,64.0],[120,141,76,64.0],[120,141,77,64.0],[120,141,78,64.0],[120,141,79,64.0],[120,142,64,64.0],[120,142,65,64.0],[120,142,66,64.0],[120,142,67,64.0],[120,142,68,64.0],[120,142,69,64.0],[120,142,70,64.0],[120,142,71,64.0],[120,142,72,64.0],[120,142,73,64.0],[120,142,74,64.0],[120,142,75,64.0],[120,142,76,64.0],[120,142,77,64.0],[120,142,78,64.0],[120,142,79,64.0],[120,143,64,64.0],[120,143,65,64.0],[120,143,66,64.0],[120,143,67,64.0],[120,143,68,64.0],[120,143,69,64.0],[120,143,70,64.0],[120,143,71,64.0],[120,143,72,64.0],[120,143,73,64.0],[120,143,74,64.0],[120,143,75,64.0],[120,143,76,64.0],[120,143,77,64.0],[120,143,78,64.0],[120,143,79,64.0],[120,144,64,64.0],[120,144,65,64.0],[120,144,66,64.0],[120,144,67,64.0],[120,144,68,64.0],[120,144,69,64.0],[120,144,70,64.0],[120,144,71,64.0],[120,144,72,64.0],[120,144,73,64.0],[120,144,74,64.0],[120,144,75,64.0],[120,144,76,64.0],[120,144,77,64.0],[120,144,78,64.0],[120,144,79,64.0],[120,145,64,64.0],[120,145,65,64.0],[120,145,66,64.0],[120,145,67,64.0],[120,145,68,64.0],[120,145,69,64.0],[120,145,70,64.0],[120,145,71,64.0],[120,145,72,64.0],[120,145,73,64.0],[120,145,74,64.0],[120,145,75,64.0],[120,145,76,64.0],[120,145,77,64.0],[120,145,78,64.0],[120,145,79,64.0],[120,146,64,64.0],[120,146,65,64.0],[120,146,66,64.0],[120,146,67,64.0],[120,146,68,64.0],[120,146,69,64.0],[120,146,70,64.0],[120,146,71,64.0],[120,146,72,64.0],[120,146,73,64.0],[120,146,74,64.0],[120,146,75,64.0],[120,146,76,64.0],[120,146,77,64.0],[120,146,78,64.0],[120,146,79,64.0],[120,147,64,64.0],[120,147,65,64.0],[120,147,66,64.0],[120,147,67,64.0],[120,147,68,64.0],[120,147,69,64.0],[120,147,70,64.0],[120,147,71,64.0],[120,147,72,64.0],[120,147,73,64.0],[120,147,74,64.0],[120,147,75,64.0],[120,147,76,64.0],[120,147,77,64.0],[120,147,78,64.0],[120,147,79,64.0],[120,148,64,64.0],[120,148,65,64.0],[120,148,66,64.0],[120,148,67,64.0],[120,148,68,64.0],[120,148,69,64.0],[120,148,70,64.0],[120,148,71,64.0],[120,148,72,64.0],[120,148,73,64.0],[120,148,74,64.0],[120,148,75,64.0],[120,148,76,64.0],[120,148,77,64.0],[120,148,78,64.0],[120,148,79,64.0],[120,149,64,64.0],[120,149,65,64.0],[120,149,66,64.0],[120,149,67,64.0],[120,149,68,64.0],[120,149,69,64.0],[120,149,70,64.0],[120,149,71,64.0],[120,149,72,64.0],[120,149,73,64.0],[120,149,74,64.0],[120,149,75,64.0],[120,149,76,64.0],[120,149,77,64.0],[120,149,78,64.0],[120,149,79,64.0],[120,150,64,64.0],[120,150,65,64.0],[120,150,66,64.0],[120,150,67,64.0],[120,150,68,64.0],[120,150,69,64.0],[120,150,70,64.0],[120,150,71,64.0],[120,150,72,64.0],[120,150,73,64.0],[120,150,74,64.0],[120,150,75,64.0],[120,150,76,64.0],[120,150,77,64.0],[120,150,78,64.0],[120,150,79,64.0],[120,151,64,64.0],[120,151,65,64.0],[120,151,66,64.0],[120,151,67,64.0],[120,151,68,64.0],[120,151,69,64.0],[120,151,70,64.0],[120,151,71,64.0],[120,151,72,64.0],[120,151,73,64.0],[120,151,74,64.0],[120,151,75,64.0],[120,151,76,64.0],[120,151,77,64.0],[120,151,78,64.0],[120,151,79,64.0],[120,152,64,64.0],[120,152,65,64.0],[120,152,66,64.0],[120,152,67,64.0],[120,152,68,64.0],[120,152,69,64.0],[120,152,70,64.0],[120,152,71,64.0],[120,152,72,64.0],[120,152,73,64.0],[120,152,74,64.0],[120,152,75,64.0],[120,152,76,64.0],[120,152,77,64.0],[120,152,78,64.0],[120,152,79,64.0],[120,153,64,64.0],[120,153,65,64.0],[120,153,66,64.0],[120,153,67,64.0],[120,153,68,64.0],[120,153,69,64.0],[120,153,70,64.0],[120,153,71,64.0],[120,153,72,64.0],[120,153,73,64.0],[120,153,74,64.0],[120,153,75,64.0],[120,153,76,64.0],[120,153,77,64.0],[120,153,78,64.0],[120,153,79,64.0],[120,154,64,64.0],[120,154,65,64.0],[120,154,66,64.0],[120,154,67,64.0],[120,154,68,64.0],[120,154,69,64.0],[120,154,70,64.0],[120,154,71,64.0],[120,154,72,64.0],[120,154,73,64.0],[120,154,74,64.0],[120,154,75,64.0],[120,154,76,64.0],[120,154,77,64.0],[120,154,78,64.0],[120,154,79,64.0],[120,155,64,64.0],[120,155,65,64.0],[120,155,66,64.0],[120,155,67,64.0],[120,155,68,64.0],[120,155,69,64.0],[120,155,70,64.0],[120,155,71,64.0],[120,155,72,64.0],[120,155,73,64.0],[120,155,74,64.0],[120,155,75,64.0],[120,155,76,64.0],[120,155,77,64.0],[120,155,78,64.0],[120,155,79,64.0],[120,156,64,64.0],[120,156,65,64.0],[120,156,66,64.0],[120,156,67,64.0],[120,156,68,64.0],[120,156,69,64.0],[120,156,70,64.0],[120,156,71,64.0],[120,156,72,64.0],[120,156,73,64.0],[120,156,74,64.0],[120,156,75,64.0],[120,156,76,64.0],[120,156,77,64.0],[120,156,78,64.0],[120,156,79,64.0],[120,157,64,64.0],[120,157,65,64.0],[120,157,66,64.0],[120,157,67,64.0],[120,157,68,64.0],[120,157,69,64.0],[120,157,70,64.0],[120,157,71,64.0],[120,157,72,64.0],[120,157,73,64.0],[120,157,74,64.0],[120,157,75,64.0],[120,157,76,64.0],[120,157,77,64.0],[120,157,78,64.0],[120,157,79,64.0],[120,158,64,64.0],[120,158,65,64.0],[120,158,66,64.0],[120,158,67,64.0],[120,158,68,64.0],[120,158,69,64.0],[120,158,70,64.0],[120,158,71,64.0],[120,158,72,64.0],[120,158,73,64.0],[120,158,74,64.0],[120,158,75,64.0],[120,158,76,64.0],[120,158,77,64.0],[120,158,78,64.0],[120,158,79,64.0],[120,159,64,64.0],[120,159,65,64.0],[120,159,66,64.0],[120,159,67,64.0],[120,159,68,64.0],[120,159,69,64.0],[120,159,70,64.0],[120,159,71,64.0],[120,159,72,64.0],[120,159,73,64.0],[120,159,74,64.0],[120,159,75,64.0],[120,159,76,64.0],[120,159,77,64.0],[120,159,78,64.0],[120,159,79,64.0],[120,160,64,64.0],[120,160,65,64.0],[120,160,66,64.0],[120,160,67,64.0],[120,160,68,64.0],[120,160,69,64.0],[120,160,70,64.0],[120,160,71,64.0],[120,160,72,64.0],[120,160,73,64.0],[120,160,74,64.0],[120,160,75,64.0],[120,160,76,64.0],[120,160,77,64.0],[120,160,78,64.0],[120,160,79,64.0],[120,161,64,64.0],[120,161,65,64.0],[120,161,66,64.0],[120,161,67,64.0],[120,161,68,64.0],[120,161,69,64.0],[120,161,70,64.0],[120,161,71,64.0],[120,161,72,64.0],[120,161,73,64.0],[120,161,74,64.0],[120,161,75,64.0],[120,161,76,64.0],[120,161,77,64.0],[120,161,78,64.0],[120,161,79,64.0],[120,162,64,64.0],[120,162,65,64.0],[120,162,66,64.0],[120,162,67,64.0],[120,162,68,64.0],[120,162,69,64.0],[120,162,70,64.0],[120,162,71,64.0],[120,162,72,64.0],[120,162,73,64.0],[120,162,74,64.0],[120,162,75,64.0],[120,162,76,64.0],[120,162,77,64.0],[120,162,78,64.0],[120,162,79,64.0],[120,163,64,64.0],[120,163,65,64.0],[120,163,66,64.0],[120,163,67,64.0],[120,163,68,64.0],[120,163,69,64.0],[120,163,70,64.0],[120,163,71,64.0],[120,163,72,64.0],[120,163,73,64.0],[120,163,74,64.0],[120,163,75,64.0],[120,163,76,64.0],[120,163,77,64.0],[120,163,78,64.0],[120,163,79,0.5410778140606962],[120,164,64,64.0],[120,164,65,64.0],[120,164,66,64.0],[120,164,67,64.0],[120,164,68,64.0],[120,164,69,64.0],[120,164,70,64.0],[120,164,71,64.0],[120,164,72,64.0],[120,164,73,64.0],[120,164,74,64.0],[120,164,75,64.0],[120,164,76,64.0],[120,164,77,0.44949299002787546],[120,164,78,0.4993410887833914],[120,164,79,0.5454293614104186],[120,165,64,64.0],[120,165,65,64.0],[120,165,66,64.0],[120,165,67,64.0],[120,165,68,64.0],[120,165,69,64.0],[120,165,70,64.0],[120,165,71,64.0],[120,165,72,64.0],[120,165,73,64.0],[120,165,74,64.0],[120,165,75,64.0],[120,165,76,0.4018267457870673],[120,165,77,0.45481180027727286],[120,165,78,0.5047221503855854],[120,165,79,0.5508320122097096],[120,166,64,64.0],[120,166,65,64.0],[120,166,66,64.0],[120,166,67,64.0],[120,166,68,64.0],[120,166,69,64.0],[120,166,70,64.0],[120,166,71,64.0],[120,166,72,64.0],[120,166,73,64.0],[120,166,74,64.0],[120,166,75,0.35339484366397605],[120,166,76,0.4085844982405763],[120,166,77,0.4615123198842278],[120,166,78,0.5113301072314217],[120,166,79,0.5573086622400079],[120,167,64,64.0],[120,167,65,64.0],[120,167,66,64.0],[120,167,67,64.0],[120,167,68,64.0],[120,167,69,64.0],[120,167,70,64.0],[120,167,71,64.0],[120,167,72,64.0],[120,167,73,64.0],[120,167,74,0.30547988081281063],[120,167,75,0.36183687829211775],[120,167,76,0.4168552353152009],[120,167,77,0.4695804194878926],[120,167,78,0.5191612638162586],[120,167,79,0.5648662344588278],[120,168,64,64.0],[120,168,65,64.0],[120,168,66,64.0],[120,168,67,64.0],[120,168,68,64.0],[120,168,69,64.0],[120,168,70,64.0],[120,168,71,64.0],[120,168,72,64.0],[120,168,73,0.25885629317145953],[120,168,74,0.3157996531324798],[120,168,75,0.37187988711161113],[120,168,76,0.4265930229562949],[120,168,77,0.47898186887242583],[120,168,78,0.5281933037210427],[120,168,79,0.5734944650888154],[120,169,64,64.0],[120,169,65,64.0],[120,169,66,64.0],[120,169,67,64.0],[120,169,68,64.0],[120,169,69,64.0],[120,169,70,64.0],[120,169,71,64.0],[120,169,72,0.21368903289069802],[120,169,73,0.2711900059936516],[120,169,74,0.327760026543345],[120,169,75,0.38344280785686313],[120,169,76,0.4377295867041586],[120,169,77,0.4896614288417528],[120,169,78,0.5383841906927822],[120,169,79,0.5831646058964601],[120,170,64,64.0],[120,170,65,64.0],[120,170,66,64.0],[120,170,67,64.0],[120,170,68,64.0],[120,170,69,64.0],[120,170,70,64.0],[120,170,71,0.1701516771557835],[120,170,72,0.22811197159553978],[120,170,73,0.2851516327768258],[120,170,74,0.3412421003692349],[120,170,75,0.3964204021311976],[120,170,76,0.4501736430069793],[120,170,77,0.5015419775669413],[120,170,78,0.5496710806576587],[120,170,79,0.5938281134613844],[120,171,64,64.0],[120,171,65,64.0],[120,171,66,64.0],[120,171,67,64.0],[120,171,68,64.0],[120,171,69,64.0],[120,171,70,0.1284363919454016],[120,171,71,0.18667256507594482],[120,171,72,0.24409485624002492],[120,171,73,0.3005823816917893],[120,171,74,0.3561014392588446],[120,171,75,0.4106828874667507],[120,171,76,0.4638103139476573],[120,171,77,0.5145236971127638],[120,171,78,0.5619692701396696],[120,171,79,0.6054153506776798],[120,172,64,64.0],[120,172,65,64.0],[120,172,66,64.0],[120,172,67,64.0],[120,172,68,0.030082984658573175],[120,172,69,0.08872668275018447],[120,172,70,0.1469923753672831],[120,172,71,0.20462789856703123],[120,172,72,0.2614375856048523],[120,172,73,0.31729705818343695],[120,172,74,0.3721680129201576],[120,172,75,0.42607564986884616],[120,172,76,0.47850060014906853],[120,172,77,0.5284832951650799],[120,172,78,0.5751711563611466],[120,172,79,0.6178342760159006],[120,173,64,64.0],[120,173,65,64.0],[120,173,66,64.0],[120,173,67,0.05578140418712298],[120,173,68,0.05117239878229363],[120,173,69,0.10917952074993664],[120,173,70,0.16679837334807154],[120,173,71,0.22377553675618655],[120,173,72,0.2799133108134054],[120,173,73,0.3350843416742125],[120,173,74,0.3892462376752883],[120,173,75,0.4424190366676796],[120,173,76,0.49408091168236534],[120,173,77,0.5432732617853797],[120,173,78,0.5891452088532195],[120,173,79,0.6309691203754914],[120,174,64,64.0],[120,174,65,64.0],[120,174,66,0.10788449076362992],[120,174,67,0.09645146208687075],[120,174,68,0.08600767270422832],[120,174,69,0.13063861003641014],[120,174,70,0.18757021557974457],[120,174,71,0.24384679880537796],[120,174,72,0.2992690760293931],[120,174,73,0.35370718470130613],[120,174,74,0.4071151198355817],[120,174,75,0.4595082296771611],[120,174,76,0.5103626569781572],[120,174,77,0.55872116119234],[120,174,78,0.603734952576086],[120,174,79,0.6446790515275167],[120,175,64,64.0],[120,175,65,0.16315737191359084],[120,175,66,0.14772337391009574],[120,175,67,0.13329721466840622],[120,175,68,0.11974435575091572],[120,175,69,0.15277854598862967],[120,175,70,0.20899797713229334],[120,175,71,0.26454749279072076],[120,175,72,0.3192266012012264],[120,175,73,0.37290333448730933],[120,175,74,0.425528500896702],[120,175,75,0.4771131986606472],[120,175,76,0.5271318897403192],[120,175,77,0.5746289585701456],[120,175,78,0.6187579625488409],[120,175,79,0.6587968261474593],[120,176,64,0.22105441280016022],[120,176,65,0.20191106061046715],[120,176,66,0.18367014290917844],[120,176,67,0.166304898864843],[120,176,68,0.14970673983353255],[120,176,69,0.17524955182902074],[120,176,70,0.2307474165043491],[120,176,71,0.28555910514945404],[120,176,72,0.3394832068536458],[120,176,73,0.39238597694482535],[120,176,74,0.44421540455419095],[120,176,75,0.4949787351040368],[120,176,76,0.5441490138628842],[120,176,77,0.5907723819040194],[120,176,78,0.6340048699893018],[120,176,79,0.6731274294384972],[120,177,64,0.25855509619953854],[120,177,65,0.23681296245573652],[120,177,66,0.21582713635071515],[120,177,67,0.19559493103774395],[120,177,68,0.17603288451344928],[120,177,69,0.1978062261856114],[120,177,70,0.25258316398064007],[120,177,71,0.30665607825257546],[120,177,72,0.35982286607412717],[120,177,73,0.4119482887948748],[120,177,74,0.4629778582063072],[120,177,75,0.5129153582407677],[120,177,76,0.5612326373775965],[120,177,77,0.60697763733119],[120,177,78,0.6493089033249263],[120,177,79,0.687510456918065],[120,178,64,0.292375445560948],[120,178,65,0.2681025778481595],[120,178,66,0.24445039179051614],[120,178,67,0.2214393085562581],[120,178,68,0.1990099697952097],[120,178,69,0.22077931806283477],[120,178,70,0.27482093651505485],[120,178,71,0.32813729284867144],[120,178,72,0.3805259244732177],[120,178,73,0.4318505200224766],[120,178,74,0.48205462790840514],[120,178,75,0.5311391649717612],[120,178,76,0.578575177923749],[120,178,77,0.6234125922377933],[120,178,78,0.6648126531040134],[120,178,79,0.7020626458968521],[120,179,64,0.3229143902462136],[120,179,65,0.29619395267284565],[120,179,66,0.269968275417552],[120,179,67,0.2442797365507539],[120,179,68,0.21909188334380209],[120,179,69,0.24455898881019408],[120,179,70,0.29783307496936534],[120,179,71,0.3503554029819584],[120,179,72,0.4019236159156756],[120,179,73,0.45240091716178465],[120,179,74,0.5017296050593796],[120,179,75,0.5499085529966098],[120,179,76,0.5964086038480283],[120,179,77,0.640282018142019],[120,179,78,0.6806930984440727],[120,179,79,0.7169327632030446],[120,180,64,0.3504846434842456],[120,180,65,0.32141388482368827],[120,180,66,0.29272106884587845],[120,180,67,0.26446921049461813],[120,180,68,0.23664340225996527],[120,180,69,0.26939516505281236],[120,180,70,0.3218574100326373],[120,180,71,0.37353476639660543],[120,180,72,0.4242255507296916],[120,180,73,0.47379319819389587],[120,180,74,0.5221796272447401],[120,180,75,0.569382673113098],[120,180,76,0.6148737273151678],[120,180,77,0.6577078564740058],[120,180,78,0.6970528989391015],[120,180,79,0.7322038982546683],[120,181,64,0.37462825498286373],[120,181,65,0.34331997603275843],[120,181,66,0.3122831476581185],[120,181,67,0.28159993551150087],[120,181,68,0.2512754321569946],[120,181,69,0.29541411212501395],[120,181,70,0.3470131818282955],[120,181,71,0.39778666358405407],[120,181,72,0.4475341898732411],[120,181,73,0.49612024029319246],[120,181,74,0.5434873410970493],[120,181,75,0.5896334320495754],[120,181,76,0.6340313161771588],[120,181,77,0.6757394136726105],[120,181,78,0.7139296526527917],[120,181,79,0.7479017693629253],[120,182,64,0.39485298858325596],[120,182,65,0.3614335805845089],[120,182,66,0.32819077217287757],[120,182,67,0.29522426359331183],[120,182,68,0.2713280006627725],[120,182,69,0.32263433768876015],[120,182,70,0.3733163133440303],[120,182,71,0.42312389653429766],[120,182,72,0.4718587267776258],[120,182,73,0.5193872051374051],[120,182,74,0.565653534315716],[120,182,75,0.6106569975342372],[120,182,76,0.6538727423930596],[120,182,77,0.694363128125754],[120,182,78,0.7313047619635582],[120,182,79,0.7640026743421535],[120,183,64,0.41083881224518104],[120,183,65,0.37544526453470795],[120,183,66,0.34014601643046805],[120,183,67,0.30505660355597786],[120,183,68,0.3005856188787904],[120,183,69,0.35098174961235645],[120,183,70,0.4006939649590367],[120,183,71,0.44947469787006245],[120,183,72,0.497128311135324],[120,183,73,0.543524039796514],[120,183,74,0.5886088787432966],[120,183,75,0.6323847514873235],[120,183,76,0.6743301169527365],[120,183,77,0.7135118630244145],[120,183,78,0.7491118654682138],[120,183,79,0.7804410477605888],[120,184,64,0.42244305681570793],[120,184,65,0.3852198199342063],[120,184,66,0.34802161189341924],[120,184,67,0.31097807166354813],[120,184,68,0.33085762138312635],[120,184,69,0.3803040681090404],[120,184,70,0.4289983700682017],[120,184,71,0.47669595036351764],[120,184,72,0.5232046146317938],[120,184,73,0.5683973532001528],[120,184,74,0.6122250844979946],[120,184,75,0.6546936913359294],[120,184,76,0.6952859113042459],[120,184,77,0.7330737251299968],[120,184,78,0.7672448359440415],[120,184,79,0.7971166248316902],[120,185,64,0.42970610840635964],[120,185,65,0.39080183075061414],[120,185,66,0.35186636042647523],[120,185,67,0.31304172858533197],[120,185,68,0.3619204144721324],[120,185,69,0.41038449213615985],[120,185,70,0.4580199518039372],[120,185,71,0.5045857168361877],[120,185,72,0.5498937386218803],[120,185,73,0.5938216681841372],[120,185,74,0.6363254651629487],[120,185,75,0.6774162794520007],[120,185,76,0.7165820652854],[120,185,77,0.7529004094555927],[120,185,78,0.7855653443697502],[120,185,79,0.8139012119464911],[120,186,64,0.4328576343777457],[120,186,65,0.39242179048711967],[120,186,66,0.35191111655547286],[120,186,67,0.34540482229829245],[120,186,68,0.393496874284069],[120,186,69,0.44095462005462305],[120,186,70,0.48749972085533977],[120,186,71,0.5328950804417627],[120,186,72,0.5769574637505266],[120,186,73,0.6195700491158329],[120,186,74,0.6606949140320376],[120,186,75,0.7003497407132481],[120,186,76,0.7380285815592676],[120,186,77,0.7728150698608932],[120,186,78,0.8039099900050831],[120,186,79,0.8306450638467581],[120,187,64,0.4323233429322593],[120,187,65,0.3905027714988779],[120,187,66,0.34857533900538284],[120,187,67,0.3781030692443713],[120,187,68,0.4252689843307372],[120,187,69,0.4717066245481839],[120,187,70,0.5171409543842624],[120,187,71,0.5613392953314003],[120,187,72,0.6041238415174066],[120,187,73,0.6453841050979906],[120,187,74,0.6850892914118438],[120,187,75,0.7232648081866456],[120,187,76,0.7594116065532854],[120,187,77,0.792619715560451],[120,187,78,0.8220969965287998],[120,187,79,0.8471828674386922],[120,188,64,0.42870863257900427],[120,188,65,0.38564451420964707],[120,188,66,0.36387835691118475],[120,188,67,0.41064672043230277],[120,188,68,0.4568897030410298],[120,188,69,0.5023046818033694],[120,188,70,0.5466201560390735],[120,188,71,0.5896082477022738],[120,188,72,0.631097127786198],[120,188,73,0.670983368751747],[120,188,74,0.7092442229804471],[120,188,75,0.7459139169351438],[120,188,76,0.7805009979025883],[120,188,77,0.8121021335458634],[120,188,78,0.839932474235566],[120,188,79,0.8633393322476813],[120,189,64,0.4220900600395252],[120,189,65,0.377930241979545],[120,189,66,0.39669473698495583],[120,189,67,0.4426602977090141],[120,189,68,0.48799406131600737],[120,189,69,0.5323956549496526],[120,189,70,0.5755972970657258],[120,189,71,0.6173762272289968],[120,189,72,0.6575670582381433],[120,189,73,0.6960740505784416],[120,189,74,0.7328833092027133],[120,189,75,0.7680388459472864],[120,189,76,0.8010573783972516],[120,189,77,0.8310423369215856],[120,189,78,0.8572162482914814],[120,189,79,0.8789343875138369],[120,190,64,0.4118801544556297],[120,190,65,0.3829590995705252],[120,190,66,0.4285705864848034],[120,190,67,0.47376064571555837],[120,190,68,0.5182094900950668],[120,190,69,0.5616190317594629],[120,190,70,0.6037253385157318],[120,190,71,0.6443110088775393],[120,190,72,0.6832174657695308],[120,190,73,0.7203571688999089],[120,190,74,0.7557257458017471],[120,190,75,0.7893778081894167],[120,190,76,0.8208386764331571],[120,190,77,0.8492185391541093],[120,190,78,0.8737472530479904],[120,190,79,0.8937879859280964],[120,191,64,0.39762594686235053],[120,191,65,0.414132895356538],[120,191,66,0.4591162805131426],[120,191,67,0.5035668316344545],[120,191,68,0.5471653779340483],[120,191,69,0.5896161166088467],[120,191,70,0.6306590345518408],[120,191,71,0.6700822451024009],[120,191,72,0.707734239833824],[120,191,73,0.7435360553779351],[120,191,74,0.7774933552871789],[120,191,75,0.8096719887810985],[120,191,76,0.8396061529670716],[120,191,77,0.8664126542350548],[120,191,78,0.8893284924146979],[120,191,79,0.9077245140093584],[120,192,64,0.3988438861583651],[120,192,65,0.44355536596462264],[120,192,66,0.48795421688762725],[120,192,67,0.5317092533923231],[120,192,68,0.5745018585948453],[120,192,69,0.6160384766983599],[120,192,70,0.6560630168510048],[120,192,71,0.694369168426641],[120,192,72,0.7308126277280648],[120,192,73,0.7653232361125237],[120,192,74,0.7979170295399305],[120,192,75,0.8286715312934303],[120,192,76,0.8571299149756311],[120,192,77,0.8824153227578864],[120,192,78,0.9037715662908099],[120,192,79,0.9205768091224047],[120,193,64,0.4265811131272071],[120,193,65,0.47086433660137916],[120,193,66,0.5147274137362768],[120,193,67,0.5578379563174296],[120,193,68,0.5998778286461307],[120,193,69,0.640555642533815],[120,193,70,0.6796191601042778],[120,193,71,0.7168676044044253],[120,193,72,0.7521638778232174],[120,193,73,0.7854466883186514],[120,193,74,0.8167425834531714],[120,193,75,0.8461409721699681],[120,193,76,0.8731939154179673],[120,193,77,0.8970304639080116],[120,193,78,0.9169007630549845],[120,193,79,0.9321897831363999],[120,194,64,0.4518239338690371],[120,194,65,0.4957273491069496],[120,194,66,0.5391072967504447],[120,194,67,0.5816301582529622],[120,194,68,0.6229781950760126],[120,194,69,0.6628620626676746],[120,194,70,0.7010332286144033],[120,194,71,0.7372962949668198],[120,194,72,0.7715212247391504],[120,194,73,0.8036554725821834],[120,194,74,0.8337360196300939],[120,194,75,0.8618641232708555],[120,194,76,0.8876004397025364],[120,194,77,0.9100793533667824],[120,194,78,0.928556718114068],[120,194,79,0.9424236527244192],[120,195,64,0.4742764187709213],[120,195,65,0.5178488697872319],[120,195,66,0.5608006760951374],[120,195,67,0.602796983125574],[120,195,68,0.6435203529161544],[120,195,69,0.6826833127006365],[120,195,70,0.7200408039906587],[120,195,71,0.755402532150405],[120,195,72,0.7886452164638622],[120,195,73,0.819724740694564],[120,195,74,0.8486882041381398],[120,195,75,0.8756484025398147],[120,195,76,0.9001740786578261],[120,195,77,0.9214042271290962],[120,195,78,0.9385996385104391],[120,195,79,0.951156776303733],[120,196,64,0.4936876881891966],[120,196,65,0.5369766055540058],[120,196,66,0.579555845199363],[120,196,67,0.6210893328936503],[120,196,68,0.6612598206626132],[120,196,69,0.6997814843566879],[120,196,70,0.7364124179506328],[120,196,71,0.770967024576103],[120,196,72,0.8033283042868475],[120,196,73,0.8334600385564235],[120,196,74,0.8614188715087346],[120,196,75,0.8873285297161259],[120,196,76,0.9107651037729938],[120,196,77,0.9308713261245751],[120,196,78,0.9469120080271385],[120,196,79,0.9582880121498181],[120,197,64,0.5097590753866705],[120,197,65,0.5528045400541699],[120,197,66,0.5950616642507154],[120,197,67,0.6361932230569864],[120,197,68,0.6758820553724852],[120,197,69,0.7138437214978448],[120,197,70,0.7498390534827973],[120,197,71,0.7836865982404296],[120,197,72,0.8152749534274041],[120,197,73,0.8445749960900625],[120,197,74,0.8716520040766876],[120,197,75,0.8966396375752066],[120,197,76,0.9191204764897306],[120,197,77,0.93824023917515],[120,197,78,0.9532669311132791],[120,197,79,0.9636049211491047],[120,198,64,0.5219805746316454],[120,198,65,0.5648032632681121],[120,198,66,0.6067719540766618],[120,198,67,0.6475484790061886],[120,198,68,0.6868157341604175],[120,198,69,0.7242904004161884],[120,198,70,0.759735552256563],[120,198,71,0.7929731548193761],[120,198,72,0.8238964491609159],[120,198,73,0.852482225734652],[120,198,74,0.8788029860852807],[120,198,75,0.9030007521170442],[120,198,76,0.9246639600928381],[120,198,77,0.9429414333528853],[120,198,78,0.9571042812977802],[120,198,79,0.966560071893006],[120,199,64,0.5299203406041709],[120,199,65,0.5725219994577485],[120,199,66,0.614219342506443],[120,199,67,0.6546736046347839],[120,199,68,0.6935677882165937],[120,199,69,0.7306194418469636],[120,199,70,0.7655933217821964],[120,199,71,0.7983139360883141],[120,199,72,0.8286779714978294],[120,199,73,0.856666602974706],[120,199,74,0.8823576859877557],[120,199,75,0.9058995010014705],[120,199,76,0.9268859516350254],[120,199,77,0.9444699522825708],[120,199,78,0.9579263603902405],[120,199,79,0.9666662230202124],[120,200,64,0.5332799702475133],[120,200,65,0.5756462426763528],[120,200,66,0.6170751259996329],[120,200,67,0.6572277242308215],[120,200,68,0.6957872656555594],[120,200,69,0.7324719278319286],[120,200,70,0.7670475385220308],[120,200,71,0.7993401525554745],[120,200,72,0.8292485046244678],[120,200,73,0.8567563380104455],[120,200,74,0.8819446092424806],[120,200,75,0.90496530927756],[120,200,76,0.9254176146744637],[120,200,77,0.9424602275616936],[120,200,78,0.9553729996113853],[120,200,79,0.9635712181271052],[120,201,64,0.5318868982319591],[120,201,65,0.5739899120708072],[120,201,66,0.6151411936979995],[120,201,67,0.655002284787475],[120,201,68,0.6932568218798019],[120,201,69,0.7296233898410126],[120,201,70,0.7638682429476675],[120,201,71,0.7958178935987309],[120,201,72,0.8253715686539659],[120,201,73,0.8525135333987792],[120,201,74,0.8773252831357536],[120,201,75,0.8999596094792773],[120,201,76,0.9200209188663326],[120,201,77,0.9366759653620147],[120,201,78,0.9492113223860498],[120,201,79,0.9570476637885925],[120,202,64,0.5256863766680071],[120,202,65,0.5674871067629321],[120,202,66,0.6083415688442687],[120,202,67,0.6479123959512777],[120,202,68,0.6858838703208492],[120,202,69,0.7219747824314986],[120,202,70,0.7559511476335743],[120,202,71,0.7876387803662555],[120,202,72,0.8169357259610524],[120,202,73,0.8438245500317335],[120,202,74,0.8683844854509268],[120,202,75,0.890765932623517],[120,202,76,0.9105785986121261],[120,202,77,0.9269999907217066],[120,202,78,0.9393255033477808],[120,202,79,0.9469826416507543],[120,203,64,0.5147330390691984],[120,203,65,0.5561834603101322],[120,203,66,0.5967135675680272],[120,203,67,0.6359878076082086],[120,203,68,0.673691393558107],[120,203,69,0.7095431424449276],[120,203,70,0.743308158387262],[120,203,71,0.7748103614412274],[120,203,72,0.8039448621008297],[120,203,73,0.8306901814524957],[120,203,74,0.8551203169840014],[120,203,75,0.8773798801106684],[120,203,76,0.8970840307668345],[120,203,77,0.9134240495281601],[120,203,78,0.9257065235551706],[120,203,79,0.9333674545953797],[120,204,64,0.49918204856435955],[120,204,65,0.5402270947451469],[120,204,66,0.5803985750385535],[120,204,67,0.6193635251074314],[120,204,68,0.6568084148152373],[120,204,69,0.6924519337415452],[120,204,70,0.7260576084158774],[120,204,71,0.7574462512704324],[120,204,72,0.7865082413114197],[120,204,73,0.8132156365089257],[120,204,74,0.837634117905559],[120,204,75,0.8598989765275867],[120,204,76,0.8796310314039042],[120,204,77,0.8960385681913691],[120,204,78,0.9084419219198324],[120,204,79,0.9162874069763293],[120,205,64,0.4792798303593578],[120,205,65,0.5198591741949987],[120,205,66,0.5596324389846724],[120,205,67,0.5982700621227751],[120,205,68,0.6354601298341658],[120,205,69,0.6709210774723737],[120,205,70,0.7044142055292753],[120,205,71,0.7357560113568224],[120,205,72,0.7648303366005207],[120,205,73,0.791600330344596],[120,205,74,0.8161202279690858],[120,205,75,0.838512403353017],[120,205,76,0.8584035716380022],[120,205,77,0.8750223710079179],[120,205,78,0.8877055428460401],[120,205,79,0.8959116189277354],[120,206,64,0.4553543884483776],[120,206,65,0.49540405807914645],[120,206,66,0.534735480581637],[120,206,67,0.5730233311519638],[120,206,68,0.6099576991267261],[120,206,69,0.6452566678889095],[120,206,70,0.6786786923795942],[120,206,71,0.7100347742160464],[120,206,72,0.7392004344159042],[120,206,73,0.7661274837273743],[120,206,74,0.7908555905657008],[120,206,75,0.8134906135654875],[120,206,76,0.8336654125056188],[120,206,77,0.8506323552156025],[120,206,78,0.8637472800820637],[120,206,79,0.8724828747440712],[120,207,64,0.4278052065745895],[120,207,65,0.46725905388672084],[120,207,66,0.5061021227049171],[120,207,67,0.5440141716534723],[120,207,68,0.5806877006038208],[120,207,69,0.615840373690343],[120,207,70,0.6492272197372085],[120,207,71,0.6806526100968449],[120,207,72,0.709982013899733],[120,207,73,0.7371535307154452],[120,207,74,0.762189200625196],[120,207,75,0.7851748271535786],[120,207,76,0.8057496589034066],[120,207,77,0.8231931237385932],[120,207,78,0.8368828167831124],[120,207,79,0.8463075053320102],[120,208,64,0.39709273344049484],[120,208,65,0.4358837695331181],[120,208,66,0.4741901355511706],[120,208,67,0.5116975158212843],[120,208,68,0.5481012425823683],[120,208,69,0.5831185249085457],[120,208,70,0.6165004328033188],[120,208,71,0.6480436364655465],[120,208,72,0.6776019007269426],[120,208,73,0.7050973346609951],[120,208,74,0.7305313963635922],[120,208,75,0.7539664075287708],[120,208,76,0.7750482325844511],[120,208,77,0.7930865756233129],[120,208,78,0.8074833617860514],[120,208,79,0.817745304734223],[120,209,64,0.3637274521676255],[120,209,65,0.4017890652956372],[120,209,66,0.43950949962608016],[120,209,67,0.47658119199723775],[120,209,68,0.5127027371697266],[120,209,69,0.5475908853305418],[120,209,70,0.5809922705588878],[120,209,71,0.6126948702543937],[120,209,72,0.6425391955274136],[120,209,73,0.6704292125513028],[120,209,74,0.6963429948769753],[120,209,75,0.7203161188406331],[120,209,76,0.7420012642122541],[120,209,77,0.7607414541648392],[120,209,78,0.7759653820957066],[120,209,79,0.7871994807249463],[120,210,64,0.32825853400566096],[120,210,65,0.36552560532822104],[120,210,66,0.40261088609912304],[120,210,67,0.43921436572102257],[120,210,68,0.4750383340256619],[120,210,69,0.509799110458514],[120,210,70,0.5432384781499835],[120,210,71,0.575134822873754],[120,210,72,0.605313976891995],[120,210,73,0.6336597676872974],[120,210,74,0.660124271581663],[120,210,75,0.684713264194417],[120,210,76,0.7070864044724812],[120,210,77,0.7266228527238691],[120,210,78,0.7427803315827987],[120,210,79,0.7551066394773608],[120,211,64,0.2912620762913455],[120,211,65,0.32767200875568214],[120,211,66,0.3640737545256417],[120,211,67,0.4001756184182006],[120,211,68,0.4356840145022183],[120,211,69,0.4703148910077055],[120,211,70,0.5038048323098705],[120,211,71,0.5359218379885441],[120,211,72,0.5664757789626931],[120,211,73,0.5953285306998751],[120,211,74,0.622403783500989],[120,211,75,0.6476747047713138],[120,211,76,0.6708080542427267],[120,211,77,0.6912216782344833],[120,211,78,0.7084043758937305],[120,211,79,0.7219268043029818],[120,212,64,0.3076855193532705],[120,212,65,0.32882998720215695],[120,212,66,0.349195501256191],[120,212,67,0.3687933432927498],[120,212,68,0.3952333461609106],[120,212,69,0.429727781941639],[120,212,70,0.46327507981729404],[120,212,71,0.4956321720583326],[120,212,72,0.5265918436065048],[120,212,73,0.5559924089034847],[120,212,74,0.5837270363982224],[120,212,75,0.6097337598509248],[120,212,76,0.6336865138198597],[120,212,77,0.6550440724023039],[120,212,78,0.6733281135718365],[120,212,79,0.688133468462701],[120,213,64,0.33480836813853243],[120,213,65,0.3542453415704355],[120,213,66,0.3728851165094793],[120,213,67,0.3907508134205029],[120,213,68,0.40790768151136003],[120,213,69,0.42446918738521594],[120,213,70,0.4406035311352101],[120,213,71,0.456540589881434],[120,213,72,0.48623514717319005],[120,213,73,0.5162139439872604],[120,213,74,0.5446449957559123],[120,213,75,0.5714289877362202],[120,213,76,0.5962470512052258],[120,213,77,0.6186007905933095],[120,213,78,0.6380462933903592],[120,213,79,0.6542036820497333],[120,214,64,0.3570301563965113],[120,214,65,0.3748881696696861],[120,214,66,0.39193839786341544],[120,214,67,0.4082147311868677],[120,214,68,0.4237903147092149],[120,214,69,0.43878295652180477],[120,214,70,0.4533609229001887],[120,214,71,0.4677491204659652],[120,214,72,0.4822318450244234],[120,214,73,0.49680002868358797],[120,214,74,0.5108835958541955],[120,214,75,0.5332928475811335],[120,214,76,0.5590088894478268],[120,214,77,0.5823965384134049],[120,214,78,0.6030475278972234],[120,214,79,0.6206081729445192],[120,215,64,0.374126925143808],[120,215,65,0.3905551233156115],[120,215,66,0.40617291897978614],[120,215,67,0.42102376379138406],[120,215,68,0.4351874577002448],[120,215,69,0.4487849002927348],[120,215,70,0.4619831899267415],[120,215,71,0.4750010706598856],[120,215,72,0.48811098663407015],[120,215,73,0.5012940105136606],[120,215,74,0.5139832638985525],[120,215,75,0.5256653359671403],[120,215,76,0.5359401616286724],[120,215,77,0.5469192659784221],[120,215,78,0.5688040031713204],[120,215,79,0.5878015018413281],[120,216,64,0.3859427025553913],[120,216,65,0.40110856666062916],[120,216,66,0.415469567020956],[120,216,67,0.4290773875058302],[120,216,68,0.44201713988650715],[120,216,69,0.4544114871828438],[120,216,70,0.46642507707794195],[120,216,71,0.4782692854005902],[120,216,72,0.4902036116893275],[120,216,73,0.5021985148749271],[120,216,74,0.5136899013730969],[120,216,75,0.5241705377127774],[120,216,76,0.5332481941804592],[120,216,77,0.5406349352258992],[120,216,78,0.5461367236638431],[120,216,79,0.556212251346745],[120,217,64,0.39239245163875647],[120,217,65,0.40647909405191873],[120,217,66,0.41977461652100323],[120,217,67,0.4323375065254938],[120,217,68,0.44425676474962655],[120,217,69,0.4556554340208747],[120,217,70,0.4666944022986031],[120,217,71,0.47757647971285333],[120,217,72,0.4885471758879678],[120,217,73,0.49956562161414364],[120,217,74,0.5100700573765802],[120,217,75,0.519558821938873],[120,217,76,0.5276467549703765],[120,217,77,0.5340541772253278],[120,217,78,0.5385961959372679],[120,217,79,0.5411723354287632],[120,218,64,0.3934644700568635],[120,218,65,0.4066674864634596],[120,218,66,0.41910122776862246],[120,218,67,0.4308294818801572],[120,218,68,0.4419436610226007],[120,218,69,0.45256577414141913],[120,218,70,0.46285163925197476],[120,218,71,0.47299433573323907],[120,218,72,0.4832244083695693],[120,218,73,0.4934890036991009],[120,218,74,0.5032282212957742],[120,218,75,0.5119453236172892],[120,218,76,0.5192614021398195],[120,218,77,0.5249040852271663],[120,218,78,0.5286965826945811],[120,218,79,0.5305470670672525],[120,219,64,0.3892222420994918],[120,219,65,0.4017461065017016],[120,219,66,0.4135303697014814],[120,219,67,0.4246425704044964],[120,219,68,0.43517502918102424],[120,219,69,0.4452473059433768],[120,219,70,0.45500886535416807],[120,219,71,0.46464195016541526],[120,219,72,0.47436126066397655],[120,219,73,0.48410138212275794],[120,219,74,0.4933037916576005],[120,219,75,0.5014760028816818],[120,219,76,0.5082445110088132],[120,219,77,0.5133432679262424],[120,219,78,0.5166025053879326],[120,219,79,0.5179379063283113],[120,220,64,0.3798057428030429],[120,220,65,0.3918597319849296],[120,220,66,0.4032111673120854],[120,220,67,0.41392977376796697],[120,220,68,0.4241072832538163],[120,220,69,0.433859421845015],[120,220,70,0.44332807520639045],[120,220,71,0.4526836321664564],[120,220,72,0.4621241912442176],[120,220,73,0.4715713019084631],[120,220,74,0.48046735220671477],[120,220,75,0.48832343377054827],[120,220,76,0.4947705919866999],[120,220,77,0.49954810872436095],[120,220,78,0.5024921444370151],[120,220,79,0.5035247396388105],[120,221,64,0.36543219421881157],[120,221,65,0.37722582809630656],[120,221,66,0.38836067356512816],[120,221,67,0.3989070975641297],[120,221,68,0.40895478795338763],[120,221,69,0.41861431763555706],[120,221,70,0.42801885942491097],[120,221,71,0.4373260516640438],[120,221,72,0.4467167856837735],[120,221,73,0.45609922921614493],[120,221,74,0.4649162552084188],[120,221,75,0.4726818872356939],[120,221,76,0.47903089095994433],[120,221,77,0.4837069051798966],[120,221,78,0.48655094321548936],[120,221,79,0.48749026462691136],[120,222,64,0.3463962738299528],[120,222,65,0.35813425811082433],[120,222,66,0.36926306582653906],[120,222,67,0.3798522204596211],[120,222,68,0.38998799112543997],[120,222,69,0.39977458222346873],[120,222,70,0.4093354488689154],[120,222,71,0.4188147381047098],[120,222,72,0.428375712418336],[120,222,73,0.4379129695495989],[120,222,74,0.44686951197701497],[120,222,75,0.45476170841622243],[120,222,76,0.4612272721571563],[120,222,77,0.4660132805417502],[120,222,78,0.4689645753162761],[120,222,79,0.4700125438583139],[120,223,64,0.32306977511659263],[120,223,65,0.33494643269565655],[120,223,66,0.3462682668037842],[120,223,67,0.357102573402377],[120,223,68,0.36753095151806237],[120,223,69,0.3776501677811739],[120,223,70,0.38757312426602386],[120,223,71,0.39742992963295276],[120,223,72,0.4073660141119308],[120,223,73,0.41726240706479767],[120,223,74,0.4265619906295779],[120,223,75,0.4347829881780672],[120,223,76,0.4415653834913887],[120,223,77,0.44665886736777527],[120,223,78,0.4499111750958546],[120,223,79,0.4512568147934298],[120,224,64,0.2959007202699176],[120,224,65,0.3080938977846732],[120,224,66,0.31978998999808844],[120,224,67,0.3310528288896921],[120,224,68,0.3419582618706202],[120,224,69,0.3525947402866066],[120,224,70,0.36306399123581035],[120,224,71,0.3734817727014783],[120,224,72,0.38397573462758217],[120,224,73,0.39441356497931745],[120,224,74,0.4042379210651629],[120,224,75,0.41296852891901425],[120,224,76,0.42024710437959634],[120,224,77,0.42582526322748854],[120,224,78,0.42955283149732604],[120,224,79,0.431366555965164],[120,225,64,0.2654119250541081],[120,225,65,0.27807636102605787],[120,225,66,0.290303209667612],[120,225,67,0.30215180029524374],[120,225,68,0.31369136732165875],[120,225,69,0.3250014104609046],[120,225,70,0.33617212071070873],[120,225,71,0.34730487211204086],[120,225,72,0.3585098816020807],[120,225,73,0.36964198708253804],[120,225,74,0.38014370716918683],[120,225,75,0.38953610463902877],[120,225,76,0.3974622760391391],[120,225,77,0.40367525848902513],[120,225,78,0.4080263451522643],[120,225,79,0.41045380937740283],[120,226,64,0.23219901581756527],[120,226,65,0.24545915680441222],[120,226,66,0.258341055302888],[120,226,67,0.2708987512562975],[120,226,68,0.2831942791369513],[120,226,69,0.2952978451033055],[120,226,70,0.307288054755285],[120,226,71,0.3192521914877849],[120,226,72,0.3312837246256689],[120,226,73,0.3432254403473376],[120,226,74,0.3545200462436316],[120,226,75,0.36469001527646394],[120,226,76,0.3733797142618384],[120,226,77,0.38034333619077376],[120,226,78,0.3854332487617296],[120,226,79,0.38858875912451735],[120,227,64,0.1968369702838011],[120,227,65,0.2107785291217691],[120,227,66,0.22439920686191223],[120,227,67,0.23774726931633994],[120,227,68,0.2508772834908633],[120,227,69,0.263850153300037],[120,227,70,0.27673319298897003],[120,227,71,0.28960023826189457],[120,227,72,0.30252904799330416],[120,227,73,0.31535147239635763],[120,227,74,0.32751099450068255],[120,227,75,0.33853182692624806],[120,227,76,0.3480597517348325],[120,227,77,0.35585010241473614],[120,227,78,0.36175616860116927],[120,227,79,0.36571802353230026],[120,228,64,0.15948918690949715],[120,228,65,0.17415112491052687],[120,228,66,0.18854754943473273],[120,228,67,0.20272076030692965],[120,228,68,0.21671787257679156],[120,228,69,0.2305907481868072],[120,228,70,0.2443959549857011],[120,228,71,0.25819475308731266],[120,228,72,0.27205043169636445],[120,228,73,0.2857851718640551],[120,228,74,0.2988439062829864],[120,228,75,0.3107529898214581],[120,228,76,0.3211598262491105],[120,228,77,0.3298209218931515],[120,228,78,0.3365903678376788],[120,228,79,0.3528144301377779],[120,229,64,0.12022665355058641],[120,229,65,0.13560336820281854],[120,229,66,0.15076855102554804],[120,229,67,0.1657586033547344],[120,229,68,0.18061344257443618],[120,229,69,0.19537636267723274],[120,229,70,0.2100939146183753],[120,229,71,0.22481580646366434],[120,229,72,0.23959221307612033],[120,229,73,0.2542369738986091],[120,229,74,0.2681971557103284],[120,229,75,0.2810016557003011],[120,229,76,0.2922996926059243],[120,229,77,0.3018489526508332],[120,229,78,0.31239585389221286],[120,229,79,0.34975113085768383],[120,230,64,0.07917656289505998],[120,230,65,0.09522236176519577],[120,230,66,0.11110981197659568],[120,230,67,0.12686971619167836],[120,230,68,0.14253525773175824],[120,230,69,0.158141818183191],[120,230,70,0.17372681024306258],[120,230,71,0.18932952580441584],[120,230,72,0.20498845196605575],[120,230,73,0.22051043851720684],[120,230,74,0.23534536628006683],[120,230,75,0.2490250652776241],[120,230,76,0.2612007476512538],[120,230,77,0.27163126477885097],[120,230,78,0.3095765434182383],[120,230,79,0.3479999433959219],[120,231,64,0.03651197398198362],[120,231,65,0.053145161557709264],[120,231,66,0.06967295745458696],[120,231,67,0.0861210730206512],[120,231,68,0.10251660290218666],[120,231,69,0.11888782266352224],[120,231,70,0.1352640001859848],[120,231,71,0.15167522084600593],[120,231,72,0.16814973848268822],[120,231,73,0.18448875423134206],[120,231,74,0.20014562727426802],[120,231,75,0.21465549777784113],[120,231,76,0.22845022652454866],[120,231,77,0.2682747388235166],[120,231,78,0.30791140581899124],[120,231,79,0.3473302633819383],[120,232,64,-0.00582858273019525],[120,232,65,0.009547752725992217],[120,232,66,0.02660223196186355],[120,232,67,0.04362592532501096],[120,232,68,0.06064064035201466],[120,232,69,0.07766847465111586],[120,232,70,0.09473162626809048],[120,232,71,0.11185221946907531],[120,232,72,0.12904971387878894],[120,232,73,0.14612095769308134],[120,232,74,0.1625234296079083],[120,232,75,0.18547992535142047],[120,232,76,0.2261754732072682],[120,232,77,0.26672233318506483],[120,232,78,0.30717600673307843],[120,232,79,0.3475061361225557],[120,233,64,-0.005178538025752161],[120,233,65,-0.02044099494526025],[120,233,66,-0.017927106689670694],[120,233,67,-4.6817655995061436E-4],[120,233,68,0.0170280686548087],[120,233,69,0.03457857070848347],[120,233,70,0.05219958210639947],[120,233,71,0.06990650964186404],[120,233,72,0.08771139885244594],[120,233,73,0.1054079621864781],[120,233,74,0.14207828935678912],[120,233,75,0.18352659738447996],[120,233,76,0.224772951258291],[120,233,77,0.26595985744408795],[120,233,78,0.30714301018663925],[120,233,79,0.34828932005127194],[120,234,64,-0.005894594800014558],[120,234,65,-0.020485893848969317],[120,234,66,-0.03916860030694448],[120,234,67,-0.045991561111909156],[120,234,68,-0.028175416325569483],[120,234,69,-0.010259283686651535],[120,234,70,0.007768286193571353],[120,234,71,0.02591718748715756],[120,234,72,0.058214049331201],[120,234,73,0.09886559214906755],[120,234,74,0.14051063365996205],[120,234,75,0.18233122547712072],[120,234,76,0.22403726786882294],[120,234,77,0.26577097076710354],[120,234,78,0.3075854421638835],[120,234,79,0.3494426922868888],[120,235,64,-0.007874753182879224],[120,235,65,-0.021798147424882175],[120,235,66,-0.0398797717679961],[120,235,67,-0.06209520370186901],[120,235,68,-0.07481185836442254],[120,235,69,-0.051601759602252224],[120,235,70,-0.018220538551878288],[120,235,71,0.01817932369198301],[120,235,72,0.057062803874320805],[120,235,73,0.09778956002482483],[120,235,74,0.13961066447474965],[120,235,75,0.18170108088706202],[120,235,76,0.2237654175294891],[120,235,77,0.26594250823471194],[120,235,78,0.308280320384813],[120,235,79,0.3507339963016196],[120,236,64,0.023440661486574005],[120,236,65,0.006034518919513246],[120,236,66,-0.011543436709253785],[120,236,67,-0.029306786690208905],[120,236,68,-0.0472664466183],[120,236,69,-0.05135846978971357],[120,236,70,-0.01829916350718415],[120,236,71,0.017871641097366442],[120,236,72,0.05662274446133665],[120,236,73,0.09731549284413808],[120,236,74,0.139200275006677],[120,236,75,0.18144880949261388],[120,236,76,0.22376062616783016],[120,236,77,0.26626839450941775],[120,236,78,0.30901265028987834],[120,236,79,0.3519399316984593],[120,237,64,0.07108384134908731],[120,237,65,0.05415900401962105],[120,237,66,0.03699802448142084],[120,237,67,0.01958622088789537],[120,237,68,0.001912492917863079],[120,237,69,-0.016030481647940395],[120,237,70,-0.017609818049958828],[120,237,71,0.018231491347972667],[120,237,72,0.05674011273370912],[120,237,73,0.09728192472328531],[120,237,74,0.13911002814866935],[120,237,75,0.18139665045228354],[120,237,76,0.2238366054156828],[120,237,77,0.2665539463408846],[120,237,78,0.3095797872316027],[120,237,79,0.35285058609782527],[120,238,64,0.11946432268692271],[120,238,65,0.10327714953470582],[120,238,66,0.08678347423581002],[120,238,67,0.06996636308295419],[120,238,68,0.05281354394574227],[120,238,69,0.03531764892131005],[120,238,70,0.01747637733963725],[120,238,71,0.01912337046574321],[120,238,72,0.0572726467255872],[120,238,73,0.09753976782457513],[120,238,74,0.139183802585965],[120,238,75,0.18138108513122841],[120,238,76,0.2238222170067597],[120,238,77,0.2666205639089291],[120,238,78,0.30979616487347317],[120,238,79,0.35327420913377094],[120,239,64,0.1686913783780133],[120,239,65,0.15351118379591805],[120,239,66,0.13794658327892476],[120,239,67,0.12197733987751044],[120,239,68,0.10558917062825507],[120,239,69,0.08877406528383716],[120,239,70,0.07153050826241358],[120,239,71,0.053863603816384],[120,239,72,0.058094754311579205],[120,239,73,0.09795743836470978],[120,239,74,0.1392838883806073],[120,239,75,0.18125791629408444],[120,239,76,0.2235665473039719],[120,239,77,0.26631081100381665],[120,239,78,0.30949838979567884],[120,239,79,0.3530423285593639],[120,240,64,0.21873997096249198],[120,240,65,0.20484216773724345],[120,240,66,0.1904734912942287],[120,240,67,0.17560944097587822],[120,240,68,0.16023300964659126],[120,240,69,0.14433511197141732],[120,240,70,0.1279148976015643],[120,240,71,0.11097994926673108],[120,240,72,0.09354834883189742],[120,240,73,0.09842645047314187],[120,240,74,0.13929653203573722],[120,240,75,0.18090777756438414],[120,240,76,0.22294439195669474],[120,240,77,0.2654938840440444],[120,240,78,0.3085507023078684],[120,240,79,0.352015208461389],[120,241,64,0.2694710336182049],[120,241,65,0.257130849841564],[120,241,66,0.2442241854632679],[120,241,67,0.23072139921616658],[120,241,68,0.21660215267725846],[120,241,69,0.20185598387284742],[120,241,70,0.18648274652734614],[120,241,71,0.17049291495572633],[120,241,72,0.15390964873079477],[120,241,73,0.13693846041276062],[120,241,74,0.1391379310398993],[120,241,75,0.18024207315078228],[120,241,76,0.22186215068820195],[120,241,77,0.2640714699318427],[120,241,78,0.3068508034691593],[120,241,79,0.35008764958461464],[120,242,64,0.32065065813015153],[120,242,65,0.31013741783099114],[120,242,66,0.298952767446723],[120,242,67,0.2870611259215356],[120,242,68,0.2744383059154794],[120,242,69,0.2610722697653931],[120,242,70,0.24696373110047654],[120,242,71,0.23212660211251213],[120,242,72,0.2165900786848432],[120,242,73,0.20055875550995772],[120,242,74,0.1844862595025859],[120,242,75,0.17920934783970627],[120,242,76,0.22026413221288488],[120,242,77,0.2619839927460118],[120,242,78,0.30433604831502287],[120,242,79,0.34719513176524436],[120,243,64,0.3719681898553836],[120,243,65,0.3635401471031013],[120,243,66,0.35432660880860073],[120,243,67,0.3442853281924854],[120,243,68,0.3333878266468172],[120,243,69,0.32162036937180283],[120,243,70,0.30898476617416404],[120,243,71,0.2954989974271879],[120,243,72,0.2811993425159047],[120,243,73,0.266289715182187],[120,243,74,0.25120657599965207],[120,243,75,0.23632036894601346],[120,243,76,0.22191264752613526],[120,243,77,0.25921724927217726],[120,243,78,0.3009900052911186],[120,243,79,0.3433202984736287],[120,244,64,0.42305322968118875],[120,244,65,0.4169529459107834],[120,244,66,0.4099443948811736],[120,244,67,0.40197800813768747],[120,244,68,0.3930206368644456],[120,244,69,0.3830567839402191],[120,244,70,0.3720896403768666],[120,244,71,0.36014192614034757],[120,244,72,0.3472580854335275],[120,244,73,0.33364166913846316],[120,244,74,0.31971039514546806],[120,244,75,0.30581753531172184],[120,244,76,0.2922313052108908],[120,244,77,0.27914443301300396],[120,244,78,0.2968996404333603],[120,244,79,0.3385490546357746],[120,245,64,0.47349154297873486],[120,245,65,0.4699417972879777],[120,245,66,0.4653530570730357],[120,245,67,0.4596678440458142],[120,245,68,0.4528480139346044],[120,245,69,0.4448762803496004],[120,245,70,0.4357575221784615],[120,245,71,0.42551987451192175],[120,245,72,0.41421701462406413],[120,245,73,0.4020525162516136],[120,245,74,0.3894239963486951],[120,245,75,0.3766661166834633],[120,245,76,0.3640324553941417],[120,245,77,0.3517049556501122],[120,245,78,0.33980266743811427],[120,245,79,0.3332026810897808],[120,246,64,0.5228398755512145],[120,246,65,0.5220400977203106],[120,246,66,0.5200635936192547],[120,246,67,0.5168444534973199],[120,246,68,0.5123392583091655],[120,246,69,0.5065289287395605],[120,246,70,0.4994203370387126],[120,246,71,0.49104768166819496],[120,246,72,0.48147488785775655],[120,246,73,0.47090599303113095],[120,246,74,0.4597174212132415],[120,246,75,0.4482240321234305],[120,246,76,0.43666366718987387],[120,246,77,0.42520649146964595],[120,246,78,0.413963593096319],[120,246,79,0.4029948402551077],[120,247,64,0.5706396765756103],[120,247,65,0.572762892559679],[120,247,66,0.5735657787726007],[120,247,67,0.5729735384150896],[120,247,68,0.5709372382841645],[120,247,69,0.5674360136634208],[120,247,70,0.5624790156367767],[120,247,71,0.5561071008256876],[120,247,72,0.5483953701124352],[120,247,73,0.5395488090373926],[120,247,74,0.529921861014087],[120,247,75,0.5198086775189744],[120,247,76,0.5094304997984082],[120,247,77,0.4989449091239607],[120,247,78,0.48845429710159527],[120,247,79,0.47801355603470025],[120,248,64,0.616429728540128],[120,248,65,0.6216200081849759],[120,248,66,0.6253417604381912],[120,248,67,0.6275109120564274],[120,248,68,0.6280728118069022],[120,248,69,0.6270048187671968],[120,248,70,0.62431861318458],[120,248,71,0.6200622298948393],[120,248,72,0.6143227582168591],[120,248,73,0.6073066492403653],[120,248,74,0.5993459109106859],[120,248,75,0.5907133963480583],[120,248,76,0.5816131463953639],[120,248,77,0.5721895647658864],[120,248,78,0.562535774112384],[120,248,79,0.5527011530174886],[120,249,64,0.6597576841753423],[120,249,65,0.6681280809068308],[120,249,66,0.674878546249255],[120,249,67,0.6799154079439351],[120,249,68,0.6831781253290093],[120,249,69,0.6846422849917775],[120,249,70,0.6843222998211956],[120,249,71,0.6822738114605001],[120,249,72,0.6785965735105948],[120,249,73,0.6734990433195892],[120,249,74,0.6672906908946559],[120,249,75,0.6602228184148036],[120,249,76,0.6524819491621012],[120,249,77,0.6441989454510858],[120,249,78,0.635457266927247],[120,249,79,0.6263003692345985],[120,250,64,0.7001905103802603],[120,250,65,0.7118214826177389],[120,250,66,0.7216793780855525],[120,250,67,0.7296606707369631],[120,250,68,0.7356987897073087],[120,250,69,0.7397675423002629],[120,250,70,0.7418842220903135],[120,250,71,0.7421124021414425],[120,250,72,0.7405650225227554],[120,250,73,0.7374531019078587],[120,250,74,0.7330638334742541],[120,250,75,0.727627066557708],[120,250,76,0.7213117854602853],[120,250,77,0.7142351892062003],[120,250,78,0.7064708699522557],[120,250,79,0.6980560900528848],[120,251,64,0.7373238391425581],[120,251,65,0.7522621431866653],[120,251,66,0.765273995033379],[120,251,67,0.7762458290424173],[120,251,68,0.7851049331511125],[120,251,69,0.7918233149289653],[120,251,70,0.7964212354991802],[120,251,71,0.7989704113271525],[120,251,72,0.7995973256677492],[120,251,73,0.7985161197766585],[120,251,74,0.7959923380936152],[120,251,75,0.7922348313284339],[120,251,76,0.7873953251484082],[120,251,77,0.7815774817605621],[120,251,78,0.7748450175439363],[120,251,79,0.7672288767319293],[120,252,64,0.7707902254539569],[120,252,65,0.7890482695992755],[120,252,66,0.8052277847884773],[120,252,67,0.8192050501664099],[120,252,68,0.8309011312175951],[120,252,69,0.840286200163863],[120,252,70,0.847383508160939],[120,252,71,0.8522730092939572],[120,252,72,0.855094913960216],[120,252,73,0.8560670459656337],[120,252,74,0.8554342922891235],[120,252,75,0.8533853136436225],[120,252,76,0.8500551590427939],[120,252,77,0.8455343299440669],[120,252,78,0.839876857230429],[120,252,79,0.8331073910309782],[120,253,64,0.8002663122192185],[120,253,65,0.8218219618420652],[120,253,66,0.8411498234999327],[120,253,67,0.8581159768046371],[120,253,68,0.872635213852958],[120,253,69,0.8846758206400533],[120,253,70,0.8942639955177584],[120,253,71,0.9014879046977377],[120,253,72,0.9065014937462613],[120,253,73,0.9095268208530845],[120,253,74,0.9107894595798013],[120,253,75,0.9104590354065226],[120,253,76,0.9086547985197915],[120,253,77,0.9054547117478318],[120,253,78,0.9009035078074109],[120,253,79,0.8950197158623344],[120,254,64,0.8254789021605426],[120,254,65,0.8502757255323855],[120,254,66,0.8726998040572566],[120,254,67,0.8926070456738944],[120,254,68,0.9099059494819698],[120,254,69,0.9245628501669639],[120,254,70,0.9366067861476712],[120,254,71,0.9461339914462915],[120,254,72,0.9533119794541994],[120,254,73,0.9583675801708252],[120,254,74,0.9615087340951703],[120,254,75,0.9628875181019834],[120,254,76,0.9626085462627981],[120,254,77,0.9607381030513623],[120,254,78,0.9573122023125873],[120,254,79,0.952343571995037],[120,255,64,0.8462099367158716],[120,255,65,0.8741578812926752],[120,255,66,0.8995938528187784],[120,255,67,0.9223636880826589],[120,255,68,0.9423696061436507],[120,255,69,0.9595759130769337],[120,255,70,0.9740143186525886],[120,255,71,0.9857888649486822],[120,255,72,0.995080294362007],[120,255,73,1.0021207259604943],[120,255,74,1.007102461937564],[120,255,75,1.0101618293617134],[120,255,76,1.0113902381509288],[120,255,77,1.0108433810129722],[120,255,78,1.008549315875422],[120,255,79,1.00451543080548],[120,256,64,0.8623003819320485],[120,256,65,0.893276870870008],[120,256,66,0.921609234782611],[120,256,67,0.9471334124421611],[120,256,68,0.9697453896746622],[120,256,69,0.989407357098853],[120,256,70,1.0061534696292989],[120,256,71,1.0200952077434884],[120,256,72,1.0314260393835128],[120,256,73,1.04038386447343],[120,256,74,1.0471476292810913],[120,256,75,1.0518399975020607],[120,256,76,1.0545408562916552],[120,256,77,1.0552966041258403],[120,256,78,1.0541282784445454],[120,256,79,1.051038523077418],[120,257,64,0.8736530213522408],[120,257,65,0.9075044600002227],[120,257,66,0.9385879471993246],[120,257,67,0.9667297687169494],[120,257,68,0.9918197589392771],[120,257,69,1.013817899755627],[120,257,70,1.0327605127221113],[120,257,71,1.0487660445045233],[120,257,72,1.062040029871799],[120,257,73,1.0728266110125126],[120,257,74,1.0812939172055855],[120,257,75,1.0875532940326011],[120,257,76,1.0916750131956454],[120,257,77,1.0936976689378768],[120,257,78,1.0936363723909748],[120,257,79,1.091489743849487],[120,258,64,0.8802341558982008],[120,258,65,0.9167778380173601],[120,258,66,0.9504392016271871],[120,258,67,0.9810351948159364],[120,258,68,1.0084496181070588],[120,258,69,1.0326401482867076],[120,258,70,1.0536449487584985],[120,258,71,1.071588866425474],[120,258,72,1.0866887004413588],[120,258,73,1.0991952617175982],[120,258,74,1.109268623267234],[120,258,75,1.1170113841372884],[120,258,76,1.1224863070956166],[120,258,77,1.1257258434372788],[120,258,78,1.126740414989061],[120,258,79,1.125525453312171],[120,259,64,0.8820742107466559],[120,259,65,0.9211006142075261],[120,259,66,0.9571407944289431],[120,259,67,0.9900027449227526],[120,259,68,1.0195643859769175],[120,259,69,1.0457809930942277],[120,259,70,1.0686922069661502],[120,259,71,1.0884286249817634],[120,259,72,1.1052173778072052],[120,259,73,1.1193163322926474],[120,259,74,1.130880449803903],[120,259,75,1.1400063451261047],[120,259,76,1.1467515484070716],[120,259,77,1.151144177101571],[120,259,78,1.1531913257729165],[120,259,79,1.1528861737519367],[120,260,64,0.8792672492006117],[120,260,65,0.920542710908144],[120,260,66,0.9587393657112396],[120,260,67,0.993656699766668],[120,260,68,1.0251669423489584],[120,260,69,1.0532228747142907],[120,260,70,1.0778652172731105],[120,260,71,1.0992295950714182],[120,260,72,1.1175524216428252],[120,260,73,1.1330989636765292],[120,260,74,1.1460221589772341],[120,260,75,1.1564155528593671],[120,260,76,1.16433385733314],[120,260,77,1.1698027876124184],[120,260,78,1.1728275787706537],[120,260,79,1.1734001825449027],[120,261,64,0.8719693935547829],[120,261,65,0.9152391533516564],[120,261,66,0.9553495467056418],[120,261,67,0.9920920588328933],[120,261,68,1.025333451442814],[120,261,69,1.0550239243119937],[120,261,70,1.0812048536894834],[120,261,71,1.1040161075333386],[120,261,72,1.123702233455289],[120,261,73,1.1405361946557528],[120,261,74,1.154672094549688],[120,261,75,1.1662034361428089],[120,261,76,1.175184632611598],[120,261,77,1.1816410242342477],[120,261,78,1.1855775396144443],[120,261,79,1.1869860011980327],[120,262,64,0.8603961529559301],[120,262,65,0.9053877562545636],[120,262,66,0.9471519955922043],[120,262,67,0.9854729145133195],[120,262,68,1.0202120623635917],[120,262,69,1.0513169777013915],[120,262,70,1.0788292487719688],[120,262,71,1.1028921510442853],[120,262,72,1.1237571334788734],[120,262,73,1.141705101420508],[120,262,74,1.1568945703979563],[120,262,75,1.1694220990948765],[120,262,76,1.1793443914055273],[120,262,77,1.1866885078581393],[120,262,78,1.1914606875278606],[120,262,79,1.1936537804393081],[120,263,64,0.8448186582574005],[120,263,65,0.8912457071510239],[120,263,66,0.9343903217647693],[120,263,67,0.9740297081968048],[120,263,68,1.010020486614503],[120,263,69,1.042307462889417],[120,263,70,1.0709319791702194],[120,263,71,1.0960398433935465],[120,263,72,1.1178881055861485],[120,263,73,1.1367658040629587],[120,263,74,1.1528391257616788],[120,263,75,1.166210811485186],[120,263,76,1.1769424803365485],[120,263,77,1.185065047709945],[120,263,78,1.190587722189474],[120,263,79,1.1935055813558773],[120,264,64,0.8255588038683059],[120,264,65,0.8731250464715106],[120,264,66,0.9173668985385415],[120,264,67,0.9580553682996095],[120,264,68,0.9950424526568175],[120,264,69,1.0282701611444465],[120,264,70,1.0577791222557273],[120,264,71,1.0837167721360184],[120,264,72,1.106344410217274],[120,264,73,1.1259593400185484],[120,264,74,1.14273864722822],[120,264,75,1.1567943670448848],[120,264,76,1.1681956576613899],[120,264,77,1.1769794347233775],[120,264,78,1.183159555473436],[120,264,79,1.1867345525808877],[120,265,64,0.8029832965972866],[120,265,65,0.8513870443664122],[120,265,66,0.8964375642997578],[120,265,67,0.937900330235751],[120,265,68,0.975623037516857],[120,265,69,1.00954484158918],[120,265,70,1.0397051838328781],[120,265,71,1.0662522046233052],[120,265,72,1.0894500653270844],[120,265,73,1.1096044044498687],[120,265,74,1.1269063574530571],[120,265,75,1.1414803097484658],[120,265,76,1.1534055465913151],[120,265,77,1.1627271115775926],[120,265,78,1.169465188066574],[120,265,79,1.1736230035285407],[120,266,64,0.7774966114907549],[120,266,65,0.8264354742745215],[120,266,66,0.8720052120974646],[120,266,67,0.9139664383273213],[120,266,68,0.9521628754401282],[120,266,69,0.9865307693179686],[120,266,70,1.0171078969323362],[120,266,71,1.0440421674130287],[120,266,72,1.0675991953501822],[120,266,73,1.0880929575733367],[120,266,74,1.1057316706160214],[120,266,75,1.120655028067283],[120,266,76,1.1329549597546742],[120,266,77,1.1426867193995338],[120,266,78,1.1498784709622616],[120,266,79,1.154539373677623],[120,267,64,0.7495328546654146],[120,267,65,0.7987087832361855],[120,267,66,0.8445122676771353],[120,267,67,0.8866997296545005],[120,267,68,0.9251112435923009],[120,267,69,0.959680087038288],[120,267,70,0.9904418916864571],[120,267,71,1.0175433950560433],[120,267,72,1.0412502481837245],[120,267,73,1.0618846989283661],[120,267,74,1.079674914613104],[120,267,75,1.0947787171944927],[120,267,76,1.107303094802313],[120,267,77,1.1173155211307937],[120,267,78,1.1248537518308408],[120,267,79,1.1299340979033128],[120,268,64,0.719546533135782],[120,268,65,0.7686711589518395],[120,268,66,0.8144320559568554],[120,268,67,0.856582099845966],[120,268,68,0.8949580248077225],[120,268,69,0.9294900702370332],[120,268,70,0.9602112362873738],[120,268,71,0.9872661482621736],[120,268,72,1.0109190801885088],[120,268,73,1.0315004085896118],[120,268,74,1.049260919984358],[120,268,75,1.0643792092419175],[120,268,76,1.0769796011563049],[120,268,77,1.0871437015594074],[120,268,78,1.0949204062669768],[120,268,79,1.100334367857605],[120,269,64,0.6880022316358763],[120,269,65,0.7368024935850958],[120,269,66,0.7822590559452536],[120,269,67,0.8241218508089024],[120,269,68,0.8622245473846853],[120,269,69,0.8964942558708658],[120,269,70,0.926960849027013],[120,269,71,0.9537659014437625],[120,269,72,0.9771709092076533],[120,269,73,0.9975141553216023],[120,269,74,1.0150714755772459],[120,269,75,1.030044671408209],[120,269,76,1.0425775179014025],[120,269,77,1.05276754401602],[120,269,78,1.0606762539134076],[120,269,79,1.0663377893978445],[120,270,64,0.6553631964352781],[120,270,65,0.7035872443106118],[120,270,66,0.7484980441014178],[120,270,67,0.7898431203988578],[120,270,68,0.8274533019277198],[120,270,69,0.8612524445809019],[120,270,70,0.8912667814193469],[120,270,71,0.9176338996373403],[120,270,72,0.9406111356032116],[120,270,73,0.9605443716761246],[120,270,74,0.9777366509458135],[120,270,75,0.9924151721187062],[120,270,76,1.0047450828196351],[120,270,77,1.0148414837348527],[120,270,78,1.0227798594615378],[120,270,79,1.028604936063831],[120,271,64,0.622078826150303],[120,271,65,0.6695021906074224],[120,271,66,0.7136521261374282],[120,271,67,0.7542741940300288],[120,271,68,0.7911965352374182],[120,271,69,0.8243395764321899],[120,271,70,0.8537253724052629],[120,271,71,0.8794865848037386],[120,271,72,0.901875031310972],[120,271,73,0.9212437960325376],[120,271,74,0.9379249854857944],[120,271,75,0.9521731151370227],[120,271,76,0.9641764125679987],[120,271,77,0.9740690378793679],[120,271,78,0.9819417185287014],[120,271,79,0.9878507986032564],[120,272,64,0.5885710695490987],[120,272,65,0.6350030882966314],[120,272,66,0.6782096572624847],[120,272,67,0.7179346982250288],[120,272,68,0.7540037212469515],[120,272,69,0.7863334801772259],[120,272,70,0.8149412736393944],[120,272,71,0.8399538915060897],[120,272,72,0.8616162969129803],[120,272,73,0.8802882815806529],[120,272,74,0.8963325443053858],[120,272,75,0.9100325416482147],[120,272,76,0.9216010539992032],[120,272,77,0.9311926122326697],[120,272,78,0.9389143284122301],[120,272,79,0.9448351305457057],[120,273,64,0.5552197303514108],[120,273,65,0.60051022032411],[120,273,66,0.6426300508691842],[120,273,67,0.6813216761046106],[120,273,68,0.7164079090056378],[120,273,69,0.7478014960437688],[120,273,70,0.7755143458590761],[120,273,71,0.7996664119657662],[120,273,72,0.8204944867277398],[120,273,73,0.8383644722460364],[120,273,74,0.8536708408314456],[120,273,75,0.8667273003131563],[120,273,76,0.8777724066250041],[120,273,77,0.8869821845520895],[120,273,78,0.8944811437196879],[120,273,79,0.9003516898244857],[120,274,64,0.5223944360845925],[120,274,65,0.5664357384777458],[120,274,66,0.6073666340461631],[120,274,67,0.6449281205098829],[120,274,68,0.6789401175464355],[120,274,69,0.7093109339369632],[120,274,70,0.7360463963387675],[120,274,71,0.7592586396841999],[120,274,72,0.7791749930666081],[120,274,73,0.7961667697283079],[120,274,74,0.8106610392114978],[120,274,75,0.8230027444321618],[120,274,76,0.8334571765054605],[120,274,77,0.8422227756229722],[120,274,78,0.8494423196177512],[120,274,79,0.8552125002172349],[120,275,64,0.49077077338941916],[120,275,65,0.5334641535637314],[120,275,66,0.5731124644276514],[120,275,67,0.6094552778601011],[120,275,68,0.6423094579466924],[120,275,69,0.6715784957039281],[120,275,70,0.6972615121241066],[120,275,71,0.7194619295408494],[120,275,72,0.7383964294251963],[120,275,73,0.7544409948133645],[120,275,74,0.7680557886060415],[120,275,75,0.7796176478982727],[120,275,76,0.7894192699715943],[120,275,77,0.7976821787169835],[120,275,78,0.8045680724961137],[120,275,79,0.810188553440961],[120,276,64,0.4610692790937198],[120,276,65,0.5023113138558954],[120,276,66,0.540578835351784],[120,276,67,0.5756101095724285],[120,276,68,0.607218879401298],[120,276,69,0.6353035430464488],[120,276,70,0.6598560068445946],[120,276,71,0.6809702124370058],[120,276,72,0.6988511465111272],[120,276,73,0.7138787006624528],[120,276,74,0.7265463132280343],[120,276,75,0.7372630487838222],[120,276,76,0.7463493776035746],[120,276,77,0.7540502933217279],[120,276,78,0.7605468073065853],[120,276,79,0.7659658197438646],[120,277,64,0.4338432189591842],[120,277,65,0.47353155831472615],[120,277,66,0.5103213043060572],[120,277,67,0.5439495909165737],[120,277,68,0.5742270371195046],[120,277,69,0.6010467468457162],[120,277,70,0.624392988975011],[120,277,71,0.6443495573508315],[120,277,72,0.6611088132164719],[120,277,73,0.6750537662831727],[120,277,74,0.6867110023625422],[120,277,75,0.6965218241227494],[120,277,76,0.7048345387418714],[120,277,77,0.7119177133360926],[120,277,78,0.717971804057461],[120,277,79,0.7231391588612446],[120,278,64,0.40947459559066635],[120,278,65,0.4475131943080155],[120,278,66,0.48273464895646745],[120,278,67,0.514875154927895],[120,278,68,0.5437422344265501],[120,278,69,0.5692235380837034],[120,278,70,0.5912953320800449],[120,278,71,0.6100306707757677],[120,278,72,0.6256084539882376],[120,278,73,0.6384139841226474],[120,278,74,0.6490065725772166],[120,278,75,0.6578594627747512],[120,278,76,0.6653485712086378],[120,278,77,0.671765868579048],[120,278,78,0.6773311333587357],[120,278,79,0.6822020777884835],[120,279,64,0.3881702860956599],[120,279,65,0.4244739802116787],[120,279,66,0.45804771009019135],[120,279,67,0.48862691258002006],[120,279,68,0.5160160380674825],[120,279,69,0.5400971366554131],[120,279,70,0.5608381353908725],[120,279,71,0.5783008065414662],[120,279,72,0.5926498239484728],[120,279,73,0.6042719200368292],[120,279,74,0.6137584446815987],[120,279,75,0.6216140035393438],[120,279,76,0.6282416251171787],[120,279,77,0.6339562576063661],[120,279,78,0.6389966387680567],[120,279,79,0.643535538871219],[120,280,64,0.36995681557260346],[120,280,65,0.40445526607807564],[120,280,66,0.4363169179776912],[120,280,67,0.46527658446243064],[120,280,68,0.49113563539989724],[120,280,69,0.5137703542618616],[120,280,70,0.5331399919164475],[120,280,71,0.5492945172848768],[120,280,72,0.562383659790074],[120,280,73,0.5727946828586029],[120,280,74,0.5811500641418549],[120,280,75,0.5879849509520163],[120,280,76,0.5937287492269125],[120,280,77,0.5987187287763611],[120,280,78,0.6032120040758069],[120,280,79,0.6073958906072975],[120,281,64,0.3546737664278831],[120,281,65,0.3873147923715858],[120,281,66,0.4174185021538846],[120,281,67,0.44471914396252304],[120,281,68,0.46901493347498124],[120,281,69,0.4901761713830627],[120,281,70,0.5081530640886458],[120,281,71,0.5229832475705196],[120,281,72,0.5348008064472284],[120,281,73,0.543992603563503],[120,281,74,0.5512111649496556],[120,281,75,0.5570211687610827],[120,281,76,0.5618774698423508],[120,281,77,0.5661388095630855],[120,281,78,0.5700799055276721],[120,281,79,0.5739019211588178],[120,282,64,0.34196582352122906],[120,282,65,0.37271814677124593],[120,282,66,0.401039384618297],[120,282,67,0.42666317195218506],[120,282,68,0.4493844000070253],[120,282,69,0.469067088331301],[120,282,70,0.4856519669416731],[120,282,71,0.49916376866046297],[120,282,72,0.5097202195411115],[120,282,73,0.5177068240337829],[120,282,74,0.5238049769460318],[120,282,75,0.5286077510861816],[120,282,76,0.5325943822571253],[120,282,77,0.5361440841181003],[120,282,78,0.539548248985893],[120,282,79,0.5430210345755231],[120,283,64,0.33127345514066137],[120,283,65,0.36012887904150237],[120,283,66,0.3866667564551456],[120,283,67,0.4106199229797217],[120,283,68,0.43177964623211207],[120,283,69,0.4500032503852786],[120,283,70,0.46522145882620275],[120,283,71,0.47744545493435914],[120,283,72,0.4867758436010837],[120,283,73,0.4935957954209613],[120,283,74,0.4986143766002405],[120,283,75,0.5024518712583335],[120,283,76,0.5056107547428856],[120,283,77,0.5084896190805505],[120,283,78,0.5113954920288384],[120,283,79,0.5145545497291021],[120,284,64,0.32184425472103506],[120,284,65,0.34881902166464296],[120,284,66,0.37359777934080307],[120,284,67,0.3959122124695623],[120,284,68,0.4155495071283118],[120,284,69,0.43235973044047227],[120,284,70,0.4462629374661746],[120,284,71,0.4572560052948596],[120,284,72,0.46542157103062126],[120,284,73,0.4711394857395432],[120,284,74,0.47514535230932975],[120,284,75,0.478085513149588],[120,284,76,0.48048453470376723],[120,284,77,0.48275925483902726],[120,284,78,0.48523123291139086],[120,284,79,0.48813760250623367],[120,285,64,0.3134010663504669],[120,285,65,0.33852851707463066],[120,285,66,0.36158942472381395],[120,285,67,0.3823138807808142],[120,285,68,0.4004844582964009],[120,285,69,0.4159433532117177],[120,285,70,0.4285992632264133],[120,285,71,0.43843400421242706],[120,285,72,0.4455114326220034],[120,285,73,0.45020700598806107],[120,285,74,0.45328139498652953],[120,285,75,0.4554055307115826],[120,285,76,0.4571246523415309],[120,285,77,0.4588724858681638],[120,285,78,0.46098383606581816],[120,285,79,0.46370559170023234],[120,286,64,0.30632371222141214],[120,286,65,0.32964586939874285],[120,286,66,0.3510377020372031],[120,286,67,0.37022728965797813],[120,286,68,0.3869921172085914],[120,286,69,0.4011659876251983],[120,286,70,0.4126456835282063],[120,286,71,0.42139737805114685],[120,286,72,0.4274655482548204],[120,286,73,0.4312200284623177],[120,286,74,0.4334442769469281],[120,286,75,0.43483160527080666],[120,286,76,0.43594591415947415],[120,286,77,0.4372360020690372],[120,286,78,0.43904829942539775],[120,286,79,0.4416380285355104],[120,287,64,0.3009296131710063],[120,287,65,0.32249823232225117],[120,287,66,0.34227813528575135],[120,287,67,0.35999500680179386],[120,287,68,0.3754208399472744],[120,287,69,0.3883806326010464],[120,287,70,0.39875884583069116],[120,287,71,0.40650562420064335],[120,287,72,0.4116457055002842],[120,287,73,0.414541963940753],[120,287,74,0.41599763619959673],[120,287,75,0.41672554131361617],[120,287,76,0.4173056991332168],[120,287,77,0.4181997571874919],[120,287,78,0.4197638578459612],[120,287,79,0.42225994577702103],[120,288,64,0.297439852984457],[120,288,65,0.3173175403030173],[120,288,66,0.3355520440768861],[120,288,67,0.35186631294698306],[120,288,68,0.3660265224331868],[120,288,69,0.37784857094331503],[120,288,70,0.3872043516323284],[120,288,71,0.3940278001116941],[120,288,72,0.398323804821654],[120,288,73,0.4004468865735715],[120,288,74,0.40121643494873227],[120,288,75,0.40136133994025763],[120,288,76,0.40147474983894416],[120,288,77,0.402028596188706],[120,288,78,0.40338657611010154],[120,288,79,0.4058155919919998],[120,289,64,0.29598983022123576],[120,289,65,0.3142506775209828],[120,289,66,0.331016254034217],[120,289,67,0.3460064778663733],[120,289,68,0.3589814653172268],[120,289,69,0.369747844917319],[120,289,70,0.37816486230940605],[120,289,71,0.3841502759748655],[120,289,72,0.3876892718529364],[120,289,73,0.3891266141945141],[120,289,74,0.38929371264375173],[120,289,75,0.38893162643889384],[120,289,76,0.38864327412735866],[120,289,77,0.388908029024714],[120,289,78,0.3900947917480703],[120,289,79,0.39247353982394806],[120,290,64,0.29663937189108086],[120,290,65,0.3133691489749981],[120,290,66,0.3287523487879438],[120,290,67,0.34250561644361094],[120,290,68,0.35438285646059403],[120,290,69,0.36418138596971406],[120,290,70,0.371747894739052],[120,290,71,0.37698421201663446],[120,290,72,0.37985622847784445],[120,290,73,0.380697581020414],[120,290,74,0.3803471642013353],[120,290,75,0.3795539347832585],[120,290,76,0.3789269342228964],[120,290,77,0.378949920875455],[120,290,78,0.37999450174065913],[120,290,79,0.3823317637504358],[120,291,64,0.2993823089815034],[120,291,65,0.31467825372859176],[120,291,66,0.32877546354364373],[120,291,67,0.34138712481588657],[120,291,68,0.35226087100460013],[120,291,69,0.3611847985925849],[120,291,70,0.3679933067079434],[120,291,71,0.37257276041412024],[120,291,72,0.3748704227100765],[120,291,73,0.37520750273954],[120,291,74,0.37442554340035533],[120,291,75,0.3732768490548291],[120,291,76,0.37237272324905896],[120,291,77,0.37219809886415317],[120,291,78,0.3731246931048276],[120,291,79,0.37542268732544576],[120,292,64,0.3041555138356157],[120,292,65,0.3181257603035904],[120,292,66,0.33104262022844455],[120,292,67,0.34261569658576424],[120,292,68,0.3525863890293124],[120,292,69,0.36073379833077623],[120,292,70,0.3668804721060208],[120,292,71,0.3708979918277922],[120,292,72,0.3727159173743384],[120,292,73,0.3726418339881995],[120,292,74,0.3715148914492175],[120,292,75,0.37008600178908346],[120,292,76,0.36896472917945466],[120,292,77,0.3686338752466546],[120,292,78,0.3694626173617339],[120,292,79,0.3717181999059421],[120,293,64,0.3108473993809543],[120,293,65,0.32361008422218224],[120,293,66,0.33546060421509494],[120,293,67,0.34610491910255325],[120,293,68,0.3552783308014111],[120,293,69,0.3627513039327888],[120,293,70,0.3683351459054725],[120,293,71,0.3718875465523742],[120,293,72,0.37332153758828224],[120,293,73,0.37293001821573757],[120,293,74,0.371544590725709],[120,293,75,0.36990992924590854],[120,293,76,0.3686297862145968],[120,293,77,0.3681814870747492],[120,293,78,0.36892900888717706],[120,293,79,0.37113464286265835],[120,294,64,0.3193058802090983],[120,294,65,0.3309879676972656],[120,294,66,0.3418933826238134],[120,294,67,0.35172444981314066],[120,294,68,0.3602106096112073],[120,294,69,0.36711418364521814],[120,294,70,0.37223601892499436],[120,294,71,0.3754210102859714],[120,294,72,0.3765670770454164],[120,294,73,0.3759515299380055],[120,294,74,0.3743932436894557],[120,294,75,0.37262578360427345],[120,294,76,0.3712430135845869],[120,294,77,0.3707134523336154],[120,294,78,0.3713932471446011],[120,294,79,0.37353776527526006],[120,295,64,0.3293457955058236],[120,295,65,0.34008166147083674],[120,295,66,0.35016906420168104],[120,295,67,0.35930677268205663],[120,295,68,0.36721870219860303],[120,295,69,0.373659655650519],[120,295,70,0.3784209623791098],[120,295,71,0.3813360145172102],[120,295,72,0.3822892630987685],[120,295,73,0.3815417093790791],[120,295,74,0.3798943769667524],[120,295,75,0.3780649020809308],[120,295,76,0.3766332417774335],[120,295,77,0.3760558425531344],[120,295,78,0.3766784628003961],[120,295,79,0.3787476491116134],[120,296,64,0.3407557938323571],[120,296,65,0.3506856088009298],[120,296,66,0.3600864007800532],[120,296,67,0.3686535346812173],[120,296,68,0.37610583676840714],[120,296,69,0.38219134264849175],[120,296,70,0.38669296221293364],[120,296,71,0.38943406153075844],[120,296,72,0.39028748064567026],[120,296,73,0.3894973895015949],[120,296,74,0.3878419706081462],[120,296,75,0.3860182329735335],[120,296,76,0.38458832619340977],[120,296,77,0.3839934718934849],[120,296,78,0.3845665877219265],[120,296,79,0.3865436038916028],[120,297,64,0.3533046797571184],[120,297,65,0.3625726315965494],[120,297,66,0.3714208303094589],[120,297,67,0.37954146234884],[120,297,68,0.38664879859452206],[120,297,69,0.3924849805810142],[120,297,70,0.39682574322190384],[120,297,71,0.39948607403075265],[120,297,72,0.4003292548131776],[120,297,73,0.3995823154251994],[120,297,74,0.39799581251824584],[120,297,75,0.39624161862760987],[120,297,76,0.39486034822486366],[120,297,77,0.394275002704406],[120,297,78,0.39480334885763696],[120,297,79,0.3966690308348151],[120,298,64,0.36674722233843654],[120,298,65,0.3754996187010527],[120,298,66,0.3839300614724428],[120,298,67,0.3917278584179772],[120,298,68,0.3986033532134572],[120,298,69,0.4042937815004899],[120,298,70,0.408569082956973],[120,298,71,0.4112376693826478],[120,298,72,0.41215549244467725],[120,298,73,0.4115323562337103],[120,298,74,0.41008667805839794],[120,298,75,0.4084609353280939],[120,298,76,0.40717070376222897],[120,298,77,0.4066179675589287],[120,298,78,0.40710320600009653],[120,298,79,0.40883625649300903],[120,299,64,0.3808294254578868],[120,299,65,0.3892127163236335],[120,299,66,0.3973591998739881],[120,299,67,0.40495567851430025],[120,299,68,0.41170928720676875],[120,299,69,0.41735345058157614],[120,299,70,0.42165381541478747],[120,299,71,0.4244141584729737],[120,299,72,0.42548548238711015],[120,299,73,0.4250605091703513],[120,299,74,0.4238213348215337],[120,299,75,0.4223770901146431],[120,299,76,0.4212150791253986],[120,299,77,0.42071370776066763],[120,299,78,0.42115423343099734],[120,299,79,0.42273133586631256],[120,300,64,0.39529326000458737],[120,300,65,0.4034520206192523],[120,300,66,0.41144541580987426],[120,300,67,0.4189581879235026],[120,300,68,0.42569506657282974],[120,300,69,0.43138685727663956],[120,300,70,0.4357965245133395],[120,300,71,0.4387252691875322],[120,300,72,0.44002165457940384],[120,300,73,0.4398616962217232],[120,300,74,0.4388873725799131],[120,300,75,0.4376708745215409],[120,300,76,0.4366683144213328],[120,300,77,0.4362322283256145],[120,300,78,0.4366229454491226],[120,300,79,0.43801882500423184],[120,301,64,0.40988085791005735],[120,301,65,0.4179557724166062],[120,301,66,0.4259221536125654],[120,301,67,0.4334631984278993],[120,301,68,0.44028211268747797],[120,301,69,0.4461083606144468],[120,301,70,0.4507039273525634],[120,301,71,0.45386959450746167],[120,301,72,0.45545409794148667],[120,301,73,0.4556173530898231],[120,301,74,0.45495785840501146],[120,301,75,0.45400767524136776],[120,301,76,0.45318915432701745],[120,301,77,0.45282696943749023],[120,301,78,0.45315906578028087],[120,301,79,0.4543465230904149],[120,302,64,0.4243381680339282],[120,302,65,0.4324640540944452],[120,302,66,0.440522882574935],[120,302,67,0.44819688521255424],[120,302,68,0.4551886958539073],[120,302,69,0.4612277886424953],[120,302,70,0.4660769472603281],[120,302,71,0.46953876522366755],[120,302,72,0.4714648370644391],[120,302,73,0.471999810552728],[120,302,74,0.4716958169602414],[120,302,75,0.47104204171319575],[120,302,76,0.4704248862985966],[120,302,77,0.4701394943775399],[120,302,78,0.47040024087014665],[120,302,79,0.4713501840121632],[120,303,64,0.4384180739006748],[120,303,65,0.44672198860636836],[120,303,66,0.45498438945194153],[120,303,67,0.46288718384100513],[120,303,68,0.47013344644181776],[120,303,69,0.47645407201294443],[120,303,70,0.4816144766237128],[120,303,71,0.48542134726943925],[120,303,72,0.4877318677015265],[120,303,73,0.48867646821360367],[120,303,74,0.488758535966073],[120,303,75,0.488422110634786],[120,303,76,0.4880158662060684],[120,303,77,0.4878040939280736],[120,303,78,0.4879766970592334],[120,303,79,0.4886581974138372],[120,304,64,0.45188297328655197],[120,304,65,0.4604824406533437],[120,304,66,0.46904961253954325],[120,304,67,0.4772667672999449],[120,304,68,0.484838483615265],[120,304,69,0.49149853171166996],[120,304,70,0.4970168295051904],[120,304,71,0.5012064636709772],[120,304,72,0.5039329510599404],[120,304,73,0.505313760637984],[120,304,74,0.5058016968376199],[120,304,75,0.505793887398972],[120,304,76,0.5055999313938496],[120,304,77,0.5054523072501804],[120,304,78,0.505515841640541],[120,304,79,0.5058962392348171],[120,305,64,0.4645068196579435],[120,305,65,0.47350822000508286],[120,305,66,0.4824700173319222],[120,305,67,0.49107560311384363],[120,305,68,0.49903216165009157],[120,305,69,0.5060778209312237],[120,305,70,0.5119888840443847],[120,305,71,0.516587141116374],[120,305,72,0.5197491668936726],[120,305,73,0.5215809158796046],[120,305,74,0.5224833304948411],[120,305,75,0.5228053844542445],[120,305,76,0.5228167011670848],[120,305,77,0.5227173592353518],[120,305,78,0.5226468077994737],[120,305,79,0.5226918917314763],[120,306,64,0.47607662546005514],[120,306,65,0.48557378696927883],[120,306,66,0.4950075137560913],[120,306,67,0.5040630905286659],[120,306,68,0.5124514338402001],[120,306,69,0.5199165210870541],[120,306,70,0.5262429146448703],[120,306,71,0.5312633811426357],[120,306,72,0.5348682253972239],[120,306,73,0.5371535063946293],[120,306,74,0.5384675983453219],[120,306,75,0.5391106165896272],[120,306,76,0.5393117647039172],[120,306,77,0.5392385143313579],[120,306,78,0.5390049434365041],[120,306,79,0.5386792329837642],[120,307,64,0.48639342725659995],[120,307,65,0.49646646000928824],[120,307,66,0.5064359149844013],[120,307,67,0.5159897777651345],[120,307,68,0.5248438339930226],[120,307,69,0.5327493919772642],[120,307,70,0.5395011139461873],[120,307,71,0.5449449559408217],[120,307,72,0.5489875379001237],[120,307,73,0.5517167923441282],[120,307,74,0.5534283984393858],[120,307,75,0.5543734531434941],[120,307,76,0.5547407563932703],[120,307,77,0.5546653468418282],[120,307,78,0.5542362438719328],[120,307,79,0.5535033958856622],[120,308,64,0.4952727127199449],[120,308,65,0.5059871255097882],[120,308,66,0.516541937824545],[120,308,67,0.5266286593411983],[120,308,68,0.5359690755139349],[120,308,69,0.5443232760857265],[120,308,70,0.5514978045809928],[120,308,71,0.5573539287793068],[120,308,72,0.561817046362364],[120,308,73,0.5649688572850169],[120,308,74,0.5670527967978489],[120,308,75,0.5682713271367273],[120,308,76,0.5687733185986321],[120,308,77,0.568661927700111],[120,308,78,0.568001728433403],[120,308,79,0.5668250966202432],[120,309,64,0.5025443094727551],[120,309,65,0.5139504496913782],[120,309,66,0.5251257446879511],[120,309,67,0.5357660534645229],[120,309,68,0.5456002680803341],[120,309,69,0.554398657029188],[120,309,70,0.5619813407178701],[120,309,71,0.5682268990455879],[120,309,72,0.5730818116710508],[120,309,73,0.5766235362496447],[120,309,74,0.5790442839124852],[120,309,75,0.5804988013301822],[120,309,76,0.5810969518476928],[120,309,77,0.5809109277171658],[120,309,78,0.5799817609258221],[120,309,79,0.5783251326188911],[120,310,64,0.508051735779286],[120,310,65,0.5201845926723525],[120,310,66,0.5320010271348853],[120,310,67,0.543202059493417],[120,310,68,0.553524751903913],[120,310,69,0.5627508721470067],[120,310,70,0.570715699388564],[120,310,71,0.5773169719055341],[120,310,72,0.5825243607373193],[120,310,73,0.5864131362132137],[120,310,74,0.5891258564185298],[120,310,75,0.5907709912059171],[120,310,76,0.5914207524474449],[120,310,77,0.5911176373032233],[120,310,78,0.589880313983561],[120,310,79,0.587708850004689],[120,311,64,0.511651013088637],[120,311,65,0.5245304246798768],[120,311,66,0.5369946309983925],[120,311,67,0.5487505954682227],[120,311,68,0.5595445495830254],[120,311,69,0.5691709792352955],[120,311,70,0.5774817616012847],[120,311,71,0.5843954525815748],[120,311,72,0.589906792394849],[120,311,73,0.5940909489502197],[120,311,74,0.5970429239402584],[120,311,75,0.5988268448730808],[120,311,76,0.5994790375254735],[120,311,77,0.5990139026638013],[120,311,78,0.5974291773053706],[120,311,79,0.5947105805202584],[120,312,64,0.5132089404278706],[120,312,65,0.5268402444085497],[120,312,66,0.5399457230851572],[120,312,67,0.5522390157113429],[120,312,68,0.5634764355434427],[120,312,69,0.5734662774238842],[120,312,70,0.5820782832386129],[120,312,71,0.5892532652484953],[120,312,72,0.5950126420987878],[120,312,73,0.5994335562788559],[120,312,74,0.6025660411087127],[120,312,75,0.6044322798976624],[120,312,76,0.605034857496782],[120,312,77,0.6043619784695446],[120,312,78,0.6023921097716058],[120,312,79,0.5990980479397727],[120,313,64,0.5126008306465267],[120,313,65,0.5269759995278097],[120,313,66,0.5407044994546566],[120,313,67,0.5535073084972022],[120,313,68,0.5651516230686934],[120,313,69,0.575460482197195],[120,313,70,0.5843225557410041],[120,313,71,0.5917020965477265],[120,313,72,0.5976485054258668],[120,313,73,0.6022429276940554],[120,313,74,0.6054934647521579],[120,313,75,0.6073831770565761],[120,313,76,0.6078833959565296],[120,313,77,0.6069582970001755],[120,313,78,0.6045689354439655],[120,313,79,0.6006767439652674],[120,314,64,0.5097077085112706],[120,314,65,0.524807009336989],[120,314,66,0.5391304352754862],[120,314,67,0.5524068737910905],[120,314,68,0.56441506891902],[120,314,69,0.5749935545581569],[120,314,70,0.5840507565750971],[120,314,71,0.5915752637194296],[120,314,72,0.5976454203750872],[120,314,73,0.6023483103886429],[120,314,74,0.6056535362588114],[120,314,75,0.6075082310157216],[120,314,76,0.6078552569983903],[120,314,77,0.6066371537623318],[120,314,78,0.6037995834475826],[120,314,79,0.599294273607138],[120,315,64,0.5044129706522033],[120,315,65,0.5202071895694825],[120,315,66,0.5350900762602491],[120,315,67,0.548798881058209],[120,315,68,0.5611243955401937],[120,315,69,0.5719211843363035],[120,315,70,0.5811179894878898],[120,315,71,0.5887283073533408],[120,315,72,0.5948600084698671],[120,315,73,0.5996079116633921],[120,315,74,0.6029068891125601],[120,315,75,0.6046716579326362],[120,315,76,0.6048196399590725],[120,315,77,0.6032743095817638],[120,315,78,0.5999680717358623],[120,315,79,0.5948446700491594],[120,316,64,0.4965985073590744],[120,316,65,0.5130517793443267],[120,316,66,0.5284543716773732],[120,316,67,0.5425522071413477],[120,316,68,0.5551484308606885],[120,316,69,0.5661139276386474],[120,316,70,0.5753980145454611],[120,316,71,0.5830393087571529],[120,316,72,0.5891753746605004],[120,316,73,0.5939103737249333],[120,316,74,0.5971484816007044],[120,316,75,0.5987757599828678],[120,316,76,0.598687401588224],[120,316,77,0.5967905091691879],[120,316,78,0.5930064347374591],[120,316,79,0.5872726789975001],[120,317,64,0.4861402862285362],[120,317,65,0.503213570266295],[120,317,66,0.519095548940923],[120,317,67,0.5335409542082307],[120,317,68,0.5463653656782106],[120,317,69,0.5574559984442714],[120,317,70,0.5667826679571188],[120,317,71,0.5744089319432462],[120,317,72,0.5805017660276949],[120,317,73,0.5851760408722176],[120,317,74,0.5883094546943661],[120,317,75,0.5897633468106561],[120,317,76,0.5894140056442297],[120,317,77,0.5871549161602543],[120,317,78,0.5828985948857792],[120,317,79,0.5765780125140496],[120,318,64,0.4729033976627479],[120,318,65,0.4905586376748111],[120,318,66,0.5068835297787044],[120,318,67,0.5216415477688049],[120,318,68,0.5346605286358435],[120,318,69,0.5458437143428941],[120,318,70,0.5551809716852337],[120,318,71,0.5627601902340359],[120,318,72,0.5687769892874455],[120,318,73,0.5733580190717906],[120,318,74,0.5763588151018163],[120,318,75,0.5776200139041667],[120,318,76,0.5770023599161663],[120,318,77,0.5743884646298862],[120,318,78,0.5696841780312719],[120,318,79,0.5628195723343365],[120,319,64,0.4567365622176541],[120,319,65,0.47494157404004933],[120,319,66,0.4916818879770646],[120,319,67,0.5067294147609374],[120,319,68,0.519923778786337],[120,319,69,0.5311835964159869],[120,319,70,0.5405179328393909],[120,319,71,0.5480379374846142],[120,319,72,0.5539665870959812],[120,319,73,0.5584430279206761],[120,319,74,0.5613049434935827],[120,319,75,0.5623762778941958],[120,319,76,0.5615055406708783],[120,319,77,0.5585671270800173],[120,319,78,0.5534622727355941],[120,319,79,0.5461196426691618],[121,-64,64,64.0],[121,-64,65,64.0],[121,-64,66,64.0],[121,-64,67,64.0],[121,-64,68,64.0],[121,-64,69,64.0],[121,-64,70,64.0],[121,-64,71,64.0],[121,-64,72,64.0],[121,-64,73,64.0],[121,-64,74,64.0],[121,-64,75,64.0],[121,-64,76,64.0],[121,-64,77,64.0],[121,-64,78,64.0],[121,-64,79,64.0],[121,-63,64,64.0],[121,-63,65,64.0],[121,-63,66,64.0],[121,-63,67,64.0],[121,-63,68,64.0],[121,-63,69,64.0],[121,-63,70,64.0],[121,-63,71,64.0],[121,-63,72,64.0],[121,-63,73,64.0],[121,-63,74,64.0],[121,-63,75,64.0],[121,-63,76,64.0],[121,-63,77,64.0],[121,-63,78,64.0],[121,-63,79,64.0],[121,-62,64,64.0],[121,-62,65,64.0],[121,-62,66,64.0],[121,-62,67,64.0],[121,-62,68,64.0],[121,-62,69,64.0],[121,-62,70,64.0],[121,-62,71,64.0],[121,-62,72,64.0],[121,-62,73,64.0],[121,-62,74,64.0],[121,-62,75,64.0],[121,-62,76,64.0],[121,-62,77,64.0],[121,-62,78,64.0],[121,-62,79,64.0],[121,-61,64,64.0],[121,-61,65,64.0],[121,-61,66,64.0],[121,-61,67,64.0],[121,-61,68,64.0],[121,-61,69,64.0],[121,-61,70,64.0],[121,-61,71,64.0],[121,-61,72,64.0],[121,-61,73,64.0],[121,-61,74,64.0],[121,-61,75,64.0],[121,-61,76,64.0],[121,-61,77,64.0],[121,-61,78,64.0],[121,-61,79,64.0],[121,-60,64,64.0],[121,-60,65,64.0],[121,-60,66,64.0],[121,-60,67,64.0],[121,-60,68,64.0],[121,-60,69,64.0],[121,-60,70,64.0],[121,-60,71,64.0],[121,-60,72,64.0],[121,-60,73,64.0],[121,-60,74,64.0],[121,-60,75,64.0],[121,-60,76,64.0],[121,-60,77,64.0],[121,-60,78,64.0],[121,-60,79,64.0],[121,-59,64,64.0],[121,-59,65,64.0],[121,-59,66,64.0],[121,-59,67,64.0],[121,-59,68,64.0],[121,-59,69,64.0],[121,-59,70,64.0],[121,-59,71,64.0],[121,-59,72,64.0],[121,-59,73,64.0],[121,-59,74,64.0],[121,-59,75,64.0],[121,-59,76,64.0],[121,-59,77,64.0],[121,-59,78,64.0],[121,-59,79,64.0],[121,-58,64,64.0],[121,-58,65,64.0],[121,-58,66,64.0],[121,-58,67,64.0],[121,-58,68,64.0],[121,-58,69,64.0],[121,-58,70,64.0],[121,-58,71,64.0],[121,-58,72,64.0],[121,-58,73,64.0],[121,-58,74,64.0],[121,-58,75,64.0],[121,-58,76,64.0],[121,-58,77,64.0],[121,-58,78,64.0],[121,-58,79,64.0],[121,-57,64,64.0],[121,-57,65,64.0],[121,-57,66,64.0],[121,-57,67,64.0],[121,-57,68,64.0],[121,-57,69,64.0],[121,-57,70,64.0],[121,-57,71,64.0],[121,-57,72,64.0],[121,-57,73,64.0],[121,-57,74,64.0],[121,-57,75,64.0],[121,-57,76,64.0],[121,-57,77,64.0],[121,-57,78,64.0],[121,-57,79,64.0],[121,-56,64,64.0],[121,-56,65,64.0],[121,-56,66,64.0],[121,-56,67,64.0],[121,-56,68,64.0],[121,-56,69,64.0],[121,-56,70,64.0],[121,-56,71,64.0],[121,-56,72,64.0],[121,-56,73,64.0],[121,-56,74,64.0],[121,-56,75,64.0],[121,-56,76,64.0],[121,-56,77,64.0],[121,-56,78,64.0],[121,-56,79,64.0],[121,-55,64,64.0],[121,-55,65,64.0],[121,-55,66,64.0],[121,-55,67,64.0],[121,-55,68,64.0],[121,-55,69,64.0],[121,-55,70,64.0],[121,-55,71,64.0],[121,-55,72,64.0],[121,-55,73,64.0],[121,-55,74,64.0],[121,-55,75,64.0],[121,-55,76,64.0],[121,-55,77,64.0],[121,-55,78,64.0],[121,-55,79,64.0],[121,-54,64,64.0],[121,-54,65,64.0],[121,-54,66,64.0],[121,-54,67,64.0],[121,-54,68,64.0],[121,-54,69,64.0],[121,-54,70,64.0],[121,-54,71,64.0],[121,-54,72,64.0],[121,-54,73,64.0],[121,-54,74,64.0],[121,-54,75,64.0],[121,-54,76,64.0],[121,-54,77,64.0],[121,-54,78,64.0],[121,-54,79,64.0],[121,-53,64,64.0],[121,-53,65,64.0],[121,-53,66,64.0],[121,-53,67,64.0],[121,-53,68,64.0],[121,-53,69,64.0],[121,-53,70,64.0],[121,-53,71,64.0],[121,-53,72,64.0],[121,-53,73,64.0],[121,-53,74,64.0],[121,-53,75,64.0],[121,-53,76,64.0],[121,-53,77,64.0],[121,-53,78,64.0],[121,-53,79,64.0],[121,-52,64,64.0],[121,-52,65,64.0],[121,-52,66,64.0],[121,-52,67,64.0],[121,-52,68,64.0],[121,-52,69,64.0],[121,-52,70,64.0],[121,-52,71,64.0],[121,-52,72,64.0],[121,-52,73,64.0],[121,-52,74,64.0],[121,-52,75,64.0],[121,-52,76,64.0],[121,-52,77,64.0],[121,-52,78,64.0],[121,-52,79,64.0],[121,-51,64,64.0],[121,-51,65,64.0],[121,-51,66,64.0],[121,-51,67,64.0],[121,-51,68,64.0],[121,-51,69,64.0],[121,-51,70,64.0],[121,-51,71,64.0],[121,-51,72,64.0],[121,-51,73,64.0],[121,-51,74,64.0],[121,-51,75,64.0],[121,-51,76,64.0],[121,-51,77,64.0],[121,-51,78,64.0],[121,-51,79,64.0],[121,-50,64,64.0],[121,-50,65,64.0],[121,-50,66,64.0],[121,-50,67,64.0],[121,-50,68,64.0],[121,-50,69,64.0],[121,-50,70,64.0],[121,-50,71,64.0],[121,-50,72,64.0],[121,-50,73,64.0],[121,-50,74,64.0],[121,-50,75,64.0],[121,-50,76,64.0],[121,-50,77,64.0],[121,-50,78,64.0],[121,-50,79,64.0],[121,-49,64,64.0],[121,-49,65,64.0],[121,-49,66,64.0],[121,-49,67,64.0],[121,-49,68,64.0],[121,-49,69,64.0],[121,-49,70,64.0],[121,-49,71,64.0],[121,-49,72,64.0],[121,-49,73,64.0],[121,-49,74,64.0],[121,-49,75,64.0],[121,-49,76,64.0],[121,-49,77,64.0],[121,-49,78,64.0],[121,-49,79,64.0],[121,-48,64,64.0],[121,-48,65,64.0],[121,-48,66,64.0],[121,-48,67,64.0],[121,-48,68,64.0],[121,-48,69,64.0],[121,-48,70,64.0],[121,-48,71,64.0],[121,-48,72,64.0],[121,-48,73,64.0],[121,-48,74,64.0],[121,-48,75,64.0],[121,-48,76,64.0],[121,-48,77,64.0],[121,-48,78,64.0],[121,-48,79,64.0],[121,-47,64,64.0],[121,-47,65,64.0],[121,-47,66,64.0],[121,-47,67,64.0],[121,-47,68,64.0],[121,-47,69,64.0],[121,-47,70,64.0],[121,-47,71,64.0],[121,-47,72,64.0],[121,-47,73,64.0],[121,-47,74,64.0],[121,-47,75,64.0],[121,-47,76,64.0],[121,-47,77,64.0],[121,-47,78,64.0],[121,-47,79,64.0],[121,-46,64,64.0],[121,-46,65,64.0],[121,-46,66,64.0],[121,-46,67,64.0],[121,-46,68,64.0],[121,-46,69,64.0],[121,-46,70,64.0],[121,-46,71,64.0],[121,-46,72,64.0],[121,-46,73,64.0],[121,-46,74,64.0],[121,-46,75,64.0],[121,-46,76,64.0],[121,-46,77,64.0],[121,-46,78,64.0],[121,-46,79,64.0],[121,-45,64,64.0],[121,-45,65,64.0],[121,-45,66,64.0],[121,-45,67,64.0],[121,-45,68,64.0],[121,-45,69,64.0],[121,-45,70,64.0],[121,-45,71,64.0],[121,-45,72,64.0],[121,-45,73,64.0],[121,-45,74,64.0],[121,-45,75,64.0],[121,-45,76,64.0],[121,-45,77,64.0],[121,-45,78,64.0],[121,-45,79,64.0],[121,-44,64,64.0],[121,-44,65,64.0],[121,-44,66,64.0],[121,-44,67,64.0],[121,-44,68,64.0],[121,-44,69,64.0],[121,-44,70,64.0],[121,-44,71,64.0],[121,-44,72,64.0],[121,-44,73,64.0],[121,-44,74,64.0],[121,-44,75,64.0],[121,-44,76,64.0],[121,-44,77,64.0],[121,-44,78,64.0],[121,-44,79,64.0],[121,-43,64,64.0],[121,-43,65,64.0],[121,-43,66,64.0],[121,-43,67,64.0],[121,-43,68,64.0],[121,-43,69,64.0],[121,-43,70,64.0],[121,-43,71,64.0],[121,-43,72,64.0],[121,-43,73,64.0],[121,-43,74,64.0],[121,-43,75,64.0],[121,-43,76,64.0],[121,-43,77,64.0],[121,-43,78,64.0],[121,-43,79,64.0],[121,-42,64,64.0],[121,-42,65,64.0],[121,-42,66,64.0],[121,-42,67,64.0],[121,-42,68,64.0],[121,-42,69,64.0],[121,-42,70,64.0],[121,-42,71,64.0],[121,-42,72,64.0],[121,-42,73,64.0],[121,-42,74,64.0],[121,-42,75,64.0],[121,-42,76,64.0],[121,-42,77,64.0],[121,-42,78,64.0],[121,-42,79,64.0],[121,-41,64,64.0],[121,-41,65,64.0],[121,-41,66,64.0],[121,-41,67,64.0],[121,-41,68,64.0],[121,-41,69,64.0],[121,-41,70,64.0],[121,-41,71,64.0],[121,-41,72,64.0],[121,-41,73,64.0],[121,-41,74,64.0],[121,-41,75,64.0],[121,-41,76,64.0],[121,-41,77,64.0],[121,-41,78,64.0],[121,-41,79,64.0],[121,-40,64,64.0],[121,-40,65,64.0],[121,-40,66,64.0],[121,-40,67,64.0],[121,-40,68,64.0],[121,-40,69,64.0],[121,-40,70,64.0],[121,-40,71,64.0],[121,-40,72,64.0],[121,-40,73,64.0],[121,-40,74,64.0],[121,-40,75,64.0],[121,-40,76,64.0],[121,-40,77,64.0],[121,-40,78,64.0],[121,-40,79,64.0],[121,-39,64,64.0],[121,-39,65,64.0],[121,-39,66,64.0],[121,-39,67,64.0],[121,-39,68,64.0],[121,-39,69,64.0],[121,-39,70,64.0],[121,-39,71,64.0],[121,-39,72,64.0],[121,-39,73,64.0],[121,-39,74,64.0],[121,-39,75,64.0],[121,-39,76,64.0],[121,-39,77,64.0],[121,-39,78,64.0],[121,-39,79,64.0],[121,-38,64,64.0],[121,-38,65,64.0],[121,-38,66,64.0],[121,-38,67,64.0],[121,-38,68,64.0],[121,-38,69,64.0],[121,-38,70,64.0],[121,-38,71,64.0],[121,-38,72,64.0],[121,-38,73,64.0],[121,-38,74,64.0],[121,-38,75,64.0],[121,-38,76,64.0],[121,-38,77,64.0],[121,-38,78,64.0],[121,-38,79,64.0],[121,-37,64,64.0],[121,-37,65,64.0],[121,-37,66,64.0],[121,-37,67,64.0],[121,-37,68,64.0],[121,-37,69,64.0],[121,-37,70,64.0],[121,-37,71,64.0],[121,-37,72,64.0],[121,-37,73,64.0],[121,-37,74,64.0],[121,-37,75,64.0],[121,-37,76,64.0],[121,-37,77,64.0],[121,-37,78,64.0],[121,-37,79,64.0],[121,-36,64,64.0],[121,-36,65,64.0],[121,-36,66,64.0],[121,-36,67,64.0],[121,-36,68,64.0],[121,-36,69,64.0],[121,-36,70,64.0],[121,-36,71,64.0],[121,-36,72,64.0],[121,-36,73,64.0],[121,-36,74,64.0],[121,-36,75,64.0],[121,-36,76,64.0],[121,-36,77,64.0],[121,-36,78,64.0],[121,-36,79,64.0],[121,-35,64,64.0],[121,-35,65,64.0],[121,-35,66,64.0],[121,-35,67,64.0],[121,-35,68,64.0],[121,-35,69,64.0],[121,-35,70,64.0],[121,-35,71,64.0],[121,-35,72,64.0],[121,-35,73,64.0],[121,-35,74,64.0],[121,-35,75,64.0],[121,-35,76,64.0],[121,-35,77,64.0],[121,-35,78,64.0],[121,-35,79,64.0],[121,-34,64,64.0],[121,-34,65,64.0],[121,-34,66,64.0],[121,-34,67,64.0],[121,-34,68,64.0],[121,-34,69,64.0],[121,-34,70,64.0],[121,-34,71,64.0],[121,-34,72,64.0],[121,-34,73,64.0],[121,-34,74,64.0],[121,-34,75,64.0],[121,-34,76,64.0],[121,-34,77,64.0],[121,-34,78,64.0],[121,-34,79,64.0],[121,-33,64,64.0],[121,-33,65,64.0],[121,-33,66,64.0],[121,-33,67,64.0],[121,-33,68,64.0],[121,-33,69,64.0],[121,-33,70,64.0],[121,-33,71,64.0],[121,-33,72,64.0],[121,-33,73,64.0],[121,-33,74,64.0],[121,-33,75,64.0],[121,-33,76,64.0],[121,-33,77,64.0],[121,-33,78,64.0],[121,-33,79,64.0],[121,-32,64,64.0],[121,-32,65,64.0],[121,-32,66,64.0],[121,-32,67,64.0],[121,-32,68,64.0],[121,-32,69,64.0],[121,-32,70,64.0],[121,-32,71,64.0],[121,-32,72,64.0],[121,-32,73,64.0],[121,-32,74,64.0],[121,-32,75,64.0],[121,-32,76,64.0],[121,-32,77,64.0],[121,-32,78,64.0],[121,-32,79,64.0],[121,-31,64,64.0],[121,-31,65,64.0],[121,-31,66,64.0],[121,-31,67,64.0],[121,-31,68,64.0],[121,-31,69,64.0],[121,-31,70,64.0],[121,-31,71,64.0],[121,-31,72,64.0],[121,-31,73,64.0],[121,-31,74,64.0],[121,-31,75,64.0],[121,-31,76,64.0],[121,-31,77,64.0],[121,-31,78,64.0],[121,-31,79,64.0],[121,-30,64,64.0],[121,-30,65,64.0],[121,-30,66,64.0],[121,-30,67,64.0],[121,-30,68,64.0],[121,-30,69,64.0],[121,-30,70,64.0],[121,-30,71,64.0],[121,-30,72,64.0],[121,-30,73,64.0],[121,-30,74,64.0],[121,-30,75,64.0],[121,-30,76,64.0],[121,-30,77,64.0],[121,-30,78,64.0],[121,-30,79,64.0],[121,-29,64,64.0],[121,-29,65,64.0],[121,-29,66,64.0],[121,-29,67,64.0],[121,-29,68,64.0],[121,-29,69,64.0],[121,-29,70,64.0],[121,-29,71,64.0],[121,-29,72,64.0],[121,-29,73,64.0],[121,-29,74,64.0],[121,-29,75,64.0],[121,-29,76,64.0],[121,-29,77,64.0],[121,-29,78,64.0],[121,-29,79,64.0],[121,-28,64,64.0],[121,-28,65,64.0],[121,-28,66,64.0],[121,-28,67,64.0],[121,-28,68,64.0],[121,-28,69,64.0],[121,-28,70,64.0],[121,-28,71,64.0],[121,-28,72,64.0],[121,-28,73,64.0],[121,-28,74,64.0],[121,-28,75,64.0],[121,-28,76,64.0],[121,-28,77,64.0],[121,-28,78,64.0],[121,-28,79,64.0],[121,-27,64,64.0],[121,-27,65,64.0],[121,-27,66,64.0],[121,-27,67,64.0],[121,-27,68,64.0],[121,-27,69,64.0],[121,-27,70,64.0],[121,-27,71,64.0],[121,-27,72,64.0],[121,-27,73,64.0],[121,-27,74,64.0],[121,-27,75,64.0],[121,-27,76,64.0],[121,-27,77,64.0],[121,-27,78,64.0],[121,-27,79,64.0],[121,-26,64,64.0],[121,-26,65,64.0],[121,-26,66,64.0],[121,-26,67,64.0],[121,-26,68,64.0],[121,-26,69,64.0],[121,-26,70,64.0],[121,-26,71,64.0],[121,-26,72,64.0],[121,-26,73,64.0],[121,-26,74,64.0],[121,-26,75,64.0],[121,-26,76,64.0],[121,-26,77,64.0],[121,-26,78,64.0],[121,-26,79,64.0],[121,-25,64,64.0],[121,-25,65,64.0],[121,-25,66,64.0],[121,-25,67,64.0],[121,-25,68,64.0],[121,-25,69,64.0],[121,-25,70,64.0],[121,-25,71,64.0],[121,-25,72,64.0],[121,-25,73,64.0],[121,-25,74,64.0],[121,-25,75,64.0],[121,-25,76,64.0],[121,-25,77,64.0],[121,-25,78,64.0],[121,-25,79,64.0],[121,-24,64,64.0],[121,-24,65,64.0],[121,-24,66,64.0],[121,-24,67,64.0],[121,-24,68,64.0],[121,-24,69,64.0],[121,-24,70,64.0],[121,-24,71,64.0],[121,-24,72,64.0],[121,-24,73,64.0],[121,-24,74,64.0],[121,-24,75,64.0],[121,-24,76,64.0],[121,-24,77,64.0],[121,-24,78,64.0],[121,-24,79,64.0],[121,-23,64,64.0],[121,-23,65,64.0],[121,-23,66,64.0],[121,-23,67,64.0],[121,-23,68,64.0],[121,-23,69,64.0],[121,-23,70,64.0],[121,-23,71,64.0],[121,-23,72,64.0],[121,-23,73,64.0],[121,-23,74,64.0],[121,-23,75,64.0],[121,-23,76,64.0],[121,-23,77,64.0],[121,-23,78,64.0],[121,-23,79,64.0],[121,-22,64,64.0],[121,-22,65,64.0],[121,-22,66,64.0],[121,-22,67,64.0],[121,-22,68,64.0],[121,-22,69,64.0],[121,-22,70,64.0],[121,-22,71,64.0],[121,-22,72,64.0],[121,-22,73,64.0],[121,-22,74,64.0],[121,-22,75,64.0],[121,-22,76,64.0],[121,-22,77,64.0],[121,-22,78,64.0],[121,-22,79,64.0],[121,-21,64,64.0],[121,-21,65,64.0],[121,-21,66,64.0],[121,-21,67,64.0],[121,-21,68,64.0],[121,-21,69,64.0],[121,-21,70,64.0],[121,-21,71,64.0],[121,-21,72,64.0],[121,-21,73,64.0],[121,-21,74,64.0],[121,-21,75,64.0],[121,-21,76,64.0],[121,-21,77,64.0],[121,-21,78,64.0],[121,-21,79,64.0],[121,-20,64,64.0],[121,-20,65,64.0],[121,-20,66,64.0],[121,-20,67,64.0],[121,-20,68,64.0],[121,-20,69,64.0],[121,-20,70,64.0],[121,-20,71,64.0],[121,-20,72,64.0],[121,-20,73,64.0],[121,-20,74,64.0],[121,-20,75,64.0],[121,-20,76,64.0],[121,-20,77,64.0],[121,-20,78,64.0],[121,-20,79,64.0],[121,-19,64,64.0],[121,-19,65,64.0],[121,-19,66,64.0],[121,-19,67,64.0],[121,-19,68,64.0],[121,-19,69,64.0],[121,-19,70,64.0],[121,-19,71,64.0],[121,-19,72,64.0],[121,-19,73,64.0],[121,-19,74,64.0],[121,-19,75,64.0],[121,-19,76,64.0],[121,-19,77,64.0],[121,-19,78,64.0],[121,-19,79,64.0],[121,-18,64,64.0],[121,-18,65,64.0],[121,-18,66,64.0],[121,-18,67,64.0],[121,-18,68,64.0],[121,-18,69,64.0],[121,-18,70,64.0],[121,-18,71,64.0],[121,-18,72,64.0],[121,-18,73,64.0],[121,-18,74,64.0],[121,-18,75,64.0],[121,-18,76,64.0],[121,-18,77,64.0],[121,-18,78,64.0],[121,-18,79,64.0],[121,-17,64,64.0],[121,-17,65,64.0],[121,-17,66,64.0],[121,-17,67,64.0],[121,-17,68,64.0],[121,-17,69,64.0],[121,-17,70,64.0],[121,-17,71,64.0],[121,-17,72,64.0],[121,-17,73,64.0],[121,-17,74,64.0],[121,-17,75,64.0],[121,-17,76,64.0],[121,-17,77,64.0],[121,-17,78,64.0],[121,-17,79,64.0],[121,-16,64,64.0],[121,-16,65,64.0],[121,-16,66,64.0],[121,-16,67,64.0],[121,-16,68,64.0],[121,-16,69,64.0],[121,-16,70,64.0],[121,-16,71,64.0],[121,-16,72,64.0],[121,-16,73,64.0],[121,-16,74,64.0],[121,-16,75,64.0],[121,-16,76,64.0],[121,-16,77,64.0],[121,-16,78,64.0],[121,-16,79,64.0],[121,-15,64,64.0],[121,-15,65,64.0],[121,-15,66,64.0],[121,-15,67,64.0],[121,-15,68,64.0],[121,-15,69,64.0],[121,-15,70,64.0],[121,-15,71,64.0],[121,-15,72,64.0],[121,-15,73,64.0],[121,-15,74,64.0],[121,-15,75,64.0],[121,-15,76,64.0],[121,-15,77,64.0],[121,-15,78,64.0],[121,-15,79,64.0],[121,-14,64,64.0],[121,-14,65,64.0],[121,-14,66,64.0],[121,-14,67,64.0],[121,-14,68,64.0],[121,-14,69,64.0],[121,-14,70,64.0],[121,-14,71,64.0],[121,-14,72,64.0],[121,-14,73,64.0],[121,-14,74,64.0],[121,-14,75,64.0],[121,-14,76,64.0],[121,-14,77,64.0],[121,-14,78,64.0],[121,-14,79,64.0],[121,-13,64,64.0],[121,-13,65,64.0],[121,-13,66,64.0],[121,-13,67,64.0],[121,-13,68,64.0],[121,-13,69,64.0],[121,-13,70,64.0],[121,-13,71,64.0],[121,-13,72,64.0],[121,-13,73,64.0],[121,-13,74,64.0],[121,-13,75,64.0],[121,-13,76,64.0],[121,-13,77,64.0],[121,-13,78,64.0],[121,-13,79,64.0],[121,-12,64,64.0],[121,-12,65,64.0],[121,-12,66,64.0],[121,-12,67,64.0],[121,-12,68,64.0],[121,-12,69,64.0],[121,-12,70,64.0],[121,-12,71,64.0],[121,-12,72,64.0],[121,-12,73,64.0],[121,-12,74,64.0],[121,-12,75,64.0],[121,-12,76,64.0],[121,-12,77,64.0],[121,-12,78,64.0],[121,-12,79,64.0],[121,-11,64,64.0],[121,-11,65,64.0],[121,-11,66,64.0],[121,-11,67,64.0],[121,-11,68,64.0],[121,-11,69,64.0],[121,-11,70,64.0],[121,-11,71,64.0],[121,-11,72,64.0],[121,-11,73,64.0],[121,-11,74,64.0],[121,-11,75,64.0],[121,-11,76,64.0],[121,-11,77,64.0],[121,-11,78,64.0],[121,-11,79,64.0],[121,-10,64,64.0],[121,-10,65,64.0],[121,-10,66,64.0],[121,-10,67,64.0],[121,-10,68,64.0],[121,-10,69,64.0],[121,-10,70,64.0],[121,-10,71,64.0],[121,-10,72,64.0],[121,-10,73,64.0],[121,-10,74,64.0],[121,-10,75,64.0],[121,-10,76,64.0],[121,-10,77,64.0],[121,-10,78,64.0],[121,-10,79,64.0],[121,-9,64,64.0],[121,-9,65,64.0],[121,-9,66,64.0],[121,-9,67,64.0],[121,-9,68,64.0],[121,-9,69,64.0],[121,-9,70,64.0],[121,-9,71,64.0],[121,-9,72,64.0],[121,-9,73,64.0],[121,-9,74,64.0],[121,-9,75,64.0],[121,-9,76,64.0],[121,-9,77,64.0],[121,-9,78,64.0],[121,-9,79,64.0],[121,-8,64,64.0],[121,-8,65,64.0],[121,-8,66,64.0],[121,-8,67,64.0],[121,-8,68,64.0],[121,-8,69,64.0],[121,-8,70,64.0],[121,-8,71,64.0],[121,-8,72,64.0],[121,-8,73,64.0],[121,-8,74,64.0],[121,-8,75,64.0],[121,-8,76,64.0],[121,-8,77,64.0],[121,-8,78,64.0],[121,-8,79,64.0],[121,-7,64,64.0],[121,-7,65,64.0],[121,-7,66,64.0],[121,-7,67,64.0],[121,-7,68,64.0],[121,-7,69,64.0],[121,-7,70,64.0],[121,-7,71,64.0],[121,-7,72,64.0],[121,-7,73,64.0],[121,-7,74,64.0],[121,-7,75,64.0],[121,-7,76,64.0],[121,-7,77,64.0],[121,-7,78,64.0],[121,-7,79,64.0],[121,-6,64,64.0],[121,-6,65,64.0],[121,-6,66,64.0],[121,-6,67,64.0],[121,-6,68,64.0],[121,-6,69,64.0],[121,-6,70,64.0],[121,-6,71,64.0],[121,-6,72,64.0],[121,-6,73,64.0],[121,-6,74,64.0],[121,-6,75,64.0],[121,-6,76,64.0],[121,-6,77,64.0],[121,-6,78,64.0],[121,-6,79,64.0],[121,-5,64,64.0],[121,-5,65,64.0],[121,-5,66,64.0],[121,-5,67,64.0],[121,-5,68,64.0],[121,-5,69,64.0],[121,-5,70,64.0],[121,-5,71,64.0],[121,-5,72,64.0],[121,-5,73,64.0],[121,-5,74,64.0],[121,-5,75,64.0],[121,-5,76,64.0],[121,-5,77,64.0],[121,-5,78,64.0],[121,-5,79,64.0],[121,-4,64,64.0],[121,-4,65,64.0],[121,-4,66,64.0],[121,-4,67,64.0],[121,-4,68,64.0],[121,-4,69,64.0],[121,-4,70,64.0],[121,-4,71,64.0],[121,-4,72,64.0],[121,-4,73,64.0],[121,-4,74,64.0],[121,-4,75,64.0],[121,-4,76,64.0],[121,-4,77,64.0],[121,-4,78,64.0],[121,-4,79,64.0],[121,-3,64,64.0],[121,-3,65,64.0],[121,-3,66,64.0],[121,-3,67,64.0],[121,-3,68,64.0],[121,-3,69,64.0],[121,-3,70,64.0],[121,-3,71,64.0],[121,-3,72,64.0],[121,-3,73,64.0],[121,-3,74,64.0],[121,-3,75,64.0],[121,-3,76,64.0],[121,-3,77,64.0],[121,-3,78,64.0],[121,-3,79,64.0],[121,-2,64,64.0],[121,-2,65,64.0],[121,-2,66,64.0],[121,-2,67,64.0],[121,-2,68,64.0],[121,-2,69,64.0],[121,-2,70,64.0],[121,-2,71,64.0],[121,-2,72,64.0],[121,-2,73,64.0],[121,-2,74,64.0],[121,-2,75,64.0],[121,-2,76,64.0],[121,-2,77,64.0],[121,-2,78,64.0],[121,-2,79,64.0],[121,-1,64,64.0],[121,-1,65,64.0],[121,-1,66,64.0],[121,-1,67,64.0],[121,-1,68,64.0],[121,-1,69,64.0],[121,-1,70,64.0],[121,-1,71,64.0],[121,-1,72,64.0],[121,-1,73,64.0],[121,-1,74,64.0],[121,-1,75,64.0],[121,-1,76,64.0],[121,-1,77,64.0],[121,-1,78,64.0],[121,-1,79,64.0],[121,0,64,64.0],[121,0,65,64.0],[121,0,66,64.0],[121,0,67,64.0],[121,0,68,64.0],[121,0,69,64.0],[121,0,70,64.0],[121,0,71,64.0],[121,0,72,64.0],[121,0,73,64.0],[121,0,74,64.0],[121,0,75,64.0],[121,0,76,64.0],[121,0,77,64.0],[121,0,78,64.0],[121,0,79,64.0],[121,1,64,64.0],[121,1,65,64.0],[121,1,66,64.0],[121,1,67,64.0],[121,1,68,64.0],[121,1,69,64.0],[121,1,70,64.0],[121,1,71,64.0],[121,1,72,64.0],[121,1,73,64.0],[121,1,74,64.0],[121,1,75,64.0],[121,1,76,64.0],[121,1,77,64.0],[121,1,78,64.0],[121,1,79,64.0],[121,2,64,64.0],[121,2,65,64.0],[121,2,66,64.0],[121,2,67,64.0],[121,2,68,64.0],[121,2,69,64.0],[121,2,70,64.0],[121,2,71,64.0],[121,2,72,64.0],[121,2,73,64.0],[121,2,74,64.0],[121,2,75,64.0],[121,2,76,64.0],[121,2,77,64.0],[121,2,78,64.0],[121,2,79,64.0],[121,3,64,64.0],[121,3,65,64.0],[121,3,66,64.0],[121,3,67,64.0],[121,3,68,64.0],[121,3,69,64.0],[121,3,70,64.0],[121,3,71,64.0],[121,3,72,64.0],[121,3,73,64.0],[121,3,74,64.0],[121,3,75,64.0],[121,3,76,64.0],[121,3,77,64.0],[121,3,78,64.0],[121,3,79,64.0],[121,4,64,64.0],[121,4,65,64.0],[121,4,66,64.0],[121,4,67,64.0],[121,4,68,64.0],[121,4,69,64.0],[121,4,70,64.0],[121,4,71,64.0],[121,4,72,64.0],[121,4,73,64.0],[121,4,74,64.0],[121,4,75,64.0],[121,4,76,64.0],[121,4,77,64.0],[121,4,78,64.0],[121,4,79,64.0],[121,5,64,64.0],[121,5,65,64.0],[121,5,66,64.0],[121,5,67,64.0],[121,5,68,64.0],[121,5,69,64.0],[121,5,70,64.0],[121,5,71,64.0],[121,5,72,64.0],[121,5,73,64.0],[121,5,74,64.0],[121,5,75,64.0],[121,5,76,64.0],[121,5,77,64.0],[121,5,78,64.0],[121,5,79,64.0],[121,6,64,64.0],[121,6,65,64.0],[121,6,66,64.0],[121,6,67,64.0],[121,6,68,64.0],[121,6,69,64.0],[121,6,70,64.0],[121,6,71,64.0],[121,6,72,64.0],[121,6,73,64.0],[121,6,74,64.0],[121,6,75,64.0],[121,6,76,64.0],[121,6,77,64.0],[121,6,78,64.0],[121,6,79,64.0],[121,7,64,64.0],[121,7,65,64.0],[121,7,66,64.0],[121,7,67,64.0],[121,7,68,64.0],[121,7,69,64.0],[121,7,70,64.0],[121,7,71,64.0],[121,7,72,64.0],[121,7,73,64.0],[121,7,74,64.0],[121,7,75,64.0],[121,7,76,64.0],[121,7,77,64.0],[121,7,78,64.0],[121,7,79,64.0],[121,8,64,64.0],[121,8,65,64.0],[121,8,66,64.0],[121,8,67,64.0],[121,8,68,64.0],[121,8,69,64.0],[121,8,70,64.0],[121,8,71,64.0],[121,8,72,64.0],[121,8,73,64.0],[121,8,74,64.0],[121,8,75,64.0],[121,8,76,64.0],[121,8,77,64.0],[121,8,78,64.0],[121,8,79,64.0],[121,9,64,64.0],[121,9,65,64.0],[121,9,66,64.0],[121,9,67,64.0],[121,9,68,64.0],[121,9,69,64.0],[121,9,70,64.0],[121,9,71,64.0],[121,9,72,64.0],[121,9,73,64.0],[121,9,74,64.0],[121,9,75,64.0],[121,9,76,64.0],[121,9,77,64.0],[121,9,78,64.0],[121,9,79,64.0],[121,10,64,64.0],[121,10,65,64.0],[121,10,66,64.0],[121,10,67,64.0],[121,10,68,64.0],[121,10,69,64.0],[121,10,70,64.0],[121,10,71,64.0],[121,10,72,64.0],[121,10,73,64.0],[121,10,74,64.0],[121,10,75,64.0],[121,10,76,64.0],[121,10,77,64.0],[121,10,78,64.0],[121,10,79,64.0],[121,11,64,64.0],[121,11,65,64.0],[121,11,66,64.0],[121,11,67,64.0],[121,11,68,64.0],[121,11,69,64.0],[121,11,70,64.0],[121,11,71,64.0],[121,11,72,64.0],[121,11,73,64.0],[121,11,74,64.0],[121,11,75,64.0],[121,11,76,64.0],[121,11,77,64.0],[121,11,78,64.0],[121,11,79,64.0],[121,12,64,64.0],[121,12,65,64.0],[121,12,66,64.0],[121,12,67,64.0],[121,12,68,64.0],[121,12,69,64.0],[121,12,70,64.0],[121,12,71,64.0],[121,12,72,64.0],[121,12,73,64.0],[121,12,74,64.0],[121,12,75,64.0],[121,12,76,64.0],[121,12,77,64.0],[121,12,78,64.0],[121,12,79,64.0],[121,13,64,64.0],[121,13,65,64.0],[121,13,66,64.0],[121,13,67,64.0],[121,13,68,64.0],[121,13,69,64.0],[121,13,70,64.0],[121,13,71,64.0],[121,13,72,64.0],[121,13,73,64.0],[121,13,74,64.0],[121,13,75,64.0],[121,13,76,64.0],[121,13,77,64.0],[121,13,78,64.0],[121,13,79,64.0],[121,14,64,64.0],[121,14,65,64.0],[121,14,66,64.0],[121,14,67,64.0],[121,14,68,64.0],[121,14,69,64.0],[121,14,70,64.0],[121,14,71,64.0],[121,14,72,64.0],[121,14,73,64.0],[121,14,74,64.0],[121,14,75,64.0],[121,14,76,64.0],[121,14,77,64.0],[121,14,78,64.0],[121,14,79,64.0],[121,15,64,64.0],[121,15,65,64.0],[121,15,66,64.0],[121,15,67,64.0],[121,15,68,64.0],[121,15,69,64.0],[121,15,70,64.0],[121,15,71,64.0],[121,15,72,64.0],[121,15,73,64.0],[121,15,74,64.0],[121,15,75,64.0],[121,15,76,64.0],[121,15,77,64.0],[121,15,78,64.0],[121,15,79,64.0],[121,16,64,64.0],[121,16,65,64.0],[121,16,66,64.0],[121,16,67,64.0],[121,16,68,64.0],[121,16,69,64.0],[121,16,70,64.0],[121,16,71,64.0],[121,16,72,64.0],[121,16,73,64.0],[121,16,74,64.0],[121,16,75,64.0],[121,16,76,64.0],[121,16,77,64.0],[121,16,78,64.0],[121,16,79,64.0],[121,17,64,64.0],[121,17,65,64.0],[121,17,66,64.0],[121,17,67,64.0],[121,17,68,64.0],[121,17,69,64.0],[121,17,70,64.0],[121,17,71,64.0],[121,17,72,64.0],[121,17,73,64.0],[121,17,74,64.0],[121,17,75,64.0],[121,17,76,64.0],[121,17,77,64.0],[121,17,78,64.0],[121,17,79,64.0],[121,18,64,64.0],[121,18,65,64.0],[121,18,66,64.0],[121,18,67,64.0],[121,18,68,64.0],[121,18,69,64.0],[121,18,70,64.0],[121,18,71,64.0],[121,18,72,64.0],[121,18,73,64.0],[121,18,74,64.0],[121,18,75,64.0],[121,18,76,64.0],[121,18,77,64.0],[121,18,78,64.0],[121,18,79,64.0],[121,19,64,64.0],[121,19,65,64.0],[121,19,66,64.0],[121,19,67,64.0],[121,19,68,64.0],[121,19,69,64.0],[121,19,70,64.0],[121,19,71,64.0],[121,19,72,64.0],[121,19,73,64.0],[121,19,74,64.0],[121,19,75,64.0],[121,19,76,64.0],[121,19,77,64.0],[121,19,78,64.0],[121,19,79,64.0],[121,20,64,64.0],[121,20,65,64.0],[121,20,66,64.0],[121,20,67,64.0],[121,20,68,64.0],[121,20,69,64.0],[121,20,70,64.0],[121,20,71,64.0],[121,20,72,64.0],[121,20,73,64.0],[121,20,74,64.0],[121,20,75,64.0],[121,20,76,64.0],[121,20,77,64.0],[121,20,78,64.0],[121,20,79,64.0],[121,21,64,64.0],[121,21,65,64.0],[121,21,66,64.0],[121,21,67,64.0],[121,21,68,64.0],[121,21,69,64.0],[121,21,70,64.0],[121,21,71,64.0],[121,21,72,64.0],[121,21,73,64.0],[121,21,74,64.0],[121,21,75,64.0],[121,21,76,64.0],[121,21,77,64.0],[121,21,78,64.0],[121,21,79,64.0],[121,22,64,64.0],[121,22,65,64.0],[121,22,66,64.0],[121,22,67,64.0],[121,22,68,64.0],[121,22,69,64.0],[121,22,70,64.0],[121,22,71,64.0],[121,22,72,64.0],[121,22,73,64.0],[121,22,74,64.0],[121,22,75,64.0],[121,22,76,64.0],[121,22,77,64.0],[121,22,78,64.0],[121,22,79,64.0],[121,23,64,64.0],[121,23,65,64.0],[121,23,66,64.0],[121,23,67,64.0],[121,23,68,64.0],[121,23,69,64.0],[121,23,70,64.0],[121,23,71,64.0],[121,23,72,64.0],[121,23,73,64.0],[121,23,74,64.0],[121,23,75,64.0],[121,23,76,64.0],[121,23,77,64.0],[121,23,78,64.0],[121,23,79,64.0],[121,24,64,64.0],[121,24,65,64.0],[121,24,66,64.0],[121,24,67,64.0],[121,24,68,64.0],[121,24,69,64.0],[121,24,70,64.0],[121,24,71,64.0],[121,24,72,64.0],[121,24,73,64.0],[121,24,74,64.0],[121,24,75,64.0],[121,24,76,64.0],[121,24,77,64.0],[121,24,78,64.0],[121,24,79,64.0],[121,25,64,64.0],[121,25,65,64.0],[121,25,66,64.0],[121,25,67,64.0],[121,25,68,64.0],[121,25,69,64.0],[121,25,70,64.0],[121,25,71,64.0],[121,25,72,64.0],[121,25,73,64.0],[121,25,74,64.0],[121,25,75,64.0],[121,25,76,64.0],[121,25,77,64.0],[121,25,78,64.0],[121,25,79,64.0],[121,26,64,64.0],[121,26,65,64.0],[121,26,66,64.0],[121,26,67,64.0],[121,26,68,64.0],[121,26,69,64.0],[121,26,70,64.0],[121,26,71,64.0],[121,26,72,64.0],[121,26,73,64.0],[121,26,74,64.0],[121,26,75,64.0],[121,26,76,64.0],[121,26,77,64.0],[121,26,78,64.0],[121,26,79,64.0],[121,27,64,64.0],[121,27,65,64.0],[121,27,66,64.0],[121,27,67,64.0],[121,27,68,64.0],[121,27,69,64.0],[121,27,70,64.0],[121,27,71,64.0],[121,27,72,64.0],[121,27,73,64.0],[121,27,74,64.0],[121,27,75,64.0],[121,27,76,64.0],[121,27,77,64.0],[121,27,78,64.0],[121,27,79,64.0],[121,28,64,64.0],[121,28,65,64.0],[121,28,66,64.0],[121,28,67,64.0],[121,28,68,64.0],[121,28,69,64.0],[121,28,70,64.0],[121,28,71,64.0],[121,28,72,64.0],[121,28,73,64.0],[121,28,74,64.0],[121,28,75,64.0],[121,28,76,64.0],[121,28,77,64.0],[121,28,78,64.0],[121,28,79,64.0],[121,29,64,64.0],[121,29,65,64.0],[121,29,66,64.0],[121,29,67,64.0],[121,29,68,64.0],[121,29,69,64.0],[121,29,70,64.0],[121,29,71,64.0],[121,29,72,64.0],[121,29,73,64.0],[121,29,74,64.0],[121,29,75,64.0],[121,29,76,64.0],[121,29,77,64.0],[121,29,78,64.0],[121,29,79,64.0],[121,30,64,64.0],[121,30,65,64.0],[121,30,66,64.0],[121,30,67,64.0],[121,30,68,64.0],[121,30,69,64.0],[121,30,70,64.0],[121,30,71,64.0],[121,30,72,64.0],[121,30,73,64.0],[121,30,74,64.0],[121,30,75,64.0],[121,30,76,64.0],[121,30,77,64.0],[121,30,78,64.0],[121,30,79,64.0],[121,31,64,64.0],[121,31,65,64.0],[121,31,66,64.0],[121,31,67,64.0],[121,31,68,64.0],[121,31,69,64.0],[121,31,70,64.0],[121,31,71,64.0],[121,31,72,64.0],[121,31,73,64.0],[121,31,74,64.0],[121,31,75,64.0],[121,31,76,64.0],[121,31,77,64.0],[121,31,78,64.0],[121,31,79,64.0],[121,32,64,64.0],[121,32,65,64.0],[121,32,66,64.0],[121,32,67,64.0],[121,32,68,64.0],[121,32,69,64.0],[121,32,70,64.0],[121,32,71,64.0],[121,32,72,64.0],[121,32,73,64.0],[121,32,74,64.0],[121,32,75,64.0],[121,32,76,64.0],[121,32,77,64.0],[121,32,78,64.0],[121,32,79,64.0],[121,33,64,64.0],[121,33,65,64.0],[121,33,66,64.0],[121,33,67,64.0],[121,33,68,64.0],[121,33,69,64.0],[121,33,70,64.0],[121,33,71,64.0],[121,33,72,64.0],[121,33,73,64.0],[121,33,74,64.0],[121,33,75,64.0],[121,33,76,64.0],[121,33,77,64.0],[121,33,78,64.0],[121,33,79,64.0],[121,34,64,64.0],[121,34,65,64.0],[121,34,66,64.0],[121,34,67,64.0],[121,34,68,64.0],[121,34,69,64.0],[121,34,70,64.0],[121,34,71,64.0],[121,34,72,64.0],[121,34,73,64.0],[121,34,74,64.0],[121,34,75,64.0],[121,34,76,64.0],[121,34,77,64.0],[121,34,78,64.0],[121,34,79,64.0],[121,35,64,64.0],[121,35,65,64.0],[121,35,66,64.0],[121,35,67,64.0],[121,35,68,64.0],[121,35,69,64.0],[121,35,70,64.0],[121,35,71,64.0],[121,35,72,64.0],[121,35,73,64.0],[121,35,74,64.0],[121,35,75,64.0],[121,35,76,64.0],[121,35,77,64.0],[121,35,78,64.0],[121,35,79,64.0],[121,36,64,64.0],[121,36,65,64.0],[121,36,66,64.0],[121,36,67,64.0],[121,36,68,64.0],[121,36,69,64.0],[121,36,70,64.0],[121,36,71,64.0],[121,36,72,64.0],[121,36,73,64.0],[121,36,74,64.0],[121,36,75,64.0],[121,36,76,64.0],[121,36,77,64.0],[121,36,78,64.0],[121,36,79,64.0],[121,37,64,64.0],[121,37,65,64.0],[121,37,66,64.0],[121,37,67,64.0],[121,37,68,64.0],[121,37,69,64.0],[121,37,70,64.0],[121,37,71,64.0],[121,37,72,64.0],[121,37,73,64.0],[121,37,74,64.0],[121,37,75,64.0],[121,37,76,64.0],[121,37,77,64.0],[121,37,78,64.0],[121,37,79,64.0],[121,38,64,64.0],[121,38,65,64.0],[121,38,66,64.0],[121,38,67,64.0],[121,38,68,64.0],[121,38,69,64.0],[121,38,70,64.0],[121,38,71,64.0],[121,38,72,64.0],[121,38,73,64.0],[121,38,74,64.0],[121,38,75,64.0],[121,38,76,64.0],[121,38,77,64.0],[121,38,78,64.0],[121,38,79,64.0],[121,39,64,64.0],[121,39,65,64.0],[121,39,66,64.0],[121,39,67,64.0],[121,39,68,64.0],[121,39,69,64.0],[121,39,70,64.0],[121,39,71,64.0],[121,39,72,64.0],[121,39,73,64.0],[121,39,74,64.0],[121,39,75,64.0],[121,39,76,64.0],[121,39,77,64.0],[121,39,78,64.0],[121,39,79,64.0],[121,40,64,64.0],[121,40,65,64.0],[121,40,66,64.0],[121,40,67,64.0],[121,40,68,64.0],[121,40,69,64.0],[121,40,70,64.0],[121,40,71,64.0],[121,40,72,64.0],[121,40,73,64.0],[121,40,74,64.0],[121,40,75,64.0],[121,40,76,64.0],[121,40,77,64.0],[121,40,78,64.0],[121,40,79,64.0],[121,41,64,64.0],[121,41,65,64.0],[121,41,66,64.0],[121,41,67,64.0],[121,41,68,64.0],[121,41,69,64.0],[121,41,70,64.0],[121,41,71,64.0],[121,41,72,64.0],[121,41,73,64.0],[121,41,74,64.0],[121,41,75,64.0],[121,41,76,64.0],[121,41,77,64.0],[121,41,78,64.0],[121,41,79,64.0],[121,42,64,64.0],[121,42,65,64.0],[121,42,66,64.0],[121,42,67,64.0],[121,42,68,64.0],[121,42,69,64.0],[121,42,70,64.0],[121,42,71,64.0],[121,42,72,64.0],[121,42,73,64.0],[121,42,74,64.0],[121,42,75,64.0],[121,42,76,64.0],[121,42,77,64.0],[121,42,78,64.0],[121,42,79,64.0],[121,43,64,64.0],[121,43,65,64.0],[121,43,66,64.0],[121,43,67,64.0],[121,43,68,64.0],[121,43,69,64.0],[121,43,70,64.0],[121,43,71,64.0],[121,43,72,64.0],[121,43,73,64.0],[121,43,74,64.0],[121,43,75,64.0],[121,43,76,64.0],[121,43,77,64.0],[121,43,78,64.0],[121,43,79,64.0],[121,44,64,64.0],[121,44,65,64.0],[121,44,66,64.0],[121,44,67,64.0],[121,44,68,64.0],[121,44,69,64.0],[121,44,70,64.0],[121,44,71,64.0],[121,44,72,64.0],[121,44,73,64.0],[121,44,74,64.0],[121,44,75,64.0],[121,44,76,64.0],[121,44,77,64.0],[121,44,78,64.0],[121,44,79,64.0],[121,45,64,64.0],[121,45,65,64.0],[121,45,66,64.0],[121,45,67,64.0],[121,45,68,64.0],[121,45,69,64.0],[121,45,70,64.0],[121,45,71,64.0],[121,45,72,64.0],[121,45,73,64.0],[121,45,74,64.0],[121,45,75,64.0],[121,45,76,64.0],[121,45,77,64.0],[121,45,78,64.0],[121,45,79,64.0],[121,46,64,64.0],[121,46,65,64.0],[121,46,66,64.0],[121,46,67,64.0],[121,46,68,64.0],[121,46,69,64.0],[121,46,70,64.0],[121,46,71,64.0],[121,46,72,64.0],[121,46,73,64.0],[121,46,74,64.0],[121,46,75,64.0],[121,46,76,64.0],[121,46,77,64.0],[121,46,78,64.0],[121,46,79,64.0],[121,47,64,64.0],[121,47,65,64.0],[121,47,66,64.0],[121,47,67,64.0],[121,47,68,64.0],[121,47,69,64.0],[121,47,70,64.0],[121,47,71,64.0],[121,47,72,64.0],[121,47,73,64.0],[121,47,74,64.0],[121,47,75,64.0],[121,47,76,64.0],[121,47,77,64.0],[121,47,78,64.0],[121,47,79,64.0],[121,48,64,64.0],[121,48,65,64.0],[121,48,66,64.0],[121,48,67,64.0],[121,48,68,64.0],[121,48,69,64.0],[121,48,70,64.0],[121,48,71,64.0],[121,48,72,64.0],[121,48,73,64.0],[121,48,74,64.0],[121,48,75,64.0],[121,48,76,64.0],[121,48,77,64.0],[121,48,78,64.0],[121,48,79,64.0],[121,49,64,64.0],[121,49,65,64.0],[121,49,66,64.0],[121,49,67,64.0],[121,49,68,64.0],[121,49,69,64.0],[121,49,70,64.0],[121,49,71,64.0],[121,49,72,64.0],[121,49,73,64.0],[121,49,74,64.0],[121,49,75,64.0],[121,49,76,64.0],[121,49,77,64.0],[121,49,78,64.0],[121,49,79,64.0],[121,50,64,64.0],[121,50,65,64.0],[121,50,66,64.0],[121,50,67,64.0],[121,50,68,64.0],[121,50,69,64.0],[121,50,70,64.0],[121,50,71,64.0],[121,50,72,64.0],[121,50,73,64.0],[121,50,74,64.0],[121,50,75,64.0],[121,50,76,64.0],[121,50,77,64.0],[121,50,78,64.0],[121,50,79,64.0],[121,51,64,64.0],[121,51,65,64.0],[121,51,66,64.0],[121,51,67,64.0],[121,51,68,64.0],[121,51,69,64.0],[121,51,70,64.0],[121,51,71,64.0],[121,51,72,64.0],[121,51,73,64.0],[121,51,74,64.0],[121,51,75,64.0],[121,51,76,64.0],[121,51,77,64.0],[121,51,78,64.0],[121,51,79,64.0],[121,52,64,64.0],[121,52,65,64.0],[121,52,66,64.0],[121,52,67,64.0],[121,52,68,64.0],[121,52,69,64.0],[121,52,70,64.0],[121,52,71,64.0],[121,52,72,64.0],[121,52,73,64.0],[121,52,74,64.0],[121,52,75,64.0],[121,52,76,64.0],[121,52,77,64.0],[121,52,78,64.0],[121,52,79,64.0],[121,53,64,64.0],[121,53,65,64.0],[121,53,66,64.0],[121,53,67,64.0],[121,53,68,64.0],[121,53,69,64.0],[121,53,70,64.0],[121,53,71,64.0],[121,53,72,64.0],[121,53,73,64.0],[121,53,74,64.0],[121,53,75,64.0],[121,53,76,64.0],[121,53,77,64.0],[121,53,78,64.0],[121,53,79,64.0],[121,54,64,64.0],[121,54,65,64.0],[121,54,66,64.0],[121,54,67,64.0],[121,54,68,64.0],[121,54,69,64.0],[121,54,70,64.0],[121,54,71,64.0],[121,54,72,64.0],[121,54,73,64.0],[121,54,74,64.0],[121,54,75,64.0],[121,54,76,64.0],[121,54,77,64.0],[121,54,78,64.0],[121,54,79,64.0],[121,55,64,64.0],[121,55,65,64.0],[121,55,66,64.0],[121,55,67,64.0],[121,55,68,64.0],[121,55,69,64.0],[121,55,70,64.0],[121,55,71,64.0],[121,55,72,64.0],[121,55,73,64.0],[121,55,74,64.0],[121,55,75,64.0],[121,55,76,64.0],[121,55,77,64.0],[121,55,78,64.0],[121,55,79,64.0],[121,56,64,64.0],[121,56,65,64.0],[121,56,66,64.0],[121,56,67,64.0],[121,56,68,64.0],[121,56,69,64.0],[121,56,70,64.0],[121,56,71,64.0],[121,56,72,64.0],[121,56,73,64.0],[121,56,74,64.0],[121,56,75,64.0],[121,56,76,64.0],[121,56,77,64.0],[121,56,78,64.0],[121,56,79,64.0],[121,57,64,64.0],[121,57,65,64.0],[121,57,66,64.0],[121,57,67,64.0],[121,57,68,64.0],[121,57,69,64.0],[121,57,70,64.0],[121,57,71,64.0],[121,57,72,64.0],[121,57,73,64.0],[121,57,74,64.0],[121,57,75,64.0],[121,57,76,64.0],[121,57,77,64.0],[121,57,78,64.0],[121,57,79,64.0],[121,58,64,64.0],[121,58,65,64.0],[121,58,66,64.0],[121,58,67,64.0],[121,58,68,64.0],[121,58,69,64.0],[121,58,70,64.0],[121,58,71,64.0],[121,58,72,64.0],[121,58,73,64.0],[121,58,74,64.0],[121,58,75,64.0],[121,58,76,64.0],[121,58,77,64.0],[121,58,78,64.0],[121,58,79,64.0],[121,59,64,64.0],[121,59,65,64.0],[121,59,66,64.0],[121,59,67,64.0],[121,59,68,64.0],[121,59,69,64.0],[121,59,70,64.0],[121,59,71,64.0],[121,59,72,64.0],[121,59,73,64.0],[121,59,74,64.0],[121,59,75,64.0],[121,59,76,64.0],[121,59,77,64.0],[121,59,78,64.0],[121,59,79,64.0],[121,60,64,64.0],[121,60,65,64.0],[121,60,66,64.0],[121,60,67,64.0],[121,60,68,64.0],[121,60,69,64.0],[121,60,70,64.0],[121,60,71,64.0],[121,60,72,64.0],[121,60,73,64.0],[121,60,74,64.0],[121,60,75,64.0],[121,60,76,64.0],[121,60,77,64.0],[121,60,78,64.0],[121,60,79,64.0],[121,61,64,64.0],[121,61,65,64.0],[121,61,66,64.0],[121,61,67,64.0],[121,61,68,64.0],[121,61,69,64.0],[121,61,70,64.0],[121,61,71,64.0],[121,61,72,64.0],[121,61,73,64.0],[121,61,74,64.0],[121,61,75,64.0],[121,61,76,64.0],[121,61,77,64.0],[121,61,78,64.0],[121,61,79,64.0],[121,62,64,64.0],[121,62,65,64.0],[121,62,66,64.0],[121,62,67,64.0],[121,62,68,64.0],[121,62,69,64.0],[121,62,70,64.0],[121,62,71,64.0],[121,62,72,64.0],[121,62,73,64.0],[121,62,74,64.0],[121,62,75,64.0],[121,62,76,64.0],[121,62,77,64.0],[121,62,78,64.0],[121,62,79,64.0],[121,63,64,64.0],[121,63,65,64.0],[121,63,66,64.0],[121,63,67,64.0],[121,63,68,64.0],[121,63,69,64.0],[121,63,70,64.0],[121,63,71,64.0],[121,63,72,64.0],[121,63,73,64.0],[121,63,74,64.0],[121,63,75,64.0],[121,63,76,64.0],[121,63,77,64.0],[121,63,78,64.0],[121,63,79,64.0],[121,64,64,64.0],[121,64,65,64.0],[121,64,66,64.0],[121,64,67,64.0],[121,64,68,64.0],[121,64,69,64.0],[121,64,70,64.0],[121,64,71,64.0],[121,64,72,64.0],[121,64,73,64.0],[121,64,74,64.0],[121,64,75,64.0],[121,64,76,64.0],[121,64,77,64.0],[121,64,78,64.0],[121,64,79,64.0],[121,65,64,64.0],[121,65,65,64.0],[121,65,66,64.0],[121,65,67,64.0],[121,65,68,64.0],[121,65,69,64.0],[121,65,70,64.0],[121,65,71,64.0],[121,65,72,64.0],[121,65,73,64.0],[121,65,74,64.0],[121,65,75,64.0],[121,65,76,64.0],[121,65,77,64.0],[121,65,78,64.0],[121,65,79,64.0],[121,66,64,64.0],[121,66,65,64.0],[121,66,66,64.0],[121,66,67,64.0],[121,66,68,64.0],[121,66,69,64.0],[121,66,70,64.0],[121,66,71,64.0],[121,66,72,64.0],[121,66,73,64.0],[121,66,74,64.0],[121,66,75,64.0],[121,66,76,64.0],[121,66,77,64.0],[121,66,78,64.0],[121,66,79,64.0],[121,67,64,64.0],[121,67,65,64.0],[121,67,66,64.0],[121,67,67,64.0],[121,67,68,64.0],[121,67,69,64.0],[121,67,70,64.0],[121,67,71,64.0],[121,67,72,64.0],[121,67,73,64.0],[121,67,74,64.0],[121,67,75,64.0],[121,67,76,64.0],[121,67,77,64.0],[121,67,78,64.0],[121,67,79,64.0],[121,68,64,64.0],[121,68,65,64.0],[121,68,66,64.0],[121,68,67,64.0],[121,68,68,64.0],[121,68,69,64.0],[121,68,70,64.0],[121,68,71,64.0],[121,68,72,64.0],[121,68,73,64.0],[121,68,74,64.0],[121,68,75,64.0],[121,68,76,64.0],[121,68,77,64.0],[121,68,78,64.0],[121,68,79,64.0],[121,69,64,64.0],[121,69,65,64.0],[121,69,66,64.0],[121,69,67,64.0],[121,69,68,64.0],[121,69,69,64.0],[121,69,70,64.0],[121,69,71,64.0],[121,69,72,64.0],[121,69,73,64.0],[121,69,74,64.0],[121,69,75,64.0],[121,69,76,64.0],[121,69,77,64.0],[121,69,78,64.0],[121,69,79,64.0],[121,70,64,64.0],[121,70,65,64.0],[121,70,66,64.0],[121,70,67,64.0],[121,70,68,64.0],[121,70,69,64.0],[121,70,70,64.0],[121,70,71,64.0],[121,70,72,64.0],[121,70,73,64.0],[121,70,74,64.0],[121,70,75,64.0],[121,70,76,64.0],[121,70,77,64.0],[121,70,78,64.0],[121,70,79,64.0],[121,71,64,64.0],[121,71,65,64.0],[121,71,66,64.0],[121,71,67,64.0],[121,71,68,64.0],[121,71,69,64.0],[121,71,70,64.0],[121,71,71,64.0],[121,71,72,64.0],[121,71,73,64.0],[121,71,74,64.0],[121,71,75,64.0],[121,71,76,64.0],[121,71,77,64.0],[121,71,78,64.0],[121,71,79,64.0],[121,72,64,64.0],[121,72,65,64.0],[121,72,66,64.0],[121,72,67,64.0],[121,72,68,64.0],[121,72,69,64.0],[121,72,70,64.0],[121,72,71,64.0],[121,72,72,64.0],[121,72,73,64.0],[121,72,74,64.0],[121,72,75,64.0],[121,72,76,64.0],[121,72,77,64.0],[121,72,78,64.0],[121,72,79,64.0],[121,73,64,64.0],[121,73,65,64.0],[121,73,66,64.0],[121,73,67,64.0],[121,73,68,64.0],[121,73,69,64.0],[121,73,70,64.0],[121,73,71,64.0],[121,73,72,64.0],[121,73,73,64.0],[121,73,74,64.0],[121,73,75,64.0],[121,73,76,64.0],[121,73,77,64.0],[121,73,78,64.0],[121,73,79,64.0],[121,74,64,64.0],[121,74,65,64.0],[121,74,66,64.0],[121,74,67,64.0],[121,74,68,64.0],[121,74,69,64.0],[121,74,70,64.0],[121,74,71,64.0],[121,74,72,64.0],[121,74,73,64.0],[121,74,74,64.0],[121,74,75,64.0],[121,74,76,64.0],[121,74,77,64.0],[121,74,78,64.0],[121,74,79,64.0],[121,75,64,64.0],[121,75,65,64.0],[121,75,66,64.0],[121,75,67,64.0],[121,75,68,64.0],[121,75,69,64.0],[121,75,70,64.0],[121,75,71,64.0],[121,75,72,64.0],[121,75,73,64.0],[121,75,74,64.0],[121,75,75,64.0],[121,75,76,64.0],[121,75,77,64.0],[121,75,78,64.0],[121,75,79,64.0],[121,76,64,64.0],[121,76,65,64.0],[121,76,66,64.0],[121,76,67,64.0],[121,76,68,64.0],[121,76,69,64.0],[121,76,70,64.0],[121,76,71,64.0],[121,76,72,64.0],[121,76,73,64.0],[121,76,74,64.0],[121,76,75,64.0],[121,76,76,64.0],[121,76,77,64.0],[121,76,78,64.0],[121,76,79,64.0],[121,77,64,64.0],[121,77,65,64.0],[121,77,66,64.0],[121,77,67,64.0],[121,77,68,64.0],[121,77,69,64.0],[121,77,70,64.0],[121,77,71,64.0],[121,77,72,64.0],[121,77,73,64.0],[121,77,74,64.0],[121,77,75,64.0],[121,77,76,64.0],[121,77,77,64.0],[121,77,78,64.0],[121,77,79,64.0],[121,78,64,64.0],[121,78,65,64.0],[121,78,66,64.0],[121,78,67,64.0],[121,78,68,64.0],[121,78,69,64.0],[121,78,70,64.0],[121,78,71,64.0],[121,78,72,64.0],[121,78,73,64.0],[121,78,74,64.0],[121,78,75,64.0],[121,78,76,64.0],[121,78,77,64.0],[121,78,78,64.0],[121,78,79,64.0],[121,79,64,64.0],[121,79,65,64.0],[121,79,66,64.0],[121,79,67,64.0],[121,79,68,64.0],[121,79,69,64.0],[121,79,70,64.0],[121,79,71,64.0],[121,79,72,64.0],[121,79,73,64.0],[121,79,74,64.0],[121,79,75,64.0],[121,79,76,64.0],[121,79,77,64.0],[121,79,78,64.0],[121,79,79,64.0],[121,80,64,64.0],[121,80,65,64.0],[121,80,66,64.0],[121,80,67,64.0],[121,80,68,64.0],[121,80,69,64.0],[121,80,70,64.0],[121,80,71,64.0],[121,80,72,64.0],[121,80,73,64.0],[121,80,74,64.0],[121,80,75,64.0],[121,80,76,64.0],[121,80,77,64.0],[121,80,78,64.0],[121,80,79,64.0],[121,81,64,64.0],[121,81,65,64.0],[121,81,66,64.0],[121,81,67,64.0],[121,81,68,64.0],[121,81,69,64.0],[121,81,70,64.0],[121,81,71,64.0],[121,81,72,64.0],[121,81,73,64.0],[121,81,74,64.0],[121,81,75,64.0],[121,81,76,64.0],[121,81,77,64.0],[121,81,78,64.0],[121,81,79,64.0],[121,82,64,64.0],[121,82,65,64.0],[121,82,66,64.0],[121,82,67,64.0],[121,82,68,64.0],[121,82,69,64.0],[121,82,70,64.0],[121,82,71,64.0],[121,82,72,64.0],[121,82,73,64.0],[121,82,74,64.0],[121,82,75,64.0],[121,82,76,64.0],[121,82,77,64.0],[121,82,78,64.0],[121,82,79,64.0],[121,83,64,64.0],[121,83,65,64.0],[121,83,66,64.0],[121,83,67,64.0],[121,83,68,64.0],[121,83,69,64.0],[121,83,70,64.0],[121,83,71,64.0],[121,83,72,64.0],[121,83,73,64.0],[121,83,74,64.0],[121,83,75,64.0],[121,83,76,64.0],[121,83,77,64.0],[121,83,78,64.0],[121,83,79,64.0],[121,84,64,64.0],[121,84,65,64.0],[121,84,66,64.0],[121,84,67,64.0],[121,84,68,64.0],[121,84,69,64.0],[121,84,70,64.0],[121,84,71,64.0],[121,84,72,64.0],[121,84,73,64.0],[121,84,74,64.0],[121,84,75,64.0],[121,84,76,64.0],[121,84,77,64.0],[121,84,78,64.0],[121,84,79,64.0],[121,85,64,64.0],[121,85,65,64.0],[121,85,66,64.0],[121,85,67,64.0],[121,85,68,64.0],[121,85,69,64.0],[121,85,70,64.0],[121,85,71,64.0],[121,85,72,64.0],[121,85,73,64.0],[121,85,74,64.0],[121,85,75,64.0],[121,85,76,64.0],[121,85,77,64.0],[121,85,78,64.0],[121,85,79,64.0],[121,86,64,64.0],[121,86,65,64.0],[121,86,66,64.0],[121,86,67,64.0],[121,86,68,64.0],[121,86,69,64.0],[121,86,70,64.0],[121,86,71,64.0],[121,86,72,64.0],[121,86,73,64.0],[121,86,74,64.0],[121,86,75,64.0],[121,86,76,64.0],[121,86,77,64.0],[121,86,78,64.0],[121,86,79,64.0],[121,87,64,64.0],[121,87,65,64.0],[121,87,66,64.0],[121,87,67,64.0],[121,87,68,64.0],[121,87,69,64.0],[121,87,70,64.0],[121,87,71,64.0],[121,87,72,64.0],[121,87,73,64.0],[121,87,74,64.0],[121,87,75,64.0],[121,87,76,64.0],[121,87,77,64.0],[121,87,78,64.0],[121,87,79,64.0],[121,88,64,64.0],[121,88,65,64.0],[121,88,66,64.0],[121,88,67,64.0],[121,88,68,64.0],[121,88,69,64.0],[121,88,70,64.0],[121,88,71,64.0],[121,88,72,64.0],[121,88,73,64.0],[121,88,74,64.0],[121,88,75,64.0],[121,88,76,64.0],[121,88,77,64.0],[121,88,78,64.0],[121,88,79,64.0],[121,89,64,64.0],[121,89,65,64.0],[121,89,66,64.0],[121,89,67,64.0],[121,89,68,64.0],[121,89,69,64.0],[121,89,70,64.0],[121,89,71,64.0],[121,89,72,64.0],[121,89,73,64.0],[121,89,74,64.0],[121,89,75,64.0],[121,89,76,64.0],[121,89,77,64.0],[121,89,78,64.0],[121,89,79,64.0],[121,90,64,64.0],[121,90,65,64.0],[121,90,66,64.0],[121,90,67,64.0],[121,90,68,64.0],[121,90,69,64.0],[121,90,70,64.0],[121,90,71,64.0],[121,90,72,64.0],[121,90,73,64.0],[121,90,74,64.0],[121,90,75,64.0],[121,90,76,64.0],[121,90,77,64.0],[121,90,78,64.0],[121,90,79,64.0],[121,91,64,64.0],[121,91,65,64.0],[121,91,66,64.0],[121,91,67,64.0],[121,91,68,64.0],[121,91,69,64.0],[121,91,70,64.0],[121,91,71,64.0],[121,91,72,64.0],[121,91,73,64.0],[121,91,74,64.0],[121,91,75,64.0],[121,91,76,64.0],[121,91,77,64.0],[121,91,78,64.0],[121,91,79,64.0],[121,92,64,64.0],[121,92,65,64.0],[121,92,66,64.0],[121,92,67,64.0],[121,92,68,64.0],[121,92,69,64.0],[121,92,70,64.0],[121,92,71,64.0],[121,92,72,64.0],[121,92,73,64.0],[121,92,74,64.0],[121,92,75,64.0],[121,92,76,64.0],[121,92,77,64.0],[121,92,78,64.0],[121,92,79,64.0],[121,93,64,64.0],[121,93,65,64.0],[121,93,66,64.0],[121,93,67,64.0],[121,93,68,64.0],[121,93,69,64.0],[121,93,70,64.0],[121,93,71,64.0],[121,93,72,64.0],[121,93,73,64.0],[121,93,74,64.0],[121,93,75,64.0],[121,93,76,64.0],[121,93,77,64.0],[121,93,78,64.0],[121,93,79,64.0],[121,94,64,64.0],[121,94,65,64.0],[121,94,66,64.0],[121,94,67,64.0],[121,94,68,64.0],[121,94,69,64.0],[121,94,70,64.0],[121,94,71,64.0],[121,94,72,64.0],[121,94,73,64.0],[121,94,74,64.0],[121,94,75,64.0],[121,94,76,64.0],[121,94,77,64.0],[121,94,78,64.0],[121,94,79,64.0],[121,95,64,64.0],[121,95,65,64.0],[121,95,66,64.0],[121,95,67,64.0],[121,95,68,64.0],[121,95,69,64.0],[121,95,70,64.0],[121,95,71,64.0],[121,95,72,64.0],[121,95,73,64.0],[121,95,74,64.0],[121,95,75,64.0],[121,95,76,64.0],[121,95,77,64.0],[121,95,78,64.0],[121,95,79,64.0],[121,96,64,64.0],[121,96,65,64.0],[121,96,66,64.0],[121,96,67,64.0],[121,96,68,64.0],[121,96,69,64.0],[121,96,70,64.0],[121,96,71,64.0],[121,96,72,64.0],[121,96,73,64.0],[121,96,74,64.0],[121,96,75,64.0],[121,96,76,64.0],[121,96,77,64.0],[121,96,78,64.0],[121,96,79,64.0],[121,97,64,64.0],[121,97,65,64.0],[121,97,66,64.0],[121,97,67,64.0],[121,97,68,64.0],[121,97,69,64.0],[121,97,70,64.0],[121,97,71,64.0],[121,97,72,64.0],[121,97,73,64.0],[121,97,74,64.0],[121,97,75,64.0],[121,97,76,64.0],[121,97,77,64.0],[121,97,78,64.0],[121,97,79,64.0],[121,98,64,64.0],[121,98,65,64.0],[121,98,66,64.0],[121,98,67,64.0],[121,98,68,64.0],[121,98,69,64.0],[121,98,70,64.0],[121,98,71,64.0],[121,98,72,64.0],[121,98,73,64.0],[121,98,74,64.0],[121,98,75,64.0],[121,98,76,64.0],[121,98,77,64.0],[121,98,78,64.0],[121,98,79,64.0],[121,99,64,64.0],[121,99,65,64.0],[121,99,66,64.0],[121,99,67,64.0],[121,99,68,64.0],[121,99,69,64.0],[121,99,70,64.0],[121,99,71,64.0],[121,99,72,64.0],[121,99,73,64.0],[121,99,74,64.0],[121,99,75,64.0],[121,99,76,64.0],[121,99,77,64.0],[121,99,78,64.0],[121,99,79,64.0],[121,100,64,64.0],[121,100,65,64.0],[121,100,66,64.0],[121,100,67,64.0],[121,100,68,64.0],[121,100,69,64.0],[121,100,70,64.0],[121,100,71,64.0],[121,100,72,64.0],[121,100,73,64.0],[121,100,74,64.0],[121,100,75,64.0],[121,100,76,64.0],[121,100,77,64.0],[121,100,78,64.0],[121,100,79,64.0],[121,101,64,64.0],[121,101,65,64.0],[121,101,66,64.0],[121,101,67,64.0],[121,101,68,64.0],[121,101,69,64.0],[121,101,70,64.0],[121,101,71,64.0],[121,101,72,64.0],[121,101,73,64.0],[121,101,74,64.0],[121,101,75,64.0],[121,101,76,64.0],[121,101,77,64.0],[121,101,78,64.0],[121,101,79,64.0],[121,102,64,64.0],[121,102,65,64.0],[121,102,66,64.0],[121,102,67,64.0],[121,102,68,64.0],[121,102,69,64.0],[121,102,70,64.0],[121,102,71,64.0],[121,102,72,64.0],[121,102,73,64.0],[121,102,74,64.0],[121,102,75,64.0],[121,102,76,64.0],[121,102,77,64.0],[121,102,78,64.0],[121,102,79,64.0],[121,103,64,64.0],[121,103,65,64.0],[121,103,66,64.0],[121,103,67,64.0],[121,103,68,64.0],[121,103,69,64.0],[121,103,70,64.0],[121,103,71,64.0],[121,103,72,64.0],[121,103,73,64.0],[121,103,74,64.0],[121,103,75,64.0],[121,103,76,64.0],[121,103,77,64.0],[121,103,78,64.0],[121,103,79,64.0],[121,104,64,64.0],[121,104,65,64.0],[121,104,66,64.0],[121,104,67,64.0],[121,104,68,64.0],[121,104,69,64.0],[121,104,70,64.0],[121,104,71,64.0],[121,104,72,64.0],[121,104,73,64.0],[121,104,74,64.0],[121,104,75,64.0],[121,104,76,64.0],[121,104,77,64.0],[121,104,78,64.0],[121,104,79,64.0],[121,105,64,64.0],[121,105,65,64.0],[121,105,66,64.0],[121,105,67,64.0],[121,105,68,64.0],[121,105,69,64.0],[121,105,70,64.0],[121,105,71,64.0],[121,105,72,64.0],[121,105,73,64.0],[121,105,74,64.0],[121,105,75,64.0],[121,105,76,64.0],[121,105,77,64.0],[121,105,78,64.0],[121,105,79,64.0],[121,106,64,64.0],[121,106,65,64.0],[121,106,66,64.0],[121,106,67,64.0],[121,106,68,64.0],[121,106,69,64.0],[121,106,70,64.0],[121,106,71,64.0],[121,106,72,64.0],[121,106,73,64.0],[121,106,74,64.0],[121,106,75,64.0],[121,106,76,64.0],[121,106,77,64.0],[121,106,78,64.0],[121,106,79,64.0],[121,107,64,64.0],[121,107,65,64.0],[121,107,66,64.0],[121,107,67,64.0],[121,107,68,64.0],[121,107,69,64.0],[121,107,70,64.0],[121,107,71,64.0],[121,107,72,64.0],[121,107,73,64.0],[121,107,74,64.0],[121,107,75,64.0],[121,107,76,64.0],[121,107,77,64.0],[121,107,78,64.0],[121,107,79,64.0],[121,108,64,64.0],[121,108,65,64.0],[121,108,66,64.0],[121,108,67,64.0],[121,108,68,64.0],[121,108,69,64.0],[121,108,70,64.0],[121,108,71,64.0],[121,108,72,64.0],[121,108,73,64.0],[121,108,74,64.0],[121,108,75,64.0],[121,108,76,64.0],[121,108,77,64.0],[121,108,78,64.0],[121,108,79,64.0],[121,109,64,64.0],[121,109,65,64.0],[121,109,66,64.0],[121,109,67,64.0],[121,109,68,64.0],[121,109,69,64.0],[121,109,70,64.0],[121,109,71,64.0],[121,109,72,64.0],[121,109,73,64.0],[121,109,74,64.0],[121,109,75,64.0],[121,109,76,64.0],[121,109,77,64.0],[121,109,78,64.0],[121,109,79,64.0],[121,110,64,64.0],[121,110,65,64.0],[121,110,66,64.0],[121,110,67,64.0],[121,110,68,64.0],[121,110,69,64.0],[121,110,70,64.0],[121,110,71,64.0],[121,110,72,64.0],[121,110,73,64.0],[121,110,74,64.0],[121,110,75,64.0],[121,110,76,64.0],[121,110,77,64.0],[121,110,78,64.0],[121,110,79,64.0],[121,111,64,64.0],[121,111,65,64.0],[121,111,66,64.0],[121,111,67,64.0],[121,111,68,64.0],[121,111,69,64.0],[121,111,70,64.0],[121,111,71,64.0],[121,111,72,64.0],[121,111,73,64.0],[121,111,74,64.0],[121,111,75,64.0],[121,111,76,64.0],[121,111,77,64.0],[121,111,78,64.0],[121,111,79,64.0],[121,112,64,64.0],[121,112,65,64.0],[121,112,66,64.0],[121,112,67,64.0],[121,112,68,64.0],[121,112,69,64.0],[121,112,70,64.0],[121,112,71,64.0],[121,112,72,64.0],[121,112,73,64.0],[121,112,74,64.0],[121,112,75,64.0],[121,112,76,64.0],[121,112,77,64.0],[121,112,78,64.0],[121,112,79,64.0],[121,113,64,64.0],[121,113,65,64.0],[121,113,66,64.0],[121,113,67,64.0],[121,113,68,64.0],[121,113,69,64.0],[121,113,70,64.0],[121,113,71,64.0],[121,113,72,64.0],[121,113,73,64.0],[121,113,74,64.0],[121,113,75,64.0],[121,113,76,64.0],[121,113,77,64.0],[121,113,78,64.0],[121,113,79,64.0],[121,114,64,64.0],[121,114,65,64.0],[121,114,66,64.0],[121,114,67,64.0],[121,114,68,64.0],[121,114,69,64.0],[121,114,70,64.0],[121,114,71,64.0],[121,114,72,64.0],[121,114,73,64.0],[121,114,74,64.0],[121,114,75,64.0],[121,114,76,64.0],[121,114,77,64.0],[121,114,78,64.0],[121,114,79,64.0],[121,115,64,64.0],[121,115,65,64.0],[121,115,66,64.0],[121,115,67,64.0],[121,115,68,64.0],[121,115,69,64.0],[121,115,70,64.0],[121,115,71,64.0],[121,115,72,64.0],[121,115,73,64.0],[121,115,74,64.0],[121,115,75,64.0],[121,115,76,64.0],[121,115,77,64.0],[121,115,78,64.0],[121,115,79,64.0],[121,116,64,64.0],[121,116,65,64.0],[121,116,66,64.0],[121,116,67,64.0],[121,116,68,64.0],[121,116,69,64.0],[121,116,70,64.0],[121,116,71,64.0],[121,116,72,64.0],[121,116,73,64.0],[121,116,74,64.0],[121,116,75,64.0],[121,116,76,64.0],[121,116,77,64.0],[121,116,78,64.0],[121,116,79,64.0],[121,117,64,64.0],[121,117,65,64.0],[121,117,66,64.0],[121,117,67,64.0],[121,117,68,64.0],[121,117,69,64.0],[121,117,70,64.0],[121,117,71,64.0],[121,117,72,64.0],[121,117,73,64.0],[121,117,74,64.0],[121,117,75,64.0],[121,117,76,64.0],[121,117,77,64.0],[121,117,78,64.0],[121,117,79,64.0],[121,118,64,64.0],[121,118,65,64.0],[121,118,66,64.0],[121,118,67,64.0],[121,118,68,64.0],[121,118,69,64.0],[121,118,70,64.0],[121,118,71,64.0],[121,118,72,64.0],[121,118,73,64.0],[121,118,74,64.0],[121,118,75,64.0],[121,118,76,64.0],[121,118,77,64.0],[121,118,78,64.0],[121,118,79,64.0],[121,119,64,64.0],[121,119,65,64.0],[121,119,66,64.0],[121,119,67,64.0],[121,119,68,64.0],[121,119,69,64.0],[121,119,70,64.0],[121,119,71,64.0],[121,119,72,64.0],[121,119,73,64.0],[121,119,74,64.0],[121,119,75,64.0],[121,119,76,64.0],[121,119,77,64.0],[121,119,78,64.0],[121,119,79,64.0],[121,120,64,64.0],[121,120,65,64.0],[121,120,66,64.0],[121,120,67,64.0],[121,120,68,64.0],[121,120,69,64.0],[121,120,70,64.0],[121,120,71,64.0],[121,120,72,64.0],[121,120,73,64.0],[121,120,74,64.0],[121,120,75,64.0],[121,120,76,64.0],[121,120,77,64.0],[121,120,78,64.0],[121,120,79,64.0],[121,121,64,64.0],[121,121,65,64.0],[121,121,66,64.0],[121,121,67,64.0],[121,121,68,64.0],[121,121,69,64.0],[121,121,70,64.0],[121,121,71,64.0],[121,121,72,64.0],[121,121,73,64.0],[121,121,74,64.0],[121,121,75,64.0],[121,121,76,64.0],[121,121,77,64.0],[121,121,78,64.0],[121,121,79,64.0],[121,122,64,64.0],[121,122,65,64.0],[121,122,66,64.0],[121,122,67,64.0],[121,122,68,64.0],[121,122,69,64.0],[121,122,70,64.0],[121,122,71,64.0],[121,122,72,64.0],[121,122,73,64.0],[121,122,74,64.0],[121,122,75,64.0],[121,122,76,64.0],[121,122,77,64.0],[121,122,78,64.0],[121,122,79,64.0],[121,123,64,64.0],[121,123,65,64.0],[121,123,66,64.0],[121,123,67,64.0],[121,123,68,64.0],[121,123,69,64.0],[121,123,70,64.0],[121,123,71,64.0],[121,123,72,64.0],[121,123,73,64.0],[121,123,74,64.0],[121,123,75,64.0],[121,123,76,64.0],[121,123,77,64.0],[121,123,78,64.0],[121,123,79,64.0],[121,124,64,64.0],[121,124,65,64.0],[121,124,66,64.0],[121,124,67,64.0],[121,124,68,64.0],[121,124,69,64.0],[121,124,70,64.0],[121,124,71,64.0],[121,124,72,64.0],[121,124,73,64.0],[121,124,74,64.0],[121,124,75,64.0],[121,124,76,64.0],[121,124,77,64.0],[121,124,78,64.0],[121,124,79,64.0],[121,125,64,64.0],[121,125,65,64.0],[121,125,66,64.0],[121,125,67,64.0],[121,125,68,64.0],[121,125,69,64.0],[121,125,70,64.0],[121,125,71,64.0],[121,125,72,64.0],[121,125,73,64.0],[121,125,74,64.0],[121,125,75,64.0],[121,125,76,64.0],[121,125,77,64.0],[121,125,78,64.0],[121,125,79,64.0],[121,126,64,64.0],[121,126,65,64.0],[121,126,66,64.0],[121,126,67,64.0],[121,126,68,64.0],[121,126,69,64.0],[121,126,70,64.0],[121,126,71,64.0],[121,126,72,64.0],[121,126,73,64.0],[121,126,74,64.0],[121,126,75,64.0],[121,126,76,64.0],[121,126,77,64.0],[121,126,78,64.0],[121,126,79,64.0],[121,127,64,64.0],[121,127,65,64.0],[121,127,66,64.0],[121,127,67,64.0],[121,127,68,64.0],[121,127,69,64.0],[121,127,70,64.0],[121,127,71,64.0],[121,127,72,64.0],[121,127,73,64.0],[121,127,74,64.0],[121,127,75,64.0],[121,127,76,64.0],[121,127,77,64.0],[121,127,78,64.0],[121,127,79,64.0],[121,128,64,64.0],[121,128,65,64.0],[121,128,66,64.0],[121,128,67,64.0],[121,128,68,64.0],[121,128,69,64.0],[121,128,70,64.0],[121,128,71,64.0],[121,128,72,64.0],[121,128,73,64.0],[121,128,74,64.0],[121,128,75,64.0],[121,128,76,64.0],[121,128,77,64.0],[121,128,78,64.0],[121,128,79,64.0],[121,129,64,64.0],[121,129,65,64.0],[121,129,66,64.0],[121,129,67,64.0],[121,129,68,64.0],[121,129,69,64.0],[121,129,70,64.0],[121,129,71,64.0],[121,129,72,64.0],[121,129,73,64.0],[121,129,74,64.0],[121,129,75,64.0],[121,129,76,64.0],[121,129,77,64.0],[121,129,78,64.0],[121,129,79,64.0],[121,130,64,64.0],[121,130,65,64.0],[121,130,66,64.0],[121,130,67,64.0],[121,130,68,64.0],[121,130,69,64.0],[121,130,70,64.0],[121,130,71,64.0],[121,130,72,64.0],[121,130,73,64.0],[121,130,74,64.0],[121,130,75,64.0],[121,130,76,64.0],[121,130,77,64.0],[121,130,78,64.0],[121,130,79,64.0],[121,131,64,64.0],[121,131,65,64.0],[121,131,66,64.0],[121,131,67,64.0],[121,131,68,64.0],[121,131,69,64.0],[121,131,70,64.0],[121,131,71,64.0],[121,131,72,64.0],[121,131,73,64.0],[121,131,74,64.0],[121,131,75,64.0],[121,131,76,64.0],[121,131,77,64.0],[121,131,78,64.0],[121,131,79,64.0],[121,132,64,64.0],[121,132,65,64.0],[121,132,66,64.0],[121,132,67,64.0],[121,132,68,64.0],[121,132,69,64.0],[121,132,70,64.0],[121,132,71,64.0],[121,132,72,64.0],[121,132,73,64.0],[121,132,74,64.0],[121,132,75,64.0],[121,132,76,64.0],[121,132,77,64.0],[121,132,78,64.0],[121,132,79,64.0],[121,133,64,64.0],[121,133,65,64.0],[121,133,66,64.0],[121,133,67,64.0],[121,133,68,64.0],[121,133,69,64.0],[121,133,70,64.0],[121,133,71,64.0],[121,133,72,64.0],[121,133,73,64.0],[121,133,74,64.0],[121,133,75,64.0],[121,133,76,64.0],[121,133,77,64.0],[121,133,78,64.0],[121,133,79,64.0],[121,134,64,64.0],[121,134,65,64.0],[121,134,66,64.0],[121,134,67,64.0],[121,134,68,64.0],[121,134,69,64.0],[121,134,70,64.0],[121,134,71,64.0],[121,134,72,64.0],[121,134,73,64.0],[121,134,74,64.0],[121,134,75,64.0],[121,134,76,64.0],[121,134,77,64.0],[121,134,78,64.0],[121,134,79,64.0],[121,135,64,64.0],[121,135,65,64.0],[121,135,66,64.0],[121,135,67,64.0],[121,135,68,64.0],[121,135,69,64.0],[121,135,70,64.0],[121,135,71,64.0],[121,135,72,64.0],[121,135,73,64.0],[121,135,74,64.0],[121,135,75,64.0],[121,135,76,64.0],[121,135,77,64.0],[121,135,78,64.0],[121,135,79,64.0],[121,136,64,64.0],[121,136,65,64.0],[121,136,66,64.0],[121,136,67,64.0],[121,136,68,64.0],[121,136,69,64.0],[121,136,70,64.0],[121,136,71,64.0],[121,136,72,64.0],[121,136,73,64.0],[121,136,74,64.0],[121,136,75,64.0],[121,136,76,64.0],[121,136,77,64.0],[121,136,78,64.0],[121,136,79,64.0],[121,137,64,64.0],[121,137,65,64.0],[121,137,66,64.0],[121,137,67,64.0],[121,137,68,64.0],[121,137,69,64.0],[121,137,70,64.0],[121,137,71,64.0],[121,137,72,64.0],[121,137,73,64.0],[121,137,74,64.0],[121,137,75,64.0],[121,137,76,64.0],[121,137,77,64.0],[121,137,78,64.0],[121,137,79,64.0],[121,138,64,64.0],[121,138,65,64.0],[121,138,66,64.0],[121,138,67,64.0],[121,138,68,64.0],[121,138,69,64.0],[121,138,70,64.0],[121,138,71,64.0],[121,138,72,64.0],[121,138,73,64.0],[121,138,74,64.0],[121,138,75,64.0],[121,138,76,64.0],[121,138,77,64.0],[121,138,78,64.0],[121,138,79,64.0],[121,139,64,64.0],[121,139,65,64.0],[121,139,66,64.0],[121,139,67,64.0],[121,139,68,64.0],[121,139,69,64.0],[121,139,70,64.0],[121,139,71,64.0],[121,139,72,64.0],[121,139,73,64.0],[121,139,74,64.0],[121,139,75,64.0],[121,139,76,64.0],[121,139,77,64.0],[121,139,78,64.0],[121,139,79,64.0],[121,140,64,64.0],[121,140,65,64.0],[121,140,66,64.0],[121,140,67,64.0],[121,140,68,64.0],[121,140,69,64.0],[121,140,70,64.0],[121,140,71,64.0],[121,140,72,64.0],[121,140,73,64.0],[121,140,74,64.0],[121,140,75,64.0],[121,140,76,64.0],[121,140,77,64.0],[121,140,78,64.0],[121,140,79,64.0],[121,141,64,64.0],[121,141,65,64.0],[121,141,66,64.0],[121,141,67,64.0],[121,141,68,64.0],[121,141,69,64.0],[121,141,70,64.0],[121,141,71,64.0],[121,141,72,64.0],[121,141,73,64.0],[121,141,74,64.0],[121,141,75,64.0],[121,141,76,64.0],[121,141,77,64.0],[121,141,78,64.0],[121,141,79,64.0],[121,142,64,64.0],[121,142,65,64.0],[121,142,66,64.0],[121,142,67,64.0],[121,142,68,64.0],[121,142,69,64.0],[121,142,70,64.0],[121,142,71,64.0],[121,142,72,64.0],[121,142,73,64.0],[121,142,74,64.0],[121,142,75,64.0],[121,142,76,64.0],[121,142,77,64.0],[121,142,78,64.0],[121,142,79,64.0],[121,143,64,64.0],[121,143,65,64.0],[121,143,66,64.0],[121,143,67,64.0],[121,143,68,64.0],[121,143,69,64.0],[121,143,70,64.0],[121,143,71,64.0],[121,143,72,64.0],[121,143,73,64.0],[121,143,74,64.0],[121,143,75,64.0],[121,143,76,64.0],[121,143,77,64.0],[121,143,78,64.0],[121,143,79,64.0],[121,144,64,64.0],[121,144,65,64.0],[121,144,66,64.0],[121,144,67,64.0],[121,144,68,64.0],[121,144,69,64.0],[121,144,70,64.0],[121,144,71,64.0],[121,144,72,64.0],[121,144,73,64.0],[121,144,74,64.0],[121,144,75,64.0],[121,144,76,64.0],[121,144,77,64.0],[121,144,78,64.0],[121,144,79,64.0],[121,145,64,64.0],[121,145,65,64.0],[121,145,66,64.0],[121,145,67,64.0],[121,145,68,64.0],[121,145,69,64.0],[121,145,70,64.0],[121,145,71,64.0],[121,145,72,64.0],[121,145,73,64.0],[121,145,74,64.0],[121,145,75,64.0],[121,145,76,64.0],[121,145,77,64.0],[121,145,78,64.0],[121,145,79,64.0],[121,146,64,64.0],[121,146,65,64.0],[121,146,66,64.0],[121,146,67,64.0],[121,146,68,64.0],[121,146,69,64.0],[121,146,70,64.0],[121,146,71,64.0],[121,146,72,64.0],[121,146,73,64.0],[121,146,74,64.0],[121,146,75,64.0],[121,146,76,64.0],[121,146,77,64.0],[121,146,78,64.0],[121,146,79,64.0],[121,147,64,64.0],[121,147,65,64.0],[121,147,66,64.0],[121,147,67,64.0],[121,147,68,64.0],[121,147,69,64.0],[121,147,70,64.0],[121,147,71,64.0],[121,147,72,64.0],[121,147,73,64.0],[121,147,74,64.0],[121,147,75,64.0],[121,147,76,64.0],[121,147,77,64.0],[121,147,78,64.0],[121,147,79,64.0],[121,148,64,64.0],[121,148,65,64.0],[121,148,66,64.0],[121,148,67,64.0],[121,148,68,64.0],[121,148,69,64.0],[121,148,70,64.0],[121,148,71,64.0],[121,148,72,64.0],[121,148,73,64.0],[121,148,74,64.0],[121,148,75,64.0],[121,148,76,64.0],[121,148,77,64.0],[121,148,78,64.0],[121,148,79,64.0],[121,149,64,64.0],[121,149,65,64.0],[121,149,66,64.0],[121,149,67,64.0],[121,149,68,64.0],[121,149,69,64.0],[121,149,70,64.0],[121,149,71,64.0],[121,149,72,64.0],[121,149,73,64.0],[121,149,74,64.0],[121,149,75,64.0],[121,149,76,64.0],[121,149,77,64.0],[121,149,78,64.0],[121,149,79,64.0],[121,150,64,64.0],[121,150,65,64.0],[121,150,66,64.0],[121,150,67,64.0],[121,150,68,64.0],[121,150,69,64.0],[121,150,70,64.0],[121,150,71,64.0],[121,150,72,64.0],[121,150,73,64.0],[121,150,74,64.0],[121,150,75,64.0],[121,150,76,64.0],[121,150,77,64.0],[121,150,78,64.0],[121,150,79,64.0],[121,151,64,64.0],[121,151,65,64.0],[121,151,66,64.0],[121,151,67,64.0],[121,151,68,64.0],[121,151,69,64.0],[121,151,70,64.0],[121,151,71,64.0],[121,151,72,64.0],[121,151,73,64.0],[121,151,74,64.0],[121,151,75,64.0],[121,151,76,64.0],[121,151,77,64.0],[121,151,78,64.0],[121,151,79,64.0],[121,152,64,64.0],[121,152,65,64.0],[121,152,66,64.0],[121,152,67,64.0],[121,152,68,64.0],[121,152,69,64.0],[121,152,70,64.0],[121,152,71,64.0],[121,152,72,64.0],[121,152,73,64.0],[121,152,74,64.0],[121,152,75,64.0],[121,152,76,64.0],[121,152,77,64.0],[121,152,78,64.0],[121,152,79,64.0],[121,153,64,64.0],[121,153,65,64.0],[121,153,66,64.0],[121,153,67,64.0],[121,153,68,64.0],[121,153,69,64.0],[121,153,70,64.0],[121,153,71,64.0],[121,153,72,64.0],[121,153,73,64.0],[121,153,74,64.0],[121,153,75,64.0],[121,153,76,64.0],[121,153,77,64.0],[121,153,78,64.0],[121,153,79,64.0],[121,154,64,64.0],[121,154,65,64.0],[121,154,66,64.0],[121,154,67,64.0],[121,154,68,64.0],[121,154,69,64.0],[121,154,70,64.0],[121,154,71,64.0],[121,154,72,64.0],[121,154,73,64.0],[121,154,74,64.0],[121,154,75,64.0],[121,154,76,64.0],[121,154,77,64.0],[121,154,78,64.0],[121,154,79,64.0],[121,155,64,64.0],[121,155,65,64.0],[121,155,66,64.0],[121,155,67,64.0],[121,155,68,64.0],[121,155,69,64.0],[121,155,70,64.0],[121,155,71,64.0],[121,155,72,64.0],[121,155,73,64.0],[121,155,74,64.0],[121,155,75,64.0],[121,155,76,64.0],[121,155,77,64.0],[121,155,78,64.0],[121,155,79,64.0],[121,156,64,64.0],[121,156,65,64.0],[121,156,66,64.0],[121,156,67,64.0],[121,156,68,64.0],[121,156,69,64.0],[121,156,70,64.0],[121,156,71,64.0],[121,156,72,64.0],[121,156,73,64.0],[121,156,74,64.0],[121,156,75,64.0],[121,156,76,64.0],[121,156,77,64.0],[121,156,78,64.0],[121,156,79,64.0],[121,157,64,64.0],[121,157,65,64.0],[121,157,66,64.0],[121,157,67,64.0],[121,157,68,64.0],[121,157,69,64.0],[121,157,70,64.0],[121,157,71,64.0],[121,157,72,64.0],[121,157,73,64.0],[121,157,74,64.0],[121,157,75,64.0],[121,157,76,64.0],[121,157,77,64.0],[121,157,78,64.0],[121,157,79,64.0],[121,158,64,64.0],[121,158,65,64.0],[121,158,66,64.0],[121,158,67,64.0],[121,158,68,64.0],[121,158,69,64.0],[121,158,70,64.0],[121,158,71,64.0],[121,158,72,64.0],[121,158,73,64.0],[121,158,74,64.0],[121,158,75,64.0],[121,158,76,64.0],[121,158,77,64.0],[121,158,78,64.0],[121,158,79,64.0],[121,159,64,64.0],[121,159,65,64.0],[121,159,66,64.0],[121,159,67,64.0],[121,159,68,64.0],[121,159,69,64.0],[121,159,70,64.0],[121,159,71,64.0],[121,159,72,64.0],[121,159,73,64.0],[121,159,74,64.0],[121,159,75,64.0],[121,159,76,64.0],[121,159,77,64.0],[121,159,78,64.0],[121,159,79,64.0],[121,160,64,64.0],[121,160,65,64.0],[121,160,66,64.0],[121,160,67,64.0],[121,160,68,64.0],[121,160,69,64.0],[121,160,70,64.0],[121,160,71,64.0],[121,160,72,64.0],[121,160,73,64.0],[121,160,74,64.0],[121,160,75,64.0],[121,160,76,64.0],[121,160,77,64.0],[121,160,78,64.0],[121,160,79,64.0],[121,161,64,64.0],[121,161,65,64.0],[121,161,66,64.0],[121,161,67,64.0],[121,161,68,64.0],[121,161,69,64.0],[121,161,70,64.0],[121,161,71,64.0],[121,161,72,64.0],[121,161,73,64.0],[121,161,74,64.0],[121,161,75,64.0],[121,161,76,64.0],[121,161,77,64.0],[121,161,78,64.0],[121,161,79,64.0],[121,162,64,64.0],[121,162,65,64.0],[121,162,66,64.0],[121,162,67,64.0],[121,162,68,64.0],[121,162,69,64.0],[121,162,70,64.0],[121,162,71,64.0],[121,162,72,64.0],[121,162,73,64.0],[121,162,74,64.0],[121,162,75,64.0],[121,162,76,64.0],[121,162,77,64.0],[121,162,78,64.0],[121,162,79,64.0],[121,163,64,64.0],[121,163,65,64.0],[121,163,66,64.0],[121,163,67,64.0],[121,163,68,64.0],[121,163,69,64.0],[121,163,70,64.0],[121,163,71,64.0],[121,163,72,64.0],[121,163,73,64.0],[121,163,74,64.0],[121,163,75,64.0],[121,163,76,64.0],[121,163,77,64.0],[121,163,78,64.0],[121,163,79,0.5634974097699996],[121,164,64,64.0],[121,164,65,64.0],[121,164,66,64.0],[121,164,67,64.0],[121,164,68,64.0],[121,164,69,64.0],[121,164,70,64.0],[121,164,71,64.0],[121,164,72,64.0],[121,164,73,64.0],[121,164,74,64.0],[121,164,75,64.0],[121,164,76,64.0],[121,164,77,64.0],[121,164,78,0.5249574483300354],[121,164,79,0.5681726786925675],[121,165,64,64.0],[121,165,65,64.0],[121,165,66,64.0],[121,165,67,64.0],[121,165,68,64.0],[121,165,69,64.0],[121,165,70,64.0],[121,165,71,64.0],[121,165,72,64.0],[121,165,73,64.0],[121,165,74,64.0],[121,165,75,64.0],[121,165,76,64.0],[121,165,77,0.483645226295468],[121,165,78,0.530742962107735],[121,165,79,0.5739833221462631],[121,166,64,64.0],[121,166,65,64.0],[121,166,66,64.0],[121,166,67,64.0],[121,166,68,64.0],[121,166,69,64.0],[121,166,70,64.0],[121,166,71,64.0],[121,166,72,64.0],[121,166,73,64.0],[121,166,74,64.0],[121,166,75,64.0],[121,166,76,0.44061500661943775],[121,166,77,0.4908083559593674],[121,166,78,0.5378202570607973],[121,166,79,0.5809398381545705],[121,167,64,64.0],[121,167,65,64.0],[121,167,66,64.0],[121,167,67,64.0],[121,167,68,64.0],[121,167,69,64.0],[121,167,70,64.0],[121,167,71,64.0],[121,167,72,64.0],[121,167,73,64.0],[121,167,74,64.0],[121,167,75,0.39700538498257243],[121,167,76,0.44938391203024],[121,167,77,0.4993846547970018],[121,167,78,0.5461730134021334],[121,167,79,0.5890363726386445],[121,168,64,64.0],[121,168,65,64.0],[121,168,66,64.0],[121,168,67,64.0],[121,168,68,64.0],[121,168,69,64.0],[121,168,70,64.0],[121,168,71,64.0],[121,168,72,64.0],[121,168,73,64.0],[121,168,74,0.35400919902784034],[121,168,75,0.4075600071360463],[121,168,76,0.45964678309736373],[121,168,77,0.5093274994304123],[121,168,78,0.5557663064486364],[121,168,79,0.5982498105397663],[121,169,64,64.0],[121,169,65,64.0],[121,169,66,64.0],[121,169,67,64.0],[121,169,68,64.0],[121,169,69,64.0],[121,169,70,64.0],[121,169,71,64.0],[121,169,72,0.25700932142857574],[121,169,73,0.31229157668963126],[121,169,74,0.36647354363820034],[121,169,75,0.4196439650497212],[121,169,76,0.4713236655073819],[121,169,77,0.5205696932590883],[121,169,78,0.5665458379164149],[121,169,79,0.6085388074709441],[121,170,64,64.0],[121,170,65,64.0],[121,170,66,64.0],[121,170,67,64.0],[121,170,68,64.0],[121,170,69,64.0],[121,170,70,64.0],[121,170,71,0.21591972830702028],[121,170,72,0.27189029955287114],[121,170,73,0.32673034158292585],[121,170,74,0.3804532880908215],[121,170,75,0.4331415582057281],[121,170,76,0.48431247408280964],[121,170,77,0.5330229471094148],[121,170,78,0.578437201650544],[121,170,79,0.6198428324519584],[121,171,64,64.0],[121,171,65,64.0],[121,171,66,64.0],[121,171,67,64.0],[121,171,68,64.0],[121,171,69,64.0],[121,171,70,0.17633761991779745],[121,171,71,0.2328524844946554],[121,171,72,0.28830719219448325],[121,171,73,0.3426185720382825],[121,171,74,0.39579527663764147],[121,171,75,0.44791388360297046],[121,171,76,0.4984887848756071],[121,171,77,0.546577442879689],[121,171,78,0.5913452091793997],[121,171,79,0.6320812468866206],[121,172,64,64.0],[121,172,65,64.0],[121,172,66,64.0],[121,172,67,64.0],[121,172,68,64.0],[121,172,69,0.13839998480203475],[121,172,70,0.19524724201532231],[121,172,71,0.25118600840799593],[121,172,72,0.30605390404820443],[121,172,73,0.3597646365343101],[121,172,74,0.41232258249602416],[121,172,75,0.4637989478089157],[121,172,76,0.5137057077346238],[121,172,77,0.561101455286641],[121,172,78,0.6051532504540693],[121,172,79,0.6451523953948645],[121,173,64,64.0],[121,173,65,64.0],[121,173,66,64.0],[121,173,67,64.0],[121,173,68,0.10221978435534715],[121,173,69,0.15914059339313916],[121,173,70,0.21536725486712963],[121,173,71,0.2706750637533913],[121,173,72,0.32489998914805485],[121,173,73,0.37795310051241415],[121,173,74,0.4298349700013412],[121,173,75,0.4806118810165124],[121,173,76,0.5297938391721762],[121,173,77,0.5764410315403978],[121,173,78,0.6197226896015146],[121,173,79,0.65893270833005],[121,174,64,64.0],[121,174,65,64.0],[121,174,66,64.0],[121,174,67,0.1436062963738564],[121,174,68,0.13377884297020418],[121,174,69,0.18084621476333246],[121,174,70,0.2364138507505781],[121,174,71,0.2910507784188392],[121,174,72,0.3445917310559691],[121,174,73,0.39694556612343534],[121,174,74,0.44810947969645193],[121,174,75,0.49814525310606805],[121,174,76,0.5465612955295993],[121,174,77,0.5924197289477368],[121,174,78,0.6348922956913314],[121,174,79,0.6732758159813323],[121,175,64,64.0],[121,175,65,64.0],[121,175,66,0.19470608522306226],[121,175,67,0.1811060689119711],[121,175,68,0.16819398518526005],[121,175,69,0.20319582533860184],[121,175,70,0.2580808892530211],[121,175,71,0.312022131197237],[121,175,72,0.3648533851444202],[121,175,73,0.4164816549708985],[121,175,74,0.4669011363577976],[121,175,75,0.516169491711812],[121,175,76,0.5637938264415081],[121,175,77,0.6088384104433685],[121,175,78,0.6504777085158577],[121,175,79,0.6880116744608554],[121,176,64,64.0],[121,176,65,0.2484171565053681],[121,176,66,0.23120878988088664],[121,176,67,0.21469071620285407],[121,176,68,0.19875122615507024],[121,176,69,0.22584797738538634],[121,176,70,0.28004181049421173],[121,176,71,0.3332776186547058],[121,176,72,0.38538858297350315],[121,176,73,0.43628013385139186],[121,176,74,0.4859437799586196],[121,176,75,0.5344334022936355],[121,176,76,0.5812550085992416],[121,176,77,0.6254750980497119],[121,176,78,0.6662709393840789],[121,176,79,0.7029457032762028],[121,177,64,0.30429778302319116],[121,177,65,0.28378823371545736],[121,177,66,0.2638531127476369],[121,177,67,0.24448314032313206],[121,177,68,0.22559203004473585],[121,177,69,0.24856675273728002],[121,177,70,0.30207013218259593],[121,177,71,0.3545999408962555],[121,177,72,0.40598888784408693],[121,177,73,0.4561410606560499],[121,177,74,0.5050455650408655],[121,177,75,0.5527528290947633],[121,177,76,0.5987679238559962],[121,177,77,0.6421595730408818],[121,177,78,0.6821078484127867],[121,177,79,0.7179191451801448],[121,178,64,0.3385101649720181],[121,178,65,0.31548591622367],[121,178,66,0.29289752402671476],[121,178,67,0.2707590298090802],[121,178,68,0.24900853278310514],[121,178,69,0.27167935154581174],[121,178,70,0.3244778840937892],[121,178,71,0.3762841007175072],[121,178,72,0.42693051548338923],[121,178,73,0.4763202342084745],[121,178,74,0.5244404082916004],[121,178,75,0.5713385377279687],[121,178,76,0.6165190887558761],[121,178,77,0.6590531427592875],[121,178,78,0.6981237184410725],[121,178,79,0.7330405953916309],[121,179,64,0.3693855424023229],[121,179,65,0.3439259210215884],[121,179,66,0.3187736837921204],[121,179,67,0.29396502415934433],[121,179,68,0.2694612009950315],[121,179,69,0.2955681628878615],[121,179,70,0.3476296130225469],[121,179,71,0.39867488198835055],[121,179,72,0.4485366899841813],[121,179,73,0.49711767958585257],[121,179,74,0.5444036879796915],[121,179,75,0.5904400340941502],[121,179,76,0.6347311097737262],[121,179,77,0.6763506538034414],[121,179,78,0.7144849477354407],[121,179,79,0.7484474927399515],[121,180,64,0.3972321852855738],[121,180,65,0.36943218743814926],[121,180,66,0.3418206396411104],[121,180,67,0.3144545371012678],[121,180,68,0.28731689772741625],[121,180,69,0.3204759151317835],[121,180,70,0.3717558942905872],[121,180,71,0.4219892794634788],[121,180,72,0.4710094927755567],[121,180,73,0.5187193544680568],[121,180,74,0.5651041779618693],[121,180,75,0.6102080241256242],[121,180,76,0.6535358920801724],[121,180,77,0.6941645967540975],[121,180,78,0.7312841201559175],[121,180,79,0.7642121470435691],[121,181,64,0.4215738584929034],[121,181,65,0.3915444937519196],[121,181,66,0.36159546107654567],[121,181,67,0.33180304043057407],[121,181,68,0.30217042221428736],[121,181,69,0.34652231260071614],[121,181,70,0.3969693206103495],[121,181,71,0.44633179295381675],[121,181,72,0.49444441762381264],[121,181,73,0.5412109232763509],[121,181,74,0.5866170023473347],[121,181,75,0.6307065136961878],[121,181,76,0.6729858536133306],[121,181,77,0.7125354084215549],[121,181,78,0.7485493750416512],[121,181,79,0.7803501618122285],[121,182,64,0.44190105070899255],[121,182,65,0.4097671858087645],[121,182,66,0.37761771238707076],[121,182,67,0.3455465502849844],[121,182,68,0.3232490455179263],[121,182,69,0.3737199986340546],[121,182,70,0.4232798405462823],[121,182,71,0.47170909652263654],[121,182,72,0.5188443281598314],[121,182,73,0.5645909632338056],[121,182,74,0.6089360531656489],[121,182,75,0.65192440407187],[121,182,76,0.6930646684351903],[121,182,77,0.7314413380687483],[121,182,78,0.766253376445003],[121,182,79,0.7968284920826669],[121,183,64,0.45788096092113895],[121,183,65,0.42377840608880624],[121,183,66,0.3895774188847636],[121,183,67,0.3553878333048112],[121,183,68,0.3524023455249695],[121,183,69,0.4019897709274115],[121,183,70,0.4506093755955457],[121,183,71,0.49804401507708085],[121,183,72,0.5441327538388276],[121,183,73,0.5887835419514844],[121,183,74,0.6319858144779891],[121,183,75,0.6737865302896815],[121,183,76,0.713697490790553],[121,183,77,0.7508078331132917],[121,183,78,0.7843218413282707],[121,183,79,0.8135731011095733],[121,184,64,0.46936250309890537],[121,184,65,0.43343494690438633],[121,184,66,0.39733974224989144],[121,184,67,0.36120088129114886],[121,184,68,0.3825111828364338],[121,184,69,0.43117504915067767],[121,184,70,0.47880571588774595],[121,184,71,0.5251888083547277],[121,184,72,0.5701665243321036],[121,184,73,0.6136501665400433],[121,184,74,0.6556325929314546],[121,184,75,0.6961641424640527],[121,184,76,0.7347606598682277],[121,184,77,0.7705164443081962],[121,184,78,0.8026416267227793],[121,184,79,0.8304762159115474],[121,185,64,0.47638184878592016],[121,185,65,0.43877766016178976],[121,185,66,0.40095023060361334],[121,185,67,0.3647906720191748],[121,185,68,0.4133486460582467],[121,185,69,0.4610555948448931],[121,185,70,0.5076556945044015],[121,185,71,0.5529377623058698],[121,185,72,0.596747742351471],[121,185,73,0.6390011042473904],[121,185,74,0.6796951547570221],[121,185,75,0.7188848300215445],[121,185,76,0.7560908852650423],[121,185,77,0.7904132504017969],[121,185,78,0.8210683758508488],[121,185,79,0.8474031816725404],[121,186,64,0.479168507602907],[121,186,65,0.44003742368598464],[121,186,66,0.4006406433080351],[121,186,67,0.3969749343585311],[121,186,68,0.4446352158420469],[121,186,69,0.49136048359760953],[121,186,70,0.5368976404178217],[121,186,71,0.5810390878712036],[121,186,72,0.6236350949060392],[121,186,73,0.6646060746221091],[121,186,74,0.7039547692108777],[121,186,75,0.7417418888635614],[121,186,76,0.7774939131524139],[121,186,77,0.8103168022766362],[121,186,78,0.8394337232103994],[121,186,79,0.8641989149985455],[121,187,64,0.47815194566250646],[121,187,65,0.43764166410878447],[121,187,66,0.3968353504938816],[121,187,67,0.4292966509902142],[121,187,68,0.47605144860768334],[121,187,69,0.5217803294963039],[121,187,70,0.5662331100489767],[121,187,71,0.6092061271545202],[121,187,72,0.6505545029909744],[121,187,73,0.6902043132022635],[121,187,74,0.7281646584587582],[121,187,75,0.7645031314567232],[121,187,76,0.7987526731451471],[121,187,77,0.8300255865669999],[121,187,78,0.8575520586219023],[121,187,79,0.8806939560292733],[121,188,64,0.47394494416525],[121,188,65,0.43219814027972875],[121,188,66,0.41470682842616374],[121,188,67,0.46139839895362683],[121,188,68,0.50724988877972],[121,188,69,0.5519787618606571],[121,188,70,0.5953378974451448],[121,188,71,0.6371278669911529],[121,188,72,0.6772091097089683],[121,188,73,0.7155140067303052],[121,188,74,0.7520588539039866],[121,188,75,0.7869191398515424],[121,188,76,0.8196349058730824],[121,188,77,0.8493250087556876],[121,188,78,0.8752268502382339],[121,188,79,0.8967101194053263],[121,189,64,0.46663006545656466],[121,189,65,0.4237964400047164],[121,189,66,0.44700158977216464],[121,189,67,0.4929054412306725],[121,189,68,0.537866209537539],[121,189,69,0.5816031542532958],[121,189,70,0.6238723230769517],[121,189,71,0.6644787599118175],[121,189,72,0.7032886068240497],[121,189,73,0.7402410998937151],[121,189,74,0.7753604589588559],[121,189,75,0.8087309616290834],[121,189,76,0.8399002712552776],[121,189,77,0.8679938957497197],[121,189,78,0.8922565265171425],[121,189,79,0.9120657440906087],[121,190,64,0.4556224693804185],[121,190,65,0.4324078273025922],[121,190,66,0.478294215291157],[121,190,67,0.5234364575793632],[121,190,68,0.56752958207862],[121,190,69,0.6102946057685884],[121,190,70,0.6514908012544006],[121,190,71,0.6909278525014493],[121,190,72,0.7284778997473723],[121,190,73,0.7640874735910449],[121,190,74,0.7977893182590354],[121,190,75,0.8296772487752905],[121,190,76,0.8593069374764368],[121,190,77,0.8858105179347143],[121,190,78,0.9084399171560854],[121,190,79,0.9265805420497372],[121,191,64,0.44047310356374036],[121,191,65,0.4629309623586608],[121,191,66,0.5081980958533909],[121,191,67,0.5526134827978133],[121,191,68,0.5958722733958335],[121,191,69,0.6376971746003145],[121,191,70,0.6778506861626874],[121,191,71,0.7161472211538118],[121,191,72,0.752465110955716],[121,191,73,0.7867584947240489],[121,191,74,0.8190690933216684],[121,191,75,0.8495008394836201],[121,191,76,0.8776176506661776],[121,191,77,0.9025581307084857],[121,191,78,0.9235812529899523],[121,191,79,0.9400800457809393],[121,192,64,0.4463220386944516],[121,192,65,0.4916495817806714],[121,192,66,0.5363398052265427],[121,192,67,0.5800710524181681],[121,192,68,0.6225384725683187],[121,192,69,0.6634663638877819],[121,192,70,0.7026203965173936],[121,192,71,0.7398197152214756],[121,192,72,0.7749489218423177],[121,192,73,0.8079699375155502],[121,192,74,0.8389337446468083],[121,192,75,0.8679547828856428],[121,192,76,0.8946052852808274],[121,192,77,0.9180300354935791],[121,192,78,0.9374947248513992],[121,192,79,0.9523996547041801],[121,193,64,0.4733052842832115],[121,193,65,0.5182068554370889],[121,193,66,0.5623677331125839],[121,193,67,0.6054645558300737],[121,193,68,0.6471923455655553],[121,193,69,0.6872768598400197],[121,193,70,0.7254868188386911],[121,193,71,0.7616460075608226],[121,193,72,0.7956452529997005],[121,193,73,0.8274542763527192],[121,193,74,0.8571334202618979],[121,193,75,0.8848078067093368],[121,193,76,0.9100578751874857],[121,193,77,0.9320341602284882],[121,193,78,0.9500086013935697],[121,193,79,0.9633882804043128],[121,194,64,0.49775386819566275],[121,194,65,0.5422768842388179],[121,194,66,0.5859599072792459],[121,194,67,0.6284777968345223],[121,194,68,0.6695253185654444],[121,194,69,0.7088295221388341],[121,194,70,0.7461619893453235],[121,194,71,0.7813509524728056],[121,194,72,0.8142932829352042],[121,194,73,0.8449663501564377],[121,194,74,0.8734397507099283],[121,194,75,0.8998492278656736],[121,194,76,0.9237831254509128],[121,194,77,0.9443971593380889],[121,194,78,0.9609689058756932],[121,194,79,0.9729115907297029],[121,195,64,0.5193795359791344],[121,195,65,0.5635719418899787],[121,195,66,0.6068310047855957],[121,195,67,0.6488297616275938],[121,195,68,0.6892625897859345],[121,195,69,0.7278576266202774],[121,195,70,0.7643890544679276],[121,195,71,0.7986892510390503],[121,195,72,0.8306608052188156],[121,195,73,0.8602883982763623],[121,195,74,0.887650550480907],[121,195,75,0.9128933059631439],[121,195,76,0.935612404822921],[121,195,77,0.9549680331829777],[121,195,78,0.9702426519112679],[121,195,79,0.980854852746056],[121,196,64,0.5379403436398177],[121,196,65,0.5818488260847505],[121,196,66,0.6247384858352696],[121,196,67,0.6662805255301678],[121,196,68,0.7061687991045275],[121,196,69,0.7441322876489905],[121,196,70,0.7799474357170229],[121,196,71,0.8134503480808206],[121,196,72,0.8445488469355287],[121,196,73,0.8732343895516723],[121,196,74,0.8995938463761051],[121,196,75,0.923782959124084],[121,196,76,0.9454041372990469],[121,196,77,0.963621184612239],[121,196,78,0.9777205554712061],[121,196,79,0.9871252920279995],[121,197,64,0.5531495746172261],[121,197,65,0.596813713230345],[121,197,66,0.639383594109936],[121,197,67,0.6805286342971197],[121,197,68,0.7199420453455027],[121,197,69,0.7573533766023568],[121,197,70,0.7925409137418118],[121,197,71,0.8253439325506919],[121,197,72,0.8556748079666697],[121,197,73,0.8835309783686531],[121,197,74,0.9090067651196891],[121,197,75,0.932266626381596],[121,197,76,0.9529187980672602],[121,197,77,0.9701299657661313],[121,197,78,0.9831897719860678],[121,197,79,0.9915248419711883],[121,198,64,0.5645138783542947],[121,198,65,0.6079542849408404],[121,198,66,0.6502377241938662],[121,198,67,0.6910320147924699],[121,198,68,0.7300296802757907],[121,198,69,0.7669605629386039],[121,198,70,0.8016042871860688],[121,198,71,0.8338025723482513],[121,198,72,0.8634713949540935],[121,198,73,0.8906130004647667],[121,198,74,0.9153277644666616],[121,198,75,0.9377873068054191],[121,198,76,0.9576050536694574],[121,198,77,0.9739506742085667],[121,198,78,0.9861168994254198],[121,198,79,0.9935336295944309],[121,199,64,0.5716159960234212],[121,199,65,0.6148347860965415],[121,199,66,0.6568490198572641],[121,199,67,0.6973252425522046],[121,199,68,0.7359553217552771],[121,199,69,0.7724691272064769],[121,199,70,0.8066470533683678],[121,199,71,0.8383323847008772],[121,199,72,0.8674435036540902],[121,199,73,0.8939859413789674],[121,199,74,0.9180642711562482],[121,199,75,0.9398551880232446],[121,199,76,0.9589768973025452],[121,199,77,0.9746029875488695],[121,199,78,0.9860298833581777],[121,199,79,0.992691012757981],[121,200,64,0.5741690457354276],[121,200,65,0.6171526231618628],[121,200,66,0.6589011389619003],[121,200,67,0.6990803100553972],[121,200,68,0.7373814504848893],[121,200,69,0.7735342056671107],[121,200,70,0.8073191213770655],[121,200,71,0.8385800474652698],[121,200,72,0.8672363763078438],[121,200,73,0.8932951159893887],[121,200,74,0.9168627982188979],[121,200,75,0.9381186618772159],[121,200,76,0.9566854601603949],[121,200,77,0.9717423215080992],[121,200,78,0.9825905474799321],[121,200,79,0.9886678064758576],[121,201,64,0.5720092111909437],[121,201,65,0.6147308135474441],[121,201,66,0.6562054727816526],[121,201,67,0.6960986257630248],[121,201,68,0.7341011987172087],[121,201,69,0.7699423784447944],[121,201,70,0.8034022088023299],[121,201,71,0.834324012446212],[121,201,72,0.8626266378391308],[121,201,73,0.8883165315190139],[121,201,74,0.9114996356307072],[121,201,75,0.9323548402456187],[121,201,76,0.9505093556416255],[121,201,77,0.9651500183880944],[121,201,78,0.9755846533394804],[121,201,79,0.9812562502987028],[121,202,64,0.5650880005573318],[121,202,65,0.6075100205229995],[121,202,66,0.6486929685838773],[121,202,67,0.6883026365376089],[121,202,68,0.726029784865493],[121,202,69,0.761602928444955],[121,202,70,0.7948009363780439],[121,202,71,0.825465445936544],[121,202,72,0.8535130906234],[121,202,73,0.878947542350389],[121,202,74,0.9018713677322826],[121,202,75,0.9224599341045231],[121,202,76,0.9403449243666819],[121,202,77,0.9547234744196265],[121,202,78,0.9649119369512177],[121,202,79,0.9703599899995582],[121,203,64,0.5534640755713937],[121,203,65,0.5955401736811285],[121,203,66,0.6364055554718424],[121,203,67,0.6757270734438932],[121,203,68,0.7131955940113237],[121,203,69,0.7485387710395557],[121,203,70,0.7815336205337633],[121,203,71,0.8120188964785193],[121,203,72,0.8399072678284062],[121,203,73,0.8651972966495314],[121,203,74,0.8879852174121814],[121,203,75,0.9084394958295158],[121,203,76,0.9261963800043194],[121,203,77,0.9404662059897677],[121,203,78,0.9505761222934942],[121,203,79,0.9559840735626495],[121,204,64,0.5372946508676495],[121,204,65,0.578971674951884],[121,204,66,0.6194871734880105],[121,204,67,0.6585098209303633],[121,204,68,0.6957309043106898],[121,204,69,0.7308770545197288],[121,204,70,0.7637227638565711],[121,204,71,0.7941026898463915],[121,204,72,0.8219237453262509],[121,204,73,0.8471769747988958],[121,204,74,0.8699492170548104],[121,204,75,0.8903985247373973],[121,204,76,0.9081658559073954],[121,204,77,0.9224778547483872],[121,204,78,0.9326749116928446],[121,204,79,0.9382249614751061],[121,205,64,0.5168264635322768],[121,205,65,0.5580461901681861],[121,205,66,0.5981744059782773],[121,205,67,0.6368824093917056],[121,205,68,0.6738622592985897],[121,205,69,0.7088394313157295],[121,205,70,0.7415852434628984],[121,205,71,0.7719290512503005],[121,205,72,0.7997702121768865],[121,205,73,0.8250898196394602],[121,205,74,0.8479622062528258],[121,205,75,0.8685314358678995],[121,205,76,0.8864433525580045],[121,205,77,0.9009441315938006],[121,205,78,0.911389953094128],[121,205,79,0.9172605513216345],[121,206,64,0.4923863128827235],[121,206,65,0.5330870261820945],[121,206,66,0.5727867152171535],[121,206,67,0.6111601311121946],[121,206,68,0.6479004860921591],[121,206,69,0.6827319999842094],[121,206,70,0.7154221972803182],[121,206,71,0.7457939547614599],[121,206,72,0.7737372996831051],[121,206,73,0.7992209585219378],[121,206,74,0.8223036562840568],[121,206,75,0.843111892005429],[121,206,76,0.8612965858219769],[121,206,77,0.8761266995375977],[121,206,78,0.8869767842165901],[121,206,79,0.8933402166821749],[121,207,64,0.4643711704728633],[121,207,65,0.5044890935318069],[121,207,66,0.543716281293784],[121,207,67,0.5817317795899055],[121,207,68,0.6182303594922085],[121,207,69,0.6529349179627021],[121,207,70,0.6856086082392017],[121,207,71,0.7160666999585461],[121,207,72,0.7441881690168944],[121,207,73,0.7699270171670163],[121,207,74,0.7933233213528486],[121,207,75,0.8144824989407534],[121,207,76,0.8330607360126487],[121,207,77,0.8483529954485622],[121,207,78,0.8597547535957745],[121,207,79,0.8667748603324549],[121,208,64,0.43323786032398104],[121,208,65,0.47270845465967326],[121,208,66,0.5114174442590727],[121,208,67,0.5490490122420139],[121,208,68,0.5852999119834364],[121,208,69,0.6198916850915763],[121,208,70,0.6525825863744926],[121,208,71,0.6831792157955292],[121,208,72,0.7115478574174076],[121,208,73,0.7376255253348528],[121,208,74,0.7614307165960431],[121,208,75,0.7830443639728251],[121,208,76,0.8021280977640971],[121,208,77,0.818005990675857],[121,208,78,0.830096918511442],[121,208,79,0.8379269817476027],[121,209,64,0.39949230938126323],[121,209,65,0.4382514576808979],[121,209,66,0.47639574953359687],[121,209,67,0.5136153364908732],[121,209,68,0.5496093896330095],[121,209,69,0.58409809790316],[121,209,70,0.6168343488373051],[121,209,71,0.647615091690666],[121,209,72,0.6762923829602698],[121,209,73,0.7027841143035587],[121,209,74,0.7270844228533508],[121,209,75,0.7492465176505123],[121,209,76,0.7689376307136173],[121,209,77,0.7855138905512806],[121,209,78,0.7984199198013128],[121,209,79,0.8072007589086392],[121,210,64,0.3636783681958563],[121,210,65,0.4016634557029958],[121,210,66,0.439196596576378],[121,210,67,0.475974719230937],[121,210,68,0.5116998538875789],[121,210,69,0.5460908746780974],[121,210,70,0.5788948978164077],[121,210,71,0.609898335836712],[121,210,72,0.6389376078982808],[121,210,73,0.6659095061567359],[121,210,74,0.6907812182021629],[121,210,75,0.7135751987542923],[121,210,76,0.7339644109934979],[121,210,77,0.7513397727706304],[121,210,78,0.7651738335606749],[121,210,79,0.7750321444118937],[121,211,64,0.3263662018328791],[121,211,65,0.36351711169638834],[121,211,66,0.40039349081488307],[121,211,67,0.4366998196768904],[121,211,68,0.47214142926908864],[121,211,69,0.5064359512692928],[121,211,70,0.5393243963699398],[121,211,71,0.57058186073269],[121,211,72,0.6000278605738344],[121,211,73,0.6275362948803711],[121,211,74,0.6530450362571049],[121,211,75,0.6765430025181757],[121,211,76,0.6977089835323447],[121,211,77,0.7159711646544231],[121,211,78,0.7308319997280831],[121,211,79,0.7418789758815466],[121,212,64,0.2904441105333134],[121,212,65,0.3244002889155272],[121,212,66,0.36057589883565755],[121,212,67,0.39637984559240247],[121,212,68,0.43152119696879754],[121,212,69,0.4657164476928687],[121,212,70,0.4987002421667949],[121,212,71,0.5302356959366651],[121,212,72,0.5601243159025282],[121,212,73,0.588215519268574],[121,212,74,0.6144157512338314],[121,212,75,0.6386778920914025],[121,212,76,0.6606866151655189],[121,212,77,0.6799095592875495],[121,212,78,0.6958808275567537],[121,212,79,0.7082111006849359],[121,213,64,0.3182870000743932],[121,213,65,0.33570909502190405],[121,213,66,0.35231076186259097],[121,213,67,0.3681302884107223],[121,213,68,0.3904307343398139],[121,213,69,0.4245203054864396],[121,213,70,0.45760483913797995],[121,213,71,0.4894349280398309],[121,213,72,0.5197931344282561],[121,213,73,0.5485030276384589],[121,213,74,0.5754377897773635],[121,213,75,0.6005120732401906],[121,213,76,0.6234164485549611],[121,213,77,0.6436598705381367],[121,213,78,0.6608095779719226],[121,213,79,0.674500514950881],[121,214,64,0.34112912924429617],[121,214,65,0.35693729194188717],[121,214,66,0.3719046805709977],[121,214,67,0.3860810204587875],[121,214,68,0.39955483333034975],[121,214,69,0.4124585507318618],[121,214,70,0.42497401793407497],[121,214,71,0.44874736786213576],[121,214,72,0.47959335995000274],[121,214,73,0.5089476343543574],[121,214,74,0.5366485695551264],[121,214,75,0.5625707322896824],[121,214,76,0.5864105569185285],[121,214,77,0.6077198269557174],[121,214,78,0.6261001228142393],[121,214,79,0.6412115168910775],[121,215,64,0.35874513014225684],[121,215,65,0.3730897784884034],[121,215,66,0.38658174794181954],[121,215,67,0.3992809835436615],[121,215,68,0.41128347977164825],[121,215,69,0.42272573907577204],[121,215,70,0.4337895810113218],[121,215,71,0.44470730196917624],[121,215,72,0.4557635786554883],[121,215,73,0.47007906816089284],[121,215,74,0.49856676461425975],[121,215,75,0.5253606373056874],[121,215,76,0.5501628995684736],[121,215,77,0.5725693045483726],[121,215,78,0.592216680968904],[121,215,79,0.6087908744243038],[121,216,64,0.3709789826541048],[121,216,65,0.3840290410054718],[121,216,66,0.39622319342944307],[121,216,67,0.40763026162305527],[121,216,68,0.41835234805124877],[121,216,69,0.4285286683413827],[121,216,70,0.4383396959534283],[121,216,71,0.4480116191258075],[121,216,72,0.4578175820042173],[121,216,73,0.4677524250858342],[121,216,74,0.47729588369557613],[121,216,75,0.4893586025164633],[121,216,76,0.5151381782592975],[121,216,77,0.5386595984390656],[121,216,78,0.5595955313807444],[121,216,79,0.5776580071036242],[121,217,64,0.37774702720797637],[121,217,65,0.38968718459794377],[121,217,66,0.4007769774206616],[121,217,67,0.41109265754050284],[121,217,68,0.4207409859423],[121,217,69,0.4298624724769179],[121,217,70,0.4386348913495677],[121,217,71,0.4472770723508354],[121,217,72,0.4560495204681755],[121,217,73,0.4649368982088902],[121,217,74,0.47342187810651526],[121,217,75,0.48104533800331817],[121,217,76,0.487460295161487],[121,217,77,0.5064026334012409],[121,217,78,0.5286347029552916],[121,217,79,0.5481951823466196],[121,218,64,0.3790404255930814],[121,218,65,0.3900679421287561],[121,218,66,0.4002593326453109],[121,218,67,0.4096967544071042],[121,218,68,0.41849011861939966],[121,218,69,0.4267797752887034],[121,218,70,0.4347394392855765],[121,218,71,0.44257935760989786],[121,218,72,0.45054635270268645],[121,218,73,0.4586141882063054],[121,218,74,0.4662679509995197],[121,218,75,0.4730539472412326],[121,218,76,0.47863195393120295],[121,218,77,0.48276383896995356],[121,218,78,0.4996836413456664],[121,218,79,0.5207377259685046],[121,219,64,0.37492706984111684],[121,219,65,0.38524811714423646],[121,219,66,0.3947557248719628],[121,219,67,0.40353638121861124],[121,219,68,0.4117016097138258],[121,219,69,0.41939014067773733],[121,219,70,0.42677029150823914],[121,219,71,0.43404255580035445],[121,219,72,0.44143911930176805],[121,219,73,0.44892220053056414],[121,219,74,0.45597877046977053],[121,219,75,0.46215984194353676],[121,219,76,0.46713105204670025],[121,219,77,0.4706610431434578],[121,219,78,0.4730328526253482],[121,219,79,0.4955642470181786],[121,220,64,0.365552939170395],[121,220,65,0.3753784607275404],[121,220,66,0.3844212328887658],[121,220,67,0.39277048270794973],[121,220,68,0.4005378112539598],[121,220,69,0.4078588962201736],[121,220,70,0.41489537331275506],[121,220,71,0.4218368964176733],[121,220,72,0.4289001781265956],[121,220,73,0.43603534486235185],[121,220,74,0.44273073668832796],[121,220,75,0.44854135166692605],[121,220,76,0.4531377828405537],[121,220,77,0.4562944013351547],[121,220,78,0.45787789918659594],[121,220,79,0.47288687691735865],[121,221,64,0.3511429049926825],[121,221,65,0.3606839822801952],[121,221,66,0.3694803477693901],[121,221,67,0.3776223934331179],[121,221,68,0.38522030249083195],[121,221,69,0.39240533009163636],[121,221,70,0.3993312351532943],[121,221,71,0.4061758633571808],[121,221,72,0.41313976632755167],[121,221,73,0.4201605583041126],[121,221,74,0.42672747548058276],[121,221,75,0.43239880885027016],[121,221,76,0.43684922918623637],[121,221,77,0.43985781359989645],[121,221,78,0.44129644256120215],[121,221,79,0.4528415229025503],[121,222,64,0.3320009839829875],[121,222,65,0.3414636942319803],[121,222,66,0.350226191424296],[121,222,67,0.35837851610067445],[121,222,68,0.36602801760898374],[121,222,69,0.3733002613355501],[121,222,70,0.3803400619768209],[121,222,71,0.3873126428513388],[121,222,72,0.39440188906001006],[121,222,73,0.4015326401587891],[121,222,74,0.40819462902319664],[121,222,75,0.4139488099578524],[121,222,76,0.41847311416051286],[121,222,77,0.42155036047050753],[121,222,78,0.4230565469614366],[121,222,79,0.43547813576998745],[121,223,64,0.30851003921174414],[121,223,65,0.31808979067864446],[121,223,66,0.3270191544368801],[121,223,67,0.33538640412441817],[121,223,68,0.34329476232230993],[121,223,69,0.35086298347519573],[121,223,70,0.35822604027993576],[121,223,71,0.3655359135423508],[121,223,72,0.37295953489370864],[121,223,73,0.38040889829364566],[121,223,74,0.3873739436594721],[121,223,75,0.39341776020812486],[121,223,76,0.39822082295175654],[121,223,77,0.40156882689400253],[121,223,78,0.4033409119594623],[121,223,79,0.4207509919236334],[121,224,64,0.2811309293402251],[121,224,65,0.2910062599482119],[121,224,66,0.3002849531851686],[121,224,67,0.3090522484198492],[121,224,68,0.31740611935538493],[121,224,69,0.3254575814699206],[121,224,70,0.33333108288909746],[121,224,71,0.3411649786903779],[121,224,72,0.3491092179159149],[121,224,73,0.3570631070893052],[121,224,74,0.3645166548332161],[121,224,75,0.37103470188797144],[121,224,76,0.3762996960141204],[121,224,77,0.3800994864946622],[121,224,78,0.382315518623358],[121,224,79,0.4085089897260172],[121,225,64,0.25040110587804576],[121,225,65,0.2607269310948218],[121,225,66,0.2705121062480885],[121,225,67,0.27983776843352925],[121,225,68,0.2887957428094764],[121,225,69,0.2974886220147896],[121,225,70,0.3060299114635867],[121,225,71,0.31454424051681457],[121,225,72,0.3231648465279153],[121,225,73,0.33177877697361235],[121,225,74,0.33987616914078395],[121,225,75,0.34702342625224025],[121,225,76,0.35290459346739333],[121,225,77,0.3573091461638821],[121,225,78,0.36769017677128046],[121,225,79,0.39851678584719796],[121,226,64,0.216932658504221],[121,226,65,0.2278329543214908],[121,226,66,0.23824883009762837],[121,226,67,0.24825650740857516],[121,226,68,0.2579410414144024],[121,226,69,0.2673962171847568],[121,226,70,0.27672449672221616],[121,226,71,0.28603701668355064],[121,226,72,0.29545091893567754],[121,226,73,0.3048417355410946],[121,226,74,0.313700043502003],[121,226,75,0.32159386900917675],[121,226,76,0.32820873074310647],[121,226,77,0.3333354509772773],[121,226,78,0.3584536446163489],[121,226,79,0.39060139548067985],[121,227,64,0.18131820660809858],[121,227,65,0.19287737539156616],[121,227,66,0.20400668325535892],[121,227,67,0.2147769298351394],[121,227,68,0.2252661041429887],[121,227,69,0.2355591390317134],[121,227,70,0.2457477034711137],[121,227,71,0.2559300326362126],[121,227,72,0.26620815014940113],[121,227,73,0.27644714363528383],[121,227,74,0.2861386101423821],[121,227,75,0.2948525261933132],[121,227,76,0.30227602659145636],[121,227,77,0.3168074247264335],[121,227,78,0.3511583220731681],[121,227,79,0.38460506480653656],[121,228,64,0.14373553639349698],[121,228,65,0.15599016670811044],[121,228,66,0.16786781069395157],[121,228,67,0.1794336415841129],[121,228,68,0.19075857807389654],[121,228,69,0.20191893384436457],[121,228,70,0.21299609455663554],[121,228,71,0.22407622231692714],[121,228,72,0.2352474109492919],[121,228,73,0.24636553236701925],[121,228,74,0.2569238771529355],[121,228,75,0.2664947771888812],[121,228,76,0.274767191207829],[121,228,77,0.3101496796865838],[121,228,78,0.34563674252689247],[121,228,79,0.38034905668922697],[121,229,64,0.10426603984950546],[121,229,65,0.11720738025753323],[121,229,66,0.12982355765101555],[121,229,67,0.1421741818486128],[121,229,68,0.15432334351462665],[121,229,69,0.1663391911278586],[121,229,70,0.17829352791902559],[121,229,71,0.19026142877673383],[121,229,72,0.20231836606075693],[121,229,73,0.214312289335787],[121,229,74,0.22573886803526025],[121,229,75,0.23617319240761314],[121,229,76,0.26791169005987564],[121,229,77,0.3051169034324819],[121,229,78,0.34170343306908646],[121,229,79,0.3776361381735609],[121,230,64,0.06304422182718226],[121,230,65,0.07662304289442438],[121,230,66,0.08992808445760364],[121,230,67,0.10301369392524229],[121,230,68,0.1159375909432457],[121,230,69,0.128760399371046],[121,230,70,0.14154519476387212],[121,230,71,0.15435706736114954],[121,230,72,0.16726025165423547],[121,230,73,0.18009609504607813],[121,230,74,0.1923633262795355],[121,230,75,0.22467414564662133],[121,230,76,0.26337338532114385],[121,230,77,0.3015205333438438],[121,230,78,0.33915744147130333],[121,230,79,0.37625338194757185],[121,231,64,0.020247680364497977],[121,231,65,0.03437870479429045],[121,231,66,0.04828748660718826],[121,231,67,0.06202362302058298],[121,231,68,0.0756391049990481],[121,231,69,0.08918782661398197],[121,231,70,0.1027251085937355],[121,231,71,0.11630723606422316],[121,231,72,0.12998862027195848],[121,231,73,0.14360531703631724],[121,231,74,0.1805730749356349],[121,231,75,0.22063879531653247],[121,231,76,0.2601265307558148],[121,231,77,0.2991593277297926],[121,231,78,0.3377851864883722],[121,231,79,0.37597526595403274],[121,232,64,-0.023913225363411006],[121,232,65,-0.009347322230565003],[121,232,66,0.005048607465508129],[121,232,67,0.0193201099865994],[121,232,68,0.03351424816429048],[121,232,69,0.04767910490032046],[121,232,70,0.0618633027018316],[121,232,71,0.07611553925149492],[121,232,72,0.09585066437720859],[121,232,73,0.1361630516395458],[121,232,74,0.17706463364212355],[121,232,75,0.21776320919470588],[121,232,76,0.2579725620048133],[121,232,77,0.2978223336614109],[121,232,78,0.3373636314915335],[121,232,79,0.3765670711507302],[121,233,64,-0.02999075622235816],[121,233,65,-0.046693956762618616],[121,233,66,-0.0396123582971888],[121,233,67,-0.02494782052168895],[121,233,68,-0.010314257358904788],[121,233,69,0.004331616744029598],[121,233,70,0.019032833518177222],[121,233,71,0.05337331709221205],[121,233,72,0.09258927192011536],[121,233,73,0.13324584621500063],[121,233,74,0.17460339654695878],[121,233,75,0.215854061799844],[121,233,76,0.2567060655950578],[121,233,77,0.2972922019105817],[121,233,78,0.33766378143118114],[121,233,79,0.37778857741930183],[121,234,64,-0.030207660667122563],[121,234,65,-0.04624454081379224],[121,234,66,-0.06626502082115114],[121,234,67,-0.07061027746457643],[121,234,68,-0.05172681790689176],[121,234,69,-0.02052009545166497],[121,234,70,0.013878910162632221],[121,234,71,0.05102523592193911],[121,234,72,0.09037507583793272],[121,234,73,0.13128387660323812],[121,234,74,0.1730034533784331],[121,234,75,0.21471406561142747],[121,234,76,0.2561182993957444],[121,234,77,0.2973488489952421],[121,234,78,0.3384545031293166],[121,234,79,0.3793980576227128],[121,235,64,-0.0073178994445466244],[121,235,65,-0.022299079020023024],[121,235,66,-0.037273252579524185],[121,235,67,-0.05227947640125491],[121,235,68,-0.052529560631801746],[121,235,69,-0.02162404292592854],[121,235,70,0.01258429900239065],[121,235,71,0.04965379337457612],[121,235,72,0.08904139617176288],[121,235,73,0.1301005247771121],[121,235,74,0.1720779131443207],[121,235,75,0.21414575819527715],[121,235,76,0.25600108265588783],[121,235,77,0.297773466331197],[121,235,78,0.3395066689018509],[121,235,79,0.38115656981150037],[121,236,64,0.03977430323351784],[121,236,65,0.025082803807386075],[121,236,66,0.010337432070055705],[121,236,67,-0.004501086827085082],[121,236,68,-0.019470356284636642],[121,236,69,-0.021727582136226414],[121,236,70,0.012205535794154648],[121,236,71,0.049102320685114526],[121,236,72,0.0884228460384008],[121,236,73,0.12952138090029647],[121,236,74,0.17164301630165557],[121,236,75,0.2139556802351341],[121,236,76,0.2561510556228499],[121,236,77,0.29835287649024966],[121,236,78,0.34059762351053957],[121,236,79,0.3828325475785998],[121,237,64,0.08732729630229909],[121,237,65,0.07316066125683007],[121,237,66,0.058874863550500006],[121,237,67,0.04442915284456095],[121,237,68,0.029785387299929952],[121,237,69,0.014908542798179561],[121,237,70,0.012598608104029296],[121,237,71,0.049219089222527046],[121,237,72,0.08835981797243828],[121,237,73,0.12937873816050338],[121,237,74,0.17152265820782975],[121,237,75,0.21395894447032782],[121,237,76,0.25637430874191014],[121,237,77,0.29888423656468627],[121,237,78,0.34151597444456894],[121,237,79,0.3842066885627498],[121,238,64,0.1355805829243381],[121,238,65,0.1221930163898606],[121,238,66,0.10861458537866094],[121,238,67,0.09480191578419794],[121,238,68,0.08071534787200596],[121,238,69,0.06631949600011397],[121,238,70,0.05158372525447193],[121,238,71,0.04986227741574055],[121,238,72,0.08870341946917576],[121,238,73,0.1295165183647552],[121,238,74,0.17155332385331074],[121,238,75,0.21398419553982764],[121,238,76,0.2564913814371681],[121,238,77,0.29918008863840045],[121,238,78,0.3420667055320762],[121,238,79,0.3850771411007584],[121,239,64,0.18463970655326925],[121,239,65,0.17229726268092566],[121,239,66,0.15968432511121333],[121,239,67,0.1467538529835397],[121,239,68,0.13346384227143876],[121,239,69,0.11977796577921826],[121,239,70,0.10566611216898367],[121,239,71,0.09110482401803745],[121,239,72,0.08932085772787328],[121,239,73,0.1297956282962502],[121,239,74,0.1715894338755236],[121,239,75,0.21387896073223708],[121,239,76,0.2563426304733538],[121,239,77,0.29907375736425157],[121,239,78,0.34207661388121463],[121,239,79,0.3852649890282537],[121,240,64,0.23447788550761467],[121,240,65,0.22345162848068412],[121,240,66,0.21206629985154923],[121,240,67,0.20027024569804758],[121,240,68,0.18801842240123207],[121,240,69,0.1752731500428041],[121,240,70,0.1620047456949038],[121,240,71,0.14819203660225405],[121,240,72,0.13382464081485868],[121,240,73,0.13009974683303951],[121,240,74,0.17150910185411414],[121,240,75,0.21351539164193317],[121,240,76,0.25579396789873565],[121,240,77,0.29842509464782996],[121,240,78,0.3414000701509211],[121,240,79,0.3846200346290697],[121,241,64,0.2849560368490969],[121,241,65,0.275515797953825],[121,241,66,0.2656183844834378],[121,241,67,0.2552066726735991],[121,241,68,0.24423199585745536],[121,241,69,0.23265504658560177],[121,241,70,0.22044663847756985],[121,241,71,0.20758832780483466],[121,241,72,0.1940746942768911],[121,241,73,0.18007458534494392],[121,241,74,0.17122030288778434],[121,241,75,0.21279639673155226],[121,241,76,0.25474296856932965],[121,241,77,0.2971265714378395],[121,241,78,0.33992510215160326],[121,241,79,0.38302687973347915],[121,242,64,0.3358417211334772],[121,242,65,0.32825044038895945],[121,242,66,0.3200941776417042],[121,242,67,0.3113095662106134],[121,242,68,0.30184382805815047],[121,242,69,0.2916558611017093],[121,242,70,0.28071716530251145],[121,242,71,0.2690126075320304],[121,242,72,0.2565427238939034],[121,242,73,0.24347551743063403],[121,242,74,0.23021489363743003],[121,242,75,0.21710002394613603],[121,242,76,0.2531253472540598],[121,242,77,0.29510971662274915],[121,242,78,0.3375798017753983],[121,242,79,0.3804113049649361],[121,243,64,0.38682700803544245],[121,243,65,0.3813356478822061],[121,243,66,0.37516196542164426],[121,243,67,0.3682356570674359],[121,243,68,0.3604994258731139],[121,243,69,0.35191029069846713],[121,243,70,0.3424407126338838],[121,243,71,0.3320795386826319],[121,243,72,0.3208343479527561],[121,243,73,0.30887260500186303],[121,243,74,0.2965814777522374],[121,243,75,0.2842850791004419],[121,243,76,0.2722234932909426],[121,243,77,0.2923519030337831],[121,243,78,0.3343390552560679],[121,243,79,0.37674694713538476],[121,244,64,0.4375452628453816],[121,244,65,0.43438828139219515],[121,244,66,0.43042258282478574],[121,244,67,0.42557030820049424],[121,244,68,0.4197693027519754],[121,244,69,0.41297468290959066],[121,244,70,0.4051601987208345],[121,244,71,0.39631939166678654],[121,244,72,0.38646800767829576],[121,244,73,0.3757733642077047],[121,244,74,0.364604443196624],[121,244,75,0.353268791982001],[121,244,76,0.34199377627228444],[121,244,77,0.33093627276134624],[121,244,78,0.330276138101018],[121,244,79,0.37210574500169924],[121,245,64,0.4875868538402109],[121,245,65,0.4869782251687542],[121,245,66,0.48542617294336166],[121,245,67,0.4828447373436758],[121,245,68,0.4791666253531056],[121,245,69,0.4743450702101727],[121,245,70,0.46835546427447733],[121,245,71,0.4611967653072808],[121,245,72,0.4528939995640212],[121,245,73,0.4436147997419746],[121,245,74,0.43370873634773266],[121,245,75,0.4234654846308604],[121,245,76,0.41309851509769907],[121,245,77,0.4027546607915188],[121,245,78,0.3925229679264792],[121,245,79,0.3824428298754078],[121,246,64,0.5365137805272958],[121,246,65,0.5386435495542897],[121,246,66,0.5396878438824728],[121,246,67,0.5395521284258812],[121,246,68,0.5381637416722818],[121,246,69,0.5354740800324567],[121,246,70,0.5314605337143623],[121,246,71,0.5261281741221535],[121,246,72,0.5195123702629008],[121,246,73,0.5117815898862887],[121,246,74,0.5032650357162995],[121,246,75,0.4942334526701844],[121,246,76,0.48488544119288157],[121,246,77,0.47535691203197933],[121,246,78,0.4657297876005094],[121,246,79,0.45603994992757857],[121,247,64,0.5838732227605962],[121,247,65,0.5889045821569184],[121,247,66,0.5927022234189323],[121,247,67,0.595162631825679],[121,247,68,0.5962075906699742],[121,247,69,0.5957867202811933],[121,247,70,0.5938797469831923],[121,247,71,0.5904985019873449],[121,247,72,0.5856896740369989],[121,247,73,0.5796231306163644],[121,247,74,0.572607055479028],[121,247,75,0.5648924910429407],[121,247,76,0.55666242840568],[121,247,77,0.5480411640570506],[121,247,78,0.5391028645053976],[121,247,79,0.5298793388176382],[121,248,64,0.6292100107310679],[121,248,65,0.6372768873975345],[121,248,66,0.6439569113991152],[121,248,67,0.6491372534655198],[121,248,68,0.6527339933998405],[121,248,69,0.6546950403512793],[121,248,70,0.655002761932602],[121,248,71,0.6536763221822968],[121,248,72,0.650774592768919],[121,248,73,0.6464694387746595],[121,248,74,0.6410477055076784],[121,248,75,0.6347402751923901],[121,248,76,0.6277140515467396],[121,248,77,0.620081234379631],[121,248,78,0.611907761745535],[121,248,79,0.603220919656285],[121,249,64,0.6720780158293724],[121,249,65,0.6832831544286885],[121,249,66,0.6929448298735257],[121,249,67,0.7009406327430654],[121,249,68,0.7071808256358362],[121,249,69,0.7116116676449529],[121,249,70,0.71421842727714],[121,249,71,0.7150280838155268],[121,249,72,0.7141124185319785],[121,249,73,0.7116459143061706],[121,249,74,0.7078941078916058],[121,249,75,0.7030675976830391],[121,249,76,0.6973170013426393],[121,249,77,0.6907421655929747],[121,249,78,0.6834005017761037],[121,249,79,0.6753144471787829],[121,250,64,0.7120504623821103],[121,250,65,0.7264639934266579],[121,250,66,0.7391754709696219],[121,250,67,0.750052709301325],[121,250,68,0.759000071999773],[121,250,69,0.7659622195905079],[121,250,70,0.7709275261185464],[121,250,71,0.7739311646323845],[121,250,72,0.7750583987214273],[121,250,73,0.7744869615597845],[121,250,74,0.7724614699562287],[121,250,75,0.7691724602646098],[121,250,76,0.7647543558041285],[121,250,77,0.7592946303538205],[121,250,78,0.7528420544538825],[121,250,79,0.7454140245138474],[121,251,64,0.7487291602608099],[121,251,65,0.7663876402557849],[121,251,66,0.7821850425018154],[121,251,67,0.7959792786363679],[121,251,68,0.8076687615879559],[121,251,69,0.8171965911610315],[121,251,70,0.8245543900387009],[121,251,71,0.8297857902032478],[121,251,72,0.832989943744868],[121,251,73,0.834348469653264],[121,251,74,0.834085813775418],[121,251,75,0.8323730213769499],[121,251,76,0.8293287080073336],[121,251,77,0.825028196204688],[121,251,78,0.8195116911610703],[121,251,79,0.8127914953482847],[121,252,64,0.7817526583646592],[121,252,65,0.8026585695062394],[121,252,66,0.8215455113199756],[121,252,67,0.8382614365441002],[121,252,68,0.8526987850985417],[121,252,69,0.8647991178949433],[121,252,70,0.8745573837631605],[121,252,71,0.8820258194942071],[121,252,72,0.8873176972740346],[121,252,73,0.8906191519041119],[121,252,74,0.8921355621801562],[121,252,75,0.8920193990983004],[121,252,76,0.8903741502904159],[121,252,77,0.8872634502378839],[121,252,78,0.8827192050047119],[121,252,79,0.8767487114900179],[121,253,64,0.8108033189754524],[121,253,65,0.8349250159034804],[121,253,66,0.8568725443945205],[121,253,67,0.8764839124040114],[121,253,68,0.8936455934573463],[121,253,69,0.9082976144159101],[121,253,70,0.9204382603927029],[121,253,71,0.9301283968175126],[121,253,72,0.9374954690550793],[121,253,73,0.9427307443233575],[121,253,74,0.9460219812603895],[121,253,75,0.9475043295337672],[121,253,76,0.9472671148624493],[121,253,77,0.9453629835979136],[121,253,78,0.9418159970883787],[121,253,79,0.9366286758260982],[121,254,64,0.835613312986536],[121,254,65,0.8628854040914152],[121,254,66,0.8878323476402887],[121,254,67,0.9102822913022695],[121,254,68,0.9301157779446678],[121,254,69,0.9472712884548643],[121,254,70,0.9617503872057678],[121,254,71,0.9736224701648166],[121,254,72,0.9830290302805312],[121,254,73,0.9901670631755454],[121,254,74,0.9952084793634719],[121,254,75,0.998272680647481],[121,254,76,0.999436070828081],[121,254,77,0.9987412358259393],[121,254,78,0.9962050288597886],[121,254,79,0.9918255606794338],[121,255,64,0.8559695360042441],[121,255,65,0.8862936867875453],[121,255,66,0.9141474024773085],[121,255,67,0.9393491249921101],[121,255,68,0.9617735318208985],[121,255,69,0.981357530371753],[121,255,70,0.9981058420292734],[121,255,71,1.0120961759205693],[121,255,72,1.0234837715201666],[121,255,73,1.032471921602058],[121,255,74,1.03921876258624],[121,255,75,1.0438298215353998],[121,255,76,1.046370077624868],[121,255,77,1.0468731990431084],[121,255,78,1.0453496405311526],[121,255,79,1.0417936015609928],[121,256,64,0.8717174453228105],[121,256,65,0.9049635913112529],[121,256,66,0.9356011001297577],[121,256,67,0.9634389316929571],[121,256,68,0.9883459934525044],[121,256,69,1.010257578178714],[121,256,70,1.029181380179629],[121,256,71,1.0452030899574762],[121,256,72,1.0584912232127952],[121,256,73,1.0692559053098636],[121,256,74,1.077643846762869],[121,256,75,1.0837488471409773],[121,256,76,1.087626194875551],[121,256,77,1.089301981975064],[121,256,78,1.0887812355745823],[121,256,79,1.0860548663198306],[121,257,64,0.8827638177721127],[121,257,65,0.9187717744844419],[121,257,66,0.9520412736622046],[121,257,67,0.9823720847272412],[121,257,68,1.0096274709372177],[121,257,69,1.0337410580634252],[121,257,70,1.0547232719725819],[121,257,71,1.0726673451125877],[121,257,72,1.0877544387174518],[121,257,73,1.100202007324107],[121,257,74,1.110147925946885],[121,257,75,1.1176766584120108],[121,257,76,1.1228357486535523],[121,257,77,1.1256452338158884],[121,257,78,1.1261058312907946],[121,257,79,1.1242058996891648],[121,258,64,0.8890784284388659],[121,258,65,0.9276598859052977],[121,258,66,0.9633826277540296],[121,258,67,0.9960375899959409],[121,258,68,1.025482548229592],[121,258,69,1.05164940041388],[121,258,70,1.0745510108032585],[121,258,71,1.094287615045457],[121,258,72,1.1110522399255105],[121,258,73,1.1250701218061374],[121,258,74,1.1364730973889787],[121,258,75,1.145338897900374],[121,258,76,1.1517094541634376],[121,258,77,1.1556004279332581],[121,258,78,1.1570094754529139],[121,258,79,1.1559232432303186],[121,259,64,0.8906946502605366],[121,259,65,0.9316355395942679],[121,259,66,0.9696080662109728],[121,259,67,1.0043947522916512],[121,259,68,1.0358480727655854],[121,259,69,1.063898131343138],[121,259,70,1.0885598917948383],[121,259,71,1.1099399644767043],[121,259,72,1.1282423254319698],[121,259,73,1.1437003969351283],[121,259,74,1.1564429430087069],[121,259,75,1.1665437408026587],[121,259,76,1.1740413948343142],[121,259,77,1.1789490054127276],[121,259,78,1.1812625290232548],[121,259,79,1.180967830672386],[121,260,64,0.8877089744927756],[121,260,65,0.9307721940132336],[121,260,66,0.970768917214937],[121,260,67,1.0074737304504515],[121,260,68,1.0407340245875834],[121,260,69,1.0704780397155753],[121,260,70,1.0967224610174888],[121,260,71,1.119579565808724],[121,260,72,1.139263241267737],[121,260,73,1.1560154468552106],[121,260,74,1.1699649673620744],[121,260,75,1.1811845414437692],[121,260,76,1.1897118578282688],[121,260,77,1.1955593784433087],[121,260,78,1.1987228149452873],[121,260,79,1.1991882586498495],[121,261,64,0.8802794520495443],[121,261,65,0.9252079404569087],[121,261,66,0.9669840563109517],[121,261,67,1.0053749813413653],[121,261,68,1.0402232669685414],[121,261,69,1.0714552196732303],[121,261,70,1.0990888352760766],[121,261,71,1.1232412821269662],[121,261,72,1.14413521419127],[121,261,73,1.1620214226864158],[121,261,74,1.1770318921032454],[121,261,75,1.1892413352016973],[121,261,76,1.1986890259620262],[121,261,77,1.2053887935424807],[121,261,78,1.2093376330089014],[121,261,79,1.2105229328362552],[121,262,64,0.8686230557167918],[121,262,65,0.9151431998174107],[121,262,66,0.9584379271323289],[121,262,67,0.9982675926945105],[121,262,68,1.034470178536413],[121,262,69,1.0669699886634596],[121,262,70,1.095785892467916],[121,262,71,1.121039116583099],[121,262,72,1.142959847540919],[121,262,73,1.1618079426007901],[121,262,74,1.1777218069417552],[121,262,75,1.190781195874835],[121,262,76,1.2010295260432056],[121,262,77,1.2084840546220188],[121,262,78,1.213144640790351],[121,262,79,1.215001089475315],[121,263,64,0.8530119632388791],[121,263,65,0.9008373277211486],[121,263,66,0.9453774598631018],[121,263,67,0.9863865047669943],[121,263,68,1.0236981668978866],[121,263,69,1.0572346809668975],[121,263,70,1.0870153325095298],[121,263,71,1.1131645281590041],[121,263,72,1.1359186796469192],[121,263,73,1.155546880962635],[121,263,74,1.1721971770941928],[121,263,75,1.1859574484908273],[121,263,76,1.1968778336201817],[121,263,77,1.2049811058936637],[121,263,78,1.210271600665926],[121,263,79,1.2127426923085032],[121,264,64,0.8337687612782767],[121,264,65,0.8826041280385992],[121,264,66,0.9281078874383661],[121,264,67,0.9700286208472031],[121,264,68,1.0081960637621048],[121,264,69,1.0425303167264228],[121,264,70,1.0730506088331386],[121,264,71,1.0998836138123453],[121,264,72,1.1232706048037637],[121,264,73,1.1434900165336066],[121,264,74,1.1607027072310732],[121,264,75,1.1750077375576593],[121,264,76,1.1864645341462299],[121,264,77,1.1951034746152955],[121,264,78,1.2009349928999886],[121,264,79,1.203957204899777],[121,265,64,0.8112605702484182],[121,265,65,0.8608062747667993],[121,265,66,0.9069874594822961],[121,265,67,0.9495478065972263],[121,265,68,0.9883134015640708],[121,265,69,1.0232021464768049],[121,265,70,1.054232730452529],[121,265,71,1.0815331570033293],[121,265,72,1.10534815680258],[121,265,73,1.125965539742274],[121,265,74,1.1435620619185007],[121,265,75,1.1582509507565852],[121,265,76,1.1701034405575754],[121,265,77,1.179159573677234],[121,265,78,1.1854374948070154],[121,265,79,1.1889412383570532],[121,266,64,0.7858920900196525],[121,266,65,0.8358486422845509],[121,266,66,0.8824210539838816],[121,266,67,0.9253487782334835],[121,266,68,0.9644545715878463],[121,266,69,0.9996540711751525],[121,266,70,1.0309649345984435],[121,266,71,1.0585155426028252],[121,266,72,1.082552655023672],[121,266,73,1.1033734190183275],[121,266,74,1.1211734425548086],[121,266,75,1.1360829980770843],[121,266,76,1.1481875672655197],[121,266,77,1.1575388640288364],[121,266,78,1.1641643259877923],[121,266,79,1.1680750744505963],[121,267,64,0.7580975664980368],[121,267,65,0.8081705439800511],[121,267,66,0.8548526867100759],[121,267,67,0.8978798795452496],[121,267,68,0.9370718635892225],[121,267,69,0.9723419377318598],[121,267,70,1.003706229923195],[121,267,71,1.0312925381815465],[121,267,72,1.0553482130889578],[121,267,73,1.076179626191158],[121,267,74,1.0940040208019284],[121,267,75,1.108971446393614],[121,267,76,1.1211839605624405],[121,267,77,1.1307068769452169],[121,267,78,1.1375784596396346],[121,267,79,1.1418180641282036],[121,268,64,0.7283316790777568],[121,268,65,0.7782368792517325],[121,268,66,0.8247569183571352],[121,268,67,0.8676247477518283],[121,268,68,0.9066573869186039],[121,268,69,0.9417657100427501],[121,268,70,0.9729638102751653],[121,268,71,1.0003779416809382],[121,268,72,1.0242546100748955],[121,268,73,1.0449092209533806],[121,268,74,1.0625832285120111],[121,268,75,1.0774490094846443],[121,268,76,1.0896273854421081],[121,268,77,1.099199096134473],[121,268,78,1.1062146999409521],[121,268,79,1.1107029014274736],[121,269,64,0.6970593489663056],[121,269,65,0.7465281888814543],[121,269,66,0.7926291594392948],[121,269,67,0.8350928681975425],[121,269,68,0.8737338731432787],[121,269,69,0.9084605155216192],[121,269,70,0.9392843390424319],[121,269,71,0.9663290954650083],[121,269,72,0.9898390242851767],[121,269,73,1.0101382943886028],[121,269,74,1.0274949041486303],[121,269,75,1.042105893493332],[121,269,76,1.0541128688337036],[121,269,77,1.0636136996848595],[121,269,78,1.0706726255096384],[121,269,79,1.0753287727846608],[121,270,64,0.6647444683825999],[121,270,65,0.713529618780239],[121,270,66,0.7589748729149999],[121,270,67,0.8008090178847809],[121,270,68,0.8388443601693478],[121,270,69,0.8729865671334727],[121,270,70,0.9032441040658149],[121,270,71,0.929737266753454],[121,270,72,0.9527066295835491],[121,270,73,0.9724847715638173],[121,270,74,0.9893682957029728],[121,270,75,1.0035809978302628],[121,270,76,1.0152870992499876],[121,270,77,1.02460316185235],[121,270,78,1.0316083989357563],[121,270,79,1.0363533817406074],[121,271,64,0.6318375506288553],[121,271,65,0.6797187921073206],[121,271,66,0.7242976745513999],[121,271,67,0.7653015978457349],[121,271,68,0.8025407578638696],[121,271,69,0.835917960928934],[121,271,70,0.8654380431217692],[121,271,71,0.8912168944364001],[121,271,72,0.9134900542870136],[121,271,73,0.9325980731865912],[121,271,74,0.9488679201051088],[121,271,75,0.9625519715182703],[121,271,76,0.9738386828495569],[121,271,77,0.98286471468847],[121,271,78,0.9897254423883003],[121,271,79,0.994483849043466],[121,272,64,0.5987623010349282],[121,272,65,0.6455525897613001],[121,272,66,0.689086331025981],[121,272,67,0.7290898543518056],[121,272,68,0.7653712951763044],[121,272,69,0.797830349079024],[121,272,70,0.8264676399744119],[121,272,71,0.851393702270168],[121,272,72,0.8728377026189209],[121,272,73,0.8911476363266865],[121,272,74,0.9066822791300854],[121,272,75,0.9197241249791932],[121,272,76,0.93048725591315],[121,272,77,0.9391296695084533],[121,272,78,0.9457639792962231],[121,272,79,0.9504664881484948],[121,273,64,0.5659011087759692],[121,273,65,0.6114528392441471],[121,273,66,0.6538006557659896],[121,273,67,0.6926699889612262],[121,273,68,0.7278668487596912],[121,273,69,0.7592874884106172],[121,273,70,0.786927690996888],[121,273,71,0.8108916784541553],[121,273,72,0.8314009387219399],[121,273,73,0.8488102942019664],[121,273,74,0.8635114317985856],[121,273,75,0.8758181972621921],[121,273,76,0.885971453733522],[121,273,77,0.8941515981991502],[121,273,78,0.9004894421030322],[121,273,79,0.9050754561141361],[121,274,64,0.5336276815974977],[121,274,65,0.577834522263905],[121,274,66,0.6188954419883194],[121,274,67,0.6565349913522748],[121,274,68,0.6905568690576116],[121,274,69,0.7208534693224483],[121,274,70,0.747415059373236],[121,274,71,0.7703385870328],[121,274,72,0.7898365931096837],[121,274,73,0.8062700215703218],[121,274,74,0.8200642314201666],[121,274,75,0.8315653426334323],[121,274,76,0.8410419055772607],[121,274,77,0.8486975922373452],[121,274,78,0.8546822440450891],[121,274,79,0.8591012763063319],[121,275,64,0.5026252277867959],[121,275,65,0.5453902025406303],[121,275,66,0.5850722130212316],[121,275,67,0.6213949665125171],[121,275,68,0.6541596975435291],[121,275,69,0.6832545739939787],[121,275,70,0.7086637399884943],[121,275,71,0.7304759955794863],[121,275,72,0.7488937742670073],[121,275,73,0.7642833944502169],[121,275,74,0.7771043215691078],[121,275,75,0.7877355488059473],[121,275,76,0.7964739327725701],[121,275,77,0.8035470446213073],[121,275,78,0.8091243715079458],[121,275,79,0.813326868406751],[121,276,64,0.4736195309988661],[121,276,65,0.514842260098153],[121,276,66,0.5530501135233167],[121,276,67,0.5879660747707102],[121,276,68,0.6193888509625383],[121,276,69,0.6472021141167845],[121,276,70,0.671383385255672],[121,276,71,0.6920125613525724],[121,276,72,0.7092809379900353],[121,276,73,0.7235594340369804],[121,276,74,0.7353417359641925],[121,276,75,0.7450399778936561],[121,276,76,0.7529796322582865],[121,276,77,0.7594125062757424],[121,276,78,0.7645280840462702],[121,276,79,0.7684632142746242],[121,277,64,0.4471641961334689],[121,277,65,0.486746533278966],[121,277,66,0.5233873959355645],[121,277,67,0.5568092108383835],[121,277,68,0.5868081505707559],[121,277,69,0.6132631882159103],[121,277,70,0.6361448004976564],[121,277,71,0.6555233194099909],[121,277,72,0.6715779808125204],[121,277,73,0.6846834943641739],[121,277,74,0.6953675678290963],[121,277,75,0.7040754171981757],[121,277,76,0.7111611332965071],[121,277,77,0.7169008100137432],[121,277,78,0.7215040151177164],[121,277,79,0.7251236036513828],[121,278,64,0.423637105168849],[121,278,65,0.46148823433100344],[121,278,66,0.4964768039143513],[121,278,67,0.5283248643222773],[121,278,68,0.5568260697535418],[121,278,69,0.5818545267920261],[121,278,70,0.6033732969688943],[121,278,71,0.6214425532970901],[121,278,72,0.6362286370763438],[121,278,73,0.6481091981211154],[121,278,74,0.6576454690814266],[121,278,75,0.6653153781890778],[121,278,76,0.6715013429736771],[121,278,77,0.6765035181461909],[121,278,78,0.6805513848258145],[121,278,79,0.683813681110202],[121,279,64,0.40323699409017694],[121,279,65,0.4392778691608725],[121,279,66,0.47254085032532483],[121,279,67,0.5027477728787266],[121,279,68,0.5296897802874363],[121,279,69,0.5532359501250292],[121,279,70,0.573341579521068],[121,279,71,0.5900561301225081],[121,279,72,0.6035322775399093],[121,279,73,0.614149718442542],[121,279,74,0.6225024476339267],[121,279,75,0.6291004537588937],[121,279,76,0.6343539183056548],[121,279,77,0.6385865731725586],[121,279,78,0.642047400200707],[121,279,79,0.6449206726724767],[121,280,64,0.38597863896595697],[121,280,65,0.4201457890393118],[121,280,66,0.45162575312673986],[121,280,67,0.4801402619440366],[121,280,68,0.5054779161745727],[121,280,69,0.527502576461709],[121,280,70,0.5461614187294568],[121,280,71,0.5614926548313042],[121,280,72,0.5736345619245995],[121,280,73,0.5829679490644127],[121,280,74,0.590118587508681],[121,280,75,0.5956276330889295],[121,280,76,0.599932231364981],[121,280,77,0.6033789777184683],[121,280,78,0.6062357219073502],[121,280,79,0.6087017170814855],[121,281,64,0.37168665117235805],[121,281,65,0.4039353742586975],[121,281,66,0.43359402914194445],[121,281,67,0.4603842710404198],[121,281,68,0.4840920550490131],[121,281,69,0.5045757805867989],[121,281,70,0.5217741074791704],[121,281,71,0.5357134436744126],[121,281,72,0.546516945398247],[121,281,73,0.554565562844689],[121,281,74,0.5605156917630403],[121,281,75,0.5649385741245101],[121,281,76,0.5682973274288731],[121,281,77,0.5709605037184322],[121,281,78,0.5732139973795088],[121,281,79,0.5752713017315112],[121,282,64,0.3599878817650698],[121,282,65,0.39029484974233386],[121,282,66,0.4181157457208675],[121,282,67,0.4431720666574745],[121,282,68,0.46524691715510824],[121,282,69,0.48419290277764115],[121,282,70,0.4999397020116155],[121,282,71,0.5125013168749003],[121,282,72,0.5219850389962202],[121,282,73,0.5287709586497998],[121,282,74,0.5335448482280931],[121,282,75,0.536906833660575],[121,282,76,0.5393448761489636],[121,282,77,0.5412484308448987],[121,282,78,0.5429204603807625],[121,282,79,0.5445878032537015],[121,283,64,0.35030243499994324],[121,283,65,0.3786677326066602],[121,283,66,0.4046584302915314],[121,283,67,0.4279956417101022],[121,283,68,0.44845928189865897],[121,283,69,0.4658957081431175],[121,283,70,0.48022504743171435],[121,283,71,0.49144821049142556],[121,283,72,0.4996558239803988],[121,283,73,0.5052260966069586],[121,283,74,0.5088729180597318],[121,283,75,0.5112240550375716],[121,283,76,0.5127911157426315],[121,283,77,0.5139833141833375],[121,283,78,0.5151195969921576],[121,283,79,0.5164391327582215],[121,284,64,0.34185530385614443],[121,284,65,0.3683036494910472],[121,284,66,0.39249707113630705],[121,284,67,0.41415590428683935],[121,284,68,0.43305637164058325],[121,284,69,0.449037974661107],[121,284,70,0.462010580805403],[121,284,71,0.4719612064167963],[121,284,72,0.4789629209157017],[121,284,73,0.483391017298164],[121,284,74,0.48598631399756853],[121,284,75,0.4874030135585761],[121,284,76,0.48817517404671673],[121,284,77,0.48873059081754494],[121,284,78,0.489403049874796],[121,284,79,0.4904429528175962],[121,285,64,0.3343448399408971],[121,285,65,0.3589181775913464],[121,285,66,0.38136442624340655],[121,285,67,0.40140265476232806],[121,285,68,0.4188048138784744],[121,285,69,0.43340288547837474],[121,285,70,0.44509573790472606],[121,285,71,0.4538556872652752],[121,285,72,0.459737382129517],[121,285,73,0.46311207561187256],[121,285,74,0.4647459968574388],[121,285,75,0.46531826733320014],[121,285,76,0.46538393169099873],[121,285,77,0.46538796695427087],[121,285,78,0.4656776738581457],[121,285,79,0.4665134503429592],[121,286,64,0.3281267004369972],[121,286,65,0.3508757402051912],[121,286,66,0.37163251496766453],[121,286,67,0.3901143610391937],[121,286,68,0.4060884327948431],[121,286,69,0.41937861985733604],[121,286,70,0.4298721818810809],[121,286,71,0.4375261009327813],[121,286,72,0.44237595384152656],[121,286,73,0.4447876729039587],[121,286,74,0.4455505681288435],[121,286,75,0.4453664238708646],[121,286,76,0.44480921473110085],[121,286,77,0.44433924122750945],[121,286,78,0.44431566005070583],[121,286,79,0.4450074089050989],[121,287,64,0.32349606899243655],[121,287,65,0.344481227699419],[121,287,66,0.3636145743877043],[121,287,67,0.38061128240200365],[121,287,68,0.3952332562477514],[121,287,69,0.4072958299030764],[121,287,70,0.4166741955157619],[121,287,71,0.4233095624851247],[121,287,72,0.42721802334205067],[121,287,73,0.42875880097411767],[121,287,74,0.4287412271613026],[121,287,75,0.4278868280957615],[121,287,76,0.4267859202054286],[121,287,77,0.4259118613429371],[121,287,78,0.42563371118380194],[121,287,79,0.426227300833917],[121,288,64,0.32065395660772766],[121,288,65,0.33994636458713223],[121,288,66,0.35753157640553934],[121,288,67,0.37312221372169585],[121,288,68,0.3864745559384316],[121,288,69,0.3973950358413707],[121,288,70,0.40574647955183113],[121,288,71,0.4114540907938523],[121,288,72,0.4145143152006804],[121,288,73,0.41527822150384935],[121,288,74,0.41457148822590095],[121,288,75,0.41313189917339876],[121,288,76,0.4115630765306527],[121,288,77,0.41034882793370514],[121,288,78,0.4098659198238027],[121,288,79,0.41039527708041],[121,289,64,0.319718012630374],[121,289,65,0.33740004190747175],[121,289,66,0.3535221059225336],[121,289,67,0.36779393361161805],[121,289,68,0.3799658888883298],[121,289,69,0.3898352826442285],[121,289,70,0.39725244405882865],[121,289,71,0.4021265512191217],[121,289,72,0.4044344980120824],[121,289,73,0.40451774526890083],[121,289,74,0.40321413685836494],[121,289,75,0.4012737657171668],[121,289,76,0.39931015708394796],[121,289,77,0.39781468443769463],[121,289,78,0.3971694314201484],[121,289,79,0.3976584997422906],[121,290,64,0.3207327708093064],[121,290,65,0.3368981255273119],[121,290,66,0.35165175495120937],[121,290,67,0.36470020761147337],[121,290,68,0.37578773207586663],[121,290,69,0.38470242698906276],[121,290,70,0.3912821663953744],[121,290,71,0.3954203003445279],[121,290,72,0.39707452799177695],[121,290,73,0.39657528239426676],[121,290,74,0.39476799061943957],[121,290,75,0.3924107377358784],[121,290,76,0.39012326157731464],[121,290,77,0.3884014043384046],[121,290,78,0.387630032619215],[121,290,79,0.38809442591847954],[121,291,64,0.32367933041103486],[121,291,65,0.3384327403665338],[121,291,66,0.35192203266447436],[121,291,67,0.36385034640065345],[121,291,68,0.3739557102343225],[121,291,69,0.38201705455280616],[121,291,70,0.38786001577091],[121,291,71,0.3913625327650567],[121,291,72,0.39246372942300345],[121,291,73,0.39148166365280557],[121,291,74,0.38926446427357553],[121,291,75,0.3865736153232364],[121,291,76,0.3840311652248899],[121,291,77,0.38213417577033293],[121,291,78,0.381267664844839],[121,291,79,0.38171604289325883],[121,292,64,0.3284844723962884],[121,292,65,0.3419410305457414],[121,292,66,0.35427879138121865],[121,292,67,0.3651973190399985],[121,292,68,0.37442841680995553],[121,292,69,0.38174202764016507],[121,292,70,0.3869519444058327],[121,292,71,0.38992132992748363],[121,292,72,0.390571611954046],[121,292,73,0.3892072328068913],[121,292,74,0.3866739393853857],[121,292,75,0.38373183408873324],[121,292,76,0.3810012357027894],[121,292,77,0.37897708348842357],[121,292,78,0.37804186314509547],[121,292,79,0.3784770546497014],[121,293,64,0.3350292106578474],[121,293,65,0.3473133954570511],[121,293,66,0.3586201684888388],[121,293,67,0.36864542124246796],[121,293,68,0.37711482808077823],[121,293,69,0.3837896631463694],[121,293,70,0.3884724452903324],[121,293,71,0.3910124110234774],[121,293,72,0.39131442474623396],[121,293,73,0.38966820999327995],[121,293,74,0.3869119383340208],[121,293,75,0.38379944733009896],[121,293,76,0.38094521790157176],[121,293,77,0.37883868820165],[121,293,78,0.3778571203053936],[121,293,79,0.37827701971242356],[121,294,64,0.3431567783193531],[121,294,65,0.3544012017577682],[121,294,66,0.36480404430253943],[121,294,67,0.37405749867260835],[121,294,68,0.38188131043591045],[121,294,69,0.38802854085437055],[121,294,70,0.3922911765419101],[121,294,71,0.3945055859354155],[121,294,72,0.3945614474726518],[121,294,73,0.39273282615124383],[121,294,74,0.3898451027455355],[121,294,75,0.38664094494738854],[121,294,76,0.3837248864714294],[121,294,77,0.38157750327085416],[121,294,78,0.3805681762280082],[121,294,79,0.3809664403197975],[121,295,64,0.352680049094838],[121,295,65,0.3630239712867189],[121,295,66,0.37265501586119],[121,295,67,0.38126172527460417],[121,295,68,0.388558220815297],[121,295,69,0.39428994206627976],[121,295,70,0.39823925236136737],[121,295,71,0.40023091023469437],[121,295,72,0.40014101816733316],[121,295,73,0.39822722849374576],[121,295,74,0.39529697634300753],[121,295,75,0.39207690909846227],[121,295,76,0.3891575661598521],[121,295,77,0.38700736877057573],[121,295,78,0.385985232577781],[121,295,79,0.38635180292533516],[121,296,64,0.36338839370954334],[121,296,65,0.3729760449037503],[121,296,66,0.3819708866602139],[121,296,67,0.39005793662935917],[121,296,68,0.39694610031021726],[121,296,69,0.40237391856945137],[121,296,70,0.4061152005876633],[121,296,71,0.407984542232931],[121,296,72,0.40784629792533644],[121,296,73,0.40594115702205114],[121,296,74,0.4030535922148176],[121,296,75,0.3998895065962781],[121,296,76,0.3970215199421952],[121,296,77,0.3949027229153206],[121,296,78,0.3938790926944521],[121,296,79,0.39420057002873526],[121,297,64,0.3750539713814077],[121,297,65,0.38403272225182844],[121,297,66,0.3925286723209689],[121,297,67,0.4002235183400861],[121,297,68,0.40682146092407495],[121,297,69,0.4120549919367117],[121,297,70,0.41569058685113724],[121,297,71,0.4175343020855399],[121,297,72,0.41744077245317285],[121,297,73,0.4156333920832318],[121,297,74,0.41286886450052074],[121,297,75,0.4098278180473953],[121,297,76,0.4070612049445217],[121,297,77,0.40500377084959877],[121,297,78,0.4039862267709217],[121,297,79,0.40424612333584364],[121,298,64,0.38743745636372007],[121,298,65,0.39595587744220634],[121,298,66,0.4040901221970876],[121,298,67,0.4115188494468784],[121,298,68,0.4179421654939568],[121,298,69,0.4230874831612351],[121,298,70,0.4267153053256245],[121,298,71,0.42862493294825044],[121,298,72,0.4286634904701894],[121,298,73,0.42703697297120574],[121,298,74,0.42446978449499895],[121,298,75,0.4216130037324392],[121,298,76,0.4189923961595208],[121,298,77,0.41702155080260317],[121,298,78,0.41601376229836573],[121,298,79,0.41619265824852403],[121,299,64,0.40029319954857934],[121,299,65,0.4084990506623075],[121,299,66,0.41640675691740386],[121,299,67,0.423692300869871],[121,299,68,0.4300524007725318],[121,299,69,0.4352104726256051],[121,299,70,0.4389225360789586],[121,299,71,0.4409830641860039],[121,299,72,0.44123403896028734],[121,299,73,0.4398641875706351],[121,299,74,0.4375614211701522],[121,299,75,0.4349433062277051],[121,299,76,0.43250717795461036],[121,299,77,0.43064289760655117],[121,299,78,0.4296443997771587],[121,299,79,0.42972002968330614],[121,300,64,0.41337382513148624],[121,300,65,0.42141201570665265],[121,300,66,0.42922442186581933],[121,300,67,0.43648478888136105],[121,300,68,0.44288724367070287],[121,300,69,0.44815239040551336],[121,300,70,0.4520333690223606],[121,300,71,0.4543218766347878],[121,300,72,0.45485725527460097],[121,300,73,0.4538113330443669],[121,300,74,0.45183172611488376],[121,300,75,0.44949888976873614],[121,300,76,0.4472788033731334],[121,300,77,0.4455353035796784],[121,300,78,0.44454125369466446],[121,300,79,0.4444885492199505],[121,301,64,0.42643426233670895],[121,301,65,0.434444823430468],[121,301,66,0.44228735659772633],[121,301,67,0.4496338836064956],[121,301,68,0.45617682066057863],[121,301,69,0.46163523690762487],[121,301,70,0.4657610944582017],[121,301,71,0.4683454699158395],[121,301,72,0.4692276760845024],[121,301,73,0.4685632475637276],[121,301,74,0.46695614289262377],[121,301,75,0.4649465163550499],[121,301,76,0.4629664212277528],[121,301,77,0.4613516767729243],[121,301,78,0.46035261876887124],[121,301,79,0.46014373357884475],[121,302,64,0.43923521220365724],[121,302,65,0.44735132112622056],[121,302,66,0.45534178019325533],[121,302,67,0.462877472552807],[121,302,68,0.46965006033909157],[121,302,69,0.4753784338419801],[121,302,70,0.47981516022655446],[121,302,71,0.48275293180269474],[121,302,72,0.4840337231854786],[121,302,73,0.48379761308227637],[121,302,74,0.48260202081706444],[121,302,75,0.48094405859675754],[121,302,76,0.47921967098686097],[121,302,77,0.47773499658119156],[121,302,78,0.4767166614588152],[121,302,79,0.47632100442823566],[121,303,64,0.4515460494344864],[121,303,65,0.4598921478232726],[121,303,66,0.46813899254750124],[121,303,67,0.47595697916871615],[121,303,68,0.48303803915231625],[121,303,69,0.48910230552892126],[121,303,70,0.4939047954504559],[121,303,71,0.49724210964092186],[121,303,72,0.4989616261516298],[121,303,73,0.4991890291526874],[121,303,74,0.49843283314568887],[121,303,75,0.49714484930256514],[121,303,76,0.49568314545339864],[121,303,77,0.4943228667184836],[121,303,78,0.493266036741012],[121,303,79,0.4926503395204307],[121,304,64,0.4631471593020756],[121,304,65,0.47183720550985137],[121,304,66,0.4804379915969862],[121,304,67,0.48862013643032587],[121,304,68,0.49607692027990347],[121,304,69,0.502531190540055],[121,304,70,0.5077423008794859],[121,304,71,0.5115130838202568],[121,304,72,0.5136990818406262],[121,304,73,0.5144128577867039],[121,304,74,0.5141121996911568],[121,304,75,0.5132018678093424],[121,304,76,0.5120007212363981],[121,304,77,0.5107519655573585],[121,304,78,0.5096324301524582],[121,304,79,0.5087608751576522],[121,305,64,0.47383170961962356],[121,305,65,0.4829676062785125],[121,305,66,0.49200760648345754],[121,305,67,0.5006233154575178],[121,305,68,0.5085104856805335],[121,305,69,0.5153961836740404],[121,305,70,0.5210460058323413],[121,305,71,0.5252713432996908],[121,305,72,0.527938650749536],[121,305,73,0.5291488393584556],[121,305,74,0.5293077138506942],[121,305,75,0.5287717630532707],[121,305,76,0.5278197570151109],[121,305,77,0.52666239383242],[121,305,78,0.525451025099775],[121,305,79,0.5242854599869811],[121,306,64,0.48340685777074055],[121,306,65,0.4930770953940408],[121,306,66,0.5026281466540469],[121,306,67,0.5117334091584658],[121,306,68,0.5200922612976078],[121,306,69,0.5274375082665331],[121,306,70,0.5335428917378424],[121,306,71,0.5382306631850693],[121,306,72,0.5413808902212147],[121,306,73,0.5430844795509451],[121,306,74,0.543694574053438],[121,306,75,0.5435187133826425],[121,306,76,0.5427951595959368],[121,306,77,0.5417019197081895],[121,306,78,0.5403648954349756],[121,306,79,0.5388651601249864],[121,307,64,0.4916943928007683],[121,307,65,0.5019729502844574],[121,307,66,0.5120925668983867],[121,307,67,0.5217292709030834],[121,307,68,0.530587235425607],[121,307,69,0.5384065188346147],[121,307,70,0.5449708822746089],[121,307,71,0.5501156843593373],[121,307,72,0.5537372245012775],[121,307,73,0.5559182073456255],[121,307,74,0.5569590196255301],[121,307,75,0.5571181231120115],[121,307,76,0.5565933177617332],[121,307,77,0.555530121210838],[121,307,78,0.5540293232972292],[121,307,79,0.5521537156113357],[121,308,64,0.4985308125686926],[121,308,65,0.5094763554545652],[121,308,66,0.5202071483221834],[121,308,67,0.5304027082249805],[121,308,68,0.5397731702367716],[121,308,69,0.5480673340554559],[121,308,70,0.5550808001092427],[121,308,71,0.5606641951653609],[121,308,72,0.5647325516456918],[121,308,73,0.567362304055203],[121,308,74,0.5688015710732071],[121,308,75,0.5692601558180256],[121,308,76,0.5688959039139445],[121,308,77,0.5678224260243053],[121,308,78,0.5661160422212388],[121,308,79,0.5638219481920645],[121,309,64,0.5037668359607832],[121,309,65,0.5154222533230916],[121,309,66,0.5267916952582283],[121,309,67,0.5375590315528253],[121,309,68,0.5474415064689078],[121,309,69,0.5561981000799178],[121,309,70,0.5636379902336138],[121,309,71,0.5696291151418139],[121,309,72,0.5741075872793582],[121,309,73,0.5771456033999169],[121,309,74,0.578940074784019],[121,309,75,0.5796531043769709],[121,309,76,0.579403543507456],[121,309,77,0.5782740486506048],[121,309,78,0.5763174055119255],[121,309,79,0.5735621204321121],[121,310,64,0.5072663501640373],[121,310,65,0.5196586709815851],[121,310,66,0.531679248113101],[121,310,67,0.5430171579694654],[121,310,68,0.553397861272788],[121,310,69,0.5625918841796715],[121,310,70,0.5704236098999668],[121,310,71,0.5767801808109809],[121,310,72,0.5816209452046727],[121,310,73,0.5850159626264293],[121,310,74,0.5871125521454533],[121,310,75,0.5880265977434381],[121,310,76,0.5878393522777383],[121,310,77,0.5866038249340207],[121,310,78,0.5843504798852601],[121,310,79,0.5810922461570963],[121,311,64,0.5089047930017985],[121,311,65,0.5220455228773601],[121,311,66,0.5347153121517483],[121,311,67,0.5466092700008849],[121,311,68,0.5574621192210965],[121,311,69,0.5670571987296702],[121,311,70,0.5752355851555296],[121,311,71,0.5819053335200143],[121,311,72,0.5870509548614593],[121,311,73,0.5907425046705679],[121,311,74,0.5930798530820492],[121,311,75,0.5941346444710491],[121,311,76,0.5939523412610518],[121,311,77,0.5925579439498083],[121,311,78,0.5899610643757115],[121,311,79,0.58616035222464],[121,312,64,0.5085669703293858],[121,312,65,0.5224528894183946],[121,312,66,0.5357566022179517],[121,312,67,0.5481800294331107],[121,312,68,0.5594681164771528],[121,312,69,0.5694181555243105],[121,312,70,0.5778892339751035],[121,312,71,0.5848118093342513],[121,312,72,0.590197215637007],[121,312,73,0.5941176313627876],[121,312,74,0.5966281140100089],[121,312,75,0.5977585129743795],[121,312,76,0.5975206896069958],[121,312,77,0.5959135772568237],[121,312,78,0.5929276345098506],[121,312,79,0.5885486916249266],[121,313,64,0.50614430849136],[121,313,65,0.520758771501744],[121,313,66,0.5346693033921508],[121,313,67,0.5475853461584494],[121,313,68,0.5592629181246892],[121,313,69,0.5695142504284807],[121,313,70,0.5782175559927136],[121,313,71,0.5853269309835716],[121,313,72,0.5908818880270987],[121,313,73,0.5949588076771278],[121,313,74,0.5975710202099775],[121,313,75,0.5987094485326544],[121,313,76,0.5983548851838667],[121,313,77,0.5964824055144434],[121,313,78,0.5930652117464039],[121,313,79,0.5880779079106798],[121,314,64,0.5015315418390518],[121,314,65,0.516846320964159],[121,314,66,0.5313268475853958],[121,314,67,0.5446907020499036],[121,314,68,0.5567056886576258],[121,314,69,0.5671997783625002],[121,314,70,0.5760711888314277],[121,314,71,0.5832986018609847],[121,314,72,0.5889507216472963],[121,314,73,0.5931101170230273],[121,314,74,0.595751872617436],[121,314,75,0.5968312270347336],[121,314,76,0.5963007329764303],[121,314,77,0.5941140424634592],[121,314,78,0.59022915818248],[121,314,79,0.5846111509563673],[121,315,64,0.49462283530997825],[121,315,65,0.5106005469564692],[121,315,66,0.5256072060709134],[121,315,67,0.5393690298651767],[121,315,68,0.5516661556311627],[121,315,69,0.5623428786222043],[121,315,70,0.5713180310324932],[121,315,71,0.5785955020745173],[121,315,72,0.5842738200954644],[121,315,73,0.5884435875808834],[121,315,74,0.591045459031509],[121,315,75,0.5920025454661115],[121,315,76,0.591242231276747],[121,315,77,0.5886993562714997],[121,315,78,0.584318896526476],[121,315,79,0.5780581440470504],[121,316,64,0.48530734206733506],[121,316,65,0.5019044982399752],[121,316,66,0.5173896979515901],[121,316,67,0.531498147178642],[121,316,68,0.5440226664726434],[121,316,69,0.5548242105327031],[121,316,70,0.5638425315824205],[121,316,71,0.5711069865511025],[121,316,72,0.5767461426643388],[121,316,73,0.580860289680249],[121,316,74,0.5833597297411706],[121,316,75,0.5841392491370024],[121,316,76,0.5831043156672057],[121,316,77,0.5801736882422321],[121,316,78,0.5752815553369818],[121,316,79,0.5683792022962955],[121,317,64,0.4734641962007057],[121,317,65,0.4906349214059642],[121,317,66,0.5065513145644605],[121,317,67,0.5209577453423183],[121,317,68,0.5336598384531861],[121,317,69,0.5445352594367577],[121,317,70,0.5535446460388932],[121,317,71,0.5607426851933117],[121,317,72,0.5662877429048967],[121,317,73,0.5702912042213754],[121,317,74,0.5726372775694919],[121,317,75,0.5731963956520891],[121,317,76,0.57185547079629],[121,317,77,0.5685199688887961],[121,317,78,0.5631155395280794],[121,317,79,0.5555892023934677],[121,318,64,0.4589569404883225],[121,318,65,0.4766573950186749],[121,318,66,0.49296255982250897],[121,318,67,0.50762593347616],[121,318,68,0.5204658018203852],[121,318,69,0.5313762730180739],[121,318,70,0.5403384592558061],[121,318,71,0.5474318050892136],[121,318,72,0.5528437440408368],[121,318,73,0.5566978621403926],[121,318,74,0.5588566223362322],[121,318,75,0.5591701556222418],[121,318,76,0.5575102099473764],[121,318,77,0.5537717313717807],[121,318,78,0.5478740261413505],[121,318,79,0.5397615036807378],[121,319,64,0.44162738921917755],[121,319,65,0.45982093968003823],[121,319,66,0.47648280649216546],[121,319,67,0.4913753374860813],[121,319,68,0.5043290360905498],[121,319,69,0.5152538279580376],[121,319,70,0.5241504747060045],[121,319,71,0.5311221347739957],[121,319,72,0.5363840512328397],[121,319,73,0.540072754916872],[121,319,74,0.542033299737556],[121,319,75,0.5420995501170449],[121,319,76,0.5401314223994671],[121,319,77,0.5360160223006906],[121,319,78,0.5296683853835942],[121,319,79,0.5210318205588459],[122,-64,64,64.0],[122,-64,65,64.0],[122,-64,66,64.0],[122,-64,67,64.0],[122,-64,68,64.0],[122,-64,69,64.0],[122,-64,70,64.0],[122,-64,71,64.0],[122,-64,72,64.0],[122,-64,73,64.0],[122,-64,74,64.0],[122,-64,75,64.0],[122,-64,76,64.0],[122,-64,77,64.0],[122,-64,78,64.0],[122,-64,79,64.0],[122,-63,64,64.0],[122,-63,65,64.0],[122,-63,66,64.0],[122,-63,67,64.0],[122,-63,68,64.0],[122,-63,69,64.0],[122,-63,70,64.0],[122,-63,71,64.0],[122,-63,72,64.0],[122,-63,73,64.0],[122,-63,74,64.0],[122,-63,75,64.0],[122,-63,76,64.0],[122,-63,77,64.0],[122,-63,78,64.0],[122,-63,79,64.0],[122,-62,64,64.0],[122,-62,65,64.0],[122,-62,66,64.0],[122,-62,67,64.0],[122,-62,68,64.0],[122,-62,69,64.0],[122,-62,70,64.0],[122,-62,71,64.0],[122,-62,72,64.0],[122,-62,73,64.0],[122,-62,74,64.0],[122,-62,75,64.0],[122,-62,76,64.0],[122,-62,77,64.0],[122,-62,78,64.0],[122,-62,79,64.0],[122,-61,64,64.0],[122,-61,65,64.0],[122,-61,66,64.0],[122,-61,67,64.0],[122,-61,68,64.0],[122,-61,69,64.0],[122,-61,70,64.0],[122,-61,71,64.0],[122,-61,72,64.0],[122,-61,73,64.0],[122,-61,74,64.0],[122,-61,75,64.0],[122,-61,76,64.0],[122,-61,77,64.0],[122,-61,78,64.0],[122,-61,79,64.0],[122,-60,64,64.0],[122,-60,65,64.0],[122,-60,66,64.0],[122,-60,67,64.0],[122,-60,68,64.0],[122,-60,69,64.0],[122,-60,70,64.0],[122,-60,71,64.0],[122,-60,72,64.0],[122,-60,73,64.0],[122,-60,74,64.0],[122,-60,75,64.0],[122,-60,76,64.0],[122,-60,77,64.0],[122,-60,78,64.0],[122,-60,79,64.0],[122,-59,64,64.0],[122,-59,65,64.0],[122,-59,66,64.0],[122,-59,67,64.0],[122,-59,68,64.0],[122,-59,69,64.0],[122,-59,70,64.0],[122,-59,71,64.0],[122,-59,72,64.0],[122,-59,73,64.0],[122,-59,74,64.0],[122,-59,75,64.0],[122,-59,76,64.0],[122,-59,77,64.0],[122,-59,78,64.0],[122,-59,79,64.0],[122,-58,64,64.0],[122,-58,65,64.0],[122,-58,66,64.0],[122,-58,67,64.0],[122,-58,68,64.0],[122,-58,69,64.0],[122,-58,70,64.0],[122,-58,71,64.0],[122,-58,72,64.0],[122,-58,73,64.0],[122,-58,74,64.0],[122,-58,75,64.0],[122,-58,76,64.0],[122,-58,77,64.0],[122,-58,78,64.0],[122,-58,79,64.0],[122,-57,64,64.0],[122,-57,65,64.0],[122,-57,66,64.0],[122,-57,67,64.0],[122,-57,68,64.0],[122,-57,69,64.0],[122,-57,70,64.0],[122,-57,71,64.0],[122,-57,72,64.0],[122,-57,73,64.0],[122,-57,74,64.0],[122,-57,75,64.0],[122,-57,76,64.0],[122,-57,77,64.0],[122,-57,78,64.0],[122,-57,79,64.0],[122,-56,64,64.0],[122,-56,65,64.0],[122,-56,66,64.0],[122,-56,67,64.0],[122,-56,68,64.0],[122,-56,69,64.0],[122,-56,70,64.0],[122,-56,71,64.0],[122,-56,72,64.0],[122,-56,73,64.0],[122,-56,74,64.0],[122,-56,75,64.0],[122,-56,76,64.0],[122,-56,77,64.0],[122,-56,78,64.0],[122,-56,79,64.0],[122,-55,64,64.0],[122,-55,65,64.0],[122,-55,66,64.0],[122,-55,67,64.0],[122,-55,68,64.0],[122,-55,69,64.0],[122,-55,70,64.0],[122,-55,71,64.0],[122,-55,72,64.0],[122,-55,73,64.0],[122,-55,74,64.0],[122,-55,75,64.0],[122,-55,76,64.0],[122,-55,77,64.0],[122,-55,78,64.0],[122,-55,79,64.0],[122,-54,64,64.0],[122,-54,65,64.0],[122,-54,66,64.0],[122,-54,67,64.0],[122,-54,68,64.0],[122,-54,69,64.0],[122,-54,70,64.0],[122,-54,71,64.0],[122,-54,72,64.0],[122,-54,73,64.0],[122,-54,74,64.0],[122,-54,75,64.0],[122,-54,76,64.0],[122,-54,77,64.0],[122,-54,78,64.0],[122,-54,79,64.0],[122,-53,64,64.0],[122,-53,65,64.0],[122,-53,66,64.0],[122,-53,67,64.0],[122,-53,68,64.0],[122,-53,69,64.0],[122,-53,70,64.0],[122,-53,71,64.0],[122,-53,72,64.0],[122,-53,73,64.0],[122,-53,74,64.0],[122,-53,75,64.0],[122,-53,76,64.0],[122,-53,77,64.0],[122,-53,78,64.0],[122,-53,79,64.0],[122,-52,64,64.0],[122,-52,65,64.0],[122,-52,66,64.0],[122,-52,67,64.0],[122,-52,68,64.0],[122,-52,69,64.0],[122,-52,70,64.0],[122,-52,71,64.0],[122,-52,72,64.0],[122,-52,73,64.0],[122,-52,74,64.0],[122,-52,75,64.0],[122,-52,76,64.0],[122,-52,77,64.0],[122,-52,78,64.0],[122,-52,79,64.0],[122,-51,64,64.0],[122,-51,65,64.0],[122,-51,66,64.0],[122,-51,67,64.0],[122,-51,68,64.0],[122,-51,69,64.0],[122,-51,70,64.0],[122,-51,71,64.0],[122,-51,72,64.0],[122,-51,73,64.0],[122,-51,74,64.0],[122,-51,75,64.0],[122,-51,76,64.0],[122,-51,77,64.0],[122,-51,78,64.0],[122,-51,79,64.0],[122,-50,64,64.0],[122,-50,65,64.0],[122,-50,66,64.0],[122,-50,67,64.0],[122,-50,68,64.0],[122,-50,69,64.0],[122,-50,70,64.0],[122,-50,71,64.0],[122,-50,72,64.0],[122,-50,73,64.0],[122,-50,74,64.0],[122,-50,75,64.0],[122,-50,76,64.0],[122,-50,77,64.0],[122,-50,78,64.0],[122,-50,79,64.0],[122,-49,64,64.0],[122,-49,65,64.0],[122,-49,66,64.0],[122,-49,67,64.0],[122,-49,68,64.0],[122,-49,69,64.0],[122,-49,70,64.0],[122,-49,71,64.0],[122,-49,72,64.0],[122,-49,73,64.0],[122,-49,74,64.0],[122,-49,75,64.0],[122,-49,76,64.0],[122,-49,77,64.0],[122,-49,78,64.0],[122,-49,79,64.0],[122,-48,64,64.0],[122,-48,65,64.0],[122,-48,66,64.0],[122,-48,67,64.0],[122,-48,68,64.0],[122,-48,69,64.0],[122,-48,70,64.0],[122,-48,71,64.0],[122,-48,72,64.0],[122,-48,73,64.0],[122,-48,74,64.0],[122,-48,75,64.0],[122,-48,76,64.0],[122,-48,77,64.0],[122,-48,78,64.0],[122,-48,79,64.0],[122,-47,64,64.0],[122,-47,65,64.0],[122,-47,66,64.0],[122,-47,67,64.0],[122,-47,68,64.0],[122,-47,69,64.0],[122,-47,70,64.0],[122,-47,71,64.0],[122,-47,72,64.0],[122,-47,73,64.0],[122,-47,74,64.0],[122,-47,75,64.0],[122,-47,76,64.0],[122,-47,77,64.0],[122,-47,78,64.0],[122,-47,79,64.0],[122,-46,64,64.0],[122,-46,65,64.0],[122,-46,66,64.0],[122,-46,67,64.0],[122,-46,68,64.0],[122,-46,69,64.0],[122,-46,70,64.0],[122,-46,71,64.0],[122,-46,72,64.0],[122,-46,73,64.0],[122,-46,74,64.0],[122,-46,75,64.0],[122,-46,76,64.0],[122,-46,77,64.0],[122,-46,78,64.0],[122,-46,79,64.0],[122,-45,64,64.0],[122,-45,65,64.0],[122,-45,66,64.0],[122,-45,67,64.0],[122,-45,68,64.0],[122,-45,69,64.0],[122,-45,70,64.0],[122,-45,71,64.0],[122,-45,72,64.0],[122,-45,73,64.0],[122,-45,74,64.0],[122,-45,75,64.0],[122,-45,76,64.0],[122,-45,77,64.0],[122,-45,78,64.0],[122,-45,79,64.0],[122,-44,64,64.0],[122,-44,65,64.0],[122,-44,66,64.0],[122,-44,67,64.0],[122,-44,68,64.0],[122,-44,69,64.0],[122,-44,70,64.0],[122,-44,71,64.0],[122,-44,72,64.0],[122,-44,73,64.0],[122,-44,74,64.0],[122,-44,75,64.0],[122,-44,76,64.0],[122,-44,77,64.0],[122,-44,78,64.0],[122,-44,79,64.0],[122,-43,64,64.0],[122,-43,65,64.0],[122,-43,66,64.0],[122,-43,67,64.0],[122,-43,68,64.0],[122,-43,69,64.0],[122,-43,70,64.0],[122,-43,71,64.0],[122,-43,72,64.0],[122,-43,73,64.0],[122,-43,74,64.0],[122,-43,75,64.0],[122,-43,76,64.0],[122,-43,77,64.0],[122,-43,78,64.0],[122,-43,79,64.0],[122,-42,64,64.0],[122,-42,65,64.0],[122,-42,66,64.0],[122,-42,67,64.0],[122,-42,68,64.0],[122,-42,69,64.0],[122,-42,70,64.0],[122,-42,71,64.0],[122,-42,72,64.0],[122,-42,73,64.0],[122,-42,74,64.0],[122,-42,75,64.0],[122,-42,76,64.0],[122,-42,77,64.0],[122,-42,78,64.0],[122,-42,79,64.0],[122,-41,64,64.0],[122,-41,65,64.0],[122,-41,66,64.0],[122,-41,67,64.0],[122,-41,68,64.0],[122,-41,69,64.0],[122,-41,70,64.0],[122,-41,71,64.0],[122,-41,72,64.0],[122,-41,73,64.0],[122,-41,74,64.0],[122,-41,75,64.0],[122,-41,76,64.0],[122,-41,77,64.0],[122,-41,78,64.0],[122,-41,79,64.0],[122,-40,64,64.0],[122,-40,65,64.0],[122,-40,66,64.0],[122,-40,67,64.0],[122,-40,68,64.0],[122,-40,69,64.0],[122,-40,70,64.0],[122,-40,71,64.0],[122,-40,72,64.0],[122,-40,73,64.0],[122,-40,74,64.0],[122,-40,75,64.0],[122,-40,76,64.0],[122,-40,77,64.0],[122,-40,78,64.0],[122,-40,79,64.0],[122,-39,64,64.0],[122,-39,65,64.0],[122,-39,66,64.0],[122,-39,67,64.0],[122,-39,68,64.0],[122,-39,69,64.0],[122,-39,70,64.0],[122,-39,71,64.0],[122,-39,72,64.0],[122,-39,73,64.0],[122,-39,74,64.0],[122,-39,75,64.0],[122,-39,76,64.0],[122,-39,77,64.0],[122,-39,78,64.0],[122,-39,79,64.0],[122,-38,64,64.0],[122,-38,65,64.0],[122,-38,66,64.0],[122,-38,67,64.0],[122,-38,68,64.0],[122,-38,69,64.0],[122,-38,70,64.0],[122,-38,71,64.0],[122,-38,72,64.0],[122,-38,73,64.0],[122,-38,74,64.0],[122,-38,75,64.0],[122,-38,76,64.0],[122,-38,77,64.0],[122,-38,78,64.0],[122,-38,79,64.0],[122,-37,64,64.0],[122,-37,65,64.0],[122,-37,66,64.0],[122,-37,67,64.0],[122,-37,68,64.0],[122,-37,69,64.0],[122,-37,70,64.0],[122,-37,71,64.0],[122,-37,72,64.0],[122,-37,73,64.0],[122,-37,74,64.0],[122,-37,75,64.0],[122,-37,76,64.0],[122,-37,77,64.0],[122,-37,78,64.0],[122,-37,79,64.0],[122,-36,64,64.0],[122,-36,65,64.0],[122,-36,66,64.0],[122,-36,67,64.0],[122,-36,68,64.0],[122,-36,69,64.0],[122,-36,70,64.0],[122,-36,71,64.0],[122,-36,72,64.0],[122,-36,73,64.0],[122,-36,74,64.0],[122,-36,75,64.0],[122,-36,76,64.0],[122,-36,77,64.0],[122,-36,78,64.0],[122,-36,79,64.0],[122,-35,64,64.0],[122,-35,65,64.0],[122,-35,66,64.0],[122,-35,67,64.0],[122,-35,68,64.0],[122,-35,69,64.0],[122,-35,70,64.0],[122,-35,71,64.0],[122,-35,72,64.0],[122,-35,73,64.0],[122,-35,74,64.0],[122,-35,75,64.0],[122,-35,76,64.0],[122,-35,77,64.0],[122,-35,78,64.0],[122,-35,79,64.0],[122,-34,64,64.0],[122,-34,65,64.0],[122,-34,66,64.0],[122,-34,67,64.0],[122,-34,68,64.0],[122,-34,69,64.0],[122,-34,70,64.0],[122,-34,71,64.0],[122,-34,72,64.0],[122,-34,73,64.0],[122,-34,74,64.0],[122,-34,75,64.0],[122,-34,76,64.0],[122,-34,77,64.0],[122,-34,78,64.0],[122,-34,79,64.0],[122,-33,64,64.0],[122,-33,65,64.0],[122,-33,66,64.0],[122,-33,67,64.0],[122,-33,68,64.0],[122,-33,69,64.0],[122,-33,70,64.0],[122,-33,71,64.0],[122,-33,72,64.0],[122,-33,73,64.0],[122,-33,74,64.0],[122,-33,75,64.0],[122,-33,76,64.0],[122,-33,77,64.0],[122,-33,78,64.0],[122,-33,79,64.0],[122,-32,64,64.0],[122,-32,65,64.0],[122,-32,66,64.0],[122,-32,67,64.0],[122,-32,68,64.0],[122,-32,69,64.0],[122,-32,70,64.0],[122,-32,71,64.0],[122,-32,72,64.0],[122,-32,73,64.0],[122,-32,74,64.0],[122,-32,75,64.0],[122,-32,76,64.0],[122,-32,77,64.0],[122,-32,78,64.0],[122,-32,79,64.0],[122,-31,64,64.0],[122,-31,65,64.0],[122,-31,66,64.0],[122,-31,67,64.0],[122,-31,68,64.0],[122,-31,69,64.0],[122,-31,70,64.0],[122,-31,71,64.0],[122,-31,72,64.0],[122,-31,73,64.0],[122,-31,74,64.0],[122,-31,75,64.0],[122,-31,76,64.0],[122,-31,77,64.0],[122,-31,78,64.0],[122,-31,79,64.0],[122,-30,64,64.0],[122,-30,65,64.0],[122,-30,66,64.0],[122,-30,67,64.0],[122,-30,68,64.0],[122,-30,69,64.0],[122,-30,70,64.0],[122,-30,71,64.0],[122,-30,72,64.0],[122,-30,73,64.0],[122,-30,74,64.0],[122,-30,75,64.0],[122,-30,76,64.0],[122,-30,77,64.0],[122,-30,78,64.0],[122,-30,79,64.0],[122,-29,64,64.0],[122,-29,65,64.0],[122,-29,66,64.0],[122,-29,67,64.0],[122,-29,68,64.0],[122,-29,69,64.0],[122,-29,70,64.0],[122,-29,71,64.0],[122,-29,72,64.0],[122,-29,73,64.0],[122,-29,74,64.0],[122,-29,75,64.0],[122,-29,76,64.0],[122,-29,77,64.0],[122,-29,78,64.0],[122,-29,79,64.0],[122,-28,64,64.0],[122,-28,65,64.0],[122,-28,66,64.0],[122,-28,67,64.0],[122,-28,68,64.0],[122,-28,69,64.0],[122,-28,70,64.0],[122,-28,71,64.0],[122,-28,72,64.0],[122,-28,73,64.0],[122,-28,74,64.0],[122,-28,75,64.0],[122,-28,76,64.0],[122,-28,77,64.0],[122,-28,78,64.0],[122,-28,79,64.0],[122,-27,64,64.0],[122,-27,65,64.0],[122,-27,66,64.0],[122,-27,67,64.0],[122,-27,68,64.0],[122,-27,69,64.0],[122,-27,70,64.0],[122,-27,71,64.0],[122,-27,72,64.0],[122,-27,73,64.0],[122,-27,74,64.0],[122,-27,75,64.0],[122,-27,76,64.0],[122,-27,77,64.0],[122,-27,78,64.0],[122,-27,79,64.0],[122,-26,64,64.0],[122,-26,65,64.0],[122,-26,66,64.0],[122,-26,67,64.0],[122,-26,68,64.0],[122,-26,69,64.0],[122,-26,70,64.0],[122,-26,71,64.0],[122,-26,72,64.0],[122,-26,73,64.0],[122,-26,74,64.0],[122,-26,75,64.0],[122,-26,76,64.0],[122,-26,77,64.0],[122,-26,78,64.0],[122,-26,79,64.0],[122,-25,64,64.0],[122,-25,65,64.0],[122,-25,66,64.0],[122,-25,67,64.0],[122,-25,68,64.0],[122,-25,69,64.0],[122,-25,70,64.0],[122,-25,71,64.0],[122,-25,72,64.0],[122,-25,73,64.0],[122,-25,74,64.0],[122,-25,75,64.0],[122,-25,76,64.0],[122,-25,77,64.0],[122,-25,78,64.0],[122,-25,79,64.0],[122,-24,64,64.0],[122,-24,65,64.0],[122,-24,66,64.0],[122,-24,67,64.0],[122,-24,68,64.0],[122,-24,69,64.0],[122,-24,70,64.0],[122,-24,71,64.0],[122,-24,72,64.0],[122,-24,73,64.0],[122,-24,74,64.0],[122,-24,75,64.0],[122,-24,76,64.0],[122,-24,77,64.0],[122,-24,78,64.0],[122,-24,79,64.0],[122,-23,64,64.0],[122,-23,65,64.0],[122,-23,66,64.0],[122,-23,67,64.0],[122,-23,68,64.0],[122,-23,69,64.0],[122,-23,70,64.0],[122,-23,71,64.0],[122,-23,72,64.0],[122,-23,73,64.0],[122,-23,74,64.0],[122,-23,75,64.0],[122,-23,76,64.0],[122,-23,77,64.0],[122,-23,78,64.0],[122,-23,79,64.0],[122,-22,64,64.0],[122,-22,65,64.0],[122,-22,66,64.0],[122,-22,67,64.0],[122,-22,68,64.0],[122,-22,69,64.0],[122,-22,70,64.0],[122,-22,71,64.0],[122,-22,72,64.0],[122,-22,73,64.0],[122,-22,74,64.0],[122,-22,75,64.0],[122,-22,76,64.0],[122,-22,77,64.0],[122,-22,78,64.0],[122,-22,79,64.0],[122,-21,64,64.0],[122,-21,65,64.0],[122,-21,66,64.0],[122,-21,67,64.0],[122,-21,68,64.0],[122,-21,69,64.0],[122,-21,70,64.0],[122,-21,71,64.0],[122,-21,72,64.0],[122,-21,73,64.0],[122,-21,74,64.0],[122,-21,75,64.0],[122,-21,76,64.0],[122,-21,77,64.0],[122,-21,78,64.0],[122,-21,79,64.0],[122,-20,64,64.0],[122,-20,65,64.0],[122,-20,66,64.0],[122,-20,67,64.0],[122,-20,68,64.0],[122,-20,69,64.0],[122,-20,70,64.0],[122,-20,71,64.0],[122,-20,72,64.0],[122,-20,73,64.0],[122,-20,74,64.0],[122,-20,75,64.0],[122,-20,76,64.0],[122,-20,77,64.0],[122,-20,78,64.0],[122,-20,79,64.0],[122,-19,64,64.0],[122,-19,65,64.0],[122,-19,66,64.0],[122,-19,67,64.0],[122,-19,68,64.0],[122,-19,69,64.0],[122,-19,70,64.0],[122,-19,71,64.0],[122,-19,72,64.0],[122,-19,73,64.0],[122,-19,74,64.0],[122,-19,75,64.0],[122,-19,76,64.0],[122,-19,77,64.0],[122,-19,78,64.0],[122,-19,79,64.0],[122,-18,64,64.0],[122,-18,65,64.0],[122,-18,66,64.0],[122,-18,67,64.0],[122,-18,68,64.0],[122,-18,69,64.0],[122,-18,70,64.0],[122,-18,71,64.0],[122,-18,72,64.0],[122,-18,73,64.0],[122,-18,74,64.0],[122,-18,75,64.0],[122,-18,76,64.0],[122,-18,77,64.0],[122,-18,78,64.0],[122,-18,79,64.0],[122,-17,64,64.0],[122,-17,65,64.0],[122,-17,66,64.0],[122,-17,67,64.0],[122,-17,68,64.0],[122,-17,69,64.0],[122,-17,70,64.0],[122,-17,71,64.0],[122,-17,72,64.0],[122,-17,73,64.0],[122,-17,74,64.0],[122,-17,75,64.0],[122,-17,76,64.0],[122,-17,77,64.0],[122,-17,78,64.0],[122,-17,79,64.0],[122,-16,64,64.0],[122,-16,65,64.0],[122,-16,66,64.0],[122,-16,67,64.0],[122,-16,68,64.0],[122,-16,69,64.0],[122,-16,70,64.0],[122,-16,71,64.0],[122,-16,72,64.0],[122,-16,73,64.0],[122,-16,74,64.0],[122,-16,75,64.0],[122,-16,76,64.0],[122,-16,77,64.0],[122,-16,78,64.0],[122,-16,79,64.0],[122,-15,64,64.0],[122,-15,65,64.0],[122,-15,66,64.0],[122,-15,67,64.0],[122,-15,68,64.0],[122,-15,69,64.0],[122,-15,70,64.0],[122,-15,71,64.0],[122,-15,72,64.0],[122,-15,73,64.0],[122,-15,74,64.0],[122,-15,75,64.0],[122,-15,76,64.0],[122,-15,77,64.0],[122,-15,78,64.0],[122,-15,79,64.0],[122,-14,64,64.0],[122,-14,65,64.0],[122,-14,66,64.0],[122,-14,67,64.0],[122,-14,68,64.0],[122,-14,69,64.0],[122,-14,70,64.0],[122,-14,71,64.0],[122,-14,72,64.0],[122,-14,73,64.0],[122,-14,74,64.0],[122,-14,75,64.0],[122,-14,76,64.0],[122,-14,77,64.0],[122,-14,78,64.0],[122,-14,79,64.0],[122,-13,64,64.0],[122,-13,65,64.0],[122,-13,66,64.0],[122,-13,67,64.0],[122,-13,68,64.0],[122,-13,69,64.0],[122,-13,70,64.0],[122,-13,71,64.0],[122,-13,72,64.0],[122,-13,73,64.0],[122,-13,74,64.0],[122,-13,75,64.0],[122,-13,76,64.0],[122,-13,77,64.0],[122,-13,78,64.0],[122,-13,79,64.0],[122,-12,64,64.0],[122,-12,65,64.0],[122,-12,66,64.0],[122,-12,67,64.0],[122,-12,68,64.0],[122,-12,69,64.0],[122,-12,70,64.0],[122,-12,71,64.0],[122,-12,72,64.0],[122,-12,73,64.0],[122,-12,74,64.0],[122,-12,75,64.0],[122,-12,76,64.0],[122,-12,77,64.0],[122,-12,78,64.0],[122,-12,79,64.0],[122,-11,64,64.0],[122,-11,65,64.0],[122,-11,66,64.0],[122,-11,67,64.0],[122,-11,68,64.0],[122,-11,69,64.0],[122,-11,70,64.0],[122,-11,71,64.0],[122,-11,72,64.0],[122,-11,73,64.0],[122,-11,74,64.0],[122,-11,75,64.0],[122,-11,76,64.0],[122,-11,77,64.0],[122,-11,78,64.0],[122,-11,79,64.0],[122,-10,64,64.0],[122,-10,65,64.0],[122,-10,66,64.0],[122,-10,67,64.0],[122,-10,68,64.0],[122,-10,69,64.0],[122,-10,70,64.0],[122,-10,71,64.0],[122,-10,72,64.0],[122,-10,73,64.0],[122,-10,74,64.0],[122,-10,75,64.0],[122,-10,76,64.0],[122,-10,77,64.0],[122,-10,78,64.0],[122,-10,79,64.0],[122,-9,64,64.0],[122,-9,65,64.0],[122,-9,66,64.0],[122,-9,67,64.0],[122,-9,68,64.0],[122,-9,69,64.0],[122,-9,70,64.0],[122,-9,71,64.0],[122,-9,72,64.0],[122,-9,73,64.0],[122,-9,74,64.0],[122,-9,75,64.0],[122,-9,76,64.0],[122,-9,77,64.0],[122,-9,78,64.0],[122,-9,79,64.0],[122,-8,64,64.0],[122,-8,65,64.0],[122,-8,66,64.0],[122,-8,67,64.0],[122,-8,68,64.0],[122,-8,69,64.0],[122,-8,70,64.0],[122,-8,71,64.0],[122,-8,72,64.0],[122,-8,73,64.0],[122,-8,74,64.0],[122,-8,75,64.0],[122,-8,76,64.0],[122,-8,77,64.0],[122,-8,78,64.0],[122,-8,79,64.0],[122,-7,64,64.0],[122,-7,65,64.0],[122,-7,66,64.0],[122,-7,67,64.0],[122,-7,68,64.0],[122,-7,69,64.0],[122,-7,70,64.0],[122,-7,71,64.0],[122,-7,72,64.0],[122,-7,73,64.0],[122,-7,74,64.0],[122,-7,75,64.0],[122,-7,76,64.0],[122,-7,77,64.0],[122,-7,78,64.0],[122,-7,79,64.0],[122,-6,64,64.0],[122,-6,65,64.0],[122,-6,66,64.0],[122,-6,67,64.0],[122,-6,68,64.0],[122,-6,69,64.0],[122,-6,70,64.0],[122,-6,71,64.0],[122,-6,72,64.0],[122,-6,73,64.0],[122,-6,74,64.0],[122,-6,75,64.0],[122,-6,76,64.0],[122,-6,77,64.0],[122,-6,78,64.0],[122,-6,79,64.0],[122,-5,64,64.0],[122,-5,65,64.0],[122,-5,66,64.0],[122,-5,67,64.0],[122,-5,68,64.0],[122,-5,69,64.0],[122,-5,70,64.0],[122,-5,71,64.0],[122,-5,72,64.0],[122,-5,73,64.0],[122,-5,74,64.0],[122,-5,75,64.0],[122,-5,76,64.0],[122,-5,77,64.0],[122,-5,78,64.0],[122,-5,79,64.0],[122,-4,64,64.0],[122,-4,65,64.0],[122,-4,66,64.0],[122,-4,67,64.0],[122,-4,68,64.0],[122,-4,69,64.0],[122,-4,70,64.0],[122,-4,71,64.0],[122,-4,72,64.0],[122,-4,73,64.0],[122,-4,74,64.0],[122,-4,75,64.0],[122,-4,76,64.0],[122,-4,77,64.0],[122,-4,78,64.0],[122,-4,79,64.0],[122,-3,64,64.0],[122,-3,65,64.0],[122,-3,66,64.0],[122,-3,67,64.0],[122,-3,68,64.0],[122,-3,69,64.0],[122,-3,70,64.0],[122,-3,71,64.0],[122,-3,72,64.0],[122,-3,73,64.0],[122,-3,74,64.0],[122,-3,75,64.0],[122,-3,76,64.0],[122,-3,77,64.0],[122,-3,78,64.0],[122,-3,79,64.0],[122,-2,64,64.0],[122,-2,65,64.0],[122,-2,66,64.0],[122,-2,67,64.0],[122,-2,68,64.0],[122,-2,69,64.0],[122,-2,70,64.0],[122,-2,71,64.0],[122,-2,72,64.0],[122,-2,73,64.0],[122,-2,74,64.0],[122,-2,75,64.0],[122,-2,76,64.0],[122,-2,77,64.0],[122,-2,78,64.0],[122,-2,79,64.0],[122,-1,64,64.0],[122,-1,65,64.0],[122,-1,66,64.0],[122,-1,67,64.0],[122,-1,68,64.0],[122,-1,69,64.0],[122,-1,70,64.0],[122,-1,71,64.0],[122,-1,72,64.0],[122,-1,73,64.0],[122,-1,74,64.0],[122,-1,75,64.0],[122,-1,76,64.0],[122,-1,77,64.0],[122,-1,78,64.0],[122,-1,79,64.0],[122,0,64,64.0],[122,0,65,64.0],[122,0,66,64.0],[122,0,67,64.0],[122,0,68,64.0],[122,0,69,64.0],[122,0,70,64.0],[122,0,71,64.0],[122,0,72,64.0],[122,0,73,64.0],[122,0,74,64.0],[122,0,75,64.0],[122,0,76,64.0],[122,0,77,64.0],[122,0,78,64.0],[122,0,79,64.0],[122,1,64,64.0],[122,1,65,64.0],[122,1,66,64.0],[122,1,67,64.0],[122,1,68,64.0],[122,1,69,64.0],[122,1,70,64.0],[122,1,71,64.0],[122,1,72,64.0],[122,1,73,64.0],[122,1,74,64.0],[122,1,75,64.0],[122,1,76,64.0],[122,1,77,64.0],[122,1,78,64.0],[122,1,79,64.0],[122,2,64,64.0],[122,2,65,64.0],[122,2,66,64.0],[122,2,67,64.0],[122,2,68,64.0],[122,2,69,64.0],[122,2,70,64.0],[122,2,71,64.0],[122,2,72,64.0],[122,2,73,64.0],[122,2,74,64.0],[122,2,75,64.0],[122,2,76,64.0],[122,2,77,64.0],[122,2,78,64.0],[122,2,79,64.0],[122,3,64,64.0],[122,3,65,64.0],[122,3,66,64.0],[122,3,67,64.0],[122,3,68,64.0],[122,3,69,64.0],[122,3,70,64.0],[122,3,71,64.0],[122,3,72,64.0],[122,3,73,64.0],[122,3,74,64.0],[122,3,75,64.0],[122,3,76,64.0],[122,3,77,64.0],[122,3,78,64.0],[122,3,79,64.0],[122,4,64,64.0],[122,4,65,64.0],[122,4,66,64.0],[122,4,67,64.0],[122,4,68,64.0],[122,4,69,64.0],[122,4,70,64.0],[122,4,71,64.0],[122,4,72,64.0],[122,4,73,64.0],[122,4,74,64.0],[122,4,75,64.0],[122,4,76,64.0],[122,4,77,64.0],[122,4,78,64.0],[122,4,79,64.0],[122,5,64,64.0],[122,5,65,64.0],[122,5,66,64.0],[122,5,67,64.0],[122,5,68,64.0],[122,5,69,64.0],[122,5,70,64.0],[122,5,71,64.0],[122,5,72,64.0],[122,5,73,64.0],[122,5,74,64.0],[122,5,75,64.0],[122,5,76,64.0],[122,5,77,64.0],[122,5,78,64.0],[122,5,79,64.0],[122,6,64,64.0],[122,6,65,64.0],[122,6,66,64.0],[122,6,67,64.0],[122,6,68,64.0],[122,6,69,64.0],[122,6,70,64.0],[122,6,71,64.0],[122,6,72,64.0],[122,6,73,64.0],[122,6,74,64.0],[122,6,75,64.0],[122,6,76,64.0],[122,6,77,64.0],[122,6,78,64.0],[122,6,79,64.0],[122,7,64,64.0],[122,7,65,64.0],[122,7,66,64.0],[122,7,67,64.0],[122,7,68,64.0],[122,7,69,64.0],[122,7,70,64.0],[122,7,71,64.0],[122,7,72,64.0],[122,7,73,64.0],[122,7,74,64.0],[122,7,75,64.0],[122,7,76,64.0],[122,7,77,64.0],[122,7,78,64.0],[122,7,79,64.0],[122,8,64,64.0],[122,8,65,64.0],[122,8,66,64.0],[122,8,67,64.0],[122,8,68,64.0],[122,8,69,64.0],[122,8,70,64.0],[122,8,71,64.0],[122,8,72,64.0],[122,8,73,64.0],[122,8,74,64.0],[122,8,75,64.0],[122,8,76,64.0],[122,8,77,64.0],[122,8,78,64.0],[122,8,79,64.0],[122,9,64,64.0],[122,9,65,64.0],[122,9,66,64.0],[122,9,67,64.0],[122,9,68,64.0],[122,9,69,64.0],[122,9,70,64.0],[122,9,71,64.0],[122,9,72,64.0],[122,9,73,64.0],[122,9,74,64.0],[122,9,75,64.0],[122,9,76,64.0],[122,9,77,64.0],[122,9,78,64.0],[122,9,79,64.0],[122,10,64,64.0],[122,10,65,64.0],[122,10,66,64.0],[122,10,67,64.0],[122,10,68,64.0],[122,10,69,64.0],[122,10,70,64.0],[122,10,71,64.0],[122,10,72,64.0],[122,10,73,64.0],[122,10,74,64.0],[122,10,75,64.0],[122,10,76,64.0],[122,10,77,64.0],[122,10,78,64.0],[122,10,79,64.0],[122,11,64,64.0],[122,11,65,64.0],[122,11,66,64.0],[122,11,67,64.0],[122,11,68,64.0],[122,11,69,64.0],[122,11,70,64.0],[122,11,71,64.0],[122,11,72,64.0],[122,11,73,64.0],[122,11,74,64.0],[122,11,75,64.0],[122,11,76,64.0],[122,11,77,64.0],[122,11,78,64.0],[122,11,79,64.0],[122,12,64,64.0],[122,12,65,64.0],[122,12,66,64.0],[122,12,67,64.0],[122,12,68,64.0],[122,12,69,64.0],[122,12,70,64.0],[122,12,71,64.0],[122,12,72,64.0],[122,12,73,64.0],[122,12,74,64.0],[122,12,75,64.0],[122,12,76,64.0],[122,12,77,64.0],[122,12,78,64.0],[122,12,79,64.0],[122,13,64,64.0],[122,13,65,64.0],[122,13,66,64.0],[122,13,67,64.0],[122,13,68,64.0],[122,13,69,64.0],[122,13,70,64.0],[122,13,71,64.0],[122,13,72,64.0],[122,13,73,64.0],[122,13,74,64.0],[122,13,75,64.0],[122,13,76,64.0],[122,13,77,64.0],[122,13,78,64.0],[122,13,79,64.0],[122,14,64,64.0],[122,14,65,64.0],[122,14,66,64.0],[122,14,67,64.0],[122,14,68,64.0],[122,14,69,64.0],[122,14,70,64.0],[122,14,71,64.0],[122,14,72,64.0],[122,14,73,64.0],[122,14,74,64.0],[122,14,75,64.0],[122,14,76,64.0],[122,14,77,64.0],[122,14,78,64.0],[122,14,79,64.0],[122,15,64,64.0],[122,15,65,64.0],[122,15,66,64.0],[122,15,67,64.0],[122,15,68,64.0],[122,15,69,64.0],[122,15,70,64.0],[122,15,71,64.0],[122,15,72,64.0],[122,15,73,64.0],[122,15,74,64.0],[122,15,75,64.0],[122,15,76,64.0],[122,15,77,64.0],[122,15,78,64.0],[122,15,79,64.0],[122,16,64,64.0],[122,16,65,64.0],[122,16,66,64.0],[122,16,67,64.0],[122,16,68,64.0],[122,16,69,64.0],[122,16,70,64.0],[122,16,71,64.0],[122,16,72,64.0],[122,16,73,64.0],[122,16,74,64.0],[122,16,75,64.0],[122,16,76,64.0],[122,16,77,64.0],[122,16,78,64.0],[122,16,79,64.0],[122,17,64,64.0],[122,17,65,64.0],[122,17,66,64.0],[122,17,67,64.0],[122,17,68,64.0],[122,17,69,64.0],[122,17,70,64.0],[122,17,71,64.0],[122,17,72,64.0],[122,17,73,64.0],[122,17,74,64.0],[122,17,75,64.0],[122,17,76,64.0],[122,17,77,64.0],[122,17,78,64.0],[122,17,79,64.0],[122,18,64,64.0],[122,18,65,64.0],[122,18,66,64.0],[122,18,67,64.0],[122,18,68,64.0],[122,18,69,64.0],[122,18,70,64.0],[122,18,71,64.0],[122,18,72,64.0],[122,18,73,64.0],[122,18,74,64.0],[122,18,75,64.0],[122,18,76,64.0],[122,18,77,64.0],[122,18,78,64.0],[122,18,79,64.0],[122,19,64,64.0],[122,19,65,64.0],[122,19,66,64.0],[122,19,67,64.0],[122,19,68,64.0],[122,19,69,64.0],[122,19,70,64.0],[122,19,71,64.0],[122,19,72,64.0],[122,19,73,64.0],[122,19,74,64.0],[122,19,75,64.0],[122,19,76,64.0],[122,19,77,64.0],[122,19,78,64.0],[122,19,79,64.0],[122,20,64,64.0],[122,20,65,64.0],[122,20,66,64.0],[122,20,67,64.0],[122,20,68,64.0],[122,20,69,64.0],[122,20,70,64.0],[122,20,71,64.0],[122,20,72,64.0],[122,20,73,64.0],[122,20,74,64.0],[122,20,75,64.0],[122,20,76,64.0],[122,20,77,64.0],[122,20,78,64.0],[122,20,79,64.0],[122,21,64,64.0],[122,21,65,64.0],[122,21,66,64.0],[122,21,67,64.0],[122,21,68,64.0],[122,21,69,64.0],[122,21,70,64.0],[122,21,71,64.0],[122,21,72,64.0],[122,21,73,64.0],[122,21,74,64.0],[122,21,75,64.0],[122,21,76,64.0],[122,21,77,64.0],[122,21,78,64.0],[122,21,79,64.0],[122,22,64,64.0],[122,22,65,64.0],[122,22,66,64.0],[122,22,67,64.0],[122,22,68,64.0],[122,22,69,64.0],[122,22,70,64.0],[122,22,71,64.0],[122,22,72,64.0],[122,22,73,64.0],[122,22,74,64.0],[122,22,75,64.0],[122,22,76,64.0],[122,22,77,64.0],[122,22,78,64.0],[122,22,79,64.0],[122,23,64,64.0],[122,23,65,64.0],[122,23,66,64.0],[122,23,67,64.0],[122,23,68,64.0],[122,23,69,64.0],[122,23,70,64.0],[122,23,71,64.0],[122,23,72,64.0],[122,23,73,64.0],[122,23,74,64.0],[122,23,75,64.0],[122,23,76,64.0],[122,23,77,64.0],[122,23,78,64.0],[122,23,79,64.0],[122,24,64,64.0],[122,24,65,64.0],[122,24,66,64.0],[122,24,67,64.0],[122,24,68,64.0],[122,24,69,64.0],[122,24,70,64.0],[122,24,71,64.0],[122,24,72,64.0],[122,24,73,64.0],[122,24,74,64.0],[122,24,75,64.0],[122,24,76,64.0],[122,24,77,64.0],[122,24,78,64.0],[122,24,79,64.0],[122,25,64,64.0],[122,25,65,64.0],[122,25,66,64.0],[122,25,67,64.0],[122,25,68,64.0],[122,25,69,64.0],[122,25,70,64.0],[122,25,71,64.0],[122,25,72,64.0],[122,25,73,64.0],[122,25,74,64.0],[122,25,75,64.0],[122,25,76,64.0],[122,25,77,64.0],[122,25,78,64.0],[122,25,79,64.0],[122,26,64,64.0],[122,26,65,64.0],[122,26,66,64.0],[122,26,67,64.0],[122,26,68,64.0],[122,26,69,64.0],[122,26,70,64.0],[122,26,71,64.0],[122,26,72,64.0],[122,26,73,64.0],[122,26,74,64.0],[122,26,75,64.0],[122,26,76,64.0],[122,26,77,64.0],[122,26,78,64.0],[122,26,79,64.0],[122,27,64,64.0],[122,27,65,64.0],[122,27,66,64.0],[122,27,67,64.0],[122,27,68,64.0],[122,27,69,64.0],[122,27,70,64.0],[122,27,71,64.0],[122,27,72,64.0],[122,27,73,64.0],[122,27,74,64.0],[122,27,75,64.0],[122,27,76,64.0],[122,27,77,64.0],[122,27,78,64.0],[122,27,79,64.0],[122,28,64,64.0],[122,28,65,64.0],[122,28,66,64.0],[122,28,67,64.0],[122,28,68,64.0],[122,28,69,64.0],[122,28,70,64.0],[122,28,71,64.0],[122,28,72,64.0],[122,28,73,64.0],[122,28,74,64.0],[122,28,75,64.0],[122,28,76,64.0],[122,28,77,64.0],[122,28,78,64.0],[122,28,79,64.0],[122,29,64,64.0],[122,29,65,64.0],[122,29,66,64.0],[122,29,67,64.0],[122,29,68,64.0],[122,29,69,64.0],[122,29,70,64.0],[122,29,71,64.0],[122,29,72,64.0],[122,29,73,64.0],[122,29,74,64.0],[122,29,75,64.0],[122,29,76,64.0],[122,29,77,64.0],[122,29,78,64.0],[122,29,79,64.0],[122,30,64,64.0],[122,30,65,64.0],[122,30,66,64.0],[122,30,67,64.0],[122,30,68,64.0],[122,30,69,64.0],[122,30,70,64.0],[122,30,71,64.0],[122,30,72,64.0],[122,30,73,64.0],[122,30,74,64.0],[122,30,75,64.0],[122,30,76,64.0],[122,30,77,64.0],[122,30,78,64.0],[122,30,79,64.0],[122,31,64,64.0],[122,31,65,64.0],[122,31,66,64.0],[122,31,67,64.0],[122,31,68,64.0],[122,31,69,64.0],[122,31,70,64.0],[122,31,71,64.0],[122,31,72,64.0],[122,31,73,64.0],[122,31,74,64.0],[122,31,75,64.0],[122,31,76,64.0],[122,31,77,64.0],[122,31,78,64.0],[122,31,79,64.0],[122,32,64,64.0],[122,32,65,64.0],[122,32,66,64.0],[122,32,67,64.0],[122,32,68,64.0],[122,32,69,64.0],[122,32,70,64.0],[122,32,71,64.0],[122,32,72,64.0],[122,32,73,64.0],[122,32,74,64.0],[122,32,75,64.0],[122,32,76,64.0],[122,32,77,64.0],[122,32,78,64.0],[122,32,79,64.0],[122,33,64,64.0],[122,33,65,64.0],[122,33,66,64.0],[122,33,67,64.0],[122,33,68,64.0],[122,33,69,64.0],[122,33,70,64.0],[122,33,71,64.0],[122,33,72,64.0],[122,33,73,64.0],[122,33,74,64.0],[122,33,75,64.0],[122,33,76,64.0],[122,33,77,64.0],[122,33,78,64.0],[122,33,79,64.0],[122,34,64,64.0],[122,34,65,64.0],[122,34,66,64.0],[122,34,67,64.0],[122,34,68,64.0],[122,34,69,64.0],[122,34,70,64.0],[122,34,71,64.0],[122,34,72,64.0],[122,34,73,64.0],[122,34,74,64.0],[122,34,75,64.0],[122,34,76,64.0],[122,34,77,64.0],[122,34,78,64.0],[122,34,79,64.0],[122,35,64,64.0],[122,35,65,64.0],[122,35,66,64.0],[122,35,67,64.0],[122,35,68,64.0],[122,35,69,64.0],[122,35,70,64.0],[122,35,71,64.0],[122,35,72,64.0],[122,35,73,64.0],[122,35,74,64.0],[122,35,75,64.0],[122,35,76,64.0],[122,35,77,64.0],[122,35,78,64.0],[122,35,79,64.0],[122,36,64,64.0],[122,36,65,64.0],[122,36,66,64.0],[122,36,67,64.0],[122,36,68,64.0],[122,36,69,64.0],[122,36,70,64.0],[122,36,71,64.0],[122,36,72,64.0],[122,36,73,64.0],[122,36,74,64.0],[122,36,75,64.0],[122,36,76,64.0],[122,36,77,64.0],[122,36,78,64.0],[122,36,79,64.0],[122,37,64,64.0],[122,37,65,64.0],[122,37,66,64.0],[122,37,67,64.0],[122,37,68,64.0],[122,37,69,64.0],[122,37,70,64.0],[122,37,71,64.0],[122,37,72,64.0],[122,37,73,64.0],[122,37,74,64.0],[122,37,75,64.0],[122,37,76,64.0],[122,37,77,64.0],[122,37,78,64.0],[122,37,79,64.0],[122,38,64,64.0],[122,38,65,64.0],[122,38,66,64.0],[122,38,67,64.0],[122,38,68,64.0],[122,38,69,64.0],[122,38,70,64.0],[122,38,71,64.0],[122,38,72,64.0],[122,38,73,64.0],[122,38,74,64.0],[122,38,75,64.0],[122,38,76,64.0],[122,38,77,64.0],[122,38,78,64.0],[122,38,79,64.0],[122,39,64,64.0],[122,39,65,64.0],[122,39,66,64.0],[122,39,67,64.0],[122,39,68,64.0],[122,39,69,64.0],[122,39,70,64.0],[122,39,71,64.0],[122,39,72,64.0],[122,39,73,64.0],[122,39,74,64.0],[122,39,75,64.0],[122,39,76,64.0],[122,39,77,64.0],[122,39,78,64.0],[122,39,79,64.0],[122,40,64,64.0],[122,40,65,64.0],[122,40,66,64.0],[122,40,67,64.0],[122,40,68,64.0],[122,40,69,64.0],[122,40,70,64.0],[122,40,71,64.0],[122,40,72,64.0],[122,40,73,64.0],[122,40,74,64.0],[122,40,75,64.0],[122,40,76,64.0],[122,40,77,64.0],[122,40,78,64.0],[122,40,79,64.0],[122,41,64,64.0],[122,41,65,64.0],[122,41,66,64.0],[122,41,67,64.0],[122,41,68,64.0],[122,41,69,64.0],[122,41,70,64.0],[122,41,71,64.0],[122,41,72,64.0],[122,41,73,64.0],[122,41,74,64.0],[122,41,75,64.0],[122,41,76,64.0],[122,41,77,64.0],[122,41,78,64.0],[122,41,79,64.0],[122,42,64,64.0],[122,42,65,64.0],[122,42,66,64.0],[122,42,67,64.0],[122,42,68,64.0],[122,42,69,64.0],[122,42,70,64.0],[122,42,71,64.0],[122,42,72,64.0],[122,42,73,64.0],[122,42,74,64.0],[122,42,75,64.0],[122,42,76,64.0],[122,42,77,64.0],[122,42,78,64.0],[122,42,79,64.0],[122,43,64,64.0],[122,43,65,64.0],[122,43,66,64.0],[122,43,67,64.0],[122,43,68,64.0],[122,43,69,64.0],[122,43,70,64.0],[122,43,71,64.0],[122,43,72,64.0],[122,43,73,64.0],[122,43,74,64.0],[122,43,75,64.0],[122,43,76,64.0],[122,43,77,64.0],[122,43,78,64.0],[122,43,79,64.0],[122,44,64,64.0],[122,44,65,64.0],[122,44,66,64.0],[122,44,67,64.0],[122,44,68,64.0],[122,44,69,64.0],[122,44,70,64.0],[122,44,71,64.0],[122,44,72,64.0],[122,44,73,64.0],[122,44,74,64.0],[122,44,75,64.0],[122,44,76,64.0],[122,44,77,64.0],[122,44,78,64.0],[122,44,79,64.0],[122,45,64,64.0],[122,45,65,64.0],[122,45,66,64.0],[122,45,67,64.0],[122,45,68,64.0],[122,45,69,64.0],[122,45,70,64.0],[122,45,71,64.0],[122,45,72,64.0],[122,45,73,64.0],[122,45,74,64.0],[122,45,75,64.0],[122,45,76,64.0],[122,45,77,64.0],[122,45,78,64.0],[122,45,79,64.0],[122,46,64,64.0],[122,46,65,64.0],[122,46,66,64.0],[122,46,67,64.0],[122,46,68,64.0],[122,46,69,64.0],[122,46,70,64.0],[122,46,71,64.0],[122,46,72,64.0],[122,46,73,64.0],[122,46,74,64.0],[122,46,75,64.0],[122,46,76,64.0],[122,46,77,64.0],[122,46,78,64.0],[122,46,79,64.0],[122,47,64,64.0],[122,47,65,64.0],[122,47,66,64.0],[122,47,67,64.0],[122,47,68,64.0],[122,47,69,64.0],[122,47,70,64.0],[122,47,71,64.0],[122,47,72,64.0],[122,47,73,64.0],[122,47,74,64.0],[122,47,75,64.0],[122,47,76,64.0],[122,47,77,64.0],[122,47,78,64.0],[122,47,79,64.0],[122,48,64,64.0],[122,48,65,64.0],[122,48,66,64.0],[122,48,67,64.0],[122,48,68,64.0],[122,48,69,64.0],[122,48,70,64.0],[122,48,71,64.0],[122,48,72,64.0],[122,48,73,64.0],[122,48,74,64.0],[122,48,75,64.0],[122,48,76,64.0],[122,48,77,64.0],[122,48,78,64.0],[122,48,79,64.0],[122,49,64,64.0],[122,49,65,64.0],[122,49,66,64.0],[122,49,67,64.0],[122,49,68,64.0],[122,49,69,64.0],[122,49,70,64.0],[122,49,71,64.0],[122,49,72,64.0],[122,49,73,64.0],[122,49,74,64.0],[122,49,75,64.0],[122,49,76,64.0],[122,49,77,64.0],[122,49,78,64.0],[122,49,79,64.0],[122,50,64,64.0],[122,50,65,64.0],[122,50,66,64.0],[122,50,67,64.0],[122,50,68,64.0],[122,50,69,64.0],[122,50,70,64.0],[122,50,71,64.0],[122,50,72,64.0],[122,50,73,64.0],[122,50,74,64.0],[122,50,75,64.0],[122,50,76,64.0],[122,50,77,64.0],[122,50,78,64.0],[122,50,79,64.0],[122,51,64,64.0],[122,51,65,64.0],[122,51,66,64.0],[122,51,67,64.0],[122,51,68,64.0],[122,51,69,64.0],[122,51,70,64.0],[122,51,71,64.0],[122,51,72,64.0],[122,51,73,64.0],[122,51,74,64.0],[122,51,75,64.0],[122,51,76,64.0],[122,51,77,64.0],[122,51,78,64.0],[122,51,79,64.0],[122,52,64,64.0],[122,52,65,64.0],[122,52,66,64.0],[122,52,67,64.0],[122,52,68,64.0],[122,52,69,64.0],[122,52,70,64.0],[122,52,71,64.0],[122,52,72,64.0],[122,52,73,64.0],[122,52,74,64.0],[122,52,75,64.0],[122,52,76,64.0],[122,52,77,64.0],[122,52,78,64.0],[122,52,79,64.0],[122,53,64,64.0],[122,53,65,64.0],[122,53,66,64.0],[122,53,67,64.0],[122,53,68,64.0],[122,53,69,64.0],[122,53,70,64.0],[122,53,71,64.0],[122,53,72,64.0],[122,53,73,64.0],[122,53,74,64.0],[122,53,75,64.0],[122,53,76,64.0],[122,53,77,64.0],[122,53,78,64.0],[122,53,79,64.0],[122,54,64,64.0],[122,54,65,64.0],[122,54,66,64.0],[122,54,67,64.0],[122,54,68,64.0],[122,54,69,64.0],[122,54,70,64.0],[122,54,71,64.0],[122,54,72,64.0],[122,54,73,64.0],[122,54,74,64.0],[122,54,75,64.0],[122,54,76,64.0],[122,54,77,64.0],[122,54,78,64.0],[122,54,79,64.0],[122,55,64,64.0],[122,55,65,64.0],[122,55,66,64.0],[122,55,67,64.0],[122,55,68,64.0],[122,55,69,64.0],[122,55,70,64.0],[122,55,71,64.0],[122,55,72,64.0],[122,55,73,64.0],[122,55,74,64.0],[122,55,75,64.0],[122,55,76,64.0],[122,55,77,64.0],[122,55,78,64.0],[122,55,79,64.0],[122,56,64,64.0],[122,56,65,64.0],[122,56,66,64.0],[122,56,67,64.0],[122,56,68,64.0],[122,56,69,64.0],[122,56,70,64.0],[122,56,71,64.0],[122,56,72,64.0],[122,56,73,64.0],[122,56,74,64.0],[122,56,75,64.0],[122,56,76,64.0],[122,56,77,64.0],[122,56,78,64.0],[122,56,79,64.0],[122,57,64,64.0],[122,57,65,64.0],[122,57,66,64.0],[122,57,67,64.0],[122,57,68,64.0],[122,57,69,64.0],[122,57,70,64.0],[122,57,71,64.0],[122,57,72,64.0],[122,57,73,64.0],[122,57,74,64.0],[122,57,75,64.0],[122,57,76,64.0],[122,57,77,64.0],[122,57,78,64.0],[122,57,79,64.0],[122,58,64,64.0],[122,58,65,64.0],[122,58,66,64.0],[122,58,67,64.0],[122,58,68,64.0],[122,58,69,64.0],[122,58,70,64.0],[122,58,71,64.0],[122,58,72,64.0],[122,58,73,64.0],[122,58,74,64.0],[122,58,75,64.0],[122,58,76,64.0],[122,58,77,64.0],[122,58,78,64.0],[122,58,79,64.0],[122,59,64,64.0],[122,59,65,64.0],[122,59,66,64.0],[122,59,67,64.0],[122,59,68,64.0],[122,59,69,64.0],[122,59,70,64.0],[122,59,71,64.0],[122,59,72,64.0],[122,59,73,64.0],[122,59,74,64.0],[122,59,75,64.0],[122,59,76,64.0],[122,59,77,64.0],[122,59,78,64.0],[122,59,79,64.0],[122,60,64,64.0],[122,60,65,64.0],[122,60,66,64.0],[122,60,67,64.0],[122,60,68,64.0],[122,60,69,64.0],[122,60,70,64.0],[122,60,71,64.0],[122,60,72,64.0],[122,60,73,64.0],[122,60,74,64.0],[122,60,75,64.0],[122,60,76,64.0],[122,60,77,64.0],[122,60,78,64.0],[122,60,79,64.0],[122,61,64,64.0],[122,61,65,64.0],[122,61,66,64.0],[122,61,67,64.0],[122,61,68,64.0],[122,61,69,64.0],[122,61,70,64.0],[122,61,71,64.0],[122,61,72,64.0],[122,61,73,64.0],[122,61,74,64.0],[122,61,75,64.0],[122,61,76,64.0],[122,61,77,64.0],[122,61,78,64.0],[122,61,79,64.0],[122,62,64,64.0],[122,62,65,64.0],[122,62,66,64.0],[122,62,67,64.0],[122,62,68,64.0],[122,62,69,64.0],[122,62,70,64.0],[122,62,71,64.0],[122,62,72,64.0],[122,62,73,64.0],[122,62,74,64.0],[122,62,75,64.0],[122,62,76,64.0],[122,62,77,64.0],[122,62,78,64.0],[122,62,79,64.0],[122,63,64,64.0],[122,63,65,64.0],[122,63,66,64.0],[122,63,67,64.0],[122,63,68,64.0],[122,63,69,64.0],[122,63,70,64.0],[122,63,71,64.0],[122,63,72,64.0],[122,63,73,64.0],[122,63,74,64.0],[122,63,75,64.0],[122,63,76,64.0],[122,63,77,64.0],[122,63,78,64.0],[122,63,79,64.0],[122,64,64,64.0],[122,64,65,64.0],[122,64,66,64.0],[122,64,67,64.0],[122,64,68,64.0],[122,64,69,64.0],[122,64,70,64.0],[122,64,71,64.0],[122,64,72,64.0],[122,64,73,64.0],[122,64,74,64.0],[122,64,75,64.0],[122,64,76,64.0],[122,64,77,64.0],[122,64,78,64.0],[122,64,79,64.0],[122,65,64,64.0],[122,65,65,64.0],[122,65,66,64.0],[122,65,67,64.0],[122,65,68,64.0],[122,65,69,64.0],[122,65,70,64.0],[122,65,71,64.0],[122,65,72,64.0],[122,65,73,64.0],[122,65,74,64.0],[122,65,75,64.0],[122,65,76,64.0],[122,65,77,64.0],[122,65,78,64.0],[122,65,79,64.0],[122,66,64,64.0],[122,66,65,64.0],[122,66,66,64.0],[122,66,67,64.0],[122,66,68,64.0],[122,66,69,64.0],[122,66,70,64.0],[122,66,71,64.0],[122,66,72,64.0],[122,66,73,64.0],[122,66,74,64.0],[122,66,75,64.0],[122,66,76,64.0],[122,66,77,64.0],[122,66,78,64.0],[122,66,79,64.0],[122,67,64,64.0],[122,67,65,64.0],[122,67,66,64.0],[122,67,67,64.0],[122,67,68,64.0],[122,67,69,64.0],[122,67,70,64.0],[122,67,71,64.0],[122,67,72,64.0],[122,67,73,64.0],[122,67,74,64.0],[122,67,75,64.0],[122,67,76,64.0],[122,67,77,64.0],[122,67,78,64.0],[122,67,79,64.0],[122,68,64,64.0],[122,68,65,64.0],[122,68,66,64.0],[122,68,67,64.0],[122,68,68,64.0],[122,68,69,64.0],[122,68,70,64.0],[122,68,71,64.0],[122,68,72,64.0],[122,68,73,64.0],[122,68,74,64.0],[122,68,75,64.0],[122,68,76,64.0],[122,68,77,64.0],[122,68,78,64.0],[122,68,79,64.0],[122,69,64,64.0],[122,69,65,64.0],[122,69,66,64.0],[122,69,67,64.0],[122,69,68,64.0],[122,69,69,64.0],[122,69,70,64.0],[122,69,71,64.0],[122,69,72,64.0],[122,69,73,64.0],[122,69,74,64.0],[122,69,75,64.0],[122,69,76,64.0],[122,69,77,64.0],[122,69,78,64.0],[122,69,79,64.0],[122,70,64,64.0],[122,70,65,64.0],[122,70,66,64.0],[122,70,67,64.0],[122,70,68,64.0],[122,70,69,64.0],[122,70,70,64.0],[122,70,71,64.0],[122,70,72,64.0],[122,70,73,64.0],[122,70,74,64.0],[122,70,75,64.0],[122,70,76,64.0],[122,70,77,64.0],[122,70,78,64.0],[122,70,79,64.0],[122,71,64,64.0],[122,71,65,64.0],[122,71,66,64.0],[122,71,67,64.0],[122,71,68,64.0],[122,71,69,64.0],[122,71,70,64.0],[122,71,71,64.0],[122,71,72,64.0],[122,71,73,64.0],[122,71,74,64.0],[122,71,75,64.0],[122,71,76,64.0],[122,71,77,64.0],[122,71,78,64.0],[122,71,79,64.0],[122,72,64,64.0],[122,72,65,64.0],[122,72,66,64.0],[122,72,67,64.0],[122,72,68,64.0],[122,72,69,64.0],[122,72,70,64.0],[122,72,71,64.0],[122,72,72,64.0],[122,72,73,64.0],[122,72,74,64.0],[122,72,75,64.0],[122,72,76,64.0],[122,72,77,64.0],[122,72,78,64.0],[122,72,79,64.0],[122,73,64,64.0],[122,73,65,64.0],[122,73,66,64.0],[122,73,67,64.0],[122,73,68,64.0],[122,73,69,64.0],[122,73,70,64.0],[122,73,71,64.0],[122,73,72,64.0],[122,73,73,64.0],[122,73,74,64.0],[122,73,75,64.0],[122,73,76,64.0],[122,73,77,64.0],[122,73,78,64.0],[122,73,79,64.0],[122,74,64,64.0],[122,74,65,64.0],[122,74,66,64.0],[122,74,67,64.0],[122,74,68,64.0],[122,74,69,64.0],[122,74,70,64.0],[122,74,71,64.0],[122,74,72,64.0],[122,74,73,64.0],[122,74,74,64.0],[122,74,75,64.0],[122,74,76,64.0],[122,74,77,64.0],[122,74,78,64.0],[122,74,79,64.0],[122,75,64,64.0],[122,75,65,64.0],[122,75,66,64.0],[122,75,67,64.0],[122,75,68,64.0],[122,75,69,64.0],[122,75,70,64.0],[122,75,71,64.0],[122,75,72,64.0],[122,75,73,64.0],[122,75,74,64.0],[122,75,75,64.0],[122,75,76,64.0],[122,75,77,64.0],[122,75,78,64.0],[122,75,79,64.0],[122,76,64,64.0],[122,76,65,64.0],[122,76,66,64.0],[122,76,67,64.0],[122,76,68,64.0],[122,76,69,64.0],[122,76,70,64.0],[122,76,71,64.0],[122,76,72,64.0],[122,76,73,64.0],[122,76,74,64.0],[122,76,75,64.0],[122,76,76,64.0],[122,76,77,64.0],[122,76,78,64.0],[122,76,79,64.0],[122,77,64,64.0],[122,77,65,64.0],[122,77,66,64.0],[122,77,67,64.0],[122,77,68,64.0],[122,77,69,64.0],[122,77,70,64.0],[122,77,71,64.0],[122,77,72,64.0],[122,77,73,64.0],[122,77,74,64.0],[122,77,75,64.0],[122,77,76,64.0],[122,77,77,64.0],[122,77,78,64.0],[122,77,79,64.0],[122,78,64,64.0],[122,78,65,64.0],[122,78,66,64.0],[122,78,67,64.0],[122,78,68,64.0],[122,78,69,64.0],[122,78,70,64.0],[122,78,71,64.0],[122,78,72,64.0],[122,78,73,64.0],[122,78,74,64.0],[122,78,75,64.0],[122,78,76,64.0],[122,78,77,64.0],[122,78,78,64.0],[122,78,79,64.0],[122,79,64,64.0],[122,79,65,64.0],[122,79,66,64.0],[122,79,67,64.0],[122,79,68,64.0],[122,79,69,64.0],[122,79,70,64.0],[122,79,71,64.0],[122,79,72,64.0],[122,79,73,64.0],[122,79,74,64.0],[122,79,75,64.0],[122,79,76,64.0],[122,79,77,64.0],[122,79,78,64.0],[122,79,79,64.0],[122,80,64,64.0],[122,80,65,64.0],[122,80,66,64.0],[122,80,67,64.0],[122,80,68,64.0],[122,80,69,64.0],[122,80,70,64.0],[122,80,71,64.0],[122,80,72,64.0],[122,80,73,64.0],[122,80,74,64.0],[122,80,75,64.0],[122,80,76,64.0],[122,80,77,64.0],[122,80,78,64.0],[122,80,79,64.0],[122,81,64,64.0],[122,81,65,64.0],[122,81,66,64.0],[122,81,67,64.0],[122,81,68,64.0],[122,81,69,64.0],[122,81,70,64.0],[122,81,71,64.0],[122,81,72,64.0],[122,81,73,64.0],[122,81,74,64.0],[122,81,75,64.0],[122,81,76,64.0],[122,81,77,64.0],[122,81,78,64.0],[122,81,79,64.0],[122,82,64,64.0],[122,82,65,64.0],[122,82,66,64.0],[122,82,67,64.0],[122,82,68,64.0],[122,82,69,64.0],[122,82,70,64.0],[122,82,71,64.0],[122,82,72,64.0],[122,82,73,64.0],[122,82,74,64.0],[122,82,75,64.0],[122,82,76,64.0],[122,82,77,64.0],[122,82,78,64.0],[122,82,79,64.0],[122,83,64,64.0],[122,83,65,64.0],[122,83,66,64.0],[122,83,67,64.0],[122,83,68,64.0],[122,83,69,64.0],[122,83,70,64.0],[122,83,71,64.0],[122,83,72,64.0],[122,83,73,64.0],[122,83,74,64.0],[122,83,75,64.0],[122,83,76,64.0],[122,83,77,64.0],[122,83,78,64.0],[122,83,79,64.0],[122,84,64,64.0],[122,84,65,64.0],[122,84,66,64.0],[122,84,67,64.0],[122,84,68,64.0],[122,84,69,64.0],[122,84,70,64.0],[122,84,71,64.0],[122,84,72,64.0],[122,84,73,64.0],[122,84,74,64.0],[122,84,75,64.0],[122,84,76,64.0],[122,84,77,64.0],[122,84,78,64.0],[122,84,79,64.0],[122,85,64,64.0],[122,85,65,64.0],[122,85,66,64.0],[122,85,67,64.0],[122,85,68,64.0],[122,85,69,64.0],[122,85,70,64.0],[122,85,71,64.0],[122,85,72,64.0],[122,85,73,64.0],[122,85,74,64.0],[122,85,75,64.0],[122,85,76,64.0],[122,85,77,64.0],[122,85,78,64.0],[122,85,79,64.0],[122,86,64,64.0],[122,86,65,64.0],[122,86,66,64.0],[122,86,67,64.0],[122,86,68,64.0],[122,86,69,64.0],[122,86,70,64.0],[122,86,71,64.0],[122,86,72,64.0],[122,86,73,64.0],[122,86,74,64.0],[122,86,75,64.0],[122,86,76,64.0],[122,86,77,64.0],[122,86,78,64.0],[122,86,79,64.0],[122,87,64,64.0],[122,87,65,64.0],[122,87,66,64.0],[122,87,67,64.0],[122,87,68,64.0],[122,87,69,64.0],[122,87,70,64.0],[122,87,71,64.0],[122,87,72,64.0],[122,87,73,64.0],[122,87,74,64.0],[122,87,75,64.0],[122,87,76,64.0],[122,87,77,64.0],[122,87,78,64.0],[122,87,79,64.0],[122,88,64,64.0],[122,88,65,64.0],[122,88,66,64.0],[122,88,67,64.0],[122,88,68,64.0],[122,88,69,64.0],[122,88,70,64.0],[122,88,71,64.0],[122,88,72,64.0],[122,88,73,64.0],[122,88,74,64.0],[122,88,75,64.0],[122,88,76,64.0],[122,88,77,64.0],[122,88,78,64.0],[122,88,79,64.0],[122,89,64,64.0],[122,89,65,64.0],[122,89,66,64.0],[122,89,67,64.0],[122,89,68,64.0],[122,89,69,64.0],[122,89,70,64.0],[122,89,71,64.0],[122,89,72,64.0],[122,89,73,64.0],[122,89,74,64.0],[122,89,75,64.0],[122,89,76,64.0],[122,89,77,64.0],[122,89,78,64.0],[122,89,79,64.0],[122,90,64,64.0],[122,90,65,64.0],[122,90,66,64.0],[122,90,67,64.0],[122,90,68,64.0],[122,90,69,64.0],[122,90,70,64.0],[122,90,71,64.0],[122,90,72,64.0],[122,90,73,64.0],[122,90,74,64.0],[122,90,75,64.0],[122,90,76,64.0],[122,90,77,64.0],[122,90,78,64.0],[122,90,79,64.0],[122,91,64,64.0],[122,91,65,64.0],[122,91,66,64.0],[122,91,67,64.0],[122,91,68,64.0],[122,91,69,64.0],[122,91,70,64.0],[122,91,71,64.0],[122,91,72,64.0],[122,91,73,64.0],[122,91,74,64.0],[122,91,75,64.0],[122,91,76,64.0],[122,91,77,64.0],[122,91,78,64.0],[122,91,79,64.0],[122,92,64,64.0],[122,92,65,64.0],[122,92,66,64.0],[122,92,67,64.0],[122,92,68,64.0],[122,92,69,64.0],[122,92,70,64.0],[122,92,71,64.0],[122,92,72,64.0],[122,92,73,64.0],[122,92,74,64.0],[122,92,75,64.0],[122,92,76,64.0],[122,92,77,64.0],[122,92,78,64.0],[122,92,79,64.0],[122,93,64,64.0],[122,93,65,64.0],[122,93,66,64.0],[122,93,67,64.0],[122,93,68,64.0],[122,93,69,64.0],[122,93,70,64.0],[122,93,71,64.0],[122,93,72,64.0],[122,93,73,64.0],[122,93,74,64.0],[122,93,75,64.0],[122,93,76,64.0],[122,93,77,64.0],[122,93,78,64.0],[122,93,79,64.0],[122,94,64,64.0],[122,94,65,64.0],[122,94,66,64.0],[122,94,67,64.0],[122,94,68,64.0],[122,94,69,64.0],[122,94,70,64.0],[122,94,71,64.0],[122,94,72,64.0],[122,94,73,64.0],[122,94,74,64.0],[122,94,75,64.0],[122,94,76,64.0],[122,94,77,64.0],[122,94,78,64.0],[122,94,79,64.0],[122,95,64,64.0],[122,95,65,64.0],[122,95,66,64.0],[122,95,67,64.0],[122,95,68,64.0],[122,95,69,64.0],[122,95,70,64.0],[122,95,71,64.0],[122,95,72,64.0],[122,95,73,64.0],[122,95,74,64.0],[122,95,75,64.0],[122,95,76,64.0],[122,95,77,64.0],[122,95,78,64.0],[122,95,79,64.0],[122,96,64,64.0],[122,96,65,64.0],[122,96,66,64.0],[122,96,67,64.0],[122,96,68,64.0],[122,96,69,64.0],[122,96,70,64.0],[122,96,71,64.0],[122,96,72,64.0],[122,96,73,64.0],[122,96,74,64.0],[122,96,75,64.0],[122,96,76,64.0],[122,96,77,64.0],[122,96,78,64.0],[122,96,79,64.0],[122,97,64,64.0],[122,97,65,64.0],[122,97,66,64.0],[122,97,67,64.0],[122,97,68,64.0],[122,97,69,64.0],[122,97,70,64.0],[122,97,71,64.0],[122,97,72,64.0],[122,97,73,64.0],[122,97,74,64.0],[122,97,75,64.0],[122,97,76,64.0],[122,97,77,64.0],[122,97,78,64.0],[122,97,79,64.0],[122,98,64,64.0],[122,98,65,64.0],[122,98,66,64.0],[122,98,67,64.0],[122,98,68,64.0],[122,98,69,64.0],[122,98,70,64.0],[122,98,71,64.0],[122,98,72,64.0],[122,98,73,64.0],[122,98,74,64.0],[122,98,75,64.0],[122,98,76,64.0],[122,98,77,64.0],[122,98,78,64.0],[122,98,79,64.0],[122,99,64,64.0],[122,99,65,64.0],[122,99,66,64.0],[122,99,67,64.0],[122,99,68,64.0],[122,99,69,64.0],[122,99,70,64.0],[122,99,71,64.0],[122,99,72,64.0],[122,99,73,64.0],[122,99,74,64.0],[122,99,75,64.0],[122,99,76,64.0],[122,99,77,64.0],[122,99,78,64.0],[122,99,79,64.0],[122,100,64,64.0],[122,100,65,64.0],[122,100,66,64.0],[122,100,67,64.0],[122,100,68,64.0],[122,100,69,64.0],[122,100,70,64.0],[122,100,71,64.0],[122,100,72,64.0],[122,100,73,64.0],[122,100,74,64.0],[122,100,75,64.0],[122,100,76,64.0],[122,100,77,64.0],[122,100,78,64.0],[122,100,79,64.0],[122,101,64,64.0],[122,101,65,64.0],[122,101,66,64.0],[122,101,67,64.0],[122,101,68,64.0],[122,101,69,64.0],[122,101,70,64.0],[122,101,71,64.0],[122,101,72,64.0],[122,101,73,64.0],[122,101,74,64.0],[122,101,75,64.0],[122,101,76,64.0],[122,101,77,64.0],[122,101,78,64.0],[122,101,79,64.0],[122,102,64,64.0],[122,102,65,64.0],[122,102,66,64.0],[122,102,67,64.0],[122,102,68,64.0],[122,102,69,64.0],[122,102,70,64.0],[122,102,71,64.0],[122,102,72,64.0],[122,102,73,64.0],[122,102,74,64.0],[122,102,75,64.0],[122,102,76,64.0],[122,102,77,64.0],[122,102,78,64.0],[122,102,79,64.0],[122,103,64,64.0],[122,103,65,64.0],[122,103,66,64.0],[122,103,67,64.0],[122,103,68,64.0],[122,103,69,64.0],[122,103,70,64.0],[122,103,71,64.0],[122,103,72,64.0],[122,103,73,64.0],[122,103,74,64.0],[122,103,75,64.0],[122,103,76,64.0],[122,103,77,64.0],[122,103,78,64.0],[122,103,79,64.0],[122,104,64,64.0],[122,104,65,64.0],[122,104,66,64.0],[122,104,67,64.0],[122,104,68,64.0],[122,104,69,64.0],[122,104,70,64.0],[122,104,71,64.0],[122,104,72,64.0],[122,104,73,64.0],[122,104,74,64.0],[122,104,75,64.0],[122,104,76,64.0],[122,104,77,64.0],[122,104,78,64.0],[122,104,79,64.0],[122,105,64,64.0],[122,105,65,64.0],[122,105,66,64.0],[122,105,67,64.0],[122,105,68,64.0],[122,105,69,64.0],[122,105,70,64.0],[122,105,71,64.0],[122,105,72,64.0],[122,105,73,64.0],[122,105,74,64.0],[122,105,75,64.0],[122,105,76,64.0],[122,105,77,64.0],[122,105,78,64.0],[122,105,79,64.0],[122,106,64,64.0],[122,106,65,64.0],[122,106,66,64.0],[122,106,67,64.0],[122,106,68,64.0],[122,106,69,64.0],[122,106,70,64.0],[122,106,71,64.0],[122,106,72,64.0],[122,106,73,64.0],[122,106,74,64.0],[122,106,75,64.0],[122,106,76,64.0],[122,106,77,64.0],[122,106,78,64.0],[122,106,79,64.0],[122,107,64,64.0],[122,107,65,64.0],[122,107,66,64.0],[122,107,67,64.0],[122,107,68,64.0],[122,107,69,64.0],[122,107,70,64.0],[122,107,71,64.0],[122,107,72,64.0],[122,107,73,64.0],[122,107,74,64.0],[122,107,75,64.0],[122,107,76,64.0],[122,107,77,64.0],[122,107,78,64.0],[122,107,79,64.0],[122,108,64,64.0],[122,108,65,64.0],[122,108,66,64.0],[122,108,67,64.0],[122,108,68,64.0],[122,108,69,64.0],[122,108,70,64.0],[122,108,71,64.0],[122,108,72,64.0],[122,108,73,64.0],[122,108,74,64.0],[122,108,75,64.0],[122,108,76,64.0],[122,108,77,64.0],[122,108,78,64.0],[122,108,79,64.0],[122,109,64,64.0],[122,109,65,64.0],[122,109,66,64.0],[122,109,67,64.0],[122,109,68,64.0],[122,109,69,64.0],[122,109,70,64.0],[122,109,71,64.0],[122,109,72,64.0],[122,109,73,64.0],[122,109,74,64.0],[122,109,75,64.0],[122,109,76,64.0],[122,109,77,64.0],[122,109,78,64.0],[122,109,79,64.0],[122,110,64,64.0],[122,110,65,64.0],[122,110,66,64.0],[122,110,67,64.0],[122,110,68,64.0],[122,110,69,64.0],[122,110,70,64.0],[122,110,71,64.0],[122,110,72,64.0],[122,110,73,64.0],[122,110,74,64.0],[122,110,75,64.0],[122,110,76,64.0],[122,110,77,64.0],[122,110,78,64.0],[122,110,79,64.0],[122,111,64,64.0],[122,111,65,64.0],[122,111,66,64.0],[122,111,67,64.0],[122,111,68,64.0],[122,111,69,64.0],[122,111,70,64.0],[122,111,71,64.0],[122,111,72,64.0],[122,111,73,64.0],[122,111,74,64.0],[122,111,75,64.0],[122,111,76,64.0],[122,111,77,64.0],[122,111,78,64.0],[122,111,79,64.0],[122,112,64,64.0],[122,112,65,64.0],[122,112,66,64.0],[122,112,67,64.0],[122,112,68,64.0],[122,112,69,64.0],[122,112,70,64.0],[122,112,71,64.0],[122,112,72,64.0],[122,112,73,64.0],[122,112,74,64.0],[122,112,75,64.0],[122,112,76,64.0],[122,112,77,64.0],[122,112,78,64.0],[122,112,79,64.0],[122,113,64,64.0],[122,113,65,64.0],[122,113,66,64.0],[122,113,67,64.0],[122,113,68,64.0],[122,113,69,64.0],[122,113,70,64.0],[122,113,71,64.0],[122,113,72,64.0],[122,113,73,64.0],[122,113,74,64.0],[122,113,75,64.0],[122,113,76,64.0],[122,113,77,64.0],[122,113,78,64.0],[122,113,79,64.0],[122,114,64,64.0],[122,114,65,64.0],[122,114,66,64.0],[122,114,67,64.0],[122,114,68,64.0],[122,114,69,64.0],[122,114,70,64.0],[122,114,71,64.0],[122,114,72,64.0],[122,114,73,64.0],[122,114,74,64.0],[122,114,75,64.0],[122,114,76,64.0],[122,114,77,64.0],[122,114,78,64.0],[122,114,79,64.0],[122,115,64,64.0],[122,115,65,64.0],[122,115,66,64.0],[122,115,67,64.0],[122,115,68,64.0],[122,115,69,64.0],[122,115,70,64.0],[122,115,71,64.0],[122,115,72,64.0],[122,115,73,64.0],[122,115,74,64.0],[122,115,75,64.0],[122,115,76,64.0],[122,115,77,64.0],[122,115,78,64.0],[122,115,79,64.0],[122,116,64,64.0],[122,116,65,64.0],[122,116,66,64.0],[122,116,67,64.0],[122,116,68,64.0],[122,116,69,64.0],[122,116,70,64.0],[122,116,71,64.0],[122,116,72,64.0],[122,116,73,64.0],[122,116,74,64.0],[122,116,75,64.0],[122,116,76,64.0],[122,116,77,64.0],[122,116,78,64.0],[122,116,79,64.0],[122,117,64,64.0],[122,117,65,64.0],[122,117,66,64.0],[122,117,67,64.0],[122,117,68,64.0],[122,117,69,64.0],[122,117,70,64.0],[122,117,71,64.0],[122,117,72,64.0],[122,117,73,64.0],[122,117,74,64.0],[122,117,75,64.0],[122,117,76,64.0],[122,117,77,64.0],[122,117,78,64.0],[122,117,79,64.0],[122,118,64,64.0],[122,118,65,64.0],[122,118,66,64.0],[122,118,67,64.0],[122,118,68,64.0],[122,118,69,64.0],[122,118,70,64.0],[122,118,71,64.0],[122,118,72,64.0],[122,118,73,64.0],[122,118,74,64.0],[122,118,75,64.0],[122,118,76,64.0],[122,118,77,64.0],[122,118,78,64.0],[122,118,79,64.0],[122,119,64,64.0],[122,119,65,64.0],[122,119,66,64.0],[122,119,67,64.0],[122,119,68,64.0],[122,119,69,64.0],[122,119,70,64.0],[122,119,71,64.0],[122,119,72,64.0],[122,119,73,64.0],[122,119,74,64.0],[122,119,75,64.0],[122,119,76,64.0],[122,119,77,64.0],[122,119,78,64.0],[122,119,79,64.0],[122,120,64,64.0],[122,120,65,64.0],[122,120,66,64.0],[122,120,67,64.0],[122,120,68,64.0],[122,120,69,64.0],[122,120,70,64.0],[122,120,71,64.0],[122,120,72,64.0],[122,120,73,64.0],[122,120,74,64.0],[122,120,75,64.0],[122,120,76,64.0],[122,120,77,64.0],[122,120,78,64.0],[122,120,79,64.0],[122,121,64,64.0],[122,121,65,64.0],[122,121,66,64.0],[122,121,67,64.0],[122,121,68,64.0],[122,121,69,64.0],[122,121,70,64.0],[122,121,71,64.0],[122,121,72,64.0],[122,121,73,64.0],[122,121,74,64.0],[122,121,75,64.0],[122,121,76,64.0],[122,121,77,64.0],[122,121,78,64.0],[122,121,79,64.0],[122,122,64,64.0],[122,122,65,64.0],[122,122,66,64.0],[122,122,67,64.0],[122,122,68,64.0],[122,122,69,64.0],[122,122,70,64.0],[122,122,71,64.0],[122,122,72,64.0],[122,122,73,64.0],[122,122,74,64.0],[122,122,75,64.0],[122,122,76,64.0],[122,122,77,64.0],[122,122,78,64.0],[122,122,79,64.0],[122,123,64,64.0],[122,123,65,64.0],[122,123,66,64.0],[122,123,67,64.0],[122,123,68,64.0],[122,123,69,64.0],[122,123,70,64.0],[122,123,71,64.0],[122,123,72,64.0],[122,123,73,64.0],[122,123,74,64.0],[122,123,75,64.0],[122,123,76,64.0],[122,123,77,64.0],[122,123,78,64.0],[122,123,79,64.0],[122,124,64,64.0],[122,124,65,64.0],[122,124,66,64.0],[122,124,67,64.0],[122,124,68,64.0],[122,124,69,64.0],[122,124,70,64.0],[122,124,71,64.0],[122,124,72,64.0],[122,124,73,64.0],[122,124,74,64.0],[122,124,75,64.0],[122,124,76,64.0],[122,124,77,64.0],[122,124,78,64.0],[122,124,79,64.0],[122,125,64,64.0],[122,125,65,64.0],[122,125,66,64.0],[122,125,67,64.0],[122,125,68,64.0],[122,125,69,64.0],[122,125,70,64.0],[122,125,71,64.0],[122,125,72,64.0],[122,125,73,64.0],[122,125,74,64.0],[122,125,75,64.0],[122,125,76,64.0],[122,125,77,64.0],[122,125,78,64.0],[122,125,79,64.0],[122,126,64,64.0],[122,126,65,64.0],[122,126,66,64.0],[122,126,67,64.0],[122,126,68,64.0],[122,126,69,64.0],[122,126,70,64.0],[122,126,71,64.0],[122,126,72,64.0],[122,126,73,64.0],[122,126,74,64.0],[122,126,75,64.0],[122,126,76,64.0],[122,126,77,64.0],[122,126,78,64.0],[122,126,79,64.0],[122,127,64,64.0],[122,127,65,64.0],[122,127,66,64.0],[122,127,67,64.0],[122,127,68,64.0],[122,127,69,64.0],[122,127,70,64.0],[122,127,71,64.0],[122,127,72,64.0],[122,127,73,64.0],[122,127,74,64.0],[122,127,75,64.0],[122,127,76,64.0],[122,127,77,64.0],[122,127,78,64.0],[122,127,79,64.0],[122,128,64,64.0],[122,128,65,64.0],[122,128,66,64.0],[122,128,67,64.0],[122,128,68,64.0],[122,128,69,64.0],[122,128,70,64.0],[122,128,71,64.0],[122,128,72,64.0],[122,128,73,64.0],[122,128,74,64.0],[122,128,75,64.0],[122,128,76,64.0],[122,128,77,64.0],[122,128,78,64.0],[122,128,79,64.0],[122,129,64,64.0],[122,129,65,64.0],[122,129,66,64.0],[122,129,67,64.0],[122,129,68,64.0],[122,129,69,64.0],[122,129,70,64.0],[122,129,71,64.0],[122,129,72,64.0],[122,129,73,64.0],[122,129,74,64.0],[122,129,75,64.0],[122,129,76,64.0],[122,129,77,64.0],[122,129,78,64.0],[122,129,79,64.0],[122,130,64,64.0],[122,130,65,64.0],[122,130,66,64.0],[122,130,67,64.0],[122,130,68,64.0],[122,130,69,64.0],[122,130,70,64.0],[122,130,71,64.0],[122,130,72,64.0],[122,130,73,64.0],[122,130,74,64.0],[122,130,75,64.0],[122,130,76,64.0],[122,130,77,64.0],[122,130,78,64.0],[122,130,79,64.0],[122,131,64,64.0],[122,131,65,64.0],[122,131,66,64.0],[122,131,67,64.0],[122,131,68,64.0],[122,131,69,64.0],[122,131,70,64.0],[122,131,71,64.0],[122,131,72,64.0],[122,131,73,64.0],[122,131,74,64.0],[122,131,75,64.0],[122,131,76,64.0],[122,131,77,64.0],[122,131,78,64.0],[122,131,79,64.0],[122,132,64,64.0],[122,132,65,64.0],[122,132,66,64.0],[122,132,67,64.0],[122,132,68,64.0],[122,132,69,64.0],[122,132,70,64.0],[122,132,71,64.0],[122,132,72,64.0],[122,132,73,64.0],[122,132,74,64.0],[122,132,75,64.0],[122,132,76,64.0],[122,132,77,64.0],[122,132,78,64.0],[122,132,79,64.0],[122,133,64,64.0],[122,133,65,64.0],[122,133,66,64.0],[122,133,67,64.0],[122,133,68,64.0],[122,133,69,64.0],[122,133,70,64.0],[122,133,71,64.0],[122,133,72,64.0],[122,133,73,64.0],[122,133,74,64.0],[122,133,75,64.0],[122,133,76,64.0],[122,133,77,64.0],[122,133,78,64.0],[122,133,79,64.0],[122,134,64,64.0],[122,134,65,64.0],[122,134,66,64.0],[122,134,67,64.0],[122,134,68,64.0],[122,134,69,64.0],[122,134,70,64.0],[122,134,71,64.0],[122,134,72,64.0],[122,134,73,64.0],[122,134,74,64.0],[122,134,75,64.0],[122,134,76,64.0],[122,134,77,64.0],[122,134,78,64.0],[122,134,79,64.0],[122,135,64,64.0],[122,135,65,64.0],[122,135,66,64.0],[122,135,67,64.0],[122,135,68,64.0],[122,135,69,64.0],[122,135,70,64.0],[122,135,71,64.0],[122,135,72,64.0],[122,135,73,64.0],[122,135,74,64.0],[122,135,75,64.0],[122,135,76,64.0],[122,135,77,64.0],[122,135,78,64.0],[122,135,79,64.0],[122,136,64,64.0],[122,136,65,64.0],[122,136,66,64.0],[122,136,67,64.0],[122,136,68,64.0],[122,136,69,64.0],[122,136,70,64.0],[122,136,71,64.0],[122,136,72,64.0],[122,136,73,64.0],[122,136,74,64.0],[122,136,75,64.0],[122,136,76,64.0],[122,136,77,64.0],[122,136,78,64.0],[122,136,79,64.0],[122,137,64,64.0],[122,137,65,64.0],[122,137,66,64.0],[122,137,67,64.0],[122,137,68,64.0],[122,137,69,64.0],[122,137,70,64.0],[122,137,71,64.0],[122,137,72,64.0],[122,137,73,64.0],[122,137,74,64.0],[122,137,75,64.0],[122,137,76,64.0],[122,137,77,64.0],[122,137,78,64.0],[122,137,79,64.0],[122,138,64,64.0],[122,138,65,64.0],[122,138,66,64.0],[122,138,67,64.0],[122,138,68,64.0],[122,138,69,64.0],[122,138,70,64.0],[122,138,71,64.0],[122,138,72,64.0],[122,138,73,64.0],[122,138,74,64.0],[122,138,75,64.0],[122,138,76,64.0],[122,138,77,64.0],[122,138,78,64.0],[122,138,79,64.0],[122,139,64,64.0],[122,139,65,64.0],[122,139,66,64.0],[122,139,67,64.0],[122,139,68,64.0],[122,139,69,64.0],[122,139,70,64.0],[122,139,71,64.0],[122,139,72,64.0],[122,139,73,64.0],[122,139,74,64.0],[122,139,75,64.0],[122,139,76,64.0],[122,139,77,64.0],[122,139,78,64.0],[122,139,79,64.0],[122,140,64,64.0],[122,140,65,64.0],[122,140,66,64.0],[122,140,67,64.0],[122,140,68,64.0],[122,140,69,64.0],[122,140,70,64.0],[122,140,71,64.0],[122,140,72,64.0],[122,140,73,64.0],[122,140,74,64.0],[122,140,75,64.0],[122,140,76,64.0],[122,140,77,64.0],[122,140,78,64.0],[122,140,79,64.0],[122,141,64,64.0],[122,141,65,64.0],[122,141,66,64.0],[122,141,67,64.0],[122,141,68,64.0],[122,141,69,64.0],[122,141,70,64.0],[122,141,71,64.0],[122,141,72,64.0],[122,141,73,64.0],[122,141,74,64.0],[122,141,75,64.0],[122,141,76,64.0],[122,141,77,64.0],[122,141,78,64.0],[122,141,79,64.0],[122,142,64,64.0],[122,142,65,64.0],[122,142,66,64.0],[122,142,67,64.0],[122,142,68,64.0],[122,142,69,64.0],[122,142,70,64.0],[122,142,71,64.0],[122,142,72,64.0],[122,142,73,64.0],[122,142,74,64.0],[122,142,75,64.0],[122,142,76,64.0],[122,142,77,64.0],[122,142,78,64.0],[122,142,79,64.0],[122,143,64,64.0],[122,143,65,64.0],[122,143,66,64.0],[122,143,67,64.0],[122,143,68,64.0],[122,143,69,64.0],[122,143,70,64.0],[122,143,71,64.0],[122,143,72,64.0],[122,143,73,64.0],[122,143,74,64.0],[122,143,75,64.0],[122,143,76,64.0],[122,143,77,64.0],[122,143,78,64.0],[122,143,79,64.0],[122,144,64,64.0],[122,144,65,64.0],[122,144,66,64.0],[122,144,67,64.0],[122,144,68,64.0],[122,144,69,64.0],[122,144,70,64.0],[122,144,71,64.0],[122,144,72,64.0],[122,144,73,64.0],[122,144,74,64.0],[122,144,75,64.0],[122,144,76,64.0],[122,144,77,64.0],[122,144,78,64.0],[122,144,79,64.0],[122,145,64,64.0],[122,145,65,64.0],[122,145,66,64.0],[122,145,67,64.0],[122,145,68,64.0],[122,145,69,64.0],[122,145,70,64.0],[122,145,71,64.0],[122,145,72,64.0],[122,145,73,64.0],[122,145,74,64.0],[122,145,75,64.0],[122,145,76,64.0],[122,145,77,64.0],[122,145,78,64.0],[122,145,79,64.0],[122,146,64,64.0],[122,146,65,64.0],[122,146,66,64.0],[122,146,67,64.0],[122,146,68,64.0],[122,146,69,64.0],[122,146,70,64.0],[122,146,71,64.0],[122,146,72,64.0],[122,146,73,64.0],[122,146,74,64.0],[122,146,75,64.0],[122,146,76,64.0],[122,146,77,64.0],[122,146,78,64.0],[122,146,79,64.0],[122,147,64,64.0],[122,147,65,64.0],[122,147,66,64.0],[122,147,67,64.0],[122,147,68,64.0],[122,147,69,64.0],[122,147,70,64.0],[122,147,71,64.0],[122,147,72,64.0],[122,147,73,64.0],[122,147,74,64.0],[122,147,75,64.0],[122,147,76,64.0],[122,147,77,64.0],[122,147,78,64.0],[122,147,79,64.0],[122,148,64,64.0],[122,148,65,64.0],[122,148,66,64.0],[122,148,67,64.0],[122,148,68,64.0],[122,148,69,64.0],[122,148,70,64.0],[122,148,71,64.0],[122,148,72,64.0],[122,148,73,64.0],[122,148,74,64.0],[122,148,75,64.0],[122,148,76,64.0],[122,148,77,64.0],[122,148,78,64.0],[122,148,79,64.0],[122,149,64,64.0],[122,149,65,64.0],[122,149,66,64.0],[122,149,67,64.0],[122,149,68,64.0],[122,149,69,64.0],[122,149,70,64.0],[122,149,71,64.0],[122,149,72,64.0],[122,149,73,64.0],[122,149,74,64.0],[122,149,75,64.0],[122,149,76,64.0],[122,149,77,64.0],[122,149,78,64.0],[122,149,79,64.0],[122,150,64,64.0],[122,150,65,64.0],[122,150,66,64.0],[122,150,67,64.0],[122,150,68,64.0],[122,150,69,64.0],[122,150,70,64.0],[122,150,71,64.0],[122,150,72,64.0],[122,150,73,64.0],[122,150,74,64.0],[122,150,75,64.0],[122,150,76,64.0],[122,150,77,64.0],[122,150,78,64.0],[122,150,79,64.0],[122,151,64,64.0],[122,151,65,64.0],[122,151,66,64.0],[122,151,67,64.0],[122,151,68,64.0],[122,151,69,64.0],[122,151,70,64.0],[122,151,71,64.0],[122,151,72,64.0],[122,151,73,64.0],[122,151,74,64.0],[122,151,75,64.0],[122,151,76,64.0],[122,151,77,64.0],[122,151,78,64.0],[122,151,79,64.0],[122,152,64,64.0],[122,152,65,64.0],[122,152,66,64.0],[122,152,67,64.0],[122,152,68,64.0],[122,152,69,64.0],[122,152,70,64.0],[122,152,71,64.0],[122,152,72,64.0],[122,152,73,64.0],[122,152,74,64.0],[122,152,75,64.0],[122,152,76,64.0],[122,152,77,64.0],[122,152,78,64.0],[122,152,79,64.0],[122,153,64,64.0],[122,153,65,64.0],[122,153,66,64.0],[122,153,67,64.0],[122,153,68,64.0],[122,153,69,64.0],[122,153,70,64.0],[122,153,71,64.0],[122,153,72,64.0],[122,153,73,64.0],[122,153,74,64.0],[122,153,75,64.0],[122,153,76,64.0],[122,153,77,64.0],[122,153,78,64.0],[122,153,79,64.0],[122,154,64,64.0],[122,154,65,64.0],[122,154,66,64.0],[122,154,67,64.0],[122,154,68,64.0],[122,154,69,64.0],[122,154,70,64.0],[122,154,71,64.0],[122,154,72,64.0],[122,154,73,64.0],[122,154,74,64.0],[122,154,75,64.0],[122,154,76,64.0],[122,154,77,64.0],[122,154,78,64.0],[122,154,79,64.0],[122,155,64,64.0],[122,155,65,64.0],[122,155,66,64.0],[122,155,67,64.0],[122,155,68,64.0],[122,155,69,64.0],[122,155,70,64.0],[122,155,71,64.0],[122,155,72,64.0],[122,155,73,64.0],[122,155,74,64.0],[122,155,75,64.0],[122,155,76,64.0],[122,155,77,64.0],[122,155,78,64.0],[122,155,79,64.0],[122,156,64,64.0],[122,156,65,64.0],[122,156,66,64.0],[122,156,67,64.0],[122,156,68,64.0],[122,156,69,64.0],[122,156,70,64.0],[122,156,71,64.0],[122,156,72,64.0],[122,156,73,64.0],[122,156,74,64.0],[122,156,75,64.0],[122,156,76,64.0],[122,156,77,64.0],[122,156,78,64.0],[122,156,79,64.0],[122,157,64,64.0],[122,157,65,64.0],[122,157,66,64.0],[122,157,67,64.0],[122,157,68,64.0],[122,157,69,64.0],[122,157,70,64.0],[122,157,71,64.0],[122,157,72,64.0],[122,157,73,64.0],[122,157,74,64.0],[122,157,75,64.0],[122,157,76,64.0],[122,157,77,64.0],[122,157,78,64.0],[122,157,79,64.0],[122,158,64,64.0],[122,158,65,64.0],[122,158,66,64.0],[122,158,67,64.0],[122,158,68,64.0],[122,158,69,64.0],[122,158,70,64.0],[122,158,71,64.0],[122,158,72,64.0],[122,158,73,64.0],[122,158,74,64.0],[122,158,75,64.0],[122,158,76,64.0],[122,158,77,64.0],[122,158,78,64.0],[122,158,79,64.0],[122,159,64,64.0],[122,159,65,64.0],[122,159,66,64.0],[122,159,67,64.0],[122,159,68,64.0],[122,159,69,64.0],[122,159,70,64.0],[122,159,71,64.0],[122,159,72,64.0],[122,159,73,64.0],[122,159,74,64.0],[122,159,75,64.0],[122,159,76,64.0],[122,159,77,64.0],[122,159,78,64.0],[122,159,79,64.0],[122,160,64,64.0],[122,160,65,64.0],[122,160,66,64.0],[122,160,67,64.0],[122,160,68,64.0],[122,160,69,64.0],[122,160,70,64.0],[122,160,71,64.0],[122,160,72,64.0],[122,160,73,64.0],[122,160,74,64.0],[122,160,75,64.0],[122,160,76,64.0],[122,160,77,64.0],[122,160,78,64.0],[122,160,79,64.0],[122,161,64,64.0],[122,161,65,64.0],[122,161,66,64.0],[122,161,67,64.0],[122,161,68,64.0],[122,161,69,64.0],[122,161,70,64.0],[122,161,71,64.0],[122,161,72,64.0],[122,161,73,64.0],[122,161,74,64.0],[122,161,75,64.0],[122,161,76,64.0],[122,161,77,64.0],[122,161,78,64.0],[122,161,79,64.0],[122,162,64,64.0],[122,162,65,64.0],[122,162,66,64.0],[122,162,67,64.0],[122,162,68,64.0],[122,162,69,64.0],[122,162,70,64.0],[122,162,71,64.0],[122,162,72,64.0],[122,162,73,64.0],[122,162,74,64.0],[122,162,75,64.0],[122,162,76,64.0],[122,162,77,64.0],[122,162,78,64.0],[122,162,79,64.0],[122,163,64,64.0],[122,163,65,64.0],[122,163,66,64.0],[122,163,67,64.0],[122,163,68,64.0],[122,163,69,64.0],[122,163,70,64.0],[122,163,71,64.0],[122,163,72,64.0],[122,163,73,64.0],[122,163,74,64.0],[122,163,75,64.0],[122,163,76,64.0],[122,163,77,64.0],[122,163,78,64.0],[122,163,79,64.0],[122,164,64,64.0],[122,164,65,64.0],[122,164,66,64.0],[122,164,67,64.0],[122,164,68,64.0],[122,164,69,64.0],[122,164,70,64.0],[122,164,71,64.0],[122,164,72,64.0],[122,164,73,64.0],[122,164,74,64.0],[122,164,75,64.0],[122,164,76,64.0],[122,164,77,64.0],[122,164,78,64.0],[122,164,79,0.5883307785932925],[122,165,64,64.0],[122,165,65,64.0],[122,165,66,64.0],[122,165,67,64.0],[122,165,68,64.0],[122,165,69,64.0],[122,165,70,64.0],[122,165,71,64.0],[122,165,72,64.0],[122,165,73,64.0],[122,165,74,64.0],[122,165,75,64.0],[122,165,76,64.0],[122,165,77,0.510157641300913],[122,165,78,0.5542930123341108],[122,165,79,0.5945166890080628],[122,166,64,64.0],[122,166,65,64.0],[122,166,66,64.0],[122,166,67,64.0],[122,166,68,64.0],[122,166,69,64.0],[122,166,70,64.0],[122,166,71,64.0],[122,166,72,64.0],[122,166,73,64.0],[122,166,74,64.0],[122,166,75,64.0],[122,166,76,0.47046596495440385],[122,166,77,0.5177669652958585],[122,166,78,0.5618167320318063],[122,166,79,0.6019241180474946],[122,167,64,64.0],[122,167,65,64.0],[122,167,66,64.0],[122,167,67,64.0],[122,167,68,64.0],[122,167,69,64.0],[122,167,70,64.0],[122,167,71,64.0],[122,167,72,64.0],[122,167,73,64.0],[122,167,74,64.0],[122,167,75,0.4301521779148543],[122,167,76,0.4797261375340372],[122,167,77,0.5268380538289372],[122,167,78,0.5706714923443651],[122,167,79,0.6105343118412905],[122,168,64,64.0],[122,168,65,64.0],[122,168,66,64.0],[122,168,67,64.0],[122,168,68,64.0],[122,168,69,64.0],[122,168,70,64.0],[122,168,71,64.0],[122,168,72,64.0],[122,168,73,64.0],[122,168,74,0.3903688060572812],[122,168,75,0.44122036162674916],[122,168,76,0.49050967822553926],[122,168,77,0.5373116787251545],[122,168,78,0.5808095618900423],[122,168,79,0.6203111152678036],[122,169,64,64.0],[122,169,65,64.0],[122,169,66,64.0],[122,169,67,64.0],[122,169,68,64.0],[122,169,69,64.0],[122,169,70,64.0],[122,169,71,64.0],[122,169,72,64.0],[122,169,73,0.3517268736362639],[122,169,74,0.4033470148784153],[122,169,75,0.4538292127771266],[122,169,76,0.5027246752657781],[122,169,77,0.5491084179066217],[122,169,78,0.592164118861157],[122,169,79,0.6312003291035718],[122,170,64,64.0],[122,170,65,64.0],[122,170,66,64.0],[122,170,67,64.0],[122,170,68,64.0],[122,170,69,64.0],[122,170,70,64.0],[122,170,71,64.0],[122,170,72,0.3141966943652138],[122,170,73,0.3666595424917441],[122,170,74,0.41783560369987904],[122,170,75,0.4678522344993737],[122,170,76,0.5162579121283103],[122,170,77,0.5621284874159885],[122,170,78,0.6046488667012778],[122,170,79,0.643129101652929],[122,171,64,64.0],[122,171,65,64.0],[122,171,66,64.0],[122,171,67,64.0],[122,171,68,64.0],[122,171,69,64.0],[122,171,70,64.0],[122,171,71,0.27776397557355526],[122,171,72,0.33107010404912995],[122,171,73,0.383022645343744],[122,171,74,0.4336723171412207],[122,171,75,0.48314102207534637],[122,171,76,0.5309750342855706],[122,171,77,0.5762516785987928],[122,171,78,0.6181577323522918],[122,171,79,0.6560053799334656],[122,172,64,64.0],[122,172,65,64.0],[122,172,66,64.0],[122,172,67,64.0],[122,172,68,64.0],[122,172,69,64.0],[122,172,70,0.24244454290360024],[122,172,71,0.296502795346398],[122,172,72,0.34924327183899234],[122,172,73,0.4006177031365906],[122,172,74,0.45067291176593727],[122,172,75,0.49952577206711024],[122,172,76,0.5467208181066244],[122,172,77,0.5913373756352222],[122,172,78,0.6325646225163003],[122,172,79,0.6697173961142685],[122,173,64,64.0],[122,173,65,64.0],[122,173,66,64.0],[122,173,67,64.0],[122,173,68,64.0],[122,173,69,0.2082603081482043],[122,173,70,0.26290914930766646],[122,173,71,0.3163596984479246],[122,173,72,0.36848172791271566],[122,173,73,0.4192247226360022],[122,173,74,0.46863203669250025],[122,173,75,0.5168159145352337],[122,173,76,0.5633195417162752],[122,173,77,0.6072246532488299],[122,173,78,0.6477232377616111],[122,173,79,0.6841331890379307],[122,174,64,64.0],[122,174,65,64.0],[122,174,66,64.0],[122,174,67,64.0],[122,174,68,0.17811362088617835],[122,174,69,0.23024545733019228],[122,174,70,0.2842598122115348],[122,174,71,0.3370651945693853],[122,174,72,0.38853054175932805],[122,174,73,0.4386034749321652],[122,174,74,0.4873242576590807],[122,174,75,0.5348008683434585],[122,174,76,0.5805754578153659],[122,174,77,0.6237324545920402],[122,174,78,0.6634669444726696],[122,174,79,0.6991001608261704],[122,175,64,64.0],[122,175,65,64.0],[122,175,66,64.0],[122,175,67,0.22537421705796654],[122,175,68,0.21314395154874233],[122,175,69,0.25283595840323986],[122,175,70,0.30619376497378226],[122,175,71,0.35833098744136294],[122,175,72,0.4091160224166788],[122,175,73,0.4584949369188661],[122,175,74,0.506505224541682],[122,175,75,0.5532509195494715],[122,175,76,0.5982733684619914],[122,175,77,0.6406598493081749],[122,175,78,0.6796087046436626],[122,175,79,0.7144446685688045],[122,176,64,64.0],[122,176,65,0.29128298731248725],[122,176,66,0.27512546259808174],[122,176,67,0.25948463662996396],[122,176,68,0.24424557230128408],[122,176,69,0.2756983140557618],[122,176,70,0.32839170777656407],[122,176,71,0.3798521177818855],[122,176,72,0.4299476002832856],[122,176,73,0.4786228957492072],[122,176,74,0.5259129823262029],[122,176,75,0.5719182228822759],[122,176,76,0.6161793018141224],[122,176,77,0.657786371770485],[122,176,78,0.6959410635162715],[122,176,79,0.7299716510965363],[122,177,64,0.34635228294196435],[122,177,65,0.32708238749807156],[122,177,66,0.30821684470443655],[122,177,67,0.2897398568532249],[122,177,68,0.27156219314824076],[122,177,69,0.29860559620457455],[122,177,70,0.35063551405371685],[122,177,71,0.4014189721433057],[122,177,72,0.45082381669863386],[122,177,73,0.49879363584326075],[122,177,74,0.5453611137441137],[122,177,75,0.5906232022124636],[122,177,76,0.6341200191653562],[122,177,77,0.6749445319169667],[122,177,78,0.7123016108574857],[122,177,79,0.7455230370747823],[122,178,64,0.38092538886663885],[122,178,65,0.35915735739937776],[122,178,66,0.33765224810907546],[122,178,67,0.3164177868312332],[122,178,68,0.295389398640732],[122,178,69,0.3218804309607378],[122,178,70,0.3732325229830187],[122,178,71,0.4233216992035056],[122,178,72,0.47201581357750055],[122,178,73,0.519257597582359],[122,178,74,0.565077819270155],[122,178,75,0.6095704685615302],[122,178,76,0.6522753583868071],[122,178,77,0.6922883463368686],[122,178,78,0.7288176381418944],[122,178,79,0.7611986423447038],[122,179,64,0.4121142401463117],[122,179,65,0.38792356187032007],[122,179,66,0.363864852018828],[122,179,67,0.3399681741543252],[122,179,68,0.31619235708066634],[122,179,69,0.3458963345871418],[122,179,70,0.39653842624412483],[122,179,71,0.4458961980883433],[122,179,72,0.49383784359187],[122,179,73,0.5403056816824111],[122,179,74,0.5853291250197753],[122,179,75,0.6289998652678639],[122,179,76,0.6708578649620845],[122,179,77,0.7100021114919376],[122,179,78,0.7456444126626853],[122,179,79,0.7771241029024355],[122,180,64,0.44022156139413426],[122,180,65,0.4137009416954309],[122,180,66,0.3871912912537831],[122,180,67,0.36074363273852766],[122,180,68,0.3343387599511749],[122,180,69,0.3708878536518903],[122,180,70,0.42077559668186854],[122,180,71,0.469351196028138],[122,180,72,0.51648360296902],[122,180,73,0.5621152825621651],[122,180,74,0.6062749960116883],[122,180,75,0.6490529699868941],[122,180,76,0.6899899183267872],[122,180,77,0.7281883150165273],[122,180,78,0.7628639581211786],[122,180,79,0.7933605323564445],[122,181,64,0.4647544021353164],[122,181,65,0.43601306778669463],[122,181,66,0.4071729901596266],[122,181,67,0.3783046046199493],[122,181,68,0.3494090437368308],[122,181,69,0.39696726869903287],[122,181,70,0.4460491500335691],[122,181,71,0.49378362107595136],[122,181,72,0.5400408705583161],[122,181,73,0.5847641519130397],[122,181,74,0.6279823854874275],[122,181,75,0.6697852943520322],[122,181,76,0.7097150506565699],[122,181,77,0.7468780474971768],[122,181,78,0.780494538689261],[122,181,79,0.8099130632566821],[122,182,64,0.4851877281308476],[122,182,65,0.45434908584063294],[122,182,66,0.4233146798745431],[122,182,67,0.39217268552700557],[122,182,68,0.3747164764197908],[122,182,69,0.424140620539997],[122,182,70,0.4723623520510209],[122,182,71,0.5191933452110336],[122,182,72,0.5645055443344393],[122,182,73,0.6082436886332137],[122,182,74,0.6504377411889561],[122,182,75,0.6911779726188676],[122,182,76,0.7300087878415346],[122,182,77,0.7660409705565987],[122,182,78,0.7984997341416182],[122,182,79,0.8267390146359154],[122,183,64,0.501177248336703],[122,183,65,0.46837603937362476],[122,183,66,0.4352957063906553],[122,183,67,0.40204041274485747],[122,183,68,0.4037584015235407],[122,183,69,0.4523229869174338],[122,183,70,0.4996313018452916],[122,183,71,0.545497231940303],[122,183,72,0.5897950129227403],[122,183,73,0.6324715963499439],[122,183,74,0.673558913597563],[122,183,75,0.7131488881899899],[122,183,76,0.7507889655260702],[122,183,77,0.7855947981624866],[122,183,78,0.8167970670503575],[122,183,79,0.8437556508301357],[122,184,64,0.5125642714076837],[122,184,65,0.4779435688285491],[122,184,66,0.4429745455404123],[122,184,67,0.40777557289849165],[122,184,68,0.43368839859646857],[122,184,69,0.4813530095410823],[122,184,70,0.5276988914539464],[122,184,71,0.5725424883974967],[122,184,72,0.6157608621463614],[122,184,73,0.6573039085297764],[122,184,74,0.6972064661337054],[122,184,75,0.7355632380201218],[122,184,76,0.7719255202138476],[122,184,77,0.8054142911608563],[122,184,78,0.835266182041757],[122,184,79,0.8608475315777973],[122,185,64,0.5193811038288422],[122,185,65,0.48308917148324876],[122,185,66,0.4463938974914786],[122,185,67,0.41638521982897214],[122,185,68,0.4642758806412699],[122,185,69,0.5110066714963728],[122,185,70,0.5563480416314002],[122,185,71,0.6001193219406697],[122,185,72,0.642200916595784],[122,185,73,0.6825463811772817],[122,185,74,0.72119438731843],[122,185,75,0.7582435349021557],[122,185,76,0.7932497554385378],[122,185,77,0.8253397650344765],[122,185,78,0.8537565771156583],[122,185,79,0.8778734533983736],[122,186,64,0.5218569896735854],[122,186,65,0.48404402216006714],[122,186,66,0.44578636074954126],[122,186,67,0.4482265183754567],[122,186,68,0.49523871839081507],[122,186,69,0.5410103250254429],[122,186,70,0.5853142138620794],[122,186,71,0.6279729012477346],[122,186,72,0.668870616220508],[122,186,73,0.7079652531220288],[122,186,74,0.7453002048960772],[122,186,75,0.7809790476338212],[122,186,76,0.8145630829999869],[122,186,77,0.8451851108861185],[122,186,78,0.8720948870272636],[122,186,79,0.8946729822500059],[122,187,64,0.5204245919890027],[122,187,65,0.481239354736859],[122,187,66,0.44158068566927916],[122,187,67,0.4801308138305971],[122,187,68,0.5262559745194788],[122,187,69,0.5710529696801298],[122,187,70,0.6142971985959674],[122,187,71,0.6558146219096281],[122,187,72,0.6954937279424567],[122,187,73,0.7332973738934093],[122,187,74,0.7692745019179051],[122,187,75,0.8035346790646314],[122,187,76,0.8356452392655173],[122,187,77,0.8647453296463227],[122,187,78,0.890091718731031],[122,187,79,0.9110725774659546],[122,188,64,0.5157031079098409],[122,188,65,0.47528998792159277],[122,188,66,0.4653411646628294],[122,188,67,0.5117404469251108],[122,188,68,0.5569798649442059],[122,188,69,0.6007977808477485],[122,188,70,0.6429721797073265],[122,188,71,0.683332676521873],[122,188,72,0.7217723922918542],[122,188,73,0.758259699184034],[122,188,74,0.7928498347873247],[122,188,75,0.8256592820237715],[122,188,76,0.8562619765369841],[122,188,77,0.8838035795062739],[122,188,78,0.9075480388872432],[122,188,79,0.9268913069704007],[122,189,64,0.5077810541298508],[122,189,65,0.46629182314167145],[122,189,66,0.49705731761820204],[122,189,67,0.54268165776738],[122,189,68,0.5870469472148969],[122,189,69,0.6298928886492611],[122,189,70,0.671000075176203],[122,189,71,0.7102019292741554],[122,189,72,0.7473965050652078],[122,189,73,0.7825581539013378],[122,189,74,0.8157490532663971],[122,189,75,0.8470934131285887],[122,189,76,0.8761722294832653],[122,189,77,0.9021377365754818],[122,189,78,0.924261113430953],[122,189,79,0.9419461537733035],[122,190,64,0.4960773064920273],[122,190,65,0.48175460555651894],[122,190,66,0.5277009534130163],[122,190,67,0.5725753608745554],[122,190,68,0.6160885359936967],[122,190,69,0.6579814072094217],[122,190,70,0.6980371539923236],[122,190,71,0.7360930950375365],[122,190,72,0.7720524340050247],[122,190,73,0.8058958628070493],[122,190,74,0.8376930224432635],[122,190,75,0.8675765244733832],[122,190,76,0.8951347566378957],[122,190,77,0.9195264687639906],[122,190,78,0.9400299992030552],[122,190,79,0.956056913744102],[122,191,64,0.48014746056048324],[122,191,65,0.5115557511292357],[122,191,66,0.5568890414809701],[122,191,67,0.6010471266840812],[122,191,68,0.6437403456240224],[122,191,69,0.6847107142997175],[122,191,70,0.7237439292821686],[122,191,71,0.7606812229500614],[122,191,72,0.7954310705020036],[122,191,73,0.827980748745228],[122,191,74,0.8584077466611796],[122,191,75,0.8868535931991268],[122,191,76,0.9129142569624441],[122,191,77,0.93575482288969],[122,191,78,0.9546605876440126],[122,191,79,0.9690506846647332],[122,192,64,0.4937634142623055],[122,192,65,0.5394916755423652],[122,192,66,0.5842530693009492],[122,192,67,0.6277363695451981],[122,192,68,0.6696513597889012],[122,192,69,0.7097409813536852],[122,192,70,0.7477933276588209],[122,192,71,0.7836534845003718],[122,192,72,0.8172352163193172],[122,192,73,0.848532498458501],[122,192,74,0.8776308954088048],[122,192,75,0.9046811889437821],[122,192,76,0.9292869614753227],[122,192,77,0.9506193250104237],[122,192,78,0.9679702005499554],[122,192,79,0.9807659465617159],[122,193,64,0.5199104266258108],[122,193,65,0.5652118028279876],[122,193,66,0.6094477159176346],[122,193,67,0.6523047421900228],[122,193,68,0.6934919282582275],[122,193,69,0.7327529538542209],[122,193,70,0.769878134794219],[122,193,71,0.8047162661089718],[122,193,72,0.8371863053386502],[122,193,73,0.8672888959921865],[122,193,74,0.8951177311714447],[122,193,75,0.9208329791729379],[122,193,76,0.944045699945754],[122,193,77,0.963932593980648],[122,193,78,0.9797917378909281],[122,193,79,0.9910562333170896],[122,194,64,0.5434770031539081],[122,194,65,0.5883978886390585],[122,194,66,0.6321587140746282],[122,194,67,0.6744437366850466],[122,194,68,0.7149610907257545],[122,194,69,0.7534549820936842],[122,194,70,0.7897177172145864],[122,194,71,0.8236015662078848],[122,194,72,0.8550304603287058],[122,194,73,0.8840115236869699],[122,194,74,0.9106464392438861],[122,194,75,0.9351046723913632],[122,194,76,0.9570044426534767],[122,194,77,0.9755274682331803],[122,194,78,0.9899773776917791],[122,194,79,0.9997933955586635],[122,195,64,0.564183836546035],[122,195,65,0.6087713013178618],[122,195,66,0.6521099009596085],[122,195,67,0.6938814918625654],[122,195,68,0.7337931277353551],[122,195,69,0.7715893023063317],[122,195,70,0.8070640203185941],[122,195,71,0.8400726968182747],[122,195,72,0.870543884735762],[122,195,73,0.898490830759753],[122,195,74,0.9240228595044565],[122,195,75,0.947318399235133],[122,195,76,0.9680023172138468],[122,195,77,0.9852606457857136],[122,195,78,0.9984018279753918],[122,195,79,1.0068704548293013],[122,196,64,0.5817993879530008],[122,196,65,0.6260994137358659],[122,196,66,0.6690693925128459],[122,196,67,0.7103887400583047],[122,196,68,0.7497632695909653],[122,196,69,0.7869374973327234],[122,196,70,0.821706770236658],[122,196,71,0.8539292158848929],[122,196,72,0.883537514555972],[122,196,73,0.9105504934616531],[122,196,74,0.935084543153422],[122,196,75,0.9573264534971857],[122,196,76,0.9769070216725734],[122,196,77,0.9930157580838038],[122,196,78,1.0049650511759858],[122,196,79,1.0122039697359466],[122,197,64,0.5960506729725349],[122,197,65,0.6401024069177139],[122,197,66,0.6827526480129984],[122,197,67,0.7236784002757057],[122,197,68,0.7625841018170214],[122,197,69,0.7992140045193342],[122,197,70,0.833364369492728],[122,197,71,0.864895478311273],[122,197,72,0.8937434600287786],[122,197,73,0.9199319339739299],[122,197,74,0.9435834683250903],[122,197,75,0.9648922484302374],[122,197,76,0.9834941719385714],[122,197,77,0.9985815050883955],[122,197,78,1.0094697946692635],[122,197,79,1.0156117429480653],[122,198,64,0.6064630898762824],[122,198,65,0.6502872207560503],[122,198,66,0.6926508703849172],[122,198,67,0.7332287979024648],[122,198,68,0.7717240045803127],[122,198,69,0.807880191010452],[122,198,70,0.8414940230752428],[122,198,71,0.8724272066996961],[122,198,72,0.9006183713857248],[122,198,73,0.9260947625282759],[122,198,74,0.948983742513626],[122,198,75,0.9694853544129224],[122,198,76,0.9872399533423895],[122,198,77,1.0014426392527485],[122,198,78,1.011412002480976],[122,198,79,1.0166040644178362],[122,199,64,0.612635785791962],[122,199,65,0.6562350130003507],[122,199,66,0.6983296800139853],[122,199,67,0.7385926043451642],[122,199,68,0.7767253649369144],[122,199,69,0.8124708324893309],[122,199,70,0.8456255006318616],[122,199,71,0.8760516179421454],[122,199,72,0.9036891208110902],[122,199,73,0.928567367154115],[122,199,74,0.9508166709688178],[122,199,75,0.9706408639403075],[122,199,76,0.9876843199418681],[122,199,77,1.0011458481154862],[122,199,78,1.01034763928404],[122,199,79,1.0147492514523462],[122,200,64,0.6142948743252459],[122,200,65,0.6576566401008739],[122,200,66,0.6994866924138078],[122,200,67,0.7394563301775998],[122,200,68,0.7772657943774606],[122,200,69,0.812656860382643],[122,200,70,0.8454252219550492],[122,200,71,0.8754326669546657],[122,200,72,0.9026190447415128],[122,200,73,0.9270140252740409],[122,200,74,0.9487486499042276],[122,200,75,0.9680280258512763],[122,200,76,0.9845002709348316],[122,200,77,0.9973694347218269],[122,200,78,1.0059624174403043],[122,200,79,1.009742967754731],[122,201,64,0.6112864465668638],[122,201,65,0.6543854300079527],[122,201,66,0.695944062472955],[122,201,67,0.7356326509144736],[122,201,68,0.7731502463066029],[122,201,69,0.8082372809396831],[122,201,70,0.840687986823791],[122,201,71,0.8703625952015837],[122,201,72,0.8971993171701652],[122,201,73,0.9212261054119295],[122,201,74,0.9425721970346114],[122,201,75,0.9614411016683558],[122,201,76,0.9774845349981864],[122,201,77,0.9899138441104152],[122,201,78,0.9980621902965562],[122,201,79,1.0013985170877449],[122,202,64,0.6035691370726242],[122,202,65,0.6463695252916687],[122,202,66,0.687640616679404],[122,202,67,0.7270523407552156],[122,202,68,0.764302763809392],[122,202,69,0.7991307491960525],[122,202,70,0.831328386534833],[122,202,71,0.8607531898219296],[122,202,72,0.8873400644501903],[122,202,73,0.911113043138188],[122,202,74,0.9321967907685191],[122,202,75,0.9507900665042939],[122,202,76,0.9665481361956989],[122,202,77,0.9786921088984891],[122,202,78,0.9865633021001808],[122,202,79,0.9896371305674264],[122,203,64,0.5912062448165908],[122,203,65,0.6336637965821377],[122,203,66,0.6746235733229026],[122,203,67,0.7137558142981394],[122,203,68,0.7507578577047654],[122,203,69,0.7853667978220112],[122,203,70,0.8173718971236277],[122,203,71,0.846626753358242],[122,203,72,0.8730612215975493],[122,203,73,0.8966930912522852],[122,203,74,0.9176395180562136],[122,203,75,0.9360911545355044],[122,203,76,0.9517068414545722],[122,203,77,0.9637202139654873],[122,203,78,0.9714828945345697],[122,203,79,0.9744782475869347],[122,204,64,0.5743574091171998],[122,204,65,0.6164213263301951],[122,204,66,0.657039850675055],[122,204,67,0.6958842762247448],[122,204,68,0.7326515148859724],[122,204,69,0.7670767208553205],[122,204,70,0.7989456542748242],[122,204,71,0.8281067840875894],[122,204,72,0.8544831300931403],[122,204,73,0.8780838442024322],[122,204,74,0.8990155308927781],[122,204,75,0.9174572490422757],[122,204,76,0.933071489610712],[122,204,77,0.9451073802350005],[122,204,78,0.9529291698741909],[122,204,79,0.9560297903704852],[122,205,64,0.5532698405364187],[122,205,65,0.594884462888587],[122,205,66,0.6351269631472243],[122,205,67,0.6736704789542538],[122,205,68,0.7102118369480175],[122,205,69,0.7444841123186698],[122,205,70,0.7762689099223727],[122,205,71,0.805408366954889],[122,205,72,0.8318168771842555],[122,205,73,0.8554925367424738],[122,205,74,0.8765283114764737],[122,205,75,0.8950881170157845],[122,205,76,0.9108382020227369],[122,205,77,0.923046267555111],[122,205,78,0.931091610759363],[122,205,79,0.93447843215742],[122,206,64,0.528269106751948],[122,206,65,0.56937544491366],[122,206,66,0.6092035054262487],[122,206,67,0.6474290882683854],[122,206,68,0.6837493091021221],[122,206,69,0.717895059721675],[122,206,70,0.749643170539255],[122,206,71,0.7788282751085236],[122,206,72,0.8053543766853801],[122,206,73,0.8292061168259942],[122,206,74,0.8504597460223541],[122,206,75,0.8692604883319313],[122,206,76,0.8852784747547301],[122,206,77,0.8978030966771268],[122,206,78,0.9062311565907376],[122,206,79,0.9100798590164181],[122,207,64,0.4997494734023381],[122,207,65,0.5402865960874278],[122,207,66,0.5796592245878547],[122,207,67,0.6175466569062448],[122,207,68,0.6536466993770881],[122,207,69,0.6876879924473478],[122,207,70,0.7194420171167226],[122,207,71,0.7487347820381463],[122,207,72,0.7754581912782286],[122,207,73,0.7995810927375422],[122,207,74,0.8211600072310374],[122,207,75,0.8403179794918992],[122,207,76,0.8567291523276591],[122,207,77,0.8697076903326313],[122,207,78,0.8786703365434145],[122,207,79,0.8831490252897747],[122,208,64,0.4681637999053153],[122,208,65,0.5080700901603079],[122,208,66,0.5469446801880491],[122,208,67,0.5844712061296115],[122,208,68,0.6203485881078435],[122,208,69,0.6543031850232923],[122,208,70,0.6861006068333075],[122,208,71,0.715557184314931],[122,208,72,0.7425510963112623],[122,208,73,0.7670331544612004],[122,208,74,0.7890372454128615],[122,208,75,0.808660861929651],[122,208,76,0.8255822830396463],[122,208,77,0.8391434334090313],[122,208,78,0.8487833592008651],[122,208,79,0.8540504026679135],[122,209,64,0.43401299024898116],[122,209,65,0.47322728631418837],[122,209,66,0.5115604923321633],[122,209,67,0.5487014152582997],[122,209,68,0.584350527710843],[122,209,69,0.6182319152773257],[122,209,70,0.6501048564133012],[122,209,71,0.679775034933971],[122,209,72,0.7071053850984048],[122,209,73,0.7320265692862374],[122,209,74,0.7545470882671602],[122,209,75,0.7747356748861152],[122,209,76,0.7922748558548737],[122,209,77,0.8065371522233888],[122,209,78,0.8169861588084572],[122,209,79,0.8231882228939388],[122,210,64,0.3978349987559543],[122,210,65,0.43629763484590217],[122,210,66,0.4740461777216154],[122,210,67,0.5107754191756636],[122,210,68,0.5461878327463997],[122,210,69,0.5800052773775923],[122,210,70,0.6119803071747708],[122,210,71,0.6419070872588928],[122,210,72,0.6696319157170227],[122,210,73,0.6950633516498994],[122,210,74,0.7181819493167264],[122,210,75,0.7390246828501259],[122,210,76,0.7572784188611698],[122,210,77,0.7723489128945896],[122,210,78,0.7837263981466401],[122,210,79,0.7909967140982817],[122,211,64,0.3601933908208451],[122,211,65,0.39784715317148844],[122,211,66,0.43496857367877834],[122,211,67,0.4712592138046178],[122,211,68,0.5064240002683145],[122,211,69,0.540182649757522],[122,211,70,0.5722806717674593],[122,211,71,0.6024999495690242],[122,211,72,0.6306688993054916],[122,211,73,0.6566722072176506],[122,211,74,0.6804601449977503],[122,211,75,0.7020351775663876],[122,211,76,0.7210885792965412],[122,211,77,0.7370617388140948],[122,211,78,0.7494734280240082],[122,211,79,0.7579303307636469],[122,212,64,0.32166545862044593],[122,212,65,0.35845647215063214],[122,212,66,0.39490985014933816],[122,212,67,0.43073466955357564],[122,212,68,0.46563876046020486],[122,212,69,0.49933981792505727],[122,212,70,0.531576062599999],[122,212,71,0.562116450208559],[122,212,72,0.590770429859811],[122,212,73,0.6173972512003482],[122,212,74,0.6419148204047435],[122,212,75,0.6642886246099975],[122,212,76,0.6842143851442041],[122,212,77,0.7011712472148454],[122,212,78,0.7147082033898489],[122,212,79,0.724453977319886],[122,213,64,0.30085682348470494],[122,213,65,0.3187084527315804],[122,213,66,0.3544551096824509],[122,213,67,0.3897871527326086],[122,213,68,0.42441575755884736],[122,213,69,0.45805675215645525],[122,213,70,0.4904409019567509],[122,213,71,0.5213237133380253],[122,213,72,0.5504947555295755],[122,213,73,0.5777865009086511],[122,213,74,0.6030826836907363],[122,213,75,0.6263096545278101],[122,213,76,0.647167588296389],[122,213,77,0.6651752048386018],[122,213,78,0.6799131560664431],[122,213,79,0.691033225369057],[122,214,64,0.3241982300707177],[122,214,65,0.3378931263522934],[122,214,66,0.35071413495503445],[122,214,67,0.3627267446602379],[122,214,68,0.38332986106481765],[122,214,69,0.41690504007493434],[122,214,70,0.44944151380451686],[122,214,71,0.4806809452882942],[122,214,72,0.5103922914135097],[122,214,73,0.5383801425448497],[122,214,74,0.5644925491229241],[122,214,75,0.5886148985467919],[122,214,76,0.6104517892870513],[122,214,77,0.6295630027018136],[122,214,78,0.6455620241011889],[122,214,79,0.6581245245407259],[122,215,64,0.3422278771996976],[122,215,65,0.35442642092216653],[122,215,66,0.3657303563811537],[122,215,67,0.376216023439065],[122,215,68,0.3859955003472077],[122,215,69,0.39522076882298846],[122,215,70,0.40912339728856695],[122,215,71,0.44072693151658787],[122,215,72,0.47099337385406537],[122,215,73,0.49969857223164926],[122,215,74,0.526653688793316],[122,215,75,0.5517016688489625],[122,215,76,0.5745514635931135],[122,215,77,0.5948050499596882],[122,215,78,0.612109637738261],[122,215,79,0.6261654069772474],[122,216,64,0.35479003856241975],[122,216,65,0.3656628555046506],[122,216,66,0.375629511807083],[122,216,67,0.3847758408978644],[122,216,68,0.39322079120840425],[122,216,69,0.4011199670720251],[122,216,70,0.40866948407280457],[122,216,71,0.4161101388445667],[122,216,72,0.43279575623136],[122,216,73,0.46223021127816877],[122,216,74,0.4900439929846486],[122,216,75,0.5160364834131597],[122,216,76,0.5399208695044648],[122,216,77,0.5613420868686692],[122,216,78,0.5799816620099945],[122,216,79,0.5955646854492093],[122,217,64,0.36180255413908186],[122,217,65,0.37153615144754915],[122,217,66,0.38036133408225425],[122,217,67,0.3883719642915219],[122,217,68,0.39569238489891967],[122,217,69,0.4024803694561362],[122,217,70,0.40893034985406884],[122,217,71,0.4152769213920879],[122,217,72,0.42179530796982995],[122,217,73,0.4284957402112367],[122,217,74,0.45509793919171554],[122,217,75,0.48204343542376593],[122,217,76,0.5069728375628315],[122,217,77,0.5295744168474119],[122,217,78,0.5495642959480581],[122,217,79,0.5666926451010741],[122,218,64,0.36325934255681697],[122,218,65,0.37205286686980765],[122,218,66,0.379944980675767],[122,218,67,0.38703602857989666],[122,218,68,0.3934542090940417],[122,218,69,0.39935797172971077],[122,218,70,0.40493865662430895],[122,218,71,0.41042337670055],[122,218,72,0.4160749038835914],[122,218,73,0.42189360176781754],[122,218,74,0.4274100660903139],[122,218,75,0.4500924072460766],[122,218,76,0.47606744156923936],[122,218,77,0.4998510576360211],[122,218,78,0.521193928414229],[122,218,79,0.5398712288268761],[122,219,64,0.3592323586203133],[122,219,65,0.36729387956411],[122,219,66,0.3744700245988255],[122,219,67,0.38086602153118043],[122,219,68,0.3866123527627516],[122,219,69,0.39186664070549065],[122,219,70,0.3968157430476972],[122,219,71,0.4016780578704193],[122,219,72,0.40670288007908684],[122,219,73,0.41187999278056014],[122,219,74,0.4167423300208756],[122,219,75,0.4208848146395444],[122,219,76,0.4475005511601825],[122,219,77,0.4724588115536452],[122,219,78,0.49514675055083546],[122,219,79,0.5153642162760197],[122,220,64,0.3498729960156347],[122,220,65,0.35741530042419756],[122,220,66,0.3640968606732199],[122,220,67,0.3700261685680978],[122,220,68,0.3753344189093122],[122,220,69,0.3801769276704023],[122,220,70,0.3847347297296202],[122,220,71,0.3892163561552456],[122,220,72,0.39385671301315567],[122,220,73,0.3986343858740475],[122,220,74,0.40308408267654305],[122,220,75,0.40680506788056686],[122,220,76,0.4214922659527107],[122,220,77,0.44761125485461445],[122,220,78,0.47162832485103967],[122,220,79,0.493367396489327],[122,221,64,0.3354129351872225],[122,221,65,0.3426488173968832],[122,221,66,0.3490565271457946],[122,221,67,0.3547462173568789],[122,221,68,0.35984826114033364],[122,221,69,0.36451424950942507],[122,221,70,0.36891814084788754],[122,221,71,0.3732575621289136],[122,221,72,0.37775226439701165],[122,221,73,0.38236914406138145],[122,221,74,0.38664416251061423],[122,221,75,0.3901801868396035],[122,221,76,0.3981752312580613],[122,221,77,0.4254376461827967],[122,221,78,0.45076311084867443],[122,221,79,0.4739987341650944],[122,222,64,0.31616443638832237],[122,222,65,0.3233014699589804],[122,222,66,0.3296499426491342],[122,222,67,0.3353201221392207],[122,222,68,0.34044010405752123],[122,222,69,0.34515643753769315],[122,222,70,0.34963487729075027],[122,222,71,0.35406126219146816],[122,222,72,0.35863960294855024],[122,222,73,0.36332477289405674],[122,222,74,0.3676535431503636],[122,222,75,0.37123171090506174],[122,222,76,0.37758283536403825],[122,222,77,0.4059717541243466],[122,222,78,0.43258394742778533],[122,222,79,0.4572885295552864],[122,223,64,0.29252007790428297],[122,223,65,0.2997548541186605],[122,223,66,0.30624655850801163],[122,223,67,0.3121041278068364],[122,223,68,0.3174520474757523],[122,223,69,0.3224306540405204],[122,223,70,0.32719654130146814],[122,223,71,0.3319230704133023],[122,223,72,0.3367981454657116],[122,223,73,0.34176447625792883],[122,223,74,0.3463593144075447],[122,223,75,0.35019082108120975],[122,223,76,0.35963728838627673],[122,223,77,0.3891406038589718],[122,223,78,0.4170214917519872],[122,223,79,0.44316957199195495],[122,224,64,0.2649519394495615],[122,224,65,0.27246375794198413],[122,224,66,0.27928242639228146],[122,224,67,0.2855142537191897],[122,224,68,0.29127895446700836],[122,224,69,0.29670967652180247],[122,224,70,0.30195311262980623],[122,224,71,0.3071696957180066],[122,224,72,0.3125311172211274],[122,224,73,0.3179680158154408],[122,224,74,0.32301795191417426],[122,224,75,0.32729103633871487],[122,224,76,0.34413758268806505],[122,224,77,0.3747531429094212],[122,224,78,0.4038936148133769],[122,224,79,0.4314672870436665],[122,225,64,0.2340102307372915],[122,225,65,0.24195422760354823],[122,225,66,0.24925768131522485],[122,225,67,0.25602317726351886],[122,225,68,0.26236472322933935],[122,225,69,0.2684075496600541],[122,225,70,0.27428797618979417],[122,225,71,0.2801533444033095],[122,225,72,0.2861593316775589],[122,225,73,0.2922248740936846],[122,225,74,0.29788787538324335],[122,225,75,0.30276018451807685],[122,225,76,0.33079779991509545],[122,225,77,0.36253530050797644],[122,225,78,0.3929374535362436],[122,225,79,0.42192904925211305],[122,226,64,0.20032136522288338],[122,226,65,0.208821063962647],[122,226,66,0.21673343997869388],[122,226,67,0.22415651715840157],[122,226,68,0.2311979427820487],[122,226,69,0.23797460497319228],[122,226,70,0.24461230122478944],[122,226,71,0.25124545800105563],[122,226,72,0.2580142895249999],[122,226,73,0.2648267212191058],[122,226,74,0.27122129549509344],[122,226,75,0.2854263217812658],[122,226,76,0.31947677184779527],[122,226,77,0.3523417882589392],[122,226,78,0.38400413361525043],[122,226,79,0.41440275065431464],[122,227,64,0.1644934029128451],[122,227,65,0.17363191905912678],[122,227,66,0.18223495427794098],[122,227,67,0.1903954446063753],[122,227,68,0.19821435413511795],[122,227,69,0.20580015049011077],[122,227,70,0.21326831851853983],[122,227,71,0.2207409121791586],[122,227,72,0.2283436033175051],[122,227,73,0.23597433558950093],[122,227,74,0.24317286518114864],[122,227,75,0.27500949498049],[122,227,76,0.3100742031037271],[122,227,77,0.34406152523963707],[122,227,78,0.376972543954089],[122,227,79,0.4087579053174649],[122,228,64,0.12671723135574503],[122,228,65,0.13652895385862368],[122,228,66,0.14585564575992527],[122,228,67,0.15478493865349696],[122,228,68,0.16341109037806728],[122,228,69,0.17183435498983723],[122,228,70,0.18016038062483294],[122,228,71,0.18849963525101504],[122,228,72,0.19696438657887877],[122,228,73,0.20544378874226144],[122,228,74,0.22929200599069627],[122,228,75,0.26640051704360135],[122,228,76,0.3024652335627756],[122,228,77,0.3375579807174791],[122,228,78,0.3716951026899305],[122,228,79,0.40483643949140313],[122,229,64,0.08708381796185721],[122,229,65,0.09755718272477208],[122,229,66,0.10759523769234376],[122,229,67,0.11728036755277063],[122,229,68,0.12670035352042064],[122,229,69,0.13594766966061902],[122,229,70,0.1451187996546866],[122,229,71,0.1543135740052252],[122,229,72,0.16363211836723396],[122,229,73,0.18279487727297855],[122,229,74,0.22146968163619013],[122,229,75,0.25946510970322983],[122,229,76,0.2965027740150682],[122,229,77,0.33267180095122206],[122,229,78,0.3680006991665611],[122,229,79,0.4024559719072445],[122,230,64,0.04573429998476075],[122,230,65,0.0568170013595672],[122,230,66,0.06751402231372308],[122,230,67,0.07790280073704044],[122,230,68,0.08806508982072146],[122,230,69,0.09808620774513077],[122,230,70,0.10805430343612887],[122,230,71,0.11805963838996272],[122,230,72,0.1365193767897587],[122,230,73,0.1757823984545377],[122,230,74,0.2152093132707757],[122,230,75,0.2540496532659471],[122,230,76,0.2920201972277333],[122,230,77,0.32922376565321915],[122,230,78,0.36569793868271433],[122,230,79,0.40141336877979994],[122,231,64,0.0028502762170339035],[122,231,65,0.014454005684073123],[122,231,66,0.025722208882615602],[122,231,67,0.036727890994512985],[122,231,68,0.0475474137296021],[122,231,69,0.05825972020950673],[122,231,70,0.06894557474334845],[122,231,71,0.09155483460518046],[122,231,72,0.1303948416055029],[122,231,73,0.17023289664003854],[122,231,74,0.2103539883049343],[122,231,75,0.24998398658415966],[122,231,76,0.28883435768524574],[122,231,77,0.3270180495087433],[122,231,78,0.3645786674213732],[122,231,79,0.40148855278120604],[122,232,64,-0.041356225559502885],[122,232,65,-0.029351509203828438],[122,232,66,-0.017631043243130515],[122,232,67,-0.006125552785900781],[122,232,68,0.005236728477839514],[122,232,69,0.016529274609696304],[122,232,70,0.0489938985068977],[122,232,71,0.0864348912368159],[122,232,72,0.1256454953213147],[122,232,73,0.16598859260699758],[122,232,74,0.20673304696917152],[122,232,75,0.2470845581794629],[122,232,76,0.28674894000351026],[122,232,77,0.32584578875252157],[122,232,78,0.3644217775601592],[122,232,79,0.4024485659858703],[122,233,64,-0.052920679435674314],[122,233,65,-0.0709055666754267],[122,233,66,-0.06236880803139938],[122,233,67,-0.0505072034219883],[122,233,68,-0.022345365651959465],[122,233,69,0.009878151366465249],[122,233,70,0.04501544320835518],[122,233,71,0.08261086337752654],[122,233,72,0.12211450008331083],[122,233,73,0.1628806746748593],[122,233,74,0.2041654296316937],[122,233,75,0.2451579285171347],[122,233,76,0.2855581360173959],[122,233,77,0.3254889528022297],[122,233,78,0.3649972925625964],[122,233,79,0.4040518867865556],[122,234,64,-0.03656878074700991],[122,234,65,-0.04899071314246974],[122,234,66,-0.06123270708840007],[122,234,67,-0.05347712681314548],[122,234,68,-0.02484996271923378],[122,234,69,0.007181578344238895],[122,234,70,0.042259324915986635],[122,234,71,0.07992846996424532],[122,234,72,0.11963679903269628],[122,234,73,0.16073290604536958],[122,234,74,0.20246339677151381],[122,234,75,0.24400462343192125],[122,234,76,0.28505065054185574],[122,234,77,0.32572452094906235],[122,234,78,0.36607073265034185],[122,234,79,0.4060530007816743],[122,235,64,0.010030387888818132],[122,235,65,-0.002277940311095253],[122,235,66,-0.014464403311682694],[122,235,67,-0.026592764403474516],[122,235,68,-0.026134696151609647],[122,235,69,0.005637293246534461],[122,235,70,0.04057566332202031],[122,235,71,0.0782283048705666],[122,235,72,0.11804304823166273],[122,235,73,0.15936562535728863],[122,235,74,0.20143662160714784],[122,235,75,0.2434233387052733],[122,235,76,0.2850140358067781],[122,235,77,0.32632896410551016],[122,235,78,0.3674077604565061],[122,235,79,0.4082072256339028],[122,236,64,0.05702058008112426],[122,236,65,0.04503939511425738],[122,236,66,0.033118597490609164],[122,236,67,0.021193877415801754],[122,236,68,0.009201642774081198],[122,236,69,0.0051022829448304635],[122,236,70,0.039813004264373994],[122,236,71,0.0773501573155473],[122,236,72,0.11716396125535675],[122,236,73,0.15860014045512424],[122,236,74,0.20089665538060641],[122,236,75,0.24321549579375706],[122,236,76,0.2852393545653206],[122,236,77,0.3270830316101265],[122,236,78,0.3687791068598705],[122,236,79,0.41027578989995517],[122,237,64,0.10444015037688756],[122,237,65,0.09301967470358002],[122,237,66,0.08159332207271798],[122,237,67,0.07009498206169971],[122,237,68,0.05846021826474472],[122,237,69,0.04662708251063896],[122,237,70,0.03982309042563953],[122,237,71,0.07713776312845755],[122,237,72,0.11683506645002273],[122,237,73,0.15826351537197694],[122,237,74,0.20066176529675875],[122,237,75,0.24319014870870417],[122,237,76,0.28552617187577567],[122,237,77,0.3277768430893119],[122,237,78,0.36996577700001754],[122,237,79,0.41203116583151],[122,238,64,0.1525228583204511],[122,238,65,0.14191462835458016],[122,238,66,0.13122747203127122],[122,238,67,0.12039233699045081],[122,238,68,0.10934297442323862],[122,238,69,0.09801680736867766],[122,238,70,0.08635571238569488],[122,238,71,0.07744398686976901],[122,238,72,0.11690187685760477],[122,238,73,0.15819375052678158],[122,238,74,0.20056214511835024],[122,238,75,0.24316924204737528],[122,238,76,0.2856878755572354],[122,238,77,0.32821528537638384],[122,238,78,0.3707645364736295],[122,238,79,0.4132626561475426],[122,239,64,0.20137035431796643],[122,239,65,0.19183671610764458],[122,239,66,0.18214280145127826],[122,239,67,0.17221558479848123],[122,239,68,0.1619861942330445],[122,239,69,0.151390863344702],[122,239,70,0.14037177788976796],[122,239,71,0.12887781724064448],[122,239,72,0.11722547280635931],[122,239,73,0.15824535613550783],[122,239,74,0.20044549841624765],[122,239,75,0.2429932201752308],[122,239,76,0.28555732531866745],[122,239,77,0.3282237144875549],[122,239,78,0.3709936777116011],[122,239,79,0.41378223477772913],[122,240,64,0.2509539786522771],[122,240,65,0.24276127614077336],[122,240,66,0.2343176264126456],[122,240,67,0.225545101261264],[122,240,68,0.21637153077247273],[122,240,69,0.20673157150375643],[122,240,70,0.1965676495408413],[122,240,71,0.18583077843173093],[122,240,72,0.174483043411981],[122,240,73,0.16265851960396835],[122,240,74,0.20018299447511195],[122,240,75,0.24252698755949112],[122,240,76,0.2849928305615717],[122,240,77,0.3276539626549799],[122,240,78,0.37049906653711523],[122,240,79,0.41343064157705267],[122,241,64,0.30113452837250765],[122,241,65,0.2945469093237528],[122,241,66,0.2876077780365741],[122,241,67,0.28023346898016077],[122,241,68,0.2723479560967474],[122,241,69,0.2638840721126791],[122,241,70,0.25478458172454654],[122,241,71,0.245003108660388],[122,241,72,0.23450662096395158],[122,241,73,0.22342820112225104],[122,241,74,0.21213766110204568],[122,241,75,0.24166622025417944],[122,241,76,0.2838844568564116],[122,241,77,0.3263906504170676],[122,241,78,0.3691604689048714],[122,241,79,0.41208373101180495],[122,242,64,0.35168095866247745],[122,242,65,0.3469547836515033],[122,242,66,0.341766462599275],[122,242,67,0.33602584695791393],[122,242,68,0.3296525964248794],[122,242,69,0.32257758526041663],[122,242,70,0.31474414062090733],[122,242,71,0.30610911290811693],[122,242,72,0.29664538300445936],[122,242,73,0.2864853084268524],[122,242,74,0.2759839551500458],[122,242,75,0.26543454856492],[122,242,76,0.2821606610924913],[122,242,77,0.32435780376573176],[122,242,78,0.36689815782115487],[122,242,79,0.4096590748166806],[122,243,64,0.40228801868945363],[122,243,65,0.39966685855821676],[122,243,66,0.39646302871471495],[122,243,67,0.3925792361045831],[122,243,68,0.3879304536332031],[122,243,69,0.3824455494709103],[122,243,70,0.3760687258909642],[122,243,71,0.3687607676402816],[122,243,72,0.3605015929236375],[122,243,73,0.3514232072601482],[122,243,74,0.3418644350436335],[122,243,75,0.3321039841189337],[122,243,76,0.322341358423602],[122,243,77,0.3215257763506492],[122,243,78,0.36367980044480475],[122,243,79,0.4061228186230096],[122,244,64,0.4525928219310928],[122,244,65,0.45230302911001774],[122,244,66,0.451300641584015],[122,244,67,0.4494806406714502],[122,244,68,0.4467530130530064],[122,244,69,0.4430446383058976],[122,244,70,0.43830096309401356],[122,244,71,0.4324874620139929],[122,244,72,0.42559225470573203],[122,244,73,0.41774745666206176],[122,244,74,0.4092743272093815],[122,244,75,0.4004356737884005],[122,244,76,0.3914189505724812],[122,244,77,0.3823460590466978],[122,244,78,0.3732824591552328],[122,244,79,0.4015340259290015],[122,245,64,0.5021903509827244],[122,245,65,0.5044371900784048],[122,245,66,0.5058328643138528],[122,245,67,0.5062641256153332],[122,245,68,0.5056357375747766],[122,245,69,0.5038726549602295],[122,245,70,0.5009219668381307],[122,245,71,0.49675460330741394],[122,245,72,0.49136804137700085],[122,245,73,0.4848950421100306],[122,245,74,0.47763820323794764],[122,245,75,0.4698432529014739],[122,245,76,0.461684538007359],[122,245,77,0.4532746942062051],[122,245,78,0.44467359072513624],[122,245,79,0.43589655005532213],[122,246,64,0.5506478968440236],[122,246,65,0.5556122198934812],[122,246,66,0.5595791463028543],[122,246,67,0.5624267698922645],[122,246,68,0.5640544480579932],[122,246,69,0.5643853048486073],[122,246,70,0.5633684746628599],[122,246,71,0.560981086569351],[122,246,72,0.5572310815503382],[122,246,73,0.5522524609955828],[122,246,74,0.5463283356476784],[122,246,75,0.5396864252498107],[122,246,76,0.5324871146578182],[122,246,77,0.5248330054235619],[122,246,78,0.516777704374041],[122,246,79,0.5083338491862663],[122,247,64,0.5975184326842089],[122,247,65,0.6053538844760482],[122,247,66,0.6120392186949705],[122,247,67,0.6174435156794676],[122,247,68,0.6214605900453394],[122,247,69,0.6240118461825608],[122,247,70,0.6250488516528412],[122,247,71,0.6245556284878542],[122,247,72,0.6225516040652979],[122,247,73,0.6191726604361558],[122,247,74,0.6146819012022474],[122,247,75,0.6092883942941661],[122,247,76,0.6031379424600252],[122,247,77,0.5963225302938908],[122,247,78,0.588888968462761],[122,247,79,0.5808467351320944],[122,248,64,0.6423529220877853],[122,248,65,0.6531836609507242],[122,248,66,0.6627063969021525],[122,248,67,0.6707809135280779],[122,248,68,0.6772953867839084],[122,248,69,0.6821696185403532],[122,248,70,0.6853579657851658],[122,248,71,0.6868519654807107],[122,248,72,0.6866834407264961],[122,248,73,0.6849908274252202],[122,248,74,0.6820170317854586],[122,248,75,0.6779521387305247],[122,248,76,0.6729270075451205],[122,248,77,0.6670226297184215],[122,248,78,0.6602786424840428],[122,248,79,0.6527009980569022],[122,249,64,0.6847115617788904],[122,249,65,0.6986304812379754],[122,249,66,0.711079790194044],[122,249,67,0.7219097634441707],[122,249,68,0.7310028785508136],[122,249,69,0.7382774494270915],[122,249,70,0.7436909340076194],[122,249,71,0.7472429160048852],[122,249,72,0.7489783871373392],[122,249,73,0.7490390313175579],[122,249,74,0.7476477128299848],[122,249,75,0.7449755324134667],[122,249,76,0.7411383196950012],[122,249,77,0.7362059186137787],[122,249,78,0.7302105855920288],[122,249,79,0.7231545004526803],[122,250,64,0.7241739588254654],[122,250,65,0.7412413955264475],[122,250,66,0.7566754183562334],[122,250,67,0.770316651899791],[122,250,68,0.7820418482850464],[122,250,69,0.7917679388270152],[122,250,70,0.7994557390498942],[122,250,71,0.8051133070870921],[122,250,72,0.8087994216313601],[122,250,73,0.8106597186520724],[122,250,74,0.8108975293024933],[122,250,75,0.8096653086392862],[122,250,76,0.8070640550680542],[122,250,77,0.8031525413506191],[122,250,78,0.7979556142352645],[122,250,79,0.7914715627099461],[122,251,64,0.7603482423224697],[122,251,65,0.780591155624655],[122,251,66,0.7990362354159762],[122,251,67,0.8155143847727448],[122,251,68,0.8298966335241965],[122,251,69,0.842098621746451],[122,251,70,0.8520847169661551],[122,251,71,0.8598717650737796],[122,251,72,0.8655327822993496],[122,251,73,0.8692180603102249],[122,251,74,0.8711122592431816],[122,251,75,0.871349868786824],[122,251,76,0.8700175421927617],[122,251,77,0.8671632919194829],[122,251,78,0.8628047088910834],[122,251,79,0.8569362053708681],[122,252,64,0.7928791095551369],[122,252,65,0.8162907181931974],[122,252,66,0.8377410604367188],[122,252,67,0.8570513162166471],[122,252,68,0.8740868246476836],[122,252,69,0.8887620087492181],[122,252,70,0.9010449154108608],[122,252,71,0.9109613706025415],[122,252,72,0.9185989021144036],[122,252,73,0.924113151012315],[122,252,74,0.9276713148620223],[122,252,75,0.9293909353183802],[122,252,76,0.929345091231598],[122,252,77,0.927571578826335],[122,252,78,0.9240810699038802],[122,252,79,0.9188642480674365],[122,253,64,0.821454806640739],[122,253,65,0.847994667855781],[122,253,66,0.8724124153795133],[122,253,67,0.8945195734591331],[122,253,68,0.9141758494242402],[122,253,69,0.931294504482072],[122,253,70,0.9458473226452876],[122,253,71,0.9578691777922762],[122,253,72,0.9674622021520833],[122,253,73,0.9747880611486983],[122,253,74,0.9799980311887113],[122,253,75,0.9831940491376225],[122,253,76,0.984436666512063],[122,253,77,0.9837542347145857],[122,253,78,0.9811510224240177],[122,253,79,0.9766142651413801],[122,254,64,0.8458130436506515],[122,254,65,0.8754075601910313],[122,254,66,0.9027232700335114],[122,254,67,0.9275621775306075],[122,254,68,0.9497784438661881],[122,254,69,0.9692842041928882],[122,254,70,0.9860549672776102],[122,254,71,1.0001345976550786],[122,254,72,1.0116397429087993],[122,254,73,1.020738740949155],[122,254,74,1.02756880227964],[122,254,75,1.032217911307896],[122,254,76,1.0347354023283306],[122,254,77,1.0351411707171225],[122,254,78,1.0334337704509495],[122,254,79,1.029597397949451],[122,255,64,0.8657458442111865],[122,255,65,0.8982891846033894],[122,255,66,0.9284026940136408],[122,255,67,0.955879059921471],[122,255,68,0.9805670093882977],[122,255,69,1.0023775682392315],[122,255,70,1.0212898887340445],[122,255,71,1.0373566457272547],[122,255,72,1.050708733715704],[122,255,73,1.061521776987607],[122,255,74,1.0699210649789943],[122,255,75,1.07598256912796],[122,255,76,1.0797459620104854],[122,255,77,1.0812238755352805],[122,255,78,1.0804099999774417],[122,255,79,1.0772860238509367],[122,256,64,0.8811033295842218],[122,256,65,0.9164587470742631],[122,256,66,0.9492404158267963],[122,256,67,0.9792319751692866],[122,256,68,1.006276856272815],[122,256,69,1.0302849745890115],[122,256,70,1.0512389784628626],[122,256,71,1.0692000539213589],[122,256,72,1.0843129002500682],[122,256,73,1.0967610010242235],[122,256,74,1.1066601302360908],[122,256,75,1.1140764465673199],[122,256,76,1.1190417402635404],[122,256,77,1.1215627592469768],[122,256,78,1.1216293312371461],[122,256,79,1.1192212818796579],[122,257,64,0.8917964372269319],[122,257,65,0.9297979727926158],[122,257,66,0.9650902890055856],[122,257,67,0.9974483093748145],[122,257,68,1.0267103334394843],[122,257,69,1.0527851493119502],[122,257,70,1.0756586918699251],[122,257,71,1.0954002465978216],[122,257,72,1.1121677101426508],[122,257,73,1.12615295118337],[122,257,74,1.1374648619773549],[122,257,75,1.1461622190595169],[122,257,76,1.1522709087745864],[122,257,77,1.1557933418423372],[122,257,78,1.1567166200538415],[122,257,79,1.1550194550987674],[122,258,64,0.8977985738312845],[122,258,65,0.9382531286657857],[122,258,66,0.9758726653105687],[122,258,67,1.010423784647972],[122,258,68,1.0417398445217196],[122,258,69,1.0697284750631306],[122,258,70,1.0943786309870704],[122,258,71,1.115767180857594],[122,258,72,1.1340644566825528],[122,258,73,1.1494711854689577],[122,258,74,1.1620922035345418],[122,258,75,1.1719815326550194],[122,258,76,1.179161305089737],[122,258,77,1.1836312864885041],[122,258,78,1.185377108294042],[122,258,79,1.1843772096400638],[122,259,64,0.8991462028425351],[122,259,65,0.9418359657096174],[122,259,66,0.9815756749999178],[122,259,67,1.0181240594825098],[122,259,68,1.0513097502476119],[122,259,69,1.0810391775571737],[122,259,70,1.1073039978718313],[122,259,71,1.13018805105418],[122,259,72,1.1498732006178443],[122,259,73,1.166569447615398],[122,259,74,1.180380551627357],[122,259,75,1.1913585675318186],[122,259,76,1.199524164758937],[122,259,77,1.2048762775216575],[122,259,78,1.2074004234209845],[122,259,79,1.207075690425802],[122,260,64,0.8959383664575552],[122,260,65,0.9406235813189006],[122,260,66,0.9822554141676367],[122,260,67,1.0205852250606822],[122,260,68,1.055437157127153],[122,260,69,1.0867163900345658],[122,260,70,1.114416918740084],[122,260,71,1.1386288575267505],[122,260,72,1.1595445700537441],[122,260,73,1.1773836852760255],[122,260,74,1.1922519779023866],[122,260,75,1.2042024458656941],[122,260,76,1.2132566967506375],[122,260,77,1.2194147431682887],[122,260,78,1.22266342715206],[122,260,79,1.2229834735750886],[122,261,64,0.8883351421021196],[122,261,65,0.9347572014171053],[122,261,66,0.9780350391492206],[122,261,67,1.017913197486682],[122,261,68,1.0542115924443678],[122,261,69,1.086834095718722],[122,261,70,1.115776638830142],[122,261,71,1.1411348395527987],[122,261,72,1.1631104184467533],[122,261,73,1.181932920547333],[122,261,74,1.197713298026654],[122,261,75,1.2105084840584308],[122,261,76,1.2203435021345996],[122,261,77,1.2272214229939729],[122,261,78,1.2311319132179228],[122,261,79,1.2320583754931078],[122,262,64,0.8765550333880788],[122,262,65,0.9244398824864322],[122,262,66,0.96910276799584],[122,262,67,1.010282005949986],[122,262,68,1.0477935655555435],[122,262,69,1.0815399482650276],[122,262,70,1.1115185879995837],[122,262,71,1.1378297725216406],[122,262,72,1.1606833406960586],[122,262,73,1.1803189728303558],[122,262,74,1.1968559883371344],[122,262,75,1.2103582893253224],[122,262,76,1.22085683603415],[122,262,77,1.22835978008095],[122,262,78,1.2328611542245718],[122,262,79,1.2343481186444178],[122,263,64,0.8608712955495337],[122,263,65,0.9099331334772353],[122,263,66,0.955708789016071],[122,263,67,0.9979309768176092],[122,263,68,1.036412015492533],[122,263,69,1.0710529702008196],[122,263,70,1.1018523170537524],[122,263,71,1.1289141293277045],[122,263,72,1.152455047331169],[122,263,73,1.172725034028172],[122,263,74,1.189854950045224],[122,263,75,1.2039187006409746],[122,263,76,1.2149557128469366],[122,263,77,1.2229812579335948],[122,263,78,1.2279952976175215],[122,263,79,1.22998985400951],[122,264,64,0.8416071953586094],[122,264,65,0.8915524575974679],[122,264,66,0.9381610763858504],[122,264,67,0.9811608136559578],[122,264,68,1.020360644871847],[122,264,69,1.055660129357028],[122,264,70,1.08705830480667],[122,264,71,1.1146621059843418],[122,264,72,1.1386935967965017],[122,264,73,1.159413096080229],[122,264,74,1.17696612099684],[122,264,75,1.1914395740440706],[122,264,76,1.2028838547348149],[122,264,77,1.2113233821123728],[122,264,78,1.2167656107486213],[122,264,79,1.2192085402251276],[122,265,64,0.8191302055206575],[122,265,65,0.8696618139819224],[122,265,66,0.9168201128263931],[122,265,67,0.9603285731820049],[122,265,68,0.9999931401092227],[122,265,69,1.0357117932911555],[122,265,70,1.0674836358740105],[122,265,71,1.0954175114578144],[122,265,72,1.1197394858325662],[122,265,73,1.1407202308331426],[122,265,74,1.1585229349878252],[122,265,75,1.173250412300772],[122,265,76,1.1849664833825497],[122,265,77,1.1937067065959939],[122,265,78,1.199487575045264],[122,265,79,1.2023141794081187],[122,266,64,0.7938451335488776],[122,266,65,0.8446669992413033],[122,266,66,0.8920925193501387],[122,266,67,0.9358415371438643],[122,266,68,0.9757172779397756],[122,266,69,1.011616061701704],[122,266,70,1.0435365491982689],[122,266,71,1.0715885217215766],[122,266,72,1.0960005979538783],[122,266,73,1.1170537222480985],[122,266,74,1.1349316286347584],[122,266,75,1.149755838926859],[122,266,76,1.161605955025431],[122,266,77,1.1705306048718331],[122,266,78,1.176556829282021],[122,266,79,1.1796979096628397],[122,267,64,0.7661861851180382],[122,267,65,0.8170079488907939],[122,267,66,0.8644235920743899],[122,267,67,0.9081499801304362],[122,267,68,0.9479879182434033],[122,267,69,0.9838319768337441],[122,267,70,1.0156798573058248],[122,267,71,1.0436412980305885],[122,267,72,1.0679460100233495],[122,267,73,1.0888850509446304],[122,267,74,1.1066653958009887],[122,267,75,1.1214299165684454],[122,267,76,1.1332762387456685],[122,267,77,1.142267905754529],[122,267,78,1.1484439619546685],[122,267,79,1.1518269542721118],[122,268,64,0.7366079618981565],[122,268,65,0.7871499586589696],[122,268,66,0.8342887461034617],[122,268,67,0.8777388333109164],[122,268,68,0.917298883176213],[122,268,69,0.9528616118763421],[122,268,70,0.9844232362965875],[122,268,71,1.0120924694162952],[122,268,72,1.0360986569237514],[122,268,73,1.0567427310813202],[122,268,74,1.074257389578385],[122,268,75,1.0888093097417226],[122,268,76,1.1005162380379612],[122,268,77,1.1094583739331023],[122,268,78,1.1156881527568743],[122,268,79,1.1192384275719383],[122,269,64,0.7055753938672188],[122,269,65,0.7555738256761448],[122,269,66,0.8021838664784587],[122,269,67,0.8451182441032993],[122,269,68,0.8841737226071165],[122,269,69,0.9192410373510401],[122,269,70,0.9503143865654281],[122,269,71,0.9775004794015106],[122,269,72,1.00102685432552],[122,269,73,1.0212039995727256],[122,269,74,1.038292571824135],[122,269,75,1.05248529193109],[122,269,76,1.063921955643646],[122,269,77,1.0727010352460216],[122,269,78,1.0788896631590281],[122,269,79,1.0825319975095153],[122,270,64,0.6735526061031115],[122,270,65,0.7227649095423506],[122,270,66,0.7686145661948914],[122,270,67,0.8108130317721189],[122,270,68,0.849155365859864],[122,270,69,0.8835301654916583],[122,270,70,0.9139290642557145],[122,270,71,0.9404557969355458],[122,270,72,0.9633346795512615],[122,270,73,0.9828853576429135],[122,270,74,0.9993984102530058],[122,270,75,1.0130945970461098],[122,270,76,1.0241375016538785],[122,270,77,1.0326453466847079],[122,270,78,1.0387011760897111],[122,270,79,1.0423614048850407],[122,271,64,0.640990720055651],[122,271,65,0.6892011132757603],[122,271,66,0.734084351288884],[122,271,67,0.7753510389560976],[122,271,68,0.8127946597611114],[122,271,69,0.8463014726159532],[122,271,70,0.875859983445379],[122,271,71,0.9015699915499246],[122,271,72,0.9236512105372251],[122,271,73,0.9424319647157852],[122,271,74,0.9582344230851546],[122,271,75,0.9713091152372955],[122,271,76,0.9818449448817683],[122,271,77,0.9899812111253089],[122,271,78,0.9958179847195613],[122,271,79,0.9994248392770001],[122,272,64,0.6083145892973272],[122,272,65,0.6553397841402827],[122,272,66,0.6990816929907869],[122,272,67,0.7392503791246257],[122,272,68,0.7756377929935501],[122,272,69,0.808127599488264],[122,272,70,0.8367045890647823],[122,272,71,0.8614636727340741],[122,272,72,0.882618622891243],[122,272,73,0.9005058846418059],[122,272,74,0.9154805712492303],[122,272,75,0.9278244330705862],[122,272,76,0.9377530075034448],[122,272,77,0.9454278367888318],[122,272,78,0.9509670303477393],[122,272,79,0.9544541716512482],[122,273,64,0.5759084697536925],[122,273,65,0.621603534353134],[122,273,66,0.6640660069469044],[122,273,67,0.703005579963669],[122,273,68,0.7382126067545802],[122,273,69,0.7695678296735116],[122,273,70,0.7970517005466107],[122,273,71,0.8207532935310952],[122,273,72,0.8408791450471208],[122,273,73,0.8577731842610069],[122,273,74,0.8718244981405101],[122,273,75,0.8833472180601321],[122,273,76,0.8925846029675598],[122,273,77,0.8997214414290319],[122,273,78,0.9048947893902745],[122,273,79,0.908203043653058],[122,274,64,0.5441492218740347],[122,274,65,0.5884092172243167],[122,274,66,0.6294925672626428],[122,274,67,0.6671086199403359],[122,274,68,0.7010459563209988],[122,274,69,0.7311819933352933],[122,274,70,0.7574921865088098],[122,274,71,0.7800588326629432],[122,274,72,0.7990799887018166],[122,274,73,0.8149063574186137],[122,274,74,0.8279616996801615],[122,274,75,0.8385933907863667],[122,274,76,0.8470732654862786],[122,274,77,0.85361018976264],[122,274,78,0.8583609607774602],[122,274,79,0.8614395349786474],[122,275,64,0.5137260192107476],[122,275,65,0.5564557606519729],[122,275,66,0.596069643659705],[122,275,67,0.6322767145865891],[122,275,68,0.6648636386760647],[122,275,69,0.6937041530824599],[122,275,70,0.7187681265505409],[122,275,71,0.7401302257544418],[122,275,72,0.757978892748405],[122,275,73,0.7726708524047993],[122,275,74,0.7846649142720467],[122,275,75,0.7943422385028692],[122,275,76,0.8020038044577468],[122,275,77,0.8078831370570871],[122,275,78,0.8121573550449134],[122,275,79,0.8149565411641091],[122,276,64,0.48536826418477386],[122,276,65,0.526470411859358],[122,276,66,0.5645225314583107],[122,276,67,0.5992334867615493],[122,276,68,0.6303879663890167],[122,276,69,0.6578557638801796],[122,276,70,0.6816006704776079],[122,276,71,0.7016889806145511],[122,276,72,0.718298508033095],[122,276,73,0.7317912143920522],[122,276,74,0.7426610075112743],[122,276,75,0.751323036836802],[122,276,76,0.7581076806253765],[122,276,77,0.7632734121389606],[122,276,78,0.7670179830227809],[122,276,79,0.7694879238669449],[122,277,64,0.45962874273151977],[122,277,65,0.4990093138562644],[122,277,66,0.5354109469518398],[122,277,67,0.5685424833900079],[122,277,68,0.5981866236867013],[122,277,69,0.6242090132603039],[122,277,70,0.6465669465402838],[122,277,71,0.6653176894260958],[122,277,72,0.680627514944725],[122,277,73,0.6928627940541999],[122,277,74,0.7025522639973986],[122,277,75,0.7101449372279244],[122,277,76,0.7160005342545017],[122,277,77,0.7204024759535071],[122,277,78,0.7235691900242596],[122,277,79,0.7256637315871283],[122,278,64,0.436880503106156],[122,278,65,0.474453834460961],[122,278,66,0.5091248143470035],[122,278,67,0.5406024292221305],[122,278,68,0.568667396789086],[122,278,69,0.5931810384439078],[122,278,70,0.6140937755548425],[122,278,71,0.6314532495716922],[122,278,72,0.6454133596409968],[122,278,73,0.6563440116254038],[122,278,74,0.664808204058439],[122,278,75,0.6712883730826015],[122,278,76,0.6761732279196864],[122,278,77,0.6797708571649717],[122,278,78,0.6823201479842086],[122,278,79,0.68400051821347],[122,279,64,0.41731384639254177],[122,279,65,0.4530068979747759],[122,279,66,0.48587995403508644],[122,279,67,0.5156422886504661],[122,279,68,0.5420726272603249],[122,279,69,0.5650277897111001],[122,279,70,0.5844509626693039],[122,279,71,0.600379601402927],[122,279,72,0.6129544540016104],[122,279,73,0.6225480387692337],[122,279,74,0.629756780024002],[122,279,75,0.6350958151235822],[122,279,76,0.6389822161221833],[122,279,77,0.6417482001285266],[122,279,78,0.6436526531891604],[122,279,79,0.6448909676971785],[122,280,64,0.40093190182041677],[122,280,65,0.43468792500491615],[122,280,66,0.46571240550135995],[122,280,67,0.4937149914177362],[122,280,68,0.5184723608227564],[122,280,69,0.5398366226267717],[122,280,70,0.5577433526450539],[122,280,71,0.5722192648433547],[122,280,72,0.5833912097316559],[122,280,73,0.5916333495918518],[122,280,74,0.597574476640523],[122,280,75,0.6017614662116526],[122,280,76,0.6046388902991146],[122,280,77,0.6065623249594736],[122,280,78,0.6078099737352763],[122,280,79,0.6085926070988942],[122,281,64,0.3875447868908948],[122,281,65,0.41932638043542475],[122,281,66,0.4484713848724283],[122,281,67,0.4746898222150296],[122,281,68,0.497756191633322],[122,281,69,0.5175176191216504],[122,281,70,0.5339016486535716],[122,281,71,0.5469236748244096],[122,281,72,0.5566959066142351],[122,281,73,0.5635931407981482],[122,281,74,0.5682753156273576],[122,281,75,0.5713198956377837],[122,281,76,0.5731978992228752],[122,281,77,0.5742872996981184],[122,281,78,0.5748847467125667],[122,281,79,0.575215608007442],[122,282,64,0.3767623523097886],[122,282,65,0.40655392954593084],[122,282,66,0.4338108771013028],[122,282,67,0.4582434741703251],[122,282,68,0.4796238020224608],[122,282,69,0.49779363742884203],[122,282,70,0.512671994588578],[122,282,71,0.5242623155546755],[122,282,72,0.5326613949128833],[122,282,73,0.5382436209915263],[122,282,74,0.5416987643745291],[122,282,75,0.5436336128866915],[122,282,76,0.5445444447917963],[122,282,77,0.5448305245714555],[122,282,78,0.5448059251165905],[122,282,79,0.5447096763316028],[122,283,64,0.36798551173009564],[122,283,65,0.3957952022794059],[122,283,66,0.42117986279128283],[122,283,67,0.44384976622830247],[122,283,68,0.46357419769631414],[122,283,69,0.4801890908765616],[122,283,70,0.49360432089417416],[122,283,71,0.5038106536229582],[122,283,72,0.5108886319241049],[122,283,73,0.5152111691175244],[122,283,74,0.5174965487822126],[122,283,75,0.5183795808717692],[122,283,76,0.5183805532119086],[122,283,77,0.5179188283513984],[122,283,78,0.5173247744872829],[122,283,79,0.5168500304644503],[122,284,64,0.36041812665224904],[122,284,65,0.3862788634639577],[122,284,66,0.40983257510206966],[122,284,67,0.4307890910127047],[122,284,68,0.44891435340463254],[122,284,69,0.46403780037250586],[122,284,70,0.47605941453784695],[122,284,71,0.484956437207717],[122,284,72,0.49079222256484734],[122,284,73,0.49393712743546936],[122,284,74,0.49513670742749627],[122,284,75,0.4950525391525954],[122,284,76,0.4942276754187516],[122,284,77,0.49310035547724984],[122,284,78,0.4920160584181346],[122,284,79,0.4912378997142073],[122,285,64,0.3537348834139907],[122,285,65,0.37769693994740516],[122,285,66,0.39947836189366154],[122,285,67,0.4187880014615165],[122,285,68,0.43538783106318385],[122,285,69,0.44910008070312096],[122,285,70,0.45981405122843394],[122,285,71,0.46749260344083676],[122,285,72,0.47218098928640717],[122,285,73,0.47424583571588064],[122,285,74,0.47445840443178755],[122,285,75,0.4735054756463203],[122,285,76,0.47195136004017163],[122,285,77,0.4702517329012076],[122,285,78,0.46876582197566075],[122,285,79,0.4677669490319035],[122,286,64,0.34826725103517886],[122,286,65,0.37038975254674383],[122,286,66,0.39046523478824086],[122,286,67,0.40820106029633474],[122,286,68,0.4233546586307844],[122,286,69,0.43574042874320124],[122,286,70,0.4452363287955434],[122,286,71,0.4517901534282761],[122,286,72,0.45542834965239287],[122,286,73,0.456512483117486],[122,286,74,0.4558371437158895],[122,286,75,0.4541120129241816],[122,286,76,0.45192055853763385],[122,286,77,0.44973399233618494],[122,286,78,0.4479235938936494],[122,286,79,0.44677140053021636],[122,287,64,0.3442883080551979],[122,287,65,0.3646400646879997],[122,287,66,0.38308428679072004],[122,287,67,0.3993263697360485],[122,287,68,0.4131186974122169],[122,287,69,0.4242673233479237],[122,287,70,0.4326383520762105],[122,287,71,0.4381640207372285],[122,287,72,0.4408515061106183],[122,287,73,0.4410558728895114],[122,287,74,0.43959193211229675],[122,287,75,0.43718929924837424],[122,287,76,0.4344479669505741],[122,287,77,0.4318523758672679],[122,287,78,0.42978386621901415],[122,287,79,0.4285315101397953],[122,288,64,0.34197930855979325],[122,288,65,0.3606397133438931],[122,288,66,0.3775364728152703],[122,288,67,0.3923725794717382],[122,288,68,0.4048949470294689],[122,288,69,0.4149008870488971],[122,288,70,0.42224429973029876],[122,288,71,0.4268415788789822],[122,288,72,0.4286804155350117],[122,288,73,0.4281078777425067],[122,288,74,0.4259552753753549],[122,288,75,0.42296862807602265],[122,288,76,0.41976137366635646],[122,288,77,0.4168285330626261],[122,288,78,0.41455927302077106],[122,288,79,0.4132478667119073],[122,289,64,0.34144061971804845],[122,289,65,0.3585000722913305],[122,289,66,0.3739426231831182],[122,289,67,0.38746847468054785],[122,289,68,0.39881873136597806],[122,289,69,0.40778169180982765],[122,289,70,0.41419886943076695],[122,289,71,0.41797074252319527],[122,289,72,0.4190655591960688],[122,289,73,0.4178208869466367],[122,289,74,0.4150803070272251],[122,289,75,0.41160225032996667],[122,289,76,0.4080101545607749],[122,289,77,0.4048066968244294],[122,289,78,0.4023864437375625],[122,289,79,0.40104691906960943],[122,290,64,0.34270206962668415],[122,290,65,0.35826196706951796],[122,290,66,0.3723529493841935],[122,290,67,0.38467209595900886],[122,290,68,0.3949544551360804],[122,290,69,0.4029791731616599],[122,290,70,0.40857536828046404],[122,290,71,0.4116277499739459],[122,290,72,0.41208542936672177],[122,290,73,0.4102750048240492],[122,290,74,0.4070477025252043],[122,290,75,0.4031700048497061],[122,290,76,0.39927161788388654],[122,290,77,0.3958597390462085],[122,290,78,0.3933317646957667],[122,290,79,0.3919864377240282],[122,291,64,0.3457327054634774],[122,291,65,0.3599050416404035],[122,291,66,0.37275604210425023],[122,291,67,0.38397939117735935],[122,291,68,0.39330393108112255],[122,291,69,0.4004996527185748],[122,291,70,0.40538344845675767],[122,291,71,0.4078246269087955],[122,291,72,0.4077537325647968],[122,291,73,0.4054850006364287],[122,291,74,0.40187237875145787],[122,291,75,0.3976857670235109],[122,291,76,0.3935571988921379],[122,291,77,0.38999510607758725],[122,291,78,0.3873970487990718],[122,291,79,0.38606091125658776],[122,292,64,0.3504499619485366],[122,292,65,0.3633565767502742],[122,292,66,0.3750873615163707],[122,292,67,0.3853323992538473],[122,292,68,0.3938142777913054],[122,292,69,0.4002939690739843],[122,292,70,0.4045764880832032],[122,292,71,0.4065163313801355],[122,292,72,0.4060263094313842],[122,292,73,0.4034070098671138],[122,292,74,0.3995099788245795],[122,292,75,0.3951037156011491],[122,292,76,0.3908185042262728],[122,292,77,0.38716063399589506],[122,292,78,0.3845251133890582],[122,292,79,0.3832068773667525],[122,293,64,0.3567282401141658],[122,293,65,0.36849975999316176],[122,293,66,0.37923721983743647],[122,293,67,0.3886269658495367],[122,293,68,0.3963853881537097],[122,293,69,0.4022647170769176],[122,293,70,0.4060586173285965],[122,293,71,0.40760758007910725],[122,293,72,0.4068077712453704],[122,293,73,0.40394498689798564],[122,293,74,0.39986314223316555],[122,293,75,0.39532441768739335],[122,293,76,0.39095320603515266],[122,293,77,0.3872502436847828],[122,293,78,0.3846052662768903],[122,293,79,0.3833081885853734],[122,294,64,0.36440689638307877],[122,294,65,0.3751814075758629],[122,294,66,0.38505825614940514],[122,294,67,0.3937199909834874],[122,294,68,0.4008769684264129],[122,294,69,0.40627309548873314],[122,294,70,0.4096913897333714],[122,294,71,0.4109593558620888],[122,294,72,0.40995785307414945],[122,294,73,0.40695690908117077],[122,294,74,0.4027875602914542],[122,294,75,0.39820073191637156],[122,294,76,0.39381078584557805],[122,294,77,0.3901095157199322],[122,294,78,0.38747869994622275],[122,294,79,0.38620121265375135],[122,295,64,0.3732976419547266],[122,295,65,0.3832191377843391],[122,295,66,0.3923724034851712],[122,295,67,0.4004362085680936],[122,295,68,0.4071151479384838],[122,295,69,0.41214536301995086],[122,295,70,0.41530009876313356],[122,295,71,0.41639509653952944],[122,295,72,0.4152974835602879],[122,295,73,0.41226073220532233],[122,295,74,0.4080978169167898],[122,295,75,0.4035435298065162],[122,295,76,0.3991981281778482],[122,295,77,0.39554114506159255],[122,295,78,0.3929437939270389],[122,295,79,0.39167996756812495],[122,296,64,0.383191352500291],[122,296,65,0.3924079961520174],[122,296,66,0.40097734817949343],[122,296,67,0.4085744978650355],[122,296,68,0.4148986594162867],[122,296,69,0.4196789027476145],[122,296,70,0.4226797395897378],[122,296,71,0.42370656492754194],[122,296,72,0.42261457134455305],[122,296,73,0.4196400973568962],[122,296,74,0.4155730147293425],[122,296,75,0.41112723529654976],[122,296,76,0.4068849639075186],[122,296,77,0.4033102755544177],[122,296,78,0.4007613253409198],[122,296,79,0.39950119129010175],[122,297,64,0.3938642881657314],[122,297,65,0.40252653232941016],[122,297,66,0.41065248148443734],[122,297,67,0.4179137268613147],[122,297,68,0.42400458993557766],[122,297,69,0.4286478949126753],[122,297,70,0.4316006160993852],[122,297,71,0.43265940016171556],[122,297,72,0.43166950812475624],[122,297,73,0.4288497891758515],[122,297,74,0.4249621864734776],[122,297,75,0.4206951824618753],[122,297,76,0.4166091633726821],[122,297,77,0.413149714233897],[122,297,78,0.4106595876169948],[122,297,79,0.4093893461222412],[122,298,64,0.4050837238833842],[122,298,65,0.4133423286555393],[122,298,66,0.42116434344981524],[122,298,67,0.42821812756585625],[122,298,68,0.4341937024998895],[122,298,69,0.43880859809791384],[122,298,70,0.4418135931282973],[122,298,71,0.44299835027374085],[122,298,72,0.4422003883510383],[122,298,73,0.43962094550645087],[122,298,74,0.4359894917615095],[122,298,75,0.43196479141215977],[122,298,76,0.42808187922763263],[122,298,77,0.42476502544029593],[122,298,78,0.42233941737955255],[122,298,79,0.42104155774983987],[122,299,64,0.4166129899917548],[122,299,65,0.42461698043080426],[122,299,66,0.4322715590682434],[122,299,67,0.43924220322627644],[122,299,68,0.44521532824477295],[122,299,69,0.4499042387859218],[122,299,70,0.45305499392543536],[122,299,71,0.45445218603026233],[122,299,72,0.45392794555695404],[122,299,73,0.45166601844244914],[122,299,74,0.44835919913905403],[122,299,75,0.4446325623692493],[122,299,76,0.44099253904196234],[122,299,77,0.43783950473908095],[122,299,78,0.4354791295062115],[122,299,79,0.4341324889477254],[122,300,64,0.42821592316380874],[122,300,65,0.43611052789160676],[122,300,66,0.4437292666851545],[122,300,67,0.4507351674661813],[122,300,68,0.4568118292682942],[122,300,69,0.46166950929759937],[122,300,70,0.4650511428427704],[122,300,71,0.466738296034524],[122,300,72,0.4665602053269903],[122,300,73,0.46468348676737736],[122,300,74,0.4617604534727606],[122,300,75,0.45837888792628007],[122,300,76,0.4550136876460407],[122,300,77,0.4520390326488571],[122,300,78,0.44973936035775064],[122,300,79,0.4483191479532533],[122,301,64,0.43966072764345004],[122,301,65,0.4475853398864108],[122,301,66,0.4552930386734252],[122,301,67,0.4624449153426311],[122,301,68,0.46872263208739035],[122,301,69,0.47383467411071667],[122,301,70,0.47752255325260956],[122,301,71,0.47956696309025376],[122,301,72,0.47979685489989427],[122,301,73,0.4783623197892324],[122,301,74,0.47587182865966826],[122,301,75,0.4728726834871475],[122,301,76,0.4698056792219678],[122,301,77,0.4670168081758371],[122,301,78,0.4647678191785586],[122,301,79,0.46324563150438386],[122,302,64,0.45072324679035913],[122,302,65,0.45880944925343004],[122,302,66,0.46672229437282864],[122,302,67,0.4741215263240097],[122,302,68,0.4806878317203618],[122,302,69,0.4861292845588737],[122,302,70,0.49018776069236303],[122,302,71,0.4926453218282383],[122,302,72,0.4933333294083353],[122,302,73,0.49238619257016236],[122,302,74,0.49036566565884343],[122,302,75,0.48777583588707946],[122,302,76,0.48502121914081475],[122,302,77,0.4824179621557321],[122,302,78,0.4802039476686505],[122,302,79,0.47854780254386675],[122,303,64,0.46118964493347014],[122,303,65,0.46955933990018206],[122,303,66,0.4777832052945173],[122,303,67,0.48552029918845474],[122,303,68,0.49245136639559894],[122,303,69,0.4982855019108814],[122,303,70,0.5027668012366984],[122,303,71,0.5056809975954445],[122,303,72,0.5068646147546687],[122,303,73,0.5064374525508301],[122,303,74,0.5049121958448934],[122,303,75,0.5027474701937961],[122,303,76,0.5003097555455448],[122,303,77,0.497884050402355],[122,303,78,0.49568348772646187],[122,303,79,0.4938579025886431],[122,304,64,0.4708584995321866],[122,304,65,0.4796221855840724],[122,304,66,0.48825109258975985],[122,304,67,0.4964043188421512],[122,304,68,0.5037637628859256],[122,304,69,0.5100410288300499],[122,304,70,0.5149843350966773],[122,304,71,0.5183854266064007],[122,304,72,0.5200887671226287],[122,304,73,0.5202008375693994],[122,304,74,0.5191834496834179],[122,304,75,0.5174480346894609],[122,304,76,0.5153217206799451],[122,304,77,0.513057426663402],[122,304,78,0.5108429573630042],[122,304,79,0.5088090987651814],[122,305,64,0.4795423036466233],[122,305,65,0.4887975403952175],[122,305,66,0.4979123167840608],[122,305,67,0.5065465550585172],[122,305,68,0.5143844524694977],[122,305,69,0.5211416492142006],[122,305,70,0.5265724154465626],[122,305,71,0.5304768573573952],[122,305,72,0.532710149125374],[122,305,73,0.5333669452754293],[122,305,74,0.5328569507285491],[122,305,75,0.5315432040334149],[122,305,76,0.5297126219634122],[122,305,77,0.5275854953831056],[122,305,78,0.5253240347869337],[122,305,79,0.5230399655101517],[122,306,64,0.4870683787156872],[122,306,65,0.49689848094039923],[122,306,66,0.5065656597756398],[122,306,67,0.515731493137359],[122,306,68,0.524083657516421],[122,306,69,0.5313433764156832],[122,306,70,0.5372729024777009],[122,306,71,0.5416830333030187],[122,306,72,0.5444423825895457],[122,306,73,0.54563545393847],[122,306,74,0.5456191949425027],[122,306,75,0.5447076006057654],[122,306,76,0.5431469828118038],[122,306,77,0.541124844272105],[122,306,78,0.5387778506610095],[122,306,79,0.5361989009370456],[122,307,64,0.49327919764382305],[122,307,65,0.5037522002289031],[122,307,66,0.5140231990989442],[122,307,67,0.5237562964845839],[122,307,68,0.5326438487015956],[122,307,69,0.5404142098418064],[122,307,70,0.5468395226797832],[122,307,71,0.5517435567952489],[122,307,72,0.5550110179754215],[122,307,73,0.556718094651327],[122,307,74,0.5571689153369959],[122,307,75,0.5566283340315594],[122,307,76,0.5553021332039741],[122,307,77,0.5533452566840487],[122,307,78,0.550869188529355],[122,307,79,0.5479484778680569],[122,308,64,0.4980321181956849],[122,308,65,0.5092000532595722],[122,308,66,0.520110674452602],[122,308,67,0.5304315011119523],[122,308,68,0.5398607728433555],[122,308,69,0.5481354999353403],[122,308,70,0.5550395733492391],[122,308,71,0.560411934284931],[122,308,72,0.564155920433119],[122,308,73,0.5663413749280604],[122,308,74,0.5672201319367028],[122,308,75,0.5670083588858253],[122,308,76,0.5658718499943728],[122,308,77,0.563933603799397],[122,308,78,0.5612805934160799],[122,308,79,0.5579697295318624],[122,309,64,0.501198526699957],[122,309,65,0.5130970543102216],[122,309,66,0.5246673464928803],[122,309,67,0.535581242057852],[122,309,68,0.5455440513687794],[122,309,69,0.5543029215358632],[122,309,70,0.5616552723254304],[122,309,71,0.5674573027862073],[122,309,72,0.5716333724952959],[122,309,73,0.5742490536970335],[122,309,74,0.5755049870649426],[122,309,75,0.5755696505795547],[122,309,76,0.5745698469716661],[122,309,77,0.5725976166162792],[122,309,78,0.5697163885950044],[122,309,79,0.5659663699269452],[122,310,64,0.5026623920603314],[122,310,65,0.5153108259275146],[122,310,66,0.5275453478908384],[122,310,67,0.5390430117273853],[122,310,68,0.5495173494040915],[122,310,69,0.5587270556205011],[122,310,70,0.5664847529533149],[122,310,71,0.5726658376027052],[122,310,72,0.5772178934052816],[122,310,73,0.5802043676881061],[122,310,74,0.5817763659508377],[122,310,75,0.582056199426008],[122,310,76,0.5811331146629118],[122,310,77,0.5790695377480711],[122,310,78,0.5759066005303034],[122,310,79,0.5716689488504113],[122,311,64,0.5023182300760789],[122,311,65,0.5157199996196333],[122,311,66,0.528608526655417],[122,311,67,0.540666950153898],[122,311,68,0.5516181154921458],[122,311,69,0.5612335794259105],[122,311,70,0.569342704274304],[122,311,71,0.5758418413170532],[122,311,72,0.5807037750820775],[122,311,73,0.5839920092152393],[122,311,74,0.5858103026590594],[122,311,75,0.5862368228883051],[122,311,76,0.5853251098840855],[122,311,77,0.5831096530283432],[122,311,78,0.579610791988552],[122,311,79,0.5748389415926354],[122,312,64,0.5000684780699691],[122,312,65,0.5142120682495982],[122,312,66,0.5277307817204048],[122,312,67,0.5403146671799972],[122,312,68,0.5516968919351641],[122,312,69,0.561663064949805],[122,312,70,0.5700606564437284],[122,312,71,0.5768085140422834],[122,312,72,0.5819063347208986],[122,312,73,0.5854198553533344],[122,312,74,0.5874081713411172],[122,312,75,0.5879077960073943],[122,312,76,0.5869387950361936],[122,312,77,0.5845097029225438],[122,312,78,0.5806218033216817],[122,312,79,0.5752727732973624],[122,313,64,0.49582027982526305],[122,313,65,0.5106806901308781],[122,313,66,0.524793890796843],[122,313,67,0.5378575965595286],[122,313,68,0.5496161957640989],[122,313,69,0.5598703858332943],[122,313,70,0.5684869113760872],[122,313,71,0.5754084049361791],[122,313,72,0.5806628840302289],[122,313,73,0.5843204485101646],[122,313,74,0.5863986628089444],[122,313,75,0.5868953000110495],[122,313,76,0.5857995271475216],[122,313,77,0.5830961737468717],[122,313,78,0.5787694019212011],[122,313,79,0.5728057779875513],[122,314,64,0.4894816808303034],[122,314,65,0.5050224448238825],[122,314,66,0.5196848304895411],[122,314,67,0.5331748819792658],[122,314,68,0.5452489703334539],[122,314,69,0.5557237326229495],[122,314,70,0.5644861186170799],[122,314,71,0.5715035449776599],[122,314,72,0.5768334151045565],[122,314,73,0.5805522283926555],[122,314,74,0.5826395464301218],[122,314,75,0.5830576891033205],[122,314,76,0.5817677966615191],[122,314,77,0.5787334686939118],[122,314,78,0.5739238398433282],[122,314,79,0.5673160922566437],[122,315,64,0.48095723383241196],[122,315,65,0.4971330406349853],[122,315,66,0.5122925886792669],[122,315,67,0.5261507950017957],[122,315,68,0.538476607542973],[122,315,69,0.5491032364139317],[122,315,70,0.55793849644366],[122,315,71,0.5649752610063598],[122,315,72,0.5703010029338621],[122,315,73,0.5740005153684974],[122,315,74,0.57601921734564],[122,315,75,0.5762875754352482],[122,315,76,0.574741815971051],[122,315,77,0.5713269586656857],[122,315,78,0.565999319605609],[122,315,79,0.5587284836257885],[122,316,64,0.4701430146992291],[122,316,65,0.486902973816269],[122,316,66,0.5025044691688798],[122,316,67,0.516671684927945],[122,316,68,0.5291865406846089],[122,316,69,0.5398992008726585],[122,316,70,0.5487386981906939],[122,316,71,0.5557236710240562],[122,316,72,0.5609719245486041],[122,316,73,0.5645782452219268],[122,316,74,0.5664580290091186],[122,316,75,0.566513732255858],[122,316,76,0.5646599576981206],[122,316,77,0.5608259129133119],[122,316,78,0.5549573681543033],[122,316,79,0.5470181135663713],[122,317,64,0.45692104858865246],[122,317,65,0.474212639467113],[122,317,66,0.4902018885944822],[122,317,67,0.5046224605797732],[122,317,68,0.5172694079157575],[122,317,69,0.5280099426399675],[122,317,70,0.536794323805099],[122,317,71,0.5436668607587788],[122,317,72,0.5487754948009764],[122,317,73,0.5522264553043872],[122,317,74,0.5539094110481378],[122,317,75,0.5537028152440189],[122,317,76,0.5515030427195848],[122,317,77,0.5472263094837274],[122,317,78,0.5408101190029256],[122,317,79,0.5322142351881755],[122,318,64,0.44115314642772463],[122,318,65,0.45892689413797605],[122,318,66,0.4752556656019404],[122,318,67,0.4898826040044848],[122,318,68,0.5026157863591044],[122,318,69,0.5133392401150941],[122,318,70,0.5220240766278044],[122,318,71,0.5287397414919389],[122,318,72,0.5336636187827691],[122,318,73,0.5369145220804026],[122,318,74,0.5383607724480199],[122,318,75,0.537860902021512],[122,318,76,0.5352964779392119],[122,318,77,0.5305735254738316],[122,318,78,0.5236235025423076],[122,318,79,0.5144038255935517],[122,319,64,0.4226741516987402],[122,319,65,0.4408890701346694],[122,319,66,0.4575208022871067],[122,319,67,0.47232171609763274],[122,319,68,0.48511249682750135],[122,319,69,0.4957933906189531],[122,319,70,0.504355565402055],[122,319,71,0.5108925891470428],[122,319,72,0.5156100608784603],[122,319,73,0.5186401500673469],[122,319,74,0.5198341900567849],[122,319,75,0.5190348498460863],[122,319,76,0.5161122438049068],[122,319,77,0.5109649070909255],[122,319,78,0.5035203445211082],[122,319,79,0.49373515289656755],[123,-64,64,64.0],[123,-64,65,64.0],[123,-64,66,64.0],[123,-64,67,64.0],[123,-64,68,64.0],[123,-64,69,64.0],[123,-64,70,64.0],[123,-64,71,64.0],[123,-64,72,64.0],[123,-64,73,64.0],[123,-64,74,64.0],[123,-64,75,64.0],[123,-64,76,64.0],[123,-64,77,64.0],[123,-64,78,64.0],[123,-64,79,64.0],[123,-63,64,64.0],[123,-63,65,64.0],[123,-63,66,64.0],[123,-63,67,64.0],[123,-63,68,64.0],[123,-63,69,64.0],[123,-63,70,64.0],[123,-63,71,64.0],[123,-63,72,64.0],[123,-63,73,64.0],[123,-63,74,64.0],[123,-63,75,64.0],[123,-63,76,64.0],[123,-63,77,64.0],[123,-63,78,64.0],[123,-63,79,64.0],[123,-62,64,64.0],[123,-62,65,64.0],[123,-62,66,64.0],[123,-62,67,64.0],[123,-62,68,64.0],[123,-62,69,64.0],[123,-62,70,64.0],[123,-62,71,64.0],[123,-62,72,64.0],[123,-62,73,64.0],[123,-62,74,64.0],[123,-62,75,64.0],[123,-62,76,64.0],[123,-62,77,64.0],[123,-62,78,64.0],[123,-62,79,64.0],[123,-61,64,64.0],[123,-61,65,64.0],[123,-61,66,64.0],[123,-61,67,64.0],[123,-61,68,64.0],[123,-61,69,64.0],[123,-61,70,64.0],[123,-61,71,64.0],[123,-61,72,64.0],[123,-61,73,64.0],[123,-61,74,64.0],[123,-61,75,64.0],[123,-61,76,64.0],[123,-61,77,64.0],[123,-61,78,64.0],[123,-61,79,64.0],[123,-60,64,64.0],[123,-60,65,64.0],[123,-60,66,64.0],[123,-60,67,64.0],[123,-60,68,64.0],[123,-60,69,64.0],[123,-60,70,64.0],[123,-60,71,64.0],[123,-60,72,64.0],[123,-60,73,64.0],[123,-60,74,64.0],[123,-60,75,64.0],[123,-60,76,64.0],[123,-60,77,64.0],[123,-60,78,64.0],[123,-60,79,64.0],[123,-59,64,64.0],[123,-59,65,64.0],[123,-59,66,64.0],[123,-59,67,64.0],[123,-59,68,64.0],[123,-59,69,64.0],[123,-59,70,64.0],[123,-59,71,64.0],[123,-59,72,64.0],[123,-59,73,64.0],[123,-59,74,64.0],[123,-59,75,64.0],[123,-59,76,64.0],[123,-59,77,64.0],[123,-59,78,64.0],[123,-59,79,64.0],[123,-58,64,64.0],[123,-58,65,64.0],[123,-58,66,64.0],[123,-58,67,64.0],[123,-58,68,64.0],[123,-58,69,64.0],[123,-58,70,64.0],[123,-58,71,64.0],[123,-58,72,64.0],[123,-58,73,64.0],[123,-58,74,64.0],[123,-58,75,64.0],[123,-58,76,64.0],[123,-58,77,64.0],[123,-58,78,64.0],[123,-58,79,64.0],[123,-57,64,64.0],[123,-57,65,64.0],[123,-57,66,64.0],[123,-57,67,64.0],[123,-57,68,64.0],[123,-57,69,64.0],[123,-57,70,64.0],[123,-57,71,64.0],[123,-57,72,64.0],[123,-57,73,64.0],[123,-57,74,64.0],[123,-57,75,64.0],[123,-57,76,64.0],[123,-57,77,64.0],[123,-57,78,64.0],[123,-57,79,64.0],[123,-56,64,64.0],[123,-56,65,64.0],[123,-56,66,64.0],[123,-56,67,64.0],[123,-56,68,64.0],[123,-56,69,64.0],[123,-56,70,64.0],[123,-56,71,64.0],[123,-56,72,64.0],[123,-56,73,64.0],[123,-56,74,64.0],[123,-56,75,64.0],[123,-56,76,64.0],[123,-56,77,64.0],[123,-56,78,64.0],[123,-56,79,64.0],[123,-55,64,64.0],[123,-55,65,64.0],[123,-55,66,64.0],[123,-55,67,64.0],[123,-55,68,64.0],[123,-55,69,64.0],[123,-55,70,64.0],[123,-55,71,64.0],[123,-55,72,64.0],[123,-55,73,64.0],[123,-55,74,64.0],[123,-55,75,64.0],[123,-55,76,64.0],[123,-55,77,64.0],[123,-55,78,64.0],[123,-55,79,64.0],[123,-54,64,64.0],[123,-54,65,64.0],[123,-54,66,64.0],[123,-54,67,64.0],[123,-54,68,64.0],[123,-54,69,64.0],[123,-54,70,64.0],[123,-54,71,64.0],[123,-54,72,64.0],[123,-54,73,64.0],[123,-54,74,64.0],[123,-54,75,64.0],[123,-54,76,64.0],[123,-54,77,64.0],[123,-54,78,64.0],[123,-54,79,64.0],[123,-53,64,64.0],[123,-53,65,64.0],[123,-53,66,64.0],[123,-53,67,64.0],[123,-53,68,64.0],[123,-53,69,64.0],[123,-53,70,64.0],[123,-53,71,64.0],[123,-53,72,64.0],[123,-53,73,64.0],[123,-53,74,64.0],[123,-53,75,64.0],[123,-53,76,64.0],[123,-53,77,64.0],[123,-53,78,64.0],[123,-53,79,64.0],[123,-52,64,64.0],[123,-52,65,64.0],[123,-52,66,64.0],[123,-52,67,64.0],[123,-52,68,64.0],[123,-52,69,64.0],[123,-52,70,64.0],[123,-52,71,64.0],[123,-52,72,64.0],[123,-52,73,64.0],[123,-52,74,64.0],[123,-52,75,64.0],[123,-52,76,64.0],[123,-52,77,64.0],[123,-52,78,64.0],[123,-52,79,64.0],[123,-51,64,64.0],[123,-51,65,64.0],[123,-51,66,64.0],[123,-51,67,64.0],[123,-51,68,64.0],[123,-51,69,64.0],[123,-51,70,64.0],[123,-51,71,64.0],[123,-51,72,64.0],[123,-51,73,64.0],[123,-51,74,64.0],[123,-51,75,64.0],[123,-51,76,64.0],[123,-51,77,64.0],[123,-51,78,64.0],[123,-51,79,64.0],[123,-50,64,64.0],[123,-50,65,64.0],[123,-50,66,64.0],[123,-50,67,64.0],[123,-50,68,64.0],[123,-50,69,64.0],[123,-50,70,64.0],[123,-50,71,64.0],[123,-50,72,64.0],[123,-50,73,64.0],[123,-50,74,64.0],[123,-50,75,64.0],[123,-50,76,64.0],[123,-50,77,64.0],[123,-50,78,64.0],[123,-50,79,64.0],[123,-49,64,64.0],[123,-49,65,64.0],[123,-49,66,64.0],[123,-49,67,64.0],[123,-49,68,64.0],[123,-49,69,64.0],[123,-49,70,64.0],[123,-49,71,64.0],[123,-49,72,64.0],[123,-49,73,64.0],[123,-49,74,64.0],[123,-49,75,64.0],[123,-49,76,64.0],[123,-49,77,64.0],[123,-49,78,64.0],[123,-49,79,64.0],[123,-48,64,64.0],[123,-48,65,64.0],[123,-48,66,64.0],[123,-48,67,64.0],[123,-48,68,64.0],[123,-48,69,64.0],[123,-48,70,64.0],[123,-48,71,64.0],[123,-48,72,64.0],[123,-48,73,64.0],[123,-48,74,64.0],[123,-48,75,64.0],[123,-48,76,64.0],[123,-48,77,64.0],[123,-48,78,64.0],[123,-48,79,64.0],[123,-47,64,64.0],[123,-47,65,64.0],[123,-47,66,64.0],[123,-47,67,64.0],[123,-47,68,64.0],[123,-47,69,64.0],[123,-47,70,64.0],[123,-47,71,64.0],[123,-47,72,64.0],[123,-47,73,64.0],[123,-47,74,64.0],[123,-47,75,64.0],[123,-47,76,64.0],[123,-47,77,64.0],[123,-47,78,64.0],[123,-47,79,64.0],[123,-46,64,64.0],[123,-46,65,64.0],[123,-46,66,64.0],[123,-46,67,64.0],[123,-46,68,64.0],[123,-46,69,64.0],[123,-46,70,64.0],[123,-46,71,64.0],[123,-46,72,64.0],[123,-46,73,64.0],[123,-46,74,64.0],[123,-46,75,64.0],[123,-46,76,64.0],[123,-46,77,64.0],[123,-46,78,64.0],[123,-46,79,64.0],[123,-45,64,64.0],[123,-45,65,64.0],[123,-45,66,64.0],[123,-45,67,64.0],[123,-45,68,64.0],[123,-45,69,64.0],[123,-45,70,64.0],[123,-45,71,64.0],[123,-45,72,64.0],[123,-45,73,64.0],[123,-45,74,64.0],[123,-45,75,64.0],[123,-45,76,64.0],[123,-45,77,64.0],[123,-45,78,64.0],[123,-45,79,64.0],[123,-44,64,64.0],[123,-44,65,64.0],[123,-44,66,64.0],[123,-44,67,64.0],[123,-44,68,64.0],[123,-44,69,64.0],[123,-44,70,64.0],[123,-44,71,64.0],[123,-44,72,64.0],[123,-44,73,64.0],[123,-44,74,64.0],[123,-44,75,64.0],[123,-44,76,64.0],[123,-44,77,64.0],[123,-44,78,64.0],[123,-44,79,64.0],[123,-43,64,64.0],[123,-43,65,64.0],[123,-43,66,64.0],[123,-43,67,64.0],[123,-43,68,64.0],[123,-43,69,64.0],[123,-43,70,64.0],[123,-43,71,64.0],[123,-43,72,64.0],[123,-43,73,64.0],[123,-43,74,64.0],[123,-43,75,64.0],[123,-43,76,64.0],[123,-43,77,64.0],[123,-43,78,64.0],[123,-43,79,64.0],[123,-42,64,64.0],[123,-42,65,64.0],[123,-42,66,64.0],[123,-42,67,64.0],[123,-42,68,64.0],[123,-42,69,64.0],[123,-42,70,64.0],[123,-42,71,64.0],[123,-42,72,64.0],[123,-42,73,64.0],[123,-42,74,64.0],[123,-42,75,64.0],[123,-42,76,64.0],[123,-42,77,64.0],[123,-42,78,64.0],[123,-42,79,64.0],[123,-41,64,64.0],[123,-41,65,64.0],[123,-41,66,64.0],[123,-41,67,64.0],[123,-41,68,64.0],[123,-41,69,64.0],[123,-41,70,64.0],[123,-41,71,64.0],[123,-41,72,64.0],[123,-41,73,64.0],[123,-41,74,64.0],[123,-41,75,64.0],[123,-41,76,64.0],[123,-41,77,64.0],[123,-41,78,64.0],[123,-41,79,64.0],[123,-40,64,64.0],[123,-40,65,64.0],[123,-40,66,64.0],[123,-40,67,64.0],[123,-40,68,64.0],[123,-40,69,64.0],[123,-40,70,64.0],[123,-40,71,64.0],[123,-40,72,64.0],[123,-40,73,64.0],[123,-40,74,64.0],[123,-40,75,64.0],[123,-40,76,64.0],[123,-40,77,64.0],[123,-40,78,64.0],[123,-40,79,64.0],[123,-39,64,64.0],[123,-39,65,64.0],[123,-39,66,64.0],[123,-39,67,64.0],[123,-39,68,64.0],[123,-39,69,64.0],[123,-39,70,64.0],[123,-39,71,64.0],[123,-39,72,64.0],[123,-39,73,64.0],[123,-39,74,64.0],[123,-39,75,64.0],[123,-39,76,64.0],[123,-39,77,64.0],[123,-39,78,64.0],[123,-39,79,64.0],[123,-38,64,64.0],[123,-38,65,64.0],[123,-38,66,64.0],[123,-38,67,64.0],[123,-38,68,64.0],[123,-38,69,64.0],[123,-38,70,64.0],[123,-38,71,64.0],[123,-38,72,64.0],[123,-38,73,64.0],[123,-38,74,64.0],[123,-38,75,64.0],[123,-38,76,64.0],[123,-38,77,64.0],[123,-38,78,64.0],[123,-38,79,64.0],[123,-37,64,64.0],[123,-37,65,64.0],[123,-37,66,64.0],[123,-37,67,64.0],[123,-37,68,64.0],[123,-37,69,64.0],[123,-37,70,64.0],[123,-37,71,64.0],[123,-37,72,64.0],[123,-37,73,64.0],[123,-37,74,64.0],[123,-37,75,64.0],[123,-37,76,64.0],[123,-37,77,64.0],[123,-37,78,64.0],[123,-37,79,64.0],[123,-36,64,64.0],[123,-36,65,64.0],[123,-36,66,64.0],[123,-36,67,64.0],[123,-36,68,64.0],[123,-36,69,64.0],[123,-36,70,64.0],[123,-36,71,64.0],[123,-36,72,64.0],[123,-36,73,64.0],[123,-36,74,64.0],[123,-36,75,64.0],[123,-36,76,64.0],[123,-36,77,64.0],[123,-36,78,64.0],[123,-36,79,64.0],[123,-35,64,64.0],[123,-35,65,64.0],[123,-35,66,64.0],[123,-35,67,64.0],[123,-35,68,64.0],[123,-35,69,64.0],[123,-35,70,64.0],[123,-35,71,64.0],[123,-35,72,64.0],[123,-35,73,64.0],[123,-35,74,64.0],[123,-35,75,64.0],[123,-35,76,64.0],[123,-35,77,64.0],[123,-35,78,64.0],[123,-35,79,64.0],[123,-34,64,64.0],[123,-34,65,64.0],[123,-34,66,64.0],[123,-34,67,64.0],[123,-34,68,64.0],[123,-34,69,64.0],[123,-34,70,64.0],[123,-34,71,64.0],[123,-34,72,64.0],[123,-34,73,64.0],[123,-34,74,64.0],[123,-34,75,64.0],[123,-34,76,64.0],[123,-34,77,64.0],[123,-34,78,64.0],[123,-34,79,64.0],[123,-33,64,64.0],[123,-33,65,64.0],[123,-33,66,64.0],[123,-33,67,64.0],[123,-33,68,64.0],[123,-33,69,64.0],[123,-33,70,64.0],[123,-33,71,64.0],[123,-33,72,64.0],[123,-33,73,64.0],[123,-33,74,64.0],[123,-33,75,64.0],[123,-33,76,64.0],[123,-33,77,64.0],[123,-33,78,64.0],[123,-33,79,64.0],[123,-32,64,64.0],[123,-32,65,64.0],[123,-32,66,64.0],[123,-32,67,64.0],[123,-32,68,64.0],[123,-32,69,64.0],[123,-32,70,64.0],[123,-32,71,64.0],[123,-32,72,64.0],[123,-32,73,64.0],[123,-32,74,64.0],[123,-32,75,64.0],[123,-32,76,64.0],[123,-32,77,64.0],[123,-32,78,64.0],[123,-32,79,64.0],[123,-31,64,64.0],[123,-31,65,64.0],[123,-31,66,64.0],[123,-31,67,64.0],[123,-31,68,64.0],[123,-31,69,64.0],[123,-31,70,64.0],[123,-31,71,64.0],[123,-31,72,64.0],[123,-31,73,64.0],[123,-31,74,64.0],[123,-31,75,64.0],[123,-31,76,64.0],[123,-31,77,64.0],[123,-31,78,64.0],[123,-31,79,64.0],[123,-30,64,64.0],[123,-30,65,64.0],[123,-30,66,64.0],[123,-30,67,64.0],[123,-30,68,64.0],[123,-30,69,64.0],[123,-30,70,64.0],[123,-30,71,64.0],[123,-30,72,64.0],[123,-30,73,64.0],[123,-30,74,64.0],[123,-30,75,64.0],[123,-30,76,64.0],[123,-30,77,64.0],[123,-30,78,64.0],[123,-30,79,64.0],[123,-29,64,64.0],[123,-29,65,64.0],[123,-29,66,64.0],[123,-29,67,64.0],[123,-29,68,64.0],[123,-29,69,64.0],[123,-29,70,64.0],[123,-29,71,64.0],[123,-29,72,64.0],[123,-29,73,64.0],[123,-29,74,64.0],[123,-29,75,64.0],[123,-29,76,64.0],[123,-29,77,64.0],[123,-29,78,64.0],[123,-29,79,64.0],[123,-28,64,64.0],[123,-28,65,64.0],[123,-28,66,64.0],[123,-28,67,64.0],[123,-28,68,64.0],[123,-28,69,64.0],[123,-28,70,64.0],[123,-28,71,64.0],[123,-28,72,64.0],[123,-28,73,64.0],[123,-28,74,64.0],[123,-28,75,64.0],[123,-28,76,64.0],[123,-28,77,64.0],[123,-28,78,64.0],[123,-28,79,64.0],[123,-27,64,64.0],[123,-27,65,64.0],[123,-27,66,64.0],[123,-27,67,64.0],[123,-27,68,64.0],[123,-27,69,64.0],[123,-27,70,64.0],[123,-27,71,64.0],[123,-27,72,64.0],[123,-27,73,64.0],[123,-27,74,64.0],[123,-27,75,64.0],[123,-27,76,64.0],[123,-27,77,64.0],[123,-27,78,64.0],[123,-27,79,64.0],[123,-26,64,64.0],[123,-26,65,64.0],[123,-26,66,64.0],[123,-26,67,64.0],[123,-26,68,64.0],[123,-26,69,64.0],[123,-26,70,64.0],[123,-26,71,64.0],[123,-26,72,64.0],[123,-26,73,64.0],[123,-26,74,64.0],[123,-26,75,64.0],[123,-26,76,64.0],[123,-26,77,64.0],[123,-26,78,64.0],[123,-26,79,64.0],[123,-25,64,64.0],[123,-25,65,64.0],[123,-25,66,64.0],[123,-25,67,64.0],[123,-25,68,64.0],[123,-25,69,64.0],[123,-25,70,64.0],[123,-25,71,64.0],[123,-25,72,64.0],[123,-25,73,64.0],[123,-25,74,64.0],[123,-25,75,64.0],[123,-25,76,64.0],[123,-25,77,64.0],[123,-25,78,64.0],[123,-25,79,64.0],[123,-24,64,64.0],[123,-24,65,64.0],[123,-24,66,64.0],[123,-24,67,64.0],[123,-24,68,64.0],[123,-24,69,64.0],[123,-24,70,64.0],[123,-24,71,64.0],[123,-24,72,64.0],[123,-24,73,64.0],[123,-24,74,64.0],[123,-24,75,64.0],[123,-24,76,64.0],[123,-24,77,64.0],[123,-24,78,64.0],[123,-24,79,64.0],[123,-23,64,64.0],[123,-23,65,64.0],[123,-23,66,64.0],[123,-23,67,64.0],[123,-23,68,64.0],[123,-23,69,64.0],[123,-23,70,64.0],[123,-23,71,64.0],[123,-23,72,64.0],[123,-23,73,64.0],[123,-23,74,64.0],[123,-23,75,64.0],[123,-23,76,64.0],[123,-23,77,64.0],[123,-23,78,64.0],[123,-23,79,64.0],[123,-22,64,64.0],[123,-22,65,64.0],[123,-22,66,64.0],[123,-22,67,64.0],[123,-22,68,64.0],[123,-22,69,64.0],[123,-22,70,64.0],[123,-22,71,64.0],[123,-22,72,64.0],[123,-22,73,64.0],[123,-22,74,64.0],[123,-22,75,64.0],[123,-22,76,64.0],[123,-22,77,64.0],[123,-22,78,64.0],[123,-22,79,64.0],[123,-21,64,64.0],[123,-21,65,64.0],[123,-21,66,64.0],[123,-21,67,64.0],[123,-21,68,64.0],[123,-21,69,64.0],[123,-21,70,64.0],[123,-21,71,64.0],[123,-21,72,64.0],[123,-21,73,64.0],[123,-21,74,64.0],[123,-21,75,64.0],[123,-21,76,64.0],[123,-21,77,64.0],[123,-21,78,64.0],[123,-21,79,64.0],[123,-20,64,64.0],[123,-20,65,64.0],[123,-20,66,64.0],[123,-20,67,64.0],[123,-20,68,64.0],[123,-20,69,64.0],[123,-20,70,64.0],[123,-20,71,64.0],[123,-20,72,64.0],[123,-20,73,64.0],[123,-20,74,64.0],[123,-20,75,64.0],[123,-20,76,64.0],[123,-20,77,64.0],[123,-20,78,64.0],[123,-20,79,64.0],[123,-19,64,64.0],[123,-19,65,64.0],[123,-19,66,64.0],[123,-19,67,64.0],[123,-19,68,64.0],[123,-19,69,64.0],[123,-19,70,64.0],[123,-19,71,64.0],[123,-19,72,64.0],[123,-19,73,64.0],[123,-19,74,64.0],[123,-19,75,64.0],[123,-19,76,64.0],[123,-19,77,64.0],[123,-19,78,64.0],[123,-19,79,64.0],[123,-18,64,64.0],[123,-18,65,64.0],[123,-18,66,64.0],[123,-18,67,64.0],[123,-18,68,64.0],[123,-18,69,64.0],[123,-18,70,64.0],[123,-18,71,64.0],[123,-18,72,64.0],[123,-18,73,64.0],[123,-18,74,64.0],[123,-18,75,64.0],[123,-18,76,64.0],[123,-18,77,64.0],[123,-18,78,64.0],[123,-18,79,64.0],[123,-17,64,64.0],[123,-17,65,64.0],[123,-17,66,64.0],[123,-17,67,64.0],[123,-17,68,64.0],[123,-17,69,64.0],[123,-17,70,64.0],[123,-17,71,64.0],[123,-17,72,64.0],[123,-17,73,64.0],[123,-17,74,64.0],[123,-17,75,64.0],[123,-17,76,64.0],[123,-17,77,64.0],[123,-17,78,64.0],[123,-17,79,64.0],[123,-16,64,64.0],[123,-16,65,64.0],[123,-16,66,64.0],[123,-16,67,64.0],[123,-16,68,64.0],[123,-16,69,64.0],[123,-16,70,64.0],[123,-16,71,64.0],[123,-16,72,64.0],[123,-16,73,64.0],[123,-16,74,64.0],[123,-16,75,64.0],[123,-16,76,64.0],[123,-16,77,64.0],[123,-16,78,64.0],[123,-16,79,64.0],[123,-15,64,64.0],[123,-15,65,64.0],[123,-15,66,64.0],[123,-15,67,64.0],[123,-15,68,64.0],[123,-15,69,64.0],[123,-15,70,64.0],[123,-15,71,64.0],[123,-15,72,64.0],[123,-15,73,64.0],[123,-15,74,64.0],[123,-15,75,64.0],[123,-15,76,64.0],[123,-15,77,64.0],[123,-15,78,64.0],[123,-15,79,64.0],[123,-14,64,64.0],[123,-14,65,64.0],[123,-14,66,64.0],[123,-14,67,64.0],[123,-14,68,64.0],[123,-14,69,64.0],[123,-14,70,64.0],[123,-14,71,64.0],[123,-14,72,64.0],[123,-14,73,64.0],[123,-14,74,64.0],[123,-14,75,64.0],[123,-14,76,64.0],[123,-14,77,64.0],[123,-14,78,64.0],[123,-14,79,64.0],[123,-13,64,64.0],[123,-13,65,64.0],[123,-13,66,64.0],[123,-13,67,64.0],[123,-13,68,64.0],[123,-13,69,64.0],[123,-13,70,64.0],[123,-13,71,64.0],[123,-13,72,64.0],[123,-13,73,64.0],[123,-13,74,64.0],[123,-13,75,64.0],[123,-13,76,64.0],[123,-13,77,64.0],[123,-13,78,64.0],[123,-13,79,64.0],[123,-12,64,64.0],[123,-12,65,64.0],[123,-12,66,64.0],[123,-12,67,64.0],[123,-12,68,64.0],[123,-12,69,64.0],[123,-12,70,64.0],[123,-12,71,64.0],[123,-12,72,64.0],[123,-12,73,64.0],[123,-12,74,64.0],[123,-12,75,64.0],[123,-12,76,64.0],[123,-12,77,64.0],[123,-12,78,64.0],[123,-12,79,64.0],[123,-11,64,64.0],[123,-11,65,64.0],[123,-11,66,64.0],[123,-11,67,64.0],[123,-11,68,64.0],[123,-11,69,64.0],[123,-11,70,64.0],[123,-11,71,64.0],[123,-11,72,64.0],[123,-11,73,64.0],[123,-11,74,64.0],[123,-11,75,64.0],[123,-11,76,64.0],[123,-11,77,64.0],[123,-11,78,64.0],[123,-11,79,64.0],[123,-10,64,64.0],[123,-10,65,64.0],[123,-10,66,64.0],[123,-10,67,64.0],[123,-10,68,64.0],[123,-10,69,64.0],[123,-10,70,64.0],[123,-10,71,64.0],[123,-10,72,64.0],[123,-10,73,64.0],[123,-10,74,64.0],[123,-10,75,64.0],[123,-10,76,64.0],[123,-10,77,64.0],[123,-10,78,64.0],[123,-10,79,64.0],[123,-9,64,64.0],[123,-9,65,64.0],[123,-9,66,64.0],[123,-9,67,64.0],[123,-9,68,64.0],[123,-9,69,64.0],[123,-9,70,64.0],[123,-9,71,64.0],[123,-9,72,64.0],[123,-9,73,64.0],[123,-9,74,64.0],[123,-9,75,64.0],[123,-9,76,64.0],[123,-9,77,64.0],[123,-9,78,64.0],[123,-9,79,64.0],[123,-8,64,64.0],[123,-8,65,64.0],[123,-8,66,64.0],[123,-8,67,64.0],[123,-8,68,64.0],[123,-8,69,64.0],[123,-8,70,64.0],[123,-8,71,64.0],[123,-8,72,64.0],[123,-8,73,64.0],[123,-8,74,64.0],[123,-8,75,64.0],[123,-8,76,64.0],[123,-8,77,64.0],[123,-8,78,64.0],[123,-8,79,64.0],[123,-7,64,64.0],[123,-7,65,64.0],[123,-7,66,64.0],[123,-7,67,64.0],[123,-7,68,64.0],[123,-7,69,64.0],[123,-7,70,64.0],[123,-7,71,64.0],[123,-7,72,64.0],[123,-7,73,64.0],[123,-7,74,64.0],[123,-7,75,64.0],[123,-7,76,64.0],[123,-7,77,64.0],[123,-7,78,64.0],[123,-7,79,64.0],[123,-6,64,64.0],[123,-6,65,64.0],[123,-6,66,64.0],[123,-6,67,64.0],[123,-6,68,64.0],[123,-6,69,64.0],[123,-6,70,64.0],[123,-6,71,64.0],[123,-6,72,64.0],[123,-6,73,64.0],[123,-6,74,64.0],[123,-6,75,64.0],[123,-6,76,64.0],[123,-6,77,64.0],[123,-6,78,64.0],[123,-6,79,64.0],[123,-5,64,64.0],[123,-5,65,64.0],[123,-5,66,64.0],[123,-5,67,64.0],[123,-5,68,64.0],[123,-5,69,64.0],[123,-5,70,64.0],[123,-5,71,64.0],[123,-5,72,64.0],[123,-5,73,64.0],[123,-5,74,64.0],[123,-5,75,64.0],[123,-5,76,64.0],[123,-5,77,64.0],[123,-5,78,64.0],[123,-5,79,64.0],[123,-4,64,64.0],[123,-4,65,64.0],[123,-4,66,64.0],[123,-4,67,64.0],[123,-4,68,64.0],[123,-4,69,64.0],[123,-4,70,64.0],[123,-4,71,64.0],[123,-4,72,64.0],[123,-4,73,64.0],[123,-4,74,64.0],[123,-4,75,64.0],[123,-4,76,64.0],[123,-4,77,64.0],[123,-4,78,64.0],[123,-4,79,64.0],[123,-3,64,64.0],[123,-3,65,64.0],[123,-3,66,64.0],[123,-3,67,64.0],[123,-3,68,64.0],[123,-3,69,64.0],[123,-3,70,64.0],[123,-3,71,64.0],[123,-3,72,64.0],[123,-3,73,64.0],[123,-3,74,64.0],[123,-3,75,64.0],[123,-3,76,64.0],[123,-3,77,64.0],[123,-3,78,64.0],[123,-3,79,64.0],[123,-2,64,64.0],[123,-2,65,64.0],[123,-2,66,64.0],[123,-2,67,64.0],[123,-2,68,64.0],[123,-2,69,64.0],[123,-2,70,64.0],[123,-2,71,64.0],[123,-2,72,64.0],[123,-2,73,64.0],[123,-2,74,64.0],[123,-2,75,64.0],[123,-2,76,64.0],[123,-2,77,64.0],[123,-2,78,64.0],[123,-2,79,64.0],[123,-1,64,64.0],[123,-1,65,64.0],[123,-1,66,64.0],[123,-1,67,64.0],[123,-1,68,64.0],[123,-1,69,64.0],[123,-1,70,64.0],[123,-1,71,64.0],[123,-1,72,64.0],[123,-1,73,64.0],[123,-1,74,64.0],[123,-1,75,64.0],[123,-1,76,64.0],[123,-1,77,64.0],[123,-1,78,64.0],[123,-1,79,64.0],[123,0,64,64.0],[123,0,65,64.0],[123,0,66,64.0],[123,0,67,64.0],[123,0,68,64.0],[123,0,69,64.0],[123,0,70,64.0],[123,0,71,64.0],[123,0,72,64.0],[123,0,73,64.0],[123,0,74,64.0],[123,0,75,64.0],[123,0,76,64.0],[123,0,77,64.0],[123,0,78,64.0],[123,0,79,64.0],[123,1,64,64.0],[123,1,65,64.0],[123,1,66,64.0],[123,1,67,64.0],[123,1,68,64.0],[123,1,69,64.0],[123,1,70,64.0],[123,1,71,64.0],[123,1,72,64.0],[123,1,73,64.0],[123,1,74,64.0],[123,1,75,64.0],[123,1,76,64.0],[123,1,77,64.0],[123,1,78,64.0],[123,1,79,64.0],[123,2,64,64.0],[123,2,65,64.0],[123,2,66,64.0],[123,2,67,64.0],[123,2,68,64.0],[123,2,69,64.0],[123,2,70,64.0],[123,2,71,64.0],[123,2,72,64.0],[123,2,73,64.0],[123,2,74,64.0],[123,2,75,64.0],[123,2,76,64.0],[123,2,77,64.0],[123,2,78,64.0],[123,2,79,64.0],[123,3,64,64.0],[123,3,65,64.0],[123,3,66,64.0],[123,3,67,64.0],[123,3,68,64.0],[123,3,69,64.0],[123,3,70,64.0],[123,3,71,64.0],[123,3,72,64.0],[123,3,73,64.0],[123,3,74,64.0],[123,3,75,64.0],[123,3,76,64.0],[123,3,77,64.0],[123,3,78,64.0],[123,3,79,64.0],[123,4,64,64.0],[123,4,65,64.0],[123,4,66,64.0],[123,4,67,64.0],[123,4,68,64.0],[123,4,69,64.0],[123,4,70,64.0],[123,4,71,64.0],[123,4,72,64.0],[123,4,73,64.0],[123,4,74,64.0],[123,4,75,64.0],[123,4,76,64.0],[123,4,77,64.0],[123,4,78,64.0],[123,4,79,64.0],[123,5,64,64.0],[123,5,65,64.0],[123,5,66,64.0],[123,5,67,64.0],[123,5,68,64.0],[123,5,69,64.0],[123,5,70,64.0],[123,5,71,64.0],[123,5,72,64.0],[123,5,73,64.0],[123,5,74,64.0],[123,5,75,64.0],[123,5,76,64.0],[123,5,77,64.0],[123,5,78,64.0],[123,5,79,64.0],[123,6,64,64.0],[123,6,65,64.0],[123,6,66,64.0],[123,6,67,64.0],[123,6,68,64.0],[123,6,69,64.0],[123,6,70,64.0],[123,6,71,64.0],[123,6,72,64.0],[123,6,73,64.0],[123,6,74,64.0],[123,6,75,64.0],[123,6,76,64.0],[123,6,77,64.0],[123,6,78,64.0],[123,6,79,64.0],[123,7,64,64.0],[123,7,65,64.0],[123,7,66,64.0],[123,7,67,64.0],[123,7,68,64.0],[123,7,69,64.0],[123,7,70,64.0],[123,7,71,64.0],[123,7,72,64.0],[123,7,73,64.0],[123,7,74,64.0],[123,7,75,64.0],[123,7,76,64.0],[123,7,77,64.0],[123,7,78,64.0],[123,7,79,64.0],[123,8,64,64.0],[123,8,65,64.0],[123,8,66,64.0],[123,8,67,64.0],[123,8,68,64.0],[123,8,69,64.0],[123,8,70,64.0],[123,8,71,64.0],[123,8,72,64.0],[123,8,73,64.0],[123,8,74,64.0],[123,8,75,64.0],[123,8,76,64.0],[123,8,77,64.0],[123,8,78,64.0],[123,8,79,64.0],[123,9,64,64.0],[123,9,65,64.0],[123,9,66,64.0],[123,9,67,64.0],[123,9,68,64.0],[123,9,69,64.0],[123,9,70,64.0],[123,9,71,64.0],[123,9,72,64.0],[123,9,73,64.0],[123,9,74,64.0],[123,9,75,64.0],[123,9,76,64.0],[123,9,77,64.0],[123,9,78,64.0],[123,9,79,64.0],[123,10,64,64.0],[123,10,65,64.0],[123,10,66,64.0],[123,10,67,64.0],[123,10,68,64.0],[123,10,69,64.0],[123,10,70,64.0],[123,10,71,64.0],[123,10,72,64.0],[123,10,73,64.0],[123,10,74,64.0],[123,10,75,64.0],[123,10,76,64.0],[123,10,77,64.0],[123,10,78,64.0],[123,10,79,64.0],[123,11,64,64.0],[123,11,65,64.0],[123,11,66,64.0],[123,11,67,64.0],[123,11,68,64.0],[123,11,69,64.0],[123,11,70,64.0],[123,11,71,64.0],[123,11,72,64.0],[123,11,73,64.0],[123,11,74,64.0],[123,11,75,64.0],[123,11,76,64.0],[123,11,77,64.0],[123,11,78,64.0],[123,11,79,64.0],[123,12,64,64.0],[123,12,65,64.0],[123,12,66,64.0],[123,12,67,64.0],[123,12,68,64.0],[123,12,69,64.0],[123,12,70,64.0],[123,12,71,64.0],[123,12,72,64.0],[123,12,73,64.0],[123,12,74,64.0],[123,12,75,64.0],[123,12,76,64.0],[123,12,77,64.0],[123,12,78,64.0],[123,12,79,64.0],[123,13,64,64.0],[123,13,65,64.0],[123,13,66,64.0],[123,13,67,64.0],[123,13,68,64.0],[123,13,69,64.0],[123,13,70,64.0],[123,13,71,64.0],[123,13,72,64.0],[123,13,73,64.0],[123,13,74,64.0],[123,13,75,64.0],[123,13,76,64.0],[123,13,77,64.0],[123,13,78,64.0],[123,13,79,64.0],[123,14,64,64.0],[123,14,65,64.0],[123,14,66,64.0],[123,14,67,64.0],[123,14,68,64.0],[123,14,69,64.0],[123,14,70,64.0],[123,14,71,64.0],[123,14,72,64.0],[123,14,73,64.0],[123,14,74,64.0],[123,14,75,64.0],[123,14,76,64.0],[123,14,77,64.0],[123,14,78,64.0],[123,14,79,64.0],[123,15,64,64.0],[123,15,65,64.0],[123,15,66,64.0],[123,15,67,64.0],[123,15,68,64.0],[123,15,69,64.0],[123,15,70,64.0],[123,15,71,64.0],[123,15,72,64.0],[123,15,73,64.0],[123,15,74,64.0],[123,15,75,64.0],[123,15,76,64.0],[123,15,77,64.0],[123,15,78,64.0],[123,15,79,64.0],[123,16,64,64.0],[123,16,65,64.0],[123,16,66,64.0],[123,16,67,64.0],[123,16,68,64.0],[123,16,69,64.0],[123,16,70,64.0],[123,16,71,64.0],[123,16,72,64.0],[123,16,73,64.0],[123,16,74,64.0],[123,16,75,64.0],[123,16,76,64.0],[123,16,77,64.0],[123,16,78,64.0],[123,16,79,64.0],[123,17,64,64.0],[123,17,65,64.0],[123,17,66,64.0],[123,17,67,64.0],[123,17,68,64.0],[123,17,69,64.0],[123,17,70,64.0],[123,17,71,64.0],[123,17,72,64.0],[123,17,73,64.0],[123,17,74,64.0],[123,17,75,64.0],[123,17,76,64.0],[123,17,77,64.0],[123,17,78,64.0],[123,17,79,64.0],[123,18,64,64.0],[123,18,65,64.0],[123,18,66,64.0],[123,18,67,64.0],[123,18,68,64.0],[123,18,69,64.0],[123,18,70,64.0],[123,18,71,64.0],[123,18,72,64.0],[123,18,73,64.0],[123,18,74,64.0],[123,18,75,64.0],[123,18,76,64.0],[123,18,77,64.0],[123,18,78,64.0],[123,18,79,64.0],[123,19,64,64.0],[123,19,65,64.0],[123,19,66,64.0],[123,19,67,64.0],[123,19,68,64.0],[123,19,69,64.0],[123,19,70,64.0],[123,19,71,64.0],[123,19,72,64.0],[123,19,73,64.0],[123,19,74,64.0],[123,19,75,64.0],[123,19,76,64.0],[123,19,77,64.0],[123,19,78,64.0],[123,19,79,64.0],[123,20,64,64.0],[123,20,65,64.0],[123,20,66,64.0],[123,20,67,64.0],[123,20,68,64.0],[123,20,69,64.0],[123,20,70,64.0],[123,20,71,64.0],[123,20,72,64.0],[123,20,73,64.0],[123,20,74,64.0],[123,20,75,64.0],[123,20,76,64.0],[123,20,77,64.0],[123,20,78,64.0],[123,20,79,64.0],[123,21,64,64.0],[123,21,65,64.0],[123,21,66,64.0],[123,21,67,64.0],[123,21,68,64.0],[123,21,69,64.0],[123,21,70,64.0],[123,21,71,64.0],[123,21,72,64.0],[123,21,73,64.0],[123,21,74,64.0],[123,21,75,64.0],[123,21,76,64.0],[123,21,77,64.0],[123,21,78,64.0],[123,21,79,64.0],[123,22,64,64.0],[123,22,65,64.0],[123,22,66,64.0],[123,22,67,64.0],[123,22,68,64.0],[123,22,69,64.0],[123,22,70,64.0],[123,22,71,64.0],[123,22,72,64.0],[123,22,73,64.0],[123,22,74,64.0],[123,22,75,64.0],[123,22,76,64.0],[123,22,77,64.0],[123,22,78,64.0],[123,22,79,64.0],[123,23,64,64.0],[123,23,65,64.0],[123,23,66,64.0],[123,23,67,64.0],[123,23,68,64.0],[123,23,69,64.0],[123,23,70,64.0],[123,23,71,64.0],[123,23,72,64.0],[123,23,73,64.0],[123,23,74,64.0],[123,23,75,64.0],[123,23,76,64.0],[123,23,77,64.0],[123,23,78,64.0],[123,23,79,64.0],[123,24,64,64.0],[123,24,65,64.0],[123,24,66,64.0],[123,24,67,64.0],[123,24,68,64.0],[123,24,69,64.0],[123,24,70,64.0],[123,24,71,64.0],[123,24,72,64.0],[123,24,73,64.0],[123,24,74,64.0],[123,24,75,64.0],[123,24,76,64.0],[123,24,77,64.0],[123,24,78,64.0],[123,24,79,64.0],[123,25,64,64.0],[123,25,65,64.0],[123,25,66,64.0],[123,25,67,64.0],[123,25,68,64.0],[123,25,69,64.0],[123,25,70,64.0],[123,25,71,64.0],[123,25,72,64.0],[123,25,73,64.0],[123,25,74,64.0],[123,25,75,64.0],[123,25,76,64.0],[123,25,77,64.0],[123,25,78,64.0],[123,25,79,64.0],[123,26,64,64.0],[123,26,65,64.0],[123,26,66,64.0],[123,26,67,64.0],[123,26,68,64.0],[123,26,69,64.0],[123,26,70,64.0],[123,26,71,64.0],[123,26,72,64.0],[123,26,73,64.0],[123,26,74,64.0],[123,26,75,64.0],[123,26,76,64.0],[123,26,77,64.0],[123,26,78,64.0],[123,26,79,64.0],[123,27,64,64.0],[123,27,65,64.0],[123,27,66,64.0],[123,27,67,64.0],[123,27,68,64.0],[123,27,69,64.0],[123,27,70,64.0],[123,27,71,64.0],[123,27,72,64.0],[123,27,73,64.0],[123,27,74,64.0],[123,27,75,64.0],[123,27,76,64.0],[123,27,77,64.0],[123,27,78,64.0],[123,27,79,64.0],[123,28,64,64.0],[123,28,65,64.0],[123,28,66,64.0],[123,28,67,64.0],[123,28,68,64.0],[123,28,69,64.0],[123,28,70,64.0],[123,28,71,64.0],[123,28,72,64.0],[123,28,73,64.0],[123,28,74,64.0],[123,28,75,64.0],[123,28,76,64.0],[123,28,77,64.0],[123,28,78,64.0],[123,28,79,64.0],[123,29,64,64.0],[123,29,65,64.0],[123,29,66,64.0],[123,29,67,64.0],[123,29,68,64.0],[123,29,69,64.0],[123,29,70,64.0],[123,29,71,64.0],[123,29,72,64.0],[123,29,73,64.0],[123,29,74,64.0],[123,29,75,64.0],[123,29,76,64.0],[123,29,77,64.0],[123,29,78,64.0],[123,29,79,64.0],[123,30,64,64.0],[123,30,65,64.0],[123,30,66,64.0],[123,30,67,64.0],[123,30,68,64.0],[123,30,69,64.0],[123,30,70,64.0],[123,30,71,64.0],[123,30,72,64.0],[123,30,73,64.0],[123,30,74,64.0],[123,30,75,64.0],[123,30,76,64.0],[123,30,77,64.0],[123,30,78,64.0],[123,30,79,64.0],[123,31,64,64.0],[123,31,65,64.0],[123,31,66,64.0],[123,31,67,64.0],[123,31,68,64.0],[123,31,69,64.0],[123,31,70,64.0],[123,31,71,64.0],[123,31,72,64.0],[123,31,73,64.0],[123,31,74,64.0],[123,31,75,64.0],[123,31,76,64.0],[123,31,77,64.0],[123,31,78,64.0],[123,31,79,64.0],[123,32,64,64.0],[123,32,65,64.0],[123,32,66,64.0],[123,32,67,64.0],[123,32,68,64.0],[123,32,69,64.0],[123,32,70,64.0],[123,32,71,64.0],[123,32,72,64.0],[123,32,73,64.0],[123,32,74,64.0],[123,32,75,64.0],[123,32,76,64.0],[123,32,77,64.0],[123,32,78,64.0],[123,32,79,64.0],[123,33,64,64.0],[123,33,65,64.0],[123,33,66,64.0],[123,33,67,64.0],[123,33,68,64.0],[123,33,69,64.0],[123,33,70,64.0],[123,33,71,64.0],[123,33,72,64.0],[123,33,73,64.0],[123,33,74,64.0],[123,33,75,64.0],[123,33,76,64.0],[123,33,77,64.0],[123,33,78,64.0],[123,33,79,64.0],[123,34,64,64.0],[123,34,65,64.0],[123,34,66,64.0],[123,34,67,64.0],[123,34,68,64.0],[123,34,69,64.0],[123,34,70,64.0],[123,34,71,64.0],[123,34,72,64.0],[123,34,73,64.0],[123,34,74,64.0],[123,34,75,64.0],[123,34,76,64.0],[123,34,77,64.0],[123,34,78,64.0],[123,34,79,64.0],[123,35,64,64.0],[123,35,65,64.0],[123,35,66,64.0],[123,35,67,64.0],[123,35,68,64.0],[123,35,69,64.0],[123,35,70,64.0],[123,35,71,64.0],[123,35,72,64.0],[123,35,73,64.0],[123,35,74,64.0],[123,35,75,64.0],[123,35,76,64.0],[123,35,77,64.0],[123,35,78,64.0],[123,35,79,64.0],[123,36,64,64.0],[123,36,65,64.0],[123,36,66,64.0],[123,36,67,64.0],[123,36,68,64.0],[123,36,69,64.0],[123,36,70,64.0],[123,36,71,64.0],[123,36,72,64.0],[123,36,73,64.0],[123,36,74,64.0],[123,36,75,64.0],[123,36,76,64.0],[123,36,77,64.0],[123,36,78,64.0],[123,36,79,64.0],[123,37,64,64.0],[123,37,65,64.0],[123,37,66,64.0],[123,37,67,64.0],[123,37,68,64.0],[123,37,69,64.0],[123,37,70,64.0],[123,37,71,64.0],[123,37,72,64.0],[123,37,73,64.0],[123,37,74,64.0],[123,37,75,64.0],[123,37,76,64.0],[123,37,77,64.0],[123,37,78,64.0],[123,37,79,64.0],[123,38,64,64.0],[123,38,65,64.0],[123,38,66,64.0],[123,38,67,64.0],[123,38,68,64.0],[123,38,69,64.0],[123,38,70,64.0],[123,38,71,64.0],[123,38,72,64.0],[123,38,73,64.0],[123,38,74,64.0],[123,38,75,64.0],[123,38,76,64.0],[123,38,77,64.0],[123,38,78,64.0],[123,38,79,64.0],[123,39,64,64.0],[123,39,65,64.0],[123,39,66,64.0],[123,39,67,64.0],[123,39,68,64.0],[123,39,69,64.0],[123,39,70,64.0],[123,39,71,64.0],[123,39,72,64.0],[123,39,73,64.0],[123,39,74,64.0],[123,39,75,64.0],[123,39,76,64.0],[123,39,77,64.0],[123,39,78,64.0],[123,39,79,64.0],[123,40,64,64.0],[123,40,65,64.0],[123,40,66,64.0],[123,40,67,64.0],[123,40,68,64.0],[123,40,69,64.0],[123,40,70,64.0],[123,40,71,64.0],[123,40,72,64.0],[123,40,73,64.0],[123,40,74,64.0],[123,40,75,64.0],[123,40,76,64.0],[123,40,77,64.0],[123,40,78,64.0],[123,40,79,64.0],[123,41,64,64.0],[123,41,65,64.0],[123,41,66,64.0],[123,41,67,64.0],[123,41,68,64.0],[123,41,69,64.0],[123,41,70,64.0],[123,41,71,64.0],[123,41,72,64.0],[123,41,73,64.0],[123,41,74,64.0],[123,41,75,64.0],[123,41,76,64.0],[123,41,77,64.0],[123,41,78,64.0],[123,41,79,64.0],[123,42,64,64.0],[123,42,65,64.0],[123,42,66,64.0],[123,42,67,64.0],[123,42,68,64.0],[123,42,69,64.0],[123,42,70,64.0],[123,42,71,64.0],[123,42,72,64.0],[123,42,73,64.0],[123,42,74,64.0],[123,42,75,64.0],[123,42,76,64.0],[123,42,77,64.0],[123,42,78,64.0],[123,42,79,64.0],[123,43,64,64.0],[123,43,65,64.0],[123,43,66,64.0],[123,43,67,64.0],[123,43,68,64.0],[123,43,69,64.0],[123,43,70,64.0],[123,43,71,64.0],[123,43,72,64.0],[123,43,73,64.0],[123,43,74,64.0],[123,43,75,64.0],[123,43,76,64.0],[123,43,77,64.0],[123,43,78,64.0],[123,43,79,64.0],[123,44,64,64.0],[123,44,65,64.0],[123,44,66,64.0],[123,44,67,64.0],[123,44,68,64.0],[123,44,69,64.0],[123,44,70,64.0],[123,44,71,64.0],[123,44,72,64.0],[123,44,73,64.0],[123,44,74,64.0],[123,44,75,64.0],[123,44,76,64.0],[123,44,77,64.0],[123,44,78,64.0],[123,44,79,64.0],[123,45,64,64.0],[123,45,65,64.0],[123,45,66,64.0],[123,45,67,64.0],[123,45,68,64.0],[123,45,69,64.0],[123,45,70,64.0],[123,45,71,64.0],[123,45,72,64.0],[123,45,73,64.0],[123,45,74,64.0],[123,45,75,64.0],[123,45,76,64.0],[123,45,77,64.0],[123,45,78,64.0],[123,45,79,64.0],[123,46,64,64.0],[123,46,65,64.0],[123,46,66,64.0],[123,46,67,64.0],[123,46,68,64.0],[123,46,69,64.0],[123,46,70,64.0],[123,46,71,64.0],[123,46,72,64.0],[123,46,73,64.0],[123,46,74,64.0],[123,46,75,64.0],[123,46,76,64.0],[123,46,77,64.0],[123,46,78,64.0],[123,46,79,64.0],[123,47,64,64.0],[123,47,65,64.0],[123,47,66,64.0],[123,47,67,64.0],[123,47,68,64.0],[123,47,69,64.0],[123,47,70,64.0],[123,47,71,64.0],[123,47,72,64.0],[123,47,73,64.0],[123,47,74,64.0],[123,47,75,64.0],[123,47,76,64.0],[123,47,77,64.0],[123,47,78,64.0],[123,47,79,64.0],[123,48,64,64.0],[123,48,65,64.0],[123,48,66,64.0],[123,48,67,64.0],[123,48,68,64.0],[123,48,69,64.0],[123,48,70,64.0],[123,48,71,64.0],[123,48,72,64.0],[123,48,73,64.0],[123,48,74,64.0],[123,48,75,64.0],[123,48,76,64.0],[123,48,77,64.0],[123,48,78,64.0],[123,48,79,64.0],[123,49,64,64.0],[123,49,65,64.0],[123,49,66,64.0],[123,49,67,64.0],[123,49,68,64.0],[123,49,69,64.0],[123,49,70,64.0],[123,49,71,64.0],[123,49,72,64.0],[123,49,73,64.0],[123,49,74,64.0],[123,49,75,64.0],[123,49,76,64.0],[123,49,77,64.0],[123,49,78,64.0],[123,49,79,64.0],[123,50,64,64.0],[123,50,65,64.0],[123,50,66,64.0],[123,50,67,64.0],[123,50,68,64.0],[123,50,69,64.0],[123,50,70,64.0],[123,50,71,64.0],[123,50,72,64.0],[123,50,73,64.0],[123,50,74,64.0],[123,50,75,64.0],[123,50,76,64.0],[123,50,77,64.0],[123,50,78,64.0],[123,50,79,64.0],[123,51,64,64.0],[123,51,65,64.0],[123,51,66,64.0],[123,51,67,64.0],[123,51,68,64.0],[123,51,69,64.0],[123,51,70,64.0],[123,51,71,64.0],[123,51,72,64.0],[123,51,73,64.0],[123,51,74,64.0],[123,51,75,64.0],[123,51,76,64.0],[123,51,77,64.0],[123,51,78,64.0],[123,51,79,64.0],[123,52,64,64.0],[123,52,65,64.0],[123,52,66,64.0],[123,52,67,64.0],[123,52,68,64.0],[123,52,69,64.0],[123,52,70,64.0],[123,52,71,64.0],[123,52,72,64.0],[123,52,73,64.0],[123,52,74,64.0],[123,52,75,64.0],[123,52,76,64.0],[123,52,77,64.0],[123,52,78,64.0],[123,52,79,64.0],[123,53,64,64.0],[123,53,65,64.0],[123,53,66,64.0],[123,53,67,64.0],[123,53,68,64.0],[123,53,69,64.0],[123,53,70,64.0],[123,53,71,64.0],[123,53,72,64.0],[123,53,73,64.0],[123,53,74,64.0],[123,53,75,64.0],[123,53,76,64.0],[123,53,77,64.0],[123,53,78,64.0],[123,53,79,64.0],[123,54,64,64.0],[123,54,65,64.0],[123,54,66,64.0],[123,54,67,64.0],[123,54,68,64.0],[123,54,69,64.0],[123,54,70,64.0],[123,54,71,64.0],[123,54,72,64.0],[123,54,73,64.0],[123,54,74,64.0],[123,54,75,64.0],[123,54,76,64.0],[123,54,77,64.0],[123,54,78,64.0],[123,54,79,64.0],[123,55,64,64.0],[123,55,65,64.0],[123,55,66,64.0],[123,55,67,64.0],[123,55,68,64.0],[123,55,69,64.0],[123,55,70,64.0],[123,55,71,64.0],[123,55,72,64.0],[123,55,73,64.0],[123,55,74,64.0],[123,55,75,64.0],[123,55,76,64.0],[123,55,77,64.0],[123,55,78,64.0],[123,55,79,64.0],[123,56,64,64.0],[123,56,65,64.0],[123,56,66,64.0],[123,56,67,64.0],[123,56,68,64.0],[123,56,69,64.0],[123,56,70,64.0],[123,56,71,64.0],[123,56,72,64.0],[123,56,73,64.0],[123,56,74,64.0],[123,56,75,64.0],[123,56,76,64.0],[123,56,77,64.0],[123,56,78,64.0],[123,56,79,64.0],[123,57,64,64.0],[123,57,65,64.0],[123,57,66,64.0],[123,57,67,64.0],[123,57,68,64.0],[123,57,69,64.0],[123,57,70,64.0],[123,57,71,64.0],[123,57,72,64.0],[123,57,73,64.0],[123,57,74,64.0],[123,57,75,64.0],[123,57,76,64.0],[123,57,77,64.0],[123,57,78,64.0],[123,57,79,64.0],[123,58,64,64.0],[123,58,65,64.0],[123,58,66,64.0],[123,58,67,64.0],[123,58,68,64.0],[123,58,69,64.0],[123,58,70,64.0],[123,58,71,64.0],[123,58,72,64.0],[123,58,73,64.0],[123,58,74,64.0],[123,58,75,64.0],[123,58,76,64.0],[123,58,77,64.0],[123,58,78,64.0],[123,58,79,64.0],[123,59,64,64.0],[123,59,65,64.0],[123,59,66,64.0],[123,59,67,64.0],[123,59,68,64.0],[123,59,69,64.0],[123,59,70,64.0],[123,59,71,64.0],[123,59,72,64.0],[123,59,73,64.0],[123,59,74,64.0],[123,59,75,64.0],[123,59,76,64.0],[123,59,77,64.0],[123,59,78,64.0],[123,59,79,64.0],[123,60,64,64.0],[123,60,65,64.0],[123,60,66,64.0],[123,60,67,64.0],[123,60,68,64.0],[123,60,69,64.0],[123,60,70,64.0],[123,60,71,64.0],[123,60,72,64.0],[123,60,73,64.0],[123,60,74,64.0],[123,60,75,64.0],[123,60,76,64.0],[123,60,77,64.0],[123,60,78,64.0],[123,60,79,64.0],[123,61,64,64.0],[123,61,65,64.0],[123,61,66,64.0],[123,61,67,64.0],[123,61,68,64.0],[123,61,69,64.0],[123,61,70,64.0],[123,61,71,64.0],[123,61,72,64.0],[123,61,73,64.0],[123,61,74,64.0],[123,61,75,64.0],[123,61,76,64.0],[123,61,77,64.0],[123,61,78,64.0],[123,61,79,64.0],[123,62,64,64.0],[123,62,65,64.0],[123,62,66,64.0],[123,62,67,64.0],[123,62,68,64.0],[123,62,69,64.0],[123,62,70,64.0],[123,62,71,64.0],[123,62,72,64.0],[123,62,73,64.0],[123,62,74,64.0],[123,62,75,64.0],[123,62,76,64.0],[123,62,77,64.0],[123,62,78,64.0],[123,62,79,64.0],[123,63,64,64.0],[123,63,65,64.0],[123,63,66,64.0],[123,63,67,64.0],[123,63,68,64.0],[123,63,69,64.0],[123,63,70,64.0],[123,63,71,64.0],[123,63,72,64.0],[123,63,73,64.0],[123,63,74,64.0],[123,63,75,64.0],[123,63,76,64.0],[123,63,77,64.0],[123,63,78,64.0],[123,63,79,64.0],[123,64,64,64.0],[123,64,65,64.0],[123,64,66,64.0],[123,64,67,64.0],[123,64,68,64.0],[123,64,69,64.0],[123,64,70,64.0],[123,64,71,64.0],[123,64,72,64.0],[123,64,73,64.0],[123,64,74,64.0],[123,64,75,64.0],[123,64,76,64.0],[123,64,77,64.0],[123,64,78,64.0],[123,64,79,64.0],[123,65,64,64.0],[123,65,65,64.0],[123,65,66,64.0],[123,65,67,64.0],[123,65,68,64.0],[123,65,69,64.0],[123,65,70,64.0],[123,65,71,64.0],[123,65,72,64.0],[123,65,73,64.0],[123,65,74,64.0],[123,65,75,64.0],[123,65,76,64.0],[123,65,77,64.0],[123,65,78,64.0],[123,65,79,64.0],[123,66,64,64.0],[123,66,65,64.0],[123,66,66,64.0],[123,66,67,64.0],[123,66,68,64.0],[123,66,69,64.0],[123,66,70,64.0],[123,66,71,64.0],[123,66,72,64.0],[123,66,73,64.0],[123,66,74,64.0],[123,66,75,64.0],[123,66,76,64.0],[123,66,77,64.0],[123,66,78,64.0],[123,66,79,64.0],[123,67,64,64.0],[123,67,65,64.0],[123,67,66,64.0],[123,67,67,64.0],[123,67,68,64.0],[123,67,69,64.0],[123,67,70,64.0],[123,67,71,64.0],[123,67,72,64.0],[123,67,73,64.0],[123,67,74,64.0],[123,67,75,64.0],[123,67,76,64.0],[123,67,77,64.0],[123,67,78,64.0],[123,67,79,64.0],[123,68,64,64.0],[123,68,65,64.0],[123,68,66,64.0],[123,68,67,64.0],[123,68,68,64.0],[123,68,69,64.0],[123,68,70,64.0],[123,68,71,64.0],[123,68,72,64.0],[123,68,73,64.0],[123,68,74,64.0],[123,68,75,64.0],[123,68,76,64.0],[123,68,77,64.0],[123,68,78,64.0],[123,68,79,64.0],[123,69,64,64.0],[123,69,65,64.0],[123,69,66,64.0],[123,69,67,64.0],[123,69,68,64.0],[123,69,69,64.0],[123,69,70,64.0],[123,69,71,64.0],[123,69,72,64.0],[123,69,73,64.0],[123,69,74,64.0],[123,69,75,64.0],[123,69,76,64.0],[123,69,77,64.0],[123,69,78,64.0],[123,69,79,64.0],[123,70,64,64.0],[123,70,65,64.0],[123,70,66,64.0],[123,70,67,64.0],[123,70,68,64.0],[123,70,69,64.0],[123,70,70,64.0],[123,70,71,64.0],[123,70,72,64.0],[123,70,73,64.0],[123,70,74,64.0],[123,70,75,64.0],[123,70,76,64.0],[123,70,77,64.0],[123,70,78,64.0],[123,70,79,64.0],[123,71,64,64.0],[123,71,65,64.0],[123,71,66,64.0],[123,71,67,64.0],[123,71,68,64.0],[123,71,69,64.0],[123,71,70,64.0],[123,71,71,64.0],[123,71,72,64.0],[123,71,73,64.0],[123,71,74,64.0],[123,71,75,64.0],[123,71,76,64.0],[123,71,77,64.0],[123,71,78,64.0],[123,71,79,64.0],[123,72,64,64.0],[123,72,65,64.0],[123,72,66,64.0],[123,72,67,64.0],[123,72,68,64.0],[123,72,69,64.0],[123,72,70,64.0],[123,72,71,64.0],[123,72,72,64.0],[123,72,73,64.0],[123,72,74,64.0],[123,72,75,64.0],[123,72,76,64.0],[123,72,77,64.0],[123,72,78,64.0],[123,72,79,64.0],[123,73,64,64.0],[123,73,65,64.0],[123,73,66,64.0],[123,73,67,64.0],[123,73,68,64.0],[123,73,69,64.0],[123,73,70,64.0],[123,73,71,64.0],[123,73,72,64.0],[123,73,73,64.0],[123,73,74,64.0],[123,73,75,64.0],[123,73,76,64.0],[123,73,77,64.0],[123,73,78,64.0],[123,73,79,64.0],[123,74,64,64.0],[123,74,65,64.0],[123,74,66,64.0],[123,74,67,64.0],[123,74,68,64.0],[123,74,69,64.0],[123,74,70,64.0],[123,74,71,64.0],[123,74,72,64.0],[123,74,73,64.0],[123,74,74,64.0],[123,74,75,64.0],[123,74,76,64.0],[123,74,77,64.0],[123,74,78,64.0],[123,74,79,64.0],[123,75,64,64.0],[123,75,65,64.0],[123,75,66,64.0],[123,75,67,64.0],[123,75,68,64.0],[123,75,69,64.0],[123,75,70,64.0],[123,75,71,64.0],[123,75,72,64.0],[123,75,73,64.0],[123,75,74,64.0],[123,75,75,64.0],[123,75,76,64.0],[123,75,77,64.0],[123,75,78,64.0],[123,75,79,64.0],[123,76,64,64.0],[123,76,65,64.0],[123,76,66,64.0],[123,76,67,64.0],[123,76,68,64.0],[123,76,69,64.0],[123,76,70,64.0],[123,76,71,64.0],[123,76,72,64.0],[123,76,73,64.0],[123,76,74,64.0],[123,76,75,64.0],[123,76,76,64.0],[123,76,77,64.0],[123,76,78,64.0],[123,76,79,64.0],[123,77,64,64.0],[123,77,65,64.0],[123,77,66,64.0],[123,77,67,64.0],[123,77,68,64.0],[123,77,69,64.0],[123,77,70,64.0],[123,77,71,64.0],[123,77,72,64.0],[123,77,73,64.0],[123,77,74,64.0],[123,77,75,64.0],[123,77,76,64.0],[123,77,77,64.0],[123,77,78,64.0],[123,77,79,64.0],[123,78,64,64.0],[123,78,65,64.0],[123,78,66,64.0],[123,78,67,64.0],[123,78,68,64.0],[123,78,69,64.0],[123,78,70,64.0],[123,78,71,64.0],[123,78,72,64.0],[123,78,73,64.0],[123,78,74,64.0],[123,78,75,64.0],[123,78,76,64.0],[123,78,77,64.0],[123,78,78,64.0],[123,78,79,64.0],[123,79,64,64.0],[123,79,65,64.0],[123,79,66,64.0],[123,79,67,64.0],[123,79,68,64.0],[123,79,69,64.0],[123,79,70,64.0],[123,79,71,64.0],[123,79,72,64.0],[123,79,73,64.0],[123,79,74,64.0],[123,79,75,64.0],[123,79,76,64.0],[123,79,77,64.0],[123,79,78,64.0],[123,79,79,64.0],[123,80,64,64.0],[123,80,65,64.0],[123,80,66,64.0],[123,80,67,64.0],[123,80,68,64.0],[123,80,69,64.0],[123,80,70,64.0],[123,80,71,64.0],[123,80,72,64.0],[123,80,73,64.0],[123,80,74,64.0],[123,80,75,64.0],[123,80,76,64.0],[123,80,77,64.0],[123,80,78,64.0],[123,80,79,64.0],[123,81,64,64.0],[123,81,65,64.0],[123,81,66,64.0],[123,81,67,64.0],[123,81,68,64.0],[123,81,69,64.0],[123,81,70,64.0],[123,81,71,64.0],[123,81,72,64.0],[123,81,73,64.0],[123,81,74,64.0],[123,81,75,64.0],[123,81,76,64.0],[123,81,77,64.0],[123,81,78,64.0],[123,81,79,64.0],[123,82,64,64.0],[123,82,65,64.0],[123,82,66,64.0],[123,82,67,64.0],[123,82,68,64.0],[123,82,69,64.0],[123,82,70,64.0],[123,82,71,64.0],[123,82,72,64.0],[123,82,73,64.0],[123,82,74,64.0],[123,82,75,64.0],[123,82,76,64.0],[123,82,77,64.0],[123,82,78,64.0],[123,82,79,64.0],[123,83,64,64.0],[123,83,65,64.0],[123,83,66,64.0],[123,83,67,64.0],[123,83,68,64.0],[123,83,69,64.0],[123,83,70,64.0],[123,83,71,64.0],[123,83,72,64.0],[123,83,73,64.0],[123,83,74,64.0],[123,83,75,64.0],[123,83,76,64.0],[123,83,77,64.0],[123,83,78,64.0],[123,83,79,64.0],[123,84,64,64.0],[123,84,65,64.0],[123,84,66,64.0],[123,84,67,64.0],[123,84,68,64.0],[123,84,69,64.0],[123,84,70,64.0],[123,84,71,64.0],[123,84,72,64.0],[123,84,73,64.0],[123,84,74,64.0],[123,84,75,64.0],[123,84,76,64.0],[123,84,77,64.0],[123,84,78,64.0],[123,84,79,64.0],[123,85,64,64.0],[123,85,65,64.0],[123,85,66,64.0],[123,85,67,64.0],[123,85,68,64.0],[123,85,69,64.0],[123,85,70,64.0],[123,85,71,64.0],[123,85,72,64.0],[123,85,73,64.0],[123,85,74,64.0],[123,85,75,64.0],[123,85,76,64.0],[123,85,77,64.0],[123,85,78,64.0],[123,85,79,64.0],[123,86,64,64.0],[123,86,65,64.0],[123,86,66,64.0],[123,86,67,64.0],[123,86,68,64.0],[123,86,69,64.0],[123,86,70,64.0],[123,86,71,64.0],[123,86,72,64.0],[123,86,73,64.0],[123,86,74,64.0],[123,86,75,64.0],[123,86,76,64.0],[123,86,77,64.0],[123,86,78,64.0],[123,86,79,64.0],[123,87,64,64.0],[123,87,65,64.0],[123,87,66,64.0],[123,87,67,64.0],[123,87,68,64.0],[123,87,69,64.0],[123,87,70,64.0],[123,87,71,64.0],[123,87,72,64.0],[123,87,73,64.0],[123,87,74,64.0],[123,87,75,64.0],[123,87,76,64.0],[123,87,77,64.0],[123,87,78,64.0],[123,87,79,64.0],[123,88,64,64.0],[123,88,65,64.0],[123,88,66,64.0],[123,88,67,64.0],[123,88,68,64.0],[123,88,69,64.0],[123,88,70,64.0],[123,88,71,64.0],[123,88,72,64.0],[123,88,73,64.0],[123,88,74,64.0],[123,88,75,64.0],[123,88,76,64.0],[123,88,77,64.0],[123,88,78,64.0],[123,88,79,64.0],[123,89,64,64.0],[123,89,65,64.0],[123,89,66,64.0],[123,89,67,64.0],[123,89,68,64.0],[123,89,69,64.0],[123,89,70,64.0],[123,89,71,64.0],[123,89,72,64.0],[123,89,73,64.0],[123,89,74,64.0],[123,89,75,64.0],[123,89,76,64.0],[123,89,77,64.0],[123,89,78,64.0],[123,89,79,64.0],[123,90,64,64.0],[123,90,65,64.0],[123,90,66,64.0],[123,90,67,64.0],[123,90,68,64.0],[123,90,69,64.0],[123,90,70,64.0],[123,90,71,64.0],[123,90,72,64.0],[123,90,73,64.0],[123,90,74,64.0],[123,90,75,64.0],[123,90,76,64.0],[123,90,77,64.0],[123,90,78,64.0],[123,90,79,64.0],[123,91,64,64.0],[123,91,65,64.0],[123,91,66,64.0],[123,91,67,64.0],[123,91,68,64.0],[123,91,69,64.0],[123,91,70,64.0],[123,91,71,64.0],[123,91,72,64.0],[123,91,73,64.0],[123,91,74,64.0],[123,91,75,64.0],[123,91,76,64.0],[123,91,77,64.0],[123,91,78,64.0],[123,91,79,64.0],[123,92,64,64.0],[123,92,65,64.0],[123,92,66,64.0],[123,92,67,64.0],[123,92,68,64.0],[123,92,69,64.0],[123,92,70,64.0],[123,92,71,64.0],[123,92,72,64.0],[123,92,73,64.0],[123,92,74,64.0],[123,92,75,64.0],[123,92,76,64.0],[123,92,77,64.0],[123,92,78,64.0],[123,92,79,64.0],[123,93,64,64.0],[123,93,65,64.0],[123,93,66,64.0],[123,93,67,64.0],[123,93,68,64.0],[123,93,69,64.0],[123,93,70,64.0],[123,93,71,64.0],[123,93,72,64.0],[123,93,73,64.0],[123,93,74,64.0],[123,93,75,64.0],[123,93,76,64.0],[123,93,77,64.0],[123,93,78,64.0],[123,93,79,64.0],[123,94,64,64.0],[123,94,65,64.0],[123,94,66,64.0],[123,94,67,64.0],[123,94,68,64.0],[123,94,69,64.0],[123,94,70,64.0],[123,94,71,64.0],[123,94,72,64.0],[123,94,73,64.0],[123,94,74,64.0],[123,94,75,64.0],[123,94,76,64.0],[123,94,77,64.0],[123,94,78,64.0],[123,94,79,64.0],[123,95,64,64.0],[123,95,65,64.0],[123,95,66,64.0],[123,95,67,64.0],[123,95,68,64.0],[123,95,69,64.0],[123,95,70,64.0],[123,95,71,64.0],[123,95,72,64.0],[123,95,73,64.0],[123,95,74,64.0],[123,95,75,64.0],[123,95,76,64.0],[123,95,77,64.0],[123,95,78,64.0],[123,95,79,64.0],[123,96,64,64.0],[123,96,65,64.0],[123,96,66,64.0],[123,96,67,64.0],[123,96,68,64.0],[123,96,69,64.0],[123,96,70,64.0],[123,96,71,64.0],[123,96,72,64.0],[123,96,73,64.0],[123,96,74,64.0],[123,96,75,64.0],[123,96,76,64.0],[123,96,77,64.0],[123,96,78,64.0],[123,96,79,64.0],[123,97,64,64.0],[123,97,65,64.0],[123,97,66,64.0],[123,97,67,64.0],[123,97,68,64.0],[123,97,69,64.0],[123,97,70,64.0],[123,97,71,64.0],[123,97,72,64.0],[123,97,73,64.0],[123,97,74,64.0],[123,97,75,64.0],[123,97,76,64.0],[123,97,77,64.0],[123,97,78,64.0],[123,97,79,64.0],[123,98,64,64.0],[123,98,65,64.0],[123,98,66,64.0],[123,98,67,64.0],[123,98,68,64.0],[123,98,69,64.0],[123,98,70,64.0],[123,98,71,64.0],[123,98,72,64.0],[123,98,73,64.0],[123,98,74,64.0],[123,98,75,64.0],[123,98,76,64.0],[123,98,77,64.0],[123,98,78,64.0],[123,98,79,64.0],[123,99,64,64.0],[123,99,65,64.0],[123,99,66,64.0],[123,99,67,64.0],[123,99,68,64.0],[123,99,69,64.0],[123,99,70,64.0],[123,99,71,64.0],[123,99,72,64.0],[123,99,73,64.0],[123,99,74,64.0],[123,99,75,64.0],[123,99,76,64.0],[123,99,77,64.0],[123,99,78,64.0],[123,99,79,64.0],[123,100,64,64.0],[123,100,65,64.0],[123,100,66,64.0],[123,100,67,64.0],[123,100,68,64.0],[123,100,69,64.0],[123,100,70,64.0],[123,100,71,64.0],[123,100,72,64.0],[123,100,73,64.0],[123,100,74,64.0],[123,100,75,64.0],[123,100,76,64.0],[123,100,77,64.0],[123,100,78,64.0],[123,100,79,64.0],[123,101,64,64.0],[123,101,65,64.0],[123,101,66,64.0],[123,101,67,64.0],[123,101,68,64.0],[123,101,69,64.0],[123,101,70,64.0],[123,101,71,64.0],[123,101,72,64.0],[123,101,73,64.0],[123,101,74,64.0],[123,101,75,64.0],[123,101,76,64.0],[123,101,77,64.0],[123,101,78,64.0],[123,101,79,64.0],[123,102,64,64.0],[123,102,65,64.0],[123,102,66,64.0],[123,102,67,64.0],[123,102,68,64.0],[123,102,69,64.0],[123,102,70,64.0],[123,102,71,64.0],[123,102,72,64.0],[123,102,73,64.0],[123,102,74,64.0],[123,102,75,64.0],[123,102,76,64.0],[123,102,77,64.0],[123,102,78,64.0],[123,102,79,64.0],[123,103,64,64.0],[123,103,65,64.0],[123,103,66,64.0],[123,103,67,64.0],[123,103,68,64.0],[123,103,69,64.0],[123,103,70,64.0],[123,103,71,64.0],[123,103,72,64.0],[123,103,73,64.0],[123,103,74,64.0],[123,103,75,64.0],[123,103,76,64.0],[123,103,77,64.0],[123,103,78,64.0],[123,103,79,64.0],[123,104,64,64.0],[123,104,65,64.0],[123,104,66,64.0],[123,104,67,64.0],[123,104,68,64.0],[123,104,69,64.0],[123,104,70,64.0],[123,104,71,64.0],[123,104,72,64.0],[123,104,73,64.0],[123,104,74,64.0],[123,104,75,64.0],[123,104,76,64.0],[123,104,77,64.0],[123,104,78,64.0],[123,104,79,64.0],[123,105,64,64.0],[123,105,65,64.0],[123,105,66,64.0],[123,105,67,64.0],[123,105,68,64.0],[123,105,69,64.0],[123,105,70,64.0],[123,105,71,64.0],[123,105,72,64.0],[123,105,73,64.0],[123,105,74,64.0],[123,105,75,64.0],[123,105,76,64.0],[123,105,77,64.0],[123,105,78,64.0],[123,105,79,64.0],[123,106,64,64.0],[123,106,65,64.0],[123,106,66,64.0],[123,106,67,64.0],[123,106,68,64.0],[123,106,69,64.0],[123,106,70,64.0],[123,106,71,64.0],[123,106,72,64.0],[123,106,73,64.0],[123,106,74,64.0],[123,106,75,64.0],[123,106,76,64.0],[123,106,77,64.0],[123,106,78,64.0],[123,106,79,64.0],[123,107,64,64.0],[123,107,65,64.0],[123,107,66,64.0],[123,107,67,64.0],[123,107,68,64.0],[123,107,69,64.0],[123,107,70,64.0],[123,107,71,64.0],[123,107,72,64.0],[123,107,73,64.0],[123,107,74,64.0],[123,107,75,64.0],[123,107,76,64.0],[123,107,77,64.0],[123,107,78,64.0],[123,107,79,64.0],[123,108,64,64.0],[123,108,65,64.0],[123,108,66,64.0],[123,108,67,64.0],[123,108,68,64.0],[123,108,69,64.0],[123,108,70,64.0],[123,108,71,64.0],[123,108,72,64.0],[123,108,73,64.0],[123,108,74,64.0],[123,108,75,64.0],[123,108,76,64.0],[123,108,77,64.0],[123,108,78,64.0],[123,108,79,64.0],[123,109,64,64.0],[123,109,65,64.0],[123,109,66,64.0],[123,109,67,64.0],[123,109,68,64.0],[123,109,69,64.0],[123,109,70,64.0],[123,109,71,64.0],[123,109,72,64.0],[123,109,73,64.0],[123,109,74,64.0],[123,109,75,64.0],[123,109,76,64.0],[123,109,77,64.0],[123,109,78,64.0],[123,109,79,64.0],[123,110,64,64.0],[123,110,65,64.0],[123,110,66,64.0],[123,110,67,64.0],[123,110,68,64.0],[123,110,69,64.0],[123,110,70,64.0],[123,110,71,64.0],[123,110,72,64.0],[123,110,73,64.0],[123,110,74,64.0],[123,110,75,64.0],[123,110,76,64.0],[123,110,77,64.0],[123,110,78,64.0],[123,110,79,64.0],[123,111,64,64.0],[123,111,65,64.0],[123,111,66,64.0],[123,111,67,64.0],[123,111,68,64.0],[123,111,69,64.0],[123,111,70,64.0],[123,111,71,64.0],[123,111,72,64.0],[123,111,73,64.0],[123,111,74,64.0],[123,111,75,64.0],[123,111,76,64.0],[123,111,77,64.0],[123,111,78,64.0],[123,111,79,64.0],[123,112,64,64.0],[123,112,65,64.0],[123,112,66,64.0],[123,112,67,64.0],[123,112,68,64.0],[123,112,69,64.0],[123,112,70,64.0],[123,112,71,64.0],[123,112,72,64.0],[123,112,73,64.0],[123,112,74,64.0],[123,112,75,64.0],[123,112,76,64.0],[123,112,77,64.0],[123,112,78,64.0],[123,112,79,64.0],[123,113,64,64.0],[123,113,65,64.0],[123,113,66,64.0],[123,113,67,64.0],[123,113,68,64.0],[123,113,69,64.0],[123,113,70,64.0],[123,113,71,64.0],[123,113,72,64.0],[123,113,73,64.0],[123,113,74,64.0],[123,113,75,64.0],[123,113,76,64.0],[123,113,77,64.0],[123,113,78,64.0],[123,113,79,64.0],[123,114,64,64.0],[123,114,65,64.0],[123,114,66,64.0],[123,114,67,64.0],[123,114,68,64.0],[123,114,69,64.0],[123,114,70,64.0],[123,114,71,64.0],[123,114,72,64.0],[123,114,73,64.0],[123,114,74,64.0],[123,114,75,64.0],[123,114,76,64.0],[123,114,77,64.0],[123,114,78,64.0],[123,114,79,64.0],[123,115,64,64.0],[123,115,65,64.0],[123,115,66,64.0],[123,115,67,64.0],[123,115,68,64.0],[123,115,69,64.0],[123,115,70,64.0],[123,115,71,64.0],[123,115,72,64.0],[123,115,73,64.0],[123,115,74,64.0],[123,115,75,64.0],[123,115,76,64.0],[123,115,77,64.0],[123,115,78,64.0],[123,115,79,64.0],[123,116,64,64.0],[123,116,65,64.0],[123,116,66,64.0],[123,116,67,64.0],[123,116,68,64.0],[123,116,69,64.0],[123,116,70,64.0],[123,116,71,64.0],[123,116,72,64.0],[123,116,73,64.0],[123,116,74,64.0],[123,116,75,64.0],[123,116,76,64.0],[123,116,77,64.0],[123,116,78,64.0],[123,116,79,64.0],[123,117,64,64.0],[123,117,65,64.0],[123,117,66,64.0],[123,117,67,64.0],[123,117,68,64.0],[123,117,69,64.0],[123,117,70,64.0],[123,117,71,64.0],[123,117,72,64.0],[123,117,73,64.0],[123,117,74,64.0],[123,117,75,64.0],[123,117,76,64.0],[123,117,77,64.0],[123,117,78,64.0],[123,117,79,64.0],[123,118,64,64.0],[123,118,65,64.0],[123,118,66,64.0],[123,118,67,64.0],[123,118,68,64.0],[123,118,69,64.0],[123,118,70,64.0],[123,118,71,64.0],[123,118,72,64.0],[123,118,73,64.0],[123,118,74,64.0],[123,118,75,64.0],[123,118,76,64.0],[123,118,77,64.0],[123,118,78,64.0],[123,118,79,64.0],[123,119,64,64.0],[123,119,65,64.0],[123,119,66,64.0],[123,119,67,64.0],[123,119,68,64.0],[123,119,69,64.0],[123,119,70,64.0],[123,119,71,64.0],[123,119,72,64.0],[123,119,73,64.0],[123,119,74,64.0],[123,119,75,64.0],[123,119,76,64.0],[123,119,77,64.0],[123,119,78,64.0],[123,119,79,64.0],[123,120,64,64.0],[123,120,65,64.0],[123,120,66,64.0],[123,120,67,64.0],[123,120,68,64.0],[123,120,69,64.0],[123,120,70,64.0],[123,120,71,64.0],[123,120,72,64.0],[123,120,73,64.0],[123,120,74,64.0],[123,120,75,64.0],[123,120,76,64.0],[123,120,77,64.0],[123,120,78,64.0],[123,120,79,64.0],[123,121,64,64.0],[123,121,65,64.0],[123,121,66,64.0],[123,121,67,64.0],[123,121,68,64.0],[123,121,69,64.0],[123,121,70,64.0],[123,121,71,64.0],[123,121,72,64.0],[123,121,73,64.0],[123,121,74,64.0],[123,121,75,64.0],[123,121,76,64.0],[123,121,77,64.0],[123,121,78,64.0],[123,121,79,64.0],[123,122,64,64.0],[123,122,65,64.0],[123,122,66,64.0],[123,122,67,64.0],[123,122,68,64.0],[123,122,69,64.0],[123,122,70,64.0],[123,122,71,64.0],[123,122,72,64.0],[123,122,73,64.0],[123,122,74,64.0],[123,122,75,64.0],[123,122,76,64.0],[123,122,77,64.0],[123,122,78,64.0],[123,122,79,64.0],[123,123,64,64.0],[123,123,65,64.0],[123,123,66,64.0],[123,123,67,64.0],[123,123,68,64.0],[123,123,69,64.0],[123,123,70,64.0],[123,123,71,64.0],[123,123,72,64.0],[123,123,73,64.0],[123,123,74,64.0],[123,123,75,64.0],[123,123,76,64.0],[123,123,77,64.0],[123,123,78,64.0],[123,123,79,64.0],[123,124,64,64.0],[123,124,65,64.0],[123,124,66,64.0],[123,124,67,64.0],[123,124,68,64.0],[123,124,69,64.0],[123,124,70,64.0],[123,124,71,64.0],[123,124,72,64.0],[123,124,73,64.0],[123,124,74,64.0],[123,124,75,64.0],[123,124,76,64.0],[123,124,77,64.0],[123,124,78,64.0],[123,124,79,64.0],[123,125,64,64.0],[123,125,65,64.0],[123,125,66,64.0],[123,125,67,64.0],[123,125,68,64.0],[123,125,69,64.0],[123,125,70,64.0],[123,125,71,64.0],[123,125,72,64.0],[123,125,73,64.0],[123,125,74,64.0],[123,125,75,64.0],[123,125,76,64.0],[123,125,77,64.0],[123,125,78,64.0],[123,125,79,64.0],[123,126,64,64.0],[123,126,65,64.0],[123,126,66,64.0],[123,126,67,64.0],[123,126,68,64.0],[123,126,69,64.0],[123,126,70,64.0],[123,126,71,64.0],[123,126,72,64.0],[123,126,73,64.0],[123,126,74,64.0],[123,126,75,64.0],[123,126,76,64.0],[123,126,77,64.0],[123,126,78,64.0],[123,126,79,64.0],[123,127,64,64.0],[123,127,65,64.0],[123,127,66,64.0],[123,127,67,64.0],[123,127,68,64.0],[123,127,69,64.0],[123,127,70,64.0],[123,127,71,64.0],[123,127,72,64.0],[123,127,73,64.0],[123,127,74,64.0],[123,127,75,64.0],[123,127,76,64.0],[123,127,77,64.0],[123,127,78,64.0],[123,127,79,64.0],[123,128,64,64.0],[123,128,65,64.0],[123,128,66,64.0],[123,128,67,64.0],[123,128,68,64.0],[123,128,69,64.0],[123,128,70,64.0],[123,128,71,64.0],[123,128,72,64.0],[123,128,73,64.0],[123,128,74,64.0],[123,128,75,64.0],[123,128,76,64.0],[123,128,77,64.0],[123,128,78,64.0],[123,128,79,64.0],[123,129,64,64.0],[123,129,65,64.0],[123,129,66,64.0],[123,129,67,64.0],[123,129,68,64.0],[123,129,69,64.0],[123,129,70,64.0],[123,129,71,64.0],[123,129,72,64.0],[123,129,73,64.0],[123,129,74,64.0],[123,129,75,64.0],[123,129,76,64.0],[123,129,77,64.0],[123,129,78,64.0],[123,129,79,64.0],[123,130,64,64.0],[123,130,65,64.0],[123,130,66,64.0],[123,130,67,64.0],[123,130,68,64.0],[123,130,69,64.0],[123,130,70,64.0],[123,130,71,64.0],[123,130,72,64.0],[123,130,73,64.0],[123,130,74,64.0],[123,130,75,64.0],[123,130,76,64.0],[123,130,77,64.0],[123,130,78,64.0],[123,130,79,64.0],[123,131,64,64.0],[123,131,65,64.0],[123,131,66,64.0],[123,131,67,64.0],[123,131,68,64.0],[123,131,69,64.0],[123,131,70,64.0],[123,131,71,64.0],[123,131,72,64.0],[123,131,73,64.0],[123,131,74,64.0],[123,131,75,64.0],[123,131,76,64.0],[123,131,77,64.0],[123,131,78,64.0],[123,131,79,64.0],[123,132,64,64.0],[123,132,65,64.0],[123,132,66,64.0],[123,132,67,64.0],[123,132,68,64.0],[123,132,69,64.0],[123,132,70,64.0],[123,132,71,64.0],[123,132,72,64.0],[123,132,73,64.0],[123,132,74,64.0],[123,132,75,64.0],[123,132,76,64.0],[123,132,77,64.0],[123,132,78,64.0],[123,132,79,64.0],[123,133,64,64.0],[123,133,65,64.0],[123,133,66,64.0],[123,133,67,64.0],[123,133,68,64.0],[123,133,69,64.0],[123,133,70,64.0],[123,133,71,64.0],[123,133,72,64.0],[123,133,73,64.0],[123,133,74,64.0],[123,133,75,64.0],[123,133,76,64.0],[123,133,77,64.0],[123,133,78,64.0],[123,133,79,64.0],[123,134,64,64.0],[123,134,65,64.0],[123,134,66,64.0],[123,134,67,64.0],[123,134,68,64.0],[123,134,69,64.0],[123,134,70,64.0],[123,134,71,64.0],[123,134,72,64.0],[123,134,73,64.0],[123,134,74,64.0],[123,134,75,64.0],[123,134,76,64.0],[123,134,77,64.0],[123,134,78,64.0],[123,134,79,64.0],[123,135,64,64.0],[123,135,65,64.0],[123,135,66,64.0],[123,135,67,64.0],[123,135,68,64.0],[123,135,69,64.0],[123,135,70,64.0],[123,135,71,64.0],[123,135,72,64.0],[123,135,73,64.0],[123,135,74,64.0],[123,135,75,64.0],[123,135,76,64.0],[123,135,77,64.0],[123,135,78,64.0],[123,135,79,64.0],[123,136,64,64.0],[123,136,65,64.0],[123,136,66,64.0],[123,136,67,64.0],[123,136,68,64.0],[123,136,69,64.0],[123,136,70,64.0],[123,136,71,64.0],[123,136,72,64.0],[123,136,73,64.0],[123,136,74,64.0],[123,136,75,64.0],[123,136,76,64.0],[123,136,77,64.0],[123,136,78,64.0],[123,136,79,64.0],[123,137,64,64.0],[123,137,65,64.0],[123,137,66,64.0],[123,137,67,64.0],[123,137,68,64.0],[123,137,69,64.0],[123,137,70,64.0],[123,137,71,64.0],[123,137,72,64.0],[123,137,73,64.0],[123,137,74,64.0],[123,137,75,64.0],[123,137,76,64.0],[123,137,77,64.0],[123,137,78,64.0],[123,137,79,64.0],[123,138,64,64.0],[123,138,65,64.0],[123,138,66,64.0],[123,138,67,64.0],[123,138,68,64.0],[123,138,69,64.0],[123,138,70,64.0],[123,138,71,64.0],[123,138,72,64.0],[123,138,73,64.0],[123,138,74,64.0],[123,138,75,64.0],[123,138,76,64.0],[123,138,77,64.0],[123,138,78,64.0],[123,138,79,64.0],[123,139,64,64.0],[123,139,65,64.0],[123,139,66,64.0],[123,139,67,64.0],[123,139,68,64.0],[123,139,69,64.0],[123,139,70,64.0],[123,139,71,64.0],[123,139,72,64.0],[123,139,73,64.0],[123,139,74,64.0],[123,139,75,64.0],[123,139,76,64.0],[123,139,77,64.0],[123,139,78,64.0],[123,139,79,64.0],[123,140,64,64.0],[123,140,65,64.0],[123,140,66,64.0],[123,140,67,64.0],[123,140,68,64.0],[123,140,69,64.0],[123,140,70,64.0],[123,140,71,64.0],[123,140,72,64.0],[123,140,73,64.0],[123,140,74,64.0],[123,140,75,64.0],[123,140,76,64.0],[123,140,77,64.0],[123,140,78,64.0],[123,140,79,64.0],[123,141,64,64.0],[123,141,65,64.0],[123,141,66,64.0],[123,141,67,64.0],[123,141,68,64.0],[123,141,69,64.0],[123,141,70,64.0],[123,141,71,64.0],[123,141,72,64.0],[123,141,73,64.0],[123,141,74,64.0],[123,141,75,64.0],[123,141,76,64.0],[123,141,77,64.0],[123,141,78,64.0],[123,141,79,64.0],[123,142,64,64.0],[123,142,65,64.0],[123,142,66,64.0],[123,142,67,64.0],[123,142,68,64.0],[123,142,69,64.0],[123,142,70,64.0],[123,142,71,64.0],[123,142,72,64.0],[123,142,73,64.0],[123,142,74,64.0],[123,142,75,64.0],[123,142,76,64.0],[123,142,77,64.0],[123,142,78,64.0],[123,142,79,64.0],[123,143,64,64.0],[123,143,65,64.0],[123,143,66,64.0],[123,143,67,64.0],[123,143,68,64.0],[123,143,69,64.0],[123,143,70,64.0],[123,143,71,64.0],[123,143,72,64.0],[123,143,73,64.0],[123,143,74,64.0],[123,143,75,64.0],[123,143,76,64.0],[123,143,77,64.0],[123,143,78,64.0],[123,143,79,64.0],[123,144,64,64.0],[123,144,65,64.0],[123,144,66,64.0],[123,144,67,64.0],[123,144,68,64.0],[123,144,69,64.0],[123,144,70,64.0],[123,144,71,64.0],[123,144,72,64.0],[123,144,73,64.0],[123,144,74,64.0],[123,144,75,64.0],[123,144,76,64.0],[123,144,77,64.0],[123,144,78,64.0],[123,144,79,64.0],[123,145,64,64.0],[123,145,65,64.0],[123,145,66,64.0],[123,145,67,64.0],[123,145,68,64.0],[123,145,69,64.0],[123,145,70,64.0],[123,145,71,64.0],[123,145,72,64.0],[123,145,73,64.0],[123,145,74,64.0],[123,145,75,64.0],[123,145,76,64.0],[123,145,77,64.0],[123,145,78,64.0],[123,145,79,64.0],[123,146,64,64.0],[123,146,65,64.0],[123,146,66,64.0],[123,146,67,64.0],[123,146,68,64.0],[123,146,69,64.0],[123,146,70,64.0],[123,146,71,64.0],[123,146,72,64.0],[123,146,73,64.0],[123,146,74,64.0],[123,146,75,64.0],[123,146,76,64.0],[123,146,77,64.0],[123,146,78,64.0],[123,146,79,64.0],[123,147,64,64.0],[123,147,65,64.0],[123,147,66,64.0],[123,147,67,64.0],[123,147,68,64.0],[123,147,69,64.0],[123,147,70,64.0],[123,147,71,64.0],[123,147,72,64.0],[123,147,73,64.0],[123,147,74,64.0],[123,147,75,64.0],[123,147,76,64.0],[123,147,77,64.0],[123,147,78,64.0],[123,147,79,64.0],[123,148,64,64.0],[123,148,65,64.0],[123,148,66,64.0],[123,148,67,64.0],[123,148,68,64.0],[123,148,69,64.0],[123,148,70,64.0],[123,148,71,64.0],[123,148,72,64.0],[123,148,73,64.0],[123,148,74,64.0],[123,148,75,64.0],[123,148,76,64.0],[123,148,77,64.0],[123,148,78,64.0],[123,148,79,64.0],[123,149,64,64.0],[123,149,65,64.0],[123,149,66,64.0],[123,149,67,64.0],[123,149,68,64.0],[123,149,69,64.0],[123,149,70,64.0],[123,149,71,64.0],[123,149,72,64.0],[123,149,73,64.0],[123,149,74,64.0],[123,149,75,64.0],[123,149,76,64.0],[123,149,77,64.0],[123,149,78,64.0],[123,149,79,64.0],[123,150,64,64.0],[123,150,65,64.0],[123,150,66,64.0],[123,150,67,64.0],[123,150,68,64.0],[123,150,69,64.0],[123,150,70,64.0],[123,150,71,64.0],[123,150,72,64.0],[123,150,73,64.0],[123,150,74,64.0],[123,150,75,64.0],[123,150,76,64.0],[123,150,77,64.0],[123,150,78,64.0],[123,150,79,64.0],[123,151,64,64.0],[123,151,65,64.0],[123,151,66,64.0],[123,151,67,64.0],[123,151,68,64.0],[123,151,69,64.0],[123,151,70,64.0],[123,151,71,64.0],[123,151,72,64.0],[123,151,73,64.0],[123,151,74,64.0],[123,151,75,64.0],[123,151,76,64.0],[123,151,77,64.0],[123,151,78,64.0],[123,151,79,64.0],[123,152,64,64.0],[123,152,65,64.0],[123,152,66,64.0],[123,152,67,64.0],[123,152,68,64.0],[123,152,69,64.0],[123,152,70,64.0],[123,152,71,64.0],[123,152,72,64.0],[123,152,73,64.0],[123,152,74,64.0],[123,152,75,64.0],[123,152,76,64.0],[123,152,77,64.0],[123,152,78,64.0],[123,152,79,64.0],[123,153,64,64.0],[123,153,65,64.0],[123,153,66,64.0],[123,153,67,64.0],[123,153,68,64.0],[123,153,69,64.0],[123,153,70,64.0],[123,153,71,64.0],[123,153,72,64.0],[123,153,73,64.0],[123,153,74,64.0],[123,153,75,64.0],[123,153,76,64.0],[123,153,77,64.0],[123,153,78,64.0],[123,153,79,64.0],[123,154,64,64.0],[123,154,65,64.0],[123,154,66,64.0],[123,154,67,64.0],[123,154,68,64.0],[123,154,69,64.0],[123,154,70,64.0],[123,154,71,64.0],[123,154,72,64.0],[123,154,73,64.0],[123,154,74,64.0],[123,154,75,64.0],[123,154,76,64.0],[123,154,77,64.0],[123,154,78,64.0],[123,154,79,64.0],[123,155,64,64.0],[123,155,65,64.0],[123,155,66,64.0],[123,155,67,64.0],[123,155,68,64.0],[123,155,69,64.0],[123,155,70,64.0],[123,155,71,64.0],[123,155,72,64.0],[123,155,73,64.0],[123,155,74,64.0],[123,155,75,64.0],[123,155,76,64.0],[123,155,77,64.0],[123,155,78,64.0],[123,155,79,64.0],[123,156,64,64.0],[123,156,65,64.0],[123,156,66,64.0],[123,156,67,64.0],[123,156,68,64.0],[123,156,69,64.0],[123,156,70,64.0],[123,156,71,64.0],[123,156,72,64.0],[123,156,73,64.0],[123,156,74,64.0],[123,156,75,64.0],[123,156,76,64.0],[123,156,77,64.0],[123,156,78,64.0],[123,156,79,64.0],[123,157,64,64.0],[123,157,65,64.0],[123,157,66,64.0],[123,157,67,64.0],[123,157,68,64.0],[123,157,69,64.0],[123,157,70,64.0],[123,157,71,64.0],[123,157,72,64.0],[123,157,73,64.0],[123,157,74,64.0],[123,157,75,64.0],[123,157,76,64.0],[123,157,77,64.0],[123,157,78,64.0],[123,157,79,64.0],[123,158,64,64.0],[123,158,65,64.0],[123,158,66,64.0],[123,158,67,64.0],[123,158,68,64.0],[123,158,69,64.0],[123,158,70,64.0],[123,158,71,64.0],[123,158,72,64.0],[123,158,73,64.0],[123,158,74,64.0],[123,158,75,64.0],[123,158,76,64.0],[123,158,77,64.0],[123,158,78,64.0],[123,158,79,64.0],[123,159,64,64.0],[123,159,65,64.0],[123,159,66,64.0],[123,159,67,64.0],[123,159,68,64.0],[123,159,69,64.0],[123,159,70,64.0],[123,159,71,64.0],[123,159,72,64.0],[123,159,73,64.0],[123,159,74,64.0],[123,159,75,64.0],[123,159,76,64.0],[123,159,77,64.0],[123,159,78,64.0],[123,159,79,64.0],[123,160,64,64.0],[123,160,65,64.0],[123,160,66,64.0],[123,160,67,64.0],[123,160,68,64.0],[123,160,69,64.0],[123,160,70,64.0],[123,160,71,64.0],[123,160,72,64.0],[123,160,73,64.0],[123,160,74,64.0],[123,160,75,64.0],[123,160,76,64.0],[123,160,77,64.0],[123,160,78,64.0],[123,160,79,64.0],[123,161,64,64.0],[123,161,65,64.0],[123,161,66,64.0],[123,161,67,64.0],[123,161,68,64.0],[123,161,69,64.0],[123,161,70,64.0],[123,161,71,64.0],[123,161,72,64.0],[123,161,73,64.0],[123,161,74,64.0],[123,161,75,64.0],[123,161,76,64.0],[123,161,77,64.0],[123,161,78,64.0],[123,161,79,64.0],[123,162,64,64.0],[123,162,65,64.0],[123,162,66,64.0],[123,162,67,64.0],[123,162,68,64.0],[123,162,69,64.0],[123,162,70,64.0],[123,162,71,64.0],[123,162,72,64.0],[123,162,73,64.0],[123,162,74,64.0],[123,162,75,64.0],[123,162,76,64.0],[123,162,77,64.0],[123,162,78,64.0],[123,162,79,64.0],[123,163,64,64.0],[123,163,65,64.0],[123,163,66,64.0],[123,163,67,64.0],[123,163,68,64.0],[123,163,69,64.0],[123,163,70,64.0],[123,163,71,64.0],[123,163,72,64.0],[123,163,73,64.0],[123,163,74,64.0],[123,163,75,64.0],[123,163,76,64.0],[123,163,77,64.0],[123,163,78,64.0],[123,163,79,64.0],[123,164,64,64.0],[123,164,65,64.0],[123,164,66,64.0],[123,164,67,64.0],[123,164,68,64.0],[123,164,69,64.0],[123,164,70,64.0],[123,164,71,64.0],[123,164,72,64.0],[123,164,73,64.0],[123,164,74,64.0],[123,164,75,64.0],[123,164,76,64.0],[123,164,77,64.0],[123,164,78,64.0],[123,164,79,0.6054725775077805],[123,165,64,64.0],[123,165,65,64.0],[123,165,66,64.0],[123,165,67,64.0],[123,165,68,64.0],[123,165,69,64.0],[123,165,70,64.0],[123,165,71,64.0],[123,165,72,64.0],[123,165,73,64.0],[123,165,74,64.0],[123,165,75,64.0],[123,165,76,64.0],[123,165,77,64.0],[123,165,78,0.5749215520675292],[123,165,79,0.6120057716781536],[123,166,64,64.0],[123,166,65,64.0],[123,166,66,64.0],[123,166,67,64.0],[123,166,68,64.0],[123,166,69,64.0],[123,166,70,64.0],[123,166,71,64.0],[123,166,72,64.0],[123,166,73,64.0],[123,166,74,64.0],[123,166,75,64.0],[123,166,76,64.0],[123,166,77,0.5419183754368777],[123,166,78,0.5828732975393971],[123,166,79,0.6198396328070296],[123,167,64,64.0],[123,167,65,64.0],[123,167,66,64.0],[123,167,67,64.0],[123,167,68,64.0],[123,167,69,64.0],[123,167,70,64.0],[123,167,71,64.0],[123,167,72,64.0],[123,167,73,64.0],[123,167,74,64.0],[123,167,75,64.0],[123,167,76,0.5073939047306268],[123,167,77,0.5514752436866892],[123,167,78,0.5922148105511669],[123,167,79,0.6289424228608534],[123,168,64,64.0],[123,168,65,64.0],[123,168,66,64.0],[123,168,67,64.0],[123,168,68,64.0],[123,168,69,64.0],[123,168,70,64.0],[123,168,71,64.0],[123,168,72,64.0],[123,168,73,64.0],[123,168,74,64.0],[123,168,75,0.4723556331960356],[123,168,76,0.5186980955578236],[123,168,77,0.5624733569906621],[123,168,78,0.6028853902267082],[123,168,79,0.639264795750953],[123,169,64,64.0],[123,169,65,64.0],[123,169,66,64.0],[123,169,67,64.0],[123,169,68,64.0],[123,169,69,64.0],[123,169,70,64.0],[123,169,71,64.0],[123,169,72,64.0],[123,169,73,64.0],[123,169,74,0.4378588704907545],[123,169,75,0.48549772757157217],[123,169,76,0.5314534044501605],[123,169,77,0.5748208299658532],[123,169,78,0.6148054627145877],[123,169,79,0.6507394748105431],[123,170,64,64.0],[123,170,65,64.0],[123,170,66,64.0],[123,170,67,64.0],[123,170,68,64.0],[123,170,69,64.0],[123,170,70,64.0],[123,170,71,64.0],[123,170,72,64.0],[123,170,73,0.404402784894714],[123,170,74,0.45287216968969457],[123,170,75,0.5000561785404201],[123,170,76,0.54553517584038],[123,170,77,0.5884060816969976],[123,170,78,0.6278765415817598],[123,170,79,0.6632809872962041],[123,171,64,64.0],[123,171,65,64.0],[123,171,66,64.0],[123,171,67,64.0],[123,171,68,64.0],[123,171,69,64.0],[123,171,70,64.0],[123,171,71,64.0],[123,171,72,0.3718341301652569],[123,171,73,0.42126312752892664],[123,171,74,0.4692205060751083],[123,171,75,0.5158727093042356],[123,171,76,0.5607987546590194],[123,171,77,0.6030981412508024],[123,171,78,0.6419812926965994],[123,171,79,0.6767854809063385],[123,172,64,64.0],[123,172,65,64.0],[123,172,66,64.0],[123,172,67,64.0],[123,172,68,64.0],[123,172,69,64.0],[123,172,70,64.0],[123,172,71,0.34001810958493883],[123,172,72,0.3904615515311617],[123,172,73,0.43932992403597815],[123,172,74,0.48671189583192936],[123,172,75,0.5327692766201767],[123,172,76,0.5770801464484611],[123,172,77,0.6187470549865574],[123,172,78,0.6569836791309016],[123,172,79,0.6911305980981223],[123,173,64,64.0],[123,173,65,64.0],[123,173,66,64.0],[123,173,67,64.0],[123,173,68,64.0],[123,173,69,0.2559592470780991],[123,173,70,0.308855927510582],[123,173,71,0.36027499820740294],[123,173,72,0.41011988607749006],[123,173,73,0.4583781565492618],[123,173,74,0.5051353932793522],[123,173,75,0.5505491162025],[123,173,76,0.5941968003223972],[123,173,77,0.6351843954912142],[123,173,78,0.6727291859107228],[123,173,79,0.7061754080345481],[123,174,64,64.0],[123,174,65,64.0],[123,174,66,64.0],[123,174,67,64.0],[123,174,68,0.22465930014957125],[123,174,69,0.27826324773917493],[123,174,70,0.3305460627916424],[123,174,71,0.38134146412750164],[123,174,72,0.43055249337380175],[123,174,73,0.47816524751833084],[123,174,74,0.5242625490921422],[123,174,75,0.5689979315351511],[123,174,76,0.6119485147705257],[123,174,77,0.6522238721387603],[123,174,78,0.6890451246158982],[123,174,79,0.7217603961613906],[123,175,64,64.0],[123,175,65,64.0],[123,175,66,64.0],[123,175,67,0.2653643029969226],[123,175,68,0.25386286006791026],[123,175,69,0.3011322951656855],[123,175,70,0.352780758982374],[123,175,71,0.4029314232872812],[123,175,72,0.45148719339673715],[123,175,73,0.4984329552698622],[123,175,74,0.5438490317556544],[123,175,75,0.5878852260950586],[123,175,76,0.6301184663081949],[123,175,77,0.6696620432736066],[123,175,78,0.7057410178279567],[123,175,79,0.7377075114138258],[123,176,64,64.0],[123,176,65,64.0],[123,176,66,0.31465572370582423],[123,176,67,0.2999260252369349],[123,176,68,0.2854356472793513],[123,176,69,0.3242403626884379],[123,176,70,0.3752474597962667],[123,176,71,0.4247459060157465],[123,176,72,0.4726386212785822],[123,176,73,0.5189094518078643],[123,176,74,0.5636364122550841],[123,176,75,0.6069657789866522],[123,176,76,0.6484743609715102],[123,176,77,0.6872791300184928],[123,176,78,0.7226090634269324],[123,176,79,0.7538202710531895],[123,177,64,64.0],[123,177,65,0.36590964950384935],[123,177,66,0.34813380620182877],[123,177,67,0.3305848156621788],[123,177,68,0.3131701205592993],[123,177,69,0.34736892320903096],[123,177,70,0.39773577254548487],[123,177,71,0.44658232999102615],[123,177,72,0.49381160661522217],[123,177,73,0.5394065226007512],[123,177,74,0.5834429388536012],[123,177,75,0.6260637921538117],[123,177,76,0.6668457969093322],[123,177,77,0.7049094847385518],[123,177,78,0.7394876479612602],[123,177,79,0.7699403069387583],[123,178,64,0.41882028024981677],[123,178,65,0.39831441551135816],[123,178,66,0.37791370156040394],[123,178,67,0.3576194018613642],[123,178,68,0.3373638659294233],[123,178,69,0.3708350386440088],[123,178,70,0.42054737916045853],[123,178,71,0.46872505242711027],[123,178,72,0.5152713148232697],[123,178,73,0.5601683864142784],[123,178,74,0.6034902764424843],[123,178,75,0.6453769501239079],[123,178,76,0.68540521170021],[123,178,77,0.7226991637708422],[123,178,78,0.7564954550875032],[123,178,79,0.786158092206845],[123,179,64,0.4502864355626008],[123,179,65,0.42737147431584704],[123,179,66,0.4044283431249168],[123,179,67,0.38148081364018094],[123,179,68,0.35848486694526116],[123,179,69,0.39500232265145707],[123,179,70,0.4440281264829851],[123,179,71,0.49150014532928543],[123,179,72,0.5373221389282583],[123,179,73,0.5814759917818932],[123,179,74,0.624034337199697],[123,179,75,0.6651347428654043],[123,179,76,0.7043544740228171],[123,179,77,0.7408213755768183],[123,179,78,0.7737761631515677],[123,179,79,0.8025870829067686],[123,180,64,0.47862934466097873],[123,180,65,0.4533956294285366],[123,180,66,0.4280107648131409],[123,180,67,0.4025196267968082],[123,180,68,0.3769003547239804],[123,180,69,0.4200962171524412],[123,180,70,0.46839129923740747],[123,180,71,0.515107226374612],[123,180,72,0.5601485975294105],[123,180,73,0.6034974325369387],[123,180,74,0.6452256000367385],[123,180,75,0.6854690068902679],[123,180,76,0.7238058926482325],[123,180,77,0.7593681304445501],[123,180,78,0.7914008335145334],[123,180,79,0.819276867301642],[123,181,64,0.5033410198013205],[123,181,65,0.4758959587207024],[123,181,66,0.4481884941299829],[123,181,67,0.4202830332758463],[123,181,68,0.39725463406923733],[123,181,69,0.44622076748419526],[123,181,70,0.4937337588830511],[123,181,71,0.539634914213895],[123,181,72,0.5838300617390155],[123,181,73,0.6263019043904968],[123,181,74,0.6671222579262301],[123,181,75,0.7064262278065163],[123,181,76,0.7437936428915491],[123,181,77,0.7783607645813816],[123,181,78,0.8093775114407088],[123,181,79,0.8362218283816235],[123,182,64,0.52388269266807],[123,182,65,0.49434824392806337],[123,182,66,0.46445331087212793],[123,182,67,0.4342801335589876],[123,182,68,0.42520237347611595],[123,182,69,0.4733747164359226],[123,182,70,0.5200514237137424],[123,182,71,0.5650756495945751],[123,182,72,0.6083548745672014],[123,182,73,0.6498730824419663],[123,182,74,0.6897028162977127],[123,182,75,0.7279793254832088],[123,182,76,0.7642847083703286],[123,182,77,0.7977600130910335],[123,182,78,0.8276604100602961],[123,182,79,0.8533694239824693],[123,183,64,0.5398997786265324],[123,183,65,0.5084096647900936],[123,183,66,0.4764751548647794],[123,183,67,0.4441945453826981],[123,183,68,0.45413302876682726],[123,183,69,0.5014668468395912],[123,183,70,0.5472540228809508],[123,183,71,0.5913398181937755],[123,183,72,0.6336338020430378],[123,183,73,0.6741218624821197],[123,183,74,0.7128780890735444],[123,183,75,0.7500388722298541],[123,183,76,0.7851892923932243],[123,183,77,0.817475590143579],[123,183,78,0.8461586397358746],[123,183,79,0.8706280508666914],[123,184,64,0.551226585243223],[123,184,65,0.5179233452655769],[123,184,66,0.4841064828565033],[123,184,67,0.44988854802518563],[123,184,68,0.4838759025116149],[123,184,69,0.5303305727153261],[123,184,70,0.5751791243401676],[123,184,71,0.6182691751611316],[123,184,72,0.6595128160716022],[123,184,73,0.6988984660882925],[123,184,74,0.736502592344576],[123,184,75,0.7724637439899158],[123,184,76,0.8063706989784722],[123,184,77,0.837375276338006],[123,184,78,0.8647444828324279],[123,184,79,0.8878744927670689],[123,185,64,0.5578915653595737],[123,185,65,0.5229234639539723],[123,185,66,0.48738720882437736],[123,185,67,0.467184049231139],[123,185,68,0.5141963945350517],[123,185,69,0.5597377789721227],[123,185,70,0.6036054367212298],[123,185,71,0.6456495713720904],[123,185,72,0.6857852090276823],[123,185,73,0.7240039095123573],[123,185,74,0.7603853356862219],[123,185,75,0.7950712045490189],[123,185,76,0.8276546835028266],[123,185,77,0.8572935132579302],[123,185,78,0.8832612138914542],[123,185,79,0.9049609523930187],[123,186,64,0.5601231147180924],[123,186,65,0.5236409287218459],[123,186,66,0.48655022768885436],[123,186,67,0.49865898793056396],[123,186,68,0.5448095659851439],[123,186,69,0.5894119096635551],[123,186,70,0.6322653851222678],[123,186,71,0.6732229813913705],[123,186,72,0.7122030400858095],[123,186,73,0.7492008363611824],[123,186,74,0.7843000111146449],[123,186,75,0.8176464227575796],[123,186,76,0.8488382729806775],[123,186,77,0.8770395052201868],[123,186,78,0.9015304652089043],[123,186,79,0.9217216673995863],[123,187,64,0.5583559141415055],[123,187,65,0.5205096155347515],[123,187,66,0.4834426702592355],[123,187,67,0.5301133323278518],[123,187,68,0.575392929150598],[123,187,69,0.619040304798034],[123,187,70,0.6608569608268471],[123,187,71,0.7006988331461618],[123,187,72,0.7384879132862168],[123,187,73,0.7742237140691878],[123,187,74,0.8079945796826771],[123,187,75,0.8399514227674989],[123,187,76,0.8696980559730013],[123,187,77,0.8964048282159891],[123,187,78,0.919359137816641],[123,187,79,0.9379791103187649],[123,188,64,0.5532138671970842],[123,188,65,0.5141497033351353],[123,188,66,0.5152982963269905],[123,188,67,0.5611892692872801],[123,188,68,0.6055984630270957],[123,188,69,0.6482857857044417],[123,188,70,0.6890548449451055],[123,188,71,0.7277646393098434],[123,188,72,0.7643410873374803],[123,188,73,0.7987883941637233],[123,188,74,0.83120025571618],[123,188,75,0.8617334672835948],[123,188,76,0.8899979421267938],[123,188,77,0.9151705460452606],[123,188,78,0.9365458578680053],[123,188,79,0.9535497724537013],[123,189,64,0.5447912771522382],[123,189,65,0.5046632416493477],[123,189,66,0.5463878929047294],[123,189,67,0.5915142545048617],[123,189,68,0.6350638546321548],[123,189,69,0.6767974889527291],[123,189,70,0.7165208059784846],[123,189,71,0.7540959303958333],[123,189,72,0.7894529171554596],[123,189,73,0.8226010363229104],[123,189,74,0.8536398886904901],[123,189,75,0.8827328738294324],[123,189,76,0.9094963913446553],[123,189,77,0.9331138336438256],[123,189,78,0.9528869784271875],[123,189,79,0.9682495317354937],[123,190,64,0.5325124514307245],[123,190,65,0.5305385344060235],[123,190,66,0.5763260736956174],[123,190,67,0.6207118372620242],[123,190,68,0.663422966068161],[123,190,69,0.704220948829075],[123,190,70,0.7429133713076655],[123,190,71,0.77936548956119],[123,190,72,0.8135116271381798],[123,190,73,0.8453663962255896],[123,190,74,0.8750357427466186],[123,190,75,0.9026902640272351],[123,190,76,0.9279531125842331],[123,190,77,0.9500141076031884],[123,190,78,0.9681821266621473],[123,190,79,0.9818986045423507],[123,191,64,0.5159388787656223],[123,191,65,0.5595560150118646],[123,191,66,0.6047339486769714],[123,191,67,0.6484116907920862],[123,191,68,0.6903155273344114],[123,191,69,0.7302074283664192],[123,191,70,0.7678967726044996],[123,191,71,0.8032518891207285],[123,191,72,0.8362114161773906],[123,191,73,0.8667954771940907],[123,191,74,0.8951166738478807],[123,191,75,0.921353245892525],[123,191,76,0.9451352322881319],[123,191,77,0.9656586638834691],[123,191,78,0.9822392964416191],[123,191,79,0.9943260814816106],[123,192,64,0.5407337278234314],[123,192,65,0.5866402974692366],[123,192,66,0.6312486558374142],[123,192,67,0.6742588482590915],[123,192,68,0.7153960548877302],[123,192,69,0.7544224989299503],[123,192,70,0.7911491651675245],[123,192,71,0.8254473287712638],[123,192,72,0.8572598944064175],[123,192,73,0.8866125456294532],[123,192,74,0.9136247045766046],[123,192,75,0.9384825291431543],[123,192,76,0.9608229324439721],[123,192,77,0.9798478227191957],[123,192,78,0.9948794863359208],[123,192,79,1.0053740471343562],[123,193,64,0.5659724441846034],[123,193,65,0.6114479701747815],[123,193,66,0.6555320811288479],[123,193,67,0.6979221443486018],[123,193,68,0.7383419959512786],[123,193,69,0.7765538683571717],[123,193,70,0.812370121180701],[123,193,71,0.845664775525615],[123,193,72,0.8763848516839732],[123,193,73,0.9045615102387754],[123,193,74,0.9303209965706106],[123,193,75,0.953857473522438],[123,193,76,0.9748145582743232],[123,193,77,0.9923995807177042],[123,193,78,1.005940883021331],[123,193,79,1.0149012837624056],[123,194,64,0.5885796678406977],[123,194,65,0.6336695418415509],[123,194,66,0.6772787666340953],[123,194,67,0.7191018624712837],[123,194,68,0.7588610985723625],[123,194,69,0.7963184576533391],[123,194,70,0.8312873968961405],[123,194,71,0.8636444053571302],[123,194,72,0.8933403578146359],[123,194,73,0.9204116650553753],[123,194,74,0.9449912206001194],[123,194,75,0.9672810701370075],[123,194,76,0.9869311955570991],[123,194,77,1.0031537701506839],[123,194,78,1.0152825900885432],[123,194,79,1.0227865589781595],[123,195,64,0.6082863182324683],[123,195,65,0.65303676821096],[123,195,66,0.6962230069497244],[123,195,67,0.7375365875788082],[123,195,68,0.7766980074287793],[123,195,69,0.813468726241807],[123,195,70,0.8476629737403765],[123,195,71,0.8791593465542856],[123,195,72,0.9079121945055864],[123,195,73,0.9339627962513665],[123,195,74,0.9574503242846923],[123,195,75,0.9785843558090156],[123,195,76,0.9970207175760614],[123,195,77,1.0119757254385493],[123,195,78,1.0227879022548865],[123,195,79,1.0289314973770014],[123,196,64,0.6248727429074608],[123,196,65,0.6693290910393],[123,196,66,0.712145070249984],[123,196,67,0.7530091990372779],[123,196,68,0.7916400180194151],[123,196,69,0.8277981768081405],[123,196,70,0.8612983029927634],[123,196,71,0.8920206532358612],[123,196,72,0.9199225464802981],[123,196,73,0.94504957926747],[123,196,74,0.9675466231670693],[123,196,75,0.9876301853878534],[123,196,76,1.0049612259710206],[123,196,77,1.0187593806635378],[123,196,78,1.0283670487492942],[123,196,79,1.033262960303007],[123,197,64,0.6380814696764805],[123,197,65,0.6822825044063405],[123,197,66,0.7247764588958738],[123,197,67,0.7652488265229509],[123,197,68,0.8034160411741927],[123,197,69,0.8390376441711016],[123,197,70,0.8719282257663452],[123,197,71,0.9019691412108253],[123,197,72,0.9291200013912038],[123,197,73,0.9534299380377974],[123,197,74,0.9750486435031311],[123,197,75,0.9941986027818482],[123,197,76,1.0105450912311864],[123,197,77,1.023310352937835],[123,197,78,1.031839892083882],[123,197,79,1.0356160954870242],[123,198,64,0.647458686632901],[123,198,65,0.6914253225925056],[123,198,66,0.7336303693689459],[123,198,67,0.7737564418493286],[123,198,68,0.8115177893518575],[123,198,69,0.8466725462260768],[123,198,70,0.8790347488665692],[123,198,71,0.9084861191407491],[123,198,72,0.9349876142304008],[123,198,73,0.9585907428869098],[123,198,74,0.97944864810044],[123,198,75,0.9977882718155556],[123,198,76,1.0132785511914164],[123,198,77,1.0251443863297878],[123,198,78,1.0327342503979988],[123,198,79,1.0355338609463762],[123,199,64,0.6526217097690731],[123,199,65,0.6963574543254101],[123,199,66,0.7382918065236257],[123,199,67,0.7781047839461857],[123,199,68,0.81550844795203],[123,199,69,0.8502592339239045],[123,199,70,0.8821700388474999],[123,199,71,0.9111220662230264],[123,199,72,0.9370764283088779],[123,199,73,0.9600855056973386],[123,199,74,0.9803040642225775],[123,199,75,0.9979614519589134],[123,199,76,1.01272979634545],[123,199,77,1.0238374586168684],[123,199,78,1.030636380663739],[123,199,79,1.03261578508657],[123,200,64,0.6533110721993934],[123,200,65,0.6968046952534741],[123,200,66,0.7384738923919083],[123,200,67,0.7779964840171758],[123,200,68,0.8150824091592404],[123,200,69,0.8494861246609975],[123,200,70,0.8810187514330311],[123,200,71,0.9095599677782826],[123,200,72,0.9350696497863114],[123,200,73,0.9575992587970847],[123,200,74,0.9773029759345458],[123,200,75,0.9944100624403835],[123,200,76,1.0085955112680736],[123,200,77,1.0190925739774233],[123,200,78,1.025257684196999],[123,200,79,1.0265841551290258],[123,201,64,0.6493838859753698],[123,201,65,0.6926118528705374],[123,201,66,0.7340107643451339],[123,201,67,0.7732567474011782],[123,201,68,0.8100577479690224],[123,201,69,0.844165982548003],[123,201,70,0.8753901252673827],[123,201,71,0.9036072303681829],[123,201,72,0.9287743901055869],[123,201,73,0.9509401280718568],[123,201,74,0.9702555279400071],[123,201,75,0.9869469132672632],[123,201,76,1.0006919339815974],[123,201,77,1.0107306630465394],[123,201,78,1.0164254695916624],[123,201,79,1.0172746734528961],[123,202,64,0.6408067424723511],[123,202,65,0.6837354254088601],[123,202,66,0.7248500448542738],[123,202,67,0.7638256269212802],[123,202,68,0.8003683118406599],[123,202,69,0.8342278366533566],[123,202,70,0.8652097401288997],[123,202,71,0.8931872899107888],[123,202,72,0.91811313188851],[123,202,73,0.9400306617961371],[123,202,74,0.9590851190377517],[123,202,75,0.9754967612331975],[123,202,76,0.9889457767665066],[123,202,77,0.9986813814320823],[123,202,78,1.0040736511821446],[123,202,79,1.0046270861085829],[123,203,64,0.627648151348145],[123,203,65,0.6702358347007235],[123,203,66,0.7110448828489393],[123,203,67,0.7497498877216023],[123,203,68,0.7860554239767821],[123,203,69,0.8197085372219219],[123,203,70,0.8505109396073285],[123,203,71,0.8783309127936259],[123,203,72,0.9031149182928635],[123,203,73,0.9248989151832175],[123,203,74,0.9438193851975281],[123,203,75,0.960087190913022],[123,203,76,0.9733850084163966],[123,203,77,0.982973806691001],[123,203,78,0.9882333830343749],[123,203,79,0.9886757835030177],[123,204,64,0.6100705180733182],[123,204,65,0.6522692130084254],[123,204,66,0.6927455666749156],[123,204,67,0.7311744635917774],[123,204,68,0.7672592002296239],[123,204,69,0.8007439498685404],[123,204,70,0.8314259182444115],[123,204,71,0.8591671899843143],[123,204,72,0.8839062658306673],[123,204,73,0.9056692906540739],[123,204,74,0.9245809722551019],[123,204,75,0.94083932064482],[123,204,76,0.9541294979370945],[123,204,77,0.9637270337658105],[123,204,78,0.9690236284651386],[123,204,79,0.9695403732566528],[123,205,64,0.5883216600332859],[123,205,65,0.6300787438227842],[123,205,66,0.6701907086503247],[123,205,67,0.7083335047791764],[123,205,68,0.7442094796340512],[123,205,69,0.777559787746578],[123,205,70,0.8081764731378784],[123,205,71,0.8359142241388314],[123,205,72,0.8607018006477124],[123,205,73,0.8825531338251463],[123,205,74,0.9015780982266234],[123,205,75,0.9179583334992509],[123,205,76,0.9313815196900156],[123,205,77,0.9411406688813014],[123,205,78,0.9466416650898247],[123,205,79,0.9474162252321883],[123,206,64,0.5627258612021737],[123,206,65,0.6039855566301291],[123,206,66,0.6436980012204064],[123,206,67,0.6815410172888788],[123,206,68,0.7172163685673333],[123,206,69,0.7504620816914634],[123,206,70,0.7810644200088338],[123,206,71,0.8088695097074136],[123,206,72,0.8337946182643665],[123,206,73,0.8558390852150207],[123,206,74,0.8750949052422852],[123,206,75,0.8917238332361491],[123,206,76,0.9054161199797532],[123,206,77,0.9154852219014702],[123,206,78,0.9213535253985722],[123,206,79,0.9225649887350368],[123,207,64,0.5336744653883403],[123,207,65,0.5743791756476659],[123,207,66,0.6136545447107974],[123,207,67,0.6511810936712641],[123,207,68,0.6866603985355582],[123,207,69,0.7198272883391099],[123,207,70,0.7504616737324253],[123,207,71,0.7784000060379798],[123,207,72,0.8035463667775518],[123,207,73,0.8258831876699185],[123,207,74,0.845481601099189],[123,207,75,0.8624800252483082],[123,207,76,0.8765713450858252],[123,207,77,0.8870923971465992],[123,207,78,0.8934843728607468],[123,207,79,0.8953050818854612],[123,208,64,0.501616008051853],[123,208,65,0.5417075225275105],[123,208,66,0.5805067466796023],[123,208,67,0.6176977352975197],[123,208,68,0.6529822975869636],[123,208,69,0.6860920362194853],[123,208,70,0.716799993332069],[123,208,71,0.7449319034773467],[123,208,72,0.7703770535241394],[123,208,73,0.7930987495082265],[123,208,74,0.8131443904336397],[123,208,75,0.8306257224926595],[123,208,76,0.8452383307387706],[123,208,77,0.8563452826706721],[123,208,78,0.8634088135579298],[123,208,79,0.866002153162552],[123,209,64,0.46704588669357083],[123,209,65,0.5064664730290451],[123,209,66,0.5447497928679172],[123,209,67,0.5815842661227218],[123,209,68,0.616672375351863],[123,209,69,0.6497425098250249],[123,209,70,0.6805603914369094],[123,209,71,0.7089400824699218],[123,209,72,0.7347545752054709],[123,209,73,0.757945963383794],[123,209,74,0.7785351955126089],[123,209,75,0.7966041764085994],[123,209,76,0.8118512530403637],[123,209,77,0.8236684379989005],[123,209,78,0.8315411433451956],[123,209,79,0.8350595151198416],[123,210,64,0.43049556981591186],[123,210,65,0.4691889676596761],[123,210,66,0.5069166897488798],[123,210,67,0.54337233793657],[123,210,68,0.578259521709236],[123,210,69,0.6113034716539426],[123,210,70,0.642262208202596],[123,210,71,0.6709372656539576],[123,210,72,0.6971839714730812],[123,210,73,0.7209212808680611],[123,210,74,0.7421411666444235],[123,210,75,0.76089273282352],[123,210,76,0.7768771408280081],[123,210,77,0.789517880325423],[123,210,78,0.7983255305407494],[123,210,79,0.8029085502726148],[123,211,64,0.39252134445569753],[123,211,65,0.43043367628438],[123,211,66,0.4675668786756301],[123,211,67,0.5036205271021548],[123,211,68,0.538299819080354],[123,211,69,0.5713269222288195],[123,211,70,0.6024518496957196],[123,211,71,0.6314628629556943],[123,211,72,0.6581964019759369],[123,211,73,0.682546542751328],[123,211,74,0.7044739822089865],[123,211,75,0.7239923128458334],[123,211,76,0.7408055494835659],[123,211,77,0.7543709691714189],[123,211,78,0.7642261341441444],[123,211,79,0.7699990891571279],[123,212,64,0.35369260228844873],[123,212,65,0.3907732167034187],[123,212,66,0.4272744216275693],[123,212,67,0.46290252278214206],[123,212,68,0.4973647683488438],[123,212,69,0.5303803980898658],[123,212,70,0.5616911907413364],[123,212,71,0.5910715096808382],[123,212,72,0.6183378468686618],[123,212,73,0.6433578650626498],[123,212,74,0.666058938307017],[123,212,75,0.6864167187450017],[123,212,76,0.7041380961861767],[123,212,77,0.7187161895032104],[123,212,78,0.7297171575826752],[123,212,79,0.7367897605613503],[123,213,64,0.3145796643044364],[123,213,65,0.3507819271985266],[123,213,66,0.38661575855521857],[123,213,67,0.4217949066526926],[123,213,68,0.45602912840749826],[123,213,69,0.48903490776317887],[123,213,70,0.5205456422338942],[123,213,71,0.5503212976036848],[123,213,72,0.5781575307810464],[123,213,73,0.6038942808086495],[123,213,74,0.6274238280286181],[123,213,75,0.6486817648188687],[123,213,76,0.6673778566093437],[123,213,77,0.6830428333106289],[123,213,78,0.6952728379862186],[123,213,79,0.7037383139274969],[123,214,64,0.30599791345201094],[123,214,65,0.3175400674986744],[123,214,66,0.34615703632400474],[123,214,67,0.38086452410541627],[123,214,68,0.4148583693321237],[123,214,69,0.44785250570426294],[123,214,70,0.47957188291180564],[123,214,71,0.5097616990541167],[123,214,72,0.5381960702490579],[123,214,73,0.5646861374314494],[123,214,74,0.5890876103413349],[123,214,75,0.6112942332484432],[123,214,76,0.6310186230624183],[123,214,77,0.6478305796457455],[123,214,78,0.6613573709906031],[123,214,79,0.6712919139264062],[123,215,64,0.32431089356962006],[123,215,65,0.3343256903963994],[123,215,66,0.34340602277450893],[123,215,67,0.3516442411722791],[123,215,68,0.3743957391818121],[123,215,69,0.40737350421622465],[123,215,70,0.4393052555951136],[123,215,71,0.46992118400194344],[123,215,72,0.49897334460684367],[123,215,73,0.5262432499852412],[123,215,74,0.5515488685972642],[123,215,75,0.5747406549397205],[123,215,76,0.5955340240761048],[123,215,77,0.6135389731216356],[123,215,78,0.6284147710692012],[123,215,79,0.6398774072035],[123,216,64,0.3370908559159162],[123,216,65,0.34575083586079663],[123,216,66,0.3534570903487565],[123,216,67,0.36031203338279005],[123,216,68,0.3664509855553777],[123,216,69,0.3720454255304895],[123,216,70,0.4002468278865435],[123,216,71,0.43129453013887376],[123,216,72,0.46097609034000964],[123,216,73,0.48904281003176525],[123,216,74,0.5152740586594673],[123,216,75,0.5394759153527866],[123,216,76,0.5613665054322186],[123,216,77,0.5805968008713827],[123,216,78,0.5968586673929472],[123,216,79,0.6098915612965028],[123,217,64,0.3442573305285688],[123,217,65,0.3517510115361474],[123,217,66,0.3582814862575975],[123,217,67,0.3639597502389407],[123,217,68,0.36892720029451453],[123,217,69,0.37335829740932297],[123,217,70,0.3774635089045621],[123,217,71,0.3943298259583469],[123,217,72,0.42464521890037876],[123,217,73,0.45351705025488165],[123,217,74,0.48068554664785457],[123,217,75,0.5059116853183453],[123,217,76,0.5289161726378029],[123,217,77,0.5493913679674136],[123,217,78,0.5670620352188428],[123,217,79,0.5816912757249714],[123,218,64,0.3458068997872949],[123,218,65,0.3523354854821355],[123,218,66,0.3579011526987684],[123,218,67,0.3626219117284221],[123,218,68,0.36664366875622884],[123,218,69,0.3701423378241659],[123,218,70,0.3733261968125915],[123,218,71,0.3764384874403483],[123,218,72,0.39036285798178505],[123,218,73,0.42004066479382784],[123,218,74,0.44814943630416737],[123,218,75,0.47440467684133725],[123,218,76,0.4985294948433328],[123,218,77,0.5202576713009304],[123,218,78,0.539346862806757],[123,218,79,0.5555837652514726],[123,219,64,0.34181519585885745],[123,219,65,0.3475888007951339],[123,219,66,0.3524093357527057],[123,219,67,0.35640020362048264],[123,219,68,0.35971021686110316],[123,219,69,0.362515199847823],[123,219,70,0.36501980228289443],[123,219,71,0.36745952369740564],[123,219,72,0.3700999195208492],[123,219,73,0.38891798529534233],[123,219,74,0.4179631859762233],[123,219,75,0.4452447238917985],[123,219,76,0.4704878702051164],[123,219,77,0.493467471921528],[123,219,78,0.513973753864594],[123,219,79,0.5318167153144714],[123,220,64,0.33243834217886137],[123,220,65,0.33767171915849636],[123,220,66,0.34197101207948793],[123,220,67,0.345463372094794],[123,220,68,0.3482989126694344],[123,220,69,0.3506518466367015],[123,220,70,0.35272180384663465],[123,220,71,0.3547353294067314],[123,220,72,0.3569446103833926],[123,220,73,0.36036991268492213],[123,220,74,0.3903430152216679],[123,220,75,0.41864268818317846],[123,220,76,0.4449960526921046],[123,220,77,0.46921826583719184],[123,220,78,0.49113146552199516],[123,220,79,0.5105684096330649],[123,221,64,0.3179138389703064],[123,221,65,0.32282159332180643],[123,221,66,0.32682272888296493],[123,221,67,0.33004651553144027],[123,221,68,0.33264279813785785],[123,221,69,0.3347827149939027],[123,221,70,0.33665956889538107],[123,221,71,0.3384898508802332],[123,221,72,0.3405115420417142],[123,221,73,0.34272030852191326],[123,221,74,0.36541110103078933],[123,221,75,0.39471818993771446],[123,221,76,0.4221704403367401],[123,221,77,0.4476221532743437],[123,221,78,0.4709263818322924],[123,221,79,0.491937829983331],[123,222,64,0.2985608927991428],[123,222,65,0.30335216850932034],[123,222,66,0.3072718571423017],[123,222,67,0.3104497734622576],[123,222,68,0.31303400160169315],[123,222,69,0.3151912430113363],[123,222,70,0.31710729174376323],[123,222,71,0.31898763707074007],[123,222,72,0.3210553960736265],[123,222,73,0.32329490158632035],[123,222,74,0.34318256366862976],[123,222,75,0.3734871636390771],[123,222,76,0.40202722493004395],[123,222,77,0.42869460639811674],[123,222,78,0.45337192280286776],[123,222,79,0.47593472814641846],[123,223,64,0.27478019016628646],[123,223,65,0.2796528127571033],[123,223,66,0.2836952581104851],[123,223,67,0.287036412683116],[123,223,68,0.2898212309826497],[123,223,69,0.2922107617905432],[123,223,70,0.2943822790340694],[123,223,71,0.2965295173074939],[123,223,72,0.2988602910734058],[123,223,73,0.30134739485270823],[123,223,74,0.32355224213657174],[123,223,75,0.35484923877244856],[123,223,76,0.3844704031610801],[123,223,77,0.4123431354929755],[123,223,78,0.4383778889540152],[123,223,79,0.4624696700284574],[123,224,64,0.2470531151369213],[123,224,65,0.25218717617961806],[123,224,66,0.2565373630804766],[123,224,67,0.26023031052775064],[123,224,68,0.26340664772243094],[123,224,69,0.2662207512426901],[123,224,70,0.26884058248317944],[123,224,71,0.27144760966916637],[123,224,72,0.2742341685655037],[123,224,73,0.2771615470870538],[123,224,74,0.30628125925300054],[123,224,75,0.3385749455516656],[123,224,76,0.36927964920046635],[123,224,77,0.3983558536033955],[123,224,78,0.42573974140606363],[123,224,79,0.4513440519520889],[123,225,64,0.21594041100594014],[123,225,65,0.22149127916469222],[123,225,66,0.22630766641801597],[123,225,67,0.23051283530223046],[123,225,68,0.2342421214413981],[123,225,69,0.2376424599669787],[123,225,70,0.24087197897115223],[123,225,71,0.24409965999379873],[123,225,72,0.24750249300529864],[123,225,73,0.2565113241897663],[123,225,74,0.2910484636567932],[123,225,75,0.3243538763296522],[123,225,76,0.3561554004514863],[123,225,77,0.3864437237561912],[123,225,78,0.4151782760449286],[123,225,79,0.4422874913017126],[123,226,64,0.18208028600100884],[123,226,65,0.18817102949828085],[123,226,66,0.19357763186242388],[123,226,67,0.19841912388133837],[123,226,68,0.20282486532349767],[123,226,69,0.20693388920859768],[123,226,70,0.21089429797252654],[123,226,71,0.21486271152664882],[123,226,72,0.21900126586780455],[123,226,73,0.24226911855990513],[123,226,74,0.2777407737957028],[123,226,75,0.3120675010695512],[123,226,76,0.34497473819960034],[123,226,77,0.3764802511155071],[123,226,78,0.4065640145222307],[123,226,79,0.43516793122769865],[123,227,64,0.14609362917638719],[123,227,65,0.15280608994801367],[123,227,66,0.15888363119550197],[123,227,67,0.16444050859422926],[123,227,68,0.16959976027631762],[123,227,69,0.17449240943511846],[123,227,70,0.1792567059815907],[123,227,71,0.18403740725256978],[123,227,72,0.19310366857347577],[123,227,73,0.2299017925500837],[123,227,74,0.2663042896305111],[123,227,75,0.3016499492287023],[123,227,76,0.3356609454149968],[123,227,77,0.3683788418898141],[123,227,78,0.39980132195231566],[123,227,79,0.4298814213527572],[123,228,64,0.10818280197835008],[123,228,65,0.1155493282437049],[123,228,66,0.12232903091769239],[123,228,67,0.12863116343481742],[123,228,68,0.1345724024202864],[123,228,69,0.1402759446384056],[123,228,70,0.1458706327158801],[123,228,71,0.15149010964001086],[123,228,72,0.18175242646946782],[123,228,73,0.2193406150679387],[123,228,74,0.25665679993873447],[123,228,75,0.29300631573743263],[123,228,76,0.3281073027864614],[123,228,77,0.3620217340976585],[123,228,78,0.39476207507449523],[123,228,79,0.42629008922054823],[123,229,64,0.06844721488195749],[123,229,65,0.07645374296683254],[123,229,66,0.08392111183200847],[123,229,67,0.09095362490715216],[123,229,68,0.0976618148863527],[123,229,69,0.10416146638181191],[123,229,70,0.1105726599621011],[123,229,71,0.1343238988035252],[123,229,72,0.17214366090152516],[123,229,73,0.21049119248940085],[123,229,74,0.24869021455009954],[123,229,75,0.2860153683433697],[123,229,76,0.3221800961431074],[123,229,77,0.35726333036815416],[123,229,78,0.3912893453761147],[123,229,79,0.4242261976062485],[123,230,64,0.02703367051051482],[123,230,65,0.03562524739156736],[123,230,66,0.043725565598635385],[123,230,67,0.051434276727993014],[123,230,68,0.058856209117366345],[123,230,69,0.06610034269996566],[123,230,70,0.08868855614149926],[123,230,71,0.12578552272253563],[123,230,72,0.16417366520489798],[123,230,73,0.20323604534788606],[123,230,74,0.24227336539781744],[123,230,75,0.2805325990409496],[123,230,76,0.31772194234815687],[123,230,77,0.3539338226073466],[123,230,78,0.3892013464110367],[123,230,79,0.4234964372576657],[123,231,64,-0.015873035623178017],[123,231,65,-0.006787239385493665],[123,231,66,0.0018560768216936696],[123,231,67,0.010152426727375818],[123,231,68,0.01820156345278985],[123,231,69,0.045906705349495786],[123,231,70,0.08136414137567509],[123,231,71,0.11881655076682048],[123,231,72,0.15771822550725767],[123,231,73,0.19743754046070058],[123,231,74,0.237255141409147],[123,231,75,0.2763935867478242],[123,231,76,0.3145554028526962],[123,231,77,0.3518430796143192],[123,231,78,0.3882956181466942],[123,231,79,0.42388642948833005],[123,232,64,-0.06005984788164965],[123,232,65,-0.05060202852727691],[123,232,66,-0.041536415069489],[123,232,67,-0.023003760056384617],[123,232,68,0.0069763209232907575],[123,232,69,0.039949646715902065],[123,232,70,0.07554151081316993],[123,232,71,0.11328796777186882],[123,232,72,0.1526357552516394],[123,232,73,0.19294117849284115],[123,232,74,0.2334679572354241],[123,232,75,0.27341767122832306],[123,232,76,0.3124868849095463],[123,232,77,0.35078479764716725],[123,232,78,0.38835344833982177],[123,232,79,0.42516543862266126],[123,233,64,-0.06390756270155035],[123,233,65,-0.07367131363838915],[123,233,66,-0.0535363886327107],[123,233,67,-0.027212430661218374],[123,233,68,0.0025349580680093797],[123,233,69,0.03542622609708859],[123,233,70,0.07108849199500213],[123,233,71,0.10905621209424662],[123,233,72,0.14877080558379208],[123,233,73,0.18957923695781742],[123,233,74,0.23073155582121158],[123,233,75,0.2714119382636633],[123,233,76,0.3113108304469779],[123,233,77,0.3505409139386049],[123,233,78,0.3891445309406656],[123,233,79,0.4270912942930525],[123,234,64,-0.018020110033984682],[123,234,65,-0.027833075286922623],[123,234,66,-0.03735729596337823],[123,234,67,-0.030007528647176013],[123,234,68,-5.433229785474086E-4],[123,234,69,0.032202885648392326],[123,234,70,0.0678614236803883],[123,234,71,0.1059669784543899],[123,234,72,0.14595795160414468],[123,234,73,0.18717476865568897],[123,234,74,0.22885714481274383],[123,234,75,0.2701755160690595],[123,234,76,0.31081419260239906],[123,234,77,0.35088628316131776],[123,234,78,0.3904318615257655],[123,234,79,0.42941552358893254],[123,235,64,0.028443489134110836],[123,235,65,0.018775450402987906],[123,235,66,0.009337912156350214],[123,235,67,4.3426537038371293E-5],[123,235,68,-0.00239117662468262],[123,235,69,0.030138046973737773],[123,235,70,0.06570931875287554],[123,235,71,0.10385941573303106],[123,235,72,0.1440260544845572],[123,235,73,0.18554595554847558],[123,235,74,0.2276518668058174],[123,235,75,0.2695041829578745],[123,235,76,0.31078119991615183],[123,235,77,0.3515936168431757],[123,235,78,0.39197686975940926],[123,235,79,0.4318886930579059],[123,236,64,0.0752674426259834],[123,236,65,0.06595679568446111],[123,236,66,0.05681462177657669],[123,236,67,0.04775263927458971],[123,236,68,0.03868239727956896],[123,236,69,0.02951635065237751],[123,236,70,0.06447843968277414],[123,236,71,0.10257071972091117],[123,236,72,0.14280289944952648],[123,236,73,0.18451081807263547],[123,236,74,0.22692360343284307],[123,236,75,0.2691952862525547],[123,236,76,0.31099840818518143],[123,236,77,0.35243868573210896],[123,236,78,0.39354478888359523],[123,236,79,0.43426596055882777],[123,237,64,0.1224895623183644],[123,237,65,0.11376775529766109],[123,237,66,0.10514724137921605],[123,237,67,0.09653765783379352],[123,237,68,0.08784944495531116],[123,237,69,0.07899495306690604],[123,237,70,0.06988947670580825],[123,237,71,0.10194112082190483],[123,237,72,0.14212020962196065],[123,237,73,0.18389227988870718],[123,237,74,0.22648611328914214],[123,237,75,0.2690529724424139],[123,237,76,0.31126003997663126],[123,237,77,0.3532057851106766],[123,237,78,0.3949102622365108],[123,237,79,0.4363128369668105],[123,238,64,0.17033777023932456],[123,238,65,0.1624532204522273],[123,238,66,0.1545956375177251],[123,238,67,0.14667144669197912],[123,238,68,0.13858902581746788],[123,238,69,0.13025986909678797],[123,238,70,0.12159966043569924],[123,238,71,0.11252925635541242],[123,238,72,0.14181903573377866],[123,238,73,0.1835235880683721],[123,238,74,0.22616450369874116],[123,238,75,0.2688937285885162],[123,238,76,0.3113736118016054],[123,238,77,0.3536934630605625],[123,238,78,0.3958631867997575],[123,238,79,0.4378111577303778],[123,239,64,0.21890978232007618],[123,239,65,0.21212073875919618],[123,239,66,0.20527567795961607],[123,239,67,0.1982767964310129],[123,239,68,0.1910296169728054],[123,239,69,0.18344423837959928],[123,239,70,0.17543647547902647],[123,239,71,0.16692888950197923],[123,239,72,0.1578534773703953],[123,239,73,0.18325408871853333],[123,239,74,0.2258010363192727],[123,239,75,0.26855223497528324],[123,239,76,0.311165848948742],[123,239,77,0.3537205116766673],[123,239,78,0.39621479377401014],[123,239,79,0.43856526428048226],[123,240,64,0.2681750645359148],[123,240,65,0.26274283605960896],[123,240,66,0.25716193290608513],[123,240,67,0.2513294123242594],[123,240,68,0.24514728928288596],[123,240,69,0.2385239044001885],[123,240,70,0.2313751615768448],[123,240,71,0.2236256353323155],[123,240,72,0.21521124230810473],[123,240,73,0.20623150449391944],[123,240,74,0.2252612665861664],[123,240,75,0.2678875290089948],[123,240,76,0.3104888879777546],[123,240,77,0.35313222123093296],[123,240,78,0.39580396618323316],[123,240,79,0.4384083952914908],[123,241,64,0.3179943383445655],[123,241,65,0.31417715748256014],[123,241,66,0.31010840308503884],[123,241,67,0.30567918199409705],[123,241,68,0.3007874694686289],[123,241,69,0.29533962962311333],[123,241,70,0.28925178378580085],[123,241,71,0.2824510267762971],[123,241,72,0.274878099806274],[123,241,73,0.2666316275925512],[123,241,74,0.2580334219780015],[123,241,75,0.26678948036335964],[123,241,76,0.30922676687311945],[123,241,77,0.35180689728608194],[123,241,78,0.3945037935076359],[123,241,79,0.43720928779431706],[123,242,64,0.36813803421974955],[123,242,65,0.36618554006703774],[123,242,66,0.36386816459007765],[123,242,67,0.36107034661087367],[123,242,68,0.3576855940218081],[123,242,69,0.35361819197801686],[123,242,70,0.34878473630845064],[123,242,71,0.34311549214560855],[123,242,72,0.33655708860190375],[123,242,73,0.3292075810384585],[123,242,74,0.32137448806987856],[123,242,75,0.3133063721787165],[123,242,76,0.3073022028576057],[123,242,77,0.34966264075897524],[123,242,78,0.39222836334508],[123,242,79,0.43487898814143044],[123,243,64,0.4183036932814777],[123,243,65,0.4184520169491676],[123,243,66,0.4181119304671373],[123,243,67,0.41716057563509723],[123,243,68,0.41548665492535725],[123,243,69,0.4129923626998947],[123,243,70,0.4095951182662323],[123,243,71,0.4052291007721174],[123,243,72,0.3998479869004457],[123,243,73,0.3935496994168969],[123,243,74,0.38662608351196925],[123,243,75,0.37931179166964035],[123,243,76,0.37176705808417077],[123,243,77,0.36408772953173496],[123,243,78,0.388939790100988],[123,243,79,0.43137787282377515],[123,244,64,0.46813231702093516],[123,244,65,0.4705997531126046],[123,244,66,0.47244552904642684],[123,244,67,0.4735389451003911],[123,244,68,0.473763637179925],[123,244,69,0.47301976552160324],[123,244,70,0.4712259814123741],[123,244,71,0.46832117192430145],[123,244,72,0.4642672624146048],[123,244,73,0.45916257159739826],[123,244,74,0.4532820681337998],[123,244,75,0.44684523136608323],[123,244,76,0.440000965767957],[123,244,77,0.43283748608107986],[123,244,78,0.42539150719097907],[123,244,79,0.42675344475156574],[123,245,64,0.5172236651220957],[123,245,65,0.5222069127043123],[123,245,66,0.5264262990219979],[123,245,67,0.5297428194396445],[123,245,68,0.5320348481391872],[123,245,69,0.5332006172211962],[123,245,70,0.5331604497873883],[123,245,71,0.5318587470044507],[123,245,72,0.5292668774297599],[123,245,73,0.5254841598573369],[123,245,74,0.5207677132934865],[123,245,75,0.5153207873095595],[123,245,76,0.5092800132321627],[123,245,77,0.5027251534432693],[123,245,78,0.49568811872941965],[123,245,79,0.48816125368001284],[123,246,64,0.565150501379117],[123,246,65,0.5728214579147548],[123,246,66,0.5795784012779371],[123,246,67,0.5852736368533196],[123,246,68,0.5897801386528538],[123,246,69,0.5929943495229999],[123,246,70,0.5948387113160434],[123,246,71,0.5952639250255092],[123,246,72,0.5942519488948579],[123,246,73,0.5919037661748019],[123,246,74,0.5884579453172175],[123,246,75,0.5841006999402825],[123,246,76,0.5789556476740509],[123,246,77,0.5730934352379188],[123,246,78,0.5665405926964978],[123,246,79,0.5592876168939077],[123,247,64,0.6114717877086632],[123,247,65,0.6219748794215669],[123,247,66,0.6314070474601873],[123,247,67,0.6396115982188539],[123,247,68,0.6464560160162527],[123,247,69,0.6518351123512592],[123,247,70,0.6556738813445959],[123,247,71,0.6579300613662968],[123,247,72,0.6585972635374747],[123,247,73,0.6577788456894401],[123,247,74,0.6556944292772341],[123,247,75,0.6525126702680623],[123,247,76,0.64834366523697],[123,247,77,0.643248465487871],[123,247,78,0.6372477795164768],[123,247,79,0.6303298638151281],[123,248,64,0.6557448262591585],[123,248,65,0.6691948583988664],[123,248,66,0.6814116452962924],[123,248,67,0.6922292595435927],[123,248,68,0.7015096487290441],[123,248,69,0.7091461584390173],[123,248,70,0.7150667381210453],[123,248,71,0.7192368298079698],[123,248,72,0.7216626480059892],[123,248,73,0.722450667334284],[123,248,74,0.7218014931113881],[123,248,75,0.7198660112003867],[123,248,76,0.7167405452955559],[123,248,77,0.7124762749095849],[123,248,78,0.7070877991413302],[123,248,79,0.7005608462241043],[123,249,64,0.6975363496150377],[123,249,65,0.7140168600900915],[123,249,66,0.7290978606607943],[123,249,67,0.7426040279588193],[123,249,68,0.7543917630604938],[123,249,69,0.7643531092895269],[123,249,70,0.772419330215599],[123,249,71,0.7785641478487914],[123,249,72,0.7828071940358478],[123,249,73,0.7852588216354612],[123,249,74,0.786100892081103],[123,249,75,0.7854666340244355],[123,249,76,0.7834386168899786],[123,249,77,0.7800580889811333],[123,249,78,0.775333417344104],[123,249,79,0.7692476293897218],[123,250,64,0.7364325590972228],[123,250,65,0.7559946589457648],[123,250,66,0.7739885963878346],[123,250,67,0.7902295612565863],[123,250,68,0.8045684314231436],[123,250,69,0.8168961024921607],[123,250,70,0.827147455883414],[123,250,71,0.8353049652993937],[123,250,72,0.8414023386421805],[123,250,73,0.8455545756821264],[123,250,74,0.847925413570145],[123,250,75,0.8486308700455014],[123,250,76,0.8477400573117413],[123,250,77,0.8452844577903592],[123,250,78,0.8412662564308172],[123,250,79,0.8356657295769161],[123,251,64,0.7720481111590298],[123,251,65,0.7947097953252219],[123,251,66,0.8156338878298486],[123,251,67,0.8346260709680939],[123,251,68,0.851531752553491],[123,251,69,0.8662408203913053],[123,251,70,0.8786920143680075],[123,251,71,0.8888769161568111],[123,251,72,0.8968437993369784],[123,251,73,0.9027130752647423],[123,251,74,0.9066313222222651],[123,251,75,0.9086981273798208],[123,251,76,0.9089697228389975],[123,251,77,0.907468217661118],[123,251,78,0.9041898403687973],[123,251,79,0.8991121919206458],[123,252,64,0.8040340518785098],[123,252,65,0.8297799637634884],[123,252,66,0.8536197151637009],[123,252,67,0.8753495289851116],[123,252,68,0.8948094235013226],[123,252,69,0.9118884001100195],[123,252,70,0.9265292291472194],[123,252,71,0.9387328337592856],[123,252,72,0.9485623643729124],[123,252,73,0.9561443941838853],[123,252,74,0.961609645419964],[123,252,75,0.9650423829041263],[123,252,76,0.9664868116237467],[123,252,77,0.9659562845600065],[123,252,78,0.9634414743338802],[123,252,79,0.9589175086687128],[123,253,64,0.8320846995456983],[123,253,65,0.8608663328015795],[123,253,66,0.8875757324423489],[123,253,67,0.9119997777223703],[123,253,68,0.9339732034254598],[123,253,69,0.9533842249260647],[123,253,70,0.9701797431192136],[123,253,71,0.9843701292192051],[123,253,72,0.9960335380110534],[123,253,73,1.0053034307267277],[123,253,74,1.0122962991014408],[123,253,75,1.0170825093589133],[123,253,76,1.0196953587278414],[123,253,77,1.0201402792804652],[123,253,78,1.0184029586733288],[123,253,79,1.0144563777902356],[123,254,64,0.8559434753465586],[123,254,65,0.8876797963822105],[123,254,66,0.9171819133942163],[123,254,67,0.9442275438232685],[123,254,68,0.9686462691984354],[123,254,69,0.9903255970029803],[123,254,70,1.0092165857313222],[123,254,71,1.0253390331371022],[123,254,72,1.0387860408155352],[123,254,73,1.0496986513143454],[123,254,74,1.0581810539189682],[123,254,75,1.064291437608734],[123,254,76,1.068053563311177],[123,254,77,1.0694659844076737],[123,254,78,1.0685101372879249],[123,254,79,1.065157301953278],[123,255,64,0.8754076821420712],[123,255,65,0.9099861568091925],[123,255,66,0.9421741139683816],[123,255,67,0.9717403554068513],[123,255,68,0.9985094628179036],[123,255,69,1.0223682914738716],[123,255,70,1.043272012049277],[123,255,71,1.061249700594154],[123,255,72,1.0764091649724967],[123,255,73,1.0888996813171008],[123,255,74,1.0988153417358673],[123,255,75,1.106204154056635],[123,255,76,1.1110819479691385],[123,255,77,1.1134416330612724],[123,255,78,1.1132612804302404],[123,255,79,1.1105110278686074],[123,256,64,0.8903322313435439],[123,256,65,0.9276102392717265],[123,256,66,0.962348551626926],[123,256,67,0.9943073628575305],[123,256,68,1.023306430626373],[123,256,69,1.0492319918796025],[123,256,70,1.0720432137686222],[123,256,71,1.0917781794250552],[123,256,72,1.108558984635257],[123,256,73,1.1225437430401066],[123,256,74,1.133818902464138],[123,256,75,1.1424245332148273],[123,256,76,1.1483703502214193],[123,256,77,1.1516450294180516],[123,256,78,1.15222430192124],[123,256,79,1.150077826001746],[123,257,64,0.9006323178833835],[123,257,65,0.9404389379327251],[123,257,66,0.9775652013834579],[123,257,67,1.0117630631564503],[123,257,68,1.0428476543380751],[123,257,69,1.0707046069601232],[123,257,70,1.0952969021669545],[123,257,71,1.1166712417698454],[123,257,72,1.1349634212942368],[123,257,73,1.15034094087726],[123,257,74,1.1628852712412003],[123,257,75,1.1726310054300262],[123,257,76,1.1795837461506233],[123,257,77,1.183729501013006],[123,257,78,1.1850428107836144],[123,257,79,1.1834936106517115],[123,258,64,0.9062850432820513],[123,258,65,0.948423193581997],[123,258,66,0.9877501085887745],[123,258,67,1.0240099277555756],[123,258,68,1.0570133738741299],[123,258,69,1.0866454688001828],[123,258,70,1.1128727629983242],[123,258,71,1.1357500789060961],[123,258,72,1.1554261641731016],[123,258,73,1.1720783936353447],[123,258,74,1.1857861059472818],[123,258,75,1.1965810597650213],[123,258,76,1.2044669061922477],[123,258,77,1.2094286828203649],[123,258,78,1.2114409972934554],[123,258,79,1.2104749003980686],[123,259,64,0.9073299868103957],[123,259,65,0.9515789028533562],[123,259,66,0.9928966184625729],[123,259,67,1.0310199339932964],[123,259,68,1.0657554020047055],[123,259,69,1.096987412328018],[123,259,70,1.1246857833282942],[123,259,71,1.1489128593598692],[123,259,72,1.1698294456494607],[123,259,73,1.1876232140264955],[123,259,74,1.2023743550616932],[123,259,75,1.2141145820346761],[123,259,76,1.2228478830742042],[123,259,77,1.2285601331127352],[123,259,78,1.2312273534483977],[123,259,79,1.2308226189143934],[123,260,64,0.9038687247482279],[123,260,65,0.9499867590066611],[123,260,66,0.9930655223723641],[123,260,67,1.0328350000528048],[123,260,68,1.0690978307995356],[123,260,69,1.1017377361684861],[123,260,70,1.1307274503112184],[123,260,71,1.1561361502970902],[123,260,72,1.1781356717018396],[123,260,73,1.196924335330788],[123,260,74,1.2125862658598134],[123,260,75,1.2251560279982237],[123,260,76,1.2346403319077746],[123,260,77,1.2410277811002708],[123,260,78,1.2442972278541553],[123,260,79,1.244424736150104],[123,261,64,0.8960632977382221],[123,261,65,0.9437910242737466],[123,261,66,0.9883841208584453],[123,261,67,1.02956632346203],[123,261,68,1.0671366298854847],[123,261,69,1.1009780448492577],[123,261,70,1.1310658219082919],[123,261,71,1.157475202193834],[123,261,72,1.1803879073813741],[123,261,73,1.2000131852273812],[123,261,74,1.2164422329491704],[123,261,75,1.2297154317062235],[123,261,76,1.239844662428364],[123,261,77,1.2468232063482376],[123,261,78,1.2506342150278271],[123,261,79,1.2512577498790225],[123,262,64,0.8841336262361363],[123,262,65,0.9331972337693233],[123,262,66,0.9790442034060547],[123,262,67,1.0213926231362904],[123,262,68,1.0600381365123823],[123,262,69,1.0948629723613266],[123,262,70,1.1258444695476428],[123,262,71,1.153063096786815],[123,262,72,1.1767092173095275],[123,262,73,1.197003206795496],[123,262,74,1.214046487145908],[123,262,75,1.227888249003454],[123,262,76,1.238548023387297],[123,262,77,1.246025749974182],[123,262,78,1.2503103791191423],[123,262,79,1.2513870076158207],[123,263,64,0.8683538740563836],[123,263,65,0.9184688309658285],[123,263,66,0.9652989449636827],[123,263,67,1.0085572849626234],[123,263,68,1.048036437426055],[123,263,69,1.0836177870727526],[123,263,70,1.1152802927254073],[123,263,71,1.143108758303018],[123,263,72,1.1673008612007905],[123,263,73,1.1880882266842308],[123,263,74,1.205585624690661],[123,263,75,1.2198540361868038],[123,263,76,1.230923119093765],[123,263,77,1.238801457623866],[123,263,78,1.243485312048867],[123,263,79,1.2449658688996081],[123,264,64,0.8490477600136335],[123,264,65,0.8999227347329438],[123,264,66,0.9474587192082606],[123,264,67,0.991364410926524],[123,264,68,1.0314296425493112],[123,264,69,1.0675348779964011],[123,264,70,1.0996602055485223],[123,264,71,1.1278938279692112],[123,264,72,1.1524393444110732],[123,264,73,1.1735396704518846],[123,264,74,1.1913259768044835],[123,264,75,1.205873963818764],[123,264,76,1.21722585810749],[123,264,77,1.2254008542264851],[123,264,78,1.230404026064832],[123,264,79,1.2322337079450907],[123,265,64,0.826582817660209],[123,265,65,0.8779238379415082],[123,265,66,0.925885828556935],[123,265,67,0.970173771780786],[123,265,68,1.0105750504705426],[123,265,69,1.0469691224113338],[123,265,70,1.0793366952189012],[123,265,71,1.1077684018009941],[123,265,72,1.1324723235114662],[123,265,73,1.1537026250744953],[123,265,74,1.1716098195845506],[123,265,75,1.1862871656962755],[123,265,76,1.1977918340818763],[123,265,77,1.2061555505289745],[123,265,78,1.2113936807154284],[123,265,79,1.2135127566611577],[123,266,64,0.8013636031193224],[123,266,65,0.8528784376318966],[123,266,66,0.9009881509255205],[123,266,67,0.9453946632565454],[123,266,68,0.9858832057400663],[123,266,69,1.0223321348379721],[123,266,70,1.0547222524591133],[123,266,71,1.0831456316715027],[123,266,72,1.1078133668874697],[123,266,73,1.1289907486236517],[123,266,74,1.1468504242396835],[123,266,75,1.1615059229749436],[123,266,76,1.1730316387576516],[123,266,77,1.1814736814093705],[123,266,78,1.1868591442405032],[123,266,79,1.189203788036823],[123,267,64,0.7738238510137695],[123,267,65,0.8252265967464842],[123,267,66,0.873211703233252],[123,267,67,0.9174786658161672],[123,267,68,0.9578108479738529],[123,267,69,0.9940853973667086],[123,267,70,1.026282673879255],[123,267,71,1.054495189659491],[123,267,72,1.0789355703634511],[123,267,73,1.0998800271134042],[123,267,74,1.117525947665551],[123,267,75,1.132009683448535],[123,267,76,1.143425007106941],[123,267,77,1.1518341759692268],[123,267,78,1.157277389379703],[123,267,79,1.1597806398946027],[123,268,64,0.7444175784910108],[123,268,65,0.7954334374271008],[123,268,66,0.8430321216547134],[123,268,67,0.8869113079488075],[123,268,68,0.92685275276544],[123,268,69,0.9627322713407154],[123,268,70,0.9945292362857343],[123,268,71,1.0223355956774547],[123,268,72,1.0463640278529387],[123,268,73,1.0669013785168098],[123,268,74,1.084172163360035],[123,268,75,1.098337915984164],[123,268,76,1.109513794628131],[123,268,77,1.1177798594053723],[123,268,78,1.1231907235984886],[123,268,79,1.125783579011486],[123,269,64,0.7136091373436743],[123,269,65,0.7639793658765259],[123,269,66,0.8109450586180156],[123,269,67,0.8542026330077576],[123,269,68,0.893532464405161],[123,269,69,0.928808890392112],[123,269,70,0.9600097429311434],[123,269,71,0.9872254083790039],[123,269,72,1.0106671570339971],[123,269,73,1.0306321039513942],[123,269,74,1.0473740326780716],[123,269,75,1.061081800112536],[123,269,76,1.0718937867909273],[123,269,77,1.0799093866604577],[123,269,78,1.0851988537313124],[123,269,79,1.087811505607044],[123,270,64,0.6818622142256453],[123,270,65,0.731349228784214],[123,270,66,0.7774554965494319],[123,270,67,0.8198766695897965],[123,270,68,0.8583919204069439],[123,270,69,0.8928739348317718],[123,270,70,0.9232984417055362],[123,270,71,0.9497532793458395],[123,270,72,0.9724468800500623],[123,270,73,0.9916861860339353],[123,270,74,1.0077561164264073],[123,270,75,1.0208747507736993],[123,270,76,1.0312053406320796],[123,270,77,1.0388680078527859],[123,270,78,1.043949785042471],[123,270,79,1.0465129981992016],[123,271,64,0.649627778964684],[123,271,65,0.6980204013171221],[123,271,66,0.7430659783652971],[123,271,67,0.7844598054572793],[123,271,68,0.821979967843321],[123,271,69,0.8554972873933219],[123,271,70,0.8849848152695727],[123,271,71,0.9105268705546865],[123,271,72,0.932327659236496],[123,271,73,0.9507034344047488],[123,271,74,0.9659718267983446],[123,271,75,0.9783817782182961],[123,271,76,0.9881228585016781],[123,271,77,0.9953371654852441],[123,271,78,1.0001295547043643],[123,271,79,1.00257619882732],[123,272,64,0.6173309809701134],[123,272,65,0.6644498066742783],[123,272,66,0.7082637547099033],[123,272,67,0.7484680650018114],[123,272,68,0.7848397714876184],[123,272,69,0.8172475703304272],[123,272,70,0.845661243128747],[123,272,71,0.8701606351235456],[123,272,72,0.8909443878723551],[123,272,73,0.9083374784210725],[123,272,74,0.9226915196482219],[123,272,75,0.9342876830641809],[123,272,76,0.943343093960009],[123,272,77,0.9500229234334437],[123,272,78,0.9544507996933904],[123,272,79,0.9567175386429351],[123,273,64,0.5853569937365777],[123,273,65,0.6310598672059851],[123,273,66,0.6735068479401832],[123,273,67,0.7123932902501698],[123,273,68,0.747495113763863],[123,273,69,0.7786785638677678],[123,273,70,0.8059095356489727],[123,273,71,0.8292624613373912],[123,273,72,0.8489291359573673],[123,273,73,0.8652426070194379],[123,273,74,0.8785894271053607],[123,273,75,0.8892840865080134],[123,273,76,0.8975722898244562],[123,273,77,0.9036432277124398],[123,273,78,0.9076401591027293],[123,273,79,0.9096693038672957],[123,274,64,0.5540846907731878],[123,274,65,0.5982681543367001],[123,274,66,0.6392498509930187],[123,274,67,0.6767252831800104],[123,274,68,0.7104690916219525],[123,274,69,0.7403446821361712],[123,274,70,0.7663134235078767],[123,274,71,0.7884434164331187],[123,274,72,0.806918391849965],[123,274,73,0.8220787544896645],[123,274,74,0.8343466393484017],[123,274,75,0.8440706618899627],[123,274,76,0.8515259109981019],[123,274,77,0.8569263857104648],[123,274,78,0.8604357348537364],[123,274,79,0.8621762995800691],[123,275,64,0.5242073736650508],[123,275,65,0.5667780898556298],[123,275,66,0.606205879015849],[123,275,67,0.6421864406006144],[123,275,68,0.6744930023337152],[123,275,69,0.7029857892617877],[123,275,70,0.7276210705492991],[123,275,71,0.7484597840144696],[123,275,72,0.7656764869025636],[123,275,73,0.7796181872472197],[123,275,74,0.7907429212536938],[123,275,75,0.7994339157006695],[123,275,76,0.8059961651688129],[123,275,77,0.810669018314392],[123,275,78,0.8136370607946214],[123,275,79,0.8150392948447781],[123,276,64,0.4964563124732961],[123,276,65,0.5373199905165539],[123,276,66,0.5751045342891061],[123,276,67,0.6095059587009776],[123,276,68,0.6402960201296777],[123,276,69,0.6673315048759486],[123,276,70,0.690563101393868],[123,276,71,0.7100438562952234],[123,276,72,0.7259381576011357],[123,276,73,0.7385988221353847],[123,276,74,0.7485197758427202],[123,276,75,0.7561190016152929],[123,276,76,0.7617316018623799],[123,276,77,0.7656225194170164],[123,276,78,0.7679975503663654],[123,276,79,0.7690126488058677],[123,277,64,0.4713822608415279],[123,277,65,0.5104490444018208],[123,277,66,0.5465056914283669],[123,277,67,0.5792486855387149],[123,277,68,0.608448295996801],[123,277,69,0.6339576646097969],[123,277,70,0.6557214820364845],[123,277,71,0.6737842535070698],[123,277,72,0.6882992955328472],[123,277,73,0.6996243905944597],[123,277,74,0.7082890206626895],[123,277,75,0.7147457351880824],[123,277,76,0.7193596319514073],[123,277,77,0.7224211987823266],[123,277,78,0.7241574441610451],[123,277,79,0.7247413167029793],[123,278,64,0.44935273777980905],[123,278,65,0.4865420340106136],[123,278,66,0.5207956690906664],[123,278,67,0.5518107499359092],[123,278,68,0.5793560532508455],[123,278,69,0.6032808923472041],[123,278,70,0.6235235788472466],[123,278,71,0.6401194792716438],[123,278,72,0.653210007803759],[123,278,73,0.6631570166165249],[123,278,74,0.6705249082855733],[123,278,75,0.6758002939501903],[123,278,76,0.6793778549528222],[123,278,77,0.6815732932207772],[123,278,78,0.6826345692909457],[123,278,79,0.6827514279775837],[123,279,64,0.4305494115047799],[123,279,65,0.4657940600924892],[123,279,66,0.49818330923438636],[123,279,67,0.5274150131293216],[123,279,68,0.5532564295913511],[123,279,69,0.5755528512045672],[123,279,70,0.5942358368953475],[123,279,71,0.6093310439219488],[123,279,72,0.6209672015849317],[123,279,73,0.6295092823127997],[123,279,74,0.6355557055009314],[123,279,75,0.6396263550670055],[123,279,76,0.6421448105521871],[123,279,77,0.6434513963184639],[123,279,78,0.6438145190115435],[123,279,79,0.6434402932893661],[123,280,64,0.41496404658897834],[123,280,65,0.4482138526366729],[123,280,66,0.4786946705447544],[123,280,67,0.5061051643689087],[123,280,68,0.5302109952140692],[123,280,69,0.5508532045017369],[123,280,70,0.5679562034651672],[123,280,71,0.5815353688723451],[123,280,72,0.5917059855562553],[123,280,73,0.5988351458957687],[123,280,74,0.6035541604298439],[123,280,75,0.6064151567346621],[123,280,76,0.6078696902505722],[123,280,77,0.6082818854288731],[123,280,78,0.6079398676393012],[123,280,79,0.6070654858382806],[123,281,64,0.40239301441947545],[123,281,65,0.4336176690170719],[123,281,66,0.4621663360247799],[123,281,67,0.48773846046431946],[123,281,68,0.5100979469803929],[123,281,69,0.5290812867234927],[123,281,70,0.5446052967638184],[123,281,71,0.5566744720362262],[123,281,72,0.5653898882470032],[123,281,73,0.5711197120749388],[123,281,74,0.5745268575586907],[123,281,75,0.5761944833143368],[123,281,76,0.5766010091324911],[123,281,77,0.5761333459256216],[123,281,78,0.5750984207625932],[123,281,79,0.5737329969905005],[123,282,64,0.39243036696526956],[123,282,65,0.4216217792925999],[123,282,66,0.4482373347513503],[123,282,67,0.47197710927924347],[123,282,68,0.4926029786437879],[123,282,69,0.5099464844716943],[123,282,70,0.5239163198204255],[123,282,71,0.5345054342917931],[123,282,72,0.5417998932736465],[123,282,73,0.5461678548669044],[123,282,74,0.548302460693573],[123,282,75,0.5488165742052523],[123,282,76,0.5482142377559258],[123,282,77,0.546903992717298],[123,282,78,0.5452105007469796],[123,282,79,0.543384466209577],[123,283,64,0.38445947385486046],[123,283,65,0.41163353866409313],[123,283,66,0.43633967779764254],[123,283,67,0.45827829717462687],[123,283,68,0.47720882713410406],[123,283,69,0.49295732740886566],[123,283,70,0.5054237195777497],[123,283,71,0.5145886469964112],[123,283,72,0.5205222914752852],[123,283,73,0.5235916928199318],[123,283,74,0.5245188438354729],[123,283,75,0.5239449564563626],[123,283,76,0.5223983941643007],[123,283,77,0.5203080890241701],[123,283,78,0.5180152675344787],[123,283,79,0.5157834852923511],[123,284,64,0.37766510283316196],[123,284,65,0.40286265759273276],[123,284,66,0.42570881916242004],[123,284,67,0.4459038448221777],[123,284,68,0.4632041299263884],[123,284,69,0.4774295560413893],[123,284,70,0.48847047564289264],[123,284,71,0.4962943333732367],[123,284,72,0.5009544470447692],[123,284,73,0.5028156108577173],[123,284,74,0.5026273774075137],[123,284,75,0.501058002991797],[123,284,76,0.4986588819342098],[123,284,77,0.4958780733386401],[123,284,78,0.49307214573213176],[123,284,79,0.49051633959651986],[123,285,64,0.3716992465414847],[123,285,65,0.39497857241176587],[123,285,66,0.41603164604326703],[123,285,67,0.4345579981635247],[123,285,68,0.45031031604058547],[123,285,69,0.4631015428819294],[123,285,70,0.47281162413739164],[123,285,71,0.47939390070601423],[123,285,72,0.48288386384079224],[123,285,73,0.483642840722352],[123,285,74,0.48244633153978783],[123,285,75,0.4799880293267462],[123,285,76,0.4768408097286896],[123,285,77,0.47347037850814977],[123,285,78,0.4702472475019997],[123,285,79,0.4674570390308023],[123,286,64,0.3668687708933527],[123,286,65,0.38829709495523357],[123,286,66,0.4076317684823203],[123,286,67,0.4245710374295235],[123,286,68,0.43886325990450803],[123,286,69,0.45031376806921],[123,286,70,0.45879138853435003],[123,286,71,0.46423462124687676],[123,286,72,0.46666037654411485],[123,286,73,0.4664251335012999],[123,286,74,0.46432791608299806],[123,286,75,0.461085507446784],[123,286,76,0.45729012142882913],[123,286,77,0.4534231710120052],[123,286,78,0.4498673776740678],[123,286,79,0.4469172216159744],[123,287,64,0.3634244355910059],[123,287,65,0.3830786594736014],[123,287,66,0.40077794837564523],[123,287,67,0.4162187393478483],[123,287,68,0.429144509492413],[123,287,69,0.4393524146687927],[123,287,70,0.44669959948359084],[123,287,71,0.45110917856453314],[123,287,72,0.4525789627569541],[123,287,73,0.45145909285149244],[123,287,74,0.448568964222409],[123,287,75,0.44464543912708343],[123,287,76,0.44029739526621514],[123,287,77,0.436019605437349],[123,287,78,0.4322049726840136],[123,287,79,0.429155120940522],[123,288,64,0.36152778228890303],[123,288,65,0.37949527349475226],[123,288,66,0.39565119841217544],[123,288,67,0.40968970266810645],[123,288,68,0.4213489085619602],[123,288,69,0.43041734783860297],[123,288,70,0.4367400796794723],[123,288,71,0.4402244939117872],[123,288,72,0.4408490323608785],[123,288,73,0.43895595120307473],[123,288,74,0.4353812506720873],[123,288,75,0.4308782995522057],[123,288,76,0.4260695184350791],[123,288,77,0.42146035213620175],[123,288,78,0.41745161466280334],[123,288,79,0.4143502067332067],[123,289,64,0.3612621589153017],[123,289,65,0.37764107225631194],[123,289,66,0.3923548913017041],[123,289,67,0.40509503660367246],[123,289,68,0.4155938878413327],[123,289,69,0.4236310307318197],[123,289,70,0.42903920416214825],[123,289,71,0.4317099475417702],[123,289,72,0.4316023225731669],[123,289,73,0.4290491468937472],[123,289,74,0.42489875546193223],[123,289,75,0.41991698937718186],[123,289,76,0.4147363268051088],[123,289,77,0.409869922351628],[123,289,78,0.4057240386714145],[123,289,79,0.4026088703107269],[123,290,64,0.36264313190743025],[123,290,65,0.37754230294199137],[123,290,66,0.39092433988267433],[123,290,67,0.4024775603335583],[123,290,68,0.4119283065154015],[123,290,69,0.4190470289914662],[123,290,70,0.42365408659755377],[123,290,71,0.42562526257620026],[123,290,72,0.4249004914615289],[123,290,73,0.421801635043975],[123,290,74,0.41718469590417007],[123,290,75,0.41182358832207655],[123,290,76,0.40635707820862876],[123,290,77,0.4013028574324423],[123,290,78,0.3970700328157107],[123,290,79,0.3939700297993504],[123,291,64,0.36562828636210065],[123,291,65,0.37916673872369766],[123,291,66,0.39133584811143296],[123,291,67,0.4018205135658976],[123,291,68,0.41034084401244486],[123,291,69,0.41665810383812896],[123,291,70,0.4205803915374646],[123,291,71,0.4219680514269479],[123,291,72,0.42074240991840495],[123,291,73,0.4172129321742219],[123,291,74,0.41223832674041727],[123,291,75,0.4065959103010864],[123,291,76,0.4009267593031674],[123,291,77,0.395749782137423],[123,291,78,0.39147423124239955],[123,291,79,0.3884106551314136],[123,292,64,0.3701264141004545],[123,292,65,0.3824325226082099],[123,292,66,0.3935152329318238],[123,292,67,0.4030557781620082],[123,292,68,0.41076794209044754],[123,292,69,0.4164038937499088],[123,292,70,0.4197597726588024],[123,292,71,0.4206810247701368],[123,292,72,0.41907115209412715],[123,292,73,0.4152258945635434],[123,292,74,0.4100015084686862],[123,292,75,0.40417386008558887],[123,292,76,0.3983822260088472],[123,292,77,0.3931433220285058],[123,292,78,0.3888638000155692],[123,292,79,0.38585121281620044],[123,293,64,0.3760060896476086],[123,293,65,0.38721644108909303],[123,293,66,0.39734581702573],[123,293,67,0.4060716108215648],[123,293,68,0.4131012972234629],[123,293,69,0.41817818473502133],[123,293,70,0.4210869369825526],[123,293,71,0.42165886307310413],[123,293,72,0.4197806842892262],[123,293,73,0.4157332303497817],[123,293,74,0.4103650438505501],[123,293,75,0.4044455915013239],[123,293,76,0.39860817752077166],[123,293,77,0.3933638849531079],[123,293,78,0.3891140158739378],[123,293,79,0.38616103048533207],[123,294,64,0.38310363412693876],[123,294,65,0.3933616276036396],[123,294,66,0.4026758924443859],[123,294,67,0.41071988682874494],[123,294,68,0.4171949032879267],[123,294,69,0.42183576919697185],[123,294,70,0.424416335072246],[123,294,71,0.42475475067419555],[123,294,72,0.4227222523058797],[123,294,73,0.41858374537138454],[123,294,74,0.4131747825985021],[123,294,75,0.4072534671597714],[123,294,76,0.4014429638964724],[123,294,77,0.3962453066156638],[123,294,78,0.3920537378689111],[123,294,79,0.3891635812127628],[123,295,64,0.39123046706877795],[123,295,65,0.4006846957946221],[123,295,66,0.4093256551202488],[123,295,67,0.4168228548591425],[123,295,68,0.42287164454871706],[123,295,69,0.42719889339209977],[123,295,70,0.4295684772117948],[123,295,71,0.4297865724151771],[123,295,72,0.4277104672582806],[123,295,73,0.42358832275061703],[123,295,74,0.4182374942432695],[123,295,75,0.4123998197234625],[123,295,76,0.4066842272181552],[123,295,77,0.40158036023809096],[123,295,78,0.3974707718831529],[123,295,79,0.3946416876090793],[123,296,64,0.4001798461340748],[123,296,65,0.4089823025773581],[123,296,66,0.41709361025990604],[123,296,67,0.42417940284789424],[123,296,68,0.42992943894539476],[123,296,69,0.434063293479907],[123,296,70,0.43633587556309406],[123,296,71,0.4365427728266828],[123,296,72,0.43452908984234667],[123,296,73,0.43052563621859163],[123,296,74,0.42532650918152654],[123,296,75,0.41965251470569337],[123,296,76,0.4140943763302233],[123,296,77,0.40912613030969425],[123,296,78,0.4051171280301952],[123,296,79,0.4023426456906528],[123,297,64,0.40973299475240366],[123,297,65,0.41803714101152023],[123,297,66,0.42576244861746826],[123,297,67,0.43257083491848936],[123,297,68,0.4381469316780951],[123,297,69,0.4422038201656492],[123,297,70,0.4444886123028614],[123,297,71,0.44478787786614465],[123,297,72,0.44293651306419835],[123,297,73,0.4391475971815226],[123,297,74,0.43418712790337366],[123,297,75,0.42875031480396764],[123,297,76,0.4234058951513709],[123,297,77,0.4186092504257543],[123,297,78,0.4147141709342994],[123,297,79,0.41198326852280875],[123,298,64,0.41966461767482116],[123,298,65,0.4276233629781739],[123,298,66,0.43510439364893216],[123,298,67,0.44176615937275826],[123,298,68,0.44728873909358713],[123,298,69,0.4513796519357273],[123,298,70,0.45377953373927926],[123,298,71,0.45426767920882205],[123,298,72,0.45267094342806624],[123,298,73,0.44918453552891857],[123,298,74,0.44454179840035546],[123,298,75,0.4394080457680064],[123,298,76,0.4343264845621488],[123,298,77,0.4297310052157709],[123,298,78,0.4259576628915973],[123,298,79,0.4232548496381179],[123,299,64,0.4297478044412206],[123,299,65,0.43751143166167944],[123,299,66,0.4448860195471379],[123,299,67,0.45152688774162747],[123,299,68,0.4571102428710493],[123,299,69,0.4613390968853839],[123,299,70,0.4639490704078981],[123,299,71,0.46471408109131773],[123,299,72,0.46345528058295354],[123,299,73,0.4603501141829612],[123,299,74,0.45609506175319214],[123,299,75,0.4513215638014176],[123,299,76,0.446544037867009],[123,299,77,0.44217229636028377],[123,299,78,0.4385226999113584],[123,299,79,0.4358280462285625],[123,300,64,0.4397583207624618],[123,300,65,0.4474724038367607],[123,300,66,0.45487254015763245],[123,300,67,0.46161134489699435],[123,300,68,0.46736193450796315],[123,300,69,0.47182398313915586],[123,300,70,0.4747296831473058],[123,300,71,0.4758496097081593],[123,300,72,0.47500169542869786],[123,300,73,0.4723459773897972],[123,300,74,0.46853826590003217],[123,300,75,0.4641725244979132],[123,300,76,0.4597314498318074],[123,300,77,0.4555984726973332],[123,300,78,0.45206854063852453],[123,300,79,0.4493576821128088],[123,301,64,0.4494782878170176],[123,301,65,0.45728164196045784],[123,301,66,0.4648315687751514],[123,301,67,0.471778490224401],[123,301,68,0.477793310105752],[123,301,69,0.48257363786366503],[123,301,70,0.48584993515409114],[123,301,71,0.48739158516090836],[123,301,72,0.48701590668083067],[123,301,73,0.4848661327520654],[123,301,74,0.481554047584465],[123,301,75,0.47763295331124295],[123,301,76,0.47355125929584563],[123,301,77,0.4696640244175707],[123,301,78,0.46624332815645175],[123,301,79,0.46348747047744693],[123,302,64,0.45869924946223994],[123,302,65,0.4667219560690947],[123,302,66,0.4745363488208644],[123,302,67,0.4817912498566841],[123,302,68,0.48815631545539967],[123,302,69,0.49332845487303145],[123,302,70,0.4970381900174466],[123,302,71,0.49905595596020513],[123,302,72,0.49920115589471614],[123,302,73,0.4976010670032189],[123,302,74,0.49482058248394334],[123,302,75,0.491369617559567],[123,302,76,0.48766012535926667],[123,302,77,0.48401714134890306],[123,302,78,0.48068870467081104],[123,302,79,0.4778546563932319],[123,303,64,0.46722462736059167],[123,303,65,0.4755861754805619],[123,303,66,0.48376845540064484],[123,303,67,0.4914193599688116],[123,303,68,0.4982083414231889],[123,303,69,0.503833050826975],[123,303,70,0.5080259357333936],[123,303,71,0.5105607960806545],[123,303,72,0.5112618809487748],[123,303,73,0.510241595523348],[123,303,74,0.5080156035182128],[123,303,75,0.5050481999637656],[123,303,76,0.5017131371451895],[123,303,77,0.4983041353299635],[123,303,78,0.49504431907385393],[123,303,79,0.49209457910542154],[123,304,64,0.47487156401989183],[123,304,65,0.48367915030103303],[123,304,66,0.4923199677435518],[123,304,67,0.5004417211331705],[123,304,68,0.5077147696359131],[123,304,69,0.5138390100210666],[123,304,70,0.5185507346982039],[123,304,71,0.5216294645682333],[123,304,72,0.5229070879866002],[123,304,73,0.522482445596444],[123,304,74,0.5208201873378211],[123,304,75,0.518337273719895],[123,304,76,0.5153679571369325],[123,304,77,0.5121737266728865],[123,304,78,0.508952227389642],[123,304,79,0.5058451540989571],[123,305,64,0.481472153748907],[123,305,65,0.4908191827373614],[123,305,66,0.49999511252168194],[123,305,67,0.5086482637363725],[123,305,68,0.5164510684665254],[123,305,69,0.5231072177699655],[123,305,70,0.5283587996817216],[123,305,71,0.531993427700794],[123,305,72,0.5338534218184054],[123,305,73,0.5340255734093886],[123,305,74,0.5329223089928465],[123,305,75,0.5309120791057714],[123,305,76,0.5282887980901525],[123,305,77,0.5252811947150671],[123,305,78,0.5220611860997753],[123,305,79,0.5187512749378603],[123,306,64,0.4868740615270426],[123,306,65,0.4968388882139937],[123,306,66,0.5066113780503181],[123,306,67,0.5158413244565936],[123,306,68,0.5242044393193446],[123,306,69,0.5314097823828832],[123,306,70,0.5372071957799561],[123,306,71,0.5413947437011651],[123,306,72,0.5438279347814269],[123,306,73,0.5445832147924428],[123,306,74,0.544020164781756],[123,306,75,0.5424581016217411],[123,306,76,0.5401502335201019],[123,306,77,0.537292392460241],[123,306,78,0.534030838350094],[123,306,79,0.5304691348794599],[123,307,64,0.49094052978904495],[123,307,65,0.5015854862952408],[123,307,66,0.5120000993691363],[123,307,67,0.5218365338021244],[123,307,68,0.5307750132153988],[123,307,69,0.5385315457317562],[123,307,70,0.5448656683473128],[123,307,71,0.5495882100031015],[123,307,72,0.5525705540594297],[123,307,73,0.5538806697012544],[123,307,74,0.5538252632802941],[123,307,75,0.5526744516654181],[123,307,76,0.5506408417636646],[123,307,77,0.5478876253084421],[123,307,78,0.5445357930377996],[123,307,79,0.5406704682627955],[123,308,64,0.49354977312387416],[123,308,65,0.5049205214121317],[123,308,66,0.5160065142037658],[123,308,67,0.5264632147105166],[123,308,68,0.5359765976773864],[123,308,69,0.5442711824116925],[123,308,70,0.5511180969081367],[123,308,71,0.5563431730698626],[123,308,72,0.5598362474611946],[123,308,73,0.5616588204403767],[123,308,74,0.5620652845505092],[123,308,75,0.5612770457405998],[123,308,76,0.5594666836164902],[123,308,77,0.5567653938752452],[123,308,78,0.5532695967794985],[123,308,79,0.5490467116717805],[123,309,64,0.4945937608890633],[123,309,65,0.5067190133950915],[123,309,66,0.5184892898088719],[123,309,67,0.529564292209389],[123,309,68,0.539636973915211],[123,309,69,0.5484418874945509],[123,309,70,0.5557635750483055],[123,309,71,0.5614450007660421],[123,309,72,0.5653968876584956],[123,309,73,0.5676763836286847],[123,309,74,0.5684867075301692],[123,309,75,0.568001589200496],[123,309,76,0.56635461354524],[123,309,77,0.5636460009002019],[123,309,78,0.5599485987599643],[123,309,79,0.5553130848728219],[123,310,64,0.49397638773850366],[123,310,65,0.5068680378104706],[123,310,66,0.5193195206908733],[123,310,67,0.5309957141371251],[123,310,68,0.5415977443104483],[123,310,69,0.5508716528741379],[123,310,70,0.5586171162854957],[123,310,71,0.5646962172814081],[123,310,72,0.5690428148824627],[123,310,73,0.57171189590573],[123,310,74,0.5728572056017674],[123,310,75,0.5726063605246159],[123,310,76,0.5710554244744357],[123,310,77,0.5682750222441016],[123,310,78,0.5643157084613946],[123,310,79,0.5592125915268087],[123,311,64,0.4916110320661473],[123,311,65,0.5052647361033251],[123,311,66,0.5183791972125967],[123,311,67,0.530625382925642],[123,311,68,0.5417137302017906],[123,311,69,0.5514031322049223],[123,311,70,0.5595099859198817],[123,311,71,0.565917300608366],[123,311,72,0.5705840980797993],[123,311,73,0.5735654333803443],[123,311,74,0.5749678103422655],[123,311,75,0.5748747971303045],[123,311,76,0.5733468261487469],[123,311,77,0.5704266419757341],[123,311,78,0.566144046273684],[123,311,79,0.5605199396758387],[123,312,64,0.48741750236331466],[123,312,65,0.5018137555442197],[123,312,66,0.5155591450777376],[123,312,67,0.5283315984432139],[123,312,68,0.5398519199695728],[123,312,69,0.5498930944325073],[123,312,70,0.5582896588636288],[123,312,71,0.5649471425715421],[123,312,72,0.569851494527478],[123,312,73,0.5730600648202582],[123,312,74,0.5746348434524806],[123,312,75,0.5746178827179721],[123,312,76,0.573036257069895],[123,312,77,0.5699068515474736],[123,312,78,0.5652404869851598],[123,312,79,0.5590453820042582],[123,313,64,0.48131837149142426],[123,313,65,0.49642411898179684],[123,313,66,0.5107564356967844],[123,313,67,0.5240010118989069],[123,313,68,0.5358899674208429],[123,313,69,0.5462114659172144],[123,313,70,0.5548194034504403],[123,313,71,0.5616431714106364],[123,313,72,0.5666971079069648],[123,313,73,0.5700430385836804],[123,313,74,0.57170161686695],[123,313,75,0.5716763361507485],[123,313,76,0.569963530008809],[123,313,77,0.5665565130602145],[123,313,78,0.56144909615423],[123,313,79,0.5546384758743816],[123,314,64,0.4732346988685677],[123,314,65,0.48900552439960265],[123,314,66,0.5038712674329732],[123,314,67,0.5175260908072802],[123,314,68,0.5297142404737066],[123,314,69,0.5402399611495969],[123,314,70,0.548977491224055],[123,314,71,0.5558811369155328],[123,314,72,0.5609947448370446],[123,314,73,0.5643867032919851],[123,314,74,0.5660399010435181],[123,314,75,0.5659226018678879],[123,314,76,0.5640033110924307],[123,314,77,0.5602542866171385],[123,314,78,0.554654459361478],[123,314,79,0.5471917631364777],[123,315,64,0.46308114057171634],[123,315,65,0.4794640742788939],[123,315,66,0.49480331772992314],[123,315,67,0.5088020950149239],[123,315,68,0.5212174201424421],[123,315,69,0.5318703020592972],[123,315,70,0.5406560327070283],[123,315,71,0.5475545581149108],[123,315,72,0.5526399698664011],[123,315,73,0.5559891622445887],[123,315,74,0.5575511614336308],[123,315,75,0.5572626418328211],[123,315,76,0.5550674324659929],[123,315,77,0.55091942176705],[123,315,78,0.5447849043428776],[123,315,79,0.5366443697136393],[123,316,64,0.4507604473526661],[123,316,65,0.4676974347655808],[123,316,66,0.4834475661191736],[123,316,67,0.49772356378712446],[123,316,68,0.5102956498217512],[123,316,69,0.521002025915686],[123,316,70,0.529759439148318],[123,316,71,0.5365738335169681],[123,316,72,0.5415498589246541],[123,316,73,0.5447746615747984],[123,316,74,0.546167563132208],[123,316,75,0.545637529014825],[123,316,76,0.5431070385298202],[123,316,77,0.5385144130364237],[123,316,78,0.5318156160033514],[123,316,79,0.5229855249608344],[123,317,64,0.4361573505688594],[123,317,65,0.45358942464242324],[123,317,66,0.4696895881087042],[123,317,67,0.4841803139556949],[123,317,68,0.4968452348711333],[123,317,69,0.5075398818212322],[123,317,70,0.5162025102505665],[123,317,71,0.5228650139030847],[123,317,72,0.5276624512326235],[123,317,73,0.5306937121473402],[123,317,74,0.5318527437077494],[123,317,75,0.5310248424048888],[123,317,76,0.5281145657511747],[123,317,77,0.5230475195506178],[123,317,78,0.5157716443110641],[123,317,79,0.5062580007984668],[123,318,64,0.4191318360294745],[123,318,65,0.43700403410686134],[123,318,66,0.45340031995281005],[123,318,67,0.4680529491283437],[123,318,68,0.48075889249975956],[123,318,69,0.4913908157979664],[123,318,70,0.4999081478774454],[123,318,71,0.5063682376748008],[123,318,72,0.5109358996721899],[123,318,73,0.5137229451979469],[123,318,74,0.5146023542130491],[123,318,75,0.5134398635661686],[123,318,76,0.51012555605154],[123,318,77,0.5045751487446548],[123,318,78,0.4967308050728604],[123,318,79,0.4865614706208658],[123,319,64,0.3995118057550158],[123,319,65,0.4177788733527427],[123,319,66,0.4344302943016366],[123,319,67,0.4492078799579231],[123,319,68,0.46192155195022405],[123,319,69,0.4724605444654687],[123,319,70,0.4808046957395403],[123,319,71,0.4870358287526285],[123,319,72,0.4913473196143312],[123,319,73,0.49386470171362595],[123,319,74,0.49444436837519057],[123,319,75,0.4929365747177424],[123,319,76,0.48922030376810655],[123,319,77,0.4832041041623821],[123,319,78,0.47482647358970503],[123,319,79,0.4640557879786117],[124,-64,64,64.0],[124,-64,65,64.0],[124,-64,66,64.0],[124,-64,67,64.0],[124,-64,68,64.0],[124,-64,69,64.0],[124,-64,70,64.0],[124,-64,71,64.0],[124,-64,72,64.0],[124,-64,73,64.0],[124,-64,74,64.0],[124,-64,75,64.0],[124,-64,76,64.0],[124,-64,77,64.0],[124,-64,78,64.0],[124,-64,79,64.0],[124,-63,64,64.0],[124,-63,65,64.0],[124,-63,66,64.0],[124,-63,67,64.0],[124,-63,68,64.0],[124,-63,69,64.0],[124,-63,70,64.0],[124,-63,71,64.0],[124,-63,72,64.0],[124,-63,73,64.0],[124,-63,74,64.0],[124,-63,75,64.0],[124,-63,76,64.0],[124,-63,77,64.0],[124,-63,78,64.0],[124,-63,79,64.0],[124,-62,64,64.0],[124,-62,65,64.0],[124,-62,66,64.0],[124,-62,67,64.0],[124,-62,68,64.0],[124,-62,69,64.0],[124,-62,70,64.0],[124,-62,71,64.0],[124,-62,72,64.0],[124,-62,73,64.0],[124,-62,74,64.0],[124,-62,75,64.0],[124,-62,76,64.0],[124,-62,77,64.0],[124,-62,78,64.0],[124,-62,79,64.0],[124,-61,64,64.0],[124,-61,65,64.0],[124,-61,66,64.0],[124,-61,67,64.0],[124,-61,68,64.0],[124,-61,69,64.0],[124,-61,70,64.0],[124,-61,71,64.0],[124,-61,72,64.0],[124,-61,73,64.0],[124,-61,74,64.0],[124,-61,75,64.0],[124,-61,76,64.0],[124,-61,77,64.0],[124,-61,78,64.0],[124,-61,79,64.0],[124,-60,64,64.0],[124,-60,65,64.0],[124,-60,66,64.0],[124,-60,67,64.0],[124,-60,68,64.0],[124,-60,69,64.0],[124,-60,70,64.0],[124,-60,71,64.0],[124,-60,72,64.0],[124,-60,73,64.0],[124,-60,74,64.0],[124,-60,75,64.0],[124,-60,76,64.0],[124,-60,77,64.0],[124,-60,78,64.0],[124,-60,79,64.0],[124,-59,64,64.0],[124,-59,65,64.0],[124,-59,66,64.0],[124,-59,67,64.0],[124,-59,68,64.0],[124,-59,69,64.0],[124,-59,70,64.0],[124,-59,71,64.0],[124,-59,72,64.0],[124,-59,73,64.0],[124,-59,74,64.0],[124,-59,75,64.0],[124,-59,76,64.0],[124,-59,77,64.0],[124,-59,78,64.0],[124,-59,79,64.0],[124,-58,64,64.0],[124,-58,65,64.0],[124,-58,66,64.0],[124,-58,67,64.0],[124,-58,68,64.0],[124,-58,69,64.0],[124,-58,70,64.0],[124,-58,71,64.0],[124,-58,72,64.0],[124,-58,73,64.0],[124,-58,74,64.0],[124,-58,75,64.0],[124,-58,76,64.0],[124,-58,77,64.0],[124,-58,78,64.0],[124,-58,79,64.0],[124,-57,64,64.0],[124,-57,65,64.0],[124,-57,66,64.0],[124,-57,67,64.0],[124,-57,68,64.0],[124,-57,69,64.0],[124,-57,70,64.0],[124,-57,71,64.0],[124,-57,72,64.0],[124,-57,73,64.0],[124,-57,74,64.0],[124,-57,75,64.0],[124,-57,76,64.0],[124,-57,77,64.0],[124,-57,78,64.0],[124,-57,79,64.0],[124,-56,64,64.0],[124,-56,65,64.0],[124,-56,66,64.0],[124,-56,67,64.0],[124,-56,68,64.0],[124,-56,69,64.0],[124,-56,70,64.0],[124,-56,71,64.0],[124,-56,72,64.0],[124,-56,73,64.0],[124,-56,74,64.0],[124,-56,75,64.0],[124,-56,76,64.0],[124,-56,77,64.0],[124,-56,78,64.0],[124,-56,79,64.0],[124,-55,64,64.0],[124,-55,65,64.0],[124,-55,66,64.0],[124,-55,67,64.0],[124,-55,68,64.0],[124,-55,69,64.0],[124,-55,70,64.0],[124,-55,71,64.0],[124,-55,72,64.0],[124,-55,73,64.0],[124,-55,74,64.0],[124,-55,75,64.0],[124,-55,76,64.0],[124,-55,77,64.0],[124,-55,78,64.0],[124,-55,79,64.0],[124,-54,64,64.0],[124,-54,65,64.0],[124,-54,66,64.0],[124,-54,67,64.0],[124,-54,68,64.0],[124,-54,69,64.0],[124,-54,70,64.0],[124,-54,71,64.0],[124,-54,72,64.0],[124,-54,73,64.0],[124,-54,74,64.0],[124,-54,75,64.0],[124,-54,76,64.0],[124,-54,77,64.0],[124,-54,78,64.0],[124,-54,79,64.0],[124,-53,64,64.0],[124,-53,65,64.0],[124,-53,66,64.0],[124,-53,67,64.0],[124,-53,68,64.0],[124,-53,69,64.0],[124,-53,70,64.0],[124,-53,71,64.0],[124,-53,72,64.0],[124,-53,73,64.0],[124,-53,74,64.0],[124,-53,75,64.0],[124,-53,76,64.0],[124,-53,77,64.0],[124,-53,78,64.0],[124,-53,79,64.0],[124,-52,64,64.0],[124,-52,65,64.0],[124,-52,66,64.0],[124,-52,67,64.0],[124,-52,68,64.0],[124,-52,69,64.0],[124,-52,70,64.0],[124,-52,71,64.0],[124,-52,72,64.0],[124,-52,73,64.0],[124,-52,74,64.0],[124,-52,75,64.0],[124,-52,76,64.0],[124,-52,77,64.0],[124,-52,78,64.0],[124,-52,79,64.0],[124,-51,64,64.0],[124,-51,65,64.0],[124,-51,66,64.0],[124,-51,67,64.0],[124,-51,68,64.0],[124,-51,69,64.0],[124,-51,70,64.0],[124,-51,71,64.0],[124,-51,72,64.0],[124,-51,73,64.0],[124,-51,74,64.0],[124,-51,75,64.0],[124,-51,76,64.0],[124,-51,77,64.0],[124,-51,78,64.0],[124,-51,79,64.0],[124,-50,64,64.0],[124,-50,65,64.0],[124,-50,66,64.0],[124,-50,67,64.0],[124,-50,68,64.0],[124,-50,69,64.0],[124,-50,70,64.0],[124,-50,71,64.0],[124,-50,72,64.0],[124,-50,73,64.0],[124,-50,74,64.0],[124,-50,75,64.0],[124,-50,76,64.0],[124,-50,77,64.0],[124,-50,78,64.0],[124,-50,79,64.0],[124,-49,64,64.0],[124,-49,65,64.0],[124,-49,66,64.0],[124,-49,67,64.0],[124,-49,68,64.0],[124,-49,69,64.0],[124,-49,70,64.0],[124,-49,71,64.0],[124,-49,72,64.0],[124,-49,73,64.0],[124,-49,74,64.0],[124,-49,75,64.0],[124,-49,76,64.0],[124,-49,77,64.0],[124,-49,78,64.0],[124,-49,79,64.0],[124,-48,64,64.0],[124,-48,65,64.0],[124,-48,66,64.0],[124,-48,67,64.0],[124,-48,68,64.0],[124,-48,69,64.0],[124,-48,70,64.0],[124,-48,71,64.0],[124,-48,72,64.0],[124,-48,73,64.0],[124,-48,74,64.0],[124,-48,75,64.0],[124,-48,76,64.0],[124,-48,77,64.0],[124,-48,78,64.0],[124,-48,79,64.0],[124,-47,64,64.0],[124,-47,65,64.0],[124,-47,66,64.0],[124,-47,67,64.0],[124,-47,68,64.0],[124,-47,69,64.0],[124,-47,70,64.0],[124,-47,71,64.0],[124,-47,72,64.0],[124,-47,73,64.0],[124,-47,74,64.0],[124,-47,75,64.0],[124,-47,76,64.0],[124,-47,77,64.0],[124,-47,78,64.0],[124,-47,79,64.0],[124,-46,64,64.0],[124,-46,65,64.0],[124,-46,66,64.0],[124,-46,67,64.0],[124,-46,68,64.0],[124,-46,69,64.0],[124,-46,70,64.0],[124,-46,71,64.0],[124,-46,72,64.0],[124,-46,73,64.0],[124,-46,74,64.0],[124,-46,75,64.0],[124,-46,76,64.0],[124,-46,77,64.0],[124,-46,78,64.0],[124,-46,79,64.0],[124,-45,64,64.0],[124,-45,65,64.0],[124,-45,66,64.0],[124,-45,67,64.0],[124,-45,68,64.0],[124,-45,69,64.0],[124,-45,70,64.0],[124,-45,71,64.0],[124,-45,72,64.0],[124,-45,73,64.0],[124,-45,74,64.0],[124,-45,75,64.0],[124,-45,76,64.0],[124,-45,77,64.0],[124,-45,78,64.0],[124,-45,79,64.0],[124,-44,64,64.0],[124,-44,65,64.0],[124,-44,66,64.0],[124,-44,67,64.0],[124,-44,68,64.0],[124,-44,69,64.0],[124,-44,70,64.0],[124,-44,71,64.0],[124,-44,72,64.0],[124,-44,73,64.0],[124,-44,74,64.0],[124,-44,75,64.0],[124,-44,76,64.0],[124,-44,77,64.0],[124,-44,78,64.0],[124,-44,79,64.0],[124,-43,64,64.0],[124,-43,65,64.0],[124,-43,66,64.0],[124,-43,67,64.0],[124,-43,68,64.0],[124,-43,69,64.0],[124,-43,70,64.0],[124,-43,71,64.0],[124,-43,72,64.0],[124,-43,73,64.0],[124,-43,74,64.0],[124,-43,75,64.0],[124,-43,76,64.0],[124,-43,77,64.0],[124,-43,78,64.0],[124,-43,79,64.0],[124,-42,64,64.0],[124,-42,65,64.0],[124,-42,66,64.0],[124,-42,67,64.0],[124,-42,68,64.0],[124,-42,69,64.0],[124,-42,70,64.0],[124,-42,71,64.0],[124,-42,72,64.0],[124,-42,73,64.0],[124,-42,74,64.0],[124,-42,75,64.0],[124,-42,76,64.0],[124,-42,77,64.0],[124,-42,78,64.0],[124,-42,79,64.0],[124,-41,64,64.0],[124,-41,65,64.0],[124,-41,66,64.0],[124,-41,67,64.0],[124,-41,68,64.0],[124,-41,69,64.0],[124,-41,70,64.0],[124,-41,71,64.0],[124,-41,72,64.0],[124,-41,73,64.0],[124,-41,74,64.0],[124,-41,75,64.0],[124,-41,76,64.0],[124,-41,77,64.0],[124,-41,78,64.0],[124,-41,79,64.0],[124,-40,64,64.0],[124,-40,65,64.0],[124,-40,66,64.0],[124,-40,67,64.0],[124,-40,68,64.0],[124,-40,69,64.0],[124,-40,70,64.0],[124,-40,71,64.0],[124,-40,72,64.0],[124,-40,73,64.0],[124,-40,74,64.0],[124,-40,75,64.0],[124,-40,76,64.0],[124,-40,77,64.0],[124,-40,78,64.0],[124,-40,79,64.0],[124,-39,64,64.0],[124,-39,65,64.0],[124,-39,66,64.0],[124,-39,67,64.0],[124,-39,68,64.0],[124,-39,69,64.0],[124,-39,70,64.0],[124,-39,71,64.0],[124,-39,72,64.0],[124,-39,73,64.0],[124,-39,74,64.0],[124,-39,75,64.0],[124,-39,76,64.0],[124,-39,77,64.0],[124,-39,78,64.0],[124,-39,79,64.0],[124,-38,64,64.0],[124,-38,65,64.0],[124,-38,66,64.0],[124,-38,67,64.0],[124,-38,68,64.0],[124,-38,69,64.0],[124,-38,70,64.0],[124,-38,71,64.0],[124,-38,72,64.0],[124,-38,73,64.0],[124,-38,74,64.0],[124,-38,75,64.0],[124,-38,76,64.0],[124,-38,77,64.0],[124,-38,78,64.0],[124,-38,79,64.0],[124,-37,64,64.0],[124,-37,65,64.0],[124,-37,66,64.0],[124,-37,67,64.0],[124,-37,68,64.0],[124,-37,69,64.0],[124,-37,70,64.0],[124,-37,71,64.0],[124,-37,72,64.0],[124,-37,73,64.0],[124,-37,74,64.0],[124,-37,75,64.0],[124,-37,76,64.0],[124,-37,77,64.0],[124,-37,78,64.0],[124,-37,79,64.0],[124,-36,64,64.0],[124,-36,65,64.0],[124,-36,66,64.0],[124,-36,67,64.0],[124,-36,68,64.0],[124,-36,69,64.0],[124,-36,70,64.0],[124,-36,71,64.0],[124,-36,72,64.0],[124,-36,73,64.0],[124,-36,74,64.0],[124,-36,75,64.0],[124,-36,76,64.0],[124,-36,77,64.0],[124,-36,78,64.0],[124,-36,79,64.0],[124,-35,64,64.0],[124,-35,65,64.0],[124,-35,66,64.0],[124,-35,67,64.0],[124,-35,68,64.0],[124,-35,69,64.0],[124,-35,70,64.0],[124,-35,71,64.0],[124,-35,72,64.0],[124,-35,73,64.0],[124,-35,74,64.0],[124,-35,75,64.0],[124,-35,76,64.0],[124,-35,77,64.0],[124,-35,78,64.0],[124,-35,79,64.0],[124,-34,64,64.0],[124,-34,65,64.0],[124,-34,66,64.0],[124,-34,67,64.0],[124,-34,68,64.0],[124,-34,69,64.0],[124,-34,70,64.0],[124,-34,71,64.0],[124,-34,72,64.0],[124,-34,73,64.0],[124,-34,74,64.0],[124,-34,75,64.0],[124,-34,76,64.0],[124,-34,77,64.0],[124,-34,78,64.0],[124,-34,79,64.0],[124,-33,64,64.0],[124,-33,65,64.0],[124,-33,66,64.0],[124,-33,67,64.0],[124,-33,68,64.0],[124,-33,69,64.0],[124,-33,70,64.0],[124,-33,71,64.0],[124,-33,72,64.0],[124,-33,73,64.0],[124,-33,74,64.0],[124,-33,75,64.0],[124,-33,76,64.0],[124,-33,77,64.0],[124,-33,78,64.0],[124,-33,79,64.0],[124,-32,64,64.0],[124,-32,65,64.0],[124,-32,66,64.0],[124,-32,67,64.0],[124,-32,68,64.0],[124,-32,69,64.0],[124,-32,70,64.0],[124,-32,71,64.0],[124,-32,72,64.0],[124,-32,73,64.0],[124,-32,74,64.0],[124,-32,75,64.0],[124,-32,76,64.0],[124,-32,77,64.0],[124,-32,78,64.0],[124,-32,79,64.0],[124,-31,64,64.0],[124,-31,65,64.0],[124,-31,66,64.0],[124,-31,67,64.0],[124,-31,68,64.0],[124,-31,69,64.0],[124,-31,70,64.0],[124,-31,71,64.0],[124,-31,72,64.0],[124,-31,73,64.0],[124,-31,74,64.0],[124,-31,75,64.0],[124,-31,76,64.0],[124,-31,77,64.0],[124,-31,78,64.0],[124,-31,79,64.0],[124,-30,64,64.0],[124,-30,65,64.0],[124,-30,66,64.0],[124,-30,67,64.0],[124,-30,68,64.0],[124,-30,69,64.0],[124,-30,70,64.0],[124,-30,71,64.0],[124,-30,72,64.0],[124,-30,73,64.0],[124,-30,74,64.0],[124,-30,75,64.0],[124,-30,76,64.0],[124,-30,77,64.0],[124,-30,78,64.0],[124,-30,79,64.0],[124,-29,64,64.0],[124,-29,65,64.0],[124,-29,66,64.0],[124,-29,67,64.0],[124,-29,68,64.0],[124,-29,69,64.0],[124,-29,70,64.0],[124,-29,71,64.0],[124,-29,72,64.0],[124,-29,73,64.0],[124,-29,74,64.0],[124,-29,75,64.0],[124,-29,76,64.0],[124,-29,77,64.0],[124,-29,78,64.0],[124,-29,79,64.0],[124,-28,64,64.0],[124,-28,65,64.0],[124,-28,66,64.0],[124,-28,67,64.0],[124,-28,68,64.0],[124,-28,69,64.0],[124,-28,70,64.0],[124,-28,71,64.0],[124,-28,72,64.0],[124,-28,73,64.0],[124,-28,74,64.0],[124,-28,75,64.0],[124,-28,76,64.0],[124,-28,77,64.0],[124,-28,78,64.0],[124,-28,79,64.0],[124,-27,64,64.0],[124,-27,65,64.0],[124,-27,66,64.0],[124,-27,67,64.0],[124,-27,68,64.0],[124,-27,69,64.0],[124,-27,70,64.0],[124,-27,71,64.0],[124,-27,72,64.0],[124,-27,73,64.0],[124,-27,74,64.0],[124,-27,75,64.0],[124,-27,76,64.0],[124,-27,77,64.0],[124,-27,78,64.0],[124,-27,79,64.0],[124,-26,64,64.0],[124,-26,65,64.0],[124,-26,66,64.0],[124,-26,67,64.0],[124,-26,68,64.0],[124,-26,69,64.0],[124,-26,70,64.0],[124,-26,71,64.0],[124,-26,72,64.0],[124,-26,73,64.0],[124,-26,74,64.0],[124,-26,75,64.0],[124,-26,76,64.0],[124,-26,77,64.0],[124,-26,78,64.0],[124,-26,79,64.0],[124,-25,64,64.0],[124,-25,65,64.0],[124,-25,66,64.0],[124,-25,67,64.0],[124,-25,68,64.0],[124,-25,69,64.0],[124,-25,70,64.0],[124,-25,71,64.0],[124,-25,72,64.0],[124,-25,73,64.0],[124,-25,74,64.0],[124,-25,75,64.0],[124,-25,76,64.0],[124,-25,77,64.0],[124,-25,78,64.0],[124,-25,79,64.0],[124,-24,64,64.0],[124,-24,65,64.0],[124,-24,66,64.0],[124,-24,67,64.0],[124,-24,68,64.0],[124,-24,69,64.0],[124,-24,70,64.0],[124,-24,71,64.0],[124,-24,72,64.0],[124,-24,73,64.0],[124,-24,74,64.0],[124,-24,75,64.0],[124,-24,76,64.0],[124,-24,77,64.0],[124,-24,78,64.0],[124,-24,79,64.0],[124,-23,64,64.0],[124,-23,65,64.0],[124,-23,66,64.0],[124,-23,67,64.0],[124,-23,68,64.0],[124,-23,69,64.0],[124,-23,70,64.0],[124,-23,71,64.0],[124,-23,72,64.0],[124,-23,73,64.0],[124,-23,74,64.0],[124,-23,75,64.0],[124,-23,76,64.0],[124,-23,77,64.0],[124,-23,78,64.0],[124,-23,79,64.0],[124,-22,64,64.0],[124,-22,65,64.0],[124,-22,66,64.0],[124,-22,67,64.0],[124,-22,68,64.0],[124,-22,69,64.0],[124,-22,70,64.0],[124,-22,71,64.0],[124,-22,72,64.0],[124,-22,73,64.0],[124,-22,74,64.0],[124,-22,75,64.0],[124,-22,76,64.0],[124,-22,77,64.0],[124,-22,78,64.0],[124,-22,79,64.0],[124,-21,64,64.0],[124,-21,65,64.0],[124,-21,66,64.0],[124,-21,67,64.0],[124,-21,68,64.0],[124,-21,69,64.0],[124,-21,70,64.0],[124,-21,71,64.0],[124,-21,72,64.0],[124,-21,73,64.0],[124,-21,74,64.0],[124,-21,75,64.0],[124,-21,76,64.0],[124,-21,77,64.0],[124,-21,78,64.0],[124,-21,79,64.0],[124,-20,64,64.0],[124,-20,65,64.0],[124,-20,66,64.0],[124,-20,67,64.0],[124,-20,68,64.0],[124,-20,69,64.0],[124,-20,70,64.0],[124,-20,71,64.0],[124,-20,72,64.0],[124,-20,73,64.0],[124,-20,74,64.0],[124,-20,75,64.0],[124,-20,76,64.0],[124,-20,77,64.0],[124,-20,78,64.0],[124,-20,79,64.0],[124,-19,64,64.0],[124,-19,65,64.0],[124,-19,66,64.0],[124,-19,67,64.0],[124,-19,68,64.0],[124,-19,69,64.0],[124,-19,70,64.0],[124,-19,71,64.0],[124,-19,72,64.0],[124,-19,73,64.0],[124,-19,74,64.0],[124,-19,75,64.0],[124,-19,76,64.0],[124,-19,77,64.0],[124,-19,78,64.0],[124,-19,79,64.0],[124,-18,64,64.0],[124,-18,65,64.0],[124,-18,66,64.0],[124,-18,67,64.0],[124,-18,68,64.0],[124,-18,69,64.0],[124,-18,70,64.0],[124,-18,71,64.0],[124,-18,72,64.0],[124,-18,73,64.0],[124,-18,74,64.0],[124,-18,75,64.0],[124,-18,76,64.0],[124,-18,77,64.0],[124,-18,78,64.0],[124,-18,79,64.0],[124,-17,64,64.0],[124,-17,65,64.0],[124,-17,66,64.0],[124,-17,67,64.0],[124,-17,68,64.0],[124,-17,69,64.0],[124,-17,70,64.0],[124,-17,71,64.0],[124,-17,72,64.0],[124,-17,73,64.0],[124,-17,74,64.0],[124,-17,75,64.0],[124,-17,76,64.0],[124,-17,77,64.0],[124,-17,78,64.0],[124,-17,79,64.0],[124,-16,64,64.0],[124,-16,65,64.0],[124,-16,66,64.0],[124,-16,67,64.0],[124,-16,68,64.0],[124,-16,69,64.0],[124,-16,70,64.0],[124,-16,71,64.0],[124,-16,72,64.0],[124,-16,73,64.0],[124,-16,74,64.0],[124,-16,75,64.0],[124,-16,76,64.0],[124,-16,77,64.0],[124,-16,78,64.0],[124,-16,79,64.0],[124,-15,64,64.0],[124,-15,65,64.0],[124,-15,66,64.0],[124,-15,67,64.0],[124,-15,68,64.0],[124,-15,69,64.0],[124,-15,70,64.0],[124,-15,71,64.0],[124,-15,72,64.0],[124,-15,73,64.0],[124,-15,74,64.0],[124,-15,75,64.0],[124,-15,76,64.0],[124,-15,77,64.0],[124,-15,78,64.0],[124,-15,79,64.0],[124,-14,64,64.0],[124,-14,65,64.0],[124,-14,66,64.0],[124,-14,67,64.0],[124,-14,68,64.0],[124,-14,69,64.0],[124,-14,70,64.0],[124,-14,71,64.0],[124,-14,72,64.0],[124,-14,73,64.0],[124,-14,74,64.0],[124,-14,75,64.0],[124,-14,76,64.0],[124,-14,77,64.0],[124,-14,78,64.0],[124,-14,79,64.0],[124,-13,64,64.0],[124,-13,65,64.0],[124,-13,66,64.0],[124,-13,67,64.0],[124,-13,68,64.0],[124,-13,69,64.0],[124,-13,70,64.0],[124,-13,71,64.0],[124,-13,72,64.0],[124,-13,73,64.0],[124,-13,74,64.0],[124,-13,75,64.0],[124,-13,76,64.0],[124,-13,77,64.0],[124,-13,78,64.0],[124,-13,79,64.0],[124,-12,64,64.0],[124,-12,65,64.0],[124,-12,66,64.0],[124,-12,67,64.0],[124,-12,68,64.0],[124,-12,69,64.0],[124,-12,70,64.0],[124,-12,71,64.0],[124,-12,72,64.0],[124,-12,73,64.0],[124,-12,74,64.0],[124,-12,75,64.0],[124,-12,76,64.0],[124,-12,77,64.0],[124,-12,78,64.0],[124,-12,79,64.0],[124,-11,64,64.0],[124,-11,65,64.0],[124,-11,66,64.0],[124,-11,67,64.0],[124,-11,68,64.0],[124,-11,69,64.0],[124,-11,70,64.0],[124,-11,71,64.0],[124,-11,72,64.0],[124,-11,73,64.0],[124,-11,74,64.0],[124,-11,75,64.0],[124,-11,76,64.0],[124,-11,77,64.0],[124,-11,78,64.0],[124,-11,79,64.0],[124,-10,64,64.0],[124,-10,65,64.0],[124,-10,66,64.0],[124,-10,67,64.0],[124,-10,68,64.0],[124,-10,69,64.0],[124,-10,70,64.0],[124,-10,71,64.0],[124,-10,72,64.0],[124,-10,73,64.0],[124,-10,74,64.0],[124,-10,75,64.0],[124,-10,76,64.0],[124,-10,77,64.0],[124,-10,78,64.0],[124,-10,79,64.0],[124,-9,64,64.0],[124,-9,65,64.0],[124,-9,66,64.0],[124,-9,67,64.0],[124,-9,68,64.0],[124,-9,69,64.0],[124,-9,70,64.0],[124,-9,71,64.0],[124,-9,72,64.0],[124,-9,73,64.0],[124,-9,74,64.0],[124,-9,75,64.0],[124,-9,76,64.0],[124,-9,77,64.0],[124,-9,78,64.0],[124,-9,79,64.0],[124,-8,64,64.0],[124,-8,65,64.0],[124,-8,66,64.0],[124,-8,67,64.0],[124,-8,68,64.0],[124,-8,69,64.0],[124,-8,70,64.0],[124,-8,71,64.0],[124,-8,72,64.0],[124,-8,73,64.0],[124,-8,74,64.0],[124,-8,75,64.0],[124,-8,76,64.0],[124,-8,77,64.0],[124,-8,78,64.0],[124,-8,79,64.0],[124,-7,64,64.0],[124,-7,65,64.0],[124,-7,66,64.0],[124,-7,67,64.0],[124,-7,68,64.0],[124,-7,69,64.0],[124,-7,70,64.0],[124,-7,71,64.0],[124,-7,72,64.0],[124,-7,73,64.0],[124,-7,74,64.0],[124,-7,75,64.0],[124,-7,76,64.0],[124,-7,77,64.0],[124,-7,78,64.0],[124,-7,79,64.0],[124,-6,64,64.0],[124,-6,65,64.0],[124,-6,66,64.0],[124,-6,67,64.0],[124,-6,68,64.0],[124,-6,69,64.0],[124,-6,70,64.0],[124,-6,71,64.0],[124,-6,72,64.0],[124,-6,73,64.0],[124,-6,74,64.0],[124,-6,75,64.0],[124,-6,76,64.0],[124,-6,77,64.0],[124,-6,78,64.0],[124,-6,79,64.0],[124,-5,64,64.0],[124,-5,65,64.0],[124,-5,66,64.0],[124,-5,67,64.0],[124,-5,68,64.0],[124,-5,69,64.0],[124,-5,70,64.0],[124,-5,71,64.0],[124,-5,72,64.0],[124,-5,73,64.0],[124,-5,74,64.0],[124,-5,75,64.0],[124,-5,76,64.0],[124,-5,77,64.0],[124,-5,78,64.0],[124,-5,79,64.0],[124,-4,64,64.0],[124,-4,65,64.0],[124,-4,66,64.0],[124,-4,67,64.0],[124,-4,68,64.0],[124,-4,69,64.0],[124,-4,70,64.0],[124,-4,71,64.0],[124,-4,72,64.0],[124,-4,73,64.0],[124,-4,74,64.0],[124,-4,75,64.0],[124,-4,76,64.0],[124,-4,77,64.0],[124,-4,78,64.0],[124,-4,79,64.0],[124,-3,64,64.0],[124,-3,65,64.0],[124,-3,66,64.0],[124,-3,67,64.0],[124,-3,68,64.0],[124,-3,69,64.0],[124,-3,70,64.0],[124,-3,71,64.0],[124,-3,72,64.0],[124,-3,73,64.0],[124,-3,74,64.0],[124,-3,75,64.0],[124,-3,76,64.0],[124,-3,77,64.0],[124,-3,78,64.0],[124,-3,79,64.0],[124,-2,64,64.0],[124,-2,65,64.0],[124,-2,66,64.0],[124,-2,67,64.0],[124,-2,68,64.0],[124,-2,69,64.0],[124,-2,70,64.0],[124,-2,71,64.0],[124,-2,72,64.0],[124,-2,73,64.0],[124,-2,74,64.0],[124,-2,75,64.0],[124,-2,76,64.0],[124,-2,77,64.0],[124,-2,78,64.0],[124,-2,79,64.0],[124,-1,64,64.0],[124,-1,65,64.0],[124,-1,66,64.0],[124,-1,67,64.0],[124,-1,68,64.0],[124,-1,69,64.0],[124,-1,70,64.0],[124,-1,71,64.0],[124,-1,72,64.0],[124,-1,73,64.0],[124,-1,74,64.0],[124,-1,75,64.0],[124,-1,76,64.0],[124,-1,77,64.0],[124,-1,78,64.0],[124,-1,79,64.0],[124,0,64,64.0],[124,0,65,64.0],[124,0,66,64.0],[124,0,67,64.0],[124,0,68,64.0],[124,0,69,64.0],[124,0,70,64.0],[124,0,71,64.0],[124,0,72,64.0],[124,0,73,64.0],[124,0,74,64.0],[124,0,75,64.0],[124,0,76,64.0],[124,0,77,64.0],[124,0,78,64.0],[124,0,79,64.0],[124,1,64,64.0],[124,1,65,64.0],[124,1,66,64.0],[124,1,67,64.0],[124,1,68,64.0],[124,1,69,64.0],[124,1,70,64.0],[124,1,71,64.0],[124,1,72,64.0],[124,1,73,64.0],[124,1,74,64.0],[124,1,75,64.0],[124,1,76,64.0],[124,1,77,64.0],[124,1,78,64.0],[124,1,79,64.0],[124,2,64,64.0],[124,2,65,64.0],[124,2,66,64.0],[124,2,67,64.0],[124,2,68,64.0],[124,2,69,64.0],[124,2,70,64.0],[124,2,71,64.0],[124,2,72,64.0],[124,2,73,64.0],[124,2,74,64.0],[124,2,75,64.0],[124,2,76,64.0],[124,2,77,64.0],[124,2,78,64.0],[124,2,79,64.0],[124,3,64,64.0],[124,3,65,64.0],[124,3,66,64.0],[124,3,67,64.0],[124,3,68,64.0],[124,3,69,64.0],[124,3,70,64.0],[124,3,71,64.0],[124,3,72,64.0],[124,3,73,64.0],[124,3,74,64.0],[124,3,75,64.0],[124,3,76,64.0],[124,3,77,64.0],[124,3,78,64.0],[124,3,79,64.0],[124,4,64,64.0],[124,4,65,64.0],[124,4,66,64.0],[124,4,67,64.0],[124,4,68,64.0],[124,4,69,64.0],[124,4,70,64.0],[124,4,71,64.0],[124,4,72,64.0],[124,4,73,64.0],[124,4,74,64.0],[124,4,75,64.0],[124,4,76,64.0],[124,4,77,64.0],[124,4,78,64.0],[124,4,79,64.0],[124,5,64,64.0],[124,5,65,64.0],[124,5,66,64.0],[124,5,67,64.0],[124,5,68,64.0],[124,5,69,64.0],[124,5,70,64.0],[124,5,71,64.0],[124,5,72,64.0],[124,5,73,64.0],[124,5,74,64.0],[124,5,75,64.0],[124,5,76,64.0],[124,5,77,64.0],[124,5,78,64.0],[124,5,79,64.0],[124,6,64,64.0],[124,6,65,64.0],[124,6,66,64.0],[124,6,67,64.0],[124,6,68,64.0],[124,6,69,64.0],[124,6,70,64.0],[124,6,71,64.0],[124,6,72,64.0],[124,6,73,64.0],[124,6,74,64.0],[124,6,75,64.0],[124,6,76,64.0],[124,6,77,64.0],[124,6,78,64.0],[124,6,79,64.0],[124,7,64,64.0],[124,7,65,64.0],[124,7,66,64.0],[124,7,67,64.0],[124,7,68,64.0],[124,7,69,64.0],[124,7,70,64.0],[124,7,71,64.0],[124,7,72,64.0],[124,7,73,64.0],[124,7,74,64.0],[124,7,75,64.0],[124,7,76,64.0],[124,7,77,64.0],[124,7,78,64.0],[124,7,79,64.0],[124,8,64,64.0],[124,8,65,64.0],[124,8,66,64.0],[124,8,67,64.0],[124,8,68,64.0],[124,8,69,64.0],[124,8,70,64.0],[124,8,71,64.0],[124,8,72,64.0],[124,8,73,64.0],[124,8,74,64.0],[124,8,75,64.0],[124,8,76,64.0],[124,8,77,64.0],[124,8,78,64.0],[124,8,79,64.0],[124,9,64,64.0],[124,9,65,64.0],[124,9,66,64.0],[124,9,67,64.0],[124,9,68,64.0],[124,9,69,64.0],[124,9,70,64.0],[124,9,71,64.0],[124,9,72,64.0],[124,9,73,64.0],[124,9,74,64.0],[124,9,75,64.0],[124,9,76,64.0],[124,9,77,64.0],[124,9,78,64.0],[124,9,79,64.0],[124,10,64,64.0],[124,10,65,64.0],[124,10,66,64.0],[124,10,67,64.0],[124,10,68,64.0],[124,10,69,64.0],[124,10,70,64.0],[124,10,71,64.0],[124,10,72,64.0],[124,10,73,64.0],[124,10,74,64.0],[124,10,75,64.0],[124,10,76,64.0],[124,10,77,64.0],[124,10,78,64.0],[124,10,79,64.0],[124,11,64,64.0],[124,11,65,64.0],[124,11,66,64.0],[124,11,67,64.0],[124,11,68,64.0],[124,11,69,64.0],[124,11,70,64.0],[124,11,71,64.0],[124,11,72,64.0],[124,11,73,64.0],[124,11,74,64.0],[124,11,75,64.0],[124,11,76,64.0],[124,11,77,64.0],[124,11,78,64.0],[124,11,79,64.0],[124,12,64,64.0],[124,12,65,64.0],[124,12,66,64.0],[124,12,67,64.0],[124,12,68,64.0],[124,12,69,64.0],[124,12,70,64.0],[124,12,71,64.0],[124,12,72,64.0],[124,12,73,64.0],[124,12,74,64.0],[124,12,75,64.0],[124,12,76,64.0],[124,12,77,64.0],[124,12,78,64.0],[124,12,79,64.0],[124,13,64,64.0],[124,13,65,64.0],[124,13,66,64.0],[124,13,67,64.0],[124,13,68,64.0],[124,13,69,64.0],[124,13,70,64.0],[124,13,71,64.0],[124,13,72,64.0],[124,13,73,64.0],[124,13,74,64.0],[124,13,75,64.0],[124,13,76,64.0],[124,13,77,64.0],[124,13,78,64.0],[124,13,79,64.0],[124,14,64,64.0],[124,14,65,64.0],[124,14,66,64.0],[124,14,67,64.0],[124,14,68,64.0],[124,14,69,64.0],[124,14,70,64.0],[124,14,71,64.0],[124,14,72,64.0],[124,14,73,64.0],[124,14,74,64.0],[124,14,75,64.0],[124,14,76,64.0],[124,14,77,64.0],[124,14,78,64.0],[124,14,79,64.0],[124,15,64,64.0],[124,15,65,64.0],[124,15,66,64.0],[124,15,67,64.0],[124,15,68,64.0],[124,15,69,64.0],[124,15,70,64.0],[124,15,71,64.0],[124,15,72,64.0],[124,15,73,64.0],[124,15,74,64.0],[124,15,75,64.0],[124,15,76,64.0],[124,15,77,64.0],[124,15,78,64.0],[124,15,79,64.0],[124,16,64,64.0],[124,16,65,64.0],[124,16,66,64.0],[124,16,67,64.0],[124,16,68,64.0],[124,16,69,64.0],[124,16,70,64.0],[124,16,71,64.0],[124,16,72,64.0],[124,16,73,64.0],[124,16,74,64.0],[124,16,75,64.0],[124,16,76,64.0],[124,16,77,64.0],[124,16,78,64.0],[124,16,79,64.0],[124,17,64,64.0],[124,17,65,64.0],[124,17,66,64.0],[124,17,67,64.0],[124,17,68,64.0],[124,17,69,64.0],[124,17,70,64.0],[124,17,71,64.0],[124,17,72,64.0],[124,17,73,64.0],[124,17,74,64.0],[124,17,75,64.0],[124,17,76,64.0],[124,17,77,64.0],[124,17,78,64.0],[124,17,79,64.0],[124,18,64,64.0],[124,18,65,64.0],[124,18,66,64.0],[124,18,67,64.0],[124,18,68,64.0],[124,18,69,64.0],[124,18,70,64.0],[124,18,71,64.0],[124,18,72,64.0],[124,18,73,64.0],[124,18,74,64.0],[124,18,75,64.0],[124,18,76,64.0],[124,18,77,64.0],[124,18,78,64.0],[124,18,79,64.0],[124,19,64,64.0],[124,19,65,64.0],[124,19,66,64.0],[124,19,67,64.0],[124,19,68,64.0],[124,19,69,64.0],[124,19,70,64.0],[124,19,71,64.0],[124,19,72,64.0],[124,19,73,64.0],[124,19,74,64.0],[124,19,75,64.0],[124,19,76,64.0],[124,19,77,64.0],[124,19,78,64.0],[124,19,79,64.0],[124,20,64,64.0],[124,20,65,64.0],[124,20,66,64.0],[124,20,67,64.0],[124,20,68,64.0],[124,20,69,64.0],[124,20,70,64.0],[124,20,71,64.0],[124,20,72,64.0],[124,20,73,64.0],[124,20,74,64.0],[124,20,75,64.0],[124,20,76,64.0],[124,20,77,64.0],[124,20,78,64.0],[124,20,79,64.0],[124,21,64,64.0],[124,21,65,64.0],[124,21,66,64.0],[124,21,67,64.0],[124,21,68,64.0],[124,21,69,64.0],[124,21,70,64.0],[124,21,71,64.0],[124,21,72,64.0],[124,21,73,64.0],[124,21,74,64.0],[124,21,75,64.0],[124,21,76,64.0],[124,21,77,64.0],[124,21,78,64.0],[124,21,79,64.0],[124,22,64,64.0],[124,22,65,64.0],[124,22,66,64.0],[124,22,67,64.0],[124,22,68,64.0],[124,22,69,64.0],[124,22,70,64.0],[124,22,71,64.0],[124,22,72,64.0],[124,22,73,64.0],[124,22,74,64.0],[124,22,75,64.0],[124,22,76,64.0],[124,22,77,64.0],[124,22,78,64.0],[124,22,79,64.0],[124,23,64,64.0],[124,23,65,64.0],[124,23,66,64.0],[124,23,67,64.0],[124,23,68,64.0],[124,23,69,64.0],[124,23,70,64.0],[124,23,71,64.0],[124,23,72,64.0],[124,23,73,64.0],[124,23,74,64.0],[124,23,75,64.0],[124,23,76,64.0],[124,23,77,64.0],[124,23,78,64.0],[124,23,79,64.0],[124,24,64,64.0],[124,24,65,64.0],[124,24,66,64.0],[124,24,67,64.0],[124,24,68,64.0],[124,24,69,64.0],[124,24,70,64.0],[124,24,71,64.0],[124,24,72,64.0],[124,24,73,64.0],[124,24,74,64.0],[124,24,75,64.0],[124,24,76,64.0],[124,24,77,64.0],[124,24,78,64.0],[124,24,79,64.0],[124,25,64,64.0],[124,25,65,64.0],[124,25,66,64.0],[124,25,67,64.0],[124,25,68,64.0],[124,25,69,64.0],[124,25,70,64.0],[124,25,71,64.0],[124,25,72,64.0],[124,25,73,64.0],[124,25,74,64.0],[124,25,75,64.0],[124,25,76,64.0],[124,25,77,64.0],[124,25,78,64.0],[124,25,79,64.0],[124,26,64,64.0],[124,26,65,64.0],[124,26,66,64.0],[124,26,67,64.0],[124,26,68,64.0],[124,26,69,64.0],[124,26,70,64.0],[124,26,71,64.0],[124,26,72,64.0],[124,26,73,64.0],[124,26,74,64.0],[124,26,75,64.0],[124,26,76,64.0],[124,26,77,64.0],[124,26,78,64.0],[124,26,79,64.0],[124,27,64,64.0],[124,27,65,64.0],[124,27,66,64.0],[124,27,67,64.0],[124,27,68,64.0],[124,27,69,64.0],[124,27,70,64.0],[124,27,71,64.0],[124,27,72,64.0],[124,27,73,64.0],[124,27,74,64.0],[124,27,75,64.0],[124,27,76,64.0],[124,27,77,64.0],[124,27,78,64.0],[124,27,79,64.0],[124,28,64,64.0],[124,28,65,64.0],[124,28,66,64.0],[124,28,67,64.0],[124,28,68,64.0],[124,28,69,64.0],[124,28,70,64.0],[124,28,71,64.0],[124,28,72,64.0],[124,28,73,64.0],[124,28,74,64.0],[124,28,75,64.0],[124,28,76,64.0],[124,28,77,64.0],[124,28,78,64.0],[124,28,79,64.0],[124,29,64,64.0],[124,29,65,64.0],[124,29,66,64.0],[124,29,67,64.0],[124,29,68,64.0],[124,29,69,64.0],[124,29,70,64.0],[124,29,71,64.0],[124,29,72,64.0],[124,29,73,64.0],[124,29,74,64.0],[124,29,75,64.0],[124,29,76,64.0],[124,29,77,64.0],[124,29,78,64.0],[124,29,79,64.0],[124,30,64,64.0],[124,30,65,64.0],[124,30,66,64.0],[124,30,67,64.0],[124,30,68,64.0],[124,30,69,64.0],[124,30,70,64.0],[124,30,71,64.0],[124,30,72,64.0],[124,30,73,64.0],[124,30,74,64.0],[124,30,75,64.0],[124,30,76,64.0],[124,30,77,64.0],[124,30,78,64.0],[124,30,79,64.0],[124,31,64,64.0],[124,31,65,64.0],[124,31,66,64.0],[124,31,67,64.0],[124,31,68,64.0],[124,31,69,64.0],[124,31,70,64.0],[124,31,71,64.0],[124,31,72,64.0],[124,31,73,64.0],[124,31,74,64.0],[124,31,75,64.0],[124,31,76,64.0],[124,31,77,64.0],[124,31,78,64.0],[124,31,79,64.0],[124,32,64,64.0],[124,32,65,64.0],[124,32,66,64.0],[124,32,67,64.0],[124,32,68,64.0],[124,32,69,64.0],[124,32,70,64.0],[124,32,71,64.0],[124,32,72,64.0],[124,32,73,64.0],[124,32,74,64.0],[124,32,75,64.0],[124,32,76,64.0],[124,32,77,64.0],[124,32,78,64.0],[124,32,79,64.0],[124,33,64,64.0],[124,33,65,64.0],[124,33,66,64.0],[124,33,67,64.0],[124,33,68,64.0],[124,33,69,64.0],[124,33,70,64.0],[124,33,71,64.0],[124,33,72,64.0],[124,33,73,64.0],[124,33,74,64.0],[124,33,75,64.0],[124,33,76,64.0],[124,33,77,64.0],[124,33,78,64.0],[124,33,79,64.0],[124,34,64,64.0],[124,34,65,64.0],[124,34,66,64.0],[124,34,67,64.0],[124,34,68,64.0],[124,34,69,64.0],[124,34,70,64.0],[124,34,71,64.0],[124,34,72,64.0],[124,34,73,64.0],[124,34,74,64.0],[124,34,75,64.0],[124,34,76,64.0],[124,34,77,64.0],[124,34,78,64.0],[124,34,79,64.0],[124,35,64,64.0],[124,35,65,64.0],[124,35,66,64.0],[124,35,67,64.0],[124,35,68,64.0],[124,35,69,64.0],[124,35,70,64.0],[124,35,71,64.0],[124,35,72,64.0],[124,35,73,64.0],[124,35,74,64.0],[124,35,75,64.0],[124,35,76,64.0],[124,35,77,64.0],[124,35,78,64.0],[124,35,79,64.0],[124,36,64,64.0],[124,36,65,64.0],[124,36,66,64.0],[124,36,67,64.0],[124,36,68,64.0],[124,36,69,64.0],[124,36,70,64.0],[124,36,71,64.0],[124,36,72,64.0],[124,36,73,64.0],[124,36,74,64.0],[124,36,75,64.0],[124,36,76,64.0],[124,36,77,64.0],[124,36,78,64.0],[124,36,79,64.0],[124,37,64,64.0],[124,37,65,64.0],[124,37,66,64.0],[124,37,67,64.0],[124,37,68,64.0],[124,37,69,64.0],[124,37,70,64.0],[124,37,71,64.0],[124,37,72,64.0],[124,37,73,64.0],[124,37,74,64.0],[124,37,75,64.0],[124,37,76,64.0],[124,37,77,64.0],[124,37,78,64.0],[124,37,79,64.0],[124,38,64,64.0],[124,38,65,64.0],[124,38,66,64.0],[124,38,67,64.0],[124,38,68,64.0],[124,38,69,64.0],[124,38,70,64.0],[124,38,71,64.0],[124,38,72,64.0],[124,38,73,64.0],[124,38,74,64.0],[124,38,75,64.0],[124,38,76,64.0],[124,38,77,64.0],[124,38,78,64.0],[124,38,79,64.0],[124,39,64,64.0],[124,39,65,64.0],[124,39,66,64.0],[124,39,67,64.0],[124,39,68,64.0],[124,39,69,64.0],[124,39,70,64.0],[124,39,71,64.0],[124,39,72,64.0],[124,39,73,64.0],[124,39,74,64.0],[124,39,75,64.0],[124,39,76,64.0],[124,39,77,64.0],[124,39,78,64.0],[124,39,79,64.0],[124,40,64,64.0],[124,40,65,64.0],[124,40,66,64.0],[124,40,67,64.0],[124,40,68,64.0],[124,40,69,64.0],[124,40,70,64.0],[124,40,71,64.0],[124,40,72,64.0],[124,40,73,64.0],[124,40,74,64.0],[124,40,75,64.0],[124,40,76,64.0],[124,40,77,64.0],[124,40,78,64.0],[124,40,79,64.0],[124,41,64,64.0],[124,41,65,64.0],[124,41,66,64.0],[124,41,67,64.0],[124,41,68,64.0],[124,41,69,64.0],[124,41,70,64.0],[124,41,71,64.0],[124,41,72,64.0],[124,41,73,64.0],[124,41,74,64.0],[124,41,75,64.0],[124,41,76,64.0],[124,41,77,64.0],[124,41,78,64.0],[124,41,79,64.0],[124,42,64,64.0],[124,42,65,64.0],[124,42,66,64.0],[124,42,67,64.0],[124,42,68,64.0],[124,42,69,64.0],[124,42,70,64.0],[124,42,71,64.0],[124,42,72,64.0],[124,42,73,64.0],[124,42,74,64.0],[124,42,75,64.0],[124,42,76,64.0],[124,42,77,64.0],[124,42,78,64.0],[124,42,79,64.0],[124,43,64,64.0],[124,43,65,64.0],[124,43,66,64.0],[124,43,67,64.0],[124,43,68,64.0],[124,43,69,64.0],[124,43,70,64.0],[124,43,71,64.0],[124,43,72,64.0],[124,43,73,64.0],[124,43,74,64.0],[124,43,75,64.0],[124,43,76,64.0],[124,43,77,64.0],[124,43,78,64.0],[124,43,79,64.0],[124,44,64,64.0],[124,44,65,64.0],[124,44,66,64.0],[124,44,67,64.0],[124,44,68,64.0],[124,44,69,64.0],[124,44,70,64.0],[124,44,71,64.0],[124,44,72,64.0],[124,44,73,64.0],[124,44,74,64.0],[124,44,75,64.0],[124,44,76,64.0],[124,44,77,64.0],[124,44,78,64.0],[124,44,79,64.0],[124,45,64,64.0],[124,45,65,64.0],[124,45,66,64.0],[124,45,67,64.0],[124,45,68,64.0],[124,45,69,64.0],[124,45,70,64.0],[124,45,71,64.0],[124,45,72,64.0],[124,45,73,64.0],[124,45,74,64.0],[124,45,75,64.0],[124,45,76,64.0],[124,45,77,64.0],[124,45,78,64.0],[124,45,79,64.0],[124,46,64,64.0],[124,46,65,64.0],[124,46,66,64.0],[124,46,67,64.0],[124,46,68,64.0],[124,46,69,64.0],[124,46,70,64.0],[124,46,71,64.0],[124,46,72,64.0],[124,46,73,64.0],[124,46,74,64.0],[124,46,75,64.0],[124,46,76,64.0],[124,46,77,64.0],[124,46,78,64.0],[124,46,79,64.0],[124,47,64,64.0],[124,47,65,64.0],[124,47,66,64.0],[124,47,67,64.0],[124,47,68,64.0],[124,47,69,64.0],[124,47,70,64.0],[124,47,71,64.0],[124,47,72,64.0],[124,47,73,64.0],[124,47,74,64.0],[124,47,75,64.0],[124,47,76,64.0],[124,47,77,64.0],[124,47,78,64.0],[124,47,79,64.0],[124,48,64,64.0],[124,48,65,64.0],[124,48,66,64.0],[124,48,67,64.0],[124,48,68,64.0],[124,48,69,64.0],[124,48,70,64.0],[124,48,71,64.0],[124,48,72,64.0],[124,48,73,64.0],[124,48,74,64.0],[124,48,75,64.0],[124,48,76,64.0],[124,48,77,64.0],[124,48,78,64.0],[124,48,79,64.0],[124,49,64,64.0],[124,49,65,64.0],[124,49,66,64.0],[124,49,67,64.0],[124,49,68,64.0],[124,49,69,64.0],[124,49,70,64.0],[124,49,71,64.0],[124,49,72,64.0],[124,49,73,64.0],[124,49,74,64.0],[124,49,75,64.0],[124,49,76,64.0],[124,49,77,64.0],[124,49,78,64.0],[124,49,79,64.0],[124,50,64,64.0],[124,50,65,64.0],[124,50,66,64.0],[124,50,67,64.0],[124,50,68,64.0],[124,50,69,64.0],[124,50,70,64.0],[124,50,71,64.0],[124,50,72,64.0],[124,50,73,64.0],[124,50,74,64.0],[124,50,75,64.0],[124,50,76,64.0],[124,50,77,64.0],[124,50,78,64.0],[124,50,79,64.0],[124,51,64,64.0],[124,51,65,64.0],[124,51,66,64.0],[124,51,67,64.0],[124,51,68,64.0],[124,51,69,64.0],[124,51,70,64.0],[124,51,71,64.0],[124,51,72,64.0],[124,51,73,64.0],[124,51,74,64.0],[124,51,75,64.0],[124,51,76,64.0],[124,51,77,64.0],[124,51,78,64.0],[124,51,79,64.0],[124,52,64,64.0],[124,52,65,64.0],[124,52,66,64.0],[124,52,67,64.0],[124,52,68,64.0],[124,52,69,64.0],[124,52,70,64.0],[124,52,71,64.0],[124,52,72,64.0],[124,52,73,64.0],[124,52,74,64.0],[124,52,75,64.0],[124,52,76,64.0],[124,52,77,64.0],[124,52,78,64.0],[124,52,79,64.0],[124,53,64,64.0],[124,53,65,64.0],[124,53,66,64.0],[124,53,67,64.0],[124,53,68,64.0],[124,53,69,64.0],[124,53,70,64.0],[124,53,71,64.0],[124,53,72,64.0],[124,53,73,64.0],[124,53,74,64.0],[124,53,75,64.0],[124,53,76,64.0],[124,53,77,64.0],[124,53,78,64.0],[124,53,79,64.0],[124,54,64,64.0],[124,54,65,64.0],[124,54,66,64.0],[124,54,67,64.0],[124,54,68,64.0],[124,54,69,64.0],[124,54,70,64.0],[124,54,71,64.0],[124,54,72,64.0],[124,54,73,64.0],[124,54,74,64.0],[124,54,75,64.0],[124,54,76,64.0],[124,54,77,64.0],[124,54,78,64.0],[124,54,79,64.0],[124,55,64,64.0],[124,55,65,64.0],[124,55,66,64.0],[124,55,67,64.0],[124,55,68,64.0],[124,55,69,64.0],[124,55,70,64.0],[124,55,71,64.0],[124,55,72,64.0],[124,55,73,64.0],[124,55,74,64.0],[124,55,75,64.0],[124,55,76,64.0],[124,55,77,64.0],[124,55,78,64.0],[124,55,79,64.0],[124,56,64,64.0],[124,56,65,64.0],[124,56,66,64.0],[124,56,67,64.0],[124,56,68,64.0],[124,56,69,64.0],[124,56,70,64.0],[124,56,71,64.0],[124,56,72,64.0],[124,56,73,64.0],[124,56,74,64.0],[124,56,75,64.0],[124,56,76,64.0],[124,56,77,64.0],[124,56,78,64.0],[124,56,79,64.0],[124,57,64,64.0],[124,57,65,64.0],[124,57,66,64.0],[124,57,67,64.0],[124,57,68,64.0],[124,57,69,64.0],[124,57,70,64.0],[124,57,71,64.0],[124,57,72,64.0],[124,57,73,64.0],[124,57,74,64.0],[124,57,75,64.0],[124,57,76,64.0],[124,57,77,64.0],[124,57,78,64.0],[124,57,79,64.0],[124,58,64,64.0],[124,58,65,64.0],[124,58,66,64.0],[124,58,67,64.0],[124,58,68,64.0],[124,58,69,64.0],[124,58,70,64.0],[124,58,71,64.0],[124,58,72,64.0],[124,58,73,64.0],[124,58,74,64.0],[124,58,75,64.0],[124,58,76,64.0],[124,58,77,64.0],[124,58,78,64.0],[124,58,79,64.0],[124,59,64,64.0],[124,59,65,64.0],[124,59,66,64.0],[124,59,67,64.0],[124,59,68,64.0],[124,59,69,64.0],[124,59,70,64.0],[124,59,71,64.0],[124,59,72,64.0],[124,59,73,64.0],[124,59,74,64.0],[124,59,75,64.0],[124,59,76,64.0],[124,59,77,64.0],[124,59,78,64.0],[124,59,79,64.0],[124,60,64,64.0],[124,60,65,64.0],[124,60,66,64.0],[124,60,67,64.0],[124,60,68,64.0],[124,60,69,64.0],[124,60,70,64.0],[124,60,71,64.0],[124,60,72,64.0],[124,60,73,64.0],[124,60,74,64.0],[124,60,75,64.0],[124,60,76,64.0],[124,60,77,64.0],[124,60,78,64.0],[124,60,79,64.0],[124,61,64,64.0],[124,61,65,64.0],[124,61,66,64.0],[124,61,67,64.0],[124,61,68,64.0],[124,61,69,64.0],[124,61,70,64.0],[124,61,71,64.0],[124,61,72,64.0],[124,61,73,64.0],[124,61,74,64.0],[124,61,75,64.0],[124,61,76,64.0],[124,61,77,64.0],[124,61,78,64.0],[124,61,79,64.0],[124,62,64,64.0],[124,62,65,64.0],[124,62,66,64.0],[124,62,67,64.0],[124,62,68,64.0],[124,62,69,64.0],[124,62,70,64.0],[124,62,71,64.0],[124,62,72,64.0],[124,62,73,64.0],[124,62,74,64.0],[124,62,75,64.0],[124,62,76,64.0],[124,62,77,64.0],[124,62,78,64.0],[124,62,79,64.0],[124,63,64,64.0],[124,63,65,64.0],[124,63,66,64.0],[124,63,67,64.0],[124,63,68,64.0],[124,63,69,64.0],[124,63,70,64.0],[124,63,71,64.0],[124,63,72,64.0],[124,63,73,64.0],[124,63,74,64.0],[124,63,75,64.0],[124,63,76,64.0],[124,63,77,64.0],[124,63,78,64.0],[124,63,79,64.0],[124,64,64,64.0],[124,64,65,64.0],[124,64,66,64.0],[124,64,67,64.0],[124,64,68,64.0],[124,64,69,64.0],[124,64,70,64.0],[124,64,71,64.0],[124,64,72,64.0],[124,64,73,64.0],[124,64,74,64.0],[124,64,75,64.0],[124,64,76,64.0],[124,64,77,64.0],[124,64,78,64.0],[124,64,79,64.0],[124,65,64,64.0],[124,65,65,64.0],[124,65,66,64.0],[124,65,67,64.0],[124,65,68,64.0],[124,65,69,64.0],[124,65,70,64.0],[124,65,71,64.0],[124,65,72,64.0],[124,65,73,64.0],[124,65,74,64.0],[124,65,75,64.0],[124,65,76,64.0],[124,65,77,64.0],[124,65,78,64.0],[124,65,79,64.0],[124,66,64,64.0],[124,66,65,64.0],[124,66,66,64.0],[124,66,67,64.0],[124,66,68,64.0],[124,66,69,64.0],[124,66,70,64.0],[124,66,71,64.0],[124,66,72,64.0],[124,66,73,64.0],[124,66,74,64.0],[124,66,75,64.0],[124,66,76,64.0],[124,66,77,64.0],[124,66,78,64.0],[124,66,79,64.0],[124,67,64,64.0],[124,67,65,64.0],[124,67,66,64.0],[124,67,67,64.0],[124,67,68,64.0],[124,67,69,64.0],[124,67,70,64.0],[124,67,71,64.0],[124,67,72,64.0],[124,67,73,64.0],[124,67,74,64.0],[124,67,75,64.0],[124,67,76,64.0],[124,67,77,64.0],[124,67,78,64.0],[124,67,79,64.0],[124,68,64,64.0],[124,68,65,64.0],[124,68,66,64.0],[124,68,67,64.0],[124,68,68,64.0],[124,68,69,64.0],[124,68,70,64.0],[124,68,71,64.0],[124,68,72,64.0],[124,68,73,64.0],[124,68,74,64.0],[124,68,75,64.0],[124,68,76,64.0],[124,68,77,64.0],[124,68,78,64.0],[124,68,79,64.0],[124,69,64,64.0],[124,69,65,64.0],[124,69,66,64.0],[124,69,67,64.0],[124,69,68,64.0],[124,69,69,64.0],[124,69,70,64.0],[124,69,71,64.0],[124,69,72,64.0],[124,69,73,64.0],[124,69,74,64.0],[124,69,75,64.0],[124,69,76,64.0],[124,69,77,64.0],[124,69,78,64.0],[124,69,79,64.0],[124,70,64,64.0],[124,70,65,64.0],[124,70,66,64.0],[124,70,67,64.0],[124,70,68,64.0],[124,70,69,64.0],[124,70,70,64.0],[124,70,71,64.0],[124,70,72,64.0],[124,70,73,64.0],[124,70,74,64.0],[124,70,75,64.0],[124,70,76,64.0],[124,70,77,64.0],[124,70,78,64.0],[124,70,79,64.0],[124,71,64,64.0],[124,71,65,64.0],[124,71,66,64.0],[124,71,67,64.0],[124,71,68,64.0],[124,71,69,64.0],[124,71,70,64.0],[124,71,71,64.0],[124,71,72,64.0],[124,71,73,64.0],[124,71,74,64.0],[124,71,75,64.0],[124,71,76,64.0],[124,71,77,64.0],[124,71,78,64.0],[124,71,79,64.0],[124,72,64,64.0],[124,72,65,64.0],[124,72,66,64.0],[124,72,67,64.0],[124,72,68,64.0],[124,72,69,64.0],[124,72,70,64.0],[124,72,71,64.0],[124,72,72,64.0],[124,72,73,64.0],[124,72,74,64.0],[124,72,75,64.0],[124,72,76,64.0],[124,72,77,64.0],[124,72,78,64.0],[124,72,79,64.0],[124,73,64,64.0],[124,73,65,64.0],[124,73,66,64.0],[124,73,67,64.0],[124,73,68,64.0],[124,73,69,64.0],[124,73,70,64.0],[124,73,71,64.0],[124,73,72,64.0],[124,73,73,64.0],[124,73,74,64.0],[124,73,75,64.0],[124,73,76,64.0],[124,73,77,64.0],[124,73,78,64.0],[124,73,79,64.0],[124,74,64,64.0],[124,74,65,64.0],[124,74,66,64.0],[124,74,67,64.0],[124,74,68,64.0],[124,74,69,64.0],[124,74,70,64.0],[124,74,71,64.0],[124,74,72,64.0],[124,74,73,64.0],[124,74,74,64.0],[124,74,75,64.0],[124,74,76,64.0],[124,74,77,64.0],[124,74,78,64.0],[124,74,79,64.0],[124,75,64,64.0],[124,75,65,64.0],[124,75,66,64.0],[124,75,67,64.0],[124,75,68,64.0],[124,75,69,64.0],[124,75,70,64.0],[124,75,71,64.0],[124,75,72,64.0],[124,75,73,64.0],[124,75,74,64.0],[124,75,75,64.0],[124,75,76,64.0],[124,75,77,64.0],[124,75,78,64.0],[124,75,79,64.0],[124,76,64,64.0],[124,76,65,64.0],[124,76,66,64.0],[124,76,67,64.0],[124,76,68,64.0],[124,76,69,64.0],[124,76,70,64.0],[124,76,71,64.0],[124,76,72,64.0],[124,76,73,64.0],[124,76,74,64.0],[124,76,75,64.0],[124,76,76,64.0],[124,76,77,64.0],[124,76,78,64.0],[124,76,79,64.0],[124,77,64,64.0],[124,77,65,64.0],[124,77,66,64.0],[124,77,67,64.0],[124,77,68,64.0],[124,77,69,64.0],[124,77,70,64.0],[124,77,71,64.0],[124,77,72,64.0],[124,77,73,64.0],[124,77,74,64.0],[124,77,75,64.0],[124,77,76,64.0],[124,77,77,64.0],[124,77,78,64.0],[124,77,79,64.0],[124,78,64,64.0],[124,78,65,64.0],[124,78,66,64.0],[124,78,67,64.0],[124,78,68,64.0],[124,78,69,64.0],[124,78,70,64.0],[124,78,71,64.0],[124,78,72,64.0],[124,78,73,64.0],[124,78,74,64.0],[124,78,75,64.0],[124,78,76,64.0],[124,78,77,64.0],[124,78,78,64.0],[124,78,79,64.0],[124,79,64,64.0],[124,79,65,64.0],[124,79,66,64.0],[124,79,67,64.0],[124,79,68,64.0],[124,79,69,64.0],[124,79,70,64.0],[124,79,71,64.0],[124,79,72,64.0],[124,79,73,64.0],[124,79,74,64.0],[124,79,75,64.0],[124,79,76,64.0],[124,79,77,64.0],[124,79,78,64.0],[124,79,79,64.0],[124,80,64,64.0],[124,80,65,64.0],[124,80,66,64.0],[124,80,67,64.0],[124,80,68,64.0],[124,80,69,64.0],[124,80,70,64.0],[124,80,71,64.0],[124,80,72,64.0],[124,80,73,64.0],[124,80,74,64.0],[124,80,75,64.0],[124,80,76,64.0],[124,80,77,64.0],[124,80,78,64.0],[124,80,79,64.0],[124,81,64,64.0],[124,81,65,64.0],[124,81,66,64.0],[124,81,67,64.0],[124,81,68,64.0],[124,81,69,64.0],[124,81,70,64.0],[124,81,71,64.0],[124,81,72,64.0],[124,81,73,64.0],[124,81,74,64.0],[124,81,75,64.0],[124,81,76,64.0],[124,81,77,64.0],[124,81,78,64.0],[124,81,79,64.0],[124,82,64,64.0],[124,82,65,64.0],[124,82,66,64.0],[124,82,67,64.0],[124,82,68,64.0],[124,82,69,64.0],[124,82,70,64.0],[124,82,71,64.0],[124,82,72,64.0],[124,82,73,64.0],[124,82,74,64.0],[124,82,75,64.0],[124,82,76,64.0],[124,82,77,64.0],[124,82,78,64.0],[124,82,79,64.0],[124,83,64,64.0],[124,83,65,64.0],[124,83,66,64.0],[124,83,67,64.0],[124,83,68,64.0],[124,83,69,64.0],[124,83,70,64.0],[124,83,71,64.0],[124,83,72,64.0],[124,83,73,64.0],[124,83,74,64.0],[124,83,75,64.0],[124,83,76,64.0],[124,83,77,64.0],[124,83,78,64.0],[124,83,79,64.0],[124,84,64,64.0],[124,84,65,64.0],[124,84,66,64.0],[124,84,67,64.0],[124,84,68,64.0],[124,84,69,64.0],[124,84,70,64.0],[124,84,71,64.0],[124,84,72,64.0],[124,84,73,64.0],[124,84,74,64.0],[124,84,75,64.0],[124,84,76,64.0],[124,84,77,64.0],[124,84,78,64.0],[124,84,79,64.0],[124,85,64,64.0],[124,85,65,64.0],[124,85,66,64.0],[124,85,67,64.0],[124,85,68,64.0],[124,85,69,64.0],[124,85,70,64.0],[124,85,71,64.0],[124,85,72,64.0],[124,85,73,64.0],[124,85,74,64.0],[124,85,75,64.0],[124,85,76,64.0],[124,85,77,64.0],[124,85,78,64.0],[124,85,79,64.0],[124,86,64,64.0],[124,86,65,64.0],[124,86,66,64.0],[124,86,67,64.0],[124,86,68,64.0],[124,86,69,64.0],[124,86,70,64.0],[124,86,71,64.0],[124,86,72,64.0],[124,86,73,64.0],[124,86,74,64.0],[124,86,75,64.0],[124,86,76,64.0],[124,86,77,64.0],[124,86,78,64.0],[124,86,79,64.0],[124,87,64,64.0],[124,87,65,64.0],[124,87,66,64.0],[124,87,67,64.0],[124,87,68,64.0],[124,87,69,64.0],[124,87,70,64.0],[124,87,71,64.0],[124,87,72,64.0],[124,87,73,64.0],[124,87,74,64.0],[124,87,75,64.0],[124,87,76,64.0],[124,87,77,64.0],[124,87,78,64.0],[124,87,79,64.0],[124,88,64,64.0],[124,88,65,64.0],[124,88,66,64.0],[124,88,67,64.0],[124,88,68,64.0],[124,88,69,64.0],[124,88,70,64.0],[124,88,71,64.0],[124,88,72,64.0],[124,88,73,64.0],[124,88,74,64.0],[124,88,75,64.0],[124,88,76,64.0],[124,88,77,64.0],[124,88,78,64.0],[124,88,79,64.0],[124,89,64,64.0],[124,89,65,64.0],[124,89,66,64.0],[124,89,67,64.0],[124,89,68,64.0],[124,89,69,64.0],[124,89,70,64.0],[124,89,71,64.0],[124,89,72,64.0],[124,89,73,64.0],[124,89,74,64.0],[124,89,75,64.0],[124,89,76,64.0],[124,89,77,64.0],[124,89,78,64.0],[124,89,79,64.0],[124,90,64,64.0],[124,90,65,64.0],[124,90,66,64.0],[124,90,67,64.0],[124,90,68,64.0],[124,90,69,64.0],[124,90,70,64.0],[124,90,71,64.0],[124,90,72,64.0],[124,90,73,64.0],[124,90,74,64.0],[124,90,75,64.0],[124,90,76,64.0],[124,90,77,64.0],[124,90,78,64.0],[124,90,79,64.0],[124,91,64,64.0],[124,91,65,64.0],[124,91,66,64.0],[124,91,67,64.0],[124,91,68,64.0],[124,91,69,64.0],[124,91,70,64.0],[124,91,71,64.0],[124,91,72,64.0],[124,91,73,64.0],[124,91,74,64.0],[124,91,75,64.0],[124,91,76,64.0],[124,91,77,64.0],[124,91,78,64.0],[124,91,79,64.0],[124,92,64,64.0],[124,92,65,64.0],[124,92,66,64.0],[124,92,67,64.0],[124,92,68,64.0],[124,92,69,64.0],[124,92,70,64.0],[124,92,71,64.0],[124,92,72,64.0],[124,92,73,64.0],[124,92,74,64.0],[124,92,75,64.0],[124,92,76,64.0],[124,92,77,64.0],[124,92,78,64.0],[124,92,79,64.0],[124,93,64,64.0],[124,93,65,64.0],[124,93,66,64.0],[124,93,67,64.0],[124,93,68,64.0],[124,93,69,64.0],[124,93,70,64.0],[124,93,71,64.0],[124,93,72,64.0],[124,93,73,64.0],[124,93,74,64.0],[124,93,75,64.0],[124,93,76,64.0],[124,93,77,64.0],[124,93,78,64.0],[124,93,79,64.0],[124,94,64,64.0],[124,94,65,64.0],[124,94,66,64.0],[124,94,67,64.0],[124,94,68,64.0],[124,94,69,64.0],[124,94,70,64.0],[124,94,71,64.0],[124,94,72,64.0],[124,94,73,64.0],[124,94,74,64.0],[124,94,75,64.0],[124,94,76,64.0],[124,94,77,64.0],[124,94,78,64.0],[124,94,79,64.0],[124,95,64,64.0],[124,95,65,64.0],[124,95,66,64.0],[124,95,67,64.0],[124,95,68,64.0],[124,95,69,64.0],[124,95,70,64.0],[124,95,71,64.0],[124,95,72,64.0],[124,95,73,64.0],[124,95,74,64.0],[124,95,75,64.0],[124,95,76,64.0],[124,95,77,64.0],[124,95,78,64.0],[124,95,79,64.0],[124,96,64,64.0],[124,96,65,64.0],[124,96,66,64.0],[124,96,67,64.0],[124,96,68,64.0],[124,96,69,64.0],[124,96,70,64.0],[124,96,71,64.0],[124,96,72,64.0],[124,96,73,64.0],[124,96,74,64.0],[124,96,75,64.0],[124,96,76,64.0],[124,96,77,64.0],[124,96,78,64.0],[124,96,79,64.0],[124,97,64,64.0],[124,97,65,64.0],[124,97,66,64.0],[124,97,67,64.0],[124,97,68,64.0],[124,97,69,64.0],[124,97,70,64.0],[124,97,71,64.0],[124,97,72,64.0],[124,97,73,64.0],[124,97,74,64.0],[124,97,75,64.0],[124,97,76,64.0],[124,97,77,64.0],[124,97,78,64.0],[124,97,79,64.0],[124,98,64,64.0],[124,98,65,64.0],[124,98,66,64.0],[124,98,67,64.0],[124,98,68,64.0],[124,98,69,64.0],[124,98,70,64.0],[124,98,71,64.0],[124,98,72,64.0],[124,98,73,64.0],[124,98,74,64.0],[124,98,75,64.0],[124,98,76,64.0],[124,98,77,64.0],[124,98,78,64.0],[124,98,79,64.0],[124,99,64,64.0],[124,99,65,64.0],[124,99,66,64.0],[124,99,67,64.0],[124,99,68,64.0],[124,99,69,64.0],[124,99,70,64.0],[124,99,71,64.0],[124,99,72,64.0],[124,99,73,64.0],[124,99,74,64.0],[124,99,75,64.0],[124,99,76,64.0],[124,99,77,64.0],[124,99,78,64.0],[124,99,79,64.0],[124,100,64,64.0],[124,100,65,64.0],[124,100,66,64.0],[124,100,67,64.0],[124,100,68,64.0],[124,100,69,64.0],[124,100,70,64.0],[124,100,71,64.0],[124,100,72,64.0],[124,100,73,64.0],[124,100,74,64.0],[124,100,75,64.0],[124,100,76,64.0],[124,100,77,64.0],[124,100,78,64.0],[124,100,79,64.0],[124,101,64,64.0],[124,101,65,64.0],[124,101,66,64.0],[124,101,67,64.0],[124,101,68,64.0],[124,101,69,64.0],[124,101,70,64.0],[124,101,71,64.0],[124,101,72,64.0],[124,101,73,64.0],[124,101,74,64.0],[124,101,75,64.0],[124,101,76,64.0],[124,101,77,64.0],[124,101,78,64.0],[124,101,79,64.0],[124,102,64,64.0],[124,102,65,64.0],[124,102,66,64.0],[124,102,67,64.0],[124,102,68,64.0],[124,102,69,64.0],[124,102,70,64.0],[124,102,71,64.0],[124,102,72,64.0],[124,102,73,64.0],[124,102,74,64.0],[124,102,75,64.0],[124,102,76,64.0],[124,102,77,64.0],[124,102,78,64.0],[124,102,79,64.0],[124,103,64,64.0],[124,103,65,64.0],[124,103,66,64.0],[124,103,67,64.0],[124,103,68,64.0],[124,103,69,64.0],[124,103,70,64.0],[124,103,71,64.0],[124,103,72,64.0],[124,103,73,64.0],[124,103,74,64.0],[124,103,75,64.0],[124,103,76,64.0],[124,103,77,64.0],[124,103,78,64.0],[124,103,79,64.0],[124,104,64,64.0],[124,104,65,64.0],[124,104,66,64.0],[124,104,67,64.0],[124,104,68,64.0],[124,104,69,64.0],[124,104,70,64.0],[124,104,71,64.0],[124,104,72,64.0],[124,104,73,64.0],[124,104,74,64.0],[124,104,75,64.0],[124,104,76,64.0],[124,104,77,64.0],[124,104,78,64.0],[124,104,79,64.0],[124,105,64,64.0],[124,105,65,64.0],[124,105,66,64.0],[124,105,67,64.0],[124,105,68,64.0],[124,105,69,64.0],[124,105,70,64.0],[124,105,71,64.0],[124,105,72,64.0],[124,105,73,64.0],[124,105,74,64.0],[124,105,75,64.0],[124,105,76,64.0],[124,105,77,64.0],[124,105,78,64.0],[124,105,79,64.0],[124,106,64,64.0],[124,106,65,64.0],[124,106,66,64.0],[124,106,67,64.0],[124,106,68,64.0],[124,106,69,64.0],[124,106,70,64.0],[124,106,71,64.0],[124,106,72,64.0],[124,106,73,64.0],[124,106,74,64.0],[124,106,75,64.0],[124,106,76,64.0],[124,106,77,64.0],[124,106,78,64.0],[124,106,79,64.0],[124,107,64,64.0],[124,107,65,64.0],[124,107,66,64.0],[124,107,67,64.0],[124,107,68,64.0],[124,107,69,64.0],[124,107,70,64.0],[124,107,71,64.0],[124,107,72,64.0],[124,107,73,64.0],[124,107,74,64.0],[124,107,75,64.0],[124,107,76,64.0],[124,107,77,64.0],[124,107,78,64.0],[124,107,79,64.0],[124,108,64,64.0],[124,108,65,64.0],[124,108,66,64.0],[124,108,67,64.0],[124,108,68,64.0],[124,108,69,64.0],[124,108,70,64.0],[124,108,71,64.0],[124,108,72,64.0],[124,108,73,64.0],[124,108,74,64.0],[124,108,75,64.0],[124,108,76,64.0],[124,108,77,64.0],[124,108,78,64.0],[124,108,79,64.0],[124,109,64,64.0],[124,109,65,64.0],[124,109,66,64.0],[124,109,67,64.0],[124,109,68,64.0],[124,109,69,64.0],[124,109,70,64.0],[124,109,71,64.0],[124,109,72,64.0],[124,109,73,64.0],[124,109,74,64.0],[124,109,75,64.0],[124,109,76,64.0],[124,109,77,64.0],[124,109,78,64.0],[124,109,79,64.0],[124,110,64,64.0],[124,110,65,64.0],[124,110,66,64.0],[124,110,67,64.0],[124,110,68,64.0],[124,110,69,64.0],[124,110,70,64.0],[124,110,71,64.0],[124,110,72,64.0],[124,110,73,64.0],[124,110,74,64.0],[124,110,75,64.0],[124,110,76,64.0],[124,110,77,64.0],[124,110,78,64.0],[124,110,79,64.0],[124,111,64,64.0],[124,111,65,64.0],[124,111,66,64.0],[124,111,67,64.0],[124,111,68,64.0],[124,111,69,64.0],[124,111,70,64.0],[124,111,71,64.0],[124,111,72,64.0],[124,111,73,64.0],[124,111,74,64.0],[124,111,75,64.0],[124,111,76,64.0],[124,111,77,64.0],[124,111,78,64.0],[124,111,79,64.0],[124,112,64,64.0],[124,112,65,64.0],[124,112,66,64.0],[124,112,67,64.0],[124,112,68,64.0],[124,112,69,64.0],[124,112,70,64.0],[124,112,71,64.0],[124,112,72,64.0],[124,112,73,64.0],[124,112,74,64.0],[124,112,75,64.0],[124,112,76,64.0],[124,112,77,64.0],[124,112,78,64.0],[124,112,79,64.0],[124,113,64,64.0],[124,113,65,64.0],[124,113,66,64.0],[124,113,67,64.0],[124,113,68,64.0],[124,113,69,64.0],[124,113,70,64.0],[124,113,71,64.0],[124,113,72,64.0],[124,113,73,64.0],[124,113,74,64.0],[124,113,75,64.0],[124,113,76,64.0],[124,113,77,64.0],[124,113,78,64.0],[124,113,79,64.0],[124,114,64,64.0],[124,114,65,64.0],[124,114,66,64.0],[124,114,67,64.0],[124,114,68,64.0],[124,114,69,64.0],[124,114,70,64.0],[124,114,71,64.0],[124,114,72,64.0],[124,114,73,64.0],[124,114,74,64.0],[124,114,75,64.0],[124,114,76,64.0],[124,114,77,64.0],[124,114,78,64.0],[124,114,79,64.0],[124,115,64,64.0],[124,115,65,64.0],[124,115,66,64.0],[124,115,67,64.0],[124,115,68,64.0],[124,115,69,64.0],[124,115,70,64.0],[124,115,71,64.0],[124,115,72,64.0],[124,115,73,64.0],[124,115,74,64.0],[124,115,75,64.0],[124,115,76,64.0],[124,115,77,64.0],[124,115,78,64.0],[124,115,79,64.0],[124,116,64,64.0],[124,116,65,64.0],[124,116,66,64.0],[124,116,67,64.0],[124,116,68,64.0],[124,116,69,64.0],[124,116,70,64.0],[124,116,71,64.0],[124,116,72,64.0],[124,116,73,64.0],[124,116,74,64.0],[124,116,75,64.0],[124,116,76,64.0],[124,116,77,64.0],[124,116,78,64.0],[124,116,79,64.0],[124,117,64,64.0],[124,117,65,64.0],[124,117,66,64.0],[124,117,67,64.0],[124,117,68,64.0],[124,117,69,64.0],[124,117,70,64.0],[124,117,71,64.0],[124,117,72,64.0],[124,117,73,64.0],[124,117,74,64.0],[124,117,75,64.0],[124,117,76,64.0],[124,117,77,64.0],[124,117,78,64.0],[124,117,79,64.0],[124,118,64,64.0],[124,118,65,64.0],[124,118,66,64.0],[124,118,67,64.0],[124,118,68,64.0],[124,118,69,64.0],[124,118,70,64.0],[124,118,71,64.0],[124,118,72,64.0],[124,118,73,64.0],[124,118,74,64.0],[124,118,75,64.0],[124,118,76,64.0],[124,118,77,64.0],[124,118,78,64.0],[124,118,79,64.0],[124,119,64,64.0],[124,119,65,64.0],[124,119,66,64.0],[124,119,67,64.0],[124,119,68,64.0],[124,119,69,64.0],[124,119,70,64.0],[124,119,71,64.0],[124,119,72,64.0],[124,119,73,64.0],[124,119,74,64.0],[124,119,75,64.0],[124,119,76,64.0],[124,119,77,64.0],[124,119,78,64.0],[124,119,79,64.0],[124,120,64,64.0],[124,120,65,64.0],[124,120,66,64.0],[124,120,67,64.0],[124,120,68,64.0],[124,120,69,64.0],[124,120,70,64.0],[124,120,71,64.0],[124,120,72,64.0],[124,120,73,64.0],[124,120,74,64.0],[124,120,75,64.0],[124,120,76,64.0],[124,120,77,64.0],[124,120,78,64.0],[124,120,79,64.0],[124,121,64,64.0],[124,121,65,64.0],[124,121,66,64.0],[124,121,67,64.0],[124,121,68,64.0],[124,121,69,64.0],[124,121,70,64.0],[124,121,71,64.0],[124,121,72,64.0],[124,121,73,64.0],[124,121,74,64.0],[124,121,75,64.0],[124,121,76,64.0],[124,121,77,64.0],[124,121,78,64.0],[124,121,79,64.0],[124,122,64,64.0],[124,122,65,64.0],[124,122,66,64.0],[124,122,67,64.0],[124,122,68,64.0],[124,122,69,64.0],[124,122,70,64.0],[124,122,71,64.0],[124,122,72,64.0],[124,122,73,64.0],[124,122,74,64.0],[124,122,75,64.0],[124,122,76,64.0],[124,122,77,64.0],[124,122,78,64.0],[124,122,79,64.0],[124,123,64,64.0],[124,123,65,64.0],[124,123,66,64.0],[124,123,67,64.0],[124,123,68,64.0],[124,123,69,64.0],[124,123,70,64.0],[124,123,71,64.0],[124,123,72,64.0],[124,123,73,64.0],[124,123,74,64.0],[124,123,75,64.0],[124,123,76,64.0],[124,123,77,64.0],[124,123,78,64.0],[124,123,79,64.0],[124,124,64,64.0],[124,124,65,64.0],[124,124,66,64.0],[124,124,67,64.0],[124,124,68,64.0],[124,124,69,64.0],[124,124,70,64.0],[124,124,71,64.0],[124,124,72,64.0],[124,124,73,64.0],[124,124,74,64.0],[124,124,75,64.0],[124,124,76,64.0],[124,124,77,64.0],[124,124,78,64.0],[124,124,79,64.0],[124,125,64,64.0],[124,125,65,64.0],[124,125,66,64.0],[124,125,67,64.0],[124,125,68,64.0],[124,125,69,64.0],[124,125,70,64.0],[124,125,71,64.0],[124,125,72,64.0],[124,125,73,64.0],[124,125,74,64.0],[124,125,75,64.0],[124,125,76,64.0],[124,125,77,64.0],[124,125,78,64.0],[124,125,79,64.0],[124,126,64,64.0],[124,126,65,64.0],[124,126,66,64.0],[124,126,67,64.0],[124,126,68,64.0],[124,126,69,64.0],[124,126,70,64.0],[124,126,71,64.0],[124,126,72,64.0],[124,126,73,64.0],[124,126,74,64.0],[124,126,75,64.0],[124,126,76,64.0],[124,126,77,64.0],[124,126,78,64.0],[124,126,79,64.0],[124,127,64,64.0],[124,127,65,64.0],[124,127,66,64.0],[124,127,67,64.0],[124,127,68,64.0],[124,127,69,64.0],[124,127,70,64.0],[124,127,71,64.0],[124,127,72,64.0],[124,127,73,64.0],[124,127,74,64.0],[124,127,75,64.0],[124,127,76,64.0],[124,127,77,64.0],[124,127,78,64.0],[124,127,79,64.0],[124,128,64,64.0],[124,128,65,64.0],[124,128,66,64.0],[124,128,67,64.0],[124,128,68,64.0],[124,128,69,64.0],[124,128,70,64.0],[124,128,71,64.0],[124,128,72,64.0],[124,128,73,64.0],[124,128,74,64.0],[124,128,75,64.0],[124,128,76,64.0],[124,128,77,64.0],[124,128,78,64.0],[124,128,79,64.0],[124,129,64,64.0],[124,129,65,64.0],[124,129,66,64.0],[124,129,67,64.0],[124,129,68,64.0],[124,129,69,64.0],[124,129,70,64.0],[124,129,71,64.0],[124,129,72,64.0],[124,129,73,64.0],[124,129,74,64.0],[124,129,75,64.0],[124,129,76,64.0],[124,129,77,64.0],[124,129,78,64.0],[124,129,79,64.0],[124,130,64,64.0],[124,130,65,64.0],[124,130,66,64.0],[124,130,67,64.0],[124,130,68,64.0],[124,130,69,64.0],[124,130,70,64.0],[124,130,71,64.0],[124,130,72,64.0],[124,130,73,64.0],[124,130,74,64.0],[124,130,75,64.0],[124,130,76,64.0],[124,130,77,64.0],[124,130,78,64.0],[124,130,79,64.0],[124,131,64,64.0],[124,131,65,64.0],[124,131,66,64.0],[124,131,67,64.0],[124,131,68,64.0],[124,131,69,64.0],[124,131,70,64.0],[124,131,71,64.0],[124,131,72,64.0],[124,131,73,64.0],[124,131,74,64.0],[124,131,75,64.0],[124,131,76,64.0],[124,131,77,64.0],[124,131,78,64.0],[124,131,79,64.0],[124,132,64,64.0],[124,132,65,64.0],[124,132,66,64.0],[124,132,67,64.0],[124,132,68,64.0],[124,132,69,64.0],[124,132,70,64.0],[124,132,71,64.0],[124,132,72,64.0],[124,132,73,64.0],[124,132,74,64.0],[124,132,75,64.0],[124,132,76,64.0],[124,132,77,64.0],[124,132,78,64.0],[124,132,79,64.0],[124,133,64,64.0],[124,133,65,64.0],[124,133,66,64.0],[124,133,67,64.0],[124,133,68,64.0],[124,133,69,64.0],[124,133,70,64.0],[124,133,71,64.0],[124,133,72,64.0],[124,133,73,64.0],[124,133,74,64.0],[124,133,75,64.0],[124,133,76,64.0],[124,133,77,64.0],[124,133,78,64.0],[124,133,79,64.0],[124,134,64,64.0],[124,134,65,64.0],[124,134,66,64.0],[124,134,67,64.0],[124,134,68,64.0],[124,134,69,64.0],[124,134,70,64.0],[124,134,71,64.0],[124,134,72,64.0],[124,134,73,64.0],[124,134,74,64.0],[124,134,75,64.0],[124,134,76,64.0],[124,134,77,64.0],[124,134,78,64.0],[124,134,79,64.0],[124,135,64,64.0],[124,135,65,64.0],[124,135,66,64.0],[124,135,67,64.0],[124,135,68,64.0],[124,135,69,64.0],[124,135,70,64.0],[124,135,71,64.0],[124,135,72,64.0],[124,135,73,64.0],[124,135,74,64.0],[124,135,75,64.0],[124,135,76,64.0],[124,135,77,64.0],[124,135,78,64.0],[124,135,79,64.0],[124,136,64,64.0],[124,136,65,64.0],[124,136,66,64.0],[124,136,67,64.0],[124,136,68,64.0],[124,136,69,64.0],[124,136,70,64.0],[124,136,71,64.0],[124,136,72,64.0],[124,136,73,64.0],[124,136,74,64.0],[124,136,75,64.0],[124,136,76,64.0],[124,136,77,64.0],[124,136,78,64.0],[124,136,79,64.0],[124,137,64,64.0],[124,137,65,64.0],[124,137,66,64.0],[124,137,67,64.0],[124,137,68,64.0],[124,137,69,64.0],[124,137,70,64.0],[124,137,71,64.0],[124,137,72,64.0],[124,137,73,64.0],[124,137,74,64.0],[124,137,75,64.0],[124,137,76,64.0],[124,137,77,64.0],[124,137,78,64.0],[124,137,79,64.0],[124,138,64,64.0],[124,138,65,64.0],[124,138,66,64.0],[124,138,67,64.0],[124,138,68,64.0],[124,138,69,64.0],[124,138,70,64.0],[124,138,71,64.0],[124,138,72,64.0],[124,138,73,64.0],[124,138,74,64.0],[124,138,75,64.0],[124,138,76,64.0],[124,138,77,64.0],[124,138,78,64.0],[124,138,79,64.0],[124,139,64,64.0],[124,139,65,64.0],[124,139,66,64.0],[124,139,67,64.0],[124,139,68,64.0],[124,139,69,64.0],[124,139,70,64.0],[124,139,71,64.0],[124,139,72,64.0],[124,139,73,64.0],[124,139,74,64.0],[124,139,75,64.0],[124,139,76,64.0],[124,139,77,64.0],[124,139,78,64.0],[124,139,79,64.0],[124,140,64,64.0],[124,140,65,64.0],[124,140,66,64.0],[124,140,67,64.0],[124,140,68,64.0],[124,140,69,64.0],[124,140,70,64.0],[124,140,71,64.0],[124,140,72,64.0],[124,140,73,64.0],[124,140,74,64.0],[124,140,75,64.0],[124,140,76,64.0],[124,140,77,64.0],[124,140,78,64.0],[124,140,79,64.0],[124,141,64,64.0],[124,141,65,64.0],[124,141,66,64.0],[124,141,67,64.0],[124,141,68,64.0],[124,141,69,64.0],[124,141,70,64.0],[124,141,71,64.0],[124,141,72,64.0],[124,141,73,64.0],[124,141,74,64.0],[124,141,75,64.0],[124,141,76,64.0],[124,141,77,64.0],[124,141,78,64.0],[124,141,79,64.0],[124,142,64,64.0],[124,142,65,64.0],[124,142,66,64.0],[124,142,67,64.0],[124,142,68,64.0],[124,142,69,64.0],[124,142,70,64.0],[124,142,71,64.0],[124,142,72,64.0],[124,142,73,64.0],[124,142,74,64.0],[124,142,75,64.0],[124,142,76,64.0],[124,142,77,64.0],[124,142,78,64.0],[124,142,79,64.0],[124,143,64,64.0],[124,143,65,64.0],[124,143,66,64.0],[124,143,67,64.0],[124,143,68,64.0],[124,143,69,64.0],[124,143,70,64.0],[124,143,71,64.0],[124,143,72,64.0],[124,143,73,64.0],[124,143,74,64.0],[124,143,75,64.0],[124,143,76,64.0],[124,143,77,64.0],[124,143,78,64.0],[124,143,79,64.0],[124,144,64,64.0],[124,144,65,64.0],[124,144,66,64.0],[124,144,67,64.0],[124,144,68,64.0],[124,144,69,64.0],[124,144,70,64.0],[124,144,71,64.0],[124,144,72,64.0],[124,144,73,64.0],[124,144,74,64.0],[124,144,75,64.0],[124,144,76,64.0],[124,144,77,64.0],[124,144,78,64.0],[124,144,79,64.0],[124,145,64,64.0],[124,145,65,64.0],[124,145,66,64.0],[124,145,67,64.0],[124,145,68,64.0],[124,145,69,64.0],[124,145,70,64.0],[124,145,71,64.0],[124,145,72,64.0],[124,145,73,64.0],[124,145,74,64.0],[124,145,75,64.0],[124,145,76,64.0],[124,145,77,64.0],[124,145,78,64.0],[124,145,79,64.0],[124,146,64,64.0],[124,146,65,64.0],[124,146,66,64.0],[124,146,67,64.0],[124,146,68,64.0],[124,146,69,64.0],[124,146,70,64.0],[124,146,71,64.0],[124,146,72,64.0],[124,146,73,64.0],[124,146,74,64.0],[124,146,75,64.0],[124,146,76,64.0],[124,146,77,64.0],[124,146,78,64.0],[124,146,79,64.0],[124,147,64,64.0],[124,147,65,64.0],[124,147,66,64.0],[124,147,67,64.0],[124,147,68,64.0],[124,147,69,64.0],[124,147,70,64.0],[124,147,71,64.0],[124,147,72,64.0],[124,147,73,64.0],[124,147,74,64.0],[124,147,75,64.0],[124,147,76,64.0],[124,147,77,64.0],[124,147,78,64.0],[124,147,79,64.0],[124,148,64,64.0],[124,148,65,64.0],[124,148,66,64.0],[124,148,67,64.0],[124,148,68,64.0],[124,148,69,64.0],[124,148,70,64.0],[124,148,71,64.0],[124,148,72,64.0],[124,148,73,64.0],[124,148,74,64.0],[124,148,75,64.0],[124,148,76,64.0],[124,148,77,64.0],[124,148,78,64.0],[124,148,79,64.0],[124,149,64,64.0],[124,149,65,64.0],[124,149,66,64.0],[124,149,67,64.0],[124,149,68,64.0],[124,149,69,64.0],[124,149,70,64.0],[124,149,71,64.0],[124,149,72,64.0],[124,149,73,64.0],[124,149,74,64.0],[124,149,75,64.0],[124,149,76,64.0],[124,149,77,64.0],[124,149,78,64.0],[124,149,79,64.0],[124,150,64,64.0],[124,150,65,64.0],[124,150,66,64.0],[124,150,67,64.0],[124,150,68,64.0],[124,150,69,64.0],[124,150,70,64.0],[124,150,71,64.0],[124,150,72,64.0],[124,150,73,64.0],[124,150,74,64.0],[124,150,75,64.0],[124,150,76,64.0],[124,150,77,64.0],[124,150,78,64.0],[124,150,79,64.0],[124,151,64,64.0],[124,151,65,64.0],[124,151,66,64.0],[124,151,67,64.0],[124,151,68,64.0],[124,151,69,64.0],[124,151,70,64.0],[124,151,71,64.0],[124,151,72,64.0],[124,151,73,64.0],[124,151,74,64.0],[124,151,75,64.0],[124,151,76,64.0],[124,151,77,64.0],[124,151,78,64.0],[124,151,79,64.0],[124,152,64,64.0],[124,152,65,64.0],[124,152,66,64.0],[124,152,67,64.0],[124,152,68,64.0],[124,152,69,64.0],[124,152,70,64.0],[124,152,71,64.0],[124,152,72,64.0],[124,152,73,64.0],[124,152,74,64.0],[124,152,75,64.0],[124,152,76,64.0],[124,152,77,64.0],[124,152,78,64.0],[124,152,79,64.0],[124,153,64,64.0],[124,153,65,64.0],[124,153,66,64.0],[124,153,67,64.0],[124,153,68,64.0],[124,153,69,64.0],[124,153,70,64.0],[124,153,71,64.0],[124,153,72,64.0],[124,153,73,64.0],[124,153,74,64.0],[124,153,75,64.0],[124,153,76,64.0],[124,153,77,64.0],[124,153,78,64.0],[124,153,79,64.0],[124,154,64,64.0],[124,154,65,64.0],[124,154,66,64.0],[124,154,67,64.0],[124,154,68,64.0],[124,154,69,64.0],[124,154,70,64.0],[124,154,71,64.0],[124,154,72,64.0],[124,154,73,64.0],[124,154,74,64.0],[124,154,75,64.0],[124,154,76,64.0],[124,154,77,64.0],[124,154,78,64.0],[124,154,79,64.0],[124,155,64,64.0],[124,155,65,64.0],[124,155,66,64.0],[124,155,67,64.0],[124,155,68,64.0],[124,155,69,64.0],[124,155,70,64.0],[124,155,71,64.0],[124,155,72,64.0],[124,155,73,64.0],[124,155,74,64.0],[124,155,75,64.0],[124,155,76,64.0],[124,155,77,64.0],[124,155,78,64.0],[124,155,79,64.0],[124,156,64,64.0],[124,156,65,64.0],[124,156,66,64.0],[124,156,67,64.0],[124,156,68,64.0],[124,156,69,64.0],[124,156,70,64.0],[124,156,71,64.0],[124,156,72,64.0],[124,156,73,64.0],[124,156,74,64.0],[124,156,75,64.0],[124,156,76,64.0],[124,156,77,64.0],[124,156,78,64.0],[124,156,79,64.0],[124,157,64,64.0],[124,157,65,64.0],[124,157,66,64.0],[124,157,67,64.0],[124,157,68,64.0],[124,157,69,64.0],[124,157,70,64.0],[124,157,71,64.0],[124,157,72,64.0],[124,157,73,64.0],[124,157,74,64.0],[124,157,75,64.0],[124,157,76,64.0],[124,157,77,64.0],[124,157,78,64.0],[124,157,79,64.0],[124,158,64,64.0],[124,158,65,64.0],[124,158,66,64.0],[124,158,67,64.0],[124,158,68,64.0],[124,158,69,64.0],[124,158,70,64.0],[124,158,71,64.0],[124,158,72,64.0],[124,158,73,64.0],[124,158,74,64.0],[124,158,75,64.0],[124,158,76,64.0],[124,158,77,64.0],[124,158,78,64.0],[124,158,79,64.0],[124,159,64,64.0],[124,159,65,64.0],[124,159,66,64.0],[124,159,67,64.0],[124,159,68,64.0],[124,159,69,64.0],[124,159,70,64.0],[124,159,71,64.0],[124,159,72,64.0],[124,159,73,64.0],[124,159,74,64.0],[124,159,75,64.0],[124,159,76,64.0],[124,159,77,64.0],[124,159,78,64.0],[124,159,79,64.0],[124,160,64,64.0],[124,160,65,64.0],[124,160,66,64.0],[124,160,67,64.0],[124,160,68,64.0],[124,160,69,64.0],[124,160,70,64.0],[124,160,71,64.0],[124,160,72,64.0],[124,160,73,64.0],[124,160,74,64.0],[124,160,75,64.0],[124,160,76,64.0],[124,160,77,64.0],[124,160,78,64.0],[124,160,79,64.0],[124,161,64,64.0],[124,161,65,64.0],[124,161,66,64.0],[124,161,67,64.0],[124,161,68,64.0],[124,161,69,64.0],[124,161,70,64.0],[124,161,71,64.0],[124,161,72,64.0],[124,161,73,64.0],[124,161,74,64.0],[124,161,75,64.0],[124,161,76,64.0],[124,161,77,64.0],[124,161,78,64.0],[124,161,79,64.0],[124,162,64,64.0],[124,162,65,64.0],[124,162,66,64.0],[124,162,67,64.0],[124,162,68,64.0],[124,162,69,64.0],[124,162,70,64.0],[124,162,71,64.0],[124,162,72,64.0],[124,162,73,64.0],[124,162,74,64.0],[124,162,75,64.0],[124,162,76,64.0],[124,162,77,64.0],[124,162,78,64.0],[124,162,79,64.0],[124,163,64,64.0],[124,163,65,64.0],[124,163,66,64.0],[124,163,67,64.0],[124,163,68,64.0],[124,163,69,64.0],[124,163,70,64.0],[124,163,71,64.0],[124,163,72,64.0],[124,163,73,64.0],[124,163,74,64.0],[124,163,75,64.0],[124,163,76,64.0],[124,163,77,64.0],[124,163,78,64.0],[124,163,79,64.0],[124,164,64,64.0],[124,164,65,64.0],[124,164,66,64.0],[124,164,67,64.0],[124,164,68,64.0],[124,164,69,64.0],[124,164,70,64.0],[124,164,71,64.0],[124,164,72,64.0],[124,164,73,64.0],[124,164,74,64.0],[124,164,75,64.0],[124,164,76,64.0],[124,164,77,64.0],[124,164,78,64.0],[124,164,79,0.6191995775634055],[124,165,64,64.0],[124,165,65,64.0],[124,165,66,64.0],[124,165,67,64.0],[124,165,68,64.0],[124,165,69,64.0],[124,165,70,64.0],[124,165,71,64.0],[124,165,72,64.0],[124,165,73,64.0],[124,165,74,64.0],[124,165,75,64.0],[124,165,76,64.0],[124,165,77,64.0],[124,165,78,0.5922090676875529],[124,165,79,0.626057219195999],[124,166,64,64.0],[124,166,65,64.0],[124,166,66,64.0],[124,166,67,64.0],[124,166,68,64.0],[124,166,69,64.0],[124,166,70,64.0],[124,166,71,64.0],[124,166,72,64.0],[124,166,73,64.0],[124,166,74,64.0],[124,166,75,64.0],[124,166,76,64.0],[124,166,77,0.5628224629971731],[124,166,78,0.6005752377189569],[124,166,79,0.634297863206084],[124,167,64,64.0],[124,167,65,64.0],[124,167,66,64.0],[124,167,67,64.0],[124,167,68,64.0],[124,167,69,64.0],[124,167,70,64.0],[124,167,71,64.0],[124,167,72,64.0],[124,167,73,64.0],[124,167,74,64.0],[124,167,75,64.0],[124,167,76,0.531927048707485],[124,167,77,0.5728606665507443],[124,167,78,0.6103928405809393],[124,167,79,0.6438767425763983],[124,168,64,64.0],[124,168,65,64.0],[124,168,66,64.0],[124,168,67,64.0],[124,168,68,64.0],[124,168,69,64.0],[124,168,70,64.0],[124,168,71,64.0],[124,168,72,64.0],[124,168,73,64.0],[124,168,74,64.0],[124,168,75,0.5004863430156576],[124,168,76,0.5437563193028859],[124,168,77,0.5843814321914572],[124,168,78,0.6215880808554195],[124,168,79,0.6547312092080245],[124,169,64,64.0],[124,169,65,64.0],[124,169,66,64.0],[124,169,67,64.0],[124,169,68,64.0],[124,169,69,64.0],[124,169,70,64.0],[124,169,71,64.0],[124,169,72,64.0],[124,169,73,64.0],[124,169,74,0.4695112118071133],[124,169,75,0.5141744769580141],[124,169,76,0.5570585668646393],[124,169,77,0.5972802066316955],[124,169,78,0.6340684399972382],[124,169,79,0.6667807253160207],[124,170,64,64.0],[124,170,65,64.0],[124,170,66,64.0],[124,170,67,64.0],[124,170,68,64.0],[124,170,69,64.0],[124,170,70,64.0],[124,170,71,64.0],[124,170,72,64.0],[124,170,73,0.43944498484648303],[124,170,74,0.48506964129023333],[124,170,75,0.5292828623620093],[124,170,76,0.5716974148889772],[124,170,77,0.6114333388231856],[124,170,78,0.6477229748080376],[124,170,79,0.6799269333949866],[124,171,64,64.0],[124,171,65,64.0],[124,171,66,64.0],[124,171,67,64.0],[124,171,68,64.0],[124,171,69,64.0],[124,171,70,64.0],[124,171,71,64.0],[124,171,72,0.4100687490323559],[124,171,73,0.4568296953908588],[124,171,74,0.5019511722121643],[124,171,75,0.5456429952351038],[124,171,76,0.5875175568580111],[124,171,77,0.6266987470280557],[124,171,78,0.6624227413499869],[124,171,79,0.6940538296635632],[124,172,64,64.0],[124,172,65,64.0],[124,172,66,64.0],[124,172,67,64.0],[124,172,68,64.0],[124,172,69,64.0],[124,172,70,64.0],[124,172,71,0.3811882108757605],[124,172,72,0.4291832664206837],[124,172,73,0.4753958977072169],[124,172,74,0.5199556580396576],[124,172,75,0.5630681685741616],[124,172,76,0.6043458007258407],[124,172,77,0.6429167081926392],[124,172,78,0.678021319913876],[124,172,79,0.7090280168542146],[124,173,64,64.0],[124,173,65,64.0],[124,173,66,64.0],[124,173,67,64.0],[124,173,68,64.0],[124,173,69,64.0],[124,173,70,0.3526532564590377],[124,173,71,0.4018826006987888],[124,173,72,0.44929420946737886],[124,173,73,0.4949130673732764],[124,173,74,0.5388660678843281],[124,173,75,0.5813549240868721],[124,173,76,0.6219922562201398],[124,173,77,0.6599107694527753],[124,173,78,0.6943554408720596],[124,173,79,0.7246990361804858],[124,174,64,64.0],[124,174,65,64.0],[124,174,66,64.0],[124,174,67,64.0],[124,174,68,64.0],[124,174,69,0.32433761917429094],[124,174,70,0.3747239954945272],[124,174,71,0.4233467682655291],[124,174,72,0.47014269505976913],[124,174,73,0.5151357295103193],[124,174,74,0.5584503720278652],[124,174,75,0.6002846667598085],[124,174,76,0.6402516649590441],[124,174,77,0.6774887817704234],[124,174,78,0.7112457114160748],[124,174,79,0.7408997784815647],[124,175,64,64.0],[124,175,65,64.0],[124,175,66,64.0],[124,175,67,64.0],[124,175,68,0.29612146800634453],[124,175,69,0.3475289181478603],[124,175,70,0.39729911044412125],[124,175,71,0.4452962674862619],[124,175,72,0.4914574562965402],[124,175,73,0.5358058015967772],[124,175,74,0.5784636095961131],[124,175,75,0.6196254422728178],[124,175,76,0.6589048733830354],[124,175,77,0.6954440557013062],[124,175,78,0.7284974431786486],[124,175,79,0.7574469745438666],[124,176,64,64.0],[124,176,65,64.0],[124,176,66,64.0],[124,176,67,0.3353697952957677],[124,176,68,0.3216818991574627],[124,176,69,0.3709242922630919],[124,176,70,0.42007218225690734],[124,176,71,0.46743748095580606],[124,176,72,0.5129576633666623],[124,176,73,0.5566551369416761],[124,176,74,0.5986501383825704],[124,176,75,0.639133877260286],[124,176,76,0.6777204485023622],[124,176,77,0.7135566392940984],[124,176,78,0.7459015807406039],[124,176,79,0.7741417646001438],[124,177,64,64.0],[124,177,65,64.0],[124,177,66,0.3829385790677736],[124,177,67,0.36635623588724],[124,177,68,0.3497599897219224],[124,177,69,0.3943129364584683],[124,177,70,0.4428398467321267],[124,177,71,0.48957412521768495],[124,177,72,0.5344536743372199],[124,177,73,0.5775002338745391],[124,177,74,0.6188320545046362],[124,177,75,0.6586371032747127],[124,177,76,0.6965299444010202],[124,177,77,0.7316618118546494],[124,177,78,0.7632963549336966],[124,177,79,0.7908244915189351],[124,178,64,64.0],[124,178,65,0.4322763698648818],[124,178,66,0.4130025631400921],[124,178,67,0.3936885417997303],[124,178,68,0.37426294880279765],[124,178,69,0.4180054058415802],[124,178,70,0.4658972109033235],[124,178,71,0.5119838793790481],[124,178,72,0.5562038281603523],[124,178,73,0.598578281490705],[124,178,74,0.63922372586857],[124,178,75,0.6783251677882443],[124,178,76,0.7154977420599237],[124,178,77,0.7498970699328167],[124,178,78,0.780791300489753],[124,178,79,0.8075758039047889],[124,179,64,0.4832115495937203],[124,179,65,0.46157794773609073],[124,179,66,0.439774124887684],[124,179,67,0.41781721365351326],[124,179,68,0.39565969449377975],[124,179,69,0.4423544658029241],[124,179,70,0.4895793712566242],[124,179,71,0.5349821304347061],[124,179,72,0.5785018550380342],[124,179,73,0.6201595342859482],[124,179,74,0.6600702762440785],[124,179,75,0.6984166057563145],[124,179,76,0.7348145091414466],[124,179,77,0.7684240908336285],[124,179,78,0.7985181473742065],[124,179,79,0.8244967038918286],[124,180,64,0.5117569887494277],[124,180,65,0.4878167834398315],[124,180,66,0.4635815134629283],[124,180,67,0.4390895447412263],[124,180,68,0.4193451486311014],[124,180,69,0.4675756034153684],[124,180,70,0.5140897117074219],[124,180,71,0.558758617937398],[124,180,72,0.6015223777341031],[124,180,73,0.6424021234871449],[124,180,74,0.6815120979408228],[124,180,75,0.719032978376898],[124,180,76,0.7545820199622388],[124,180,77,0.7873240172736053],[124,180,78,0.8165366802802891],[124,180,79,0.8416250174762697],[124,181,64,0.5366305531103446],[124,181,65,0.5104892602290533],[124,181,66,0.4839401805067077],[124,181,67,0.4570413173908532],[124,181,68,0.44626340059074565],[124,181,69,0.4937638791969944],[124,181,70,0.5395161244512836],[124,181,71,0.5833929764937897],[124,181,72,0.6253357307300358],[124,181,73,0.6653661107174362],[124,181,74,0.7035981009661211],[124,181,75,0.7402112821118654],[124,181,76,0.774824692959818],[124,181,77,0.8066080969390061],[124,181,78,0.8348444593297223],[124,181,79,0.8589441810742338],[124,182,64,0.5572815602953904],[124,182,65,0.5290596536507394],[124,182,66,0.50033084803378],[124,182,67,0.4711710636882804],[124,182,68,0.47418552073904296],[124,182,69,0.5209100940877874],[124,182,70,0.5658465680020031],[124,182,71,0.6088696396273601],[124,182,72,0.6499221669716277],[124,182,73,0.6890269573287278],[124,182,74,0.726298407559372],[124,182,75,0.7619158341825173],[124,182,76,0.7955006368544422],[124,182,77,0.826227863812283],[124,182,78,0.8533861161921624],[124,182,79,0.8763916374520863],[124,183,64,0.5733462582881808],[124,183,65,0.5431764368144147],[124,183,66,0.5124152370735792],[124,183,67,0.48115469815962825],[124,183,68,0.5030122477279838],[124,183,69,0.5489162032645166],[124,183,70,0.5929838969665348],[124,183,71,0.6350920426912134],[124,183,72,0.6751853932120223],[124,183,73,0.7132883538973817],[124,183,74,0.7495164402344184],[124,183,75,0.7840495864261361],[124,183,76,0.8165121612430334],[124,183,77,0.8460848209208662],[124,183,78,0.872062189234821],[124,183,79,0.8938668086101039],[124,184,64,0.5846523812798391],[124,184,65,0.5526766700017987],[124,184,66,0.5200402638112879],[124,184,67,0.4868494970111512],[124,184,68,0.5325672866000277],[124,184,69,0.5776099767934093],[124,184,70,0.6207599635564317],[124,184,71,0.6618961248304482],[124,184,72,0.7009654339507323],[124,184,73,0.7379944098827541],[124,184,74,0.7731004033295102],[124,184,75,0.8064648675132282],[124,184,76,0.8377157516248316],[124,184,77,0.8660396245079833],[124,184,78,0.8907374977019672],[124,184,79,0.9112386456192018],[124,185,64,0.5912242520298284],[124,185,65,0.5575909568766301],[124,185,66,0.5232428219828497],[124,185,67,0.5166830948549137],[124,185,68,0.5626117110952586],[124,185,69,0.606758907121344],[124,185,70,0.6489489908364899],[124,185,71,0.6890631299947689],[124,185,72,0.7270508239693225],[124,185,73,0.762941203449233],[124,185,74,0.7968541580655111],[124,185,75,0.8289735535260767],[124,185,76,0.8589315088593875],[124,185,77,0.8859207696260886],[124,185,78,0.9092490549248725],[124,185,79,0.9283527554112541],[124,186,64,0.5932884307439015],[124,186,65,0.5581489672939293],[124,186,66,0.5222551515233307],[124,186,67,0.5477767462098506],[124,186,68,0.592857590458919],[124,186,69,0.6360833634052374],[124,186,70,0.6772802177102842],[124,186,71,0.7163317070010332],[124,186,72,0.7531901294634504],[124,186,73,0.7878876914514772],[124,186,74,0.8205474911120448],[124,186,75,0.8513566668983124],[124,186,76,0.8799520530566061],[124,186,77,0.9055327771526318],[124,186,78,0.9274135205619306],[124,186,79,0.9450381045227461],[124,187,64,0.591279910469696],[124,187,65,0.554785526709064],[124,187,66,0.53281761379064],[124,187,67,0.5787574566404027],[124,187,68,0.6229808407488622],[124,187,69,0.6652689926791776],[124,187,70,0.7054498156421549],[124,187,71,0.7434093086453066],[124,187,72,0.7791027977708544],[124,187,73,0.812565979582462],[124,187,74,0.8439257766612102],[124,187,75,0.8733734037151477],[124,187,76,0.9005508918984986],[124,187,77,0.9246638822278351],[124,187,78,0.9450341918686429],[124,187,79,0.9611132997914763],[124,188,64,0.5858249588696355],[124,188,65,0.5481238423471346],[124,188,66,0.5640985749675651],[124,188,67,0.6092673460679884],[124,188,68,0.6526333006437702],[124,188,69,0.6939783678601288],[124,188,70,0.7331320771164599],[124,188,71,0.769982889865215],[124,188,72,0.804489335696053],[124,188,73,0.8366909526850679],[124,188,74,0.8667190320095763],[124,188,75,0.8947695893749548],[124,188,76,0.9204902533933011],[124,188,77,0.9430932241151103],[124,188,78,0.9619075339980709],[124,188,79,0.9763924460068674],[124,189,64,0.5770233882499962],[124,189,65,0.5484730290629531],[124,189,66,0.5945233905842573],[124,189,67,0.6389353238046442],[124,189,68,0.6814540317517156],[124,189,69,0.7218618825918013],[124,189,70,0.759989875833682],[124,189,71,0.7957289049521981],[124,189,72,0.8290408164313715],[124,189,73,0.8599692652268425],[124,189,74,0.8886503666480932],[124,189,75,0.9152855626118368],[124,189,76,0.9395283830616201],[124,189,77,0.9605975374837865],[124,189,78,0.977829249331435],[124,189,79,0.9906905805135877],[124,190,64,0.5643071690415962],[124,190,65,0.5783009517600406],[124,190,66,0.6237097401940267],[124,190,67,0.6673879693674118],[124,190,68,0.7090798434186513],[124,190,69,0.7485678929262762],[124,190,70,0.7856843986430038],[124,190,71,0.8203226038132875],[124,190,72,0.8524477150739304],[124,190,73,0.8821076919375852],[124,190,74,0.909443824859587],[124,190,75,0.9346634878788823],[124,190,76,0.9574263055543095],[124,190,77,0.9769573451138763],[124,190,78,0.9925998858386129],[124,190,79,1.0038286847682518],[124,191,64,0.5601451786608417],[124,191,65,0.6064836015091019],[124,191,66,0.6512834285965674],[124,191,67,0.6942596181262211],[124,191,68,0.7351550420376686],[124,191,69,0.7737521058442026],[124,191,70,0.8098841492121415],[124,191,71,0.8434466272831755],[124,191,72,0.8744080727393404],[124,191,73,0.902820838610468],[124,191,74,0.9288316218245258],[124,191,75,0.9526540960927499],[124,191,76,0.9739540507026977],[124,191,77,0.991962652023462],[124,191,78,1.0060299844690777],[124,191,79,1.0156382728497049],[124,192,64,0.5868000723813467],[124,192,65,0.632658139840621],[124,192,66,0.6768879711069031],[124,192,67,0.7192016517848318],[124,192,68,0.759340404858587],[124,192,69,0.7970862146131492],[124,192,70,0.8322732234340295],[124,192,71,0.86479890148618],[124,192,72,0.8946349892717178],[124,192,73,0.9218382130663224],[124,192,74,0.9465607732346971],[124,192,75,0.9690228537392432],[124,192,76,0.9888963440008386],[124,192,77,1.0054181410183884],[124,192,78,1.017944765572986],[124,192,79,1.0259655569226198],[124,193,64,0.611069608553579],[124,193,65,0.6564892192982335],[124,193,66,0.7001933667305958],[124,193,67,0.7418909936944335],[124,193,68,0.781321378297491],[124,193,69,0.8182657809837295],[124,193,70,0.8525588565699862],[124,193,71,0.8840998312477478],[124,193,72,0.912863444549677],[124,193,73,0.9389106562807668],[124,193,74,0.9623991184144851],[124,193,75,0.9835555603395871],[124,193,76,1.0020577615195139],[124,193,77,1.0171478696640162],[124,193,78,1.028188354352183],[124,193,79,1.0346751896541933],[124,194,64,0.6326516156856345],[124,194,65,0.6776771892312072],[124,194,66,0.7209040592460664],[124,194,67,0.7620378090007371],[124,194,68,0.8008155007470295],[124,194,69,0.8370173642242946],[124,194,70,0.8704782421301358],[124,194,71,0.9010987925562466],[124,194,72,0.9288564483890275],[124,194,73,0.9538161336748646],[124,194,74,0.9761407369504159],[124,194,75,0.9960633742780257],[124,194,76,1.0132673492525757],[124,194,77,1.0269994686795807],[124,194,78,1.0366275453416367],[124,194,79,1.0416535835844103],[124,195,64,0.6512885115978368],[124,195,65,0.6959654753366433],[124,195,66,0.7387660861935382],[124,195,67,0.7793924096240792],[124,195,68,0.8175790498870019],[124,195,69,0.8531048969937354],[124,195,70,0.8858046224906371],[124,195,71,0.915579924074609],[124,195,72,0.9424105190417437],[124,195,73,0.9663648865689063],[124,195,74,0.9876107588285672],[124,195,75,1.006387266990372],[124,195,76,1.0223827068952764],[124,195,77,1.0348478417548297],[124,195,78,1.0431551059209874],[124,195,79,1.0468118074495953],[124,196,64,0.6667740052851776],[124,196,65,0.711147073145624],[124,196,66,0.75357335383659],[124,196,67,0.7937513002342587],[124,196,68,0.8314128489821535],[124,196,69,0.8663352410928346],[124,196,70,0.8983525830613895],[124,196,71,0.9273671484913611],[124,196,72,0.9533604202327673],[124,196,73,0.9764038730321296],[124,196,74,0.9966694966948091],[124,196,75,1.0144018335474894],[124,196,76,1.0292934635976803],[124,196,77,1.0405982940674732],[124,196,78,1.0476925462130249],[124,196,79,1.0500879873319902],[124,197,64,0.6788678931925246],[124,197,65,0.7229755727494009],[124,197,66,0.7650752081867476],[124,197,67,0.8048616306119725],[124,197,68,0.8420639440076155],[124,197,69,0.8764574310157571],[124,197,70,0.9078751905932829],[124,197,71,0.936219507538633],[124,197,72,0.9614729538897013],[124,197,73,0.983709222192805],[124,197,74,1.0031036906430117],[124,197,75,1.0199053732309509],[124,197,76,1.0338103254998268],[124,197,77,1.0440748949055905],[124,197,78,1.0500783307059736],[124,197,79,1.0513360528208275],[124,198,64,0.687139116226458],[124,198,65,0.7310027021637217],[124,198,66,0.7728089480844871],[124,198,67,0.8122491899544656],[124,198,68,0.8490496052788428],[124,198,69,0.8829832079473063],[124,198,70,0.9138815656870374],[124,198,71,0.941646240124286],[124,198,72,0.9662599494541996],[124,198,73,0.987797453718835],[124,198,74,1.0064361626936205],[124,198,75,1.0224280580930574],[124,198,76,1.0354720034152343],[124,198,77,1.0448267975124588],[124,198,78,1.0498745547312416],[124,198,79,1.0501340045826677],[124,199,64,0.6912248435787476],[124,199,65,0.7348488821571384],[124,199,66,0.7763807941563802],[124,199,67,0.8155086792989045],[124,199,68,0.8519557671201735],[124,199,69,0.8854924972409879],[124,199,70,0.9159483120760153],[124,199,71,0.9432231619791469],[124,199,72,0.967298722825353],[124,199,73,0.988249326028981],[124,199,74,1.0062526009987425],[124,199,75,1.0215614657263514],[124,199,76,1.033877082339411],[124,199,77,1.0424614261174239],[124,199,78,1.0466999101947665],[124,199,79,1.0461146970149517],[124,200,64,0.6908813837030071],[124,200,65,0.7342562697896506],[124,200,66,0.7755208570929474],[124,200,67,0.8143603856604263],[124,200,68,0.8504951834577779],[124,200,69,0.8836928218671591],[124,200,70,0.9137799723055171],[124,200,71,0.9406539639635496],[124,200,72,0.9642940426649617],[124,200,73,0.9847723308459746],[124,200,74,1.0022644886553251],[124,200,75,1.0170218996476605],[124,200,76,1.0287476438365157],[124,200,77,1.0367081876924926],[124,200,78,1.040293169122949],[124,200,79,1.0390286908907829],[124,201,64,0.6859779243255117],[124,201,65,0.7290822631104493],[124,201,66,0.7700764176909224],[124,201,67,0.8086432483209959],[124,201,68,0.8445002911619599],[124,201,69,0.8774119731237853],[124,201,70,0.9072015151787173],[124,201,71,0.9337625241475966],[124,201,72,0.9570702729585981],[124,201,73,0.9771926693783193],[124,201,74,0.9943009132154719],[124,201,75,1.00864202811327],[124,201,76,1.0199207342830587],[124,201,77,1.0274097800941944],[124,201,78,1.0305043512950784],[124,201,79,1.0287353078100905],[124,202,64,0.676489793572551],[124,202,65,0.7192925424450283],[124,202,66,0.7600047611137575],[124,202,67,0.7983074991474187],[124,202,68,0.8339156694041495],[124,202,69,0.8665903014844403],[124,202,70,0.8961504695346941],[124,202,71,0.9224848944020423],[124,202,72,0.945563220140095],[124,202,73,0.9654469648655761],[124,202,74,0.9823001459660762],[124,202,75,0.996362327551694],[124,202,76,1.0073396736672],[124,202,77,1.0145133772932793],[124,202,78,1.0172858056139917],[124,202,79,1.0151936347073591],[124,203,64,0.6624912422145351],[124,203,65,0.7049536482718676],[124,203,66,0.74536556537057],[124,203,67,0.7834068769386882],[124,203,68,0.8187900950287709],[124,203,69,0.8512726275837144],[124,203,70,0.8806687043587184],[124,203,71,0.9068609614999531],[124,203,72,0.9298116847796072],[124,203,73,0.9495737114872709],[124,203,74,0.9663009909778933],[124,203,75,0.9802223306141671],[124,203,76,0.9910452049437498],[124,203,77,0.9980616916923344],[124,203,78,1.000683205215033],[124,203,79,0.9984534784159874],[124,204,64,0.644147747026653],[124,204,65,0.6862250956884939],[124,204,66,0.7263128440133431],[124,204,67,0.7640904158024981],[124,204,68,0.7992681939398124],[124,204,69,0.8315997733398808],[124,204,70,0.8608938552246433],[124,204,71,0.8870257827289971],[124,204,72,0.9099487178350982],[124,204,73,0.9297044596352939],[124,204,74,0.9464339039239353],[124,204,75,0.9603516788427396],[124,204,76,0.9711664839447756],[124,204,77,0.978183913531239],[124,204,78,0.9808264563132514],[124,204,79,0.9786462702892147],[124,205,64,0.6217078352661887],[124,205,65,0.6633510254670285],[124,205,66,0.7030864430524827],[124,205,67,0.7405938075610148],[124,205,68,0.7755816885021936],[124,205,69,0.8077997132149006],[124,205,70,0.8370503970694836],[124,205,71,0.863200596014444],[124,205,72,0.8861925814673415],[124,205,73,0.9060547375498557],[124,205,74,0.9229118806672512],[124,205,75,0.9369609799560402],[124,205,76,0.9479119098458672],[124,205,77,0.955086527380503],[124,205,78,0.9579205207888732],[124,205,79,0.9559759208776586],[124,206,64,0.5954944302664823],[124,206,65,0.6366513916991982],[124,206,66,0.6760030920907125],[124,206,67,0.7132303381858898],[124,206,68,0.7480402409579129],[124,206,69,0.7801783456117507],[124,206,70,0.8094403633001674],[124,206,71,0.8356835045528603],[124,206,72,0.8588374144184145],[124,206,73,0.8789147093190021],[124,206,74,0.8960211156180842],[124,206,75,0.9103324697527024],[124,206,76,0.9215597961880528],[124,206,77,0.9290440057224849],[124,206,78,0.9322361525110471],[124,206,79,0.9307096246634505],[124,207,64,0.5658957181474118],[124,207,65,0.6065126860306962],[124,207,66,0.645447009675193],[124,207,67,0.682381398262405],[124,207,68,0.7170218928568678],[124,207,69,0.7491098844089765],[124,207,70,0.7784337112323609],[124,207,71,0.8048398359564073],[124,207,72,0.8282436019535946],[124,207,73,0.8486395692415833],[124,207,74,0.8661114298603211],[124,207,75,0.8808104786323615],[124,207,76,0.8924488824552903],[124,207,77,0.9003893796204139],[124,207,78,0.9041005473997841],[124,207,79,0.9031686148509059],[124,208,64,0.5333555356427071],[124,208,65,0.5733781984851994],[124,208,66,0.6118600628681637],[124,208,67,0.6484865674830419],[124,208,68,0.6829631005026329],[124,208,69,0.715026870632737],[124,208,70,0.7444583338616328],[124,208,71,0.7710921759079916],[124,208,72,0.7948278503669032],[124,208,73,0.8156396725539252],[124,208,74,0.8335864690474571],[124,208,75,0.8487917027344478],[124,208,76,0.8609686862077358],[124,208,77,0.8695046864754119],[124,208,78,0.8738879072262903],[124,208,79,0.8737188682139079],[124,209,64,0.4983632790437323],[124,209,65,0.537737814877676],[124,209,66,0.5757314810357568],[124,209,67,0.6120332731701257],[124,209,68,0.646348366412854],[124,209,69,0.678409804266023],[124,209,70,0.7079897179666379],[124,209,71,0.7349100763269697],[124,209,72,0.7590529660500072],[124,209,73,0.7803704025199144],[124,209,74,0.798893671067809],[124,209,75,0.8147152796945132],[124,209,76,0.8275496957705453],[124,209,77,0.836811294871277],[124,209,78,0.8420099171514548],[124,209,79,0.8427617599997853],[124,210,64,0.4614433342598234],[124,210,65,0.5001173508170765],[124,210,66,0.5375871238550619],[124,210,67,0.5735460228276328],[124,210,68,0.6076994667943469],[124,210,69,0.6397763961951218],[124,210,70,0.6695402485444043],[124,210,71,0.6967994380454733],[124,210,72,0.7214173391245446],[124,210,73,0.743321773884566],[124,210,74,0.7625140034790404],[124,210,75,0.7790526690181585],[124,210,76,0.7926534034782726],[124,210,77,0.8027601065071006],[124,210,78,0.8089061370025681],[124,210,79,0.810724668889754],[124,211,64,0.42314402799557416],[124,211,65,0.4610674222987958],[124,211,66,0.4979783035398339],[124,211,67,0.5335752107225371],[124,211,68,0.5675642750332677],[124,211,69,0.5996704402936889],[124,211,70,0.6296481595780645],[124,211,71,0.6572915679957023],[124,211,72,0.6824441316382033],[124,211,73,0.7050077726913944],[124,211,74,0.7249514707123023],[124,211,75,0.7422973370728418],[124,211,76,0.7567621794751326],[124,211,77,0.7678216352179579],[124,211,78,0.7750343062884945],[124,211,79,0.7780515320161335],[124,212,64,0.3840261000444397],[124,212,65,0.4211518528862764],[124,212,66,0.45747016128421586],[124,212,67,0.49268549849507715],[124,212,68,0.5265051811997438],[124,212,69,0.5586503056438391],[124,212,70,0.5888661311364619],[124,212,71,0.6169319109076175],[124,212,72,0.6426701703240095],[124,212,73,0.6659554324630528],[124,212,74,0.6867223910454807],[124,212,75,0.7049542466970915],[124,212,76,0.720368986070667],[124,212,77,0.7324759630832438],[124,212,78,0.7408605629528922],[124,212,79,0.7451933500359517],[124,213,64,0.3446506966989615],[124,213,65,0.38093561748206295],[124,213,66,0.41662959792479126],[124,213,67,0.4514437697982664],[124,213,68,0.48508710756729334],[124,213,69,0.5172770488945687],[124,213,70,0.5477495328059382],[124,213,71,0.576268455517344],[124,213,72,0.6026345439231316],[124,213,73,0.6266936467455482],[124,213,74,0.6483444433458498],[124,213,75,0.6675291514274055],[124,213,76,0.6839669326511004],[124,213,77,0.6972025736229266],[124,213,78,0.706849575865749],[124,213,79,0.7125986422611988],[124,214,64,0.3055668852779666],[124,214,65,0.34097232268864763],[124,214,66,0.3760127588212884],[124,214,67,0.41040665896694584],[124,214,68,0.44386512014731305],[124,214,69,0.47610214675778123],[124,214,70,0.506844313454563],[124,214,71,0.5358398152865281],[124,214,72,0.5628669050714138],[124,214,73,0.5877417180162308],[124,214,74,0.6103254835823055],[124,214,75,0.6305176943430013],[124,214,76,0.6480386711465147],[124,214,77,0.6624700620818316],[124,214,78,0.6734545910533221],[124,214,79,0.680703851845805],[124,215,64,0.30479504336569047],[124,215,65,0.3126139142701806],[124,215,66,0.33615207295527877],[124,215,67,0.3701076537157444],[124,215,68,0.40337163623802164],[124,215,69,0.43565484864132475],[124,215,70,0.46667453732823355],[124,215,71,0.49616298363209466],[124,215,72,0.5238754767491325],[124,215,73,0.5495976429550693],[124,215,74,0.5731521311067302],[124,215,75,0.5943943115279922],[124,215,76,0.6130456320534653],[124,215,77,0.6287257228016084],[124,215,78,0.6411073916661696],[124,215,79,0.6499237010290477],[124,216,64,0.31766636271393117],[124,216,65,0.3241042626624387],[124,216,66,0.32954525067400475],[124,216,67,0.3341076078636821],[124,216,68,0.3641032279881801],[124,216,69,0.39642914941935264],[124,216,70,0.42772956647894717],[124,216,71,0.45772076366671177],[124,216,72,0.4861347632942558],[124,216,73,0.5127261340794907],[124,216,74,0.5372781247047502],[124,216,75,0.5596009401512395],[124,216,76,0.579417101013266],[124,216,77,0.5963850136806004],[124,216,78,0.61020817168548],[124,216,79,0.6206414964356007],[124,217,64,0.32488375098344335],[124,217,65,0.33013134810373396],[124,217,66,0.33436603032848766],[124,217,67,0.3377151515436104],[124,217,68,0.34033631493836186],[124,217,69,0.35887038234028174],[124,217,70,0.3904508895255052],[124,217,71,0.4209488724501841],[124,217,72,0.4500729659794134],[124,217,73,0.4775463777429674],[124,217,74,0.5031124484160434],[124,217,75,0.5265355311640215],[124,217,76,0.5475391359460628],[124,217,77,0.5658208977217022],[124,217,78,0.5811153233677615],[124,217,79,0.5931993844322463],[124,218,64,0.3264463621295436],[124,218,65,0.33070703169706206],[124,218,66,0.3339489985251146],[124,218,67,0.3363071048233811],[124,218,68,0.3379440491576789],[124,218,69,0.3390522188088884],[124,218,70,0.355218596746115],[124,218,71,0.38622271975129174],[124,218,72,0.416059103152129],[124,218,73,0.44441952849694033],[124,218,74,0.47100722712383225],[124,218,75,0.4955403666151857],[124,218,76,0.5177433247404036],[124,218,77,0.5373530616679688],[124,218,78,0.554135138427695],[124,218,79,0.5678885565411054],[124,219,64,0.3224330752857034],[124,219,65,0.32591906654159],[124,219,66,0.3283905920908232],[124,219,67,0.32998834039754676],[124,219,68,0.3308784752301218],[124,219,69,0.331253960878338],[124,219,70,0.33133609997754954],[124,219,71,0.35384386132029705],[124,219,72,0.38438983493852064],[124,219,73,0.41363593981626373],[124,219,74,0.4412453919137223],[124,219,75,0.4668901815839309],[124,219,76,0.4902953834984347],[124,219,77,0.5112370117260734],[124,219,78,0.5295114229592303],[124,219,79,0.544939404909444],[124,220,64,0.31300396824406573],[124,220,65,0.31593206531324086],[124,220,66,0.31785954423035223],[124,220,67,0.31893127366145096],[124,220,68,0.31931524808064604],[124,220,69,0.31920345011885254],[124,220,70,0.318812894899752],[124,220,71,0.3240261266724146],[124,220,72,0.3552759925107447],[124,220,73,0.38540213118843514],[124,220,74,0.4140281152021346],[124,220,75,0.44078009073044455],[124,220,76,0.46538359533692036],[124,220,77,0.48765304637779633],[124,220,78,0.5074150260950834],[124,220,79,0.5245116278361884],[124,221,64,0.2984012360643101],[124,221,65,0.3009878974684208],[124,221,66,0.30259673985451824],[124,221,67,0.3033751595968427],[124,221,68,0.3034913816151451],[124,221,69,0.30313490540282845],[124,221,70,0.30251710502390844],[124,221,71,0.30187198307877466],[124,221,72,0.32882881191766916],[124,221,73,0.3598274915661233],[124,221,74,0.38946201563387983],[124,221,75,0.4173133194639857],[124,221,76,0.4431070897437258],[124,221,77,0.4666951062792265],[124,221,78,0.4879332824043598],[124,221,79,0.5066842853549197],[124,222,64,0.278949554811119],[124,222,65,0.28140551607113223],[124,222,66,0.28291448444601014],[124,222,67,0.28362478664220053],[124,222,68,0.2837033545817074],[124,222,69,0.2833358031191936],[124,222,70,0.2827266363691485],[124,222,71,0.2820995826431128],[124,222,72,0.3050458724790462],[124,222,73,0.33691071918325555],[124,222,74,0.36754613274911896],[124,222,75,0.39648873972863563],[124,222,76,0.42346396248995666],[124,222,77,0.4483595012478452],[124,222,78,0.4710593680284558],[124,222,79,0.4914458048734797],[124,223,64,0.2550558904196991],[124,223,65,0.25758021424297023],[124,223,66,0.2591951864622401],[124,223,67,0.26004856754734385],[124,223,68,0.2603045965156043],[124,223,69,0.2601437489096731],[124,223,70,0.25976260069982665],[124,223,71,0.2593737981107005],[124,223,72,0.28379673974339825],[124,223,73,0.3165259977348525],[124,223,74,0.34815867141987883],[124,223,75,0.37818821040686657],[124,223,76,0.40633923609789413],[124,223,77,0.43253351433761345],[124,223,78,0.4566815705553302],[124,223,79,0.47868393687025435],[124,224,64,0.2272087526901852],[124,224,65,0.22998231123676377],[124,224,66,0.23188945327594113],[124,224,67,0.23307602721295728],[124,224,68,0.23370235376856466],[124,224,69,0.23394271236420205],[124,224,70,0.2339849133841618],[124,224,71,0.23402995631474965],[124,224,72,0.2648083130091471],[124,224,73,0.29840890892018296],[124,224,74,0.3310435160557317],[124,224,75,0.3621637223405742],[124,224,76,0.3914926608644028],[124,224,77,0.41898388300177736],[124,224,78,0.4445724726319121],[124,224,79,0.4681756606469474],[124,225,64,0.1959768944097809],[124,225,65,0.199155268132782],[124,225,66,0.2015136006525092],[124,225,67,0.20319468751409464],[124,225,68,0.20435393562148102],[124,225,69,0.20515862467469656],[124,225,70,0.20578723698773993],[124,225,71,0.2129641228979225],[124,225,72,0.24772872053515488],[124,225,73,0.28221699873356565],[124,225,74,0.3158676438832647],[124,225,75,0.34809186333157005],[124,225,76,0.3786104660316981],[124,225,77,0.4074061004116815],[124,225,78,0.43443609276684514],[124,225,79,0.4596324747484398],[124,226,64,0.162007455604118],[124,226,65,0.1657132331589309],[124,226,66,0.16864657576544906],[124,226,67,0.17094634910895878],[124,226,68,0.17276234048176653],[124,226,69,0.17425433924834555],[124,226,70,0.17559127060295224],[124,226,71,0.1969728416621685],[124,226,72,0.23247449707283258],[124,226,73,0.2678597983409071],[124,226,74,0.3025344004483768],[124,226,75,0.3358709141621724],[124,226,76,0.36758699207481665],[124,226,77,0.397691442045599],[124,226,78,0.4261612935743597],[124,226,79,0.4529412888108585],[124,227,64,0.1259311924160993],[124,227,65,0.1302449442937897],[124,227,66,0.1338329684152215],[124,227,67,0.1368296441175083],[124,227,68,0.13937877479844774],[124,227,69,0.14163252751419447],[124,227,70,0.14716830300602904],[124,227,71,0.18280136324672733],[124,227,72,0.2190386875469772],[124,227,73,0.2553170958173273],[124,227,74,0.29101112816447416],[124,227,75,0.3254569204099972],[124,227,76,0.3583682052994021],[124,227,77,0.38977685193357753],[124,227,78,0.4196769120904924],[124,227,79,0.4480236290177716],[124,228,64,0.0879600224144586],[124,228,65,0.09291219860006832],[124,228,66,0.09718445778469474],[124,228,67,0.10090645784471557],[124,228,68,0.10421596479421678],[124,228,69,0.10725768708387154],[124,228,70,0.13424872686917927],[124,228,71,0.17042480259142817],[124,228,72,0.2073824664788109],[124,228,73,0.2445363863031312],[124,228,74,0.281232199015668],[124,228,75,0.3167720019511463],[124,228,76,0.3508649281908977],[124,228,77,0.3835626953442043],[124,228,78,0.41487359894697284],[124,228,79,0.4447610962826357],[124,229,64,0.04820041014658617],[124,229,65,0.05377473361304455],[124,229,66,0.05871478423280002],[124,229,67,0.0631455464564878],[124,229,68,0.06719895613758607],[124,229,69,0.08788649226127934],[124,229,70,0.12309479507364655],[124,229,71,0.15978888688745818],[124,229,72,0.19743763745622628],[124,229,73,0.2354356163646234],[124,229,74,0.2731020368200824],[124,229,75,0.3097076814224267],[124,229,76,0.3449565003005848],[124,229,77,0.37891677847024663],[124,229,78,0.41160822267730934],[124,229,79,0.44300017970834227],[124,230,64,0.00680361623655007],[124,230,65,0.012942878705728647],[124,230,66,0.01849404653325286],[124,230,67,0.02357772687544661],[124,230,68,0.04475568012021511],[124,230,69,0.07813193573056826],[124,230,70,0.11363896240756727],[124,230,71,0.15081265101633395],[124,230,72,0.18910951436948645],[124,230,73,0.22790628662091678],[124,230,74,0.26649847311790403],[124,230,75,0.30412852073640895],[124,230,76,0.34049472072963705],[124,230,77,0.3756786223005961],[124,230,78,0.40970849980213137],[124,230,79,0.44255726642225574],[124,231,64,-0.036043390639551344],[124,231,65,-0.029432074982256758],[124,231,66,-0.02193759124585297],[124,231,67,0.005822142459135218],[124,231,68,0.03657731343263233],[124,231,69,0.07002826286839028],[124,231,70,0.10578958337779482],[124,231,71,0.14339149195781425],[124,231,72,0.18228014167089424],[124,231,73,0.22181687203628436],[124,231,74,0.2612763981337639],[124,231,75,0.2998760290378826],[124,231,76,0.3373080374091013],[124,231,77,0.37366395753945547],[124,231,78,0.4089778190567768],[124,231,79,0.4432238174783959],[124,232,64,-0.07275646807335678],[124,232,65,-0.052149719925628044],[124,232,66,-0.028066366967869148],[124,232,67,-6.162114173827449E-4],[124,232,68,0.029996210191799738],[124,232,69,0.06347483541390198],[124,232,70,0.09943421492226999],[124,232,71,0.13740058216695245],[124,232,72,0.1768118536586108],[124,232,73,0.21701655987822888],[124,232,74,0.2572717068136089],[124,232,75,0.29677284210185084],[124,232,76,0.33520598317593353],[124,232,77,0.3726694405728792],[124,232,78,0.4092002597612133],[124,232,79,0.44477170982683706],[124,233,64,-0.043978910095045676],[124,233,65,-0.051219337459662395],[124,233,66,-0.032625411532140845],[124,233,67,-0.005518945326264749],[124,233,68,0.02490444319655502],[124,233,69,0.05835323751330443],[124,233,70,0.09444329646443854],[124,233,71,0.13269864191987038],[124,233,72,0.17255117278423826],[124,233,73,0.2133393053409116],[124,233,74,0.25430553993573923],[124,233,75,0.294627173172777],[124,233,76,0.33398385864483776],[124,233,77,0.37247759048245654],[124,233,78,0.4101458043321192],[124,233,79,0.44695874435019356],[124,234,64,0.0017252850708957684],[124,234,65,-0.005539172608175921],[124,234,66,-0.012414610405306614],[124,234,67,-0.008999167616262169],[124,234,68,0.02117968875562698],[124,234,69,0.05453129266120477],[124,234,70,0.09067420730995268],[124,234,71,0.12913207062847845],[124,234,72,0.16933304698437057],[124,234,73,0.21060820483412673],[124,234,74,0.2521888202961781],[124,234,75,0.2932375352452265],[124,234,76,0.3334276618760317],[124,234,77,0.37286194710623366],[124,234,78,0.4115757449372066],[124,234,79,0.4495343199672446],[124,235,64,0.04797082570259155],[124,235,65,0.0408759158107094],[124,235,66,0.034111708616719],[124,235,67,0.027568461932901897],[124,235,68,0.021134602703320765],[124,235,69,0.05186747465195017],[124,235,70,0.0879757013858221],[124,235,71,0.12653943712429977],[124,235,72,0.166985426036269],[124,235,73,0.20864018693797],[124,235,74,0.25072708396851495],[124,235,75,0.2923977347860358],[124,235,76,0.3333192648390576],[124,235,77,0.3735924501469869],[124,235,78,0.4132482842918757],[124,235,79,0.45224527380378043],[124,236,64,0.09454652277558927],[124,236,65,0.08783208410623837],[124,236,66,0.08138588103922526],[124,236,67,0.07509708630716559],[124,236,68,0.06885390434039322],[124,236,69,0.06254492049786398],[124,236,70,0.08619271932167179],[124,236,71,0.12475632891107273],[124,236,72,0.16533417693734798],[124,236,73,0.20725102102291],[124,236,74,0.24972560663795051],[124,236,75,0.29190213689776656],[124,236,76,0.3334418366724275],[124,236,77,0.3744410393276615],[124,236,78,0.41492433059805406],[124,236,79,0.4548418874305523],[124,237,64,0.141489530928989],[124,237,65,0.1353844647454627],[124,237,66,0.12947966139615508],[124,237,67,0.12366197149135083],[124,237,68,0.11781826103703508],[124,237,69,0.11183679467967422],[124,237,70,0.10560854244749585],[124,237,71,0.12362056038624995],[124,237,72,0.16420833830858453],[124,237,73,0.20626064353535978],[124,237,74,0.24899482500963088],[124,237,75,0.2915512019235095],[124,237,76,0.3335855137391475],[124,237,77,0.37518747559400706],[124,237,78,0.41637348662522844],[124,237,79,0.45708405916831696],[124,238,64,0.18902194669049827],[124,238,65,0.18377116844061517],[124,238,66,0.17864518998233248],[124,238,67,0.17352742218558315],[124,238,68,0.16830245598640392],[124,238,69,0.16285750417067846],[124,238,70,0.15708374851278348],[124,238,71,0.15087759226913555],[124,238,72,0.16344571382208734],[124,238,73,0.20549880194898262],[124,238,74,0.2483560532914989],[124,238,75,0.2911572934932664],[124,238,76,0.33355331647834413],[124,238,77,0.37562538336462026],[124,238,78,0.41738023293387394],[124,238,79,0.45874764246016747],[124,239,64,0.23723763353467475],[124,239,65,0.23309497278889152],[124,239,66,0.22899265503967992],[124,239,67,0.22480965144714893],[124,239,68,0.22042750519647825],[124,239,69,0.21573186060352723],[124,239,70,0.21061387774227192],[124,239,71,0.20497153259406456],[124,239,72,0.19871247218145466],[124,239,73,0.20481101638135768],[124,239,74,0.2476474947513007],[124,239,75,0.2905507580115638],[124,239,76,0.3331673130526653],[124,239,77,0.3755685138280943],[124,239,78,0.41775030524100215],[124,239,79,0.4596309503109019],[124,240,64,0.28610432049030393],[124,240,65,0.28332580084545983],[124,240,66,0.2804931659304129],[124,240,67,0.2774800571915441],[124,240,68,0.27416434043840276],[124,240,69,0.27042975407793823],[124,240,70,0.26616742158283413],[124,240,71,0.2612772281939452],[124,240,72,0.25567065861102595],[124,240,73,0.24941432185071455],[124,240,74,0.24673054834792046],[124,240,75,0.28958627558645655],[124,240,76,0.33227502979160256],[124,240,77,0.37485722928739995],[124,240,78,0.4173172659279394],[124,240,79,0.4595614257935203],[124,241,64,0.3354828378895933],[124,241,65,0.33432060768084887],[124,241,66,0.3329992425172713],[124,241,67,0.3313862673712016],[124,241,68,0.329355365390703],[124,241,69,0.3267881789665245],[124,241,70,0.3235759525307504],[124,241,71,0.31962101708713253],[124,241,72,0.31483962914589547],[124,241,73,0.30929762608963324],[124,241,74,0.3032704248405089],[124,241,75,0.29697553587543385],[124,241,76,0.33075610843089365],[124,241,77,0.37336520855166444],[124,241,78,0.4159492696904923],[124,241,79,0.4584024786230071],[124,242,64,0.38514531508157657],[124,242,65,0.3858422106200247],[124,242,66,0.38626423158535417],[124,242,67,0.3862720971112866],[124,242,68,0.38573491008236027],[124,242,69,0.3845321456128054],[124,242,70,0.3825554577816119],[124,242,71,0.37971030462378386],[124,242,72,0.3759188081500954],[124,242,73,0.37124641876822084],[124,242,74,0.3659547926984853],[124,242,75,0.36024951206040995],[124,242,76,0.3542628057579934],[124,242,77,0.3710063733750767],[124,242,78,0.41355602333125424],[124,242,79,0.4560604877971637],[124,243,64,0.4347923401112236],[124,243,65,0.4375770631647533],[124,243,66,0.4399606503072553],[124,243,67,0.44179641780434264],[124,243,68,0.4429485836366174],[124,243,69,0.44329447792334037],[124,243,70,0.4427265473955712],[124,243,71,0.4411541539187701],[124,243,72,0.4385064762653044],[124,243,73,0.4348490740726204],[124,243,74,0.4304285732725176],[124,243,75,0.42543732292607106],[124,243,76,0.4199979945612252],[124,243,77,0.41417367205450506],[124,243,78,0.4100959396940822],[124,243,79,0.45249197030451455],[124,244,64,0.48406908136213866],[124,244,65,0.48915197259701537],[124,244,66,0.4936974567491524],[124,244,67,0.4975509381613391],[124,244,68,0.5005715253129668],[124,244,69,0.5026344968513546],[124,244,70,0.5036335369752339],[124,244,71,0.5034827401703785],[124,244,72,0.5021195759143687],[124,244,73,0.4996103030879619],[124,244,74,0.49618542870775584],[124,244,75,0.4920229196011716],[124,244,76,0.48723488912996044],[124,244,77,0.48187753688563684],[124,244,78,0.47596038926303064],[124,244,79,0.4694548409119739],[124,245,64,0.5325803711649667],[124,245,65,0.5401497612656919],[124,245,66,0.5470362474201663],[124,245,67,0.5530768972215311],[124,245,68,0.5581255538498181],[124,245,69,0.5620555897744252],[124,245,70,0.5647624048588268],[124,245,71,0.5661656688675074],[124,245,72,0.5662123704913217],[124,245,73,0.5649701347418864],[124,245,74,0.562652493013313],[124,245,75,0.5594220887848707],[124,245,76,0.5553796415524418],[124,245,77,0.5505737456599465],[124,245,78,0.54500993242552],[124,245,79,0.5386589955624476],[124,246,64,0.5799047513705654],[124,246,65,0.590123871555552],[124,246,66,0.5995063818639916],[124,246,67,0.6078806693200957],[124,246,68,0.6150952151067798],[124,246,69,0.6210216657651426],[124,246,70,0.6255576238275379],[124,246,71,0.6286291578842214],[124,246,72,0.6301939572367627],[124,246,73,0.63032174066046],[124,246,74,0.6292084795164777],[124,246,75,0.6270008029686658],[124,246,76,0.6237874031673573],[124,246,77,0.6196087042680418],[124,246,78,0.6144657549492896],[124,246,79,0.6083283444299314],[124,247,64,0.6256074808871003],[124,247,65,0.6386119145376232],[124,247,66,0.6506190342918109],[124,247,67,0.6614482810125043],[124,247,68,0.6709427280054594],[124,247,69,0.6789724967535968],[124,247,70,0.685437867325826],[124,247,71,0.6902720834604305],[124,247,72,0.6934446337973131],[124,247,73,0.6950281039351589],[124,247,74,0.6952006235235573],[124,247,75,0.6940923988577186],[124,247,76,0.691779692173831],[124,247,77,0.6882943735781768],[124,247,78,0.6836326546888101],[124,247,79,0.6777630039898049],[124,248,64,0.6692525051830476],[124,248,65,0.6851481623030828],[124,248,66,0.6998801722587713],[124,248,67,0.7132588399580314],[124,248,68,0.7251218287713039],[124,248,69,0.7353379445843201],[124,248,70,0.7438105901974368],[124,248,71,0.7504808900715114],[124,248,72,0.7553311184720487],[124,248,73,0.7584375318038996],[124,248,74,0.7599604601903751],[124,248,75,0.760013583994661],[124,248,76,0.7586605846785692],[124,248,77,0.7559245939472083],[124,248,78,0.7517967810760229],[124,248,79,0.7462440784202077],[124,249,64,0.7104133877541833],[124,249,65,0.7292749839785703],[124,249,66,0.7468024623817626],[124,249,67,0.7627968757599969],[124,249,68,0.7770905134739329],[124,249,69,0.7895510739650138],[124,249,70,0.8000854839343325],[124,249,71,0.8086433641839822],[124,249,72,0.8152206241429336],[124,249,73,0.8198980122430548],[124,249,74,0.822818437599304],[124,249,75,0.8240792715826942],[124,249,76,0.8237317291769272],[124,249,77,0.8217902311055272],[124,249,78,0.8182408591381446],[124,249,79,0.8130489045760353],[124,250,64,0.7486832035557895],[124,250,65,0.7705532254243233],[124,250,66,0.7909161031000521],[124,250,67,0.809563592764432],[124,250,68,0.8263226788677952],[124,250,69,0.8410601513090042],[124,250,70,0.8536868064405945],[124,250,71,0.8641612718993823],[124,250,72,0.8724937858914832],[124,250,73,0.8787704144727617],[124,250,74,0.8831173650451958],[124,250,75,0.8856162435104005],[124,250,76,0.886306184470359],[124,250,77,0.885193143418445],[124,250,78,0.8822582359227842],[124,250,79,0.8774651238019648],[124,251,64,0.7836833943992694],[124,251,65,0.8085715326141635],[124,251,66,0.8317785844776567],[124,251,67,0.8530870348159153],[124,251,68,0.8723186615317603],[124,251,69,0.8893395294699364],[124,251,70,0.9040645863096951],[124,251,71,0.9164618604846622],[124,251,72,0.9265564422998908],[124,251,73,0.9344405333736787],[124,251,74,0.9402246965283146],[124,251,75,0.9439756415763216],[124,251,76,0.9457210810182672],[124,251,77,0.9454589705220392],[124,251,78,0.9431657493283475],[124,251,79,0.9388035805824645],[124,252,64,0.8150715863141857],[124,252,65,0.842954618698524],[124,252,66,0.8689833750487952],[124,252,67,0.8929311619720746],[124,252,68,0.9146146753092809],[124,252,69,0.9338994183704474],[124,252,70,0.9507047016170052],[124,252,71,0.9650082237910496],[124,252,72,0.9768502704386625],[124,252,73,0.9863299778173236],[124,252,74,0.9935436494564622],[124,252,75,0.998544286915551],[124,252,76,1.0013491057265382],[124,252,77,1.0019487433357632],[124,252,78,1.0003154193420722],[124,252,79,0.9964100480311465],[124,253,64,0.842548368874198],[124,253,65,0.873370474748795],[124,253,66,0.9021675357045345],[124,253,67,0.9287038391746907],[124,253,68,0.9527911470469105],[124,253,69,0.9742945415224823],[124,253,70,0.9931378332250596],[124,253,71,1.0093085315588037],[124,253,72,1.0228622745380775],[124,253,73,1.0339059029072122],[124,253,74,1.0425231585534434],[124,253,75,1.04875482762542],[124,253,76,1.0526088101697977],[124,253,77,1.054069315448823],[124,253,78,1.0531049616826509],[124,253,79,1.0496757802164054],[124,254,64,0.8658630364886764],[124,254,65,0.8995365241849703],[124,254,66,0.9310182606227777],[124,254,67,0.9600637368797357],[124,254,68,0.9864799506336625],[124,254,69,1.0101316784418697],[124,254,70,1.030947292604341],[124,254,71,1.048924122610727],[124,254,72,1.0641331283464492],[124,254,73,1.0766895861338637],[124,254,74,1.0866666649770163],[124,254,75,1.0940947145934903],[124,254,76,1.0989737422506458],[124,254,77,1.101282615883617],[124,254,78,1.1009871238507805],[124,254,79,1.0980468913266972],[124,255,64,0.8848182916584416],[124,255,65,0.9212247208848623],[124,255,66,0.9552783452397144],[124,255,67,0.9867261436443027],[124,255,68,1.0153705393390322],[124,255,69,1.0410760929548606],[124,255,70,1.0637757241671575],[124,255,71,1.0834764619319233],[124,255,72,1.1002643711725737],[124,255,73,1.1142638474409978],[124,255,74,1.1255397406435879],[124,255,75,1.1341140055250607],[124,255,76,1.139980401293045],[124,255,77,1.1431137232333874],[124,255,78,1.1434778435847572],[124,255,79,1.1410325616725683],[124,256,64,0.8992739101967284],[124,256,65,0.9382655909761276],[124,256,66,0.9747505812640936],[124,256,67,1.008467690671914],[124,256,68,1.0392149764512755],[124,256,69,1.0668568473983127],[124,256,70,1.0913306821164024],[124,256,71,1.1126529616376444],[124,256,72,1.1309244576142927],[124,256,73,1.1462793132048787],[124,256,74,1.1587765477616452],[124,256,75,1.1684319971722086],[124,256,76,1.1752350165718983],[124,256,77,1.1791577611761208],[124,256,78,1.1801632297231688],[124,256,79,1.1782120705274801],[124,257,64,0.9091493684145802],[124,257,65,0.9505512183101903],[124,257,66,0.9893010787333025],[124,257,67,1.0251299883150928],[124,257,68,1.0578318642147397],[124,257,69,1.087271002712248],[124,257,70,1.1133890818078345],[124,257,71,1.1362116658278265],[124,257,72,1.1558536609717058],[124,257,73,1.1724595241253257],[124,257,74,1.1860851335724312],[124,257,75,1.1967426857628594],[124,257,76,1.2044191492772984],[124,257,77,1.209085615363199],[124,257,78,1.210705365473182],[124,257,79,1.2092406558059428],[124,258,64,0.9144254322714203],[124,258,65,0.9580371736189301],[124,258,66,0.9988615151122351],[124,258,67,1.0366221745362756],[124,258,68,1.0711091710674194],[124,258,69,1.1021867044260274],[124,258,70,1.1298005256272055],[124,258,71,1.1539847993296923],[124,258,72,1.1748678303464675],[124,258,73,1.1926048870298538],[124,258,74,1.207251560299335],[124,258,75,1.2188190556313738],[124,258,76,1.2272941179149637],[124,258,77,1.232648471684294],[124,258,78,1.2348469340859183],[124,258,79,1.2338542005804423],[124,259,64,0.9151447084899886],[124,259,65,0.9607433873531913],[124,259,66,1.0034303114338659],[124,259,67,1.0429223753258758],[124,259,68,1.0790059571774369],[124,259,69,1.1115451545367567],[124,259,70,1.1404895033807667],[124,259,71,1.1658811803268805],[124,259,72,1.1878610014255697],[124,259,73,1.2065954705892965],[124,259,74,1.222142870304331],[124,259,75,1.2345161960489517],[124,259,76,1.2437042471411206],[124,259,77,1.249681175906775],[124,259,78,1.252414666937186],[124,259,79,1.251872746435425],[124,260,64,0.9114111576365111],[124,260,65,0.958753966204106],[124,260,66,1.003072735482668],[124,260,67,1.0440780770787468],[124,260,68,1.0815529982798016],[124,260,69,1.1153614692813636],[124,260,70,1.1454564672006695],[124,260,71,1.1718874968766881],[124,260,72,1.1948068609512454],[124,260,73,1.2143926449466],[124,260,74,1.2307088864531806],[124,260,75,1.2437732462556037],[124,260,76,1.2535789400336177],[124,260,77,1.260104414691412],[124,260,78,1.263321614015348],[124,260,79,1.2632028336601235],[124,261,64,0.9033885691651596],[124,261,65,0.9522159533061982],[124,261,66,0.9979199320197255],[124,261,67,1.0402054109278065],[124,261,68,1.07885230781214],[124,261,69,1.1137244228009788],[124,261,70,1.1447777809638418],[124,261,71,1.1720684473139635],[124,261,72,1.1957590648755163],[124,261,73,1.216039565257278],[124,261,74,1.2329828476878764],[124,261,75,1.2466141686921635],[124,261,76,1.2569335737977312],[124,261,77,1.263925717982852],[124,261,78,1.2675682368148253],[124,261,79,1.26783866827874],[124,262,64,0.8912979984278525],[124,262,65,0.9413370321233651],[124,262,66,0.9881668800507022],[124,262,67,1.0314873490360332],[124,262,68,1.0710755573506348],[124,262,69,1.1067950766988743],[124,262,70,1.1386045442256099],[124,262,71,1.1665657445429285],[124,262,72,1.1908504102006348],[124,262,73,1.2116604991427788],[124,262,74,1.2290808798075556],[124,262,75,1.2431473504335266],[124,262,76,1.2538692189078369],[124,262,77,1.2612392827759957],[124,262,78,1.2652423236363155],[124,262,79,1.2658621159190167],[124,263,64,0.8754141656483588],[124,263,65,0.9263821740166799],[124,263,66,0.9740692771355886],[124,263,67,1.018170812845742],[124,263,68,1.0584613953450697],[124,263,69,1.094804295490878],[124,263,70,1.1271602906669944],[124,263,71,1.155595984215871],[124,263,72,1.1802908605044118],[124,263,73,1.2014589980557782],[124,263,74,1.2192003014569508],[124,263,75,1.2335640328222541],[124,263,76,1.2445711816841154],[124,263,77,1.2522246182575092],[124,263,78,1.2565177272930232],[124,263,79,1.2574415225185622],[124,264,64,0.8560608168614415],[124,264,65,0.9076692294947702],[124,264,66,0.9559393507409856],[124,264,67,1.0005626932859015],[124,264,68,1.041311664153762],[124,264,69,1.0780491479490126],[124,264,70,1.1107375610564147],[124,264,71,1.139447376799429],[124,264,72,1.1643644251511092],[124,264,73,1.1857149125580482],[124,264,74,1.2036167653229706],[124,264,75,1.2181355693030673],[124,264,76,1.2293063703047833],[124,264,77,1.2371440123228996],[124,264,78,1.2416519252232718],[124,264,79,1.24282936186924],[124,265,64,0.8336050468167682],[124,265,65,0.8855634631464706],[124,265,66,0.9341405966346208],[124,265,67,0.9790247829371784],[124,265,68,1.0199865153780403],[124,265,69,1.056888194338042],[124,265,70,1.0896933507254898],[124,265,71,1.118475343528162],[124,265,72,1.1434248921876162],[124,265,73,1.1647802515106505],[124,265,74,1.1826802345391978],[124,265,75,1.1972095114580714],[124,265,76,1.2084194842537168],[124,265,77,1.2163388194690685],[124,265,78,1.2209824020094608],[124,265,79,1.22235870999962],[124,266,64,0.8084505838476636],[124,266,65,0.8604710322558483],[124,266,66,0.9090814443221937],[124,266,67,0.9539676201548135],[124,266,68,0.9948984234963852],[124,266,69,1.0317356595450196],[124,266,70,1.0644434315590239],[124,266,71,1.0930969762454794],[124,266,72,1.1178904149249578],[124,266,73,1.1390738851764637],[124,266,74,1.1568097942982853],[124,266,75,1.171204523242639],[124,266,76,1.182328027203368],[124,266,77,1.1902245700622],[124,266,78,1.1949218543031739],[124,266,79,1.1964385463952687],[124,267,64,0.7810300367042807],[124,267,65,0.8328314090991845],[124,267,66,0.8812078495261515],[124,267,67,0.9258432451489493],[124,267,68,0.9665050977978736],[124,267,69,1.003054492101522],[124,267,70,1.0354555484988865],[124,267,71,1.0637843611316833],[124,267,72,1.088236952204937],[124,267,73,1.1090750922349055],[124,267,74,1.126487298672158],[124,267,75,1.140604123421929],[124,267,76,1.1515161433330001],[124,267,77,1.1592849009810708],[124,267,78,1.1639522181565924],[124,267,79,1.1655478820570888],[124,268,64,0.7517961033521727],[124,268,65,0.803108746924859],[124,268,66,0.8509948137073113],[124,268,67,0.8951368680232795],[124,268,68,0.9353012926157533],[124,268,69,0.9713483090993319],[124,268,70,1.003241490562508],[124,268,71,1.0310567663197818],[124,268,72,1.0549905623525042],[124,268,73,1.0753159507093732],[124,268,74,1.0922498526404754],[124,268,75,1.105949256208418],[124,268,76,1.1165272770825494],[124,268,77,1.1240643076360166],[124,268,78,1.1286175187603755],[124,268,79,1.1302287143977872],[124,269,64,0.7212117417352641],[124,269,65,0.7717821896151622],[124,269,66,0.8189368306283688],[124,269,67,0.8623574487710931],[124,269,68,0.901809515860245],[124,269,69,0.9371522269987105],[124,269,70,0.9683480363751549],[124,269,71,0.9954716933982729],[124,269,72,1.0187185508130883],[124,269,73,1.038372572806679],[124,269,74,1.0546811293266787],[124,269,75,1.0678296900998139],[124,269,76,1.0779556563415347],[124,269,77,1.085159717363017],[124,269,78,1.0895155425875052],[124,269,79,1.0910778089760311],[124,270,64,0.6897393025033733],[124,270,65,0.7393351250302097],[124,270,66,0.7855372599595007],[124,270,67,0.8280271892289438],[124,270,68,0.8665696358508361],[124,270,69,0.9010225783295444],[124,270,70,0.9313467742163016],[124,270,71,0.9576147928012498],[124,270,72,0.9800194714752823],[124,270,73,0.9988551836688947],[124,270,74,1.0144015224420608],[124,270,75,1.0268742449178163],[124,270,76,1.0364365990734898],[124,270,77,1.0432108841934067],[124,270,78,1.047288331943643],[124,270,79,1.0487373080688476],[124,271,64,0.6578286237052933],[124,271,65,0.7062433820348877],[124,271,66,0.7512966279269027],[124,271,67,0.7926699369887021],[124,271,68,0.8301273864487296],[124,271,69,0.8635255142859414],[124,271,70,0.8928227965805814],[124,271,71,0.9180886430862087],[124,271,72,0.9395119816791438],[124,271,73,0.9573970440377833],[124,271,74,0.9720571339379359],[124,271,75,0.9837398470477043],[124,271,76,0.9926356433758157],[124,271,77,0.9988896049990088],[124,271,78,1.002611501923686],[124,271,79,1.0038841660818736],[124,272,64,0.62590408744588],[124,272,65,0.6729623712073912],[124,272,66,0.7166998550029451],[124,272,67,0.7567985012667928],[124,272,68,0.7930217704883783],[124,272,69,0.8252244932133346],[124,272,70,0.8533622692525009],[124,272,71,0.8775003940988795],[124,272,72,0.8978225509095932],[124,272,73,0.9146422168314128],[124,272,74,0.9283075968656452],[124,272,75,0.939099412878618],[124,272,76,0.9472365009750513],[124,272,77,0.9528877570128168],[124,272,78,0.956182379774789],[124,272,79,0.9572184117978318],[124,273,64,0.5943506385082384],[124,273,65,0.6399131692303229],[124,273,66,0.6822024106387865],[124,273,67,0.7209008807313251],[124,273,68,0.7557713615086772],[124,273,69,0.7866666549885263],[124,273,70,0.8135388748952239],[124,273,71,0.8364482740252424],[124,273,72,0.8555720231749071],[124,273,73,0.8712321776328357],[124,273,74,0.8838127334441419],[124,273,75,0.8936285604441454],[124,273,76,0.900927834157028],[124,273,77,0.9059041567245742],[124,273,78,0.9087069666650628],[124,273,79,0.9094502374623532],[124,274,64,0.5635478456418969],[124,274,65,0.6075127510270842],[124,274,66,0.6482569017520471],[124,274,67,0.6854634122662495],[124,274,68,0.7188942320770644],[124,274,69,0.7483997602231143],[124,274,70,0.7739280029641856],[124,274,71,0.7955332746876279],[124,274,72,0.8133850434801054],[124,274,73,0.8278132292932014],[124,274,74,0.8392382087262799],[124,274,75,0.8480097534086175],[124,274,76,0.8544061374265776],[124,274,77,0.8586464186847912],[124,274,78,0.8609010015428716],[124,274,79,0.861300480727698],[124,275,64,0.5341911602978079],[124,275,65,0.5764670209405952],[124,275,66,0.6155792472931155],[124,275,67,0.6512116049012079],[124,275,68,0.6831250860273468],[124,275,69,0.7111673587866527],[124,275,70,0.7352817661491495],[124,275,71,0.7555158748081758],[124,275,72,0.7720303671607742],[124,275,73,0.7851622740326815],[124,275,74,0.7953686200660758],[124,275,75,0.8030345143656328],[124,275,76,0.8084688072987509],[124,275,77,0.8119165166122015],[124,275,78,0.8135695285748086],[124,275,79,0.8135755741461947],[124,276,64,0.5070118816236832],[124,276,65,0.5475074710388439],[124,276,66,0.5849014072065631],[124,276,67,0.618878224406234],[124,276,68,0.6491979016962307],[124,276,69,0.6757051242530927],[124,276,70,0.6983381005910112],[124,276,71,0.7171369356615328],[124,276,72,0.7322525493587204],[124,276,73,0.7440282822537552],[124,276,74,0.7529577397028888],[124,276,75,0.7594614582706323],[124,276,76,0.7638790187386164],[124,276,77,0.7664816019174593],[124,276,78,0.7674828147566639],[124,276,79,0.7670477867525975],[124,277,64,0.48255748763286777],[124,277,65,0.5211870362419693],[124,277,66,0.556782061671638],[124,277,67,0.589028013139037],[124,277,68,0.6176838364273405],[124,277,69,0.6425910269089192],[124,277,70,0.663682244070453],[124,277,71,0.680989487539887],[124,277,72,0.694653023248906],[124,277,73,0.7050216454157521],[124,277,74,0.7126251471295153],[124,277,75,0.7179192448108384],[124,277,76,0.7212740858905301],[124,277,77,0.7229869204267502],[124,277,78,0.7232930399794636],[124,277,79,0.7223749837422213],[124,278,64,0.46118930445260187],[124,278,65,0.4978771966817911],[124,278,66,0.5316031534944612],[124,278,67,0.5620536807059032],[124,278,68,0.5889866747122597],[124,278,69,0.6122402491648198],[124,278,70,0.6317411286073422],[124,278,71,0.6475126090763208],[124,278,72,0.6596834747372762],[124,278,73,0.668607058645249],[124,278,74,0.6748486447552456],[124,278,75,0.6788985643940684],[124,278,76,0.681157066294768],[124,278,77,0.6819470918839341],[124,278,78,0.6815253165863049],[124,278,79,0.6800914571467394],[124,279,64,0.4430802681651318],[124,279,65,0.4777650788755385],[124,279,66,0.5095663440237816],[124,279,67,0.5381717315727359],[124,279,68,0.5633380455124805],[124,279,69,0.5848998111204333],[124,279,70,0.602777432708488],[124,279,71,0.616984923857072],[124,279,72,0.6276387996977091],[124,279,73,0.6350959584376143],[124,279,74,0.6399562087421243],[124,279,75,0.6427436470471333],[124,279,76,0.6438878833596621],[124,279,77,0.643736910462305],[124,279,78,0.6425682397575402],[124,279,79,0.6405983037519458],[124,280,64,0.42821123172314535],[124,280,65,0.4608491262985975],[124,280,66,0.4906880659626402],[124,280,67,0.5174169198479653],[124,280,68,0.540791299359254],[124,280,69,0.5606418903386088],[124,280,70,0.5768823635224938],[124,280,71,0.5895168632901052],[124,280,72,0.5986488638015216],[124,280,73,0.6046377989459514],[124,280,74,0.6081168143973028],[124,280,75,0.6096426821293364],[124,280,76,0.6096733964463439],[124,280,77,0.6085811304114382],[124,280,78,0.606663461409847],[124,280,79,0.6041528658472651],[124,281,64,0.4163658169396978],[124,281,65,0.4469333393562973],[124,281,66,0.4747931730758118],[124,281,67,0.49963533123705206],[124,281,68,0.5212140452309224],[124,281,69,0.5393558358286119],[124,281,70,0.5539671689009901],[124,281,71,0.5650416957291443],[124,281,72,0.5726690649385437],[124,281,73,0.5772101668563194],[124,281,74,0.5793301361202305],[124,281,75,0.5796171488596937],[124,281,76,0.5785564185645987],[124,281,77,0.576543236837524],[124,281,78,0.5738942876074783],[124,281,79,0.5708572348052278],[124,282,64,0.4071238115520231],[124,282,65,0.4356200847542721],[124,282,66,0.4615071867927081],[124,282,67,0.484476092168405],[124,282,68,0.504279347207692],[124,282,69,0.5207388762383768],[124,282,70,0.5337533793665001],[124,282,71,0.5433053218535527],[124,282,72,0.5494696982302875],[124,282,73,0.5526077348498832],[124,282,74,0.5534151219054678],[124,282,75,0.5525100576587847],[124,282,76,0.5504036816808543],[124,282,77,0.5475132016183165],[124,282,78,0.5441732994869222],[124,282,79,0.5406458174922236],[124,283,64,0.3998531113607037],[124,283,65,0.42630147426873477],[124,283,66,0.4502471397069444],[124,283,67,0.4713817060917835],[124,283,68,0.4894555809047795],[124,283,69,0.5042855222566043],[124,283,70,0.5157617799875827],[124,283,71,0.5238548363045719],[124,283,72,0.5286241236355786],[124,283,73,0.5304300536522397],[124,283,74,0.529997442401235],[124,283,75,0.5279731023052179],[124,283,76,0.5248927496381748],[124,283,77,0.5211942244524587],[124,283,78,0.5172289976946195],[124,283,79,0.5132719655100878],[124,284,64,0.3937219350702975],[124,284,65,0.41817077457463986],[124,284,66,0.44023218140964815],[124,284,67,0.45959785926265306],[124,284,68,0.4760154457602934],[124,284,69,0.48929579415847546],[124,284,70,0.4993198636501384],[124,284,71,0.5060452182907514],[124,284,72,0.5095147059704329],[124,284,73,0.5100867523940896],[124,284,74,0.5085139601400507],[124,284,75,0.50547040540934],[124,284,76,0.5015150473659971],[124,284,77,0.4971050544852757],[124,284,78,0.49260742716477623],[124,284,79,0.4883089165985649],[124,285,64,0.38836071093120694],[124,285,65,0.4108759500219445],[124,285,66,0.4311278479913418],[124,285,67,0.44880759294713524],[124,285,68,0.4636593346172867],[124,285,69,0.47548721476669586],[124,285,70,0.4841620165762118],[124,285,71,0.48962743298387146],[124,285,72,0.491908716862933],[124,285,73,0.49136103990249647],[124,285,74,0.48876313475397914],[124,285,75,0.4848146911085891],[124,285,76,0.4800963208192561],[124,285,77,0.4750830022319151],[124,285,78,0.4701558313418849],[124,285,79,0.46561207977540453],[124,286,64,0.38405099659486486],[124,286,65,0.4047076127832264],[124,286,66,0.4232326773926705],[124,286,67,0.4393162597365801],[124,286,68,0.4526983532324865],[124,286,69,0.4631756662894849],[124,286,70,0.4706080437484569],[124,286,71,0.47492451887502785],[124,286,72,0.4761319435259665],[124,286,73,0.4745808055278223],[124,286,74,0.4710735004890453],[124,286,75,0.46633294317182883],[124,286,76,0.46095921472991563],[124,286,77,0.4554431258217836],[124,286,78,0.45017809897245875],[124,286,79,0.4454703701840088],[124,287,64,0.3810207616853645],[124,287,65,0.39990341446323424],[124,287,66,0.4167926697168696],[124,287,67,0.43137690756747826],[124,287,68,0.4433913644135222],[124,287,69,0.4526246990887589],[124,287,70,0.4589252023675131],[124,287,71,0.4622066498171165],[124,287,72,0.4624569194938078],[124,287,73,0.46002027514054655],[124,287,74,0.4557195808438178],[124,287,75,0.4502979246682261],[124,287,76,0.44437214316641516],[124,287,77,0.4384464941283047],[124,287,78,0.43292466318463074],[124,287,79,0.4281201042648475],[124,288,64,0.37941167886684074],[124,288,65,0.39661539641376736],[124,288,66,0.4119687826752506],[124,288,67,0.42515799927488385],[124,288,68,0.4359130022274614],[124,288,69,0.44401390111916983],[124,288,70,0.4492969755746409],[124,288,71,0.451660349010808],[124,288,72,0.45107260042956676],[124,288,73,0.44787017266659107],[124,288,74,0.4428925912067407],[124,288,75,0.43689950555225],[124,288,76,0.4305213482047817],[124,288,77,0.42427309929150786],[124,288,78,0.4185664020844318],[124,288,79,0.4137200294130112],[124,289,64,0.3792901895060462],[124,289,65,0.39492058993236034],[124,289,66,0.40884709124301244],[124,289,67,0.4207531563300036],[124,289,68,0.43036302352454325],[124,289,69,0.4374478793439907],[124,289,70,0.4418317035366966],[124,289,71,0.44339678642468217],[124,289,72,0.4420923406067942],[124,289,73,0.43824538393359974],[124,289,74,0.43270779459738584],[124,289,75,0.4262517118678666],[124,289,76,0.4195176419093005],[124,289,77,0.41302828916064127],[124,289,78,0.4072007582665526],[124,289,79,0.40235712655934974],[124,290,64,0.3806579374855169],[124,290,65,0.394831026963979],[124,290,66,0.40744839936828464],[124,290,67,0.4181903952952178],[124,290,68,0.42677519190885377],[124,290,69,0.43296481238461904],[124,290,70,0.4365708236463193],[124,290,71,0.4374597223960781],[124,290,72,0.4355615519651781],[124,290,73,0.43119233885274005],[124,290,74,0.425211610649284],[124,290,75,0.4183995620010711],[124,290,76,0.4114029678373385],[124,290,77,0.4047490501892986],[124,290,78,0.3988577379600453],[124,290,79,0.3940523196454201],[124,291,64,0.3834615711692171],[124,291,65,0.39630316130751764],[124,291,66,0.40773730373610917],[124,291,67,0.41744085699815286],[124,291,68,0.4251256941574831],[124,291,69,0.4305445744051627],[124,291,70,0.4334967198387162],[124,291,71,0.43383309741398246],[124,291,72,0.43146504574158556],[124,291,73,0.42669611193721574],[124,291,74,0.4203884778354775],[124,291,75,0.4133256899818536],[124,291,76,0.40615678206936406],[124,291,77,0.3994101407840662],[124,291,78,0.3935057898099362],[124,291,79,0.3887660919931855],[124,292,64,0.38760191351932766],[124,292,65,0.3992467003258612],[124,292,66,0.4096307095862075],[124,292,67,0.4184270284237407],[124,292,68,0.42534108908717094],[124,292,69,0.43011643023118307],[124,292,70,0.4325401810241896],[124,292,71,0.4324482680831519],[124,292,72,0.4297340566757011],[124,292,73,0.4246872411567915],[124,292,74,0.4181674689361369],[124,292,75,0.410956755834977],[124,292,76,0.4037022537635799],[124,292,77,0.3969300751061283],[124,292,78,0.39105756329420605],[124,292,79,0.38640400956893606],[124,293,64,0.39294250036495837],[124,293,65,0.4035328471602122],[124,293,66,0.4130057985851612],[124,293,67,0.4210304573248135],[124,293,68,0.4273057888689335],[124,293,69,0.4315663017030346],[124,293,70,0.43358746863679065],[124,293,71,0.4331908892698171],[124,293,72,0.43025294979056833],[124,293,73,0.4250482651286024],[124,293,74,0.4184286597484789],[124,293,75,0.4111696429797795],[124,293,76,0.40391228523535483],[124,293,77,0.3971769573260073],[124,293,78,0.3913755467763063],[124,293,79,0.38682215114159635],[124,294,64,0.39931748682251633],[124,294,65,0.40900195344845003],[124,294,66,0.41770744875280963],[124,294,67,0.42509895955108856],[124,294,68,0.4308690727905521],[124,294,69,0.43474360526370986],[124,294,70,0.43648699329904145],[124,294,71,0.43590744242892765],[124,294,72,0.432865609748017],[124,294,73,0.42761997864425005],[124,294,74,0.42100925103901476],[124,294,75,0.41379744267904456],[124,294,76,0.40661535156151635],[124,294,77,0.3999741663315073],[124,294,78,0.3942775851932877],[124,294,79,0.38983244533549766],[124,295,64,0.40653892186751645],[124,295,65,0.41547058254732633],[124,295,66,0.423555106442679],[124,295,67,0.43045331909634305],[124,295,68,0.4358516334667294],[124,295,69,0.43946766078099386],[124,295,70,0.44105560060251975],[124,295,71,0.4404114101127318],[124,295,72,0.43738151277876275],[124,295,73,0.43220740653295964],[124,295,74,0.4257094437378823],[124,295,75,0.4186352255366856],[124,295,76,0.4116011597092318],[124,295,77,0.40510589088857735],[124,295,78,0.39954227737924164],[124,295,79,0.3952079145773062],[124,296,64,0.4144033910583616],[124,296,65,0.4227379832589784],[124,296,66,0.43034911037688867],[124,296,67,0.43689348086421753],[124,296,68,0.44205165549733527],[124,296,69,0.445533671604342],[124,296,70,0.4470844660047193],[124,296,71,0.44648909666110304],[124,296,72,0.4435814811875949],[124,296,73,0.43858549586123363],[124,296,74,0.4322980673757216],[124,296,75,0.4254456000447139],[124,296,76,0.41862612718997794],[124,296,77,0.4123225152556177],[124,296,78,0.4069142530246068],[124,296,79,0.40268782593768554],[124,297,64,0.4226980274115041],[124,297,65,0.4305919740612075],[124,297,66,0.4378764677350085],[124,297,67,0.4442042361521251],[124,297,68,0.4492504265732203],[124,297,69,0.45271827585595226],[124,297,70,0.45434459884164724],[124,297,71,0.4539050950730554],[124,297,72,0.45122312043307616],[124,297,73,0.44650452646838523],[124,297,74,0.4405179617624373],[124,297,75,0.4339640581788049],[124,297,76,0.42741868023786156],[124,297,77,0.4213458552504453],[124,297,78,0.4161093292705099],[124,297,79,0.41198274886681063],[124,298,64,0.43120589042847],[124,298,65,0.43881423784199824],[124,298,66,0.4459160822973427],[124,298,67,0.45216040085375686],[124,298,68,0.4572174810301133],[124,298,69,0.460784668956583],[124,298,70,0.46259195545674525],[124,298,71,0.4624074000600842],[124,298,72,0.4600459387824344],[124,298,73,0.4556952398386948],[124,298,74,0.45009111190865275],[124,298,75,0.4439041080433277],[124,298,76,0.43768437151323136],[124,298,77,0.4318742447709347],[124,298,78,0.4268195469392249],[124,298,79,0.422779519824898],[124,299,64,0.4397107132744088],[124,299,65,0.44718502713792363],[124,299,66,0.45424343464226696],[124,299,67,0.46053148637978014],[124,299,68,0.46571527585015277],[124,299,69,0.46948729738561135],[124,299,70,0.47157216144556924],[124,299,71,0.47173216728069656],[124,299,72,0.46977614954094465],[124,299,73,0.46587368630941267],[124,299,74,0.46072353618900186],[124,299,75,0.4549621935648961],[124,299,76,0.449110817330549],[124,299,77,0.44358747276820626],[124,299,78,0.4387180863995392],[124,299,79,0.43474611380644373],[124,300,64,0.4480010181084184],[124,300,65,0.45548727987671056],[124,300,66,0.46263471439791354],[124,300,67,0.4690858632970587],[124,300,68,0.47450339911143563],[124,300,69,0.47857612367577296],[124,300,70,0.4810248430167391],[124,300,71,0.48160811875671594],[124,300,72,0.48013115585646193],[124,300,73,0.47674579061534256],[124,300,74,0.4721099277480722],[124,300,75,0.4668224012353517],[124,300,76,0.4613724544115227],[124,300,77,0.4561515706734597],[124,300,78,0.45146406306821174],[124,300,79,0.4475364227594448],[124,301,64,0.45587359956544315],[124,301,65,0.46351014562374077],[124,301,66,0.4708704045479625],[124,301,67,0.4775944176861193],[124,301,68,0.4833423108852544],[124,301,69,0.4878004626422038],[124,301,70,0.49068756746870834],[124,301,71,0.49176059447084275],[124,301,72,0.490823718098511],[124,301,73,0.4880116357693418],[124,301,74,0.4839380491482607],[124,301,75,0.4791609539033497],[124,301,76,0.4741351161625858],[124,301,77,0.46922345027745416],[124,301,78,0.46470720254643977],[124,301,79,0.46079494089844986],[124,302,64,0.4631363763897721],[124,302,65,0.4710519223325399],[124,302,66,0.4787383177916181],[124,302,67,0.48583370021698336],[124,302,68,0.4919966165811993],[124,302,69,0.4969123888460118],[124,302,70,0.5002993927826578],[124,302,71,0.5019152501458489],[124,302,72,0.5015658038123902],[124,302,73,0.4993694652792722],[124,302,74,0.4958928802601587],[124,302,75,0.4916504916152516],[124,302,76,0.48706042847751474],[124,302,77,0.4824553920635093],[124,302,78,0.4780923953923001],[124,302,79,0.47416135691246825],[124,303,64,0.4696106112205544],[124,303,65,0.47792240359962973],[124,303,66,0.4860360849580937],[124,303,67,0.4935885679436285],[124,303,68,0.5002378727403123],[124,303,69,0.505669715292496],[124,303,70,0.5096040263315351],[124,303,71,0.5118014012053302],[124,303,72,0.5120721202481149],[124,303,73,0.510519403701128],[124,303,74,0.5076605193950804],[124,303,75,0.5039641395048381],[124,303,76,0.49981002506459044],[124,303,77,0.49549938399332716],[124,303,78,0.4912641315283472],[124,303,79,0.48727505306683405],[124,304,64,0.4751324985283283],[124,304,65,0.48394463642280716],[124,304,66,0.4925730954747469],[124,304,67,0.5006543188163075],[124,304,68,0.5078469252756254],[124,304,69,0.5138385433634423],[124,304,70,0.5183525927047903],[124,304,71,0.5211550129156962],[124,304,72,0.5220633294640058],[124,304,73,0.521166895528276],[124,304,74,0.5189318376798179],[124,304,75,0.5157793627320488],[124,304,76,0.5120495822986484],[124,304,77,0.5080113107461203],[124,304,78,0.5038708142850054],[124,304,79,0.499779511199788],[124,305,64,0.479554120703941],[124,305,65,0.488956089464141],[124,305,66,0.4981718898900651],[124,305,67,0.5068383189128167],[124,305,68,0.5146157801610572],[124,305,69,0.5211953839843545],[124,305,70,0.5263060106495305],[124,305,71,0.529721336709972],[124,305,72,0.5312689460053579],[124,305,73,0.5310258624170905],[124,305,74,0.5294058866737418],[124,305,75,0.5267816084707305],[124,305,76,0.5234526735978438],[124,305,77,0.5196549934107118],[124,305,78,0.5155689540792532],[124,305,79,0.5113266256131273],[124,306,64,0.48274377229854654],[124,306,65,0.4928092318164625],[124,306,66,0.5026690044503654],[124,306,67,0.5119611223876916],[124,306,68,0.5203490065677554],[124,306,69,0.5275288500258217],[124,306,70,0.5332369791274255],[124,306,71,0.5372571926928886],[124,306,72,0.5394299171577926],[124,306,73,0.5398215787487424],[124,306,74,0.5387930592281557],[124,306,75,0.5366677349454347],[124,306,76,0.5337044433253165],[124,306,77,0.530106079630943],[124,306,78,0.5260272417290847],[124,306,79,0.521580922857541],[124,307,64,0.48458565241569435],[124,307,65,0.4953715222742823],[124,307,66,0.505915267731062],[124,307,67,0.5158570841400791],[124,307,68,0.5248646724485384],[124,307,69,0.5326409199395766],[124,307,70,0.5389315724878032],[124,307,71,0.5435328983275743],[124,307,72,0.5463008857755044],[124,307,73,0.5472932655272087],[124,307,74,0.5468180035878484],[124,307,75,0.5451492275170922],[124,307,76,0.5425051002154655],[124,307,77,0.539055784203976],[124,307,78,0.5349305014032221],[124,307,79,0.530223688412007],[124,308,64,0.48497892525454867],[124,308,65,0.49652480910824925],[124,308,66,0.5077755493216964],[124,308,67,0.5183744651995721],[124,308,68,0.527994812569818],[124,308,69,0.5363477726287188],[124,308,70,0.543190444756519],[124,308,71,0.5483338433035453],[124,308,72,0.5516521356841904],[124,308,73,0.5531964026134278],[124,308,74,0.5532222907348815],[124,308,75,0.5519552018177095],[124,308,76,0.5495732303250845],[124,308,77,0.5462144801318469],[124,308,78,0.5419835232065306],[124,308,79,0.5369570002577839],[124,309,64,0.4838361488056613],[124,309,65,0.49616414034448875],[124,309,66,0.5081279605659751],[124,309,67,0.5193750308311638],[124,309,68,0.5295854289920494],[124,309,69,0.5384801935530421],[124,309,70,0.5458296430414152],[124,309,71,0.5514617105866897],[124,309,72,0.555271219659252],[124,309,73,0.5573047592960436],[124,309,74,0.5577668349749276],[124,309,75,0.5568351939342824],[124,309,76,0.5546489295094312],[124,309,77,0.5513151401262268],[124,309,78,0.5469147754009784],[124,309,79,0.5415076693467374],[124,310,64,0.48108107169716086],[124,310,65,0.4941959845467867],[124,310,66,0.5068625073548855],[124,310,67,0.5187331413574905],[124,310,68,0.5294960239970036],[124,310,69,0.5388835520678953],[124,310,70,0.5466810300529411],[124,310,71,0.5527353436499579],[124,310,72,0.5569642699781134],[124,310,73,0.559412143197747],[124,310,74,0.5602340677653196],[124,310,75,0.559561737641234],[124,310,76,0.5574967554226864],[124,310,77,0.5541166285659908],[124,310,78,0.5494799962618928],[124,310,79,0.5436310869638926],[124,311,64,0.47664579819390673],[124,311,65,0.49053586210405314],[124,311,66,0.5038791949752239],[124,311,67,0.5163343357005851],[124,311,68,0.5275986654639565],[124,311,69,0.5374173499985211],[124,311,70,0.5455923157417355],[124,311,71,0.5519912598864098],[124,311,72,0.5565569915481613],[124,311,73,0.5593338675185523],[124,311,74,0.5604298647859888],[124,311,75,0.5599327286823933],[124,311,76,0.5579084990436622],[124,311,77,0.5544068439082969],[124,311,78,0.5494656655700481],[124,311,79,0.5431149789845927],[124,312,64,0.47046732134722935],[124,312,65,0.4851053870207969],[124,312,66,0.4990855850113515],[124,312,67,0.5120734076410689],[124,312,68,0.5237765846928367],[124,312,69,0.5339543414480534],[124,312,70,0.5424266980514739],[124,312,71,0.5490838102030543],[124,312,72,0.5538953376088783],[124,312,73,0.5569079366147243],[124,312,74,0.558185226252149],[124,312,75,0.5577735761015185],[124,312,76,0.5557057757258985],[124,312,77,0.5520057115524503],[124,312,78,0.5466923557390011],[124,312,79,0.5397830670258104],[124,313,64,0.4624834242971665],[124,313,65,0.477828719212427],[124,313,66,0.4923938043019199],[124,313,67,0.5058519747964285],[124,313,68,0.5179223066758826],[124,313,69,0.5283792238406149],[124,313,70,0.5370621127883265],[124,313,71,0.5438849847967288],[124,313,72,0.5488458680093025],[124,313,73,0.5519959499143812],[124,313,74,0.553357710469643],[124,313,75,0.5529391406221664],[124,313,76,0.5507424357728501],[124,313,77,0.5467680271571599],[124,313,78,0.5410179625781893],[124,313,79,0.5334986364920398],[124,314,64,0.45262794972551224],[124,314,65,0.4686284273037736],[124,314,66,0.4837170059500354],[124,314,67,0.4975755403169225],[124,314,68,0.5099353128164399],[124,314,69,0.5205869001982288],[124,314,70,0.5293900926058267],[124,314,71,0.5362838651108917],[124,314,72,0.5412957900597869],[124,314,73,0.5444837241688321],[124,314,74,0.5458326206320957],[124,314,75,0.545315460076146],[124,314,76,0.542906794537478],[124,314,77,0.5385861504105701],[124,314,78,0.5323408156912358],[124,314,79,0.524168011515276],[124,315,64,0.44082543746155506],[124,315,65,0.45742076193264314],[124,315,66,0.47296528238859475],[124,315,67,0.48715004730078276],[124,315,68,0.4997192360964767],[124,315,69,0.5104803126530504],[124,315,70,0.5193142351065625],[124,315,71,0.5261857219746675],[124,315,72,0.5311526819592982],[124,315,73,0.5342816340408036],[124,315,74,0.5355239448609442],[124,315,75,0.5348212618815312],[124,315,76,0.5321236820471451],[124,315,77,0.5273925492538933],[124,315,78,0.5206026685102185],[124,315,79,0.5117439367897666],[124,316,64,0.4269851302385622],[124,316,65,0.44411033955651247],[124,316,66,0.46004103049896927],[124,316,67,0.47447792592695126],[124,316,68,0.4871785886911403],[124,316,69,0.4979678471933051],[124,316,70,0.5067482800591713],[124,316,71,0.5135107599227053],[124,316,72,0.5183438987969091],[124,316,73,0.5213246710282964],[124,316,74,0.5223750494871725],[124,316,75,0.5214092625691591],[124,316,76,0.5183563121528214],[124,316,77,0.5131621945577332],[124,316,78,0.5057915679650805],[124,316,79,0.49622886630080276],[124,317,64,0.410994347602153],[124,317,65,0.42858423676348],[124,317,66,0.444833768784117],[124,317,67,0.4594536333063903],[124,317,68,0.4722150220313421],[124,317,69,0.4829603096438833],[124,317,70,0.49161379573152736],[124,317,71,0.4981925076966777],[124,317,72,0.5028156611282554],[124,317,73,0.5055722207247801],[124,317,74,0.5063591255753986],[124,317,75,0.5050672543581899],[124,317,76,0.5016079712031172],[124,317,77,0.4959148052515583],[124,317,78,0.4879446037885671],[124,317,79,0.4776781589478618],[124,318,64,0.3927112279709772],[124,318,65,0.4107054950878837],[124,318,66,0.42721440659652943],[124,318,67,0.44195868605237143],[124,318,68,0.4547231193147736],[124,318,69,0.4653674728819883],[124,318,70,0.47383747434051865],[124,318,71,0.48017585492882875],[124,318,72,0.484531826127363],[124,318,73,0.48700755841614374],[124,318,74,0.4874793886907345],[124,318,75,0.48581897878116215],[124,318,76,0.48192352624358387],[124,318,77,0.4757169439067618],[124,318,78,0.46715053745714663],[124,318,79,0.4562031810625747],[124,319,64,0.37195683884790015],[124,319,65,0.39030603632881833],[124,319,66,0.4070289654192738],[124,319,67,0.42185618556804394],[124,319,68,0.43458572046369964],[124,319,69,0.4450941952862266],[124,319,70,0.45334803661685363],[124,319,71,0.4594147350060491],[124,319,72,0.4634723413123707],[124,319,73,0.46563706301296487],[124,319,74,0.46576903190703167],[124,319,75,0.46372478735719636],[124,319,76,0.4593907527399827],[124,319,77,0.45268396277206746],[124,319,78,0.44355231076670987],[124,319,79,0.4319743158203553],[125,-64,64,64.0],[125,-64,65,64.0],[125,-64,66,64.0],[125,-64,67,64.0],[125,-64,68,64.0],[125,-64,69,64.0],[125,-64,70,64.0],[125,-64,71,64.0],[125,-64,72,64.0],[125,-64,73,64.0],[125,-64,74,64.0],[125,-64,75,64.0],[125,-64,76,64.0],[125,-64,77,64.0],[125,-64,78,64.0],[125,-64,79,64.0],[125,-63,64,64.0],[125,-63,65,64.0],[125,-63,66,64.0],[125,-63,67,64.0],[125,-63,68,64.0],[125,-63,69,64.0],[125,-63,70,64.0],[125,-63,71,64.0],[125,-63,72,64.0],[125,-63,73,64.0],[125,-63,74,64.0],[125,-63,75,64.0],[125,-63,76,64.0],[125,-63,77,64.0],[125,-63,78,64.0],[125,-63,79,64.0],[125,-62,64,64.0],[125,-62,65,64.0],[125,-62,66,64.0],[125,-62,67,64.0],[125,-62,68,64.0],[125,-62,69,64.0],[125,-62,70,64.0],[125,-62,71,64.0],[125,-62,72,64.0],[125,-62,73,64.0],[125,-62,74,64.0],[125,-62,75,64.0],[125,-62,76,64.0],[125,-62,77,64.0],[125,-62,78,64.0],[125,-62,79,64.0],[125,-61,64,64.0],[125,-61,65,64.0],[125,-61,66,64.0],[125,-61,67,64.0],[125,-61,68,64.0],[125,-61,69,64.0],[125,-61,70,64.0],[125,-61,71,64.0],[125,-61,72,64.0],[125,-61,73,64.0],[125,-61,74,64.0],[125,-61,75,64.0],[125,-61,76,64.0],[125,-61,77,64.0],[125,-61,78,64.0],[125,-61,79,64.0],[125,-60,64,64.0],[125,-60,65,64.0],[125,-60,66,64.0],[125,-60,67,64.0],[125,-60,68,64.0],[125,-60,69,64.0],[125,-60,70,64.0],[125,-60,71,64.0],[125,-60,72,64.0],[125,-60,73,64.0],[125,-60,74,64.0],[125,-60,75,64.0],[125,-60,76,64.0],[125,-60,77,64.0],[125,-60,78,64.0],[125,-60,79,64.0],[125,-59,64,64.0],[125,-59,65,64.0],[125,-59,66,64.0],[125,-59,67,64.0],[125,-59,68,64.0],[125,-59,69,64.0],[125,-59,70,64.0],[125,-59,71,64.0],[125,-59,72,64.0],[125,-59,73,64.0],[125,-59,74,64.0],[125,-59,75,64.0],[125,-59,76,64.0],[125,-59,77,64.0],[125,-59,78,64.0],[125,-59,79,64.0],[125,-58,64,64.0],[125,-58,65,64.0],[125,-58,66,64.0],[125,-58,67,64.0],[125,-58,68,64.0],[125,-58,69,64.0],[125,-58,70,64.0],[125,-58,71,64.0],[125,-58,72,64.0],[125,-58,73,64.0],[125,-58,74,64.0],[125,-58,75,64.0],[125,-58,76,64.0],[125,-58,77,64.0],[125,-58,78,64.0],[125,-58,79,64.0],[125,-57,64,64.0],[125,-57,65,64.0],[125,-57,66,64.0],[125,-57,67,64.0],[125,-57,68,64.0],[125,-57,69,64.0],[125,-57,70,64.0],[125,-57,71,64.0],[125,-57,72,64.0],[125,-57,73,64.0],[125,-57,74,64.0],[125,-57,75,64.0],[125,-57,76,64.0],[125,-57,77,64.0],[125,-57,78,64.0],[125,-57,79,64.0],[125,-56,64,64.0],[125,-56,65,64.0],[125,-56,66,64.0],[125,-56,67,64.0],[125,-56,68,64.0],[125,-56,69,64.0],[125,-56,70,64.0],[125,-56,71,64.0],[125,-56,72,64.0],[125,-56,73,64.0],[125,-56,74,64.0],[125,-56,75,64.0],[125,-56,76,64.0],[125,-56,77,64.0],[125,-56,78,64.0],[125,-56,79,64.0],[125,-55,64,64.0],[125,-55,65,64.0],[125,-55,66,64.0],[125,-55,67,64.0],[125,-55,68,64.0],[125,-55,69,64.0],[125,-55,70,64.0],[125,-55,71,64.0],[125,-55,72,64.0],[125,-55,73,64.0],[125,-55,74,64.0],[125,-55,75,64.0],[125,-55,76,64.0],[125,-55,77,64.0],[125,-55,78,64.0],[125,-55,79,64.0],[125,-54,64,64.0],[125,-54,65,64.0],[125,-54,66,64.0],[125,-54,67,64.0],[125,-54,68,64.0],[125,-54,69,64.0],[125,-54,70,64.0],[125,-54,71,64.0],[125,-54,72,64.0],[125,-54,73,64.0],[125,-54,74,64.0],[125,-54,75,64.0],[125,-54,76,64.0],[125,-54,77,64.0],[125,-54,78,64.0],[125,-54,79,64.0],[125,-53,64,64.0],[125,-53,65,64.0],[125,-53,66,64.0],[125,-53,67,64.0],[125,-53,68,64.0],[125,-53,69,64.0],[125,-53,70,64.0],[125,-53,71,64.0],[125,-53,72,64.0],[125,-53,73,64.0],[125,-53,74,64.0],[125,-53,75,64.0],[125,-53,76,64.0],[125,-53,77,64.0],[125,-53,78,64.0],[125,-53,79,64.0],[125,-52,64,64.0],[125,-52,65,64.0],[125,-52,66,64.0],[125,-52,67,64.0],[125,-52,68,64.0],[125,-52,69,64.0],[125,-52,70,64.0],[125,-52,71,64.0],[125,-52,72,64.0],[125,-52,73,64.0],[125,-52,74,64.0],[125,-52,75,64.0],[125,-52,76,64.0],[125,-52,77,64.0],[125,-52,78,64.0],[125,-52,79,64.0],[125,-51,64,64.0],[125,-51,65,64.0],[125,-51,66,64.0],[125,-51,67,64.0],[125,-51,68,64.0],[125,-51,69,64.0],[125,-51,70,64.0],[125,-51,71,64.0],[125,-51,72,64.0],[125,-51,73,64.0],[125,-51,74,64.0],[125,-51,75,64.0],[125,-51,76,64.0],[125,-51,77,64.0],[125,-51,78,64.0],[125,-51,79,64.0],[125,-50,64,64.0],[125,-50,65,64.0],[125,-50,66,64.0],[125,-50,67,64.0],[125,-50,68,64.0],[125,-50,69,64.0],[125,-50,70,64.0],[125,-50,71,64.0],[125,-50,72,64.0],[125,-50,73,64.0],[125,-50,74,64.0],[125,-50,75,64.0],[125,-50,76,64.0],[125,-50,77,64.0],[125,-50,78,64.0],[125,-50,79,64.0],[125,-49,64,64.0],[125,-49,65,64.0],[125,-49,66,64.0],[125,-49,67,64.0],[125,-49,68,64.0],[125,-49,69,64.0],[125,-49,70,64.0],[125,-49,71,64.0],[125,-49,72,64.0],[125,-49,73,64.0],[125,-49,74,64.0],[125,-49,75,64.0],[125,-49,76,64.0],[125,-49,77,64.0],[125,-49,78,64.0],[125,-49,79,64.0],[125,-48,64,64.0],[125,-48,65,64.0],[125,-48,66,64.0],[125,-48,67,64.0],[125,-48,68,64.0],[125,-48,69,64.0],[125,-48,70,64.0],[125,-48,71,64.0],[125,-48,72,64.0],[125,-48,73,64.0],[125,-48,74,64.0],[125,-48,75,64.0],[125,-48,76,64.0],[125,-48,77,64.0],[125,-48,78,64.0],[125,-48,79,64.0],[125,-47,64,64.0],[125,-47,65,64.0],[125,-47,66,64.0],[125,-47,67,64.0],[125,-47,68,64.0],[125,-47,69,64.0],[125,-47,70,64.0],[125,-47,71,64.0],[125,-47,72,64.0],[125,-47,73,64.0],[125,-47,74,64.0],[125,-47,75,64.0],[125,-47,76,64.0],[125,-47,77,64.0],[125,-47,78,64.0],[125,-47,79,64.0],[125,-46,64,64.0],[125,-46,65,64.0],[125,-46,66,64.0],[125,-46,67,64.0],[125,-46,68,64.0],[125,-46,69,64.0],[125,-46,70,64.0],[125,-46,71,64.0],[125,-46,72,64.0],[125,-46,73,64.0],[125,-46,74,64.0],[125,-46,75,64.0],[125,-46,76,64.0],[125,-46,77,64.0],[125,-46,78,64.0],[125,-46,79,64.0],[125,-45,64,64.0],[125,-45,65,64.0],[125,-45,66,64.0],[125,-45,67,64.0],[125,-45,68,64.0],[125,-45,69,64.0],[125,-45,70,64.0],[125,-45,71,64.0],[125,-45,72,64.0],[125,-45,73,64.0],[125,-45,74,64.0],[125,-45,75,64.0],[125,-45,76,64.0],[125,-45,77,64.0],[125,-45,78,64.0],[125,-45,79,64.0],[125,-44,64,64.0],[125,-44,65,64.0],[125,-44,66,64.0],[125,-44,67,64.0],[125,-44,68,64.0],[125,-44,69,64.0],[125,-44,70,64.0],[125,-44,71,64.0],[125,-44,72,64.0],[125,-44,73,64.0],[125,-44,74,64.0],[125,-44,75,64.0],[125,-44,76,64.0],[125,-44,77,64.0],[125,-44,78,64.0],[125,-44,79,64.0],[125,-43,64,64.0],[125,-43,65,64.0],[125,-43,66,64.0],[125,-43,67,64.0],[125,-43,68,64.0],[125,-43,69,64.0],[125,-43,70,64.0],[125,-43,71,64.0],[125,-43,72,64.0],[125,-43,73,64.0],[125,-43,74,64.0],[125,-43,75,64.0],[125,-43,76,64.0],[125,-43,77,64.0],[125,-43,78,64.0],[125,-43,79,64.0],[125,-42,64,64.0],[125,-42,65,64.0],[125,-42,66,64.0],[125,-42,67,64.0],[125,-42,68,64.0],[125,-42,69,64.0],[125,-42,70,64.0],[125,-42,71,64.0],[125,-42,72,64.0],[125,-42,73,64.0],[125,-42,74,64.0],[125,-42,75,64.0],[125,-42,76,64.0],[125,-42,77,64.0],[125,-42,78,64.0],[125,-42,79,64.0],[125,-41,64,64.0],[125,-41,65,64.0],[125,-41,66,64.0],[125,-41,67,64.0],[125,-41,68,64.0],[125,-41,69,64.0],[125,-41,70,64.0],[125,-41,71,64.0],[125,-41,72,64.0],[125,-41,73,64.0],[125,-41,74,64.0],[125,-41,75,64.0],[125,-41,76,64.0],[125,-41,77,64.0],[125,-41,78,64.0],[125,-41,79,64.0],[125,-40,64,64.0],[125,-40,65,64.0],[125,-40,66,64.0],[125,-40,67,64.0],[125,-40,68,64.0],[125,-40,69,64.0],[125,-40,70,64.0],[125,-40,71,64.0],[125,-40,72,64.0],[125,-40,73,64.0],[125,-40,74,64.0],[125,-40,75,64.0],[125,-40,76,64.0],[125,-40,77,64.0],[125,-40,78,64.0],[125,-40,79,64.0],[125,-39,64,64.0],[125,-39,65,64.0],[125,-39,66,64.0],[125,-39,67,64.0],[125,-39,68,64.0],[125,-39,69,64.0],[125,-39,70,64.0],[125,-39,71,64.0],[125,-39,72,64.0],[125,-39,73,64.0],[125,-39,74,64.0],[125,-39,75,64.0],[125,-39,76,64.0],[125,-39,77,64.0],[125,-39,78,64.0],[125,-39,79,64.0],[125,-38,64,64.0],[125,-38,65,64.0],[125,-38,66,64.0],[125,-38,67,64.0],[125,-38,68,64.0],[125,-38,69,64.0],[125,-38,70,64.0],[125,-38,71,64.0],[125,-38,72,64.0],[125,-38,73,64.0],[125,-38,74,64.0],[125,-38,75,64.0],[125,-38,76,64.0],[125,-38,77,64.0],[125,-38,78,64.0],[125,-38,79,64.0],[125,-37,64,64.0],[125,-37,65,64.0],[125,-37,66,64.0],[125,-37,67,64.0],[125,-37,68,64.0],[125,-37,69,64.0],[125,-37,70,64.0],[125,-37,71,64.0],[125,-37,72,64.0],[125,-37,73,64.0],[125,-37,74,64.0],[125,-37,75,64.0],[125,-37,76,64.0],[125,-37,77,64.0],[125,-37,78,64.0],[125,-37,79,64.0],[125,-36,64,64.0],[125,-36,65,64.0],[125,-36,66,64.0],[125,-36,67,64.0],[125,-36,68,64.0],[125,-36,69,64.0],[125,-36,70,64.0],[125,-36,71,64.0],[125,-36,72,64.0],[125,-36,73,64.0],[125,-36,74,64.0],[125,-36,75,64.0],[125,-36,76,64.0],[125,-36,77,64.0],[125,-36,78,64.0],[125,-36,79,64.0],[125,-35,64,64.0],[125,-35,65,64.0],[125,-35,66,64.0],[125,-35,67,64.0],[125,-35,68,64.0],[125,-35,69,64.0],[125,-35,70,64.0],[125,-35,71,64.0],[125,-35,72,64.0],[125,-35,73,64.0],[125,-35,74,64.0],[125,-35,75,64.0],[125,-35,76,64.0],[125,-35,77,64.0],[125,-35,78,64.0],[125,-35,79,64.0],[125,-34,64,64.0],[125,-34,65,64.0],[125,-34,66,64.0],[125,-34,67,64.0],[125,-34,68,64.0],[125,-34,69,64.0],[125,-34,70,64.0],[125,-34,71,64.0],[125,-34,72,64.0],[125,-34,73,64.0],[125,-34,74,64.0],[125,-34,75,64.0],[125,-34,76,64.0],[125,-34,77,64.0],[125,-34,78,64.0],[125,-34,79,64.0],[125,-33,64,64.0],[125,-33,65,64.0],[125,-33,66,64.0],[125,-33,67,64.0],[125,-33,68,64.0],[125,-33,69,64.0],[125,-33,70,64.0],[125,-33,71,64.0],[125,-33,72,64.0],[125,-33,73,64.0],[125,-33,74,64.0],[125,-33,75,64.0],[125,-33,76,64.0],[125,-33,77,64.0],[125,-33,78,64.0],[125,-33,79,64.0],[125,-32,64,64.0],[125,-32,65,64.0],[125,-32,66,64.0],[125,-32,67,64.0],[125,-32,68,64.0],[125,-32,69,64.0],[125,-32,70,64.0],[125,-32,71,64.0],[125,-32,72,64.0],[125,-32,73,64.0],[125,-32,74,64.0],[125,-32,75,64.0],[125,-32,76,64.0],[125,-32,77,64.0],[125,-32,78,64.0],[125,-32,79,64.0],[125,-31,64,64.0],[125,-31,65,64.0],[125,-31,66,64.0],[125,-31,67,64.0],[125,-31,68,64.0],[125,-31,69,64.0],[125,-31,70,64.0],[125,-31,71,64.0],[125,-31,72,64.0],[125,-31,73,64.0],[125,-31,74,64.0],[125,-31,75,64.0],[125,-31,76,64.0],[125,-31,77,64.0],[125,-31,78,64.0],[125,-31,79,64.0],[125,-30,64,64.0],[125,-30,65,64.0],[125,-30,66,64.0],[125,-30,67,64.0],[125,-30,68,64.0],[125,-30,69,64.0],[125,-30,70,64.0],[125,-30,71,64.0],[125,-30,72,64.0],[125,-30,73,64.0],[125,-30,74,64.0],[125,-30,75,64.0],[125,-30,76,64.0],[125,-30,77,64.0],[125,-30,78,64.0],[125,-30,79,64.0],[125,-29,64,64.0],[125,-29,65,64.0],[125,-29,66,64.0],[125,-29,67,64.0],[125,-29,68,64.0],[125,-29,69,64.0],[125,-29,70,64.0],[125,-29,71,64.0],[125,-29,72,64.0],[125,-29,73,64.0],[125,-29,74,64.0],[125,-29,75,64.0],[125,-29,76,64.0],[125,-29,77,64.0],[125,-29,78,64.0],[125,-29,79,64.0],[125,-28,64,64.0],[125,-28,65,64.0],[125,-28,66,64.0],[125,-28,67,64.0],[125,-28,68,64.0],[125,-28,69,64.0],[125,-28,70,64.0],[125,-28,71,64.0],[125,-28,72,64.0],[125,-28,73,64.0],[125,-28,74,64.0],[125,-28,75,64.0],[125,-28,76,64.0],[125,-28,77,64.0],[125,-28,78,64.0],[125,-28,79,64.0],[125,-27,64,64.0],[125,-27,65,64.0],[125,-27,66,64.0],[125,-27,67,64.0],[125,-27,68,64.0],[125,-27,69,64.0],[125,-27,70,64.0],[125,-27,71,64.0],[125,-27,72,64.0],[125,-27,73,64.0],[125,-27,74,64.0],[125,-27,75,64.0],[125,-27,76,64.0],[125,-27,77,64.0],[125,-27,78,64.0],[125,-27,79,64.0],[125,-26,64,64.0],[125,-26,65,64.0],[125,-26,66,64.0],[125,-26,67,64.0],[125,-26,68,64.0],[125,-26,69,64.0],[125,-26,70,64.0],[125,-26,71,64.0],[125,-26,72,64.0],[125,-26,73,64.0],[125,-26,74,64.0],[125,-26,75,64.0],[125,-26,76,64.0],[125,-26,77,64.0],[125,-26,78,64.0],[125,-26,79,64.0],[125,-25,64,64.0],[125,-25,65,64.0],[125,-25,66,64.0],[125,-25,67,64.0],[125,-25,68,64.0],[125,-25,69,64.0],[125,-25,70,64.0],[125,-25,71,64.0],[125,-25,72,64.0],[125,-25,73,64.0],[125,-25,74,64.0],[125,-25,75,64.0],[125,-25,76,64.0],[125,-25,77,64.0],[125,-25,78,64.0],[125,-25,79,64.0],[125,-24,64,64.0],[125,-24,65,64.0],[125,-24,66,64.0],[125,-24,67,64.0],[125,-24,68,64.0],[125,-24,69,64.0],[125,-24,70,64.0],[125,-24,71,64.0],[125,-24,72,64.0],[125,-24,73,64.0],[125,-24,74,64.0],[125,-24,75,64.0],[125,-24,76,64.0],[125,-24,77,64.0],[125,-24,78,64.0],[125,-24,79,64.0],[125,-23,64,64.0],[125,-23,65,64.0],[125,-23,66,64.0],[125,-23,67,64.0],[125,-23,68,64.0],[125,-23,69,64.0],[125,-23,70,64.0],[125,-23,71,64.0],[125,-23,72,64.0],[125,-23,73,64.0],[125,-23,74,64.0],[125,-23,75,64.0],[125,-23,76,64.0],[125,-23,77,64.0],[125,-23,78,64.0],[125,-23,79,64.0],[125,-22,64,64.0],[125,-22,65,64.0],[125,-22,66,64.0],[125,-22,67,64.0],[125,-22,68,64.0],[125,-22,69,64.0],[125,-22,70,64.0],[125,-22,71,64.0],[125,-22,72,64.0],[125,-22,73,64.0],[125,-22,74,64.0],[125,-22,75,64.0],[125,-22,76,64.0],[125,-22,77,64.0],[125,-22,78,64.0],[125,-22,79,64.0],[125,-21,64,64.0],[125,-21,65,64.0],[125,-21,66,64.0],[125,-21,67,64.0],[125,-21,68,64.0],[125,-21,69,64.0],[125,-21,70,64.0],[125,-21,71,64.0],[125,-21,72,64.0],[125,-21,73,64.0],[125,-21,74,64.0],[125,-21,75,64.0],[125,-21,76,64.0],[125,-21,77,64.0],[125,-21,78,64.0],[125,-21,79,64.0],[125,-20,64,64.0],[125,-20,65,64.0],[125,-20,66,64.0],[125,-20,67,64.0],[125,-20,68,64.0],[125,-20,69,64.0],[125,-20,70,64.0],[125,-20,71,64.0],[125,-20,72,64.0],[125,-20,73,64.0],[125,-20,74,64.0],[125,-20,75,64.0],[125,-20,76,64.0],[125,-20,77,64.0],[125,-20,78,64.0],[125,-20,79,64.0],[125,-19,64,64.0],[125,-19,65,64.0],[125,-19,66,64.0],[125,-19,67,64.0],[125,-19,68,64.0],[125,-19,69,64.0],[125,-19,70,64.0],[125,-19,71,64.0],[125,-19,72,64.0],[125,-19,73,64.0],[125,-19,74,64.0],[125,-19,75,64.0],[125,-19,76,64.0],[125,-19,77,64.0],[125,-19,78,64.0],[125,-19,79,64.0],[125,-18,64,64.0],[125,-18,65,64.0],[125,-18,66,64.0],[125,-18,67,64.0],[125,-18,68,64.0],[125,-18,69,64.0],[125,-18,70,64.0],[125,-18,71,64.0],[125,-18,72,64.0],[125,-18,73,64.0],[125,-18,74,64.0],[125,-18,75,64.0],[125,-18,76,64.0],[125,-18,77,64.0],[125,-18,78,64.0],[125,-18,79,64.0],[125,-17,64,64.0],[125,-17,65,64.0],[125,-17,66,64.0],[125,-17,67,64.0],[125,-17,68,64.0],[125,-17,69,64.0],[125,-17,70,64.0],[125,-17,71,64.0],[125,-17,72,64.0],[125,-17,73,64.0],[125,-17,74,64.0],[125,-17,75,64.0],[125,-17,76,64.0],[125,-17,77,64.0],[125,-17,78,64.0],[125,-17,79,64.0],[125,-16,64,64.0],[125,-16,65,64.0],[125,-16,66,64.0],[125,-16,67,64.0],[125,-16,68,64.0],[125,-16,69,64.0],[125,-16,70,64.0],[125,-16,71,64.0],[125,-16,72,64.0],[125,-16,73,64.0],[125,-16,74,64.0],[125,-16,75,64.0],[125,-16,76,64.0],[125,-16,77,64.0],[125,-16,78,64.0],[125,-16,79,64.0],[125,-15,64,64.0],[125,-15,65,64.0],[125,-15,66,64.0],[125,-15,67,64.0],[125,-15,68,64.0],[125,-15,69,64.0],[125,-15,70,64.0],[125,-15,71,64.0],[125,-15,72,64.0],[125,-15,73,64.0],[125,-15,74,64.0],[125,-15,75,64.0],[125,-15,76,64.0],[125,-15,77,64.0],[125,-15,78,64.0],[125,-15,79,64.0],[125,-14,64,64.0],[125,-14,65,64.0],[125,-14,66,64.0],[125,-14,67,64.0],[125,-14,68,64.0],[125,-14,69,64.0],[125,-14,70,64.0],[125,-14,71,64.0],[125,-14,72,64.0],[125,-14,73,64.0],[125,-14,74,64.0],[125,-14,75,64.0],[125,-14,76,64.0],[125,-14,77,64.0],[125,-14,78,64.0],[125,-14,79,64.0],[125,-13,64,64.0],[125,-13,65,64.0],[125,-13,66,64.0],[125,-13,67,64.0],[125,-13,68,64.0],[125,-13,69,64.0],[125,-13,70,64.0],[125,-13,71,64.0],[125,-13,72,64.0],[125,-13,73,64.0],[125,-13,74,64.0],[125,-13,75,64.0],[125,-13,76,64.0],[125,-13,77,64.0],[125,-13,78,64.0],[125,-13,79,64.0],[125,-12,64,64.0],[125,-12,65,64.0],[125,-12,66,64.0],[125,-12,67,64.0],[125,-12,68,64.0],[125,-12,69,64.0],[125,-12,70,64.0],[125,-12,71,64.0],[125,-12,72,64.0],[125,-12,73,64.0],[125,-12,74,64.0],[125,-12,75,64.0],[125,-12,76,64.0],[125,-12,77,64.0],[125,-12,78,64.0],[125,-12,79,64.0],[125,-11,64,64.0],[125,-11,65,64.0],[125,-11,66,64.0],[125,-11,67,64.0],[125,-11,68,64.0],[125,-11,69,64.0],[125,-11,70,64.0],[125,-11,71,64.0],[125,-11,72,64.0],[125,-11,73,64.0],[125,-11,74,64.0],[125,-11,75,64.0],[125,-11,76,64.0],[125,-11,77,64.0],[125,-11,78,64.0],[125,-11,79,64.0],[125,-10,64,64.0],[125,-10,65,64.0],[125,-10,66,64.0],[125,-10,67,64.0],[125,-10,68,64.0],[125,-10,69,64.0],[125,-10,70,64.0],[125,-10,71,64.0],[125,-10,72,64.0],[125,-10,73,64.0],[125,-10,74,64.0],[125,-10,75,64.0],[125,-10,76,64.0],[125,-10,77,64.0],[125,-10,78,64.0],[125,-10,79,64.0],[125,-9,64,64.0],[125,-9,65,64.0],[125,-9,66,64.0],[125,-9,67,64.0],[125,-9,68,64.0],[125,-9,69,64.0],[125,-9,70,64.0],[125,-9,71,64.0],[125,-9,72,64.0],[125,-9,73,64.0],[125,-9,74,64.0],[125,-9,75,64.0],[125,-9,76,64.0],[125,-9,77,64.0],[125,-9,78,64.0],[125,-9,79,64.0],[125,-8,64,64.0],[125,-8,65,64.0],[125,-8,66,64.0],[125,-8,67,64.0],[125,-8,68,64.0],[125,-8,69,64.0],[125,-8,70,64.0],[125,-8,71,64.0],[125,-8,72,64.0],[125,-8,73,64.0],[125,-8,74,64.0],[125,-8,75,64.0],[125,-8,76,64.0],[125,-8,77,64.0],[125,-8,78,64.0],[125,-8,79,64.0],[125,-7,64,64.0],[125,-7,65,64.0],[125,-7,66,64.0],[125,-7,67,64.0],[125,-7,68,64.0],[125,-7,69,64.0],[125,-7,70,64.0],[125,-7,71,64.0],[125,-7,72,64.0],[125,-7,73,64.0],[125,-7,74,64.0],[125,-7,75,64.0],[125,-7,76,64.0],[125,-7,77,64.0],[125,-7,78,64.0],[125,-7,79,64.0],[125,-6,64,64.0],[125,-6,65,64.0],[125,-6,66,64.0],[125,-6,67,64.0],[125,-6,68,64.0],[125,-6,69,64.0],[125,-6,70,64.0],[125,-6,71,64.0],[125,-6,72,64.0],[125,-6,73,64.0],[125,-6,74,64.0],[125,-6,75,64.0],[125,-6,76,64.0],[125,-6,77,64.0],[125,-6,78,64.0],[125,-6,79,64.0],[125,-5,64,64.0],[125,-5,65,64.0],[125,-5,66,64.0],[125,-5,67,64.0],[125,-5,68,64.0],[125,-5,69,64.0],[125,-5,70,64.0],[125,-5,71,64.0],[125,-5,72,64.0],[125,-5,73,64.0],[125,-5,74,64.0],[125,-5,75,64.0],[125,-5,76,64.0],[125,-5,77,64.0],[125,-5,78,64.0],[125,-5,79,64.0],[125,-4,64,64.0],[125,-4,65,64.0],[125,-4,66,64.0],[125,-4,67,64.0],[125,-4,68,64.0],[125,-4,69,64.0],[125,-4,70,64.0],[125,-4,71,64.0],[125,-4,72,64.0],[125,-4,73,64.0],[125,-4,74,64.0],[125,-4,75,64.0],[125,-4,76,64.0],[125,-4,77,64.0],[125,-4,78,64.0],[125,-4,79,64.0],[125,-3,64,64.0],[125,-3,65,64.0],[125,-3,66,64.0],[125,-3,67,64.0],[125,-3,68,64.0],[125,-3,69,64.0],[125,-3,70,64.0],[125,-3,71,64.0],[125,-3,72,64.0],[125,-3,73,64.0],[125,-3,74,64.0],[125,-3,75,64.0],[125,-3,76,64.0],[125,-3,77,64.0],[125,-3,78,64.0],[125,-3,79,64.0],[125,-2,64,64.0],[125,-2,65,64.0],[125,-2,66,64.0],[125,-2,67,64.0],[125,-2,68,64.0],[125,-2,69,64.0],[125,-2,70,64.0],[125,-2,71,64.0],[125,-2,72,64.0],[125,-2,73,64.0],[125,-2,74,64.0],[125,-2,75,64.0],[125,-2,76,64.0],[125,-2,77,64.0],[125,-2,78,64.0],[125,-2,79,64.0],[125,-1,64,64.0],[125,-1,65,64.0],[125,-1,66,64.0],[125,-1,67,64.0],[125,-1,68,64.0],[125,-1,69,64.0],[125,-1,70,64.0],[125,-1,71,64.0],[125,-1,72,64.0],[125,-1,73,64.0],[125,-1,74,64.0],[125,-1,75,64.0],[125,-1,76,64.0],[125,-1,77,64.0],[125,-1,78,64.0],[125,-1,79,64.0],[125,0,64,64.0],[125,0,65,64.0],[125,0,66,64.0],[125,0,67,64.0],[125,0,68,64.0],[125,0,69,64.0],[125,0,70,64.0],[125,0,71,64.0],[125,0,72,64.0],[125,0,73,64.0],[125,0,74,64.0],[125,0,75,64.0],[125,0,76,64.0],[125,0,77,64.0],[125,0,78,64.0],[125,0,79,64.0],[125,1,64,64.0],[125,1,65,64.0],[125,1,66,64.0],[125,1,67,64.0],[125,1,68,64.0],[125,1,69,64.0],[125,1,70,64.0],[125,1,71,64.0],[125,1,72,64.0],[125,1,73,64.0],[125,1,74,64.0],[125,1,75,64.0],[125,1,76,64.0],[125,1,77,64.0],[125,1,78,64.0],[125,1,79,64.0],[125,2,64,64.0],[125,2,65,64.0],[125,2,66,64.0],[125,2,67,64.0],[125,2,68,64.0],[125,2,69,64.0],[125,2,70,64.0],[125,2,71,64.0],[125,2,72,64.0],[125,2,73,64.0],[125,2,74,64.0],[125,2,75,64.0],[125,2,76,64.0],[125,2,77,64.0],[125,2,78,64.0],[125,2,79,64.0],[125,3,64,64.0],[125,3,65,64.0],[125,3,66,64.0],[125,3,67,64.0],[125,3,68,64.0],[125,3,69,64.0],[125,3,70,64.0],[125,3,71,64.0],[125,3,72,64.0],[125,3,73,64.0],[125,3,74,64.0],[125,3,75,64.0],[125,3,76,64.0],[125,3,77,64.0],[125,3,78,64.0],[125,3,79,64.0],[125,4,64,64.0],[125,4,65,64.0],[125,4,66,64.0],[125,4,67,64.0],[125,4,68,64.0],[125,4,69,64.0],[125,4,70,64.0],[125,4,71,64.0],[125,4,72,64.0],[125,4,73,64.0],[125,4,74,64.0],[125,4,75,64.0],[125,4,76,64.0],[125,4,77,64.0],[125,4,78,64.0],[125,4,79,64.0],[125,5,64,64.0],[125,5,65,64.0],[125,5,66,64.0],[125,5,67,64.0],[125,5,68,64.0],[125,5,69,64.0],[125,5,70,64.0],[125,5,71,64.0],[125,5,72,64.0],[125,5,73,64.0],[125,5,74,64.0],[125,5,75,64.0],[125,5,76,64.0],[125,5,77,64.0],[125,5,78,64.0],[125,5,79,64.0],[125,6,64,64.0],[125,6,65,64.0],[125,6,66,64.0],[125,6,67,64.0],[125,6,68,64.0],[125,6,69,64.0],[125,6,70,64.0],[125,6,71,64.0],[125,6,72,64.0],[125,6,73,64.0],[125,6,74,64.0],[125,6,75,64.0],[125,6,76,64.0],[125,6,77,64.0],[125,6,78,64.0],[125,6,79,64.0],[125,7,64,64.0],[125,7,65,64.0],[125,7,66,64.0],[125,7,67,64.0],[125,7,68,64.0],[125,7,69,64.0],[125,7,70,64.0],[125,7,71,64.0],[125,7,72,64.0],[125,7,73,64.0],[125,7,74,64.0],[125,7,75,64.0],[125,7,76,64.0],[125,7,77,64.0],[125,7,78,64.0],[125,7,79,64.0],[125,8,64,64.0],[125,8,65,64.0],[125,8,66,64.0],[125,8,67,64.0],[125,8,68,64.0],[125,8,69,64.0],[125,8,70,64.0],[125,8,71,64.0],[125,8,72,64.0],[125,8,73,64.0],[125,8,74,64.0],[125,8,75,64.0],[125,8,76,64.0],[125,8,77,64.0],[125,8,78,64.0],[125,8,79,64.0],[125,9,64,64.0],[125,9,65,64.0],[125,9,66,64.0],[125,9,67,64.0],[125,9,68,64.0],[125,9,69,64.0],[125,9,70,64.0],[125,9,71,64.0],[125,9,72,64.0],[125,9,73,64.0],[125,9,74,64.0],[125,9,75,64.0],[125,9,76,64.0],[125,9,77,64.0],[125,9,78,64.0],[125,9,79,64.0],[125,10,64,64.0],[125,10,65,64.0],[125,10,66,64.0],[125,10,67,64.0],[125,10,68,64.0],[125,10,69,64.0],[125,10,70,64.0],[125,10,71,64.0],[125,10,72,64.0],[125,10,73,64.0],[125,10,74,64.0],[125,10,75,64.0],[125,10,76,64.0],[125,10,77,64.0],[125,10,78,64.0],[125,10,79,64.0],[125,11,64,64.0],[125,11,65,64.0],[125,11,66,64.0],[125,11,67,64.0],[125,11,68,64.0],[125,11,69,64.0],[125,11,70,64.0],[125,11,71,64.0],[125,11,72,64.0],[125,11,73,64.0],[125,11,74,64.0],[125,11,75,64.0],[125,11,76,64.0],[125,11,77,64.0],[125,11,78,64.0],[125,11,79,64.0],[125,12,64,64.0],[125,12,65,64.0],[125,12,66,64.0],[125,12,67,64.0],[125,12,68,64.0],[125,12,69,64.0],[125,12,70,64.0],[125,12,71,64.0],[125,12,72,64.0],[125,12,73,64.0],[125,12,74,64.0],[125,12,75,64.0],[125,12,76,64.0],[125,12,77,64.0],[125,12,78,64.0],[125,12,79,64.0],[125,13,64,64.0],[125,13,65,64.0],[125,13,66,64.0],[125,13,67,64.0],[125,13,68,64.0],[125,13,69,64.0],[125,13,70,64.0],[125,13,71,64.0],[125,13,72,64.0],[125,13,73,64.0],[125,13,74,64.0],[125,13,75,64.0],[125,13,76,64.0],[125,13,77,64.0],[125,13,78,64.0],[125,13,79,64.0],[125,14,64,64.0],[125,14,65,64.0],[125,14,66,64.0],[125,14,67,64.0],[125,14,68,64.0],[125,14,69,64.0],[125,14,70,64.0],[125,14,71,64.0],[125,14,72,64.0],[125,14,73,64.0],[125,14,74,64.0],[125,14,75,64.0],[125,14,76,64.0],[125,14,77,64.0],[125,14,78,64.0],[125,14,79,64.0],[125,15,64,64.0],[125,15,65,64.0],[125,15,66,64.0],[125,15,67,64.0],[125,15,68,64.0],[125,15,69,64.0],[125,15,70,64.0],[125,15,71,64.0],[125,15,72,64.0],[125,15,73,64.0],[125,15,74,64.0],[125,15,75,64.0],[125,15,76,64.0],[125,15,77,64.0],[125,15,78,64.0],[125,15,79,64.0],[125,16,64,64.0],[125,16,65,64.0],[125,16,66,64.0],[125,16,67,64.0],[125,16,68,64.0],[125,16,69,64.0],[125,16,70,64.0],[125,16,71,64.0],[125,16,72,64.0],[125,16,73,64.0],[125,16,74,64.0],[125,16,75,64.0],[125,16,76,64.0],[125,16,77,64.0],[125,16,78,64.0],[125,16,79,64.0],[125,17,64,64.0],[125,17,65,64.0],[125,17,66,64.0],[125,17,67,64.0],[125,17,68,64.0],[125,17,69,64.0],[125,17,70,64.0],[125,17,71,64.0],[125,17,72,64.0],[125,17,73,64.0],[125,17,74,64.0],[125,17,75,64.0],[125,17,76,64.0],[125,17,77,64.0],[125,17,78,64.0],[125,17,79,64.0],[125,18,64,64.0],[125,18,65,64.0],[125,18,66,64.0],[125,18,67,64.0],[125,18,68,64.0],[125,18,69,64.0],[125,18,70,64.0],[125,18,71,64.0],[125,18,72,64.0],[125,18,73,64.0],[125,18,74,64.0],[125,18,75,64.0],[125,18,76,64.0],[125,18,77,64.0],[125,18,78,64.0],[125,18,79,64.0],[125,19,64,64.0],[125,19,65,64.0],[125,19,66,64.0],[125,19,67,64.0],[125,19,68,64.0],[125,19,69,64.0],[125,19,70,64.0],[125,19,71,64.0],[125,19,72,64.0],[125,19,73,64.0],[125,19,74,64.0],[125,19,75,64.0],[125,19,76,64.0],[125,19,77,64.0],[125,19,78,64.0],[125,19,79,64.0],[125,20,64,64.0],[125,20,65,64.0],[125,20,66,64.0],[125,20,67,64.0],[125,20,68,64.0],[125,20,69,64.0],[125,20,70,64.0],[125,20,71,64.0],[125,20,72,64.0],[125,20,73,64.0],[125,20,74,64.0],[125,20,75,64.0],[125,20,76,64.0],[125,20,77,64.0],[125,20,78,64.0],[125,20,79,64.0],[125,21,64,64.0],[125,21,65,64.0],[125,21,66,64.0],[125,21,67,64.0],[125,21,68,64.0],[125,21,69,64.0],[125,21,70,64.0],[125,21,71,64.0],[125,21,72,64.0],[125,21,73,64.0],[125,21,74,64.0],[125,21,75,64.0],[125,21,76,64.0],[125,21,77,64.0],[125,21,78,64.0],[125,21,79,64.0],[125,22,64,64.0],[125,22,65,64.0],[125,22,66,64.0],[125,22,67,64.0],[125,22,68,64.0],[125,22,69,64.0],[125,22,70,64.0],[125,22,71,64.0],[125,22,72,64.0],[125,22,73,64.0],[125,22,74,64.0],[125,22,75,64.0],[125,22,76,64.0],[125,22,77,64.0],[125,22,78,64.0],[125,22,79,64.0],[125,23,64,64.0],[125,23,65,64.0],[125,23,66,64.0],[125,23,67,64.0],[125,23,68,64.0],[125,23,69,64.0],[125,23,70,64.0],[125,23,71,64.0],[125,23,72,64.0],[125,23,73,64.0],[125,23,74,64.0],[125,23,75,64.0],[125,23,76,64.0],[125,23,77,64.0],[125,23,78,64.0],[125,23,79,64.0],[125,24,64,64.0],[125,24,65,64.0],[125,24,66,64.0],[125,24,67,64.0],[125,24,68,64.0],[125,24,69,64.0],[125,24,70,64.0],[125,24,71,64.0],[125,24,72,64.0],[125,24,73,64.0],[125,24,74,64.0],[125,24,75,64.0],[125,24,76,64.0],[125,24,77,64.0],[125,24,78,64.0],[125,24,79,64.0],[125,25,64,64.0],[125,25,65,64.0],[125,25,66,64.0],[125,25,67,64.0],[125,25,68,64.0],[125,25,69,64.0],[125,25,70,64.0],[125,25,71,64.0],[125,25,72,64.0],[125,25,73,64.0],[125,25,74,64.0],[125,25,75,64.0],[125,25,76,64.0],[125,25,77,64.0],[125,25,78,64.0],[125,25,79,64.0],[125,26,64,64.0],[125,26,65,64.0],[125,26,66,64.0],[125,26,67,64.0],[125,26,68,64.0],[125,26,69,64.0],[125,26,70,64.0],[125,26,71,64.0],[125,26,72,64.0],[125,26,73,64.0],[125,26,74,64.0],[125,26,75,64.0],[125,26,76,64.0],[125,26,77,64.0],[125,26,78,64.0],[125,26,79,64.0],[125,27,64,64.0],[125,27,65,64.0],[125,27,66,64.0],[125,27,67,64.0],[125,27,68,64.0],[125,27,69,64.0],[125,27,70,64.0],[125,27,71,64.0],[125,27,72,64.0],[125,27,73,64.0],[125,27,74,64.0],[125,27,75,64.0],[125,27,76,64.0],[125,27,77,64.0],[125,27,78,64.0],[125,27,79,64.0],[125,28,64,64.0],[125,28,65,64.0],[125,28,66,64.0],[125,28,67,64.0],[125,28,68,64.0],[125,28,69,64.0],[125,28,70,64.0],[125,28,71,64.0],[125,28,72,64.0],[125,28,73,64.0],[125,28,74,64.0],[125,28,75,64.0],[125,28,76,64.0],[125,28,77,64.0],[125,28,78,64.0],[125,28,79,64.0],[125,29,64,64.0],[125,29,65,64.0],[125,29,66,64.0],[125,29,67,64.0],[125,29,68,64.0],[125,29,69,64.0],[125,29,70,64.0],[125,29,71,64.0],[125,29,72,64.0],[125,29,73,64.0],[125,29,74,64.0],[125,29,75,64.0],[125,29,76,64.0],[125,29,77,64.0],[125,29,78,64.0],[125,29,79,64.0],[125,30,64,64.0],[125,30,65,64.0],[125,30,66,64.0],[125,30,67,64.0],[125,30,68,64.0],[125,30,69,64.0],[125,30,70,64.0],[125,30,71,64.0],[125,30,72,64.0],[125,30,73,64.0],[125,30,74,64.0],[125,30,75,64.0],[125,30,76,64.0],[125,30,77,64.0],[125,30,78,64.0],[125,30,79,64.0],[125,31,64,64.0],[125,31,65,64.0],[125,31,66,64.0],[125,31,67,64.0],[125,31,68,64.0],[125,31,69,64.0],[125,31,70,64.0],[125,31,71,64.0],[125,31,72,64.0],[125,31,73,64.0],[125,31,74,64.0],[125,31,75,64.0],[125,31,76,64.0],[125,31,77,64.0],[125,31,78,64.0],[125,31,79,64.0],[125,32,64,64.0],[125,32,65,64.0],[125,32,66,64.0],[125,32,67,64.0],[125,32,68,64.0],[125,32,69,64.0],[125,32,70,64.0],[125,32,71,64.0],[125,32,72,64.0],[125,32,73,64.0],[125,32,74,64.0],[125,32,75,64.0],[125,32,76,64.0],[125,32,77,64.0],[125,32,78,64.0],[125,32,79,64.0],[125,33,64,64.0],[125,33,65,64.0],[125,33,66,64.0],[125,33,67,64.0],[125,33,68,64.0],[125,33,69,64.0],[125,33,70,64.0],[125,33,71,64.0],[125,33,72,64.0],[125,33,73,64.0],[125,33,74,64.0],[125,33,75,64.0],[125,33,76,64.0],[125,33,77,64.0],[125,33,78,64.0],[125,33,79,64.0],[125,34,64,64.0],[125,34,65,64.0],[125,34,66,64.0],[125,34,67,64.0],[125,34,68,64.0],[125,34,69,64.0],[125,34,70,64.0],[125,34,71,64.0],[125,34,72,64.0],[125,34,73,64.0],[125,34,74,64.0],[125,34,75,64.0],[125,34,76,64.0],[125,34,77,64.0],[125,34,78,64.0],[125,34,79,64.0],[125,35,64,64.0],[125,35,65,64.0],[125,35,66,64.0],[125,35,67,64.0],[125,35,68,64.0],[125,35,69,64.0],[125,35,70,64.0],[125,35,71,64.0],[125,35,72,64.0],[125,35,73,64.0],[125,35,74,64.0],[125,35,75,64.0],[125,35,76,64.0],[125,35,77,64.0],[125,35,78,64.0],[125,35,79,64.0],[125,36,64,64.0],[125,36,65,64.0],[125,36,66,64.0],[125,36,67,64.0],[125,36,68,64.0],[125,36,69,64.0],[125,36,70,64.0],[125,36,71,64.0],[125,36,72,64.0],[125,36,73,64.0],[125,36,74,64.0],[125,36,75,64.0],[125,36,76,64.0],[125,36,77,64.0],[125,36,78,64.0],[125,36,79,64.0],[125,37,64,64.0],[125,37,65,64.0],[125,37,66,64.0],[125,37,67,64.0],[125,37,68,64.0],[125,37,69,64.0],[125,37,70,64.0],[125,37,71,64.0],[125,37,72,64.0],[125,37,73,64.0],[125,37,74,64.0],[125,37,75,64.0],[125,37,76,64.0],[125,37,77,64.0],[125,37,78,64.0],[125,37,79,64.0],[125,38,64,64.0],[125,38,65,64.0],[125,38,66,64.0],[125,38,67,64.0],[125,38,68,64.0],[125,38,69,64.0],[125,38,70,64.0],[125,38,71,64.0],[125,38,72,64.0],[125,38,73,64.0],[125,38,74,64.0],[125,38,75,64.0],[125,38,76,64.0],[125,38,77,64.0],[125,38,78,64.0],[125,38,79,64.0],[125,39,64,64.0],[125,39,65,64.0],[125,39,66,64.0],[125,39,67,64.0],[125,39,68,64.0],[125,39,69,64.0],[125,39,70,64.0],[125,39,71,64.0],[125,39,72,64.0],[125,39,73,64.0],[125,39,74,64.0],[125,39,75,64.0],[125,39,76,64.0],[125,39,77,64.0],[125,39,78,64.0],[125,39,79,64.0],[125,40,64,64.0],[125,40,65,64.0],[125,40,66,64.0],[125,40,67,64.0],[125,40,68,64.0],[125,40,69,64.0],[125,40,70,64.0],[125,40,71,64.0],[125,40,72,64.0],[125,40,73,64.0],[125,40,74,64.0],[125,40,75,64.0],[125,40,76,64.0],[125,40,77,64.0],[125,40,78,64.0],[125,40,79,64.0],[125,41,64,64.0],[125,41,65,64.0],[125,41,66,64.0],[125,41,67,64.0],[125,41,68,64.0],[125,41,69,64.0],[125,41,70,64.0],[125,41,71,64.0],[125,41,72,64.0],[125,41,73,64.0],[125,41,74,64.0],[125,41,75,64.0],[125,41,76,64.0],[125,41,77,64.0],[125,41,78,64.0],[125,41,79,64.0],[125,42,64,64.0],[125,42,65,64.0],[125,42,66,64.0],[125,42,67,64.0],[125,42,68,64.0],[125,42,69,64.0],[125,42,70,64.0],[125,42,71,64.0],[125,42,72,64.0],[125,42,73,64.0],[125,42,74,64.0],[125,42,75,64.0],[125,42,76,64.0],[125,42,77,64.0],[125,42,78,64.0],[125,42,79,64.0],[125,43,64,64.0],[125,43,65,64.0],[125,43,66,64.0],[125,43,67,64.0],[125,43,68,64.0],[125,43,69,64.0],[125,43,70,64.0],[125,43,71,64.0],[125,43,72,64.0],[125,43,73,64.0],[125,43,74,64.0],[125,43,75,64.0],[125,43,76,64.0],[125,43,77,64.0],[125,43,78,64.0],[125,43,79,64.0],[125,44,64,64.0],[125,44,65,64.0],[125,44,66,64.0],[125,44,67,64.0],[125,44,68,64.0],[125,44,69,64.0],[125,44,70,64.0],[125,44,71,64.0],[125,44,72,64.0],[125,44,73,64.0],[125,44,74,64.0],[125,44,75,64.0],[125,44,76,64.0],[125,44,77,64.0],[125,44,78,64.0],[125,44,79,64.0],[125,45,64,64.0],[125,45,65,64.0],[125,45,66,64.0],[125,45,67,64.0],[125,45,68,64.0],[125,45,69,64.0],[125,45,70,64.0],[125,45,71,64.0],[125,45,72,64.0],[125,45,73,64.0],[125,45,74,64.0],[125,45,75,64.0],[125,45,76,64.0],[125,45,77,64.0],[125,45,78,64.0],[125,45,79,64.0],[125,46,64,64.0],[125,46,65,64.0],[125,46,66,64.0],[125,46,67,64.0],[125,46,68,64.0],[125,46,69,64.0],[125,46,70,64.0],[125,46,71,64.0],[125,46,72,64.0],[125,46,73,64.0],[125,46,74,64.0],[125,46,75,64.0],[125,46,76,64.0],[125,46,77,64.0],[125,46,78,64.0],[125,46,79,64.0],[125,47,64,64.0],[125,47,65,64.0],[125,47,66,64.0],[125,47,67,64.0],[125,47,68,64.0],[125,47,69,64.0],[125,47,70,64.0],[125,47,71,64.0],[125,47,72,64.0],[125,47,73,64.0],[125,47,74,64.0],[125,47,75,64.0],[125,47,76,64.0],[125,47,77,64.0],[125,47,78,64.0],[125,47,79,64.0],[125,48,64,64.0],[125,48,65,64.0],[125,48,66,64.0],[125,48,67,64.0],[125,48,68,64.0],[125,48,69,64.0],[125,48,70,64.0],[125,48,71,64.0],[125,48,72,64.0],[125,48,73,64.0],[125,48,74,64.0],[125,48,75,64.0],[125,48,76,64.0],[125,48,77,64.0],[125,48,78,64.0],[125,48,79,64.0],[125,49,64,64.0],[125,49,65,64.0],[125,49,66,64.0],[125,49,67,64.0],[125,49,68,64.0],[125,49,69,64.0],[125,49,70,64.0],[125,49,71,64.0],[125,49,72,64.0],[125,49,73,64.0],[125,49,74,64.0],[125,49,75,64.0],[125,49,76,64.0],[125,49,77,64.0],[125,49,78,64.0],[125,49,79,64.0],[125,50,64,64.0],[125,50,65,64.0],[125,50,66,64.0],[125,50,67,64.0],[125,50,68,64.0],[125,50,69,64.0],[125,50,70,64.0],[125,50,71,64.0],[125,50,72,64.0],[125,50,73,64.0],[125,50,74,64.0],[125,50,75,64.0],[125,50,76,64.0],[125,50,77,64.0],[125,50,78,64.0],[125,50,79,64.0],[125,51,64,64.0],[125,51,65,64.0],[125,51,66,64.0],[125,51,67,64.0],[125,51,68,64.0],[125,51,69,64.0],[125,51,70,64.0],[125,51,71,64.0],[125,51,72,64.0],[125,51,73,64.0],[125,51,74,64.0],[125,51,75,64.0],[125,51,76,64.0],[125,51,77,64.0],[125,51,78,64.0],[125,51,79,64.0],[125,52,64,64.0],[125,52,65,64.0],[125,52,66,64.0],[125,52,67,64.0],[125,52,68,64.0],[125,52,69,64.0],[125,52,70,64.0],[125,52,71,64.0],[125,52,72,64.0],[125,52,73,64.0],[125,52,74,64.0],[125,52,75,64.0],[125,52,76,64.0],[125,52,77,64.0],[125,52,78,64.0],[125,52,79,64.0],[125,53,64,64.0],[125,53,65,64.0],[125,53,66,64.0],[125,53,67,64.0],[125,53,68,64.0],[125,53,69,64.0],[125,53,70,64.0],[125,53,71,64.0],[125,53,72,64.0],[125,53,73,64.0],[125,53,74,64.0],[125,53,75,64.0],[125,53,76,64.0],[125,53,77,64.0],[125,53,78,64.0],[125,53,79,64.0],[125,54,64,64.0],[125,54,65,64.0],[125,54,66,64.0],[125,54,67,64.0],[125,54,68,64.0],[125,54,69,64.0],[125,54,70,64.0],[125,54,71,64.0],[125,54,72,64.0],[125,54,73,64.0],[125,54,74,64.0],[125,54,75,64.0],[125,54,76,64.0],[125,54,77,64.0],[125,54,78,64.0],[125,54,79,64.0],[125,55,64,64.0],[125,55,65,64.0],[125,55,66,64.0],[125,55,67,64.0],[125,55,68,64.0],[125,55,69,64.0],[125,55,70,64.0],[125,55,71,64.0],[125,55,72,64.0],[125,55,73,64.0],[125,55,74,64.0],[125,55,75,64.0],[125,55,76,64.0],[125,55,77,64.0],[125,55,78,64.0],[125,55,79,64.0],[125,56,64,64.0],[125,56,65,64.0],[125,56,66,64.0],[125,56,67,64.0],[125,56,68,64.0],[125,56,69,64.0],[125,56,70,64.0],[125,56,71,64.0],[125,56,72,64.0],[125,56,73,64.0],[125,56,74,64.0],[125,56,75,64.0],[125,56,76,64.0],[125,56,77,64.0],[125,56,78,64.0],[125,56,79,64.0],[125,57,64,64.0],[125,57,65,64.0],[125,57,66,64.0],[125,57,67,64.0],[125,57,68,64.0],[125,57,69,64.0],[125,57,70,64.0],[125,57,71,64.0],[125,57,72,64.0],[125,57,73,64.0],[125,57,74,64.0],[125,57,75,64.0],[125,57,76,64.0],[125,57,77,64.0],[125,57,78,64.0],[125,57,79,64.0],[125,58,64,64.0],[125,58,65,64.0],[125,58,66,64.0],[125,58,67,64.0],[125,58,68,64.0],[125,58,69,64.0],[125,58,70,64.0],[125,58,71,64.0],[125,58,72,64.0],[125,58,73,64.0],[125,58,74,64.0],[125,58,75,64.0],[125,58,76,64.0],[125,58,77,64.0],[125,58,78,64.0],[125,58,79,64.0],[125,59,64,64.0],[125,59,65,64.0],[125,59,66,64.0],[125,59,67,64.0],[125,59,68,64.0],[125,59,69,64.0],[125,59,70,64.0],[125,59,71,64.0],[125,59,72,64.0],[125,59,73,64.0],[125,59,74,64.0],[125,59,75,64.0],[125,59,76,64.0],[125,59,77,64.0],[125,59,78,64.0],[125,59,79,64.0],[125,60,64,64.0],[125,60,65,64.0],[125,60,66,64.0],[125,60,67,64.0],[125,60,68,64.0],[125,60,69,64.0],[125,60,70,64.0],[125,60,71,64.0],[125,60,72,64.0],[125,60,73,64.0],[125,60,74,64.0],[125,60,75,64.0],[125,60,76,64.0],[125,60,77,64.0],[125,60,78,64.0],[125,60,79,64.0],[125,61,64,64.0],[125,61,65,64.0],[125,61,66,64.0],[125,61,67,64.0],[125,61,68,64.0],[125,61,69,64.0],[125,61,70,64.0],[125,61,71,64.0],[125,61,72,64.0],[125,61,73,64.0],[125,61,74,64.0],[125,61,75,64.0],[125,61,76,64.0],[125,61,77,64.0],[125,61,78,64.0],[125,61,79,64.0],[125,62,64,64.0],[125,62,65,64.0],[125,62,66,64.0],[125,62,67,64.0],[125,62,68,64.0],[125,62,69,64.0],[125,62,70,64.0],[125,62,71,64.0],[125,62,72,64.0],[125,62,73,64.0],[125,62,74,64.0],[125,62,75,64.0],[125,62,76,64.0],[125,62,77,64.0],[125,62,78,64.0],[125,62,79,64.0],[125,63,64,64.0],[125,63,65,64.0],[125,63,66,64.0],[125,63,67,64.0],[125,63,68,64.0],[125,63,69,64.0],[125,63,70,64.0],[125,63,71,64.0],[125,63,72,64.0],[125,63,73,64.0],[125,63,74,64.0],[125,63,75,64.0],[125,63,76,64.0],[125,63,77,64.0],[125,63,78,64.0],[125,63,79,64.0],[125,64,64,64.0],[125,64,65,64.0],[125,64,66,64.0],[125,64,67,64.0],[125,64,68,64.0],[125,64,69,64.0],[125,64,70,64.0],[125,64,71,64.0],[125,64,72,64.0],[125,64,73,64.0],[125,64,74,64.0],[125,64,75,64.0],[125,64,76,64.0],[125,64,77,64.0],[125,64,78,64.0],[125,64,79,64.0],[125,65,64,64.0],[125,65,65,64.0],[125,65,66,64.0],[125,65,67,64.0],[125,65,68,64.0],[125,65,69,64.0],[125,65,70,64.0],[125,65,71,64.0],[125,65,72,64.0],[125,65,73,64.0],[125,65,74,64.0],[125,65,75,64.0],[125,65,76,64.0],[125,65,77,64.0],[125,65,78,64.0],[125,65,79,64.0],[125,66,64,64.0],[125,66,65,64.0],[125,66,66,64.0],[125,66,67,64.0],[125,66,68,64.0],[125,66,69,64.0],[125,66,70,64.0],[125,66,71,64.0],[125,66,72,64.0],[125,66,73,64.0],[125,66,74,64.0],[125,66,75,64.0],[125,66,76,64.0],[125,66,77,64.0],[125,66,78,64.0],[125,66,79,64.0],[125,67,64,64.0],[125,67,65,64.0],[125,67,66,64.0],[125,67,67,64.0],[125,67,68,64.0],[125,67,69,64.0],[125,67,70,64.0],[125,67,71,64.0],[125,67,72,64.0],[125,67,73,64.0],[125,67,74,64.0],[125,67,75,64.0],[125,67,76,64.0],[125,67,77,64.0],[125,67,78,64.0],[125,67,79,64.0],[125,68,64,64.0],[125,68,65,64.0],[125,68,66,64.0],[125,68,67,64.0],[125,68,68,64.0],[125,68,69,64.0],[125,68,70,64.0],[125,68,71,64.0],[125,68,72,64.0],[125,68,73,64.0],[125,68,74,64.0],[125,68,75,64.0],[125,68,76,64.0],[125,68,77,64.0],[125,68,78,64.0],[125,68,79,64.0],[125,69,64,64.0],[125,69,65,64.0],[125,69,66,64.0],[125,69,67,64.0],[125,69,68,64.0],[125,69,69,64.0],[125,69,70,64.0],[125,69,71,64.0],[125,69,72,64.0],[125,69,73,64.0],[125,69,74,64.0],[125,69,75,64.0],[125,69,76,64.0],[125,69,77,64.0],[125,69,78,64.0],[125,69,79,64.0],[125,70,64,64.0],[125,70,65,64.0],[125,70,66,64.0],[125,70,67,64.0],[125,70,68,64.0],[125,70,69,64.0],[125,70,70,64.0],[125,70,71,64.0],[125,70,72,64.0],[125,70,73,64.0],[125,70,74,64.0],[125,70,75,64.0],[125,70,76,64.0],[125,70,77,64.0],[125,70,78,64.0],[125,70,79,64.0],[125,71,64,64.0],[125,71,65,64.0],[125,71,66,64.0],[125,71,67,64.0],[125,71,68,64.0],[125,71,69,64.0],[125,71,70,64.0],[125,71,71,64.0],[125,71,72,64.0],[125,71,73,64.0],[125,71,74,64.0],[125,71,75,64.0],[125,71,76,64.0],[125,71,77,64.0],[125,71,78,64.0],[125,71,79,64.0],[125,72,64,64.0],[125,72,65,64.0],[125,72,66,64.0],[125,72,67,64.0],[125,72,68,64.0],[125,72,69,64.0],[125,72,70,64.0],[125,72,71,64.0],[125,72,72,64.0],[125,72,73,64.0],[125,72,74,64.0],[125,72,75,64.0],[125,72,76,64.0],[125,72,77,64.0],[125,72,78,64.0],[125,72,79,64.0],[125,73,64,64.0],[125,73,65,64.0],[125,73,66,64.0],[125,73,67,64.0],[125,73,68,64.0],[125,73,69,64.0],[125,73,70,64.0],[125,73,71,64.0],[125,73,72,64.0],[125,73,73,64.0],[125,73,74,64.0],[125,73,75,64.0],[125,73,76,64.0],[125,73,77,64.0],[125,73,78,64.0],[125,73,79,64.0],[125,74,64,64.0],[125,74,65,64.0],[125,74,66,64.0],[125,74,67,64.0],[125,74,68,64.0],[125,74,69,64.0],[125,74,70,64.0],[125,74,71,64.0],[125,74,72,64.0],[125,74,73,64.0],[125,74,74,64.0],[125,74,75,64.0],[125,74,76,64.0],[125,74,77,64.0],[125,74,78,64.0],[125,74,79,64.0],[125,75,64,64.0],[125,75,65,64.0],[125,75,66,64.0],[125,75,67,64.0],[125,75,68,64.0],[125,75,69,64.0],[125,75,70,64.0],[125,75,71,64.0],[125,75,72,64.0],[125,75,73,64.0],[125,75,74,64.0],[125,75,75,64.0],[125,75,76,64.0],[125,75,77,64.0],[125,75,78,64.0],[125,75,79,64.0],[125,76,64,64.0],[125,76,65,64.0],[125,76,66,64.0],[125,76,67,64.0],[125,76,68,64.0],[125,76,69,64.0],[125,76,70,64.0],[125,76,71,64.0],[125,76,72,64.0],[125,76,73,64.0],[125,76,74,64.0],[125,76,75,64.0],[125,76,76,64.0],[125,76,77,64.0],[125,76,78,64.0],[125,76,79,64.0],[125,77,64,64.0],[125,77,65,64.0],[125,77,66,64.0],[125,77,67,64.0],[125,77,68,64.0],[125,77,69,64.0],[125,77,70,64.0],[125,77,71,64.0],[125,77,72,64.0],[125,77,73,64.0],[125,77,74,64.0],[125,77,75,64.0],[125,77,76,64.0],[125,77,77,64.0],[125,77,78,64.0],[125,77,79,64.0],[125,78,64,64.0],[125,78,65,64.0],[125,78,66,64.0],[125,78,67,64.0],[125,78,68,64.0],[125,78,69,64.0],[125,78,70,64.0],[125,78,71,64.0],[125,78,72,64.0],[125,78,73,64.0],[125,78,74,64.0],[125,78,75,64.0],[125,78,76,64.0],[125,78,77,64.0],[125,78,78,64.0],[125,78,79,64.0],[125,79,64,64.0],[125,79,65,64.0],[125,79,66,64.0],[125,79,67,64.0],[125,79,68,64.0],[125,79,69,64.0],[125,79,70,64.0],[125,79,71,64.0],[125,79,72,64.0],[125,79,73,64.0],[125,79,74,64.0],[125,79,75,64.0],[125,79,76,64.0],[125,79,77,64.0],[125,79,78,64.0],[125,79,79,64.0],[125,80,64,64.0],[125,80,65,64.0],[125,80,66,64.0],[125,80,67,64.0],[125,80,68,64.0],[125,80,69,64.0],[125,80,70,64.0],[125,80,71,64.0],[125,80,72,64.0],[125,80,73,64.0],[125,80,74,64.0],[125,80,75,64.0],[125,80,76,64.0],[125,80,77,64.0],[125,80,78,64.0],[125,80,79,64.0],[125,81,64,64.0],[125,81,65,64.0],[125,81,66,64.0],[125,81,67,64.0],[125,81,68,64.0],[125,81,69,64.0],[125,81,70,64.0],[125,81,71,64.0],[125,81,72,64.0],[125,81,73,64.0],[125,81,74,64.0],[125,81,75,64.0],[125,81,76,64.0],[125,81,77,64.0],[125,81,78,64.0],[125,81,79,64.0],[125,82,64,64.0],[125,82,65,64.0],[125,82,66,64.0],[125,82,67,64.0],[125,82,68,64.0],[125,82,69,64.0],[125,82,70,64.0],[125,82,71,64.0],[125,82,72,64.0],[125,82,73,64.0],[125,82,74,64.0],[125,82,75,64.0],[125,82,76,64.0],[125,82,77,64.0],[125,82,78,64.0],[125,82,79,64.0],[125,83,64,64.0],[125,83,65,64.0],[125,83,66,64.0],[125,83,67,64.0],[125,83,68,64.0],[125,83,69,64.0],[125,83,70,64.0],[125,83,71,64.0],[125,83,72,64.0],[125,83,73,64.0],[125,83,74,64.0],[125,83,75,64.0],[125,83,76,64.0],[125,83,77,64.0],[125,83,78,64.0],[125,83,79,64.0],[125,84,64,64.0],[125,84,65,64.0],[125,84,66,64.0],[125,84,67,64.0],[125,84,68,64.0],[125,84,69,64.0],[125,84,70,64.0],[125,84,71,64.0],[125,84,72,64.0],[125,84,73,64.0],[125,84,74,64.0],[125,84,75,64.0],[125,84,76,64.0],[125,84,77,64.0],[125,84,78,64.0],[125,84,79,64.0],[125,85,64,64.0],[125,85,65,64.0],[125,85,66,64.0],[125,85,67,64.0],[125,85,68,64.0],[125,85,69,64.0],[125,85,70,64.0],[125,85,71,64.0],[125,85,72,64.0],[125,85,73,64.0],[125,85,74,64.0],[125,85,75,64.0],[125,85,76,64.0],[125,85,77,64.0],[125,85,78,64.0],[125,85,79,64.0],[125,86,64,64.0],[125,86,65,64.0],[125,86,66,64.0],[125,86,67,64.0],[125,86,68,64.0],[125,86,69,64.0],[125,86,70,64.0],[125,86,71,64.0],[125,86,72,64.0],[125,86,73,64.0],[125,86,74,64.0],[125,86,75,64.0],[125,86,76,64.0],[125,86,77,64.0],[125,86,78,64.0],[125,86,79,64.0],[125,87,64,64.0],[125,87,65,64.0],[125,87,66,64.0],[125,87,67,64.0],[125,87,68,64.0],[125,87,69,64.0],[125,87,70,64.0],[125,87,71,64.0],[125,87,72,64.0],[125,87,73,64.0],[125,87,74,64.0],[125,87,75,64.0],[125,87,76,64.0],[125,87,77,64.0],[125,87,78,64.0],[125,87,79,64.0],[125,88,64,64.0],[125,88,65,64.0],[125,88,66,64.0],[125,88,67,64.0],[125,88,68,64.0],[125,88,69,64.0],[125,88,70,64.0],[125,88,71,64.0],[125,88,72,64.0],[125,88,73,64.0],[125,88,74,64.0],[125,88,75,64.0],[125,88,76,64.0],[125,88,77,64.0],[125,88,78,64.0],[125,88,79,64.0],[125,89,64,64.0],[125,89,65,64.0],[125,89,66,64.0],[125,89,67,64.0],[125,89,68,64.0],[125,89,69,64.0],[125,89,70,64.0],[125,89,71,64.0],[125,89,72,64.0],[125,89,73,64.0],[125,89,74,64.0],[125,89,75,64.0],[125,89,76,64.0],[125,89,77,64.0],[125,89,78,64.0],[125,89,79,64.0],[125,90,64,64.0],[125,90,65,64.0],[125,90,66,64.0],[125,90,67,64.0],[125,90,68,64.0],[125,90,69,64.0],[125,90,70,64.0],[125,90,71,64.0],[125,90,72,64.0],[125,90,73,64.0],[125,90,74,64.0],[125,90,75,64.0],[125,90,76,64.0],[125,90,77,64.0],[125,90,78,64.0],[125,90,79,64.0],[125,91,64,64.0],[125,91,65,64.0],[125,91,66,64.0],[125,91,67,64.0],[125,91,68,64.0],[125,91,69,64.0],[125,91,70,64.0],[125,91,71,64.0],[125,91,72,64.0],[125,91,73,64.0],[125,91,74,64.0],[125,91,75,64.0],[125,91,76,64.0],[125,91,77,64.0],[125,91,78,64.0],[125,91,79,64.0],[125,92,64,64.0],[125,92,65,64.0],[125,92,66,64.0],[125,92,67,64.0],[125,92,68,64.0],[125,92,69,64.0],[125,92,70,64.0],[125,92,71,64.0],[125,92,72,64.0],[125,92,73,64.0],[125,92,74,64.0],[125,92,75,64.0],[125,92,76,64.0],[125,92,77,64.0],[125,92,78,64.0],[125,92,79,64.0],[125,93,64,64.0],[125,93,65,64.0],[125,93,66,64.0],[125,93,67,64.0],[125,93,68,64.0],[125,93,69,64.0],[125,93,70,64.0],[125,93,71,64.0],[125,93,72,64.0],[125,93,73,64.0],[125,93,74,64.0],[125,93,75,64.0],[125,93,76,64.0],[125,93,77,64.0],[125,93,78,64.0],[125,93,79,64.0],[125,94,64,64.0],[125,94,65,64.0],[125,94,66,64.0],[125,94,67,64.0],[125,94,68,64.0],[125,94,69,64.0],[125,94,70,64.0],[125,94,71,64.0],[125,94,72,64.0],[125,94,73,64.0],[125,94,74,64.0],[125,94,75,64.0],[125,94,76,64.0],[125,94,77,64.0],[125,94,78,64.0],[125,94,79,64.0],[125,95,64,64.0],[125,95,65,64.0],[125,95,66,64.0],[125,95,67,64.0],[125,95,68,64.0],[125,95,69,64.0],[125,95,70,64.0],[125,95,71,64.0],[125,95,72,64.0],[125,95,73,64.0],[125,95,74,64.0],[125,95,75,64.0],[125,95,76,64.0],[125,95,77,64.0],[125,95,78,64.0],[125,95,79,64.0],[125,96,64,64.0],[125,96,65,64.0],[125,96,66,64.0],[125,96,67,64.0],[125,96,68,64.0],[125,96,69,64.0],[125,96,70,64.0],[125,96,71,64.0],[125,96,72,64.0],[125,96,73,64.0],[125,96,74,64.0],[125,96,75,64.0],[125,96,76,64.0],[125,96,77,64.0],[125,96,78,64.0],[125,96,79,64.0],[125,97,64,64.0],[125,97,65,64.0],[125,97,66,64.0],[125,97,67,64.0],[125,97,68,64.0],[125,97,69,64.0],[125,97,70,64.0],[125,97,71,64.0],[125,97,72,64.0],[125,97,73,64.0],[125,97,74,64.0],[125,97,75,64.0],[125,97,76,64.0],[125,97,77,64.0],[125,97,78,64.0],[125,97,79,64.0],[125,98,64,64.0],[125,98,65,64.0],[125,98,66,64.0],[125,98,67,64.0],[125,98,68,64.0],[125,98,69,64.0],[125,98,70,64.0],[125,98,71,64.0],[125,98,72,64.0],[125,98,73,64.0],[125,98,74,64.0],[125,98,75,64.0],[125,98,76,64.0],[125,98,77,64.0],[125,98,78,64.0],[125,98,79,64.0],[125,99,64,64.0],[125,99,65,64.0],[125,99,66,64.0],[125,99,67,64.0],[125,99,68,64.0],[125,99,69,64.0],[125,99,70,64.0],[125,99,71,64.0],[125,99,72,64.0],[125,99,73,64.0],[125,99,74,64.0],[125,99,75,64.0],[125,99,76,64.0],[125,99,77,64.0],[125,99,78,64.0],[125,99,79,64.0],[125,100,64,64.0],[125,100,65,64.0],[125,100,66,64.0],[125,100,67,64.0],[125,100,68,64.0],[125,100,69,64.0],[125,100,70,64.0],[125,100,71,64.0],[125,100,72,64.0],[125,100,73,64.0],[125,100,74,64.0],[125,100,75,64.0],[125,100,76,64.0],[125,100,77,64.0],[125,100,78,64.0],[125,100,79,64.0],[125,101,64,64.0],[125,101,65,64.0],[125,101,66,64.0],[125,101,67,64.0],[125,101,68,64.0],[125,101,69,64.0],[125,101,70,64.0],[125,101,71,64.0],[125,101,72,64.0],[125,101,73,64.0],[125,101,74,64.0],[125,101,75,64.0],[125,101,76,64.0],[125,101,77,64.0],[125,101,78,64.0],[125,101,79,64.0],[125,102,64,64.0],[125,102,65,64.0],[125,102,66,64.0],[125,102,67,64.0],[125,102,68,64.0],[125,102,69,64.0],[125,102,70,64.0],[125,102,71,64.0],[125,102,72,64.0],[125,102,73,64.0],[125,102,74,64.0],[125,102,75,64.0],[125,102,76,64.0],[125,102,77,64.0],[125,102,78,64.0],[125,102,79,64.0],[125,103,64,64.0],[125,103,65,64.0],[125,103,66,64.0],[125,103,67,64.0],[125,103,68,64.0],[125,103,69,64.0],[125,103,70,64.0],[125,103,71,64.0],[125,103,72,64.0],[125,103,73,64.0],[125,103,74,64.0],[125,103,75,64.0],[125,103,76,64.0],[125,103,77,64.0],[125,103,78,64.0],[125,103,79,64.0],[125,104,64,64.0],[125,104,65,64.0],[125,104,66,64.0],[125,104,67,64.0],[125,104,68,64.0],[125,104,69,64.0],[125,104,70,64.0],[125,104,71,64.0],[125,104,72,64.0],[125,104,73,64.0],[125,104,74,64.0],[125,104,75,64.0],[125,104,76,64.0],[125,104,77,64.0],[125,104,78,64.0],[125,104,79,64.0],[125,105,64,64.0],[125,105,65,64.0],[125,105,66,64.0],[125,105,67,64.0],[125,105,68,64.0],[125,105,69,64.0],[125,105,70,64.0],[125,105,71,64.0],[125,105,72,64.0],[125,105,73,64.0],[125,105,74,64.0],[125,105,75,64.0],[125,105,76,64.0],[125,105,77,64.0],[125,105,78,64.0],[125,105,79,64.0],[125,106,64,64.0],[125,106,65,64.0],[125,106,66,64.0],[125,106,67,64.0],[125,106,68,64.0],[125,106,69,64.0],[125,106,70,64.0],[125,106,71,64.0],[125,106,72,64.0],[125,106,73,64.0],[125,106,74,64.0],[125,106,75,64.0],[125,106,76,64.0],[125,106,77,64.0],[125,106,78,64.0],[125,106,79,64.0],[125,107,64,64.0],[125,107,65,64.0],[125,107,66,64.0],[125,107,67,64.0],[125,107,68,64.0],[125,107,69,64.0],[125,107,70,64.0],[125,107,71,64.0],[125,107,72,64.0],[125,107,73,64.0],[125,107,74,64.0],[125,107,75,64.0],[125,107,76,64.0],[125,107,77,64.0],[125,107,78,64.0],[125,107,79,64.0],[125,108,64,64.0],[125,108,65,64.0],[125,108,66,64.0],[125,108,67,64.0],[125,108,68,64.0],[125,108,69,64.0],[125,108,70,64.0],[125,108,71,64.0],[125,108,72,64.0],[125,108,73,64.0],[125,108,74,64.0],[125,108,75,64.0],[125,108,76,64.0],[125,108,77,64.0],[125,108,78,64.0],[125,108,79,64.0],[125,109,64,64.0],[125,109,65,64.0],[125,109,66,64.0],[125,109,67,64.0],[125,109,68,64.0],[125,109,69,64.0],[125,109,70,64.0],[125,109,71,64.0],[125,109,72,64.0],[125,109,73,64.0],[125,109,74,64.0],[125,109,75,64.0],[125,109,76,64.0],[125,109,77,64.0],[125,109,78,64.0],[125,109,79,64.0],[125,110,64,64.0],[125,110,65,64.0],[125,110,66,64.0],[125,110,67,64.0],[125,110,68,64.0],[125,110,69,64.0],[125,110,70,64.0],[125,110,71,64.0],[125,110,72,64.0],[125,110,73,64.0],[125,110,74,64.0],[125,110,75,64.0],[125,110,76,64.0],[125,110,77,64.0],[125,110,78,64.0],[125,110,79,64.0],[125,111,64,64.0],[125,111,65,64.0],[125,111,66,64.0],[125,111,67,64.0],[125,111,68,64.0],[125,111,69,64.0],[125,111,70,64.0],[125,111,71,64.0],[125,111,72,64.0],[125,111,73,64.0],[125,111,74,64.0],[125,111,75,64.0],[125,111,76,64.0],[125,111,77,64.0],[125,111,78,64.0],[125,111,79,64.0],[125,112,64,64.0],[125,112,65,64.0],[125,112,66,64.0],[125,112,67,64.0],[125,112,68,64.0],[125,112,69,64.0],[125,112,70,64.0],[125,112,71,64.0],[125,112,72,64.0],[125,112,73,64.0],[125,112,74,64.0],[125,112,75,64.0],[125,112,76,64.0],[125,112,77,64.0],[125,112,78,64.0],[125,112,79,64.0],[125,113,64,64.0],[125,113,65,64.0],[125,113,66,64.0],[125,113,67,64.0],[125,113,68,64.0],[125,113,69,64.0],[125,113,70,64.0],[125,113,71,64.0],[125,113,72,64.0],[125,113,73,64.0],[125,113,74,64.0],[125,113,75,64.0],[125,113,76,64.0],[125,113,77,64.0],[125,113,78,64.0],[125,113,79,64.0],[125,114,64,64.0],[125,114,65,64.0],[125,114,66,64.0],[125,114,67,64.0],[125,114,68,64.0],[125,114,69,64.0],[125,114,70,64.0],[125,114,71,64.0],[125,114,72,64.0],[125,114,73,64.0],[125,114,74,64.0],[125,114,75,64.0],[125,114,76,64.0],[125,114,77,64.0],[125,114,78,64.0],[125,114,79,64.0],[125,115,64,64.0],[125,115,65,64.0],[125,115,66,64.0],[125,115,67,64.0],[125,115,68,64.0],[125,115,69,64.0],[125,115,70,64.0],[125,115,71,64.0],[125,115,72,64.0],[125,115,73,64.0],[125,115,74,64.0],[125,115,75,64.0],[125,115,76,64.0],[125,115,77,64.0],[125,115,78,64.0],[125,115,79,64.0],[125,116,64,64.0],[125,116,65,64.0],[125,116,66,64.0],[125,116,67,64.0],[125,116,68,64.0],[125,116,69,64.0],[125,116,70,64.0],[125,116,71,64.0],[125,116,72,64.0],[125,116,73,64.0],[125,116,74,64.0],[125,116,75,64.0],[125,116,76,64.0],[125,116,77,64.0],[125,116,78,64.0],[125,116,79,64.0],[125,117,64,64.0],[125,117,65,64.0],[125,117,66,64.0],[125,117,67,64.0],[125,117,68,64.0],[125,117,69,64.0],[125,117,70,64.0],[125,117,71,64.0],[125,117,72,64.0],[125,117,73,64.0],[125,117,74,64.0],[125,117,75,64.0],[125,117,76,64.0],[125,117,77,64.0],[125,117,78,64.0],[125,117,79,64.0],[125,118,64,64.0],[125,118,65,64.0],[125,118,66,64.0],[125,118,67,64.0],[125,118,68,64.0],[125,118,69,64.0],[125,118,70,64.0],[125,118,71,64.0],[125,118,72,64.0],[125,118,73,64.0],[125,118,74,64.0],[125,118,75,64.0],[125,118,76,64.0],[125,118,77,64.0],[125,118,78,64.0],[125,118,79,64.0],[125,119,64,64.0],[125,119,65,64.0],[125,119,66,64.0],[125,119,67,64.0],[125,119,68,64.0],[125,119,69,64.0],[125,119,70,64.0],[125,119,71,64.0],[125,119,72,64.0],[125,119,73,64.0],[125,119,74,64.0],[125,119,75,64.0],[125,119,76,64.0],[125,119,77,64.0],[125,119,78,64.0],[125,119,79,64.0],[125,120,64,64.0],[125,120,65,64.0],[125,120,66,64.0],[125,120,67,64.0],[125,120,68,64.0],[125,120,69,64.0],[125,120,70,64.0],[125,120,71,64.0],[125,120,72,64.0],[125,120,73,64.0],[125,120,74,64.0],[125,120,75,64.0],[125,120,76,64.0],[125,120,77,64.0],[125,120,78,64.0],[125,120,79,64.0],[125,121,64,64.0],[125,121,65,64.0],[125,121,66,64.0],[125,121,67,64.0],[125,121,68,64.0],[125,121,69,64.0],[125,121,70,64.0],[125,121,71,64.0],[125,121,72,64.0],[125,121,73,64.0],[125,121,74,64.0],[125,121,75,64.0],[125,121,76,64.0],[125,121,77,64.0],[125,121,78,64.0],[125,121,79,64.0],[125,122,64,64.0],[125,122,65,64.0],[125,122,66,64.0],[125,122,67,64.0],[125,122,68,64.0],[125,122,69,64.0],[125,122,70,64.0],[125,122,71,64.0],[125,122,72,64.0],[125,122,73,64.0],[125,122,74,64.0],[125,122,75,64.0],[125,122,76,64.0],[125,122,77,64.0],[125,122,78,64.0],[125,122,79,64.0],[125,123,64,64.0],[125,123,65,64.0],[125,123,66,64.0],[125,123,67,64.0],[125,123,68,64.0],[125,123,69,64.0],[125,123,70,64.0],[125,123,71,64.0],[125,123,72,64.0],[125,123,73,64.0],[125,123,74,64.0],[125,123,75,64.0],[125,123,76,64.0],[125,123,77,64.0],[125,123,78,64.0],[125,123,79,64.0],[125,124,64,64.0],[125,124,65,64.0],[125,124,66,64.0],[125,124,67,64.0],[125,124,68,64.0],[125,124,69,64.0],[125,124,70,64.0],[125,124,71,64.0],[125,124,72,64.0],[125,124,73,64.0],[125,124,74,64.0],[125,124,75,64.0],[125,124,76,64.0],[125,124,77,64.0],[125,124,78,64.0],[125,124,79,64.0],[125,125,64,64.0],[125,125,65,64.0],[125,125,66,64.0],[125,125,67,64.0],[125,125,68,64.0],[125,125,69,64.0],[125,125,70,64.0],[125,125,71,64.0],[125,125,72,64.0],[125,125,73,64.0],[125,125,74,64.0],[125,125,75,64.0],[125,125,76,64.0],[125,125,77,64.0],[125,125,78,64.0],[125,125,79,64.0],[125,126,64,64.0],[125,126,65,64.0],[125,126,66,64.0],[125,126,67,64.0],[125,126,68,64.0],[125,126,69,64.0],[125,126,70,64.0],[125,126,71,64.0],[125,126,72,64.0],[125,126,73,64.0],[125,126,74,64.0],[125,126,75,64.0],[125,126,76,64.0],[125,126,77,64.0],[125,126,78,64.0],[125,126,79,64.0],[125,127,64,64.0],[125,127,65,64.0],[125,127,66,64.0],[125,127,67,64.0],[125,127,68,64.0],[125,127,69,64.0],[125,127,70,64.0],[125,127,71,64.0],[125,127,72,64.0],[125,127,73,64.0],[125,127,74,64.0],[125,127,75,64.0],[125,127,76,64.0],[125,127,77,64.0],[125,127,78,64.0],[125,127,79,64.0],[125,128,64,64.0],[125,128,65,64.0],[125,128,66,64.0],[125,128,67,64.0],[125,128,68,64.0],[125,128,69,64.0],[125,128,70,64.0],[125,128,71,64.0],[125,128,72,64.0],[125,128,73,64.0],[125,128,74,64.0],[125,128,75,64.0],[125,128,76,64.0],[125,128,77,64.0],[125,128,78,64.0],[125,128,79,64.0],[125,129,64,64.0],[125,129,65,64.0],[125,129,66,64.0],[125,129,67,64.0],[125,129,68,64.0],[125,129,69,64.0],[125,129,70,64.0],[125,129,71,64.0],[125,129,72,64.0],[125,129,73,64.0],[125,129,74,64.0],[125,129,75,64.0],[125,129,76,64.0],[125,129,77,64.0],[125,129,78,64.0],[125,129,79,64.0],[125,130,64,64.0],[125,130,65,64.0],[125,130,66,64.0],[125,130,67,64.0],[125,130,68,64.0],[125,130,69,64.0],[125,130,70,64.0],[125,130,71,64.0],[125,130,72,64.0],[125,130,73,64.0],[125,130,74,64.0],[125,130,75,64.0],[125,130,76,64.0],[125,130,77,64.0],[125,130,78,64.0],[125,130,79,64.0],[125,131,64,64.0],[125,131,65,64.0],[125,131,66,64.0],[125,131,67,64.0],[125,131,68,64.0],[125,131,69,64.0],[125,131,70,64.0],[125,131,71,64.0],[125,131,72,64.0],[125,131,73,64.0],[125,131,74,64.0],[125,131,75,64.0],[125,131,76,64.0],[125,131,77,64.0],[125,131,78,64.0],[125,131,79,64.0],[125,132,64,64.0],[125,132,65,64.0],[125,132,66,64.0],[125,132,67,64.0],[125,132,68,64.0],[125,132,69,64.0],[125,132,70,64.0],[125,132,71,64.0],[125,132,72,64.0],[125,132,73,64.0],[125,132,74,64.0],[125,132,75,64.0],[125,132,76,64.0],[125,132,77,64.0],[125,132,78,64.0],[125,132,79,64.0],[125,133,64,64.0],[125,133,65,64.0],[125,133,66,64.0],[125,133,67,64.0],[125,133,68,64.0],[125,133,69,64.0],[125,133,70,64.0],[125,133,71,64.0],[125,133,72,64.0],[125,133,73,64.0],[125,133,74,64.0],[125,133,75,64.0],[125,133,76,64.0],[125,133,77,64.0],[125,133,78,64.0],[125,133,79,64.0],[125,134,64,64.0],[125,134,65,64.0],[125,134,66,64.0],[125,134,67,64.0],[125,134,68,64.0],[125,134,69,64.0],[125,134,70,64.0],[125,134,71,64.0],[125,134,72,64.0],[125,134,73,64.0],[125,134,74,64.0],[125,134,75,64.0],[125,134,76,64.0],[125,134,77,64.0],[125,134,78,64.0],[125,134,79,64.0],[125,135,64,64.0],[125,135,65,64.0],[125,135,66,64.0],[125,135,67,64.0],[125,135,68,64.0],[125,135,69,64.0],[125,135,70,64.0],[125,135,71,64.0],[125,135,72,64.0],[125,135,73,64.0],[125,135,74,64.0],[125,135,75,64.0],[125,135,76,64.0],[125,135,77,64.0],[125,135,78,64.0],[125,135,79,64.0],[125,136,64,64.0],[125,136,65,64.0],[125,136,66,64.0],[125,136,67,64.0],[125,136,68,64.0],[125,136,69,64.0],[125,136,70,64.0],[125,136,71,64.0],[125,136,72,64.0],[125,136,73,64.0],[125,136,74,64.0],[125,136,75,64.0],[125,136,76,64.0],[125,136,77,64.0],[125,136,78,64.0],[125,136,79,64.0],[125,137,64,64.0],[125,137,65,64.0],[125,137,66,64.0],[125,137,67,64.0],[125,137,68,64.0],[125,137,69,64.0],[125,137,70,64.0],[125,137,71,64.0],[125,137,72,64.0],[125,137,73,64.0],[125,137,74,64.0],[125,137,75,64.0],[125,137,76,64.0],[125,137,77,64.0],[125,137,78,64.0],[125,137,79,64.0],[125,138,64,64.0],[125,138,65,64.0],[125,138,66,64.0],[125,138,67,64.0],[125,138,68,64.0],[125,138,69,64.0],[125,138,70,64.0],[125,138,71,64.0],[125,138,72,64.0],[125,138,73,64.0],[125,138,74,64.0],[125,138,75,64.0],[125,138,76,64.0],[125,138,77,64.0],[125,138,78,64.0],[125,138,79,64.0],[125,139,64,64.0],[125,139,65,64.0],[125,139,66,64.0],[125,139,67,64.0],[125,139,68,64.0],[125,139,69,64.0],[125,139,70,64.0],[125,139,71,64.0],[125,139,72,64.0],[125,139,73,64.0],[125,139,74,64.0],[125,139,75,64.0],[125,139,76,64.0],[125,139,77,64.0],[125,139,78,64.0],[125,139,79,64.0],[125,140,64,64.0],[125,140,65,64.0],[125,140,66,64.0],[125,140,67,64.0],[125,140,68,64.0],[125,140,69,64.0],[125,140,70,64.0],[125,140,71,64.0],[125,140,72,64.0],[125,140,73,64.0],[125,140,74,64.0],[125,140,75,64.0],[125,140,76,64.0],[125,140,77,64.0],[125,140,78,64.0],[125,140,79,64.0],[125,141,64,64.0],[125,141,65,64.0],[125,141,66,64.0],[125,141,67,64.0],[125,141,68,64.0],[125,141,69,64.0],[125,141,70,64.0],[125,141,71,64.0],[125,141,72,64.0],[125,141,73,64.0],[125,141,74,64.0],[125,141,75,64.0],[125,141,76,64.0],[125,141,77,64.0],[125,141,78,64.0],[125,141,79,64.0],[125,142,64,64.0],[125,142,65,64.0],[125,142,66,64.0],[125,142,67,64.0],[125,142,68,64.0],[125,142,69,64.0],[125,142,70,64.0],[125,142,71,64.0],[125,142,72,64.0],[125,142,73,64.0],[125,142,74,64.0],[125,142,75,64.0],[125,142,76,64.0],[125,142,77,64.0],[125,142,78,64.0],[125,142,79,64.0],[125,143,64,64.0],[125,143,65,64.0],[125,143,66,64.0],[125,143,67,64.0],[125,143,68,64.0],[125,143,69,64.0],[125,143,70,64.0],[125,143,71,64.0],[125,143,72,64.0],[125,143,73,64.0],[125,143,74,64.0],[125,143,75,64.0],[125,143,76,64.0],[125,143,77,64.0],[125,143,78,64.0],[125,143,79,64.0],[125,144,64,64.0],[125,144,65,64.0],[125,144,66,64.0],[125,144,67,64.0],[125,144,68,64.0],[125,144,69,64.0],[125,144,70,64.0],[125,144,71,64.0],[125,144,72,64.0],[125,144,73,64.0],[125,144,74,64.0],[125,144,75,64.0],[125,144,76,64.0],[125,144,77,64.0],[125,144,78,64.0],[125,144,79,64.0],[125,145,64,64.0],[125,145,65,64.0],[125,145,66,64.0],[125,145,67,64.0],[125,145,68,64.0],[125,145,69,64.0],[125,145,70,64.0],[125,145,71,64.0],[125,145,72,64.0],[125,145,73,64.0],[125,145,74,64.0],[125,145,75,64.0],[125,145,76,64.0],[125,145,77,64.0],[125,145,78,64.0],[125,145,79,64.0],[125,146,64,64.0],[125,146,65,64.0],[125,146,66,64.0],[125,146,67,64.0],[125,146,68,64.0],[125,146,69,64.0],[125,146,70,64.0],[125,146,71,64.0],[125,146,72,64.0],[125,146,73,64.0],[125,146,74,64.0],[125,146,75,64.0],[125,146,76,64.0],[125,146,77,64.0],[125,146,78,64.0],[125,146,79,64.0],[125,147,64,64.0],[125,147,65,64.0],[125,147,66,64.0],[125,147,67,64.0],[125,147,68,64.0],[125,147,69,64.0],[125,147,70,64.0],[125,147,71,64.0],[125,147,72,64.0],[125,147,73,64.0],[125,147,74,64.0],[125,147,75,64.0],[125,147,76,64.0],[125,147,77,64.0],[125,147,78,64.0],[125,147,79,64.0],[125,148,64,64.0],[125,148,65,64.0],[125,148,66,64.0],[125,148,67,64.0],[125,148,68,64.0],[125,148,69,64.0],[125,148,70,64.0],[125,148,71,64.0],[125,148,72,64.0],[125,148,73,64.0],[125,148,74,64.0],[125,148,75,64.0],[125,148,76,64.0],[125,148,77,64.0],[125,148,78,64.0],[125,148,79,64.0],[125,149,64,64.0],[125,149,65,64.0],[125,149,66,64.0],[125,149,67,64.0],[125,149,68,64.0],[125,149,69,64.0],[125,149,70,64.0],[125,149,71,64.0],[125,149,72,64.0],[125,149,73,64.0],[125,149,74,64.0],[125,149,75,64.0],[125,149,76,64.0],[125,149,77,64.0],[125,149,78,64.0],[125,149,79,64.0],[125,150,64,64.0],[125,150,65,64.0],[125,150,66,64.0],[125,150,67,64.0],[125,150,68,64.0],[125,150,69,64.0],[125,150,70,64.0],[125,150,71,64.0],[125,150,72,64.0],[125,150,73,64.0],[125,150,74,64.0],[125,150,75,64.0],[125,150,76,64.0],[125,150,77,64.0],[125,150,78,64.0],[125,150,79,64.0],[125,151,64,64.0],[125,151,65,64.0],[125,151,66,64.0],[125,151,67,64.0],[125,151,68,64.0],[125,151,69,64.0],[125,151,70,64.0],[125,151,71,64.0],[125,151,72,64.0],[125,151,73,64.0],[125,151,74,64.0],[125,151,75,64.0],[125,151,76,64.0],[125,151,77,64.0],[125,151,78,64.0],[125,151,79,64.0],[125,152,64,64.0],[125,152,65,64.0],[125,152,66,64.0],[125,152,67,64.0],[125,152,68,64.0],[125,152,69,64.0],[125,152,70,64.0],[125,152,71,64.0],[125,152,72,64.0],[125,152,73,64.0],[125,152,74,64.0],[125,152,75,64.0],[125,152,76,64.0],[125,152,77,64.0],[125,152,78,64.0],[125,152,79,64.0],[125,153,64,64.0],[125,153,65,64.0],[125,153,66,64.0],[125,153,67,64.0],[125,153,68,64.0],[125,153,69,64.0],[125,153,70,64.0],[125,153,71,64.0],[125,153,72,64.0],[125,153,73,64.0],[125,153,74,64.0],[125,153,75,64.0],[125,153,76,64.0],[125,153,77,64.0],[125,153,78,64.0],[125,153,79,64.0],[125,154,64,64.0],[125,154,65,64.0],[125,154,66,64.0],[125,154,67,64.0],[125,154,68,64.0],[125,154,69,64.0],[125,154,70,64.0],[125,154,71,64.0],[125,154,72,64.0],[125,154,73,64.0],[125,154,74,64.0],[125,154,75,64.0],[125,154,76,64.0],[125,154,77,64.0],[125,154,78,64.0],[125,154,79,64.0],[125,155,64,64.0],[125,155,65,64.0],[125,155,66,64.0],[125,155,67,64.0],[125,155,68,64.0],[125,155,69,64.0],[125,155,70,64.0],[125,155,71,64.0],[125,155,72,64.0],[125,155,73,64.0],[125,155,74,64.0],[125,155,75,64.0],[125,155,76,64.0],[125,155,77,64.0],[125,155,78,64.0],[125,155,79,64.0],[125,156,64,64.0],[125,156,65,64.0],[125,156,66,64.0],[125,156,67,64.0],[125,156,68,64.0],[125,156,69,64.0],[125,156,70,64.0],[125,156,71,64.0],[125,156,72,64.0],[125,156,73,64.0],[125,156,74,64.0],[125,156,75,64.0],[125,156,76,64.0],[125,156,77,64.0],[125,156,78,64.0],[125,156,79,64.0],[125,157,64,64.0],[125,157,65,64.0],[125,157,66,64.0],[125,157,67,64.0],[125,157,68,64.0],[125,157,69,64.0],[125,157,70,64.0],[125,157,71,64.0],[125,157,72,64.0],[125,157,73,64.0],[125,157,74,64.0],[125,157,75,64.0],[125,157,76,64.0],[125,157,77,64.0],[125,157,78,64.0],[125,157,79,64.0],[125,158,64,64.0],[125,158,65,64.0],[125,158,66,64.0],[125,158,67,64.0],[125,158,68,64.0],[125,158,69,64.0],[125,158,70,64.0],[125,158,71,64.0],[125,158,72,64.0],[125,158,73,64.0],[125,158,74,64.0],[125,158,75,64.0],[125,158,76,64.0],[125,158,77,64.0],[125,158,78,64.0],[125,158,79,64.0],[125,159,64,64.0],[125,159,65,64.0],[125,159,66,64.0],[125,159,67,64.0],[125,159,68,64.0],[125,159,69,64.0],[125,159,70,64.0],[125,159,71,64.0],[125,159,72,64.0],[125,159,73,64.0],[125,159,74,64.0],[125,159,75,64.0],[125,159,76,64.0],[125,159,77,64.0],[125,159,78,64.0],[125,159,79,64.0],[125,160,64,64.0],[125,160,65,64.0],[125,160,66,64.0],[125,160,67,64.0],[125,160,68,64.0],[125,160,69,64.0],[125,160,70,64.0],[125,160,71,64.0],[125,160,72,64.0],[125,160,73,64.0],[125,160,74,64.0],[125,160,75,64.0],[125,160,76,64.0],[125,160,77,64.0],[125,160,78,64.0],[125,160,79,64.0],[125,161,64,64.0],[125,161,65,64.0],[125,161,66,64.0],[125,161,67,64.0],[125,161,68,64.0],[125,161,69,64.0],[125,161,70,64.0],[125,161,71,64.0],[125,161,72,64.0],[125,161,73,64.0],[125,161,74,64.0],[125,161,75,64.0],[125,161,76,64.0],[125,161,77,64.0],[125,161,78,64.0],[125,161,79,64.0],[125,162,64,64.0],[125,162,65,64.0],[125,162,66,64.0],[125,162,67,64.0],[125,162,68,64.0],[125,162,69,64.0],[125,162,70,64.0],[125,162,71,64.0],[125,162,72,64.0],[125,162,73,64.0],[125,162,74,64.0],[125,162,75,64.0],[125,162,76,64.0],[125,162,77,64.0],[125,162,78,64.0],[125,162,79,64.0],[125,163,64,64.0],[125,163,65,64.0],[125,163,66,64.0],[125,163,67,64.0],[125,163,68,64.0],[125,163,69,64.0],[125,163,70,64.0],[125,163,71,64.0],[125,163,72,64.0],[125,163,73,64.0],[125,163,74,64.0],[125,163,75,64.0],[125,163,76,64.0],[125,163,77,64.0],[125,163,78,64.0],[125,163,79,64.0],[125,164,64,64.0],[125,164,65,64.0],[125,164,66,64.0],[125,164,67,64.0],[125,164,68,64.0],[125,164,69,64.0],[125,164,70,64.0],[125,164,71,64.0],[125,164,72,64.0],[125,164,73,64.0],[125,164,74,64.0],[125,164,75,64.0],[125,164,76,64.0],[125,164,77,64.0],[125,164,78,64.0],[125,164,79,64.0],[125,165,64,64.0],[125,165,65,64.0],[125,165,66,64.0],[125,165,67,64.0],[125,165,68,64.0],[125,165,69,64.0],[125,165,70,64.0],[125,165,71,64.0],[125,165,72,64.0],[125,165,73,64.0],[125,165,74,64.0],[125,165,75,64.0],[125,165,76,64.0],[125,165,77,64.0],[125,165,78,64.0],[125,165,79,0.6363180817197926],[125,166,64,64.0],[125,166,65,64.0],[125,166,66,64.0],[125,166,67,64.0],[125,166,68,64.0],[125,166,69,64.0],[125,166,70,64.0],[125,166,71,64.0],[125,166,72,64.0],[125,166,73,64.0],[125,166,74,64.0],[125,166,75,64.0],[125,166,76,64.0],[125,166,77,64.0],[125,166,78,0.6145470524192755],[125,166,79,0.644950923774327],[125,167,64,64.0],[125,167,65,64.0],[125,167,66,64.0],[125,167,67,64.0],[125,167,68,64.0],[125,167,69,64.0],[125,167,70,64.0],[125,167,71,64.0],[125,167,72,64.0],[125,167,73,64.0],[125,167,74,64.0],[125,167,75,64.0],[125,167,76,64.0],[125,167,77,0.5905965533643394],[125,167,78,0.6248347906174688],[125,167,79,0.6549941329292278],[125,168,64,64.0],[125,168,65,64.0],[125,168,66,64.0],[125,168,67,64.0],[125,168,68,64.0],[125,168,69,64.0],[125,168,70,64.0],[125,168,71,64.0],[125,168,72,64.0],[125,168,73,64.0],[125,168,74,64.0],[125,168,75,64.0],[125,168,76,0.5652647707988654],[125,168,77,0.6026426016514819],[125,168,78,0.6365513423448612],[125,168,79,0.6663716896341862],[125,169,64,64.0],[125,169,65,64.0],[125,169,66,64.0],[125,169,67,64.0],[125,169,68,64.0],[125,169,69,64.0],[125,169,70,64.0],[125,169,71,64.0],[125,169,72,64.0],[125,169,73,64.0],[125,169,74,64.0],[125,169,75,0.53941871478873],[125,169,76,0.5791249205354101],[125,169,77,0.6160976045855363],[125,169,78,0.649591090298777],[125,169,79,0.6789896528759385],[125,170,64,64.0],[125,170,65,64.0],[125,170,66,64.0],[125,170,67,64.0],[125,170,68,64.0],[125,170,69,64.0],[125,170,70,64.0],[125,170,71,64.0],[125,170,72,64.0],[125,170,73,64.0],[125,170,74,0.5139669444855581],[125,170,75,0.5550958562726174],[125,170,76,0.5943337065544351],[125,170,77,0.6308256004595852],[125,170,78,0.6638304038208312],[125,170,79,0.692736556894506],[125,171,64,64.0],[125,171,65,64.0],[125,171,66,64.0],[125,171,67,64.0],[125,171,68,64.0],[125,171,69,64.0],[125,171,70,64.0],[125,171,71,64.0],[125,171,72,64.0],[125,171,73,0.4892421398798371],[125,171,74,0.5314076428242647],[125,171,75,0.572019823858627],[125,171,76,0.6107248435607494],[125,171,77,0.6466730759400771],[125,171,78,0.6791284127681824],[125,171,79,0.7074839317056236],[125,172,64,64.0],[125,172,65,64.0],[125,172,66,64.0],[125,172,67,64.0],[125,172,68,64.0],[125,172,69,64.0],[125,172,70,64.0],[125,172,71,64.0],[125,172,72,0.4649107630930746],[125,172,73,0.5083399929579856],[125,172,74,0.5499520399247223],[125,172,75,0.5899948339787326],[125,172,76,0.6281155311335652],[125,172,77,0.6634701281596357],[125,172,78,0.6953279023734675],[125,172,79,0.7230869233807233],[125,173,64,64.0],[125,173,65,64.0],[125,173,66,64.0],[125,173,67,64.0],[125,173,68,64.0],[125,173,69,64.0],[125,173,70,64.0],[125,173,71,0.4406695517817157],[125,173,72,0.48551186491062853],[125,173,73,0.5283585471913582],[125,173,74,0.5693765244379551],[125,173,75,0.6088102353769752],[125,173,76,0.6463080358260482],[125,173,77,0.6810317683788967],[125,173,78,0.7122563289245079],[125,173,79,0.739385013917274],[125,174,64,64.0],[125,174,65,64.0],[125,174,66,64.0],[125,174,67,64.0],[125,174,68,64.0],[125,174,69,64.0],[125,174,70,0.41626788591737784],[125,174,71,0.4625732487127025],[125,174,72,0.5068132837729721],[125,174,73,0.5490488571037336],[125,174,74,0.5894449026422766],[125,174,75,0.6282425397419051],[125,174,76,0.6650914350106081],[125,174,77,0.6991593672171812],[125,174,78,0.7297269562635998],[125,174,79,0.7562028406992987],[125,175,64,64.0],[125,175,65,64.0],[125,175,66,64.0],[125,175,67,64.0],[125,175,68,64.0],[125,175,69,0.3914901728535288],[125,175,70,0.43922846085093314],[125,175,71,0.48492287927576055],[125,175,72,0.5285440199234739],[125,175,73,0.5701523359144764],[125,175,74,0.6099109025334436],[125,175,75,0.6480576336097442],[125,175,76,0.6842435224696273],[125,175,77,0.7176422414517056],[125,175,78,0.747540113106094],[125,175,79,0.7733511155477721],[125,176,64,64.0],[125,176,65,64.0],[125,176,66,64.0],[125,176,67,64.0],[125,176,68,0.3661413472262873],[125,176,69,0.41522003375323385],[125,176,70,0.4623509385664221],[125,176,71,0.5074294653688207],[125,176,72,0.5504270410091637],[125,176,73,0.5914037547894787],[125,176,74,0.6305208779952863],[125,176,75,0.6680131715388213],[125,176,76,0.7035328757321746],[125,176,77,0.73625938238587],[125,176,78,0.7654845711787984],[125,176,79,0.7906276433614314],[125,177,64,64.0],[125,177,65,64.0],[125,177,66,64.0],[125,177,67,0.3965110791064467],[125,177,68,0.39042986836976246],[125,177,69,0.438913133600637],[125,177,70,0.48543820242745667],[125,177,71,0.5299022216040397],[125,177,72,0.572277412585056],[125,177,73,0.6126234832480949],[125,177,74,0.6510999099600265],[125,177,75,0.6879383294274469],[125,177,76,0.7227920961532184],[125,177,77,0.7548460626283232],[125,177,78,0.7833974451070189],[125,177,79,0.8078704885795394],[125,178,64,64.0],[125,178,65,0.46048448217946136],[125,178,66,0.44236123311543607],[125,178,67,0.42407086807769834],[125,178,68,0.4149966009980187],[125,178,69,0.462872637597024],[125,178,70,0.5087779276063813],[125,178,71,0.552611324364908],[125,178,72,0.5943458607870772],[125,178,73,0.6340409381862471],[125,178,74,0.6718543757825722],[125,178,75,0.7080148777499554],[125,178,76,0.7421769257756002],[125,178,77,0.7735306973674115],[125,178,78,0.8013786622646987],[125,178,79,0.8251500815980997],[125,179,64,0.5103226381235061],[125,179,65,0.48997508620227714],[125,179,66,0.46933566153961886],[125,179,67,0.44841435450011546],[125,179,68,0.44019803111268474],[125,179,69,0.4874396136377398],[125,179,70,0.5326936507378115],[125,179,71,0.575860713470969],[125,179,72,0.6169147454417286],[125,179,73,0.655915034010284],[125,179,74,0.6930180326947604],[125,179,75,0.728449892125418],[125,179,76,0.7618664058669726],[125,179,77,0.7924630905682926],[125,179,78,0.8195477486155687],[125,179,79,0.8425548040724538],[125,180,64,0.5390309229535661],[125,180,65,0.5163900445378152],[125,180,66,0.493330730362752],[125,180,67,0.4698843132022685],[125,180,68,0.46624933913722943],[125,180,69,0.5128188274318967],[125,180,70,0.5573781257789746],[125,180,71,0.599829565287723],[125,180,72,0.6401481589322403],[125,180,73,0.6783933613908315],[125,180,74,0.7147206707152772],[125,180,75,0.7493542102017994],[125,180,76,0.781951400039071],[125,180,77,0.8117132168509953],[125,180,78,0.8379529903377414],[125,180,79,0.8601105787361174],[125,181,64,0.5640455971367916],[125,181,65,0.5392149105986141],[125,181,66,0.5138516909786928],[125,181,67,0.488006999921314],[125,181,68,0.4932419101554195],[125,181,69,0.5390956765964544],[125,181,70,0.5829096322891718],[125,181,71,0.6245879275483234],[125,181,72,0.6641068424024407],[125,181,73,0.7015263425505951],[125,181,74,0.7370014678849154],[125,181,75,0.7707549511187983],[125,181,76,0.802446246446401],[125,181,77,0.8312819800019474],[125,181,78,0.8565812776274369],[125,181,79,0.8777897831334172],[125,182,64,0.5848059053395405],[125,182,65,0.5579043224591775],[125,182,66,0.5303701017294059],[125,182,67,0.5022722951481292],[125,182,68,0.5211601365322457],[125,182,69,0.5662524363940539],[125,182,70,0.609267616955698],[125,182,71,0.6501117112321859],[125,182,72,0.6887624848697035],[125,182,73,0.7252807971586949],[125,182,74,0.7598217854263286],[125,182,75,0.7926075055825811],[125,182,76,0.8232999123826827],[125,182,77,0.8511115064902155],[125,182,78,0.87536751665707],[125,182,79,0.8955197649214107],[125,183,64,0.6009399917151487],[125,183,65,0.5720991326665293],[125,183,66,0.5425405727676883],[125,183,67,0.5123495387623622],[125,183,68,0.5498974438873583],[125,183,69,0.594183750703678],[125,183,70,0.6363476047961293],[125,183,71,0.676296978977698],[125,183,72,0.7140113479598486],[125,183,73,0.7495528649482079],[125,183,74,0.783077352494561],[125,183,75,0.8148069498902136],[125,183,76,0.8444066083810784],[125,183,77,0.871094934933236],[125,183,78,0.894203574514867],[125,183,79,0.9131909274671263],[125,184,64,0.6122692942403525],[125,184,65,0.5816306333514702],[125,184,66,0.5502047945741496],[125,184,67,0.5338061871817049],[125,184,68,0.5792715404206151],[125,184,69,0.6227113682237482],[125,184,70,0.6639753800365943],[125,184,71,0.7029735300286464],[125,184,72,0.7396872162636385],[125,184,73,0.774180285056562],[125,184,74,0.8066098405180148],[125,184,75,0.8371988839034639],[125,184,76,0.8656158618178882],[125,184,77,0.8910857015117206],[125,184,78,0.9129467571257217],[125,184,79,0.9306643857398424],[125,185,64,0.6188134864310063],[125,185,65,0.5865253491791702],[125,185,66,0.5533961543649298],[125,185,67,0.5643912904961924],[125,185,68,0.6090388895904754],[125,185,69,0.6515981239083796],[125,185,70,0.6919204366667432],[125,185,71,0.7299177817150702],[125,185,72,0.7655736733155464],[125,185,73,0.798954032089451],[125,185,74,0.8302178271305044],[125,185,75,0.8595896929726026],[125,185,76,0.8867420500203259],[125,185,77,0.9109063213343374],[125,185,78,0.9314278201538647],[125,185,79,0.9477791924989586],[125,186,64,0.6207959664362116],[125,186,65,0.5870103981383671],[125,186,66,0.5523449403895976],[125,186,67,0.595097411171077],[125,186,68,0.6389084061449093],[125,186,69,0.6805611656364713],[125,186,70,0.7199086986710849],[125,186,71,0.7568649474682116],[125,186,72,0.7914157031944845],[125,186,73,0.8236293089079584],[125,186,74,0.8536671496940962],[125,186,75,0.8817562338099101],[125,186,76,0.9075733928780825],[125,186,77,0.9303566657518803],[125,186,78,0.9494585128870708],[125,186,79,0.9643591347771956],[125,187,64,0.6186498935113578],[125,187,65,0.583519420169524],[125,187,66,0.580587338060172],[125,187,67,0.6255899781130974],[125,187,68,0.6685543755043668],[125,187,69,0.709284426113182],[125,187,70,0.7476345099362682],[125,187,71,0.7835205113691488],[125,187,72,0.8169306177460866],[125,187,73,0.847935896138501],[125,187,74,0.8767006484123467],[125,187,75,0.9034549443125224],[125,187,76,0.9278804049583337],[125,187,77,0.9492217356205968],[125,187,78,0.9668386551020829],[125,187,79,0.9802191006588146],[125,188,64,0.6130010280127589],[125,188,65,0.5766757892899239],[125,188,66,0.6112737084032712],[125,188,67,0.6555111346622585],[125,188,68,0.6976285964976523],[125,188,69,0.7374303400046189],[125,188,70,0.774771893835105],[125,188,71,0.8095709992318967],[125,188,72,0.841818309427309],[125,188,73,0.8715878584063292],[125,188,74,0.8990472990346737],[125,188,75,0.9244303773353104],[125,188,76,0.9474238071248567],[125,188,77,0.9672789305153154],[125,188,78,0.9833627469118776],[125,188,79,0.9951710163534571],[125,189,64,0.6039543112426428],[125,189,65,0.5955514206488562],[125,189,66,0.6410057555039131],[125,189,67,0.6844914784003221],[125,189,68,0.7257717474502803],[125,189,69,0.7646508063053319],[125,189,70,0.80098508248694],[125,189,71,0.8346940462205801],[125,189,72,0.8657708297729626],[125,189,73,0.8942926072922157],[125,189,74,0.9204307351514741],[125,189,75,0.9444231584134388],[125,189,76,0.9659618976609082],[125,189,77,0.9843048138920356],[125,189,78,0.9988261115944359],[125,189,79,1.0090293535652743],[125,190,64,0.5909520174705211],[125,190,65,0.6245930044547034],[125,190,66,0.6694046037984398],[125,190,67,0.7121610051059196],[125,190,68,0.7526239756249021],[125,190,69,0.7905973959382009],[125,190,70,0.8259383156939674],[125,190,71,0.858567761000302],[125,190,72,0.8884812934838145],[125,190,73,0.9157593210119743],[125,190,74,0.9405771600796742],[125,190,75,0.9631773674342867],[125,190,76,0.9832573828955736],[125,190,77,1.0000813741997074],[125,190,78,1.0130305714027712],[125,190,79,1.0216162071571286],[125,191,64,0.6058298462356998],[125,191,65,0.651900847890539],[125,191,66,0.6961012925888554],[125,191,67,0.7381592568571476],[125,191,68,0.7778347100146379],[125,191,69,0.8149308045875412],[125,191,70,0.8493049095542954],[125,191,71,0.8808793864224735],[125,191,72,0.9096521081370013],[125,191,73,0.9357067208195315],[125,191,74,0.9592226483393878],[125,191,75,0.9804473442593863],[125,191,76,0.9990836673342058],[125,191,77,1.0144017819417845],[125,191,78,1.0257896563567657],[125,191,79,1.0327659431103675],[125,192,64,0.631538054671609],[125,192,65,0.6771191537092051],[125,192,66,0.7207464223129989],[125,192,67,0.7621446742811979],[125,192,68,0.801071697488881],[125,192,69,0.8373295507649974],[125,192,70,0.8707755947513423],[125,192,71,0.9013332567442112],[125,192,72,0.9290025295183663],[125,192,73,0.9538702041331771],[125,192,74,0.9761198367213262],[125,192,75,0.996003918296038],[125,192,76,1.0132306032926235],[125,192,77,1.0270756426872423],[125,192,78,1.0369333460165178],[125,192,79,1.0423294167799058],[125,193,64,0.6547895130112996],[125,193,65,0.699921516782413],[125,193,66,0.7430189885027342],[125,193,67,0.7838031529506319],[125,193,68,0.8220292622911886],[125,193,69,0.8574979191078553],[125,193,70,0.8900661245192013],[125,193,71,0.919658051381443],[125,193,72,0.9462755425763849],[125,193,73,0.9700083343846659],[125,193,74,0.9910440049446536],[125,193,75,1.0096400620183053],[125,193,76,1.0255097000348],[125,193,77,1.0379337460308034],[125,193,78,1.0463123442369635],[125,193,79,1.0501777614443888],[125,194,64,0.6752927936041747],[125,194,65,0.7200191904334551],[125,194,66,0.7626344034310166],[125,194,67,0.8028558039271316],[125,194,68,0.8404357888900758],[125,194,69,0.8751731489105617],[125,194,70,0.9069241522847469],[125,194,71,0.935613345196475],[125,194,72,0.9612440679983958],[125,194,73,0.9839086875918636],[125,194,74,1.0037985459059433],[125,194,75,1.0211759684380197],[125,194,76,1.03575879241463],[125,194,77,1.0468323105029287],[125,194,78,1.0538018869042973],[125,194,79,1.0562057471519235],[125,195,64,0.6928030605763541],[125,195,65,0.7371685267763785],[125,195,66,0.7793517054473367],[125,195,67,0.8190659184522399],[125,195,68,0.8560604281822333],[125,195,69,0.8901318678889896],[125,195,70,0.9211353789860255],[125,195,71,0.94899545531958],[125,195,72,0.9737164944087127],[125,195,73,0.9953930556545298],[125,195,74,1.0142198255188482],[125,195,75,1.030463552525424],[125,195,76,1.043846169021424],[125,195,77,1.0536567244292336],[125,195,78,1.0593050826538668],[125,195,79,1.0603347098610771],[125,196,64,0.707128834968586],[125,196,65,0.7511775328211094],[125,196,66,0.7929798957406305],[125,196,67,0.8322450747484618],[125,196,68,0.8687189634835127],[125,196,69,0.9021957063287122],[125,196,70,0.9325289041667661],[125,196,71,0.9596425177658852],[125,196,72,0.9835414687951441],[125,196,73,1.0043219384693842],[125,196,74,1.022181363823963],[125,196,75,1.0373903078796578],[125,196,76,1.0496740908336433],[125,196,77,1.058324713657662],[125,196,78,1.0627557177186393],[125,196,79,1.0625149826611624],[125,197,64,0.7180488929347606],[125,197,65,0.7618191301149483],[125,197,66,0.8032879153834591],[125,197,67,0.8421602017952714],[125,197,68,0.8781783346417399],[125,197,69,0.9111336490507221],[125,197,70,0.94087775553267],[125,197,71,0.9673335134733109],[125,197,72,0.9905056925725746],[125,197,73,1.0104913222297016],[125,197,74,1.027489728874805],[125,197,75,1.0417743620472546],[125,197,76,1.053073128338752],[125,197,77,1.0606802813353342],[125,197,78,1.0640122905887595],[125,197,79,1.0626206569375247],[125,198,64,0.7251567888596158],[125,198,65,0.7686703977534224],[125,198,66,0.8098391718871418],[125,198,67,0.8483639733621962],[125,198,68,0.8839834895816183],[125,198,69,0.9164859244864324],[125,198,70,0.94572036742886],[125,198,71,0.9716078396829757],[125,198,72,0.9941520185924705],[125,198,73,1.0134496393554606],[125,198,74,1.0297005744466088],[125,198,75,1.0431796729064884],[125,198,76,1.0536167426491823],[125,198,77,1.0603082583800088],[125,198,78,1.0626734221501524],[125,198,79,1.0602669906314466],[125,199,64,0.7281111299262322],[125,199,65,0.7713739306735801],[125,199,66,0.8122628336690886],[125,199,67,0.8504748466130915],[125,199,68,0.8857449593934423],[125,199,69,0.9178579257656024],[125,199,70,0.9466597114704158],[125,199,71,0.9720686087901721],[125,199,72,0.9940860175426289],[125,199,73,1.0128068925129372],[125,199,74,1.0284298573237227],[125,199,75,1.0412291496931598],[125,199,76,1.05093592704992],[125,199,77,1.056849520823321],[125,199,78,1.0583922246944273],[125,199,79,1.0551221159597879],[125,200,64,0.7266852705894753],[125,200,65,0.7696895847801035],[125,200,66,0.8103073969901358],[125,200,67,0.8482322130611832],[125,200,68,0.883195352239598],[125,200,69,0.9149778096707571],[125,200,70,0.9434217730268931],[125,200,71,0.9684417932690695],[125,200,72,0.9900356095429684],[125,200,73,1.0082946282084426],[125,200,74,1.023414056003076],[125,200,75,1.03566507324271],[125,200,76,1.0447797445806575],[125,200,77,1.050061446677349],[125,200,78,1.0509363831369756],[125,200,79,1.0469663717992745],[125,201,64,0.7207614567773537],[125,201,65,0.7634883876919247],[125,201,66,0.8038343744837988],[125,201,67,0.8414898762722564],[125,201,68,0.8761826314290899],[125,201,69,0.9076895856830793],[125,201,70,0.9358484607802134],[125,201,71,0.9605689637002554],[125,201,72,0.9818436364293247],[125,201,73,0.9997583462884428],[125,201,74,1.014502416818289],[125,201,75,1.026341174268786],[125,201,76,1.0350072375536303],[125,201,77,1.0398096652304762],[125,201,78,1.0401797609779369],[125,201,79,1.035683790286271],[125,202,64,0.7103244728076177],[125,202,65,0.7527459677794296],[125,202,66,0.7928115196297113],[125,202,67,0.8302090852703126],[125,202,68,0.8646629710518825],[125,202,69,0.895945806510038],[125,202,70,0.9238901436905329],[125,202,71,0.948399682054026],[125,202,72,0.9694601189601132],[125,202,73,0.9871496257305845],[125,202,74,1.001648949292137],[125,202,75,1.0132144952259192],[125,202,76,1.0215791561038476],[125,202,77,1.0260596614570756],[125,202,78,1.0260938976475948],[125,202,79,1.0212535108384866],[125,203,64,0.695454791019792],[125,203,65,0.7375355014924424],[125,203,66,0.7773055871714311],[125,203,67,0.8144511236458735],[125,203,68,0.8486931891732353],[125,203,69,0.879799860094912],[125,203,70,0.9075978153702476],[125,203,71,0.9319835502295838],[125,203,72,0.9529341989460064],[125,203,73,0.9705179667257487],[125,203,74,0.9849041707174866],[125,203,75,0.9963370357564242],[125,203,76,1.0045495057718263],[125,203,77,1.0088682355410976],[125,203,78,1.0087393972362695],[125,203,79,1.0037411215986494],[125,204,64,0.6763212241224625],[125,204,65,0.7180201789788041],[125,204,66,0.7574746294784386],[125,204,67,0.7943694543667582],[125,204,68,0.8284227585878645],[125,204,69,0.8593978631080574],[125,204,70,0.8871148858659794],[125,204,71,0.9114619138499954],[125,204,72,0.9324057663024881],[125,204,73,0.950002349051019],[125,204,74,0.9644065999665913],[125,204,75,0.9758471817214183],[125,204,76,0.9840569141187264],[125,204,77,0.988374817513474],[125,204,78,0.9882572086086373],[125,204,79,0.9832899283001062],[125,205,64,0.6531730802559188],[125,205,65,0.6944451879936538],[125,205,66,0.7335598288524301],[125,205,67,0.7702014202914329],[125,205,68,0.8040853951340264],[125,205,69,0.8349701559200099],[125,205,70,0.8626686008486384],[125,205,71,0.8870592213129912],[125,205,72,0.9080967710253629],[125,205,73,0.9258225067336252],[125,205,74,0.9403740005288067],[125,205,75,0.9519609178160188],[125,205,76,0.9603158163739478],[125,205,77,0.9647926370034055],[125,205,78,0.9648597969025325],[125,205,79,0.9601121505543911],[125,206,64,0.6263318207701284],[125,206,65,0.6671292160993877],[125,206,66,0.705876865777881],[125,206,67,0.7422595003849133],[125,206,68,0.7759902235675021],[125,206,69,0.806822399056393],[125,206,70,0.834561088211534],[125,206,71,0.859074038097595],[125,206,72,0.8803022200892064],[125,206,73,0.8982699190058594],[125,206,74,0.9130943727767227],[125,206,75,0.9249628237687073],[125,206,76,0.9336074601151755],[125,206,77,0.938399748103498],[125,206,78,0.9388222064122052],[125,206,79,0.9344800455607377],[125,207,64,0.5961822207179319],[125,207,65,0.6364554711561796],[125,207,66,0.6748068231167678],[125,207,67,0.7109221216371067],[125,207,68,0.7445125209953746],[125,207,69,0.7753262711345419],[125,207,70,0.8031600320764402],[125,207,71,0.8278697163264769],[125,207,72,0.8493808592686585],[125,207,73,0.8676985175508604],[125,207,74,0.8829166954606152],[125,207,75,0.8951968541247807],[125,207,76,0.9042707289807942],[125,207,77,0.9095299093486974],[125,207,78,0.9104730148559765],[125,207,79,0.906716959237482],[125,208,64,0.5631630320637665],[125,208,65,0.6028622201033773],[125,208,66,0.640786626247755],[125,208,67,0.6766240266838947],[125,208,68,0.7100840378698914],[125,208,69,0.740909768282112],[125,208,70,0.7688889742078848],[125,208,71,0.7938647195843039],[125,208,72,0.8157455398828176],[125,208,73,0.8345151100395237],[125,208,74,0.8502414164314606],[125,208,75,0.8630569016141072],[125,208,76,0.8726927854148886],[125,208,77,0.8785633188092057],[125,208,78,0.8801851790284839],[125,208,79,0.8771883047755321],[125,209,64,0.5277571496075489],[125,209,65,0.5668328460314009],[125,209,66,0.6042990191494797],[125,209,67,0.6398461971306],[125,209,68,0.6731828965420642],[125,209,69,0.7040471050373464],[125,209,70,0.7322172428353376],[125,209,71,0.757522602991762],[125,209,72,0.7798532704624296],[125,209,73,0.7991695199582365],[125,209,74,0.8155106925922223],[125,209,75,0.8289771441029228],[125,209,76,0.8392995324445678],[125,209,77,0.8459172042971471],[125,209,78,0.8483667718372717],[125,209,79,0.8462924686136876],[125,210,64,0.49048127962380833],[125,210,65,0.5288854235442376],[125,210,66,0.5658620764280305],[125,210,67,0.6011053325779239],[125,210,68,0.6343230673750919],[125,210,69,0.6652482167310757],[125,210,70,0.6936495088833786],[125,210,71,0.7193416485353384],[125,210,72,0.7421949533399487],[125,210,73,0.7621444427275159],[125,210,74,0.7791983790774935],[125,210,75,0.7934221751297387],[125,210,76,0.8045458944896864],[125,210,77,0.812036268687045],[125,210,78,0.8154516107238081],[125,210,79,0.8144516438358671],[125,211,64,0.45187511121646756],[125,211,65,0.4895618124129282],[125,211,66,0.5260182512890025],[125,211,67,0.5609428853507404],[125,211,68,0.5940434224179825],[125,211,69,0.6250478633508249],[125,211,70,0.6537149696102004],[125,211,71,0.6798441556532007],[125,211,72,0.7032848061628001],[125,211,73,0.7239450181118631],[125,211,74,0.7417997676617869],[125,211,75,0.7568769180256449],[125,211,76,0.7689059172052339],[125,211,77,0.7773829903503681],[125,211,78,0.7818897774691591],[125,211,79,0.7821025909904745],[125,212,64,0.41248999038863154],[125,212,65,0.4494162695194027],[125,212,66,0.48532295945350057],[125,212,67,0.5199136509291183],[125,212,68,0.5528963666387579],[125,212,69,0.5839943348864167],[125,212,70,0.6129561596538586],[125,212,71,0.6395653870766034],[125,212,72,0.6636494683292945],[125,212,73,0.6850881189203047],[125,212,74,0.7038210743959693],[125,212,75,0.7198363236185195],[125,212,76,0.7328626863559206],[125,212,77,0.7424277787036969],[125,212,78,0.7481380293838977],[125,212,79,0.7496873263314989],[125,213,64,0.3728770968276937],[125,213,65,0.40900357909098445],[125,213,66,0.4443326990184098],[125,213,67,0.47857391408189687],[125,213,68,0.5114360467175656],[125,213,69,0.542637758157402],[125,213,70,0.5719173894865885],[125,213,71,0.5990421699271405],[125,213,72,0.6238167923474992],[125,213,73,0.6460913559979297],[125,213,74,0.6657686764721341],[125,213,75,0.6827948515214425],[125,213,76,0.6968980657232521],[125,213,77,0.7076389848707983],[125,213,78,0.7146501018825256],[125,213,79,0.7176437374816192],[125,214,64,0.33357512340611245],[125,214,65,0.36886670122590237],[125,214,66,0.4035927062612547],[125,214,67,0.43746915070311826],[125,214,68,0.4702061373999864],[125,214,69,0.5015180051225816],[125,214,70,0.5311328112774452],[125,214,71,0.5588011520700783],[125,214,72,0.5843043201172957],[125,214,73,0.6074617995086098],[125,214,74,0.6281380983170949],[125,214,75,0.6462357350054639],[125,214,76,0.6614822540452296],[125,214,77,0.6734727674587164],[125,214,78,0.6818669024425009],[125,214,79,0.6863961265173842],[125,215,64,0.2950974583971634],[125,215,65,0.32952393870912533],[125,215,66,0.3636241473889848],[125,215,67,0.39712128535067753],[125,215,68,0.42972720540991616],[125,215,69,0.4611522026710285],[125,215,70,0.4911141121626913],[125,215,71,0.5193467137232243],[125,215,72,0.5456074441350933],[125,215,73,0.5696844165084307],[125,215,74,0.5914027469140409],[125,215,75,0.6106200294563122],[125,215,76,0.6270631609882794],[125,215,77,0.6403628134475265],[125,215,78,0.6502065959475452],[125,215,79,0.6563456804761806],[125,216,64,0.29636725302247957],[125,216,65,0.3006000735760591],[125,216,66,0.3249108462310234],[125,216,67,0.35801550448751635],[125,216,68,0.39048365092234955],[125,216,69,0.42202184389492187],[125,216,70,0.45233783492424373],[125,216,71,0.48114853432162785],[125,216,72,0.5081872536214972],[125,216,73,0.5332102248100983],[125,216,74,0.5560023963526242],[125,216,75,0.576375444415286],[125,216,76,0.5940556021516583],[125,216,77,0.6087099141939804],[125,216,78,0.6200545814154468],[125,216,79,0.6278608692851848],[125,217,64,0.30352386068722925],[125,217,65,0.3065462286253371],[125,217,66,0.30851263776651316],[125,217,67,0.32058662542567634],[125,217,68,0.3529102265963511],[125,217,69,0.38455950084446866],[125,217,70,0.4152323260764289],[125,217,71,0.44462881463834847],[125,217,72,0.4724580655721313],[125,217,73,0.4984441631385135],[125,217,74,0.5223314216076308],[125,217,75,0.5438849592044736],[125,217,76,0.5628303131044414],[125,217,77,0.5788713965491236],[125,217,78,0.5917533601104236],[125,217,79,0.6012677711123429],[125,218,64,0.3050138784938314],[125,218,65,0.3070313972550057],[125,218,66,0.30798183449689986],[125,218,67,0.30801574901867157],[125,218,68,0.3173781341676257],[125,218,69,0.3491351387643499],[125,218,70,0.3801643113605187],[125,218,71,0.41014915416079367],[125,218,72,0.438774640731169],[125,218,73,0.46573267757709597],[125,218,74,0.49072678154587435],[125,218,75,0.5134752221359641],[125,218,76,0.5337027824548107],[125,218,77,0.5511504090896501],[125,218,78,0.5655922950398399],[125,218,79,0.5768403251392145],[125,219,64,0.300918954901902],[125,219,65,0.30214603906709425],[125,219,66,0.30230533032822],[125,219,67,0.30155362088738247],[125,219,68,0.3000731346170463],[125,219,69,0.31604203181195256],[125,219,70,0.3474250986472955],[125,219,71,0.3779970837228579],[125,219,72,0.4074190844877753],[125,219,73,0.4353510243050492],[125,219,74,0.46145575116147003],[125,219,75,0.48540473330520084],[125,219,76,0.5069219039517637],[125,219,77,0.5257850634630884],[125,219,78,0.5417972618353639],[125,219,79,0.5547905117557466],[125,220,64,0.2914022625235139],[125,220,65,0.29205773410185876],[125,220,66,0.29165470604963517],[125,220,67,0.29035452084942703],[125,220,68,0.28834169343017546],[125,220,69,0.2858245082613059],[125,220,70,0.3172164082479537],[125,220,71,0.34837225339315786],[125,220,72,0.37858743269574074],[125,220,73,0.40749028862582537],[125,220,74,0.4347034030397374],[125,220,75,0.4598518109686975],[125,220,76,0.4826584476194461],[125,220,77,0.5029374308470062],[125,220,78,0.5205201910187225],[125,220,79,0.5352584601771107],[125,221,64,0.27670944598900193],[125,221,65,0.2770116018296388],[125,221,66,0.2762738961869585],[125,221,67,0.2746605513195348],[125,221,68,0.2723567485623194],[125,221,69,0.2695688119737871],[125,221,70,0.28963583063275294],[125,221,71,0.321372275618807],[125,221,72,0.352375922415787],[125,221,73,0.38224412028630605],[125,221,74,0.4105598380492825],[125,221,75,0.4369023415057105],[125,221,76,0.46099334992374663],[125,221,77,0.482682393521909],[125,221,78,0.5018285016517766],[125,221,79,0.5183024834823712],[125,222,64,0.2571690186571075],[125,222,65,0.2573301531523247],[125,222,66,0.25647847429647624],[125,222,67,0.2547794683724688],[125,222,68,0.252417434837038],[125,222,69,0.24959530440008526],[125,222,70,0.2646619115577322],[125,222,71,0.29697822362502535],[125,222,72,0.3287669475808197],[125,222,73,0.35959518508695987],[125,222,74,0.38900716526250073],[125,222,75,0.4165373129640896],[125,222,76,0.4419058229713503],[125,222,77,0.46499635155801317],[125,222,78,0.4856944263710726],[125,222,79,0.5038890410751198],[125,223,64,0.23319220816892136],[125,223,65,0.233412575413928],[125,223,66,0.2326543548220985],[125,223,67,0.2310827820546903],[125,223,68,0.22887985030347724],[125,223,69,0.2262438112001986],[125,223,70,0.24213886459972367],[125,223,71,0.2750397850708066],[125,223,72,0.30761469958433646],[125,223,73,0.3394013327831614],[125,223,74,0.36990623110467097],[125,223,75,0.39862013219045467],[125,223,76,0.42526128274137937],[125,223,77,0.44974578461599724],[125,223,78,0.4719842278069556],[125,223,79,0.49188262856613657],[125,224,64,0.2052722508464509],[125,224,65,0.20573345042102079],[125,224,66,0.20525591151653552],[125,224,67,0.20400325632097413],[125,224,68,0.20215392316959035],[125,224,69,0.1999003982103395],[125,224,70,0.22176091109914184],[125,224,71,0.2552600709601488],[125,224,72,0.2886304927915275],[125,224,73,0.32138148127724975],[125,224,74,0.35298309773124714],[125,224,75,0.382883725544347],[125,224,76,0.41079909634931244],[125,224,77,0.43667566886146614],[125,224,78,0.46044730638701803],[125,224,79,0.48203559507789884],[125,225,64,0.17398313493465783],[125,225,65,0.17484090547196046],[125,225,66,0.17480351242548728],[125,225,67,0.17403180859503098],[125,225,68,0.17269966105090695],[125,225,69,0.17099295992893793],[125,225,70,0.20314812896298687],[125,225,71,0.2372680644283151],[125,225,72,0.2714519577635588],[125,225,73,0.30518173156817374],[125,225,74,0.33789228719885667],[125,225,75,0.3689911469684348],[125,225,76,0.39819081631062503],[125,225,77,0.42546562672086613],[125,225,78,0.4507705774217451],[125,225,79,0.47404107720935634],[125,226,64,0.13997779268846575],[125,226,65,0.14135419739632965],[125,226,66,0.14188047143621701],[125,226,67,0.141713808955444],[125,226,68,0.14102278253608902],[125,226,69,0.15223371675202224],[125,226,70,0.18624714626908498],[125,226,71,0.22100255563308954],[125,226,72,0.2560104424143471],[125,226,73,0.29072662086767953],[125,226,74,0.3245524278270028],[125,226,75,0.3568563067965899],[125,226,76,0.38734682260784303],[125,226,77,0.41602344560508886],[125,226,78,0.4428599482298224],[125,226,79,0.467803618771542],[125,227,64,0.1038935967086441],[125,227,65,0.10586792529253974],[125,227,66,0.10703642703375228],[125,227,67,0.10755207251715079],[125,227,68,0.10757776257568609],[125,227,69,0.13665038754495995],[125,227,70,0.17109755674151525],[125,227,71,0.2064893192936075],[125,227,72,0.24231824694789206],[125,227,73,0.27801559456883],[125,227,74,0.3129510362903075],[125,227,75,0.3464560417723217],[125,227,76,0.3782345797057102],[125,227,77,0.40830835966405765],[125,227,78,0.4366674163581728],[125,227,79,0.4632688472616869],[125,228,64,0.06594986302633125],[125,228,65,0.06855079153298171],[125,228,66,0.07038948567662415],[125,228,67,0.07161445273592124],[125,228,68,0.08955555467009776],[125,228,69,0.1228305760345118],[125,228,70,0.15770359555208865],[125,228,71,0.1937186529033386],[125,228,72,0.23035184387861313],[125,228,73,0.2670116669859751],[125,228,74,0.3030383198552823],[125,228,75,0.337728704914845],[125,228,76,0.3707816133946997],[125,228,77,0.40223797429189734],[125,228,78,0.432101469474905],[125,228,79,0.46033685007753156],[125,229,64,0.02625851020744678],[125,229,65,0.029467804457424113],[125,229,66,0.031958514560141385],[125,229,67,0.04599326103130222],[125,229,68,0.07728123984844538],[125,229,69,0.11075932806116924],[125,229,70,0.1460367250439084],[125,229,71,0.18264815515983462],[125,229,72,0.22005489053911856],[125,229,73,0.25764470628227376],[125,229,74,0.2947307680895098],[125,229,75,0.33057809360846985],[125,229,76,0.36487980267789727],[125,229,77,0.39769294920154347],[125,229,78,0.4290321862745712],[125,229,79,0.458867718405631],[125,230,64,-0.015026145968833934],[125,230,65,-0.011267598202551146],[125,230,66,0.006904629320846817],[125,230,67,0.035471157532483574],[125,230,68,0.06673774454517752],[125,230,69,0.10039152315567954],[125,230,70,0.13603861281165763],[125,230,71,0.1732058755055457],[125,230,72,0.21134158986575644],[125,230,73,0.2498150434447624],[125,230,74,0.28791504320499156],[125,230,75,0.32487764995490664],[125,230,76,0.3603899166683323],[125,230,77,0.3945218983401802],[125,230,78,0.42729652513309263],[125,230,79,0.4586872488750191],[125,231,64,-0.04887893703395364],[125,231,65,-0.026899133620681935],[125,231,66,-0.0016788321689591296],[125,231,67,0.02665024337748452],[125,231,68,0.057865095684101295],[125,231,69,0.09165508241622673],[125,231,70,0.12762445200588224],[125,231,71,0.16529378679550955],[125,231,72,0.20410035355825007],[125,231,73,0.24339736139424661],[125,231,74,0.28245212700394673],[125,231,75,0.32047489310881344],[125,231,76,0.3571463578228695],[125,231,77,0.3925464694159138],[125,231,78,0.42670376455253967],[125,231,79,0.45959276810112015],[125,232,64,-0.054773313487353925],[125,232,65,-0.03338818778535731],[125,232,66,-0.008603985662559654],[125,232,67,0.01945732153838642],[125,232,68,0.05057932628206799],[125,232,69,0.08445453590782094],[125,232,70,0.12068662386146446],[125,232,71,0.15879158109210237],[125,232,72,0.19819776761359614],[125,232,73,0.23824486423018024],[125,232,74,0.27818172442721634],[125,232,75,0.31719608359672075],[125,232,76,0.3549621115127842],[125,232,77,0.3915666030357834],[125,232,78,0.42704109539584867],[125,232,79,0.46135908011997023],[125,233,64,-0.02274526755520828],[125,233,65,-0.02754982829092595],[125,233,66,-0.013955335217540846],[125,233,67,0.013798477721413988],[125,233,68,0.04477636163008228],[125,233,69,0.07867494958343729],[125,233,70,0.11509870244986184],[125,233,71,0.153560788586446],[125,233,72,0.19348286023385025],[125,233,73,0.23419372661019056],[125,233,74,0.2749269237049611],[125,233,75,0.31485111961906076],[125,233,76,0.35363390193078353],[125,233,77,0.3913659714549085],[125,233,78,0.4280793649113168],[125,233,79,0.46374453671263527],[125,234,64,0.022677667139484964],[125,234,65,0.017868060207478165],[125,234,66,0.013537307105963958],[125,234,67,0.009563351212260762],[125,234,68,0.04033628037915363],[125,234,69,0.07418621172715904],[125,234,70,0.1107198016553399],[125,234,71,0.14944921964669045],[125,234,72,0.18979167210800013],[125,234,73,0.23106782326442687],[125,234,74,0.2724991131098127],[125,234,75,0.31323866533543643],[125,234,76,0.35294755433458935],[125,234,77,0.3917175969368729],[125,234,78,0.429578972546951],[125,234,79,0.4664972306198715],[125,235,64,0.06860776221947658],[125,235,65,0.06398569649272069],[125,235,66,0.05978424125220698],[125,235,67,0.055873073924598116],[125,235,68,0.05211934433613247],[125,235,69,0.07084767891948203],[125,235,70,0.1073992643753615],[125,235,71,0.1462957299933239],[125,235,72,0.18695212906807218],[125,235,73,0.22868373864487646],[125,235,74,0.2707031543126109],[125,235,75,0.31215151113325634],[125,235,76,0.3526835636271934],[125,235,77,0.3923896497254368],[125,235,78,0.4312959175547484],[125,235,79,0.4693613116470977],[125,236,64,0.11483840795842977],[125,236,65,0.11061287272397291],[125,236,66,0.10674520480463887],[125,236,67,0.10310377644684017],[125,236,68,0.09955529665284939],[125,236,69,0.09596641489626082],[125,236,70,0.10498169394479574],[125,236,71,0.14393530900119328],[125,236,72,0.1847892171191743],[125,236,73,0.2268560567093635],[125,236,74,0.2693428123404715],[125,236,75,0.3113821658795039],[125,236,76,0.3526228692735872],[125,236,77,0.3931514256274131],[125,236,78,0.4329879983847796],[125,236,79,0.4720834256595806],[125,237,64,0.16140602094905776],[125,237,65,0.15780301693405585],[125,237,66,0.15448929515875726],[125,237,67,0.15133069890068257],[125,237,68,0.1481923976909102],[125,237,69,0.1449405262001375],[125,237,70,0.14144374235948268],[125,237,71,0.14220449112835482],[125,237,72,0.1831304598435809],[125,237,73,0.22540293084033586],[125,237,74,0.2682264421372684],[125,237,75,0.31072868115570834],[125,237,76,0.3525528365540135],[125,237,77,0.39377950320673794],[125,237,78,0.4344211638690825],[125,237,79,0.47441927646782395],[125,238,64,0.20852699440572192],[125,238,65,0.2057876262059902],[125,238,66,0.20326114247989155],[125,238,67,0.2008097555763791],[125,238,68,0.19829617784906672],[125,238,69,0.1955853199254387],[125,238,70,0.19254588958852256],[125,238,71,0.18905189127102406],[125,238,72,0.18498565635774575],[125,238,73,0.22415193389864826],[125,238,74,0.2671729317267369],[125,238,75,0.31000070747632197],[125,238,76,0.3522734441539357],[125,238,77,0.3940640805899204],[125,238,78,0.4353760161955435],[125,238,79,0.47614031060332573],[125,239,64,0.2562915447000057],[125,239,65,0.2546649722063137],[125,239,66,0.25316558233505615],[125,239,67,0.25165097500616196],[125,239,68,0.24998065383048346],[125,239,69,0.2480178121190862],[125,239,70,0.2456309991322954],[125,239,71,0.24269566656849134],[125,239,72,0.23909716465457612],[125,239,73,0.2348720827063651],[125,239,74,0.26601790197786973],[125,239,75,0.30902578249018886],[125,239,76,0.35160367809043536],[125,239,77,0.39381549188260545],[125,239,78,0.43565446567152477],[125,239,79,0.4770405249844914],[125,240,64,0.30466593024188027],[125,240,65,0.30440271183820644],[125,240,66,0.304170673421014],[125,240,67,0.3038219340224832],[125,240,68,0.3032121825243094],[125,240,69,0.3022025826852982],[125,240,70,0.3006615365236504],[125,240,71,0.29846630605393487],[125,240,72,0.2955059918873881],[125,240,73,0.2918162550070589],[125,240,74,0.28763994700201906],[125,240,75,0.30765585116524874],[125,240,76,0.35038813197516205],[125,240,77,0.3928709031973605],[125,240,78,0.43508653727733476],[125,240,79,0.47694339747277775],[125,241,64,0.35351140624654315],[125,241,65,0.354857505170183],[125,241,66,0.35612793129329195],[125,241,67,0.3571685607459797],[125,241,68,0.35783078875159263],[125,241,69,0.35797358675724034],[125,241,70,0.35746539476366124],[125,241,71,0.35618584885442545],[125,241,72,0.3540287604742272],[125,241,73,0.3510291668096723],[125,241,74,0.3474180613727895],[125,241,75,0.34337138769121583],[125,241,76,0.3485038136139872],[125,241,77,0.3911011882928332],[125,241,78,0.4335373290096792],[125,241,79,0.4757089403192091],[125,242,64,0.4026021557933801],[125,242,65,0.40579358981448965],[125,242,66,0.40879150027652356],[125,242,67,0.4114348589859206],[125,242,68,0.413570399038286],[125,242,69,0.4150548579328095],[125,242,70,0.4157570317049203],[125,242,71,0.41555964007717056],[125,242,72,0.41436232569670534],[125,242,73,0.41219993896902585],[125,242,74,0.40929032703397644],[125,242,75,0.40579814763091515],[125,242,76,0.40181941818235567],[125,242,77,0.3973917901138936],[125,242,78,0.4309141220148752],[125,242,79,0.4732408765010557],[125,243,64,0.451642197178533],[125,243,65,0.4569003117568014],[125,243,66,0.46183626355780705],[125,243,67,0.46628155405490346],[125,243,68,0.4700779814171965],[125,243,69,0.47308010337647743],[125,243,70,0.4751574861510243],[125,243,71,0.47619673942625973],[125,243,72,0.4761045556241227],[125,243,73,0.4749161488044123],[125,243,74,0.472835054858291],[125,243,75,0.4700134457650438],[125,243,76,0.4665385032967242],[125,243,77,0.4624425320185017],[125,243,78,0.45771240751887093],[125,243,79,0.46949393894869595],[125,244,64,0.5002812675589765],[125,244,65,0.5078086126349944],[125,244,66,0.5148748914607462],[125,244,67,0.5213036599953754],[125,244,68,0.5269315912563599],[125,244,69,0.5316111907845859],[125,244,70,0.5352132726695721],[125,244,71,0.537629196134832],[125,244,72,0.538773965394477],[125,244,73,0.5386838036908407],[125,244,74,0.5375469544250367],[125,244,75,0.5355020617184865],[125,244,76,0.5326265710683709],[125,244,77,0.5289466880485417],[125,244,78,0.5244466362880897],[125,244,79,0.5190772147275813],[125,245,64,0.5481296828902006],[125,245,65,0.558106473469203],[125,245,66,0.5674738279024778],[125,245,67,0.5760469682203624],[125,245,68,0.5836573231163048],[125,245,69,0.590155527216639],[125,245,70,0.5954141551212796],[125,245,71,0.5993301902153337],[125,245,72,0.6018282058550741],[125,245,73,0.6029461575076891],[125,245,74,0.6028562475514087],[125,245,75,0.601682758689416],[125,245,76,0.5994926647216926],[125,245,77,0.5963054437256211],[125,245,78,0.5921021521255214],[125,245,79,0.5868337596511325],[125,246,64,0.5947721741565686],[125,246,65,0.6073533148421888],[125,246,66,0.6191682150326856],[125,246,67,0.6300234575673851],[125,246,68,0.6397451686351583],[125,246,69,0.6481823297915141],[125,246,70,0.655209798904121],[125,246,71,0.6607310400267496],[125,246,72,0.6646814065616133],[125,246,73,0.6671013699436187],[125,246,74,0.6681466142817442],[125,246,75,0.66792647614271],[125,246,76,0.6664969229110972],[125,246,77,0.663870230970793],[125,246,78,0.6600238841458667],[125,246,79,0.6549086924008856],[125,247,64,0.6397806998935155],[125,247,65,0.6550933535291266],[125,247,66,0.6694757560536321],[125,247,67,0.6827256257645303],[125,247,68,0.6946637804405077],[125,247,69,0.7051377882474603],[125,247,70,0.7140253019113089],[125,247,71,0.7212370761575891],[125,247,72,0.7267203731344835],[125,247,73,0.7305190086564584],[125,247,74,0.732771971333402],[125,247,75,0.7335733463019591],[125,247,76,0.7329677876676921],[125,247,77,0.7309600738983608],[125,247,78,0.7275238408330835],[125,247,79,0.7226094923073823],[125,248,64,0.6827262350035534],[125,248,65,0.7008679155789093],[125,248,66,0.7179095162234599],[125,248,67,0.7336397423110538],[125,248,68,0.7478741420905084],[125,248,69,0.7604591193684777],[125,248,70,0.7712756042058139],[125,248,71,0.7802423816274022],[125,248,72,0.7873196389751308],[125,248,73,0.7925553942909853],[125,248,74,0.7960720830022535],[125,248,75,0.7979485344430971],[125,248,76,0.7982180297822792],[125,248,77,0.796877748444458],[125,248,78,0.7938973477434838],[125,248,79,0.789226675727703],[125,249,64,0.7231895358641711],[125,249,65,0.7442267058449016],[125,249,66,0.7639896620405218],[125,249,67,0.7822580227701305],[125,249,68,0.7988421440417255],[125,249,69,0.8135875132744446],[125,249,70,0.8263787764086704],[125,249,71,0.8371433984039833],[125,249,72,0.8458553713395618],[125,249,73,0.8525677883515891],[125,249,74,0.8573870045247118],[125,249,75,0.8603769029865251],[125,249,76,0.8615595916214912],[125,249,77,0.8609247558272107],[125,249,78,0.8584380985952199],[125,249,79,0.8540488679163166],[125,250,64,0.7607708817288692],[125,250,65,0.7847380339665336],[125,250,66,0.8072541386102906],[125,250,67,0.8280897244754394],[125,250,68,0.8470500656455144],[125,250,69,0.8639799715769114],[125,250,70,0.8787681868030974],[125,250,71,0.8913514002383806],[125,250,72,0.9017181317711821],[125,250,73,0.9099274239320897],[125,250,74,0.9160703578986228],[125,250,75,0.9201964993901016],[125,250,76,0.9223172473794707],[125,250,77,0.9224151098409067],[125,250,78,0.9204520197466031],[125,250,79,0.9163766913127398],[125,251,64,0.7950987924205017],[125,251,65,0.8219979968007599],[125,251,66,0.8472682851937213],[125,251,67,0.8706711636503279],[125,251,68,0.8920069631715704],[125,251,69,0.911120037399083],[125,251,70,0.927903547152855],[125,251,71,0.9423038318160386],[125,251,72,0.9543244908912256],[125,251,73,0.9640313793009007],[125,251,74,0.9715014401611596],[125,251,75,0.9767708678410999],[125,251,76,0.9798410807631664],[125,251,77,0.9806879379822211],[125,251,78,0.9792699480612921],[125,251,79,0.975535470244026],[125,252,64,0.8258377223179525],[125,252,65,0.8556386173045698],[125,252,66,0.8836333889384156],[125,252,67,0.9095746539410378],[125,252,68,0.9332579638602584],[125,252,69,0.9545274172617174],[125,252,70,0.9732808372366701],[125,252,71,0.989474514226013],[125,252,72,1.0031274975487907],[125,252,73,1.014313294343621],[125,252,74,1.02309616412586],[125,252,75,1.0295001847493115],[125,252,76,1.0335177801134616],[125,252,77,1.0351188964107467],[125,252,78,1.0342591221626118],[125,252,79,1.0308867520443596],[125,253,64,0.8526947306346243],[125,253,65,0.8853349398668495],[125,253,66,0.9159941767907063],[125,253,67,0.9444163663619639],[125,253,68,0.9703924660015463],[125,253,69,0.9937664948326329],[125,253,70,1.0144411080963063],[125,253,71,1.032382716745715],[125,253,72,1.047626002327849],[125,253,73,1.0602529298603436],[125,253,74,1.0703168315760299],[125,253,75,1.0778312180384735],[125,253,76,1.0827807509592602],[125,253,77,1.0851303987409184],[125,253,78,1.0848334870740683],[125,253,79,1.0818386445888117],[125,254,64,0.8754251279905085],[125,254,65,0.9108110820915479],[125,254,66,0.9440452455907989],[125,254,67,0.9748631106552355],[125,254,68,1.0030512450429825],[125,254,69,1.0284537365423985],[125,254,70,1.0509781640009723],[125,254,71,1.0706010949439948],[125,254,72,1.0873728354141352],[125,254,73,1.10138456972067],[125,254,74,1.1126807389175641],[125,254,75,1.1212661102391186],[125,254,76,1.127119046007692],[125,254,77,1.1302006586685167],[125,254,78,1.130462812249278],[125,254,79,1.127854970244476],[125,255,64,0.8938370992762821],[125,255,65,0.9318452430304269],[125,255,66,0.9675364303490916],[125,255,67,1.0006380380626057],[125,255,68,1.0309324657245735],[125,255,69,1.0582639890639465],[125,255,70,1.0825451231257035],[125,255,71,1.1037624951001073],[125,255,72,1.1219818388193734],[125,255,73,1.1373042658738222],[125,255,74,1.1497676152885354],[125,255,75,1.1593699853801616],[125,255,76,1.1660851125676959],[125,255,77,1.1698715464290075],[125,255,78,1.1706806229885443],[125,255,79,1.1684632362362286],[125,256,64,0.9077953028105556],[125,256,65,0.9482736678666558],[125,256,66,0.9862771107050561],[125,256,67,1.0215252655111324],[125,256,68,1.0537966002421422],[125,256,69,1.0829356686577782],[125,256,70,1.1088598569454675],[125,256,71,1.1315656249403683],[125,256,72,1.1511337529647128],[125,256,73,1.1676759262157577],[125,256,74,1.1812258931274695],[125,256,75,1.1917773796811602],[125,256,76,1.1993013574089495],[125,256,77,1.203755259089671],[125,256,78,1.2050909452440326],[125,256,79,1.203261421429042],[125,257,64,0.9172234457894405],[125,257,65,0.9599935690482986],[125,257,66,1.0001394555676242],[125,257,67,1.0373734212115246],[125,257,68,1.071470252437963],[125,257,69,1.1022748423814854],[125,257,70,1.1297093083436516],[125,257,71,1.1537795906911243],[125,257,72,1.1745809576219477],[125,257,73,1.1922362453118531],[125,257,74,1.206777811198874],[125,257,75,1.2181974960438071],[125,257,76,1.226465529054693],[125,257,77,1.2315398046740884],[125,257,78,1.233373863812137],[125,257,79,1.231923579525471],[125,258,64,0.9221058360292136],[125,258,65,0.9669650038726002],[125,258,66,1.0090606059380967],[125,258,67,1.0480981116702366],[125,258,68,1.0838488880198387],[125,258,69,1.1161582011648266],[125,258,70,1.1449526884362402],[125,258,71,1.1702473004493803],[125,258,72,1.192151067213914],[125,258,73,1.2107984779765586],[125,258,74,1.2262233500774298],[125,258,75,1.2384182823440766],[125,258,76,1.2473549175098793],[125,258,77,1.2529933001204023],[125,258,78,1.2552898939144286],[125,258,79,1.2542042586796802],[125,259,64,0.9224879100012503],[125,259,65,0.9692117085200983],[125,259,66,1.0130437959144776],[125,259,67,1.0536833101141314],[125,259,68,1.0908984708073437],[125,259,69,1.124534924749004],[125,259,70,1.1545235521102455],[125,259,71,1.180887733869597],[125,259,72,1.2037493804725214],[125,259,73,1.223255055708457],[125,259,74,1.2394430000892531],[125,259,75,1.2523093335234141],[125,259,76,1.261829371423014],[125,259,77,1.2679670830717242],[125,259,78,1.2706831661655684],[125,259,79,1.2699417375264128],[125,260,64,0.9184757371601071],[125,260,65,0.966820888539581],[125,260,66,1.012158411878373],[125,260,67,1.0541816663289445],[125,260,68,1.0926560050065595],[125,260,69,1.1274274384915333],[125,260,70,1.1584307522778658],[125,260,71,1.185697078168187],[125,260,72,1.209360184455995],[125,260,73,1.229579045982329],[125,260,74,1.2463993617118614],[125,260,75,1.2598236174806123],[125,260,76,1.269833132683362],[125,260,77,1.276397637500353],[125,260,78,1.279483424929847],[125,260,79,1.2790600776265382],[125,261,64,0.910234500563783],[125,261,65,0.9599419657828185],[125,261,66,1.006538989863295],[125,261,67,1.0497137379103136],[125,261,68,1.0892289835120013],[125,261,69,1.124931062035374],[125,261,70,1.1567582728449846],[125,261,71,1.1847487304442954],[125,261,72,1.2090469129238897],[125,261,73,1.2298244543967878],[125,261,74,1.2471375784313934],[125,261,75,1.260998024762942],[125,261,76,1.2713954884520742],[125,261,77,1.2783073331643888],[125,261,78,1.2817068400649578],[125,261,79,1.281569992327829],[125,262,64,0.8979859537872611],[125,262,65,0.9487842817902206],[125,262,66,0.9963831511055643],[125,262,67,1.0404661429286053],[125,262,68,1.0807937422369964],[125,262,69,1.11721254984357],[125,262,70,1.1496639403952718],[125,262,71,1.1781921663181067],[125,262,72,1.2029511590711186],[125,262,73,1.2241253696786807],[125,262,74,1.241784602058263],[125,262,75,1.2559527420576624],[125,262,76,1.2666302406283372],[125,262,77,1.2738039788977888],[125,262,78,1.2774556320539907],[125,262,79,1.2775685320418912],[125,263,64,0.8820048541282313],[125,263,65,0.933613757626303],[125,263,66,0.9819484757766874],[125,263,67,1.0266886340064094],[125,263,68,1.0675927204713767],[125,263,69,1.1045075235983008],[125,263,70,1.137377014588807],[125,263,71,1.1662506748856512],[125,263,72,1.191290542619981],[125,263,73,1.2126939515433148],[125,263,74,1.2305472905003434],[125,263,75,1.244889449483089],[125,263,76,1.255733992749772],[125,263,77,1.2630791897331624],[125,263,78,1.2669165105250273],[125,263,79,1.2672375859367004],[125,264,64,0.8626143721057801],[125,264,65,0.9147485101657638],[125,264,66,0.9635483148980101],[125,264,67,1.0086900938094965],[125,264,68,1.049930627267289],[125,264,69,1.0871167964651078],[125,264,70,1.1201946572759651],[125,264,71,1.149217959990796],[125,264,72,1.1743554312708628],[125,264,73,1.1958172614111133],[125,264,74,1.2137093379942434],[125,264,75,1.228088341679698],[125,264,76,1.238983254327511],[125,264,77,1.2464055678576693],[125,264,78,1.250357926158622],[125,264,79,1.2508412000449618],[125,265,64,0.8401804772517475],[125,265,65,0.8925534248298437],[125,265,66,0.9415465404373113],[125,265,67,0.9868334519509084],[125,265,68,1.0281695138527822],[125,265,69,1.0654015892219795],[125,265,70,1.0984772803262626],[125,265,71,1.127453607814159],[125,265,72,1.152504516511359],[125,265,73,1.1738529359804941],[125,265,74,1.1916270377945133],[125,265,75,1.2059039727011702],[125,265,76,1.216730362615898],[125,265,77,1.2241326974020164],[125,265,78,1.2281261359832234],[125,265,79,1.228721711788402],[125,266,64,0.8151053001948437],[125,266,65,0.8674336847730871],[125,266,66,0.916351233587461],[125,266,67,0.9615295233082898],[125,266,68,1.002722752073275],[125,266,69,1.0397776382533794],[125,266,70,1.0726427721722311],[125,266,71,1.101377420778978],[125,266,72,1.1261592437838246],[125,266,73,1.1472237036569457],[125,266,74,1.164723877320698],[125,266,75,1.1787599247052345],[125,266,76,1.1893982218166255],[125,266,77,1.1966819530623172],[125,266,78,1.2006400820582501],[125,266,79,1.20129470091766],[125,267,64,0.7878194710370748],[125,267,65,0.8398272565200531],[125,267,66,0.8884073112267084],[125,267,67,0.9332297677540705],[125,267,68,0.9740479188605506],[125,267,69,1.0107081954089006],[125,267,70,1.0431596030680446],[125,267,71,1.0714626177737083],[125,267,72,1.0957970970111832],[125,267,73,1.1164107438381818],[125,267,74,1.1334839657621965],[125,267,75,1.1471423004443464],[125,267,76,1.1574738597174095],[125,267,77,1.164540122554981],[125,267,78,1.1683850835450569],[125,267,79,1.1690427568680692],[125,268,64,0.7587734340234956],[125,268,65,0.8101963320529704],[125,268,66,0.8581880905615578],[125,268,67,0.9024179712993937],[125,268,68,0.9426385867301152],[125,268,69,0.9786959197273299],[125,268,70,1.010538809063621],[125,268,71,1.0382279006920128],[125,268,72,1.0619437374815874],[125,268,73,1.0819458890558906],[125,268,74,1.0984442941413628],[125,268,75,1.1115920395565404],[125,268,76,1.1215008017654682],[125,268,77,1.1282518429048276],[125,268,78,1.1319053421658942],[125,268,79,1.1325080625313677],[125,269,64,0.728427738504269],[125,269,65,0.7790177273493311],[125,269,66,0.8261857919512465],[125,269,67,0.8696008486508404],[125,269,68,0.9090150203060074],[125,269,69,0.9442736610252385],[125,269,70,0.9753248546933491],[125,269,71,1.0022283872893267],[125,269,72,1.0251639970911472],[125,269,73,1.0444026699733548],[125,269,74,1.0601858278341643],[125,269,75,1.0726960586558396],[125,269,76,1.0820702625752239],[125,269,77,1.0884108505658754],[125,269,78,1.0917952610503838],[125,269,79,1.0922837944429022],[125,270,64,0.6972423061891647],[125,270,65,0.7467722373695856],[125,270,66,0.792900979914021],[125,270,67,0.8352975671801769],[125,270,68,0.8737137788733104],[125,270,69,0.9079941353503878],[125,270,70,0.9380853743797721],[125,270,71,0.9640454103563598],[125,270,72,0.98605172594513],[125,270,73,1.0043862032393573],[125,270,74,1.0193234315488473],[125,270,75,1.0310772152226926],[125,270,76,1.039811154870738],[125,270,77,1.045650045375362],[125,270,78,1.0486895769700653],[125,270,79,1.049004339384902],[125,271,64,0.6656646746955571],[125,271,65,0.7139329474959175],[125,271,66,0.7588309423160994],[125,271,67,0.800028192307917],[125,271,68,0.8372762249590701],[125,271,69,0.8704184923005484],[125,271,70,0.8993997925527059],[125,271,71,0.9242751832099192],[125,271,72,0.9452184943179052],[125,271,73,0.9625219221985571],[125,271,74,0.976494626762691],[125,271,75,0.9873830952944032],[125,271,76,0.9953789158627331],[125,271,77,1.0006303683407352],[125,271,78,1.003252305960676],[125,271,79,1.0033343274053925],[125,272,64,0.6341172173883064],[125,272,65,0.6809525014205942],[125,272,66,0.7244570077419404],[125,272,67,0.7643010542994533],[125,272,68,0.8002359389404973],[125,272,69,0.8321037742067511],[125,272,70,0.8598468224829691],[125,272,71,0.8835163315003592],[125,272,72,0.9032811489710856],[125,272,73,0.9194431504579154],[125,272,74,0.9323471816165712],[125,272,75,0.9422736249554386],[125,272,76,0.9494431510602336],[125,272,77,0.9540284932597883],[125,272,78,0.956164502332457],[125,272,79,0.9559564812531732],[125,273,64,0.6029833395126734],[125,273,65,0.6482493254849249],[125,273,66,0.6902308010467179],[125,273,67,0.7285990364745091],[125,273,68,0.7631050396810727],[125,273,69,0.7935892671814462],[125,273,70,0.8199908438310411],[125,273,71,0.8423562913358378],[125,273,72,0.8608482238298958],[125,273,73,0.8757775183090719],[125,273,74,0.8875255332670813],[125,273,75,0.8964075056272056],[125,273,76,0.9026740955162704],[125,273,77,0.906523332173248],[125,273,78,0.9081108310676745],[125,273,79,0.9075582822279205],[125,274,64,0.5726418423063038],[125,274,65,0.6162383553014196],[125,274,66,0.6566015279842401],[125,274,67,0.693403630639982],[125,274,68,0.7263952376970694],[125,274,69,0.7554147896575476],[125,274,70,0.7803976712998169],[125,274,71,0.8013848061536027],[125,274,72,0.8185314127696252],[125,274,73,0.8321566587217825],[125,274,74,0.8426789567883556],[125,274,75,0.8504491043348898],[125,274,76,0.8557484684667293],[125,274,77,0.8588010879960806],[125,274,78,0.8597840390642423],[125,274,79,0.8588360644190385],[125,275,64,0.5437882470543166],[125,275,65,0.5856258649920267],[125,275,66,0.6242857691113621],[125,275,67,0.6594412896773808],[125,275,68,0.6908424519612731],[125,275,69,0.7183253656921625],[125,275,70,0.7418211373962335],[125,275,71,0.7613643056231061],[125,275,72,0.777101637731415],[125,275,73,0.7893598409722513],[125,275,74,0.7985946041999716],[125,275,75,0.8051926756422192],[125,275,76,0.8094665678754449],[125,275,77,0.81166679996632],[125,275,78,0.81199239701881],[125,275,79,0.8105996471269491],[125,276,64,0.51715199046609],[125,276,65,0.557142566702776],[125,276,66,0.5940158236965452],[125,276,67,0.6274462681678449],[125,276,68,0.6571833224303648],[125,276,69,0.6830605193191803],[125,276,70,0.7050042259914131],[125,276,71,0.7230418965993302],[125,276,72,0.7373108898436569],[125,276,73,0.7481446478072546],[125,276,74,0.7560360184773471],[125,276,75,0.761407741935836],[125,276,76,0.7646035873774444],[125,276,77,0.7659007202447539],[125,276,78,0.7655203220409084],[125,276,79,0.7636364628200328],[125,277,64,0.49327602535622384],[125,277,65,0.5313378302322309],[125,277,66,0.5663478034913803],[125,277,67,0.5979817672075046],[125,277,68,0.6259885162108629],[125,277,69,0.6501987984384446],[125,277,70,0.6705338297551371],[125,277,71,0.6870133432456775],[125,277,72,0.699764408874136],[125,277,73,0.7091263375000285],[125,277,74,0.7156286907225027],[125,277,75,0.7197299011245235],[125,277,76,0.7218047848843914],[125,277,77,0.7221570199784806],[125,277,78,0.7210298740208806],[125,277,79,0.7186151817399956],[125,278,64,0.4725148659182285],[125,278,65,0.5085771540291311],[125,278,66,0.5416585359688191],[125,278,67,0.5714362777739046],[125,278,68,0.5976585199766841],[125,278,69,0.6201530258492419],[125,278,70,0.6388354695615087],[125,278,71,0.6537172642531974],[125,278,72,0.6649143668847937],[125,278,73,0.6727710265104732],[125,278,74,0.6778527670527983],[125,278,75,0.6806530951643905],[125,278,76,0.6815773608357917],[125,278,77,0.6809553345758733],[125,278,78,0.679052032989199],[125,278,79,0.6760767927503796],[125,279,64,0.4550327167133969],[125,279,65,0.4890396333837081],[125,279,66,0.5201423870659605],[125,279,67,0.5480197749268056],[125,279,68,0.5724192236106146],[125,279,69,0.5931652908449354],[125,279,70,0.6101677124707117],[125,279,71,0.6234289948971837],[125,279,72,0.6330531906409927],[125,279,73,0.6393884921069851],[125,279,74,0.643035364114219],[125,279,75,0.6445214833897523],[125,279,76,0.6442819448502523],[125,279,77,0.6426719281300219],[125,279,78,0.639977613128516],[125,279,79,0.6364253445774015],[125,280,64,0.4408001321107269],[125,280,65,0.4727139838451766],[125,280,66,0.5018066671041055],[125,280,67,0.5277585259181307],[125,280,68,0.550316150816641],[125,280,69,0.5693006226637461],[125,280,70,0.5846153077146032],[125,280,71,0.5962532038920406],[125,280,72,0.6043056755946021],[125,280,73,0.6091238029871556],[125,280,74,0.6113417489761312],[125,280,75,0.6115202168750936],[125,280,76,0.6101230205663916],[125,280,77,0.6075298338802984],[125,280,78,0.6040471914887905],[125,280,79,0.5999177413140173],[125,281,64,0.42958920617812446],[125,281,65,0.4593931198654776],[125,281,66,0.4864656198860023],[125,281,67,0.5104885122108285],[125,281,68,0.5312073367027689],[125,281,69,0.548439345795156],[125,281,70,0.5620810406854589],[125,281,71,0.5721152650435887],[125,281,72,0.5786198914399283],[125,281,73,0.5819477778962339],[125,281,74,0.5827653834062554],[125,281,75,0.5816651138267439],[125,281,76,0.5791382886719063],[125,281,77,0.5755879707104468],[125,281,78,0.5713400514037724],[125,281,79,0.56665259218541],[125,282,64,0.4209672930242171],[125,282,65,0.4486672886687537],[125,282,66,0.47373299496991145],[125,282,67,0.49584746540642755],[125,282,68,0.514754852334245],[125,282,69,0.5302681171420028],[125,282,70,0.5422763049280878],[125,282,71,0.5507513836991718],[125,282,72,0.555756879242997],[125,282,73,0.557646272243984],[125,282,74,0.5571168325266327],[125,282,75,0.5547912360051578],[125,282,76,0.5511869681218118],[125,282,77,0.5467292356843183],[125,282,78,0.5417621406100807],[125,282,79,0.5365581155772289],[125,283,64,0.41428925759231416],[125,283,65,0.4399157593479517],[125,283,66,0.4630132031217464],[125,283,67,0.48326551708239696],[125,283,68,0.50041497625816],[125,283,69,0.5142696450390868],[125,283,70,0.5247103921359965],[125,283,71,0.531697477996104],[125,283,72,0.5352791401445822],[125,283,73,0.5358082927202067],[125,283,74,0.5340115378507141],[125,283,75,0.5305403661778048],[125,283,76,0.5259370355457368],[125,283,77,0.5206475726190176],[125,283,78,0.5150330440685276],[125,283,79,0.5093790973261288],[125,284,64,0.4087097582929557],[125,284,65,0.43231830691917716],[125,284,66,0.45351200277529746],[125,284,67,0.4719750915626664],[125,284,68,0.4874473000905362],[125,284,69,0.4997310163640257],[125,284,70,0.5086980512101568],[125,284,71,0.5142959814418938],[125,284,72,0.5165566935211764],[125,284,73,0.5158313219180315],[125,284,74,0.5128744167562591],[125,284,75,0.5083648895746271],[125,284,76,0.5028683958482362],[125,284,77,0.4968504400971345],[125,284,78,0.49068775963744976],[125,284,79,0.4846779869750868],[125,285,64,0.40383895298682937],[125,285,65,0.4255027082845591],[125,285,66,0.44487485604685295],[125,285,67,0.46163929715838736],[125,285,68,0.47553244866457034],[125,285,69,0.4863501705260147],[125,285,70,0.49395428425616744],[125,285,71,0.49827868344203174],[125,285,72,0.49933784631196915],[125,285,73,0.49747981458192914],[125,285,74,0.4934853879698067],[125,285,75,0.48805920817405607],[125,285,76,0.4817886994202252],[125,285,77,0.4751572891429223],[125,285,78,0.46855591787068646],[125,285,79,0.46229283831381884],[125,286,64,0.3999321854989032],[125,286,65,0.4197334900513263],[125,286,66,0.4373743694373068],[125,286,67,0.45253773237792627],[125,286,68,0.46495597113118614],[125,286,69,0.4744176471319093],[125,286,70,0.4807737801075718],[125,286,71,0.4839437406699941],[125,286,72,0.48392374109249314],[125,286,73,0.48105725270155475],[125,286,74,0.476148817409924],[125,286,75,0.46992637969351253],[125,286,76,0.462996911312749],[125,286,77,0.45585974896743864],[125,286,78,0.4489182335712678],[125,286,79,0.4424896511460136],[125,287,64,0.39719398444846676],[125,287,65,0.41522489341692537],[125,287,66,0.43123318277709577],[125,287,67,0.4449001527643692],[125,287,68,0.45595352136113965],[125,287,69,0.4641738840889715],[125,287,70,0.4694007900760412],[125,287,71,0.4715384343997885],[125,287,72,0.4705641351558464],[125,287,73,0.4668152034616345],[125,287,74,0.46111669051964405],[125,287,75,0.4542167545239149],[125,287,76,0.44673916414047266],[125,287,77,0.43919674465517106],[125,287,78,0.43200314033210657],[125,287,79,0.42548289298265574],[125,288,64,0.3957458574122346],[125,288,65,0.41210872265979903],[125,288,66,0.42659195817753226],[125,288,67,0.4388746795264531],[125,288,68,0.4486793570265085],[125,288,69,0.4557780679070558],[125,288,70,0.45999837868066823],[125,288,71,0.4612288577401985],[125,288,72,0.4594275458383881],[125,288,73,0.45492394657605195],[125,288,74,0.448559777089365],[125,288,75,0.44109976209718316],[125,288,76,0.43318127244067084],[125,288,77,0.4253278626802856],[125,288,78,0.41796114191701983],[125,288,79,0.41141097783795705],[125,289,64,0.3956373481764436],[125,289,65,0.4104449413672472],[125,289,66,0.4235195404746479],[125,289,67,0.4345375491047708],[125,289,68,0.44321570223229256],[125,289,69,0.44931713169167165],[125,289,70,0.4526570769153556],[125,289,71,0.45310824091890367],[125,289,72,0.45060926055848044],[125,289,73,0.44548017734973],[125,289,74,0.43857503182991037],[125,289,75,0.43067101048952916],[125,289,76,0.42241553056173997],[125,289,77,0.4143398446953202],[125,289,78,0.4068709984716779],[125,289,79,0.400342140765941],[125,290,64,0.3968564452277822],[125,290,65,0.41023166268077943],[125,290,66,0.42202255367609687],[125,290,67,0.43190233984721654],[125,290,68,0.4395816274328964],[125,290,69,0.44481430965643165],[125,290,70,0.44740313036435253],[125,290,71,0.44720490892450393],[125,290,72,0.4441390160457432],[125,290,73,0.4385144151243464],[125,290,74,0.4311927356570394],[125,290,75,0.42295916095124353],[125,290,76,0.41446731834622436],[125,290,77,0.4062529204162791],[125,290,78,0.3987457813658134],[125,290,79,0.3922802086163594],[125,291,64,0.39933934148504674],[125,291,65,0.4114145335607682],[125,291,66,0.42205443341285065],[125,291,67,0.430928675795314],[125,291,68,0.4377414466350511],[125,291,69,0.4422372481563782],[125,291,70,0.4442063421673533],[125,291,71,0.4434898715077972],[125,291,72,0.4399883467621124],[125,291,73,0.4339981171091078],[125,291,74,0.426383377688588],[125,291,75,0.4179325773641042],[125,291,76,0.40930151460944064],[125,291,77,0.4010269796051664],[125,291,78,0.39353879666769687],[125,291,79,0.3871702670109201],[125,292,64,0.40297954527019203],[125,292,65,0.4138955130691591],[125,292,66,0.4235238953945145],[125,292,67,0.43153040758034794],[125,292,68,0.43761263188617056],[125,292,69,0.44150567324124196],[125,292,70,0.4429875108332777],[125,292,71,0.4418840455414822],[125,292,72,0.438077602513925],[125,292,73,0.4318504975958545],[125,292,74,0.42406427795354795],[125,292,75,0.4155057506257555],[125,292,76,0.4068287184130802],[125,292,77,0.3985675831493679],[125,292,78,0.39114937725030297],[125,292,79,0.38490422353926607],[125,293,64,0.4076363425195473],[125,293,65,0.41754104467093567],[125,293,66,0.42630283986890305],[125,293,67,0.4335832704298579],[125,293,68,0.4390732450486453],[125,293,69,0.4424986147290844],[125,293,70,0.44362546290313687],[125,293,71,0.44226510973865346],[125,293,72,0.4382826352553556],[125,293,73,0.43194505255878834],[125,293,74,0.4241059508133496],[125,293,75,0.4155454979612975],[125,293,76,0.40691127813400557],[125,293,77,0.39873181323807905],[125,293,78,0.3914285435293615],[125,293,79,0.3853262671748888],[125,294,64,0.41314261023493404],[125,294,65,0.4221896225541072],[125,294,66,0.43023369208567297],[125,294,67,0.4369320192843378],[125,294,68,0.44196888685994146],[125,294,69,0.4450611868002259],[125,294,70,0.4459636804619106],[125,294,71,0.4444739917300332],[125,294,72,0.4404411550831781],[125,294,73,0.4341157896388156],[125,294,74,0.42633820909535713],[125,294,75,0.41787693716210966],[125,294,76,0.40936912832828537],[125,294,77,0.4013339626358382],[125,294,78,0.3941845328333555],[125,294,79,0.38823822391105317],[125,295,64,0.4193119811744851],[125,295,65,0.42765875196803366],[125,295,66,0.4351361787638318],[125,295,67,0.4413970410239554],[125,295,68,0.4461191632783281],[125,295,69,0.4490109251112704],[125,295,70,0.44981652349924395],[125,295,71,0.4483209874997439],[125,295,72,0.44435875542264003],[125,295,73,0.4381631635122825],[125,295,74,0.4305560089383428],[125,295,75,0.4222892357516611],[125,295,76,0.4139854343901967],[125,295,77,0.4061510630528764],[125,295,78,0.39918819740516537],[125,295,79,0.393404808616411],[125,296,64,0.42594535978366266],[125,296,65,0.4337513035805503],[125,296,66,0.44081354056356503],[125,296,67,0.44678044380571685],[125,296,68,0.4513236691146347],[125,296,69,0.45414368042963366],[125,296,70,0.4549750471193692],[125,296,71,0.45359151318002977],[125,296,72,0.4498146074048714],[125,296,73,0.4438597166445396],[125,296,74,0.43652503535039444],[125,296,75,0.4285411350787859],[125,296,76,0.4205120450067088],[125,296,77,0.4129282526128252],[125,296,78,0.406178271035929],[125,296,79,0.4005587731109039],[125,297,64,0.43283678936591613],[125,297,65,0.4402612618533558],[125,297,66,0.447058180561855],[125,297,67,0.4528716235105582],[125,297,68,0.457367488949531],[125,297,69,0.46023906878804643],[125,297,70,0.4612124135997071],[125,297,71,0.46005148920436306],[125,297,72,0.45656682343523836],[125,297,73,0.45095542542770956],[125,297,74,0.44398702847859134],[125,297,75,0.4363662493377141],[125,297,76,0.42867475240668224],[125,297,77,0.4213839824169696],[125,297,78,0.41486650433025424],[125,297,79,0.40940595046104283],[125,298,64,0.4397786704934458],[125,298,65,0.4469788674361308],[125,298,66,0.4536567487323716],[125,298,67,0.45945230730086184],[125,298,68,0.4640262153368464],[125,298,69,0.46706547815959315],[125,298,70,0.4682888992987557],[125,298,71,0.4674523568195877],[125,298,72,0.4643574899533409],[125,298,73,0.4591827517034238],[125,298,74,0.45266485059128014],[125,298,75,0.445478139515759],[125,298,76,0.4381783604057636],[125,298,77,0.43121506220609973],[125,298,78,0.42494266860391194],[125,298,79,0.4196301954957683],[125,299,64,0.44656633065774687],[125,299,65,0.4536951535790454],[125,299,66,0.46039466242926314],[125,299,67,0.4663010742879852],[125,299,68,0.47107048429247067],[125,299,69,0.4743846316527731],[125,299,70,0.4759564964126817],[125,299,71,0.4755357269564502],[125,299,72,0.4729173693839397],[125,299,73,0.46826139966972335],[125,299,74,0.4622672937720611],[125,299,75,0.45557516226768374],[125,299,76,0.4487115602459058],[125,299,77,0.4421015451187966],[125,299,78,0.43607942841275515],[125,299,79,0.43089822154154284],[125,300,64,0.4530019451601508],[125,300,65,0.4602058765638902],[125,300,66,0.4670600628751179],[125,300,67,0.47319735331012086],[125,300,68,0.47827002806921126],[125,300,69,0.4819557072270134],[125,300,70,0.483963109581122],[125,300,71,0.484037661459097],[125,300,72,0.48197027127946257],[125,300,73,0.47790277817287063],[125,300,74,0.4724936283263201],[125,300,75,0.4663450937176771],[125,300,76,0.45995161423053504],[125,300,77,0.4537114515472713],[125,300,78,0.4479370827140728],[125,300,79,0.4428643333779749],[125,301,64,0.4588978092422268],[125,301,65,0.4663148401536791],[125,301,66,0.47344720765290654],[125,301,67,0.4799248978202541],[125,301,68,0.4853972452173174],[125,301,69,0.4895390139282911],[125,301,70,0.49205634734178166],[125,301,71,0.4926925866730534],[125,301,72,0.4912370926535349],[125,301,73,0.4878141683834251],[125,301,74,0.48303789189957524],[125,301,75,0.4774695281881126],[125,301,76,0.47156884715445524],[125,301,77,0.46570533208975984],[125,301,78,0.46016817465930115],[125,301,79,0.4551750564128204],[125,302,64,0.4640789614559888],[125,302,65,0.47183661406069116],[125,302,66,0.47935929920191944],[125,302,67,0.48627473788427494],[125,302,68,0.492230287930789],[125,302,69,0.4968992246450453],[125,302,70,0.4999869084340782],[125,302,71,0.501236839392013],[125,302,72,0.5004395275059412],[125,302,73,0.49770259685708146],[125,302,74,0.49359291930822524],[125,302,75,0.48862805185577773],[125,302,76,0.48323094552926427],[125,302,77,0.4777406696003341],[125,302,78,0.47242197001903263],[125,302,79,0.46747366207737945],[125,303,64,0.4683851582743964],[125,303,65,0.476598646433393],[125,303,66,0.48461074931807563],[125,303,67,0.4920476092895645],[125,303,68,0.49855566667970985],[125,303,69,0.5038081653845321],[125,303,70,0.5075115629518996],[125,303,71,0.509411845163402],[125,303,72,0.5093034455388805],[125,303,73,0.5072784139800255],[125,303,74,0.5038541130823441],[125,303,75,0.49950219133509727],[125,303,76,0.4946070646036943],[125,303,77,0.48947612033543575],[125,303,78,0.4843488042395256],[125,303,79,0.47940458944138564],[125,304,64,0.4716721999410981],[125,304,65,0.4804427703612686],[125,304,66,0.4890288796577157],[125,304,67,0.4970558597632491],[125,304,68,0.5041703721279036],[125,304,69,0.5100471610690357],[125,304,70,0.5143957283450017],[125,304,71,0.516966928952379],[125,304,72,0.5175619400643074],[125,304,73,0.5162585777987326],[125,304,74,0.5135229547205862],[125,304,75,0.5097791371885668],[125,304,76,0.505371743179236],[125,304,77,0.5005755941976301],[125,304,78,0.49560429813135154],[125,304,79,0.4906177630481703],[125,305,64,0.4738126075608316],[125,305,65,0.48322610439887415],[125,305,66,0.4924550582460996],[125,305,67,0.5011248323012427],[125,305,68,0.5088835143369143],[125,305,69,0.5154089378528056],[125,305,70,0.5204156402697856],[125,305,71,0.5236617581648556],[125,305,72,0.5249580451027965],[125,305,73,0.524369643234498],[125,305,74,0.5223102566573361],[125,305,75,0.5191552423643612],[125,305,76,0.5152086262208497],[125,305,77,0.5107121740762266],[125,305,78,0.5058534421896688],[125,305,79,0.5007728069694262],[125,306,64,0.47469565142911396],[125,306,65,0.4848213471078469],[125,306,66,0.49474527198942936],[125,306,67,0.5040937256070018],[125,306,68,0.5125174792553517],[125,306,69,0.51969908195889],[125,306,70,0.5253601182887504],[125,306,71,0.5292684180289843],[125,306,72,0.5312471216735173],[125,306,73,0.5313504566824283],[125,306,74,0.5299391549419815],[125,306,75,0.5273392955611536],[125,306,76,0.523813995262953],[125,306,77,0.5195718742851024],[125,306,78,0.5147745495466001],[125,306,79,0.5095431550801924],[125,307,64,0.47422673060232134],[125,307,65,0.4851164656178811],[125,307,66,0.4957701351913334],[125,307,67,0.5058159316408333],[125,307,68,0.5149086024943355],[125,307,69,0.5227370550364814],[125,307,70,0.529031926419128],[125,307,71,0.5335731193354892],[125,307,72,0.5361989132755743],[125,307,73,0.5369545559950228],[125,307,74,0.5361478426303075],[125,307,75,0.5340555695200147],[125,307,76,0.530900106610423],[125,307,77,0.5268572380973483],[125,307,78,0.5220630775552264],[125,307,79,0.5166200575534702],[125,308,64,0.4723261037070927],[125,308,65,0.48401377820568864],[125,308,66,0.495414334072901],[125,308,67,0.5061588502789341],[125,308,68,0.51590736038832],[125,308,69,0.524356766038171],[125,308,70,0.5312487285301983],[125,308,71,0.5363775385364565],[125,308,72,0.5395992705604407],[125,308,73,0.5409522758501955],[125,308,74,0.5406920438879821],[125,308,75,0.5390466442434745],[125,308,76,0.5361983373348154],[125,308,77,0.5322907743770404],[125,308,78,0.527435318005592],[125,308,79,0.5217164835749433],[125,309,64,0.46892697099057173],[125,309,65,0.48142843089336823],[125,309,66,0.49357550729760613],[125,309,67,0.5050031810834078],[125,309,68,0.5153780783424329],[125,309,69,0.5244066996181176],[125,309,70,0.5318436385901769],[125,309,71,0.53749979020335],[125,309,72,0.5412515451961253],[125,309,73,0.5431325585042379],[125,309,74,0.5433472288065042],[125,309,75,0.5420760051419956],[125,309,76,0.5394621390659157],[125,309,77,0.5356182333081404],[125,309,78,0.5306319559726105],[125,309,79,0.5245709202775976],[125,310,64,0.46397290760929094],[125,310,65,0.477286268064088],[125,310,66,0.4901625624991329],[125,310,67,0.5022416921813717],[125,310,68,0.5131981564645702],[125,310,69,0.5227496010495161],[125,310,70,0.5306653657611957],[125,310,71,0.5367750318429166],[125,310,72,0.54097765292189],[125,310,73,0.5433044699287025],[125,310,74,0.5439105689307454],[125,310,75,0.5429304161071334],[125,310,76,0.540469799578058],[125,310,77,0.5366117212200998],[125,310,78,0.5314214972955991],[125,310,79,0.5249510678961005],[125,311,64,0.45741464815928845],[125,311,65,0.47152109709756734],[125,311,66,0.4850934288144696],[125,311,67,0.49777746625541963],[125,311,68,0.5092568124843728],[125,311,69,0.5192617176633495],[125,311,70,0.5275779543442148],[125,311,71,0.5340557010726712],[125,311,72,0.5386188057950413],[125,311,73,0.5412984213325613],[125,311,74,0.5422026334992789],[125,311,75,0.5414220675124248],[125,311,76,0.5390270121720832],[125,311,77,0.5350726545108873],[125,311,78,0.5296035646899915],[125,311,79,0.5226574311413377],[125,312,64,0.44920622244501995],[125,312,65,0.4640713470230191],[125,312,66,0.47829224542004195],[125,312,67,0.49152162364330504],[125,312,68,0.5034533419570816],[125,312,69,0.5138315968065423],[125,312,70,0.5224601185721155],[125,312,71,0.5292113851543423],[125,312,72,0.534035913628327],[125,312,73,0.5369670960683212],[125,312,74,0.5380688263963196],[125,312,75,0.5373904991409625],[125,312,76,0.5349692528520408],[125,312,77,0.5308345526666769],[125,312,78,0.5250120624906107],[125,312,79,0.5175268067946227],[125,313,64,0.4393004424890683],[125,313,65,0.4548761211914666],[125,313,66,0.4696859860727115],[125,313,67,0.4833905225485846],[125,313,68,0.4956948957539021],[125,313,69,0.5063584403210508],[125,313,70,0.5152041722524056],[125,313,71,0.5221283228866052],[125,313,72,0.5271096546191506],[125,313,73,0.5301860819231886],[125,313,74,0.5313805638162603],[125,313,75,0.5307042980405369],[125,313,76,0.5281639652974099],[125,313,77,0.5237656703788764],[125,313,78,0.5175182100270863],[125,313,79,0.5094356675220671],[125,314,64,0.42764374078085865],[125,314,65,0.44387064396572196],[125,314,66,0.45920051965399833],[125,314,67,0.47330243636066494],[125,314,68,0.48589377483740986],[125,314,69,0.49675001554250287],[125,314,70,0.5057145532582332],[125,314,71,0.5127085388558861],[125,314,72,0.5177402151694744],[125,314,73,0.520854208794253],[125,314,74,0.5220361926398562],[125,314,75,0.5212625713054869],[125,314,76,0.5185125536300583],[125,314,77,0.5137714687577871],[125,314,78,0.5070334436307676],[125,314,79,0.49830344190853887],[125,315,64,0.41417035976634264],[125,315,65,0.43098110142992063],[125,315,66,0.44675610671935434],[125,315,67,0.46117370808599584],[125,315,68,0.47396424232365725],[125,315,69,0.4849201228199657],[125,315,70,0.49390594286921],[125,315,71,0.5008686100466503],[125,315,72,0.5058466988977391],[125,315,73,0.5088935917489238],[125,315,74,0.5099616495232144],[125,315,75,0.5089961937863164],[125,315,76,0.5059521829769201],[125,315,77,0.5007969256437993],[125,315,78,0.493512187273978],[125,315,79,0.48409569071196806],[125,316,64,0.3987958925766717],[125,316,65,0.41611887611668197],[125,316,66,0.4322623320506203],[125,316,67,0.4469143818886138],[125,316,68,0.45981885282926416],[125,316,69,0.47078561955520504],[125,316,70,0.47970097996047817],[125,316,71,0.48653806480969614],[125,316,72,0.49136620484141147],[125,316,73,0.4942493794693189],[125,316,74,0.49511086069836163],[125,316,75,0.49386883072595855],[125,316,76,0.4904573878273576],[125,316,77,0.48482868501517434],[125,316,78,0.47695449184073235],[125,316,79,0.4668271793372226],[125,317,64,0.38141017499698937],[125,317,65,0.3991741757530071],[125,317,66,0.4156124732127398],[125,317,67,0.43042331174107196],[125,317,68,0.443364299104476],[125,317,69,0.4542630007623645],[125,317,70,0.4630275700409075],[125,317,71,0.4696574141892843],[125,317,72,0.4742525748509206],[125,317,73,0.4768892080813114],[125,317,74,0.47746588248604904],[125,317,75,0.4758777353232642],[125,317,76,0.47204148818572256],[125,317,77,0.4658970454928626],[125,317,78,0.45740854302931006],[125,317,79,0.4465648465298655],[125,318,64,0.3618695286757958],[125,318,65,0.38000905602535356],[125,318,66,0.39667730511516597],[125,318,67,0.4115827471861842],[125,318,68,0.42449677595262325],[125,318,69,0.43526453614850474],[125,318,70,0.44381578914085584],[125,318,71,0.45017581560953435],[125,318,72,0.4544748101754332],[125,318,73,0.4568023603686806],[125,318,74,0.4570367825212368],[125,318,75,0.45505432122418166],[125,318,76,0.4507578135195853],[125,318,77,0.44407778794284214],[125,318,78,0.4349730378871741],[125,318,79,0.42343066929030687],[125,319,64,0.33998835557305346],[125,319,65,0.35844983736208746],[125,319,66,0.37529834057619865],[125,319,67,0.3902523962078612],[125,319,68,0.4030968614342916],[125,319,69,0.4136939637133483],[125,319,70,0.421994382547887],[125,319,71,0.4280483689185326],[125,319,72,0.43201515723894246],[125,319,73,0.43399863037089925],[125,319,74,0.43386126168983885],[125,319,75,0.4314645099392343],[125,319,76,0.4267007345022958],[125,319,77,0.4194938421746734],[125,319,78,0.4097994299769806],[125,319,79,0.3976044240071316],[126,-64,64,64.0],[126,-64,65,64.0],[126,-64,66,64.0],[126,-64,67,64.0],[126,-64,68,64.0],[126,-64,69,64.0],[126,-64,70,64.0],[126,-64,71,64.0],[126,-64,72,64.0],[126,-64,73,64.0],[126,-64,74,64.0],[126,-64,75,64.0],[126,-64,76,64.0],[126,-64,77,64.0],[126,-64,78,64.0],[126,-64,79,64.0],[126,-63,64,64.0],[126,-63,65,64.0],[126,-63,66,64.0],[126,-63,67,64.0],[126,-63,68,64.0],[126,-63,69,64.0],[126,-63,70,64.0],[126,-63,71,64.0],[126,-63,72,64.0],[126,-63,73,64.0],[126,-63,74,64.0],[126,-63,75,64.0],[126,-63,76,64.0],[126,-63,77,64.0],[126,-63,78,64.0],[126,-63,79,64.0],[126,-62,64,64.0],[126,-62,65,64.0],[126,-62,66,64.0],[126,-62,67,64.0],[126,-62,68,64.0],[126,-62,69,64.0],[126,-62,70,64.0],[126,-62,71,64.0],[126,-62,72,64.0],[126,-62,73,64.0],[126,-62,74,64.0],[126,-62,75,64.0],[126,-62,76,64.0],[126,-62,77,64.0],[126,-62,78,64.0],[126,-62,79,64.0],[126,-61,64,64.0],[126,-61,65,64.0],[126,-61,66,64.0],[126,-61,67,64.0],[126,-61,68,64.0],[126,-61,69,64.0],[126,-61,70,64.0],[126,-61,71,64.0],[126,-61,72,64.0],[126,-61,73,64.0],[126,-61,74,64.0],[126,-61,75,64.0],[126,-61,76,64.0],[126,-61,77,64.0],[126,-61,78,64.0],[126,-61,79,64.0],[126,-60,64,64.0],[126,-60,65,64.0],[126,-60,66,64.0],[126,-60,67,64.0],[126,-60,68,64.0],[126,-60,69,64.0],[126,-60,70,64.0],[126,-60,71,64.0],[126,-60,72,64.0],[126,-60,73,64.0],[126,-60,74,64.0],[126,-60,75,64.0],[126,-60,76,64.0],[126,-60,77,64.0],[126,-60,78,64.0],[126,-60,79,64.0],[126,-59,64,64.0],[126,-59,65,64.0],[126,-59,66,64.0],[126,-59,67,64.0],[126,-59,68,64.0],[126,-59,69,64.0],[126,-59,70,64.0],[126,-59,71,64.0],[126,-59,72,64.0],[126,-59,73,64.0],[126,-59,74,64.0],[126,-59,75,64.0],[126,-59,76,64.0],[126,-59,77,64.0],[126,-59,78,64.0],[126,-59,79,64.0],[126,-58,64,64.0],[126,-58,65,64.0],[126,-58,66,64.0],[126,-58,67,64.0],[126,-58,68,64.0],[126,-58,69,64.0],[126,-58,70,64.0],[126,-58,71,64.0],[126,-58,72,64.0],[126,-58,73,64.0],[126,-58,74,64.0],[126,-58,75,64.0],[126,-58,76,64.0],[126,-58,77,64.0],[126,-58,78,64.0],[126,-58,79,64.0],[126,-57,64,64.0],[126,-57,65,64.0],[126,-57,66,64.0],[126,-57,67,64.0],[126,-57,68,64.0],[126,-57,69,64.0],[126,-57,70,64.0],[126,-57,71,64.0],[126,-57,72,64.0],[126,-57,73,64.0],[126,-57,74,64.0],[126,-57,75,64.0],[126,-57,76,64.0],[126,-57,77,64.0],[126,-57,78,64.0],[126,-57,79,64.0],[126,-56,64,64.0],[126,-56,65,64.0],[126,-56,66,64.0],[126,-56,67,64.0],[126,-56,68,64.0],[126,-56,69,64.0],[126,-56,70,64.0],[126,-56,71,64.0],[126,-56,72,64.0],[126,-56,73,64.0],[126,-56,74,64.0],[126,-56,75,64.0],[126,-56,76,64.0],[126,-56,77,64.0],[126,-56,78,64.0],[126,-56,79,64.0],[126,-55,64,64.0],[126,-55,65,64.0],[126,-55,66,64.0],[126,-55,67,64.0],[126,-55,68,64.0],[126,-55,69,64.0],[126,-55,70,64.0],[126,-55,71,64.0],[126,-55,72,64.0],[126,-55,73,64.0],[126,-55,74,64.0],[126,-55,75,64.0],[126,-55,76,64.0],[126,-55,77,64.0],[126,-55,78,64.0],[126,-55,79,64.0],[126,-54,64,64.0],[126,-54,65,64.0],[126,-54,66,64.0],[126,-54,67,64.0],[126,-54,68,64.0],[126,-54,69,64.0],[126,-54,70,64.0],[126,-54,71,64.0],[126,-54,72,64.0],[126,-54,73,64.0],[126,-54,74,64.0],[126,-54,75,64.0],[126,-54,76,64.0],[126,-54,77,64.0],[126,-54,78,64.0],[126,-54,79,64.0],[126,-53,64,64.0],[126,-53,65,64.0],[126,-53,66,64.0],[126,-53,67,64.0],[126,-53,68,64.0],[126,-53,69,64.0],[126,-53,70,64.0],[126,-53,71,64.0],[126,-53,72,64.0],[126,-53,73,64.0],[126,-53,74,64.0],[126,-53,75,64.0],[126,-53,76,64.0],[126,-53,77,64.0],[126,-53,78,64.0],[126,-53,79,64.0],[126,-52,64,64.0],[126,-52,65,64.0],[126,-52,66,64.0],[126,-52,67,64.0],[126,-52,68,64.0],[126,-52,69,64.0],[126,-52,70,64.0],[126,-52,71,64.0],[126,-52,72,64.0],[126,-52,73,64.0],[126,-52,74,64.0],[126,-52,75,64.0],[126,-52,76,64.0],[126,-52,77,64.0],[126,-52,78,64.0],[126,-52,79,64.0],[126,-51,64,64.0],[126,-51,65,64.0],[126,-51,66,64.0],[126,-51,67,64.0],[126,-51,68,64.0],[126,-51,69,64.0],[126,-51,70,64.0],[126,-51,71,64.0],[126,-51,72,64.0],[126,-51,73,64.0],[126,-51,74,64.0],[126,-51,75,64.0],[126,-51,76,64.0],[126,-51,77,64.0],[126,-51,78,64.0],[126,-51,79,64.0],[126,-50,64,64.0],[126,-50,65,64.0],[126,-50,66,64.0],[126,-50,67,64.0],[126,-50,68,64.0],[126,-50,69,64.0],[126,-50,70,64.0],[126,-50,71,64.0],[126,-50,72,64.0],[126,-50,73,64.0],[126,-50,74,64.0],[126,-50,75,64.0],[126,-50,76,64.0],[126,-50,77,64.0],[126,-50,78,64.0],[126,-50,79,64.0],[126,-49,64,64.0],[126,-49,65,64.0],[126,-49,66,64.0],[126,-49,67,64.0],[126,-49,68,64.0],[126,-49,69,64.0],[126,-49,70,64.0],[126,-49,71,64.0],[126,-49,72,64.0],[126,-49,73,64.0],[126,-49,74,64.0],[126,-49,75,64.0],[126,-49,76,64.0],[126,-49,77,64.0],[126,-49,78,64.0],[126,-49,79,64.0],[126,-48,64,64.0],[126,-48,65,64.0],[126,-48,66,64.0],[126,-48,67,64.0],[126,-48,68,64.0],[126,-48,69,64.0],[126,-48,70,64.0],[126,-48,71,64.0],[126,-48,72,64.0],[126,-48,73,64.0],[126,-48,74,64.0],[126,-48,75,64.0],[126,-48,76,64.0],[126,-48,77,64.0],[126,-48,78,64.0],[126,-48,79,64.0],[126,-47,64,64.0],[126,-47,65,64.0],[126,-47,66,64.0],[126,-47,67,64.0],[126,-47,68,64.0],[126,-47,69,64.0],[126,-47,70,64.0],[126,-47,71,64.0],[126,-47,72,64.0],[126,-47,73,64.0],[126,-47,74,64.0],[126,-47,75,64.0],[126,-47,76,64.0],[126,-47,77,64.0],[126,-47,78,64.0],[126,-47,79,64.0],[126,-46,64,64.0],[126,-46,65,64.0],[126,-46,66,64.0],[126,-46,67,64.0],[126,-46,68,64.0],[126,-46,69,64.0],[126,-46,70,64.0],[126,-46,71,64.0],[126,-46,72,64.0],[126,-46,73,64.0],[126,-46,74,64.0],[126,-46,75,64.0],[126,-46,76,64.0],[126,-46,77,64.0],[126,-46,78,64.0],[126,-46,79,64.0],[126,-45,64,64.0],[126,-45,65,64.0],[126,-45,66,64.0],[126,-45,67,64.0],[126,-45,68,64.0],[126,-45,69,64.0],[126,-45,70,64.0],[126,-45,71,64.0],[126,-45,72,64.0],[126,-45,73,64.0],[126,-45,74,64.0],[126,-45,75,64.0],[126,-45,76,64.0],[126,-45,77,64.0],[126,-45,78,64.0],[126,-45,79,64.0],[126,-44,64,64.0],[126,-44,65,64.0],[126,-44,66,64.0],[126,-44,67,64.0],[126,-44,68,64.0],[126,-44,69,64.0],[126,-44,70,64.0],[126,-44,71,64.0],[126,-44,72,64.0],[126,-44,73,64.0],[126,-44,74,64.0],[126,-44,75,64.0],[126,-44,76,64.0],[126,-44,77,64.0],[126,-44,78,64.0],[126,-44,79,64.0],[126,-43,64,64.0],[126,-43,65,64.0],[126,-43,66,64.0],[126,-43,67,64.0],[126,-43,68,64.0],[126,-43,69,64.0],[126,-43,70,64.0],[126,-43,71,64.0],[126,-43,72,64.0],[126,-43,73,64.0],[126,-43,74,64.0],[126,-43,75,64.0],[126,-43,76,64.0],[126,-43,77,64.0],[126,-43,78,64.0],[126,-43,79,64.0],[126,-42,64,64.0],[126,-42,65,64.0],[126,-42,66,64.0],[126,-42,67,64.0],[126,-42,68,64.0],[126,-42,69,64.0],[126,-42,70,64.0],[126,-42,71,64.0],[126,-42,72,64.0],[126,-42,73,64.0],[126,-42,74,64.0],[126,-42,75,64.0],[126,-42,76,64.0],[126,-42,77,64.0],[126,-42,78,64.0],[126,-42,79,64.0],[126,-41,64,64.0],[126,-41,65,64.0],[126,-41,66,64.0],[126,-41,67,64.0],[126,-41,68,64.0],[126,-41,69,64.0],[126,-41,70,64.0],[126,-41,71,64.0],[126,-41,72,64.0],[126,-41,73,64.0],[126,-41,74,64.0],[126,-41,75,64.0],[126,-41,76,64.0],[126,-41,77,64.0],[126,-41,78,64.0],[126,-41,79,64.0],[126,-40,64,64.0],[126,-40,65,64.0],[126,-40,66,64.0],[126,-40,67,64.0],[126,-40,68,64.0],[126,-40,69,64.0],[126,-40,70,64.0],[126,-40,71,64.0],[126,-40,72,64.0],[126,-40,73,64.0],[126,-40,74,64.0],[126,-40,75,64.0],[126,-40,76,64.0],[126,-40,77,64.0],[126,-40,78,64.0],[126,-40,79,64.0],[126,-39,64,64.0],[126,-39,65,64.0],[126,-39,66,64.0],[126,-39,67,64.0],[126,-39,68,64.0],[126,-39,69,64.0],[126,-39,70,64.0],[126,-39,71,64.0],[126,-39,72,64.0],[126,-39,73,64.0],[126,-39,74,64.0],[126,-39,75,64.0],[126,-39,76,64.0],[126,-39,77,64.0],[126,-39,78,64.0],[126,-39,79,64.0],[126,-38,64,64.0],[126,-38,65,64.0],[126,-38,66,64.0],[126,-38,67,64.0],[126,-38,68,64.0],[126,-38,69,64.0],[126,-38,70,64.0],[126,-38,71,64.0],[126,-38,72,64.0],[126,-38,73,64.0],[126,-38,74,64.0],[126,-38,75,64.0],[126,-38,76,64.0],[126,-38,77,64.0],[126,-38,78,64.0],[126,-38,79,64.0],[126,-37,64,64.0],[126,-37,65,64.0],[126,-37,66,64.0],[126,-37,67,64.0],[126,-37,68,64.0],[126,-37,69,64.0],[126,-37,70,64.0],[126,-37,71,64.0],[126,-37,72,64.0],[126,-37,73,64.0],[126,-37,74,64.0],[126,-37,75,64.0],[126,-37,76,64.0],[126,-37,77,64.0],[126,-37,78,64.0],[126,-37,79,64.0],[126,-36,64,64.0],[126,-36,65,64.0],[126,-36,66,64.0],[126,-36,67,64.0],[126,-36,68,64.0],[126,-36,69,64.0],[126,-36,70,64.0],[126,-36,71,64.0],[126,-36,72,64.0],[126,-36,73,64.0],[126,-36,74,64.0],[126,-36,75,64.0],[126,-36,76,64.0],[126,-36,77,64.0],[126,-36,78,64.0],[126,-36,79,64.0],[126,-35,64,64.0],[126,-35,65,64.0],[126,-35,66,64.0],[126,-35,67,64.0],[126,-35,68,64.0],[126,-35,69,64.0],[126,-35,70,64.0],[126,-35,71,64.0],[126,-35,72,64.0],[126,-35,73,64.0],[126,-35,74,64.0],[126,-35,75,64.0],[126,-35,76,64.0],[126,-35,77,64.0],[126,-35,78,64.0],[126,-35,79,64.0],[126,-34,64,64.0],[126,-34,65,64.0],[126,-34,66,64.0],[126,-34,67,64.0],[126,-34,68,64.0],[126,-34,69,64.0],[126,-34,70,64.0],[126,-34,71,64.0],[126,-34,72,64.0],[126,-34,73,64.0],[126,-34,74,64.0],[126,-34,75,64.0],[126,-34,76,64.0],[126,-34,77,64.0],[126,-34,78,64.0],[126,-34,79,64.0],[126,-33,64,64.0],[126,-33,65,64.0],[126,-33,66,64.0],[126,-33,67,64.0],[126,-33,68,64.0],[126,-33,69,64.0],[126,-33,70,64.0],[126,-33,71,64.0],[126,-33,72,64.0],[126,-33,73,64.0],[126,-33,74,64.0],[126,-33,75,64.0],[126,-33,76,64.0],[126,-33,77,64.0],[126,-33,78,64.0],[126,-33,79,64.0],[126,-32,64,64.0],[126,-32,65,64.0],[126,-32,66,64.0],[126,-32,67,64.0],[126,-32,68,64.0],[126,-32,69,64.0],[126,-32,70,64.0],[126,-32,71,64.0],[126,-32,72,64.0],[126,-32,73,64.0],[126,-32,74,64.0],[126,-32,75,64.0],[126,-32,76,64.0],[126,-32,77,64.0],[126,-32,78,64.0],[126,-32,79,64.0],[126,-31,64,64.0],[126,-31,65,64.0],[126,-31,66,64.0],[126,-31,67,64.0],[126,-31,68,64.0],[126,-31,69,64.0],[126,-31,70,64.0],[126,-31,71,64.0],[126,-31,72,64.0],[126,-31,73,64.0],[126,-31,74,64.0],[126,-31,75,64.0],[126,-31,76,64.0],[126,-31,77,64.0],[126,-31,78,64.0],[126,-31,79,64.0],[126,-30,64,64.0],[126,-30,65,64.0],[126,-30,66,64.0],[126,-30,67,64.0],[126,-30,68,64.0],[126,-30,69,64.0],[126,-30,70,64.0],[126,-30,71,64.0],[126,-30,72,64.0],[126,-30,73,64.0],[126,-30,74,64.0],[126,-30,75,64.0],[126,-30,76,64.0],[126,-30,77,64.0],[126,-30,78,64.0],[126,-30,79,64.0],[126,-29,64,64.0],[126,-29,65,64.0],[126,-29,66,64.0],[126,-29,67,64.0],[126,-29,68,64.0],[126,-29,69,64.0],[126,-29,70,64.0],[126,-29,71,64.0],[126,-29,72,64.0],[126,-29,73,64.0],[126,-29,74,64.0],[126,-29,75,64.0],[126,-29,76,64.0],[126,-29,77,64.0],[126,-29,78,64.0],[126,-29,79,64.0],[126,-28,64,64.0],[126,-28,65,64.0],[126,-28,66,64.0],[126,-28,67,64.0],[126,-28,68,64.0],[126,-28,69,64.0],[126,-28,70,64.0],[126,-28,71,64.0],[126,-28,72,64.0],[126,-28,73,64.0],[126,-28,74,64.0],[126,-28,75,64.0],[126,-28,76,64.0],[126,-28,77,64.0],[126,-28,78,64.0],[126,-28,79,64.0],[126,-27,64,64.0],[126,-27,65,64.0],[126,-27,66,64.0],[126,-27,67,64.0],[126,-27,68,64.0],[126,-27,69,64.0],[126,-27,70,64.0],[126,-27,71,64.0],[126,-27,72,64.0],[126,-27,73,64.0],[126,-27,74,64.0],[126,-27,75,64.0],[126,-27,76,64.0],[126,-27,77,64.0],[126,-27,78,64.0],[126,-27,79,64.0],[126,-26,64,64.0],[126,-26,65,64.0],[126,-26,66,64.0],[126,-26,67,64.0],[126,-26,68,64.0],[126,-26,69,64.0],[126,-26,70,64.0],[126,-26,71,64.0],[126,-26,72,64.0],[126,-26,73,64.0],[126,-26,74,64.0],[126,-26,75,64.0],[126,-26,76,64.0],[126,-26,77,64.0],[126,-26,78,64.0],[126,-26,79,64.0],[126,-25,64,64.0],[126,-25,65,64.0],[126,-25,66,64.0],[126,-25,67,64.0],[126,-25,68,64.0],[126,-25,69,64.0],[126,-25,70,64.0],[126,-25,71,64.0],[126,-25,72,64.0],[126,-25,73,64.0],[126,-25,74,64.0],[126,-25,75,64.0],[126,-25,76,64.0],[126,-25,77,64.0],[126,-25,78,64.0],[126,-25,79,64.0],[126,-24,64,64.0],[126,-24,65,64.0],[126,-24,66,64.0],[126,-24,67,64.0],[126,-24,68,64.0],[126,-24,69,64.0],[126,-24,70,64.0],[126,-24,71,64.0],[126,-24,72,64.0],[126,-24,73,64.0],[126,-24,74,64.0],[126,-24,75,64.0],[126,-24,76,64.0],[126,-24,77,64.0],[126,-24,78,64.0],[126,-24,79,64.0],[126,-23,64,64.0],[126,-23,65,64.0],[126,-23,66,64.0],[126,-23,67,64.0],[126,-23,68,64.0],[126,-23,69,64.0],[126,-23,70,64.0],[126,-23,71,64.0],[126,-23,72,64.0],[126,-23,73,64.0],[126,-23,74,64.0],[126,-23,75,64.0],[126,-23,76,64.0],[126,-23,77,64.0],[126,-23,78,64.0],[126,-23,79,64.0],[126,-22,64,64.0],[126,-22,65,64.0],[126,-22,66,64.0],[126,-22,67,64.0],[126,-22,68,64.0],[126,-22,69,64.0],[126,-22,70,64.0],[126,-22,71,64.0],[126,-22,72,64.0],[126,-22,73,64.0],[126,-22,74,64.0],[126,-22,75,64.0],[126,-22,76,64.0],[126,-22,77,64.0],[126,-22,78,64.0],[126,-22,79,64.0],[126,-21,64,64.0],[126,-21,65,64.0],[126,-21,66,64.0],[126,-21,67,64.0],[126,-21,68,64.0],[126,-21,69,64.0],[126,-21,70,64.0],[126,-21,71,64.0],[126,-21,72,64.0],[126,-21,73,64.0],[126,-21,74,64.0],[126,-21,75,64.0],[126,-21,76,64.0],[126,-21,77,64.0],[126,-21,78,64.0],[126,-21,79,64.0],[126,-20,64,64.0],[126,-20,65,64.0],[126,-20,66,64.0],[126,-20,67,64.0],[126,-20,68,64.0],[126,-20,69,64.0],[126,-20,70,64.0],[126,-20,71,64.0],[126,-20,72,64.0],[126,-20,73,64.0],[126,-20,74,64.0],[126,-20,75,64.0],[126,-20,76,64.0],[126,-20,77,64.0],[126,-20,78,64.0],[126,-20,79,64.0],[126,-19,64,64.0],[126,-19,65,64.0],[126,-19,66,64.0],[126,-19,67,64.0],[126,-19,68,64.0],[126,-19,69,64.0],[126,-19,70,64.0],[126,-19,71,64.0],[126,-19,72,64.0],[126,-19,73,64.0],[126,-19,74,64.0],[126,-19,75,64.0],[126,-19,76,64.0],[126,-19,77,64.0],[126,-19,78,64.0],[126,-19,79,64.0],[126,-18,64,64.0],[126,-18,65,64.0],[126,-18,66,64.0],[126,-18,67,64.0],[126,-18,68,64.0],[126,-18,69,64.0],[126,-18,70,64.0],[126,-18,71,64.0],[126,-18,72,64.0],[126,-18,73,64.0],[126,-18,74,64.0],[126,-18,75,64.0],[126,-18,76,64.0],[126,-18,77,64.0],[126,-18,78,64.0],[126,-18,79,64.0],[126,-17,64,64.0],[126,-17,65,64.0],[126,-17,66,64.0],[126,-17,67,64.0],[126,-17,68,64.0],[126,-17,69,64.0],[126,-17,70,64.0],[126,-17,71,64.0],[126,-17,72,64.0],[126,-17,73,64.0],[126,-17,74,64.0],[126,-17,75,64.0],[126,-17,76,64.0],[126,-17,77,64.0],[126,-17,78,64.0],[126,-17,79,64.0],[126,-16,64,64.0],[126,-16,65,64.0],[126,-16,66,64.0],[126,-16,67,64.0],[126,-16,68,64.0],[126,-16,69,64.0],[126,-16,70,64.0],[126,-16,71,64.0],[126,-16,72,64.0],[126,-16,73,64.0],[126,-16,74,64.0],[126,-16,75,64.0],[126,-16,76,64.0],[126,-16,77,64.0],[126,-16,78,64.0],[126,-16,79,64.0],[126,-15,64,64.0],[126,-15,65,64.0],[126,-15,66,64.0],[126,-15,67,64.0],[126,-15,68,64.0],[126,-15,69,64.0],[126,-15,70,64.0],[126,-15,71,64.0],[126,-15,72,64.0],[126,-15,73,64.0],[126,-15,74,64.0],[126,-15,75,64.0],[126,-15,76,64.0],[126,-15,77,64.0],[126,-15,78,64.0],[126,-15,79,64.0],[126,-14,64,64.0],[126,-14,65,64.0],[126,-14,66,64.0],[126,-14,67,64.0],[126,-14,68,64.0],[126,-14,69,64.0],[126,-14,70,64.0],[126,-14,71,64.0],[126,-14,72,64.0],[126,-14,73,64.0],[126,-14,74,64.0],[126,-14,75,64.0],[126,-14,76,64.0],[126,-14,77,64.0],[126,-14,78,64.0],[126,-14,79,64.0],[126,-13,64,64.0],[126,-13,65,64.0],[126,-13,66,64.0],[126,-13,67,64.0],[126,-13,68,64.0],[126,-13,69,64.0],[126,-13,70,64.0],[126,-13,71,64.0],[126,-13,72,64.0],[126,-13,73,64.0],[126,-13,74,64.0],[126,-13,75,64.0],[126,-13,76,64.0],[126,-13,77,64.0],[126,-13,78,64.0],[126,-13,79,64.0],[126,-12,64,64.0],[126,-12,65,64.0],[126,-12,66,64.0],[126,-12,67,64.0],[126,-12,68,64.0],[126,-12,69,64.0],[126,-12,70,64.0],[126,-12,71,64.0],[126,-12,72,64.0],[126,-12,73,64.0],[126,-12,74,64.0],[126,-12,75,64.0],[126,-12,76,64.0],[126,-12,77,64.0],[126,-12,78,64.0],[126,-12,79,64.0],[126,-11,64,64.0],[126,-11,65,64.0],[126,-11,66,64.0],[126,-11,67,64.0],[126,-11,68,64.0],[126,-11,69,64.0],[126,-11,70,64.0],[126,-11,71,64.0],[126,-11,72,64.0],[126,-11,73,64.0],[126,-11,74,64.0],[126,-11,75,64.0],[126,-11,76,64.0],[126,-11,77,64.0],[126,-11,78,64.0],[126,-11,79,64.0],[126,-10,64,64.0],[126,-10,65,64.0],[126,-10,66,64.0],[126,-10,67,64.0],[126,-10,68,64.0],[126,-10,69,64.0],[126,-10,70,64.0],[126,-10,71,64.0],[126,-10,72,64.0],[126,-10,73,64.0],[126,-10,74,64.0],[126,-10,75,64.0],[126,-10,76,64.0],[126,-10,77,64.0],[126,-10,78,64.0],[126,-10,79,64.0],[126,-9,64,64.0],[126,-9,65,64.0],[126,-9,66,64.0],[126,-9,67,64.0],[126,-9,68,64.0],[126,-9,69,64.0],[126,-9,70,64.0],[126,-9,71,64.0],[126,-9,72,64.0],[126,-9,73,64.0],[126,-9,74,64.0],[126,-9,75,64.0],[126,-9,76,64.0],[126,-9,77,64.0],[126,-9,78,64.0],[126,-9,79,64.0],[126,-8,64,64.0],[126,-8,65,64.0],[126,-8,66,64.0],[126,-8,67,64.0],[126,-8,68,64.0],[126,-8,69,64.0],[126,-8,70,64.0],[126,-8,71,64.0],[126,-8,72,64.0],[126,-8,73,64.0],[126,-8,74,64.0],[126,-8,75,64.0],[126,-8,76,64.0],[126,-8,77,64.0],[126,-8,78,64.0],[126,-8,79,64.0],[126,-7,64,64.0],[126,-7,65,64.0],[126,-7,66,64.0],[126,-7,67,64.0],[126,-7,68,64.0],[126,-7,69,64.0],[126,-7,70,64.0],[126,-7,71,64.0],[126,-7,72,64.0],[126,-7,73,64.0],[126,-7,74,64.0],[126,-7,75,64.0],[126,-7,76,64.0],[126,-7,77,64.0],[126,-7,78,64.0],[126,-7,79,64.0],[126,-6,64,64.0],[126,-6,65,64.0],[126,-6,66,64.0],[126,-6,67,64.0],[126,-6,68,64.0],[126,-6,69,64.0],[126,-6,70,64.0],[126,-6,71,64.0],[126,-6,72,64.0],[126,-6,73,64.0],[126,-6,74,64.0],[126,-6,75,64.0],[126,-6,76,64.0],[126,-6,77,64.0],[126,-6,78,64.0],[126,-6,79,64.0],[126,-5,64,64.0],[126,-5,65,64.0],[126,-5,66,64.0],[126,-5,67,64.0],[126,-5,68,64.0],[126,-5,69,64.0],[126,-5,70,64.0],[126,-5,71,64.0],[126,-5,72,64.0],[126,-5,73,64.0],[126,-5,74,64.0],[126,-5,75,64.0],[126,-5,76,64.0],[126,-5,77,64.0],[126,-5,78,64.0],[126,-5,79,64.0],[126,-4,64,64.0],[126,-4,65,64.0],[126,-4,66,64.0],[126,-4,67,64.0],[126,-4,68,64.0],[126,-4,69,64.0],[126,-4,70,64.0],[126,-4,71,64.0],[126,-4,72,64.0],[126,-4,73,64.0],[126,-4,74,64.0],[126,-4,75,64.0],[126,-4,76,64.0],[126,-4,77,64.0],[126,-4,78,64.0],[126,-4,79,64.0],[126,-3,64,64.0],[126,-3,65,64.0],[126,-3,66,64.0],[126,-3,67,64.0],[126,-3,68,64.0],[126,-3,69,64.0],[126,-3,70,64.0],[126,-3,71,64.0],[126,-3,72,64.0],[126,-3,73,64.0],[126,-3,74,64.0],[126,-3,75,64.0],[126,-3,76,64.0],[126,-3,77,64.0],[126,-3,78,64.0],[126,-3,79,64.0],[126,-2,64,64.0],[126,-2,65,64.0],[126,-2,66,64.0],[126,-2,67,64.0],[126,-2,68,64.0],[126,-2,69,64.0],[126,-2,70,64.0],[126,-2,71,64.0],[126,-2,72,64.0],[126,-2,73,64.0],[126,-2,74,64.0],[126,-2,75,64.0],[126,-2,76,64.0],[126,-2,77,64.0],[126,-2,78,64.0],[126,-2,79,64.0],[126,-1,64,64.0],[126,-1,65,64.0],[126,-1,66,64.0],[126,-1,67,64.0],[126,-1,68,64.0],[126,-1,69,64.0],[126,-1,70,64.0],[126,-1,71,64.0],[126,-1,72,64.0],[126,-1,73,64.0],[126,-1,74,64.0],[126,-1,75,64.0],[126,-1,76,64.0],[126,-1,77,64.0],[126,-1,78,64.0],[126,-1,79,64.0],[126,0,64,64.0],[126,0,65,64.0],[126,0,66,64.0],[126,0,67,64.0],[126,0,68,64.0],[126,0,69,64.0],[126,0,70,64.0],[126,0,71,64.0],[126,0,72,64.0],[126,0,73,64.0],[126,0,74,64.0],[126,0,75,64.0],[126,0,76,64.0],[126,0,77,64.0],[126,0,78,64.0],[126,0,79,64.0],[126,1,64,64.0],[126,1,65,64.0],[126,1,66,64.0],[126,1,67,64.0],[126,1,68,64.0],[126,1,69,64.0],[126,1,70,64.0],[126,1,71,64.0],[126,1,72,64.0],[126,1,73,64.0],[126,1,74,64.0],[126,1,75,64.0],[126,1,76,64.0],[126,1,77,64.0],[126,1,78,64.0],[126,1,79,64.0],[126,2,64,64.0],[126,2,65,64.0],[126,2,66,64.0],[126,2,67,64.0],[126,2,68,64.0],[126,2,69,64.0],[126,2,70,64.0],[126,2,71,64.0],[126,2,72,64.0],[126,2,73,64.0],[126,2,74,64.0],[126,2,75,64.0],[126,2,76,64.0],[126,2,77,64.0],[126,2,78,64.0],[126,2,79,64.0],[126,3,64,64.0],[126,3,65,64.0],[126,3,66,64.0],[126,3,67,64.0],[126,3,68,64.0],[126,3,69,64.0],[126,3,70,64.0],[126,3,71,64.0],[126,3,72,64.0],[126,3,73,64.0],[126,3,74,64.0],[126,3,75,64.0],[126,3,76,64.0],[126,3,77,64.0],[126,3,78,64.0],[126,3,79,64.0],[126,4,64,64.0],[126,4,65,64.0],[126,4,66,64.0],[126,4,67,64.0],[126,4,68,64.0],[126,4,69,64.0],[126,4,70,64.0],[126,4,71,64.0],[126,4,72,64.0],[126,4,73,64.0],[126,4,74,64.0],[126,4,75,64.0],[126,4,76,64.0],[126,4,77,64.0],[126,4,78,64.0],[126,4,79,64.0],[126,5,64,64.0],[126,5,65,64.0],[126,5,66,64.0],[126,5,67,64.0],[126,5,68,64.0],[126,5,69,64.0],[126,5,70,64.0],[126,5,71,64.0],[126,5,72,64.0],[126,5,73,64.0],[126,5,74,64.0],[126,5,75,64.0],[126,5,76,64.0],[126,5,77,64.0],[126,5,78,64.0],[126,5,79,64.0],[126,6,64,64.0],[126,6,65,64.0],[126,6,66,64.0],[126,6,67,64.0],[126,6,68,64.0],[126,6,69,64.0],[126,6,70,64.0],[126,6,71,64.0],[126,6,72,64.0],[126,6,73,64.0],[126,6,74,64.0],[126,6,75,64.0],[126,6,76,64.0],[126,6,77,64.0],[126,6,78,64.0],[126,6,79,64.0],[126,7,64,64.0],[126,7,65,64.0],[126,7,66,64.0],[126,7,67,64.0],[126,7,68,64.0],[126,7,69,64.0],[126,7,70,64.0],[126,7,71,64.0],[126,7,72,64.0],[126,7,73,64.0],[126,7,74,64.0],[126,7,75,64.0],[126,7,76,64.0],[126,7,77,64.0],[126,7,78,64.0],[126,7,79,64.0],[126,8,64,64.0],[126,8,65,64.0],[126,8,66,64.0],[126,8,67,64.0],[126,8,68,64.0],[126,8,69,64.0],[126,8,70,64.0],[126,8,71,64.0],[126,8,72,64.0],[126,8,73,64.0],[126,8,74,64.0],[126,8,75,64.0],[126,8,76,64.0],[126,8,77,64.0],[126,8,78,64.0],[126,8,79,64.0],[126,9,64,64.0],[126,9,65,64.0],[126,9,66,64.0],[126,9,67,64.0],[126,9,68,64.0],[126,9,69,64.0],[126,9,70,64.0],[126,9,71,64.0],[126,9,72,64.0],[126,9,73,64.0],[126,9,74,64.0],[126,9,75,64.0],[126,9,76,64.0],[126,9,77,64.0],[126,9,78,64.0],[126,9,79,64.0],[126,10,64,64.0],[126,10,65,64.0],[126,10,66,64.0],[126,10,67,64.0],[126,10,68,64.0],[126,10,69,64.0],[126,10,70,64.0],[126,10,71,64.0],[126,10,72,64.0],[126,10,73,64.0],[126,10,74,64.0],[126,10,75,64.0],[126,10,76,64.0],[126,10,77,64.0],[126,10,78,64.0],[126,10,79,64.0],[126,11,64,64.0],[126,11,65,64.0],[126,11,66,64.0],[126,11,67,64.0],[126,11,68,64.0],[126,11,69,64.0],[126,11,70,64.0],[126,11,71,64.0],[126,11,72,64.0],[126,11,73,64.0],[126,11,74,64.0],[126,11,75,64.0],[126,11,76,64.0],[126,11,77,64.0],[126,11,78,64.0],[126,11,79,64.0],[126,12,64,64.0],[126,12,65,64.0],[126,12,66,64.0],[126,12,67,64.0],[126,12,68,64.0],[126,12,69,64.0],[126,12,70,64.0],[126,12,71,64.0],[126,12,72,64.0],[126,12,73,64.0],[126,12,74,64.0],[126,12,75,64.0],[126,12,76,64.0],[126,12,77,64.0],[126,12,78,64.0],[126,12,79,64.0],[126,13,64,64.0],[126,13,65,64.0],[126,13,66,64.0],[126,13,67,64.0],[126,13,68,64.0],[126,13,69,64.0],[126,13,70,64.0],[126,13,71,64.0],[126,13,72,64.0],[126,13,73,64.0],[126,13,74,64.0],[126,13,75,64.0],[126,13,76,64.0],[126,13,77,64.0],[126,13,78,64.0],[126,13,79,64.0],[126,14,64,64.0],[126,14,65,64.0],[126,14,66,64.0],[126,14,67,64.0],[126,14,68,64.0],[126,14,69,64.0],[126,14,70,64.0],[126,14,71,64.0],[126,14,72,64.0],[126,14,73,64.0],[126,14,74,64.0],[126,14,75,64.0],[126,14,76,64.0],[126,14,77,64.0],[126,14,78,64.0],[126,14,79,64.0],[126,15,64,64.0],[126,15,65,64.0],[126,15,66,64.0],[126,15,67,64.0],[126,15,68,64.0],[126,15,69,64.0],[126,15,70,64.0],[126,15,71,64.0],[126,15,72,64.0],[126,15,73,64.0],[126,15,74,64.0],[126,15,75,64.0],[126,15,76,64.0],[126,15,77,64.0],[126,15,78,64.0],[126,15,79,64.0],[126,16,64,64.0],[126,16,65,64.0],[126,16,66,64.0],[126,16,67,64.0],[126,16,68,64.0],[126,16,69,64.0],[126,16,70,64.0],[126,16,71,64.0],[126,16,72,64.0],[126,16,73,64.0],[126,16,74,64.0],[126,16,75,64.0],[126,16,76,64.0],[126,16,77,64.0],[126,16,78,64.0],[126,16,79,64.0],[126,17,64,64.0],[126,17,65,64.0],[126,17,66,64.0],[126,17,67,64.0],[126,17,68,64.0],[126,17,69,64.0],[126,17,70,64.0],[126,17,71,64.0],[126,17,72,64.0],[126,17,73,64.0],[126,17,74,64.0],[126,17,75,64.0],[126,17,76,64.0],[126,17,77,64.0],[126,17,78,64.0],[126,17,79,64.0],[126,18,64,64.0],[126,18,65,64.0],[126,18,66,64.0],[126,18,67,64.0],[126,18,68,64.0],[126,18,69,64.0],[126,18,70,64.0],[126,18,71,64.0],[126,18,72,64.0],[126,18,73,64.0],[126,18,74,64.0],[126,18,75,64.0],[126,18,76,64.0],[126,18,77,64.0],[126,18,78,64.0],[126,18,79,64.0],[126,19,64,64.0],[126,19,65,64.0],[126,19,66,64.0],[126,19,67,64.0],[126,19,68,64.0],[126,19,69,64.0],[126,19,70,64.0],[126,19,71,64.0],[126,19,72,64.0],[126,19,73,64.0],[126,19,74,64.0],[126,19,75,64.0],[126,19,76,64.0],[126,19,77,64.0],[126,19,78,64.0],[126,19,79,64.0],[126,20,64,64.0],[126,20,65,64.0],[126,20,66,64.0],[126,20,67,64.0],[126,20,68,64.0],[126,20,69,64.0],[126,20,70,64.0],[126,20,71,64.0],[126,20,72,64.0],[126,20,73,64.0],[126,20,74,64.0],[126,20,75,64.0],[126,20,76,64.0],[126,20,77,64.0],[126,20,78,64.0],[126,20,79,64.0],[126,21,64,64.0],[126,21,65,64.0],[126,21,66,64.0],[126,21,67,64.0],[126,21,68,64.0],[126,21,69,64.0],[126,21,70,64.0],[126,21,71,64.0],[126,21,72,64.0],[126,21,73,64.0],[126,21,74,64.0],[126,21,75,64.0],[126,21,76,64.0],[126,21,77,64.0],[126,21,78,64.0],[126,21,79,64.0],[126,22,64,64.0],[126,22,65,64.0],[126,22,66,64.0],[126,22,67,64.0],[126,22,68,64.0],[126,22,69,64.0],[126,22,70,64.0],[126,22,71,64.0],[126,22,72,64.0],[126,22,73,64.0],[126,22,74,64.0],[126,22,75,64.0],[126,22,76,64.0],[126,22,77,64.0],[126,22,78,64.0],[126,22,79,64.0],[126,23,64,64.0],[126,23,65,64.0],[126,23,66,64.0],[126,23,67,64.0],[126,23,68,64.0],[126,23,69,64.0],[126,23,70,64.0],[126,23,71,64.0],[126,23,72,64.0],[126,23,73,64.0],[126,23,74,64.0],[126,23,75,64.0],[126,23,76,64.0],[126,23,77,64.0],[126,23,78,64.0],[126,23,79,64.0],[126,24,64,64.0],[126,24,65,64.0],[126,24,66,64.0],[126,24,67,64.0],[126,24,68,64.0],[126,24,69,64.0],[126,24,70,64.0],[126,24,71,64.0],[126,24,72,64.0],[126,24,73,64.0],[126,24,74,64.0],[126,24,75,64.0],[126,24,76,64.0],[126,24,77,64.0],[126,24,78,64.0],[126,24,79,64.0],[126,25,64,64.0],[126,25,65,64.0],[126,25,66,64.0],[126,25,67,64.0],[126,25,68,64.0],[126,25,69,64.0],[126,25,70,64.0],[126,25,71,64.0],[126,25,72,64.0],[126,25,73,64.0],[126,25,74,64.0],[126,25,75,64.0],[126,25,76,64.0],[126,25,77,64.0],[126,25,78,64.0],[126,25,79,64.0],[126,26,64,64.0],[126,26,65,64.0],[126,26,66,64.0],[126,26,67,64.0],[126,26,68,64.0],[126,26,69,64.0],[126,26,70,64.0],[126,26,71,64.0],[126,26,72,64.0],[126,26,73,64.0],[126,26,74,64.0],[126,26,75,64.0],[126,26,76,64.0],[126,26,77,64.0],[126,26,78,64.0],[126,26,79,64.0],[126,27,64,64.0],[126,27,65,64.0],[126,27,66,64.0],[126,27,67,64.0],[126,27,68,64.0],[126,27,69,64.0],[126,27,70,64.0],[126,27,71,64.0],[126,27,72,64.0],[126,27,73,64.0],[126,27,74,64.0],[126,27,75,64.0],[126,27,76,64.0],[126,27,77,64.0],[126,27,78,64.0],[126,27,79,64.0],[126,28,64,64.0],[126,28,65,64.0],[126,28,66,64.0],[126,28,67,64.0],[126,28,68,64.0],[126,28,69,64.0],[126,28,70,64.0],[126,28,71,64.0],[126,28,72,64.0],[126,28,73,64.0],[126,28,74,64.0],[126,28,75,64.0],[126,28,76,64.0],[126,28,77,64.0],[126,28,78,64.0],[126,28,79,64.0],[126,29,64,64.0],[126,29,65,64.0],[126,29,66,64.0],[126,29,67,64.0],[126,29,68,64.0],[126,29,69,64.0],[126,29,70,64.0],[126,29,71,64.0],[126,29,72,64.0],[126,29,73,64.0],[126,29,74,64.0],[126,29,75,64.0],[126,29,76,64.0],[126,29,77,64.0],[126,29,78,64.0],[126,29,79,64.0],[126,30,64,64.0],[126,30,65,64.0],[126,30,66,64.0],[126,30,67,64.0],[126,30,68,64.0],[126,30,69,64.0],[126,30,70,64.0],[126,30,71,64.0],[126,30,72,64.0],[126,30,73,64.0],[126,30,74,64.0],[126,30,75,64.0],[126,30,76,64.0],[126,30,77,64.0],[126,30,78,64.0],[126,30,79,64.0],[126,31,64,64.0],[126,31,65,64.0],[126,31,66,64.0],[126,31,67,64.0],[126,31,68,64.0],[126,31,69,64.0],[126,31,70,64.0],[126,31,71,64.0],[126,31,72,64.0],[126,31,73,64.0],[126,31,74,64.0],[126,31,75,64.0],[126,31,76,64.0],[126,31,77,64.0],[126,31,78,64.0],[126,31,79,64.0],[126,32,64,64.0],[126,32,65,64.0],[126,32,66,64.0],[126,32,67,64.0],[126,32,68,64.0],[126,32,69,64.0],[126,32,70,64.0],[126,32,71,64.0],[126,32,72,64.0],[126,32,73,64.0],[126,32,74,64.0],[126,32,75,64.0],[126,32,76,64.0],[126,32,77,64.0],[126,32,78,64.0],[126,32,79,64.0],[126,33,64,64.0],[126,33,65,64.0],[126,33,66,64.0],[126,33,67,64.0],[126,33,68,64.0],[126,33,69,64.0],[126,33,70,64.0],[126,33,71,64.0],[126,33,72,64.0],[126,33,73,64.0],[126,33,74,64.0],[126,33,75,64.0],[126,33,76,64.0],[126,33,77,64.0],[126,33,78,64.0],[126,33,79,64.0],[126,34,64,64.0],[126,34,65,64.0],[126,34,66,64.0],[126,34,67,64.0],[126,34,68,64.0],[126,34,69,64.0],[126,34,70,64.0],[126,34,71,64.0],[126,34,72,64.0],[126,34,73,64.0],[126,34,74,64.0],[126,34,75,64.0],[126,34,76,64.0],[126,34,77,64.0],[126,34,78,64.0],[126,34,79,64.0],[126,35,64,64.0],[126,35,65,64.0],[126,35,66,64.0],[126,35,67,64.0],[126,35,68,64.0],[126,35,69,64.0],[126,35,70,64.0],[126,35,71,64.0],[126,35,72,64.0],[126,35,73,64.0],[126,35,74,64.0],[126,35,75,64.0],[126,35,76,64.0],[126,35,77,64.0],[126,35,78,64.0],[126,35,79,64.0],[126,36,64,64.0],[126,36,65,64.0],[126,36,66,64.0],[126,36,67,64.0],[126,36,68,64.0],[126,36,69,64.0],[126,36,70,64.0],[126,36,71,64.0],[126,36,72,64.0],[126,36,73,64.0],[126,36,74,64.0],[126,36,75,64.0],[126,36,76,64.0],[126,36,77,64.0],[126,36,78,64.0],[126,36,79,64.0],[126,37,64,64.0],[126,37,65,64.0],[126,37,66,64.0],[126,37,67,64.0],[126,37,68,64.0],[126,37,69,64.0],[126,37,70,64.0],[126,37,71,64.0],[126,37,72,64.0],[126,37,73,64.0],[126,37,74,64.0],[126,37,75,64.0],[126,37,76,64.0],[126,37,77,64.0],[126,37,78,64.0],[126,37,79,64.0],[126,38,64,64.0],[126,38,65,64.0],[126,38,66,64.0],[126,38,67,64.0],[126,38,68,64.0],[126,38,69,64.0],[126,38,70,64.0],[126,38,71,64.0],[126,38,72,64.0],[126,38,73,64.0],[126,38,74,64.0],[126,38,75,64.0],[126,38,76,64.0],[126,38,77,64.0],[126,38,78,64.0],[126,38,79,64.0],[126,39,64,64.0],[126,39,65,64.0],[126,39,66,64.0],[126,39,67,64.0],[126,39,68,64.0],[126,39,69,64.0],[126,39,70,64.0],[126,39,71,64.0],[126,39,72,64.0],[126,39,73,64.0],[126,39,74,64.0],[126,39,75,64.0],[126,39,76,64.0],[126,39,77,64.0],[126,39,78,64.0],[126,39,79,64.0],[126,40,64,64.0],[126,40,65,64.0],[126,40,66,64.0],[126,40,67,64.0],[126,40,68,64.0],[126,40,69,64.0],[126,40,70,64.0],[126,40,71,64.0],[126,40,72,64.0],[126,40,73,64.0],[126,40,74,64.0],[126,40,75,64.0],[126,40,76,64.0],[126,40,77,64.0],[126,40,78,64.0],[126,40,79,64.0],[126,41,64,64.0],[126,41,65,64.0],[126,41,66,64.0],[126,41,67,64.0],[126,41,68,64.0],[126,41,69,64.0],[126,41,70,64.0],[126,41,71,64.0],[126,41,72,64.0],[126,41,73,64.0],[126,41,74,64.0],[126,41,75,64.0],[126,41,76,64.0],[126,41,77,64.0],[126,41,78,64.0],[126,41,79,64.0],[126,42,64,64.0],[126,42,65,64.0],[126,42,66,64.0],[126,42,67,64.0],[126,42,68,64.0],[126,42,69,64.0],[126,42,70,64.0],[126,42,71,64.0],[126,42,72,64.0],[126,42,73,64.0],[126,42,74,64.0],[126,42,75,64.0],[126,42,76,64.0],[126,42,77,64.0],[126,42,78,64.0],[126,42,79,64.0],[126,43,64,64.0],[126,43,65,64.0],[126,43,66,64.0],[126,43,67,64.0],[126,43,68,64.0],[126,43,69,64.0],[126,43,70,64.0],[126,43,71,64.0],[126,43,72,64.0],[126,43,73,64.0],[126,43,74,64.0],[126,43,75,64.0],[126,43,76,64.0],[126,43,77,64.0],[126,43,78,64.0],[126,43,79,64.0],[126,44,64,64.0],[126,44,65,64.0],[126,44,66,64.0],[126,44,67,64.0],[126,44,68,64.0],[126,44,69,64.0],[126,44,70,64.0],[126,44,71,64.0],[126,44,72,64.0],[126,44,73,64.0],[126,44,74,64.0],[126,44,75,64.0],[126,44,76,64.0],[126,44,77,64.0],[126,44,78,64.0],[126,44,79,64.0],[126,45,64,64.0],[126,45,65,64.0],[126,45,66,64.0],[126,45,67,64.0],[126,45,68,64.0],[126,45,69,64.0],[126,45,70,64.0],[126,45,71,64.0],[126,45,72,64.0],[126,45,73,64.0],[126,45,74,64.0],[126,45,75,64.0],[126,45,76,64.0],[126,45,77,64.0],[126,45,78,64.0],[126,45,79,64.0],[126,46,64,64.0],[126,46,65,64.0],[126,46,66,64.0],[126,46,67,64.0],[126,46,68,64.0],[126,46,69,64.0],[126,46,70,64.0],[126,46,71,64.0],[126,46,72,64.0],[126,46,73,64.0],[126,46,74,64.0],[126,46,75,64.0],[126,46,76,64.0],[126,46,77,64.0],[126,46,78,64.0],[126,46,79,64.0],[126,47,64,64.0],[126,47,65,64.0],[126,47,66,64.0],[126,47,67,64.0],[126,47,68,64.0],[126,47,69,64.0],[126,47,70,64.0],[126,47,71,64.0],[126,47,72,64.0],[126,47,73,64.0],[126,47,74,64.0],[126,47,75,64.0],[126,47,76,64.0],[126,47,77,64.0],[126,47,78,64.0],[126,47,79,64.0],[126,48,64,64.0],[126,48,65,64.0],[126,48,66,64.0],[126,48,67,64.0],[126,48,68,64.0],[126,48,69,64.0],[126,48,70,64.0],[126,48,71,64.0],[126,48,72,64.0],[126,48,73,64.0],[126,48,74,64.0],[126,48,75,64.0],[126,48,76,64.0],[126,48,77,64.0],[126,48,78,64.0],[126,48,79,64.0],[126,49,64,64.0],[126,49,65,64.0],[126,49,66,64.0],[126,49,67,64.0],[126,49,68,64.0],[126,49,69,64.0],[126,49,70,64.0],[126,49,71,64.0],[126,49,72,64.0],[126,49,73,64.0],[126,49,74,64.0],[126,49,75,64.0],[126,49,76,64.0],[126,49,77,64.0],[126,49,78,64.0],[126,49,79,64.0],[126,50,64,64.0],[126,50,65,64.0],[126,50,66,64.0],[126,50,67,64.0],[126,50,68,64.0],[126,50,69,64.0],[126,50,70,64.0],[126,50,71,64.0],[126,50,72,64.0],[126,50,73,64.0],[126,50,74,64.0],[126,50,75,64.0],[126,50,76,64.0],[126,50,77,64.0],[126,50,78,64.0],[126,50,79,64.0],[126,51,64,64.0],[126,51,65,64.0],[126,51,66,64.0],[126,51,67,64.0],[126,51,68,64.0],[126,51,69,64.0],[126,51,70,64.0],[126,51,71,64.0],[126,51,72,64.0],[126,51,73,64.0],[126,51,74,64.0],[126,51,75,64.0],[126,51,76,64.0],[126,51,77,64.0],[126,51,78,64.0],[126,51,79,64.0],[126,52,64,64.0],[126,52,65,64.0],[126,52,66,64.0],[126,52,67,64.0],[126,52,68,64.0],[126,52,69,64.0],[126,52,70,64.0],[126,52,71,64.0],[126,52,72,64.0],[126,52,73,64.0],[126,52,74,64.0],[126,52,75,64.0],[126,52,76,64.0],[126,52,77,64.0],[126,52,78,64.0],[126,52,79,64.0],[126,53,64,64.0],[126,53,65,64.0],[126,53,66,64.0],[126,53,67,64.0],[126,53,68,64.0],[126,53,69,64.0],[126,53,70,64.0],[126,53,71,64.0],[126,53,72,64.0],[126,53,73,64.0],[126,53,74,64.0],[126,53,75,64.0],[126,53,76,64.0],[126,53,77,64.0],[126,53,78,64.0],[126,53,79,64.0],[126,54,64,64.0],[126,54,65,64.0],[126,54,66,64.0],[126,54,67,64.0],[126,54,68,64.0],[126,54,69,64.0],[126,54,70,64.0],[126,54,71,64.0],[126,54,72,64.0],[126,54,73,64.0],[126,54,74,64.0],[126,54,75,64.0],[126,54,76,64.0],[126,54,77,64.0],[126,54,78,64.0],[126,54,79,64.0],[126,55,64,64.0],[126,55,65,64.0],[126,55,66,64.0],[126,55,67,64.0],[126,55,68,64.0],[126,55,69,64.0],[126,55,70,64.0],[126,55,71,64.0],[126,55,72,64.0],[126,55,73,64.0],[126,55,74,64.0],[126,55,75,64.0],[126,55,76,64.0],[126,55,77,64.0],[126,55,78,64.0],[126,55,79,64.0],[126,56,64,64.0],[126,56,65,64.0],[126,56,66,64.0],[126,56,67,64.0],[126,56,68,64.0],[126,56,69,64.0],[126,56,70,64.0],[126,56,71,64.0],[126,56,72,64.0],[126,56,73,64.0],[126,56,74,64.0],[126,56,75,64.0],[126,56,76,64.0],[126,56,77,64.0],[126,56,78,64.0],[126,56,79,64.0],[126,57,64,64.0],[126,57,65,64.0],[126,57,66,64.0],[126,57,67,64.0],[126,57,68,64.0],[126,57,69,64.0],[126,57,70,64.0],[126,57,71,64.0],[126,57,72,64.0],[126,57,73,64.0],[126,57,74,64.0],[126,57,75,64.0],[126,57,76,64.0],[126,57,77,64.0],[126,57,78,64.0],[126,57,79,64.0],[126,58,64,64.0],[126,58,65,64.0],[126,58,66,64.0],[126,58,67,64.0],[126,58,68,64.0],[126,58,69,64.0],[126,58,70,64.0],[126,58,71,64.0],[126,58,72,64.0],[126,58,73,64.0],[126,58,74,64.0],[126,58,75,64.0],[126,58,76,64.0],[126,58,77,64.0],[126,58,78,64.0],[126,58,79,64.0],[126,59,64,64.0],[126,59,65,64.0],[126,59,66,64.0],[126,59,67,64.0],[126,59,68,64.0],[126,59,69,64.0],[126,59,70,64.0],[126,59,71,64.0],[126,59,72,64.0],[126,59,73,64.0],[126,59,74,64.0],[126,59,75,64.0],[126,59,76,64.0],[126,59,77,64.0],[126,59,78,64.0],[126,59,79,64.0],[126,60,64,64.0],[126,60,65,64.0],[126,60,66,64.0],[126,60,67,64.0],[126,60,68,64.0],[126,60,69,64.0],[126,60,70,64.0],[126,60,71,64.0],[126,60,72,64.0],[126,60,73,64.0],[126,60,74,64.0],[126,60,75,64.0],[126,60,76,64.0],[126,60,77,64.0],[126,60,78,64.0],[126,60,79,64.0],[126,61,64,64.0],[126,61,65,64.0],[126,61,66,64.0],[126,61,67,64.0],[126,61,68,64.0],[126,61,69,64.0],[126,61,70,64.0],[126,61,71,64.0],[126,61,72,64.0],[126,61,73,64.0],[126,61,74,64.0],[126,61,75,64.0],[126,61,76,64.0],[126,61,77,64.0],[126,61,78,64.0],[126,61,79,64.0],[126,62,64,64.0],[126,62,65,64.0],[126,62,66,64.0],[126,62,67,64.0],[126,62,68,64.0],[126,62,69,64.0],[126,62,70,64.0],[126,62,71,64.0],[126,62,72,64.0],[126,62,73,64.0],[126,62,74,64.0],[126,62,75,64.0],[126,62,76,64.0],[126,62,77,64.0],[126,62,78,64.0],[126,62,79,64.0],[126,63,64,64.0],[126,63,65,64.0],[126,63,66,64.0],[126,63,67,64.0],[126,63,68,64.0],[126,63,69,64.0],[126,63,70,64.0],[126,63,71,64.0],[126,63,72,64.0],[126,63,73,64.0],[126,63,74,64.0],[126,63,75,64.0],[126,63,76,64.0],[126,63,77,64.0],[126,63,78,64.0],[126,63,79,64.0],[126,64,64,64.0],[126,64,65,64.0],[126,64,66,64.0],[126,64,67,64.0],[126,64,68,64.0],[126,64,69,64.0],[126,64,70,64.0],[126,64,71,64.0],[126,64,72,64.0],[126,64,73,64.0],[126,64,74,64.0],[126,64,75,64.0],[126,64,76,64.0],[126,64,77,64.0],[126,64,78,64.0],[126,64,79,64.0],[126,65,64,64.0],[126,65,65,64.0],[126,65,66,64.0],[126,65,67,64.0],[126,65,68,64.0],[126,65,69,64.0],[126,65,70,64.0],[126,65,71,64.0],[126,65,72,64.0],[126,65,73,64.0],[126,65,74,64.0],[126,65,75,64.0],[126,65,76,64.0],[126,65,77,64.0],[126,65,78,64.0],[126,65,79,64.0],[126,66,64,64.0],[126,66,65,64.0],[126,66,66,64.0],[126,66,67,64.0],[126,66,68,64.0],[126,66,69,64.0],[126,66,70,64.0],[126,66,71,64.0],[126,66,72,64.0],[126,66,73,64.0],[126,66,74,64.0],[126,66,75,64.0],[126,66,76,64.0],[126,66,77,64.0],[126,66,78,64.0],[126,66,79,64.0],[126,67,64,64.0],[126,67,65,64.0],[126,67,66,64.0],[126,67,67,64.0],[126,67,68,64.0],[126,67,69,64.0],[126,67,70,64.0],[126,67,71,64.0],[126,67,72,64.0],[126,67,73,64.0],[126,67,74,64.0],[126,67,75,64.0],[126,67,76,64.0],[126,67,77,64.0],[126,67,78,64.0],[126,67,79,64.0],[126,68,64,64.0],[126,68,65,64.0],[126,68,66,64.0],[126,68,67,64.0],[126,68,68,64.0],[126,68,69,64.0],[126,68,70,64.0],[126,68,71,64.0],[126,68,72,64.0],[126,68,73,64.0],[126,68,74,64.0],[126,68,75,64.0],[126,68,76,64.0],[126,68,77,64.0],[126,68,78,64.0],[126,68,79,64.0],[126,69,64,64.0],[126,69,65,64.0],[126,69,66,64.0],[126,69,67,64.0],[126,69,68,64.0],[126,69,69,64.0],[126,69,70,64.0],[126,69,71,64.0],[126,69,72,64.0],[126,69,73,64.0],[126,69,74,64.0],[126,69,75,64.0],[126,69,76,64.0],[126,69,77,64.0],[126,69,78,64.0],[126,69,79,64.0],[126,70,64,64.0],[126,70,65,64.0],[126,70,66,64.0],[126,70,67,64.0],[126,70,68,64.0],[126,70,69,64.0],[126,70,70,64.0],[126,70,71,64.0],[126,70,72,64.0],[126,70,73,64.0],[126,70,74,64.0],[126,70,75,64.0],[126,70,76,64.0],[126,70,77,64.0],[126,70,78,64.0],[126,70,79,64.0],[126,71,64,64.0],[126,71,65,64.0],[126,71,66,64.0],[126,71,67,64.0],[126,71,68,64.0],[126,71,69,64.0],[126,71,70,64.0],[126,71,71,64.0],[126,71,72,64.0],[126,71,73,64.0],[126,71,74,64.0],[126,71,75,64.0],[126,71,76,64.0],[126,71,77,64.0],[126,71,78,64.0],[126,71,79,64.0],[126,72,64,64.0],[126,72,65,64.0],[126,72,66,64.0],[126,72,67,64.0],[126,72,68,64.0],[126,72,69,64.0],[126,72,70,64.0],[126,72,71,64.0],[126,72,72,64.0],[126,72,73,64.0],[126,72,74,64.0],[126,72,75,64.0],[126,72,76,64.0],[126,72,77,64.0],[126,72,78,64.0],[126,72,79,64.0],[126,73,64,64.0],[126,73,65,64.0],[126,73,66,64.0],[126,73,67,64.0],[126,73,68,64.0],[126,73,69,64.0],[126,73,70,64.0],[126,73,71,64.0],[126,73,72,64.0],[126,73,73,64.0],[126,73,74,64.0],[126,73,75,64.0],[126,73,76,64.0],[126,73,77,64.0],[126,73,78,64.0],[126,73,79,64.0],[126,74,64,64.0],[126,74,65,64.0],[126,74,66,64.0],[126,74,67,64.0],[126,74,68,64.0],[126,74,69,64.0],[126,74,70,64.0],[126,74,71,64.0],[126,74,72,64.0],[126,74,73,64.0],[126,74,74,64.0],[126,74,75,64.0],[126,74,76,64.0],[126,74,77,64.0],[126,74,78,64.0],[126,74,79,64.0],[126,75,64,64.0],[126,75,65,64.0],[126,75,66,64.0],[126,75,67,64.0],[126,75,68,64.0],[126,75,69,64.0],[126,75,70,64.0],[126,75,71,64.0],[126,75,72,64.0],[126,75,73,64.0],[126,75,74,64.0],[126,75,75,64.0],[126,75,76,64.0],[126,75,77,64.0],[126,75,78,64.0],[126,75,79,64.0],[126,76,64,64.0],[126,76,65,64.0],[126,76,66,64.0],[126,76,67,64.0],[126,76,68,64.0],[126,76,69,64.0],[126,76,70,64.0],[126,76,71,64.0],[126,76,72,64.0],[126,76,73,64.0],[126,76,74,64.0],[126,76,75,64.0],[126,76,76,64.0],[126,76,77,64.0],[126,76,78,64.0],[126,76,79,64.0],[126,77,64,64.0],[126,77,65,64.0],[126,77,66,64.0],[126,77,67,64.0],[126,77,68,64.0],[126,77,69,64.0],[126,77,70,64.0],[126,77,71,64.0],[126,77,72,64.0],[126,77,73,64.0],[126,77,74,64.0],[126,77,75,64.0],[126,77,76,64.0],[126,77,77,64.0],[126,77,78,64.0],[126,77,79,64.0],[126,78,64,64.0],[126,78,65,64.0],[126,78,66,64.0],[126,78,67,64.0],[126,78,68,64.0],[126,78,69,64.0],[126,78,70,64.0],[126,78,71,64.0],[126,78,72,64.0],[126,78,73,64.0],[126,78,74,64.0],[126,78,75,64.0],[126,78,76,64.0],[126,78,77,64.0],[126,78,78,64.0],[126,78,79,64.0],[126,79,64,64.0],[126,79,65,64.0],[126,79,66,64.0],[126,79,67,64.0],[126,79,68,64.0],[126,79,69,64.0],[126,79,70,64.0],[126,79,71,64.0],[126,79,72,64.0],[126,79,73,64.0],[126,79,74,64.0],[126,79,75,64.0],[126,79,76,64.0],[126,79,77,64.0],[126,79,78,64.0],[126,79,79,64.0],[126,80,64,64.0],[126,80,65,64.0],[126,80,66,64.0],[126,80,67,64.0],[126,80,68,64.0],[126,80,69,64.0],[126,80,70,64.0],[126,80,71,64.0],[126,80,72,64.0],[126,80,73,64.0],[126,80,74,64.0],[126,80,75,64.0],[126,80,76,64.0],[126,80,77,64.0],[126,80,78,64.0],[126,80,79,64.0],[126,81,64,64.0],[126,81,65,64.0],[126,81,66,64.0],[126,81,67,64.0],[126,81,68,64.0],[126,81,69,64.0],[126,81,70,64.0],[126,81,71,64.0],[126,81,72,64.0],[126,81,73,64.0],[126,81,74,64.0],[126,81,75,64.0],[126,81,76,64.0],[126,81,77,64.0],[126,81,78,64.0],[126,81,79,64.0],[126,82,64,64.0],[126,82,65,64.0],[126,82,66,64.0],[126,82,67,64.0],[126,82,68,64.0],[126,82,69,64.0],[126,82,70,64.0],[126,82,71,64.0],[126,82,72,64.0],[126,82,73,64.0],[126,82,74,64.0],[126,82,75,64.0],[126,82,76,64.0],[126,82,77,64.0],[126,82,78,64.0],[126,82,79,64.0],[126,83,64,64.0],[126,83,65,64.0],[126,83,66,64.0],[126,83,67,64.0],[126,83,68,64.0],[126,83,69,64.0],[126,83,70,64.0],[126,83,71,64.0],[126,83,72,64.0],[126,83,73,64.0],[126,83,74,64.0],[126,83,75,64.0],[126,83,76,64.0],[126,83,77,64.0],[126,83,78,64.0],[126,83,79,64.0],[126,84,64,64.0],[126,84,65,64.0],[126,84,66,64.0],[126,84,67,64.0],[126,84,68,64.0],[126,84,69,64.0],[126,84,70,64.0],[126,84,71,64.0],[126,84,72,64.0],[126,84,73,64.0],[126,84,74,64.0],[126,84,75,64.0],[126,84,76,64.0],[126,84,77,64.0],[126,84,78,64.0],[126,84,79,64.0],[126,85,64,64.0],[126,85,65,64.0],[126,85,66,64.0],[126,85,67,64.0],[126,85,68,64.0],[126,85,69,64.0],[126,85,70,64.0],[126,85,71,64.0],[126,85,72,64.0],[126,85,73,64.0],[126,85,74,64.0],[126,85,75,64.0],[126,85,76,64.0],[126,85,77,64.0],[126,85,78,64.0],[126,85,79,64.0],[126,86,64,64.0],[126,86,65,64.0],[126,86,66,64.0],[126,86,67,64.0],[126,86,68,64.0],[126,86,69,64.0],[126,86,70,64.0],[126,86,71,64.0],[126,86,72,64.0],[126,86,73,64.0],[126,86,74,64.0],[126,86,75,64.0],[126,86,76,64.0],[126,86,77,64.0],[126,86,78,64.0],[126,86,79,64.0],[126,87,64,64.0],[126,87,65,64.0],[126,87,66,64.0],[126,87,67,64.0],[126,87,68,64.0],[126,87,69,64.0],[126,87,70,64.0],[126,87,71,64.0],[126,87,72,64.0],[126,87,73,64.0],[126,87,74,64.0],[126,87,75,64.0],[126,87,76,64.0],[126,87,77,64.0],[126,87,78,64.0],[126,87,79,64.0],[126,88,64,64.0],[126,88,65,64.0],[126,88,66,64.0],[126,88,67,64.0],[126,88,68,64.0],[126,88,69,64.0],[126,88,70,64.0],[126,88,71,64.0],[126,88,72,64.0],[126,88,73,64.0],[126,88,74,64.0],[126,88,75,64.0],[126,88,76,64.0],[126,88,77,64.0],[126,88,78,64.0],[126,88,79,64.0],[126,89,64,64.0],[126,89,65,64.0],[126,89,66,64.0],[126,89,67,64.0],[126,89,68,64.0],[126,89,69,64.0],[126,89,70,64.0],[126,89,71,64.0],[126,89,72,64.0],[126,89,73,64.0],[126,89,74,64.0],[126,89,75,64.0],[126,89,76,64.0],[126,89,77,64.0],[126,89,78,64.0],[126,89,79,64.0],[126,90,64,64.0],[126,90,65,64.0],[126,90,66,64.0],[126,90,67,64.0],[126,90,68,64.0],[126,90,69,64.0],[126,90,70,64.0],[126,90,71,64.0],[126,90,72,64.0],[126,90,73,64.0],[126,90,74,64.0],[126,90,75,64.0],[126,90,76,64.0],[126,90,77,64.0],[126,90,78,64.0],[126,90,79,64.0],[126,91,64,64.0],[126,91,65,64.0],[126,91,66,64.0],[126,91,67,64.0],[126,91,68,64.0],[126,91,69,64.0],[126,91,70,64.0],[126,91,71,64.0],[126,91,72,64.0],[126,91,73,64.0],[126,91,74,64.0],[126,91,75,64.0],[126,91,76,64.0],[126,91,77,64.0],[126,91,78,64.0],[126,91,79,64.0],[126,92,64,64.0],[126,92,65,64.0],[126,92,66,64.0],[126,92,67,64.0],[126,92,68,64.0],[126,92,69,64.0],[126,92,70,64.0],[126,92,71,64.0],[126,92,72,64.0],[126,92,73,64.0],[126,92,74,64.0],[126,92,75,64.0],[126,92,76,64.0],[126,92,77,64.0],[126,92,78,64.0],[126,92,79,64.0],[126,93,64,64.0],[126,93,65,64.0],[126,93,66,64.0],[126,93,67,64.0],[126,93,68,64.0],[126,93,69,64.0],[126,93,70,64.0],[126,93,71,64.0],[126,93,72,64.0],[126,93,73,64.0],[126,93,74,64.0],[126,93,75,64.0],[126,93,76,64.0],[126,93,77,64.0],[126,93,78,64.0],[126,93,79,64.0],[126,94,64,64.0],[126,94,65,64.0],[126,94,66,64.0],[126,94,67,64.0],[126,94,68,64.0],[126,94,69,64.0],[126,94,70,64.0],[126,94,71,64.0],[126,94,72,64.0],[126,94,73,64.0],[126,94,74,64.0],[126,94,75,64.0],[126,94,76,64.0],[126,94,77,64.0],[126,94,78,64.0],[126,94,79,64.0],[126,95,64,64.0],[126,95,65,64.0],[126,95,66,64.0],[126,95,67,64.0],[126,95,68,64.0],[126,95,69,64.0],[126,95,70,64.0],[126,95,71,64.0],[126,95,72,64.0],[126,95,73,64.0],[126,95,74,64.0],[126,95,75,64.0],[126,95,76,64.0],[126,95,77,64.0],[126,95,78,64.0],[126,95,79,64.0],[126,96,64,64.0],[126,96,65,64.0],[126,96,66,64.0],[126,96,67,64.0],[126,96,68,64.0],[126,96,69,64.0],[126,96,70,64.0],[126,96,71,64.0],[126,96,72,64.0],[126,96,73,64.0],[126,96,74,64.0],[126,96,75,64.0],[126,96,76,64.0],[126,96,77,64.0],[126,96,78,64.0],[126,96,79,64.0],[126,97,64,64.0],[126,97,65,64.0],[126,97,66,64.0],[126,97,67,64.0],[126,97,68,64.0],[126,97,69,64.0],[126,97,70,64.0],[126,97,71,64.0],[126,97,72,64.0],[126,97,73,64.0],[126,97,74,64.0],[126,97,75,64.0],[126,97,76,64.0],[126,97,77,64.0],[126,97,78,64.0],[126,97,79,64.0],[126,98,64,64.0],[126,98,65,64.0],[126,98,66,64.0],[126,98,67,64.0],[126,98,68,64.0],[126,98,69,64.0],[126,98,70,64.0],[126,98,71,64.0],[126,98,72,64.0],[126,98,73,64.0],[126,98,74,64.0],[126,98,75,64.0],[126,98,76,64.0],[126,98,77,64.0],[126,98,78,64.0],[126,98,79,64.0],[126,99,64,64.0],[126,99,65,64.0],[126,99,66,64.0],[126,99,67,64.0],[126,99,68,64.0],[126,99,69,64.0],[126,99,70,64.0],[126,99,71,64.0],[126,99,72,64.0],[126,99,73,64.0],[126,99,74,64.0],[126,99,75,64.0],[126,99,76,64.0],[126,99,77,64.0],[126,99,78,64.0],[126,99,79,64.0],[126,100,64,64.0],[126,100,65,64.0],[126,100,66,64.0],[126,100,67,64.0],[126,100,68,64.0],[126,100,69,64.0],[126,100,70,64.0],[126,100,71,64.0],[126,100,72,64.0],[126,100,73,64.0],[126,100,74,64.0],[126,100,75,64.0],[126,100,76,64.0],[126,100,77,64.0],[126,100,78,64.0],[126,100,79,64.0],[126,101,64,64.0],[126,101,65,64.0],[126,101,66,64.0],[126,101,67,64.0],[126,101,68,64.0],[126,101,69,64.0],[126,101,70,64.0],[126,101,71,64.0],[126,101,72,64.0],[126,101,73,64.0],[126,101,74,64.0],[126,101,75,64.0],[126,101,76,64.0],[126,101,77,64.0],[126,101,78,64.0],[126,101,79,64.0],[126,102,64,64.0],[126,102,65,64.0],[126,102,66,64.0],[126,102,67,64.0],[126,102,68,64.0],[126,102,69,64.0],[126,102,70,64.0],[126,102,71,64.0],[126,102,72,64.0],[126,102,73,64.0],[126,102,74,64.0],[126,102,75,64.0],[126,102,76,64.0],[126,102,77,64.0],[126,102,78,64.0],[126,102,79,64.0],[126,103,64,64.0],[126,103,65,64.0],[126,103,66,64.0],[126,103,67,64.0],[126,103,68,64.0],[126,103,69,64.0],[126,103,70,64.0],[126,103,71,64.0],[126,103,72,64.0],[126,103,73,64.0],[126,103,74,64.0],[126,103,75,64.0],[126,103,76,64.0],[126,103,77,64.0],[126,103,78,64.0],[126,103,79,64.0],[126,104,64,64.0],[126,104,65,64.0],[126,104,66,64.0],[126,104,67,64.0],[126,104,68,64.0],[126,104,69,64.0],[126,104,70,64.0],[126,104,71,64.0],[126,104,72,64.0],[126,104,73,64.0],[126,104,74,64.0],[126,104,75,64.0],[126,104,76,64.0],[126,104,77,64.0],[126,104,78,64.0],[126,104,79,64.0],[126,105,64,64.0],[126,105,65,64.0],[126,105,66,64.0],[126,105,67,64.0],[126,105,68,64.0],[126,105,69,64.0],[126,105,70,64.0],[126,105,71,64.0],[126,105,72,64.0],[126,105,73,64.0],[126,105,74,64.0],[126,105,75,64.0],[126,105,76,64.0],[126,105,77,64.0],[126,105,78,64.0],[126,105,79,64.0],[126,106,64,64.0],[126,106,65,64.0],[126,106,66,64.0],[126,106,67,64.0],[126,106,68,64.0],[126,106,69,64.0],[126,106,70,64.0],[126,106,71,64.0],[126,106,72,64.0],[126,106,73,64.0],[126,106,74,64.0],[126,106,75,64.0],[126,106,76,64.0],[126,106,77,64.0],[126,106,78,64.0],[126,106,79,64.0],[126,107,64,64.0],[126,107,65,64.0],[126,107,66,64.0],[126,107,67,64.0],[126,107,68,64.0],[126,107,69,64.0],[126,107,70,64.0],[126,107,71,64.0],[126,107,72,64.0],[126,107,73,64.0],[126,107,74,64.0],[126,107,75,64.0],[126,107,76,64.0],[126,107,77,64.0],[126,107,78,64.0],[126,107,79,64.0],[126,108,64,64.0],[126,108,65,64.0],[126,108,66,64.0],[126,108,67,64.0],[126,108,68,64.0],[126,108,69,64.0],[126,108,70,64.0],[126,108,71,64.0],[126,108,72,64.0],[126,108,73,64.0],[126,108,74,64.0],[126,108,75,64.0],[126,108,76,64.0],[126,108,77,64.0],[126,108,78,64.0],[126,108,79,64.0],[126,109,64,64.0],[126,109,65,64.0],[126,109,66,64.0],[126,109,67,64.0],[126,109,68,64.0],[126,109,69,64.0],[126,109,70,64.0],[126,109,71,64.0],[126,109,72,64.0],[126,109,73,64.0],[126,109,74,64.0],[126,109,75,64.0],[126,109,76,64.0],[126,109,77,64.0],[126,109,78,64.0],[126,109,79,64.0],[126,110,64,64.0],[126,110,65,64.0],[126,110,66,64.0],[126,110,67,64.0],[126,110,68,64.0],[126,110,69,64.0],[126,110,70,64.0],[126,110,71,64.0],[126,110,72,64.0],[126,110,73,64.0],[126,110,74,64.0],[126,110,75,64.0],[126,110,76,64.0],[126,110,77,64.0],[126,110,78,64.0],[126,110,79,64.0],[126,111,64,64.0],[126,111,65,64.0],[126,111,66,64.0],[126,111,67,64.0],[126,111,68,64.0],[126,111,69,64.0],[126,111,70,64.0],[126,111,71,64.0],[126,111,72,64.0],[126,111,73,64.0],[126,111,74,64.0],[126,111,75,64.0],[126,111,76,64.0],[126,111,77,64.0],[126,111,78,64.0],[126,111,79,64.0],[126,112,64,64.0],[126,112,65,64.0],[126,112,66,64.0],[126,112,67,64.0],[126,112,68,64.0],[126,112,69,64.0],[126,112,70,64.0],[126,112,71,64.0],[126,112,72,64.0],[126,112,73,64.0],[126,112,74,64.0],[126,112,75,64.0],[126,112,76,64.0],[126,112,77,64.0],[126,112,78,64.0],[126,112,79,64.0],[126,113,64,64.0],[126,113,65,64.0],[126,113,66,64.0],[126,113,67,64.0],[126,113,68,64.0],[126,113,69,64.0],[126,113,70,64.0],[126,113,71,64.0],[126,113,72,64.0],[126,113,73,64.0],[126,113,74,64.0],[126,113,75,64.0],[126,113,76,64.0],[126,113,77,64.0],[126,113,78,64.0],[126,113,79,64.0],[126,114,64,64.0],[126,114,65,64.0],[126,114,66,64.0],[126,114,67,64.0],[126,114,68,64.0],[126,114,69,64.0],[126,114,70,64.0],[126,114,71,64.0],[126,114,72,64.0],[126,114,73,64.0],[126,114,74,64.0],[126,114,75,64.0],[126,114,76,64.0],[126,114,77,64.0],[126,114,78,64.0],[126,114,79,64.0],[126,115,64,64.0],[126,115,65,64.0],[126,115,66,64.0],[126,115,67,64.0],[126,115,68,64.0],[126,115,69,64.0],[126,115,70,64.0],[126,115,71,64.0],[126,115,72,64.0],[126,115,73,64.0],[126,115,74,64.0],[126,115,75,64.0],[126,115,76,64.0],[126,115,77,64.0],[126,115,78,64.0],[126,115,79,64.0],[126,116,64,64.0],[126,116,65,64.0],[126,116,66,64.0],[126,116,67,64.0],[126,116,68,64.0],[126,116,69,64.0],[126,116,70,64.0],[126,116,71,64.0],[126,116,72,64.0],[126,116,73,64.0],[126,116,74,64.0],[126,116,75,64.0],[126,116,76,64.0],[126,116,77,64.0],[126,116,78,64.0],[126,116,79,64.0],[126,117,64,64.0],[126,117,65,64.0],[126,117,66,64.0],[126,117,67,64.0],[126,117,68,64.0],[126,117,69,64.0],[126,117,70,64.0],[126,117,71,64.0],[126,117,72,64.0],[126,117,73,64.0],[126,117,74,64.0],[126,117,75,64.0],[126,117,76,64.0],[126,117,77,64.0],[126,117,78,64.0],[126,117,79,64.0],[126,118,64,64.0],[126,118,65,64.0],[126,118,66,64.0],[126,118,67,64.0],[126,118,68,64.0],[126,118,69,64.0],[126,118,70,64.0],[126,118,71,64.0],[126,118,72,64.0],[126,118,73,64.0],[126,118,74,64.0],[126,118,75,64.0],[126,118,76,64.0],[126,118,77,64.0],[126,118,78,64.0],[126,118,79,64.0],[126,119,64,64.0],[126,119,65,64.0],[126,119,66,64.0],[126,119,67,64.0],[126,119,68,64.0],[126,119,69,64.0],[126,119,70,64.0],[126,119,71,64.0],[126,119,72,64.0],[126,119,73,64.0],[126,119,74,64.0],[126,119,75,64.0],[126,119,76,64.0],[126,119,77,64.0],[126,119,78,64.0],[126,119,79,64.0],[126,120,64,64.0],[126,120,65,64.0],[126,120,66,64.0],[126,120,67,64.0],[126,120,68,64.0],[126,120,69,64.0],[126,120,70,64.0],[126,120,71,64.0],[126,120,72,64.0],[126,120,73,64.0],[126,120,74,64.0],[126,120,75,64.0],[126,120,76,64.0],[126,120,77,64.0],[126,120,78,64.0],[126,120,79,64.0],[126,121,64,64.0],[126,121,65,64.0],[126,121,66,64.0],[126,121,67,64.0],[126,121,68,64.0],[126,121,69,64.0],[126,121,70,64.0],[126,121,71,64.0],[126,121,72,64.0],[126,121,73,64.0],[126,121,74,64.0],[126,121,75,64.0],[126,121,76,64.0],[126,121,77,64.0],[126,121,78,64.0],[126,121,79,64.0],[126,122,64,64.0],[126,122,65,64.0],[126,122,66,64.0],[126,122,67,64.0],[126,122,68,64.0],[126,122,69,64.0],[126,122,70,64.0],[126,122,71,64.0],[126,122,72,64.0],[126,122,73,64.0],[126,122,74,64.0],[126,122,75,64.0],[126,122,76,64.0],[126,122,77,64.0],[126,122,78,64.0],[126,122,79,64.0],[126,123,64,64.0],[126,123,65,64.0],[126,123,66,64.0],[126,123,67,64.0],[126,123,68,64.0],[126,123,69,64.0],[126,123,70,64.0],[126,123,71,64.0],[126,123,72,64.0],[126,123,73,64.0],[126,123,74,64.0],[126,123,75,64.0],[126,123,76,64.0],[126,123,77,64.0],[126,123,78,64.0],[126,123,79,64.0],[126,124,64,64.0],[126,124,65,64.0],[126,124,66,64.0],[126,124,67,64.0],[126,124,68,64.0],[126,124,69,64.0],[126,124,70,64.0],[126,124,71,64.0],[126,124,72,64.0],[126,124,73,64.0],[126,124,74,64.0],[126,124,75,64.0],[126,124,76,64.0],[126,124,77,64.0],[126,124,78,64.0],[126,124,79,64.0],[126,125,64,64.0],[126,125,65,64.0],[126,125,66,64.0],[126,125,67,64.0],[126,125,68,64.0],[126,125,69,64.0],[126,125,70,64.0],[126,125,71,64.0],[126,125,72,64.0],[126,125,73,64.0],[126,125,74,64.0],[126,125,75,64.0],[126,125,76,64.0],[126,125,77,64.0],[126,125,78,64.0],[126,125,79,64.0],[126,126,64,64.0],[126,126,65,64.0],[126,126,66,64.0],[126,126,67,64.0],[126,126,68,64.0],[126,126,69,64.0],[126,126,70,64.0],[126,126,71,64.0],[126,126,72,64.0],[126,126,73,64.0],[126,126,74,64.0],[126,126,75,64.0],[126,126,76,64.0],[126,126,77,64.0],[126,126,78,64.0],[126,126,79,64.0],[126,127,64,64.0],[126,127,65,64.0],[126,127,66,64.0],[126,127,67,64.0],[126,127,68,64.0],[126,127,69,64.0],[126,127,70,64.0],[126,127,71,64.0],[126,127,72,64.0],[126,127,73,64.0],[126,127,74,64.0],[126,127,75,64.0],[126,127,76,64.0],[126,127,77,64.0],[126,127,78,64.0],[126,127,79,64.0],[126,128,64,64.0],[126,128,65,64.0],[126,128,66,64.0],[126,128,67,64.0],[126,128,68,64.0],[126,128,69,64.0],[126,128,70,64.0],[126,128,71,64.0],[126,128,72,64.0],[126,128,73,64.0],[126,128,74,64.0],[126,128,75,64.0],[126,128,76,64.0],[126,128,77,64.0],[126,128,78,64.0],[126,128,79,64.0],[126,129,64,64.0],[126,129,65,64.0],[126,129,66,64.0],[126,129,67,64.0],[126,129,68,64.0],[126,129,69,64.0],[126,129,70,64.0],[126,129,71,64.0],[126,129,72,64.0],[126,129,73,64.0],[126,129,74,64.0],[126,129,75,64.0],[126,129,76,64.0],[126,129,77,64.0],[126,129,78,64.0],[126,129,79,64.0],[126,130,64,64.0],[126,130,65,64.0],[126,130,66,64.0],[126,130,67,64.0],[126,130,68,64.0],[126,130,69,64.0],[126,130,70,64.0],[126,130,71,64.0],[126,130,72,64.0],[126,130,73,64.0],[126,130,74,64.0],[126,130,75,64.0],[126,130,76,64.0],[126,130,77,64.0],[126,130,78,64.0],[126,130,79,64.0],[126,131,64,64.0],[126,131,65,64.0],[126,131,66,64.0],[126,131,67,64.0],[126,131,68,64.0],[126,131,69,64.0],[126,131,70,64.0],[126,131,71,64.0],[126,131,72,64.0],[126,131,73,64.0],[126,131,74,64.0],[126,131,75,64.0],[126,131,76,64.0],[126,131,77,64.0],[126,131,78,64.0],[126,131,79,64.0],[126,132,64,64.0],[126,132,65,64.0],[126,132,66,64.0],[126,132,67,64.0],[126,132,68,64.0],[126,132,69,64.0],[126,132,70,64.0],[126,132,71,64.0],[126,132,72,64.0],[126,132,73,64.0],[126,132,74,64.0],[126,132,75,64.0],[126,132,76,64.0],[126,132,77,64.0],[126,132,78,64.0],[126,132,79,64.0],[126,133,64,64.0],[126,133,65,64.0],[126,133,66,64.0],[126,133,67,64.0],[126,133,68,64.0],[126,133,69,64.0],[126,133,70,64.0],[126,133,71,64.0],[126,133,72,64.0],[126,133,73,64.0],[126,133,74,64.0],[126,133,75,64.0],[126,133,76,64.0],[126,133,77,64.0],[126,133,78,64.0],[126,133,79,64.0],[126,134,64,64.0],[126,134,65,64.0],[126,134,66,64.0],[126,134,67,64.0],[126,134,68,64.0],[126,134,69,64.0],[126,134,70,64.0],[126,134,71,64.0],[126,134,72,64.0],[126,134,73,64.0],[126,134,74,64.0],[126,134,75,64.0],[126,134,76,64.0],[126,134,77,64.0],[126,134,78,64.0],[126,134,79,64.0],[126,135,64,64.0],[126,135,65,64.0],[126,135,66,64.0],[126,135,67,64.0],[126,135,68,64.0],[126,135,69,64.0],[126,135,70,64.0],[126,135,71,64.0],[126,135,72,64.0],[126,135,73,64.0],[126,135,74,64.0],[126,135,75,64.0],[126,135,76,64.0],[126,135,77,64.0],[126,135,78,64.0],[126,135,79,64.0],[126,136,64,64.0],[126,136,65,64.0],[126,136,66,64.0],[126,136,67,64.0],[126,136,68,64.0],[126,136,69,64.0],[126,136,70,64.0],[126,136,71,64.0],[126,136,72,64.0],[126,136,73,64.0],[126,136,74,64.0],[126,136,75,64.0],[126,136,76,64.0],[126,136,77,64.0],[126,136,78,64.0],[126,136,79,64.0],[126,137,64,64.0],[126,137,65,64.0],[126,137,66,64.0],[126,137,67,64.0],[126,137,68,64.0],[126,137,69,64.0],[126,137,70,64.0],[126,137,71,64.0],[126,137,72,64.0],[126,137,73,64.0],[126,137,74,64.0],[126,137,75,64.0],[126,137,76,64.0],[126,137,77,64.0],[126,137,78,64.0],[126,137,79,64.0],[126,138,64,64.0],[126,138,65,64.0],[126,138,66,64.0],[126,138,67,64.0],[126,138,68,64.0],[126,138,69,64.0],[126,138,70,64.0],[126,138,71,64.0],[126,138,72,64.0],[126,138,73,64.0],[126,138,74,64.0],[126,138,75,64.0],[126,138,76,64.0],[126,138,77,64.0],[126,138,78,64.0],[126,138,79,64.0],[126,139,64,64.0],[126,139,65,64.0],[126,139,66,64.0],[126,139,67,64.0],[126,139,68,64.0],[126,139,69,64.0],[126,139,70,64.0],[126,139,71,64.0],[126,139,72,64.0],[126,139,73,64.0],[126,139,74,64.0],[126,139,75,64.0],[126,139,76,64.0],[126,139,77,64.0],[126,139,78,64.0],[126,139,79,64.0],[126,140,64,64.0],[126,140,65,64.0],[126,140,66,64.0],[126,140,67,64.0],[126,140,68,64.0],[126,140,69,64.0],[126,140,70,64.0],[126,140,71,64.0],[126,140,72,64.0],[126,140,73,64.0],[126,140,74,64.0],[126,140,75,64.0],[126,140,76,64.0],[126,140,77,64.0],[126,140,78,64.0],[126,140,79,64.0],[126,141,64,64.0],[126,141,65,64.0],[126,141,66,64.0],[126,141,67,64.0],[126,141,68,64.0],[126,141,69,64.0],[126,141,70,64.0],[126,141,71,64.0],[126,141,72,64.0],[126,141,73,64.0],[126,141,74,64.0],[126,141,75,64.0],[126,141,76,64.0],[126,141,77,64.0],[126,141,78,64.0],[126,141,79,64.0],[126,142,64,64.0],[126,142,65,64.0],[126,142,66,64.0],[126,142,67,64.0],[126,142,68,64.0],[126,142,69,64.0],[126,142,70,64.0],[126,142,71,64.0],[126,142,72,64.0],[126,142,73,64.0],[126,142,74,64.0],[126,142,75,64.0],[126,142,76,64.0],[126,142,77,64.0],[126,142,78,64.0],[126,142,79,64.0],[126,143,64,64.0],[126,143,65,64.0],[126,143,66,64.0],[126,143,67,64.0],[126,143,68,64.0],[126,143,69,64.0],[126,143,70,64.0],[126,143,71,64.0],[126,143,72,64.0],[126,143,73,64.0],[126,143,74,64.0],[126,143,75,64.0],[126,143,76,64.0],[126,143,77,64.0],[126,143,78,64.0],[126,143,79,64.0],[126,144,64,64.0],[126,144,65,64.0],[126,144,66,64.0],[126,144,67,64.0],[126,144,68,64.0],[126,144,69,64.0],[126,144,70,64.0],[126,144,71,64.0],[126,144,72,64.0],[126,144,73,64.0],[126,144,74,64.0],[126,144,75,64.0],[126,144,76,64.0],[126,144,77,64.0],[126,144,78,64.0],[126,144,79,64.0],[126,145,64,64.0],[126,145,65,64.0],[126,145,66,64.0],[126,145,67,64.0],[126,145,68,64.0],[126,145,69,64.0],[126,145,70,64.0],[126,145,71,64.0],[126,145,72,64.0],[126,145,73,64.0],[126,145,74,64.0],[126,145,75,64.0],[126,145,76,64.0],[126,145,77,64.0],[126,145,78,64.0],[126,145,79,64.0],[126,146,64,64.0],[126,146,65,64.0],[126,146,66,64.0],[126,146,67,64.0],[126,146,68,64.0],[126,146,69,64.0],[126,146,70,64.0],[126,146,71,64.0],[126,146,72,64.0],[126,146,73,64.0],[126,146,74,64.0],[126,146,75,64.0],[126,146,76,64.0],[126,146,77,64.0],[126,146,78,64.0],[126,146,79,64.0],[126,147,64,64.0],[126,147,65,64.0],[126,147,66,64.0],[126,147,67,64.0],[126,147,68,64.0],[126,147,69,64.0],[126,147,70,64.0],[126,147,71,64.0],[126,147,72,64.0],[126,147,73,64.0],[126,147,74,64.0],[126,147,75,64.0],[126,147,76,64.0],[126,147,77,64.0],[126,147,78,64.0],[126,147,79,64.0],[126,148,64,64.0],[126,148,65,64.0],[126,148,66,64.0],[126,148,67,64.0],[126,148,68,64.0],[126,148,69,64.0],[126,148,70,64.0],[126,148,71,64.0],[126,148,72,64.0],[126,148,73,64.0],[126,148,74,64.0],[126,148,75,64.0],[126,148,76,64.0],[126,148,77,64.0],[126,148,78,64.0],[126,148,79,64.0],[126,149,64,64.0],[126,149,65,64.0],[126,149,66,64.0],[126,149,67,64.0],[126,149,68,64.0],[126,149,69,64.0],[126,149,70,64.0],[126,149,71,64.0],[126,149,72,64.0],[126,149,73,64.0],[126,149,74,64.0],[126,149,75,64.0],[126,149,76,64.0],[126,149,77,64.0],[126,149,78,64.0],[126,149,79,64.0],[126,150,64,64.0],[126,150,65,64.0],[126,150,66,64.0],[126,150,67,64.0],[126,150,68,64.0],[126,150,69,64.0],[126,150,70,64.0],[126,150,71,64.0],[126,150,72,64.0],[126,150,73,64.0],[126,150,74,64.0],[126,150,75,64.0],[126,150,76,64.0],[126,150,77,64.0],[126,150,78,64.0],[126,150,79,64.0],[126,151,64,64.0],[126,151,65,64.0],[126,151,66,64.0],[126,151,67,64.0],[126,151,68,64.0],[126,151,69,64.0],[126,151,70,64.0],[126,151,71,64.0],[126,151,72,64.0],[126,151,73,64.0],[126,151,74,64.0],[126,151,75,64.0],[126,151,76,64.0],[126,151,77,64.0],[126,151,78,64.0],[126,151,79,64.0],[126,152,64,64.0],[126,152,65,64.0],[126,152,66,64.0],[126,152,67,64.0],[126,152,68,64.0],[126,152,69,64.0],[126,152,70,64.0],[126,152,71,64.0],[126,152,72,64.0],[126,152,73,64.0],[126,152,74,64.0],[126,152,75,64.0],[126,152,76,64.0],[126,152,77,64.0],[126,152,78,64.0],[126,152,79,64.0],[126,153,64,64.0],[126,153,65,64.0],[126,153,66,64.0],[126,153,67,64.0],[126,153,68,64.0],[126,153,69,64.0],[126,153,70,64.0],[126,153,71,64.0],[126,153,72,64.0],[126,153,73,64.0],[126,153,74,64.0],[126,153,75,64.0],[126,153,76,64.0],[126,153,77,64.0],[126,153,78,64.0],[126,153,79,64.0],[126,154,64,64.0],[126,154,65,64.0],[126,154,66,64.0],[126,154,67,64.0],[126,154,68,64.0],[126,154,69,64.0],[126,154,70,64.0],[126,154,71,64.0],[126,154,72,64.0],[126,154,73,64.0],[126,154,74,64.0],[126,154,75,64.0],[126,154,76,64.0],[126,154,77,64.0],[126,154,78,64.0],[126,154,79,64.0],[126,155,64,64.0],[126,155,65,64.0],[126,155,66,64.0],[126,155,67,64.0],[126,155,68,64.0],[126,155,69,64.0],[126,155,70,64.0],[126,155,71,64.0],[126,155,72,64.0],[126,155,73,64.0],[126,155,74,64.0],[126,155,75,64.0],[126,155,76,64.0],[126,155,77,64.0],[126,155,78,64.0],[126,155,79,64.0],[126,156,64,64.0],[126,156,65,64.0],[126,156,66,64.0],[126,156,67,64.0],[126,156,68,64.0],[126,156,69,64.0],[126,156,70,64.0],[126,156,71,64.0],[126,156,72,64.0],[126,156,73,64.0],[126,156,74,64.0],[126,156,75,64.0],[126,156,76,64.0],[126,156,77,64.0],[126,156,78,64.0],[126,156,79,64.0],[126,157,64,64.0],[126,157,65,64.0],[126,157,66,64.0],[126,157,67,64.0],[126,157,68,64.0],[126,157,69,64.0],[126,157,70,64.0],[126,157,71,64.0],[126,157,72,64.0],[126,157,73,64.0],[126,157,74,64.0],[126,157,75,64.0],[126,157,76,64.0],[126,157,77,64.0],[126,157,78,64.0],[126,157,79,64.0],[126,158,64,64.0],[126,158,65,64.0],[126,158,66,64.0],[126,158,67,64.0],[126,158,68,64.0],[126,158,69,64.0],[126,158,70,64.0],[126,158,71,64.0],[126,158,72,64.0],[126,158,73,64.0],[126,158,74,64.0],[126,158,75,64.0],[126,158,76,64.0],[126,158,77,64.0],[126,158,78,64.0],[126,158,79,64.0],[126,159,64,64.0],[126,159,65,64.0],[126,159,66,64.0],[126,159,67,64.0],[126,159,68,64.0],[126,159,69,64.0],[126,159,70,64.0],[126,159,71,64.0],[126,159,72,64.0],[126,159,73,64.0],[126,159,74,64.0],[126,159,75,64.0],[126,159,76,64.0],[126,159,77,64.0],[126,159,78,64.0],[126,159,79,64.0],[126,160,64,64.0],[126,160,65,64.0],[126,160,66,64.0],[126,160,67,64.0],[126,160,68,64.0],[126,160,69,64.0],[126,160,70,64.0],[126,160,71,64.0],[126,160,72,64.0],[126,160,73,64.0],[126,160,74,64.0],[126,160,75,64.0],[126,160,76,64.0],[126,160,77,64.0],[126,160,78,64.0],[126,160,79,64.0],[126,161,64,64.0],[126,161,65,64.0],[126,161,66,64.0],[126,161,67,64.0],[126,161,68,64.0],[126,161,69,64.0],[126,161,70,64.0],[126,161,71,64.0],[126,161,72,64.0],[126,161,73,64.0],[126,161,74,64.0],[126,161,75,64.0],[126,161,76,64.0],[126,161,77,64.0],[126,161,78,64.0],[126,161,79,64.0],[126,162,64,64.0],[126,162,65,64.0],[126,162,66,64.0],[126,162,67,64.0],[126,162,68,64.0],[126,162,69,64.0],[126,162,70,64.0],[126,162,71,64.0],[126,162,72,64.0],[126,162,73,64.0],[126,162,74,64.0],[126,162,75,64.0],[126,162,76,64.0],[126,162,77,64.0],[126,162,78,64.0],[126,162,79,64.0],[126,163,64,64.0],[126,163,65,64.0],[126,163,66,64.0],[126,163,67,64.0],[126,163,68,64.0],[126,163,69,64.0],[126,163,70,64.0],[126,163,71,64.0],[126,163,72,64.0],[126,163,73,64.0],[126,163,74,64.0],[126,163,75,64.0],[126,163,76,64.0],[126,163,77,64.0],[126,163,78,64.0],[126,163,79,64.0],[126,164,64,64.0],[126,164,65,64.0],[126,164,66,64.0],[126,164,67,64.0],[126,164,68,64.0],[126,164,69,64.0],[126,164,70,64.0],[126,164,71,64.0],[126,164,72,64.0],[126,164,73,64.0],[126,164,74,64.0],[126,164,75,64.0],[126,164,76,64.0],[126,164,77,64.0],[126,164,78,64.0],[126,164,79,64.0],[126,165,64,64.0],[126,165,65,64.0],[126,165,66,64.0],[126,165,67,64.0],[126,165,68,64.0],[126,165,69,64.0],[126,165,70,64.0],[126,165,71,64.0],[126,165,72,64.0],[126,165,73,64.0],[126,165,74,64.0],[126,165,75,64.0],[126,165,76,64.0],[126,165,77,64.0],[126,165,78,64.0],[126,165,79,0.6424824010921508],[126,166,64,64.0],[126,166,65,64.0],[126,166,66,64.0],[126,166,67,64.0],[126,166,68,64.0],[126,166,69,64.0],[126,166,70,64.0],[126,166,71,64.0],[126,166,72,64.0],[126,166,73,64.0],[126,166,74,64.0],[126,166,75,64.0],[126,166,76,64.0],[126,166,77,64.0],[126,166,78,0.624459374308557],[126,166,79,0.6514980393108345],[126,167,64,64.0],[126,167,65,64.0],[126,167,66,64.0],[126,167,67,64.0],[126,167,68,64.0],[126,167,69,64.0],[126,167,70,64.0],[126,167,71,64.0],[126,167,72,64.0],[126,167,73,64.0],[126,167,74,64.0],[126,167,75,64.0],[126,167,76,64.0],[126,167,77,0.6043301621401461],[126,167,78,0.6352160127622574],[126,167,79,0.6619986468374176],[126,168,64,64.0],[126,168,65,64.0],[126,168,66,64.0],[126,168,67,64.0],[126,168,68,64.0],[126,168,69,64.0],[126,168,70,64.0],[126,168,71,64.0],[126,168,72,64.0],[126,168,73,64.0],[126,168,74,64.0],[126,168,75,64.0],[126,168,76,0.5828475605966297],[126,168,77,0.6169084952307724],[126,168,78,0.647455003910504],[126,168,79,0.6738948062122438],[126,169,64,64.0],[126,169,65,64.0],[126,169,66,64.0],[126,169,67,64.0],[126,169,68,64.0],[126,169,69,64.0],[126,169,70,64.0],[126,169,71,64.0],[126,169,72,64.0],[126,169,73,64.0],[126,169,74,64.0],[126,169,75,0.5608318375266862],[126,169,76,0.5972807168069767],[126,169,77,0.6309288887079915],[126,169,78,0.6610575186203576],[126,169,79,0.6870790749243298],[126,170,64,64.0],[126,170,65,64.0],[126,170,66,64.0],[126,170,67,64.0],[126,170,68,64.0],[126,170,69,64.0],[126,170,70,64.0],[126,170,71,64.0],[126,170,72,64.0],[126,170,73,64.0],[126,170,74,0.5391434245178642],[126,170,75,0.5771005827803026],[126,170,76,0.6130764013484705],[126,170,77,0.6462428657592919],[126,170,78,0.6758870476041076],[126,170,79,0.7014266989527257],[126,171,64,64.0],[126,171,65,64.0],[126,171,66,64.0],[126,171,67,64.0],[126,171,68,64.0],[126,171,69,64.0],[126,171,70,64.0],[126,171,71,64.0],[126,171,72,64.0],[126,171,73,0.5180587893097277],[126,171,74,0.5571732889867135],[126,171,75,0.59461268336225],[126,171,76,0.6300570508331624],[126,171,77,0.6626851927816211],[126,171,78,0.6917905148040293],[126,171,79,0.716796469184015],[126,172,64,64.0],[126,172,65,64.0],[126,172,66,64.0],[126,172,67,64.0],[126,172,68,64.0],[126,172,69,64.0],[126,172,70,64.0],[126,172,71,64.0],[126,172,72,0.4971828832401604],[126,172,73,0.5377246668147614],[126,172,74,0.5762885412669404],[126,172,75,0.6131628828901656],[126,172,76,0.6480298670638003],[126,172,77,0.6800754033200626],[126,172,78,0.7085995304792572],[126,172,79,0.7330316967425039],[126,173,64,64.0],[126,173,65,64.0],[126,173,66,64.0],[126,173,67,64.0],[126,173,68,64.0],[126,173,69,64.0],[126,173,70,64.0],[126,173,71,0.4761571919463032],[126,173,72,0.5183160037042434],[126,173,73,0.5582813252779707],[126,173,74,0.5962584957659837],[126,173,75,0.6325328452834318],[126,173,76,0.6667887827025383],[126,173,77,0.6982194818267515],[126,173,78,0.7261317838264738],[126,173,79,0.7499613070665085],[126,174,64,64.0],[126,174,65,64.0],[126,174,66,64.0],[126,174,67,64.0],[126,174,68,64.0],[126,174,69,64.0],[126,174,70,0.45468395252687227],[126,174,71,0.49854678240172184],[126,174,72,0.540111877190397],[126,174,73,0.5794757579252209],[126,174,74,0.6168422001790643],[126,174,75,0.6524935899327262],[126,174,76,0.6861166064624324],[126,174,77,0.7169117072398277],[126,174,78,0.7441925751342164],[126,174,79,0.7674010527305514],[126,175,64,64.0],[126,175,65,64.0],[126,175,66,64.0],[126,175,67,64.0],[126,175,68,64.0],[126,175,69,0.4325098555709111],[126,175,70,0.4780797992424438],[126,175,71,0.521341809689023],[126,175,72,0.5622990848501005],[126,175,73,0.6010481773256873],[126,175,74,0.6377913642104247],[126,175,75,0.672808125442688],[126,175,76,0.7057873478214164],[126,175,77,0.7359366563821224],[126,175,78,0.7625764874704991],[126,175,79,0.7851548450131619],[126,176,64,64.0],[126,176,65,64.0],[126,176,66,64.0],[126,176,67,64.0],[126,176,68,0.4094128331378277],[126,176,69,0.4566263504729582],[126,176,70,0.501599569670038],[126,176,71,0.5442571549923123],[126,176,72,0.5846035951671512],[126,176,73,0.6227354584037919],[126,176,74,0.6588535052141922],[126,176,75,0.6932342819482703],[126,176,76,0.7255687212593154],[126,176,77,0.7550713671801303],[126,176,78,0.7810691979043004],[126,176,79,0.8030162042108288],[126,177,64,64.0],[126,177,65,64.0],[126,177,66,64.0],[126,177,67,0.42062530733549885],[126,177,68,0.4340449412363881],[126,177,69,0.4806732611204539],[126,177,70,0.5250515476461441],[126,177,71,0.5671066712951236],[126,177,72,0.6068443089196354],[126,177,73,0.644360956919732],[126,177,74,0.6798557910432153],[126,177,75,0.7136023684531932],[126,177,76,0.7452934501437058],[126,177,77,0.7741501652550745],[126,177,78,0.7995057482447848],[126,177,79,0.8208199419106164],[126,178,64,64.0],[126,178,65,64.0],[126,178,66,0.465554012845742],[126,178,67,0.4483331861366621],[126,178,68,0.45891438306069665],[126,178,69,0.504945550424478],[126,178,70,0.5487151910924255],[126,178,71,0.5901522801782249],[126,178,72,0.6292636267559844],[126,178,73,0.6661456501233968],[126,178,74,0.7009959917583544],[126,178,75,0.7340853174768638],[126,178,76,0.7651081369036273],[126,178,77,0.7932919478173523],[126,178,78,0.817976089015795],[126,178,79,0.8386259702927763],[126,179,64,64.0],[126,179,65,0.512118932061147],[126,179,66,0.49267000494368174],[126,179,67,0.4728319907840379],[126,179,68,0.4843650226270179],[126,179,69,0.5297718469353556],[126,179,70,0.5729017737839116],[126,179,71,0.6136858177470785],[126,179,72,0.6521319354519495],[126,179,73,0.6883365706056145],[126,179,74,0.7224960239836903],[126,179,75,0.7548783451452348],[126,179,76,0.785179875782148],[126,179,77,0.8126344092168937],[126,179,78,0.836587394286572],[126,179,79,0.8565099942441128],[126,180,64,0.5600026461415148],[126,180,65,0.5386662179791726],[126,180,66,0.5168103763148395],[126,180,67,0.4944587648562767],[126,180,68,0.5106005096336461],[126,180,69,0.5553455220377147],[126,180,70,0.5977927835319379],[126,180,71,0.6378753045224818],[126,180,72,0.6756022544248721],[126,180,73,0.7110702822302182],[126,180,74,0.744474651455797],[126,180,75,0.7760812093517432],[126,180,76,0.8055883362240851],[126,180,77,0.832236149510595],[126,180,78,0.8553763257861078],[126,180,79,0.8744859906484194],[126,181,64,0.5851345454916373],[126,181,65,0.5616207038300319],[126,181,66,0.5374720870471292],[126,181,67,0.5127321418746843],[126,181,68,0.5377018732714283],[126,181,69,0.5817417126218994],[126,181,70,0.6234563238123992],[126,181,71,0.6627806781777411],[126,181,72,0.6997252542453566],[126,181,73,0.7343871419792898],[126,181,74,0.7669609509560621],[126,181,75,0.7977108439795523],[126,181,76,0.8263375338421649],[126,181,77,0.8520875557051253],[126,181,78,0.8743190033610068],[126,181,79,0.8925152526530313],[126,182,64,0.606003274119624],[126,182,65,0.5804292549053355],[126,182,66,0.5541194112617236],[126,182,67,0.5271352420803217],[126,182,68,0.5656444053306366],[126,182,69,0.6089336519560083],[126,182,70,0.6498628448493419],[126,182,71,0.6883688791991305],[126,182,72,0.7244636535831028],[126,182,73,0.7582449675849311],[126,182,74,0.7899072129927336],[126,182,75,0.8197134581896915],[126,182,76,0.8473670978400241],[126,182,77,0.8721212116387175],[126,182,78,0.8933405367624017],[126,182,79,0.91051502818148],[126,183,64,0.6222298760968327],[126,183,65,0.5947261207076044],[126,183,66,0.5664008789033249],[126,183,67,0.549541675886413],[126,183,68,0.5943137656196162],[126,183,69,0.636808244306394],[126,183,70,0.6769001424529585],[126,183,71,0.7145282307241103],[126,183,72,0.7497059389837466],[126,183,73,0.7825320586542243],[126,183,74,0.8132012283951395],[126,183,75,0.8419760555161788],[126,183,76,0.8685629933102197],[126,183,77,0.8922217986701992],[126,183,78,0.9123240847271593],[126,183,79,0.9283667224748049],[126,184,64,0.633629640876818],[126,184,65,0.6043369841485068],[126,184,66,0.5741531261951549],[126,184,67,0.5795320591594844],[126,184,68,0.6235213096947996],[126,184,69,0.6651808833062264],[126,184,70,0.7043876246115972],[126,184,71,0.7410821125569261],[126,184,72,0.7752794074763417],[126,184,73,0.8070795712870293],[126,184,74,0.8366779608197297],[126,184,75,0.8643373727677882],[126,184,76,0.8897676984069212],[126,184,77,0.9122354871749578],[126,184,78,0.9311194413530821],[126,184,79,0.9459236646612406],[126,185,64,0.6402168708534167],[126,185,65,0.6092835785540476],[126,185,66,0.5774053342960874],[126,185,67,0.6098388075699449],[126,185,68,0.6530186389028338],[126,185,69,0.6938095140728533],[126,185,70,0.7320898458385056],[126,185,71,0.7678019293622974],[126,185,72,0.8009625320121749],[126,185,73,0.8316732461872883],[126,185,74,0.8601306051686007],[126,185,75,0.8865982387371079],[126,185,76,0.9107898363939139],[126,185,77,0.9319788188484401],[126,185,78,0.9495511497686868],[126,185,79,0.9630184383548388],[126,186,64,0.6422101959412478],[126,186,65,0.6097888724759901],[126,186,66,0.5955273008269002],[126,186,67,0.6401599013326712],[126,186,68,0.6825113727344849],[126,186,69,0.722407939073625],[126,186,70,0.7597293092729807],[126,186,71,0.7944193730368693],[126,186,72,0.8264966497345942],[126,186,73,0.8560644902675233],[126,186,74,0.8833210319201977],[126,186,75,0.9085313527165828],[126,186,76,0.9314132625676118],[126,186,77,0.9512470798169015],[126,186,78,0.9674261430972788],[126,186,79,0.9794697762827601],[126,187,64,0.6400384351791146],[126,187,65,0.6062828223098544],[126,187,66,0.6262927384306581],[126,187,67,0.6701591564229379],[126,187,68,0.7116721434898599],[126,187,69,0.7506583677397385],[126,187,70,0.7869985365354886],[126,187,71,0.820637979258007],[126,187,72,0.8515969730794384],[126,187,73,0.8799808117461374],[126,187,74,0.9059896173718054],[126,187,75,0.9298904828211753],[126,187,76,0.9514056060547311],[126,187,77,0.9698221645550654],[126,187,78,0.9845409127150062],[126,187,79,0.9950890189409171],[126,188,64,0.6343235387884453],[126,188,65,0.6110573607504146],[126,188,66,0.6563745900911151],[126,188,67,0.6994788322928112],[126,188,68,0.7401528132557992],[126,188,69,0.7782232098289273],[126,188,70,0.8135714053375693],[126,188,71,0.8461439782107222],[126,188,72,0.8759629237068458],[126,188,73,0.9031356087382605],[126,188,74,0.927864459794562],[126,188,75,0.9504190841183511],[126,188,76,0.9705262664853029],[126,188,77,0.9874799306113455],[126,188,78,1.000688203803511],[126,188,79,1.0096861372785844],[126,189,64,0.6251751021843066],[126,189,65,0.640749501026517],[126,189,66,0.6853964599222846],[126,189,67,0.7277514431457467],[126,189,68,0.7675959131950099],[126,189,69,0.8047561125365901],[126,189,70,0.8391137548461163],[126,189,71,0.8706164394923364],[126,189,72,0.8992877892640452],[126,189,73,0.9252373113397651],[126,189,74,0.9486699815006194],[126,189,75,0.9698583365650192],[126,189,76,0.9885338655406676],[126,189,77,1.0039970441402883],[126,189,78,1.015663238196852],[126,189,79,1.023075319411635],[126,190,64,0.6228653819266107],[126,190,65,0.6689831387692318],[126,190,66,0.7129832821085307],[126,190,67,0.7546107727689624],[126,190,68,0.7936453051465338],[126,190,69,0.8299122413549453],[126,190,70,0.863293258801642],[126,190,71,0.8937367111945013],[126,190,72,0.9212677029787681],[126,190,73,0.9459978772040987],[126,190,74,0.9681349168221167],[126,190,75,0.9879546027511198],[126,190,76,1.0051931533761633],[126,190,77,1.0191573162419592],[126,190,78,1.02926946452244],[126,190,79,1.0350801213641851],[126,191,64,0.6498084377816291],[126,191,65,0.6953878880716596],[126,191,66,0.738771848759869],[126,191,67,0.779702092924441],[126,191,68,0.8179560655383797],[126,191,69,0.8533578046810341],[126,191,70,0.8857885663913214],[126,191,71,0.9151971531633444],[126,191,72,0.9416099460840293],[126,191,73,0.9651406406126566],[126,191,74,0.9859996860026616],[126,191,75,1.0044663054505145],[126,191,76,1.0202813699191233],[126,191,77,1.032757530108865],[126,191,78,1.0413238356365437],[126,191,79,1.0455381818391567],[126,192,64,0.6745388687497383],[126,192,65,0.7196156668139153],[126,192,66,0.7624205253287534],[126,192,67,0.802691585298124],[126,192,68,0.8402035916118902],[126,192,69,0.8747788221731501],[126,192,70,0.906297710876405],[126,192,71,0.9347091644373458],[126,192,72,0.960040573073884],[126,192,73,0.9824075150383119],[126,192,74,1.0020231550009535],[126,192,75,1.0191702249788317],[126,192,76,1.033594061041865],[126,192,77,1.0446127589800998],[126,192,78,1.0516616133540675],[126,192,79,1.0543055010174827],[126,193,64,0.6967359526009298],[126,193,65,0.7413498577441726],[126,193,66,0.7836181535879375],[126,193,67,0.8232749670068975],[126,193,68,0.8600919299574599],[126,193,69,0.8938891368553142],[126,193,70,0.9245457859736326],[126,193,71,0.9520105048625874],[126,193,72,0.9763113597898246],[126,193,73,0.9975655492017891],[126,193,74,1.015988781206241],[126,193,75,1.0318672163579767],[126,193,76,1.0449503496093813],[126,193,77,1.0545611749024526],[126,193,78,1.0601407004723624],[126,193,79,1.061260283385733],[126,194,64,0.7161200237064381],[126,194,65,0.7603136439129992],[126,194,66,0.8020921421702564],[126,194,67,0.8411853196642092],[126,194,68,0.877361327362413],[126,194,69,0.9104376709705935],[126,194,70,0.9402918899914235],[126,194,71,0.9668719108861259],[126,194,72,0.9902060743385402],[126,194,73,1.0104128366215621],[126,194,74,1.027710145066276],[126,194,75,1.042387346287939],[126,194,76,1.0541976614023414],[126,194,77,1.0624683482990402],[126,194,78,1.0666455000895967],[126,194,79,1.0663063445926497],[126,195,64,0.7324602010427841],[126,195,65,0.7762775184604687],[126,195,66,0.8176157446698412],[126,195,67,0.8562001220038187],[126,195,68,0.8917950039705694],[126,195,69,0.9242149255827974],[126,195,70,0.9533353377203864],[126,195,71,0.9791030055270465],[126,195,72,1.001546070840606],[126,195,73,1.0207837786568752],[126,195,74,1.0370358676273719],[126,195,75,1.0505944499255084],[126,195,76,1.0612159059150355],[126,195,77,1.0682310383451252],[126,195,78,1.0710903022173603],[126,195,79,1.0693760823342873],[126,196,64,0.745581225646123],[126,196,65,0.7890659121284884],[126,196,66,0.8300144667767329],[126,196,67,0.868147425898437],[126,196,68,0.903225087220661],[126,196,69,0.9350586612833944],[126,196,70,0.9635210765699104],[126,196,71,0.9885574383746569],[126,196,72,1.0101951414083314],[126,196,73,1.0285536361400751],[126,196,74,1.0438538488770635],[126,196,75,1.0563900421925445],[126,196,76,1.0659210466596338],[126,196,77,1.0717804088827634],[126,196,78,1.0734221328087952],[126,196,79,1.0704329471470753],[126,197,64,0.7552824977589027],[126,197,65,0.7984727442199784],[126,197,66,0.8390785250595898],[126,197,67,0.8768156263787875],[126,197,68,0.9114400965519789],[126,197,69,0.9427594905223687],[126,197,70,0.9706437571724211],[126,197,71,0.9950357697699456],[126,197,72,1.0159614994894755],[126,197,73,1.0335398320088678],[126,197,74,1.0479920271814034],[126,197,75,1.0596135802796907],[126,197,76,1.0681649756290033],[126,197,77,1.0729818066503047],[126,197,78,1.0735208835452563],[126,197,79,1.069372497884499],[126,198,64,0.7611839205907612],[126,198,65,0.8041022563223381],[126,198,66,0.8443993147510299],[126,198,67,0.8817862196927909],[126,198,68,0.9160146452863249],[126,198,69,0.9468881576645398],[126,198,70,0.9742731884118755],[126,198,71,0.9981096398081092],[126,198,72,1.0184211218583057],[126,198,73,1.0353248211088493],[126,198,74,1.0490410012498241],[126,198,75,1.0598649202373773],[126,198,76,1.0675580103314644],[126,198,77,1.0714578317109102],[126,198,78,1.0710237667812361],[126,198,79,1.065849277095718],[126,199,64,0.762967004935546],[126,199,65,0.8056207601564105],[126,199,66,0.8456305633617853],[126,199,67,0.8827030903966652],[126,199,68,0.9165855835366244],[126,199,69,0.9470772878294755],[126,199,70,0.9740405070651011],[126,199,71,0.9974112793740615],[126,199,72,1.0172096724546338],[126,199,73,1.033549698428244],[126,199,74,1.046648848323531],[126,199,75,1.0568001539770786],[126,199,76,1.0637653969816014],[126,199,77,1.0668846416119717],[126,199,78,1.0656201189204255],[126,199,79,1.059568459431699],[126,200,64,0.7604233209063499],[126,200,65,0.802807046470263],[126,200,66,0.8425404470250264],[126,200,67,0.8793260786794208],[126,200,68,0.9129067590943009],[126,200,69,0.9430770894994431],[126,200,70,0.969694583118115],[126,200,71,0.99269039999995],[126,200,72,1.0120796882617977],[126,200,73,1.027971531736504],[126,200,74,1.0405785040298619],[126,200,75,1.0501889920236915],[126,200,76,1.0565646177590424],[126,200,77,1.0590490007289572],[126,200,78,1.0571079211622916],[126,200,79,1.050341502179377],[126,201,64,0.7534490706206449],[126,201,65,0.7955467264262042],[126,201,66,0.8350057124438424],[126,201,67,0.871524894793137],[126,201,68,0.9048427359722109],[126,201,69,0.9347488881018303],[126,201,70,0.9610953781439973],[126,201,71,0.9838073850956219],[126,201,72,1.0028936091569447],[126,201,73,1.0184562328746696],[126,201,74,1.0307004742600372],[126,201,75,1.039907311103243],[126,201,76,1.0458377721588834],[126,201,77,1.047840501940912],[126,201,78,1.0453858755921468],[126,201,79,1.038078096252774],[126,202,64,0.7420391443721333],[126,202,65,0.7838260721780408],[126,202,66,0.8230053157329832],[126,202,67,0.85927257010897],[126,202,68,0.8923620713284565],[126,202,69,0.9220582417199309],[126,202,70,0.9482069114932874],[126,202,71,0.9707261165355563],[126,202,72,0.9896164724266723],[126,202,73,1.0049711246752309],[126,202,74,1.0169852751744763],[126,202,75,1.025929463751529],[126,202,76,1.0315637553538157],[126,202,77,1.0332436209838873],[126,202,78,1.0304453498801758],[126,202,79,1.0227780215954543],[126,203,64,0.7262806602895014],[126,203,65,0.7677253566387608],[126,203,66,0.8066135781550459],[126,203,67,0.8426384447990787],[126,203,68,0.875530150771243],[126,203,69,0.9050676389322564],[126,203,70,0.9310898342970468],[126,203,71,0.9535064366024164],[126,203,72,0.9723082719481608],[126,203,73,0.9875772035116066],[126,203,74,0.9994956013357961],[126,203,75,1.0083203499437807],[126,203,76,1.0138102335680383],[126,203,77,1.015329603482372],[126,203,78,1.0123621905894777],[126,203,79,1.0045229069943575],[126,204,64,0.7063459874819004],[126,204,65,0.7474116924384592],[126,204,66,0.7859928587509352],[126,204,67,0.8217806921442902],[126,204,68,0.8545015820446241],[126,204,69,0.8839287787802232],[126,204,70,0.9098936112824513],[126,204,71,0.9322962452870736],[126,204,72,0.9511159820356734],[126,204,73,0.9664210974771283],[126,204,74,0.9783782219693766],[126,204,75,0.9872272507452601],[126,204,76,0.99272541646287],[126,204,77,0.9942481846586486],[126,204,78,0.9912884050930575],[126,204,79,0.9834678943049658],[126,205,64,0.6824852526712618],[126,205,65,0.7231313700726248],[126,205,66,0.7613857438647004],[126,205,67,0.7969383794676141],[126,205,68,0.8295121470952271],[126,205,69,0.8588744328643044],[126,205,70,0.8848483104009937],[126,205,71,0.9073232329451946],[126,205,72,0.9262652459524905],[126,205,73,0.9417267201935982],[126,205,74,0.9538556053515701],[126,205,75,0.9628714239828554],[126,205,76,0.9685296265341249],[126,205,77,0.9702191417201355],[126,205,78,0.9674437120998227],[126,205,79,0.9598332070878481],[126,206,64,0.6550183303114135],[126,206,65,0.695201695240748],[126,206,66,0.7331067535627204],[126,206,67,0.7684230656935743],[126,206,68,0.8008703125199362],[126,206,69,0.8302098895686254],[126,206,70,0.8562560002692778],[126,206,71,0.8788862483103641],[126,206,72,0.8980517290882724],[126,206,73,0.9137866202494023],[126,206,74,0.9262172713255257],[126,206,75,0.9355394619376483],[126,206,76,0.9415066655212239],[126,206,77,0.9435236789246889],[126,206,78,0.941106960789557],[126,206,79,0.933895623656555],[126,207,64,0.6243263161938865],[126,207,65,0.6640023253751399],[126,207,66,0.7015335649471232],[126,207,67,0.736609935533248],[126,207,68,0.7689482983944247],[126,207,69,0.798303980413893],[126,207,70,0.8244817554223022],[126,207,71,0.8473463018636522],[126,207,72,0.8668321368017452],[126,207,73,0.8829530262670936],[126,207,74,0.8958108719445531],[126,207,75,0.9055744110583764],[126,207,76,0.9119949778279739],[126,207,77,0.9144956453237938],[126,207,78,0.9126074185568118],[126,207,79,0.9059798545368114],[126,208,64,0.5908424845407335],[126,208,65,0.6299661053602841],[126,208,66,0.6670977523637605],[126,208,67,0.701928470295321],[126,208,68,0.7341727054828373],[126,208,69,0.7635796885389563],[126,208,70,0.7899442693795139],[126,208,71,0.8131172045598911],[126,208,72,0.8330148969289798],[126,208,73,0.849628587600687],[126,208,74,0.8630330002432612],[126,208,75,0.8733666536960245],[126,208,76,0.88037861095523],[126,208,77,0.8835125851838592],[126,208,78,0.8823159273639111],[126,208,79,0.8764498243371911],[126,209,64,0.5550427285839712],[126,209,65,0.5935694024423348],[126,209,66,0.630275044504349],[126,209,67,0.6648526553227924],[126,209,68,0.6970147008282573],[126,209,69,0.7265043393106461],[126,209,70,0.7531060755232961],[126,209,71,0.7766558419103375],[126,209,72,0.7970505069569394],[126,209,73,0.8142568106623724],[126,209,74,0.8283197271361784],[126,209,75,0.8393445518592577],[126,209,76,0.8470779729451733],[126,209,77,0.8509866210853556],[126,209,78,0.8506359287028243],[126,209,79,0.8456998580310393],[126,210,64,0.5174354846317472],[126,210,65,0.5553219403288618],[126,210,66,0.5915750984028896],[126,210,67,0.6258907240554182],[126,210,68,0.6579797617240635],[126,210,69,0.6875793730619812],[126,210,70,0.7144633757899748],[126,210,71,0.7384520834218088],[126,210,72,0.7594215458623917],[126,210,73,0.7773121908787229],[126,210,74,0.7921368664439393],[126,210,75,0.8039648529907812],[126,210,76,0.8125403868372836],[126,210,77,0.8173551696998687],[126,210,78,0.8179943571659845],[126,210,79,0.8141457716497158],[126,211,64,0.4785511396216332],[126,211,65,0.5157561324792416],[126,211,66,0.5515307903267459],[126,211,67,0.5855744387182853],[126,211,68,0.6175969780665405],[126,211,69,0.6473296999591163],[126,211,70,0.674535477173703],[126,211,71,0.6990183273926339],[126,211,72,0.720632350616502],[126,211,73,0.7392900402767131],[126,211,74,0.7549699680473365],[126,211,75,0.7677028577649078],[126,211,76,0.7772304421362727],[126,211,77,0.7830714902453335],[126,211,78,0.7848324026262858],[126,211,79,0.7822158673873877],[126,212,64,0.43893092216039403],[126,212,65,0.4754159145850439],[126,212,66,0.5106870235617471],[126,212,67,0.544447907635881],[126,212,68,0.5764079130881302],[126,212,69,0.6062926369964144],[126,212,70,0.6338538360426309],[126,212,71,0.658878681064843],[126,212,72,0.681198357354565],[126,212,73,0.7006960106990163],[126,212,74,0.7173140391687242],[126,212,75,0.7310423499058459],[126,212,76,0.7416201432915149],[126,212,77,0.748595065618989],[126,212,78,0.7515961410258422],[126,212,79,0.7503418331169617],[126,213,64,0.3991152770505481],[126,213,65,0.4348450762407382],[126,213,66,0.4695890530916361],[126,213,67,0.5030559391719829],[126,213,68,0.5349550224716472],[126,213,69,0.5650064271199753],[126,213,70,0.5929507102676804],[126,213,71,0.6185577761329155],[126,213,72,0.6416351072111757],[126,213,73,0.6620353126488845],[126,213,74,0.6796629937810714],[126,213,75,0.6944652880269983],[126,213,76,0.7061788551882563],[126,213,77,0.7143818162083448],[126,213,78,0.7187270337737741],[126,213,79,0.7189495463174262],[126,214,64,0.3596317233040752],[126,214,65,0.3945750918050596],[126,214,66,0.4287703271721922],[126,214,67,0.4619319322956808],[126,214,68,0.4937696318457509],[126,214,69,0.5239983404798932],[126,214,70,0.5523474191641847],[126,214,71,0.5785692196093298],[126,214,72,0.6024469168210732],[126,214,73,0.6238016297648125],[126,214,74,0.6424988301448528],[126,214,75,0.6584412594914336],[126,214,76,0.6713630456507456],[126,214,77,0.6808741463802714],[126,214,78,0.6866522957531269],[126,214,79,0.6884497824126825],[126,215,64,0.32098219564256836],[126,215,65,0.3551124504523453],[126,215,66,0.38873984579935383],[126,215,67,0.42158530377288034],[126,215,68,0.4533594726610476],[126,215,69,0.4837723578106402],[126,215,70,0.5125422112458149],[126,215,71,0.5394036800463559],[126,215,72,0.5641152134851225],[126,215,73,0.5864657289244978],[126,215,74,0.6062805364723104],[126,215,75,0.623416696293105],[126,215,76,0.6376058249568941],[126,215,77,0.648490823647859],[126,215,78,0.6557751319365899],[126,215,79,0.6592288275215676],[126,216,64,0.2836298694841789],[126,216,65,0.31692548541419063],[126,216,66,0.3499690360716873],[126,216,67,0.3824884519836217],[126,216,68,0.41419577644715044],[126,216,69,0.44479643593989454],[126,216,70,0.4739977397911035],[126,216,71,0.5015166091143985],[126,216,72,0.5270865350017342],[126,216,73,0.5504637659783698],[126,216,74,0.571432724719355],[126,216,75,0.5898038529590657],[126,216,76,0.605306282364699],[126,216,77,0.6176166905152654],[126,216,78,0.6264648426112306],[126,216,79,0.6316389956192717],[126,217,64,0.28008528276188205],[126,217,65,0.2809294489331476],[126,217,66,0.31287814444752726],[126,217,67,0.3450632573655291],[126,217,68,0.3766999274509909],[126,217,69,0.40748935542608955],[126,217,70,0.4371281462228188],[126,217,71,0.4653155985371208],[126,217,72,0.49176019416392763],[126,217,73,0.5161852871128818],[126,217,74,0.538333992505274],[126,217,75,0.557969546472826],[126,217,76,0.5748186196505541],[126,217,77,0.5885922090006517],[126,217,78,0.5990467972123158],[126,217,79,0.6059890501101903],[126,218,64,0.2814141689890517],[126,218,65,0.28124012235354084],[126,218,66,0.27995943215363334],[126,218,67,0.30966711948275755],[126,218,68,0.3412296736557813],[126,218,69,0.3722071503241158],[126,218,70,0.40228575129965843],[126,218,71,0.4311473723828526],[126,218,72,0.45847560792158165],[126,218,73,0.4839609258431409],[126,218,74,0.5073050131598626],[126,218,75,0.5282236582185127],[126,218,76,0.5464410816591485],[126,218,77,0.5617028378369501],[126,218,78,0.5737922767660019],[126,218,79,0.5825345298120493],[126,219,64,0.2771767189144718],[126,219,65,0.27620101088453985],[126,219,66,0.27411373121866883],[126,219,67,0.2765785307207372],[126,219,68,0.30806489618091243],[126,219,69,0.33922912007944117],[126,219,70,0.36974735412050935],[126,219,71,0.3992844147125136],[126,219,72,0.42749929120908253],[126,219,73,0.4540497956350739],[126,219,74,0.47859635389815525],[126,219,75,0.5008073979459825],[126,219,76,0.520404683865084],[126,219,77,0.5371682423505743],[126,219,78,0.550908184940993],[126,219,79,0.5614679793513692],[126,220,64,0.2675382649446326],[126,220,65,0.2659817034853109],[126,220,66,0.2633189525510876],[126,220,67,0.25972632080173],[126,220,68,0.2773929370631266],[126,220,69,0.3087434235509782],[126,220,70,0.3397001389415881],[126,220,71,0.369911232584347],[126,220,72,0.3990115154386482],[126,220,73,0.426626578157382],[126,220,74,0.4523760221229922],[126,220,75,0.47588132975710873],[126,220,76,0.49686173694641234],[126,220,77,0.5151313370182484],[126,220,78,0.530526627709315],[126,220,79,0.5429090839703965],[126,221,64,0.25274655311343935],[126,221,65,0.2508292020724213],[126,221,66,0.2478206934108655],[126,221,67,0.2439005041160971],[126,221,68,0.24929348541831456],[126,221,69,0.28083225516207516],[126,221,70,0.31222718980586933],[126,221,71,0.34311025441490783],[126,221,72,0.37309263165880746],[126,221,73,0.4017683071628079],[126,221,74,0.42871673985498204],[126,221,75,0.4535131601128397],[126,221,76,0.4758741683697288],[126,221,77,0.4956471607016396],[126,221,78,0.5126943616159322],[126,221,79,0.5268947087452801],[126,222,64,0.23313217263904995],[126,222,65,0.23106779967043295],[126,222,66,0.22793600701109748],[126,222,67,0.2239178120464042],[126,222,68,0.22372302198428362],[126,222,69,0.25545660317996105],[126,222,70,0.28729261298511677],[126,222,71,0.3188473636966006],[126,222,72,0.3497090583783128],[126,222,73,0.37944084799896804],[126,222,74,0.407582946290095],[126,222,75,0.43366528786124553],[126,222,76,0.4574016409870205],[126,222,77,0.47867158455996583],[126,222,78,0.4973621106573644],[126,222,79,0.5133688422156187],[126,223,64,0.2091084409849357],[126,223,65,0.2070983979750242],[126,223,66,0.20405212906923736],[126,223,67,0.20015066561915412],[126,223,68,0.20049882204475275],[126,223,69,0.23244059012389287],[126,223,70,0.2647262672347509],[126,223,71,0.2969570680719867],[126,223,72,0.3286989340556893],[126,223,73,0.3594850727489395],[126,223,74,0.3888175284850578],[126,223,75,0.41618211628670093],[126,223,76,0.44128946864439555],[126,223,77,0.46404985264068666],[126,223,78,0.4843737517693828],[126,223,79,0.5021724444254423],[126,224,64,0.1811707444260002],[126,224,65,0.1793972643294066],[126,224,66,0.17662462703393977],[126,224,67,0.1730325042572315],[126,224,68,0.17928251673400966],[126,224,69,0.21145539530145976],[126,224,70,0.24420810186103528],[126,224,71,0.27712730376437283],[126,224,72,0.309757434253962],[126,224,73,0.34160273100117844],[126,224,74,0.3721282801701613],[126,224,75,0.40077712717985925],[126,224,76,0.427256328802389],[126,224,77,0.45150495514801425],[126,224,78,0.473455368923567],[126,224,79,0.49303319937545054],[126,225,64,0.14989533411859302],[126,225,65,0.14851422811294118],[126,225,66,0.14617497198648338],[126,225,67,0.14305471293018643],[126,225,68,0.1596675521156362],[126,225,69,0.19210323665083454],[126,225,70,0.22534876722463867],[126,225,71,0.2589768163884303],[126,225,72,0.2925110986649028],[126,225,73,0.32542793099309963],[126,225,74,0.35715677395417955],[126,225,75,0.3870994067250027],[126,225,76,0.41495873039321407],[126,225,77,0.4407003512002149],[126,225,78,0.46427656361724196],[126,225,79,0.4856257609078116],[126,226,64,0.11593757767592627],[126,226,65,0.11507031654340386],[126,226,66,0.11328753321815672],[126,226,67,0.11076295471899275],[126,226,68,0.14163057216598696],[126,226,69,0.17435244473635136],[126,226,70,0.20810841169072136],[126,226,71,0.24245787399954755],[126,226,72,0.27690481437541625],[126,226,73,0.31089890463445274],[126,226,74,0.3438355704900276],[126,226,75,0.37507710295572916],[126,226,76,0.4043216577124615],[126,226,77,0.4315588608996535],[126,226,78,0.45675876503770796],[126,226,79,0.4798707420867223],[126,227,64,0.07993798819981025],[126,227,65,0.079662559886784],[126,227,66,0.07851362301211431],[126,227,67,0.09388160579303755],[126,227,68,0.12525685379628582],[126,227,69,0.15827430264864234],[126,227,70,0.19254435084894883],[126,227,71,0.22761406381777022],[126,227,72,0.26296891806401235],[126,227,73,0.2980334813497124],[126,227,74,0.33217102885387106],[126,227,75,0.3647064488142516],[126,227,76,0.3953326112200939],[126,227,77,0.42406047629036314],[126,227,78,0.4508755272859058],[126,227,79,0.4757361955057731],[126,228,64,0.042120932863343855],[126,228,65,0.04246434411178836],[126,228,66,0.049881132676946854],[126,228,67,0.07914466056181348],[126,228,68,0.11059277671080603],[126,228,69,0.14390139970287164],[126,228,70,0.1786751955979638],[126,228,71,0.21445002361289953],[126,228,72,0.25069429873228527],[126,228,73,0.2868092712540518],[126,228,74,0.32212822327049895],[126,228,75,0.35594101360814934],[126,228,76,0.38793475130612265],[126,228,77,0.41813891995048996],[126,228,78,0.4465519964219425],[126,228,79,0.47313946011086605],[126,229,64,0.002602017344172522],[126,229,65,0.010548756125143069],[126,229,66,0.03702331377358209],[126,229,67,0.06613815850002484],[126,229,68,0.09764855312456631],[126,229,69,0.1312304868681627],[126,229,70,0.16648387943129095],[126,229,71,0.20293468570503825],[126,229,72,0.24003590111422052],[126,229,73,0.2771674675920458],[126,229,74,0.3136350801872578],[126,229,75,0.348696205535465],[126,229,76,0.38203179480458455],[126,229,77,0.41368696383276654],[126,229,78,0.44367067903605184],[126,229,79,0.47195340521979623],[126,230,64,-0.023339072062633658],[126,230,65,-2.144648006636718E-4],[126,230,66,0.025899856130232574],[126,230,67,0.05485168900817464],[126,230,68,0.08640135588231085],[126,230,69,0.12022571257674051],[126,230,70,0.15592104611062196],[126,230,71,0.19300485953531216],[126,230,72,0.23091654418813135],[126,230,73,0.269016939362251],[126,230,74,0.30658677939366985],[126,230,75,0.3428540111314292],[126,230,76,0.37749312042762223],[126,230,77,0.41056192814946674],[126,230,78,0.44207736114502233],[126,230,79,0.4720127943639275],[126,231,64,-0.0318283587268851],[126,231,65,-0.009257416684022468],[126,231,66,0.016481260376792053],[126,231,67,0.045244681369879886],[126,231,68,0.07679878774413973],[126,231,69,0.11082218383352749],[126,231,70,0.14690874475961174],[126,231,71,0.18456910188705639],[126,231,72,0.2232310058316238],[126,231,73,0.26223856702018433],[126,231,74,0.300850373803712],[126,231,75,0.3382679278325503],[126,231,76,0.3741590407323821],[126,231,77,0.40859131915585095],[126,231,78,0.4415871373222344],[126,231,79,0.47312072971819863],[126,232,64,-0.038630295974768795],[126,232,65,-0.01662697899635221],[126,232,66,0.008711012647269603],[126,232,67,0.03725017953313671],[126,232,68,0.06876269183799559],[126,232,69,0.10292985262639509],[126,232,70,0.13934443237838134],[126,232,71,0.1775118747576529],[126,232,72,0.21685037361976425],[126,232,73,0.2566898212598543],[126,232,74,0.2962696279008976],[126,232,75,0.33476808965819704],[126,232,76,0.37184624062084404],[126,232,77,0.40757860583219396],[126,232,78,0.4419905500613843],[126,232,79,0.47505517711951495],[126,233,64,-2.3621207850121895E-4],[126,233,65,-0.0027235330211218822],[126,233,66,0.0025097299183941546],[126,233,67,0.03077897181743225],[126,233,68,0.06219330327854633],[126,233,69,0.09643772763662534],[126,233,70,0.1331052837783042],[126,233,71,0.17169799088062454],[126,233,72,0.21162666176608141],[126,233,73,0.25220958487351397],[126,233,74,0.292670074845862],[126,233,75,0.33216658600941246],[126,233,76,0.37035338237235294],[126,233,77,0.40730913546421016],[126,233,78,0.44305983937374954],[126,233,79,0.4775755716734241],[126,234,64,0.0447952891080179],[126,234,65,0.042315795623436694],[126,234,66,0.04039299247930453],[126,234,67,0.0388782497994509],[126,234,68,0.05697374195271859],[126,234,69,0.09121841124982982],[126,234,70,0.1280528089373077],[126,234,71,0.1669773468981984],[126,234,72,0.2073976942066034],[126,234,73,0.24862321768981316],[126,234,74,0.2898642922466084],[126,234,75,0.3302629735850927],[126,234,76,0.3694668772089728],[126,234,77,0.40755618812197175],[126,234,78,0.44455530261906245],[126,234,79,0.480429503949122],[126,235,64,0.09030051908570946],[126,235,65,0.08802009890800552],[126,235,66,0.08623838960097518],[126,235,67,0.0848064786355617],[126,235,68,0.0835723508784269],[126,235,69,0.0871329618674819],[126,235,70,0.12403777777584288],[126,235,71,0.1631899441844857],[126,235,72,0.20399225382706554],[126,235,73,0.24574786459047837],[126,235,74,0.2876573965915369],[126,235,75,0.32884998141564314],[126,235,76,0.3689668233937541],[126,235,77,0.4080871700373957],[126,235,78,0.4462317645700631],[126,235,79,0.48335948676283846],[126,236,64,0.13607740799736015],[126,236,65,0.13420280220630487],[126,236,66,0.1327640987232115],[126,236,67,0.13161088617161396],[126,236,68,0.13059051059560053],[126,236,69,0.12954991026566684],[126,236,70,0.12833738179136142],[126,236,71,0.16017119731896784],[126,236,72,0.20123549783299904],[126,236,73,0.2433980066052567],[126,236,74,0.2858527563450134],[126,236,75,0.327719409013898],[126,236,76,0.36863311086173817],[126,236,77,0.408669945880159],[126,236,78,0.4478451577106187],[126,236,79,0.4861098025495293],[126,237,64,0.18216158052107606],[126,237,65,0.18091561348950458],[126,237,66,0.18003658271963005],[126,237,67,0.17937136987497906],[126,237,68,0.17876560285049783],[126,237,69,0.17806552602456233],[126,237,70,0.17711978480409518],[126,237,71,0.17578112446278893],[126,237,72,0.19895463926281826],[126,237,73,0.24139125508522014],[126,237,74,0.28425792370556396],[126,237,75,0.32666821764336845],[126,237,76,0.36825169238374145],[126,237,77,0.4090793099320637],[126,237,78,0.449159212767411],[126,237,79,0.48843343132285805],[126,238,64,0.2287639615385036],[126,238,65,0.22838369484119414],[126,238,66,0.2282932884389513],[126,238,67,0.22833583256423587],[126,238,68,0.2283543395627108],[126,238,69,0.22819367345197705],[126,238,70,0.22770237472330912],[126,238,71,0.22673438038638988],[126,238,72,0.22515216656074832],[126,238,73,0.23955438895462663],[126,238,74,0.2826907850268809],[126,238,75,0.32550481470400366],[126,238,76,0.3676210212630976],[126,238,77,0.40910359616002157],[126,238,78,0.44995225947535356],[126,238,79,0.49009905922361274],[126,239,64,0.2759714477063713],[126,239,65,0.2767011966125658],[126,239,66,0.2776341445326042],[126,239,67,0.2786086284277427],[126,239,68,0.2794643152930306],[126,239,69,0.28004421891374137],[126,239,70,0.2801965910106283],[126,239,71,0.2797766867740043],[126,239,72,0.2786498733814725],[126,239,73,0.2768239152965398],[126,239,74,0.2809859299013379],[126,239,75,0.3240555312351775],[126,239,76,0.36655865556509193],[126,239,77,0.4085514271874149],[126,239,78,0.4500241375765236],[126,239,79,0.49089816765637306],[126,240,64,0.32374921683469593],[126,240,65,0.3258339678751041],[126,240,66,0.328024688679857],[126,240,67,0.3301541165709447],[126,240,68,0.3320579907911874],[126,240,69,0.3335771871698142],[126,240,70,0.334559704757392],[126,240,71,0.334862504430108],[126,240,72,0.3343545995601359],[126,240,73,0.3330429428147972],[126,240,74,0.3311276685032379],[126,240,75,0.32875483894032936],[126,240,76,0.3649080288792069],[126,240,77,0.4072586021639417],[126,240,78,0.4492032180526931],[126,240,79,0.4906522030144961],[126,241,64,0.37195938796828193],[126,241,65,0.3756388891618755],[126,241,66,0.3793160262859328],[126,241,67,0.3828171996592615],[126,241,68,0.3859737674706185],[126,241,69,0.3886243307840316],[126,241,70,0.39061684677230774],[126,241,71,0.39181057017872134],[126,241,72,0.392079143768053],[126,241,73,0.3914290587199071],[126,241,74,0.39004919317997133],[126,241,75,0.38807624397422374],[126,241,76,0.38557949298729377],[126,241,77,0.40509512353406557],[126,241,78,0.44735353459158206],[126,241,79,0.4892198269935369],[126,242,64,0.42037867272107976],[126,242,65,0.4258821752581604],[126,242,66,0.4312637395340345],[126,242,67,0.4363427946644419],[126,242,68,0.44094597707737343],[126,242,69,0.4449095990116281],[126,242,70,0.44808192042753564],[126,242,71,0.45032522432983585],[126,242,72,0.45151892570064855],[126,242,73,0.4516695385300829],[126,242,74,0.45095349097930537],[126,242,75,0.44949691308757633],[126,242,76,0.4473619577528591],[126,242,77,0.44455706071882645],[126,242,78,0.44438202528664167],[126,242,79,0.4865042474929291],[126,243,64,0.4687150178648805],[126,243,65,0.47625664804300466],[126,243,66,0.48354574679295487],[126,243,67,0.49039423571614454],[126,243,68,0.49662378655499684],[126,243,69,0.5020685061664385],[126,243,70,0.5065773992651771],[126,243,71,0.5100166089367505],[126,243,72,0.5122725635113207],[126,243,73,0.5133523985800019],[126,243,74,0.5134190252932036],[126,243,75,0.5125869049476925],[126,243,76,0.5109101319550604],[126,243,77,0.5083925293954678],[126,243,78,0.5049970813810511],[126,243,79,0.5006547022290038],[126,244,64,0.51662323917027],[126,244,65,0.5263979793794943],[126,244,66,0.5357791123779644],[126,244,67,0.544570609056342],[126,244,68,0.5525890181028941],[126,244,69,0.5596663994652087],[126,244,70,0.5656530093615171],[126,244,71,0.5704197368416051],[126,244,72,0.5738613085157097],[126,244,73,0.5759861760361085],[126,244,74,0.5769428515830067],[126,244,75,0.5768331848194458],[126,244,76,0.5757024037845739],[126,244,77,0.5735490525197919],[126,244,78,0.5703342288677059],[126,244,79,0.5659901224438946],[126,245,64,0.5637196465019126],[126,245,65,0.5758999040559338],[126,245,66,0.5875358066672537],[126,245,67,0.5984230200989089],[126,245,68,0.6083728844306167],[126,245,69,0.6172156263515195],[126,245,70,0.6248032964515979],[126,245,71,0.6310124315117417],[126,245,72,0.635747337169057],[126,245,73,0.6390185531468588],[126,245,74,0.6409595429995347],[126,245,75,0.6416588097677399],[126,245,76,0.6411520715931538],[126,245,77,0.6394320496892795],[126,245,78,0.636457517381379],[126,245,79,0.6321616102155526],[126,246,64,0.6095956601672513],[126,246,65,0.6243284027769691],[126,246,66,0.638357416572939],[126,246,67,0.6514697925933777],[126,246,68,0.6634716392070331],[126,246,69,0.6741916012982662],[126,246,70,0.6834840778130371],[126,246,71,0.6912321376657925],[126,246,72,0.6973509003155358],[126,246,73,0.701853825726781],[126,246,74,0.7048589483311936],[126,246,75,0.706440936055805],[126,246,76,0.7066255519257555],[126,246,77,0.7053993024049863],[126,246,78,0.7027183054361852],[126,246,79,0.6985163781799862],[126,247,64,0.6538304185177892],[126,247,65,0.6712348552037691],[126,247,66,0.6877688063656835],[126,247,67,0.7032105998918499],[126,247,68,0.7173611427033102],[126,247,69,0.7300477720875757],[126,247,70,0.7411277789079322],[126,247,71,0.7504916026882938],[126,247,72,0.7580663297083177],[126,247,73,0.7638692158730799],[126,247,74,0.7680027822787854],[126,247,75,0.7705276487380148],[126,247,76,0.7714594019461956],[126,247,77,0.770778115922355],[126,247,78,0.7684370487448954],[126,247,79,0.764370515582389],[126,248,64,0.6960023768049106],[126,248,65,0.7161681630453471],[126,248,66,0.7352907288551462],[126,248,67,0.7531395283214093],[126,248,68,0.7695103426321706],[126,248,69,0.784229485570721],[126,248,70,0.7971576547855029],[126,248,71,0.8081934288355621],[126,248,72,0.8172769018031829],[126,248,73,0.8244300289176613],[126,248,74,0.8297400480599552],[126,248,75,0.8332536134501898],[126,248,76,0.8349761562593458],[126,248,77,0.8348812905051947],[126,248,78,0.8329193500637642],[126,248,79,0.8290250567963418],[126,249,64,0.7356998972883307],[126,249,65,0.7586858431989639],[126,249,66,0.7804513869240509],[126,249,67,0.8007570726596724],[126,249,68,0.8193936701809312],[126,249,69,0.8361867529054277],[126,249,70,0.8510008962427615],[126,249,71,0.8637434962300291],[126,249,72,0.8743685588227903],[126,249,73,0.8829036546116144],[126,249,74,0.8894212923402542],[126,249,75,0.8939545503943297],[126,249,76,0.8964989781267706],[126,249,77,0.8970219020797116],[126,249,78,0.8954708166494281],[126,249,79,0.8917808591943298],[126,250,64,0.7725308305984249],[126,250,65,0.7983640909410106],[126,250,66,0.8227969454174133],[126,250,67,0.8455810637151632],[126,250,68,0.8665023512401266],[126,250,69,0.8853859142724825],[126,250,70,0.9021006207452167],[126,250,71,0.9165632566451217],[126,250,72,0.9287424870937697],[126,250,73,0.9386724125443875],[126,250,74,0.9464116924930986],[126,250,75,0.9519805305200868],[126,250,76,0.955365125078146],[126,250,77,0.9565268922909499],[126,250,78,0.9554107253302404],[126,250,79,0.9519522903719373],[126,251,64,0.806131088351597],[126,251,65,0.8348068131673798],[126,251,66,0.8619009933858017],[126,251,67,0.887156528011246],[126,251,68,0.9103546328263453],[126,251,69,0.9313202030701656],[126,251,70,0.9499267481060439],[126,251,71,0.9661008980790494],[126,251,72,0.9798265526549232],[126,251,73,0.9911452417958786],[126,251,74,1.0001029761868088],[126,251,75,1.006708093901136],[126,251,76,1.0109382289165934],[126,251,77,1.0127494679597628],[126,251,78,1.0120844951901546],[126,251,79,1.0088797247238404],[126,252,64,0.8361722070197154],[126,252,65,0.8676536316845209],[126,252,66,0.8973729566839669],[126,252,67,0.9250644795751046],[126,252,68,0.9505049247008754],[126,252,69,0.9735192095882226],[126,252,70,0.9939857609255338],[126,252,71,1.0118413801193866],[126,252,72,1.0270855941385066],[126,252,73,1.039768234823477],[126,252,74,1.0499241733008113],[126,252,75,1.0575511903085537],[126,252,76,1.062619390120071],[126,252,77,1.0650803099424675],[126,252,78,1.0648749678673242],[126,252,79,1.0619408493737577],[126,253,64,0.8623679030521076],[126,253,65,0.8965868565494849],[126,253,66,0.9288654609229939],[126,253,67,0.9589296438297473],[126,253,68,0.98655185618202],[126,253,69,1.0115572441591023],[126,253,70,1.0338293497884323],[126,253,71,1.053315340095976],[126,253,72,1.0700305729220245],[126,253,73,1.0840340155814168],[126,253,74,1.0953512001683041],[126,253,75,1.103970941978474],[126,253,76,1.1098570866360458],[126,253,77,1.1129575913903897],[126,253,78,1.1132124954646039],[126,253,79,1.1105607794555525],[126,254,64,0.8844796192518667],[126,254,65,0.9213374294608981],[126,254,66,0.9560806447780708],[126,254,67,0.9884271135913117],[126,254,68,1.0181452481534803],[126,254,69,1.0450605997889912],[126,254,70,1.0690619432218251],[126,254,71,1.0901068700248928],[126,254,72,1.1082265805533682],[126,254,73,1.123489961875346],[126,254,74,1.1359152761483495],[126,254,75,1.1454842285770166],[126,254,76,1.1521558970724919],[126,254,77,1.1558758054123657],[126,254,78,1.1565838360750416],[126,254,79,1.1542209827485588],[126,255,64,0.9023210624049156],[126,255,65,0.9416898371991513],[126,255,66,0.9787754236500225],[126,255,67,1.013287937169662],[126,255,68,1.044992000266688],[126,255,69,1.0737137142664164],[126,255,70,1.09934712241123],[126,255,71,1.1218601643410633],[126,255,72,1.1412997034468222],[126,255,73,1.1577452719495802],[126,255,74,1.1712101725248223],[126,255,75,1.181671094359892],[126,255,76,1.1890840382825847],[126,255,77,1.193393402137559],[126,255,78,1.1945398569197079],[126,255,79,1.1924670136645064],[126,256,64,0.9157617321629782],[126,256,65,0.9574859951170734],[126,256,66,0.9967657036819886],[126,256,67,1.0333036385737708],[126,256,68,1.0668608933386643],[126,256,69,1.0972642317500734],[126,256,70,1.1244129206766311],[126,256,71,1.148285038421322],[126,256,72,1.1689427448517602],[126,256,73,1.1864768753088875],[126,256,74,1.200898293734074],[126,256,75,1.2121809775285581],[126,256,76,1.2202797173449695],[126,256,77,1.2251392351804615],[126,256,78,1.2267020450997228],[126,256,79,1.2249150565878697],[126,257,64,0.9247294411795833],[126,257,65,0.9686281006801206],[126,257,66,1.0099295461301825],[126,257,67,1.0483296698207456],[126,257,68,1.083586306944199],[126,257,69,1.115526963834609],[126,257,70,1.144056007707133],[126,257,71,1.169161317896541],[126,257,72,1.1909198040926494],[126,257,73,1.209434187773418],[126,257,74,1.2247155909199292],[126,257,75,1.236737761781534],[126,257,76,1.2454562979382304],[126,257,77,1.2508178175067313],[126,257,78,1.2527678259611557],[126,257,79,1.251257278568353],[126,258,64,0.9292118264999203],[126,258,65,0.9750804570569963],[126,258,66,1.0182092820897497],[126,258,67,1.0582877953495826],[126,258,68,1.0950708522035022],[126,258,69,1.128386750095582],[126,258,70,1.1581447585555054],[126,258,71,1.184342098754155],[126,258,72,1.207069713081701],[126,258,73,1.2264427107681264],[126,258,74,1.2424753078173616],[126,258,75,1.2551436500622335],[126,258,76,1.2644062811109034],[126,258,77,1.2702133867011793],[126,258,78,1.2725146890740917],[126,258,79,1.2712659913667712],[126,259,64,0.9292568522036898],[126,259,65,0.9768702667597354],[126,259,66,1.0216125775746392],[126,259,67,1.0631674085384912],[126,259,68,1.1012869197640875],[126,259,69,1.135800218112276],[126,259,70,1.1666212073912365],[126,259,71,1.1937558782296402],[126,259,72,1.2173083301026977],[126,259,73,1.2374064748451892],[126,259,74,1.2540705589633436],[126,259,75,1.2672818605017893],[126,259,76,1.2770041004455075],[126,259,77,1.2831927796364055],[126,259,78,1.2858031218243744],[126,259,79,1.2847966228528631],[126,260,64,0.9249723033018504],[126,260,65,0.9740873953342631],[126,260,66,1.0202124489526132],[126,260,67,1.0630257803269878],[126,260,68,1.1022771429781675],[126,260,69,1.1377964429697283],[126,260,70,1.1695018860135118],[126,260,71,1.1974075564884146],[126,260,72,1.2216296908674953],[126,260,73,1.2423093274409474],[126,260,74,1.2594757402364025],[126,260,75,1.2731181445584223],[126,260,76,1.2832077316181465],[126,260,77,1.289707116543614],[126,260,78,1.2925783506195359],[126,260,79,1.2917894977565232],[126,261,64,0.9165242708862638],[126,261,65,0.9668831051003498],[126,261,66,1.014146228734236],[126,261,67,1.0579872399415426],[126,261,68,1.0981537762742983],[126,261,69,1.1344765062386564],[126,261,70,1.1668775471227724],[126,261,71,1.1953783090967907],[126,261,72,1.2201060168438242],[126,261,73,1.2412150648659936],[126,261,74,1.2587467717235257],[126,261,75,1.2727011273520008],[126,261,76,1.2830591163523501],[126,261,77,1.2897922944843134],[126,261,78,1.2928708897076688],[126,261,79,1.2922704277712462],[126,262,64,0.9041346285333836],[126,262,65,0.9554677589421425],[126,262,66,1.0036134817170612],[126,262,67,1.0482412877260243],[126,262,68,1.0890969887245134],[126,262,69,1.1260119544345335],[126,262,70,1.1589117723520996],[126,262,71,1.187824330283216],[126,262,72,1.2128865808555913],[126,262,73,1.234266408529566],[126,262,74,1.2520201729155223],[126,262,75,1.2661614701948547],[126,262,76,1.2766834007681682],[126,262,77,1.2835682902238454],[126,262,78,1.2867958976101068],[126,262,79,1.2863501110105857],[126,263,64,0.8880774999608314],[126,263,65,0.9401074941481179],[126,263,66,0.9888728714838467],[126,263,67,1.034039640075773],[126,263,68,1.0753520728058155],[126,263,69,1.1126421569547074],[126,263,70,1.145838465057343],[126,263,71,1.1749744469887524],[126,263,72,1.2001954299546975],[126,263,73,1.2216828253973315],[126,263,74,1.239510970229999],[126,263,75,1.2537098553180743],[126,263,76,1.2642869881258139],[126,263,77,1.2712372725061325],[126,263,78,1.2745513411673888],[126,263,79,1.2742223408171822],[126,264,64,0.8686747179377041],[126,264,65,0.9211198663012875],[126,264,66,0.9702379772556455],[126,264,67,1.015692206476141],[126,264,68,1.057225568356827],[126,264,69,1.0946705634943246],[126,264,70,1.1279582278667308],[126,264,71,1.1571266037074983],[126,264,72,1.1823279655650087],[126,264,73,1.2037571926831327],[126,264,74,1.2215094368624457],[126,264,75,1.235633792793717],[126,264,76,1.2461544059642127],[126,264,77,1.253080523729916],[126,264,78,1.2564149671987033],[126,264,79,1.256161023924486],[126,265,64,0.8462902744482637],[126,265,65,0.8988684632193171],[126,265,66,0.948072061099407],[126,265,67,0.9935619986451403],[126,265,68,1.0350803017292645],[126,265,69,1.0724598609407585],[126,265,70,1.1056336249896805],[126,265,71,1.1346432181166983],[126,265,72,1.159646380898273],[126,265,73,1.1808513067745379],[126,265,74,1.198376664965342],[126,265,75,1.2122932496528898],[126,265,76,1.2226439876344881],[126,265,77,1.2294541710265725],[126,265,78,1.2327400817749636],[126,265,79,1.2325160079713755],[126,266,64,0.8213237621091426],[126,266,65,0.873756488944678],[126,266,66,0.9227817854902277],[126,266,67,0.9680589717803273],[126,266,68,1.0093293401343355],[126,266,69,1.0464260297466086],[126,266,70,1.0792833292848476],[126,266,71,1.1079454074965451],[126,266,72,1.1325739556419534],[126,266,73,1.1533902363921127],[126,266,74,1.1705389701551365],[126,266,75,1.1841151011995033],[126,266,76,1.194182368228108],[126,266,77,1.2007837267391857],[126,266,78,1.2039501371051298],[126,266,79,1.2037077183692422],[126,267,64,0.7942028068395741],[126,267,65,0.8462193177843738],[126,267,66,0.8948098812278015],[126,267,67,0.9396327979095057],[126,267,68,0.9804288611836998],[126,267,69,1.0170312997809579],[126,267,70,1.0493751540871543],[126,267,71,1.0775060859394747],[126,267,72,1.1015882079188244],[126,267,73,1.1218555199823428],[126,267,74,1.1384811283470986],[126,267,75,1.1515864045197772],[126,267,76,1.1612577948998675],[126,267,77,1.1675574383031146],[126,267,78,1.170532126036092],[126,267,79,1.170220604521924],[126,268,64,0.7653744917857053],[126,268,65,0.8167160184002533],[126,268,66,0.8646267657080515],[126,268,67,0.9087645713461784],[126,268,68,0.948869937625845],[126,268,69,0.9847760056596834],[126,268,70,1.0164179697945257],[126,268,71,1.0438419323496082],[126,268,72,1.0672129035189208],[126,268,73,1.0867772073446977],[126,268,74,1.102738444918466],[126,268,75,1.115246494187825],[126,268,76,1.124412251585928],[126,268,77,1.130318447528202],[126,268,78,1.1330287841661764],[126,268,79,1.1325953953984609],[126,269,64,0.7352957724979486],[126,269,65,0.7857198479488922],[126,269,66,0.832721111548936],[126,269,67,0.8759574462487731],[126,269,68,0.9151692372769548],[126,269,69,0.9501893415539254],[126,269,70,0.980952505213471],[126,269,71,1.007504229231516],[126,269,72,1.030008922403059],[126,269,73,1.0487247454921147],[126,269,74,1.0638876561991952],[126,269,75,1.0756779001666827],[126,269,76,1.0842323981163466],[126,269,77,1.0896557592820937],[126,269,78,1.0920295995718001],[126,269,79,1.0914201644582604],[126,270,64,0.7044228833614952],[126,270,65,0.7537077162711908],[126,270,66,0.7995893655706237],[126,270,67,0.8417262062838693],[126,270,68,0.8798586381465154],[126,270,69,0.9138190154769991],[126,270,70,0.9435410336638381],[126,270,71,0.9690685722686773],[126,270,72,0.9905639824783263],[126,270,73,1.0082967087453267],[126,270,74,1.0225366632907837],[126,270,75,1.033496087905279],[126,270,76,1.0413393237226116],[126,270,77,1.046194019575232],[126,270,78,1.0481606301478514],[126,270,79,1.0473202039292602],[126,271,64,0.67319973528109],[126,271,65,0.7211486201327141],[126,271,66,0.7657242181309567],[126,271,67,0.806585766394242],[126,271,68,0.8434737587583823],[126,271,69,0.876219803050368],[126,271,70,0.9047559438432462],[126,271,71,0.9291234506920161],[126,271,72,0.9494812206458239],[126,271,73,0.9661093730612103],[126,271,74,0.979313098213226],[126,271,75,0.989338020631298],[126,271,76,0.99637711494003],[126,271,77,1.0005821030472433],[126,271,78,1.0020731285614286],[126,271,79,1.0009467084386374],[126,272,64,0.6420453046183996],[126,272,65,0.6884910475132058],[126,272,66,0.7316020228147753],[126,272,67,0.7710386066704378],[126,272,68,0.806541403666164],[126,272,69,0.8379410007476719],[126,272,70,0.8651671954503356],[126,272,71,0.8882576984378128],[126,272,72,0.9073666311201003],[126,272,73,0.922784134594741],[126,272,74,0.934851722379836],[126,272,75,0.9438495438398187],[126,272,76,0.9500002379050007],[126,272,77,0.9534805098549128],[126,272,78,0.954430974819256],[126,272,79,0.9529642679965056],[126,273,64,0.611340013383176],[126,273,65,0.6561493519463698],[126,273,66,0.6976691664780456],[126,273,67,0.7355611383266785],[126,273,68,0.7695659241635595],[126,273,69,0.799512778617305],[126,273,70,0.8253286595671835],[126,273,71,0.847046816095181],[126,273,72,0.8648153610203182],[126,273,73,0.8789337724944414],[126,273,74,0.8897806573996816],[126,273,75,0.8976715919773226],[126,273,76,0.9028597350466148],[126,273,77,0.9055475719610375],[126,273,78,0.9058969164479445],[126,273,79,0.9040371703316409],[126,274,64,0.5814603200888854],[126,274,65,0.6245348904641065],[126,274,66,0.6643699591224064],[126,274,67,0.7006285665585315],[126,274,68,0.733051288113532],[126,274,69,0.761465700498628],[126,274,70,0.7857953384221451],[126,274,71,0.8060681413194446],[126,274,72,0.8224250806644936],[126,274,73,0.8351742663988571],[126,274,74,0.8447318979767557],[126,274,75,0.8514496421769105],[126,274,76,0.855611858147526],[126,274,77,0.857447493177326],[126,274,78,0.8571402287953002],[126,274,79,0.8548368771992032],[126,275,64,0.5530996720412998],[126,275,65,0.5943521313352209],[126,275,66,0.6324194391408425],[126,275,67,0.6669660597660703],[126,275,68,0.6977323801341687],[126,275,69,0.7245439971421799],[126,275,70,0.7473205016896738],[126,275,71,0.7660837593777508],[126,275,72,0.7809665725445855],[126,275,73,0.7922849377515874],[126,275,74,0.8004928294740656],[126,275,75,0.8059783561072495],[126,275,76,0.8090574814789527],[126,275,77,0.8099860563804548],[126,275,78,0.8089700941765878],[126,275,79,0.8061742904950762],[126,276,64,0.5269837321390111],[126,276,65,0.5663290248683709],[126,276,66,0.6025481932599122],[126,276,67,0.635307240209017],[126,276,68,0.6643463121469246],[126,276,69,0.689488785632584],[126,276,70,0.7106498565602614],[126,276,71,0.7278446319828356],[126,276,72,0.7411968073210274],[126,276,73,0.7510294602159227],[126,276,74,0.7578341806961241],[126,276,75,0.7620355174116884],[126,276,76,0.7639811127489458],[126,276,77,0.7639538548573337],[126,276,78,0.7621822690274509],[126,276,79,0.7588491484203685],[126,277,64,0.5036496944354847],[126,277,65,0.5410100735441401],[126,277,66,0.5753083942750157],[126,277,67,0.6062123292922406],[126,277,68,0.6334617552227836],[126,277,69,0.6568776189164268],[126,277,70,0.6763703118877792],[126,277,71,0.6919475529402537],[126,277,72,0.7037230621524087],[126,277,73,0.7120261253967239],[126,277,74,0.7173854578417321],[126,277,75,0.720261704477201],[126,277,76,0.7210339369517689],[126,277,77,0.7200119121707586],[126,277,78,0.7174465672044494],[126,277,79,0.7135387505068507],[126,278,64,0.4834446977509195],[126,278,65,0.5187541648445839],[126,278,66,0.551071059189672],[126,278,67,0.5800648385339775],[126,278,68,0.6054750719946239],[126,278,69,0.627120068980253],[126,278,70,0.644905021713538],[126,278,71,0.6588296613539497],[126,278,72,0.6689969121697653],[126,278,73,0.6757413251680102],[126,278,74,0.6796279429346349],[126,278,75,0.6811528424166007],[126,278,76,0.6807259700511072],[126,278,77,0.6786834949247907],[126,278,78,0.6752983970034154],[126,278,79,0.6707892904321174],[126,279,64,0.46652431506851266],[126,279,65,0.499732400265932],[126,279,66,0.5300232330858974],[126,279,67,0.5570681251081132],[126,279,68,0.5806062617784972],[126,279,69,0.6004530800056429],[126,279,70,0.6165081648502763],[126,279,71,0.6287626653076249],[126,279,72,0.6373079145338658],[126,279,73,0.6424827159611308],[126,279,74,0.6448873709676723],[126,279,75,0.6450524378946417],[126,279,76,0.6434179068517311],[126,279,77,0.6403456379625118],[126,279,78,0.6361300353028103],[126,279,79,0.6310069565321781],[126,280,64,0.4528495626412273],[126,280,65,0.48392446924046767],[126,280,66,0.5121637462765268],[126,280,67,0.5372405518186733],[126,280,68,0.5588935436027241],[126,280,69,0.5769349947258686],[126,280,70,0.5912584342178491],[126,280,71,0.6018458124884227],[126,280,72,0.6087760766004203],[126,280,73,0.6123912039670109],[126,280,74,0.6133254647072839],[126,280,75,0.6121427086022],[126,280,76,0.6093119009830862],[126,280,77,0.6052196397903057],[126,280,78,0.600180910820116],[126,280,79,0.5944480811597677],[126,281,64,0.44218242880934056],[126,281,65,0.4711135679677058],[126,281,66,0.49729754473945187],[126,281,67,0.5204092515063294],[126,281,68,0.5401865771444612],[126,281,69,0.556438253983622],[126,281,70,0.5690512359299637],[126,281,71,0.5779976077521191],[126,281,72,0.5833431081922614],[126,281,73,0.5854317512513656],[126,281,74,0.5849303271571331],[126,281,75,0.5824346073771673],[126,281,76,0.5784412769933173],[126,281,77,0.5733605282270541],[126,281,78,0.567526896479559],[126,281,79,0.561208338886573],[126,282,64,0.43407992252805994],[126,282,65,0.46087986315430174],[126,282,66,0.4850285938333522],[126,282,67,0.5062024958866611],[126,282,68,0.5241383215736289],[126,282,69,0.5386407694898586],[126,282,70,0.5495895981321473],[126,282,71,0.5569462776301563],[126,282,72,0.560762457978979],[126,282,73,0.561383002783509],[126,282,74,0.5595056916816099],[126,282,75,0.5557567409729431],[126,282,76,0.5506591745547336],[126,282,77,0.5446454962793789],[126,282,78,0.5380686108923876],[126,282,79,0.5312109935507014],[126,283,64,0.42788664160678036],[126,283,65,0.4525925006641369],[126,283,66,0.47475135529622403],[126,283,67,0.49404066882132425],[126,283,68,0.5101955323052036],[126,283,69,0.5230159697846101],[126,283,70,0.5323737895916643],[126,283,71,0.538218981779089],[126,283,72,0.5405881339644287],[126,283,73,0.5398257343790414],[126,283,74,0.5366590297893545],[126,283,75,0.5317431834745414],[126,283,76,0.5256261247806073],[126,283,77,0.5187613082426945],[126,283,78,0.5115187289493693],[126,283,79,0.5041941941489434],[126,284,64,0.4227470529534698],[126,284,65,0.445421094813496],[126,284,66,0.46566148665498364],[126,284,67,0.48314617980443214],[126,284,68,0.49760789510657677],[126,284,69,0.5088411636927586],[126,284,70,0.5167089229315033],[126,284,71,0.52114866756125],[126,284,72,0.5221808214618788],[126,284,73,0.520148244904001],[126,284,74,0.5158062258127795],[126,284,75,0.509837440349137],[126,284,76,0.5028133104803372],[126,284,77,0.4952068640137266],[126,284,78,0.48740385994646973],[126,284,79,0.47971217913132225],[126,285,64,0.4182525036149521],[126,285,65,0.43897468678159984],[126,285,66,0.45738582211168977],[126,285,67,0.47316364669431066],[126,285,68,0.4860377077112501],[126,285,69,0.4957961482848692],[126,285,70,0.5022920588540828],[126,285,71,0.5054493940783947],[126,285,72,0.5052713115952525],[126,285,73,0.5020976873688301],[126,285,74,0.49671011272567467],[126,285,75,0.48981704799094133],[126,285,76,0.48201174242738415],[126,285,77,0.4737852077738653],[126,285,78,0.4655374676578018],[126,285,79,0.45758708288160266],[126,286,64,0.41463109608087534],[126,286,65,0.43349071414127227],[126,286,66,0.4501700652009599],[126,286,67,0.4643459815673958],[126,286,68,0.4757440759018983],[126,286,69,0.4841452848098883],[126,286,70,0.48939198955512536],[126,286,71,0.4913937138978823],[126,286,72,0.4901354396512584],[126,286,73,0.4859525340900557],[126,286,74,0.47965034759808634],[126,286,75,0.4719606614682441],[126,286,76,0.4634962959010278],[126,286,77,0.45476419906399257],[126,286,78,0.44617682443252893],[126,286,79,0.43806179641203236],[126,287,64,0.4120631551095423],[126,287,65,0.42915927253817854],[126,287,66,0.44421279506738554],[126,287,67,0.45689898830592995],[126,287,68,0.46693883216056076],[126,287,69,0.47410533786745135],[126,287,70,0.47822945495376173],[126,287,71,0.47920556812925874],[126,287,72,0.4769997982579172],[126,287,73,0.47194136492279576],[126,287,74,0.4648561102978208],[126,287,75,0.45649601409867896],[126,287,76,0.44749068323581964],[126,287,77,0.4383605486202472],[126,287,78,0.42952836482124107],[126,287,79,0.42132901257606],[126,288,64,0.41064964057716763],[126,288,65,0.42609157630854844],[126,288,66,0.43963406093264096],[126,288,67,0.45095017010377914],[126,288,68,0.45975562697182554],[126,288,69,0.46581491127760666],[126,288,70,0.4689469723381097],[126,288,71,0.4690305459213796],[126,288,72,0.46601244830209954],[126,288,73,0.460214053481279],[126,288,74,0.45247782046298196],[126,288,75,0.4435722492153144],[126,288,76,0.43414050684184197],[126,288,77,0.4247137158647965],[126,288,78,0.4157225623391192],[126,288,79,0.4075072237974018],[126,289,64,0.4104231435708443],[126,289,65,0.4243304979808065],[126,289,66,0.436485490658015],[126,289,67,0.4465584323621799],[126,289,68,0.4542592503072348],[126,289,69,0.45934341070134815],[126,289,70,0.4616174602177242],[126,289,71,0.4609441863961412],[126,289,72,0.45725091170628385],[126,289,73,0.45084945899317896],[126,289,74,0.44259453288302725],[126,289,75,0.4332670205507548],[126,289,76,0.4235200637959362],[126,289,77,0.41389241525655757],[126,289,78,0.40482013402125194],[126,289,79,0.3966466206400572],[126,290,64,0.41135821982758664],[126,290,65,0.42386048829218087],[126,290,66,0.43475982220320303],[126,290,67,0.4437232499871162],[126,290,68,0.4504544580876858],[126,290,69,0.45469955087407193],[126,290,70,0.4562524455161371],[126,290,71,0.4549599018269108],[126,290,72,0.45072982267259576],[126,290,73,0.4438628131979542],[126,290,74,0.4352210636256885],[126,290,75,0.42559335794460307],[126,290,76,0.41563894897248743],[126,290,77,0.4059009528149521],[126,290,78,0.3968181049987184],[126,290,79,0.3887348782794192],[126,291,64,0.41338106052137313],[126,291,65,0.42461687672212367],[126,291,66,0.43439985798310504],[126,291,67,0.44239329908998865],[126,291,68,0.448294303625409],[126,291,69,0.45183940745346707],[126,291,70,0.4528098541049223],[126,291,71,0.4510365220630275],[126,291,72,0.4464082373954402],[126,291,73,0.4392128022904457],[126,291,74,0.4303148469109589],[126,291,75,0.42050629837543063],[126,291,76,0.4104484567148804],[126,291,77,0.4006853928177667],[126,291,78,0.3916557330964751],[126,291,79,0.3837028308754794],[126,292,64,0.4163785003968393],[126,292,65,0.426494552541282],[126,292,66,0.4353068421214613],[126,292,67,0.4424745530904801],[126,292,68,0.44768797404450383],[126,292,69,0.45067401348088393],[126,292,70,0.45120138467839355],[126,292,71,0.44908546019953144],[126,292,72,0.4441966022419349],[126,292,73,0.43680834390898704],[126,292,74,0.42778252273143325],[126,292,75,0.41790928231658997],[126,292,76,0.40784778104698205],[126,292,77,0.39813955467249884],[126,292,78,0.38922029345244574],[126,292,79,0.38143003384754665],[126,293,64,0.4202063632504078],[126,293,65,0.42935602637673276],[126,293,66,0.4373482606019537],[126,293,67,0.4438378432221902],[126,293,68,0.44850813168054193],[126,293,69,0.45107650045664305],[126,293,70,0.4512994659693472],[126,293,71,0.448977499492495],[126,293,72,0.44396338040047906],[126,293,73,0.43651505916833216],[126,293,74,0.42748625521928685],[126,293,75,0.41766031541611615],[126,293,76,0.40769001442488306],[126,293,77,0.39811083996140817],[126,293,78,0.3893527231580257],[126,293,79,0.38175021405068216],[126,294,64,0.424697144758567],[126,294,65,0.4330388722932279],[126,294,66,0.4403650643165719],[126,294,67,0.44632588344086677],[126,294,68,0.4505977604590993],[126,294,69,0.4528887840291681],[126,294,70,0.4529437973057638],[126,294,71,0.45054920151989775],[126,294,72,0.44554133699742354],[126,294,73,0.4381614397373779],[126,294,74,0.4292497817598857],[126,294,75,0.41957789550074],[126,294,76,0.4097879450289349],[126,294,77,0.4004058896603193],[126,294,78,0.39185312592005306],[126,294,79,0.38445660785391417],[126,295,64,0.4296670326531322],[126,295,65,0.43736255039029637],[126,295,66,0.44417831501108224],[126,295,67,0.44975975973506943],[126,295,68,0.45377651725305224],[126,295,69,0.45592779429777835],[126,295,70,0.4559474725082938],[126,295,71,0.45360893558785254],[126,295,72,0.44873348268163815],[126,295,73,0.441544709961475],[126,295,74,0.43286419285180444],[126,295,75,0.4234467049037631],[126,295,76,0.41391965259581254],[126,295,77,0.4047960715308918],[126,295,78,0.3964861367439506],[126,295,79,0.3893071871199121],[126,296,64,0.43492226424395203],[126,296,65,0.4421346099156277],[126,296,66,0.44859525412800705],[126,296,67,0.4539448838396689],[126,296,68,0.45784658821902574],[126,296,69,0.4599912507295229],[126,296,70,0.46010268712891694],[126,296,71,0.4579425293825855],[126,296,72,0.45331867567739337],[126,296,73,0.44643638402975333],[126,296,74,0.4380934427137049],[126,296,75,0.4290230681172801],[126,296,76,0.41983390279112154],[126,296,77,0.4110227976869033],[126,296,78,0.4029861466386099],[126,296,79,0.39602977308673265],[126,297,64,0.4402648212885266],[126,297,65,0.4471562728942335],[126,297,66,0.4534147945466208],[126,297,67,0.45867641135167625],[126,297,68,0.4625980501124904],[126,297,69,0.46486298168954393],[126,297,70,0.4651860290302351],[126,297,71,0.4633185408676088],[126,297,72,0.45905688230495856],[126,297,73,0.45258751818683374],[126,297,74,0.4446795906373983],[126,297,75,0.4360401747680197],[126,297,76,0.42725534012176863],[126,297,77,0.418802672333715],[126,297,78,0.4110623873421364],[126,297,79,0.4043270381506975],[126,298,64,0.4454974622089875],[126,298,65,0.45222739827383174],[126,298,66,0.458432435220424],[126,298,67,0.46374412424889816],[126,298,68,0.4678137365820329],[126,298,69,0.4703177885855287],[126,298,70,0.47096335230601405],[126,298,71,0.46949315142674297],[126,298,72,0.4656940959696397],[126,298,73,0.4597336579897071],[126,298,74,0.4523477730879497],[126,298,75,0.4442130679177411],[126,298,76,0.4358894793891043],[126,298,77,0.4278324696820052],[126,298,78,0.4204038760696237],[126,298,79,0.4138813955516487],[126,299,64,0.4504280916561335],[126,299,65,0.4571508265861327],[126,299,66,0.4634445987117352],[126,299,67,0.4689367778110109],[126,299,68,0.47327360944233665],[126,299,69,0.47612585462573137],[126,299,70,0.4771942345423825],[126,299,71,0.47621468025233227],[126,299,72,0.4729669146185143],[126,299,73,0.4675994806089589],[126,299,74,0.46081090654990475],[126,299,75,0.4532433976871686],[126,299,76,0.44542749568173484],[126,299,77,0.43779394203457345],[126,299,78,0.4306842202816521],[126,299,79,0.4243597769591868],[126,300,64,0.454873467420697],[126,300,65,0.46173610512422514],[126,300,66,0.4682523916236455],[126,300,67,0.4740459119433427],[126,300,68,0.47875863492622783],[126,300,69,0.48205669819098357],[126,300,70,0.48363601742018014],[126,300,71,0.4832277199792254],[126,300,72,0.48060677666552487],[126,300,73,0.47590313217508695],[126,300,74,0.4697741211204882],[126,300,75,0.46282394020441203],[126,300,76,0.4555508129090413],[126,300,77,0.44835845804734786],[126,300,78,0.44156628247475715],[126,300,79,0.43541829796122444],[126,301,64,0.4586622446917758],[126,301,65,0.46580259363597154],[126,301,66,0.4726647879292006],[126,301,67,0.47886912690319317],[126,301,68,0.48405416491555253],[126,301,69,0.48788267082039494],[126,301,70,0.4900474306580883],[126,301,71,0.49027689356406745],[126,301,72,0.4883438553843926],[126,301,73,0.4843602601692899],[126,301,74,0.47893892484905565],[126,301,75,0.47264288187706616],[126,301,76,0.4659354908745089],[126,301,77,0.4591914711636114],[126,301,78,0.4527067049927793],[126,301,79,0.446706811453692],[126,302,64,0.4616373576622911],[126,302,65,0.46918195053330525],[126,302,66,0.4765012351977505],[126,302,67,0.4832128234286661],[126,302,68,0.48895282315092836],[126,302,69,0.49338199981085673],[126,302,70,0.496191799296731],[126,302,71,0.4971102324101875],[126,302,72,0.4959106117697224],[126,302,73,0.49268774085918704],[126,302,74,0.4880070988233573],[126,302,75,0.4823878689886353],[126,302,76,0.4762564108896108],[126,302,77,0.4699568182222817],[126,302,78,0.4637602948600322],[126,302,79,0.45787334893240683],[126,303,64,0.4636577384820279],[126,303,65,0.47171999961793665],[126,303,66,0.47959368371891026],[126,303,67,0.48689440727040545],[126,303,68,0.49325689642067183],[126,303,69,0.4983413754305628],[126,303,70,0.5018398343238605],[126,303,71,0.5034821757380807],[126,303,72,0.5030450058661916],[126,303,73,0.5006071017792513],[126,303,74,0.49668432300227694],[126,303,75,0.49174982261883976],[126,303,76,0.4861912599276787],[126,303,77,0.480320848239565],[126,303,78,0.474384268635488],[126,303,79,0.46856844968620415],[126,304,64,0.46459937355716757],[126,304,65,0.473277977322452],[126,304,66,0.4817880385232001],[126,304,67,0.48974395812538324],[126,304,68,0.49678023072816724],[126,304,69,0.5025580827459257],[126,304,70,0.5067720066401368],[126,304,71,0.509156191201132],[126,304,72,0.5094933665656072],[126,304,73,0.5078476392558758],[126,304,74,0.5046835327951157],[126,304,75,0.5004265188880102],[126,304,76,0.49542431331812514],[126,304,77,0.4899563813644908],[126,304,78,0.4842423572886383],[126,304,79,0.4784493778921282],[126,305,64,0.4643556971977565],[126,305,65,0.4737331604681555],[126,305,66,0.48294503430061975],[126,305,67,0.49160536297389434],[126,305,68,0.49934963243870006],[126,305,69,0.5058416780627805],[126,305,70,0.5107805043662448],[126,305,71,0.5139070167471765],[126,305,72,0.5150129198722665],[126,305,73,0.5141492309773629],[126,305,74,0.5117280063875406],[126,305,75,0.5081259345255338],[126,305,76,0.5036500159808066],[126,305,77,0.4985464980079587],[126,305,78,0.49300877109649405],[126,305,79,0.48718422761198615],[126,306,64,0.46283732261168875],[126,306,65,0.4729788745383296],[126,306,66,0.4829405332159249],[126,306,67,0.4923369138186302],[126,306,68,0.5008057744047525],[126,306,69,0.5080152099810041],[126,306,70,0.5136707734906196],[126,306,71,0.5175225237253072],[126,306,72,0.5193739756361893],[126,306,73,0.5192648436085401],[126,306,74,0.5175541828140675],[126,306,75,0.5145693577623744],[126,306,76,0.5105763622007071],[126,306,77,0.5057881581456208],[126,306,78,0.5003720245622053],[126,306,79,0.4944559156908914],[126,307,64,0.4599711102463998],[126,307,65,0.47092388246802125],[126,307,66,0.4816652456216278],[126,307,67,0.49181136982675283],[126,307,68,0.5010036070705721],[126,307,69,0.5089159850632458],[126,307,70,0.5152626418583516],[126,307,71,0.5198052012383783],[126,307,72,0.5223617727545341],[126,307,73,0.5229627354501958],[126,307,74,0.5219142107771247],[126,307,75,0.5194942645475784],[126,307,76,0.5159280739427294],[126,307,77,0.5113956507942756],[126,307,78,0.506038621354845],[126,307,79,0.49996606255722925],[126,308,64,0.455698573477087],[126,308,65,0.46749115394925317],[126,308,66,0.47902387366770693],[126,308,67,0.48991548387405626],[126,308,68,0.4998122745552048],[126,308,69,0.508395878117065],[126,308,70,0.5153910265006811],[126,308,71,0.5205732617407335],[126,308,72,0.523777982840848],[126,308,73,0.5250283541430991],[126,308,74,0.5245782282125964],[126,308,75,0.5226569600887889],[126,308,76,0.519449577706727],[126,308,77,0.515103873661998],[126,308,78,0.5097365992707006],[126,308,79,0.5034387609244795],[126,309,64,0.449973621643069],[126,309,65,0.46261601525318663],[126,309,66,0.4749336778094558],[126,309,67,0.4865489934925328],[126,309,68,0.4971145357151968],[126,309,69,0.5063211870915676],[126,309,70,0.5139062243060512],[126,309,71,0.5196613678819917],[126,309,72,0.5234418723628536],[126,309,73,0.5252659294171792],[126,309,74,0.5253363726022775],[126,309,75,0.5238349857170681],[126,309,76,0.5209077799229467],[126,309,77,0.5166714429720712],[126,309,78,0.5112189352160023],[126,309,79,0.5046242323947217],[126,310,64,0.4427596404300336],[126,310,65,0.45624367956707645],[126,310,66,0.46932246621142126],[126,310,67,0.4816230762194179],[126,310,68,0.4928056901851676],[126,310,69,0.5025720325868759],[126,310,70,0.5106737860311951],[126,310,71,0.516920980595523],[126,310,72,0.5211911232475588],[126,310,73,0.5234997608847973],[126,310,74,0.5240005220323388],[126,310,75,0.5228292910752758],[126,310,76,0.5200946408872917],[126,310,77,0.5158836334602678],[126,310,78,0.5102668102108031],[126,310,79,0.5033023719636718],[126,311,64,0.43402590960079457],[126,311,65,0.44832615784854657],[126,311,66,0.4621260070498449],[126,311,67,0.47505826935000484],[126,311,68,0.4867920093984087],[126,311,69,0.49704130197844576],[126,311,70,0.5055739736541228],[126,311,71,0.512220328433322],[126,311,72,0.5168823119552306],[126,311,73,0.5195752008794996],[126,311,74,0.5204057669990135],[126,311,75,0.5194661716310633],[126,311,76,0.5168295472372931],[126,311,77,0.5125551485462074],[126,311,78,0.5066927344145628],[126,311,79,0.4992861804276558],[126,312,64,0.4297778550692389],[126,312,65,0.43881855019479055],[126,312,66,0.45328486371131965],[126,312,67,0.4667818540920478],[126,312,68,0.4789886725854558],[126,312,69,0.48963313815430365],[126,312,70,0.498500801067214],[126,312,71,0.5054439981456194],[126,312,72,0.5103910470207275],[126,312,73,0.5133593323388814],[126,312,74,0.514411612960297],[126,312,75,0.5135989715134041],[126,312,76,0.510961482967855],[126,312,77,0.5065327206780077],[126,312,78,0.5003435321727964],[126,312,79,0.4924250846920027],[126,313,64,0.4231053585575363],[126,313,65,0.4276747177286984],[126,313,66,0.44274065288956954],[126,313,67,0.45672470412357585],[126,313,68,0.469317207752345],[126,313,69,0.48026097286681924],[126,313,70,0.4893606581119259],[126,313,71,0.49649214650663953],[126,313,72,0.5016117650634719],[126,313,73,0.5047413417327362],[126,313,74,0.5059029136347074],[126,313,75,0.5051095516736108],[126,313,76,0.5023709989876237],[126,313,77,0.49769754185096127],[126,313,78,0.4911031870854235],[126,313,79,0.482608145981415],[126,314,64,0.41280492739788155],[126,314,65,0.4148423350000988],[126,314,66,0.43043172557862197],[126,314,67,0.4448175985524591],[126,314,68,0.45770243763699314],[126,314,69,0.46884510469752694],[126,314,70,0.4780705179537171],[126,314,71,0.485279333385185],[126,314,72,0.4904571852648489],[126,314,73,0.4936325870353665],[126,314,74,0.49479053504607906],[126,314,75,0.4939095233698932],[126,314,76,0.49097198121510754],[126,314,77,0.48596752429945383],[126,314,78,0.4788955470961035],[126,314,79,0.46976715595165386],[126,315,64,0.3991015235453552],[126,315,65,0.40025732290408367],[126,315,66,0.416288270964267],[126,315,67,0.43098699927955414],[126,315,68,0.44406893064543557],[126,315,69,0.4553098216366586],[126,315,70,0.4645557277987635],[126,315,71,0.471732976061547],[126,315,72,0.47685742231442957],[126,315,73,0.4799663607433642],[126,315,74,0.48101175031561194],[126,315,75,0.47994124697658996],[126,315,76,0.4767132172156049],[126,315,77,0.47129939136309756],[126,315,78,0.4636868896034524],[126,315,79,0.453879620703379],[126,316,64,0.3823062633923012],[126,316,65,0.38383766211446047],[126,316,66,0.4002268432119112],[126,316,67,0.4151502927635949],[126,316,68,0.4283369567661698],[126,316,69,0.4395800682757089],[126,316,70,0.448747382950872],[126,316,71,0.4557914247892235],[126,316,72,0.460758757823597],[126,316,73,0.463697347937525],[126,316,74,0.4645303651999235],[126,316,75,0.4631785961169188],[126,316,76,0.4595797613778676],[126,316,77,0.4536905985260938],[126,316,78,0.4454883465932504],[126,316,79,0.4349716326973167],[126,317,64,0.3628223733747731],[126,317,65,0.36547658703342534],[126,317,66,0.3821443111518829],[126,317,67,0.3972104961888548],[126,317,68,0.41041794846358204],[126,317,69,0.4215776576139577],[126,317,70,0.4305792842094634],[126,317,71,0.4374016596022633],[126,317,72,0.4421220702073271],[126,317,73,0.44480077938959645],[126,317,74,0.44533657437574403],[126,317,75,0.4436274871198122],[126,317,76,0.43959409863100957],[126,317,77,0.43318108463026955],[126,317,78,0.4243581897920064],[126,317,79,0.41312063057107595],[126,318,64,0.34115123996743996],[126,318,65,0.3450351602579318],[126,318,66,0.36191123086266125],[126,318,67,0.3770504280360432],[126,318,68,0.39020946655092087],[126,318,69,0.40121702747942084],[126,318,70,0.4099844786090914],[126,318,71,0.4165166083687094],[126,318,72,0.42092092303460926],[126,318,73,0.4232712797143403],[126,318,74,0.4234465484717447],[126,318,75,0.4213261738013441],[126,318,76,0.4168171067021662],[126,318,77,0.4098548532623064],[126,318,78,0.4004039758424194],[126,318,79,0.38845804685815244],[126,319,64,0.317898554067209],[126,319,65,0.32233422756092783],[126,319,66,0.33936464115023424],[126,319,67,0.3545263430546801],[126,319,68,0.36758967104109674],[126,319,69,0.3784005415625441],[126,319,70,0.3868913834988623],[126,319,71,0.39309208608854496],[126,319,72,0.3971393118459448],[126,319,73,0.39912141056539546],[126,319,74,0.39890175184602295],[126,319,75,0.39634530756931163],[126,319,76,0.3913488169135204],[126,319,77,0.3838413843138141],[126,319,78,0.37378455149942613],[126,319,79,0.3611718436078549],[127,-64,64,64.0],[127,-64,65,64.0],[127,-64,66,64.0],[127,-64,67,64.0],[127,-64,68,64.0],[127,-64,69,64.0],[127,-64,70,64.0],[127,-64,71,64.0],[127,-64,72,64.0],[127,-64,73,64.0],[127,-64,74,64.0],[127,-64,75,64.0],[127,-64,76,64.0],[127,-64,77,64.0],[127,-64,78,64.0],[127,-64,79,64.0],[127,-63,64,64.0],[127,-63,65,64.0],[127,-63,66,64.0],[127,-63,67,64.0],[127,-63,68,64.0],[127,-63,69,64.0],[127,-63,70,64.0],[127,-63,71,64.0],[127,-63,72,64.0],[127,-63,73,64.0],[127,-63,74,64.0],[127,-63,75,64.0],[127,-63,76,64.0],[127,-63,77,64.0],[127,-63,78,64.0],[127,-63,79,64.0],[127,-62,64,64.0],[127,-62,65,64.0],[127,-62,66,64.0],[127,-62,67,64.0],[127,-62,68,64.0],[127,-62,69,64.0],[127,-62,70,64.0],[127,-62,71,64.0],[127,-62,72,64.0],[127,-62,73,64.0],[127,-62,74,64.0],[127,-62,75,64.0],[127,-62,76,64.0],[127,-62,77,64.0],[127,-62,78,64.0],[127,-62,79,64.0],[127,-61,64,64.0],[127,-61,65,64.0],[127,-61,66,64.0],[127,-61,67,64.0],[127,-61,68,64.0],[127,-61,69,64.0],[127,-61,70,64.0],[127,-61,71,64.0],[127,-61,72,64.0],[127,-61,73,64.0],[127,-61,74,64.0],[127,-61,75,64.0],[127,-61,76,64.0],[127,-61,77,64.0],[127,-61,78,64.0],[127,-61,79,64.0],[127,-60,64,64.0],[127,-60,65,64.0],[127,-60,66,64.0],[127,-60,67,64.0],[127,-60,68,64.0],[127,-60,69,64.0],[127,-60,70,64.0],[127,-60,71,64.0],[127,-60,72,64.0],[127,-60,73,64.0],[127,-60,74,64.0],[127,-60,75,64.0],[127,-60,76,64.0],[127,-60,77,64.0],[127,-60,78,64.0],[127,-60,79,64.0],[127,-59,64,64.0],[127,-59,65,64.0],[127,-59,66,64.0],[127,-59,67,64.0],[127,-59,68,64.0],[127,-59,69,64.0],[127,-59,70,64.0],[127,-59,71,64.0],[127,-59,72,64.0],[127,-59,73,64.0],[127,-59,74,64.0],[127,-59,75,64.0],[127,-59,76,64.0],[127,-59,77,64.0],[127,-59,78,64.0],[127,-59,79,64.0],[127,-58,64,64.0],[127,-58,65,64.0],[127,-58,66,64.0],[127,-58,67,64.0],[127,-58,68,64.0],[127,-58,69,64.0],[127,-58,70,64.0],[127,-58,71,64.0],[127,-58,72,64.0],[127,-58,73,64.0],[127,-58,74,64.0],[127,-58,75,64.0],[127,-58,76,64.0],[127,-58,77,64.0],[127,-58,78,64.0],[127,-58,79,64.0],[127,-57,64,64.0],[127,-57,65,64.0],[127,-57,66,64.0],[127,-57,67,64.0],[127,-57,68,64.0],[127,-57,69,64.0],[127,-57,70,64.0],[127,-57,71,64.0],[127,-57,72,64.0],[127,-57,73,64.0],[127,-57,74,64.0],[127,-57,75,64.0],[127,-57,76,64.0],[127,-57,77,64.0],[127,-57,78,64.0],[127,-57,79,64.0],[127,-56,64,64.0],[127,-56,65,64.0],[127,-56,66,64.0],[127,-56,67,64.0],[127,-56,68,64.0],[127,-56,69,64.0],[127,-56,70,64.0],[127,-56,71,64.0],[127,-56,72,64.0],[127,-56,73,64.0],[127,-56,74,64.0],[127,-56,75,64.0],[127,-56,76,64.0],[127,-56,77,64.0],[127,-56,78,64.0],[127,-56,79,64.0],[127,-55,64,64.0],[127,-55,65,64.0],[127,-55,66,64.0],[127,-55,67,64.0],[127,-55,68,64.0],[127,-55,69,64.0],[127,-55,70,64.0],[127,-55,71,64.0],[127,-55,72,64.0],[127,-55,73,64.0],[127,-55,74,64.0],[127,-55,75,64.0],[127,-55,76,64.0],[127,-55,77,64.0],[127,-55,78,64.0],[127,-55,79,64.0],[127,-54,64,64.0],[127,-54,65,64.0],[127,-54,66,64.0],[127,-54,67,64.0],[127,-54,68,64.0],[127,-54,69,64.0],[127,-54,70,64.0],[127,-54,71,64.0],[127,-54,72,64.0],[127,-54,73,64.0],[127,-54,74,64.0],[127,-54,75,64.0],[127,-54,76,64.0],[127,-54,77,64.0],[127,-54,78,64.0],[127,-54,79,64.0],[127,-53,64,64.0],[127,-53,65,64.0],[127,-53,66,64.0],[127,-53,67,64.0],[127,-53,68,64.0],[127,-53,69,64.0],[127,-53,70,64.0],[127,-53,71,64.0],[127,-53,72,64.0],[127,-53,73,64.0],[127,-53,74,64.0],[127,-53,75,64.0],[127,-53,76,64.0],[127,-53,77,64.0],[127,-53,78,64.0],[127,-53,79,64.0],[127,-52,64,64.0],[127,-52,65,64.0],[127,-52,66,64.0],[127,-52,67,64.0],[127,-52,68,64.0],[127,-52,69,64.0],[127,-52,70,64.0],[127,-52,71,64.0],[127,-52,72,64.0],[127,-52,73,64.0],[127,-52,74,64.0],[127,-52,75,64.0],[127,-52,76,64.0],[127,-52,77,64.0],[127,-52,78,64.0],[127,-52,79,64.0],[127,-51,64,64.0],[127,-51,65,64.0],[127,-51,66,64.0],[127,-51,67,64.0],[127,-51,68,64.0],[127,-51,69,64.0],[127,-51,70,64.0],[127,-51,71,64.0],[127,-51,72,64.0],[127,-51,73,64.0],[127,-51,74,64.0],[127,-51,75,64.0],[127,-51,76,64.0],[127,-51,77,64.0],[127,-51,78,64.0],[127,-51,79,64.0],[127,-50,64,64.0],[127,-50,65,64.0],[127,-50,66,64.0],[127,-50,67,64.0],[127,-50,68,64.0],[127,-50,69,64.0],[127,-50,70,64.0],[127,-50,71,64.0],[127,-50,72,64.0],[127,-50,73,64.0],[127,-50,74,64.0],[127,-50,75,64.0],[127,-50,76,64.0],[127,-50,77,64.0],[127,-50,78,64.0],[127,-50,79,64.0],[127,-49,64,64.0],[127,-49,65,64.0],[127,-49,66,64.0],[127,-49,67,64.0],[127,-49,68,64.0],[127,-49,69,64.0],[127,-49,70,64.0],[127,-49,71,64.0],[127,-49,72,64.0],[127,-49,73,64.0],[127,-49,74,64.0],[127,-49,75,64.0],[127,-49,76,64.0],[127,-49,77,64.0],[127,-49,78,64.0],[127,-49,79,64.0],[127,-48,64,64.0],[127,-48,65,64.0],[127,-48,66,64.0],[127,-48,67,64.0],[127,-48,68,64.0],[127,-48,69,64.0],[127,-48,70,64.0],[127,-48,71,64.0],[127,-48,72,64.0],[127,-48,73,64.0],[127,-48,74,64.0],[127,-48,75,64.0],[127,-48,76,64.0],[127,-48,77,64.0],[127,-48,78,64.0],[127,-48,79,64.0],[127,-47,64,64.0],[127,-47,65,64.0],[127,-47,66,64.0],[127,-47,67,64.0],[127,-47,68,64.0],[127,-47,69,64.0],[127,-47,70,64.0],[127,-47,71,64.0],[127,-47,72,64.0],[127,-47,73,64.0],[127,-47,74,64.0],[127,-47,75,64.0],[127,-47,76,64.0],[127,-47,77,64.0],[127,-47,78,64.0],[127,-47,79,64.0],[127,-46,64,64.0],[127,-46,65,64.0],[127,-46,66,64.0],[127,-46,67,64.0],[127,-46,68,64.0],[127,-46,69,64.0],[127,-46,70,64.0],[127,-46,71,64.0],[127,-46,72,64.0],[127,-46,73,64.0],[127,-46,74,64.0],[127,-46,75,64.0],[127,-46,76,64.0],[127,-46,77,64.0],[127,-46,78,64.0],[127,-46,79,64.0],[127,-45,64,64.0],[127,-45,65,64.0],[127,-45,66,64.0],[127,-45,67,64.0],[127,-45,68,64.0],[127,-45,69,64.0],[127,-45,70,64.0],[127,-45,71,64.0],[127,-45,72,64.0],[127,-45,73,64.0],[127,-45,74,64.0],[127,-45,75,64.0],[127,-45,76,64.0],[127,-45,77,64.0],[127,-45,78,64.0],[127,-45,79,64.0],[127,-44,64,64.0],[127,-44,65,64.0],[127,-44,66,64.0],[127,-44,67,64.0],[127,-44,68,64.0],[127,-44,69,64.0],[127,-44,70,64.0],[127,-44,71,64.0],[127,-44,72,64.0],[127,-44,73,64.0],[127,-44,74,64.0],[127,-44,75,64.0],[127,-44,76,64.0],[127,-44,77,64.0],[127,-44,78,64.0],[127,-44,79,64.0],[127,-43,64,64.0],[127,-43,65,64.0],[127,-43,66,64.0],[127,-43,67,64.0],[127,-43,68,64.0],[127,-43,69,64.0],[127,-43,70,64.0],[127,-43,71,64.0],[127,-43,72,64.0],[127,-43,73,64.0],[127,-43,74,64.0],[127,-43,75,64.0],[127,-43,76,64.0],[127,-43,77,64.0],[127,-43,78,64.0],[127,-43,79,64.0],[127,-42,64,64.0],[127,-42,65,64.0],[127,-42,66,64.0],[127,-42,67,64.0],[127,-42,68,64.0],[127,-42,69,64.0],[127,-42,70,64.0],[127,-42,71,64.0],[127,-42,72,64.0],[127,-42,73,64.0],[127,-42,74,64.0],[127,-42,75,64.0],[127,-42,76,64.0],[127,-42,77,64.0],[127,-42,78,64.0],[127,-42,79,64.0],[127,-41,64,64.0],[127,-41,65,64.0],[127,-41,66,64.0],[127,-41,67,64.0],[127,-41,68,64.0],[127,-41,69,64.0],[127,-41,70,64.0],[127,-41,71,64.0],[127,-41,72,64.0],[127,-41,73,64.0],[127,-41,74,64.0],[127,-41,75,64.0],[127,-41,76,64.0],[127,-41,77,64.0],[127,-41,78,64.0],[127,-41,79,64.0],[127,-40,64,64.0],[127,-40,65,64.0],[127,-40,66,64.0],[127,-40,67,64.0],[127,-40,68,64.0],[127,-40,69,64.0],[127,-40,70,64.0],[127,-40,71,64.0],[127,-40,72,64.0],[127,-40,73,64.0],[127,-40,74,64.0],[127,-40,75,64.0],[127,-40,76,64.0],[127,-40,77,64.0],[127,-40,78,64.0],[127,-40,79,64.0],[127,-39,64,64.0],[127,-39,65,64.0],[127,-39,66,64.0],[127,-39,67,64.0],[127,-39,68,64.0],[127,-39,69,64.0],[127,-39,70,64.0],[127,-39,71,64.0],[127,-39,72,64.0],[127,-39,73,64.0],[127,-39,74,64.0],[127,-39,75,64.0],[127,-39,76,64.0],[127,-39,77,64.0],[127,-39,78,64.0],[127,-39,79,64.0],[127,-38,64,64.0],[127,-38,65,64.0],[127,-38,66,64.0],[127,-38,67,64.0],[127,-38,68,64.0],[127,-38,69,64.0],[127,-38,70,64.0],[127,-38,71,64.0],[127,-38,72,64.0],[127,-38,73,64.0],[127,-38,74,64.0],[127,-38,75,64.0],[127,-38,76,64.0],[127,-38,77,64.0],[127,-38,78,64.0],[127,-38,79,64.0],[127,-37,64,64.0],[127,-37,65,64.0],[127,-37,66,64.0],[127,-37,67,64.0],[127,-37,68,64.0],[127,-37,69,64.0],[127,-37,70,64.0],[127,-37,71,64.0],[127,-37,72,64.0],[127,-37,73,64.0],[127,-37,74,64.0],[127,-37,75,64.0],[127,-37,76,64.0],[127,-37,77,64.0],[127,-37,78,64.0],[127,-37,79,64.0],[127,-36,64,64.0],[127,-36,65,64.0],[127,-36,66,64.0],[127,-36,67,64.0],[127,-36,68,64.0],[127,-36,69,64.0],[127,-36,70,64.0],[127,-36,71,64.0],[127,-36,72,64.0],[127,-36,73,64.0],[127,-36,74,64.0],[127,-36,75,64.0],[127,-36,76,64.0],[127,-36,77,64.0],[127,-36,78,64.0],[127,-36,79,64.0],[127,-35,64,64.0],[127,-35,65,64.0],[127,-35,66,64.0],[127,-35,67,64.0],[127,-35,68,64.0],[127,-35,69,64.0],[127,-35,70,64.0],[127,-35,71,64.0],[127,-35,72,64.0],[127,-35,73,64.0],[127,-35,74,64.0],[127,-35,75,64.0],[127,-35,76,64.0],[127,-35,77,64.0],[127,-35,78,64.0],[127,-35,79,64.0],[127,-34,64,64.0],[127,-34,65,64.0],[127,-34,66,64.0],[127,-34,67,64.0],[127,-34,68,64.0],[127,-34,69,64.0],[127,-34,70,64.0],[127,-34,71,64.0],[127,-34,72,64.0],[127,-34,73,64.0],[127,-34,74,64.0],[127,-34,75,64.0],[127,-34,76,64.0],[127,-34,77,64.0],[127,-34,78,64.0],[127,-34,79,64.0],[127,-33,64,64.0],[127,-33,65,64.0],[127,-33,66,64.0],[127,-33,67,64.0],[127,-33,68,64.0],[127,-33,69,64.0],[127,-33,70,64.0],[127,-33,71,64.0],[127,-33,72,64.0],[127,-33,73,64.0],[127,-33,74,64.0],[127,-33,75,64.0],[127,-33,76,64.0],[127,-33,77,64.0],[127,-33,78,64.0],[127,-33,79,64.0],[127,-32,64,64.0],[127,-32,65,64.0],[127,-32,66,64.0],[127,-32,67,64.0],[127,-32,68,64.0],[127,-32,69,64.0],[127,-32,70,64.0],[127,-32,71,64.0],[127,-32,72,64.0],[127,-32,73,64.0],[127,-32,74,64.0],[127,-32,75,64.0],[127,-32,76,64.0],[127,-32,77,64.0],[127,-32,78,64.0],[127,-32,79,64.0],[127,-31,64,64.0],[127,-31,65,64.0],[127,-31,66,64.0],[127,-31,67,64.0],[127,-31,68,64.0],[127,-31,69,64.0],[127,-31,70,64.0],[127,-31,71,64.0],[127,-31,72,64.0],[127,-31,73,64.0],[127,-31,74,64.0],[127,-31,75,64.0],[127,-31,76,64.0],[127,-31,77,64.0],[127,-31,78,64.0],[127,-31,79,64.0],[127,-30,64,64.0],[127,-30,65,64.0],[127,-30,66,64.0],[127,-30,67,64.0],[127,-30,68,64.0],[127,-30,69,64.0],[127,-30,70,64.0],[127,-30,71,64.0],[127,-30,72,64.0],[127,-30,73,64.0],[127,-30,74,64.0],[127,-30,75,64.0],[127,-30,76,64.0],[127,-30,77,64.0],[127,-30,78,64.0],[127,-30,79,64.0],[127,-29,64,64.0],[127,-29,65,64.0],[127,-29,66,64.0],[127,-29,67,64.0],[127,-29,68,64.0],[127,-29,69,64.0],[127,-29,70,64.0],[127,-29,71,64.0],[127,-29,72,64.0],[127,-29,73,64.0],[127,-29,74,64.0],[127,-29,75,64.0],[127,-29,76,64.0],[127,-29,77,64.0],[127,-29,78,64.0],[127,-29,79,64.0],[127,-28,64,64.0],[127,-28,65,64.0],[127,-28,66,64.0],[127,-28,67,64.0],[127,-28,68,64.0],[127,-28,69,64.0],[127,-28,70,64.0],[127,-28,71,64.0],[127,-28,72,64.0],[127,-28,73,64.0],[127,-28,74,64.0],[127,-28,75,64.0],[127,-28,76,64.0],[127,-28,77,64.0],[127,-28,78,64.0],[127,-28,79,64.0],[127,-27,64,64.0],[127,-27,65,64.0],[127,-27,66,64.0],[127,-27,67,64.0],[127,-27,68,64.0],[127,-27,69,64.0],[127,-27,70,64.0],[127,-27,71,64.0],[127,-27,72,64.0],[127,-27,73,64.0],[127,-27,74,64.0],[127,-27,75,64.0],[127,-27,76,64.0],[127,-27,77,64.0],[127,-27,78,64.0],[127,-27,79,64.0],[127,-26,64,64.0],[127,-26,65,64.0],[127,-26,66,64.0],[127,-26,67,64.0],[127,-26,68,64.0],[127,-26,69,64.0],[127,-26,70,64.0],[127,-26,71,64.0],[127,-26,72,64.0],[127,-26,73,64.0],[127,-26,74,64.0],[127,-26,75,64.0],[127,-26,76,64.0],[127,-26,77,64.0],[127,-26,78,64.0],[127,-26,79,64.0],[127,-25,64,64.0],[127,-25,65,64.0],[127,-25,66,64.0],[127,-25,67,64.0],[127,-25,68,64.0],[127,-25,69,64.0],[127,-25,70,64.0],[127,-25,71,64.0],[127,-25,72,64.0],[127,-25,73,64.0],[127,-25,74,64.0],[127,-25,75,64.0],[127,-25,76,64.0],[127,-25,77,64.0],[127,-25,78,64.0],[127,-25,79,64.0],[127,-24,64,64.0],[127,-24,65,64.0],[127,-24,66,64.0],[127,-24,67,64.0],[127,-24,68,64.0],[127,-24,69,64.0],[127,-24,70,64.0],[127,-24,71,64.0],[127,-24,72,64.0],[127,-24,73,64.0],[127,-24,74,64.0],[127,-24,75,64.0],[127,-24,76,64.0],[127,-24,77,64.0],[127,-24,78,64.0],[127,-24,79,64.0],[127,-23,64,64.0],[127,-23,65,64.0],[127,-23,66,64.0],[127,-23,67,64.0],[127,-23,68,64.0],[127,-23,69,64.0],[127,-23,70,64.0],[127,-23,71,64.0],[127,-23,72,64.0],[127,-23,73,64.0],[127,-23,74,64.0],[127,-23,75,64.0],[127,-23,76,64.0],[127,-23,77,64.0],[127,-23,78,64.0],[127,-23,79,64.0],[127,-22,64,64.0],[127,-22,65,64.0],[127,-22,66,64.0],[127,-22,67,64.0],[127,-22,68,64.0],[127,-22,69,64.0],[127,-22,70,64.0],[127,-22,71,64.0],[127,-22,72,64.0],[127,-22,73,64.0],[127,-22,74,64.0],[127,-22,75,64.0],[127,-22,76,64.0],[127,-22,77,64.0],[127,-22,78,64.0],[127,-22,79,64.0],[127,-21,64,64.0],[127,-21,65,64.0],[127,-21,66,64.0],[127,-21,67,64.0],[127,-21,68,64.0],[127,-21,69,64.0],[127,-21,70,64.0],[127,-21,71,64.0],[127,-21,72,64.0],[127,-21,73,64.0],[127,-21,74,64.0],[127,-21,75,64.0],[127,-21,76,64.0],[127,-21,77,64.0],[127,-21,78,64.0],[127,-21,79,64.0],[127,-20,64,64.0],[127,-20,65,64.0],[127,-20,66,64.0],[127,-20,67,64.0],[127,-20,68,64.0],[127,-20,69,64.0],[127,-20,70,64.0],[127,-20,71,64.0],[127,-20,72,64.0],[127,-20,73,64.0],[127,-20,74,64.0],[127,-20,75,64.0],[127,-20,76,64.0],[127,-20,77,64.0],[127,-20,78,64.0],[127,-20,79,64.0],[127,-19,64,64.0],[127,-19,65,64.0],[127,-19,66,64.0],[127,-19,67,64.0],[127,-19,68,64.0],[127,-19,69,64.0],[127,-19,70,64.0],[127,-19,71,64.0],[127,-19,72,64.0],[127,-19,73,64.0],[127,-19,74,64.0],[127,-19,75,64.0],[127,-19,76,64.0],[127,-19,77,64.0],[127,-19,78,64.0],[127,-19,79,64.0],[127,-18,64,64.0],[127,-18,65,64.0],[127,-18,66,64.0],[127,-18,67,64.0],[127,-18,68,64.0],[127,-18,69,64.0],[127,-18,70,64.0],[127,-18,71,64.0],[127,-18,72,64.0],[127,-18,73,64.0],[127,-18,74,64.0],[127,-18,75,64.0],[127,-18,76,64.0],[127,-18,77,64.0],[127,-18,78,64.0],[127,-18,79,64.0],[127,-17,64,64.0],[127,-17,65,64.0],[127,-17,66,64.0],[127,-17,67,64.0],[127,-17,68,64.0],[127,-17,69,64.0],[127,-17,70,64.0],[127,-17,71,64.0],[127,-17,72,64.0],[127,-17,73,64.0],[127,-17,74,64.0],[127,-17,75,64.0],[127,-17,76,64.0],[127,-17,77,64.0],[127,-17,78,64.0],[127,-17,79,64.0],[127,-16,64,64.0],[127,-16,65,64.0],[127,-16,66,64.0],[127,-16,67,64.0],[127,-16,68,64.0],[127,-16,69,64.0],[127,-16,70,64.0],[127,-16,71,64.0],[127,-16,72,64.0],[127,-16,73,64.0],[127,-16,74,64.0],[127,-16,75,64.0],[127,-16,76,64.0],[127,-16,77,64.0],[127,-16,78,64.0],[127,-16,79,64.0],[127,-15,64,64.0],[127,-15,65,64.0],[127,-15,66,64.0],[127,-15,67,64.0],[127,-15,68,64.0],[127,-15,69,64.0],[127,-15,70,64.0],[127,-15,71,64.0],[127,-15,72,64.0],[127,-15,73,64.0],[127,-15,74,64.0],[127,-15,75,64.0],[127,-15,76,64.0],[127,-15,77,64.0],[127,-15,78,64.0],[127,-15,79,64.0],[127,-14,64,64.0],[127,-14,65,64.0],[127,-14,66,64.0],[127,-14,67,64.0],[127,-14,68,64.0],[127,-14,69,64.0],[127,-14,70,64.0],[127,-14,71,64.0],[127,-14,72,64.0],[127,-14,73,64.0],[127,-14,74,64.0],[127,-14,75,64.0],[127,-14,76,64.0],[127,-14,77,64.0],[127,-14,78,64.0],[127,-14,79,64.0],[127,-13,64,64.0],[127,-13,65,64.0],[127,-13,66,64.0],[127,-13,67,64.0],[127,-13,68,64.0],[127,-13,69,64.0],[127,-13,70,64.0],[127,-13,71,64.0],[127,-13,72,64.0],[127,-13,73,64.0],[127,-13,74,64.0],[127,-13,75,64.0],[127,-13,76,64.0],[127,-13,77,64.0],[127,-13,78,64.0],[127,-13,79,64.0],[127,-12,64,64.0],[127,-12,65,64.0],[127,-12,66,64.0],[127,-12,67,64.0],[127,-12,68,64.0],[127,-12,69,64.0],[127,-12,70,64.0],[127,-12,71,64.0],[127,-12,72,64.0],[127,-12,73,64.0],[127,-12,74,64.0],[127,-12,75,64.0],[127,-12,76,64.0],[127,-12,77,64.0],[127,-12,78,64.0],[127,-12,79,64.0],[127,-11,64,64.0],[127,-11,65,64.0],[127,-11,66,64.0],[127,-11,67,64.0],[127,-11,68,64.0],[127,-11,69,64.0],[127,-11,70,64.0],[127,-11,71,64.0],[127,-11,72,64.0],[127,-11,73,64.0],[127,-11,74,64.0],[127,-11,75,64.0],[127,-11,76,64.0],[127,-11,77,64.0],[127,-11,78,64.0],[127,-11,79,64.0],[127,-10,64,64.0],[127,-10,65,64.0],[127,-10,66,64.0],[127,-10,67,64.0],[127,-10,68,64.0],[127,-10,69,64.0],[127,-10,70,64.0],[127,-10,71,64.0],[127,-10,72,64.0],[127,-10,73,64.0],[127,-10,74,64.0],[127,-10,75,64.0],[127,-10,76,64.0],[127,-10,77,64.0],[127,-10,78,64.0],[127,-10,79,64.0],[127,-9,64,64.0],[127,-9,65,64.0],[127,-9,66,64.0],[127,-9,67,64.0],[127,-9,68,64.0],[127,-9,69,64.0],[127,-9,70,64.0],[127,-9,71,64.0],[127,-9,72,64.0],[127,-9,73,64.0],[127,-9,74,64.0],[127,-9,75,64.0],[127,-9,76,64.0],[127,-9,77,64.0],[127,-9,78,64.0],[127,-9,79,64.0],[127,-8,64,64.0],[127,-8,65,64.0],[127,-8,66,64.0],[127,-8,67,64.0],[127,-8,68,64.0],[127,-8,69,64.0],[127,-8,70,64.0],[127,-8,71,64.0],[127,-8,72,64.0],[127,-8,73,64.0],[127,-8,74,64.0],[127,-8,75,64.0],[127,-8,76,64.0],[127,-8,77,64.0],[127,-8,78,64.0],[127,-8,79,64.0],[127,-7,64,64.0],[127,-7,65,64.0],[127,-7,66,64.0],[127,-7,67,64.0],[127,-7,68,64.0],[127,-7,69,64.0],[127,-7,70,64.0],[127,-7,71,64.0],[127,-7,72,64.0],[127,-7,73,64.0],[127,-7,74,64.0],[127,-7,75,64.0],[127,-7,76,64.0],[127,-7,77,64.0],[127,-7,78,64.0],[127,-7,79,64.0],[127,-6,64,64.0],[127,-6,65,64.0],[127,-6,66,64.0],[127,-6,67,64.0],[127,-6,68,64.0],[127,-6,69,64.0],[127,-6,70,64.0],[127,-6,71,64.0],[127,-6,72,64.0],[127,-6,73,64.0],[127,-6,74,64.0],[127,-6,75,64.0],[127,-6,76,64.0],[127,-6,77,64.0],[127,-6,78,64.0],[127,-6,79,64.0],[127,-5,64,64.0],[127,-5,65,64.0],[127,-5,66,64.0],[127,-5,67,64.0],[127,-5,68,64.0],[127,-5,69,64.0],[127,-5,70,64.0],[127,-5,71,64.0],[127,-5,72,64.0],[127,-5,73,64.0],[127,-5,74,64.0],[127,-5,75,64.0],[127,-5,76,64.0],[127,-5,77,64.0],[127,-5,78,64.0],[127,-5,79,64.0],[127,-4,64,64.0],[127,-4,65,64.0],[127,-4,66,64.0],[127,-4,67,64.0],[127,-4,68,64.0],[127,-4,69,64.0],[127,-4,70,64.0],[127,-4,71,64.0],[127,-4,72,64.0],[127,-4,73,64.0],[127,-4,74,64.0],[127,-4,75,64.0],[127,-4,76,64.0],[127,-4,77,64.0],[127,-4,78,64.0],[127,-4,79,64.0],[127,-3,64,64.0],[127,-3,65,64.0],[127,-3,66,64.0],[127,-3,67,64.0],[127,-3,68,64.0],[127,-3,69,64.0],[127,-3,70,64.0],[127,-3,71,64.0],[127,-3,72,64.0],[127,-3,73,64.0],[127,-3,74,64.0],[127,-3,75,64.0],[127,-3,76,64.0],[127,-3,77,64.0],[127,-3,78,64.0],[127,-3,79,64.0],[127,-2,64,64.0],[127,-2,65,64.0],[127,-2,66,64.0],[127,-2,67,64.0],[127,-2,68,64.0],[127,-2,69,64.0],[127,-2,70,64.0],[127,-2,71,64.0],[127,-2,72,64.0],[127,-2,73,64.0],[127,-2,74,64.0],[127,-2,75,64.0],[127,-2,76,64.0],[127,-2,77,64.0],[127,-2,78,64.0],[127,-2,79,64.0],[127,-1,64,64.0],[127,-1,65,64.0],[127,-1,66,64.0],[127,-1,67,64.0],[127,-1,68,64.0],[127,-1,69,64.0],[127,-1,70,64.0],[127,-1,71,64.0],[127,-1,72,64.0],[127,-1,73,64.0],[127,-1,74,64.0],[127,-1,75,64.0],[127,-1,76,64.0],[127,-1,77,64.0],[127,-1,78,64.0],[127,-1,79,64.0],[127,0,64,64.0],[127,0,65,64.0],[127,0,66,64.0],[127,0,67,64.0],[127,0,68,64.0],[127,0,69,64.0],[127,0,70,64.0],[127,0,71,64.0],[127,0,72,64.0],[127,0,73,64.0],[127,0,74,64.0],[127,0,75,64.0],[127,0,76,64.0],[127,0,77,64.0],[127,0,78,64.0],[127,0,79,64.0],[127,1,64,64.0],[127,1,65,64.0],[127,1,66,64.0],[127,1,67,64.0],[127,1,68,64.0],[127,1,69,64.0],[127,1,70,64.0],[127,1,71,64.0],[127,1,72,64.0],[127,1,73,64.0],[127,1,74,64.0],[127,1,75,64.0],[127,1,76,64.0],[127,1,77,64.0],[127,1,78,64.0],[127,1,79,64.0],[127,2,64,64.0],[127,2,65,64.0],[127,2,66,64.0],[127,2,67,64.0],[127,2,68,64.0],[127,2,69,64.0],[127,2,70,64.0],[127,2,71,64.0],[127,2,72,64.0],[127,2,73,64.0],[127,2,74,64.0],[127,2,75,64.0],[127,2,76,64.0],[127,2,77,64.0],[127,2,78,64.0],[127,2,79,64.0],[127,3,64,64.0],[127,3,65,64.0],[127,3,66,64.0],[127,3,67,64.0],[127,3,68,64.0],[127,3,69,64.0],[127,3,70,64.0],[127,3,71,64.0],[127,3,72,64.0],[127,3,73,64.0],[127,3,74,64.0],[127,3,75,64.0],[127,3,76,64.0],[127,3,77,64.0],[127,3,78,64.0],[127,3,79,64.0],[127,4,64,64.0],[127,4,65,64.0],[127,4,66,64.0],[127,4,67,64.0],[127,4,68,64.0],[127,4,69,64.0],[127,4,70,64.0],[127,4,71,64.0],[127,4,72,64.0],[127,4,73,64.0],[127,4,74,64.0],[127,4,75,64.0],[127,4,76,64.0],[127,4,77,64.0],[127,4,78,64.0],[127,4,79,64.0],[127,5,64,64.0],[127,5,65,64.0],[127,5,66,64.0],[127,5,67,64.0],[127,5,68,64.0],[127,5,69,64.0],[127,5,70,64.0],[127,5,71,64.0],[127,5,72,64.0],[127,5,73,64.0],[127,5,74,64.0],[127,5,75,64.0],[127,5,76,64.0],[127,5,77,64.0],[127,5,78,64.0],[127,5,79,64.0],[127,6,64,64.0],[127,6,65,64.0],[127,6,66,64.0],[127,6,67,64.0],[127,6,68,64.0],[127,6,69,64.0],[127,6,70,64.0],[127,6,71,64.0],[127,6,72,64.0],[127,6,73,64.0],[127,6,74,64.0],[127,6,75,64.0],[127,6,76,64.0],[127,6,77,64.0],[127,6,78,64.0],[127,6,79,64.0],[127,7,64,64.0],[127,7,65,64.0],[127,7,66,64.0],[127,7,67,64.0],[127,7,68,64.0],[127,7,69,64.0],[127,7,70,64.0],[127,7,71,64.0],[127,7,72,64.0],[127,7,73,64.0],[127,7,74,64.0],[127,7,75,64.0],[127,7,76,64.0],[127,7,77,64.0],[127,7,78,64.0],[127,7,79,64.0],[127,8,64,64.0],[127,8,65,64.0],[127,8,66,64.0],[127,8,67,64.0],[127,8,68,64.0],[127,8,69,64.0],[127,8,70,64.0],[127,8,71,64.0],[127,8,72,64.0],[127,8,73,64.0],[127,8,74,64.0],[127,8,75,64.0],[127,8,76,64.0],[127,8,77,64.0],[127,8,78,64.0],[127,8,79,64.0],[127,9,64,64.0],[127,9,65,64.0],[127,9,66,64.0],[127,9,67,64.0],[127,9,68,64.0],[127,9,69,64.0],[127,9,70,64.0],[127,9,71,64.0],[127,9,72,64.0],[127,9,73,64.0],[127,9,74,64.0],[127,9,75,64.0],[127,9,76,64.0],[127,9,77,64.0],[127,9,78,64.0],[127,9,79,64.0],[127,10,64,64.0],[127,10,65,64.0],[127,10,66,64.0],[127,10,67,64.0],[127,10,68,64.0],[127,10,69,64.0],[127,10,70,64.0],[127,10,71,64.0],[127,10,72,64.0],[127,10,73,64.0],[127,10,74,64.0],[127,10,75,64.0],[127,10,76,64.0],[127,10,77,64.0],[127,10,78,64.0],[127,10,79,64.0],[127,11,64,64.0],[127,11,65,64.0],[127,11,66,64.0],[127,11,67,64.0],[127,11,68,64.0],[127,11,69,64.0],[127,11,70,64.0],[127,11,71,64.0],[127,11,72,64.0],[127,11,73,64.0],[127,11,74,64.0],[127,11,75,64.0],[127,11,76,64.0],[127,11,77,64.0],[127,11,78,64.0],[127,11,79,64.0],[127,12,64,64.0],[127,12,65,64.0],[127,12,66,64.0],[127,12,67,64.0],[127,12,68,64.0],[127,12,69,64.0],[127,12,70,64.0],[127,12,71,64.0],[127,12,72,64.0],[127,12,73,64.0],[127,12,74,64.0],[127,12,75,64.0],[127,12,76,64.0],[127,12,77,64.0],[127,12,78,64.0],[127,12,79,64.0],[127,13,64,64.0],[127,13,65,64.0],[127,13,66,64.0],[127,13,67,64.0],[127,13,68,64.0],[127,13,69,64.0],[127,13,70,64.0],[127,13,71,64.0],[127,13,72,64.0],[127,13,73,64.0],[127,13,74,64.0],[127,13,75,64.0],[127,13,76,64.0],[127,13,77,64.0],[127,13,78,64.0],[127,13,79,64.0],[127,14,64,64.0],[127,14,65,64.0],[127,14,66,64.0],[127,14,67,64.0],[127,14,68,64.0],[127,14,69,64.0],[127,14,70,64.0],[127,14,71,64.0],[127,14,72,64.0],[127,14,73,64.0],[127,14,74,64.0],[127,14,75,64.0],[127,14,76,64.0],[127,14,77,64.0],[127,14,78,64.0],[127,14,79,64.0],[127,15,64,64.0],[127,15,65,64.0],[127,15,66,64.0],[127,15,67,64.0],[127,15,68,64.0],[127,15,69,64.0],[127,15,70,64.0],[127,15,71,64.0],[127,15,72,64.0],[127,15,73,64.0],[127,15,74,64.0],[127,15,75,64.0],[127,15,76,64.0],[127,15,77,64.0],[127,15,78,64.0],[127,15,79,64.0],[127,16,64,64.0],[127,16,65,64.0],[127,16,66,64.0],[127,16,67,64.0],[127,16,68,64.0],[127,16,69,64.0],[127,16,70,64.0],[127,16,71,64.0],[127,16,72,64.0],[127,16,73,64.0],[127,16,74,64.0],[127,16,75,64.0],[127,16,76,64.0],[127,16,77,64.0],[127,16,78,64.0],[127,16,79,64.0],[127,17,64,64.0],[127,17,65,64.0],[127,17,66,64.0],[127,17,67,64.0],[127,17,68,64.0],[127,17,69,64.0],[127,17,70,64.0],[127,17,71,64.0],[127,17,72,64.0],[127,17,73,64.0],[127,17,74,64.0],[127,17,75,64.0],[127,17,76,64.0],[127,17,77,64.0],[127,17,78,64.0],[127,17,79,64.0],[127,18,64,64.0],[127,18,65,64.0],[127,18,66,64.0],[127,18,67,64.0],[127,18,68,64.0],[127,18,69,64.0],[127,18,70,64.0],[127,18,71,64.0],[127,18,72,64.0],[127,18,73,64.0],[127,18,74,64.0],[127,18,75,64.0],[127,18,76,64.0],[127,18,77,64.0],[127,18,78,64.0],[127,18,79,64.0],[127,19,64,64.0],[127,19,65,64.0],[127,19,66,64.0],[127,19,67,64.0],[127,19,68,64.0],[127,19,69,64.0],[127,19,70,64.0],[127,19,71,64.0],[127,19,72,64.0],[127,19,73,64.0],[127,19,74,64.0],[127,19,75,64.0],[127,19,76,64.0],[127,19,77,64.0],[127,19,78,64.0],[127,19,79,64.0],[127,20,64,64.0],[127,20,65,64.0],[127,20,66,64.0],[127,20,67,64.0],[127,20,68,64.0],[127,20,69,64.0],[127,20,70,64.0],[127,20,71,64.0],[127,20,72,64.0],[127,20,73,64.0],[127,20,74,64.0],[127,20,75,64.0],[127,20,76,64.0],[127,20,77,64.0],[127,20,78,64.0],[127,20,79,64.0],[127,21,64,64.0],[127,21,65,64.0],[127,21,66,64.0],[127,21,67,64.0],[127,21,68,64.0],[127,21,69,64.0],[127,21,70,64.0],[127,21,71,64.0],[127,21,72,64.0],[127,21,73,64.0],[127,21,74,64.0],[127,21,75,64.0],[127,21,76,64.0],[127,21,77,64.0],[127,21,78,64.0],[127,21,79,64.0],[127,22,64,64.0],[127,22,65,64.0],[127,22,66,64.0],[127,22,67,64.0],[127,22,68,64.0],[127,22,69,64.0],[127,22,70,64.0],[127,22,71,64.0],[127,22,72,64.0],[127,22,73,64.0],[127,22,74,64.0],[127,22,75,64.0],[127,22,76,64.0],[127,22,77,64.0],[127,22,78,64.0],[127,22,79,64.0],[127,23,64,64.0],[127,23,65,64.0],[127,23,66,64.0],[127,23,67,64.0],[127,23,68,64.0],[127,23,69,64.0],[127,23,70,64.0],[127,23,71,64.0],[127,23,72,64.0],[127,23,73,64.0],[127,23,74,64.0],[127,23,75,64.0],[127,23,76,64.0],[127,23,77,64.0],[127,23,78,64.0],[127,23,79,64.0],[127,24,64,64.0],[127,24,65,64.0],[127,24,66,64.0],[127,24,67,64.0],[127,24,68,64.0],[127,24,69,64.0],[127,24,70,64.0],[127,24,71,64.0],[127,24,72,64.0],[127,24,73,64.0],[127,24,74,64.0],[127,24,75,64.0],[127,24,76,64.0],[127,24,77,64.0],[127,24,78,64.0],[127,24,79,64.0],[127,25,64,64.0],[127,25,65,64.0],[127,25,66,64.0],[127,25,67,64.0],[127,25,68,64.0],[127,25,69,64.0],[127,25,70,64.0],[127,25,71,64.0],[127,25,72,64.0],[127,25,73,64.0],[127,25,74,64.0],[127,25,75,64.0],[127,25,76,64.0],[127,25,77,64.0],[127,25,78,64.0],[127,25,79,64.0],[127,26,64,64.0],[127,26,65,64.0],[127,26,66,64.0],[127,26,67,64.0],[127,26,68,64.0],[127,26,69,64.0],[127,26,70,64.0],[127,26,71,64.0],[127,26,72,64.0],[127,26,73,64.0],[127,26,74,64.0],[127,26,75,64.0],[127,26,76,64.0],[127,26,77,64.0],[127,26,78,64.0],[127,26,79,64.0],[127,27,64,64.0],[127,27,65,64.0],[127,27,66,64.0],[127,27,67,64.0],[127,27,68,64.0],[127,27,69,64.0],[127,27,70,64.0],[127,27,71,64.0],[127,27,72,64.0],[127,27,73,64.0],[127,27,74,64.0],[127,27,75,64.0],[127,27,76,64.0],[127,27,77,64.0],[127,27,78,64.0],[127,27,79,64.0],[127,28,64,64.0],[127,28,65,64.0],[127,28,66,64.0],[127,28,67,64.0],[127,28,68,64.0],[127,28,69,64.0],[127,28,70,64.0],[127,28,71,64.0],[127,28,72,64.0],[127,28,73,64.0],[127,28,74,64.0],[127,28,75,64.0],[127,28,76,64.0],[127,28,77,64.0],[127,28,78,64.0],[127,28,79,64.0],[127,29,64,64.0],[127,29,65,64.0],[127,29,66,64.0],[127,29,67,64.0],[127,29,68,64.0],[127,29,69,64.0],[127,29,70,64.0],[127,29,71,64.0],[127,29,72,64.0],[127,29,73,64.0],[127,29,74,64.0],[127,29,75,64.0],[127,29,76,64.0],[127,29,77,64.0],[127,29,78,64.0],[127,29,79,64.0],[127,30,64,64.0],[127,30,65,64.0],[127,30,66,64.0],[127,30,67,64.0],[127,30,68,64.0],[127,30,69,64.0],[127,30,70,64.0],[127,30,71,64.0],[127,30,72,64.0],[127,30,73,64.0],[127,30,74,64.0],[127,30,75,64.0],[127,30,76,64.0],[127,30,77,64.0],[127,30,78,64.0],[127,30,79,64.0],[127,31,64,64.0],[127,31,65,64.0],[127,31,66,64.0],[127,31,67,64.0],[127,31,68,64.0],[127,31,69,64.0],[127,31,70,64.0],[127,31,71,64.0],[127,31,72,64.0],[127,31,73,64.0],[127,31,74,64.0],[127,31,75,64.0],[127,31,76,64.0],[127,31,77,64.0],[127,31,78,64.0],[127,31,79,64.0],[127,32,64,64.0],[127,32,65,64.0],[127,32,66,64.0],[127,32,67,64.0],[127,32,68,64.0],[127,32,69,64.0],[127,32,70,64.0],[127,32,71,64.0],[127,32,72,64.0],[127,32,73,64.0],[127,32,74,64.0],[127,32,75,64.0],[127,32,76,64.0],[127,32,77,64.0],[127,32,78,64.0],[127,32,79,64.0],[127,33,64,64.0],[127,33,65,64.0],[127,33,66,64.0],[127,33,67,64.0],[127,33,68,64.0],[127,33,69,64.0],[127,33,70,64.0],[127,33,71,64.0],[127,33,72,64.0],[127,33,73,64.0],[127,33,74,64.0],[127,33,75,64.0],[127,33,76,64.0],[127,33,77,64.0],[127,33,78,64.0],[127,33,79,64.0],[127,34,64,64.0],[127,34,65,64.0],[127,34,66,64.0],[127,34,67,64.0],[127,34,68,64.0],[127,34,69,64.0],[127,34,70,64.0],[127,34,71,64.0],[127,34,72,64.0],[127,34,73,64.0],[127,34,74,64.0],[127,34,75,64.0],[127,34,76,64.0],[127,34,77,64.0],[127,34,78,64.0],[127,34,79,64.0],[127,35,64,64.0],[127,35,65,64.0],[127,35,66,64.0],[127,35,67,64.0],[127,35,68,64.0],[127,35,69,64.0],[127,35,70,64.0],[127,35,71,64.0],[127,35,72,64.0],[127,35,73,64.0],[127,35,74,64.0],[127,35,75,64.0],[127,35,76,64.0],[127,35,77,64.0],[127,35,78,64.0],[127,35,79,64.0],[127,36,64,64.0],[127,36,65,64.0],[127,36,66,64.0],[127,36,67,64.0],[127,36,68,64.0],[127,36,69,64.0],[127,36,70,64.0],[127,36,71,64.0],[127,36,72,64.0],[127,36,73,64.0],[127,36,74,64.0],[127,36,75,64.0],[127,36,76,64.0],[127,36,77,64.0],[127,36,78,64.0],[127,36,79,64.0],[127,37,64,64.0],[127,37,65,64.0],[127,37,66,64.0],[127,37,67,64.0],[127,37,68,64.0],[127,37,69,64.0],[127,37,70,64.0],[127,37,71,64.0],[127,37,72,64.0],[127,37,73,64.0],[127,37,74,64.0],[127,37,75,64.0],[127,37,76,64.0],[127,37,77,64.0],[127,37,78,64.0],[127,37,79,64.0],[127,38,64,64.0],[127,38,65,64.0],[127,38,66,64.0],[127,38,67,64.0],[127,38,68,64.0],[127,38,69,64.0],[127,38,70,64.0],[127,38,71,64.0],[127,38,72,64.0],[127,38,73,64.0],[127,38,74,64.0],[127,38,75,64.0],[127,38,76,64.0],[127,38,77,64.0],[127,38,78,64.0],[127,38,79,64.0],[127,39,64,64.0],[127,39,65,64.0],[127,39,66,64.0],[127,39,67,64.0],[127,39,68,64.0],[127,39,69,64.0],[127,39,70,64.0],[127,39,71,64.0],[127,39,72,64.0],[127,39,73,64.0],[127,39,74,64.0],[127,39,75,64.0],[127,39,76,64.0],[127,39,77,64.0],[127,39,78,64.0],[127,39,79,64.0],[127,40,64,64.0],[127,40,65,64.0],[127,40,66,64.0],[127,40,67,64.0],[127,40,68,64.0],[127,40,69,64.0],[127,40,70,64.0],[127,40,71,64.0],[127,40,72,64.0],[127,40,73,64.0],[127,40,74,64.0],[127,40,75,64.0],[127,40,76,64.0],[127,40,77,64.0],[127,40,78,64.0],[127,40,79,64.0],[127,41,64,64.0],[127,41,65,64.0],[127,41,66,64.0],[127,41,67,64.0],[127,41,68,64.0],[127,41,69,64.0],[127,41,70,64.0],[127,41,71,64.0],[127,41,72,64.0],[127,41,73,64.0],[127,41,74,64.0],[127,41,75,64.0],[127,41,76,64.0],[127,41,77,64.0],[127,41,78,64.0],[127,41,79,64.0],[127,42,64,64.0],[127,42,65,64.0],[127,42,66,64.0],[127,42,67,64.0],[127,42,68,64.0],[127,42,69,64.0],[127,42,70,64.0],[127,42,71,64.0],[127,42,72,64.0],[127,42,73,64.0],[127,42,74,64.0],[127,42,75,64.0],[127,42,76,64.0],[127,42,77,64.0],[127,42,78,64.0],[127,42,79,64.0],[127,43,64,64.0],[127,43,65,64.0],[127,43,66,64.0],[127,43,67,64.0],[127,43,68,64.0],[127,43,69,64.0],[127,43,70,64.0],[127,43,71,64.0],[127,43,72,64.0],[127,43,73,64.0],[127,43,74,64.0],[127,43,75,64.0],[127,43,76,64.0],[127,43,77,64.0],[127,43,78,64.0],[127,43,79,64.0],[127,44,64,64.0],[127,44,65,64.0],[127,44,66,64.0],[127,44,67,64.0],[127,44,68,64.0],[127,44,69,64.0],[127,44,70,64.0],[127,44,71,64.0],[127,44,72,64.0],[127,44,73,64.0],[127,44,74,64.0],[127,44,75,64.0],[127,44,76,64.0],[127,44,77,64.0],[127,44,78,64.0],[127,44,79,64.0],[127,45,64,64.0],[127,45,65,64.0],[127,45,66,64.0],[127,45,67,64.0],[127,45,68,64.0],[127,45,69,64.0],[127,45,70,64.0],[127,45,71,64.0],[127,45,72,64.0],[127,45,73,64.0],[127,45,74,64.0],[127,45,75,64.0],[127,45,76,64.0],[127,45,77,64.0],[127,45,78,64.0],[127,45,79,64.0],[127,46,64,64.0],[127,46,65,64.0],[127,46,66,64.0],[127,46,67,64.0],[127,46,68,64.0],[127,46,69,64.0],[127,46,70,64.0],[127,46,71,64.0],[127,46,72,64.0],[127,46,73,64.0],[127,46,74,64.0],[127,46,75,64.0],[127,46,76,64.0],[127,46,77,64.0],[127,46,78,64.0],[127,46,79,64.0],[127,47,64,64.0],[127,47,65,64.0],[127,47,66,64.0],[127,47,67,64.0],[127,47,68,64.0],[127,47,69,64.0],[127,47,70,64.0],[127,47,71,64.0],[127,47,72,64.0],[127,47,73,64.0],[127,47,74,64.0],[127,47,75,64.0],[127,47,76,64.0],[127,47,77,64.0],[127,47,78,64.0],[127,47,79,64.0],[127,48,64,64.0],[127,48,65,64.0],[127,48,66,64.0],[127,48,67,64.0],[127,48,68,64.0],[127,48,69,64.0],[127,48,70,64.0],[127,48,71,64.0],[127,48,72,64.0],[127,48,73,64.0],[127,48,74,64.0],[127,48,75,64.0],[127,48,76,64.0],[127,48,77,64.0],[127,48,78,64.0],[127,48,79,64.0],[127,49,64,64.0],[127,49,65,64.0],[127,49,66,64.0],[127,49,67,64.0],[127,49,68,64.0],[127,49,69,64.0],[127,49,70,64.0],[127,49,71,64.0],[127,49,72,64.0],[127,49,73,64.0],[127,49,74,64.0],[127,49,75,64.0],[127,49,76,64.0],[127,49,77,64.0],[127,49,78,64.0],[127,49,79,64.0],[127,50,64,64.0],[127,50,65,64.0],[127,50,66,64.0],[127,50,67,64.0],[127,50,68,64.0],[127,50,69,64.0],[127,50,70,64.0],[127,50,71,64.0],[127,50,72,64.0],[127,50,73,64.0],[127,50,74,64.0],[127,50,75,64.0],[127,50,76,64.0],[127,50,77,64.0],[127,50,78,64.0],[127,50,79,64.0],[127,51,64,64.0],[127,51,65,64.0],[127,51,66,64.0],[127,51,67,64.0],[127,51,68,64.0],[127,51,69,64.0],[127,51,70,64.0],[127,51,71,64.0],[127,51,72,64.0],[127,51,73,64.0],[127,51,74,64.0],[127,51,75,64.0],[127,51,76,64.0],[127,51,77,64.0],[127,51,78,64.0],[127,51,79,64.0],[127,52,64,64.0],[127,52,65,64.0],[127,52,66,64.0],[127,52,67,64.0],[127,52,68,64.0],[127,52,69,64.0],[127,52,70,64.0],[127,52,71,64.0],[127,52,72,64.0],[127,52,73,64.0],[127,52,74,64.0],[127,52,75,64.0],[127,52,76,64.0],[127,52,77,64.0],[127,52,78,64.0],[127,52,79,64.0],[127,53,64,64.0],[127,53,65,64.0],[127,53,66,64.0],[127,53,67,64.0],[127,53,68,64.0],[127,53,69,64.0],[127,53,70,64.0],[127,53,71,64.0],[127,53,72,64.0],[127,53,73,64.0],[127,53,74,64.0],[127,53,75,64.0],[127,53,76,64.0],[127,53,77,64.0],[127,53,78,64.0],[127,53,79,64.0],[127,54,64,64.0],[127,54,65,64.0],[127,54,66,64.0],[127,54,67,64.0],[127,54,68,64.0],[127,54,69,64.0],[127,54,70,64.0],[127,54,71,64.0],[127,54,72,64.0],[127,54,73,64.0],[127,54,74,64.0],[127,54,75,64.0],[127,54,76,64.0],[127,54,77,64.0],[127,54,78,64.0],[127,54,79,64.0],[127,55,64,64.0],[127,55,65,64.0],[127,55,66,64.0],[127,55,67,64.0],[127,55,68,64.0],[127,55,69,64.0],[127,55,70,64.0],[127,55,71,64.0],[127,55,72,64.0],[127,55,73,64.0],[127,55,74,64.0],[127,55,75,64.0],[127,55,76,64.0],[127,55,77,64.0],[127,55,78,64.0],[127,55,79,64.0],[127,56,64,64.0],[127,56,65,64.0],[127,56,66,64.0],[127,56,67,64.0],[127,56,68,64.0],[127,56,69,64.0],[127,56,70,64.0],[127,56,71,64.0],[127,56,72,64.0],[127,56,73,64.0],[127,56,74,64.0],[127,56,75,64.0],[127,56,76,64.0],[127,56,77,64.0],[127,56,78,64.0],[127,56,79,64.0],[127,57,64,64.0],[127,57,65,64.0],[127,57,66,64.0],[127,57,67,64.0],[127,57,68,64.0],[127,57,69,64.0],[127,57,70,64.0],[127,57,71,64.0],[127,57,72,64.0],[127,57,73,64.0],[127,57,74,64.0],[127,57,75,64.0],[127,57,76,64.0],[127,57,77,64.0],[127,57,78,64.0],[127,57,79,64.0],[127,58,64,64.0],[127,58,65,64.0],[127,58,66,64.0],[127,58,67,64.0],[127,58,68,64.0],[127,58,69,64.0],[127,58,70,64.0],[127,58,71,64.0],[127,58,72,64.0],[127,58,73,64.0],[127,58,74,64.0],[127,58,75,64.0],[127,58,76,64.0],[127,58,77,64.0],[127,58,78,64.0],[127,58,79,64.0],[127,59,64,64.0],[127,59,65,64.0],[127,59,66,64.0],[127,59,67,64.0],[127,59,68,64.0],[127,59,69,64.0],[127,59,70,64.0],[127,59,71,64.0],[127,59,72,64.0],[127,59,73,64.0],[127,59,74,64.0],[127,59,75,64.0],[127,59,76,64.0],[127,59,77,64.0],[127,59,78,64.0],[127,59,79,64.0],[127,60,64,64.0],[127,60,65,64.0],[127,60,66,64.0],[127,60,67,64.0],[127,60,68,64.0],[127,60,69,64.0],[127,60,70,64.0],[127,60,71,64.0],[127,60,72,64.0],[127,60,73,64.0],[127,60,74,64.0],[127,60,75,64.0],[127,60,76,64.0],[127,60,77,64.0],[127,60,78,64.0],[127,60,79,64.0],[127,61,64,64.0],[127,61,65,64.0],[127,61,66,64.0],[127,61,67,64.0],[127,61,68,64.0],[127,61,69,64.0],[127,61,70,64.0],[127,61,71,64.0],[127,61,72,64.0],[127,61,73,64.0],[127,61,74,64.0],[127,61,75,64.0],[127,61,76,64.0],[127,61,77,64.0],[127,61,78,64.0],[127,61,79,64.0],[127,62,64,64.0],[127,62,65,64.0],[127,62,66,64.0],[127,62,67,64.0],[127,62,68,64.0],[127,62,69,64.0],[127,62,70,64.0],[127,62,71,64.0],[127,62,72,64.0],[127,62,73,64.0],[127,62,74,64.0],[127,62,75,64.0],[127,62,76,64.0],[127,62,77,64.0],[127,62,78,64.0],[127,62,79,64.0],[127,63,64,64.0],[127,63,65,64.0],[127,63,66,64.0],[127,63,67,64.0],[127,63,68,64.0],[127,63,69,64.0],[127,63,70,64.0],[127,63,71,64.0],[127,63,72,64.0],[127,63,73,64.0],[127,63,74,64.0],[127,63,75,64.0],[127,63,76,64.0],[127,63,77,64.0],[127,63,78,64.0],[127,63,79,64.0],[127,64,64,64.0],[127,64,65,64.0],[127,64,66,64.0],[127,64,67,64.0],[127,64,68,64.0],[127,64,69,64.0],[127,64,70,64.0],[127,64,71,64.0],[127,64,72,64.0],[127,64,73,64.0],[127,64,74,64.0],[127,64,75,64.0],[127,64,76,64.0],[127,64,77,64.0],[127,64,78,64.0],[127,64,79,64.0],[127,65,64,64.0],[127,65,65,64.0],[127,65,66,64.0],[127,65,67,64.0],[127,65,68,64.0],[127,65,69,64.0],[127,65,70,64.0],[127,65,71,64.0],[127,65,72,64.0],[127,65,73,64.0],[127,65,74,64.0],[127,65,75,64.0],[127,65,76,64.0],[127,65,77,64.0],[127,65,78,64.0],[127,65,79,64.0],[127,66,64,64.0],[127,66,65,64.0],[127,66,66,64.0],[127,66,67,64.0],[127,66,68,64.0],[127,66,69,64.0],[127,66,70,64.0],[127,66,71,64.0],[127,66,72,64.0],[127,66,73,64.0],[127,66,74,64.0],[127,66,75,64.0],[127,66,76,64.0],[127,66,77,64.0],[127,66,78,64.0],[127,66,79,64.0],[127,67,64,64.0],[127,67,65,64.0],[127,67,66,64.0],[127,67,67,64.0],[127,67,68,64.0],[127,67,69,64.0],[127,67,70,64.0],[127,67,71,64.0],[127,67,72,64.0],[127,67,73,64.0],[127,67,74,64.0],[127,67,75,64.0],[127,67,76,64.0],[127,67,77,64.0],[127,67,78,64.0],[127,67,79,64.0],[127,68,64,64.0],[127,68,65,64.0],[127,68,66,64.0],[127,68,67,64.0],[127,68,68,64.0],[127,68,69,64.0],[127,68,70,64.0],[127,68,71,64.0],[127,68,72,64.0],[127,68,73,64.0],[127,68,74,64.0],[127,68,75,64.0],[127,68,76,64.0],[127,68,77,64.0],[127,68,78,64.0],[127,68,79,64.0],[127,69,64,64.0],[127,69,65,64.0],[127,69,66,64.0],[127,69,67,64.0],[127,69,68,64.0],[127,69,69,64.0],[127,69,70,64.0],[127,69,71,64.0],[127,69,72,64.0],[127,69,73,64.0],[127,69,74,64.0],[127,69,75,64.0],[127,69,76,64.0],[127,69,77,64.0],[127,69,78,64.0],[127,69,79,64.0],[127,70,64,64.0],[127,70,65,64.0],[127,70,66,64.0],[127,70,67,64.0],[127,70,68,64.0],[127,70,69,64.0],[127,70,70,64.0],[127,70,71,64.0],[127,70,72,64.0],[127,70,73,64.0],[127,70,74,64.0],[127,70,75,64.0],[127,70,76,64.0],[127,70,77,64.0],[127,70,78,64.0],[127,70,79,64.0],[127,71,64,64.0],[127,71,65,64.0],[127,71,66,64.0],[127,71,67,64.0],[127,71,68,64.0],[127,71,69,64.0],[127,71,70,64.0],[127,71,71,64.0],[127,71,72,64.0],[127,71,73,64.0],[127,71,74,64.0],[127,71,75,64.0],[127,71,76,64.0],[127,71,77,64.0],[127,71,78,64.0],[127,71,79,64.0],[127,72,64,64.0],[127,72,65,64.0],[127,72,66,64.0],[127,72,67,64.0],[127,72,68,64.0],[127,72,69,64.0],[127,72,70,64.0],[127,72,71,64.0],[127,72,72,64.0],[127,72,73,64.0],[127,72,74,64.0],[127,72,75,64.0],[127,72,76,64.0],[127,72,77,64.0],[127,72,78,64.0],[127,72,79,64.0],[127,73,64,64.0],[127,73,65,64.0],[127,73,66,64.0],[127,73,67,64.0],[127,73,68,64.0],[127,73,69,64.0],[127,73,70,64.0],[127,73,71,64.0],[127,73,72,64.0],[127,73,73,64.0],[127,73,74,64.0],[127,73,75,64.0],[127,73,76,64.0],[127,73,77,64.0],[127,73,78,64.0],[127,73,79,64.0],[127,74,64,64.0],[127,74,65,64.0],[127,74,66,64.0],[127,74,67,64.0],[127,74,68,64.0],[127,74,69,64.0],[127,74,70,64.0],[127,74,71,64.0],[127,74,72,64.0],[127,74,73,64.0],[127,74,74,64.0],[127,74,75,64.0],[127,74,76,64.0],[127,74,77,64.0],[127,74,78,64.0],[127,74,79,64.0],[127,75,64,64.0],[127,75,65,64.0],[127,75,66,64.0],[127,75,67,64.0],[127,75,68,64.0],[127,75,69,64.0],[127,75,70,64.0],[127,75,71,64.0],[127,75,72,64.0],[127,75,73,64.0],[127,75,74,64.0],[127,75,75,64.0],[127,75,76,64.0],[127,75,77,64.0],[127,75,78,64.0],[127,75,79,64.0],[127,76,64,64.0],[127,76,65,64.0],[127,76,66,64.0],[127,76,67,64.0],[127,76,68,64.0],[127,76,69,64.0],[127,76,70,64.0],[127,76,71,64.0],[127,76,72,64.0],[127,76,73,64.0],[127,76,74,64.0],[127,76,75,64.0],[127,76,76,64.0],[127,76,77,64.0],[127,76,78,64.0],[127,76,79,64.0],[127,77,64,64.0],[127,77,65,64.0],[127,77,66,64.0],[127,77,67,64.0],[127,77,68,64.0],[127,77,69,64.0],[127,77,70,64.0],[127,77,71,64.0],[127,77,72,64.0],[127,77,73,64.0],[127,77,74,64.0],[127,77,75,64.0],[127,77,76,64.0],[127,77,77,64.0],[127,77,78,64.0],[127,77,79,64.0],[127,78,64,64.0],[127,78,65,64.0],[127,78,66,64.0],[127,78,67,64.0],[127,78,68,64.0],[127,78,69,64.0],[127,78,70,64.0],[127,78,71,64.0],[127,78,72,64.0],[127,78,73,64.0],[127,78,74,64.0],[127,78,75,64.0],[127,78,76,64.0],[127,78,77,64.0],[127,78,78,64.0],[127,78,79,64.0],[127,79,64,64.0],[127,79,65,64.0],[127,79,66,64.0],[127,79,67,64.0],[127,79,68,64.0],[127,79,69,64.0],[127,79,70,64.0],[127,79,71,64.0],[127,79,72,64.0],[127,79,73,64.0],[127,79,74,64.0],[127,79,75,64.0],[127,79,76,64.0],[127,79,77,64.0],[127,79,78,64.0],[127,79,79,64.0],[127,80,64,64.0],[127,80,65,64.0],[127,80,66,64.0],[127,80,67,64.0],[127,80,68,64.0],[127,80,69,64.0],[127,80,70,64.0],[127,80,71,64.0],[127,80,72,64.0],[127,80,73,64.0],[127,80,74,64.0],[127,80,75,64.0],[127,80,76,64.0],[127,80,77,64.0],[127,80,78,64.0],[127,80,79,64.0],[127,81,64,64.0],[127,81,65,64.0],[127,81,66,64.0],[127,81,67,64.0],[127,81,68,64.0],[127,81,69,64.0],[127,81,70,64.0],[127,81,71,64.0],[127,81,72,64.0],[127,81,73,64.0],[127,81,74,64.0],[127,81,75,64.0],[127,81,76,64.0],[127,81,77,64.0],[127,81,78,64.0],[127,81,79,64.0],[127,82,64,64.0],[127,82,65,64.0],[127,82,66,64.0],[127,82,67,64.0],[127,82,68,64.0],[127,82,69,64.0],[127,82,70,64.0],[127,82,71,64.0],[127,82,72,64.0],[127,82,73,64.0],[127,82,74,64.0],[127,82,75,64.0],[127,82,76,64.0],[127,82,77,64.0],[127,82,78,64.0],[127,82,79,64.0],[127,83,64,64.0],[127,83,65,64.0],[127,83,66,64.0],[127,83,67,64.0],[127,83,68,64.0],[127,83,69,64.0],[127,83,70,64.0],[127,83,71,64.0],[127,83,72,64.0],[127,83,73,64.0],[127,83,74,64.0],[127,83,75,64.0],[127,83,76,64.0],[127,83,77,64.0],[127,83,78,64.0],[127,83,79,64.0],[127,84,64,64.0],[127,84,65,64.0],[127,84,66,64.0],[127,84,67,64.0],[127,84,68,64.0],[127,84,69,64.0],[127,84,70,64.0],[127,84,71,64.0],[127,84,72,64.0],[127,84,73,64.0],[127,84,74,64.0],[127,84,75,64.0],[127,84,76,64.0],[127,84,77,64.0],[127,84,78,64.0],[127,84,79,64.0],[127,85,64,64.0],[127,85,65,64.0],[127,85,66,64.0],[127,85,67,64.0],[127,85,68,64.0],[127,85,69,64.0],[127,85,70,64.0],[127,85,71,64.0],[127,85,72,64.0],[127,85,73,64.0],[127,85,74,64.0],[127,85,75,64.0],[127,85,76,64.0],[127,85,77,64.0],[127,85,78,64.0],[127,85,79,64.0],[127,86,64,64.0],[127,86,65,64.0],[127,86,66,64.0],[127,86,67,64.0],[127,86,68,64.0],[127,86,69,64.0],[127,86,70,64.0],[127,86,71,64.0],[127,86,72,64.0],[127,86,73,64.0],[127,86,74,64.0],[127,86,75,64.0],[127,86,76,64.0],[127,86,77,64.0],[127,86,78,64.0],[127,86,79,64.0],[127,87,64,64.0],[127,87,65,64.0],[127,87,66,64.0],[127,87,67,64.0],[127,87,68,64.0],[127,87,69,64.0],[127,87,70,64.0],[127,87,71,64.0],[127,87,72,64.0],[127,87,73,64.0],[127,87,74,64.0],[127,87,75,64.0],[127,87,76,64.0],[127,87,77,64.0],[127,87,78,64.0],[127,87,79,64.0],[127,88,64,64.0],[127,88,65,64.0],[127,88,66,64.0],[127,88,67,64.0],[127,88,68,64.0],[127,88,69,64.0],[127,88,70,64.0],[127,88,71,64.0],[127,88,72,64.0],[127,88,73,64.0],[127,88,74,64.0],[127,88,75,64.0],[127,88,76,64.0],[127,88,77,64.0],[127,88,78,64.0],[127,88,79,64.0],[127,89,64,64.0],[127,89,65,64.0],[127,89,66,64.0],[127,89,67,64.0],[127,89,68,64.0],[127,89,69,64.0],[127,89,70,64.0],[127,89,71,64.0],[127,89,72,64.0],[127,89,73,64.0],[127,89,74,64.0],[127,89,75,64.0],[127,89,76,64.0],[127,89,77,64.0],[127,89,78,64.0],[127,89,79,64.0],[127,90,64,64.0],[127,90,65,64.0],[127,90,66,64.0],[127,90,67,64.0],[127,90,68,64.0],[127,90,69,64.0],[127,90,70,64.0],[127,90,71,64.0],[127,90,72,64.0],[127,90,73,64.0],[127,90,74,64.0],[127,90,75,64.0],[127,90,76,64.0],[127,90,77,64.0],[127,90,78,64.0],[127,90,79,64.0],[127,91,64,64.0],[127,91,65,64.0],[127,91,66,64.0],[127,91,67,64.0],[127,91,68,64.0],[127,91,69,64.0],[127,91,70,64.0],[127,91,71,64.0],[127,91,72,64.0],[127,91,73,64.0],[127,91,74,64.0],[127,91,75,64.0],[127,91,76,64.0],[127,91,77,64.0],[127,91,78,64.0],[127,91,79,64.0],[127,92,64,64.0],[127,92,65,64.0],[127,92,66,64.0],[127,92,67,64.0],[127,92,68,64.0],[127,92,69,64.0],[127,92,70,64.0],[127,92,71,64.0],[127,92,72,64.0],[127,92,73,64.0],[127,92,74,64.0],[127,92,75,64.0],[127,92,76,64.0],[127,92,77,64.0],[127,92,78,64.0],[127,92,79,64.0],[127,93,64,64.0],[127,93,65,64.0],[127,93,66,64.0],[127,93,67,64.0],[127,93,68,64.0],[127,93,69,64.0],[127,93,70,64.0],[127,93,71,64.0],[127,93,72,64.0],[127,93,73,64.0],[127,93,74,64.0],[127,93,75,64.0],[127,93,76,64.0],[127,93,77,64.0],[127,93,78,64.0],[127,93,79,64.0],[127,94,64,64.0],[127,94,65,64.0],[127,94,66,64.0],[127,94,67,64.0],[127,94,68,64.0],[127,94,69,64.0],[127,94,70,64.0],[127,94,71,64.0],[127,94,72,64.0],[127,94,73,64.0],[127,94,74,64.0],[127,94,75,64.0],[127,94,76,64.0],[127,94,77,64.0],[127,94,78,64.0],[127,94,79,64.0],[127,95,64,64.0],[127,95,65,64.0],[127,95,66,64.0],[127,95,67,64.0],[127,95,68,64.0],[127,95,69,64.0],[127,95,70,64.0],[127,95,71,64.0],[127,95,72,64.0],[127,95,73,64.0],[127,95,74,64.0],[127,95,75,64.0],[127,95,76,64.0],[127,95,77,64.0],[127,95,78,64.0],[127,95,79,64.0],[127,96,64,64.0],[127,96,65,64.0],[127,96,66,64.0],[127,96,67,64.0],[127,96,68,64.0],[127,96,69,64.0],[127,96,70,64.0],[127,96,71,64.0],[127,96,72,64.0],[127,96,73,64.0],[127,96,74,64.0],[127,96,75,64.0],[127,96,76,64.0],[127,96,77,64.0],[127,96,78,64.0],[127,96,79,64.0],[127,97,64,64.0],[127,97,65,64.0],[127,97,66,64.0],[127,97,67,64.0],[127,97,68,64.0],[127,97,69,64.0],[127,97,70,64.0],[127,97,71,64.0],[127,97,72,64.0],[127,97,73,64.0],[127,97,74,64.0],[127,97,75,64.0],[127,97,76,64.0],[127,97,77,64.0],[127,97,78,64.0],[127,97,79,64.0],[127,98,64,64.0],[127,98,65,64.0],[127,98,66,64.0],[127,98,67,64.0],[127,98,68,64.0],[127,98,69,64.0],[127,98,70,64.0],[127,98,71,64.0],[127,98,72,64.0],[127,98,73,64.0],[127,98,74,64.0],[127,98,75,64.0],[127,98,76,64.0],[127,98,77,64.0],[127,98,78,64.0],[127,98,79,64.0],[127,99,64,64.0],[127,99,65,64.0],[127,99,66,64.0],[127,99,67,64.0],[127,99,68,64.0],[127,99,69,64.0],[127,99,70,64.0],[127,99,71,64.0],[127,99,72,64.0],[127,99,73,64.0],[127,99,74,64.0],[127,99,75,64.0],[127,99,76,64.0],[127,99,77,64.0],[127,99,78,64.0],[127,99,79,64.0],[127,100,64,64.0],[127,100,65,64.0],[127,100,66,64.0],[127,100,67,64.0],[127,100,68,64.0],[127,100,69,64.0],[127,100,70,64.0],[127,100,71,64.0],[127,100,72,64.0],[127,100,73,64.0],[127,100,74,64.0],[127,100,75,64.0],[127,100,76,64.0],[127,100,77,64.0],[127,100,78,64.0],[127,100,79,64.0],[127,101,64,64.0],[127,101,65,64.0],[127,101,66,64.0],[127,101,67,64.0],[127,101,68,64.0],[127,101,69,64.0],[127,101,70,64.0],[127,101,71,64.0],[127,101,72,64.0],[127,101,73,64.0],[127,101,74,64.0],[127,101,75,64.0],[127,101,76,64.0],[127,101,77,64.0],[127,101,78,64.0],[127,101,79,64.0],[127,102,64,64.0],[127,102,65,64.0],[127,102,66,64.0],[127,102,67,64.0],[127,102,68,64.0],[127,102,69,64.0],[127,102,70,64.0],[127,102,71,64.0],[127,102,72,64.0],[127,102,73,64.0],[127,102,74,64.0],[127,102,75,64.0],[127,102,76,64.0],[127,102,77,64.0],[127,102,78,64.0],[127,102,79,64.0],[127,103,64,64.0],[127,103,65,64.0],[127,103,66,64.0],[127,103,67,64.0],[127,103,68,64.0],[127,103,69,64.0],[127,103,70,64.0],[127,103,71,64.0],[127,103,72,64.0],[127,103,73,64.0],[127,103,74,64.0],[127,103,75,64.0],[127,103,76,64.0],[127,103,77,64.0],[127,103,78,64.0],[127,103,79,64.0],[127,104,64,64.0],[127,104,65,64.0],[127,104,66,64.0],[127,104,67,64.0],[127,104,68,64.0],[127,104,69,64.0],[127,104,70,64.0],[127,104,71,64.0],[127,104,72,64.0],[127,104,73,64.0],[127,104,74,64.0],[127,104,75,64.0],[127,104,76,64.0],[127,104,77,64.0],[127,104,78,64.0],[127,104,79,64.0],[127,105,64,64.0],[127,105,65,64.0],[127,105,66,64.0],[127,105,67,64.0],[127,105,68,64.0],[127,105,69,64.0],[127,105,70,64.0],[127,105,71,64.0],[127,105,72,64.0],[127,105,73,64.0],[127,105,74,64.0],[127,105,75,64.0],[127,105,76,64.0],[127,105,77,64.0],[127,105,78,64.0],[127,105,79,64.0],[127,106,64,64.0],[127,106,65,64.0],[127,106,66,64.0],[127,106,67,64.0],[127,106,68,64.0],[127,106,69,64.0],[127,106,70,64.0],[127,106,71,64.0],[127,106,72,64.0],[127,106,73,64.0],[127,106,74,64.0],[127,106,75,64.0],[127,106,76,64.0],[127,106,77,64.0],[127,106,78,64.0],[127,106,79,64.0],[127,107,64,64.0],[127,107,65,64.0],[127,107,66,64.0],[127,107,67,64.0],[127,107,68,64.0],[127,107,69,64.0],[127,107,70,64.0],[127,107,71,64.0],[127,107,72,64.0],[127,107,73,64.0],[127,107,74,64.0],[127,107,75,64.0],[127,107,76,64.0],[127,107,77,64.0],[127,107,78,64.0],[127,107,79,64.0],[127,108,64,64.0],[127,108,65,64.0],[127,108,66,64.0],[127,108,67,64.0],[127,108,68,64.0],[127,108,69,64.0],[127,108,70,64.0],[127,108,71,64.0],[127,108,72,64.0],[127,108,73,64.0],[127,108,74,64.0],[127,108,75,64.0],[127,108,76,64.0],[127,108,77,64.0],[127,108,78,64.0],[127,108,79,64.0],[127,109,64,64.0],[127,109,65,64.0],[127,109,66,64.0],[127,109,67,64.0],[127,109,68,64.0],[127,109,69,64.0],[127,109,70,64.0],[127,109,71,64.0],[127,109,72,64.0],[127,109,73,64.0],[127,109,74,64.0],[127,109,75,64.0],[127,109,76,64.0],[127,109,77,64.0],[127,109,78,64.0],[127,109,79,64.0],[127,110,64,64.0],[127,110,65,64.0],[127,110,66,64.0],[127,110,67,64.0],[127,110,68,64.0],[127,110,69,64.0],[127,110,70,64.0],[127,110,71,64.0],[127,110,72,64.0],[127,110,73,64.0],[127,110,74,64.0],[127,110,75,64.0],[127,110,76,64.0],[127,110,77,64.0],[127,110,78,64.0],[127,110,79,64.0],[127,111,64,64.0],[127,111,65,64.0],[127,111,66,64.0],[127,111,67,64.0],[127,111,68,64.0],[127,111,69,64.0],[127,111,70,64.0],[127,111,71,64.0],[127,111,72,64.0],[127,111,73,64.0],[127,111,74,64.0],[127,111,75,64.0],[127,111,76,64.0],[127,111,77,64.0],[127,111,78,64.0],[127,111,79,64.0],[127,112,64,64.0],[127,112,65,64.0],[127,112,66,64.0],[127,112,67,64.0],[127,112,68,64.0],[127,112,69,64.0],[127,112,70,64.0],[127,112,71,64.0],[127,112,72,64.0],[127,112,73,64.0],[127,112,74,64.0],[127,112,75,64.0],[127,112,76,64.0],[127,112,77,64.0],[127,112,78,64.0],[127,112,79,64.0],[127,113,64,64.0],[127,113,65,64.0],[127,113,66,64.0],[127,113,67,64.0],[127,113,68,64.0],[127,113,69,64.0],[127,113,70,64.0],[127,113,71,64.0],[127,113,72,64.0],[127,113,73,64.0],[127,113,74,64.0],[127,113,75,64.0],[127,113,76,64.0],[127,113,77,64.0],[127,113,78,64.0],[127,113,79,64.0],[127,114,64,64.0],[127,114,65,64.0],[127,114,66,64.0],[127,114,67,64.0],[127,114,68,64.0],[127,114,69,64.0],[127,114,70,64.0],[127,114,71,64.0],[127,114,72,64.0],[127,114,73,64.0],[127,114,74,64.0],[127,114,75,64.0],[127,114,76,64.0],[127,114,77,64.0],[127,114,78,64.0],[127,114,79,64.0],[127,115,64,64.0],[127,115,65,64.0],[127,115,66,64.0],[127,115,67,64.0],[127,115,68,64.0],[127,115,69,64.0],[127,115,70,64.0],[127,115,71,64.0],[127,115,72,64.0],[127,115,73,64.0],[127,115,74,64.0],[127,115,75,64.0],[127,115,76,64.0],[127,115,77,64.0],[127,115,78,64.0],[127,115,79,64.0],[127,116,64,64.0],[127,116,65,64.0],[127,116,66,64.0],[127,116,67,64.0],[127,116,68,64.0],[127,116,69,64.0],[127,116,70,64.0],[127,116,71,64.0],[127,116,72,64.0],[127,116,73,64.0],[127,116,74,64.0],[127,116,75,64.0],[127,116,76,64.0],[127,116,77,64.0],[127,116,78,64.0],[127,116,79,64.0],[127,117,64,64.0],[127,117,65,64.0],[127,117,66,64.0],[127,117,67,64.0],[127,117,68,64.0],[127,117,69,64.0],[127,117,70,64.0],[127,117,71,64.0],[127,117,72,64.0],[127,117,73,64.0],[127,117,74,64.0],[127,117,75,64.0],[127,117,76,64.0],[127,117,77,64.0],[127,117,78,64.0],[127,117,79,64.0],[127,118,64,64.0],[127,118,65,64.0],[127,118,66,64.0],[127,118,67,64.0],[127,118,68,64.0],[127,118,69,64.0],[127,118,70,64.0],[127,118,71,64.0],[127,118,72,64.0],[127,118,73,64.0],[127,118,74,64.0],[127,118,75,64.0],[127,118,76,64.0],[127,118,77,64.0],[127,118,78,64.0],[127,118,79,64.0],[127,119,64,64.0],[127,119,65,64.0],[127,119,66,64.0],[127,119,67,64.0],[127,119,68,64.0],[127,119,69,64.0],[127,119,70,64.0],[127,119,71,64.0],[127,119,72,64.0],[127,119,73,64.0],[127,119,74,64.0],[127,119,75,64.0],[127,119,76,64.0],[127,119,77,64.0],[127,119,78,64.0],[127,119,79,64.0],[127,120,64,64.0],[127,120,65,64.0],[127,120,66,64.0],[127,120,67,64.0],[127,120,68,64.0],[127,120,69,64.0],[127,120,70,64.0],[127,120,71,64.0],[127,120,72,64.0],[127,120,73,64.0],[127,120,74,64.0],[127,120,75,64.0],[127,120,76,64.0],[127,120,77,64.0],[127,120,78,64.0],[127,120,79,64.0],[127,121,64,64.0],[127,121,65,64.0],[127,121,66,64.0],[127,121,67,64.0],[127,121,68,64.0],[127,121,69,64.0],[127,121,70,64.0],[127,121,71,64.0],[127,121,72,64.0],[127,121,73,64.0],[127,121,74,64.0],[127,121,75,64.0],[127,121,76,64.0],[127,121,77,64.0],[127,121,78,64.0],[127,121,79,64.0],[127,122,64,64.0],[127,122,65,64.0],[127,122,66,64.0],[127,122,67,64.0],[127,122,68,64.0],[127,122,69,64.0],[127,122,70,64.0],[127,122,71,64.0],[127,122,72,64.0],[127,122,73,64.0],[127,122,74,64.0],[127,122,75,64.0],[127,122,76,64.0],[127,122,77,64.0],[127,122,78,64.0],[127,122,79,64.0],[127,123,64,64.0],[127,123,65,64.0],[127,123,66,64.0],[127,123,67,64.0],[127,123,68,64.0],[127,123,69,64.0],[127,123,70,64.0],[127,123,71,64.0],[127,123,72,64.0],[127,123,73,64.0],[127,123,74,64.0],[127,123,75,64.0],[127,123,76,64.0],[127,123,77,64.0],[127,123,78,64.0],[127,123,79,64.0],[127,124,64,64.0],[127,124,65,64.0],[127,124,66,64.0],[127,124,67,64.0],[127,124,68,64.0],[127,124,69,64.0],[127,124,70,64.0],[127,124,71,64.0],[127,124,72,64.0],[127,124,73,64.0],[127,124,74,64.0],[127,124,75,64.0],[127,124,76,64.0],[127,124,77,64.0],[127,124,78,64.0],[127,124,79,64.0],[127,125,64,64.0],[127,125,65,64.0],[127,125,66,64.0],[127,125,67,64.0],[127,125,68,64.0],[127,125,69,64.0],[127,125,70,64.0],[127,125,71,64.0],[127,125,72,64.0],[127,125,73,64.0],[127,125,74,64.0],[127,125,75,64.0],[127,125,76,64.0],[127,125,77,64.0],[127,125,78,64.0],[127,125,79,64.0],[127,126,64,64.0],[127,126,65,64.0],[127,126,66,64.0],[127,126,67,64.0],[127,126,68,64.0],[127,126,69,64.0],[127,126,70,64.0],[127,126,71,64.0],[127,126,72,64.0],[127,126,73,64.0],[127,126,74,64.0],[127,126,75,64.0],[127,126,76,64.0],[127,126,77,64.0],[127,126,78,64.0],[127,126,79,64.0],[127,127,64,64.0],[127,127,65,64.0],[127,127,66,64.0],[127,127,67,64.0],[127,127,68,64.0],[127,127,69,64.0],[127,127,70,64.0],[127,127,71,64.0],[127,127,72,64.0],[127,127,73,64.0],[127,127,74,64.0],[127,127,75,64.0],[127,127,76,64.0],[127,127,77,64.0],[127,127,78,64.0],[127,127,79,64.0],[127,128,64,64.0],[127,128,65,64.0],[127,128,66,64.0],[127,128,67,64.0],[127,128,68,64.0],[127,128,69,64.0],[127,128,70,64.0],[127,128,71,64.0],[127,128,72,64.0],[127,128,73,64.0],[127,128,74,64.0],[127,128,75,64.0],[127,128,76,64.0],[127,128,77,64.0],[127,128,78,64.0],[127,128,79,64.0],[127,129,64,64.0],[127,129,65,64.0],[127,129,66,64.0],[127,129,67,64.0],[127,129,68,64.0],[127,129,69,64.0],[127,129,70,64.0],[127,129,71,64.0],[127,129,72,64.0],[127,129,73,64.0],[127,129,74,64.0],[127,129,75,64.0],[127,129,76,64.0],[127,129,77,64.0],[127,129,78,64.0],[127,129,79,64.0],[127,130,64,64.0],[127,130,65,64.0],[127,130,66,64.0],[127,130,67,64.0],[127,130,68,64.0],[127,130,69,64.0],[127,130,70,64.0],[127,130,71,64.0],[127,130,72,64.0],[127,130,73,64.0],[127,130,74,64.0],[127,130,75,64.0],[127,130,76,64.0],[127,130,77,64.0],[127,130,78,64.0],[127,130,79,64.0],[127,131,64,64.0],[127,131,65,64.0],[127,131,66,64.0],[127,131,67,64.0],[127,131,68,64.0],[127,131,69,64.0],[127,131,70,64.0],[127,131,71,64.0],[127,131,72,64.0],[127,131,73,64.0],[127,131,74,64.0],[127,131,75,64.0],[127,131,76,64.0],[127,131,77,64.0],[127,131,78,64.0],[127,131,79,64.0],[127,132,64,64.0],[127,132,65,64.0],[127,132,66,64.0],[127,132,67,64.0],[127,132,68,64.0],[127,132,69,64.0],[127,132,70,64.0],[127,132,71,64.0],[127,132,72,64.0],[127,132,73,64.0],[127,132,74,64.0],[127,132,75,64.0],[127,132,76,64.0],[127,132,77,64.0],[127,132,78,64.0],[127,132,79,64.0],[127,133,64,64.0],[127,133,65,64.0],[127,133,66,64.0],[127,133,67,64.0],[127,133,68,64.0],[127,133,69,64.0],[127,133,70,64.0],[127,133,71,64.0],[127,133,72,64.0],[127,133,73,64.0],[127,133,74,64.0],[127,133,75,64.0],[127,133,76,64.0],[127,133,77,64.0],[127,133,78,64.0],[127,133,79,64.0],[127,134,64,64.0],[127,134,65,64.0],[127,134,66,64.0],[127,134,67,64.0],[127,134,68,64.0],[127,134,69,64.0],[127,134,70,64.0],[127,134,71,64.0],[127,134,72,64.0],[127,134,73,64.0],[127,134,74,64.0],[127,134,75,64.0],[127,134,76,64.0],[127,134,77,64.0],[127,134,78,64.0],[127,134,79,64.0],[127,135,64,64.0],[127,135,65,64.0],[127,135,66,64.0],[127,135,67,64.0],[127,135,68,64.0],[127,135,69,64.0],[127,135,70,64.0],[127,135,71,64.0],[127,135,72,64.0],[127,135,73,64.0],[127,135,74,64.0],[127,135,75,64.0],[127,135,76,64.0],[127,135,77,64.0],[127,135,78,64.0],[127,135,79,64.0],[127,136,64,64.0],[127,136,65,64.0],[127,136,66,64.0],[127,136,67,64.0],[127,136,68,64.0],[127,136,69,64.0],[127,136,70,64.0],[127,136,71,64.0],[127,136,72,64.0],[127,136,73,64.0],[127,136,74,64.0],[127,136,75,64.0],[127,136,76,64.0],[127,136,77,64.0],[127,136,78,64.0],[127,136,79,64.0],[127,137,64,64.0],[127,137,65,64.0],[127,137,66,64.0],[127,137,67,64.0],[127,137,68,64.0],[127,137,69,64.0],[127,137,70,64.0],[127,137,71,64.0],[127,137,72,64.0],[127,137,73,64.0],[127,137,74,64.0],[127,137,75,64.0],[127,137,76,64.0],[127,137,77,64.0],[127,137,78,64.0],[127,137,79,64.0],[127,138,64,64.0],[127,138,65,64.0],[127,138,66,64.0],[127,138,67,64.0],[127,138,68,64.0],[127,138,69,64.0],[127,138,70,64.0],[127,138,71,64.0],[127,138,72,64.0],[127,138,73,64.0],[127,138,74,64.0],[127,138,75,64.0],[127,138,76,64.0],[127,138,77,64.0],[127,138,78,64.0],[127,138,79,64.0],[127,139,64,64.0],[127,139,65,64.0],[127,139,66,64.0],[127,139,67,64.0],[127,139,68,64.0],[127,139,69,64.0],[127,139,70,64.0],[127,139,71,64.0],[127,139,72,64.0],[127,139,73,64.0],[127,139,74,64.0],[127,139,75,64.0],[127,139,76,64.0],[127,139,77,64.0],[127,139,78,64.0],[127,139,79,64.0],[127,140,64,64.0],[127,140,65,64.0],[127,140,66,64.0],[127,140,67,64.0],[127,140,68,64.0],[127,140,69,64.0],[127,140,70,64.0],[127,140,71,64.0],[127,140,72,64.0],[127,140,73,64.0],[127,140,74,64.0],[127,140,75,64.0],[127,140,76,64.0],[127,140,77,64.0],[127,140,78,64.0],[127,140,79,64.0],[127,141,64,64.0],[127,141,65,64.0],[127,141,66,64.0],[127,141,67,64.0],[127,141,68,64.0],[127,141,69,64.0],[127,141,70,64.0],[127,141,71,64.0],[127,141,72,64.0],[127,141,73,64.0],[127,141,74,64.0],[127,141,75,64.0],[127,141,76,64.0],[127,141,77,64.0],[127,141,78,64.0],[127,141,79,64.0],[127,142,64,64.0],[127,142,65,64.0],[127,142,66,64.0],[127,142,67,64.0],[127,142,68,64.0],[127,142,69,64.0],[127,142,70,64.0],[127,142,71,64.0],[127,142,72,64.0],[127,142,73,64.0],[127,142,74,64.0],[127,142,75,64.0],[127,142,76,64.0],[127,142,77,64.0],[127,142,78,64.0],[127,142,79,64.0],[127,143,64,64.0],[127,143,65,64.0],[127,143,66,64.0],[127,143,67,64.0],[127,143,68,64.0],[127,143,69,64.0],[127,143,70,64.0],[127,143,71,64.0],[127,143,72,64.0],[127,143,73,64.0],[127,143,74,64.0],[127,143,75,64.0],[127,143,76,64.0],[127,143,77,64.0],[127,143,78,64.0],[127,143,79,64.0],[127,144,64,64.0],[127,144,65,64.0],[127,144,66,64.0],[127,144,67,64.0],[127,144,68,64.0],[127,144,69,64.0],[127,144,70,64.0],[127,144,71,64.0],[127,144,72,64.0],[127,144,73,64.0],[127,144,74,64.0],[127,144,75,64.0],[127,144,76,64.0],[127,144,77,64.0],[127,144,78,64.0],[127,144,79,64.0],[127,145,64,64.0],[127,145,65,64.0],[127,145,66,64.0],[127,145,67,64.0],[127,145,68,64.0],[127,145,69,64.0],[127,145,70,64.0],[127,145,71,64.0],[127,145,72,64.0],[127,145,73,64.0],[127,145,74,64.0],[127,145,75,64.0],[127,145,76,64.0],[127,145,77,64.0],[127,145,78,64.0],[127,145,79,64.0],[127,146,64,64.0],[127,146,65,64.0],[127,146,66,64.0],[127,146,67,64.0],[127,146,68,64.0],[127,146,69,64.0],[127,146,70,64.0],[127,146,71,64.0],[127,146,72,64.0],[127,146,73,64.0],[127,146,74,64.0],[127,146,75,64.0],[127,146,76,64.0],[127,146,77,64.0],[127,146,78,64.0],[127,146,79,64.0],[127,147,64,64.0],[127,147,65,64.0],[127,147,66,64.0],[127,147,67,64.0],[127,147,68,64.0],[127,147,69,64.0],[127,147,70,64.0],[127,147,71,64.0],[127,147,72,64.0],[127,147,73,64.0],[127,147,74,64.0],[127,147,75,64.0],[127,147,76,64.0],[127,147,77,64.0],[127,147,78,64.0],[127,147,79,64.0],[127,148,64,64.0],[127,148,65,64.0],[127,148,66,64.0],[127,148,67,64.0],[127,148,68,64.0],[127,148,69,64.0],[127,148,70,64.0],[127,148,71,64.0],[127,148,72,64.0],[127,148,73,64.0],[127,148,74,64.0],[127,148,75,64.0],[127,148,76,64.0],[127,148,77,64.0],[127,148,78,64.0],[127,148,79,64.0],[127,149,64,64.0],[127,149,65,64.0],[127,149,66,64.0],[127,149,67,64.0],[127,149,68,64.0],[127,149,69,64.0],[127,149,70,64.0],[127,149,71,64.0],[127,149,72,64.0],[127,149,73,64.0],[127,149,74,64.0],[127,149,75,64.0],[127,149,76,64.0],[127,149,77,64.0],[127,149,78,64.0],[127,149,79,64.0],[127,150,64,64.0],[127,150,65,64.0],[127,150,66,64.0],[127,150,67,64.0],[127,150,68,64.0],[127,150,69,64.0],[127,150,70,64.0],[127,150,71,64.0],[127,150,72,64.0],[127,150,73,64.0],[127,150,74,64.0],[127,150,75,64.0],[127,150,76,64.0],[127,150,77,64.0],[127,150,78,64.0],[127,150,79,64.0],[127,151,64,64.0],[127,151,65,64.0],[127,151,66,64.0],[127,151,67,64.0],[127,151,68,64.0],[127,151,69,64.0],[127,151,70,64.0],[127,151,71,64.0],[127,151,72,64.0],[127,151,73,64.0],[127,151,74,64.0],[127,151,75,64.0],[127,151,76,64.0],[127,151,77,64.0],[127,151,78,64.0],[127,151,79,64.0],[127,152,64,64.0],[127,152,65,64.0],[127,152,66,64.0],[127,152,67,64.0],[127,152,68,64.0],[127,152,69,64.0],[127,152,70,64.0],[127,152,71,64.0],[127,152,72,64.0],[127,152,73,64.0],[127,152,74,64.0],[127,152,75,64.0],[127,152,76,64.0],[127,152,77,64.0],[127,152,78,64.0],[127,152,79,64.0],[127,153,64,64.0],[127,153,65,64.0],[127,153,66,64.0],[127,153,67,64.0],[127,153,68,64.0],[127,153,69,64.0],[127,153,70,64.0],[127,153,71,64.0],[127,153,72,64.0],[127,153,73,64.0],[127,153,74,64.0],[127,153,75,64.0],[127,153,76,64.0],[127,153,77,64.0],[127,153,78,64.0],[127,153,79,64.0],[127,154,64,64.0],[127,154,65,64.0],[127,154,66,64.0],[127,154,67,64.0],[127,154,68,64.0],[127,154,69,64.0],[127,154,70,64.0],[127,154,71,64.0],[127,154,72,64.0],[127,154,73,64.0],[127,154,74,64.0],[127,154,75,64.0],[127,154,76,64.0],[127,154,77,64.0],[127,154,78,64.0],[127,154,79,64.0],[127,155,64,64.0],[127,155,65,64.0],[127,155,66,64.0],[127,155,67,64.0],[127,155,68,64.0],[127,155,69,64.0],[127,155,70,64.0],[127,155,71,64.0],[127,155,72,64.0],[127,155,73,64.0],[127,155,74,64.0],[127,155,75,64.0],[127,155,76,64.0],[127,155,77,64.0],[127,155,78,64.0],[127,155,79,64.0],[127,156,64,64.0],[127,156,65,64.0],[127,156,66,64.0],[127,156,67,64.0],[127,156,68,64.0],[127,156,69,64.0],[127,156,70,64.0],[127,156,71,64.0],[127,156,72,64.0],[127,156,73,64.0],[127,156,74,64.0],[127,156,75,64.0],[127,156,76,64.0],[127,156,77,64.0],[127,156,78,64.0],[127,156,79,64.0],[127,157,64,64.0],[127,157,65,64.0],[127,157,66,64.0],[127,157,67,64.0],[127,157,68,64.0],[127,157,69,64.0],[127,157,70,64.0],[127,157,71,64.0],[127,157,72,64.0],[127,157,73,64.0],[127,157,74,64.0],[127,157,75,64.0],[127,157,76,64.0],[127,157,77,64.0],[127,157,78,64.0],[127,157,79,64.0],[127,158,64,64.0],[127,158,65,64.0],[127,158,66,64.0],[127,158,67,64.0],[127,158,68,64.0],[127,158,69,64.0],[127,158,70,64.0],[127,158,71,64.0],[127,158,72,64.0],[127,158,73,64.0],[127,158,74,64.0],[127,158,75,64.0],[127,158,76,64.0],[127,158,77,64.0],[127,158,78,64.0],[127,158,79,64.0],[127,159,64,64.0],[127,159,65,64.0],[127,159,66,64.0],[127,159,67,64.0],[127,159,68,64.0],[127,159,69,64.0],[127,159,70,64.0],[127,159,71,64.0],[127,159,72,64.0],[127,159,73,64.0],[127,159,74,64.0],[127,159,75,64.0],[127,159,76,64.0],[127,159,77,64.0],[127,159,78,64.0],[127,159,79,64.0],[127,160,64,64.0],[127,160,65,64.0],[127,160,66,64.0],[127,160,67,64.0],[127,160,68,64.0],[127,160,69,64.0],[127,160,70,64.0],[127,160,71,64.0],[127,160,72,64.0],[127,160,73,64.0],[127,160,74,64.0],[127,160,75,64.0],[127,160,76,64.0],[127,160,77,64.0],[127,160,78,64.0],[127,160,79,64.0],[127,161,64,64.0],[127,161,65,64.0],[127,161,66,64.0],[127,161,67,64.0],[127,161,68,64.0],[127,161,69,64.0],[127,161,70,64.0],[127,161,71,64.0],[127,161,72,64.0],[127,161,73,64.0],[127,161,74,64.0],[127,161,75,64.0],[127,161,76,64.0],[127,161,77,64.0],[127,161,78,64.0],[127,161,79,64.0],[127,162,64,64.0],[127,162,65,64.0],[127,162,66,64.0],[127,162,67,64.0],[127,162,68,64.0],[127,162,69,64.0],[127,162,70,64.0],[127,162,71,64.0],[127,162,72,64.0],[127,162,73,64.0],[127,162,74,64.0],[127,162,75,64.0],[127,162,76,64.0],[127,162,77,64.0],[127,162,78,64.0],[127,162,79,64.0],[127,163,64,64.0],[127,163,65,64.0],[127,163,66,64.0],[127,163,67,64.0],[127,163,68,64.0],[127,163,69,64.0],[127,163,70,64.0],[127,163,71,64.0],[127,163,72,64.0],[127,163,73,64.0],[127,163,74,64.0],[127,163,75,64.0],[127,163,76,64.0],[127,163,77,64.0],[127,163,78,64.0],[127,163,79,64.0],[127,164,64,64.0],[127,164,65,64.0],[127,164,66,64.0],[127,164,67,64.0],[127,164,68,64.0],[127,164,69,64.0],[127,164,70,64.0],[127,164,71,64.0],[127,164,72,64.0],[127,164,73,64.0],[127,164,74,64.0],[127,164,75,64.0],[127,164,76,64.0],[127,164,77,64.0],[127,164,78,64.0],[127,164,79,64.0],[127,165,64,64.0],[127,165,65,64.0],[127,165,66,64.0],[127,165,67,64.0],[127,165,68,64.0],[127,165,69,64.0],[127,165,70,64.0],[127,165,71,64.0],[127,165,72,64.0],[127,165,73,64.0],[127,165,74,64.0],[127,165,75,64.0],[127,165,76,64.0],[127,165,77,64.0],[127,165,78,64.0],[127,165,79,64.0],[127,166,64,64.0],[127,166,65,64.0],[127,166,66,64.0],[127,166,67,64.0],[127,166,68,64.0],[127,166,69,64.0],[127,166,70,64.0],[127,166,71,64.0],[127,166,72,64.0],[127,166,73,64.0],[127,166,74,64.0],[127,166,75,64.0],[127,166,76,64.0],[127,166,77,64.0],[127,166,78,64.0],[127,166,79,0.6536912140372673],[127,167,64,64.0],[127,167,65,64.0],[127,167,66,64.0],[127,167,67,64.0],[127,167,68,64.0],[127,167,69,64.0],[127,167,70,64.0],[127,167,71,64.0],[127,167,72,64.0],[127,167,73,64.0],[127,167,74,64.0],[127,167,75,64.0],[127,167,76,64.0],[127,167,77,64.0],[127,167,78,0.6412640466439868],[127,167,79,0.664647101047618],[127,168,64,64.0],[127,168,65,64.0],[127,168,66,64.0],[127,168,67,64.0],[127,168,68,64.0],[127,168,69,64.0],[127,168,70,64.0],[127,168,71,64.0],[127,168,72,64.0],[127,168,73,64.0],[127,168,74,64.0],[127,168,75,64.0],[127,168,76,64.0],[127,168,77,0.626882090049923],[127,168,78,0.6540309684078147],[127,168,79,0.6770618440996212],[127,169,64,64.0],[127,169,65,64.0],[127,169,66,64.0],[127,169,67,64.0],[127,169,68,64.0],[127,169,69,64.0],[127,169,70,64.0],[127,169,71,64.0],[127,169,72,64.0],[127,169,73,64.0],[127,169,74,64.0],[127,169,75,64.0],[127,169,76,0.611204479645856],[127,169,77,0.6414810600313811],[127,169,78,0.6682037603231353],[127,169,79,0.6908144465421828],[127,170,64,64.0],[127,170,65,64.0],[127,170,66,64.0],[127,170,67,64.0],[127,170,68,64.0],[127,170,69,64.0],[127,170,70,64.0],[127,170,71,64.0],[127,170,72,64.0],[127,170,73,64.0],[127,170,74,64.0],[127,170,75,0.594951450670781],[127,170,76,0.6276078176189285],[127,170,77,0.657396033617159],[127,170,78,0.6836328857417228],[127,170,79,0.7057667323510326],[127,171,64,64.0],[127,171,65,64.0],[127,171,66,64.0],[127,171,67,64.0],[127,171,68,64.0],[127,171,69,64.0],[127,171,70,64.0],[127,171,71,64.0],[127,171,72,64.0],[127,171,73,64.0],[127,171,74,0.5788790011554623],[127,171,75,0.6130796559132662],[127,171,76,0.6452002578365578],[127,171,77,0.6744498044632175],[127,171,78,0.7001528236469615],[127,171,79,0.721764526046992],[127,172,64,64.0],[127,172,65,64.0],[127,172,66,64.0],[127,172,67,64.0],[127,172,68,64.0],[127,172,69,64.0],[127,172,70,64.0],[127,172,71,64.0],[127,172,72,64.0],[127,172,73,0.5631582623907411],[127,172,74,0.5985997102526363],[127,172,75,0.632234113683058],[127,172,76,0.6637786415958784],[127,172,77,0.6924509905992591],[127,172,78,0.7175836669410803],[127,172,79,0.7386389693170587],[127,173,64,64.0],[127,173,65,64.0],[127,173,66,64.0],[127,173,67,64.0],[127,173,68,64.0],[127,173,69,64.0],[127,173,70,64.0],[127,173,71,64.0],[127,173,72,0.5472938543967437],[127,173,73,0.5842934782112295],[127,173,74,0.6191502865474654],[127,173,75,0.6521883248126304],[127,173,76,0.6831280965107062],[127,173,77,0.7111960847131313],[127,173,78,0.7357328776539098],[127,173,79,0.7562079741723162],[127,174,64,64.0],[127,174,65,64.0],[127,174,66,64.0],[127,174,67,64.0],[127,174,68,64.0],[127,174,69,64.0],[127,174,70,64.0],[127,174,71,0.5308353345069584],[127,174,72,0.5696295756928174],[127,174,73,0.6060323714305547],[127,174,74,0.6402844213171465],[127,174,75,0.6727072209594679],[127,174,76,0.7030245690061003],[127,174,77,0.7304716812172604],[127,174,78,0.7543971990729643],[127,174,79,0.7742778126424752],[127,175,64,64.0],[127,175,65,64.0],[127,175,66,64.0],[127,175,67,64.0],[127,175,68,64.0],[127,175,69,64.0],[127,175,70,0.5134040347993549],[127,175,71,0.554125060675314],[127,175,72,0.5923177529914967],[127,175,73,0.6281132335051416],[127,175,74,0.6617510824542491],[127,175,75,0.6935502057327043],[127,175,76,0.7232375528588129],[127,175,77,0.7500568800968068],[127,175,78,0.7733647247945288],[127,175,79,0.7926448430067329],[127,176,64,64.0],[127,176,65,64.0],[127,176,66,64.0],[127,176,67,64.0],[127,176,68,64.0],[127,176,69,0.49467958490812197],[127,176,70,0.5373731702706461],[127,176,71,0.5774966830892606],[127,176,72,0.6150865100486426],[127,176,73,0.6502741886494411],[127,176,74,0.6832980867545551],[127,176,75,0.7144744104763026],[127,176,76,0.7435330137841962],[127,176,77,0.7697258675401084],[127,176,78,0.7924171246963263],[127,176,79,0.8110973725615127],[127,177,64,64.0],[127,177,65,64.0],[127,177,66,64.0],[127,177,67,64.0],[127,177,68,0.47449626304846526],[127,177,69,0.5191339632809496],[127,177,70,0.5612392129095234],[127,177,71,0.6007677853024056],[127,177,72,0.6377576702581287],[127,177,73,0.6723406617218107],[127,177,74,0.7047537674748996],[127,177,75,0.7353103514667436],[127,177,76,0.7637428668556143],[127,177,77,0.7893110869555298],[127,177,78,0.8113864269440271],[127,177,79,0.8294660127376828],[127,178,64,64.0],[127,178,65,64.0],[127,178,66,64.0],[127,178,67,0.46616359451645206],[127,178,68,0.49972263666042976],[127,178,69,0.5437692227666233],[127,178,70,0.5852726994152921],[127,178,71,0.6241913640021876],[127,178,72,0.6605646787782649],[127,178,73,0.6945246064203089],[127,178,74,0.7263067553280176],[127,178,75,0.7562216485089495],[127,178,76,0.7840041623834035],[127,178,77,0.8089215716720182],[127,178,78,0.8303523296269765],[127,178,79,0.8477999553116349],[127,179,64,64.0],[127,179,65,64.0],[127,179,66,0.5094578852387918],[127,179,67,0.49075271612871163],[127,179,68,0.5254725539144667],[127,179,69,0.568900927381577],[127,179,70,0.6097720530089915],[127,179,71,0.6480466089477576],[127,179,72,0.6837654591852869],[127,179,73,0.7170607430568019],[127,179,74,0.7481667624661272],[127,179,75,0.7773913675275003],[127,179,76,0.8044718360564371],[127,179,77,0.8286827794211498],[127,179,78,0.8494096170838434],[127,179,79,0.8661622836389334],[127,180,64,64.0],[127,180,65,0.5543213293161591],[127,180,66,0.5336972070162628],[127,180,67,0.512491643095829],[127,180,68,0.551937533858549],[127,180,69,0.5947104832167757],[127,180,70,0.6349069601334876],[127,180,71,0.6724898920559637],[127,180,72,0.7075015142116257],[127,180,73,0.74007422038434],[127,180,74,0.7704411995699253],[127,180,75,0.7989079272150608],[127,180,76,0.8252141763548972],[127,180,77,0.8486418262626586],[127,180,78,0.8685832986041249],[127,180,79,0.884555085627508],[127,181,64,0.5995716347589425],[127,181,65,0.5773803003215916],[127,181,66,0.5544758354372502],[127,181,67,0.5346138993917509],[127,181,68,0.5791877120244397],[127,181,69,0.6212622563755406],[127,181,70,0.6607348717632503],[127,181,71,0.6975706040281486],[127,181,72,0.7318130521832604],[127,181,73,0.7635949892680863],[127,181,74,0.7931487574071749],[127,181,75,0.8207778526183457],[127,181,76,0.846224718582033],[127,181,77,0.8687784945743575],[127,181,78,0.8878387093021178],[127,181,79,0.902928632078513],[127,182,64,0.6205471980314081],[127,182,65,0.5963074355647997],[127,182,66,0.5712526060012327],[127,182,67,0.5633235523452272],[127,182,68,0.6071888111927699],[127,182,69,0.6485199958226452],[127,182,70,0.6872168305564764],[127,182,71,0.7232463399731479],[127,182,72,0.7566534876550121],[127,182,73,0.7875715775969265],[127,182,74,0.8162324182786733],[127,182,75,0.842937988596894],[127,182,76,0.8674336298068523],[127,182,77,0.8890157637533982],[127,182,78,0.9070911659762376],[127,182,79,0.9211901424750807],[127,183,64,0.6368903956854333],[127,183,65,0.6107313285666123],[127,183,66,0.5836709199507731],[127,183,67,0.5926982555275325],[127,183,68,0.6358183335417629],[127,183,69,0.6763624986266312],[127,183,70,0.7142325639889032],[127,183,71,0.7493973770244259],[127,183,72,0.7819032622850592],[127,183,73,0.8118842156864334],[127,183,74,0.8395718499570766],[127,183,75,0.8652671292380681],[127,183,76,0.8887185443786314],[127,183,77,0.9092298269421596],[127,183,78,0.9262151449689275],[127,183,79,0.939212108959896],[127,184,64,0.6484104030566893],[127,184,65,0.6204720914295578],[127,184,66,0.591562403219319],[127,184,67,0.6225386347111873],[127,184,68,0.6648809741791881],[127,184,69,0.7045985175949415],[127,184,70,0.7415948434689189],[127,184,71,0.7758404439509692],[127,184,72,0.8073829859483105],[127,184,73,0.8363573121728299],[127,184,74,0.8629951821182292],[127,184,75,0.8875970632279353],[127,184,76,0.9099148500129205],[127,184,77,0.9292595937784491],[127,184,78,0.9450529820268535],[127,184,79,0.956840178501312],[127,185,64,0.6551152616923709],[127,185,65,0.6255457801751869],[127,185,66,0.608518176421541],[127,185,67,0.6525851509256969],[127,185,68,0.6941232560582992],[127,185,69,0.7329809113026071],[127,185,70,0.7690631094347004],[127,185,71,0.8023417827626499],[127,185,72,0.8328658980893251],[127,185,73,0.8607712803986278],[127,185,74,0.8862901652656672],[127,185,75,0.9097230351786835],[127,185,76,0.9308254244496785],[127,185,77,0.9489156791706348],[127,185,78,0.9634230941619846],[127,185,79,0.9739005932485821],[127,186,64,0.6572170016343744],[127,186,65,0.6261693864958692],[127,186,66,0.6392258748971279],[127,186,67,0.6825323821844334],[127,186,68,0.7232473862774181],[127,186,69,0.7612200365141547],[127,186,70,0.79635636243304],[127,186,71,0.8286295023097274],[127,186,72,0.8580896493144634],[127,186,73,0.8848737152896303],[127,186,74,0.9092147121479831],[127,186,75,0.9314136229122689],[127,186,76,0.9512298226832349],[127,186,77,0.9679888780974093],[127,186,78,0.9811277235132685],[127,186,79,0.9902071890759236],[127,187,64,0.6551373090657931],[127,187,65,0.624498992890012],[127,187,66,0.6695015471663043],[127,187,67,0.7120425082803539],[127,187,68,0.7519243337627017],[127,187,69,0.7889963829982862],[127,187,70,0.823165320179429],[127,187,71,0.8544052238760699],[127,187,72,0.8827674032228534],[127,187,73,0.9083899207228914],[127,187,74,0.9315068216686639],[127,187,75,0.9524200306999147],[127,187,76,0.97089291476372],[127,187,77,0.9862581264318494],[127,187,78,0.9979602032085754],[127,187,79,1.0055679523151064],[127,188,64,0.6494906813194614],[127,188,65,0.6546676810490082],[127,188,66,0.698979022436814],[127,188,67,0.7407579986514188],[127,188,68,0.7798061283349493],[127,188,69,0.8159724507361651],[127,188,70,0.8491638406002169],[127,188,71,0.879355018766891],[127,188,72,0.906598258476949],[127,188,73,0.931032787386399],[127,188,74,0.9528938852891391],[127,188,75,0.9724847984581821],[127,188,76,0.9895729741706563],[127,188,77,1.0034979477904276],[127,188,78,1.0137117452275535],[127,188,79,1.0197911346771773],[127,189,64,0.6403908061866902],[127,189,65,0.6836490500784776],[127,189,66,0.7272840512194761],[127,189,67,0.7683135033152754],[127,189,68,0.8065373811600178],[127,189,69,0.8418038695228905],[127,189,70,0.8740196108564274],[127,189,71,0.9031596378905951],[127,189,72,0.9292769911122896],[127,189,73,0.9525120211300856],[127,189,74,0.9731013759246613],[127,189,75,0.9913499269012378],[127,189,76,1.007029216758347],[127,189,77,1.019485386406632],[127,189,78,1.0281777502650442],[127,189,79,1.032690926362987],[127,190,64,0.6656438851153847],[127,190,65,0.7110645103658618],[127,190,66,0.754045723556985],[127,190,67,0.7943469468727945],[127,190,68,0.8317660265824418],[127,190,69,0.8661497609617614],[127,190,70,0.8974041023488524],[127,190,71,0.9255040333343608],[127,190,72,0.9505031170860938],[127,190,73,0.972542721807825],[127,190,74,0.9918609193326862],[127,190,75,1.0087644186490077],[127,190,76,1.0230287902727668],[127,190,77,1.034006426028914],[127,190,78,1.0411636395948138],[127,190,79,1.0440926873622884],[127,191,64,0.6916822632181104],[127,191,65,0.7365498707636025],[127,191,66,0.7789070747788885],[127,191,67,0.8185098255813001],[127,191,68,0.855153285343083],[127,191,69,0.8886823428521353],[127,191,70,0.9190017917052056],[127,191,71,0.9460861719342283],[127,191,72,0.9699892750654387],[127,191,73,0.9908533126111314],[127,191,74,1.008917747994445],[127,191,75,1.024491235291877],[127,191,76,1.037353214440584],[127,191,77,1.0468618948435595],[127,191,78,1.0524902089341526],[127,191,79,1.053837736941927],[127,192,64,0.715416307477167],[127,192,65,0.7597654026922699],[127,192,66,0.8015348787823072],[127,192,67,0.8404767074970603],[127,192,68,0.876382849180385],[127,192,69,0.9090957759704774],[127,192,70,0.9385186477489375],[127,192,71,0.9646251408392941],[127,192,72,0.9874689294546283],[127,192,73,1.0071928198941893],[127,192,74,1.0240375374893464],[127,192,75,1.0383136704115892],[127,192,76,1.049804271629987],[127,192,77,1.057872856422173],[127,192,78,1.0619985043090503],[127,192,79,1.0617877013228472],[127,193,64,0.7365357301702373],[127,193,65,0.7804050790289824],[127,193,66,0.8216286288379789],[127,193,67,0.8599539356866446],[127,193,68,0.8951692868148464],[127,193,69,0.9271142532442058],[127,193,70,0.955689884449336],[127,193,71,0.9808685450696553],[127,193,72,1.0027033936614196],[127,193,73,1.021337503489881],[127,193,74,1.037012625361897],[127,193,75,1.050041138558049],[127,193,76,1.0602093480830275],[127,193,77,1.0668854866935067],[127,193,78,1.0695542199196968],[127,193,79,1.067828419545683],[127,194,64,0.7547735975617693],[127,194,65,0.7982049877819806],[127,194,66,0.8389287059224882],[127,194,67,0.8766875345079737],[127,194,68,0.9112656713175212],[127,194,69,0.9424993313191385],[127,194,70,0.9702869798536885],[127,194,71,0.9945991970688586],[127,194,72,1.0154881736028245],[127,194,73,1.033096837517517],[127,194,74,1.0476676124818054],[127,194,75,1.0595143801826619],[127,194,76,1.06842622572009],[127,194,77,1.0737754369402033],[127,194,78,1.0750516180068475],[127,194,79,1.071873407525436],[127,195,64,0.7699141373677872],[127,195,65,0.8129509205508454],[127,195,66,0.8532237345761753],[127,195,67,0.8904703189605776],[127,195,68,0.9244704288620742],[127,195,69,0.9550565045200728],[127,195,70,0.9821239610010534],[127,195,71,1.0056410982504045],[127,195,72,1.0256586314500566],[127,195,73,1.0423188416818436],[127,195,74,1.0558643468968756],[127,195,75,1.0666100825278315],[127,195,76,1.074347324516117],[127,195,77,1.0784516828201125],[127,195,78,1.0784169707187194],[127,195,79,1.0738668802949234],[127,196,64,0.7817996581262426],[127,196,65,0.8244850807915192],[127,196,66,0.8643570695374564],[127,196,67,0.9011481488726775],[127,196,68,0.9346333494280195],[127,196,69,0.9646409608461565],[127,196,70,0.9910628937906112],[127,196,71,1.0138646510747422],[127,196,72,1.033094907910385],[127,196,73,1.0488947012760648],[127,196,74,1.0615062284050758],[127,196,75,1.0712448547507938],[127,196,76,1.0779033338478283],[127,196,77,1.0808597981050414],[127,196,78,1.0796114632251843],[127,196,79,1.0737862725683012],[127,197,64,0.790251741233322],[127,197,65,0.832623961846906],[127,197,66,0.8721417912993255],[127,197,67,0.908532478833666],[127,197,68,0.9415661236686492],[127,197,69,0.9710665233418334],[127,197,70,0.9969216196012103],[127,197,71,1.0190935418457912],[127,197,72,1.037628248114844],[127,197,73,1.0526647636257314],[127,197,74,1.064444016860603],[127,197,75,1.0732808946231953],[127,197,76,1.0789688344206434],[127,197,77,1.08088779305018],[127,197,78,1.0785376494914563],[127,197,79,1.0715498254468256],[127,198,64,0.7949182274115114],[127,198,65,0.8370006309864596],[127,198,66,0.8761990114741511],[127,198,67,0.9122354123339885],[127,198,68,0.9448748616513255],[127,198,69,0.9739363207453139],[127,198,70,0.9993032181277369],[127,198,71,1.020933568813405],[127,198,72,1.0388696789817864],[127,198,73,1.0532474359898265],[127,198,74,1.0643051837361952],[127,198,75,1.0723558774885156],[127,198,76,1.0771929091179446],[127,198,77,1.0781979255903893],[127,198,78,1.0748731913993606],[127,198,79,1.0668531811864657],[127,199,64,0.7955048595080779],[127,199,65,0.8373065208496111],[127,199,66,0.8762084874274345],[127,199,67,0.9119277892648044],[127,199,68,0.9442243079840679],[127,199,69,0.9729118235042977],[127,199,70,0.9978686330478419],[127,199,71,1.0190477424563682],[127,199,72,1.0364866298160635],[127,199,73,1.0503165813919586],[127,199,74,1.0607715998716054],[127,199,75,1.06816074372884],[127,199,76,1.0722767099080497],[127,199,77,1.072503266379286],[127,199,78,1.0683452492938712],[127,199,79,1.0594401125733874],[127,200,64,0.7918224775217392],[127,200,65,0.8333404763376173],[127,200,66,0.8719592508751123],[127,200,67,0.9073911215575967],[127,200,68,0.9393908112654628],[127,200,69,0.967766581823614],[127,200,70,0.992390928737779],[127,200,71,1.0132108341802097],[127,200,72,1.030257578224441],[127,200,73,1.043656108329069],[127,200,74,1.0536339670707864],[127,200,75,1.0604939273375635],[127,200,76,1.0640274111982109],[127,200,77,1.0636212110692493],[127,200,78,1.058783308166122],[127,200,79,1.0491543547778965],[127,201,64,0.7837820420746426],[127,201,65,0.8250035492557398],[127,201,66,0.8633441862083233],[127,201,67,0.8985119676785503],[127,201,68,0.9302565068455037],[127,201,69,0.9583802279814333],[127,201,70,0.9827491221512816],[127,201,71,1.0033030459520684],[127,201,72,1.0200655632917992],[127,201,73,1.0331533302078717],[127,201,74,1.042785022725198],[127,201,75,1.0492544004839284],[127,201,76,1.052351091374048],[127,201,77,1.0514662033784596],[127,201,78,1.0461117534653555],[127,201,79,1.035932050799893],[127,202,64,0.7713891214438474],[127,202,65,0.8122932723712307],[127,202,66,0.8503541060135822],[127,202,67,0.8852758240487251],[127,202,68,0.9168030381915263],[127,202,69,0.944732040850672],[127,202,70,0.9689216023734764],[127,202,71,0.9893032948792863],[127,202,72,1.005891342681155],[127,202,73,1.0187919992957541],[127,202,74,1.0282124510417443],[127,202,75,1.0344344581458855],[127,202,76,1.037245388975298],[127,202,77,1.0360422680831756],[127,202,78,1.0303422924695056],[127,202,79,1.019794078086991],[127,203,64,0.7547378421524797],[127,203,65,0.7952974128872994],[127,203,66,0.83307132378852],[127,203,67,0.8677605333901903],[127,203,68,0.899104816859388],[127,203,69,0.9268940726257493],[127,203,70,0.950979137849973],[127,203,71,0.9712821127318708],[127,203,72,0.9878061936576297],[127,203,73,1.0006450151862585],[127,203,74,1.0099915008754394],[127,203,75,1.0161122428113685],[127,203,76,1.0187919335079734],[127,203,77,1.0174353539353238],[127,203,78,1.0115662212144596],[127,203,79,1.0008382563253277],[127,204,64,0.7340043031203908],[127,204,65,0.7741872053328783],[127,204,66,0.8116627238530324],[127,204,67,0.8461292099979554],[127,204,68,0.8773218210697461],[127,204,69,0.9050238377545442],[127,204,70,0.9290774712909947],[127,204,71,0.9493941604086857],[127,204,72,0.9659643580362419],[127,204,73,0.9788668077790286],[127,204,74,0.9882773101667035],[127,204,75,0.9944440092478852],[127,204,76,0.9971485508928427],[127,204,77,0.9958054865053231],[127,204,78,0.9899465369819471],[127,204,79,0.9792314364030247],[127,205,64,0.7094394533744319],[127,205,65,0.7492100638683162],[127,205,66,0.7863723284559401],[127,205,67,0.8206226819378083],[127,205,68,0.8516919328895268],[127,205,69,0.8793565640756514],[127,205,70,0.903449502250637],[127,205,71,0.9238703573474638],[127,205,72,0.9405951310536049],[127,205,73,0.9536853947742968],[127,205,74,0.9632969369833558],[127,205,75,0.9696561293404994],[127,205,76,0.9725412435502925],[127,205,77,0.9713787309502092],[127,205,78,0.9657098963461069],[127,205,79,0.95520147054635],[127,206,64,0.6813614333183031],[127,206,65,0.7206817740069433],[127,206,66,0.7575133620771275],[127,206,67,0.7915514501700165],[127,206,68,0.8225228140185588],[127,206,69,0.8501970061608997],[127,206,70,0.874397057381227],[127,206,71,0.8950096258786076],[127,206,72,0.911994594163501],[127,206,73,0.9253941136818895],[127,206,74,0.9353410971672823],[127,206,75,0.942036836998169],[127,206,76,0.9452559451215499],[127,206,77,0.9444389647070239],[127,206,78,0.9391384187787033],[127,206,79,0.929029063628546],[127,207,64,0.6501473795618671],[127,207,65,0.6889781637524123],[127,207,66,0.7254598129250445],[127,207,67,0.759287164598795],[127,207,68,0.7901833201812584],[127,207,69,0.8179108208630381],[127,207,70,0.8422822483626818],[127,207,71,0.8631702505226881],[127,207,72,0.8805169917562458],[127,207,73,0.8943430283446558],[127,207,74,0.9047556085856948],[127,207,75,0.9119277131283716],[127,207,76,0.9156300498261905],[127,207,77,0.9153194601114105],[127,207,78,0.9105613358129299],[127,207,79,0.901039505651273],[127,208,64,0.6162246933102575],[127,208,65,0.65452625415213],[127,208,66,0.6906374916299018],[127,208,67,0.7242536170478443],[127,208,68,0.7550944541236841],[127,208,69,0.7829155050688789],[127,208,70,0.8075184175071584],[127,208,71,0.8287608522319145],[127,208,72,0.8465657518021021],[127,208,73,0.8609300099765875],[127,208,74,0.8719325419872229],[127,208,75,0.8797149106802434],[127,208,76,0.8840437164561538],[127,208,77,0.8843942769416211],[127,208,78,0.8803464857660074],[127,208,79,0.8715942853988569],[127,209,64,0.5800617723123844],[127,209,65,0.6177948892663929],[127,209,66,0.6535145871321622],[127,209,67,0.6869172511615886],[127,209,68,0.7177198572155766],[127,209,69,0.7456708956575445],[127,209,70,0.7705606710386391],[127,209,71,0.7922309775752413],[127,209,72,0.810584150418426],[127,209,73,0.8255914927153061],[127,209,74,0.8373010784625453],[127,209,75,0.8458201197559515],[127,209,76,0.8509109470059929],[127,209,77,0.8520694648876739],[127,209,78,0.8488916540203132],[127,209,79,0.8410825852650992],[127,210,64,0.5421582063689387],[127,210,65,0.5792848455533297],[127,210,66,0.6145917197664368],[127,210,67,0.6477771892322063],[127,210,68,0.6785558396574941],[127,210,69,0.7066692316639129],[127,210,70,0.7318960000475573],[127,210,71,0.7540613028672006],[127,210,72,0.7730456203606282],[127,210,73,0.7887929036890108],[127,210,74,0.8013180735096408],[127,210,75,0.810691272790376],[127,210,76,0.8166704399394408],[127,210,77,0.8187740759457443],[127,210,78,0.8166157588631338],[127,210,79,0.8099126572527298],[127,211,64,0.503034436400306],[127,211,65,0.5395184206700485],[127,211,66,0.5743914915411839],[127,211,67,0.6073547759528504],[127,211,68,0.6381209492934184],[127,211,69,0.6664247786476267],[127,211,70,0.6920329891208081],[127,211,71,0.7147534532408135],[127,211,72,0.7344437034372897],[127,211,73,0.751018767598205],[127,211,74,0.764458327703965],[127,211,75,0.7747929897993953],[127,211,76,0.78177621809256],[127,211,77,0.7849509867380415],[127,211,78,0.7839498828852702],[127,211,79,0.7785030801457264],[127,212,64,0.46322087707372717],[127,212,65,0.4990285016893401],[127,212,66,0.5334475336135533],[127,212,67,0.5661826390964112],[127,212,68,0.5969450790282036],[127,212,69,0.6254630152670598],[127,212,70,0.6514911126465615],[127,212,71,0.6748194366639889],[127,212,72,0.6952816468488652],[127,212,73,0.7127624858116587],[127,212,74,0.7272045639730309],[127,212,75,0.7385967636962728],[127,212,76,0.7466880312130081],[127,212,77,0.7510475307577202],[127,212,78,0.7513281499380747],[127,212,79,0.7472738978540917],[127,213,64,0.42324650299002875],[127,213,65,0.45834711273225653],[127,213,66,0.4922930509597139],[127,213,67,0.5247932671201553],[127,213,68,0.5555581128501945],[127,213,69,0.5843093820585613],[127,213,70,0.610789618794185],[127,213,71,0.6347706928997381],[127,213,72,0.6560616434502884],[127,213,73,0.6745157899769155],[127,213,74,0.6900371114756958],[127,213,75,0.702570885676447],[127,213,76,0.7118615331357044],[127,213,77,0.7175059405391099],[127,213,78,0.7191784476491889],[127,213,79,0.7166376389313593],[127,214,64,0.38362689843028025],[127,214,65,0.417993442016913],[127,214,66,0.451448864240986],[127,214,67,0.4837071036965543],[127,214,68,0.5144781104593209],[127,214,69,0.5434775924212626],[127,214,70,0.5704360011695554],[127,214,71,0.5951067574104454],[127,214,72,0.6172737159377119],[127,214,73,0.636757870145555],[127,214,74,0.6534232960863466],[127,214,75,0.6671701106708805],[127,214,76,0.6777382335950402],[127,214,77,0.6847535997533859],[127,214,78,0.6879129954970882],[127,214,79,0.6869902172649095],[127,215,64,0.3448517706616686],[127,215,65,0.37846134832281686],[127,215,66,0.4114109488651087],[127,215,67,0.44342015916964317],[127,215,68,0.4741990305000179],[127,215,69,0.5034575058068322],[127,215,70,0.53091405814516],[127,215,71,0.5563035402056411],[127,215,72,0.5793842449588441],[127,215,73,0.5999441774127025],[127,215,74,0.6178065374835057],[127,215,75,0.6328250628675454],[127,215,76,0.644735224673237],[127,215,77,0.6531931052293128],[127,215,78,0.6579187584440984],[127,215,79,0.6587017139387927],[127,216,64,0.30737192680294284],[127,216,65,0.34020634687107243],[127,216,66,0.372637471242979],[127,216,67,0.40439113893725076],[127,216,68,0.4351779923993177],[127,216,69,0.46470256311450475],[127,216,70,0.4926715398653102],[127,216,71,0.5188012196335741],[127,216,72,0.5428241411471801],[127,216,73,0.5644949010710787],[127,216,74,0.5835951528431383],[127,216,75,0.5999313813012923],[127,216,76,0.6132346818850913],[127,216,77,0.6231921388992916],[127,216,78,0.6295477061280987],[127,216,79,0.632107040269264],[127,217,64,0.2715857142497935],[127,217,65,0.30363207462081354],[127,217,66,0.33553532224120264],[127,217,67,0.36702808875941484],[127,217,68,0.39782207681040327],[127,217,69,0.4276167842916595],[127,217,70,0.4561073829267217],[127,217,71,0.4829917511168256],[127,217,72,0.5079766610803436],[127,217,73,0.5307831202797729],[127,217,74,0.5511508671368186],[127,217,75,0.5688386055122518],[127,217,76,0.5835731398992281],[127,217,77,0.5950731496708047],[127,217,78,0.6031069176129885],[127,217,79,0.6074964820130806],[127,218,64,0.25561660112986667],[127,218,65,0.2690762349811675],[127,218,66,0.3004461478297863],[127,218,67,0.3316745569923459],[127,218,68,0.36247466466101536],[127,218,69,0.39254132813937664],[127,218,70,0.42155853273392185],[127,218,71,0.44920599083146084],[127,218,72,0.4751648671620674],[127,218,73,0.49912263024731557],[127,218,74,0.5207770300343786],[127,218,75,0.5398388012724213],[127,218,76,0.5560305428955603],[127,218,77,0.5691028452230026],[127,218,78,0.5788485316976905],[127,218,79,0.5851061247483769],[127,219,64,0.2511770436390333],[127,219,65,0.24808031424692323],[127,219,66,0.2676318769252933],[127,219,67,0.29859527374824485],[127,219,68,0.3294013148070093],[127,219,69,0.3597406143232411],[127,219,70,0.38928635352974006],[127,219,71,0.4177004343299512],[127,219,72,0.44463873142803717],[127,219,73,0.46975544292925053],[127,219,74,0.4927065394112114],[127,219,75,0.5131549263806012],[127,219,76,0.5308190695590932],[127,219,77,0.5454814937285466],[127,219,78,0.5569595427838014],[127,219,79,0.5651081604282104],[127,220,64,0.24138533883919294],[127,220,65,0.23770343947430786],[127,220,66,0.23725974642982017],[127,220,67,0.2679613469813221],[127,220,68,0.29877518029138894],[127,220,69,0.3293880075897197],[127,220,70,0.3594626261011864],[127,220,71,0.38864357010816175],[127,220,72,0.41656188327586896],[127,220,73,0.4428389622404601],[127,220,74,0.46708947146046687],[127,220,75,0.4889289365258851],[127,220,76,0.5080717327102638],[127,220,77,0.5243320355008763],[127,220,78,0.5375514423020241],[127,220,79,0.5476010751068846],[127,221,64,0.22648990251667497],[127,221,65,0.22244453868533054],[127,221,66,0.21726872719517848],[127,221,67,0.23983497549934596],[127,221,68,0.27066196320817876],[127,221,69,0.30155106418748956],[127,221,70,0.332155133160135],[127,221,71,0.36210184811585044],[127,221,72,0.390998001118701],[127,221,73,0.41843283378176227],[127,221,74,0.4439804174096985],[127,221,75,0.46720963121931514],[127,221,76,0.48783075357146366],[127,221,77,0.5056890045665958],[127,221,78,0.5206497056971209],[127,221,79,0.5325997178388392],[127,222,64,0.20682153719687718],[127,222,65,0.20262781378298236],[127,222,66,0.19732456596956244],[127,222,67,0.21415367890107445],[127,222,68,0.24500440817146957],[127,222,69,0.27617634049404893],[127,222,70,0.30731283239912155],[127,222,71,0.33802526321097004],[127,222,72,0.36789684796268096],[127,222,73,0.3964854690810397],[127,222,74,0.4233255268421999],[127,222,75,0.44794023979391184],[127,222,76,0.47003571066993366],[127,222,77,0.4894872601631455],[127,222,78,0.5061831249715378],[127,222,79,0.5200252507502311],[127,223,64,0.1827933608407657],[127,223,65,0.17865358857484714],[127,223,66,0.1734328589456928],[127,223,67,0.19071404443984416],[127,223,68,0.2216063343899043],[127,223,69,0.253073763847856],[127,223,70,0.28475061722248735],[127,223,71,0.31623255355799706],[127,223,72,0.34707995090854543],[127,223,73,0.3768202443490819],[127,223,74,0.40494925762319456],[127,223,75,0.4309457474732278],[127,223,76,0.4545114633771616],[127,223,77,0.47555052816186355],[127,223,78,0.49397298678777835],[127,223,79,0.5096949802832632],[127,224,64,0.15490020089971027],[127,224,65,0.15099711339317612],[127,224,66,0.14604767617120742],[127,224,67,0.16915499081272575],[127,224,68,0.20011620634603156],[127,224,69,0.23190056558545347],[127,224,70,0.2641336651523584],[127,224,71,0.29639601396979565],[127,224,72,0.32822592457684224],[127,224,73,0.35912137374972586],[127,224,74,0.3885408324304996],[127,224,75,0.41591996150808064],[127,224,76,0.4409558500844775],[127,224,77,0.4635797524161832],[127,224,78,0.48372209612931555],[127,224,79,0.5013120696130953],[127,225,64,0.12371745372747797],[127,225,65,0.12020681879918525],[127,225,66,0.1193799355551013],[127,225,67,0.14905305693265705],[127,225,68,0.18011894332264683],[127,225,69,0.2122497100026513],[127,225,70,0.24506262154244024],[127,225,71,0.27812360535111835],[127,225,72,0.31094971109909775],[127,225,73,0.3430105160144945],[127,225,74,0.3737284760547604],[127,225,75,0.4024976675514107],[127,225,76,0.4290100759220662],[127,225,77,0.45322204855273845],[127,225,78,0.4750826483586681],[127,225,79,0.4945326933369672],[127,226,64,0.08989940935090135],[127,226,65,0.08690201837303271],[127,226,66,0.1008391916607848],[127,226,67,0.13040623530896372],[127,226,68,0.1616038200923368],[127,226,69,0.19410185562557208],[127,226,70,0.22750977376920717],[127,226,71,0.2613796551842658],[127,226,72,0.295208279677754],[127,226,73,0.32843810033861515],[127,226,74,0.36045714146498287],[127,226,75,0.39061966592411734],[127,226,76,0.418612096322887],[127,226,77,0.4444135873105284],[127,226,78,0.4679898636723463],[127,226,79,0.4892917552823789],[127,227,64,0.05408608510373923],[127,227,65,0.05649369230797241],[127,227,66,0.08385030050623517],[127,227,67,0.1133307158229554],[127,227,68,0.14467281526048203],[127,227,69,0.17754475086003496],[127,227,70,0.2115488068880772],[127,227,71,0.24622416059404498],[127,227,72,0.2810485465390336],[127,227,73,0.31543882449499194],[127,227,74,0.3487504509153078],[127,227,75,0.38029993783129873],[127,227,76,0.40976772642243375],[127,227,77,0.43715332052992495],[127,227,78,0.46243697571305364],[127,227,79,0.4855777762856326],[127,228,64,0.016913573337520624],[127,228,65,0.04144540685610938],[127,228,66,0.06850085748912149],[127,228,67,0.097900610236499],[127,228,68,0.1293861781438203],[127,228,69,0.1626245467888602],[127,228,70,0.1972117044344786],[127,228,71,0.23267505784867198],[127,228,72,0.26847473379137365],[127,228,73,0.30400376616754515],[127,228,74,0.3385871688474631],[127,228,75,0.3715060395134196],[127,228,76,0.4024344754496124],[127,228,77,0.43138974300785027],[127,228,78,0.4583643829439966],[127,228,79,0.48332387895367585],[127,229,64,0.004055861021773549],[127,229,65,0.028083427750805023],[127,229,66,0.05483878947303822],[127,229,67,0.0841509588724384],[127,229,68,0.11576553405348215],[127,229,69,0.14934904892110046],[127,229,70,0.1844921940264922],[127,229,71,0.2207119078796415],[127,229,72,0.25745233872813644],[127,229,73,0.29408467680179984],[127,229,74,0.3299058570240751],[127,229,75,0.3641641506029452],[127,229,76,0.39652701788573946],[127,229,77,0.427026815670794],[127,229,78,0.45566605193463755],[127,229,79,0.48241469728854675],[127,230,64,-0.007090887899996165],[127,230,65,0.01643090418048096],[127,230,66,0.04287570826675674],[127,230,67,0.07208112120119987],[127,230,68,0.10379735725386376],[127,230,69,0.13769131821732294],[127,230,70,0.173349521795309],[127,230,71,0.2102798882860012],[127,230,72,0.24791238555955564],[127,230,73,0.28559853232937593],[127,230,74,0.32260975971808714],[127,230,75,0.3581643247107704],[127,230,76,0.3919228381553293],[127,230,77,0.4239300327535618],[127,230,78,0.4541960343647127],[127,230,79,0.48269336907151883],[127,231,64,-0.016526826718447324],[127,231,65,0.006477653174207468],[127,231,66,0.032590597874396166],[127,231,67,0.06165848837811],[127,231,68,0.09343675177938221],[127,231,69,0.12759356367194502],[127,231,70,0.1637124999625983],[127,231,71,0.20129403809714708],[127,231,72,0.23975590769849606],[127,231,73,0.2784322906163834],[127,231,74,0.3165718703897441],[127,231,75,0.3533658950942594],[127,231,76,0.3884680029446815],[127,231,77,0.4219325881351819],[127,231,78,0.45377505375449095],[127,231,79,0.4839685676652784],[127,232,64,-0.020391223968239544],[127,232,65,-0.0018157933656604702],[127,232,66,0.023933835516723095],[127,232,67,0.05282251773163976],[127,232,68,0.08461154010931021],[127,232,69,0.11897132645282445],[127,232,70,0.1554838275649697],[127,232,71,0.1936437552943211],[127,232,72,0.2328586606001879],[127,232,73,0.27244785563587637],[127,232,74,0.31164017985128706],[127,232,75,0.34960303540700954],[127,232,76,0.38598306114836756],[127,232,77,0.42084164083204745],[127,232,78,0.4541971619213372],[127,232,79,0.48602157323417633],[127,233,64,0.02346850644245488],[127,233,65,0.02315144772173576],[127,233,66,0.023508626005241368],[127,233,67,0.045489089202093574],[127,233,68,0.07722665970023947],[127,233,69,0.11171795559766415],[127,233,70,0.14854468432511808],[127,233,71,0.18719754709042097],[127,233,72,0.22707606515558285],[127,233,73,0.26748724836404436],[127,233,74,0.3076431059190652],[127,233,75,0.346690475530093],[127,233,76,0.3842690714434085],[127,233,77,0.42044467964812826],[127,233,78,0.45523646516245153],[127,233,79,0.4886133833824744],[127,234,64,0.06798894197120843],[127,234,65,0.06768664842266346],[127,234,66,0.06800568604575576],[127,234,67,0.06878123860348456],[127,234,68,0.0711688673764253],[127,234,69,0.1057093752674772],[127,234,70,0.14275959766988305],[127,234,71,0.18180803296833847],[127,234,72,0.2222483816385234],[127,234,73,0.2633779844003094],[127,234,74,0.30439510455322183],[127,234,75,0.3444293724849074],[127,234,76,0.38311375749125276],[127,234,77,0.4205159869823399],[127,234,78,0.45665392016385076],[127,234,79,0.4914918632106224],[127,235,64,0.11295057872436738],[127,235,65,0.1128526821063],[127,235,66,0.1133186280637333],[127,235,67,0.11418313022680741],[127,235,68,0.11527735413213515],[127,235,69,0.11643093984669994],[127,235,70,0.1379815828953607],[127,235,71,0.17731720047796207],[127,235,72,0.21820611420685893],[127,235,73,0.2599386583114604],[127,235,74,0.30170246248506316],[127,235,75,0.3426133364277336],[127,235,76,0.3822977907676387],[127,235,77,0.4208232017931368],[127,235,78,0.45820419963564285],[127,235,79,0.4943989347896034],[127,236,64,0.15815581464641087],[127,236,65,0.15846657267027764],[127,236,66,0.15927855046106462],[127,236,67,0.1604247907891845],[127,236,68,0.16173563721822404],[127,236,69,0.1630407733635961],[127,236,70,0.16417118808277542],[127,236,71,0.17356191379154323],[127,236,72,0.21477564595722462],[127,236,73,0.25698473469955907],[127,236,74,0.2993692713318842],[127,236,75,0.3410346117258046],[127,236,76,0.3816012010201783],[127,236,77,0.4211339817202029],[127,236,78,0.4596426276735048],[127,236,79,0.49707780605329654],[127,237,64,0.20363945023695768],[127,237,65,0.204578313481555],[127,237,66,0.20594932445151834],[127,237,67,0.20758266449683505],[127,237,68,0.20930679668284413],[127,237,69,0.21095053990430168],[127,237,70,0.212345051590638],[127,237,71,0.21332571900239866],[127,237,72,0.21373543099583642],[127,237,73,0.2543345459937252],[127,237,74,0.29720358319933377],[127,237,75,0.3394904131149478],[127,237,76,0.38080991435370515],[127,237,77,0.4212227643632624],[127,237,78,0.460732184846363],[127,237,79,0.49928023910883235],[127,238,64,0.2496072909866171],[127,238,65,0.25140712340815263],[127,238,66,0.25356165249822304],[127,238,67,0.25589713251500995],[127,238,68,0.2582392697511904],[127,238,69,0.2604153549786779],[127,238,70,0.2622562850602032],[127,238,71,0.26359847372772693],[127,238,72,0.2642870751753047],[127,238,73,0.26430439760897884],[127,238,74,0.29502374777148804],[127,238,75,0.3377894169389665],[127,238,76,0.37972241894354436],[127,238,77,0.4208776277181553],[127,238,78,0.46125058301041394],[127,238,79,0.5007738579650647],[127,239,64,0.2961433609379929],[127,239,65,0.2990435342848332],[127,239,66,0.30221111847169957],[127,239,67,0.30546749919053284],[127,239,68,0.30863491806186694],[127,239,69,0.3115386908010507],[127,239,70,0.31400929327457366],[127,239,71,0.3158843154464892],[127,239,72,0.3170116508209797],[127,239,73,0.3173726879912115],[127,239,74,0.3171367645747326],[127,239,75,0.33575840747050084],[127,239,76,0.3781565583764648],[127,239,77,0.4199072497699705],[127,239,78,0.46099740984930143],[127,239,79,0.5013494956790131],[127,240,64,0.34321226527415016],[127,240,65,0.34745216135700807],[127,240,66,0.3518613817682577],[127,240,67,0.35625561945564904],[127,240,68,0.3604530920309356],[127,240,69,0.36427687576948387],[127,240,70,0.3675570846097471],[127,240,71,0.37013289415259637],[127,240,72,0.3718557126676578],[127,240,73,0.37270624540771274],[127,240,74,0.37284442958457453],[127,240,75,0.37237899768828914],[127,240,76,0.3759564526194248],[127,240,77,0.4181479672433238],[127,240,78,0.4598013431405238],[127,240,79,0.5008285809203202],[127,241,64,0.3906775401738581],[127,241,65,0.3964907324631316],[127,241,66,0.4023638398179332],[127,241,67,0.40810614923239896],[127,241,68,0.4135314254903773],[127,241,69,0.4184603927455942],[127,241,70,0.42272303684246226],[127,241,71,0.42616072837751995],[127,241,72,0.42862939234000974],[127,241,73,0.43010944199965795],[127,241,74,0.43075024747270607],[127,241,75,0.43065188141539734],[127,241,76,0.4298516526202739],[127,241,77,0.4283344781536755],[127,241,78,0.4575274347481747],[127,241,79,0.4990705639538296],[127,242,64,0.43831900965848525],[127,242,65,0.44592810184735937],[127,242,66,0.45347625430562577],[127,242,67,0.4607657400247778],[127,242,68,0.46760555628796363],[127,242,69,0.4738140862323023],[127,242,70,0.47922155577214764],[127,242,71,0.4836722858832878],[127,242,72,0.4870278789817193],[127,242,73,0.48926898236225624],[127,242,74,0.49053329333452533],[127,242,75,0.4909111120208921],[127,242,76,0.49043336359606804],[127,242,77,0.4890817991672498],[127,242,78,0.4867985722007297],[127,242,79,0.4959803820401383],[127,243,64,0.4858491494320093],[127,243,65,0.4954612486040406],[127,243,66,0.5048803411071027],[127,243,67,0.5139011777004292],[127,243,68,0.5223277728503662],[127,243,69,0.5299762784514184],[127,243,70,0.5366776266589376],[127,243,71,0.5422799418334406],[127,243,72,0.5466517624858386],[127,243,73,0.5497746107500541],[127,243,74,0.5517735342979087],[127,243,75,0.5527280492836474],[127,243,76,0.5526618525364148],[127,243,77,0.5515528554684928],[127,243,78,0.5493425589587818],[127,243,79,0.5459447692115271],[127,244,64,0.5329284577120899],[127,244,65,0.5447312597518742],[127,244,66,0.5561983239375843],[127,244,67,0.5671164654595006],[127,244,68,0.5772845867070411],[127,244,69,0.5865167943185144],[127,244,70,0.5946452584751323],[127,244,71,0.6015228144392697],[127,244,72,0.6070262393236321],[127,244,73,0.6111386665027648],[127,244,74,0.6139717024099587],[127,244,75,0.6155932268702355],[127,244,76,0.6160189850534625],[127,244,77,0.6152224604429991],[127,244,78,0.6131440515459592],[127,244,79,0.6096995523450961],[127,245,64,0.5791798330542509],[127,245,65,0.5933382979398777],[127,245,66,0.6070084517151645],[127,245,67,0.6199688509929844],[127,245,68,0.6320132309772893],[127,245,69,0.6429538953175625],[127,245,70,0.6526248209726442],[127,245,71,0.6608844780839284],[127,245,72,0.6676191809745461],[127,245,73,0.6728144876943106],[127,245,74,0.6765680025226616],[127,245,75,0.6789353227308328],[127,245,76,0.679923681071196],[127,245,77,0.6795016656105066],[127,245,78,0.6776082035779345],[127,245,79,0.6741608092278705],[127,246,64,0.6242019591682648],[127,246,65,0.6408555537842245],[127,246,66,0.6568594796380804],[127,246,67,0.6719837978295446],[127,246,68,0.6860170848194712],[127,246,69,0.6987701222742855],[127,246,70,0.7100792745653617],[127,246,71,0.7198095539233333],[127,246,72,0.7278580649562026],[127,246,73,0.7342136630039555],[127,246,74,0.7389596551763261],[127,246,75,0.7421389530654064],[127,246,76,0.7437499112669523],[127,246,77,0.743755903643246],[127,246,78,0.7420941215855134],[127,246,79,0.7386835942758934],[127,247,64,0.6675816967259234],[127,247,65,0.6868421828350757],[127,247,66,0.7052841139749031],[127,247,67,0.722668900869836],[127,247,68,0.7387800238413235],[127,247,69,0.7534270470271307],[127,247,70,0.7664492930252885],[127,247,71,0.7777191779626764],[127,247,72,0.7871457684532128],[127,247,73,0.7947221318083006],[127,247,74,0.8005172744795513],[127,247,75,0.8045612898589006],[127,247,76,0.8068435080112476],[127,247,77,0.8073219396480229],[127,247,78,0.8059318980330481],[127,247,79,0.8025937988206818],[127,248,64,0.7089054821621191],[127,248,65,0.7308552271754596],[127,248,66,0.7518114205698299],[127,248,67,0.7715267461106194],[127,248,68,0.7897796964738009],[127,248,69,0.8063789329983766],[127,248,70,0.82116727899507],[127,248,71,0.8340253466112342],[127,248,72,0.8448752245475546],[127,248,73,0.8537151324969411],[127,248,74,0.8606000809885712],[127,248,75,0.8655475019883236],[127,248,76,0.8685377908088401],[127,248,77,0.8695236307149843],[127,248,78,0.8684384496060559],[127,248,79,0.8652040087747661],[127,249,64,0.7477697334673522],[127,249,65,0.7724605216501641],[127,249,66,0.7959781970608921],[127,249,67,0.8180667145563497],[127,249,68,0.8384997263059852],[127,249,69,0.8570853046628139],[127,249,70,0.8736702723142356],[127,249,71,0.8881441397127208],[127,249,72,0.900442941047694],[127,249,73,0.9105709990089048],[127,249,74,0.9185699495830425],[127,249,75,0.9244450198987461],[127,249,76,0.928168006238014],[127,249,77,0.9296864937300282],[127,249,78,0.9289321607650078],[127,249,79,0.9258281681280991],[127,250,64,0.7837902629729115],[127,250,65,0.8112425847260338],[127,250,66,0.8373393088126168],[127,250,67,0.8618157303198987],[127,250,68,0.8844408403828456],[127,250,69,0.9050224259158804],[127,250,70,0.9234117511611387],[127,250,71,0.9395078210532359],[127,250,72,0.9532613819185672],[127,250,73,0.9646838055920389],[127,250,74,0.9738042923404855],[127,250,75,0.9806166238504646],[127,250,76,0.9850845823903588],[127,250,77,0.9871510814531486],[127,250,78,0.9867463325675658],[127,250,79,0.9837950482776286],[127,251,64,0.8166106971278758],[127,251,65,0.8468134939826755],[127,251,66,0.8754769885620044],[127,251,67,0.9023279529111626],[127,251,68,0.9271309234644883],[127,251,69,0.9496936873397959],[127,251,70,0.9698723260090437],[127,251,71,0.9875758163452006],[127,251,72,1.0027702113107457],[127,251,73,1.0154748597836238],[127,251,74,1.0257077764076223],[127,251,75,1.0334523557355433],[127,251,76,1.0386651978092392],[127,251,77,1.041285166860898],[127,251,78,1.041241436757468],[127,251,79,1.0384605231882194],[127,252,64,0.8459099032689704],[127,252,65,0.8788207462347655],[127,252,66,0.9100090997791631],[127,252,67,0.9391934137150157],[127,252,68,0.9661339982484727],[127,252,69,0.9906389023693744],[127,252,70,1.0125693263981412],[127,252,71,1.0318445686891222],[127,252,72,1.0484464001907068],[127,252,73,1.0624030436141887],[127,252,74,1.0737228768706273],[127,252,75,1.0823802544657726],[127,252,76,1.0883256649290174],[127,252,77,1.0914947357550486],[127,252,78,1.0918161751221267],[127,252,79,1.0892186503870012],[127,253,64,0.871408423381782],[127,253,65,0.9069541022842852],[127,253,66,0.9405963637407676],[127,253,67,0.9720455966566366],[127,253,68,1.001058131553095],[127,253,69,1.0274425123552997],[127,253,70,1.0510652805211658],[127,253,71,1.0718562715107833],[127,253,72,1.0898131955697166],[127,253,73,1.1049740030319672],[127,253,74,1.117339264621674],[127,253,75,1.1268759149294079],[127,253,76,1.13352962801236],[127,253,77,1.1372337876347511],[127,253,78,1.1379173441162547],[127,253,79,1.1355115577884445],[127,254,64,0.8928739148550665],[127,254,65,0.9309514163045948],[127,254,66,0.9669485503184128],[127,254,67,1.0005679630564268],[127,254,68,1.0315622664639854],[127,254,69,1.0597407005273283],[127,254,70,1.0849752876251868],[127,254,71,1.1072064789765161],[127,254,72,1.1264479523340705],[127,254,73,1.1427481855508093],[127,254,74,1.1561020292246518],[127,254,75,1.1664708705195788],[127,254,76,1.1737970755885498],[127,254,77,1.1780129448351506],[127,254,78,1.1790485047544554],[127,254,79,1.1768381363531168],[127,255,64,0.9101255982266008],[127,255,65,0.9506034498546464],[127,255,66,0.988829632480024],[127,255,67,1.0244994206725504],[127,255,68,1.0573619804419394],[127,255,69,1.0872274148552428],[127,255,70,1.1139732832273086],[127,255,71,1.1375505938842252],[127,255,72,1.1579888276742873],[127,255,73,1.1753477261190965],[127,255,74,1.1896187367775608],[127,255,75,1.200759799231872],[127,255,76,1.2087116673902916],[127,255,77,1.2134068699299243],[127,255,78,1.2147774577702786],[127,255,79,1.21276153857761],[127,256,64,0.9230377119217426],[127,256,65,0.9657576705246181],[127,256,66,1.0060619045057075],[127,256,67,1.0436387369325844],[127,256,68,1.0782341693935487],[127,256,69,1.1096592998091863],[127,256,70,1.1377971971459746],[127,256,71,1.162609233031889],[127,256,72,1.1841403381150306],[127,256,73,1.2024621812114515],[127,256,74,1.2175653227733838],[127,256,75,1.2294065533328764],[127,256,76,1.2379268757907886],[127,256,77,1.2430604913995145],[127,256,78,1.244742524043467],[127,256,79,1.2429154828173528],[127,257,64,0.9315419739837992],[127,257,65,0.9763210352119707],[127,257,66,1.018529063916969],[127,257,67,1.0578478963531186],[127,257,68,1.094020657703418],[127,257,69,1.1268595370181202],[127,257,70,1.156253004346564],[127,257,71,1.182172470062221],[127,257,72,1.2046777791444128],[127,257,73,1.2238531111418975],[127,257,74,1.2396908199581065],[127,257,75,1.252149012598376],[127,257,76,1.2611709417398114],[127,257,77,1.266694037563798],[127,257,78,1.2686576302941854],[127,257,79,1.267009363441138],[127,258,64,0.9356290507970445],[127,258,65,0.9822617580288663],[127,258,66,1.0261782571203126],[127,258,67,1.0670544021484054],[127,258,68,1.104630734229126],[127,258,69,1.1387205948276076],[127,258,70,1.1692176686025444],[127,258,71,1.1961029557847604],[127,258,72,1.2194505074439743],[127,258,73,1.2393575105997647],[127,258,74,1.2558209211871616],[127,258,75,1.2688027611224664],[127,258,76,1.2782506451999878],[127,258,77,1.2841068787804115],[127,258,78,1.286316200045409],[127,258,79,1.2848321668184914],[127,259,64,0.9353490328015188],[127,259,65,0.9836100628399771],[127,259,66,1.0290210887641602],[127,259,67,1.0712525220269074],[127,259,68,1.1100426142576976],[127,259,69,1.145205886755638],[127,259,70,1.1766409789708234],[127,259,71,1.2043379159740133],[127,259,72,1.2283840857179302],[127,259,73,1.248890087406919],[127,259,74,1.2658603772788883],[127,259,75,1.2792635876961684],[127,259,76,1.289053890081932],[127,259,77,1.2951801779073366],[127,259,78,1.2975938498521062],[127,259,79,1.2962551931385646],[127,260,64,0.9308109172005158],[127,260,65,0.9804579204316884],[127,260,66,1.0271335948101838],[127,260,67,1.0705034781769205],[127,260,68,1.110303827424854],[127,260,69,1.1463503388478018],[127,260,70,1.1785462790826746],[127,260,71,1.20689002664505],[127,260,72,1.231481290123115],[127,260,73,1.252444389497756],[127,260,74,1.269794229866437],[127,260,75,1.2835088097569822],[127,260,76,1.293551103679613],[127,260,77,1.2998783490311647],[127,260,78,1.302449890798608],[127,260,79,1.301233584061894],[127,261,64,0.9221810976597469],[127,261,65,0.9729577703116136],[127,261,66,1.0206551793179115],[127,261,67,1.0649345814400741],[127,261,68,1.1055305315957769],[127,261,69,1.142259865930544],[127,261,70,1.1750300892489327],[127,261,71,1.2038471668052368],[127,261,72,1.2288219802983047],[127,261,73,1.2500927801206592],[127,261,74,1.2676878792468416],[127,261,75,1.281597420908124],[127,261,76,1.2917954506047615],[127,261,77,1.29824932445985],[127,261,78,1.300927635263013],[127,261,79,1.2998066562039452],[127,262,64,0.9096808609993576],[127,262,65,0.9613202271396294],[127,262,66,1.0097865149438272],[127,262,67,1.0547373096739487],[127,262,68,1.0959057527086522],[127,262,69,1.1331097567637283],[127,262,70,1.1662606213806759],[127,262,71,1.19537104868331],[127,262,72,1.2205618319940839],[127,262,73,1.2419852612620286],[127,262,74,1.259685987228316],[127,262,75,1.2736690620084419],[127,262,76,1.2839218612212318],[127,262,77,1.2904236299808098],[127,262,78,1.2931535089494226],[127,262,79,1.292097040451142],[127,263,64,0.8935828908775996],[127,263,65,0.9458107717892319],[127,263,66,0.9947864071537791],[127,263,67,1.04016433030264],[127,263,68,1.0816765505798265],[127,263,69,1.1191419680913985],[127,263,70,1.1524751867243346],[127,263,71,1.1816947254347587],[127,263,72,1.206929932302295],[127,263,73,1.228347145292002],[127,263,74,1.2460102149749732],[127,263,75,1.2599418158322904],[127,263,76,1.2701448745786894],[127,263,77,1.2766122683838348],[127,263,78,1.2793349681875497],[127,263,79,1.2783086271090278],[127,264,64,0.8742067784670379],[127,264,65,0.9267454270400872],[127,264,66,0.9759676221495588],[127,264,67,1.0215254670561038],[127,264,68,1.0631501106713996],[127,264,69,1.1006613275915154],[127,264,70,1.1339764964119405],[127,264,71,1.1631189763242045],[127,264,72,1.1882252374856785],[127,264,73,1.209475574832395],[127,264,74,1.2269557958494113],[127,264,75,1.2407088252997318],[127,264,76,1.2507552958459114],[127,264,77,1.2571034112490012],[127,264,78,1.2597572224998175],[127,264,79,1.2587233168825842],[127,265,64,0.8519135401229189],[127,265,65,0.9044854179014058],[127,265,66,0.9536916785092809],[127,265,67,0.9991826108979339],[127,265,68,1.0406887618209149],[127,265,69,1.078030645724358],[127,265,70,1.1111278548262609],[127,265,71,1.140007569384544],[127,265,72,1.1648118934075429],[127,265,73,1.1857348908467709],[127,265,74,1.2028869432531477],[127,265,75,1.2163337352771044],[127,265,76,1.226115668243805],[127,265,77,1.232257898999768],[127,265,78,1.2347787624361926],[127,265,79,1.2336965776890223],[127,266,64,0.8270991420438591],[127,266,65,0.8794308165662852],[127,266,66,0.9283626025417038],[127,266,67,0.9735435751416919],[127,266,68,1.014703919933244],[127,266,69,1.051664736479662],[127,266,70,1.0843472457808354],[127,266,71,1.1127814015528372],[127,266,72,1.1371134185613774],[127,266,73,1.1575508489524773],[127,266,74,1.1742310934646696],[127,266,75,1.1872449579476734],[127,266,76,1.1966545594777924],[127,266,77,1.2025035492208425],[127,266,78,1.204825692676272],[127,266,79,1.2036518073025004],[127,267,64,0.8001870319243239],[127,267,65,0.8520131719965358],[127,267,66,0.9004196473540295],[127,267,67,0.9450548947553692],[127,267,68,0.9856489576342994],[127,267,69,1.0220233470221707],[127,267,70,1.0541003115146659],[127,267,71,1.0819115162827588],[127,267,72,1.1056057497003056],[127,267,73,1.1254036839546409],[127,267,74,1.1414719834751814],[127,267,75,1.1539287617525138],[127,267,76,1.162859662669801],[127,267,77,1.1683282732411235],[127,267,78,1.1703848703990194],[127,267,79,1.1690735018312493],[127,268,64,0.7716196775999998],[127,268,65,0.8226871241390304],[127,268,66,0.8703289756341887],[127,268,67,0.9141935698549256],[127,268,68,0.954010999887447],[127,268,69,0.9896029962364138],[127,268,70,1.0208922245022896],[127,268,71,1.0479109986342572],[127,268,72,1.0708091500669377],[127,268,73,1.0898200226025867],[127,268,74,1.1051415638224136],[127,268,75,1.116921183901907],[127,268,76,1.1252697117900434],[127,268,77,1.1302720009818312],[127,268,78,1.1319958489201642],[127,268,79,1.1304992300270156],[127,269,64,0.74184911268499],[127,269,65,0.7919210027725417],[127,269,66,0.8385743061465849],[127,269,67,0.8814577533859168],[127,269,68,0.9203016455716718],[127,269,69,0.9549277221697987],[127,269,70,0.9852584520783638],[127,269,71,1.0113257478396],[127,269,72,1.0332789802228526],[127,269,73,1.0513636445679517],[127,269,74,1.0658107464218274],[127,269,75,1.076798766456636],[127,269,76,1.0844652115880236],[127,269,77,1.088917414069301],[127,269,78,1.0902416265967985],[127,269,79,1.0885104134264265],[127,270,64,0.7113264892009442],[127,270,65,0.7601864109852099],[127,270,66,0.8056465239414878],[127,270,67,0.8473563829934313],[127,270,68,0.885046615021754],[127,270,69,0.9185387383743076],[127,270,70,0.9477544138770987],[127,270,71,0.9727241273461764],[127,270,72,0.9935953314781049],[127,270,73,1.0106250916449393],[127,270,74,1.0240789873956821],[127,270,75,1.0341681159796767],[127,270,76,1.0410579820233041],[127,270,77,1.044879487213015],[127,270,78,1.0457382009997658],[127,270,79,1.0437219123248935],[127,271,64,0.6804906371992684],[127,271,65,0.7279467932836924],[127,271,66,0.7720322542790249],[127,271,67,0.8123977570811827],[127,271,68,0.8487743235311904],[127,271,69,0.8809829991474282],[127,271,70,0.9089440320870427],[127,271,71,0.9326854923364439],[127,271,72,0.9523515219210433],[127,271,73,0.9682101251728713],[127,271,74,0.9805627049000181],[127,271,75,0.9896542867582263],[127,271,76,0.9956795171958593],[127,271,77,0.9987938378485777],[127,271,78,0.9991229283534522],[127,271,79,0.9967704175825506],[127,272,64,0.6497556313746848],[127,272,65,0.695644988332394],[127,272,66,0.7382014002663009],[127,272,67,0.7770770550584322],[127,272,68,0.8120033808166822],[127,272,69,0.8428006736712885],[127,272,70,0.8693871745203501],[127,272,71,0.8917875947243105],[127,272,72,0.9101414550478728],[127,272,73,0.9247270316806346],[127,272,74,0.9358825319493],[127,272,75,0.943887987595966],[127,272,76,0.9489681587760614],[127,272,77,0.9513038840458399],[127,272,78,0.9510416882433197],[127,272,79,0.9483016482627179],[127,273,64,0.6194973646714069],[127,273,65,0.6636897663239033],[127,273,66,0.704593644208631],[127,273,67,0.7418628017755723],[127,273,68,0.7752290164448712],[127,273,69,0.804511529050516],[127,273,70,0.8296259904968952],[127,273,71,0.8505928656281462],[127,273,72,0.8675458409920052],[127,273,73,0.8807727767529049],[127,273,74,0.8906494042384501],[127,273,75,0.8974916121751343],[127,273,76,0.901555083933731],[127,273,77,0.9030468106814468],[127,273,78,0.9021348535903193],[127,273,79,0.8989563551018963],[127,274,64,0.590088296851485],[127,274,65,0.6324873004234643],[127,274,66,0.6716468553972407],[127,274,67,0.7072224402795035],[127,274,68,0.7389460579693202],[127,274,69,0.7666355624458938],[127,274,70,0.7902034500408103],[127,274,71,0.8096651152946852],[127,274,72,0.8251473075812006],[127,274,73,0.8369467742852852],[127,274,74,0.8454772340612717],[127,274,75,0.8510910598704413],[127,274,76,0.854075506904487],[127,274,77,0.8546643734020016],[127,274,78,0.8530479029665147],[127,274,79,0.849380928386109],[127,275,64,0.5622176306025178],[127,275,65,0.6027380519585418],[127,275,66,0.6400723024844742],[127,275,67,0.6738776042491282],[127,275,68,0.7038860863688987],[127,275,69,0.7299139263078657],[127,275,70,0.7518699622675816],[127,275,71,0.7697637766664691],[127,275,72,0.7837141817624125],[127,275,73,0.7940260754976224],[127,275,74,0.8011513138876738],[127,275,75,0.8054790723547381],[127,275,76,0.8073285536924241],[127,275,77,0.8069607803604428],[127,275,78,0.8045886220313128],[127,275,79,0.8003850583891444],[127,276,64,0.5366053554306631],[127,276,65,0.5751652338158076],[127,276,66,0.6105968086160395],[127,276,67,0.6425591577923532],[127,276,68,0.6707844856530438],[127,276,69,0.6950870576380654],[127,276,70,0.7153716120868217],[127,276,71,0.7316412489893191],[127,276,72,0.744005925321731],[127,276,73,0.7527778863387528],[127,276,74,0.7584469311699211],[127,276,75,0.7614390012671945],[127,276,76,0.7621052899130303],[127,276,77,0.7607341506866898],[127,276,78,0.7575612364545885],[127,276,79,0.7527778688847411],[127,277,64,0.5137817096514241],[127,277,65,0.550307210680863],[127,277,66,0.5837672638663648],[127,277,67,0.6138229259374305],[127,277,68,0.6402064417452049],[127,277,69,0.662729953477665],[127,277,70,0.6812936923828483],[127,277,71,0.6958936530000508],[127,277,72,0.7066300801401015],[127,277,73,0.7138216898938582],[127,277,74,0.7179956975627051],[127,277,75,0.7196144300437822],[127,277,76,0.7190607889703056],[127,277,77,0.7166502614655601],[127,277,78,0.7126411583801762],[127,277,79,0.7072430800127444],[127,278,64,0.49408595815939843],[127,278,65,0.5285156904627362],[127,278,66,0.5599482359584095],[127,278,67,0.5880467317723481],[127,278,68,0.6125434143240654],[127,278,69,0.6332480865058266],[127,278,70,0.6500560727559068],[127,278,71,0.6629556620258674],[127,278,72,0.6720365701955445],[127,278,73,0.6776230318697911],[127,278,74,0.68027884310665],[127,278,75,0.6805020141855561],[127,278,76,0.6787065664805204],[127,278,77,0.6752346336107652],[127,278,78,0.6703667888346894],[127,278,79,0.6643305986872126],[127,279,64,0.47766523931839855],[127,279,65,0.5099539117662562],[127,279,66,0.5393195133947007],[127,279,67,0.5654273119021131],[127,279,68,0.5880094423883547],[127,279,69,0.6068731190644913],[127,279,70,0.6219083403256884],[127,279,71,0.6330950871872091],[127,279,72,0.6405117474263496],[127,279,73,0.644487046942671],[127,279,74,0.6456202555649923],[127,279,75,0.6444440782044594],[127,279,76,0.6414027899118745],[127,279,77,0.6368644181390705],[127,279,78,0.6311311518661586],[127,279,79,0.6244479775946992],[127,280,64,0.46447192489884326],[127,280,65,0.49459337000806514],[127,280,66,0.5218722159945602],[127,280,67,0.5459758308435929],[127,280,68,0.5666360826068524],[127,280,69,0.5836572856250427],[127,280,70,0.5969236458810915],[127,280,71,0.6064062054839048],[127,280,72,0.6121712179832571],[127,280,73,0.6145508026317893],[127,280,74,0.6141783743453489],[127,280,75,0.611620104426225],[127,280,76,0.6073494177928201],[127,280,77,0.6017592503316618],[127,280,78,0.5951725356104405],[127,280,79,0.5878509209521141],[127,281,64,0.4542594930627513],[127,281,65,0.48220908217643466],[127,281,66,0.5074034728375156],[127,281,67,0.5295119943577531],[127,281,68,0.5482659804532692],[127,281,69,0.5634664436963688],[127,281,70,0.5749912553755785],[127,281,71,0.5828018307638344],[127,281,72,0.586951448869684],[127,281,73,0.5877744606987421],[127,281,74,0.585936939005333],[127,281,75,0.5820371136490001],[127,281,76,0.5765762684875498],[127,281,77,0.5699710717810981],[127,281,78,0.562564140283662],[127,281,79,0.5546328370223461],[127,282,64,0.4465769143955691],[127,282,65,0.47237339023428115],[127,282,66,0.495509667612453],[127,282,67,0.5156567617189963],[127,282,68,0.5325450741258619],[127,282,69,0.5459717931743354],[127,282,70,0.5558078067683035],[127,282,71,0.5620041275744269],[127,282,72,0.564600154970464],[127,282,73,0.5639312560723935],[127,282,74,0.5606945923427809],[127,282,75,0.5555189376585826],[127,282,76,0.5489320185396626],[127,282,77,0.5413729203249817],[127,282,78,0.5332027331019479],[127,282,79,0.5247134373889802],[127,283,64,0.44076155098646197],[127,283,65,0.46444830316685504],[127,283,66,0.485578251373839],[127,283,67,0.5038236569227896],[127,283,68,0.5189134312528184],[127,283,69,0.5306402641335565],[127,283,70,0.5388672722117456],[127,283,71,0.5435341678975752],[127,283,72,0.5446654664695401],[127,283,73,0.5425962932999729],[127,283,74,0.5380533380707373],[127,283,75,0.5316943836002926],[127,283,76,0.5240721305839035],[127,283,77,0.515646687866122],[127,283,78,0.5067963101280821],[127,283,79,0.4978263829896588],[127,284,64,0.4359513622472386],[127,284,65,0.45759692072894403],[127,284,66,0.4767983854867409],[127,284,67,0.49322863496016933],[127,284,68,0.5066143451729731],[127,284,69,0.5167428519381317],[127,284,70,0.5234685424839767],[127,284,71,0.5267187765013365],[127,284,72,0.5265020471691721],[127,284,73,0.5231519486196177],[127,284,74,0.5174232347505683],[127,284,75,0.5100012264348329],[127,284,76,0.5014621508324709],[127,284,77,0.492285730326949],[127,284,78,0.4828660279500214],[127,284,79,0.4735205492953901],[127,285,64,0.43172050467953793],[127,285,65,0.45141116268243997],[127,285,66,0.468779886767411],[127,285,67,0.4834994320967885],[127,285,68,0.4952933956812656],[127,285,69,0.5039428225432409],[127,285,70,0.5092923516482138],[127,285,71,0.5112559016041676],[127,285,72,0.509824797120273],[127,285,73,0.5053297034047953],[127,285,74,0.4985516642624578],[127,285,75,0.49020177459779707],[127,285,76,0.48087808868491655],[127,285,77,0.4710783208610824],[127,285,78,0.4612108132638214],[127,285,79,0.4516037706115698],[127,286,64,0.4282687575433051],[127,286,65,0.44610032333484656],[127,286,66,0.4617405379021634],[127,286,67,0.47486130038896524],[127,286,68,0.4851823229287913],[127,286,69,0.4924774938398201],[127,286,70,0.49658079218766127],[127,286,71,0.49739175371606864],[127,286,72,0.4948835730456423],[127,286,73,0.4893824164278206],[127,286,74,0.48169303986854684],[127,286,75,0.4725498166730679],[127,286,76,0.4625703396095503],[127,286,77,0.4522682360103178],[127,286,78,0.4420642623118338],[127,286,79,0.4322956780334814],[127,287,64,0.42575142503466973],[127,287,65,0.44182956752329927],[127,287,66,0.455854111272496],[127,287,67,0.46749539222158937],[127,287,68,0.47646849064838426],[127,287,69,0.48253936748848286],[127,287,70,0.48553056483751705],[127,287,71,0.48532647063622814],[127,287,72,0.4818814057514376],[127,287,73,0.4755153496837998],[127,287,74,0.46705347335023173],[127,287,75,0.45725027648765965],[127,287,76,0.44674007586507003],[127,287,77,0.4360499277661191],[127,287,78,0.4256108444546711],[127,287,79,0.4157673046233164],[127,288,64,0.4242484950971077],[127,288,65,0.43868912888445233],[127,288,66,0.4512196923667425],[127,288,67,0.4615082877097658],[127,288,68,0.4692646880216551],[127,288,69,0.474246265795473],[127,288,70,0.4762634995094136],[127,288,71,0.4751850583845652],[127,288,72,0.47094588256476966],[127,288,73,0.46385801613419186],[127,288,74,0.45476314332693923],[127,288,75,0.4444321857908272],[127,288,76,0.4335129296962343],[127,288,77,0.42254304017118316],[127,288,78,0.4119613866530597],[127,288,79,0.4021176791570229],[127,289,64,0.4237755198543034],[127,289,65,0.43670473810177546],[127,289,66,0.4478716820062683],[127,289,67,0.4569415966332166],[127,289,68,0.4636183559693267],[127,289,69,0.4676502052244177],[127,289,70,0.4688350963545008],[127,289,71,0.4670256168060406],[127,289,72,0.46213707027865447],[127,289,73,0.4544718081943323],[127,289,74,0.44488363370085793],[127,289,75,0.4341557340971434],[127,289,76,0.42294575373770343],[127,289,77,0.41179887778348256],[127,289,78,0.40115924636917843],[127,289,79,0.39137969918712134],[127,290,64,0.4242938226290352],[127,290,65,0.4358474212621747],[127,290,66,0.4457892114182981],[127,290,67,0.45378101507884455],[127,290,68,0.45952030908101515],[127,290,69,0.46274580553491995],[127,290,70,0.4632426415295197],[127,290,71,0.46084717812730863],[127,290,72,0.4554550886118371],[127,290,73,0.4473573136467476],[127,290,74,0.4374149955555128],[127,290,75,0.42641907687683617],[127,290,76,0.41503317328482536],[127,290,77,0.403806697929752],[127,290,78,0.3931863383778873],[127,290,79,0.3835258861504669],[127,291,64,0.4257200315500064],[127,291,65,0.4360426683237721],[127,291,66,0.44490497015713015],[127,291,67,0.45196483679312827],[127,291,68,0.4569129531860484],[127,291,69,0.45947823454950754],[127,291,70,0.45943289766732176],[127,291,71,0.45659715846708104],[127,291,72,0.4508473341848179],[127,291,73,0.4424613189815244],[127,291,74,0.4323025325093983],[127,291,75,0.42116490209455976],[127,291,76,0.4097139304325008],[127,291,77,0.3984998267495156],[127,291,78,0.38796901548890195],[127,291,79,0.37847402252198725],[127,292,64,0.42793493974528485],[127,292,65,0.4371789716935982],[127,292,66,0.4451134468725651],[127,292,67,0.45139191924325617],[127,292,68,0.45569799856430526],[127,292,69,0.4577506885479888],[127,292,70,0.457309369050929],[127,292,71,0.45417842229936833],[127,292,72,0.44821535501128046],[127,292,73,0.4396835001629827],[127,292,74,0.4294433095239582],[127,292,75,0.41828675509591146],[127,292,76,0.406877020081467],[127,292,77,0.39576159902901514],[127,292,78,0.3853838031792976],[127,292,79,0.3760926710137911],[127,293,64,0.43079169212312046],[127,293,65,0.4391157349158853],[127,293,66,0.4462785829261806],[127,293,67,0.451929104387566],[127,293,68,0.4557436687975761],[127,293,69,0.45743140828966233],[127,293,70,0.45673914149155076],[127,293,71,0.4534559598699658],[127,293,72,0.4474213755052585],[127,293,73,0.4388828008229575],[127,293,74,0.4286923851661873],[127,293,75,0.41763512184195556],[127,293,76,0.4063676178122441],[127,293,77,0.39543112182527307],[127,293,78,0.38526298813656523],[127,293,79,0.3762065758198648],[127,294,64,0.4341232987398589],[127,294,65,0.4416905514707248],[127,294,66,0.4482408388552408],[127,294,67,0.45341809415511053],[127,294,68,0.456891405261305],[127,294,69,0.45836023066327475],[127,294,70,0.45755929691046937],[127,294,71,0.45426317756611895],[127,294,72,0.44829447200400246],[127,294,73,0.43988349788066944],[127,294,74,0.4298687673258559],[127,294,75,0.4190232704917686],[127,294,76,0.4079927996267716],[127,294,77,0.39730886188032855],[127,294,78,0.3874000607122665],[127,294,79,0.3786019459064156],[127,295,64,0.43774947475480097],[127,295,65,0.4447258536829425],[127,295,66,0.45082367368409937],[127,295,67,0.45568178063421383],[127,295,68,0.45896206725657107],[127,295,69,0.46035467596456925],[127,295,70,0.45958290262462875],[127,295,71,0.4564078012392006],[127,295,72,0.45063639880635525],[127,295,73,0.44248095458897807],[127,295,74,0.43276109238713195],[127,295,75,0.4222328513327614],[127,295,76,0.41152705355747377],[127,295,77,0.4011620568253643],[127,295,78,0.3915550112859897],[127,295,79,0.38303162034753807],[127,296,64,0.44148280697243963],[127,296,65,0.4480349317415885],[127,296,66,0.4538394370834778],[127,296,67,0.45853003097037953],[127,296,68,0.4617616277826615],[127,296,69,0.463215570801786],[127,296,70,0.46260457533629934],[127,296,71,0.4596773924807699],[127,296,72,0.454227064727035],[127,296,73,0.44644706100743947],[127,296,74,0.4371330278550548],[127,296,75,0.4270192550592631],[127,296,76,0.4167175831442658],[127,296,77,0.40672995017527397],[127,296,78,0.39745948054018876],[127,296,79,0.3892201157068269],[127,297,64,0.44513424697156956],[127,297,65,0.451427322829567],[127,297,66,0.45709467437714435],[127,297,67,0.46176492697308136],[127,297,68,0.4650863649497624],[127,297,69,0.46673220662861886],[127,297,70,0.46640561982629225],[127,297,71,0.4638444778514736],[127,297,72,0.4588296601662405],[127,297,73,0.45153536190153987],[127,297,74,0.44272839843617307],[127,297,75,0.43311672939862744],[127,297,76,0.42328940277871696],[127,297,77,0.41372885011282523],[127,297,78,0.4048217636450032],[127,297,79,0.3968685554639721],[127,298,64,0.44851793082170105],[127,298,65,0.454713570363836],[127,298,66,0.4603948443964484],[127,298,67,0.4651854594319131],[127,298,68,0.4687275490322777],[127,298,69,0.47068703390518535],[127,298,70,0.4707587423513354],[127,298,71,0.46867129106344585],[127,298,72,0.46419543469530256],[127,298,73,0.4574858720688997],[127,298,74,0.44927603557422713],[127,298,75,0.44024325408582177],[127,298,76,0.4309502249163988],[127,298,77,0.42185701206353343],[127,298,78,0.4133316683542576],[127,298,79,0.405659481487623],[127,299,64,0.4514553253864911],[127,299,65,0.45770935334586527],[127,299,66,0.46354845018235713],[127,299,67,0.4685916771417017],[127,299,68,0.4724756251623246],[127,299,69,0.47485989188649025],[127,299,70,0.4754323387450215],[127,299,71,0.47391412811554223],[127,299,72,0.4700681251576338],[127,299,73,0.464029579091606],[127,299,74,0.45649435043993475],[127,299,75,0.4481051741854563],[127,299,76,0.4393951391562879],[127,299,77,0.43079934506001116],[127,299,78,0.4226652270113055],[127,299,79,0.4152615475530807],[127,300,64,0.4537787012143259],[127,300,65,0.46023898582252104],[127,300,66,0.46637058253520636],[127,300,67,0.471788290636849],[127,300,68,0.47612389166373065],[127,300,69,0.4790317740387844],[127,300,70,0.4801943572227998],[127,300,71,0.47932731538197015],[127,300,72,0.4761880342856272],[127,300,73,0.4708926335154285],[127,300,74,0.46409563037573215],[127,300,75,0.45640159176221023],[127,300,76,0.44831108318827523],[127,300,77,0.44023194189695103],[127,300,78,0.432489262465976],[127,300,79,0.42533409490617946],[127,301,64,0.455333932016064],[127,301,65,0.4621382864573514],[127,301,66,0.46868587641210147],[127,301,67,0.47458773063477766],[127,301,68,0.47947167402635427],[127,301,69,0.48298812908356314],[127,301,70,0.484815735890692],[127,301,71,0.4846667906539036],[127,301,72,0.4822957598330044],[127,301,73,0.4778002264553143],[127,301,74,0.4717900587947763],[127,301,75,0.4648285158988637],[127,301,76,0.45738110560789685],[127,301,77,0.44982643307575987],[127,301,78,0.4424658079015492],[127,301,79,0.4355316098721959],[127,302,64,0.45598262072970724],[127,302,65,0.46325681821208153],[127,302,66,0.4703308801718171],[127,302,67,0.47681266118840243],[127,302,68,0.4823269945207054],[127,302,69,0.48652169766926606],[127,302,70,0.4890734149578604],[127,302,71,0.489693297134305],[127,302,72,0.48813557422292975],[127,302,73,0.4844801546275893],[127,302,74,0.47928945853472843],[127,302,75,0.4730827710625535],[127,302,76,0.46628842059900555],[127,302,77,0.4592541645396597],[127,302,78,0.45225638057266715],[127,302,79,0.44550806351077626],[127,303,64,0.4556035521726337],[127,303,65,0.4634594981388967],[127,303,66,0.47115583766771685],[127,303,67,0.47829794754805494],[127,303,68,0.48450873745321804],[127,303,69,0.4894348846709244],[127,303,70,0.4927529236531895],[127,303,71,0.4941751903860071],[127,303,72,0.49345845471182603],[127,303,73,0.49066607280867136],[127,303,74,0.48631075866601],[127,303,75,0.4808656638188255],[127,303,76,0.4747202544838291],[127,303,77,0.4681901991985859],[127,303,78,0.4615261094533992],[127,303,79,0.4549211333159955],[127,304,64,0.45409347228026015],[127,304,65,0.4626275772824513],[127,304,66,0.47102588318771527],[127,304,67,0.47889207873199896],[127,304,68,0.4858483100614195],[127,304,69,0.49154166711712954],[127,304,70,0.49565054184536894],[127,304,71,0.49789085823267165],[127,304,72,0.4980247640686582],[127,304,73,0.49610043372021534],[127,304,74,0.4925791847545963],[127,304,75,0.48788640789369664],[127,304,76,0.4823714841407877],[127,304,77,0.47631714224440075],[127,304,78,0.4699477167961246],[127,304,79,0.463436306962351],[127,305,64,0.451367193932605],[127,305,65,0.46065899069299315],[127,305,66,0.46982164924256664],[127,305,67,0.47845804480669535],[127,305,68,0.4861907990500273],[127,305,69,0.49266903774521553],[127,305,70,0.4975750363672312],[127,305,71,0.5006307536132384],[127,305,72,0.5016065817701297],[127,305,73,0.5005371153409703],[127,305,74,0.4978311725794641],[127,305,75,0.4938653075836782],[127,305,76,0.4889480672898454],[127,305,77,0.4833287902560362],[127,305,78,0.47720535360068145],[127,305,79,0.4707308680959806],[127,306,64,0.4473570293672763],[127,306,65,0.4574680775492166],[127,306,66,0.4674392872012014],[127,306,67,0.4768736688756577],[127,306,68,0.4853956227669415],[127,306,69,0.4926579841837512],[127,306,70,0.4983489720435871],[127,306,71,0.5021990403892392],[127,306,72,0.5039896857113293],[127,306,73,0.5037437356450412],[127,306,74,0.5018170053045432],[127,306,75,0.49853669951376733],[127,306,76,0.4941702646455696],[127,306,77,0.48893360409488734],[127,306,78,0.4829982889942568],[127,306,79,0.47649776417172685],[127,307,64,0.4420115491801786],[127,307,65,0.4529846713920469],[127,307,66,0.463789900774215],[127,307,67,0.47403139377789544],[127,307,68,0.4833366790200153],[127,307,69,0.4913640037631138],[127,307,70,0.4978095974231922],[127,307,71,0.5024148521054952],[127,307,72,0.5049751844322038],[127,307,73,0.5055036547667962],[127,307,74,0.504303174105277],[127,307,75,0.5016516527433772],[127,307,76,0.4977756539377275],[127,307,77,0.49285800559016396],[127,307,78,0.4870444535216033],[127,307,79,0.48044935633551566],[127,308,64,0.45334286939519586],[127,308,65,0.44715256046814705],[127,308,66,0.45879839234439224],[127,308,67,0.46983752349493124],[127,308,68,0.47990198853369836],[127,308,69,0.48865715395334586],[127,308,70,0.49580930521417443],[127,308,71,0.5011131637036378],[127,308,72,0.5043807998594267],[127,308,73,0.5056176645921139],[127,308,74,0.5050744622496105],[127,308,75,0.502980427220146],[127,308,76,0.499521935799485],[127,308,77,0.49484949801437916],[127,308,78,0.4890838363458648],[127,308,79,0.48232105135243364],[127,309,64,0.46154421443446414],[127,309,65,0.4467838268385981],[127,309,66,0.4524017221457823],[127,309,67,0.46421091926779445],[127,309,68,0.47499283404683956],[127,309,69,0.48442163843045943],[127,309,70,0.49221566742395584],[127,309,71,0.4981452761893606],[127,309,72,0.5020418005644344],[127,309,73,0.5039053657766064],[127,309,74,0.5039357526339052],[127,309,75,0.502314690581992],[127,309,76,0.4991895315234423],[127,309,77,0.49467961034907426],[127,309,78,0.4888817363599922],[127,309,79,0.48187481558036643],[127,310,64,0.4657261230706512],[127,310,65,0.45211122949575],[127,310,66,0.4445465802892248],[127,310,67,0.4570811504220197],[127,310,68,0.4685223950498064],[127,310,69,0.47855492876948713],[127,310,70,0.4869110452021111],[127,310,71,0.49337891425199465],[127,310,72,0.49781158553637317],[127,310,73,0.5002062321897206],[127,310,74,0.5007135587728431],[127,310,75,0.49946949330663015],[127,310,76,0.4965839726848753],[127,310,77,0.4921466653403167],[127,310,78,0.48623186720843653],[127,310,79,0.4789025709890367],[127,311,64,0.4658248118329878],[127,311,65,0.4533288714955984],[127,311,66,0.439773748456488],[127,311,67,0.44838609990296163],[127,311,68,0.46041387816309953],[127,311,69,0.47096642176631237],[127,311,70,0.47979177338804824],[127,311,71,0.48669793683813034],[127,311,72,0.491561918471528],[127,311,73,0.49438036278611686],[127,311,74,0.495257279244552],[127,311,75,0.49428500220962435],[127,311,76,0.4915380826330952],[127,311,77,0.487078371344703],[127,311,78,0.48095931621968785],[127,311,79,0.4732294732248474],[127,312,64,0.46184282581882946],[127,312,65,0.4504349801389602],[127,312,66,0.43788718818126277],[127,312,67,0.43806902451921337],[127,312,68,0.45059814315537117],[127,312,69,0.46157563238631505],[127,312,70,0.47076691976168117],[127,312,71,0.478001660677605],[127,312,72,0.4831828125776829],[127,312,73,0.48630892090293265],[127,312,74,0.48744017558970704],[127,312,75,0.48662799228986486],[127,312,76,0.48391394984995795],[127,312,77,0.47933423796505703],[127,312,78,0.4729233572489883],[127,312,79,0.4647170717209922],[127,313,64,0.45385460616325607],[127,313,65,0.4435004444362482],[127,313,66,0.43193284778000557],[127,313,67,0.4260750698960135],[127,313,68,0.43901082460263274],[127,313,69,0.45030992234151873],[127,313,70,0.45975661899866704],[127,313,71,0.46720379676331253],[127,313,72,0.4725820658947672],[127,313,73,0.4758942609841612],[127,313,74,0.47716007366572255],[127,313,75,0.4763930969234865],[127,313,76,0.4736046931764329],[127,313,77,0.4688078154766152],[127,313,78,0.46202011743191745],[127,313,79,0.4532663518534483],[127,314,64,0.442012096762919],[127,314,65,0.4326745782391559],[127,314,66,0.422057276050709],[127,314,67,0.41234724013690455],[127,314,68,0.42558894918699497],[127,314,69,0.43710176429466435],[127,314,70,0.4466899813287351],[127,314,71,0.4542309997834483],[127,314,72,0.45968444713048856],[127,314,73,0.4630597427309434],[127,314,74,0.4643397884549272],[127,314,75,0.46350381640519767],[127,314,76,0.4605360189062822],[127,314,77,0.45542875804283817],[127,314,78,0.44818509784805644],[127,314,79,0.438820659142109],[127,315,64,0.42655039025399655],[127,315,65,0.41819093030805204],[127,315,66,0.40849219287368516],[127,315,67,0.39730831967348057],[127,315,68,0.4102670486367555],[127,315,69,0.4218855416919451],[127,315,70,0.43150257589874175],[127,315,71,0.4390210305077469],[127,315,72,0.44443053201242066],[127,315,73,0.4477492326791473],[127,315,74,0.4489272723280055],[127,315,75,0.4479132848382239],[127,315,76,0.4446675697479735],[127,315,77,0.43916471072188856],[127,315,78,0.4313955480956967],[127,315,79,0.4213685054979648],[127,316,64,0.4077934132443691],[127,316,65,0.40037314131519686],[127,316,66,0.391560505089986],[127,316,67,0.381202036214819],[127,316,68,0.3929727683060465],[127,316,69,0.40459388422269144],[127,316,70,0.41413348883883205],[127,316,71,0.4215205311261694],[127,316,72,0.4267751901550888],[127,316,73,0.4299262932028735],[127,316,74,0.43089548676143286],[127,316,75,0.42960479537167634],[127,316,76,0.4259940656537221],[127,316,77,0.42002302026275357],[127,316,78,0.41167269477666085],[127,316,79,0.400946257515478],[127,317,64,0.38615965079992914],[127,317,65,0.3796408477836968],[127,317,66,0.371682376648401],[127,317,67,0.3621239112385975],[127,317,68,0.37362197139500963],[127,317,69,0.38515353890692455],[127,317,70,0.3945219560325677],[127,317,71,0.40168241354084544],[127,317,72,0.40668572244280377],[127,317,73,0.4095730589445684],[127,317,74,0.4102419975095254],[127,317,75,0.40859208378590683],[127,317,76,0.40454623651616145],[127,317,77,0.3980522696914553],[127,317,78,0.3890838238916059],[127,317,79,0.37764070681045303],[127,318,64,0.3621679101849774],[127,318,65,0.35651563296215305],[127,318,66,0.34938135302097745],[127,318,67,0.34059856314864556],[127,318,68,0.3521133388109909],[127,318,69,0.3634807768112743],[127,318,70,0.37260357059152327],[127,318,71,0.3794628606117784],[127,318,72,0.38413964892875324],[127,318,73,0.38668880067226574],[127,318,74,0.38698829323163036],[127,318,75,0.3849193704263866],[127,318,76,0.3803915467331879],[127,318,77,0.37334363668789705],[127,318,78,0.3637442171463773],[127,318,79,0.3515915224039878],[127,319,64,0.33644312385699493],[127,319,65,0.3316270246352808],[127,319,66,0.3252905398873398],[127,319,67,0.31726155945789275],[127,319,68,0.32832246466901155],[127,319,69,0.3394763353915527],[127,319,70,0.34830606503268013],[127,319,71,0.35481794035468245],[127,319,72,0.3591221472487609],[127,319,73,0.36128817656240775],[127,319,74,0.3611788275729538],[127,319,75,0.3586611604846337],[127,319,76,0.3536347116395467],[127,319,77,0.3460320757519577],[127,319,78,0.3358189421680589],[127,319,79,0.32299358515119114]] diff --git a/pumpkin-world/assets/converted_cave_pillar_7_4.json b/pumpkin-world/assets/converted_cave_pillar_7_4.json new file mode 100644 index 000000000..0d898c03a --- /dev/null +++ b/pumpkin-world/assets/converted_cave_pillar_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.26233574294432416],[112,-64,65,-0.16170654744647658],[112,-64,66,-0.1558625416693428],[112,-64,67,-0.19644189838075768],[112,-64,68,-0.20799830455764],[112,-64,69,-0.18019630235498227],[112,-64,70,-0.0923563148876921],[112,-64,71,-0.013529751629709461],[112,-64,72,0.05297290532334265],[112,-64,73,0.030161255648513807],[112,-64,74,-0.10499532223659812],[112,-64,75,-0.18767646873671567],[112,-64,76,-0.16192897234597764],[112,-64,77,-0.11048103343395083],[112,-64,78,-0.05588883714183119],[112,-64,79,-0.03301659794281794],[112,-63,64,-0.25721863469203254],[112,-63,65,-0.1591228802426387],[112,-63,66,-0.1523101463705251],[112,-63,67,-0.1918434040401843],[112,-63,68,-0.2046679171130026],[112,-63,69,-0.17846676364862468],[112,-63,70,-0.09201974289837743],[112,-63,71,-0.013177944385806979],[112,-63,72,0.05254121645987108],[112,-63,73,0.030253352502579833],[112,-63,74,-0.10261044373618176],[112,-63,75,-0.18413550516079039],[112,-63,76,-0.15905223861059498],[112,-63,77,-0.10827954154614318],[112,-63,78,-0.055157388894483794],[112,-63,79,-0.03367036056729309],[112,-62,64,-0.2522189691839835],[112,-62,65,-0.1565996332223436],[112,-62,66,-0.14885280111195023],[112,-62,67,-0.18735179939637636],[112,-62,68,-0.20138456917146141],[112,-62,69,-0.1767428881087986],[112,-62,70,-0.09167473658095565],[112,-62,71,-0.012856335159122548],[112,-62,72,0.052067683321044715],[112,-62,73,0.03029183946563723],[112,-62,74,-0.10028595573950254],[112,-62,75,-0.1806506289985458],[112,-62,76,-0.15622811993386798],[112,-62,77,-0.1061376295690954],[112,-62,78,-0.05445369849840418],[112,-62,79,-0.03430520915759463],[112,-61,64,-0.24733318002977492],[112,-61,65,-0.15413477997753952],[112,-61,66,-0.1454883174661657],[112,-61,67,-0.1829650305184994],[112,-61,68,-0.19814708899348463],[112,-61,69,-0.1750236664767538],[112,-61,70,-0.09132049337516727],[112,-61,71,-0.012563218814824865],[112,-61,72,0.05155477231832323],[112,-61,73,0.03027915106568187],[112,-61,74,-0.0980204608401436],[112,-61,75,-0.17722116927547643],[112,-61,76,-0.1534557132993622],[112,-61,77,-0.10405377935959784],[112,-61,78,-0.05377637603701429],[112,-61,79,-0.03492056450608375],[112,-60,64,-0.24255770589755377],[112,-60,65,-0.151726284381063],[112,-60,66,-0.14221446290770598],[112,-60,67,-0.178680975694677],[112,-60,68,-0.19495426003460437],[112,-60,69,-0.17330808626148128],[112,-60,70,-0.09095624992838744],[112,-60,71,-0.012296984723507598],[112,-60,72,0.051004807428359555],[112,-60,73,0.030217616198271912],[112,-60,74,-0.09581257005890516],[112,-60,75,-0.17384640162919188],[112,-60,76,-0.15073406468518497],[112,-60,77,-0.1020264502899345],[112,-60,78,-0.053124056635982436],[112,-60,79,-0.03551588015016714],[112,-59,64,-0.23788899335809313],[112,-59,65,-0.14937209981050809],[112,-59,66,-0.1390289713975918],[112,-59,67,-0.17449746464696855],[112,-59,68,-0.19180483640019014],[112,-59,69,-0.17159513441000246],[112,-59,70,-0.09058126155972335],[112,-59,71,-0.01205607491913767],[112,-59,72,0.05042002239311273],[112,-59,73,0.03010950674488165],[112,-59,74,-0.09366086262165874],[112,-59,75,-0.17052552115078218],[112,-59,76,-0.1480621560124336],[112,-59,77,-0.10005407647779133],[112,-59,78,-0.05249539929388067],[112,-59,79,-0.03609064188557554],[112,-58,64,-0.23332349796119914],[112,-58,65,-0.14707016939454864],[112,-58,66,-0.13592954627037304],[112,-58,67,-0.17041228213090553],[112,-58,68,-0.18869754265908167],[112,-58,69,-0.16988379453349098],[112,-58,70,-0.09019479930067732],[112,-58,71,-0.011838982775046338],[112,-58,72,0.049802562202284524],[112,-58,73,0.029957037214624355],[112,-58,74,-0.0915638886421483],[112,-58,75,-0.16725764551774716],[112,-58,76,-0.14543890712677907],[112,-58,77,-0.09813506796518133],[112,-58,78,-0.05188908500341816],[112,-58,79,-0.03664436347367571],[112,-57,64,-0.22885768522937608],[112,-57,65,-0.14481842617665966],[112,-57,66,-0.13291386297169325],[112,-57,67,-0.1664231714644004],[112,-57,68,-0.1856310737855094],[112,-57,69,-0.16817304426660482],[112,-57,70,-0.08979614700177564],[112,-57,71,-0.011644251600678867],[112,-57,72,0.04915448479401099],[112,-57,73,0.029762364684582647],[112,-57,74,-0.089520171700713],[112,-57,75,-0.1640418181900293],[112,-57,76,-0.1428631778045166],[112,-57,77,-0.0962678118276301],[112,-57,78,-0.05130381487053479],[112,-57,79,-0.03717658243900985],[112,-56,64,-0.22448803158306088],[112,-56,65,-0.14261479320667245],[112,-56,66,-0.1299795716495749],[112,-56,67,-0.16252783798648127],[112,-56,68,-0.18260409523970228],[112,-56,69,-0.16646185278178388],[112,-56,70,-0.08938459851557737],[112,-56,71,-0.01147047315027419],[112,-56,72,0.048477762984283676],[112,-56,73,0.029527589048236623],[112,-56,74,-0.08752821130109213],[112,-56,75,-0.16087701164999524],[112,-56,76,-0.1403337697720326],[112,-56,77,-0.09445067321008885],[112,-56,78,-0.05073830823699992],[112,-56,79,-0.03768685597319511],[112,-55,64,-0.22021102521197441],[112,-55,65,-0.14045718357209272],[112,-55,66,-0.12712429960073332],[112,-55,67,-0.15872395244071086],[112,-55,68,-0.17961524319075992],[112,-55,69,-0.16474917847745205],[112,-55,70,-0.08895945497441932],[112,-55,71,-0.01131628605386216],[112,-55,72,0.047774286611348464],[112,-55,73,0.029254753557439762],[112,-55,74,-0.08558648520913355],[112,-55,75,-0.15776213068307635],[112,-55,76,-0.13784942873646971],[112,-55,77,-0.09268199628960332],[112,-55,78,-0.05019130081248442],[112,-55,79,-0.03817475695923477],[112,-54,64,-0.21602316690797707],[112,-54,65,-0.13834350038190515],[112,-54,66,-0.12434565357471733],[112,-54,67,-0.1550091542797398],[112,-54,68,-0.17666312488583377],[112,-54,69,-0.16303396685869018],[112,-54,70,-0.0885200221807021],[112,-54,71,-0.011180374180756403],[112,-54,72,0.04704586488145782],[112,-54,73,0.028945845642940143],[112,-54,74,-0.08369345167830536],[112,-54,75,-0.15469601569717825],[112,-54,76,-0.1354088464269344],[112,-54,77,-0.0909601051662558],[112,-54,78,-0.04966154282254258],[112,-54,79,-0.03863987012989486],[112,-53,64,-0.21192116585867785],[112,-53,65,-0.13627176464585783],[112,-53,66,-0.12164133842953923],[112,-53,67,-0.1513812027374067],[112,-53,68,-0.1737464921920101],[112,-53,69,-0.1613153123865957],[112,-53,70,-0.08806569923959046],[112,-53,71,-0.011061476606625585],[112,-53,72,0.046294278618017964],[112,-53,73,0.028602829282316427],[112,-53,74,-0.08184764272437603],[112,-53,75,-0.15167761805537205],[112,-53,76,-0.13301081614408708],[112,-53,77,-0.08928340953284863],[112,-53,78,-0.0491478558975982],[112,-53,79,-0.03908183586638026],[112,-52,64,-0.2079032362780982],[112,-52,65,-0.13424097127081439],[112,-52,66,-0.1190099291169349],[112,-52,67,-0.1478389537788211],[112,-52,68,-0.17086539551992366],[112,-52,69,-0.15959355944444642],[112,-52,70,-0.08759659531836786],[112,-52,71,-0.010958464532441963],[112,-52,72,0.045521613892993605],[112,-52,73,0.02822785584148415],[112,-52,74,-0.08004826686677315],[112,-52,75,-0.14870714139424457],[112,-52,76,-0.13065525363839062],[112,-52,77,-0.08765110046120254],[112,-52,78,-0.04864952608435752],[112,-52,79,-0.03950067765530991],[112,-51,64,-0.20396828543870973],[112,-51,65,-0.13225057112911995],[112,-51,66,-0.11645037674779724],[112,-51,67,-0.14438172445902386],[112,-51,68,-0.168020471403931],[112,-51,69,-0.1578696543943807],[112,-51,70,-0.08711318230803682],[112,-51,71,-0.010870294583025106],[112,-51,72,0.04473005740405711],[112,-51,73,0.027823137609101822],[112,-51,74,-0.07829481838769964],[112,-51,75,-0.14578531484566348],[112,-51,76,-0.12834255600897718],[112,-51,77,-0.0860627102357334],[112,-51,78,-0.048166069712540734],[112,-51,79,-0.03989664027505825],[112,-50,64,-0.20011522468147885],[112,-50,65,-0.13030002267789637],[112,-50,66,-0.11396159727991469],[112,-50,67,-0.14100876808006865],[112,-50,68,-0.1652123316323593],[112,-50,69,-0.15614457157039663],[112,-50,70,-0.08661597776982365],[112,-50,71,-0.010795968137510048],[112,-50,72,0.04392171996691258],[112,-50,73,0.027390835529426828],[112,-50,74,-0.07658675467926962],[112,-50,75,-0.1429127839443783],[112,-50,76,-0.12607306006751215],[112,-50,77,-0.08451774290097053],[112,-50,78,-0.04769702817357847],[112,-50,79,-0.04027002767060512],[112,-49,64,-0.19634296658422679],[112,-49,65,-0.12838879022148003],[112,-49,66,-0.11154247283442119],[112,-49,67,-0.1377192751013671],[112,-49,68,-0.1624415591687118],[112,-49,69,-0.1544193066694017],[112,-49,70,-0.0861055401378174],[112,-49,71,-0.010734531033278096],[112,-49,72,0.04309863452789033],[112,-49,73,0.026933055935204033],[112,-49,74,-0.07492349753860299],[112,-49,75,-0.14009010981064138],[112,-49,76,-0.12384704176011284],[112,-49,77,-0.08301567501251722],[112,-49,78,-0.04724196663787474],[112,-49,79,-0.04062119856340687],[112,-48,64,-0.19265042583632547],[112,-48,65,-0.1265163445664961],[112,-48,66,-0.10919185519766654],[112,-48,67,-0.13451237692379725],[112,-48,68,-0.1597087075070968],[112,-48,69,-0.15269487333281848],[112,-48,70,-0.0855824656499241],[112,-48,71,-0.01068507337441606],[112,-48,72,0.04226275539229487],[112,-48,73,0.026451848181056888],[112,-48,74,-0.07330443614746505],[112,-48,75,-0.1373177717434148],[112,-48,76,-0.12166471859210415],[112,-48,77,-0.08155595835150083],[112,-48,78,-0.04680047384389651],[112,-48,79,-0.04095056296206223],[112,-47,64,-0.18903652006458582],[112,-47,65,-0.12468216361627105],[112,-47,66,-0.10690856924786207],[112,-47,67,-0.13138714967084603],[112,-47,68,-0.15701430013335688],[112,-47,69,-0.15097229980098043],[112,-47,70,-0.08504738528856634],[112,-47,71,-0.010646729229140934],[112,-47,72,0.04141595770238669],[112,-47,73,0.02594920257177152],[112,-47,74,-0.0717289299657755],[112,-47,75,-0.13459616989026502],[112,-47,76,-0.11952625208544544],[112,-47,77,-0.08013802257183303],[112,-47,78,-0.046372161838637016],[112,-47,79,-0.04125857869808352],[112,-46,64,-0.18550017061175814],[112,-46,65,-0.1228857329065074],[112,-46,66,-0.10469141629799712],[112,-46,67,-0.1283426179536334],[112,-46,68,-0.15435883009053464],[112,-46,69,-0.14925262565250222],[112,-46,70,-0.08450096174461201],[112,-46,71,-0.010618676223732193],[112,-46,72,0.04056003715463609],[112,-46,73,0.025427048578385705],[112,-46,74,-0.07019631153362679],[112,-46,75,-0.13192562798159208],[112,-46,76,-0.11743175025849686],[112,-46,77,-0.07876127777351763],[112,-46,78,-0.04595666567300614],[112,-46,79,-0.041545747999859356],[112,-45,64,-0.1820403032690032],[112,-45,65,-0.12112654608413603],[112,-45,66,-0.10253917734715434],[112,-45,67,-0.12537775860729858],[112,-45,68,-0.15174275964690453],[112,-45,69,-0.1475368986397333],[112,-45,70,-0.08394388641708381],[112,-45,71,-0.010600135040363426],[112,-45,72,0.0396967099456476],[112,-45,73,0.024887253334386725],[112,-45,74,-0.06870588917696571],[112,-45,75,-0.12930639611713052],[112,-45,76,-0.11538127011822484],[112,-45,77,-0.07742511699589875],[112,-45,78,-0.045553643055646104],[112,-45,79,-0.0418126141169236],[112,-44,64,-0.1786558489640347],[112,-44,65,-0.11940410533157363],[112,-44,66,-0.10045061623316247],[112,-44,67,-0.12249150438705639],[112,-44,68,-0.14916652006471798],[112,-44,69,-0.14582617163067185],[112,-44,70,-0.08337687646062181],[112,-44,71,-0.010590368826428203],[112,-44,72,0.03882761293562945],[112,-44,73,0.024331620403572143],[112,-44,74,-0.06725694961274589],[112,-44,75,-0.12673865359317504],[112,-44,76,-0.11337482015559307],[112,-44,77,-0.07612891862556785],[112,-44,78,-0.04516277396882745],[112,-44,79,-0.04205975800592406],[112,-43,64,-0.17534574440668402],[112,-43,65,-0.11771792173872937],[112,-43,66,-0.0984244826803384],[112,-43,67,-0.11968274761306764],[112,-43,68,-0.14663051146756606],[112,-43,69,-0.14412149966675522],[112,-43,70,-0.08280067189182351],[112,-43,71,-0.010588682522851061],[112,-43,72,0.03795430401805396],[112,-43,73,0.023761888810510955],[112,-43,74,-0.0658487604499901],[112,-43,75,-0.12422251175946708],[112,-43,76,-0.11141236283546464],[112,-43,77,-0.07487204871439147],[112,-43,78,-0.044783760250101765],[112,-43,79,-0.042287795088803946],[112,-42,64,-0.17210893269357594],[112,-42,65,-0.11606751562504068],[112,-42,66,-0.09645951523656736],[112,-42,67,-0.11695034375381959],[112,-42,68,-0.14413510280390204],[112,-42,69,-0.14242393714489615],[112,-42,70,-0.08221603276467633],[112,-42,71,-0.010594422118709642],[112,-42,72,0.037078262684049866],[112,-42,73,0.023179732324194915],[112,-42,74,-0.06448057258357616],[112,-42,75,-0.12175801689498077],[112,-42,76,-0.10949381707274228],[112,-42,77,-0.07365386320366633],[112,-42,78,-0.04441632514326633],[112,-42,79,-0.04249737209274654],[112,-41,64,-0.16894436387384737],[112,-41,65,-0.11445241681407448],[112,-41,66,-0.09455444409485034],[112,-41,67,-0.11429311493865402],[112,-41,68,-0.14168063190421493],[112,-41,69,-0.1407345351313591],[112,-41,70,-0.08162373642461626],[112,-41,71,-0.010606973839527988],[112,-41,72,0.036200890769779996],[112,-41,73,0.02258675898488112],[112,-41,74,-0.06315162247824262],[112,-41,75,-0.11934515309247316],[112,-41,76,-0.10761906068716809],[112,-41,77,-0.07247371005120137],[112,-41,78,-0.044060212822297565],[112,-41,79,-0.042689163980685174],[112,-40,64,-0.16585099547785276],[112,-40,65,-0.11287216486327867],[112,-40,66,-0.09270799379512702],[112,-40,67,-0.111709853390831],[112,-40,68,-0.13926740562917161],[112,-40,69,-0.13905433881417764],[112,-40,70,-0.08102457484994946],[112,-40,71,-0.010625763276470223],[112,-40,72,0.035323513374981706],[112,-40,73,0.021984510863780886],[112,-40,74,-0.06186113434078939],[112,-40,75,-0.1169838451421294],[112,-40,76,-0.10578793282973677],[112,-40,77,-0.07133093125875568],[112,-40,78,-0.04371518789188053],[112,-40,79,-0.04286387098034781],[112,-39,64,-0.16282779301072778],[112,-39,65,-0.11132630925137926],[112,-39,66,-0.09091888580268476],[112,-39,67,-0.10919932477312191],[112,-39,68,-0.13689570010571805],[112,-39,69,-0.13738438509977186],[112,-39,70,-0.08041935208842041],[112,-39,71,-0.01065025446340058],[112,-39,72,0.03444737994091288],[112,-39,73,0.021374464045059362],[112,-39,74,-0.06060832217882644],[112,-39,75,-0.11467396140503215],[112,-39,76,-0.10400023637410795],[112,-39,77,-0.07022486479774476],[112,-39,78,-0.04338103486798704],[112,-39,79,-0.0430222157188448],[112,-38,64,-0.15987373041281647],[112,-38,65,-0.10981440952609746],[112,-38,66,-0.08918584096026723],[112,-38,67,-0.10676027143881968],[112,-38,68,-0.13456576104815116],[112,-38,69,-0.13572570035871795],[112,-38,70,-0.07980888179607004],[112,-38,71,-0.010679948908732154],[112,-38,72,0.0335736654758509],[112,-38,73,0.020758028819262194],[112,-38,74,-0.0593923917449812],[112,-38,75,-0.1124153166677918],[112,-38,76,-0.10225574026704673],[112,-38,77,-0.06915484643181599],[112,-38,78,-0.04305755764201653],[112,-38,79,-0.043164940469127173],[112,-37,64,-0.15698779048900255],[112,-37,65,-0.10833603541487534],[112,-37,66,-0.08750758181159869],[112,-37,67,-0.10439141558177592],[112,-37,68,-0.13227780416101537],[112,-37,69,-0.13407929832476745],[112,-37,70,-0.07919398488472848],[112,-37,71,-0.010714384588801442],[112,-37,72,0.032703471916344706],[112,-37,73,0.02013655007711197],[112,-37,74,-0.05821254236591347],[112,-37,75,-0.11020767497018713],[112,-37,76,-0.10055418183244114],[112,-37,77,-0.06812021143542281],[112,-37,78,-0.04274457893191991],[112,-37,79,-0.04329280451382997],[112,-36,64,-0.15416896530880908],[112,-36,65,-0.1068907669011465],[112,-36,66,-0.08588283479447595],[112,-36,67,-0.10209146227963717],[112,-36,68,-0.13003201562043182],[112,-36,69,-0.13244617815024762],[112,-36,70,-0.07857548728358967],[112,-36,71,-0.01075313490917447],[112,-36,72,0.03183782961265836],[112,-36,73,0.01951130789263262],[112,-36,74,-0.057067968655754614],[112,-36,75,-0.10805075239804712],[112,-36,76,-0.09889526902382766],[112,-36,77,-0.06712029620790563],[112,-36,78,-0.042441939723524016],[112,-36,79,-0.04340658163114175],[112,-35,64,-0.15141625657931554],[112,-35,65,-0.10547819426887627],[112,-35,66,-0.08431033230234423],[112,-35,67,-0.09985910242534662],[112,-35,68,-0.12782855263056322],[112,-35,69,-0.1308273226204011],[112,-35,70,-0.07795421781974933],[112,-35,71,-0.010795807640227315],[112,-35,72,0.030977698926852173],[112,-35,73,0.01888351828436366],[112,-35,74,-0.05595786211411401],[112,-35,75,-0.1059442198342658],[112,-35,76,-0.09727868262100398],[112,-35,77,-0.06615443978320955],[112,-35,78,-0.042149498705320046],[112,-35,79,-0.043507057706747385],[112,-34,64,-0.14872867599276599],[112,-34,65,-0.10409791811790532],[112,-34,66,-0.0827888146136357],[112,-34,67,-0.09769301554248642],[112,-34,68,-0.1256675440516744],[112,-34,69,-0.12922369652828605],[112,-34,70,-0.077331006221709],[112,-34,71,-0.010842043832993687],[112,-34,72,0.03012397193224672],[112,-34,73,0.018254334143543747],[112,-34,74,-0.05488141260901999],[112,-34,75,-0.10388770566121754],[112,-34,76,-0.09570407836665422],[112,-34,77,-0.06522198523566317],[112,-34,78,-0.041867131699738],[112,-34,79,-0.04359502847505033],[112,-33,64,-0.14610524555084453],[112,-33,65,-0.10274954935275062],[112,-33,66,-0.08131703168880663],[112,-33,67,-0.09559187248084028],[112,-33,68,-0.1235490910963503],[112,-33,69,-0.12763624521131672],[112,-33,70,-0.07670668124930152],[112,-33,71,-0.010891516721141572],[112,-33,72,0.02927747420315128],[112,-33,73,0.017624846318100233],[112,-33,74,-0.05383780974558443],[112,-33,75,-0.10188079840845085],[112,-33,76,-0.09417108903948417],[112,-33,77,-0.06432228098275623],[112,-33,78,-0.041594731093926744],[112,-33,79,-0.043671297392324615],[112,-32,64,-0.1435449978673672],[112,-32,65,-0.10143270914727687],[112,-32,66,-0.07989374483529464],[112,-32,67,-0.09355433798899815],[112,-32,68,-0.12147326809019819],[112,-32,69,-0.12606589324965728],[112,-32,70,-0.07608206895264596],[112,-32,71,-0.010943930614542003],[112,-32,72,0.028438966684138818],[112,-32,73,0.01699608484152685],[112,-32,74,-0.05282624412132561],[112,-32,75,-0.09992304933987922],[112,-32,76,-0.09267932646065792],[112,-32,77,-0.06345468198606206],[112,-32,78,-0.04133220527278462],[112,-32,79,-0.043736673643657374],[112,-31,64,-0.14104697645125366],[112,-31,65,-0.10014702888774628],[112,-31,66,-0.0785177282411974],[112,-31,67,-0.09157907316156665],[112,-31,68,-0.11944012329348765],[112,-31,69,-0.1245135433261837],[112,-31,70,-0.07545799106223727],[112,-31,71,-0.010999019789755558],[112,-31,72,0.027609147628334628],[112,-31,73,0.01636902029578009],[112,-31,74,-0.0518459084694577],[112,-31,75,-0.09801397497528135],[112,-31,76,-0.0912283834308542],[112,-31,77,-0.06261855085187834],[112,-31,78,-0.041079478056955554],[112,-31,79,-0.04379197028503795],[112,-30,64,-0.13861023597153904],[112,-30,65,-0.09889215009666738],[112,-30,66,-0.07718777037886863],[112,-30,67,-0.08966473775910738],[112,-30,68,-0.11744967978015765],[112,-30,69,-0.12298007524713606],[112,-30,70,-0.07483526351166335],[112,-30,71,-0.011056547382484868],[112,-30,72,0.026788654594528064],[112,-30,73,0.015744565297538368],[112,-30,74,-0.05089599869166175],[112,-30,75,-0.09615305954136776],[112,-30,76,-0.08981783559564509],[112,-30,77,-0.06181325883343655],[112,-30,78,-0.040836488148360495],[112,-30,79,-0.04383800252137854],[112,-29,64,-0.13623384250603554],[112,-29,65,-0.09766772433966343],[112,-29,66,-0.07590267527987454],[112,-29,67,-0.08780999239934495],[112,-29,68,-0.11550193637050672],[112,-29,69,-0.12146634512189006],[112,-29,70,-0.07421469509374078],[112,-29,71,-0.011116304286671957],[112,-29,72,0.02597806649336125],[112,-29,73,0.015123576097507578],[112,-29,74,-0.04997571478196756],[112,-29,75,-0.0943397573480324],[112,-29,76,-0.0884472432371754],[112,-29,77,-0.06103818673667481],[112,-29,78,-0.04060318858558252],[112,-29,79,-0.043875586120606574],[112,-28,64,-0.13391687377527448],[112,-28,65,-0.09647341311761737],[112,-28,66,-0.07466126368321171],[112,-28,67,-0.08601350061881483],[112,-28,68,-0.11359686861403127],[112,-28,69,-0.11997318469991235],[112,-28,70,-0.0735970862504535],[112,-28,71,-0.011178108064750303],[112,-28,72,0.02517790567313262],[112,-28,73,0.014506854282648123],[112,-28,74,-0.04908426164362816],[112,-28,75,-0.09257349508592798],[112,-28,76,-0.08711615299056236],[112,-28,77,-0.06029272573187822],[112,-28,78,-0.04037954621137631],[112,-28,79,-0.04390553596358269],[112,-27,64,-0.13165841936331002],[112,-27,65,-0.09530888774625529],[112,-27,66,-0.07346237405899135],[112,-27,67,-0.0842739308045974],[112,-27,68,-0.1117344298189047],[112,-27,69,-0.118501400862474],[112,-27,70,-0.07298322799655867],[112,-27,71,-0.011241801873288838],[112,-27,72,0.02438864003614401],[112,-27,73,0.013895148571511678],[112,-27,74,-0.04822084980102317],[112,-27,75,-0.09085367404192489],[112,-27,76,-0.08582409948376236],[112,-27,77,-0.059576278073664425],[112,-27,78,-0.04016554115440816],[112,-27,79,-0.04392866472912242],[112,-26,64,-0.12945758092675122],[112,-26,65,-0.09417382922510135],[112,-26,66,-0.0723048635099318],[112,-26,67,-0.08258995799610094],[112,-26,68,-0.10991455212452828],[112,-26,69,-0.11705177526617008],[112,-26,70,-0.07237390097615251],[112,-26,71,-0.011307253407892003],[112,-26,72,0.023610685177033578],[112,-26,73,0.013289156693332471],[112,-26,74,-0.04738469600863268],[112,-26,75,-0.08917967222931167],[112,-26,76,-0.08457060689984923],[112,-26,77,-0.058888257731833975],[112,-26,78,-0.03996116632708668],[112,-26,79,-0.04394578171289654],[112,-25,64,-0.1273134723934322],[112,-25,65,-0.09306792809776276],[112,-25,66,-0.07118760855337455],[112,-25,67,-0.08096026555740085],[112,-25,68,-0.10813714761377514],[112,-25,69,-0.11562506413504445],[112,-25,70,-0.07176987465117898],[112,-25,71,-0.011374353871051405],[112,-25,72,0.02284440653486688],[112,-25,73,0.012689527341796892],[112,-25,74,-0.04657502375931396],[112,-25,75,-0.08755084643006884],[112,-25,76,-0.08335519046103004],[112,-25,77,-0.058228090935825136],[112,-25,78,-0.03976642694128886],[112,-25,79,-0.04395769177870375],[112,-24,64,-0.1252252201520525],[112,-24,65,-0.09199088430537124],[112,-24,66,-0.07010950578671411],[112,-24,67,-0.07938354672099422],[112,-24,68,-0.10640210946160546],[112,-24,69,-0.11422199819774999],[112,-24,70,-0.07117190662044975],[112,-24,71,-0.011443016966383335],[112,-24,72,0.022090121551184692],[112,-24,73,0.012096862194821048],[112,-24,74,-0.045791063694173906],[112,-24,75,-0.08596653414690923],[112,-24,76,-0.08217735783396415],[112,-24,77,-0.05759521663557121],[112,-24,78,-0.039581340043614154],[112,-24,79,-0.04396519444024821],[112,-23,64,-0.123191963233915],[112,-23,65,-0.09094240703479672],[112,-23,66,-0.06906947243921212],[112,-23,67,-0.07785850600408567],[112,-23,68,-0.10470931311673966],[112,-23,69,-0.11284328276582443],[112,-23,70,-0.07058074206731435],[112,-23,71,-0.011513177922322189],[112,-23,72,0.021348101826760436],[112,-23,73,0.011511717992194003],[112,-23,74,-0.04503205391627195],[112,-23,75,-0.08442605546302095],[112,-23,76,-0.0810366104561043],[112,-23,77,-0.056989086881541966],[112,-23,78,-0.03940593407157674],[112,-23,79,-0.04396908307119218],[112,-22,64,-0.12121285348792427],[112,-22,65,-0.089922214563233],[112,-22,66,-0.06806644681340258],[112,-22,67,-0.07638386049892398],[112,-22,68,-0.10305861751327226],[112,-22,69,-0.11148959794899749],[112,-22,70,-0.06999711333389387],[112,-22,71,-0.011584792548192344],[112,-22,72,0.02061857527016048],[112,-22,73,0.01093460866329177],[112,-22,74,-0.044297240210498585],[112,-22,75,-0.08292871480786444],[112,-22,76,-0.0799324447830661],[112,-22,77,-0.05640916712685092],[112,-22,78,-0.039240248432073147],[112,-22,79,-0.043970144241064116],[112,-21,64,-0.1192870557499258],[112,-21,65,-0.08893003410063216],[112,-21,66,-0.06709938861940182],[112,-21,67,-0.07495834103898985],[112,-21,68,-0.10144986630922148],[112,-21,69,-0.11016159900324558],[112,-21,70,-0.0694217396195128],[112,-21,71,-0.011657836325328972],[112,-21,72,0.019901728231657347],[112,-21,73,0.010366007497532222],[112,-21,74,-0.04358587617196718],[112,-21,75,-0.08147380262766678],[112,-21,76,-0.07886435345721804],[112,-21,77,-0.055854936454309105],[112,-21,78,-0.039084333103312864],[112,-21,79,-0.04396915717437585],[112,-20,64,-0.11741374800726234],[112,-20,65,-0.08796560163124063],[112,-20,66,-0.06616727920541562],[112,-20,67,-0.07358069324297933],[112,-20,68,-0.09988288914904712],[112,-20,69,-0.10885991680707029],[112,-20,70,-0.06885532680064113],[112,-20,71,-0.011732303535587496],[112,-20,72,0.019197707616593597],[112,-20,73,0.00980634935081449],[112,-20,74,-0.04289722324513045],[112,-20,75,-0.0800605969594449],[112,-20,76,-0.077831826397765],[112,-20,77,-0.0553258877312039],[112,-20,78,-0.03893824826118741],[112,-20,79,-0.043966893330050764],[112,-19,64,-0.11559212155947995],[112,-19,65,-0.08702866175547046],[112,-19,66,-0.0652691216878862],[112,-19,67,-0.07224967843884482],[112,-19,68,-0.0983575029473941],[112,-19,69,-0.10758515846144091],[112,-19,70,-0.06829856736954189],[112,-19,71,-0.011808206429454416],[112,-19,72,0.018506622972640132],[112,-19,73,0.00925603288157175],[112,-19,74,-0.04223055067588855],[112,-19,75,-0.0786883649077417],[112,-19,76,-0.07683435181282382],[112,-19,77,-0.05482152769461134],[112,-19,78,-0.038802063930987424],[112,-19,79,-0.04396411609817937],[112,-18,64,-0.1138213811760073],[112,-18,65,-0.086118967533216],[112,-18,66,-0.06440394098474475],[112,-18,67,-0.07096407447033247],[112,-18,68,-0.0968735131914688],[112,-18,69,-0.10633790800877856],[112,-18,70,-0.06775214048866174],[112,-18,71,-0.011885574435742846],[112,-18,72,0.017828548545852505],[112,-18,73,0.008715422810575196],[112,-18,74,-0.04158513537886902],[112,-18,75,-0.0773563640234775],[112,-18,76,-0.07587141713410792],[112,-18,77,-0.05434137696998271],[112,-18,78,-0.03867585966525381],[112,-18,79,-0.04396158061101626],[112,-17,64,-0.11210074525147158],[112,-17,65,-0.08523628032950066],[112,-17,66,-0.06357078375512999],[112,-17,67,-0.06972267638851448],[112,-17,68,-0.09543071525951152],[112,-17,69,-0.10511872726621954],[112,-17,70,-0.0672167121575788],[112,-17,71,-0.011964453414568442],[112,-17,72,0.017163525300944282],[112,-17,73,0.008184852199202486],[112,-17,74,-0.04096026172190272],[112,-17,75,-0.07606384358445957],[112,-17,76,-0.0749425098748614],[112,-17,77,-0.0538849700255817],[112,-17,78,-0.038559724248343454],[112,-17,79,-0.04396003366496924],[112,-16,64,-0.1104294459593445],[112,-16,65,-0.08438036966332055],[112,-16,66,-0.0627687182490066],[112,-16,67,-0.06852429703103101],[112,-16,68,-0.09402889575307824],[112,-16,69,-0.10392815676848914],[112,-16,70,-0.066692935489316],[112,-16,71,-0.01204490495519378],[112,-16,72,0.016511562901541134],[112,-16,73,0.00766462474130126],[112,-16,74,-0.040355221229700075],[112,-16,75,-0.07481004577736597],[112,-16,76,-0.07404711841184383],[112,-16,77,-0.05345185506531821],[112,-16,78,-0.03845375542825147],[112,-16,79,-0.04396021375036115],[112,-15,64,-0.10880672940453019],[112,-15,65,-0.08355101306043214],[112,-15,66,-0.061996834070067564],[112,-15,67,-0.06736776749185795],[112,-15,68,-0.09266783384102154],[112,-15,69,-0.10276671681575653],[112,-15,70,-0.06618145109276902],[112,-15,71,-0.012127005720137843],[112,-15,72,0.01587264164660881],[112,-15,73,0.007155017064285534],[112,-15,74,-0.039769312208610616],[112,-15,75,-0.07359420678118489],[112,-15,76,-0.07318473269223465],[112,-15,77,-0.053041593862411314],[112,-15,78,-0.038358059676123844],[112,-15,79,-0.04396285118573077],[112,-14,64,-0.10723185577536588],[112,-14,65,-0.08274799591061238],[112,-14,66,-0.06125424185512426],[112,-14,67,-0.06625193748437927],[112,-14,68,-0.09134730261313204],[112,-14,69,-0.10163490862181508],[112,-14,70,-0.06568288755788011],[112,-14,71,-0.012210846836705544],[112,-14,72,0.015246714359726207],[112,-14,73,0.006656281035682829],[112,-14,74,-0.03920183929414121],[112,-14,75,-0.07241555775216821],[112,-14,76,-0.07235484486628975],[112,-14,77,-0.05265376153609486],[112,-14,78,-0.038272751973716566],[112,-14,79,-0.04396866835337747],[112,-13,64,-0.1057041037615878],[112,-13,65,-0.08197110314930695],[112,-13,66,-0.060540077911141785],[112,-13,67,-0.06517567862454682],[112,-13,68,-0.09006704837054916],[112,-13,69,-0.10053317562029326],[112,-13,70,-0.06519781928277557],[112,-13,71,-0.012296516199322316],[112,-13,72,0.014633699324644143],[112,-13,73,0.0061685903948044],[112,-13,74,-0.03865216274151929],[112,-13,75,-0.0712733278119805],[112,-13,76,-0.07155692623238456],[112,-13,77,-0.05228794833215099],[112,-13,78,-0.038197977437040516],[112,-13,79,-0.04397838351555123],[112,-12,64,-0.10422279645355065],[112,-12,65,-0.08122006722837967],[112,-12,66,-0.05985354598347792],[112,-12,67,-0.06413791235251706],[112,-12,68,-0.08882664372128488],[112,-12,69,-0.09946163588420533],[112,-12,70,-0.06472648168251942],[112,-12,71,-0.012383983084572326],[112,-12,72,0.014033424478823026],[112,-12,73,0.005691675533201959],[112,-12,74,-0.03812002805194712],[112,-12,75,-0.07016676364648702],[112,-12,76,-0.07079027915560884],[112,-12,77,-0.05194377729661644],[112,-12,78,-0.03813404997928015],[112,-12,79,-0.043992726338969716],[112,-11,64,-0.10278727663801296],[112,-11,65,-0.08049460943877078],[112,-11,66,-0.05919391652853817],[112,-11,67,-0.06313761582373902],[112,-11,68,-0.08762558034907923],[112,-11,69,-0.09842024741268264],[112,-11,70,-0.06426895340243396],[112,-11,71,-0.012473169287736714],[112,-11,72,0.01344567151192625],[112,-11,73,0.005225072347864589],[112,-11,74,-0.03760534816077594],[112,-11,75,-0.06909513322089116],[112,-11,76,-0.0700541602133719],[112,-11,77,-0.05162090574674402],[112,-11,78,-0.038081342857861314],[112,-11,79,-0.04401240336745053],[112,-10,64,-0.10139689076547352],[112,-10,65,-0.07979447004287119],[112,-10,66,-0.05856051071153153],[112,-10,67,-0.06217381341947126],[112,-10,68,-0.08646334919055301],[112,-10,69,-0.09740895203314902],[112,-10,70,-0.06382531044310344],[112,-10,71,-0.012564009979635428],[112,-10,72,0.012870210092890874],[112,-10,73,0.004768325271989085],[112,-10,74,-0.037108023731801526],[112,-10,75,-0.06805772075155166],[112,-10,76,-0.06934786834556463],[112,-10,77,-0.05131901903356982],[112,-10,78,-0.038040208087128526],[112,-10,79,-0.044038083137743524],[112,-9,64,-0.10005098992492187],[112,-9,65,-0.07911940735944233],[112,-9,66,-0.057952697108009515],[112,-9,67,-0.06124557434917914],[112,-9,68,-0.08533944192875594],[112,-9,69,-0.09642767737529025],[112,-9,70,-0.06339562683805842],[112,-9,71,-0.012656453353140201],[112,-9,72,0.012306798931040133],[112,-9,73,0.004320987781167394],[112,-9,74,-0.03662794375270878],[112,-9,75,-0.06705382619906929],[112,-9,76,-0.06867074255747743],[112,-9,77,-0.05103782904010721],[112,-9,78,-0.03801097834906523],[112,-9,79,-0.044070398874543774],[112,-8,64,-0.09874893083450187],[112,-8,65,-0.07846919675066671],[112,-8,66,-0.05736988870403228],[112,-8,67,-0.06035201045507539],[112,-8,68,-0.08425335198544069],[112,-8,69,-0.0954763379874281],[112,-8,70,-0.06297997448275192],[112,-8,71,-0.012750459932403266],[112,-8,72,0.011755186639647678],[112,-8,73,0.003882621819018422],[112,-8,74,-0.03616498704972385],[112,-8,75,-0.06608276483649185],[112,-8,76,-0.0680221593099343],[112,-8,77,-0.05077707280269259],[112,-8,78,-0.03799396919849606],[112,-8,79,-0.044109951099295504],[112,-7,64,-0.09749007676072186],[112,-7,65,-0.07784362967827639],[112,-7,66,-0.05681154009822723],[112,-7,67,-0.05949227416272967],[112,-7,68,-0.08320457545701133],[112,-7,69,-0.09455483639878741],[112,-7,70,-0.0625784229774486],[112,-7,71,-0.012846001892047184],[112,-7,72,0.011215112581938627],[112,-7,73,0.0034527972684712275],[112,-7,74,-0.0357190237158699],[112,-7,75,-0.06514386685501011],[112,-7,76,-0.06740153007935393],[112,-7,77,-0.050536511216841655],[112,-7,78,-0.037989481118762276],[112,-7,79,-0.04415731007635204],[112,-6,64,-0.09627379836966013],[112,-6,65,-0.07724251282598281],[112,-6,66,-0.05627714489563596],[112,-6,67,-0.058665556569585824],[112,-6,68,-0.0821926119957765],[112,-6,69,-0.09366306412980852],[112,-6,70,-0.062191039484389005],[112,-6,71,-0.012943062388609783],[112,-6,72,0.010686307696972817],[112,-6,73,0.0030310914649450526],[112,-6,74,-0.03528991645611217],[112,-6,75,-0.06423647700375501],[112,-6,76,-0.06680829907853027],[112,-6,77,-0.050315927823116946],[112,-6,78,-0.03799780143539011],[112,-6,79,-0.04421301810440895],[112,-5,64,-0.09509947451347975],[112,-5,65,-0.07666566728538873],[112,-5,66,-0.05576623328350444],[112,-5,67,-0.05787108566352689],[112,-5,68,-0.0812169656381491],[112,-5,69,-0.09280090265252587],[112,-5,70,-0.061817888599397734],[112,-5,71,-0.01304163490626486],[112,-5,72,0.010168495303174823],[112,-5,73,0.0026170887478794147],[112,-5,74,-0.03487752185268396],[112,-5,75,-0.06335995426049991],[112,-5,76,-0.06624194112915466],[112,-5,77,-0.05011512766859597],[112,-5,78,-0.03801920609502309],[112,-5,79,-0.044277591660819966],[112,-4,64,-0.09396649295538563],[112,-4,65,-0.07611292780246234],[112,-4,66,-0.055278369779358516],[112,-4,67,-0.057108124663851303],[112,-4,68,-0.08027714558136108],[112,-4,69,-0.09196822430282056],[112,-4,70,-0.06145903223785563],[112,-4,71,-0.013141722618528522],[112,-4,72,0.009661391877629318],[112,-4,73,0.0022103800473289104],[112,-4,74,-0.03448169155383443],[112,-4,75,-0.06251367153021765],[112,-4,76,-0.06570195967729571],[112,-4,77,-0.04993393623955743],[112,-4,78,-0.03805396131655861],[112,-4,79,-0.0443515234060277],[112,-3,64,-0.09287425103609626],[112,-3,65,-0.07558414208171929],[112,-3,66,-0.054813151142073226],[112,-3,67,-0.05637597047741204],[112,-3,68,-0.07937266691033969],[112,-3,69,-0.09116489314631518],[112,-3,70,-0.061114529534880606],[112,-3,71,-0.013243337767487982],[112,-3,72,0.009164707809480685],[112,-3,73,0.001810562502473633],[112,-3,74,-0.034102273389282615],[112,-3,75,-0.06169701536870139],[112,-3,76,-0.06518788494338465],[112,-3,77,-0.04977219846117747],[112,-3,78,-0.03810232512122451],[112,-3,79,-0.044435284055093546],[112,-2,64,-0.09182215628477694],[112,-2,65,-0.07507917014524308],[112,-2,66,-0.0543702044369217],[112,-2,67,-0.05567395226296298],[112,-2,68,-0.0785030512763766],[112,-2,69,-0.0903907657995508],[112,-2,70,-0.060784436759411795],[112,-2,71,-0.013346501061866509],[112,-2,72,0.008678148126039724],[112,-2,73,0.0014172391090945436],[112,-2,74,-0.03373911241564709],[112,-2,75,-0.06090938572865792],[112,-2,76,-0.06469927219853637],[112,-2,77,-0.049629777760126864],[112,-2,78,-0.03816454874804134],[112,-2,79,-0.044529324122989114],[112,-1,64,-0.09080962697719963],[112,-1,65,-0.07459788374362279],[112,-1,66,-0.05394918524582775],[112,-1,67,-0.055001430097005054],[112,-1,68,-0.07766782752915259],[112,-1,69,-0.089645692207929],[112,-1,70,-0.06046880724172028],[112,-1,71,-0.013451241094974947],[112,-1,72,0.008201413190506013],[112,-1,73,0.0010300183933128172],[112,-1,74,-0.03339205189503076],[112,-1,75,-0.06015019572583146],[112,-1,76,-0.06423570015927947],[112,-1,77,-0.04950655518602594],[112,-1,78,-0.03824087796078053],[112,-1,79,-0.044634075549951295],[112,0,64,-0.0898360926438273],[112,0,65,-0.0741401658159673],[112,0,66,-0.053549776014420396],[112,0,67,-0.05435779373479741],[112,0,68,-0.07686653230373507],[112,0,69,-0.08892951638186875],[112,0,70,-0.06016769131383396],[112,0,71,-0.013557593783469164],[112,0,72,0.007734199370386185],[112,0,73,6.485141090205668E-4],[112,0,74,-0.03306093420996046],[112,0,75,-0.05941887142296435],[112,0,76,-0.06379676949313597],[112,0,77,-0.04940242858789759],[112,0,78,-0.03833155425230101],[112,0,79,-0.04474995321295606],[112,1,64,-0.08890099453042008],[112,1,65,-0.07370590999618525],[112,1,66,-0.05317168452779114],[112,1,67,-0.05374246146049375],[112,1,68,-0.07609871056414926],[112,1,69,-0.08824207709254284],[112,1,70,-0.05988113626227519],[112,1,71,-0.013665601827661132],[112,1,72,0.00727619967589924],[112,1,73,2.7234495661161966E-4],[112,1,74,-0.032745601717839475],[112,1,75,-0.05871485162960774],[112,1,76,-0.06338210142780504],[112,1,77,-0.049317311841875766],[112,1,78,-0.03843681595185307],[112,1,79,-0.04487735632906202],[112,2,64,-0.08800378601356262],[112,2,65,-0.07329502016268882],[112,2,66,-0.052814642507111924],[112,2,67,-0.05315487902061008],[112,2,68,-0.07536391610505006],[112,2,69,-0.08758320852842842],[112,2,70,-0.05960918629239557],[112,2,71,-0.013775314193911896],[112,2,72,0.006827104367915579],[112,2,73,-9.886567914716045E-5],[112,2,74,-0.032445897547960616],[112,2,75,-0.05803758771592563],[112,2,76,-0.0629913364569775],[112,2,77,-0.04925113412651695],[112,2,78,-0.038556899240609496],[112,2,79,-0.045016669756039594],[112,3,64,-0.08714393297347207],[112,3,65,-0.0729074100287897],[112,3,66,-0.05247840431964331],[112,3,67,-0.052594518635378534],[112,3,68,-0.07466171201306183],[112,3,69,-0.0869527409138963],[112,3,70,-0.05935188250359543],[112,3,71,-0.013886785619551582],[112,3,72,0.0063866015350938655],[112,3,73,-4.654899741556007E-4],[112,3,74,-0.0321616663441292],[112,3,75,-0.05738654343888578],[112,3,76,-0.06262413313618978],[112,3,77,-0.049203839242244106],[112,3,78,-0.03869203908045023],[112,3,79,-0.04516826519547199],[112,4,64,-0.0863209141263382],[112,4,65,-0.07254300277110391],[112,4,66,-0.052162745794976005],[112,4,67,-0.05206087808283217],[112,4,68,-0.073991671089335],[112,4,69,-0.08635050109101086],[112,4,70,-0.059109262874685264],[112,4,71,-0.014000076140642397],[112,4,72,0.00595437764004442],[112,4,73,-8.278958948200479E-4],[112,4,74,-0.03189275495588444],[112,4,75,-0.05676119477941534],[112,4,76,-0.06228016696245472],[112,4,77,-0.04917538497159208],[112,4,78,-0.03884247006075159],[112,4,79,-0.0453325023032414],[112,5,64,-0.08553422131826667],[112,5,65,-0.07220173069328259],[112,5,66,-0.05186746314060477],[112,5,67,-0.05155347985069128],[112,5,68,-0.07335337623479127],[112,5,69,-0.0857763130656098],[112,5,70,-0.05888136225857164],[112,5,71,-0.014115250642729196],[112,5,72,0.0055301180345467245],[112,5,73,-0.0011864474143787405],[112,5,74,-0.03163901308118551],[112,5,75,-0.05616102978922457],[112,5,76,-0.06195912933169181],[112,5,77,-0.04916574247701973],[112,5,78,-0.039008427167615815],[112,5,79,-0.04550972971201509],[112,6,64,-0.08478335978287621],[112,6,65,-0.0718835349225104],[112,6,66,-0.0515923719503009],[112,6,67,-0.05107187035145177],[112,6,68,-0.07274642079956584],[112,6,69,-0.0852299985187483],[112,6,70,-0.05866821238549987],[112,6,71,-0.014232378434683349],[112,6,72,0.005113507443918661],[112,6,73,-0.0015415047173108155],[112,6,74,-0.031400293863421844],[112,6,75,-0.055585548446239356],[112,6,76,-0.06166072656836154],[112,6,77,-0.04917489573324091],[112,6,78,-0.0391901464797604],[112,6,79,-0.04570028597014226],[112,7,64,-0.08406784836447946],[112,7,65,-0.07158836513628128],[112,7,66,-0.05133730629905512],[112,7,67,-0.050615619196344],[112,7,68,-0.07217040889813124],[112,7,69,-0.0847113772845664],[112,7,70,-0.05846984187409478],[112,7,71,-0.01435153284565281],[112,7,72,0.004704230420753264],[112,7,73,-0.0018934243932895239],[112,7,74,-0.031176454445525928],[112,7,75,-0.05503426251774245],[112,7,76,-0.06138467902204242],[112,7,77,-0.049202840991180885],[112,7,78,-0.03938786579503793],[112,7,79,-0.045904500401146124],[112,8,64,-0.0833872197086405],[112,8,65,-0.07131617931698137],[112,8,66,-0.051102117918609635],[112,8,67,-0.05018431852403326],[112,8,68,-0.0716249556915121],[112,8,69,-0.08422026779555973],[112,8,70,-0.05828627624940466],[112,8,71,-0.014472790845011576],[112,8,72,0.004301971768382433],[112,8,73,-0.0022425596219687385],[112,8,74,-0.030967356483851897],[112,8,75,-0.05450669543044616],[112,8,76,-0.06113072022596753],[112,8,77,-0.049249586270757116],[112,8,78,-0.039601825191264775],[112,8,79,-0.0461226938877298],[112,9,64,-0.08274102042186773],[112,9,65,-0.07106694353194669],[112,9,66,-0.050886675447949115],[112,9,67,-0.04977758238023802],[112,9,68,-0.07110968763803154],[112,9,69,-0.08375648749627365],[112,9,70,-0.0581175379672429],[112,9,71,-0.014596232685194162],[112,9,72,0.0039064169344554716],[112,9,73,-0.002589260349827115],[112,9,74,-0.030772866624458127],[112,9,75,-0.05400238214692844],[112,9,76,-0.060898596112917064],[112,9,77,-0.04931515087988452],[112,9,78,-0.0398322675248535],[112,9,79,-0.0463551795840552],[112,10,64,-0.08212881120210556],[112,10,65,-0.07084063173674321],[112,10,66,-0.050690863753412606],[112,10,67,-0.04939504614468226],[112,10,68,-0.07062424271400808],[112,10,69,-0.08331985322643741],[112,10,70,-0.057963646444157885],[112,10,71,-0.01472194156724949],[112,10,72,0.0035172523750929847],[112,10,73,-0.002933873460185697],[112,10,74,-0.03059285694435249],[112,10,75,-0.05352086904800848],[112,10,76,-0.060688064284184134],[112,10,77,-0.04939956495725671],[112,10,78,-0.040079438870524925],[112,10,79,-0.04660226355987003],[112,11,64,-0.08155016694157056],[112,11,65,-0.07063722559945612],[112,11,66,-0.050514583313315715],[112,11,67,-0.04903636600197754],[112,11,68,-0.07016827060574812],[112,11,69,-0.08291018157449954],[112,11,70,-0.057824618092364964],[112,11,71,-0.014850003328869517],[112,11,72,0.003134165890169587],[112,11,73,-0.003276742937373643],[112,11,74,-0.030427205360143716],[112,11,75,-0.05306171382075071],[112,11,76,-0.06049889332760374],[112,11,77,-0.049502869036555035],[112,11,78,-0.040343588905120284],[112,11,79,-0.046864245379833226],[112,12,64,-0.08100467680344249],[112,12,65,-0.0704567143439172],[112,12,66,-0.05035774966230758],[112,12,67,-0.048701218453306945],[112,12,68,-0.06974143287421125],[112,12,69,-0.08252728920258844],[112,12,70,-0.057700466359087925],[112,12,71,-0.014980506154670547],[112,12,72,0.0027568469302736583],[112,12,73,-0.0036182100259776863],[112,12,74,-0.030275796006509762],[112,12,75,-0.052624485351962645],[112,12,76,-0.0603308621809966],[112,12,77,-0.04962511362994303],[112,12,78,-0.04062497123838854],[112,12,79,-0.04714141862128137],[112,13,64,-0.08049194427385264],[112,13,65,-0.07029909460988845],[112,13,66,-0.050220292890947746],[112,13,67,-0.0483892998659894],[112,13,68,-0.0693434030937],[112,13,69,-0.08217099314392941],[112,13,70,-0.05759120176981766],[112,13,71,-0.015113540308490788],[112,13,72,0.0023849868759165324],[112,13,73,-0.0039586133860314565],[112,13,74,-0.0301385195868204],[112,13,75,-0.052208763627189604],[112,13,76,-0.06018375953768329],[112,13,77,-0.049766358828850506],[112,13,78,-0.040923843693438135],[112,13,79,-0.047434071333529525],[112,14,64,-0.08001158719050205],[112,14,65,-0.0701643703282733],[112,14,66,-0.050102157196203805],[112,14,67,-0.04810032605816071],[112,14,68,-0.06897386696586176],[112,14,69,-0.0818411110737249],[112,14,70,-0.0574968319750314],[112,14,71,-0.015249197887419515],[112,14,72,0.002018279289622016],[112,14,73,-0.004298289244889761],[112,14,74,-0.030015273698134583],[112,14,75,-0.051814139635293244],[112,14,76,-0.06005738329098399],[112,14,77,-0.04992667392016219],[112,14,78,-0.04124046853933269],[112,14,79,-0.04774248644162832],[112,15,64,-0.07956323774922978],[112,15,65,-0.07005255260957897],[112,15,66,-0.05000330047888409],[112,15,67,-0.047834031916060935],[112,15,68,-0.06863252241032905],[112,15,69,-0.08153746155458542],[112,15,70,-0.05741736180005222],[112,15,71,-0.015387572597337477],[112,15,72,0.0016564201414709153],[112,15,73,-0.004637571546530153],[112,15,74,-0.02990596313277325],[112,15,75,-0.051440215278873304],[112,15,76,-0.05995154001496803],[112,15,77,-0.050106137016140424],[112,15,78,-0.04157511267821507],[112,15,79,-0.04806694209744424],[112,16,64,-0.07914654248976374],[112,16,65,-0.06996365964391076],[112,16,66,-0.049923693984215],[112,16,67,-0.047590171041553275],[112,16,68,-0.06831907963326365],[112,16,69,-0.0812598642575842],[112,16,70,-0.05735279329777272],[112,16,71,-0.015528759549718309],[112,16,72,0.0012991080087081414],[112,16,73,-0.004976792098930807],[112,16,74,-0.029810500158559967],[112,16,75,-0.05108660329086874],[112,16,76,-0.059866044478962176],[112,16,77,-0.050304834696516136],[112,16,78,-0.04192804778915591],[112,16,79,-0.04840771198078367],[112,17,64,-0.0787611622618696],[112,17,65,-0.06989771661092349],[112,17,66,-0.04986332198205037],[112,17,67,-0.04736851542771943],[112,17,68,-0.06803326117509759],[112,17,69,-0.08100814016009068],[112,17,70,-0.057303125804108485],[112,17,71,-0.015672855079511563],[112,17,72,9.460442499546313E-4],[112,17,73,-0.005316280720176617],[112,17,74,-0.029728804779787225],[112,17,75,-0.05075292715781798],[112,17,76,-0.059800719193649085],[112,17,77,-0.050522861661387836],[112,17,78,-0.04229955043085194],[112,17,79,-0.04876506555324695],[112,18,64,-0.07840677217300779],[112,18,65,-0.06985475559819913],[112,18,66,-0.04982218148338235],[112,18,67,-0.04716885516049087],[112,18,68,-0.06777480193869],[112,18,69,-0.08078211172150788],[112,18,70,-0.05726835599607774],[112,18,71,-0.015819956583896386],[112,18,72,5.969331545938169E-4],[112,18,73,-0.005656365383861479],[112,18,74,-0.029660804980857068],[112,18,75,-0.050438821050315184],[112,18,76,-0.05975539398681067],[112,18,77,-0.050760320393668706],[112,18,78,-0.042689902105123585],[112,18,79,-0.04913926826736531],[112,19,64,-0.07808306151862965],[112,19,65,-0.06983481552667216],[112,19,66,-0.0498002819900639],[112,19,67,-0.04699099814446348],[112,19,68,-0.06754344919916083],[112,19,69,-0.08058160303814958],[112,19,70,-0.05724847795256887],[112,19,71,-0.01597016238179303],[112,19,72,2.5148206780687825E-4],[112,19,73,-0.0059973723643733535],[112,19,74,-0.02960643695451168],[112,19,75,-0.050143929761327276],[112,19,76,-0.05972990560707259],[112,19,77,-0.05101732083002084],[112,19,78,-0.04309938928312629],[112,19,79,-0.04953058173358059],[112,20,64,-0.0777897336961793],[112,20,65,-0.06983794208181898],[112,20,66,-0.0497976452748834],[112,20,67,-0.04683476985120407],[112,20,68,-0.06733896259663762],[112,20,69,-0.08040643997851364],[112,20,70,-0.05724348321794259],[112,20,71,-0.016123571594047252],[112,20,72,-9.059850830453337E-5],[112,20,73,-0.006339626382634061],[112,20,74,-0.02956564531651174],[112,20,75,-0.04986790865312813],[112,20,76,-0.05972409735426804],[112,20,77,-0.05129398003937719],[112,20,78,-0.04352830339609801],[112,20,79,-0.04993926384756763],[112,21,64,-0.07752650610381635],[112,21,65,-0.06986418764939616],[112,21,66,-0.04981430518927313],[112,21,67,-0.04670001308844365],[112,21,68,-0.06716111411311045],[112,21,69,-0.08025645030023196],[112,21,70,-0.05725336086869291],[112,21,71,-0.016280284044223686],[112,21,72,-4.295948370960839E-4],[112,21,73,-0.006683450752817395],[112,21,74,-0.02953838330852195],[112,21,75,-0.04961042361365241],[112,21,76,-0.05973781873524755],[112,21,77,-0.05159042190826583],[112,21,78,-0.04397694079236666],[112,21,79,-0.050365568880344554],[112,22,64,-0.0772931100248715],[112,22,65,-0.06991361125465129],[112,22,66,-0.049850307496174716],[112,22,67,-0.04658658778872887],[112,22,68,-0.06700968803461743],[112,22,69,-0.08013146375006538],[112,22,70,-0.05727809758353862],[112,22,71,-0.016440400180038495],[112,22,72,-7.657898929480371E-4],[112,22,73,-0.007029167530612179],[112,22,74,-0.02952461299093942],[112,22,75,-0.04937115102317861],[112,22,76,-0.05977092514423962],[112,22,77,-0.05190677683235464],[112,22,78,-0.04444560266233328],[112,22,79,-0.05080974753363899],[112,23,64,-0.07708929049902966],[112,23,65,-0.06998627850403542],[112,23,66,-0.049905709725760035],[112,23,67,-0.04649437081622199],[112,23,68,-0.06688448089997971],[112,23,69,-0.08003131214836288],[112,23,70,-0.057317677717423555],[112,23,71,-0.01660402101551909],[112,23,72,-0.0010994633297823865],[112,23,73,-0.007377097663600235],[112,23,74,-0.029524305427346912],[112,23,75,-0.04914977773232173],[112,23,76,-0.05982327756710113],[112,23,77,-0.05224318141378964],[112,23,78,-0.0449345949331088],[112,23,79,-0.05127204696297565],[112,24,64,-0.07691480618117093],[112,24,65,-0.07008226152850555],[112,24,66,-0.049980581051840736],[112,24,67,-0.04642325579041113],[112,24,68,-0.06678530143725635],[112,24,69,-0.07995582945942571],[112,24,70,-0.057372083379978886],[112,24,71,-0.01677124809400719],[112,24,72,-0.001430891472329104],[112,24,73,-0.007727561144298413],[112,24,74,-0.029537440862182008],[112,24,75,-0.04894600105234083],[112,24,76,-0.05989474230898005],[112,24,77,-0.052599778164024266],[112,24,78,-0.04544422813442334],[112,24,79,-0.05175271077092327],[112,25,64,-0.07676942918882315],[112,25,65,-0.07020163892764926],[112,25,66,-0.050075002187007396],[112,25,67,-0.04637315292564598],[112,25,68,-0.06671197048913072],[112,25,69,-0.07990485184930948],[112,25,70,-0.0574412945191483],[112,25,71,-0.016942183472227573],[112,25,72,-0.0017603473300622761],[112,25,73,-0.008080877166472067],[112,25,74,-0.02956400889319727],[112,25,75,-0.04875952875885633],[112,25,76,-0.059985190745170204],[112,25,77,-0.05297671521203862],[112,25,78,-0.04597481723746609],[112,25,79,-0.052251978973003786],[112,26,64,-0.07665294493916451],[112,26,65,-0.07034449571396002],[112,26,66,-0.050189065294686114],[112,26,67,-0.04634398888550028],[112,26,68,-0.06666432092843189],[112,26,69,-0.07987821773265485],[112,26,70,-0.057525289010783215],[112,26,71,-0.01711692972571095],[112,26,72,-0.002088100633810322],[112,26,73,-0.008437364285350185],[112,26,74,-0.029604008640237725],[112,26,75,-0.048590079110120796],[112,26,76,-0.0600944990951364],[112,26,77,-0.05337414601799898],[112,26,78,-0.04652668146830841],[112,26,79,-0.05277008793878948],[112,27,64,-0.07656515197646892],[112,27,65,-0.07051092325665667],[112,27,66,-0.05032287391642042],[112,27,67,-0.04633570665102829],[112,27,68,-0.0666421975649624],[112,27,69,-0.07987576781016137],[112,27,70,-0.05762404275509053],[112,27,71,-0.01729558997589942],[112,27,72,-0.002414417895101943],[112,27,73,-0.008797340582372908],[112,27,74,-0.02965744891177927],[112,27,75,-0.04843738088099194],[112,27,76,-0.06022254821985705],[112,27,77,-0.053792229092544316],[112,27,78,-0.047100144097560664],[112,27,79,-0.05330727031073064],[112,28,64,-0.07650586179091211],[112,28,65,-0.07070101922457249],[112,28,66,-0.050476542912857046],[112,28,67,-0.04634826540209512],[112,28,68,-0.0666454570448365],[112,28,69,-0.07989734509840958],[112,28,70,-0.057737529780952965],[112,28,71,-0.017478267939367863],[112,28,72,-0.0027395624884367356],[112,28,73,-0.009161123835170924],[112,28,74,-0.029724348370659282],[112,28,75,-0.048301173413824],[112,28,76,-0.06036922344285023],[112,28,77,-0.05423112772207493],[112,28,78,-0.047695532207974296],[112,28,79,-0.05386375490333582],[112,29,64,-0.07647489862965978],[112,29,65,-0.07091488752773933],[112,29,66,-0.05065019841704769],[112,29,67,-0.04638164041104374],[112,29,68,-0.06667396774353994],[112,29,69,-0.07994279495379666],[112,29,70,-0.057865722359247224],[112,29,71,-0.017665067999671272],[112,29,72,-0.003063794756765834],[112,29,73,-0.009529031693520745],[112,29,74,-0.02980473570039125],[112,29,75,-0.048181206687525104],[112,29,76,-0.06053441439543028],[112,29,77,-0.05469100970058227],[112,29,78,-0.048313176441750365],[112,29,79,-0.054439766585391465],[112,30,64,-0.07647209930110883],[112,30,65,-0.07115263825734565],[112,30,66,-0.05084397779876968],[112,30,67,-0.04643582294799479],[112,30,68,-0.06672760965388376],[112,30,69,-0.08001196509237042],[112,30,70,-0.0580085911263471],[112,30,71,-0.017856095302361923],[112,30,72,-0.0033873721405290862],[112,30,73,-0.009901381862027589],[112,30,74,-0.029898649773371495],[112,30,75,-0.04807724140600458],[112,30,76,-0.06071801488687515],[112,30,77,-0.055172047068686135],[112,30,78,-0.04895341072933893],[112,30,79,-0.05503552614793722],[112,31,64,-0.07649731297320533],[112,31,65,-0.07141438762388404],[112,31,66,-0.051058029638719256],[112,31,67,-0.04651082019717952],[112,31,68,-0.06680627427007127],[112,31,69,-0.08010470560743568],[112,31,70,-0.05816610521912951],[112,31,71,-0.018051455873832875],[112,31,72,-0.0037105493307295094],[112,31,73,-0.010278492290373219],[112,31,74,-0.030006139822287788],[112,31,75,-0.04798904910729169],[112,31,76,-0.060919922800379826],[112,31,77,-0.0556744158607358],[112,31,78,-0.049616572001615775],[112,31,79,-0.05565125016082285],[112,32,64,-0.076550400966749],[112,32,65,-0.0717002578933864],[112,32,66,-0.05129251371154324],[112,32,67,-0.04660665518376315],[112,32,68,-0.06690986446909568],[112,32,69,-0.08022086898685997],[112,32,70,-0.058338232422890546],[112,32,71,-0.018251256764708453],[112,32,72,-0.004033578446621568],[112,32,73,-0.01066068137201588],[112,32,74,-0.03012726561599256],[112,32,75,-0.04791641229460286],[112,32,76,-0.06114004001582066],[112,32,77,-0.05619829586099435],[112,32,78,-0.050302999887404554],[112,32,79,-0.056287150820751294],[112,33,64,-0.07663123654457432],[112,33,65,-0.07201037732170573],[112,33,66,-0.051547600976742394],[112,33,67,-0.04672336671063799],[112,33,68,-0.06703829439065963],[112,33,69,-0.08036031013201908],[112,33,70,-0.0585249393336287],[112,33,71,-0.018455606218541448],[112,33,72,-0.004356709238653829],[112,33,73,-0.011048268152251142],[112,33,74,-0.03026209764103471],[112,33,75,-0.04785912459060198],[112,33,76,-0.06137827236046094],[112,33,77,-0.056743870370047],[112,33,78,-0.05101303639836747],[112,33,79,-0.05694343579376233],[112,34,64,-0.07673970469753821],[112,34,65,-0.07234488008692265],[112,34,66,-0.05182347357661425],[112,34,67,-0.04686100930475133],[112,34,68,-0.06719148931684864],[112,34,69,-0.0805228863804052],[112,34,70,-0.058726191536265814],[112,34,71,-0.018664613866673768],[112,34,72,-0.004680189317435945],[112,34,73,-0.011441572546631158],[112,34,74,-0.03041071729004039],[112,34,75,-0.04781699091612327],[112,34,76,-0.061634529588891075],[112,34,77,-0.05731132598276274],[112,34,78,-0.05174702560341828],[112,34,79,-0.057620308055230704],[112,35,64,-0.07687570192824146],[112,35,65,-0.07270390622003639],[112,35,66,-0.05212032484048984],[112,35,67,-0.04701965317257212],[112,35,68,-0.06736938555279097],[112,35,69,-0.08070845753395729],[112,35,70,-0.05894195380044383],[112,35,71,-0.018878390950177498],[112,35,72,-0.005004264409591642],[112,35,73,-0.011840915570796697],[112,35,74,-0.030573217058089925],[112,35,75,-0.04778982769460137],[112,35,76,-0.06190872539361419],[112,35,77,-0.05790085237929522],[112,35,78,-0.052505313294920176],[112,35,79,-0.05831796573054221],[112,36,64,-0.07703913603339864],[112,36,65,-0.07308760153415249],[112,36,66,-0.052438359294573356],[112,36,67,-0.04719938416431359],[112,36,68,-0.06757193030951336],[112,36,69,-0.08091688589518226],[112,36,70,-0.05917219029556938],[112,36,71,-0.019097050569819245],[112,36,72,-0.0053291786414165045],[112,36,73,-0.012246619582799717],[112,36,74,-0.0307497007481741],[112,36,75,-0.047777463083401896],[112,36,76,-0.06220077744776298],[112,36,77,-0.058512642130720174],[112,36,78,-0.053288246649008345],[112,36,79,-0.0590366019396672],[112,37,64,-0.0772299258858063],[112,37,65,-0.07349611755249066],[112,37,66,-0.05277779267680673],[112,37,67,-0.047400303746596296],[112,37,68,-0.06779908159023983],[112,37,69,-0.08114803631319961],[112,37,70,-0.05941686482686687],[112,37,71,-0.019320707965075297],[112,37,72,-0.005655174851379063],[112,37,73,-0.012659008539086431],[112,37,74,-0.030940283686805146],[112,37,75,-0.047779737233240964],[112,37,76,-0.0625106074815644],[112,37,77,-0.05914689052109693],[112,37,78,-0.05409617388253565],[112,37,79,-0.059776404648977724],[112,38,64,-0.07744800121686073],[112,38,65,-0.07392961143560518],[112,38,66,-0.053138851956248144],[112,38,67,-0.047622528983260685],[112,38,68,-0.06805080808137505],[112,38,69,-0.0814017762418602],[112,38,70,-0.059675941094239675],[112,38,71,-0.019549480823267754],[112,38,72,-0.005982494932581511],[112,38,73,-0.013078408265363585],[112,38,74,-0.03114509295081593],[112,38,75,-0.04779650257683475],[112,38,76,-0.06283814139424784],[112,38,77,-0.059803795387872505],[112,38,78,-0.0549294439092559],[112,38,79,-0.06053755653373409],[112,39,64,-0.07769330240056926],[112,39,65,-0.07438824590826033],[112,39,66,-0.05352177535649628],[112,39,67,-0.047866192524044344],[112,39,68,-0.06832708904939777],[112,39,69,-0.08167797581208994],[112,39,70,-0.059949382975754015],[112,39,71,-0.019783489619902908],[112,39,72,-0.006311380206341505],[112,39,73,-0.013505146743595499],[112,39,74,-0.03136426760631806],[112,39,75,-0.04782762414784759],[112,39,76,-0.06318330940313793],[112,39,77,-0.06048355698266365],[112,39,78,-0.05578840599796407],[112,39,79,-0.061320234854730246],[112,40,64,-0.07796578024002217],[112,40,65,-0.07487218918650027],[112,40,66,-0.05392681238278644],[112,40,67,-0.04813144260088959],[112,40,68,-0.06862791424491478],[112,40,69,-0.08197650792064413],[112,40,70,-0.06023715483761354],[112,40,71,-0.020022857991360526],[112,40,72,-0.006642071828163663],[112,40,73,-0.013939554416470434],[112,40,74,-0.031597958960778674],[112,40,75,-0.04787297993117383],[112,40,76,-0.0635460462317681],[112,40,77,-0.06118637785462106],[112,40,78,-0.056673409435478626],[112,40,79,-0.06212461135270035],[112,41,64,-0.07826539575729573],[112,41,65,-0.07538161490549787],[112,41,66,-0.054354223852419864],[112,41,67,-0.04841844303164947],[112,41,68,-0.0689532838151093],[112,41,69,-0.08229724833745022],[112,41,70,-0.06053922187249131],[112,41,71,-0.02026771314108171],[112,41,72,-0.006974811227400836],[112,41,73,-0.014381964510694437],[112,41,74,-0.03184633082911612],[112,41,75,-0.047932461245507166],[112,41,76,-0.06392629133887347],[112,41,77,-0.061912462758679426],[112,41,78,-0.057584803197460156],[112,41,79,-0.0629508521641435],[112,42,64,-0.07859211998776314],[112,42,65,-0.07591670204884524],[112,42,66,-0.05480428192825786],[112,42,67,-0.04872737323099208],[112,42,68,-0.06930320822582792],[112,42,69,-0.08264007583372329],[112,42,70,-0.06085555046810364],[112,42,71,-0.020518186280441327],[112,42,72,-0.007309840581986305],[112,42,73,-0.01483271338054438],[112,42,74,-0.032109559814690464],[112,42,75,-0.04800597315908731],[112,42,76,-0.0643239891901778],[112,42,77,-0.06266201859114608],[112,42,78,-0.058522935630217376],[112,42,79,-0.06379911776231527],[112,43,64,-0.07894593377977638],[112,43,65,-0.0764776348799773],[112,43,66,-0.05527727015503403],[112,43,67,-0.04905842822829042],[112,43,68,-0.06967770819451931],[112,43,69,-0.08300487233300197],[112,43,70,-0.061186108607877696],[112,43,71,-0.020774413105467168],[112,43,72,-0.007647403329628298],[112,43,73,-0.015292140873119605],[112,43,74,-0.0323878356059917],[112,43,75,-0.048093434939406855],[112,43,76,-0.06473908957488123],[112,43,77,-0.06343525435516219],[112,43,78,-0.05948815414675608],[112,43,79,-0.06466956292716865],[112,44,64,-0.07932682760070191],[112,44,65,-0.0770646028764929],[112,44,66,-0.055773483498299414],[112,44,67,-0.049411818692316437],[112,44,68,-0.07007681463525074],[112,44,69,-0.08339152308725169],[112,44,70,-0.06153086630556491],[112,44,71,-0.021036534310587662],[112,44,72,-0.007987744716918146],[112,44,73,-0.015760590716793987],[112,44,74,-0.03268136128980818],[112,44,75,-0.048194780537589174],[112,44,76,-0.06517154796878631],[112,44,77,-0.06423238115870257],[112,44,78,-0.060480804940481234],[112,44,79,-0.06556233674810448],[112,45,64,-0.07973480135029051],[112,45,65,-0.07767780066818951],[112,45,66,-0.056293228385860906],[112,45,67,-0.04978777096256699],[112,45,68,-0.0705005686170163],[112,45,69,-0.08379991688014896],[112,45,70,-0.06188979607561911],[112,45,71,-0.021304696140580896],[112,45,72,-0.008331112387832445],[112,45,73,-0.016238410934404708],[112,45,74,-0.03299035368160947],[112,45,75,-0.04830995910805048],[112,45,76,-0.06562132594599863],[112,45,77,-0.06505361224788456],[112,45,78,-0.061501232720098914],[112,45,79,-0.06647758266344196],[112,46,64,-0.0801698641823318],[112,46,65,-0.07831742797963236],[112,46,66,-0.056836822751570586],[112,46,67,-0.05018652708702425],[112,46,68,-0.07094902133650757],[112,46,69,-0.08422994625958931],[112,46,70,-0.062262873441083076],[112,46,71,-0.021579050981840955],[112,46,72,-0.008677757013088476],[112,46,73,-0.01672595428270581],[112,46,74,-0.0333150436738006],[112,46,75,-0.048438935563922536],[112,46,76,-0.06608839164108354],[112,46,77,-0.0658991630784067],[112,46,78,-0.06254978046935218],[112,46,79,-0.06741543854051694],[112,47,64,-0.08063202801141049],[112,47,65,-0.07898368325654684],[112,47,66,-0.05740458976198363],[112,47,67,-0.05060833854862995],[112,47,68,-0.07142222779047136],[112,47,69,-0.08468150148652943],[112,47,70,-0.0626500711665751],[112,47,71,-0.021859751680384204],[112,47,72,-0.00902792664822593],[112,47,73,-0.017223572405742123],[112,47,74,-0.03365567028788881],[112,47,75,-0.04858168485299646],[112,47,76,-0.06657271394653072],[112,47,77,-0.06676924510925002],[112,47,78,-0.06362678291442733],[112,47,79,-0.06837603047690165],[112,48,64,-0.08112123343815783],[112,48,65,-0.07967668968682287],[112,48,66,-0.05799678390977808],[112,48,67,-0.05105339233494743],[112,48,68,-0.07192017277073336],[112,48,69,-0.08515439678788621],[112,48,70,-0.06305128576417991],[112,48,71,-0.022146878090760058],[112,48,72,-0.009381793278442005],[112,48,73,-0.017731542110230234],[112,48,74,-0.034012406784089885],[112,48,75,-0.04873811825034484],[112,48,76,-0.06707418868267982],[112,48,77,-0.0676639914928868],[112,48,78,-0.06473249180658586],[112,48,79,-0.06935939835928348],[112,49,64,-0.08163736546876109],[112,49,65,-0.08039651086066806],[112,49,66,-0.058613606594673545],[112,49,67,-0.05152182635731127],[112,49,68,-0.07244278608381574],[112,49,69,-0.08564838571922428],[112,49,70,-0.06346635298951903],[112,49,71,-0.02244045249337516],[112,49,72,-0.009739468117897701],[112,49,73,-0.018250080269589262],[112,49,74,-0.03438537528184729],[112,49,75,-0.048908098077762835],[112,49,76,-0.0675926531181425],[112,49,77,-0.06858347101682437],[112,49,78,-0.06586708936056496],[112,49,79,-0.07036550951456136],[112,50,64,-0.08218030060463878],[112,50,65,-0.08114319787508244],[112,50,66,-0.0592552532221083],[112,50,67,-0.052013776472377746],[112,50,68,-0.07298998946881897],[112,50,69,-0.08616320832769532],[112,50,70,-0.06389509523075683],[112,50,71,-0.022740486991589842],[112,50,72,-0.010101048980845104],[112,50,73,-0.01877939087597232],[112,50,74,-0.03477469360761171],[112,50,75,-0.04909148476026878],[112,50,76,-0.06812793294319075],[112,50,77,-0.06952773458702008],[112,50,78,-0.06703073432301274],[112,50,79,-0.0713943051060672],[112,51,64,-0.08274990694730805],[112,51,65,-0.08191678951376485],[112,51,66,-0.059921913431672726],[112,51,67,-0.05252937669557989],[112,51,68,-0.07356169677778575],[112,51,69,-0.08669859164928587],[112,51,70,-0.06433732228916489],[112,51,71,-0.023046984347362832],[112,51,72,-0.010466621140170666],[112,51,73,-0.019319665608040812],[112,51,74,-0.03518047568403888],[112,51,75,-0.04928813747647929],[112,51,76,-0.0686798428934983],[112,51,77,-0.07049681538654293],[112,51,78,-0.06822356173545571],[112,51,79,-0.07244570026480696],[112,52,64,-0.08334604334377765],[112,52,65,-0.0827173114642918],[112,52,66,-0.06061377035507635],[112,52,67,-0.0530687584475066],[112,52,68,-0.07415781320479604],[112,52,69,-0.08725424927383753],[112,52,70,-0.06479283123364492],[112,52,71,-0.023359937889423314],[112,52,72,-0.010836257262606577],[112,52,73,-0.019871083461418276],[112,52,74,-0.03560283096653897],[112,52,75,-0.049497913871154445],[112,52,76,-0.06924818646011097],[112,52,77,-0.07149072811560116],[112,52,78,-0.0694456817704165],[112,52,79,-0.0735195833081748],[112,53,64,-0.0839685584997812],[112,53,65,-0.08354477549920389],[112,53,66,-0.06133099982854912],[112,53,67,-0.05363204975716726],[112,53,68,-0.07477823448825352],[112,53,69,-0.08782988090216465],[112,53,70,-0.0652614062525673],[112,53,71,-0.023679331416434888],[112,53,72,-0.011210017343209236],[112,53,73,-0.020433810364310804],[112,53,74,-0.036041863848080835],[112,53,75,-0.04972066974981246],[112,53,76,-0.06983275560714412],[112,53,77,-0.07250946823604895],[112,53,78,-0.07069717856484015],[112,53,79,-0.07461581496970324],[112,54,64,-0.08461729006376552],[112,54,65,-0.08439917862406733],[112,54,66,-0.06207376956177513],[112,54,67,-0.054219374423977305],[112,54,68,-0.07542284608929374],[112,54,69,-0.08842517189856304],[112,54,70,-0.06574281850576867],[112,54,71,-0.02400513909763073],[112,54,72,-0.011587948642182582],[112,54,73,-0.021007998781682392],[112,54,74,-0.03649767303435579],[112,54,75,-0.049956258756696396],[112,54,76,-0.07043333050032827],[112,54,77,-0.07355301122538396],[112,54,78,-0.07197810905703744],[112,54,79,-0.07573422764537466],[112,55,64,-0.08529206368457916],[112,55,65,-0.08528050219564404],[112,55,66,-0.06284223826554322],[112,55,67,-0.05483085114037416],[112,55,68,-0.07609152234927159],[112,55,69,-0.08903979284194674],[112,55,70,-0.06623682597946716],[112,55,71,-0.024337325373367646],[112,55,72,-0.011970085627120144],[112,55,73,-0.021593787311429746],[112,55,74,-0.03697035089144599],[112,55,75,-0.05020453203732596],[112,55,76,-0.07104967924950015],[112,55,77,-0.07462131184535356],[112,55,78,-0.07328850183352097],[112,55,79,-0.07687462466204582],[112,56,64,-0.08599269204590315],[112,56,65,-0.08618871101343055],[112,56,66,-0.06363655474044892],[112,56,67,-0.055466592577115545],[112,56,68,-0.07678412562938372],[112,56,69,-0.08967339907884758],[112,56,70,-0.06674317334683041],[112,56,71,-0.024675844858067356],[112,56,72,-0.012356449923787838],[112,56,73,-0.022191300276107905],[112,56,74,-0.037459982768251285],[112,56,75,-0.05046533788689201],[112,56,76,-0.07168155766816424],[112,56,77,-0.07571430343043152],[112,56,78,-0.07462835599230788],[112,56,79,-0.07803677957360618],[112,57,64,-0.08671897388054009],[112,57,65,-0.08712375238793119],[112,57,66,-0.0644568569291214],[112,57,67,-0.05612670443344372],[112,57,68,-0.07750050543555377],[112,57,69,-0.09032563028148342],[112,57,70,-0.06726159183687236],[112,57,71,-0.025020642248010063],[112,57,72,-0.01274705027859031],[112,57,73,-0.02280064731384511],[112,57,74,-0.037966646296017405],[112,57,75,-0.05073852138574703],[112,57,76,-0.0723287090532503],[112,57,77,-0.07683189720155215],[112,57,78,-0.07599764002944855],[112,57,79,-0.0792204354905258],[112,58,64,-0.08747069296772206],[112,58,65,-0.088085555189108],[112,58,66,-0.0653032709345584],[112,58,67,-0.056811284454398855],[112,58,68,-0.07824049753175046],[112,58,69,-0.09099611001402942],[112,58,70,-0.0677917991142582],[112,58,71,-0.02537165223639897],[112,58,72,-0.013141882535840015],[112,58,73,-0.023421922972127942],[112,58,74,-0.03849041066736678],[112,58,75,-0.051023924023214554],[112,58,76,-0.07299086398814753],[112,58,77,-0.07797398161055302],[112,58,78,-0.07739629075565287],[112,58,79,-0.08042530444842423],[112,59,64,-0.08824761711672739],[112,59,65,-0.08907402887859886],[112,59,66,-0.06617591000733909],[112,59,67,-0.05752042141775316],[112,59,68,-0.07900392304502865],[112,59,69,-0.09168444531023483],[112,59,70,-0.0683334991725676],[112,59,71,-0.025728799438137197],[112,59,72,-0.013540929632983345],[112,59,73,-0.02405520630824503],[112,59,74,-0.0390313358973687],[112,59,75,-0.05132138331098891],[112,59,76,-0.07366774017212144],[112,59,77,-0.07914042172091235],[112,59,78,-0.0788242122500752],[112,59,79,-0.08165106682133333],[112,60,64,-0.08904949714017135],[112,60,65,-0.09008906252940461],[112,60,66,-0.06707487350464415],[112,60,67,-0.05825419409318479],[112,60,68,-0.0797905875656598],[112,60,69,-0.0923902262654745],[112,60,70,-0.0688863822434902],[112,60,71,-0.02609199832673863],[112,60,72,-0.013944161616936861],[112,60,73,-0.024700560500249418],[112,60,74,-0.03958947206928632],[112,60,75,-0.051630732387404676],[112,60,76,-0.07435904227919614],[112,60,77,-0.08033105863044829],[112,60,78,-0.08028127485844157],[112,60,79,-0.08289737078530547],[112,61,64,-0.0898760658204197],[112,61,65,-0.09113052383684445],[112,61,66,-0.06800024582415157],[112,61,67,-0.05901267017645676],[112,61,68,-0.08060028024578571],[112,61,69,-0.09311302564627154],[112,61,70,-0.06945012472433049],[112,61,71,-0.02646115318574228],[112,61,72,-0.014351535684637507],[112,61,73,-0.025358032472327173],[112,61,74,-0.04016485856771898],[112,61,75,-0.051951799613855244],[112,61,76,-0.07506446184953294],[112,61,77,-0.08154570894168282],[112,61,78,-0.08176731424278573],[112,61,79,-0.08416383183795995],[112,62,64,-0.09072703687268235],[112,62,65,-0.09219825812471487],[112,62,66,-0.0689520953160756],[112,62,67,-0.05979590520155751],[112,62,68,-0.08143277290013459],[112,62,69,-0.09385239852029054],[112,62,70,-0.07002438912613862],[112,62,71,-0.02683615807700251],[112,62,72,-0.01476299625092336],[112,62,73,-0.0260276525385481],[112,62,74,-0.040757523301995044],[112,62,75,-0.05228440816468656],[112,62,76,-0.07578367721632741],[112,62,77,-0.08278416428565764],[112,62,78,-0.08328213049017656],[112,62,79,-0.08545003237952895],[112,63,64,-0.09160210390846533],[112,63,65,-0.09329208735072217],[112,63,66,-0.0699304731768055],[112,63,67,-0.060603941433952646],[112,63,68,-0.08228781911244212],[112,63,69,-0.09460788190977343],[112,63,70,-0.07060882404471319],[112,63,71,-0.02721689682819892],[112,63,72,-0.015178475046827282],[112,63,73,-0.026709434069024054],[112,63,74,-0.041367481922790876],[112,63,75,-0.052628375611935174],[112,63,76,-0.07651635347122147],[112,63,77,-0.08404619090503597],[112,63,78,-0.08482548728790013],[112,63,79,-0.08675552136090764],[112,64,64,-0.09250093940311056],[112,64,65,-0.09441180911533076],[112,64,66,-0.07093541232773758],[112,64,67,-0.06143680674823896],[112,64,68,-0.08316515335126583],[112,64,69,-0.09537899447128884],[112,64,70,-0.07120306415658924],[112,64,71,-0.0276032430418319],[112,64,72,-0.01559789125128625],[112,64,73,-0.02740337318249842],[112,64,74,-0.04199473703502672],[112,64,75,-0.052983513506275004],[112,64,76,-0.07726214247113317],[112,64,77,-0.08533152930229558],[112,64,78,-0.08639711117255723],[112,64,79,-0.08807981400407155],[112,65,64,-0.09342319367131725],[112,65,65,-0.09555719567834961],[112,65,66,-0.07196692628314842],[112,65,67,-0.06229451349373701],[112,65,68,-0.08406449009900943],[112,65,69,-0.09616523620464677],[112,65,70,-0.07180673024206902],[112,65,71,-0.027995060127963486],[112,65,72,-0.016021151659249583],[112,65,73,-0.02810944846945278],[112,65,74,-0.04263927741023854],[112,65,75,-0.053349626955611545],[112,65,76,-0.0780206828893951],[112,65,77,-0.0866398939588704],[112,65,78,-0.0879966908606049],[112,65,79,-0.08942239160015661],[112,66,64,-0.09436849385456296],[112,66,65,-0.09672799298760248],[112,66,66,-0.07302500801104761],[112,66,67,-0.06317705735168451],[112,66,68,-0.0849855229980285],[112,66,69,-0.09696608819375048],[112,66,70,-0.07241942923723847],[112,66,71,-0.028392201362894262],[112,66,72,-0.016448150889086428],[112,66,73,-0.02882762074981942],[112,66,74,-0.0433010772017288],[112,66,75,-0.05372651420279866],[112,66,76,-0.07879160031401101],[112,66,77,-0.0879709731310463],[112,66,78,-0.08962387666783024],[112,66,79,-0.0907827013903298],[112,67,64,-0.0953364429245361],[112,67,65,-0.09792391972425599],[112,67,66,-0.07410962879126533],[112,67,67,-0.06408441618796885],[112,67,68,-0.08592792401778876],[112,67,69,-0.09778101238208364],[112,67,70,-0.07304075431680135],[112,67,71,-0.028794509975901803],[112,67,72,-0.016878771632103298],[112,67,73,-0.029557832869375546],[112,67,74,-0.04398009516589462],[112,67,75,-0.05411396620398346],[112,67,76,-0.0795745073957622],[112,67,77,-0.08932442872838645],[112,67,78,-0.09127828002522502],[112,67,79,-0.092160156534435],[112,68,64,-0.09632661870668173],[112,68,65,-0.09914466636935407],[112,68,66,-0.07522073707508055],[112,68,67,-0.06501654890543951],[112,68,68,-0.08689134264709068],[112,68,69,-0.09860945138544322],[112,68,70,-0.0736702850094432],[112,68,71,-0.02920181926609144],[112,68,72,-0.017312884946884075],[112,68,73,-0.030300009538881758],[112,68,74,-0.04467627389323637],[112,68,75,-0.05451176620913206],[112,68,76,-0.08036900404880525],[112,68,77,-0.09069989628037878],[112,68,78,-0.09295947309863238],[112,68,79,-0.09355413617218236],[112,69,64,-0.09733857292812413],[112,69,65,-0.10038989429628369],[112,69,66,-0.0763582573509655],[112,69,67,-0.0659733943000946],[112,69,68,-0.08787540511546622],[112,69,69,-0.09945082834446019],[112,69,70,-0.07430758734733194],[112,69,71,-0.029613952751339115],[112,69,72,-0.017750350601056897],[112,69,73,-0.03105405722000039],[112,69,74,-0.045389539052657225],[112,69,75,-0.05491968934634704],[112,69,76,-0.08117467770632046],[112,69,77,-0.09209698499692404],[112,69,78,-0.09466698851945982],[112,69,79,-0.09496398558146586],[112,70,64,-0.09837183029428925],[112,70,65,-0.10165923489396236],[112,70,66,-0.07752208902118193],[112,70,67,-0.06695486992561063],[112,70,68,-0.08887971364790771],[112,70,69,-0.1003045468193522],[112,70,70,-0.0749522140512376],[112,70,71,-0.03003072435122805],[112,70,72,-0.018191017462981043],[112,70,73,-0.03181986406199228],[112,70,74,-0.046119798652760266],[112,70,75,-0.055337502211636955],[112,70,76,-0.08199110363367036],[112,70,77,-0.09351527792817711],[112,70,78,-0.09640031923361872],[112,70,79,-0.09638901643815541],[112,71,64,-0.09942588759860999],[112,71,65,-0.10295228872558868],[112,71,66,-0.07871210529410698],[112,71,67,-0.06796087097083997],[112,71,68,-0.08990384575711244],[112,71,69,-0.10116999072923141],[112,71,70,-0.0756037047525943],[112,71,71,-0.03045193860574345],[112,71,72,-0.018634723945659456],[112,71,73,-0.03259729989308495],[112,71,74,-0.04686694232389798],[112,71,75,-0.055764962465813736],[112,71,76,-0.08281784530137508],[112,71,77,-0.09495433222907104],[112,71,78,-0.09815891847564413],[112,71,79,-0.0978285071814176],[112,72,64,-0.1005002128697805],[112,72,65,-0.10426862472788546],[112,72,66,-0.0799281520973608],[112,72,67,-0.06899126915510417],[112,72,68,-0.09094735357748766],[112,72,69,-0.10204652433819875],[112,72,70,-0.07626158625371386],[112,72,71,-0.03087739093141827],[112,72,72,-0.019081298505064792],[112,72,73,-0.033386216270356636],[112,72,74,-0.04763084062483641],[112,72,75,-0.05620181844026989],[112,72,76,-0.08365445482011837],[112,72,77,-0.09641367953372745],[112,72,78,-0.09994219987477831],[112,72,79,-0.09928170348835956],[112,73,64,-0.1015942445610948],[112,73,65,-0.1056077794558268],[112,73,66,-0.08117004701697035],[112,73,67,-0.07004591164628494],[112,73,68,-0.09200976324519324],[112,73,69,-0.10293349229035328],[112,73,70,-0.07692537282722825],[112,73,71,-0.031306867916504263],[112,73,72,-0.01953056019489274],[112,73,73,-0.03418644659188021],[112,73,74,-0.048411344377958826],[112,73,75,-0.05664780875343333],[112,73,76,-0.08450047343986569],[112,73,77,-0.0978928264447684],[112,73,78,-0.10174953769956499],[112,73,79,-0.10074781886149112],[112,74,64,-0.10270739078640546],[112,74,65,-0.10696925637782696],[112,74,66,-0.08243757826789976],[112,74,67,-0.0711246200068292],[112,74,68,-0.0930905743284721],[112,74,69,-0.10383021969567133],[112,74,70,-0.07759456655563941],[112,74,71,-0.03174014765657536],[112,74,72,-0.019982319279525783],[112,74,73,-0.03499780627470531],[112,74,74,-0.049208284036944626],[112,74,75,-0.05710266193969754],[112,74,76,-0.08535543211497669],[112,74,77,-0.09939125514227293],[112,74,78,-0.10358026724717644],[112,74,79,-0.10222603533211091],[112,75,64,-0.10383902860731567],[112,75,65,-0.10835252522644583],[112,75,66,-0.08373050370146107],[112,75,67,-0.07222718917297323],[112,75,68,-0.0941892593125566],[112,75,69,-0.10473601226861784],[112,75,70,-0.07826865771174654],[112,75,71,-0.03217700013187481],[112,75,72,-0.02043637790683111],[112,75,73,-0.03582009300215996],[112,75,74,-0.050021469090937194],[112,75,75,-0.05756609609269989],[112,75,76,-0.08621885213708583],[112,75,77,-0.10090842411693488],[112,75,78,-0.10543368538343129],[112,75,79,-0.10371550428241247],[112,76,64,-0.10498850337622842],[112,76,65,-0.10975702140965264],[112,76,66,-0.08504854985521872],[112,76,67,-0.07335338647261683],[112,76,68,-0.09530526314341994],[112,76,69,-0.1056501565212107],[112,76,70,-0.07894712518055579],[112,76,71,-0.032617187627563646],[112,76,72,-0.020892530842189103],[112,76,73,-0.03665308704378419],[112,76,74,-0.0508506875092356],[112,76,75,-0.05803781852485488],[112,76,76,-0.08709024583734476],[112,76,77,-0.10244376903168892],[112,76,78,-0.10730905123910517],[112,76,79,-0.10521534738872074],[112,77,64,-0.10615512813985684],[112,77,65,-0.11118214548765909],[112,77,66,-0.08639141105108189],[112,77,67,-0.07450295068736208],[112,77,68,-0.09643800283457779],[112,77,69,-0.10657192001206843],[112,77,70,-0.07962943692307962],[112,77,71,-0.03306046519783973],[112,77,72,-0.021350566264885778],[112,77,73,-0.03749655165099505],[112,77,74,-0.05169570523051455],[112,77,75,-0.05851752544503389],[112,77,76,-0.08796911735940588],[112,77,77,-0.1039967037157509],[112,77,78,-0.10920558706771838],[112,77,79,-0.1067246576878232],[112,78,64,-0.10733818310781311],[112,78,65,-0.11262726272032718],[112,78,66,-0.08775874854738594],[112,78,67,-0.07567559116436531],[112,78,68,-0.097586867141126],[112,78,69,-0.10750055165284764],[112,78,70,-0.08031505048229477],[112,78,71,-0.03350658117476337],[112,78,72,-0.021810266627788406],[112,78,73,-0.03835023353141488],[112,78,74,-0.05255626570060803],[112,78,75,-0.05900490165634342],[112,78,76,-0.08885496350437155],[112,78,77,-0.10556662129472606],[112,78,78,-0.11112247926960074],[112,78,79,-0.10824250076797566],[112,79,64,-0.10853691519087656],[112,79,65,-0.11409170269011189],[112,79,66,-0.08915018975083663],[112,79,67,-0.07687098698373318],[112,79,68,-0.09875121630514279],[112,79,69,-0.10843528207331607],[112,79,70,-0.08100341353136417],[112,79,71,-0.03395527772245323],[112,79,72,-0.022271409580966132],[112,79,73,-0.039213863404577706],[112,79,74,-0.05343208946286628],[112,79,75,-0.059499620275969715],[112,79,76,-0.08974727464873804],[112,79,77,-0.10715289546010089],[112,79,78,-0.11305887958658975],[112,79,79,-0.10976791608572373],[112,80,64,-0.10975053761345496],[112,80,65,-0.11557475900539999],[112,80,66,-0.0905653274941953],[112,80,67,-0.0780887861872173],[112,80,68,-0.09993038187645438],[112,80,69,-0.10937532404608692],[112,80,70,-0.08169396446401007],[112,80,71,-0.03440629143709802],[112,80,72,-0.022733768959612814],[112,80,73,-0.040087156641451835],[112,80,74,-0.0543228738050154],[112,80,75,-0.06000134247902348],[112,80,76,-0.09064553573611606],[112,80,77,-0.10875488188102904],[112,80,78,-0.11501390647119038],[112,80,79,-0.11129991840917082],[112,81,64,-0.11097822960473326],[112,81,65,-0.1170756890890435],[112,81,66,-0.09200371938564234],[112,81,67,-0.07932860507403795],[112,81,68,-0.10112366661270543],[112,81,69,-0.11031987297190622],[112,81,70,-0.08238613302678635],[112,81,71,-0.03485935399307013],[112,81,72,-0.023197115836375366],[112,81,73,-0.040969813989997474],[112,81,74,-0.055228292466425806],[112,81,75,-0.06050971726835226],[112,81,76,-0.09154922734332623],[112,81,77,-0.11037191976096733],[112,81,78,-0.11698664663356195],[112,81,79,-0.11283749938790152],[112,82,64,-0.11221913617290905],[112,82,65,-0.11859371405677706],[112,82,66,-0.09346488723575283],[112,82,67,-0.08059002756968071],[112,82,68,-0.10233034446253772],[112,82,69,-0.11126810742618158],[112,82,70,-0.0830793409928249],[112,82,71,-0.03531419283524564],[112,82,72,-0.023661219637919974],[112,82,73,-0.041861522388701715],[112,82,74,-0.0561479954096107],[112,82,75,-0.061024381272291456],[112,82,76,-0.09245782682127031],[112,82,77,-0.11200333354132233],[112,82,78,-0.11897615676913667],[112,82,79,-0.11437962924926005],[112,83,64,-0.1134723663831509],[112,83,65,-0.12012801657196258],[112,83,66,-0.09494831454827077],[112,83,67,-0.08187260263697788],[112,83,68,-0.10354965769074888],[112,83,69,-0.11221918618029857],[112,83,70,-0.08377299990673573],[112,83,71,-0.03577053052612875],[112,83,72,-0.024125848304765198],[112,83,73,-0.04276195391730977],[112,83,74,-0.05708160586405629],[112,83,75,-0.061544955356550704],[112,83,76,-0.09337080433053706],[112,83,77,-0.11364842808671517],[112,83,78,-0.12098145799202771],[112,83,79,-0.11592525109697145],[112,84,64,-0.11473694453557855],[112,84,65,-0.12167767495323044],[112,84,66,-0.09645338263865087],[112,84,67,-0.08317577953467648],[112,84,68,-0.10478072425109293],[112,84,69,-0.11317213603583504],[112,84,70,-0.08446641827809774],[112,84,71,-0.03622804140797261],[112,84,72,-0.024590736894545707],[112,84,73,-0.04367070414046051],[112,84,74,-0.058028630930659963],[112,84,75,-0.06207094262660732],[112,84,76,-0.09428745971440353],[112,84,77,-0.11530627780838455],[112,84,78,-0.12300129850798099],[112,84,79,-0.11747304278110583],[112,85,64,-0.11601180666307868],[112,85,65,-0.1232416551076818],[112,85,66,-0.09797935967018925],[112,85,67,-0.08449889539629891],[112,85,68,-0.10602252134111545],[112,85,69,-0.11412583309724525],[112,85,70,-0.08515878558613325],[112,85,71,-0.03668634319011623],[112,85,72,-0.025055580801539846],[112,85,73,-0.04458727670218921],[112,85,74,-0.05898843980973699],[112,85,75,-0.06260170747492251],[112,85,76,-0.09520688872751355],[112,85,77,-0.1169756775082077],[112,85,78,-0.12503409510928767],[112,85,79,-0.11902136182972024],[112,86,64,-0.11729586235114153],[112,86,65,-0.12481889164107844],[112,86,66,-0.09952547616297755],[112,86,67,-0.08584125059156517],[112,86,68,-0.10727399542841433],[112,86,69,-0.11507913755513198],[112,86,70,-0.08584928373601253],[112,86,71,-0.0371450490354319],[112,86,72,-0.025520074134568218],[112,86,73,-0.04551115466480987],[112,86,74,-0.05996036501725826],[112,86,75,-0.06313659388019824],[112,86,76,-0.0961281745847103],[112,86,77,-0.11865538642209768],[112,86,78,-0.1270782052694431],[112,86,79,-0.12056852107635276],[112,87,64,-0.11858799874837589],[112,87,65,-0.12640829328126904],[112,87,66,-0.10109092965476603],[112,87,67,-0.08720211322930649],[112,87,68,-0.108534069408697],[112,87,69,-0.11603090268212084],[112,87,70,-0.08653709468587609],[112,87,71,-0.03760377169776673],[112,87,72,-0.02598391359599846],[112,87,73,-0.046441806246288186],[112,87,74,-0.06094370867329786],[112,87,75,-0.06367493249070162],[112,87,76,-0.09705040115436832],[112,87,77,-0.1203441456322249],[112,87,78,-0.1291319466641689],[112,87,79,-0.12211280828315044],[112,88,64,-0.11988708091394057],[112,88,65,-0.1280087434247117],[112,88,66,-0.10267488476070274],[112,88,67,-0.08858071903834787],[112,88,68,-0.10980164301664667],[112,88,69,-0.11697997553432937],[112,88,70,-0.08722140119888186],[112,88,71,-0.03806212448028661],[112,88,72,-0.026446800066596724],[112,88,73,-0.047378686177845096],[112,88,74,-0.061937742463682596],[112,88,75,-0.06421604032023573],[112,88,76,-0.09797265425946047],[112,88,77,-0.12204068030956253],[112,88,78,-0.13119359975846343],[112,88,79,-0.123652488613118],[112,89,64,-0.1211919522547021],[112,89,65,-0.12961910077957123],[112,89,66,-0.10427647334004252],[112,89,67,-0.08997627135776845],[112,89,68,-0.1110755933373648],[112,89,69,-0.11792519770879586],[112,89,70,-0.08790138762378413],[112,89,71,-0.03851972222931393],[112,89,72,-0.026908440234257664],[112,89,73,-0.0483212371484151],[112,89,74,-0.06294170770166505],[112,89,75,-0.06475922050310505],[112,89,76,-0.09889402305379215],[112,89,77,-0.12374370210990472],[112,89,78,-0.13326141060229388],[112,89,79,-0.12518580724934053],[112,90,64,-0.12250143505137936],[112,90,65,-0.13123820010465195],[112,90,66,-0.10589479477138275],[112,90,67,-0.09138794123859988],[112,90,68,-0.11235477541779504],[112,90,69,-0.1188654061538426],[112,90,70,-0.08857624070076897],[112,90,71,-0.03897618236088369],[112,90,72,-0.0273685482624533],[112,90,73,-0.04926889133343905],[112,90,74,-0.06395481549139587],[112,90,75,-0.06530376210924212],[112,90,76,-0.09981360146922133],[112,90,77,-0.12545191171799594],[112,90,78,-0.1353335938298379],[112,90,79,-0.12671099215479803],[112,91,64,-0.12381433107280061],[112,91,65,-0.13286485304321521],[112,91,66,-0.1075289163377362],[112,91,67,-0.09281486765879027],[112,91,68,-0.11363802297734465],[112,91,69,-0.11979943402932834],[112,91,70,-0.08924515038925156],[112,91,71,-0.03943112591702872],[112,91,72,-0.027826847493860066],[112,91,73,-0.05022107200499678],[112,91,74,-0.06497624699472758],[112,91,75,-0.0658489400206694],[112,91,76,-0.1007304897294465],[112,91,77,-0.12716400153374924],[112,91,78,-0.13740833585630677],[112,91,79,-0.12822625696582818],[112,92,64,-0.12512942227717636],[112,92,65,-0.1344978490504479],[112,92,66,-0.10917787372243169],[112,92,67,-0.09425615785294017],[112,92,68,-0.11492414921664441],[112,92,69,-0.12072611161362556],[112,92,70,-0.08990731071425766],[112,92,71,-0.039884178648560975],[112,92,72,-0.028283072184226602],[112,92,73,-0.051177195219778336],[112,92,74,-0.06600515380256579],[112,92,75,-0.06639401487039769],[112,92,76,-0.1016437959256434],[112,92,77,-0.12887865849381328],[112,92,78,-0.1394837982654433],[112,92,79,-0.12972980401165493],[112,93,64,-0.12644547159918618],[112,93,65,-0.13613595641317197],[112,93,66,-0.11084067161660195],[112,93,67,-0.09571088775809507],[112,93,68,-0.11621194772322525],[112,93,69,-0.12164426725418717],[112,93,70,-0.09056192062806154],[112,93,71,-0.04033497212097468],[112,93,72,-0.028736969261247695],[112,93,73,-0.0521366715809821],[112,93,74,-0.06704065841176382],[112,93,75,-0.06693823304489065],[112,93,76,-0.10255263764905757],[112,93,77,-0.13059456702115155],[112,93,78,-0.14155812137998344],[112,93,79,-0.13121982745192284],[112,94,64,-0.1277612238214553],[112,94,65,-0.13777792336009606],[112,94,66,-0.1125162844386724],[112,94,67,-0.09717810257652812],[112,94,68,-0.11750019347261391],[112,94,69,-0.12255272835848041],[112,94,70,-0.09120818488369717],[112,94,71,-0.040783144839865615],[112,94,72,-0.029188300102836278],[112,94,73,-0.05309890806973079],[112,94,74,-0.06808185480821158],[112,94,75,-0.0674808267511291],[112,94,76,-0.1034561436753662],[112,94,77,-0.1323104120945914],[112,94,78,-0.14362942800644277],[112,94,79,-0.13269451652358874],[112,95,64,-0.12907540652886393],[112,95,65,-0.1394224792607165],[112,95,66,-0.11420365716599616],[112,95,67,-0.09865681745617058],[112,95,68,-0.11878764392314724],[112,95,69,-0.12345032242207317],[112,95,70,-0.09184531491701067],[112,95,71,-0.041228343392138316],[112,95,72,-0.029636842328925654],[112,95,73,-0.05406330994120092],[112,95,74,-0.0691278091565112],[112,95,75,-0.06802101414928885],[112,95,76,-0.10435345569544562],[112,95,77,-0.13402488242971278],[112,95,78,-0.14569582734479544],[112,95,79,-0.13415205888806075],[112,96,64,-0.1303867311439012],[112,96,65,-0.14106833591067677],[112,96,66,-0.11590170627840167],[112,96,67,-0.1001460182889643],[112,96,68,-0.12007304020252321],[112,96,69,-0.12433587809059386],[112,96,70,-0.0924725297338872],[112,96,71,-0.041670223599047415],[112,96,72,-0.03008239160057555],[112,96,73,-0.05502928268016678],[112,96,74,-0.07017756059624897],[112,96,75,-0.06855799955191304],[112,96,76,-0.10524373008689107],[112,96,77,-0.1357366737617564],[112,96,78,-0.1477554190527128],[112,96,79,-0.13559064406893673],[112,97,64,-0.13169389404113285],[112,97,65,-0.14271418890119303],[112,97,66,-0.117609320813126],[112,97,67,-0.10164466262709822],[112,97,68,-0.12135510838388826],[112,97,69,-0.12520822625229366],[112,97,70,-0.09308905679935063],[112,97,71,-0.04210845167702036],[112,97,72,-0.03052476341994107],[112,97,73,-0.05599623401029446],[112,97,74,-0.07123012214459136],[112,97,75,-0.06909097369040698],[112,97,76,-0.10612613972047079],[112,97,77,-0.13744449222067384],[112,97,78,-0.14980629745326624],[112,97,79,-0.13700846697027605],[112,98,64,-0.13299557773866488],[112,98,65,-0.144358719069907],[112,98,66,-0.11932536353026217],[112,98,67,-0.10315168071673321],[112,98,68,-0.12263256084901883],[112,98,69,-0.12606620115793768],[112,98,70,-0.09369413292527434],[112,98,71,-0.042542705402071786],[112,98,72,-0.030963794924413514],[112,98,73,-0.0569635759511169],[112,98,74,-0.0722844817045895],[112,98,75,-0.0696191140495797],[112,98,76,-0.10699987579548806],[112,98,77,-0.13914705778785502],[112,98,78,-0.15184655587421717],[112,98,79,-0.13840373146492108],[112,99,64,-0.1342904521642676],[112,99,65,-0.14600059403025092],[112,99,66,-0.12104867218745732],[112,99,67,-0.1046659766484106],[112,99,68,-0.1239040977358687],[112,99,69,-0.1269086415647114],[112,99,70,-0.09428700515345137],[112,99,71,-0.04297267527345205],[112,99,72,-0.031399346667972526],[112,99,73,-0.057930726916194254],[112,99,74,-0.07333960317818579],[112,99,75,-0.07014158527079074],[112,99,76,-0.1078641496977863],[112,99,77,-0.1408431078234637],[112,99,78,-0.15387429110621426],[112,99,79,-0.13977465404194345],[112,100,64,-0.13557717599366972],[112,100,65,-0.14763846977620254],[112,100,66,-0.1227780609222793],[112,100,67,-0.10618642962298742],[112,100,68,-0.12516840846752872],[112,100,69,-0.1277343919008524],[112,100,70,-0.09486693163086456],[112,100,71,-0.04339806567211959],[112,100,72,-0.031831304382652255],[112,100,73,-0.05889711384565278],[112,100,74,-0.07439442768260335],[112,100,75,-0.07065753962416443],[112,100,76,-0.10871819487399689],[112,100,77,-0.14253140065282383],[112,100,78,-0.15588760796654655],[112,100,79,-0.14111946750197077],[112,101,64,-0.1368543980583617],[112,101,65,-0.14927099235908303],[112,101,66,-0.12451232174031066],[112,101,67,-0.10771189533156907],[112,101,68,-0.12642417335942066],[112,101,69,-0.12854230344775944],[112,101,70,-0.095433182474082],[112,101,71,-0.04381859600952875],[112,101,72,-0.03225958071284066],[112,101,73,-0.05986217436595156],[112,101,74,-0.07544787486844509],[112,101,75,-0.07116611755019665],[112,101,76,-0.10956126871546669],[112,101,77,-0.14421071919981077],[112,101,78,-0.15788462395443253],[112,101,79,-0.14243642468885245],[112,102,64,-0.13812075882001112],[112,102,65,-0.1508967996327667],[112,102,66,-0.1262502261066122],[112,102,67,-0.10924120744745347],[112,102,68,-0.12767006530123037],[112,102,69,-0.12933123553627351],[112,102,70,-0.09598504061972571],[112,102,71,-0.04423400186211567],[112,102,72,-0.032684116914965804],[112,102,73,-0.06082535896937187],[112,102,74,-0.07649884433741364],[112,102,75,-0.07166644827086237],[112,102,76,-0.11039265444509581],[112,102,77,-0.14587987465467145],[112,102,78,-0.15986347398312514],[112,102,79,-0.14372380224576337],[112,103,64,-0.1393748919084638],[112,103,65,-0.15251452306349583],[112,103,66,-0.12799052663788352],[112,103,67,-0.11077317922775756],[112,103,68,-0.12890475150990544],[112,103,69,-0.13010005675391217],[112,103,70,-0.09652180265810469],[112,103,71,-0.044644036086855174],[112,103,72,-0.03310488451505405],[112,103,73,-0.06178613320548517],[112,103,74,-0.07754621715725137],[112,103,75,-0.07215765047021297],[112,103,76,-0.11121166300024217],[112,103,77,-0.14753771016334355],[112,103,78,-0.1618223151735906],[112,103,79,-0.14497990438367883],[112,104,64,-0.14061542572012606],[112,104,65,-0.15412278960027304],[112,104,66,-0.12973195889226952],[112,104,67,-0.11230660522198896],[112,104,68,-0.13012689534979663],[112,104,69,-0.1308476461598728],[112,104,70,-0.09704277964720388],[112,104,71,-0.04504846991322198],[112,104,72,-0.03352188691657065],[112,104,73,-0.06274397987659598],[112,104,74,-0.07858885747113459],[112,104,75,-0.07263883304427317],[112,104,76,-0.11201763490472869],[112,104,77,-0.14918310452494704],[112,104,78,-0.1637593316939793],[112,104,79,-0.1462030666499503],[112,105,64,-0.14184098520443075],[112,105,65,-0.15572022362356788],[112,105,66,-0.13147324318323295],[112,105,67,-0.11384026306058087],[112,105,68,-0.131335158233393],[112,105,69,-0.13157289448361034],[112,105,70,-0.09754729787262433],[112,105,71,-0.04544709405094151],[112,105,72,-0.033935160977933726],[112,105,73,-0.06369840119437993],[112,105,74,-0.07962561419757297],[112,105,75,-0.07310909594330921],[112,105,76,-0.11280994200362376],[112,105,77,-0.15081497573550073],[112,105,78,-0.16567273958769876],[112,105,79,-0.1473916597410764],[112,106,64,-0.14305034712749476],[112,106,65,-0.1573054747208073],[112,106,66,-0.13321300474446207],[112,106,67,-0.11537288774249618],[112,106,68,-0.13252822306103387],[112,106,69,-0.13227468259342215],[112,106,70,-0.09803466405841235],[112,106,71,-0.04583977098851925],[112,106,72,-0.034344808671622665],[112,106,73,-0.06464887945995332],[112,106,74,-0.08065532288526198],[112,106,75,-0.0735675602239908],[112,106,76,-0.11358784976738547],[112,106,77,-0.15243210976985483],[112,106,78,-0.16756074268618423],[112,106,79,-0.14854415932364076],[112,107,64,-0.14424274416801086],[112,107,65,-0.15887727059380533],[112,107,66,-0.13494961692935517],[112,107,67,-0.11690312090918216],[112,107,68,-0.13370484425784085],[112,107,69,-0.13295185063343032],[112,107,70,-0.09850410668071612],[112,107,71,-0.04622653424932368],[112,107,72,-0.03475104735061982],[112,107,73,-0.0655947899670238],[112,107,74,-0.08167681447366294],[112,107,75,-0.07401343778256367],[112,107,76,-0.11435024508373356],[112,107,77,-0.15403281090971818],[112,107,78,-0.1694214333214349],[112,107,79,-0.14965927868185],[112,108,64,-0.14541750655786986],[112,108,65,-0.1604343587637483],[112,108,66,-0.13668139844752433],[112,108,67,-0.11842958007254714],[112,108,68,-0.13486380769528938],[112,108,69,-0.13360327129149238],[112,108,70,-0.09895487564970858],[112,108,71,-0.04660746507191227],[112,108,72,-0.03515412470312463],[112,108,73,-0.06653548936723952],[112,108,74,-0.08268892701313046],[112,108,75,-0.07444598062195415],[112,108,76,-0.11509596636240792],[112,108,77,-0.1556153023525534],[112,108,78,-0.17125290052279246],[112,108,79,-0.1507358155720914],[112,109,64,-0.14657398228814186],[112,109,65,-0.1619754950064419],[112,109,66,-0.13840665951363504],[112,109,67,-0.11995087568105807],[112,109,68,-0.1360039225179677],[112,109,69,-0.13422786612608875],[112,109,70,-0.09938626445684764],[112,109,71,-0.04698266525531858],[112,109,72,-0.03555430126811372],[112,109,73,-0.06747033802161731],[112,109,74,-0.08369050924498621],[112,109,75,-0.07486446905490024],[112,109,76,-0.1158238796897495],[112,109,77,-0.15717782056754728],[112,109,78,-0.17305325877693523],[112,109,79,-0.15177262028447785],[112,110,64,-0.14771153837344167],[112,110,65,-0.1634994454186208],[112,110,66,-0.1401237045486563],[112,110,67,-0.12146561341647993],[112,110,68,-0.13712402344788116],[112,110,69,-0.13482460789726197],[112,110,70,-0.09979761188223903],[112,110,71,-0.047352257411837954],[112,110,72,-0.0359518504151627],[112,110,73,-0.06839870158950392],[112,110,74,-0.08468042322679258],[112,110,75,-0.07526821357211827],[112,110,76,-0.1165328811990413],[112,110,77,-0.15871861869196732],[112,110,78,-0.17482065208769929],[112,110,79,-0.15276859868097029],[112,111,64,-0.14882956207794049],[112,111,65,-0.16500498849917178],[112,111,66,-0.14183083496872553],[112,111,67,-0.122972396561571],[112,111,68,-0.13822297307574713],[112,111,69,-0.13539252282993716],[112,111,70,-0.100188303629221],[112,111,71,-0.04771638515129895],[112,111,72,-0.03634705826391732],[112,111,73,-0.0693199526253103],[112,111,74,-0.08565754698071262],[112,111,75,-0.07565655668404112],[112,111,76,-0.1172218994347417],[112,111,77,-0.16023596996355283],[112,111,78,-0.17655325802131122],[112,111,79,-0.15372271512374688],[112,112,64,-0.14992746210059746],[112,112,65,-0.1664909172400461],[112,112,66,-0.14352635205368067],[112,112,67,-0.12446982843211367],[112,112,68,-0.13929966413129788],[112,112,69,-0.13593069279922876],[112,112,70,-0.1005577738776414],[112,112,71,-0.0480752131955326],[112,112,72,-0.03674022354378135],[112,112,73,-0.07023347217833753],[112,112,74,-0.08662077715538283],[112,112,75,-0.07602887472773795],[112,112,76,-0.11788989770066237],[112,112,77,-0.16172817117757152],[112,112,78,-0.17824929172431786],[112,112,79,-0.15463399528377528],[112,113,64,-0.15100466971723217],[112,113,65,-0.16795604122154623],[112,113,66,-0.14520855988703885],[112,113,67,-0.1259565148664149],[112,113,68,-0.14035302172466432],[112,113,69,-0.13643825742765303],[112,113,70,-0.10090550674761367],[112,113,71,-0.04842892742192123],[112,113,72,-0.0371316573944732],[112,113,73,-0.07113865139087741],[112,113,74,-0.08756903169160263],[112,113,75,-0.07638457963070706],[112,113,76,-0.11853587638217307],[112,113,77,-0.16319354615701648],[112,113,78,-0.17990700990144715],[112,113,79,-0.15550152881980234],[112,114,64,-0.15206063987707125],[112,114,65,-0.16939918870654946],[112,114,66,-0.14687576835887106],[112,114,67,-0.12743106676512495],[112,114,68,-0.14138200555094513],[112,114,69,-0.13691441608446764],[112,114,70,-0.10123103766587402],[112,114,71,-0.048777734835088724],[112,114,72,-0.03752168310819326],[112,114,73,-0.07203489308961528],[112,114,74,-0.08850125248200347],[112,114,75,-0.0767231206233321],[112,114,76,-0.11915887523257135],[112,114,77,-0.16463044922423714],[112,114,78,-0.18152471474057108],[112,114,79,-0.15632447191823698],[112,115,64,-0.15309485174748827],[112,115,65,-0.17081920821844374],[112,115,66,-0.14852629570728718],[112,115,67,-0.12889210215269142],[112,115,68,-0.14238561152299475],[112,115,69,-0.13735842924470817],[112,115,70,-0.10153395408835665],[112,115,71,-0.04912186292127741],[112,115,72,-0.03791063526369358],[112,115,73,-0.07292161280889906],[112,115,74,-0.08941640745258433],[112,115,75,-0.0770439853238264],[112,115,76,-0.11975797503991126],[112,115,77,-0.1660372680825088],[112,115,78,-0.183100757186505],[112,115,79,-0.1571020490934688],[112,116,64,-0.15410668494201618],[112,116,65,-0.17221484440377705],[112,116,66,-0.15015834395917113],[112,116,67,-0.13033811968039907],[112,116,68,-0.14336274330576346],[112,116,69,-0.13776948822995416],[112,116,70,-0.10181376315041551],[112,116,71,-0.04946142450926779],[112,116,72,-0.038298722922766794],[112,116,73,-0.07379810245571332],[112,116,74,-0.09031335381779663],[112,116,75,-0.07734656049815174],[112,116,76,-0.12033215752691905],[112,116,77,-0.167412283513882],[112,116,78,-0.184633395530068],[112,116,79,-0.15783340878583912],[112,117,64,-0.15509525068547936],[112,117,65,-0.17358456825875826],[112,117,66,-0.15176982817611973],[112,117,67,-0.13176732531004665],[112,117,68,-0.14431203632369766],[112,117,69,-0.13814653673362232],[112,117,70,-0.10206971048124933],[112,117,71,-0.049796233211561916],[112,117,72,-0.038685842793423006],[112,117,73,-0.0746633433413045],[112,117,74,-0.09119065005353803],[112,117,75,-0.07762994086221679],[112,117,76,-0.12088011266633594],[112,117,77,-0.16875347588557882],[112,117,78,-0.18612060011117157],[112,117,79,-0.15851742436173857],[112,118,64,-0.15605963327367361],[112,118,65,-0.17492682241320032],[112,118,66,-0.15335862555922167],[112,118,67,-0.13317788361816404],[112,118,68,-0.1452321110840495],[112,118,69,-0.13848852638959033],[112,118,70,-0.10230103787088184],[112,118,71,-0.050126062575453656],[112,118,72,-0.039071840929831875],[112,118,73,-0.07551627258282496],[112,118,74,-0.09204682602350088],[112,118,75,-0.07789320079438686],[112,118,76,-0.1214005136980661],[112,118,77,-0.17005880415532637],[112,118,78,-0.18756033521521082],[112,118,79,-0.1591529769683113],[112,119,64,-0.15699893111339297],[112,119,65,-0.17624006380927515],[112,119,66,-0.154922619773985],[112,119,67,-0.13456796208845379],[112,119,68,-0.14612161717085728],[112,119,69,-0.1387944607104599],[112,119,70,-0.10250702708019578],[112,119,71,-0.050450689197488165],[112,119,72,-0.03945655618021957],[112,119,73,-0.0763558290401554],[112,119,74,-0.09288043038863437],[112,119,75,-0.07813544107305391],[112,119,76,-0.12189206496142525],[112,119,77,-0.1713262555091992],[112,119,78,-0.18895060934616967],[112,119,79,-0.15973900451296874],[112,120,64,-0.15791225791761815],[112,120,65,-0.17752276610989945],[112,120,66,-0.15645970459567968],[112,120,67,-0.1359357342685014],[112,120,68,-0.14697923556466605],[112,120,69,-0.13906339683063926],[112,120,70,-0.10268700101265911],[112,120,71,-0.0507698928072633],[112,120,72,-0.03983982017034755],[112,120,73,-0.07718095534720032],[112,120,74,-0.09369003362942638],[112,120,75,-0.07835579074188215],[112,120,76,-0.12235350440757721],[112,120,77,-0.17255384925147796],[112,120,78,-0.19028947924477016],[112,120,79,-0.16027450388058698],[112,121,64,-0.15879874389350074],[112,121,65,-0.17877342212169053],[112,121,66,-0.15796778760864688],[112,121,67,-0.13727938298014036],[112,121,68,-0.14780368093437068],[112,121,69,-0.13929444715713057],[112,121,70,-0.10284032480947541],[112,121,71,-0.05108345634494899],[112,121,72,-0.040221457305221135],[112,121,73,-0.07799059997059625],[112,121,74,-0.09447423106607136],[112,121,75,-0.0785534089462162],[112,121,76,-0.12278360608811753],[112,121,77,-0.17373964069232573],[112,121,78,-0.19157505384846607],[112,121,79,-0.1607585330393052],[112,122,64,-0.15965753692096016],[112,122,65,-0.17999054622643562],[112,122,66,-0.15944479394914765],[112,122,67,-0.1385971035745462],[112,122,68,-0.1485937038940571],[112,122,69,-0.13948678092128977],[112,122,70,-0.10296640686325392],[112,122,71,-0.051391166032670584],[112,122,72,-0.04060128479000962],[112,122,73,-0.07878371928998282],[112,122,74,-0.0952316458664631],[112,122,75,-0.07872748673358695],[112,122,76,-0.12318118261081659],[112,122,77,-0.17488172502113009],[112,122,78,-0.19280549818123358],[112,122,79,-0.1611902130282258],[112,123,64,-0.16048780371970414],[112,123,65,-0.1811726768149522],[112,123,66,-0.16088867008114896],[112,123,67,-0.13988710722296147],[112,123,68,-0.14934809321786027],[112,123,69,-0.1396396256252541],[112,123,70,-0.10306469974567109],[112,123,71,-0.05169281143994643],[112,123,72,-0.040979112671067595],[112,123,73,-0.07955927969384512],[112,123,74,-0.09596093203196616],[112,123,75,-0.07887724881139292],[112,123,76,-0.12354508755366764],[112,123,77,-0.17597824115335817],[112,123,78,-0.19397903716127546],[112,123,79,-0.1615687298206684],[112,124,64,-0.16128873100245303],[112,124,65,-0.18231837871713272],[112,124,66,-0.16229738759424883],[112,124,67,-0.14114762423374402],[112,124,68,-0.15006567800595857],[112,124,69,-0.13975226837712562],[112,124,70,-0.10313470104494303],[112,124,71,-0.05198818554338051],[112,124,72,-0.04135474389783503],[112,124,73,-0.08031625968479153],[112,124,74,-0.09666077735092286],[112,124,75,-0.07900195525495331],[112,124,76,-0.12387421782848713],[112,124,77,-0.17702737553875586],[112,124,78,-0.19509395931491663],[112,124,79,-0.1618933360569589],[112,125,64,-0.16205952661217188],[112,125,65,-0.18342624562194246],[112,125,66,-0.16366894701283574],[112,125,67,-0.1423769073863044],[112,125,68,-0.15074532979499547],[112,125,69,-0.13982405710944124],[112,125,70,-0.10317595410933929],[112,125,71,-0.05227708478089931],[112,125,72,-0.041727974406355776],[112,125,73,-0.08105365198808127],[112,125,74,-0.0973299063099681],[112,125,75,-0.07910090315934257],[112,125,76,-0.12416751598551748],[112,125,77,-0.17802736591881252],[112,125,78,-0.19614862038522568],[112,125,79,-0.16216335264114187],[112,126,64,-0.1627994206411307],[112,126,65,-0.18449490248113637],[112,126,66,-0.1650013816054968],[112,126,67,-0.1435732352724107],[112,126,68,-0.15138596460643006],[112,126,69,-0.13985440167596364],[112,126,70,-0.10318804869339311],[112,126,71,-0.05255930910085844],[112,126,72,-0.04209859322505511],[112,126,73,-0.08177046565713891],[112,126,74,-0.09796708295333946],[112,126,75,-0.07917342822862992],[112,126,76,-0.12442397245070197],[112,126,77,-0.17897650502153914],[112,126,78,-0.19714144682420584],[112,126,79,-0.16237817019644188],[112,127,64,-0.1635076665295874],[112,127,65,-0.18552300789040466],[112,127,66,-0.16629276118356953],[112,127,67,-0.1447349156351837],[112,127,68,-0.15198654492644467],[112,127,69,-0.1398427748222179],[112,127,70,-0.10317062150381563],[112,127,71,-0.05283466200635811],[112,127,72,-0.04246638260330952],[112,127,73,-0.08246572816971863],[112,127,74,-0.09857111368047455],[112,127,75,-0.0792189062963198],[112,127,76,-0.12464262768746774],[112,127,77,-0.17987314418168784],[112,127,78,-0.19807093915764587],[112,127,79,-0.16253725037465933],[112,128,64,-0.1641835421419407],[112,128,65,-0.1865092564417117],[112,128,66,-0.16754119587774818],[112,128,67,-0.14586028869610304],[112,128,68,-0.1525460816113129],[112,128,69,-0.1397887130257422],[112,128,70,-0.10312335664258929],[112,128,71,-0.053102950595181594],[112,128,72,-0.042831118163282125],[112,128,73,-0.08313848750838858],[112,128,74,-0.09914084997240748],[112,128,75,-0.0792367547710799],[112,128,76,-0.1248225742751614],[112,128,77,-0.180715696874783],[112,128,78,-0.1989356752121374],[112,128,79,-0.16264012701519104],[112,129,64,-0.16482635081822633],[112,129,65,-0.18745238104061984],[112,129,66,-0.16874483988164493],[112,129,67,-0.14694773046030613],[112,129,68,-0.15306363571235934],[112,129,69,-0.13969181720251067],[112,129,70,-0.10304598594513457],[112,129,71,-0.05336398559580024],[112,129,72,-0.043192569075401456],[112,129,73,-0.08378781421899846],[112,129,74,-0.09967519103768677],[112,129,75,-0.07922643400210565],[112,129,76,-0.12496295889655516],[112,129,77,-0.18150264215354728],[112,129,78,-0.19973431319415777],[112,129,79,-0.16268640714982607],[112,130,64,-0.16543542239881934],[112,130,65,-0.18835115518239764],[112,130,66,-0.1699018951512072],[112,130,67,-0.14799565599041548],[112,130,68,-0.15353832021484046],[112,130,69,-0.13955175327643426],[112,130,70,-0.10293828921182847],[112,130,71,-0.05361758139990354],[112,130,72,-0.0435504982577526],[112,130,73,-0.08441280344079227],[112,130,74,-0.10017308636874846],[112,130,75,-0.0791874485587104],[112,130,76,-0.12506298422710097],[112,130,77,-0.1822325279755264],[112,130,78,-0.20046559461149271],[112,130,79,-0.16267577184989213],[112,131,64,-0.16601011422027895],[112,131,65,-0.18920439518082252],[112,131,66,-0.17101061504899992],[112,131,67,-0.14900252263921798],[112,131,68,-0.15396930168541142],[112,131,69,-0.13936825260942304],[112,131,70,-0.10280009433163506],[112,131,71,-0.053863556091965095],[112,131,72,-0.04390466259957035],[112,131,73,-0.08501257690189071],[112,131,74,-0.10063353819998927],[112,131,75,-0.07911934841907776],[112,131,76,-0.12512191071898865],[112,131,77,-0.18290397441106568],[112,131,78,-0.20112834702779897],[112,131,79,-0.1626079769128804],[112,132,64,-0.1665498120803043],[112,132,65,-0.19001096234365347],[112,132,66,-0.17206930792244707],[112,132,67,-0.14996683323154586],[112,132,68,-0.1543558018230867],[112,132,69,-0.13914111228996684],[112,132,70,-0.1026312772970145],[112,132,71,-0.05410173147639063],[112,132,72,-0.04425481320894834],[112,132,73,-0.08558628487394512],[112,132,74,-0.10105560385909267],[112,132,75,-0.07902173006341764],[112,132,76,-0.1251390582733955],[112,132,77,-0.18351567672111163],[112,132,78,-0.20172148664158276],[112,132,79,-0.16248285338615326],[112,133,64,-0.16705393116978812],[112,133,65,-0.19076976508883262],[112,133,66,-0.17307634060524626],[112,133,67,-0.15088713918579336],[112,133,68,-0.154697098908896],[112,133,69,-0.13887019527870273],[112,133,70,-0.10243176210969218],[112,133,71,-0.054331933102786036],[112,133,72,-0.044600695684741065],[112,133,73,-0.08613310807981675],[112,133,74,-0.10143839800346753],[112,133,75,-0.07889423746707598],[112,133,76,-0.12511380779466721],[112,133,77,-0.1840664082946611],[112,133,78,-0.2022440206813747],[112,133,79,-0.16230030792582845],[112,134,64,-0.1675219169700376],[112,134,65,-0.1914797609956246],[112,134,66,-0.1740301418313683],[112,134,67,-0.15176204356565334],[112,134,68,-0.15499252914978157],[112,134,69,-0.13855543040999188],[112,134,70,-0.10220152057732398],[112,134,71,-0.05455399028993467],[112,134,72,-0.04494205041257604],[112,134,73,-0.08665225954827716],[112,134,74,-0.10178109473406037],[112,134,75,-0.07873656298953247],[112,134,76,-0.12504560262059408],[112,134,77,-0.184555023436129],[112,134,78,-0.20269504960948084],[112,134,79,-0.1620603229894932],[112,135,64,-0.16795324611327186],[112,135,65,-0.192139958785017],[112,135,66,-0.17492920555123959],[112,135,67,-0.15259020405278204],[112,135,68,-0.15524148791257303],[112,135,69,-0.13819681224900712],[112,135,70,-0.10194057200149834],[112,135,71,-0.05476773614909069],[112,135,72,-0.04527861288480261],[112,135,73,-0.08714298640986393],[112,135,74,-0.10208292957919145],[112,135,75,-0.07854844815556647],[112,135,76,-0.12493394982334104],[112,135,77,-0.18498045999332294],[112,135,78,-0.20307376912725092],[112,135,79,-0.16176295686189512],[112,136,64,-0.16834742720455564],[112,136,65,-0.19274942022386188],[112,136,66,-0.17577209413994263],[112,136,67,-0.1533703358312958],[112,136,68,-0.15544343084423415],[112,136,69,-0.13779440080437513],[112,136,70,-0.10164898275793277],[112,136,71,-0.05497300760717808],[112,136,72,-0.045610114044069984],[112,136,73,-0.08760457162814393],[112,136,74,-0.10234320134146288],[112,136,75,-0.078329684325237],[112,136,76,-0.12477842137601475],[112,136,77,-0.18534174181719107],[112,136,78,-0.2033794719754152],[112,136,79,-0.1614083435132907],[112,137,64,-0.16870400160340782],[112,137,65,-0.19330726194741107],[112,137,66,-0.17655744148754443],[112,137,67,-0.154101214375206],[112,137,68,-0.1555978748749091],[112,137,69,-0.13734832109690748],[112,137,70,-0.10132686577013016],[112,137,71,-0.05516964543052633],[112,137,72,-0.04593628065017735],[112,137,73,-0.08803633566085375],[112,137,74,-0.10256127380126451],[112,137,75,-0.07808011324972124],[112,137,76,-0.12457865518030294],[112,137,77,-0.18563798104501725],[112,137,78,-0.2036115495236807],[112,137,79,-0.1609966922906601],[112,138,64,-0.16902254416339046],[112,138,65,-0.1938126571950937],[112,138,66,-0.17728395596197394],[112,138,67,-0.15478167813015795],[112,138,68,-0.15570439910066983],[112,138,69,-0.1368587625854818],[112,138,70,-0.10097437987817186],[112,138,71,-0.05535749424976977],[112,138,72,-0.046256835669729754],[112,138,73,-0.08843763804557188],[112,138,74,-0.10273657727086329],[112,138,75,-0.07779962751045533],[112,138,76,-0.12433435595109107],[112,138,77,-0.1858683801992865],[112,138,78,-0.2037694931444427],[112,138,79,-0.16052828744253284],[112,139,64,-0.1693026639280428],[112,139,65,-0.19426483745456438],[112,139,66,-0.1779504232351855],[112,139,67,-0.15541063108109282],[112,139,68,-0.15576264554321875],[112,139,69,-0.13632597845161476],[112,139,70,-0.10059172910469263],[112,139,71,-0.05553640258651677],[112,139,72,-0.04657149868802067],[112,139,73,-0.08880787890477557],[112,139,74,-0.10286860999354099],[112,139,75,-0.07748817083940489],[112,139,76,-0.12404529595441216],[112,139,77,-0.1860322340949858],[112,139,78,-0.20385289536611784],[112,139,79,-0.16000348747867663],[112,140,64,-0.16954400478161763],[112,140,65,-0.19466309400929135],[112,140,66,-0.1785557089637257],[112,140,67,-0.15598704519775125],[112,140,68,-0.15577231978416725],[112,140,69,-0.13575028474474723],[112,140,70,-0.10017916182046514],[112,140,71,-0.055706222882418145],[112,140,72,-0.046879986342508013],[112,140,73,-0.08914650036540388],[112,140,74,-0.10295693938277466],[112,140,75,-0.0771457383187158],[112,140,76,-0.12371131559558236],[112,140,77,-0.18612893154870142],[112,140,78,-0.20386145080230725],[112,140,79,-0.15942272436642524],[112,141,64,-0.16974624605315505],[112,141,65,-0.19500677938518243],[112,141,66,-0.17909876131522331],[112,141,67,-0.15650996275029214],[112,141,68,-0.15573319147192397],[112,141,69,-0.13513205939077652],[112,141,70,-0.09973696981240335],[112,141,71,-0.05586681153123974],[112,141,72,-0.047182012777133214],[112,141,73,-0.08945298788828557],[112,141,74,-0.10300120309698461],[112,141,75,-0.07677237645842279],[112,141,76,-0.12333232385488511],[112,141,77,-0.18615795688350859],[112,141,78,-0.20379495685371254],[112,141,79,-0.1587865025659544],[112,142,64,-0.16990910307250648],[112,142,65,-0.19529530869198458],[112,142,66,-0.17957861333272565],[112,142,67,-0.1569784984876141],[112,142,68,-0.15564509469956275],[112,142,69,-0.13447174106677914],[112,142,70,-0.09926548725710307],[112,142,71,-0.056018028914525425],[112,142,72,-0.047477290116652915],[112,142,73,-0.08972687150306634],[112,142,74,-0.10300110994590544],[112,142,75,-0.076368183151281],[112,142,76,-0.12290829856863206],[112,142,77,-0.18611889122424596],[112,142,78,-0.20365331418040952],[112,142,79,-0.15809539790727825],[112,143,64,-0.170032327677017],[112,143,65,-0.19552816085546612],[112,143,66,-0.17999438512927857],[112,143,67,-0.15739184167137743],[112,143,68,-0.15550792825246365],[112,143,69,-0.1337698279453497],[112,143,70,-0.0987650896034019],[112,143,71,-0.056159739441429095],[112,143,72,-0.04776552896007178],[112,143,73,-0.0899677269445658],[112,143,74,-0.10295644062521594],[112,143,75,-0.07593330750423831],[112,143,76,-0.12243928655397325],[112,143,77,-0.18601141357845083],[112,143,78,-0.20343652694283318],[112,143,79,-0.1573500563122657],[112,144,64,-0.170115708667668],[112,144,65,-0.1957048797366638],[112,144,66,-0.1803452859056221],[112,144,67,-0.15774925795912725],[112,144,68,-0.15532165572490456],[112,144,69,-0.133026876312412],[112,144,70,-0.09823619236773946],[112,144,71,-0.05629181159325629],[112,144,72,-0.04804643889216897],[112,144,73,-0.09017517668679424],[112,144,74,-0.10286704827662492],[112,144,75,-0.07546794954647235],[112,144,76,-0.12192540357632589],[112,144,77,-0.18583530169889678],[112,144,78,-0.20314470281054522],[112,144,79,-0.15655119236544338],[112,145,64,-0.17015907221357368],[112,145,65,-0.19582507513476546],[112,145,66,-0.18063061578437992],[112,145,67,-0.15805009113033763],[112,145,68,-0.1550863055051545],[112,145,69,-0.13224349906273808],[112,145,70,-0.09767924984638549],[112,145,71,-0.05641411797323995],[112,145,72,-0.04831972901204709],[112,145,73,-0.09034889087119394],[112,145,74,-0.10273285887120709],[112,145,75,-0.07497235981433946],[112,145,76,-0.12136683415880734],[112,145,77,-0.18559043272435619],[112,145,78,-0.202778052738581],[112,145,79,-0.15569958773780448],[112,146,64,-0.17016228220382512],[112,146,65,-0.19588842367049047],[112,146,66,-0.18084976745463538],[112,146,67,-0.158293764649649],[112,146,68,-0.15480197062903495],[112,146,69,-0.13142036407785201],[112,146,70,-0.09709475374890217],[112,146,71,-0.056526535362032775],[112,146,72,-0.0485851084775358],[112,146,73,-0.09048858812598068],[112,146,74,-0.102553871414357],[112,146,75,-0.07444683881400986],[112,146,76,-0.12076383123358299],[112,146,77,-0.18527678359590855],[112,146,78,-0.2023368905119065],[112,146,79,-0.15479608946832313],[112,147,64,-0.17012524054577488],[112,147,65,-0.19589466954715215],[112,147,66,-0.1810022276213722],[112,147,67,-0.1584797830620638],[112,147,68,-0.15446880850228317],[112,147,69,-0.13055819249131198],[112,147,70,-0.0964832317574225],[112,147,71,-0.056628944779353804],[112,147,72,-0.04884228706421307],[112,147,73,-0.09059403627383356],[112,147,74,-0.10233015797134648],[112,147,75,-0.07389173636296205],[112,147,76,-0.12011671563554305],[112,147,77,-0.1848944312468355],[112,147,78,-0.20182163205923953],[112,147,79,-0.1538416081082575],[112,148,64,-0.17004788740896357],[112,148,65,-0.1958436251869005],[112,148,66,-0.18108757825479474],[112,148,67,-0.15860773321533256],[112,148,68,-0.1540870404924516],[112,148,69,-0.1296577568467561],[112,148,70,-0.09584524601659351],[112,148,71,-0.0567212315522014],[112,148,72,-0.04909097573774249],[112,148,73,-0.09066505292552508],[112,148,74,-0.10206186351306484],[112,148,75,-0.07330745081194046],[112,148,76,-0.11942587543924969],[112,148,77,-0.18444355256484768],[112,148,78,-0.20123279453821438],[112,148,79,-0.15283711573377914],[112,149,64,-0.1699302014139936],[112,149,65,-0.19573517173997174],[112,149,66,-0.181105497635158],[112,149,67,-0.15867728530529865],[112,149,68,-0.15365695139146388],[112,149,69,-0.12871987915440744],[112,149,70,-0.0951813915592225],[112,149,71,-0.056803285389975436],[112,149,72,-0.04933088723813585],[112,149,73,-0.09070150595744815],[112,149,74,-0.10174920558212099],[112,149,75,-0.07269442814936847],[112,149,76,-0.11869176514060029],[112,149,77,-0.18392442412612314],[112,149,78,-0.20057099519458474],[112,149,79,-0.15178364383283202],[112,150,64,-0.16977219976576025],[112,150,65,-0.19556925946510892],[112,150,66,-0.1810557611893309],[112,150,67,-0.15868819374047527],[112,150,68,-0.15317888875029947],[112,150,69,-0.1277454288520151],[112,150,70,-0.09449229467284782],[112,150,71,-0.05687500046681837],[112,150,72,-0.04956173667451032],[112,150,73,-0.09070331387138805],[112,150,74,-0.10139247378009972],[112,150,75,-0.07205316099060632],[112,150,76,-0.11791490468514318],[112,150,77,-0.1833374217013446],[112,150,78,-0.19983694999884982],[112,150,79,-0.15068228107248827],[112,151,64,-0.16957393833056947],[112,151,65,-0.19534590797966894],[112,151,66,-0.18093824211595416],[112,151,67,-0.1586402978226984],[112,151,68,-0.15265326208769076],[112,151,69,-0.1267353206765258],[112,151,70,-0.09377861121263373],[112,151,71,-0.05693627551141362],[112,151,72,-0.049783242128819544],[112,151,73,-0.0906704460352512],[112,151,74,-0.10099202907735887],[112,151,75,-0.0713841874548384],[112,151,76,-0.11709587834550332],[112,151,77,-0.18268301953467114],[112,151,78,-0.19903147206439975],[112,151,79,-0.14953417095342642],[112,152,64,-0.16933551165676872],[112,152,65,-0.19506520637826438],[112,152,66,-0.18075291179667366],[112,152,67,-0.15853352224122763],[112,152,68,-0.15208054197503593],[112,152,69,-0.12569051245297988],[112,152,70,-0.09304102486610231],[112,152,71,-0.056987013904428466],[112,152,72,-0.04999512526700191],[112,152,73,-0.09060292280386528],[112,152,74,-0.10054830294734846],[112,152,75,-0.07068808993273251],[112,152,76,-0.11623533345082805],[112,152,77,-0.1819617893972735],[112,152,78,-0.1981554698519248],[112,152,79,-0.14834050935845114],[112,153,64,-0.16905705293864579],[112,153,65,-0.19472731321916467],[112,153,66,-0.18049983999159153],[112,153,67,-0.15836787737825778],[112,153,68,-0.15146125900011573],[112,153,69,-0.12461200280738344],[112,153,70,-0.09228024537534833],[112,153,71,-0.0570271237837234],[112,153,72,-0.05019711195592538],[112,153,73,-0.09050081551935424],[112,153,74,-0.10006179632802906],[112,153,75,-0.06996549374839062],[112,153,76,-0.11533397897166359],[112,153,77,-0.1811743994178046],[112,153,78,-0.19720994516551224],[112,153,79,-0.14710254200228118],[112,154,64,-0.16873873392345204],[112,154,65,-0.19433245637802526],[112,154,66,-0.18017919481773234],[112,154,67,-0.15814345942437746],[112,154,68,-0.15079600261254178],[112,154,69,-0.12350082881049136],[112,154,70,-0.09149700672246168],[112,154,71,-0.05705651815737742],[112,154,72,-0.050388932884451156],[112,154,73,-0.09036424639097736],[112,154,74,-0.09953307841353541],[112,154,75,-0.0692170657194516],[112,154,76,-0.11439258396412032],[112,154,77,-0.1803216126928724],[112,154,78,-0.19619599094647752],[112,154,79,-0.14582156179008793],[112,155,64,-0.1683807647615286],[112,155,65,-0.19388093276887802],[112,155,66,-0.17979124250996914],[112,155,67,-0.1578604503030823],[112,155,68,-0.15008541985417578],[112,155,69,-0.12235806355958237],[112,155,70,-0.09069206528393535],[112,155,71,-0.05707511502452023],[112,155,72,-0.05057032418691644],[112,155,73,-0.09019338825473752],[112,155,74,-0.09896278527980816],[112,155,75,-0.06844351261953635],[112,155,76,-0.1134119758776244],[112,155,77,-0.17940428568127748],[112,155,78,-0.19511478887158692],[112,155,79,-0.14449890609248947],[112,156,64,-0.16798339379962168],[112,156,65,-0.19337310793268378],[112,156,66,-0.17933634696454975],[112,156,67,-0.15751911740406643],[112,156,68,-0.14933021397811466],[112,156,69,-0.12118481370548118],[112,156,70,-0.08986619795989698],[112,156,71,-0.05708283750387481],[112,156,72,-0.05074102806726446],[112,156,73,-0.0899884642134349],[112,156,74,-0.09835161834846462],[112,156,75,-0.06764557954755529],[112,156,76,-0.11239303873100406],[112,156,77,-0.17842336638648035],[112,156,78,-0.19396760676292735],[112,156,79,-0.1431359539449279],[112,157,64,-0.1675469073175935],[112,157,65,-0.19280941549410524],[112,157,66,-0.17881496906600575],[112,157,67,-0.15711981312558757],[112,157,68,-0.148531142960111],[112,157,69,-0.11998221693214967],[112,157,70,-0.0890202002839851],[112,157,71,-0.05707961396985189],[112,157,72,-0.050900793422040715],[112,157,73,-0.08974974715825747],[112,157,74,-0.09770034269371942],[112,157,75,-0.06682404820867958],[112,157,76,-0.1113367111620407],[112,157,77,-0.17737989233241194],[112,157,78,-0.19275579581722485],[112,157,79,-0.1417341231795074],[112,158,64,-0.16707162920884816],[112,158,65,-0.19219035648752728],[112,158,66,-0.17822766579891533],[112,158,67,-0.15666297422681366],[112,158,68,-0.14768901790661226],[112,158,69,-0.11875143939627242],[112,158,70,-0.08815488451970194],[112,158,71,-0.05706537819595661],[112,158,72,-0.051049376460432665],[112,158,73,-0.08947755917337875],[112,158,74,-0.09700978519768894],[112,158,75,-0.06597973511207836],[112,158,76,-0.11024398435603315],[112,158,77,-0.17627498833841126],[112,158,78,-0.1914807876629561],[112,158,79,-0.14029486749752967],[112,159,64,-0.16655792060490604],[112,159,65,-0.1915164985537144],[112,159,66,-0.17757508914666217],[112,159,67,-0.1561491209916611],[112,159,68,-0.14680470136388624],[112,159,69,-0.1174936731343164],[112,159,70,-0.08727107774902972],[112,159,71,-0.05704006950518404],[112,159,72,-0.051186541319497965],[112,159,73,-0.08917227082541955],[112,159,74,-0.09628083255991311],[112,159,75,-0.0651134896907763],[112,159,76,-0.10911589985928737],[112,159,77,-0.1751098640997088],[112,159,78,-0.19014409125409867],[112,159,79,-0.13881967349107358],[112,160,64,-0.16600617944466925],[112,160,65,-0.19078847500883722],[112,160,66,-0.17685798477996792],[112,160,67,-0.15557885620619671],[112,160,68,-0.14587910553292707],[112,160,69,-0.11621013344452143],[112,160,70,-0.08636961995901858],[112,160,71,-0.057003632927009835],[112,160,72,-0.05131206067272254],[112,160,73,-0.08883430034001334],[112,160,74,-0.09551442916740098],[112,160,75,-0.06422619234921992],[112,160,76,-0.107953547283773],[112,160,77,-0.17388581158045557],[112,160,78,-0.1887472896098098],[112,160,79,-0.13731005762202028],[112,161,64,-0.16541683998904275],[112,161,65,-0.19000698378798395],[112,161,66,-0.1760771905386814],[112,161,67,-0.15495286395231983],[112,161,68,-0.14491319039514095],[112,161,69,-0.1149020562513369],[112,161,70,-0.08545136213200695],[112,161,71,-0.05695601936049547],[112,161,72,-0.05142571633001542],[112,161,73,-0.08846411266808248],[112,161,74,-0.09471157483197959],[112,161,75,-0.0633187524443877],[112,161,76,-0.10675806190955878],[112,161,77,-0.17260420222693537],[112,161,78,-0.18729203640979578],[112,161,79,-0.13576756316701516],[112,162,64,-0.16479037228167764],[112,162,65,-0.18917278626559597],[112,162,66,-0.1752336347109127],[112,162,67,-0.15427190822097497],[112,162,68,-0.1439079617539826],[112,162,69,-0.11357069545971751],[112,162,70,-0.08451716434498681],[112,162,71,-0.05689718574295352],[112,162,72,-0.051527299827258205],[112,162,73,-0.08806221844480165],[112,162,74,-0.09387332240214259],[112,162,75,-0.06239210620645136],[112,162,76,-0.10553062219189763],[112,162,77,-0.1712664840091083],[112,162,78,-0.18578005245549561],[112,162,79,-0.13419375713683218],[112,163,64,-0.16412728155671386],[112,163,65,-0.18828670595561892],[112,163,66,-0.1743283341142553],[112,163,67,-0.15353683134874369],[112,163,68,-0.14286446919795553],[112,163,69,-0.11221732030665699],[112,163,70,-0.0835678938835153],[112,163,71,-0.05682709522352773],[112,163,72,-0.05161661300350169],[112,163,73,-0.08762917284456276],[112,163,74,-0.09300077525700116],[112,163,75,-0.06144721460518289],[112,163,76,-0.10427244718013062],[112,163,77,-0.1698741782991885],[112,163,78,-0.18421312200757353],[112,163,79,-0.1325902271786086],[112,164,64,-0.16342810759451398],[112,164,65,-0.1873496270945032],[112,164,66,-0.17336239198447828],[112,164,67,-0.15274855228224352],[112,164,68,-0.1417838039905897],[112,164,69,-0.1108432127172566],[112,164,70,-0.08260442337543063],[112,164,71,-0.0567457173409757],[112,164,72,-0.051693468563918994],[112,164,73,-0.08716557433560897],[112,164,74,-0.09209508469032912],[112,164,75,-0.06048506116846826],[112,164,76,-0.10298479385584129],[112,164,77,-0.16842887659647057],[112,164,78,-0.18259308901055318],[112,164,79,-0.1309585784693797],[112,165,64,-0.16269342402648082],[112,165,65,-0.1863624931105092],[112,165,66,-0.1723369956776518],[112,165,67,-0.1519080646752829],[112,165,68,-0.14066709689314996],[112,165,69,-0.10944966467246377],[112,165,70,-0.0816276289494323],[112,165,71,-0.056653028204861705],[112,165,72,-0.05175769062663572],[112,165,73,-0.08667206333833433],[112,165,74,-0.09115744719303437],[112,165,75,-0.05950664975939827],[112,165,76,-0.1016689543978894],[112,165,77,-0.16693223710806027],[112,165,78,-0.18092185321568252],[112,165,79,-0.12930043060924346],[112,166,64,-0.1619238375901486],[112,166,65,-0.18532630498308503],[112,166,66,-0.17125341419228146],[112,166,67,-0.15101643482428762],[112,166,68,-0.13951551592601974],[112,166,69,-0.1080379755955132],[112,166,70,-0.08063838842341563],[112,166,71,-0.05654901067927257],[112,166,72,-0.05180911525154246],[112,166,73,-0.08614932079152969],[112,166,74,-0.09018910164269534],[112,166,75,-0.05851300231852476],[112,166,76,-0.10032625338217352],[112,166,77,-0.16538598119562076],[112,166,78,-0.17920136621337235],[112,166,79,-0.12761741452238734],[112,167,64,-0.1611199873358544],[112,167,65,-0.18424211949640953],[112,167,66,-0.170112995518597],[112,167,67,-0.15007479944802557],[112,167,68,-0.1383302640748162],[112,167,69,-0.10660944976390382],[112,167,70,-0.07963757952723109],[112,167,71,-0.05643365456812885],[112,167,72,-0.05184759094925676],[112,167,73,-0.08559806663119797],[112,167,74,-0.08919132640911764],[112,167,75,-0.05750515657795954],[112,167,76,-0.09895804492413568],[112,167,77,-0.1637918896986462],[112,167,78,-0.17743362738676274],[112,167,79,-0.1259111693740769],[112,168,64,-0.16028254378637533],[112,168,65,-0.1831110473914697],[112,168,66,-0.1689171638226761],[112,168,67,-0.14908436331815825],[112,168,68,-0.1371125769474084],[112,168,69,-0.10516539375354866],[112,168,70,-0.07862607816430495],[112,168,71,-0.05630695680105783],[112,168,72,-0.05187297916838951],[112,168,73,-0.08501905818679788],[112,168,74,-0.08816543638508369],[112,168,75,-0.056484163754033354],[112,168,76,-0.0975657097721514],[112,168,77,-0.16215179914511552],[112,168,78,-0.1756206797981043],[112,168,79,-0.12418333951151708],[112,169,64,-0.15941220805103393],[112,169,65,-0.18193425142134778],[112,169,66,-0.16766741647364405],[112,169,67,-0.14804639674765124],[112,169,68,-0.13586372038813213],[112,169,69,-0.10370711392154737],[112,169,70,-0.07760475671633421],[112,169,71,-0.05616892161875026],[112,169,72,-0.05188515475932155],[112,169,73,-0.08441308850006748],[112,169,74,-0.08711277995171955],[112,169,75,-0.05545108622529232],[112,169,76,-0.09615065236008703],[112,169,77,-0.1604675978607467],[112,169,78,-0.1737646060198003],[112,169,79,-0.12243557143633475],[112,170,64,-0.1585097108958384],[112,170,65,-0.18071294431463422],[112,170,66,-0.16636532092264],[112,170,67,-0.1469622329444999],[112,170,68,-0.1345849880555085],[112,170,69,-0.10223591393372214],[112,170,70,-0.07657448239496738],[112,170,71,-0.056019560756638956],[112,170,72,-0.05188400641272418],[112,170,73,-0.08378098457180054],[112,170,74,-0.08603473588805852],[112,170,75,-0.05440699520257887],[112,170,76,-0.09471429782734125],[112,170,77,-0.1587412219882942],[112,170,78,-0.1718675239219734],[112,170,79,-0.12066951081615505],[112,171,64,-0.15757581177134503],[112,171,65,-0.17944838665217888],[112,171,66,-0.16501251144278023],[112,171,67,-0.14583326523872422],[112,171,68,-0.13327769896990663],[112,171,69,-0.10075309234288243],[112,171,70,-0.07553611564416711],[112,171,71,-0.055858893625692504],[112,171,72,-0.051869437071104224],[112,171,73,-0.08312360554219392],[112,171,74,-0.08493271023456428],[112,171,75,-0.053352968397980684],[112,171,76,-0.09325808901480455],[112,171,77,-0.15697465142865336],[112,171,78,-0.16993158242852405],[112,171,79,-0.11888679954256035],[112,172,64,-0.15661129779998825],[112,172,65,-0.17814188466260003],[112,172,66,-0.16361068573973753],[112,172,67,-0.1446609441909458],[112,172,68,-0.13194319503755125],[112,172,69,-0.09925994022342446],[112,172,70,-0.0744905085966155],[112,172,71,-0.05568694748905322],[112,172,72,-0.051841364311705405],[112,172,73,-0.08244184081057361],[112,172,74,-0.08380813312046942],[112,172,75,-0.05229008769934795],[112,172,76,-0.09178348344513851],[112,172,77,-0.15516990571567907],[112,172,78,-0.1679589572535819],[112,172,79,-0.11708907284238865],[112,173,64,-0.15561698272471458],[112,173,65,-0.1767947879422084],[112,173,66,-0.16216160144299488],[112,173,67,-0.1434467745912753],[112,173,68,-0.1305828385573196],[112,173,69,-0.09775773886760389],[112,173,70,-0.07343850358724283],[112,173,71,-0.055503757633183874],[112,173,72,-0.05179972069913406],[112,173,73,-0.08173660810048453],[112,173,74,-0.08266245556486153],[112,173,75,-0.051219436857026006],[112,173,76,-0.09029195029578924],[112,173,77,-0.15332903983681057],[112,173,78,-0.16595184663022103],[112,173,79,-0.11527795644905027],[112,174,64,-0.15459370582084073],[112,174,65,-0.17540848710522694],[112,174,66,-0.16066707248823217],[112,174,67,-0.14219231235761637],[112,174,68,-0.12919800971678194],[112,174,69,-0.0962477575485203],[112,174,70,-0.07238093172667386],[112,174,71,-0.05530936753216428],[112,174,72,-0.051744454106158765],[112,174,73,-0.08100885147630826],[112,174,74,-0.08149714626151945],[112,174,75,-0.05014209918938785],[112,174,76,-0.08878496737313661],[112,174,77,-0.15145414001173832],[112,174,78,-0.16391246704324466],[112,174,79,-0.11345506384024083],[112,175,64,-0.15354233077312254],[112,175,65,-0.17398441137036239],[112,175,66,-0.1591289654016205],[112,175,67,-0.1408991613427844],[112,175,68,-0.12779010408386626],[112,175,69,-0.09473125135447312],[112,175,70,-0.07131861153704079],[112,175,71,-0.05510382900372618],[112,175,72,-0.051675528001195216],[112,175,73,-0.08025953931770545],[112,175,74,-0.08031368835748832],[112,175,75,-0.049059155313607994],[112,175,76,-0.08726401809607766],[112,175,77,-0.1495473194413891],[112,175,78,-0.16184304897767407],[112,175,79,-0.11162199354805577],[112,176,64,-0.15246374452007652],[112,176,65,-0.1725240260899551],[112,176,66,-0.15754919549713223],[112,176,67,-0.13956897006016902],[112,176,68,-0.1263605301005136],[112,176,69,-0.09320945909903901],[112,176,70,-0.07025234765230669],[112,176,71,-0.05488720235555609],[112,176,72,-0.051592921701021976],[112,176,73,-0.07948966225826576],[112,176,74,-0.07911357623534593],[112,176,75,-0.04797168090799351],[112,176,76,-0.08573058849726933],[112,176,77,-0.1476107140395591],[112,176,78,-0.15974583269442064],[112,176,79,-0.10978032654715697],[112,177,64,-0.15135885606769012],[112,177,65,-0.17102883022811802],[112,177,66,-0.15592972299827018],[112,177,67,-0.13820342833794189],[112,177,68,-0.12491070658461395],[112,177,69,-0.0916836013108472],[112,177,70,-0.06918292958492385],[112,177,71,-0.0546595565204129],[112,177,72,-0.051496630587408075],[112,177,73,-0.0787002310948965],[112,177,74,-0.07789831230908574],[112,177,75,-0.04688074451205346],[112,177,76,-0.08418616425014501],[112,177,77,-0.1456464781595384],[112,177,78,-0.1576230640444297],[112,177,79,-0.10793162372628244],[112,178,64,-0.15022859527469137],[112,178,65,-0.1695003537943849],[112,178,66,-0.1542725490958277],[112,178,67,-0.13680426391202494],[112,178,68,-0.12344206024641849],[112,178,69,-0.09015487830666011],[112,178,70,-0.06811113056031493],[112,178,71,-0.054420969178546705],[112,178,72,-0.051386666286368704],[112,178,73,-0.07789227467450877],[112,178,74,-0.07666940384341779],[112,178,75,-0.04578740537028962],[112,178,76,-0.08263222772964307],[112,178,77,-0.1436567803279832],[112,178,78,-0.15547699033231538],[112,178,79,-0.10607742344798533],[112,179,64,-0.14907391161160163],[112,179,65,-0.16794015523951597],[112,179,66,-0.152579711953532],[112,179,67,-0.1353732389682714],[112,179,68,-0.12195602322552501],[112,179,69,-0.08862446835098284],[112,179,70,-0.06703770642032056],[112,179,71,-0.054171526865881434],[112,179,72,-0.05126305680884094],[112,179,73,-0.07706683776459869],[112,179,74,-0.0754283598061411],[112,179,75,-0.044692711325486294],[112,179,76,-0.0810702551144254],[112,179,77,-0.14164379899823235],[112,179,78,-0.15330985624021895],[112,179,79,-0.10421923920105201],[112,180,64,-0.14789577289586692],[112,180,65,-0.16634981882021302],[112,180,66,-0.15085328267357043],[112,180,67,-0.13391214664445444],[112,180,68,-0.12045403065440083],[112,180,69,-0.08709352590503984],[112,180,70,-0.06596339459645173],[112,180,71,-0.053911325066458765],[112,180,72,-0.05112584665171566],[112,180,73,-0.07622497891439223],[112,180,74,-0.07417668776312283],[112,180,75,-0.043597696767090514],[112,180,76,-0.07950171353815925],[112,180,77,-0.13960971833511807],[112,180,78,-0.1511238998223291],[112,180,79,-0.1023585573496748],[112,181,64,-0.14669516400538732],[112,181,65,-0.16473095193958026],[112,181,66,-0.14909536123415001],[112,181,67,-0.13242280750283383],[112,181,68,-0.11893751825429226],[112,181,69,-0.08556317996758542],[112,181,70,-0.06488891315344227],[112,181,71,-0.05364046828758817],[112,181,72,-0.05097509685819272],[112,181,73,-0.0753677683131727],[112,181,74,-0.07291589082518318],[112,181,75,-0.04250338064001771],[112,181,76,-0.07792805829721569],[112,181,77,-0.13755672404316865],[112,181,78,-0.14892134858014294],[112,181,79,-0.10049683498299788],[112,182,64,-0.14547308557279717],[112,182,65,-0.16308518247019368],[112,182,66,-0.14730807241129446],[112,182,67,-0.1309070659841169],[112,182,68,-0.11740791996915553],[112,182,69,-0.0840345325095598],[112,182,70,-0.06381495990324121],[112,182,71,-0.05335907011616429],[112,182,72,-0.050810885036546634],[112,182,73,-0.0744962856523967],[112,182,74,-0.07164746465594918],[112,182,75,-0.04141076451894402],[112,182,76,-0.0763507301218447],[112,182,77,-0.13548699924984053],[112,182,78,-0.14670441562812883],[112,182,79,-0.09863549786818536],[112,183,64,-0.144230552662911],[112,183,65,-0.16141415606673318],[112,183,66,-0.145493561697188],[112,183,67,-0.12936678685376485],[112,183,68,-0.11586666564313887],[112,183,69,-0.08250865700427465],[112,183,70,-0.06274221158931015],[112,183,71,-0.05306725325464724],[112,183,72,-0.05063330533650898],[112,183,73,-0.07361161799818527],[112,183,74,-0.07037289454952185],[112,183,75,-0.040320830752925224],[112,183,76,-0.07477115251767323],[112,183,77,-0.13340272045523366],[112,183,78,-0.14447529595910477],[112,183,79,-0.09677593850977335],[112,184,64,-0.1429685934357491],[112,184,65,-0.15971953347510762],[112,184,66,-0.1436539912273523],[112,184,67,-0.1278038516515924],[112,184,68,-0.11431517874691276],[112,184,69,-0.080986597054365],[112,184,70,-0.061671323140730115],[112,184,71,-0.052765149535181535],[112,184,72,-0.05044246838253871],[112,184,73,-0.07271485768066863],[112,184,74,-0.06909365258646856],[112,184,75,-0.039234540684854886],[112,184,76,-0.07319072918402744],[112,184,77,-0.13130605355940758],[112,184,78,-0.14223616281815096],[112,184,79,-0.09491951431756221],[112,185,64,-0.14168824779758274],[112,185,65,-0.15800298784500794],[112,185,66,-0.14179153572891165],[112,185,67,-0.12622015515559007],[112,185,68,-0.11275487415792826],[112,185,69,-0.07946936511632798],[112,185,70,-0.06060292699529842],[112,185,71,-0.05245289991036487],[112,185,72,-0.050238501163375346],[112,185,73,-0.07180710020658747],[112,185,74,-0.06781119487634071],[112,185,75,-0.038152832949967526],[112,185,76,-0.07161084151525036],[112,185,77,-0.12919914997808427],[112,185,78,-0.13998916419341334],[112,185,79,-0.09306754588484538],[112,186,64,-0.14039056604247227],[112,186,65,-0.15626620205283123],[112,186,66,-0.1399083785021825],[112,186,67,-0.1246176018709251],[112,186,68,-0.11118715599952385],[112,186,69,-0.07795794132313365],[112,186,70,-0.05953763249053765],[112,186,71,-0.0521306544192201],[112,186,72,-0.0500215468773802],[112,186,73,-0.07088944220144987],[112,186,74,-0.06652695889460265],[112,186,75,-0.0370766218573269],[112,186,76,-0.07003284619090638],[112,186,77,-0.12708414285721792],[112,186,78,-0.13773641943170298],[112,186,79,-0.09122131537835698],[112,187,64,-0.13907660748676787],[112,187,65,-0.15451086604184336],[112,187,66,-0.1380067074476815],[112,187,67,-0.12299810255494957],[112,187,68,-0.10961341554351252],[112,187,69,-0.07645327240493091],[112,187,70,-0.05847602532118617],[112,187,71,-0.05179857212694542],[112,187,72,-0.049791764733273486],[112,187,73,-0.06996297938739965],[112,187,74,-0.06524236092145784],[112,187,75,-0.03600679585786257],[112,187,76,-0.0684580728603418],[112,187,77,-0.12496314339646655],[112,187,78,-0.13548001598624218],[112,187,79,-0.0893820650408093],[112,188,64,-0.13774743909902776],[112,188,65,-0.15273867418638665],[112,188,66,-0.13608871115050583],[112,188,67,-0.1213635707889526],[112,188,68,-0.10803502918064735],[112,188,69,-0.07495627070749265],[112,188,70,-0.057418667061452766],[112,188,71,-0.051456821037039864],[112,188,72,-0.049549329705960515],[112,188,73,-0.06902880460277715],[112,188,74,-0.06395879358966104],[112,188,75,-0.034944216102187425],[112,188,76,-0.06688782192670659],[112,188,77,-0.12283823729117592],[112,188,78,-0.13322200630336897],[112,188,79,-0.08755099580643017],[112,189,64,-0.13640413412785465],[112,189,65,-0.1509513226868989],[112,189,66,-0.1341565750339172],[112,189,67,-0.11971591960730758],[112,189,68,-0.10645335646316373],[112,189,69,-0.07346781330770691],[112,189,70,-0.05636609475008095],[112,189,71,-0.05110557797449281],[112,189,72,-0.04929443224729191],[112,189,73,-0.06808800586922521],[112,189,74,-0.06267762354803459],[112,189,75,-0.03388971509112384],[112,189,76,-0.06532336243519832],[112,189,77,-0.12071148130209237],[112,189,78,-0.13096440485452088],[112,189,79,-0.08572926602950828],[112,190,64,-0.13504777073009608],[112,190,65,-0.14915050700236032],[112,190,66,-0.1322124775936886],[112,190,67,-0.11805705819442724],[112,190,68,-0.10486973822325454],[112,190,69,-0.07198874122496644],[112,190,70,-0.05531882053593583],[112,190,71,-0.05074502843873947],[112,190,72,-0.04902727795168211],[112,190,73,-0.0671416645119693],[112,190,74,-0.06140018924693717],[112,190,75,-0.032844095421461536],[112,190,76,-0.0637659300698159],[112,190,77,-0.11858489996146523],[112,190,78,-0.12870918531918416],[112,190,79,-0.08391799032542888],[112,191,64,-0.13367943060184737],[112,191,65,-0.14733791932668808],[112,191,66,-0.13025858672456636],[112,191,67,-0.11638888865979391],[112,191,68,-0.10328549477111863],[112,191,69,-0.07051985872698767],[112,191,70,-0.05427733138159477],[112,191,71,-0.050375366425131345],[112,191,72,-0.048748087176595845],[112,191,73,-0.06619085333867804],[112,191,74,-0.0601277988514838],[112,191,75,-0.031808128629124584],[112,191,76,-0.06221672526252812],[112,191,77,-0.11646048242373483],[112,191,78,-0.12645827792394612],[112,191,79,-0.0821182385232647],[112,192,64,-0.1323001976146981],[112,192,65,-0.14551524611547412],[112,192,66,-0.12829705614992626],[112,192,67,-0.11471330290109183],[112,192,68,-0.10170192417592498],[112,192,69,-0.06906193272821504],[112,192,70,-0.05324208882217892],[112,192,71,-0.04999679421377253],[112,192,72,-0.0484570946180733],[112,192,73,-0.06523663488213832],[112,192,74,-0.05886172828789601],[112,192,75,-0.030782554131586193],[112,192,76,-0.06067691141834039],[112,192,77,-0.11434017946847794],[112,192,78,-0.12421356694221466],[112,192,79,-0.0803310347285602],[112,193,64,-0.13091115645960252],[112,193,65,-0.1436841656692857],[112,193,66,-0.12633002196538817],[112,193,67,-0.11303217956522287],[112,193,68,-0.10012030063276145],[112,193,69,-0.06761569227861779],[112,193,70,-0.05221352877641902],[112,193,71,-0.04960952212460018],[112,193,72,-0.04815454884151962],[112,193,73,-0.06428005971169123],[112,193,74,-0.057603219427841273],[112,193,75,-0.029768078270961094],[112,193,76,-0.059147613259273674],[112,193,77,-0.11222590066270834],[112,193,78,-0.12197688835854],[112,193,79,-0.0785573564944714],[112,194,64,-0.1295133913007408],[112,194,65,-0.1418463457795956],[112,194,66,-0.12435959930681997],[112,194,67,-0.11134738111668323],[112,194,68,-0.09854187291830738],[112,194,69,-0.06618182814031354],[112,194,70,-0.05119206140668797],[112,194,71,-0.04921376823762896],[112,194,72,-0.04784071176807782],[112,194,73,-0.06332216481813785],[112,194,74,-0.05635347841516498],[112,194,75,-0.02876537345886543],[112,194,76,-0.05762991528985595],[112,194,77,-0.11011951168909588],[112,194,78,-0.11975002770091057],[112,194,79,-0.0767981340990462],[112,195,64,-0.1281079844416646],[112,195,65,-0.14000344144319904],[112,195,66,-0.12238787915280412],[112,195,67,-0.10966075102251209],[112,195,68,-0.09696786293772745],[112,195,69,-0.06476099244917063],[112,195,70,-0.050178071024581036],[112,195,71,-0.048809758077406784],[112,195,72,-0.04751585811703708],[112,195,73,-0.062363972076566035],[112,195,74,-0.05511367413890926],[112,195,75,-0.02777507742372994],[112,195,76,-0.056124860386226404],[112,195,77,-0.10802283184603682],[112,195,78,-0.11753471804372927],[112,195,79,-0.07505424992594142],[112,196,64,-0.1266960155354677],[112,196,65,-0.1381570924615353],[112,196,66,-0.12041692375849139],[112,196,67,-0.10797410932358692],[112,196,68,-0.0953994636593853],[112,196,69,-0.06335379908364475],[112,196,70,-0.04917191691559233],[112,196,71,-0.048397724475692266],[112,196,72,-0.04718027508418685],[112,196,73,-0.06140648579903913],[112,196,74,-0.05388493543020953],[112,196,75,-0.026797792591657665],[112,196,76,-0.0546334498015998],[112,196,77,-0.10593763213952537],[112,196,78,-0.11533263790198815],[112,196,79,-0.073326538690965],[112,197,64,-0.12527862318013386],[112,197,65,-0.13630889922153178],[112,197,66,-0.11844858569334576],[112,197,67,-0.10628904588965231],[112,197,68,-0.09383775617674173],[112,197,69,-0.061960897998652884],[112,197,70,-0.04817403768399424],[112,197,71,-0.04797793476189451],[112,197,72,-0.04683429650350483],[112,197,73,-0.060450576070038516],[112,197,74,-0.052668183624890945],[112,197,75,-0.02583408932282919],[112,197,76,-0.05315679166825488],[112,197,77,-0.10386568009742113],[112,197,78,-0.11314537739963108],[112,197,79,-0.07161587595080622],[112,198,64,-0.12385706354698313],[112,198,65,-0.1344604018270671],[112,198,66,-0.11648434471519489],[112,198,67,-0.10460673697669752],[112,198,68,-0.09228364273737324],[112,198,69,-0.06058304725609132],[112,198,70,-0.047185051456412455],[112,198,71,-0.047550727943065384],[112,198,72,-0.04647834423734564],[112,198,73,-0.05949688200711465],[112,198,74,-0.051463990851612317],[112,198,75,-0.024884509770734597],[112,198,76,-0.051696221835099296],[112,198,77,-0.10180876982887524],[112,198,78,-0.11097441329590192],[112,198,79,-0.06992326451321117],[112,199,64,-0.12243260080976585],[112,199,65,-0.1326131184058085],[112,199,66,-0.11452562115790038],[112,199,67,-0.10292830823727132],[112,199,68,-0.09073799849035208],[112,199,69,-0.05922098579916073],[112,199,70,-0.046205576853610826],[112,199,71,-0.047116478001776665],[112,199,72,-0.04611287631211965],[112,199,73,-0.05854602354658371],[112,199,74,-0.05027288314004159],[112,199,75,-0.02394956160608987],[112,199,76,-0.0502530243831854],[112,199,77,-0.09976862676848164],[112,199,78,-0.10882117038820917],[112,199,79,-0.06824968287710874],[112,200,64,-0.12100649162751415],[112,200,65,-0.13076854817604325],[112,200,66,-0.1125738137146263],[112,200,67,-0.10125487865266788],[112,200,68,-0.08920168878922474],[112,200,69,-0.05787541644248296],[112,200,70,-0.04523620908517305],[112,200,71,-0.046675586454730834],[112,200,72,-0.045738377614903035],[112,200,73,-0.05759862596438078],[112,200,74,-0.0490953767654447],[112,200,75,-0.023029716687282924],[112,200,76,-0.04882839756316328],[112,200,77,-0.09774689617757429],[112,200,78,-0.10668702756648843],[112,200,79,-0.06659606443809889],[112,201,64,-0.1195799836837578],[112,201,65,-0.1289281695129292],[112,201,66,-0.11063029696368462],[112,201,67,-0.09958755802278847],[112,201,68,-0.08767556743360823],[112,201,69,-0.05654700545922059],[112,201,70,-0.04427751929710638],[112,201,71,-0.04622848015259685],[112,201,72,-0.045355357634562304],[112,201,73,-0.05665531766106008],[112,201,74,-0.047931976298884245],[112,201,75,-0.022125410630801545],[112,201,76,-0.04742345486092477],[112,201,77,-0.0957451432910912],[112,201,78,-0.10457331629566942],[112,201,79,-0.06496329647292995],[112,202,64,-0.11815431428321106],[112,202,65,-0.12709343811205356],[112,202,66,-0.1086964190138231],[112,202,67,-0.09792744454275233],[112,202,68,-0.08616047498377925],[112,202,69,-0.055236382269368486],[112,202,70,-0.043330054006802524],[112,202,71,-0.045775609093424215],[112,202,72,-0.04496434822121483],[112,202,73,-0.0557167280251351],[112,202,74,-0.04678317277278873],[112,202,75,-0.021237042498277223],[112,202,76,-0.046039226226092786],[112,202,77,-0.09376485363799647],[112,202,78,-0.10248131925712671],[112,202,79,-0.06335221927434698],[112,203,64,-0.11673058509316805],[112,203,65,-0.1252656502821139],[112,203,66,-0.10677338255637718],[112,203,67,-0.09627551575214817],[112,203,68,-0.08465714203601069],[112,203,69,-0.05394407782269869],[112,203,70,-0.04239428575437883],[112,203,71,-0.04531739137563338],[112,203,72,-0.04456584875062033],[112,203,73,-0.054783419954563546],[112,203,74,-0.045649386845535204],[112,203,75,-0.02036494974592294],[112,203,76,-0.044676604373152067],[112,203,77,-0.09180731921893387],[112,203,78,-0.10041214293066138],[112,203,79,-0.0617635470832167],[112,204,64,-0.11530895565131802],[112,204,65,-0.12344506779917293],[112,204,66,-0.1048614918350768],[112,204,67,-0.09463193853420218],[112,204,68,-0.08316557520662224],[112,204,69,-0.05267013329549369],[112,204,70,-0.04147030028399737],[112,204,71,-0.044853865811350424],[112,204,72,-0.04415997965019191],[112,204,73,-0.05385546572005071],[112,204,74,-0.044530616340148044],[112,204,75,-0.019509254986739027],[112,204,76,-0.04333599910704962],[112,204,77,-0.08987290659164335],[112,204,78,-0.0983659065365452],[112,204,79,-0.06019736916657433],[112,205,64,-0.1138892051169239],[112,205,65,-0.12163153842390692],[112,205,66,-0.10296069975893021],[112,205,67,-0.09299656616743364],[112,205,68,-0.081685501672469],[112,205,69,-0.05141439828556253],[112,205,70,-0.04055803091991101],[112,205,71,-0.044384926250206125],[112,205,72,-0.04374671372024688],[112,205,73,-0.052932749783220955],[112,205,74,-0.04342670326709783],[112,205,75,-0.01866999952060302],[112,205,76,-0.042017615690043614],[112,205,77,-0.08796160227529022],[112,205,78,-0.09634233972588839],[112,205,79,-0.058653532022306616],[112,206,64,-0.11247117863629988],[112,206,65,-0.11982498338886811],[112,206,66,-0.10107103082976805],[112,206,67,-0.09136932428089392],[112,206,68,-0.08021671341358624],[112,206,69,-0.05017675511592018],[112,206,70,-0.03965743650845528],[112,206,71,-0.043910510414838295],[112,206,72,-0.04332606382675694],[112,206,73,-0.05201520461589837],[112,206,74,-0.042337534120067064],[112,206,75,-0.01784723605247246],[112,206,76,-0.040721659125415345],[112,206,77,-0.08607342997372722],[112,206,78,-0.09434124124904002],[112,206,79,-0.057131925805160924],[112,207,64,-0.11105478625124446],[112,207,65,-0.11802539531270854],[112,207,66,-0.09919257796846405],[112,207,67,-0.08975020793962038],[112,207,68,-0.07875906454573567],[112,207,69,-0.04895711652586674],[112,207,70,-0.038768499694583326],[112,207,71,-0.043430598856158235],[112,207,72,-0.04289808211222682],[112,207,73,-0.051102808477020895],[112,207,74,-0.04126303663832996],[112,207,75,-0.017041026477824676],[112,207,76,-0.039448332791798144],[112,207,77,-0.08420844859373054],[112,207,78,-0.09236247553020163],[112,207,79,-0.05563248111839243],[112,208,64,-0.10963999942892814],[112,208,65,-0.11623283355605415],[112,208,66,-0.09732549716902704],[112,208,67,-0.0881392767417137],[112,208,68,-0.07731246691213138],[112,208,69,-0.047755422301046555],[112,208,70,-0.03789122434128619],[112,208,71,-0.04294521288418543],[112,208,72,-0.042462858168166744],[112,208,73,-0.05019558199842568],[112,208,74,-0.04020317565195268],[112,208,75,-0.0162514393051272],[112,208,76,-0.038197836098000836],[112,208,77,-0.08236674815301005],[112,208,78,-0.09040596695719488],[112,208,79,-0.054155164449333174],[112,209,64,-0.10822684763038526],[112,209,65,-0.11444741965860622],[112,209,66,-0.09547000227091645],[112,209,67,-0.08653665001727479],[112,209,68,-0.07587688579580157],[112,209,69,-0.04657163605184627],[112,209,70,-0.037025633053306174],[112,209,71,-0.042454412501451225],[112,209,72,-0.04202051719137827],[112,209,73,-0.04929358485868355],[112,209,74,-0.039157949093678306],[112,209,75,-0.015478547214748086],[112,209,76,-0.03697036225779377],[112,209,77,-0.08054844582952644],[112,209,78,-0.08847169436350301],[112,209,79,-0.05269997379384685],[112,210,64,-0.10681541491764278],[112,210,65,-0.1126693328583302],[112,210,66,-0.09362635985083737],[112,210,67,-0.08494250212863903],[112,210,68,-0.07445233574969115],[112,210,69,-0.04540574213833158],[112,210,70,-0.03617176480450499],[112,210,71,-0.04195829433792405],[112,210,72,-0.04157121812446344],[112,210,73,-0.048396912543477784],[112,210,74,-0.038127384174328816],[112,210,75,-0.014722424754662216],[112,210,76,-0.035766096190359725],[112,210,77,-0.07875368215566458],[112,210,78,-0.08655968570051782],[112,210,79,-0.051266934468029934],[112,211,64,-0.10540583660021594],[112,211,65,-0.11089880569433909],[112,211,66,-0.09179488423609931],[112,211,67,-0.0833570578723662],[112,211,68,-0.07303887654256612],[112,211,69,-0.04425774274022562],[112,211,70,-0.035329672668494384],[112,211,71,-0.0414569895872877],[112,211,72,-0.041115151781735464],[112,211,73,-0.04750569319186218],[112,211,74,-0.03711153371935044],[112,211,75,-0.013983146173332144],[112,211,76,-0.03458521255134835],[112,211,77,-0.07698261736064504],[112,211,78,-0.0846700128987247],[112,211,79,-0.049856095106014284],[112,212,64,-0.10399829592226248],[112,212,65,-0.10913611969565086],[112,212,66,-0.08997593264221611],[112,212,67,-0.08178058798422248],[112,212,68,-0.07163660921950177],[112,212,69,-0.04312765507053471],[112,212,70,-0.034499421652223944],[112,212,71,-0.04095066194513431],[112,212,72,-0.040652538962351],[112,212,73,-0.04662008452836757],[112,212,74,-0.036110472664681974],[112,212,75,-0.013260783389991733],[112,212,76,-0.033427873898613],[112,212,77,-0.07523542786424055],[112,212,78,-0.08280278691709476],[112,212,79,-0.048467523842967056],[112,213,64,-0.10259302079220721],[112,213,65,-0.10738160115851676],[112,213,66,-0.0881699004379658],[112,213,67,-0.08021340474911681],[112,213,68,-0.07024567227642446],[112,213,69,-0.042015508731554733],[112,213,70,-0.03368108663231479],[112,213,71,-0.04043950555030792],[112,213,72,-0.04018362855306274],[112,213,73,-0.04574027088149542],[112,213,74,-0.035124294710610626],[112,213,75,-0.012555404102422323],[112,213,76,-0.0322942289959293],[112,213,77,-0.07351230292458259],[112,213,78,-0.08095815298044885],[112,213,79,-0.047101304682610645],[112,214,64,-0.10119028055714471],[112,214,65,-0.10563561701548427],[112,214,66,-0.08637721654157789],[112,214,67,-0.07865585771858702],[112,214,68,-0.06886623794879122],[112,214,69,-0.04092134321208856],[112,214,70,-0.0328747503940103],[112,214,71,-0.03992374293127644],[112,214,72,-0.0397086956235535],[112,214,73,-0.044866460289655144],[112,214,74,-0.03415310913270034],[112,214,75,-0.011867070032167687],[112,214,76,-0.03118441125726398],[112,214,77,-0.07181344144256716],[112,214,78,-0.07913628600497538],[112,214,79,-0.04575753404875999],[112,215,64,-0.09979038282467903],[112,215,65,-0.10389857079965271],[112,215,66,-0.08459833895196932],[112,215,67,-0.07710832953885671],[112,215,68,-0.06749850861490969],[112,215,69,-0.039845205524654724],[112,215,70,-0.032080501772565016],[112,215,71,-0.03940362295990052],[112,215,72,-0.039228039517729324],[112,215,73,-0.04399888169594498],[112,215,74,-0.03319703774910758],[112,215,75,-0.011195835306855187],[112,215,76,-0.030098537333348156],[112,215,77,-0.07013904892495666],[112,215,78,-0.07733738621230203],[112,215,79,-0.04443631752036976],[112,216,64,-0.09839367033518637],[112,216,65,-0.10217089870784483],[112,216,66,-0.08283375041917218],[112,216,67,-0.07557123189288752],[112,216,68,-0.0661427133148162],[112,216,69,-0.03878714798146079],[112,216,70,-0.03129843389686654],[112,216,71,-0.0388794188154101],[112,216,72,-0.03874198194471425],[112,216,73,-0.04313778223346495],[112,216,74,-0.03225621204378195],[112,216,75,-0.010541744979041298],[112,216,76,-0.02903670584158933],[112,216,77,-0.06848933460792433],[112,216,78,-0.07556167493270735],[112,216,79,-0.04313776674957079],[112,217,64,-0.09700051788779436],[112,217,65,-0.10045306576662884],[112,217,66,-0.08108395425822226],[112,217,67,-0.07404500156013907],[112,217,68,-0.0647991043859441],[112,217,69,-0.037747226107853644],[112,217,70,-0.030528642535040777],[112,217,71,-0.0383514259618331],[112,217,72,-0.03825086507366355],[112,217,73,-0.04228342460311429],[112,217,74,-0.03133077044518803],[112,217,75,-0.00990483368074287],[112,217,76,-0.02799899623966173],[112,217,77,-0.06686450874241047],[112,217,78,-0.0738093905981786],[112,217,79,-0.041861996562122444],[112,218,64,-0.09561132932352963],[112,218,65,-0.09874556210518545],[112,218,66,-0.07934947031075444],[112,218,67,-0.07253009659789866],[112,218,68,-0.06346795421700605],[112,218,69,-0.036725496691817794],[112,218,70,-0.029771224541645047],[112,218,71,-0.0378199601423764],[112,218,72,-0.037755049636701205],[112,218,73,-0.04143608454591011],[112,218,74,-0.03042085576015563],[112,218,75,-0.009285124412458823],[112,218,76,-0.026985467842377018],[112,218,77,-0.06526478004220489],[112,218,78,-0.07208078492597965],[112,218,79,-0.040609122239510936],[112,219,64,-0.09422653456927842],[112,219,65,-0.09704889933909358],[112,219,66,-0.07763083105853053],[112,219,67,-0.0710269926481757],[112,219,68,-0.06214955212170094],[112,219,69,-0.035722015967997005],[112,219,70,-0.029026276405965543],[112,219,71,-0.03728535539455274],[112,219,72,-0.037254913044523746],[112,219,73,-0.040596048411974506],[112,219,74,-0.029526612762458382],[112,219,75,-0.008682627465196161],[112,219,76,-0.025996158980808617],[112,219,77,-0.06369035329528265],[112,219,78,-0.07037611929337036],[112,219,79,-0.039379256981770215],[112,220,64,-0.09284658674627157],[112,220,65,-0.09536360706903863],[112,220,66,-0.07592857789292906],[112,220,67,-0.06953617937411768],[112,220,68,-0.060844201333888855],[112,220,69,-0.034736837934501136],[112,220,70,-0.028293892900740632],[112,220,71,-0.03674796209000046],[112,220,72,-0.03675084751931426],[112,220,73,-0.03976361082831135],[112,220,74,-0.02864818593557571],[112,220,75,-0.008097339473629957],[112,220,76,-0.02503108630194879],[112,220,77,-0.06214142713842851],[112,220,78,-0.06869566130393646],[112,220,79,-0.03817250954981386],[112,221,64,-0.09147195934689625],[112,221,65,-0.09369022949841511],[112,221,66,-0.07424325754428764],[112,221,67,-0.06805815702991054],[112,221,68,-0.05955221612596458],[112,221,69,-0.0337700128006506],[112,221,70,-0.02757416583052123],[112,221,71,-0.036208145003114825],[112,221,72,-0.036243258249726296],[112,221,73,-0.038939072467485174],[112,221,74,-0.02778571736898315],[112,221,75,-0.00752924259823509],[112,221,76,-0.02409024420663569],[112,221,77,-0.06061819199481181],[112,221,78,-0.0670396815458623],[112,221,79,-0.03698898208585007],[112,222,64,-0.09010314348360973],[112,222,65,-0.09202932217361097],[112,222,66,-0.07257541867465565],[112,222,67,-0.06659343316793573],[112,222,68,-0.05827391905206221],[112,222,69,-0.03282158556355534],[112,222,70,-0.026867182878649625],[112,222,71,-0.03566628141265465],[112,222,72,-0.03573256157270007],[112,222,73,-0.03812273791918005],[112,222,74,-0.0269393448070713],[112,222,75,-0.006978303833826021],[112,222,76,-0.02317360442284678],[112,222,77,-0.05912082817366173],[112,222,78,-0.0654084505421814],[112,222,79,-0.035828768110090795],[112,223,64,-0.08874064521369081],[112,223,65,-0.09038144885057882],[112,223,66,-0.07092560863720547],[112,223,67,-0.06514251948677784],[112,223,68,-0.05700963831765369],[112,223,69,-0.03189159471123356],[112,223,70,-0.02617302655165066],[112,223,71,-0.03512275924050927],[112,223,72,-0.03521918318684494],[112,223,73,-0.03731491366646433],[112,223,74,-0.026109199849550905],[112,223,75,-0.0064444744415953405],[112,223,76,-0.02228111571092301],[112,223,77,-0.05764950413076214],[112,223,78,-0.06380223589276293],[112,223,79,-0.034691950691642714],[112,224,64,-0.08738498294351722],[112,224,65,-0.08874717849109824],[112,224,66,-0.06929437040520393],[112,224,67,-0.06370592882345984],[112,224,68,-0.05575970527699801],[112,224,69,-0.030980071049796228],[112,224,70,-0.025491773219665344],[112,224,71,-0.034577975231822475],[112,224,72,-0.034703556402093334],[112,224,73,-0.036515906168432415],[112,224,74,-0.02529540630196405],[112,224,75,-0.005927689501432544],[112,224,76,-0.021412703696815128],[112,224,77,-0.05620437488807572],[112,224,78,-0.06222129960750358],[112,224,79,-0.033578600791152984],[112,225,64,-0.08603668491590695],[112,225,65,-0.08712708239181931],[112,225,66,-0.06768223967298422],[112,225,67,-0.06228417229293401],[112,225,68,-0.054524452059675536],[112,225,69,-0.030087036651955692],[112,225,70,-0.02482349225130774],[112,225,71,-0.03403233318057002],[112,225,72,-0.034186120430192694],[112,225,73,-0.035726020050636825],[112,225,74,-0.024498078674582445],[112,225,75,-0.00542786758092427],[112,225,76,-0.020568270828923214],[112,225,77,-0.05478558061032407],[112,225,78,-0.060665895629792375],[112,225,79,-0.03248877577237457],[112,226,64,-0.08469628678390538],[112,226,65,-0.08552173144887577],[112,226,66,-0.06608974213091832],[112,226,67,-0.0608777565775309],[112,226,68,-0.053304209327246145],[112,226,69,-0.029212503923917908],[112,226,70,-0.024168245241128837],[112,226,71,-0.03348624220456902],[112,226,72,-0.033667318720442006],[112,226,73,-0.034945556404457276],[112,226,74,-0.02371732082765454],[112,226,75,-0.004944910517118972],[112,226,76,-0.019747696453685373],[112,226,77,-0.05339324533593998],[112,226,78,-0.059136267548943126],[112,226,79,-0.0314225180794526],[112,227,64,-0.08336432927425345],[112,227,65,-0.08393169356054198],[112,227,66,-0.06451739091592457],[112,227,67,-0.05948718136869892],[112,227,68,-0.05209930416084132],[112,227,69,-0.028356474787515764],[112,227,70,-0.023526085327690134],[112,227,71,-0.03294011507379449],[112,227,72,-0.033147597344946364],[112,227,73,-0.03417481119631558],[112,227,74,-0.02295322476066685],[112,227,75,-0.004478703306859807],[112,227,76,-0.018950837004698993],[112,227,77,-0.05202747585941826],[112,227,78,-0.057632646499916014],[112,227,79,-0.030379854076390468],[112,228,64,-0.08204135594352284],[112,228,65,-0.0823575311700118],[112,228,66,-0.06296568423850799],[112,228,67,-0.058112936962927075],[112,228,68,-0.05091005808020116],[112,228,69,-0.027518939974204543],[112,228,70,-0.022897056600016744],[112,228,71,-0.03239436659565295],[112,228,72,-0.03262740343740029],[112,228,73,-0.033414073787296425],[112,228,74,-0.022205869542904457],[112,228,75,-0.004029114101163466],[112,228,76,-0.018177526299778632],[112,228,77,-0.05068836076166488],[112,228,78,-0.05615524924820113],[112,228,79,-0.029360793044747327],[112,229,64,-0.08072791102966549],[112,229,65,-0.08079979894998707],[112,229,66,-0.061435103186808775],[112,229,67,-0.05675550201330013],[112,229,68,-0.049736785194377325],[112,229,69,-0.0266998784273376],[112,229,70,-0.022281193590002274],[112,229,71,-0.03184941206065196],[112,229,72,-0.03210718368916852],[112,229,73,-0.03266362556341367],[112,229,74,-0.02147532038225279],[112,229,75,-0.003595994298853895],[112,229,76,-0.0174275759400458],[112,229,77,-0.049375969584567206],[112,229,78,-0.054704276457312594],[112,229,79,-0.02836532633525605],[112,230,64,-0.07942453740150046],[112,230,65,-0.07925904163038937],[112,230,66,-0.05992610970761265],[112,230,67,-0.055415341437689856],[112,230,68,-0.04857979048402584],[112,230,69,-0.025899256808965977],[112,230,70,-0.021678520848177223],[112,230,71,-0.03130566575170236],[112,230,72,-0.03158738290620434],[112,230,73,-0.031923738676467604],[112,230,74,-0.02076162782887522],[112,230,75,-0.0031791787344433342],[112,230,76,-0.016700775804903565],[112,230,77,-0.048090352145677064],[112,230,78,-0.05327991113594589],[112,230,79,-0.027393426668727107],[112,231,64,-0.0781317746083402],[112,231,65,-0.07773579197005528],[112,231,66,-0.05843914476371476],[112,231,67,-0.054092904484087274],[112,231,68,-0.047439368214873164],[112,231,69,-0.025117029107205834],[112,231,70,-0.021089052600044997],[112,231,71,-0.03076353951998059],[112,231,72,-0.03106844263000499],[112,231,73,-0.031194674895051934],[112,231,74,-0.020064827110028167],[112,231,75,-0.002778485955002297],[112,231,76,-0.015996894636504028],[112,231,77,-0.04683153798854062],[112,231,78,-0.051882317261394424],[112,231,79,-0.026445047581235344],[112,232,64,-0.07685015703167185],[112,232,65,-0.07623056887285022],[112,232,66,-0.05697462666646584],[112,232,67,-0.052788622953074155],[112,232,68,-0.04631580048158575],[112,232,69,-0.024353136340034092],[112,232,70,-0.02051279248001548],[112,232,71,-0.03022344143000588],[112,232,72,-0.030550799825506368],[112,232,73,-0.030476684564932407],[112,232,74,-0.01938493759195017],[112,232,75,-0.0023937185805581163],[112,232,76,-0.015315680707117413],[112,232,77,-0.045599535963885794],[112,232,78,-0.05051163857539688],[112,232,79,-0.02552012300825875],[112,233,64,-0.07558021214052124],[112,233,65,-0.07474387564822721],[112,233,66,-0.05553294958182055],[112,233,67,-0.05150290957697001],[112,233,68,-0.04520935588096925],[112,233,69,-0.023607506351257537],[112,233,70,-0.019949733339845517],[112,233,71,-0.029685774476308272],[112,233,72,-0.030034885638518492],[112,233,73,-0.029770005677700887],[112,233,74,-0.018721962364484226],[112,233,75,-0.002024663742435776],[112,233,76,-0.014656862562715358],[112,233,77,-0.04439433393663588],[112,233,78,-0.049167997548214215],[112,233,79,-0.024618567002177245],[112,234,64,-0.07432245885178171],[112,234,65,-0.07327619841579561],[112,234,66,-0.054114482207643644],[112,234,67,-0.05023615655466222],[112,234,68,-0.0441202883130517],[112,234,69,-0.022880053694235077],[112,234,70,-0.019399857128323063],[112,234,71,-0.029150935373718143],[112,234,72,-0.029521124224929834],[112,234,73,-0.029074863046230998],[112,234,74,-0.018075887943761717],[112,234,75,-0.0016710935937786571],[112,234,76,-0.014020149835942502],[112,234,77,-0.043215898613423766],[112,234,78,-0.04785149450630552],[112,234,79,-0.023740273577227484],[112,235,64,-0.07307740599645875],[112,235,65,-0.0718280046530238],[112,235,66,-0.05271956661948735],[112,235,67,-0.04898873424061678],[112,235,68,-0.043048835908244557],[112,235,69,-0.022170679598800543],[112,235,70,-0.018863134838799436],[112,235,71,-0.02861931342298447],[112,235,72,-0.02900993165357071],[112,235,73,-0.028391467585131353],[112,235,74,-0.01744668408800645],[112,235,75,-0.0013327658863823634],[112,235,76,-0.013405234121587839],[112,235,77,-0.042064175485047865],[112,235,78,-0.04656220691858992],[112,235,79,-0.022885116675756247],[112,236,64,-0.07184555089247815],[112,236,65,-0.07039974188481053],[112,236,66,-0.051348517281597235],[112,236,67,-0.04776098998612639],[112,236,68,-0.041995220078490526],[112,236,69,-0.021479272016782146],[112,236,70,-0.018339526521104422],[112,236,71,-0.028091289453120918],[112,236,72,-0.02850171488429254],[112,236,73,-0.027720015694089765],[112,236,74,-0.01683430372129518],[112,236,75,-0.0010094246079313434],[112,236,76,-0.012811789907687377],[112,236,77,-0.040939088878153986],[112,236,78,-0.04530018883596643],[112,236,79,-0.022052950249432],[112,237,64,-0.07062737802434005],[112,237,65,-0.06899183651319744],[112,237,66,-0.050001620219358195],[112,237,67,-0.04655324713032334],[112,237,68,-0.04095964468992137],[112,237,69,-0.02080570574138476],[112,237,70,-0.01782898135424437],[112,237,71,-0.027567234841515097],[112,237,72,-0.027996870822441983],[112,237,73,-0.027060688741662828],[112,237,74,-0.01623868295985637],[112,237,75,-7.008006736481783E-4],[112,237,76,-0.01223947555536463],[112,237,77,-0.03984054211021099],[112,237,78,-0.044065470478386624],[112,237,79,-0.021243608448841992],[112,238,64,-0.06942335782956519],[112,238,65,-0.06760469278509734],[112,238,66,-0.04867913234894342],[112,238,67,-0.04536580413803611],[112,238,68,-0.039942295354244386],[112,238,69,-0.02014984259565387],[112,238,70,-0.017331437776215496],[112,238,71,-0.027047510612495607],[112,238,72,-0.027495785450548815],[112,238,73,-0.026413652646762265],[112,238,74,-0.015659741235288866],[112,238,75,-4.0661266635225673E-4],[112,238,76,-0.011687934320575612],[112,238,77,-0.03876841774171822],[112,238,78,-0.042858057963477886],[112,238,79,-0.02045690591474545],[112,239,64,-0.06823394559157453],[112,239,65,-0.06623869189553795],[112,239,66,-0.04738128095950992],[112,239,67,-0.04419893388114825],[112,239,68,-0.038943338835793956],[112,239,69,-0.019511531685224733],[112,239,70,-0.016846823667233207],[112,239,71,-0.026532466614741623],[112,239,72,-0.026998833037722634],[112,239,73,-0.02577905755484007],[112,239,74,-0.015097381508946088],[112,239,75,-1.2656761897293048E-4],[112,239,76,-0.011156795411045228],[112,239,77,-0.03772257791950067],[112,239,78,-0.041677933170464185],[112,239,79,-0.01969263816415631],[112,240,64,-0.06705958043828897],[112,240,65,-0.06489419122351948],[112,240,66,-0.04610826334283859],[112,240,67,-0.043052883059658216],[112,240,68,-0.03796292257085476],[112,240,69,-0.018890609710505612],[112,240,70,-0.016375056582606167],[112,240,71,-0.02602244077756086],[112,240,72,-0.026506375426881015],[112,240,73,-0.025157037605481148],[112,240,74,-0.014551490571556082],[112,240,75,1.3963816642990177E-4],[112,240,76,-0.010645675071765443],[112,240,77,-0.03670286480483204],[112,240,78,-0.04052505373284877],[112,240,79,-0.018950582064294286],[112,241,64,-0.06590068444540809],[112,241,65,-0.06357152369722047],[112,241,66,-0.04486024656494712],[112,241,67,-0.041927871758254756],[112,241,68,-0.037001174295603706],[112,241,69,-0.018286901333455605],[112,241,70,-0.015916044031466865],[112,241,71,-0.025517758445731814],[112,241,72,-0.026018761399586667],[112,241,73,-0.024547710787874637],[112,241,74,-0.014021939422050685],[112,241,75,3.9231826899929447E-4],[112,241,76,-0.01015417769258515],[112,241,77,-0.035709101080081865],[112,241,78,-0.03939935315311606],[112,241,79,-0.01823049638739089],[112,242,64,-0.06475766184304661],[112,242,65,-0.062270997284976086],[112,242,66,-0.043637367373870146],[112,242,67,-0.04082409313385969],[112,242,68,-0.03605820177877313],[112,242,69,-0.017700219594153396],[112,242,70,-0.015469683797587858],[112,242,71,-0.02501873179231613],[112,242,72,-0.025536326117972935],[112,242,73,-0.02395117888043875],[112,242,74,-0.013508583719512522],[112,242,75,6.317952745104513E-4],[112,242,76,-0.009681896931631536],[112,242,77,-0.034741090527588434],[112,242,78,-0.03830074103254403],[112,242,79,-0.017532122439322926],[112,243,64,-0.06363089832407491],[112,243,65,-0.060992894608108604],[112,243,66,-0.04243973223746979],[112,243,67,-0.03974171322923102],[112,243,68,-0.03513409265488634],[112,243,69,-0.01713036637237302],[112,243,70,-0.015035864298501499],[112,243,71,-0.02452565930851401],[112,243,72,-0.025059390642891394],[112,243,73,-0.023367527470657425],[112,243,74,-0.01301126430208779],[112,243,75,8.583998815301329E-4],[112,243,76,-0.00922841684847474],[112,243,77,-0.03379861867443384],[112,243,78,-0.03722910340904878],[112,243,79,-0.016855184755028313],[112,244,64,-0.06252076045221874],[112,244,65,-0.059737472671398124],[112,244,66,-0.04126741750485923],[112,244,67,-0.03868087090740386],[112,244,68,-0.03422891435370557],[112,244,69,-0.016577132889442736],[112,244,70,-0.014614464979170407],[112,244,71,-0.02403882536933887],[112,244,72,-0.024588261527108614],[112,244,73,-0.022796826051012617],[112,244,74,-0.012529807766691691],[112,244,75,0.0010724699937878239],[112,244,76,-0.008793313041189228],[112,244,77,-0.032881453496838485],[112,244,78,-0.036184303195863646],[112,244,79,-0.016199391853690463],[112,245,64,-0.06142759516772572],[112,245,65,-0.058504962706736434],[112,245,66,-0.0401204696848047],[112,245,67,-0.0376416779014832],[112,245,68,-0.03334271412135768],[112,245,69,-0.016040300245757717],[112,245,70,-0.014205356736526462],[112,245,71,-0.023558499873637673],[112,245,72,-0.024123230482125217],[112,245,73,-0.02223912818678216],[112,245,74,-0.012064027103378373],[112,245,75,0.0012743498040371493],[112,245,76,-0.008376153781736758],[112,245,77,-0.031989346177973874],[112,245,78,-0.03516618071379978],[112,245,79,-0.015564437046768884],[112,246,64,-0.06035172938810792],[112,246,65,-0.05729557012523683],[112,246,66,-0.03899890583424241],[112,246,67,-0.036624218974035595],[112,246,68,-0.032475519128422066],[112,246,69,-0.015519639989392079],[112,246,70,-0.013808402371227388],[112,246,71,-0.023084937956682105],[112,246,72,-0.02366457411687566],[112,246,73,-0.02169447175131506],[112,246,74,-0.011613722378258922],[112,246,75,0.001464388874517985],[112,246,76,-0.007976501144345085],[112,246,77,-0.031122031913052944],[112,246,78,-0.03417455430975771],[112,246,79,-0.01494999929201862],[112,247,64,-0.059293469701252835],[112,247,65,-0.0561094745728797],[112,247,66,-0.037902714049900366],[112,247,67,-0.03562855218012286],[112,247,68,-0.03162733666013557],[112,247,69,-0.015014914711378976],[112,247,70,-0.013423457063079522],[112,247,71,-0.022618379773338835],[112,247,72,-0.023212553746350662],[112,247,73,-0.021162879224333485],[112,247,74,-0.011178681458952965],[112,247,75,0.0016429412188868591],[112,247,76,-0.007593912121862305],[112,247,77,-0.030279230755685105],[112,247,78,-0.03320922105416647],[112,247,79,-0.014355744086788632],[112,248,64,-0.05825310214794],[112,248,65,-0.05494683008456237],[112,248,66,-0.03683185405586568],[112,248,67,-0.03465470922782567],[112,248,68,-0.030798154383737963],[112,248,69,-0.014525878663337625],[112,248,70,-0.01305036886664206],[112,248,71,-0.022159050349572086],[112,248,72,-0.022767415267917736],[112,248,73,-0.020644358048713098],[112,248,74,-0.010758680776636253],[112,248,75,0.0018103643902703246],[112,248,76,-0.00722793972535185],[112,248,77,-0.029460648499595815],[112,248,78,-0.03226995751002376],[112,248,79,-0.013781324394018288],[112,249,64,-0.05723089209062148],[112,249,65,-0.05380776533129371],[112,249,66,-0.03578625787988227],[112,249,67,-0.033702695929989195],[112,249,68,-0.02998794068792404],[112,249,69,-0.014052278393296503],[112,249,70,-0.012688979223663273],[112,249,71,-0.021707159499853912],[112,249,72,-0.02232938910293635],[112,249,73,-0.020138901041184345],[112,249,74,-0.010353486118908831],[112,249,75,0.0019670185798103287],[112,249,76,-0.006878134062539795],[112,249,77,-0.02866597758999571],[112,249,78,-0.03135652056629514],[112,249,79,-0.01322638159456144],[112,250,64,-0.0562270841651085],[112,250,65,-0.05269238395511318],[112,250,66,-0.03476583061107672],[112,250,67,-0.032772492740779056],[112,250,68,-0.029196645089269228],[112,250,69,-0.013593853395683366],[112,250,70,-0.012339123489085557],[112,250,71,-0.021262901807845652],[112,250,72,-0.02189869020104784],[112,250,73,-0.01964648685235286],[112,250,74,-0.009962853447835937],[112,250,75,0.002113265729833308],[112,250,76,-0.006544043391019369],[112,250,77,-0.02789489805902547],[112,250,78,-0.030468648328479467],[112,250,79,-0.012690546459639903],[112,251,64,-0.05524190231163259],[112,251,65,-0.051600764986215554],[112,251,66,-0.03377045123180674],[112,251,67,-0.031864055370572644],[112,251,68,-0.028424198700471442],[112,251,69,-0.013150336771630336],[112,251,70,-0.01200063146748845],[112,251,71,-0.020826456667544513],[112,251,72,-0.02147551810434508],[112,251,73,-0.019167080471443467],[112,251,74,-0.009586529737693675],[112,251,75,0.0022494686654906345],[112,251,76,-0.006225215142460299],[112,251,77,-0.02714707847990342],[112,251,78,-0.029606061059270265],[112,251,79,-0.012173440137459702],[112,252,64,-0.05427554988162311],[112,252,65,-0.05053296333670248],[112,252,66,-0.032799973516355586],[112,252,67,-0.030977315472678228],[112,252,68,-0.027670514755246924],[112,252,69,-0.012721455895928798],[112,252,70,-0.011673327956991707],[112,252,71,-0.020397988381966877],[112,252,72,-0.021060057068505004],[112,252,73,-0.018700633771225047],[112,252,74,-0.009224253827171913],[112,252,75,0.00237599024841232],[112,252,76,-0.005921196914418439],[112,252,77,-0.02642217693462171],[112,252,78,-0.02876846216239633],[112,252,79,-0.011674675148284309],[112,253,64,-0.05332820981638359],[112,253,65,-0.04948901036531346],[112,253,66,-0.031854226989233084],[112,253,67,-0.03011218139534886],[112,253,68,-0.02693548918471282],[112,253,69,-0.012306933087138597],[112,253,70,-0.011357033297765556],[112,253,71,-0.019977646316290735],[112,253,72,-0.020652476237812235],[112,253,73,-0.01824708608860006],[112,253,74,-0.00887575728098231],[112,253,75,0.0024931925556424383],[112,253,76,-0.005631537426662239],[112,253,77,-0.02571984199023945],[112,253,78,-0.02795553920287321],[112,253,79,-0.011193856382502455],[112,254,64,-0.05240004489373935],[112,254,65,-0.04846891450746207],[112,254,66,-0.030933017935926385],[112,254,67,-0.02926853899257973],[112,254,68,-0.026219001240121893],[112,254,69,-0.011906486277547396],[112,254,70,-0.011051563922446637],[112,254,71,-0.019565565102274553],[112,254,72,-0.020252929870896972],[112,254,73,-0.017806364836417274],[112,254,74,-0.008540765256056418],[112,254,75,0.0026014360868227785],[112,254,76,-0.005355787439270541],[112,254,77,-0.025039713679053926],[112,254,78,-0.027166964957087408],[112,254,79,-0.010730582096505875],[112,255,64,-0.05149119803865783],[112,255,65,-0.04747266196492783],[112,255,66,-0.03003613045907646],[112,255,67,-0.02844625248724563],[112,255,68,-0.025520914156886055],[112,255,69,-0.011519829679892275],[112,255,70,-0.010756732905935162],[112,255,71,-0.01916186489071045],[112,255,72,-0.01986155761394907],[112,255,73,-0.017378386142178043],[112,255,74,-0.008218997367789272],[112,255,75,0.002701079002271076],[112,255,76,-0.005093500630106998],[112,255,77,-0.02438142447818923],[112,255,78,-0.026402398486367766],[112,255,79,-0.010284444901503998],[112,256,64,-0.0506017926937442],[112,256,65,-0.046500217449557714],[112,256,66,-0.029163327573186622],[112,256,67,-0.0276451653802051],[112,256,68,-0.024841075854888817],[112,256,69,-0.01114667444794469],[112,256,70,-0.010472350512193725],[112,256,71,-0.01876665164858089],[112,256,72,-0.019478484818078068],[112,256,73,-0.016963055509393202],[112,256,74,-0.007910168552024798],[112,256,75,0.0027924763943160775],[112,256,76,-0.004844234429591582],[112,256,77,-0.023744600284376652],[112,256,78,-0.02566148622791311],[112,256,79,-0.00985503274068552],[112,257,64,-0.04973193324546754],[112,257,65,-0.045551524975380515],[112,257,66,-0.028314352331130287],[112,257,67,-0.0268651013990975],[112,257,68,-0.02417931967017678],[112,257,69,-0.010786729328261054],[112,257,70,-0.010198224735831315],[112,257,71,-0.01838001749755101],[112,257,72,-0.019103822897453222],[112,257,73,-0.016560268497479155],[112,257,74,-0.007613989918755961],[112,257,75,0.0028759795939498154],[112,257,76,-0.004607550811008407],[112,257,77,-0.023128861379952743],[112,257,78,-0.024943863097195505],[112,257,79,-0.009441929850447742],[112,258,64,-0.04888170550195229],[112,258,65,-0.04462650869362836],[112,258,66,-0.02748892897594802],[112,258,67,-0.026105865480720938],[112,258,68,-0.02353546511326055],[112,258,69,-0.010439701300635285],[112,258,70,-0.009934161836446976],[112,258,71,-0.018002041090421233],[112,258,72,-0.018737669724846678],[112,258,73,-0.0161699114162384],[112,258,74,-0.007330169593812267],[112,258,75,0.0029519355145398],[112,258,76,-0.004383017034926377],[112,258,77,-0.02253382338638516],[112,258,78,-0.02424915359624785],[112,258,79,-0.00904471770175374],[112,259,64,-0.04805117721813523],[112,259,65,-0.04372507376523223],[112,259,66,-0.026686764111618345],[112,259,67,-0.02536724478101768],[112,259,68,-0.022909318649368245],[112,259,69,-0.010105296204979911],[112,259,70,-0.009679966863857968],[112,259,71,-0.017632788022142066],[112,259,72,-0.01838011006117941],[112,259,73,-0.015791862031106017],[112,259,74,-0.007058413545074252],[112,259,75,0.0030206860340709126],[112,259,76,-0.00417020634659215],[112,259,77,-0.02195909820187816],[112,259,78,-0.023576972922504432],[112,259,79,-0.008662975917978884],[112,260,64,-0.047240398664091625],[112,260,65,-0.04284710726546771],[112,260,66,-0.02590754788672185],[112,260,67,-0.024649009706870516],[112,260,68,-0.022300674496141547],[112,260,69,-0.009783219352569601],[112,260,70,-0.009435444172506883],[112,260,71,-0.01727231127200951],[112,260,72,-0.018031216015684883],[112,260,73,-0.015425990275513411],[112,260,74,-0.00679842639004994],[112,260,75,0.003082567417099346],[112,260,76,-0.003968698625447917],[112,260,77,-0.021404294919873845],[112,260,78,-0.022926928073158298],[112,260,79,-0.008296283165934391],[112,261,64,-0.04644940323236577],[112,261,65,-0.041992479115576846],[112,261,66,-0.025150955185198928],[112,261,67,-0.02395091496414113],[112,261,68,-0.021709315434452172],[112,261,69,-0.009473176119814505],[112,261,70,-0.00920039792353183],[112,261,71,-0.016920651673704393],[112,261,72,-0.01769104753334785],[112,261,73,-0.015072158966910712],[112,261,74,-0.006549912181956172],[112,261,75,0.0031379097773052557],[112,261,76,-0.003778080986226224],[112,261,77,-0.02086902072555019],[112,261,78,-0.022298618940318662],[112,261,79,-0.007944218017098863],[112,262,64,-0.0456782080801611],[112,262,65,-0.041161043036315556],[112,262,66,-0.024416646818645006],[112,262,67,-0.023272700616574212],[112,262,68,-0.021135013628168695],[112,262,69,-0.009174872522911716],[112,262,70,-0.008974632573131355],[112,262,71,-0.01657783840987098],[112,262,72,-0.017359652906306564],[112,262,73,-0.014730224523158673],[112,262,74,-0.006312575171722725],[112,262,75,0.0031870365812844497],[112,262,76,-0.003597948331314591],[112,262,77,-0.02035288176765318],[112,262,78,-0.021691639392542074],[112,262,79,-0.007606359776391119],[112,263,64,-0.04492681480229218],[112,263,65,-0.040352637518537675],[112,263,66,-0.02370427071487737],[112,263,67,-0.02261409315043226],[112,263,68,-0.020577531448897415],[112,263,69,-0.008888015771931396],[112,263,70,-0.008757953346022914],[112,263,71,-0.016243889527991325],[112,263,72,-0.017037069305964967],[112,263,73,-0.01440003767619206],[112,263,74,-0.0060861205436296174],[112,263,75,0.0032302641939596275],[112,263,76,-0.0034279038543375173],[112,263,77,-0.01985548400326343],[112,263,78,-0.021105578338625374],[112,263,79,-0.007282289276139023],[112,264,64,-0.04419521013088169],[112,264,65,-0.03956708680611608],[112,264,66,-0.02301346309781745],[112,264,67,-0.021974806539990954],[112,264,68,-0.020036622301936126],[112,264,69,-0.008612314803108092],[112,264,70,-0.008550166692971666],[112,264,71,-0.01591881247440457],[112,264,72,-0.016723323332650412],[112,264,73,-0.014081444180067003],[112,264,74,-0.005870255122586573],[112,264,75,0.0032679014657365163],[112,264,76,-0.0032675594951474766],[112,264,77,-0.01937643401336146],[112,264,78,-0.02054002076988202],[112,264,79,-0.006971589633227318],[112,265,64,-0.043483366657844864],[112,265,65,-0.03880420188666405],[112,265,66,-0.022343849654012912],[112,265,67,-0.0213545433092626],[112,265,68,-0.019512031449863472],[112,265,69,-0.008347480788278879],[112,265,70,-0.008351080731503844],[112,265,71,-0.015602604643391091],[112,265,72,-0.016418431579722097],[112,265,73,-0.013774285510689347],[112,265,74,-0.0056646880513285995],[112,265,75,0.003300249361316798],[112,265,76,-0.0031165363466129797],[112,265,77,-0.018915339787281178],[112,265,78,-0.01999454877741937],[112,265,79,-0.006673846967693814],[112,266,64,-0.042791243576291486],[112,266,65,-0.03806378148571811],[112,266,66,-0.021695046681440285],[112,266,67,-0.02075299558559325],[112,266,68,-0.01900349683040827],[112,266,69,-0.008093227620602658],[112,266,70,-0.008160505669073658],[112,266,71,-0.015295253938342237],[112,266,72,-0.01612240120913006],[112,266,73,-0.013478399554718759],[112,266,74,-0.0054691314360712446],[112,266,75,0.0033276006298670236],[112,266,76,-0.0029744650137902644],[112,266,77,-0.018471811474381115],[112,266,78,-0.01946874254125324],[112,266,79,-0.006388651081342505],[112,267,64,-0.042118787437093026],[112,267,65,-0.03734561306025474],[112,267,66,-0.02106666221654834],[112,267,67,-0.020169846141062486],[112,267,68,-0.018510749865469647],[112,267,69,-0.00784927237588265],[112,267,70,-0.007978254208110958],[112,267,71,-0.014996739342161414],[112,267,72,-0.015835230535545832],[112,267,73,-0.013193621285360614],[112,267,74,-0.005283300959445663],[112,267,75,0.0033502395160313185],[112,267,76,-0.0028409859262511715],[112,267,77,-0.01804546210149666],[112,267,78,-0.01896218128841724],[112,267,79,-0.006115596095238162],[112,268,64,-0.0414659329169513],[112,268,65,-0.03664947378760694],[112,268,66,-0.0204582971358026],[112,268,67,-0.019604769417884447],[112,268,68,-0.01803351625836767],[112,268,69,-0.007615335748971593],[112,268,70,-0.00780414193249956],[112,268,71,-0.014707031494144056],[112,268,72,-0.015556909616283025],[112,268,73,-0.012919783422938137],[112,268,74,-0.0051069164597682395],[112,268,75,0.003368441511110936],[112,268,76,-0.002715749604482953],[112,268,77,-0.017635908254939207],[112,268,78,-0.018474444217515255],[112,268,79,-0.005854281045205849],[112,269,64,-0.04083260359442734],[112,269,65,-0.03597513154605608],[112,269,66,-0.019869546228305314],[112,269,67,-0.019057432534293636],[112,269,68,-0.017571516776629863],[112,269,69,-0.007391142464902744],[112,269,70,-0.0076379876751694565],[112,269,71,-0.014426093270711465],[112,269,72,-0.015287420844345468],[112,269,73,-0.012656717078332751],[112,269,74,-0.004939702475935825],[112,269,75,0.0033824731435713505],[112,269,76,-0.0025984168814105904],[112,269,77,-0.01724277072600826],[112,269,78,-0.018005111387462348],[112,269,79,-0.0056043104347169624],[112,270,64,-0.04021871273052468],[112,270,65,-0.035322345883602536],[112,270,66,-0.019299999236382735],[112,270,67,-0.018527496267692335],[112,270,68,-0.01712446801785131],[112,270,69,-0.007176421664551478],[112,270,70,-0.007479613866620471],[112,270,71,-0.014153880367518891],[112,270,72,-0.015026739542081445],[112,270,73,-0.012404252377585277],[112,270,74,-0.004781388757476808],[112,270,75,0.0033925918078789893],[112,270,76,-0.002488659080220377],[112,270,77,-0.01686567511918393],[112,270,78,-0.01755376456845862],[112,270,79,-0.005365294744800623],[112,271,64,-0.03962416405053656],[112,271,65,-0.03469086897161512],[112,271,66,-0.018749241861323287],[112,271,67,-0.018014616012108606],[112,271,68,-0.0166920831563786],[112,271,69,-0.00697090726476302],[112,271,70,-0.007328846864293949],[112,271,71,-0.0138903418805774],[112,271,72,-0.014774834553030728],[112,271,73,-0.012162219066114296],[112,271,74,-0.004631710739476694],[112,271,75,0.00339904563056256],[112,271,76,-0.0023861581497417557],[112,271,77,-0.016504252422325665],[112,271,78,-0.017119988053500883],[112,271,79,-0.00513685090083037],[112,272,64,-0.03904885252401397],[112,272,65,-0.03408044654028614],[112,272,66,-0.018216856731754494],[112,272,67,-0.017518442707298475],[112,272,68,-0.016274072668791387],[112,272,69,-0.006774338293021838],[112,272,70,-0.007185517262826531],[112,272,71,-0.013635420884181643],[112,272,72,-0.014531668829698368],[112,272,73,-0.011930447091198546],[112,272,74,-0.004490409982302006],[112,272,75,0.0034020733722735096],[112,272,76,-0.0022906067587299865],[112,272,77,-0.01615813953837246],[112,272,78,-0.01670336942901036],[112,272,79,-0.004918602696259025],[112,273,64,-0.038492665139837894],[112,273,65,-0.03349081879301672],[112,273,66,-0.0177024243324268],[112,273,67,-0.017038623737098677],[112,273,68,-0.015870145036372848],[112,273,69,-0.006586459196852336],[112,273,70,-0.007049460185304903],[112,273,71,-0.013389055003568172],[112,273,72,-0.014297200015107148],[112,273,73,-0.011708767161525819],[112,273,74,-0.0043572345762127405],[112,273,75,0.0034019043645440545],[112,273,76,-0.0022017083504316986],[112,273,77,-0.015826979778172517],[112,273,78,-0.01630350030339646],[112,273,79,-0.004710181173557337],[112,274,64,-0.03795548167353861],[112,274,65,-0.03292172129708509],[112,274,66,-0.01720552389146082],[112,274,67,-0.01657480379490786],[112,274,68,-0.01548000742297239],[112,274,69,-0.006407020128264706],[112,274,70,-0.0069205155557436745],[112,274,71,-0.013151176980383681],[112,274,72,-0.014071381016128488],[112,274,73,-0.011497011282780722],[112,274,74,-0.0042319395111196445],[112,274,75,0.0033987584798580335],[112,274,76,-0.002119177158867663],[112,274,77,-0.01551042331421185],[112,274,78,-0.015919976992619315],[112,274,79,-0.004511224962802038],[112,275,64,-0.03743717544413385],[112,275,65,-0.032372885848134005],[112,275,66,-0.0167257342243691],[112,275,67,-0.016126625714430107],[112,275,68,-0.01510336632686795],[112,275,69,-0.006235777203647362],[112,275,70,-0.00679852835307176],[112,275,71,-0.012921715229177002],[112,275,72,-0.01385416056671067],[112,275,73,-0.01129501326838126],[112,275,74,-0.0041142870118764776],[112,275,75,0.0033928461336108612],[112,275,76,-0.002042738188261632],[112,275,77,-0.015208127595107734],[112,275,78,-0.015552401162025139],[112,275,79,-0.004321380578503926],[112,276,64,-0.036937614057900026],[112,276,65,-0.03184404130621829],[112,276,66,-0.0162626345334169],[112,276,67,-0.01569373126406057],[112,276,68,-0.014739928205428939],[112,276,69,-0.006072492739598591],[112,276,70,-0.006683348846983146],[112,276,71,-0.012700594383269335],[112,276,72,-0.013645483779251465],[112,276,73,-0.011102609224608165],[112,276,74,-0.00400404683961423],[112,276,75,0.0033843683165035556],[112,276,76,-0.001972127157041729],[112,276,77,-0.014919757720827648],[112,276,78,-0.015200380423925809],[112,276,79,-0.004140302675406032],[112,277,64,-0.03645666013664843],[112,277,65,-0.03133491440135063],[112,277,66,-0.015815805161133147],[112,277,67,-0.015275761903544577],[112,277,68,-0.0143894000715835],[112,277,69,-0.005916935465278687],[112,277,70,-0.006574832816076079],[112,277,71,-0.012487735828508668],[112,277,72,-0.013445292682498642],[112,277,73,-0.010919638009505149],[112,277,74,-0.0039009965597386147],[112,277,75,0.00337351665589125],[112,277,76,-0.0019070904078228553],[112,277,77,-0.01464498677867874],[112,277,78,-0.014863528890589424],[112,277,79,-0.003967654264111955],[112,278,64,-0.035994172028206116],[112,278,65,-0.030845230506654435],[112,278,66,-0.015384828296993638],[112,278,67,-0.014872359501754934],[112,278,68,-0.014051490061263026],[112,278,69,-0.005768880711919861],[112,278,70,-0.006472841748742736],[112,278,71,-0.012283058223540018],[112,278,72,-0.013253526744470496],[112,278,73,-0.01074594166502727],[112,278,74,-0.0038049217772840836],[112,278,75,0.003360473504622171],[112,278,76,-0.0018473847847229794],[112,278,77,-0.014383496140158911],[112,278,78,-0.014541467682460164],[112,278,79,-0.003803106887494465],[112,279,64,-0.03555000449693823],[112,279,65,-0.030374714377407037],[112,279,66,-0.014969288636504275],[112,279,67,-0.014483167014646794],[112,279,68,-0.013725907971169593],[112,279,69,-0.005628110580188939],[112,279,70,-0.006377243027309722],[112,279,71,-0.012086478005354865],[112,279,72,-0.013070123379003807],[112,279,73,-0.010581365822010105],[112,279,74,-0.00371561634038023],[112,279,75,0.0033454120559257635],[112,279,76,-0.001792777479302567],[112,279,77,-0.014134975718800853],[112,279,78,-0.014233825391571402],[112,279,79,-0.0036463407589159913],[112,280,64,-0.035124009392296776],[112,280,65,-0.029923090854424572],[112,280,66,-0.014568773992107356],[112,280,67,-0.01410782912265632],[112,280,68,-0.013412365766381351],[112,280,69,-0.005494414086152066],[112,280,70,-0.006287910095970223],[112,280,71,-0.011897909879021656],[112,280,72,-0.012895018434654949],[112,280,73,-0.010425760077626176],[112,280,74,-0.003632882512642537],[112,280,75,0.0033284964829363283],[112,280,76,-0.0017430458463445892],[112,280,77,-0.013899124189168614],[112,280,78,-0.013940238500249507],[112,280,79,-0.003497044863365554],[112,281,64,-0.03471603629350058],[112,281,65,-0.029490085530387497],[112,281,66,-0.014182875855496995],[112,281,67,-0.01374599282698476],[112,281,68,-0.013110578057453958],[112,281,69,-0.005367587286619299],[112,281,70,-0.006204722613058012],[112,281,71,-0.011717267290610808],[112,281,72,-0.012728146664769804],[112,281,73,-0.010278978345050037],[112,281,74,-0.0035565311153115944],[112,281,75,0.003309882101507304],[112,281,76,-0.001697977190583524],[112,281,77,-0.013675649167160926],[112,281,78,-0.013660351755302268],[112,281,79,-0.00335491702265106],[112,282,64,-0.03432593312857168],[112,282,65,-0.029075425377833516],[112,282,66,-0.013811189911070965],[112,282,67,-0.013397308004369836],[112,282,68,-0.0128202625468078],[112,282,69,-0.005247433384665255],[112,282,70,-0.006127566588221311],[112,282,71,-0.01154446288244005],[112,282,72,-0.01256944217763198],[112,282,73,-0.010140879175107564],[112,282,74,-0.0034863816399739356],[112,282,75,0.0032897155550401574],[112,282,76,-0.0016573685253764368],[112,282,77,-0.01346426735175659],[112,282,78,-0.013393818497966212],[112,282,79,-0.003219663925810392],[112,283,64,-0.03395354676609041],[112,283,65,-0.028678839337692438],[112,283,66,-0.013453316500394887],[112,283,67,-0.013061427920113552],[112,283,68,-0.012541140444333876],[112,283,69,-0.0051337628161541035],[112,283,70,-0.006056334505069669],[112,283,71,-0.011379408929887067],[112,283,72,-0.012418838865690793],[112,283,73,-0.01001132604973093],[112,283,74,-0.0034222623326921387],[112,283,75,0.003268135020131845],[112,283,76,-0.001621026304187437],[112,283,77,-0.013264704628314788],[112,283,78,-0.013140300949964927],[112,283,79,-0.0030910011259239595],[112,284,64,-0.03359872357812849],[112,284,65,-0.028300058867332428],[112,284,66,-0.013108861037649588],[112,284,67,-0.012738009699252161],[112,284,68,-0.012272936852250085],[112,284,69,-0.005026393318087401],[112,284,70,-0.005990925429845744],[112,284,71,-0.011222017759102792],[112,284,72,-0.012276270812936026],[112,284,73,-0.009890187647052155],[112,284,74,-0.003364010250331294],[112,284,75,0.0032452704319560744],[112,284,76,-0.0015887661255993676],[112,284,77,-0.013076696133478363],[112,284,78,-0.012899470456058798],[112,284,79,-0.002968653004489657],[112,285,64,-0.03326130997292629],[112,285,65,-0.027938818447189623],[112,285,66,-0.012777434376120857],[112,285,67,-0.012426714755869001],[112,285,68,-0.01201538111934057],[112,285,69,-0.004925149979589083],[112,285,70,-0.005931245106658636],[112,285,71,-0.011072202145052423],[112,285,72,-0.012141672679550594],[112,285,73,-0.00977733807797563],[112,285,74,-0.003311471289820529],[112,285,75,0.0032212437284088826],[112,285,76,-0.0015604124124063972],[112,285,77,-0.012899986281659847],[112,285,78,-0.012671007683492958],[112,285,79,-0.002852352704496185],[112,286,64,-0.03294115289599027],[112,286,65,-0.027594856045148032],[112,286,66,-0.012458653125873928],[112,286,67,-0.01212720918065844],[112,286,68,-0.011768207164810116],[112,286,69,-0.00482986527634056],[112,286,70,-0.005877206039799877],[112,286,71,-0.010929875689401606],[112,286,72,-0.012014980063034194],[112,286,73,-0.009672657094068077],[112,286,74,-0.003264500191028792],[112,286,75,0.0031961691121706686],[112,286,76,-0.001535798065174086],[112,286,77,-0.012734328753008643],[112,286,78,-0.012454602778758435],[112,286,79,-0.002741842033295382],[112,287,64,-0.03263810029836495],[112,287,65,-0.027267913537897592],[112,287,66,-0.012152139922788468],[112,287,67,-0.011839164086913113],[112,287,68,-0.011531153772047435],[112,287,69,-0.004740379089242901],[112,287,70,-0.005828727563619236],[112,287,71,-0.010794953177829303],[112,287,72,-0.011896129835026168],[112,287,73,-0.009576030266571448],[112,287,74,-0.0032229605138414394],[112,287,75,0.0031701533299878936],[112,287,76,-0.001514764090455287],[112,287,77,-0.012579486442644429],[112,287,78,-0.01224995548205567],[112,287,79,-0.0026368713363057695],[112,288,64,-0.032352001570916604],[112,288,65,-0.026957737088556748],[112,288,66,-0.011857523649162035],[112,288,67,-0.0115622559151692],[112,288,68,-0.011303964852655064],[112,288,69,-0.004656538708056337],[112,288,70,-0.0057857359003986595],[112,288,71,-0.010667350916413867],[112,288,72,-0.011785060453085755],[112,288,73,-0.0094873491363031],[112,288,74,-0.0031867245899225762],[112,288,75,0.0031432959686321853],[112,288,76,-0.0014971592036492807],[112,288,77,-0.01243523137081714],[112,288,78,-0.012056775199810865],[112,288,79,-0.0025371993425057572],[112,289,64,-0.03208270776583457],[112,289,65,-0.026664076945626114],[112,289,66,-0.01157443849569321],[112,289,67,-0.011296165083420228],[112,289,68,-0.011086387998605784],[112,289,69,-0.004578197402310467],[112,289,70,-0.0057481631100086035],[112,289,71,-0.01054698643844561],[112,289,72,-0.011681712298882218],[112,289,73,-0.009406512010392278],[112,289,74,-0.003155674535493848],[112,289,75,0.003115688430979672],[112,289,76,-0.0014828408252789023],[112,289,77,-0.012301345881695522],[112,289,78,-0.011874782289010215],[112,289,79,-0.0024425943463951515],[112,290,64,-0.03183007040131185],[112,290,65,-0.026386683309369784],[112,290,66,-0.011302515049707699],[112,290,67,-0.011040563148743495],[112,290,68,-0.010878161069577412],[112,290,69,-0.00450520288208584],[112,290,70,-0.005715938175865672],[112,290,71,-0.01043377378407749],[112,290,72,-0.01158602827361393],[112,290,73,-0.00933342943704431],[112,290,74,-0.003129710823029178],[112,290,75,0.0030874036171809572],[112,290,76,-0.0014716859144543635],[112,290,77,-0.012177633001085765],[112,290,78,-0.011703717948833417],[112,290,79,-0.0023528447575238997],[112,291,64,-0.031593942167166086],[112,291,65,-0.026125308453146104],[112,291,66,-0.011041384707198442],[112,291,67,-0.010795119478068799],[112,291,68,-0.010679019144009544],[112,291,69,-0.004437402874700447],[112,291,70,-0.0056889912386929265],[112,291,71,-0.010327625969573824],[112,291,72,-0.011497953579843543],[112,291,73,-0.009268021295969145],[112,291,74,-0.003108747454519544],[112,291,75,0.0030585021126132593],[112,291,76,-0.001463584218878289],[112,291,77,-0.012063910262372498],[112,291,78,-0.011543338449825103],[112,291,79,-0.0022677526001295724],[112,292,64,-0.031374177948759525],[112,292,65,-0.025879709322737882],[112,292,66,-0.010790684806027509],[112,292,67,-0.010559508853334416],[112,292,68,-0.010488702451419748],[112,292,69,-0.004374651610130204],[112,292,70,-0.005667258628469874],[112,292,71,-0.010228457986827956],[112,292,72,-0.01141743562535969],[112,292,73,-0.009210213642030883],[112,292,74,-0.0030927067142837235],[112,292,75,0.003029038836621064],[112,292,76,-0.0014584310783745487],[112,292,77,-0.011960003168651217],[112,292,78,-0.011393409088582461],[112,292,79,-0.0021871267681300042],[112,293,64,-0.031170635069056058],[112,293,65,-0.0256496476669036],[112,293,66,-0.010550058567787676],[112,293,67,-0.010333411514361703],[112,293,68,-0.010306956429916705],[112,293,69,-0.004316809703072534],[112,293,70,-0.005650682822786049],[112,293,71,-0.010136187007251314],[112,293,72,-0.011344424203255338],[112,293,73,-0.009159938735769682],[112,293,74,-0.0030815190484826324],[112,293,75,0.002999063354864915],[112,293,76,-0.001456126964368317],[112,293,77,-0.01186574496709578],[112,293,78,-0.01125370412262199],[112,293,79,-0.0021107828182659926],[112,294,64,-0.030983173478616094],[112,294,65,-0.025434890091360886],[112,294,66,-0.01031915493652649],[112,294,67,-0.010116513083456577],[112,294,68,-0.010133531674643858],[112,294,69,-0.004263743952887029],[112,294,70,-0.005639212338209792],[112,294,71,-0.010050732530239083],[112,294,72,-0.01127887164192653],[112,294,73,-0.009117135071793238],[112,294,74,-0.0030751229685018486],[112,294,75,0.0029686201489921506],[112,294,76,-0.0014565770518483155],[112,294,77,-0.011780976436258528],[112,294,78,-0.011124006716563422],[112,294,79,-0.0020385427955214317],[112,295,64,-0.030811655899967032],[112,295,65,-0.025235208058389965],[112,295,66,-0.01009762836237191],[112,295,67,-0.00990850444213154],[112,295,68,-0.009968183850846225],[112,295,69,-0.004215327123366906],[112,295,70,-0.0056328016020740146],[112,295,71,-0.00997201650214871],[112,295,72,-0.011220732921551414],[112,295,73,-0.009081747374365188],[112,295,74,-0.0030734649298822673],[112,295,75,0.0029377489031930893],[112,295,76,-0.0014596907596210861],[112,295,77,-0.011705545626084363],[112,295,78,-0.011004108843806657],[112,295,79,-0.0019702350305691612],[112,296,64,-0.03065594792539825],[112,296,65,-0.025050377831100146],[112,296,66,-0.009885138529488259],[112,296,67,-0.009709081559584441],[112,296,68,-0.009810673571501368],[112,296,69,-0.004171437702183878],[112,296,70,-0.005631410804181758],[112,296,71,-0.009899963405344436],[112,296,72,-0.011169965756103208],[112,296,73,-0.009053726559272134],[112,296,74,-0.0030764991862282363],[112,296,75,0.0029064848083486115],[112,296,76,-0.0014653812572194929],[112,296,77,-0.01163930754909143],[112,296,78,-0.01089381114340843],[112,296,79,-0.0019056939094890797],[112,297,64,-0.030515918067235186],[112,297,65,-0.02488018036133289],[112,297,66,-0.009681350027636251],[112,297,67,-0.009517945272448137],[112,297,68,-0.009660766239379292],[112,297,69,-0.004131959639738162],[112,297,70,-0.005635005727815884],[112,297,71,-0.00983450031681993],[112,297,72,-0.011126530639881543],[112,297,73,-0.009033029660905226],[112,297,74,-0.003084187617325175],[112,297,75,0.002874858884682622],[112,297,76,-0.0014735649365677115],[112,297,77,-0.011582123820940112],[112,297,78,-0.010792922731688267],[112,297,79,-0.0018447596158359537],[112,298,64,-0.03039143781480441],[112,298,65,-0.024724401174816904],[112,298,66,-0.009485932020742395],[112,298,67,-0.009334801069074793],[112,298,68,-0.009518231906801273],[112,298,69,-0.004096782120138043],[112,298,70,-0.005643557612049015],[112,298,71,-0.009775556988238062],[112,298,72,-0.011090390909501192],[112,298,73,-0.009019619775049607],[112,298,74,-0.0030964995819038514],[112,298,75,0.0028428982729154025],[112,298,76,-0.0014841608971023386],[112,298,77,-0.011533862298980017],[112,298,78,-0.010701261018290126],[112,298,79,-0.0017872778951418902],[112,299,64,-0.030282392204961855],[112,299,65,-0.02458284067148732],[112,299,66,-0.009298568244202117],[112,299,67,-0.009159369126658348],[112,299,68,-0.009382855320901913],[112,299,69,-0.004065809453891704],[112,299,70,-0.005657053059592469],[112,299,71,-0.009723075890114074],[112,299,72,-0.011061522695022911],[112,299,73,-0.009013475825860515],[112,299,74,-0.003113421542272403],[112,299,75,0.0028106168046576232],[112,299,76,-0.001497100078441252],[112,299,77,-0.011494406302756194],[112,299,78,-0.010618661065724858],[112,299,79,-0.0017331093390620517],[112,300,64,-0.030188694768807967],[112,300,65,-0.024455328723208304],[112,300,66,-0.009118971233177604],[112,300,67,-0.008991398523638904],[112,300,68,-0.009254450096892155],[112,300,69,-0.004038975053659619],[112,300,70,-0.005675507969556035],[112,300,71,-0.009677026217446772],[112,300,72,-0.011039928773588012],[112,300,73,-0.00901460618574007],[112,300,74,-0.003134970504137873],[112,300,75,0.002778001795700336],[112,300,76,-0.0015123381075743821],[112,300,77,-0.011463667493892502],[112,300,78,-0.010544988579970913],[112,300,79,-0.0016821422843795815],[112,301,64,-0.030110270473854985],[112,301,65,-0.02434170752105379],[112,301,66,-0.00894686505776309],[112,301,67,-0.008830650217317527],[112,301,68,-0.009132841912915347],[112,301,69,-0.0040162246784251066],[112,301,70,-0.00569895096049145],[112,301,71,-0.009637387590976352],[112,301,72,-0.011025622315155725],[112,301,73,-0.009023032380747425],[112,301,74,-0.003161177734723968],[112,301,75,0.0027450303821773894],[112,301,76,-0.001529838742874108],[112,301,77,-0.011441569487451836],[112,301,78,-0.010480123781320953],[112,301,79,-0.0016342767380217412],[112,302,64,-0.030047053071241805],[112,302,65,-0.024241828728986607],[112,302,66,-0.008781982278267306],[112,302,67,-0.008676894166635758],[112,302,68,-0.009017865784015937],[112,302,69,-0.0039975136916928925],[112,302,70,-0.005727420729332948],[112,302,71,-0.009604147613302],[112,302,72,-0.011018624405509695],[112,302,73,-0.009038786506926563],[112,302,74,-0.003192086139835654],[112,302,75,0.002711672248817364],[112,302,76,-0.0015495708502333402],[112,302,77,-0.011428044931961616],[112,302,78,-0.010423958712268373],[112,302,79,-0.0015894217203263842],[112,303,64,-0.02999898522437129],[112,303,65,-0.024155553387268137],[112,303,66,-0.00862406362995366],[112,303,67,-0.008529909174598843],[112,303,68,-0.00890936605333445],[112,303,69,-0.003982807032476778],[112,303,70,-0.005760966103126625],[112,303,71,-0.0095773020932455],[112,303,72,-0.01101896421252085],[112,303,73,-0.009061911273489428],[112,303,74,-0.0032277502632223442],[112,303,75,0.002677889741870324],[112,303,76,-0.0015715079582503614],[112,303,77,-0.011423035142471602],[112,303,78,-0.01037639710203802],[112,303,79,-0.0015474951767724698],[112,304,64,-0.029966018634548747],[112,304,65,-0.024082751801047325],[112,304,66,-0.008472857692363195],[112,304,67,-0.008389482725396715],[112,304,68,-0.008807196395264172],[112,304,69,-0.003972079211846764],[112,304,70,-0.0057996461133903365],[112,304,71,-0.009556855285535786],[112,304,72,-0.011026679157931048],[112,304,73,-0.009092460049685998],[112,304,74,-0.003268236299338913],[112,304,75,0.0026436379623013466],[112,304,76,-0.0015956278080042452],[112,304,77,-0.011426489713868355],[112,304,78,-0.010337354227173289],[112,304,79,-0.0015084239079278898],[112,305,64,-0.02994811416422078],[112,305,65,-0.024023303413965146],[112,305,66,-0.008328120542595196],[112,305,67,-0.008255410816074235],[112,305,68,-0.008711219831313255],[112,305,69,-0.003965314335624722],[112,305,70,-0.00584353009324983],[112,305,71,-0.009542820146466917],[112,305,72,-0.011041815094494157],[112,305,73,-0.009130496914550087],[112,305,74,-0.0033136221186356556],[112,305,75,0.002608864840189437],[112,305,76,-0.0016219118950890367],[112,305,77,-0.011438366112241126],[112,305,78,-0.010306756767618207],[112,305,79,-0.001472143517848546],[112,306,64,-0.029945241958470103],[112,306,65,-0.023977096666582],[112,306,66,-0.00818961539178278],[112,306,67,-0.008127497782487803],[112,306,68,-0.00862130875939096],[112,306,69,-0.003962506153834488],[112,306,70,-0.00589269779750431],[112,306,71,-0.009535218606202288],[112,306,72,-0.011064426488299885],[112,306,73,-0.009176096708635485],[112,306,74,-0.0033639973043982333],[112,306,75,0.0025735111913503944],[112,306,76,-0.0016503450014552542],[112,306,77,-0.011458629241954883],[112,306,78,-0.010284542657622762],[112,306,79,-0.0014385983811137258],[112,307,64,-0.02995738156546898],[112,307,65,-0.02394402883940085],[112,307,66,-0.008057112203872667],[112,307,67,-0.008005556119184385],[112,307,68,-0.008537344997219384],[112,307,69,-0.0039636581375271],[112,307,70,-0.005947239545777793],[112,307,71,-0.009534081858419544],[112,307,72,-0.011094576606091231],[112,307,73,-0.009229345086778569],[112,307,74,-0.0034194632000516933],[112,307,75,0.002537510757278605],[112,307,76,-0.0016809147144968154],[112,307,77,-0.011487250985956212],[112,307,78,-0.010270660930693142],[112,307,79,-0.0014077416286205407],[112,308,64,-0.02998452205665501],[112,308,65,-0.02392400588023384],[112,308,66,-0.007930387295687971],[112,308,67,-0.007889406292727297],[112,308,68,-0.00845921984055274],[112,308,69,-0.003968783583633189],[112,308,70,-0.006007256388933217],[112,308,71,-0.009539450668009283],[112,308,72,-0.011132337707373312],[112,308,73,-0.009290338570852593],[112,308,74,-0.003480132965739314],[112,308,75,0.0025007902295705745],[112,308,76,-0.0017136109307209517],[112,308,77,-0.011524209716712572],[112,308,78,-0.010265071557701429],[112,308,79,-0.0013795351522136927],[112,309,64,-0.03002666214742348],[112,309,65,-0.02391694221561355],[112,309,66,-0.0078092229171056295],[112,309,67,-0.007778876547863362],[112,309,68,-0.008386834136841785],[112,309,69,-0.003977905748502068],[112,309,70,-0.00607286029892265],[112,309,71,-0.00955137569753523],[112,309,72,-0.01117779124107445],[112,309,73,-0.009359184601385722],[112,309,74,-0.0035461316428655413],[112,309,75,0.0024632692600789503],[112,309,76,-0.0017484253412291806],[112,309,77,-0.011569489775047154],[112,309,78,-0.010267745277141756],[112,309,79,-0.0013539496281526912],[112,310,64,-0.030083810319159424],[112,310,65,-0.02392276054590114],[112,310,66,-0.007693406810032376],[112,310,67,-0.007673802705790235],[112,310,68,-0.008320098374936104],[112,310,69,-0.003991058010801303],[112,310,70,-0.006144174382250415],[112,310,71,-0.009569917853153607],[112,310,72,-0.011231028046479226],[112,310,73,-0.00943600158682206],[112,310,74,-0.003617596225174359],[112,310,75,0.002424860458123168],[112,310,76,-0.0017853508961386162],[112,310,77,-0.011623080913999856],[112,310,78,-0.010278663416393668],[112,310,79,-0.001330964559349363],[112,311,64,-0.030155984943470514],[112,311,65,-0.023941391623707207],[112,311,66,-0.007582731744728251],[112,311,67,-0.007574027953656664],[112,311,68,-0.00825893279137531],[112,311,69,-0.004008284064473042],[112,311,70,-0.006221333117236323],[112,311,71,-0.009595148650677895],[112,311,72,-0.01129214855811406],[112,311,73,-0.009520918949118795],[112,311,74,-0.0036946757348201996],[112,311,75,0.0023854693761575967],[112,311,76,-0.0018243812449872784],[112,311,77,-0.011684977704725775],[112,311,78,-0.01029781770272909],[112,311,79,-0.0013105683362394838],[112,312,64,-0.030243214409480666],[112,312,65,-0.023972774015176605],[112,312,66,-0.007476995031867104],[112,312,67,-0.007479402624270093],[112,312,68,-0.00820326749374646],[112,312,69,-0.004029638142440537],[112,312,70,-0.0063044826152530995],[112,312,71,-0.009627150602433184],[112,312,72,-0.01136126301419738],[112,312,73,-0.009614077164261783],[112,312,74,-0.0037775313017572544],[112,312,75,0.0023449944853850707],[112,312,76,-0.0018655101500756894],[112,312,77,-0.011755178901310106],[112,312,78,-0.010325210062655781],[112,312,79,-0.0012927583160623145],[112,313,64,-0.030345537255051666],[112,313,65,-0.024016853843630413],[112,313,66,-0.007375998008575308],[112,313,67,-0.007389783964836577],[112,313,68,-0.008153042601515476],[112,313,69,-0.004055185271763423],[112,313,70,-0.006393780906105623],[112,313,71,-0.009666017625497727],[112,313,72,-0.011438491668197895],[112,313,73,-0.009715627796176862],[112,313,74,-0.003866336244644793],[112,313,75,0.0023033271428877615],[112,313,76,-0.001908730869617971],[112,313,77,-0.011833686761260329],[112,313,78,-0.010360852408048958],[112,313,79,-0.0012775409202326754],[112,314,64,-0.03046300230280264],[112,314,65,-0.024073584515009527],[112,314,66,-0.00727954549655141],[112,314,67,-0.0073050358934069245],[112,314,68,-0.008108208404664929],[112,314,69,-0.004085001560944376],[112,314,70,-0.006489398247713759],[112,314,71,-0.009711855471877638],[112,314,72,-0.011523965002972716],[112,314,73,-0.009825733522412937],[112,314,74,-0.003961276151344583],[112,314,75,0.0022603515519238407],[112,314,76,-0.0019540355075162103],[112,314,77,-0.011920506318331312],[112,314,78,-0.010404766407384176],[112,314,79,-0.0012649317493998006],[112,315,64,-0.030595668801762524],[112,315,65,-0.024142926424483086],[112,315,66,-0.007187445230213483],[112,315,67,-0.007225028741532757],[112,315,68,-0.008068725540367376],[112,315,69,-0.004119174520070995],[112,315,70,-0.006591517460231964],[112,315,71,-0.009764782181073253],[112,315,72,-0.011617823946855716],[112,315,73,-0.009944568149847828],[112,315,74,-0.0040625489569462705],[112,315,75,0.0022159447171290992],[112,315,76,-0.002001414326508612],[112,315,77,-0.012015644604229143],[112,315,78,-0.010456983240229537],[112,315,79,-0.001254955715676706],[112,316,64,-0.030743606575465234],[112,316,65,-0.024224846643524842],[112,316,66,-0.007099507252680455],[112,316,67,-0.0071496389814691],[112,316,68,-0.008034565187819519],[112,316,69,-0.004157803414459573],[112,316,70,-0.006700334284711871],[112,316,71,-0.00982492855540516],[112,316,72,-0.011720220090965893],[112,316,73,-0.010072316618552903],[112,316,74,-0.004170365017122176],[112,316,75,0.0021699763964515306],[112,316,76,-0.0020508550213961313],[112,316,77,-0.012119109815645719],[112,316,78,-0.010517543333003332],[112,316,79,-0.0012476471914100366],[112,317,64,-0.03090689617725376],[112,317,65,-0.024319318586691625],[112,317,66,-0.0070155432772652055],[112,317,67,-0.007078748936098806],[112,317,68,-0.008005709281251432],[112,317,69,-0.0042009996524459345],[112,317,70,-0.006816057766385542],[112,317,71,-0.00989243865836316],[112,317,72,-0.01183131590689683],[112,317,73,-0.010209174991836767],[112,317,74,-0.004284947174486819],[112,317,75,0.002122309051721542],[112,317,76,-0.0021023419490332593],[112,317,77,-0.012230910423004605],[112,317,78,-0.010586496073857421],[112,317,79,-0.0012430501737483155],[112,318,64,-0.03108562905348981],[112,318,65,-0.024426321657258353],[112,318,66,-0.006935366012020507],[112,318,67,-0.007012246469575165],[112,318,68,-0.007982150740986758],[112,318,69,-0.0042488872079227665],[112,318,70,-0.0069389106625933426],[112,318,71,-0.009967470336103788],[112,318,72,-0.011951284963814254],[112,318,73,-0.010355350430357286],[112,318,74,-0.0044065308154920884],[112,318,75,0.0020727977998564475],[112,318,76,-0.0021558553117477595],[112,318,77,-0.012351054217226437],[112,318,78,-0.010663899504385914],[112,318,79,-0.0012412184641288355],[112,319,64,-0.03127989588645378],[112,319,65,-0.024545841650900135],[112,319,66,-0.006858796497500857],[112,319,67,-0.006950022446710235],[112,319,68,-0.007963883552956184],[112,319,69,-0.004301598762110746],[112,319,70,-0.007069129081747275],[112,319,71,-0.010050194933471108],[112,319,72,-0.012080314141089857],[112,319,73,-0.0105110641668203],[112,319,74,-0.004535366451670898],[112,319,75,0.002021281353130075],[112,319,76,-0.0022113901340824406],[112,319,77,-0.012479562780531066],[112,319,78,-0.010749825626748954],[112,319,79,-0.0012422163000126046],[113,-64,64,-0.25687870430350546],[113,-64,65,-0.12156423347175065],[113,-64,66,-0.05682917364780995],[113,-64,67,-0.029960213886679424],[113,-64,68,-0.07405533681149176],[113,-64,69,-0.0956990034678243],[113,-64,70,0.010613105800312031],[113,-64,71,0.005971339018146615],[113,-64,72,-0.03198624447116601],[113,-64,73,-0.06579068083959207],[113,-64,74,-0.14845585662704566],[113,-64,75,-0.208032374614786],[113,-64,76,-0.2120019759089248],[113,-64,77,-0.17719655855586125],[113,-64,78,-0.10701186288794104],[113,-64,79,-0.052757083431550514],[113,-63,64,-0.2510458752067658],[113,-63,65,-0.11937644616800928],[113,-63,66,-0.055608180499957194],[113,-63,67,-0.029240010028810826],[113,-63,68,-0.07401046017987695],[113,-63,69,-0.09601633653345504],[113,-63,70,0.00886789300956462],[113,-63,71,0.005779715932569193],[113,-63,72,-0.0311840621385629],[113,-63,73,-0.06398704687081634],[113,-63,74,-0.1452569731219524],[113,-63,75,-0.20399947474019],[113,-63,76,-0.2080083146340518],[113,-63,77,-0.17385975034156304],[113,-63,78,-0.10538965363003765],[113,-63,79,-0.052996201908692406],[113,-62,64,-0.24535881496965306],[113,-62,65,-0.11725597626924901],[113,-62,66,-0.054436593509228144],[113,-62,67,-0.028549274677617097],[113,-62,68,-0.07394004284833255],[113,-62,69,-0.0962906884530536],[113,-62,70,0.007165596581432168],[113,-62,71,0.005571502076128155],[113,-62,72,-0.03042748089623151],[113,-62,73,-0.06226565793617029],[113,-62,74,-0.14214027696882295],[113,-62,75,-0.20004092293913864],[113,-62,76,-0.204096465518378],[113,-62,77,-0.17059998978323107],[113,-62,78,-0.10380286570314719],[113,-62,79,-0.05322594327616529],[113,-61,64,-0.23981381902521334],[113,-61,65,-0.11520056513306479],[113,-61,66,-0.05331275589575255],[113,-61,67,-0.02788713555603398],[113,-61,68,-0.07384436065244936],[113,-61,69,-0.09652212105852802],[113,-61,70,0.0055066869491959165],[113,-61,71,0.005348281825999785],[113,-61,72,-0.02971427910211616],[113,-61,73,-0.06062340858120802],[113,-61,74,-0.13910347142674845],[113,-61,75,-0.19615518481587743],[113,-61,76,-0.20026457022579439],[113,-61,77,-0.16741542954948838],[113,-61,78,-0.1022503552576852],[113,-61,79,-0.053445612549266254],[113,-60,64,-0.23440720468601944],[113,-60,65,-0.11320799490113308],[113,-60,66,-0.052235051860871455],[113,-60,67,-0.02725274720264406],[113,-60,68,-0.0737237073562576],[113,-60,69,-0.09671073718474955],[113,-60,70,0.00389153220461851],[113,-60,71,0.005111520308957929],[113,-60,72,-0.029042346179639904],[113,-60,73,-0.05905727994234292],[113,-60,74,-0.13614427985064925],[113,-60,75,-0.19234069339229098],[113,-60,76,-0.1965107248889476],[113,-60,77,-0.16430417805300912],[113,-60,78,-0.10073096669158321],[113,-60,79,-0.05365453271111203],[113,-59,64,-0.22913526710036777],[113,-59,65,-0.11127604169126655],[113,-59,66,-0.051201872058513107],[113,-59,67,-0.026645266916678043],[113,-59,68,-0.07357836905540836],[113,-59,69,-0.09685664992412271],[113,-59,70,0.0023204386022191875],[113,-59,71,0.004862611140888774],[113,-59,72,-0.028409631714302126],[113,-59,73,-0.05756429228877386],[113,-59,74,-0.13326040577140333],[113,-59,75,-0.18859582381654347],[113,-59,76,-0.19283297086312104],[113,-59,77,-0.16126429965014946],[113,-59,78,-0.09924353230356435],[113,-59,79,-0.05385204444444596],[113,-58,64,-0.2239942833192222],[113,-58,65,-0.10940247678996158],[113,-58,66,-0.050211614026407794],[113,-58,67,-0.026063854666099055],[113,-58,68,-0.07340862132491803],[113,-58,69,-0.09695997825148449],[113,-58,70,7.936555605908954E-4],[113,-58,71,0.004602879079182014],[113,-58,72,-0.027814144056912044],[113,-58,73,-0.056141506126358064],[113,-58,74,-0.1304495356024607],[113,-58,75,-0.18491889625395067],[113,-58,76,-0.1892292970304134],[113,-58,77,-0.15829381632807873],[113,-58,78,-0.09778687161365943],[113,-58,79,-0.05403750281956047],[113,-57,64,-0.21898051617193687],[113,-57,65,-0.10758506766875707],[113,-57,66,-0.049262682499180845],[113,-57,67,-0.02550767297195526],[113,-57,68,-0.07321472655534726],[113,-57,69,-0.09702084284739768],[113,-57,70,-6.886194077791992E-4],[113,-57,71,0.004333582699315477],[113,-57,72,-0.027253948833159288],[113,-57,73,-0.05478602301675514],[113,-57,74,-0.12770934119496813],[113,-57,75,-0.18130817879267572],[113,-57,76,-0.18569764209088066],[113,-57,77,-0.15539070934311164],[113,-57,78,-0.09635979071166731],[113,-57,79,-0.05421027401975359],[113,-56,64,-0.21409021793607425],[113,-56,65,-0.10582157881344524],[113,-56,66,-0.04835348959071251],[113,-56,67,-0.024975886754760906],[113,-56,68,-0.07299693147036326],[113,-56,69,-0.09703936212557507],[113,-56,70,-0.0021262358427531166],[113,-56,71,0.004055917106108932],[113,-56,72,-0.02672716734672642],[113,-56,73,-0.05349498610573151],[113,-56,74,-0.12503748223169456],[113,-56,75,-0.17776189035333362],[113,-56,76,-0.18223589683602098],[113,-56,77,-0.15255292080861477],[113,-56,78,-0.09496108163542899],[113,-56,79,-0.05436973212125243],[113,-55,64,-0.2093196338112354],[113,-55,65,-0.10410977237914744],[113,-55,66,-0.04748245485068629],[113,-55,67,-0.024467663140738706],[113,-55,68,-0.07275546482924457],[113,-55,69,-0.09701564848190176],[113,-55,70,-0.0035190855792521514],[113,-55,71,0.003771016669068552],[113,-55,72,-0.02623197488689241],[113,-55,73,-0.052265580378738],[113,-55,74,-0.12243160847170431],[113,-55,75,-0.1742782036064651],[113,-55,76,-0.17884190640741263],[113,-55,77,-0.14977835523361582],[113,-55,78,-0.09358952178168028],[113,-55,79,-0.05451525594312082],[113,-54,64,-0.20466500520823072],[113,-54,65,-0.10244740868513658],[113,-54,66,-0.04664800520091178],[113,-54,67,-0.023982171226220574],[113,-54,68,-0.0724905353175882],[113,-54,69,-0.09694980478161114],[113,-54,70,-0.004867098105602405],[113,-54,71,0.0034799577718391066],[113,-54,72,-0.025766598951552852],[113,-54,73,-0.05109503266263566],[113,-54,74,-0.1198893618588013],[113,-54,75,-0.17085524790309078],[113,-54,76,-0.1755134725450027],[113,-54,77,-0.14706488101505175],[113,-54,78,-0.09224387335306716],[113,-54,79,-0.05464622598246974],[113,-53,64,-0.200122755317138],[113,-53,65,-0.10083234034586426],[113,-53,66,-0.04584861825018761],[113,-53,67,-0.023518604548490633],[113,-53,68,-0.07220240082860818],[113,-53,69,-0.0968420184332539],[113,-53,70,-0.006170242375221266],[113,-53,71,0.0031837648880250298],[113,-53,72,-0.02532934431556183],[113,-53,73,-0.04998066548402049],[113,-53,74,-0.11740850787186824],[113,-53,75,-0.16749130007213242],[113,-53,76,-0.1722485524266326],[113,-53,77,-0.14441049958633012],[113,-53,78,-0.09092299024978888],[113,-53,79,-0.05476208723891482],[113,-52,64,-0.19569069763998395],[113,-52,65,-0.09926313928262684],[113,-52,66,-0.045083112010381725],[113,-52,67,-0.023076331834497553],[113,-52,68,-0.07189185165235636],[113,-52,69,-0.0966932242904632],[113,-52,70,-0.007428581067456892],[113,-52,71,0.002883432389197685],[113,-52,72,-0.024918770441715962],[113,-52,73,-0.04892025364914198],[113,-52,74,-0.11498779196379377],[113,-52,75,-0.16418602993803763],[113,-52,76,-0.16904656366210138],[113,-52,77,-0.14181445903546522],[113,-52,78,-0.08962653448612003],[113,-52,79,-0.05486279792180579],[113,-51,64,-0.19136726064119589],[113,-51,65,-0.09773871576193412],[113,-51,66,-0.04435046650237574],[113,-51,67,-0.022654802032568908],[113,-51,68,-0.07155994181301487],[113,-51,69,-0.09650474436134432],[113,-51,70,-0.008642282815566983],[113,-51,71,0.002579905073317443],[113,-51,72,-0.024533579292628553],[113,-51,73,-0.0479117932976062],[113,-51,74,-0.11262638930161456],[113,-51,75,-0.16093970491015255],[113,-51,76,-0.16590755744524288],[113,-51,77,-0.13927655113709927],[113,-51,78,-0.08835453633086987],[113,-51,79,-0.054948589465520205],[113,-50,64,-0.18715084158991466],[113,-50,65,-0.09625799064525177],[113,-50,66,-0.04364967205799482],[113,-50,67,-0.022253464695088127],[113,-50,68,-0.07120774146210924],[113,-50,69,-0.09627795022427049],[113,-50,70,-0.009811605638828672],[113,-50,71,0.0022740658859482852],[113,-50,72,-0.024172520546907182],[113,-50,73,-0.04695331194326948],[113,-50,74,-0.11032344700515981],[113,-50,75,-0.15775252423001182],[113,-50,76,-0.16283152347507984],[113,-50,77,-0.13679651956011643],[113,-50,78,-0.08710701658391808],[113,-50,79,-0.05501973991023619],[113,-49,64,-0.18303980675155007],[113,-49,65,-0.09481989556757092],[113,-49,66,-0.04297973020160624],[113,-49,67,-0.02187177060093582],[113,-49,68,-0.07083633262628998],[113,-49,69,-0.09601425619845964],[113,-49,70,-0.010936892379717598],[113,-49,71,0.0019667371327221927],[113,-49,72,-0.023834391367372875],[113,-49,73,-0.04604287046338973],[113,-49,74,-0.10807808482489799],[113,-49,75,-0.15462461786697757],[113,-49,76,-0.1598183891337143],[113,-49,77,-0.13437405978145725],[113,-49,78,-0.08588398503227553],[113,-49,79,-0.055076570034644654],[113,-48,64,-0.1790324950102765],[113,-48,65,-0.09342337477967537],[113,-48,66,-0.04233965527124837],[113,-48,67,-0.021509172792932164],[113,-48,68,-0.07044680641159119],[113,-48,69,-0.0957151144369339],[113,-48,70,-0.012018566190569848],[113,-48,71,0.0016586818537988666],[113,-48,72,-0.023518036548476808],[113,-48,73,-0.045178565857336865],[113,-48,74,-0.10588939818862239],[113,-48,75,-0.15155604907026202],[113,-48,76,-0.15686802246100906],[113,-48,77,-0.1320088222058618],[113,-48,78,-0.08468544097964711],[113,-48,79,-0.05511944072026393],[113,-47,64,-0.17512722139017514],[113,-47,65,-0.09206738685425757],[113,-47,66,-0.041728475941160824],[113,-47,67,-0.02116512758771967],[113,-47,68,-0.07004026031722328],[113,-47,69,-0.09538201011469934],[113,-47,70,-0.013057125995369833],[113,-47,71,0.0013506052812956978],[113,-47,72,-0.02322234853217694],[113,-47,73,-0.044358533733844144],[113,-47,74,-0.10375646111404427],[113,-47,75,-0.14854681694052918],[113,-47,76,-0.15398023512276762],[113,-47,77,-0.1297004152473382],[113,-47,78,-0.08351137378343382],[113,-47,79,-0.055148750316069424],[113,-46,64,-0.17132228046990763],[113,-46,65,-0.09075090625767444],[113,-46,66,-0.04114523664471491],[113,-46,67,-0.02083909555456747],[113,-46,68,-0.06961779566347086],[113,-46,69,-0.09501645672724422],[113,-46,70,-0.014053141945735528],[113,-46,71,0.0010431563695465593],[113,-46,72,-0.022946267299991514],[113,-46,73,-0.04358095053324166],[113,-46,74,-0.10167832898587408],[113,-46,75,-0.1455968590130364],[113,-46,76,-0.15115478536346752],[113,-46,77,-0.12744840836366178],[113,-46,78,-0.08236176339743895],[113,-46,79,-0.055164932015272956],[113,-45,64,-0.16761594968623733],[113,-45,65,-0.08947292478940429],[113,-45,66,-0.040588998897088856],[113,-45,67,-0.020530542459826114],[113,-45,68,-0.06918051513756092],[113,-45,69,-0.09461999151314958],[113,-45,70,-0.015007250889065524],[113,-45,71,7.369293884570667E-4],[113,-45,72,-0.022688780148864263],[113,-45,73,-0.04284403549162327],[113,-45,74,-0.09965404119636992],[113,-45,75,-0.14270605384447943],[113,-45,76,-0.14839138093504703],[113,-45,77,-0.12525233503583802],[113,-45,78,-0.08123658091857427],[113,-45,79,-0.05516845125528596],[113,-44,64,-0.1640064925224498],[113,-44,65,-0.08823245289177033],[113,-44,66,-0.04005884251756515],[113,-44,67,-0.02023894017422031],[113,-44,68,-0.06872952046100922],[113,-44,69,-0.09419417101366752],[113,-44,70,-0.015920151866055023],[113,-44,71,4.324655702246307E-4],[113,-44,72,-0.022448921358789935],[113,-44,73,-0.04214605235458148],[113,-44,74,-0.09768262364887764],[113,-44,75,-0.13987422359610635],[113,-44,76,-0.14568968199389723],[113,-44,77,-0.12311169568527434],[113,-44,78,-0.0801357891360969],[113,-44,79,-0.0551598031512693],[113,-43,64,-0.16049216157830076],[113,-43,65,-0.08702852083288387],[113,-43,66,-0.0395538667518212],[113,-43,67,-0.01996376754058436],[113,-43,68,-0.06826591018139751],[113,-43,69,-0.0937405667809407],[113,-43,70,-0.016792601653744885],[113,-43,71,1.3025480005480583E-4],[113,-43,72,-0.02222577176009224],[113,-43,73,-0.04148531084867122],[113,-43,74,-0.09576309112439357],[113,-43,75,-0.13710113660604184],[113,-43,76,-0.1430493039587942],[113,-43,77,-0.1210259605221449],[113,-43,78,-0.07905934308206093],[113,-43,79,-0.05513950997297779],[113,-42,64,-0.15707120151848344],[113,-42,65,-0.08586017976588527],[113,-42,66,-0.03907319129477477],[113,-42,67,-0.019704511199796618],[113,-42,68,-0.06779077759088435],[113,-42,69,-0.09326076124527889],[113,-42,70,-0.017625410369157976],[113,-42,71,-1.6926265812229377E-4],[113,-42,72,-0.022018458208169618],[113,-42,73,-0.0408601679190435],[113,-42,74,-0.09389444951141174],[113,-42,75,-0.1343865099439255],[113,-42,76,-0.14046982032289654],[113,-42,77,-0.11899457231897047],[113,-42,78,-0.07800719058165986],[113,-42,79,-0.05510811867373985],[113,-41,64,-0.15374185189731754],[113,-41,65,-0.08472650266802415],[113,-41,66,-0.03861595721509599],[113,-41,67,-0.019460666373174142],[113,-41,68,-0.06730520877338975],[113,-41,69,-0.09275634375092694],[113,-41,70,-0.01841943714768979],[113,-41,71,-4.656944097431742E-4],[113,-41,72,-0.021826152973622344],[113,-41,73,-0.04026902874221827],[113,-41,74,-0.09207569789986216],[113,-41,75,-0.13173001194146117],[113,-41,76,-0.13795076541361584],[113,-41,77,-0.11701694910424361],[113,-41,78,-0.07697927280238219],[113,-41,79,-0.055066198479799724],[113,-40,64,-0.15050234985783864],[113,-40,65,-0.08362658516336868],[113,-40,66,-0.03818132778285358],[113,-40,67,-0.01923173759992952],[113,-40,68,-0.06681028078192365],[113,-40,69,-0.0922289067686677],[113,-40,70,-0.01917558590940928],[113,-40,71,-7.586941599722969E-4],[113,-40,72,-0.02164807305558619],[113,-40,73,-0.03971034752324826],[113,-40,74,-0.09030583054026924],[113,-40,75,-0.1291312646927887],[113,-40,76,-0.13549163709468273],[113,-40,77,-0.11509248677157241],[113,-40,78,-0.07597552480102913],[113,-40,79,-0.055014338547536165],[113,-39,64,-0.14735093270383406],[113,-39,65,-0.08255954623300246],[113,-39,66,-0.03776848920191804],[113,-39,67,-0.019017239428433284],[113,-39,68,-0.06630705994689096],[113,-39,69,-0.09168004229234952],[113,-39,70,-0.019894801225250173],[113,-39,71,-0.0010479599343356208],[113,-39,72,-0.02148347942591264],[113,-39,73,-0.03918262808667197],[113,-39,74,-0.08858383866948018],[113,-39,75,-0.12658984651883082],[113,-39,76,-0.13309189940513277],[113,-39,77,-0.1132205616003203],[113,-39,78,-0.07499587606762673],[113,-39,79,-0.054953145695213756],[113,-38,64,-0.14428584034395625],[113,-38,65,-0.08152452881692684],[113,-38,66,-0.03737665124922097],[113,-38,67,-0.018816697060509487],[113,-38,68,-0.06579660031592821],[113,-38,69,-0.09111133842554692],[113,-38,70,-0.02057806429421423],[113,-38,71,-0.0013332322973831226],[113,-38,72,-0.021331676211816104],[113,-38,73,-0.038684424270954365],[113,-38,74,-0.086908712204709],[113,-38,75,-0.12410529439021371],[113,-38,76,-0.13075098513055675],[113,-38,77,-0.11140053268444217],[113,-38,78,-0.07404025106550559],[113,-38,79,-0.05488324221535569],[113,-37,64,-0.14130531760751114],[113,-37,65,-0.08052070031204285],[113,-37,66,-0.03700504782322595],[113,-37,67,-0.018629646948257902],[113,-37,68,-0.06527994222537327],[113,-37,69,-0.09052437616350617],[113,-37,70,-0.021226389041682656],[113,-37,71,-0.0016142925767723686],[113,-37,72,-0.02119200982448015],[113,-37,73,-0.03821434013625817],[113,-37,74,-0.08527944130791586],[113,-37,75,-0.12167710630370956],[113,-37,76,-0.12846829830244255],[113,-37,77,-0.10963174426677977],[113,-37,78,-0.0731085697669081],[113,-37,79,-0.054805263773108924],[113,-36,64,-0.13840761643176644],[113,-36,65,-0.07954725297057157],[113,-36,66,-0.0366529374040669],[113,-36,67,-0.018455637343028953],[113,-36,68,-0.06475811100292145],[113,-36,69,-0.08992072637439615],[113,-36,70,-0.021840818347807857],[113,-36,71,-0.0018909610996554378],[113,-36,72,-0.0210638680408196],[113,-36,73,-0.037771029995339205],[113,-36,74,-0.08369501782263877],[113,-36,75,-0.11930474360735242],[113,-36,76,-0.12624321662178092],[113,-36,77,-0.10791352797649845],[113,-36,78,-0.0722007481834646],[113,-36,79,-0.05471985739518806],[113,-35,64,-0.13559099792121618],[113,-35,65,-0.07860340420358491],[113,-35,66,-0.036319603428238846],[113,-35,67,-0.01829422879663903],[113,-35,68,-0.06423211580083384],[113,-35,69,-0.08930194698312567],[113,-35,70,-0.02242242041416021],[113,-35,71,-0.002163095448018404],[113,-35,72,-0.020946679045552277],[113,-35,73,-0.03735319827754124],[113,-35,74,-0.08215443658575604],[113,-35,75,-0.11698763326987212],[113,-35,76,-0.12407509380371598],[113,-35,77,-0.10624520496802277],[113,-35,78,-0.07131669889112924],[113,-35,79,-0.05462767955348281],[113,-34,64,-0.1328537342794614],[113,-34,65,-0.07768839679423391],[113,-34,66,-0.03600435458075195],[113,-34,67,-0.01814499461499],[113,-34,68,-0.06370294855852976],[113,-34,69,-0.08866958035989789],[113,-34,70,-0.022972285275705866],[113,-34,71,-0.0024305887391235102],[113,-34,72,-0.02083991044042963],[113,-34,73,-0.03695959923573082],[113,-34,74,-0.08065669661670806],[113,-34,75,-0.11472517009028904],[113,-34,76,-0.12196326184032193],[113,-34,77,-0.10462608796016874],[113,-34,78,-0.07045633154911374],[113,-34,79,-0.0545293943466411],[113,-33,64,-0.13019411061484487],[113,-33,65,-0.07680149902548081],[113,-33,66,-0.035706525008000076],[113,-33,67,-0.01800752126464948],[113,-33,68,-0.06317158309322611],[113,-33,69,-0.08802515091496857],[113,-33,70,-0.023491521464409727],[113,-33,71,-0.0026933679369226],[113,-33,72,-0.020743068227349056],[113,-33,73,-0.036589036506054586],[113,-33,74,-0.07920080218696748],[113,-33,75,-0.11251671884394701],[113,-33,76,-0.11990703317911745],[113,-33,77,-0.10305548317474938],[113,-33,78,-0.06961955341256562],[113,-33,79,-0.05442567178246402],[113,-32,64,-0.12761042662111935],[113,-32,65,-0.07594200472698093],[113,-32,66,-0.03542547445455267],[113,-32,67,-0.01788140873297378],[113,-32,68,-0.06263897431678167],[113,-32,69,-0.0873701629000556],[113,-32,70,-0.023981252829693437],[113,-32,71,-0.002951392199776288],[113,-32,72,-0.02065569577169956],[113,-32,73,-0.03624036253014972],[113,-32,74,-0.07778576377251817],[113,-32,75,-0.11036161636142514],[113,-32,76,-0.11790570281516852],[113,-32,77,-0.10153269217419285],[113,-32,78,-0.06880626983865824],[113,-32,79,-0.05431718616321608],[113,-31,64,-0.1251009981348807],[113,-31,65,-0.07510923324592292],[113,-31,66,-0.035160588327348495],[113,-31,67,-0.017766270842692274],[113,-31,68,-0.06210605757676137],[113,-31,69,-0.08670609841621303],[113,-31,70,-0.024442615520247627],[113,-31,71,-0.003204651269557305],[113,-31,72,-0.02057737275217062],[113,-31,73,-0.03591247784941191],[113,-31,74,-0.07641059889232314],[113,-31,75,-0.10825917353719329],[113,-31,76,-0.11595855029511426],[113,-31,77,-0.10005701359821204],[113,-31,78,-0.06801638478593992],[113,-31,79,-0.054204614575507536],[113,-30,64,-0.12266415857172774],[113,-30,65,-0.07430252934660994],[113,-30,66,-0.03491127769087387],[113,-30,67,-0.017661735522058297],[113,-30,68,-0.06157374811948117],[113,-30,69,-0.08603441562725396],[113,-30,70,-0.024876755130872206],[113,-30,71,-0.0034531639068194715],[113,-30,72,-0.02050771410297441],[113,-30,73,-0.0356043302807134],[113,-30,74,-0.07507433283579755],[113,-30,75,-0.10620867726514185],[113,-30,76,-0.11406484163178093],[113,-30,77,-0.09862774479990846],[113,-30,78,-0.06724980130684952],[113,-30,79,-0.05408863548588936],[113,-29,64,-0.12029826024326018],[113,-29,65,-0.07352126304339913],[113,-29,66,-0.03467697919684258],[113,-29,67,-0.017567445031689607],[113,-29,68,-0.06104294067241208],[113,-29,69,-0.08535654717698729],[113,-29,70,-0.025284824017100277],[113,-29,71,-0.003696976376246284],[113,-29,72,-0.020446368954083326],[113,-29,73,-0.035314913982656314],[113,-29,74,-0.0737759992822691],[113,-29,75,-0.10420939229831341],[113,-29,76,-0.11222383112827118],[113,-29,77,-0.09724418338190803],[113,-29,78,-0.06650642203324916],[113,-29,79,-0.05396992744268629],[113,-28,64,-0.11800167555733444],[113,-28,65,-0.07276482937169154],[113,-28,66,-0.03445715495209663],[113,-28,67,-0.017483056149515647],[113,-28,68,-0.060514509143267316],[113,-28,69,-0.08467389880805247],[113,-28,70,-0.025667978779747788],[113,-28,71,-0.003936160986331434],[113,-28,72,-0.02039301957490336],[113,-28,73,-0.0350432684212748],[113,-28,74,-0.07251464081549991],[113,-28,75,-0.10226056303050914],[113,-28,76,-0.11043476311080636],[113,-28,77,-0.09590562863351075],[113,-28,78,-0.06578614965498644],[113,-28,79,-0.053849167884253375],[113,-27,64,-0.11577279810421644],[113,-27,65,-0.07203264810158637],[113,-27,66,-0.0342512923284639],[113,-27,67,-0.01740824031535605],[113,-27,68,-0.05998930643288616],[113,-27,69,-0.08398784817953958],[113,-27,70,-0.026027377920805225],[113,-27,71,-0.00417081468689077],[113,-27,72,-0.020347380326540952],[113,-27,73,-0.034788477243830114],[113,-27,74,-0.07128930933636062],[113,-27,75,-0.10036141519771358],[113,-27,76,-0.10869687356987537],[113,-27,77,-0.09461138287009124],[113,-27,78,-0.0650888873915265],[113,-27,79,-0.05372703205338886],[113,-26,64,-0.11361004363129398],[113,-26,65,-0.07132416339858934],[113,-26,66,-0.03405890371820226],[113,-26,67,-0.017342683736653788],[113,-26,68,-0.059468164358765126],[113,-26,69,-0.08329974387995286],[113,-26,70,-0.026364179671322874],[113,-26,71,-0.0044010577275643845],[113,-26,72,-0.020309196627442228],[113,-26,73,-0.034549667068918974],[113,-26,74,-0.07009906637660382],[113,-26,75,-0.09851115749740808],[113,-26,76,-0.10700939170938342],[113,-26,77,-0.09336075267609784],[113,-26,78,-0.06441453945664136],[113,-26,79,-0.053604192017150505],[113,-25,64,-0.11151185090928016],[113,-25,65,-0.07063884343579087],[113,-25,66,-0.03387952623878766],[113,-25,67,-0.017286087457113856],[113,-25,68,-0.058951893686083875],[113,-25,69,-0.08261090463173175],[113,-25,70,-0.026679539991434277],[113,-25,71,-0.004627032380234015],[113,-25,72,-0.020278243937001155],[113,-25,73,-0.0343260062008835],[113,-25,74,-0.06894298331674159],[113,-25,75,-0.09670898312417042],[113,-25,76,-0.10537154140382805],[113,-25,77,-0.092153050053307],[113,-25,78,-0.06376301151627918],[113,-25,79,-0.05348131579106202],[113,-24,64,-0.10947668249296175],[113,-24,65,-0.06997617996178064],[113,-24,66,-0.03371272139075229],[113,-24,67,-0.01723816739005252],[113,-24,68,-0.058441284262939056],[113,-24,69,-0.08192261868310174],[113,-24,70,-0.02697461074207452],[113,-24,71,-0.00484890172798062],[113,-24,72,-0.020254326761475865],[113,-24,73,-0.0341167032761576],[113,-24,74,-0.06782014151096206],[113,-24,75,-0.09495407122017084],[113,-24,76,-0.1037825425637149],[113,-24,77,-0.0909875934761203],[113,-24,78,-0.06313421113974393],[113,-24,79,-0.05335906656633505],[113,-23,64,-0.10750302537951544],[113,-23,65,-0.06933568782832927],[113,-23,66,-0.033558074672145354],[113,-23,67,-0.01719865431824084],[113,-23,68,-0.05793710525633984],[113,-23,69,-0.08123614338258571],[113,-23,70,-0.02725053802733141],[113,-23,71,-0.005066848522792653],[113,-23,72,-0.020237277686164335],[113,-23,73,-0.03392100584870639],[113,-23,74,-0.06672963232183797],[113,-23,75,-0.09324558823927193],[113,-23,76,-0.10224161240952488],[113,-23,77,-0.08986370885575963],[113,-23,78,-0.0625280482442718],[113,-23,79,-0.05323810203837507],[113,-22,64,-0.10558939156761153],[113,-22,65,-0.06871690448181882],[113,-22,66,-0.03341519515323153],[113,-22,67,-0.017167293862173923],[113,-22,68,-0.057440105485554824],[113,-22,69,-0.08055270493128483],[113,-22,70,-0.027508460705982934],[113,-22,71,-0.005281074114067872],[113,-22,72,-0.02022695643763975],[113,-22,73,-0.03373819892143178],[113,-22,74,-0.06567055706757448],[113,-22,75,-0.09158268922372066],[113,-22,76,-0.10074796665478478],[113,-22,77,-0.0887807304153955],[113,-22,78,-0.06194443553318736],[113,-22,79,-0.05311907383464203],[113,-21,64,-0.10373431852057717],[113,-21,65,-0.06811938942223913],[113,-21,66,-0.03328371501496118],[113,-21,67,-0.01714384641872974],[113,-21,68,-0.05695101384936185],[113,-21,69,-0.07987349830777576],[113,-21,70,-0.02774950907033293],[113,-21,71,-0.005491797449677266],[113,-21,72,-0.020223248979579],[113,-21,73,-0.03356760343001255],[113,-21,74,-0.06464202688442724],[113,-21,75,-0.08996451899258372],[113,-21,76,-0.09930082059893014],[113,-21,77,-0.08773800147832139],[113,-21,78,-0.06138328892783571],[113,-21,79,-0.05300262703969818],[113,-20,64,-0.10193636953679527],[113,-20,65,-0.06754272363328741],[113,-20,66,-0.03316328905456532],[113,-20,67,-0.017128087072114776],[113,-20,68,-0.05647053984365866],[113,-20,69,-0.07919968736017367],[113,-20,70,-0.027974803689976575],[113,-20,71,-0.005699254151014699],[113,-20,72,-0.020226066645363704],[113,-20,73,-0.033408574685136895],[113,-20,74,-0.06364316250668833],[113,-20,75,-0.08839021324113656],[113,-20,76,-0.09789939013067472],[113,-20,77,-0.086734875171265],[113,-20,78,-0.06084452799342857],[113,-20,79,-0.05288939981500737],[113,-19,64,-0.10019413403066722],[113,-19,65,-0.06698650898703119],[113,-19,66,-0.033053594161617],[113,-19,67,-0.017119805479090776],[113,-19,68,-0.05599937416598692],[113,-19,69,-0.07853240505983305],[113,-19,70,-0.028185454417872385],[113,-19,71,-0.005903695663332787],[113,-19,72,-0.02023534531050197],[113,-19,73,-0.03326050077877314],[113,-19,74,-0.06267309396660185],[113,-19,75,-0.08685889955065879],[113,-19,76,-0.09654289264278727],[113,-19,77,-0.08577071504503293],[113,-19,78,-0.060328076359023416],[113,-19,79,-0.05278002311093703],[113,-18,64,-0.0985062277274292],[113,-18,65,-0.0664503676264046],[113,-18,66,-0.0329543287677982],[113,-18,67,-0.017118805730488313],[113,-18,68,-0.055538189403570005],[113,-18,69,-0.0778727539110543],[113,-18,70,-0.028382559555800612],[113,-18,71,-0.0061053884824385455],[113,-18,72,-0.020251044607661615],[113,-18,73,-0.033122800959683896],[113,-18,74,-0.061730960216392364],[113,-18,75,-0.085369698308189],[113,-18,76,-0.09523054785924571],[113,-18,77,-0.08484489561470086],[113,-18,78,-0.05983386213187229],[113,-18,79,-0.052675120468288227],[113,-17,64,-0.09687129277500119],[113,-17,65,-0.06593394132850702],[113,-17,66,-0.03286521227337812],[113,-17,67,-0.017124906190892266],[113,-17,68,-0.05508764080141175],[113,-17,69,-0.07722180651099265],[113,-17,70,-0.028567205175935313],[113,-17,71,-0.006304613458549097],[113,-17,72,-0.020273147186806017],[113,-17,73,-0.03299492398288588],[113,-17,74,-0.06081590867435111],[113,-17,75,-0.08392172353583503],[113,-17,76,-0.09396157857571545],[113,-17,77,-0.08395680282146113],[113,-17,78,-0.05936181830629725],[113,-17,79,-0.05257530790647794],[113,-16,64,-0.09528799777611165],[113,-16,65,-0.06543689085157638],[113,-16,66,-0.032785984453376625],[113,-16,67,-0.017137939318460037],[113,-16,68,-0.05464836710717483],[113,-16,69,-0.0765806062540332],[113,-16,70,-0.028740464595137936],[113,-16,71,-0.00650166517802449],[113,-16,72,-0.020301658022799814],[113,-16,73,-0.03287634643741845],[113,-16,74,-0.059927094696832356],[113,-16,75,-0.08251408362940807],[113,-16,76,-0.09273521131442168],[113,-16,77,-0.0831058344182926],[113,-16,78,-0.05891188316733318],[113,-16,79,-0.052481193895487964],[113,-15,64,-0.09375503774387278],[113,-15,65,-0.06495889526830312],[113,-15,66,-0.03271640484625144],[113,-15,67,-0.01715775146680702],[113,-15,68,-0.05422099148965124],[113,-15,69,-0.0759501681749153],[113,-15,70,-0.02890339799840454],[113,-15,71,-0.006696851423526777],[113,-15,72,-0.02033660377263434],[113,-15,73,-0.03276657105634919],[113,-15,74,-0.05906368097782094],[113,-15,75,-0.08114588200622701],[113,-15,76,-0.09155067689451066],[113,-15,77,-0.08229140028157214],[113,-15,78,-0.05848400068938739],[113,-15,79,-0.05239337940864486],[113,-14,64,-0.09227113398382224],[113,-14,65,-0.06449965128783802],[113,-14,66,-0.03265625212768173],[113,-14,67,-0.017184202670739706],[113,-14,68,-0.053806122527647035],[113,-14,69,-0.07533147992484877],[113,-14,70,-0.029057052207683683],[113,-14,71,-0.006890492712953537],[113,-14,72,-0.020378032184172216],[113,-14,73,-0.03266512501244468],[113,-14,74,-0.05822483687746141],[113,-14,75,-0.0798162176619313],[113,-14,76,-0.09040721091891779],[113,-14,77,-0.08151292265059198],[113,-14,78,-0.058078120930078594],[113,-14,79,-0.05231245805316816],[113,-13,64,-0.09083501839508008],[113,-13,65,-0.06405886811356468],[113,-13,66,-0.032605348583047124],[113,-13,67,-0.017217179039222867],[113,-13,68,-0.05340432573145546],[113,-13,69,-0.07472546514486506],[113,-13,70,-0.029202425332952416],[113,-13,71,-0.007082872945578358],[113,-13,72,-0.0204259623744835],[113,-13,73,-0.03257157429056725],[113,-13,74,-0.057409772412118844],[113,-13,75,-0.07852420643713436],[113,-13,76,-0.0893040670510857],[113,-13,77,-0.08076984184735708],[113,-13,78,-0.05769418559665655],[113,-13,79,-0.05223898343793756],[113,-12,64,-0.08944534021513541],[113,-12,65,-0.06363624152418737],[113,-12,66,-0.032563723490345],[113,-12,67,-0.017256674505463653],[113,-12,68,-0.053015924659742836],[113,-12,69,-0.07413272919555577],[113,-12,70,-0.0293402302386758],[113,-12,71,-0.0072739162040328315],[113,-12,72,-0.0204800615449337],[113,-12,73,-0.03248563321543507],[113,-12,74,-0.05661797292044464],[113,-12,75,-0.07726912347643236],[113,-12,76,-0.08824060461276366],[113,-12,77,-0.08006165499477835],[113,-12,78,-0.057332031459035496],[113,-12,79,-0.05217325398277321],[113,-11,64,-0.08810075757873223],[113,-11,65,-0.06323148323417094],[113,-11,66,-0.03253149688479695],[113,-11,67,-0.017302731354491733],[113,-11,68,-0.052641120504284065],[113,-11,69,-0.07355371173862225],[113,-11,70,-0.029471041410275824],[113,-11,71,-0.007463404327164253],[113,-11,72,-0.02053986697245895],[113,-11,73,-0.03240710395878454],[113,-11,74,-0.05584905976570058],[113,-11,75,-0.07605032328235127],[113,-11,76,-0.08721623763522608],[113,-11,77,-0.0793878964725738],[113,-11,78,-0.056991458498924424],[113,-11,79,-0.05211546177606021],[113,-10,64,-0.08679999617465499],[113,-10,65,-0.06284433762227436],[113,-10,66,-0.03250878751991217],[113,-10,67,-0.017355393880192912],[113,-10,68,-0.05228009832521044],[113,-10,69,-0.0729888222446952],[113,-10,70,-0.029595421160702944],[113,-10,71,-0.007651153500487035],[113,-10,72,-0.020604963627764126],[113,-10,73,-0.03233581846010276],[113,-10,74,-0.05510266630872546],[113,-10,75,-0.07486716669716521],[113,-10,76,-0.08623038966359266],[113,-10,77,-0.0787481188046955],[113,-10,78,-0.05667228394222421],[113,-10,79,-0.05206581156419356],[113,-9,64,-0.08554184562540401],[113,-9,65,-0.0624745796691637],[113,-9,66,-0.032495713225230746],[113,-9,67,-0.017414708759928135],[113,-9,68,-0.051933029032182484],[113,-9,69,-0.07243844234367677],[113,-9,70,-0.029713920076126898],[113,-9,71,-0.007837012570426745],[113,-9,72,-0.020674981806798956],[113,-9,73,-0.0322716357536294],[113,-9,74,-0.054378436329590704],[113,-9,75,-0.07371902052518349],[113,-9,76,-0.08528249389413864],[113,-9,77,-0.07814189246320906],[113,-9,78,-0.0563743418333108],[113,-9,79,-0.05202451956101586],[113,-8,64,-0.08432515576525934],[113,-8,65,-0.062122012926039555],[113,-8,66,-0.032492391719569406],[113,-8,67,-0.017480725641233586],[113,-8,68,-0.05160007069812062],[113,-8,69,-0.0719029273560808],[113,-8,70,-0.02982707679140773],[113,-8,71,-0.008020860501761576],[113,-8,72,-0.02074959392579899],[113,-8,73,-0.03221443975770917],[113,-8,74,-0.053676023238069366],[113,-8,75,-0.0726052575987612],[113,-8,76,-0.08437199353177721],[113,-8,77,-0.0775688057587162],[113,-8,78,-0.056097482353907886],[113,-8,79,-0.051991811743486396],[113,-7,64,-0.08314883313843781],[113,-7,65,-0.061786467607397165],[113,-7,66,-0.03249894136987254],[113,-7,67,-0.01755349768451683],[113,-7,68,-0.05128136979958888],[113,-7,69,-0.07138260776229255],[113,-7,70,-0.02993541780349747],[113,-7,71,-0.008202603969429262],[113,-7,72,-0.02082851147708862],[113,-7,73,-0.03216413720288546],[113,-7,74,-0.052995089372082804],[113,-7,75,-0.07152525686995322],[113,-7,76,-0.0834983421113984],[113,-7,77,-0.07702846470939216],[113,-7,78,-0.05584157118617073],[113,-7,79,-0.0519679222935669],[113,-6,64,-0.08201183770779862],[113,-6,65,-0.06146779880324557],[113,-6,66,-0.032515481898504305],[113,-6,67,-0.017633082064221917],[113,-6,68,-0.050977062387368315],[113,-6,69,-0.07087779061220172],[113,-6,70,-0.03003945732195031],[113,-6,71,-0.008382175081127324],[113,-6,72,-0.02091148214113858],[113,-6,73,-0.032120655692810175],[113,-6,74,-0.052335305377635],[113,-6,75,-0.07047840352388463],[113,-6,76,-0.08266100378404388],[113,-6,77,-0.07652049288986065],[113,-6,78,-0.055606488917276084],[113,-6,79,-0.05195309217768809],[113,-5,64,-0.08091317976466811],[113,-5,65,-0.06116588480609035],[113,-5,66,-0.03254213504177168],[113,-5,67,-0.01771954043090824],[113,-5,68,-0.05068727519064002],[113,-5,69,-0.07038876087752974],[113,-5,70,-0.030139697155567486],[113,-5,71,-0.008559529226978314],[113,-5,72,-0.020998287050195692],[113,-5,73,-0.0320839418920778],[113,-5,74,-0.05169634966404189],[113,-5,75,-0.06946408911019242],[113,-5,76,-0.08185945356887911],[113,-5,77,-0.07604453126101118],[113,-5,78,-0.05539213048285974],[113,-5,79,-0.05194756785535821],[113,-4,64,-0.07985191703043369],[113,-4,65,-0.06088062554789329],[113,-4,66,-0.03257902516231954],[113,-4,67,-0.017812939336559072],[113,-4,68,-0.050412126657992905],[113,-4,69,-0.06991578274896779],[113,-4,70,-0.03023662663400389],[113,-4,71,-0.008734643052359516],[113,-4,72,-0.021088738198618773],[113,-4,73,-0.03205395983509329],[113,-4,74,-0.05107790792852215],[113,-4,75,-0.06848171168913571],[113,-4,76,-0.08109317757184463],[113,-4,77,-0.07560023798168042],[113,-4,78,-0.05519840464662222],[113,-4,79,-0.05195160010861877],[113,-3,64,-0.07882715194079568],[113,-3,65,-0.06061194114231956],[113,-3,66,-0.03262627981805642],[113,-3,67,-0.01791335062547059],[113,-3,68,-0.05015172793843287],[113,-3,69,-0.06945910088020403],[113,-3,70,-0.03033072256312769],[113,-3,71,-0.00890751254996361],[113,-3,72,-0.02118267599501132],[113,-3,73,-0.03203068935022582],[113,-3,74,-0.05047967274458795],[113,-3,75,-0.067530675989311],[113,-3,76,-0.08036167317191785],[113,-3,77,-0.07518728820308204],[113,-3,78,-0.05502523351354921],[113,-3,79,-0.051965442984361065],[113,-2,64,-0.07783802910375369],[113,-2,65,-0.06035977052758989],[113,-2,66,-0.03268403029017486],[113,-2,67,-0.018020851792995455],[113,-2,68,-0.04990618380542791],[113,-2,69,-0.06901894158079103],[113,-2,70,-0.03042244921282537],[113,-2,71,-0.009078151267092304],[113,-2,72,-0.02127996695117268],[113,-2,73,-0.03201412459359586],[113,-2,74,-0.0499013432089878],[113,-2,75,-0.06661039357419248],[113,-2,76,-0.07966444917589556],[113,-2,77,-0.07480537384675447],[113,-2,78,-0.05487255207424326],[113,-2,79,-0.051989352841756854],[113,-1,64,-0.07688373292254971],[113,-1,65,-0.06012407020523053],[113,-1,66,-0.03275241207267639],[113,-1,67,-0.01813552631428222],[113,-1,68,-0.04967559352683818],[113,-1,69,-0.06859551395964474],[113,-1,70,-0.030512258335812222],[113,-1,71,-0.009246588624082511],[113,-1,72,-0.021380501502787086],[113,-1,73,-0.03200427268689942],[113,-1,74,-0.04934262464221362],[113,-1,75,-0.0657202830149397],[113,-1,76,-0.07900102594254252],[113,-1,77,-0.07445420336664636],[113,-1,78,-0.05474030777787466],[113,-1,79,-0.05202358749727372],[113,0,64,-0.07596348537507364],[113,0,65,-0.05990481307013105],[113,0,66,-0.03283156532579211],[113,0,67,-0.0182574639451492],[113,0,68,-0.049460051683522306],[113,0,69,-0.06818901102093076],[113,0,70,-0.030600589216015106],[113,0,71,-0.009412868339799922],[113,0,72,-0.021484191956806648],[113,0,73,-0.03200115245385886],[113,0,74,-0.04880322833794792],[113,0,75,-0.06485977006723338],[113,0,76,-0.07837093547699642],[113,0,77,-0.07413350149593087],[113,0,78,-0.05462846013139022],[113,0,79,-0.052068405460086765],[113,1,64,-0.07507654394149103],[113,1,65,-0.05970198732737631],[113,1,66,-0.032921635295576304],[113,1,67,-0.018386760997137503],[113,1,68,-0.04925964893927831],[113,1,69,-0.06779961071400464],[113,1,70,-0.03068786874505335],[113,1,71,-0.009577046960143464],[113,1,72,-0.021590970560499412],[113,1,73,-0.0320047932500323],[113,1,74,-0.04828287135714428],[113,1,75,-0.06402828785017536],[113,1,76,-0.0777737214963131],[113,1,77,-0.07384300897904703],[113,1,78,-0.0545369803226841],[113,1,79,-0.052124065250980595],[113,2,64,-0.07422219967202533],[113,2,65,-0.05951559549132845],[113,2,66,-0.033022772701791825],[113,2,67,-0.018523520588648913],[113,2,68,-0.04907447276460095],[113,2,69,-0.06742747693893157],[113,2,70,-0.030774511525260655],[113,2,71,-0.009739192485455761],[113,2,72,-0.02170078768709545],[113,2,73,-0.032015233880807924],[113,2,74,-0.04778127636267344],[113,2,75,-0.06322527702547395],[113,2,76,-0.07720893946697437],[113,2,77,-0.07358248228934833],[113,2,78,-0.05446585086546833],[113,2,79,-0.05219082479809296],[113,3,64,-0.07339977538716314],[113,3,65,-0.05934565346258037],[113,3,66,-0.03313513409615788],[113,3,67,-0.018667852874041126],[113,3,68,-0.048904608116672035],[113,3,69,-0.06707276050909892],[113,3,70,-0.030860919997740755],[113,3,71,-0.009899383092837603],[113,3,72,-0.02181361013307947],[113,3,73,-0.032032521602632945],[113,3,74,-0.04729817149082877],[113,3,75,-0.062450185975446264],[113,3,76,-0.0766761566152332],[113,3,77,-0.07335169333271659],[113,3,78,-0.05441506526370896],[113,3,79,-0.05226894090320901],[113,4,64,-0.07260862400282335],[113,4,65,-0.05919218967848878],[113,4,66,-0.03325888219291461],[113,4,67,-0.01881987525245775],[113,4,68,-0.048750138077883275],[113,4,69,-0.06673560007236723],[113,4,70,-0.0309474845939537],[113,4,71,-0.010057705949417997],[113,4,72,-0.021929419522247022],[113,4,73,-0.03205671120269942],[113,4,74,-0.04683329025627779],[113,4,75,-0.06170247097860426],[113,4,76,-0.07617495191117271],[113,4,77,-0.07315042913744277],[113,4,78,-0.05438462769358155],[113,4,79,-0.05235866877262717],[113,5,64,-0.07184812697323703],[113,5,65,-0.059055244333036605],[113,5,66,-0.033394186173495426],[113,5,67,-0.018979712558022166],[113,5,68,-0.04861114445502143],[113,5,69,-0.06641612299209225],[113,5,70,-0.03103458390928863],[113,5,71,-0.010214256112639365],[113,5,72,-0.02204821081166837],[113,5,73,-0.03208786415243248],[113,5,74,-0.04638637148726883],[113,5,75,-0.06098159638175901],[113,5,76,-0.07570491602730373],[113,5,77,-0.07297849153057677],[113,5,78,-0.05437455270093877],[113,5,79,-0.052460261606891344],[113,6,64,-0.07111769284464886],[113,6,65,-0.058934868661936445],[113,6,66,-0.03354122196703273],[113,6,67,-0.01914749723297767],[113,6,68,-0.0484877083411893],[113,6,69,-0.06611444618935715],[113,6,70,-0.031122584897167266],[113,6,71,-0.010369135513767884],[113,6,72,-0.022169990894875643],[113,6,73,-0.03212604783037441],[113,6,74,-0.04595715928824879],[113,6,75,-0.060287034767862145],[113,6,76,-0.07526565127258704],[113,6,77,-0.07283569680095],[113,6,78,-0.05438486491242064],[113,6,79,-0.05257397024404819],[113,7,64,-0.07041675591321905],[113,7,65,-0.058831124289001224],[113,7,66,-0.033700172508317354],[113,7,67,-0.019323369485266008],[113,7,68,-0.04837991064243152],[113,7,69,-0.0658306769477082],[113,7,70,-0.0312118430822582],[113,7,71,-0.010522452020924816],[113,7,72,-0.022294777297696803],[113,7,73,-0.03217133481024671],[113,7,74,-0.045545403027300445],[113,7,75,-0.059618267118996086],[113,7,76,-0.07485677150277585],[113,7,77,-0.07272187534904889],[113,7,78,-0.05441559875843645],[113,7,79,-0.05270004285141646],[113,8,64,-0.06974477498075006],[113,8,65,-0.05874408262986639],[113,8,66,-0.033871227974654444],[113,8,67,-0.01950747743187559],[113,8,68,-0.04828783257087478],[113,8,69,-0.06556491368159846],[113,8,70,-0.031302702791380366],[113,8,71,-0.010674318577996238],[113,8,72,-0.022422596962250473],[113,8,73,-0.032223802210122415],[113,8,74,-0.04515085734602881],[113,8,75,-0.05897478297408283],[113,8,76,-0.07447790200793492],[113,8,77,-0.07263687132383431],[113,8,78,-0.05446679820629216],[113,8,79,-0.05283872466112555],[113,9,64,-0.06910123220221089],[113,9,65,-0.0586738243493295],[113,9,66,-0.03405458600300382],[113,9,67,-0.019699977229251642],[113,9,68,-0.04821155610614994],[113,9,69,-0.06531724666976604],[113,9,70,-0.03139549740078688],[113,9,71,-0.010824852415952328],[113,9,72,-0.022553485114814597],[113,9,73,-0.032283531098898505],[113,9,74,-0.04477328218982561],[113,9,75,-0.05835608058111867],[113,9,76,-0.07412867937806361],[113,9,77,-0.07258054224664233],[113,9,78,-0.05453851650188551],[113,9,79,-0.05299025774505151],[113,10,64,-0.0684856320193144],[113,10,65,-0.058620438868700345],[113,10,66,-0.03425045188868473],[113,10,67,-0.01990103319196538],[113,10,68,-0.04815116442677192],[113,10,69,-0.06508775875475034],[113,10,70,-0.0314905495985852],[113,10,71,-0.010974174333227366],[113,10,72,-0.02268748421343422],[113,10,73,-0.032350605956457786],[113,10,74,-0.04441244285667619],[113,10,75,-0.05776166704391136],[113,10,76,-0.07380875134776718],[113,10,77,-0.07255275862228824],[113,10,78,-0.05463081591849428],[113,10,79,-0.053154880825099456],[113,11,64,-0.06789750017465208],[113,11,65,-0.05858402391962702],[113,11,66,-0.03445903876675262],[113,11,67,-0.020110817900683718],[113,11,68,-0.0481067423130092],[113,11,69,-0.06487652600967866],[113,11,70,-0.03158817166107523],[113,11,71,-0.011122408041908501],[113,11,72,-0.022824642971262295],[113,11,73,-0.03242511418407622],[113,11,74,-0.04406811006286669],[113,11,75,-0.057191058463430255],[113,11,76,-0.07351777662089952],[113,11,77,-0.07255340353745324],[113,11,78,-0.054743767511236684],[113,11,79,-0.053332829115048046],[113,12,64,-0.06733638280122446],[113,12,65,-0.05856468514105845],[113,12,66,-0.03468056777711409],[113,12,67,-0.020329512300450908],[113,12,68,-0.04807837652275117],[113,12,69,-0.06468361837349829],[113,12,70,-0.0316886657419193],[113,12,71,-0.01126967957666758],[113,12,72,-0.022965015451847544],[113,12,73,-0.03250714566188712],[113,12,74,-0.043740060024209784],[113,12,75,-0.05664378007407318],[113,12,76,-0.07325542467617661],[113,12,77,-0.0725823722464907],[113,12,78,-0.05487745087594137],[113,12,79,-0.05352433419053677],[113,13,64,-0.06680184558249119],[113,13,65,-0.05856253571613268],[113,13,66,-0.03491526821433104],[113,13,67,-0.020557305790191778],[113,13,68,-0.048066156141793825],[113,13,69,-0.06450910025581354],[113,13,70,-0.03179232417314045],[113,13,71,-0.01141611676352241],[113,13,72,-0.023108660232773137],[113,13,73,-0.03259679235042671],[113,13,74,-0.04342807455162246],[113,13,75,-0.05611936637530643],[113,13,76,-0.07302137555478873],[113,13,77,-0.0726395717448073],[113,13,78,-0.05503195391126557],[113,13,79,-0.05372962388408131],[113,14,64,-0.06629347297830145],[113,14,65,-0.05857769604587044],[113,14,66,-0.035163377662917564],[113,14,67,-0.020794396304210292],[113,14,68,-0.0480701729098501],[113,14,69,-0.06435303111244293],[113,14,70,-0.031899429776993796],[113,14,71,-0.011561848745623503],[113,14,72,-0.023255639634196624],[113,14,73,-0.032694147933451545],[113,14,74,-0.04313194116004647],[113,14,75,-0.055617361259229],[113,14,76,-0.07281531963103362],[113,14,77,-0.07272492032995588],[113,14,78,-0.05520737258297018],[113,14,79,-0.05394892220226212],[113,15,64,-0.06581086751239497],[113,15,65,-0.058610293456759034],[113,15,66,-0.035425142118904684],[113,15,67,-0.02104099038644046],[113,15,68,-0.048090521523583056],[113,15,69,-0.064215465992869],[113,15,70,-0.032010256187906004],[113,15,71,-0.01170700556347559],[113,15,72,-0.023406019009095218],[113,15,73,-0.03279930749948598],[113,15,74,-0.04285145318994127],[113,15,75,-0.055137318134787394],[113,15,76,-0.07263695736708797],[113,15,77,-0.07283834715067745],[113,15,78,-0.05540381068942944],[113,15,79,-0.05418244926259098],[113,16,64,-0.06535364911739908],[113,16,65,-0.05866046193939896],[113,16,66,-0.03570081609829683],[113,16,67,-0.02129730325806514],[113,16,68,-0.048127299917849385],[113,16,69,-0.06409645606071512],[113,16,70,-0.0321250681837356],[113,16,71,-0.011851717787127427],[113,16,72,-0.023559866092186216],[113,16,73,-0.032912367259727765],[113,16,74,-0.04258640994072684],[113,16,75,-0.05467880004945478],[113,16,76,-0.07248599905303287],[113,16,77,-0.07297979174412357],[113,16,78,-0.05562137962752026],[113,16,79,-0.054430421247802716],[113,17,64,-0.06492145453354625],[113,17,65,-0.058728341915576965],[113,17,66,-0.035990662733012824],[113,17,67,-0.021563558879097278],[113,17,68,-0.04818060952633587],[113,17,69,-0.06399604908844171],[113,17,70,-0.03224412202575293],[113,17,71,-0.011996116198068925],[113,17,72,-0.02371725040473956],[113,17,73,-0.03303342430018895],[113,17,74,-0.042336616815752987],[113,17,75,-0.05424137980932701],[113,17,76,-0.07236216453334371],[113,17,77,-0.07314920356159918],[113,17,78,-0.05586019815820149],[113,17,79,-0.05469305037565605],[113,18,64,-0.0645139367575529],[113,18,65,-0.05881408003121879],[113,18,66,-0.03629495385476189],[113,18,67,-0.021839990004383587],[113,18,68,-0.048250555522654705],[113,18,69,-0.0639142899273963],[113,18,70,-0.03236766580677765],[113,18,71,-0.012140331518683909],[113,18,72,-0.023878242712657417],[113,18,73,-0.03316257636611121],[113,18,74,-0.0421018854784931],[113,18,75,-0.0538246400986437],[113,18,76,-0.07226518292105102],[113,18,77,-0.0733465414831706],[113,18,78,-0.05612039217115805],[113,18,79,-0.054970544882554435],[113,19,64,-0.06413076453838333],[113,19,65,-0.05891782897284982],[113,19,66,-0.036613970067265945],[113,19,67,-0.022126838234460197],[113,19,68,-0.04833724704297517],[113,19,69,-0.06385122095443985],[113,19,70,-0.032495939807080126],[113,19,71,-0.012284494187330994],[113,19,72,-0.024042914535461226],[113,19,73,-0.03329992167693676],[113,19,74,-0.041882034019836735],[113,19,75,-0.05342817359987043],[113,19,76,-0.07219479230087754],[113,19,77,-0.07357177332160258],[113,19,78,-0.05640209444804492],[113,19,79,-0.05526310901960792],[113,20,64,-0.0637716219168756],[113,20,65,-0.05903974730535037],[113,20,66,-0.036948000807180144],[113,20,67,-0.0224243540616367],[113,20,68,-0.04844079739121841],[113,20,69,-0.06380688249636104],[113,20,70,-0.03262917685773641],[113,20,71,-0.012428734177276635],[113,20,72,-0.02421133770402954],[113,20,73,-0.03344555877032548],[113,20,74,-0.04167688713650276],[113,20,75,-0.053051583115555405],[113,20,76,-0.07215073942271683],[113,20,77,-0.07382487531617245],[113,20,78,-0.05670544442399853],[113,20,79,-0.05557094306003376],[113,21,64,-0.06343620780639941],[113,21,65,-0.05917999932887326],[113,21,66,-0.037297344393940564],[113,21,67,-0.022732796911568102],[113,21,68,-0.048561324227767676],[113,21,69,-0.06378131323328871],[113,21,70,-0.03276760271120536],[113,21,71,-0.012573180857844653],[113,21,72,-0.0243835839651177],[113,21,73,-0.03359958637386623],[113,21,74,-0.041486276320682115],[113,21,75,-0.05269448169321479],[113,21,76,-0.07213277938683964],[113,21,77,-0.07410583161695561],[113,21,78,-0.057030587947159414],[113,21,79,-0.055894243317003156],[113,22,64,-0.06312423561198212],[113,22,65,-0.05933875495298845],[113,22,66,-0.037662308068760274],[113,22,67,-0.023052435180572425],[113,22,68,-0.048698949742661146],[113,22,69,-0.06377455058236897],[113,22,70,-0.03291143641903528],[113,22,71,-0.012717962896345782],[113,22,72,-0.024559724630940395],[113,22,73,-0.033762103303370115],[113,22,74,-0.04131004006117304],[113,22,75,-0.05235649275459307],[113,22,76,-0.0721406753223245],[113,22,77,-0.07441463376032098],[113,22,78,-0.05737767703612608],[113,22,79,-0.056233202171341354],[113,23,64,-0.06283543288556125],[113,23,65,-0.05951618958624821],[113,23,66,-0.038043208022933296],[113,23,67,-0.023383546268891286],[113,23,68,-0.04885380081420251],[113,23,69,-0.06378663106299913],[113,23,70,-0.03306089071671161],[113,23,71,-0.012863208199517041],[113,23,72,-0.024739830272316212],[113,23,73,-0.03393320838682555],[113,23,74,-0.041148024056382085],[113,23,75,-0.052037250230702416],[113,23,76,-0.07217419806027182],[113,23,77,-0.07475128013647823],[113,23,78,-0.05774686963538406],[113,23,79,-0.056588008108723865],[113,24,64,-0.06256954101519314],[113,24,65,-0.05971248403946496],[113,24,66,-0.03844036941551335],[113,24,67,-0.023726416610005994],[113,24,68,-0.049026009153865055],[113,24,69,-0.0638175906448931],[113,24,70,-0.033216172415718295],[113,24,71,-0.013009043893324496],[113,24,72,-0.02492397045405011],[113,24,73,-0.03411300041324912],[113,24,74,-0.04100008143962486],[113,24,75,-0.0517363987040534],[113,24,76,-0.07223312580340069],[113,24,77,-0.07511577544999523],[113,24,78,-0.05813832936884913],[113,24,79,-0.05695884576621416],[113,25,64,-0.06232631494628535],[113,25,65,-0.05992782444117607],[113,25,66,-0.038854126380443575],[113,25,67,-0.024081341696127277],[113,25,68,-0.04921571143839161],[113,25,69,-0.06386746508032339],[113,25,70,-0.0333774828030231],[113,25,71,-0.013155596340177166],[113,25,72,-0.025112213511478482],[113,25,73,-0.03430157810588812],[113,25,74,-0.04086607301728144],[113,25,75,-0.051453593559556414],[113,25,76,-0.07231724379373727],[113,25,77,-0.07550813017437058],[113,25,78,-0.05855222529184142],[113,25,79,-0.05734589598825293],[113,26,64,-0.062105522933116976],[113,26,65,-0.06016240216389058],[113,26,66,-0.03928482202315672],[113,26,67,-0.02444862609992634],[113,26,68,-0.049423049429971416],[113,26,69,-0.0639362902219028],[113,26,70,-0.03354501804829088],[113,26,71,-0.013302991192756214],[113,26,72,-0.025304626367311487],[113,26,73,-0.034499040119411],[113,26,74,-0.0407458675204454],[113,26,75,-0.051188501145607856],[113,26,76,-0.07242634398017929],[113,26,77,-0.07592836000186191],[113,26,78,-0.05898873164192998],[113,26,79,-0.05774933589242077],[113,27,64,-0.06190694631905282],[113,27,65,-0.06041641375981939],[113,27,66,-0.03973280840661399],[113,27,67,-0.024828583492520408],[113,27,68,-0.0496481700853363],[113,27,69,-0.06402410232726476],[113,27,70,-0.033718969619183574],[113,27,71,-0.01345135348377451],[113,27,72,-0.02550127438807619],[113,27,73,-0.03470548506086236],[113,27,74,-0.040639341870730226],[113,27,75,-0.05094079894685109],[113,27,76,-0.07256022468776802],[113,27,77,-0.07637648528988658],[113,27,78,-0.059448027589200855],[113,27,79,-0.05816933894547749],[113,28,64,-0.06173037934406896],[113,28,65,-0.06069006090494865],[113,28,66,-0.04019844652675111],[113,28,67,-0.025221536657726522],[113,28,68,-0.04989122565464514],[113,28,69,-0.06413093835205569],[113,28,70,-0.03389952470522811],[113,28,71,-0.013600807751163044],[113,28,72,-0.02570222127970218],[113,28,73,-0.034921011534364485],[113,28,74,-0.04054638146099601],[113,28,75,-0.050710175770148296],[113,28,76,-0.07271869029060932],[113,28,77,-0.07685253050547335],[113,28,78,-0.059930296986667936],[113,28,79,-0.05860607505041015],[113,29,64,-0.06157562897837663],[113,29,65,-0.06098355035044582],[113,29,66,-0.040682106277285114],[113,29,67,-0.025627817502579617],[113,29,68,-0.05015237377102522],[113,29,69,-0.06425683623268212],[113,29,70,-0.0340868666508173],[113,29,71,-0.013751478198322157],[113,29,72,-0.025907529021989697],[113,29,73,-0.03514571820971548],[113,29,74,-0.04046688045180908],[113,29,75,-0.05049633194530744],[113,29,76,-0.07290155089047348],[113,29,77,-0.07735652366940209],[113,29,78,-0.060435728121686724],[113,29,79,-0.05905971064541615],[113,30,64,-0.06144251478103772],[113,30,65,-0.061297093880477084],[113,30,66,-0.04118416640378792],[113,30,67,-0.026047767064060735],[113,30,68,-0.05043177753160453],[113,30,69,-0.06440183516023652],[113,30,70,-0.03428117539794483],[113,30,71,-0.013903488889165348],[113,30,72,-0.02611725784185113],[113,30,73,-0.03537970391515036],[113,30,74,-0.04040074208444206],[113,30,75,-0.050298979542051474],[113,30,76,-0.07310862200314325],[113,30,77,-0.07788849580177991],[113,30,78,-0.0609645134693382],[113,30,79,-0.05953040881589086],[113,31,64,-0.06133086878266134],[113,31,65,-0.06163090827566805],[113,31,66,-0.04170501444695548],[113,31,67,-0.026481735511999525],[113,31,68,-0.05072960557090782],[113,31,69,-0.06456597584708706],[113,31,70,-0.03448262793938777],[113,31,71,-0.014056963977854017],[113,31,72,-0.026331466225442763],[113,31,73,-0.035623067754725235],[113,31,74,-0.04034787901129969],[113,31,75,-0.05011784260475273],[113,31,76,-0.07333972425470123],[113,31,77,-0.07844848037099264],[113,31,78,-0.06151684944892085],[113,31,79,-0.06001832942069466],[113,32,64,-0.06124053539139111],[113,32,65,-0.061985215281563706],[113,32,66,-0.042245046675007586],[113,32,67,-0.026930082148115323],[113,32,68,-0.05104603212749654],[113,32,69,-0.06474930078762875],[113,32,70,-0.03469139878310796],[113,32,71,-0.014212027973230174],[113,32,72,-0.0265502109694757],[113,32,73,-0.035875909250924286],[113,32,74,-0.040308213644662125],[113,32,75,-0.04995265740641552],[113,32,76,-0.0735946830900272],[113,32,77,-0.07903651274813274],[113,32,78,-0.06209293618483329],[113,32,79,-0.06052362923413476],[113,33,64,-0.06117137132149119],[113,33,65,-0.06236024158151802],[113,33,66,-0.04280466800511669],[113,33,67,-0.02739317540111911],[113,33,68,-0.05138123710470506],[113,33,69,-0.06495185451467532],[113,33,70,-0.03490766042866808],[113,33,71,-0.014368806038035094],[113,33,72,-0.026773547272133612],[113,33,73,-0.03613832851319379],[113,33,74,-0.04028167852462207],[113,33,75,-0.0498031727233304],[113,33,76,-0.07387332849581903],[113,33,77,-0.0796526296691314],[113,33,78,-0.06269297727323293],[113,33,79,-0.06104646210521062],[113,34,64,-0.06112324554399034],[113,34,65,-0.06275621877359613],[113,34,66,-0.04338429191381213],[113,34,67,-0.027871392817837595],[113,34,68,-0.05173540612637285],[113,34,69,-0.06517368385302108],[113,34,70,-0.03513158385654423],[113,34,71,-0.014527424323138012],[113,34,72,-0.02700152886422157],[113,34,73,-0.036410426433274086],[113,34,74,-0.04026821670712613],[113,34,75,-0.04966915013181596],[113,34,76,-0.07417549474056828],[113,34,77,-0.080296868707019],[113,34,78,-0.0633171795560294],[113,34,79,-0.06158697913584386],[113,35,64,-0.06109603925893698],[113,35,65,-0.06317338335117625],[113,35,66,-0.04398434033632357],[113,35,67,-0.02836512105032931],[113,35,68,-0.05210873058848073],[113,35,69,-0.06541483817170014],[113,35,70,-0.03536333903125196],[113,35,71,-0.014688010337085892],[113,35,72,-0.027234208181317724],[113,35,73,-0.03669230490831508],[113,35,74,-0.0402677821730158],[113,35,75,-0.04955036432840258],[113,35,76,-0.07450102013399036],[113,35,77,-0.0809692677569066],[113,35,78,-0.06396575290391045],[113,35,79,-0.062145328879939066],[113,36,64,-0.06108964588889427],[113,36,65,-0.06361197668700998],[113,36,66,-0.0446052435548084],[113,36,67,-0.028874755838935413],[113,36,68,-0.05250140770758096],[113,36,69,-0.06567536963644957],[113,36,70,-0.035603095419208745],[113,36,71,-0.014850693351341943],[113,36,72,-0.02747163657781416],[113,36,73,-0.03698406709284457],[113,36,74,-0.04028034025892024],[113,36,75,-0.0494466034747348],[113,36,76,-0.07484974680845115],[113,36,77,-0.08166986453640604],[113,36,78,-0.06463891001019666],[113,36,79,-0.0627216575652009],[113,37,64,-0.061103971093412236],[113,37,65,-0.06407224502063959],[113,37,66,-0.04524744007547917],[113,37,67,-0.02940070199126437],[113,37,68,-0.052913640566960865],[113,37,69,-0.06595533346391261],[113,37,70,-0.035851022522310136],[113,37,71,-0.0150156048416813],[113,37,72,-0.027713864583895655],[113,37,73,-0.03728581768079518],[113,37,74,-0.040305868110855084],[113,37,75,-0.04935766956842226],[113,37,76,-0.07522152052503608],[113,37,77,-0.08239869610441355],[113,37,78,-0.06533686619749453],[113,37,79,-0.06331610933977323],[113,38,64,-0.061138932804288885],[113,38,65,-0.06455443944915809],[113,38,66,-0.04591137649466581],[113,38,67,-0.029943373357120058],[113,38,68,-0.053345638161483536],[113,38,69,-0.06625478817910363],[113,38,70,-0.03610729042820787],[113,38,71,-0.01518287896627496],[113,38,72,-0.027960942206623738],[113,38,73,-0.037597663218883186],[113,38,74,-0.04034435516134074],[113,38,75,-0.049283378840992494],[113,38,76,-0.07561619050695988],[113,38,77,-0.08315579840132975],[113,38,78,-0.06605983923923742],[113,38,79,-0.06392882654584414],[113,39,64,-0.061194461281471726],[113,39,65,-0.065058815921367],[113,39,66,-0.046597507353859695],[113,39,67,-0.03050319279937849],[113,39,68,-0.053797615442042805],[113,39,69,-0.06657379587762545],[113,39,70,-0.03637207037825784],[113,39,71,-0.01535265308101433],[113,39,72,-0.02821291927637434],[113,39,73,-0.0379197124526913],[113,39,74,-0.040395803630785876],[113,39,75,-0.04922356218398906],[113,39,76,-0.07603360930305379],[113,39,77,-0.08394120581392651],[113,39,78,-0.06680804919830696],[113,39,79,-0.06455995002241417],[113,40,64,-0.06127049918953211],[113,40,65,-0.0655856352355081],[113,40,66,-0.047306294983865356],[113,40,67,-0.031080592160883453],[113,40,68,-0.05426979336061127],[113,40,69,-0.06691242249413405],[113,40,70,-0.036645535354129635],[113,40,71,-0.01552506829270224],[113,40,72,-0.028469845840005913],[113,40,73,-0.038252076706911504],[113,40,74,-0.04046022905385103],[113,40,75,-0.049178065604189365],[113,40,76,-0.07647363268414277],[113,40,77,-0.08475495076825681],[113,40,78,-0.06758171828508164],[113,40,79,-0.06520961943951743],[113,41,64,-0.06136700169467404],[113,41,65,-0.06613516304080343],[113,41,66,-0.048038209338198676],[113,41,67,-0.03167601222743003],[113,41,68,-0.054762398916852646],[113,41,69,-0.06727073807850972],[113,41,70,-0.03692786068403586],[113,41,71,-0.01570027005074117],[113,41,72,-0.028731772602195057],[113,41,73,-0.03859487030124183],[113,41,74,-0.040537660831431524],[113,41,75,-0.04914675070880114],[113,41,76,-0.07693611957515405],[113,41,77,-0.0855970633541286],[113,41,78,-0.068381070737353],[113,41,79,-0.06587797366621193],[113,42,64,-0.061483936582285036],[113,42,65,-0.06670766984313993],[113,42,66,-0.04879372781594968],[113,42,67,-0.032289902686964814],[113,42,68,-0.0552756652072991],[113,42,69,-0.06764881708117197],[113,42,70,-0.03721922466952832],[113,42,71,-0.015878408777985076],[113,42,72,-0.02899875141646441],[113,42,73,-0.038948211003502375],[113,42,74,-0.0406281428088363],[113,42,75,-0.049129495221395154],[113,42,76,-0.07742093202584467],[113,42,77,-0.08646757098482526],[113,42,78,-0.06920633272468059],[113,42,79,-0.06656515117470686],[113,43,64,-0.061621284395035725],[113,43,65,-0.06730343101527585],[113,43,66,-0.0495733350743461],[113,43,67,-0.03292272208513355],[113,43,68,-0.05580983147807602],[113,43,69,-0.06804673864891449],[113,43,70,-0.03751980923374285],[113,43,71,-0.016059640541392965],[113,43,72,-0.029270835827452532],[113,43,73,-0.03931222052154293],[113,43,74,-0.04073173388063493],[113,43,75,-0.04912619352919042],[113,43,76,-0.07792793522304227],[113,43,77,-0.08736649809586237],[113,43,78,-0.07005773227983328],[113,43,79,-0.06727129048298743],[113,44,64,-0.06177903859157131],[113,44,65,-0.0679227268120386],[113,44,66,-0.05037752283133313],[113,44,67,-0.033574937777367586],[113,44,68,-0.05636514318218432],[113,44,69,-0.06846458693261019],[113,44,70,-0.03782980059194979],[113,44,71,-0.016244127763137425],[113,44,72,-0.029548081666036313],[113,44,73,-0.039687025035564115],[113,44,74,-0.04084850862257895],[113,44,75,-0.049136757262203],[113,44,76,-0.0784569975473257],[113,44,77,-0.08829386588671424],[113,44,78,-0.07093549926008298],[113,44,79,-0.06799653063832242],[113,45,64,-0.06195720572583743],[113,45,65,-0.06856584239105007],[113,45,66,-0.05120678965855393],[113,45,67,-0.0342470258777472],[113,45,68,-0.05694185204236217],[113,45,69,-0.06890245140808515],[113,45,70,-0.03814938994520535],[113,45,71,-0.016432039972797127],[113,45,72,-0.029830547698941223],[113,45,73,-0.040072755772487666],[113,45,74,-0.040978557950902245],[113,45,75,-0.049161115904631625],[113,45,76,-0.0790079906770866],[113,45,77,-0.08924969210956782],[113,45,78,-0.07183986534121369],[113,45,79,-0.06874101174403449],[113,46,64,-0.06215580564705291],[113,46,65,-0.06923306783953363],[113,46,66,-0.05206164076513463],[113,46,67,-0.034939471204882],[113,46,68,-0.057540216120512265],[113,46,69,-0.06936042721136788],[113,46,70,-0.03847877419780021],[113,46,71,-0.016623554601195967],[113,46,72,-0.03011829633444795],[113,46,73,-0.04046954962397789],[113,46,74,-0.04112198980917728],[113,46,75,-0.04919921743868973],[113,46,76,-0.07958078974287167],[113,46,77,-0.09023399090922123],[113,46,78,-0.0727710640471482],[113,46,79,-0.06950487553185154],[113,47,64,-0.062374865194669823],[113,47,65,-0.06992469168308584],[113,47,66,-0.05294258124861399],[113,47,67,-0.03565276070121913],[113,47,68,-0.05816049337072876],[113,47,69,-0.06983860896507917],[113,47,70,-0.03881815017398809],[113,47,71,-0.01681885129017493],[113,47,72,-0.03041138785812234],[113,47,73,-0.04087754328023695],[113,47,74,-0.04127892335116955],[113,47,75,-0.04925102248682153],[113,47,76,-0.08017526699792558],[113,47,77,-0.09124676617816854],[113,47,78,-0.07372932427443343],[113,47,79,-0.07028825943445308],[113,48,64,-0.06261434224176471],[113,48,65,-0.070640924691622],[113,48,66,-0.053850039585989364],[113,48,67,-0.03638730705317409],[113,48,68,-0.058802865355336936],[113,48,69,-0.07033701472352909],[113,48,70,-0.03916763890579006],[113,48,71,-0.017018036231464133],[113,48,72,-0.030709804650959165],[113,48,73,-0.04129679726669986],[113,48,74,-0.041449412936578056],[113,48,75,-0.04931642819715898],[113,48,76,-0.08079121517737727],[113,48,77,-0.09228793452200232],[113,48,78,-0.07471479332334931],[113,48,79,-0.07109122008367373],[113,49,64,-0.06287414257541374],[113,49,65,-0.07138191638039011],[113,49,66,-0.054784383679221185],[113,49,67,-0.0371434647507911],[113,49,68,-0.05946745329603363],[113,49,69,-0.07085560214967829],[113,49,70,-0.03952730205392163],[113,49,71,-0.017221158554592712],[113,49,72,-0.031013467377518363],[113,49,73,-0.04172731184632539],[113,49,74,-0.04163346388447549],[113,49,75,-0.049395283809535964],[113,49,76,-0.08142836248784507],[113,49,77,-0.09335733978867969],[113,49,78,-0.07572755140704902],[113,49,79,-0.07191374823286396],[113,50,64,-0.06315416900215168],[113,50,65,-0.07214780381185434],[113,50,66,-0.0557459692749083],[113,50,67,-0.0379215786173423],[113,50,68,-0.06015436669893646],[113,50,69,-0.07139431736738083],[113,50,70,-0.03989719110613813],[113,50,71,-0.017428259606264294],[113,50,72,-0.03132228418241909],[113,50,73,-0.042169076017147776],[113,50,74,-0.04183108140011303],[113,50,75,-0.04948743950182055],[113,50,76,-0.08208642101098283],[113,50,77,-0.09445480112370319],[113,50,78,-0.07676765977267572],[113,50,79,-0.07275581740566747],[113,51,64,-0.06345432190661554],[113,51,65,-0.07293871189255893],[113,51,66,-0.05673513991339394],[113,51,67,-0.03872198392098392],[113,51,68,-0.060863703619254084],[113,51,69,-0.07195309550350336],[113,51,70,-0.040277348311929195],[113,51,71,-0.01763937402096031],[113,51,72,-0.031636151732839714],[113,51,73,-0.042622068375277745],[113,51,74,-0.04204227137178156],[113,51,75,-0.0495927471372622],[113,51,76,-0.08276508706488675],[113,51,77,-0.09558011301259668],[113,51,78,-0.07783516080609114],[113,51,79,-0.0736173845489645],[113,52,64,-0.06377449882695099],[113,52,65,-0.07375475267716511],[113,52,66,-0.05775222586953773],[113,52,67,-0.03954500548279387],[113,52,68,-0.06159554993514366],[113,52,69,-0.0725318602465482],[113,52,70,-0.040667806639403184],[113,52,71,-0.017854529831050472],[113,52,72,-0.031954955321508764],[113,52,73,-0.04308625702545824],[113,52,74,-0.042267040188154414],[113,52,75,-0.04971106003598271],[113,52,76,-0.08346404062541998],[113,52,77,-0.09673304439280433],[113,52,78,-0.07893007718203475],[113,52,79,-0.07449838973413316],[113,53,64,-0.06411459400333198],[113,53,65,-0.07459602463650586],[113,53,66,-0.05879754304158449],[113,53,67,-0.04039095673679584],[113,53,68,-0.06234997858625342],[113,53,69,-0.07313052337653263],[113,53,70,-0.04106858970810231],[113,53,71,-0.018073748569906088],[113,53,72,-0.03227856898467646],[113,53,73,-0.04356159949353315],[113,53,74,-0.04250539452839892],[113,53,75,-0.04984223272261445],[113,53,76,-0.08418294476288884],[113,53,77,-0.09791333779239027],[113,53,78,-0.08005241101592847],[113,53,79,-0.07539875586152281],[113,54,64,-0.06447449790138096],[113,54,65,-0.07546261189258657],[113,54,66,-0.05987139179122846],[113,54,67,-0.04126013874468826],[113,54,68,-0.06312704877989932],[113,54,69,-0.07374898426860074],[113,54,70,-0.041479711699499454],[113,54,71,-0.01829704536980844],[113,54,72,-0.03260685563807604],[113,54,73,-0.0440480426438964],[113,54,74,-0.04275734112613064],[113,54,75,-0.049986120650909356],[113,54,76,-0.08492144509839118],[113,54,77,-0.09912070850184204],[113,54,78,-0.0812021430223949],[113,54,79,-0.07631838837160329],[113,55,64,-0.06485409671226441],[113,55,65,-0.07635458342354103],[113,55,66,-0.06097405573813265],[113,55,67,-0.042152839168130764],[113,55,68,-0.06392680516788024],[113,55,69,-0.07438712937279852],[113,55,70,-0.041901177246852835],[113,55,71,-0.018524429056384874],[113,55,72,-0.03293966723382902],[113,55,73,-0.04454552260496522],[113,55,74,-0.04302288650823973],[113,55,75,-0.05014257990606839],[113,55,76,-0.08567916928414972],[113,55,77,-0.10035484378535856],[113,55,78,-0.08237923168565937],[113,55,79,-0.07725717496622142],[113,56,64,-0.06525327183128543],[113,56,65,-0.07727199224167847],[113,56,66,-0.062105800512374895],[113,56,67,-0.04306933120163601],[113,56,68,-0.06474927699705155],[113,56,69,-0.07504483167247242],[113,56,70,-0.04233298130608959],[113,56,71,-0.018755902241309297],[113,56,72,-0.033276844941244194],[113,56,73,-0.045053964705755054],[113,56,74,-0.043302036709655656],[113,56,75,-0.050311466885557994],[113,56,76,-0.08645572651218383],[113,56,77,-0.10161540213810889],[113,56,78,-0.08358361244715624],[113,56,79,-0.07821498534342693],[113,57,64,-0.06567189931682012],[113,57,65,-0.07821487454788172],[113,57,66,-0.06326687246851068],[113,57,67,-0.04400987246930546],[113,57,68,-0.06559447723687883],[113,57,69,-0.07572195012374482],[113,57,70,-0.04277510900934907],[113,57,71,-0.01899146141497285],[113,57,72,-0.033618219354423454],[113,57,73,-0.0455732834266359],[113,57,74,-0.043594796965118116],[113,57,75,-0.05049263795915451],[113,57,76,-0.08725070705568161],[113,57,77,-0.10290201259603556],[113,57,78,-0.08481519691578514],[113,57,79,-0.07919167094932074],[113,58,64,-0.06610984933144451],[113,58,65,-0.07918324886569347],[113,58,66,-0.06445749736511484],[113,58,67,-0.04497470388880094],[113,58,68,-0.06646240168725728],[113,58,69,-0.07641832907848924],[113,58,70,-0.043227535502751685],[113,58,71,-0.019231097040767815],[113,58,72,-0.03396361072950138],[113,58,73,-0.046103382367308376],[113,58,74,-0.04390117137900775],[113,58,75,-0.05068594910892101],[113,58,76,-0.08806368184739362],[113,58,77,-0.10421427410478201],[113,58,78,-0.08607387210632805],[113,58,79,-0.08018706475032711],[113,59,64,-0.06656698556716714],[113,59,65,-0.08017711515858467],[113,59,66,-0.06567787901392418],[113,59,67,-0.045964048506178995],[113,59,68,-0.06735302807002569],[113,59,69,-0.07713379769327208],[113,59,70,-0.04369022576996338],[113,59,71,-0.019474793652630194],[113,59,72,-0.03431282925432175],[113,59,73,-0.04664415423506363],[113,59,74,-0.04422116257435101],[113,59,75,-0.05089125554986311],[113,59,76,-0.08889420209939795],[113,59,77,-0.10555175495440733],[113,59,78,-0.0873594997116803],[113,59,79,-0.08120098102931013],[113,60,64,-0.0670431646567199],[113,60,65,-0.08119645393402211],[113,60,66,-0.06692819790293332],[113,60,67,-0.04697811030542287],[113,60,68,-0.06826631510770861],[113,60,69,-0.07786816932672776],[113,60,70,-0.04416313444309119],[113,60,71,-0.019722529957447856],[113,60,72,-0.03466567535328376],[113,60,73,-0.047195480856369904],[113,60,74,-0.044554771322138274],[113,60,75,-0.051108411332009995],[113,60,76,-0.08974179896855686],[113,60,77,-0.10691399228656343],[113,60,78,-0.08867191541462785],[113,60,79,-0.08223321520892198],[113,61,64,-0.06753823557288086],[113,61,65,-0.08224122533804382],[113,61,66,-0.06820860979799415],[113,61,67,-0.04801707299668354],[113,61,68,-0.0692022015931073],[113,61,69,-0.07862124092782731],[113,61,70,-0.04464620560239687],[113,61,71,-0.019974278943878092],[113,61,72,-0.03502194002997795],[113,61,73,-0.04775723321477417],[113,61,74,-0.0449019961521131],[113,61,75,-0.051337268924672455],[113,61,76,-0.09060598327192544],[113,61,77,-0.10830049168077278],[113,61,78,-0.09001092824494959],[113,61,79,-0.08328354370551057],[113,62,64,-0.0680520390178724],[113,62,65,-0.08331136824420472],[113,62,66,-0.06951924432774009],[113,62,67,-0.049081098787488786],[113,62,68,-0.0701606054534934],[113,62,69,-0.07939279241753128],[113,62,70,-0.04513937256631225],[113,62,71,-0.02023000799910498],[113,62,72,-0.03538140525017113],[113,62,73,-0.04832927151810153],[113,62,74,-0.04526283294625803],[113,62,75,-0.051577678783674245],[113,62,76,-0.09148624525634894],[113,62,77,-0.10971072682644734],[113,62,78,-0.0913763199877055],[113,62,79,-0.08435172381689254],[113,63,64,-0.06858440680494526],[113,63,65,-0.08440679934088625],[113,63,66,-0.0708602035569004],[113,63,67,-0.05017032714140149],[113,63,68,-0.07114142281328713],[113,63,69,-0.08018258606635024],[113,63,70,-0.04564255767322908],[113,63,71,-0.020489679035031152],[113,63,72,-0.035743844367600655],[113,63,73,-0.048911445297903144],[113,63,74,-0.04563727451626926],[113,63,75,-0.05182948890240718],[113,63,76,-0.09238205442644011],[113,63,77,-0.11114413928724677],[113,63,78,-0.09276784464862897],[113,63,79,-0.08543749364726413],[113,64,64,-0.06913516123426926],[113,64,65,-0.08552741222104088],[113,64,66,-0.07223156055326191],[113,64,67,-0.05128487352878193],[113,64,68,-0.07214452705916569],[113,64,69,-0.08099036587031117],[113,64,70,-0.04615567205647621],[113,64,71,-0.020753248625315204],[113,64,72,-0.03610902259488524],[113,64,73,-0.04950359354401215],[113,64,74,-0.046025310166335896],[113,64,75,-0.0520925443475684],[113,64,76,-0.09329285943500787],[113,64,77,-0.11260013836424866],[113,64,78,-0.09418522798251613],[113,64,79,-0.08654057207241449],[113,65,64,-0.06970411446536592],[113,65,65,-0.08667307647862423],[113,65,66,-0.07363335795384385],[113,65,67,-0.0524248281745901],[113,65,68,-0.07316976791171567],[113,65,69,-0.08181585692789464],[113,65,70,-0.04667861541392453],[113,65,71,-0.021020668154658823],[113,65,72,-0.03647669752176713],[113,65,73,-0.050105544877035654],[113,65,74,-0.04642692524262602],[113,65,75,-0.05236668678051048],[113,65,76,-0.09421808803995389],[113,65,77,-0.11407810106434851],[113,65,78,-0.09562816709056961],[113,65,79,-0.08766065874839529],[113,66,64,-0.07029106788832358],[113,66,65,-0.08784363681600316],[113,66,66,-0.07506560653598826],[113,66,67,-0.05359025480829362],[113,66,68,-0.07421697050778846],[113,66,69,-0.08265876482048645],[113,66,70,-0.0472112757736033],[113,66,71,-0.02129188398166563],[113,66,72,-0.03684661968275268],[113,66,73,-0.050717117761561056],[113,66,74,-0.046842100670993786],[113,66,75,-0.052651753965236414],[113,66,76,-0.09515714713156208],[113,66,77,-0.11557737218014494],[113,66,78,-0.09709633009258513],[113,66,79,-0.08879743416666667],[113,67,64,-0.07089581149616103],[113,67,65,-0.08903891216683511],[113,67,66,-0.07652828379941669],[113,67,67,-0.05478118942125941],[113,67,68,-0.07528593449788967],[113,67,69,-0.08351877499895458],[113,67,70,-0.04775352925674208],[113,67,71,-0.021566837616562827],[113,67,72,-0.03721853317604916],[113,67,73,-0.05133812076271123],[113,67,74,-0.04727081248441289],[113,67,75,-0.05294757926405413],[113,67,76,-0.09610942283392968],[113,67,77,-0.1170972644874111],[113,67,78,-0.09858935587989244],[113,67,79,-0.0899505597587229],[113,68,64,-0.07151812326070003],[113,68,65,-0.09025869483891312],[113,68,66,-0.07802133256539696],[113,68,67,-0.0559976390370987],[113,68,68,-0.07637643316295005],[113,68,69,-0.08439555217892379],[113,68,70,-0.04830523983958228],[113,68,71,-0.021845465914979177],[113,68,72,-0.03759217633553497],[113,68,73,-0.05196835284864386],[113,68,74,-0.047713031341796414],[113,68,75,-0.05325399112204792],[113,68,76,-0.09707428068419591],[113,68,77,-0.11863705906604684],[113,68,78,-0.10010685395483762],[113,68,79,-0.09111967805302541],[113,69,64,-0.07215776851441771],[113,69,65,-0.09150274968162832],[113,69,66,-0.07954465959944916],[113,69,67,-0.05723958050069596],[113,69,68,-0.07748821255496852],[113,69,69,-0.0852887397473852],[113,69,70,-0.04886625911533298],[113,69,71,-0.022127701288937315],[113,69,72,-0.037967282457322296],[113,69,73,-0.05260760374146181],[113,69,74,-0.048168722039916984],[113,69,75,-0.05357081254157665],[113,69,76,-0.09805106589304823],[113,69,77,-0.12019600575019375],[113,69,78,-0.10164840436255976],[113,69,79,-0.0923044128870217],[113,70,64,-0.07281449934080565],[113,70,65,-0.09277081328277892],[113,70,66,-0.08109813426420626],[113,70,67,-0.05850695929182332],[113,70,68,-0.07862099066608497],[113,70,69,-0.08619795918328328],[113,70,70,-0.049436426057625986],[113,70,71,-0.022413471936148645],[113,70,72,-0.038343580582289906],[113,70,73,-0.053255654318903334],[113,70,74,-0.048637843020243],[113,70,75,-0.053897860548100515],[113,70,76,-0.09903910368982441],[113,70,77,-0.12177332371294783],[113,70,78,-0.10321355772070401],[113,70,79,-0.09350436967690498],[113,71,64,-0.0734880539757955],[113,71,65,-0.09406259319948958],[113,71,66,-0.08268158720918144],[113,71,67,-0.05979968836937175],[113,71,68,-0.07977445663068246],[113,71,69,-0.08712280949471611],[113,71,70,-0.0500155667867878],[113,71,71,-0.022702702088590362],[113,71,72,-0.03872079633571721],[113,71,73,-0.05391227706901529],[113,71,74,-0.04912034587256854],[113,71,75,-0.05423494564870202],[113,71,76,-0.10003769975530334],[113,71,77,-0.12336820219077707],[113,71,78,-0.10480183535254547],[113,71,79,-0.0947191357476094],[113,72,64,-0.07417815622289561],[113,72,65,-0.09537776722810007],[113,72,66,-0.08429480910440237],[113,72,67,-0.06111764705241973],[113,72,68,-0.08094826996520202],[113,72,69,-0.08806286667541925],[113,72,70,-0.05060349434025992],[113,72,71,-0.022995312281296074],[113,72,72,-0.039098652824966704],[113,72,73,-0.05457723659990376],[113,72,74,-0.04961617483742853],[113,72,75,-0.054581871284775756],[113,72,76,-0.10104614074509129],[113,72,77,-0.12497980135246571],[113,72,78,-0.10641272952887694],[113,72,79,-0.09594828072543272],[113,73,64,-0.0748845148847462],[113,73,65,-0.09671598271793373],[113,73,66,-0.08593754942501182],[113,73,67,-0.06246067994449404],[113,73,68,-0.08214205985040393],[113,73,69,-0.08901768318322166],[113,73,70,-0.05120000844849579],[113,73,71,-0.023291219642209815],[113,73,72,-0.03947687159593303],[113,73,73,-0.05525029020650954],[113,73,74,-0.0501252663093912],[113,73,75,-0.05493843328046449],[113,73,76,-0.10206369490629022],[113,73,77,-0.12660725331706382],[113,73,78,-0.10804570382383558],[113,73,79,-0.09719135699553853],[113,74,64,-0.07560682321380913],[113,74,65,-0.09807685593383611],[113,74,66,-0.08760951529401352],[113,74,67,-0.063828595907451],[113,74,68,-0.08335542446079708],[113,74,69,-0.08998678744312463],[113,74,70,-0.05180489531761111],[113,74,71,-0.023590338203824588],[113,74,72,-0.03985517364869063],[113,74,73,-0.05593118849614411],[113,74,74,-0.05064754834336678],[113,74,75,-0.0553044192884671],[113,74,76,-0.10308961278983558],[113,74,77,-0.12824966332488544],[113,74,78,-0.10970019358958358],[113,74,79,-0.0984479002263882],[113,75,64,-0.07634475838499898],[113,75,65,-0.09945997147244912],[113,75,66,-0.08931037039049532],[113,75,67,-0.0652211670915481],[113,75,68,-0.08458793034601668],[113,75,69,-0.0909696833776945],[113,75,70,-0.05241792742008984],[113,75,71,-0.0238925792372698],[113,75,72,-0.040233280512559456],[113,75,73,-0.05661967607438996],[113,75,74,-0.051182940166196345],[113,75,75,-0.05567960823497299],[113,75,76,-0.10412312806066976],[113,75,77,-0.12990611106523905],[113,75,78,-0.11137560655457548],[113,75,79,-0.0997174299630293],[113,76,64,-0.07709798099309575],[113,76,65,-0.10086488173715645],[113,76,66,-0.09103973393071267],[113,76,67,-0.06663812802833245],[113,76,68,-0.08583911186892225],[113,76,69,-0.09196584996745823],[113,76,70,-0.053038863294841275],[113,76,71,-0.024197851609414567],[113,76,72,-0.040610915380540145],[113,76,73,-0.05731549229277457],[113,76,74,-0.05173135169587769],[113,76,75,-0.056063769765576],[113,76,76,-0.10516345840762706],[113,76,77,-0.13157565216411954],[113,76,78,-0.11307132354987116],[113,76,79,-0.10099945029099756],[113,77,64,-0.07786613457778684],[113,77,65,-0.1022911064766055],[113,77,66,-0.09279717972944812],[113,77,67,-0.06807917479299729],[113,77,68,-0.08710847070514138],[113,77,69,-0.09297474084394262],[113,77,70,-0.053667447357849854],[113,77,71,-0.024506062163411814],[113,77,72,-0.0409878043027606],[113,77,73,-0.058018372059393405],[113,77,74,-0.05229268307082049],[113,77,75,-0.056456663694061174],[113,77,76,-0.10620980655456831],[113,77,77,-0.13325731983459305],[113,77,78,-0.11478669936763469],[113,77,79,-0.10229345057235964],[113,78,64,-0.07864884517924398],[113,78,65,-0.1037381323916875],[113,78,66,-0.09458223534910074],[113,78,67,-0.06954396424290318],[113,78,68,-0.08839547540877643],[113,78,69,-0.09399578391801902],[113,78,70,-0.05430340972468675],[113,78,71,-0.024817116123038878],[113,78,72,-0.04136367743832991],[113,78,73,-0.05872804671347947],[113,78,74,-0.05286682419164506],[113,78,75,-0.05685803945608873],[113,78,76,-0.10726136137401583],[113,78,77,-0.13495012669213766],[113,78,78,-0.1165210637556793],[113,78,79,-0.10359890625527497],[113,79,64,-0.07944572092716351],[113,79,65,-0.10520541281580487],[113,79,66,-0.09639438134395086],[113,79,67,-0.07103211333895647],[113,79,68,-0.08969956104894294],[113,79,69,-0.09502838104619737],[113,79,70,-0.054946466046140126],[113,79,71,-0.025130917521082156],[113,79,72,-0.04173827036470808],[113,79,73,-0.059444244964703644],[113,79,74,-0.053453654278113834],[113,79,75,-0.05726763556988335],[113,79,76,-0.1083172991042172],[113,79,77,-0.13665306673669034],[113,79,78,-0.11827372255158994],[113,79,79,-0.1049152797582621],[113,80,64,-0.08025635166618031],[113,80,65,-0.10669236747314388],[113,80,66,-0.09823305060697063],[113,80,67,-0.07254319855646878],[113,80,68,-0.0910201289216946],[113,80,69,-0.09607190773744591],[113,80,70,-0.05559631735816666],[113,80,71,-0.02544736965186004],[113,80,72,-0.04211132544336958],[113,80,73,-0.06016669389771647],[113,80,74,-0.054053041443806175],[113,80,75,-0.05768517910606588],[113,80,76,-0.10937678467016652],[113,80,77,-0.13836511750256755],[113,80,78,-0.12004395895955058],[113,80,79,-0.10624202143010057],[113,81,64,-0.08108030862059225],[113,81,65,-0.10819838231959258],[113,81,66,-0.10009762782650054],[113,81,67,-0.07407675539208251],[113,81,68,-0.09235654634183132],[113,81,69,-0.09712571290312101],[113,81,70,-0.056252649947394345],[113,81,71,-0.025766375547896146],[113,81,72,-0.042482593240270185],[113,81,73,-0.06089512004224724],[113,81,74,-0.054664842291259015],[113,81,75,-0.05811038516888685],[113,81,76,-0.110438973108797],[113,81,77,-0.14008524237689407],[113,81,78,-0.12183103497266402],[113,81,79,-0.10757857058613725],[113,82,64,-0.08191714410134453],[113,82,65,-0.1097228094708226],[113,82,66,-0.1019874490599903],[113,82,67,-0.0756322779732458],[113,82,68,-0.0937081465189655],[113,82,69,-0.09818911865253739],[113,82,70,-0.056915135233386434],[113,82,71,-0.026087838480653828],[113,82,72,-0.04285183399935011],[113,82,73,-0.06162925050883077],[113,82,74,-0.05528890153032877],[113,82,75,-0.058542956391172],[113,82,76,-0.11150301109819008],[113,82,77,-0.14181239308661547],[113,82,78,-0.12363419294315214],[113,82,79,-0.10892435662154944],[113,83,64,-0.08276639031440293],[113,83,65,-0.11126496554214818],[113,83,66,-0.10390179948322265],[113,83,67,-0.07720921704901884],[113,83,68,-0.09507422605421713],[113,83,69,-0.09926141720844102],[113,83,70,-0.05758342776841806],[113,83,71,-0.0264116615219696],[113,83,72,-0.043218817443172734],[113,83,73,-0.06236881149174455],[113,83,74,-0.055925049016652136],[113,83,75,-0.05898257950285198],[113,83,76,-0.11256803260913355],[113,83,77,-0.14354550426702273],[113,83,78,-0.12545264983927276],[113,83,79,-0.11027879329855658],[113,84,64,-0.08362753042493604],[113,84,65,-0.1128240797150115],[113,84,66,-0.10583985203516723],[113,84,67,-0.07880692517037874],[113,84,68,-0.09645396718448279],[113,84,69,-0.10034177860274518],[113,84,70,-0.05825710513728391],[113,84,71,-0.026737717601999878],[113,84,72,-0.04358326994466323],[113,84,73,-0.06311344394293757],[113,84,74,-0.056573016717241104],[113,84,75,-0.059428831827982254],[113,84,76,-0.11363297099700638],[113,84,77,-0.14528323895828338],[113,84,78,-0.1272853608308465],[113,84,79,-0.11164106007360941],[113,85,64,-0.0844999978757763],[113,85,65,-0.11439928871526493],[113,85,66,-0.10780065747888012],[113,85,67,-0.0804246458752874],[113,85,68,-0.09784642372451832],[113,85,69,-0.10142923434176652],[113,85,70,-0.058935656452351354],[113,85,71,-0.027065843929737973],[113,85,72,-0.04394486597218527],[113,85,73,-0.06386268684079649],[113,85,74,-0.05723242069808758],[113,85,75,-0.059881162557695475],[113,85,76,-0.11469652125536459],[113,85,77,-0.1470239336393493],[113,85,78,-0.1291309639290093],[113,85,79,-0.11301005263531151],[113,86,64,-0.08538321379032675],[113,86,65,-0.11598970195431015],[113,86,66,-0.10978321795543462],[113,86,67,-0.08206157788268195],[113,86,68,-0.0992506132405344],[113,86,69,-0.1025227866295914],[113,86,70,-0.05961855277552502],[113,86,71,-0.027395878130174307],[113,86,72,-0.04430329381058251],[113,86,73,-0.06461607773624699],[113,86,74,-0.057902856303252585],[113,86,75,-0.06033900096288873],[113,86,76,-0.11575736206413093],[113,86,77,-0.14876589686473649],[113,86,78,-0.13098805280464934],[113,86,79,-0.11438463577872533],[113,87,64,-0.08627658917042959],[113,87,65,-0.11759440609087432],[113,87,66,-0.11178649213184955],[113,87,67,-0.08371687956392998],[113,87,68,-0.10066552317980879],[113,87,69,-0.1036214151105742],[113,87,70,-0.06030525142737098],[113,87,71,-0.027727661050373362],[113,87,72,-0.04465826124804044],[113,87,73,-0.06537316030490571],[113,87,74,-0.058583903562385596],[113,87,75,-0.06080176243470098],[113,87,76,-0.11681417151461318],[113,87,77,-0.15050743107472442],[113,87,78,-0.13285519588718406],[113,87,79,-0.11576366045878572],[113,88,64,-0.08717952489034597],[113,88,65,-0.11921246572428465],[113,88,66,-0.11380939594512687],[113,88,67,-0.08538966954020892],[113,88,68,-0.10209011136508173],[113,88,69,-0.10472407685611503],[113,88,70,-0.0609951959071452],[113,88,71,-0.028061037349457713],[113,88,72,-0.04500949728303031],[113,88,73,-0.06613348571140398],[113,88,74,-0.05927512662312606],[113,88,75,-0.06126884774923525],[113,88,76,-0.11786562911234394],[113,88,77,-0.15224683593088864],[113,88,78,-0.13473093847169093],[113,88,79,-0.1171459650275916],[113,89,64,-0.08809141174447868],[113,89,65,-0.12084292417925485],[113,89,66,-0.11585080348712447],[113,89,67,-0.0870790274097891],[113,89,68,-0.10352330658900342],[113,89,69,-0.10582970640950486],[113,89,70,-0.06168781583449519],[113,89,71,-0.02839585610120696],[113,89,72,-0.04535675384848852],[113,89,73,-0.06689661402031188],[113,89,74,-0.05997607323367888],[113,89,75,-0.061739642382294214],[113,89,76,-0.11891041788586372],[113,89,77,-0.15398241181329472],[113,89,78,-0.13661380498861564],[113,89,79,-0.11853037655332745],[113,90,64,-0.08901163054868716],[113,90,65,-0.12248480438116917],[113,90,66,-0.11790954803079955],[113,90,67,-0.08878399460624967],[113,90,68,-0.10496400930847101],[113,90,69,-0.10693721588881534],[113,90,70,-0.062382526913002306],[113,90,71,-0.02873197140733873],[113,90,72,-0.045699807547225246],[113,90,73,-0.06766211564926819],[113,90,74,-0.06068627427757574],[113,90,75,-0.06221351587640951],[113,90,76,-0.11994722659500982],[113,90,77,-0.15571246346952017],[113,90,78,-0.13850230143117295],[113,90,79,-0.1199157122172178],[113,91,64,-0.08993955229498418],[113,91,65,-0.12413710982057796],[113,91,66,-0.11998442319789895],[113,91,67,-0.09050357538821815],[113,91,68,-0.1064110924384431],[113,91,69,-0.10804549514781928],[113,91,70,-0.06307873091576736],[113,91,71,-0.02906924301942372],[113,91,72,-0.046038461392304816],[113,91,73,-0.06842957285964263],[113,91,74,-0.061405243362644066],[113,91,75,-0.06268982126254831],[113,91,76,-0.12097475203191163],[113,91,77,-0.15743530380494247],[113,91,78,-0.14039491793492553],[113,91,79,-0.12130078078470727],[113,92,64,-0.09087453835928437],[113,92,65,-0.1257988256053145],[113,92,66,-0.12207418426766783],[113,92,67,-0.09223673796073269],[113,92,68,-0.10786340224449796],[113,92,69,-0.10915341199484717],[113,92,70,-0.06377581569320928],[113,92,71,-0.029407536967233073],[113,92,72,-0.046372546545864264],[113,92,73,-0.06919858127973104],[113,92,74,-0.0621324764661215],[113,92,75,-0.06316789453887635],[113,92,76,-0.12199170140746086],[113,92,77,-0.15914925780295788],[113,92,78,-0.1422901315033188],[113,92,79,-0.12268438414676154],[113,93,64,-0.09181594076184636],[113,93,65,-0.1274689195984161],[113,93,66,-0.1241775496257157],[113,93,67,-0.09398241572791188],[113,93,68,-0.1093197593331915],[113,93,69,-0.11025981246953566],[113,93,70,-0.06447315520333287],[113,93,71,-0.02974672619127111],[113,93,72,-0.04670192404967569],[113,93,73,-0.06996875145528239],[113,93,74,-0.06286745163788554],[113,93,75,-0.06364705420907131],[113,93,76,-0.12299679481573157],[113,93,77,-0.16085266656315717],[113,93,78,-0.14418640887238263],[113,93,79,-0.12406531892703905],[113,94,64,-0.09276310247991894],[113,94,65,-0.12914634363971444],[113,94,66,-0.1262932023516505],[113,94,67,-0.09573950867610329],[113,94,68,-0.1107789597389451],[113,94,69,-0.11136352117735157],[113,94,70,-0.06517010956470315],[113,94,71,-0.03008669117710579],[113,94,72,-0.04702648654052004],[113,94,73,-0.07073971042185477],[113,94,74,-0.06360962876366179],[113,94,75,-0.06412660088265278],[113,94,76,-0.1239887677684226],[113,94,77,-0.1625438914447561],[113,94,78,-0.14608220950711812],[113,94,79,-0.12544237815041487],[113,95,64,-0.09371535781205309],[113,95,65,-0.13083003484873115],[113,95,66,-0.12841979194364497],[113,95,67,-0.09750688488624196],[113,95,68,-0.1122397761059563],[113,95,69,-0.11246334168179281],[113,95,70,-0.06586602513242734],[113,95,71,-0.030427320589070175],[113,95,72,-0.04734615994331627],[113,95,73,-0.07151110329330662],[113,95,74,-0.06435844939004859],[113,95,75,-0.0646058169398391],[113,95,76,-0.12496637379110459],[113,95,77,-0.1642213183019777],[113,95,78,-0.14797598872151804],[113,95,79,-0.12681435296818178],[113,96,64,-0.09467203279338875],[113,96,65,-0.13251891700618348],[113,96,66,-0.1305559361775423],[113,96,67,-0.09928338217361352],[113,96,68,-0.11370095896329474],[113,96,69,-0.11355805695409871],[113,96,70,-0.06656023459742981],[113,96,71,-0.03076851190077227],[113,96,72,-0.047660905134741395],[113,96,73,-0.07228259486044901],[113,96,74,-0.06511333661306114],[113,96,75,-0.0650839662633769],[113,96,76,-0.12592838707268028],[113,96,77,-0.1658833617974076],[113,96,78,-0.14986620091349676],[113,96,79,-0.12818003443500608],[113,97,64,-0.09563244566116423],[113,97,65,-0.1342119020111771],[113,97,66,-0.13270022309765964],[113,97,67,-0.10106780985276588],[113,97,68,-0.11516123809109831],[113,97,69,-0.11464642988030135],[113,97,70,-0.06725205710936295],[113,97,71,-0.031110172019828228],[113,97,72,-0.0479707195700025],[113,97,73,-0.07305387119372213],[113,97,74,-0.06587369503183123],[113,97,75,-0.06556029403978351],[113,97,76,-0.12687360515920224],[113,97,77,-0.167528469778808],[113,97,78,-0.15175130290545927],[113,97,79,-0.1295382153325726],[113,98,64,-0.09659590736958436],[113,98,65,-0.13590789141088908],[113,98,66,-0.1348512131359395],[113,98,67,-0.10285895062482166],[113,98,68,-0.11661932397550422],[113,98,69,-0.11572720382542478],[113,98,70,-0.06794079842352976],[113,98,71,-0.031452217904174413],[113,98,72,-0.04827563886532384],[113,98,73,-0.07382464124357306],[113,98,74,-0.06663891076899028],[113,98,75,-0.06603402663239281],[113,98,76,-0.12780085168291694],[113,98,77,-0.1691551277043306],[113,98,78,-0.15362975738066476],[113,98,79,-0.13088769203468514],[113,99,64,-0.0975617221530353],[113,99,65,-0.13760577799923956],[113,99,66,-0.13700744135556625],[113,99,67,-0.10465556258391256],[113,99,68,-0.11807390934963104],[113,99,69,-0.11679910325456898],[113,99,70,-0.0686257510721802],[113,99,71,-0.031794577167221845],[113,99,72,-0.04857573832859654],[113,99,73,-0.07459463843199485],[113,99,74,-0.06740835155908752],[113,99,75,-0.0665043715284727],[113,99,76,-0.12870897911709808],[113,99,77,-0.1707618631005307],[113,99,78,-0.15550003640494517],[113,99,79,-0.13222726640838867],[113,100,64,-0.098529188136557],[113,100,65,-0.13930444748083462],[113,100,66,-0.13916741981471364],[113,100,67,-0.10645638133900727],[113,100,68,-0.11952367081767964],[113,100,69,-0.11786083441059929],[113,100,70,-0.06930619456059922],[113,100,71,-0.0321371886691221],[113,100,72,-0.048871134430646654],[113,100,73,-0.07536362222858765],[113,100,74,-0.0681813669062868],[113,100,75,-0.06697051736261445],[113,100,76,-0.12959687154703498],[113,100,77,-0.172347250037169],[113,100,78,-0.15736062502285447],[113,100,79,-0.13355574774556578],[113,101,64,-0.09949759799236405],[113,101,65,-0.14100278019620416],[113,101,66,-0.141329640045598],[113,101,67,-0.10826012224692286],[113,101,68,-0.12096727055896243],[113,101,69,-0.11891108604814951],[113,101,70,-0.06998139558844467],[113,101,71,-0.03248000309138684],[113,101,72,-0.04916198620956057],[113,101,73,-0.07613137970437617],[113,101,74,-0.06895728831244],[113,101,75,-0.06743163401849682],[113,101,76,-0.13046344744734983],[113,101,77,-0.17390991360240118],[113,101,78,-0.1592100249168466],[113,101,79,-0.13487195471935806],[113,102,64,-0.10046623964104708],[113,102,65,-0.14269965290407502],[113,102,66,-0.14349257564349355],[113,102,67,-0.11006548275178302],[113,102,68,-0.12240335810833902],[113,102,69,-0.11994853022353277],[113,102,70,-0.07065060829675379],[113,102,71,-0.03282298349204309],[113,102,72,-0.049448496600482804],[113,102,73,-0.07689772705646576],[113,102,74,-0.06973542957640239],[113,102,75,-0.06788687281092073],[113,102,76,-0.13130766245556647],[113,102,77,-0.1754485343615368],[113,102,78,-0.1610467581175432],[113,102,79,-0.13617471735956554],[113,103,64,-0.10143439699600347],[113,103,65,-0.14439394061622618],[113,103,66,-0.14565468495994438],[113,103,67,-0.11187114482576815],[113,103,68,-0.12383057220932867],[113,103,69,-0.12097182314016375],[113,103,70,-0.07131307454111115],[113,103,71,-0.033166105838547705],[113,103,72,-0.049730913683399214],[113,103,73,-0.07766251109659664],[113,103,74,-0.07051508716532646],[113,103,75,-0.06833536674991247],[113,103,76,-0.13212851213176924],[113,103,77,-0.1769618527823286],[113,103,78,-0.16286937075280167],[113,103,79,-0.13746287904115423],[113,104,64,-0.1024013507495244],[113,104,65,-0.14608451848024148],[113,104,66,-0.14781441389394342],[113,104,67,-0.11367577750554002],[113,104,68,-0.12524754273591096],[113,104,69,-0.1219796060490478],[113,104,70,-0.07196802419148587],[113,104,71,-0.0335093595156921],[113,104,72,-0.050009531841496174],[113,104,73,-0.07842561069659959],[113,104,74,-0.07129554065847646],[113,104,75,-0.06877623088851663],[113,104,76,-0.13292503469406763],[113,104,77,-0.17844867360951017],[113,104,78,-0.16467643682289274],[113,104,79,-0.1387352984799139],[113,105,64,-0.10336637921564011],[113,105,65,-0.14777026361201626],[113,105,66,-0.14997019864719613],[113,105,67,-0.11547803945586183],[113,105,68,-0.12665289269099525],[113,105,69,-0.12297050622997625],[113,105,70,-0.0726146754698307],[113,105,71,-0.03385274784332154],[113,105,72,-0.05028469280628467],[113,105,73,-0.07918693808389067],[113,105,74,-0.07207605321137357],[113,105,75,-0.06920856275652534],[113,105,76,-0.13369631358823333],[113,105,77,-0.1799078700007794],[113,105,78,-0.16646656192946985],[113,105,79,-0.13999085177170784],[113,106,64,-0.10432877893124379],[113,106,65,-0.14944994791548183],[113,106,66,-0.15212031999101897],[113,106,67,-0.1172765086422168],[113,106,68,-0.1280452555245161],[113,106,69,-0.1239431712417746],[113,106,70,-0.07325224993904819],[113,106,71,-0.034196332159921565],[113,106,72,-0.05055676537377828],[113,106,73,-0.07994632196518091],[113,106,74,-0.07285581203691938],[113,106,75,-0.06963144607162276],[113,106,76,-0.13444132682466187],[113,106,77,-0.1813381869688816],[113,106,78,-0.16823831647896334],[113,106,79,-0.14122848372331745],[113,107,64,-0.10528790453253045],[113,107,65,-0.15112202532743552],[113,107,66,-0.15426261523573878],[113,107,67,-0.11906954137103609],[113,107,68,-0.1294233135889691],[113,107,69,-0.12489635323756901],[113,107,70,-0.07388001696608826],[113,107,71,-0.03454031522923328],[113,107,72,-0.05082609087730268],[113,107,73,-0.08070326674557964],[113,107,74,-0.07363382005334838],[113,107,75,-0.07004397270429105],[113,107,76,-0.1351586500609979],[113,107,77,-0.1827378408648321],[113,107,78,-0.16999009196724196],[113,107,79,-0.14244730374369677],[113,108,64,-0.10624312356379884],[113,108,65,-0.15278489007229717],[113,108,66,-0.15639483259348963],[113,108,67,-0.12085544646219715],[113,108,68,-0.1307857736109711],[113,108,69,-0.12582885821658807],[113,108,70,-0.07449728221832838],[113,108,71,-0.034884934943293075],[113,108,72,-0.05109301383869785],[113,108,73,-0.08145721745970762],[113,108,74,-0.0744090514148949],[113,108,75,-0.07044525806425611],[113,108,76,-0.135846822268161],[113,108,77,-0.18410498060240724],[113,108,78,-0.17172025766041135],[113,108,79,-0.14364646731823996],[113,109,64,-0.10719380697350711],[113,109,65,-0.15443693681274112],[113,109,66,-0.15851471375502166],[113,109,67,-0.12263252686083867],[113,109,68,-0.13213136207240395],[113,109,69,-0.12673953363142548],[113,109,70,-0.07510338390025523],[113,109,71,-0.03523044069346028],[113,109,72,-0.05135789067982217],[113,109,73,-0.08220762178494555],[113,109,74,-0.07518048667518108],[113,109,75,-0.070834443811981],[113,109,76,-0.13650443037716928],[113,109,77,-0.1854377960384097],[113,109,78,-0.1734271995909525],[113,109,79,-0.14482515093277457],[113,110,64,-0.10813933003556496],[113,110,65,-0.15607656320824206],[113,110,66,-0.16061999778761166],[113,110,67,-0.12439908274344486],[113,110,68,-0.13345882769731976],[113,110,69,-0.12762727080572422],[113,110,70,-0.07569769435974529],[113,110,71,-0.03557709317500936],[113,110,72,-0.051621089215859374],[113,110,73,-0.08295393106853614],[113,110,74,-0.07594711485799378],[113,110,75,-0.0712106999831782],[113,110,76,-0.13713011257476504],[113,110,77,-0.18673452171149107],[113,110,78,-0.17510932357295375],[113,110,79,-0.14598255351443065],[113,111,64,-0.10907907328784908],[113,111,65,-0.1577021725346051],[113,111,66,-0.16270842513238787],[113,111,67,-0.12615341469460828],[113,111,68,-0.13476694392814437],[113,111,69,-0.12849100729342888],[113,111,70,-0.07627962163796692],[113,111,71,-0.0359251641428121],[113,111,72,-0.05188298809991743],[113,111,73,-0.08369560138086701],[113,111,74,-0.07670793557614743],[113,111,75,-0.07157322710836919],[113,111,76,-0.1377225615548955],[113,111,77,-0.18799344055056796],[113,111,78,-0.1767650582243108],[113,111,79,-0.14711789784163015],[113,112,64,-0.11001242348562448],[113,112,65,-0.15931217635686779],[113,112,66,-0.16477774168910939],[113,112,67,-0.12789382694523438],[113,112,68,-0.13605451138271601],[113,112,69,-0.1293297291691512],[113,112,70,-0.07684861095489295],[113,112,71,-0.03627493611849976],[113,112,72,-0.05214397622111505],[113,112,73,-0.08443209459179458],[113,112,74,-0.07746196118993336],[113,112,75,-0.07192125831762813],[113,112,76,-0.13828052771197863],[113,112,77,-0.1892128875391375],[113,112,78,-0.17839285798702123],[113,112,79,-0.14823043192021162],[113,113,64,-0.1109387745674756],[113,113,65,-0.16090499724776958],[113,113,66,-0.16682570297612],[113,113,67,-0.12961863066268683],[113,113,68,-0.13732036028375016],[113,113,69,-0.13014247323949726],[113,113,70,-0.07740414612269958],[113,113,71,-0.03662670204960595],[113,113,72,-0.05240445205840942],[113,113,73,-0.08516287946670528],[113,113,74,-0.07820821899650736],[113,113,75,-0.07225406142069773],[113,113,76,-0.13880282226205168],[113,113,77,-0.19039125332188897],[113,113,78,-0.17999120613661623],[113,113,79,-0.14931943032272416],[113,114,64,-0.11185752863124046],[113,114,65,-0.16247907154375008],[113,114,66,-0.16885007835283408],[113,114,67,-0.13132614728308106],[113,114,68,-0.1385633528523529],[113,114,69,-0.13092832916549316],[113,114,70,-0.0779457508796059],[113,114,71,-0.03698076492130095],[113,114,72,-0.05266482299247163],[113,114,73,-0.08588743277881378],[113,114,74,-0.07894575344137608],[113,114,75,-0.07257094095268204],[113,114,76,-0.13928832027810106],[113,114,77,-0.19152698774011792],[113,114,78,-0.1815586177716566],[113,114,79,-0.15038419548788623],[113,115,64,-0.1127680964087412],[113,115,65,-0.1640328516158388],[113,115,66,-0.17084865477156788],[113,115,67,-0.13301471134952925],[113,115,68,-0.1397823851251806],[113,115,69,-0.13168644094855395],[113,115,70,-0.07847298959306527],[113,115,71,-0.037337436771539355],[113,115,72,-0.05292550402212673],[113,115,73,-0.08660523987232811],[113,115,74,-0.07967362777540436],[113,115,75,-0.07287123960204747],[113,115,76,-0.139735963046609],[113,115,77,-0.19261860269723255],[113,115,78,-0.18309364218296026],[113,115,79,-0.15142405838015954],[113,116,64,-0.11366977233491041],[113,116,65,-0.16556468129659183],[113,116,66,-0.17281911224009905],[113,116,67,-0.13468254358032464],[113,116,68,-0.14097625745646156],[113,116,69,-0.13241587557187096],[113,116,70,-0.0789853336555064],[113,116,71,-0.03769690196765805],[113,116,72,-0.05318677927137451],[113,116,73,-0.08731565658285641],[113,116,74,-0.08039078558611185],[113,116,75,-0.07315419797882988],[113,116,76,-0.14014461723229657],[113,116,77,-0.19366453037793888],[113,116,78,-0.18459471917156547],[113,116,79,-0.1524382316318682],[113,117,64,-0.11456156424321323],[113,117,65,-0.1670726253298802],[113,117,66,-0.17475885269932906],[113,117,67,-0.1363275767180577],[113,117,68,-0.1421434971025172],[113,117,69,-0.13311544303859538],[113,117,70,-0.07948197866033087],[113,117,71,-0.038059030682475486],[113,117,72,-0.053448613067907366],[113,117,73,-0.0880177201288392],[113,117,74,-0.08109586064833704],[113,117,75,-0.0734187620009337],[113,117,76,-0.14051288095479814],[113,117,77,-0.19466292774959001],[113,117,78,-0.18605998106739524],[113,117,79,-0.15342560774014535],[113,118,64,-0.11544243719505015],[113,118,65,-0.1685547177511155],[113,118,66,-0.17666525264897787],[113,118,67,-0.1379477099471854],[113,118,68,-0.14328261414858595],[113,118,69,-0.13378395455057124],[113,118,70,-0.07996210459993582],[113,118,71,-0.03842364032240519],[113,118,72,-0.05371091385516842],[113,118,73,-0.08871041773866947],[113,118,74,-0.08178744936045584],[113,118,75,-0.0736638576651757],[113,118,76,-0.14083936203176153],[113,118,77,-0.19561195807799125],[113,118,78,-0.1874875366457038],[113,118,79,-0.1543850439631409],[113,119,64,-0.1163113550422672],[113,119,65,-0.17000900575709424],[113,119,66,-0.17853570901361124],[113,119,67,-0.13954085428995025],[113,119,68,-0.14439214608619033],[113,119,69,-0.13442026701642112],[113,119,70,-0.08042492014729172],[113,119,71,-0.03879053884068708],[113,119,72,-0.05397357773601583],[113,119,73,-0.08939273267203528],[113,119,74,-0.08246415829491255],[113,119,75,-0.07388843861987433],[113,119,76,-0.1411227267075113],[113,119,77,-0.19650984070388636],[113,119,78,-0.1888755211446459],[113,119,79,-0.15531541111012856],[113,120,64,-0.11716728182483797],[113,120,65,-0.17143355294904775],[113,120,66,-0.18036764392090285],[113,120,67,-0.1411049364536971],[113,120,68,-0.14547066031910028],[113,120,69,-0.1350232849715004],[113,120,70,-0.08086966391153684],[113,120,71,-0.03915952463865665],[113,120,72,-0.054236488157152464],[113,120,73,-0.0900636459407474],[113,120,74,-0.08312460696298236],[113,120,75,-0.0740914884342318],[113,120,76,-0.1413617025490744],[113,120,77,-0.19735485454398632],[113,120,78,-0.19022209962498038],[113,120,79,-0.1562155952375678],[113,121,64,-0.11800918321213151],[113,121,65,-0.1728264426084155],[113,121,66,-0.18215850950536153],[113,121,67,-0.14263790270604784],[113,121,68,-0.14651675663923094],[113,121,69,-0.13559196241377972],[113,121,70,-0.08129560563673528],[113,121,71,-0.0395303864936371],[113,121,72,-0.05449951563738745],[113,121,73,-0.09072213808836903],[113,121,74,-0.08376743061090851],[113,121,75,-0.07427202284392229],[113,121,76,-0.14155508124704652],[113,121,77,-0.1981453415127097],[113,121,78,-0.19152547032799513],[113,121,79,-0.15708449936848157],[113,122,64,-0.11883602798435756],[113,122,65,-0.17418578099613105],[113,122,66,-0.1839057927233226],[113,122,67,-0.14413772276674625],[113,122,68,-0.14752906966498286],[113,122,69,-0.13612530454877675],[113,122,70,-0.08170204733895758],[113,122,71,-0.03990290351437527],[113,122,72,-0.05476251754165603],[113,122,73,-0.09136719102360384],[113,122,74,-0.08439128303775875],[113,122,75,-0.07442909196399147],[113,122,76,-0.14170172131016479],[113,122,77,-0.19887970985300685],[113,122,78,-0.1927838680222678],[113,122,79,-0.1579210452316342],[113,123,64,-0.11964678955063097],[113,123,65,-0.1755097006660989],[113,123,66,-0.1856070201649177],[113,123,67,-0.14560239370488398],[113,123,68,-0.14850627123468713],[113,123,69,-0.13662236943707903],[113,123,70,-0.08208832437717246],[113,123,71,-0.04027684512487578],[113,123,72,-0.05502533790253778],[113,123,73,-0.09199778990215868],[113,123,74,-0.08499483942526552],[113,123,75,-0.074561782460319],[113,123,76,-0.14180055064284997],[113,123,77,-0.19955643736493453],[113,123,78,-0.19399556732984055],[113,123,79,-0.1587241750168375],[113,124,64,-0.12044044749992402],[113,124,65,-0.17679636378343003],[113,124,66,-0.18725976284866322],[113,124,67,-0.14702994383011772],[113,124,68,-0.14944707274794145],[113,124,69,-0.13708226953838074],[113,124,70,-0.0824538064537317],[113,124,71,-0.04065197107737879],[113,124,72,-0.05528780729079477],[113,124,73,-0.09261292505152999],[113,124,74,-0.08557679916981707],[113,124,75,-0.07466921967101096],[113,124,76,-0.14185056899536835],[113,124,77,-0.20017407452093866],[113,124,78,-0.19515888602232692],[113,124,79,-0.1594928531424885],[113,125,64,-0.12121598918107433],[113,125,65,-0.17804396543797069],[113,125,66,-0.1888616409843362],[113,125,67,-0.14841843656647893],[113,125,68,-0.1503502274478295],[113,125,69,-0.13750417314640145],[113,125,70,-0.0827978985405932],[113,125,71,-0.0410280314951911],[113,125,72,-0.055549742736299264],[113,125,73,-0.0932115939329893],[113,125,74,-0.08613588870676964],[113,125,75,-0.07475056966930044],[113,125,76,-0.14185085027674077],[113,125,77,-0.20073124745718837],[113,125,78,-0.19627218827749873],[113,125,79,-0.16022606803130401],[113,126,64,-0.12197241130789084],[113,126,65,-0.17925073694363583],[113,126,66,-0.1904103286898535],[113,126,67,-0.14976597429739139],[113,126,68,-0.1512145326372385],[113,126,69,-0.13788730570953972],[113,126,70,-0.08312004172779813],[113,126,71,-0.04140476694599601],[113,126,72,-0.05581094770051443],[113,126,73,-0.09379280313485011],[113,126,74,-0.08667086431726907],[113,126,75,-0.0748050412597726],[113,126,76,-0.14180054472104964],[113,126,77,-0.2012266608307286],[113,126,78,-0.19733388788696513],[113,126,79,-0.1609228338900879],[113,127,64,-0.12270872158525237],[113,127,65,-0.18041494911401657],[113,127,66,-0.19190355864792263],[113,127,67,-0.15107070217050023],[113,127,68,-0.15203883182265715],[113,127,69,-0.13823095103250355],[113,127,70,-0.08341971399101983],[113,127,71,-0.0417819085461536],[113,127,72,-0.056071212101461806],[113,127,73,-0.09435557039088525],[113,127,74,-0.08718051490775366],[113,127,75,-0.07483188789990718],[113,127,76,-0.14169888089824803],[113,127,77,-0.20165910053258296],[113,127,78,-0.19834245140555393],[113,127,79,-0.1615821924891451],[113,128,64,-0.12342394035202109],[113,128,65,-0.18153491550478965],[113,128,66,-0.19333912668839964],[113,128,67,-0.1523308118510345],[113,128,68,-0.15282201677912777],[113,128,69,-0.13853445235469364],[113,128,70,-0.08369643087541784],[113,128,71,-0.04215917809644956],[113,128,72,-0.05633031239193585],[113,128,73,-0.09489892661764862],[113,128,74,-0.08766366475242486],[113,128,75,-0.07483040953925486],[113,128,76,-0.14154516756119367],[113,128,77,-0.20202743624746794],[113,128,78,-0.1992964012331629],[113,128,79,-0.16220321493688655],[113,129,64,-0.1241171022364935],[113,129,65,-0.18260899561350497],[113,129,66,-0.19471489628246538],[113,129,67,-0.1535445452125301],[113,129,68,-0.1535630295302865],[113,129,69,-0.13879721330159467],[113,129,70,-0.08394974609339725],[113,129,71,-0.042536288249658695],[113,129,72,-0.05658801169150937],[113,129,73,-0.09542191796431412],[113,129,74,-0.08811917618906906],[113,129,75,-0.07479995436885366],[113,129,76,-0.14133879532120677],[113,129,77,-0.20233062385126593],[113,129,78,-0.20019431861996762],[113,129,79,-0.16278500344503874],[113,130,64,-0.12478725782000034],[113,130,65,-0.18363559802738114],[113,130,66,-0.1960288029349167],[113,130,67,-0.1547101979538464],[113,130,68,-0.1542608642376551],[113,130,69,-0.13901869870587044],[113,130,70,-0.08417925203420674],[113,130,71,-0.04291294271016701],[113,130,72,-0.056844059972639756],[113,130,73,-0.09592360786850383],[113,130,74,-0.08854595225870705],[113,130,75,-0.07473992047376381],[113,130,76,-0.1410792381450156],[113,130,77,-0.20256770763788587],[113,130,78,-0.20103484658598128],[113,130,79,-0.16332669307970588],[113,131,64,-0.12543347530422266],[113,131,65,-0.1846131835098671],[113,131,66,-0.19727885846117263],[113,131,67,-0.1558261231316342],[113,131,68,-0.1549145689937026],[113,131,69,-0.1391984352954244],[113,131,70,-0.08438458018373907],[113,131,71,-0.04328883646582974],[113,131,72,-0.05709819430099099],[113,131,73,-0.09640307911151771],[113,131,74,-0.088942939279756],[113,131,75,-0.07464975738199912],[113,131,76,-0.1407660546666448],[113,131,77,-0.20273782236775229],[113,131,78,-0.20181669274620292],[113,131,79,-0.1638274534935067],[113,132,64,-0.12605484217772883],[113,132,65,-0.18554026801687298],[113,132,66,-0.19846315513589058],[113,132,67,-0.15689073459761424],[113,132,68,-0.15552324751347862],[113,132,69,-0.13933601224615355],[113,132,70,-0.08456540145325459],[113,132,71,-0.04366365605214682],[113,132,72,-0.057350139129882696],[113,132,73,-0.09685943586630706],[113,132,74,-0.08930912934757078],[113,132,75,-0.07452896750347439],[113,132,76,-0.14039888930843908],[113,132,77,-0.20284019513071988],[113,132,78,-0.2025386320327844],[113,132,79,-0.1642864906338918],[113,133,64,-0.12665046687716053],[113,133,65,-0.186415425633699],[113,133,66,-0.19957986970041977],[113,133,67,-0.15790251033025646],[113,133,68,-0.15608606071993053],[113,133,69,-0.13943108159762377],[113,133,70,-0.08472142641611104],[113,133,71,-0.044037079848702886],[113,133,72,-0.05759960664852344],[113,133,73,-0.09729180573146394],[113,133,74,-0.0896435627504403],[113,133,75,-0.07437710745296225],[113,133,76,-0.13997747320606846],[113,133,77,-0.20287414701679626],[113,133,78,-0.20319950930586586],[113,133,79,-0.1647030484226683],[113,134,64,-0.12721948043849368],[113,134,65,-0.18723729142391785],[113,134,66,-0.20062726721673507],[113,134,67,-0.1588599956507661],[113,134,68,-0.1566022282183954],[113,134,69,-0.13948335853043256],[113,134,70,-0.08485240545199219],[113,134,71,-0.04440877840775197],[113,134,72,-0.05784629718350432],[113,134,73,-0.09769934174450538],[113,134,74,-0.08994533029339925],[113,134,75,-0.0741937892514922],[113,134,76,-0.13950162493309878],[113,134,77,-0.2028390945887196],[113,134,78,-0.2037982418450444],[113,134,79,-0.16507641040174803],[113,135,64,-0.12776103813376555],[113,135,65,-0.18800456418167436],[113,135,66,-0.20160370475591857],[113,135,67,-0.1597618063135834],[113,135,68,-0.15707102965607514],[113,135,69,-0.1394926215045041],[113,135,70,-0.08495812879848083],[113,135,71,-0.044778414814715714],[113,135,72,-0.058089899652817724],[113,135,73,-0.09808122436773711],[113,135,74,-0.09021357552149888],[113,135,75,-0.07397868140103583],[113,135,76,-0.13897125102139107],[113,135,77,-0.20273455115105798],[113,135,78,-0.20433382171370723],[113,135,79,-0.16540590134007513],[113,136,64,-0.1282743210886373],[113,136,65,-0.18871600907909183],[113,136,66,-0.20250763490971266],[113,136,67,-0.160606631461954],[113,136,68,-0.1574918059626834],[113,136,69,-0.1394587122580793],[113,136,70,-0.08503842651019392],[113,136,71,-0.04514564508023597],[113,136,72,-0.05833009207141957],[113,136,73,-0.09843666343998114],[113,136,74,-0.09044749683448146],[113,136,75,-0.0737315098277664],[113,136,76,-0.13838634627432173],[113,136,77,-0.20256012781116292],[113,136,78,-0.2048053179887955],[113,136,79,-0.16569088879668545],[113,137,64,-0.12875853787618732],[113,137,65,-0.18937046020077233],[113,137,66,-0.20333760911419713],[113,137,67,-0.16139323643951248],[113,137,68,-0.15786396046881912],[113,137,69,-0.1393815356676521],[113,137,70,-0.08509316832606052],[113,137,71,-0.04551011856334405],[113,137,72,-0.05856654210718615],[113,137,73,-0.09876490008753987],[113,137,74,-0.0906463494851701],[113,137,75,-0.073452058689649],[113,137,76,-0.1377469938705459],[113,137,77,-0.20231553432799104],[113,137,78,-0.2052118788489159],[113,137,79,-0.16593078463485056],[113,138,64,-0.12921292608234416],[113,138,65,-0.18996682295766473],[113,138,66,-0.2040922807751841],[113,138,67,-0.16212046544924608],[113,138,68,-0.15818695989901296],[113,138,69,-0.1392610594696133],[113,138,70,-0.08512226344569],[113,138,71,-0.04587147842519627],[113,138,72,-0.058798907685899675],[113,138,73,-0.09906520858783693],[113,138,74,-0.09080944745426092],[113,138,75,-0.07314017104460381],[113,138,76,-0.13705336525677542],[113,138,77,-0.2020005797455063],[113,138,78,-0.2055527335141032],[113,138,79,-0.16612504648230153],[113,139,64,-0.12963675383838627],[113,139,65,-0.1905040763728823],[113,139,66,-0.20477040818549055],[113,139,67,-0.16278724405162448],[113,139,68,-0.1584603352367736],[113,139,69,-0.1390973138448263],[113,139,70,-0.08512566021610227],[113,139,71,-0.04622936211269757],[113,139,72,-0.059026837643679005],[113,139,73,-0.09933689817926471],[113,139,74,-0.09093616519458697],[113,139,75,-0.07279574937595783],[113,139,76,-0.1363057198287643],[113,139,77,-0.20161517280805707],[113,139,78,-0.20582719403091987],[113,139,79,-0.1662731791325456],[113,140,64,-0.13002932131600595],[113,140,65,-0.19098127523241848],[113,140,66,-0.2053708572248771],[113,140,67,-0.16339258149416758],[113,140,68,-0.15868368245935038],[113,140,69,-0.13889039086783841],[113,140,70,-0.08510334573044034],[113,140,71,-0.04658340187125502],[113,140,72,-0.059249972425109876],[113,140,73,-0.09957931481092135],[113,140,74,-0.0910259392383676],[113,140,75,-0.07241875597240867],[113,140,76,-0.13550440440044415],[113,140,77,-0.2011593221558376],[113,140,78,-0.20603465689701025],[113,140,79,-0.16637473588236626],[113,141,64,-0.13038996218048562],[113,141,65,-0.19139755209406922],[113,141,66,-0.2058926038340848],[113,141,67,-0.1639355728652253],[113,141,68,-0.15885666314035837],[113,141,69,-0.13864044382291552],[113,141,70,-0.08505534534061909],[113,141,71,-0.046933225285783954],[113,141,72,-0.05946794482512141],[113,141,73,-0.09979184282606125],[113,141,74,-0.0910782696614103],[113,141,75,-0.07200921316025648],[113,141,76,-0.13464985246191016],[113,141,77,-0.2006331362992697],[113,141,78,-0.2061746045196839],[113,141,79,-0.16642931980069353],[113,142,64,-0.13071804499761044],[113,142,65,-0.191752119148255],[113,142,66,-0.2063347362550644],[113,142,67,-0.1644154010652411],[113,142,68,-0.15897900491877404],[113,142,69,-0.13834768638949516],[113,142,70,-0.08498172208614871],[113,142,71,-0.047278455848977746],[113,142,72,-0.059680380772479044],[113,142,73,-0.09997390657325826],[113,142,74,-0.09109272139868634],[113,142,75,-0.07156720338613985],[113,142,76,-0.13374258322765675],[113,142,77,-0.20003682337182438],[113,142,78,-0.20624660650353943],[113,142,79,-0.16643658492410768],[113,143,64,-0.13101297459003705],[113,143,65,-0.19204426992485782],[113,143,66,-0.20669645703020126],[113,143,67,-0.16483133858933788],[113,143,68,-0.15905050183324687],[113,143,69,-0.13801239170012042],[113,143,70,-0.08488257604169079],[113,143,71,-0.04761871355575952],[113,143,72,-0.059886900152597906],[113,143,73,-0.10012497193949182],[113,143,74,-0.09106892540621625],[113,143,75,-0.07109286914907409],[113,143,76,-0.13278320047722375],[113,143,77,-0.19937069066154164],[113,143,78,-0.206250320762646],[113,143,79,-0.16639623737438253],[113,144,64,-0.13127419333894047],[113,144,65,-0.1922733808406124],[113,144,66,-0.2069770847540645],[113,144,67,-0.1651827491156199],[113,144,68,-0.15907101452107253],[113,144,69,-0.13763489127432443],[113,144,70,-0.08475804358617921],[113,144,71,-0.0479536155227197],[113,144,72,-0.06008711766720417],[113,144,73,-0.10024454779958065],[113,144,74,-0.09100657966470208],[113,144,75,-0.07058641278110006],[113,144,76,-0.13177239119111753],[113,144,77,-0.19863514392221157],[113,144,78,-0.20618549445329507],[113,144,79,-0.16630803639362277],[113,145,64,-0.13150118242689227],[113,145,65,-0.1924389125820533],[113,145,66,-0.2071760555719572],[113,145,67,-0.1654690888941745],[113,145,68,-0.15904047028156518],[113,145,69,-0.1372155738323167],[113,145,70,-0.08460829659659659],[113,145,71,-0.048282776631252314],[113,145,72,-0.060280643728234586],[113,145,73,-0.10033218737665511],[113,145,74,-0.0909054500208914],[113,145,75,-0.07004809607639147],[113,145,76,-0.13071092398556666],[113,145,77,-0.19783068646586954],[113,145,78,-0.20605196472384485],[113,145,79,-0.1661717952926984],[113,146,64,-0.13169346301803186],[113,146,65,-0.19254041131946162],[113,146,66,-0.2072929244202977],[113,146,67,-0.1656899079323479],[113,146,68,-0.1589588630039908],[113,146,69,-0.13675488399273322],[113,146,70,-0.08443354156975968],[113,146,71,-0.048605810192994335],[113,146,72,-0.06046708538319895],[113,146,73,-0.10038748950859208],[113,146,74,-0.09076537086316894],[113,146,75,-0.0694782397691922],[113,146,76,-0.12959964735039187],[113,146,77,-0.19695791803898577],[113,146,78,-0.20584965927871232],[113,146,79,-0.16598738230887303],[113,147,64,-0.13185059737177213],[113,147,65,-0.19257750974777496],[113,147,66,-0.20732736600467203],[113,147,67,-0.1658448509725057],[113,147,68,-0.15882625296060318],[113,147,69,-0.1362533208590335],[113,147,70,-0.08423401867567776],[113,147,71,-0.04892232863607709],[113,147,72,-0.06064604726910306],[113,147,73,-0.10041009981567342],[113,147,74,-0.09058624562848785],[113,147,75,-0.06887722286149751],[113,147,76,-0.12843948769489247],[113,147,77,-0.19601753348537418],[113,147,78,-0.20557859675411158],[113,147,79,-0.16575472136872918],[113,148,64,-0.13197218988642112],[113,148,65,-0.19254992795089093],[113,148,66,-0.20727917551217642],[113,148,67,-0.16593365825910616],[113,148,68,-0.15864276646573527],[113,148,69,-0.13571143649949105],[113,148,70,-0.08401000074627771],[113,148,71,-0.0492319442106134],[113,148,72,-0.060817132591909566],[113,148,73,-0.10039971176500191],[113,148,74,-0.09036804713827676],[113,148,75,-0.06824548180191056],[113,148,76,-0.12723144720734908],[113,148,77,-0.19501032119955208],[113,148,78,-0.20523888690368702],[113,148,79,-0.1654737927527093],[113,149,64,-0.1320578880692773],[113,149,65,-0.19245747408631855],[113,149,66,-0.2071482690554876],[113,149,67,-0.16595616609256522],[113,149,68,-0.15840859540228583],[113,149,69,-0.1351298343260298],[113,149,70,-0.08376179220347083],[113,149,71,-0.04953426971173946],[113,149,72,-0.060979944128383735],[113,149,73,-0.1003560676275503],[113,149,74,-0.09011081776156815],[113,149,75,-0.06758350951763288],[113,149,76,-0.1259766015343431],[113,149,77,-0.19393716137492942],[113,149,78,-0.20483073059275503],[113,149,79,-0.16514463365784088],[113,150,64,-0.1321073834299548],[113,150,65,-0.19230004488765676],[113,150,66,-0.20693468384692154],[113,150,67,-0.16591230716803637],[113,150,68,-0.15812399661730858],[113,150,69,-0.1345091673774292],[113,150,70,-0.08348972793070555],[113,150,71,-0.04982891921845776],[113,150,72,-0.06113408524708678],[113,150,73,-0.10027895932407116],[113,150,74,-0.08981466940417664],[113,150,75,-0.06689185430205187],[113,150,76,-0.12467609728669246],[113,150,77,-0.19279902405182917],[113,150,78,-0.20435441960042428],[113,150,79,-0.16476733865545984],[113,151,64,-0.13212041229388177],[113,151,65,-0.19207762598290393],[113,151,66,-0.20663857810157074],[113,151,67,-0.16580211069790285],[113,151,68,-0.157789291188813],[113,151,69,-0.13385013651272168],[113,151,70,-0.08319417209231461],[113,151,71,-0.05011550884643382],[113,151,72,-0.06127916094516788],[113,151,73,-0.10016822915644931],[113,151,74,-0.08947978332335928],[113,151,75,-0.0661711185609113],[113,151,76,-0.12333114937939804],[113,151,77,-0.19159696697098924],[113,151,78,-0.20381033622945505],[113,151,79,-0.16434206004104487],[113,152,64,-0.13209675653313097],[113,152,65,-0.19179029202714382],[113,152,66,-0.20626023066943233],[113,152,67,-0.1656257023174234],[113,152,68,-0.1574048635662157],[113,152,69,-0.13315348852079806],[113,152,70,-0.08287551690507645],[113,152,71,-0.05039365751282558],[113,152,72,-0.0614147788975418],[113,152,73,-0.10002377042145912],[113,152,74,-0.08910640976798241],[113,152,75,-0.06542195742052237],[113,152,76,-0.12194303821350899],[113,152,77,-0.19033213323875628],[113,152,78,-0.2031989527242709],[113,152,79,-0.16386900807354016],[113,153,64,-0.13203624421196827],[113,153,65,-0.19143820664870684],[113,153,66,-0.20580004039728936],[113,153,67,-0.16538330377365948],[113,153,68,-0.1569711605872638],[113,153,69,-0.13242001415248658],[113,153,70,-0.08253418136653626],[113,153,71,-0.05066298771115359],[113,153,72,-0.06154055051496511],[113,153,73,-0.09984552790428752],[113,153,74,-0.08869486744483117],[113,153,75,-0.0646450772019704],[113,153,76,-0.12051310670835333],[113,153,77,-0.189005748810788],[113,153,78,-0.20252083049813324],[113,153,79,-0.1633484511018784],[113,154,64,-0.1319387501447259],[113,154,65,-0.1910216222084425],[113,154,66,-0.2052585252219235],[113,154,67,-0.16507523239846708],[113,154,68,-0.1564886903745809],[113,154,69,-0.13165054608153956],[113,154,70,-0.08217060994471015],[113,154,71,-0.05092312629414022],[113,154,72,-0.06165609200746138],[113,154,73,-0.0996334982495745],[113,154,74,-0.08824554281229553],[113,154,75,-0.06384123376573465],[113,154,76,-0.11904275719304461],[113,154,77,-0.18761911980160229],[113,154,78,-0.20177661917105172],[113,154,79,-0.16278071557672388],[113,155,64,-0.13180419636386637],[113,155,65,-0.19054087937230785],[113,155,66,-0.2046363209970729],[113,155,67,-0.16470190036700474],[113,155,68,-0.1559580211153047],[113,155,69,-0.13084595680110733],[113,155,70,-0.08178527123385977],[113,155,71,-0.051173705262400226],[113,155,72,-0.06176102544952337],[113,155,73,-0.09938773020815597],[113,155,74,-0.08775888920326534],[113,155,75,-0.06301123073157916],[113,155,76,-0.11753344816661332],[113,155,77,-0.1861736296278341],[113,155,78,-0.20096705542057786],[113,155,79,-0.16216618594579327],[113,156,64,-0.13163255249633637],[113,156,65,-0.18999640649801738],[113,156,66,-0.20393418005737143],[113,156,67,-0.16426381374387367],[113,156,68,-0.15537977972762274],[113,156,69,-0.13000715646243804],[113,156,70,-0.08137865658108116],[113,156,71,-0.051414362556788856],[113,156,72,-0.06185497984346631],[113,156,73,-0.09910832475809979],[113,156,74,-0.0872354257796695],[113,156,75,-0.06215591757902234],[113,156,76,-0.11598669093653713],[113,156,77,-0.18467073599355616],[113,156,78,-0.20009296164820153],[113,156,79,-0.16150530443146854],[113,157,64,-0.13142383604658506],[113,157,65,-0.18938871883706515],[113,157,66,-0.20315296952330425],[113,157,67,-0.16376157131965416],[113,157,68,-0.15475465041828693],[113,157,69,-0.12913509066261214],[113,157,70,-0.08095127868845677],[113,157,71,-0.05164474285217387],[113,157,72,-0.06193759217730755],[113,157,73,-0.09879543509907379],[113,157,74,-0.08667573632166928],[113,157,75,-0.06127618763408631],[113,157,76,-0.11440404614578215],[113,157,77,-0.18311196772645807],[113,157,78,-0.1991552444646197],[113,157,79,-0.16079857068976308],[113,158,64,-0.1311781125848839],[113,158,65,-0.18871841755397392],[113,158,66,-0.20229366935202847],[113,158,67,-0.16319586324125326],[113,158,68,-0.15408337313548673],[113,158,69,-0.1282307381882137],[113,158,70,-0.08050367019553585],[113,158,71,-0.05186449835035183],[113,158,72,-0.062008508473541106],[113,158,73,-0.09844926651951573],[113,158,74,-0.08608046785510941],[113,158,75,-0.0603729759484326],[113,158,76,-0.11278712019882167],[113,158,77,-0.18149892147411334],[113,158,78,-0.19815489299771083],[113,158,79,-0.16004654135008517],[113,159,64,-0.13089549583985657],[113,159,65,-0.18798618856517874],[113,159,66,-0.20135737013967875],[113,159,67,-0.16256746944012063],[113,159,68,-0.15336674192173239],[113,159,69,-0.127295108721891],[113,159,70,-0.0800363822468867],[113,159,71,-0.05207328956978237],[113,159,72,-0.06206738482517503],[113,159,73,-0.098070076136518],[113,159,74,-0.08545032912138871],[113,159,75,-0.059447257077359116],[113,159,76,-0.111137561597375],[113,159,77,-0.17983325826995292],[113,159,78,-0.19709297702758757],[113,159,79,-0.15924982943562002],[113,160,64,-0.130576147694413],[113,160,65,-0.18719280120048062],[113,160,66,-0.2003452706815343],[113,160,67,-0.16187725786298468],[113,160,68,-0.15260560317161667],[113,160,69,-0.1263292405187421],[113,160,70,-0.07954998304940732],[113,160,71,-0.05227078612979005],[113,160,72,-0.06211388841543781],[113,160,73,-0.09765817250878607],[113,160,74,-0.08478608889446175],[113,160,75,-0.058500042763459416],[113,160,76,-0.10945705719683604],[113,160,77,-0.1781166999788873],[113,160,78,-0.19597064495360603],[113,160,79,-0.15840910366451527],[113,161,64,-0.13022027808456632],[113,161,65,-0.18633910669056297],[113,161,66,-0.19925867529719324],[113,161,67,-0.16112618251041008],[113,161,68,-0.15180085379960653],[113,161,69,-0.12533419805951124],[113,161,70,-0.07904505642405327],[113,161,71,-0.05245666752685398],[113,161,72,-0.06214769851758059],[113,161,73,-0.09721391512348149],[113,161,74,-0.08408857415023877],[113,161,75,-0.05753237953310098],[113,161,76,-0.10774732839460442],[113,161,77,-0.17635102563287794],[113,161,78,-0.1947891215987657],[113,161,79,-0.15752508763248707],[113,162,64,-0.1298281448009042],[113,162,65,-0.18542603648456266],[113,162,66,-0.1980989909285927],[113,162,67,-0.16031528128902933],[113,162,68,-0.1509534393231818],[113,162,69,-0.12431106968748856],[113,162,70,-0.07852220035653247],[113,162,71,-0.0526306239005935],[113,162,72,-0.06216850747126533],[113,162,73,-0.09673771375820102],[113,162,74,-0.08335866809415664],[113,162,75,-0.05654534621313985],[113,162,76,-0.10601012726165127],[113,162,77,-0.1745380676669938],[113,162,78,-0.19354970585739328],[113,162,79,-0.15659855887782165],[113,163,64,-0.1294000531927713],[113,163,65,-0.1844546004022081],[113,163,66,-0.1968677240194156],[113,163,67,-0.15944567368388377],[113,163,68,-0.15006435186685085],[113,163,69,-0.12326096523597214],[113,163,70,-0.07798202555142711],[113,163,71,-0.05279235678703375],[113,163,72,-0.062176021632072274],[113,163,73,-0.09623002771978521],[113,163,74,-0.08259730805319476],[113,163,75,-0.05554005137556776],[113,163,76,-0.10424723262878098],[113,163,77,-0.17267970806674135],[113,163,78,-0.19225376819249357],[113,163,79,-0.1556303478301566],[113,164,64,-0.12893635577552526],[113,164,65,-0.1834258846255427],[113,164,66,-0.1955664771851025],[113,164,67,-0.15851855825787284],[113,164,68,-0.1491346280927594],[113,164,69,-0.12218501365307198],[113,164,70,-0.07742515399410144],[113,164,71,-0.05294157985675139],[113,164,72,-0.06216996229074853],[113,164,73,-0.09569136496209486],[113,164,74,-0.08180548323910523],[113,164,75,-0.054517630718040846],[113,164,76,-0.10246044613914256],[113,164,77,-0.17077787443766734],[113,164,78,-0.19090274798962822],[113,164,79,-0.154621336644844],[113,165,64,-0.12843745174152654],[113,165,65,-0.18234104953572908],[113,165,66,-0.1941969456833074],[113,165,67,-0.15753520998581347],[113,165,68,-0.14816534706373666],[113,165,69,-0.12108436063049241],[113,165,70,-0.07685221752459716],[113,165,71,-0.053078019635494966],[113,165,72,-0.06215006655890439],[113,165,73,-0.09512228108533248],[113,165,74,-0.0809842323900711],[113,165,75,-0.053479244388423844],[113,165,76,-0.10065158827853507],[113,165,77,-0.16883453600836584],[113,165,78,-0.18949815077459797],[113,165,79,-0.15357245792506957],[113,166,64,-0.12790378637580305],[113,166,65,-0.18120132740088948],[113,166,66,-0.19276091369524315],[113,166,67,-0.15649697743112068],[113,166,68,-0.1471576280447751],[113,166,69,-0.11996016624282224],[113,166,70,-0.07626385642758214],[113,166,71,-0.053201416204878005],[113,166,72,-0.062116088217939104],[113,166,73,-0.09452337821988412],[113,166,74,-0.0801346412984338],[113,166,75,-0.05242607426167812],[113,166,76,-0.09882249439506828],[113,166,77,-0.16685169957815593],[113,166,78,-0.18804154530262515],[113,166,79,-0.15248469333431022],[113,167,64,-0.1273358503776563],[113,167,65,-0.18000801992141177],[113,167,66,-0.19126025042894196],[113,167,67,-0.1554052797736044],[113,167,68,-0.14611262824905127],[113,167,69,-0.11881360260368545],[113,167,70,-0.07566071804225613],[113,167,71,-0.05331152388078976],[113,167,72,-0.06206779852812348],[113,167,73,-0.09389530379811913],[113,167,74,-0.07925784023255986],[113,167,75,-0.05135932117757613],[113,167,76,-0.09697501071966848],[113,167,77,-0.16483140542077274],[113,167,78,-0.18653456052713832],[113,167,79,-0.15135907210211663],[113,168,64,-0.126734179089744],[113,168,65,-0.17876249563954794],[113,168,66,-0.18969690605596537],[113,168,67,-0.15426160369730074],[113,168,68,-0.14503154053467374],[113,168,69,-0.11764585154492052],[113,168,70,-0.07504345539592121],[113,168,71,-0.053408111867170635],[113,168,72,-0.062004986994852865],[113,168,73,-0.09323874921794485],[113,168,74,-0.07835500126126699],[113,168,75,-0.05028020214782568],[113,168,76,-0.09511099039880998],[113,168,77,-0.1627757231554392],[113,168,78,-0.18497888245660196],[113,168,79,-0.15019666942656823],[113,169,64,-0.12609935163648725],[113,169,65,-0.17746618722057622],[113,169,66,-0.18807290749362482],[113,169,67,-0.15306750014770312],[113,169,68,-0.14391559105844823],[113,169,69,-0.11645810232477835],[113,169,70,-0.07441272586475832],[113,169,71,-0.0534909648828538],[113,169,72,-0.06192746208923278],[113,169,73,-0.0925544484023404],[113,169,74,-0.07742733548960276],[113,169,75,-0.04918994754130176],[113,169,76,-0.09323228955074031],[113,169,77,-0.1606867475967098],[113,169,78,-0.18337625090820492],[113,169,79,-0.14899860477717078],[113,170,64,-0.1254319899739224],[113,170,65,-0.17612058861314797],[113,170,66,-0.1863903540451792],[113,170,67,-0.1518245809680975],[113,170,68,-0.14276603689294695],[113,170,69,-0.1152515493708515],[113,170,70,-0.07376918986510551],[113,170,71,-0.05355988375920592],[113,170,72,-0.06183505192028934],[113,170,73,-0.09184317625944502],[113,170,74,-0.07647609021505729],[113,170,75,-0.048089798256097396],[113,170,76,-0.09134076335622307],[113,170,77,-0.1585665945943859],[113,170,78,-0.18172845616748337],[113,170,79,-0.14776604010227967],[113,171,64,-0.12473275785342255],[113,171,65,-0.1747272520968418],[113,171,66,-0.18465141291094864],[113,171,67,-0.15053451542511426],[113,171,68,-0.14158416361326956],[113,171,69,-0.11402739006327876],[113,171,70,-0.0731135095783692],[113,171,71,-0.0536146860063689],[113,171,72,-0.061727604856256384],[113,171,73,-0.09110574704816657],[113,171,74,-0.07550254601361656],[113,171,75,-0.04698100288718615],[113,171,76,-0.08943826219467611],[113,171,77,-0.15641739687478398],[113,171,78,-0.18003733556329657],[113,171,79,-0.14650017794556539],[113,172,64,-0.12400235970197837],[113,172,65,-0.17328778522525987],[113,172,66,-0.18285831458359897],[113,172,67,-0.14919902663387768],[113,172,68,-0.14037128285983005],[113,172,69,-0.11278682256344323],[113,172,70,-0.07244634771243116],[113,172,71,-0.05365520634595555],[113,172,72,-0.061604990092546136],[113,172,73,-0.09034301265460357],[113,172,74,-0.07450801376528159],[113,172,75,-0.04586481489843199],[113,172,76,-0.08752662783624932],[113,172,77,-0.1542412998944628],[113,172,78,-0.17830476996776828],[113,172,79,-0.14520225947633128],[113,173,64,-0.12324153942199918],[113,173,65,-0.17180384767331636],[113,173,66,-0.18101334814119793],[113,173,67,-0.14781988789343542],[113,173,68,-0.13912872988352298],[113,173,69,-0.11153104369313352],[113,173,70,-0.07176836630218994],[113,173,71,-0.05368129720811299],[113,173,72,-0.06146709816416424],[113,173,73,-0.08955586078489572],[113,173,74,-0.07349383162890163],[113,173,75,-0.044742489807656265],[113,173,76,-0.08560768970010889],[113,173,77,-0.15204045771737162],[113,173,78,-0.1765326802310481],[113,173,79,-0.143873562438848],[113,174,64,-0.12245107911387619],[113,174,65,-0.17027714799767155],[113,174,66,-0.17911885645193815],[113,174,67,-0.14639891894341667],[113,174,68,-0.13785786107960515],[113,174,69,-0.11026124686886751],[113,174,70,-0.07108022555165593],[113,174,71,-0.05369282919096511],[113,174,72,-0.06131384140052766],[113,174,73,-0.0887452130804503],[113,174,74,-0.07246136197638013],[113,174,75,-0.04361528239342829],[113,174,76,-0.08368326118887814],[113,174,77,-0.14981702892621027],[113,174,78,-0.174723023560953],[113,174,79,-0.14251539902621818],[113,175,64,-0.12163179772479794],[113,175,65,-0.16870944031950938],[113,175,66,-0.17717723130463034],[113,175,67,-0.1449379821530457],[113,175,68,-0.13656005151654807],[113,175,69,-0.1089786200957324],[113,175,70,-0.07038258271974232],[113,175,71,-0.053689691480520545],[113,175,72,-0.061145154320817297],[113,175,73,-0.08791202316176044],[113,175,74,-0.07141198829643104],[113,175,75,-0.04248444393210489],[113,175,76,-0.08175513610876875],[113,175,77,-0.14757317257852284],[113,175,78,-0.17287778985767263],[113,175,79,-0.1411291136845574],[113,176,64,-0.12078454962753755],[113,176,65,-0.16710252093907094],[113,176,66,-0.1751909084792604],[113,176,67,-0.14343897865382566],[113,176,68,-0.1352366924660628],[113,176,69,-0.10768434402480802],[113,176,70,-0.06967609105164813],[113,176,71,-0.053671792229199926],[113,176,72,-0.06096099396815818],[113,176,73,-0.0870572746072787],[113,176,74,-0.07034711207817393],[113,176,75,-0.04135121947352999],[113,176,76,-0.07982508518455249],[113,176,77,-0.14531104421779054],[113,176,78,-0.17099899801384885],[113,176,79,-0.1397160808535696],[113,177,64,-0.11991022313321364],[113,177,65,-0.1654582248916005],[113,177,66,-0.17316236277207195],[113,177,67,-0.14190384442735665],[113,177,68,-0.13388918894042195],[113,177,69,-0.10637959007791377],[113,177,70,-0.06896139875749369],[113,177,71,-0.05363905889128658],[113,177,72,-0.06076134018116908],[113,177,73,-0.0861819788741015],[113,177,74,-0.06926814968497166],[113,177,75,-0.040216845163657935],[113,177,76,-0.07789485267808685],[113,177,77,-0.14303279194950588],[113,177,78,-0.1690886921904588],[113,177,79,-0.1382777026499035],[113,178,64,-0.11900973894220743],[113,178,65,-0.1637784224544829],[113,178,66,-0.17109410298969274],[113,178,67,-0.1403345463598308],[113,178,68,-0.1325189572430827],[113,178,69,-0.10506551864307737],[113,178,70,-0.06823914803958775],[113,178,71,-0.053591438513663964],[113,178,72,-0.06054619580157191],[113,178,73,-0.0852871731673808],[113,178,74,-0.06817652922890427],[113,178,75,-0.03908254562214816],[113,178,76,-0.07596615311863299],[113,178,77,-0.14074055259185933],[113,178,78,-0.16714893807894726],[113,178,79,-0.13681540649988136],[113,179,64,-0.11808404853765267],[113,179,65,-0.1620650156155117],[113,179,66,-0.16898866692688236],[113,179,67,-0.1387330782748116],[113,179,68,-0.131127422538492],[113,179,69,-0.10374327734378129],[113,179,70,-0.06750997416944492],[113,179,71,-0.0535288979803228],[113,179,72,-0.0603155868167621],[113,179,73,-0.08437391826559602],[113,179,74,-0.0670736874563028],[113,179,75,-0.03794953138276839],[113,179,76,-0.07404066815269046],[113,179,77,-0.13843644791029336],[113,179,78,-0.1651818191600907],[113,179,79,-0.13533064272844408],[113,180,64,-0.11713413252612931],[113,180,65,-0.16031993451234375],[113,180,66,-0.1668486163424818],[113,180,67,-0.13710145695593445],[113,180,68,-0.1297160164468246],[113,180,69,-0.10241399938470477],[113,180,70,-0.0667745046154375],[113,180,71,-0.05345142420927167],[113,180,72,-0.06006956243648303],[113,180,73,-0.08344329630899888],[113,180,74,-0.06596106665473705],[113,180,75,-0.03681899640420716],[113,180,76,-0.07212004352058167],[113,180,77,-0.1361225809448157],[113,180,78,-0.16318943297007057],[113,180,79,-0.13382488211136964],[113,181,64,-0.11616099893036219],[113,181,65,-0.1585451338532607],[113,181,66,-0.16467653194809623],[113,181,67,-0.13544171817115364],[113,181,68,-0.12828617466925754],[113,181,69,-0.10107880197633758],[113,181,70,-0.06603335822168925],[113,181,71,-0.053359024300567374],[113,181,72,-0.05980819510290597],[113,181,73,-0.08249640855865961],[113,181,74,-0.06484011159177547],[113,181,75,-0.03569211565862252],[113,181,76,-0.07020588616646456],[113,181,77,-0.13380103243853203],[113,181,78,-0.1611738873841874],[113,181,79,-0.13229961339800483],[113,182,64,-0.11516568143889634],[113,182,65,-0.15674258932939375],[113,182,66,-0.1624750084239151],[113,182,67,-0.13375591271007295],[113,182,68,-0.12683933464917033],[113,182,69,-0.09973878484044962],[113,182,70,-0.06528714443855155],[113,182,71,-0.053251725634321685],[113,182,72,-0.05953158043364712],[113,182,73,-0.08153437313365333],[113,182,74,-0.06371226649571039],[113,182,75,-0.03457004280492295],[113,182,76,-0.06829976148784857],[113,182,77,-0.13147385737537726],[113,182,78,-0.15913729692853174],[113,182,79,-0.13075634081188067],[113,183,64,-0.11414923761791403],[113,183,65,-0.1549142940286158],[113,183,66,-0.16024664947598266],[113,183,67,-0.13204610244586024],[113,183,68,-0.12537693327453792],[113,183,69,-0.09839502879810365],[113,183,70,-0.06453646260478955],[113,183,71,-0.05312957591769933],[113,183,72,-0.05923983709748071],[113,183,73,-0.0805583227340491],[113,183,74,-0.06257897208835166],[113,183,75,-0.03345390795351631],[113,183,76,-0.06640319073016826],[113,183,77,-0.1291430816346182],[113,183,78,-0.1570817791298819],[113,183,79,-0.12919658153678074],[113,184,64,-0.11311274709046829],[113,184,65,-0.15306225486125702],[113,184,66,-0.15799406294900012],[113,184,67,-0.13031435643308],[113,184,68,-0.12390040462654346],[113,184,69,-0.09704859444150986],[113,184,70,-0.06378190128132921],[113,184,71,-0.052992643180026076],[113,184,72,-0.05893310662268261],[113,184,73,-0.07956940235737792],[113,184,74,-0.06144166267977472],[113,184,75,-0.032344815528872535],[113,184,76,-0.06451764853131872],[113,184,77,-0.12681069876915896],[113,184,78,-0.15500945091390103],[113,184,79,-0.12762186319589058],[113,185,64,-0.11205730968854972],[113,185,65,-0.15118848900775383],[113,185,66,-0.1557198560085134],[113,185,67,-0.12856274705260717],[113,185,68,-0.12241117777921573],[113,185,69,-0.0957005208906574],[113,185,70,-0.06302403763616786],[113,185,71,-0.05284101571527562],[113,185,72,-0.05861155313816145],[113,185,73,-0.0785687670163047],[113,185,74,-0.060301763334708804],[113,185,75,-0.03124384223587896],[113,185,76,-0.06264456062043446],[113,185,77,-0.1244786669141666],[113,185,78,-0.15292242506153733],[113,185,79,-0.12603372133175142],[113,186,64,-0.11098404358353073],[113,186,65,-0.1492950203982907],[113,186,66,-0.15342663040609475],[113,186,67,-0.12679334621463434],[113,186,68,-0.12091067465472687],[113,186,69,-0.09435182463536544],[113,186,70,-0.06226343687986082],[113,186,71,-0.05267480197136791],[113,186,72,-0.0582753630477487],[113,186,73,-0.07755757946524854],[113,186,74,-0.05916068712004631],[113,186,75,-0.030152035135634168],[113,186,76,-0.06078530167462375],[113,186,77,-0.12214890583205489],[113,186,78,-0.15082280673336187],[113,186,79,-0.12443369689483569],[113,187,64,-0.10989408340061811],[113,187,65,-0.14738387623436203],[113,187,66,-0.1511169778407774],[113,187,67,-0.12500822163050576],[113,187,68,-0.11940030793870053],[113,187,69,-0.09300349846300168],[113,187,70,-0.0615006517507307],[113,187,71,-0.05249413038583741],[113,187,72,-0.05792474463821245],[113,187,73,-0.07653700794365773],[113,187,74,-0.058019832442654816],[113,187,75,-0.0290704098358767],[113,187,76,-0.058941193336673234],[113,187,77,-0.11982329409926727],[113,187,78,-0.14871269007130966],[113,187,79,-0.1228233337485636],[113,188,64,-0.10878857832300887],[113,188,65,-0.14545708356203238],[113,188,66,-0.14879347542964105],[113,188,67,-0.12320943316384998],[113,188,68,-0.1178814790596416],[113,188,69,-0.09165651047178487],[113,188,70,-0.060736222048725606],[113,188,71,-0.05229914916756454],[113,188,72,-0.05755992762173314],[113,188,73,-0.07550822394357838],[113,188,74,-0.05688058048637092],[113,188,75,-0.02799994880083621],[113,188,76,-0.05711350239610557],[113,188,77,-0.11750366643974484],[113,188,78,-0.14659415488701466],[113,188,79,-0.12120417619857787],[113,189,64,-0.10766869019155342],[113,189,65,-0.14351666590655035],[113,189,66,-0.14645868130009365],[113,189,67,-0.12139902927122996],[113,189,68,-0.11635557623639675],[113,189,69,-0.09031180316931006],[113,189,70,-0.05997067421669381],[113,189,71,-0.05209002602445475],[113,189,72,-0.05718116261382037],[113,189,73,-0.07447240000912857],[113,189,74,-0.05574429275677751],[113,189,75,-0.02694159978490847],[113,189,76,-0.05530343913537355],[113,189,77,-0.11519181120944973],[113,189,78,-0.14446926344570113],[113,189,79,-0.11957776655413509],[113,190,64,-0.10653559160574101],[113,190,65,-0.14156463997774013],[113,190,66,-0.14411513031591272],[113,190,67,-0.1195790435421495],[113,190,68,-0.11482397259722746],[113,190,69,-0.08897029265554521],[113,190,70,-0.05920452096758838],[113,190,71,-0.05186694783706234],[113,190,72,-0.05678872054779957],[113,190,73,-0.07343070757535088],[113,190,74,-0.0546123087419747],[113,190,75,-0.025896274394067696],[113,190,76,-0.05351215584226014],[113,190,77,-0.11288946803566692],[113,190,78,-0.14234005735421285],[113,190,79,-0.11794564272936761],[113,191,64,-0.10539046403185352],[113,191,65,-0.1396030124553767],[113,191,66,-0.14176532994866564],[113,191,67,-0.11775149134792678],[113,191,68,-0.11328802437385117],[113,191,69,-0.08763286788927908],[113,191,70,-0.058438260955947605],[113,191,71,-0.05163012027829281],[113,191,72,-0.056382892027160306],[113,191,73,-0.07238431485378377],[113,191,74,-0.05348594369718876],[113,191,75,-0.02486484677849492],[113,191,76,-0.05174074548893908],[113,191,77,-0.11059832561425402],[113,191,78,-0.14020855456144676],[113,191,79,-0.11630933589212088],[113,192,64,-0.10423449592418435],[113,192,65,-0.13763377686353684],[113,192,66,-0.13941175630564331],[113,192,67,-0.11591836660857088],[113,192,68,-0.11174906917352737],[113,192,69,-0.08630039003669365],[113,192,70,-0.05767237849183875],[113,192,71,-0.05137976737950913],[113,192,72,-0.0559639866172809],[113,192,73,-0.07133438477199279],[113,192,74,-0.05236648656071248],[113,192,75,-0.023848152459474272],[113,192,76,-0.049990240577517754],[113,192,77,-0.10832001966743374],[113,192,78,-0.13807674647911805],[113,192,79,-0.114670368168004],[113,193,64,-0.10306888086517453],[113,193,65,-0.13565891054261275],[113,193,66,-0.13705685032489723],[113,193,67,-0.11408163868638961],[113,193,68,-0.11020842433199834],[113,193,69,-0.08497369190045231],[113,193,70,-0.05690734329527712],[113,193,71,-0.05111613104347833],[113,193,72,-0.05553233207815658],[113,193,73,-0.07028207297407638],[113,193,74,-0.05125519800820849],[113,193,75,-0.0228469872931043],[113,193,76,-0.04826161215120747],[113,193,77,-0.10605613106409521],[113,193,78,-0.1359465952303716],[113,193,79,-0.11303025040714158],[113,194,64,-0.10189481573033975],[113,194,65,-0.1336803717274133],[113,194,66,-0.13470301414742228],[113,194,67,-0.11224324941460362],[113,194,68,-0.1086673853497618],[113,194,69,-0.08365357742736457],[113,194,70,-0.05614361028892917],[113,194,71,-0.05083947050469741],[113,194,72,-0.055088273539906425],[113,194,73,-0.06922852588900623],[113,194,74,-0.050153308652037244],[113,194,75,-0.021862106572959828],[113,194,76,-0.046555768969683574],[113,194,77,-0.10380818410401442],[113,194,78,-0.13382003103337556],[113,194,79,-0.11139048002099289],[113,195,64,-0.10071349888378162],[113,195,65,-0.131700096739431],[113,195,66,-0.13235260767594825],[113,195,67,-0.11040511026884052],[113,195,68,-0.10712722441395295],[113,195,69,-0.08234082129251166],[113,195,70,-0.055381619426863996],[113,195,71,-0.05055006173785814],[113,195,72,-0.054632172623005036],[113,195,73,-0.06817487887342054],[113,195,74,-0.04906201739177422],[113,195,75,-0.02089422427330932],[113,195,76,-0.04487355684650173],[113,195,77,-0.10157764496676128],[113,195,78,-0.13169894972659488],[113,195,79,-0.10975253889642755],[113,196,64,-0.09952612803782716],[113,196,65,-0.12971999632934478],[113,196,66,-0.1300079436788414],[113,196,67,-0.1085690985192763],[113,196,68,-0.10558918823099898],[113,196,69,-0.08103616817804721],[113,196,70,-0.05462179554020131],[113,196,71,-0.050248197157467776],[113,196,72,-0.054164407255717514],[113,196,73,-0.06712225424415591],[113,196,74,-0.047982489161123944],[113,196,75,-0.019944012277457703],[113,196,76,-0.04321575912628524],[113,196,77,-0.09936592140772721],[113,196,78,-0.12958520997114345],[113,196,79,-0.10811789058915258],[113,197,64,-0.09833385457455833],[113,197,65,-0.12774183883174386],[113,197,66,-0.1276710910073633],[113,197,67,-0.10673691751696407],[113,197,68,-0.10405440730828676],[113,197,69,-0.07974029017284251],[113,197,70,-0.05386454813413149],[113,197,71,-0.049934226787385794],[113,197,72,-0.0536854599622985],[113,197,73,-0.06607173588186725],[113,197,74,-0.04691576211009737],[113,197,75,-0.019012080156967922],[113,197,76,-0.04158321131297052],[113,197,77,-0.09717448840515348],[113,197,78,-0.12748057585835407],[113,197,79,-0.10648788410774242],[113,198,64,-0.0971377414850462],[113,198,65,-0.12576714529190697],[113,198,66,-0.12534370019268287],[113,198,67,-0.10490997345440911],[113,198,68,-0.10252382553280011],[113,198,69,-0.07845376149986964],[113,198,70,-0.05311028171715565],[113,198,71,-0.04960860407833012],[113,198,72,-0.05319600247188798],[113,198,73,-0.06502433950271239],[113,198,74,-0.045862653071510204],[113,198,75,-0.018098949729879597],[113,198,76,-0.039976902035152376],[113,198,77,-0.09500499845040215],[113,198,78,-0.12538666633164863],[113,198,79,-0.10486366963305987],[113,199,64,-0.09593883885260862],[113,199,65,-0.12379739046367236],[113,199,66,-0.12302734763195607],[113,199,67,-0.10308961935012223],[113,199,68,-0.10099836916041763],[113,199,69,-0.07717714663985396],[113,199,70,-0.05235940642611711],[113,199,71,-0.0492718196133973],[113,199,72,-0.052696741307373646],[113,199,73,-0.06398104646913703],[113,199,74,-0.04482390808894434],[113,199,75,-0.017205082641612336],[113,199,76,-0.03839776642057016],[113,199,77,-0.09285905241441084],[113,199,78,-0.1233050524979971],[113,199,79,-0.10324636664011712],[113,200,64,-0.09473819209196797],[113,200,65,-0.12183402642403128],[113,200,66,-0.12072357691415862],[113,200,67,-0.10127718393343393],[113,200,68,-0.09947896561458966],[113,200,69,-0.07591100933723442],[113,200,70,-0.0516123375375798],[113,200,71,-0.04892439027681769],[113,200,72,-0.052188396010305435],[113,200,73,-0.0629428081021744],[113,200,74,-0.043800223008688834],[113,200,75,-0.016330885209434463],[113,200,76,-0.03684666009926209],[113,200,77,-0.09073817001049703],[113,200,78,-0.12123726835727983],[113,200,79,-0.10163708348534797],[113,201,64,-0.09353684033591016],[113,201,65,-0.11987848034839364],[113,201,66,-0.11843389614177169],[113,201,67,-0.09947396933958022],[113,201,68,-0.0979665411856004],[113,201,69,-0.074655911034454],[113,201,70,-0.05086949416460497],[113,201,71,-0.048566857205572266],[113,201,72,-0.05167169720743905],[113,201,73,-0.061910545240532806],[113,201,74,-0.042792244307381155],[113,201,75,-0.015476709485893152],[113,201,76,-0.03532435966021533],[113,201,77,-0.08864378947630001],[113,201,78,-0.11918480907098052],[113,201,79,-0.10003691549611093],[113,202,64,-0.09233581487945203],[113,202,65,-0.1179321524031663],[113,202,66,-0.11615977540976652],[113,202,67,-0.09768124893732405],[113,202,68,-0.09646201880659508],[113,202,69,-0.07341240937084666],[113,202,70,-0.05013129799858937],[113,202,71,-0.04819978374721015],[113,202,72,-0.05114738470753399],[113,202,73,-0.06088514788173904],[113,202,74,-0.04180057001513987],[113,202,75,-0.014642854427724136],[113,202,76,-0.03383156330252147],[113,202,77,-0.08657726748146603],[113,202,78,-0.11714912938663143],[113,202,79,-0.09844694314618396],[113,203,64,-0.09113604137911535],[113,203,65,-0.11599628934184229],[113,203,66,-0.11390252049805161],[113,203,67,-0.09590015946704061],[113,203,68,-0.09496620969081847],[113,203,69,-0.07218097495154448],[113,203,70,-0.04939811540727936],[113,203,71,-0.047823697870663893],[113,203,72,-0.05061614613119827],[113,203,73,-0.059867403718116496],[113,203,74,-0.04082570164602423],[113,203,75,-0.013829550358963447],[113,203,76,-0.03236885193593663],[113,203,77,-0.08453977443790862],[113,203,78,-0.11513149810394971],[113,203,79,-0.09686810794694907],[113,204,64,-0.0899377137443031],[113,204,65,-0.11407118046647641],[113,204,66,-0.11166247581273905],[113,204,67,-0.09413101887114424],[113,204,68,-0.09347912489238658],[113,204,69,-0.07096146250397105],[113,204,70,-0.048669889207928294],[113,204,71,-0.04743872602607237],[113,204,72,-0.05007822683520086],[113,204,73,-0.05885753855664687],[113,204,74,-0.03986773227530871],[113,204,75,-0.01303685977312646],[113,204,76,-0.030936446321666186],[113,204,77,-0.08253162641785244],[113,204,78,-0.11313206691934334],[113,204,79,-0.09530041939169505],[113,205,64,-0.0887407331856075],[113,205,65,-0.112156736870664],[113,205,66,-0.10943961182596658],[113,205,67,-0.0923738237959067],[113,205,68,-0.09200046548770575],[113,205,69,-0.06975349111560893],[113,205,70,-0.04794639834232601],[113,205,71,-0.04704483615329584],[113,205,72,-0.04953369479361026],[113,205,73,-0.05785554750739627],[113,205,74,-0.038926585113159475],[113,205,75,-0.012264776258557108],[113,205,76,-0.029534424099752397],[113,205,77,-0.08055279313153774],[113,205,78,-0.11115054028055481],[113,205,79,-0.09374351876435905],[113,206,64,-0.08754505536620683],[113,206,65,-0.11025294175198365],[113,206,66,-0.10723397513693199],[113,206,67,-0.09062863322913832],[113,206,68,-0.09053000581163015],[113,206,69,-0.06855673961233229],[113,206,70,-0.047227461929368816],[113,206,71,-0.04664203588215601],[113,206,72,-0.04898265387070579],[113,206,73,-0.05686145313382502],[113,206,74,-0.038002193481176644],[113,206,75,-0.011513289143044484],[113,206,76,-0.02816286922771606],[113,206,77,-0.07860328124134504],[113,206,78,-0.1091866970681121],[113,206,79,-0.09219712104194261],[113,207,64,-0.08635068911010498],[113,207,65,-0.10835984755905145],[113,207,66,-0.1050456844257362],[113,207,67,-0.08889556543584845],[113,207,68,-0.08906759078063493],[113,207,69,-0.0673709440785064],[113,207,70,-0.046512937812403905],[113,207,71,-0.04623037208775162],[113,207,72,-0.04842524326470208],[113,207,73,-0.05587530454454404],[113,207,74,-0.03709449981094285],[113,207,75,-0.01078238202626229],[113,207,76,-0.0268218689536625],[113,207,77,-0.07668313124309567],[113,207,78,-0.10724038779184696],[113,207,79,-0.09066101257930709],[113,208,64,-0.08515769326500601],[113,208,65,-0.10647757081422259],[113,208,66,-0.10287492414044754],[113,208,67,-0.08717479294023715],[113,208,68,-0.08761313125444008],[113,208,69,-0.06619589391432494],[113,208,70,-0.04580272007460433],[113,208,71,-0.04580992933200311],[113,208,72,-0.04786163576212797],[113,208,73,-0.05489717514141756],[113,208,74,-0.03620345378228776],[113,208,75,-0.01007203110693455],[113,208,76,-0.025511510208405908],[113,208,77,-0.07479241249832395],[113,208,78,-0.10531152912853854],[113,208,79,-0.08913504651754023],[113,209,64,-0.08396617360106182],[113,209,65,-0.1046062870503492],[113,209,66,-0.10072193835388707],[113,209,67,-0.0854665376321304],[113,209,68,-0.0861665995108018],[113,209,69,-0.06503142802691211],[113,209,70,-0.045096736627053706],[113,209,71,-0.04538082827015258],[113,209,72,-0.04729203596319086],[113,209,73,-0.05392716042047342],[113,209,74,-0.03532901056972546],[113,209,75,-0.0093822036480209],[113,209,76,-0.024231876218372445],[113,209,77,-0.07293121848617445],[113,209,78,-0.10340009862117622],[113,209,79,-0.08761913830539649],[113,210,64,-0.08277627974641043],[113,210,65,-0.10274622586260286],[113,210,66,-0.09858702479129255],[113,210,67,-0.08377106599938879],[113,210,68,-0.08472802483028315],[113,210,69,-0.06387743114981069],[113,210,70,-0.044394946866511714],[113,210,71,-0.0449432240229889],[113,210,72,-0.04671667848083707],[113,210,73,-0.05296537582776458],[113,210,74,-0.03447112919738369],[113,210,75,-0.008712856580123305],[113,210,76,-0.022983043340865532],[113,210,77,-0.07109966227671792],[113,210,78,-0.10150612953805264],[113,210,79,-0.0861132613302806],[113,211,64,-0.08158820216101706],[113,211,65,-0.10089766607713183],[113,211,66,-0.096470529030863],[113,211,67,-0.08208868448851983],[113,211,68,-0.08329748918895634],[113,211,69,-0.06273383028647946],[113,211,70,-0.043697339400523824],[113,211,71,-0.044497304516283157],[113,211,72,-0.046135826116738665],[113,211,73,-0.052011954672392856],[113,211,74,-0.0336297710024797],[113,211,75,-0.008063935242905697],[113,211,76,-0.02176507812288929],[113,211,77,-0.06929787222741736],[113,211,78,-0.09962970589072769],[113,211,79,-0.08461744265632958],[113,212,64,-0.08040216915081076],[113,212,65,-0.0990609310388838],[113,212,66,-0.09437283887975319],[113,212,67,-0.08041973499616366],[113,212,68,-0.08187512305786378],[113,212,69,-0.06160059127419742],[113,212,70,-0.04300392983806605],[113,212,71,-0.044043288789530184],[113,212,72,-0.045549768017860565],[113,212,73,-0.051067046098886675],[113,212,74,-0.03280489820705235],[113,212,75,-0.00743537226380305],[113,212,76,-0.020578034584139943],[113,212,77,-0.0675259879041872],[113,212,78,-0.09777095761050572],[113,212,79,-0.08313175886802002],[113,213,64,-0.07921844392453439],[113,213,65,-0.09723638402142191],[113,213,66,-0.09229437892859221],[113,213,67,-0.07876459049453595],[113,213,68,-0.08046110130890388],[113,213,69,-0.060477715465511846],[113,213,70,-0.042314758644423106],[113,213,71,-0.04358142527665339],[113,213,72,-0.04495881781764051],[113,213,73,-0.050130813121097746],[113,213,74,-0.03199647259734842],[113,213,75,-0.006827086572832995],[113,213,76,-0.019421951724234183],[113,213,77,-0.06578415622822059],[113,213,78,-0.09593005588361928],[113,213,79,-0.08165633201854569],[113,214,64,-0.07803732169613137],[113,214,65,-0.0954244237619812],[113,214,66,-0.09023560528799553],[113,214,67,-0.07712365079423643],[113,214,68,-0.07905563922754302],[113,214,69,-0.05936523652503575],[113,214,70,-0.04162988905947054],[113,214,71,-0.043111990061880344],[113,214,72,-0.044363311766188226],[113,214,73,-0.04920343071978138],[113,214,74,-0.031204454309997843],[113,214,75,-0.006238982551904709],[113,214,76,-0.018296851253697243],[113,214,77,-0.0640725278494557],[113,214,78,-0.09410720864578825],[113,214,79,-0.08019132568295369],[113,215,64,-0.07685912683575964],[113,215,65,-0.09362548012526384],[113,215,66,-0.08819700051072558],[113,215,67,-0.07549733844796896],[113,215,68,-0.07765898863330006],[113,215,69,-0.05826321733988762],[113,215,70,-0.040949405078861044],[113,215,71,-0.04263528511440836],[113,215,72,-0.043763606854154695],[113,215,73,-0.04828508400591232],[113,215,74,-0.03042880072376195],[113,215,75,-0.005670949316511182],[113,215,76,-0.017202735547561642],[113,215,77,-0.062391253747097794],[113,215,78,-0.0923026562371109],[113,215,79,-0.07873694111658398],[113,216,64,-0.07568421007275444],[113,216,65,-0.09184000989966555],[113,216,66,-0.08617906870329706],[113,216,67,-0.07388609479883558],[113,216,68,-0.07627143410945471],[113,216,69,-0.05717174704253432],[113,216,70,-0.04027340949793206],[113,216,71,-0.04215163650585858],[113,216,72,-0.04316007893513176],[113,216,73,-0.04737596645168581],[113,216,74,-0.029669465455336778],[113,216,75,-0.005122860127252937],[113,216,76,-0.0161395858198111],[113,216,77,-0.06074048205718301],[113,216,78,-0.09051666721849215],[113,216,79,-0.07729341351986559],[113,217,64,-0.07451294575408925],[113,217,65,-0.09006849272976769],[113,217,66,-0.08418233083085688],[113,217,67,-0.0722903761768955],[113,217,68,-0.07489328934384483],[113,217,69,-0.05609093814519718],[113,217,70,-0.039602022018447015],[113,217,71,-0.04166139261489751],[113,217,72,-0.04255312085166914],[113,217,73,-0.04647627819108479],[113,217,74,-0.02892639745744187],[113,217,75,-0.0045945719282380225],[113,217,76,-0.015107360516278978],[113,217,77,-0.059120355126713105],[113,217,78,-0.08874953435100576],[113,217,79,-0.07586100841097891],[113,218,64,-0.07334572916195263],[113,218,65,-0.08831142718890543],[113,218,66,-0.08220732021904804],[113,218,67,-0.0707106502475716],[113,218,68,-0.07352489358287634],[113,218,69,-0.055020923785237034],[113,218,70,-0.03893537741843952],[113,218,71,-0.041164922323617514],[113,218,72,-0.04194314057005346],[113,218,73,-0.04558622439169557],[113,218,74,-0.028199540217084255],[113,218,75,-0.004085925008936522],[113,218,76,-0.014105993922917096],[113,218,77,-0.057531006793327136],[113,218,78,-0.08700157073961291],[113,218,79,-0.0744400181081689],[113,219,64,-0.0721829738941699],[113,219,65,-0.0865693269956118],[113,219,66,-0.08025457825643659],[113,219,67,-0.06914739251538327],[113,219,68,-0.0721666082011262],[113,219,69,-0.05396185508120965],[113,219,70,-0.03827362378563131],[113,219,71,-0.040662613210530114],[113,219,72,-0.041330559329106065],[113,219,73,-0.044706013699340685],[113,219,74,-0.027488831051652736],[113,219,75,-0.003596742785704677],[113,219,76,-0.013135394985734595],[113,219,77,-0.055972559888978014],[113,219,78,-0.08527310614270349],[113,219,79,-0.07303075832378589],[113,220,64,-0.07102510931118525],[113,220,65,-0.08484271737757718],[113,220,66,-0.07832465030077937],[113,220,67,-0.0676010829862275],[113,220,68,-0.0708188133890025],[113,220,69,-0.05291389859940202],[113,220,70,-0.037616920814969],[113,220,71,-0.04015486974515194],[113,220,72,-0.04071580980824656],[113,220,73,-0.043835856756884034],[113,220,74,-0.026794200500192916],[113,220,75,-0.0031268316987701746],[113,220,76,-0.012195446338013189],[113,220,77,-0.05444512396547164],[113,220,78,-0.08356448344881745],[113,220,79,-0.07163356487226002],[113,221,64,-0.06987257805333238],[113,221,65,-0.08313213158663163],[113,221,66,-0.07641808179215108],[113,221,67,-0.06607220299122436],[113,221,68,-0.06948190496105319],[113,221,69,-0.05187723393083602],[113,221,70,-0.03696543817095239],[113,221,71,-0.03964211148931728],[113,221,72,-0.04009933432008341],[113,221,73,-0.04297596479842333],[113,221,74,-0.026115571807017533],[113,221,75,-0.0026759812201710524],[113,221,76,-0.011286003529838997],[113,221,77,-0.052948793239225446],[113,221,78,-0.08187605532183859],[113,221,79,-0.07024879049437491],[113,222,64,-0.06872583363202271],[113,222,65,-0.08143810756797429],[113,222,66,-0.07453541457550794],[113,222,67,-0.06456123217476702],[113,222,68,-0.06815629128745182],[113,222,69,-0.050852051378734095],[113,222,70,-0.03631935391542351],[113,222,71,-0.039124771310383465],[113,222,72,-0.03948158303270039],[113,222,73,-0.042126548319845636],[113,222,74,-0.025452860494529845],[113,222,75,-0.0022439639677624434],[113,222,76,-0.010406894454319086],[113,222,77,-0.051483644751971036],[113,222,78,-0.08020818101572272],[113,222,79,-0.06887680180019486],[113,223,64,-0.06758533809836574],[113,223,65,-0.07976118478659057],[113,223,66,-0.07267718343483329],[113,223,67,-0.06306864564906275],[113,223,68,-0.0668423903511379],[113,223,69,-0.049838549756467065],[113,223,70,-0.03567885300149672],[113,223,71,-0.03860329361150575],[113,223,72,-0.03886301222669335],[113,223,73,-0.04128781582651207],[113,223,74,-0.024805974021924904],[113,223,75,-0.0018305359201074662],[113,223,76,-0.00955791896427341],[113,223,77,-0.05004973674356753],[113,223,78,-0.07856122335960834],[113,223,79,-0.0675179763329878],[113,224,64,-0.06645155979262407],[113,224,65,-0.07810190121349246],[113,224,66,-0.07084391284055631],[113,224,67,-0.06159491131707772],[113,224,68,-0.06554062693299705],[113,224,69,-0.04883693429601148],[113,224,70,-0.03504412583432067],[113,224,71,-0.03807813258416762],[113,224,72,-0.038244082591906356],[113,224,73,-0.04045997265865463],[113,224,74,-0.024174811526273682],[113,224,75,-0.0014354367268350613],[113,224,76,-0.008738848672669003],[113,224,77,-0.04864710723256604],[113,224,78,-0.07693554591392557],[113,224,79,-0.06617269975644291],[113,225,64,-0.06532497117769441],[113,225,65,-0.07646079047401097],[113,225,66,-0.06903611391135936],[113,225,67,-0.06014048736531417],[113,225,68,-0.06425142992725257],[113,225,69,-0.047847414666835925],[113,225,70,-0.034415366899276066],[113,225,71,-0.037549750488047526],[113,225,72,-0.03762525756860522],[113,225,73,-0.03964321989481018],[113,225,74,-0.023559263642280486],[113,225,75,-0.0010583901087646082],[113,225,76,-0.007949426929490461],[113,225,77,-0.04727577279957106],[113,225,78,-0.07533151029777695],[113,225,79,-0.06484136316731814],[113,226,64,-0.06420604675958602],[113,226,65,-0.07483837915996046],[113,226,66,-0.06725428159094209],[113,226,67,-0.058705819927396326],[113,226,68,-0.06297522978903237],[113,226,69,-0.04687020310505061],[113,226,70,-0.033792773458138727],[113,226,71,-0.03701861596318535],[113,226,72,-0.03700700173760514],[113,226,73,-0.038837753333385044],[113,226,74,-0.022959212396846958],[113,226,75,-6.991043418945122E-4],[113,226,76,-0.007189368967265178],[113,226,77,-0.04593572756792618],[113,226,78,-0.07374947368753605],[113,226,79,-0.06352436053548019],[113,227,64,-0.06309526109767531],[113,227,65,-0.07323518430709591],[113,227,66,-0.06549889203974688],[113,227,67,-0.05729134091897329],[113,227,68,-0.06171245611584568],[113,227,69,-0.045905512652553736],[113,227,70,-0.03317654431368027],[113,227,71,-0.036485202379309876],[113,227,72,-0.03638977926367479],[113,227,73,-0.038043762552252954],[113,227,74,-0.02237453117448088],[113,227,75,-3.572728192105618E-4],[113,227,76,-0.00645836220703831],[113,227,77,-0.04462694237577253],[113,227,78,-0.07218978648629137],[113,227,79,-0.06222208627312948],[113,228,64,-0.061993086907209206],[113,228,65,-0.07165171103879064],[113,228,66,-0.0637704002410139],[113,228,67,-0.05589746604391664],[113,228,68,-0.06046353536438219],[113,228,69,-0.04495355550572858],[113,228,70,-0.032566878643026875],[113,228,71,-0.03594998622696315],[113,228,72,-0.03577405239622805],[113,228,73,-0.037261430046022274],[113,228,74,-0.02180508474943393],[113,228,75,-3.257468409300504E-5],[113,228,76,-0.005756066716157928],[113,228,77,-0.04334936413301516],[113,228,78,-0.07065279016334945],[113,228,79,-0.06093493293471401],[113,229,64,-0.06089999325625402],[113,229,65,-0.07008845037638867],[113,229,66,-0.0620692378199237],[113,229,67,-0.05452459297127937],[113,229,68,-0.05922888870373171],[113,229,69,-0.04401454147307822],[113,229,70,-0.031963974899972894],[113,229,71,-0.03541344555484797],[113,229,72,-0.03516028003102412],[113,229,73,-0.03649093044037627],[113,229,74,-0.021250729380363983],[113,229,75,2.753244710030678E-4],[113,229,76,-0.005082115808874231],[113,229,77,-0.042102915356288746],[113,229,78,-0.06913881526262775],[113,229,79,-0.0596632890487619],[113,230,64,-0.059816443859020144],[113,230,65,-0.06854587721623533],[113,230,66,-0.06039581107398647],[113,230,67,-0.05317309968198632],[113,230,68,-0.05800893000580444],[113,230,69,-0.04308867654102484],[113,230,70,-0.03136802978633739],[113,230,71,-0.034876058457623746],[113,230,72,-0.034548916336326806],[113,230,73,-0.035732429782707895],[113,230,74,-0.020711312963285558],[113,230,75,5.667718469582405E-4],[113,230,76,-0.004436116780477722],[113,230,77,-0.040887493874629185],[113,230,78,-0.06764817957840391],[113,230,79,-0.05840753708259514],[113,231,64,-0.0587428954671407],[113,231,65,-0.06702444847286002],[113,231,66,-0.05875049921219695],[113,231,67,-0.051843342983688624],[113,231,68,-0.056804063973347085],[113,231,69,-0.04217616154687504],[113,231,70,-0.030779237292266087],[113,231,71,-0.03433830161806469],[113,231,72,-0.033940409446599214],[113,231,73,-0.03498608490800761],[113,231,74,-0.02018667523848802],[113,231,75,8.421266279226083E-4],[113,231,76,-0.003817651765418475],[113,231,77,-0.03970297269815637],[113,231,78,-0.06618118649645471],[113,231,79,-0.05716805154052318],[113,232,64,-0.057679796360167374],[113,232,65,-0.0655246013872961],[113,232,66,-0.05713365279985506],[113,232,67,-0.050535657191692604],[113,232,68,-0.05561468440556894],[113,232,69,-0.04127719095774083],[113,232,70,-0.030197787805227895],[113,232,71,-0.033800648907220704],[113,232,72,-0.03333520022647835],[113,232,73,-0.03425204287875512],[113,232,74,-0.01967664804707765],[113,232,75,0.001101759125215247],[113,232,76,-0.003226278709630879],[113,232,77,-0.038549200041730916],[113,232,78,-0.06473812349821625],[113,232,79,-0.055945197195777126],[113,233,64,-0.05662758493623903],[113,233,65,-0.06404675199905623],[113,233,66,-0.055545592405383204],[113,233,67,-0.04925035297340398],[113,233,68,-0.054441172601040505],[113,233,69,-0.04039195175402318],[113,233,70,-0.029623867287319337],[113,233,71,-0.033263570045937725],[113,233,72,-0.032733721107446406],[113,233,73,-0.03353044049739258],[113,233,74,-0.019181055632833576],[113,233,75,0.0013460498815593956],[113,233,76,-0.0026615324471783337],[113,233,77,-0.037425999495295],[113,233,78,-0.06331926082523737],[113,233,79,-0.05473932745612313],[113,234,64,-0.05558668840351162],[113,234,65,-0.0625912937797687],[113,234,66,-0.05398660744486579],[113,234,67,-0.04798771635321252],[113,234,68,-0.05328389589711025],[113,234,69,-0.039520622415819995],[113,234,70,-0.029057656520296037],[113,234,71,-0.03272752933074251],[113,234,72,-0.032136394999219185],[113,234,73,-0.032821403889722225],[113,234,74,-0.01869971498504622],[113,234,75,0.0015753887420033978],[113,234,76,-0.0021229258711917536],[113,234,77,-0.036333170332322716],[113,234,78,-0.061924850300776844],[113,234,79,-0.05355078286269367],[113,235,64,-0.05455752157260264],[113,235,65,-0.0611585964260003],[113,235,66,-0.052456955219463745],[113,235,67,-0.04674800787425858],[113,235,68,-0.05214320634468347],[113,235,69,-0.03866337201039435],[113,235,70,-0.028499330417579814],[113,235,71,-0.03219298442676567],[113,235,72,-0.031543634277512216],[113,235,73,-0.032125048157394503],[113,235,74,-0.01823243621805358],[113,235,75,0.001790173897778153],[113,235,76,-0.0016099511890278588],[113,235,77,-0.03527048794760094],[113,235,78,-0.06055512430501717],[113,235,79,-0.05237988972120961],[113,236,64,-0.05354048574998913],[113,236,65,-0.059749004808364994],[113,236,66,-0.050956860140369944],[113,236,67,-0.04553146191311748],[113,236,68,-0.05101943951686287],[113,236,69,-0.03782035937866451],[113,236,70,-0.027949057402357202],[113,236,71,-0.031660385230057195],[113,236,72,-0.030955839849496663],[113,236,73,-0.031441477097499664],[113,236,74,-0.017779022983274266],[113,236,75,0.001990810909189671],[113,236,76,-0.0011220812516133532],[113,236,77,-0.03423770441544212],[113,236,78,-0.05921029490004327],[113,236,79,-0.05122695886442584],[113,237,64,-0.052535967731936715],[113,237,65,-0.058362838073536746],[113,237,66,-0.04948651313541985],[113,237,67,-0.04433828614296421],[113,237,68,-0.04991291344952137],[113,237,69,-0.03699173241842389],[113,237,70,-0.027406998850686405],[113,237,71,-0.031130172801270565],[113,237,72,-0.030373400297864256],[113,237,73,-0.030770782987089417],[113,237,74,-0.017339272909586596],[113,237,75,0.0021777117135245833],[113,237,76,-6.587709469569497E-4],[113,237,77,-0.0332345491592789],[113,237,78,-0.05789055310035516],[113,237,79,-0.05009228454423168],[113,238,64,-0.05154433889820521],[113,238,65,-0.05700038889536597],[113,238,66,-0.04804607123101653],[113,238,67,-0.04316866114039379],[113,238,68,-0.04882392771151779],[113,238,69,-0.03617762746180597],[113,238,70,-0.026873308598375095],[113,238,71,-0.03060277837233515],[113,238,72,-0.02979669110405003],[113,238,73,-0.03011304643029966],[113,238,74,-0.016912978067993408],[113,238,75,0.0023512936237710088],[113,238,76,-2.1945864791833488E-4],[113,238,77,-0.0322607297235314],[113,238,78,-0.05659606828436346],[113,238,79,-0.048976143451476786],[113,239,64,-0.05056595440448023],[113,239,65,-0.05566192287092093],[113,239,66,-0.04663565730261434],[113,239,67,-0.04202274013072486],[113,239,68,-0.047752762601926825],[113,239,69,-0.03537816874433694],[113,239,70,-0.026348132510260688],[113,239,71,-0.030078622427405083],[113,239,72,-0.029226073950828567],[113,239,73,-0.02946833626564261],[113,239,74,-0.016499925456657696],[113,239,75,0.002511978323719333],[113,239,76,1.964322954909147E-4],[113,239,77,-0.03131593263864765],[113,239,78,-0.05532698774204752],[113,239,79,-0.04787879386126601],[113,240,64,-0.049601152472145076],[113,240,65,-0.0543476780568753],[113,240,66,-0.045255359986583164],[113,240,67,-0.04090064886624213],[113,240,68,-0.04669967847127707],[113,240,69,-0.03459346796270564],[113,240,70,-0.02583160811035268],[113,240,71,-0.029558113858996562],[113,240,72,-0.02866189610412385],[113,240,73,-0.028836709530883773],[113,240,74,-0.016099897502486925],[113,240,75,0.0026601908648198743],[113,240,76,5.894920288435866E-4],[113,240,77,-0.030399824370207554],[113,240,78,-0.05408343635364773],[113,240,79,-0.04680047490109499],[113,241,64,-0.048650253773694176],[113,241,65,-0.053057864641310924],[113,241,66,-0.043905233745927995],[113,241,67,-0.03980248563153962],[113,241,68,-0.045664915163473714],[113,241,69,-0.033823623918214134],[113,241,70,-0.025323864271154337],[113,241,71,-0.029041649199861578],[113,241,72,-0.0281044898735174],[113,241,73,-0.028218211482807884],[113,241,74,-0.015712672575584067],[113,241,75,0.0027963586699217328],[113,241,76,9.603226403833319E-4],[113,241,77,-0.029512052343056705],[113,241,78,-0.05286551639401684],[113,241,79,-0.045741405938864534],[113,242,64,-0.04771356091184199],[113,242,65,-0.05179266474571249],[113,242,66,-0.042585299082038126],[113,242,67,-0.0387283213698644],[113,242,68,-0.04464869157478297],[113,242,69,-0.03306872224273055],[113,242,70,-0.024825020960378023],[113,242,71,-0.028529611930838927],[113,242,72,-0.02755417215065075],[113,242,73,-0.02761287566912123],[113,242,74,-0.01533802551306861],[113,242,75,0.0029209105487272833],[113,242,76,0.001309536591477165],[113,242,77,-0.02865224603156861],[113,242,78,-0.051673307457059225],[113,242,79,-0.04470178608753055],[113,243,64,-0.04679135799006853],[113,243,65,-0.05055223235161581],[113,243,66,-0.041295542884359444],[113,243,67,-0.037678199924112275],[113,243,68,-0.04365120532595753],[113,243,69,-0.032328835203804605],[113,243,70,-0.02433518904312235],[113,243,71,-0.028022371864551848],[113,243,72,-0.027011244024361298],[113,243,73,-0.02702072404962206],[113,243,74,-0.01497572814889941],[113,243,75,0.0030342757295459388],[113,243,76,0.0016377551391517128],[113,243,77,-0.027820018107259013],[113,243,78,-0.05050686649446898],[113,243,79,-0.043681793822818324],[113,244,64,-0.04588391027209205],[113,244,65,-0.04933669334611125],[113,244,66,-0.040035918909650706],[113,244,67,-0.0366521383859206],[113,244,68,-0.04267263254330944],[113,244,69,-0.031604021585474505],[113,244,70,-0.023854470137466968],[113,244,71,-0.02752028460449392],[113,244,72,-0.026475990471092618],[113,244,73,-0.026441767163712722],[113,244,74,-0.014625549846508955],[113,244,75,0.0031368829116333987],[113,244,76,0.0019456067590772719],[113,244,77,-0.027014965635166116],[113,244,78,-0.049366227962809546],[113,244,79,-0.04268158671015476],[113,245,64,-0.04499146392754464],[113,245,65,-0.04814614568020731],[113,245,66,-0.038806348382328854],[113,245,67,-0.03565012754616322],[113,245,68,-0.04171312774432424],[113,245,69,-0.03089432664120563],[113,245,70,-0.023382956521371016],[113,245,71,-0.027023691078762846],[113,245,72,-0.025948680118868174],[113,245,73,-0.0258760043413062],[113,245,74,-0.014287258031266655],[113,245,75,0.003229159342070854],[113,245,76,0.0022337255769521746],[113,245,77,-0.0262366713106583],[113,245,78,-0.0482514040728761],[113,245,79,-0.0417013012367466],[113,246,64,-0.04411424586086903],[113,246,65,-0.04698065963383338],[113,246,66,-0.03760672070724951],[113,246,67,-0.03467213244000204],[113,246,68,-0.04077282382316706],[113,246,69,-0.03019978211527976],[113,246,70,-0.02292073108863875],[113,246,71,-0.0265329171473577],[113,246,72,-0.025429565082807123],[113,246,73,-0.025323423954107936],[113,246,74,-0.013960618719940287],[113,246,75,0.003311529920856908],[113,246,76,0.002502749815855924],[113,246,77,-0.025484704728560813],[113,246,78,-0.04716238513513842],[113,246,79,-0.04074105274446412],[113,247,64,-0.04325246362028194],[113,247,65,-0.045840278181127146],[113,247,66,-0.036436894286192206],[113,247,67,-0.0337180929795747],[113,247,68,-0.03985183213126641],[113,247,69,-0.029520406328895906],[113,247,70,-0.022467867351668086],[113,247,71,-0.026048273281704906],[113,247,72,-0.02491888086995075],[113,247,73,-0.024784003704264323],[113,247,74,-0.01364539704454651],[113,247,75,0.003384416337536729],[113,247,76,0.002753320266677692],[113,247,77,-0.024758623676802323],[113,247,78,-0.04609913999501913],[113,247,79,-0.03980093545901038],[113,248,64,-0.04240630538343759],[113,248,65,-0.044725017449502406],[113,248,66,-0.035296697429255154],[113,248,67,-0.03278792466732689],[113,248,68,-0.038950242647977244],[113,248,69,-0.028856204327162446],[113,248,70,-0.022024429488609016],[113,248,71,-0.025570054314776238],[113,248,72,-0.024416846350908433],[113,248,73,-0.02425771094733374],[113,248,74,-0.013341357768149948],[113,248,75,0.003448236242391468],[113,248,76,0.0029860787882901208],[113,248,77,-0.024057975447076444],[113,248,78,-0.04506161655168783],[113,248,79,-0.03888102261064573],[113,249,64,-0.04157594001629546],[113,249,65,-0.04363486726593116],[113,249,66,-0.03418592935238916],[113,249,67,-0.03188151938300762],[113,249,68,-0.038068124236227345],[113,249,69,-0.0282071680831507],[113,249,70,-0.021590472432540576],[113,249,71,-0.025098539259946373],[113,249,72,-0.023923663795661645],[113,249,73,-0.02374450304657754],[113,249,74,-0.013048265790402205],[113,249,75,0.0035034024548496615],[113,249,76,0.003201666843626895],[113,249,77,-0.023382298155387317],[113,249,78,-0.04404974235407275],[113,249,79,-0.03798136664161401],[113,250,64,-0.04076151720152825],[113,250,65,-0.042569791783788245],[113,250,66,-0.033104361252306855],[113,250,67,-0.03099874623733113],[113,250,68,-0.037205524977913386],[113,250,69,-0.027573276755124172],[113,250,70,-0.021166042000209967],[113,250,71,-0.024633991196478956],[113,250,72,-0.02343951897065512],[113,250,73,-0.023244327755560814],[113,250,74,-0.012765886640785214],[113,250,75,0.003550322211479847],[113,250,76,0.003400724077361407],[113,250,77,-0.0227311220656819],[113,250,78,-0.043063425267773604],[113,250,79,-0.03710199949525573],[113,251,64,-0.03996316763268539],[113,251,65,-0.041529730183582456],[113,251,66,-0.032051737450090274],[113,251,67,-0.030139452485369086],[113,251,68,-0.03636247258374593],[113,251,69,-0.02695449699306001],[113,251,70,-0.020751175057854423],[113,251,71,-0.0241766572193172],[113,251,72,-0.02296458129414195],[113,251,73,-0.02275712362608729],[113,251,74,-0.012493986957723682],[113,251,75,0.0035893964555933143],[113,251,76,0.0035838869403729953],[113,251,77,-0.022103970910161773],[113,251,78,-0.04210255420660629],[113,251,79,-0.03624293298169303],[113,252,64,-0.03918100327025002],[113,252,65,-0.040514597440920834],[113,252,66,-0.031027776594947848],[113,252,67,-0.029303464492828023],[113,252,68,-0.035538974872207085],[113,252,69,-0.026350783290603357],[113,252,70,-0.02034589972163361],[113,252,71,-0.023726768450687007],[113,252,72,-0.022499004046634092],[113,252,73,-0.02228282043855716],[113,252,74,-0.012232334951950169],[113,252,75,0.0036210191701414713],[113,252,76,0.0037517873656626667],[113,252,77,-0.021500363200280783],[113,252,78,-0.041166999922595086],[113,252,79,-0.03540415921491035],[113,253,64,-0.03841511765562289],[113,253,65,-0.039524285155065085],[113,253,66,-0.030032172919706075],[113,253,67,-0.028490588748462286],[113,253,68,-0.03473502031224424],[113,253,69,-0.025762078378605547],[113,253,70,-0.01995023559017733],[113,253,71,-0.02328454011082529],[113,253,72,-0.022042924633167437],[113,253,73,-0.021821339651868523],[113,253,74,-0.011980700852678128],[113,253,75,0.0036455767552979576],[113,253,76,0.003905051499886814],[113,253,77,-0.02091981352282787],[113,253,78,-0.04025661584830096],[113,253,79,-0.034585651115981844],[113,254,64,-0.037665586279007714],[113,254,65,-0.038558662431500274],[113,254,66,-0.029064597539804494],[113,254,67,-0.027700612916010166],[113,254,68,-0.03395057862432542],[113,254,69,-0.025188313656436506],[113,254,70,-0.019564194006761706],[113,254,71,-0.022850171644994782],[113,254,72,-0.02159646489399603],[113,254,73,-0.021372594870047786],[113,254,74,-0.01173885733532881],[113,254,75,0.0036634474518022196],[113,254,76,0.004044298494163902],[113,254,77,-0.020361833815914047],[113,254,78,-0.03937123898548862],[113,254,79,-0.033787362977165815],[113,255,64,-0.03693246699715501],[113,255,65,-0.0376175768120459],[113,255,66,-0.028124699787797178],[113,255,67,-0.026933306919223004],[113,255,68,-0.03318560143452705],[113,255,69,-0.024629409657340784],[113,255,70,-0.019187778348670664],[113,255,71,-0.022423846903841832],[113,255,72,-0.021159731460277914],[113,255,73,-0.020936492322887752],[113,255,74,-0.011506579929763045],[113,255,75,0.0036750008108234517],[113,255,76,0.00417013935728285],[113,255,77,-0.01982593462012769],[113,255,78,-0.03851069083429454],[113,255,79,-0.033009231081605674],[113,256,64,-0.036215800496875755],[113,256,65,-0.03670085524613501],[113,256,66,-0.027212108575595775],[113,256,67,-0.026188424053732527],[113,256,68,-0.032440022976363676],[113,256,69,-0.024085276544159834],[113,256,70,-0.01882098434130763],[113,256,71,-0.022005734374019027],[113,256,72,-0.020732816151237805],[113,256,73,-0.020512931357930805],[113,256,74,-0.011283647408124039],[113,256,75,0.003680597210834533],[113,256,76,0.004283175873957675],[113,256,77,-0.019311626300534852],[113,256,78,-0.037674778357196584],[113,256,79,-0.03225117437337595],[113,257,64,-0.035515610800237754],[113,257,65,-0.03580830509702072],[113,257,66,-0.026326433776951604],[113,257,67,-0.025465702119705124],[113,257,68,-0.031713760835135225],[113,257,69,-0.023555814631825094],[113,257,70,-0.018463800394665022],[113,257,71,-0.02159598745591157],[113,257,72,-0.020315796409263266],[113,257,73,-0.020101804941225373],[113,257,74,-0.011069842151572041],[113,257,75,0.003680587421707198],[113,257,76,0.004383999590281449],[113,257,77,-0.01881842023562882],[113,257,78,-0.03686329497226063],[113,257,79,-0.03151309517265571],[113,258,64,-0.03483190580739054],[113,258,65,-0.03493971517685456],[113,258,66,-0.025467267622996146],[113,258,67,-0.024764864569489127],[113,258,68,-0.031006716729691366],[113,258,69,-0.023040914933148825],[113,258,70,-0.01811620795982892],[113,258,71,-0.021194744785255935],[113,258,72,-0.019908735769393827],[113,258,73,-0.019703000164394708],[113,258,74,-0.010864950495370824],[113,258,75,0.003675312215958364],[113,258,76,0.004473190868033471],[113,258,77,-0.018345829969782537],[113,258,78,-0.03607602157035686],[113,258,79,-0.030794879930897155],[113,259,64,-0.034164677872975335],[113,259,65,-0.03409485680473688],[113,259,66,-0.024634186103953182],[113,259,67,-0.024085621664687612],[113,259,68,-0.030318777326605834],[113,259,69,-0.02254045972452709],[113,259,70,-0.01777818190323517],[113,259,71,-0.020802130595371643],[113,259,72,-0.019511684359648146],[113,259,73,-0.019316398755636083],[113,259,74,-0.010668763051918525],[113,259,75,0.003665102026851077],[113,259,76,0.004551318009048708],[113,259,77,-0.017893372326158657],[113,259,78,-0.03531272755122286],[113,259,79,-0.03009640002092324],[113,260,64,-0.03351390441213013],[113,260,65,-0.033273484882041245],[113,260,66,-0.023826750370467987],[113,260,67,-0.0234276716373524],[113,260,68,-0.029649815081889314],[113,260,69,-0.022054323128291028],[113,260,70,-0.017449690896462117],[113,260,71,-0.020418255116702547],[113,260,72,-0.019124679428661303],[113,260,73,-0.018941877592375388],[113,260,74,-0.010481075011464617],[113,260,75,0.0036502766528177318],[113,260,76,0.004618936450411489],[113,260,77,-0.017460568477448427],[113,260,78,-0.034573171873477714],[113,260,79,-0.029417512556996348],[113,261,64,-0.03287954853217396],[113,261,65,-0.03247533897954518],[113,261,66,-0.023044508128371017],[113,261,67,-0.022790701850293818],[113,261,68,-0.028999689105542455],[113,261,69,-0.021582371708590908],[113,261,70,-0.01713069781943533],[113,261,71,-0.020043215010366995],[113,261,72,-0.018747745897156592],[113,261,73,-0.01857930921342195],[113,261,74,-0.010301686420400453],[113,261,75,0.0036311450074438018],[113,261,76,0.004676588030789172],[113,261,77,-0.01704694497223285],[113,261,78,-0.03385710411393783],[113,261,79,-0.02875806124004],[113,262,64,-0.032261559686118296],[113,262,65,-0.03170014443110925],[113,262,66,-0.02228699502103043],[113,262,67,-0.022174389951765707],[113,262,68,-0.0283682460443973],[113,262,69,-0.02112446507781731],[113,262,70,-0.016821160174984064],[113,262,71,-0.01967709383241068],[113,262,72,-0.01838089692981644],[113,262,73,-0.018228562328561217],[113,262,74,-0.010130402437117986],[113,262,75,0.0036080049140713535],[113,262,76,0.00472480032783849],[113,262,77,-0.01665203471513125],[113,262,78,-0.03316426553181128],[113,262,79,-0.028117877223319352],[113,263,64,-0.03165987434423981],[113,263,65,-0.03094761342888769],[113,263,66,-0.02155373599382239],[113,263,67,-0.021578405020083524],[113,263,68,-0.027755320978879502],[113,263,69,-0.02068045651070996],[113,263,70,-0.01652103051277599],[113,263,71,-0.01931996252547788],[113,263,72,-0.018024134524185137],[113,263,73,-0.0178895023236324],[113,263,74,-0.009967033565544398],[113,263,75,0.0035811429439001467],[113,263,76,0.004764086066232229],[113,263,77,-0.0162753778992825],[113,263,78,-0.03249439013359558],[113,263,79,-0.027496779994042497],[113,264,64,-0.031074416680066146],[113,264,65,-0.030217446115318448],[113,264,66,-0.02084424663564108],[113,264,67,-0.021002408694053388],[113,264,68,-0.027160738329536027],[113,264,69,-0.02025019356347582],[113,264,70,-0.016230256860764538],[113,264,71,-0.01897187993467391],[113,264,72,-0.017677450113332365],[113,264,73,-0.017561991759262527],[113,264,74,-0.009811395866572675],[113,264,75,0.003550834296291787],[113,264,76,0.0047949425954848975],[113,264,77,-0.015916522890078437],[113,264,78,-0.031847205734774536],[113,264,79,-0.026894578266529853],[113,265,64,-0.030505099267221246],[113,265,65,-0.02950933166738027],[113,265,66,-0.020158034492730154],[113,265,67,-0.02044605628537161],[113,265,68,-0.026584312769353798],[113,265,69,-0.019833518695374128],[113,265,70,-0.015948783162362628],[113,265,71,-0.018632893344430503],[113,265,72,-0.017340825179085535],[113,265,73,-0.017245890861522697],[113,265,74,-0.00966331114768346],[113,265,75,0.003517342719855193],[113,265,76,0.004817851436443899],[113,265,77,-0.015575027059394585],[113,265,78,-0.03122243501464901],[113,265,79,-0.02631107088276325],[113,266,64,-0.02995182378369359],[113,266,65,-0.028822949368869047],[113,266,66,-0.019494600350504997],[113,266,67,-0.019908997869469074],[113,266,68,-0.02602585013811638],[113,266,69,-0.01943026989039188],[113,266,70,-0.015676549717655877],[113,266,71,-0.018303039033251926],[113,266,72,-0.01701423187273895],[113,266,73,-0.016941058002877818],[113,266,74,-0.00952260713112668],[113,266,75,0.003480920472772613],[113,266,76,0.004833277895010875],[113,266,77,-0.015250457569885831],[113,266,78,-0.030619796560895664],[113,266,79,-0.025746047716318023],[113,267,64,-0.029414481720236457],[113,267,65,-0.028157969666724167],[113,267,66,-0.018853439479424798],[113,267,67,-0.019390879351588862],[113,267,68,-0.025485148355273157],[113,267,69,-0.019040281276810535],[113,267,70,-0.015413493627086623],[113,267,71,-0.017982342843317217],[113,267,72,-0.016697633640276304],[113,267,73,-0.016647350171921826],[113,267,74,-0.009389117601111564],[113,267,75,0.0034418083207073957],[113,267,76,0.004841670741373591],[113,267,77,-0.01494239210922735],[113,267,78,-0.030039005900719243],[113,267,79,-0.025199290575896257],[113,268,64,-0.028892955089723216],[113,268,65,-0.027514055207688858],[113,268,66,-0.01823404284133593],[113,268,67,-0.018891343505175667],[113,268,68,-0.02496199832800866],[113,268,69,-0.018663383742615496],[113,268,70,-0.015159549236127733],[113,268,71,-0.017670820761987446],[113,268,72,-0.01639098584924437],[113,268,73,-0.016364623430475032],[113,268,74,-0.009262682530489657],[113,268,75,0.00340023557056827],[113,268,76,0.004843461952801093],[113,268,77,-0.014650419574444972],[113,268,78,-0.02947977651570334],[113,268,79,-0.024670574104869288],[113,269,64,-0.02838711713442104],[113,269,65,-0.026890861851855127],[113,269,66,-0.017635898253078312],[113,269,67,-0.018410030979954146],[113,269,68,-0.024456184851427656],[113,269,69,-0.01829940554486965],[113,269,70,-0.01491464857957191],[113,269,71,-0.017368479512368057],[113,269,72,-0.01609423641453941],[113,269,73,-0.0160927333567168],[113,269,74,-0.009143148187452932],[113,269,75,0.0033564201383419453],[113,269,76,0.004839066517844492],[113,269,77,-0.01437414070673008],[113,269,78,-0.02894182083771639],[113,269,79,-0.02415966667345021],[113,270,64,-0.02789683302830278],[113,270,65,-0.026288039659921755],[113,270,66,-0.017058491504518256],[113,270,67,-0.01794658127737489],[113,270,68,-0.023967487498013754],[113,270,69,-0.017948172911350035],[113,270,70,-0.014678721824182743],[113,270,71,-0.017075317150200192],[113,270,72,-0.01580732642051133],[113,270,73,-0.015831535473134126],[113,270,74,-0.009030367222813794],[113,270,75,0.0033105686491462388],[113,270,76,0.004828882299589596],[113,270,77,-0.014113168677377537],[113,270,78,-0.028424851223485592],[113,270,79,-0.023666331260345345],[113,271,64,-0.027421960571640695],[113,271,65,-0.02570523385123788],[113,271,66,-0.016501307428507063],[113,271,67,-0.017500633691375823],[113,271,68,-0.02349568149373471],[113,271,69,-0.017609510632898836],[113,271,70,-0.014451697708540337],[113,271,71,-0.016791323664450863],[113,271,72,-0.015530190736901029],[113,271,73,-0.015580885658132199],[113,271,74,-0.008924198738426361],[113,271,75,0.0032628765676502537],[113,271,76,0.004813289955476927],[113,271,77,-0.013867129625668771],[113,271,78,-0.027928580905674114],[113,271,79,-0.023190326320932184],[113,272,64,-0.026962350875288244],[113,272,65,-0.02514208572997073],[113,272,66,-0.015963830920609035],[113,272,67,-0.0170718282126869],[113,272,68,-0.0230405385784035],[113,272,69,-0.01728324264511231],[113,272,70,-0.014233503979034272],[113,272,71,-0.01651648157910796],[113,272,72,-0.015262758626273168],[113,272,73,-0.015340640540246964],[113,272,74,-0.00882450833732825],[113,272,75,0.0032135283569859835],[113,272,76,0.004792652911070794],[113,272,77,-0.013635663149712091],[113,272,78,-0.027452724918534042],[113,272,79,-0.022731406639240486],[113,273,64,-0.02651784903218451],[113,273,65,-0.024598233576971815],[113,273,66,-0.015445547906760315],[113,273,67,-0.016659806395159075],[113,273,68,-0.022601827848128715],[113,273,69,-0.016969192598149004],[113,273,70,-0.014024067821049712],[113,273,71,-0.01625076655379853],[113,273,72,-0.015004954340722824],[113,273,73,-0.015110657873956766],[113,273,74,-0.008731168156157638],[113,273,75,0.0031626976643001205],[113,273,76,0.0047673173850845],[113,273,77,-0.013418422751386758],[113,273,78,-0.026997000996416175],[113,273,79,-0.02228932416121743],[113,274,64,-0.026088294773780208],[113,274,65,-0.024073313505168427],[113,274,66,-0.01494594625733123],[113,274,67,-0.016264212182855935],[113,274,68,-0.02217931657791116],[113,274,69,-0.016667184413600728],[113,274,70,-0.013823316284505666],[113,274,71,-0.015994147980991556],[113,274,72,-0.014756697705782444],[113,274,73,-0.014890796896171956],[113,274,74,-0.008644056880397415],[113,274,75,0.003110547531105987],[113,274,76,0.004737612462892551],[113,274,77,-0.013215076236678487],[113,274,78,-0.026561130443635197],[113,274,79,-0.02186382880698212],[113,275,64,-0.02567352310921077],[113,275,65,-0.02356696027652325],[113,275,66,-0.014464516646348255],[113,275,67,-0.015884692696869148],[113,275,68,-0.021772771022657584],[113,275,69,-0.016377042827521185],[113,275,70,-0.013631176702996493],[113,275,71,-0.01574658957766607],[113,275,72,-0.01451790468956655],[113,275,73,-0.014680918662520892],[113,275,74,-0.008563059742953166],[113,275,75,0.003057230626652178],[113,275,76,0.00470385021574577],[113,275,77,-0.013025306072773156],[113,275,78,-0.026144838974371108],[113,275,79,-0.021454669259972473],[113,276,64,-0.025273364945181575],[113,276,65,-0.02307880807882177],[113,276,66,-0.014000753354897156],[113,276,67,-0.015520898981035113],[113,276,68,-0.021381957195088338],[113,276,69,-0.016098593918850667],[113,276,70,-0.013447577105881183],[113,276,71,-0.015508049969455047],[113,276,72,-0.014288487955318133],[113,276,73,-0.01448088636259967],[113,276,74,-0.008488068506529188],[113,276,75,0.00300288950258503],[113,276,76,0.004666325862903953],[113,276,77,-0.012848809703345232],[113,276,78,-0.025747857521465106],[113,276,79,-0.02106159373108856],[113,277,64,-0.024887647684679423],[113,277,65,-0.022608491260762014],[113,277,66,-0.013554155017990495],[113,277,67,-0.015172486705942102],[113,277,68,-0.021006641619229067],[113,277,69,-0.015831665622633277],[113,277,70,-0.01327244662277276],[113,277,71,-0.015278483265418575],[113,277,72,-0.014068357395646764],[113,277,73,-0.014290565613399569],[113,277,74,-0.008418981430224914],[113,277,75,0.0029476568672442125],[113,277,76,0.0046253179739173325],[113,277,77,-0.01268529982352963],[113,277,78,-0.025369923013143295],[113,277,79,-0.02068435069614317],[113,278,64,-0.024516195802739428],[113,278,65,-0.0221556450240003],[113,278,66,-0.013124225314396306],[113,278,67,-0.014839116830787109],[113,278,68,-0.02064659205835851],[113,278,69,-0.015576088227548352],[113,278,70,-0.013105715879956754],[113,278,71,-0.015057839621716028],[113,278,72,-0.01385742064684966],[113,278,73,-0.014109824730142063],[113,278,74,-0.008355703220700606],[113,278,75,0.0028916558780314023],[113,278,76,0.004581088708354261],[113,278,77,-0.012534504616067933],[113,278,78,-0.025010779116836978],[113,278,79,-0.02032268960510621],[113,279,64,-0.024158831397621712],[113,279,65,-0.021719906070981017],[113,279,66,-0.012710473599133123],[113,279,67,-0.014520456222807834],[113,279,68,-0.020301578216467876],[113,279,69,-0.015331694857410507],[113,279,70,-0.012947317388354551],[113,279,71,-0.014846065792573353],[113,279,72,-0.013655583581810564],[113,279,73,-0.013938534973767618],[113,279,74,-0.008298144968186125],[113,279,75,0.0028350004503948983],[113,279,76,0.0045338840903546675],[113,279,77,-0.012396167950107177],[113,279,78,-0.024670176949398746],[113,279,79,-0.019976361561807],[113,280,64,-0.02381537471588173],[113,280,65,-0.02130091320755136],[113,280,66,-0.012312415478526795],[113,280,67,-0.014216178234168203],[113,280,68,-0.01997137241246978],[113,280,69,-0.015098321936427286],[113,280,70,-0.012797185922739823],[113,280,71,-0.014643105667075012],[113,280,72,-0.013462750780077085],[113,280,73,-0.013776570774341653],[113,280,74,-0.008246224067536825],[113,280,75,0.0027777955820751867],[113,280,76,0.00448393431548303],[113,280,77,-0.012270049544102735],[113,280,78,-0.02434787575313709],[113,280,79,-0.019645119972937882],[113,281,64,-0.023485644649915555],[113,281,65,-0.02089830789949448],[113,281,66,-0.011929573327875488],[113,281,67,-0.013925963236295174],[113,281,68,-0.019655750226547822],[113,281,69,-0.014875809638113344],[113,281,70,-0.012655258891982506],[113,281,71,-0.014448900790416318],[113,281,72,-0.01327882597379298],[113,281,73,-0.013623809929623705],[113,281,74,-0.008199864124435107],[113,281,75,0.002720137691398004],[113,281,76,0.004431454087499682],[113,281,77,-0.012155925094199467],[113,281,78,-0.02404364353717549],[113,281,79,-0.019328721165348152],[113,282,64,-0.023169459206662434],[113,282,65,-0.020511734782240148],[113,282,66,-0.011561476751900026],[113,282,67,-0.013649499111762857],[113,282,68,-0.019354491118181383],[113,282,69,-0.014664002317865488],[113,282,70,-0.012521476700165034],[113,282,71,-0.0142633908683637],[113,282,72,-0.013103712468237789],[113,282,73,-0.013480133778032368],[113,282,74,-0.00815899484674013],[113,282,75,0.002662114968533266],[113,282,76,0.004376642982819111],[113,282,77,-0.012053586369377495],[113,282,78,-0.023757257683717368],[113,282,79,-0.01902692497076202],[113,283,64,-0.022866635946253606],[113,283,65,-0.02014084212313612],[113,283,66,-0.011207662988282787],[113,283,67,-0.013386481703923096],[113,283,68,-0.019067379015534135],[113,283,69,-0.014462748929322717],[113,283,70,-0.012395783098495919],[113,283,71,-0.014086514253787206],[113,283,72,-0.012937313535801194],[113,283,73,-0.013345427345218052],[113,283,74,-0.008123551920885133],[113,283,75,0.0026038077387813426],[113,283,76,0.004319685840593553],[113,283,77,-0.011962841274544287],[113,283,78,-0.023488505518865777],[113,283,79,-0.01873949527719775],[113,284,64,-0.022576992389466748],[113,284,65,-0.01978528223574278],[113,284,66,-0.010867677254670898],[113,284,67,-0.013136615224530442],[113,284,68,-0.018794202876002534],[113,284,69,-0.014271903424715958],[113,284,70,-0.01227812552799381],[113,284,71,-0.013918208414216085],[113,284,72,-0.012779532782262976],[113,284,73,-0.013219579463408421],[113,284,74,-0.008093476873097083],[113,284,75,0.002545288837112831],[113,284,76,0.0042607531765669554],[113,284,77,-0.011883513882603844],[113,284,78,-0.023237184847670532],[113,284,79,-0.01846620054647319],[113,285,64,-0.022300346392921732],[113,285,65,-0.019444711845689962],[113,285,66,-0.01054107303958183],[113,285,67,-0.012899612619653968],[113,285,68,-0.01853475721783216],[113,285,69,-0.014091325139501565],[113,285,70,-0.012168455452974007],[113,285,71,-0.013758410379460545],[113,285,72,-0.012630274484291132],[113,285,73,-0.013102482862639892],[113,285,74,-0.008068716915090346],[113,285,75,0.0024866239933531756],[113,285,76,0.0042000016190592475],[113,285,77,-0.011815444436376341],[113,285,78,-0.023003104453096355],[113,285,79,-0.018206814297290628],[113,286,64,-0.022036516491027155],[113,286,65,-0.019118792407701875],[113,286,66,-0.01022741233769936],[113,286,67,-0.012675195894202974],[113,286,68,-0.018288842622815715],[113,286,69,-0.01392087916166184],[113,286,70,-0.012066728685427734],[113,286,71,-0.013607057168433159],[113,286,72,-0.012489443897108737],[113,286,73,-0.012994034232936399],[113,286,74,-0.008049224773761389],[113,286,75,0.002427872227569351],[113,286,76,0.004137574365669945],[113,286,77,-0.011758489321060637],[113,286,78,-0.022786084558605604],[113,286,79,-0.017961115553491776],[113,287,64,-0.021785322203732672],[113,287,65,-0.018807190373425122],[113,287,66,-0.00992626583004767],[113,287,67,-0.012463096395382348],[113,287,68,-0.018056266210157407],[113,287,69,-0.013760436686117445],[113,287,70,-0.01197290570042074],[113,287,71,-0.013464086194366842],[113,287,72,-0.012356947531286362],[113,287,73,-0.012894134256412415],[113,287,74,-0.008034958504267251],[113,287,75,0.002369086255404372],[113,287,76,0.00407360165955094],[113,287,77,-0.01171252100772059],[113,287,78,-0.02258595725402241],[113,287,79,-0.017728889257145646],[113,288,64,-0.021546584309185275],[113,288,65,-0.018509577409716746],[113,288,66,-0.00963721300952565],[113,288,67,-0.012263055055378494],[113,288,68,-0.017836842081657298],[113,288,69,-0.013609875354762222],[113,288,70,-0.011886951942678633],[113,288,71,-0.013329435647692067],[113,288,72,-0.012232693397619336],[113,288,73,-0.012802687608192566],[113,288,74,-0.008025881285723535],[113,288,75,0.0023103129032931973],[113,288,76,0.004008201284369057],[113,288,77,-0.011677427968044257],[113,288,78,-0.02240256688429547],[113,288,79,-0.01750992664619188],[113,289,64,-0.021320125919336526],[113,289,65,-0.018225631034131377],[113,289,66,-0.00935984187089813],[113,289,67,-0.012074821168432814],[113,289,68,-0.017630389726952838],[113,289,69,-0.013469077610282631],[113,289,70,-0.011808836467477],[113,289,71,-0.013203043887117783],[113,289,72,-0.012116591323088552],[113,289,73,-0.01271960404276251],[113,289,74,-0.008021962881862375],[113,289,75,0.0022515916224751928],[113,289,76,0.003941477287182673],[113,289,77,-0.011653115865800458],[113,289,78,-0.02223577125801911],[113,289,79,-0.017304026400309452],[113,290,64,-0.02110577923701493],[113,290,65,-0.017955038301780437],[113,290,66,-0.0090937457017847],[113,290,67,-0.01189814097514103],[113,290,68,-0.017436718143422805],[113,290,69,-0.013337915047656206],[113,290,70,-0.01173851878556519],[113,290,71,-0.013084841872439384],[113,290,72,-0.012008553880278374],[113,290,73,-0.012644807249244727],[113,290,74,-0.008023192849993884],[113,290,75,0.0021929396760690264],[113,290,76,0.0038735062583996603],[113,290,77,-0.011639517758673522],[113,290,78,-0.02208544869599566],[113,290,79,-0.017111001231704],[113,291,64,-0.020903381687093416],[113,291,65,-0.01769749339908225],[113,291,66,-0.008838524190987462],[113,291,67,-0.01173276340255922],[113,291,68,-0.017255634329219997],[113,291,69,-0.013216256663661287],[113,291,70,-0.011675955725132678],[113,291,71,-0.012974757202679198],[113,291,72,-0.011908495858933102],[113,291,73,-0.012578229898260861],[113,291,74,-0.008029573021950613],[113,291,75,0.002134360891128161],[113,291,76,0.0038043457482195785],[113,291,77,-0.011636588058387139],[113,291,78,-0.021951494291536405],[113,291,79,-0.01693067430518433],[113,292,64,-0.020712771986725286],[113,292,65,-0.017452695345200307],[113,292,66,-0.00859378500391157],[113,292,67,-0.011578446709647732],[113,292,68,-0.01708695293064653],[113,292,69,-0.013103978271048405],[113,292,70,-0.011621109346302602],[113,292,71,-0.01287271883952898],[113,292,72,-0.011816333828868448],[113,292,73,-0.012519808250472846],[113,292,74,-0.008041109320964555],[113,292,75,0.0020758550997788156],[113,292,76,0.0037340432673060153],[113,292,77,-0.011644296148403751],[113,292,78,-0.02183381605068674],[113,292,79,-0.016762875613124735],[113,293,64,-0.02053379025430388],[113,293,65,-0.017220347971126065],[113,293,66,-0.008359143626206371],[113,293,67,-0.011434958476842656],[113,293,68,-0.016930496472232087],[113,293,69,-0.013000962699991883],[113,293,70,-0.011573947141996964],[113,293,71,-0.012778657330881056],[113,293,72,-0.011731986215214018],[113,293,73,-0.012469482031664831],[113,293,74,-0.008057811530680203],[113,293,75,0.0020174185196424736],[113,293,76,0.0036626367845580417],[113,293,77,-0.011662626218046616],[113,293,78,-0.02173233513703589],[113,293,79,-0.016607442223100247],[113,294,64,-0.020366278111419465],[113,294,65,-0.0170001598624671],[113,294,66,-0.008134223131134603],[113,294,67,-0.01130207548447976],[113,294,68,-0.016786095462066605],[113,294,69,-0.012907099892868494],[113,294,70,-0.011534442149184304],[113,294,71,-0.01269250495852838],[113,294,72,-0.011655373336583147],[113,294,73,-0.01242719431807054],[113,294,74,-0.008079693115726276],[113,294,75,0.0019590440614581776],[113,294,76,0.0035901551648654085],[113,294,77,-0.01169157711995935],[113,294,78,-0.02164698610987953],[113,294,79,-0.01646421852027487],[113,295,64,-0.02021007873943217],[113,295,65,-0.016791844244070524],[113,295,66,-0.007918653886515211],[113,295,67,-0.01117958354160314],[113,295,68,-0.0166535884602701],[113,295,69,-0.012822286979013933],[113,295,70,-0.011502573042821188],[113,295,71,-0.012614195851384982],[113,295,72,-0.011586417399887286],[113,295,73,-0.012392891380815096],[113,295,74,-0.008106771018044592],[113,295,75,0.0019007216492475186],[113,295,76,0.003516618626994226],[113,295,77,-0.011731162191431737],[113,295,78,-0.02157771711648562],[113,295,79,-0.01633305640855931],[113,296,64,-0.020065036889738937],[113,296,65,-0.016595118805647992],[113,296,66,-0.007712073200655219],[113,296,67,-0.011067277264229495],[113,296,68,-0.016532822110277574],[113,296,69,-0.012746428329691143],[113,296,70,-0.011478324212299032],[113,296,71,-0.012543666063309934],[113,296,72,-0.011525042450247871],[113,296,73,-0.012366522487547502],[113,296,74,-0.008139065427298208],[113,296,75,0.001842438554130292],[113,296,76,0.003442039222906609],[113,296,77,-0.011781409037655947],[113,296,78,-0.02152449003722904],[113,296,79,-0.016213815470440134],[113,297,64,-0.01993099884677705],[113,297,65,-0.016409705467449423],[113,297,66,-0.007514124906481178],[113,297,67,-0.010964959801935409],[113,297,68,-0.016423651132532805],[113,297,69,-0.012679435593476278],[113,297,70,-0.011461685820174313],[113,297,71,-0.012480853614570497],[113,297,72,-0.011471174274341599],[113,297,73,-0.012348039659189403],[113,297,74,-0.00817659952353733],[113,297,75,0.0017841797430778465],[113,297,76,0.0033664213401585525],[113,297,77,-0.011842359274615135],[113,297,78,-0.021487280582159513],[113,297,79,-0.016106363085325915],[113,298,64,-0.019807812400502722],[113,298,65,-0.016235330142148546],[113,298,66,-0.007324458939629979],[113,298,67,-0.010872442567714077],[113,298,68,-0.0163259383359319],[113,298,69,-0.012621227767636254],[113,298,70,-0.011452653897895917],[113,298,71,-0.012425698550489542],[113,298,72,-0.011424740309563603],[113,298,73,-0.012337397433373405],[113,298,74,-0.008219399243611427],[113,298,75,0.0017259281909434926],[113,298,76,0.003289762176552895],[113,298,77,-0.01191406828144844],[113,298,78,-0.021466078389595366],[113,298,79,-0.016010574558188446],[113,299,64,-0.019695337809903676],[113,299,65,-0.01607173337427118],[113,299,66,-0.007142741694434332],[113,299,67,-0.010789555660168822],[113,299,68,-0.016239565245559154],[113,299,69,-0.012571741816467773],[113,299,70,-0.011451240904079115],[113,299,71,-0.012378153360522821],[113,299,72,-0.011385679823482741],[113,299,73,-0.012334562824354705],[113,299,74,-0.008267503190978099],[113,299,75,0.0016676551021656554],[113,299,76,0.00321204219667299],[113,299,77,-0.011996614893476618],[113,299,78,-0.021460897004774087],[113,299,79,-0.015926343088002098],[113,300,64,-0.0195934632371154],[113,300,65,-0.01591868536422133],[113,300,66,-0.006968670692368027],[113,300,67,-0.010716162539556595],[113,300,68,-0.016164446936111576],[113,300,69,-0.012530947452916861],[113,300,70,-0.011457490386480909],[113,300,71,-0.012338197422405278],[113,300,72,-0.011353958050498261],[113,300,73,-0.012339529187769286],[113,300,74,-0.008320976418184996],[113,300,75,0.0016093062933076074],[113,300,76,0.003133211804798121],[113,300,77,-0.012090114816485633],[113,300,78,-0.021471787534580594],[113,300,79,-0.015853593386001244],[113,301,64,-0.019502086711303306],[113,301,65,-0.01577596780747879],[113,301,66,-0.006801956354671373],[113,301,67,-0.010652142099410369],[113,301,68,-0.01610051455278509],[113,301,69,-0.012498829892946484],[113,301,70,-0.011471459871042047],[113,301,71,-0.012305819895353589],[113,301,72,-0.011329548996930741],[113,301,73,-0.01235229897563655],[113,301,74,-0.00837989332853951],[113,301,75,0.0015508192429053108],[113,301,76,0.0030532085095663223],[113,301,77,-0.012194703703581623],[113,301,78,-0.02149882212374695],[113,301,79,-0.015792265278593533],[113,302,64,-0.019421113258484918],[113,302,65,-0.015643370780887917],[113,302,66,-0.006642318717024016],[113,302,67,-0.010597385588470362],[113,302,68,-0.016047712604711353],[113,302,69,-0.012475387310314157],[113,302,70,-0.011493218360132581],[113,302,71,-0.012281017112486354],[113,302,72,-0.011312432647187228],[113,302,73,-0.012372880812494139],[113,302,74,-0.008444334842730909],[113,302,75,0.001492125931752051],[113,302,76,0.0029719599573644175],[113,302,77,-0.012310534281255997],[113,302,78,-0.02154209142273874],[113,302,79,-0.01574231126701657],[113,303,64,-0.019350454947500883],[113,303,65,-0.015520692506826889],[113,303,66,-0.006489486996204012],[113,303,67,-0.010551796370198282],[113,303,68,-0.01600599909522778],[113,303,69,-0.012460631130240506],[113,303,70,-0.011522846648550278],[113,303,71,-0.012263792747752321],[113,303,72,-0.011302594909804498],[113,303,73,-0.012401289292418483],[113,303,74,-0.00851438828866659],[113,303,75,0.0014331529604521187],[113,303,76,0.002889384271850975],[113,303,77,-0.012437776133370666],[113,303,78,-0.02160170470088696],[113,303,79,-0.015703696738577584],[113,304,64,-0.01929003093173431],[113,304,65,-0.015407739097876048],[113,304,66,-0.006343199133959315],[113,304,67,-0.010515289667235615],[113,304,68,-0.01597534565972206],[113,304,69,-0.012454586354895839],[113,304,70,-0.011560437669992594],[113,304,71,-0.012254157988500535],[113,304,72,-0.011300027551828956],[113,304,73,-0.012437544762539488],[113,304,74,-0.008590147297334542],[113,304,75,0.0013738216453266726],[113,304,76,0.0028053903875430637],[113,304,77,-0.012576615467908404],[113,304,78,-0.021677789944223064],[113,304,79,-0.015676400183020658],[113,305,64,-0.019239767486756293],[113,305,65,-0.015304324281439916],[113,305,66,-0.006203201316985208],[113,305,67,-0.010487792289394955],[113,305,68,-0.015955737711396814],[113,305,69,-0.012457291922310878],[113,305,70,-0.01160609687515809],[113,305,71,-0.01225213171377897],[113,305,72,-0.011304728120297957],[113,305,73,-0.012481673091302551],[113,305,74,-0.00867171170345885],[113,305,75,0.0013140480936132232],[113,305,76,0.0027198783802532406],[113,305,77,-0.0127272548626223],[113,305,78,-0.02177049393614244],[113,305,79,-0.015660413414710313],[113,306,64,-0.019199598044070506],[113,306,65,-0.015210269103678835],[113,306,66,-0.0060692474717100086],[113,306,67,-0.010469242343600622],[113,306,68,-0.015947174595252942],[113,306,69,-0.01246880110037752],[113,306,70,-0.011659942642700049],[113,306,71,-0.012257740678453808],[113,306,72,-0.01131669984952061],[113,306,73,-0.012533705419679827],[113,306,74,-0.008759187449720476],[113,306,75,0.0012537432589204195],[113,306,76,0.0026327397973754563],[113,306,77,-0.012889912985437289],[113,306,78,-0.02187998231885844],[113,306,79,-0.015655741801327266],[113,307,64,-0.019169463221128048],[113,307,65,-0.015125401612020691],[113,307,66,-0.0059410987324208615],[113,307,67,-0.0104595889240253],[113,307,68,-0.015949669750552606],[113,307,69,-0.01248918191767388],[113,307,70,-0.011722106724328874],[113,307,71,-0.012271019703251456],[113,307,72,-0.011335951552788054],[113,307,73,-0.012593677893487936],[113,307,74,-0.008852686493332847],[113,307,75,0.0011928129779073353],[113,307,76,0.0025438579912271464],[113,307,77,-0.01306482428517025],[113,307,78,-0.022006439633440802],[113,307,79,-0.015662404499772086],[113,308,64,-0.019149310847784696],[113,308,65,-0.015049556515436512],[113,308,66,-0.005818522881082701],[113,308,67,-0.010458791780505277],[113,308,68,-0.015963250881979044],[113,308,69,-0.012518517632915862],[113,308,70,-0.011792734725434977],[113,308,71,-0.012292011870830797],[113,308,72,-0.011362497497077066],[113,308,73,-0.012661631374930966],[113,308,74,-0.008952326713788455],[113,308,75,0.0011311579891581393],[113,308,76,0.0024531084588502216],[113,308,77,-0.013252238647864033],[113,308,78,-0.022150069336065014],[113,308,79,-0.015680434699972854],[113,309,64,-0.019139095989350454],[113,309,65,-0.014982574821560367],[113,309,66,-0.005701293757017152],[113,309,67,-0.010466820963134426],[113,309,68,-0.015987960139645683],[113,309,69,-0.012556907244881678],[113,309,70,-0.01187198662265669],[113,309,71,-0.012320768727976574],[113,309,72,-0.011396357259224919],[113,309,73,-0.012737611131436935],[113,309,74,-0.009058231820606766],[113,309,75,0.001068673935235976],[113,309,76,0.002360359191882035],[113,309,77,-0.013452421013743087],[113,309,78,-0.022311093787910886],[113,309,79,-0.015709879877265073],[113,310,64,-0.019138780966358886],[113,310,65,-0.014924303449634692],[113,310,66,-0.005589190634423426],[113,310,67,-0.010483656440758157],[113,310,68,-0.016023854308038248],[113,310,69,-0.012604466044698765],[113,310,70,-0.011960037319870416],[113,310,71,-0.012357350493984167],[113,310,72,-0.011437555561965209],[113,310,73,-0.012821666499810085],[113,310,74,-0.009170531259938816],[113,310,75,0.001005251348903245],[113,310,76,0.002265471040301757],[113,310,77,-0.013665650949519607],[113,310,78,-0.022489754215957277],[113,310,79,-0.015750802053981425],[113,311,64,-0.019148335371165746],[113,311,65,-0.014874594818171863],[113,311,66,-0.005481997565553863],[113,311,67,-0.010509287690922207],[113,311,68,-0.016071005003908536],[113,311,69,-0.012661326212425652],[113,311,70,-0.012057077244132299],[113,311,71,-0.012401826275285079],[113,311,72,-0.011486122088132883],[113,311,73,-0.01291385052368753],[113,311,74,-0.0092893601189161],[113,311,75,9.407756244947735E-4],[113,311,76,0.002168298094044196],[113,311,77,-0.013892222170513691],[113,311,78,-0.022686310641732606],[113,311,79,-0.0158032780708511],[113,312,64,-0.01916773608144096],[113,312,65,-0.01483330640611373],[113,312,66,-0.005379502687171404],[113,312,67,-0.010543713258644984],[113,312,68,-0.01612949888304286],[113,312,69,-0.01272763745987265],[113,312,70,-0.012163312983124945],[113,312,71,-0.012454274286312671],[113,312,72,-0.011542091271240888],[113,312,73,-0.013014219562239278],[113,312,74,-0.009414859026654551],[113,312,75,8.751269754380785E-4],[113,312,76,0.002068688086660233],[113,312,77,-0.014132442006778332],[113,312,78,-0.02290104177487283],[113,312,79,-0.01586739986874373],[113,313,64,-0.019196967270575373],[113,313,65,-0.014800300286169679],[113,313,66,-0.005281497487744471],[113,313,67,-0.010586940281208594],[113,313,68,-0.016199437855734983],[113,313,69,-0.012803567721615276],[113,313,70,-0.01227896796568359],[113,313,71,-0.012514782076556536],[113,313,72,-0.011605502060529937],[113,313,73,-0.013122832868012514],[113,313,74,-0.009547174050852782],[113,313,75,8.081803789200863E-4],[113,313,76,0.001966482825381359],[113,313,77,-0.014386630807161183],[113,313,78,-0.023134244868132665],[113,313,79,-0.01594327478122116],[113,314,64,-0.01923602041498313],[113,314,65,-0.014775442628926296],[113,314,66,-0.00518777603268125],[113,314,67,-0.010638983976002409],[113,314,68,-0.01628093931069556],[113,314,69,-0.012889303896152678],[113,314,70,-0.012404283186989192],[113,314,71,-0.012583446763698063],[113,314,72,-0.01167639765849772],[113,314,73,-0.013239752131795153],[113,314,74,-0.009686456588965654],[113,314,75,7.39805508695481E-4],[113,314,76,0.0018615186521031956],[113,314,77,-0.014655121274997693],[113,314,78,-0.0233862355302942],[113,314,79,-0.016031025838279277],[113,315,64,-0.01928489429821115],[113,315,65,-0.014758603176213877],[113,315,66,-0.005098134144741517],[113,315,67,-0.010699867088278024],[113,315,68,-0.016374136347004603],[113,315,69,-0.012985052639129815],[113,315,70,-0.012539517979996723],[113,315,71,-0.012660375272633575],[113,315,72,-0.011754825228795585],[113,315,73,-0.013365040992333647],[113,315,74,-0.00983286325295965],[113,315,75,6.698666570407716E-4],[113,315,76,0.001753626939960429],[113,315,77,-0.014938257728892157],[113,315,78,-0.023657347493199442],[113,315,79,-0.016130792081550674],[113,316,64,-0.01934359501170118],[113,316,65,-0.014749654682125081],[113,316,66,-0.005012368536621378],[113,316,67,-0.010769619295518012],[113,316,68,-0.016479178013587756],[113,316,69,-0.013091041210496026],[113,316,70,-0.012684950834637162],[113,316,71,-0.012745684580103223],[113,316,72,-0.011840835572273821],[113,316,73,-0.013498764508717512],[113,316,74,-0.009986555746692235],[113,316,75,5.982226468666932E-4],[113,316,76,0.0016426346303097382],[113,316,77,-0.015236395281828912],[113,316,78,-0.023947932328921905],[113,316,79,-0.016242728891118382],[113,317,64,-0.019412135951984537],[113,317,65,-0.014748472320000686],[113,317,66,-0.004930275892587811],[113,317,67,-0.010848276564979517],[113,317,68,-0.016596229555564845],[113,317,69,-0.01320751837741268],[113,317,70,-0.012840880266289337],[113,317,71,-0.012839501964547766],[113,317,72,-0.011934482768852466],[113,317,73,-0.013640988593230607],[113,317,74,-0.01014770073500272],[113,317,75,5.247267349950029E-4],[113,317,76,0.001528364815046252],[113,317,77,-0.01554989893167193],[113,317,78,-0.02425835911288677],[113,317,79,-0.016367008323957388],[113,318,64,-0.019490537813995776],[113,318,65,-0.014754933053609066],[113,318,66,-0.004851651895919581],[113,318,67,-0.010935880460827867],[113,318,68,-0.0167254726666601],[113,318,69,-0.013334755374620255],[113,318,70,-0.013007625734934768],[113,318,71,-0.012941965260688923],[113,318,72,-0.012035823782776872],[113,318,73,-0.013791779402452433],[113,318,74,-0.01031646970363277],[113,318,75,4.492265076229698E-4],[113,318,76,0.0014106373692932357],[113,318,77,-0.015879142555936317],[113,318,78,-0.024589014028535635],[113,318,79,-0.016503819463853344],[113,319,64,-0.019578825852024948],[113,319,65,-0.014768926212431182],[113,319,66,-0.004776303205849711],[113,319,67,-0.011032475938266171],[113,319,68,-0.01686709278198797],[113,319,69,-0.01347303662637253],[113,319,70,-0.013185522127983573],[113,319,71,-0.01305322419114057],[113,319,72,-0.012144926609328829],[113,319,73,-0.013951211940921273],[113,319,74,-0.01049304410887787],[113,319,75,3.7155357896090396E-4],[113,319,76,0.0012892510439019387],[113,319,77,-0.016224521091923173],[113,319,78,-0.024940301571676142],[113,319,79,-0.016653360702054733],[114,-64,64,-0.18386820207771648],[114,-64,65,-0.09334002285462395],[114,-64,66,-0.02769833866449881],[114,-64,67,0.02594205977584738],[114,-64,68,0.025335305543450728],[114,-64,69,0.009728633437422876],[114,-64,70,0.07213292313341853],[114,-64,71,0.023612444408262004],[114,-64,72,-0.10465604417823912],[114,-64,73,-0.2187678218362814],[114,-64,74,-0.2480609710241547],[114,-64,75,-0.23003865723650738],[114,-64,76,-0.20608682295513592],[114,-64,77,-0.19930794522425632],[114,-64,78,-0.1442867010777631],[114,-64,79,-0.0690854807871321],[114,-63,64,-0.17854535589242115],[114,-63,65,-0.09101096596018454],[114,-63,66,-0.027644714218983797],[114,-63,67,0.024580973740938518],[114,-63,68,0.023012118192416133],[114,-63,69,0.007525341274957977],[114,-63,70,0.06947719486384585],[114,-63,71,0.022802426637534953],[114,-63,72,-0.10266704491515259],[114,-63,73,-0.21366386377397725],[114,-63,74,-0.24232484328260095],[114,-63,75,-0.2249921366510422],[114,-63,76,-0.2018830274040718],[114,-63,77,-0.19568894347269558],[114,-63,78,-0.14224802046823662],[114,-63,79,-0.0691573707587513],[114,-62,64,-0.17337859262693162],[114,-62,65,-0.08875215084025334],[114,-62,66,-0.027585389296457975],[114,-62,67,0.023260335695853788],[114,-62,68,0.020754403816986844],[114,-62,69,0.005377922053319706],[114,-62,70,0.06686013745901723],[114,-62,71,0.021976706650791274],[114,-62,72,-0.10074521825033929],[114,-62,73,-0.20869784964181837],[114,-62,74,-0.23672332107921662],[114,-62,75,-0.22005644755360176],[114,-62,76,-0.19778620002224911],[114,-62,77,-0.19216061892566363],[114,-62,78,-0.1402504423584996],[114,-62,79,-0.06922210674605879],[114,-61,64,-0.16836416434100707],[114,-61,65,-0.0865618156063896],[114,-61,66,-0.02752049144146154],[114,-61,67,0.02197927293392504],[114,-61,68,0.018561562850752035],[114,-61,69,0.0032867410121543276],[114,-61,70,0.06428292992224499],[114,-61,71,0.021137442834970134],[114,-61,72,-0.09888772619113],[114,-61,73,-0.2038659598396402],[114,-61,74,-0.2312533589467496],[114,-61,75,-0.21522915254462083],[114,-61,76,-0.193793309761382],[114,-61,77,-0.18872029374209473],[114,-61,78,-0.13829259066308663],[114,-61,79,-0.0692790563771622],[114,-60,64,-0.16349838504693678],[114,-60,65,-0.08443826110847172],[114,-60,66,-0.027450202198264877],[114,-60,67,0.02073686130718222],[114,-60,68,0.016432912579553705],[114,-60,69,0.0012520470272023964],[114,-60,70,0.06174659370763764],[114,-60,71,0.020286649887814926],[114,-60,72,-0.09709182365586029],[114,-60,73,-0.19916440558812076],[114,-60,74,-0.22591189432404016],[114,-60,75,-0.2105077846451296],[114,-60,76,-0.1899013126849626],[114,-60,77,-0.18536526267145248],[114,-60,78,-0.1363730655621177],[114,-60,79,-0.06932758577814191],[114,-59,64,-0.1587775517142078],[114,-59,65,-0.08237976995776945],[114,-59,66,-0.02737468745384938],[114,-59,67,0.01953218412967574],[114,-59,68,0.014367746408977583],[114,-59,69,-7.25969366768116E-4],[114,-59,70,0.05925204727757885],[114,-59,71,0.019426247604397977],[114,-59,72,-0.09535481473113272],[114,-59,73,-0.19458939118337365],[114,-59,74,-0.2206958162865088],[114,-59,75,-0.20588982756857557],[114,-59,76,-0.18610714499985773],[114,-59,77,-0.18209279370792986],[114,-59,78,-0.13449044349752376],[114,-59,79,-0.06936706147786488],[114,-58,64,-0.1541979498134922],[114,-58,65,-0.08038460907185777],[114,-58,66,-0.02729409695450806],[114,-58,67,0.01836433412364723],[114,-58,68,0.012365338453290159],[114,-58,69,-0.0026471704427941966],[114,-58,70,0.05680011177330814],[114,-58,71,0.018558064471660123],[114,-58,72,-0.09367405174471102],[114,-58,73,-0.1901371177894706],[114,-58,74,-0.215601970698342],[114,-58,75,-0.2013727197271793],[114,-58,76,-0.1824077253318164],[114,-58,77,-0.17890012953027604],[114,-58,78,-0.13264327680615912],[114,-58,79,-0.06939684764862596],[114,-57,64,-0.1497558585760572],[114,-57,65,-0.07845103207480819],[114,-57,66,-0.027208563880851966],[114,-57,67,0.01723241525367205],[114,-57,68,0.01042494799013572],[114,-57,69,-0.004511465824902123],[114,-57,70,0.054391516719266925],[114,-57,71,0.017683841373635475],[114,-57,72,-0.09204693422165375],[114,-57,73,-0.18580378698888855],[114,-57,74,-0.21062716520571376],[114,-57,75,-0.1969538581662299],[114,-57,76,-0.17879995685424094],[114,-57,77,-0.17578448880566744],[114,-57,78,-0.13083009334130977],[114,-57,79,-0.06941630335381221],[114,-56,64,-0.1454475559317333],[114,-56,65,-0.07657728151572381],[114,-56,66,-0.0271182044475551],[114,-56,67,0.016135544477434906],[114,-56,68,0.008545823795238544],[114,-56,69,-0.00631880710743762],[114,-56,70,0.052026905757663076],[114,-56,71,0.01680523540917036],[114,-56,72,-0.09047090771875554],[114,-56,73,-0.18158560408292584],[114,-56,74,-0.2057681740573268],[114,-56,75,-0.19263060241611507],[114,-56,76,-0.17528072927526728],[114,-56,77,-0.17274306736758205],[114,-56,78,-0.12904939609058685],[114,-56,79,-0.06942477982028036],[114,-55,64,-0.1412693231306427],[114,-55,65,-0.07476159090943214],[114,-55,66,-0.027023117527147467],[114,-55,67,0.015072853414942815],[114,-55,68,0.006727208346074149],[114,-55,69,-0.008069182574255918],[114,-55,70,0.04970684238759443],[114,-55,71,0.015923823802845672],[114,-55,72,-0.08894346255318798],[114,-55,73,-0.17747878115566626],[114,-55,74,-0.20102174275793772],[114,-55,75,-0.18840027826506098],[114,-55,76,-0.17184692069454954],[114,-55,77,-0.16977303927998275],[114,-55,78,-0.12729966279917465],[114,-55,79,-0.06942161775126883],[114,-54,64,-0.13721744905541727],[114,-54,65,-0.07300218660397341],[114,-54,66,-0.026923384297160513],[114,-54,67,0.014043489938299012],[114,-54,68,0.004968341884293189],[114,-54,69,-0.009762612040285088],[114,-54,70,0.04743181568446526],[114,-54,71,0.01504110789047713],[114,-54,72,-0.08746213244145175],[114,-54,73,-0.17347953991652285],[114,-54,74,-0.1963845925622796],[114,-54,75,-0.18426018145714027],[114,-54,76,-0.1684953993427415],[114,-54,77,-0.16687155780175042],[114,-54,78,-0.12557934560830797],[114,-54,79,-0.06940614469574197],[114,-53,64,-0.1332883546445102],[114,-53,65,-0.07129735517769947],[114,-53,66,-0.02681909311100703],[114,-53,67,0.013046632182587932],[114,-53,68,0.0032684695185475382],[114,-53,69,-0.011399153180575376],[114,-53,70,0.045202291804629126],[114,-53,71,0.014158531782785738],[114,-53,72,-0.08602458353913285],[114,-53,73,-0.1695842959351353],[114,-53,74,-0.19185363395135216],[114,-53,75,-0.1802077812437365],[114,-53,76,-0.16522321172732807],[114,-53,77,-0.16403594463900228],[114,-53,78,-0.12388701541660509],[114,-53,79,-0.06937775488828378],[114,-52,64,-0.12947938302454787],[114,-52,65,-0.06964587811880456],[114,-52,66,-0.02671051099907539],[114,-52,67,0.012081564798193679],[114,-52,68,0.0016268478598398248],[114,-52,69,-0.012978993131747175],[114,-52,70,0.04301900760693189],[114,-52,71,0.013277575897531873],[114,-52,72,-0.08462921561246078],[114,-52,73,-0.1657908571800823],[114,-52,74,-0.18742734618153728],[114,-52,75,-0.1762420409055736],[114,-52,76,-0.16202881837684807],[114,-52,77,-0.1612649424227038],[114,-52,78,-0.12222232873359369],[114,-52,79,-0.06933646992960454],[114,-51,64,-0.12578826623399453],[114,-51,65,-0.06804675100914034],[114,-51,66,-0.026597989468443363],[114,-51,67,0.011147607034170982],[114,-51,68,4.2688210145332364E-5],[114,-51,69,-0.01450245078902371],[114,-51,70,0.04088274184864678],[114,-51,71,0.012399679162987846],[114,-51,72,-0.08327478775727516],[114,-51,73,-0.16209764251326658],[114,-51,74,-0.183104872645724],[114,-51,75,-0.17236255796854535],[114,-51,76,-0.15891130498554926],[114,-51,77,-0.15855793051618455],[114,-51,78,-0.1205854387597747],[114,-51,79,-0.06928263311101028],[114,-50,64,-0.12221269622927987],[114,-50,65,-0.0664989517835585],[114,-50,66,-0.026481877662965517],[114,-50,67,0.010244065008602182],[114,-50,68,-0.0014848620195629832],[114,-50,69,-0.015969944770258867],[114,-50,70,0.038794146983692226],[114,-50,71,0.011526184166312393],[114,-50,72,-0.08196009961123361],[114,-50,73,-0.15850303727717757],[114,-50,74,-0.17888527735664153],[114,-50,75,-0.16856885385611628],[114,-50,76,-0.15586972283414707],[114,-50,77,-0.1559142613099932],[114,-50,78,-0.11897648729747805],[114,-50,79,-0.06921662528567629],[114,-49,64,-0.11875032817561426],[114,-49,65,-0.0650014423742687],[114,-49,66,-0.026362521583754055],[114,-49,67,0.009370232981471596],[114,-49,68,-0.0029567154242527973],[114,-49,69,-0.0173819883369753],[114,-49,70,0.03675375238821487],[114,-49,71,0.01065833842128937],[114,-49,72,-0.08068399017410116],[114,-49,73,-0.15500539462419968],[114,-49,74,-0.17476754634153438],[114,-49,75,-0.16486037431082548],[114,-49,76,-0.1529030889221467],[114,-49,77,-0.15333325969025507],[114,-49,78,-0.11739560257188764],[114,-49,79,-0.0691388612136862],[114,-48,64,-0.11539878592682629],[114,-48,65,-0.06355317153177795],[114,-48,66,-0.026240263813008955],[114,-48,67,0.00852539483261917],[114,-48,68,-0.004373840640882478],[114,-48,69,-0.018739184436849635],[114,-48,70,0.03476196865650599],[114,-48,71,0.009797296116152715],[114,-48,72,-0.07944533822071077],[114,-48,73,-0.15160304017062579],[114,-48,74,-0.17075059299370304],[114,-48,75,-0.1612364936512345],[114,-48,76,-0.15001038957169865],[114,-48,77,-0.15081422601930775],[114,-48,78,-0.1158428998171149],[114,-48,79,-0.0690497874489013],[114,-47,64,-0.1121556673413219],[114,-47,65,-0.06215307754657593],[114,-47,66,-0.02611544326278977],[114,-47,67,0.007708825488395329],[114,-47,68,-0.0057372584105008],[114,-47,69,-0.02004222070585681],[114,-47,70,0.03281909203324747],[114,-47,71,0.008944120030958758],[114,-47,72,-0.07824306257427437],[114,-47,73,-0.14829427645566312],[114,-47,74,-0.1668332633168958],[114,-47,75,-0.15769651898238737],[114,-47,76,-0.14719058389677525],[114,-47,77,-0.1483564389964697],[114,-47,78,-0.11431848184941783],[114,-47,79,-0.0689498802169276],[114,-46,64,-0.10901854942517361],[114,-46,65,-0.060800090867921604],[114,-46,66,-0.02598839494863263],[114,-46,67,0.006919792295267099],[114,-46,68,-0.007048037678939854],[114,-46,69,-0.02129186445118574],[114,-46,70,0.030925308958678604],[114,-46,71,0.008099783608086865],[114,-46,72,-0.07707612224893153],[114,-46,73,-0.14507738720326988],[114,-46,74,-0.16301434105256363],[114,-46,75,-0.1542396943494707],[114,-46,76,-0.14444260713442522],[114,-46,77,-0.1459591583971749],[114,-46,78,-0.11282243962833743],[114,-46,79,-0.06883964329471881],[114,-45,64,-0.10598499329417774],[114,-45,65,-0.059493136616483665],[114,-45,66,-0.025859449787758518],[114,-45,67,0.006157556338944269],[114,-45,68,-0.008307291747823204],[114,-45,69,-0.02248895763492427],[114,-45,70,0.02908070070420504],[114,-45,71,0.007265173159872719],[114,-45,72,-0.07594351647029282],[114,-45,73,-0.1419506413853178],[114,-45,74,-0.15929255268075312],[114,-45,75,-0.15086520482495078],[114,-45,76,-0.14176537383543486],[114,-45,77,-0.14362162768918835],[114,-45,78,-0.11135485280646598],[114,-45,79,-0.06871960590170224],[114,-44,64,-0.10305254894781088],[114,-44,65,-0.058231136988242053],[114,-44,66,-0.02572893442171906],[114,-44,67,0.005421373707661339],[114,-44,68,-0.00951617448710867],[114,-44,69,-0.023634411877714003],[114,-44,70,0.027285248076586287],[114,-44,71,0.006441090197422652],[114,-44,72,-0.07484428458300232],[114,-44,73,-0.13891229708546488],[114,-44,74,-0.15566657228638117],[114,-44,75,-0.14757218052026105],[114,-44,76,-0.13915778091244924],[114,-44,77,-0.14134307652523276],[114,-44,78,-0.1099157902686648],[114,-44,79,-0.06859032061179543],[114,-43,64,-0.10021875984900616],[114,-43,65,-0.057013013547610264],[114,-43,66,-0.025597171063347902],[114,-43,67,0.004710496698390323],[114,-43,68,-0.010675876619678948],[114,-43,69,-0.024729203500528374],[114,-43,70,0.0255388361697412],[114,-43,71,0.005628253865077449],[114,-43,72,-0.07377750585423208],[114,-43,73,-0.1359606051638367],[114,-43,74,-0.15213502628352388],[114,-43,75,-0.14435970051384278],[114,-43,76,-0.13661871054426386],[114,-43,77,-0.13912272311191692],[114,-43,78,-0.10850531066161073],[114,-43,79,-0.0684523612951394],[114,-42,64,-0.09748116730438318],[114,-42,65,-0.05583768940803643],[114,-42,66,-0.025464477367677017],[114,-42,67,0.004024174965120478],[114,-42,68,-0.011787622087649876],[114,-42,69,-0.02577436862155458],[114,-42,70,0.02384125914423316],[114,-42,71,0.004827303465460431],[114,-42,72,-0.07274229918188209],[114,-42,73,-0.13309381272313195],[114,-42,74,-0.14869649799101115],[114,-42,75,-0.14122679668786273],[114,-42,76,-0.1341470329353995],[114,-42,77,-0.13695977645515398],[114,-42,78,-0.1071234629144021],[114,-42,79,-0.068306321097613],[114,-41,64,-0.09483731464066533],[114,-41,65,-0.05470409129899622],[114,-41,66,-0.025331166326624452],[114,-41,67,0.0033616566083552618],[114,-41,68,-0.012852664509501007],[114,-41,69,-0.02677099832423577],[114,-41,70,0.02219222501530037],[114,-41,71,0.004038801060339366],[114,-41,72,-0.07173782271630176],[114,-41,73,-0.13031016637754703],[114,-41,74,-0.14534953205358753],[114,-41,75,-0.13817245746675821],[114,-41,76,-0.13174160893075984],[114,-41,77,-0.1348534384828429],[114,-41,78,-0.10577028675108066],[114,-41,79,-0.06815281046570533],[114,-40,64,-0.09228475117384727],[114,-40,65,-0.05361115151873603],[114,-40,66,-0.025197546187253814],[114,-40,67,0.0027221892051223066],[114,-40,68,-0.013872283736451035],[114,-40,69,-0.02772023391148005],[114,-40,70,0.020591360431253695],[114,-40,71,0.0032632341329996866],[114,-40,72,-0.07076327340419675],[114,-40,73,-0.1276079153264541],[114,-40,74,-0.1420926387036419],[114,-40,75,-0.13519563145139643],[114,-40,76,-0.12940129248566398],[114,-40,77,-0.13280290604597947],[114,-40,78,-0.104445813195928],[114,-40,79,-0.06799245522372545],[114,-39,64,-0.08982103596839626],[114,-39,65,-0.052557809772405366],[114,-39,66,-0.02506392039321032],[114,-39,67,0.0021050207791446823],[114,-39,68,-0.014847782515602082],[114,-39,69,-0.028623262259779063],[114,-39,70,0.019038215425218257],[114,-39,71,0.002501018298444979],[114,-39,72,-0.06981788646313482],[114,-39,73,-0.12498531423521071],[114,-39,74,-0.13892429785917162],[114,-39,75,-0.1322952309431769],[114,-39,76,-0.12712493299188643],[114,-39,77,-0.13080737279959703],[114,-39,78,-0.10315006507223497],[114,-39,79,-0.0678258947095682],[114,-38,64,-0.08744374138470423],[114,-38,65,-0.05154301489578933],[114,-38,66,-0.024930587549105546],[114,-38,67,0.001509400710782278],[114,-38,68,-0.015780483266869462],[114,-38,69,-0.029481311286083806],[114,-38,70,0.017532268124037013],[114,-38,71,0.0017525000481374287],[114,-38,72,-0.06890093479498041],[114,-38,73,-0.12244062592605882],[114,-38,74,-0.13584296305446666],[114,-38,75,-0.12947013535313706],[114,-38,76,-0.12491137746088894],[114,-38,77,-0.12886603096540045],[114,-38,78,-0.10188305749535964],[114,-38,79,-0.06765377997479893],[114,-37,64,-0.08515045641380223],[114,-37,65,-0.05056572646523649],[114,-37,66,-0.024797841407585272],[114,-37,67,9.345805865363132E-4],[114,-37,68,-0.016671724979980058],[114,-37,69,-0.03029564553917596],[114,-37,70,0.01607292939919728],[114,-37,71,0.0010179595165370162],[114,-37,72,-0.06801172834639872],[114,-37,73,-0.1199721238825414],[114,-37,74,-0.1328470652007045],[114,-37,75,-0.12671919449173952],[114,-37,76,-0.12275947256581926],[114,-37,77,-0.12697807297823693],[114,-37,78,-0.10064479836084332],[114,-37,79,-0.06747677205419236],[114,-36,64,-0.08293878979891467],[114,-36,65,-0.049624916294586804],[114,-36,66,-0.024665970878653513],[114,-36,67,3.798149881928383E-4],[114,-36,68,-0.01752286023699927],[114,-36,69,-0.03106756192606575],[114,-36,70,0.01465954744579805],[114,-36,71,2.976132574024255E-4],[114,-36,72,-0.06714961342420178],[114,-36,73,-0.11757809457111826],[114,-36,74,-0.12993501617417297],[114,-36,75,-0.12404123173546788],[114,-36,76,-0.12066806654406888],[114,-36,77,-0.12514269301867995],[114,-36,78,-0.0994352888281936],[114,-36,79,-0.06729554030916045],[114,-35,64,-0.08080637294432844],[114,-35,65,-0.04871956982044972],[114,-35,66,-0.024535260061019575],[114,-35,67,-1.556377783864323E-4],[114,-35,68,-0.01833525236537851],[114,-35,69,-0.031798385583093974],[114,-35,70,0.0132914122764251],[114,-35,71,-4.083829817555517E-4],[114,-35,72,-0.06631397197321531],[114,-35,73,-0.1152568395841858],[114,-35,74,-0.1271052122306177],[114,-35,75,-0.1214350470670828],[114,-35,76,-0.11863601096267531],[114,-35,77,-0.12335908843440097],[114,-35,78,-0.09825452380107524],[114,-35,79,-0.06711076084909508],[114,-34,64,-0.07875086261256514],[114,-34,65,-0.0478486873773375],[114,-34,66,-0.024405988295052167],[114,-34,67,-6.725150145139732E-4],[114,-34,68,-0.019110272725678643],[114,-34,69,-0.03248946590020298],[114,-34,70,0.01196776011797072],[114,-34,71,-0.0010999314979582163],[114,-34,72,-0.0655042208239641],[114,-34,73,-0.11300667760889725],[114,-34,74,-0.12435603724468161],[114,-34,75,-0.11889941998679916],[114,-34,76,-0.11666216234898744],[114,-34,77,-0.12162646105304381],[114,-34,78,-0.09710249240445591],[114,-34,79,-0.06692311503393998],[114,-33,64,-0.07676994341159893],[114,-33,65,-0.04701128536460985],[114,-33,66,-0.02427843023708597],[114,-33,67,-0.0011715490197085016],[114,-33,68,-0.01984929813766573],[114,-33,69,-0.03314217270600279],[114,-33,70,0.010687777700301994],[114,-33,71,-0.0017769898941749215],[114,-33,72,-0.06471981091730135],[114,-33,73,-0.11082594622656722],[114,-33,74,-0.12168586577406601],[114,-33,75,-0.11643311229227193],[114,-33,76,-0.1147453836893945],[114,-33,77,-0.11994401838961849],[114,-33,78,-0.09597917845934663],[114,-33,79,-0.06673328806091246],[114,-32,64,-0.07486133007426134],[114,-32,65,-0.046206397307264314],[114,-32,66,-0.02415285595462308],[114,-32,67,-0.001653466541943321],[114,-32,68,-0.020553708447661887],[114,-32,69,-0.033757892620079166],[114,-32,70,0.009450606426850696],[114,-32,71,-0.002439568373499168],[114,-32,72,-0.06396022651266492],[114,-32,73,-0.10871300354752694],[114,-32,74,-0.11909306594841436],[114,-32,75,-0.11403487072561362],[114,-32,76,-0.11288454579897005],[114,-32,77,-0.11831097475139679],[114,-32,78,-0.09488456095556737],[114,-32,79,-0.06654196763761422],[114,-31,64,-0.07302276953266879],[114,-31,65,-0.04543307481300643],[114,-31,66,-0.024029531042117285],[114,-31,67,-0.002118988286584128],[114,-31,68,-0.021224884239583488],[114,-31,69,-0.034338025578179464],[114,-31,70,0.008255346418046199],[114,-31,71,-0.0030877270752242463],[114,-31,72,-0.06322498438647588],[114,-31,73,-0.10666622968662869],[114,-31,74,-0.11657600218352594],[114,-31,75,-0.11170342948624751],[114,-31,76,-0.11107852856518496],[114,-31,77,-0.11672655224351622],[114,-31,78,-0.09381861452303382],[114,-31,79,-0.06634984274338523],[114,-30,64,-0.07125204279096707],[114,-30,65,-0.04469038842824164],[114,-30,66,-0.023908716757033037],[114,-30,67,-0.002568828483411736],[114,-30,68,-0.02186420469154686],[114,-30,69,-0.03488398153499904],[114,-30,70,0.007101060419466428],[114,-30,71,-0.003721573461329623],[114,-30,72,-0.06251363302685929],[114,-30,73,-0.10468402808472031],[114,-30,74,-0.11413303772191985],[114,-30,75,-0.10943751260880429],[114,-30,76,-0.10932622206897491],[114,-30,77,-0.1151899816785606],[114,-30,78,-0.09278130990201022],[114,-30,79,-0.0661576024802887],[114,-29,64,-0.0695469666000377],[114,-29,65,-0.04397742839569649],[114,-29,66,-0.023790670175716424],[114,-29,67,-0.0030036945108740504],[114,-29,68,-0.022473045579217605],[114,-29,69,-0.03539717734825767],[114,-29,70,0.005986777567647296],[114,-29,71,-0.004341259761170289],[114,-29,72,-0.06182575183046509],[114,-29,73,-0.10276482668145479],[114,-29,74,-0.11176253700109401],[114,-29,75,-0.1072358362055823],[114,-29,76,-0.10762652758645995],[114,-29,77,-0.11370050339331995],[114,-29,78,-0.09177261441259853],[114,-29,79,-0.06596593501453486],[114,-28,64,-0.06790539493831749],[114,-28,65,-0.04329330531668217],[114,-28,66,-0.023675644368778885],[114,-28,67,-0.003424286576805957],[114,-28,68,-0.023052777426735144],[114,-28,69,-0.03587903384706624],[114,-28,70,0.0049114970072552016],[114,-28,71,-0.004946980481668666],[114,-28,72,-0.06116095030694418],[114,-28,73,-0.10090707894496753],[114,-28,74,-0.10946286785126823],[114,-28,75,-0.10509711057354401],[114,-28,76,-0.10597835847479398],[114,-28,77,-0.1122573679760599],[114,-28,78,-0.09079249242380062],[114,-28,79,-0.06577552660885774],[114,-27,64,-0.06632522030326812],[114,-27,65,-0.04263715072115491],[114,-27,66,-0.02356388859566854],[114,-27,67,-0.003831297454748201],[114,-27,68,-0.023604763805521796],[114,-27,69,-0.03633097308675345],[114,-27,70,0.0038741913542180415],[114,-27,71,-0.005538969989710627],[114,-27,72,-0.060518867296328084],[114,-27,73,-0.0991092647640275],[114,-27,74,-0.10723240352475077],[114,-27,75,-0.103020042166175],[114,-27,76,-0.10438064094568233],[114,-27,77,-0.1108598369076161],[114,-27,78,-0.08984090582241759],[114,-27,79,-0.06558706074593096],[114,-26,64,-0.06480437481821123],[114,-26,65,-0.042008117548725174],[114,-26,66,-0.023455648517997668],[114,-26,67,-0.004225412274829392],[114,-26,68,-0.024130359780725887],[114,-26,69,-0.036754415791453575],[114,-26,70,0.0028738100003501818],[114,-26,71,-0.006117500172761833],[114,-26,72,-0.05989917020413935],[114,-26,73,-0.09736989120817358],[114,-26,74,-0.1050695245592419],[114,-26,75,-0.10100333543072545],[114,-26,76,-0.1028323147300127],[114,-26,77,-0.10950718311949194],[114,-26,78,-0.08891781448189856],[114,-26,79,-0.06540121734244751],[114,-25,64,-0.06334083115965065],[114,-25,65,-0.041405380544000094],[114,-25,66,-0.023351166431334124],[114,-25,67,-0.004607308368256024],[114,-25,68,-0.0246309105047567],[114,-25,69,-0.03715077898517122],[114,-25,70,0.0019092822556909116],[114,-25,71,-0.0066828781832559215],[114,-25,72,-0.059301554258846374],[114,-25,73,-0.0956874931614482],[114,-25,74,-0.102972620477749],[114,-25,75,-0.09904569451174117],[114,-25,76,-0.10133233363716487],[114,-25,77,-0.10819869147220453],[114,-25,78,-0.08802317673130987],[114,-25,79,-0.06521867205325235],[114,-24,64,-0.061932603310445256],[114,-24,65,-0.040828136569709406],[114,-24,66,-0.023250681515149068],[114,-24,67,-0.004977655164380118],[114,-24,68,-0.025107749956941615],[114,-24,69,-0.03752147381133928],[114,-24,70,9.7952032555026E-4],[114,-24,71,-0.00723544427176236],[114,-24,72,-0.05872574179598251],[114,-24,73,-0.09406063383530694],[114,-24,74,-0.10094009132801222],[114,-24,75,-0.09714582482203685],[114,-24,76,-0.09987966601251173],[114,-24,77,-0.10693365915701758],[114,-24,78,-0.08715694982450958],[114,-24,79,-0.06504009566456165],[114,-23,64,-0.06057774714426042],[114,-23,65,-0.04027560484101388],[114,-23,66,-0.023154430100533717],[114,-23,67,-0.005337114139196526],[114,-23,68,-0.025562199827900006],[114,-23,69,-0.03786790354018668],[114,-23,70,8.342212007057447E-5],[114,-23,71,-0.007775569713300239],[114,-23,72,-0.058171481572838274],[114,-23,73,-0.09248790516611799],[114,-23,74,-0.09897034906441834],[114,-23,75,-0.09530243448238943],[114,-23,76,-0.09847329509650284],[114,-23,77,-0.10571139602404797],[114,-23,78,-0.08631909040950474],[114,-23,79,-0.06486615357495967],[114,-22,64,-0.05927436084701127],[114,-22,65,-0.039747027084547304],[114,-22,66,-0.023062645955414372],[114,-22,67,-0.005686338814192417],[114,-22,68,-0.02599556854699163],[114,-22,69,-0.0381914617627497],[114,-22,70,-7.801261053099559E-4],[114,-22,71,-0.008303654830768255],[114,-22,72,-0.05763854811745682],[114,-22,73,-0.09096792810268631],[114,-22,74,-0.09706181877563967],[114,-22,75,-0.09351423563151992],[114,-22,76,-0.09711221928872903],[114,-22,77,-0.1045312248396971],[114,-22,78,-0.08550955499798472],[114,-22,79,-0.06469750536266669],[114,-21,64,-0.0580205851811276],[114,-21,65,-0.03924166762575369],[114,-21,66,-0.02297556058700312],[114,-21,67,-0.00602597480444411],[114,-21,68,-0.026409150450894977],[114,-21,69,-0.03849353076983179],[114,-21,70,-0.0016122472794661826],[114,-21,71,-0.00882012711896635],[114,-21,72,-0.057126741115379145],[114,-21,73,-0.08949935278913194],[114,-21,74,-0.0952129397613542],[114,-21,75,-0.09177994560809663],[114,-21,76,-0.09579545232028068],[114,-21,77,-0.10339248147623763],[114,-21,78,-0.0847283004349823],[114,-21,79,-0.06453480443733478],[114,-20,64,-0.056814603598423635],[114,-20,65,-0.03875881340797527],[114,-20,66,-0.022893403561148946],[114,-20,67,-0.0063566599147625085],[114,-20,68,-0.026804225091026996],[114,-20,69,-0.03877548011365409],[114,-20,70,-0.00241407121555615],[114,-20,71,-0.009325439472124287],[114,-20,72,-0.05663588483721382],[114,-20,73,-0.08808085864821878],[114,-20,74,-0.09342216646138767],[114,-20,75,-0.09009828800653662],[114,-20,76,-0.09452202333751321],[114,-20,77,-0.10229451503616994],[114,-20,78,-0.08397528436849261],[114,-20,79,-0.06437869777435164],[114,-19,64,-0.055654642207540794],[114,-19,65,-0.0382977739468348],[114,-19,66,-0.022816402838360474],[114,-19,67,-0.006679024282762796],[114,-19,68,-0.02718205667735751],[114,-19,69,-0.03903866534958894],[114,-19,70,-0.003186732481186135],[114,-19,71,-0.009820068517518994],[114,-19,72,-0.05616582760996227],[114,-19,73,-0.08671115437020276],[114,-19,74,-0.0916879692407939],[114,-19,75,-0.08846799360859818],[114,-19,76,-0.09329097690029779],[114,-19,77,-0.10123668791389151],[114,-19,78,-0.0832504657189086],[114,-19,79,-0.06422982572950886],[114,-18,64,-0.05453896960191336],[114,-18,65,-0.03785788122341781],[114,-18,66,-0.022744785126308783],[114,-18,67,-0.006993690567760837],[114,-18,68,-0.027543893655997447],[114,-18,69,-0.03928442695500766],[114,-18,70,-0.003931368438105289],[114,-18,71,-0.010304513057340944],[114,-18,72,-0.05571644133476737],[114,-18,73,-0.08538897781208388],[114,-18,74,-0.09000883503439706],[114,-18,75,-0.08688780119283233],[114,-18,76,-0.09210137289769103],[114,-18,77,-0.10021837579706996],[114,-18,78,-0.08255380514810651],[114,-18,79,-0.06408882193175697],[114,-17,64,-0.053465896554097135],[114,-17,65,-0.03743848951960435],[114,-17,66,-0.022678776248529025],[114,-17,67,-0.007301274184294764],[114,-17,68,-0.02789096841765552],[114,-17,69,-0.03951408942182759],[114,-17,70,-0.004649117450208296],[114,-17,71,-0.01077929262049831],[114,-17,72,-0.05528762105344692],[114,-17,73,-0.0841130958118972],[114,-17,74,-0.088383267854253],[114,-17,75,-0.08535645822394805],[114,-17,76,-0.09095228638372092],[114,-17,77,-0.0992389676098551],[114,-17,78,-0.08188526552788795],[114,-17,79,-0.06395631325154343],[114,-16,64,-0.05243377558235351],[114,-16,65,-0.037038975198937764],[114,-16,66,-0.022618601529166924],[114,-16,67,-0.007602383579189149],[114,-16,68,-0.028224497134019148],[114,-16,69,-0.03972896051915673],[114,-16,70,-0.005341117258304714],[114,-16,71,-0.01124494612578388],[114,-16,72,-0.054879284566047855],[114,-16,73,-0.08288230392257857],[114,-16,74,-0.08680978916355304],[114,-16,75,-0.08387272142427746],[114,-16,76,-0.0898428073359031],[114,-16,77,-0.0982978653999714],[114,-16,78,-0.0812448124075364],[114,-16,79,-0.06383291984220264],[114,-15,64,-0.05144100039529211],[114,-15,65,-0.03665873643633734],[114,-15,66,-0.022564486193650344],[114,-15,67,-0.007897620551114322],[114,-15,68,-0.028545679719016726],[114,-15,69,-0.03993033072219481],[114,-15,70,-0.006008503519742693],[114,-15,71,-0.011702030657489773],[114,-15,72,-0.054491372101446826],[114,-15,73,-0.08169542606973335],[114,-15,74,-0.08528693812044263],[114,-15,75,-0.08243535722954136],[114,-15,76,-0.08877204033893171],[114,-15,77,-0.09739448417155955],[114,-15,78,-0.08063241448022329],[114,-15,79,-0.06371925525179695],[114,-14,64,-0.05048600522016915],[114,-14,65,-0.03629719289976031],[114,-14,66,-0.022516655785077656],[114,-14,67,-0.008187580611505055],[114,-14,68,-0.02885569991172721],[114,-14,69,-0.04011947280325209],[114,-14,70,-0.006652408510558754],[114,-14,71,-0.012151120354180313],[114,-14,72,-0.0541238460427719],[114,-14,73,-0.08055131413735021],[114,-14,74,-0.08381327169508096],[114,-14,75,-0.08104314213103715],[114,-14,76,-0.08773910419570927],[114,-14,77,-0.09652825166535098],[114,-14,78,-0.08004804404787888],[114,-14,79,-0.0636159266026418],[114,-13,64,-0.049567265874450525],[114,-13,65,-0.035953784591023275],[114,-13,66,-0.02247533806647642],[114,-13,67,-0.008472840007163503],[114,-13,68,-0.029155690096254808],[114,-13,69,-0.04029761325323621],[114,-13,70,-0.0072739410532473925],[114,-13,71,-0.012592762272101555],[114,-13,72,-0.05377663172639813],[114,-13,73,-0.07944882976588243],[114,-13,74,-0.08238736287830481],[114,-13,75,-0.07969488392210937],[114,-13,76,-0.08674318917333237],[114,-13,77,-0.09569864401080334],[114,-13,78,-0.0794916563933673],[114,-13,79,-0.063523487019612],[114,-12,64,-0.04868332284713301],[114,-12,65,-0.035627970224932935],[114,-12,66,-0.022440768099770133],[114,-12,67,-0.008753863969699072],[114,-12,68,-0.029446493655407475],[114,-12,69,-0.04046574009876985],[114,-12,70,-0.007874056848023083],[114,-12,71,-0.013027190190465481],[114,-12,72,-0.05344922953737326],[114,-12,73,-0.07838673507316618],[114,-12,74,-0.08100779904971632],[114,-12,75,-0.07838956542144772],[114,-12,76,-0.0857839348938322],[114,-12,77,-0.09490542088306617],[114,-12,78,-0.07896305320749157],[114,-12,79,-0.06344212486930072],[114,-11,64,-0.04783280097296645],[114,-11,65,-0.03531924026340574],[114,-11,66,-0.022413169686205527],[114,-11,67,-0.009031056930682733],[114,-11,68,-0.029728811286608446],[114,-11,69,-0.040624715838200015],[114,-11,70,-0.008453632297061123],[114,-11,71,-0.01345451348527165],[114,-11,72,-0.05314097997347116],[114,-11,73,-0.07736379089340512],[114,-11,74,-0.07967321510092427],[114,-11,75,-0.07712626353758063],[114,-11,76,-0.08486116809689921],[114,-11,77,-0.09414846206370198],[114,-11,78,-0.07846198182267068],[114,-11,79,-0.06337188707095298],[114,-10,64,-0.04701440527377388],[114,-10,65,-0.03502712058453581],[114,-10,66,-0.02239274892392353],[114,-10,67,-0.009304810167794459],[114,-10,68,-0.030003327885507528],[114,-10,69,-0.04077537815444647],[114,-10,70,-0.009013530744859114],[114,-10,71,-0.013874871744427418],[114,-10,72,-0.05285127681260051],[114,-10,73,-0.07637882281363108],[114,-10,74,-0.07838230309897869],[114,-10,75,-0.07590407518916882],[114,-10,76,-0.08397469325928494],[114,-10,77,-0.09342763717799288],[114,-10,78,-0.07798821237335098],[114,-10,79,-0.06331285322136643],[114,-9,64,-0.04622691619407772],[114,-9,65,-0.03475117072865696],[114,-9,66,-0.0223796962680819],[114,-9,67,-0.009575503226400967],[114,-9,68,-0.030270713568660346],[114,-9,69,-0.040918540876466326],[114,-9,70,-0.00955460227571477],[114,-9,71,-0.014288432922669785],[114,-9,72,-0.052579564813461446],[114,-9,73,-0.07543071763795381],[114,-9,74,-0.07713380903034046],[114,-9,75,-0.07472211657135754],[114,-9,76,-0.08312429458486963],[114,-9,77,-0.0927428070707974],[114,-9,78,-0.07754153689514792],[114,-9,79,-0.0632651330415968],[114,-8,64,-0.04546918512344752],[114,-8,65,-0.03449098221474086],[114,-8,66,-0.02237418849483173],[114,-8,67,-0.00984350500191322],[114,-8,68,-0.030531623978343664],[114,-8,69,-0.04105499438221006],[114,-8,70,-0.010077683195088121],[114,-8,71,-0.014695390771226181],[114,-8,72,-0.05232533639038266],[114,-8,73,-0.07451841969856676],[114,-8,74,-0.07592652970042237],[114,-8,75,-0.07357952286368694],[114,-8,76,-0.08230973895410242],[114,-8,77,-0.09209382576017693],[114,-8,78,-0.07712176808921808],[114,-8,79,-0.06322886311616417],[114,-7,64,-0.04474013017742232],[114,-7,65,-0.034246176947064236],[114,-7,66,-0.022376390536630295],[114,-7,67,-0.010109174751798842],[114,-7,68,-0.030786700581570757],[114,-7,69,-0.041185506009632264],[114,-7,70,-0.010583595571358862],[114,-7,71,-0.01509596241293147],[114,-7,72,-0.052088128457159294],[114,-7,73,-0.07364092737789518],[114,-7,74,-0.07475930983171862],[114,-7,75,-0.0724754479586007],[114,-7,76,-0.08153077866658014],[114,-7,77,-0.09148054224376427],[114,-7,78,-0.0767287381779664],[114,-7,79,-0.06320420388859647],[114,-6,64,-0.04403873222594962],[114,-6,65,-0.03401640570888066],[114,-6,66,-0.02238645719519528],[114,-6,67,-0.010372863041429784],[114,-6,68,-0.031036570964930805],[114,-6,69,-0.04131082047624016],[114,-6,70,-0.011073146836584277],[114,-6,71,-0.015490386058741664],[114,-6,72,-0.051867519434578416],[114,-6,73,-0.07279728983225611],[114,-6,74,-0.07363103934957185],[114,-6,75,-0.07140906420784197],[114,-6,76,-0.0807871539861308],[114,-6,77,-0.09090280216478584],[114,-6,78,-0.07636229784640358],[114,-6,79,-0.06319133689884857],[114,-5,64,-0.043364031158470276],[114,-5,65,-0.03380134673986721],[114,-5,66,-0.022404534738301524],[114,-5,67,-0.010634912627824246],[114,-5,68,-0.03128184912667518],[114,-5,69,-0.041431660307469184],[114,-5,70,-0.01154712944469585],[114,-5,71,-0.015878918861405335],[114,-5,72,-0.05166312641616904],[114,-5,73,-0.0719866039075435],[114,-5,74,-0.07254065084498658],[114,-5,75,-0.0703795621842288],[114,-5,76,-0.08007859549755557],[114,-5,77,-0.09036044934441105],[114,-5,78,-0.07602231526360186],[114,-5,79,-0.0631904622484903],[114,-4,64,-0.0427151223749292],[114,-4,65,-0.03360070439407281],[114,-4,66,-0.02243076238640615],[114,-4,67,-0.010895659285112554],[114,-4,68,-0.03152313576718823],[114,-4,69,-0.0415487262739103],[114,-4,70,-0.012006320585353848],[114,-4,71,-0.016261834901849567],[114,-4,72,-0.05147460248654538],[114,-4,73,-0.07120801123757592],[114,-4,74,-0.07148711720422084],[114,-4,75,-0.06938615045645256],[114,-4,76,-0.07940482628388242],[114,-4,77,-0.08985332718677164],[114,-4,78,-0.07570867517876217],[114,-4,79,-0.06320179627984919],[114,-3,64,-0.042091153492306424],[114,-3,65,-0.03341420787522907],[114,-3,66,-0.02246527369503995],[114,-3,67,-0.011155432575509805],[114,-3,68,-0.031761018578889265],[114,-3,69,-0.04166269783734153],[114,-3,70,-0.012451481951633788],[114,-3,71,-0.016639423303790504],[114,-3,72,-0.05130163418669811],[114,-3,73,-0.07046069551601114],[114,-3,74,-0.07046944939534433],[114,-3,75,-0.06842805537480816],[114,-3,76,-0.07876556393281285],[114,-3,77,-0.08938127996281782],[114,-3,78,-0.07542127808663487],[114,-3,79,-0.0632255694557811],[114,-2,64,-0.0414913212565166],[114,-2,65,-0.0332416100463232],[114,-2,66,-0.02250819783873167],[114,-2,67,-0.011414556569411588],[114,-2,68,-0.03199607253642073],[114,-2,69,-0.04177423360535533],[114,-2,70,-0.012883359559605827],[114,-2,71,-0.017011986471989395],[114,-2,72,-0.05114393912053929],[114,-2,73,-0.06974387993295915],[114,-2,74,-0.06948669440235748],[114,-2,75,-0.06750452086596091],[114,-2,76,-0.07816052238077362],[114,-2,77,-0.08894415397890101],[114,-2,78,-0.07516003945718118],[114,-2,79,-0.06326202442715195],[114,-1,64,-0.040914868649733475],[114,-1,65,-0.03308268631032183],[114,-1,66,-0.02255966080199937],[114,-1,67,-0.011673350518013091],[114,-1,68,-0.03222886018775636],[114,-1,69,-0.04188397179418694],[114,-1,70,-0.013302683617725842],[114,-1,71,-0.017379838449454017],[114,-1,72,-0.05100126369692954],[114,-1,73,-0.06905682476761467],[114,-1,74,-0.06853793329782339],[114,-1,75,-0.06661480823499491],[114,-1,76,-0.07758941360266126],[114,-1,77,-0.08854179863566286],[114,-1,78,-0.07492488902447828],[114,-1,79,-0.06331141427550858],[114,0,64,-0.040361082183546546],[114,0,65,-0.03293723355906919],[114,0,66,-0.022619786482844625],[114,0,67,-0.011932129481776344],[114,0,68,-0.03245993194678777],[114,0,69,-0.04199253069931025],[114,0,70,-0.01371016844395698],[114,0,71,-0.017743303388908244],[114,0,72,-0.05087338100147615],[114,0,73,-0.06839882512854913],[114,0,74,-0.06762227944543722],[114,0,75,-0.06575819597323078],[114,0,76,-0.07705194915515294],[114,0,77,-0.08817406738261009],[114,0,78,-0.07471577013010951],[114,0,79,-0.06337400091894643],[114,1,64,-0.03982928936866343],[114,1,65,-0.03280506918743833],[114,1,66,-0.02268869771398402],[114,1,67,-0.012191204917895824],[114,1,68,-0.03268982638779789],[114,1,69,-0.04210050917326356],[114,1,70,-0.014106512428492344],[114,1,71,-0.018102714133843366],[114,1,72,-0.0507600887924338],[114,1,73,-0.06776920883359132],[114,1,74,-0.06673887682439332],[114,1,75,-0.06493397957049153],[114,1,76,-0.07654784158117144],[114,1,77,-0.08784081857349077],[114,1,78,-0.07453263911645092],[114,1,79,-0.06345005366964368],[114,2,64,-0.03931885635210218],[114,2,65,-0.03268603016982183],[114,2,66,-0.022766517206809063],[114,2,67,-0.012450885229708768],[114,2,68,-0.03291907054205507],[114,2,69,-0.04220848711003801],[114,2,70,-0.014492398039860174],[114,2,71,-0.018458410904406183],[114,2,72,-0.05066120761502275],[114,2,73,-0.06716733442144726],[114,2,74,-0.06588689846776388],[114,2,75,-0.06414147133060788],[114,2,76,-0.0760768056827548],[114,2,77,-0.08754191622729143],[114,2,78,-0.0743754647654081],[114,2,79,-0.06353984793198109],[114,3,64,-0.038829185713207176],[114,3,65,-0.03257997219618109],[114,3,66,-0.022853368422926276],[114,3,67,-0.01271147628089565],[114,3,68,-0.03314818019670514],[114,3,69,-0.04231702593535662],[114,3,70,-0.014868491872242026],[114,3,71,-0.018810740083472402],[114,3,72,-0.05057657902862141],[114,3,73,-0.06659258928758036],[114,3,74,-0.06506554500759415],[114,3,75,-0.06338000018918846],[114,3,76,-0.07563855966935144],[114,3,77,-0.08727723069947525],[114,3,78,-0.074244227778397],[114,3,79,-0.06364366403070833],[114,4,64,-0.03835971441013906],[114,4,65,-0.0324867688649456],[114,4,66,-0.022949376377924602],[114,4,67,-0.012973281877158047],[114,4,68,-0.03337766019603674],[114,4,69,-0.04242666910212188],[114,4,70,-0.015235444731834228],[114,4,71,-0.019160053098298102],[114,4,72,-0.05050606394138616],[114,4,73,-0.06604438793718127],[114,4,74,-0.06427404331983837],[114,4,75,-0.06264891153284512],[114,4,76,-0.07523282618827777],[114,4,77,-0.08704663926784546],[114,4,78,-0.07413892029355365],[114,4,79,-0.06376178615911793],[114,5,64,-0.037909911868745205],[114,5,65,-0.03240631093006752],[114,5,66,-0.02305466838176054],[114,5,67,-0.013236604217858553],[114,5,68,-0.03360800474505451],[114,5,69,-0.042537942590223726],[114,5,70,-0.015593891760042226],[114,5,71,-0.019506705393145782],[114,5,72,-0.050449541046899735],[114,5,73,-0.06552217034831237],[114,5,74,-0.06351164526261609],[114,5,75,-0.06194756701916154],[114,5,76,-0.0748593332437409],[114,5,77,-0.08685002663714038],[114,5,78,-0.07405954543631177],[114,5,79,-0.06389450143764813],[114,6,64,-0.037479278206116746],[114,6,65,-0.03233850559967374],[114,6,66,-0.02316937471999543],[114,6,67,-0.013501744320002741],[114,6,68,-0.03383969771526553],[114,6,69,-0.0426513554099307],[114,6,70,-0.015944452591385255],[114,6,71,-0.019851055488424543],[114,6,72,-0.05040690535764743],[114,6,73,-0.06502540043870145],[114,6,74,-0.06277762650174716],[114,6,75,-0.06127534439691068],[114,6,76,-0.0745178150106054],[114,6,77,-0.08668728536628902],[114,6,78,-0.07400611689972499],[114,6,79,-0.06404209907387881],[114,7,64,-0.03706734258145309],[114,7,65,-0.03228327588383644],[114,7,66,-0.02329362927992194],[114,7,67,-0.013769002416807388],[114,7,68,-0.034073212952528145],[114,7,69,-0.04276740010808344],[114,7,70,-0.016287731544027923],[114,7,71,-0.020193464121971223],[114,7,72,-0.05037806683025443],[114,7,73,-0.06455356462997326],[114,7,74,-0.06207128541791383],[114,7,75,-0.060631637326160816],[114,7,76,-0.07420801254881253],[114,7,77,-0.08655831622205538],[114,7,78,-0.07397865855112083],[114,7,79,-0.06420486961539933],[114,8,64,-0.03667366166712835],[114,8,65,-0.032240559989002666],[114,8,66,-0.0234275701253464],[114,8,67,-0.014038678332889855],[114,8,68,-0.034309014586692055],[114,8,69,-0.04288655327625351],[114,8,70,-0.01662431784085355],[114,8,71,-0.020534293468157813],[114,8,72,-0.050362949077530035],[114,8,73,-0.064106170503392],[114,8,74,-0.061391942090152626],[114,8,75,-0.06001585519800421],[114,8,76,-0.07392967442404413],[114,8,77,-0.08646302846254388],[114,8,78,-0.07397720406181775],[114,8,79,-0.06438310428747031],[114,9,64,-0.03629781823323801],[114,9,65,-0.03221031075676142],[114,9,66,-0.023571340023647663],[114,9,67,-0.014311071838031297],[114,9,68,-0.03454755734277015],[114,9,69,-0.0430092760601005],[114,9,70,-0.016954785859111657],[114,9,71,-0.02087390643068527],[114,9,72,-0.050361488162588605],[114,9,73,-0.06368274554156736],[114,9,74,-0.060738937350816355],[114,9,75,-0.05942742295382703],[114,9,76,-0.07368255724002051],[114,9,77,-0.08640134005390289],[114,9,78,-0.07400179655688986],[114,9,79,-0.06457709440794472],[114,10,64,-0.03593941983921996],[114,10,65,-0.032192495144711224],[114,10,66,-0.02372508692853588],[114,10,67,-0.014586482981338135],[114,10,68,-0.034789286853352926],[114,10,69,-0.043136014669186235],[114,10,70,-0.017279695406742266],[114,10,71,-0.02121266600505005],[114,10,72,-0.050373631470495825],[114,10,73,-0.06328283595090327],[114,10,74,-0.060111631907518503],[114,10,75,-0.05886578090415943],[114,10,76,-0.07346642608757396],[114,10,77,-0.08637317782339367],[114,10,78,-0.07405248828216683],[114,10,79,-0.06478713087241046],[114,11,64,-0.035598097626411355],[114,11,65,-0.03218709374720745],[114,11,66,-0.023888964421669844],[114,11,67,-0.014865212407427346],[114,11,68,-0.03503463997188365],[114,11,69,-0.043267200886479465],[114,11,70,-0.01759959202350627],[114,11,71,-0.021550934706764842],[114,11,72,-0.05039933665303545],[114,11,73,-0.06290600555984942],[114,11,74,-0.05950940552789721],[114,11,75,-0.058330384547223925],[114,11,76,-0.07328105491535308],[114,11,77,-0.08637847755177168],[114,11,78,-0.07412934028580326],[114,11,79,-0.06501350370293656],[114,12,64,-0.0352735052057677],[114,12,65,-0.03219410035391755],[114,12,66,-0.024063132116164815],[114,12,67,-0.015147561656206511],[114,12,68,-0.035284045086463316],[114,12,69,-0.043403252576885654],[114,12,70,-0.017915007305193135],[114,12,71,-0.021889074061613972],[114,12,72,-0.05043857064244135],[114,12,73,-0.06255183478839],[114,12,74,-0.05893165628343534],[114,12,75,-0.057820704387457206],[114,12,76,-0.0731262268268415],[114,12,77,-0.08641718400784186],[114,12,78,-0.07423242211200903],[114,12,79,-0.06525650165434058],[114,13,64,-0.03496531763527604],[114,13,65,-0.03221352154418172],[114,13,66,-0.024247756024818688],[114,13,67,-0.015433833447685612],[114,13,68,-0.03553792243383178],[114,13,69,-0.04354457419417664],[114,13,70,-0.018226459249264085],[114,13,71,-0.02222744415438],[114,13,72,-0.05049130873014831],[114,13,73,-0.06221991968452393],[114,13,74,-0.0583777998489179],[114,13,75,-0.05733622575439015],[114,13,76,-0.07300173430815433],[114,13,77,-0.086489250927904],[114,13,78,-0.07436181150472336],[114,13,79,-0.06551641187234679],[114,14,64,-0.03467323048184392],[114,14,65,-0.032245376315208636],[114,14,66,-0.024443008895650296],[114,14,67,-0.01572433195309503],[114,14,68,-0.035796684413124266],[114,14,69,-0.04369155728570467],[114,14,70,-0.018534452620341275],[114,14,71,-0.02256640323259676],[114,14,72,-0.05055753370678629],[114,14,73,-0.06190987102376675],[114,14,74,-0.057847268854396346],[114,14,75,-0.05687644862232897],[114,14,76,-0.07290737939083257],[114,14,77,-0.08659464094264167],[114,14,78,-0.07451759411917153],[114,14,79,-0.06579351959841562],[114,15,64,-0.034396958962800483],[114,15,65,-0.03228969574228582],[114,15,66,-0.024649070517234906],[114,15,67,-0.0160193630535483],[114,15,68,-0.036060735899076594],[114,15,69,-0.04384458099440904],[114,15,70,-0.018839479334116078],[114,15,71,-0.022906307362111803],[114,15,72,-0.05063723505991942],[114,15,73,-0.06162131346807097],[114,15,74,-0.05733951228689848],[114,15,75,-0.05644088743142951],[114,15,76,-0.07284297375372395],[114,15,77,-0.08673332545396818],[114,15,78,-0.07469986323950052],[114,15,79,-0.06608810791653054],[114,16,64,-0.03413623716238582],[114,16,65,-0.03234652266920494],[114,16,66,-0.02486612799608474],[114,16,67,-0.016319234587321194],[114,16,68,-0.036330474554307136],[114,16,69,-0.044004012557639256],[114,16,70,-0.019142018858307873],[114,16,71,-0.023247510131372107],[114,16,72,-0.050730408226217556],[114,16,73,-0.06135388478083021],[114,16,74,-0.05685399493939512],[114,16,75,-0.056029070910811885],[114,16,76,-0.07280833876781882],[114,16,77,-0.08690528446419649],[114,16,78,-0.0749087195008363],[114,16,79,-0.06640045753760485],[114,17,64,-0.03389081731892099],[114,17,65,-0.032415911427236516],[114,17,66,-0.025094376008214427],[114,17,67,-0.01662425658678476],[114,17,68,-0.03660629114038401],[114,17,69,-0.04417020780244421],[114,17,70,-0.019442538629464174],[114,17,71,-0.023590362401572487],[114,17,72,-0.05083705389501996],[114,17,73,-0.06110723509497394],[114,17,74,-0.056390196904858574],[114,17,75,-0.05564054190448262],[114,17,76,-0.07280330548779375],[114,17,77,-0.08711050635988157],[114,17,78,-0.07514427061435103],[114,17,79,-0.06673084661764254],[114,18,64,-0.033660469178576125],[114,18,65,-0.032497927581010715],[114,18,66,-0.025334017026808202],[114,18,67,-0.016934741505875643],[114,18,68,-0.03688856982734045],[114,18,69,-0.04434351163698058],[114,18,70,-0.019741494484435206],[114,18,71,-0.023935212099925163],[114,18,72,-0.05095717736042867],[114,18,73,-0.06088102623140999],[114,18,74,-0.05594761311349131],[114,18,75,-0.05527485720086954],[114,18,76,-0.0728277145938104],[114,18,77,-0.08734898765255965],[114,18,78,-0.07540663109406803],[114,18,79,-0.06707955060614475],[114,19,64,-0.033444979411938455],[114,19,65,-0.03259264769977157],[114,19,66,-0.025585261527790386],[114,19,67,-0.01725100443894361],[114,19,68,-0.037177688501392046],[114,19,69,-0.044524258537837876],[114,19,70,-0.020039331105533735],[114,19,71,-0.02428240405355391],[114,19,72,-0.051090787919358116],[114,19,73,-0.060674931065396044],[114,19,74,-0.05552575291149435],[114,19,75,-0.05493158736688572],[114,19,76,-0.07288141628703496],[114,19,77,-0.08762073267861593],[114,19,78,-0.07569592198436284],[114,19,79,-0.06744684212167691],[114,20,64,-0.033244151089850044],[114,20,65,-0.03270015915256687],[114,20,66,-0.025848328174970153],[114,20,67,-0.017573363331753553],[114,20,68,-0.037474019070641136],[114,20,69,-0.044712773033141764],[114,20,70,-0.02033648247848336],[114,20,71,-0.02463227986168569],[114,20,72,-0.05123789831319436],[114,20,73,-0.06048863293871117],[114,20,74,-0.055124139680012715],[114,20,75,-0.05461031658751259],[114,20,76,-0.0729642701422164],[114,20,77,-0.08792575326047831],[114,20,78,-0.07601227058732275],[114,20,79,-0.06783299085191423],[114,21,64,-0.03305780321517095],[114,21,65,-0.032820559925951225],[114,21,66,-0.026123443986229747],[114,21,67,-0.017902139185286325],[114,21,68,-0.03777792776854887],[114,21,69,-0.04490937018134477],[114,21,70,-0.020633372362341793],[114,21,71,-0.024985177803968805],[114,21,72,-0.05139852421092233],[114,21,73,-0.06032182511572856],[114,21,74,-0.05474231049309103],[114,21,75,-0.05431064251192286],[114,21,76,-0.07307614492051936],[114,21,77,-0.08826406833127681],[114,21,78,-0.07635581018926368],[114,21,79,-0.06823826347579562],[114,22,64,-0.03288577030739947],[114,22,65,-0.032953958462909175],[114,22,66,-0.026410844482154146],[114,22,67,-0.018237656252977127],[114,22,68,-0.03808977545505495],[114,22,69,-0.045114356045742605],[114,22,70,-0.020930414770735598],[114,22,71,-0.02534143278297261],[114,22,72,-0.05157268373185739],[114,22,73,-0.06017421028180072],[114,22,74,-0.05437981581373457],[114,22,75,-0.05403217610725957],[114,22,76,-0.0732169183457598],[114,22,77,-0.08863570352515543],[114,22,78,-0.07672667978594658],[114,22,79,-0.06866292360582699],[114,23,64,-0.03272790203729977],[114,23,65,-0.03310047352177062],[114,23,66,-0.026710773818364345],[114,23,67,-0.018580242231959084],[114,23,68,-0.038409917915264435],[114,23,69,-0.04532802816483343],[114,23,70,-0.021228014463852515],[114,23,71,-0.025701376299109527],[114,23,72,-0.051760397006355735],[114,23,73,-0.06004550008262593],[114,23,74,-0.05403621922739214],[114,23,75,-0.053774541521249726],[114,23,76,-0.07338647684710889],[114,23,77,-0.08904069073543168],[114,23,78,-0.07712502380621421],[114,23,79,-0.06910723174891036],[114,24,64,-0.032584062908854135],[114,24,65,-0.03326023405392103],[114,24,66,-0.027023484902659142],[114,24,67,-0.0189302284487856],[114,24,68,-0.038738706155636696],[114,24,69,-0.04555067601868452],[114,24,70,-0.021526567450706066],[114,24,71,-0.02606533645636783],[114,24,72,-0.051961685773077686],[114,24,73,-0.059935414703476894],[114,24,74,-0.05371109721233329],[114,24,75,-0.05353737595484418],[114,24,76,-0.07358471527123188],[114,24,77,-0.08947906764278632],[114,24,78,-0.07755099183392022],[114,24,79,-0.06957144528436851],[114,25,64,-0.032454131986099095],[114,25,65,-0.033433379099227806],[114,25,66,-0.027349239498014554],[114,25,67,-0.019287950040109192],[114,25,68,-0.039076486697714796],[114,25,69,-0.04578258149159814],[114,25,70,-0.021826461501334386],[114,25,71,-0.02643363799746709],[114,25,72,-0.05217657301165099],[114,25,73,-0.05984368248745336],[114,25,74,-0.053404038946618514],[114,25,75,-0.05332032954616196],[114,25,76,-0.07381153656681888],[114,25,77,-0.08995087721575602],[114,25,78,-0.07800473832825276],[114,25,79,-0.07005581845819933],[114,26,64,-0.03233800266258876],[114,26,65,-0.0336200576981584],[114,26,66,-0.0276883083123688],[114,26,67,-0.019653746128732583],[114,26,68,-0.03942360186947772],[114,26,69,-0.04602401933144422],[114,26,70,-0.022128076668693146],[114,26,71,-0.02680660236722675],[114,26,72,-0.05240508260981453],[114,26,73,-0.059770039592151665],[114,26,74,-0.05311464615153569],[114,26,75,-0.05312306526706133],[114,26,76,-0.07406685144441993],[114,26,77,-0.09045616718584057],[114,26,78,-0.07848642234272457],[114,26,79,-0.07056060239288402],[114,27,64,-0.032235582471370476],[114,27,65,-0.0338204288196081],[114,27,66,-0.028040971076008465],[114,27,67,-0.020027959995391174],[114,27,68,-0.039780390094434626],[114,27,69,-0.04627525760607921],[114,27,70,-0.022431785820067537],[114,27,71,-0.02718454780308298],[114,27,72,-0.05264723906431484],[114,27,73,-0.0597142296843304],[114,27,74,-0.052842532971497574],[114,27,75,-0.05294525883366372],[114,27,76,-0.0743505780144444],[114,27,77,-0.09099498949958099],[114,27,78,-0.07899620724326346],[114,27,79,-0.07108604511234123],[114,28,64,-0.032146792933561284],[114,28,65,-0.034034661303548916],[114,28,66,-0.028407516607310924],[114,28,67,-0.020410939246619665],[114,28,68,-0.04014718617866928],[114,28,69,-0.046536558157379726],[114,28,70,-0.022737955177955366],[114,28,71,-0.027567789451897442],[114,28,72,-0.05290306721509265],[114,28,73,-0.059676003672401536],[114,28,74,-0.05258732589057716],[114,28,75,-0.052786598632225394],[114,28,76,-0.07466264140619959],[114,28,77,-0.0915673997500696],[114,28,78,-0.07953426042604056],[114,28,79,-0.07163239158192443],[114,29,64,-0.032071569443771784],[114,29,65,-0.03426293381767774],[114,29,66,-0.028788242867522944],[114,29,67,-0.020803035979031187],[114,29,68,-0.04052432159610834],[114,29,69,-0.0468081770535008],[114,29,70,-0.023046944870465734],[114,29,71,-0.027956639512376973],[114,29,72,-0.05317259201251758],[114,29,73,-0.05965511947678381],[114,29,74,-0.05234866368599878],[114,29,75,-0.05264678566178884],[114,29,76,-0.07500297337085077],[114,29,77,-0.09217345659045109],[114,29,78,-0.08010075303586134],[114,29,79,-0.07219988376362851],[114,30,64,-0.03200986119072915],[114,30,65,-0.0345054348272687],[114,30,66,-0.029183457005152454],[114,30,67,-0.02120460694028347],[114,30,68,-0.040912124772316434],[114,30,69,-0.04709036504000144],[114,30,70,-0.023359109491320473],[114,30,71,-0.02835140740254668],[114,30,72,-0.0534558383176085],[114,30,73,-0.0596513418383044],[114,30,74,-0.052126197418973855],[114,30,75,-0.05252553349502493],[114,30,76,-0.07537151187115107],[114,30,77,-0.09281322113203312],[114,30,78,-0.08069585968608006],[114,30,79,-0.07278876068688499],[114,31,64,-0.03196163111162749],[114,31,65,-0.03476236257752522],[114,31,66,-0.029593475390513876],[114,31,67,-0.021616013687014893],[114,31,68,-0.041310921367213205],[114,31,69,-0.04738336799058687],[114,31,70,-0.02367479866966408],[114,31,71,-0.028752399951922268],[114,31,72,-0.05375283073542571],[114,31,73,-0.05966444216506131],[114,31,74,-0.05191959046342809],[114,31,75,-0.05242256825874608],[114,31,76,-0.07576820066084938],[114,31,77,-0.0934867563297719],[114,31,78,-0.08131975818120722],[114,31,79,-0.07339925853559527],[114,32,64,-0.031926855878853834],[114,32,65,-0.035033925087791365],[114,32,66,-0.03001862364091988],[114,32,67,-0.022037622740030172],[114,32,68,-0.041721034557176996],[114,32,69,-0.04768742735828104],[114,32,70,-0.023994357649953616],[114,32,71,-0.02915992161817674],[114,32,72,-0.05406359348202405],[114,32,73,-0.05969419841832548],[114,32,74,-0.051728518573247624],[114,32,75,-0.05233762863557554],[114,32,76,-0.07619298885671061],[114,32,77,-0.09419412635801941],[114,32,78,-0.08197262924355436],[114,32,79,-0.07403161075227846],[114,33,64,-0.031905525917818506],[114,33,65,-0.03532034015699719],[114,33,66,-0.03045923663692067],[114,33,67,-0.022469805736961876],[114,33,68,-0.042142785317019836],[114,33,69,-0.04800278062786455],[114,33,70,-0.02431812788223117],[114,33,71,-0.029574274728213244],[114,33,72,-0.054388150285518445],[114,33,73,-0.059740395038187774],[114,33,74,-0.05155266998872477],[114,33,75,-0.052270465888239616],[114,33,76,-0.0766458305060865],[114,33,77,-0.09493539597950824],[114,33,78,-0.08265465624538876],[114,33,79,-0.07468604816038019],[114,34,64,-0.0318976454547587],[114,34,65,-0.035621835379802846],[114,34,66,-0.030915658529983858],[114,34,67,-0.022912939582664587],[114,34,68,-0.042576492702414724],[114,34,69,-0.048329661770503796],[114,34,70,-0.02464644762317336],[114,34,71,-0.02999575974373218],[114,34,72,-0.05472652432204149],[114,34,73,-0.05980282290984501],[114,34,74,-0.05139174558298697],[114,34,75,-0.05222084390799069],[114,34,76,-0.07712668415305451],[114,34,77,-0.09571062991071953],[114,34,78,-0.0833660249482712],[114,34,79,-0.07536279910602026],[114,35,64,-0.0319032325934731],[114,35,65,-0.03593864817295977],[114,35,66,-0.03138824274197645],[114,35,67,-0.02336740659760043],[114,35,68,-0.04302247413341618],[114,35,69,-0.04866830170154368],[114,35,70,-0.024979652548357007],[114,35,71,-0.030424675551512435],[114,35,72,-0.05507873818754678],[114,35,73,-0.05988127937154538],[114,35,74,-0.051245459049237795],[114,35,75,-0.052188539288661115],[114,35,76,-0.07763551240619183],[114,35,77,-0.09651989218691896],[114,35,78,-0.0841069232514111],[114,35,79,-0.07606208962063789],[114,36,64,-0.03192231941999779],[114,36,65,-0.03627102581141553],[114,36,66,-0.031877351956734246],[114,36,67,-0.023833594664429004],[114,36,68,-0.043481045679728804],[114,36,69,-0.04901892874243996],[114,36,70,-0.0253180763761904],[114,36,71,-0.030861319778720503],[114,36,72,-0.055444813906555625],[114,36,73,-0.05997556826531424],[114,36,74,-0.05111353712965677],[114,36,75,-0.05217334142781691],[114,36,76,-0.07817228151107505],[114,36,77,-0.09736324553025087],[114,36,78,-0.08487754095098922],[114,36,79,-0.07678414360611914],[114,37,64,-0.03195495213433945],[114,37,65,-0.03661922547377775],[114,37,66,-0.03238335810402597],[114,37,67,-0.02431189737306523],[114,37,68,-0.04395252234847523],[114,37,69,-0.04938176908788291],[114,37,70,-0.02566205150402347],[114,37,71,-0.031305989133713436],[114,37,72,-0.05582477297913949],[114,37,73,-0.060085500031721965],[114,37,74,-0.05099571988685881],[114,37,75,-0.052175052656497495],[114,37,76,-0.07873696093069678],[114,37,77,-0.09824075072447291],[114,37,78,-0.0856780695125919],[114,37,79,-0.07752918304418754],[114,38,64,-0.03200119120844006],[114,38,65,-0.03698351429678686],[114,38,66,-0.032906642336186266],[114,38,67,-0.024802714164460213],[114,38,68,-0.04443721837525048],[114,38,69,-0.04975704727917705],[114,38,70,-0.026011909656968594],[114,38,71,-0.03175897977290528],[114,38,72,-0.05621863646757646],[114,38,73,-0.06021089185005073],[114,38,74,-0.050891761018826975],[114,38,75,-0.052193488399005],[114,38,76,-0.07932952293704185],[114,38,77,-0.09915246600004529],[114,38,78,-0.08650870185903303],[114,38,79,-0.07829742823195943],[114,39,64,-0.03206111156957197],[114,39,65,-0.037364169438459695],[114,39,66,-0.03344759499765012],[114,39,67,-0.025306450473339123],[114,39,68,-0.04493544751926884],[114,39,69,-0.05014498668493832],[114,39,70,-0.026367982549949775],[114,39,71,-0.03222058769433873],[114,39,72,-0.05662642512423475],[114,39,73,-0.06035156782527788],[114,39,74,-0.05080142821820884],[114,39,75,-0.052228477364158844],[114,39,76,-0.0799499422171167],[114,39,77,-0.10009844643342111],[114,39,78,-0.08736963217595477],[114,39,79,-0.07908909804566545],[114,40,64,-0.0321348028084383],[114,40,65,-0.03776147814964514],[114,40,66,-0.03400661558765265],[114,40,67,-0.025823517870180727],[114,40,68,-0.04544752336348816],[114,40,69,-0.05054580999020985],[114,40,70,-0.026730602563533212],[114,40,71,-0.03269110915872477],[114,40,72,-0.05704815956239465],[114,40,73,-0.060507359223391476],[114,40,74,-0.05072450357687936],[114,40,75,-0.05227986176942561],[114,40,76,-0.0805981954968185],[114,40,77,-0.1010787433645618],[114,40,78,-0.0882610557377649],[114,40,79,-0.07990441023467774],[114,41,64,-0.03222236941126117],[114,41,65,-0.038175737853732045],[114,41,66,-0.03458411271631575],[114,41,67,-0.0263543342026949],[114,41,68,-0.0459737596205972],[114,41,69,-0.0509597396950772],[114,41,70,-0.027100103434063983],[114,41,71,-0.03317084113876919],[114,41,72,-0.05748386047181409],[114,41,73,-0.06067810475659364],[114,41,74,-0.050660784036634605],[114,41,75,-0.052347497599281256],[114,41,76,-0.08127426118608179],[114,41,77,-0.1020934038368275],[114,41,78,-0.08918316875656448],[114,41,79,-0.08074358174804569],[114,42,64,-0.03232393101518471],[114,42,65,-0.038607256234314845],[114,42,66,-0.035180504054376574],[114,42,67,-0.026899323737100553],[114,42,68,-0.04651447044581338],[114,42,69,-0.05138699862387313],[114,42,70,-0.027476820958635826],[114,42,71,-0.033660081797690276],[114,42,72,-0.05793354888096018],[114,42,73,-0.060863650920003586],[114,42,74,-0.05061008188685271],[114,42,75,-0.052431254899128275],[114,42,76,-0.08197811904882368],[114,42,77,-0.10314247006355211],[114,42,78,-0.09013616825686166],[114,42,79,-0.08160682909584013],[114,43,64,-0.03243962268630064],[114,43,65,-0.03905635133061115],[114,43,66,-0.035796216276775046],[114,43,67,-0.02745891729947548],[114,43,68,-0.0470699707574231],[114,43,69,-0.05182781044601564],[114,43,70,-0.027861093715362537],[114,43,71,-0.03415913099785953],[114,43,72,-0.058397246467889706],[114,43,73,-0.06106385238147168],[114,43,74,-0.05057222530988142],[114,43,75,-0.05253101810601353],[114,43,76,-0.08270974990124688],[114,43,77,-0.10422597892572676],[114,43,78,-0.09112025197894014],[114,43,79,-0.08249436874763291],[114,44,64,-0.03256959521963153],[114,44,65,-0.039523351640477045],[114,44,66,-0.03643168500034878],[114,44,67,-0.02803355241748764],[114,44,68,-0.047640576566039504],[114,44,69,-0.05228240020951686],[114,44,70,-0.028253263799406375],[114,44,71,-0.03466829084056119],[114,44,72,-0.05887497592185183],[114,44,73,-0.06127857242615156],[114,44,74,-0.050547058974870766],[114,44,75,-0.05264668641735444],[114,44,76,-0.0834691353421422],[114,44,77,-0.10534396150536368],[114,44,78,-0.09213561831387475],[114,44,79,-0.08340641757050235],[114,45,64,-0.03271401546040263],[114,45,65,-0.04000859623089266],[114,45,66,-0.03708735471590174],[114,45,67,-0.028623673462835925],[114,45,68,-0.04822660531356986],[114,45,69,-0.052750994888164926],[114,45,70,-0.028653677575170258],[114,45,71,-0.03518786623790255],[114,45,72,-0.0593667613577476],[114,45,73,-0.06150768345746951],[114,45,74,-0.05053444468068833],[114,45,75,-0.05277817419881062],[114,45,76,-0.08425625751889253],[114,45,77,-0.10649644265924758],[114,45,78,-0.09318246627327971],[114,45,79,-0.08434319330898746],[114,46,64,-0.03287306664588378],[114,46,65,-0.04051243485576789],[114,46,66,-0.03776367871488005],[114,46,67,-0.029229731794695048],[114,46,68,-0.04882837622284698],[114,46,69,-0.05323382394329956],[114,46,70,-0.029062686444970464],[114,46,71,-0.035718165517888645],[114,46,72,-0.0598726287855795],[114,46,73,-0.061751067556082985],[114,46,74,-0.05053426204843745],[114,46,75,-0.052925411432336714],[114,46,76,-0.08507109893289509],[114,46,77,-0.1076834406378497],[114,46,78,-0.09426099549691103],[114,46,79,-0.08530491510938266],[114,47,64,-0.03304694203512357],[114,47,65,-0.04103522134821746],[114,47,66,-0.038461112277097274],[114,47,67,-0.029852179169253708],[114,47,68,-0.049446203921931435],[114,47,69,-0.05373111316204571],[114,47,70,-0.02948064089306641],[114,47,71,-0.03625949431961741],[114,47,72,-0.060392599889960416],[114,47,73,-0.062008610347923585],[114,47,74,-0.05054640250984381],[114,47,75,-0.053088337447182644],[114,47,76,-0.08591363552561374],[114,47,77,-0.10890495998703716],[114,47,78,-0.09537139952901016],[114,47,79,-0.08629179731306282],[114,48,64,-0.033235766757531135],[114,48,65,-0.041577235162941414],[114,48,66,-0.039180033936506535],[114,48,67,-0.030491389170278042],[114,48,68,-0.050080320033412416],[114,48,69,-0.05424300639381436],[114,48,70,-0.0299078123547036],[114,48,71,-0.036812077254393616],[114,48,72,-0.0609266135187271],[114,48,73,-0.06228012249860308],[114,48,74,-0.05057069082326033],[114,48,75,-0.05326682207859416],[114,48,76,-0.08678375710216636],[114,48,77,-0.11016091169663916],[114,48,78,-0.09651378622847248],[114,48,79,-0.08730397028256051],[114,49,64,-0.03343961560484053],[114,49,65,-0.04213869874424999],[114,49,66,-0.03992076245874427],[114,49,67,-0.031147674259838585],[114,49,68,-0.0507308903015418],[114,49,69,-0.054769582738625686],[114,49,70,-0.03034441045194712],[114,49,71,-0.03737607487234266],[114,49,72,-0.061474542426401456],[114,49,73,-0.06256535639240382],[114,49,74,-0.050606901695732065],[114,49,75,-0.05346068186304587],[114,49,76,-0.08768128274253364],[114,49,77,-0.11145112829382015],[114,49,78,-0.09768819306412942],[114,49,79,-0.08834149607433738],[114,50,64,-0.033658563907869844],[114,50,65,-0.04271982806558023],[114,50,66,-0.04068360707773595],[114,50,67,-0.03182133619479662],[114,50,68,-0.051398065198795376],[114,50,69,-0.05531090732107821],[114,50,70,-0.030790633918983436],[114,50,71,-0.03795163444460521],[114,50,72,-0.062036243966993906],[114,50,73,-0.06286405686959898],[114,50,74,-0.050654810560271726],[114,50,75,-0.05366973049310935],[114,50,76,-0.08860601059658157],[114,50,77,-0.11277541344516473],[114,50,78,-0.09889463702015043],[114,50,79,-0.0894044188415129],[114,51,64,-0.03389268825448995],[114,51,65,-0.04332083304098475],[114,51,66,-0.041468867631798044],[114,51,67,-0.03251266638519271],[114,51,68,-0.05208198052040822],[114,51,69,-0.05586703208619034],[114,51,70,-0.03124667157657042],[114,51,71,-0.03853889084201406],[114,51,72,-0.06261156093443232],[114,51,73,-0.06317596213182064],[114,51,74,-0.05071419452498874],[114,51,75,-0.053893779453527316],[114,51,76,-0.08955771788802631],[114,51,77,-0.11413354179014248],[114,51,78,-0.10013311472459815],[114,51,79,-0.09049276546661389],[114,52,64,-0.034142066189018015],[114,52,65,-0.04394191690909946],[114,52,66,-0.042276833661853384],[114,52,67,-0.033221945221048634],[114,52,68,-0.05278275696007423],[114,52,69,-0.05643799557844095],[114,52,70,-0.03171270228721987],[114,52,71,-0.03913796641628285],[114,52,72,-0.06320032143357905],[114,52,73,-0.06350080367582976],[114,52,74,-0.0507848323337952],[114,52,75,-0.054132637662174986],[114,52,76,-0.09053615994024318],[114,52,77,-0.11552525780861102],[114,52,78,-0.10140360159291709],[114,52,79,-0.09160654520847185],[114,53,64,-0.03440677587952396],[114,53,65,-0.044583275576666255],[114,53,66,-0.043107783459042176],[114,53,67,-0.03394944135457265],[114,53,68,-0.05350049965401763],[114,53,69,-0.05702382269058516],[114,53,70,-0.0321888948769007],[114,53,71,-0.039748970870583475],[114,53,72,-0.06380233876982747],[114,53,73,-0.06383830624280591],[114,53,74,-0.050866504324477486],[114,53,75,-0.0543861111025698],[114,53,76,-0.09154106921428656],[114,53,77,-0.11695027471435265],[114,53,78,-0.1027060509767768],[114,53,79,-0.09274574935272022],[114,54,64,-0.03468689575413137],[114,54,65,-0.04524509692366038],[114,54,66,-0.04396198306429503],[114,54,67,-0.03469541094024651],[114,54,68,-0.05423529769625352],[114,54,69,-0.05762452438449773],[114,54,70,-0.03267540802480882],[114,54,71,-0.040372001122234005],[114,54,72,-0.06441741136108826],[114,54,73,-0.06418818778599675],[114,54,74,-0.05095899238552004],[114,54,75,-0.05465400245006911],[114,54,76,-0.09257215436484452],[114,54,77,-0.11840827338177226],[114,54,78,-0.10404039332350055],[114,54,79,-0.0939103508697146],[114,55,64,-0.034982504107387395],[114,55,65,-0.04592756007214317],[114,55,66,-0.044839685222550114],[114,55,67,-0.03546009683536382],[114,55,68,-0.054987223627881505],[114,55,69,-0.058240097386251535],[114,55,70,-0.03317239012269999],[114,55,71,-0.04100714116021732],[114,55,72,-0.06504532267594669],[114,55,73,-0.06455015945950758],[114,55,74,-0.051062079912989465],[114,55,75,-0.054936110693865524],[114,55,76,-0.09362909931991764],[114,55,77,-0.11989890131297733],[114,55,78,-0.10540653535139877],[114,55,79,-0.09510030408369687],[114,56,64,-0.03529367867782999],[114,56,65,-0.046630834621077574],[114,56,66,-0.04574112829446037],[114,56,67,-0.03624372776372662],[114,56,68,-0.05575633290333088],[114,56,69,-0.05887052385765578],[114,56,70,-0.03367997910530065],[114,56,71,-0.04165446190030014],[114,56,72,-0.06568584120179122],[114,56,73,-0.0649239256310032],[114,56,74,-0.05117555176878452],[114,56,75,-0.05523223075693739],[114,56,76,-0.09471156239012853],[114,56,77,-0.12142177165258368],[114,56,78,-0.10680435924645856],[114,56,79,-0.09631554435707754],[114,57,64,-0.03562049619792284],[114,57,65,-0.04735507984946894],[114,57,66,-0.046666535128615086],[114,57,67,-0.03704651744535287],[114,57,68,-0.05654266333654269],[114,57,69,-0.05951577104647079],[114,57,70,-0.03419830225330074],[114,57,71,-0.042314021040547184],[114,57,72,-0.06633872044669885],[114,57,73,-0.06530918392105783],[114,57,74,-0.05129919424151866],[114,57,75,-0.055542153116119757],[114,57,76,-0.095819175413647],[114,57,77,-0.12297646225769385],[114,57,78,-0.10823372188594815],[114,57,79,-0.09755598779373603],[114,58,64,-0.03596303191753799],[114,58,65,-0.04810044389027005],[114,58,66,-0.047616111897428544],[114,58,67,-0.037868663695145785],[114,58,68,-0.05734623453009316],[114,58,69,-0.06017579091747448],[114,58,70,-0.03472747597039475],[114,58,71,-0.04298586292000459],[114,58,72,-0.06700369897879499],[114,58,73,-0.06570562527180103],[114,58,74,-0.051432795011234975],[114,58,75,-0.05586566342444456],[114,58,76,-0.0969515429427456],[114,58,77,-0.1245625148305143],[114,58,78,-0.10969445409454097],[114,58,79,-0.09882153096520635],[114,59,64,-0.03632135910225212],[114,59,65,-0.048867062877649886],[114,59,66,-0.04859004690006465],[114,59,67,-0.03871034749365604],[114,59,68,-0.058167047290361526],[114,59,69,-0.06085051976658824],[114,59,70,-0.03526760553587173],[114,59,71,-0.043670018383377106],[114,59,72,-0.06768050050680077],[114,59,73,-0.06611293404749737],[114,59,74,-0.05157614311916245],[114,59,75,-0.056202542137957945],[114,59,76,-0.09810824147809527],[114,59,77,-0.12617943412117616],[114,59,78,-0.1111863599386873],[114,59,79,-0.10011205066366649],[114,60,64,-0.03669554850778363],[114,60,65,-0.04965506007036249],[114,60,66,-0.049588509335966216],[114,60,67,-0.03957173203322801],[114,60,68,-0.05900508303190733],[114,60,69,-0.06153987782026462],[114,60,70,-0.03581878483425335],[114,60,71,-0.04436650465452864],[114,60,72,-0.06836883400542328],[114,60,73,-0.06653078816962534],[114,60,74,-0.05172902894368642],[114,60,75,-0.05655256414923241],[114,60,76,-0.09928881875694295],[114,60,77,-0.1278266872083426],[114,60,78,-0.1127092160650226],[114,60,79,-0.10142740368563935],[114,61,64,-0.037085667831931214],[114,61,65,-0.050464544954052754],[114,61,66,-0.05061164805270911],[114,61,67,-0.040452961742935487],[114,61,68,-0.059860303174252595],[114,61,69,-0.06224376882231408],[114,61,70,-0.03638109606346205],[114,61,71,-0.04507532522160745],[114,61,72,-0.06906839388914564],[114,61,73,-0.06695885928893207],[114,61,74,-0.05189124418365872],[114,61,75,-0.05691549842979309],[114,61,76,-0.10049279310131379],[114,61,77,-0.12950370286516627],[114,61,78,-0.11426277108862616],[114,61,79,-0.10276742665027695],[114,62,64,-0.03749178114548101],[114,62,65,-0.051295612325513405],[114,62,66,-0.05165959027214819],[114,62,67,-0.04135416129591671],[114,62,68,-0.060732648534355366],[114,62,69,-0.06296207961037385],[114,62,70,-0.036954609423034634],[114,62,71,-0.0457964697366238],[114,62,72,-0.06977886023791724],[114,62,73,-0.06739681299688229],[114,62,74,-0.052062581850171166],[114,62,75,-0.057291107683718145],[114,62,76,-0.10171965283240522],[114,62,77,-0.13120987101815515],[114,62,78,-0.11584674503700917],[114,62,79,-0.1041319358561049],[114,63,64,-0.0379139483036323],[114,63,65,-0.05214834136205812],[114,63,66,-0.05273244029902786],[114,63,67,-0.04227543460287852],[114,63,68,-0.06162203871812986],[114,63,69,-0.06369467968423623],[114,63,70,-0.0375393827839219],[114,63,71,-0.046529913932303435],[114,63,72,-0.07049989907815839],[114,63,73,-0.06784430907885279],[114,63,74,-0.05224283626790735],[114,63,75,-0.057679148014710725],[114,63,76,-0.10296885575734714],[114,63,77,-0.13294454230648386],[114,63,78,-0.11746082885574756],[114,63,79,-0.10552072718009209],[114,64,64,-0.03835222433954013],[114,64,65,-0.05302279467928228],[114,64,66,-0.05383027821639852],[114,64,67,-0.04321686379566595],[114,64,68,-0.06252837151438168],[114,64,69,-0.06444142076821487],[114,64,70,-0.0381354613413886],[114,64,71,-0.047275619558981505],[114,64,72,-0.07123116272233554],[114,64,73,-0.06830100181128582],[114,64,74,-0.052431803087132155],[114,64,75,-0.05807936860891947],[114,64,76,-0.10423982873441841],[114,64,77,-0.1347070277491464],[114,64,78,-0.11910468398163118],[114,64,79,-0.10693357602282286],[114,65,64,-0.038806658841707295],[114,65,65,-0.05391901738068696],[114,65,66,-0.0549531585724517],[114,65,67,-0.04417850820501732],[114,65,68,-0.06345152229464161],[114,65,69,-0.06520213636979078],[114,65,70,-0.03874287725260727],[114,65,71,-0.04803353434432879],[114,65,72,-0.07197229017027414],[114,65,73,-0.0687665403049343],[114,65,74,-0.052629279307368576],[114,65,75,-0.05849151143581682],[114,65,76,-0.10553196732278494],[114,65,77,-0.13649659852729795],[114,65,78,-0.1207779419892492],[114,65,79,-0.10837023730356807],[114,66,64,-0.03927729531702891],[114,66,65,-0.05483703610274881],[114,66,66,-0.05610110906353852],[114,66,67,-0.045160403336723894],[114,66,68,-0.0643913434223684],[114,66,69,-0.06597664133672211],[114,66,70,-0.03936164926049567],[114,66,71,-0.048803591978617174],[114,66,72,-0.07272290757522586],[114,66,73,-0.06924056889626974],[114,66,74,-0.052835063313869716],[114,66,75,-0.05891531096952947],[114,66,76,-0.10684463552277737],[114,66,77,-0.13831248588896863],[114,66,78,-0.12248020431684024],[114,66,79,-0.10983044550892128],[114,67,64,-0.03976417054140435],[114,67,65,-0.05577685805920528],[114,67,66,-0.057274129218403094],[114,67,67,-0.046162559850643485],[114,67,68,-0.06534766367511133],[114,67,69,-0.06676473141488712],[114,67,70,-0.03999178230545992],[114,67,71,-0.049585712128245314],[114,67,72,-0.07348262877751892],[114,67,73,-0.06972272758888973],[114,67,74,-0.053048954927830294],[114,67,75,-0.059350493932887834],[114,67,76,-0.10817716561253139],[114,67,77,-0.1401538811831553],[114,67,78,-0.12421104207724885],[114,67,79,-0.11131391479869213],[114,68,64,-0.04026731389991688],[114,68,65,-0.05673847008843209],[114,68,66,-0.05847218908880744],[114,68,67,-0.04718496254709994],[114,68,68,-0.06632028768318435],[114,68,69,-0.0675661828090491],[114,68,70,-0.040633267126638804],[114,68,71,-0.05037980048012918],[114,68,72,-0.07425105590845894],[114,68,73,-0.07021265254673562],[114,68,74,-0.053270755471402635],[114,68,75,-0.059796779066598714],[114,68,76,-0.10952885808676352],[114,68,77,-0.14201993603009097],[114,68,78,-0.125969995959683],[114,68,79,-0.11282033917256837],[114,69,64,-0.04078674671870006],[114,69,65,-0.05772183770795741],[114,69,66,-0.05969522795195814],[114,69,67,-0.04822756936539248],[114,69,68,-0.06730899538848958],[114,69,69,-0.06838075174879701],[114,69,70,-0.04128607985434151],[114,69,71,-0.05118574881954511],[114,69,72,-0.07502778006694569],[114,69,73,-0.07070997664073382],[114,69,74,-0.053500267848495334],[114,69,75,-0.06025387692588378],[114,69,76,-0.11089898170325688],[114,69,77,-0.14390976263425656],[114,69,78,-0.12775657622792383],[114,69,79,-0.11434939270104648],[114,70,64,-0.0413224815907269],[114,70,65,-0.05872690418030756],[114,70,66,-0.06094315303034413],[114,70,67,-0.049290310399286996],[114,70,68,-0.06831354152715095],[114,70,69,-0.0692081740619112],[114,70,70,-0.041950181595389435],[114,70,71,-0.05200343514393741],[114,70,72,-0.07581238207106897],[114,70,73,-0.0712143300503523],[114,70,74,-0.053737296642347415],[114,70,75,-0.06072148970695039],[114,70,76,-0.11228677364246348],[114,70,77,-0.14582243424642993],[114,70,78,-0.12957026282051134],[114,70,79,-0.11590072982400602],[114,71,64,-0.041874521697824504],[114,71,65,-0.05975358959446067],[114,71,66,-0.06221583823472507],[114,71,67,-0.05037308693444078],[114,71,68,-0.06933365513959663],[114,71,69,-0.07004816475737484],[114,71,70,-0.042625518013077845],[114,71,71,-0.05283272381508446],[114,71,72,-0.07660443328667726],[114,71,73,-0.07172534092136332],[114,71,74,-0.05398164823082039],[114,71,75,-0.06119931110562152],[114,71,76,-0.11369143978537957],[114,71,77,-0.1477569857807171],[114,71,78,-0.13141050555825184],[114,71,79,-0.1174739857201717],[114,72,64,-0.04244286013135937],[114,72,65,-0.06080178996735362],[114,72,66,-0.06351312293622553],[114,72,67,-0.05147577051288131],[114,72,68,-0.07036903911177722],[114,72,69,-0.07090041762028491],[114,72,70,-0.04331201890353695],[114,72,71,-0.053673465751955536],[114,72,72,-0.07740349653469489],[114,72,73,-0.07224263608096335],[114,72,74,-0.054233130920359],[114,72,75,-0.061687026210459815],[114,72,76,-0.11511215511463262],[114,72,77,-0.14971241459219314],[114,72,78,-0.13327672446425903],[114,72,79,-0.11906877675060783],[114,73,64,-0.04302747921414417],[114,73,65,-0.06187137636999519],[114,73,66,-0.06483481077363745],[114,73,67,-0.05259820202975768],[114,73,68,-0.07141936975120103],[114,73,69,-0.07176460482092069],[114,73,70,-0.04400959777031069],[114,73,71,-0.05452549866649113],[114,73,72,-0.07820912707870548],[114,73,73,-0.07276584181122703],[114,73,74,-0.054491555099562904],[114,73,75,-0.06218431143270794],[114,73,76,-0.11654806424345122],[114,73,77,-0.1516876814204048],[114,73,78,-0.1351683102015583],[114,73,79,-0.12068470097927074],[114,74,64,-0.043628349826177],[114,74,65,-0.06296219408279619],[114,74,66,-0.06618066850212802],[114,74,67,-0.0537401908676352],[114,74,68,-0.07248429640141313],[114,74,69,-0.07264037654018],[114,74,70,-0.04471815139896647],[114,74,71,-0.055388647344376325],[114,74,72,-0.0790208736939854],[114,74,73,-0.07329458468163394],[114,74,74,-0.054756733413243504],[114,74,75,-0.06269083447528714],[114,74,76,-0.11799828207683462],[114,74,77,-0.15368171150350826],[114,74,78,-0.1370846246330107],[114,74,79,-0.12232133877344491],[114,75,64,-0.044245430736970265],[114,75,65,-0.06407406178486981],[114,75,66,-0.06755042488972647],[114,75,67,-0.054901514073729625],[114,75,68,-0.0735634410985708],[114,75,69,-0.07352736061363387],[114,75,70,-0.045437559433623105],[114,75,71,-0.056262723972796455],[114,75,72,-0.07983827981892457],[114,75,73,-0.07382849244125134],[114,75,74,-0.055028480957860046],[114,75,75,-0.06320625434309562],[114,75,76,-0.11946189460894746],[114,75,77,-0.15569339586741754],[114,75,78,-0.13902500150812813],[114,75,79,-0.12397825348678639],[114,76,64,-0.04487866794730507],[114,76,65,-0.06520677078210663],[114,76,66,-0.06894376966803563],[114,76,67,-0.056081915585515785],[114,76,68,-0.07465639827371032],[114,76,69,-0.07442516219643444],[114,76,70,-0.04616768395731829],[114,76,71,-0.05714752851701556],[114,76,72,-0.0806608847894456],[114,76,73,-0.07436719497094504],[114,76,74,-0.0553066154992051],[114,76,75,-0.06373022139679983],[114,76,76,-0.1209379598603977],[114,76,77,-0.15772159279383252],[114,76,78,-0.14098874728107666],[114,76,79,-0.1256549922275227],[114,77,64,-0.045527994043315534],[114,77,65,-0.06636008427887258],[114,77,66,-0.0703603525436838],[114,77,67,-0.05728110551016724],[114,77,68,-0.07576273450423367],[114,77,69,-0.07533336345126702],[114,77,70,-0.04690836907813295],[114,77,71,-0.05804284914743961],[114,77,72,-0.08148822515667761],[114,77,73,-0.07491032529573582],[114,77,74,-0.055590957713140106],[114,77,75,-0.06426237745220531],[114,77,76,-0.12242550895862177],[114,77,77,-0.15976512947046428],[114,77,78,-0.14297514206383877],[114,77,79,-0.12735108671414974],[114,78,64,-0.04619332756591371],[114,78,65,-0.06753373669824211],[114,78,66,-0.07179978227710548],[114,78,67,-0.058498759463325535],[114,78,68,-0.07688198831810114],[114,78,69,-0.07625152326155415],[114,78,70,-0.04765944052305775],[114,78,71,-0.058948462718694604],[114,78,72,-0.08231983608783101],[114,78,73,-0.0754575206572313],[114,78,74,-0.055881331450191724],[114,78,75,-0.06480235592726206],[114,78,76,-0.12392354736421367],[114,78,77,-0.16182280382624903],[114,78,78,-0.14498344071822994],[114,78,79,-0.12906605422081133],[114,79,64,-0.04687457239864452],[114,79,65,-0.06872743305570266],[114,79,66,-0.07326162583527328],[114,79,67,-0.05973451797269574],[114,79,68,-0.07801367005414461],[114,79,69,-0.07717917697210236],[114,79,70,-0.04842070524162055],[114,79,71,-0.05986413530208592],[114,79,72,-0.08315525284987435],[114,79,73,-0.07600842364583847],[114,79,74,-0.056177564024792216],[114,79,75,-0.06534978203868341],[114,79,76,-0.12543105624559223],[114,79,77,-0.16389338655376862],[114,79,78,-0.14701287409013744],[114,79,79,-0.13079939861436798],[114,80,64,-0.04757161717709463],[114,80,65,-0.06994084839124845],[114,80,66,-0.0747454076249841],[114,80,67,-0.06098798595191528],[114,80,68,-0.0791572617817914],[114,80,69,-0.07811583615932312],[114,80,70,-0.049191951021282244],[114,80,71,-0.060789622772584144],[114,80,72,-0.08399401237521449],[114,80,73,-0.07656268339218347],[114,80,74,-0.05647948652986505],[114,80,75,-0.06590427305001134],[114,80,76,-0.12694699400387885],[114,80,77,-0.16597562332043694],[114,80,78,-0.14906265038894614],[114,80,79,-0.13255061148490593],[114,81,64,-0.04828433472306189],[114,81,65,-0.07117362726478045],[114,81,66,-0.07625060881329673],[114,81,67,-0.06225873225010999],[114,81,68,-0.08031221728340991],[114,81,69,-0.07906098843316642],[114,81,70,-0.049972946116673946],[114,81,71,-0.06172467145132844],[114,81,72,-0.0848356549082451],[114,81,73,-0.07711995681696411],[114,81,74,-0.05678693417746437],[114,81,75,-0.06646543857291178],[114,81,76,-0.12847029794940587],[114,81,77,-0.1680682371694236],[114,81,78,-0.15113195671478902],[114,81,79,-0.1343191733712808],[114,82,64,-0.04901258150674876],[114,82,65,-0.07242538331970623],[114,82,66,-0.07777666674167094],[114,82,67,-0.06354628928249156],[114,82,68,-0.08147796210237591],[114,82,69,-0.08001409727287338],[114,82,70,-0.050763438894770724],[114,82,71,-0.06266901880444808],[114,82,72,-0.08567972573127053],[114,82,73,-0.07767990993822896],[114,82,74,-0.05709974666613703],[114,82,75,-0.06703288092334936],[114,82,76,-0.1299998861307368],[114,82,77,-0.1701699311106147],[114,82,78,-0.1532199607358594],[114,82,79,-0.13610455508307412],[114,83,64,-0.049756196698689865],[114,83,65,-0.07369569799197721],[114,83,66,-0.07932297315030744],[114,83,67,-0.06485015145669548],[114,83,68,-0.08265389171746074],[114,83,69,-0.08097459970745141],[114,83,70,-0.051563155921319694],[114,83,71,-0.06362239203191357],[114,83,72,-0.08652577372363872],[114,83,73,-0.07824221603557732],[114,83,74,-0.057417766035480704],[114,83,75,-0.06760619231976635],[114,83,76,-0.13153465263357525],[114,83,77,-0.17227938159394912],[114,83,78,-0.15532580363368959],[114,83,79,-0.13790621080158894],[114,84,64,-0.05051498840290447],[114,84,65,-0.07498409162310606],[114,84,66,-0.08088883346990255],[114,84,67,-0.0661697343249433],[114,84,68,-0.08383931067134773],[114,84,69,-0.0819418372993273],[114,84,70,-0.052371751705163935],[114,84,71,-0.06458444016057072],[114,84,72,-0.08737325081486882],[114,84,73,-0.07880645623443351],[114,84,74,-0.05774075708971232],[114,84,75,-0.06818485368603337],[114,84,76,-0.1330732574189286],[114,84,77,-0.17439494542830686],[114,84,78,-0.15744831889735264],[114,84,79,-0.1397233144525237],[114,85,64,-0.05128873373123855],[114,85,65,-0.07629002108802778],[114,85,66,-0.08247346086841316],[114,85,67,-0.06750436728895721],[114,85,68,-0.08503342254886086],[114,85,69,-0.08291504424335969],[114,85,70,-0.053188798248047855],[114,85,71,-0.06555472051278143],[114,85,72,-0.0882214945824031],[114,85,73,-0.07937210266835562],[114,85,74,-0.05806839356365059],[114,85,75,-0.0687682150650462],[114,85,76,-0.13461408248587445],[114,85,77,-0.17651459683617648],[114,85,78,-0.15958596837105307],[114,85,79,-0.14155469950855715],[114,86,64,-0.05207719643594451],[114,86,65,-0.07761291596553943],[114,86,66,-0.0840760252497995],[114,86,67,-0.06885334197502971],[114,86,68,-0.0862354031554462],[114,86,69,-0.08389342930649944],[114,86,70,-0.05401384296874776],[114,86,71,-0.06653277938068998],[114,86,72,-0.08906985068153633],[114,86,73,-0.07993863899602421],[114,86,74,-0.05840035308169952],[114,86,75,-0.0693556149071139],[114,86,76,-0.136155479396101],[114,86,77,-0.17863627121802422],[114,86,78,-0.16173716777957553],[114,86,79,-0.1433991633178471],[114,87,64,-0.052880127784460045],[114,87,65,-0.0789521810077416],[114,87,66,-0.08569565662855934],[114,87,67,-0.07021591562985566],[114,87,68,-0.08744440556682305],[114,87,69,-0.08487618094650771],[114,87,70,-0.054846412111926715],[114,87,71,-0.06751815800406512],[114,87,72,-0.08991768235885385],[114,87,73,-0.08050556914567253],[114,87,74,-0.058736323200421055],[114,87,75,-0.06994638787952497],[114,87,76,-0.13769578722015743],[114,87,77,-0.18075789003032108],[114,87,78,-0.16390030915298517],[114,87,79,-0.145255487502149],[114,88,64,-0.05369726641998393],[114,88,65,-0.0803071965007781],[114,88,66,-0.08733144560428428],[114,88,67,-0.07159131161668089],[114,88,68,-0.08865956072257308],[114,88,69,-0.08586246736732737],[114,88,70,-0.05568601053163876],[114,88,71,-0.06851039358112625],[114,88,72,-0.09076437248048833],[114,88,73,-0.08107241866010335],[114,88,74,-0.05907600157385194],[114,88,75,-0.07053986529925475],[114,88,76,-0.13923333521615677],[114,88,77,-0.182877364391659],[114,88,78,-0.1660737629612529],[114,88,79,-0.147122439298367],[114,89,64,-0.054528338274112007],[114,89,65,-0.08167731871292687],[114,89,66,-0.08898244395594554],[114,89,67,-0.07297872001336882],[114,89,68,-0.08987997808828384],[114,89,69,-0.08685143661365524],[114,89,70,-0.05653212150104418],[114,89,71,-0.06950902032038737],[114,89,72,-0.0916093255997343],[114,89,73,-0.08163873607511685],[114,89,74,-0.05941909615032224],[114,89,75,-0.07113537563894601],[114,89,76,-0.14076644566611046],[114,89,77,-0.1849925988748688],[114,89,78,-0.1682558804078736],[114,89,79,-0.14899877299372682],[114,90,64,-0.05537305653245841],[114,90,65,-0.08306188043045018],[114,90,66,-0.09064766535693898],[114,90,67,-0.07437729831320332],[114,90,68,-0.09110474638550559],[114,90,69,-0.0878422167047542],[114,90,70,-0.05738420654954048],[114,90,71,-0.0705135705306581],[114,90,72,-0.09245197005667506],[114,90,73,-0.08220409432570297],[114,90,74,-0.05976532539923402],[114,90,75,-0.07173224510478361],[114,90,76,-0.14229343686223872],[114,90,77,-0.18710149547447283],[114,90,78,-0.17044499587679318],[114,90,79,-0.15088323145050225],[114,91,64,-0.056231121654060814],[114,91,65,-0.08446019158132223],[114,91,66,-0.09232608621153116],[114,91,67,-0.07578617222889686],[114,91,68,-0.09233293438857702],[114,91,69,-0.08883391580754263],[114,91,70,-0.05824170532851513],[114,91,71,-0.07152357574611135],[114,91,72,-0.09329176010217838],[114,91,73,-0.0827680921741867],[114,91,74,-0.06011441856624639],[114,91,75,-0.07232979828473428],[114,91,76,-0.14381262623498897],[114,91,77,-0.18920195773802848],[114,91,78,-0.17263942952640035],[114,91,79,-0.15277454771596802],[114,92,64,-0.057102221445210016],[114,92,65,-0.0858715399466504],[114,92,66,-0.09401664661293391],[114,92,67,-0.07720443659988876],[114,92,68,-0.09356359178713672],[114,92,69,-0.08982562244892756],[114,92,70,-0.059104035506861954],[114,92,71,-0.07253856788305955],[114,92,72,-0.0941281780383022],[114,92,73,-0.08333035565429864],[114,92,74,-0.06046611595521917],[114,92,75,-0.07292735886538194],[114,92,76,-0.14532233361380467],[114,92,77,-0.19129189504909141],[114,92,78,-0.17483749002370638],[114,92,79,-0.15467144671291214],[114,93,64,-0.05798603118824811],[114,93,65,-0.08729519195935889],[114,93,66,-0.09571825142288243],[114,93,67,-0.07863115640270657],[114,93,68,-0.0947957501129852],[114,93,69,-0.09081640576740072],[114,93,70,-0.05997059269745212],[114,93,71,-0.0735580804249246],[114,93,72,-0.09496073636695225],[114,93,73,-0.08389053952504869],[114,93,74,-0.06082016923529018],[114,93,75,-0.07352425041547335],[114,93,76,-0.14682088461114945],[114,93,77,-0.1933692270488477],[114,93,78,-0.17703747741134063],[114,93,79,-0.15657264700585063],[114,94,64,-0.05888221382569274],[114,94,65,-0.0887303935893637],[114,94,66,-0.09742977147214102],[114,94,67,-0.0800653678637542],[114,94,68,-0.096028423729724],[114,94,69,-0.09180531580385434],[114,94,70,-0.060840750415692486],[114,94,71,-0.07458164963163709],[114,94,72,-0.0957889799383558],[114,94,73,-0.08444832872808883],[114,94,74,-0.061176341771363725],[114,94,75,-0.07411979723404181],[114,94,76,-0.148306614119644],[114,94,77,-0.19543188818268997],[114,94,78,-0.17923768609937799],[114,94,79,-0.15847686263777178],[114,95,64,-0.0597904201999359],[114,95,65,-0.09017637131422399],[114,95,66,-0.09915004488100514],[114,95,67,-0.0815060796735761],[114,95,68,-0.0972606108834472],[114,95,69,-0.09279138383160791],[114,95,70,-0.061713860071335044],[114,95,71,-0.075608815769562],[114,95,72,-0.0966124880907585],[114,95,73,-0.08500343984216585],[114,95,74,-0.061534408976275774],[114,95,75,-0.0747133252608194],[114,95,76,-0.14977786991164022],[114,95,77,-0.19747783235737346],[114,95,78,-0.18143640797351837],[114,95,79,-0.16038280503203586],[114,96,64,-0.0607102893485419],[114,96,65,-0.09163233317388117],[114,96,66,-0.10087787849838176],[114,96,67,-0.08295227430120544],[114,96,68,-0.0984912948125153],[114,96,69,-0.0937736227255783],[114,96,70,-0.06258925099463361],[114,96,71,-0.07663912435780862],[114,96,72,-0.09743087677251268],[114,96,73,-0.08555562252809304],[114,96,74,-0.06189415868278739],[114,96,75,-0.07530416304638966],[114,96,76,-0.1512330163299574],[114,96,77,-0.1995050376936806],[114,96,78,-0.18363193561055258],[114,96,79,-0.16228918495376587],[114,97,64,-0.061641448855047624],[114,97,65,-0.09309746990784822],[114,97,66,-0.10261204945766786],[114,97,67,-0.08440290940688779],[114,97,68,-0.09971944491429688],[114,97,69,-0.09475102737055487],[114,97,70,-0.06346623049796916],[114,97,71,-0.07767212742667198],[114,97,72,-0.09824380063762131],[114,97,73,-0.08610466095761037],[114,97,74,-0.06225539153353186],[114,97,75,-0.07589164277935694],[114,97,76,-0.15267043805801433],[114,97,77,-0.2015115113589503],[114,97,78,-0.18582256559157964],[114,97,79,-0.16419471452487536],[114,98,64,-0.06258351525498511],[114,98,65,-0.09457095617289024],[114,98,66,-0.10435130684721368],[114,98,67,-0.08585691935108944],[114,98,68,-0.10094401796658217],[114,98,69,-0.09572257510853116],[114,98,70,-0.06434408397404703],[114,98,71,-0.07870738478380025],[114,98,72,-0.09905095510567818],[114,98,73,-0.08665037521941973],[114,98,74,-0.06261792138697592],[114,98,75,-0.07647510136760026],[114,98,76,-0.15408854395709884],[114,98,77,-0.20349529446326264],[114,98,78,-0.18800660190295038],[114,98,79,-0.1660981092866716],[114,99,64,-0.06353609449662306],[114,99,65,-0.09605195183889002],[114,99,66,-0.10609437349269495],[114,99,67,-0.08731321679728593],[114,99,68,-0.10216395940115408],[114,99,69,-0.09668722622500162],[114,99,70,-0.06522207503170735],[114,99,71,-0.07974446528350965],[114,99,72,-0.09985207837700873],[114,99,73,-0.08719262269556911],[114,99,74,-0.06298157573733497],[114,99,75,-0.07705388157041812],[114,99,76,-0.155485770958012],[114,99,77,-0.2054544670025036],[114,99,78,-0.19018235941440204],[114,99,79,-0.16799809030372587],[114,100,64,-0.06449878245578528],[114,100,65,-0.09753960336033879],[114,100,66,-0.10783994784835055],[114,100,67,-0.08877069440570591],[114,100,68,-0.1033782046268747],[114,100,69,-0.09764392447415376],[114,100,70,-0.06609944567040608],[114,100,71,-0.08078294809460179],[114,100,72,-0.10064695339380703],[114,100,73,-0.087731299401357],[114,100,74,-0.06334619614634927],[114,100,75,-0.07762733317818858],[114,100,76,-0.1568605879939289],[114,100,77,-0.20738715283110212],[114,100,78,-0.19234816742344255],[114,100,79,-0.16989338630255524],[114,101,64,-0.06547116550389838],[114,101,65,-0.09903304522056336],[114,101,66,-0.10958670599360762],[114,101,67,-0.09022822661483001],[114,101,68,-0.10458568039948377],[114,101,69,-0.09859159764289145],[114,101,70,-0.0669754164944025],[114,101,71,-0.08182242396193665],[114,101,72,-0.10143540973803478],[114,101,73,-0.08826634128190143],[114,101,74,-0.06371163868475768],[114,101,75,-0.07819481423596945],[114,101,76,-0.15821149996095057],[114,101,77,-0.20929152464683576],[114,101,78,-0.19450237325465453],[114,101,79,-0.1717827358385156],[114,102,64,-0.06645282112819836],[114,102,65,-0.10053140144548062],[114,102,66,-0.1113333037311762],[114,102,67,-0.09168467150705013],[114,102,68,-0.10578530623510397],[114,102,69,-0.09952915815355548],[114,102,70,-0.06784918696761062],[114,102,71,-0.08286249645689416],[114,102,72,-0.10221732545681132],[114,102,73,-0.08879772545846067],[114,102,74,-0.06407777438116943],[114,102,75,-0.07875569230718506],[114,102,76,-0.1595370516923996],[114,102,77,-0.21116580896966522],[114,102,78,-0.19664334590212804],[114,102,79,-0.17366488948407316],[114,103,64,-0.06744331860286536],[114,103,65,-0.10203378718340576],[114,103,66,-0.11307837878232689],[114,103,67,-0.09313887275458355],[114,103,68,-0.1069759958643477],[114,103,69,-0.10045550370525075],[114,103,70,-0.06871993571008296],[114,103,71,-0.08390278321184551],[114,103,72,-0.10299262880612284],[114,103,73,-0.0893254714176627],[114,103,74,-0.06444448967601478],[114,103,75,-0.07930934577339593],[114,103,76,-0.1608358319326817],[114,103,77,-0.2130082910963408],[114,103,78,-0.19876947970296557],[114,103,79,-0.17553861203156956],[114,104,64,-0.06844221970965224],[114,104,65,-0.10353931034714592],[114,104,66,-0.11482055307466461],[114,104,67,-0.09458966164138954],[114,104,68,-0.1081566587237786],[114,104,69,-0.1013695179536732],[114,104,70,-0.06958682083706252],[114,104,71,-0.08494291713371296],[114,104,72,-0.1037612999037513],[114,104,73,-0.089849642136834],[114,104,74,-0.06481168687817432],[114,104,75,-0.07985516516594375],[114,104,76,-0.16210647729627153],[114,104,77,-0.2148173200122743],[114,104,78,-0.2008791980294801],[114,104,79,-0.1774026847034713],[114,105,64,-0.06944907949422066],[114,105,65,-0.10504707327172834],[114,105,66,-0.11655843506995697],[114,105,67,-0.09603585913215486],[114,105,68,-0.10932620149924795],[114,105,69,-0.10227007129155236],[114,105,70,-0.07044898040279415],[114,105,71,-0.08598254755058037],[114,105,72,-0.1045233721758519],[114,105,73,-0.0903703450084318],[114,105,74,-0.06517928449977661],[114,105,75,-0.0803925544262545],[114,105,76,-0.16334767601198272],[114,105,77,-0.2165913130396135],[114,105,78,-0.20297095685264957],[114,105,79,-0.179255907275091],[114,106,64,-0.07046343229714866],[114,106,65,-0.10655612408489282],[114,106,66,-0.11829056704806239],[114,106,67,-0.09747624983449522],[114,106,68,-0.11048355150613952],[114,106,69,-0.10315609655116946],[114,106,70,-0.07130560641604886],[114,106,71,-0.08702129260952961],[114,106,72,-0.10527880712888418],[114,106,73,-0.09088757897325708],[114,106,74,-0.0655470750794654],[114,106,75,-0.08092081733984256],[114,106,76,-0.16455795508962842],[114,106,77,-0.2183285229898752],[114,106,78,-0.20504308988889397],[114,106,79,-0.1810969967600291],[114,107,64,-0.07148475948352478],[114,107,65,-0.10806535570788688],[114,107,66,-0.1200153208767641],[114,107,67,-0.09890953063913104],[114,107,68,-0.1116277069401423],[114,107,69,-0.1040267512960888],[114,107,70,-0.07215610231997525],[114,107,71,-0.08805863970084903],[114,107,72,-0.10602723317856123],[114,107,73,-0.09140092308326342],[114,107,74,-0.06591444639033642],[114,107,75,-0.08143893752593451],[114,107,76,-0.16573525813745948],[114,107,77,-0.22002657044626453],[114,107,78,-0.20709349486707337],[114,107,79,-0.18292438143775158],[114,108,64,-0.0725125191395133],[114,108,65,-0.10957362061939807],[114,108,66,-0.1217310327684451],[114,108,67,-0.1003343819711185],[114,108,68,-0.11275769564476537],[114,108,69,-0.10488126330720643],[114,108,70,-0.07299992868459868],[114,108,71,-0.08909405406841692],[114,108,72,-0.10676822485352469],[114,108,73,-0.09190988442642749],[114,108,74,-0.06628071882565433],[114,108,75,-0.08194585671963507],[114,108,76,-0.16687745853600358],[114,108,77,-0.22168299904079225],[114,108,78,-0.2091200013459695],[114,108,79,-0.18473643957926394],[114,109,64,-0.0735461539763788],[114,109,65,-0.11107975873831197],[114,109,66,-0.12343603572211968],[114,109,67,-0.10174948554658916],[114,109,68,-0.1138725664443328],[114,109,69,-0.1057188948456155],[114,109,70,-0.07383656746726365],[114,109,71,-0.09012700478099953],[114,109,72,-0.10750136835637614],[114,109,73,-0.09241397864533249],[114,109,74,-0.0666452221727052],[114,109,75,-0.08244053854520601],[114,109,76,-0.1679824786609706],[114,109,77,-0.22329540524543812],[114,109,78,-0.21112045738856658],[114,109,79,-0.18653155586768547],[114,110,64,-0.07458509209801184],[114,110,65,-0.11258259931908719],[114,110,66,-0.12512866261906888],[114,110,67,-0.1031535269913755],[114,110,68,-0.11497139111926148],[114,110,69,-0.10653894432530304],[114,110,70,-0.07466552325874012],[114,110,71,-0.09115696566881296],[114,110,72,-0.10822626220790449],[114,110,73,-0.09291273066967423],[114,110,74,-0.06700729687421232],[114,110,75,-0.08292197087299477],[114,110,76,-0.16904829455128795],[114,110,77,-0.22486144334706337],[114,110,78,-0.2130927333448821],[114,110,79,-0.18830812386713566],[114,111,64,-0.07562874782783209],[114,111,65,-0.11408096291665515],[114,111,66,-0.12680724938344842],[114,111,67,-0.10454519849912533],[114,111,68,-0.11605326635437507],[114,111,69,-0.1073407479186438],[114,111,70,-0.07548632448122727],[114,111,71,-0.09218341625836127],[114,111,72,-0.10894251788124378],[114,111,73,-0.09340567547255405],[114,111,74,-0.06736629533170505],[114,111,75,-0.08338916819530877],[114,111,76,-0.17007294055359692],[114,111,77,-0.22637883038534487],[114,111,78,-0.2150347256665583],[114,111,79,-0.19006454853650462],[114,112,64,-0.07667652259396604],[114,112,65,-0.11557366341632948],[114,112,66,-0.12847013819873945],[114,112,67,-0.10592320152098074],[114,112,68,-0.11711731565347343],[114,112,69,-0.10812368108765007],[114,112,70,-0.07629852453292003],[114,112,71,-0.09320584270281235],[114,112,72,-0.10964976042412401],[114,112,73,-0.09389235884769875],[114,112,74,-0.06772158324458905],[114,112,75,-0.08384117401086587],[114,112,76,-0.17105451392460277],[114,112,77,-0.2278453510351031],[114,112,78,-0.2169443607410635],[114,112,79,-0.19179924878147153],[114,113,64,-0.07772780587134347],[114,113,65,-0.1170595101239172],[114,113,66,-0.13011568077064647],[114,113,67,-0.10728624947871454],[114,113,68,-0.11816269121345599],[114,113,69,-0.10888716003421468],[114,113,70,-0.07710170287400386],[114,113,71,-0.09422373870514955],[114,113,72,-0.11034762906734236],[114,113,73,-0.09437233820462156],[114,113,74,-0.06807254097854964],[114,113,75,-0.08427706320740068],[114,113,76,-0.17199117937277505],[114,113,77,-0.2292588624145558],[114,113,78,-0.21881959873325524],[114,113,79,-0.19351066003796855],[114,114,64,-0.07878197617906155],[114,114,65,-0.1185373099108934],[114,114,66,-0.1317422416267581],[114,114,67,-0.10863307049301689],[114,114,68,-0.11918857575138131],[114,114,69,-0.10963064306285944],[114,114,70,-0.07789546604913296],[114,114,71,-0.09523660643128432],[114,114,72,-0.1110357778175414],[114,114,73,-0.09484518337858668],[114,114,74,-0.06841856495676238],[114,114,75,-0.08469594443192506],[114,114,76,-0.1728811735210006],[114,114,77,-0.2306172988012048],[114,114,78,-0.22065843742192473],[114,114,79,-0.19519723688004956],[114,115,64,-0.07983840161789069],[114,115,65,-0.12000586889010906],[114,115,66,-0.13334820091801403],[114,115,67,-0.10996240958744362],[114,115,68,-0.1201941837409103],[114,115,69,-0.1103536313067609],[114,115,70,-0.07867944809264787],[114,115,71,-0.09624395685527348],[114,115,72,-0.11171387547130109],[114,115,73,-0.09531047688507496],[114,115,74,-0.06875906849425326],[114,115,75,-0.08509696185911717],[114,115,76,-0.1737228086869955],[114,115,77,-0.23191867564634727],[114,115,78,-0.22245891542199808],[114,115,79,-0.19685745504214822],[114,116,64,-0.08089631391320275],[114,116,65,-0.12146386611725979],[114,116,66,-0.1349318277399103],[114,116,67,-0.11127289990913933],[114,116,68,-0.12117863011852581],[114,116,69,-0.11105553539136041],[114,116,70,-0.07945317540283192],[114,116,71,-0.09724517313334445],[114,116,72,-0.11238146715597641],[114,116,73,-0.09576767423062801],[114,116,74,-0.06909334119277288],[114,116,75,-0.0854791539821606],[114,116,76,-0.17451433211193335],[114,116,77,-0.23316094753625208],[114,116,78,-0.22421896796779706],[114,116,79,-0.19848966456398048],[114,117,64,-0.08195463676872924],[114,117,65,-0.12290968097248958],[114,117,66,-0.13649110647777787],[114,117,67,-0.11256288632781172],[114,117,68,-0.12214075067971877],[114,117,69,-0.11173549311288947],[114,117,70,-0.08021588201987961],[114,117,71,-0.09823932379784801],[114,117,72,-0.11303778504277097],[114,117,73,-0.09621591277545316],[114,117,74,-0.06942035623697071],[114,117,75,-0.0858412596086168],[114,117,76,-0.1752537316543009],[114,117,77,-0.23434181195445244],[114,117,78,-0.22593622794892157],[114,117,79,-0.20009188758124138],[114,118,64,-0.08301223215957469],[114,118,65,-0.12434164331806191],[114,118,66,-0.13802399076381272],[114,118,67,-0.11383068152000748],[114,118,68,-0.12307935981107922],[114,118,69,-0.11239262933000549],[114,118,70,-0.08096677207011262],[114,118,71,-0.09922542810630518],[114,118,72,-0.11368201614449461],[114,118,73,-0.09665428263653687],[114,118,74,-0.06973904465324414],[114,118,75,-0.08618199568954589],[114,118,76,-0.17593901813160634],[114,118,77,-0.23545899457680933],[114,118,78,-0.22760831346756005],[114,118,79,-0.20166210754870373],[114,119,64,-0.08406794251866624],[114,119,65,-0.1257580772602807],[114,119,66,-0.13952844871911424],[114,119,67,-0.11507461103884373],[114,119,68,-0.12399329486690748],[114,119,69,-0.11302610016855538],[114,119,70,-0.08170506425713422],[114,119,71,-0.10020250120041976],[114,119,72,-0.11431334762534912],[114,119,73,-0.09708187283148761],[114,119,74,-0.07004834251038346],[114,119,75,-0.0865001057518913],[114,119,76,-0.1765682758844167],[114,119,77,-0.23651030050655356],[114,119,78,-0.229232879186906],[114,119,79,-0.20319832005885857],[114,120,64,-0.08512059243587518],[114,120,65,-0.12715730394222133],[114,120,66,-0.1410024667201142],[114,120,67,-0.11629301643207533],[114,120,68,-0.12488141808190859],[114,120,69,-0.11363509426049989],[114,120,70,-0.08242999295168103],[114,120,71,-0.10116955545745383],[114,120,72,-0.11493096783514932],[114,120,73,-0.0974977727009299],[114,120,74,-0.07034719292070726],[114,120,75,-0.08679436260926275],[114,120,76,-0.17713966704569062],[114,120,77,-0.23749361873993044],[114,120,78,-0.2308076205642782],[114,120,79,-0.2046985361441836],[114,121,64,-0.08616899044703152],[114,121,65,-0.12853764440379792],[114,121,66,-0.14244405318658995],[114,121,67,-0.11748425837353058],[114,121,68,-0.1257426184556308],[114,121,69,-0.11421883392233094],[114,121,70,-0.08314080925529245],[114,121,71,-0.10212560187865027],[114,121,72,-0.11553406738277539],[114,121,73,-0.09790107339151549],[114,121,74,-0.07063454808933989],[114,121,75,-0.08706357106361226],[114,121,76,-0.17765143568880162],[114,121,77,-0.23840692650156567],[114,121,78,-0.23233027807485562],[114,121,79,-0.2061607856345795],[114,122,64,-0.08721193090885825],[114,122,65,-0.129897422501871],[114,122,66,-0.1438512423802811],[114,122,67,-0.11864671979877366],[114,122,68,-0.12657581360303607],[114,122,69,-0.11477657626895055],[114,122,70,-0.08383678203453267],[114,122,71,-0.1030696515114385],[114,122,72,-0.11612184024629144],[114,122,73,-0.09829086939500899],[114,122,74,-0.0709093714041108],[114,122,75,-0.08730657058749157],[114,122,76,-0.17810191183852],[114,122,77,-0.23924829343429335],[114,122,78,-0.23379864141352882],[114,122,79,-0.20758312056129308],[114,123,64,-0.08824819595551754],[114,123,65,-0.1312349678828283],[114,123,66,-0.14522209820303247],[114,123,67,-0.11977880903579288],[114,123,68,-0.12737995156572418],[114,123,69,-0.11530761425928322],[114,123,70,-0.08451719892268096],[114,123,71,-0.10400071690204266],[114,123,72,-0.11669348491700716],[114,123,73,-0.09866626013866431],[114,123,74,-0.0711706395584095],[114,123,75,-0.08752223797664405],[114,123,76,-0.178489515329715],[114,123,77,-0.24001588562870907],[114,123,78,-0.2352105536623945],[114,123,79,-0.20896361859839602],[114,124,64,-0.08927655753211007],[114,124,65,-0.13254861899979864],[114,124,66,-0.1465547179832934],[114,124,67,-0.1208789629214548],[114,124,68,-0.1281540125784488],[114,124,69,-0.11581127767015717],[114,124,70,-0.08518136728594887],[114,124,71,-0.10491781357497613],[114,124,72,-0.1172482055745783],[114,124,73,-0.09902635162184907],[114,124,74,-0.07141734469916768],[114,124,75,-0.08770948996274036],[114,124,76,-0.17881275949902434],[114,124,77,-0.24070796947821033],[114,124,78,-0.23656391541143262],[114,124,79,-0.21030038653260877],[114,125,64,-0.09029577950020824],[114,125,65,-0.1338367261664916],[114,125,66,-0.14784723623983084],[114,125,67,-0.12194564989450621],[114,125,68,-0.1288970107857536],[114,125,69,-0.11628693399532826],[114,125,70,-0.08582861515150357],[114,125,71,-0.10581996153584934],[114,125,72,-0.11778521329013841],[114,125,73,-0.09937025809369443],[114,125,74,-0.07164849659206846],[114,125,75,-0.08786728577621607],[114,125,76,-0.17907025469533996],[114,125,77,-0.24132291534591638],[114,125,78,-0.23785668882001063],[114,125,79,-0.21159156375205498],[114,126,64,-0.09130461981019179],[114,126,65,-0.13509765463943707],[114,126,66,-0.14909782841150704],[114,126,67,-0.12297737305593082],[114,126,68,-0.12960799590374292],[114,126,69,-0.11673398926684816],[114,126,70,-0.08645829209477902],[114,126,71,-0.10670618679382708],[114,126,72,-0.11830372725431815],[114,126,73,-0.09969710376635225],[114,126,74,-0.07186312479600981],[114,126,75,-0.08799462964934601],[114,126,76,-0.17926071159561385],[114,126,77,-0.24185920103051384],[114,126,78,-0.23908690160700463],[114,126,79,-0.21283532574437045],[114,127,64,-0.09230183273486131],[114,127,65,-0.1363297877202219],[114,127,66,-0.15030471454200653],[114,127,67,-0.12397267318750262],[114,127,68,-0.13028605482215203],[114,127,69,-0.11715188879625589],[114,127,70,-0.08706977008371035],[114,127,71,-0.10757552289996977],[114,127,72,-0.11880297602685415],[114,127,73,-0.1000060245582229],[114,127,74,-0.07206028083875056],[114,127,75,-0.08809057324982598],[114,127,76,-0.17938294431309704],[114,127,77,-0.24231541501870585],[114,127,78,-0.24025265095742546],[114,127,79,-0.2140298875943458],[114,128,64,-0.09328617115856219],[114,128,65,-0.1375315298691943],[114,128,66,-0.15146616290850515],[114,128,67,-0.12493013171949882],[114,128,68,-0.13093031314212825],[114,128,69,-0.1175401178334413],[114,128,70,-0.08766244427777473],[114,128,71,-0.10842701249765792],[114,128,72,-0.1192821988044084],[114,128,73,-0.10029616986138899],[114,128,74,-0.07223904038567881],[114,128,75,-0.08815421803540714],[114,128,76,-0.17943587328590527],[114,128,77,-0.24269025951271556],[114,128,78,-0.2413521073336846],[114,128,79,-0.21517350747120875],[114,129,64,-0.09425638891579917],[114,129,65,-0.13870130982198572],[114,129,66,-0.15258049358339143],[114,129,67,-0.12584837363865592],[114,129,68,-0.13153993664534994],[114,129,69,-0.11789820214135789],[114,129,70,-0.0882357337799235],[114,129,71,-0.10925970888124306],[114,129,72,-0.1197406467031104],[114,129,73,-0.10056670432733958],[114,129,74,-0.07239850539363661],[114,129,75,-0.08818471752038294],[114,129,76,-0.17941852793456753],[114,129,77,-0.24298255322206141],[114,129,78,-0.2423835181798699],[114,129,79,-0.21626449009552934],[114,130,64,-0.0952112431730773],[114,130,65,-0.13983758370009525],[114,130,66,-0.15364608191828477],[114,130,67,-0.12672607032757208],[114,130,68,-0.13211413269030683],[114,130,69,-0.11822570848505905],[114,130,70,-0.08878908233966668],[114,130,71,-0.11007267755899869],[114,130,72,-0.12017758405221614],[114,130,73,-0.10081680966491453],[114,130,74,-0.07253780624172089],[114,130,75,-0.08818127944497445],[114,130,76,-0.17933004907796377],[114,130,77,-0.24319123390957162],[114,130,78,-0.2433452115076116],[114,130,79,-0.2173011901755971],[114,131,64,-0.09614949684750056],[114,131,65,-0.140938838106723],[114,131,66,-0.154661361939803],[114,131,67,-0.12756194232696486],[114,131,68,-0.1326521515318472],[114,131,69,-0.11852224503390857],[114,131,70,-0.08932195900582252],[114,131,71,-0.11086499781643537],[114,131,72,-0.12059228969521675],[114,131,73,-0.10104568644431944],[114,131,74,-0.0726561038310689],[114,131,75,-0.08814316783903214],[114,131,76,-0.1791696910979702],[114,131,77,-0.2433153606824934],[114,131,78,-0.24423559935249037],[114,131,79,-0.21828201580313686],[114,132,64,-0.09706992105548548],[114,132,65,-0.142003593199024],[114,132,66,-0.15562482964676486],[114,132,67,-0.12835476201240248],[114,132,68,-0.13315328756034084],[114,132,69,-0.11878746167613774],[114,132,70,-0.08983385872764665],[114,132,71,-0.11163576427602886],[114,132,72,-0.12098405829466727],[114,132,73,-0.10125255590097453],[114,132,74,-0.07275259164570522],[114,132,75,-0.08806970497180398],[114,132,76,-0.17893682384397153],[114,132,77,-0.24335411602039864],[114,132,78,-0.24505318109025104],[114,132,79,-0.21920543179817506],[114,133,64,-0.09797129758473637],[114,133,65,-0.14303040572790396],[114,133,66,-0.15653504619874],[114,133,67,-0.12910335617732988],[114,133,68,-0.13361688045704537],[114,133,69,-0.1190210502452324],[114,133,70,-0.09032430290324509],[114,133,71,-0.11238408844936562],[114,133,72,-0.12135220163690782],[114,133,73,-0.10143666173286857],[114,133,74,-0.07282649776660487],[114,133,75,-0.08796027317988225],[114,133,76,-0.1786309342692991],[114,133,77,-0.24330680753244976],[114,133,78,-0.24579654660243574],[114,133,79,-0.2200699629928683],[114,134,64,-0.09885242138250822],[114,134,65,-0.14401787203653219],[114,134,66,-0.15739064098618002],[114,134,67,-0.1298066085145047],[114,134,68,-0.13404231626256916],[114,134,69,-0.11922274465799432],[114,134,70,-0.09079283987441922],[114,134,71,-0.11310910027774224],[114,134,72,-0.12169604993283947],[114,134,73,-0.10159727188507604],[114,134,74,-0.07287708683129132],[114,134,75,-0.0878143165658847],[114,134,76,-0.17825162779262388],[114,134,77,-0.2431728694375537],[114,134,78,-0.24646437928150636],[114,134,79,-0.22087419744419381],[114,135,64,-0.09971210305305872],[114,135,65,-0.14496463100879717],[114,135,66,-0.15819031457268642],[114,135,67,-0.13046346198823713],[114,135,68,-0.134429028355587],[114,135,69,-0.11939232096443075],[114,135,70,-0.09123904536728761],[114,135,71,-0.11380994965726333],[114,135,72,-0.12201495311087443],[114,135,73,-0.10173368031506957],[114,135,74,-0.07290366193143417],[114,135,75,-0.08763134256084142],[114,135,76,-0.17779862937826732],[114,135,77,-0.24295186376182343],[114,135,78,-0.2470554588659263],[114,135,79,-0.22161678956544523],[114,136,64,-0.10054917135705209],[114,136,65,-0.14586936695897704],[114,136,66,-0.15893284150030376],[114,136,67,-0.13107292109012308],[114,136,68,-0.13477649833924377],[114,136,69,-0.11952959730994252],[114,136,70,-0.09166252287822821],[114,136,71,-0.11448580794448217],[114,136,72,-0.1223082820981339],[114,136,73,-0.10184520873244189],[114,136,74,-0.07290556644108215],[114,136,75,-0.08741092334372087],[114,136,76,-0.17727178433038196],[114,136,77,-0.2426434812487409],[114,136,78,-0.24756866409615874],[114,136,79,-0.22229646316661225],[114,137,64,-0.10136247570563604],[114,137,65,-0.14673081245404324],[114,137,66,-0.15961707294914254],[114,137,67,-0.13163405397132022],[114,137,68,-0.13508425683298722],[114,137,69,-0.11963443381060047],[114,137,70,-0.09206290400490268],[114,137,71,-0.1151358694386902],[114,137,72,-0.12257543008598938],[114,137,73,-0.101931208306705],[114,137,74,-0.07288218576839865],[114,137,75,-0.08715269711201973],[114,137,76,-0.1766710587969546],[114,137,77,-0.24224754197836695],[114,137,78,-0.24800297518303246],[114,137,79,-0.22291201439385805],[114,138,64,-0.1021508886418412],[114,138,65,-0.14754775106013887],[114,138,66,-0.16024193924304464],[114,138,67,-0.13214599444477337],[114,138,68,-0.1353518841678671],[114,138,69,-0.11970673234261306],[114,138,70,-0.09243984872232648],[114,138,71,-0.11575935283700149],[114,138,72,-0.1228158137760368],[114,138,73,-0.10199106133687727],[114,138,74,-0.0728329490240007],[114,138,75,-0.08685636919785823],[114,138,76,-0.17599653998060127],[114,138,77,-0.24176399569293325],[114,138,78,-0.24835747608047062],[114,138,79,-0.22346231455851712],[114,139,64,-0.10291330830190315],[114,139,65,-0.14831902000491973],[114,139,66,-0.16080645219342968],[114,139,67,-0.1326079438511603],[114,139,68,-0.13557901098362304],[114,139,69,-0.11974643624736281],[114,139,70,-0.09279304560412431],[114,139,71,-0.11635550265841339],[114,139,72,-0.1230288746025924],[114,139,73,-0.10202418287662705],[114,139,74,-0.07275733059925282],[114,139,75,-0.08652171302453379],[114,139,76,-0.1752484360541375],[114,139,77,-0.2411929218271163],[114,139,78,-0.24863135655511293],[114,139,79,-0.22394631284622507],[114,140,64,-0.10364866084913861],[114,140,65,-0.14904351274767885],[114,140,66,-0.16130970727396565],[114,140,67,-0.13301917278275777],[114,140,68,-0.13576531872620226],[114,140,69,-0.11975352995369269],[114,140,70,-0.09312221198931976],[114,140,71,-0.116923590633125],[114,140,72,-0.12321407992785924],[114,140,73,-0.10203002230886182],[114,140,74,-0.07265485164816697],[114,140,75,-0.0861485708990432],[114,140,76,-0.17442707577992894],[114,140,77,-0.24053452924227994],[114,140,78,-0.24882391404595192],[114,140,79,-0.22436303889706208],[114,141,64,-0.10435590287299487],[114,141,65,-0.1497201814493666],[114,141,66,-0.16175088561917822],[114,141,67,-0.13337902265983959],[114,141,68,-0.1359105400446522],[114,141,69,-0.11972803851940075],[114,141,70,-0.09342709409518908],[114,141,71,-0.11746291705345165],[114,141,72,-0.12337092420593895],[114,141,73,-0.10200806486376533],[114,141,74,-0.07252508146687876],[114,141,75,-0.08573685463666499],[114,141,76,-0.1735329078330863],[114,141,77,-0.23978915566497286],[114,141,78,-0.2489345553077259],[114,141,79,-0.22471160524789174],[114,142,64,-0.1050340237459549],[114,142,65,-0.150348039334887],[114,142,66,-0.16212925584064813],[114,142,67,-0.13368690715465767],[114,142,68,-0.1360144590866248],[114,142,69,-0.11967002709414382],[114,142,70,-0.0937074670768699],[114,142,71,-0.1179728120827696],[114,142,72,-0.123498930111923],[114,142,73,-0.1019578330744233],[114,142,74,-0.07236763876498299],[114,142,75,-0.0852865460142406],[114,142,76,-0.17256649982955355],[114,142,77,-0.23895726683091523],[114,142,78,-0.24896279783240474],[114,142,79,-0.22499120962836752],[114,143,64,-0.10568204793104866],[114,143,65,-0.15092616294032235],[114,143,66,-0.16244417565498298],[114,143,67,-0.1339423134585245],[114,143,68,-0.13607691169204778],[114,143,69,-0.11957960030622171],[114,143,70,-0.09396313503460284],[114,143,71,-0.11845263701902635],[114,143,72,-0.12359764963237505],[114,143,73,-0.10187888816436101],[114,143,74,-0.07218219282339287],[114,143,75,-0.08479769704941754],[114,143,76,-0.17152853706119053],[114,143,77,-0.2380394553367004],[114,143,78,-0.24890827104377958],[114,143,79,-0.22520113710246117],[114,144,64,-0.1062990372328113],[114,144,65,-0.15145369423803892],[114,144,66,-0.16269509331831503],[114,144,67,-0.13414480338798426],[114,144,68,-0.13609778548481702],[114,144,69,-0.11945690157593823],[114,144,70,-0.09419393096963098],[114,144,71,-0.11890178550945607],[114,144,72,-0.12366666511358791],[114,144,73,-0.10177083136149226],[114,144,74,-0.07196846453375208],[114,144,75,-0.08427043010370887],[114,144,76,-0.17041982094095678],[114,144,77,-0.237036439202394],[114,144,78,-0.24877071726082353],[114,144,79,-0.22534076204774878],[114,145,64,-0.10688409298468281],[114,145,65,-0.1519298426329825],[114,145,66,-0.1628815488626683],[114,145,67,-0.13429401432655286],[114,145,68,-0.13607701986265833],[114,145,69,-0.11930211235845344],[114,145,70,-0.09439971668994161],[114,145,71,-0.11931968471327331],[114,145,72,-0.12370559026411537],[114,145,73,-0.10163330513321721],[114,145,74,-0.07172622731484353],[114,145,75,-0.08370493780784023],[114,145,76,-0.16924126716228557],[114,145,77,-0.23594906014913827],[114,145,78,-0.2485499924261712],[114,145,79,-0.22540954996510568],[114,146,64,-0.10743635816593687],[114,146,65,-0.15235388682377374],[114,146,66,-0.1630031751301144],[114,146,67,-0.1343896599990023],[114,146,68,-0.13601460588561967],[114,146,69,-0.1191154513192597],[114,146,70,-0.09458038266717117],[114,146,71,-0.11970579640922231],[114,146,72,-0.12371407110816099],[114,146,73,-0.10146599433760459],[114,146,74,-0.07145530790182293],[114,146,75,-0.0831014828084667],[114,146,76,-0.16799390357774233],[114,146,77,-0.234778281596822],[114,146,78,-0.24824606659674917],[114,146,79,-0.22540705911190226],[114,147,64,-0.10795501944147641],[114,147,65,-0.15272517652266346],[114,147,66,-0.1630596986012784],[114,147,67,-0.13443153107567765],[114,147,68,-0.13591058606392176],[114,147,69,-0.11889717344558025],[114,147,70,-0.09473584784612706],[114,147,71,-0.12005961804502606],[114,147,72,-0.123691786886551],[114,147,73,-0.10126862728589602],[114,147,74,-0.07115558700459063],[114,147,75,-0.08246039733598426],[114,147,76,-0.16667886780299296],[114,147,77,-0.23352518638774297],[114,147,78,-0.24785902419432024],[114,147,79,-0.2253329419523034],[114,148,64,-0.1084393091179757],[114,148,65,-0.15304313402874978],[114,148,66,-0.16305094001536385],[114,148,67,-0.13441949560485955],[114,148,68,-0.13576505404620903],[114,148,69,-0.11864756909718244],[114,148,70,-0.0948660594085071],[114,148,71,-0.12038068372590521],[114,148,72,-0.12363845090214069],[114,148,73,-0.10104097671181349],[114,148,74,-0.07082699983202231],[114,148,75,-0.0817820825937699],[114,148,76,-0.16529740455306235],[114,148,77,-0.23219097424309698],[114,148,78,-0.24738906401439292],[114,148,79,-0.22518694641874387],[114,149,64,-0.10888850701009599],[114,149,65,-0.15330725564930764],[114,149,66,-0.16297681477950268],[114,149,67,-0.1343534992717006],[114,149,68,-0.1355781542095037],[114,149,69,-0.11836696300024127],[114,149,70,-0.09497099249250052],[114,149,71,-0.12066856513949674],[114,149,72,-0.12355381130664395],[114,149,73,-0.10078286064345945],[114,149,74,-0.07046953647926653],[114,149,75,-0.08106700796982313],[114,149,76,-0.16385086271876592],[114,149,77,-0.23077695895996597],[114,149,78,-0.2468364989926918],[114,149,79,-0.2249689169792189],[114,150,64,-0.10930194221076495],[114,150,65,-0.15351711296453135],[114,150,66,-0.16283733316589635],[114,150,67,-0.13423356548280915],[114,150,68,-0.1353500811524458],[114,150,69,-0.11805571318802179],[114,150,70,-0.0950506498700618],[114,150,71,-0.1209228724146736],[114,150,72,-0.12343765182604521],[114,150,73,-0.10049414317392015],[114,150,74,-0.07008324217578958],[114,150,75,-0.08031571007238994],[114,150,76,-0.16234069219205188],[114,150,77,-0.22928456535727829],[114,150,78,-0.24620175572909053],[114,150,79,-0.22467879550556075],[114,151,64,-0.10967899475975867],[114,151,65,-0.15367235393143086],[114,151,66,-0.16263260029584523],[114,151,67,-0.13405979527607734],[114,151,68,-0.13508107909366798],[114,151,69,-0.11771420989227949],[114,151,70,-0.09510506158373705],[114,151,71,-0.12114325491192192],[114,151,72,-0.12328979242190255],[114,151,73,-0.1001747351270049],[114,151,74,-0.06966821739234132],[114,151,75,-0.07952879159179214],[114,151,76,-0.16076844044986663],[114,151,77,-0.22771532598003044],[114,151,78,-0.24548537376966595],[114,151,79,-0.22431662193848811],[114,152,64,-0.11001909720514222],[114,152,65,-0.1537727038231201],[114,152,66,-0.16236281591043433],[114,152,67,-0.13383236705589172],[114,152,68,-0.1347714411774012],[114,152,69,-0.11734287438936229],[114,152,70,-0.09513428454499626],[114,152,71,-0.12132940194312163],[114,152,72,-0.12311008988603707],[114,152,73,-0.09982459461490778],[114,152,74,-0.069224617805507],[114,152,75,-0.07870691999127118],[114,152,76,-0.15913574890691362],[114,152,77,-0.22607087757176747],[114,152,78,-0.24468800464822785],[114,152,79,-0.22388253474578382],[114,153,64,-0.11032173605243642],[114,153,65,-0.15381796600022707],[114,153,66,-0.162028273928296],[114,153,67,-0.13355153615440343],[114,153,68,-0.13442150868866345],[114,153,69,-0.11694215780509101],[114,153,70,-0.09513840209610068],[114,153,71,-0.12148104341875345],[114,153,72,-0.12289843836628898],[114,153,73,-0.09944372748494706],[114,153,74,-0.06875265411902637],[114,153,75,-0.07785082603027779],[114,153,76,-0.15744434904847368],[114,153,77,-0.224352957326054],[114,153,78,-0.24381041068944012],[114,153,79,-0.22337677117061466],[114,154,64,-0.11058645309670832],[114,154,65,-0.15380802251164796],[114,154,66,-0.16162936179151882],[114,154,67,-0.13321763422006205],[114,154,68,-0.1340316701806092],[114,154,69,-0.11651253988255325],[114,154,70,-0.09511752353758175],[114,154,71,-0.12159795042074023],[114,154,72,-0.12265476982120145],[114,154,73,-0.09903218765290041],[114,154,74,-0.06825259174156548],[114,154,75,-0.0769613021242209],[114,154,76,-0.15569605835514871],[114,154,77,-0.22256339892831964],[114,154,78,-0.2428534635763478],[114,154,79,-0.2227996672676316],[114,155,64,-0.11081284663316536],[114,155,65,-0.1537428345224204],[114,155,66,-0.16116655960144075],[114,155,67,-0.13283106843515355],[114,155,68,-0.13360236051684563],[114,155,69,-0.11605452771698467],[114,155,70,-0.09507178362345946],[114,155,71,-0.12167993569933527],[114,155,72,-0.12237905440171665],[114,155,73,-0.0985900773208621],[114,155,74,-0.06772475032114554],[114,155,75,-0.07603920054526067],[114,155,76,-0.15389277603206],[114,155,77,-0.22070412840007692],[114,155,78,-0.2418181426858469],[114,155,79,-0.222151657725149],[114,156,64,-0.11100057254218242],[114,156,65,-0.15362244256698773],[114,156,66,-0.1606404390466975],[114,156,67,-0.13239232056460218],[114,156,68,-0.1331340598317316],[114,156,69,-0.11556865446194907],[114,156,70,-0.09500134202635913],[114,156,71,-0.12172685409265493],[114,156,72,-0.12207130075815449],[114,156,73,-0.09811754707793342],[114,156,74,-0.06716950313695619],[114,156,75,-0.07508543146931047],[114,156,76,-0.15203647855567134],[114,156,77,-0.2187771597581002],[114,156,78,-0.24070553319634838],[114,156,79,-0.22143327547238406],[114,157,64,-0.11114934524511144],[114,157,65,-0.15344696662669507],[114,157,66,-0.16005166212654995],[114,157,67,-0.13190194583881357],[114,157,68,-0.1326272924118717],[114,157,69,-0.11505547801101958],[114,157,70,-0.09490638277470514],[114,157,71,-0.12173860286766498],[114,157,72,-0.1217315562709757],[114,157,73,-0.09761479588247447],[114,157,74,-0.06658727634978738],[114,157,75,-0.07410096087492728],[114,157,76,-0.1501292150519483],[114,157,77,-0.2167845905016561],[114,157,78,-0.23951682397256452],[114,157,79,-0.2206451510714089],[114,158,64,-0.11125893852762174],[114,158,65,-0.15321660603089304],[114,158,66,-0.1594009796731413],[114,158,67,-0.1313605716738452],[114,158,68,-0.13208262550220828],[114,158,69,-0.11451557965916545],[114,158,70,-0.09478711366418964],[114,158,71,-0.12171512198163455],[114,158,72,-0.12135990720404931],[114,158,73,-0.09708207092506552],[114,158,74,-0.06597854811284543],[114,158,75,-0.07308680830031918],[114,158,76,-0.14817310252010496],[114,158,77,-0.21472859694137128],[114,158,78,-0.23825330523304272],[114,158,79,-0.2197880118941667],[114,159,64,-0.1113291862277457],[114,159,65,-0.15293163918157782],[114,159,66,-0.15868922967695678],[114,159,67,-0.130768896232685],[114,159,68,-0.1315006680402869],[114,159,69,-0.11394956274801825],[114,159,70,-0.09464376564570981],[114,159,71,-0.12165639426327392],[114,159,72,-0.12095647877936351],[114,159,73,-0.09651966737174238],[114,159,74,-0.06534384754522142],[114,159,75,-0.07204404446518795],[114,159,76,-0.14617032091664708],[114,159,77,-0.21261142938374433],[114,159,78,-0.23691636600673383],[114,159,79,-0.21886268108561563],[114,160,64,-0.11135998278625149],[114,160,65,-0.15259242310205895],[114,160,66,-0.1579173354203593],[114,160,67,-0.13012768683189344],[114,160,68,-0.13088206932241242],[114,160,69,-0.11335805129912697],[114,160,70,-0.0944765921919522],[114,160,71,-0.12156244551298752],[114,160,72,-0.12052143517235708],[114,160,73,-0.09592792798750181],[114,160,74,-0.06468375357078382],[114,160,75,-0.07097378876458751],[114,160,76,-0.1441231081147971],[114,160,77,-0.2104354071856522],[114,160,78,-0.23550749138549917],[114,160,79,-0.21787007631472524],[114,161,64,-0.11135128365740779],[114,161,65,-0.15219939281069939],[114,161,66,-0.15708630342467503],[114,161,67,-0.1294377781983493],[114,161,68,-0.13022751760558846],[114,161,69,-0.11274168863928187],[114,161,70,-0.09428586864480189],[114,161,71,-0.1214333445218867],[114,161,72,-0.1200549794272805],[114,161,73,-0.09530724264050784],[114,161,74,-0.063998893625784],[114,161,75,-0.06987720664246248],[114,161,76,-0.14203375475478439],[114,161,77,-0.20820291369357216],[114,161,78,-0.23402825958014012],[114,161,79,-0.21681120831581882],[114,162,64,-0.11130310557867885],[114,162,65,-0.15175306052133838],[114,162,66,-0.15619722121687302],[114,162,67,-0.12870007058127755],[114,162,68,-0.12953773864923107],[114,162,69,-0.11210113602187494],[114,162,70,-0.09407189154570827],[114,162,71,-0.12126920300942237],[114,162,72,-0.1195573532922369],[114,162,73,-0.09465804768786075],[114,162,74,-0.06328994223893546],[114,162,75,-0.06875550685292244],[114,162,76,-0.13990459900072494],[114,162,77,-0.2059163910824507],[114,162,78,-0.23248033878807842],[114,162,79,-0.21568717922340072],[114,163,64,-0.11121552669834486],[114,163,65,-0.1512540146725499],[114,163,66,-0.1552512549224219],[114,163,67,-0.12791552772516876],[114,163,68,-0.1288134942007731],[114,163,69,-0.11143707124818185],[114,163,70,-0.09383497795110328],[114,163,71,-0.12107017547969616],[114,163,72,-0.11902883697377745],[114,163,73,-0.09398082524421231],[114,163,74,-0.06255761948820812],[114,163,75,-0.0676099386177108],[114,163,76,-0.1377380212200584],[114,163,77,-0.20357833510938364],[114,163,78,-0.23086548388142042],[114,163,79,-0.21449918070433238],[114,164,64,-0.1110886865605274],[114,164,65,-0.1507029187884473],[114,164,66,-0.15424964669145752],[114,164,67,-0.12708517470963096],[114,164,68,-0.12805558042938486],[114,164,69,-0.11075018729235153],[114,164,70,-0.09357546473493544],[114,164,71,-0.12083645899674245],[114,164,72,-0.1184697488111823],[114,164,73,-0.09327610233495627],[114,164,74,-0.06180268933905833],[114,164,75,-0.06644178868870672],[114,164,76,-0.1355364386016965],[114,164,77,-0.20119128979743117],[114,164,78,-0.22918553292469376],[114,164,79,-0.21324849189192413],[114,165,64,-0.11092278594759764],[114,165,65,-0.1501005101743062],[114,165,66,-0.15319371196589632],[114,165,67,-0.12621009566259567],[114,165,68,-0.12726482631210584],[114,165,69,-0.1100411909337442],[114,165,70,-0.09329370788031369],[114,165,71,-0.120568292879279],[114,165,72,-0.11788044487079516],[114,165,73,-0.09254444993614412],[114,165,74,-0.06102595786925044],[114,165,75,-0.06525237832460387],[114,165,76,-0.1333022997291092],[114,165,77,-0.19875784206496896],[114,165,78,-0.2274424035320474],[114,165,79,-0.21193647712717412],[114,166,64,-0.1107180865803905],[114,166,65,-0.14944759845076874],[114,166,66,-0.1520848365955908],[114,166,67,-0.12529143135366602],[114,166,68,-0.12644209197675263],[114,166,69,-0.10931080140013211],[114,166,70,-0.09299008176219495],[114,166,71,-0.12026595831561662],[114,166,72,-0.1172613184609961],[114,166,73,-0.09178648190367743],[114,166,74,-0.060228271385855375],[114,166,75,-0.06404306019122157],[114,166,76,-0.1310380791246453],[114,166,77,-0.1962806163160262],[114,166,78,-0.2256380890742022],[114,166,79,-0.21056458351306426],[114,167,64,-0.11047491067719364],[114,167,65,-0.1487450639309804],[114,167,66,-0.15092447381211882],[114,167,67,-0.12433037667476718],[114,167,68,-0.12558826700603543],[114,167,69,-0.10855974902513309],[114,167,70,-0.092664978422993],[114,167,71,-0.1199297778996639],[114,167,72,-0.11661279956867618],[114,167,73,-0.09100285379477807],[114,167,74,-0.059410514440449466],[114,167,75,-0.06281521519517212],[114,167,76,-0.12874627178136638],[114,167,77,-0.19376226900705906],[114,167,78,-0.22377465474591254],[114,167,79,-0.20913433828849703],[114,168,64,-0.11019364037291814],[114,168,65,-0.14799385584546837],[114,168,66,-0.14971414106917755],[114,168,67,-0.12332817801555268],[114,168,68,-0.12470426870733126],[114,168,69,-0.10778877392306588],[114,168,70,-0.09231880684289241],[114,168,71,-0.11956011508913159],[114,168,72,-0.11593535421826934],[114,168,73,-0.09019426158510216],[114,168,74,-0.05857360774889809],[114,168,75,-0.06157024926081861],[114,168,76,-0.12642938769857753],[114,168,77,-0.19120548320550879],[114,168,78,-0.2218542335050914],[114,168,79,-0.20764734602906948],[114,169,64,-0.10987471700037482],[114,169,65,-0.1471949904201099],[114,169,66,-0.1484554167589897],[114,169,67,-0.12228613054135086],[114,169,68,-0.12379104035261418],[114,169,69,-0.10699862468427289],[114,169,70,-0.09195199220659105],[114,169,71,-0.11915737358727244],[114,169,72,-0.1152294837546616],[114,169,73,-0.08936144028528678],[114,169,74,-0.05771850602251297],[114,169,75,-0.06030959006067503],[114,169,76,-0.12408994643714215],[114,169,77,-0.18861296315541917],[114,169,78,-0.21987902189518926],[114,169,79,-0.206105285682545],[114,170,64,-0.10951864023605169],[114,170,65,-0.14634954881299808],[114,170,66,-0.14714993681445576],[114,170,67,-0.12120557538166922],[114,170,68,-0.12284954939300974],[114,170,69,-0.10619005709373275],[114,170,70,-0.09156497516807996],[114,170,71,-0.11872199664966776],[114,170,72,-0.11449572405149828],[114,170,73,-0.08850516246107053],[114,170,74,-0.05684619571768135],[114,170,75,-0.0590346837095116],[114,170,76,-0.12173047171041047],[114,170,77,-0.1859874288651407],[114,170,78,-0.21785127576270152],[114,170,79,-0.20450990744742503],[114,171,64,-0.10912596711327102],[114,171,65,-0.14545867491650089],[114,171,66,-0.14579939120715366],[114,171,67,-0.12008789673756347],[114,171,68,-0.12188078565248449],[114,171,69,-0.10536383287564538],[114,171,70,-0.09115821111501679],[114,171,71,-0.11825446631778906],[114,171,72,-0.11373464464665832],[114,171,73,-0.08762623666152855],[114,171,74,-0.05595769271143516],[114,171,75,-0.057746991432605976],[114,171,76,-0.11935348602641811],[114,171,77,-0.1833316107320067],[114,171,78,-0.21577330588207716],[114,171,79,-0.20286302950367363],[114,172,64,-0.10869731090607967],[114,172,65,-0.14452357303124597],[114,172,66,-0.14440552035155926],[114,172,67,-0.11893451891635806],[114,172,68,-0.12088575950511904],[114,172,69,-0.10452071846643166],[114,172,70,-0.0907321694341243],[114,172,71,-0.11775530258124359],[114,172,72,-0.1129468478068677],[114,172,73,-0.08672550576028903],[114,172,74,-0.05505403991068911],[114,172,75,-0.05644798621860401],[114,172,76,-0.11696150539663265],[114,172,77,-0.1806482442185138],[114,172,78,-0.21364747350050575],[114,172,79,-0.20116653460513262],[114,173,64,-0.10823333988767352],[114,173,65,-0.1435455054191862],[114,173,66,-0.1429701114261241],[114,173,67,-0.1177469033024004],[114,173,68,-0.11986550004038983],[114,173,69,-0.1036614838183991],[114,173,70,-0.09028733277895293],[114,173,71,-0.11722506247077973],[114,173,72,-0.11213296752362488],[114,173,73,-0.08580384521493219],[114,173,74,-0.0541363048031485],[114,173,75,-0.055139149467511604],[114,173,76,-0.1145570341261867],[114,173,77,-0.1779400645942382],[114,173,78,-0.2114761858153278],[114,173,79,-0.1994223665437138],[114,174,64,-0.1077347759676287],[114,174,65,-0.1425257897433208],[114,174,66,-0.1414949946220931],[114,174,67,-0.11652654527270738],[114,174,68,-0.11882105322085348],[114,174,69,-0.10278690123613256],[114,174,70,-0.08982419634126729],[114,174,71,-0.11666433908434223],[114,174,72,-0.11129366844283989],[114,174,73,-0.08486216125011016],[114,174,74,-0.053205576958157294],[114,174,75,-0.0538219676443668],[114,174,76,-0.11214255970014268],[114,174,77,-0.17520980175736886],[114,174,78,-0.20926189139702597],[114,174,79,-0.19763252649596266],[114,175,64,-0.10720239321265182],[114,175,65,-0.1414657964020302],[114,175,66,-0.13998203933111888],[114,175,67,-0.11527497106646908],[114,175,68,-0.11775348003654176],[114,175,69,-0.10189774424743188],[114,175,70,-0.08934326712719767],[114,175,71,-0.11607376054861492],[114,175,72,-0.11042964473077002],[114,175,73,-0.08390138897020773],[114,175,74,-0.05226296548593802],[114,175,75,-0.05249792894906428],[114,175,76,-0.10972054777981943],[114,175,77,-0.17246017514926926],[114,175,78,-0.20700707557088066],[114,175,79,-0.19579906926301463],[114,176,64,-0.10663701625595357],[114,176,65,-0.1403669457663024],[114,176,66,-0.13843315028287118],[114,176,67,-0.11399373461746745],[114,176,68,-0.11666385466030117],[114,176,69,-0.10099478651040249],[114,176,70,-0.08884506323918437],[114,176,71,-0.11545398891863864],[114,176,72,-0.1095416188790002],[114,176,73,-0.08292249040762112],[114,176,74,-0.05130959646385486],[114,176,75,-0.05116852001274493],[114,176,76,-0.10729343732271791],[114,176,77,-0.16969388877504024],[114,176,78,-0.20471425577048805],[114,176,79,-0.19392409941539207],[114,177,64,-0.10603951860082697],[114,177,65,-0.13923070532852608],[114,177,66,-0.1368502636439919],[114,177,67,-0.11268441435856194],[114,177,68,-0.11555326260824618],[114,177,69,-0.10007880075811097],[114,177,70,-0.08833011316468183],[114,177,71,-0.1148057190183027],[114,177,72,-0.10863034045144947],[114,177,73,-0.08192645251304037],[114,177,74,-0.05034661033852029],[114,177,75,-0.04983522263107151],[114,177,76,-0.10486363583902282],[114,177,77,-0.16691362634255694],[114,177,78,-0.20238597687645324],[114,177,79,-0.19200976735451636],[114,178,64,-0.10541082082433884],[114,178,65,-0.13805858677176622],[114,178,66,-0.13523534308979362],[114,178,67,-0.11134861000740988],[114,178,68,-0.11442279890937418],[114,178,69,-0.09915055778197379],[114,178,70,-0.08779895507244743],[114,178,71,-0.11412967722459831],[114,178,72,-0.10769658477649195],[114,178,73,-0.0809142850942882],[114,178,74,-0.049375159312627356],[114,178,75,-0.04849951054452405],[114,178,76,-0.10243351479703794],[114,178,77,-0.16412204653189547],[114,178,78,-0.20002480655354699],[114,178,79,-0.19005826530309536],[114,179,64,-0.1047518886874578],[114,179,65,-0.13685214296873877],[114,179,66,-0.13359037586013622],[114,179,67,-0.10998793934257974],[114,179,68,-0.11327356628827415],[114,179,69,-0.09821082545482641],[114,179,70,-0.08725213611714942],[114,179,71,-0.11342662019869239],[114,179,72,-0.10674115158746529],[114,179,73,-0.0798870187105106],[114,179,74,-0.04839640472551548],[114,179,75,-0.04716284627568392],[114,179,76,-0.10000540518924446],[114,179,77,-0.16132177840646947],[114,179,78,-0.19763333059963972],[114,179,79,-0.18807182323691288],[114,180,64,-0.10406373115830136],[114,180,65,-0.1356129649199589],[114,180,66,-0.13191736881094604],[114,180,67,-0.10860403497922638],[114,180,68,-0.11210667336476428],[114,180,69,-0.09726036779442473],[114,180,70,-0.08669021175295098],[114,180,71,-0.11269733356702359],[114,180,72,-0.10576486361499726],[114,180,73,-0.07884570252869996],[114,180,74,-0.047411514436519406],[114,180,75,-0.04582667803325156],[114,180,76,-0.09758159327001362],[114,180,77,-0.15851541697660526],[114,180,78,-0.1952141483196622],[114,180,79,-0.18605270477077832],[114,181,64,-0.10334739835550208],[114,181,65,-0.13434267864073354],[114,181,66,-0.1302183444727899],[114,181,67,-0.10719854115342022],[114,181,68,-0.11092323287414843],[114,181,69,-0.09629994406790106],[114,181,70,-0.08611374505660958],[114,181,71,-0.1119426305557245],[114,181,72,-0.10476856513469146],[114,181,73,-0.07779140214967255],[114,181,74,-0.04642166022017388],[114,181,75,-0.04449243669228992],[114,181,76,-0.09516431647526992],[114,181,77,-0.15570551892564147],[114,181,78,-0.1927698679377683],[114,181,79,-0.18400320301165793],[114,182,64,-0.10260397941901002],[114,182,65,-0.1330429420068464],[114,182,66,-0.12849533712782452],[114,182,67,-0.10577311052411689],[114,182,68,-0.10972435991161557],[114,182,69,-0.0953303079374642],[114,182,70,-0.08552330606052845],[114,182,71,-0.11116335058178253],[114,182,72,-0.10375312047383185],[114,182,73,-0.07672519741074213],[114,182,74,-0.04542801518230858],[114,182,75,-0.043161532859858256],[114,182,76,-0.09275575953360506],[114,182,77,-0.15289459850790824],[114,182,78,-0.1903031020606921],[114,182,79,-0.181925636392135],[114,183,64,-0.10183460031596864],[114,183,65,-0.13171544156897716],[114,183,66,-0.12675038891637885],[114,183,67,-0.1043294010016858],[114,183,68,-0.10851117020420827],[114,183,69,-0.09435220664747118],[114,183,70,-0.0849194710961458],[114,183,71,-0.11036035780449767],[114,183,72,-0.10271941248090988],[114,183,73,-0.0756481801724782],[114,183,74,-0.04443175120607612],[114,183,75,-0.04183535403494041],[114,183,76,-0.09035805077761942],[114,183,77,-0.15008512362732235],[114,183,78,-0.18781646320519133],[114,183,79,-0.17982234449756915],[114,184,64,-0.10104042158953082],[114,184,65,-0.13036188934597043],[114,184,66,-0.12498554598423647],[114,184,67,-0.10286907261173235],[114,184,68,-0.1072847784135838],[114,184,69,-0.09336638025275594],[114,184,70,-0.08430282214792409],[114,184,71,-0.10953453964084087],[114,184,72,-0.10166834096183015],[114,184,73,-0.07456145209696946],[114,184,74,-0.04343403643683217],[114,184,75,-0.04051526187116773],[114,184,76,-0.0879732586634082],[114,184,77,-0.14727951210455137],[114,184,78,-0.18531255940220515],[114,184,79,-0.17769568390036047],[114,185,64,-0.10022263605874678],[114,185,65,-0.12898401960718597],[114,185,66,-0.12320285468151752],[114,185,67,-0.10139378440277518],[114,185,68,-0.10604629647262738],[114,185,69,-0.0923735608879017],[114,185,70,-0.08367394621812291],[114,185,71,-0.1086868052484208],[114,185,72,-0.10060082108674988],[114,185,73,-0.07346612242507335],[114,185,74,-0.04243603281468366],[114,185,75,-0.03920258955045172],[114,185,76,-0.08560338850526178],[114,185,77,-0.14448012813995617],[114,185,78,-0.18279398989010748],[114,185,79,-0.17554802401478845],[114,186,64,-0.09938246647787523],[114,186,65,-0.12758358565422187],[114,186,66,-0.12140435782386083],[114,186,67,-0.09990519140617664],[114,186,68,-0.10479683195883956],[114,186,69,-0.09137447207699004],[114,186,70,-0.08303343470249162],[114,186,71,-0.10781808397985405],[114,186,72,-0.09951778177158659],[114,186,73,-0.07236330576018032],[114,186,74,-0.041438893663417256],[114,186,75,-0.03789863927528052],[114,186,76,-0.08325037943185773],[114,186,77,-0.14168927897881833],[114,186,78,-0.18026334090919657],[114,186,79,-0.17338174298595052],[114,187,64,-0.09852116316366337],[114,187,65,-0.12616235661232683],[114,187,66,-0.11959209102634151],[114,187,67,-0.0984049416564624],[114,187,68,-0.1035374865072034],[114,187,69,-0.09036982808313873],[114,187,70,-0.08238188277691787],[114,187,71,-0.10692932381238078],[114,187,72,-0.09842016403827013],[114,187,73,-0.07125411986599114],[114,187,74,-0.04044376134431687],[114,187,75,-0.03660467988694658],[114,187,76,-0.08091610156928618],[114,187,77,-0.13890921178452809],[114,187,78,-0.17772318160920017],[114,187,79,-0.17119922362624618],[114,188,64,-0.09764000159928095],[114,188,65,-0.12472211424178752],[114,188,66,-0.11776807912026191],[114,188,67,-0.09689467327990932],[114,188,68,-0.10226935426504817],[114,188,69,-0.08936033329695905],[114,188,70,-0.08171988879498954],[114,188,71,-0.1060214897566007],[114,188,72,-0.09730891935783037],[114,188,73,-0.07013968348576265],[114,188,74,-0.03945176498317476],[114,188,75,-0.03532194461651813],[114,188,76,-0.07860235345538136],[114,188,77,-0.13614211072463292],[114,188,78,-0.17517606008121842],[114,188,79,-0.16900284941278032],[114,189,64,-0.09674028002377745],[114,189,65,-0.12326464977958818],[114,189,66,-0.1159343326626887],[114,189,67,-0.09537601165905238],[114,189,68,-0.10099352039128434],[114,189,69,-0.08834668166294586],[114,189,70,-0.08104805369641499],[114,189,71,-0.10509556224829401],[114,189,72,-0.09618500798048998],[114,189,73,-0.06902111419046439],[114,189,74,-0.038464018278621497],[114,189,75,-0.034051628974932205],[114,189,76,-0.07631085968898885],[114,189,77,-0.1333900942739159],[114,189,78,-0.17262449952520428],[114,189,79,-0.16679500055899812],[114,190,64,-0.0958233170160224],[114,190,65,-0.12179176082154249],[114,190,66,-0.11409284454822674],[114,190,67,-0.0938505666804108],[114,190,68,-0.09971105960213379],[114,190,69,-0.08732955614259628],[114,190,70,-0.08036698042614426],[114,190,71,-0.10415253552727993],[114,190,72,-0.09504939725689261],[114,190,73,-0.06789952626316503],[114,190,74,-0.03748161739960409],[114,190,75,-0.03279488878803447],[114,190,76,-0.07404326881683886],[114,190,77,-0.13065521273780678],[114,190,78,-0.17007099456360014],[114,190,79,-0.16457805017364263],[114,191,64,-0.0948904490821533],[114,191,65,-0.12030524825498713],[114,191,66,-0.11224558673215396],[114,191,67,-0.0923199300724282],[114,191,68,-0.09842303476530223],[114,191,69,-0.08630962821292469],[114,191,70,-0.0796772733639867],[114,191,71,-0.10319341600727747],[114,191,72,-0.09390305995459174],[114,191,73,-0.06677602862685272],[114,191,74,-0.036505638979568926],[114,191,75,-0.031552838381892184],[114,191,76,-0.07180115145983303],[114,191,77,-0.12793944599867652],[114,191,78,-0.16751800771134362],[114,191,79,-0.16235436051995725],[114,192,64,-0.09394302825567676],[114,192,65,-0.11880691325205574],[114,192,66,-0.11039450707368467],[114,192,67,-0.09078567284030495],[114,192,68,-0.09713049554435385],[114,192,69,-0.0852875573989152],[114,192,70,-0.07897953776450894],[114,192,71,-0.10221922064078062],[114,192,72,-0.09274697257394206],[114,192,73,-0.0656517228228075],[114,192,74,-0.035537138214649704],[114,192,75,-0.030326548923208185],[114,192,76,-0.06958599867967381],[114,192,77,-0.1252447014867842],[114,192,78,-0.16496796601200625],[114,192,79,-0.16012627938784044],[114,193,64,-0.09298241971934133],[114,193,65,-0.1172985543333415],[114,193,66,-0.10854152630766802],[114,193,67,-0.08924934280401664],[114,193,68,-0.09583447709483356],[114,193,69,-0.08426399083831464],[114,193,70,-0.07827437920694141],[114,193,71,-0.10123097528292756],[114,193,72,-0.09158211366745746],[114,193,73,-0.06452770104642418],[114,193,74,-0.0345771470727768],[114,193,75,-0.02911704691906674],[114,193,76,-0.0673992205858388],[114,193,77,-0.12257281237683763],[114,193,78,-0.1624232578493227],[114,193,79,-0.15789613659137042],[114,194,64,-0.09200999945796731],[114,194,65,-0.11578196451162674],[114,194,66,-0.10668853515261986],[114,194,67,-0.08771246224543346],[114,194,68,-0.09453599881343998],[114,194,69,-0.08323956287699551],[114,194,70,-0.07756240305473251],[114,194,71,-0.10022971305828506],[114,194,72,-0.09040946216665155],[114,194,73,-0.06340504424726301],[114,194,74,-0.03362667262036641],[114,194,75,-0.027925312879772308],[114,194,76,-0.06524214518208772],[114,194,77,-0.1199255360103813],[114,194,78,-0.15988622994287505],[114,194,79,-0.15566624060381087],[114,195,64,-0.09102715195134654],[114,195,65,-0.11425892852510787],[114,195,66,-0.10483739156250059],[114,195,67,-0.08617652567008731],[114,195,68,-0.09323606314141493],[114,195,69,-0.08221489469310338],[114,195,70,-0.07684421392447628],[114,195,71,-0.09921647273453249],[114,195,72,-0.0892299957203223],[114,195,73,-0.062284820299835585],[114,195,74,-0.03268669547278914],[114,195,75,-0.02675228014788065],[114,195,76,-0.06311601745073604],[114,195,77,-0.1173045525434231],[114,195,78,-0.15735918453617215],[114,195,79,-0.1534388753418918],[114,196,64,-0.09003526642583169],[114,196,65,-0.11273121866988917],[114,196,66,-0.10298991705507624],[114,196,67,-0.08464299747253952],[114,196,68,-0.09193565445163608],[114,196,69,-0.0811905940342313],[114,196,70,-0.07612041507237288],[114,196,71,-0.09819229683288862],[114,196,72,-0.08804468935182054],[114,196,73,-0.06116808255338349],[114,196,74,-0.03175816840931684],[114,196,75,-0.025598833547317627],[114,196,76,-0.06102199829052528],[114,196,77,-0.11471146391789372],[114,196,78,-0.1548443755856376],[114,196,79,-0.1512162952965915],[114,197,64,-0.08903555891448478],[114,197,65,-0.1112004157331554],[114,197,66,-0.10114776817665642],[114,197,67,-0.08311328449360855],[114,197,68,-0.09063574296746414],[114,197,69,-0.08016726723080873],[114,197,70,-0.07539159893791941],[114,197,71,-0.09715819935213027],[114,197,72,-0.08685455044184684],[114,197,73,-0.0600559015179158],[114,197,74,-0.030842015785290222],[114,197,75,-0.024465765850745946],[114,197,76,-0.05896112020444402],[114,197,77,-0.11214780547268444],[114,197,78,-0.152343865458359],[114,197,79,-0.14900050943544002],[114,198,64,-0.08802891013162241],[114,198,65,-0.10966774750530413],[114,198,66,-0.09931232254615241],[114,198,67,-0.08158871119126045],[114,198,68,-0.08933729743682119],[114,198,69,-0.07914554229025494],[114,198,70,-0.0746583487957006],[114,198,71,-0.09611514541668867],[114,198,72,-0.08566065493867828],[114,198,73,-0.05894938109707906],[114,198,74,-0.029939114007449755],[114,198,75,-0.023353729449483506],[114,198,76,-0.056934253536267666],[114,198,77,-0.10961506078573617],[114,198,78,-0.1498593972976762],[114,198,79,-0.14679308834274415],[114,199,64,-0.08701617348945116],[114,199,65,-0.10813439959867858],[114,199,66,-0.09748490242246721],[114,199,67,-0.08007056295572085],[114,199,68,-0.0880412844606771],[114,199,69,-0.07812605900109294],[114,199,70,-0.07392126434534357],[114,199,71,-0.09506411303398261],[114,199,72,-0.08446408558637085],[114,199,73,-0.057849585681655526],[114,199,74,-0.029050270387114104],[114,199,75,-0.022263302561385614],[114,199,76,-0.05494219030799863],[114,199,77,-0.10711464317093278],[114,199,78,-0.1473926446194001],[114,199,79,-0.1445955420930871],[114,200,64,-0.08599821274721951],[114,200,65,-0.10660155308773854],[114,200,66,-0.09566680118281239],[114,200,67,-0.0785600901457917],[114,200,68,-0.0867486659868069],[114,200,69,-0.07710946529235184],[114,200,70,-0.0731809627633382],[114,200,71,-0.09400609810029453],[114,200,72,-0.08326592176637036],[114,200,73,-0.05675753181441804],[114,200,74,-0.02817622320079676],[114,200,75,-0.0211949992115758],[114,200,76,-0.0529856541107779],[114,200,77,-0.10464789226836298],[114,200,78,-0.1449452414304701],[114,200,79,-0.14240936622236863],[114,201,64,-0.08497589997378065],[114,201,65,-0.10507038220653514],[114,201,66,-0.09385928119385947],[114,201,67,-0.07705850649537796],[114,201,68,-0.08546039728920693],[114,201,69,-0.07609641546333393],[114,201,70,-0.07243807694060647],[114,201,71,-0.09294211177899453],[114,201,72,-0.08206723731627112],[114,201,73,-0.05567418848047422],[114,201,74,-0.027317643524130342],[114,201,75,-0.020149270389501327],[114,201,76,-0.05106529977966997],[114,201,77,-0.1022160733636169],[114,201,78,-0.1425187804546821],[114,201,79,-0.140236039320685],[114,202,64,-0.08395011354227641],[114,202,65,-0.10354205212354634],[114,202,66,-0.09206357181837156],[114,202,67,-0.07556698766154406],[114,202,68,-0.08417742503558014],[114,202,69,-0.07508756846876166],[114,202,70,-0.07169325375118402],[114,202,71,-0.09187317791847156],[114,202,72,-0.08086909841952597],[114,202,73,-0.0546004774854063],[114,202,74,-0.02647513715701001],[114,202,75,-0.019126505319280625],[114,202,76,-0.04918171326673065],[114,202,77,-0.09982037693680645],[114,202,78,-0.14011481152752348],[114,202,79,-0.13807702073980693],[114,203,64,-0.08292164893827704],[114,203,65,-0.10201760787461327],[114,203,66,-0.09028076976415043],[114,203,67,-0.07408658853084954],[114,203,68,-0.08290059313953953],[114,203,69,-0.07408350268621994],[114,203,70,-0.07094707129761768],[114,203,71,-0.09080022549649178],[114,203,72,-0.07967246832330988],[114,203,73,-0.05353721053690121],[114,203,74,-0.02564921592827477],[114,203,75,-0.01812701090472785],[114,203,76,-0.04733535384542839],[114,203,77,-0.09746179811148706],[114,203,78,-0.13773466847919394],[114,203,79,-0.1359335774119889],[114,204,64,-0.08189065037073485],[114,204,65,-0.1004972679144744],[114,204,66,-0.08851121017463455],[114,204,67,-0.07261772023053935],[114,204,68,-0.08163004421223789],[114,204,69,-0.07308417208091528],[114,204,70,-0.07019950847090083],[114,204,71,-0.089723402543703],[114,204,72,-0.07847760172717912],[114,204,73,-0.05248468285619173],[114,204,74,-0.024840106871589333],[114,204,75,-0.01715088108749934],[114,204,76,-0.04552619520205422],[114,204,77,-0.0951403694519073],[114,204,78,-0.1353783596263123],[114,204,79,-0.13380567484583725],[114,205,64,-0.08085700617444541],[114,205,65,-0.09898092563018702],[114,205,66,-0.08675493006083863],[114,205,67,-0.07116053635449412],[114,205,68,-0.08036564481464102],[114,205,69,-0.07208928643457257],[114,205,70,-0.06945030650953408],[114,205,71,-0.08864254820939481],[114,205,72,-0.07728447244123697],[114,205,73,-0.05144297392079887],[114,205,74,-0.024047909985279767],[114,205,75,-0.016198123561878285],[114,205,76,-0.04375403013322914],[114,205,77,-0.0928557438193222],[114,205,78,-0.1330453646413816],[114,205,79,-0.13169276262676707],[114,206,64,-0.0798206626189731],[114,206,65,-0.09746854252902687],[114,206,66,-0.0850120234415897],[114,206,67,-0.0697152288048201],[114,206,68,-0.07910731851007735],[114,206,69,-0.07109861191946068],[114,206,70,-0.06869925944553196],[114,206,71,-0.0875575698625162],[114,206,72,-0.0760931097944525],[114,206,73,-0.050412178757742156],[114,206,74,-0.0232727130909152],[114,206,75,-0.015268743761059522],[114,206,76,-0.042018685412913405],[114,206,77,-0.09060763364670044],[114,206,78,-0.1307352556885764],[114,206,79,-0.1295943915751042],[114,207,64,-0.07878162258618923],[114,207,65,-0.09596014601771494],[114,207,66,-0.08328263821263085],[114,207,67,-0.06828202540136834],[114,207,68,-0.07785504375358898],[114,207,69,-0.0701119693853275],[114,207,70,-0.06794621316476825],[114,207,71,-0.08646844174242296],[114,207,72,-0.07490359694660363],[114,207,73,-0.0493924072597693],[114,207,74,-0.022514591622476435],[114,207,75,-0.014362743118017366],[114,207,76,-0.04032001722752039],[114,207,77,-0.08839580655538723],[114,207,78,-0.1284476940425366],[114,207,79,-0.12751021077065103],[114,208,64,-0.0777399425598762],[114,208,65,-0.09445582511818613],[114,208,66,-0.08156697122334998],[114,208,67,-0.0668611859947802],[114,208,68,-0.07660885006323075],[114,208,69,-0.0691292310989011],[114,208,70,-0.06719106292344601],[114,208,71,-0.08537520157399098],[114,208,72,-0.07371606741257958],[114,208,73,-0.04838378230357403],[114,208,74,-0.02177360787392027],[114,208,75,-0.013480117029498992],[114,208,76,-0.03865790576146464],[114,208,77,-0.08622007891059566],[114,208,78,-0.1261824235664106],[114,208,79,-0.12543996139809968],[114,209,64,-0.07669572962935005],[114,209,65,-0.09295572625061074],[114,209,66,-0.07986526348454355],[114,209,67,-0.06545299868626944],[114,209,68,-0.07536881427804262],[114,209,69,-0.06815031756377074],[114,209,70,-0.06643375089532955],[114,209,71,-0.08427794719288843],[114,209,72,-0.07253070162322255],[114,209,73,-0.04738643791913115],[114,209,74,-0.02104981032004624],[114,209,75,-0.01262085296997956],[114,209,76,-0.03703225008665831],[114,209,77,-0.08408030968389377],[114,209,78,-0.12393926440524254],[114,209,79,-0.12338347075007801],[114,210,64,-0.0756491385075684],[114,210,65,-0.09146004908429009],[114,210,66,-0.07817779550908506],[114,210,67,-0.06405777615776771],[114,210,68,-0.0741350569020452],[114,210,69,-0.06717519441719323],[114,210,70,-0.06567426374714387],[114,210,71,-0.08317683318084439],[114,210,72,-0.07134772352449026],[114,210,73,-0.04640051751397106],[114,210,74,-0.02034323301433195],[114,210,75,-0.011784928756299749],[114,210,76,-0.03544296335212971],[114,210,77,-0.08197639461853877],[114,210,78,-0.12171810688955476],[114,210,79,-0.12134064638218336],[114,211,64,-0.07460036856497877],[114,211,65,-0.08996904245789172],[114,211,66,-0.0765048827879403],[114,211,67,-0.062675852116279],[114,211,68,-0.07290773853438248],[114,211,69,-0.06620386940128632],[114,211,70,-0.06491263024041431],[114,211,71,-0.08207206751179767],[114,211,72,-0.07016739721742572],[114,211,73,-0.04542617215593542],[114,211,74,-0.01965389506657793],[114,211,75,-0.01097231096326635],[114,211,76,-0.033889968270238595],[114,211,77,-0.07990826069402038],[114,211,78,-0.11951890564510008],[114,211,79,-0.11931147041581414],[114,212,64,-0.07354966088104598],[114,212,65,-0.08848300037116377],[114,212,66,-0.07484687140432032],[114,212,67,-0.06130757785629851],[114,212,68,-0.07168705638630209],[114,212,69,-0.06523638940679242],[114,212,70,-0.06414891885874627],[114,212,71,-0.08096390821070842],[114,212,72,-0.06899002364199804],[114,212,73,-0.04446355891762685],[114,212,74,-0.018981800202365263],[114,212,75,-0.010182953489947943],[114,212,76,-0.03237319289598032],[114,212,77,-0.07787586088638769],[114,212,78,-0.11734167390562418],[114,212,79,-0.11729599398582326],[114,213,64,-0.07249729531600206],[114,213,65,-0.08700225805086721],[114,213,66,-0.07320413378906437],[114,213,67,-0.059953318944160845],[114,213,68,-0.0704732408861913],[114,213,69,-0.06427283758827988],[114,213,70,-0.06338323546022136],[114,213,71,-0.07985266002763218],[114,213,72,-0.06781593730837636],[114,213,73,-0.04351283928545618],[114,213,74,-0.018326936405567967],[114,213,75,-0.009416796275898564],[114,213,76,-0.030892566695875544],[114,213,77,-0.07587916922112523],[114,213,78,-0.11518647802627126],[114,213,79,-0.11529433183113336],[114,214,64,-0.07144358760593573],[114,214,65,-0.08552718809420297],[114,214,66,-0.07157706462057564],[114,214,67,-0.05861345202814735],[114,214,68,-0.06926655237435614],[114,214,69,-0.06331333055027867],[114,214,70,-0.06261572095523606],[114,214,71,-0.07873867113041871],[114,214,72,-0.06664550307967056],[114,214,73,-0.04257417763592999],[114,214,74,-0.017689275644500967],[114,214,75,-0.008673764166090406],[114,214,76,-0.029448016902883668],[114,214,77,-0.07391817611544683],[114,214,78,-0.11305343219596399],[114,214,79,-0.11330665702747031],[114,215,64,-0.07038888648476935],[114,215,65,-0.08405819669338951],[114,215,66,-0.06996607687269801],[114,215,67,-0.057288361778002436],[114,215,68,-0.0680672778895288],[114,215,69,-0.06235801560431379],[114,215,70,-0.06184654901060874],[114,215,71,-0.07762232981999483],[114,215,72,-0.06547911301047148],[114,215,73,-0.04164773978147595],[114,215,74,-0.017068773681572922],[114,215,75,-0.00795376592278588],[114,215,76,-0.028039465153531874],[114,215,77,-0.07199288400679242],[114,215,78,-0.11094269334757215],[114,215,79,-0.11133319586215881],[114,216,64,-0.0693335708370415],[114,216,65,-0.08259571994535235],[114,216,66,-0.0683715980139349],[114,216,67,-0.05597843795732317],[114,216,68,-0.06687572804935905],[114,216,69,-0.06140706809723701],[114,216,70,-0.06107592378124689],[114,216,71,-0.07650406127271525],[114,216,72,-0.06431718324578392],[114,216,73,-0.04073369158779464],[114,216,74,-0.016465369965702404],[114,216,75,-0.007256693382104013],[114,216,76,-0.026666824403215297],[114,216,77,-0.07010330326420885],[114,216,78,-0.1088544562651168],[114,216,79,-0.10937422285164271],[114,217,64,-0.06827804688578173],[114,217,65,-0.08114022025077135],[114,217,66,-0.06679406636139071],[114,217,67,-0.05468407263207229],[114,217,68,-0.06569223402736662],[114,217,69,-0.060460688811654596],[114,217,70,-0.060304077671119866],[114,217,71,-0.07538432431476746],[114,217,72,-0.0631601509851789],[114,217,73,-0.03983219766446592],[114,217,74,-0.015878987606222084],[114,217,75,-0.006582420752588557],[114,217,76,-0.02532999611532716],[114,217,77,-0.06824944837913362],[114,217,78,-0.10678894888760963],[114,217,79,-0.10743005590302454],[114,218,64,-0.0672227454199462],[114,218,65,-0.0796921828068264],[114,218,66,-0.06523392759262336],[114,218,67,-0.053405657518123824],[114,218,68,-0.06451714462889925],[114,218,69,-0.059519101439490095],[114,218,70,-0.059531269125571426],[114,218,71,-0.07426360823391547],[114,218,72,-0.06200847151704959],[114,218,73,-0.03894342013018002],[114,218,74,-0.015309533426419658],[114,218,75,-0.005930804052576962],[114,218,76,-0.02402886771946887],[114,218,77,-0.06643133443179972],[114,218,78,-0.10474642780930214],[114,218,79,-0.10550105162134246],[114,219,64,-0.066168119066106],[114,219,65,-0.07825211219809967],[114,219,66,-0.06369163141843807],[114,219,67,-0.05214358147045567],[114,219,68,-0.06335082346873534],[114,219,69,-0.05858255012999583],[114,219,70,-0.05875778045733708],[114,219,71,-0.07314242963419418],[114,219,72,-0.060862615327945166],[114,219,73,-0.03806751745370056],[114,219,74,-0.014756898094421328],[114,219,75,-0.005301680682760342],[114,219,76,-0.022763310333617805],[114,219,77,-0.06464897382921082],[114,219,78,-0.10272717397629809],[114,219,79,-0.10358760076472683],[114,220,64,-0.06511463960916339],[114,220,65,-0.0768205290900668],[114,220,66,-0.06216762841934935],[114,220,67,-0.0508982281161892],[114,220,68,-0.06219364625291693],[114,220,69,-0.057651297113650045],[114,220,70,-0.05798391570882484],[114,220,71,-0.07202132933932698],[114,220,72,-0.05972306529190129],[114,220,73,-0.0372046433713291],[114,220,74,-0.014220956328645581],[114,220,75,-0.004694869129853795],[114,220,76,-0.021533176744642845],[114,220,77,-0.06290237331023595],[114,220,78,-0.10073148857949389],[114,220,79,-0.1016901238498036],[114,221,64,-0.06406279536696284],[114,221,65,-0.07539796702958845],[114,221,66,-0.06066236704817219],[114,221,67,-0.049669973633325856],[114,221,68,-0.061045998167389655],[114,221,69,-0.056725620403549046],[114,221,70,-0.05720999855344188],[114,221,71,-0.07090086935081115],[114,221,72,-0.05859031394465651],[114,221,73,-0.03635494588139571],[114,221,74,-0.013701567174715068],[114,221,75,-0.004110168796952747],[114,221,76,-0.020338299641161607],[114,221,77,-0.06119153121304807],[114,221,78,-0.09875968914385641],[114,221,79,-0.09980906690995577],[114,222,64,-0.06301308862364013],[114,222,65,-0.07398496935666486],[114,222,66,-0.05917629080080434],[114,222,67,-0.04845918467655846],[114,222,68,-0.05990827137586823],[114,222,69,-0.055805811575923375],[114,222,70,-0.056436370238846734],[114,222,71,-0.06978162986663346],[114,222,72,-0.05746486084747174],[114,222,73,-0.035518566315968156],[114,222,74,-0.013198574350320373],[114,222,75,-0.0035473599557222977],[114,222,76,-0.019178490092200653],[114,222,77,-0.05951643499966347],[114,222,78,-0.09681210581391989],[114,222,79,-0.09794489740910534],[114,223,64,-0.06196603312649274],[114,223,65,-0.072582086231536],[114,223,66,-0.057709835556860795],[114,223,67,-0.04726621645109239],[114,223,68,-0.05878086262919245],[114,223,69,-0.0548921736314326],[114,223,70,-0.055663387575086994],[114,223,71,-0.06866420636656817],[114,223,72,-0.056347210045087665],[114,223,73,-0.03469563848969094],[114,223,74,-0.012711806654224065],[114,223,75,-0.0030062038152208633],[114,223,76,-0.01805353626465001],[114,223,77,-0.057877059031915964],[114,223,78,-0.09488907783525471],[114,223,79,-0.09609810031369999],[114,224,64,-0.06092215165109059],[114,224,65,-0.07118987178102182],[114,224,66,-0.05626342709142754],[114,224,67,-0.04609141093498298],[114,224,68,-0.05766417098827699],[114,224,69,-0.05398501893890633],[114,224,70,-0.054891420970663796],[114,224,71,-0.06754920676996796],[114,224,72,-0.05523786762215805],[114,224,73,-0.03388628792542579],[114,224,74,-0.012241078435367071],[114,224,75,-0.0024864427018778785],[114,224,76,-0.01696320237206369],[114,224,77,-0.05627336259279975],[114,224,78,-0.09299095023151342],[114,224,79,-0.09426917432558028],[114,225,64,-0.0598819736391726],[114,225,65,-0.06980888136769366],[114,225,66,-0.05483747875869901],[114,225,67,-0.04493509524998242],[114,225,68,-0.05655859566248427],[114,225,69,-0.05308466726310037],[114,225,70,-0.05412085251952702],[114,225,71,-0.06643724867179396],[114,225,72,-0.05413733936219045],[114,225,73,-0.03309063115606119],[114,225,74,-0.011786190117775763],[114,225,75,-0.00198780034481152],[114,225,76,-0.015907227846841256],[114,225,77,-0.05470528814662377],[114,225,78,-0.09111807067639036],[114,225,79,-0.0924586282782394],[114,226,64,-0.05884603291367086],[114,226,65,-0.06843966898515119],[114,226,66,-0.0534323893477881],[114,226,67,-0.04379758018041604],[114,226,68,-0.055464533964992443],[114,226,69,-0.0521914438779434],[114,226,70,-0.053352074141965675],[114,226,71,-0.06532895666243624],[114,226,72,-0.05304612851270809],[114,226,73,-0.03230877510159992],[114,226,74,-0.011346928776787873],[114,226,75,-0.001509982260423664],[114,226,76,-0.014885326727387344],[114,226,77,-0.053172759830994495],[114,226,78,-0.08927078655956669],[114,226,79,-0.0906669776988126],[114,227,64,-0.05781486547503304],[114,227,65,-0.06708278478237645],[114,227,66,-0.052048541110531664],[114,227,67,-0.042679158839159376],[114,227,68,-0.05438237938646982],[114,227,69,-0.0513056777666621],[114,227,70,-0.05258548578232995],[114,227,71,-0.064224959736685],[114,227,72,-0.051964733660046364],[114,227,73,-0.031540816520426486],[114,227,74,-0.010923068762006676],[114,227,75,-0.0010526762300169155],[114,227,76,-0.013897187251439435],[114,227,77,-0.051675682173245266],[114,227,78,-0.08744944224545936],[114,227,79,-0.08889474153794634],[114,228,64,-0.05678900738270216],[114,228,65,-0.06573877271971726],[114,228,66,-0.05068629796057287],[114,228,67,-0.04158010547927565],[114,228,68,-0.053312519788025974],[114,228,69,-0.050427699909982894],[114,228,70,-0.05182149366637631],[114,228,71,-0.0631258887968863],[114,228,72,-0.05089364671677843],[114,228,73,-0.030786841533380318],[114,228,74,-0.01051437236224931],[114,228,75,-6.155528639562513E-4],[114,228,76,-0.01294247164631844],[114,228,77,-0.050213939023485685],[114,228,78,-0.08565437652322865],[114,228,79,-0.0871424390693725],[114,229,64,-0.055768992725329126],[114,229,65,-0.06440816835865538],[114,229,66,-0.04934600384249045],[114,229,67,-0.04050067444940907],[114,229,68,-0.05225533571408178],[114,229,69,-0.049557841663437754],[114,229,70,-0.05106050862090067],[114,229,71,-0.06203237425499704],[114,229,72,-0.04983335102436889],[114,229,73,-0.030046925219038876],[114,229,74,-0.010120590507686896],[114,229,75,-1.9826624574582384E-4],[114,229,76,-0.012020816106486178],[114,229,77,-0.04878739269605773],[114,229,78,-0.08388592024616574],[114,229,79,-0.08541058696070448],[114,230,64,-0.05475535168301526],[114,230,65,-0.06309149678712642],[114,230,66,-0.048027981269266946],[114,230,67,-0.039441099290598164],[114,230,68,-0.05121119882548967],[114,230,69,-0.04869643322463864],[114,230,70,-0.050302944458204685],[114,230,71,-0.06094504373793402],[114,230,72,-0.04878431957327365],[114,230,73,-0.029321131278443942],[114,230,74,-0.009741463504374742],[114,230,75,1.9954535069254063E-4],[114,230,76,-0.011131830948484816],[114,230,77,-0.0473958833108524],[114,230,78,-0.08214439415826284],[114,230,79,-0.08369969651664648],[114,231,64,-0.05374860868449328],[114,231,65,-0.061789270681680525],[114,231,66,-0.04673253002584638],[114,231,67,-0.03840159197170251],[114,231,68,-0.05018047045285667],[114,231,69,-0.047843802191141115],[114,231,70,-0.049549216427720026],[114,231,71,-0.05986451990017906],[114,231,72,-0.04774701334222686],[114,231,73,-0.0286095117672692],[114,231,74,-0.009376721796335937],[114,231,75,5.782586773640308E-4],[114,231,76,-0.01027510093301324],[114,231,77,-0.04603922832558188],[114,231,78,-0.08043010690537347],[114,231,79,-0.08201027109539306],[114,232,64,-0.052749280661814175],[114,232,65,-0.060501988507331184],[114,232,66,-0.04545992603603834],[114,232,67,-0.03738234226020924],[114,232,68,-0.04916350026966708],[114,232,69,-0.047000272209297395],[114,232,70,-0.04879973973692666],[114,232,71,-0.058791418347194396],[114,232,72,-0.046721879758017816],[114,232,73,-0.02791210689324836],[114,232,74,-0.009026086750388676],[114,232,75,9.382646690461146E-4],[114,232,76,-0.009450185743626854],[114,232,77,-0.04471722224979485],[114,232,78,-0.07874335322800577],[114,232,79,-0.08034280369858746],[114,233,64,-0.0517578754047507],[114,233,65,-0.05923013285550674],[114,233,66,-0.04421042038956938],[114,233,67,-0.03638351722481272],[114,233,68,-0.048160625084475196],[114,233,69,-0.04616616171429403],[114,233,70,-0.04805492814351227],[114,233,71,-0.05772634567279232],[114,233,72,-0.045709351276633635],[114,233,73,-0.027228944876552245],[114,233,74,-0.00868927145900875],[114,233,75,0.0012799675474797383],[114,233,76,-0.008656620611384063],[114,233,77,-0.04342963653120511],[114,233,78,-0.07708441233246313],[114,233,79,-0.07869777473481528],[114,234,64,-0.05077489001671163],[114,234,65,-0.05797416892002747],[114,234,66,-0.0429842385255883],[114,234,67,-0.03540526086575092],[114,234,68,-0.047172167751058],[114,234,69,-0.045341782761301595],[114,234,70,-0.04731519262045924],[114,234,71,-0.056669897613111773],[114,234,72,-0.04470984408615309],[114,234,73,-0.026560041870613324],[114,234,74,-0.008365981556564388],[114,234,75,0.0016037838797696923],[114,234,76,-0.007893917074558384],[114,234,77,-0.04217621960464104],[114,234,78,-0.07545354643665406],[114,234,79,-0.07707564995613643],[114,235,64,-0.04980080947357286],[114,235,65,-0.056734543110574305],[114,235,66,-0.04178157956848369],[114,235,67,-0.034447693868523255],[114,235,68,-0.0461984361950612],[114,235,69,-0.04452743994741455],[114,235,70,-0.04658094009550698],[114,235,71,-0.05562265731938855],[114,235,72,-0.04372375693132365],[114,235,73,-0.02590540194076919],[114,235,74,-0.008055916044383939],[114,235,75,0.0019101415977933146],[114,235,76,-0.0071615638624227245],[114,235,77,-0.040956697093747385],[114,235,78,-0.07385099948654256],[114,235,79,-0.07547687856671034],[114,236,64,-0.04883610528644908],[114,236,65,-0.055511681802685675],[114,236,66,-0.04060261581148519],[114,236,67,-0.033510913476325434],[114,236,68,-0.04523972255537119],[114,236,69,-0.04372342942384968],[114,236,70,-0.04585257226621589],[114,236,71,-0.054585193751255055],[114,236,72,-0.042751470059327085],[114,236,73,-0.025265017098002742],[114,236,74,-0.0077587681202799345],[114,236,75,0.0021994789852980675],[114,236,76,-0.006459027892083902],[114,236,77,-0.03977077215546856],[114,236,78,-0.0722769960389089],[114,236,79,-0.0739018915021507],[114,237,64,-0.047881234269006645],[114,237,65,-0.054305990222842],[114,237,66,-0.03944749234308956],[114,237,67,-0.03259499347620045],[114,237,68,-0.04429630243807366],[114,237,69,-0.04293003799758852],[114,237,70,-0.0451304844915711],[114,237,71,-0.05355806019178859],[114,237,72,-0.041793344285764],[114,237,73,-0.02463886738492655],[114,237,74,-0.0074742260082859505],[114,237,75,0.0024722436392779737],[114,237,76,-0.005785755367292012],[114,237,77,-0.0386181259572124],[114,237,78,-0.07073174030572968],[114,237,79,-0.0723510998777588],[114,238,64,-0.04693663740951044],[114,238,65,-0.05311785146676092],[114,238,66,-0.03831632681099169],[114,238,67,-0.03169998429364661],[114,238,68,-0.04336843428055389],[114,238,69,-0.04214754232141455],[114,238,70,-0.044415064760808],[114,238,71,-0.052541792885043376],[114,238,72,-0.040849720179450565],[114,238,73,-0.024026921011068736],[114,238,74,-0.007201973784536379],[114,238,75,0.0027288914120712484],[114,238,76,-0.005141172968185848],[114,238,77,-0.037498418276548685],[114,238,78,-0.06921541535518906],[114,238,79,-0.07082489360333992],[114,239,64,-0.04600273884742809],[114,239,65,-0.05194762564862987],[114,239,66,-0.037209209317892816],[114,239,67,-0.030825913190215482],[114,239,68,-0.04245635882301377],[114,239,69,-0.041376208171082396],[114,239,70,-0.04370669273990078],[114,239,71,-0.05153690979634246],[114,239,72,-0.03992091736422745],[114,239,73,-0.023429134534478962],[114,239,74,-0.00694169219545187],[114,239,75,0.0029698853404071445],[114,239,76,-0.004524689121054234],[114,239,77,-0.03641128821332605],[114,239,78,-0.06772818246407544],[114,239,79,-0.06932364016189711],[114,240,64,-0.04507994495400192],[114,240,65,-0.0507956491785711],[114,240,66,-0.036126202443226785],[114,240,67,-0.02997278455840035],[114,240,68,-0.041560298684370396],[114,240,69,-0.04061628980810096],[114,240,70,-0.043005738895873113],[114,240,71,-0.05054390949510595],[114,240,72,-0.039007233935547975],[114,240,73,-0.02284545308658826],[114,240,74,-0.006693059464569139],[114,240,75,0.003195694567465593],[114,240,76,-0.00393569533728051],[114,240,77,-0.035356355004092024],[114,240,78,-0.06627018061602831],[114,240,79,-0.06784768354903996],[114,241,64,-0.04416864351580578],[114,241,65,-0.049662234165244415],[114,241,66,-0.03506734138458442],[114,241,67,-0.02914058030795503],[114,241,68,-0.04068045803923917],[114,241,69,-0.0398680294263899],[114,241,70,-0.0423125636988198],[114,241,71,-0.04956327015951265],[114,241,72,-0.03810894598921945],[114,241,73,-0.022275810637210604],[114,241,74,-0.006455752084575956],[114,241,75,0.003406793263776861],[114,241,76,-0.0033735676108355857],[114,241,77,-0.034333218928797885],[114,241,78,-0.06484152613986296],[114,241,79,-0.06639734336953183],[114,242,64,-0.04326920301997373],[114,242,65,-0.048547667940156886],[114,242,66,-0.034032634212400575],[114,242,67,-0.02832926033766764],[114,242,68,-0.03981702239248078],[114,242,69,-0.039131656680885085],[114,242,70,-0.041627516901307275],[114,242,71,-0.048595448701874384],[114,242,72,-0.0372263072593423],[114,242,73,-0.021720130296590565],[114,242,74,-0.006229445591386484],[114,242,75,0.0036036595525146178],[114,242,76,-0.0028376678639139793],[114,242,77,-0.03334146229991069],[114,242,78,-0.06344231248201897],[114,242,79,-0.06497291408703597],[114,243,64,-0.042381972039395734],[114,243,65,-0.04745221269987942],[114,243,66,-0.03302206223125561],[114,243,67,-0.02753876308649286],[114,243,68,-0.03897015844754988],[114,243,69,-0.038407388295945394],[114,243,70,-0.040950936894540886],[114,243,71,-0.047640880013125504],[114,243,72,-0.036359548862110576],[114,243,73,-0.021178324651348574],[114,243,74,-0.006013815317290867],[114,243,75,0.0037867744444969363],[114,243,76,-0.0023273454305602066],[114,243,77,-0.03238065052420376],[114,243,78,-0.06207261010696653],[114,243,79,-0.06357466442271942],[114,244,64,-0.041507278715835906],[114,244,65,-0.046376105262052235],[114,244,66,-0.03203558044097835],[114,244,67,-0.026769006157877362],[114,244,68,-0.03814001406468047],[114,244,69,-0.03769542775122508],[114,244,70,-0.040283150140441794],[114,244,71,-0.046699976324408615],[114,244,72,-0.03550887914182409],[114,244,73,-0.020650296131188142],[114,244,74,-0.005808537120472773],[114,244,75,0.003956620787919338],[114,244,76,-0.0018419385684322767],[114,244,77,-0.03145033322769726],[114,244,78,-0.06073246651924898],[114,244,79,-0.062202836898020086],[114,245,64,-0.04064543033864104],[114,245,65,-0.04531955693080154],[114,245,66,-0.031073118090641415],[114,245,67,-0.026019887011102458],[114,245,68,-0.03732671830479333],[114,245,69,-0.03699596504253328],[114,245,70,-0.03962447067857494],[114,245,71,-0.04577312668336564],[114,245,72,-0.0346744836151981],[114,245,73,-0.020135937403273237],[114,245,74,-0.0056132880884667245],[114,245,75,0.004113682237519253],[114,245,76,-0.0013807759892185622],[114,245,77,-0.030550045434491527],[114,245,78,-0.05942190640074061],[114,245,79,-0.06085764751659198],[114,246,64,-0.03979671301635936],[114,246,65,-0.044282753466889875],[114,246,66,-0.03013457931842248],[114,246,67,-0.025291283713436512],[114,246,68,-0.03653038155483031],[114,246,69,-0.03630917651501095],[114,246,70,-0.03897519970660691],[114,246,71,-0.044860696542321485],[114,246,72,-0.03385652500975328],[114,246,73,-0.019635131791177856],[114,246,74,-0.005427747213346497],[114,246,75,0.0042584422475888594],[114,246,76,-9.431783985725084E-4],[114,246,77,-0.029679308790479374],[114,246,78,-0.058140931856566685],[114,246,79,-0.05953928558010517],[114,247,64,-0.03896139143834416],[114,247,65,-0.04326585515771981],[114,247,66,-0.029219843870277113],[114,247,67,-0.024583055746939562],[114,247,68,-0.0357510957301155],[114,247,69,-0.03563522476584149],[114,247,70,-0.038335625232790535],[114,247,71,-0.04396302745522491],[114,247,72,-0.03305514339186298],[114,247,73,-0.019147753715381823],[114,247,74,-0.0052515960367204625],[114,247,75,0.004391383092905769],[114,247,76,-5.284600368603598E-4],[114,247,77,-0.028837632823257263],[114,247,78,-0.056889522763090054],[114,247,79,-0.05824791363234004],[114,248,64,-0.0381397087231239],[114,248,65,-0.04226899698207708],[114,248,66,-0.0283287678903291],[114,248,67,-0.02389504486379752],[114,248,68,-0.034988934549219065],[114,248,69,-0.03497425861356115],[114,248,70,-0.03770602179874808],[114,248,71,-0.04308043687984854],[114,248,72,-0.03227045637979743],[114,248,73,-0.018673669152312087],[114,248,74,-0.005084519262835548],[114,248,75,0.004512984921343409],[114,248,76,-1.359302124324842E-4],[114,248,77,-0.02802451622986815],[114,248,78,-0.05566763721130061],[114,248,79,-0.056983667525747184],[114,249,64,-0.037331886350115716],[114,249,65,-0.04129228886435767],[114,249,66,-0.02746118477593385],[114,249,67,-0.02322707598418009],[114,249,68,-0.03424395387675417],[114,249,69,-0.034326413130959986],[114,249,70,-0.03708665027066765],[114,249,71,-0.042213218081481936],[114,249,72,-0.031502559436959905],[114,249,73,-0.01821273610902752],[114,249,74,-0.004926205338376863],[114,249,75,0.00462372484155377],[114,249,76,2.3510518037722216E-4],[114,249,77,-0.027239448184406222],[114,249,78,-0.054475212038967255],[114,249,79,-0.055746656604470826],[114,250,64,-0.036538124171023076],[114,250,65,-0.040335816012854124],[114,250,66,-0.026616906090393945],[114,250,67,-0.02257895813070127],[114,250,68,-0.03351619212945443],[114,250,69,-0.033691809738444746],[114,250,70,-0.03647775769683522],[114,250,71,-0.041361640134049214],[114,250,72,-0.030751526240335145],[114,250,73,-0.017764805110691412],[114,250,74,-0.004776346997767523],[114,250,75,0.004724076048803295],[114,250,76,5.853421658646644E-4],[114,250,77,-0.026481909657870922],[114,250,78,-0.05331216344489811],[114,250,79,-0.05453696399762761],[114,251,64,-0.03575860049706275],[114,251,65,-0.03939963933655955],[114,251,66,-0.025795722526392898],[114,251,67,-0.02195048539370405],[114,251,68,-0.03280567074085857],[114,251,69,-0.033070556354665256],[114,251,70,-0.03587957722926284],[114,251,71,-0.04052594801433611],[114,251,72,-0.030017409119051666],[114,251,73,-0.01732971969806218],[114,251,74,-0.0046346417730155996],[114,251,75,0.004814506991696207],[114,251,76,9.154772210139728E-4],[114,251,77,-0.025751374743072875],[114,251,78,-0.05217838767869854],[114,251,79,-0.05335464701649074],[114,252,64,-0.03499347225803133],[114,252,65,-0.03848379593488746],[114,252,66,-0.024997404913343617],[114,252,67,-0.021341437921769756],[114,252,68,-0.032112394679938164],[114,252,69,-0.03246274760116793],[114,252,70,-0.035292328107060664],[114,252,71,-0.039706362784820794],[114,252,72,-0.029300239557893147],[114,252,73,-0.016907316932344027],[114,252,74,-0.004500792467408497],[114,252,75,0.004895480582161319],[114,252,76,0.001226205845301673],[114,252,77,-0.02504731197783477],[114,252,78,-0.0510737617995103],[114,252,79,-0.052199737649138614],[114,253,64,-0.0342428752290493],[114,253,65,-0.03758829965462396],[114,253,66,-0.024221705261969165],[114,253,67,-0.02075158293201396],[114,253,68,-0.03143635301900415],[114,253,69,-0.03186846505777933],[114,253,70,-0.034716215699048196],[114,253,71,-0.03890308186038933],[114,253,72,-0.028600028760508323],[114,253,73,-0.016497427904814742],[114,253,74,-0.004374507592553563],[114,253,75,0.004967453450762767],[114,253,76,0.0015182211720408067],[114,253,77,-0.024369185660150085],[114,253,78,-0.04999814449728008],[114,253,79,-0.05107224314602056],[114,254,64,-0.033506924320708516],[114,254,65,-0.036713141708399184],[114,254,66,-0.023468357839597113],[114,254,67,-0.02018067573493229],[114,254,68,-0.03077751954626321],[114,254,69,-0.03128777756539712],[114,254,70,-0.03415143160299115],[114,254,71,-0.038116279354061124],[114,254,72,-0.027916768267037546],[114,254,73,-0.016099878248753263],[114,254,74,-0.00425550176847908],[114,254,75,0.005030875249061454],[114,254,76,0.001792212626524781],[114,254,77,-0.023716457149410917],[114,254,78,-0.0489513769702264],[114,254,79,-0.04997214668984346],[114,255,64,-0.032785713928279864],[114,255,65,-0.03585829134898899],[114,255,66,-0.022737080269862844],[114,255,67,-0.01962846076879702],[114,255,68,-0.0301358534184755],[114,255,69,-0.03072074157288022],[114,255,70,-0.033598153798780846],[114,255,71,-0.037346106496746974],[114,255,72,-0.027250430620888923],[114,255,73,-0.015714488651317905],[114,255,74,-0.004143496086729434],[114,255,75,0.005086188000412469],[114,255,76,0.002048864635677548],[114,255,77,-0.023088586148292848],[114,255,78,-0.04793328385233027],[114,255,79,-0.04889940814318473],[114,256,64,-0.03207931833553949],[114,256,65,-0.035023696593754775],[114,256,66,-0.02202757465070666],[114,256,67,-0.01909467263882056],[114,256,68,-0.029511299849223703],[114,256,69,-0.03016740152471485],[114,256,70,-0.03305654685276919],[114,256,71,-0.03659269212593905],[114,256,72,-0.026600970079395],[114,256,73,-0.015341075363118009],[114,256,74,-0.004038218436555836],[114,256,75,0.005133825500287755],[114,256,76,0.0022888553933986724],[114,256,77,-0.022485031960324905],[114,256,78,-0.04694367418481294],[114,256,79,-0.04785396486722313],[114,257,64,-0.03138779216873792],[114,257,65,-0.034209284993585165],[114,257,66,-0.021339528684782616],[114,257,67,-0.018579037156544517],[114,257,68,-0.028903790828397263],[114,257,69,-0.029627790286156214],[114,257,70,-0.03252676217041572],[114,257,71,-0.035856143238166986],[114,257,72,-0.025968323363127765],[114,257,73,-0.01497945070333969],[114,257,74,-0.003939403794481338],[114,257,75,0.0051742127669085255],[114,257,76,0.002512855685260509],[114,257,77,-0.021905254718635032],[114,257,78,-0.045982342425739946],[114,257,79,-0.04683573260502067],[114,258,64,-0.030711170896223012],[114,258,65,-0.03341496444079165],[114,258,66,-0.020672616816665792],[114,258,67,-0.01808127237519275],[114,258,68,-0.028313245868629565],[114,258,69,-0.0291019296026021],[114,258,70,-0.0320089382943729],[114,258,71,-0.03513654560003382],[114,258,72,-0.02535241043873582],[114,258,73,-0.014629423558422039],[114,258,74,-0.003846794477699595],[114,258,75,0.005207765542660926],[114,258,76,0.002721527775669605],[114,258,77,-0.021348716581841745],[114,258,78,-0.04504906949210512],[114,258,79,-0.0458446064228724],[114,259,64,-0.030049471369209987],[114,259,65,-0.032640624010485904],[114,259,66,-0.020026501371489445],[114,259,67,-0.017601089616970395],[114,259,68,-0.027739572774534895],[114,259,69,-0.028589830589984332],[114,259,70,-0.031503201245086904],[114,259,71,-0.03443396441260797],[114,259,72,-0.024753135330237853],[114,259,73,-0.014290799872378634],[114,259,74,-0.0037601403618920527],[114,259,75,0.005234889846510978],[114,259,76,0.0029155243601092567],[114,259,77,-0.020814882893495982],[114,259,78,-0.044143623828934234],[114,259,79,-0.044880461703312634],[114,260,64,-0.029402692399215245],[114,260,65,-0.03188613483008519],[114,260,66,-0.01940083368992099],[114,260,67,-0.01713819448856344],[114,260,68,-0.027182668430732356],[114,260,69,-0.02809149425302714],[114,260,70,-0.031009664900976643],[114,260,71,-0.03374844502396764],[114,260,72,-0.02417038695381958],[114,260,73,-0.013963383126983095],[114,260,74,-0.003679199064186345],[114,260,75,0.005255981577368823],[114,260,76,0.0030954875845763314],[114,260,77,-0.020303223301929404],[114,260,78,-0.04326576250017294],[114,260,79,-0.043943155183486134],[114,261,64,-0.02877081536771835],[114,261,65,-0.031151350971740658],[114,261,66,-0.018795255254692],[114,261,67,-0.016692287881388043],[114,261,68,-0.026642419604817676],[114,261,69,-0.027606912028313273],[114,261,70,-0.030528431415265674],[114,261,71,-0.03308001368474205],[114,261,72,-0.023604039971325295],[114,261,73,-0.01364697481016923],[114,261,74,-0.003603736092109801],[114,261,75,0.005271426168088054],[114,261,76,0.0032620481338191],[114,261,77,-0.019813212837819436],[114,261,78,-0.04241523229637115],[114,261,79,-0.04303252603274587],[114,262,64,-0.028153804863664884],[114,262,65,-0.030436110362618913],[114,262,66,-0.018209398804173653],[114,262,67,-0.016263066953397475],[114,262,68,-0.026118703761590235],[114,262,69,-0.02713606634916603],[114,262,70,-0.030059591666541388],[114,262,71,-0.032428678341543275],[114,262,72,-0.023053955657764774],[114,262,73,-0.013341374871098089],[114,262,74,-0.003533524959477593],[114,262,75,0.005281598289575858],[114,262,76,0.003415824389536123],[114,262,77,-0.01934433294718849],[114,262,78,-0.04159177085440102],[114,262,79,-0.04214839696348592],[114,263,64,-0.027551609344490607],[114,263,65,-0.029740235708133504],[114,263,66,-0.017642889428791476],[114,263,67,-0.01585022608953378],[114,263,68,-0.02561138988501599],[114,263,69,-0.026678931229449893],[114,263,70,-0.029603225740135228],[114,263,71,-0.03179442946325986],[114,263,72,-0.022519982778316017],[114,263,73,-0.013046382160458914],[114,263,74,-0.0034683472702437324],[114,263,75,0.00528686160427288],[114,263,76,0.003557421659241349],[114,263,77,-0.018896072477969386],[114,263,78,-0.040795107784695306],[114,263,79,-0.04129057536939466],[114,264,64,-0.02696416181645545],[114,264,65,-0.02906353542341825],[114,264,66,-0.017095345646394738],[114,264,67,-0.015453457838206017],[114,264,68,-0.025120339304608903],[114,264,69,-0.026235472863514624],[114,264,70,-0.02915940343747718],[114,264,71,-0.03117724089530712],[114,264,72,-0.02200195847049446],[114,264,73,-0.012761794854697313],[114,264,74,-0.0034079927714279605],[114,264,75,0.005287568568056083],[114,264,76,0.003687431476063081],[114,264,77,-0.018467928618677316],[114,264,78,-0.040024965801763054],[114,264,79,-0.0404588544855306],[114,265,64,-0.0263913805301659],[114,265,65,-0.028405804568511456],[114,265,66,-0.016566380452983635],[114,265,67,-0.015072453821429401],[114,265,68,-0.024645406523078738],[114,265,69,-0.025805650239599676],[114,265,70,-0.028728184810605694],[114,265,71,-0.03057707073703156],[114,265,72,-0.021499709127326534],[114,265,73,-0.012487410862956272],[114,265,74,-0.00335225937627402],[114,265,75,0.005284060279456924],[114,265,76,0.0038064309693562376],[114,265,77,-0.01805940778808961],[114,265,78,-0.039281061853981815],[114,265,79,-0.03965301456481622],[114,266,64,-0.025833169687276426],[114,266,65,-0.027766825782918003],[114,266,66,-0.016055602345504228],[114,266,67,-0.014706905616531964],[114,266,68,-0.024186440042292347],[114,266,69,-0.025389415764136374],[114,266,70,-0.028309620719075283],[114,266,71,-0.029993862237605362],[114,266,72,-0.0210130512775607],[114,266,73,-0.012223028215617665],[114,266,74,-0.003300953158833449],[114,266,75,0.005276666374933273],[114,266,76,0.003914982305632232],[114,266,77,-0.017670026475191003],[114,266,78,-0.038563108248924324],[114,266,79,-0.03887282406577399],[114,267,64,-0.02528942015450991],[114,267,65,-0.027146370215444814],[114,267,66,-0.01556261631373801],[114,267,67,-0.014356505607607947],[114,267,68,-0.02374328318480064],[114,267,69,-0.02498671589452479],[114,267,70,-0.027903753406591184],[114,267,71,-0.029427544705917578],[114,267,72,-0.02054179245916319],[114,267,73,-0.011968445433443962],[114,267,74,-0.0032538883212111323],[114,267,75,0.005265704968783659],[114,267,76,0.00401363219894745],[114,267,77,-0.01729931202899023],[114,267,78,-0.037870813770754096],[114,267,79,-0.03811804084658041],[114,268,64,-0.024760010181255548],[114,268,65,-0.026544198445400888],[114,268,66,-0.015087024798593397],[114,268,67,-0.014020947805135037],[114,268,68,-0.023315774908368468],[114,268,69,-0.02459749177807413],[114,268,70,-0.027510617094759222],[114,268,71,-0.028878034430116144],[114,268,72,-0.0200857320825364],[114,268,73,-0.011723461876395657],[114,268,74,-0.0032108871347044047],[114,268,75,0.005251482636191424],[114,268,76,0.00410291148958616],[114,268,77,-0.01694680339811065],[114,268,78,-0.03720388478646464],[114,268,79,-0.03738841336074481],[114,269,64,-0.024244806117150932],[114,269,65,-0.025960061391473672],[114,269,66,-0.014628428614399046],[114,269,67,-0.013699928632415448],[114,269,68,-0.02290375061114124],[114,269,69,-0.024221679894931517],[114,269,70,-0.027130238591430093],[114,269,71,-0.028345235602635913],[114,269,72,-0.01964466228010728],[114,269,73,-0.011487878071282966],[114,269,74,-0.003171779856062741],[114,269,75,0.005234294437793889],[114,269,76,0.0041833347895847426],[114,269,77,-0.016612051820343823],[114,269,78,-0.03656202633799317],[114,269,79,-0.036683681849974455],[114,270,64,-0.0237436631262246],[114,270,65,-0.02539370120483089],[114,270,66,-0.014186427833093115],[114,270,67,-0.013393147677743779],[114,270,68,-0.02250704292529079],[114,270,69,-0.023859212702971144],[114,270,70,-0.026762637911222593],[114,270,71,-0.027829041246747174],[114,270,72,-0.019218368739157464],[114,270,73,-0.011261496017502898],[114,270,74,-0.0031364046200950567],[114,270,75,0.005214423984078337],[114,270,76,0.004255400193367231],[114,270,77,-0.01629462146263139],[114,270,78,-0.035944943217502356],[114,270,79,-0.03600357953006066],[114,271,64,-0.023256425894313124],[114,271,65,-0.02484485214319786],[114,271,66,-0.013760622628457817],[114,271,67,-0.013100308411406967],[114,271,68,-0.02212548249716067],[114,271,69,-0.023510019282736966],[114,271,70,-0.02640782890589323],[114,271,71,-0.02732933414083592],[114,271,72,-0.018806631514958268],[114,271,73,-0.011044119470162171],[114,271,74,-0.003104607309799132],[114,271,75,0.005192143537873879],[114,271,76,0.004319589051553676],[114,271,77,-0.015994090012158266],[114,271,78,-0.035352341023345814],[114,271,79,-0.03534783376586385],[114,272,64,-0.022782929326645825],[114,272,65,-0.024313241422897692],[114,272,66,-0.013350614078820414],[114,272,67,-0.012821118866837863],[114,272,68,-0.02175889875213088],[114,272,69,-0.023174025980682855],[114,272,70,-0.02606581990233744],[114,272,71,-0.026845987736841],[114,272,72,-0.018409225821495383],[114,272,73,-0.010835554199961555],[114,272,74,-0.0030762414051608354],[114,272,75,0.005167714153156108],[114,272,76,0.004376365805790848],[114,272,77,-0.01571004921946184],[114,272,78,-0.03478392719448372],[114,272,79,-0.034716167231751936],[114,273,64,-0.022322999232641583],[114,273,65,-0.023798590046046],[114,273,66,-0.01295600492687836],[114,273,67,-0.012555292285419383],[114,273,68,-0.02140712064259735],[114,273,69,-0.02285115704908239],[114,273,70,-0.025736614346107026],[114,273,71,-0.026378867069464844],[114,273,72,-0.018025922797257257],[114,273,73,-0.010635608229251692],[114,273,74,-0.0030511678116966205],[114,273,75,0.00514138584837916],[114,273,76,0.004426177882297737],[114,273,77,-0.015442105394633273],[114,273,78,-0.03423941202132388],[114,273,79,-0.03410829905409892],[114,274,64,-0.02187645299514232],[114,274,65,-0.02330061360032012],[114,274,66,-0.012576400295550542],[114,274,67,-0.01230254772463011],[114,274,68,-0.021069977377651067],[114,274,69,-0.022541335281130087],[114,274,70,-0.025420211448451854],[114,274,71,-0.025927829652992763],[114,274,72,-0.01765649024377561],[114,274,73,-0.010444092043734364],[114,274,74,-0.0030292546697656634],[114,274,75,0.0051133978125368846],[114,274,76,0.004469455641673641],[114,274,77,-0.015189879857854222],[114,274,78,-0.03371850963119159],[114,274,79,-0.03352394593271824],[114,275,64,-0.02144310022146421],[114,275,65,-0.02281902302892079],[114,275,66,-0.01221140835896519],[114,275,67,-0.01206261062936078],[114,275,68,-0.020747299133203032],[114,275,69,-0.02224448263988165],[114,275,70,-0.025116606835002206],[114,275,71,-0.025492726362752547],[114,275,72,-0.017300693334782766],[114,275,73,-0.010260818779296289],[114,275,74,-0.0030103771455807287],[114,275,75,0.005083978642186471],[114,275,76,0.0045066123824179065],[114,275,77,-0.01495300934563051],[114,275,78,-0.03322093894682244],[114,275,79,-0.03296282323835612],[114,276,64,-0.021022743373808283],[114,276,65,-0.02235352536854391],[114,276,66,-0.011860640967892428],[114,276,67,-0.011835213366376022],[114,276,68,-0.02043891774146205],[114,276,69,-0.02196052087981393],[114,276,70,-0.024825793194319785],[114,276,71,-0.025073402298447976],[114,276,72,-0.016958295294034764],[114,276,73,-0.010085604383489103],[114,276,74,-0.0029944172047579524],[114,276,75,0.0050533466077075226],[114,276,76,0.004538044395540583],[114,276,77,-0.014731146374181403],[114,276,78,-0.03274642461645612],[114,276,79,-0.03242464608361195],[114,277,64,-0.020615178376748946],[114,277,65,-0.02190382445338618],[114,277,66,-0.011523714229127027],[114,277,67,-0.011620095722028557],[114,277,68,-0.020144667358839255],[114,277,69,-0.021689372159927073],[114,277,70,-0.024547760924679012],[114,277,71,-0.024669697626815246],[114,277,72,-0.01662905804003023],[114,277,73,-0.009918267751190667],[114,277,74,-0.002981263369156204],[114,277,75,0.00502170994711194],[114,277,76,0.004564131067586071],[114,277,77,-0.014523959561529715],[114,277,78,-0.032294697914298266],[114,277,79,-0.0319091303649084],[114,278,64,-0.020220195199661038],[114,278,65,-0.0214696215833794],[114,278,66,-0.011200249038478572],[114,278,67,-0.011417005363425431],[114,278,68,-0.019864385111483755],[114,278,69,-0.021430959647426973],[114,278,70,-0.024282498777543897],[114,278,71,-0.024281448401234387],[114,278,72,-0.0163127427960051],[114,278,73,-0.009758630833973691],[114,278,74,-0.002970810457634232],[114,278,75,0.004989267185802888],[114,278,76,0.004585235029388937],[114,278,77,-0.014331133909871476],[114,278,78,-0.03186549761025838],[114,278,79,-0.03141599377335297],[114,279,64,-0.019837578412099634],[114,279,65,-0.021050616155020893],[114,279,66,-0.010889871567173595],[114,279,67,-0.011225698263332983],[114,279,68,-0.01959791171778863],[114,279,69,-0.02118520811114767],[114,279,70,-0.02402999449632232],[114,279,71,-0.02390848735611912],[114,279,72,-0.01600911066373093],[114,279,73,-0.009606518722697797],[114,279,74,-0.002962959311233739],[114,279,75,0.004956207480767886],[114,279,76,0.004601702347894851],[114,279,77,-0.01415237104982233],[114,279,78,-0.031458570808018144],[114,279,79,-0.030944956772551314],[114,280,64,-0.019467107710305225],[114,280,65,-0.020646506253342398],[114,280,66,-0.010592213701613815],[114,280,67,-0.011045939089185212],[114,280,68,-0.019345092087337507],[114,280,69,-0.02095204450400212],[114,280,70,-0.02379023544910722],[114,280,71,-0.023550644674104292],[114,280,72,-0.01571792315979021],[114,280,73,-0.009461759702833023],[114,280,74,-0.0029576165031805677],[114,280,75,0.004922710987780171],[114,280,76,0.004613862758408819],[114,280,77,-0.013987389448144106],[114,280,78,-0.031073673750616322],[114,280,79,-0.03049574354165347],[114,281,64,-0.01910855841313228],[114,281,65,-0.020256989203695962],[114,281,66,-0.010306913436530334],[114,281,67,-0.010877501556599094],[114,281,68,-0.01910577589586472],[114,281,69,-0.020731398533851867],[114,281,70,-0.02356320925421538],[114,281,71,-0.023207748724213433],[114,281,72,-0.01543894271311131],[114,281,73,-0.009324185281979024],[114,281,74,-0.0029546940339454934],[114,281,75,0.004888949250311877],[114,281,76,0.0046220299347149545],[114,281,77,-0.01383592458050899],[114,281,78,-0.0307105725928346],[114,281,79,-0.030068082882097644],[114,282,64,-0.018761701925831625],[114,282,65,-0.01988176208217251],[114,282,66,-0.010033615221661648],[114,282,67,-0.010720168747827698],[114,282,68,-0.018879818135893924],[114,282,69,-0.020523203222287713],[114,282,70,-0.023348904397442586],[114,282,71,-0.02287962676935271],[114,282,72,-0.015171933122650364],[114,282,73,-0.00919363018900568],[114,282,74,-0.002954109011468044],[114,282,75,0.0048550856089854925],[114,282,76,0.004626501794600596],[114,282,77,-0.013697729070803548],[114,282,78,-0.030369044139754997],[114,282,79,-0.029661709086694348],[114,283,64,-0.01842630617025046],[114,283,65,-0.019520522183602663],[114,283,66,-0.009771970262163919],[114,283,67,-0.010573733395606383],[114,283,68,-0.01866707964282281],[114,283,69,-0.020327395450929896],[114,283,70,-0.0231473108400742],[114,283,71,-0.022566105641645167],[114,283,72,-0.014916659974206683],[114,283,73,-0.009069932344194587],[114,283,74,-0.0029557833165017302],[114,283,75,0.004821275630525039],[114,283,76,0.004627560838429405],[114,283,77,-0.013572572798402066],[114,283,78,-0.030048876550943147],[114,283,79,-0.02927636276987167],[114,284,64,-0.018102135980113874],[114,284,65,-0.019172967446185914],[114,284,66,-0.009521636772997718],[114,284,67,-0.010437998132827309],[114,284,68,-0.018467427596278233],[114,284,69,-0.020143916494932943],[114,284,70,-0.022958420616778365],[114,284,71,-0.02226701238424929],[114,284,72,-0.014672891015419702],[114,284,73,-0.008952932799688541],[114,284,74,-0.0029596432528738773],[114,284,75,0.004787667555329031],[114,284,76,0.004625474518558452],[114,284,77,-0.013460242974722699],[114,284,78,-0.029749870009747267],[114,284,79,-0.028911791658036822],[114,285,64,-0.017788953460157016],[114,285,65,-0.018838796831888414],[114,285,66,-0.009282280187565028],[114,285,67,-0.010312775708450994],[114,285,68,-0.01828073599662689],[114,285,69,-0.01997271254346949],[114,285,70,-0.022782228422609574],[114,285,71,-0.021982174858436784],[114,285,72,-0.014440396488050868],[114,285,73,-0.008842475649481738],[114,285,74,-0.0029656191822925093],[114,285,75,0.004754402762947818],[114,285,76,0.0046204956375554655],[114,285,77,-0.01336054419025364],[114,285,78,-0.029471837357239614],[114,285,79,-0.02856775133914399],[114,286,64,-0.017486518307978084],[114,286,65,-0.018517710661838795],[114,286,66,-0.009053573320888202],[114,286,67,-0.010197889170029244],[114,286,68,-0.018106886116581747],[114,286,69,-0.01981373520705391],[114,286,70,-0.02261873218844911],[114,286,71,-0.021711422314831058],[114,286,72,-0.01421894941670052],[114,286,73,-0.008738407908106259],[114,286,74,-0.002973645143171772],[114,286,75,0.004721616254913867],[114,286,76,0.004612862773350027],[114,286,77,-0.013273298433092572],[114,286,78,-0.02921460469034162],[114,286,79,-0.028244005970677194],[114,287,64,-0.01719458809755357],[114,287,65,-0.01820941090600393],[114,287,66,-0.008835196487601765],[114,287,67,-0.010093172013140137],[114,287,68,-0.017945766927866216],[114,287,69,-0.019666942011628583],[114,287,70,-0.022467933644288455],[114,287,71,-0.021454585927801164],[114,287,72,-0.01400832585312014],[114,287,73,-0.008640579357065565],[114,287,74,-0.0029836584527679097],[114,287,75,0.0046894371545619234],[114,287,76,0.004602800729663721],[114,287,77,-0.013198345079864875],[114,287,78,-0.028978011923662863],[114,287,79,-0.02794032894534546],[114,288,64,-0.016912918523429018],[114,288,65,-0.01791360142647563],[114,288,66,-0.008626837574998308],[114,288,67,-0.009998468297956184],[114,288,68,-0.017797275502916644],[114,288,69,-0.019532296879399703],[114,288,70,-0.02232983886984307],[114,288,71,-0.021211499292094885],[114,288,72,-0.01380830507528095],[114,288,73,-0.00854884235795808],[114,288,74,-0.0029955992917395117],[114,288,75,0.004657989223666863],[114,288,76,0.0045905210102874005],[114,288,77,-0.013135540859691213],[114,288,78,-0.028761913314550313],[114,288,79,-0.02765650351386293],[114,289,64,-0.016641265484840385],[114,289,65,-0.017629989905142335],[114,289,66,-0.008428193016007212],[114,289,67,-0.009913632283180505],[114,289,68,-0.01766131570173441],[114,289,69,-0.019409768423235194],[114,289,70,-0.0222044567085347],[114,289,71,-0.02098199747204332],[114,289,72,-0.013618669798036356],[114,289,73,-0.008463053160292479],[114,289,74,-0.0030094125188471267],[114,289,75,0.004627389030880458],[114,289,76,0.0045762203285172704],[114,289,77,-0.013084760893599601],[114,289,78,-0.02856617822320373],[114,289,79,-0.027392323366420127],[114,290,64,-0.016379400125994273],[114,290,65,-0.017358301662093796],[114,290,66,-0.008238975140489735],[114,290,67,-0.009838524695515756],[114,290,68,-0.017537784837780287],[114,290,69,-0.019299312856740074],[114,290,70,-0.022091782147073975],[114,290,71,-0.020765906025272035],[114,290,72,-0.013439206668764714],[114,290,73,-0.008383083839419719],[114,290,74,-0.0030250651641055143],[114,290,75,0.0045977276490953975],[114,290,76,0.004560065310995272],[114,290,77,-0.013045907332310279],[114,290,78,-0.028390693657031448],[114,290,79,-0.027147593097600564],[114,291,64,-0.016127100429685782],[114,291,65,-0.01709827181925849],[114,291,66,-0.00805890753020379],[114,291,67,-0.009773014166869414],[114,291,68,-0.017426580785783068],[114,291,69,-0.019200883312380807],[114,291,70,-0.02199180549509826],[114,291,71,-0.020563047074835944],[114,291,72,-0.01326970587770896],[114,291,73,-0.00830881534002797],[114,291,74,-0.0030425361939530587],[114,291,75,0.004569081547405527],[114,291,76,0.0045422017921609445],[114,291,77,-0.013018904272288405],[114,291,78,-0.02823536328030696],[114,291,79,-0.02692212844525417],[114,292,64,-0.015884142340335184],[114,292,65,-0.01684963708625201],[114,292,66,-0.007887720339127213],[114,292,67,-0.009716979199979046],[114,292,68,-0.017327610095452806],[114,292,69,-0.019114440355263475],[114,292,70,-0.021904522733329133],[114,292,71,-0.02037324616753473],[114,292,72,-0.01310996084633158],[114,292,73,-0.00824012994691705],[114,292,74,-0.0030618054421624754],[114,292,75,0.0045415243071125246],[114,292,76,0.00452276474465106],[114,292,77,-0.013003692393278893],[114,292,78,-0.028100106455463934],[114,292,79,-0.026715756670223596],[114,293,64,-0.01565029985355017],[114,293,65,-0.01661213581592767],[114,293,66,-0.007725150172966191],[114,293,67,-0.009670308102264264],[114,293,68,-0.01724078820434966],[114,293,69,-0.019039952315777382],[114,293,70,-0.021829935912110812],[114,293,71,-0.02019633251362213],[114,293,72,-0.012959768189699319],[114,293,73,-0.008176910977935862],[114,293,74,-0.003082853187401206],[114,293,75,0.004515127117695235],[114,293,76,0.004501878764566758],[114,293,77,-0.013000228846765816],[114,293,78,-0.027984858593527766],[114,293,79,-0.026528316963460672],[114,294,64,-0.015425345141249833],[114,294,65,-0.01638550808238821],[114,294,66,-0.0075709399602459275],[114,294,67,-0.009632898859013911],[114,294,68,-0.017166039542719017],[114,294,69,-0.018977395505230036],[114,294,70,-0.02176805343305412],[114,294,71,-0.020032139115365125],[114,294,72,-0.012818927627640555],[114,294,73,-0.008119042503274042],[114,294,74,-0.00310565980582801],[114,294,75,0.004489959186495936],[114,294,76,0.004479658489103869],[114,294,77,-0.0130084871639029],[114,294,78,-0.027889571472290084],[114,294,79,-0.026359660803540654],[114,295,64,-0.015209048628190773],[114,295,65,-0.016169495703850637],[114,295,66,-0.007424838772223763],[114,295,67,-0.009604658964132977],[114,295,68,-0.017103297603589092],[114,295,69,-0.01892675440950508],[114,295,70,-0.021718890306287285],[114,295,71,-0.019880502845096865],[114,295,72,-0.012687241840532102],[114,295,73,-0.008066409021778229],[114,295,74,-0.0031302053976829856],[114,295,75,0.004466088167463317],[114,295,76,0.004456209034585746],[114,295,77,-0.01302845713310447],[114,295,78,-0.02781421350875832],[114,295,79,-0.026209652263571716],[114,296,64,-0.01500117901917031],[114,296,65,-0.015963842209642753],[114,296,66,-0.007286601590987435],[114,296,67,-0.009585505207214746],[114,296,68,-0.017052504977331937],[114,296,69,-0.01888802186041395],[114,296,70,-0.021682468382660757],[114,296,71,-0.019741264471612712],[114,296,72,-0.012564516268200075],[114,296,73,-0.00801889509236307],[114,296,74,-0.0031564693859796955],[114,296,75,0.004443580609963161],[114,296,76,0.004431626455304738],[114,296,77,-0.0130601446460592],[114,296,78,-0.02775876998450952],[114,296,79,-0.026078168266786942],[114,297,64,-0.014801503276165324],[114,297,65,-0.01576829275053909],[114,297,66,-0.00715598902492523],[114,297,67,-0.009575363415478112],[114,297,68,-0.0170136133497711],[114,297,69,-0.018861199184382015],[114,297,70,-0.021658816560247908],[114,297,71,-0.01961426863369722],[114,297,72,-0.012450558850270382],[114,297,73,-0.007976384918431811],[114,297,74,-0.003184430085254607],[114,297,75,0.004422502428860945],[114,297,76,0.004405998223883471],[114,297,77,-0.013103571510615586],[114,297,78,-0.02772324322239272],[114,297,79,-0.025965098790020968],[114,298,64,-0.014609786605034621],[114,298,65,-0.015582594011400545],[114,298,66,-0.007032767029865509],[114,298,67,-0.009574168207639894],[114,298,68,-0.016986583521041168],[114,298,69,-0.01884629638582525],[114,298,70,-0.021647971021742513],[114,298,71,-0.01949936381629725],[114,298,72,-0.012345179762506492],[114,298,73,-0.007938761939004961],[114,298,74,-0.003214064293721019],[114,298,75,0.004402919342107116],[114,298,76,0.00437940367937071],[114,298,77,-0.01315877528312698],[114,298,78,-0.027707652766966982],[114,298,79,-0.02587034706802439],[114,299,64,-0.014425803920856952],[114,299,65,-0.015406505483058667],[114,299,66,-0.006916717883589841],[114,299,67,-0.009581873900809433],[114,299,68,-0.016971396484480452],[114,299,69,-0.018843343306145226],[114,299,70,-0.021649986347942834],[114,299,71,-0.01939641308209443],[114,299,72,-0.01224820181338937],[114,299,73,-0.007905919006503557],[114,299,74,-0.0032453574090129194],[114,299,75,0.004384886850535425],[114,299,76,0.00435190408893306],[114,299,77,-0.013225819406439765],[114,299,78,-0.027712045792413303],[114,299,79,-0.025793839965097546],[114,300,64,-0.014249355877665014],[114,300,65,-0.015239815215010872],[114,300,66,-0.006807655570657268],[114,300,67,-0.009598469761728321],[114,300,68,-0.016968068792219453],[114,300,69,-0.018852405019452997],[114,300,70,-0.021664950800786772],[114,300,71,-0.019305308882568744],[114,300,72,-0.01215947485441953],[114,300,73,-0.007877772532942322],[114,300,74,-0.0032783174764664147],[114,300,75,0.004368436324769973],[114,300,76,0.004323528864243925],[114,300,77,-0.013304807133326753],[114,300,78,-0.027736511237914575],[114,300,79,-0.02573554203290497],[114,301,64,-0.014080249922023448],[114,301,65,-0.015082320920185329],[114,301,66,-0.006705406849083295],[114,301,67,-0.009623961261819181],[114,301,68,-0.01697663424417455],[114,301,69,-0.018873563865986504],[114,301,70,-0.0216929685266067],[114,301,71,-0.01922595503446368],[114,301,72,-0.012078857611194748],[114,301,73,-0.007854244318664065],[114,301,74,-0.0033129571768173867],[114,301,75,0.004353592914130728],[114,301,76,0.004294293385231135],[114,301,77,-0.013395864028461806],[114,301,78,-0.02778116269498538],[114,301,79,-0.025695438495105995],[114,302,64,-0.013918297293605096],[114,302,65,-0.014933826896542175],[114,302,66,-0.006609808016389941],[114,302,67,-0.009658366918194326],[114,302,68,-0.01699714106227596],[114,302,69,-0.018906916878576645],[114,302,70,-0.021734157041859093],[114,302,71,-0.019158263845301206],[114,302,72,-0.01200621455626872],[114,302,73,-0.007835258338997592],[114,302,74,-0.0033492907005202386],[114,302,75,0.004340378640573172],[114,302,76,0.004264202087332231],[114,302,77,-0.013499135117158785],[114,302,78,-0.027846135859521955],[114,302,79,-0.02567353273582638],[114,303,64,-0.013763313079870216],[114,303,65,-0.014794143967685717],[114,303,66,-0.006520704670123224],[114,303,67,-0.009701718106129988],[114,303,68,-0.01702965202546592],[114,303,69,-0.018952576164974675],[114,303,70,-0.021788647647152513],[114,303,71,-0.019102156112711727],[114,303,72,-0.011941415624226449],[114,303,73,-0.007820740362092252],[114,303,74,-0.0033873334515117023],[114,303,75,0.00432881266873948],[114,303,76,0.0042332487421054615],[114,303,77,-0.013614784807408476],[114,303,78,-0.027931588728858495],[114,303,79,-0.025669846522322126],[114,304,64,-0.013615116265431559],[114,304,65,-0.014663089409553779],[114,304,66,-0.006437951455482274],[114,304,67,-0.009754058860272275],[114,304,68,-0.01707424460882604],[114,304,69,-0.019010669314660042],[114,304,70,-0.0218565858611902],[114,304,71,-0.019057561110265783],[114,304,72,-0.011884335901898106],[114,304,73,-0.00781061755094504],[114,304,74,-0.003427101752976722],[114,304,75,0.004318911560755768],[114,304,76,0.004201416723034045],[114,304,77,-0.013742996808493235],[114,304,78,-0.028037701782876782],[114,304,79,-0.025684420216222414],[114,305,64,-0.01347352977653834],[114,305,65,-0.014540486863119975],[114,305,66,-0.006361411799214332],[114,305,67,-0.00981544566275238],[114,305,68,-0.017131011126414946],[114,305,69,-0.019081339831095154],[114,305,70,-0.021938131875489576],[114,305,71,-0.01902441655940116],[114,305,72,-0.011834855292156811],[114,305,73,-0.007804818047886662],[114,305,74,-0.0034686125536459445],[114,305,75,0.004310689516782855],[114,305,76,0.004168679258113846],[114,305,77,-0.013883974043520503],[114,305,78,-0.028164678147329394],[114,305,79,-0.02571731297303377],[114,306,64,-0.013338380521090413],[114,306,65,-0.014426166232973981],[114,306,66,-0.00629095762878553],[114,306,67,-0.009885947216227771],[114,306,68,-0.01720005887733318],[114,306,69,-0.019164747590447385],[114,306,70,-0.022033461030818317],[114,306,71,-0.019002668587004275],[114,306,72,-0.011792858149630882],[114,306,73,-0.0078032705397496896],[114,306,74,-0.003511883133161826],[114,306,75,0.004304158602375679],[114,306,76,0.0041349996710066195],[114,306,77,-0.014037938552996683],[114,306,78,-0.028312743737395233],[114,306,79,-0.02576860292953534],[114,307,64,-0.01320949942458552],[114,307,65,-0.014319963571585846],[114,307,66,-0.006226469075698531],[114,307,67,-0.00996564419969103],[114,307,68,-0.017281510294462593],[114,307,69,-0.019261069327846086],[114,307,70,-0.022142764316362595],[114,307,71,-0.01899227166818073],[114,307,72,-0.011758232886557352],[114,307,73,-0.007805903801909874],[114,307,74,-0.003556930805075955],[114,307,75,0.004299328963735012],[114,307,76,0.0041003316127201945],[114,307,77,-0.014205131386340041],[114,307,78,-0.028482147379342477],[114,307,79,-0.025838387378645283],[114,308,64,-0.013086721462381736],[114,308,65,-0.014221720948992397],[114,308,66,-0.00616783416169274],[114,308,67,-0.010054629004736974],[114,308,68,-0.017375503095267822],[114,308,69,-0.019370499152298284],[114,308,70,-0.02226624889272705],[114,308,71,-0.018993188553717077],[114,308,72,-0.01173087154689391],[114,308,73,-0.00781264621936573],[114,308,74,-0.0036037726160717504],[114,308,75,0.004296209031963688],[114,308,76,0.004064619285953627],[114,308,77,-0.014385812478021936],[114,308,78,-0.02867316090803344],[114,308,79,-0.025926782931278394],[114,309,64,-0.01296988568861547],[114,309,65,-0.014131286307557778],[114,309,66,-0.00611494846641122],[114,309,67,-0.010153005449804667],[114,309,68,-0.017482190433962003],[114,309,69,-0.01949324909141591],[114,309,70,-0.022404138639919004],[114,309,71,-0.019005390181685265],[114,309,72,-0.011710669346685305],[114,309,73,-0.007823425282986032],[114,309,74,-0.0036524250400316208],[114,309,75,0.004294805717476316],[114,309,76,0.004027797664434036],[114,309,77,-0.014580260504798678],[114,309,78,-0.028886079237843382],[114,309,79,-0.02603392566463796],[114,310,64,-0.012858835262070498],[114,310,65,-0.014048513301372738],[114,310,66,-0.006067714774971275],[114,310,67,-0.010260888469744666],[114,310,68,-0.01760174105425469],[114,310,69,-0.01962954966713395],[114,310,70,-0.022556674731524794],[114,310,71,-0.01902885557258751],[114,310,72,-0.011697524178557355],[114,310,73,-0.007838167059026882],[114,310,74,-0.00370290366560404],[114,310,75,0.004295124595738161],[114,310,76,0.003989792709748587],[114,310,77,-0.014788772720279184],[114,310,78,-0.029121220404401776],[114,310,79,-0.026159971256296984],[114,311,64,-0.012753417469246865],[114,311,65,-0.013973261119772578],[114,311,66,-0.006026042703738432],[114,311,67,-0.010378403777910397],[114,311,68,-0.017734339441820846],[114,311,69,-0.019779650503626824],[114,311,70,-0.022724116236338045],[114,311,71,-0.01906357170738957],[114,311,72,-0.01169133607809917],[114,311,73,-0.007856795630005483],[114,311,74,-0.003755222875971669],[114,311,75,0.004297170085532306],[114,311,76,0.003950521588349975],[114,311,77,-0.015011664762864455],[114,311,78,-0.02937892557440707],[114,311,79,-0.02630509510333915],[114,312,64,-0.012653483744805374],[114,312,65,-0.013905394294346347],[114,312,66,-0.00598984830244972],[114,312,67,-0.010505687497804546],[114,312,68,-0.017880185975525344],[114,312,69,-0.01994382096862649],[114,312,70,-0.022906740748720882],[114,312,71,-0.019109533387713366],[114,312,72,-0.011692006649762969],[114,312,73,-0.007879232504991096],[114,312,74,-0.0038093955195622545],[114,312,75,0.0043009456209827076],[114,312,76,0.00390989289159047],[114,312,77,-0.01524927043287792],[114,312,78,-0.029659559020584765],[114,312,79,-0.026469492425714305],[114,313,64,-0.012558889689486154],[114,313,65,-0.013844782488702927],[114,313,66,-0.005959053630688146],[114,313,67,-0.010642885761157],[114,313,68,-0.018039497076336293],[114,313,69,-0.020122350849339467],[114,313,70,-0.02310484504899813],[114,313,71,-0.01916674307738743],[114,313,72,-0.01169943844978804],[114,313,73,-0.007905395997359581],[114,313,74,-0.0038654325704913],[114,313,75,0.004306453818587063],[114,313,76,0.003867806861813176],[114,313,77,-0.015501941434496706],[114,313,78,-0.029963508058685747],[114,313,79,-0.026653378352849335],[114,314,64,-0.012469495085525311],[114,314,65,-0.01379130027016165],[114,314,66,-0.005933586306579575],[114,314,67,-0.010790154269173064],[114,314,68,-0.018212505352761928],[114,314,69,-0.02031555106414568],[114,314,70,-0.023318745795192965],[114,314,71,-0.019235210724482435],[114,314,72,-0.01171353432354581],[114,314,73,-0.007935200568061079],[114,314,74,-0.003923342777589986],[114,314,75,0.004313696640527337],[114,314,76,0.0038241556276872053],[114,314,77,-0.015770047077903592],[114,314,78,-0.03029118294324838],[114,314,79,-0.026856987992434314],[114,315,64,-0.012385163909485696],[114,315,65,-0.013744826862407297],[114,315,66,-0.005913379025438383],[114,315,67,-0.010947657813538778],[114,315,68,-0.018399459741519845],[114,315,69,-0.020523754411211324],[114,315,70,-0.023548780247385694],[114,315,71,-0.01931495356285941],[114,315,72,-0.011734196694575049],[114,315,73,-0.007968556132440175],[114,315,74,-0.0039831323009247395],[114,315,75,0.004322675555549046],[114,315,76,0.003778823452135849],[114,315,77,-0.016053973936879035],[114,315,78,-0.030643016718659218],[114,315,79,-0.027080576480156392],[114,316,64,-0.012305764342313199],[114,316,65,-0.013705245878034978],[114,316,66,-0.0058983690459595405],[114,316,67,-0.01111556975364191],[114,316,68,-0.018600625642030216],[114,316,69,-0.020747316355093547],[114,316,70,-0.023795307025943232],[114,316,71,-0.019405995892171478],[114,316,72,-0.01176132680247079],[114,316,73,-0.008005367328660352],[114,316,74,-0.004044804334778925],[114,316,75,0.004333391698723453],[114,316,76,0.0037316869963640222],[114,316,77,-0.016354125456871094],[114,316,78,-0.03101946502186827],[114,316,79,-0.027324419009007426],[114,317,64,-0.012231168776321428],[114,317,65,-0.013672445029796046],[114,317,66,-0.00588849764144214],[114,317,67,-0.011294071446352867],[114,317,68,-0.018816285043201705],[114,317,69,-0.020986615852337836],[114,317,70,-0.024058706904812998],[114,317,71,-0.019508368835163287],[114,317,72,-0.011794823886691992],[114,317,73,-0.008045532745809754],[114,317,74,-0.004108358716149656],[114,317,75,0.004345846031406536],[114,317,76,0.003682615603619079],[114,317,77,-0.016670921508419832],[114,317,78,-0.03142100583293433],[114,317,79,-0.02758881083663399],[114,318,64,-0.012161253818672035],[114,318,65,-0.013646315819224661],[114,318,66,-0.005883709513409387],[114,318,67,-0.011483351624595331],[114,318,68,-0.01904673664083742],[114,318,69,-0.021242056216961163],[114,318,70,-0.024339383640985503],[114,318,71,-0.019622110071004284],[114,318,72,-0.011834584313255432],[114,318,73,-0.008088944109790183],[114,318,74,-0.004173791517880857],[114,318,75,0.004360039502731479],[114,318,76,0.0036314716064612205],[114,318,77,-0.017004797880650027],[114,318,78,-0.03184813916939127],[114,318,79,-0.02787406726902092],[114,319,64,-0.012095899382743781],[114,319,65,-0.013626757873885079],[114,319,66,-0.005883957524160921],[114,319,67,-0.011683603381417343],[114,319,68,-0.01929228572098785],[114,319,69,-0.021514052035681595],[114,319,70,-0.0246377515225216],[114,319,71,-0.019747270651356445],[114,319,72,-0.011880519733847898],[114,319,73,-0.00813550188900847],[114,319,74,-0.004241105288403074],[114,319,75,0.004375960502360167],[114,319,76,0.003578099171512196],[114,319,77,-0.01735620923932128],[114,319,78,-0.03230138319084682],[114,319,79,-0.028180514427212408],[115,-64,64,-0.07944195107563326],[115,-64,65,-0.06235527132504923],[115,-64,66,-0.07390436236261201],[115,-64,67,-0.05217557876055381],[115,-64,68,-0.017906022013611873],[115,-64,69,5.961454924277481E-4],[115,-64,70,-0.007970078679474446],[115,-64,71,-0.008032382862719139],[115,-64,72,-0.13821944886171988],[115,-64,73,-0.33210568695289705],[115,-64,74,-0.33921882493183314],[115,-64,75,-0.25536029876935973],[115,-64,76,-0.2029384116270846],[115,-64,77,-0.20739490549338044],[115,-64,78,-0.16902358819572924],[115,-64,79,-0.14040109481863436],[115,-63,64,-0.07567200589340722],[115,-63,65,-0.05977867512324169],[115,-63,66,-0.07266882142231565],[115,-63,67,-0.052089746310595854],[115,-63,68,-0.019037083603601436],[115,-63,69,-7.683615419667105E-4],[115,-63,70,-0.008626083459169568],[115,-63,71,-0.007965446347399346],[115,-63,72,-0.1347619585517846],[115,-63,73,-0.32406536501212463],[115,-63,74,-0.33113944702408904],[115,-63,75,-0.24924432795936471],[115,-63,76,-0.19850583178388104],[115,-63,77,-0.20372182516224913],[115,-63,78,-0.16653993467504632],[115,-63,79,-0.1386753371400694],[115,-62,64,-0.0720433514213792],[115,-62,65,-0.05728053013993503],[115,-62,66,-0.07143598000890218],[115,-62,67,-0.051978393962251575],[115,-62,68,-0.02013863005411541],[115,-62,69,-0.0021151412952397255],[115,-62,70,-0.00928616088336195],[115,-62,71,-0.007936021199739093],[115,-62,72,-0.13141232199640562],[115,-62,73,-0.3162111477598968],[115,-62,74,-0.3232370785333264],[115,-62,75,-0.24327459499152032],[115,-62,76,-0.19420331506389343],[115,-62,77,-0.20015017621747697],[115,-62,78,-0.16411385450424731],[115,-62,79,-0.13697802515937116],[115,-61,64,-0.06855229048253789],[115,-61,65,-0.05485924113182298],[115,-61,66,-0.07020626744888635],[115,-61,67,-0.051842265204863465],[115,-61,68,-0.021210349804492958],[115,-61,69,-0.003442961460322648],[115,-61,70,-0.009948591350221173],[115,-61,71,-0.007941634893770134],[115,-61,72,-0.12816695590443064],[115,-61,73,-0.30853882776296865],[115,-61,74,-0.315508212731769],[115,-61,75,-0.23744779674087746],[115,-61,76,-0.1900267420537447],[115,-61,77,-0.196676394772599],[115,-61,78,-0.16174318662958245],[115,-61,79,-0.13530802664372993],[115,-60,64,-0.06519524958979417],[115,-60,65,-0.052513306354639466],[115,-60,66,-0.06898017045071055],[115,-60,67,-0.05168215698322745],[115,-60,68,-0.022252027092359104],[115,-60,69,-0.00475071817127292],[115,-60,70,-0.010611787209170297],[115,-60,71,-0.007979946364712163],[115,-60,72,-0.1250223655076401],[115,-60,73,-0.30104419395873044],[115,-60,74,-0.307949299341469],[115,-60,75,-0.23176060659677689],[115,-60,76,-0.18597200930507043],[115,-60,77,-0.19329691569675786],[115,-60,78,-0.15942575630624314],[115,-60,79,-0.1336641809913279],[115,-59,64,-0.06196867942637748],[115,-59,65,-0.05024121673520259],[115,-59,66,-0.06775814002954857],[115,-59,67,-0.05149883462206572],[115,-59,68,-0.023263457746191457],[115,-59,69,-0.006037356194555894],[115,-59,70,-0.011274224393785169],[115,-59,71,-0.008048692169522417],[115,-59,72,-0.12197510389529662],[115,-59,73,-0.29372300075214436],[115,-59,74,-0.300556722134711],[115,-59,75,-0.22620966361470643],[115,-59,76,-0.18203502863889987],[115,-59,77,-0.19000817653706786],[115,-59,78,-0.15715937782927725],[115,-59,79,-0.13204530528360048],[115,-58,64,-0.058869059411154265],[115,-58,65,-0.048041459029976946],[115,-58,66,-0.06654059228333357],[115,-58,67,-0.05129303124621642],[115,-58,68,-0.02424444678073298],[115,-58,69,-0.007301865824748779],[115,-58,70,-0.011934439641393126],[115,-58,71,-0.008145684419147122],[115,-58,72,-0.11902177299350515],[115,-58,73,-0.28657097399659576],[115,-58,74,-0.29332680551716395],[115,-58,75,-0.22079157704439756],[115,-58,76,-0.17821172917504585],[115,-58,77,-0.1868066183712709],[115,-58,78,-0.15494185424961976],[115,-58,79,-0.1304501933831834],[115,-57,64,-0.055892901952690234],[115,-57,65,-0.045912518889385315],[115,-57,66,-0.06532790930961004],[115,-57,67,-0.05106544734195115],[115,-57,68,-0.025194805993674598],[115,-57,69,-0.008543279691403713],[115,-57,70,-0.012591027614699933],[115,-57,71,-0.008268808542413717],[115,-57,72,-0.11615902436778436],[115,-57,73,-0.2795838168398082],[115,-57,74,-0.28625582103022895],[115,-57,75,-0.21550293074580773],[115,-57,76,-0.17449805910741029],[115,-57,77,-0.1836886864380938],[115,-57,78,-0.1527709770045717],[115,-57,79,-0.12887761505277226],[115,-56,64,-0.05303675634468481],[115,-56,65,-0.0438528837728103],[115,-56,66,-0.0641204402139067],[115,-56,67,-0.05081675042067907],[115,-56,68,-0.026114351542210475],[115,-56,69,-0.009760669466924082],[115,-56,70,-0.013242637918337501],[115,-56,71,-0.00841602087597232],[115,-56,72,-0.11338355984135724],[115,-56,73,-0.27275721541750575],[115,-56,74,-0.27933999375162344],[115,-56,75,-0.21034028748302339],[115,-56,76,-0.17088998724071908],[115,-56,77,-0.18065083056939538],[115,-56,78,-0.1506445254805061],[115,-56,79,-0.12732631510813008],[115,-55,64,-0.05029721230629046],[115,-55,65,-0.04186104570936605],[115,-55,66,-0.06291850220476797],[115,-55,67,-0.05054757478616276],[115,-55,68,-0.02700290151670216],[115,-55,69,-0.010953142501399336],[115,-55,70,-0.013887972033991345],[115,-55,71,-0.008585346099270577],[115,-55,72,-0.11069213194221635],[115,-55,73,-0.2660868443970121],[115,-55,74,-0.2725755085893517],[115,-55,75,-0.20530019309553665],[115,-55,76,-0.16738350430734986],[115,-55,77,-0.17768950544839682],[115,-55,78,-0.14856026652530926],[115,-55,79,-0.12579501261603865],[115,-54,64,-0.047670903171862476],[115,-54,65,-0.03993550390005558],[115,-54,66,-0.061722381770394526],[115,-54,67,-0.050258521406029995],[115,-54,68,-0.027860273528278176],[115,-54,69,-0.012119838409734417],[115,-54,70,-0.01452578019709716],[115,-54,71,-0.00877487453321863],[115,-54,72,-0.10808154419246674],[115,-54,73,-0.2595683723747025],[115,-54,74,-0.26595851646629154],[115,-54,75,-0.20037918054814963],[115,-54,76,-0.16397462408435562],[115,-54,77,-0.1748011707195664],[115,-54,78,-0.14651595392894715],[115,-54,79,-0.12428240014866007],[115,-53,64,-0.04515454915734122],[115,-53,65,-0.03807480191684012],[115,-53,66,-0.06053239227522261],[115,-53,67,-0.049950205281731636],[115,-53,68,-0.028686310065812404],[115,-53,69,-0.013259938700521088],[115,-53,70,-0.015154873447970622],[115,-53,71,-0.008982768503118436],[115,-53,72,-0.10554876111122054],[115,-53,73,-0.2531977354152462],[115,-53,74,-0.2594854202342082],[115,-53,75,-0.19557398848660246],[115,-53,76,-0.16065956370343926],[115,-53,77,-0.17198248628351226],[115,-53,78,-0.14450949477862288],[115,-53,79,-0.12278728727881962],[115,-52,64,-0.042745211956883876],[115,-52,65,-0.03627774921818047],[115,-52,66,-0.05934924903141565],[115,-52,67,-0.04962357712003703],[115,-52,68,-0.029481075590941243],[115,-52,69,-0.014372765951790534],[115,-52,70,-0.015774232124565867],[115,-52,71,-0.009207325083624613],[115,-52,72,-0.10309163077820942],[115,-52,73,-0.24697290207510433],[115,-52,74,-0.2531547164865919],[115,-52,75,-0.19088297374652705],[115,-52,76,-0.15743592977601154],[115,-52,77,-0.16923161193742073],[115,-52,78,-0.1425400639650553],[115,-52,79,-0.12130956574679756],[115,-51,64,-0.04044008710411695],[115,-51,65,-0.034543248490646085],[115,-51,66,-0.058173833303777726],[115,-51,67,-0.04927974236699372],[115,-51,68,-0.030244777644799676],[115,-51,69,-0.015457767192349507],[115,-51,70,-0.01638296718502451],[115,-51,71,-0.009446947934407222],[115,-51,72,-0.10070840832415329],[115,-51,73,-0.24089270097322066],[115,-51,74,-0.24696577342303627],[115,-51,75,-0.18630517548688533],[115,-51,76,-0.15430195536032937],[115,-51,77,-0.16654739874445681],[115,-51,78,-0.1406074237870108],[115,-51,79,-0.11984962763658547],[115,-50,64,-0.038236356163089034],[115,-50,65,-0.03287016864847271],[115,-50,66,-0.05700699223370271],[115,-50,67,-0.04891979618404311],[115,-50,68,-0.03097767594195249],[115,-50,69,-0.016514475220700424],[115,-50,70,-0.016980271152872043],[115,-50,71,-0.009700117392891323],[115,-50,72,-0.09839736492791824],[115,-50,73,-0.2349558634450756],[115,-50,74,-0.24091783255586027],[115,-50,75,-0.18183955035285532],[115,-50,76,-0.15125586523507728],[115,-50,77,-0.16392870167083265],[115,-50,78,-0.13871133788307857],[115,-50,79,-0.11840785959008288],[115,-49,64,-0.036131191420577705],[115,-49,65,-0.03125734741984651],[115,-49,66,-0.05584953741067445],[115,-49,67,-0.04854482108321302],[115,-49,68,-0.03168007980751417],[115,-49,69,-0.01754250620326593],[115,-49,70,-0.01756541609523841],[115,-49,71,-0.00996539010910776],[115,-49,72,-0.09615678811856643],[115,-49,73,-0.22916102450655523],[115,-49,74,-0.2350100099498826],[115,-49,75,-0.1774849738731009],[115,-49,76,-0.1482958766522646],[115,-49,77,-0.1613743785421088],[115,-49,78,-0.13685156889752584],[115,-49,79,-0.11698463976658788],[115,-48,64,-0.0341217611879102],[115,-48,65,-0.029703594577235957],[115,-48,66,-0.05470224463296957],[115,-48,67,-0.04815588554327024],[115,-48,68,-0.03235234604362973],[115,-48,69,-0.018541557324444614],[115,-48,70,-0.01813775170638658],[115,-48,71,-0.010241398641572716],[115,-48,72,-0.09398498403480905],[115,-48,73,-0.22350672896519896],[115,-48,74,-0.22924130289749292],[115,-48,75,-0.17324024596078882],[115,-48,76,-0.14542020331780312],[115,-48,77,-0.15888329254423036],[115,-48,78,-0.13502787926077586],[115,-48,79,-0.11558033757652174],[115,-47,64,-0.03220523489746026],[115,-47,65,-0.028207695114250003],[115,-47,66,-0.053565853768639086],[115,-47,67,-0.04775404270736433],[115,-47,68,-0.032994876728424896],[115,-47,69,-0.019511404281125265],[115,-47,70,-0.018696703237955182],[115,-47,71,-0.010526850858041163],[115,-47,72,-0.09188027951649386],[115,-47,73,-0.21799143745866903],[115,-47,74,-0.22361059657861743],[115,-47,75,-0.1691040963402782],[115,-47,76,-0.1426270591337576],[115,-47,77,-0.156454314515482],[115,-47,78,-0.13324003188437783],[115,-47,79,-0.11419531342742395],[115,-46,64,-0.03037878798661591],[115,-46,65,-0.026768412361291526],[115,-46,66,-0.052441068713934086],[115,-46,67,-0.04734032916415006],[115,-46,68,-0.0336081169597702],[115,-46,69,-0.02045189863983973],[115,-46,70,-0.01924176929285823],[115,-46,71,-0.010820529154781915],[115,-46,72,-0.0898410240324807],[115,-46,73,-0.2126135324078823],[115,-46,74,-0.21811667068690901],[115,-46,75,-0.16507518988657371],[115,-46,76,-0.13991466170436812],[115,-46,77,-0.15408632503614933],[115,-46,78,-0.1314877907759326],[115,-46,79,-0.11282991848502746],[115,-45,64,-0.028639606562906397],[115,-45,65,-0.0253844910327029],[115,-45,66,-0.051328557446002294],[115,-45,67,-0.04691576381387439],[115,-45,68,-0.03419255255569019],[115,-45,69,-0.0213629650741827],[115,-45,70,-0.01977251949924839],[115,-45,71,-0.011121289507842679],[115,-45,72,-0.08786559144944904],[115,-45,73,-0.20737132387297338],[115,-45,74,-0.21275820600439818],[115,-45,75,-0.16115213186548655],[115,-45,76,-0.1372812356085652],[115,-45,77,-0.15177821632292482],[115,-45,78,-0.1297709215793301],[115,-45,79,-0.11148449445191576],[115,-44,64,-0.026984891845143553],[115,-44,65,-0.024054660198836796],[115,-44,66,-0.0502289521666454],[115,-44,67,-0.046481346820671676],[115,-44,68,-0.03474870772296244],[115,-44,69,-0.02224459849978747],[115,-44,70,-0.02028859208067842],[115,-44,71,-0.011428060369913083],[115,-44,72,-0.08595238164672932],[115,-44,73,-0.20226305530131977],[115,-44,74,-0.2075337909080557],[115,-44,75,-0.15733347306356046],[115,-44,76,-0.13472501544245497],[115,-44,77,-0.14952889393546706],[115,-44,78,-0.12808919204570507],[115,-44,79,-0.11015937336614601],[115,-43,64,-0.025411864376471704],[115,-43,65,-0.022777636177090776],[115,-43,66,-0.04914284953380425],[115,-43,67,-0.04603805865200997],[115,-43,68,-0.03527714270504795],[115,-43,69,-0.023096861123657962],[115,-43,70,-0.020789691338114223],[115,-43,71,-0.011739841426230697],[115,-43,72,-0.08409982198247717],[115,-43,73,-0.1972869091577082],[115,-43,74,-0.20244192779279102],[115,-43,75,-0.15361771479779926],[115,-43,76,-0.13224424863590684],[115,-43,77,-0.14733727830280277],[115,-43,78,-0.126442372440487],[115,-43,79,-0.10885487742204421],[115,-42,64,-0.023917768005986044],[115,-42,65,-0.021552125336339722],[115,-42,66,-0.04807081097711795],[115,-42,67,-0.04558685920570043],[115,-42,68,-0.03577845141984565],[115,-42,69,-0.02391987942391633],[115,-42,70,-0.021275585058783582],[115,-42,71,-0.012055702222694304],[115,-42,72,-0.0823063686166561],[115,-42,73,-0.19244101242745804],[115,-42,74,-0.19748103939633443],[115,-42,75,-0.15000331379603615],[115,-42,76,-0.12983719804775398],[115,-42,77,-0.1452023060772639],[115,-42,78,-0.12483023589167187],[115,-42,79,-0.10757131881501154],[115,-41,64,-0.02249987363671427],[115,-41,65,-0.020376826809953348],[115,-41,66,-0.0470133630939574],[115,-41,67,-0.04512868702472226],[115,-41,68,-0.036253259097432565],[115,-41,69,-0.02471384107558013],[115,-41,70,-0.02174610186643902],[115,-41,71,-0.012374780679282053],[115,-41,72,-0.08057050769665743],[115,-41,73,-0.18772344198434085],[115,-41,74,-0.19264947501270085],[115,-41,75,-0.14648868693988282],[115,-41,76,-0.12750214434476806],[115,-41,77,-0.14312293132392628],[115,-41,78,-0.12325255868445928],[115,-41,79,-0.10630899961209635],[115,-40,64,-0.021155482738626587],[115,-40,65,-0.019250435113138533],[115,-40,66,-0.04597099812223995],[115,-40,67,-0.04466445859982084],[115,-40,68,-0.036702219927468735],[115,-40,69,-0.025478991837361332],[115,-40,70,-0.022201128527028692],[115,-40,71,-0.012696281501604978],[115,-40,72,-0.07889075641153032],[115,-40,73,-0.18313222981592087],[115,-40,74,-0.1879455165819465],[115,-40,75,-0.14307221586308227],[115,-40,76,-0.1252373881699959],[115,-40,77,-0.1410981265535889],[115,-40,78,-0.12170912050726608],[115,-40,79,-0.10506821164987531],[115,-39,64,-0.019881930626068852],[115,-39,65,-0.018171642660751795],[115,-39,66,-0.044944174486084724],[115,-39,67,-0.04419506775935099],[115,-39,68,-0.037126014725223186],[115,-39,69,-0.02621563241362341],[115,-39,70,-0.022640607222995865],[115,-39,71,-0.013019474503007599],[115,-39,72,-0.077265663920852],[115,-39,73,-0.17866536809970482],[115,-39,74,-0.18336738464492636],[115,-39,75,-0.13975225139889116],[115,-39,76,-0.12304125210630337],[115,-39,77,-0.13912688360721828],[115,-39,78,-0.12019970465382603],[115,-39,79,-0.10384923646083757],[115,-38,64,-0.018676589499978455],[115,-38,65,-0.01713914218242581],[115,-38,66,-0.04393331741048312],[115,-38,67,-0.04372138514574894],[115,-38,68,-0.03752534862484501],[115,-38,69,-0.026924115305128962],[115,-38,70,-0.023064532808951124],[115,-38,71,-0.013343692849431838],[115,-38,72,-0.07569381216447309],[115,-38,73,-0.1743208141243673],[115,-38,74,-0.17891324415288198],[115,-38,75,-0.13652711787108263],[115,-38,76,-0.12091208244143127],[115,-38,77,-0.1372082143999116],[115,-38,78,-0.11872409818605259],[115,-38,79,-0.10265234522939214],[115,-37,64,-0.017536871256035227],[115,-37,65,-0.016151629032379114],[115,-37,66,-0.042938819601100305],[115,-37,67,-0.043244257777720244],[115,-37,68,-0.03790094880792047],[115,-37,69,-0.02760484166146458],[115,-37,70,-0.023472950060789425],[115,-37,71,-0.013668331238901458],[115,-37,72,-0.07417381655947754],[115,-37,73,-0.17009649505113636],[115,-37,74,-0.17458121012274946],[115,-37,75,-0.13339511722401812],[115,-37,76,-0.11884825074114184],[115,-37,77,-0.13534115153235435],[115,-37,78,-0.11728209206213268],[115,-37,79,-0.10147779877839508],[115,-36,64,-0.01646023006047443],[115,-36,65,-0.01520780339163566],[115,-36,66,-0.04196104198514723],[115,-36,67,-0.042764508696833646],[115,-36,68,-0.03825356227466151],[115,-36,69,-0.028258258147152656],[115,-36,70,-0.023865950929511888],[115,-36,71,-0.013992844026958464],[115,-36,72,-0.07270432659060758],[115,-36,73,-0.16599031251104077],[115,-36,74,-0.17036935312994259],[115,-36,75,-0.13035453298790392],[115,-36,76,-0.11684815523712543],[115,-36,77,-0.13352474877752216],[115,-36,78,-0.11587348123398468],[115,-36,79,-0.10032584758677064],[115,-35,64,-0.015444164696175398],[115,-35,65,-0.01430637236107073],[115,-35,66,-0.04100031450946269],[115,-35,67,-0.04228293669719291],[115,-35,68,-0.03858395366473172],[115,-35,69,-0.028884853832925127],[115,-35,70,-0.024243671810518456],[115,-35,71,-0.014316743309137432],[115,-35,72,-0.07128402630057894],[115,-35,73,-0.1620001470346063],[115,-35,74,-0.16627570463150426],[115,-35,75,-0.1274036340762837],[115,-35,76,-0.11491022203669171],[115,-35,77,-0.13175808145042472],[115,-35,78,-0.11449806471818172],[115,-35,79,-0.09919673183877392],[115,-34,64,-0.01448622068214803],[115,-34,65,-0.013446051944028191],[115,-34,66,-0.040056936991784274],[115,-34,67,-0.04180031613645892],[115,-34,68,-0.03889290313396963],[115,-34,69,-0.029485157122698502],[115,-34,70,-0.02460629083829415],[115,-34,71,-0.014639596971002568],[115,-34,72,-0.06991163468660269],[115,-34,73,-0.1581238623111947],[115,-34,74,-0.16229826211336515],[115,-34,75,-0.12454067841343364],[115,-34,76,-0.11303290616125163],[115,-34,77,-0.13004024666836111],[115,-34,78,-0.11315564564405028],[115,-34,79,-0.09809068150510412],[115,-33,64,-0.013583992170273246],[115,-33,65,-0.012625568917854615],[115,-33,66,-0.03913118002138154],[115,-33,67,-0.04131739682648232],[115,-33,68,-0.03918120429290635],[115,-33,69,-0.030059732726214188],[115,-33,70,-0.024954025215873355],[115,-33,71,-0.01496102671594238],[115,-33,72,-0.0685859060095005],[115,-33,73,-0.15435930927594502],[115,-33,74,-0.15843499405647066],[115,-33,75,-0.12176391639014075],[115,-33,76,-0.1112146924208199],[115,-33,77,-0.12837036350911],[115,-33,78,-0.11184603128257803],[115,-33,79,-0.0970079164560404],[115,-32,64,-0.012735123623531927],[115,-32,65,-0.011843662593949379],[115,-32,66,-0.03822328590506749],[115,-32,67,-0.040834904001424845],[115,-32,68,-0.03944966221222521],[115,-32,69,-0.030609178686357687],[115,-32,70,-0.025287128587598795],[115,-32,71,-0.015280706080292602],[115,-32,72,-0.06730563002160538],[115,-32,73,-0.15070433002278658],[115,-32,74,-0.15468384471728272],[115,-32,75,-0.11907159414685661],[115,-32,76,-0.10945409613164833],[115,-32,77,-0.1267475730740886],[115,-32,78,-0.11056903305935624],[115,-32,79,-0.09594864660643877],[115,-31,64,-0.01193731128061884],[115,-31,65,-0.011099086466497286],[115,-31,66,-0.03733346965481807],[115,-31,67,-0.04035353836124171],[115,-31,68,-0.03969909149991864],[115,-31,69,-0.031134123469563395],[115,-31,70,-0.02560588846314875],[115,-31,71,-0.015598358445014697],[115,-31,72,-0.06606963211970106],[115,-31,73,-0.14715676154274465],[115,-31,74,-0.1510427387191588],[115,-31,75,-0.11646195668397306],[115,-31,76,-0.10774966368422945],[115,-31,77,-0.1251710384633875],[115,-31,78,-0.10932446655466571],[115,-31,79,-0.09491307209238622],[115,-30,64,-0.011188304412274598],[115,-30,65,-0.010390609750430276],[115,-30,66,-0.036461920013299697],[115,-30,67,-0.03987397618826908],[115,-30,68,-0.0399303144543883],[115,-30,69,-0.031635223126979736],[115,-30,70,-0.025910623700125607],[115,-30,71,-0.015913755052659188],[115,-30,72,-0.06487677342913377],[115,-30,73,-0.1437144392872993],[115,-30,74,-0.14750958545188228],[115,-30,75,-0.11393325079952342],[115,-30,76,-0.10609997296886094],[115,-30,77,-0.12363994466931769],[115,-30,78,-0.10811215149357176],[115,-30,79,-0.09390138347915608],[115,-29,64,-0.010485906374970358],[115,-29,65,-0.009717018809407587],[115,-29,66,-0.03560880051354182],[115,-29,67,-0.03939686953437936],[115,-29,68,-0.0401441592970519],[115,-29,69,-0.03211315853318467],[115,-29,70,-0.02620168205170462],[115,-29,71,-0.016226713037740575],[115,-29,72,-0.06372595082503713],[115,-29,73,-0.14037520055704492],[115,-29,74,-0.1440822832773335],[115,-29,75,-0.11148372785506988],[115,-29,76,-0.10450363366578595],[115,-29,77,-0.12215349839470231],[115,-29,78,-0.1069319117285317],[115,-29,79,-0.09291376199984878],[115,-28,64,-0.009827975468058789],[115,-28,65,-0.009077118475080508],[115,-28,66,-0.03477425056924505],[115,-28,67,-0.03892284647623222],[115,-28,68,-0.040341458487691356],[115,-28,69,-0.032568632708680496],[115,-28,70,-0.02647943778532262],[115,-28,71,-0.016537093478274527],[115,-28,72,-0.06261609689657552],[115,-28,73,-0.13713688771648166],[115,-28,74,-0.14075872354009938],[115,-28,75,-0.1091116463711255],[115,-28,76,-0.10295928740692038],[115,-28,77,-0.1207109278019505],[115,-28,78,-0.10578357521689542],[115,-28,79,-0.09195037982408907],[115,-27,64,-0.009212425600836117],[115,-27,65,-0.008469733259224949],[115,-27,66,-0.03395838659229991],[115,-27,67,-0.03845251143603563],[115,-27,68,-0.04052304712525865],[115,-27,69,-0.033002368231671284],[115,-27,70,-0.02674428937773837],[115,-27,71,-0.016844799475731403],[115,-27,72,-0.06154617985998902],[115,-27,73,-0.1339973512362833],[115,-27,74,-0.1375367943825408],[115,-27,75,-0.10681527445393536],[115,-27,76,-0.10146560781604395],[115,-27,77,-0.11931148219863212],[115,-27,78,-0.10466697399542746],[115,-27,79,-0.09101140035601595],[115,-26,64,-0.008637226776097743],[115,-26,65,-0.007893708460498037],[115,-26,66,-0.03316130313409633],[115,-26,67,-0.03798644556504982],[115,-26,68,-0.04068976143627247],[115,-26,69,-0.033415104743825745],[115,-26,70,-0.026996657291063566],[115,-26,71,-0.017149774270061858],[115,-26,72,-0.060515203425962324],[115,-26,73,-0.13095445256471636],[115,-26,74,-0.1344143843643809],[115,-26,75,-0.10459289205574697],[115,-26,76,-0.10002130043404937],[115,-26,77,-0.11795443166482239],[115,-26,78,-0.10358194415363693],[115,-26,79,-0.09009697856059191],[115,-25,64,-0.008100405397125454],[115,-25,65,-0.00734791116797316],[115,-25,66,-0.032383074047463246],[115,-25,67,-0.03752520718715695],[115,-25,68,-0.04084243735263289],[115,-25,69,-0.03380759655420579],[115,-25,70,-0.027236981833889177],[115,-25,71,-0.01745199939607484],[115,-25,72,-0.05952220662677946],[115,-25,73,-0.12800606683040167],[115,-25,74,-0.13138938588758625],[115,-25,75,-0.10244279307118773],[115,-25,76,-0.09862510253577297],[115,-25,77,-0.1166390666272748],[115,-25,78,-0.10252832580759134],[115,-25,79,-0.08920726131727147],[115,-24,64,-0.007600044405235346],[115,-24,65,-0.006831231163857018],[115,-24,66,-0.031623753666200245],[115,-24,67,-0.03706933229975571],[115,-24,68,-0.040981909180210246],[115,-24,69,-0.03418061034486526],[115,-24,70,-0.027465721111037705],[115,-24,71,-0.01775149288697169],[115,-24,72,-0.05856626360857605],[115,-24,73,-0.12515008537901015],[115,-24,74,-0.1284596984278974],[115,-24,75,-0.1003632872727067],[115,-24,76,-0.09727578284468587],[115,-24,77,-0.11536469738509211],[115,-24,78,-0.1015059630756261],[115,-24,79,-0.08834238779995095],[115,-23,64,-0.0071342832550230495],[115,-23,65,-0.006342581727892374],[115,-23,66,-0.03088337799920769],[115,-23,67,-0.036619335129140465],[115,-23,68,-0.04110900835908269],[115,-23,69,-0.03453492298093097],[115,-23,70,-0.02768334906482484],[115,-23,71,-0.01804830753026448],[115,-23,72,-0.057646483393704026],[115,-23,73,-0.12238441814671507],[115,-23,74,-0.12562323157478558],[115,-23,75,-0.09835270208824186],[115,-23,76,-0.09597214115141327],[115,-23,77,-0.11413065359115494],[115,-23,78,-0.100514704057083],[115,-23,79,-0.08750248988198246],[115,-22,64,-0.006701317734678055],[115,-22,65,-0.005880900346277432],[115,-22,66,-0.030161965936487612],[115,-22,67,-0.03617570873762421],[115,-22,68,-0.0412245623160032],[115,-22,69,-0.03487131942748473],[115,-22,70,-0.02789035361028874],[115,-22,71,-0.018342529180962196],[115,-22,72,-0.056762009618165125],[115,-22,73,-0.1197069958736519],[115,-22,74,-0.12287790788219863],[115,-22,75,-0.09640938422463666],[115,-22,76,-0.09471300784187185],[115,-22,77,-0.11293628369328346],[115,-22,78,-0.09955440081507257],[115,-22,79,-0.08668769256504054],[115,-21,64,-0.006299399638795385],[115,-21,65,-0.005445149328102803],[115,-21,66,-0.02945952046443976],[115,-21,67,-0.03573892567967449],[115,-21,68,-0.04132939340930782],[115,-21,69,-0.03519059077500079],[115,-21,70,-0.028087234866339315],[115,-21,71,-0.01863427513646141],[115,-21,72,-0.05591202024887957],[115,-21,73,-0.11711577216093219],[115,-21,74,-0.12022166553291368],[115,-21,75,-0.09453170114056043],[115,-21,76,-0.09349724334054696],[115,-21,77,-0.11178095433875376],[115,-21,78,-0.0986249093640471],[115,-21,79,-0.08589811443057523],[115,-20,64,-0.005926836301013808],[115,-20,65,-0.005034316332349406],[115,-20,66,-0.028776029887947682],[115,-20,67,-0.03530943870427387],[115,-20,68,-0.04142431796605424],[115,-20,69,-0.03549353237447485],[115,-20,70,-0.02827450348420849],[115,-20,71,-0.0189236925770492],[115,-20,72,-0.05509572728526652],[115,-20,73,-0.11460872537488796],[115,-20,74,-0.11765246081960017],[115,-20,75,-0.09271804237277777],[115,-20,76,-0.09232373747404947],[115,-20,77,-0.110664049745356],[115,-20,78,-0.09772608966270542],[115,-20,79,-0.08513386811246623],[115,-19,64,-0.005581989993930902],[115,-19,65,-0.0046474148087420125],[115,-19,66,-0.02811146905701868],[115,-19,67,-0.03488768150084399],[115,-19,68,-0.041510145410938185],[115,-19,69,-0.03578094208296158],[115,-19,70,-0.02845267907423402],[115,-19,71,-0.019210957075621374],[115,-19,72,-0.05431237644954494],[115,-19,73,-0.1121838604025914],[115,-19,74,-0.11516827044618853],[115,-19,75,-0.09096682071988148],[115,-19,76,-0.09119140875988548],[115,-19,77,-0.1095849710419041],[115,-19,78,-0.0968578056126318],[115,-19,79,-0.0843950607895275],[115,-18,64,-0.0052632772036789455],[115,-18,65,-0.004283484355853046],[115,-18,66,-0.02746580059592351],[115,-18,67,-0.03447406948615064],[115,-18,68,-0.041587677486271575],[115,-18,69,-0.036053618619786836],[115,-18,70,-0.028622288731591502],[115,-18,71,-0.019496271179817046],[115,-18,72,-0.05356124686995702],[115,-18,73,-0.10983921026284554],[115,-18,74,-0.11276709365342956],[115,-18,75,-0.08927647328771257],[115,-18,76,-0.09009920362505767],[115,-18,77,-0.10854313558077026],[115,-18,78,-0.09601992506291185],[115,-18,79,-0.0836817946965028],[115,-17,64,-0.0049691677863701565],[115,-17,65,-0.003941590999840056],[115,-17,66,-0.026838976132851453],[115,-17,67,-0.034069000629559934],[115,-17,68,-0.04165770756191752],[115,-17,69,-0.03631236003314906],[115,-17,70,-0.02878386566110251],[115,-17,71,-0.019779863069305577],[115,-17,72,-0.05284165076085318],[115,-17,73,-0.10757283757695091],[115,-17,74,-0.11044695417274467],[115,-17,75,-0.08764546240070742],[115,-17,76,-0.08904609555871398],[115,-17,77,-0.107537976224582],[115,-17,78,-0.09521231982070895],[115,-17,79,-0.08299416765208546],[115,-16,64,-0.004698184013621805],[115,-16,65,-0.003620827397375209],[115,-16,66,-0.026230937528379957],[115,-16,67,-0.03367285631420015],[115,-16,68,-0.04172102003393797],[115,-16,69,-0.03655796227651697],[115,-16,70,-0.028937947900984133],[115,-16,71,-0.02006198529070267],[115,-16,72,-0.05215293310349159],[115,-16,73,-0.10538283590377935],[115,-16,74,-0.10820590201280525],[115,-16,75,-0.08607227638356996],[115,-16,76,-0.08803108420282221],[115,-16,77,-0.1065689406089685],[115,-16,78,-0.09443486566771375],[115,-16,79,-0.08233227360257521],[115,-15,64,-0.004448899514224445],[115,-15,65,-0.0033203129663710936],[115,-15,66,-0.025641618101245565],[115,-15,67,-0.033286002231686276],[115,-15,68,-0.04177838981050206],[115,-15,69,-0.03679121789386468],[115,-15,70,-0.029085077145073596],[115,-15,71,-0.02034291357224926],[115,-15,72,-0.051494471331214924],[115,-15,73,-0.10326733094379219],[115,-15,74,-0.10604201508347452],[115,-15,75,-0.08455543021769418],[115,-15,76,-0.08705319438452612],[115,-15,77,-0.10563549038292795],[115,-15,78,-0.09368744238224598],[115,-15,79,-0.08169620317979612],[115,-14,64,-0.004219938118756062],[115,-14,65,-0.0030391939480352895],[115,-14,66,-0.025070943849972903],[115,-14,67,-0.032908789308043036],[115,-14,68,-0.04183058188328495],[115,-14,69,-0.03701291481232525],[115,-14,70,-0.029225797662665073],[115,-14,71,-0.020622945719991112],[115,-14,72,-0.05086567502242462],[115,-14,73,-0.1012244816166638],[115,-14,74,-0.1039534006618579],[115,-14,75,-0.08309346607670229],[115,-14,76,-0.08611147509341394],[115,-14,77,-0.10473710042796547],[115,-14,78,-0.09296993376655342],[115,-14,79,-0.08108604427181822],[115,-13,64,-0.004010011494513442],[115,-13,65,-0.0027766525314778323],[115,-13,66,-0.024518809268673964],[115,-13,67,-0.03254152441939747],[115,-13,68,-0.041878321238272204],[115,-13,69,-0.0372238105127942],[115,-13,70,-0.029360627220402242],[115,-13,71,-0.020902363329344566],[115,-13,72,-0.05026594992586594],[115,-13,73,-0.09925244555822067],[115,-13,74,-0.10193815803242628],[115,-13,75,-0.08168496501266083],[115,-13,76,-0.08520507582619416],[115,-13,77,-0.10387331125990835],[115,-13,78,-0.09228222300206185],[115,-13,79,-0.08050185214070876],[115,-12,64,-0.0038181766999378698],[115,-12,65,-0.002531967569817247],[115,-12,66,-0.023984910478551856],[115,-12,67,-0.03218427192919731],[115,-12,68,-0.04192209800579232],[115,-12,69,-0.03742447066028621],[115,-12,70,-0.029489873192439675],[115,-12,71,-0.021181185442003238],[115,-12,72,-0.0496944631111492],[115,-12,73,-0.09734915174635109],[115,-12,74,-0.099994131532524],[115,-12,75,-0.08032862298942059],[115,-12,76,-0.08433375111460886],[115,-12,77,-0.10304407564269252],[115,-12,78,-0.09162416307791925],[115,-12,79,-0.07994345240361664],[115,-11,64,-0.003643667861015088],[115,-11,65,-0.002304475265755495],[115,-11,66,-0.02346885797708728],[115,-11,67,-0.031836989097980065],[115,-11,68,-0.04196230340182208],[115,-11,69,-0.037615384810213266],[115,-11,70,-0.029613762249115272],[115,-11,71,-0.021459334191350668],[115,-11,72,-0.04915030302391599],[115,-11,73,-0.095512472790571],[115,-11,74,-0.09811910065038781],[115,-11,75,-0.07902320457529091],[115,-11,76,-0.0834975031868037],[115,-11,77,-0.10224951291022508],[115,-11,78,-0.09099560065984302],[115,-11,79,-0.07941058510854015],[115,-10,64,-0.003485754631544231],[115,-10,65,-0.0020935360698873117],[115,-10,66,-0.022970269461847756],[115,-10,67,-0.03149963640024528],[115,-10,68,-0.0419993376121047],[115,-10,69,-0.03779705580865409],[115,-10,70,-0.029732541796657123],[115,-10,71,-0.02173676856659327],[115,-10,72,-0.048632608138958686],[115,-10,73,-0.09374035552441505],[115,-10,74,-0.09631092302087602],[115,-10,75,-0.07776750298305275],[115,-10,76,-0.08269629983933285],[115,-10,77,-0.10148971516369387],[115,-10,78,-0.09039639340573091],[115,-10,79,-0.07890301623465126],[115,-9,64,-0.0033437406156747924],[115,-9,65,-0.0018985344014346838],[115,-9,66,-0.02248877051977311],[115,-9,67,-0.031172177780919397],[115,-9,68,-0.0420336084833406],[115,-9,69,-0.03796999758485136],[115,-9,70,-0.029846477807666437],[115,-9,71,-0.022013482341625572],[115,-9,72,-0.048140565276158453],[115,-9,73,-0.09203081891858973],[115,-9,74,-0.09456753222055081],[115,-9,75,-0.07656034016472413],[115,-9,76,-0.08193007718603972],[115,-9,77,-0.10076474928069137],[115,-9,78,-0.08982640949636517],[115,-9,79,-0.07842053624776539],[115,-8,64,-0.0032169625842810383],[115,-8,65,-0.0017188785305401943],[115,-8,66,-0.022023994801961978],[115,-8,67,-0.030854580345992557],[115,-8,68,-0.04206552975388877],[115,-8,69,-0.03813473263562754],[115,-8,70,-0.029955852267445137],[115,-8,71,-0.02228950139685725],[115,-8,72,-0.04767340728945527],[115,-8,73,-0.09038195137353777],[115,-8,74,-0.09288693488268296],[115,-8,75,-0.07540056706005896],[115,-8,76,-0.0811987436894415],[115,-8,77,-0.10007465980317948],[115,-8,78,-0.08928552711769269],[115,-8,79,-0.07796295819270087],[115,-7,64,-0.003104789700491693],[115,-7,65,-0.0015540004390907326],[115,-7,66,-0.021575584197863283],[115,-7,67,-0.030546814098508956],[115,-7,68,-0.04209551942507703],[115,-7,69,-0.03829178970105931],[115,-7,70,-0.030060960803513642],[115,-7,71,-0.022564881187497172],[115,-7,72,-0.04723041085256351],[115,-7,73,-0.08879190811738528],[115,-7,74,-0.09126720792510194],[115,-7,75,-0.07428706377619669],[115,-7,76,-0.08050218390748846],[115,-7,77,-0.09941947162712853],[115,-7,78,-0.08877363398832888],[115,-7,79,-0.0775301159375331],[115,-6,64,-0.0030066227549419133],[115,-6,65,-0.001403355661500329],[115,-6,66,-0.021143189008178014],[115,-6,67,-0.030248851717232145],[115,-6,68,-0.04212399826742775],[115,-6,69,-0.03844170162378062],[115,-6,70,-0.030162110491096333],[115,-6,71,-0.02283970435418537],[115,-6,72,-0.046810894339213566],[115,-6,73,-0.08725890870531873],[115,-6,74,-0.08970649588639396],[115,-6,75,-0.07321873970221583],[115,-6,76,-0.07984026196928222],[115,-6,77,-0.09879919250299017],[115,-6,78,-0.08829062692887821],[115,-6,79,-0.07712186256051483],[115,-5,64,-0.002921893411351397],[115,-5,65,-0.0012664231069407226],[115,-5,66,-0.020726468115897182],[115,-5,67,-0.02996066837540419],[115,-5,68,-0.042151388456071234],[115,-5,69,-0.038585003384225415],[115,-5,70,-0.030259617827311448],[115,-5,71,-0.023114078471702094],[115,-5,72,-0.046414215795569945],[115,-5,73,-0.08578123461648304],[115,-5,74,-0.0882030083660312],[115,-5,75,-0.07219453356226452],[115,-5,76,-0.07921282479299901],[115,-5,77,-0.09821381535586697],[115,-5,78,-0.08783641146971284],[115,-5,79,-0.07673806887069082],[115,-4,64,-0.0028500634629934313],[115,-4,65,-0.0011427048644810918],[115,-4,66,-0.020325089154926288],[115,-4,67,-0.029682241597020903],[115,-4,68,-0.0421781123295049],[115,-4,69,-0.03872223030400188],[115,-4,70,-0.030353806866722746],[115,-4,71,-0.02338813393128756],[115,-4,72,-0.04603977100232101],[115,-4,73,-0.08435722694452125],[115,-4,74,-0.08675501756406924],[115,-4,75,-0.07121341341080277],[115,-4,76,-0.07861970505882394],[115,-4,77,-0.09766332043385004],[115,-4,78,-0.08741090149383383],[115,-4,79,-0.07637862205343564],[115,-3,64,-0.0027906241007232967],[115,-3,65,-0.0010317259927186304],[115,-3,66,-0.019938728675942277],[115,-3,67,-0.029413551148239573],[115,-3,68,-0.04220459126596587],[115,-3,69,-0.038853916409691984],[115,-3,70,-0.03044500751101714],[115,-3,71,-0.02366202195207628],[115,-3,72,-0.04568699162391396],[115,-3,73,-0.08298528417801454],[115,-3,74,-0.08536085591622072],[115,-3,75,-0.07027437657346733],[115,-3,76,-0.0780607239493882],[115,-3,77,-0.09714767729275835],[115,-3,78,-0.0870140189115937],[115,-3,79,-0.07604342443250564],[115,-2,64,-0.0027430951932487877],[115,-2,65,-9.330342955002236E-4],[115,-2,66,-0.0195670723092147],[115,-2,67,-0.029154578961620225],[115,-2,68,-0.04223124467169461],[115,-2,69,-0.038980592949392476],[115,-2,70,-0.030533553945620923],[115,-2,71,-0.02393591271706847],[115,-2,72,-0.04535534344234573],[115,-2,73,-0.08166386006718765],[115,-2,74,-0.0840189138202459],[115,-2,75,-0.06937644953697217],[115,-2,76,-0.07753569366978437],[115,-2,77,-0.09666684662517615],[115,-2,78,-0.08664569336412062],[115,-2,79,-0.07573239234048668],[115,-1,64,-0.0027070245802649716],[115,-1,65,-8.462000852829996E-4],[115,-1,66,-0.019209814924149228],[115,-1,67,-0.02890530909093809],[115,-1,68,-0.04225848907535625],[115,-1,69,-0.03910278705432173],[115,-1,70,-0.03061978321608836],[115,-1,71,-0.024209993628945974],[115,-1,72,-0.045044324672808216],[115,-1,73,-0.08039146157329309],[115,-1,74,-0.08272763744967813],[115,-1,75,-0.06851868779130635],[115,-1,76,-0.07704441975876102],[115,-1,77,-0.09622078194130158],[115,-1,78,-0.08630586195232436],[115,-1,79,-0.07544545508977711],[115,0,64,-0.002681987379149192],[115,0,65,-7.708159357589021E-4],[115,0,66,-0.018866660785475328],[115,0,67,-0.02866572769449106],[115,0,68,-0.0422867373230426],[115,0,69,-0.03922102053799205],[115,0,70,-0.030704033937274576],[115,0,71,-0.024484467681073693],[115,0,72,-0.04475346435850999],[115,0,73,-0.07916664689725543],[115,0,74,-0.08148552665109625],[115,0,75,-0.06770017562743968],[115,0,76,-0.07658670320232858],[115,0,77,-0.09580943110887014],[115,0,78,-0.08599446898852707],[115,0,79,-0.07518255403663034],[115,1,64,-0.002667585305909721],[115,1,65,-7.064964253608704E-4],[115,1,66,-0.01853732370607159],[115,1,67,-0.02843582304491462],[115,1,68,-0.04231639786834644],[115,1,69,-0.03933580882555737],[115,1,70,-0.030786645128433546],[115,1,71,-0.02475955193901798],[115,1,72,-0.04448232084198637],[115,1,73,-0.07798802358430332],[115,1,74,-0.08029113292132582],[115,1,75,-0.06692002589365509],[115,1,76,-0.07616234236056915],[115,1,77,-0.09543273775907588],[115,1,78,-0.08571146576785832],[115,1,79,-0.07494364173110003],[115,2,64,-0.002663446010999031],[115,2,65,-6.528778731895125E-4],[115,2,66,-0.018221527196439213],[115,2,67,-0.02821558556357457],[115,2,68,-0.042347874152067665],[115,2,69,-0.03944766000604655],[115,2,70,-0.03086795516747441],[115,2,71,-0.025035476127861445],[115,2,72,-0.04423048031013019],[115,2,73,-0.07685424670136672],[115,2,74,-0.07914305746102934],[115,2,75,-0.06617737971344834],[115,2,76,-0.07577113471795167],[115,2,77,-0.09509064256506179],[115,2,78,-0.08545681035662367],[115,2,79,-0.07472868114601933],[115,3,64,-0.002669222430660195],[115,3,65,-6.096180689439095E-4],[115,3,66,-0.017919004610966193],[115,3,67,-0.028005007877770553],[115,3,68,-0.04238156406628716],[115,3,69,-0.039557074000418045],[115,3,70,-0.03094830085784351],[115,3,71,-0.02531248132068557],[115,3,72,-0.043997555410252055],[115,3,73,-0.07576401708422902],[115,3,74,-0.07803994930137564],[115,3,75,-0.0654714061678965],[115,3,76,-0.07541287846706608],[115,3,77,-0.09478308439928661],[115,3,78,-0.08523046739502661],[115,3,79,-0.07453764497853102],[115,4,64,-0.0026845921544508483],[115,4,65,-5.763959984108166E-4],[115,4,66,-0.017629499291186786],[115,4,67,-0.027804084899090822],[115,4,68,-0.042417859497682814],[115,4,69,-0.03966454183856178],[115,4,70,-0.03102801660168663],[115,4,71,-0.02559081872363898],[115,4,72,-0.04378318393449522],[115,4,73,-0.07471607965156415],[115,4,74,-0.07698050350064754],[115,4,75,-0.06480130194528741],[115,4,76,-0.07508737393525694],[115,4,77,-0.0945100013757792],[115,4,78,-0.08503240791175112],[115,4,79,-0.07437051501802572],[115,5,64,-0.0027092568094985482],[115,5,65,-5.529115659675037E-4],[115,5,66,-0.01735276470624144],[115,5,67,-0.02761281392130973],[115,5,68,-0.04245714594506434],[115,5,69,-0.039770545038527616],[115,5,70,-0.031107433673089276],[115,5,71,-0.025870748553009474],[115,5,72,-0.04358702756989429],[115,5,73,-0.07370922178306574],[115,5,74,-0.07596345940774024],[115,5,75,-0.06416629096063423],[115,5,76,-0.07479442486314664],[115,5,77,-0.09427133178295209],[115,5,78,-0.08486260914799733],[115,5,79,-0.07422728157463533],[115,6,64,-0.0027429414620806906],[115,6,65,-5.388853155754635E-4],[115,6,66,-0.017088564590852423],[115,6,67,-0.027431194736375415],[115,6,68,-0.042499802206310125],[115,6,69,-0.03987555508153242],[115,6,70,-0.031186879585468927],[115,6,71,-0.026152538999858112],[115,6,72,-0.04340877071147792],[115,6,73,-0.07274227175910264],[115,6,74,-0.07498759898975287],[115,6,75,-0.0635656239476619],[115,6,76,-0.07453383954366663],[115,6,77,-0.0940670149124103],[115,6,78,-0.08472105438874326],[115,6,79,-0.0741079429628126],[115,7,64,-0.002785394037084312],[115,7,65,-5.340581516945275E-4],[115,7,66,-0.016836673081181603],[115,7,67,-0.02725922976714935],[115,7,68,-0.04254620013007722],[115,7,69,-0.03998003297654203],[115,7,70,-0.03126667754741589],[115,7,71,-0.026436465277859575],[115,7,72,-0.04324811933585224],[115,7,73,-0.0718140972594636],[115,7,74,-0.07405174522102413],[115,7,75,-0.06299857802573659],[115,7,76,-0.07430543182979814],[115,7,77,-0.09389699178893592],[115,7,78,-0.0846077327991578],[115,7,79,-0.07401250503487183],[115,8,64,-0.002836384755807381],[115,8,65,-5.381910614338393E-4],[115,8,66,-0.01659687484891569],[115,8,67,-0.027096924215593236],[115,8,68,-0.04259670442776689],[115,8,69,-0.0400844289084071],[115,8,70,-0.03134714600145983],[115,8,71,-0.02672280875004175],[115,8,72,-0.043104799932713864],[115,8,73,-0.07092360391886866],[115,8,74,-0.07315476053109417],[115,8,75,-0.062464456244066595],[115,8,76,-0.07410902201876217],[115,8,77,-0.09376120580651261],[115,8,78,-0.08452263926417611],[115,8,79,-0.073940980759641],[115,9,64,-0.002895705592587091],[115,9,65,-5.510648392613266E-4],[115,9,66,-0.01636896523402102],[115,9,67,-0.026944286225258147],[115,9,68,-0.042651672541476136],[115,9,69,-0.040189181963845654],[115,9,70,-0.03142859824053688],[115,9,71,-0.027011856130290227],[115,9,72,-0.04297855849186378],[115,9,73,-0.0700697339371288],[115,9,74,-0.07229554530930045],[115,9,75,-0.061962587105457795],[115,9,76,-0.07394443762005717],[115,9,77,-0.09365960327506911],[115,9,78,-0.0844657742294503],[115,9,79,-0.07389338984175997],[115,10,64,-0.002963169750695936],[115,10,65,-5.724798155328181E-4],[115,10,66,-0.016152750376644164],[115,10,67,-0.02680132705703361],[115,10,68,-0.04271145456386487],[115,10,69,-0.04029471992983399],[115,10,70,-0.03151134209717902],[115,10,71,-0.027303898755601234],[115,10,72,-0.04286915954336337],[115,10,73,-0.0692514647419835],[115,10,74,-0.07147303646387637],[115,10,75,-0.06149232407181183],[115,10,76,-0.07381151401435995],[115,10,77,-0.09359213388239662],[115,10,78,-0.08443714354204586],[115,10,79,-0.07386975837748273],[115,11,64,-0.0030386111578510466],[115,11,65,-6.02255589980863E-4],[115,11,66,-0.015948047348599097],[115,11,67,-0.026668061277139266],[115,11,68,-0.042776393205996854],[115,11,69,-0.04040145915917081],[115,11,70,-0.03159567970064598],[115,11,71,-0.027599231925152783],[115,11,72,-0.04277638524851093],[115,11,73,-0.06846780770276219],[115,11,74,-0.07068620603355757],[115,11,75,-0.06105304505342263],[115,11,76,-0.0737100950098855],[115,11,77,-0.09355875107542519],[115,11,78,-0.08443675828934669],[115,11,79,-0.07387011854310842],[115,12,64,-0.003121883981696218],[115,12,65,-6.402307712989706E-4],[115,12,66,-0.01575468428496823],[115,12,67,-0.02654450695650359],[115,12,68,-0.04284682380948574],[115,12,69,-0.04050980449832194],[115,12,70,-0.03168190729752922],[115,12,71,-0.02789815430245494],[115,12,72,-0.04270003453945502],[115,12,73,-0.06771780689320789],[115,12,74,-0.06993405984990764],[115,12,75,-0.060644151884093764],[115,12,76,-0.07364003330250483],[115,12,77,-0.09355941236490847],[115,12,78,-0.08446463463485225],[115,12,79,-0.07389450831253434],[115,13,64,-0.0032128621655684742],[115,13,65,-6.862627238835758E-4],[115,13,66,-0.015572500516352667],[115,13,67,-0.02643068588074654],[115,13,68,-0.04292307439946579],[115,13,69,-0.04062014927291605],[115,13,70,-0.031770315131610646],[115,13,71,-0.0282009673769892],[115,13,72,-0.04263992230535609],[115,13,73,-0.06700053790196253],[115,13,74,-0.06921563624875307],[115,13,75,-0.06026506978402032],[115,13,76,-0.07360119084557885],[115,13,77,-0.09359407955737523],[115,13,78,-0.0845207936496959],[115,13,79,-0.07394297120072285],[115,14,64,-0.003311438984765312],[115,14,65,-7.40227322675022E-4],[115,14,66,-0.015401346702269036],[115,14,67,-0.02632662377001864],[115,14,68,-0.04300546577506368],[115,14,69,-0.04073287532649299],[115,14,70,-0.03186118737896454],[115,14,71,-0.02850797498185116],[115,14,72,-0.04259587862306317],[115,14,73,-0.06631510668931818],[115,14,74,-0.06853000482923385],[115,14,75,-0.05991524681226633],[115,14,76,-0.0735934391351037],[115,14,77,-0.09366271891799755],[115,14,78,-0.08460526113883239],[115,14,79,-0.07401555603013123],[115,15,64,-0.0034175266235510534],[115,15,65,-8.020187170394525E-4],[115,15,66,-0.015241084966270026],[115,15,67,-0.02623235050810057],[115,15,68,-0.04309431163432554],[115,15,69,-0.04084835310845262],[115,15,70,-0.031954802134610556],[115,15,71,-0.02881948286413428],[115,15,72,-0.04256774803043535],[115,15,73,-0.06566064848904074],[115,15,74,-0.06787626525919785],[115,15,75,-0.05959415331065712],[115,15,76,-0.07361665941552474],[115,15,77,-0.09376530126794066],[115,15,78,-0.08471806746106535],[115,15,79,-0.07411231671750346],[115,16,64,-0.0035310557730437665],[115,16,65,-8.715491045050794E-4],[115,16,66,-0.015091589033309935],[115,16,67,-0.02614790038018002],[115,16,68,-0.04318991873069232],[115,16,69,-0.04096694180737105],[115,16,70,-0.0320514314472286],[115,16,71,-0.029135798304907902],[115,16,72,-0.04255538884050634],[115,16,73,-0.06503632675418987],[115,16,74,-0.06725354612579396],[115,16,75,-0.05930128134081103],[115,16,76,-0.07367074281124493],[115,16,77,-0.09390180201957328],[115,16,78,-0.08485924734219519],[115,16,79,-0.07423331207866209],[115,17,64,-0.0036519752501294046],[115,17,65,-9.487485151492033E-4],[115,17,66,-0.014952744369933654],[115,17,67,-0.026073312318854538],[115,17,68,-0.04329258705838567],[115,17,69,-0.0410889895261827],[115,17,70,-0.03215134139874485],[115,17,71,-0.0294572297858595],[115,17,72,-0.042558672494848584],[115,17,73,-0.06444133214603615],[115,17,74,-0.06666100383031352],[115,17,75,-0.059036144116022045],[115,17,76,-0.07375559038864664],[115,17,77,-0.0940722011528571],[115,17,78,-0.08502883968078796],[115,17,79,-0.07437860564925956],[115,18,64,-0.0037802516374520283],[115,18,65,-0.0010335646073036206],[115,18,66,-0.014824448327804465],[115,18,67,-0.026008630157916005],[115,18,68,-0.04340261006419767],[115,18,69,-0.04121483349593447],[115,18,70,-0.03225479222578414],[115,18,71,-0.02978408669978362],[115,18,72,-0.04257748295455593],[115,18,73,-0.0638748815652805],[115,18,74,-0.0660978215264474],[115,18,75,-0.058798275429610206],[115,18,76,-0.07387111315313252],[115,18,77,-0.09427648313606814],[115,18,78,-0.08522688734616587],[115,18,79,-0.07454826551966698],[115,19,64,-0.003915868944524129],[115,19,65,-0.0011259624752128557],[115,19,66,-0.014706610291114142],[115,19,67,-0.02595390289357061],[115,19,68,-0.04352027488342485],[115,19,69,-0.04134480032513334],[115,19,70,-0.03236203848027376],[115,19,71,-0.030116679102323195],[115,19,72,-0.04261171612743598],[115,19,73,-0.06333621722495845],[115,19,74,-0.06556320810131365],[115,19,75,-0.058587229081365516],[115,19,76,-0.07401723198553624],[115,19,77,-0.09451463679397841],[115,19,78,-0.08545343696843817],[115,19,79,-0.0747423641824776],[115,20,64,-0.004058828289971452],[115,20,65,-0.0012259244692239654],[115,20,66,-0.014599151828426644],[115,20,67,-0.025909184952828606],[115,20,68,-0.043645862597891986],[115,20,69,-0.04147920628197515],[115,20,70,-0.032473329226715864],[115,20,71,-0.030455317502541417],[115,20,72,-0.04266127933012003],[115,20,73,-0.06282460576455277],[115,20,74,-0.0650563971987719],[115,20,75,-0.05840257830367644],[115,20,76,-0.07419387752203112],[115,20,77,-0.09478665512655099],[115,20,78,-0.08570853872055476],[115,20,79,-0.07496097839136226],[115,21,64,-0.004209147604833427],[115,21,65,-0.0013334500289604318],[115,21,66,-0.014502006849430104],[115,21,67,-0.025874536468787283],[115,21,68,-0.04377964851414194],[115,21,69,-0.04161835760694736],[115,21,70,-0.03258890827383276],[115,21,71,-0.030800312690035657],[115,21,72,-0.04272609078389071],[115,21,73,-0.062339337404940375],[115,21,74,-0.06457664628465025],[115,21,75,-0.058243915188876554],[115,21,76,-0.07440098998145202],[115,21,77,-0.0950925350811104],[115,21,78,-0.08599224609249051],[115,21,79,-0.07520418903021363],[115,22,64,-0.004366861356852522],[115,22,65,-0.0014485555299180621],[115,22,66,-0.014415121767111473],[115,22,67,-0.02585002356264116],[115,22,68,-0.04392190246011745],[115,22,69,-0.04176255085360047],[115,22,70,-0.03270901443855354],[115,22,71,-0.031151975596528266],[115,22,72,-0.04280607914319402],[115,22,73,-0.06187972514396467],[115,22,74,-0.06412323575369508],[115,22,75,-0.05811085011936433],[115,22,76,-0.07463851894382204],[115,22,77,-0.0954322772809624],[115,22,78,-0.0863046156578792],[115,22,79,-0.07547208099179814],[115,23,64,-0.004532020295644116],[115,23,65,-0.001571274143848459],[115,23,66,-0.014338455665837264],[115,23,67,-0.025835718632288614],[115,23,68,-0.044072889098828366],[115,23,69,-0.04191207325551865],[115,23,70,-0.032833881840522626],[115,23,71,-0.03151061719004073],[115,23,72,-0.04290118305593428],[115,23,73,-0.06144510399256113],[115,23,74,-0.06369546807819956],[115,23,75,-0.058003011202045165],[115,23,76,-0.07490642308373344],[115,23,77,-0.09580588571341472],[115,23,78,-0.086645706833583],[115,23,79,-0.07576474306536059],[115,24,64,-0.0047046912185627005],[115,24,65,-0.001701655713186558],[115,24,66,-0.014271980475758473],[115,24,67,-0.02583170064740184],[115,24,68,-0.04423286825763465],[115,24,69,-0.04206720311771053],[115,24,70,-0.032963740225473236],[115,24,71,-0.03187654839989627],[115,24,72,-0.04301135075474237],[115,24,73,-0.06103483025144903],[115,24,74,-0.06329266699837094],[115,24,75,-0.05792004370860299],[115,24,76,-0.07520466986206524],[115,24,77,-0.09621336738010258],[115,24,78,-0.08701558163280716],[115,24,79,-0.07608226783280789],[115,25,64,-0.004884956757091516],[115,25,65,-0.0018397666397661219],[115,25,66,-0.014215681153978935],[115,25,67,-0.025838055450917028],[115,25,68,-0.0444020952719981],[115,25,69,-0.042228210230917246],[115,25,70,-0.03309881531605001],[115,25,71,-0.03225008007100975],[115,25,72,-0.04313653967857777],[115,25,73,-0.060648280828561975],[115,25,74,-0.06291417675466635],[115,25,75,-0.05786160952315494],[115,25,76,-0.07553323517946173],[115,25,77,-0.09665473191258493],[115,25,78,-0.08741430441258669],[115,25,79,-0.07642475157335538],[115,26,64,-0.005072915183543603],[115,26,65,-0.00198568978799006],[115,26,66,-0.014169555872881651],[115,26,67,-0.025854876066912322],[115,26,68,-0.0445808213426991],[115,26,69,-0.042395356307534104],[115,26,70,-0.03323932918884243],[115,26,71,-0.03263152294609397],[115,26,72,-0.04327671612415767],[115,26,73,-0.06028485259750972],[115,26,74,-0.06255936136246466],[115,26,75,-0.05782738659885076],[115,26,76,-0.07589210299489968],[115,26,77,-0.09712999115618078],[115,26,78,-0.08784194161662169],[115,26,79,-0.07679229417671345],[115,27,64,-0.005268680237800613],[115,27,65,-0.0021395244025365274],[115,27,66,-0.014133616215947714],[115,27,67,-0.025882263014847577],[115,27,68,-0.04476929390565266],[115,27,69,-0.04256889543802417],[115,27,70,-0.0333855006765367],[115,27,71,-0.03302118767454605],[115,27,72,-0.04343185492679973],[115,27,73,-0.059943961797439556],[115,27,74,-0.06222760392952897],[115,27,75,-0.057817068424963015],[115,27,76,-0.07628126491257649],[115,27,77,-0.09763915872503642],[115,27,78,-0.08829856151458165],[115,27,79,-0.07718499906505993],[115,28,64,-0.005472380973820683],[115,28,65,-0.002301386040652432],[115,28,66,-0.01410788738139418],[115,28,67,-0.02592032463018584],[115,28,68,-0.04496775701363211],[115,28,69,-0.04274907456692296],[115,28,70,-0.03353754579428897],[115,28,71,-0.03341938484698002],[115,28,72,-0.043601939170432126],[115,28,73,-0.05962504347480708],[115,28,74,-0.06191830601687416],[115,28,75,-0.057830363506071576],[115,28,76,-0.07670071974032726],[115,28,77,-0.09818224953148047],[115,28,78,-0.08878423393918834],[115,28,79,-0.07760297312426169],[115,29,64,-0.005684161625623127],[115,29,65,-0.0024714065190322887],[115,29,66,-0.014092408393919426],[115,29,67,-0.025969177391436227],[115,29,68,-0.045176451729353986],[115,29,69,-0.04293613398772238],[115,29,70,-0.03369567818958328],[115,29,71,-0.033826425054537756],[115,29,72,-0.04378695992665962],[115,29,73,-0.059327550967679506],[115,29,74,-0.0616308870437798],[115,29,75,-0.05786699485498087],[115,29,76,-0.07715047302275546],[115,29,77,-0.09875927929279964],[115,29,78,-0.08929903002255418],[115,29,79,-0.07804632664499095],[115,30,64,-0.005904181492394327],[115,30,65,-0.0026497338751893607],[115,30,66,-0.014087232324766602],[115,30,67,-0.026028946253635835],[115,30,68,-0.04539561652947807],[115,30,69,-0.043130307856055664],[115,30,70,-0.03386010961493725],[115,30,71,-0.03424261897223033],[115,30,72,-0.04398691602285563],[115,30,73,-0.059050955433240626],[115,30,74,-0.06136478373775182],[115,30,75,-0.05792669950099764],[115,30,76,-0.07763053655219507],[115,30,77,-0.09937026401859314],[115,30,78,-0.08984302193337602],[115,30,79,-0.07851517327451435],[115,31,64,-0.0061326148423734685],[115,31,65,-0.002836532343205354],[115,31,66,-0.014092426520301],[115,31,67,-0.026099764988321304],[115,31,68,-0.04562548771922993],[115,31,69,-0.04333182472079956],[115,31,70,-0.03403105042299142],[115,31,71,-0.0346682774657558],[115,31,72,-0.04420181383942329],[115,31,73,-0.05879474541931064],[115,31,74,-0.0611194496303947],[115,31,75,-0.058009228015281425],[115,31,76,-0.0781409278606641],[115,31,77,-0.1000152194819835],[115,31,78,-0.09041628261677323],[115,31,79,-0.07900962998012698],[115,32,64,-0.006369650835155059],[115,32,65,-0.0030319823436991827],[115,32,66,-0.01410807283925381],[115,32,67,-0.0261817765300517],[115,32,68,-0.04586629985747833],[115,32,69,-0.043540908072859374],[115,32,70,-0.03420871008363239],[115,32,71,-0.03510371172138824],[115,32,72,-0.044431667136482035],[115,32,73,-0.05855842648076636],[115,32,74,-0.060894354600245344],[115,32,75,-0.058114344055015484],[115,32,76,-0.07868166969597443],[115,32,77,-0.10069416067805273],[115,32,78,-0.09101888553871745],[115,32,79,-0.07952981702536203],[115,33,64,-0.006615493461989357],[115,33,65,-0.003236280487764221],[115,33,66,-0.014134267898691212],[115,33,67,-0.02627513332949516],[115,33,68,-0.046118286192165084],[115,33,69,-0.04375777691149915],[115,33,70,-0.034393297722872265],[115,33,71,-0.035549233398642036],[115,33,72,-0.044676496910325415],[115,33,73,-0.05834152084179702],[115,33,74,-0.060688984463684634],[115,33,75,-0.05824182392816094],[115,33,76,-0.07925278948515253],[115,33,77,-0.1014071012729307],[115,33,78,-0.0916509044371121],[115,33,79,-0.08007585796020662],[115,34,64,-0.006870361503678032],[115,34,65,-0.00344963959461324],[115,34,66,-0.014171123328748638],[115,34,67,-0.026379997713118608],[115,34,68,-0.04638167910611787],[115,34,69,-0.043982646328234905],[115,34,70,-0.034585022683335735],[115,34,71,-0.036005154805591466],[115,34,72,-0.04493633128014706],[115,34,73,-0.05814356710503968],[115,34,74,-0.06050284061516831],[115,34,75,-0.05839145618064195],[115,34,76,-0.07985431878839912],[115,34,77,-0.10215405304710407],[115,34,78,-0.0923124130817616],[115,34,79,-0.08064787962672736],[115,35,64,-0.007134488505647198],[115,35,65,-0.0036722887226262116],[115,35,66,-0.01421876603611741],[115,35,67,-0.02649654224951098],[115,35,68,-0.046656710573371514],[115,35,69,-0.04421572810841931],[115,35,70,-0.03478409510628449],[115,35,71,-0.036471789096855535],[115,35,72,-0.04521120540563869],[115,35,73,-0.05796412000869186],[115,35,74,-0.06033543971808964],[115,35,75,-0.05856304120785735],[115,35,76,-0.08048629274685709],[115,35,77,-0.10293502533662181],[115,35,78,-0.0930034850456103],[115,35,79,-0.08124601218163285],[115,36,64,-0.007408122769724312],[115,36,65,-0.0039044732134101744],[115,36,66,-0.01427733847616458],[115,36,67,-0.026624950122301497],[115,36,68,-0.04694361262615467],[115,36,69,-0.044457231350699004],[115,36,70,-0.034990726535142326],[115,36,71,-0.03694945049434934],[115,36,72,-0.04550116143614079],[115,36,73,-0.05780275023273364],[115,36,74,-0.06018631344763466],[115,36,75,-0.05875639089243633],[115,36,76,-0.0811487495274836],[115,36,77,-0.10375002447594839],[115,36,78,-0.09372419348972967],[115,36,79,-0.08187038913737466],[115,37,64,-0.007691527362170627],[115,37,65,-0.004146454748479718],[115,37,66,-0.014346998933550386],[115,37,67,-0.0267654155096595],[115,37,68,-0.04724261783281544],[115,37,69,-0.04470736310464814],[115,37,70,-0.035205130540574545],[115,37,71,-0.03743845453105955],[115,37,72,-0.04580624849216003],[115,37,73,-0.05765904425546362],[115,37,74,-0.06005500828708325],[115,37,75,-0.05897132827024388],[115,37,76,-0.08184172976842342],[115,37,77,-0.1045990532463737],[115,37,78,-0.0944746109647003],[115,37,79,-0.08252114742353574],[115,38,64,-0.007984980137500446],[115,38,65,-0.004398511418117756],[115,38,66,-0.01442792181112871],[115,38,67,-0.02691814397031476],[115,38,68,-0.04755395978700371],[115,38,69,-0.044966329026936036],[115,38,70,-0.0354275233672075],[115,38,71,-0.037939118318204436],[115,38,72,-0.04612652268015958],[115,38,73,-0.057532604261592055],[115,38,74,-0.059941085379062425],[115,38,75,-0.05920768722669075],[115,38,76,-0.08256527602834458],[115,38,77,-0.10548211033399349],[115,38,78,-0.09525480923114522],[115,38,79,-0.08319842747033565],[115,39,64,-0.008288773777572343],[115,39,65,-0.0046609378019016575],[115,39,66,-0.014520297926817131],[115,39,67,-0.02708335283597421],[115,39,68,-0.04787787360844678],[115,39,69,-0.04523433405640938],[115,39,70,-0.03565812460207444],[115,39,71,-0.03845176083621527],[115,39,72,-0.04646204714158834],[115,39,73,-0.05742304810313692],[115,39,74,-0.05984412043327753],[115,39,75,-0.059465312225429924],[115,39,76,-0.08331943224325315],[115,39,77,-0.10639918980136646],[115,39,78,-0.09606485910226505],[115,39,79,-0.08390237331614266],[115,40,64,-0.008603215845467022],[115,40,65,-0.004934045060388367],[115,40,66,-0.014624334818094808],[115,40,67,-0.0272612716100107],[115,40,68,-0.04821459645573355],[115,40,69,-0.04551158310854333],[115,40,70,-0.0358971578649193],[115,40,71,-0.038976703250103],[115,40,72,-0.046812892137229806],[115,40,73,-0.05733000931441613],[115,40,74,-0.059763703692311945],[115,40,75,-0.05974405807160433],[115,40,76,-0.08410424319441877],[115,40,77,-0.10735028057710422],[115,40,78,-0.09690483031135552],[115,40,79,-0.08463313274098529],[115,41,64,-0.008928628853618156],[115,41,65,-0.005218161037371705],[115,41,66,-0.014740257053673435],[115,41,67,-0.027452142372214768],[115,41,68,-0.04856436805151028],[115,41,69,-0.04579828178970539],[115,41,70,-0.036144851520464254],[115,41,71,-0.03951426924983246],[115,41,72,-0.04717913516800174],[115,41,73,-0.05725313718242114],[115,41,74,-0.05969943995709368],[115,41,75,-0.06004378971183949],[115,41,76,-0.08491975399110624],[115,41,77,-0.10833536596773795],[115,41,78,-0.09777479140736772],[115,41,79,-0.0853908574280953],[115,42,64,-0.009265350345680245],[115,42,65,-0.005513630372125764],[115,42,66,-0.014868306551844178],[115,42,67,-0.02765622018938213],[115,42,68,-0.04892743122053895],[115,42,69,-0.0460946371317076],[115,42,70,-0.0364014394127514],[115,42,71,-0.04006478541642445],[115,42,72,-0.04756086113342073],[115,42,73,-0.05719209687386949],[115,42,74,-0.05965094867365439],[115,42,75,-0.06036438207323745],[115,42,76,-0.08576600957191757],[115,42,77,-0.10935442319633121],[115,42,78,-0.09867480968167164],[115,42,79,-0.08617570315558092],[115,43,64,-0.009613732991567349],[115,43,65,-0.00582081462096938],[115,43,66,-0.015008742904882471],[115,43,67,-0.027873773531411638],[115,43,68,-0.04930403244103112],[115,43,69,-0.04640085834707738],[115,43,70,-0.036667161621608886],[115,43,71,-0.04062858161453723],[115,43,72,-0.047958162528973655],[115,43,73,-0.05714656962019395],[115,43,74,-0.059617864082784244],[115,43,75,-0.06070571994364298],[115,43,76,-0.08664305422860848],[115,43,77,-0.11040742297238501],[115,43,78,-0.09960495112923162],[115,43,79,-0.08698783002033879],[115,44,64,-0.009974144695107044],[115,44,65,-0.006140092387477248],[115,44,66,-0.015161843708835835],[115,44,67,-0.02810508469255061],[115,44,68,-0.04969442240968704],[115,44,69,-0.04671715760547556],[115,44,70,-0.036942265241269756],[115,44,71,-0.04120599141235679],[115,44,72,-0.04837113968370556],[115,44,73,-0.05711625296172489],[115,44,74,-0.059599835434197924],[115,44,75,-0.061067697895513307],[115,44,76,-0.08755093115635279],[115,44,77,-0.11149432909769572],[115,44,78,-0.10056528044748511],[115,44,79,-0.08782740269636065],[115,45,64,-0.010346968713746256],[115,45,65,-0.006471859460635707],[115,45,66,-0.01532790489794472],[115,45,67,-0.02835045021736597],[115,45,68,-0.05009885662085774],[115,45,69,-0.047043750831655184],[115,45,70,-0.037227005181118746],[115,45,71,-0.04179735252967216],[115,45,72,-0.04879990103937226],[115,45,73,-0.05710086105228372],[115,45,74,-0.0595965272668057],[115,45,75,-0.06145022025575375],[115,45,76,-0.08848968203451961],[115,45,77,-0.11261509811291574],[115,45,78,-0.10155586107627661],[115,45,79,-0.08869459072960892],[115,46,64,-0.010732603789690499],[115,46,65,-0.006816528960163687],[115,46,66,-0.015507241082814783],[115,46,67,-0.028610181330902325],[115,46,68,-0.05051759596017014],[115,46,69,-0.0473808585252582],[115,46,70,-0.03752164498843494],[115,46,71,-0.04240300731500555],[115,46,72,-0.04924456347249657],[115,46,73,-0.057100125025328144],[115,46,74,-0.05960761975661723],[115,46,75,-0.06185320112387467],[115,46,76,-0.08945934664207077],[115,46,77,-0.113769678989608],[115,46,78,-0.1025767552821922],[115,46,79,-0.08958956887160024],[115,47,64,-0.01113145734892618],[115,47,65,-0.007174524542706809],[115,47,66,-0.01570017894303874],[115,47,67,-0.028884597420928734],[115,47,68,-0.0509509003579816],[115,47,69,-0.04772869964398851],[115,47,70,-0.03782645073016388],[115,47,71,-0.04302329628557207],[115,47,72,-0.049705245688882904],[115,47,73,-0.057113786445931486],[115,47,74,-0.05963280215165072],[115,47,75,-0.062276557453105875],[115,47,76,-0.09045995551807932],[115,47,77,-0.11495800587268423],[115,47,78,-0.10362801728411096],[115,47,79,-0.09051251044034084],[115,48,64,-0.011543864735418387],[115,48,65,-0.007546199562270333],[115,48,66,-0.015906976490794065],[115,48,67,-0.029173945309607846],[115,48,68,-0.05139894815842459],[115,48,69,-0.04808741112032728],[115,48,70,-0.03814161041493471],[115,48,71,-0.04365847712098163],[115,48,72,-0.050181986987402026],[115,48,73,-0.057141516047444656],[115,48,74,-0.05967169139243409],[115,48,75,-0.06272012719026783],[115,48,76,-0.09149144755821084],[115,48,77,-0.11617991565481166],[115,48,78,-0.10470961108704198],[115,48,79,-0.09146350525833111],[115,49,64,-0.01197010756326117],[115,49,65,-0.007931855261428302],[115,49,66,-0.016127841282635096],[115,49,67,-0.02947841740023691],[115,49,68,-0.05186185430594641],[115,49,69,-0.04845706613620264],[115,49,70,-0.03846725210937666],[115,49,71,-0.04430874230372052],[115,49,72,-0.05067476463185024],[115,49,73,-0.05718293104426624],[115,49,74,-0.059723849270816066],[115,49,75,-0.06318368589691586],[115,49,76,-0.09255368604832447],[115,49,77,-0.11743516396926114],[115,49,78,-0.10582142670190042],[115,49,79,-0.09244257594481117],[115,50,64,-0.01241046602360625],[115,50,65,-0.008331793019568545],[115,50,66,-0.016362982792680666],[115,50,67,-0.029798204097412132],[115,50,68,-0.05233972293085799],[115,50,69,-0.048837726916471216],[115,50,70,-0.03880349668587252],[115,50,71,-0.044974271518884675],[115,50,72,-0.051183546114781],[115,50,73,-0.05723764747209671],[115,50,74,-0.05978883474380275],[115,50,75,-0.06366699863133318],[115,50,76,-0.09364651007528862],[115,50,77,-0.11872347669715433],[115,50,78,-0.1069633319975184],[115,50,79,-0.09344972995574465],[115,51,64,-0.012865219377931907],[115,51,65,-0.008746314810003031],[115,51,66,-0.0166126130155976],[115,51,67,-0.03013349448276574],[115,51,68,-0.052832648226765845],[115,51,69,-0.04922944583996216],[115,51,70,-0.03915045890242835],[115,51,71,-0.045655232414054225],[115,51,72,-0.05170828980956915],[115,51,73,-0.057305280942503416],[115,51,74,-0.05986620467705896],[115,51,75,-0.06416982025079979],[115,51,76,-0.09476973435626469],[115,51,77,-0.12004454990683676],[115,51,78,-0.10813517297305696],[115,51,79,-0.09448496002660378],[115,52,64,-0.013334645393161454],[115,52,65,-0.009175722593032886],[115,52,66,-0.016876945999908067],[115,52,67,-0.03048447592316288],[115,52,68,-0.05334071427587939],[115,52,69,-0.049632265504142306],[115,52,70,-0.03950824743279156],[115,52,71,-0.04635178032389379],[115,52,72,-0.052248944602843676],[115,52,73,-0.05738544639272844],[115,52,74,-0.059955513591272096],[115,52,75,-0.0646918947028107],[115,52,76,-0.09592314805383467],[115,52,77,-0.12139804879230494],[115,52,78,-0.10933677301756664],[115,52,79,-0.0955482435872749],[115,53,64,-0.013819019737045283],[115,53,65,-0.009620317663040428],[115,53,66,-0.017156197329135536],[115,53,67,-0.030851333629233767],[115,53,68,-0.053863994841060595],[115,53,69,-0.0500462187620473],[115,53,70,-0.039876964865110304],[115,53,71,-0.04706405797967926],[115,53,72,-0.05280544952813589],[115,53,73,-0.057477757851112615],[115,53,74,-0.06005631343252962],[115,53,75,-0.06523295432814614],[115,53,76,-0.09710651360247186],[115,53,77,-0.12278360663711442],[115,53,78,-0.1105679321819269],[115,53,79,-0.09663954217348092],[115,54,64,-0.014318615335293163],[115,54,65,-0.010080399950812849],[115,54,66,-0.017450583551402523],[115,54,67,-0.031234250165185076],[115,54,68,-0.05440255312646846],[115,54,69,-0.050471328732951355],[115,54,70,-0.04025670767010775],[115,54,71,-0.04779219520652811],[115,54,72,-0.05337773340391502],[115,54,73,-0.057581828220472815],[115,54,74,-0.06016815336949165],[115,54,75,-0.06579271918003439],[115,54,76,-0.09831956555279873],[115,54,77,-0.12420082381061161],[115,54,78,-0.11182842646825979],[115,54,79,-0.09775880083840427],[115,55,64,-0.014833701692002049],[115,55,65,-0.010556267282365013],[115,55,66,-0.01776032155809996],[115,55,67,-0.03163340491083801],[115,55,68,-0.05495644150862611],[115,55,69,-0.050907608788175074],[115,55,70,-0.04064756613967181],[115,55,71,-0.04853630861113564],[115,55,72,-0.05396571447919841],[115,55,73,-0.057697269081709086],[115,55,74,-0.060290579620088436],[115,55,75,-0.06637089636368788],[115,55,76,-0.09956200944018118],[115,55,77,-0.1256492668033811],[115,55,78,-0.11311800714194002],[115,55,79,-0.09890594756821847],[115,56,64,-0.015364544175037],[115,56,65,-0.011048214595641424],[115,56,66,-0.018085627912307597],[115,56,67,-0.03204897347688757],[115,56,68,-0.0555257012397533],[115,56,69,-0.0513550625134021],[115,56,70,-0.041049624296753164],[115,56,71,-0.04929650126289781],[115,56,72,-0.05456930008999787],[115,56,73,-0.05782369051992631],[115,56,74,-0.06042313531048336],[115,56,75,-0.06696717940060609],[115,56,76,-0.10083352068436104],[115,56,77,-0.12712846730889144],[115,56,78,-0.1144364000714009],[115,56,79,-0.10008089270532014],[115,57,64,-0.015911403268140653],[115,57,65,-0.011556533116605271],[115,57,66,-0.018426718127721613],[115,57,67,-0.03248112707444466],[115,57,68,-0.05611036212523103],[115,57,69,-0.051813683648843416],[115,57,70,-0.04146295977743596],[115,57,71,-0.050072862371357975],[115,57,72,-0.05518838632990839],[115,57,73,-0.057960700975325234],[115,57,74,-0.06056536036901415],[115,57,75,-0.06758124762210592],[115,57,76,-0.10213374352694801],[115,57,77,-0.12863792135837557],[115,57,78,-0.11578330510098034],[115,57,79,-0.10128352838311047],[115,58,64,-0.01647453379162436],[115,58,65,-0.012081509496306295],[115,58,66,-0.018783805898877647],[115,58,67,-0.032930031839938104],[115,58,68,-0.05671044217702639],[115,58,69,-0.05228345600849999],[115,58,70,-0.041887643685980594],[115,58,71,-0.05086546696292585],[115,58,72,-0.0558228577381427],[115,58,73,-0.05810790712105127],[115,58,74,-0.06071679145775876],[115,58,75,-0.0682127655965679],[115,58,76,-0.10346229001364957],[115,58,77,-0.13017708851597207],[115,58,78,-0.11715839546203227],[115,58,79,-0.10251372797618029],[115,59,64,-0.017054184093653876],[115,59,65,-0.012623424910690023],[115,59,66,-0.01915710228358289],[115,59,67,-0.03339584811656264],[115,59,68,-0.0573259472449583],[115,59,69,-0.0527643533797749],[115,59,70,-0.04232374042365382],[115,59,71,-0.05167437555989796],[115,59,72,-0.056472587008385436],[115,59,73,-0.058264913770192564],[115,59,74,-0.06087696194437075],[115,59,75,-0.06886138259498331],[115,59,76,-0.10481873902825202],[115,59,77,-0.13174539114120723],[115,59,78,-0.11856131722759572],[115,59,79,-0.10377134556983937],[115,60,64,-0.017650595214285286],[115,60,65,-0.013182554125070864],[115,60,66,-0.019546814838585724],[115,60,67,-0.033878729693552094],[115,60,68,-0.05795687062770537],[115,60,69,-0.053256339404648544],[115,60,70,-0.04277130749214319],[115,60,71,-0.05249963386485154],[115,60,72,-0.05713743472186138],[115,60,73,-0.05843132381407505],[115,60,74,-0.06104540191678135],[115,60,75,-0.06952673209942553],[115,60,76,-0.10620263538542504],[115,60,77,-0.13334221372588378],[115,60,78,-0.11999168881590475],[115,60,79,-0.10505621545296441],[115,61,64,-0.018264000024509893],[115,61,65,-0.013759164525306481],[115,61,66,-0.01995314670958783],[115,61,67,-0.0343788230046111],[115,61,68,-0.05860319266543754],[115,61,69,-0.05375936744356236],[115,61,70,-0.04323039527231153],[115,61,71,-0.053341272453486396],[115,61,72,-0.0578172491079984],[115,61,73,-0.058606738193933444],[115,61,74,-0.06122163824328312],[115,61,75,-0.07020843135908027],[115,61,76,-0.10761348898945182],[115,61,77,-0.13496690231238634],[115,61,78,-0.12144910054798957],[115,61,79,-0.10636815163814345],[115,62,64,-0.018894622342760212],[115,62,65,-0.014353515117928258],[115,62,66,-0.020376295676882306],[115,62,67,-0.034896266286991086],[115,62,68,-0.05926488031601456],[115,62,69,-0.05427338042315725],[115,62,70,-0.04370104677907254],[115,62,71,-0.054199306479052786],[115,62,72,-0.05851186583610334],[115,62,73,-0.058790755908010806],[115,62,74,-0.06140519468047669],[115,62,75,-0.07090608099851452],[115,62,76,-0.10905077406603608],[115,62,77,-0.13661876400037756],[115,62,78,-0.12293311426461453],[115,62,79,-0.10770694741314538],[115,63,64,-0.019542676031483276],[115,63,65,-0.014965855501656506],[115,63,66,-0.020816453158046935],[115,63,67,-0.035431188702814295],[115,63,68,-0.059941886716724034],[115,63,69,-0.054798310668992906],[115,63,70,-0.04418329739317531],[115,63,71,-0.05507373539153573],[115,63,72,-0.05922110784147707],[115,63,73,-0.05898297405610039],[115,63,74,-0.061595592031503554],[115,63,75,-0.07161926468288841],[115,63,76,-0.11051392847436864],[115,63,77,-0.1382970665488017],[115,63,78,-0.12444326300777905],[115,63,79,-0.10907237492777909],[115,64,64,-0.02020836407651742],[115,64,65,-0.015596424812882382],[115,64,66,-0.021273803169246822],[115,64,67,-0.03598370942434253],[115,64,68,-0.060634150733517266],[115,64,69,-0.055334079724303056],[115,64,70,-0.044677174570650575],[115,64,71,-0.055964542674739964],[115,64,72,-0.05994478518934046],[115,64,73,-0.05918298792343982],[115,64,74,-0.061792348356869115],[115,64,75,-0.07234754884476703],[115,64,76,-0.11200235310656612],[115,64,77,-0.1400010380799505],[115,64,78,-0.12597905077189284],[115,64,79,-0.11046418482016382],[115,65,64,-0.0208918776522107],[115,65,65,-0.016245450647933608],[115,65,66,-0.021748521246917136],[115,65,67,-0.03655393668507504],[115,65,68,-0.06134159649978889],[115,65,69,-0.05588059815588365],[115,65,70,-0.04518269753074511],[115,65,71,-0.056871695604489625],[115,65,72,-0.06068269497996316],[115,65,73,-0.0593903911058236],[115,65,74,-0.06199497924008458],[115,65,75,-0.07309048247718322],[115,65,76,-0.11351541138159019],[115,65,77,-0.14172986689225997],[115,65,78,-0.127539952329724],[115,65,79,-0.11188210588649541],[115,66,64,-0.02159339517538491],[115,66,65,-0.016913147965132817],[115,66,66,-0.02224077333177534],[115,66,67,-0.03714196679869383],[115,66,68,-0.06206413294673854],[115,66,69,-0.05643776534813171],[115,66,70,-0.04569987692311809],[115,66,71,-0.057795145031097415],[115,66,72,-0.06143462129834146],[115,66,73,-0.05960477567777329],[115,66,74,-0.06220299811032742],[115,66,75,-0.0738475969976243],[115,66,76,-0.11505242884070967],[115,66,77,-0.1434827013883335],[115,66,78,-0.1291254131380825],[115,66,79,-0.11332584479833545],[115,67,64,-0.022313081351394714],[115,67,65,-0.017599717969839137],[115,67,66,-0.022750714617286477],[115,67,67,-0.03774788314802672],[115,67,68,-0.06280165332742005],[115,67,69,-0.05700546928630825],[115,67,70,-0.04622871447519161],[115,67,71,-0.05873482518932283],[115,67,72,-0.06220033521171112],[115,67,73,-0.05982573240541373],[115,67,74,-0.062415916624063136],[115,67,75,-0.07461840618742711],[115,67,76,-0.11661269285139135],[115,67,77,-0.14525865012447356],[115,67,78,-0.1307348493281218],[115,67,79,-0.11479508587148153],[115,68,64,-0.023051086215719985],[115,68,65,-0.018305346985889752],[115,68,66,-0.023278488364932296],[115,68,67,-0.03837175514637229],[115,68,68,-0.06355403473658702],[115,68,69,-0.057583586330015334],[115,68,70,-0.04676920262047789],[115,68,71,-0.05969065353894512],[115,68,72,-0.06297959481812777],[115,68,73,-0.06005285100571375],[115,68,74,-0.06263324510758395],[115,68,75,-0.07540240621110489],[115,68,76,-0.11819545242644208],[115,68,77,-0.14705678198778913],[115,68,78,-0.13236764778497104],[115,68,79,-0.11628949089039156],[115,69,64,-0.023807544174687258],[115,69,65,-0.01903020531705229],[115,69,66,-0.02382422468883932],[115,69,67,-0.039013637173703666],[115,69,68,-0.0643211376285049],[115,69,69,-0.0581719809779218],[115,69,70,-0.04732132410881148],[115,69,71,-0.0606625306391],[115,69,72,-0.0637721453492725],[115,69,73,-0.06028572045359968],[115,69,74,-0.06285449306221323],[115,69,75,-0.07619907571996917],[115,69,76,-0.11979991816503481],[115,69,77,-0.14887612650669652],[115,69,78,-0.13402316632129269],[115,69,79,-0.11780869899214061],[115,70,64,-0.024582573049101407],[115,70,65,-0.019774446102332647],[115,70,66,-0.02438803931257189],[115,70,67,-0.03967356749047246],[115,70,68,-0.0651028053349489],[115,70,69,-0.05877050562476855],[115,70,70,-0.04788505159944932],[115,70,71,-0.06165034005949058],[115,70,72,-0.06457771933056437],[115,70,73,-0.06052392933836808],[115,70,74,-0.0630791697338099],[115,70,75,-0.07700787604431224],[115,70,76,-0.12142526232206385],[115,70,77,-0.15071567430034147],[115,70,78,-0.13570073394918133],[115,70,79,-0.11935232661382823],[115,71,64,-0.025376273124677766],[115,71,65,-0.020538204169130634],[115,71,66,-0.024970032301068656],[115,71,67,-0.040351567131866495],[115,71,68,-0.0658988635855995],[115,71,69,-0.0593790003116472],[115,71,70,-0.04846034723801319],[115,71,71,-0.06265394833149017],[115,71,72,-0.0653960368015144],[115,71,73,-0.0607670662706703],[115,71,74,-0.06330678474800705],[115,71,75,-0.07782825147823486],[115,71,76,-0.12307061901201878],[115,71,77,-0.1525743776721267],[115,71,78,-0.13739965125459946],[115,71,79,-0.12091996750725983],[115,72,64,-0.026188726213359083],[115,72,65,-0.021321594888485364],[115,72,66,-0.025570286770989912],[115,72,67,-0.04104763878561652],[115,72,68,-0.06670912003313033],[115,72,69,-0.059997292470590276],[115,72,70,-0.04904716221834292],[115,72,71,-0.06367320494213194],[115,72,72,-0.06622680559916772],[115,72,73,-0.06101472034124335],[115,72,74,-0.06353684881247715],[115,72,75,-0.07865962966106194],[115,72,76,-0.1247350845533191],[115,72,77,-0.15445115135219045],[115,72,78,-0.1391191908783543],[115,72,79,-0.12251119282467603],[115,73,64,-0.027019994729739004],[115,73,65,-0.022124713036834675],[115,73,66,-0.026188867582968494],[115,73,67,-0.041761765656629535],[115,73,68,-0.06753336378531619],[115,73,69,-0.06062519666452087],[115,73,70,-0.0496454363303874],[115,73,71,-0.06470794237390674],[115,73,72,-0.06706972170734989],[115,73,73,-0.061266481632434866],[115,73,74,-0.06376887448733755],[115,73,75,-0.07950142205910309],[115,73,76,-0.12641771795876727],[115,73,77,-0.15634487339332134],[115,73,78,-0.14085859810740428],[115,73,79,-0.12412555127922696],[115,74,64,-0.02787012078690255],[115,74,65,-0.022947631668858805],[115,74,66,-0.02682582001945821],[115,74,67,-0.04249391032188162],[115,74,68,-0.06837136494648031],[115,74,69,-0.061262514323579036],[115,74,70,-0.050255097495284236],[115,74,71,-0.06575797619315395],[115,74,72,-0.0679244696742244],[115,74,73,-0.0615219417833729],[115,74,74,-0.06400237702456071],[115,74,75,-0.08035302455124516],[115,74,76,-0.12811754157738192],[115,74,77,-0.15825438622430762],[115,74,78,-0.1426170915799618],[115,74,79,-0.1257625693837247],[115,75,64,-0.0287391253161628],[115,75,65,-0.023790401006203606],[115,75,66,-0.02748116845216805],[115,75,67,-0.0432440135792492],[115,75,68,-0.0692228741706894],[115,75,69,-0.06190903347890815],[115,75,70,-0.05087606128889539],[115,75,71,-0.06682310518977996],[115,75,72,-0.06879072310055073],[115,75,73,-0.06178069460952314],[115,75,74,-0.06423687527708936],[115,75,75,-0.08121381812166587],[115,75,76,-0.12983354189255059],[115,75,77,-0.1601784978643311],[115,75,78,-0.14439386410764515],[115,75,79,-0.1274217517711461],[115,76,64,-0.0296270072152571],[115,76,65,-0.02465304734701861],[115,76,66,-0.02815491500328343],[115,76,67,-0.0440119932941292],[115,76,68,-0.07008762222911341],[115,76,69,-0.06256452849499229],[115,76,70,-0.05150823045513048],[115,76,71,-0.0679031115709096],[115,76,72,-0.06966814520082758],[115,76,73,-0.06204233677720368],[115,76,74,-0.0644718926781245],[115,76,75,-0.08208316966268309],[115,76,76,-0.13156467048102413],[115,76,77,-0.16211598330152413],[115,76,78,-0.14618808361762098],[115,76,79,-0.12910258160021446],[115,77,64,-0.030533742529638006],[115,77,65,-0.02553557200138099],[115,77,66,-0.028847038204901934],[115,77,67,-0.04479774324787419],[115,77,68,-0.07096531959398096],[115,77,69,-0.06322875980163382],[115,77,70,-0.05215149441044013],[115,77,71,-0.06899776121091829],[115,77,72,-0.07055638943927309],[115,77,73,-0.062306468533416384],[115,77,74,-0.0647069582907834],[115,77,75,-0.0829604328904211],[115,77,76,-0.1333098451367937],[115,77,77,-0.16406558603826363],[115,77,78,-0.14799889421732923],[115,77,79,-0.1308045210492079],[115,78,64,-0.03145928367158771],[115,78,65,-0.026437950257830894],[115,78,66,-0.02955749166136156],[115,78,67,-0.04560113199227787],[115,78,68,-0.07185565604160808],[115,78,69,-0.06390147362671673],[115,78,70,-0.05280572874097361],[115,78,71,-0.07010680396018121],[115,78,72,-0.0714551002423993],[115,78,73,-0.06257269449120521],[115,78,74,-0.06494160792810987],[115,78,75,-0.0838449493756918],[115,78,76,-0.1350679511634431],[115,78,77,-0.16602601980527212],[115,78,78,-0.14982541738408145],[115,78,79,-0.13252701190101612],[115,79,64,-0.032403558681940114],[115,79,65,-0.02736013038636218],[115,79,66,-0.030286202719368376],[115,79,67,-0.04642200171452887],[115,79,68,-0.07275830027700342],[115,79,69,-0.06458240173093414],[115,79,70,-0.05347079469398672],[115,79,71,-0.07122997401472166],[115,79,72,-0.07236391378970686],[115,79,73,-0.06284062447056246],[115,79,74,-0.06517538534316718],[115,79,75,-0.08473604969215297],[115,79,76,-0.1368378428380694],[115,79,77,-0.1679959704460407],[115,79,78,-0.15166675328148002],[115,79,79,-0.13426947622230168],[115,80,64,-0.033366470539197654],[115,80,65,-0.028302032683286606],[115,80,66,-0.031033071151024993],[115,80,67,-0.04726016711720323],[115,80,68,-0.07367289958254561],[115,80,69,-0.06527126114566176],[115,80,70,-0.054146538665137245],[115,80,71,-0.07236699034873531],[115,80,72,-0.07328245888373042],[115,80,73,-0.06310987439466216],[115,80,74,-0.06540784348863173],[115,80,75,-0.08563305468339058],[115,80,76,-0.1386183450492623],[115,80,77,-0.1699740979724547],[115,80,78,-0.153521982204186],[115,80,79,-0.1360313171393873],[115,81,64,-0.03434789652086803],[115,81,65,-0.02926354856348617],[115,81,66,-0.03179796785508485],[115,81,67,-0.048115414318047375],[115,81,68,-0.07459907949325717],[115,81,69,-0.06596775391521792],[115,81,70,-0.054832791683426724],[115,81,71,-0.07351755721181627],[115,81,72,-0.07421035790043153],[115,81,73,-0.06338006724102468],[115,81,74,-0.06563854584506143],[115,81,75,-0.08653527685023295],[115,81,76,-0.14040825511112448],[115,81,77,-0.17195903879194452],[115,81,78,-0.15539016615223655],[115,81,79,-0.13781191971333961],[115,82,64,-0.035347687621828244],[115,82,65,-0.03024453970562947],[115,82,66,-0.03258073358197091],[115,82,67,-0.04898749977447975],[115,82,68,-0.07553644350123324],[115,82,69,-0.06667156684481673],[115,82,70,-0.05552936889566055],[115,82,71,-0.07468136469252569],[115,82,72,-0.07514722782066348],[115,82,73,-0.06365083404702192],[115,82,74,-0.06586706781675511],[115,82,75,-0.08744202185918633],[115,82,76,-0.1422063447546663],[115,82,77,-0.17394940810583473],[115,82,78,-0.15727035053569544],[115,82,79,-0.13961065191649988],[115,83,64,-0.0363656678027769],[115,83,65,-0.031244836940327553],[115,83,66,-0.033381177227772715],[115,83,67,-0.04987614836752942],[115,83,68,-0.07648457118051136],[115,83,69,-0.06738236959500771],[115,83,70,-0.056236067467649004],[115,83,71,-0.0758580869469605],[115,83,72,-0.07609267867018833],[115,83,73,-0.06392181250549199],[115,83,74,-0.06609299542422446],[115,83,75,-0.0883525861766198],[115,83,76,-0.14401135531229392],[115,83,77,-0.17594379337540633],[115,83,78,-0.15916155726860082],[115,83,79,-0.14142685750102824],[115,84,64,-0.037401626666386974],[115,84,65,-0.032264229748377275],[115,84,66,-0.0341990602583165],[115,84,67,-0.05078102517472589],[115,84,68,-0.0774429675852039],[115,84,69,-0.06809976242359782],[115,84,70,-0.056952616152667286],[115,84,71,-0.07704730677338568],[115,84,72,-0.07704623017550508],[115,84,73,-0.06419257078895524],[115,84,74,-0.06631583991785378],[115,84,75,-0.08926613228641524],[115,84,76,-0.1458217781182788],[115,84,77,-0.17794046802326088],[115,84,78,-0.16106250880335954],[115,84,79,-0.14325959565844407],[115,85,64,-0.03845531994919468],[115,85,65,-0.033302464758527786],[115,85,66,-0.03503409367695747],[115,85,67,-0.05170173059965544],[115,85,68,-0.07841105584902683],[115,85,69,-0.06882326798554464],[115,85,70,-0.0576786658521367],[115,85,71,-0.07824850078242071],[115,85,72,-0.07800729636597946],[115,85,73,-0.06446259629756072],[115,85,74,-0.0665350253309125],[115,85,75,-0.09018166489540522],[115,85,76,-0.1476358085813703],[115,85,77,-0.17993733212380222],[115,85,78,-0.16297156867330187],[115,85,79,-0.14510758229018442],[115,86,64,-0.03952647925618716],[115,86,65,-0.0343592576968931],[115,86,66,-0.03588595459253007],[115,86,67,-0.052637832489170845],[115,86,68,-0.07938823804472234],[115,86,69,-0.06955239366879305],[115,86,70,-0.05841384815995969],[115,86,71,-0.07946112886482778],[115,86,72,-0.07897528577931191],[115,86,73,-0.0647313892588691],[115,86,74,-0.06674999400715118],[115,86,75,-0.09109818034744382],[115,86,76,-0.14945160499877697],[115,86,77,-0.18193224964906313],[115,86,78,-0.16488706356720217],[115,86,79,-0.14696949061351688],[115,87,64,-0.04061481288906991],[115,87,65,-0.03543429406887808],[115,87,66,-0.03675428646782154],[115,87,67,-0.053588867439057476],[115,87,68,-0.08037389886435638],[115,87,69,-0.07028663520362052],[115,87,70,-0.05915777848014385],[115,87,71,-0.08068464067495426],[115,87,72,-0.07994960900658586],[115,87,73,-0.06499846946838393],[115,87,74,-0.06696021453215037],[115,87,75,-0.09201467788179679],[115,87,76,-0.15126730757424925],[115,87,77,-0.18392307270919483],[115,87,78,-0.16680730555611156],[115,87,79,-0.14884397104371724],[115,88,64,-0.041720006193135394],[115,88,65,-0.036527229185615316],[115,88,66,-0.03763869835666655],[115,88,67,-0.05455434012401884],[115,88,68,-0.08136740556567346],[115,88,69,-0.07102547640082162],[115,88,70,-0.05991005547004686],[115,88,71,-0.08191847661262756],[115,88,72,-0.08092968011179798],[115,88,73,-0.06526337732897815],[115,88,74,-0.06716518325883727],[115,88,75,-0.09293016176343125],[115,88,76,-0.1530810414988137],[115,88,77,-0.18590764494097778],[115,88,78,-0.1687305942884161],[115,88,79,-0.15072965227522786],[115,89,64,-0.04284172198821499],[115,89,65,-0.0376376882807689],[115,89,66,-0.03853876421262568],[115,89,67,-0.0555337226916535],[115,89,68,-0.08236810795652645],[115,89,69,-0.07176838889944455],[115,89,70,-0.06067026049667155],[115,89,71,-0.08316206886204619],[115,89,72,-0.08191491811736194],[115,89,73,-0.06552567493459431],[115,89,74,-0.06736442588430837],[115,89,75,-0.09384364353179006],[115,89,76,-0.15489092021229303],[115,89,77,-0.18788380506129512],[115,89,78,-0.17065521931739452],[115,89,79,-0.15262514247968573],[115,90,64,-0.04397960108452711],[115,90,65,-0.03876526671972551],[115,90,66,-0.03945402227304468],[115,90,67,-0.056526454223651594],[115,90,68,-0.08337533841780995],[115,90,69,-0.07251483192457714],[115,90,70,-0.06143795710762799],[115,90,71,-0.08441484248511619],[115,90,72,-0.08290474855105398],[115,90,73,-0.0657849471934844],[115,90,74,-0.06755749907166128],[115,90,75,-0.09475414436162788],[115,90,76,-0.15669504883706958],[115,90,77,-0.18984939057500588],[115,90,78,-0.17257946255445364],[115,90,79,-0.15452903061786596],[115,91,64,-0.04513326288390431],[115,91,65,-0.03990953030287399],[115,91,66,-0.040383974522157466],[115,91,67,-0.05753194026734415],[115,91,68,-0.0843884119652852],[115,91,69,-0.0732642520557604],[115,91,70,-0.06221269051846936],[115,91,71,-0.0856762165664083],[115,91,72,-0.08389860504954277],[115,91,73,-0.06604080298610611],[115,91,74,-0.06774399211031003],[115,91,75,-0.09566069752896907],[115,91,76,-0.15849152777482423],[115,91,77,-0.1918022416260332],[115,91,78,-0.17450160084079516],[115,91,79,-0.15643988786231486],[115,92,64,-0.04630230606653631],[115,92,65,-0.04107001566434643],[115,92,66,-0.041328086236744645],[115,92,67,-0.05854955244062347],[115,92,68,-0.08540662635062053],[115,92,69,-0.07401608300665803],[115,92,70,-0.06299398711815005],[115,92,71,-0.08694560540661225],[115,92,72,-0.08489593101327873],[115,92,73,-0.06629287635258511],[115,92,74,-0.06792352860797345],[115,92,75,-0.09656235097466614],[115,92,76,-0.16027845645617125],[115,92,77,-0.19374020497978633],[115,92,78,-0.17641990862976983],[115,92,79,-0.15835626912708148],[115,93,64,-0.0474863093630716],[115,93,65,-0.04224623076730269],[115,93,66,-0.042285785617749115],[115,93,67,-0.05957862811318568],[115,93,68,-0.08642926220198044],[115,93,69,-0.07476974541674664],[115,93,70,-0.06378135399449289],[115,93,71,-0.08822241976115888],[115,93,72,-0.08589618130726318],[115,93,73,-0.06654082770456264],[115,93,74,-0.06809576820736178],[115,93,75,-0.09745816995758605],[115,93,76,-0.16205393723246364],[115,93,77,-0.195661138124505],[115,93,78,-0.17833266077182872],[115,93,79,-0.160276714700734],[115,94,64,-0.04868483241154],[115,94,65,-0.04343765549646321],[115,94,66,-0.04325646351103684],[115,94,67,-0.060618470166877866],[115,94,68,-0.08745558320441288],[115,94,69,-0.07552464665583393],[115,94,70,-0.06457427848158047],[115,94,71,-0.08950606812039016],[115,94,72,-0.08689882400186516],[115,94,73,-0.06678434505604619],[115,94,74,-0.06826040832031599],[115,94,75,-0.09834723978888876],[115,94,76,-0.1638160793982839],[115,94,77,-0.19756291347849272],[115,94,78,-0.1802381353935213],[115,94,79,-0.1621997519784918],[115,95,64,-0.04989741669826449],[115,95,65,-0.0446437423483045],[115,95,66,-0.04423947322036934],[115,95,67,-0.0616683468378572],[115,95,68,-0.08848483632030016],[115,95,69,-0.07628018064235062],[115,95,70,-0.06537222773111151],[115,95,71,-0.09079595802747173],[115,95,72,-0.08790334214761684],[115,95,73,-0.06702314526778956],[115,95,74,-0.06841718587199513],[115,95,75,-0.09922866863841323],[115,95,76,-0.16556300333250257],[115,95,77,-0.1994434226897056],[115,95,78,-0.18213461686164817],[115,95,79,-0.1641238972890576],[115,96,64,-0.0511235865815096],[115,96,65,-0.04586391721889573],[115,96,66,-0.04523413041537122],[115,96,67,-0.06272749164303724],[115,96,68,-0.08951625205002786],[115,96,69,-0.0770357276763822],[115,96,70,-0.06617464830976628],[115,96,71,-0.09209149742994993],[115,96,72,-0.08890923557757768],[115,96,73,-0.06725697529952904],[115,96,74,-0.06856587904744627],[115,96,75,-0.10010159040364805],[115,96,76,-0.16729284474508277],[115,96,77,-0.2013005810136142],[115,96,78,-0.18402039882325774],[115,96,79,-0.16604765781138411],[115,97,64,-0.05236285039631954],[115,97,65,-0.04709758028905791],[115,97,66,-0.046239713137126076],[115,97,67,-0.0637951033931986],[115,97,68,-0.09054904473303826],[115,97,69,-0.07779065428854437],[115,97,70,-0.06698096582473592],[115,97,71,-0.0933920960606997],[115,97,72,-0.08991602273064961],[115,97,73,-0.06748561346432126],[115,97,74,-0.06870630903275494],[115,97,75,-0.10096516763134236],[115,97,76,-0.1690037590162308],[115,97,77,-0.20313233175482384],[115,97,78,-0.1858937873118673],[115,97,79,-0.1679695335763642],[115,98,64,-0.053614701638627714],[115,98,65,-0.04834410700613552],[115,98,66,-0.04725546190378347],[115,98,67,-0.06487034629494537],[115,98,68,-0.09158241288938032],[115,98,69,-0.0785443131058781],[115,98,70,-0.06779058457961964],[115,98,71,-0.09469716684379784],[115,98,72,-0.0909232424889798],[115,98,73,-0.06770887067911002],[115,98,74,-0.06883834174280357],[115,98,75,-0.10181859448137313],[115,98,76,-0.1706939256139087],[115,98,77,-0.2049366507575231],[115,98,78,-0.1877531039099691],[115,98,79,-0.16988801954814767],[115,99,64,-0.054878620226326155],[115,99,65,-0.0496028491612563],[115,99,66,-0.048280579918270394],[115,99,67,-0.0659523501434552],[115,99,68,-0.0926155396017769],[115,99,69,-0.07929604273597805],[115,99,70,-0.06860288726289834],[115,99,71,-0.09600612732063037],[115,99,72,-0.09193045602231943],[115,99,73,-0.06792659170549417],[115,99,74,-0.0689618895274687],[115,99,75,-0.1026610997220257],[115,99,76,-0.17236155257514188],[115,99,77,-0.20671155092940946],[115,99,78,-0.1895966889575447],[115,99,79,-0.17180160777947823],[115,100,64,-0.056154073834679644],[115,100,65,-0.050873136060628224],[115,100,66,-0.04931423337999381],[115,100,67,-0.06704021060782069],[115,100,68,-0.09364759293823206],[115,100,69,-0.08004516767068895],[115,100,70,-0.06941723467127457],[115,100,71,-0.09731840109142366],[115,100,72,-0.09293724863205771],[115,100,73,-0.06813865637462155],[115,100,74,-0.0690769128479991],[115,100,75,-0.10349194974549296],[115,100,76,-0.1740048810360856],[115,100,77,-0.2084550867834435],[115,100,78,-0.19142290479607377],[115,100,79,-0.17370878963520167],[115,101,64,-0.05744051930309582],[115,101,65,-0.05215427578901532],[115,101,66,-0.05035555190211636],[115,101,67,-0.06813298961053792],[115,101,68,-0.09467772641513399],[115,101,69,-0.08079099821076507],[115,101,70,-0.07023296547019622],[115,101,71,-0.09863341926722394],[115,101,72,-0.09394323158746316],[115,101,73,-0.06834498079005216],[115,101,74,-0.06918342191520854],[115,101,75,-0.1043104515920538],[115,101,76,-0.17562218979538205],[115,101,77,-0.2101653589815329],[115,101,78,-0.1932301390373119],[115,101,79,-0.175608058077873],[115,102,64,-0.05873740410989572],[115,102,65,-0.05344555656313505],[115,102,66,-0.05140362903568361],[115,102,67,-0.06922971580244988],[115,102,68,-0.09570507950072243],[115,102,69,-0.08153283041291715],[115,102,70,-0.07104939599385776],[115,102,71,-0.09995062192717623],[115,102,72,-0.09494804394647004],[115,102,73,-0.0685455185023192],[115,102,74,-0.06928147828097447],[115,102,75,-0.10511595597100279],[115,102,76,-0.17721179989485697],[115,102,77,-0.2118405188639372],[115,102,78,-0.1950168078458224],[115,102,79,-0.17749791000906048],[115,103,64,-0.06004416791141845],[115,103,65,-0.05474624817236575],[115,103,66,-0.0524575229016031],[115,103,67,-0.07032938513423624],[115,103,68,-0.0967287781587711],[115,103,69,-0.08226994606076427],[115,103,70,-0.07186582008702588],[115,103,71,-0.10126945957588405],[115,103,72,-0.09595135435326965],[115,103,73,-0.06874026164891935],[115,103,74,-0.06937119637452709],[115,103,75,-0.10590786026618106],[115,103,76,-0.17877207920132798],[115,103,77,-0.2134787729480913],[115,103,78,-0.19678135922415135],[115,103,79,-0.17937684865979425],[115,104,64,-0.06136024414145633],[115,104,65,-0.05605560350377058],[115,104,66,-0.05351625693116199],[115,104,67,-0.07143096152529195],[115,104,68,-0.09774793543227123],[115,104,69,-0.08300161266126294],[115,104,70,-0.07268150899103278],[115,104,71,-0.10258939459552453],[115,104,72,-0.09695286280485733],[115,104,73,-0.06892924205342976],[115,104,74,-0.06945274497496941],[115,104,75,-0.10668561151370218],[115,104,76,-0.18030144697298758],[115,104,77,-0.21507838738042484],[115,104,78,-0.19852227628938696],[115,104,79,-0.1812433860233782],[115,105,64,-0.06268506166802094],[115,105,65,-0.05737286022258463],[115,105,66,-0.05457882081024609],[115,105,67,-0.07253337768892112],[115,105,68,-0.0987616520835956],[115,105,69,-0.08372708350658302],[115,105,70,-0.07349571134739094],[115,105,71,-0.10390990265061525],[115,105,72,-0.09795230234296676],[115,105,73,-0.06911253226329217],[115,105,74,-0.0695263484806847],[115,105,75,-0.10744870918431294],[115,105,76,-0.18179837820899297],[115,105,77,-0.2166376921496875],[115,105,78,-0.20023808038224628],[115,105,79,-0.18309604519863895],[115,106,64,-0.06401804655845082],[115,106,65,-0.0586973283859464],[115,106,66,-0.055644282941417864],[115,106,67,-0.07363560527649896],[115,106,68,-0.09976903796159377],[115,106,69,-0.08444564433852432],[115,106,70,-0.07430773798427541],[115,106,71,-0.10523043014391908],[115,106,72,-0.09894939706474831],[115,106,73,-0.0692902285895317],[115,106,74,-0.06959213404210843],[115,106,75,-0.10819652564506198],[115,106,76,-0.18326119202203991],[115,106,77,-0.21815488100330324],[115,106,78,-0.20192716205831682],[115,106,79,-0.18493321724365838],[115,107,64,-0.06535861338736791],[115,107,65,-0.06002855197789506],[115,107,66,-0.05671201426008262],[115,107,67,-0.07473679864821561],[115,107,68,-0.10076926078089801],[115,107,69,-0.08515671669304253],[115,107,70,-0.07511713916361448],[115,107,71,-0.10655030193014468],[115,107,72,-0.09994376412924759],[115,107,73,-0.06946240660978897],[115,107,74,-0.06964982161033097],[115,107,75,-0.10892794267230932],[115,107,76,-0.18468763056528573],[115,107,77,-0.21962761667754385],[115,107,78,-0.20358744817655386],[115,107,79,-0.18675288128543632],[115,108,64,-0.06670615145320448],[115,108,65,-0.061366095404780344],[115,108,66,-0.057781432616694474],[115,108,67,-0.07583614289629155],[115,108,68,-0.10176150911891924],[115,108,69,-0.08585976561654457],[115,108,70,-0.07592352082685144],[115,108,71,-0.10786881544837877],[115,108,72,-0.1009349977611957],[115,108,73,-0.06962914929674614],[115,108,74,-0.06969907547691441],[115,108,75,-0.10964177153914688],[115,108,76,-0.18607537030325605],[115,108,77,-0.22105351949514193],[115,108,78,-0.2052168134686226],[115,108,79,-0.18855295515022133],[115,109,64,-0.06806002421666815],[115,109,65,-0.06270949756110135],[115,109,66,-0.05885194559139998],[115,109,67,-0.07693281978700432],[115,109,68,-0.10274498406967375],[115,109,69,-0.08655427786460737],[115,109,70,-0.07672650212759269],[115,109,71,-0.10918526392302774],[115,109,72,-0.10192269082893003],[115,109,73,-0.06979055485944982],[115,109,74,-0.06973958533501808],[115,109,75,-0.11033685086417072],[115,109,76,-0.18742214118533554],[115,109,77,-0.22243028087271643],[115,109,78,-0.2068131759388139],[115,109,79,-0.1903313765594326],[115,110,64,-0.0694195704456583],[115,110,65,-0.06405827276032676],[115,110,66,-0.059922951753023174],[115,110,67,-0.07802600936526466],[115,110,68,-0.10371890073392584],[115,110,69,-0.08723976295283259],[115,110,70,-0.0775257161790735],[115,110,71,-0.1104989374507106],[115,110,72,-0.10290643543861241],[115,110,73,-0.06994673659554085],[115,110,74,-0.0697710670455126],[115,110,75,-0.11101204920574907],[115,110,76,-0.1887257316686774],[115,110,77,-0.22375566829952032],[115,110,78,-0.20837450083737483],[115,110,79,-0.19208610680430818],[115,111,64,-0.07078410543227931],[115,111,65,-0.06541191172281405],[115,111,66,-0.060993841956635333],[115,111,67,-0.07911489159531196],[115,111,68,-0.10468248970725244],[115,111,69,-0.08791575417239182],[115,111,70,-0.07832081077385915],[115,111,71,-0.11180912410923326],[115,111,72,-0.10388582354093902],[115,111,73,-0.07009782271900435],[115,111,74,-0.06979326338618597],[115,111,75,-0.11166626765563802],[115,111,76,-0.18998399370345184],[115,111,77,-0.2250275302288563],[115,111,78,-0.20989880460567595],[115,111,79,-0.1938151344526701],[115,112,64,-0.07215292228106795],[115,112,65,-0.0667698826211005],[115,112,66,-0.06206400067710568],[115,112,67,-0.08019864803306512],[115,112,68,-0.1056349985609572],[115,112,69,-0.08858180956569153],[115,112,70,-0.07911144907279376],[115,112,71,-0.11311511108642498],[115,112,72,-0.10486044754999894],[115,112,73,-0.07024395616384568],[115,112,74,-0.06980594477925442],[115,112,75,-0.11229844242141925],[115,112,76,-0.19119484766079697],[115,112,77,-0.22624380086213525],[115,112,78,-0.21138415877801817],[115,112,79,-0.19551647907458453],[115,113,64,-0.07352529326717754],[115,113,65,-0.06813163218247456],[115,113,66,-0.06313280737579027],[115,113,67,-0.08127646352547038],[115,113,68,-0.10657569331075217],[115,113,69,-0.08923751285773363],[115,113,70,-0.0798973102603128],[115,113,71,-0.114416185826479],[115,113,72,-0.10582990097378045],[115,113,73,-0.07038529436409212],[115,113,74,-0.06980890999244638],[115,113,75,-0.11290754738721957],[115,113,76,-0.1923562871840174],[115,113,77,-0.22740250480596594],[115,113,78,-0.2128286938250885],[115,113,79,-0.1971881949736634],[115,114,64,-0.07490047126282978],[115,114,65,-0.06949658684832785],[115,114,66,-0.06419963789726019],[115,114,67,-0.08234752793198614],[115,114,68,-0.10750385986811566],[115,114,69,-0.08988247433889095],[115,114,70,-0.08067809016333444],[115,114,71,-0.11571163719127815],[115,114,72,-0.10679377905564204],[115,114,73,-0.07052200901050236],[115,114,74,-0.06980198680897852],[115,114,75,-0.11349259664214435],[115,114,76,-0.1934663839437352],[115,114,77,-0.22850176158307106],[115,114,78,-0.21423060292425444],[115,114,79,-0.19882837491067998],[115,115,64,-0.07627769071219691],[115,115,65,-0.07086415346567074],[115,115,66,-0.06526386536295618],[115,115,67,-0.08341103732734093],[115,115,68,-0.10841880492733255],[115,115,69,-0.09051633114698499],[115,115,70,-0.08145350127699434],[115,115,71,-0.11700075607393055],[115,115,72,-0.1077516788596977],[115,115,73,-0.07065428521202971],[115,115,74,-0.06978503208340922],[115,115,75,-0.11405264638145098],[115,115,76,-0.19452329168750496],[115,115,77,-0.22953978938180192],[115,115,78,-0.215588145039609],[115,115,79,-0.20043515319765412],[115,116,64,-0.0776560409994616],[115,116,65,-0.07223359087265752],[115,116,66,-0.066324730430751],[115,116,67,-0.08446606305676431],[115,116,68,-0.10931972315873272],[115,116,69,-0.09113861231567211],[115,116,70,-0.08222313605812086],[115,116,71,-0.11828269781571174],[115,116,72,-0.10870305964257601],[115,116,73,-0.07078217939523422],[115,116,74,-0.06975778900189944],[115,116,75,-0.11458665248504159],[115,116,76,-0.19552510437496082],[115,116,77,-0.23051476133422924],[115,116,78,-0.21689949910856166],[115,116,79,-0.20200655846862742],[115,117,64,-0.07903429378129657],[115,117,65,-0.0736038348147475],[115,117,66,-0.06738116422089299],[115,117,67,-0.08551137280990499],[115,117,68,-0.11020551574273704],[115,117,69,-0.0917485544932959],[115,117,70,-0.08298628025990341],[115,117,71,-0.11955629406642737],[115,117,72,-0.10964705201883129],[115,117,73,-0.07090542531384936],[115,117,74,-0.069719691775138],[115,117,75,-0.11509327485322306],[115,117,76,-0.19646966032436503],[115,117,77,-0.23142460709891932],[115,117,78,-0.21816256295925382],[115,117,79,-0.20354031059119837],[115,118,64,-0.08041115199365444],[115,118,65,-0.0749737494380937],[115,118,66,-0.0684320427137784],[115,118,67,-0.0865456881003873],[115,118,68,-0.11107505023408341],[115,118,69,-0.0923453639404825],[115,118,70,-0.083742177547059],[115,118,71,-0.12082032096536177],[115,118,72,-0.11058272844283887],[115,118,73,-0.07102370633885043],[115,118,74,-0.06967014157401515],[115,118,75,-0.11557115794327068],[115,118,76,-0.19735482743734323],[115,118,77,-0.23226730043495938],[115,118,78,-0.21937524325192076],[115,118,79,-0.20503411359663107],[115,119,64,-0.08178529289390257],[115,119,65,-0.07634217051258411],[115,119,66,-0.06947623053151522],[115,119,67,-0.0875677287983921],[115,119,68,-0.1119272051210114],[115,119,69,-0.09292826087376699],[115,119,70,-0.08449007414971035],[115,119,71,-0.12207354508299621],[115,119,72,-0.11150914912969742],[115,119,73,-0.0711367008363155],[115,119,74,-0.06960855320081019],[115,119,75,-0.11601897969522146],[115,119,76,-0.1981785544006506],[115,119,77,-0.2330409104056638],[115,119,78,-0.2205355068493009],[115,119,79,-0.20648570782733566],[115,120,64,-0.08315537026039094],[115,120,65,-0.07770790734172184],[115,120,66,-0.07051258289882142],[115,120,67,-0.08857621535549177],[115,120,68,-0.11276087156846756],[115,120,69,-0.0934964804977356],[115,120,70,-0.08522921975302039],[115,120,71,-0.12331472517321367],[115,120,72,-0.11242536331961234],[115,120,73,-0.07124408239067664],[115,120,74,-0.06953435609736514],[115,120,75,-0.11643545428655525],[115,120,76,-0.1989388751363236],[115,120,77,-0.2337436053166461],[115,120,78,-0.22164138454753318],[115,120,79,-0.20789287404818585],[115,121,64,-0.08452001669171276],[115,121,65,-0.07906974477121244],[115,121,66,-0.07153994766385034],[115,121,67,-0.08956987107280151],[115,121,68,-0.11357495517045713],[115,121,69,-0.09404927402663267],[115,121,70,-0.08595886839935382],[115,121,71,-0.12454261398647799],[115,121,72,-0.11333041061305628],[115,121,73,-0.0713455200777194],[115,121,74,-0.06944699536507688],[115,121,75,-0.1168193348587867],[115,121,76,-0.19963391310961642],[115,121,77,-0.23437365647070263],[115,121,78,-0.22269097472203783],[115,121,79,-0.2092534375435203],[115,122,64,-0.08587784600086122],[115,122,65,-0.08042644529268235],[115,122,66,-0.07255716737403853],[115,122,67,-0.09054742440628673],[115,122,68,-0.11436837770652493],[115,122,69,-0.09458590969226603],[115,122,70,-0.08667827940076808],[115,122,71,-0.1257559601400813],[115,122,72,-0.11422332237423918],[115,122,73,-0.07144067878690337],[115,122,74,-0.06934593279228496],[115,122,75,-0.1171694162059666],[115,122,76,-0.20026188547872747],[115,122,77,-0.23492944172534666],[115,122,78,-0.22368244687616443],[115,122,79,-0.21056527218693671],[115,123,64,-0.08722745569906373],[115,123,65,-0.08177675123851476],[115,123,66,-0.07356308140181277],[115,123,67,-0.09150761130288798],[115,123,68,-0.11514007889733059],[115,123,69,-0.09510567373514048],[115,123,70,-0.08738671825964466],[115,123,71,-0.126953510041326],[115,123,72,-0.11510312320011643],[115,123,73,-0.07152921959235889],[115,123,74,-0.06923064788461449],[115,123,75,-0.11748453741521504],[115,123,76,-0.20082110707090542],[115,123,77,-0.2354094488395997],[115,123,78,-0.22461404508078728],[115,123,79,-0.21182630447108552],[115,124,64,-0.08856742956365296],[115,124,65,-0.08311938706334807],[115,124,66,-0.07455652811473536],[115,124,67,-0.09244917756094984],[115,124,68,-0.11588901815425803],[115,124,69,-0.09560787137581993],[115,124,70,-0.08808345759524641],[115,124,71,-0.1281340098592509],[115,124,72,-0.11596883245182742],[115,124,73,-0.0716108001716681],[115,124,74,-0.06910063889379005],[115,124,75,-0.11776358444950986],[115,124,76,-0.20130999417009593],[115,124,77,-0.2358122785973918],[115,124,78,-0.2254840912933908],[115,124,79,-0.21303451748475802],[115,125,64,-0.08989634028400997],[115,125,65,-0.08445306170744418],[115,125,66,-0.07553634708451043],[115,125,67,-0.09337088120835962],[115,125,68,-0.11661417631806047],[115,125,69,-0.0960918277636629],[115,125,70,-0.0887677780740468],[115,125,71,-0.12929620754035145],[115,125,72,-0.11681946584521463],[115,125,73,-0.07168507527136375],[115,125,74,-0.06895542384047686],[115,125,75,-0.11800549266315821],[115,125,76,-0.20172706810197144],[115,125,77,-0.23613664769576792],[115,125,78,-0.22629098854563373],[115,125,79,-0.21418795482473385],[115,126,64,-0.09121275217922793],[115,126,65,-0.08577647103671938],[115,126,66,-0.07650138132905059],[115,126,67,-0.09427149489167642],[115,126,68,-0.1173145573815615],[115,126,69,-0.09655688890018975],[115,126,70,-0.08943896934168477],[115,126,71,-0.13043885486353732],[115,126,72,-0.11765403709678428],[115,126,73,-0.07175169721786577],[115,126,74,-0.06879454152672695],[115,126,75,-0.11820924924060491],[115,126,76,-0.20207095860293628],[115,126,77,-0.2363813913870026],[115,126,78,-0.2270332239888977],[115,126,79,-0.2152847244300914],[115,127,64,-0.09251522398080851],[115,127,65,-0.08708830035387159],[115,127,66,-0.07745047958162965],[115,127,67,-0.0951498082694327],[115,127,68,-0.11798919019145937],[115,127,69,-0.09700242253442828],[115,127,70,-0.09009633095439958],[115,127,71,-0.13156070952936846],[115,127,72,-0.11847155962117407],[115,127,73,-0.07181031647233496],[115,127,74,-0.06861755253360186],[115,127,75,-0.11837389554941219],[115,127,76,-0.20234040696038147],[115,127,77,-0.2365454658645482],[115,127,78,-0.2277093717877312],[115,127,79,-0.21632300232683416],[115,128,64,-0.09380231167340082],[115,128,65,-0.08838722697470404],[115,128,66,-0.07838249858100485],[115,128,67,-0.09600463040274905],[115,128,68,-0.11863713012436768],[115,128,69,-0.09742781902774604],[115,128,70,-0.09073917330785167],[115,128,71,-0.13266053727847116],[115,128,72,-0.11927104827597088],[115,128,73,-0.07186058222775563],[115,128,74,-0.06842404019962842],[115,128,75,-0.11849852939857419],[115,128,76,-0.20253426891233486],[115,128,77,-0.2366279503837403],[115,128,78,-0.2283180958517085],[115,128,79,-0.21730103627102615],[115,129,64,-0.09507257138629427],[115,129,65,-0.08967192286341742],[115,129,66,-0.07929630537625271],[115,129,67,-0.09683479213635357],[115,129,68,-0.11925746073229576],[115,129,69,-0.09783249218579758],[115,129,70,-0.09136681856126574],[115,129,71,-0.13373711403388058],[115,129,72,-0.12005152114947173],[115,129,73,-0.07190214304635284],[115,129,74,-0.06821361157579987],[115,129,75,-0.11858230719362181],[115,129,76,-0.2026515172954882],[115,129,77,-0.2366280491091423],[115,129,78,-0.22885815239676227],[115,129,79,-0.2182171492789253],[115,130,64,-0.09632456232810373],[115,130,65,-0.09094105732033368],[115,130,66,-0.08019077963994177],[115,130,67,-0.09763914846306627],[115,130,68,-0.11984929535283793],[115,130,69,-0.09821588005533223],[115,130,70,-0.09197860155483518],[115,130,71,-0.1347892280619004],[115,130,72,-0.12081200138673116],[115,130,73,-0.07193464753523551],[115,130,74,-0.06798589835287744],[115,130,75,-0.11862444598026904],[115,130,76,-0.2026912444314165],[115,130,77,-0.23654509268134022],[115,130,78,-0.22932839232757446],[115,130,79,-0.21906974303289092],[115,131,64,-0.09755684975683605],[115,131,65,-0.09219329971522496],[115,131,66,-0.08106481598316682],[115,131,67,-0.09841658086481438],[115,131,68,-0.12041177867945863],[115,131,69,-0.09857744568376273],[115,131,70,-0.09257387071839088],[115,131,71,-0.1358156821459633],[115,131,72,-0.12155151904904293],[115,131,73,-0.07195774505798919],[115,131,74,-0.06774055775686603],[115,131,75,-0.11862422536875973],[115,131,76,-0.2026526642417878],[115,131,77,-0.23637853949707838],[115,131,78,-0.22972776343329163],[115,131,79,-0.21985730115228722],[115,132,64,-0.09876800797733776],[115,132,65,-0.09342732225919616],[115,132,66,-0.08191732626592627],[115,132,67,-0.0991659996232901],[115,132,68,-0.12094408828738254],[115,132,69,-0.09891667783954577],[115,132,70,-0.09315198896937468],[115,132,71,-0.13681529576788753],[115,132,72,-0.1222691130018165],[115,132,73,-0.0719710864797736],[115,132,74,-0.06747727340863847],[115,132,75,-0.11858098933144862],[115,132,76,-0.2025351140842764],[115,132,77,-0.23612797669761468],[115,132,78,-0.23005531238940943],[115,132,79,-0.22057839231896995],[115,133,64,-0.09995662335788878],[115,133,65,-0.09464180280778783],[115,133,66,-0.0827472418962284],[115,133,67,-0.09988634609336687],[115,133,68,-0.12144543611068997],[115,133,69,-0.09923309169153458],[115,133,70,-0.09371233459817038],[115,133,71,-0.13778690729079873],[115,133,72,-0.12296383282559378],[115,133,73,-0.0719743249432762],[115,133,74,-0.06719575614376694],[115,133,75,-0.11849414786654544],[115,133,76,-0.20233805630186205],[115,133,77,-0.23579312086119916],[115,133,78,-0.23031018655931104],[115,133,79,-0.22123167324738108],[115,134,64,-0.10112129735757223],[115,134,65,-0.09583542768778372],[115,134,66,-0.08355351611131119],[115,134,67,-0.10057659493249012],[115,134,68,-0.12191506986638553],[115,134,69,-0.09952622944564075],[115,134,70,-0.09425430213891388],[115,134,71,-0.13872937613794903],[115,134,72,-0.12363474074481628],[115,134,73,-0.07196711667274171],[115,134,74,-0.06689574478878196],[115,134,75,-0.11836317852142712],[115,134,76,-0.20206107947923307],[115,134,77,-0.23537381839667115],[115,134,78,-0.23049163558964225],[115,134,79,-0.22181589148977618],[115,135,64,-0.10226064955592837],[115,135,65,-0.09700689454004356],[115,135,66,-0.08433512623436734],[115,135,67,-0.10123575627935515],[115,135,68,-0.12235227442135525],[115,135,69,-0.09979566093728771],[115,135,70,-0.09477730322395188],[115,135,71,-0.13964158496161527],[115,135,72,-0.12428091356881611],[115,135,73,-0.07194912180314968],[115,135,74,-0.06657700689021255],[115,135,75,-0.11818762776937124],[115,135,76,-0.20170389940100192],[115,135,77,-0.23487004563617778],[115,135,78,-0.23059901279434697],[115,135,79,-0.22232988806757994],[115,136,64,-0.10337332067624941],[115,136,65,-0.09815491517047056],[115,136,66,-0.08509107590013529],[115,136,67,-0.10186287787525888],[115,136,68,-0.12275637309826322],[115,136,69,-0.10004098417826199],[115,136,70,-0.09528076742013511],[115,136,71,-0.14052244179619278],[115,136,72,-0.12490144463934247],[115,136,73,-0.07192000523144233],[115,136,74,-0.06623933939289404],[115,136,75,-0.11796711223404673],[115,136,76,-0.20126635970749926],[115,136,77,-0.2342819086261053],[115,136,78,-0.23063177632289691],[115,136,79,-0.22277259992040954],[115,137,64,-0.10445797559385113],[115,137,65,-0.09927821840115754],[115,137,66,-0.08582039724280867],[115,137,67,-0.10245704712169529],[115,137,68,-0.12312672891664139],[115,137,69,-0.10026182585674812],[115,137,70,-0.09576414304521796],[115,137,71,-0.14137088218962574],[115,137,72,-0.12549544577887203],[115,137,73,-0.07187943748661298],[115,137,74,-0.06588256926422391],[115,137,75,-0.1177013197566176],[115,137,76,-0.20074843224495315],[115,137,77,-0.2336096426163423],[115,137,78,-0.23058949010893606],[115,137,79,-0.2231430621648486],[115,138,64,-0.10551330632058865],[115,138,65,-0.10037555291362792],[115,138,66,-0.0865221530397562],[115,138,67,-0.10301739306789949],[115,138,68,-0.1234627457655981],[115,138,69,-0.10045784178947358],[115,138,70,-0.09622689796267275],[115,138,71,-0.14218587130730495],[115,138,72,-0.12606204923385533],[115,138,73,-0.07182709561534029],[115,138,74,-0.0655065540612167],[115,138,75,-0.11739001030084571],[115,138,76,-0.2001502171079378],[115,138,77,-0.23285361124906362],[115,138,78,-0.23047182459628515],[115,138,79,-0.22344041015565094],[115,139,64,-0.10653803495685873],[115,139,65,-0.10144569007600474],[115,139,66,-0.08719543880461232],[115,139,67,-0.1035430883222128],[115,139,68,-0.12376386950474727],[115,139,69,-0.1006287173250233],[115,139,70,-0.09666852035326694],[115,139,71,-0.14296640600257118],[115,139,72,-0.12660040960697147],[115,139,73,-0.07176266407973647],[115,139,74,-0.06511118243738429],[115,139,75,-0.11703301669210955],[115,139,76,-0.19947194237302418],[115,139,77,-0.23201430544924048],[115,139,78,-0.2302785572399483],[115,139,79,-0.22366388134263449],[115,140,64,-0.10753091660239102],[115,140,65,-0.10248742674594859],[115,140,66,-0.08783938482345102],[115,140,67,-0.10403335088137543],[115,140,68,-0.12402958899019119],[115,140,69,-0.10077416769755813],[115,140,70,-0.09708851946183511],[115,140,71,-0.14371151684803823],[115,140,72,-0.12710970577245695],[115,140,73,-0.07168583566371693],[115,140,74,-0.06469637458668746],[115,140,75,-0.11663024518682234],[115,140,76,-0.19871396352363468],[115,140,77,-0.23109234202010298],[115,140,78,-0.23000957278047893],[115,140,79,-0.2238128169171558],[115,141,64,-0.10849074221714175],[115,141,65,-0.10349958804114921],[115,141,66,-0.08845315812784371],[115,141,67,-0.10448744587204359],[115,141,68,-0.12425943702258106],[115,141,69,-0.10089393833030733],[115,141,70,-0.09748642631771444],[115,141,71,-0.14442027012198716],[115,141,72,-0.12758914276853264],[115,141,73,-0.0715963123844107],[115,141,74,-0.06426208262201302],[115,141,75,-0.11618167586931884],[115,141,76,-0.19787676256718867],[115,141,77,-0.23008846194781513],[115,141,78,-0.22966486329080946],[115,141,79,-0.2238866632427134],[115,142,64,-0.1094163414237174],[115,142,65,-0.10448103006921354],[115,142,66,-0.08903596439878518],[115,142,67,-0.1049046871990885],[115,142,68,-0.1244529912145057],[115,142,69,-0.10098780508834784],[115,142,70,-0.09786179442737825],[115,142,71,-0.1450917697441763],[115,142,72,-0.1280379536609683],[115,142,73,-0.07149380640497371],[115,142,74,-0.06380829088583594],[115,142,75,-0.11568736287383576],[115,142,76,-0.19696094684664825],[115,142,77,-0.22900352842055843],[115,142,78,-0.22924452799531944],[115,142,79,-0.2238849730648574],[115,143,64,-0.1103065852428566],[115,143,65,-0.10543064260883128],[115,143,66,-0.08958704979563496],[115,143,67,-0.10528443909548788],[115,143,68,-0.12460987477468648],[115,143,69,-0.10105557448033739],[115,143,70,-0.09821420043786303],[115,143,71,-0.14572515915551026],[115,143,72,-0.12845540137185193],[115,143,73,-0.07137804094513192],[115,143,74,-0.06333501619097728],[115,143,75,-0.11514743442982858],[115,143,76,-0.19596724754964281],[115,143,77,-0.2278385245682091],[115,143,78,-0.2287487728616638],[115,143,79,-0.22380740649627764],[115,144,64,-0.11116038875364315],[115,144,65,-0.10634735173417574],[115,144,66,-0.09010570270441214],[115,144,67,-0.1056261175688961],[115,144,68,-0.12472975720668607],[115,144,69,-0.101097083809003],[115,144,70,-0.09854324476964246],[115,144,71,-0.14631962313612612],[115,144,72,-0.12884078046767372],[115,144,73,-0.0712487511857436],[115,144,74,-0.06284230798959042],[115,144,75,-0.11456209272945593],[115,144,76,-0.19489651791937962],[115,144,77,-0.22659455092972006],[115,144,78,-0.22817790996657958],[115,144,79,-0.2236537317736294],[115,145,64,-0.11197671367033786],[115,145,65,-0.10723012237465579],[115,145,66,-0.0905912554000339],[115,145,67,-0.10592919174029876],[115,145,68,-0.12481235492009343],[115,145,69,-0.10111220127033267],[115,145,70,-0.09884855221767601],[115,145,71,-0.14687438955661308],[115,145,72,-0.12919341890092956],[115,145,73,-0.07110568516367428],[115,145,74,-0.06233024846876411],[115,145,75,-0.11393161361666553],[115,145,76,-0.193749731172542],[115,145,77,-0.22527282265618834],[115,145,78,-0.22753235663757604],[115,145,79,-0.22342382578334113],[115,146,64,-0.11275457082785295],[115,146,65,-0.1080779608022022],[115,146,66,-0.09104308561726931],[115,146,67,-0.10619318507042973],[115,146,68,-0.12485743175237171],[115,146,69,-0.10110082600154989],[115,146,70,-0.09912977251940802],[115,146,71,-0.14738873105720138],[115,146,72,-0.12951267969950803],[115,146,73,-0.07094860465326226],[115,146,74,-0.06179895257137613],[115,146,75,-0.11325634609792454],[115,146,76,-0.19252797813038866],[115,146,77,-0.2238746664584901],[115,146,78,-0.22681263437311103],[115,146,79,-0.2231176743543566],[115,147,64,-0.11349302256823],[115,147,65,-0.10888991703854443],[115,147,66,-0.0914606180255039],[115,147,67,-0.10641767647000822],[115,147,68,-0.12486479939982661],[115,147,69,-0.10106288807808296],[115,147,70,-0.09938658088857368],[115,147,71,-0.14786196664997675],[115,147,72,-0.1297979625982838],[115,147,73,-0.07077728603068754],[115,147,74,-0.06124856794108838],[115,147,75,-0.11253671167524044],[115,147,76,-0.1912324645702061],[115,147,77,-0.22240151730914068],[115,147,78,-0.22601936754452834],[115,147,79,-0.22273537231649201],[115,148,64,-0.11419118502067767],[115,148,65,-0.1096650871750657],[115,148,66,-0.09184332560264284],[115,148,67,-0.10660230129016211],[115,148,68,-0.12483431775640087],[115,148,69,-0.10099834845987553],[115,148,70,-0.09961867851372914],[115,148,71,-0.1482934632393331],[115,148,72,-0.1300487056074525],[115,148,73,-0.07059152111759143],[115,148,74,-0.06067927479064437],[115,148,75,-0.11177320350272434],[115,148,76,-0.18986450830521434],[115,148,77,-0.2208549149088522],[115,148,78,-0.22515328188367834],[115,148,79,-0.22227712332377836],[115,149,64,-0.11484823026804841],[115,149,65,-0.11040261559808301],[115,149,66,-0.09219073090378535],[115,149,67,-0.10674675218977098],[115,149,68,-0.1247658951592517],[115,149,69,-0.10090719888750263],[115,149,70,-0.09982579302048701],[115,149,71,-0.14868263705609797],[115,149,72,-0.13026438651230765],[115,149,73,-0.07039111800033454],[115,149,74,-0.06009128569288764],[115,149,75,-0.11096638536854894],[115,149,76,-0.18842553600192122],[115,149,77,-0.21923649992898772],[115,149,78,-0.2242152027608061],[115,149,79,-0.22174323944290303],[115,150,64,-0.11546338839298628],[115,150,65,-0.11110169711268783],[115,150,66,-0.09250240722064013],[115,150,67,-0.10685077987685018],[115,150,68,-0.12465948854034563],[115,150,69,-0.10078946172868347],[115,150,70,-0.10000767889651811],[115,150,71,-0.14902895500100066],[115,150,72,-0.13044452429935943],[115,150,73,-0.07017590182136692],[115,150,74,-0.05948484529419331],[115,150,75,-0.1101168905047373],[115,150,76,-0.18691707974477045],[115,150,77,-0.21754801004178104],[115,150,78,-0.22320605325787998],[115,150,79,-0.22113414050755295],[115,151,64,-0.11603594939728727],[115,151,65,-0.11176157895852648],[115,151,66,-0.09277797962794154],[115,151,67,-0.10691419372145124],[115,151,68,-0.12451510348355102],[115,151,69,-0.10064518977589328],[115,151,70,-0.10016411787843883],[115,151,71,-0.14933193589337268],[115,151,72,-0.13058868050387346],[115,151,73,-0.06994571553924682],[115,151,74,-0.05886022995027577],[115,151,75,-0.10922542022781694],[115,151,76,-0.18534077335877044],[115,151,77,-0.21579127575086807],[115,151,78,-0.22212685204317598],[115,151,79,-0.22045035324020995],[115,152,64,-0.11656526498843765],[115,152,65,-0.11238156271126293],[115,152,66,-0.09301712591350589],[115,152,67,-0.10693686223797191],[115,152,68,-0.12433279418698319],[115,152,69,-0.10047446599588862],[115,152,70,-0.10029491929978113],[115,152,71,-0.1495911516212441],[115,152,72,-0.13069646047414865],[115,152,73,-0.06970042065395854],[115,152,74,-0.05821774728460448],[115,152,75,-0.10829274241392785],[115,152,76,-0.18369834850154734],[115,152,77,-0.2139682160352227],[115,152,78,-0.22097871105346542],[115,152,79,-0.21969251014361865],[115,153,64,-0.11705075022767789],[115,153,65,-0.11296100606378763],[115,153,66,-0.09321957738890757],[115,153,67,-0.1069187134351597],[115,153,68,-0.12411266333062082],[115,153,69,-0.10027740323207025],[115,153,70,-0.10039992039931499],[115,153,71,-0.14980622818926656],[115,153,72,-0.13076751454809363],[115,153,73,-0.06943989789428705],[115,153,74,-0.05755773566993893],[115,153,75,-0.10731968981254933],[115,153,76,-0.1819916305370158],[115,153,77,-0.2120808338201616],[115,153,78,-0.21976283299074503],[115,153,79,-0.21886134816488334],[115,154,64,-0.11749188503436364],[115,154,65,-0.11349932448159547],[115,154,66,-0.09338511957811822],[115,154,67,-0.10685973503249221],[115,154,68,-0.12385486184946404],[115,154,69,-0.10005414386069758],[115,154,70,-0.10047898658905316],[115,154,71,-0.1499768466611603],[115,154,72,-0.13080153913790235],[115,154,73,-0.06916404786412535],[115,154,74,-0.056880563633753746],[115,154,75,-0.10630715820354283],[115,154,76,-0.18022253420353956],[115,154,77,-0.21013121128954457],[115,154,78,-0.21848050864095145],[115,154,79,-0.2179577071358185],[115,155,64,-0.11788821554187975],[115,155,65,-0.11399599272718618],[115,155,66,-0.0935135927818628],[115,155,67,-0.10675997454205806],[115,155,68,-0.1235595886127875],[115,155,69,-0.09980485940207721],[115,155,70,-0.10053201168136268],[115,155,71,-0.1501027439937098],[115,155,72,-0.13079827771894026],[115,155,73,-0.06887279164475302],[115,155,74,-0.056186629188607264],[115,155,75,-0.10525610440273768],[115,155,76,-0.17839305909007744],[115,155,77,-0.2081215050537187],[115,155,78,-0.21713311402260196],[115,155,79,-0.21698252799386297],[115,156,64,-0.11823935530078632],[115,156,65,-0.11445054624870173],[115,156,66,-0.09360489251580079],[115,156,67,-0.10661953921545056],[115,156,68,-0.12322709001027864],[115,156,69,-0.09952975008792551],[115,156,70,-0.10055891807465671],[115,156,71,-0.15018371375960407],[115,156,72,-0.13075752171920751],[115,156,73,-0.06856607135025336],[115,156,74,-0.05547635908876266],[115,156,75,-0.10416754412179931],[115,156,76,-0.17650528493441667],[115,156,77,-0.2060539411881449],[115,156,78,-0.2157221073737899],[115,156,79,-0.2159368507885427],[115,157,64,-0.11854498632541176],[115,157,65,-0.11486258242849655],[115,157,66,-0.09365896982107377],[115,157,67,-0.10643859585563334],[115,157,68,-0.12285765944612374],[115,157,69,-0.09922904438619441],[115,157,70,-0.10055965689723347],[115,157,71,-0.1502196067567633],[115,157,72,-0.13067911130608573],[115,157,73,-0.06824385063342214],[115,157,74,-0.05475020801463404],[115,157,75,-0.10304254968859143],[115,157,76,-0.17456136675808626],[115,157,77,-0.20393081015792341],[115,157,78,-0.21424902598637477],[115,157,79,-0.21482181247909413],[115,158,64,-0.11880485998058885],[115,158,65,-0.11523176168776444],[115,158,66,-0.09367583144615341],[115,158,67,-0.1062173704941523],[115,158,68,-0.12245163674235544],[115,158,69,-0.09890299848472774],[115,158,70,-0.1005342081088966],[115,158,71,-0.15021033150210975],[115,158,72,-0.1305629360673826],[115,158,73,-0.06790611513969509],[115,158,74,-0.054008657686895244],[115,158,75,-0.1018822476347239],[115,158,76,-0.1725635298530445],[115,158,77,-0.20175446164371097],[115,158,78,-0.21271548289663364],[115,158,79,-0.21363864452951337],[115,159,64,-0.1190187977057535],[115,159,65,-0.11555780844381522],[115,159,66,-0.09365553989933463],[115,159,67,-0.10595614793448725],[115,159,68,-0.12200940745301572],[115,159,69,-0.0985518957351848],[115,159,70,-0.10048258056006384],[115,159,71,-0.15015585460807077],[115,159,72,-0.1304089355840212],[115,159,73,-0.06755287290680617],[115,159,74,-0.053252215912330494],[115,159,75,-0.10068781615740893],[115,159,76,-0.17051406463563443],[115,159,77,-0.19952729928471277],[115,159,78,-0.21112316344202017],[115,159,79,-0.2123886703079012],[115,160,64,-0.11918669157417892],[115,160,65,-0.11584051191710124],[115,160,66,-0.09359821337165102],[115,160,67,-0.1056552711627717],[115,160,68,-0.12153140209093789],[115,160,69,-0.09817604605872901],[115,160,70,-0.10040481200815031],[115,160,71,-0.1500562010404546],[115,160,72,-0.1302170998920795],[115,160,73,-0.06718415470809648],[115,160,74,-0.052481415563750605],[115,160,75,-0.09946048246314511],[115,160,76,-0.168415321383629],[115,160,77,-0.1972517753545239],[115,160,78,-0.20947382169397333],[115,160,79,-0.211073302297532],[115,161,64,-0.11930850468564191],[115,161,65,-0.11607972678556443],[115,161,66,-0.09350402553039511],[115,161,67,-0.10531514062751998],[115,161,68,-0.1210180952691906],[115,161,69,-0.09777578531505353],[115,161,70,-0.10030096909109075],[115,161,71,-0.14991145425668292],[115,161,72,-0.12998746983223158],[115,161,73,-0.06680001433760074],[115,161,74,-0.05169681349654509],[115,161,75,-0.09820152000116676],[115,161,76,-0.1662697048725295],[115,161,77,-0.19493038538573867],[115,161,78,-0.20776927677709367],[115,161,79,-0.20969403912769707],[115,162,64,-0.11938427139140258],[115,162,65,-0.11627537368442027],[115,162,66,-0.09337320518386628],[115,162,67,-0.10493621339042901],[115,162,68,-0.1204700047594559],[115,162,69,-0.097351474636357],[115,162,70,-0.10017114725794235],[115,162,71,-0.14972175622372538],[115,162,72,-0.1297201372850233],[115,162,73,-0.06640052883526362],[115,162,74,-0.050898989404658444],[115,162,75,-0.09691224559491822],[115,162,76,-0.16407966892746234],[115,162,77,-0.1925656627591899],[115,162,78,-0.20601140908521243],[115,162,79,-0.2082524624328528],[115,163,64,-0.11941409735091459],[115,163,65,-0.11642743954998644],[115,163,66,-0.09320603581837264],[115,163,67,-0.10451900215071569],[115,163,68,-0.1198876904698268],[115,163,69,-0.0969034997279299],[115,163,70,-0.10001547065657672],[115,163,71,-0.14948730731542198],[115,163,72,-0.1294152452907674],[115,163,73,-0.06598579865085061],[115,163,74,-0.050088544618991836],[115,163,75,-0.09559401648014601],[115,163,76,-0.16184771090720246],[115,163,77,-0.1901601732736625],[115,163,78,-0.20420215640513692],[115,163,79,-0.20675023354913596],[115,164,64,-0.11939815942027002],[115,164,65,-0.11653597780670902],[115,164,66,-0.09300285500894552],[115,164,67,-0.10406407414587124],[115,164,68,-0.11927175334474249],[115,164,69,-0.0964322701370669],[115,164,70,-0.09983409197856172],[115,164,71,-0.1492083660892595],[115,164,72,-0.12907298805324322],[115,164,73,-0.065555947745371],[115,164,74,-0.04926610085145796],[115,164,75,-0.09424822725851062],[115,164,76,-0.1595763661369808],[115,164,77,-0.18771650971183806],[115,164,78,-0.20234350995906944],[115,164,79,-0.20518909005780842],[115,165,64,-0.11933670537297084],[115,165,65,-0.11660110839709557],[115,165,66,-0.09276405370565487],[115,165,67,-0.10357204993210964],[115,165,68,-0.11862283418997838],[115,165,69,-0.09593821849204862],[115,165,70,-0.09962719226141079],[115,165,71,-0.14888524894302668],[115,165,72,-0.12869361082677336],[115,165,73,-0.06511112362906511],[115,165,74,-0.04843229888809611],[115,165,75,-0.09287630677585579],[115,165,76,-0.1572682023067354],[115,165,77,-0.1852372864180272],[115,165,78,-0.20043751037682772],[115,165,79,-0.20357084218560487],[115,166,64,-0.11923005345414396],[115,166,65,-0.11662301765475051],[115,166,66,-0.09249007539778618],[115,166,67,-0.1030436020481466],[115,166,68,-0.11794161242579067],[115,166,69,-0.09542179971295897],[115,166,70,-0.09939498064843312],[115,166,71,-0.14851832965211054],[115,166,72,-0.12827740968660448],[115,166,73,-0.06465149733523319],[115,166,74,-0.047587797234834896],[115,166,75,-0.09147971493450549],[115,166,76,-0.15492581385147877],[115,166,77,-0.18272513390305734],[115,166,78,-0.19848624360913725],[115,166,79,-0.20189736907239952],[115,167,64,-0.11907859176995976],[115,167,65,-0.11660195802132539],[115,167,66,-0.09218141515860452],[115,167,67,-0.10247945356636398],[115,167,68,-0.11722880477153703],[115,167,69,-0.09488349019615583],[115,167,70,-0.09913769410653751],[115,167,71,-0.14810803878860235],[115,167,72,-0.12782473118296458],[115,167,73,-0.06417726332947143],[115,167,74,-0.0467332707196848],[115,167,75,-0.09005993944916534],[115,167,76,-0.1525518163303679],[115,167,77,-0.18018269349140545],[115,167,78,-0.19649183679335955],[115,167,79,-0.20017061491699423],[115,168,64,-0.11888277751452546],[115,168,65,-0.11653824760867888],[115,168,66,-0.09183861857377984],[115,168,67,-0.10188037653573384],[115,168,68,-0.11648516386523512],[115,168,69,-0.09432378697420166],[115,168,70,-0.09885559710238188],[115,168,71,-0.14765486302369532],[115,168,72,-0.1273359718795085],[115,168,73,-0.06368863935409351],[115,168,74,-0.045869409055271454],[115,168,75,-0.08861849255613294],[115,168,76,-0.15014884082090574],[115,168,77,-0.17761261202532552],[115,168,78,-0.19445645408304615],[115,168,79,-0.19839258501215157],[115,169,64,-0.11864313603712387],[115,169,65,-0.1164322696081157],[115,169,66,-0.09146228055696462],[115,169,67,-0.10124719032125182],[115,169,68,-0.11571147682171685],[115,169,69,-0.09374320685310561],[115,169,70,-0.09854898123736726],[115,169,71,-0.1471593443152436],[115,169,72,-0.1268115777772862],[115,169,73,-0.06318586620779566],[115,169,74,-0.04499691536578851],[115,169,75,-0.08715690768567477],[115,169,76,-0.14771952834454102],[115,169,77,-0.175017536640378],[115,169,78,-0.19238229245276736],[115,169,79,-0.19656534168035675],[115,170,64,-0.11836025975321647],[115,170,65,-0.11628447154910711],[115,170,66,-0.09105304405638691],[115,170,67,-0.10058075984494329],[115,170,68,-0.1149085637331652],[115,170,69,-0.09314228552870729],[115,170,70,-0.0982181648420333],[115,170,71,-0.14662207898268242],[115,170,72,-0.12625204362573486],[115,170,73,-0.06266920746085788],[115,170,74,-0.04411650468254949],[115,170,75,-0.08567673610746623],[115,170,76,-0.1452665243396104],[115,170,77,-0.17240010962628438],[115,170,78,-0.19027157748957504],[115,170,79,-0.19469100012200105],[115,171,64,-0.11803480690318097],[115,171,65,-0.11609536441041994],[115,171,66,-0.09061159865669033],[115,171,67,-0.099881993733841],[115,171,68,-0.11407727611599247],[115,171,69,-0.09252157668407422],[115,171,70,-0.09786349253051459],[115,171,71,-0.1460437166718694],[115,171,72,-0.12565791212259644],[115,171,73,-0.062138949106447086],[115,171,74,-0.043228902412466755],[115,171,75,-0.08417954355909614],[115,171,76,-0.142792473197335],[115,171,77,-0.16976296338663818],[115,171,78,-0.18812655918249002],[115,171,79,-0.1927717241880003],[115,172,64,-0.11766750016329806],[115,172,65,-0.11586552158712408],[115,172,66,-0.09013867908061199],[115,172,67,-0.09915184238061794],[115,172,68,-0.11321849530812943],[115,172,69,-0.0918816510697592],[115,172,70,-0.09748533471578046],[115,172,71,-0.14542495921274046],[115,172,72,-0.12502977300503076],[115,172,73,-0.061595399148828577],[115,172,74,-0.04233484278385535],[115,172,75,-0.08266690686759703],[115,172,76,-0.14030001287613766],[115,172,77,-0.16710871551041423],[115,172,78,-0.18594950772123575],[115,172,79,-0.1908097220889924],[115,173,64,-0.11725912511400959],[115,173,65,-0.11559557771743721],[115,173,66,-0.08963506359541107],[115,173,67,-0.09839129592283469],[115,173,68,-0.11233313082091312],[115,173,69,-0.09122309556876096],[115,173,70,-0.0970840870864569],[115,173,71,-0.14476655937299224],[115,173,72,-0.1243682620345541],[115,173,73,-0.061038887129530754],[115,173,74,-0.041435067274038874],[115,173,75,-0.08114041057395242],[115,173,76,-0.13779176960915046],[115,173,77,-0.16443996396769153],[115,173,78,-0.18374270931534692],[115,173,79,-0.18880724205344607],[115,174,64,-0.11681052857100138],[115,174,65,-0.11528622737389302],[115,174,66,-0.08910157232930713],[115,174,67,-0.09760138214704031],[115,174,68,-0.11142211864988649],[115,174,69,-0.0905465122480451],[115,174,70,-0.09666017004612605],[115,174,71,-0.1440693195113413],[115,174,72,-0.12367405987881723],[115,174,73,-0.06046976359277939],[115,174,74,-0.04053032302332874],[115,174,75,-0.07960164357049462],[115,174,76,-0.13527035271933036],[115,174,77,-0.16175928244142626],[115,174,78,-0.18150846204464222],[115,174,79,-0.18676656794716084],[115,175,64,-0.11632261678515894],[115,175,65,-0.11493822362381362],[115,175,66,-0.08853906550349068],[115,175,67,-0.09678316432419762],[115,175,68,-0.11048641954890291],[115,175,69,-0.089852517398455],[115,175,70,-0.0962140281160715],[115,175,71,-0.14333409013422183],[115,175,72,-0.12294789089358302],[115,175,73,-0.05988839949174565],[115,175,74,-0.039621361239966596],[115,175,75,-0.07805219576097268],[115,175,76,-0.13273834955602834],[115,175,77,-0.15906921580643854],[115,175,78,-0.17924907175182025],[115,175,79,-0.18469001486667821],[115,176,64,-0.1157963535178743],[115,176,65,-0.11455237646449239],[115,176,66,-0.08794844158552075],[115,176,67,-0.0959377389830955],[115,176,68,-0.10952701727199177],[115,176,69,-0.08914174056481233],[115,176,70,-0.09574612930248831],[115,176,71,-0.142561768360043],[115,176,72,-0.12219052180857085],[115,176,73,-0.059295185537360455],[115,176,74,-0.038708935600648295],[115,176,75,-0.07649365475294666],[115,176,76,-0.13019832056631161],[115,176,77,-0.15637227576613152],[115,176,78,-0.1769668479877316],[115,176,79,-0.18257992471918535],[115,177,64,-0.11523275799871355],[115,177,65,-0.1141295511390335],[115,177,66,-0.08733063537025883],[115,177,67,-0.09506623362866497],[115,177,68,-0.1085449167875546],[115,177,69,-0.08841482356803045],[115,177,70,-0.0952569644293121],[115,177,71,-0.14175329629548508],[115,177,72,-0.12140276032123147],[115,177,73,-0.058690531491733866],[115,177,74,-0.037793800651294826],[115,177,75,-0.0749276025920196],[115,177,76,-0.12765279451372513],[115,177,77,-0.15367093665677206],[115,177,78,-0.17466410001965016],[115,177,79,-0.18043866180152673],[115,178,64,-0.1146329027728137],[115,178,65,-0.1136706663391618],[115,178,66,-0.08668661599468291],[115,178,67,-0.09416980441223885],[115,178,68,-0.10754114246946847],[115,178,69,-0.08767241952100281],[115,178,70,-0.09474704643784593],[115,178,71,-0.1409096593285187],[115,178,72,-0.12058545360276475],[115,178,73,-0.058074865408384815],[115,178,74,-0.03687671021269671],[115,178,75,-0.0733556125471883],[115,178,76,-0.12510426385651505],[115,178,77,-0.15096763142842914],[115,178,78,-0.1723431329125473],[115,178,79,-0.17826860839084938],[115,179,64,-0.11399791144581645],[115,179,65,-0.11317669230175686],[115,179,66,-0.08601738489316002],[115,179,67,-0.09324963376095483],[115,179,68,-0.10651673626972545],[115,179,69,-0.0869151918400074],[115,179,70,-0.09421690965445406],[115,179,71,-0.14003188434311822],[115,179,72,-0.11973948672101695],[115,179,73,-0.05744863282170698],[115,179,74,-0.03595841579563818],[115,179,75,-0.07177924595635837],[115,179,76,-0.12255518029662134],[115,179,77,-0.14826474781090374],[115,179,78,-0.1700062436930909],[115,179,79,-0.17607216035938392],[115,180,64,-0.113328956334545],[115,180,65,-0.11264864880629637],[115,180,66,-0.08532397370000187],[115,180,67,-0.09230692797365946],[115,180,68,-0.10547275587728316],[115,180,69,-0.08614381325336899],[115,180,70,-0.09366710902769519],[115,180,71,-0.1391210378609005],[115,180,72,-0.11886578098520154],[115,180,73,-0.05681229588833255],[115,180,74,-0.03503966503010045],[115,180,75,-0.07020004914082711],[115,180,76,-0.12000795051004726],[115,180,77,-0.14556462467224413],[115,180,78,-0.16765571760574613],[115,180,79,-0.17385172282572314],[115,181,64,-0.11262725603195542],[115,181,65,-0.11208760308071553],[115,181,66,-0.08460744210626389],[115,181,67,-0.09134291479073978],[115,181,68,-0.10441027286779246],[115,181,69,-0.08535896480906133],[115,181,70,-0.09309821933630623],[115,181,71,-0.13817822411511935],[115,181,72,-0.11796529221761609],[115,181,73,-0.05616633248320259],[115,181,74,-0.03412120011305645],[115,181,75,-0.06861955039722374],[115,181,76,-0.11746493206844454],[115,181,77,-0.14286954857665415],[115,181,78,-0.1652938244700201],[115,181,79,-0.17160970585484217],[115,182,64,-0.11189407289523282],[115,182,65,-0.11149466762356625],[115,182,66,-0.08386887567792506],[115,182,67,-0.09035884094538868],[115,182,68,-0.10333037084885752],[115,182,69,-0.08456133488289355],[115,182,70,-0.09251083436952796],[115,182,71,-0.13720458306266142],[115,182,72,-0.11703900895778674],[115,182,73,-0.05551123525334072],[115,182,74,-0.03320375627928869],[115,182,75,-0.0670392570750429],[115,182,76,-0.11492842956091913],[115,182,77,-0.14018175054775897],[115,182,78,-0.1629228151474555],[115,182,79,-0.16934852021886018],[115,183,64,-0.11113071046622763],[115,183,65,-0.11087099795069984],[115,183,66,-0.0831093836427461],[115,183,67,-0.08935596970389852],[115,183,68,-0.10223414360550752],[115,183,69,-0.08375161818892672],[115,183,70,-0.09190556608136385],[115,183,71,-0.13620128833991244],[115,183,72,-0.11608795060472892],[115,183,73,-0.05484751063252426],[115,183,74,-0.032288060299616984],[115,183,75,-0.06546065274761009],[115,183,76,-0.1124006909243143],[115,183,77,-0.13750340304245556],[115,183,78,-0.16054491812665622],[115,183,79,-0.16707057323040697],[115,184,64,-0.1103385108336603],[115,184,65,-0.11021779027495694],[115,184,66,-0.08233009665318033],[115,184,67,-0.0883355784025661],[115,184,68,-0.10112269325049157],[115,184,69,-0.08293051479368829],[115,184,70,-0.09128304372039697],[115,184,71,-0.13516954516849705],[115,184,72,-0.11511316550318308],[115,184,73,-0.05417567782015833],[115,184,74,-0.03137482901076917],[115,184,75,-0.0638851944838848],[115,184,76,-0.10988390398934234],[115,184,77,-0.13483661713971096],[115,184,78,-0.15816233623415116],[115,184,79,-0.1647782646601381],[115,185,64,-0.10951885194678816],[115,185,65,-0.10953627912765032],[115,185,66,-0.0815321645328196],[115,185,67,-0.08729895598881285],[115,185,68,-0.09999712838397488],[115,185,69,-0.08209872913572112],[115,185,70,-0.09064391293687021],[115,185,71,-0.13411058821707514],[115,185,72,-0.11411572897989042],[115,185,73,-0.05349626772781337],[115,185,74,-0.030464767881013925],[115,185,75,-0.06231431022810163],[115,185,76,-0.10738019324906801],[115,185,77,-0.13218343994784415],[115,185,78,-0.15577724347846617],[115,185,79,-0.16247398274965943],[115,186,64,-0.10867314489043522],[115,186,65,-0.10882773493085574],[115,186,66,-0.08071675401392782],[115,186,67,-0.08624740057411509],[115,186,68,-0.09885856226718331],[115,186,69,-0.08125696905198582],[115,186,70,-0.0899888348688156],[115,186,71,-0.13302567942551902],[115,186,72,-0.11309674133615145],[115,186,73,-0.05280982189702583],[115,186,74,-0.029558569615567583],[115,186,75,-0.06074939629386131],[115,186,76,-0.10489161685543863],[115,186,77,-0.12954585223306944],[115,186,78,-0.15339178203437343],[115,186,79,-0.16016010033085432],[115,187,64,-0.10780283113147004],[115,187,65,-0.10809346152975437],[115,187,66,-0.07988504647365059],[115,187,67,-0.08518221700628816],[115,187,68,-0.09770811101445333],[115,187,69,-0.0804059448125672],[115,187,70,-0.08931848520907015],[115,187,71,-0.13191610579791285],[115,187,72,-0.11205732580304759],[115,187,73,-0.052116891392058176],[115,187,74,-0.028656912805599795],[115,187,75,-0.05919181497878929],[115,187,76,-0.10242016384861316],[115,187,77,-0.1269257662712065],[115,187,78,-0.1510080593737736],[115,187,79,-0.1578389710622024],[115,188,64,-0.10690937974693977],[115,188,65,-0.10733479369442496],[115,188,66,-0.0790382356764874],[115,188,67,-0.08410471446857702],[115,188,68,-0.09654689180805082],[115,188,69,-0.07954636816507696],[115,188,70,-0.0886335532550544],[115,188,71,-0.13078317717088386],[115,188,72,-0.11099862646580552],[115,188,73,-0.05141803567138862],[115,188,74,-0.02776046062448946],[115,188,75,-0.05764289230540371],[115,188,76,-0.09996775162296237],[115,188,77,-0.12432502392365694],[115,188,78,-0.14862814554918702],[115,188,79,-0.1555129257923034],[115,189,64,-0.1059942846442225],[115,189,65,-0.10655309460067945],[115,189,66,-0.07817752553064174],[115,189,67,-0.08301620411296534],[115,189,68,-0.09537602114007894],[115,189,69,-0.07867895139014666],[115,189,70,-0.08793474094329864],[115,189,71,-0.12962822396391188],[115,189,72,-0.10992180616393514],[115,189,73,-0.05071382144182859],[115,189,74,-0.026869859574844078],[115,189,75,-0.05610391589339912],[115,189,76,-0.09753622363277326],[115,189,77,-0.1217453949380105],[115,189,78,-0.14625407063541368],[115,189,79,-0.1531842690604776],[115,190,64,-0.1050590617836337],[115,190,65,-0.10574975329965325],[115,190,66,-0.07730412786581735],[115,190,67,-0.08191799673496519],[115,190,68,-0.0941966130856465],[115,190,69,-0.07780440636930971],[115,190,70,-0.08722276187071529],[115,190,71,-0.1284525949182795],[115,190,72,-0.10882804437381516],[115,190,73,-0.05000482149919301],[115,190,74,-0.02598573828955892],[115,190,75,-0.054576132967989376],[115,190,76,-0.09512734733973216],[115,190,77,-0.11918857547278132],[115,190,78,-0.14388782233434996],[115,190,79,-0.15085527574381008],[115,191,64,-0.10410524641394298],[115,191,65,-0.10492618218591909],[115,191,66,-0.07641926023994652],[115,191,67,-0.08081140049700661],[115,191,68,-0.09300977761135766],[115,191,69,-0.07692344366652615],[115,191,70,-0.08649834030466279],[115,191,71,-0.12725765483135715],[115,191,72,-0.10771853508043921],[115,191,73,-0.04929161355947924],[115,191,74,-0.025108706389984272],[115,191,75,-0.05306074850845524],[115,191,76,-0.0927428124034077],[115,191,77,-0.11665618684504918],[115,191,78,-0.1415313437475],[115,191,79,-0.148528187859595],[115,192,64,-0.10313439033135421],[115,192,65,-0.10408381447404146],[115,192,66,-0.07552414378232691],[115,192,67,-0.07969771870743987],[115,192,68,-0.09181661892309202],[115,192,69,-0.07603677162458385],[115,192,70,-0.0857622101839351],[115,192,71,-0.12604478229298277],[115,192,72,-0.10659448464512364],[115,192,73,-0.048574779084600936],[115,192,74,-0.024239353404095786],[115,192,75,-0.05155892354054292],[115,192,76,-0.09038422911508916],[115,192,77,-0.11414977449903513],[115,192,78,-0.13918653132023048],[115,192,79,-0.14620521153167898],[115,193,64,-0.10214805917242818],[115,193,65,-0.10322410169345896],[115,193,66,-0.07462000108048022],[115,193,67,-0.07857824766193797],[115,193,68,-0.0906182338568775],[115,193,69,-0.07514509547753193],[115,193,70,-0.08501511411282824],[115,193,71,-0.12481536743066235],[115,193,72,-0.10545710967593652],[115,193,73,-0.0478549021066661],[115,193,74,-0.023378247747266632],[115,193,75,-0.05007177357577209],[115,193,76,-0.0880531270744321],[115,193,77,-0.11167080719289069],[115,193,78,-0.13685523296130112],[115,193,79,-0.14388851412869452],[115,194,64,-0.10114782975144751],[115,194,65,-0.10234851121164673],[115,194,66,-0.07370805411797972],[115,194,67,-0.07745427455392045],[115,194,68,-0.0894157103165066],[115,194,69,-0.07424911648022192],[115,194,70,-0.0842578023504344],[115,194,71,-0.1235708096702673],[115,194,72,-0.10430763490760367],[115,194,73,-0.04713256805484655],[115,194,74,-0.02252593576808179],[115,194,75,-0.04860036720023748],[115,194,76,-0.0857509541075597],[115,194,77,-0.10922067640029767],[115,194,78,-0.1345392463407172],[115,194,79,-0.1415802215816788],[115,195,64,-0.10013528745261936],[115,195,65,-0.10145852379546189],[115,195,66,-0.0727895222703124],[115,195,67,-0.0763270754603953],[115,195,68,-0.08821012576142227],[115,195,69,-0.07334953105603793],[115,195,70,-0.08349103179744188],[115,195,71,-0.1223125155189412],[115,195,72,-0.10314729109762588],[115,195,73,-0.04640836258880052],[115,195,74,-0.02168294086128156],[115,195,75,-0.047145724814846995],[115,195,76,-0.08347907542435755],[115,195,77,-0.10680069592276681],[115,195,78,-0.13224031736846295],[115,195,79,-0.1392824158880661],[115,196,64,-0.09911202182704044],[115,196,65,-0.10055562978219967],[115,196,66,-0.07186561986275822],[115,196,67,-0.07519791320831432],[115,196,68,-0.0870025458184398],[115,196,69,-0.07244703034979787],[115,196,70,-0.08271556537215673],[115,196,71,-0.12104189621943967],[115,196,72,-0.10197731279544751],[115,196,73,-0.04568287099723883],[115,196,74,-0.020849763314017205],[115,196,75,-0.04570881702005696],[115,196,76,-0.08123877171262439],[115,196,77,-0.10441210123746694],[115,196,78,-0.1299601384049731],[115,196,79,-0.13699713190675916],[115,197,64,-0.09807940467629267],[115,197,65,-0.09964115681543552],[115,197,66,-0.07093749421620425],[115,197,67,-0.07406801095895747],[115,197,68,-0.08579403143238998],[115,197,69,-0.07154234546770057],[115,197,70,-0.0819322172268189],[115,197,71,-0.11976034752247237],[115,197,72,-0.10079891900037348],[115,197,73,-0.04495674146130234],[115,197,74,-0.02002695643204135],[115,197,75,-0.04429050424285121],[115,197,76,-0.07903108852001424],[115,197,77,-0.10205599616962559],[115,197,78,-0.12770029396849447],[115,197,79,-0.13472624884751772],[115,198,64,-0.09703838739429649],[115,198,65,-0.0987161109989966],[115,198,66,-0.07000616475030792],[115,198,67,-0.07293852323775078],[115,198,68,-0.08458564681585487],[115,198,69,-0.07063629160020271],[115,198,70,-0.08114189548911398],[115,198,71,-0.11846923379785881],[115,198,72,-0.09961329749756449],[115,198,73,-0.04423073699939169],[115,198,74,-0.01921518771127239],[115,198,75,-0.042891484832154464],[115,198,76,-0.07685671596743726],[115,198,77,-0.0997333164415633],[115,198,78,-0.12546221176655653],[115,198,79,-0.1324713910948089],[115,199,64,-0.09598988549941571],[115,199,65,-0.09778147273396195],[115,199,66,-0.0690726228413754],[115,199,67,-0.0718105726997575],[115,199,68,-0.08337844451853176],[115,199,69,-0.06972968887369466],[115,199,70,-0.08034552124127532],[115,199,71,-0.11716992052631352],[115,199,72,-0.09842163546935895],[115,199,73,-0.043505615017349224],[115,199,74,-0.01841509430292219],[115,199,75,-0.041512402324763754],[115,199,76,-0.07471627076743072],[115,199,77,-0.09744493611726124],[115,199,78,-0.12324725609242015],[115,199,79,-0.1302341140054525],[115,200,64,-0.09493482614797742],[115,200,65,-0.0968382331472942],[115,200,66,-0.06813784388495246],[115,200,67,-0.07068525421208124],[115,200,68,-0.0821734621013308],[115,200,69,-0.06882335089176017],[115,200,70,-0.07954401682722165],[115,200,71,-0.11586377621523286],[115,200,72,-0.09722512134267933],[115,200,73,-0.04278211173281211],[115,200,74,-0.01762726527702722],[115,200,75,-0.040153858341684036],[115,200,76,-0.07261032994761484],[115,200,77,-0.09519167967228682],[115,200,78,-0.12105673926561615],[115,200,79,-0.12801592669073922],[115,201,64,-0.093874146120683],[115,201,65,-0.09588739229275557],[115,201,66,-0.06720278619910154],[115,201,67,-0.06956363386501707],[115,201,68,-0.0809717207028608],[115,201,69,-0.06791808350104858],[115,201,70,-0.07873830451503605],[115,201,71,-0.11455217007666797],[115,201,72,-0.09602494261560728],[115,201,73,-0.042060941649037065],[115,201,74,-0.0168522420037539],[115,201,75,-0.03881641194803387],[115,201,76,-0.07053942946885972],[115,201,77,-0.09297432123949742],[115,201,78,-0.11889192119879761],[115,201,79,-0.12581829094797134],[115,202,64,-0.09280878983412652],[115,202,65,-0.09492995737763224],[115,202,66,-0.0662683900001069],[115,202,67,-0.06844674808304177],[115,202,68,-0.079774223691298],[115,202,69,-0.06701468362018767],[115,202,70,-0.07792930520958632],[115,202,71,-0.11323646977267035],[115,202,72,-0.09482228374435756],[115,202,73,-0.041342797088514675],[115,202,74,-0.016090518636497905],[115,202,75,-0.03750057913768064],[115,202,76,-0.06850406300534558],[115,202,77,-0.09079358403023016],[115,202,78,-0.11675400912574417],[115,202,79,-0.1236426203492989],[115,203,64,-0.09173961132875169],[115,203,65,-0.09396684115342183],[115,203,66,-0.06533550600223186],[115,203,67,-0.06733552920535377],[115,203,68,-0.07858186830255698],[115,203,69,-0.06611386388446815],[115,203,70,-0.07711784950440007],[115,203,71,-0.11191791036603706],[115,203,72,-0.0936182150125447],[115,203,73,-0.04062829990018829],[115,203,74,-0.015342524407432606],[115,203,75,-0.03620678882634455],[115,203,76,-0.06650459994313394],[115,203,77,-0.0886500309506786],[115,203,78,-0.11464401519374474],[115,203,79,-0.12149012729239135],[115,204,64,-0.09066674774661534],[115,204,65,-0.09299820908385556],[115,204,66,-0.06440443836352033],[115,204,67,-0.06623032978917476],[115,204,68,-0.07739488113040333],[115,204,69,-0.06521576998882904],[115,204,70,-0.07630410435130891],[115,204,71,-0.11059675335673236],[115,204,72,-0.09241298171701726],[115,204,73,-0.039917692466127],[115,204,74,-0.014608512893223416],[115,204,75,-0.03493511033452235],[115,204,76,-0.06454077387234669],[115,204,77,-0.08654336947776665],[115,204,78,-0.11256183975176896],[115,204,79,-0.1193608405855242],[115,205,64,-0.08959005296339977],[115,205,65,-0.09202392612642923],[115,205,66,-0.06347526803999409],[115,205,67,-0.06513126514965285],[115,205,68,-0.07621321938855066],[115,205,69,-0.06432031920017761],[115,205,70,-0.075487965062096],[115,205,71,-0.10927286666222676],[115,205,72,-0.09120649805596233],[115,205,73,-0.03921106131129308],[115,205,74,-0.013888664173940024],[115,205,75,-0.033685478989376946],[115,205,76,-0.06261208735432189],[115,205,77,-0.0844729790227261],[115,205,78,-0.11050693705806175],[115,205,79,-0.11725431390560782],[115,206,64,-0.08850944298949258],[115,206,65,-0.09104391535646073],[115,206,66,-0.06254810731195744],[115,206,67,-0.06403848018022401],[115,206,68,-0.07503688558038386],[115,206,69,-0.06342746797771194],[115,206,70,-0.07466937030422457],[115,206,71,-0.10794618797592437],[115,206,72,-0.08999873978213524],[115,206,73,-0.0385085109391564],[115,206,74,-0.01318315427807707],[115,206,75,-0.032457857471170644],[115,206,76,-0.06071810847595838],[115,206,77,-0.08243830811685232],[115,206,78,-0.1084788311817221],[115,206,79,-0.11517017705489392],[115,207,64,-0.08742489482169627],[115,207,65,-0.09005815735527678],[115,207,66,-0.06162309892004556],[115,207,67,-0.06295214814467469],[115,207,68,-0.07386592601029515],[115,207,69,-0.06253721096000837],[115,207,70,-0.07384830173645233],[115,207,71,-0.10661672373282764],[115,207,72,-0.08878974299261516],[115,207,73,-0.037810163173509825],[115,207,74,-0.012492153954206213],[115,207,75,-0.031252232715758756],[115,207,76,-0.05885846557840861],[115,207,77,-0.08043886982311253],[115,207,78,-0.10647711314703402],[115,207,79,-0.1131081331760009],[115,208,64,-0.08633644342594783],[115,208,65,-0.0890666876391712],[115,208,66,-0.06070041384536612],[115,208,67,-0.06187246807583281],[115,208,68,-0.07270042765141253],[115,208,69,-0.0616495785440943],[115,208,70,-0.0730247819409459],[115,208,71,-0.10528454557228867],[115,208,72,-0.0875796008038987],[115,208,73,-0.03711615558096943],[115,208,74,-0.011815827155342278],[115,208,75,-0.030068612127195093],[115,208,76,-0.057032840713068786],[115,208,77,-0.07847423533476919],[115,208,78,-0.10450143552535074],[115,208,79,-0.11106795318309842],[115,209,64,-0.08524417872392051],[115,209,65,-0.08806959407413194],[115,209,66,-0.05978024911398253],[115,209,67,-0.060799662226893876],[115,209,68,-0.0715405150744618],[115,209,69,-0.06076463450655061],[115,209,70,-0.07219887235987683],[115,209,71,-0.10394978681021919],[115,209,72,-0.08636846004135308],[115,209,73,-0.036426639915723855],[115,209,74,-0.011154329609309536],[115,209,75,-0.02890701996905882],[115,209,76,-0.05524096342041237],[115,209,77,-0.07654402789940125],[115,209,78,-0.10255150725770137],[115,209,79,-0.10904947038630808],[115,210,64,-0.08414824258390909],[115,210,65,-0.08706701427728278],[115,210,66,-0.058862825628883016],[115,210,67,-0.05973397357898111],[115,210,68,-0.07038634743900118],[115,210,69,-0.05988247366695756],[115,210,70,-0.0713706712372244],[115,210,71,-0.10261263892214081],[115,210,72,-0.08515651794455452],[115,210,73,-0.03574178058953507],[115,210,74,-0.010507807478604492],[115,210,75,-0.02776749393346019],[115,210,76,-0.053482604822849646],[115,210,77,-0.0746479170586673],[115,210,78,-0.10062708870202808],[115,210,79,-0.10705257530536413],[115,211,64,-0.08304882581724007],[115,211,65,-0.08605913300670728],[115,211,66,-0.05794838603275857],[115,211,67,-0.05867566340860869],[115,211,68,-0.06923811554870897],[115,211,69,-0.05900321959443488],[115,211,70,-0.07054031156698749],[115,211,71,-0.10127334803929643],[115,211,72,-0.08394401889081039],[115,211,73,-0.03506175317000788],[115,211,74,-0.009876396112816295],[115,211,75,-0.026650081886958377],[115,211,76,-0.05175757202390558],[115,211,77,-0.07278561319513832],[115,211,78,-0.09872798689966783],[115,211,79,-0.1050772106693755],[115,212,64,-0.0819461651821708],[115,212,65,-0.08504617954195691],[115,212,66,-0.05703719260498925],[115,212,67,-0.05762500891867106],[115,212,68,-0.06809603897270355],[115,212,69,-0.05812702235833967],[115,212,70,-0.06970795904938375],[115,212,71,-0.09993221146075011],[115,212,72,-0.0827312511398068],[115,212,73,-0.03438674291008747],[115,212,74,-0.00926021889614934],[115,212,75,-0.025554838792698348],[115,212,76,-0.05006570280677717],[115,212,77,-0.07095686237819639],[115,212,78,-0.09685405105617546],[115,212,79,-0.10312336660011065],[115,213,64,-0.08084054039789401],[115,213,65,-0.0840284250581065],[115,213,66,-0.05612952519629657],[115,213,67,-0.05658230093652493],[115,213,68,-0.06696036323514655],[115,213,69,-0.05725405632447863],[115,213,70,-0.06887381005696805],[115,213,71,-0.09858957418504213],[115,213,72,-0.08151854360289609],[115,213,73,-0.03371694331167955],[115,213,74,-0.008659386192109682],[115,213,75,-0.02448182380813318],[115,213,76,-0.04840686062602882],[115,213,77,-0.06916144150161692],[115,213,78,-0.09500516823204178],[115,213,79,-0.10119107597676967],[115,214,64,-0.07973227117188122],[115,214,65,-0.08300617999677588],[115,214,66,-0.05522567920458677],[115,214,67,-0.055547841682684326],[115,214,68,-0.0658313570756275],[115,214,69,-0.05638451799847238],[115,214,70,-0.06803808961295195],[115,214,71,-0.0972458254655651],[115,214,72,-0.08030626264108566],[115,214,73,-0.033052554726261556],[115,214,74,-0.008073994386978827],[115,214,75,-0.02343109755772573],[115,214,76,-0.04678092988676893],[115,214,77,-0.06739915370597514],[115,214,78,-0.09318125923926703],[115,214,79,-0.09928040998068406],[115,215,64,-0.07862171424428341],[115,215,65,-0.0819797914379612],[115,215,66,-0.05432596359547287],[115,215,67,-0.05452194261348354],[115,215,68,-0.06470930978294023],[115,215,69,-0.05551862391806688],[115,215,70,-0.06720104938424268],[115,215,71,-0.0959013953942767],[115,215,72,-0.07909480889617848],[115,215,73,-0.03239378299521965],[115,215,74,-0.007504125033174289],[115,215,75,-0.022402719579892465],[115,215,76,-0.045187811505995636],[115,215,77,-0.06566982407932531],[115,215,78,-0.09138227473997654],[115,215,79,-0.09739147381867659],[115,216,64,-0.07750926045351461],[115,216,65,-0.08094964047688442],[115,216,66,-0.053430698970904134],[115,216,67,-0.053504922340901706],[115,216,68,-0.06359452860495313],[115,216,69,-0.054656608596328815],[115,216,70,-0.0663629656919307],[115,216,71,-0.09455675151874793],[115,216,72,-0.07788461415985021],[115,216,73,-0.031740838132524964],[115,216,74,-0.006949844093117172],[115,216,75,-0.021396745947322708],[115,216,76,-0.043627418751101675],[115,216,77,-0.06397329562988252],[115,216,78,-0.08960819154348758],[115,216,79,-0.0955244026240854],[115,217,64,-0.07639533182756766],[115,217,65,-0.07991613961046033],[115,217,66,-0.052540215689315196],[115,217,67,-0.05249710463259893],[115,217,68,-0.0624873362373623],[115,217,69,-0.053798722517813785],[115,217,70,-0.06552413754219578],[115,217,71,-0.09321239549792863],[115,217,72,-0.0766761382857782],[115,217,73,-0.031093933052286197],[115,217,74,-0.006411201283800648],[115,217,75,-0.020413227059655585],[115,217,76,-0.04209967335072934],[115,217,77,-0.06230942552463503],[115,217,78,-0.08785900909841783],[115,217,79,-0.09367935753467256],[115,218,64,-0.07528037870583476],[115,218,65,-0.07887973013818166],[115,218,66,-0.05165485204053902],[115,218,67,-0.051498816494943415],[115,218,68,-0.06138806839405507],[115,218,69,-0.052945230189801414],[115,218,70,-0.06468488468068019],[115,218,71,-0.09186885980219246],[115,218,72,-0.07546986615007792],[115,218,73,-0.03045328234350714],[115,218,74,-0.005888229521733211],[115,218,75,-0.019452205607215896],[115,218,76,-0.04060450187319955],[115,218,77,-0.06067808158786536],[115,218,78,-0.08613474617646219],[115,218,79,-0.0918565219467012],[115,219,64,-0.0741648768964706],[115,219,65,-0.07784087958247386],[115,219,66,-0.05077495247863926],[115,219,67,-0.050510386341609134],[115,219,68,-0.06029707146180622],[115,219,69,-0.0520964082507621],[115,219,70,-0.06384554567352979],[115,219,71,-0.09052670446345183],[115,219,72,-0.07426630466547945],[115,219,73,-0.029819101094258244],[115,219,74,-0.005380944467520204],[115,219,75,-0.0185137147042837],[115,219,76,-0.039141832367775437],[115,219,77,-0.05907913905362117],[115,219,78,-0.08443543774455],[115,219,79,-0.09005609794455764],[115,220,64,-0.07304932487446768],[115,220,65,-0.0768000791337008],[115,220,66,-0.04990086591562714],[115,220,67,-0.04953214225002681],[115,220,68,-0.059214700241895186],[115,220,69,-0.051252543638169876],[115,220,70,-0.06300647601833695],[115,220,71,-0.08918651388120298],[115,220,72,-0.0730659798547159],[115,220,73,-0.029191603767260165],[115,220,74,-0.004889344168864582],[115,220,75,-0.01759777619002759],[115,220,76,-0.037711591263888955],[115,220,77,-0.057512477566094386],[115,220,78,-0.08276113202204041],[115,220,79,-0.08827830290523964],[115,221,64,-0.07193424102573734],[115,221,65,-0.07575784112512521],[115,221,66,-0.04903294407888158],[115,221,67,-0.04856441030773276],[115,221,68,-0.058141315781154126],[115,221,69,-0.050413931817781324],[115,221,70,-0.062168046288293005],[115,221,71,-0.08784889369044999],[115,221,72,-0.07186943398863968],[115,221,73,-0.028571003128731422],[115,221,74,-0.004413408800395749],[115,221,75,-0.016704399094969232],[115,221,76,-0.03631370052338218],[115,221,77,-0.055977978421845785],[115,221,78,-0.08111188771963425],[115,221,79,-0.08652336627703285],[115,222,64,-0.07082016094251012],[115,222,65,-0.0747146965431647],[115,222,66,-0.04817153993486462],[115,222,67,-0.047607513050332326],[115,222,68,-0.057077283294754255],[115,222,69,-0.04958087507639036],[115,222,70,-0.061330640312830746],[115,222,71,-0.08651446769740784],[115,222,72,-0.07067722279450794],[115,222,73,-0.027957509232120502],[115,222,74,-0.003953100498284488],[115,222,75,-0.015833578270452488],[115,222,76,-0.03494807504055999],[115,222,77,-0.05447552204763116],[115,222,78,-0.07948777145655285],[115,222,79,-0.08479152653154272],[115,223,64,-0.06970763477534234],[115,223,65,-0.073671192578267],[115,223,66,-0.04731700618149592],[115,223,67,-0.04666176799248379],[115,223,68,-0.05602297018284709],[115,223,69,-0.048753680879971534],[115,223,70,-0.060494653398003896],[115,223,71,-0.08518387488880805],[115,223,72,-0.06948991273976644],[115,223,73,-0.02735132845813014],[115,223,74,-0.003508363287214419],[115,223,75,-0.014985293178241125],[115,223,76,-0.03361462028462082],[115,223,77,-0.053004985707436225],[115,223,78,-0.07788885535244582],[115,223,79,-0.08308302828811026],[115,224,64,-0.06859722464697976],[115,224,65,-0.07262789022172082],[115,224,66,-0.04646969381135092],[115,224,67,-0.04572748625302856],[115,224,68,-0.054978744142994224],[115,224,69,-0.04793266029903665],[115,224,70,-0.05966049058982976],[115,224,71,-0.0838577665205398],[115,224,72,-0.06830807839654672],[115,224,73,-0.02675266261226525],[115,224,74,-0.003079123096952265],[115,224,75,-0.014159506837044688],[115,224,76,-0.03231323017879263],[115,224,77,-0.05156624143218199],[115,224,78,-0.0763152147904045],[115,224,79,-0.08139811960950324],[115,225,64,-0.06748950213319048],[115,225,65,-0.07158536191360156],[115,225,66,-0.04562995074756823],[115,225,67,-0.044804971275036354],[115,225,68,-0.05394497138004134],[115,225,69,-0.047118126502850854],[115,225,70,-0.05882856498370664],[115,225,71,-0.08253680329115033],[115,225,72,-0.06713229989185769],[115,225,73,-0.026161708080881137],[115,225,74,-0.0026652878653766095],[115,225,75,-0.013356164922359144],[115,225,76,-0.031043785210154145],[115,225,77,-0.050159154165317264],[115,225,78,-0.07476692634727965],[115,225,79,-0.0797370494675219],[115,226,64,-0.06638504581549616],[115,226,65,-0.0705441892469024],[115,226,66,-0.04479812055407939],[115,226,67,-0.04389451764120093],[115,226,68,-0.052922014914829174],[115,226,69,-0.046310393323987266],[115,226,70,-0.057999296082898846],[115,226,71,-0.08122165260549545],[115,226,72,-0.06596316044820168],[115,226,73,-0.025578655046475225],[115,226,74,-0.002266747724504963],[115,226,75,-0.012575195015654132],[115,226,76,-0.029806150763808742],[115,226,77,-0.04878358011731011],[115,226,78,-0.07324406588735795],[115,226,79,-0.07810006537693297],[115,227,64,-0.06528443891058182],[115,227,65,-0.06950496073278632],[115,227,66,-0.0439745412215535],[115,227,67,-0.04299640998473807],[115,227,68,-0.05191023299289654],[115,227,69,-0.04550977389456186],[115,227,70,-0.057173108208998284],[115,227,71,-0.0799129859336155],[115,227,72,-0.06480124401910883],[115,227,73,-0.02500368676278581],[115,227,74,-0.0018833752658054736],[115,227,75,-0.011816505998608291],[115,227,76,-0.028600175674778513],[115,227,77,-0.04743936532186859],[115,227,78,-0.0717467068153343],[115,227,79,-0.07648741119593662],[115,228,64,-0.06418826698087456],[115,228,65,-0.06846826963164024],[115,228,66,-0.04315954403012927],[115,228,67,-0.04211092199556652],[115,228,68,-0.050909977594000205],[115,228,69,-0.04471657935525522],[115,228,70,-0.056350428967077114],[115,228,71,-0.07861147626956101],[115,228,72,-0.06364713302372349],[115,228,73,-0.024436978889987786],[115,228,74,-0.0015150258807734138],[115,228,75,-0.011079987587711023],[115,228,76,-0.027425690990612282],[115,228,77,-0.046126344386465706],[115,228,78,-0.07027491848431747],[115,228,79,-0.074899325091062],[115,229,64,-0.06309711573050576],[115,229,65,-0.06743471185437869],[115,229,66,-0.04235345248972855],[115,229,67,-0.04123831552123493],[115,229,68,-0.04992159304297994],[115,229,69,-0.043931117638027685],[115,229,70,-0.055531687768078104],[115,229,71,-0.07731779569455896],[115,229,72,-0.06250140618422834],[115,229,73,-0.023878698890049205],[115,229,74,-0.0011615381725161892],[115,229,75,-0.010365510004215196],[115,229,76,-0.026282508937372388],[115,229,77,-0.04484433942954268],[115,229,78,-0.06882876475445274],[115,229,79,-0.07333603766412433],[115,230,64,-0.06201156889060953],[115,230,65,-0.06640488393822316],[115,230,66,-0.041556581358505915],[115,230,67,-0.04037883976177677],[115,230,68,-0.04894541472222488],[115,230,69,-0.04315369232325592],[115,230,70,-0.054717314410843564],[115,230,71,-0.07603261304858629],[115,230,72,-0.06136463646956208],[115,230,73,-0.023329005482129517],[115,230,74,-8.227344339186758E-4],[115,230,75,-0.009672923774139027],[115,230,76,-0.025170422081368115],[115,230,77,-0.04359315919659219],[115,230,78,-0.06740830269762185],[115,230,79,-0.07179777023862485],[115,231,64,-0.06093220619752562],[115,231,65,-0.06537938110083696],[115,231,66,-0.0407692357396594],[115,231,67,-0.039532730557326555],[115,231,68,-0.04798176788565136],[115,231,69,-0.042384601571759405],[115,231,70,-0.05390773772593762],[115,231,71,-0.07475659171397277],[115,231,72,-0.06023738914844053],[115,231,73,-0.022788048157632274],[115,231,74,-4.984211877446734E-4],[115,231,75,-0.009002059652688663],[115,231,76,-0.02408920267866433],[115,231,77,-0.042372598347113904],[115,231,78,-0.06601358144349798],[115,231,79,-0.07028473330266341],[115,232,64,-0.059859601467134295],[115,232,65,-0.06435879537640275],[115,232,66,-0.039991710256564214],[115,232,67,-0.038700209767041326],[115,232,68,-0.04703096657379486],[115,232,69,-0.04162413713197017],[115,232,70,-0.0531033842832205],[115,232,71,-0.07349038751426108],[115,232,72,-0.0591202199542897],[115,232,73,-0.022255966754318988],[115,232,74,-1.8838978388014213E-4],[115,232,75,-0.008352728667191915],[115,232,76,-0.02303860220409237],[115,232,77,-0.041182436904262355],[115,232,78,-0.06464464116209079],[115,232,79,-0.06879712510515282],[115,233,64,-0.058794320768198245],[115,233,65,-0.0633437138369147],[115,233,66,-0.0392242883059381],[115,233,67,-0.03788148473761303],[115,233,68,-0.046093312629341555],[115,233,69,-0.0408725834222976],[115,233,70,-0.0523046771649308],[115,233,71,-0.07223464673113905],[115,233,72,-0.05801367336429401],[115,233,73,-0.021732891088709762],[115,233,74,1.0758295115736247E-4],[115,233,75,-0.007724722272426242],[115,233,76,-0.022018351051260526],[115,233,77,-0.04002243985890512],[115,233,78,-0.06330151217782387],[115,233,79,-0.067335130401883],[115,234,64,-0.05773692069715869],[115,234,65,-0.062334716901573856],[115,234,66,-0.03846724138844746],[115,234,67,-0.037076747859353214],[115,234,68,-0.045169094812086766],[115,234,69,-0.040130216688484155],[115,234,70,-0.051512034805777394],[115,234,71,-0.07099000424178145],[115,234,72,-0.05691828099428846],[115,234,73,-0.021218940645757058],[115,234,74,3.8973401744876556E-4],[115,234,75,-0.007117812611963936],[115,234,76,-0.021028158394779305],[115,234,77,-0.03889235691965211],[115,234,78,-0.06198421421003177],[115,234,79,-0.06589891934768377],[115,235,64,-0.05668794675644228],[115,235,65,-0.061332376736823464],[115,235,66,-0.037720828515908224],[115,235,67,-0.036286176207580484],[115,235,68,-0.04425858801201309],[115,235,69,-0.03939730423552367],[115,235,70,-0.05072586990130482],[115,235,71,-0.06975708177849237],[115,235,72,-0.055834560110783645],[115,235,73,-0.020714224324594695],[115,235,74,6.583135027007223E-4],[115,235,75,-0.0065317528789698995],[115,235,76,-0.020067712205702415],[115,235,77,-0.03779192240032648],[115,235,78,-0.06069275573466429],[115,235,79,-0.06448864653067514],[115,236,64,-0.05564793183793605],[115,236,65,-0.06033725574920043],[115,236,66,-0.036985295694005084],[115,236,67,-0.035509931266826146],[115,236,68,-0.04336205255892177],[115,236,69,-0.03867410373352202],[115,236,70,-0.04994658838558621],[115,236,71,-0.0685364863120957],[115,236,72,-0.05476301226098251],[115,236,73,-0.020218840239000654],[115,236,74,9.13583806132139E-4],[115,236,75,-0.00596627776975956],[115,236,76,-0.019136679411038984],[115,236,77,-0.036720855236318926],[115,236,78,-0.05942713346193096],[115,236,79,-0.06310445014439077],[115,237,64,-0.054617394812851945],[115,237,65,-0.05934990517278176],[115,237,66,-0.036260875479187556],[115,237,67,-0.03474815873512519],[115,237,68,-0.04247973362674141],[115,237,69,-0.03796086259663055],[115,237,70,-0.04917458847902481],[115,237,71,-0.06732880856003508],[115,237,72,-0.053704122021172744],[115,237,73,-0.019732875571017494],[115,237,74,0.0011558188303111966],[115,237,75,-0.0054211040232626405],[115,237,76,-0.018234706188008272],[115,237,77,-0.03567885912119595],[115,237,78,-0.058187331924511344],[115,237,79,-0.061746451293289054],[115,238,64,-0.053596839228774694],[115,238,65,-0.05837086375260994],[115,238,66,-0.035547786608168],[115,238,67,-0.03400098840545588],[115,238,68,-0.041611860730375864],[115,238,69,-0.03725781743397718],[115,238,70,-0.04841025980680457],[115,238,71,-0.06613462161967472],[115,238,72,-0.052658355863427556],[115,238,73,-0.019256406476004736],[115,238,74,0.001385303146013188],[115,238,75,-0.004895931039443778],[115,238,76,-0.01736141838360044],[115,238,77,-0.03466562275493367],[115,238,78,-0.05697332317091097],[115,238,79,-0.0604147534269631],[115,239,64,-0.052586752114294595],[115,239,65,-0.05740065652512181],[115,239,66,-0.0348462336982576],[115,239,67,-0.033268534121234906],[115,239,68,-0.040758647312727464],[115,239,69,-0.03656519357134071],[115,239,70,-0.04765398258831096],[115,239,71,-0.06495447972686282],[115,239,72,-0.05162616114013334],[115,239,73,-0.018789498037281818],[115,239,74,0.0016023311350807866],[115,239,75,-0.004390441569702655],[115,239,76,-0.016516422049968782],[115,239,77,-0.03368082019520685],[115,239,78,-0.05578506655853335],[115,239,79,-0.0591094418981967],[115,240,64,-0.05158760289119136],[115,240,65,-0.0564397936962004],[115,240,66,-0.03415640701655079],[115,240,67,-0.032550893802587466],[115,240,68,-0.03992029041927275],[115,240,69,-0.03588320464209899],[115,240,70,-0.04690612689758691],[115,240,71,-0.06378891713934211],[115,240,72,-0.05060796518540997],[115,240,73,-0.01833220426835481],[115,240,74,0.0018072061162259013],[115,240,75,-0.0039043024722091087],[115,240,76,-0.015699304086102733],[115,240,77,-0.03272411130318525],[115,240,78,-0.054622508640994924],[115,240,79,-0.05783058363980803],[115,241,64,-0.050599842393712166],[115,241,65,-0.055488769617069104],[115,241,66,-0.03347848231576949],[115,241,67,-0.031848149539960784],[115,241,68,-0.03909697045734295],[115,241,69,-0.035212052245789355],[115,241,70,-0.04616705199463565],[115,241,71,-0.06263844714413742],[115,241,72,-0.049604174532056934],[115,241,73,-0.01788456816058953],[115,241,74,0.002000239458607645],[115,241,75,-0.0034371655251447934],[115,241,76,-0.014909632976258459],[115,241,77,-0.031795142275391326],[115,241,78,-0.05348558314420839],[115,241,79,-0.056578226955070726],[115,242,64,-0.04962390199412724],[115,242,65,-0.05454806185791421],[115,242,66,-0.032812620734445005],[115,242,67,-0.031160367751564992],[115,242,68,-0.038288851037095235],[115,242,69,-0.034551925672485086],[115,242,70,-0.045437105727198585],[115,242,71,-0.06150356118766234],[115,242,72,-0.048615174242295535],[115,242,73,-0.01744662177412325],[115,242,74,0.0021817496878642926],[115,242,75,-0.002988668290876473],[115,242,76,-0.01414695961566996],[115,242,77,-0.030893546253306405],[115,242,78,-0.05237421102581444],[115,242,79,-0.0553524014164059],[115,243,64,-0.048660192833323804],[115,243,65,-0.05361813037871561],[115,243,66,-0.032158968758922685],[115,243,67,-0.030487599400987456],[115,243,68,-0.03749607889094632],[115,243,69,-0.03390300169099704],[115,243,70,-0.044716624002371884],[115,243,71,-0.06038472812683251],[115,243,72,-0.047641327350151],[115,243,73,-0.017018386369672598],[115,243,74,0.0023520615891646337],[115,243,75,-0.002558435024133843],[115,243,76,-0.013410818214141324],[115,243,77,-0.03001894400254654],[115,243,78,-0.051288300612547764],[115,243,79,-0.05415311786689494],[115,244,64,-0.0477091051548234],[115,244,65,-0.05269941679640817],[115,244,66,-0.03151765824453568],[115,244,67,-0.02982988027125062],[115,244,68,-0.03671878386808056],[115,244,69,-0.03326544439876533],[115,244,70,-0.044005930327214504],[115,244,71,-0.059282393599078574],[115,244,72,-0.0466829744129551],[115,244,73,-0.01659987257881793],[115,244,74,0.0025115053116745185],[115,244,75,-0.0021460776173626746],[115,244,76,-0.012700727268231881],[115,244,77,-0.029170944653602267],[115,244,78,-0.05022774781018253],[115,244,79,-0.05298036851908403],[115,245,64,-0.046771007740286696],[115,245,65,-0.0517923437471838],[115,245,66,-0.03088880649320294],[115,245,67,-0.02918723129155077],[115,245,68,-0.03595707900052858],[115,245,69,-0.0326394051312006],[115,245,70,-0.04330533541732541],[115,245,71,-0.058196979508806666],[115,245,72,-0.04574043316913133],[115,245,73,-0.016191080610306597],[115,245,74,0.002660415478621656],[115,245,75,-0.0017511965765795348],[115,245,76,-0.01201619059293293],[115,245,77,-0.028349146496368532],[115,245,78,-0.0491924363808029],[115,245,79,-0.05183412714551504],[115,246,64,-0.045846247444181434],[115,246,65,-0.05089731434236832],[115,246,66,-0.030272516384555963],[115,246,67,-0.028559658912837706],[115,246,68,-0.035211060637155615],[115,246,69,-0.032025022428076415],[115,246,70,-0.04261513687212681],[115,246,71,-0.05712888362745285],[115,246,72,-0.044813998299060374],[115,246,73,-0.015792000489823075],[115,246,74,0.0027991303069796027],[115,246,75,-0.0013733820211797644],[115,246,76,-0.011356698403897707],[115,246,77,-0.027553137820889875],[115,246,78,-0.048182238282200605],[115,246,79,-0.05071434935534398],[115,247,64,-0.04493514882500906],[115,247,65,-0.05001471171602704],[115,247,66,-0.02966887655764547],[115,247,67,-0.027947155528405817],[115,247,68,-0.034480808641824776],[115,247,69,-0.03142242205449982],[115,247,70,-0.041935618915442674],[115,247,71,-0.056078479303981715],[115,247,72,-0.04390394128555811],[115,247,73,-0.015402612330667337],[115,247,74,0.002927990740547074],[115,247,75,-0.001012214701358823],[115,247,76,-0.01072172844153671],[115,247,77,-0.026782497797025278],[115,247,78,-0.04719701406433221],[115,247,79,-0.049620972951421],[115,248,64,-0.044038013870149995],[115,248,65,-0.04914489866212291],[115,248,66,-0.029077961640172862],[115,248,67,-0.02734969993563528],[115,248,68,-0.03376638665189114],[115,248,69,-0.030831717073864777],[115,248,70,-0.04126705219975187],[115,248,71,-0.0550461152823355],[115,248,72,-0.043010510370190116],[115,248,73,-0.015022886632725602],[115,248,74,0.0030473396000013065],[115,248,75,-6.6726702699138E-4],[115,248,76,-0.010110747128526781],[115,248,77,-0.026036797385987336],[115,248,78,-0.04623661331786534],[115,248,79,-0.048553918362182355],[115,249,64,-0.04315512181114568],[115,249,65,-0.04828821735880182],[115,249,66,-0.0284998325221683],[115,249,67,-0.026767257835074058],[115,249,68,-0.03306784239315454],[115,249,69,-0.030253007970151125],[115,249,70,-0.040609693672369405],[115,249,71,-0.054032115622091564],[115,249,72,-0.04213393060143361],[115,249,73,-0.014652784607138383],[115,249,74,0.0031575207532326317],[115,249,75,-3.381041020770205E-4],[115,249,76,-0.009523210752604235],[115,249,77,-0.02531560027704098],[115,249,78,-0.04530087517000699],[115,249,79,-0.04751308914277128],[115,250,64,-0.04228672902595722],[115,250,65,-0.04744498917709895],[115,250,66,-0.02793453667097383],[115,250,67,-0.02619978236305761],[115,250,68,-0.032385208047329646],[115,250,69,-0.029686382816840412],[115,250,70,-0.03996378650163377],[115,250,71,-0.05303677971830294],[115,250,72,-0.041274403970450825],[115,250,73,-0.014292258524045255],[115,250,74,0.003258878309049624],[115,250,75,-2.4284759085023534E-5],[115,250,76,-0.008958566666799277],[115,250,77,-0.024618463842929834],[115,250,78,-0.044389628822926505],[115,250,79,-0.04649837253981946],[115,251,64,-0.04143306902450542],[115,251,65,-0.046615514571111696],[115,251,66,-0.027382108484360256],[115,251,67,-0.02564721465411521],[115,251,68,-0.0317185006680723],[115,251,69,-0.029131917489673465],[115,251,70,-0.039329560061038576],[115,251,71,-0.052060382416263144],[115,251,72,-0.04043210963004182],[115,251,73,-0.01394125208079631],[115,251,74,0.003351755837089973],[115,251,75,2.7463741219265527E-4],[115,251,76,-0.008416254499616587],[115,251,77,-0.023944940107933008],[115,251,78,-0.043502694130245816],[115,251,79,-0.045509640114399966],[115,252,64,-0.04059435251362038],[115,252,65,-0.045800073046496616],[115,252,66,-0.02684256967862599],[115,252,67,-0.025109484429501033],[115,252,68,-0.03106772264161828],[115,252,69,-0.028589675920461587],[115,252,70,-0.03870722996915074],[115,252,71,-0.05110317421676083],[115,252,72,-0.03960720419220409],[115,252,73,-0.013599700788069713],[115,252,74,0.0034364956164934612],[115,252,75,5.591130463647191E-4],[115,252,76,-0.007895707368048517],[115,252,77,-0.02329457672281541],[115,252,78,-0.04263988220725703],[115,252,79,-0.044546748417766575],[115,253,64,-0.03977076753731986],[115,253,65,-0.04499892320392156],[115,253,66,-0.026315929708503254],[115,253,67,-0.02458651060824455],[115,253,68,-0.030432862188084383],[115,253,69,-0.028059710389120293],[115,253,70,-0.03809699818302255],[115,253,71,-0.050165381567187375],[115,253,72,-0.038799822099561496],[115,253,73,-0.01326753237134341],[115,253,74,0.0035134379156579014],[115,253,75,8.295959995444455E-4],[115,253,76,-0.007396353086669478],[115,253,77,-0.0226669179412668],[115,253,78,-0.04180099607068102],[115,253,79,-0.04360953971458231],[115,254,64,-0.038962479688179785],[115,254,65,-0.04421230285392931],[115,254,66,-0.025802186215717945],[115,254,67,-0.02407820193720802],[115,254,68,-0.029813893899511067],[115,254,69,-0.02754206185108391],[115,254,70,-0.03749905314270575],[115,254,71,-0.04924720723371166],[115,254,72,-0.03801007606581508],[115,254,73,-0.012944667185216039],[115,254,74,0.0035829203051361974],[115,254,75,0.0010865423663231],[115,254,76,-0.006917615366460517],[115,254,77,-0.022061505592784036],[115,254,78,-0.040985831303963854],[115,254,79,-0.042697842748462],[115,255,64,-0.038169632385456106],[115,255,65,-0.043440429199541164],[115,255,66,-0.02530132550310575],[115,255,67,-0.02358445763676829],[115,255,68,-0.02921077931079847],[115,255,69,-0.027036760297290678],[115,255,70,-0.036913569964421855],[115,255,71,-0.04834883074964325],[115,255,72,-0.03723805758030718],[115,255,73,-0.012631018638149385],[115,255,74,0.0036452770054535835],[115,255,75,0.0013304095207604897],[115,255,76,-0.0064589149974451105],[115,255,77,-0.021477880047340067],[115,255,78,-0.04019417674431822],[115,255,79,-0.04181147354481505],[115,256,64,-0.037392347215480556],[115,256,65,-0.042683499082769645],[115,256,66,-0.024813323031204378],[115,256,67,-0.023105168058830946],[115,256,68,-0.028623467499727027],[115,256,69,-0.02654382514391798],[115,256,70,-0.03634071067984442],[115,256,71,-0.04747040893498239],[115,256,72,-0.0364838374717065],[115,256,73,-0.012326493625241802],[115,256,74,0.003700838271389713],[115,256,75,0.0015616551852296948],[115,256,76,-0.00601967100962098],[115,256,77,-0.020915581167529767],[115,256,78,-0.039425815187888485],[115,256,79,-0.040950236246105436],[115,257,64,-0.03663072432978073],[115,257,65,-0.04194168929110537],[115,257,66,-0.024338143934303683],[115,257,67,-0.02264021535401386],[115,257,68,-0.028051895712334084],[115,257,69,-0.026063265649080947],[115,257,70,-0.03578062451889948],[115,257,71,-0.04661207648209496],[115,257,72,-0.03574746652579549],[115,257,73,-0.012030992966720132],[115,257,74,0.0037499298140143025],[115,257,75,0.00178073653061911],[115,257,76,-0.0055993018071042846],[115,257,77,-0.02037414924425551],[115,257,78,-0.03868052410961504],[115,257,79,-0.040113923974812844],[115,258,64,-0.03588484289633006],[115,258,65,-0.04121515691997467],[115,258,66,-0.023875743553019066],[115,258,67,-0.022189474144989296],[115,258,68,-0.027495990010027963],[115,258,69,-0.025595081353764478],[115,258,70,-0.03523344823346479],[115,258,71,-0.04577394660242562],[115,258,72,-0.03502897615234952],[115,258,73,-0.011744411849930384],[115,258,74,0.003792872261501803],[115,258,75,0.00198810931103788],[115,258,76,-0.005197226270857789],[115,258,77,-0.01985312591240516],[115,258,78,-0.03795807639459533],[115,258,79,-0.039302319719577115],[115,259,64,-0.03515476159927848],[115,259,65,-0.04050403978707233],[115,259,66,-0.023426067980507517],[115,259,67,-0.021752812203093202],[115,259,68,-0.02695566593490342],[115,259,69,-0.025139262544289297],[115,259,70,-0.034699306459298314],[115,259,71,-0.04495611172912569],[115,259,72,-0.03432837909609398],[115,259,73,-0.011466640272672019],[115,259,74,0.0038299806595315632],[115,259,75,0.002184227035855672],[115,259,76,-0.004812864825793105],[115,259,77,-0.01935205504332047],[115,259,78,-0.0372582410779138],[115,259,79,-0.0385151972401716],[115,260,64,-0.03444051918250887],[115,260,65,-0.039808456894439896],[115,260,66,-0.022989054619535872],[115,260,67,-0.02133009112545976],[115,260,68,-0.026430829189838734],[115,260,69,-0.02469579073367387],[115,260,70,-0.034178312113513847],[115,260,71,-0.04415864427048505],[115,260,72,-0.0336456701867687],[115,260,73,-0.011197563485814533],[115,260,74,0.003861564011845789],[115,260,75,0.002369540181570423],[115,260,76,-0.004445640468475335],[115,260,77,-0.018870483611217702],[115,260,78,-0.03658078409011912],[115,260,79,-0.037752321987153455],[115,261,64,-0.03374213503238205],[115,261,65,-0.03912850893413799],[115,261,66,-0.022564632747714662],[115,261,67,-0.02092116701010424],[115,261,68,-0.025921376330094476],[115,261,69,-0.024264639159337277],[115,261,70,-0.033670566824926626],[115,261,71,-0.043381597409098686],[115,261,72,-0.03298082712340116],[115,261,73,-0.010937062433241147],[115,261,74,0.0038879248613026334],[115,261,75,0.0025444954456506534],[115,261,76,-0.004094979752110549],[115,261,77,-0.018407962531094026],[115,261,78,-0.03592546900573917],[115,261,79,-0.037013452032252266],[115,262,64,-0.03305960979505145],[115,262,65,-0.03846427883334882],[115,262,66,-0.022152724088295137],[115,262,67,-0.020525891126514165],[115,262,68,-0.02542719546324825],[115,262,69,-0.02384577329464858],[115,262,70,-0.03317616139458801],[115,262,71,-0.04262500594173823],[115,262,72,-0.03233381128795654],[115,262,73,-0.010685014187245634],[115,262,74,0.003909358911570131],[115,262,75,0.0027095350441945945],[115,262,76,-0.0037603137259046115],[115,262,77,-0.017964047465978464],[115,262,78,-0.03529205779240296],[115,262,79,-0.03629833900575209],[115,263,64,-0.03239292602377304],[115,263,65,-0.037815832334748264],[115,263,66,-0.021753243384029394],[115,263,67,-0.02014411057946348],[115,263,68,-0.024948166954439067],[115,263,69,-0.02343915137190947],[115,263,70,-0.03269517628383867],[115,263,71,-0.04188888715496665],[115,263,72,-0.03170456858362749],[115,263,73,-0.010441292377608227],[115,263,74,0.003926154689407199],[115,263,75,0.002865096054929256],[115,263,76,-0.0034410788263049257],[115,263,77,-0.017538299601724913],[115,263,78,-0.03468031155833232],[115,263,79,-0.03560672903733283],[115,264,64,-0.03174204885171819],[115,264,65,-0.0371832186080351],[115,264,66,-0.02136609897171743],[115,264,67,-0.01977566896393629],[115,264,68,-0.024484164134056487],[115,264,69,-0.023044724914463553],[115,264,70,-0.03222768212725729],[115,264,71,-0.04117324173164333],[115,264,72,-0.031093030293158734],[115,264,73,-0.010205767612689511],[115,264,74,0.00393859324728172],[115,264,75,0.0030116098067539698],[115,264,76,-0.003136717718059255],[115,264,77,-0.017130286387879806],[115,264,78,-0.034089991296169284],[115,264,79,-0.034938363697065565],[115,265,64,-0.031106926685866773],[115,265,65,-0.036566470888534694],[115,265,66,-0.020991193355161152],[115,265,67,-0.01942040700918484],[115,265,68,-0.024035054005140995],[115,265,69,-0.02266243927570298],[115,265,70,-0.031773740267899656],[115,265,71,-0.04047805468355551],[115,265,72,-0.030499113952713902],[115,265,73,-0.009978307890969765],[115,265,74,0.0039469479059186345],[115,265,75,0.003149501316753494],[115,265,76,-0.0028466800834068156],[115,265,77,-0.016739582243451442],[115,265,78,-0.033520858621270265],[115,265,79,-0.03429298093345571],[115,266,64,-0.030487491917649052],[115,266,65,-0.03596560713884826],[115,266,66,-0.020628423774356402],[115,266,67,-0.019078163210098715],[115,266,68,-0.023600697947915406],[115,266,69,-0.022292234182840785],[115,266,70,-0.03133340331226747],[115,266,71,-0.03980329630553541],[115,266,72,-0.02992272423693377],[115,266,73,-0.00975877900155705],[115,266,74,0.003951484036219397],[115,266,75,0.0032791887753258393],[115,266,76,-0.0025704233580983843],[115,266,77,-0.016365769226700605],[115,266,78,-0.03297267650277549],[115,266,79,-0.03367031600564061],[115,267,64,-0.02988366164613783],[115,267,65,-0.03538063072961499],[115,267,66,-0.020277682768886484],[115,267,67,-0.01874877444422922],[115,267,68,-0.023180952419037282],[115,267,69,-0.02193404428343749],[115,267,70,-0.03090671570251788],[115,267,71,-0.039148923146574824],[115,267,72,-0.02936375385100571],[115,267,73,-0.009547044912304526],[115,267,74,0.0039524588798371995],[115,267,75,0.0034010830797890574],[115,267,76,-0.0023074134133216533],[115,267,77,-0.016008437668365426],[115,267,78,-0.03244520998594404],[115,267,79,-0.033070102407075905],[115,268,64,-0.02929533840969502],[115,268,65,-0.03481153113551787],[115,268,66,-0.01993885873357835],[115,268,67,-0.018432076572940784],[115,268,68,-0.022775669643300397],[115,268,69,-0.02158779969275636],[115,268,70,-0.030493714303465355],[115,268,71,-0.03851487899357815],[115,268,72,-0.028822084425709642],[115,268,73,-0.009342968144255961],[115,268,74,0.003950121407585373],[115,268,75,0.0035155874165964116],[115,268,76,-0.002057125182940035],[115,268,77,-0.015667186767978344],[115,268,78,-0.03193822690439212],[115,268,79,-0.03249207277823661],[115,269,64,-0.02872241092211182],[115,269,65,-0.03425828464276312],[115,269,66,-0.019611836464596126],[115,269,67,-0.018127905025304536],[115,269,68,-0.022384698295669855],[115,269,69,-0.021253426540131896],[115,269,70,-0.030094429001997252],[115,269,71,-0.03790109586355634],[115,269,72,-0.028297587411577948],[115,269,73,-0.009146410131232099],[115,269,74,0.003944712214749319],[115,269,75,0.0036230968920567927],[115,269,76,-0.0018190432357802308],[115,269,77,-0.01534162515317636],[115,269,78,-0.03145149858102316],[115,269,79,-0.03193595980606477],[115,270,64,-0.028164754809440237],[115,270,65,-0.03372085506438553],[115,270,66,-0.019296497694276608],[115,270,67,-0.017836095363497808],[115,270,68,-0.022007884171701946],[115,270,69,-0.020930847512656513],[115,270,70,-0.029708883316610736],[115,270,71,-0.03730749500024324],[115,270,72,-0.0277901249684985],[115,270,73,-0.00895723156347597],[115,270,74,0.003936463452265376],[115,270,75,0.003723998211226842],[115,270,76,-0.0015926622930252656],[115,270,77,-0.015031371402143681],[115,270,78,-0.030984800516596224],[115,270,79,-0.03140149710810516],[115,271,64,-0.027622233343843044],[115,271,65,-0.03319919445982441],[115,271,66,-0.01899272161309825],[115,271,67,-0.01755648382858313],[115,271,68,-0.021645070844533248],[115,271,69,-0.02061998239458009],[115,271,70,-0.029337095014835685],[115,271,71,-0.036733987871270926],[115,271,72,-0.027299550847251594],[115,271,73,-0.008775292714338887],[115,271,74,0.003925598792676923],[115,271,75,0.003818669404464769],[115,271,76,-0.0013774876910359441],[115,271,77,-0.01473605452951341],[115,271,78,-0.030537913064994433],[115,271,79,-0.030888420099445105],[115,272,64,-0.027094698170960427],[115,272,65,-0.032693243855354825],[115,272,66,-0.018700385377300194],[115,272,67,-0.017288907865676852],[115,272,68,-0.021296100306783573],[115,272,69,-0.020320748600939974],[115,272,70,-0.028979076736405946],[115,272,71,-0.03618047716223344],[115,272,72,-0.02682571125967034],[115,272,73,-0.008600453749084743],[115,272,74,0.0039123334297044175],[115,272,75,0.003907479600945759],[115,272,76,-0.0011730357901964898],[115,272,77,-0.014455314436251775],[115,272,78,-0.0301106220943907],[115,272,79,-0.030396466840769194],[115,273,64,-0.026581990027439564],[115,273,65,-0.032202933962068074],[115,273,66,-0.018419364600751297],[115,273,67,-0.01703320662761143],[115,273,68,-0.02096081359584599],[115,273,69,-0.020033061704029218],[115,273,70,-0.028634836620107934],[115,273,71,-0.0356468577641337],[115,273,72,-0.026368445734282604],[115,273,73,-0.008432575014946549],[115,273,74,0.0038968741102425393],[115,273,75,0.00399078884829235],[115,273,76,-9.788343306150065E-4],[115,273,77,-0.01418880232420701],[115,273,78,-0.029702719633608845],[115,273,79,-0.029925378866001155],[115,274,64,-0.026083939445448238],[115,274,65,-0.03172818588824607],[115,274,66,-0.018149533829787495],[115,274,67,-0.016789221456323365],[115,274,68,-0.02063905140119181],[115,274,69,-0.019756835951434234],[115,274,70,-0.02830437893234272],[115,274,71,-0.03513301775090907],[115,274,72,-0.02592758795449359],[115,274,73,-0.008271517311655515],[115,274,74,0.00387941919755477],[115,274,75,0.004068947977328015],[115,274,76,-7.944227357240584E-4],[115,274,77,-0.013936181076156937],[115,274,78,-0.029314004503093436],[115,274,79,-0.029474901988182745],[115,275,64,-0.025600367441150337],[115,275,65,-0.03126891184309355],[115,275,66,-0.017890766999810306],[115,275,67,-0.016556796341271142],[115,275,68,-0.020330654652433618],[115,275,69,-0.019491984774458623],[115,275,70,-0.027987704695507275],[115,275,71,-0.03463883934389952],[115,275,72,-0.025502966576533694],[115,275,73,-0.008117142141706005],[115,275,74,0.003860158764444569],[115,275,75,0.004142298510852813],[115,275,76,-6.193523650202873E-4],[115,275,77,-0.013697125602312033],[115,275,78,-0.028944282929980168],[115,275,79,-0.029044787082379234],[115,276,64,-0.025131086184282656],[115,276,65,-0.030825015828928843],[115,276,66,-0.01764293787252503],[115,276,67,-0.016335778354276433],[115,276,68,-0.020035465087013704],[115,276,69,-0.01923842128585004],[115,276,70,-0.027684812314392234],[115,276,71,-0.034164199860301676],[115,276,72,-0.025094406024574672],[115,276,73,-0.007969311939672938],[115,276,74,0.0038392747151907423],[115,276,75,0.0042111726152503125],[115,276,76,-4.5318671733779356E-4],[115,276,77,-0.013471323154329817],[115,276,78,-0.028593369146834743],[115,276,79,-0.028634790844541746],[115,277,64,-0.02467589964614904],[115,277,65,-0.030396394319082396],[115,277,66,-0.01740592045278889],[115,277,67,-0.016126018060265996],[115,277,68,-0.019753325796513645],[115,277,69,-0.0189960587658531],[115,277,70,-0.027395698198893013],[115,277,71,-0.03370897264284375],[115,277,72,-0.024701727260597398],[115,277,73,-0.007827890279952388],[115,277,74,0.0038169409350495152],[115,277,75,0.004275893093648522],[115,277,76,-2.955015862073437E-4],[115,277,77,-0.01325847360799797],[115,277,78,-0.028261085973708487],[115,277,79,-0.028244676525393964],[115,278,64,-0.024234604223496225],[115,278,65,-0.029982936918874988],[115,278,66,-0.017179589384095275],[115,278,67,-0.015927369903440618],[115,278,68,-0.019484081750672594],[115,278,69,-0.018764811135689004],[115,278,70,-0.027120357381404753],[115,278,71,-0.03327302796807391],[115,278,72,-0.024324748526747292],[115,278,73,-0.007692742062319162],[115,278,74,0.003793323466178272],[115,278,75,0.004336773419316797],[115,278,76,-1.4588516895816859E-4],[115,278,77,-0.013058289715797072],[115,278,78,-0.027947265383198482],[115,278,79,-0.02787421463851569],[115,279,64,-0.023806989335892217],[115,279,65,-0.029584527007180554],[115,279,66,-0.016963820321784097],[115,279,67,-0.01573969256844991],[115,279,68,-0.019227580298302828],[115,279,69,-0.01854459341764779],[115,279,70,-0.026858784127359404],[115,279,71,-0.03285623393082282],[115,279,72,-0.023963286058068075],[115,279,73,-0.007563733674720036],[115,279,74,0.0037685807088941726],[115,279,75,0.004394117807949501],[115,279,76,-3.938131312169568E-6],[115,279,77,-0.012870497330602028],[115,279,78,-0.02765174904824462],[115,279,79,-0.02752318364189312],[115,280,64,-0.023392837994393272],[115,280,65,-0.02920104235622286],[115,280,66,-0.01675849028313397],[115,280,67,-0.015562849316201454],[115,280,68,-0.018983671644387815],[115,280,69,-0.01833532218107088],[115,280,70,-0.026610972537455986],[115,280,71,-0.03245845730256928],[115,280,72,-0.023617154763661614],[115,280,73,-0.007440733132749613],[115,280,74,0.003742863647239498],[115,280,75,0.004448221327463266],[115,280,76,1.3072637069741394E-4],[115,280,77,-0.012694835601822219],[115,280,78,-0.027374388872433097],[115,280,79,-0.027191370592303376],[115,281,64,-0.022991927339419144],[115,281,65,-0.028832355727367014],[115,281,66,-0.016563477973524393],[115,281,67,-0.015396708293949658],[115,281,68,-0.018752209302715983],[115,281,69,-0.018136915973564652],[115,281,70,-0.02637691714020664],[115,281,71,-0.03207956436157936],[115,281,72,-0.023286168874445137],[115,281,73,-0.00732361019524856],[115,281,74,0.0037163160979272847],[115,281,75,0.004499370043958061],[115,281,76,2.584827096185132E-4],[115,281,77,-0.0125310571452791],[115,281,78,-0.02711504750258584],[115,281,79,-0.026878571771960673],[115,282,64,-0.022604029145895724],[115,282,65,-0.02847833544078977],[115,282,66,-0.016378664087893145],[115,282,67,-0.015241142819323464],[115,282,68,-0.018533050523469142],[115,282,69,-0.01794929573685189],[115,282,70,-0.026156613473494187],[115,282,71,-0.03171942169282587],[115,282,72,-0.02297014255579949],[115,282,73,-0.0072122364554642925],[115,282,74,0.003689074981835161],[115,282,75,0.004547841202514855],[115,282,76,3.7969284439145004E-4],[115,282,77,-0.012378928188114924],[115,282,78,-0.026873598823414474],[115,282,79,-0.026584593286904754],[115,283,64,-0.02222891029386743],[115,283,65,-0.02813884591704],[115,283,66,-0.01620393158675187],[115,283,67,-0.015096031637968804],[115,283,68,-0.018326056695253265],[115,283,69,-0.01777238520674384],[115,283,70,-0.025950058653925065],[115,283,71,-0.031377896955838494],[115,283,72,-0.022668890483524873],[115,283,73,-0.0071064854072069835],[115,283,74,0.003661270617324161],[115,283,75,0.004593903441545121],[115,283,76,4.947064151767444E-4],[115,283,77,-0.012238228690013413],[115,283,78,-0.026649928434025062],[115,283,79,-0.026309251636664033],[115,284,64,-0.021866333202892493],[115,284,65,-0.027813748188594924],[115,284,66,-0.0160391659460276],[115,284,67,-0.014961259154459172],[115,284,68,-0.018131093721092287],[115,284,69,-0.017606111296756804],[115,284,70,-0.025757251932814945],[115,284,71,-0.03105485961873893],[115,284,72,-0.022382228381604037],[115,284,73,-0.007006232485401487],[115,284,74,0.003633027034793982],[115,284,75,0.004637817039480924],[115,284,76,6.0386087332662E-4],[115,284,77,-0.012108752441961605],[115,284,78,-0.02644393410602442],[115,284,79,-0.026052374254735097],[115,285,64,-0.02151605622864915],[115,285,65,-0.027502900379623163],[115,285,66,-0.01588425538000708],[115,285,67,-0.014836715636109138],[115,285,68,-0.01794803236794035],[115,285,69,-0.017450404464948197],[115,285,70,-0.025578195237710637],[115,285,71,-0.03075018165682166],[115,285,72,-0.022109973520358223],[115,285,73,-0.006911355080402296],[115,285,74,0.003604462312023704],[115,285,75,0.004679834192677532],[115,285,76,7.074816446637119E-4],[115,285,77,-0.011990307143730656],[115,285,78,-0.026255526222949414],[115,285,79,-0.02581380001943156],[115,286,64,-0.021177834020293915],[115,286,65,-0.02720615815226523],[115,286,66,-0.01573909103666689],[115,286,67,-0.014722297389300537],[115,286,68,-0.01777674858929944],[115,286,69,-0.017305199063595556],[115,286,70,-0.025412893698415893],[115,286,71,-0.030463738214141976],[115,286,72,-0.021851945173657208],[115,286,73,-0.006821732525401853],[115,286,74,0.0035756889299909714],[115,286,75,0.004720199323493599],[115,286,76,8.058823242828979E-4],[115,286,77,-0.0118827144611894],[115,286,78,-0.02608462820070048],[115,286,79,-0.02559337973464931],[115,287,64,-0.020851417837196785],[115,287,65,-0.026923375117818907],[115,287,66,-0.015603567164650606],[115,287,67,-0.014617906907877263],[115,287,68,-0.01761712382053093],[115,287,69,-0.017170433671368206],[115,287,70,-0.02526135615653421],[115,287,71,-0.03019540822663906],[115,287,72,-0.021607965033887875],[115,287,73,-0.006737246056199695],[115,287,74,0.003546814149031503],[115,287,75,0.004759149417640044],[115,287,76,8.993649011761927E-4],[115,287,77,-0.011785810064473864],[115,287,78,-0.02593117688859754],[115,287,79,-0.02539097658006367],[115,288,64,-0.020536555823761102],[115,288,65,-0.026654403211291526],[115,288,66,-0.01547758125113221],[115,288,67,-0.014523452993107571],[115,288,68,-0.01746904524644858],[115,288,69,-0.017046051407668506],[115,288,70,-0.02512359565758484],[115,288,71,-0.029945075005387158],[115,288,72,-0.021377857583422637],[115,288,73,-0.006657778742534527],[115,288,74,0.0035179404053741208],[115,288,75,0.004796914390022004],[115,288,76,9.882200110756898E-4],[115,288,77,-0.011699443647938413],[115,288,78,-0.025795122950603776],[115,288,79,-0.025206466530229347],[115,289,64,-0.020232995035216934],[115,289,65,-0.026399095158286222],[115,289,66,-0.015361036072439613],[115,289,67,-0.014438851616107345],[115,289,68,-0.01733240514364098],[115,289,69,-0.01693199818631647],[115,289,70,-0.024999627414402033],[115,289,71,-0.029712624690786813],[115,289,72,-0.02116144987578361],[115,289,73,-0.006583216561808796],[115,289,74,0.003489163791203671],[115,289,75,0.004833715599637373],[115,289,76,0.0010727258243364533],[115,289,77,-0.011623479411469682],[115,289,78,-0.025676430843661505],[115,289,79,-0.02503973797456509],[115,290,64,-0.019940495821767865],[115,290,65,-0.026157321640328416],[115,290,66,-0.015253855132585021],[115,290,67,-0.01436403199403771],[115,290,68,-0.017207093798743026],[115,290,69,-0.016828206567780078],[115,290,70,-0.0248894491084618],[115,290,71,-0.02949792999946012],[115,290,72,-0.020958567409411127],[115,290,73,-0.006513457585366444],[115,290,74,0.0034605590796804456],[115,290,75,0.004869751339604891],[115,290,76,0.0011531373142211478],[115,290,77,-0.011557799812151883],[115,290,78,-0.025575076078062826],[115,290,79,-0.02489068594054149],[115,291,64,-0.019658823833984373],[115,291,65,-0.02592896191919203],[115,291,66,-0.015155973870079088],[115,291,67,-0.014298932872083473],[115,291,68,-0.01709300321394841],[115,291,69,-0.016734604538497795],[115,291,70,-0.02479305189294367],[115,291,71,-0.029300859492185954],[115,291,72,-0.020769036581419965],[115,291,73,-0.006448406630586519],[115,291,74,0.003432188721043429],[115,291,75,0.004905205615631553],[115,291,76,0.0012296928202666915],[115,291,77,-0.011502303303454966],[115,291,78,-0.025491047121442012],[115,291,79,-0.024759215725456817],[115,292,64,-0.0193877415715111],[115,292,65,-0.025713893912894525],[115,292,66,-0.015067330414433484],[115,292,67,-0.014243498785241447],[115,292,68,-0.016990031385071155],[115,292,69,-0.016651125273547694],[115,292,70,-0.024710432533496432],[115,292,71,-0.029121287741358637],[115,292,72,-0.020592687400150682],[115,292,73,-0.006387969532502594],[115,292,74,0.0034041124642159464],[115,292,75,0.004940257496153292],[115,292,76,0.0013026209882924945],[115,292,77,-0.011456902002638675],[115,292,78,-0.025424347473560958],[115,292,79,-0.024645246784185247],[115,293,64,-0.019127008481448063],[115,293,65,-0.025511994430113073],[115,293,66,-0.014987865626636381],[115,293,67,-0.01419768004882212],[115,293,68,-0.01689808238741042],[115,293,69,-0.016577707277619865],[115,293,70,-0.024641593700241386],[115,293,71,-0.028959095609271946],[115,293,72,-0.020429353596637067],[115,293,73,-0.006332052967589508],[115,293,74,0.0033763877769092477],[115,293,75,0.004975081528561299],[115,293,76,0.0013721410781306934],[115,293,77,-0.011421521654057645],[115,293,78,-0.025374995920998282],[115,293,79,-0.024548712944633407],[115,294,64,-0.01887638108451337],[115,294,65,-0.02532313945079753],[115,294,66,-0.014917523187323528],[115,294,67,-0.014161432745599542],[115,294,68,-0.016817066386044383],[115,294,69,-0.016514294410310437],[115,294,70,-0.024586544120154985],[115,294,71,-0.028814170381241597],[115,294,72,-0.020278872658349812],[115,294,73,-0.006280564294039753],[115,294,74,0.0033490702044493533],[115,294,75,0.005009848100047893],[115,294,76,0.0014384632322593232],[115,294,77,-0.01139610159675175],[115,294,78,-0.025343026748685226],[115,294,79,-0.02446956255179395],[115,295,64,-0.018635613048411808],[115,295,65,-0.02514720435730457],[115,295,66,-0.014856249645324985],[115,295,67,-0.014134718673835306],[115,295,68,-0.016746899608740498],[115,295,69,-0.016460835884756567],[115,295,70,-0.0245452986989697],[115,295,71,-0.02868640584363143],[115,295,72,-0.020141085807533255],[115,295,73,-0.00623341135533008],[115,295,74,0.003322213754157901],[115,295,75,0.005044723826440573],[115,295,76,0.0015017887662278552],[115,295,77,-0.011380594715024644],[115,295,78,-0.025328489923744528],[115,295,79,-0.02440775857280704],[115,296,64,-0.018404455207457815],[115,296,65,-0.024984064114904746],[115,296,66,-0.014803994425443901],[115,296,67,-0.01411750525479672],[115,296,68,-0.01668750428037493],[115,296,69,-0.01641728623876651],[115,296,70,-0.024517878611192628],[115,296,71,-0.028575702304829195],[115,296,72,-0.02001583792241386],[115,296,73,-0.006190502245613328],[115,296,74,0.0032958713066274124],[115,296,75,0.005079871969415575],[115,296,76,0.0015623104802523007],[115,296,77,-0.0113749673718597],[115,296,78,-0.02533145125010021],[115,296,79,-0.024363278661369194],[115,297,64,-0.018182655527496414],[115,297,65,-0.02483359340051643],[115,297,66,-0.014760709794235658],[115,297,67,-0.014109765398244031],[115,297,68,-0.01663880851764929],[115,297,69,-0.01638360527754849],[115,297,70,-0.024504311356806502],[115,297,71,-0.028481966557129233],[115,297,72,-0.019902977399457747],[115,297,73,-0.006151745035344951],[115,297,74,0.003270095055442818],[115,297,75,0.00511545288269715],[115,297,76,0.0016202129915443924],[115,297,77,-0.01137919932485413],[115,297,78,-0.025351992492166464],[115,297,79,-0.024336115179648298],[115,298,64,-0.017969959078275737],[115,298,65,-0.024695666741008974],[115,298,66,-0.014726350844347641],[115,298,67,-0.014111477385506518],[115,298,68,-0.01660074624350156],[115,298,69,-0.016359758047248596],[115,298,70,-0.024504630842796457],[115,298,71,-0.028405111836478657],[115,298,72,-0.019802356013337873],[115,298,73,-0.006117047513548895],[115,298,74,0.003244936919441049],[115,298,75,0.005151624430826873],[115,298,76,0.001675673030296506],[115,298,77,-0.011393283680626951],[115,298,78,-0.025390211521841944],[115,298,79,-0.024326275231419496],[115,299,64,-0.01776611998200903],[115,299,65,-0.02457017050517396],[115,299,66,-0.014700887220055732],[115,299,67,-0.014122636374612228],[115,299,68,-0.016573268611905445],[115,299,69,-0.016345726220021246],[115,299,70,-0.024518888763215556],[115,299,71,-0.028345068950597532],[115,299,72,-0.019713839847003634],[115,299,73,-0.006086327925281725],[115,299,74,0.0032204380387551136],[115,299,75,0.005188531576054059],[115,299,76,0.001728848974476984],[115,299,77,-0.011417237535730955],[115,299,78,-0.025446233064043842],[115,299,79,-0.02433379121475523],[115,300,64,-0.017570918018377492],[115,300,65,-0.024457019474235137],[115,300,66,-0.014684319352789932],[115,300,67,-0.014143270339336546],[115,300,68,-0.016556359797978887],[115,300,69,-0.016341523787594354],[115,300,70,-0.02454717021455974],[115,300,71,-0.028301801550359273],[115,300,72,-0.019637324304319963],[115,300,73,-0.006059529752739126],[115,300,74,0.0031966142723876705],[115,300,75,0.005226292018038974],[115,300,76,0.001779866476829529],[115,300,77,-0.01145111647808468],[115,300,78,-0.025520223239379032],[115,300,79,-0.02435873511633927],[115,301,64,-0.01738413870484276],[115,301,65,-0.024356137263906046],[115,301,66,-0.014676658921164588],[115,301,67,-0.014173420585138888],[115,301,68,-0.016550017712324987],[115,301,69,-0.016347178024332953],[115,301,70,-0.024589574894093063],[115,301,71,-0.028275287263513194],[115,301,72,-0.019572715281704057],[115,301,73,-0.0060366029583702584],[115,301,74,0.003173474953253022],[115,301,75,0.0052650148314600026],[115,301,76,0.001828836834314543],[115,301,77,-0.011494996575247458],[115,301,78,-0.025612371789475133],[115,301,79,-0.02440120067639527],[115,302,64,-0.01720557012239128],[115,302,65,-0.024267453352910782],[115,302,66,-0.014677925787566966],[115,302,67,-0.014213138604695454],[115,302,68,-0.01655425092848585],[115,302,69,-0.016362726550198846],[115,302,70,-0.024646214267871704],[115,302,71,-0.028265514649944784],[115,302,72,-0.019519926048736532],[115,302,73,-0.006017500848618562],[115,302,74,0.0031510261157037963],[115,302,75,0.005304803670205999],[115,302,76,0.00187586000284762],[115,302,77,-0.011548971630242395],[115,302,78,-0.02572288946841671],[115,302,79,-0.02446130063170971],[115,303,64,-0.017035002932633093],[115,303,65,-0.024190903274322974],[115,303,66,-0.014688148075403959],[115,303,67,-0.014262486042246569],[115,303,68,-0.016569078696177204],[115,303,69,-0.016388217466789527],[115,303,70,-0.024717211777685627],[115,303,71,-0.02827248313958952],[115,303,72,-0.019478877088235893],[115,303,73,-0.006002179894374679],[115,303,74,0.0031292707785616695],[115,303,75,0.005345757043220735],[115,303,76,0.0019210246884314964],[115,303,77,-0.011613153341492483],[115,303,78,-0.025852008299133956],[115,303,79,-0.024539166794184667],[115,304,64,-0.0168722303837271],[115,304,65,-0.024126428797428292],[115,304,66,-0.0147073622437355],[115,304,67,-0.01432153465167762],[115,304,68,-0.016594530953820727],[115,304,69,-0.016423709507863662],[115,304,70,-0.024802703054038436],[115,304,71,-0.028296202944125347],[115,304,72,-0.019449495911173568],[115,304,73,-0.005990599546880174],[115,304,74,0.003108209223358658],[115,304,75,0.00538796857995612],[115,304,76,0.0019644084115924025],[115,304,77,-0.011687671488019967],[115,304,78,-0.025999981831957036],[115,304,79,-0.024634950117969432],[115,305,64,-0.016717048305442427],[115,305,65,-0.024073978100293006],[115,305,66,-0.014735613158809481],[115,305,67,-0.01439036624715385],[115,305,68,-0.01663064833984527],[115,305,69,-0.016469272204691625],[115,305,70,-0.02490283613506856],[115,305,71,-0.02833669494106331],[115,305,72,-0.019431716845110244],[115,305,73,-0.005982722048022074],[115,305,74,0.003087839269396813],[115,305,75,0.00543152728624576],[115,305,76,0.002006077544642545],[115,305,77,-0.011772674139854784],[115,305,78,-0.026167085403888832],[115,305,79,-0.024748820753274975],[115,306,64,-0.016569255093651748],[115,306,65,-0.024033505933228536],[115,306,66,-0.014772954161977376],[115,306,67,-0.01446907264505902],[115,306,68,-0.01667748220219619],[115,306,69,-0.01652498606662405],[115,306,70,-0.025017771691384885],[115,306,71,-0.028393990528821602],[115,306,72,-0.019425480794774908],[115,306,73,-0.0059785122339262396],[115,306,74,0.003068156547325409],[115,306,75,0.0054765177915386916],[115,306,76,0.0020460873213829743],[115,306,77,-0.011868327893556973],[115,306,78,-0.026353616397109533],[115,306,79,-0.024880968084884044],[115,307,64,-0.01642865168455697],[115,307,65,-0.02400497377334832],[115,307,66,-0.014819447133424458],[115,307,67,-0.014557755595902411],[115,307,68,-0.01673509460545679],[115,307,69,-0.016590942777319675],[115,307,70,-0.025147683256854316],[115,307,71,-0.028468131451330966],[115,307,72,-0.01943073497334944],[115,307,73,-0.005977937330729816],[115,307,74,0.0030491547730145544],[115,307,75,0.005523020588540277],[115,307,76,0.0020844818189325897],[115,307,77,-0.011974818132722822],[115,307,78,-0.026559894495178652],[115,307,79,-0.02503160075327566],[115,308,64,-0.01629504151893388],[115,308,65,-0.023988349970417655],[115,308,66,-0.014875162551116566],[115,308,67,-0.014656526704794802],[115,308,68,-0.016803558334960292],[115,308,69,-0.01666724540713491],[115,308,70,-0.025292757465458563],[115,308,71,-0.02855916959068993],[115,308,72,-0.019447432602968544],[115,308,73,-0.005980966741390269],[115,308,74,0.0030308260235807757],[115,308,75,0.005571112266425173],[115,308,76,0.0021212939114514874],[115,308,77,-0.012092349313315081],[115,308,78,-0.02678626193536819],[115,308,79,-0.025200946656199544],[115,309,64,-0.01616823049665393],[115,309,65,-0.023983609884173893],[115,309,66,-0.014940179544308034],[115,309,67,-0.01476550733900553],[115,309,68,-0.016882956897225205],[115,309,69,-0.0167540086422182],[115,309,70,-0.025453194294391253],[115,309,71,-0.028667166726340024],[115,309,72,-0.01947553258286885],[115,309,73,-0.005987571822349876],[115,309,74,0.0030131610175065894],[115,309,75,0.005620865738913669],[115,309,76,0.0021565451956215105],[115,309,77,-0.01222114527361107],[115,309,78,-0.027033083755508176],[115,309,79,-0.025389252928431402],[115,310,64,-0.016048026921704116],[115,310,65,-0.02399073601326789],[115,310,66,-0.015014585940899028],[115,310,67,-0.014884828521029677],[115,310,68,-0.01697338451600233],[115,310,69,-0.016851359030891282],[115,310,70,-0.025629207313627084],[115,310,71,-0.02879219425918301],[115,310,72,-0.019514999123551754],[115,310,73,-0.00599772564884009],[115,310,74,0.0029961494008744717],[115,310,75,0.005672350468625551],[115,310,76,0.0021902458878381987],[115,310,77,-0.012361449568520196],[115,310,78,-0.027300748033676082],[115,310,79,-0.025596785897339106],[115,311,64,-0.01593424143789232],[115,311,65,-0.02400971811595149],[115,311,66,-0.015098478307882877],[115,311,67,-0.015014630805521836],[115,311,68,-0.01707494612318641],[115,311,69,-0.016959435247947588],[115,311,70,-0.025821023942256927],[115,311,71,-0.02893433289902658],[115,311,72,-0.019565801345257008],[115,311,73,-0.006011402767581574],[115,311,74,0.0029797800418075887],[115,311,75,0.0057256326892470046],[115,311,76,0.002222394693162645],[115,311,77,-0.012513525827982026],[115,311,78,-0.027589666119019574],[115,311,79,-0.025823831011796698],[115,312,64,-0.015826686955361886],[115,312,65,-0.024040553322574786],[115,312,66,-0.015191961984046898],[115,312,67,-0.015155064138359478],[115,312,68,-0.0171877573437855],[115,312,69,-0.017078388377518437],[115,312,70,-0.02602888571192141],[115,312,71,-0.02909367231368399],[115,312,72,-0.019627912838960756],[115,312,73,-0.006028578935591603],[115,312,74,0.0029640413352886147],[115,312,75,0.005780775627176769],[115,312,76,0.0022529786461887463],[115,312,77,-0.012677658139099712],[115,312,78,-0.027900272851940935],[115,312,79,-0.026070692741870023],[115,313,64,-0.0157251785679742],[115,313,65,-0.024083246239899044],[115,313,66,-0.015295151104023472],[115,313,67,-0.015306287696015046],[115,313,68,-0.017311944474088427],[115,313,69,-0.01720838221518174],[115,313,70,-0.026253048537719193],[115,313,71,-0.02927031073800332],[115,313,72,-0.019701311188033567],[115,313,73,-0.0060492308437708],[115,313,74,0.002948921520602017],[115,313,75,0.005837839724448195],[115,313,76,0.0022819729240931997],[115,313,77,-0.012854151451605877],[115,313,78,-0.02823302677181609],[115,313,79,-0.026337694446596362],[115,314,64,-0.015629533461556586],[115,314,65,-0.024137809047166295],[115,314,66,-0.015408168612719675],[115,314,67,-0.015468469703340988],[115,314,68,-0.017447644452122886],[115,314,69,-0.01734959359001083],[115,314,70,-0.026493782997005656],[115,314,71,-0.02946435454106229],[115,314,72,-0.019785977448625095],[115,314,73,-0.006073335823911462],[115,314,74,0.0029344090137032996],[115,314,75,0.005896882864844093],[115,314,76,0.0023093406322432296],[115,314,77,-0.013043332006202819],[115,314,78,-0.028588410310367622],[115,314,79,-0.026625178207078184],[115,315,64,-0.015539570812915533],[115,315,65,-0.024204261583770075],[115,315,66,-0.015531146269064638],[115,315,67,-0.01564178722777702],[115,315,68,-0.01759500481942372],[115,315,69,-0.01750221270725466],[115,315,70,-0.02675137461651065],[115,315,71,-0.02967591774969728],[115,315,72,-0.01988189558675333],[115,315,73,-0.006100871537721176],[115,315,74,0.0029204927568878005],[115,315,75,0.005957960605252977],[115,315,76,0.002335032562863774],[115,315,77,-0.013245547785242041],[115,315,78,-0.028966929968739147],[115,315,79,-0.026933504622000937],[115,316,64,-0.015455111679427027],[115,316,65,-0.024282631428276455],[115,316,66,-0.015664224637928877],[115,316,67,-0.015826425947909048],[115,316,68,-0.017754183673070217],[115,316,69,-0.01766644351233825],[115,316,70,-0.027026124168221442],[115,316,71,-0.029905121526495087],[115,316,72,-0.019989051870005277],[115,316,73,-0.0061318156464175355],[115,316,74,0.0029071625881904673],[115,316,75,0.006021126414445569],[115,316,76,0.002358986927398797],[115,316,77,-0.013461168985129213],[115,316,78,-0.02936911647625462],[115,316,79,-0.02726305256257901],[115,317,64,-0.015375978878920067],[115,317,65,-0.02437295396843903],[115,317,66,-0.015807553068987457],[115,317,67,-0.016022579894234352],[115,317,68,-0.017925349606886198],[115,317,69,-0.01784250407685718],[115,317,70,-0.027318347974480517],[115,317,71,-0.030152093600326915],[115,317,72,-0.020107434211687186],[115,317,73,-0.006166145459420342],[115,317,74,0.002894409632985747],[115,317,75,0.006086431921560159],[115,317,76,0.0023811290633250566],[115,317,77,-0.013690588509759795],[115,317,78,-0.029795524928774884],[115,317,79,-0.02761421888383763],[115,318,64,-0.015301996859450544],[115,318,65,-0.02447527246171985],[115,318,66,-0.01596128966119498],[115,318,67,-0.016230451159902244],[115,318,68,-0.018108681640619056],[115,318,69,-0.018030627007200935],[115,318,70,-0.027628378222728706],[115,318,71,-0.030416967647455852],[115,318,72,-0.020237031465189705],[115,318,73,-0.006203837560623424],[115,318,74,0.002882226720306377],[115,318,75,0.006153927176714237],[115,318,76,0.002401371116329971],[115,318,77,-0.013934222484185185],[115,318,78,-0.030246734904484915],[115,318,79,-0.027987418089029874],[115,319,64,-0.0152329910791864],[115,319,65,-0.024589632135322125],[115,319,66,-0.016125593816211543],[115,319,67,-0.01645024319161842],[115,319,68,-0.018304365937685266],[115,319,69,-0.01823105350279441],[115,319,70,-0.027956551195777734],[115,319,71,-0.03069988613291728],[115,319,72,-0.020377844254803327],[115,319,73,-0.006244877744639289],[115,319,74,0.0028705957911492725],[115,319,75,0.006223648018752845],[115,319,76,0.002419608695563427],[115,319,77,-0.014192504816269144],[115,319,78,-0.03072334528701041],[115,319,79,-0.02838308144292221],[116,-64,64,-0.03184444349963969],[116,-64,65,-0.012399925694474493],[116,-64,66,-0.07865197831737418],[116,-64,67,-0.08900011493395106],[116,-64,68,-0.053590504386881004],[116,-64,69,-0.023866868344088493],[116,-64,70,-0.07039569207127823],[116,-64,71,-0.040967778069872444],[116,-64,72,-0.10688301169679208],[116,-64,73,-0.27972480394961896],[116,-64,74,-0.3134203186036219],[116,-64,75,-0.24458311207368671],[116,-64,76,-0.19365264742466762],[116,-64,77,-0.15867196501345807],[116,-64,78,-0.13200402306613518],[116,-64,79,-0.1900211278799958],[116,-63,64,-0.03061050762889212],[116,-63,65,-0.011592689258472294],[116,-63,66,-0.07675930022200653],[116,-63,67,-0.08723183831084895],[116,-63,68,-0.05252444600251309],[116,-63,69,-0.02325756168480045],[116,-63,70,-0.06910865060991679],[116,-63,71,-0.039857498903970286],[116,-63,72,-0.10328787472890948],[116,-63,73,-0.2727049022920937],[116,-63,74,-0.3063189796101642],[116,-63,75,-0.23897890949951095],[116,-63,76,-0.18958193177309726],[116,-63,77,-0.15610629042215995],[116,-63,78,-0.13007604268705042],[116,-63,79,-0.18695679331460102],[116,-62,64,-0.029440290631803555],[116,-62,65,-0.010823642265732188],[116,-62,66,-0.07490147061203492],[116,-62,67,-0.0854925733223856],[116,-62,68,-0.05149598244662558],[116,-62,69,-0.022686260904179686],[116,-62,70,-0.06785322254312869],[116,-62,71,-0.038785330877542615],[116,-62,72,-0.09980330873043952],[116,-62,73,-0.2658487876581936],[116,-62,74,-0.29937265696114534],[116,-62,75,-0.2335163902047509],[116,-62,76,-0.18563972432201747],[116,-62,77,-0.1536252340453348],[116,-62,78,-0.12821142785069137],[116,-62,79,-0.18395905099781157],[116,-61,64,-0.028331512352001723],[116,-61,65,-0.010091599163475708],[116,-61,66,-0.07307781573655],[116,-61,67,-0.08378166842297692],[116,-61,68,-0.05050376340887277],[116,-61,69,-0.022151369514065322],[116,-61,70,-0.06662834569432993],[116,-61,71,-0.03774997954910416],[116,-61,72,-0.09642628558747772],[116,-61,73,-0.25915260726593364],[116,-61,74,-0.29257777557013054],[116,-61,75,-0.22819172935714482],[116,-61,76,-0.18182160500980613],[116,-61,77,-0.15122535207702179],[116,-61,78,-0.1264074665861125],[116,-61,79,-0.18102577353318075],[116,-60,64,-0.02728200755767111],[116,-60,65,-0.009395471890160182],[116,-60,66,-0.07128773226186827],[116,-60,67,-0.0820985363423144],[116,-60,68,-0.04954651113494706],[116,-60,69,-0.021651379973703335],[116,-60,70,-0.06543302965750514],[116,-60,71,-0.03675023975938387],[116,-60,72,-0.09315386551914927],[116,-60,73,-0.2526125389000209],[116,-60,74,-0.28593075158545456],[116,-60,75,-0.2230011024406574],[116,-60,76,-0.17812317323961724],[116,-60,77,-0.14890321090305167],[116,-60,78,-0.12466145244336847],[116,-60,79,-0.17815479984371496],[116,-59,64,-0.026289643835042176],[116,-59,65,-0.00873418989773279],[116,-59,66,-0.0695306084435451],[116,-59,67,-0.08044257574066752],[116,-59,68,-0.04862294380051508],[116,-59,69,-0.021184795507632945],[116,-59,70,-0.0642662778160158],[116,-59,71,-0.035784926437162544],[116,-59,72,-0.08998314571179099],[116,-59,73,-0.24622475641205543],[116,-59,74,-0.2794279762534229],[116,-59,75,-0.2179406884758342],[116,-59,76,-0.17454006094644947],[116,-59,77,-0.14665539884983672],[116,-59,78,-0.12297069250594361],[116,-59,79,-0.17534394333590916],[116,-58,64,-0.025352322582557242],[116,-58,65,-0.00810670095266889],[116,-58,66,-0.06780582541587488],[116,-58,67,-0.07881317235936079],[116,-58,68,-0.04773177694851125],[116,-58,69,-0.020750131377546048],[116,-58,70,-0.06312708836934791],[116,-58,71,-0.03485287494037445],[116,-58,72,-0.086911262711145],[116,-58,73,-0.23998543406997655],[116,-58,74,-0.2730658198339156],[116,-58,75,-0.21300667262495115],[116,-58,76,-0.1710679337496883],[116,-58,77,-0.14447852600688846],[116,-58,78,-0.12133250688485049],[116,-58,79,-0.17259099249297438],[116,-57,64,-0.024467979812722293],[116,-57,65,-0.0075119718533659015],[116,-57,66,-0.0661127585215619],[116,-57,67,-0.07720970020227268],[116,-57,68,-0.04687172478407587],[116,-57,69,-0.02034591595298639],[116,-57,70,-0.06201445528689673],[116,-57,71,-0.033952941330574866],[116,-57,72,-0.08393539466009034],[116,-57,73,-0.2338907508346042],[116,-57,74,-0.26684063548569353],[116,-57,75,-0.20819524866892847],[116,-57,76,-0.16770249181457042],[116,-57,77,-0.1423692237940258],[116,-57,78,-0.11974422801772105],[116,-57,79,-0.16989371140299836],[116,-56,64,-0.023634586730254762],[116,-56,65,-0.00694898902676575],[116,-56,66,-0.06445077864278641],[116,-56,67,-0.07563152271343067],[116,-56,68,-0.04604150130118117],[116,-56,69,-0.01997069155766942],[116,-56,70,-0.06092736916068381],[116,-56,71,-0.03308400255229736],[116,-56,72,-0.08105276335871542],[116,-56,73,-0.22793689454412838],[116,-56,74,-0.2607487631109161],[116,-56,75,-0.2035026213615165],[116,-56,76,-0.16443947044959537],[116,-56,77,-0.14032414430446669],[116,-56,78,-0.11820319979853705],[116,-56,79,-0.16724984023827486],[116,-55,64,-0.022850150095241613],[116,-55,65,-0.00641675900570119],[116,-55,66,-0.06281925353292292],[116,-55,67,-0.07407799395356296],[116,-55,68,-0.04523982125260381],[116,-55,69,-0.019623015106453503],[116,-55,70,-0.059864817966677156],[116,-55,71,-0.032244956521964414],[116,-55,72,-0.07826063614972201],[116,-55,73,-0.2221200660071151],[116,-55,74,-0.25478653315942207],[116,-55,75,-0.19892500866757012],[116,-55,76,-0.16127464046289886],[116,-55,77,-0.13833995945065974],[116,-55,78,-0.11670677656075691],[116,-55,79,-0.16465709569973822],[116,-54,64,-0.02211271238028704],[116,-54,65,-0.005914308788464711],[116,-54,66,-0.061217549147999005],[116,-54,67,-0.07254845977833406],[116,-54,68,-0.04446540097515798],[116,-54,69,-0.019301458548180748],[116,-54,70,-0.05882578774440947],[116,-54,71,-0.031434722130905354],[116,-54,72,-0.07555632763249816],[116,-54,73,-0.21643648300561236],[116,-54,74,-0.24895027039464446],[116,-54,75,-0.19445864389355016],[116,-54,76,-0.15820380830190817],[116,-54,77,-0.13641335994073023],[116,-54,78,-0.1152523219374994],[116,-54,79,-0.16211317144160778],[116,-53,64,-0.0214203707319967],[116,-53,65,-0.005440691003383994],[116,-53,66,-0.05964508597138249],[116,-53,67,-0.07104232578094054],[116,-53,68,-0.04371700094353982],[116,-53,69,-0.019004627668975687],[116,-53,70,-0.057809320641767796],[116,-53,71,-0.03065227017937884],[116,-53,72,-0.07293727633804234],[116,-53,73,-0.21088260531009026],[116,-53,74,-0.24323655714665068],[116,-53,75,-0.1900999840845713],[116,-53,76,-0.15522298740785706],[116,-53,77,-0.13454120520935847],[116,-53,78,-0.11383733761406305],[116,-53,79,-0.15961592377944497],[116,-52,64,-0.02077140043923732],[116,-52,65,-0.004995013047990825],[116,-52,66,-0.05810170099235981],[116,-52,67,-0.06955950011038521],[116,-52,68,-0.0429937053223492],[116,-52,69,-0.018731286182636007],[116,-52,70,-0.056814897567827496],[116,-52,71,-0.029896826738710344],[116,-52,72,-0.07040152998908376],[116,-52,73,-0.20545658582030873],[116,-52,74,-0.23764394380229295],[116,-52,75,-0.18584707032503217],[116,-52,76,-0.152329533536708],[116,-52,77,-0.13272153203093934],[116,-52,78,-0.11246033284057148],[116,-52,79,-0.1571646059424568],[116,-51,64,-0.020164169682414013],[116,-51,65,-0.004576407616726199],[116,-51,66,-0.05658740699946671],[116,-51,67,-0.0681001107576081],[116,-51,68,-0.042294750440543365],[116,-51,69,-0.0184802812311261],[116,-51,70,-0.0558422004311749],[116,-51,71,-0.029167737421003363],[116,-51,72,-0.06794739466368613],[116,-51,73,-0.20015729597925133],[116,-51,74,-0.23217182447545506],[116,-51,75,-0.18169863637910813],[116,-51,76,-0.1495214222178165],[116,-51,77,-0.13095293943959793],[116,-51,78,-0.11112030014239611],[116,-51,79,-0.15475910282647673],[116,-50,64,-0.019597072725430233],[116,-50,65,-0.004184014343322248],[116,-50,66,-0.055102195584839406],[116,-50,67,-0.0666642684582196],[116,-50,68,-0.04161937878082138],[116,-50,69,-0.018250480104505144],[116,-50,70,-0.054890910027646095],[116,-50,71,-0.02846435689323772],[116,-50,72,-0.0655731628427961],[116,-50,73,-0.19498353442494185],[116,-50,74,-0.2268195118660605],[116,-50,75,-0.17765337445334803],[116,-50,76,-0.1467966436461663],[116,-50,77,-0.12923405952271935],[116,-50,78,-0.10981626090773573],[116,-50,79,-0.15239927841727494],[116,-49,64,-0.01906853164202376],[116,-49,65,-0.003816981080345771],[116,-49,66,-0.05364603659420147],[116,-49,67,-0.06525206572313721],[116,-49,68,-0.04096683980310781],[116,-49,69,-0.018040771734240704],[116,-49,70,-0.053960705794164225],[116,-49,71,-0.027786049151058152],[116,-49,72,-0.06327711536923322],[116,-49,73,-0.18993402729761186],[116,-49,74,-0.22158623648073122],[116,-49,75,-0.1737099353407439],[116,-49,76,-0.14415320311817606],[116,-49,77,-0.12756355652147622],[116,-49,78,-0.10854726427222687],[116,-49,79,-0.1500849738416747],[116,-48,64,-0.01857699825387449],[116,-48,65,-0.0034744652081784254],[116,-48,66,-0.0522188786733225],[116,-48,67,-0.06386357717249366],[116,-48,68,-0.040336391441508045],[116,-48,69,-0.017850068355401878],[116,-48,70,-0.053051266596821675],[116,-48,71,-0.027132188327434456],[116,-48,72,-0.06105752475645454],[116,-48,73,-0.18500743281406795],[116,-48,74,-0.2164711508933113],[116,-48,75,-0.16986693246064835],[116,-48,76,-0.1415891244955489],[116,-48,77,-0.12594012857476336],[116,-48,78,-0.10731238829013184],[116,-48,79,-0.14781600891749674],[116,-47,64,-0.018120955911371275],[116,-47,65,-0.0031556348718809577],[116,-47,66,-0.050820649842146376],[116,-47,67,-0.062498859883761554],[116,-47,68,-0.03972730147224432],[116,-47,69,-0.017677306986494442],[116,-47,70,-0.052162271450555686],[116,-47,71,-0.026502159436778586],[116,-47,72,-0.05891265837108851],[116,-47,73,-0.18020234580343436],[116,-47,74,-0.21147333400528812],[116,-47,75,-0.1661229457913487],[116,-47,76,-0.13910245339396235],[116,-47,77,-0.12436250921523816],[116,-47,78,-0.10611074090809558],[116,-47,79,-0.14559218363749896],[116,-46,64,-0.01769892111917096],[116,-46,65,-0.002859670145816579],[116,-46,66,-0.0494512580950393],[116,-46,67,-0.06115795375431095],[116,-46,68,-0.03913884875572888],[116,-46,69,-0.017521450732227224],[116,-46,70,-0.0512934001737336],[116,-46,71,-0.025895359057114795],[116,-46,72,-0.05684078148694929],[116,-46,73,-0.17551730219506634],[116,-46,74,-0.2065917952960709],[116,-46,75,-0.16247652569043033],[116,-46,76,-0.1366912601029143],[116,-46,77,-0.12282946862853243],[116,-46,78,-0.10494146075107784],[116,-46,79,-0.14341327958843822],[116,-45,64,-0.01730944500899155],[116,-45,65,-0.0025857641260329375],[116,-45,66,-0.04811059202543618],[116,-45,67,-0.05984088187839709],[116,-45,68,-0.038570324356054675],[116,-45,69,-0.01738148991467307],[116,-45,70,-0.050444333980826296],[116,-45,71,-0.025311195952826437],[116,-45,72,-0.05484016020861839],[116,-45,73,-0.17095078344983314],[116,-45,74,-0.20182547905344522],[116,-45,75,-0.1589261965985589],[116,-45,76,-0.13435364224354368],[116,-45,77,-0.12133981468685555],[116,-45,78,-0.10380371773013948],[116,-45,79,-0.14127906130643486],[116,-44,64,-0.016951114662685444],[116,-44,65,-0.002333123950846864],[116,-44,66,-0.046798521473283346],[116,-44,67,-0.058547650938613645],[116,-44,68,-0.03802103254148095],[116,-44,69,-0.017256443038614396],[116,-44,70,-0.04961475601645928],[116,-44,71,-0.02474909164075657],[116,-44,72,-0.05290906426339],[116,-44,73,-0.16650122092675884],[116,-44,74,-0.19717326857526465],[116,-44,75,-0.15547046062312128],[116,-44,76,-0.13208772717193337],[116,-44,77,-0.11989239376853435],[116,-44,78,-0.1026967134820004],[116,-44,79,-0.1391892775700769],[116,-43,64,-0.016622554289068583],[116,-43,65,-0.002100971750350512],[116,-43,66,-0.04551489819369288],[116,-43,67,-0.05727825161181914],[116,-43,68,-0.037490291669761526],[116,-43,69,-0.017145357597160713],[116,-43,70,-0.04880435183413306],[116,-43,71,-0.024208480902476615],[116,-43,72,-0.051045769660851656],[116,-43,73,-0.162167000177538],[116,-43,74,-0.19263399033392112],[116,-43,75,-0.15210780099874813],[116,-43,76,-0.12989167413590466],[116,-43,77,-0.11848609137519032],[116,-43,78,-0.1016196816503821],[116,-43,79,-0.13714366263284603],[116,-42,64,-0.016322426258171454],[116,-42,65,-0.001888545525629013],[116,-42,66,-0.04425955654502462],[116,-42,67,-0.056032658989265786],[116,-42,68,-0.036977434962105496],[116,-42,69,-0.01704731072368529],[116,-42,70,-0.04801280982268281],[116,-42,71,-0.02368881224545135],[116,-42,72,-0.049248561219724596],[116,-42,73,-0.1579464651619127],[116,-42,74,-0.18820641809557623],[116,-42,75,-0.1488366854222001],[116,-42,76,-0.12776367619358486],[116,-42,77,-0.11711983255816799],[116,-42,78,-0.1005718880190065],[116,-42,79,-0.13514193739639255],[116,-41,64,-0.01604943199710469],[116,-41,65,-0.001695099958886756],[116,-41,66,-0.04303231419478674],[116,-41,67,-0.05481083301076272],[116,-41,68,-0.036481811169876865],[116,-41,69,-0.01696140969644654],[116,-41,70,-0.04723982158365899],[116,-41,71,-0.023189548316013015],[116,-41,72,-0.04751573496220407],[116,-41,73,-0.15383792237763003],[116,-41,74,-0.18388927698683238],[116,-41,75,-0.14565556925982148],[116,-41,76,-0.12570196190253982],[116,-41,77,-0.11579258216598123],[116,-41,78,-0.0995526305062281],[116,-41,79,-0.13318381052641473],[116,-40,64,-0.015802312752036963],[116,-40,65,-0.0015199071558963829],[116,-40,66,-0.041832972841744906],[116,-40,67,-0.05361271891263407],[116,-40,68,-0.03600278513825269],[116,-40,69,-0.016886792302367958],[116,-40,70,-0.04648508226273299],[116,-40,71,-0.022710166267059323],[116,-40,72,-0.04584560037644072],[116,-40,73,-0.14983964489923327],[116,-40,74,-0.17968124750203113],[116,-40,75,-0.14256289862627158],[116,-40,76,-0.12370479678854686],[116,-40,77,-0.11450334492449506],[116,-40,78,-0.09856123903119512],[116,-40,79,-0.1312689795129538],[116,-39,64,-0.01557985022089533],[116,-39,65,-0.001362257322218467],[116,-39,66,-0.0406613189524744],[116,-39,67,-0.05243824768899443],[116,-39,68,-0.03553973827096929],[116,-39,69,-0.01682262706635352],[116,-39,70,-0.045748290838012226],[116,-39,71,-0.022250158083282554],[116,-39,72,-0.04423648254812665],[116,-39,73,-0.14594987632043468],[116,-39,74,-0.17558096944483656],[116,-39,75,-0.13955711333366577],[116,-39,76,-0.12177048460319181],[116,-39,77,-0.11325116536130693],[116,-39,78,-0.09759707526115627],[116,-39,79,-0.12939713167682618],[116,-38,64,-0.015380867061817429],[116,-38,65,-0.0012214593749999446],[116,-38,66,-0.039517124510773154],[116,-38,67,-0.051287336565974465],[116,-38,68,-0.03509206890052913],[116,-38,69,-0.01676811335272942],[116,-38,70,-0.04502915036821111],[116,-38,71,-0.0218090308668588],[116,-38,72,-0.042686724162635234],[116,-38,73,-0.14216683459546023],[116,-38,74,-0.17158704579839137],[116,-38,75,-0.13663664971084644],[116,-38,76,-0.11989736837978128],[116,-38,77,-0.11203512758578334],[116,-38,78,-0.09665953224950777],[116,-38,79,-0.12756794512407865],[116,-37,64,-0.015204227282592908],[116,-37,65,-0.0010968414923189247],[116,-37,66,-0.03840014777836381],[116,-37,67,-0.05015988948845352],[116,-37,68,-0.03465919256826209],[116,-37,69,-0.016722481345400702],[116,-37,70,-0.04432736820352755],[116,-37,71,-0.021386307086523542],[116,-37,72,-0.04119468737955175],[116,-37,73,-0.13848871577533908],[116,-37,74,-0.16769804651889672],[116,-37,75,-0.1337999432929814],[116,-37,76,-0.11808383129717574],[116,-37,77,-0.11085435493598589],[116,-37,78,-0.09574803397394097],[116,-37,79,-0.12578108965034743],[116,-36,64,-0.015048836516349813],[116,-36,65,-9.877516020406138E-4],[116,-36,66,-0.03731013406518053],[116,-36,67,-0.049055797618645806],[116,-36,68,-0.03424054221849914],[116,-36,69,-0.016684991913139043],[116,-36,70,-0.043642656161827546],[116,-36,71,-0.020981524792800327],[116,-36,72,-0.03975875558163051],[116,-36,73,-0.1349136976355112],[116,-36,74,-0.16391251224785827],[116,-36,75,-0.1310454313819799],[116,-36,76,-0.11632829736107919],[116,-36,77,-0.10970800950333362],[116,-36,78,-0.09486203478367555],[116,-36,79,-0.12403622759686876],[116,-35,64,-0.014913642189107278],[116,-35,65,-8.935578124932909E-4],[116,-35,66,-0.0362468165077727],[116,-35,67,-0.04797493984604396],[116,-35,68,-0.03383556831132493],[116,-35,69,-0.016654936366577888],[116,-35,70,-0.04297473067281988],[116,-35,71,-0.020594237802285142],[116,-35,72,-0.038377335000683084],[116,-35,73,-0.13143994319180277],[116,-35,74,-0.1602289579389224],[116,-35,75,-0.12837155547878623],[116,-35,76,-0.11462923191251437],[116,-35,77,-0.10859529154575168],[116,-35,78,-0.09400101876466277],[116,-35,79,-0.12233301466004501],[116,-34,64,-0.014797633584770658],[116,-34,65,-8.136487872358951E-4],[116,-34,66,-0.035209916854230305],[116,-34,67,-0.04691718330800627],[116,-34,68,-0.033443738858176246],[116,-34,69,-0.016631636113249092],[116,-34,70,-0.04232331289264533],[116,-34,71,-0.020224015853733963],[116,-34,72,-0.037048856223089385],[116,-34,73,-0.12806560410223633],[116,-34,74,-0.15664587639562522],[116,-34,75,-0.1257767635888628],[116,-34,76,-0.11298514197302775],[116,-34,77,-0.10751543879955919],[116,-34,78,-0.09316449903117406],[116,-34,79,-0.12067110065628396],[116,-33,64,-0.014699841813404734],[116,-33,65,-7.474340664569423E-4],[116,-33,66,-0.03419914625423683],[116,-33,67,-0.04588238392040185],[116,-33,68,-0.033064539384685024],[116,-33,69,-0.016614442217062108],[116,-33,70,-0.04168812879133158],[116,-33,71,-0.019870444738774765],[116,-33,72,-0.03577177557798755],[116,-33,73,-0.12478882395273108],[116,-33,74,-0.1531617417169863],[116,-33,75,-0.12325951240263797],[116,-33,76,-0.11139457643623293],[116,-33,77,-0.10646772570014998],[116,-33,78,-0.09235201695200669],[116,-33,79,-0.11905013024392928],[116,-32,64,-0.014619339688489516],[116,-32,65,-6.943443374463259E-4],[116,-32,66,-0.033214206052708625],[116,-32,67,-0.04487038691749607],[116,-32,68,-0.0326974728249125],[116,-32,69,-0.016602734868321124],[116,-32,70,-0.041068909215271135],[116,-32,71,-0.01953312640985996],[116,-32,72,-0.034544576411294825],[116,-32,73,-0.12160774142508922],[116,-32,74,-0.14977501264821294],[116,-32,75,-0.12081826935286312],[116,-32,76,-0.10985612611501179],[116,-32,77,-0.10545146252096126],[116,-32,78,-0.09156314131901291],[116,-32,79,-0.11746974360387905],[116,-31,64,-0.0145552415190651],[116,-31,65,-6.538316568189404E-4],[116,-31,66,-0.03225478858568804],[116,-31,67,-0.04388102740038677],[116,-31,68,-0.032342059351197036],[116,-31,69,-0.01659592277038023],[116,-31,70,-0.040465389926905404],[116,-31,71,-0.01921167906816066],[116,-31,72,-0.033365770249067],[116,-31,73,-0.1185204933462706],[116,-31,74,-0.14648413583440462],[116,-31,75,-0.1184515145512468],[116,-31,76,-0.10836842365366661],[116,-31,77,-0.10446599443993698],[116,-31,78,-0.09079746746540535],[116,-31,79,-0.11592957708055285],[116,-30,64,-0.014506702822686216],[116,-30,65,-6.253696272364307E-4],[116,-30,66,-0.03132057797720904],[116,-30,67,-0.04291413089327514],[116,-30,68,-0.03199783614375117],[116,-30,69,-0.016593442448875183],[116,-30,70,-0.03987731162366174],[116,-30,71,-0.018905737234029305],[116,-30,72,-0.032233897853867155],[116,-30,73,-0.11552521761835913],[116,-30,74,-0.14328754897556106],[116,-30,75,-0.11615774260697694],[116,-30,76,-0.10693014331410342],[116,-30,77,-0.1035107005422642],[116,-30,78,-0.09005461634090156],[116,-30,79,-0.11442926378478235],[116,-29,64,-0.014472919964948676],[116,-29,65,-6.08453531279369E-4],[116,-29,66,-0.030411250935774244],[116,-29,67,-0.041969513906697495],[116,-29,68,-0.03166435710389733],[116,-29,69,-0.016594757489156325],[116,-29,70,-0.03930441993794999],[116,-29,71,-0.018614951802487973],[116,-29,72,-0.031147530177903032],[116,-29,73,-0.11262005602899108],[116,-29,74,-0.14018368388157543],[116,-29,75,-0.11393546432989031],[116,-29,76,-0.10554000064479933],[116,-29,77,-0.10258499276758558],[116,-29,78,-0.0893342335502439],[116,-29,79,-0.11296843416001807],[116,-28,64,-0.014453129731480005],[116,-28,65,-6.026004253231788E-4],[116,-28,66,-0.029526477549295552],[116,-28,67,-0.04104698450698141],[116,-28,68,-0.031341192514863295],[116,-28,69,-0.016599357707491342],[116,-28,70,-0.03874646542002344],[116,-28,71,-0.018338990086251974],[116,-28,72,-0.03010526921693052],[116,-28,73,-0.10980315694248946],[116,-28,74,-0.137170969426397],[116,-28,75,-0.11178320832135195],[116,-28,76,-0.10419675204114273],[116,-28,77,-0.10168831480954565],[116,-28,78,-0.08863598836133475],[116,-28,79,-0.1115467165132599],[116,-27,64,-0.014446608838215495],[116,-27,65,-6.0734919627907E-4],[116,-27,66,-0.028665922077404257],[116,-27,67,-0.04014634289117065],[116,-27,68,-0.031027928653919585],[116,-27,69,-0.01660675826138654],[116,-27,70,-0.038203203505384996],[116,-27,71,-0.018077535848726733],[116,-27,72,-0.02910574876906283],[116,-27,73,-0.10707267787237067],[116,-27,74,-0.13424783440098403],[116,-27,75,-0.10969952245610835],[116,-27,76,-0.10289919420546385],[116,-27,77,-0.10082014097504773],[116,-27,78,-0.08795957268879533],[116,-27,79,-0.11016373751202667],[116,-26,64,-0.014452673385588357],[116,-26,65,-6.222605839649987E-4],[116,-26,66,-0.027829243739988803],[116,-26,67,-0.039267381966541434],[116,-26,68,-0.030724167359374766],[116,-26,69,-0.01661649870402656],[116,-26,70,-0.03767439446817643],[116,-26,71,-0.01783028932924339],[116,-26,72,-0.028147635102621273],[116,-26,73,-0.10442678793613944],[116,-26,74,-0.13141271026494888],[116,-26,75,-0.107682975258426],[116,-26,76,-0.10164616351463455],[116,-26,77,-0.09997997500999353],[116,-26,78,-0.08730470005821535],[116,-26,79,-0.1088191226484726],[116,-25,64,-0.014470678262307387],[116,-25,65,-6.469171720087486E-4],[116,-25,66,-0.027016097501024072],[116,-25,67,-0.03840988793397454],[116,-25,68,-0.030429525555939786],[116,-25,69,-0.01662814198773222],[116,-25,70,-0.037159803361989],[116,-25,71,-0.017596967262831487],[116,-25,72,-0.027229627537347503],[116,-25,73,-0.1018636701937342],[116,-25,74,-0.12866403379726984],[116,-25,75,-0.10573215717607223],[116,-25,76,-0.10043653530291456],[116,-25,77,-0.09916734889791931],[116,-25,78,-0.08667110455605691],[116,-25,79,-0.10751249667177351],[116,-24,64,-0.014500016504278804],[116,-24,65,-6.809233501768567E-4],[116,-24,66,-0.02622613484682532],[116,-24,67,-0.037573640874440685],[116,-24,68,-0.030143634741786392],[116,-24,69,-0.0166412734210649],[116,-24,70,-0.0366591999494073],[116,-24,71,-0.017377302896768226],[116,-24,72,-0.026350458943388274],[116,-24,73,-0.09938152387134036],[116,-24,74,-0.1260002496468269],[116,-24,75,-0.10384568175581739],[116,-24,76,-0.09926922306734384],[116,-24,77,-0.09838182163740779],[116,-24,78,-0.08605853976970496],[116,-24,79,-0.10624348398977693],[116,-23,64,-0.014540118613992827],[116,-23,65,-7.239052508967144E-4],[116,-23,66,-0.02545900455782916],[116,-23,67,-0.03675841533777299],[116,-23,68,-0.029866140440368703],[116,-23,69,-0.016655499583853227],[116,-23,70,-0.03617235862137198],[116,-23,71,-0.01717104600595486],[116,-23,72,-0.025508896162383606],[116,-23,73,-0.09697856647246803],[116,-23,74,-0.12341981278373672],[116,-23,75,-0.10202218672412398],[116,-23,76,-0.09814317760253731],[116,-23,77,-0.09762297800359895],[116,-23,78,-0.08546677772166746],[116,-23,79,-0.10501170904073169],[116,-22,64,-0.01459045184568357],[116,-22,65,-7.755106628447567E-4],[116,-22,66,-0.024714353473207596],[116,-22,67,-0.035963980933034406],[116,-22,68,-0.029596701620010837],[116,-22,69,-0.016670447204258945],[116,-22,70,-0.03569905830744492],[116,-22,71,-0.016977962909221656],[116,-22,72,-0.024703740355147795],[116,-22,73,-0.09465303577860307],[116,-22,74,-0.12092119085290584],[116,-22,75,-0.10026033497687292],[116,-22,76,-0.0970573860714466],[116,-22,77,-0.09689042729870752],[116,-22,78,-0.08489560780157344],[116,-22,79,-0.10381679663588542],[116,-21,64,-0.014650519461416451],[116,-21,65,-8.354089244371019E-4],[116,-21,66,-0.023991827247699233],[116,-21,67,-0.03519010291980885],[116,-21,68,-0.029334990084083416],[116,-21,69,-0.016685762001724138],[116,-21,70,-0.03523908237794177],[116,-21,71,-0.0167978364885859],[116,-21,72,-0.02393382728044501],[116,-21,73,-0.0924031917420062],[116,-21,74,-0.11850286643152218],[116,-21,75,-0.09855881548202804],[116,-21,76,-0.09601087101826576],[116,-21,77,-0.09618380209596784],[116,-21,78,-0.08434483569920152],[116,-21,79,-0.10265837227363012],[116,-20,64,-0.01471985996299055],[116,-20,65,-9.032907999212775E-4],[116,-20,66,-0.023291071100025134],[116,-20,67,-0.03443654279967816],[116,-20,68,-0.029080689834312532],[116,-20,69,-0.01670110749926343],[116,-20,70,-0.034792218538684576],[116,-20,71,-0.01663046621331906],[116,-20,72,-0.023198027509249007],[116,-20,73,-0.09022731827337181],[116,-20,74,-0.11616333919238636],[116,-20,75,-0.09691634409908031],[116,-20,76,-0.09500268932917191],[116,-20,77,-0.09550275698086724],[116,-20,78,-0.08381428234127827],[116,-20,79,-0.10153606242568712],[116,-19,64,-0.014798046304483666],[116,-19,65,-9.78868340833888E-4],[116,-19,66,-0.022611730552455505],[116,-19,67,-0.033703058907284277],[116,-19,68,-0.028833496409675727],[116,-19,69,-0.016716163808384834],[116,-19,70,-0.03435825871912825],[116,-19,71,-0.016475668170723445],[116,-19,72,-0.022495246578994887],[116,-19,73,-0.08812372492742195],[116,-19,74,-0.11390112797538088],[116,-19,75,-0.09533166431924331],[116,-19,76,-0.09403193114628369],[116,-19,77,-0.09484696729313255],[116,-19,78,-0.08330378283445658],[116,-19,79,-0.10044949479579651],[116,-18,64,-0.014884685090098047],[116,-18,65,-0.0010618747355481946],[116,-18,66,-0.021953452161183266],[116,-18,67,-0.03298940700042333],[116,-18,68,-0.028593116203162922],[116,-18,69,-0.01673062638964313],[116,-18,70,-0.033936998954505686],[116,-18,71,-0.016333275105446743],[116,-18,72,-0.02182442509227436],[116,-18,73,-0.08609074848968622],[116,-18,74,-0.1117147727696001],[116,-18,75,-0.09380354793036277],[116,-18,76,-0.09309771873981297],[116,-18,77,-0.09421612787248897],[116,-18,78,-0.08281318541650755],[116,-18,79,-0.09939829855127749],[116,-17,64,-0.014979415761665305],[116,-17,65,-0.001152064149471806],[116,-17,66,-0.021315884237145397],[116,-17,67,-0.032295340848554246],[116,-17,68,-0.02835926575837958],[116,-17,69,-0.016744204791437862],[116,-17,70,-0.033528239262440813],[116,-17,71,-0.016203136469009772],[116,-17,72,-0.02118453876431423],[116,-17,73,-0.08412675446784366],[116,-17,74,-0.1096028366088261],[116,-17,75,-0.09233079561041387],[116,-17,76,-0.09219920534289601],[116,-17,77,-0.09360995181066258],[116,-17,78,-0.08234235041728068],[116,-17,79,-0.09838210452763411],[116,-16,64,-0.015081909780094488],[116,-16,65,-0.001249211558509509],[116,-16,66,-0.020698677557132502],[116,-16,67,-0.03162061281925875],[116,-16,68,-0.028131671047884194],[116,-16,69,-0.016756621369486528],[116,-16,70,-0.03313178351448352],[116,-16,71,-0.01608511848126592],[116,-16,72,-0.020574598423625072],[116,-16,73,-0.08223013849127336],[116,-16,74,-0.10756390738335239],[116,-16,75,-0.09091223745353139],[116,-16,76,-0.09133557395327367],[116,-16,77,-0.09302816921175429],[116,-16,78,-0.08189114923071027],[116,-16,79,-0.09740054540636396],[116,-15,64,-0.01519186980485366],[116,-15,65,-0.0013531125783473584],[116,-15,66,-0.02010148606511845],[116,-15,67,-0.030964974462245245],[116,-15,68,-0.027910066734967744],[116,-15,69,-0.016767609989119567],[116,-15,70,-0.03274743930292471],[116,-15,71,-0.015979104205444364],[116,-15,72,-0.01999364997013375],[116,-15,73,-0.08039932762259876],[116,-15,74,-0.10559659957134347],[116,-15,75,-0.0895467334324762],[116,-15,76,-0.0905060361055947],[116,-15,77,-0.09247052596270225],[116,-15,78,-0.08145946329879968],[116,-15,79,-0.09645325586603935],[116,-14,64,-0.015309028875263959],[116,-14,65,-0.0014635832919379767],[116,-14,66,-0.019523967563727023],[116,-14,67,-0.03032817709043021],[116,-14,68,-0.027694195420272683],[116,-14,69,-0.016776914712146842],[116,-14,70,-0.03237501780306469],[116,-14,71,-0.015884993638294376],[116,-14,72,-0.019440774294975333],[116,-14,73,-0.07863278158509619],[116,-14,74,-0.10369955589304428],[116,-14,75,-0.08823317380132527],[116,-14,76,-0.08970983061763198],[116,-14,77,-0.09193678251504371],[116,-14,78,-0.08104718310808173],[116,-14,79,-0.09553987270654385],[116,-13,64,-0.01543316398980412],[116,-13,65,-0.0015804431045119427],[116,-13,66,-0.018965734134676036],[116,-13,67,-0.02970993709474157],[116,-13,68,-0.027483802681544156],[116,-13,69,-0.01678428183719218],[116,-13,70,-0.03201428675238677],[116,-13,71,-0.015802652175322437],[116,-13,72,-0.01891507595270261],[116,-13,73,-0.07692898327999284],[116,-13,74,-0.10187143158375159],[116,-13,75,-0.08697051246196812],[116,-13,76,-0.08894629398961759],[116,-13,77,-0.09142675354379354],[116,-13,78,-0.0806542138807134],[116,-13,79,-0.09466002926936096],[116,-12,64,-0.015564184259897574],[116,-12,65,-0.0017034013996149058],[116,-12,66,-0.018426028010688537],[116,-12,67,-0.02910970962177173],[116,-12,68,-0.027278617283371213],[116,-12,69,-0.016789426737419216],[116,-12,70,-0.031664671389944866],[116,-12,71,-0.015731572982218705],[116,-12,72,-0.018415608798711215],[116,-12,73,-0.07528636609528447],[116,-12,74,-0.10011077613319591],[116,-12,75,-0.08575797746362407],[116,-12,76,-0.08821532555965791],[116,-12,77,-0.09094057305097306],[116,-12,78,-0.08028052124556169],[116,-12,79,-0.09381332199597808],[116,-11,64,-0.01570205140183496],[116,-11,65,-0.0018321297712914344],[116,-11,66,-0.017903962112516658],[116,-11,67,-0.028526859813875732],[116,-11,68,-0.02707839032121187],[116,-11,69,-0.01679209144418388],[116,-11,70,-0.031325488075685914],[116,-11,71,-0.015671113665707337],[116,-11,72,-0.01794142493838919],[116,-11,73,-0.0737033530853172],[116,-11,74,-0.09841609772925604],[116,-11,75,-0.08459490578648661],[116,-11,76,-0.08751705225102951],[116,-11,77,-0.09047850375225604],[116,-11,78,-0.07992610703311152],[116,-11,79,-0.09299934545289515],[116,-10,64,-0.015846724975424217],[116,-10,65,-0.0019663227838885916],[116,-10,66,-0.017398704386561468],[116,-10,67,-0.02796079245205558],[116,-10,68,-0.026882912287869064],[116,-10,69,-0.016792071191440373],[116,-10,70,-0.030996117006885586],[116,-10,71,-0.015620683905946427],[116,-10,72,-0.017491614783646102],[116,-10,73,-0.07217839500050566],[116,-10,74,-0.09678592521111565],[116,-10,75,-0.08348062174981859],[116,-10,76,-0.08685156655535542],[116,-10,77,-0.09004078757825036],[116,-10,78,-0.07959098524506919],[116,-10,79,-0.09221771426123962],[116,-9,64,-0.01599816373474531],[116,-9,65,-0.0021056977172389094],[116,-9,66,-0.01690947502022447],[116,-9,67,-0.027410949711205963],[116,-9,68,-0.0266920095252459],[116,-9,69,-0.016789209442644434],[116,-9,70,-0.03067599792763879],[116,-9,71,-0.015579743351242067],[116,-9,72,-0.017065306427866966],[116,-9,73,-0.0707099718028518],[116,-9,74,-0.09521881041103686],[116,-9,75,-0.0824144402535157],[116,-9,76,-0.08621892931958162],[116,-9,77,-0.08962764695095433],[116,-9,78,-0.07927518077877958],[116,-9,79,-0.09146806191708659],[116,-8,64,-0.016156327127281076],[116,-8,65,-0.0022499939681333027],[116,-8,66,-0.01643554287185584],[116,-8,67,-0.02687680840549644],[116,-8,68,-0.026505540837258486],[116,-8,69,-0.016783393112134316],[116,-8,70,-0.030364625205249043],[116,-8,71,-0.015547798620603565],[116,-8,72,-0.01666166479779881],[116,-8,73,-0.06929659381755306],[116,-8,74,-0.09371332994652029],[116,-8,75,-0.0813956703968742],[116,-8,76,-0.08561917369631399],[116,-8,77,-0.08923928673778371],[116,-8,78,-0.07897872835298012],[116,-8,79,-0.09075003958578244],[116,-7,64,-0.01632117664761499],[116,-7,65,-0.002398972452265924],[116,-7,66,-0.015976222136322302],[116,-7,67,-0.026357877439019423],[116,-7,68,-0.02632339435216658],[116,-7,69,-0.01677454812141569],[116,-7,70,-0.030061543229387675],[116,-7,71,-0.01552440046291484],[116,-7,72,-0.016279890811086606],[116,-7,73,-0.06793680273838743],[116,-7,74,-0.0922680868154102],[116,-7,75,-0.08042361880576558],[116,-7,76,-0.08505230880585105],[116,-7,77,-0.08887589605607309],[116,-7,78,-0.07870167150072416],[116,-7,79,-0.09006331498667164],[116,-6,64,-0.016492677054565107],[116,-6,65,-0.002552415008373193],[116,-6,66,-0.015530869235079695],[116,-6,67,-0.025853695451070895],[116,-6,68,-0.026145484622411876],[116,-6,69,-0.016762635275263265],[116,-6,70,-0.02976634212002676],[116,-6,71,-0.01550914106782463],[116,-6,72,-0.015919220540931058],[116,-6,73,-0.06662917249508038],[116,-6,74,-0.09088171180479],[116,-6,75,-0.07949759268307273],[116,-6,76,-0.08451832312453665],[116,-6,77,-0.08853764993621037],[116,-6,78,-0.0784440616264152],[116,-6,79,-0.08940757136258348],[116,-5,64,-0.016670797460383368],[116,-5,65,-0.002710123806217448],[116,-5,66,-0.015098879919909504],[116,-5,67,-0.025363828645745413],[116,-5,68,-0.025971749950297083],[116,-5,69,-0.016747646442780383],[116,-5,70,-0.029478653730318796],[116,-5,71,-0.015501651523404289],[116,-5,72,-0.015578924389274551],[116,-5,73,-0.06537230999067552],[116,-5,74,-0.0895528647242123],[116,-5,75,-0.07861690259686928],[116,-5,76,-0.08401718761359858],[116,-5,77,-0.08822471085115066],[116,-5,78,-0.07820595712380043],[116,-5,79,-0.08878250652855994],[116,-4,64,-0.01685551230030017],[116,-4,65,-0.0028719207599028733],[116,-4,66,-0.014679686579692893],[116,-4,67,-0.024887868795770016],[116,-4,68,-0.02580214992801482],[116,-4,69,-0.016729601028739736],[116,-4,70,-0.02919814793074398],[116,-4,71,-0.015501599415532493],[116,-4,72,-0.015258306269811702],[116,-4,73,-0.06416485571670476],[116,-4,74,-0.08828023547345724],[116,-4,75,-0.07778086502036856],[116,-4,76,-0.08354885860208115],[116,-4,77,-0.08793723011957608],[116,-4,78,-0.07798742255162273],[116,-4,79,-0.08818783199437348],[116,-3,64,-0.017046802190515395],[116,-3,65,-0.003037646948023194],[116,-3,66,-0.01427275573999675],[116,-3,67,-0.024425431410934985],[116,-3,68,-0.025636663180916924],[116,-3,69,-0.016708542720920788],[116,-3,70,-0.028924529161175987],[116,-3,71,-0.015508686564032188],[116,-3,72,-0.014956702802120967],[116,-3,73,-0.06300548425380259],[116,-3,74,-0.08706254495474794],[116,-3,75,-0.07698880463731317],[116,-3,76,-0.08311328043706494],[116,-3,77,-0.08767534918964966],[116,-3,78,-0.07778852786366287],[116,-3,79,-0.08762327215561344],[116,-2,64,-0.017244654682436994],[116,-2,65,-0.003207162042047771],[116,-2,66,-0.013877585745564365],[116,-2,67,-0.023976154061819462],[116,-2,68,-0.025475285303211425],[116,-2,69,-0.016684536499484866],[116,-2,70,-0.028657533237804813],[116,-2,71,-0.015522646890597581],[116,-2,72,-0.014673482518157704],[116,-2,73,-0.0618929046652114],[116,-2,74,-0.08589854583902816],[116,-2,75,-0.0762400564260293],[116,-2,76,-0.08271038791384415],[116,-2,77,-0.08743920080990888],[116,-2,78,-0.07760934768986502],[116,-2,79,-0.08708856354827979],[116,-1,64,-0.01744906492060019],[116,-1,65,-0.0033803437441967447],[116,-1,66,-0.013493704616075177],[116,-1,67,-0.023539694849805715],[116,-1,68,-0.02531802697553313],[116,-1,69,-0.016657665894730098],[116,-1,70,-0.0283969244021096],[116,-1,71,-0.015543244413517713],[116,-1,72,-0.014408045082223353],[116,-1,73,-0.060825860790339616],[116,-1,74,-0.08478702319550606],[116,-1,75,-0.07553396753485683],[116,-1,76,-0.08234010849816475],[116,-1,77,-0.08722891009340958],[116,-1,78,-0.0774499606651774],[116,-1,79,-0.08658345416194758],[116,0,64,-0.01766003621147478],[116,0,65,-0.0035570872360510385],[116,0,66,-0.0131206680659642],[116,0,67,-0.023115731014820312],[116,0,68,-0.025164912254256766],[116,0,69,-0.016628030480034677],[116,0,70,-0.028142492599492],[116,0,71,-0.015570271364314547],[116,0,72,-0.014159820525518273],[116,0,73,-0.059803131445356754],[116,0,74,-0.08372679499337349],[116,0,75,-0.07486989896124532],[116,0,76,-0.08200236435216873],[116,0,77,-0.08704459548093371],[116,0,78,-0.07731044880282571],[116,0,79,-0.08610770280682546],[116,1,64,-0.01787758051004389],[116,1,65,-0.0037373046390443672],[116,1,66,-0.012758057679443905],[116,1,67,-0.022703957672604292],[116,1,68,-0.025015977022761444],[116,1,69,-0.01659574358720212],[116,1,70,-0.02789405097555232],[116,1,71,-0.015603546421480362],[116,1,72,-0.013928268496334936],[116,1,73,-0.05882353053759463],[116,1,74,-0.08271671248427677],[116,1,75,-0.07424722704633767],[116,1,76,-0.08169707417516966],[116,1,77,-0.08688636960871139],[116,1,78,-0.07719089690876005],[116,1,79,-0.08566107853022581],[116,2,64,-0.01810171883066289],[116,2,65,-0.003920924487838229],[116,2,66,-0.012405479232170547],[116,2,67,-0.022304086673629753],[116,2,68,-0.024871267595168344],[116,2,69,-0.016560930231797156],[116,2,70,-0.027651433578314955],[116,2,71,-0.015642913056506856],[116,2,72,-0.013712877526805308],[116,2,73,-0.057885907100198905],[116,2,74,-0.08175566047368157],[116,2,75,-0.07366534479630236],[116,2,76,-0.08142415486981402],[116,2,77,-0.08675434008572645],[116,2,78,-0.07709139203402587],[116,2,79,-0.08524336007812561],[116,3,64,-0.01833248158845307],[116,3,65,-0.004107891217560024],[116,3,66,-0.01206256115142967],[116,3,67,-0.02191584557621919],[116,3,68,-0.024730839463505006],[116,3,69,-0.01652372523657055],[116,3,70,-0.027414493255186124],[116,3,71,-0.015688237987554345],[116,3,72,-0.013513164317124689],[116,3,73,-0.056989145253303376],[116,3,74,-0.08084255748899219],[116,3,75,-0.07312366304125205],[116,3,76,-0.08118352304372874],[116,3,77,-0.0866486101854053],[116,3,78,-0.07701202296192937],[116,3,79,-0.08485433539776709],[116,4,64,-0.01856990887716494],[116,4,65,-0.004298164665795303],[116,4,66,-0.01172895310708276],[116,4,67,-0.021538976726795833],[116,4,68,-0.024594756179627544],[116,4,69,-0.01648427154152882],[116,4,70,-0.027183099733845247],[116,4,71,-0.0157394097362073],[116,4,72,-0.01332867303810633],[116,4,73,-0.056132164097754324],[116,4,74,-0.07997635585193218],[116,4,75,-0.07262161144209311],[116,4,76,-0.0809750963562542],[116,4,77,-0.0865692794561896],[116,4,78,-0.07695287972695818],[116,4,79,-0.08449380117747357],[116,5,64,-0.01881405068906672],[116,5,65,-0.004491719590083017],[116,5,66,-0.011404324725821733],[116,5,67,-0.02117323644050489],[116,5,68,-0.02446308836355827],[116,5,69,-0.01644271868961622],[116,5,70,-0.02695713787664221],[116,5,71,-0.015796337282806813],[116,5,72,-0.013158974652789266],[116,5,73,-0.05531391754708846],[116,5,74,-0.07915604166227543],[116,5,75,-0.07215863935509934],[116,5,76,-0.0807987947193167],[116,5,77,-0.08651644425515752],[116,5,78,-0.07691405316246777],[116,5,79,-0.08416156242002716],[116,6,64,-0.01906496708215859],[116,6,65,-0.00468854520163615],[116,6,66,-0.011088364421707143],[116,6,67,-0.020818394275870504],[116,6,68,-0.02433591283033217],[116,6,69,-0.016399221477507834],[116,6,70,-0.02673650609857606],[116,6,71,-0.015858948816035195],[116,6,72,-0.01300366625783298],[116,6,73,-0.05453339410330333],[116,6,74,-0.07838063469974617],[116,6,75,-0.07173421656358511],[116,6,76,-0.0806545413610672],[116,6,77,-0.08649019820864083],[116,6,78,-0.07689563447430793],[116,6,79,-0.08385743204624145],[116,7,64,-0.019322728299706177],[116,7,65,-0.004888644715936574],[116,7,66,-0.010780778336328187],[116,7,67,-0.020474232397516886],[116,7,68,-0.02421331182783777],[116,7,69,-0.01635393876149484],[116,7,70,-0.026521114939371607],[116,7,71,-0.015927190572544724],[116,7,72,-0.01286237044535275],[116,7,73,-0.053789616581688404],[116,7,74,-0.07764918825055224],[116,7,75,-0.07134783388556593],[116,7,76,-0.08054226376045112],[116,7,77,-0.08649063260354703],[116,7,78,-0.07689771483769885],[116,7,79,-0.08358123052559567],[116,8,64,-0.019587414846716337],[116,8,65,-0.00509203492070825],[116,8,66,-0.01048128938221811],[116,8,67,-0.020140545021271765],[116,8,68,-0.024095372378453214],[116,8,69,-0.016307032408860944],[116,8,70,-0.02631088578056153],[116,8,71,-0.016001025762500457],[116,8,72,-0.012734734685743068],[116,8,73,-0.053081641789700526],[116,8,74,-0.07696078886463753],[116,8,75,-0.07099900366577702],[116,8,76,-0.08046189446036833],[116,8,77,-0.08651783671280931],[116,8,78,-0.07692038501474747],[116,8,79,-0.08333278553097535],[116,9,64,-0.019859117527741343],[116,9,65,-0.005298745761761018],[116,9,66,-0.010189636383571258],[116,9,67,-0.019817137936376232],[116,9,68,-0.023982185717715664],[116,9,69,-0.016258666385687185],[116,9,70,-0.026105749698988018],[116,9,71,-0.016080433577102315],[116,9,72,-0.012620430732032865],[116,9,73,-0.05240856016468256],[116,9,74,-0.07631455604947764],[116,9,75,-0.0706872601600199],[116,9,76,-0.08041337176670603],[116,9,77,-0.08657189805823406],[116,9,78,-0.07696373499019987],[116,9,79,-0.08311193161485589],[116,10,64,-0.020137937450108546],[116,10,65,-0.005508819947125974],[116,10,66,-0.00990557330865231],[116,10,67,-0.0195038280998621],[116,10,68,-0.023873846823640174],[116,10,69,-0.016209005972498605],[116,10,70,-0.025905646448581045],[116,10,71,-0.01616540827428672],[116,10,72,-0.012519154046249403],[116,10,73,-0.05176949537497599],[116,10,74,-0.07570964190591668],[116,10,75,-0.07041215981935442],[116,10,76,-0.08039664034011108],[116,10,77,-0.08665290261383225],[116,10,78,-0.07702785362318663],[116,10,79,-0.0829185099044973],[116,11,64,-0.020423985996322138],[116,11,65,-0.005722312569769688],[116,11,66,-0.009628868588564132],[116,11,67,-0.01920044329842147],[116,11,68,-0.023770454030601948],[116,11,69,-0.01615821709957692],[116,11,70,-0.025710523562661153],[116,11,71,-0.016255958338904083],[116,11,72,-0.012430623248171452],[116,11,73,-0.05116360388871591],[116,11,74,-0.07514523071120797],[116,11,75,-0.07017328148118022],[116,11,76,-0.08041165168692206],[116,11,77,-0.08676093495249255],[116,11,78,-0.07711282831283121],[116,11,79,-0.08275236781389919],[116,12,64,-0.020717384769179236],[116,12,65,-0.005939290749177251],[116,12,66,-0.009359304517429654],[116,12,67,-0.018906821873472028],[116,12,68,-0.023672108722126033],[116,12,69,-0.01610646579428842],[116,12,70,-0.025520335569504952],[116,12,71,-0.01635210571386858],[116,12,72,-0.01235457958684297],[116,12,73,-0.050590074514407446],[116,12,74,-0.07462053845417067],[116,12,75,-0.06997022647388232],[116,12,76,-0.08045836455536134],[116,12,77,-0.0868960783387672],[116,12,78,-0.07721874467582578],[116,12,79,-0.08261335877055502],[116,13,64,-0.021018265512868645],[116,13,65,-0.00615983329202148],[116,13,66,-0.009096676729352481],[116,13,67,-0.01862281250541538],[116,13,68,-0.023578915097264154],[116,13,69,-0.016053917733224326],[116,13,70,-0.025335043314340014],[116,13,71,-0.016453885098923524],[116,13,72,-0.012290786435169735],[116,13,73,-0.05004812791717462],[116,13,74,-0.07413481232710388],[116,13,75,-0.06980261864131769],[116,13,76,-0.08053674524272882],[116,13,77,-0.0870584147704037],[116,13,78,-0.07734568623425545],[116,13,79,-0.08250134195526387],[116,14,64,-0.021326770013013602],[116,14,65,-0.006384030372026152],[116,14,66,-0.008840793747775301],[116,14,67,-0.018348274053326258],[116,14,68,-0.023490980005531],[116,14,69,-0.016000737892344807],[116,14,70,-0.025154613381306604],[116,14,71,-0.01656134331376919],[116,14,72,-0.012239028807826199],[116,14,73,-0.04953701611431621],[116,14,74,-0.0736873301787912],[116,14,75,-0.06967010429299299],[116,14,76,-0.08064676781896125],[116,14,77,-0.0872480249710985],[116,14,78,-0.0774937341120943],[116,14,79,-0.08241618205344194],[116,15,64,-0.02164304997845281],[116,15,65,-0.006611983229149603],[116,15,66,-0.008591476603219407],[116,15,67,-0.018083075446657833],[116,15,68,-0.023408412845773382],[116,15,69,-0.01594709028882076],[116,15,70,-0.02497901760939943],[116,15,71,-0.016674538722512833],[116,15,72,-0.01219911290270857],[116,15,73,-0.049056021953650636],[116,15,74,-0.07327739993272953],[116,15,75,-0.06957235208547516],[116,15,76,-0.08078841427167216],[116,15,77,-0.08746498833692465],[116,15,78,-0.07766296673905894],[116,15,79,-0.08235774901666129],[116,16,64,-0.021967266907258958],[116,16,65,-0.006843803888102842],[116,16,66,-0.008348558515614612],[116,16,67,-0.017827095625755626],[116,16,68,-0.02333132552460349],[116,16,69,-0.015893137808632066],[116,16,70,-0.024808232696754574],[116,16,71,-0.016793540716505358],[116,16,72,-0.01217086566608984],[116,16,73,-0.048604458577909966],[116,16,74,-0.07290435897444986],[116,16,75,-0.06950905284019508],[116,16,76,-0.08096167457744943],[116,16,77,-0.08770938283875512],[116,16,78,-0.077853459560649],[116,16,79,-0.08232591783331299],[116,17,64,-0.022299591939336737],[116,17,65,-0.007079614896229481],[116,17,66,-0.008111884637750451],[116,17,67,-0.017580223528276873],[116,17,68,-0.023259832470392428],[116,17,69,-0.01583904211444003],[116,17,70,-0.02464223988807807],[116,17,71,-0.016918429252825152],[116,17,72,-0.012154134381627858],[116,17,73,-0.04818166887828789],[116,17,74,-0.07256757351161049],[116,17,75,-0.06947991930252194],[116,17,76,-0.0811665467039801],[116,17,77,-0.08798128488301218],[116,17,78,-0.07806528475346708],[116,17,79,-0.08232056830755982],[116,18,64,-0.022640205697671553],[116,18,65,-0.00731954908067116],[116,18,66,-0.007881311856584465],[116,18,67,-0.017342358118796142],[116,18,68,-0.02319405069905837],[116,18,69,-0.01578496362859388],[116,18,70,-0.02448102474034405],[116,18,71,-0.017049294445771492],[116,18,72,-0.012148786283293902],[116,18,73,-0.047787024940023584],[116,18,74,-0.07226643791028692],[116,18,75,-0.06948468584662024],[116,18,76,-0.08140303654724991],[116,18,77,-0.08828076913295752],[116,18,78,-0.07829851094504843],[116,18,79,-0.08234158484589184],[116,19,64,-0.0229892981201501],[116,19,65,-0.007563749324742692],[116,19,66,-0.007656708649415741],[116,19,67,-0.01711340845913059],[116,19,68,-0.023134099928196802],[116,19,69,-0.015731061586536123],[116,19,70,-0.024324576962274386],[116,19,71,-0.017186236208909956],[116,19,72,-0.012154708192291985],[116,19,73,-0.04741992748278398],[116,19,74,-0.07200037401074251],[116,19,75,-0.06952310813038365],[116,19,76,-0.08167115780792532],[116,19,77,-0.08860790829279364],[116,19,78,-0.07855320293770394],[116,19,79,-0.0823888562508618],[116,20,64,-0.023347068283705624],[116,20,65,-0.0078123683634259145],[116,20,66,-0.0074379549921864295],[116,20,67,-0.01689329381715183],[116,20,68,-0.023080102736393947],[116,20,69,-0.015677494156257],[116,20,70,-0.02417289032348159],[116,20,71,-0.01732936394537538],[116,20,72,-0.012171806178011266],[116,20,73,-0.047079805298439005],[116,20,74,-0.07176883042577964],[116,20,75,-0.06959496270445387],[116,20,76,-0.08197093181079987],[116,20,77,-0.08896277285682132],[116,20,78,-0.07882942143608053],[116,20,79,-0.08246227552177185],[116,21,64,-0.023713724222311217],[116,21,65,-0.008065568597796847],[116,21,66,-0.00722494231732855],[116,21,67,-0.016681943811982274],[116,21,68,-0.023032184764753265],[116,21,69,-0.015624418619731772],[116,21,70,-0.024025962629430454],[116,21,71,-0.01747879628422839],[116,21,72,-0.012200005242984561],[116,21,73,-0.04676611468864945],[116,21,74,-0.07157128182457753],[116,21,75,-0.06970004657906786],[116,21,76,-0.08230238727098382],[116,21,77,-0.08934543082588142],[116,21,78,-0.07912722277832336],[116,21,79,-0.08256173966224213],[116,22,64,-0.02408948274025004],[116,22,65,-0.008323521928237484],[116,22,66,-0.007017573518831579],[116,22,67,-0.016479298593712048],[116,22,68,-0.022990474957967647],[116,22,69,-0.015571991612656981],[116,22,70,-0.023883795758737003],[116,22,71,-0.017634660860852556],[116,22,72,-0.012239249031837636],[116,22,73,-0.046478338904576234],[116,22,74,-0.07140722820481497],[116,22,75,-0.06983817675228954],[116,22,76,-0.08266556001040619],[116,22,77,-0.08975594739338152],[116,22,78,-0.07944665867098247],[116,22,79,-0.0826871494948294],[116,23,64,-0.024474569221938965],[116,23,65,-0.008586409606250478],[116,23,66,-0.006815763002389692],[116,23,67,-0.01628530905593219],[116,23,68,-0.022955105842487028],[116,23,69,-0.015520369419105291],[116,23,70,-0.02374639575961956],[116,23,71,-0.01779709413951424],[116,23,72,-0.012289499564194544],[116,23,73,-0.04621598759089949],[116,23,74,-0.07127619415574958],[116,23,75,-0.07000918970298785],[116,23,76,-0.08306049262806688],[116,23,77,-0.09019438460325144],[116,23,78,-0.0797877759280229],[116,23,79,-0.0828384094830459],[116,24,64,-0.024869217439410302],[116,24,65,-0.008854422104637133],[116,24,66,-0.006619436778620247],[116,24,67,-0.016099937079488397],[116,24,68,-0.022926213839503596],[116,24,69,-0.015469708317969427],[116,24,70,-0.02361377300255587],[116,24,71,-0.01796624127630185],[116,24,72,-0.012350736991441708],[116,24,73,-0.045978596236173036],[116,24,74,-0.07117772811476845],[116,24,75,-0.07021294085170252],[116,24,76,-0.08348723412732525],[116,24,77,-0.09066080098218625],[116,24,78,-0.08015061621447234],[116,24,79,-0.08301542756127214],[116,25,64,-0.02527366935849121],[116,25,65,-0.009127759005835262],[116,25,66,-0.006428532597554938],[116,25,67,-0.015923155806049364],[116,25,68,-0.022903939610725926],[116,25,69,-0.015420164978386275],[116,25,70,-0.023485942386506996],[116,25,71,-0.018142256020834982],[116,25,72,-0.012422959377274645],[116,25,73,-0.04576572563146406],[116,25,74,-0.07111140161986378],[116,25,75,-0.07044930399242298],[116,25,76,-0.08394583950347072],[116,25,77,-0.09115525114866052],[116,25,78,-0.08053521579550363],[116,25,79,-0.08321811497327529],[116,26,64,-0.025688174944598755],[116,26,65,-0.009406628908188002],[116,26,66,-0.006243000122741078],[116,26,67,-0.01575494994019226],[116,26,68,-0.022888428435082802],[116,26,69,-0.015371896901576065],[116,26,70,-0.023362923596310686],[116,26,71,-0.018325300655256085],[116,26,72,-0.012506182501937958],[116,26,73,-0.045576961339134026],[116,26,74,-0.07107680856040297],[116,26,75,-0.07071817069816684],[116,26,76,-0.08443636929474357],[116,26,77,-0.09167778540126331],[116,26,78,-0.08094160529195271],[116,26,79,-0.08344638612020443],[116,27,64,-0.026112991968951862],[116,27,65,-0.00969124934988296],[116,27,66,-0.006062801143394106],[116,27,67,-0.0155953160787925],[116,27,68,-0.022879830614641904],[116,27,69,-0.01532506290673865],[116,27,70,-0.023244741409038434],[116,27,71,-0.01851554596910423],[116,27,72,-0.012600439690014236],[116,27,73,-0.04541191317347415],[116,27,74,-0.07107356442844687],[116,27,75,-0.07101944970309082],[116,27,76,-0.08495888909989947],[116,27,77,-0.09222844928898004],[116,27,78,-0.08136980944345908],[116,27,79,-0.08370015841906893],[116,28,64,-0.026548385815950946],[116,28,65,-0.009981846750326706],[116,28,66,-0.005887909823192737],[116,28,67,-0.015444263066629355],[116,28,68,-0.022878301908213678],[116,28,69,-0.015279823658896192],[116,28,70,-0.023131426047354662],[116,28,71,-0.018713171268823797],[116,28,72,-0.012705781661645842],[116,28,73,-0.04527021469486637],[116,28,74,-0.07110130557285115],[116,28,75,-0.071353066263804],[116,28,76,-0.085513469065408],[116,28,77,-0.09280728316617849],[116,28,78,-0.08181984688065369],[116,28,79,-0.08397935217288732],[116,29,64,-0.026994629292407188],[116,29,65,-0.010278656368720924],[116,29,66,-0.005718312984416089],[116,29,67,-0.015301812377204542],[116,29,68,-0.022884003991252812],[116,29,69,-0.015236342236771512],[116,29,70,-0.02302301357811048],[116,29,71,-0.018918364420773316],[116,29,72,-0.012822276407067531],[116,29,73,-0.04515152271906662],[116,29,74,-0.07115968845834192],[116,29,75,-0.07171896150248139],[116,29,76,-0.08610018334537592],[116,29,77,-0.09341432173517847],[116,29,78,-0.08229172990803067],[116,29,79,-0.08428389045384879],[116,30,64,-0.027452002439213054],[116,30,65,-0.010581922279574711],[116,30,66,-0.005554010426174932],[116,30,67,-0.015167998517802572],[116,30,68,-0.022897104940761262],[116,30,69,-0.015194784738931912],[116,30,70,-0.022919546354534134],[116,30,71,-0.01913132192666795],[116,30,72,-0.012950009084274804],[116,30,73,-0.04505551684308508],[116,30,74,-0.07124838893167262],[116,30,75,-0.07211709173426606],[116,30,76,-0.08671910953724467],[116,30,77,-0.09404959357937118],[116,30,78,-0.08278546429930213],[116,30,79,-0.08461369900092701],[116,31,64,-0.027920792346024858],[116,31,65,-0.010891897364920427],[116,31,66,-0.00539501527560208],[116,31,67,-0.015042869457909263],[116,31,68,-0.02291777974403915],[116,31,69,-0.015155320926621706],[116,31,70,-0.022821073500575356],[116,31,71,-0.019352249030526732],[116,31,72,-0.013089081939694462],[116,31,73,-0.04498189898913066],[116,31,74,-0.07136710149699886],[116,31,75,-0.07254742778145498],[116,31,76,-0.08737032809637722],[116,31,77,-0.09471312069001864],[116,31,78,-0.08330104910726535],[116,31,79,-0.08496870613355383],[116,32,64,-0.02840129296950151],[116,32,65,-0.01120884332301671],[116,32,66,-0.005241354370932701],[116,32,67,-0.014926487080152068],[116,32,68,-0.022946210830233495],[116,32,69,-0.01511812490184839],[116,32,70,-0.022727651436090995],[116,32,71,-0.01958135985629008],[116,32,72,-0.013239614251711256],[116,32,73,-0.04493039296801155],[116,32,74,-0.07151553860257871],[116,32,75,-0.07300995427692676],[116,32,76,-0.08805392173268124],[116,32,77,-0.09540491799000575],[116,32,78,-0.08383847649040695],[116,32,79,-0.08534884268308475],[116,33,64,-0.028893804955571527],[116,33,65,-0.011533030693286856],[116,33,66,-0.005093068675415457],[116,33,67,-0.014818927652912001],[116,33,68,-0.02298258862367498],[116,33,69,-0.015083375819367341],[116,33,70,-0.02263934444163961],[116,33,71,-0.01981887757532377],[116,33,72,-0.01340174229686771],[116,33,73,-0.04490074406330798],[116,33,74,-0.07169342994087619],[116,33,75,-0.07350466895922782],[116,33,76,-0.08876997479243301],[116,33,77,-0.09612499285791887],[116,33,78,-0.08439773155861013],[116,33,79,-0.0857540419438607],[116,34,64,-0.029398635466220072],[116,34,65,-0.01186473889728814],[116,34,66,-0.004950213721067946],[116,34,67,-0.014720282323810487],[116,34,68,-0.02302711211809882],[116,34,69,-0.015051258631347922],[116,34,70,-0.02255622526178555],[116,34,71,-0.02006503460314454],[116,34,72,-0.01357561933859127],[116,34,73,-0.04489271863762142],[116,34,74,-0.07190052176418756],[116,34,75,-0.07403158196177498],[116,34,76,-0.08951857262856548],[116,34,77,-0.09687334465600739],[116,34,78,-0.0849787922405452],[116,34,79,-0.08618423964581211],[116,35,64,-0.029916098011281433],[116,35,65,-0.012204256295524355],[116,35,66,-0.004812860081316917],[116,35,67,-0.01463065763328088],[116,35,68,-0.023079989470903565],[116,35,69,-0.015021964863586198],[116,35,70,-0.02247837574588946],[116,35,71,-0.020320072824775395],[116,35,72,-0.013761415638294408],[116,35,73,-0.04490610376215761],[116,35,74,-0.07213657621791558],[116,35,75,-0.07459071509864659],[116,35,76,-0.09029980096275553],[116,35,77,-0.0976499642657314],[116,35,78,-0.08558162917548737],[116,35,79,-0.08663937395064332],[116,36,64,-0.03044651228567476],[116,36,65,-0.01255188025987909],[116,36,66,-0.00468109387153056],[116,36,67,-0.014550176047381696],[116,36,68,-0.023141438616597773],[116,36,69,-0.014995693422152512],[116,36,70,-0.02240588752538653],[116,36,71,-0.02058424384817055],[116,36,72,-0.01395931848866379],[116,36,73,-0.044940706870839155],[116,36,74,-0.07240137069361308],[116,36,75,-0.07518210114943433],[116,36,76,-0.09111374524269636],[116,36,77,-0.09845483363470645],[116,36,78,-0.08620620563242656],[116,36,79,-0.08711938547368053],[116,37,64,-0.030990204012574615],[116,37,65,-0.012907917261508575],[116,37,66,-0.004555017276491913],[116,37,67,-0.014478976509032723],[116,37,68,-0.023211687898658146],[116,37,69,-0.014972651429447176],[116,37,70,-0.022338862726630892],[116,37,71,-0.020857809285248295],[116,37,72,-0.014169532268984784],[116,37,73,-0.04499635544013922],[116,37,74,-0.07269469720397506],[116,37,75,-0.07580578314570785],[116,37,76,-0.091960489998074],[116,37,77,-0.09928792533904791],[116,37,78,-0.08685247745952072],[116,37,79,-0.08762421733358014],[116,38,64,-0.031547504793007455],[116,38,65,-0.013272682974035202],[116,38,66,-0.004434749103838015],[116,38,67,-0.014417215006813422],[116,38,68,-0.023290976719023793],[116,38,69,-0.014953055088655845],[116,38,70,-0.022277414718402937],[116,38,71,-0.021141041060117518],[116,38,72,-0.01439227852234729],[116,38,73,-0.045072896695798094],[116,38,74,-0.07301636178198787],[116,38,75,-0.0764618136616918],[116,38,76,-0.09284011819885635],[116,38,77,-0.10014920216524399],[116,38,78,-0.0875203930670647],[116,38,79,-0.08815381523214132],[116,39,64,-0.03211875196235473],[116,39,65,-0.01364650239186291],[116,39,66,-0.004320425362430129],[116,39,67,-0.014365065160386065],[116,39,68,-0.023379556204421788],[116,39,69,-0.014937130575571016],[116,39,70,-0.022221668893148593],[116,39,71,-0.021434221744098026],[116,39,72,-0.014627796054544596],[116,39,73,-0.04517019734753163],[116,39,74,-0.0733661839064575],[116,39,75,-0.07715025411179614],[116,39,76,-0.09375271061958644],[116,39,77,-0.10103861671580641],[116,39,78,-0.08820989344724615],[116,39,79,-0.08870812756649261],[116,40,64,-0.0327042884543101],[116,40,65,-0.014029709963496935],[116,40,66,-0.004212199864625695],[116,40,67,-0.014322718821598144],[116,40,68,-0.02347768988875035],[116,40,69,-0.014925114956779346],[116,40,70,-0.022171763481046065],[116,40,71,-0.02173764491721169],[116,40,72,-0.014876341054514018],[116,40,73,-0.04528814335284294],[116,40,74,-0.07374399595620762],[116,40,75,-0.07787117405774109],[116,40,76,-0.09469834521351495],[116,40,77,-0.10195611104311368],[116,40,78,-0.08892091223409918],[116,40,79,-0.08928710557599033],[116,41,64,-0.033304462672827266],[116,41,65,-0.014422649739717902],[116,41,66,-0.00411024485133279],[116,41,67,-0.014290386690213399],[116,41,68,-0.023585654410681955],[116,41,69,-0.014917257133150926],[116,41,70,-0.022127850395935234],[116,41,71,-0.022051615555820234],[116,41,72,-0.015138187236138701],[116,41,73,-0.04542663971101294],[116,41,74,-0.07414964269526438],[116,41,75,-0.07862465052808319],[116,41,76,-0.09567709650049773],[116,41,77,-0.10290161631596101],[116,41,78,-0.08965337580713476],[116,41,79,-0.08989070352616518],[116,42,64,-0.03391962837266419],[116,42,65,-0.014825675536510697],[116,42,66,-0.004014751638701017],[116,42,67,-0.01426829894318136],[116,42,68,-0.0237037402256461],[116,42,69,-0.0149138188075529],[116,42,70,-0.02209009611212235],[116,42,71,-0.02237645044613358],[116,42,72,-0.015413626001250458],[116,42,73,-0.04558561028833333],[116,42,74,-0.07458298079140456],[116,42,75,-0.07941076735304665],[116,42,76,-0.09668903497271691],[116,42,77,-0.10387505252347262],[116,42,78,-0.09040720344222448],[116,42,79,-0.09051887893208405],[116,43,64,-0.03455014454912256],[116,43,65,-0.015239151112614138],[116,43,66,-0.003925931285187667],[116,43,67,-0.0142567058762294],[116,43,68,-0.0238322523312611],[116,43,69,-0.014915075475610657],[116,43,70,-0.02205868257097331],[116,43,71,-0.02271247862329001],[116,43,72,-0.015702966623634986],[116,43,73,-0.04576499767559868],[116,43,74,-0.07504387837046006],[116,43,75,-0.08022961451763187],[116,43,76,-0.09773422652236938],[116,43,77,-0.10487632822110589],[116,43,78,-0.0911823075133438],[116,43,79,-0.09117159282346043],[116,44,64,-0.03519637533764602],[116,44,65,-0.01566345036158994],[116,44,66,-0.003844015277680238],[116,44,67,-0.014255878556493103],[116,44,68,-0.023971511005248837],[116,44,69,-0.014921317438287599],[116,44,70,-0.022033808116153582],[116,44,71,-0.023060041835739488],[116,44,72,-0.01600653645386189],[116,44,73,-0.045964763078875426],[116,44,74,-0.07553221460884128],[116,44,75,-0.08108128753608801],[116,44,76,-0.09881273189560381],[116,44,77,-0.10590534032359589],[116,44,78,-0.09197859374884497],[116,44,79,-0.09184881005384925],[116,45,64,-0.03585868992398804],[116,45,65,-0.016098957518323836],[116,45,66,-0.0037692562352708244],[116,45,67,-0.014266109484807577],[116,45,68,-0.024121852554802904],[116,45,69,-0.014932850834968023],[116,45,70,-0.022015688456279815],[116,45,71,-0.02341949503466156],[116,45,72,-0.016324681144754015],[116,45,73,-0.046184886244539355],[116,45,74,-0.07604787936678016],[116,45,75,-0.08196588685093399],[116,45,76,-0.09992460617709512],[116,45,77,-0.10696197394977341],[116,45,78,-0.09279596154596256],[116,45,79,-0.09255049965623888],[116,46,64,-0.03653746246565469],[116,46,65,-0.01654606737982667],[116,46,66,-0.0037019286291310113],[116,46,67,-0.014287713266127496],[116,46,68,-0.02428363007625423],[116,46,69,-0.014949998695580712],[116,46,70,-0.02200455765360123],[116,46,71,-0.02379120688809835],[116,46,72,-0.01665776489726947],[116,46,73,-0.046425365419520935],[116,46,74,-0.07659077286480367],[116,46,75,-0.08288351725977805],[116,46,76,-0.10106989830971459],[116,46,77,-0.10804610232421706],[116,46,78,-0.09363430434721387],[116,46,79,-0.09327663524726428],[116,47,64,-0.03723306486685334],[116,47,65,-0.01700517837726498],[116,47,66,-0.0036423223491919565],[116,47,67,-0.014321020113828744],[116,47,68,-0.02445720704594032],[116,47,69,-0.014973094826800403],[116,47,70,-0.022000661948003177],[116,47,71,-0.024175553124156327],[116,47,72,-0.017006163524842938],[116,47,73,-0.04668621013925189],[116,47,74,-0.07716079819056908],[116,47,75,-0.08383428015056925],[116,47,76,-0.10224864342354273],[116,47,77,-0.10915757950253598],[116,47,78,-0.09449350283592173],[116,47,79,-0.09402718822725994],[116,48,64,-0.03794578337066061],[116,48,65,-0.017476609369813993],[116,48,66,-0.0035906598916471072],[116,48,67,-0.014366292864230497],[116,48,68,-0.024642874318560187],[116,48,69,-0.015002401004943771],[116,48,70,-0.022004176782884466],[116,48,71,-0.024572832962110786],[116,48,72,-0.01737018048326476],[116,48,73,-0.046967356876758515],[116,48,74,-0.07775777655353179],[116,48,75,-0.08481818834304],[116,48,76,-0.10346077764968446],[116,48,77,-0.11029615546972472],[116,48,78,-0.09537334036953074],[116,48,79,-0.09480204306103578],[116,49,64,-0.03867583753026486],[116,49,65,-0.017960618760811817],[116,49,66,-0.0035471158120507127],[116,49,67,-0.014423746198786896],[116,49,68,-0.024840869290299897],[116,49,69,-0.015038126298679939],[116,49,70,-0.02201522592929696],[116,49,71,-0.024983287609465794],[116,49,72,-0.017750064931724503],[116,49,73,-0.04726868671433303],[116,49,74,-0.0783814645526539],[116,49,75,-0.08583518291192088],[116,49,76,-0.10470615491257952],[116,49,77,-0.11146149323006013],[116,49,78,-0.09627352039972709],[116,49,79,-0.09560101452649447],[116,50,64,-0.03942343403451783],[116,50,65,-0.01845745858519992],[116,50,66,-0.0035118712637687804],[116,50,67,-0.01449360106415095],[116,50,68,-0.02505143038551321],[116,50,69,-0.015080481845611836],[116,50,70,-0.0220339361956726],[116,50,71,-0.025407154474410925],[116,50,72,-0.018146065632550716],[116,50,73,-0.04759007900157658],[116,50,74,-0.07903160757507913],[116,50,75,-0.08688518626026856],[116,50,76,-0.10598460011674962],[116,50,77,-0.11265322244813193],[116,50,78,-0.09719372057765842],[116,50,79,-0.09642390176488637],[116,51,64,-0.04018876704276653],[116,51,65,-0.018967375118988883],[116,51,66,-0.003485115064017739],[116,51,67,-0.014576085622514752],[116,51,68,-0.025274798086576015],[116,51,69,-0.015129682185152375],[116,51,70,-0.022060438705433286],[116,51,71,-0.02584466795391588],[116,51,72,-0.018558431422873542],[116,51,73,-0.047931411603338914],[116,51,74,-0.07970793979679125],[116,51,75,-0.08796810177705908],[116,51,76,-0.10729590892172253],[116,51,77,-0.11387093968972706],[116,51,78,-0.09813359344252943],[116,51,79,-0.09727048887695129],[116,52,64,-0.0409720174383174],[116,52,65,-0.01949060840379772],[116,52,66,-0.00346704366511848],[116,52,67,-0.014671435098519437],[116,52,68,-0.02551121486433176],[116,52,69,-0.015185945497259276],[116,52,70,-0.022094869086843508],[116,52,71,-0.0262960591404218],[116,52,72,-0.018987410600400153],[116,52,73,-0.04829256008197227],[116,52,74,-0.08041018313495649],[116,52,75,-0.08908381243552049],[116,52,76,-0.10863984647061704],[116,52,77,-0.1151142076383292],[116,52,78,-0.09909276608013225],[116,52,79,-0.09814054446471461],[116,53,64,-0.04177335205296636],[116,53,65,-0.02002739173790669],[116,53,66,-0.0034578610803582413],[116,53,67,-0.014779891572411146],[116,53,68,-0.025760925059590087],[116,53,69,-0.015249493797247504],[116,53,70,-0.02213736762574536],[116,53,71,-0.02676155550006328],[116,53,72,-0.01943325027698702],[116,53,73,-0.04867339686912472],[116,53,74,-0.0811380462096649],[116,53,75,-0.09023217939175264],[116,53,76,-0.11001614613366054],[116,53,77,-0.11638255434917662],[116,53,78,-0.10007083981222618],[116,53,79,-0.09903382117903647],[116,54,64,-0.04259292286586534],[116,54,65,-0.020577951135851417],[116,54,66,-0.003457778764085373],[116,54,67,-0.014901703719075841],[116,54,68,-0.02602417471577997],[116,54,69,-0.015320553086129935],[116,54,70,-0.02218807938063801],[116,54,71,-0.02724138052384716],[116,54,72,-0.019896195701741767],[116,54,73,-0.04907379042978077],[116,54,74,-0.08189122331971707],[116,54,75,-0.09141304058956469],[116,54,76,-0.11142450827357843],[116,54,77,-0.11767547254767846],[116,54,78,-0.10106738992172114],[116,54,79,-0.09995005527625526],[116,55,64,-0.043430866180097664],[116,55,65,-0.021142504758644366],[116,55,66,-0.003467015445601764],[116,55,67,-0.015037126492543993],[116,55,68,-0.026301211362820844],[116,55,69,-0.015399353455846147],[116,55,70,-0.02224715425946466],[116,55,71,-0.027735753353239235],[116,55,72,-0.020376489555463426],[116,55,73,-0.04949360442130486],[116,55,74,-0.08266939343718194],[116,55,75,-0.09262620937761723],[116,55,76,-0.11286459903990638],[116,55,77,-0.11899241897898216],[116,55,78,-0.10208196541855419],[116,55,79,-0.1008889661872333],[116,56,64,-0.0442873017804812],[116,56,65,-0.02172126231681167],[116,56,66,-0.003485796916415008],[116,56,67,-0.01518642075556788],[116,56,68,-0.02659228375228691],[116,56,69,-0.015486129148708382],[116,56,70,-0.02231474705743897],[116,56,71,-0.028244888381695407],[116,56,72,-0.020874371218380476],[116,56,73,-0.04993269685036555],[116,56,74,-0.08347221922559075],[116,56,75,-0.09387147314517641],[116,56,76,-0.11433604919942897],[116,56,77,-0.12033281381552387],[116,56,78,-0.10311408885113282],[116,56,79,-0.10185025610212257],[116,57,64,-0.045162332076270746],[116,57,65,-0.022314424448546227],[116,57,66,-0.0035143557704158113],[116,57,67,-0.01534985285389949],[116,57,68,-0.02689764154396321],[116,57,69,-0.015581118570359188],[116,57,70,-0.022391017455198538],[116,57,71,-0.028768994833745593],[116,57,72,-0.0213900760132748],[116,57,73,-0.050390919230707334],[116,57,74,-0.08429934608673538],[116,57,75,-0.09514859198296514],[116,57,76,-0.11583845301007197],[116,57,77,-0.12169604012938627],[116,57,78,-0.10416325616816155],[116,57,79,-0.10283360957416363],[116,58,64,-0.04605604123252862],[116,58,65,-0.022922182075337194],[116,58,66,-0.0035529310965121976],[116,58,67,-0.01552769413488236],[116,58,68,-0.027217534943867243],[116,58,69,-0.01568456425546376],[116,58,70,-0.022476129976495063],[116,58,71,-0.0293082763232703],[116,58,72,-0.02192383442617805],[116,58,73,-0.050868115744796],[116,58,74,-0.08515040124109807],[116,58,75,-0.09645729737573285],[116,58,76,-0.11737136714562657],[116,58,77,-0.12308144343621077],[116,58,78,-0.1052289366355473],[116,58,79,-0.10383869314575925],[116,59,64,-0.04696849429411332],[116,59,65,-0.023544715737579477],[116,59,66,-0.003601768123302802],[116,59,67,-0.015720220410045706],[116,59,68,-0.02755221429387691],[116,59,69,-0.0157967127853732],[116,59,70,-0.022570253904638293],[116,59,71,-0.0298629303927192],[116,59,72,-0.022475871307004364],[116,59,73,-0.05136412241249913],[116,59,74,-0.08602499284707245],[116,59,75,-0.09779729093337064],[116,59,76,-0.1189343096788183],[116,59,77,-0.12448833131740115],[116,59,78,-0.10631057281303351],[116,59,79,-0.10486515500008733],[116,60,64,-0.04789973630638799],[116,60,65,-0.02418219491279025],[116,60,66,-0.003661117815416162],[116,60,67,-0.015927711361459474],[116,60,68,-0.027901929613158682],[116,60,69,-0.01591781465699244],[116,60,70,-0.02267356315689614],[116,60,71,-0.030433148035103413],[116,60,72,-0.0230464050526301],[116,60,73,-0.05187876627005319],[116,60,74,-0.08692270916420619],[116,60,75,-0.0991682431675377],[116,60,76,-0.12052675913028067],[116,60,77,-0.12591597312726927],[116,60,78,-0.10740758059509077],[116,60,79,-0.10591262464147629],[116,61,64,-0.04884979143685286],[116,61,65,-0.024834777319131057],[116,61,66,-0.00373123642114548],[116,61,67,-0.01615044989163894],[116,61,68,-0.028266930091601288],[116,61,69,-0.016048124102050965],[116,61,70,-0.022786236116011088],[116,61,71,-0.031019113200634215],[116,61,72,-0.02363564677504703],[116,61,73,-0.052411864562639555],[116,61,74,-0.08784311776574251],[116,61,75,-0.1005697923208815],[116,61,76,-0.12214815359101679],[116,61,77,-0.12736359979164244],[116,61,78,-0.1085193493204415],[116,61,79,-0.10698071260770124],[116,62,64,-0.049818662102091925],[116,62,65,-0.025502608207102553],[116,62,66,-0.003812384971119878],[116,62,67,-0.016388721416925944],[116,62,68,-0.028647463535575415],[116,62,69,-0.016187898856033375],[116,62,70,-0.02290845541803786],[116,62,71,-0.03162100229000593],[116,62,72,-0.02424379945740482],[116,62,73,-0.05296322395400942],[116,62,74,-0.08878576480581346],[116,62,75,-0.10200154325606997],[116,62,76,-0.12379788992596669],[116,62,77,-0.12883040370434082],[116,62,78,-0.10964524195447028],[116,62,79,-0.10806901021733692],[116,63,64,-0.05080632810456425],[116,63,65,-0.026185819642396503],[116,63,66,-0.003904828727823255],[116,63,67,-0.016642813104380386],[116,63,68,-0.029043775766419824],[116,63,69,-0.016337399876057056],[116,63,70,-0.023040407695728522],[116,63,71,-0.03223898363640489],[116,63,72,-0.02487105710091725],[116,63,73,-0.053532639756700987],[116,63,74,-0.08975017434669864],[116,63,75,-0.10346306641197507],[116,63,76,-0.1254753230663147],[116,63,77,-0.13031553872779536],[116,63,78,-0.11078459534862668],[116,63,79,-0.10917708935527282],[116,64,64,-0.05181274578386558],[116,64,65,-0.02688452978297804],[116,64,66,-0.0040088365858359796],[116,64,67,-0.016913013052306903],[116,64,68,-0.02945610997211252],[116,64,69,-0.016496891006993995],[116,64,70,-0.02318228327668557],[116,64,71,-0.032873216978374975],[116,64,72,-0.025517603865724166],[116,64,73,-0.054119895186434175],[116,64,74,-0.09073584775154034],[116,64,75,-0.10495389683437584],[116,64,76,-0.1271797653980798],[116,64,77,-0.1318181203038333],[116,64,78,-0.11193672058068753],[116,64,79,-0.11030450229937902],[116,65,64,-0.05283784718726087],[116,65,65,-0.0275988421536367],[116,65,66,-0.004124680422815559],[116,65,67,-0.017199609414721068],[116,65,68,-0.02988470601273814],[116,65,69,-0.016666638595246527],[116,65,70,-0.023334275835611453],[116,65,71,-0.033523852925818345],[116,65,72,-0.026183613209004523],[116,65,73,-0.05472476064438314],[116,65,74,-0.09174226314794925],[116,65,75,-0.10647353328864335],[116,65,76,-0.12891048625452314],[116,65,77,-0.13333722568049464],[116,65,78,-0.11310090337959908],[116,65,79,-0.11145078159130058],[116,66,64,-0.053881539264384395],[116,66,65,-0.02832884492135658],[116,66,66,-0.004252634401371243],[116,66,67,-0.01750288947023627],[116,66,68,-0.03032979968047629],[116,66,69,-0.01684691104962405],[116,66,70,-0.023496581999977572],[116,66,71,-0.03419103242142653],[116,66,72,-0.026869247023756922],[116,66,73,-0.055346993031108384],[116,66,74,-0.09276887496793926],[116,66,75,-0.10802143746190498],[116,66,76,-0.13066671151979056],[116,66,77,-0.1348718942604686],[116,66,78,-0.11427640463837106],[116,66,79,-0.11261543995426332],[116,67,64,-0.054943703091115896],[116,67,65,-0.02907461017495494],[116,67,66,-0.004392974222071532],[116,67,67,-0.017823138635968207],[116,67,68,-0.030791621914949097],[116,67,69,-0.01703797834889703],[116,67,70,-0.023669400908598363],[116,67,71,-0.03487488620001405],[116,67,72,-0.02757465478184299],[116,67,73,-0.0559863350959492],[116,67,74,-0.09381511356953844],[116,67,75,-0.10959703326214713],[116,67,76,-0.13244762335107924],[116,67,77,-0.13642112807646753],[116,67,78,-0.11546246101825637],[116,67,79,-0.11379797026068562],[116,68,64,-0.05602419312772952],[116,68,65,-0.029836193212569553],[116,68,66,-0.004545976328029605],[116,68,67,-0.018160639427307654],[116,68,68,-0.0312703979749316],[116,68,69,-0.01724011149567132],[116,68,70,-0.023852933722595584],[116,68,71,-0.035575534248215204],[116,68,72,-0.028299972684998582],[116,68,73,-0.05664251482576522],[116,68,74,-0.09488038494541871],[116,68,75,-0.11119970622171861],[116,68,76,-0.13425236002645477],[116,68,77,-0.1379838923985294],[116,68,78,-0.11665828564717873],[116,68,79,-0.11499784555229828],[116,69,64,-0.0571228365165008],[116,69,65,-0.030613631840673585],[116,69,66,-0.004711917061650941],[116,69,67,-0.018515670364586418],[116,69,68,-0.03176634656757887],[116,69,69,-0.01745358191637942],[116,69,70,-0.02404738308840647],[116,69,71,-0.03629308526715066],[116,69,72,-0.029045322827685818],[116,69,73,-0.05731524487694435],[116,69,74,-0.09596407052378435],[116,69,75,-0.11282880301262849],[116,69,76,-0.13608001592525942],[116,69,77,-0.13955911647791883],[116,69,78,-0.11786306891510577],[116,69,79,-0.11621451911538325],[116,70,64,-0.058239432424035134],[116,70,65,-0.031406945688421554],[116,70,66,-0.0048910717743412165],[116,70,67,-0.018888504827921544],[116,70,68,-0.03227967893651876],[116,70,69,-0.017678660807334885],[116,70,70,-0.02425295255260741],[116,70,71,-0.03702763614074615],[116,70,72,-0.029810812375797115],[116,70,73,-0.05800422205463711],[116,70,74,-0.09706552706667293],[116,70,75,-0.11448363108094711],[116,70,76,-0.13792964164782576],[116,70,77,-0.14114569443191985],[116,70,78,-0.11907597936876876],[116,70,79,-0.11744742461364026],[116,71,64,-0.059373751433580944],[116,71,65,-0.0322161355411667],[116,71,66,-0.005083713890113016],[116,71,67,-0.01927940986170299],[116,71,68,-0.03281059791028738],[116,71,69,-0.017915618426904496],[116,71,70,-0.024469845928419352],[116,71,71,-0.037779271412415376],[116,71,72,-0.030596532765301453],[116,71,73,-0.058709126843153436],[116,71,74,-0.09818408667065352],[116,71,75,-0.11616345840746153],[116,71,76,-0.13980024428090995],[116,71,77,-0.14274248627338074],[116,71,78,-0.12029616470777744],[116,71,79,-0.11869597628103408],[116,72,64,-0.06052553499265813],[116,72,65,-0.03304118269712102],[116,72,66,-0.005290113924288209],[116,72,67,-0.019688644930496182],[116,72,68,-0.033359296912824854],[116,72,69,-0.01816472333406971],[116,72,70,-0.02469826661395539],[116,72,71,-0.03854806277293368],[116,72,72,-0.03140255892507608],[116,72,73,-0.05942962299148938],[116,72,74,-0.09931905687477738],[116,72,75,-0.11786751340159413],[116,72,76,-0.1416907878149802],[116,72,77,-0.14434831908845994],[116,72,78,-0.12152275288387526],[116,72,79,-0.11995956917688058],[116,73,64,-0.06169449492133204],[116,73,65,-0.03388204835118737],[116,73,66,-0.0055105384587003465],[116,73,67,-0.020116460628381048],[116,73,68,-0.033925958937942265],[116,73,69,-0.01842624157382777],[116,73,70,-0.024938416862432044],[116,73,71,-0.039334068562389045],[116,73,72,-0.03222894852826543],[116,73,73,-0.06016535715793638],[116,73,74,-0.10046972088046131],[116,73,75,-0.11959498493540817],[116,73,76,-0.1436001937191638],[116,73,77,-0.1459619883655694],[116,73,78,-0.12275485330473491],[116,73,79,-0.12123757950529927],[116,74,64,-0.06288031298639755],[116,74,65,-0.03473867301000764],[116,74,66,-0.005745249074995262],[116,74,67,-0.020563097343988212],[116,74,68,-0.03451075548983745],[116,74,69,-0.01870043581004558],[116,74,70,-0.02519049700470509],[116,74,71,-0.04013733328910827],[116,74,72,-0.03307574127655087],[116,74,73,-0.060915958617643796],[116,74,74,-0.10163533788771194],[116,74,75,-0.1213450225242231],[116,74,76,-0.14552734167921888],[116,74,77,-0.14758225947795633],[116,74,78,-0.12399155814327138],[116,74,79,-0.12252936500095958],[116,75,64,-0.06408264054674305],[116,75,65,-0.03561097594236179],[116,75,66,-0.005994501247913174],[116,75,67,-0.021028783883826833],[116,75,68,-0.03511384549200628],[116,75,69,-0.018987564406638104],[116,75,70,-0.025454704624730498],[116,75,71,-0.040957887168557396],[116,75,72,-0.0339429582218327],[116,75,73,-0.061681039036993644],[116,75,74,-0.10281514355190757],[116,75,75,-0.12311673666013816],[116,75,76,-0.1474710705035293],[116,75,77,-0.14920786932189983],[116,75,78,-0.12523194375311988],[116,75,79,-0.12383426538294505],[116,76,64,-0.06530109827506765],[116,76,65,-0.03649885466905258],[116,76,66,-0.006258543200667048],[116,76,67,-0.02151373605677232],[116,76,68,-0.035735374167099064],[116,76,69,-0.019287880458160662],[116,76,70,-0.02573123368874569],[116,76,71,-0.04179574568523734],[116,76,72,-0.034830601129870985],[116,76,73,-0.06246019231856762],[116,76,74,-0.1040083505650652],[116,76,75,-0.12490919930443083],[116,76,76,-0.1494301792016572],[116,76,77,-0.1508375281119302],[116,76,78,-0.1264750721905172],[116,76,79,-0.12515160287838478],[116,77,64,-0.06653527596100632],[116,77,65,-0.03740218449640178],[116,77,66,-0.0065376147247668435],[116,77,67,-0.022018155222865203],[116,77,68,-0.03637547189048112],[116,77,69,-0.019601630771117456],[116,77,70,-0.026020273629156567],[116,77,71,-0.04265090918060382],[116,77,72,-0.03573865189043579],[116,77,73,-0.06325299452035231],[116,77,74,-0.10521414936518625],[116,77,75,-0.12672144454440337],[116,77,76,-0.15140342823945038],[116,77,77,-0.15246992133387616],[116,77,78,-0.12771999284238267],[116,77,79,-0.1264806828172906],[116,78,64,-0.06778473240060594],[116,78,65,-0.038320818097490626],[116,78,66,-0.006831945966925676],[116,78,67,-0.022542226809904357],[116,78,68,-0.03703425302051457],[116,78,69,-0.01992905479757081],[116,78,70,-0.02632200838437706],[116,78,71,-0.04352336247008815],[116,78,72,-0.03666707197857089],[116,78,73,-0.06405900385274862],[116,78,74,-0.1064317089769662],[116,78,75,-0.1285524694198811],[116,78,76,-0.15338954097421464],[116,78,77,-0.15410371185597313],[116,78,78,-0.1289657441600046],[116,78,79,-0.1278207942998906],[116,79,64,-0.06904899537693357],[116,79,65,-0.03925458514524601],[116,79,66,-0.007141756185950255],[116,79,67,-0.023086118801626386],[116,79,68,-0.037711814708814906],[116,79,69,-0.020270383522900056],[116,79,70,-0.026636615396109196],[116,79,71,-0.04441307449230818],[116,79,72,-0.03761580197157251],[116,79,73,-0.06487776075681485],[116,79,74,-0.10766017798680172],[116,79,75,-0.13040123492413955],[116,79,76,-0.15538720527289265],[116,79,77,-0.15573754219765598],[116,79,78,-0.1302113554973197],[116,79,79,-0.12917121093756453],[116,80,64,-0.07032756173637475],[116,80,65,-0.040203292001393824],[116,80,66,-0.007467252482764163],[116,80,67,-0.02364998020155635],[116,80,68,-0.03840823569394822],[116,80,69,-0.020625838309802396],[116,80,70,-0.026964264565772108],[116,80,71,-0.04531999799352638],[116,80,72,-0.03858476112622771],[116,80,73,-0.06570878806697096],[116,80,74,-0.10889868565458495],[116,80,75,-0.13226666718350366],[116,80,76,-0.15739507531555252],[116,80,77,-0.1573700369549748],[116,80,78,-0.13145584905228608],[116,80,79,-0.13053119166824342],[116,81,64,-0.07161989756497629],[116,81,65,-0.04116672146524199],[116,81,66,-0.007808628506996397],[116,81,67,-0.024233939476941007],[116,81,68,-0.03912357508229161],[116,81,69,-0.020995629700929705],[116,81,70,-0.02730511717206602],[116,81,71,-0.04624406925041893],[116,81,72,-0.0395738470208458],[116,81,73,-0.06655159126124847],[116,81,74,-0.11014634316439981],[116,81,75,-0.13414765881940147],[116,81,76,-0.15941177358590639],[116,81,77,-0.15899980538096203],[116,81,78,-0.13269824190945587],[116,81,79,-0.13189998164696923],[116,82,64,-0.07292543846892252],[116,82,65,-0.042144632586167595],[116,82,66,-0.008166063143867842],[116,82,67,-0.024838102987510623],[116,82,68,-0.039857871120033854],[116,82,69,-0.0213799561828722],[116,82,70,-0.027659324751961343],[116,82,71,-0.04718520783422198],[116,82,72,-0.04058293526655201],[116,82,73,-0.06740565880196447],[116,82,74,-0.11140224501578377],[116,82,75,-0.13604307049607947],[116,82,76,-0.16143589304989767],[116,82,77,-0.16062544411861185],[116,82,78,-0.13393754818141437],[116,82,79,-0.13327681321210683],[116,83,64,-0.0742435896738013],[116,83,65,-0.043136760213901976],[116,83,66,-0.00853971908837986],[116,83,67,-0.02546255302154112],[116,83,68,-0.04061113920281696],[116,83,69,-0.021779002429845772],[116,83,70,-0.028027027224424284],[116,83,71,-0.048143315007971796],[116,83,72,-0.041611877928064554],[116,83,73,-0.06827046009750952],[116,83,74,-0.11266546609630365],[116,83,75,-0.13795172673466868],[116,83,76,-0.16346599196727554],[116,83,77,-0.16224553205755068],[116,83,78,-0.13517277412689732],[116,83,79,-0.13466089941023118],[116,84,64,-0.07557371864540492],[116,84,65,-0.04414280507342031],[116,84,66,-0.008929738441249582],[116,84,67,-0.026107334226642787],[116,84,68,-0.041383346882726935],[116,84,69,-0.02219292272043882],[116,84,70,-0.02840832895657931],[116,84,71,-0.049118228721418127],[116,84,72,-0.042660459683788766],[116,84,73,-0.06914536780745116],[116,84,74,-0.11393492225791287],[116,84,75,-0.13987222971933827],[116,84,76,-0.1655003566069685],[116,84,77,-0.1638583791101217],[116,84,78,-0.13640269500590574],[116,84,79,-0.13605119656025672],[116,85,64,-0.07691516011975587],[116,85,65,-0.04516243448235845],[116,85,66,-0.009336240796106678],[116,85,67,-0.02677245022346607],[116,85,68,-0.04217440891024433],[116,85,69,-0.022621836792758424],[116,85,70,-0.02880329359503698],[116,85,71,-0.0501097136414475],[116,85,72,-0.04372838658743524],[116,85,73,-0.07002964283690039],[116,85,74,-0.1152093442033952],[116,85,75,-0.1418029205676652],[116,85,76,-0.16753695272455754],[116,85,77,-0.16546197744974067],[116,85,78,-0.13762581168897797],[116,85,79,-0.13744635468685995],[116,86,64,-0.07826723092203133],[116,86,65,-0.04619529628611515],[116,86,66,-0.009759325584359487],[116,86,67,-0.02745787654659738],[116,86,68,-0.04298421457591608],[116,86,69,-0.023065846465983534],[116,86,70,-0.029211969739608684],[116,86,71,-0.05111751282729696],[116,86,72,-0.0448153352865713],[116,86,73,-0.07092252634889537],[116,86,74,-0.11648744439215666],[116,86,75,-0.1437420988894367],[116,86,76,-0.16957370614686734],[116,86,77,-0.16705430104189561],[116,86,78,-0.13884061595849811],[116,86,79,-0.13884499485997537],[116,87,64,-0.07962923208937765],[116,87,65,-0.0472410202678841],[116,87,66,-0.010199071092791511],[116,87,67,-0.028163560101668476],[116,87,68,-0.04381262834289349],[116,87,69,-0.023525035320603925],[116,87,70,-0.02963439121116333],[116,87,71,-0.052141351021244155],[116,87,72,-0.04592095627844811],[116,87,73,-0.07182324621213201],[116,87,74,-0.1177679294095484],[116,87,75,-0.1456880389808941],[116,87,76,-0.17160852346032637],[116,87,77,-0.16863332786650587],[116,87,78,-0.14004560962695223],[116,87,79,-0.14024572761084486],[116,88,64,-0.0810004503420451],[116,88,65,-0.04829921883751149],[116,88,66,-0.010655533283723775],[116,88,67,-0.0288894177660821],[116,88,68,-0.04465948874053019],[116,88,69,-0.023999467247246983],[116,88,70,-0.030070575627714157],[116,88,71,-0.05318093473961841],[116,88,72,-0.047044874136670946],[116,88,73,-0.07273101783289067],[116,88,74,-0.11904950214487295],[116,88,75,-0.1476389925468934],[116,88,76,-0.1736392954341692],[116,88,77,-0.1701970436981298],[116,88,78,-0.14123930725431147],[116,88,79,-0.14164715406390851],[116,89,64,-0.08238015964884844],[116,89,65,-0.04936948779638041],[116,89,66,-0.011128744646411792],[116,89,67,-0.029635335031985125],[116,89,68,-0.045524607291785445],[116,89,69,-0.02448918499485636],[116,89,70,-0.030520522977038413],[116,89,71,-0.0542359524216698],[116,89,72,-0.048186687836688634],[116,89,73,-0.07364504509679318],[116,89,74,-0.12033086410940251],[116,89,75,-0.14959319161946935],[116,89,76,-0.17566390062665288],[116,89,77,-0.17174344600877342],[116,89,78,-0.1424202389378066],[116,89,79,-0.14304786715523926],[116,90,64,-0.08376762288431865],[116,90,65,-0.05045140717792098],[116,90,66,-0.011618713083923265],[116,90,67,-0.030401164696531275],[116,90,68,-0.04640776747840824],[116,90,69,-0.02499420872277318],[116,90,70,-0.03098421418989188],[116,90,71,-0.05530607463689361],[116,90,72,-0.04934597118108038],[116,90,73,-0.07456452141829972],[116,90,74,-0.12161071788777629],[116,90,75,-0.1515488516659035],[116,90,76,-0.1776802091645329],[116,90,77,-0.1732705479807533],[116,90,78,-0.14358695316437745],[116,90,79,-0.1444464529334184],[116,91,64,-0.0851620935744725],[116,91,65,-0.051544542163003845],[116,91,66,-0.012125420839741578],[116,91,67,-0.031186725604484503],[116,91,68,-0.04730872374789509],[116,91,69,-0.025514534561426647],[116,91,70,-0.03146160971806963],[116,91,71,-0.056390954351193644],[116,91,72,-0.050522273325245566],[116,91,73,-0.07548863089549818],[116,91,74,-0.12288776971559964],[116,91,75,-0.15350417487861953],[116,91,76,-0.17968608668531227],[116,91,77,-0.17477638261652914],[116,91,78,-0.14473801971578398],[116,91,79,-0.14584149193861728],[116,92,64,-0.08656281772767711],[116,92,65,-0.052648444069127893],[116,92,66,-0.012648823468322929],[116,92,67,-0.03199180144820581],[116,92,68,-0.04822720056620859],[116,92,69,-0.0260501331864668],[116,92,70,-0.03195264812172064],[116,92,71,-0.057490227252031206],[116,92,72,-0.051715119403687934],[116,92,73,-0.07641654956732112],[116,92,74,-0.12416073217546784],[116,92,75,-0.1554573536383812],[116,92,76,-0.181679398430965],[116,92,77,-0.17625900693181118],[116,92,78,-0.14587203261601145],[116,92,79,-0.14723156065544157],[116,93,64,-0.08796903574670532],[116,93,65,-0.05376265141202246],[116,93,66,-0.013188848853855888],[116,93,67,-0.0328161396300918],[116,93,68,-0.04916289152028859],[116,93,69,-0.02660094841135962],[116,93,70,-0.03245724467054387],[116,93,71,-0.058603512132539184],[116,93,72,-0.05292401125674673],[116,93,73,-0.07734744677000452],[116,93,74,-0.12542832700316003],[116,93,75,-0.1574065741415624],[116,93,76,-0.18365801348118946],[116,93,77,-0.17771650621783838],[116,93,78,-0.14698761311041492],[116,93,79,-0.14861523303503288],[116,94,64,-0.08937998441762182],[116,94,65,-0.054886691037911085],[116,94,66,-0.013745396281392545],[116,94,67,-0.03365945019245674],[116,94,68,-0.05011545847432913],[116,94,69,-0.02716689580354163],[116,94,70,-0.032975289963604576],[116,94,71,-0.059730411334320006],[116,94,72,-0.05414842825718095],[116,94,73,-0.07828048658917487],[116,94,74,-0.12668928799516668],[116,94,75,-0.15935002018143063],[116,94,76,-0.18561980911350223],[116,94,77,-0.1791469983582093],[116,94,78,-0.14808341266576747],[116,94,79,-0.1499910820817247],[116,95,64,-0.0907948989707821],[116,95,65,-0.056020079324406905],[116,95,66,-0.01431833556452955],[116,95,67,-0.03452140481985474],[116,95,68,-0.051084530783822815],[116,95,69,-0.027747861329397796],[116,95,70,-0.0335066485727076],[116,95,71,-0.060870511248477414],[116,95,72,-0.05538782823565567],[116,95,73,-0.07921482940361402],[116,95,74,-0.12794236400824557],[116,95,75,-0.16128587707268516],[116,95,76,-0.18756267527686632],[116,95,77,-0.1805486381852822],[116,95,78,-0.14915811598022438],[116,95,79,-0.15135768149948192],[116,96,64,-0.09221301520876074],[116,96,65,-0.05716232344760876],[116,96,66,-0.014907506233661582],[116,96,67,-0.03540163591868003],[116,96,68,-0.05206970457124961],[116,96,69,-0.028343700033339265],[116,96,70,-0.034051157714313045],[116,96,71,-0.06202338287413873],[116,96,72,-0.05664164850369798],[116,96,73,-0.08014963351630507],[116,96,74,-0.12918632204113925],[116,96,75,-0.1632123357077023],[116,96,76,-0.18948451916486908],[116,96,77,-0.18191962186075603],[116,96,78,-0.15021044399200392],[116,96,79,-0.15271360739316314],[116,97,64,-0.09363357169569549],[116,97,65,-0.05831292271269628],[116,97,66,-0.015512716788807931],[116,97,67,-0.03629973577885125],[116,97,68,-0.05307054206728832],[116,97,69,-0.028954234756388857],[116,97,70,-0.03460862595514544],[116,97,71,-0.06318858243355502],[116,97,72,-0.05790930697232211],[116,97,73,-0.08108405686802948],[116,97,74,-0.13041995038815457],[116,97,75,-0.1651275967322764],[116,97,76,-0.19138326987391688],[116,97,77,-0.18325819126476034],[116,97,78,-0.15123915687549752],[116,97,79,-0.15405744001958444],[116,98,64,-0.09505581200214457],[116,98,65,-0.05947136994498993],[116,98,66,-0.01613374402088629],[116,98,67,-0.037215255822245594],[116,98,68,-0.0540865710213297],[116,98,69,-0.02957925489972206],[116,98,70,-0.035178831956720114],[116,98,71,-0.06436565204263239],[116,98,72,-0.05919020336409747],[116,98,73,-0.0820172588284029],[116,98,74,-0.13164206185384117],[116,98,75,-0.16702987482796441],[116,98,76,-0.19325688313136571],[116,98,77,-0.18456263837753026],[116,98,78,-0.15224305701343827],[116,98,79,-0.15538776558325487],[116,99,64,-0.09647898699915826],[116,99,65,-0.06063715293807598],[116,99,66,-0.016770332405136253],[116,99,67,-0.03814770594236247],[116,99,68,-0.055117284184931094],[116,99,69,-0.03021851523859335],[116,99,70,-0.035761523264030495],[116,99,71,-0.0655541204354707],[116,99,72,-0.06048372051596046],[116,99,73,-0.08294840205882166],[116,99,74,-0.13285149701753346],[116,99,75,-0.16891740308745612],[116,99,76,-0.19510334607796914],[116,99,77,-0.18583130963749264],[116,99,78,-0.15322099193366023],[116,99,79,-0.15670317807151268],[116,100,64,-0.09790235719497323],[116,100,65,-0.061809755955346796],[116,100,66,-0.017422193570307717],[116,100,67,-0.03909655393958555],[116,100,68,-0.056162138871790175],[116,100,69,-0.030871734792142013],[116,100,70,-0.03635641514373755],[116,100,71,-0.066753503741322],[116,100,72,-0.06178922576970511],[116,100,73,-0.08387665444147506],[116,100,74,-0.13404712753615575],[116,100,75,-0.17078843746881872],[116,100,76,-0.19692068208860294],[116,100,77,-0.18706261025947243],[116,100,78,-0.1541718571990092],[116,100,79,-0.15800228112374662],[116,101,64,-0.09932519510739637],[116,101,65,-0.06298866128097386],[116,101,66,-0.018089005847033195],[116,101,67,-0.04006122505619605],[116,101,68,-0.057220556597657575],[116,101,69,-0.03153859575453636],[116,101,70,-0.03696318947720349],[116,101,71,-0.06796330631213286],[116,101,72,-0.0631060724466545],[116,101,73,-0.0848011910682233],[116,101,74,-0.13522785947332897],[116,101,75,-0.17264126131390986],[116,101,76,-0.19870695561484736],[116,101,77,-0.18825500849666307],[116,101,78,-0.15509459923901375],[116,101,79,-0.1592836899293247],[116,102,64,-0.10074678766461326],[116,102,65,-0.06417335081602123],[116,102,66,-0.01877041389861],[116,102,67,-0.04104110161506365],[116,102,68,-0.05829192280343692],[116,102,69,-0.032218742492853975],[116,102,70,-0.03758149371368496],[116,102,71,-0.06918302159858901],[116,102,72,-0.06443360140256843],[116,102,73,-0.0857211962827586],[116,102,74,-0.1363926366424194],[116,102,75,-0.1744741899156602],[116,102,76,-0.20046027703258812],[116,102,77,-0.1894070398298906],[116,102,78,-0.15598821811191932],[116,102,79,-0.16054603314871954],[116,103,64,-0.10216643862691537],[116,103,65,-0.0653633077151558],[116,103,66,-0.019466028437237336],[116,103,67,-0.042035522765733725],[116,103,68,-0.05937558666457889],[116,103,69,-0.03291178061706278],[116,103,70,-0.03821093988900495],[116,103,71,-0.0704121330724],[116,103,72,-0.06577114265847853],[116,103,73,-0.08663586576918854],[116,103,74,-0.13754044395093276],[116,103,75,-0.17628557511851778],[116,103,76,-0.20217880747757883],[116,103,77,-0.19051731106780834],[116,103,78,-0.1568517701858753],[116,103,79,-0.16178795485232977],[116,104,64,-0.10358347102157223],[116,104,65,-0.06655801805913646],[116,104,66,-0.02017542602853999],[116,104,67,-0.043043784341375305],[116,104,68,-0.06047086098969155],[116,104,69,-0.033617276127387546],[116,104,70,-0.03885110371497502],[116,104,71,-0.07165011519234712],[116,104,72,-0.0671180171027466],[116,104,73,-0.08754440867987644],[116,104,74,-0.13867031073339192],[116,104,75,-0.17807380993591224],[116,104,76,-0.20386076365167513],[116,104,77,-0.19158450434174162],[116,104,78,-0.15768437072820696],[116,104,79,-0.16300811647145477],[116,105,64,-0.10499722950421977],[116,105,65,-0.06775697255316726],[116,105,66,-0.0208981490682967],[116,105,67,-0.04406513889642916],[116,105,68,-0.061577022230503514],[116,105,69,-0.03433475468385527],[116,105,70,-0.03950152382409623],[116,105,71,-0.07289643444330422],[116,105,72,-0.06847353832741739],[116,105,73,-0.08844604986300879],[116,105,74,-0.1397813139567222],[116,105,75,-0.17983733304040667],[116,105,76,-0.20550442243898168],[116,105,77,-0.19260738083658918],[116,105,78,-0.1584851962760685],[116,105,79,-0.16420519869658867],[116,106,64,-0.10640698915150143],[116,106,65,-0.06895966115038332],[116,106,66,-0.0216338013346762],[116,106,67,-0.04509887463657293],[116,106,68,-0.06269333427790051],[116,106,69,-0.03506374890897026],[116,106,70,-0.040161795322131696],[116,106,71,-0.07415058678256896],[116,106,72,-0.06983709251520603],[116,106,73,-0.08934011039108679],[116,106,74,-0.1408724601256401],[116,106,75,-0.1815744828345316],[116,106,76,-0.20710795788480996],[116,106,77,-0.19358461824308096],[116,106,78,-0.15925335206479382],[116,106,79,-0.16537783555661406],[116,107,64,-0.10781176242897209],[116,107,65,-0.07016555066900543],[116,107,66,-0.022382238323172838],[116,107,67,-0.04614447620753434],[116,107,68,-0.06381910188134868],[116,107,69,-0.03580390306933014],[116,107,70,-0.04083176429796273],[116,107,71,-0.07541216357428814],[116,107,72,-0.07120828144225914],[116,107,73,-0.09022615528937505],[116,107,74,-0.1419424431511348],[116,107,75,-0.18328319933780216],[116,107,76,-0.20866911583739953],[116,107,77,-0.1945144903508279],[116,107,78,-0.15998761306619871],[116,107,79,-0.16652449287037555],[116,108,64,-0.10921050504594948],[116,108,65,-0.07137408839242404],[116,108,66,-0.023143346395659323],[116,108,67,-0.04720144800287565],[116,108,68,-0.06495362500962665],[116,108,69,-0.03655487593340082],[116,108,70,-0.04151132001620911],[116,108,71,-0.07668075734308355],[116,108,72,-0.07258672282413776],[116,108,73,-0.09110379903490927],[116,108,74,-0.1429899226833909],[116,108,75,-0.18496137244811278],[116,108,76,-0.21018561216457632],[116,108,77,-0.19539526546430916],[116,108,78,-0.16068674918485296],[116,108,79,-0.1676436443189734],[116,109,64,-0.11060216565638528],[116,109,65,-0.0725847053557601],[116,109,66,-0.02391699282145546],[116,109,67,-0.04826927405880879],[116,109,68,-0.06609618831366237],[116,109,69,-0.03731631751333275],[116,109,70,-0.04220034657404262],[116,109,71,-0.07795594201892965],[116,109,72,-0.07397200775398874],[116,109,73,-0.09197266378810923],[116,109,74,-0.14401359001813915],[116,109,75,-0.1866069247858857],[116,109,76,-0.2116552262963694],[116,109,77,-0.19622529879373757],[116,109,78,-0.16134959999264648],[116,109,79,-0.16873381187646969],[116,110,64,-0.11198568783987134],[116,110,65,-0.07379681746848066],[116,110,66,-0.0247030260210711],[116,110,67,-0.04934741884998908],[116,110,68,-0.0672460621942363],[116,110,69,-0.03808786956035905],[116,110,70,-0.042898722942577794],[116,110,71,-0.07923727348368047],[116,110,72,-0.07536370132195881],[116,110,73,-0.0928323802975497],[116,110,74,-0.1450121708572535],[116,110,75,-0.1882178159976051],[116,110,76,-0.21307580609280458],[116,110,77,-0.1970030363718104],[116,110,78,-0.16197507740065314],[116,110,79,-0.16979356880754704],[116,111,64,-0.1133600121310073],[116,111,65,-0.07500982668467787],[116,111,66,-0.025501275859015474],[116,111,67,-0.050435328153334735],[116,111,68,-0.06840250393626685],[116,111,69,-0.038869166099979396],[116,111,70,-0.04360632302393394],[116,111,71,-0.08052429016235792],[116,111,72,-0.07676134329459584],[116,111,73,-0.09368258879056106],[116,111,74,-0.14598442804684067],[116,111,75,-0.18979204705324965],[116,111,76,-0.21444527263112356],[116,111,77,-0.19772701881257534],[116,111,78,-0.16256216820077612],[116,111,79,-0.17082154260084267],[116,112,64,-0.11472407809269201],[116,112,65,-0.07622312221972698],[116,112,66,-0.026311553986096553],[116,112,67,-0.05153242997842109],[116,112,68,-0.06956475890681464],[116,112,69,-0.039659834004963535],[116,112,70,-0.04432301572372519],[116,112,71,-0.0818165136596527],[116,112,72,-0.07816444885566202],[116,112,73,-0.09452293984802798],[116,112,74,-0.1469291642824296],[116,112,75,-0.19132766452256098],[116,112,76,-0.21576162489368617],[116,112,77,-0.1983958848952284],[116,112,78,-0.16310993646457908],[116,112,79,-0.17181641782524354],[116,113,64,-0.11607682642862835],[116,113,65,-0.07743608181174466],[116,113,66,-0.027133654231384363],[116,113,67,-0.05263813556270973],[116,113,68,-0.07073206181369501],[116,113,69,-0.04045949360408262],[116,113,70,-0.04504866503867698],[116,113,71,-0.08311344944182415],[116,113,72,-0.07957250940939749],[116,113,73,-0.0953530952616639],[116,113,74,-0.147845224770921],[116,113,75,-0.19282276481508026],[116,113,76,-0.21702294433813865],[116,113,77,-0.19900837495632046],[116,113,78,-0.16361752578727318],[116,113,79,-0.17277693889674786],[116,114,64,-0.11741720113003037],[116,114,65,-0.07864807302593875],[116,114,66,-0.02796735304373445],[116,114,67,-0.05375184042954482],[116,114,68,-0.07190363802130192],[116,114,69,-0.04126775932433073],[116,114,70,-0.04578313015900442],[116,114,71,-0.08441458756390387],[116,114,72,-0.08098499344683677],[116,114,73,-0.09617272887193058],[116,114,74,-0.14873149983901668],[116,114,75,-0.19427549836887112],[116,114,76,-0.21822739933178045],[116,114,77,-0.19956333407454355],[116,114,78,-0.16408416136543214],[116,114,79,-0.17370191274382948],[116,115,64,-0.11874415112892309],[116,115,65,-0.07985845407126604],[116,115,66,-0.02881240944803658],[116,115,67,-0.054872924966002594],[116,115,68,-0.07307870437332006],[116,115,69,-0.04208423981142244],[116,115,70,-0.04652626502609921],[116,115,71,-0.08571940287668206],[116,115,72,-0.0824013469040946],[116,115,73,-0.09698152680720194],[116,115,74,-0.14958692689430253],[116,115,75,-0.1956840731831512],[116,115,76,-0.21937324883655984],[116,115,77,-0.2000597144309421],[116,115,78,-0.16450915128946464],[116,115,79,-0.17459021074540076],[116,116,64,-0.12005650319228237],[116,116,65,-0.08106644436523805],[116,116,66,-0.029668433245916573],[116,116,67,-0.05600062173463174],[116,116,68,-0.07425633521666632],[116,116,69,-0.04290840170193268],[116,116,70,-0.04727777999551243],[116,116,71,-0.08702721583586455],[116,116,72,-0.08382085260681535],[116,116,73,-0.09777904518772097],[116,116,74,-0.15041034826633695],[116,116,75,-0.19704661269080148],[116,116,76,-0.2204586988144579],[116,116,77,-0.20049642879674437],[116,116,78,-0.16489173749117456],[116,116,79,-0.17544061886992413],[116,117,64,-0.12135278838296198],[116,117,65,-0.08227094805148641],[116,117,66,-0.0305347055449747],[116,117,67,-0.057133834480086715],[116,117,68,-0.07543527946624051],[116,117,69,-0.043739383768166586],[116,117,70,-0.0480370532080644],[116,117,71,-0.08833700239474056],[116,117,72,-0.0852424381598302],[116,117,73,-0.098564515527288],[116,117,74,-0.1512003160256651],[116,117,75,-0.1983609599334692],[116,117,76,-0.22148170417998406],[116,117,77,-0.20087214884033816],[116,117,78,-0.1652308908987095],[116,117,79,-0.17625163141797517],[116,118,64,-0.12263149382944669],[116,118,65,-0.0834708078140274],[116,118,66,-0.03141043458718503],[116,118,67,-0.058271397446598774],[116,118,68,-0.07661422299201819],[116,118,69,-0.044576261401637056],[116,118,70,-0.04880339733246612],[116,118,71,-0.08964766434793195],[116,118,72,-0.08666494936035501],[116,118,73,-0.0993371206229004],[116,118,74,-0.1519553722754301],[116,118,75,-0.19962496223657122],[116,118,76,-0.2224402561950646],[116,118,77,-0.20118559384014761],[116,118,78,-0.16552560206254024],[116,118,79,-0.1770217452849442],[116,119,64,-0.12389110663400751],[116,119,65,-0.08466484852475535],[116,119,66,-0.032294799089718086],[116,119,67,-0.05941211986731035],[116,119,68,-0.0777918338176073],[116,119,69,-0.04541809153888129],[116,119,70,-0.04957610438638589],[116,119,71,-0.09095807542617747],[116,119,72,-0.08808719702566298],[116,119,73,-0.10009604141517783],[116,119,74,-0.15267409799017292],[116,119,75,-0.20083652206389263],[116,119,76,-0.2233324336102803],[116,119,77,-0.20143558075656268],[116,119,78,-0.16577493087930664],[116,119,79,-0.17774951106801604],[116,120,64,-0.1251301165254617],[116,120,65,-0.0858518791897742],[116,120,66,-0.03318694942861206],[116,120,67,-0.06055478782190088],[116,120,68,-0.07896676419780643],[116,120,69,-0.04626391397398171],[116,120,70,-0.05035444645927287],[116,120,71,-0.0922670828419277],[116,120,72,-0.08950795881171343],[116,120,73,-0.10084045827067159],[116,120,74,-0.15335511571811528],[116,120,75,-0.2019936012313246],[116,120,76,-0.22415640659400077],[116,120,77,-0.20162102656476],[116,120,78,-0.16597800816744163],[116,120,79,-0.1784335356090789],[116,121,64,-0.126347018558161],[116,121,65,-0.08703069497284444],[116,121,66,-0.03408600892129939],[116,121,67,-0.06169816619387215],[116,121,68,-0.08013765278433885],[116,121,69,-0.04711275274864383],[116,121,70,-0.051137676510495673],[116,121,71,-0.09357350893917726],[116,121,72,-0.09092598115707287],[116,121,73,-0.10156955230130611],[116,121,74,-0.15399709223614313],[116,121,75,-0.20309422504410268],[116,121,76,-0.22491044049223924],[116,121,77,-0.20174095037298148],[116,121,78,-0.16613403709818422],[116,121,79,-0.1790724844487275],[116,122,64,-0.12754031585032857],[116,122,65,-0.08820007929163191],[116,122,66,-0.03499107520551864],[116,122,67,-0.06284100072291104],[116,122,68,-0.0813031268742494],[116,122,69,-0.047963617616256324],[116,122,70,-0.05192502924139454],[116,122,71,-0.09487615294481286],[116,122,72,-0.09233998134902024],[116,122,73,-0.1022825067180954],[116,122,74,-0.154598741148383],[116,122,75,-0.204136486343795],[116,122,76,-0.22559289940554086],[116,122,77,-0.20179447531709474],[116,122,78,-0.16624229447578945],[116,122,79,-0.1796650841825874],[116,123,64,-0.12870852235464478],[116,123,65,-0.089358805982107],[116,123,66,-0.03590122171176049],[116,123,67,-0.06398202014737116],[116,123,68,-0.08246180473513964],[116,123,69,-0.048815505576116684],[116,123,70,-0.052715722039605624],[116,123,71,-0.09617379281833435],[116,123,72,-0.09374864970817788],[116,123,73,-0.10297850821607549],[116,123,74,-0.15515882541944095],[116,123,75,-0.20511854945158467],[116,123,76,-0.22620224956990087],[116,123,77,-0.20178083022316518],[116,123,78,-0.16630213186139203],[116,123,79,-0.18021012471161157],[116,124,64,-0.12985016565376256],[116,124,65,-0.09050564152610335],[116,124,66,-0.03681549922601944],[116,124,67,-0.0651199384315399],[116,124,68,-0.08361229800109964],[116,124,69,-0.049667402473754146],[116,124,70,-0.05350895599375915],[116,124,71,-0.09746518719636858],[116,124,72,-0.095150651887439],[116,124,73,-0.1036567483871792],[116,124,74,-0.15567615983355607],[116,124,75,-0.20603865399466567],[116,124,76,-0.2267370625293856],[116,124,77,-0.20169935103064268],[116,124,78,-0.16631297653559843],[116,124,79,-0.18070646137839524],[116,125,64,-0.13096378977330875],[116,125,65,-0.09163934733680251],[116,125,66,-0.037732937539333676],[116,125,67,-0.06625345707208884],[116,125,68,-0.08475321413297984],[116,125,69,-0.05051828466311667],[116,125,70,-0.054303916976484935],[116,125,71,-0.0987490774280586],[116,125,72,-0.09654463128049859],[116,125,73,-0.10431642515764808],[116,125,74,-0.1561496133711903],[116,125,75,-0.20689511860296492],[116,125,76,-0.22719601808889509],[116,125,77,-0.20154948196971817],[116,125,78,-0.16627433229555783],[116,125,79,-0.18115301698203423],[116,126,64,-0.1320479580047691],[116,126,65,-0.0927586820966047],[116,126,66,-0.038652547180227016],[116,126,67,-0.06738126747775167],[116,126,68,-0.08588315893636951],[116,126,69,-0.05136712072616388],[116,126,70,-0.055099776793409515],[116,126,71,-0.10002418969700008],[116,126,72,-0.09792921153476186],[116,126,73,-0.10495674424640644],[116,126,74,-0.15657811149485729],[116,126,75,-0.2076863444638308],[116,126,76,-0.2275779070363404],[116,126,77,-0.20133077648739692],[116,126,78,-0.16618578008297233],[116,126,79,-0.18154878366455715],[116,127,64,-0.13310125573051823],[116,127,65,-0.09386240414158652],[116,127,66,-0.03957332122585085],[116,127,67,-0.06850205341598686],[116,127,68,-0.08700073913040839],[116,127,69,-0.05221287324520592],[116,127,70,-0.05589569439560766],[116,127,71,-0.10128923722502034],[116,127,72,-0.09930299916290983],[116,127,73,-0.1055769206406497],[116,127,74,-0.15696063833624088],[116,127,75,-0.20841081872271938],[116,127,76,-0.22788163362425334],[116,127,77,-0.20104289791772756],[116,127,78,-0.16604697844011015],[116,127,79,-0.1818928246623888],[116,128,64,-0.13412229324318903],[116,128,65,-0.09494927388651556],[116,128,66,-0.04049423718732113],[116,128,67,-0.0696144935201109],[116,128,68,-0.08810456496036498],[116,128,69,-0.053054500623165024],[116,128,70,-0.05669081715277453],[116,128,71,-0.10254292255275689],[116,128,72,-0.100664586246952],[116,128,73,-0.10617618008479396],[116,128,74,-0.15729623877702642],[116,128,75,-0.20906711771845768],[116,128,76,-0.22810621780177923],[116,128,77,-0.20068561989267628],[116,128,78,-0.16585766379163502],[116,128,79,-0.18218427591687836],[116,129,64,-0.1351097085514963],[116,129,65,-0.09601805628417041],[116,129,66,-0.04141425896444489],[116,129,67,-0.0707172638501259],[116,129,68,-0.08919325284671506],[116,129,69,-0.05389095894676331],[116,129,70,-0.05748428218417128],[116,129,71,-0.10378393989164497],[116,129,72,-0.10201255322814512],[116,129,73,-0.10675376057880541],[116,129,74,-0.1575840204162083],[116,129,75,-0.2096539100421896],[116,129,76,-0.22825079718888555],[116,129,77,-0.200258826491119],[116,129,78,-0.16561765055074434],[116,129,79,-0.18242234753844802],[116,130,64,-0.13606217016457953],[116,130,65,-0.09706752331250389],[116,130,66,-0.042332338864745245],[116,130,67,-0.0718090405002266],[116,130,68,-0.0902654280632767],[116,130,69,-0.054721203887474625],[116,130,70,-0.05827521774418578],[116,130,71,-0.1050109775415899],[116,130,72,-0.10334547177571818],[116,130,73,-0.10730891388180434],[116,130,74,-0.15782315541698236],[116,130,75,-0.2101699594096323],[116,130,76,-0.22831462878548162],[116,130,77,-0.19976251212436716],[116,130,78,-0.16532683104874205],[116,130,79,-0.1826063251194126],[116,131,64,-0.13697837984691572],[116,131,65,-0.09809645648300641],[116,131,66,-0.043247419681416766],[116,131,67,-0.07288850224574163],[116,131,68,-0.09131972743680614],[116,131,69,-0.05554419263493741],[116,131,70,-0.059062744659155245],[116,131,71,-0.10622272036828967],[116,131,72,-0.10466190772695035],[116,131,73,-0.10784090701675716],[116,131,74,-0.1580128822267594],[116,131,75,-0.21061412733693596],[116,131,76,-0.2282970904091586],[116,131,77,-0.19919678115770617],[116,131,78,-0.16498517528792186],[116,131,79,-0.1827355708911365],[116,132,64,-0.13785707533588296],[116,132,65,-0.09910364936349543],[116,132,66,-0.04415843682462641],[116,132,67,-0.07395433322210827],[116,132,68,-0.09235480206036219],[116,132,69,-0.05635888585742079],[116,132,70,-0.059845977811933064],[116,132,71,-0.10741785233391452],[116,132,72,-0.10596042409079581],[116,132,73,-0.10834902377200792],[116,132,74,-0.15815250716425425],[116,132,75,-0.21098537561105044],[116,132,76,-0.22819768185617656],[116,132,77,-0.19856184726838522],[116,132,78,-0.16459273051827739],[116,132,79,-0.18280952472173073],[116,133,64,-0.1386970330140545],[116,133,65,-0.1000879101083813],[116,133,66,-0.04506432050029527],[116,133,67,-0.07500522562826015],[116,133,68,-0.09336932001259901],[116,133,69,-0.057164249683783544],[116,133,70,-0.06062402767045965],[116,133,71,-0.10859505907453348],[116,133,72,-0.10723958410686314],[116,133,73,-0.10883256619530125],[116,133,74,-0.15824140586801497],[116,133,75,-0.2112827685461574],[116,133,76,-0.2280160257812967],[116,133,77,-0.19785803254146347],[116,133,78,-0.16414962063921099],[116,133,79,-0.1828277049510476],[116,134,64,-0.13949707052839602],[116,134,65,-0.10104806398937369],[116,134,66,-0.04596399793030873],[116,134,67,-0.07603988244668787],[116,134,68,-0.09436196907509754],[116,134,69,-0.057959257701292316],[116,134,70,-0.06139600185645168],[116,134,71,-0.10975303051746053],[116,134,72,-0.10849795435126915],[116,134,73,-0.1092908560759319],[116,134,74,-0.15827902460124701],[116,134,75,-0.21150547501846395],[116,134,76,-0.22775186829307573],[116,134,77,-0.19708576630594002],[116,134,78,-0.16365604542810666],[116,134,79,-0.18278970906034778],[116,135,64,-0.1402560493486284],[116,135,65,-0.10198295591952061],[116,135,66,-0.04685639560792671],[116,135,67,-0.07705702017233129],[116,135,68,-0.09533145943980728],[116,135,69,-0.058742892963599386],[116,135,70,-0.0621610067501771],[116,135,71,-0.1108904635314838],[116,135,72,-0.1097341078806133],[116,135,73,-0.1097232364106299],[116,135,74,-0.15826488140825345],[116,135,75,-0.21165277027234858],[116,135,76,-0.22740507926220363],[116,135,77,-0.19624558371450393],[116,135,78,-0.16311227959824007],[116,135,79,-0.1826952141745601],[116,136,64,-0.14097287725710883],[116,136,65,-0.1028914529633644],[116,136,66,-0.04774044158193903],[116,136,67,-0.07805537154231418],[116,136,68,-0.09627652639859538],[116,136,69,-0.05951415000307124],[116,136,70,-0.06291814912708577],[116,136,71,-0.1120060646026864],[116,136,72,-0.11094662740502186],[116,136,73,-0.11012907284874342],[116,136,74,-0.15819856711828376],[116,136,75,-0.2117240374916104],[116,136,76,-0.22697565234148487],[116,136,77,-0.19533812407121234],[116,136,78,-0.16251867168914322],[116,136,79,-0.18254397739565478],[116,137,64,-0.14164651076275914],[116,137,65,-0.10377244682601247],[116,137,66,-0.048615067763016134],[116,137,67,-0.07903368825852103],[116,137,68,-0.09719593300695144],[116,137,69,-0.060272036841660895],[116,137,70,-0.06366653782197475],[116,137,71,-0.11309855252845188],[116,137,72,-0.11213410848104192],[116,137,73,-0.11050775511232194],[116,137,74,-0.1580797461931132],[116,137,75,-0.21171876913034055],[116,137,76,-0.22646370469704924],[116,137,77,-0.19436412891229846],[116,137,78,-0.16187564279313485],[116,137,79,-0.18233583596621625],[116,138,64,-0.1422759574317274],[116,138,65,-0.10462485631388813],[116,138,66,-0.049479212245551345],[116,138,67,-0.07999074369495046],[116,138,68,-0.09808847271389862],[116,138,69,-0.061015576994467566],[116,138,70,-0.06440528541622172],[116,138,71,-0.11416666112206844],[116,138,72,-0.11329516271496362],[116,138,73,-0.11085869838671049],[116,138,74,-0.1579081574151836],[116,138,75,-0.21163656799873434],[116,138,76,-0.2258694764513937],[116,138,77,-0.1933244398462217],[116,138,78,-0.16118368512233033],[116,138,79,-0.1820707072629017],[116,139,64,-0.14286027812765073],[116,139,65,-0.10544762975992694],[116,139,66,-0.05033182163816932],[116,139,67,-0.08092533558175229],[116,139,68,-0.09895297195019943],[116,139,69,-0.061743811460103576],[116,139,70,-0.06513350994348664],[116,139,71,-0.11520914192020695],[116,139,72,-0.11442842096697997],[116,139,73,-0.11118134467728542],[116,139,74,-0.15768361441364603],[116,139,75,-0.21147714809994614],[116,139,76,-0.22519332983982782],[116,139,77,-0.19221999615991392],[116,139,78,-0.16044336042099022],[116,139,79,-0.18174858862001675],[116,140,64,-0.14339858915463738],[116,140,65,-0.10623974740606602],[116,140,66,-0.05117185339603793],[116,140,67,-0.08183628865791401],[116,140,68,-0.09978829266706334],[116,140,69,-0.06245580069203059],[116,140,70,-0.06585033660922233],[116,140,71,-0.11622476688549697],[116,140,72,-0.11553253654653073],[116,140,73,-0.11147516412804835],[116,140,74,-0.1574060060262016],[116,140,75,-0.21124033521492006],[116,140,76,-0.22443574808287625],[116,140,77,-0.19105183219900038],[116,140,78,-0.15965529822860097],[116,140,79,-0.18136955698401538],[116,141,64,-0.14389006429630952],[116,141,65,-0.10700022373590128],[116,141,66,-0.051998278148018884],[116,141,67,-0.0827224572845644],[116,141,68,-0.10059333481763076],[116,141,69,-0.06315062654502612],[116,141,70,-0.06655489951921165],[116,141,71,-0.11721233109631131],[116,141,72,-0.11660618838905826],[116,141,73,-0.11173965629784026],[116,141,74,-0.15707529649516655],[116,141,75,-0.21092606723295812],[116,141,76,-0.22359733397817716],[116,141,77,-0.18982107453059124],[116,141,78,-0.15882019399962183],[116,141,79,-0.1809337684003004],[116,142,64,-0.14433393674453007],[116,142,65,-0.10772810975051028],[116,142,66,-0.05281008201169209],[116,142,67,-0.08358272801096532],[116,142,68,-0.10136703877367027],[116,142,69,-0.063827394191004],[116,142,70,-0.06724634341230107],[116,142,71,-0.11817065541586057],[116,142,72,-0.1176480842043996],[116,142,73,-0.11197435139003857],[116,142,74,-0.15669152549672555],[116,142,75,-0.21053439422660095],[116,142,76,-0.2226788082163254],[116,142,77,-0.18852893889794795],[116,142,78,-0.15793880708626162],[116,142,79,-0.180441457334214],[116,143,64,-0.1447295009117304],[116,143,65,-0.10842249518054586],[116,143,66,-0.05360626888927094],[116,143,67,-0.08441602208535331],[116,143,68,-0.10210838767006926],[116,143,69,-0.06448523399847461],[116,143,70,-0.06792382539243517],[116,143,71,-0.11909858913267679],[116,143,72,-0.11865696358702983],[116,143,73,-0.1121788114317005],[116,143,74,-0.15625480800289288],[116,143,75,-0.2100654782702464],[116,143,76,-0.2216810074260577],[116,143,77,-0.18717672697706372],[116,143,78,-0.15701195859113853],[116,143,79,-0.1798929358286627],[116,144,64,-0.145076114121063],[116,144,65,-0.10908251062784703],[116,144,66,-0.05438586273743152],[116,144,67,-0.08522129790291219],[116,144,68,-0.1028164096698842],[116,144,69,-0.06512330337000558],[116,144,70,-0.06858651665504951],[116,144,71,-0.11999501256457555],[116,144,72,-0.11963160107840844],[116,144,73,-0.11235263139823314],[116,144,74,-0.15576533397624193],[116,144,75,-0.2095195930027665],[116,144,76,-0.22060488195507558],[116,144,77,-0.18576582294586239],[116,144,78,-0.15604052909708066],[116,144,79,-0.17928859250133208],[116,145,64,-0.14537319816896768],[116,145,65,-0.1097073296300161],[116,145,66,-0.05514790980416943],[116,145,67,-0.08599755338336144],[116,145,68,-0.10349018014295892],[116,145,69,-0.06574078853218059],[116,145,70,-0.06923360420288316],[116,145,71,-0.12085883961826563],[116,145,72,-0.1205708091717926],[116,145,73,-0.11249544027981762],[116,145,74,-0.1552233678980032],[116,145,75,-0.2088971229352003],[116,145,76,-0.21945149339364164],[116,145,77,-0.18429768987729506],[116,145,78,-0.15502545628168454],[116,145,79,-0.17862889138493174],[116,146,64,-0.14562024075505686],[116,146,65,-0.11029617064155002],[116,146,66,-0.05589148082579036],[116,146,67,-0.0867438282707511],[116,146,68,-0.10412882375129219],[116,146,69,-0.06633690627261997],[116,146,70,-0.06986429254621929],[116,146,71,-0.12168902029680091],[116,146,72,-0.12147344124994475],[116,146,73,-0.11260690208595205],[116,146,74,-0.15462924813068504],[116,146,75,-0.20819856250544547],[116,146,76,-0.21822201184897214],[116,146,77,-0.18277386596825237],[116,146,78,-0.15396773242464332],[116,146,79,-0.17791437061441098],[116,147,64,-0.14581679677465195],[116,147,65,-0.11084829892540626],[116,147,66,-0.05661567317732876],[116,147,67,-0.08745920634836987],[116,147,68,-0.10473151643468678],[116,147,69,-0.066910905618839],[116,147,70,-0.07047780538262115],[116,147,71,-0.12248454314723149],[116,147,72,-0.12233839444638683],[116,147,73,-0.11268671678465017],[116,147,74,-0.15398338611687717],[116,147,75,-0.2074245148826676],[116,147,76,-0.21691771297918855],[116,147,77,-0.1811959606166263],[116,147,78,-0.15286840181610678],[116,147,79,-0.17714564096552768],[116,148,64,-0.14596248946966586],[116,148,65,-0.11136302834907416],[116,148,66,-0.05731961296974203],[116,148,67,-0.0881428175618339],[116,148,68,-0.10529748729042422],[116,148,69,-0.06746206945382655],[116,148,70,-0.07107338725122242],[116,148,71,-0.1232444376409092],[116,148,72,-0.12316461242100005],[116,148,73,-0.11273462117301963],[116,148,74,-0.15328626541645327],[116,148,75,-0.2065756905249648],[116,148,76,-0.21553997479640336],[116,148,77,-0.17956565035939565],[116,148,78,-0.15172855807465482],[116,148,79,-0.17632338424960053],[116,149,64,-0.14605701143394784],[116,149,65,-0.11183972307950735],[116,149,66,-0.058002457087393294],[116,149,67,-0.08879384004372134],[116,149,68,-0.10582602034105287],[116,149,69,-0.06798971606342119],[116,149,70,-0.07165030515667871],[116,149,71,-0.12396777647907033],[116,149,72,-0.12395108804101455],[116,149,73,-0.1127503896761179],[116,149,74,-0.15253844058488156],[116,149,75,-0.20565290549461163],[116,149,76,-0.21409027424922245],[116,149,77,-0.17788467468497862],[116,149,78,-0.15054934138368606],[116,149,79,-0.17544835156969635],[116,150,64,-0.14610012546965445],[116,150,65,-0.11227779917158467],[116,150,66,-0.058663395159535205],[116,150,67,-0.08941150203343169],[116,150,68,-0.10631645618471959],[116,150,69,-0.06849320061077867],[116,150,70,-0.07220785015797133],[116,150,71,-0.12465367781654076],[116,150,72,-0.12469686595872706],[116,150,73,-0.11273383507122012],[116,150,74,-0.15174053589586942],[116,150,75,-0.20465707953596712],[116,150,76,-0.21257018359560387],[116,150,77,-0.1761548317334278],[116,150,78,-0.1493319356551994],[116,150,79,-0.17452136144387387],[116,151,64,-0.14609166529162365],[116,151,65,-0.11267672604503992],[116,151,66,-0.059301651459655706],[116,151,67,-0.08999508368622396],[116,151,68,-0.10676819352280023],[116,151,69,-0.0689719165334044],[116,151,70,-0.07274533891729378],[116,151,71,-0.1253013073965825],[116,151,72,-0.12540104507754704],[116,151,73,-0.11268480913481527],[116,151,74,-0.1508932439120466],[116,151,75,-0.20358923392189854],[116,151,76,-0.21098136657768746],[116,151,77,-0.17437797389837073],[116,151,78,-0.14807756563014216],[116,151,79,-0.1735432978015022],[116,152,64,-0.14603153607721603],[116,152,65,-0.11303602784516968],[116,152,66,-0.059916486726811574],[116,152,67,-0.09054391876577257],[116,152,68,-0.10718069055999058],[116,152,69,-0.0694252968584871],[116,152,70,-0.07326211520438299],[116,152,71,-0.1259098805901922],[116,152,72,-0.12606278089835302],[116,152,73,-0.11260320320990813],[116,152,74,-0.14999732390787404],[116,152,75,-0.20245048907527924],[116,152,76,-0.20932557441074892],[116,152,77,-0.1725560033447868],[116,152,78,-0.14678749392457155],[116,152,79,-0.17251510785898277],[116,153,64,-0.14591971485953642],[116,153,65,-0.11335528468296328],[116,153,66,-0.06050719990329576],[116,153,67,-0.09105739621492263],[116,153,68,-0.10755346627239687],[116,153,69,-0.06985281543250042],[116,153,70,-0.07375755135174732],[116,153,71,-0.12647866433341412],[116,153,72,-0.12668128773849396],[116,153,73,-0.1124889486914302],[116,153,74,-0.14905360014942282],[116,153,75,-0.2012420619728366],[116,153,76,-0.20760464159900224],[116,153,77,-0.17069086745691595],[116,153,78,-0.14546301803099046],[116,153,79,-0.17143779988153526],[116,154,64,-0.14575625076242463],[116,154,65,-0.11363413375065781],[116,154,66,-0.061073129783242155],[116,154,67,-0.09153496159970488],[116,154,68,-0.10788610153957216],[116,154,69,-0.07025398806129501],[116,154,70,-0.07423104965636787],[116,154,71,-0.12700697895651877],[116,154,72,-0.12725584081616376],[116,154,73,-0.11234201742780295],[116,154,74,-0.14806296003609581],[116,154,75,-0.19996526333928807],[116,154,76,-0.20582048159144217],[116,154,77,-0.1687845542306909],[116,154,78,-0.14410546728423712],[116,154,79,-0.17031244083798996],[116,155,64,-0.1455412650761121],[116,155,65,-0.11387227030914374],[116,155,66,-0.06161365656709607],[116,155,67,-0.09197611842211299],[116,155,68,-0.10817824013690279],[116,155,69,-0.07062837355720983],[116,155,70,-0.07468204372362361],[116,155,71,-0.1274941998992651],[116,155,72,-0.12778577819335524],[116,155,73,-0.11216242203698328],[116,155,74,-0.14702635210979736],[116,155,75,-0.1986214946403412],[116,155,76,-0.20397508229133798],[116,155,77,-0.16683908762513067],[116,155,78,-0.14271619980130673],[116,155,79,-0.1691401539557715],[116,156,64,-0.1452749511728995],[116,156,65,-0.11406944854400174],[116,156,66,-0.062128203317137226],[116,156,67,-0.09238042929752542],[116,156,68,-0.10842958958515606],[116,156,69,-0.07097557468998432],[116,156,70,-0.07510999974931155],[116,156,71,-0.1279397593067542],[116,156,72,-0.12827050257100805],[116,156,73,-0.11195021613554959],[116,156,74,-0.1459447839374399],[116,156,75,-0.1972122448837525],[116,156,76,-0.20207050143339456],[116,156,77,-0.1648565228871511],[116,156,78,-0.1412965994044632],[116,156,79,-0.16792211618350983],[116,157,64,-0.14495757426273673],[116,157,65,-0.114225482287409],[116,157,66,-0.06261623730961274],[116,157,67,-0.09274751699313663],[116,157,68,-0.10863992185449241],[116,157,69,-0.07129523903859031],[116,157,70,-0.0755144177358455],[116,157,71,-0.12834314750080444],[116,157,72,-0.12870948293050585],[116,157,73,-0.11170549447968942],[116,157,74,-0.14481931987305388],[116,157,75,-0.1957390872381928],[116,157,76,-0.20010886184287585],[116,157,77,-0.1628389418641509],[116,157,78,-0.139848072536892],[116,157,79,-0.16665955556888412],[116,158,64,-0.14458947098906905],[116,158,65,-0.11434024560356099],[116,158,66,-0.06307727127936233],[116,158,67,-0.09307706532420448],[116,158,68,-0.10880907392070278],[116,158,69,-0.07158705974140284],[116,158,70,-0.07589483263889335],[116,158,71,-0.12870391432214096],[116,158,72,-0.12910225601617065],[116,158,73,-0.11142839301721408],[116,158,74,-0.14365107870612032],[116,158,75,-0.19420367548021739],[116,158,76,-0.19809234659128241],[116,158,77,-0.16078844831863276],[116,158,78,-0.1383720451800592],[116,158,79,-0.1653537485594941],[116,159,64,-0.14417104886581686],[116,159,65,-0.11441367323569245],[116,159,66,-0.06351086455317874],[116,159,67,-0.0933688199053878],[116,159,68,-0.10893694817190784],[116,159,69,-0.07185077614245328],[116,159,70,-0.07625081544091479],[116,159,71,-0.12902167033910278],[116,159,72,-0.12944842765394177],[116,159,73,-0.11111908885000234],[116,159,74,-0.14244123120306168],[116,159,75,-0.192607740280133],[116,159,76,-0.19602319406337168],[116,159,77,-0.15870716325894174],[116,159,78,-0.13686995978178454],[116,159,79,-0.16400601723468927],[116,160,64,-0.14370278555685664],[116,160,65,-0.11444576091324928],[116,160,66,-0.06391662406854488],[116,160,67,-0.0936225887549556],[116,160,68,-0.1090235126644641],[116,160,69,-0.07208617433185886],[116,160,70,-0.07658197414829968],[116,160,71,-0.12929608791901873],[116,160,72,-0.1297476739020045],[116,160,73,-0.11077780010657405],[116,160,74,-0.14119099754911948],[116,160,75,-0.19095308533797836],[116,160,76,-0.19390369295042542],[116,160,77,-0.1565972202999255],[116,160,78,-0.13534327220382214],[116,160,79,-0.16261772647636127],[116,161,64,-0.14318522799986982],[116,161,65,-0.11443656551819661],[116,161,66,-0.06429420527475924],[116,161,67,-0.09383824275012467],[116,161,68,-0.1090688012273054],[116,161,69,-0.0722930875788556],[116,161,70,-0.07688795470902594],[116,161,71,-0.12952690215882626],[116,161,72,-0.1299997420296932],[116,161,73,-0.11040478572476854],[116,161,74,-0.13990164469812943],[116,161,75,-0.1892415833812984],[116,161,76,-0.19173617718482086],[116,161,77,-0.1544607610671054],[116,161,78,-0.13379344869758245],[116,161,79,-0.16119028108684186],[116,162,64,-0.14261899137691925],[116,162,65,-0.11438620510994037],[116,162,66,-0.06464331291389584],[116,162,67,-0.09401571593231314],[116,162,68,-0.1090729134144713],[116,162,69,-0.07247139665623249],[116,162,70,-0.07716844184802266],[116,162,71,-0.1297139116719916],[116,162,72,-0.1302044513216182],[116,162,73,-0.11000034514480721],[116,162,74,-0.1385744836379338],[116,162,75,-0.1874751720367088],[116,162,76,-0.18952302083093642],[116,162,77,-0.15229993065753225],[116,162,78,-0.13222196291631907],[116,162,79,-0.15972512286203805],[116,163,64,-0.1420047579345925],[116,163,65,-0.11429485880877865],[116,163,66,-0.06496370167943756],[116,163,67,-0.09415500566158783],[116,163,68,-0.10903601430606016],[116,163,69,-0.07262103005530299],[116,163,70,-0.07742315981766199],[116,163,71,-0.12985697922924086],[116,163,72,-0.13036169370454637],[116,163,73,-0.1095648179132852],[116,163,74,-0.1372108665793738],[116,163,75,-0.1856558495875913],[116,163,76,-0.18726663294741883],[116,163,77,-0.15011687317014435],[116,163,78,-0.13063029297184775],[116,163,79,-0.15822372762797748],[116,164,64,-0.14134327565703755],[116,164,65,-0.11416276653829009],[116,164,66,-0.06525517675086522],[116,164,67,-0.0942561726201151],[116,164,68,-0.10895833415837283],[116,164,69,-0.0727419640909339],[116,164,70,-0.07765187306109089],[116,164,71,-0.1299560322511092],[116,164,72,-0.13047143419521065],[116,164,73,-0.10909858319894583],[116,164,74,-0.13581218407700676],[116,164,75,-0.183785670630547],[116,164,76,-0.18496945243577792],[116,164,77,-0.14791372731801758],[116,164,78,-0.12901991854357003],[116,164,79,-0.1566876022489439],[116,165,64,-0.1406353567956972],[116,165,65,-0.11399022862754891],[116,165,66,-0.06551759420293961],[116,165,67,-0.09431934066496951],[116,165,68,-0.10884016790453371],[116,165,69,-0.072834222896529],[116,165,70,-0.07785438678640656],[116,165,71,-0.1300110631508308],[116,165,72,-0.13053371116786996],[116,165,73,-0.10860205922138026],[116,165,74,-0.13437986208982866],[116,165,75,-0.18186674164344263],[116,165,76,-0.18263394289010154],[116,165,77,-0.14569262213437031],[116,165,78,-0.1273923180471976],[116,165,79,-0.15511828161530522],[116,166,64,-0.13988187625996756],[116,166,65,-0.1137776052744838],[116,166,66,-0.06575086128880933],[116,166,67,-0.09434469653112469],[116,166,68,-0.10868187450734504],[116,166,69,-0.07289787830919908],[116,166,70,-0.07803054744992764],[116,166,71,-0.13002212952653958],[116,166,72,-0.1305486364410282],[116,166,73,-0.10807570259403587],[116,166,74,-0.13291535899039103],[116,166,75,-0.1799012164780745],[116,166,76,-0.18026258746251583],[116,166,77,-0.14345567278369123],[116,166,78,-0.12574896587023987],[116,166,79,-0.15351732561909587],[116,167,64,-0.13908376987351287],[116,167,65,-0.11352531587223298],[116,167,66,-0.06595493659659532],[116,167,67,-0.09433248938604967],[116,167,68,-0.10848387616669956],[116,167,69,-0.07293304964578588],[116,167,70,-0.07818024314717836],[116,167,71,-0.12998935420233892],[116,167,72,-0.13051639518344385],[116,167,73,-0.10752000758325982],[116,167,74,-0.1314201625308225],[116,167,75,-0.17789129179062302],[116,167,76,-0.17785788375876888],[116,167,77,-0.1412049764887759],[116,167,78,-0.12409132968092089],[116,167,79,-0.15188631612531853],[116,168,64,-0.13824203250134065],[116,168,65,-0.11323383820075773],[116,168,66,-0.06612983007950334],[116,168,67,-0.0942830302377986],[116,168,68,-0.10824665738432354],[116,168,69,-0.07293990337072624],[116,168,70,-0.0783034039104538],[116,168,71,-0.1299129251182466],[116,168,72,-0.13043724564014242],[116,168,73,-0.10693550528531733],[116,168,74,-0.1298957867742845],[116,168,75,-0.17583920242312887],[116,168,76,-0.17542233877800228],[116,168,77,-0.13894260858383628],[116,168,78,-0.12242086781677176],[116,168,79,-0.15022685394678995],[116,169,64,-0.13735771605319877],[116,169,65,-0.11290370748646698],[116,169,66,-0.06627560295999656],[116,169,67,-0.09419669119903007],[116,169,68,-0.1079707638891489],[116,169,69,-0.07291865265715218],[116,169,70,-0.07840000191218006],[116,169,71,-0.12979309506957326],[116,169,72,-0.1303115186798269],[116,169,73,-0.10632276272362551],[116,169,74,-0.12834376900045008],[116,169,75,-0.17374721674930002],[116,169,76,-0.17295846391046357],[116,169,77,-0.13667061870324348],[116,169,78,-0.12073902675874902],[116,169,79,-0.14854055583024917],[116,170,64,-0.1364319273692284],[116,170,65,-0.11253551533305048],[116,170,66,-0.06639236750901839],[116,170,67,-0.0940739046099022],[116,170,68,-0.10765680142708992],[116,170,69,-0.07286955684297727],[116,170,70,-0.07847005157359412],[116,170,71,-0.1296301812968035],[116,170,72,-0.1301396171657156],[116,170,73,-0.10568238186868499],[116,170,74,-0.12676566659355384],[116,170,75,-0.17161763199789393],[116,170,76,-0.17046877000645497],[116,170,77,-0.13439102711471873],[116,170,78,-0.1190472386962222],[116,170,79,-0.14682905146120925],[116,171,64,-0.13546582599420376],[116,171,65,-0.11212990852716104],[116,171,66,-0.06648028670170332],[116,171,67,-0.09391516202329356],[116,171,68,-0.1073054344194794],[116,171,69,-0.0727929207841009],[116,171,70,-0.07851360957859478],[116,171,71,-0.12942456492756044],[116,171,72,-0.12992201515247578],[116,171,73,-0.10501499858345008],[116,171,74,-0.12516305392156743],[116,171,75,-0.16945276956693037],[116,171,76,-0.1679557625294573],[116,171,77,-0.13210582120517633],[116,171,78,-0.11734691918779946],[116,171,79,-0.1450939804949292],[116,172,64,-0.1344606218470425],[116,172,65,-0.11168758772302957],[116,172,66,-0.06653957375148108],[116,172,67,-0.09372101305630624],[116,172,68,-0.10691738449489017],[116,172,69,-0.07268909410722182],[116,172,70,-0.07853077479295087],[116,172,71,-0.1291766902727594],[116,172,72,-0.12965925691255928],[116,172,73,-0.10432128149712222],[116,172,74,-0.12353751921495557],[116,172,75,-0.1672549703418322],[116,172,76,-0.16542193680580297],[116,172,77,-0.12981695212661393],[116,172,78,-0.1156394649224112],[116,172,79,-0.14333698962058847],[116,173,64,-0.1334175727925955],[116,173,65,-0.11120930601049552],[116,173,66,-0.06657049152490291],[116,173,67,-0.09349206411247195],[116,173,68,-0.1064934288994972],[116,173,69,-0.07255847036509648],[116,173,70,-0.07852168808936168],[116,173,71,-0.12888706397954403],[116,173,72,-0.1293519557958445],[116,173,73,-0.10360193081055803],[116,173,74,-0.1218906614533748],[116,173,75,-0.1650265900304556],[116,173,76,-0.1628697733827814],[116,173,77,-0.12752633160872798],[116,173,78,-0.11392625158461693],[116,173,79,-0.14155972966554278],[116,174,64,-0.13233798212306264],[116,174,65,-0.11069586737136672],[116,174,66,-0.06657335183998671],[116,174,67,-0.09322897697957803],[116,174,68,-0.10603439879159866],[116,174,69,-0.07240148609744915],[116,174,70,-0.07848653207921961],[116,174,71,-0.12855625404411639],[116,174,72,-0.1290007929271232],[116,174,73,-0.10285767703673462],[116,174,74,-0.12022408726857604],[116,174,75,-0.16276999452780572],[116,174,76,-0.1603017335065121],[116,174,77,-0.12523582894418495],[116,174,78,-0.11220863182763806],[116,174,79,-0.1397638527463062],[116,175,64,-0.13122319595666374],[116,175,65,-0.11014812502941378],[116,175,66,-0.06654851465131228],[116,175,67,-0.09293246730848981],[116,175,68,-0.10554117742632696],[116,175,69,-0.07221861980108037],[116,175,70,-0.07842553075225721],[116,175,71,-0.1281848886880751],[116,175,72,-0.12860651574655935],[116,175,73,-0.10208927967991174],[116,175,74,-0.11853940787159635],[116,175,75,-0.1604875553229559],[116,175,76,-0.1577202547302757],[116,175,77,-0.12294726815165402],[116,175,78,-0.11048793335707068],[116,175,79,-0.13795100947258973],[116,176,64,-0.13007460056143205],[116,176,65,-0.10956697969963854],[116,176,66,-0.06649638712547648],[116,176,67,-0.09260330297873942],[116,176,68,-0.10501469823694405],[116,176,69,-0.07201039081301272],[116,176,70,-0.0783389490255451],[116,176,71,-0.12777365510230002],[116,176,72,-0.1281699363987755],[116,176,73,-0.10129752585728856],[116,176,74,-0.11683823601213073],[116,176,75,-0.15818164496041998],[116,176,76,-0.15512774666338297],[116,176,77,-0.1206624253209373],[116,176,78,-0.10876545712776545],[116,176,79,-0.13612284621045556],[116,177,64,-0.12889361961229262],[116,177,65,-0.10895337774288316],[116,177,66,-0.06641742261101267],[116,177,67,-0.09224230235716027],[116,177,68,-0.10445594281957092],[116,177,69,-0.07177735811090734],[116,177,70,-0.07822709220371106],[116,177,71,-0.12732329806297596],[116,177,72,-0.12769192997685774],[116,177,73,-0.10048322886719917],[116,177,74,-0.11512218297780781],[116,177,75,-0.15585463256792062],[116,177,76,-0.15252658686999895],[116,177,77,-0.11838302614373386],[116,177,78,-0.10704247565586397],[116,177,79,-0.13428100241036395],[116,178,64,-0.12768171138975964],[116,178,65,-0.1083083092321266],[116,178,66,-0.06631211950720327],[116,178,67,-0.0918503324561624],[116,178,68,-0.10386593882848284],[116,178,69,-0.07152011903521836],[116,178,70,-0.07809030535250584],[116,178,71,-0.12683461842473417],[116,178,72,-0.12717343262803146],[116,178,73,-0.09964722670801222],[116,178,74,-0.11339285564083225],[116,178,75,-0.15350887946212255],[116,178,76,-0.14991911692664492],[116,178,77,-0.11611074363277267],[116,178,78,-0.10532023144746477],[116,178,79,-0.13242710800552854],[116,179,64,-0.12644036592876626],[116,179,65,-0.1076328059371397],[116,179,66,-0.06618102003663057],[116,179,67,-0.09142830699867309],[116,179,68,-0.10324575778947823],[116,179,69,-0.07123930793788205],[116,179,70,-0.07792897258817709],[116,179,71,-0.1263084714963347],[116,179,72,-0.12661543952828355],[116,179,73,-0.09879038055203478],[116,179,74,-0.11165185355916996],[116,179,75,-0.1511467348434776],[116,179,76,-0.14730763864635513],[116,179,77,-0.11384719603120821],[116,179,78,-0.10359993554489867],[116,179,79,-0.13056278088569823],[116,180,64,-0.12517110212634563],[116,180,65,-0.10692793923450707],[116,180,66,-0.06602470892670816],[116,180,67,-0.09097718439713527],[116,180,68,-0.10259651283915405],[116,180,69,-0.07093559476263414],[116,180,70,-0.07774351628546243],[116,180,71,-0.1257457653047864],[116,180,72,-0.12601900273373112],[116,180,73,-0.09791357317892581],[116,180,74,-0.10990076613923591],[116,180,75,-0.14877053159093312],[116,180,76,-0.1446944104767675],[116,180,77,-0.11159394491342027],[116,180,78,-0.10188276619111578],[116,180,79,-0.12868962445113216],[116,181,64,-0.12387546481696787],[116,181,65,-0.10619481795024582],[116,181,66,-0.0658438120057406],[116,181,67,-0.09049796565425892],[116,181,68,-0.10191935639817692],[116,181,69,-0.07060968356227697],[116,181,70,-0.07753439620726232],[116,181,71,-0.12514745875413222],[116,181,72,-0.1253852289169314],[116,181,73,-0.0970177073731751],[116,181,74,-0.10814116986668608],[116,181,75,-0.14638258216676442],[116,181,76,-0.14208164407866272],[116,181,77,-0.10935249347754442],[116,181,78,-0.10016986761220693],[116,181,79,-0.1268092252511993],[116,182,64,-0.1225550218244429],[116,182,65,-0.10543458614251981],[116,182,66,-0.06563899471942146],[116,182,67,-0.08999169219354729],[116,182,68,-0.10121547778691432],[116,182,69,-0.07026231095848261],[116,182,70,-0.07730210855937718],[116,182,71,-0.12451455968554605],[116,182,72,-0.12471527699678195],[116,182,73,-0.09610370429033266],[116,182,74,-0.10637462561158956],[116,182,75,-0.14398517464126268],[116,182,76,-0.13947150109064904],[116,182,77,-0.10712428502923656],[116,182,78,-0.09846234891756499],[116,182,79,-0.1249231507116316],[116,183,64,-0.12121136099940596],[116,183,65,-0.10464842083219508],[116,183,66,-0.0654109605740123],[116,183,67,-0.08945944362793082],[116,183,68,-0.10048610079205345],[116,183,69,-0.06989424454997331],[116,183,70,-0.0770471849739968],[116,183,71,-0.12384812284575611],[116,183,72,-0.12401035567106979],[116,183,73,-0.09517250179678556],[116,183,74,-0.10460267601395556],[116,183,75,-0.1415805688465356],[116,183,76,-0.13686609008498418],[116,183,77,-0.1049107016554707],[116,183,78,-0.0967612831168031],[116,183,79,-0.12303294695416873],[116,184,64,-0.11984608725140254],[116,184,65,-0.10383752968914353],[116,184,66,-0.065160449512706],[116,184,67,-0.08890233547505809],[116,184,68,-0.09973248119300528],[116,184,69,-0.06950628127509675],[116,184,70,-0.07677019142587177],[116,184,71,-0.12314924777110807],[116,184,72,-0.12327172086105499],[116,184,73,-0.09422505278790956],[116,184,74,-0.10282684295517752],[116,184,75,-0.13917099266807056],[116,184,76,-0.13426746371868128],[116,184,77,-0.10271306308636216],[116,184,78,-0.09506770625204802],[116,184,79,-0.1211401367119138],[116,185,64,-0.11846081958462253],[116,185,65,-0.10300314868240175],[116,185,66,-0.06488823623197952],[116,185,67,-0.08832151682805593],[116,185,68,-0.09895590425709834],[116,185,69,-0.0690992457350306],[116,185,70,-0.07647172708538295],[116,185,71,-0.12241907659492213],[116,185,72,-0.12250067307782513],[116,185,73,-0.09326232348949641],[116,185,74,-0.10104862512058983],[116,185,75,-0.13675863848212616],[116,185,76,-0.13167761608324463],[116,185,77,-0.10053262574225941],[116,185,78,-0.09338261664378227],[116,185,79,-0.1192462173433406],[116,186,64,-0.11705718814632642],[116,186,65,-0.10214653970243587],[116,186,66,-0.06459512844498932],[116,186,67,-0.08771816799076976],[116,186,68,-0.09815768221272454],[116,186,69,-0.06867398848403528],[116,186,70,-0.07615242311298184],[116,186,71,-0.12165879178607404],[116,186,72,-0.12169855472045005],[116,186,73,-0.09228529174740087],[116,186,74,-0.09926949565796227],[116,186,75,-0.13434565974645382],[116,186,76,-0.12909848025564372],[116,186,77,-0.09837058196269291],[116,186,78,-0.09170697424806085],[116,186,79,-0.11735265894758772],[116,187,64,-0.11563683129695637],[116,187,65,-0.10126898816389276],[116,187,66,-0.0642819650993035],[116,187,67,-0.0870934980866797],[116,187,68,-0.09733915170972642],[116,187,69,-0.06823138429332648],[116,187,70,-0.07581294139971567],[116,187,71,-0.1208696138270013],[116,187,72,-0.1208667473162322],[116,187,73,-0.09129494531036653],[116,187,74,-0.09749089993632201],[116,187,75,-0.13193416775118105],[116,187,76,-0.12653192605227978],[116,187,77,-0.0962280594130147],[116,187,78,-0.09004170012246177],[116,187,79,-0.11546090258323784],[116,188,64,-0.11420139271083084],[116,188,65,-0.1003718005972853],[116,188,66,-0.06394961455644124],[116,188,67,-0.08644874265080763],[116,188,68,-0.09650167127638962],[116,188,69,-0.06777233039525554],[116,188,70,-0.07545397325874943],[116,188,71,-0.12005279883953285],[116,188,72,-0.12000666871353813],[116,188,73,-0.09029228011096399],[116,188,74,-0.09571425340905984],[116,188,75,-0.1295262285360389],[116,188,76,-0.1239797579869128],[116,188,77,-0.09410612066390092],[116,188,78,-0.08838767599776079],[116,188,79,-0.11357235859241836],[116,189,64,-0.11275251851626858],[116,189,65,-0.09945630223817331],[116,189,66,-0.06359897274092126],[116,189,67,-0.0857851612140962],[116,189,68,-0.09564661878252316],[116,189,69,-0.06729774471465196],[116,189,70,-0.0750762380730575],[116,189,71,-0.11920963616719758],[116,189,72,-0.11911977023793625],[116,189,73,-0.08927829854961308],[116,189,74,-0.09394093958489994],[116,189,75,-0.12712385997951578],[116,189,76,-0.12144371343279534],[116,189,77,-0.09200576293831125],[116,189,78,-0.08674574395202118],[116,189,79,-0.11168840503175533],[116,190,64,-0.11129185448382996],[116,190,65,-0.09852383462242549],[116,190,66,-0.06323096126666417],[116,190,67,-0.0851040348898139],[116,190,68,-0.09477538891812966],[116,190,69,-0.06680856409425338],[116,190,70,-0.07468048190463171],[116,190,71,-0.11834144592282037],[116,190,72,-0.11820753382249236],[116,190,73,-0.08825400778659377],[116,190,74,-0.09217230810982216],[116,190,75,-0.12472902906478127],[116,190,76,-0.11892546098840806],[116,190,77,-0.0899279180198142],[116,190,78,-0.08511670618337347],[116,190,79,-0.10981038621126724],[116,191,64,-0.10982104327119936],[116,191,65,-0.09757575319613844],[116,191,66,-0.06284652554869798],[116,191,67,-0.08440666397157608],[116,191,68,-0.09388939069716298],[116,191,69,-0.06630574252121016],[116,191,70,-0.07426747607070554],[116,191,71,-0.11744957651033265],[116,191,72,-0.11727146912315985],[116,191,73,-0.08722041804688148],[116,191,74,-0.09040967296258656],[116,191,75,-0.12234364932657354],[116,191,76,-0.11642659904547685],[116,191,77,-0.08787345231565188],[116,191,78,-0.08350132487748668],[116,191,79,-0.10793961134197415],[116,192,64,-0.10834172173310677],[116,192,65,-0.09661342494884874],[116,192,66,-0.06244663290830676],[116,192,67,-0.08369436555268063],[116,192,68,-0.09299004499592581],[116,192,69,-0.06579024936177219],[116,192,70,-0.0738380156927295],[116,192,71,-0.1165354021299167],[116,192,72,-0.11631311063035235],[116,192,73,-0.08617854094264328],[116,192,74,-0.08865431076609878],[116,192,75,-0.11996957848257377],[116,192,76,-0.11394865455721206],[116,192,77,-0.08584316706738529],[116,192,78,-0.08190032216544837],[116,192,79,-0.1060773532926509],[116,193,64,-0.10685551830443776],[116,193,65,-0.09563822607858144],[116,193,66,-0.062032270679780205],[116,193,67,-0.08296847117640213],[116,193,68,-0.09207878213557155],[116,193,69,-0.06526306761125986],[116,193,70,-0.07339291822393373],[116,193,71,-0.11560032027564779],[116,193,72,-0.11533401478777662],[116,193,73,-0.08512938781808396],[116,193,74,-0.08690745921634672],[116,193,75,-0.11760861625207],[116,193,76,-0.11149308200396571],[116,193,77,-0.08383779870142756],[116,193,78,-0.08031438016747831],[116,193,79,-0.1042248474557908],[116,194,64,-0.10536405046448118],[116,194,65,-0.09465153969726085],[116,194,66,-0.061604444327042644],[116,194,67,-0.08223032452692147],[116,194,68,-0.09115703951814155],[116,194,69,-0.06472519216644769],[116,194,70,-0.07293302196143499],[116,194,71,-0.11464574923484498],[116,194,72,-0.11433575712961569],[116,194,73,-0.08407396812127275],[116,194,74,-0.08517031563022875],[116,194,75,-0.11526250236405296],[116,194,76,-0.10906126255281437],[116,194,77,-0.08185801931131753],[116,194,78,-0.0787441411176636],[116,194,79,-0.10238329072251451],[116,195,64,-0.10386892229001399],[116,195,65,-0.09365475358491056],[116,195,66,-0.06116417557844969],[116,195,67,-0.08148127917049694],[116,195,68,-0.09022625932548686],[116,195,69,-0.06417762812752996],[116,195,70,-0.07245918454902713],[116,195,71,-0.11367312559845424],[116,195,72,-0.11331992944716518],[116,195,73,-0.08301328780744548],[116,195,74,-0.08344403561308707],[116,195,75,-0.11293291475615568],[116,195,76,-0.10665450340686902],[116,195,77,-0.07990443726313301],[116,195,78,-0.07719020756467417],[116,195,79,-0.1005538405658339],[116,196,64,-0.10237172164346506],[116,196,65,-0.09264925754706897],[116,196,66,-0.060712500173102577],[116,196,67,-0.08072269513288094],[116,196,68,-0.08928788503684007],[116,196,69,-0.06362138848467425],[116,196,70,-0.07197228174025153],[116,196,71,-0.11268390189639975],[116,196,72,-0.11228813603851968],[116,196,73,-0.08194834732713942],[116,196,74,-0.08172973150590741],[116,196,75,-0.11062146659092276],[116,196,76,-0.10427403654523038],[116,196,77,-0.07797759863817852],[116,196,78,-0.0756531443394508],[116,196,79,-0.09873761513432551],[116,197,64,-0.10087396251026938],[116,197,65,-0.09163638627621384],[116,197,66,-0.06025041516651153],[116,197,67,-0.07995579128953051],[116,197,68,-0.08834321050722312],[116,197,69,-0.06305741443069497],[116,197,70,-0.07147323541922135],[116,197,71,-0.111679555217035],[116,197,72,-0.11124187790392676],[116,197,73,-0.08088008848437186],[116,197,74,-0.08002843359734235],[116,197,75,-0.10832954662188964],[116,197,76,-0.1019209288962412],[116,197,77,-0.07607807582115354],[116,197,78,-0.07413367794787873],[116,197,79,-0.09693579819186453],[116,198,64,-0.09937702660703666],[116,198,65,-0.09061735883019968],[116,198,66,-0.059778819828841645],[116,198,67,-0.07918150409520525],[116,198,68,-0.08739323700772564],[116,198,69,-0.062486496108397606],[116,198,70,-0.07096303030551417],[116,198,71,-0.11066158764862571],[116,198,72,-0.11018244616703898],[116,198,73,-0.07980935467935435],[116,198,74,-0.07834106849724569],[116,198,75,-0.10605819537790516],[116,198,76,-0.0995960237329776],[116,198,77,-0.07420656225700527],[116,198,78,-0.07263287282702256],[116,198,79,-0.09514973007711551],[116,199,64,-0.09788225333853946],[116,199,65,-0.08959336531052493],[116,199,66,-0.059298592618764016],[116,199,67,-0.0784007355974169],[116,199,68,-0.08643892840354188],[116,199,69,-0.061909402243357135],[116,199,70,-0.07044265156280254],[116,199,71,-0.10963149706907267],[116,199,72,-0.109111118091373],[116,199,73,-0.07873698923027155],[116,199,74,-0.07666853835171045],[116,199,75,-0.10380840486196356],[116,199,76,-0.09730012176264956],[116,199,77,-0.07236373223122099],[116,199,78,-0.0711517748725297],[116,199,79,-0.09338071608894735],[116,200,64,-0.09639095068459763],[116,200,65,-0.0885655777267229],[116,200,66,-0.058810601369070535],[116,200,67,-0.0776143848056709],[116,200,68,-0.08548124327262369],[116,200,69,-0.061326896628230175],[116,200,70,-0.06991307684495283],[116,200,71,-0.1085907725047304],[116,200,72,-0.10802918026676608],[116,200,73,-0.0776638451474823],[116,200,74,-0.07501172778031219],[116,200,75,-0.1015811525665851],[116,200,76,-0.09503400047011698],[116,200,77,-0.07055022097788737],[116,200,78,-0.06969136673183289],[116,200,79,-0.09163000231739292],[116,201,64,-0.09490439412106444],[116,201,65,-0.0875351491539377],[116,201,66,-0.058315702875232266],[116,201,67,-0.07682334675306239],[116,201,68,-0.08452113387725559],[116,201,69,-0.06073973751527354],[116,201,70,-0.06937527573410893],[116,201,71,-0.10754089262744371],[116,201,72,-0.10693792636521611],[116,201,73,-0.07659078261046254],[116,201,74,-0.07337150135009082],[116,201,75,-0.09937739819162594],[116,201,76,-0.09279841156019712],[116,201,77,-0.06876662366577148],[116,201,78,-0.06825256864252836],[116,201,79,-0.08989877584984526],[116,202,64,-0.0934238256368675],[116,202,65,-0.08650321295194742],[116,202,66,-0.057814742515995526],[116,202,67,-0.07602851158619653],[116,202,68,-0.08355954517231395],[116,202,69,-0.06014867703435221],[116,202,70,-0.06883020921794412],[116,202,71,-0.10648332432508294],[116,202,72,-0.105838654941875],[116,202,73,-0.07551866651505508],[116,202,74,-0.07174870120086993],[116,202,75,-0.09719808052580756],[116,202,76,-0.09059407856797738],[116,202,77,-0.067013494550967],[116,202,78,-0.06683623941641642],[116,202,79,-0.08818816511364047],[116,203,64,-0.09195035702054054],[116,203,65,-0.0854707916303757],[116,203,66,-0.05730849239759051],[116,203,67,-0.0752306818004764],[116,203,68,-0.08259732271972825],[116,203,69,-0.05955439405948555],[116,203,70,-0.06827875189821951],[116,203,71,-0.10541940050983534],[116,203,72,-0.10473254579936228],[116,203,73,-0.07444827673974627],[116,203,74,-0.07014406159889787],[116,203,75,-0.09504400051007918],[116,203,76,-0.08842158749022482],[116,203,77,-0.0652912663781067],[116,203,78,-0.0654430966828911],[116,203,79,-0.08649913244989167],[116,204,64,-0.09048435072128168],[116,204,65,-0.08443820858431439],[116,204,66,-0.056797248960546436],[116,204,67,-0.07443003765873686],[116,204,68,-0.08163461873332735],[116,204,69,-0.05895705908919573],[116,204,70,-0.06772118514622075],[116,204,71,-0.10434952995589596],[116,204,72,-0.10361986530655964],[116,204,73,-0.07337973962745117],[116,204,74,-0.06855767534828476],[116,204,75,-0.09291509007397612],[116,204,76,-0.08628070219778293],[116,204,77,-0.0635997422959083],[116,204,78,-0.06407319969574861],[116,204,79,-0.08483178086833432],[116,205,64,-0.08902586534811842],[116,205,65,-0.083405498143979],[116,205,66,-0.0562811062941818],[116,205,67,-0.0736265044045407],[116,205,68,-0.08067130316289463],[116,205,69,-0.05835663140858492],[116,205,70,-0.0671575379325248],[116,205,71,-0.10327373612144272],[116,205,72,-0.10250050871939756],[116,205,73,-0.07231292637765366],[116,205,74,-0.06698939305463086],[116,205,75,-0.09081095793793052],[116,205,76,-0.08417088319554568],[116,205,77,-0.06193848726844332],[116,205,78,-0.06272633534215467],[116,205,79,-0.08318586278854681],[116,206,64,-0.08757500289203057],[116,206,65,-0.08237273168875506],[116,206,66,-0.055760177327651365],[116,206,67,-0.07282004678628179],[116,206,68,-0.07970729179261896],[116,206,69,-0.057753098473821006],[116,206,70,-0.06658786426617375],[116,206,71,-0.10219209139475009],[116,206,72,-0.10137443637140102],[116,206,73,-0.07124776735689002],[116,206,74,-0.06543912539766072],[116,206,75,-0.08873130337143065],[116,206,76,-0.08209167740718802],[116,206,77,-0.06030711978283221],[116,206,78,-0.061402313212024696],[116,206,79,-0.08156117250399353],[116,207,64,-0.0861319072045149],[116,207,65,-0.08134001730432187],[116,207,66,-0.05523459438467598],[116,207,67,-0.07201066891359334],[116,207,68,-0.07874254579366381],[116,207,69,-0.05714647610164567],[116,207,70,-0.06601224398096375],[116,207,71,-0.10110471728156226],[116,207,72,-0.10024167316898834],[116,207,73,-0.07018425012840898],[116,207,74,-0.06390683914787441],[116,207,75,-0.08667591075555335],[116,207,76,-0.08004271255577887],[116,207,77,-0.05870530768722573],[116,207,78,-0.06010096412615116],[116,207,79,-0.07995754442628245],[116,208,64,-0.08469676065820314],[116,208,65,-0.08030749767356793],[116,208,66,-0.054704508494369766],[116,208,67,-0.07119841250310222],[116,208,68,-0.07777706950527473],[116,208,69,-0.05653680734007829],[116,208,70,-0.06543078196915358],[116,208,71,-0.10001178220072895],[116,208,72,-0.09910230569489714],[116,208,73,-0.06912241583637531],[116,208,74,-0.06239255174215763],[116,208,75,-0.08464464217561166],[116,208,76,-0.07802368975653357],[116,208,77,-0.057132762741016946],[116,208,78,-0.05882213724044099],[116,208,79,-0.07837484936265521],[116,209,64,-0.08326978086979453],[116,209,65,-0.07927534796875176],[116,209,66,-0.05417008865840556],[116,209,67,-0.07038335510971705],[116,209,68,-0.07681090822146122],[116,209,69,-0.05592416131755064],[116,209,70,-0.06484360736761118],[116,209,71,-0.09891349924377486],[116,209,72,-0.09795647928582624],[116,209,73,-0.06806235564969244],[116,209,74,-0.060896326054508364],[116,209,75,-0.08263743028081176],[116,209,76,-0.07603437642483968],[116,209,77,-0.055589235448323185],[116,209,78,-0.05756569731541994],[116,209,79,-0.07681299094341756],[116,210,64,-0.0818512174886732],[116,210,65,-0.0782437737484783],[116,210,66,-0.053631521078631485],[116,210,67,-0.06956560834509667],[116,210,68,-0.07584414598407521],[116,210,69,-0.055308632072203524],[116,210,70,-0.06425087269986879],[116,210,71,-0.09781012390286335],[116,210,72,-0.0968043950862028],[116,210,73,-0.06700420726465944],[116,210,74,-0.05941826535941042],[116,210,75,-0.08065427140450088],[116,210,76,-0.0740745994902446],[116,210,77,-0.05407451016723473],[116,210,78,-0.05633152214960816],[116,210,79,-0.07527190219831861],[116,211,64,-0.08044134905479242],[116,211,65,-0.07721300886321146],[116,211,66,-0.053089008349186374],[116,211,67,-0.06874531608529479],[116,211,68,-0.07487690338355635],[116,211,69,-0.0546903373632625],[116,211,70,-0.06365275297757382],[116,211,71,-0.09670195177191238],[116,211,72,-0.09564630708078428],[116,211,73,-0.06594815146663145],[116,211,74,-0.05795850848632552],[116,211,75,-0.07869521894016097],[116,211,76,-0.07214423890862512],[116,211,77,-0.052588400488138815],[116,211,78,-0.05511950017520511],[116,211,79,-0.0737515422810243],[116,212,64,-0.07904047992947717],[116,212,65,-0.07618331337311972],[116,212,66,-0.052542768617088766],[116,212,67,-0.06792265266988083],[116,212,68,-0.07390933536899509],[116,212,69,-0.05406941746656582],[116,212,70,-0.0630494447648244],[116,212,71,-0.09558931622585146],[116,212,72,-0.0944825191094957],[116,212,73,-0.06489440875161528],[116,212,74,-0.0565172251644376],[116,212,75,-0.0767603769694956],[116,212,76,-0.07024322146590152],[116,212,77,-0.05113074487493273],[116,212,78,-0.053929528214207],[116,212,79,-0.07225189334081118],[116,213,64,-0.07764893730285256],[116,213,65,-0.0751549714821128],[116,213,66,-0.05199303471519738],[116,213,67,-0.06709782109510196],[116,213,68,-0.0729416290695063],[116,213,69,-0.05344603395645785],[116,213,70,-0.062441165208878484],[116,213,71,-0.09447258608320667],[116,213,72,-0.09331338186852489],[116,213,73,-0.063843236009418],[116,213,74,-0.05509461155735793],[116,213,75,-0.07484989414003484],[116,213,76,-0.0683715148677043],[116,213,77,-0.049701402563416305],[116,213,78,-0.052761509392825354],[116,213,79,-0.07077295754061971],[116,214,64,-0.07626706828165443],[116,214,65,-0.07412828949201104],[116,214,66,-0.05144005327141969],[116,214,67,-0.06627105120394265],[116,214,68,-0.07197400162925985],[116,214,69,-0.052820368476439485],[116,214,70,-0.06182815104077766],[116,214,71,-0.09335216325741884],[116,214,72,-0.09213928990230422],[116,214,73,-0.06279492327059345],[116,214,74,-0.05369088598798245],[116,214,75,-0.07296395779059629],[116,214,76,-0.0665291221102872],[116,214,77,-0.048300249711539595],[116,214,78,-0.05161535121183869],[116,214,79,-0.06931475422061113],[116,215,64,-0.07489523706110834],[116,215,65,-0.07310359378077814],[116,215,66,-0.05088408379795868],[116,215,67,-0.0654425978761277],[116,215,68,-0.0710066980587567],[116,215,69,-0.052192621501062395],[116,215,70,-0.06121065754941371],[116,215,71,-0.09222848040241702],[116,215,72,-0.09096067859147325],[116,215,73,-0.06174979051989642],[116,215,74,-0.05230628485395962],[116,215,75,-0.07110278832358265],[116,215,76,-0.06471607612859664],[116,215,77,-0.04692717579636496],[116,215,78,-0.05049096377016026],[116,215,79,-0.06787731720624535],[116,216,64,-0.07353382218447498],[116,216,65,-0.07208122880871905],[116,216,66,-0.05032539776429862],[116,216,67,-0.06461273922127785],[116,216,68,-0.07003998910515055],[116,216,69,-0.05156301109163747],[116,216,70,-0.060588957532543966],[116,216,71,-0.0911019985580456],[116,216,72,-0.08977802114231292],[116,216,73,-0.060708184579327064],[116,216,74,-0.050941058734423034],[116,216,75,-0.06926663382363418],[116,216,76,-0.06293243471794509],[116,216,77,-0.045582080252767776],[116,216,78,-0.04938825813862718],[116,216,79,-0.06646069225981005],[116,217,64,-0.07218321389378765],[116,217,65,-0.07106155515656963],[116,217,66,-0.049764277657628773],[116,217,67,-0.06378177477864233],[116,217,68,-0.06907416914467034],[116,217,69,-0.0509317716484809],[116,217,70,-0.059963340228333474],[116,217,71,-0.0899732048010857],[116,217,72,-0.08859182558356425],[116,217,73,-0.05967047606422657],[116,217,74,-0.04959546868878216],[116,217,75,-0.06745576492256777],[116,217,76,-0.06117827572614154],[116,217,77,-0.044264869348995414],[116,217,78,-0.04830714488074673],[116,217,79,-0.06506493467423587],[116,218,64,-0.07084381157509427],[116,218,65,-0.07004494759927955],[116,218,66,-0.049201016034261504],[116,218,67,-0.06295002372688864],[116,218,68,-0.06810955410028269],[116,218,69,-0.05029915266242226],[116,218,70,-0.05933411023091939],[116,218,71,-0.08884260990756829],[116,218,72,-0.08740263177675645],[116,218,73,-0.05863705641604174],[116,218,74,-0.04826978274830214],[116,218,75,-0.06567046991071909],[116,218,76,-0.059453692513134156],[116,218,77,-0.04297545329415444],[116,218,78,-0.047247532716796194],[116,218,79,-0.06369010700783201],[116,219,64,-0.06951602130136522],[116,219,65,-0.06903179321924743],[116,219,66,-0.04863591456556626],[116,219,67,-0.06211782310755976],[116,219,68,-0.06714647938789609],[116,219,69,-0.04966541746840009],[116,219,70,-0.05870158639352958],[116,219,71,-0.0877107460321241],[116,219,72,-0.0862110084464347],[116,219,73,-0.05760833501557241],[116,219,74,-0.04696427260116016],[116,219,75,-0.06391105009496284],[116,219,76,-0.05775878967540151],[116,219,77,-0.04171374357267514],[116,219,78,-0.046209327327426726],[116,219,79,-0.06233627695845635],[116,220,64,-0.06820025347597035],[116,220,65,-0.06802248956263],[116,220,66,-0.048069283081828056],[116,220,67,-0.06128552606584199],[116,220,68,-0.06618529789445579],[116,220,69,-0.04903084200397248],[116,220,70,-0.0580661007226321],[116,220,71,-0.08657816441004948],[116,220,72,-0.08501755023680409],[116,220,73,-0.056584736380560406],[116,220,74,-0.04567921047145587],[116,220,75,-0.0621778154036318],[116,220,76,-0.05609367903230527],[116,220,77,-0.04047965050063484],[116,220,78,-0.04519243029259372],[116,220,79,-0.06100351537539405],[116,221,64,-0.06689692057942058],[116,221,65,-0.06701744284225025],[116,221,66,-0.04750143861737547],[116,221,67,-0.060453500112343864],[116,221,68,-0.06522637799135839],[116,221,69,-0.048395713575623375],[116,221,70,-0.057427997266591334],[116,221,71,-0.0854454330877274],[116,221,72,-0.08382287480142722],[116,221,73,-0.05556669745152287],[116,221,74,-0.044414866192472334],[116,221,75,-0.060471080238511436],[116,221,76,-0.05445847587162724],[116,221,77,-0.039273080998731204],[116,221,78,-0.04419673816143736],[116,221,79,-0.05969189440709717],[116,222,64,-0.06560643502176138],[116,222,65,-0.0660170661904577],[116,222,66,-0.046932704460206934],[116,222,67,-0.05962212540956894],[116,222,68,-0.06427010158660132],[116,222,69,-0.047760329635723395],[116,222,70,-0.056787631002247076],[116,222,71,-0.0843131346869235],[116,222,72,-0.0826276199326289],[116,222,73,-0.05455466496965656],[116,222,74,-0.04317150447414931],[116,222,75,-0.05879115957383691],[116,222,76,-0.0528532954513147],[116,222,77,-0.038093936576446705],[116,222,78,-0.04322214164843128],[116,222,79,-0.05840148578267338],[116,223,64,-0.06432920710270736],[116,223,65,-0.06502177796511693],[116,223,66,-0.04636340920922488],[116,223,67,-0.058791793086726336],[116,223,68,-0.06331686221905727],[116,223,69,-0.04712499657297811],[116,223,70,-0.056145366722769735],[116,223,71,-0.08318186420833525],[116,223,72,-0.08143244073722582],[116,223,73,-0.053549092950519975],[116,223,74,-0.041949382364386834],[116,223,75,-0.05713836530194739],[116,223,76,-0.05127824975426081],[116,223,77,-0.03694211152173751],[116,223,78,-0.04226852495089675],[116,223,79,-0.057132359224814945],[116,224,64,-0.06306564308132914],[116,224,65,-0.06403200011175247],[116,224,66,-0.0457938858421145],[116,224,67,-0.05796290358650677],[116,224,68,-0.062367063198248175],[116,224,69,-0.046490028519203835],[116,224,70,-0.055501577930123266],[116,224,71,-0.08205222687964928],[116,224,72,-0.08023800686515983],[116,224,73,-0.05255044025707655],[116,224,74,-0.04074874690345202],[116,224,75,-0.05551300282494321],[116,224,76,-0.04973344449271833],[116,224,77,-0.03581749129038334],[116,224,78,-0.0413357651828098],[116,224,79,-0.05588458099169196],[116,225,64,-0.06181614335674394],[116,225,65,-0.06304815658465181],[116,225,66,-0.04522447079675644],[116,225,67,-0.05713586504734873],[116,225,68,-0.061421115792890536],[116,225,69,-0.045855746175195174],[116,225,70,-0.054856645735373244],[116,225,71,-0.08092483605315433],[116,225,72,-0.07904499979746324],[116,225,73,-0.05155916827544613],[116,225,74,-0.03956983297030242],[116,225,75,-0.05391536789123796],[116,225,76,-0.04821897635858047],[116,225,77,-0.03471995108883678],[116,225,78,-0.04042373191959334],[116,225,79,-0.05465821254507189],[116,226,64,-0.060581100760913685],[116,226,65,-0.062070671829498],[116,226,66,-0.04465550306892042],[116,226,67,-0.05631109172459846],[116,226,68,-0.06047943747136425],[116,226,69,-0.045222475658370044],[116,226,70,-0.05421095776997543],[116,226,71,-0.07980031115772025],[116,226,72,-0.07785411019978374],[116,226,73,-0.0505757386964427],[116,226,74,-0.03841286131919132],[116,226,75,-0.05234574367544844],[116,226,76,-0.04673493051541955],[116,226,77,-0.033649354644168544],[116,226,78,-0.03953228684843471],[116,226,79,-0.05345330934173833],[116,227,64,-0.059360898964353113],[116,227,65,-0.06109996932993233],[116,227,66,-0.044087323328909286],[116,227,67,-0.05548900245390186],[116,227,68,-0.059542450197182746],[116,227,69,-0.04459054737485529],[116,227,70,-0.053564907111153755],[116,227,71,-0.078679275709785],[116,227,72,-0.07666603534754246],[116,227,73,-0.049600611405746266],[116,227,74,-0.03727803680449709],[116,227,75,-0.05080439809959975],[116,227,76,-0.04528137832781773],[116,227,77,-0.03260555315448064],[116,227,78,-0.038661283518562406],[116,227,79,-0.05226991974510694],[116,228,64,-0.05815591099515159],[116,228,65,-0.06013647022016383],[116,228,66,-0.043520273059635295],[116,228,67,-0.0546700191599698],[116,228,68,-0.058610578782343395],[116,228,69,-0.0439602949185367],[116,228,70,-0.052918891224324055],[116,228,71,-0.07756235538768122],[116,228,72,-0.0754814766284824],[116,228,73,-0.04863424248518587],[116,228,74,-0.036165546791196816],[116,228,75,-0.049291581393058906],[116,228,76,-0.04385837532308116],[116,228,77,-0.03158838441287678],[116,228,78,-0.03781056718576919],[116,228,79,-0.051108084053712886],[116,229,64,-0.05696649787136079],[116,229,65,-0.05918059196549939],[116,229,66,-0.0429546937184678],[116,229,67,-0.05385456541369872],[116,229,68,-0.05768424930126851],[116,229,69,-0.04333205399949475],[116,229,70,-0.05227331092541586],[116,229,71,-0.07645017617336247],[116,229,72,-0.074301137128069],[116,229,73,-0.04767708232726635],[116,229,74,-0.03507555974792325],[116,229,75,-0.04780752388806168],[116,229,76,-0.04246595938001253],[116,229,77,-0.03059767209784454],[116,229,78,-0.03697997474538915],[116,229,79,-0.049967833643061205],[116,230,64,-0.05579300734648435],[116,230,65,-0.05823274711246435],[116,230,66,-0.04239092592508949],[116,230,67,-0.05304306504049522],[116,230,68,-0.05676388756790404],[116,230,69,-0.04270616140417849],[116,230,70,-0.051628569365878216],[116,230,71,-0.07534336256535033],[116,230,72,-0.07312571930292301],[116,230,73,-0.046729573864748464],[116,230,74,-0.03400822401909791],[116,230,75,-0.04635243404716551],[116,230,76,-0.04110414913901605],[116,230,77,-0.029633225222711036],[116,230,78,-0.03616933474790973],[116,230,79,-0.04884919021719216],[116,231,64,-0.0546357727674079],[116,231,65,-0.05729334210987312],[116,231,66,-0.041829308677389786],[116,231,67,-0.05223594078240169],[116,231,68,-0.055849917678283505],[116,231,69,-0.04208295398948893],[116,231,70,-0.050985071042970946],[116,231,71,-0.07424253586635621],[116,231,72,-0.07195592274704594],[116,231,73,-0.045792150916650474],[116,231,74,-0.03296366677211378],[116,231,75,-0.04492649671836101],[116,231,76,-0.039772942627356665],[116,231,77,-0.028694837736602207],[116,231,78,-0.035378467491344226],[116,231,79,-0.04775216516612512],[116,232,64,-0.05349511204377322],[116,232,65,-0.05636277620197318],[116,232,66,-0.04127017859728684],[116,232,67,-0.05143361301643321],[116,232,68,-0.054942760620665686],[116,232,69,-0.04146276771282731],[116,232,70,-0.05034322083783933],[116,232,71,-0.07314831254874436],[116,232,72,-0.07079244205523133],[116,232,73,-0.044865236651659236],[116,232,74,-0.0319419931150805],[116,232,75,-0.04352987161300081],[116,232,76,-0.03847231609296582],[116,232,77,-0.02778228826914701],[116,232,78,-0.03460718518448184],[116,232,79,-0.04667675902519425],[116,233,64,-0.05237132672748586],[116,233,65,-0.05544144039454213],[116,233,66,-0.040713869208229655],[116,233,67,-0.05063649853133421],[116,233,68,-0.05404283295514324],[116,233,69,-0.040845936700037666],[116,233,70,-0.049703423083746416],[116,233,71,-0.07206130270068871],[116,233,72,-0.06963596478766745],[116,233,73,-0.043949242169549846],[116,233,74,-0.030943285380224582],[116,233,75,-0.04216269200118393],[116,233,76,-0.03720222303982],[116,233,77,-0.0268953400110519],[116,233,78,-0.03385529217520082],[116,233,79,-0.045622961032199316],[116,234,64,-0.051264701200685416],[116,234,65,-0.05452971649452845],[116,234,66,-0.040160710245934476],[116,234,67,-0.04984500936470027],[116,234,68,-0.05315054556434344],[116,234,69,-0.040232792352987566],[116,234,70,-0.04906608066666189],[116,234,71,-0.07098210855551268],[116,234,72,-0.06848716953927057],[116,234,73,-0.04304456520076643],[116,234,74,-0.029967602567572846],[116,234,75,-0.04082506361865065],[116,234,76,-0.03596259345749311],[116,234,77,-0.026033740722506537],[116,234,78,-0.03312258523804686],[116,234,79,-0.04459074877814609],[116,235,64,-0.05017550197019341],[116,235,65,-0.05362797622357671],[116,235,66,-0.039611027003757175],[116,235,67,-0.04905955170218238],[116,235,68,-0.05226630247660515],[116,235,69,-0.039623662498380174],[116,235,70,-0.048431594160266565],[116,235,71,-0.06991132310637006],[116,235,72,-0.06734672411685638],[116,235,73,-0.042151588923910605],[116,235,74,-0.02901497994314604],[116,235,75,-0.039517063778718955],[116,235,76,-0.034753333237113763],[116,235,77,-0.025197222861278446],[116,235,78,-0.03240885391535544],[116,235,79,-0.043580087947251336],[116,236,64,-0.04910397706617802],[116,236,65,-0.05273658040553766],[116,236,66,-0.039065139713949],[116,236,67,-0.04828052484026048],[116,236,68,-0.05139049976277317],[116,236,69,-0.039018870579240646],[116,236,70,-0.04780036099729051],[116,236,71,-0.06884952880809671],[116,236,72,-0.06621528382681341],[116,236,73,-0.04127068090048921],[116,236,74,-0.028085428785539747],[116,236,75,-0.03823874068232983],[116,236,76,-0.03357432376566159],[116,236,77,-0.024385503822327778],[116,236,78,-0.03171388090634116],[116,236,79,-0.042590932141848885],[116,237,64,-0.048050355542457665],[116,237,65,-0.05185587822779674],[116,237,66,-0.038523362965862326],[116,237,67,-0.04750832021380682],[116,237,68,-0.05052352450747468],[116,237,69,-0.03841873489033065],[116,237,70,-0.04717277467892519],[116,237,71,-0.06779729636770085],[116,237,72,-0.06509348987546351],[116,237,73,-0.04040219212584737],[116,237,74,-0.027178936274396465],[116,237,75,-0.036990112918762384],[116,237,76,-0.032425421690184725],[116,237,77,-0.023598286280694325],[116,237,78,-0.031037442498663335],[116,237,79,-0.04162322278773109],[116,238,64,-0.04701484707559475],[116,238,65,-0.05098620657599974],[116,238,66,-0.03798600516199428],[116,238,67,-0.04674332048939667],[116,238,68,-0.049665753855470576],[116,238,69,-0.037823567858562404],[116,238,70,-0.04654922402387971],[116,238,71,-0.06675518362460557],[116,238,72,-0.06398196788381187],[116,238,73,-0.039546456194807816],[116,238,74,-0.026295465513957426],[116,238,75,-0.035771169149149976],[116,238,76,-0.03130645884325579],[116,238,77,-0.02283525862941342],[116,238,78,-0.03037930903713217],[116,238,79,-0.04067688911542081],[116,239,64,-0.04599764165970476],[116,239,65,-0.0501278894415446],[116,239,66,-0.03745336801262052],[116,239,67,-0.04598589872509989],[116,239,68,-0.04881755413343981],[116,239,69,-0.03723367536933267],[116,239,70,-0.04593009245850793],[116,239,71,-0.06572373452144312],[116,239,72,-0.06288132651795005],[116,239,73,-0.03870378858018475],[116,239,74,-0.02543495568464037],[116,239,75,-0.03458186796456277],[116,239,76,-0.03021724232077591],[116,239,77,-0.022096095504277716],[116,239,78,-0.029739245424421797],[116,239,79,-0.03975184821287691],[116,240,64,-0.04499890939364705],[116,240,65,-0.049281237400959146],[116,240,66,-0.036925746069588365],[116,240,67,-0.0452364175972127],[116,240,68,-0.04797928004727363],[116,240,69,-0.036649356139501744],[116,240,70,-0.045315757349253],[116,240,71,-0.06470347816584623],[116,240,72,-0.06179215623588463],[116,240,73,-0.03787448602194297],[116,240,74,-0.02459732231531816],[116,240,75,-0.033422137910029785],[116,240,76,-0.02915755470299842],[116,240,77,-0.021380458387286316],[116,240,78,-0.02911701164880975],[116,240,79,-0.038848005145090556],[116,241,64,-0.04401880035704706],[116,241,65,-0.04844654716604616],[116,241,66,-0.0364034262996521],[116,241,67,-0.044495228694118025],[116,241,68,-0.04715127395467851],[116,241,69,-0.036070901137540676],[116,241,70,-0.04470658937845615],[116,241,71,-0.06369492798332647],[116,241,72,-0.06071502815108402],[116,241,73,-0.037058826024418706],[116,241,74,-0.023782457668782925],[116,241,75,-0.03229187766558019],[116,241,76,-0.028127154409507242],[116,241,77,-0.02068799628073224],[116,241,78,-0.0285123633341696],[116,241,79,-0.037965253136043625],[116,242,64,-0.04305744457143608],[116,242,65,-0.04762410120351097],[116,242,66,-0.035886687697630995],[116,242,67,-0.04376267187726401],[116,242,68,-0.046333865212679515],[116,242,69,-0.03549859305124171],[116,242,70,-0.044102951964463566],[116,242,71,-0.0626985809610582],[116,242,72,-0.05965049301262286],[116,242,73,-0.03625706645871336],[116,242,74,-0.022990231232738217],[116,242,75,-0.03119095637512098],[116,242,76,-0.027125776178768036],[116,242,77,-0.020018346444018426],[116,242,78,-0.027925052307698546],[116,242,79,-0.03710347380855682],[116,243,64,-0.042114952042596486],[116,243,65,-0.04681416742254809],[116,243,66,-0.035375800939461625],[116,243,67,-0.0430390747089612],[116,243,68,-0.045527369599323964],[116,243,69,-0.03493270580316366],[116,243,70,-0.04350520072674397],[116,243,71,-0.06171491698202699],[116,243,72,-0.05859908030131878],[116,243,73,-0.03546944526703723],[116,243,74,-0.022220490308528688],[116,243,75,-0.030119214113745244],[116,243,76,-0.026153131662794957],[116,243,77,-0.01937113518543578],[116,243,78,-0.02735482718105845],[116,243,79,-0.036262537477563035],[116,244,64,-0.04119141288004897],[116,244,65,-0.04601699892867519],[116,244,66,-0.034871028075073314],[116,244,67,-0.04232475194646504],[116,244,68,-0.044732088808647166],[116,244,69,-0.03437350411381332],[116,244,70,-0.042913682996563965],[116,244,71,-0.060744398248697914],[116,244,72,-0.05756129744082377],[116,244,73,-0.034696180265485134],[116,244,74,-0.021473060689731767],[116,244,75,-0.02907646248388314],[116,244,76,-0.025208910127430498],[116,244,77,-0.01874597870131831],[116,244,78,-0.026801433940862013],[116,244,79,-0.035442303492406464],[116,245,64,-0.04028689748952211],[116,245,65,-0.04523283384196197],[116,245,66,-0.034372622260900085],[116,245,67,-0.041620005101615655],[116,245,68,-0.043948310017762254],[116,245,69,-0.03382124311242435],[116,245,70,-0.04232873737363568],[116,245,71,-0.05978746879510884],[116,245,72,-0.05653762912225064],[116,245,73,-0.03393746904150281],[116,245,74,-0.020747747422733314],[116,245,75,-0.028062485330615602],[116,245,76,-0.02429277924877667],[116,245,77,-0.01814248395523217],[116,245,78,-0.026264616544712016],[116,245,79,-0.03464262062386096],[116,246,64,-0.03940145683410098],[116,246,65,-0.044461895177592275],[116,246,66,-0.03388082753165228],[116,246,67,-0.0409251220650354],[116,246,68,-0.043176305524666704],[116,246,69,-0.03327616799498104],[116,246,70,-0.041750693328933094],[116,246,71,-0.05884455408595744],[116,246,72,-0.055528536740466206],[116,246,73,-0.033193488942016645],[116,246,74,-0.02004433564137389],[116,246,75,-0.027077039566367075],[116,246,76,-0.02340438599633883],[116,246,77,-0.017560249590067398],[116,246,78,-0.02574411751923378],[116,246,79,-0.03386332749162213],[116,247,64,-0.03853512275969857],[116,247,65,-0.04370439078658556],[116,247,66,-0.03339587861087433],[116,247,67,-0.040240376793712715],[116,247,68,-0.042416332455183524],[116,247,69,-0.03273851372900921],[116,247,70,-0.0411798708537524],[116,247,71,-0.057916060701036165],[116,247,72,-0.054534457939843885],[116,247,73,-0.032464397148031024],[116,247,74,-0.019362591467826387],[116,247,75,-0.026119856095192354],[116,247,76,-0.022543357593558203],[116,247,77,-0.016998866866187266],[116,247,78,-0.025239678556830236],[116,247,79,-0.033104253028145444],[116,248,64,-0.03768790838040361],[116,248,65,-0.04296051335433269],[116,248,66,-0.03291800075964813],[116,248,67,-0.0395660290605631],[116,248,68,-0.04166863253721966],[116,248,69,-0.032208504804463946],[116,248,70,-0.04061658015489381],[116,248,71,-0.05700237610307591],[116,248,72,-0.05355580626687058],[116,248,73,-0.03175033083127823],[116,248,74,-0.018702262971917388],[116,248,75,-0.025190640826871585],[116,248,76,-0.02170930254652101],[116,248,77,-0.016457920619056345],[116,248,78,-0.024751041108135367],[116,248,79,-0.03236521697479402],[116,249,64,-0.036859808519250616],[116,249,65,-0.04223044045451499],[116,249,66,-0.03244740966271047],[116,249,67,-0.03890232426440225],[116,249,68,-0.04093343194037096],[116,249,69,-0.03168635502992623],[116,249,70,-0.04006112139572062],[116,249,71,-0.05610386848686714],[116,249,72,-0.05259297092670451],[116,249,73,-0.031051407388386833],[116,249,74,-0.018063081181255443],[116,249,75,-0.02428907577113033],[116,249,76,-0.020901811731835945],[116,249,77,-0.015936990230107535],[116,249,78,-0.02427794696744768],[116,249,79,-0.03164603040641436],[116,250,64,-0.03605080019991241],[116,250,65,-0.04151433465584082],[116,250,66,-0.03198431135111478],[116,250,67,-0.038249493298563274],[116,250,68,-0.04021094117870283],[116,250,69,-0.031172267373154573],[116,250,70,-0.03951378448267832],[116,250,71,-0.05522088670728333],[116,250,72,-0.05164631664044203],[116,250,73,-0.030367724747883615],[116,250,74,-0.017444761134654117],[116,250,75,-0.023414820202385278],[116,250,76,-0.020120459534848447],[116,250,77,-0.015435650604902647],[116,250,78,-0.023820138848664473],[116,250,79,-0.030946496280560627],[116,251,64,-0.035260843184815975],[116,251,65,-0.040812343678936304],[116,251,66,-0.03152890216044657],[116,251,67,-0.03760775247621913],[116,251,68,-0.039501355074371754],[116,251,69,-0.0306664338448929],[116,251,70,-0.03897484889670157],[116,251,71,-0.0543537602836282],[116,251,72,-0.05071618359955981],[116,251,73,-0.029699361745238854],[116,251,74,-0.016847002971522442],[116,251,75,-0.022567511885579965],[116,251,76,-0.019364805029610636],[116,251,77,-0.014953473152988296],[116,251,78,-0.023377360949514422],[116,251,79,-0.030266410007736253],[116,252,64,-0.03448988055522512],[116,252,65,-0.04012460060067536],[116,252,66,-0.031081368723531722],[116,252,67,-0.036977303510347406],[116,252,68,-0.038804852779633116],[116,252,69,-0.030169035424738217],[116,252,70,-0.038444583568829384],[116,252,71,-0.05350279947757747],[116,252,72,-0.04980288751376722],[116,252,73,-0.02904637856112334],[116,252,74,-0.016269493050133248],[116,252,75,-0.021746768353890427],[116,252,76,-0.01863439319231421],[116,252,77,-0.014490026764217857],[116,252,78,-0.022949359502168754],[116,252,79,-0.029605560039189],[116,253,64,-0.03373783932884724],[116,253,65,-0.03945122410313752],[116,253,66,-0.03064188799645005],[116,253,67,-0.03635833354610702],[116,253,68,-0.03812159785462253],[116,253,69,-0.029680242027723593],[116,253,70,-0.03792324679918533],[116,253,71,-0.05266829544179231],[116,253,72,-0.04890671974824024],[116,253,73,-0.028408817217970565],[116,253,74,-0.01571190508789695],[116,253,75,-0.02095218822929561],[116,253,76,-0.017928756140179324],[116,253,77,-0.014044878776653278],[116,253,78,-0.022535883308550556],[116,253,79,-0.028963728468930527],[116,254,64,-0.03300463111057533],[116,254,65,-0.03879231876433302],[116,254,66,-0.030210627316578663],[116,254,67,-0.03575101524326991],[116,254,68,-0.03745173839817929],[116,254,69,-0.029200212510157676],[116,254,70,-0.0374110862183507],[116,254,71,-0.05185052043613639],[116,254,72,-0.04802794754600078],[116,254,73,-0.02778670212992045],[116,254,74,-0.015173901317037176],[116,254,75,-0.0201833525772799],[116,254,76,-0.017247414388118908],[116,254,77,-0.013617595931529907],[116,254,78,-0.022136684258915205],[116,254,79,-0.02834069164681273],[116,255,64,-0.03229015277207281],[116,255,65,-0.0381479753878158],[116,255,66,-0.029787744491336744],[116,255,67,-0.03515550690626787],[116,255,68,-0.036795407228907256],[116,255,69,-0.028729094713191388],[116,255,70,-0.03690833879006979],[116,255,71,-0.05104972810833009],[116,255,72,-0.047166814331052076],[116,255,73,-0.027180040701251674],[116,255,74,-0.01465513364937656],[116,255,75,-0.01943982628725776],[116,255,76,-0.01658987811587201],[116,255,77,-0.013207745311162526],[116,255,78,-0.021751517832539008],[116,255,79,-0.027736220799678413],[116,256,64,-0.03159428715596722],[116,256,65,-0.0375182713682529],[116,256,66,-0.02937338791619647],[116,256,67,-0.03457195265928289],[116,256,68,-0.036152722113548856],[116,256,69,-0.028267025542453136],[116,256,70,-0.03641523085407775],[116,256,71,-0.05026615383573299],[116,256,72,-0.04632354008769589],[116,256,73,-0.026588823968409652],[116,256,74,-0.014155244844226676],[116,256,75,-0.01872115947062583],[116,256,76,-0.015955648438653786],[116,256,77,-0.012814895256027848],[116,256,78,-0.021380143579568647],[116,256,79,-0.027150082657752546],[116,257,64,-0.030916903800524555],[116,257,65,-0.03690327109000858],[116,257,66,-0.028967696720472193],[116,257,67,-0.03400048266373845],[116,257,68,-0.035523786039687213],[116,257,69,-0.027814131082024983],[116,257,70,-0.03593197820775049],[116,257,71,-0.0495000151248644],[116,257,72,-0.045498321811341454],[116,257,73,-0.02601302728080057],[116,257,74,-0.013673869673706754],[116,257,75,-0.018026888868705734],[116,257,76,-0.01534421867475885],[116,257,77,-0.012438616257635721],[116,257,78,-0.021022325583307584],[116,257,79,-0.02658204008360867],[116,258,64,-0.03025785968080433],[116,258,65,-0.036303026355814894],[116,258,66,-0.028570800939352742],[116,258,67,-0.03344121337549032],[116,258,68,-0.03490868752974674],[116,258,69,-0.02737052674096857],[116,258,70,-0.0354587862251897],[116,258,71,-0.04875151206521219],[116,258,72,-0.04469133402602924],[116,258,73,-0.025452611015607182],[116,258,74,-0.013210636080174542],[116,258,75,-0.017356539263245364],[116,258,76,-0.014755075603982514],[116,258,77,-0.012078481824197245],[116,258,78,-0.020677832902448873],[116,258,79,-0.026031852701238173],[116,259,64,-0.029616999962398926],[116,259,65,-0.035717576842586696],[116,259,66,-0.02818282171057271],[116,259,67,-0.03289424783893964],[116,259,68,-0.034307500993200186],[116,259,69,-0.026936317430527372],[116,259,70,-0.03499585001224879],[116,259,71,-0.048020827833801315],[116,259,72,-0.04390272936379855],[116,259,73,-0.024907521321959173],[116,259,74,-0.012765166320784645],[116,259,75,-0.016709624882528768],[116,259,76,-0.014187700711121484],[116,259,77,-0.011734069316448794],[116,259,78,-0.0203464399929447],[116,259,79,-0.025499277522899537],[116,260,64,-0.02899415876399753],[116,260,65,-0.035146950581464574],[116,260,66,-0.02780387149408121],[116,260,67,-0.032359676015255516],[116,260,68,-0.03372028711386863],[116,260,69,-0.026511597770083654],[116,260,70,-0.03454335459593147],[116,260,71,-0.04730812924696184],[116,260,72,-0.0431326392009872],[116,260,73,-0.024377690889907048],[116,260,74,-0.01233707809455473],[116,260,75,-0.016085650796565275],[116,260,76,-0.013641571409242055],[116,260,77,-0.011404960751355378],[116,260,78,-0.020027927109389443],[116,260,79,-0.024984069571595026],[116,261,64,-0.028389159925170576],[116,261,65,-0.03459116445920575],[116,261,66,-0.027434054313038962],[116,261,67,-0.03183757514187079],[116,261,68,-0.033147093269193566],[116,261,69,-0.026096452319911156],[116,261,70,-0.03410147514652843],[116,261,71,-0.046613567355716326],[116,261,72,-0.04238117434653432],[116,261,73,-0.02386303973978968],[116,261,74,-0.011925985647700676],[116,261,75,-0.015484114295279388],[116,261,76,-0.013116162237855647],[116,261,77,-0.011090743571792565],[116,261,78,-0.019722080685986017],[116,261,79,-0.024485982497209173],[116,262,64,-0.027801817775904413],[116,262,65,-0.03405022473807057],[116,262,66,-0.027073466014436366],[116,262,67,-0.03132801012038926],[116,262,68,-0.03258795397834964],[116,262,69,-0.0256909558387209],[116,262,70,-0.033670377230787835],[116,262,71,-0.04593727808119189],[116,262,72,-0.04164842577734874],[116,262,73,-0.023363476027716924],[116,262,74,-0.011531500853356176],[116,262,75,-0.014904506244045964],[116,262,76,-0.012610946031555494],[116,262,77,-0.01079101138063105],[116,262,78,-0.019428693697304007],[116,262,79,-0.024004769184486872],[116,263,64,-0.027231937904568695],[116,263,65,-0.03352412759139201],[116,263,66,-0.026722194547596195],[116,263,67,-0.030831033930030595],[116,263,68,-0.03204289137607244],[116,263,69,-0.02529517356396539],[116,263,70,-0.033250217094350304],[116,263,71,-0.04527938288645813],[116,263,72,-0.04093446541582088],[116,263,73,-0.02287889686304529],[116,263,74,-0.011153234262162413],[116,263,75,-0.014346312411366642],[116,263,76,-0.012125395055106833],[116,263,77,-0.01050536463798528],[116,263,78,-0.01914756599918529],[116,263,79,-0.02354018235119269],[116,264,64,-0.026679317921175415],[116,264,65,-0.033012859652086834],[116,264,66,-0.026380320258825883],[116,264,67,-0.03034668806376147],[116,264,68,-0.03151191570911428],[116,264,69,-0.024909161512866096],[116,264,70,-0.032841141971651416],[116,264,71,-0.044639989481229075],[116,264,72,-0.04023934694461555],[116,264,73,-0.022409189133908675],[116,264,74,-0.010790796120596935],[116,264,75,-0.013809014763950446],[116,264,76,-0.01165898210143024],[116,264,77,-0.010233411320723291],[116,264,78,-0.018878504650297577],[116,264,79,-0.023091975134963832],[116,265,64,-0.02614374821293334],[116,265,65,-0.03251639857141044],[116,265,66,-0.02604791620046063],[116,265,67,-0.029875002984265518],[116,265,68,-0.030995025852262225],[116,265,69,-0.024532966802107748],[116,265,70,-0.03244329042143969],[116,265,71,-0.044019192555885434],[116,265,72,-0.039563106653932166],[116,265,73,-0.021954230337032265],[116,265,74,-0.01044379735425868],[116,265,75,-0.01329209272489745],[116,265,76,-0.011211181549327445],[116,265,77,-0.009974767543622259],[116,265,78,-0.018621324214933076],[116,265,79,-0.02265990166750135],[116,266,64,-0.025625012689264343],[116,266,65,-0.032034713585318834],[116,266,66,-0.025725048452525736],[116,266,67,-0.029415998596922576],[116,266,68,-0.030492209840889697],[116,266,69,-0.02416662798413501],[116,266,70,-0.032056792686020255],[116,266,71,-0.04341707454130744],[116,266,72,-0.038905764316492925],[116,266,73,-0.02151388940824051],[116,266,74,-0.010111850513681108],[116,266,75,-0.012795024391134915],[116,266,76,-0.010781470378220333],[116,266,77,-0.009729058141846651],[116,266,78,-0.018375847047751248],[116,266,79,-0.022243717634891393],[116,267,64,-0.025122889513630117],[116,267,65,-0.03156776608589137],[116,267,66,-0.025411776455269534],[116,267,67,-0.028969684737026276],[116,267,68,-0.030003445417088628],[116,267,69,-0.02381017539801857],[116,267,70,-0.031681771072332186],[116,267,71,-0.04283370639108634],[116,267,72,-0.03826732408563729],[116,267,73,-0.021088027550282724],[116,267,74,-0.0097945706806092],[116,267,75,-0.012317287706713071],[116,267,76,-0.010369329137596679],[116,267,77,-0.009495917214710763],[116,267,78,-0.018141903561261854],[116,267,79,-0.02184318082299675],[116,268,64,-0.024637151819661605],[116,268,65,-0.03111551019532073],[116,268,66,-0.025108153350801788],[116,268,67,-0.02853606166849112],[116,268,68,-0.02952870058646961],[116,268,69,-0.023463631532848972],[116,268,70,-0.03131834035292871],[116,268,71,-0.04226914838272057],[116,268,72,-0.037647775411992705],[116,268,73,-0.02067649905477903],[116,268,74,-0.009491576332993806],[116,268,75,-0.011858361588987499],[116,268,76,-0.009974242869238377],[116,268,77,-0.009274988630927133],[116,268,78,-0.017919332476898978],[116,268,79,-0.021458051646975663],[116,269,64,-0.024167568409246443],[116,269,65,-0.030677893340054878],[116,269,66,-0.02481422633207985],[116,269,67,-0.028115120591350826],[116,269,68,-0.029067934182788507],[116,269,69,-0.023127011401642035],[116,269,70,-0.030966608184920343],[116,269,71,-0.04172345093447819],[116,269,72,-0.03704709397431754],[116,269,73,-0.02027915211528976],[116,269,74,-0.009202490167280673],[116,269,75,-0.011417727005140328],[116,269,76,-0.009595701980692012],[116,269,77,-0.00906592649577838],[116,269,78,-0.017707981060593056],[116,269,79,-0.02108809366410516],[116,270,64,-0.02371390443040242],[116,270,65,-0.03025485682277076],[116,270,66,-0.024530036997516904],[116,270,67,-0.027706844155426468],[116,270,68,-0.028621096437651213],[116,270,69,-0.022800322923782847],[116,270,70,-0.030626675544953987],[116,270,71,-0.04119665543469828],[116,270,72,-0.036465242620263856],[116,270,73,-0.019895829628729565],[116,270,74,-0.008926939876892626],[116,270,75,-0.010994867996915705],[116,270,76,-0.009233203068821184],[116,270,77,-0.008868395580878676],[116,270,78,-0.01750770534379927],[116,270,79,-0.020733074069213132],[116,271,64,-0.023275922032898022],[116,271,65,-0.02984633638991641],[116,271,66,-0.02425562170947467],[116,271,67,-0.027311206977580167],[116,271,68,-0.02818812955260609],[116,271,69,-0.022483567314047024],[116,271,70,-0.030298637178278468],[116,271,71,-0.04068879508036631],[116,271,72,-0.03590217231293331],[116,271,73,-0.01952636998252489],[116,271,74,-0.00866455888607418],[116,271,75,-0.010589272651823377],[116,271,76,-0.008886249692613733],[116,271,77,-0.008682071717370168],[116,271,78,-0.017318370330951797],[116,271,79,-0.020392764172109827],[116,272,64,-0.022853380999744863],[116,272,65,-0.029452262792657558],[116,272,66,-0.023991011954942038],[116,272,67,-0.026928176160057556],[116,272,68,-0.02776896827103927],[116,272,69,-0.022176739476295088],[116,272,70,-0.02998258205997595],[116,272,71,-0.04019989572190577],[116,272,72,-0.03535782307926955],[116,272,73,-0.019170607825129665],[116,272,74,-0.008414987038554271],[116,272,75,-0.01020043401945114],[116,272,76,-0.00855435309475599],[116,272,77,-0.008506642153586633],[116,272,78,-0.017139850194337794],[116,272,79,-0.020066939856515545],[116,273,64,-0.022446039352811746],[116,273,65,-0.02907256233912304],[116,273,66,-0.023736234706697674],[116,273,67,-0.02655771180747641],[116,273,68,-0.02736354044736183],[116,273,69,-0.02187982839996316],[116,273,70,-0.029678593866428116],[116,273,71,-0.03972997671119869],[116,273,72,-0.0348321249564746],[116,273,73,-0.018828374817691756],[116,273,74,-0.008177871240723568],[116,273,75,-0.009827850971880207],[116,273,76,-0.008237032871794024],[116,273,77,-0.008341805878362881],[116,273,78,-0.016972028457368483],[116,273,79,-0.019755382020054682],[116,274,64,-0.02205365393096335],[116,274,65,-0.028707157435946033],[116,274,66,-0.02349131278330009],[116,274,67,-0.026199767540109886],[116,274,68,-0.026971767611086238],[116,274,69,-0.02159281755753802],[116,274,70,-0.029386751455127966],[116,274,71,-0.0392790517499665],[116,274,72,-0.03432499893282054],[116,274,73,-0.018499500364867444],[116,274,74,-0.007952866059265594],[116,274,75,-0.009471029007534975],[116,274,76,-0.007933817592991235],[116,274,77,-0.00818727391131407],[116,274,78,-0.01681479816723448],[116,274,79,-0.019457876994975278],[116,275,64,-0.021675980939236106],[116,275,65,-0.028355967117153463],[116,275,66,-0.023256265206249363],[116,275,67,-0.02585429100117701],[116,275,68,-0.02659356552347457],[116,275,69,-0.021315685301244277],[116,275,70,-0.029107129350949792],[116,275,71,-0.03884712973571752],[116,275,72,-0.033836357879380045],[116,275,73,-0.018183812322951094],[116,275,74,-0.007739634273383986],[116,275,75,-0.009129480998113462],[116,275,76,-0.007644245368259292],[116,275,77,-0.008042769561514543],[116,275,78,-0.016668062057884174],[116,275,79,-0.019174216949303942],[116,276,64,-0.02131277646768242],[116,276,65,-0.02801890755853212],[116,276,66,-0.023031107552688394],[116,276,67,-0.025521224355928716],[116,276,68,-0.026228844724533452],[116,276,69,-0.021048405257222826],[116,276,70,-0.028839798237015657],[116,276,71,-0.03843421560256516],[116,276,72,-0.033366107469369896],[116,276,73,-0.017881137683660214],[116,276,74,-0.007537847381951803],[116,276,75,-0.008802727878526253],[116,276,76,-0.007367864365775998],[116,276,77,-0.007908028656098605],[116,276,78,-0.016531732704233422],[116,276,79,-0.018904200268200746],[116,277,64,-0.020963796978631842],[116,277,65,-0.02769589257568035],[116,277,66,-0.02281585230204557],[116,277,67,-0.02520050478040881],[116,277,68,-0.02587751106824133],[116,277,69,-0.020790946715552323],[116,277,70,-0.02858482544833761],[116,277,71,-0.038040311154327905],[116,277,72,-0.032914147081982204],[116,277,73,-0.0175913032320924],[116,277,74,-0.00734718606608677],[116,277,75,-0.00849029928005034],[116,277,76,-0.007104233280137734],[116,277,77,-0.007782799740391955],[116,277,78,-0.016405732668474175],[116,277,79,-0.018647631915331926],[116,278,64,-0.020628799761203284],[116,278,65,-0.02738683410400693],[116,278,66,-0.022610509175026997],[116,278,67,-0.024892064937833466],[116,278,68,-0.025539466243976326],[116,278,69,-0.02054327501450996],[116,278,70,-0.028342275466430786],[116,278,71,-0.03766541588739902],[116,278,72,-0.03248037068773235],[116,278,73,-0.017314136177514112],[116,278,74,-0.007167340607785431],[116,278,75,-0.008191734107130975],[116,278,76,-0.006852921752079074],[116,278,77,-0.007666844251226826],[116,278,78,-0.016289994639279992],[116,278,79,-0.018404323774098605],[116,279,64,-0.020307543351985844],[116,279,65,-0.027091642658995732],[116,279,66,-0.02241508546338455],[116,279,67,-0.024595833440607385],[116,279,68,-0.02521460828220484],[116,279,69,-0.02030535191752656],[116,279,70,-0.02811221041312355],[116,279,71,-0.03730952780096323],[116,279,72,-0.03206466771251538],[116,279,73,-0.0170494647557818],[116,279,74,-0.006998011265365863],[116,279,75,-0.007906581058477953],[116,279,76,-0.00661351074096578],[116,279,77,-0.00755993666512999],[116,279,78,-0.01618446156463701],[116,279,79,-0.0181740949685821],[116,280,64,-0.019999787920893197],[116,280,65,-0.026810227775123437],[116,280,66,-0.02222958634891674],[116,280,67,-0.024311735296082798],[116,280,68,-0.02490283204259762],[116,280,69,-0.02007713598136781],[116,280,70,-0.027894690541837543],[116,280,71,-0.03697264419223337],[116,280,72,-0.031666923877735176],[116,280,73,-0.01679711880234135],[116,280,74,-0.006838908606573895],[116,280,75,-0.0076343990932978],[116,280,76,-0.006385592851426036],[116,280,77,-0.007461864623101736],[116,280,78,-0.016089086778959642],[116,280,79,-0.017956772164084055],[116,281,64,-0.019705295621246278],[116,281,65,-0.026542498421851038],[116,281,66,-0.02205401521015932],[116,281,67,-0.024039692334222675],[116,281,68,-0.024604029682813902],[116,281,69,-0.019858582914117576],[116,281,70,-0.027689774724629506],[116,281,71,-0.03665476243444597],[116,281,72,-0.03128702201400843],[116,281,73,-0.016556930294854975],[116,281,74,-0.006689753800263032],[116,281,75,-0.0073747578436515705],[116,281,76,-0.00616877261560008],[116,281,77,-0.007372429033694104],[116,281,78,-0.01600383412505323],[116,281,79,-0.017752189847131613],[116,282,64,-0.01942383090318756],[116,282,65,-0.026288363395150623],[116,282,66,-0.02188837391523659],[116,282,67,-0.0237796236154003],[116,282,68,-0.024318091106280387],[116,282,69,-0.019649645921604442],[116,282,70,-0.027497520933322573],[116,282,71,-0.03635588073542685],[116,282,72,-0.030924842846093866],[116,282,73,-0.016328733864611495],[116,282,74,-0.00655027886760587],[116,282,75,-0.007127237974057987],[116,282,76,-0.005962666732588696],[116,282,77,-0.00729144415607936],[116,282,78,-0.015928678071387575],[116,282,79,-0.01756019058480158],[116,283,64,-0.019155160789580808],[116,283,65,-0.02604773168307429],[116,283,66,-0.021732663099362552],[116,283,67,-0.023531445816639247],[116,283,68,-0.024044904387383444],[116,283,69,-0.019450276040981835],[116,283,70,-0.027317986713098853],[116,283,71,-0.03607599887461422],[116,283,72,-0.030580265746842243],[116,283,73,-0.01611236727597471],[116,283,74,-0.0064202268938230635],[116,283,75,-0.00689143148957585],[116,283,76,-0.005766904266771011],[116,283,77,-0.007218737664778501],[116,283,78,-0.015863603825052763],[116,283,79,-0.017380625263207973],[116,284,64,-0.01889905511356145],[116,284,65,-0.025820512803885157],[116,284,66,-0.0215868824254745],[116,284,67,-0.02329507359464417],[116,284,68,-0.023784356172555466],[116,284,69,-0.01926042246021963],[116,284,70,-0.027151229646945184],[116,284,71,-0.03581511891647152],[116,284,72,-0.030253169458079706],[116,284,73,-0.015907671873189214],[116,284,74,-0.006299352201402573],[116,284,75,-0.006666941993664344],[116,284,76,-0.005581126806705162],[116,284,77,-0.007154150697660363],[116,284,78,-0.015808607440645304],[116,284,79,-0.01721335330495042],[116,285,64,-0.018655286716915485],[116,285,65,-0.025606617115289894],[116,285,66,-0.021451030826485026],[116,285,67,-0.023070419924029934],[116,285,68,-0.023536332055810114],[116,285,69,-0.019080032822326135],[116,285,70,-0.026997307809378743],[116,285,71,-0.03557324589827157],[116,285,72,-0.029943432776454396],[116,285,73,-0.01571449299392421],[116,285,74,-0.00618742048575618],[116,285,75,-0.006453384897170036],[116,285,76,-0.005404988586360439],[116,285,77,-0.007097537888759906],[116,285,78,-0.01576369592521528],[116,285,79,-0.01705824286527755],[116,286,64,-0.018423631608474392],[116,286,65,-0.02540595609332945],[116,286,66,-0.021325106727641117],[116,286,67,-0.022857396409208],[116,286,68,-0.023300716927350484],[116,286,69,-0.0189090535131806],[116,286,70,-0.026856280207914904],[116,286,71,-0.03535038849028045],[116,286,72,-0.02965093520238937],[116,286,73,-0.01553268034898705],[116,286,74,-0.0060842089142173665],[116,286,75,-0.006250387579819288],[116,286,76,-0.005238156570448575],[116,286,77,-0.007048767387396309],[116,286,78,-0.015728887339286655],[116,286,79,-0.016915171006671715],[116,287,64,-0.01820386908168777],[116,287,65,-0.02521844257947717],[116,287,66,-0.021209108247465903],[116,287,67,-0.02265591356842561],[116,287,68,-0.023077395293926824],[116,287,69,-0.018747429931904078],[116,287,70,-0.026728207210760763],[116,287,71,-0.035146559626390295],[116,287,72,-0.029375557550369212],[116,287,73,-0.015362088367659654],[116,287,74,-0.005989506189203379],[116,287,75,-0.00605758950558218],[116,287,76,-0.005080310505603464],[116,287,77,-0.0070077208649729356],[116,287,78,-0.015704210893824445],[116,287,79,-0.016784023851486626],[116,288,64,-0.017995781790510958],[116,288,65,-0.025043990994485336],[116,288,66,-0.021103033375742777],[116,288,67,-0.02246588108848502],[116,288,68,-0.02286625156966887],[116,288,69,-0.018595106742747437],[116,288,70,-0.026613150959243548],[116,288,71,-0.034961777103266894],[116,288,72,-0.029117182518869102],[116,288,73,-0.015202576508122675],[116,288,74,-0.00590311257626967],[116,288,75,-0.005874642293244544],[116,288,76,-0.004931142939129109],[116,288,77,-0.006974293510739827],[116,288,78,-0.015689707042882802],[116,288,79,-0.01666469671219144],[116,289,64,-0.01779915601623175],[116,289,65,-0.02488251857498413],[116,289,66,-0.021006881814688086],[116,289,67,-0.02228720925274032],[116,289,68,-0.02266716991492044],[116,289,69,-0.01845202611098807],[116,289,70,-0.026511172819137483],[116,289,71,-0.034796061170733424],[116,289,72,-0.02887569348944893],[116,289,73,-0.015054009409237684],[116,289,74,-0.005824840451521555],[116,289,75,-0.005701210107133371],[116,289,76,-0.004790359232716194],[116,289,77,-0.0069483935879178635],[116,289,78,-0.015685426705954894],[116,289,79,-0.01655709303813806],[116,290,64,-0.017613783390156398],[116,290,65,-0.024733953824377045],[116,290,66,-0.020920668457012813],[116,290,67,-0.022119818651986044],[116,290,68,-0.022480031043994875],[116,290,69,-0.018318111941506163],[116,290,70,-0.026422310229291052],[116,290,71,-0.03464941129453014],[116,290,72,-0.028650961182422517],[116,290,73,-0.014916256086194521],[116,290,74,-0.005754518595722106],[116,290,75,-0.0055369724491180295],[116,290,76,-0.004657677641722154],[116,290,77,-0.006929938938101083],[116,290,78,-0.015691424456870093],[116,290,79,-0.01646111529148239],[116,291,64,-0.017439459456851457],[116,291,65,-0.02459823165457695],[116,291,66,-0.02084441582131713],[116,291,67,-0.02196363485922996],[116,291,68,-0.022304714084189218],[116,291,69,-0.018193278627352195],[116,291,70,-0.026346589757483954],[116,291,71,-0.03452181950482969],[116,291,72,-0.028442851513734543],[116,291,73,-0.014789190499262677],[116,291,74,-0.005691989477145571],[116,291,75,-0.005381622258771768],[116,291,76,-0.004532828898206249],[116,291,77,-0.00691885869599459],[116,291,78,-0.015707762395100647],[116,291,79,-0.016376670191968947],[116,292,64,-0.017275982375313925],[116,292,65,-0.024475288370613107],[116,292,66,-0.020778146082563828],[116,292,67,-0.021818582812812033],[116,292,68,-0.022141098673056588],[116,292,69,-0.01807744058371907],[116,292,70,-0.02628404126786714],[116,292,71,-0.03441328482985036],[116,292,72,-0.02825123409530095],[116,292,73,-0.014672692254494893],[116,292,74,-0.005637106479299501],[116,292,75,-0.005234864040920738],[116,292,76,-0.004415555936095856],[116,292,77,-0.006915095240439738],[116,292,78,-0.0157345142894517],[116,292,79,-0.01630367423619694],[116,293,64,-0.017123152774168995],[116,293,65,-0.02436506172429309],[116,293,66,-0.02072188116212652],[116,293,67,-0.021684586939031362],[116,293,68,-0.021989065062938826],[116,293,69,-0.017970512314032218],[116,293,70,-0.0262346981170705],[116,293,71,-0.034323813585724144],[116,293,72,-0.02807598250560172],[116,293,73,-0.014566646724515055],[116,293,74,-0.005589733784080266],[116,293,75,-0.005096413747134236],[116,293,76,-0.004305613773824442],[116,293,77,-0.006918604129530433],[116,293,78,-0.015771765595436183],[116,293,79,-0.016242053643599253],[116,294,64,-0.01698077356516075],[116,294,65,-0.02426749096835842],[116,294,66,-0.020675642856865566],[116,294,67,-0.021561571287995147],[116,294,68,-0.021848494168154393],[116,294,69,-0.01787240836126395],[116,294,70,-0.026198597192872475],[116,294,71,-0.03425341948813117],[116,294,72,-0.027916974431516785],[116,294,73,-0.014470945122800376],[116,294,74,-0.005549746242942139],[116,294,75,-0.004965998631383531],[116,294,76,-0.004202769371134141],[116,294,77,-0.006929354008456795],[116,294,78,-0.015819613424720155],[116,294,79,-0.01619174422442093],[116,295,64,-0.016848649702712094],[116,295,65,-0.024182516862243472],[116,295,66,-0.020639452930632497],[116,295,67,-0.021449459627843226],[116,295,68,-0.02171926757198164],[116,295,69,-0.01778304323138706],[116,295,70,-0.026175778923418463],[116,295,71,-0.034202123714342],[116,295,72,-0.027774091755773146],[116,295,73,-0.014385484535729798],[116,295,74,-0.0055170292108757905],[116,295,75,-0.004843357063971911],[116,295,76,-0.004106801459590863],[116,295,77,-0.006947326509078345],[116,295,78,-0.015878166503346842],[116,295,79,-0.016152691219606566],[116,296,64,-0.016726587887945177],[116,296,65,-0.024110081627601056],[116,296,66,-0.020613333166473877],[116,296,67,-0.021348175495947537],[116,296,68,-0.021601267492135826],[116,296,69,-0.01770233128782195],[116,296,70,-0.026166287254981623],[116,296,71,-0.03416995491283967],[116,296,72,-0.0276472205880445],[116,296,73,-0.014310167911299358],[116,296,74,-0.005491478342484475],[116,296,75,-0.004728238303999595],[116,296,76,-0.004017500347604711],[116,296,77,-0.00697251614119793],[116,296,78,-0.015947545116969098],[116,296,79,-0.01612484911088182],[116,297,64,-0.01661439621543297],[116,297,65,-0.02405012885168427],[116,297,66,-0.02059730537776475],[116,297,67,-0.02125764220567187],[116,297,68,-0.021494376703436156],[116,297,69,-0.017630186615754072],[116,297,70,-0.026170169596241393],[116,297,71,-0.03415694915759533],[116,297,72,-0.027536251237693207],[116,297,73,-0.014244904003286147],[116,297,74,-0.005472999349191028],[116,297,75,-0.0046204022304049755],[116,297,76,-0.003934667700574716],[116,297,77,-0.007004930175328342],[116,297,78,-0.01602788104114972],[116,297,79,-0.01610818139916016],[116,298,64,-0.016511883826751797],[116,298,65,-0.02400260340182267],[116,298,66,-0.020591391440998436],[116,298,67,-0.021177782871141592],[116,298,68,-0.021398478479587882],[116,298,69,-0.017566522917839802],[116,298,70,-0.026187476789063222],[116,298,71,-0.034163149905408106],[116,298,72,-0.027441078186966762],[116,298,73,-0.014189607329864264],[116,298,74,-0.00546150777618682],[116,298,75,-0.004519619090747348],[116,298,76,-0.0038581163554968524],[116,298,77,-0.007044588575031413],[116,298,78,-0.0161193175126719],[116,298,79,-0.016102660406918264],[116,299,64,-0.016418873051143205],[116,299,65,-0.0239674636936655],[116,299,66,-0.02059562555912845],[116,299,67,-0.021108532529097036],[116,299,68,-0.021313468506973243],[116,299,69,-0.01751126527220653],[116,299,70,-0.026218274817685048],[116,299,71,-0.034188619553440776],[116,299,72,-0.027361611553556212],[116,299,73,-0.014144209531573434],[116,299,74,-0.005456940084001473],[116,299,75,-0.004425680458420813],[116,299,76,-0.0037876812709847704],[116,299,77,-0.00709153499341847],[116,299,78,-0.0162220201741426],[116,299,79,-0.01610827796133358],[116,300,64,-0.016335216295755458],[116,300,65,-0.023944698629676145],[116,300,66,-0.020610071125488273],[116,300,67,-0.02104985478064607],[116,300,68,-0.021239271244640374],[116,300,69,-0.017464366277162243],[116,300,70,-0.026262660828199006],[116,300,71,-0.03423345521452643],[116,300,72,-0.02729779270626928],[116,300,73,-0.014108674836260517],[116,300,74,-0.0054592687834632714],[116,300,75,-0.004338414187384553],[116,300,76,-0.0037232344395875514],[116,300,77,-0.0071458516946564824],[116,300,78,-0.016336191883426936],[116,300,79,-0.016125059879772103],[116,301,64,-0.01626077482194198],[116,301,65,-0.023934306842806265],[116,301,66,-0.020634800308493063],[116,301,67,-0.021001721544568978],[116,301,68,-0.021175819778764742],[116,301,69,-0.017425786072686293],[116,301,70,-0.02632074337337938],[116,301,71,-0.03429776903419876],[116,301,72,-0.02724957475287504],[116,301,73,-0.01408298072811916],[116,301,74,-0.005468483081677581],[116,301,75,-0.004257665166943016],[116,301,76,-0.003664665892328661],[116,301,77,-0.007207640838749921],[116,301,78,-0.016462054116019097],[116,301,79,-0.01615304725958773],[116,302,64,-0.016195415084532944],[116,302,65,-0.023936293347458587],[116,302,66,-0.020669890898783093],[116,302,67,-0.020964109918569066],[116,302,68,-0.021123052638276237],[116,302,69,-0.017395489192553057],[116,302,70,-0.026392639339755667],[116,302,71,-0.03438168502706024],[116,302,72,-0.027216919419570825],[116,302,73,-0.014067114900614896],[116,302,74,-0.005484585697929002],[116,302,75,-0.004183292136275769],[116,302,76,-0.003611880676248021],[116,302,77,-0.007277021650686513],[116,302,78,-0.016599844142050152],[116,302,79,-0.01619229343783535],[116,303,64,-0.016139008399788993],[116,303,65,-0.02395066949003366],[116,303,66,-0.02071542643528145],[116,303,67,-0.02093700228632706],[116,303,68,-0.02108091382738466],[116,303,69,-0.017373444617487837],[116,303,70,-0.02647847403675317],[116,303,71,-0.034485339017412325],[116,303,72,-0.027199797010660456],[116,303,73,-0.014061075280530588],[116,303,74,-0.005507592730027161],[116,303,75,-0.004115167529676672],[116,303,76,-0.003564798861468389],[116,303,77,-0.0073541306094783735],[116,303,78,-0.016749815186594703],[116,303,79,-0.016242863899357113],[116,304,64,-0.01609143059137608],[116,304,65,-0.023977452882510943],[116,304,66,-0.02077149632715609],[116,304,67,-0.020920386420143572],[116,304,68,-0.02104935285636078],[116,304,69,-0.017359625841596685],[116,304,70,-0.02657838128835542],[116,304,71,-0.03460887855122352],[116,304,72,-0.027198186343835116],[116,304,73,-0.014064870044857779],[116,304,74,-0.005537533516996628],[116,304,75,-0.004053177323267397],[116,304,76,-0.0035233555721077953],[116,304,77,-0.0074391216719802465],[116,304,78,-0.016912236606517157],[116,304,79,-0.016304836185258506],[116,305,64,-0.016052561613172256],[116,305,65,-0.02401666731805043],[116,305,66,-0.020838195971094462],[116,305,67,-0.02091425557912183],[116,305,68,-0.021028324770776697],[116,305,69,-0.017354010952854312],[116,305,70,-0.02669250352690393],[116,305,71,-0.034752462777264716],[116,305,72,-0.02721207466003371],[116,305,73,-0.014078517629713355],[116,305,74,-0.005574450496441756],[116,305,75,-0.003997220882705723],[116,305,76,-0.0034875010417283058],[116,305,77,-0.007532166531541228],[116,305,78,-0.017087394082332234],[116,305,79,-0.016378299800335474],[116,306,64,-0.01602228514765646],[116,306,65,-0.0240683426675837],[116,306,66,-0.02091562686331987],[116,306,67,-0.020918608602871206],[116,306,68,-0.021017790179468598],[116,306,69,-0.017356582728569086],[116,306,70,-0.026820991888773738],[116,306,71,-0.03491626229523924],[116,306,72,-0.027241457506863256],[116,306,73,-0.014102046730391152],[116,306,74,-0.005618399054714704],[116,306,75,-0.003947210811214279],[116,306,76,-0.0034572006939169735],[116,306,77,-0.0076334549115170715],[116,306,78,-0.01727558982356775],[116,306,79,-0.01646335611800791],[116,307,64,-0.016000488178571644],[116,307,65,-0.02413251475634167],[116,307,66,-0.02100389670579489],[116,307,67,-0.020933450000758046],[116,307,68,-0.02101771528156607],[116,307,69,-0.017367328746898714],[116,307,70,-0.026964006311789135],[116,307,71,-0.03510045896873183],[116,307,72,-0.027286338594570022],[116,307,73,-0.014135496291585892],[116,307,74,-0.005669447367815135],[116,307,75,-0.0039030727970730135],[116,307,76,-0.003432435248507739],[116,307,77,-0.007743194893628958],[116,307,78,-0.01747714278611191],[116,307,79,-0.016560118281314797],[116,308,64,-0.01598706053651004],[116,308,65,-0.024209225219255646],[116,308,66,-0.021103119506083883],[116,308,67,-0.02095879003676775],[116,308,68,-0.021028071893001158],[116,308,69,-0.01738624151564169],[116,308,70,-0.02712171563438129],[116,308,71,-0.035305245700814],[116,308,72,-0.027346729623560686],[116,308,73,-0.014178915486759704],[116,308,74,-0.005727676230752356],[116,308,75,-0.0038647454595257176],[116,308,76,-0.0034132008538627],[116,308,77,-0.007861613281133984],[116,308,78,-0.01769238890005595],[116,308,79,-0.016668711098535547],[116,309,64,-0.015981894416006816],[116,309,65,-0.024298521334139084],[116,309,66,-0.021213415670348693],[116,309,67,-0.02099464481005901],[116,309,68,-0.021048837472969165],[116,309,69,-0.01741331861966637],[116,309,70,-0.027294297696614303],[116,309,71,-0.035530826170140244],[116,309,72,-0.027422650082468084],[116,309,73,-0.014232363685530078],[116,309,74,-0.005793178872886848],[116,309,75,-0.0038321801918421053],[116,309,76,-0.003399509245521712],[116,309,77,-0.00798895599672606],[116,309,78,-0.017921681306544368],[116,309,79,-0.01678927093200057],[116,310,64,-0.015984883862675436],[116,310,65,-0.024400455831528663],[116,310,66,-0.021334912088955056],[116,310,67,-0.0210410363313106],[116,310,68,-0.021079995150867694],[116,310,69,-0.017448562888481154],[116,310,70,-0.02748193944333393],[116,310,71,-0.035777414525373044],[116,310,72,-0.02751412701574775],[116,310,73,-0.014295910407869837],[116,310,74,-0.005866060756558267],[116,310,75,-0.003805341000067575],[116,310,76,-0.00339138793142072],[116,310,77,-0.008125488515046232],[116,310,78,-0.018165390602159475],[116,310,79,-0.01692194557865432],[116,311,64,-0.01599592422887903],[116,311,65,-0.024515086680044967],[116,311,66,-0.021467742214174936],[116,311,67,-0.02109799259497709],[116,311,68,-0.02112153375429992],[116,311,69,-0.01749198258558951],[116,311,70,-0.027684837029829313],[116,311,71,-0.03604523503579317],[116,311,72,-0.027621194759792085],[116,311,73,-0.014369635263822194],[116,311,74,-0.005946439356102523],[116,311,75,-0.003784204335784706],[116,311,76,-0.003388880403769267],[116,311,77,-0.008271496329643779],[116,311,78,-0.01842390508938967],[116,311,79,-0.01706689414095036],[116,312,64,-0.016014911596377877],[116,312,65,-0.024642476846093685],[116,312,66,-0.02161204612945392],[116,312,67,-0.02116554764756432],[116,312,68,-0.02117344783876363],[116,312,69,-0.01754359162139569],[116,312,70,-0.027903195930515892],[116,312,71,-0.03633452169595139],[116,312,72,-0.027743894646527448],[116,312,73,-0.014453627877326338],[116,312,74,-0.006034443914143985],[116,312,75,-0.003768758920985241],[116,312,76,-0.0033920463775479405],[116,312,77,-0.008427285454171858],[116,312,78,-0.018697631031735714],[116,312,79,-0.017224286886653607],[116,313,64,-0.01604174216435011],[116,313,65,-0.024782694026694016],[116,313,66,-0.021767970609696805],[116,313,67,-0.021243741652026464],[116,313,68,-0.021235737719682606],[116,313,69,-0.017603409791546776],[116,313,70,-0.028137231051270306],[116,313,71,-0.03664551778223435],[116,313,72,-0.027882274673443726],[116,313,73,-0.014547987792643727],[116,313,74,-0.006130215171836991],[116,313,75,-0.0037590055629272015],[116,313,76,-0.003400962055454401],[116,313,77,-0.008593182957546191],[116,313,78,-0.0189869929120269],[116,313,79,-0.017394305096135564],[116,314,64,-0.016076311601159552],[116,314,65,-0.024935810354197646],[116,314,66,-0.021935669172012246],[116,314,67,-0.021332620948378622],[116,314,68,-0.021308409507473775],[116,314,69,-0.017671463042714174],[116,314,70,-0.02838716684617415],[116,314,71,-0.036978475359244166],[116,314,72,-0.028036389138996698],[116,314,73,-0.014652824361774413],[116,314,74,-0.006233905069533952],[116,314,75,-0.0037549569566345435],[116,314,76,-0.0034157204189935704],[116,314,77,-0.008769537532736266],[116,314,78,-0.019292433692535308],[116,314,79,-0.017577140895760932],[116,315,64,-0.016118514358201916],[116,315,65,-0.02510190207161285],[116,315,66,-0.022115302116317025],[116,315,67,-0.021432238110581255],[116,315,68,-0.021391475146352056],[116,315,69,-0.01774778376790911],[116,315,70,-0.02865323743952371],[116,315,71,-0.03733365473390072],[116,315,72,-0.02820629824228908],[116,315,73,-0.01476825661112949],[116,315,74,-0.006345676414146103],[116,315,75,-0.003756637472462633],[116,315,76,-0.00343643154525269],[116,315,77,-0.008956720098779977],[116,315,78,-0.019614415075481256],[116,315,79,-0.01777299707596731],[116,316,64,-0.01616824294414409],[116,316,65,-0.025281049177215183],[116,316,66,-0.022307036555164497],[116,316,67,-0.02154265199971616],[116,316,68,-0.021484952457583525],[116,316,69,-0.01783241113351223],[116,316,70,-0.028935686754071887],[116,316,71,-0.037711323855212364],[116,316,72,-0.02839206764592014],[116,316,73,-0.014894413085610625],[116,316,74,-0.006465702509267329],[116,316,75,-0.003764082925925091],[116,316,76,-0.0034632229487424494],[116,316,77,-0.009155124435528702],[116,316,78,-0.019953417762531525],[116,316,79,-0.01798208689265069],[116,317,64,-0.01622538715786377],[116,317,65,-0.02547333503709567],[116,317,66,-0.022511046432121824],[116,317,67,-0.021663927813431273],[116,317,68,-0.02158886518790277],[116,317,69,-0.01792539144027501],[116,317,70,-0.02923476864656646],[116,317,71,-0.03811175765769471],[116,317,72,-0.028593768000868366],[116,317,73,-0.015031431668134912],[116,317,74,-0.0065941667439523175],[116,317,75,-0.0037773403267612935],[116,317,76,-0.003496239947525902],[116,317,77,-0.00936516785054168],[116,317,78,-0.020309941711899964],[116,317,79,-0.018204633850485437],[116,318,64,-0.01628983327838789],[116,318,65,-0.025678845964249988],[116,318,66,-0.02272751252795953],[116,318,67,-0.021796137131564003],[116,318,68,-0.021703243063787472],[116,318,69,-0.01802677852059553],[116,318,70,-0.02955074705172869],[116,318,71,-0.03853523734645512],[116,318,72,-0.028811474432245316],[116,318,73,-0.015179459372513958],[116,318,74,-0.006731262135855661],[116,318,75,-0.00379646760399344],[116,318,76,-0.0035356460526717697],[116,318,77,-0.009587291877434293],[116,318,78,-0.0206845063916546],[116,318,79,-0.018440871466813648],[116,319,64,-0.01636146938081984],[116,319,65,-0.025897670412757704],[116,319,66,-0.02295661347344607],[116,319,67,-0.021939348639206793],[116,319,68,-0.02182812020494641],[116,319,69,-0.01813663399809083],[116,319,70,-0.029883888998021465],[116,319,71,-0.03898204710018416],[116,319,72,-0.02904526614267781],[116,319,73,-0.015338653576440407],[116,319,74,-0.006877200208448949],[116,319,75,-0.0038215427153025414],[116,319,76,-0.0035816251496664413],[116,319,77,-0.009821958705384153],[116,319,78,-0.021077649323928895],[116,319,79,-0.01869104824255871],[117,-64,64,-0.10296504900521539],[117,-64,65,-0.049521231761230744],[117,-64,66,-0.10475590992503105],[117,-64,67,-0.09392266025960615],[117,-64,68,0.0014385144151152474],[117,-64,69,0.06078214302728996],[117,-64,70,0.04585824673808422],[117,-64,71,0.02354767338634049],[117,-64,72,-0.052852860411859326],[117,-64,73,-0.21575303331784518],[117,-64,74,-0.2633244065874029],[117,-64,75,-0.20222677067051806],[117,-64,76,-0.19500863275112823],[117,-64,77,-0.14654491385287644],[117,-64,78,-0.08334794387185612],[117,-64,79,-0.1327081856073073],[117,-63,64,-0.10156996937595912],[117,-63,65,-0.04914233212092239],[117,-63,66,-0.10238316607746602],[117,-63,67,-0.0914183745520756],[117,-63,68,0.002405790975513908],[117,-63,69,0.06060055635315354],[117,-63,70,0.04536909753869972],[117,-63,71,0.023193330838998723],[117,-63,72,-0.05081866952414712],[117,-63,73,-0.21049567057027657],[117,-63,74,-0.25776818795876116],[117,-63,75,-0.19814735957929241],[117,-63,76,-0.19142912141316432],[117,-63,77,-0.14459376922436004],[117,-63,78,-0.08257507509888201],[117,-63,79,-0.13097900150456415],[117,-62,64,-0.10020846063604565],[117,-62,65,-0.04877739456669601],[117,-62,66,-0.10006226647810193],[117,-62,67,-0.08897560903864439],[117,-62,68,0.003305222907483613],[117,-62,69,0.06035999274694738],[117,-62,70,0.04485070115504268],[117,-62,71,0.022830481144711198],[117,-62,72,-0.04884717765931644],[117,-62,73,-0.2053594630024058],[117,-62,74,-0.25233991538269746],[117,-62,75,-0.19417466505006287],[117,-62,76,-0.18794271918310962],[117,-62,77,-0.14269167291445192],[117,-62,78,-0.08183808729600402],[117,-62,79,-0.12929113969167555],[117,-61,64,-0.09887918143150341],[117,-61,65,-0.04842549497499598],[117,-61,66,-0.09779185734584186],[117,-61,67,-0.08659275791645937],[117,-61,68,0.004139271712409812],[117,-61,69,0.060063043083221204],[117,-61,70,0.044304655545876294],[117,-61,71,0.022459879581324373],[117,-61,72,-0.04693656377106629],[117,-61,73,-0.20034123902395798],[117,-61,74,-0.2470358273680481],[117,-61,75,-0.19030512923804013],[117,-61,76,-0.1845463909831172],[117,-61,77,-0.14083675056267553],[117,-61,78,-0.08113505685029207],[117,-61,79,-0.12764283062446397],[117,-60,64,-0.09758081667475185],[117,-60,65,-0.04808573366219654],[117,-60,66,-0.09557060614318005],[117,-60,67,-0.0842682497147705],[117,-60,68,0.004910331308499797],[117,-60,69,0.05971219630150334],[117,-60,70,0.04373244513622124],[117,-60,71,0.022082164241248054],[117,-60,72,-0.04508511147151787],[117,-60,73,-0.19543788483964777],[117,-60,74,-0.24185218709927142],[117,-60,75,-0.18653520291142164],[117,-60,76,-0.18123707411842824],[117,-60,77,-0.13902709042645497],[117,-60,78,-0.08046405665930773],[117,-60,79,-0.12603228830948965],[117,-59,64,-0.09631204904330022],[117,-59,65,-0.04775722170739145],[117,-59,66,-0.09339718802339411],[117,-59,67,-0.08200052785416496],[117,-59,68,0.005620748496119349],[117,-59,69,0.05930987777023859],[117,-59,70,0.04313551029833972],[117,-59,71,0.02169794057419602],[117,-59,72,-0.04329113946951525],[117,-59,73,-0.19064630345478017],[117,-59,74,-0.2367852735500623],[117,-59,75,-0.18286136420111176],[117,-59,76,-0.17801170546037626],[117,-59,77,-0.13726076154283592],[117,-59,78,-0.07982316577776027],[117,-59,79,-0.1244577138612368],[117,-58,64,-0.09507155884718042],[117,-58,65,-0.04743908016405968],[117,-58,66,-0.09127028676834026],[117,-58,67,-0.0797880520666556],[117,-58,68,0.006272821571853915],[117,-58,69,0.0588584483809773],[117,-58,70,0.04251524728912721],[117,-58,71,0.02130778213472573],[117,-58,72,-0.04155300254057781],[117,-58,73,-0.18596341707303315],[117,-58,74,-0.23183138329930775],[117,-58,75,-0.1792801193358225],[117,-58,76,-0.17486722240186806],[117,-58,77,-0.13553581378908547],[117,-58,78,-0.07921046870767642],[117,-58,79,-0.12291729552701891],[117,-57,64,-0.09385802383161346],[117,-57,65,-0.04713043920659856],[117,-57,66,-0.08918859569850103],[117,-57,67,-0.07762929975514883],[117,-57,68,0.00686879922616911],[117,-57,69,0.05836020400796663],[117,-57,70,0.04187300841613487],[117,-57,71,0.02091223138419309],[117,-57,72,-0.03986909244860259],[117,-57,73,-0.1813861694641266],[117,-57,74,-0.226986832257517],[117,-57,75,-0.17578800322388344],[117,-57,76,-0.1718005636455024],[117,-57,77,-0.1338502778070345],[117,-57,78,-0.07862405449267261],[117,-57,79,-0.12140920859513168],[117,-56,64,-0.0926701189105139],[117,-56,65,-0.04683043721440024],[117,-56,66,-0.08715081855181256],[117,-56,67,-0.07552276728593409],[117,-56,68,0.007410879723402126],[117,-56,69,0.05781737533649445],[117,-56,70,0.04121010245329519],[117,-56,71,0.020511800581146173],[117,-56,72,-0.038237838787485864],[117,-56,73,-0.17691152828531193],[117,-56,74,-0.22224795731246533],[117,-56,75,-0.17238157990763725],[117,-56,76,-0.16880866985266563],[117,-56,77,-0.13220216481549832],[117,-56,78,-0.07806201564163445],[117,-56,79,-0.11993161520682032],[117,-55,64,-0.09150651584048082],[117,-55,65,-0.046538219802505436],[117,-55,66,-0.08515567033477409],[117,-55,67,-0.07346697121783369],[117,-55,68,0.007901210351883426],[117,-55,69,0.057232128044064516],[117,-55,70,0.04052779529415392],[117,-55,71,0.0201069727545855],[117,-55,72,-0.036657709744405784],[117,-55,73,-0.1725364873618017],[117,-55,74,-0.2176111179086838],[117,-55,75,-0.16905744290858946],[117,-55,76,-0.1658884841707157],[117,-55,77,-0.1305894663276014],[117,-55,78,-0.07752244690305111],[117,-55,79,-0.11848266409173291],[117,-54,64,-0.09036588284516466],[117,-54,65,-0.046252938807799245],[117,-54,66,-0.08320187814920336],[117,-54,67,-0.07146044947150358],[117,-54,68,0.008341887131835004],[117,-54,69,0.05660656331831836],[117,-54,70,0.0398273108305093],[117,-54,71,0.01969820275497327],[117,-54,72,-0.03512721278632517],[117,-54,73,-0.16825806893157752],[117,-54,74,-0.21307269757597333],[117,-54,75,-0.1658122154820665],[117,-54,76,-0.16303695265643225],[117,-54,77,-0.12901015379084474],[117,-54,78,-0.07700344391200714],[117,-54,79,-0.11706049024724458],[117,-53,64,-0.08924696264692475],[117,-53,65,-0.04597379243700196],[117,-53,66,-0.08128825624222549],[117,-53,67,-0.06950182712913462],[117,-53,68,0.008734963050869684],[117,-53,69,0.05594277272686826],[117,-53,70,0.03910987051172944],[117,-53,71,0.01928593769149466],[117,-53,72,-0.0336449295684413],[117,-53,73,-0.16407349607786784],[117,-53,74,-0.2086293256528609],[117,-53,75,-0.16264272545571595],[117,-53,76,-0.16025119964051046],[117,-53,77,-0.1274623197302883],[117,-53,78,-0.07650318811313853],[117,-53,79,-0.11566334732614143],[117,-52,64,-0.08814909943784115],[117,-52,65,-0.0457003041799937],[117,-52,66,-0.07941419614734996],[117,-52,67,-0.06759024030018317],[117,-52,68,0.009082508979131047],[117,-52,69,0.05524320191114961],[117,-52,70,0.03837694983432377],[117,-52,71,0.01887074557571366],[117,-52,72,-0.032209734149737386],[117,-52,73,-0.15998131069544091],[117,-52,74,-0.20427933265727355],[117,-52,75,-0.1595471618443497],[117,-52,76,-0.15752969089573962],[117,-52,77,-0.12594512613048509],[117,-52,78,-0.07602052978493343],[117,-52,79,-0.11429049663489126],[117,-51,64,-0.08707192732655215],[117,-51,65,-0.04543216630239649],[117,-51,66,-0.07757934736419458],[117,-51,67,-0.06572504920426722],[117,-51,68,0.009386592915428467],[117,-51,69,0.05451043385364624],[117,-51,70,0.037630117040181134],[117,-51,71,0.018453233238781928],[117,-51,72,-0.030820624439950716],[117,-51,73,-0.15598062629490175],[117,-51,74,-0.20002180891616209],[117,-51,75,-0.15652433665257917],[117,-51,76,-0.1548715043128287],[117,-51,77,-0.12445823524758136],[117,-51,78,-0.07555465440779971],[117,-51,79,-0.11294167236894383],[117,-50,64,-0.08601509667192342],[117,-50,65,-0.04516909758543518],[117,-50,66,-0.07578335264615489],[117,-50,67,-0.06390560597743024],[117,-50,68,0.00964925152659882],[117,-50,69,0.053746996862110104],[117,-50,70,0.036870895244063846],[117,-50,71,0.018033977513026406],[117,-50,72,-0.02947659599219906],[117,-50,73,-0.15207051866396182],[117,-50,74,-0.19585582157012504],[117,-50,75,-0.1535730661811211],[117,-50,76,-0.15227571270065998],[117,-50,77,-0.12300131479975285],[117,-50,78,-0.07510478424807869],[117,-50,79,-0.1116166170596892],[117,-49,64,-0.08497827278266364],[117,-49,65,-0.04491084227354705],[117,-49,66,-0.07402584702183121],[117,-49,67,-0.06213125443832707],[117,-49,68,0.009872487273232923],[117,-49,69,0.05295536045003103],[117,-49,70,0.03610076012574546],[117,-49,71,0.017613524894644055],[117,-49,72,-0.028176642806996305],[117,-49,73,-0.1482500250223537],[117,-49,74,-0.19178041256155204],[117,-49,75,-0.15069216962037785],[117,-49,76,-0.1497413827890188],[117,-49,77,-0.12157403647356474],[117,-49,78,-0.07467017756433829],[117,-49,79,-0.1103150797791554],[117,-48,64,-0.08396113605783938],[117,-48,65,-0.04465716974092015],[117,-48,66,-0.07230645824973538],[117,-48,67,-0.06040133108379237],[117,-48,68,0.010058265911015803],[117,-48,69,0.052137932564345804],[117,-48,70,0.035321138576222155],[117,-48,71,0.017192391657753443],[117,-48,72,-0.026919758757198015],[117,-48,73,-0.1445181464560306],[117,-48,74,-0.18779460080226731],[117,-48,75,-0.14788047087013798],[117,-48,76,-0.14726757745618668],[117,-48,77,-0.12017607702286164],[117,-48,78,-0.07425012926028324],[117,-48,79,-0.10903681676578306],[117,-47,64,-0.08296338207038731],[117,-47,65,-0.04440787409863676],[117,-47,66,-0.07062480727013651],[117,-47,67,-0.058715166056252474],[117,-47,68,0.010208514214708453],[117,-47,69,0.05129705711999943],[117,-47,70,0.03453340755003256],[117,-47,71,0.01677106404097273],[117,-47,72,-0.025704938955775466],[117,-47,73,-0.14087385032312494],[117,-47,74,-0.18389738426417934],[117,-47,75,-0.14513680021899178],[117,-47,76,-0.14485335781172898],[117,-47,77,-0.11880711925073069],[117,-47,78,-0.07384397134681989],[117,-47,79,-0.10778159193272109],[117,-46,64,-0.08198472159719243],[117,-46,65,-0.0441627737476907],[117,-46,66,-0.06898050865483796],[117,-46,67,-0.05707208408339462],[117,-46,68,0.010325117920874012],[117,-46,69,0.05043501183465864],[117,-46,70,0.03373889311663752],[117,-46,71,0.016349998501062404],[117,-46,72,-0.024531181066292495],[117,-46,73,-0.13731607262909268],[117,-46,74,-0.18008774199544497],[117,-46,75,-0.14245999588930475],[117,-46,76,-0.14249778513791814],[117,-46,77,-0.11746685287954557],[117,-46,78,-0.07345107322333377],[117,-46,79,-0.10654917726582873],[117,-45,64,-0.08102488059921416],[117,-45,65,-0.04392171088296712],[117,-45,66,-0.06737317105546323],[117,-45,67,-0.055471405390372604],[117,-45,68,0.010409919885074814],[117,-45,69,0.04955400635634328],[117,-45,70,0.032938869703638206],[117,-45,71,0.015929622028381135],[117,-45,72,-0.023397486555954618],[117,-45,73,-0.13384372036843642],[117,-45,74,-0.1763646360645346],[117,-45,75,-0.13984890545355685],[117,-45,76,-0.14019992269341264],[117,-45,77,-0.11615497531416488],[117,-45,78,-0.07307084178829402],[117,-45,79,-0.10533935311845542],[117,-44,64,-0.08008360015533586],[117,-44,65,-0.043684550953399466],[117,-44,66,-0.06580239765097397],[117,-44,67,-0.05391244658505591],[117,-44,68,0.010464718448650347],[117,-44,69,0.04865618067600878],[117,-44,70,0.032134559524169215],[117,-44,71,0.015510332518774473],[117,-44,72,-0.022302861891423845],[117,-44,73,-0.13045567383075096],[117,-44,74,-0.172727013434814],[117,-44,75,-0.13730238712811113],[117,-44,76,-0.13795883738322864],[117,-44,77,-0.11487119230363053],[117,-44,78,-0.07270272138952234],[117,-44,79,-0.1041519084101405],[117,-43,64,-0.07916063635368593],[117,-43,65,-0.043451182083481026],[117,-43,66,-0.06426778659509548],[117,-43,67,-0.052394521516856564],[117,-43,68,0.010491266009706554],[117,-43,69,0.047743603816510306],[117,-43,70,0.031327132180554766],[117,-43,71,0.015092499196613735],[117,-43,72,-0.021246319677718825],[117,-43,73,-0.12715078886893405],[117,-43,74,-0.16917380777222982],[117,-43,75,-0.1348193109505076],[117,-43,76,-0.13577360129928004],[117,-43,77,-0.11361521850683609],[117,-43,78,-0.07234619362454715],[117,-43,79,-0.10298664073632001],[117,-42,64,-0.07825576014398436],[117,-42,65,-0.043221514461049076],[117,-42,66,-0.06276893146411147],[117,-42,67,-0.050916942109535804],[117,-42,68,0.010491267792737043],[117,-42,69,0.046818272789078484],[117,-42,70,0.030517704436274554],[117,-42,71,0.014676463083926195],[117,-42,72,-0.020226879740518514],[117,-42,73,-0.12392789912743005],[117,-42,74,-0.16570394118856446],[117,-42,75,-0.13239855984625765],[117,-42,76,-0.13364329313581216],[117,-42,77,-0.11238677796755366],[117,-42,78,-0.0720007770013017],[117,-42,79,-0.10184335639586015],[117,-41,64,-0.07736875715465177],[117,-41,65,-0.04299547969634289],[117,-41,66,-0.06130542170562086],[117,-41,67,-0.04947901916859323],[117,-41,68,0.010466380810761535],[117,-41,69,0.04588211180782473],[117,-41,70,0.029707340147970645],[117,-41,71,0.01426253751051051],[117,-41,72,-0.019243570152476765],[117,-41,73,-0.12078581822868172],[117,-41,74,-0.16231632592286396],[117,-41,75,-0.130039030591261],[117,-41,76,-0.13156699948437198],[117,-41,77,-0.11118560450438912],[117,-41,78,-0.0716660264695125],[117,-41,79,-0.10072187034323224],[117,-40,64,-0.07649942747840287],[117,-40,65,-0.042773030157234715],[117,-40,66,-0.0598768430887888],[117,-40,67,-0.04808006316384753],[117,-40,68,0.010418213013559852],[117,-40,69,0.04493697175243028],[117,-40,70,0.028897050349114863],[117,-40,71,0.013851008660063276],[117,-40,72,-0.018295428204249262],[117,-40,73,-0.11772334191607244],[117,-40,74,-0.15900986596359243],[117,-40,75,-0.12773963467590577],[117,-40,76,-0.12954381601307952],[117,-40,77,-0.11001144202124706],[117,-40,78,-0.07134153283303082],[117,-40,79,-0.09962200607197008],[117,-39,64,-0.07564758542982138],[117,-39,65,-0.042554138285227666],[117,-39,66,-0.05848277815642978],[117,-39,67,-0.04671938498769958],[117,-39,68,0.010348322615459054],[117,-39,69,0.04398462986900543],[117,-39,70,0.02808779347702437],[117,-39,71,0.013442136147599044],[117,-39,72,-0.017381501320949],[117,-39,73,-0.1147392501517066],[117,-39,74,-0.15578345861393153],[117,-39,75,-0.1254992990767379],[117,-39,76,-0.12757284853493203],[117,-39,77,-0.10886404474370485],[117,-39,78,-0.07102692205304986],[117,-39,79,-0.09854359543570601],[117,-38,64,-0.07481305927855689],[117,-38,65,-0.04233879589686573],[117,-38,66,-0.057122806679367616],[117,-38,67,-0.045396296689728326],[117,-38,68,0.01025821759573585],[117,-38,69,0.04302678969868944],[117,-38,70,0.027280475734722292],[117,-38,71,0.013036153623453343],[117,-38,72,-0.016500847924966287],[117,-38,73,-0.11183230916761985],[117,-38,74,-0.15263599600270902],[117,-38,75,-0.12331696694161896],[117,-38,76,-0.12565321397007573],[117,-38,77,-0.10774317738680039],[117,-38,78,-0.07072185445211775],[117,-38,79,-0.09748647841299761],[117,-37,64,-0.07399569096170384],[117,-37,65,-0.04212701347503466],[117,-37,66,-0.055796506113472456],[117,-37,67,-0.04411011218829308],[117,-37,68,0.010149355364505388],[117,-37,69,0.04206508122335802],[117,-37,70,0.026475951579137288],[117,-37,71,0.012633269399304137],[117,-37,72,-0.01565253824621208],[117,-37,73,-0.1090012734691853],[117,-37,74,-0.1495663665434064],[117,-37,75,-0.12119159819419378],[117,-37,76,-0.1237840412070164],[117,-37,77,-0.1066486152596284],[117,-37,78,-0.07042602382859849],[117,-37,79,-0.09645050282189696],[117,-36,64,-0.07319533577867374],[117,-36,65,-0.041918819454312854],[117,-36,66,-0.054503452059572445],[117,-36,67,-0.04286014795966846],[117,-36,68,0.01002314258696152],[117,-36,69,0.041101061217803665],[117,-36,70,0.02567502432730834],[117,-36,71,0.012233667091941264],[117,-36,72,-0.014835655080800389],[117,-36,73,-0.106244887789491],[117,-36,74,-0.14657345634350388],[117,-36,75,-0.11912217006322143],[117,-36,76,-0.12196447186760632],[117,-36,77,-0.1055801443119043],[117,-36,78,-0.07013915649083143],[117,-36,79,-0.09543552398980991],[117,-35,64,-0.07241186207201995],[117,-35,65,-0.04171425950457869],[117,-35,66,-0.05324321872659094],[117,-35,67,-0.0416457237054412],[117,-35,68,0.009880935158522878],[117,-35,69,0.040136213797466014],[117,-35,70,0.0248784468721457],[117,-35,71,0.011837506280514378],[117,-35,72,-0.01404929449943303],[117,-35,73,-0.10356188899376989],[117,-35,74,-0.14365615056652006],[117,-35,75,-0.11710767754235472],[117,-35,76,-0.12019366098081825],[117,-35,77,-0.10453756112770704],[117,-35,78,-0.06986101022012424],[117,-35,79,-0.09444140438409646],[117,-34,64,-0.07164515089737833],[117,-34,65,-0.04151339581672614],[117,-34,66,-0.05201537939807057],[117,-34,67,-0.04046616299876349],[117,-34,68,0.009724038323501228],[117,-34,69,0.03917195115088419],[117,-34,70,0.02408692249952221],[117,-34,71,0.011444923173277197],[117,-34,72,-0.013292566506731005],[117,-34,73,-0.10095100793300968],[117,-34,74,-0.14081333474892896],[117,-34,75,-0.11514713378566376],[117,-34,76,-0.11847077757012223],[117,-34,77,-0.10352067287129743],[117,-34,78,-0.06959137317121496],[117,-34,79,-0.09346801320840266],[117,-33,64,-0.0708950956857742],[117,-33,65,-0.04131630639433408],[117,-33,66,-0.05081950690235546],[117,-33,67,-0.0393207939102059],[117,-33,68,0.009553706929714889],[117,-33,69,0.03820961444589903],[117,-33,70,0.023301105798458732],[117,-33,71,0.01105603127990073],[117,-33,72,-0.012564595652936226],[117,-33,73,-0.09841097124611614],[117,-33,74,-0.13804389607417852],[117,-33,75,-0.11323957044415164],[117,-33,76,-0.11679500515936085],[117,-33,77,-0.10252929718989451],[117,-33,78,-0.0693300627186387],[117,-33,79,-0.09251522596955748],[117,-32,64,-0.07016160190120874],[117,-32,65,-0.04112308435473751],[117,-32,66,-0.049655174086478085],[117,-32,67,-0.038208949613778465],[117,-32,68,0.009371145811632862],[117,-32,69,0.03725047489885054],[117,-32,70,0.02252160365647891],[117,-32,71,0.010670922085763992],[117,-32,72,-0.011864521599332871],[117,-32,73,-0.09594050311000576],[117,-32,74,-0.13534672460582034],[117,-32,75,-0.11138403794817524],[117,-32,76,-0.11516554220176932],[117,-32,77,-0.10156326207792768],[117,-32,78,-0.06907692425688011],[117,-32,79,-0.09158292401938452],[117,-31,64,-0.06944458669649008],[117,-31,65,-0.04093383724292357],[117,-31,66,-0.04852195429392866],[117,-31,67,-0.03712996897385234],[117,-31,68,0.009177510294499145],[117,-31,69,0.03629573499595836],[117,-31,70,0.021748976332238684],[117,-31,71,0.010289665724667451],[117,-31,72,-0.011191499638942698],[117,-31,73,-0.09353832693729466],[117,-31,74,-0.13272071448183276],[117,-31,75,-0.10957960574062607],[117,-31,76,-0.11358160243681699],[117,-31,77,-0.10062240570721412],[117,-31,78,-0.06883182996191677],[117,-31,79,-0.090670994075576],[117,-30,64,-0.06874397857014819],[117,-30,65,-0.0407486863614807],[117,-30,66,-0.047419421846443745],[117,-30,67,-0.03608319711370464],[117,-30,68,0.008973906811943927],[117,-30,69,0.03534652985620964],[117,-30,70,0.020983738597735793],[117,-30,71,0.009912311646609277],[117,-30,72,-0.010544701174080628],[117,-30,73,-0.09120316702135259],[117,-30,74,-0.13016476507212354],[117,-30,75,-0.10782536246551225],[117,-30,76,-0.11204241517941452],[117,-30,77,-0.09970657622729338],[117,-30,78,-0.06859467752134812],[117,-30,79,-0.08977932772545087],[117,-29,64,-0.0680597170269744],[117,-29,65,-0.04056776611947333],[117,-29,66,-0.04634715252979252],[117,-29,67,-0.03506798596629307],[117,-29,68,0.008761393629785598],[117,-29,69,0.034403928725368654],[117,-29,70,0.0202263609427414],[117,-29,71,0.00953888927755371],[117,-29,72,-0.009923314152325549],[117,-29,73,-0.08893375012856841],[117,-29,74,-0.12767778210104985],[117,-29,75,-0.10612041611627973],[117,-29,76,-0.11054722554578975],[117,-29,77,-0.09881563153980422],[117,-29,78,-0.06836538883974654],[117,-29,79,-0.0889078209159698],[117,-28,64,-0.06739175224476592],[117,-28,65,-0.04039122340308828],[117,-28,66,-0.04530472408366429],[117,-28,67,-0.034083694808004474],[117,-28,68,0.008540981668699623],[117,-28,69,0.033468936590799477],[117,-28,70,0.01947727083419857],[117,-28,71,0.009169408668179205],[117,-28,72,-0.009326543462601887],[117,-28,73,-0.08672880703788803],[117,-28,74,-0.1252586787368218],[117,-28,75,-0.10446389414810626],[117,-28,76,-0.10909529462029223],[117,-28,77,-0.0979494390506774],[117,-28,78,-0.0681439087255524],[117,-28,79,-0.08805637343316426],[117,-27,64,-0.06674004474969243],[117,-27,65,-0.040219216970678984],[117,-27,66,-0.044291716695734215],[117,-27,67,-0.03312969077612597],[117,-27,68,0.008313635418555],[117,-27,69,0.032542495907028304],[117,-27,70,0.018736854023586196],[117,-27,71,0.008803861128773911],[117,-27,72,-0.008753611293126287],[117,-27,73,-0.08458707402785318],[117,-27,74,-0.12290637664961321],[117,-27,75,-0.10285494355820149],[117,-27,76,-0.10768589956722924],[117,-27,77,-0.09710787540367011],[117,-27,78,-0.06793020356537814],[117,-27,79,-0.08722488837380477],[117,-26,64,-0.06610456510243098],[117,-26,65,-0.0400519168745163],[117,-26,66,-0.0433077134998523],[117,-26,67,-0.032205349370675505],[117,-26,68,0.008080273937496215],[117,-26,69,0.03162548842236857],[117,-26,70,0.01800545589562638],[117,-26,71,0.008442219847724664],[117,-26,72,-0.008203757452898905],[117,-26,73,-0.08250729431139033],[117,-26,74,-0.12061980704003293],[117,-26,75,-0.10129273093781793],[117,-26,76,-0.10631833369154331],[117,-26,77,-0.09629082619840379],[117,-26,78,-0.0677242599910167],[117,-26,79,-0.08641327161168931],[117,-25,64,-0.06548529359722419],[117,-25,65,-0.0398895039115045],[117,-25,66,-0.042352301078419224],[117,-25,67,-0.0313100549413562],[117,-25,68,0.007841771928890462],[117,-25,69,0.030718737097099793],[117,-25,70,0.01728338285187225],[117,-25,71,0.008084440491113402],[117,-25,72,-0.007676239658549566],[117,-25,73,-0.08048821941882996],[117,-25,74,-0.11839791163966287],[117,-25,75,-0.09977644249958256],[117,-25,76,-0.10499190645208535],[117,-25,77,-0.09549818569594884],[117,-25,78,-0.06752608354412602],[117,-25,79,-0.08562143126073943],[117,-24,64,-0.06488221997584466],[117,-24,65,-0.039732169104911966],[117,-24,66,-0.04142506996901191],[117,-24,67,-0.030443201160416315],[117,-24,68,0.007598960889455904],[117,-24,69,0.029823008104022133],[117,-24,70,0.01657090372299928],[117,-24,71,0.007730461781083389],[117,-24,72,-0.007170333788405305],[117,-24,73,-0.07852861052979983],[117,-24,74,-0.11623964368533424],[117,-24,75,-0.09830528408354576],[117,-24,76,-0.10370594343102214],[117,-24,77,-0.09472985651471008],[117,-24,78,-0.06733569734306695],[117,-24,79,-0.08484927713673902],[117,-23,64,-0.06429534315820923],[117,-23,65,-0.039580113218879234],[117,-23,66,-0.0405256151752],[117,-23,67,-0.02960419148208052],[117,-23,68,0.007352630322215031],[117,-23,69,0.028939012902673054],[117,-23,70,0.015868251204040163],[117,-23,71,0.0073802060509269565],[117,-23,72,-0.006685334105530353],[117,-23,73,-0.07662723975462774],[117,-23,74,-0.11414396886865763],[117,-23,75,-0.09687848114503685],[117,-23,76,-0.10245978626264234],[117,-23,77,-0.09398574931904614],[117,-23,78,-0.0671531407558532],[117,-23,79,-0.08409672021917443],[117,-22,64,-0.06372467099135978],[117,-22,65,-0.0394335463074064],[117,-22,66,-0.039653536681629756],[117,-22,67,-0.028792439589359193],[117,-22,68,0.007103529008019041],[117,-22,69,0.02806741037873929],[117,-22,70,0.015175623306983766],[117,-22,71,0.0070335797748725766],[117,-22,72,-0.006220553451641745],[117,-22,73,-0.07478289136614732],[117,-22,74,-0.1121098662623967],[117,-22,75,-0.09549527872731632],[117,-22,76,-0.10125279252471091],[117,-22,77,-0.09326578250288485],[117,-22,78,-0.0669784680828001],[117,-22,79,-0.08336367211441219],[117,-21,64,-0.06317022001838422],[117,-21,65,-0.03929268729934238],[117,-21,66,-0.038808439973457315],[117,-21,67,-0.028007369829049403],[117,-21,68,0.006852366329636733],[117,-21,69,0.027208809040592138],[117,-21,70,0.014493184825479035],[117,-21,71,0.00669047407070987],[117,-21,72,-0.005775323413812479],[117,-21,73,-0.07299436298292138],[117,-21,74,-0.11013632922524944],[117,-21,75,-0.09415494142182021],[117,-21,76,-0.1000843355953216],[117,-21,77,-0.09256988187034391],[117,-21,78,-0.06681174725201734],[117,-21,79,-0.0826500445211568],[117,-20,64,-0.06263201526861308],[117,-20,65,-0.039157763620630906],[117,-20,66,-0.03798993656011519],[117,-20,67,-0.02724841763564218],[117,-20,68,0.006599813642766107],[117,-20,69,0.026363769265387308],[117,-20,70,0.013821068806806305],[117,-20,71,0.006350765173639376],[117,-20,72,-0.005348994465767621],[117,-20,73,-0.07126046670489583],[117,-20,74,-0.10822236628645991],[117,-20,75,-0.09285675331849348],[117,-20,76,-0.09895380447789365],[117,-20,77,-0.09189798031503964],[117,-20,78,-0.06665305853037537],[117,-20,79,-0.08195574869876926],[117,-19,64,-0.06211009007039563],[117,-19,65,-0.03902901085501107],[117,-19,66,-0.037197644503537436],[117,-19,67,-0.026515029944989575],[117,-19,68,0.006346505688476378],[117,-19,69,0.025532805587477014],[117,-19,70,0.013159378026484585],[117,-19,71,0.006014314879755784],[117,-19,72,-0.004940936085720989],[117,-19,73,-0.0695800302027615],[117,-19,74,-0.1063670020117947],[117,-19,75,-0.09160001794863887],[117,-19,76,-0.09786060359685245],[117,-19,77,-0.09125001749960097],[117,-19,78,-0.06650249325222347],[117,-19,79,-0.08128069493883476],[117,-18,64,-0.06160448588764877],[117,-18,65,-0.03890667244423255],[117,-18,66,-0.03643118895098725],[117,-18,67,-0.02580666559859091],[117,-18,68,0.006093042041870682],[117,-18,69,0.02471638902231712],[117,-18,70,0.012508186461210984],[117,-18,71,0.005680970957715669],[117,-18,72,-0.004550536852670828],[117,-18,73,-0.06795189776236982],[117,-18,74,-0.10456927785237496],[117,-18,75,-0.09038405822251243],[117,-18,76,-0.09680415256631941],[117,-18,77,-0.09062593953668158],[117,-18,78,-0.06636015256774243],[117,-18,79,-0.08062479204011681],[117,-17,64,-0.06111525218112343],[117,-17,65,-0.038790999428583724],[117,-17,66,-0.03569020267255249],[117,-17,67,-0.025122795739276834],[117,-17,68,0.0058399885921438435],[117,-17,69,0.023914949419593327],[117,-17,70,0.011867540756246912],[117,-17,71,0.005350567527354973],[117,-17,72,-0.004177204522997001],[117,-17,73,-0.06637493128559466],[117,-17,74,-0.102828252977776],[117,-17,75,-0.08920821636364633],[117,-17,76,-0.09578388593384407],[117,-17,77,-0.09002569867243529],[117,-17,78,-0.0662261462123116],[117,-17,79,-0.0799879467866971],[117,-16,64,-0.060642446295331734],[117,-16,65,-0.038682250228509636],[117,-16,66,-0.03497432660352171],[117,-16,67,-0.02446290419919869],[117,-16,68,0.005587879049392971],[117,-16,69,0.023128877839630253],[117,-16,70,0.011237461683578746],[117,-16,71,0.005022925404035292],[117,-16,72,-0.00382036608929891],[117,-16,73,-0.0648480112492336],[117,-16,74,-0.10114300509489767],[117,-16,75,-0.08807185384180834],[117,-16,76,-0.0947992529010982],[117,-16,77,-0.08944925297328447],[117,-16,78,-0.06610059129797383],[117,-16,79,-0.0793700634289518],[117,-15,64,-0.060186133371972234],[117,-15,65,-0.03858069046797666],[117,-15,66,-0.034283210391881216],[117,-15,67,-0.02382648788104494],[117,-15,68,0.0053372164738377205],[117,-15,69,0.022358528947604463],[117,-15,70,0.010617945587507328],[117,-15,71,0.00469785240761753],[117,-15,72,-0.003479467823388745],[117,-15,73,-0.0633700376236282],[117,-15,74,-0.09951263125410244],[117,-15,75,-0.08697435130635064],[117,-15,76,-0.09384971702325351],[117,-15,77,-0.08889656601660816],[117,-15,78,-0.06598361112772146],[117,-15,79,-0.07877104316680257],[117,-14,64,-0.059746386290454756],[117,-14,65,-0.0384865928400006],[117,-14,66,-0.0336165129511147],[117,-14,67,-0.023213057133332916],[117,-14,68,0.005088474823510129],[117,-14,69,0.021604223420641454],[117,-14,70,0.010008965814727514],[117,-14,71,0.004375143635146185],[117,-14,72,-0.0031539753052789903],[117,-14,73,-0.06193993075272318],[117,-14,74,-0.09793624864406317],[117,-14,75,-0.08591510852147775],[117,-14,76,-0.0929347558884789],[117,-14,77,-0.08836760658566548],[117,-14,78,-0.06587533403286364],[117,-14,79,-0.07819078363437969],[117,-13,64,-0.05932327617684185],[117,-13,65,-0.03840019662182721],[117,-13,66,-0.0329738257546173],[117,-13,67,-0.02262207747749243],[117,-13,68,0.004842101806158214],[117,-13,69,0.020866246751998014],[117,-13,70,0.009410509613636644],[117,-13,71,0.004054613593502178],[117,-13,72,-0.002843384179507042],[117,-13,73,-0.06055664744142832],[117,-13,74,-0.09641300752675719],[117,-13,75,-0.08489359098609633],[117,-13,76,-0.0920539150173515],[117,-13,77,-0.08786237229660578],[117,-13,78,-0.06577590513696929],[117,-13,79,-0.07762918914848368],[117,-12,64,-0.058916806055952606],[117,-12,65,-0.038321441634657886],[117,-12,66,-0.032354171889665384],[117,-12,67,-0.022052589949881678],[117,-12,68,0.004598521300308101],[117,-12,69,0.020144817629076994],[117,-12,70,0.00882280502765796],[117,-12,71,0.0037363059157047834],[117,-12,72,-0.002547288610292251],[117,-12,73,-0.05921927605956641],[117,-12,74,-0.0949421636992969],[117,-12,75,-0.08390962825834025],[117,-12,76,-0.0912071586621072],[117,-12,77,-0.08738104371992038],[117,-12,78,-0.06568557270526514],[117,-12,79,-0.07708624495328902],[117,-11,64,-0.058526943221595525],[117,-11,65,-0.03825014887409926],[117,-11,66,-0.03175637002364246],[117,-11,67,-0.021503488769328415],[117,-11,68,0.004358110350918704],[117,-11,69,0.019440081163695555],[117,-11,70,0.008246143369925709],[117,-11,71,0.0034203496578687964],[117,-11,72,-0.002265327580192031],[117,-11,73,-0.05792695407120835],[117,-11,74,-0.09352300432316293],[117,-11,75,-0.08296318293360097],[117,-11,76,-0.09039461224349198],[117,-11,77,-0.08692386947126333],[117,-11,78,-0.0656046356356634],[117,-11,79,-0.07656197826878863],[117,-10,64,-0.05815365235134444],[117,-10,65,-0.03818616681836314],[117,-10,66,-0.031179316894612733],[117,-10,67,-0.02097373576233208],[117,-10,68,0.004121193718917187],[117,-10,69,0.018752121023208668],[117,-10,70,0.007680749427625939],[117,-10,71,0.0031068439423655963],[117,-10,72,-0.001997145096087599],[117,-10,73,-0.05667881147803738],[117,-10,74,-0.09215480182986216],[117,-10,75,-0.08205417873818725],[117,-10,76,-0.08961636407553351],[117,-10,77,-0.08649107863152532],[117,-10,78,-0.06553339678964322],[117,-10,79,-0.07605642034430994],[117,-9,64,-0.05779689667039207],[117,-9,65,-0.03812937047881475],[117,-9,66,-0.03062198353741432],[117,-9,67,-0.020462357124366694],[117,-9,68,0.003888047858895883],[117,-9,69,0.018080964723295963],[117,-9,70,0.0071267861121396365],[117,-9,71,0.002795859211746388],[117,-9,72,-0.0017423909586484856],[117,-9,73,-0.05547397357981383],[117,-9,74,-0.09083681725859959],[117,-9,75,-0.08118250442975922],[117,-9,76,-0.08887246858481093],[117,-9,77,-0.0860828823737868],[117,-9,78,-0.06547216187067029],[117,-9,79,-0.07556960537829908],[117,-8,64,-0.05745663884698818],[117,-8,65,-0.038079659713030636],[117,-8,66,-0.030083410236290235],[117,-8,67,-0.01996843923763959],[117,-8,68,0.003658904697119472],[117,-8,69,0.01742658855493707],[117,-8,70,0.006584359537572951],[117,-8,71,0.0024874390297819396],[117,-8,72,-0.0015007216892341437],[117,-8,73,-0.05431156383857618],[117,-8,74,-0.08956830359490164],[117,-8,75,-0.08034801833920054],[117,-8,76,-0.08816295035345516],[117,-8,77,-0.08569947593207232],[117,-8,78,-0.06542123862376303],[117,-8,79,-0.0751015697393536],[117,-7,64,-0.057132841809520614],[117,-7,65,-0.03803695761967668],[117,-7,66,-0.02956270177488999],[117,-7,67,-0.019491124737335393],[117,-7,68,0.003433955179282473],[117,-7,69,0.016788922212043454],[117,-7,70,0.00605352380238431],[117,-7,71,0.002181601783026969],[117,-7,72,-0.0012718013947928344],[117,-7,73,-0.05319070653552751],[117,-7,74,-0.08834850886066396],[117,-7,75,-0.07955055260393437],[117,-7,76,-0.08748780788636215],[117,-7,77,-0.08534104042779982],[117,-7,78,-0.06538093609576075],[117,-7,79,-0.07465235127103105],[117,-6,64,-0.05682546949016365],[117,-6,65,-0.03800120901355338],[117,-6,66,-0.029059022971469374],[117,-6,67,-0.019029608815843414],[117,-6,68,0.003213352597061512],[117,-6,69,0.01616785313089763],[117,-6,70,0.005534285484542026],[117,-6,71,0.0018783422855372994],[117,-6,72,-0.0010553025737187751],[117,-6,73,-0.0521105292301422],[117,-6,74,-0.08717667896758365],[117,-6,75,-0.07878991710720004],[117,-6,76,-0.08684701711588699],[117,-6,77,-0.08500774456148434],[117,-6,78,-0.06535156395367786],[117,-6,79,-0.07422198867505236],[117,-5,64,-0.056534487499845056],[117,-5,65,-0.037972378979042515],[117,-5,66,-0.028571594487257816],[117,-5,67,-0.01858313575463905],[117,-5,68,0.00299721570241598],[117,-5,69,0.01556323055252198],[117,-5,70,0.005026607860690201],[117,-5,71,0.0015776332894324153],[117,-5,72,-8.509068656569631E-4],[117,-5,73,-0.05107016503092225],[117,-5,74,-0.086052060345676],[117,-5,75,-0.07806590313748878],[117,-5,76,-0.08624053465692612],[117,-5,77,-0.0846997461769102],[117,-5,78,-0.06533343185842497],[117,-5,79,-0.07381052096763828],[117,-4,64,-0.056259863738996954],[117,-4,65,-0.03795045149999075],[117,-4,66,-0.028099688896070615],[117,-4,67,-0.01815099567362656],[117,-4,68,0.002785631618548813],[117,-4,69,0.0149748693191029],[117,-4,70,0.004530414859871241],[117,-4,71,0.0012794269041022518],[117,-4,72,-6.583057482268459E-4],[117,-4,73,-0.05006875468707479],[117,-4,74,-0.08497390235824966],[117,-4,75,-0.07737828678192954],[117,-4,76,-0.08566830082483863],[117,-4,77,-0.08441719370455204],[117,-4,78,-0.06532684889100446],[117,-4,79,-0.0734179870037681],[117,-3,64,-0.05600156894846587],[117,-3,65,-0.037935428164075],[117,-3,66,-0.027642627003537715],[117,-3,67,-0.0177325214880565],[117,-3,68,0.0025786585562130454],[117,-3,69,0.014402553415409969],[117,-3,70,0.00404559476223385],[117,-3,71,9.836559268185648E-4],[117,-3,72,-4.772011837057396E-4],[117,-3,73,-0.049105448510289695],[117,-3,74,-0.08394145951447868],[117,-3,75,-0.07672683206711266],[117,-3,76,-0.08513024242833146],[117,-3,77,-0.08416022749076585],[117,-3,78,-0.06533212302831365],[117,-3,79,-0.07304442506438305],[117,-2,64,-0.05575957720474427],[117,-2,65,-0.037927326939597154],[117,-2,66,-0.0271997744045553],[117,-2,67,-0.0173270860633772],[117,-2,68,0.00237632834389283],[117,-2,69,0.013846039266015875],[117,-2,70,0.0035720036530828515],[117,-2,71,6.902350875277264E-4],[117,-2,72,-3.073062187227626E-4],[117,-2,73,-0.04817940813564616],[117,-2,74,-0.08295399349040282],[117,-2,75,-0.07611129386044153],[117,-2,76,-0.08462627534900914],[117,-2,77,-0.08392898101891014],[117,-2,78,-0.06534956066562739],[117,-2,79,-0.07268987250170333],[117,-1,64,-0.055533866363417055],[117,-1,65,-0.03792618102251813],[117,-1,66,-0.026770538267760373],[117,-1,67,-0.016934099558578816],[117,-1,68,0.002178648780274287],[117,-1,69,0.013305058799024726],[117,-1,70,0.003109468642584239],[117,-1,71,3.9906221067714364E-4],[117,-1,72,-1.4834553993788762E-4],[117,-1,73,-0.047289808130430315],[117,-1,74,-0.08201077496880142],[117,-1,75,-0.07553142054463419],[117,-1,76,-0.08415630691880423],[117,-1,77,-0.08372358202816725],[117,-1,78,-0.06537946618274974],[117,-1,79,-0.07235436543795043],[117,0,64,-0.05532441845459963],[117,0,65,-0.037932037751564854],[117,0,66,-0.026354364336187132],[117,0,67,-0.016553006948939],[117,0,68,0.001985605817150024],[117,0,69,0.01277932228675009],[117,0,70,0.002657790861228554],[117,0,71,1.1001929685852223E-4],[117,0,72,-5.598871231237566E-8],[117,0,73,-0.04643583745949633],[117,0,74,-0.08111108530810074],[117,0,75,-0.07498695647762207],[117,0,76,-0.08372023810613312],[117,0,77,-0.08354415353557666],[117,0,78,-0.06542214155089644],[117,0,79,-0.07203793851302234],[117,1,64,-0.055131220033933025],[117,1,65,-0.037944957589185126],[117,1,66,-0.025950734133568954],[117,1,67,-0.0161832857193774],[117,1,68,0.0017971655806911886],[117,1,69,0.01226852097357116],[117,1,70,0.0022167482409910463],[117,1,71,-1.7702647296490625E-4],[117,1,72,1.3781296223939454E-4],[117,1,73,-0.045616700815614954],[117,1,74,-0.08025421805014885],[117,1,75,-0.0744776442496694],[117,1,76,-0.08331796552118632],[117,1,77,-0.08339081476646379],[117,1,78,-0.06547788597736579],[117,1,79,-0.07174062467685889],[117,2,64,-0.054954262492443506],[117,2,65,-0.037965013166030244],[117,2,66,-0.02555916236599813],[117,2,67,-0.015824443719858992],[117,2,68,0.0016132762388617256],[117,2,69,0.01177232950102211],[117,2,70,0.001786098091999476],[117,2,71,-4.622218078296799E-4],[117,2,72,2.654987673544437E-4],[117,2,73,-0.044831619822931594],[117,2,74,-0.07943948027625512],[117,2,75,-0.07400322674901437],[117,2,76,-0.08294938325025847],[117,2,77,-0.08326368199809528],[117,2,78,-0.06554699558504723],[117,2,79,-0.07146245502239393],[117,3,64,-0.0547935423284447],[117,3,65,-0.037992288386685016],[117,3,66,-0.02517919450906172],[117,3,67,-0.015476017174671607],[117,3,68,0.0014338697224436667],[117,3,69,0.011290408139845129],[117,3,70,0.0013655794842398561],[117,3,71,-7.457264490240747E-4],[117,3,72,3.8322539900027076E-4],[117,3,73,-0.04407983412149978],[117,3,74,-0.07866619382061048],[117,3,75,-0.07356344904695154],[117,3,76,-0.08261438452865123],[117,3,77,-0.08316286932115152],[117,3,78,-0.0656297631239144],[117,3,79,-0.07120345865526038],[117,4,64,-0.054649061384467804],[117,4,65,-0.038026877594348675],[117,4,66,-0.024810404570916492],[117,4,67,-0.015137568837722335],[117,4,68,0.001258863306899344],[117,4,69,0.010822404838467038],[117,4,70,9.549154435980711E-4],[117,4,71,-0.001027712381535888],[117,4,72,4.912029677079843E-4],[117,4,73,-0.04336060234060056],[117,4,74,-0.07793369634984362],[117,4,75,-0.07315806011281747],[117,4,76,-0.08231286326124228],[117,4,77,-0.08308848932332662],[117,4,78,-0.06572647771171405],[117,4,79,-0.07096366259663417],[117,5,64,-0.054520827051953706],[117,5,65,-0.038068884792102],[117,5,66,-0.024452393022050815],[117,5,67,-0.014808686286253392],[117,5,68,0.001088161062107442],[117,5,69,0.010367957097136355],[117,5,70,5.538149713474155E-4],[117,5,71,-0.001308363111988318],[117,5,72,5.896273691860887E-4],[117,5,73,-0.04267320296822704],[117,5,74,-0.07724134231703601],[117,5,75,-0.07278681436882392],[117,5,76,-0.08204471539932877],[117,5,77,-0.08304065369905207],[117,5,78,-0.06583742460109322],[117,5,79,-0.07074309171577901],[117,6,64,-0.05440885244631931],[117,6,65,-0.038118422918458496],[117,6,66,-0.024104784882914745],[117,6,67,-0.014488980345777622],[117,6,68,9.216551766850597E-4],[117,6,69,0.009926693676594421],[117,6,70,1.6197489586307614E-4],[117,6,71,-0.001587873010473597],[117,6,72,6.78679955437512E-4],[117,6,73,-0.042016935123935714],[117,6,74,-0.07658850379824061],[117,6,75,-0.07244947309429726],[117,6,76,-0.08180984018199056],[117,6,77,-0.08301947378913448],[117,6,78,-0.06596288497054181],[117,6,79,-0.07054176868913443],[117,7,64,-0.054313156554837025],[117,7,65,-0.03817561317491537],[117,7,66,-0.02376722796095792],[117,7,67,-0.014178083639355092],[117,7,68,7.592271633487449E-4],[117,7,69,0.009498236149849206],[117,7,70,-2.2091843493272762E-4],[117,7,71,-0.0018664467137383643],[117,7,72,7.585272274093295E-4],[117,7,73,-0.04139111924196939],[117,7,74,-0.07597457121917212],[117,7,75,-0.07214580568842524],[117,7,76,-0.08160814124980277],[117,7,77,-0.08302506105387208],[117,7,78,-0.06610313573664335],[117,7,79,-0.07035971398302338],[117,8,64,-0.05423376435952757],[117,8,65,-0.03824058440317249],[117,8,66,-0.02343939122892705],[117,8,67,-0.013875649254603245],[117,8,68,6.007489515591883E-4],[117,8,69,0.009082200305363199],[117,8,70,-5.951876121209886E-4],[117,8,71,-0.0021442985871794745],[117,8,72,8.293205467402536E-4],[117,8,73,-0.04079509767124414],[117,8,74,-0.07539895397934189],[117,8,75,-0.07187559080011921],[117,8,76,-0.08143952763827045],[117,8,77,-0.08305752748293496],[117,8,78,-0.06625844938518101],[117,8,79,-0.07019694585723456],[117,9,64,-0.054170706937164206],[117,9,65,-0.03831347250977944],[117,9,66,-0.02312096333670623],[117,9,67,-0.01358134952222342],[117,9,68,4.460838733657998E-4],[117,9,69,0.008678197409584348],[117,9,70,-9.611627674165787E-4],[117,9,71,-0.002421652243230115],[117,9,72,8.911958642096159E-4],[117,9,73,-0.04022823519857674],[117,9,74,-0.07486108098062301],[117,9,75,-0.0716386173332239],[117,9,76,-0.08130391465802438],[117,9,77,-0.08311698594514183],[117,9,78,-0.06642909381882403],[117,9,79,-0.07005348038701972],[117,10,64,-0.05412402153833268],[117,10,65,-0.03839441993600856],[117,10,66,-0.02281165124935105],[117,10,67,-0.013294874900144707],[117,10,68,2.950875481013563E-4],[117,10,69,0.008285835336426184],[117,10,70,-0.001319180310266787],[117,10,71,-0.002698740113774911],[117,10,72,9.442734626043186E-4],[117,10,73,-0.03968991950123792],[117,10,74,-0.07436040106688029],[117,10,75,-0.07143468533487453],[117,10,76,-0.08120122466843643],[117,10,77,-0.08320355048108634],[117,10,78,-0.0666153322192635],[117,10,79,-0.06992933150128125],[117,11,64,-0.054093751647269685],[117,11,65,-0.03848357517072517],[117,11,66,-0.02251117900428022],[117,11,67,-0.013015932957654786],[117,11,68,1.4760867136624832E-4],[117,11,69,0.007904719571031248],[117,11,70,-0.0016695817930588361],[117,11,71,-0.002975803074252341],[117,11,72,9.886577118610772E-4],[117,11,73,-0.03917956153461325],[117,11,74,-0.0738963833809349],[117,11,75,-0.07126360677434444],[117,11,76,-0.08113138775090005],[117,11,77,-0.08331733654133064],[117,11,78,-0.06681742292174248],[117,11,79,-0.06982451103490045],[117,12,64,-0.054079947024131776],[117,12,65,-0.03858109230414631],[117,12,66,-0.02221928658101202],[117,12,67,-0.012744247454257512],[117,12,68,3.4897134145289073E-6],[117,12,69,0.007534454094762968],[117,12,70,-0.0020127128974504727],[117,12,71,-0.0032530901172249543],[117,12,72,0.001024436834410823],[117,12,73,-0.03869659586051364],[117,12,74,-0.07346851764485247],[117,12,75,-0.07112520621937231],[117,12,76,-0.08109434228772644],[117,12,77,-0.08345846117279145],[117,12,78,-0.06703561930014647],[117,12,79,-0.06973902879344374],[117,13,64,-0.05408266373120012],[117,13,65,-0.03868713062042191],[117,13,66,-0.021935728877190922],[117,13,67,-0.012479557508305506],[117,13,68,-1.374324682029707E-4],[117,13,69,0.007174642158047405],[117,13,70,-0.0023489225351489393],[117,13,71,-0.003530858073269475],[117,13,72,0.0010516826787557538],[117,13,73,-0.03824048092141694],[117,13,74,-0.07307631436923866],[117,13,75,-0.07101932141657051],[117,13,76,-0.08109003545227057],[117,13,77,-0.08362704315579646],[117,13,78,-0.0672701696609623],[117,13,79,-0.06967289262870094],[117,14,64,-0.05410196414434617],[117,14,65,-0.03880185422698135],[117,14,66,-0.02166027478495328],[117,14,67,-0.012221616850704919],[117,14,68,-2.753260970934409E-4],[117,14,69,0.006824886947409878],[117,14,70,-0.002678562056728497],[117,14,71,-0.00380937137706188],[117,14,72,0.0010704504994729425],[117,14,73,-0.037810699265607456],[117,14,74,-0.07271930499688053],[117,14,75,-0.07094580378209722],[117,14,76,-0.08111842361553906],[117,14,77,-0.08382320309411677],[117,14,78,-0.06752131714453329],[117,14,79,-0.0696261085236845],[117,15,64,-0.054137916951039276],[117,15,65,-0.038925431718726033],[117,15,66,-0.021392706362096028],[117,15,67,-0.01197019315935149],[117,15,68,-4.103640232531481E-4],[117,15,69,0.006484792152658938],[117,15,70,-0.0030019845624597104],[117,15,71,-0.0040889018766702675],[117,15,72,0.0010807787418990863],[117,15,73,-0.03740675772796562],[117,15,74,-0.07239704198583441],[117,15,75,-0.07090451880847227],[117,15,76,-0.08117947267429516],[117,15,77,-0.08404706346024468],[117,15,78,-0.06778929963227597],[117,15,79,-0.06959868068600303],[117,16,64,-0.05419059713600372],[117,16,65,-0.03905803587515664],[117,16,66,-0.02113281809280452],[117,16,67,-0.011725067470192958],[117,16,68,-5.427233409497317E-4],[117,16,69,0.00615396243990491],[117,16,70,-0.0033195443093842363],[117,16,71,-0.004369728684096286],[117,16,72,0.0010826888299022834],[117,16,73,-0.03702818757087611],[117,16,74,-0.07210909883675572],[117,16,75,-0.07089534639303546],[117,16,76,-0.08127315830534561],[117,16,77,-0.08429874859803194],[117,16,78,-0.06807434965863761],[117,16,79,-0.06959061164867791],[117,17,64,-0.054260085955590495],[117,17,65,-0.039199843388657174],[117,17,66,-0.020880416233073372],[117,17,67,-0.01148603366113573],[117,17,68,-6.725850754272372E-4],[117,17,69,0.005832003835733161],[117,17,70,-0.003631596209228082],[117,17,71,-0.004652138065224615],[117,17,72,0.0010761849552319133],[117,17,73,-0.036674544589496386],[117,17,74,-0.07185507006903497],[117,17,75,-0.07091818109326335],[117,17,76,-0.08139946615048507],[117,17,77,-0.08457838468479763],[117,17,78,-0.0683766943268147],[117,17,79,-0.06960190237773767],[117,18,64,-0.0543464709017737],[117,18,65,-0.039351034622176255],[117,18,66,-0.020635318236230903],[117,18,67,-0.011252898005233065],[117,18,68,-8.0013393479051E-4],[117,18,69,0.005518524027594995],[117,18,70,-0.003938495412003583],[117,18,71,-0.004936423367365517],[117,18,72,0.0010612538671038827],[117,18,73,-0.0363454091853314],[117,18,74,-0.07163457114999926],[117,18,75,-0.07097293231378639],[117,18,76,-0.08155839193625318],[117,18,77,-0.08488609965487108],[117,18,78,-0.06869655522736025],[117,18,79,-0.06963255238605472],[117,19,64,-0.05444984565663805],[117,19,65,-0.03951179339466451],[117,19,66,-0.020397352254319826],[117,19,67,-0.0110254787898793],[117,19,68,-9.255581236929064E-4],[117,19,69,0.005213132585145193],[117,19,70,-0.004240596970479829],[117,19,71,-0.0052228849826842765],[117,19,72,0.0010378646607564809],[117,19,73,-0.03604038641187262],[117,19,74,-0.07144723838126031],[117,19,75,-0.07105952442972736],[117,19,76,-0.08174994153250839],[117,19,77,-0.08522202308656451],[117,19,78,-0.06903414835905435],[117,19,79,-0.0696825598531464],[117,20,64,-0.05457031003816365],[117,20,65,-0.0396823067927335],[117,20,66,-0.02016635671141238],[117,20,67,-0.01080360599900126],[117,20,68,-0.0010490492156916443],[117,20,69,0.0049154411069392365],[117,20,70,-0.004538255581019353],[117,20,71,-0.005511830345896511],[117,20,72,0.0010059685638337337],[117,20,73,-0.03575910599580628],[117,20,74,-0.0712927287460458],[117,20,75,-0.07117789685067845],[117,20,76,-0.08197413095358518],[117,20,77,-0.08558628605452201],[117,20,78,-0.06938968405159254],[117,20,79,-0.06975192175083933],[117,21,64,-0.05470796993798279],[117,21,65,-0.03986276500702149],[117,21,66,-0.019942179945170894],[117,21,67,-0.010587121055416874],[117,21,68,-0.001170802081297019],[117,21,69,0.004625063296676711],[117,21,70,-0.004831825396506485],[117,21,71,-0.0058035739646294235],[117,21,72,9.654987196088021E-4],[117,21,73,-0.035501222337047215],[117,21,74,-0.07117071972111619],[117,21,75,-0.07132800402935986],[117,21,76,-0.08223098630558433],[117,21,77,-0.08597902094933886],[117,21,78,-0.06976336688978745],[117,21,79,-0.0698406339748396],[117,22,64,-0.05486293725178832],[117,22,65,-0.040053361191907604],[117,22,66,-0.019724679913299948],[117,22,67,-0.010375876620807035],[117,22,68,-0.0012910148690022279],[117,22,69,0.004341614972843808],[117,22,70,-0.00512165990742937],[117,22,71,-0.006098437480967054],[117,22,72,9.163699661454441E-4],[117,22,73,-0.035266414490657996],[117,22,74,-0.0710809090567017],[117,22,75,-0.07150981541879368],[117,22,76,-0.0825205436832141],[117,22,77,-0.08640036126639124],[117,22,78,-0.0701553956392251],[117,22,79,-0.06994869148247063],[117,23,64,-0.05503532980300994],[117,23,65,-0.04025429134729665],[117,23,66,-0.019513723961799928],[117,23,67,-0.010169736450957879],[117,23,68,-0.0014098890367778476],[117,23,69,0.004064714015345244],[117,23,70,-0.005408111887444223],[117,23,71,-0.0063967497627636805],[117,23,72,8.584786106102973E-4],[117,23,73,-0.03505438613350981],[117,23,74,-0.07102301452771763],[117,23,75,-0.07172331538161282],[117,23,76,-0.08284284901944257],[117,23,77,-0.0868504413658237],[117,23,78,-0.07056596317349662],[117,23,79,-0.0700760884370045],[117,24,64,-0.05522527126029301],[117,24,65,-0.04046575422125061],[117,24,66,-0.01930918865214904],[117,24,67,-0.00996857530408944],[117,24,68,-0.0015276294316650158],[117,24,69,0.0037939802524972637],[117,24,70,-0.005691533399974998],[117,24,71,-0.006698847023335407],[117,24,72,7.917021981083689E-4],[117,24,73,-0.03486486551829267],[117,24,74,-0.07099677365930233],[117,24,75,-0.07196850305488035],[117,24,76,-0.08319795789104367],[117,24,77,-0.087329396205623],[117,24,78,-0.07099525640327553],[117,24,79,-0.07022281835912858],[117,25,64,-0.05543289104932918],[117,25,65,-0.040687951232390586],[117,25,66,-0.019110959644828233],[117,25,67,-0.009772278900320923],[117,25,68,-0.0016444444153296354],[117,25,69,0.0035290352914604485],[117,25,70,-0.005972275862700617],[117,25,71,-0.007005072968245868],[117,25,72,7.158992744975075E-4],[117,25,73,-0.03469760541731585],[117,25,74,-0.0710019434296025],[117,25,75,-0.07224539217364767],[117,25,76,-0.08358593528304684],[117,25,77,-0.08783736104979786],[117,25,78,-0.07144345620775415],[117,25,79,-0.07038887428628843],[117,26,64,-0.05565832425954783],[117,26,65,-0.04092108641107474],[117,26,66,-0.018918931636831317],[117,26,67,-0.009580743930497465],[117,26,68,-0.0017605460336074178],[117,26,69,0.003269502294959855],[117,26,70,-0.00625069016702104],[117,26,71,-0.007315778967961329],[117,26,72,6.309091427459723E-4],[117,26,73,-0.03455238305836223],[117,26,74,-0.0710382999525903],[117,26,75,-0.07255401085631662],[117,26,76,-0.08400685531498611],[117,26,77,-0.08837447115371276],[117,26,78,-0.07191073736911882],[117,26,79,-0.07057424894077764],[117,27,64,-0.05590171154613181],[117,27,65,-0.041165366358430294],[117,27,66,-0.01873300835098394],[117,27,67,-0.00939387811272902],[117,27,68,-0.0018761502281979157],[117,27,69,0.0030150057069480447],[117,27,70,-0.006527126849793615],[117,27,71,-0.007631324255170623],[117,27,72,5.365516125631749E-4],[117,27,73,-0.03442900005461994],[117,27,74,-0.07110563814351947],[117,27,75,-0.07289440135467566],[117,27,76,-0.0844608009317307],[117,27,77,-0.0889408614286636],[117,27,78,-0.07239726851091347],[117,27,79,-0.07077893490755137],[117,28,64,-0.05616319902783882],[117,28,65,-0.04142100022244702],[117,28,66,-0.01855310257513654],[117,28,67,-0.0092116002951837],[117,28,68,-0.001991477088856813],[117,28,69,0.002765170929616368],[117,28,70,-0.0068019363148905995],[117,28,71,-0.007952076145658708],[117,28,72,4.3262674310499375E-4],[117,28,73,-0.03432728233058504],[117,28,74,-0.07120377136954734],[117,28,75,-0.07326661977138728],[117,28,76,-0.08494786356163633],[117,28,77,-0.0895366660878778],[117,28,78,-0.07290321204134652],[117,28,79,-0.07100292482289051],[117,29,64,-0.056442938181108265],[117,29,65,-0.04168819969044106],[117,29,66,-0.018379136249490075],[117,29,67,-0.00903384060381953],[117,29,68,-0.002106751144580145],[117,29,69,0.00251962395395645],[117,29,70,-0.007075469102342111],[117,29,71,-0.008278410281676243],[117,29,72,3.189145786675898E-4],[117,29,73,-0.034247080045661425],[117,29,74,-0.07133253108794674],[117,29,75,-0.07367073574758969],[117,29,76,-0.0854681427447111],[117,29,77,-0.09016201827620499],[117,29,78,-0.073428724102784],[117,29,79,-0.07124621157516496],[117,30,64,-0.056741085730897034],[117,30,65,-0.04196717899725863],[117,30,66,-0.01821104060044722],[117,30,67,-0.008860540633821128],[117,30,68,-0.00222220169236792],[117,30,69,0.002277990945922698],[117,30,70,-0.007348076202990517],[117,30,71,-0.00861071089675373],[117,30,72,1.9517487744576646E-4],[117,30,73,-0.034188267516966096],[117,30,74,-0.07149176647418005],[117,30,75,-0.0741068321231232],[117,30,76,-0.08602174573339941],[117,30,77,-0.0908170496858148],[117,30,78,-0.07397395452880955],[117,30,79,-0.0715087885190049],[117,31,64,-0.05705780353872788],[117,31,65,-0.04225815494871961],[117,31,66,-0.018048756319587182],[117,31,67,-0.008691653683666901],[117,31,68,-0.0023380631623155625],[117,31,69,0.0020398977900324797],[117,31,70,-0.00762010941680747],[117,31,71,-0.008949371100995505],[117,31,72,6.114683349102979E-5],[117,31,73,-0.0341507431427515],[117,31,74,-0.07168134404207864],[117,31,75,-0.07457500457185803],[117,31,76,-0.08660878706860833],[117,31,77,-0.0915018901603449],[117,31,78,-0.07453904681043692],[117,31,79,-0.07179064970432031],[117,32,64,-0.05739325848845268],[117,32,65,-0.04256134695990314],[117,32,66,-0.017892233786507936],[117,32,67,-0.008527145030847593],[117,32,68,-0.0024545755178941283],[117,32,69,0.0018049695920753243],[117,32,70,-0.00789192175320249],[117,32,71,-0.009294793185925992],[117,32,72,-8.345120787011076E-5],[117,32,73,-0.0341344293276851],[117,32,74,-0.071901147258274],[117,32,75,-0.07507536121451366],[117,32,76,-0.08722938813357889],[117,32,77,-0.09221666729004832],[117,32,78,-0.07512413807323251],[117,32,79,-0.07209179012169158],[117,33,64,-0.0577476223702091],[117,33,65,-0.042876977107929176],[117,33,66,-0.017741433334375598],[117,33,67,-0.008366992248308275],[117,33,68,-0.0025719846903427797],[117,33,69,0.0015728301424901274],[117,33,70,-0.008163867871774992],[117,33,71,-0.009647388947960515],[117,33,72,-2.389220407589828E-4],[117,33,73,-0.03413927241105599],[117,33,74,-0.07215107615293394],[117,33,75,-0.07560802221126903],[117,33,76,-0.08788367668816854],[117,33,77,-0.09296150600055555],[117,33,78,-0.07572935906722257],[117,33,79,-0.07241220596568543],[117,34,64,-0.05812107176311085],[117,34,65,-0.04320527019902245],[117,34,66,-0.017596325557180697],[117,34,67,-0.00821118556079983],[117,34,68,-0.0026905430462248092],[117,34,69,0.0013431013417938614],[117,34,70,-0.008436304562151014],[117,34,71,-0.010007580029643462],[117,34,72,-4.055898951383489E-4],[117,34,73,-0.034165242598878084],[117,34,74,-0.07243104692883376],[117,34,75,-0.07617311933645765],[117,34,76,-0.08857178638615738],[117,34,77,-0.09373652813801209],[117,34,78,-0.07635483417165058],[117,34,79,-0.0727518949177458],[117,35,64,-0.05851378791723917],[117,35,65,-0.043546453849734636],[117,35,66,-0.017456891657801635],[117,35,67,-0.008059728240382808],[117,35,68,-0.0028105098872777804],[117,35,69,0.0011154025893213332],[117,35,70,-0.00870959126168179],[117,35,71,-0.010375798277821289],[117,35,72,-5.838007382940428E-4],[117,35,73,-0.034212333900714854],[117,35,74,-0.07274099157073204],[117,35,75,-0.07677079553759594],[117,35,76,-0.0892938562782061],[117,35,77,-0.09454185205347207],[117,35,78,-0.07700068141679967],[117,35,79,-0.0731108564503578],[117,36,64,-0.058925956635493354],[117,36,65,-0.04390075858224766],[117,36,66,-0.017323123836031903],[117,36,67,-0.007912637040341598],[117,36,68,-0.002932151981717175],[117,36,69,8.893501364635864E-4],[117,36,70,-0.008984090609865833],[117,36,71,-0.010752486117906714],[117,36,72,-7.739225806912385E-4],[117,36,73,-0.03428056407190516],[117,36,74,-0.07308085745695456],[117,36,75,-0.07740120448094863],[117,36,76,-0.09005003030309157],[117,36,77,-0.09537759218949729],[117,36,78,-0.07766701252518368],[117,36,79,-0.07348909215417614],[117,37,64,-0.059357768155937116],[117,37,65,-0.04426841793380827],[117,37,66,-0.01719502571584043],[117,37,67,-0.007769942666836481],[117,37,68,-0.0030557441262495885],[117,37,69,6.645564054561143E-4],[117,37,70,-0.009260169038506533],[117,37,71,-0.011138096943444847],[117,37,72,-9.763457854158522E-4],[117,37,73,-0.034369974561769566],[117,37,74,-0.07345060697507992],[117,37,75,-0.07806451008585062],[117,37,76,-0.0908404567699181],[117,37,77,-0.09624385867207942],[117,37,78,-0.07835393297459013],[117,37,79,-0.07388660608987772],[117,38,64,-0.05980941703530189],[117,38,65,-0.04464966858041423],[117,38,66,-0.0170726128111899],[117,38,67,-0.007631690287640468],[117,38,68,-0.003181569738091323],[117,38,69,4.40629274690205E-4],[117,38,70,-0.00953819739670735],[117,38,71,-0.011533095520203278],[117,38,72,-0.001191483380316041],[117,38,73,-0.03448063046826489],[117,38,74,-0.07385021714358869],[117,38,75,-0.07876088605000123],[117,38,76,-0.09166528783404028],[117,38,77,-0.097140756911103],[117,38,78,-0.07906154208555613],[117,38,79,-0.07430340516649012],[117,39,64,-0.06028110203432255],[117,39,65,-0.045044750474920486],[117,39,66,-0.016955913029753716],[117,39,67,-0.007497940077282933],[117,39,68,-0.003309921476289152],[117,39,69,2.1717133148507043E-4],[117,39,70,-0.00981855160985512],[117,39,71,-0.011937958403982997],[117,39,72,-0.0014197713718247284],[117,39,73,-0.03461262049941357],[117,39,74,-0.07427967924128803],[117,39,75,-0.0794905153679299],[117,39,76,-0.0925246789694595],[117,39,77,-0.09806838721265593],[117,39,78,-0.07978993313594075],[117,39,79,-0.07473949954792365],[117,40,64,-0.06077302600565814],[117,40,65,-0.04545390699984371],[117,40,66,-0.016844967213941398],[117,40,67,-0.007368767797957568],[117,40,68,-0.003441101891704041],[117,40,69,-6.220906838956534E-6],[117,40,70,-0.010101613371853276],[117,40,71,-0.012353174371393055],[117,40,72,-0.0016616690593863762],[117,40,73,-0.03476605694175583],[117,40,74,-0.07473899844632699],[117,40,75,-0.08025358984487177],[117,40,76,-0.09341878844054345],[117,40,77,-0.09902684440664891],[117,40,78,-0.08053919350538921],[117,40,79,-0.07519490308944711],[117,41,64,-0.0612853957851608],[117,41,65,-0.045877385135177584],[117,41,66,-0.016739829718629907],[117,41,67,-0.007244265415504074],[117,41,68,-0.003575424104996213],[117,41,69,-2.2995780275152864E-4],[117,41,70,-0.010387770869884308],[117,41,71,-0.012779244862798718],[117,41,72,-0.001917659349293535],[117,41,73,-0.03494107563595885],[117,41,74,-0.0752281934865914],[117,41,75,-0.08105030960830441],[117,41,76,-0.09434777677595862],[117,41,77,-0.10001621749327894],[117,41,78,-0.08130940485253278],[117,41,79,-0.0756696338057937],[117,42,64,-0.061818422087328025],[117,42,65,-0.046315435641620425],[117,42,66,-0.016640569025025382],[117,42,67,-0.007124541749768925],[117,42,68,-0.0037132125119780984],[117,42,69,-4.5445743839216915E-4],[117,42,70,-0.010677419541052231],[117,42,71,-0.013216684436675008],[117,42,72,-0.0021882490666694436],[117,42,73,-0.035137835959627536],[117,42,74,-0.07574729630326105],[117,42,75,-0.08188088261943394],[117,42,76,-0.09531180624778582],[117,42,77,-0.10103658931200353],[117,42,78,-0.08210064332786411],[117,42,79,-0.0761637143725594],[117,43,64,-0.06237231940577606],[117,43,65,-0.04676831325963604],[117,43,66,-0.016547268390031955],[117,43,67,-0.0070097231585703286],[117,43,68,-0.0038548035156524487],[117,43,69,-6.801464847347505E-4],[117,43,70,-0.010970962860240442],[117,43,71,-0.013666021234550194],[117,43,72,-0.0024739692642120788],[117,43,73,-0.03535652081724366],[117,43,74,-0.07629635172927489],[117,43,75,-0.0827455241869266],[117,43,76,-0.0963110403588239],[117,43,77,-0.10208803623675657],[117,43,78,-0.08291297982524463],[117,43,79,-0.07667717266246396],[117,44,64,-0.06294730591964191],[117,44,65,-0.047236276924838894],[117,44,66,-0.016460026530501288],[117,44,67,-0.00689995425446315],[117,44,68,-0.004000546284254638],[117,44,69,-9.074610992600885E-4],[117,44,70,-0.011268813158558483],[117,44,71,-0.014127797455733431],[117,44,72,-0.002775375526259118],[117,44,73,-0.03559733663709574],[117,44,74,-0.07687541718446708],[117,44,75,-0.08364445648524764],[117,44,76,-0.09734564334117896],[117,44,77,-0.10317062790124484],[117,44,78,-0.08374648027506217],[117,44,79,-0.07721004231799537],[117,45,64,-0.06354360340686283],[117,45,65,-0.0477195900002442],[117,45,66,-0.016378958341697916],[117,45,67,-0.0067953986534324195],[117,45,68,-0.004150803534587102],[117,45,69,-0.0011368478513471571],[117,45,70,-0.011571392471751122],[117,45,71,-0.014602569841005003],[117,45,72,-0.0030930482666502225],[117,45,73,-0.035860513374969934],[117,45,74,-0.07748456238912012],[117,45,75,-0.08457790808000398],[117,45,76,-0.09841577966929989],[117,45,77,-0.10428442695825672],[117,45,78,-0.08460120598208873],[117,45,79,-0.07776236336187957],[117,46,64,-0.06416143716528111],[117,46,65,-0.04821852052591323],[117,46,66,-0.016304195649222756],[117,46,67,-0.006696239754527431],[117,46,68,-0.004305952339849657],[117,46,69,-0.001368764674526662],[117,46,70,-0.011879133417885653],[117,46,71,-0.015090910164382607],[117,46,72,-0.003427593018757944],[117,46,73,-0.03614630452426829],[117,46,74,-0.07812386909764767],[117,46,75,-0.08554611346270631],[117,46,76,-0.09952161359065484],[117,46,77,-0.10542948887693664],[117,46,78,-0.08547721401104558],[117,46,79,-0.07833418284667283],[117,47,64,-0.06480102856389908],[117,47,65,-0.04873333410154113],[117,47,66,-0.016235880601945273],[117,47,67,-0.006602674150875475],[117,47,68,-0.004466377555514368],[117,47,69,-0.0016036744317184386],[117,47,70,-0.012192472682973259],[117,47,71,-0.015593398303496908],[117,47,72,-0.0037796332792308135],[117,47,73,-0.03645497968690701],[117,47,74,-0.0787934234001247],[117,47,75,-0.08654930513439038],[117,47,76,-0.1006633012049674],[117,47,77,-0.10660585430011128],[117,47,78,-0.08637455013105681],[117,47,79,-0.07892554804265833],[117,48,64,-0.06546250914289699],[117,48,65,-0.049264208208788],[117,48,66,-0.016174080397328077],[117,48,67,-0.006514826246665399],[117,48,68,-0.004632386318961333],[117,48,69,-0.0018419594273544782],[117,48,70,-0.012511765324169415],[117,48,71,-0.016110535970894204],[117,48,72,-0.004149723857100265],[117,48,73,-0.03678673752535797],[117,48,74,-0.0794932282789067],[117,48,75,-0.08758762578811202],[117,48,76,-0.10184090250204333],[117,48,77,-0.10781346122890288],[117,48,78,-0.0872931614388359],[117,48,79,-0.07953641913292463],[117,49,64,-0.06614594041941209],[117,49,65,-0.049811252217083546],[117,49,66,-0.01611880767439624],[117,49,67,-0.006432768514257493],[117,49,68,-0.004804228162731556],[117,49,69,-0.002083941517941916],[117,49,70,-0.012837304660473389],[117,49,71,-0.016642766000737587],[117,49,72,-0.0045383697532509985],[117,49,73,-0.03714172426022335],[117,49,74,-0.08022322173191596],[117,49,75,-0.08866114605463248],[117,49,76,-0.10305439898216624],[117,49,77,-0.10905216282523089],[117,49,78,-0.08823291462303218],[117,49,79,-0.08016668755619251],[117,50,64,-0.06685136945355863],[117,50,65,-0.05037456328590654],[117,50,66,-0.01607007694283089],[117,50,67,-0.0063565779148376115],[117,50,68,-0.004982151418362019],[117,50,69,-0.002329938649097291],[117,50,70,-0.013169378728017628],[117,50,71,-0.017190528314365305],[117,50,72,-0.004946081836938994],[117,50,73,-0.03752008912286659],[117,50,74,-0.0809833320134032],[117,50,75,-0.08976991949936082],[117,50,76,-0.10430374868153895],[117,50,77,-0.11032178278616382],[117,50,78,-0.08919365195033813],[117,50,79,-0.08081623220082004],[117,51,64,-0.06757882919971075],[117,51,65,-0.050954227060311774],[117,51,66,-0.01602790581229866],[117,51,67,-0.006286337112435921],[117,51,68,-0.005166404403846378],[117,51,69,-0.0025802661717017608],[117,51,70,-0.013508271509175553],[117,51,71,-0.01775426062692939],[117,51,72,-0.005373377230501483],[117,51,73,-0.03792198452193294],[117,51,74,-0.08177347759642835],[117,51,75,-0.09091398231550221],[117,51,76,-0.10558888588484662],[117,51,77,-0.11162211540576653],[117,51,78,-0.09017519191717459],[117,51,79,-0.08148492021774259],[117,52,64,-0.0683283377413173],[117,52,65,-0.05155031725583216],[117,52,66,-0.015992315116335806],[117,52,67,-0.0062221345771940415],[117,52,68,-0.0053572354947371064],[117,52,69,-0.0028352370427804207],[117,52,70,-0.013854263048822096],[117,52,71,-0.018334398017838077],[117,52,72,-0.005820778535548518],[117,52,73,-0.03834756507172576],[117,52,74,-0.08259356602289876],[117,52,75,-0.09209335189789215],[117,52,76,-0.10690971972994488],[117,52,77,-0.11295292455192124],[117,52,78,-0.09117732881702313],[117,52,79,-0.0821726067263485],[117,53,64,-0.06909989749483925],[117,53,65,-0.052162895218222684],[117,53,66,-0.015963329014692114],[117,53,67,-0.006164064661977903],[117,53,68,-0.005554893164006682],[117,53,69,-0.003095161996822246],[117,53,70,-0.014207629544338407],[117,53,71,-0.018931372452288278],[117,53,72,-0.006288812987811394],[117,53,73,-0.03879698657159462],[117,53,74,-0.08344349273352442],[117,53,75,-0.09330802539184543],[117,53,76,-0.10826613280069367],[117,53,77,-0.1143139426556408],[117,53,78,-0.09219983232039185],[117,53,79,-0.08287913450899059],[117,54,64,-0.06989349438624365],[117,54,65,-0.05279200946084424],[117,54,66,-0.01594097507473918],[117,54,67,-0.006112227652575021],[117,54,68,-0.005759625991373107],[117,54,69,-0.003360349688217472],[117,54,70,-0.014568643410253972],[117,54,71,-0.019545612254833037],[117,54,72,-0.006778011540757914],[117,54,73,-0.03927040493761203],[117,54,74,-0.08432313988135728],[117,54,75,-0.09455797822184281],[117,54,76,-0.10965797971352467],[117,54,77,-0.11570486971894761],[117,54,78,-0.09324244707188156],[117,54,79,-0.08360433369622305],[117,55,64,-0.07070909700356326],[117,55,65,-0.053437695182520534],[117,55,66,-0.015925284332471163],[117,55,67,-0.006066729791639678],[117,55,68,-0.005971682642761116],[117,55,69,-0.003631106805456124],[117,55,70,-0.014937573318395176],[117,55,71,-0.02017754153598073],[117,55,72,-0.007288907878172467],[117,55,73,-0.03976797508787806],[117,55,74,-0.08523237513265501],[117,55,75,-0.09584316260501763],[117,55,76,-0.11108508570345843],[117,55,77,-0.11712537234745404],[117,55,78,-0.09430489230879315],[117,55,79,-0.08434802144478516],[117,56,64,-0.07154665572916571],[117,56,65,-0.05409997376879668],[117,56,66,-0.015916291333610565],[117,56,67,-0.006027683276538804],[117,56,68,-0.006191311820599104],[117,56,69,-0.0039077381577580835],[117,56,70,-0.015314684214440584],[117,56,71,-0.02082757957294351],[117,56,72,-0.007822037356077297],[117,56,73,-0.04028984978294842],[117,56,74,-0.08617105045896657],[117,56,75,-0.09716350605462082],[117,56,76,-0.11254724521546919],[117,56,77,-0.11857508281387844],[117,56,78,-0.0953868615057328],[117,56,79,-0.08511000161033941],[117,57,64,-0.07240610185549928],[117,57,65,-0.05477885227960704],[117,57,66,-0.015914034155299902],[117,57,67,-0.005995206231226279],[117,57,68,-0.006418762185666852],[117,57,69,-0.00419054673481658],[117,57,70,-0.01570023731180363],[117,57,71,-0.02149614014576381],[117,57,72,-0.008377935874534248],[117,57,73,-0.04083617842300633],[117,57,74,-0.08713900092445147],[117,57,75,-0.09851890987881855],[117,57,76,-0.11404422050725263],[117,57,77,-0.1200535981588075],[117,57,78,-0.09648802204966672],[117,57,79,-0.08589006441694841],[117,58,64,-0.07328734668815871],[117,58,65,-0.0554743229263936],[117,58,66,-0.01591855440879035],[117,58,67,-0.00596942265221399],[117,58,68,-0.006654282251186242],[117,58,69,-0.004479833740308307],[117,58,70,-0.016094490063735565],[117,58,71,-0.022183630830122758],[117,58,72,-0.008957138680017206],[117,58,73,-0.04140710580351166],[117,58,74,-0.08813604347252904],[117,58,75,-0.09990924768031663],[117,58,76,-0.1155757402695482],[117,58,77,-0.12156047933501757],[117,58,78,-0.09760801494979902],[117,58,79,-0.08668798612518847],[117,59,64,-0.07419028064027706],[117,59,65,-0.056186362541827975],[117,59,66,-0.015929897223546787],[117,59,67,-0.0059504623287280145],[117,59,68,-0.006898120249903208],[117,59,69,-0.004775898599870906],[117,59,70,-0.016497696114594156],[117,59,71,-0.02289045224829393],[117,59,72,-0.009560179099283314],[117,59,73,-0.0420027708312601],[117,59,74,-0.08916197571612285],[117,59,75,-0.10133436386253086],[117,59,76,-0.11714149827035739],[117,59,77,-0.12309525040174783],[117,59,78,-0.09874645458664999],[117,59,79,-0.08750352870081035],[117,60,64,-0.07511477232237027],[117,60,65,-0.05691493204536498],[117,60,66,-0.015948111213167963],[117,60,67,-0.005938460737133113],[117,60,68,-0.007150523974939626],[117,60,69,-0.005079038944270517],[117,60,70,-0.01691010523124712],[117,60,71,-0.023616997279844648],[117,60,72,-0.01018758720589536],[117,60,73,-0.04262330520294978],[117,60,74,-0.090216574735875],[117,60,75,-0.10279407214818198],[117,60,76,-0.11874115202951126],[117,60,77,-0.1246573977753341],[117,60,78,-0.09990292850465864],[117,60,79,-0.08833643948581958],[117,61,64,-0.07606066763185192],[117,61,65,-0.057659975907894005],[117,61,66,-0.015973248423468728],[117,61,67,-0.005933558909674754],[117,61,68,-0.0074117405951884775],[117,61,69,-0.0053895505684629745],[117,61,70,-0.017331963215558237],[117,61,71,-0.024363650233787386],[117,61,72,-0.01083988842075509],[117,61,73,-0.04326883204851582],[117,61,74,-0.09129959589080931],[117,61,75,-0.10428815411634511],[117,61,76,-0.12037432153013929],[117,61,77,-0.12624636954257873],[117,61,78,-0.1010769972525262],[117,61,79,-0.08918645087378405],[117,62,64,-0.07702778884658902],[117,62,65,-0.0584214216188579],[117,62,66,-0.016005364263094922],[117,62,67,-0.005935903277633061],[117,62,68,-0.007682016446103743],[117,62,69,-0.005707727367318979],[117,62,70,-0.017763511798971683],[117,62,71,-0.025130785984075955],[117,62,72,-0.011517602048298903],[117,62,73,-0.043939464541710486],[117,62,74,-0.0924107716460546],[117,62,75,-0.10581635776415897],[117,62,76,-0.12204058797371047],[117,62,77,-0.12786157484324087],[117,62,78,-0.10226819427547439],[117,62,79,-0.0900532799911722],[117,63,64,-0.07801593372699697],[117,63,65,-0.05919917915928437],[117,63,66,-0.016044517417037565],[117,63,67,-0.005945645489000835],[117,63,68,-0.007961596796778802],[117,63,69,-0.006033861248809137],[117,63,70,-0.018204988520231145],[117,63,71,-0.025918769070496988],[117,63,72,-0.01222123975028626],[117,63,73,-0.04463530448062595],[117,63,74,-0.09354981042237502],[117,63,75,-0.10737839609957547],[117,63,76,-0.12373949258543188],[117,63,77,-0.12950238332800648],[117,63,78,-0.10347602586350434],[117,63,79,-0.09093662838650828],[117,64,64,-0.07902487463124316],[117,64,65,-0.05999314048419507],[117,64,66,-0.01609076974337545],[117,64,67,-0.005962942200789118],[117,64,68,-0.00825072559422178],[117,64,69,-0.006368242025442571],[117,64,70,-0.018656626587261665],[117,64,71,-0.026727952767129828],[117,64,72,-0.012951303959360458],[117,64,73,-0.045356440841026364],[117,64,74,-0.09471639547231005],[117,64,75,-0.10897394577161597],[117,64,76,-0.12547053547680248],[117,64,77,-0.1311681246981783],[117,64,78,-0.10469997115957869],[117,64,79,-0.09183618172904673],[117,65,64,-0.08005435764829465],[117,65,65,-0.060803179017964865],[117,65,66,-0.01614418615361429],[117,65,67,-0.005987954846123746],[117,65,68,-0.008549645185824472],[117,65,69,-0.00671115728483374],[117,65,70,-0.01911865472433077],[117,65,71,-0.027558678120787328],[117,65,72,-0.013708286234924096],[117,65,73,-0.046102948305626175],[117,65,74,-0.09591018378787756],[117,65,75,-0.11060264574478543],[117,65,76,-0.1272331745722424],[117,65,77,-0.13285808833330687],[117,65,78,-0.10593948223158611],[117,65,79,-0.0927516095186905],[117,66,64,-0.08110410175359452],[117,66,65,-0.061629149166224445],[117,66,66,-0.016204834477004586],[117,66,67,-0.006020849376362328],[117,66,68,-0.008858596021083548],[117,66,69,-0.007062892240278195],[117,66,70,-0.019591297005565285],[117,66,71,-0.02841127296193141],[117,66,72,-0.014492665564120917],[117,66,73,-0.04687488577264419],[117,66,74,-0.09713080504484933],[117,66,75,-0.1122640960243576],[117,66,76,-0.12902682460668544],[117,66,77,-0.13457152301281006],[117,66,78,-0.10719398421176492],[117,66,79,-0.09368256480882921],[117,67,64,-0.0821737979923026],[117,67,65,-0.06247088584796467],[117,67,66,-0.016272785309199175],[117,67,67,-0.006061795978441278],[117,67,68,-0.009177816333660218],[117,67,69,-0.00742372956228924],[117,67,70,-0.02007477267602447],[117,67,71,-0.02928605089085989],[117,67,72,-0.015304906611131612],[117,67,73,-0.047672294847228014],[117,67,74,-0.09837786058871799],[117,67,75,-0.11395785643939427],[117,67,76,-0.13085085620110865],[117,67,77,-0.13630763673755666],[117,67,78,-0.10846287550712566],[117,67,79,-0.09462868394373367],[117,68,64,-0.08326310869505713],[117,68,65,-0.0633282040515086],[117,68,66,-0.01634811184565992],[117,68,67,-0.00611096876777966],[117,68,68,-0.00950754180495833],[117,68,69,-0.007793949192054149],[117,68,70,-0.020569295961465433],[117,68,71,-0.03018331024201275],[117,68,72,-0.016145457918231954],[117,68,73,-0.04849519831953326],[117,68,74,-0.09965092246749876],[117,68,75,-0.11568344549036841],[117,68,76,-0.13270459502287982],[117,68,77,-0.13806559665715193],[117,68,78,-0.10974552808421541],[117,68,79,-0.09558958631211525],[117,69,64,-0.08437166673132745],[117,69,65,-0.06420089841806648],[117,69,66,-0.01643088970023439],[117,69,67,-0.006168545457097638],[117,69,68,-0.009848005210456787],[117,69,69,-0.008173828137842747],[117,69,70,-0.02107507586803379],[117,69,71,-0.03110333302951196],[117,69,72,-0.017014750062473282],[117,69,73,-0.04934359863351523],[117,69,74,-0.10094953251660137],[117,69,75,-0.11744033926836965],[117,69,76,-0.13458732103782342],[117,69,77,-0.1398445291085265],[117,69,78,-0.11104128783139157],[117,69,79,-0.09656487411843348],[117,70,64,-0.08549907480548485],[117,70,65,-0.06508874285660553],[117,70,66,-0.016521196709371588],[117,70,67,-0.006234707001604249],[117,70,68,-0.010199436050124662],[117,70,69,-0.008563640255457451],[117,70,70,-0.0215923159731454],[117,70,71,-0.0320463838772239],[117,70,72,-0.017913193772190843],[117,70,73,-0.05021747635072145],[117,70,74,-0.10227320150103493],[117,70,75,-0.11922797045288708],[117,70,76,-0.1364982678608316],[117,70,77,-0.14164351977120065],[117,70,78,-0.11234947500157862],[117,70,79,-0.09755413217351584],[117,71,64,-0.0866449048007214],[117,71,65,-0.06599149019373277],[117,71,66,-0.016619112722433788],[117,71,67,-0.006309637221038945],[117,71,68,-0.01056206016427303],[117,71,69,-0.008963656013818074],[117,71,70,-0.022121214208813706],[117,71,71,-0.03301270893677109],[117,71,72,-0.01884117800786047],[117,71,73,-0.05111678861357379],[117,71,74,-0.10362140832020368],[117,71,75,-0.12104572739514376],[117,71,76,-0.13843662221172445],[117,71,77,-0.14346161394431117],[117,71,78,-0.11366938473820715],[117,71,79,-0.09855692770597635],[117,72,64,-0.08780869717600737],[117,72,65,-0.06690887186230943],[117,72,66,-0.01672471937863715],[117,72,67,-0.006393522399173112],[117,72,68,-0.010936099336312372],[117,72,69,-0.009374142246867202],[117,72,70,-0.022661962638754585],[117,72,71,-0.034002534797147266],[117,72,72,-0.019799068012223246],[117,72,73,-0.05204146761288927],[117,72,74,-0.10499359928057934],[117,72,75,-0.12289295329396445],[117,72,76,-0.14040152348296964],[117,72,77,-0.14529781695024804],[117,72,78,-0.11500028768683844],[117,72,79,-0.09957281019592978],[117,73,64,-0.08898996042128914],[117,73,65,-0.06784059763249368],[117,73,66,-0.016838099871189924],[117,73,67,-0.006486550861461939],[117,73,68,-0.011321770883956247],[117,73,69,-0.009795361893029382],[117,73,70,-0.023214747230632375],[117,73,71,-0.035016067389764045],[117,73,72,-0.020787203334953708],[117,73,73,-0.052991419064613576],[117,73,74,-0.10638918744152907],[117,73,75,-0.12476894547112052],[117,73,76,-0.14239206342573377],[117,73,77,-0.14715109466944748],[117,73,78,-0.11634143069472516],[117,73,79,-0.10060131123246274],[117,74,64,-0.09018817057606043],[117,74,65,-0.06878635538881804],[117,74,66,-0.01695933869920002],[117,74,67,-0.0065889125315881985],[117,74,68,-0.011719287240443174],[117,74,69,-0.010227573723466797],[117,74,70,-0.023779747624796628],[117,74,71,-0.036053490892886196],[117,74,72,-0.02180589583746191],[117,74,73,-0.053966520700914004],[117,74,74,-0.10780755203948889],[117,74,75,-0.126672954752965],[117,74,76,-0.1444072859604956],[117,74,77,-0.14902037421049352],[117,74,78,-0.11769203760022494],[117,74,79,-0.10164194439623449],[117,75,64,-0.09140277081646607],[117,75,65,-0.0697458109568993],[117,75,66,-0.017088521408009403],[117,75,67,-0.006700798467778079],[117,75,68,-0.012128855527466259],[117,75,69,-0.010671032060468925],[117,75,70,-0.024357136900940088],[117,75,71,-0.03711496663963289],[117,75,72,-0.022855427683814017],[117,75,73,-0.054966620781022255],[117,75,74,-0.1092480379956595],[117,75,75,-0.1286041849651144],[117,75,76,-0.14644618711829258],[117,75,77,-0.15090454471937875],[117,75,78,-0.11905131011376434],[117,75,79,-0.10269420516860095],[117,76,64,-0.09263317111600956],[117,76,65,-0.07071860798328575],[117,76,66,-0.017225734318652104],[117,76,67,-0.0068224003798602],[117,76,68,-0.012550677121561028],[117,76,69,-0.01112598648735196],[117,76,70,-0.024947081344122515],[117,76,71,-0.03820063203386472],[117,76,72,-0.02393604932409503],[117,76,73,-0.05599153662741143],[117,76,74,-0.11070995551231771],[117,76,75,-0.13056179254678624],[117,76,76,-0.14850771511841565],[117,76,77,-0.15280245833136247],[117,76,78,-0.12041842879172446],[117,76,79,-0.10375757086859837],[117,77,64,-0.09387874798483999],[117,77,65,-0.0717043678718278],[117,77,66,-0.017371064247150077],[117,77,67,-0.006953910128109225],[117,77,68,-0.012984947215741182],[117,77,69,-0.011592681551263861],[117,77,70,-0.025549740211604135],[117,77,71,-0.03931059947840692],[117,77,72,-0.025047977476836035],[117,77,73,-0.057041053193028934],[117,77,74,-0.11219257976268576],[117,77,75,-0.13254488629119376],[117,77,76,-0.15059077058804693],[117,77,77,-0.15471293126841748],[117,77,78,-0.12179255410427914],[117,77,79,-0.10483150061905126],[117,78,64,-0.09513884429250213],[117,78,65,-0.07270268977986899],[117,78,66,-0.017524598214441477],[117,78,67,-0.007095519205052497],[117,78,68,-0.013431854378266833],[117,78,69,-0.012071356460364285],[117,78,70,-0.026165265501985325],[117,78,71,-0.04044495532022724],[117,78,72,-0.026191393117488724],[117,78,73,-0.05811492166550793],[117,78,74,-0.11369515067921118],[117,78,75,-0.13455252721822414],[117,78,76,-0.15269420692905974],[117,78,77,-0.15663474508483644],[117,78,78,-0.12317282759791624],[117,78,79,-0.10591543534305499],[117,79,64,-0.09641276917890738],[117,79,65,-0.07371315067742532],[117,79,66,-0.017686423147787823],[117,79,67,-0.007247418201523752],[117,79,68,-0.013891580110495697],[117,79,69,-0.012562244776897923],[117,79,70,-0.026793801728172664],[117,79,71,-0.041603758817322936],[117,79,72,-0.0273664394802373],[117,79,73,-0.05921285811443077],[117,79,74,-0.11521687284495742],[117,79,75,-0.1365837285854014],[117,79,76,-0.15481683083685574],[117,79,77,-0.15856664806310722],[117,79,78,-0.12455837315304476],[117,79,79,-0.10700879779204206],[117,80,64,-0.09769979805808307],[117,80,65,-0.07473530547232916],[117,80,66,-0.017856625574522417],[117,80,67,-0.00740979625832114],[117,80,68,-0.014364298405787075],[117,80,69,-0.013065574107681482],[117,80,70,-0.027435485695675256],[117,80,71,-0.042787041132157366],[117,80,72,-0.028573220080695145],[117,80,73,-0.060334542187799226],[117,80,74,-0.11675691549257469],[117,80,75,-0.13863745604280173],[117,80,76,-0.15695740297569002],[117,80,77,-0.16050735676162356],[117,80,78,-0.12594829833669313],[117,80,79,-0.1081109926065506],[117,81,64,-0.0989991727190991],[117,81,65,-0.07576868720417206],[117,81,66,-0.018035291309080537],[117,81,67,-0.007582840504961587],[117,81,68,-0.014850175311515765],[117,81,69,-0.013581565793595244],[117,81,70,-0.028090446287772353],[117,81,71,-0.04399480435661875],[117,81,72,-0.029811796767343274],[117,81,73,-0.06147961586402054],[117,81,74,-0.1183144126151691],[117,81,75,-0.14071262793735034],[117,81,76,-0.15911463881457244],[117,81,77,-0.16245555771531825],[117,81,78,-0.1273416958499853],[117,81,79,-0.10922140641079026],[117,82,64,-0.10031010152834785],[117,82,65,-0.07681280730968419],[117,82,66,-0.01822250513431854],[117,82,67,-0.00776673548714111],[117,82,68,-0.015349368496299313],[117,82,69,-0.01411043459971306],[117,82,70,-0.028758804259131493],[117,82,71,-0.04522702057357751],[117,82,72,-0.03108218780980777],[117,82,73,-0.06264768226578196],[117,82,74,-0.11988846319312393],[117,82,75,-0.14280811577153338],[117,82,76,-0.16128720962736381],[117,82,77,-0.16440990928977067],[117,82,78,-0.12873764506972957],[117,82,79,-0.11033940794206247],[117,83,64,-0.10163175959041224],[117,83,65,-0.0778671555564766],[117,83,66,-0.0184183503135704],[117,83,67,-0.007961662484071083],[117,83,68,-0.01586202656644951],[117,83,69,-0.01465238811638371],[117,83,70,-0.02944067134902528],[117,83,71,-0.0464836297062027],[117,83,72,-0.03238436504585094],[117,83,73,-0.06383830237803138],[117,83,74,-0.12147812700971436],[117,83,75,-0.1449227389299257],[117,83,76,-0.1634737364740955],[117,83,77,-0.16636903583266202],[117,83,78,-0.1301352071194562],[117,83,79,-0.11146434224085341],[117,84,64,-0.10296328649567757],[117,84,65,-0.07893118896086943],[117,84,66,-0.018622903345577334],[117,84,67,-0.008167795796435244],[117,84,68,-0.016388280471466486],[117,84,69,-0.015207617109461684],[117,84,70,-0.030136128192650352],[117,84,71,-0.047764498565731305],[117,84,72,-0.0337182199526741],[117,84,73,-0.06505092513503392],[117,84,74,-0.12308228164782731],[117,84,75,-0.14705507834032983],[117,84,76,-0.16567256336792266],[117,84,77,-0.16833128063152314],[117,84,78,-0.13153321847891647],[117,84,79,-0.11259534139587057],[117,85,64,-0.104303795513436],[117,85,65,-0.08000433621225447],[117,85,66,-0.018836233983928332],[117,85,67,-0.008385301797740548],[117,85,68,-0.016928241452137966],[117,85,69,-0.01577629280098073],[117,85,70,-0.030845219538853493],[117,85,71,-0.04906941015256981],[117,85,72,-0.03508355135830787],[117,85,73,-0.06628487093073374],[117,85,74,-0.12469959403010152],[117,85,75,-0.1492034369151161],[117,85,76,-0.16788170974645966],[117,85,77,-0.17029465578656736],[117,85,78,-0.13293024938910084],[117,85,79,-0.11373128519988655],[117,86,64,-0.1056523845951824],[117,86,65,-0.08108601659779954],[117,86,66,-0.019058411657110003],[117,86,67,-0.008614342197235041],[117,86,68,-0.017482010285888926],[117,86,69,-0.01635857716118489],[117,86,70,-0.03156797955774128],[117,86,71,-0.05039810843178928],[117,86,72,-0.0364800982005525],[117,86,73,-0.06753940979093428],[117,86,74,-0.12632868837496805],[117,86,75,-0.1513660568573783],[117,86,76,-0.17009913605408275],[117,86,77,-0.17225713378576282],[117,86,78,-0.13432484745324078],[117,86,79,-0.11487102122015891],[117,87,64,-0.10700813800358049],[117,87,65,-0.0821756419846],[117,87,66,-0.019289505541365777],[117,87,67,-0.008855073702142262],[117,87,68,-0.018049677660811867],[117,87,69,-0.016954623430462896],[117,87,70,-0.03230443338733121],[117,87,71,-0.0517503007079785],[117,87,72,-0.03790754025116568],[117,87,73,-0.06881376551897139],[117,87,74,-0.12796815748779522],[117,87,75,-0.15354113457897933],[117,87,76,-0.1723227622483923],[117,87,77,-0.17421666838737387],[117,87,78,-0.13571555483255185],[117,87,79,-0.11601337867919319],[117,88,64,-0.10837012756816466],[117,88,65,-0.08327261784377192],[117,88,66,-0.019529584246504916],[117,88,67,-0.009107647458461491],[117,88,68,-0.018631323977842736],[117,88,69,-0.01756457598778617],[117,88,70,-0.033054597100460596],[117,88,71,-0.05312565719351143],[117,88,72,-0.039365496719240736],[117,88,73,-0.07010711497167549],[117,88,74,-0.12961656370615351],[117,88,75,-0.15572682220446896],[117,88,76,-0.1745504698998717],[117,88,77,-0.1761711974966144],[117,88,78,-0.13710091034990587],[117,88,79,-0.11715716857296266],[117,89,64,-0.10973741402823464],[117,89,65,-0.08437634433690427],[117,89,66,-0.01977871551490574],[117,89,67,-0.009372208508526783],[117,89,68,-0.019227019179301818],[117,89,69,-0.018188570233236688],[117,89,70,-0.033818477688128734],[117,89,71,-0.054523810651564183],[117,89,72,-0.0408535249695664],[117,89,73,-0.07141858745994203],[117,89,74,-0.13127243998941013],[117,89,75,-0.15792122926433855],[117,89,76,-0.17678010448111456],[117,89,77,-0.178118646191702],[117,89,78,-0.13847945167543627],[117,89,79,-0.1183011838464399],[117,90,64,-0.11110904846027365],[117,90,65,-0.08548621746258048],[117,90,66,-0.020036965934492487],[117,90,67,-0.009648895267073366],[117,90,68,-0.01983682260510599],[117,90,69,-0.018826732485738504],[117,90,70,-0.034596073059852614],[117,90,71,-0.055944356116987955],[117,90,72,-0.04237111936317215],[117,90,73,-0.07274726427786866],[117,90,74,-0.13293429115053734],[117,90,75,-0.1601224245749232],[117,90,76,-0.17900947784075513],[117,90,77,-0.18005692989080568],[117,90,78,-0.1398497175872077],[117,90,79,-0.11944419962580262],[117,91,64,-0.11248407378690467],[117,91,65,-0.08660163026041076],[117,91,66,-0.020304400666443078],[117,91,67,-0.009937839017533256],[117,91,68,-0.02046078287783735],[117,91,69,-0.019479179896995987],[117,91,70,-0.03538737206150747],[117,91,71,-0.05738685069791216],[117,91,72,-0.043917710227027756],[117,91,73,-0.07409217836420082],[117,91,74,-0.1346005952276625],[117,91,75,-0.1623284383017114],[117,91,76,-0.18123637085666755],[117,91,77,-0.18198395765084235],[117,91,78,-0.1412102502997924],[117,91,79,-0.12058497350674752],[117,92,64,-0.11386152636403633],[117,92,65,-0.0877219740697206],[117,92,66,-0.020581083188333293],[117,92,67,-0.01023916343022699],[117,92,68,-0.021098937817704118],[117,92,69,-0.020146020382510108],[117,92,70,-0.0361923545109999],[117,92,71,-0.05885081346070491],[117,92,72,-0.045492662959569226],[117,92,73,-0.0754523140995256],[117,92,74,-0.13626980499241917],[117,92,75,-0.16453726420216072],[117,92,76,-0.18345853626232708],[117,92,77,-0.1838976355884876],[117,92,78,-0.14255959785326316],[117,92,79,-0.12172224589833898],[117,93,64,-0.11524043764258757],[117,93,65,-0.08884663983982996],[117,93,66,-0.020867075053442798],[117,93,67,-0.010552984104127715],[117,93,68,-0.021751314388352195],[117,93,69,-0.02082735257048553],[117,93,70,-0.03701099125207158],[117,93,71,-0.060335725400721296],[117,93,72,-0.04709527727848324],[117,93,73,-0.07682660724244168],[117,93,74,-0.13794034959184306],[117,93,75,-0.16674686204360883],[117,93,76,-0.18567370163971753],[117,93,77,-0.18579587041332837],[117,93,78,-0.14389631655493065],[117,93,79,-0.12285474042194494],[117,94,64,-0.11661983590082328],[117,94,65,-0.08997501948856476],[117,94,66,-0.021162435666874754],[117,94,67,-0.01087940813378637],[117,94,68,-0.02241792867431473],[117,94,69,-0.021523265769291398],[117,94,70,-0.03784324422638948],[117,94,71,-0.06184102950097585],[117,94,72,-0.048724786616811316],[117,94,73,-0.07821394500757999],[117,94,74,-0.13961063632009102],[117,94,75,-0.16895516019122134],[117,94,76,-0.18787957257152146],[117,94,77,-0.18767657306254273],[117,94,78,-0.14521897346585624],[117,94,79,-0.12398116436479763],[117,95,64,-0.11799874804307126],[117,95,65,-0.09110650730543689],[117,95,66,-0.02146722207914947],[117,95,67,-0.011218533703004045],[117,95,68,-0.023098785890801665],[117,95,69,-0.02223383995408112],[117,95,70,-0.03868906656403857],[117,95,71,-0.06336613088067392],[117,95,72,-0.05038035767313797],[117,95,73,-0.07961316628808221],[117,95,74,-0.14127905251591047],[117,95,75,-0.1711600583603735],[117,95,76,-0.19007383594481247],[117,95,77,-0.18953766242609169],[117,95,78,-0.14652614892402613],[117,95,79,-0.12510020918782536],[117,96,64,-0.11937620146024133],[117,96,65,-0.09224050139563682],[117,96,66,-0.021781488797827594],[117,96,67,-0.01157044970670644],[117,96,68,-0.023793880426328413],[117,96,69,-0.022959145772998416],[117,96,70,-0.03954840269236399],[117,96,71,-0.06491039703518699],[117,96,72,-0.05206109012117178],[117,96,73,-0.08102306202473418],[117,96,74,-0.14294396758133243],[117,96,75,-0.17335943052723685],[117,96,76,-0.19225416339785414],[117,96,77,-0.19137706915092292],[117,96,78,-0.14781643909581937],[117,96,79,-0.1262105510873685],[117,97,64,-0.12075122594731759],[117,97,65,-0.09337640516079264],[117,97,66,-0.02210528761771701],[117,97,67,-0.01193523540245664],[117,97,68,-0.024503195918590345],[117,97,69,-0.023699244573339162],[117,97,70,-0.040421188463073375],[117,97,71,-0.06647315816884211],[117,97,72,-0.05376601648367614],[117,97,73,-0.08244237572363708],[117,97,74,-0.144603735116695],[117,97,75,-0.17555112799079534],[117,97,76,-0.1944182149011081],[117,97,77,-0.1931927395123345],[117,97,78,-0.14908845854729486],[117,97,79,-0.12731085161048203],[117,98,64,-0.1221228556727141],[117,98,65,-0.09451362881222651],[117,98,66,-0.02243866747015649],[117,98,67,-0.012312960092952891],[117,98,68,-0.025226705363837802],[117,98,69,-0.024454188447917708],[117,98,70,-0.04130735129740486],[117,98,71,-0.06805370762159256],[117,98,72,-0.055494102175260566],[117,98,73,-0.08386980412391229],[117,98,74,-0.14625669516672093],[117,98,75,-0.17773298257896228],[117,98,76,-0.19656364246303787],[117,98,77,-0.19498263934029914],[117,98,78,-0.15034084282669294],[117,98,79,-0.12839975832355593],[117,99,64,-0.12349013119407926],[117,99,65,-0.09565159091218645],[117,99,66,-0.022781674291766696],[117,99,67,-0.012703682840722914],[117,99,68,-0.025964371259809688],[117,99,69,-0.025224020301724506],[117,99,70,-0.04220681034902512],[117,99,71,-0.06965130239029274],[117,99,72,-0.057244245718031536],[117,99,73,-0.0853039980164897],[117,99,74,-0.14790117657193594],[117,99,75,-0.17990280999087524],[117,99,76,-0.19868809395075163],[117,99,77,-0.19674475798817218],[117,99,78,-0.15157225104939498],[117,99,79,-0.12947590553395896],[117,100,64,-0.12485210151491812],[117,100,65,-0.09678971993837589],[117,100,66,-0.02313435091304022],[117,100,67,-0.013107452216180588],[117,100,68,-0.02671614578218347],[117,100,69,-0.026008773938903974],[117,100,70,-0.04311947668428828],[117,100,71,-0.07126516374505941],[117,100,72,-0.05901527913366926],[117,100,73,-0.08674356321465664],[117,100,74,-0.14953549941937827],[117,100,75,-0.1820584132669442],[117,100,76,-0.20078921701508867],[117,100,77,-0.19847711233098303],[117,100,78,-0.15278136847656099],[117,100,79,-0.1305379150644765],[117,101,64,-0.12620782617616488],[117,101,65,-0.09792745586691262],[117,101,66,-0.023496736967060543],[117,101,67,-0.01352430608008579],[117,101,68,-0.027481970994329773],[117,101,69,-0.02680847416994543],[117,101,70,-0.04404525347937114],[117,101,71,-0.07289447794086283],[117,101,72,-0.06080596851496925],[117,101,73,-0.08818706167661206],[117,101,74,-0.151157977586195],[117,101,75,-0.1841975863777381],[117,101,76,-0.2028646631093278],[117,101,77,-0.20017775078026953],[117,101,78,-0.15396690907862431],[117,101,79,-0.13158439708032918],[117,102,64,-0.127556377376565],[117,102,65,-0.09906425176863506],[117,102,66,-0.02386886881853416],[117,102,67,-0.013954271401308541],[117,102,68,-0.028261779089972253],[117,102,69,-0.02762313693883971],[117,102,70,-0.04498403623368909],[117,102,71,-0.0745383970241589],[117,102,72,-0.06261501477932349],[117,102,73,-0.08963301277977934],[117,102,74,-0.15276692136930445],[117,102,75,-0.1863181179222266],[117,102,76,-0.20491209159020887],[117,102,77,-0.20184475730216522],[117,102,78,-0.15512761807475298],[117,102,79,-0.13261395096850662],[117,103,64,-0.12889684211557242],[117,103,65,-0.10019957541356307],[117,103,66,-0.024250779513276005],[117,103,67,-0.014397364110709588],[117,103,68,-0.029055492668234324],[117,103,69,-0.02845276946987461],[117,103,70,-0.04593571299894224],[117,103,71,-0.07619603973408498],[117,103,72,-0.06444105460610076],[117,103,73,-0.09107989474621966],[117,103,74,-0.15436064019402487],[117,103,75,-0.1884177949254934],[117,103,76,-0.20692917388963844],[117,103,77,-0.20347625542535386],[117,103,78,-0.15626227443946425],[117,103,79,-0.13362516626919718],[117,104,64,-0.1302283243522681],[117,104,65,-0.10133291087817224],[117,104,66,-0.024642498748206332],[117,104,67,-0.014853588991821367],[117,104,68,-0.029863025040394453],[117,104,69,-0.029297370433627252],[117,104,70,-0.04690016462305479],[117,104,71,-0.07786649249742196],[117,104,72,-0.06628266155931536],[117,104,73,-0.09252614621802402],[117,104,74,-0.15593744539424803],[117,104,75,-0.19049440672559503],[117,104,76,-0.2089135977451027],[117,104,77,-0.20507041222540595],[117,104,78,-0.15736969336762338],[117,104,79,-0.13461662365908791],[117,105,64,-0.13154994706068215],[117,105,65,-0.1024637600159313],[117,105,66,-0.025044052883121642],[117,105,67,-0.01532293965723848],[117,105,68,-0.03068428053961527],[117,105,69,-0.0301569300893817],[117,105,70,-0.04787726500069706],[117,105,71,-0.07954881058003319],[117,105,72,-0.06813834756353723],[117,105,73,-0.09397016814001406],[117,105,74,-0.15749565305990296],[117,105,75,-0.19254574896224919],[117,105,76,-0.21086307149237016],[117,105,77,-0.20662544217100115],[117,105,78,-0.15844872856864672],[117,105,79,-0.13558689601693605],[117,106,64,-0.13286072209487573],[117,106,65,-0.10359148688097151],[117,106,66,-0.02545548949830661],[117,106,67,-0.015805454629650707],[117,106,68,-0.03151912173944438],[117,106,69,-0.03103138063480175],[117,106,70,-0.04886687199860707],[117,106,71,-0.0812420934257865],[117,106,72,-0.0700067599728829],[117,106,73,-0.09541051219462472],[117,106,74,-0.15903359163474126],[117,106,75,-0.19456965544150495],[117,106,76,-0.2127753477547933],[117,106,77,-0.20813949376885588],[117,106,78,-0.15949813480896757],[117,106,79,-0.13653458793952428],[117,107,64,-0.1341592913979127],[117,107,65,-0.10471500854436297],[117,107,66,-0.025876922789805055],[117,107,67,-0.01630132398261419],[117,107,68,-0.032367301036704536],[117,107,69,-0.031920495184874796],[117,107,70,-0.04986880516152242],[117,107,71,-0.08294562763018638],[117,107,72,-0.07188706683583335],[117,107,73,-0.09684625287754721],[117,107,74,-0.16054961805887624],[117,107,75,-0.1965640592681209],[117,107,76,-0.21464827086750402],[117,107,77,-0.209610428851448],[117,107,78,-0.16051630358204724],[117,107,79,-0.13745842976825756],[117,108,64,-0.1354442387395848],[117,108,65,-0.10583316335338755],[117,108,66,-0.026308471706091345],[117,108,67,-0.016810752142011113],[117,108,68,-0.03322853368285477],[117,108,69,-0.03282400048136533],[117,108,70,-0.05088286185821735],[117,108,71,-0.08465870811830734],[117,108,72,-0.07377849788414859],[117,108,73,-0.09827655600702553],[117,108,74,-0.16204211547462002],[117,108,75,-0.19852693488964362],[117,108,76,-0.21647974286394894],[117,108,77,-0.21103611061164151],[117,108,78,-0.16150160607813943],[117,108,79,-0.1383572139837153],[117,109,64,-0.13671416195295083],[117,109,65,-0.10694479565508153],[117,109,66,-0.026750246302199812],[117,109,67,-0.01733392728714937],[117,109,68,-0.03410251514929319],[117,109,69,-0.03374160306841919],[117,109,70,-0.051908821699603175],[117,109,71,-0.08638059933083811],[117,109,72,-0.07568024230155047],[117,109,73,-0.0997005823371512],[117,109,74,-0.1635094945653393],[117,109,75,-0.2004562877862611],[117,109,76,-0.21826771836952852],[117,109,77,-0.21241447107448524],[117,109,78,-0.16245247188397968],[117,109,79,-0.13922978015515716],[117,110,64,-0.13796767539858887],[117,110,65,-0.10804875775756959],[117,110,66,-0.027202347529207013],[117,110,67,-0.01787102100299249],[117,110,68,-0.03498892158949854],[117,110,69,-0.0346729896719945],[117,110,70,-0.052946446698098386],[117,110,71,-0.08811053630977175],[117,110,72,-0.07759145010160838],[117,110,73,-0.10111748930705157],[117,110,74,-0.16495019677020975],[117,110,75,-0.2023501585012337],[117,110,76,-0.22001020890720602],[117,110,77,-0.2137435156052668],[117,110,78,-0.16336739247230642],[117,110,79,-0.14007501751788962],[117,111,64,-0.13920341245628215],[117,111,65,-0.10914391193230072],[117,111,66,-0.027664867046785613],[117,111,67,-0.01842218796593847],[117,111,68,-0.03588741036302764],[117,111,69,-0.03561782763894994],[117,111,70,-0.0539954814683734],[117,111,71,-0.08984772585987054],[117,111,72,-0.07951123360331848],[117,111,73,-0.10252643281301299],[117,111,74,-0.16636269748351576],[117,111,75,-0.20420662664756867],[117,111,76,-0.2217052871235276],[117,111,77,-0.21502132731333282],[117,111,78,-0.16424492460625692],[117,111,79,-0.14089186747425056],[117,112,64,-0.14042002803599588],[117,112,65,-0.11022913245044295],[117,112,66,-0.028137887060062705],[117,112,67,-0.018987565665389956],[117,112,68,-0.03679762062080996],[117,112,69,-0.03657576543534436],[117,112,70,-0.05505565347021382],[117,112,71,-0.09159134778549083],[117,112,72,-0.08143866900404256],[117,112,73,-0.10392656899982919],[117,112,74,-0.1677455092274663],[117,112,75,-0.20602381487815558],[117,112,76,-0.22335109092018415],[117,112,77,-0.21624607133385074],[117,112,78,-0.16508369364352588],[117,112,79,-0.14167932600706043],[117,113,64,-0.14161620109992118],[117,113,65,-0.11130330764657972],[117,113,66,-0.028621480181881685],[117,113,67,-0.019567274163163305],[117,113,68,-0.037719173950916896],[117,113,69,-0.03754643320325763],[117,113,70,-0.0561266732940465],[117,113,71,-0.09334055620195639],[117,113,72,-0.08337279804894451],[117,113,73,-0.10531705606744611],[117,113,74,-0.16909718478753505],[117,113,75,-0.20779989280663072],[117,113,76,-0.22494582747653075],[117,113,77,-0.21741599897012154],[117,113,78,-0.16588239672555638],[117,113,79,-0.1424364459947167],[117,114,64,-0.14279063718726662],[117,114,65,-0.1123653420027052],[117,114,66,-0.02911570932139933],[117,114,67,-0.020161415892538923],[117,114,68,-0.03865167508366148],[117,114,69,-0.03852944337515646],[117,114,70,-0.05720823498945053],[117,114,71,-0.0950944809202466],[117,114,72,-0.08531262979547692],[117,114,73,-0.10669705608872215],[117,114,74,-0.17041632029934503],[117,114,75,-0.20953308086624267],[117,114,76,-0.22648777714875298],[117,114,77,-0.21852945167952942],[117,114,78,-0.1666398058374648],[117,114,79,-0.14316233941744544],[117,115,64,-0.14394207040656454],[117,115,65,-0.11341415771245025],[117,115,66,-0.029620627060674323],[117,115,67,-0.020770074953265816],[117,115,68,-0.03959471210316631],[117,115,69,-0.03952439078691182],[117,115,70,-0.05830001587286517],[117,115,71,-0.0968522283332705],[117,115,72,-0.08725714189463707],[117,115,73,-0.1080657362513469],[117,115,74,-0.17170155768738657],[117,115,75,-0.2112216534990704],[117,115,76,-0.22797529663046281],[117,115,77,-0.21958486427925655],[117,115,78,-0.1673547701112139],[117,115,79,-0.14385617882482782],[117,116,64,-0.14506913553452214],[117,116,65,-0.11444856484734528],[117,116,66,-0.0301361421237442],[117,116,67,-0.021393181976852846],[117,116,68,-0.040547720700866416],[117,116,69,-0.04053071528531598],[117,116,70,-0.05940153726877422],[117,116,71,-0.09861274171092513],[117,116,72,-0.08920513974924733],[117,116,73,-0.10942212633528695],[117,116,74,-0.17295144171447993],[117,116,75,-0.2128637953880303],[117,116,76,-0.2294066735437606],[117,116,77,-0.22058061799958248],[117,116,78,-0.1680260664676314],[117,116,79,-0.1445170456343302],[117,117,64,-0.1461701932921935],[117,117,65,-0.11546708408409802],[117,117,66,-0.030661837793858455],[117,117,67,-0.022030330308886837],[117,117,68,-0.04150979910585965],[117,117,69,-0.04154751435679692],[117,117,70,-0.06051197460378159],[117,117,71,-0.1003746102117618],[117,117,72,-0.09115506374556344],[117,117,73,-0.11076492350744195],[117,117,74,-0.1741642236023704],[117,117,75,-0.21445740357189116],[117,117,76,-0.2307799261780174],[117,117,77,-0.22151483797360688],[117,117,78,-0.1686521940573825],[117,117,79,-0.14514372158800498],[117,118,64,-0.14724358451761266],[117,118,65,-0.1164682033745711],[117,118,66,-0.03119722935576438],[117,118,67,-0.022681036296531586],[117,118,68,-0.04247997220756479],[117,118,69,-0.04257381003994492],[117,118,70,-0.06163042687768329],[117,118,71,-0.10213634240293532],[117,118,72,-0.09310526612530624],[117,118,73,-0.1120927717783123],[117,118,74,-0.17533814434129671],[117,118,75,-0.21600037433409777],[117,118,76,-0.2320930930338136],[117,118,77,-0.2223856855752627],[117,118,78,-0.16923166865700734],[117,118,79,-0.14573498525103049],[117,119,64,-0.14828767460852124],[117,119,65,-0.11745042255265463],[117,119,66,-0.03174180715442155],[117,119,67,-0.02334478283734014],[117,119,68,-0.04345723656672628],[117,119,69,-0.043608594344399565],[117,119,70,-0.06275596224943043],[117,119,71,-0.10389641352990178],[117,119,72,-0.09505405924127658],[117,119,73,-0.11340431036650864],[117,119,74,-0.17647148443855193],[117,119,75,-0.2174906541334348],[117,119,76,-0.23334428397421975],[117,119,77,-0.22319140995993864],[117,119,78,-0.16976307395419665],[117,119,79,-0.1462896630955269],[117,120,64,-0.14930085630589146],[117,120,65,-0.11841225582877839],[117,120,66,-0.03229503711360718],[117,120,67,-0.024021019924027106],[117,120,68,-0.04444056194114878],[117,120,69,-0.04465083070069787],[117,120,70,-0.06388761916390243],[117,120,71,-0.10565326785979015],[117,120,72,-0.09699971841957036],[117,120,73,-0.11469817609192402],[117,120,74,-0.177562567117739],[117,120,75,-0.21892624347840212],[117,120,76,-0.23453168377191586],[117,120,77,-0.22393035147511287],[117,120,78,-0.17024506426467245],[117,120,79,-0.1468066315793721],[117,121,64,-0.15028155247478617],[117,121,65,-0.1193522343090175],[117,121,66,-0.03285636133984256],[117,121,67,-0.02470916529403115],[117,121,68,-0.04542889291621153],[117,121,69,-0.04569945551687951],[117,121,70,-0.0650244075830274],[117,121,71,-0.10740532114602243],[117,121,72,-0.0989404849617612],[117,121,73,-0.11597300581744052],[117,121,74,-0.17860976147057347],[117,121,75,-0.22030520073135076],[117,121,76,-0.23565355552319617],[117,121,77,-0.224600944894275],[117,121,78,-0.17067636711777545],[117,121,79,-0.14728481914002065],[117,122,64,-0.15122821887407545],[117,122,65,-0.12026890853114545],[117,122,66,-0.03342519881085437],[117,122,67,-0.02540860518335372],[117,122,68,-0.04642115063646338],[117,122,69,-0.04675337983844645],[117,122,70,-0.06616531031937174],[117,122,71,-0.10915096320949927],[117,122,72,-0.10087456928111141],[117,122,73,-0.11722743893327123],[117,122,74,-0.17961148555128978],[117,122,75,-0.22162564583095026],[117,122,76,-0.23670824391798054],[117,122,77,-0.22520172246227996],[117,122,78,-0.17105578570075713],[117,122,79,-0.1477232080960772],[117,123,64,-0.1521393469065684],[117,123,65,-0.12116085100993379],[117,123,66,-0.03400094614747675],[117,123,67,-0.02611869518376298],[117,123,68,-0.04741623463421278],[117,123,69,-0.047811491107895183],[117,123,70,-0.06730928446993577],[117,123,71,-0.11088856063115898],[117,123,72,-0.10280015416626527],[117,123,73,-0.11846011987780673],[117,123,74,-0.18056620940389315],[117,123,75,-0.22288576392180695],[117,123,76,-0.23769417835546933],[117,123,77,-0.22573131674101418],[117,123,78,-0.1713822011523596],[117,123,79,-0.14812083644976448],[117,124,64,-0.15301346634112975],[117,124,65,-0.12202665878392824],[117,124,66,-0.03458297846757505],[117,124,67,-0.026838761202039964],[117,124,68,-0.048413024750631035],[117,124,69,-0.048872655019644475],[117,124,70,-0.06845526294749792],[117,124,71,-0.11261645955021653],[117,124,72,-0.10471539816525911],[117,124,73,-0.11966970068857818],[117,124,74,-0.18147245801266756],[117,124,75,-0.22408380888028379],[117,124,76,-0.2386098758955724],[117,124,77,-0.22618846324497385],[117,124,78,-0.171654574696843],[117,124,79,-0.1484767995837916],[117,125,64,-0.15384914799845167],[117,125,65,-0.12286495595594721],[117,125,66,-0.0351706503203219],[117,125,67,-0.027568100519612213],[117,125,68,-0.049410383144581654],[117,125,69,-0.049935717465885404],[117,125,70,-0.0696021561065483],[117,125,71,-0.11433298856199431],[117,125,72,-0.10661843908218734],[117,125,73,-0.12085484357680402],[117,125,74,-0.18232881416661448],[117,125,75,-0.22521810672588544],[117,125,76,-0.23945394403681827],[117,125,77,-0.2265720028571604],[117,125,78,-0.17187194961027372],[117,125,79,-0.1487902518465891],[117,126,64,-0.15464500639225523],[117,126,65,-0.12367439621955498],[117,126,66,-0.03576329669884362],[117,126,67,-0.028305982950516572],[117,126,68,-0.05040715638402513],[117,126,69,-0.05099950656851355],[117,126,70,-0.07074885346046737],[117,126,71,-0.1160364617087821],[117,126,72,-0.10850739757830137],[117,126,73,-0.12201422351880323],[117,126,74,-0.18313392122878097],[117,126,75,-0.22628705890794168],[117,126,76,-0.24022508331207792],[117,126,77,-0.2268808840165504],[117,126,78,-0.1720334530115762],[117,126,79,-0.14906040802032514],[117,127,64,-0.155399702317773],[117,127,65,-0.12445366536375539],[117,127,66,-0.03636023412895824],[117,127,67,-0.02905165209525644],[117,127,68,-0.05140217761451472],[117,127,69,-0.05206283479197407],[117,127,70,-0.07189422548626327],[117,127,71,-0.11772518155675452],[117,127,72,-0.11038038086881508],[117,127,73,-0.12314653085738583],[117,127,74,-0.18388648580167818],[117,127,75,-0.22728914545762194],[117,127,76,-0.24092208969397957],[117,127,77,-0.22711416466917317],[117,127,78,-0.17213829747146844],[117,127,79,-0.14928654466652455],[117,128,64,-0.1561119453795483],[117,128,65,-0.12520148374823753],[117,128,66,-0.036960761831460055],[117,128,67,-0.02980432668776493],[117,128,68,-0.05239426879900607],[117,128,69,-0.05312450113155314],[117,128,70,-0.07303712551285585],[117,128,71,-0.11939744235158911],[117,128,72,-0.11223548650623229],[117,128,73,-0.124250473906239],[117,128,74,-0.18458528028036528],[117,128,75,-0.22822292799577235],[117,128,76,-0.24154385680260118],[117,128,77,-0.227271013975763],[117,128,78,-0.17218578243316007],[117,128,79,-0.14946800134463215],[117,129,64,-0.15678049645074404],[117,129,65,-0.12591660874156851],[117,129,66,-0.03756416295512566],[117,129,67,-0.030563202032322913],[117,129,68,-0.05338224302290627],[117,129,69,-0.05418329337135026],[117,129,70,-0.07417639168856849],[117,129,71,-0.12105153324505469],[117,129,72,-0.11407080624056735],[117,129,73,-0.12532478155021862],[117,129,74,-0.18522914528512352],[117,129,75,-0.22908705258749817],[117,129,76,-0.24208937790868687],[117,129,77,-0.22735071376983743],[117,129,78,-0.17217529543940677],[117,129,79,-0.1496041816993359],[117,130,64,-0.157404170056317],[117,130,65,-0.1265978371147996],[117,130,66,-0.03816970587733351],[117,130,67,-0.03132745152692264],[117,130,68,-0.0543649068580047],[117,130,69,-0.05523799040587779],[117,130,70,-0.07531084902316815],[117,130,71,-0.12268574158448832],[117,130,72,-0.11588442994641739],[117,130,73,-0.1263682058343662],[117,130,74,-0.18581699196597884],[117,130,75,-0.22988025243482285],[117,130,76,-0.24255774772626798],[117,130,77,-0.22735265976091384],[117,130,78,-0.17210631316120786],[117,130,79,-0.14969455441292145],[117,131,64,-0.1579818366726569],[117,131,65,-0.12724400738309358],[117,131,66,-0.038776645568935925],[117,131,67,-0.03209622826922644],[117,131,68,-0.05534106277867467],[117,131,69,-0.05628736461897408],[117,131,70,-0.07643931149948759],[117,131,71,-0.1242983562567538],[117,131,72,-0.11767444960646507],[117,131,73,-0.12737952453443163],[117,131,74,-0.18634780417179056],[117,131,75,-0.2306013503993125],[117,131,76,-0.24294816398934513],[117,131,77,-0.22727636247856403],[117,131,78,-0.17197840222422858],[117,131,79,-0.1497386540194741],[117,132,64,-0.15851242493651538],[117,132,65,-0.12785400208811665],[117,132,66,-0.039384225019783885],[117,132,67,-0.03286866674096496],[117,132,68,-0.05630951162352475],[117,132,69,-0.05733018431349788],[117,132,70,-0.07756058424940843],[117,132,71,-0.12588767107801366],[117,132,72,-0.11943896334069203],[117,132,73,-0.12835754370167643],[117,132,74,-0.18682064047702582],[117,132,75,-0.23124926134703513],[117,132,76,-0.24325992880796524],[117,132,77,-0.22712144795390743],[117,132,78,-0.1717912198297665],[117,132,79,-0.14973608157823792],[117,133,64,-0.15899492375628313],[117,133,65,-0.12842675001407547],[117,133,66,-0.03999167672103275],[117,133,67,-0.03364388456626602],[117,133,68,-0.057269055095426846],[117,133,69,-0.05836521618501054],[117,133,70,-0.07867346578866469],[117,133,71,-0.12745198822033757],[117,133,72,-0.12117607947023429],[117,133,73,-0.12930110017469149],[117,133,74,-0.18723463605977395],[117,133,75,-0.2318229943087604],[117,133,76,-0.24349244979975893],[117,133,77,-0.22688765813607092],[117,133,78,-0.17154451416782013],[117,133,79,-0.14968650520392882],[117,134,64,-0.1594283843189847],[117,134,65,-0.12896122833048773],[117,134,66,-0.04059822420014832],[117,134,67,-0.034420984339126826],[117,134,68,-0.058218498292685605],[117,134,69,-0.05939122783247803],[117,134,70,-0.07977675030469696],[117,134,71,-0.12898962166596353],[117,134,72,-0.1228839206045886],[117,134,73,-0.13020906405102733],[117,134,74,-0.18758900442505894],[117,134,75,-0.2323216544489006],[117,134,76,-0.2436452409937764],[117,134,77,-0.2265748510421264],[117,134,78,-0.17123812462062],[117,134,79,-0.14958966045234626],[117,135,64,-0.1598119219866343],[117,135,65,-0.12945646465496785],[117,135,66,-0.041203083604325556],[117,135,67,-0.035199055514972426],[117,135,68,-0.05915665226396166],[117,135,69,-0.06040699029885813],[117,135,70,-0.08086922999156942],[117,135,71,-0.1304989006798446],[117,135,72,-0.12456062774067217],[117,135,73,-0.1310803411114846],[117,135,74,-0.18788303896797373],[117,135,75,-0.2327444448372486],[117,135,76,-0.24371792350417687],[117,135,77,-0.22618300063992416],[117,135,78,-0.17087198175571675],[117,135,79,-0.14944535056012578],[117,136,64,-0.1601447180759146],[117,136,65,-0.12991153902952268],[117,136,66,-0.041805465327792085],[117,136,67,-0.03597717636092985],[117,136,68,-0.0600823365793786],[117,136,69,-0.061411280634244385],[117,136,70,-0.08194969742568645],[117,136,71,-0.13197817329088996],[117,136,72,-0.12620436436201934],[117,136,73,-0.1319138751899647],[117,136,74,-0.18811611437167006],[117,136,75,-0.23309066801819517],[117,136,76,-0.2437102259720986],[117,136,77,-0.22571219646419474],[117,136,78,-0.17044610710849056],[117,136,79,-0.14925344653798156],[117,137,64,-0.16042602151548419],[117,137,65,-0.13032558580411138],[117,137,66,-0.042404575678320414],[117,137,67,-0.036754415959246625],[117,137,68,-0.06099438191017837],[117,137,69,-0.06240288447415023],[117,137,70,-0.08301694797590668],[117,137,71,-0.13342580977223373],[117,137,72,-0.1278133205263215],[117,137,73,-0.13270865048192113],[117,137,74,-0.18828768783576477],[117,137,75,-0.2333597273727088],[117,137,76,-0.24362198477477923],[117,137,77,-0.22516264296721683],[117,137,78,-0.16996061275469718],[117,137,79,-0.14901388711730817],[117,138,64,-0.1606551503755703],[117,138,65,-0.1306977954214843],[117,138,66,-0.042999618578083106],[117,138,67,-0.037529836258031864],[117,138,68,-0.06189163260918117],[117,138,69,-0.06338059862539805],[117,138,70,-0.0840697822414457],[117,138,71,-0.13484020611073338],[117,138,72,-0.12938571692940598],[117,138,73,-0.13346369378456993],[117,138,74,-0.1883973001312629],[117,138,75,-0.23355112826902358],[117,138,76,-0.24345314400176643],[117,138,77,-0.22453465860627517],[117,138,78,-0.16941570067442036],[117,138,79,-0.14872667855051633],[117,139,64,-0.160831493264863],[117,139,65,-0.13102741609758384],[117,139,66,-0.0435897972938149],[117,139,67,-0.03830249416327314],[117,139,68,-0.06277294928423328],[117,139,69,-0.0643432336519771],[117,139,70,-0.08510700851078616],[117,139,71,-0.1362197874558172],[117,139,72,-0.13091980893369223],[117,139,73,-0.13417807666215792],[117,139,74,-0.18844457647863178],[117,139,75,-0.23366447899860393],[117,139,76,-0.24320375519878745],[117,139,77,-0.2238286746710266],[117,139,78,-0.16881166190951888],[117,139,79,-0.14839189426595867],[117,140,64,-0.16095451059012483],[117,140,65,-0.1313137553921104],[117,140,66,-0.04417431619113893],[117,140,67,-0.0390714436659351],[117,140,68,-0.06363721135683127],[117,140,69,-0.06528961645322545],[117,140,70,-0.08612744523472596],[117,140,71,-0.1375630115378177],[117,140,72,-0.13241389054921326],[117,140,73,-0.13485091752980258],[117,140,74,-0.18842922724622738],[117,140,75,-0.23369949149462213],[117,140,76,-0.2428739768805943],[117,140,77,-0.22304523385477334],[117,140,78,-0.16814887551737723],[117,140,79,-0.14800967437880308],[117,141,64,-0.1610237356743283],[117,141,65,-0.13155618166416624],[117,141,66,-0.04475238250776564],[117,141,67,-0.0398357379977418],[117,141,68,-0.06448331959807312],[117,141,69,-0.06621859282662547],[117,141,70,-0.08712992350653802],[117,141,71,-0.13886837204587846],[117,141,72,-0.13386629835529096],[117,141,73,-0.13548138364959383],[117,141,74,-0.18835104846684708],[117,141,75,-0.2336559818308641],[117,141,76,-0.2424640738148468],[117,141,77,-0.22218498857452745],[117,141,78,-0.16742780732448906],[117,141,79,-0.14758022505969146],[117,142,64,-0.161038775729538],[117,142,65,-0.13175412540822135],[117,142,66,-0.045323208140186276],[117,142,67,-0.040594431809131845],[117,142,68,-0.06531019863413477],[117,142,69,-0.06712903000753055],[117,142,70,-0.08811328954216328],[117,142,71,-0.14013440195560328],[117,142,72,-0.13527541535108656],[117,142,73,-0.1360686930328945],[117,142,74,-0.1882099221707345],[117,142,75,-0.23353387049962693],[117,142,76,-0.2419744160797911],[117,142,77,-0.221248699045558],[117,142,78,-0.1666490084840499],[117,142,79,-0.14710381776346854],[117,143,64,-0.1609993126811875],[117,143,65,-0.13190708046600283],[117,143,66,-0.045886011438396865],[117,143,67,-0.04134658336274569],[117,143,68,-0.06611679941351656],[117,143,69,-0.06801981917815836],[117,143,70,-0.08907640715327941],[117,143,71,-0.1413596767966715],[117,143,72,-0.13663967472336677],[117,143,73,-0.13661211624302447],[117,143,74,-0.18800581653395554],[117,143,75,-0.23333318246785972],[117,143,76,-0.24140547789920558],[117,143,77,-0.2202372311169379],[117,143,78,-0.1658131138424212],[117,143,79,-0.14658078832073193],[117,144,64,-0.16090510384083848],[117,144,65,-0.13201460511026872],[117,144,66,-0.046440019003118505],[117,144,67,-0.04209125673570653],[117,144,68,-0.06690210162837762],[117,144,69,-0.0688898779382362],[117,144,70,-0.09001816020604743],[117,144,71,-0.14254281785075265],[117,144,72,-0.1379575635200111],[117,144,73,-0.13711097809278028],[117,144,74,-0.1877387858416326],[117,144,75,-0.23305404701148202],[117,144,76,-0.2407578362587874],[117,144,77,-0.21915155387539223],[117,144,78,-0.1649208401199526],[117,144,79,-0.14601153589538665],[117,145,64,-0.16075598242494935],[117,145,65,-0.13207632299681574],[117,145,66,-0.04698446747996291],[117,145,67,-0.04282752402392636],[117,145,68,-0.0676651160824266],[117,145,69,-0.06973815272980463],[117,145,70,-0.09093745505836065],[117,145,71,-0.1436824952702376],[117,145,72,-0.13922762621805018],[117,145,73,-0.13756465923156277],[117,145,74,-0.18740897026610406],[117,145,75,-0.23269669732846543],[117,145,76,-0.24003216930877955],[117,145,77,-0.21799273702545713],[117,145,78,-0.16397298391224083],[117,145,79,-0.14539652181179522],[117,146,64,-0.1605518579176385],[117,146,65,-0.13209192398144137],[117,146,66,-0.04751860534492233],[117,146,67,-0.043554467541557354],[117,146,68,-0.06840488699790104],[117,146,69,-0.07056362120872607],[117,146,70,-0.09183322296837539],[117,146,71,-0.14477743110842084],[117,146,72,-0.14044846817522758],[117,146,73,-0.13797259761716218],[117,146,74,-0.1870165954606511],[117,146,75,-0.23226146993195815],[117,146,76,-0.23922925455833557],[117,146,77,-0.2167619480547284],[117,146,78,-0.16297041951851476],[117,146,79,-0.14473626825552852],[117,147,64,-0.1602927162758874],[117,147,65,-0.132061164799011],[117,147,66,-0.04804169467562433],[117,147,67,-0.04427118200878563],[117,147,68,-0.06912049425443764],[117,147,69,-0.07136529455567948],[117,147,70,-0.09270442246721443],[117,147,71,-0.14582640225206858],[117,147,72,-0.14161875895448606],[117,147,73,-0.1383342898676274],[117,147,74,-0.18656197196999907],[117,147,75,-0.23174880382537724],[117,147,76,-0.23834996686767781],[117,147,77,-0.21546044919356025],[117,147,78,-0.16191409660433245],[117,147,79,-0.14403135685208687],[117,148,64,-0.15997861997609442],[117,148,65,-0.13198386960216807],[117,148,66,-0.04855301290276197],[117,148,67,-0.044976776721102826],[117,148,68,-0.06981105555274561],[117,148,69,-0.07214221971950865],[117,148,70,-0.09355004168874961],[117,148,71,-0.1468282432474973],[117,148,72,-0.1427372355110666],[117,148,73,-0.13864929248896926],[117,148,74,-0.18604549445937446],[117,148,75,-0.23115923946205458],[117,148,76,-0.23739527624474327],[117,148,77,-0.21408959417927162],[117,148,78,-0.16080503770632953],[117,148,79,-0.14328242712832792],[117,149,64,-0.15960970790135914],[117,149,65,-0.13185993035765942],[117,149,66,-0.04905185453616949],[117,149,67,-0.045670377693257456],[117,149,68,-0.07047572849625566],[117,149,69,-0.07289348158601922],[117,149,70,-0.09436910064947279],[117,149,71,-0.14778184901159522],[117,149,72,-0.14380270523233155],[117,149,73,-0.1389172229748263],[117,149,74,-0.18546764076444477],[117,149,75,-0.23049341749267455],[117,149,76,-0.236366245453557],[117,149,77,-0.21265082483546616],[117,149,78,-0.1596443355872173],[117,149,79,-0.14249017486167373],[117,150,64,-0.15918619506935036],[117,150,65,-0.13168930709867394],[117,150,66,-0.04953753286009037],[117,150,67,-0.04635112977117108],[117,150,68,-0.07111371258417971],[117,150,69,-0.0736182050655518],[117,150,70,-0.0951606534716152],[117,150,71,-0.14868617741956588],[117,150,72,-0.14481404882089044],[117,150,73,-0.13913776077461956],[117,150,74,-0.1848289707650214],[117,150,75,-0.22975207730435115],[117,150,76,-0.2352640274420895],[117,150,77,-0.2111456674775938],[117,150,78,-0.1584331504496582],[117,150,79,-0.14165535032247167],[117,151,64,-0.1587083722010824],[117,151,65,-0.13147202803202668],[117,151,66,-0.05000938159223904],[117,151,67,-0.047018198705157145],[117,151,68,-0.07172425110965681],[117,151,69,-0.0743155570928698],[117,151,70,-0.09592379054276691],[117,151,71,-0.14954025176147273],[117,151,72,-0.14577022301203146],[117,151,73,-0.13931064812709476],[117,151,74,-0.18413012508593538],[117,151,75,-0.22893605535583286],[117,151,76,-0.23408986259788703],[117,151,77,-0.20957572915640119],[117,151,78,-0.1571727070180716],[117,151,79,-0.14077875641518706],[117,152,64,-0.15817660513139678],[117,152,65,-0.13120818949945753],[117,152,66,-0.05046675650139273],[117,152,67,-0.047670773177938074],[117,152,68,-0.07230663295700009],[117,152,69,-0.07498474853320529],[117,152,70,-0.09665764060547043],[117,152,71,-0.1503431630600981],[117,152,72,-0.14667026311702766],[117,152,73,-0.1394356907565891],[117,152,74,-0.1833718236290155],[117,152,75,-0.22804628331389706],[117,152,76,-0.2328450758401878],[117,152,77,-0.20794269375131683],[117,152,78,-0.1558642914977592],[117,152,79,-0.1398612467243534],[117,153,64,-0.1575913340624168],[117,153,65,-0.13089795579276337],[117,153,66,-0.05090903697835836],[117,153,67,-0.04830806678107916],[117,153,68,-0.07286019429236264],[117,153,69,-0.07562503598858374],[117,153,70,-0.09736137277042738],[117,153,71,-0.15109407224301785],[117,153,72,-0.14751328538440941],[117,153,73,-0.13951275842976957],[117,153,74,-0.1825548639406085],[117,153,75,-0.2270837859965943],[117,153,76,-0.23153107355770197],[117,153,77,-0.20624831792623188],[117,153,78,-0.15450924842108066],[117,153,79,-0.13890372347145524],[117,154,64,-0.1569530726617085],[117,154,65,-0.13054155882291527],[117,154,66,-0.05133562755530126],[117,154,67,-0.048929319933620714],[117,154,68,-0.07338432014248437],[117,154,69,-0.0762357234988565],[117,154,70,-0.09803419844717087],[117,154,71,-0.15179221216221872],[117,154,72,-0.14829848917186553],[117,154,73,-0.13954178537101203],[117,154,74,-0.1816801194195561],[117,154,75,-0.22604967912954738],[117,154,76,-0.23014934040160578],[117,154,77,-0.20449442696045833],[117,154,78,-0.1531089773906808],[117,154,79,-0.13790713538912283],[117,155,64,-0.15626240700733993],[117,155,65,-0.13013929764377083],[117,155,66,-0.05174595936861498],[117,155,67,-0.04953380173691933],[117,155,68,-0.07387844585658425],[117,155,69,-0.07681616413224539],[117,155,70,-0.09867537318634008],[117,155,71,-0.15243688945510378],[117,155,72,-0.14902515892209167],[117,155,73,-0.13952277053505868],[117,155,74,-0.1807485373710258],[117,155,75,-0.22494516692204602],[117,155,76,-0.22870143594365114],[117,155,77,-0.20268291046791972],[117,155,78,-0.1516649297300021],[117,155,79,-0.13687247551920087],[117,156,64,-0.15551999438249178],[117,156,65,-0.12969153783142598],[117,156,66,-0.05213949156066219],[117,156,67,-0.050120811759883734],[117,156,68,-0.07434205844681063],[117,156,69,-0.07736576146051884],[117,156,70,-0.09928419842790341],[117,156,71,-0.15302748624115683],[117,156,72,-0.14969266593648392],[117,156,73,-0.139455777736003],[117,156,74,-0.17976113691202733],[117,156,75,-0.22377153947019462],[117,156,76,-0.22718899120962738],[117,156,77,-0.20081571801787984],[117,156,78,-0.15017860505153482],[117,156,79,-0.135800778941423],[117,157,64,-0.15472656192270734],[117,157,65,-0.1291987107206938],[117,157,66,-0.052515712615949985],[117,157,67,-0.05068968174907148],[117,157,68,-0.07477469780311037],[117,157,69,-0.07788397091434032],[117,157,70,-0.09986002315001598],[117,157,71,-0.15356346164911147],[117,157,72,-0.15030046994129453],[117,157,73,-0.13934093563212618],[117,157,74,-0.1787190067348758],[117,157,75,-0.2225301699948371],[117,157,76,-0.225613705098656],[117,157,77,-0.19889485467065837],[117,157,78,-0.1486515477533754],[117,157,79,-0.13469312043953216],[117,158,64,-0.15388290511931677],[117,158,65,-0.12866131250064278],[117,158,66,-0.052874141627515546],[117,158,67,-0.05123977725836287],[117,158,68,-0.07517595777878852],[117,158,69,-0.07837030101471049],[117,158,70,-0.10040224541348138],[117,158,71,-0.15404435316997855],[117,158,72,-0.15084812044153026],[117,158,73,-0.13917843756655918],[117,158,74,-0.17762330273526944],[117,158,75,-0.221222511922453],[117,158,76,-0.22397734069906286],[117,158,77,-0.1969223764419284],[117,158,78,-0.1470853434548062],[117,158,79,-0.1335506121118124],[117,159,64,-0.15298988618299644],[117,159,65,-0.1280799031715515],[117,159,66,-0.05321432948953218],[117,159,67,-0.051770499193210376],[117,159,68,-0.07554548714347306],[117,159,69,-0.07882431447683563],[117,159,70,-0.10091031379711414],[117,159,71,-0.15446977783183674],[117,159,72,-0.1513352578585786],[117,159,73,-0.1389685412641865],[117,159,74,-0.17647524551202065],[117,159,75,-0.21985009581764123],[117,159,76,-0.2222817215117555],[117,159,77,-0.19490038570925242],[117,159,78,-0.1454816153816675],[117,159,79,-0.13237440093306427],[117,160,64,-0.15204843227181727],[117,160,65,-0.12745510536606058],[117,160,66,-0.053535860012417724],[117,160,67,-0.05228128526479085],[117,160,68,-0.07588299040067252],[117,160,69,-0.07924562918320852],[117,160,70,-0.10138372871967213],[117,160,71,-0.1548394331928939],[117,160,72,-0.15176161444829717],[117,160,73,-0.13871156838567747],[117,160,74,-0.17527611774582247],[117,160,75,-0.21841452617617613],[117,160,76,-0.22052872759215883],[117,160,77,-0.1928310265744902],[117,160,78,-0.14384202071228763],[117,160,79,-0.13116566627508405],[117,161,64,-0.15105953358856913],[117,161,65,-0.1267876030377351],[117,161,66,-0.05383835095698693],[117,161,67,-0.05277161134969402],[117,161,68,-0.0761882284675736],[117,161,69,-0.07963391902311254],[117,161,70,-0.10182204364436878],[117,161,71,-0.15515309814988293],[117,161,72,-0.15212701499701906],[117,161,73,-0.13840790393997252],[117,161,74,-0.1740272614647789],[117,161,75,-0.21691747808803058],[117,161,76,-0.21872029162193163],[117,161,77,-0.19071648019574144],[117,161,78,-0.14216824689478177],[117,161,79,-0.12992561739277378],[117,162,64,-0.15002424135250475],[117,162,65,-0.1260781400206459],[117,162,66,-0.05412145498449342],[117,162,67,-0.05324099275115477],[117,162,68,-0.07646101921522948],[117,162,69,-0.07998891459624413],[117,162,70,-0.1022248661623892],[117,162,71,-0.15541063355949652],[117,162,72,-0.1524313772937114],[117,162,73,-0.13805799555701528],[117,162,74,-0.17273007520470327],[117,162,75,-0.21536069378004108],[117,162,76,-0.21685839492169615],[117,162,77,-0.18855896010232207],[117,162,78,-0.14046200794640834],[117,162,79,-0.12865549088295852],[117,163,64,-0.14894366565101894],[117,163,65,-0.12532751846397405],[117,163,66,-0.05438486051968891],[117,163,67,-0.05368898535817285],[117,163,68,-0.07670123786775909],[117,163,69,-0.08031040377859298],[117,163,70,-0.1025918589522044],[117,163,71,-0.15561198267114404],[117,163,72,-0.1526747123772579],[117,163,73,-0.13766235262293977],[117,163,74,-0.17138601107245338],[117,163,75,-0.21374597904820208],[117,163,76,-0.21494506341606487],[117,163,77,-0.18636070750616038],[117,163,78,-0.13872504074559885],[117,163,79,-0.12735654812297212],[117,164,64,-0.14781897317714626],[117,164,65,-0.12453659714604218],[117,164,66,-0.05462829252435852],[117,164,67,-0.05411518669926305],[117,164,68,-0.07690881725969866],[117,164,69,-0.0805982321492149],[117,164,70,-0.10292274061190806],[117,164,71,-0.15575717136995407],[117,164,72,-0.15285712455862632],[117,164,73,-0.13722154528038003],[117,164,74,-0.16999657172083252],[117,164,75,-0.2120751995898532],[117,164,76,-0.21298236356225597],[117,164,77,-0.18412398662282334],[117,164,78,-0.13695910132715475],[117,164,79,-0.12603007269603173],[117,165,64,-0.1466513848590717],[117,165,65,-0.12370628967254056],[117,165,66,-0.0548515131791231],[117,165,67,-0.05451923688798772],[117,165,68,-0.07708374795116553],[117,165,69,-0.08085230327703602],[117,165,70,-0.10321728636224697],[117,165,71,-0.15584630822960324],[117,165,72,-0.15297881121847642],[117,165,73,-0.13673620329700337],[117,165,74,-0.1685633072437697],[117,165,75,-0.21035027724621552],[117,165,76,-0.21097239825349812],[117,165,77,-0.18185108001509323],[117,165,78,-0.1351659611908855],[117,165,79,-0.12467736781031255],[117,166,64,-0.14544217338816823],[117,166,65,-0.12283756256406113],[117,166,66,-0.05505432247160202],[117,166,67,-0.05490081945778141],[117,166,68,-0.07722607820096092],[117,166,69,-0.08107257886726939],[117,166,70,-0.10347532861839474],[117,166,71,-0.15587958437511437],[117,166,72,-0.15304006238147524],[117,166,73,-0.1362070148057393],[117,166,74,-0.16708781200066888],[117,166,75,-0.20857318616593584],[117,166,76,-0.20891730270835723],[117,166,77,-0.1795442839717642],[117,166,78,-0.13334740363377845],[117,166,79,-0.12329975371853927],[117,167,64,-0.1441926606523767],[117,167,65,-0.12193143323842569],[117,167,66,-0.05523655868942931],[117,167,67,-0.05525966208406912],[117,167,68,-0.07733591379832197],[117,167,69,-0.0812590787675943],[117,167,70,-0.10369675742904833],[117,167,71,-0.1558572731565002],[117,167,72,-0.15304126006945173],[117,167,73,-0.13563472492065298],[117,167,74,-0.16557172137898662],[117,167,75,-0.2067459489004594],[117,167,76,-0.20681924035698737],[117,167,77,-0.17720590393397678],[117,167,78,-0.13150522011552948],[117,167,79,-0.12189856514479461],[117,168,64,-0.14290421508199036],[117,168,65,-0.12098896789358275],[117,168,66,-0.05539809881692471],[117,168,67,-0.05559553719205139],[117,168,68,-0.07741341775448835],[117,168,69,-0.08141188083468726],[117,168,70,-0.10388152078181292],[117,168,71,-0.1557797296346841],[117,168,72,-0.15298287743621009],[117,168,73,-0.13502013423273923],[117,168,74,-0.1640167085041732],[117,168,75,-0.20487063244213408],[117,168,76,-0.20468039873511862],[117,168,77,-0.17483824998101818],[117,168,78,-0.12964120666696144],[117,168,79,-0.12047514872506272],[117,169,64,-0.14157824891518586],[117,169,65,-0.12001127929718756],[117,169,66,-0.055538858834605784],[117,169,67,-0.05590826244899337],[117,169,68,-0.07745880985579509],[117,169,69,-0.08153112066222551],[117,169,70,-0.10402962477433789],[117,169,71,-0.1556473898818055],[117,169,72,-0.15286547768762762],[117,169,73,-0.13436409719033215],[117,169,74,-0.16242448090623518],[117,169,75,-0.20294934421607416],[117,169,76,-0.20250298539643194],[117,169,77,-0.17244363238713117],[117,169,78,-0.12775716035057652],[117,169,79,-0.11903086046789628],[117,170,64,-0.14021621539082293],[117,170,65,-0.11899952448923176],[117,170,66,-0.05565879392108587],[117,170,67,-0.05619770114030152],[117,170,68,-0.07747236608050406],[117,170,69,-0.08161699117197577],[117,170,70,-0.10414113365112883],[117,170,71,-0.15546077009864012],[117,170,72,-0.15268971279139726],[117,170,73,-0.13366752036916138],[117,170,74,-0.1607967771521788],[117,170,75,-0.20098422803678498],[117,170,76,-0.20028922385366224],[117,170,77,-0.17002435726034645],[117,170,78,-0.12585487578206614],[117,170,79,-0.11756706324133885],[117,171,64,-0.13881960587628614],[117,171,65,-0.11795490240439986],[117,171,66,-0.05575789855727806],[117,171,67,-0.05646376242911163],[117,171,68,-0.07745441788209491],[117,171,69,-0.0816697420700755],[117,171,70,-0.10421616970642357],[117,171,71,-0.15522046555247762],[117,171,72,-0.15245632198151066],[117,171,73,-0.1329313606374524],[117,171,74,-0.15913536345366758],[117,171,75,-0.19897746004063518],[117,171,76,-0.1980413495585858],[117,171,77,-0.16758272227394633],[117,171,78,-0.12393614172131634],[117,171,79,-0.11608512429210222],[117,172,64,-0.13738994693827583],[117,172,65,-0.11687865142103997],[117,172,66,-0.05583620653319982],[117,172,67,-0.0567064014995826],[117,172,68,-0.07740535134223699],[117,172,69,-0.08168967917111414],[117,172,70,-0.10425491305400686],[117,172,71,-0.15492714933943066],[117,172,72,-0.1521661300633046],[117,172,73,-0.13215662322177962],[117,172,74,-0.15744203025917092],[117,172,75,-0.19693124460515832],[117,172,76,-0.19576160593066438],[117,172,77,-0.16512101250055705],[117,172,78,-0.12200273774095423],[117,172,79,-0.11458641280269954],[117,173,64,-0.13592879736461752],[117,173,65,-0.11577204684387131],[117,173,66,-0.055893790858029924],[117,173,67,-0.05692561958451678],[117,173,68,-0.07732560619713566],[117,173,69,-0.08167716359308105],[117,173,70,-0.1042576012652843],[117,173,71,-0.15458157097572028],[117,173,72,-0.15182004552557188],[117,173,73,-0.13134435967968125],[117,173,74,-0.15571858883984466],[117,173,75,-0.19484781026613057],[117,173,76,-0.1934522404438139],[117,173,77,-0.1626414963583337],[117,173,78,-0.12005643098008076],[117,173,79,-0.1130722974920113],[117,174,64,-0.13443774514530168],[117,174,65,-0.11463639832777041],[117,174,66,-0.055930763574467496],[117,174,67,-0.057121463878410834],[117,174,68,-0.07721567474144524],[117,174,69,-0.08163261082674814],[117,174,70,-0.104224528877425],[117,174,71,-0.15418455482309568],[117,174,72,-0.1514190584669336],[117,174,73,-0.13049566578534816],[117,174,74,-0.15396686787833513],[117,174,75,-0.19272940564328012],[117,174,76,-0.19111550078042555],[117,174,77,-0.1601464216781354],[117,174,78,-0.1180989729904025],[117,174,79,-0.11154414426452484],[117,175,64,-0.1329184044210408],[117,175,65,-0.11347304725013971],[117,175,66,-0.05594727547881128],[117,175,67,-0.057294027337494016],[117,175,68,-0.07707610061440709],[117,175,69,-0.08155648968352043],[117,175,70,-0.10415604677386142],[117,175,71,-0.15373699835412225],[117,175,72,-0.15096423834433328],[117,175,73,-0.1296116793349611],[117,175,74,-0.1521887100695684],[117,175,75,-0.19057829538531978],[117,175,76,-0.18875363106132903],[117,175,77,-0.15763801189992452],[117,175,78,-0.11613209668145162],[117,175,79,-0.11000331391317218],[117,176,64,-0.13137241240770534],[117,176,65,-0.11228336403950938],[117,176,66,-0.05594351574850856],[117,176,67,-0.057443448368712256],[117,176,68,-0.07690747747327613],[117,176,69,-0.08144932112619081],[117,176,70,-0.10405256143982956],[117,176,71,-0.1532398702635656],[117,176,72,-0.1504567315520723],[117,176,73,-0.1286935778784484],[117,176,74,-0.15038596874244303],[117,176,75,-0.1883967561448204],[117,176,76,-0.18636886815999296],[117,176,77,-0.15511846240600555],[117,176,78,-0.11415751337110903],[117,176,79,-0.10845115988041447],[117,177,64,-0.12980142630506616],[117,177,65,-0.11106874546819202],[117,177,66,-0.05591971147936053],[117,177,67,-0.0575699104101446],[117,177,68,-0.07671044755961573],[117,177,69,-0.08131167698756125],[117,177,70,-0.10391453409618448],[117,177,71,-0.15269420843272397],[117,177,72,-0.1498977588405036],[117,177,73,-0.12774257638472747],[117,177,74,-0.14856050451122324],[117,177,75,-0.18618707259327516],[117,177,76,-0.18396343810883103],[117,177,77,-0.15258993699806428],[117,177,78,-0.11217690994714855],[117,177,79,-0.10688902608194972],[117,178,64,-0.1282071201982783],[117,178,65,-0.10983061191688229],[117,178,66,-0.0558761271348582],[117,178,67,-0.05767364140569368],[117,178,68,-0.07648570016437418],[117,178,69,-0.08114417858222765],[117,178,70,-0.10374247971508295],[117,178,71,-0.15210111775399604],[117,178,72,-0.14928861258397508],[117,178,73,-0.12675992484763127],[117,178,74,-0.14671418196520994],[117,178,75,-0.1839515334864363],[117,178,76,-0.18153955260501353],[117,178,77,-0.15005456452428895],[117,178,78,-0.11019194614496594],[117,178,79,-0.10531824479706833],[117,179,64,-0.1265911819605141],[117,179,65,-0.10857040461917904],[117,179,66,-0.055813063910507055],[117,179,67,-0.05775491317735722],[117,179,68,-0.07623396999809476],[117,179,69,-0.0809474952172759],[117,179,70,-0.1035369659215836],[117,179,71,-0.15146176782346468],[117,179,72,-0.1486306539081704],[117,179,73,-0.12574690583987905],[117,179,74,-0.14484886640503145],[117,179,75,-0.1816924277897361],[117,179,76,-0.17909940562267987],[117,179,77,-0.1475144356621284],[117,179,78,-0.1082042519461263],[117,179,79,-0.10374013462938668],[117,180,64,-0.1249553101651638],[117,180,65,-0.10728958289409214],[117,180,66,-0.055730859016359734],[117,180,67,-0.05781404069882578],[117,180,68,-0.07595603547300127],[117,180,69,-0.08072234260803585],[117,180,70,-0.10329861178567928],[117,180,71,-0.15077739050979455],[117,180,72,-0.14792530968752501],[117,180,73,-0.12470483202265945],[117,180,74,-0.14296642063370743],[117,180,75,-0.17941204087333856],[117,180,76,-0.17664517013799833],[117,180,77,-0.14497159986158928],[117,180,78,-0.10621542510182416],[117,180,79,-0.10215599854136684],[117,181,64,-0.12330121101593594],[117,181,65,-0.10598962137460684],[117,181,66,-0.05562988488127211],[117,181,67,-0.05785138127451115],[117,181,68,-0.07565271690401673],[117,181,69,-0.08046948120536922],[117,181,70,-0.10302808650961347],[117,181,71,-0.15004927740809865],[117,181,72,-0.14717406942379513],[117,181,73,-0.12363504361844169],[117,181,74,-0.14106870181033393],[117,181,75,-0.17711265078603453],[117,181,76,-0.17417899497299458],[117,181,77,-0.14242806245324288],[117,181,78,-0.10422702878480461],[117,181,79,-0.10056712196570289],[117,182,64,-0.12163059530309148],[117,182,65,-0.10467200724037476],[117,182,66,-0.05551054828273713],[117,182,67,-0.057867333628529596],[117,182,68,-0.0753248746361232],[117,182,69,-0.08018971444133385],[117,182,70,-0.10272610801576695],[117,182,71,-0.14927877718787258],[117,182,72,-0.14637848201730078],[117,182,73,-0.12253890585474571],[117,182,74,-0.1391575583739374],[117,182,75,-0.17479652461681172],[117,182,76,-0.17170300176350972],[117,182,77,-0.13988578192435863],[117,182,78,-0.1022405893726832],[117,182,79,-0.09897477099628124],[117,183,64,-0.1199451753939819],[117,183,65,-0.10333823746262606],[117,183,66,-0.05537328940648487],[117,183,67,-0.05786233690856062],[117,183,68,-0.07497340710580037],[117,183,69,-0.07988388690041048],[117,183,70,-0.10239344144078816],[117,183,71,-0.1484672928444813],[117,183,72,-0.14554015244276364],[117,183,73,-0.12141780638669204],[117,183,74,-0.13723482704478526],[117,183,75,-0.17246591495262442],[117,183,76,-0.169219282056195],[117,183,77,-0.13734666736593226],[117,183,78,-0.10025759436511789],[117,183,79,-0.09738019066115493],[117,184,64,-0.1182466622658893],[117,184,65,-0.1019898160693169],[117,184,66,-0.055218580840296315],[117,184,67,-0.057836869609822525],[117,184,68,-0.07459924884452099],[117,184,69,-0.07955288242374185],[117,184,70,-0.10203089754195666],[117,184,71,-0.1476162788639845],[117,184,72,-0.14466073834194865],[117,184,73,-0.12027315270615213],[117,184,74,-0.1353023299100595],[117,184,75,-0.1701230564404387],[117,184,76,-0.16672989453885434],[117,184,77,-0.13481257609260971],[117,184,78,-0.09827949043667022],[117,184,79,-0.09578460327958194],[117,185,64,-0.11653676258900678],[117,185,65,-0.10062825143846443],[117,185,66,-0.05504692650678634],[117,185,67,-0.057791448424785924],[117,185,68,-0.07420336843256639],[117,185,69,-0.07919762215413526],[117,185,70,-0.10163933102214696],[117,185,71,-0.14672723831143106],[117,185,72,-0.1437419465456515],[117,185,73,-0.11910636954534698],[117,185,74,-0.13336187160046073],[117,185,75,-0.16777016246122273],[117,185,76,-0.1642368624079036],[117,185,77,-0.13228531143677766],[117,185,78,-0.09630768162662222],[117,185,79,-0.09418920690483196],[117,186,64,-0.1148171758672579],[117,186,65,-0.09925505362756364],[117,186,66,-0.054858860540182],[117,186,67,-0.057726627024563444],[117,186,68,-0.07378676641165151],[117,186,69,-0.07881906252983323],[117,186,70,-0.10121963878006206],[117,186,71,-0.14580171985301382],[117,186,72,-0.1427855295378062],[117,186,73,-0.11791889628274366],[117,186,74,-0.13141523656397014],[117,186,75,-0.1654094219231518],[117,186,76,-0.16174217087622206],[117,186,77,-0.12976662071745484],[117,186,78,-0.0943435276665284],[117,186,79,-0.09259517385419176],[117,187,64,-0.11308959164441049],[117,187,65,-0.09787173174683911],[117,187,66,-0.05465494611237608],[117,187,67,-0.057642994778234584],[117,187,68,-0.07335047316505788],[117,187,69,-0.07841819323528615],[117,187,70,-0.10077275809272557],[117,187,71,-0.14484131472274034],[117,187,72,-0.14179328187471543],[117,187,73,-0.11671218435904891],[117,187,74,-0.12946418644258847],[117,187,75,-0.163042996180813],[117,187,76,-0.15924776482407313],[117,187,77,-0.12725819338384642],[117,187,78,-0.09238834244566253],[117,187,79,-0.09100364932720366],[117,188,64,-0.11135568678271567],[117,188,65,-0.09647979138394179],[117,188,66,-0.054435774213749205],[117,188,67,-0.05754117541662378],[117,188,68,-0.07289554677412065],[117,188,69,-0.07799603511733494],[117,188,70,-0.10029966473745754],[117,188,71,-0.14384765364443924],[117,188,72,-0.1407670365725271],[117,188,73,-0.11548769471101185],[117,188,74,-0.12751045755745838],[117,188,75,-0.1606730160867171],[117,188,76,-0.156755546595224],[117,188,77,-0.12476165933274684],[117,188,78,-0.09044339261398493],[117,188,79,-0.08941575011284413],[117,189,64,-0.10961712282110256],[117,189,65,-0.09508073208758867],[117,189,66,-0.05420196239451799],[117,189,67,-0.05742182564736194],[117,189,68,-0.07242307086010866],[117,189,69,-0.07755363807543328],[117,189,70,-0.09980137106086648],[117,189,71,-0.14282240372015093],[117,189,72,-0.13970866147625785],[117,189,73,-0.11424689523071252],[117,189,74,-0.12555575850742332],[117,189,75,-0.15830157918101287],[117,189,76,-0.15426737393991832],[117,189,77,-0.12227858739836105],[117,189,78,-0.08850989632178935],[117,189,79,-0.08783256338608657],[117,190,64,-0.1078755434196466],[117,190,65,-0.09367604491742518],[117,190,66,-0.05395415347254846],[117,190,67,-0.05728563372829813],[117,190,68,-0.07193415242064176],[117,190,69,-0.07709207893466813],[117,190,70,-0.09927892400260349],[117,190,71,-0.1417672652960725],[117,190,72,-0.13862005562371824],[117,190,73,-0.11299125825786303],[117,190,74,-0.12360176788560713],[117,190,75,-0.15593074702473483],[117,190,76,-0.15178505810573775],[117,190,77,-0.11981048401237089],[117,190,78,-0.08658902209457754],[117,190,79,-0.0862551455938928],[117,191,64,-0.10613257189676306],[117,191,65,-0.09226721006719796],[117,191,66,-0.05369301421373388],[117,191,67,-0.057133318006515],[117,191,68,-0.07142991966985038],[117,191,69,-0.07661245931043024],[117,191,70,-0.09873340308179647],[117,191,71,-0.14068396881728812],[117,191,72,-0.13750314561769064],[117,191,73,-0.11172225811249872],[117,191,74,-0.12165013211817478],[117,191,75,-0.15356254268145345],[117,191,76,-0.14931036207690193],[117,191,77,-0.117358792031481],[117,191,78,-0.08468188784125628],[117,191,79,-0.08468452143040364],[117,192,64,-0.1043898088653034],[117,192,65,-0.09085569456814413],[117,192,66,-0.05341923399127026],[117,192,67,-0.056965625430491273],[117,192,68,-0.07091151989162647],[117,192,69,-0.07611590347375702],[117,192,70,-0.09816591835434549],[117,192,71,-0.13957427168267264],[117,192,72,-0.136359882019788],[117,192,73,-0.11044136867533702],[117,192,74,-0.11970246342903708],[117,192,75,-0.15119894835170467],[117,192,76,-0.14684499896203862],[117,192,77,-0.11492488972905439],[117,192,78,-0.08278955999325469],[117,192,79,-0.08312168290080456],[117,193,64,-0.10264882997339199],[117,193,65,-0.08944295007923558],[117,193,66,-0.053133523430252905],[117,193,67,-0.05678333004306383],[117,193,68,-0.07038011731529245],[117,193,69,-0.07560355622638301],[117,193,70,-0.09757760834936838],[117,193,71,-0.1384399551113363],[117,193,72,-0.13519223577931364],[117,193,73,-0.10915006102285363],[117,193,74,-0.11776033793378957],[117,193,75,-0.14884190316405008],[117,193,76,-0.14439063052993645],[117,193,77,-0.11251008994683678],[117,193,78,-0.08091305277166767],[117,193,79,-0.08156758847301922],[117,194,64,-0.10091118375551864],[117,194,65,-0.0880304107706828],[117,194,66,-0.05283661304418345],[117,194,67,-0.05658723146305439],[117,194,68,-0.06983689102306481],[117,194,69,-0.07507658079459456],[117,194,70,-0.09696963799321019],[117,194,71,-0.13728282103196013],[117,194,72,-0.13400219471034655],[117,194,73,-0.1078498011239324],[117,194,74,-0.11582529386573269],[117,194,75,-0.14649330112610245],[117,194,76,-0.1419488658922792],[117,194,77,-0.11011563940217575],[117,194,78,-0.0790533275790675],[117,194,79,-0.08002316231609814],[117,195,64,-0.09917838959907431],[117,195,65,-0.08661949130684049],[117,195,66,-0.05252925187007703],[117,195,67,-0.05637815336354271],[117,195,68,-0.06928303289867851],[117,195,69,-0.07453615675103667],[117,195,70,-0.09634319652961777],[117,195,71,-0.13610468900643227],[117,195,72,-0.13279176003021845],[117,195,73,-0.10654204760475586],[117,195,74,-0.113898829936395],[117,195,75,-0.14415498923836054],[117,195,76,-0.13952126033190052],[117,195,77,-0.10774271814560872],[117,195,78,-0.07721129251218835],[117,195,79,-0.07848929362389659],[117,196,64,-0.09745193615478143],[117,196,65,-0.08521158485310458],[117,196,66,-0.052212205523003284],[117,196,67,-0.056156940567554624],[117,196,68,-0.0687197443136938],[117,196,69,-0.07398347727578854],[117,196,70,-0.0956994953268286],[117,196,71,-0.13490739240240046],[117,196,72,-0.1315629410864145],[117,196,73,-0.1052282483124836],[117,196,74,-0.11198240265024118],[117,196,75,-0.1418287638160197],[117,196,76,-0.1371093134615012],[117,196,77,-0.10539243988910117],[117,196,78,-0.07538780355489852],[117,196,79,-0.07696683675685441],[117,197,64,-0.09573331605556382],[117,197,65,-0.08380805008029092],[117,197,66,-0.05188618441722884],[117,197,67,-0.055924293292549235],[117,197,68,-0.06814807811688872],[117,197,69,-0.07341966312104194],[117,197,70,-0.09503975040600025],[117,197,71,-0.1336926811242904],[117,197,72,-0.13031753044031485],[117,197,73,-0.1039096899460215],[117,197,74,-0.11007728847554923],[117,197,75,-0.13951614226305412],[117,197,76,-0.13471437636459163],[117,197,77,-0.10306593965906628],[117,197,78,-0.07358384807885593],[117,197,79,-0.07545669707439301],[117,198,64,-0.0940240482236835],[117,198,65,-0.08241019023775722],[117,198,66,-0.05155177077943814],[117,198,67,-0.05568061239227245],[117,198,68,-0.06756878754326189],[117,198,69,-0.07284567428399102],[117,198,70,-0.09436515787591059],[117,198,71,-0.1324621308305385],[117,198,72,-0.12905690316546783],[117,198,73,-0.10258737310140416],[117,198,74,-0.10818447485071905],[117,198,75,-0.13721817832350036],[117,198,76,-0.13233758897479825],[117,198,77,-0.10076446660020985],[117,198,78,-0.07180070852196208],[117,198,79,-0.07395990766137849],[117,199,64,-0.09232560254374417],[117,199,65,-0.08101926219993229],[117,199,66,-0.0512095340203614],[117,199,67,-0.05542628406831346],[117,199,68,-0.06698259277031209],[117,199,69,-0.07226244656339219],[117,199,70,-0.09367691054657717],[117,199,71,-0.13121730451043614],[117,199,72,-0.12778240932526638],[117,199,73,-0.10126228419234602],[117,199,74,-0.10630491643700458],[117,199,75,-0.13493588407424092],[117,199,76,-0.1299800636359889],[117,199,77,-0.09848924145612191],[117,199,78,-0.07003963433851572],[117,199,79,-0.07247747511776738],[117,200,64,-0.09063939048543514],[117,200,65,-0.07963647783079815],[117,200,66,-0.05086004560765084],[117,200,67,-0.05516171583552365],[117,200,68,-0.06639021493245796],[117,200,69,-0.07167090922398732],[117,200,70,-0.09297619972225976],[117,200,71,-0.1299597712073252],[117,200,72,-0.12649542125766722],[117,200,73,-0.09993542674102737],[117,200,74,-0.10443956431250086],[117,200,75,-0.13267027934077283],[117,200,76,-0.12764290437836773],[117,200,77,-0.09624143574623359],[117,200,78,-0.06830180025941171],[117,200,79,-0.07101035977134587],[117,201,64,-0.08896676485168982],[117,201,65,-0.07826300364829446],[117,201,66,-0.05050387861968897],[117,201,67,-0.05488733563444638],[117,201,68,-0.06579237544528149],[117,201,69,-0.07107198447900528],[117,201,70,-0.09226421421582758],[117,201,71,-0.1286911036511653],[117,201,72,-0.1251973304811217],[117,201,73,-0.09860781826581894],[117,201,74,-0.10258936313772103],[117,201,75,-0.13042238817290924],[117,201,76,-0.1253272038078274],[117,201,77,-0.09402216997856515],[117,201,78,-0.0665883065309712],[117,201,79,-0.06955947561931436],[117,202,64,-0.08730901966787177],[117,202,65,-0.07689996060089235],[117,202,66,-0.05014160730060964],[117,202,67,-0.05460359090974582],[117,202,68,-0.0651897953376039],[117,202,69,-0.07046658699656752],[117,202,70,-0.09154213939713844],[117,202,71,-0.12741287595217976],[117,202,72,-0.12388954463849493],[117,202,73,-0.09728048723712208],[117,202,74,-0.10075524844334297],[117,202,75,-0.1281932354306654],[117,202,76,-0.12303404013681778],[117,202,77,-0.09183251207161676],[117,202,78,-0.06490017933948694],[117,202,79,-0.06812569037285532],[117,203,64,-0.08566730134834767],[117,203,65,-0.07554834440814799],[117,203,66,-0.04977375344496457],[117,203,67,-0.054310888817837105],[117,203,68,-0.06458312366535587],[117,203,69,-0.06985554569553043],[117,203,70,-0.09081105392666462],[117,203,71,-0.12612651744363346],[117,203,72,-0.12257334294657155],[117,203,73,-0.09595435802133523],[117,203,74,-0.0989380271770119],[117,203,75,-0.12598369306193377],[117,203,76,-0.12076432866085077],[117,203,77,-0.08967336670254243],[117,203,78,-0.06323829359793882],[117,203,79,-0.06670974274314584],[117,204,64,-0.08404203862724727],[117,204,65,-0.0742085138536903],[117,204,66,-0.04940043751058152],[117,204,67,-0.05400920825522181],[117,204,68,-0.06397247351007086],[117,204,69,-0.06923909481446433],[117,204,70,-0.09007125844694217],[117,204,71,-0.1248323711863457],[117,204,72,-0.12124895016269296],[117,204,73,-0.09462952079588606],[117,204,74,-0.09713762288647822],[117,204,75,-0.1237935069480293],[117,204,76,-0.11851788148677712],[117,204,77,-0.08754477733380255],[117,204,78,-0.06160287939171948],[117,204,79,-0.06531171150833717],[117,205,64,-0.08243336426974422],[117,205,65,-0.07288056508753535],[117,205,66,-0.04902161255492003],[117,205,67,-0.0536983547638348],[117,205,68,-0.06335773753961739],[117,205,69,-0.06861721839186777],[117,205,70,-0.08932272656791455],[117,205,71,-0.12353033566904888],[117,205,72,-0.11991616879885333],[117,205,73,-0.09330574107114087],[117,205,74,-0.09535362182014548],[117,205,75,-0.1216219958230988],[117,205,76,-0.11629408961635417],[117,205,77,-0.08544645455070046],[117,205,78,-0.05999390430319209],[117,205,79,-0.06393141012119097],[117,206,64,-0.08084143872194346],[117,206,65,-0.07156462081764507],[117,206,66,-0.04863725490244916],[117,206,67,-0.05337817056500277],[117,206,68,-0.06273884278389014],[117,206,69,-0.06798992952157362],[117,206,70,-0.08856547195199242],[117,206,71,-0.12222038155723645],[117,206,72,-0.11857488705610027],[117,206,73,-0.09198286274890016],[117,206,74,-0.09358569531999912],[117,206,75,-0.11946859427566783],[117,206,76,-0.11409244988782205],[117,206,77,-0.08337817432712942],[117,206,78,-0.05841135905687556],[117,206,79,-0.06256868868350436],[117,207,64,-0.07926644837049204],[117,207,65,-0.07026082899719287],[117,207,66,-0.0482473646207741],[117,207,67,-0.05304853502349988],[117,207,68,-0.06211575081775754],[117,207,69,-0.06735727098253891],[117,207,70,-0.08779954913417426],[117,207,71,-0.1209025513620586],[117,207,72,-0.11722507778932513],[117,207,73,-0.09066080578522022],[117,207,74,-0.09183359587482712],[117,207,75,-0.1173328479776937],[117,207,76,-0.11191256014592661],[117,207,77,-0.08133977341213053],[117,207,78,-0.056855255071675895],[117,207,79,-0.061223432179086476],[117,208,64,-0.07770860216696779],[117,208,65,-0.06896936002963898],[117,208,66,-0.047851964922378525],[117,208,67,-0.052709363917018366],[117,208,68,-0.06148845653614595],[117,208,69,-0.06671931430918011],[117,208,70,-0.0870250522882959],[117,208,71,-0.11957695627345734],[117,208,72,-0.11586679469522425],[117,208,73,-0.08933956173410125],[117,208,74,-0.09009715108309327],[117,208,75,-0.11521440620875205],[117,208,76,-0.10975411181695002],[117,208,77,-0.0793311428456797],[117,208,78,-0.05532562066360491],[117,208,79,-0.05989555720289756],[117,209,64,-0.07616812836739369],[117,209,65,-0.06769040405617445],[117,209,66,-0.04745110152582299],[117,209,67,-0.05236060864994053],[117,209,68,-0.06085698690160879],[117,209,69,-0.06607615881607615],[117,209,70,-0.08624211393061196],[117,209,71,-0.1182437729605048],[117,209,72,-0.11450016847868723],[117,209,73,-0.08801918935754002],[117,209,74,-0.0883762578103354],[117,209,75,-0.11311301461110196],[117,209,76,-0.10761688273649181],[117,209,77,-0.07735222175354597],[117,209,78,-0.05382249743800491],[117,209,79,-0.058585008814313694],[117,210,64,-0.07464527139090318],[117,210,65,-0.06642416832903436],[117,210,66,-0.047044841977914156],[117,210,67,-0.0520022554107185],[117,210,68,-0.06022139966534368],[117,210,69,-0.06542793057993486],[117,210,70,-0.08545090356418854],[117,210,71,-0.11690324034172449],[117,210,72,-0.113125402998208],[117,210,73,-0.08669981029989551],[117,210,74,-0.08667087653515915],[117,210,75,-0.11102850816569344],[117,210,76,-0.10550073022108869],[117,210,77,-0.07540299141698106],[117,210,78,-0.05234593687242249],[117,210,79,-0.05729175751363695],[117,211,64,-0.07314028880136902],[117,211,65,-0.06517087467405437],[117,211,66,-0.046633274938538395],[117,211,67,-0.0516343242727253],[117,211,68,-0.05958178206294507],[117,211,69,-0.06477478138182002],[117,211,70,-0.08465162626781012],[117,211,71,-0.11555565632895556],[117,211,72,-0.11174277139215315],[117,211,73,-0.08538160482581329],[117,211,74,-0.08498102587931865],[117,211,75,-0.10896080438125477],[117,211,76,-0.1034055843765674],[117,211,77,-0.07348346961383759],[117,211,78,-0.0508959970910741],[117,211,79,-0.056015796341198985],[117,212,64,-0.07165344841544202],[117,212,65,-0.06393075704561135],[117,212,66,-0.04621650943001774],[117,212,67,-0.05125686823899159],[117,212,68,-0.05893824948648519],[117,212,69,-0.06411688761274005],[117,212,70,-0.08384452123331966],[117,212,71,-0.11420137454900078],[117,212,72,-0.11035261218880192],[117,212,73,-0.08406480762203516],[117,212,74,-0.08330677731849723],[117,212,75,-0.10690989669029252],[117,212,76,-0.10133144163743958],[117,212,77,-0.07159370522820559],[117,212,78,-0.04947273983145055],[117,212,79,-0.054757138098472026],[117,213,64,-0.07018502554011587],[117,213,65,-0.06270405917686513],[117,213,66,-0.04579467405299411],[117,213,67,-0.05086997223172983],[117,213,68,-0.05829094413478182],[117,213,69,-0.06345444914577898],[117,213,70,-0.08302986025548838],[117,213,71,-0.11284080104790073],[117,213,72,-0.1089553254040537],[117,213,73,-0.08274970366439496],[117,213,74,-0.08164825007142065],[117,213,75,-0.10487584804740653],[117,213,76,-0.09927835853297018],[117,213,77,-0.06973377312611515],[117,213,78,-0.04807622760327029],[117,213,79,-0.05351581269069302],[117,214,64,-0.06873530034260965],[117,214,65,-0.061491032328012],[117,214,66,-0.045367916171044825],[117,214,67,-0.05047375202808511],[117,214,68,-0.057640033644020906],[117,214,69,-0.06278768817808911],[117,214,70,-0.08220794617874333],[117,214,71,-0.11147439098326674],[117,214,72,-0.10755136863162916],[117,214,73,-0.0814366241521965],[117,214,74,-0.08000560616583219],[117,214,75,-0.1028587847267113],[117,214,76,-0.09724644567669988],[117,214,77,-0.06790376929520014],[117,214,78,-0.04670652103963883],[117,214,79,-0.052291864590595705],[117,215,64,-0.06730455535492737],[117,215,65,-0.06029193313495529],[117,215,66,-0.04493640106635368],[117,215,67,-0.05006835314398629],[117,215,68,-0.056985709701118305],[117,215,69,-0.06211684804612944],[117,215,70,-0.08137911130523201],[117,215,71,-0.11010264531055995],[117,215,72,-0.10614125313134584],[117,215,73,-0.08012594251286817],[117,215,74,-0.07837904568053129],[117,215,75,-0.10085889031627276],[117,215,76,-0.09523586197708458],[117,215,77,-0.06610380624633487],[117,215,78,-0.04536367643978701],[117,215,79,-0.051085350422789964],[117,216,64,-0.06589307311505485],[117,216,65,-0.0591070215605066],[117,216,66,-0.04450031106887232],[117,216,67,-0.04965394966837198],[117,216,68,-0.05632818664239709],[117,216,69,-0.06144219201758035],[117,216,70,-0.08054371576881592],[117,216,71,-0.10872610746957463],[117,216,72,-0.10472553992169979],[117,216,73,-0.07881807048038116],[117,216,74,-0.07676880216324639],[117,216,75,-0.09887639990845917],[117,216,76,-0.09324680906770172],[117,216,77,-0.06433400867535041],[117,216,78,-0.044047743502340427],[117,216,79,-0.04989633666831575],[117,217,64,-0.06450113394636858],[117,217,65,-0.05793655894997513],[117,217,66,-0.04405984466159605],[117,217,67,-0.04923074305053502],[117,217,68,-0.05566770004042216],[117,217,69,-0.06076400206350848],[117,217,70,-0.07970214587979929],[117,217,71,-0.10734536007779699],[117,217,72,-0.10330483588363881],[117,217,73,-0.07751345425148597],[117,217,74,-0.07517513822461461],[117,217,75,-0.09691159448596125],[117,217,76,-0.09127952595612285],[117,217,77,-0.06259450938293296],[117,217,78,-0.0427587632476282],[117,217,79,-0.04872489748886805],[117,218,64,-0.06312901387634644],[117,218,65,-0.056780806192626564],[117,218,66,-0.0436152155646173],[117,218,67,-0.04879896084362327],[117,218,68,-0.05500450528193012],[117,218,69,-0.06008257761433205],[117,218,70,-0.07885481244522546],[117,218,71,-0.1059610216374982],[117,218,72,-0.10187978988281161],[117,218,73,-0.07621257072414343],[117,218,74,-0.07359834130881164],[117,218,75,-0.09496479550385112],[117,218,76,-0.08933428389098566],[117,218,77,-0.06088544545064606],[117,218,78,-0.04149676612702272],[117,218,79,-0.047571112670053775],[117,219,64,-0.06177698269527467],[117,219,65,-0.05564002199021207],[117,219,66,-0.04316665180076098],[117,219,67,-0.0483588554077059],[117,219,68,-0.054338876139983026],[117,219,69,-0.059398234303228895],[117,219,70,-0.0780021490697093],[117,219,71,-0.10457374326366879],[117,219,72,-0.10045108891801655],[117,219,73,-0.07491592382287368],[117,219,74,-0.07203871964164935],[117,219,75,-0.09303635966860982],[117,219,76,-0.0874113814471941],[117,219,77,-0.059206954670874994],[117,219,78,-0.0402617703168632],[117,219,79,-0.04643506568297485],[117,220,64,-0.06044530215515352],[117,220,65,-0.054514461233390064],[117,220,66,-0.04271439474565488],[117,220,67,-0.04791070257609014],[117,220,68,-0.053671103343565486],[117,220,69,-0.05871130270062679],[117,220,70,-0.07714461044181338],[117,220,71,-0.10318420544000963],[117,220,72,-0.09901945430383134],[117,220,73,-0.07362404091591082],[117,220,74,-0.07049659835704637],[117,220,75,-0.09112667391539661],[117,220,76,-0.08551113982935539],[117,220,77,-0.05755917222817363],[117,220,78,-0.039053780193976206],[117,220,79,-0.04531684186324614],[117,221,64,-0.05913422430861336],[117,221,65,-0.05340437348657153],[117,221,66,-0.042258698165184426],[117,221,67,-0.04745480028885558],[117,221,68,-0.05300149314796911],[117,221,69,-0.05802212704345788],[117,221,70,-0.07628267061103579],[117,221,71,-0.10179311481029035],[117,221,72,-0.09758563789563926],[117,221,73,-0.07233746932920124],[117,221,74,-0.06897231580286145],[117,221,75,-0.0892361505851508],[117,221,76,-0.08363389839375449],[117,221,77,-0.05594222762926062],[117,221,78,-0.03787278498940331],[117,221,79,-0.04421652670647839],[117,222,64,-0.05784398998716351],[117,222,65,-0.05231000158133937],[117,222,66,-0.04179982724330983],[117,222,67,-0.04699146719778689],[117,222,68,-0.052330365909355726],[117,222,69,-0.057331063962839886],[117,222,70,-0.07541682126048213],[117,222,71,-0.10040120101238681],[117,222,72,-0.09615041836536933],[117,222,73,-0.07105677296228956],[117,222,74,-0.0674662200270045],[117,222,75,-0.08736522280321983],[117,222,76,-0.08178001038913608],[117,222,77,-0.05435624187848176],[117,222,78,-0.03671875761641013],[117,222,79,-0.043134204279030745],[117,223,64,-0.05657482741766365],[117,223,65,-0.05123158031824656],[117,223,66,-0.041338057603244584],[117,223,67,-0.04652104124706188],[117,223,68,-0.051658054666927744],[117,223,69,-0.05663848121381602],[117,223,70,-0.0745475699802713],[117,223,71,-0.09900921356224472],[117,223,72,-0.09471459753628778],[117,223,73,-0.06978252901108027],[117,223,74,-0.06597866544462053],[117,223,75,-0.08551434006125624],[117,223,76,-0.07994983891651439],[117,223,77,-0.05280132489517886],[117,223,78,-0.03559165366840722],[117,223,79,-0.04206995574267465],[117,224,64,-0.055326950975514155],[117,224,65,-0.050169335276499166],[117,224,66,-0.04087367432504933],[117,224,67,-0.046043878234242774],[117,224,68,-0.050984903736186686],[117,224,69,-0.05594475641079298],[117,224,70,-0.07367543854672855],[117,224,71,-0.0976179187949591],[117,224,72,-0.0932789967851813],[117,224,73,-0.06851532480238787],[117,224,74,-0.06451000968700656],[117,224,75,-0.08368396400412033],[117,224,76,-0.0781437531081304],[117,224,77,-0.05127757316901656],[117,224,78,-0.03449141058201566],[117,224,79,-0.041023857991667995],[117,225,64,-0.05410056007260503],[117,225,65,-0.04912348173065445],[117,225,66,-0.040406970962670784],[117,225,67,-0.045560350356220566],[117,225,68,-0.050311267316739905],[117,225,69,-0.055250275772243666],[117,225,70,-0.07280096121234685],[117,225,71,-0.0962280968699838],[117,225,72,-0.09184445352013237],[117,225,73,-0.06725575474497787],[117,225,74,-0.0630606106326485],[117,225,75,-0.08187456442334627],[117,225,76,-0.07636212452542059],[117,225,77,-0.04978506764882204],[117,225,78,-0.033417946960035284],[117,225,79,-0.039995982400495816],[117,226,64,-0.05289583817766471],[117,226,65,-0.04809422367313969],[117,226,66,-0.03993824856342096],[117,226,67,-0.04507084474481855],[117,226,68,-0.0496375081180618],[117,226,69,-0.05455543287815755],[117,226,70,-0.071924683011389],[117,226,71,-0.09484053884725768],[117,226,72,-0.09041181774188115],[117,226,73,-0.06600441740154535],[117,226,74,-0.061630823620477504],[117,226,75,-0.08008661545852594],[117,226,76,-0.07460532377560074],[117,226,77,-0.04832387186005427],[117,226,78,-0.032371162048701115],[117,226,79,-0.03898639368035731],[117,227,64,-0.051712951966297716],[117,227,65,-0.04708175294111606],[117,227,66,-0.03946781469291898],[117,227,67,-0.044575761996880896],[117,227,68,-0.04896399600663416],[117,227,69,-0.05386062744370585],[117,227,70,-0.07104715808597298],[117,227,71,-0.0934560438408613],[117,227,72,-0.08898194869659003],[117,227,73,-0.06476191268584477],[117,227,74,-0.06022099884516828],[117,227,75,-0.07832059200772803],[117,227,76,-0.07287371734618252],[117,227,77,-0.04689403024557818],[117,227,78,-0.03135093536326503],[117,227,79,-0.037995148842310776],[117,228,64,-0.05055205059759778],[117,228,65,-0.0460862484458675],[117,228,66,-0.03899598246842212],[117,228,67,-0.04407551470363273],[117,228,68,-0.04829110667776367],[117,228,69,-0.05316626411244374],[117,228,70,-0.0701689480373032],[117,228,71,-0.0920754162564675],[117,228,72,-0.08755571162746448],[117,228,73,-0.0635288391887948],[117,228,74,-0.058831478933897445],[117,228,75,-0.0765769663476973],[117,228,76,-0.07116766465633867],[117,228,77,-0.045495566723928786],[117,228,78,-0.030357126455576092],[117,228,79,-0.03702229626476118],[117,229,64,-0.04941326511388146],[117,229,65,-0.04510787550260373],[117,229,66,-0.03852306960341354],[117,229,67,-0.04357052598408771],[117,229,68,-0.04761922035529022],[117,229,69,-0.0524727512722674],[117,229,70,-0.06929062030656989],[117,229,71,-0.09069946311853472],[117,229,72,-0.0861339746323294],[117,229,73,-0.0623057916370048],[117,229,74,-0.05746259670359804],[117,229,75,-0.07485620496419808],[117,229,76,-0.06948751532363767],[117,229,77,-0.044128483458801694],[117,229,78,-0.02938957481702833],[117,229,79,-0.03606787486278812],[117,230,64,-0.0482967079597949],[117,230,65,-0.04414678525832505],[117,230,66,-0.03804939746628795],[117,230,67,-0.04306122802728611],[117,230,68,-0.04694872052234075],[117,230,69,-0.05178049989727731],[117,230,70,-0.06841274658993451],[117,230,71,-0.08932899149288297],[117,230,72,-0.08471760563390475],[117,230,73,-0.0610933584868065],[117,230,74,-0.05611467309738138],[117,230,75,-0.07315876559248048],[117,230,76,-0.06783360664427408],[117,230,77,-0.04279275983309134],[117,230,78,-0.02844809991000122],[117,230,79,-0.035131913356655296],[117,231,64,-0.047202472616718914],[117,231,65,-0.043203114215095664],[117,231,66,-0.03757529015583088],[117,231,67,-0.042548060648007986],[117,231,68,-0.04627999268609634],[117,231,69,-0.05108992241850444],[117,231,70,-0.0675359012917689],[117,231,71,-0.08796480600983839],[117,231,72,-0.08330746946900862],[117,231,73,-0.05989211965637009],[117,231,74,-0.05478801529832879],[117,231,75,-0.07148509446734691],[117,231,76,-0.06620626128443916],[117,231,77,-0.04148835162035765],[117,231,78,-0.027532501320662987],[117,231,79,-0.03421442963664019],[117,232,64,-0.04613063334812539],[117,232,65,-0.04227698384583605],[117,232,66,-0.03710107359611089],[117,232,67,-0.04203146986053293],[117,232,68,-0.0456134231794261],[117,232,69,-0.05040143162634323],[117,232,70,-0.06666066002015639],[117,232,71,-0.08660770649275072],[117,232,72,-0.08190442510245798],[117,232,73,-0.058702644398044714],[117,232,74,-0.05348291501843906],[117,232,75,-0.06983562378182291],[117,232,76,-0.06460578518001742],[117,232,77,-0.04021519034619513],[117,232,78,-0.026642559025794953],[117,232,79,-0.03331543022114042],[117,233,64,-0.045081245051324326],[117,233,65,-0.04136850029954801],[117,233,66,-0.03662707465330806],[117,233,67,-0.04151190647490264],[117,233,68,-0.04494939800209845],[117,233,69,-0.04971543960739337],[117,233,70,-0.06578759812845936],[117,233,71,-0.08525848569626127],[117,233,72,-0.08050932297092617],[117,233,73,-0.057525489312592444],[117,233,74,-0.05219964696011134],[117,233,75,-0.06821076935295871],[117,233,76,-0.0630324656413576],[117,233,77,-0.03897318283164996],[117,233,78,-0.025778033766180417],[117,233,79,-0.03243490980489933],[117,234,64,-0.04405434321079585],[117,234,65,-0.04047775419264922],[117,234,66,-0.036153620276847535],[117,234,67,-0.04098982471995562],[117,234,68,-0.044288301704077875],[117,234,69,-0.04903235671821933],[117,234,70,-0.0649172893065034],[117,234,71,-0.0839179271582098],[117,234,72,-0.07912300246143669],[117,234,73,-0.056361196506458155],[117,234,74,-0.05093846744707858],[117,234,75,-0.06661092849274433],[117,234,76,-0.06148656965936954],[117,234,77,-0.03776221091046593],[117,234,78,-0.024938667518946425],[117,234,79,-0.031572850894005654],[117,235,64,-0.04304994394810781],[117,235,65,-0.03960482048291253],[117,235,66,-0.03568103666708359],[117,235,67,-0.040465680897240286],[117,235,68,-0.043630516313245105],[117,235,69,-0.048352590598374004],[117,235,70,-0.0640503042247002],[117,235,71,-0.08258680316860968],[117,235,72,-0.07774628952860654],[117,235,73,-0.05521029189271637],[117,235,74,-0.049699613221285716],[117,235,75,-0.06503647808159446],[117,235,76,-0.05996834240872385],[117,235,77,-0.03658213131162528],[117,235,78,-0.02412418406115455],[117,235,79,-0.030729223524182853],[117,236,64,-0.04206804416329916],[117,236,65,-0.03874975842237034],[117,236,66,-0.035209648471650264],[117,236,67,-0.03993993206972166],[117,236,68,-0.042976420309694535],[117,236,69,-0.04767654522486535],[117,236,70,-0.06318720923419299],[117,236,71,-0.08126587285864917],[117,236,72,-0.0763799944541768],[117,236,73,-0.054073283635846084],[117,236,74,-0.04848330040182271],[117,236,75,-0.06348777284137587],[117,236,76,-0.05847800594352156],[117,236,77,-0.03543277569844057],[117,236,78,-0.02333428961694422],[117,236,79,-0.029903985058804216],[117,237,64,-0.0411086217624381],[117,237,65,-0.03791261158537269],[117,237,66,-0.034739778012428335],[117,237,67,-0.03941303478896853],[117,237,68,-0.04232638764854748],[117,237,69,-0.04700462001004095],[117,237,70,-0.06232856512583433],[117,237,71,-0.07995588041216485],[117,237,72,-0.07502490975174404],[117,237,73,-0.052950660739953165],[117,237,74,-0.047289723601592955],[117,237,75,-0.061965143804395134],[117,237,76,-0.05701575808031386],[117,237,77,-0.0343139508551782],[117,237,78,-0.02256867358047514],[117,237,79,-0.029097080062915375],[117,238,64,-0.04017163596597165],[117,238,65,-0.037093407967868065],[117,238,66,-0.03427174454490955],[117,238,67,-0.03888544386425751],[117,238,68,-0.04168078683299583],[117,238,69,-0.04633720894466166],[117,238,70,-0.06147492595052644],[117,238,71,-0.0786575534015315],[117,238,72,-0.07368180821898407],[117,238,73,-0.05184289177954897],[117,238,74,-0.0461190551970194],[117,238,75,-0.06046889697426399],[117,238,76,-0.055581771462941555],[117,238,77,-0.033225439012025945],[117,238,78,-0.021827009306958908],[117,238,79,-0.028308440249460876],[117,239,64,-0.039257027692432216],[117,239,65,-0.03629216015390387],[117,239,66,-0.03380586355160244],[117,239,67,-0.03835761117680868],[117,239,68,-0.04103998003910099],[117,239,69,-0.045674699787762396],[117,239,70,-0.060626837903205034],[117,239,71,-0.07737160124943405],[117,239,72,-0.07235144113906729],[117,239,73,-0.0507504237715272],[117,239,74,-0.044971444745759974],[117,239,75,-0.058999312174099275],[117,239,76,-0.05417619280329069],[117,239,77,-0.03216699829910753],[117,239,78,-0.021108954964168956],[117,239,79,-0.027537984493862917],[117,240,64,-0.03836472001199622],[117,240,65,-0.03550886554524293],[117,240,66,-0.033342446070938316],[117,240,67,-0.03782998454208716],[117,240,68,-0.040404322293635955],[117,240,69,-0.045017473304683565],[117,240,70,-0.05978483827245841],[117,240,71,-0.0760987138174814],[117,240,72,-0.07103453663233258],[117,240,73,-0.04967368118647425],[117,240,74,-0.043847018547045015],[117,240,75,-0.05755664207700942],[117,240,76,-0.05279914229165095],[117,240,77,-0.031138363320110794],[117,240,78,-0.020414154436880053],[117,240,79,-0.026785618912999357],[117,241,64,-0.037494618664369275],[117,241,65,-0.03474350664992774],[117,241,66,-0.03288179806293741],[117,241,67,-0.03730300662280422],[117,241,68,-0.039774160706006124],[117,241,69,-0.04436590255441856],[117,241,70,-0.058949454457453435],[117,241,71,-0.07483956012210065],[117,241,72,-0.06973179815865543],[117,241,73,-0.048613065096975897],[117,241,74,-0.042745879338943825],[117,241,75,-0.05614111141338505],[117,241,76,-0.05145071317003707],[117,241,77,-0.030139245836063207],[117,241,78,-0.019742238276835602],[117,241,79,-0.02605123700458749],[117,242,64,-0.03664661263550978],[117,242,65,-0.03399605142562777],[117,242,66,-0.032424219812774054],[117,242,67,-0.036777113895020044],[117,242,68,-0.03914983375511223],[117,242,69,-0.04372035222728008],[117,242,70,-0.058121203053622526],[117,242,71,-0.07359478717772107],[117,242,72,-0.06844390317038314],[117,242,73,-0.04756895246016428],[117,242,74,-0.041668106126612474],[117,242,75,-0.05475291634910086],[117,242,76,-0.05013097146152173],[117,242,77,-0.029169335549786655],[117,242,78,-0.019092824691031393],[117,242,79,-0.0253347198429743],[117,243,64,-0.03582057478770765],[117,243,65,-0.03326645367355308],[117,243,66,-0.0319700053731516],[117,243,67,-0.036252735669413096],[117,243,68,-0.0385316706317418],[117,243,69,-0.04308117803362377],[117,243,70,-0.05730058900822092],[117,243,71,-0.07236501896673642],[117,243,72,-0.06717150191508874],[117,243,73,-0.046541695531299984],[117,243,74,-0.04061375413531251],[117,243,75,-0.053392224028339076],[117,243,76,-0.04883995584834696],[117,243,77,-0.028228300981588024],[117,243,78,-0.01846552056127238],[117,243,79,-0.024635936327285373],[117,244,64,-0.03501636253759315],[117,244,65,-0.03255465347872742],[117,244,66,-0.03151944204622487],[117,244,67,-0.03573029316948532],[117,244,68,-0.037919990636852675],[117,244,69,-0.042448726144168336],[117,244,70,-0.056488104846587534],[117,244,71,-0.07115085553527883],[117,244,72,-0.06591521638681405],[117,244,73,-0.04553162140477612],[117,244,74,-0.03958285488176832],[117,244,75,-0.05205917227437594],[117,244,76,-0.047577677691323955],[117,244,77,-0.02731579042681098],[117,244,78,-0.017859922488188372],[117,244,79,-0.023954743477890776],[117,245,64,-0.03423381857675771],[117,245,65,-0.031860577692464656],[117,245,66,-0.031072809905662975],[117,245,67,-0.03521019866821425],[117,245,68,-0.037315102635923574],[117,245,69,-0.04182333268228326],[117,245,70,-0.055684229969698795],[117,245,71,-0.06995287221342862],[117,245,72,-0.06467563942396093],[117,245,73,-0.04453903167859655],[117,245,74,-0.038575416357285994],[117,245,75,-0.05075386944138405],[117,245,76,-0.04634412118285264],[117,245,77,-0.026431432986016853],[117,245,78,-0.017275617853163193],[117,245,79,-0.023290986777178304],[117,246,64,-0.03347277162973883],[117,246,65,-0.031184140452898336],[117,246,66,-0.030630381359218094],[117,246,67,-0.03469285468430562],[117,246,68,-0.03671730456927319],[117,246,69,-0.04120532326835822],[117,246,70,-0.05488943002326945],[117,246,71,-0.06877161895800565],[117,246,72,-0.0634533339514025],[117,246,73,-0.04356420223798515],[117,246,74,-0.037591423315871106],[117,246,75,-0.04947639440998392],[117,246,76,-0.0451392436256936],[117,246,77,-0.025574839658694268],[117,246,78,-0.0167121858918813],[117,246,79,-0.022644500550629793],[117,247,64,-0.0327330372442673],[117,247,65,-0.030525243739501204],[117,247,66,-0.030192420752031594],[117,247,67,-0.03417865323894968],[117,247,68,-0.036126883018076504],[117,247,69,-0.04059501261621469],[117,247,70,-0.05410415633843089],[117,247,71,-0.06760761981572795],[117,247,72,-0.06224883236392992],[117,247,73,-0.04260738315351191],[117,247,74,-0.03663083766050297],[117,247,75,-0.04822679671905832],[117,247,76,-0.04396297582951536],[117,247,77,-0.024745604491607013],[117,247,78,-0.016169198773503167],[117,247,79,-0.022015108384255],[117,248,64,-0.03201441860879093],[117,248,65,-0.029883777957578413],[117,248,66,-0.029759184010698977],[117,248,67,-0.03366797517364585],[117,248,68,-0.035544112825556425],[117,248,69,-0.03999270418128612],[117,248,70,-0.05332884544370847],[117,248,71,-0.06646137250409533],[117,248,72,-0.061062636047627905],[117,248,73,-0.04166879868879897],[117,248,74,-0.03569359892061815],[117,248,75,-0.04700509682611133],[117,248,76,-0.042815222617123935],[117,248,77,-0.023943305773100568],[117,248,78,-0.015646222679773412],[117,248,79,-0.02140262357447483],[117,249,64,-0.03131670739247943],[117,249,65,-0.02925962254884027],[117,249,66,-0.029330918327980755],[117,249,67,-0.03316118952940591],[117,249,68,-0.03496925677266061],[117,249,69,-0.039398689860138114],[117,249,70,-0.05256391864779758],[117,249,71,-0.06533334810703416],[117,249,72,-0.059895215035366586],[117,249,73,-0.040748647412657345],[117,249,74,-0.03477962481384611],[117,249,75,-0.045811286488319725],[117,249,76,-0.0416958634322627],[117,249,77,-0.023167507264982855],[117,249,78,-0.015142818878723185],[117,249,79,-0.02080684960664787],[117,250,64,-0.030639684603058177],[117,250,65,-0.028652646624237242],[117,250,66,-0.028907861887861427],[117,250,67,-0.0326586529873402],[117,250,68,-0.034402565307315856],[117,250,69,-0.0388132497406982],[117,250,70,-0.051809781692367565],[117,250,71,-0.06422399088197782],[117,250,72,-0.058747007792153756],[117,250,73,-0.03984710241026143],[117,250,74,-0.033888811885004436],[117,250,75,-0.04464532925626832],[117,250,76,-0.04060475304081835],[117,250,77,-0.02241775946385206],[117,250,78,-0.014658544787932517],[117,250,79,-0.020227580658481924],[117,251,64,-0.029983121458010308],[117,251,65,-0.028062709615355317],[117,251,66,-0.028490243630490075],[117,251,67,-0.032160709370340754],[117,251,68,-0.03384427632615451],[117,251,69,-0.03823665190237578],[117,251,70,-0.05106682447387254],[117,251,71,-0.06313371817473823],[117,251,72,-0.05761842112570726],[117,251,73,-0.03896431158778065],[117,251,74,-0.03302103621538577],[117,251,75,-0.043507161072279546],[117,251,76,-0.039541722317302415],[117,251,77,-0.021693600884079782],[117,251,78,-0.014192955022681256],[117,251,79,-0.019664602124677886],[117,252,64,-0.029346780264903064],[117,252,65,-0.027489661940820535],[117,252,66,-0.028078283056417904],[117,252,67,-0.031667689205345614],[117,252,68,-0.03329461500746452],[117,252,69,-0.037669152265122054],[117,252,70,-0.05033542083315333],[117,252,71,-0.06206292043827287],[117,252,72,-0.056509830217287685],[117,252,73,-0.03810039806476499],[117,252,74,-0.03217615419544699],[117,252,75,-0.042396690965218746],[117,252,76,-0.038506579108547],[117,252,77,-0.020994559355013147],[117,252,78,-0.013745602424682786],[117,252,79,-0.019117691159268688],[117,253,64,-0.028730415306780797],[117,253,65,-0.026933345684273007],[117,253,66,-0.027672190069371848],[117,253,67,-0.03117990934537729],[117,253,68,-0.0327537936939149],[117,253,69,-0.03711099448628622],[117,253,70,-0.04961592841136814],[117,253,71,-0.06101196135116389],[117,253,72,-0.05542157876749452],[117,253,73,-0.037255460648437475],[117,253,74,-0.03135400335407289],[117,253,75,-0.041313801833628434],[117,253,76,-0.03749910916662651],[117,253,77,-0.02032015332531106],[117,253,78,-0.013316039067440775],[117,253,79,-0.01858661723221348],[117,254,64,-0.028133773728782334],[117,254,65,-0.02639359528061531],[117,254,66,-0.027272164856664567],[117,254,67,-0.030697672650302765],[117,254,68,-0.032222011823452634],[117,254,69,-0.036562409903974157],[117,254,70,-0.048908688570581865],[117,254,71,-0.059981178031395896],[117,254,72,-0.05435397925145017],[117,254,73,-0.03642957438395986],[117,254,74,-0.030554403237700072],[117,254,75,-0.04025835130907263],[117,254,76,-0.03651907714314333],[117,254,77,-0.019669893167716924],[117,254,78,-0.012903817234633517],[117,254,79,-0.018071142696928427],[117,255,64,-0.02755659642238486],[117,255,65,-0.02587023820741589],[117,255,66,-0.02687839780624129],[117,255,67,-0.030221267725062697],[117,255,68,-0.031699455906651686],[117,255,69,-0.03602361752550495],[117,255,70,-0.04821402637718614],[117,255,71,-0.058970881340848366],[117,255,72,-0.05330731327758952],[117,255,73,-0.03562279117471488],[117,255,74,-0.02977715633275289],[117,255,75,-0.03923017269165948],[117,255,76,-0.035566227637185574],[117,255,77,-0.019043282477986874],[117,255,78,-0.012508490368308088],[117,255,79,-0.017571023365583114],[117,256,64,-0.026998618903881215],[117,256,65,-0.025363095678481083],[117,256,66,-0.02649106945920733],[117,256,67,-0.029750968713858475],[117,256,68,-0.031186299548624875],[117,256,69,-0.03549482405939252],[117,256,70,-0.04753225064610708],[117,256,71,-0.05798135627571008],[117,256,72,-0.05228183204403676],[117,256,73,-0.034835140466595076],[117,256,74,-0.029022049024983575],[117,256,75,-0.03822907594979125],[117,256,76,-0.03464028628943909],[117,256,77,-0.01843981936209689],[117,256,78,-0.012129613984017438],[117,256,79,-0.017086009089112224],[117,257,64,-0.0264595721839271],[117,257,65,-0.024871983336774286],[117,257,66,-0.026110350496578845],[117,257,67,-0.029287035148599892],[117,257,68,-0.030682703513503412],[117,257,69,-0.034976223989172064],[117,257,70,-0.046863654043606685],[117,257,71,-0.0570128624378911],[117,257,72,-0.05127775688639683],[117,257,73,-0.034066629990307046],[117,257,74,-0.02828885258950329],[117,257,75,-0.037254848776322846],[117,257,76,-0.033740960915137674],[117,257,77,-0.017858997706266533],[117,257,78,-0.011766746550381185],[117,257,79,-0.016615844339030246],[117,258,64,-0.025939183625247872],[117,258,65,-0.02439671194404526],[117,258,66,-0.025736401758909143],[117,258,67,-0.02882971184973638],[117,258,68,-0.03018881582939032],[117,258,69,-0.03446799968729258],[117,258,70,-0.046208513246349],[117,258,71,-0.05606563458240126],[117,258,72,-0.050295279910674395],[117,258,73,-0.033317246555752224],[117,258,74,-0.027577324205519036],[117,258,75,-0.036307257693496554],[117,258,76,-0.03286794266880275],[117,258,77,-0.01730030842479645],[117,258,78,-0.011419450330927547],[117,258,79,-0.016160268788306422],[117,259,64,-0.025437177785803372],[117,259,65,-0.023937088064678327],[117,259,66,-0.025369374297324967],[117,259,67,-0.02837922887740033],[117,259,68,-0.02970477193157706],[117,259,69,-0.033970321567172855],[117,259,70,-0.045567089154242624],[117,259,71,-0.05513988323555417],[117,259,72,-0.049334564704917455],[117,259,73,-0.03258695689258974],[117,259,74,-0.026887207990001626],[117,259,75,-0.035386049199195996],[117,259,76,-0.03202090723395888],[117,259,77,-0.01676324068113096],[117,259,78,-0.011087292186395802],[117,259,79,-0.015719017888688513],[117,260,64,-0.024953277244940297],[117,260,65,-0.023492914741440316],[117,260,66,-0.025009409454431548],[117,260,67,-0.027935801530646603],[117,260,68,-0.029230694841738323],[117,260,69,-0.03348334827144082],[117,260,70,-0.04493962715446509],[117,260,71,-0.054235795378800335],[117,260,72,-0.04839574712313249],[117,260,73,-0.031875708531185896],[117,260,74,-0.02621823604476068],[117,260,75,-0.034490950947280975],[117,260,76,-0.031199516031294443],[117,260,77,-0.016247283077989595],[117,260,78,-0.010769844336006204],[117,260,79,-0.01529182344201502],[117,261,64,-0.02448720341030649],[117,261,65,-0.02306399216099153],[117,261,66,-0.024656638973474247],[117,261,67,-0.027499630392431997],[117,261,68,-0.02876669538075258],[117,261,69,-0.03300722689429982],[117,261,70,-0.04432635743396948],[117,261,71,-0.053353535192957845],[117,261,72,-0.04747893613499771],[117,261,73,-0.031183430718277096],[117,261,74,-0.025570129511677867],[117,261,75,-0.033621672955033675],[117,261,76,-0.030403417439056137],[117,261,77,-0.015751924812872527],[117,261,78,-0.010466685076550965],[117,261,79,-0.014878414163234434],[117,262,64,-0.024038677303503574],[117,262,65,-0.02265011830717334],[117,262,66,-0.0243111851340701],[117,262,67,-0.0270709014178536],[117,262,68,-0.028312872412732004],[117,262,69,-0.03254209323589073],[117,262,70,-0.04372749533767917],[117,262,71,-0.05249324485759097],[117,262,72,-0.04658421473489947],[117,262,73,-0.030510035361802808],[117,262,74,-0.024942599631109143],[117,262,75,-0.032777908830991645],[117,262,76,-0.029632248019758143],[117,262,77,-0.015276656795648347],[117,262,78,-0.010177399458438888],[117,262,79,-0.014478516232981353],[117,263,64,-0.023607420322671283],[117,263,65,-0.022251089600248183],[117,263,66,-0.023973160912758563],[117,263,67,-0.026649786063046594],[117,263,68,-0.027869313117789396],[117,263,69,-0.032088072086455255],[117,263,70,-0.04314324176949409],[117,263,71,-0.051655045400287425],[117,263,72,-0.045711640903847744],[117,263,73,-0.029855417999516416],[117,263,74,-0.02433534879875068],[117,263,75,-0.03195933701673557],[117,263,76,-0.028885633747618898],[117,263,77,-0.014820972725362452],[117,263,78,-0.009901579918125571],[117,263,79,-0.01409185383772201],[117,264,64,-0.023193154980423798],[117,264,65,-0.021866701520445484],[117,264,66,-0.023642670166589407],[117,264,67,-0.02623644145207023],[117,264,68,-0.02743609329105278],[117,264,69,-0.03164527753807273],[117,264,70,-0.04257378363318302],[117,264,71,-0.05083903759063491],[117,264,72,-0.04486124861790752],[117,264,73,-0.029219458786177044],[117,264,74,-0.0237480716165707],[117,264,75,-0.03116562203651971],[117,264,76,-0.02816319123149352],[117,264,77,-0.014384370123834983],[117,264,78,-0.009638826866651627],[117,264,79,-0.013718149695651098],[117,265,64,-0.022795605615739116],[117,265,65,-0.02149674921430466],[117,265,66,-0.02331980783791369],[117,265,67,-0.025831010579025766],[117,265,68,-0.02701327766540213],[117,265,69,-0.031213813321696076],[117,265,70,-0.0420192943101807],[117,265,71,-0.050045302873736285],[117,265,72,-0.0440330488968626],[117,265,73,-0.028602023494302242],[117,265,74,-0.02318045593369243],[117,265,75,-0.030396415748935198],[117,265,76,-0.027464528928393447],[117,265,77,-0.013966351323996599],[117,265,78,-0.009388749234248546],[117,265,79,-0.013357125566655765],[117,266,64,-0.022414499078598046],[117,266,65,-0.02114102808245577],[117,266,66,-0.0230046601785048],[117,266,67,-0.02543362254258049],[117,266,68,-0.02660092025538107],[117,266,69,-0.030793773167173247],[117,266,70,-0.04147993417126073],[117,266,71,-0.04927390433816742],[117,266,72,-0.04322703088693881],[117,266,73,-0.028002964523664426],[117,266,74,-0.02263218387341333],[117,266,75,-0.029651358595129736],[117,266,76,-0.026789248343045854],[117,266,77,-0.013566424411309385],[117,266,78,-0.009150964971221219],[117,266,79,-0.01300850274481944],[117,267,64,-0.02204956538636409],[117,267,65,-0.020799334347639024],[117,267,66,-0.02269730499113832],[117,267,67,-0.025044392810056607],[117,267,68,-0.02619906471975913],[117,267,69,-0.03038524118394944],[117,267,70,-0.04095585111906108],[117,267,71,-0.048524887713394395],[117,267,72,-0.04244316297157544],[117,267,73,-0.02742212191495376],[117,267,74,-0.02210293284286558],[117,267,75,-0.02893008083846375],[117,267,76,-0.026136945209308076],[117,267,77,-0.013184104116999761],[117,267,78,-0.00892510150554412],[117,267,79,-0.012672002532094455],[117,268,64,-0.02170053835105066],[117,268,65,-0.020471465601881355],[117,268,66,-0.022397811886722414],[117,268,67,-0.024663423508192173],[117,268,68,-0.025807744740202795],[117,268,69,-0.029988292260109895],[117,268,70,-0.040447181158402144],[117,268,71,-0.047798282391749033],[117,268,72,-0.041681393904372796],[117,268,73,-0.026859324363237336],[117,268,74,-0.021592376522106754],[117,268,75,-0.028232203790813766],[117,268,76,-0.025507210649596317],[117,268,77,-0.012818912662176175],[117,268,78,-0.008710796157800068],[117,268,79,-0.012347346691903115],[117,269,64,-0.02136715617678304],[117,269,65,-0.02015722133187923],[117,269,66,-0.022106242555065304],[117,269,67,-0.024290803737668773],[117,269,68,-0.02542698441353408],[117,269,69,-0.02960299247742615],[117,269,70,-0.03995404899134404],[117,269,71,-0.04709410247018512],[117,269,72,-0.04094165395852663],[117,269,73,-0.02631439022708484],[117,269,74,-0.02110018582973212],[117,269,75,-0.027557341021090757],[117,269,76,-0.024899632308844392],[117,269,77,-0.012470380552242618],[117,269,78,-0.008507696514273688],[117,269,79,-0.012034257881566349],[117,270,64,-0.02104916202692125],[117,270,65,-0.019856403421769742],[117,270,66,-0.021822651047385445],[117,270,67,-0.023926609908522863],[117,270,68,-0.025056798655096954],[117,270,69,-0.02922939954009155],[117,270,70,-0.039476568633956405],[117,270,71,-0.0464123478071856],[117,270,72,-0.04022385608726875],[117,270,73,-0.02578712852948764],[117,270,74,-0.020626029862407164],[117,270,75,-0.026905099541906296],[117,270,76,-0.024313795459868993],[117,270,77,-0.012138047321345628],[117,270,78,-0.008315460759182294],[117,270,79,-0.01173246006260086],[117,271,64,-0.020746304560427153],[117,271,65,-0.01956881663256287],[117,271,66,-0.021547084068650003],[117,271,67,-0.023570906093541885],[117,271,68,-0.024697193610759664],[117,271,69,-0.028867563214820424],[117,271,70,-0.039014844051772524],[117,271,71,-0.04575300509031078],[117,271,72,-0.0395278970900242],[117,271,73,-0.025277339946923764],[117,271,74,-0.020169576805989894],[117,271,75,-0.026275080970660378],[117,271,76,-0.02374928407735208],[117,271,77,-0.011821462226878106],[117,271,78,-0.008133757967158215],[117,271,79,-0.011441678888040752],[117,272,64,-0.020458338437194478],[117,272,65,-0.019294269057625317],[117,272,66,-0.021279581277864553],[117,272,67,-0.023223744396796094],[117,272,68,-0.024348167075142656],[117,272,69,-0.0285175257800286],[117,272,70,-0.03856896981095164],[117,272,71,-0.04511604891005138],[117,272,72,-0.03885365877923124],[117,272,73,-0.02478481778318441],[117,272,74,-0.019730494816206028],[117,272,75,-0.025666882661684567],[117,272,76,-0.02320568187799499],[117,272,77,-0.011520184894343257],[117,272,78,-0.00796226835722486],[117,272,79,-0.011161642066065812],[117,273,64,-0.020185024792147392],[117,273,65,-0.019032572553676505],[117,273,66,-0.021020175594432994],[117,273,67,-0.02288516533447662],[117,273,68,-0.024009708913688303],[117,273,69,-0.028179322481816302],[117,273,70,-0.03813903174218985],[117,273,71,-0.044501442835789634],[117,273,72,-0.03820100914298982],[117,273,73,-0.024309348924814803],[117,273,74,-0.01930845286710203],[117,273,75,-0.025080098806421855],[117,273,76,-0.022682573324727815],[117,273,77,-0.011233785913126768],[117,273,78,-0.0078006835095978415],[117,273,79,-0.010892079699324365],[117,274,64,-0.019926131678032585],[117,274,65,-0.0187835431468619],[117,274,66,-0.02076889350875238],[117,274,67,-0.02255519822527122],[117,274,68,-0.02368180148625815],[117,274,69,-0.027852981994528597],[117,274,70,-0.03772510761448972],[117,274,71,-0.04390914048985752],[117,274,72,-0.0375698034989525],[117,274,73,-0.023850714775276],[117,274,74,-0.018903121565769156],[117,274,75,-0.02451432149896526],[117,274,76,-0.022179544593177235],[117,274,77,-0.010961847383964923],[117,274,78,-0.00764870654674357],[117,274,79,-0.010632724599455275],[117,275,64,-0.019681434476884103],[117,275,65,-0.018547001413516437],[117,275,66,-0.020525755395221643],[117,275,67,-0.022233861587561996],[117,275,68,-0.023364420069990132],[117,275,69,-0.027538526883690198],[117,275,70,-0.037327267815934366],[117,275,71,-0.043339086615835895],[117,275,72,-0.03695988563510962],[117,275,73,-0.023408692165172544],[117,275,74,-0.018514173932075297],[117,275,75,-0.023969141764612685],[117,275,76,-0.021696184498902333],[117,275,77,-0.010703963419086875],[117,275,78,-0.0075060522801658845],[117,275,79,-0.010383312576398181],[117,276,64,-0.01945071628020985],[117,276,65,-0.018322772835291677],[117,276,66,-0.020290775825872933],[117,276,67,-0.021921163540787537],[117,276,68,-0.023057533279202326],[117,276,69,-0.027235974069148263],[117,276,70,-0.03694557603866963],[117,276,71,-0.04279121813740994],[117,276,72,-0.03637108893336274],[117,276,73,-0.022983054236121576],[117,276,74,-0.01814128614237087],[117,276,75,-0.023444150549413567],[117,276,76,-0.02123208538419613],[117,276,77,-0.01045974059619213],[117,276,78,-0.007372447324441139],[117,276,79,-0.010143582702173142],[117,277,64,-0.0192337682380086],[117,277,65,-0.018110688128379036],[117,277,66,-0.02006396388288674],[117,277,67,-0.02161710220840417],[117,277,68,-0.022761103480212614],[117,277,69,-0.0269453352863181],[117,277,70,-0.03658008996537353],[117,277,71,-0.04226546520428194],[117,277,72,-0.03580323747204066],[117,277,73,-0.022573571296082357],[117,277,74,-0.017784138236369155],[117,277,75,-0.02293893966900736],[117,277,76,-0.02078684396354092],[117,277,77,-0.010228798367586618],[117,277,78,-0.007247630180048568],[117,277,79,-0.009913277548898309],[117,278,64,-0.019030389876747277],[117,278,65,-0.017910583546581243],[117,278,66,-0.01984532346827463],[117,278,67,-0.021321666119948093],[117,278,68,-0.02247508719899286],[117,278,69,-0.02666661754345477],[117,278,70,-0.03623086195454647],[117,278,71,-0.041761752221799044],[117,278,72,-0.03525614710374772],[117,278,73,-0.0221800116441757],[117,278,74,-0.017442414786595008],[117,278,75,-0.02245310271534385],[117,278,76,-0.02036006212705917],[117,278,77,-0.010010769425922222],[117,278,78,-0.007131351286536544],[117,278,79,-0.009692143400877228],[117,279,64,-0.018840389386449587],[117,279,65,-0.017722301158007707],[117,279,66,-0.019634853609055022],[117,279,67,-0.02103483460978581],[117,279,68,-0.02219943551964498],[117,279,69,-0.02639982357292418],[117,279,70,-0.03589793972201996],[117,279,71,-0.04127999886112364],[117,279,72,-0.03472962650517535],[117,279,73,-0.021802142363231924],[117,279,74,-0.01711580552998415],[117,279,75,-0.021986235920161645],[117,279,76,-0.019951347701548147],[117,279,77,-0.009805300028091603],[117,279,78,-0.0070233730475512636],[117,279,79,-0.009479930440650717],[117,280,64,-0.018663583877062934],[117,280,65,-0.017545689095192957],[117,280,66,-0.019432548756304686],[117,280,67,-0.020756578210249288],[117,280,68,-0.02193409447177016],[117,280,69,-0.026144952274508478],[117,280,70,-0.03558136701616958],[117,280,71,-0.04082012104694906],[117,280,72,-0.03422347819576079],[117,280,73,-0.02143973007852089],[117,280,74,-0.01680400596140023],[117,280,75,-0.021537938974381284],[117,280,76,-0.01956031516892481],[117,280,77,-0.00961205027891959],[117,280,78,-0.006923469829227403],[117,280,79,-0.009276392908969661],[117,281,64,-0.018499799604251105],[117,281,65,-0.017380601778423328],[117,281,66,-0.01923839907649543],[117,281,67,-0.020486859036931603],[117,281,68,-0.021679005404854734],[117,281,69,-0.025901999148815566],[117,281,70,-0.03528118428437074],[117,281,71,-0.040382031919912145],[117,281,72,-0.03373749952229602],[117,281,73,-0.0210925416812934],[117,281,74,-0.01650671788898106],[117,281,75,-0.021107815802818675],[117,281,76,-0.019186586342113607],[117,281,77,-0.009430694376345862],[117,281,78,-0.006831427933385784],[117,281,79,-0.009081289238684499],[117,282,64,-0.018348872164735196],[117,282,65,-0.01722690011204418],[117,282,66,-0.019052390733575265],[117,282,67,-0.020225631164024305],[117,282,68,-0.021434105347870738],[117,282,69,-0.025670956718915325],[117,282,70,-0.034997429328310826],[117,282,71,-0.03996564277100295],[117,282,72,-0.03327148360681421],[117,282,73,-0.02076034501593923],[117,282,74,-0.016223649951362443],[117,282,75,-0.020695475293856496],[117,282,76,-0.018829790998596253],[117,282,77,-0.009260920819823042],[117,282,78,-0.006747045546911085],[117,282,79,-0.008894382162578186],[117,283,64,-0.018210646661282026],[117,283,65,-0.017084451653509025],[117,283,66,-0.018874506160305705],[117,283,67,-0.019972840987689075],[117,283,68,-0.021199327352364458],[117,283,69,-0.0254518149383823],[117,283,70,-0.03473013794584958],[117,283,71,-0.03957086394543009],[117,283,72,-0.0328252202553077],[117,283,73,-0.02044290952974074],[117,283,74,-0.015954518096961415],[117,283,75,-0.02030053198394995],[117,283,76,-0.018489567472034816],[117,283,77,-0.009102432583682665],[117,283,78,-0.0066701326686157535],[117,283,79,-0.008715438795211295],[117,284,64,-0.01808497783737601],[117,284,65,-0.016953130754881817],[117,284,66,-0.018704724317399442],[117,284,67,-0.01972842757554819],[117,284,68,-0.020974600817361903],[117,284,69,-0.025244561583961128],[117,284,70,-0.03447934455717656],[117,284,71,-0.03919760571352072],[117,284,72,-0.03239849682502409],[117,284,73,-0.020140006884335832],[117,284,74,-0.01569904602558891],[117,284,75,-0.019922606697032347],[117,284,76,-0.018165563202522064],[117,284,77,-0.008954947257199879],[117,284,78,-0.006600511014788243],[117,284,79,-0.00854423068885408],[117,285,64,-0.017971730181547563],[117,285,65,-0.016832818676460228],[117,285,66,-0.018543020939050206],[117,285,67,-0.01949232300049002],[117,285,68,-0.020759851794488485],[117,285,69,-0.02504918263112036],[117,285,70,-0.03424508281308191],[117,285,71,-0.03884577910636271],[117,285,72,-0.03199109904827899],[117,285,73,-0.019851411528138862],[117,285,74,-0.015456965592751247],[117,285,75,-0.019561327139073024],[117,285,76,-0.017857435246149463],[117,285,77,-0.00881819715305727],[117,285,78,-0.006538013904513075],[117,285,79,-0.008380533863591286],[117,286,64,-0.01787077800126543],[117,286,65,-0.01672340367213651],[117,286,66,-0.018389368763492727],[117,286,67,-0.019264452657094304],[117,286,68,-0.020555003271764582],[117,286,69,-0.024865662610806426],[117,286,70,-0.034027386183224206],[117,286,71,-0.03851529671401263],[117,286,72,-0.03160281181091192],[117,286,73,-0.019576901229090792],[117,286,74,-0.015228017177070407],[117,286,75,-0.019216328448215848],[117,286,76,-0.017564850744714356],[117,286,77,-0.008691929385868708],[117,286,78,-0.006482486125738832],[117,286,79,-0.008224128811697382],[117,287,64,-0.017782005466201147],[117,287,65,-0.016624781046036444],[117,287,66,-0.01824373774726747],[117,287,67,-0.019044735559084352],[117,287,68,-0.020359975434595636],[117,287,69,-0.02469398494574831],[117,287,70,-0.033826288522332874],[117,287,71,-0.03820607344419236],[117,287,72,-0.03123341988366997],[117,287,73,-0.019316257567203312],[117,287,74,-0.015011950011296652],[117,287,75,-0.01888725370106726],[117,287,76,-0.017287487356474746],[117,287,77,-0.008575905922341797],[117,287,78,-0.006433783782922167],[117,287,79,-0.008074800476362968],[117,288,64,-0.017705306620574773],[117,288,65,-0.01653685317989621],[117,288,66,-0.018106095261899498],[117,288,67,-0.018833084616315804],[117,288,68,-0.020174685902525264],[117,288,69,-0.0245341322646961],[117,288,70,-0.03364182461233317],[117,288,71,-0.037918027239480796],[117,288,72,-0.030882708604950324],[117,288,73,-0.019069266386445145],[117,288,74,-0.014808522477416312],[117,288,75,-0.018573754375831773],[117,288,76,-0.017025033648944237],[117,288,77,-0.0084699036045711],[117,288,78,-0.006391774126932296],[117,288,79,-0.00793233820484044],[117,289,64,-0.017640583783817124],[117,289,65,-0.016459529000362124],[117,289,66,-0.017976406852725908],[117,289,67,-0.01862940752897717],[117,289,68,-0.019999049210965344],[117,289,69,-0.024386084316107448],[117,289,70,-0.03347402716330704],[117,289,71,-0.03765107592211284],[117,289,72,-0.030550461608869213],[117,289,73,-0.018835716674778596],[117,289,74,-0.014617501408382038],[117,289,75,-0.01827548959639204],[117,289,76,-0.016777188184773643],[117,289,77,-0.008373712959769651],[117,289,78,-0.006356334247541321],[117,289,79,-0.007796534440669821],[117,290,64,-0.01758773473642844],[117,290,65,-0.01639271957136597],[117,290,66,-0.01785464091661717],[117,290,67,-0.018433612047878547],[117,290,68,-0.019832971146904542],[117,290,69,-0.024249799262494084],[117,290,70,-0.0333228992584433],[117,290,71,-0.0374051072761065],[117,290,72,-0.03023643821068888],[117,290,73,-0.01861538865662005],[117,290,74,-0.014438654578566459],[117,290,75,-0.01799211702780783],[117,290,76,-0.016543649627064953],[117,290,77,-0.008287128654741209],[117,290,78,-0.006327341947664205],[117,290,79,-0.007667174827106988],[117,291,64,-0.017546659080517328],[117,291,65,-0.01633633993132026],[117,291,66,-0.017740765986546038],[117,291,67,-0.01824560320324801],[117,291,68,-0.01967635199454604],[117,291,69,-0.024125224235111865],[117,291,70,-0.0331884301028026],[117,291,71,-0.03717999628488468],[117,291,72,-0.029940386503045268],[117,291,73,-0.018408060598010628],[117,291,74,-0.014271754804451578],[117,291,75,-0.01772329806386236],[117,291,76,-0.01632412231599701],[117,291,77,-0.008209954497670358],[117,291,78,-0.006304680433750633],[117,291,79,-0.007544043611297659],[117,292,64,-0.017517265461776853],[117,292,65,-0.016290311388934168],[117,292,66,-0.017634748020831398],[117,292,67,-0.018065280420324875],[117,292,68,-0.01952909007124806],[117,292,69,-0.024012306727427105],[117,292,70,-0.03307061199597558],[117,292,71,-0.03697562368437303],[117,292,72,-0.029662057481209286],[117,292,73,-0.018213516248349083],[117,292,74,-0.014116584543042402],[117,292,75,-0.01746870359362201],[117,292,76,-0.016118322434676514],[117,292,77,-0.008142008922188786],[117,292,78,-0.006288243350828581],[117,292,79,-0.0074269293354141145],[117,293,64,-0.017499471368121425],[117,293,65,-0.01625456137243419],[117,293,66,-0.01753655050798653],[117,293,67,-0.01789253769112152],[117,293,68,-0.019391081791017728],[117,293,69,-0.023910994682100097],[117,293,70,-0.032969440585216454],[117,293,71,-0.036791876288671206],[117,293,72,-0.029401205341377874],[117,293,73,-0.018031545018388873],[117,293,74,-0.013972935973899252],[117,293,75,-0.017228014211435497],[117,293,76,-0.015925978171672087],[117,293,77,-0.008083124837980562],[117,293,78,-0.006277934470676518],[117,293,79,-0.007315624595125071],[117,294,64,-0.01749320281777721],[117,294,65,-0.01622902321591588],[117,294,66,-0.01744613456921684],[117,294,67,-0.017727263745196033],[117,294,68,-0.019262221662474623],[117,294,69,-0.023821236439887664],[117,294,70,-0.032884914925378594],[117,294,71,-0.03662864709115291],[117,294,72,-0.0291575875915253],[117,294,73,-0.017861942044310342],[117,294,74,-0.013840611001344795],[117,294,75,-0.01700092033286335],[117,294,76,-0.015746829791566747],[117,294,77,-0.008033149405172859],[117,294,78,-0.006273667312435152],[117,294,79,-0.007209925718287626],[117,295,64,-0.017498394004547807],[117,295,65,-0.01621363590422947],[117,295,66,-0.01736345903138691],[117,295,67,-0.017569342190144693],[117,295,68,-0.019142402252063807],[117,295,69,-0.023742980653550474],[117,295,70,-0.03281703749852788],[117,295,71,-0.03648583530768571],[117,295,72,-0.02893096510151729],[117,295,73,-0.017704508204606045],[117,295,74,-0.013719421218870492],[117,295,75,-0.01678712226901304],[117,295,76,-0.015580629670113798],[117,295,77,-0.007991943784977276],[117,295,78,-0.006275364744315918],[117,295,79,-0.007109632418109919],[117,296,64,-0.017514986898483735],[117,296,65,-0.016208343774692636],[117,296,66,-0.017288480469321296],[117,296,67,-0.01741865162105062],[117,296,68,-0.01903151411116213],[117,296,69,-0.02367617616483398],[117,296,70,-0.032765814190765415],[117,296,71,-0.03636334635941868],[117,296,72,-0.02872110209091591],[117,296,73,-0.01755905008901875],[117,296,74,-0.013609187835624972],[117,296,75,-0.016586330260051144],[117,296,76,-0.015427142294662544],[117,296,77,-0.007959382866457093],[117,296,78,-0.006282958565286839],[117,296,79,-0.007014547420176136],[117,297,64,-0.0175429308000016],[117,297,65,-0.016213096173774366],[117,297,66,-0.01722115321632823],[117,297,67,-0.017275065698221927],[117,297,68,-0.018929445665750447],[117,297,69,-0.023620771842595072],[117,297,70,-0.0327312542237895],[117,297,71,-0.03626109179253291],[117,297,72,-0.02852776605289408],[117,297,73,-0.017425379918704662],[117,297,74,-0.013509741564751673],[117,297,75,-0.016398264468627556],[117,297,76,-0.015286144230443062],[117,297,77,-0.00793535496906533],[117,297,78,-0.006296389065392775],[117,297,79,-0.00692447606265642],[117,298,64,-0.017582181914109596],[117,298,65,-0.01622784713475947],[117,298,66,-0.017161429409122082],[117,298,67,-0.017138453259177067],[117,298,68,-0.018836083133169503],[117,298,69,-0.023576716445280477],[117,298,70,-0.032713370103179734],[117,298,71,-0.03617898919611397],[117,298,72,-0.028350727675867084],[117,298,73,-0.017303315479331803],[117,298,74,-0.013420922535275678],[117,298,75,-0.016222654995418962],[117,298,76,-0.01515742411421065],[117,298,77,-0.007919761580879857],[117,298,78,-0.0063156046232048695],[117,298,79,-0.006839225928584034],[117,299,64,-0.017632715950082818],[117,299,65,-0.01625256793065789],[117,299,66,-0.017109271775158637],[117,299,67,-0.017008691030214674],[117,299,68,-0.018751322891486837],[117,299,69,-0.02354397079802346],[117,299,70,-0.032712189743024714],[117,299,71,-0.03611697415210928],[117,299,72,-0.02818977267726954],[117,299,73,-0.017192691866424435],[117,299,74,-0.013342591916575003],[117,299,75,-0.016059253501219308],[117,299,76,-0.015040794158839516],[117,299,77,-0.007912528519480063],[117,299,78,-0.0063405726362259105],[117,299,79,-0.0067586177221367096],[117,300,64,-0.017694545580529342],[117,300,65,-0.016287264400310756],[117,300,66,-0.017064671124447386],[117,300,67,-0.016885680961955498],[117,300,68,-0.01867508838531326],[117,300,69,-0.023522524426317873],[117,300,70,-0.03272777296536945],[117,300,71,-0.03607501647080806],[117,300,72,-0.02804471785735515],[117,300,73,-0.017093377402622345],[117,300,74,-0.0132746476645885],[117,300,75,-0.015907848892626204],[117,300,76,-0.014936105669928371],[117,300,77,-0.007913621056946634],[117,300,78,-0.006371294364013312],[117,300,79,-0.006682500006358966],[117,301,64,-0.017767698173531042],[117,301,65,-0.016331955006134827],[117,301,66,-0.017027625035717333],[117,301,67,-0.016769329194336817],[117,301,68,-0.018607309071877666],[117,301,69,-0.0235123746325496],[117,301,70,-0.0327601908267984],[117,301,71,-0.03605309961350848],[117,301,72,-0.027915390708343035],[117,301,73,-0.01700525347765348],[117,301,74,-0.013217004538136953],[117,301,75,-0.015768247600073736],[117,301,76,-0.014843229463701398],[117,301,77,-0.007923024239173515],[117,301,78,-0.006407785237124551],[117,301,79,-0.006610729661792095],[117,302,64,-0.017852211943856253],[117,302,65,-0.016386667132214535],[117,302,66,-0.016998134625323243],[117,302,67,-0.0166595429348244],[117,302,68,-0.018547917102096627],[117,302,69,-0.02351352313951508],[117,302,70,-0.032809522344602535],[117,302,71,-0.03605121734277777],[117,302,72,-0.02780162610899481],[117,302,73,-0.016928211350657335],[117,302,74,-0.013169590955571017],[117,302,75,-0.01564027057146837],[117,302,76,-0.014762052882725378],[117,302,77,-0.007940739690265545],[117,302,78,-0.006450071540276319],[117,302,79,-0.006543168617192985],[117,303,64,-0.017948135591628993],[117,303,65,-0.016451436834594248],[117,303,66,-0.016976204752674248],[117,303,67,-0.01655623074129682],[117,303,68,-0.018496847360267497],[117,303,69,-0.02352597605321503],[117,303,70,-0.03287585449948019],[117,303,71,-0.03606937359770976],[117,303,72,-0.027703266219757702],[117,303,73,-0.016862152142261312],[117,303,74,-0.013132349026562448],[117,303,75,-0.015523753419746442],[117,303,76,-0.01469247994436907],[117,303,77,-0.007966785526968627],[117,303,78,-0.006498190180300209],[117,303,79,-0.006479683645545418],[117,304,64,-0.018055527926815428],[117,304,65,-0.01652630858015308],[117,304,66,-0.01696184423733524],[117,304,67,-0.016459302821545424],[117,304,68,-0.01845403750810488],[117,304,69,-0.023549743823731782],[117,304,70,-0.032959282225632984],[117,304,71,-0.036107582335952945],[117,304,72,-0.027620160351828942],[117,304,73,-0.016806986819238996],[117,304,74,-0.013105234590074758],[117,304,75,-0.01541854658346369],[117,304,76,-0.01463443150598716],[117,304,77,-0.008001196289206942],[117,304,78,-0.00655218846682731],[117,304,79,-0.0064201461763105025],[117,305,64,-0.018174457477808062],[117,305,65,-0.016611334972623883],[117,305,66,-0.016955066088442064],[117,305,67,-0.016368671351009556],[117,305,68,-0.018419428033602178],[117,305,69,-0.023584841203964847],[117,305,70,-0.03305990838738938],[117,305,71,-0.03616586734093367],[117,305,72,-0.02755216480982434],[117,305,73,-0.016762636171725895],[117,305,74,-0.013088217258798244],[117,305,75,-0.01532451550225103],[117,305,76,-0.014587845448211272],[117,305,77,-0.008044022886121983],[117,305,78,-0.006612123904391186],[117,305,79,-0.00636443212453024],[117,306,64,-0.018305002082325293],[117,306,65,-0.016706576464262365],[117,306,66,-0.016955887747153734],[117,306,67,-0.01628425081050128],[117,306,68,-0.01839296230530091],[117,306,69,-0.02363128720610757],[117,306,70,-0.03317784374159587],[117,306,71,-0.036244261992717804],[117,306,72,-0.027499142707761215],[117,306,73,-0.016729030782946682],[117,306,74,-0.01308128047029041],[117,306,75,-0.015241540808987732],[117,306,76,-0.014552676877726852],[117,306,77,-0.008095332556908962],[117,306,78,-0.00667806399460375],[117,306,79,-0.006312421737509316],[117,307,64,-0.018447248458769903],[117,307,65,-0.016812101051620166],[117,307,66,-0.01696433134296361],[117,307,67,-0.01620595834583879],[117,307,68,-0.018374586632676576],[117,307,69,-0.02368910505587947],[117,307,70,-0.033313206885131924],[117,307,71,-0.036342809000980934],[117,307,72,-0.027460963758109563],[117,307,73,-0.01670611099139092],[117,307,74,-0.01308442154502256],[117,307,75,-0.015169518540565377],[117,307,76,-0.014528898350904013],[117,307,77,-0.008155208845630093],[117,307,78,-0.006750086047009491],[117,307,79,-0.006263999459917627],[117,308,64,-0.018601291756151637],[117,308,65,-0.016927983953840136],[117,308,66,-0.016980423964780784],[117,308,67,-0.01613371415144728],[117,308,68,-0.01836425033346203],[117,308,69,-0.02375832214465475],[117,308,70,-0.03346612418703192],[117,308,71,-0.036461560098588704],[117,308,72,-0.027437504033698105],[117,308,73,-0.0166938268453554],[117,308,74,-0.013097651751494894],[117,308,75,-0.01510836036913192],[117,308,76,-0.014516500119646515],[117,308,77,-0.008223751589093818],[117,308,78,-0.006828276997204775],[117,308,79,-0.006219053818283593],[117,309,64,-0.01876723508062119],[117,309,65,-0.017054307271842897],[117,309,66,-0.01700419794776248],[117,309,67,-0.016067441880108058],[117,309,68,-0.01836190580882971],[117,309,69,-0.0238389699797456],[117,309,70,-0.033636729704808736],[117,309,71,-0.036600575694308586],[117,309,72,-0.027428645702281637],[117,309,73,-0.0166921380497324],[117,309,74,-0.013120996378525587],[117,309,75,-0.015057993855698415],[117,309,76,-0.014515490400791677],[117,309,77,-0.008301076916773911],[117,309,78,-0.006912733230773226],[117,309,79,-0.0061774773259624174],[117,310,64,-0.018945188996621412],[117,310,65,-0.01719115962673536],[117,310,66,-0.017035691176950033],[117,310,67,-0.01600706908115551],[117,310,68,-0.018367508627456692],[117,310,69,-0.02393108413322094],[117,310,70,-0.03382516508469155],[117,310,71,-0.03675992448319744],[117,310,72,-0.02743427673359309],[117,310,73,-0.016701013904885334],[117,310,74,-0.013154494814762694],[117,310,75,-0.015018362727977708],[117,310,76,-0.014525895670359409],[117,310,77,-0.008387317261634095],[117,310,78,-0.0070035604115605],[117,310,79,-0.006139166409780339],[117,311,64,-0.019135271000641323],[117,311,65,-0.017338635775747666],[117,311,66,-0.017074947408824016],[117,311,67,-0.015952527669525582],[117,311,68,-0.018381017619593605],[117,311,69,-0.02403470418976529],[117,311,70,-0.034031579445617986],[117,311,71,-0.03693968301324348],[117,311,72,-0.02745429057872814],[117,311,73,-0.016720433237415507],[117,311,74,-0.013198200635415682],[117,311,75,-0.014989427184312214],[117,311,76,-0.014547760983917244],[117,311,77,-0.008482621380626809],[117,311,78,-0.007100873312803672],[117,311,79,-0.006104021359685392],[117,312,64,-0.019337604965527215],[117,312,65,-0.017496836203970297],[117,312,66,-0.017122016611937057],[117,312,67,-0.015903754428140147],[117,312,68,-0.0184023949823395],[117,312,69,-0.024149873694195443],[117,312,70,-0.034256129246929584],[117,312,71,-0.03713993520685962],[117,312,72,-0.027488585821707934],[117,312,73,-0.016750384322565592],[117,312,74,-0.013252181696128084],[117,312,75,-0.01497116422550096],[117,312,76,-0.014581150324263732],[117,312,77,-0.008587154383517313],[117,312,78,-0.007204795649604309],[117,312,79,-0.006071946302840782],[117,313,64,-0.01955232055329256],[117,313,65,-0.01766586669013966],[117,313,66,-0.017176955327816077],[117,313,67,-0.015860691546174564],[117,313,68,-0.018431606397398725],[117,313,69,-0.024276640099360113],[117,313,70,-0.03449897813983688],[117,313,71,-0.03736077183585423],[117,313,72,-0.027537065803071446],[117,313,73,-0.016790864797947582],[117,313,74,-0.013316520233842824],[117,313,75,-0.014963568016289635],[117,313,76,-0.014626146977569813],[117,313,77,-0.008701097768578178],[117,313,78,-0.007315459911226094],[117,313,79,-0.006042849203712003],[117,314,64,-0.019779552594379086],[117,314,65,-0.01784583784471605],[117,314,66,-0.017239827053356],[117,314,67,-0.01582328719581142],[117,314,68,-0.01846862116267131],[117,314,69,-0.024415054715267552],[117,314,70,-0.0347602968028426],[117,314,71,-0.03760228994854559],[117,314,72,-0.027599638215356975],[117,314,73,-0.016841881568228696],[117,314,74,-0.013391312974440853],[117,314,75,-0.014966650278228789],[117,314,76,-0.01468285393904599],[117,314,77,-0.00882464946359798],[117,314,78,-0.007433007191698656],[117,314,79,-0.006016641891813439],[117,315,64,-0.020019440431321128],[117,315,65,-0.018036864618479295],[117,315,66,-0.01731070264592628],[117,315,67,-0.015791496150098006],[117,315,68,-0.018513412339074616],[117,315,69,-0.024565172660376205],[117,315,70,-0.03504026276141302],[117,315,71,-0.037864592247706226],[117,315,72,-0.02767621467031488],[117,315,73,-0.016903450700327876],[117,315,74,-0.01347667124684089],[117,315,75,-0.014980440715514886],[117,315,76,-0.014751394349099766],[117,315,77,-0.008958023870530255],[117,315,78,-0.007557587017199122],[117,315,79,-0.0059932401188730585],[117,316,64,-0.02027212722479156],[117,316,65,-0.018239065779869355],[117,316,66,-0.017389660752398676],[117,316,67,-0.01576528044452363],[117,316,68,-0.018565956914035328],[117,316,69,-0.024727052816081025],[117,316,70,-0.03533906019229832],[117,316,71,-0.03814778641807003],[117,316,72,-0.027766710237690787],[117,316,73,-0.01697559730860409],[117,316,74,-0.01357272110316085],[117,316,75,-0.015004987475333048],[117,316,76,-0.014831911960844307],[117,316,77,-0.009101451912004378],[117,316,78,-0.007689357168690226],[117,316,79,-0.005972563647271408],[117,317,64,-0.02053775922005346],[117,317,65,-0.018452563359314226],[117,317,66,-0.017476788263288363],[117,317,67,-0.015744610084914953],[117,317,68,-0.018626235983128556],[117,317,69,-0.024900757785521116],[117,317,70,-0.035656879713011944],[117,317,71,-0.03845198440217466],[117,317,72,-0.02787104295540669],[117,317,73,-0.017058355429439148],[117,317,74,-0.01367960344444913],[117,317,75,-0.015040357644104692],[117,317,76,-0.014924571639694063],[117,317,77,-0.009255181077813866],[117,317,78,-0.007828483498305842],[117,317,79,-0.005954536371699322],[117,318,64,-0.020816484971885388],[117,318,65,-0.018677482058799277],[117,318,66,-0.01757218079314139],[117,318,67,-0.015729463804180943],[117,318,68,-0.01869423495134468],[117,318,69,-0.025086353857904458],[117,318,70,-0.03599391815706906],[117,318,71,-0.03877730162335676],[117,318,72,-0.02798913331094853],[117,318,73,-0.017151767884526086],[117,318,74,-0.013797474151384544],[117,318,75,-0.015086637780899593],[117,318,76,-0.015029559895635588],[117,318,77,-0.00941947546938646],[117,318,78,-0.00797513973798482],[117,318,79,-0.005939086476048621],[117,319,64,-0.021108460501066004],[117,319,65,-0.018913953887405813],[117,319,66,-0.017675933818394156],[117,319,67,-0.015719821578924265],[117,319,68,-0.0187699468390107],[117,319,69,-0.02528391438894338],[117,319,70,-0.03635037584765108],[117,319,71,-0.03912385472186931],[117,319,72,-0.028120900811883877],[117,319,73,-0.017255880560478328],[117,319,74,-0.01392649875957805],[117,319,75,-0.015143925855626468],[117,319,76,-0.015147081322047314],[117,319,77,-0.009594621870618552],[117,319,78,-0.008129518263518693],[117,319,79,-0.005926153666623597],[118,-64,64,-0.17686712900808949],[118,-64,65,-0.08141606791822889],[118,-64,66,-0.07108974600003229],[118,-64,67,-0.07722277083607336],[118,-64,68,0.0017143083203577435],[118,-64,69,0.025248224000554546],[118,-64,70,0.04125778695210043],[118,-64,71,0.08565329942129073],[118,-64,72,0.03751775043946489],[118,-64,73,-0.15216292505926518],[118,-64,74,-0.1928714400945347],[118,-64,75,-0.15362280579282614],[118,-64,76,-0.17824967624587712],[118,-64,77,-0.09530905895761595],[118,-64,78,0.023661363645971156],[118,-64,79,-0.023867706505393063],[118,-63,64,-0.17315828844236802],[118,-63,65,-0.07947602731985365],[118,-63,66,-0.06888015832271537],[118,-63,67,-0.07454416280160649],[118,-63,68,0.002706539459817171],[118,-63,69,0.02539029180684906],[118,-63,70,0.04081742089676469],[118,-63,71,0.08435354235439042],[118,-63,72,0.03739419794611097],[118,-63,73,-0.14895757591411568],[118,-63,74,-0.1893565138568139],[118,-63,75,-0.15118622644296675],[118,-63,76,-0.17558998096740305],[118,-63,77,-0.09468586272397068],[118,-63,78,0.022006304738955568],[118,-63,79,-0.024665290471746162],[118,-62,64,-0.16953891445825525],[118,-62,65,-0.0776133042180627],[118,-62,66,-0.06676481510706578],[118,-62,67,-0.0719791802606108],[118,-62,68,0.0036052937408814632],[118,-62,69,0.025471783056134067],[118,-62,70,0.04033751021447738],[118,-62,71,0.08302844760172484],[118,-62,72,0.03723543430418231],[118,-62,73,-0.14582548665262884],[118,-62,74,-0.18592894176686453],[118,-62,75,-0.14881250971350757],[118,-62,76,-0.17296630237402408],[118,-62,77,-0.0940536426782993],[118,-62,78,0.02037574864726562],[118,-62,79,-0.02545320245464651],[118,-61,64,-0.16600686919057242],[118,-61,65,-0.07582514407180416],[118,-61,66,-0.06474016864848396],[118,-61,67,-0.06952366357243892],[118,-61,68,0.0044147746063078535],[118,-61,69,0.02549579414235946],[118,-61,70,0.03982037271792238],[118,-61,71,0.08168004936502718],[118,-61,72,0.0370432740033192],[118,-61,73,-0.1427643254247582],[118,-61,74,-0.18258539489739792],[118,-61,75,-0.14649898862663147],[118,-61,76,-0.17037788458330777],[118,-61,77,-0.09341282488745016],[118,-61,78,0.018769894581872466],[118,-61,79,-0.02623070772737899],[118,-60,64,-0.16255996738363926],[118,-60,65,-0.07410877128501642],[118,-60,66,-0.06280268123231289],[118,-60,67,-0.06717348035065855],[118,-60,68,0.0051391248517415715],[118,-60,69,0.025465344877669795],[118,-60,70,0.0392682104484688],[118,-60,71,0.08031022239245351],[118,-60,72,0.036819393256463676],[118,-60,73,-0.1397718261980023],[118,-60,74,-0.1793225860154353],[118,-60,75,-0.14424299825063994],[118,-60,76,-0.16782389318499888],[118,-60,77,-0.09276376294214778],[118,-60,78,0.01718894371732444],[118,-60,79,-0.026997077737324425],[118,-59,64,-0.15919599762299275],[118,-59,65,-0.07246144575164071],[118,-59,66,-0.060948890665119965],[118,-59,67,-0.06492458597934811],[118,-59,68,0.005782370733301039],[118,-59,69,0.025383357202817036],[118,-59,70,0.03868315121677037],[118,-59,71,0.07892076620622397],[118,-59,72,0.036565408653991],[118,-59,73,-0.13684574575418668],[118,-59,74,-0.17613726708457375],[118,-59,75,-0.14204190413565201],[118,-59,76,-0.16530344794299037],[118,-59,77,-0.09210675424894137],[118,-59,78,0.015633095542834378],[118,-59,79,-0.027751585118972983],[118,-58,64,-0.15591272454037394],[118,-58,65,-0.07088046328864546],[118,-58,66,-0.05917541042025108],[118,-58,67,-0.06277302429953857],[118,-58,68,0.006348422645990653],[118,-58,69,0.02525265652379891],[118,-58,70,0.038067249791658465],[118,-58,71,0.07751340638864038],[118,-58,72,0.03628287776207738],[118,-58,73,-0.13398386412866162],[118,-58,74,-0.17302622900454162],[118,-58,75,-0.13989310155567858],[118,-58,76,-0.16281562352374562],[118,-58,77,-0.09144203994763603],[118,-58,78,0.014102549699053283],[118,-58,79,-0.028493502210589706],[118,-57,64,-0.1527078909115654],[118,-57,65,-0.06936315584574866],[118,-57,66,-0.057478929513891566],[118,-57,67,-0.06071492796691866],[118,-57,68,0.006841076190902343],[118,-57,69,0.025075973334298483],[118,-57,70,0.037422489328507696],[118,-57,71,0.07608979611721514],[118,-57,72,0.03597329986715139],[118,-57,73,-0.1311839850373263],[118,-57,74,-0.16998630123536432],[118,-57,75,-0.1377940146229427],[118,-57,76,-0.1603594502569029],[118,-57,77,-0.09076980486984779],[118,-57,78,0.012597507946823005],[118,-57,79,-0.029222099434063082],[118,-56,64,-0.14957921965897922],[118,-56,65,-0.06790689153020657],[118,-56,66,-0.055856212158591066],[118,-56,67,-0.05874651852765578],[118,-56,68,0.007264013581392992],[118,-56,69,0.02485594509528778],[118,-56,70,0.036750783041223166],[118,-56,71,0.07465151797258672],[118,-56,72,0.0356381168939283],[118,-56,73,-0.1284439362800241],[118,-56,74,-0.16701435132694117],[118,-56,75,-0.13574209530977116],[118,-56,76,-0.1579339149480245],[118,-56,77,-0.09009017754896949],[118,-56,78,0.011118176250420574],[118,-56,79,-0.029936643557550605],[118,-55,64,-0.1465244157632102],[118,-55,65,-0.06650907445931965],[118,-55,66,-0.05430409721068687],[118,-55,67,-0.056864106231327656],[118,-55,68,0.007620805364846394],[118,-55,69,0.024595118353678003],[118,-55,70,0.03605397610260329],[118,-55,71,0.07320008600328849],[118,-55,72,0.035278714487300314],[118,-55,73,-0.1257615701297511],[118,-55,74,-0.16410728437625965],[118,-55,75,-0.1337348223998242],[118,-55,76,-0.155537961748775],[118,-55,77,-0.08940323028441138],[118,-55,78,0.009664766960227378],[118,-55,79,-0.03063639586236283],[118,-54,64,-0.14354116808875353],[118,-54,65,-0.06516714445381099],[118,-54,66,-0.05281949742812962],[118,-54,67,-0.055064089600043525],[118,-54,68,0.007914912436696696],[118,-54,69,0.024295951082096253],[118,-54,70,0.03533384775798985],[118,-54,71,0.07173694803162906],[118,-54,72,0.03489642324856502],[118,-54,73,-0.12313476371712227],[118,-54,74,-0.16126204243452502],[118,-54,75,-0.13176970039049546],[118,-54,76,-0.15317049309036726],[118,-54,77,-0.08870897926347676],[118,-54,78,0.00823750107954974],[118,-54,79,-0.031320610235720615],[118,-53,64,-0.14062727361648553],[118,-53,65,-0.06387863329818325],[118,-53,66,-0.051399445059181745],[118,-53,67,-0.053343003945407474],[118,-53,68,0.008149695975722205],[118,-53,69,0.02396083813545113],[118,-53,70,0.03459214731964108],[118,-53,71,0.07026355783205727],[118,-53,72,0.0344925549142821],[118,-53,73,-0.12056154318509123],[118,-53,74,-0.15847576939718458],[118,-53,75,-0.12984439630151884],[118,-53,76,-0.15083053362614474],[118,-53,77,-0.08800748140753177],[118,-53,78,0.006836618232550615],[118,-53,79,-0.031988567508320576],[118,-52,64,-0.13778145104894915],[118,-52,65,-0.06264154054579796],[118,-52,66,-0.05004139541181594],[118,-52,67,-0.05169783994741324],[118,-52,68,0.008328474459639237],[118,-52,69,0.023592266940722646],[118,-52,70,0.0338308187992344],[118,-52,71,0.0687818378237034],[118,-52,72,0.03406863724215259],[118,-52,73,-0.11804090125191831],[118,-52,74,-0.15574691009925687],[118,-52,75,-0.12795765918530644],[118,-52,76,-0.14851831704001267],[118,-52,77,-0.08729948690363912],[118,-52,78,0.00546241310473318],[118,-52,79,-0.03263983048837996],[118,-51,64,-0.13500282668489744],[118,-51,65,-0.06145409607228319],[118,-51,66,-0.04874302152619079],[118,-51,67,-0.050125820013229544],[118,-51,68,0.008454501952711618],[118,-51,69,0.02319272501161819],[118,-51,70,0.03305185724434911],[118,-51,71,0.06729388250178468],[118,-51,72,0.03362627494219084],[118,-51,73,-0.11557226793211677],[118,-51,74,-0.15307451955403453],[118,-51,75,-0.12610875469749536],[118,-51,76,-0.14623461496774226],[118,-51,77,-0.08658606169261039],[118,-51,78,0.004115162402937149],[118,-51,79,-0.033274131888263815],[118,-50,64,-0.13229050199345296],[118,-50,65,-0.060314560766060336],[118,-50,66,-0.04750204840506536],[118,-50,67,-0.04862422193912293],[118,-50,68,0.008530941422406443],[118,-50,69,0.02276461831941254],[118,-50,70,0.032257187596370286],[118,-50,71,0.0658017092205666],[118,-50,72,0.033167026894297104],[118,-50,73,-0.11315506994982338],[118,-50,74,-0.15045767759059997],[118,-50,75,-0.12429697951144354],[118,-50,76,-0.1439801625299038],[118,-50,77,-0.08586825100753744],[118,-50,78,0.0027950885264710393],[118,-50,79,-0.03389125471820418],[118,-49,64,-0.12964355356265],[118,-49,65,-0.05922122720416965],[118,-49,66,-0.046316253675688056],[118,-49,67,-0.04719038019409931],[118,-49,68,0.008560862636361044],[118,-49,69,0.02231026975991371],[118,-49,70,0.031448663009652995],[118,-49,71,0.06430725573502545],[118,-49,72,0.032692404452064526],[118,-49,73,-0.11078872897890359],[118,-49,74,-0.14789548608100667],[118,-49,75,-0.12252165871768221],[118,-49,76,-0.14175565551790237],[118,-49,77,-0.0851470770387247],[118,-49,78,0.0015023602780120607],[118,-49,79,-0.03449103071871597],[118,-48,64,-0.12706103537782942],[118,-48,65,-0.05817242126738527],[118,-48,66,-0.04518346895468157],[118,-48,67,-0.04582168791333378],[118,-48,68,0.008547240534466193],[118,-48,69,0.02183191832474082],[118,-48,70,0.030628064060063034],[118,-48,71,0.06281237935850993],[118,-48,72,0.03220387058827405],[118,-48,73,-0.10847266224119566],[118,-48,74,-0.14538706922600275],[118,-48,75,-0.12078214574341936],[118,-48,76,-0.13956175077839245],[118,-48,77,-0.0844235385139387],[118,-48,78,2.3709388745250524E-4],[118,-48,79,-0.035073339311112534],[118,-47,64,-0.12454198106075726],[118,-47,65,-0.0571665036025487],[118,-47,66,-0.04410158101813345],[118,-47,67,-0.04451559864827412],[118,-47,68,0.008492953924089627],[118,-47,69,0.021331718526777697],[118,-47,70,0.029797098182307063],[118,-47,71,0.06131885638026273],[118,-47,72,0.03170283920975501],[118,-47,73,-0.10620628307294246],[118,-47,74,-0.1429315737213214],[118,-47,75,-0.11907782215278272],[118,-47,76,-0.13739906666055512],[118,-47,77,-0.0836986103474332],[118,-47,78,-0.0010006458360825698],[118,-47,79,-0.03563810640581392],[118,-46,64,-0.12208540606399218],[118,-46,65,-0.05620187093432446],[118,-46,66,-0.04306853278315799],[118,-46,67,-0.0432696278808052],[118,-46,68,0.008400784486504949],[118,-46,69,0.020811740068888387],[118,-46,70,0.028957399326184987],[118,-46,71,0.05982838173211435],[118,-46,72,0.031190674635467742],[118,-46,73,-0.1039890014625826],[118,-46,74,-0.140528168815517],[118,-46,75,-0.11740809733926202],[118,-46,76,-0.13526818352474015],[118,-46,77,-0.08297324335686442],[118,-46,78,-0.002210844234599843],[118,-46,79,-0.03618530308144522],[118,-45,64,-0.11969030981530565],[118,-45,65,-0.05527695722884616],[118,-45,66,-0.04208232410735131],[118,-45,67,-0.04208135430910388],[118,-45,68,0.0082734160823029],[118,-45,69,0.020273967744876133],[118,-45,70,0.028110527821813145],[118,-45,71,0.05834256889349093],[118,-45,72,0.030668691231595484],[118,-45,73,-0.10182022456275928],[118,-45,74,-0.13817604626990587],[118,-45,75,-0.1157724081214041],[118,-45,76,-0.1331696443106971],[118,-45,77,-0.08224836404696786],[118,-45,78,-0.003393535424397206],[118,-45,79,-0.03671494414741571],[118,-44,64,-0.11735567780745527],[118,-44,65,-0.05439023471224048],[118,-44,66,-0.041141012413057725],[118,-44,67,-0.04094842091339509],[118,-44,68,0.008113434342929883],[118,-44,69,0.01972030156116785],[118,-44,70,0.027257970443393773],[118,-44,71,0.056862950023425035],[118,-44,72,0.030138153197068647],[118,-44,73,-0.09969935717947118],[118,-44,74,-0.1358744202310698],[118,-44,75,-0.11417021825266525],[118,-44,76,-0.13110395516362405],[118,-44,77,-0.08152487445888416],[118,-44,78,-0.004548800822469666],[118,-44,79,-0.03722708660253452],[118,-43,64,-0.1150804836291132],[118,-43,65,-0.053540214747427456],[118,-43,66,-0.0402427131436127],[118,-43,67,-0.03986853581012728],[118,-43,68,0.007923326535195481],[118,-43,69,0.019152557067573857],[118,-43,70,0.026401140660988066],[118,-43,71,0.05539097630804398],[118,-43,72,0.029600274492788403],[118,-43,73,-0.09762580224109929],[118,-43,74,-0.13362252702601946],[118,-43,75,-0.11260101785599616],[118,-43,76,-0.1290715861161429],[118,-43,77,-0.08080365208393163],[118,-43,78,-0.005676767586525033],[118,-43,79,-0.03772182800195469],[118,-42,64,-0.11286369093289557],[118,-42,65,-0.05272544857270385],[118,-42,66,-0.03938560005877619],[118,-42,67,-0.03883947290320288],[118,-42,68,0.007705481685458299],[118,-42,69,0.01857246588544914],[118,-42,70,0.02554137906973226],[118,-42,71,0.05392801851199586],[118,-42,72,0.029056218907840756],[118,-42,73,-0.09559896124976723],[118,-42,74,-0.13141962488963851],[118,-42,75,-0.11106432279321603],[118,-42,76,-0.1270729718240458],[118,-42,77,-0.08008554984037554],[118,-42,78,-0.0067776069786503],[118,-42,79,-0.038199304744240915],[118,-41,64,-0.11070425533704492],[118,-41,65,-0.051944527906112946],[118,-41,66,-0.03856790537693317],[118,-41,67,-0.03785907234131158],[118,-41,68,0.0074621909498154],[118,-41,69,0.01798167642132699],[118,-41,70,0.024679953985693424],[118,-41,71,0.05247536772199541],[118,-41,72,0.028507100255729684],[118,-41,73,-0.09361823471749786],[118,-41,74,-0.12926499363380406],[118,-41,75,-0.10955967397900329],[118,-41,76,-0.12510851235370388],[118,-41,77,-0.07937139611178784],[118,-41,78,-0.007851532662606794],[118,-41,79,-0.038659690290114256],[118,-40,64,-0.10860112625770085],[118,-40,65,-0.05119608541986094],[118,-40,66,-0.03778791977175831],[118,-40,67,-0.03692524079057024],[118,-40,68,0.007195648216499811],[118,-40,69,0.01738175475407701],[118,-40,70,0.023818062197541776],[118,-40,71,0.05103423627063191],[118,-40,72,0.027953982693620885],[118,-40,73,-0.09168302258944205],[118,-40,74,-0.12715793426716074],[118,-40,75,-0.10808663664890238],[118,-40,76,-0.123178574018935],[118,-40,77,-0.07866199484552361],[118,-40,78,-0.008898798944509054],[118,-40,79,-0.03910319332402642],[118,-39,64,-0.10655324866888626],[118,-39,65,-0.05047879508910541],[118,-39,66,-0.03704399223100133],[118,-39,67,-0.0360359515316831],[118,-39,68,0.0069079509267343745],[118,-39,69,0.01677418568377123],[118,-39,70,0.022956829863343683],[118,-39,71,0.04960575882870098],[118,-39,72,0.027397881157671305],[118,-39,73,-0.08979272465620111],[118,-39,74,-0.12509776857400223],[118,-39,75,-0.10664479959018998],[118,-39,76,-0.12128349026490931],[118,-39,77,-0.07795812570960145],[118,-39,78,-0.009919698966196964],[118,-39,79,-0.03953005586910159],[118,-38,64,-0.10455956478789653],[118,-38,65,-0.04979137241982497],[118,-38,66,-0.03633452978526713],[118,-38,67,-0.03518924439106544],[118,-38,68,0.006601101100126322],[118,-38,69,0.016160373930361283],[118,-38,70,0.02209731354169577],[118,-38,71,0.04819099365422479],[118,-38,72,0.02683976190739102],[118,-38,73,-0.0879467409572156],[118,-38,74,-0.12308383866040555],[118,-38,75,-0.10523377434413161],[118,-38,76,-0.11942356259674973],[118,-38,77,-0.0772605443063677],[118,-38,78,-0.010914562860475355],[118,-38,79,-0.039940551365671526],[118,-37,64,-0.10261901568412454],[118,-37,65,-0.04913257456065232],[118,-37,66,-0.035657997114709704],[118,-37,67,-0.03438322551544367],[118,-37,68,0.006277006550702215],[118,-37,69,0.015541645470353112],[118,-37,70,0.02124050134649065],[118,-37,71,0.04679092398639641],[118,-37,72,0.026280543171994474],[118,-37,73,-0.08614447217706438],[118,-37,74,-0.12111550647534033],[118,-37,75,-0.1038531943877067],[118,-37,76,-0.11759906155041848],[118,-37,77,-0.07656998244124073],[118,-37,78,-0.01188375587703077],[118,-37,79,-0.04033498272310011],[118,-36,64,-0.10073054280951865],[118,-36,65,-0.048501200303528176],[118,-36,66,-0.035012916041390764],[118,-36,67,-0.03361606699929754],[118,-36,68,0.005937482279922803],[118,-36,69,0.014919248999951507],[118,-36,70,0.020387314214879465],[118,-36,71,0.0454064595729613],[118,-36,72,0.025721095891891792],[118,-36,73,-0.08438532003622196],[118,-36,74,-0.11919215331388962],[118,-36,75,-0.10250271430227002],[118,-36,76,-0.11581022770330412],[118,-36,77,-0.07588714844464214],[118,-36,78,-0.012827676487343117],[118,-36,79,-0.04071368035394038],[118,-35,64,-0.09889308944944925],[118,-35,65,-0.047896089978376036],[118,-35,66,-0.034397864915226416],[118,-35,67,-0.03288600637467163],[118,-35,68,0.00558425203296551],[118,-35,69,0.014294357513150354],[118,-35,70,0.01953860727797892],[118,-35,71,0.04403843831953843],[118,-35,72,0.025162244548381302],[118,-35,73,-0.08266868767784002],[118,-35,74,-0.117313179309446],[118,-35,75,-0.10118200893633462],[118,-35,76,-0.11405727272207451],[118,-35,77,-0.07521272754536494],[118,-35,78,-0.013746754476717037],[118,-35,79,-0.041077000199112285],[118,-34,64,-0.097105602092871],[118,-34,65,-0.04731612524691414],[118,-34,66,-0.03381147790123852],[118,-34,67,-0.032191345972693464],[118,-34,68,0.0052189500048711165],[118,-34,69,0.013668069983572045],[118,-34,70,0.018695171324181664],[118,-34,71,0.042687628049711816],[118,-34,72,0.024604768074814914],[118,-34,73,-0.08099398005186959],[118,-34,74,-0.11547800292116953],[118,-34,75,-0.09989077256904194],[118,-34,76,-0.11234038044519337],[118,-34,77,-0.07454738229342578],[118,-34,78,-0.014641449030985845],[118,-34,79,-0.041425321752070594],[118,-33,64,-0.09536703172117159],[118,-33,65,-0.04676022880095699],[118,-33,66,-0.03325244417588371],[118,-33,67,-0.031530452166168677],[118,-33,68,0.004843122683246411],[118,-33,69,0.013041413138986609],[118,-33,70,0.01785773434503125],[118,-33,71,0.04135472836484168],[118,-33,72,0.024049400842519518],[118,-33,73,-0.07936060429780742],[118,-33,74,-0.11368606042267748],[118,-33,75,-0.09862871808055405],[118,-33,76,-0.11065970799763677],[118,-33,77,-0.07389175303057663],[118,-33,78,-0.015512246825187741],[118,-33,79,-0.04175904608952892],[118,-32,64,-0.09367633501515278],[118,-32,65,-0.046227363970394036],[118,-32,66,-0.03271950703993551],[118,-32,67,-0.03090175450232902],[118,-32,68,0.004458230814648736],[118,-32,69,0.012415343317875641],[118,-32,70,0.01702696315402858],[118,-32,71,0.040040372592971274],[118,-32,72,0.023496833715048262],[118,-32,73,-0.07776797012707375],[118,-32,74,-0.11193680539733052],[118,-32,75,-0.09739557613497046],[118,-32,76,-0.10901538693518106],[118,-32,77,-0.07324645840645026],[118,-32,78,-0.016359660120904528],[118,-32,79,-0.04207859391556249],[118,-31,64,-0.09203247548004846],[118,-31,65,-0.04571653424621685],[118,-31,66,-0.03221146295542365],[118,-31,67,-0.030303744734808805],[118,-31,68,0.004065651481923864],[118,-31,69,0.01179074839755801],[118,-31,70,0.016203465068865996],[118,-31,71,0.038745129816368025],[118,-31,72,0.022947715164356182],[118,-31,73,-0.07621549020604901],[118,-31,74,-0.1102297082451971],[118,-31,75,-0.0961910943810496],[118,-31,76,-0.10740752441578641],[118,-31,77,-0.07261209593843285],[118,-31,78,-0.017184224878639447],[118,-31,79,-0.04238440362546675],[118,-30,64,-0.09043442448872065],[118,-30,65,-0.04522678272394456],[118,-30,66,-0.03172716051395373],[118,-30,67,-0.029734975763726423],[118,-30,68,0.0036666802801273326],[118,-30,69,0.011168449783742252],[118,-30,70,0.0153877896478971],[118,-30,71,0.037469506967577296],[118,-30,72,0.02240265244269659],[118,-30,73,-0.07470258054064718],[118,-30,74,-0.10856425570632358],[118,-30,75,-0.09501503667555058],[118,-30,76,-0.10583620439562581],[118,-30,77,-0.07198924261335747],[118,-30,78,-0.01798649889117486],[118,-30,79,-0.04267692939518445],[118,-29,64,-0.08888116224326861],[118,-29,65,-0.0447571914726287],[118,-29,66,-0.03126549934343581],[118,-29,67,-0.02919406049242739],[118,-29,68,0.003262533579132662],[118,-29,69,0.01054920445182145],[118,-29,70,0.014580430472073039],[118,-29,71,0.036213950984328246],[118,-29,72,0.021862212804317074],[118,-29,73,-0.07322866086311632],[118,-29,74,-0.10693995040443495],[118,-29,75,-0.09386718233345777],[118,-29,76,-0.10430148884722512],[118,-29,77,-0.07137845552897822],[118,-29,78,-0.018767059943258925],[118,-29,79,-0.04295663930141682],[118,-28,64,-0.08737167865565504],[118,-28,65,-0.044306880834707844],[118,-28,66,-0.030825428960178432],[118,-28,67,-0.028679670609339715],[118,-28,68,0.0028543508613091528],[118,-28,69,0.009933707030481324],[118,-28,70,0.013781826963793318],[118,-28,71,0.03497885101388775],[118,-28,72,0.021326924771147223],[118,-28,73,-0.07179315502174444],[118,-28,74,-0.10535631041488996],[118,-28,75,-0.09274732540903877],[118,-28,76,-0.10280341899735942],[118,-28,77,-0.07078027257333475],[118,-28,78,-0.019526504002656],[118,-28,79,-0.04322401347710106],[118,-27,64,-0.08590497414815489],[118,-27,65,-0.04387500866190821],[118,-27,66,-0.030405947573101517],[118,-27,67,-0.028190535303153873],[118,-27,68,0.002443197123057136],[118,-27,69,0.009322591918564263],[118,-27,70,0.012992366234460536],[118,-27,71,0.033764540657845545],[118,-27,72,0.020797279436870975],[118,-27,73,-0.07039549137407827],[118,-27,74,-0.10381286886034405],[118,-27,75,-0.09165527401126969],[118,-27,76,-0.10134201658239755],[118,-27,77,-0.07019521314011314],[118,-27,78,-0.0202654434471203],[118,-27,79,-0.04347954230636995],[118,-26,64,-0.0844800603744636],[118,-26,65,-0.04346076949215356],[118,-26,66,-0.030006100846460174],[118,-26,67,-0.02772543991914742],[118,-26,68,0.002030065329557996],[118,-26,69,0.008716435426651448],[118,-26,70,0.012212384953006365],[118,-26,71,0.032571300248837684],[118,-26,72,0.02027373180412847],[118,-26,73,-0.06903510318406222],[118,-26,74,-0.10230917353708699],[118,-26,75,-0.09059084965664958],[118,-26,76,-0.09991728511874758],[118,-26,77,-0.0696237788780283],[118,-26,78,-0.0209845053312903],[118,-26,79,-0.04372372466245252],[118,-25,64,-0.08309596086262791],[118,-25,65,-0.043063393672480826],[118,-25,66,-0.029624980627361422],[118,-25,67,-0.027283224564313112],[118,-25,68,0.0016158789124319703],[118,-25,69,0.00811575793511967],[118,-25,70,0.011442171227915124],[118,-25,71,0.031399359151025645],[118,-25,72,0.019756702149727485],[118,-25,73,-0.06771142902353347],[118,-25,74,-0.10084478657478055],[118,-25,75,-0.08955388666215758],[118,-25,76,-0.0985292111862552],[118,-25,77,-0.06906645447241025],[118,-25,78,-0.02168432969718522],[118,-25,79,-0.04395706619157351],[118,-24,64,-0.08175171158108345],[118,-24,65,-0.042682146432819035],[118,-24,66,-0.029261723644113443],[118,-24,67,-0.02686278266867221],[118,-24,68,0.0012014943004568096],[118,-24,69,0.007521026060827002],[118,-24,70,0.010681966495634607],[118,-24,71,0.03024889807656731],[118,-24,72,0.01924657741296941],[118,-24,73,-0.06642391317846791],[118,-24,74,-0.09941928413199747],[118,-24,75,-0.08854423158073589],[118,-24,76,-0.09717776572247228],[118,-24,77,-0.06852370845718225],[118,-24,78,-0.022365567931501528],[118,-24,79,-0.04418007764535462],[118,-23,64,-0.0804463614291004],[118,-23,65,-0.042316326915223856],[118,-23,66,-0.02891551018105012],[118,-23,67,-0.02646305950970868],[118,-23,68,7.877034741242798E-4],[118,-23,69,0.006932654825145599],[118,-23,70,0.009931967408781982],[118,-23,71,0.029120051410888362],[118,-23,72,0.018743712602592076],[118,-23,73,-0.0651720060601817],[118,-23,74,-0.09803225612953263],[118,-23,75,-0.08756174268123516],[118,-23,76,-0.09586290532572359],[118,-23,77,-0.06799599405539537],[118,-23,78,-0.023028881172411104],[118,-23,79,-0.044393273263653006],[118,-22,64,-0.07917897265317225],[118,-22,65,-0.04196526716313152],[118,-22,66,-0.02858556273534619],[118,-22,67,-0.02608305070668519],[118,-22,68,3.7523653516776794E-4],[118,-22,69,0.006351009816349474],[118,-22,70,0.009192327717809307],[118,-22,71,0.028012909539881038],[118,-22,72,0.018248432217957085],[118,-22,73,-0.06395516462177452],[118,-22,74,-0.09668330602328155],[118,-22,75,-0.08660628947453793],[118,-22,76,-0.09458457356509338],[118,-22,77,-0.06748375004661733],[118,-22,78,-0.02367493876821672],[118,-22,79,-0.044597169209367564],[118,-21,64,-0.07794862119097155],[118,-21,65,-0.04162833107502145],[118,-21,66,-0.02827114466105883],[118,-21,67,-0.02572180069127577],[118,-21,68,-3.5235717298729715E-5],[118,-21,69,0.005776409339800533],[118,-21,70,0.008463160140189734],[118,-21,71,0.026927521172614897],[118,-21,72,0.017761031680383045],[118,-21,73,-0.06277285278006049],[118,-21,74,-0.0953720506182047],[118,-21,75,-0.08567775228726705],[118,-21,76,-0.09334270229555934],[118,-21,77,-0.06698740165952882],[118,-21,78,-0.02430441678980593],[118,-21,79,-0.04479228205627812],[118,-20,64,-0.07675439694445763],[118,-20,65,-0.041304913326574384],[118,-20,66,-0.027971558805230053],[118,-20,67,-0.02537840116049577],[118,-20,68,-4.4309921175851027E-4],[118,-20,69,0.005209126549929795],[118,-20,70,0.007744538211695929],[118,-20,71,0.025863895653716634],[118,-20,72,0.017281778770914007],[118,-20,73,-0.06162454184308156],[118,-20,74,-0.09409811992453503],[118,-20,75,-0.0847760218841045],[118,-20,76,-0.09213721297652344],[118,-20,77,-0.06650736148806408],[118,-20,78,-0.02491799659836833],[118,-20,79,-0.04497912733045715],[118,-19,64,-0.07559540398389993],[118,-19,65,-0.04099443826534741],[118,-19,66,-0.027686146140741108],[118,-19,67,-0.025051989517719052],[118,-19,68,-8.477940377449138E-4],[118,-19,69,0.004649391558302558],[118,-19,70,0.007036498114602568],[118,-19,71,0.02482200525990412],[118,-19,72,0.01681091507094921],[118,-19,73,-0.06050971094341482],[118,-19,74,-0.0928611570572774],[118,-19,75,-0.08390099913958268],[118,-19,76,-0.09096801799220293],[118,-19,77,-0.06604403042957559],[118,-19,78,-0.025516363469522508],[118,-19,79,-0.0451582181054437],[118,-18,64,-0.07447076068462397],[118,-18,65,-0.040696358781778665],[118,-18,66,-0.027414284400309033],[118,-18,67,-0.02474174730721604],[118,-18,68,-0.0012488118945958352],[118,-18,69,0.004097393512506126],[118,-18,70,0.006339040478052356],[118,-18,71,0.02380178747563499],[118,-18,72,0.016348657402462205],[118,-18,73,-0.05942784747743987],[118,-18,74,-0.0916608181798173],[118,-18,75,-0.0830525947599669],[118,-18,76,-0.08983502197246827],[118,-18,77,-0.0655977986435935],[118,-18,78,-0.02610020527465233],[118,-18,79,-0.0453300636509818],[118,-17,64,-0.07337959979819728],[118,-17,65,-0.04041015516001571],[118,-17,66,-0.02715538671563487],[118,-17,67,-0.024446898647217594],[118,-17,68,-0.0016456935617397508],[118,-17,69,0.0035532826411077945],[118,-17,70,0.0056521321462991705],[118,-17,71,0.022803147243369317],[118,-17,72,0.01589519926488896],[118,-17,73,-0.058378447550647375],[118,-17,74,-0.09049677249218646],[118,-17,75,-0.08223072905553365],[118,-17,76,-0.08873812311274719],[118,-17,77,-0.06516904652972415],[118,-17,78,-0.026670211219789578],[118,-17,79,-0.0454951681346463],[118,-16,64,-0.07232106845990166],[118,-16,65,-0.04013533391196338],[118,-16,66,-0.026908900265549617],[118,-16,67,-0.02416670866629431],[118,-16,68,-0.0020380263963546566],[118,-16,69,0.0030171722602346115],[118,-16,70,0.0049757079108110475],[118,-16,71,0.021825959184288323],[118,-16,72,0.015450712265933433],[118,-16,73,-0.057361016429176764],[118,-16,74,-0.08936870226446413],[118,-16,75,-0.08143533176344736],[118,-16,76,-0.0876772144918394],[118,-16,77,-0.0647581457234058],[118,-16,78,-0.027227070642133575],[118,-16,79,-0.04565402937540908],[118,-15,64,-0.07129432813434256],[118,-15,65,-0.03987142659772407],[118,-15,66,-0.026674304936712235],[118,-15,67,-0.023900481947492863],[118,-15,68,-0.0024254418637331084],[118,-15,69,0.0024891407377473857],[118,-15,70,0.004309672202600202],[118,-15,71,0.020870069785763425],[118,-15,72,0.015015347543823006],[118,-15,73,-0.05637506899775787],[118,-15,74,-0.08827630291563461],[118,-15,75,-0.08066634192125678],[118,-15,76,-0.0866521853866217],[118,-15,77,-0.06436546010833495],[118,-15,78,-0.02777147186399032],[118,-15,79,-0.045807137647876014],[118,-14,64,-0.07029855450090089],[118,-14,65,-0.0396179886352653],[118,-14,66,-0.026451112000050375],[118,-14,67,-0.023647560984264227],[118,-14,68,-0.0028076131051196595],[118,-14,69,0.0019692334114520386],[118,-14,70,0.00365390074158738],[118,-14,71,0.019935299552385197],[118,-14,72,0.014589237178884235],[118,-14,73,-0.0554201302241876],[118,-14,74,-0.08721928313802166],[118,-14,75,-0.07992370779078922],[118,-14,76,-0.08566292258266202],[118,-14,77,-0.06399134684435637],[118,-14,78,-0.028304101103499103],[118,-14,79,-0.045954974535508265],[118,-13,64,-0.06933296128696388],[118,-13,65,-0.039374617730954665],[118,-13,66,-0.0262388433631834],[118,-13,67,-0.023407303644721347],[118,-13,68,-0.0031842527936447253],[118,-13,69,0.0014574836145988521],[118,-13,70,0.003008261030006198],[118,-13,71,0.019021394856334653],[118,-13,72,0.014172430464348965],[118,-13,73,-0.05449572791458695],[118,-13,74,-0.0861973449923735],[118,-13,75,-0.07920739269954204],[118,-13,76,-0.084709297917154],[118,-13,77,-0.06363613119820077],[118,-13,78,-0.02882566998121803],[118,-13,79,-0.04609806242725894],[118,-12,64,-0.06839696186727953],[118,-12,65,-0.03914108477431365],[118,-12,66,-0.02603690693513705],[118,-12,67,-0.02317894837210029],[118,-12,68,-0.0035551155571560225],[118,-12,69,9.540374821688008E-4],[118,-12,70,0.0023727364358851863],[118,-12,71,0.018127702188577906],[118,-12,72,0.013764470927836435],[118,-12,73,-0.05360133948639322],[118,-12,74,-0.08521004825174892],[118,-12,75,-0.0785174084289321],[118,-12,76,-0.08379107564955157],[118,-12,77,-0.063299933189176],[118,-12,78,-0.029337100225565807],[118,-12,79,-0.046237294402759414],[118,-11,64,-0.06749007087269478],[118,-11,65,-0.03891725180940719],[118,-11,66,-0.02584469376489712],[118,-11,67,-0.02296171899156704],[118,-11,68,-0.003920002265318316],[118,-11,69,4.590623050561377E-4],[118,-11,70,0.001747338619592089],[118,-11,71,0.01725340264404479],[118,-11,72,0.013364699978302128],[118,-11,73,-0.052736419765623294],[118,-11,74,-0.08425689123796734],[118,-11,75,-0.07785377594384346],[118,-11,76,-0.08290796707321499],[118,-11,77,-0.0629827813275078],[118,-11,78,-0.02983938968017335],[118,-11,79,-0.046373701661726434],[118,-10,64,-0.06661181813866036],[118,-10,65,-0.038703000542008474],[118,-10,66,-0.02566164848499449],[118,-10,67,-0.02275490071067304],[118,-10,68,-0.0042787577205335185],[118,-10,69,-2.7322027861346816E-5],[118,-10,70,0.0011320399701982872],[118,-10,71,0.016397696686194344],[118,-10,72,0.012972495295265556],[118,-10,73,-0.05190042835998357],[118,-10,74,-0.08333738231791414],[118,-10,75,-0.07721650233166578],[118,-10,76,-0.08205968036036686],[118,-10,77,-0.06268470779197888],[118,-10,78,-0.030333507653333133],[118,-10,79,-0.04650826918723407],[118,-9,64,-0.06576174782590748],[118,-9,65,-0.03849823067153121],[118,-9,66,-0.02548726598181272],[118,-9,67,-0.022557836415710977],[118,-9,68,-0.004631267354906504],[118,-9,69,-5.050398320214752E-4],[118,-9,70,5.267760277664683E-4],[118,-9,71,0.015559803614048384],[118,-9,72,0.012587268895115702],[118,-9,73,-0.051092830683788504],[118,-9,74,-0.08245104049369482],[118,-9,75,-0.076605582432844],[118,-9,76,-0.081245922238662],[118,-9,77,-0.062405749134060155],[118,-9,78,-0.030820395791309543],[118,-9,79,-0.0466419373544277],[118,-8,64,-0.06493941805535357],[118,-8,65,-0.03830285869501055],[118,-8,66,-0.025321087867755013],[118,-8,67,-0.022369922749611942],[118,-8,68,-0.004977454093041754],[118,-8,69,-9.740562155230555E-4],[118,-8,70,-6.855183362929902E-5],[118,-8,71,0.0147389601106421],[118,-8,72,0.012208464058332829],[118,-8,73,-0.050313098766015835],[118,-8,74,-0.08159739556237644],[118,-8,75,-0.07602100049522918],[118,-8,76,-0.08046639931146742],[118,-8,77,-0.06214594644527674],[118,-8,78,-0.03130096946319407],[118,-8,79,-0.046775604444858024],[118,-7,64,-0.0641444005739106],[118,-7,65,-0.038116816786386086],[118,-7,66,-0.025162699151646845],[118,-7,67,-0.02219060640024194],[118,-7,68,-0.005317275377133741],[118,-7,69,-0.001434373844098615],[118,-7,70,-6.540738478839964E-4],[118,-7,71,0.01393441889280239],[118,-7,72,0.011835552440232443],[118,-7,73,-0.04956071199653305],[118,-7,74,-0.08077598824899214],[118,-7,75,-0.07546273172823299],[118,-7,76,-0.079720819298694],[118,-7,77,-0.061905345517761785],[118,-7,78,-0.031776119077176306],[118,-7,79,-0.04691012903933855],[118,-6,64,-0.06337628044929262],[118,-6,65,-0.037940051748310534],[118,-6,66,-0.02501172510033732],[118,-6,67,-0.02201938059206244],[118,-6,68,-0.005650720350131376],[118,-6,69,-0.0018860298782382027],[118,-6,70,-0.0012299494221660735],[118,-6,71,0.013145447455231421],[118,-6,72,0.01146803135620347],[118,-6,73,-0.048835157813822985],[118,-6,74,-0.07998637031485678],[118,-6,75,-0.07493074376127928],[118,-6,76,-0.07900889220116565],[118,-6,77,-0.06168399699838351],[118,-6,78,-0.03224671133202349],[118,-6,79,-0.047046332294501746],[118,-5,64,-0.06263465579199316],[118,-5,65,-0.03777252403371326],[118,-5,66,-0.02486782828445194],[118,-5,67,-0.02185578177406977],[118,-5,68,-0.005977807192599075],[118,-5,69,-0.002329093077797738],[118,-5,70,-0.0017963648235935668],[118,-5,71,0.012371326902165702],[118,-5,72,0.01110542123258112],[118,-5,73,-0.04813593233744621],[118,-5,74,-0.07922810464308037],[118,-5,75,-0.07442499801090795],[118,-5,76,-0.07833033139147802],[118,-5,77,-0.061481956536764755],[118,-5,78,-0.03271359040734218],[118,-5,79,-0.047185000108054466],[118,-4,64,-0.06191913750258305],[118,-4,65,-0.03761420683427981],[118,-4,66,-0.02473070580120415],[118,-4,67,-0.021699386496857646],[118,-4,68,-0.006298580608713036],[118,-4,69,-0.00276366106921889],[118,-4,70,-0.0023535309850250445],[118,-4,71,0.011611350860239792],[118,-4,72,0.010747263214523826],[118,-4,73,-0.047462540948349424],[118,-4,74,-0.07850076530296682],[118,-4,75,-0.07394545096068093],[118,-4,76,-0.07768485463417979],[118,-4,77,-0.06129928492735155],[118,-4,78,-0.03317757909587361],[118,-4,79,-0.0473268851774628],[118,-3,64,-0.061229349042648276],[118,-3,65,-0.03746508523312149],[118,-3,66,-0.02460008666729585],[118,-3,67,-0.0215498084717367],[118,-3,68,-0.006613109456808585],[118,-3,69,-0.0031898577704366302],[118,-3,70,-0.0029016814275652984],[118,-3,71,0.0108648244664084],[118,-3,72,0.010393116922400754],[118,-3,73,-0.0468144988201024],[118,-3,74,-0.07780393759491301],[118,-3,75,-0.07349205535797255],[118,-3,76,-0.07707218503813654],[118,-3,77,-0.0611360482457141],[118,-3,78,-0.033639479880949],[118,-3,79,-0.04747270895670051],[118,-2,64,-0.06056492622774651],[118,-2,65,-0.0373251554189295],[118,-2,66,-0.024475729375008533],[118,-2,67,-0.021406695804892864],[118,-2,68,-0.006921484519826346],[118,-2,69,-0.003607830968464107],[118,-2,70,-0.003441070297196571],[118,-2,71,0.010131063425077736],[118,-2,72,0.010042558348403787],[118,-2,73,-0.046191331404072826],[118,-2,74,-0.07713721807730248],[118,-2,75,-0.07306476133157384],[118,-2,76,-0.07649205194387161],[118,-2,77,-0.06099231797917961],[118,-2,78,-0.034100075961991855],[118,-2,79,-0.0476231635154936],[118,-1,64,-0.059925517040763855],[118,-1,65,-0.03719442395887432],[118,-1,66,-0.02435741960460164],[118,-1,67,-0.021269728399563235],[118,-1,68,-0.00722381641088744],[118,-1,69,-0.004017750044510188],[118,-1,70,-0.003971970512712456],[118,-1,71,0.009409393128966844],[118,-1,72,0.009695177885396646],[118,-1,73,-0.04559257487139857],[118,-1,74,-0.07650021457670922],[118,-1,75,-0.07266351743383725],[118,-1,76,-0.07594419174855273],[118,-1,77,-0.06086817115178185],[118,-1,78,-0.03456013223068596],[118,-1,79,-0.04777891330525165],[118,0,64,-0.05931078146420145],[118,0,65,-0.037072907127625516],[118,0,66,-0.024244968086312452],[118,0,67,-0.02113861551936192],[118,0,68,-0.0075202336092674935],[118,0,69,-0.004419803841506946],[118,0,70,-0.00449467202205347],[118,0,71,0.008699147838448988],[118,0,72,0.009350578480198306],[118,0,73,-0.045017776514584586],[118,0,74,-0.07589254618267492],[118,0,75,-0.0722882716109995],[118,0,76,-0.07542834867129207],[118,0,77,-0.06076369044353098],[118,0,78,-0.035020396200303616],[118,0,79,-0.04794059683577367],[118,1,64,-0.05872039132999438],[118,1,65,-0.03696063028991739],[118,1,66,-0.02413820860538402],[118,1,67,-0.02101309350601013],[118,1,68,-0.0078108806220437395],[118,1,69,-0.0048141986689195435],[118,1,70,-0.005009480164029784],[118,1,71,0.007999669914418847],[118,1,72,0.009008373903738678],[118,1,73,-0.044466495111492324],[118,1,74,-0.07531384322824372],[118,1,75,-0.07193897210518262],[118,1,76,-0.0749442754613548],[118,1,77,-0.06067896430394642],[118,1,78,-0.03548159889047428],[118,1,79,-0.04810882826662327],[118,2,64,-0.05815403018546123],[118,2,65,-0.03685762733406191],[118,2,66,-0.024036996143603814],[118,2,67,-0.020892923644766286],[118,2,68,-0.008095916266621183],[118,2,69,-0.005201156439630662],[118,2,70,-0.005516714132240644],[118,2,71,0.0073103091000938265],[118,2,72,0.00866818713087335],[118,2,73,-0.043938301254311106],[118,2,74,-0.0747637472572666],[118,2,75,-0.07161556829135676],[118,2,76,-0.07449173405173347],[118,2,77,-0.06061408705970636],[118,2,78,-0.03594445566945238],[118,2,79,-0.048284198916857],[118,3,64,-0.057611393174129305],[118,3,65,-0.03676394015394242],[118,3,66,-0.023941205151069005],[118,3,67,-0.02077789017107563],[118,3,68,-0.008375512069453668],[118,3,69,-0.005580912933795119],[118,3,70,-0.006016705537994937],[118,3,71,0.00663042184737646],[118,3,72,0.008329648822838603],[118,3,73,-0.043432777646099596],[118,3,74,-0.07424191097948295],[118,3,75,-0.0713180114524739],[118,3,76,-0.0740704961605316],[118,3,77,-0.06056915901628386],[118,3,78,-0.03640966705581798],[118,3,79,-0.04846727869667734],[118,4,64,-0.05709218693024808],[118,4,65,-0.036679618177082145],[118,4,66,-0.023850727942055262],[118,4,67,-0.020667798412113865],[118,4,68,-0.008649850776321726],[118,4,69,-0.005953716184598861],[118,4,70,-0.006509797068975712],[118,4,71,0.0059593706836888255],[118,4,72,0.007992395905610435],[118,4,73,-0.04294951936739783],[118,4,74,-0.07374799821431607],[118,4,75,-0.0710462554958421],[118,4,76,-0.07368034384252005],[118,4,77,-0.06054428655340809],[118,4,78,-0.03687791948138339],[118,4,79,-0.048658617464425506],[118,5,64,-0.05659612948580133],[118,5,65,-0.0366047179363721],[118,5,66,-0.02376547320896639],[118,5,67,-0.020562473056993127],[118,5,68,-0.00891912496951714],[118,5,69,-0.006319824980843],[118,5,70,-0.006996341240278099],[118,5,71,0.005296523615534372],[118,5,72,0.007656070237786969],[118,5,73,-0.042488134115250695],[118,5,74,-0.07328168382418056],[118,5,75,-0.07080025761360496],[118,5,76,-0.07332106999309],[118,5,77,-0.06053958221411322],[118,5,78,-0.03734988601688098],[118,5,79,-0.048858746312132134],[118,6,64,-0.056122950188970004],[118,6,65,-0.03653930268318835],[118,6,66,-0.02368536464860682],[118,6,67,-0.020461756549663545],[118,6,68,-0.00918353578744211],[118,6,69,-0.006679507481427785],[118,6,70,-0.007476699234502029],[118,6,71,0.004641253565239304],[118,6,72,0.007320317361818901],[118,6,73,-0.042048242416988325],[118,6,74,-0.07284265363812811],[118,6,75,-0.07057997889012937],[118,6,76,-0.07299247880680601],[118,6,77,-0.060555164787163135],[118,6,78,-0.0378262270619079],[118,6,79,-0.049068178782747274],[118,7,64,-0.055672389633056645],[118,7,65,-0.036483442039688126],[118,7,66,-0.023610339695196176],[118,7,67,-0.020365507598717362],[118,7,68,-0.009443291742205609],[118,7,69,-0.007033039936886142],[118,7,70,-0.007951239827559816],[118,7,71,0.0039929378375960865],[118,7,72,0.006984785332720299],[118,7,73,-0.041629477821001445],[118,7,74,-0.07243060436658898],[118,7,75,-0.07038538485896549],[118,7,76,-0.07269438619268147],[118,7,77,-0.06059115938263767],[118,7,78,-0.03830759100049418],[118,7,79,-0.04928741202205056],[118,8,64,-0.05524419959488508],[118,8,65,-0.03643721168808997],[118,8,66,-0.02354034835468861],[118,8,67,-0.020273599798450753],[118,8,68,-0.009698607630849253],[118,8,69,-0.007380705513167265],[118,8,70,-0.008420338396812735],[118,8,71,0.0033509576134385564],[118,8,72,0.006649123618727129],[118,8,73,-0.041231487066626805],[118,8,74,-0.07204524350788127],[118,8,75,-0.07021644601186697],[118,8,76,-0.07242662014815994],[118,8,77,-0.06064769750039044],[118,8,78,-0.038794614823474495],[118,8,79,-0.0495169278680529],[118,9,64,-0.054838142981816405],[118,9,65,-0.036400693094881455],[118,9,66,-0.023475352135229277],[118,9,67,-0.0201859203558103],[118,9,68,-0.009949703536011873],[118,9,69,-0.007722793213048976],[118,9,70,-0.008884376008234777],[118,9,71,0.0027146974673579968],[118,9,72,0.006312982068597412],[118,9,73,-0.040853930235239914],[118,9,74,-0.07168628924718823],[118,9,75,-0.07007313826229902],[118,9,76,-0.07218902109376525],[118,9,77,-0.060724917091140605],[118,9,78,-0.03928792471879768],[118,9,79,-0.049757193880640024],[118,10,64,-0.05445399378658095],[118,10,65,-0.03637397326797165],[118,10,66,-0.023415323068778332],[118,10,67,-0.0201023689180543],[118,10,68,-0.010196803911954443],[118,10,69,-0.008059596890673645],[118,10,70,-0.009343738579327576],[118,10,71,0.002083544907011482],[118,10,72,0.005976009940544059],[118,10,73,-0.040496480884558775],[118,10,74,-0.07135347034866636],[118,10,75,-0.0699554433657427],[118,10,76,-0.07198144217030446],[118,10,77,-0.06082296260996878],[118,10,78,-0.03978813663082306],[118,10,79,-0.05000866431410793],[118,11,64,-0.05409153704912624],[118,11,65,-0.03635714454482625],[118,11,66,-0.023360242819097463],[118,11,67,-0.02002285649613126],[118,11,68,-0.010440136751953528],[118,11,69,-0.00839141435479385],[118,11,70,-0.009798816114511624],[118,11,71,0.0014568899317440038],[118,11,72,0.005637854988112104],[118,11,73,-0.04015882616805813],[118,11,74,-0.07104652604129026],[118,11,75,-0.06986334929894965],[118,11,76,-0.0718037495003764],[118,11,77,-0.06094198506192479],[118,11,78,-0.04029585678949949],[118,11,79,-0.05027178103507234],[118,12,64,-0.05375056882479841],[118,12,65,-0.03635030440976457],[118,12,66,-0.023310101871560105],[118,12,67,-0.01994730447905137],[118,12,68,-0.010679932833261149],[118,12,69,-0.008718546556507781],[118,12,70,-0.010250002009828726],[118,12,71,8.341246084070694E-4],[118,12,72,0.0052981625985473605],[118,12,73,-0.039840666941353846],[118,12,74,-0.07076520589907163],[118,12,75,-0.06979685060024865],[118,12,76,-0.07165582241592126],[118,12,77,-0.061082142039533556],[118,12,78,-0.040811682210326175],[118,12,79,-0.05054697438821286],[118,13,64,-0.053430896158227645],[118,13,65,-0.036353555338672384],[118,13,66,-0.023264898800463472],[118,13,67,-0.01987564373475569],[118,13,68,-0.01091642503597821],[118,13,69,-0.009041296857419877],[118,13,70,-0.010697692423862044],[118,13,71,2.146426624583339E-4],[118,13,72,0.004956574979470773],[118,13,73,-0.039541717857358306],[118,13,74,-0.07050926971629022],[118,13,75,-0.06975594867291209],[118,13,76,-0.07153755365347056],[118,13,77,-0.061243597751988156],[118,13,78,-0.041336201165918254],[118,13,79,-0.05083466401221381],[118,14,64,-0.0531323370622865],[118,14,65,-0.03636700466941638],[118,14,66,-0.02322463960968668],[118,14,67,-0.01980781379316106],[118,14,68,-0.011149847732290483],[118,14,69,-0.0093599703742706],[118,14,70,-0.011142285711807835],[118,14,71,-4.021609173309477E-4],[118,14,72,0.004612730389992642],[118,14,73,-0.03926170745188803],[118,14,74,-0.07027848737832616],[118,14,75,-0.06974065205345172],[118,14,76,-0.07144884951863927],[118,14,77,-0.06142652304578829],[118,14,78,-0.041869993629903755],[118,14,79,-0.05113525960814245],[118,15,64,-0.05285472050161057],[118,15,65,-0.03639076449639172],[118,15,66,-0.023189337142815142],[118,15,67,-0.019743762107351053],[118,15,68,-0.011380436242734944],[118,15,69,-0.009674873396304379],[118,15,70,-0.011584181919785377],[118,15,71,-0.0010168902621155971],[118,15,72,0.004266262412603549],[118,15,73,-0.039000378221390866],[118,15,74,-0.0700726387287442],[118,15,75,-0.06975097664668978],[118,15,76,-0.07138963002139904],[118,15,77,-0.061631095416679244],[118,15,78,-0.04241363169391531],[118,15,79,-0.05144916166250776],[118,16,64,-0.05259788638016954],[118,16,65,-0.03642495158766796],[118,16,66,-0.02315901055902698],[118,16,67,-0.019683443389068186],[118,16,68,-0.011608426356284512],[118,16,69,-0.009986312871773444],[118,16,70,-0.012023782336521106],[118,16,71,-0.0016301489955014713],[118,16,72,0.003916799262474599],[118,16,73,-0.03875748669436547],[118,16,74,-0.06989151343325847],[118,16,75,-0.06978694592933445],[118,16,76,-0.07135982898355987],[118,16,77,-0.06185749901271116],[118,16,78,-0.04296767995834312],[118,16,79,-0.05177676212712147],[118,17,64,-0.05236168553247093],[118,17,65,-0.036469687323327706],[118,17,66,-0.023133684871290788],[118,17,67,-0.019626819014931338],[118,17,68,-0.011834053911248386],[118,17,69,-0.010294595960191291],[118,17,70,-0.01246148909969458],[118,17,71,-0.002242540596582444],[118,17,72,0.0035639631310076182],[118,17,73,-0.03853280349801371],[118,17,74,-0.06973491084125881],[118,17,75,-0.0698485911237622],[118,17,76,-0.07135939411987856],[118,17,77,-0.06210592462833261],[118,17,78,-0.04353269589757196],[118,17,79,-0.0521184450578977],[118,18,64,-0.052145979717972246],[118,18,65,-0.03652509765361703],[118,18,66,-0.023113390543583297],[118,18,67,-0.019573856499977053],[118,18,68,-0.012057554434094732],[118,18,69,-0.010600029647066906],[118,18,70,-0.012897704854283168],[118,18,71,-0.0028546687545040464],[118,18,72,0.003207369560777663],[118,18,73,-0.03832611342155561],[118,18,74,-0.06960263984554584],[118,18,75,-0.06993595134358689],[118,18,76,-0.07138828709409417],[118,18,77,-0.062376569689403305],[118,18,78,-0.04410923020033417],[118,18,79,-0.05247458721460056],[118,19,64,-0.051950641618355886],[118,19,65,-0.036591313075652956],[118,19,66,-0.02309816314409107],[118,19,67,-0.019524529035391643],[118,19,68,-0.012279162833530869],[118,19,69,-0.010902920418087953],[118,19,70,-0.013332832460412601],[118,19,71,-0.003467137715487128],[118,19,72,0.0028466268491849816],[118,19,73,-0.03813721547762873],[118,19,74,-0.06949451874100568],[118,19,75,-0.07004907371259808],[118,19,76,-0.07144648355119183],[118,19,77,-0.06266963822909692],[118,19,78,-0.04469782708587999],[118,19,79,-0.05284555862358511],[118,20,64,-0.05177555483737886],[118,20,65,-0.03666846862751873],[118,20,66,-0.023088043051563457],[118,20,67,-0.01947881508752283],[118,20,68,-0.0124991131473347],[118,20,69,-0.01120357398988701],[118,20,70,-0.013767274748334307],[118,20,71,-0.004080552623106495],[118,20,72,0.002481335478378365],[118,20,73,-0.03796592296312317],[118,20,74,-0.06941037508296637],[118,20,75,-0.07018801345858593],[118,20,76,-0.07153397312714523],[118,20,77,-0.06298534085472164],[118,20,78,-0.04529902459667365],[118,20,79,-0.0532317231055289],[118,21,64,-0.051620613902992905],[118,21,65,-0.03675670389860813],[118,21,66,-0.023083075212147],[118,21,67,-0.0194366980554352],[118,21,68,-0.012717638339571001],[118,21,69,-0.011502295094674304],[118,21,70,-0.01420143431823613],[118,21,71,-0.00469551985246326],[118,21,72,0.0021110875692585533],[118,21,73,-0.03781206352072066],[118,21,74,-0.06935004554598706],[118,21,75,-0.07035283398349856],[118,21,76,-0.07165075943730309],[118,21,77,-0.06332389470547502],[118,21,78,-0.045913354868290145],[118,21,79,-0.0536334387700869],[118,22,64,-0.05148572427151983],[118,22,65,-0.036856163055207815],[118,22,66,-0.023083308944267047],[118,22,67,-0.019398165984528978],[118,22,68,-0.01293497014603741],[118,22,69,-0.011799387316237904],[118,22,70,-0.01463571338276404],[118,22,71,-0.005312647338823618],[118,22,72,0.001735466357548191],[118,22,73,-0.03767547920238039],[118,22,74,-0.06931337578389685],[118,22,75,-0.07054360691137491],[118,22,76,-0.07179686004459003],[118,22,77,-0.06368552340126192],[118,22,78,-0.0465413443772807],[118,22,79,-0.054051058479436705],[118,23,64,-0.05137080233370152],[118,23,65,-0.03696699488038274],[118,23,66,-0.02308879778932072],[118,23,67,-0.01936321133395321],[118,23,68,-0.013151338965959596],[118,23,69,-0.012095152974996987],[118,23,70,-0.015070513650264357],[118,23,71,-0.005932544901197686],[118,23,72,0.0013540456901137538],[118,23,73,-0.03755602653596953],[118,23,74,-0.06930022029194814],[118,23,75,-0.0707604121154713],[118,23,76,-0.07197230640865693],[118,23,77,-0.06407045698275252],[118,23,78,-0.04718351416779848],[118,23,79,-0.05448493028265951],[118,24,64,-0.05127577542243291],[118,24,65,-0.037089352827263916],[118,24,66,-0.02309959940608647],[118,24,67,-0.019331830795705177],[118,24,68,-0.013366973798084202],[118,24,69,-0.012389893059928722],[118,24,70,-0.015506236246846276],[118,24,71,-0.006555824561199116],[118,24,72,9.663895399620674E-4],[118,24,73,-0.03745357659614059],[118,24,74,-0.06931044227194681],[118,24,75,-0.0710033377259328],[118,24,76,-0.07217714381704368],[118,24,77,-0.06447893184287044],[118,24,78,-0.047840380057780026],[118,24,79,-0.05493539782285388],[118,25,64,-0.05120058182206679],[118,25,65,-0.037223395084954806],[118,25,66,-0.023115775506978742],[118,25,67,-0.01930402516354488],[118,25,68,-0.013582102219525058],[118,25,69,-0.012683907205405794],[118,25,70,-0.015943281675540932],[118,25,71,-0.007183100857488778],[118,25,72,5.720515384845994E-4],[118,25,73,-0.037368015080540246],[118,25,74,-0.06934391350130244],[118,25,75,-0.07127248011938225],[118,25,76,-0.07241143129943438],[118,25,77,-0.06491119065002388],[118,25,78,-0.048512452825588685],[118,25,79,-0.05540280071892938],[118,26,64,-0.051145170779204156],[118,26,65,-0.037369284656347805],[118,26,66,-0.02313739183445492],[118,26,67,-0.019279799250050654],[118,26,68,-0.013796950405889899],[118,26,69,-0.012977493711159638],[118,26,70,-0.01638204981096854],[118,26,71,-0.007814991156030389],[118,26,72,1.7057452369454272E-4],[118,26,73,-0.03729924239239608],[118,26,74,-0.06940051420699507],[118,26,75,-0.07156794389178948],[118,26,76,-0.07267524152606085],[118,26,77,-0.06536748226343447],[118,26,78,-0.049200238378060715],[118,26,79,-0.05588747492401106],[118,27,64,-0.05110950251487609],[118,27,65,-0.03752718944716988],[118,27,66,-0.02316451817600381],[118,27,67,-0.019259161850277772],[118,27,68,-0.01401174319133106],[118,27,69,-0.013270949603708072],[118,27,70,-0.016822939928018615],[118,27,71,-0.008452115956282294],[118,27,72,-2.3850989657668616E-4],[118,27,73,-0.037247173730421634],[118,27,74,-0.06948013294545136],[118,27,75,-0.07188984181593303],[118,27,76,-0.07296866069125682],[118,27,77,-0.06584806164096922],[118,27,78,-0.04990423790094708],[118,27,79,-0.05638975306237029],[118,28,64,-0.051093548238085366],[118,28,65,-0.037697282365688076],[118,28,66,-0.02319722841635079],[118,28,67,-0.019242125750705996],[118,28,68,-0.014226704167365977],[118,28,69,-0.013564570737796216],[118,28,70,-0.0172663507632223],[118,28,71,-0.009095099193431698],[118,28,72,-6.556817674382476E-4],[118,28,73,-0.03721173918697675],[118,28,74,-0.06958266648941305],[118,28,75,-0.07223829478480413],[118,28,76,-0.07329178838318573],[118,28,77,-0.06635318973997861],[118,28,78,-0.050624947992836705],[118,28,79,-0.05690996474683165],[118,29,64,-0.0510972901607074],[118,29,65,-0.037879741432576226],[118,29,66,-0.023235600625670646],[118,29,67,-0.01922870778233124],[118,29,68,-0.014442055819471307],[118,29,69,-0.013858651936562707],[118,29,70,-0.017712680607632418],[118,29,71,-0.009744568536729505],[118,29,72,-0.0010814331964128278],[118,29,73,-0.03719288385537163],[118,29,74,-0.06970801972293261],[118,29,75,-0.07261343174231022],[118,29,76,-0.07364473744076305],[118,29,77,-0.06688313341172203],[118,29,78,-0.051362860783731805],[118,29,79,-0.05744843687862201],[118,30,64,-0.051120721513724425],[118,30,65,-0.03807474990046024],[118,30,66,-0.02327971718269683],[118,30,67,-0.019218928916869566],[118,30,68,-0.014658019700554236],[118,30,69,-0.014153487169251086],[118,30,70,-0.018162327430110564],[118,30,71,-0.010401155683897557],[118,30,72,-0.00151626875018469],[118,30,73,-0.037190567947096194],[118,30,74,-0.069856105545621],[118,30,75,-0.07301538960258952],[118,30,76,-0.07402763379874172],[118,30,77,-0.06743816529000127],[118,30,78,-0.052118464039492655],[118,30,79,-0.05800549393160541],[118,31,64,-0.05116384656483555],[118,31,65,-0.038282496382772625],[118,31,66,-0.023329664931806625],[118,31,67,-0.019212814405247032],[118,31,68,-0.014874816640601063],[118,31,69,-0.014449369765487443],[118,31,70,-0.01861568903009676],[118,31,71,-0.011065496651587282],[118,31,72,-0.001960705839093717],[118,31,73,-0.037204766919764376],[118,31,74,-0.0700268447873771],[118,31,75,-0.07344431315931417],[118,31,76,-0.07444061632197331],[118,31,77,-0.06801856367473215],[118,31,78,-0.05289224125348145],[118,31,79,-0.05858145822289283],[118,32,64,-0.051226680637497184],[118,32,65,-0.03850317499159597],[118,32,66,-0.023385535373278855],[118,32,67,-0.019210393957677246],[118,32,68,-0.015092666991928226],[118,32,69,-0.014746592665278066],[118,32,70,-0.01907316321905479],[118,32,71,-0.011738232061833217],[118,32,72,-0.0024152750896981566],[118,32,73,-0.03723547161648812],[118,32,74,-0.07022016613485182],[118,32,75,-0.07390035498635782],[118,32,76,-0.0748838366298548],[118,32,77,-0.06862461241127217],[118,32,78,-0.05368467172683911],[118,32,79,-0.05917665017184086],[118,33,64,-0.051309250131426766],[118,33,65,-0.03873698548419822],[118,33,66,-0.02344742488601064],[118,33,67,-0.019211701964733943],[118,33,68,-0.015311790909561926],[118,33,69,-0.01504544870398527],[118,33,70,-0.0195351480298728],[118,33,71,-0.012420007424384495],[118,33,72,-0.002880520705569161],[118,33,73,-0.037282688417312373],[118,33,74,-0.07043600607091159],[118,33,75,-0.0743836753311896],[118,33,76,-0.07535745891193882],[118,33,77,-0.06925660076635538],[118,33,78,-0.05449623063887099],[118,33,79,-0.059791388549422925],[118,34,64,-0.05141159254466056],[118,34,65,-0.03898413341805669],[118,34,66,-0.023515434982132082],[118,34,67,-0.019216777758986295],[118,34,68,-0.015532408666434166],[118,34,69,-0.015346230931708497],[118,34,70,-0.02000204195365483],[118,34,71,-0.013111473414815004],[118,34,72,-0.003357000816396558],[118,34,73,-0.03734643940332581],[118,34,74,-0.07067430882844664],[118,34,75,-0.0748944420024156],[118,34,76,-0.07586165973573272],[118,34,77,-0.06991482330160803],[118,34,78,-0.055327389109151415],[118,34,79,-0.06042599072001107],[118,35,64,-0.05153375649725674],[118,35,65,-0.039244830314208036],[118,35,66,-0.023589672593050365],[118,35,67,-0.019225665916869368],[118,35,68,-0.01575474100319166],[118,35,69,-0.015649232966610437],[118,35,70,-0.020474244203445582],[118,35,71,-0.013813286148294995],[118,35,72,-0.0038452878153630104],[118,35,73,-0.03742676253398794],[118,35,74,-0.07093502635988613],[118,35,75,-0.07543283025289994],[118,35,76,-0.07639662784771807],[118,35,77,-0.07059957974570132],[118,35,78,-0.05617861425305871],[118,35,79,-0.061080772877625276],[118,36,64,-0.051675801756717495],[118,36,65,-0.03951929382878117],[118,36,66,-0.02367025038652279],[118,36,67,-0.01923841660053936],[118,36,68,-0.015979009512494976],[118,36,69,-0.015954749381814095],[118,36,70,-0.0209521550045056],[118,36,71,-0.01452610744886115],[118,36,72,-0.004345968684607692],[118,36,73,-0.037523711838134646],[118,36,74,-0.07121811832379629],[118,36,75,-0.07599902265989537],[118,36,76,-0.07696256396860388],[118,36,77,-0.07131117486623179],[118,36,78,-0.05705036923249661],[118,36,79,-0.06175605027867244],[118,37,64,-0.05183779926524229],[118,37,65,-0.039807747932642926],[118,37,66,-0.023757287114470418],[118,37,67,-0.019255085939580873],[118,37,68,-0.016205437057812452],[118,37,69,-0.016263076125629224],[118,37,70,-0.02143617591088771],[118,37,71,-0.015250605114051246],[118,37,72,-0.004859645308525986],[118,37,73,-0.03763735761908085],[118,37,74,-0.0715235520899877],[118,37,75,-0.07659320900366676],[118,37,76,-0.07755968058387686],[118,37,77,-0.07204991834255144],[118,37,78,-0.057943113303707536],[118,37,79,-0.06245213747325607],[118,38,64,-0.05201983116892375],[118,38,65,-0.04011042309912333],[118,38,66,-0.02385090799131671],[118,38,67,-0.0192757364525166],[118,38,68,-0.016434248226805795],[118,38,69,-0.016574510974961907],[118,38,70,-0.0219267101481582],[118,38,71,-0.015987453174762748],[118,38,72,-0.005386934774558702],[118,38,73,-0.03776778667417766],[118,38,74,-0.0718513027645779],[118,38,75,-0.07721558614611333],[118,38,76,-0.07818820173072513],[118,38,77,-0.07281612464083077],[118,38,78,-0.05885730186415984],[118,38,79,-0.06316934853713123],[118,39,64,-0.05222199084897144],[118,39,65,-0.04042755649979244],[118,39,66,-0.02395124510266922],[118,39,67,-0.019300437508103264],[118,39,68,-0.016665669819450467],[118,39,69,-0.016889354021813692],[118,39,70,-0.022424162982159337],[118,39,71,-0.01673733215016036],[118,39,72,-0.005928469660998455],[118,39,73,-0.03791510252908139],[118,39,74,-0.0722013532364462],[118,39,75,-0.07786635791089264],[118,39,76,-0.07884836278240154],[118,39,77,-0.07361011289269022],[118,39,78,-0.05979338650055533],[118,39,79,-0.06390799730635191],[118,40,64,-0.052444382955079284],[118,40,65,-0.04075939220832197],[118,40,66,-0.024058437844244013],[118,40,67,-0.01932926582648724],[118,40,68,-0.016899931371137815],[118,40,69,-0.017207908192883366],[118,40,70,-0.022928942113827396],[118,40,71,-0.017500929297500342],[118,40,72,-0.006484898311293559],[118,40,73,-0.03807942568694725],[118,40,74,-0.07257369424655116],[118,40,75,-0.07854573496660196],[118,40,76,-0.0795404102311474],[118,40,77,-0.0744322067788499],[118,40,78,-0.06075181504013782],[118,40,79,-0.06466839761669999],[118,41,64,-0.05268712344102566],[118,41,65,-0.04110618141247028],[118,41,66,-0.024172633390956107],[118,41,67,-0.019362306020315037],[118,41,68,-0.017137265711042432],[118,41,69,-0.017530479802326582],[118,41,70,-0.023441458100122603],[118,41,71,-0.018278938856711294],[118,41,72,-0.0070568850942269055],[118,41,73,-0.03826089389267432],[118,41,74,-0.07296832448157434],[118,41,75,-0.0792539347145819],[118,41,76,-0.080264601470796],[118,41,77,-0.07528273441928626],[118,41,78,-0.06173303160752849],[118,41,79,-0.065450863549943],[118,42,64,-0.05295033960260565],[118,42,65,-0.041468182634265535],[118,42,66,-0.024293987196142296],[118,42,67,-0.01939965117593815],[118,42,68,-0.017377909556102446],[118,42,69,-0.017857379137797003],[118,42,70,-0.023962124801213135],[118,42,71,-0.01907206228960521],[118,42,72,-0.007645110649294681],[118,42,73,-0.03845966241225657],[118,42,74,-0.07338525069335483],[118,42,75,-0.07999118118293691],[118,42,76,-0.08102120458021604],[118,42,77,-0.07616202827148383],[118,42,78,-0.06273747668943237],[118,42,79,-0.06625570968898663],[118,43,64,-0.05323417011795187],[118,43,65,-0.041845661958446904],[118,43,66,-0.024422663520872093],[118,43,67,-0.019441403474839275],[118,43,68,-0.017622104140964497],[118,43,69,-0.01818892107990077],[118,43,70,-0.02449135985407271],[118,43,71,-0.01988100851356081],[118,43,72,-0.008250272116507334],[118,43,73,-0.038675904327187365],[118,43,74,-0.07382448784554375],[118,43,75,-0.08075770492836354],[118,43,76,-0.08181049810874348],[118,43,77,-0.07707042503839782],[118,43,78,-0.06376558720959481],[118,43,79,-0.06708325138392995],[118,44,64,-0.05353876509031254],[118,44,65,-0.04223889326925865],[118,44,66,-0.024558835993334402],[118,44,67,-0.019487674855433495],[118,44,68,-0.01787009588429456],[118,44,69,-0.01852542575525001],[118,44,70,-0.02502958517272064],[118,44,71,-0.02070649412955712],[118,44,72,-0.008873083349802868],[118,44,73,-0.03890981084380684],[118,44,74,-0.07428605928891255],[118,44,75,-0.0815537429474161],[118,44,76,-0.08263277086480005],[118,44,77,-0.07800826558782664],[118,44,78,-0.06481779661647831],[118,44,79,-0.06793380503103194],[118,45,64,-0.05386428609333379],[118,45,65,-0.04264815849569224],[118,45,66,-0.02470268819827531],[118,45,67,-0.019538587715380962],[118,45,68,-0.01812213709185849],[118,45,69,-0.018867219223311568],[118,45,70,-0.025577227475365175],[118,45,71,-0.02154924364444521],[118,45,72,-0.009514275113200707],[118,45,73,-0.039161591617382405],[118,45,74,-0.07476999696671165],[118,45,75,-0.08237953859884975],[118,45,76,-0.08348832170891571],[118,45,77,-0.07897589488496547],[118,45,78,-0.06589453498621323],[118,45,79,-0.06880768836657551],[118,46,64,-0.05421090621884261],[118,46,65,-0.04307374786524172],[118,46,66,-0.02485441429642009],[118,46,67,-0.01959427565449624],[118,46,68,-0.018378486696748554],[118,46,69,-0.01921463419722015],[118,46,70,-0.02613471883869908],[118,46,71,-0.02240998968731718],[118,46,72,-0.010174595258745572],[118,46,73,-0.039431475090601305],[118,46,74,-0.07527634165141589],[118,46,75,-0.08323534153866358],[118,46,76,-0.08437745935235975],[118,46,77,-0.07997366193990783],[118,46,78,-0.06699622914336958],[118,46,79,-0.06970522077752565],[118,47,64,-0.05457880252386857],[118,47,65,-0.04351595255463018],[118,47,66,-0.02501421205358483],[118,47,67,-0.019654876629274336],[118,47,68,-0.01863940339902377],[118,47,69,-0.01956800315131824],[118,47,70,-0.026702489622661252],[118,47,71,-0.023289465553092064],[118,47,72,-0.010854801208427566],[118,47,73,-0.03971970115891356],[118,47,74,-0.0758051355164256],[118,47,75,-0.0841213999609168],[118,47,76,-0.08530049444295386],[118,47,77,-0.08100191204090865],[118,47,78,-0.06812329505951314],[118,47,79,-0.07062671587628436],[118,48,64,-0.05496806770982622],[118,48,65,-0.04397497643927552],[118,48,66,-0.025182194847428303],[118,48,67,-0.019720444951069366],[118,48,68,-0.018905057498655703],[118,48,69,-0.019927569968172777],[118,48,70,-0.02728087977510669],[118,48,71,-0.024188315936431982],[118,48,72,-0.011555570453801583],[118,48,73,-0.04002643172594883],[118,48,74,-0.0763563324541213],[118,48,75,-0.0850378703999776],[118,48,76,-0.0862576490346305],[118,48,77,-0.08206089620930739],[118,48,78,-0.06927604730236414],[118,48,79,-0.07157239094507464],[118,49,64,-0.05537873089956616],[118,49,65,-0.04445095694407189],[118,49,66,-0.025358412796330866],[118,49,67,-0.01979097242018089],[118,49,68,-0.019175551867707873],[118,49,69,-0.020293510729900644],[118,49,70,-0.027870159286363543],[118,49,71,-0.02510711679661669],[118,49,72,-0.012277520190101494],[118,49,73,-0.040351770449587446],[118,49,74,-0.0769298176322841],[118,49,75,-0.08598483678271872],[118,49,76,-0.08724907533138627],[118,49,77,-0.08315078997642884],[118,49,78,-0.07045471785227742],[118,49,79,-0.07254238578800262],[118,50,64,-0.055810815087504406],[118,50,65,-0.04494402271316287],[118,50,66,-0.025542910868644512],[118,50,67,-0.01986644659338502],[118,50,68,-0.019450980197121555],[118,50,69,-0.02066599192460287],[118,50,70,-0.0284705861983197],[118,50,71,-0.026046432889281976],[118,50,72,-0.013021264749210911],[118,50,73,-0.04069582047064338],[118,50,74,-0.07752546520753768],[118,50,75,-0.0869623677723249],[118,50,76,-0.08827491286695381],[118,50,77,-0.08427175076187164],[118,50,78,-0.07165951368099528],[118,50,79,-0.07353682049677396],[118,51,64,-0.05626433760584026],[118,51,65,-0.04545429428862155],[118,51,66,-0.025735730005824013],[118,51,67,-0.019946852059494168],[118,51,68,-0.019731428231160177],[118,51,69,-0.021045171615849952],[118,51,70,-0.029082407548234226],[118,51,71,-0.027006818173933862],[118,51,72,-0.013787415865299506],[118,51,73,-0.0410586849810531],[118,51,74,-0.078143138874222],[118,51,75,-0.08797051689927635],[118,51,76,-0.08933528842882256],[118,51,77,-0.08542391797268514],[118,51,78,-0.07289061701999303],[118,51,79,-0.07455579586015111],[118,52,64,-0.05673930942846076],[118,52,65,-0.04598188363233595],[118,52,66,-0.02593690710749993],[118,52,67,-0.020032170586790472],[118,52,68,-0.02001697387117053],[118,52,69,-0.021431199475792355],[118,52,70,-0.029705859168917024],[118,52,71,-0.027988815041234984],[118,52,72,-0.014576581740489071],[118,52,73,-0.041440466625404467],[118,52,74,-0.07878269127252804],[118,52,75,-0.08900932153409793],[118,52,76,-0.09043031481295963],[118,52,77,-0.08660741194447408],[118,52,78,-0.07414818447620224],[118,52,79,-0.07559939261176465],[118,53,64,-0.0572357344304508],[118,53,65,-0.04652689360989501],[118,53,66,-0.026146474997642714],[118,53,67,-0.020122381262323883],[118,53,68,-0.02030768726996284],[118,53,69,-0.02182421680392911],[118,53,70,-0.030341165468510768],[118,53,71,-0.028992953484088927],[118,53,72,-0.015389366034513505],[118,53,73,-0.04184126686089187],[118,53,74,-0.07944396338389279],[118,53,75,-0.09007880183174787],[118,53,76,-0.0915600895400056],[118,53,77,-0.08782233285705263],[118,53,78,-0.07543234612969237],[118,53,79,-0.07666767065084645],[118,54,64,-0.05775360860527182],[118,54,65,-0.04708941743864218],[118,54,66,-0.02636446237347247],[118,54,67,-0.020217460624708854],[118,54,68,-0.020603630918908756],[118,54,69,-0.022224356533470543],[118,54,70,-0.03098853919210836],[118,54,71,-0.030019750214639963],[118,54,72,-0.016226366779413706],[118,54,73,-0.042261185276703805],[118,54,74,-0.08012678391647397],[118,54,75,-0.09117895965129408],[118,54,76,-0.09272469353637057],[118,54,77,-0.08906875962871226],[118,54,78,-0.07674320461805598],[118,54,79,-0.07776066823925633],[118,55,64,-0.05829291924169795],[118,55,65,-0.047669538102085206],[118,55,66,-0.026590893738723052],[118,55,67,-0.020317382791982343],[118,55,68,-0.02090485972981211],[118,55,69,-0.02263174322720444],[118,55,70,-0.03164818116745813],[118,55,71,-0.03106970772941827],[118,55,72,-0.01708817522041957],[118,55,73,-0.04270031887384323],[118,55,74,-0.0808309686835032],[118,55,75,-0.09230977745460212],[118,55,76,-0.09392418978378067],[118,55,77,-0.09034674879329084],[118,55,78,-0.07808083421234832],[118,55,79,-0.07887840117820531],[118,56,64,-0.058853644062707766],[118,56,65,-0.048267327732957555],[118,56,66,-0.026825789322906815],[118,56,67,-0.020422119586094523],[118,56,68,-0.021211421113643044],[118,56,69,-0.023046493064824636],[118,56,70,-0.03232028003709302],[118,56,71,-0.032143313325041604],[118,56,72,-0.01797537458437782],[118,56,73,-0.043158761306475356],[118,56,74,-0.08155631997738967],[118,56,75,-0.09347121718791936],[118,56,76,-0.09515862194103077],[118,56,77,-0.09165633336440203],[118,56,78,-0.0794452798895653],[118,56,79,-0.08002086196815257],[118,57,64,-0.059435750328610176],[118,57,65,-0.048882846967295925],[118,57,66,-0.027069164988214666],[118,57,67,-0.020531640655561637],[118,57,68,-0.021523355058209678],[118,57,69,-0.02346871382368444],[118,57,70,-0.03300501197927515],[118,57,71,-0.03324103806705237],[118,57,72,-0.018888538777267556],[118,57,73,-0.04363660208594559],[118,57,74,-0.08230262594245577],[118,57,75,-0.09466321915035161],[118,57,76,-0.0964280129418675],[118,57,77,-0.09299752169135142],[118,57,78,-0.08083655640678286],[118,57,79,-0.08118801895542603],[118,58,64,-0.06003919390674442],[118,58,65,-0.049516144271947254],[118,58,66,-0.027321032125658073],[118,58,67,-0.020645913597748568],[118,58,68,-0.02184069420680295],[118,58,69,-0.023898504854916087],[118,58,70,-0.03370254042016154],[118,58,71,-0.03436333571460245],[118,58,72,-0.01982823101251709],[118,58,73,-0.04413392574865147],[118,58,74,-0.08306965994918013],[118,58,75,-0.09588570085331763],[118,58,76,-0.09773236357307136],[118,58,77,-0.09437029631136616],[118,58,78,-0.0822546473821356],[118,58,79,-0.08237981546912143],[118,59,64,-0.06066391831023718],[118,59,65,-0.05016725524804753],[118,59,66,-0.02758139754209748],[118,59,67,-0.02076490408224891],[118,59,68,-0.02216346393987291],[118,59,69,-0.024335957056898314],[118,59,70,-0.034413015739685276],[118,59,71,-0.035510641603915385],[118,59,72,-0.02079500237209343],[118,59,73,-0.04465081098907352],[118,59,74,-0.08385717997289348],[118,59,75,-0.09713855587523273],[118,59,76,-0.09907165103702817],[118,59,77,-0.09577461280295664],[118,59,78,-0.08369950438795888],[118,59,79,-0.08359616895193286],[118,60,64,-0.061309853708406525],[118,60,65,-0.05083620191309684],[118,60,66,-0.02785026333979583],[118,60,67,-0.020888575976788455],[118,60,68,-0.022491682461773493],[118,60,69,-0.024781152848056487],[118,60,70,-0.0351365749736943],[118,60,71,-0.0366833714936457],[118,60,72,-0.021789390302573083],[118,60,73,-0.04518732975935305],[118,60,74,-0.08466492797987549],[118,60,75,-0.09842165271578353],[118,60,76,-0.10044582750326167],[118,60,77,-0.09721039864537813],[118,60,78,-0.08517104606152029],[118,60,79,-0.08483697008862684],[118,61,64,-0.06197691591150523],[118,61,65,-0.05152299196433562],[118,61,66,-0.028127626790120614],[118,61,67,-0.02101689147701619],[118,61,68,-0.02282536089456741],[118,61,69,-0.02523416614095235],[118,61,70,-0.03587334151490183],[118,61,71,-0.03788192037540984],[118,61,72,-0.022811917048625847],[118,61,73,-0.04574354633688836],[118,61,74,-0.08549262932381375],[118,61,75,-0.09973483365425931],[118,61,76,-0.10185481865355937],[118,61,77,-0.09867755208925574],[118,61,78,-0.08666915723879934],[118,61,79,-0.08610208193587685],[118,62,64,-0.06266500533264541],[118,62,65,-0.05222761802624828],[118,62,66,-0.02841348020304048],[118,62,67,-0.021149811241531456],[118,62,68,-0.02316450338088496],[118,62,69,-0.02569506231964743],[118,62,70,-0.03662342481527856],[118,62,71,-0.03910666125300039],[118,62,72,-0.023863088026641107],[118,62,73,-0.046319516361552196],[118,62,74,-0.0863399921556131],[118,62,75,-0.10107791361653876],[118,62,76,-0.10329852222553297],[118,62,77,-0.1001759410436127],[118,62,78,-0.08819368811689436],[118,62,79,-0.08739133905726658],[118,63,64,-0.06337400592990282],[118,63,65,-0.052950056885140595],[118,63,66,-0.028707810794081273],[118,63,67,-0.02128729453346277],[118,63,68,-0.023509107197808236],[118,63,69,-0.02616389822232649],[118,63,70,-0.037386920092560096],[118,63,71,-0.04035794389399943],[118,63,72,-0.024943390141515014],[118,63,73,-0.0469152858442703],[118,63,74,-0.08720670684958443],[118,63,75,-0.10245067905546673],[118,63,76,-0.10477680655965864],[118,63,77,-0.10170540198467237],[118,63,78,-0.08974445345069636],[118,63,79,-0.08870454666731757],[118,64,64,-0.06410378413169586],[118,64,65,-0.05369026871380367],[118,64,66,-0.029010600550370025],[118,64,67,-0.02142929936983286],[118,64,68,-0.023859162883682644],[118,64,69,-0.026640722131116602],[118,64,70,-0.03816390804353198],[118,64,71,-0.04163609355766623],[118,64,72,-0.026053290049864283],[118,64,73,-0.04753089014878519],[118,64,74,-0.08809244544900191],[118,64,75,-0.10385288684941285],[118,64,76,-0.10628950915496828],[118,64,77,-0.10326573889186946],[118,64,78,-0.09132123178946254],[118,64,79,-0.09004147978838352],[118,65,64,-0.06485418774875051],[118,65,65,-0.05444819628943752],[118,65,66,-0.02932182609743535],[118,65,67,-0.021575782679923425],[118,65,68,-0.02421465437974617],[118,65,69,-0.027125573771072404],[118,65,70,-0.03895445456684899],[118,65,71,-0.04294140970325694],[118,65,72,-0.027193232373306127],[118,65,73,-0.048166352948626916],[118,65,74,-0.088996861134085],[118,65,75,-0.10528426322397125],[118,65,76,-0.10783643523882058],[118,65,77,-0.10485672221669305],[118,65,78,-0.09292376475902714],[118,65,79,-0.09140188242435461],[118,66,64,-0.0656250448760355],[118,66,65,-0.05522376420806427],[118,66,66,-0.02964145856842011],[118,66,67,-0.021726700473814833],[118,66,68,-0.024575559188421456],[118,66,69,-0.02761848432023334],[118,66,70,-0.03975861049807787],[118,66,71,-0.04427416468302521],[118,66,72,-0.02836363786565714],[118,66,73,-0.048821685161387664],[118,66,74,-0.0899195877153991],[118,66,75,-0.10674450270177091],[118,66,76,-0.1094173563562468],[118,66,77,-0.1064780878899801],[118,66,78,-0.09455175639532644],[118,66,79,-0.09278546675508886],[118,67,64,-0.06641616278832269],[118,67,65,-0.05601687809883958],[118,67,66,-0.029969463477367474],[118,67,67,-0.021882008022180235],[118,67,68,-0.024941848550040332],[118,67,69,-0.028119476432683845],[118,67,70,-0.040576411359786485],[118,67,71,-0.04563460242451473],[118,67,72,-0.029564901538361523],[118,67,73,-0.04949688386264315],[118,67,74,-0.09086023915575238],[118,67,75,-0.10823326708557024],[118,67,76,-0.11103200898467205],[118,67,77,-0.10812953637348222],[118,67,78,-0.09620487253498441],[118,67,79,-0.09419191235554795],[118,68,64,-0.0672273268330677],[118,68,65,-0.05682742384169874],[118,68,66,-0.030305800598219985],[118,68,67,-0.022041660048382285],[118,68,68,-0.025313487639715537],[118,68,69,-0.028628564276452703],[118,68,70,-0.04140787712937932],[118,68,71,-0.04702293710678899],[118,68,72,-0.03079739074863593],[118,68,73,-0.050191931181913646],[118,68,74,-0.09181840912355604],[118,68,75,-0.10975018447974945],[118,68,76,-0.11268009317981541],[118,68,77,-0.10981073176146842],[118,68,78,-0.09788274026860884],[118,68,79,-0.09562086544358334],[118,69,64,-0.06805829932455215],[118,69,65,-0.057655266791936804],[118,69,66,-0.030650423851188234],[118,69,67,-0.02220561093384939],[118,69,68,-0.025690435786009526],[118,69,69,-0.029145753588095322],[118,69,70,-0.0422530120274602],[118,69,71,-0.04843935183554332],[118,69,72,-0.03206144325524377],[118,69,73,-0.05090679318329478],[118,69,74,-0.09279367058067302],[118,69,75,-0.11129484835547264],[118,69,76,-0.11436127125881751],[118,69,77,-0.11152130093825863],[118,69,78,-0.0995849474624466],[118,69,79,-0.09707193816034705],[118,70,64,-0.06890881844336666],[118,70,65,-0.05850025101540835],[118,70,66,-0.031003281198131713],[118,70,67,-0.022373814937648763],[118,70,68,-0.026072646712975656],[118,70,69,-0.0296710417457485],[118,70,70,-0.04311180432947643],[118,70,71,-0.04988399732221412],[118,70,72,-0.033357365247124106],[118,70,73,-0.051641418733535525],[118,70,74,-0.09378557540773368],[118,70,75,-0.11286681666480852],[118,70,76,-0.11607516652674882],[118,70,77,-0.11326083279760564],[118,70,78,-0.10131104235399471],[118,70,79,-0.0985447078873104],[118,71,64,-0.06977859714545227],[118,71,65,-0.05936219853810378],[118,71,66,-0.0313643145485568],[118,71,67,-0.022546226431069027],[118,71,68,-0.02646006880702832],[118,71,69,-0.030204417862360423],[118,71,70,-0.04398422620333833],[118,71,71,-0.05135699057233935],[118,71,72,-0.03468542935039133],[118,71,73,-0.052395738360477985],[118,71,74,-0.0947936540698426],[118,71,75,-0.11446561100911483],[118,71,76,-0.11782136205273314],[118,71,77,-0.11502887752981056],[118,71,78,-0.10306053322701614],[118,71,79,-0.10003871660379492],[118,72,64,-0.07066732208509684],[118,72,65,-0.060240908613969364],[118,72,66,-0.0317334596778378],[118,72,67,-0.022722800147969006],[118,72,68,-0.02685264541002504],[118,72,69,-0.0307458629007649],[118,72,70,-0.044870233575711266],[118,72,71,-0.05285841358863592],[118,72,72,-0.03604587261959023],[118,72,73,-0.053169663104972745],[118,72,74,-0.09581741532557893],[118,72,75,-0.11609071586702825],[118,72,76,-0.11959939950205618],[118,72,77,-0.11682494598249653],[118,72,78,-0.10483288817135555],[118,72,79,-0.10155347028894893],[118,73,64,-0.07157465255644575],[118,73,65,-0.06113615701492768],[118,73,66,-0.03211064615925232],[118,73,67,-0.022903491451572586],[118,73,68,-0.027250315139844328],[118,73,69,-0.031295349812201896],[118,73,70,-0.04576976602963469],[118,73,71,-0.0543883120944199],[118,73,72,-0.037438894519413075],[118,73,73,-0.053963083369555985],[118,73,74,-0.09685634598215806],[118,73,75,-0.11774157788742079],[118,73,76,-0.12140877803071455],[118,73,77,-0.1186485091009379],[118,73,78,-0.10662753493281305],[118,73,79,-0.10308843837205106],[118,74,64,-0.07250021945818558],[118,74,65,-0.06204769534708235],[118,74,66,-0.03249579731135039],[118,74,67,-0.023088256618253478],[118,74,68,-0.027653012239580187],[118,74,69,-0.03185284369976087],[118,74,70,-0.046682746736018535],[118,74,71,-0.0559466942830906],[118,74,72,-0.03886465490335822],[118,74,73,-0.05477586776729947],[118,74,74,-0.09790991069950758],[118,74,75,-0.11941760525260964],[118,74,76,-0.12324895324886673],[118,74,77,-0.12049899745373453],[118,74,78,-0.1084438608581185],[118,74,79,-0.10464305323491926],[118,75,64,-0.07344362428623949],[118,75,65,-0.06297525039718904],[118,75,66,-0.03288883016217061],[118,75,67,-0.023277053138791044],[118,75,68,-0.028060666956381212],[118,75,69,-0.03241830200817168],[118,75,70,-0.047609082421547],[118,75,71,-0.05753352959958742],[118,75,72,-0.04032327199616385],[118,75,73,-0.055607861974446435],[118,75,74,-0.09897755184598152],[118,75,75,-0.12111816711711787],[118,75,76,-0.12511933625974164],[118,75,77,-0.12237580084961248],[118,75,78,-0.1102812129399372],[118,75,79,-0.10621670977019687],[118,76,64,-0.07440443815943944],[118,76,65,-0.06391852351352298],[118,76,66,-0.03328965543178142],[118,76,67,-0.023469840037478568],[118,76,68,-0.02847320595082833],[118,76,69,-0.032991674741268975],[118,76,70,-0.04854866337542531],[118,76,71,-0.05914874755982327],[118,76,72,-0.04181482038713842],[118,76,73,-0.056458887590613474],[118,76,74,-0.10005868940836313],[118,76,75,-0.12284259312723121],[118,76,76,-0.1270192927805683],[118,76,77,-0.12427826805100538],[118,76,78,-0.1121388979665994],[118,76,79,-0.1078087649991838],[118,77,64,-0.07538220088322048],[118,77,65,-0.06487719002526877],[118,77,66,-0.033698177534525656],[118,77,67,-0.02366657820930761],[118,77,68,-0.028890552737548723],[118,77,69,-0.03357290470830255],[118,77,70,-0.04950136349728076],[118,77,71,-0.06079223661417362],[118,77,72,-0.04333932904175931],[118,77,73,-0.057328741010446195],[118,77,74,-0.10115272095865674],[118,77,75,-0.1245901730264671],[118,77,76,-0.1289481423520423],[118,77,77,-0.1262057065899301],[118,77,78,-0.11401618278099672],[118,77,79,-0.10941853775276301],[118,78,64,-0.07637642005652322],[118,78,65,-0.06585089870461622],[118,78,66,-0.034114294602327254],[118,78,67,-0.023867230775375357],[118,78,68,-0.029312628157643218],[118,78,69,-0.03416192780018547],[118,78,70,-0.050467040388450214],[118,78,71,-0.062463843061204206],[118,78,72,-0.044896779339212024],[118,78,73,-0.058217192310810115],[118,78,74,-0.10225902168011666],[118,78,75,-0.12636015635201592],[118,78,76,-0.13090515764285116],[118,78,77,-0.12815738269154103],[118,78,78,-0.11591229465285803],[118,78,79,-0.11104530841888792],[118,79,64,-0.07738657022718481],[118,79,65,-0.06683927127575193],[118,79,66,-0.03453789853035462],[118,79,67,-0.02407176345653924],[118,79,68,-0.029739350883337123],[118,79,69,-0.034758673296644296],[118,79,70,-0.051445535488768665],[118,79,71,-0.06416337001788433],[118,79,72,-0.04648710314379418],[118,79,73,-0.059123984157740055],[118,79,74,-0.10337694445484158],[118,79,75,-0.1281517522270995],[118,79,76,-0.13288956385572107],[118,79,77,-0.13013252131058017],[118,79,78,-0.117826421768338],[118,79,79,-0.11268831875997805],[118,80,64,-0.0784120921011324],[118,80,65,-0.06784190197488381],[118,80,66,-0.03496887504620823],[118,80,67,-0.024280144965164282],[118,80,68,-0.030170637955034246],[118,80,69,-0.035363064205052204],[118,80,70,-0.0524366742607991],[118,80,71,-0.06589057645253106],[118,80,72,-0.04811018091829769],[118,80,73,-0.0600488307374629],[118,80,74,-0.10450582001508901],[118,80,75,-0.12996412925398937],[118,80,76,-0.13490053824131826],[118,80,77,-0.13213030628569947],[118,80,78,-0.1197577138405145],[118,80,79,-0.11434677180339332],[118,81,64,-0.0794523918107966],[118,81,65,-0.06885835716545272],[118,81,66,-0.035407103803768686],[118,81,67,-0.024492347414722566],[118,81,68,-0.030606405350814853],[118,81,69,-0.03597501763162145],[118,81,70,-0.05344026642332808],[118,81,71,-0.06764517628677909],[118,81,72,-0.049765839887732546],[118,81,73,-0.06099141671597286],[118,81,74,-0.1056449571603779],[118,81,75,-0.1317964155123247],[118,81,76,-0.13693720972626588],[118,81,77,-0.13414988061643168],[118,81,78,-0.12170528284408749],[118,81,79,-0.11601983180803328],[118,82,64,-0.08050684024818953],[118,82,65,-0.06988817501261867],[118,82,66,-0.03585245850272685],[118,82,67,-0.024708346746848048],[118,82,68,-0.031046568588201977],[118,82,69,-0.03659444518546866],[118,82,70,-0.05445610623579968],[118,82,71,-0.06942683757285249],[118,82,72,-0.051453852261914255],[118,82,73,-0.061951396231748064],[118,82,74,-0.10679364304228332],[118,82,75,-0.13364769866713824],[118,82,76,-0.1389986586613758],[118,82,77,-0.13619034686733972],[118,82,78,-0.1236682038772303],[118,82,79,-0.11770662430994024],[118,83,64,-0.08157477254819552],[118,83,65,-0.07093086502253018],[118,83,66,-0.03630480679720448],[118,83,67,-0.02492812291985504],[118,83,68,-0.03149104291970642],[118,83,69,-0.03722125276314267],[118,83,70,-0.055483971663302885],[118,83,71,-0.07123517999554738],[118,83,72,-0.05317393202813196],[118,83,73,-0.06292838993660846],[118,83,74,-0.10795113973713766],[118,83,75,-0.1355170209873274],[118,83,76,-0.1410839108100877],[118,83,77,-0.13825076148287152],[118,83,78,-0.12564551009379823],[118,83,79,-0.11940623011102793],[118,84,64,-0.08265549182453348],[118,84,65,-0.07198590289633977],[118,84,66,-0.03676400356554198],[118,84,67,-0.025151652687634397],[118,84,68,-0.03193973051226181],[118,84,69,-0.03785532066406337],[118,84,70,-0.05652358792134581],[118,84,71,-0.07306971829450178],[118,84,72,-0.05492568510845188],[118,84,73,-0.06392192108914752],[118,84,74,-0.10911656542459185],[118,84,75,-0.13740321475551964],[118,84,76,-0.1431917503383921],[118,84,77,-0.14032993757397594],[118,84,78,-0.12763600072643222],[118,84,79,-0.12111749005425011],[118,85,64,-0.08374827761633993],[118,85,65,-0.0730527356486534],[118,85,66,-0.0372298925811533],[118,85,67,-0.025378910391459935],[118,85,68,-0.03239252021927761],[118,85,69,-0.03849650145632966],[118,85,70,-0.0575746217249781],[118,85,71,-0.07492984914061702],[118,85,72,-0.05670859448555223],[118,85,73,-0.06493140201835008],[118,85,74,-0.11028887300958076],[118,85,75,-0.13930486859755375],[118,85,76,-0.14532067913582025],[118,85,77,-0.14242640148463273],[118,85,78,-0.12963819761166864],[118,85,79,-0.1228389608733042],[118,86,64,-0.08485238691358345],[118,86,65,-0.07413079231948219],[118,86,66,-0.03770231703724907],[118,86,67,-0.025609878819036234],[118,86,68,-0.03284930546501437],[118,86,69,-0.03914464547041273],[118,86,70,-0.05863672586908393],[118,86,71,-0.07681491523812065],[118,86,72,-0.058522072473304126],[118,86,73,-0.06595620676310687],[118,86,74,-0.11146699139376545],[118,86,75,-0.14122051979677522],[118,86,76,-0.14746913283283788],[118,86,77,-0.14453862125213165],[118,86,78,-0.13165056751447254],[118,86,79,-0.1245691397156419],[118,87,64,-0.08596705421507266],[118,87,65,-0.0752194849382798],[118,87,66,-0.03818112050722965],[118,87,67,-0.025844550317004555],[118,87,68,-0.03330998613572915],[118,87,69,-0.039799603050859764],[118,87,70,-0.0597095427611203],[118,87,71,-0.07872420948415615],[118,87,72,-0.060365463132905334],[118,87,73,-0.06699567486693617],[118,87,74,-0.11264983483139429],[118,87,75,-0.14314866704146945],[118,87,76,-0.14963549472209595],[118,87,77,-0.14666502199341033],[118,87,78,-0.13367153771480247],[118,87,79,-0.12630647873635145],[118,88,64,-0.08709149174619717],[118,88,65,-0.07631820901525296],[118,88,66,-0.038666147345082565],[118,88,67,-0.026082927298370102],[118,88,68,-0.03377446945192309],[118,88,69,-0.04046122530216554],[118,88,70,-0.060792705271372954],[118,88,71,-0.08065697518893036],[118,88,72,-0.062238041397583814],[118,88,73,-0.06804911063977823],[118,88,74,-0.11383630357619169],[118,88,75,-0.14508777127418218],[118,88,76,-0.15181809626287132],[118,88,77,-0.14880398710576226],[118,88,78,-0.13569949778912],[118,88,79,-0.12804938566177748],[118,89,64,-0.08822488975873502],[118,89,65,-0.07742634410234175],[118,89,66,-0.03915724311331344],[118,89,67,-0.02632502276016568],[118,89,68,-0.03424267085771163],[118,89,69,-0.041129364857662665],[118,89,70,-0.06188583762813535],[118,89,71,-0.08261240640674282],[118,89,72,-0.0641390123287637],[118,89,73,-0.0691157824988309],[118,89,74,-0.1150252846048631],[118,89,75,-0.14703625668074735],[118,89,76,-0.15401521775910995],[118,89,77,-0.15095385962819297],[118,89,78,-0.13773280153680298],[118,89,79,-0.12979622447051406],[118,90,64,-0.08936641691313567],[118,90,65,-0.07854325442350193],[118,90,66,-0.039654255037388536],[118,90,67,-0.026570860809490626],[118,90,68,-0.03471451492474681],[118,90,69,-0.041803876669444774],[118,90,70,-0.06298855635593409],[118,90,71,-0.08458964837989319],[118,90,72,-0.0660675105098232],[118,90,73,-0.07019492239157914],[118,90,74,-0.11621565241492218],[118,90,75,-0.1489925118177238],[118,90,76,-0.15622508921176567],[118,90,77,-0.15311294376180087],[118,90,78,-0.13976976904808422],[118,90,79,-0.13154531619164078],[118,91,64,-0.09051522074352267],[118,91,65,-0.07966828957371885],[118,91,66,-0.04015703248555416],[118,91,67,-0.02682047719597645],[118,91,68,-0.035189936267954615],[118,91,69,-0.04248461881716153],[118,91,70,-0.06410047125466332],[118,91,71,-0.08658779809706439],[118,91,72,-0.06802259958324927],[118,91,73,-0.07128572530410891],[118,91,74,-0.1174062698944303],[118,91,75,-0.15095489087662348],[118,91,76,-0.15844589134574183],[118,91,77,-0.15527950654708858],[118,91,78,-0.14180868890959775],[118,91,79,-0.13329493981984156],[118,92,64,-0.0916704282054005],[118,92,65,-0.08080078528589814],[118,92,66,-0.04066542747271495],[118,92,67,-0.02707391984857655],[118,92,68,-0.035668880470126375],[118,92,69,-0.04317145333329771],[118,92,70,-0.06522118641721111],[118,92,71,-0.08860590496736104],[118,92,72,-0.07000327193660998],[118,92,73,-0.0723873488576603],[118,92,74,-0.11859598926102594],[118,92,75,-0.15292171508288033],[118,92,76,-0.16067575681125193],[118,92,77,-0.15745177969557475],[118,92,78,-0.14384782054304843],[118,92,79,-0.13504333334678406],[118,93,64,-0.09283114630591033],[118,93,65,-0.08194006426461078],[118,93,66,-0.04117929518698558],[118,93,67,-0.02733124941454131],[118,93,68,-0.036151305012300815],[118,93,69,-0.043864247042437715],[118,93,70,-0.06635030128297123],[118,93,71,-0.09064297161082996],[118,93,72,-0.07200844854244869],[118,93,73,-0.07349891299633195],[118,93,74,-0.11978365306755782],[118,93,75,-0.15489127422722876],[118,93,76,-0.1629127715590528],[118,93,77,-0.15962796157265147],[118,93,78,-0.14588539667206576],[118,93,79,-0.13678869490796716],[118,94,64,-0.09399646281621757],[118,94,65,-0.08308543708539391],[118,94,66,-0.04169849453736229],[118,94,67,-0.02759253979830505],[118,94,68,-0.03663718020667578],[118,94,69,-0.044562872411809985],[118,94,70,-0.06748741172435714],[118,94,71,-0.09269795476584196],[118,94,72,-0.07403697895676511],[118,94,73,-0.07461949976868065],[118,94,74,-0.12096809527144123],[118,94,75,-0.1568618283267394],[118,94,76,-0.16515497638848947],[118,94,77,-0.1618062193280831],[118,94,78,-0.1479196259117351],[118,94,79,-0.13852918404396006],[118,95,64,-0.09516544706543383],[118,95,65,-0.08423620315810772],[118,95,66,-0.0422228887208679],[118,95,67,-0.02785787869796482],[118,95,68,-0.03712649012868373],[118,95,69,-0.045267208410295225],[118,95,70,-0.0686321111632664],[118,95,71,-0.09476976631336208],[118,95,72,-0.07608764148038849],[118,95,73,-0.07574815320586997],[118,95,74,-0.12214814236476619],[118,95,75,-0.1588316094124364],[118,95,76,-0.167400368666879],[118,95,77,-0.1639846911701154],[118,95,78,-0.14994869547488515],[118,95,79,-0.14026292307480548],[118,96,64,-0.09633715081520665],[118,96,65,-0.08539165175257761],[118,96,66,-0.04275234580736302],[118,96,67,-0.02812736813690173],[118,96,68,-0.0376192335446875],[118,96,69,-0.045977141372887935],[118,96,70,-0.06978399171416737],[118,96,71,-0.09685727441765606],[118,96,72,-0.07815914348704395],[118,96,73,-0.07688387929881316],[118,96,74,-0.12332261456200774],[118,96,75,-0.1607988234400146],[118,96,76,-0.16964690421822454],[118,96,77,-0.16616148877859663],[118,96,78,-0.1519707739886437],[118,96,79,-0.1419879985860424],[118,97,64,-0.09751060921390979],[118,97,65,-0.08655106308453857],[118,97,66,-0.04328673934012381],[118,97,67,-0.028401124988058253],[118,97,68,-0.03811542483166382],[118,97,69,-0.04669256586750655],[118,97,70,-0.07094264535033407],[118,97,71,-0.09895930478262778],[118,97,72,-0.08025012192151451],[118,97,73,-0.07802564607662624],[118,97,74,-0.1244903270420907],[118,97,75,-0.16276165231983586],[118,97,76,-0.1718924993788118],[118,97,77,-0.1683346998520914],[118,97,78,-0.15398401441439183],[118,97,79,-0.1437024630246574],[118,98,64,-0.09868484182913595],[118,98,65,-0.08771370945967631],[118,98,66,-0.04382594895017524],[118,98,67,-0.028679281488318813],[118,98,68,-0.03861509488514124],[118,98,69,-0.047413385560927855],[118,98,70,-0.07210766508956101],[118,98,71,-0.1010746420225632],[118,98,72,-0.08235914397082174],[118,98,73,-0.07917238378852831],[118,98,74,-0.1256500912414505],[118,98,75,-0.16471825606203738],[118,98,76,-0.17413503321674723],[118,98,77,-0.1705023907834771],[118,98,78,-0.15598655706379472],[118,98,79,-0.1454043364030338],[118,99,64,-0.09985885375692105],[118,99,65,-0.08887885647328676],[118,99,66,-0.04436986098221869],[118,99,67,-0.028961985740340434],[118,99,68,-0.03911829201151664],[118,99,69,-0.048139514080464775],[118,99,70,-0.07327864619547089],[118,99,71,-0.10320203114560238],[118,99,72,-0.0844847079108116],[118,99,73,-0.08032298519107577],[118,99,74,-0.12680071619456618],[118,99,75,-0.16666677503218505],[118,99,76,-0.17637234991196213],[118,99,77,-0.17266260945800077],[118,99,78,-0.15797653270312584],[118,99,79,-0.14709160810870467],[118,100,64,-0.10103163680591454],[118,100,65,-0.09004576426287741],[118,100,66,-0.0449183691299151],[118,100,67,-0.02924940219916362],[118,100,68,-0.03962508280083611],[118,100,69,-0.04887087586795649],[118,100,70,-0.07445518739042292],[118,100,71,-0.10534017914791359],[118,100,72,-0.08662524413008103],[118,100,73,-0.08147630594244934],[118,100,74,-0.12794100991836735],[118,100,75,-0.1686053323125858],[118,100,76,-0.1786022612927432],[118,100,77,-0.17481338816736428],[118,100,78,-0.15995206573776988],[118,100,79,-0.14876223881755662],[118,101,64,-0.10220217075448569],[118,101,65,-0.09121368881082527],[118,101,66,-0.04547137507819528],[118,101,67,-0.02954171214089772],[118,101,68,-0.04013555297606123],[118,101,69,-0.04960740702254909],[118,101,70,-0.07563689207587042],[118,101,71,-0.1074877567161221],[118,101,72,-0.08877911633264575],[118,101,73,-0.08263116510528423],[118,101,74,-0.1290697808368344],[118,101,75,-0.17053203616406304],[118,101,76,-0.18082254952437107],[118,101,77,-0.17695274663295676],[118,101,78,-0.16191127746841275],[118,101,79,-0.15041416250790615],[118,102,64,-0.10336942467845738],[118,102,65,-0.09238188329392862],[118,102,66,-0.04602878915011785],[118,102,67,-0.02983911411068736],[118,102,68,-0.04064980821474126],[118,102,69,-0.05034905612863387],[118,102,70,-0.07682336955585463],[118,102,71,-0.10964340003512585],[118,102,72,-0.0909446229201873],[118,102,73,-0.08378634575924405],[118,102,74,-0.1301858392419415],[118,102,75,-0.1724449825825841],[118,102,76,-0.18303096994488327],[118,102,77,-0.17907869513087224],[118,102,78,-0.16385228941004668],[118,102,79,-0.15204528857262153],[118,103,64,-0.10453235834696625],[118,103,65,-0.09354959947652976],[118,103,66,-0.046590530955756985],[118,103,67,-0.030141824347192852],[118,103,68,-0.04116797493902651],[118,103,69,-0.05109578506529821],[118,103,70,-0.07801423625925068],[118,103,71,-0.11180571269807836],[118,103,72,-0.09311999855420877],[118,103,73,-0.08494059572432869],[118,103,74,-0.13128799878707145],[118,103,75,-0.17434225794488692],[118,103,76,-0.18522525404254797],[118,103,77,-0.18118923771098783],[118,103,78,-0.16577322666466132],[118,103,79,-0.15365350402630057],[118,104,64,-0.10568992368371344],[118,104,65,-0.09471608914368096],[118,104,66,-0.0471565300405186],[118,104,67,-0.03045007718079803],[118,104,68,-0.04169020106993535],[118,104,69,-0.05184756979359967],[118,104,70,-0.0792091169562851],[118,104,71,-0.1139732677149406],[118,104,72,-0.09530341589788077],[118,104,73,-0.0860926283956429],[118,104,74,-0.13237507800894863],[118,104,75,-0.1762219417369392],[118,104,76,-0.18740311256915054],[118,104,77,-0.1832823755019829],[118,104,78,-0.16767222133821014],[118,104,79,-0.15523667580431502],[118,105,64,-0.10684106626331143],[118,105,65,-0.09588060546598981],[118,105,66,-0.04772672651032116],[118,105,67,-0.030764125392392833],[118,105,68,-0.04221665668874022],[118,105,69,-0.052604401106712904],[118,105,70,-0.08040764598229974],[118,105,71,-0.11614460967272258],[118,105,72,-0.09749298768573741],[118,105,73,-0.08724112382765903],[118,105,74,-0.1334459018632603],[118,105,75,-0.17808210938918723],[118,105,76,-0.18956223885379778],[118,105,77,-0.1853561100284003],[118,105,78,-0.16954741588548652],[118,105,79,-0.1567926532274698],[118,106,64,-0.10798469584064208],[118,106,65,-0.0970422826624941],[118,106,66,-0.04830104776668543],[118,106,67,-0.031084227328898414],[118,106,68,-0.04274747157441071],[118,106,69,-0.0533662711730511],[118,106,70,-0.0816094877664481],[118,106,71,-0.11831832324687831],[118,106,72,-0.09968694348491611],[118,106,73,-0.0883848918443428],[118,106,74,-0.13449929177753686],[118,106,75,-0.17992087156257147],[118,106,76,-0.19170039634763208],[118,106,77,-0.18740837109485334],[118,106,78,-0.17139684297893149],[118,106,79,-0.1583193633450663],[118,107,64,-0.10911963290974254],[118,107,65,-0.09819990206506225],[118,107,66,-0.0488793574061765],[118,107,67,-0.0314106132485677],[118,107,68,-0.04328260413387771],[118,107,69,-0.05413313881111897],[118,107,70,-0.0828143675041558],[118,107,71,-0.12049316213624638],[118,107,72,-0.10188397727106481],[118,107,73,-0.08952319832511114],[118,107,74,-0.13553405203322866],[118,107,75,-0.18173645374474282],[118,107,76,-0.19381559382290478],[118,107,77,-0.18943687826832192],[118,107,78,-0.1732181948074594],[118,107,79,-0.1598150136829215],[118,108,64,-0.11024469197364499],[118,108,65,-0.09935218582628508],[118,108,66,-0.04946150506521219],[118,108,67,-0.031743505011874354],[118,108,68,-0.04382197926651407],[118,108,69,-0.054904952475527895],[118,108,70,-0.08402201439750212],[118,108,71,-0.12266789026298869],[118,108,72,-0.10408284238151552],[118,108,73,-0.0906553953072473],[118,108,74,-0.13654900936364242],[118,108,75,-0.18352712109188052],[118,108,76,-0.19590590011313003],[118,108,77,-0.19143933156934848],[118,108,78,-0.1750091300907326],[118,108,79,-0.16127790254304422],[118,109,64,-0.1113587009108731],[118,109,65,-0.10049786408095979],[118,109,66,-0.050047338656228256],[118,109,67,-0.03208312157166199],[118,109,68,-0.04436552083322487],[118,109,69,-0.05568165673893136],[118,109,70,-0.08523215055197447],[118,109,71,-0.12484124831298597],[118,109,72,-0.10628226183161545],[118,109,73,-0.09178083770434368],[118,109,74,-0.13754302249347589],[118,109,75,-0.18529116319781935],[118,109,76,-0.19796940409460806],[118,109,77,-0.19341345676825955],[118,109,78,-0.17676734566842092],[118,109,79,-0.16270637647309072],[118,110,64,-0.11246050304164185],[118,110,65,-0.10163567713480363],[118,110,66,-0.050636704701804265],[118,110,67,-0.03242967868550638],[118,110,68,-0.04491315191525534],[118,110,69,-0.0564631924172912],[118,110,70,-0.08644449138754458],[118,110,71,-0.12701195597122628],[118,110,72,-0.10848093075393517],[118,110,73,-0.09289888469841204],[118,110,74,-0.13851498444509938],[118,110,75,-0.18702689733621466],[118,110,76,-0.20000421821534267],[118,110,77,-0.19535700977349876],[118,110,78,-0.1784905814266617],[118,110,79,-0.16409883409147616],[118,111,64,-0.11354895921511396],[118,111,65,-0.10276437769541785],[118,111,66,-0.05122944868319474],[118,111,67,-0.032783388631419295],[118,111,68,-0.04546479508085836],[118,111,69,-0.057249496696240666],[118,111,70,-0.08765874605222128],[118,111,71,-0.12917871422201052],[118,111,72,-0.11067751891926576],[118,111,73,-0.09400890113411976],[118,111,74,-0.13946382481136216],[118,111,75,-0.18873267169095265],[118,111,76,-0.2020084820216289],[118,111,77,-0.19726778102934903],[118,111,78,-0.18017662520286723],[118,111,79,-0.16545372982851422],[118,112,64,-0.11462294991058512],[118,112,65,-0.10388273313758355],[118,112,66,-0.05182541540259254],[118,112,67,-0.033144459928373976],[118,112,68,-0.0460203726592425],[118,112,69,-0.05804050325899949],[118,112,70,-0.08887461783855483],[118,112,71,-0.131340207710052],[118,112,72,-0.11287067333528046],[118,112,73,-0.09511025891172326],[118,112,74,-0.1403885119860226],[118,112,75,-0.1904068685647578],[118,112,76,-0.20398036567189726],[118,112,77,-0.19914359990787345],[118,112,78,-0.18182331765045948],[118,112,79,-0.16676957756932367],[118,113,64,-0.11568137734544763],[118,113,65,-0.10498952779489691],[118,113,66,-0.052424449358367896],[118,113,67,-0.03351309706305393],[118,113,68,-0.046579807021145433],[118,113,69,-0.05883614241623242],[118,113,70,-0.09009180460346945],[118,113,71,-0.13349510715817908],[118,113,72,-0.11505902091826987],[118,113,73,-0.09620233837515757],[118,113,74,-0.14128805534303845],[118,113,75,-0.19204790755598206],[118,113,76,-0.20591807342739443],[118,113,77,-0.20098233907989585],[118,113,78,-0.18342855704521732],[118,113,79,-0.1680449541845367],[118,114,64,-0.11672316758271707],[118,114,65,-0.10608356526962714],[118,114,66,-0.05302639513238516],[118,114,67,-0.03388950022409622],[118,114,68,-0.047143020865249165],[118,114,69,-0.059636341238134605],[118,114,70,-0.0913099991916819],[118,114,71,-0.13564207183695218],[118,114,72,-0.11724117123285052],[118,114,73,-0.09728452969161508],[118,114,74,-0.1421615073560875],[118,114,75,-0.19365424869353948],[118,114,76,-0.20781984710922993],[118,114,77,-0.20278191884985317],[118,114,78,-0.1849903040150691],[118,114,79,-0.16927850293515315],[118,115,64,-0.11774727209960921],[118,115,65,-0.10716367021516379],[118,115,66,-0.05363109724472402],[118,115,67,-0.03427386449508105],[118,115,68,-0.04770993695339549],[118,115,69,-0.06044102312649852],[118,115,70,-0.09252888929412172],[118,115,71,-0.13777975150617344],[118,115,72,-0.119415718712827],[118,115,73,-0.09835623363119755],[118,115,74,-0.14300796505588836],[118,115,75,-0.1952243949197917],[118,115,76,-0.20968396890484767],[118,115,77,-0.2045403108266485],[118,115,78,-0.1865065855563653],[118,115,79,-0.17046893611302755],[118,116,64,-0.1187525383824586],[118,116,65,-0.10822855762020434],[118,116,66,-0.05423826597017071],[118,116,67,-0.03466624345498821],[118,116,68,-0.04828034068846655],[118,116,69,-0.061249968664739536],[118,116,70,-0.09374801701904657],[118,116,71,-0.13990664653802287],[118,116,72,-0.12158110150836282],[118,116,73,-0.09941671732944726],[118,116,74,-0.1438264248396685],[118,116,75,-0.19675674637140242],[118,116,76,-0.21150861441301924],[118,116,77,-0.20625539025779263],[118,116,78,-0.18797534610812702],[118,116,79,-0.17161488314523857],[118,117,64,-0.11973753335581598],[118,117,65,-0.1092766542996511],[118,117,66,-0.05484729472865875],[118,117,67,-0.03506636370207857],[118,117,68,-0.048853692951433714],[118,117,69,-0.0620626260663682],[118,117,70,-0.0949665873989443],[118,117,71,-0.14202091634124944],[118,117,72,-0.12373540797878502],[118,117,73,-0.100464916953167],[118,117,74,-0.1446155834452761],[118,117,75,-0.19824940016214462],[118,117,76,-0.2132916505204365],[118,117,77,-0.20792473250088356],[118,117,78,-0.18939424203658572],[118,117,79,-0.17271468139513252],[118,118,64,-0.12070079928201571],[118,118,65,-0.11030635795007042],[118,118,66,-0.05545752016372827],[118,118,67,-0.03547388719011504],[118,118,68,-0.04942939587745488],[118,118,69,-0.06287837971273323],[118,118,70,-0.09618374014739735],[118,118,71,-0.1441206562285167],[118,118,72,-0.12587665681289464],[118,118,73,-0.10149971909815055],[118,118,74,-0.14537412275875883],[118,118,75,-0.19970043917527702],[118,118,76,-0.2150309274507226],[118,118,77,-0.20954590879230067],[118,118,78,-0.19076094049731396],[118,118,79,-0.17376667642503324],[118,119,64,-0.12164089813896334],[118,119,65,-0.11131608231288467],[118,119,66,-0.056068265965270196],[118,119,67,-0.03588845491554072],[118,119,68,-0.05000683756623976],[118,119,69,-0.06369659521751826],[118,119,70,-0.09739859553149194],[118,119,71,-0.14620394600627717],[118,119,72,-0.1280028464710181],[118,119,73,-0.10252000903233885],[118,119,74,-0.14610075898667277],[118,119,75,-0.20110798282565476],[118,119,76,-0.21672433039035705],[118,119,77,-0.21111653917684908],[118,119,78,-0.1920731730231976],[118,119,79,-0.1747692745882392],[118,120,64,-0.12255641399156565],[118,120,65,-0.11230425986059916],[118,120,66,-0.05667884376610463],[118,120,67,-0.036309687200198414],[118,120,68,-0.050585392886633926],[118,120,69,-0.06451662009943167],[118,120,70,-0.09861025536349229],[118,120,71,-0.14826885320808522],[118,120,72,-0.13011195879172247],[118,120,73,-0.10352467255216766],[118,120,74,-0.1467942448765596],[118,120,75,-0.20247019038808045],[118,120,76,-0.2183697831975475],[118,120,77,-0.2126342970042395],[118,120,78,-0.1933287401389674],[118,120,79,-0.17572094614460598],[118,121,64,-0.12344595536565685],[118,121,65,-0.11326934449864297],[118,121,66,-0.057288554098358084],[118,121,67,-0.03673718404610546],[118,121,68,-0.051164424340001936],[118,121,69,-0.06533778451973904],[118,121,70,-0.09981780406006334],[118,121,71,-0.15031343640574074],[118,121,72,-0.13220196268911336],[118,121,73,-0.10451259787416046],[118,121,74,-0.14745337189692828],[118,121,75,-0.20378526429262733],[118,121,76,-0.2199652520846807],[118,121,77,-0.2140969133683304],[118,121,78,-0.19452551586430722],[118,121,79,-0.1766202282529993],[118,122,64,-0.12430815761718171],[118,122,65,-0.11420981427435048],[118,122,66,-0.057896687407522435],[118,122,67,-0.03717052556215079],[118,122,68,-0.051743282980485715],[118,122,69,-0.06615940208376246],[118,122,70,-0.10102030976797735],[118,122,71,-0.15233574859087282],[118,122,72,-0.1342708179321905],[118,122,73,-0.10548267755711306],[118,122,74,-0.14807697236952994],[118,122,75,-0.20505145337751726],[118,122,76,-0.22150874926427447],[118,122,77,-0.2155021814751972],[118,122,78,-0.19566145209014957],[118,122,79,-0.17746572783060524],[118,123,64,-0.1251416852894371],[118,123,65,-0.11512417408461809],[118,123,66,-0.058502525121879756],[118,123,67,-0.03760927246232198],[118,123,68,-0.052321309390012984],[118,123,69,-0.06698077070524523],[118,123,70,-0.1022168255549788],[118,123,71,-0.1543338406192144],[118,123,72,-0.13631647899731222],[118,123,73,-0.10643381045006228],[118,123,74,-0.1486639215469034],[118,123,75,-0.206267056090257],[118,123,76,-0.2229983365484292],[118,123,77,-0.2168479609263351],[118,123,78,-0.1967345828132468],[118,123,79,-0.1782561242695709],[118,124,64,-0.1259452344511812],[118,124,65,-0.11601095837374978],[118,124,66,-0.05910534077474304],[118,124,67,-0.03805296663477614],[118,124,68,-0.05289783470569737],[118,124,69,-0.0678011735322199],[118,124,70,-0.10340639066419892],[118,124,71,-0.15630576470948032],[118,124,72,-0.13833689898440568],[118,124,73,-0.10736490366104703],[118,124,74,-0.1492131396283388],[118,124,75,-0.20743042362782788],[118,124,76,-0.22443212889184566],[118,124,77,-0.21813218190354788],[118,124,78,-0.1977430282145831],[118,124,79,-0.17899017200194622],[118,125,64,-0.12671753500849425],[118,125,65,-0.11686873381305925],[118,125,66,-0.059704401176791363],[118,125,67,-0.03850113178084006],[118,125,68,-0.05347218169711276],[118,125,69,-0.06861987993283436],[118,125,70,-0.10458803183031608],[118,125,71,-0.1582495779885276],[118,125,72,-0.14033003358726334],[118,125,73,-0.10827487454158927],[118,125,74,-0.14972359370764135],[118,125,75,-0.20853996300688393],[118,125,76,-0.22580829786861195],[118,125,77,-0.21935284924242018],[118,125,78,-0.19868499856780653],[118,125,79,-0.1796667029044902],[118,126,64,-0.12745735298338043],[118,126,65,-0.11769610195387643],[118,126,66,-0.06029896763559651],[118,126,67,-0.038953274122759854],[118,126,68,-0.05404366589073528],[118,126,69,-0.06943614653936175],[118,126,70,-0.10576076465539112],[118,126,71,-0.16016334607418803],[118,126,72,-0.1422938451079229],[118,126,73,-0.10916265268170022],[118,126,74,-0.1501942996463435],[118,126,75,-0.20959414005513882],[118,126,76,-0.22712507507315813],[118,126,77,-0.2205080463816466],[118,126,78,-0.19955879796446976],[118,126,79,-0.1802846285354968],[118,127,64,-0.12816349275213626],[118,127,65,-0.11849170184563375],[118,127,66,-0.06088829721921437],[118,127,67,-0.03940888317873658],[118,127,68,-0.054611596738636914],[118,127,69,-0.07024921834837945],[118,127,70,-0.10692359504206009],[118,127,71,-0.1620451466869334],[118,127,72,-0.1442263065048428],[118,127,73,-0.11002718191010075],[118,127,74,-0.15062432386620872],[118,127,75,-0.21059148231524255],[118,127,76,-0.22838075543587677],[118,127,77,-0.22159593917584283],[118,127,78,-0.20036282784349307],[118,127,79,-0.1808429421963632],[118,128,64,-0.12883479923668015],[118,128,65,-0.11925421261086078],[118,128,66,-0.06147164406057545],[118,128,67,-0.03986743260355363],[118,128,68,-0.0551752788283728],[118,128,69,-0.07105832987491718],[118,128,70,-0.10807552068155218],[118,128,71,-0.16389307328134775],[118,128,72,-0.14612540546435748],[118,128,73,-0.11086742229429662],[118,128,74,-0.15101278505519836],[118,128,75,-0.21153058185275217],[118,128,76,-0.22957370044419378],[118,128,77,-0.22261477955994619],[118,128,78,-0.20109559031300586],[118,128,79,-0.18134072081130728],[118,129,64,-0.12947016004216402],[118,129,65,-0.11998235596903627],[118,129,66,-0.06204826069923787],[118,129,67,-0.040328381092848545],[118,129,68,-0.05573401313083768],[118,129,69,-0.07186270635816351],[118,129,70,-0.10921553259376927],[118,129,71,-0.1657052386882025],[118,129,72,-0.14798914848468425],[118,129,73,-0.11168235213509063],[118,129,74,-0.1513588557813593],[118,129,75,-0.21241009796004764],[118,129,76,-0.23070234126009292],[118,129,77,-0.22356290905379247],[118,129,78,-0.20175569125345363],[118,129,79,-0.18177712661928097],[118,130,64,-0.1300685075343009],[118,130,65,-0.12067489870136079],[118,130,66,-0.06261739945687794],[118,130,67,-0.04079117334881123],[118,130,68,-0.05628709828268922],[118,130,69,-0.07266156501609744],[118,130,70,-0.11034261671643174],[118,130,71,-0.167479778757792],[118,130,72,-0.14981556496157372],[118,130,73,-0.11247096995004681],[118,130,74,-0.1516617640093543],[118,130,75,-0.2132287597482754],[118,130,76,-0.23176518172532226],[118,130,77,-0.2244387620959192],[118,130,78,-0.20234184319160822],[118,130,79,-0.182151408672783],[118,131,64,-0.13062882085006822],[118,131,65,-0.1213306550487373],[118,131,66,-0.06317831384278046],[118,131,67,-0.04125524110487459],[118,131,68,-0.056833831899816965],[118,131,69,-0.07345411634623891],[118,131,70,-0.11145575554008533],[118,131,71,-0.16921485599506392],[118,131,72,-0.15160271126456615],[118,131,73,-0.1132322964404264],[118,131,74,-0.15192079451473436],[118,131,75,-0.21398536861977419],[118,131,76,-0.23276080124586018],[118,131,77,-0.22524086919624697],[118,131,78,-0.20285286793595697],[118,131,79,-0.1824629041389845],[118,132,64,-0.1311501278356003],[118,132,65,-0.1219484890354145],[118,132,66,-0.0637302599854451],[118,132,67,-0.04172000420672835],[118,132,68,-0.057373511918201746],[118,132,69,-0.07423956546952833],[118,132,70,-0.11255392978558504],[118,132,71,-0.17090866317704284],[118,132,72,-0.15334867479274672],[118,132,73,-0.11396537643611389],[118,132,74,-0.1521352901913632],[118,132,75,-0.21467880061373373],[118,132,76,-0.23368785754750587],[118,132,77,-0.22596785989784657],[118,132,78,-0.20328769896479043],[118,132,79,-0.18271103939929165],[118,133,64,-0.13163150690529238],[118,133,65,-0.12252731671096129],[118,133,66,-0.06427249808627887],[118,133,67,-0.042184871746739495],[118,133,68,-0.05790543795836656],[118,133,69,-0.07501711351414111],[118,133,70,-0.11363612012043021],[118,133,71,-0.1725594269429473],[118,133,72,-0.15505157799879984],[118,133,73,-0.1146692808130388],[118,133,74,-0.1523046532477396],[118,133,75,-0.21530800861817337],[118,133,76,-0.23454508929478504],[118,133,77,-0.22661846553858672],[118,133,78,-0.2036453835591358],[118,133,79,-0.18289533094414254],[118,134,64,-0.13207208881638233],[118,134,65,-0.12306610830350623],[118,134,66,-0.06480429389126212],[118,134,67,-0.04264924324866927],[118,134,68,-0.05842891270953203],[118,134,69,-0.07578595903589579],[118,134,70,-0.11470130891017308],[118,134,71,-0.17416541134742083],[118,134,72,-0.15670958237017654],[118,134,73,-0.1153431083776613],[118,134,74,-0.15242834628835708],[118,134,75,-0.21587202444174436],[118,134,76,-0.23533131856576958],[118,134,77,-0.22719152180413268],[118,134,78,-0.20392508467362],[118,134,79,-0.18301538606059517],[118,135,64,-0.1324710583534916],[118,135,65,-0.12356389027741393],[118,135,66,-0.06532492017636007],[118,135,67,-0.04311250989937069],[118,135,68,-0.0589432433294938],[118,135,69,-0.07654529947176082],[118,135,70,-0.11574848200095399],[118,135,71,-0.17572492136733203],[118,135,72,-0.15832089235622668],[118,135,73,-0.11598598771314056],[118,135,74,-0.15250589327658634],[118,135,75,-0.2163699607392075],[118,135,76,-0.23604545317575468],[118,135,77,-0.22768597106440036],[118,135,78,-0.20412608253923203],[118,135,79,-0.18307090331096953],[118,136,64,-0.13282765591788176],[118,136,65,-0.12401974728886479],[118,136,66,-0.06583365824236202],[118,136,67,-0.04357405582393383],[118,136,68,-0.059447742856133294],[118,136,69,-0.07729433262278622],[118,136,70,-0.11677663052901481],[118,136,71,-0.17723630635260024],[118,136,72,-0.15988375923017326],[118,136,73,-0.11659707898185198],[118,136,74,-0.1525368803759556],[118,136,75,-0.2168010127848795],[118,136,76,-0.2366864888431737],[118,136,77,-0.22810086448625919],[118,136,78,-0.20424777599287913],[118,136,79,-0.18306167280152166],[118,137,64,-0.1331411790164396],[118,137,65,-0.12443282403309801],[118,137,66,-0.06632979941476713],[118,137,67,-0.04403325940058863],[118,137,68,-0.05994173162642755],[118,137,69,-0.07803225816268203],[118,137,70,-0.11778475275293684],[118,137,71,-0.17869796341164995],[118,137,72,-0.16139648487496355],[118,137,73,-0.11717557567903965],[118,137,74,-0.15252095666708973],[118,137,75,-0.21716446008875193],[118,137,76,-0.2372535111915413],[118,137,77,-0.2284353639159919],[118,137,78,-0.20428968352958488],[118,137,79,-0.1829875762408657],[118,138,64,-0.13341098364570597],[118,138,65,-0.1248023269774133],[118,138,66,-0.06681264654428029],[118,138,67,-0.04448949461149853],[118,138,68,-0.06042453869876244],[118,138,69,-0.07875827916812875],[118,138,70,-0.11877185590419106],[118,138,71,-0.18010834072218698],[118,138,72,-0.1628574254821552],[118,138,73,-0.11772070633248753],[118,138,74,-0.15245783473797545],[118,138,75,-0.21745966785044774],[118,138,76,-0.2377456975816823],[118,138,77,-0.228688743525742],[118,138,78,-0.2042514440741229],[118,138,79,-0.182848586788577],[118,139,64,-0.13363648556655144],[118,139,65,-0.12512752597434856],[118,139,66,-0.06728151550342308],[118,139,67,-0.044942132425406456],[118,139,68,-0.06089550327429474],[118,139,69,-0.07947160366677576],[118,139,70,-0.11973695805144885],[118,139,71,-0.18146594075812364],[118,139,72,-0.16426499515317347],[118,139,73,-0.11823173614320631],[118,139,74,-0.15234729114559967],[118,139,75,-0.2176860882466313],[118,139,76,-0.2381623187689555],[118,139,77,-0.2288603912189151],[118,139,78,-0.20413281746982642],[118,139,79,-0.18264476869509946],[118,140,64,-0.1338171614654114],[118,140,65,-0.1254077557498147],[118,140,66,-0.06773573667475434],[118,140,67,-0.04539054220797748],[118,140,68,-0.06135397611310701],[118,140,69,-0.08017144619881408],[118,140,70,-0.12067908997403272],[118,140,71,-0.1827693234237182],[118,140,72,-0.1656176693925386],[118,140,73,-0.11870796856230068],[118,140,74,-0.15218916674742833],[118,140,75,-0.21784326154795391],[118,140,76,-0.23850274038065947],[118,140,77,-0.2289498097902579],[118,140,78,-0.20393368468328255],[118,140,79,-0.18237627673480733],[118,141,64,-0.13395254999834555],[118,141,65,-0.12564241726135264],[118,141,66,-0.06817465642617829],[118,141,67,-0.045834093155541246],[118,141,68,-0.06179932094087192],[118,141,69,-0.08085702938790072],[118,141,70,-0.12159729703974959],[118,141,71,-0.18401710908614932],[118,141,72,-0.1669139884828907],[118,141,73,-0.1191487467993251],[118,141,74,-0.15198336690160125],[118,141,75,-0.21793081706213438],[118,141,76,-0.238766424209332],[118,141,77,-0.22895661783711627],[118,141,78,-0.20365404772457993],[118,141,79,-0.18204335543474442],[118,142,64,-0.13404225271448386],[118,142,65,-0.1258309789220447],[118,142,66,-0.06859763856881533],[118,142,67,-0.046272155747827615],[118,142,68,-0.06223091584174791],[118,142,69,-0.08152758551714973],[118,142,70,-0.12249064108230008],[118,142,71,-0.18520798149804105],[118,142,72,-0.16815256073197324],[118,142,73,-0.11955345525762273],[118,142,74,-0.15172986153511286],[118,142,75,-0.21794847390022953],[118,142,76,-0.23895292931812806],[118,142,77,-0.22888055041912897],[118,142,78,-0.20329402928371587],[118,142,79,-0.18164633810223732],[118,143,64,-0.13408593485579862],[118,143,65,-0.12597297768602814],[118,143,66,-0.06900406579293966],[118,143,67,-0.0467041032152012],[118,143,68,-0.06264815463325059],[118,143,69,-0.08218235810584615],[118,143,70,-0.1233582022733786],[118,143,71,-0.18634069060170474],[118,143,72,-0.1693320655820583],[118,143,73,-0.11992152089233069],[118,143,74,-0.15142868507966636],[118,143,75,-0.21789604156368447],[118,143,76,-0.2390619129550063],[118,143,77,-0.22872145946440672],[118,143,78,-0.20285387208472533],[118,143,79,-0.18118564565523446],[118,144,64,-0.13408332603049547],[118,144,65,-0.12606801999197795],[118,144,66,-0.06939334107751946],[118,144,67,-0.047129313015812094],[118,144,68,-0.06305044821887029],[118,144,69,-0.08282060348248878],[118,144,70,-0.12419908098452742],[118,144,71,-0.18741405520716967],[118,144,72,-0.17045125657267735],[118,144,73,-0.12025241448694793],[118,144,74,-0.1510799362752997],[118,144,75,-0.21777342035026215],[118,144,76,-0.23909313127298995],[118,144,77,-0.22847931392103418],[118,144,78,-0.20233393796002425],[118,144,79,-0.18066178525985893],[118,145,64,-0.13403422075766377],[118,145,65,-0.12611578256134057],[118,145,66,-0.0697648890689557],[118,145,67,-0.04754716831804133],[118,145,68,-0.06343722591427425],[118,145,69,-0.08344159234976366],[118,145,70,-0.12501239963380248],[118,145,71,-0.18842696553644275],[118,145,72,-0.1715089641479525],[118,145,73,-0.1205456518445877],[118,145,74,-0.15068377784226777],[118,145,75,-0.21758060157745668],[118,145,76,-0.23904643985428856],[118,145,77,-0.22815419965350078],[118,145,78,-0.2017347066483657],[118,145,79,-0.18007534878026712],[118,146,64,-0.13393847888122082],[118,146,65,-0.12611601304854025],[118,146,66,-0.07011815742466097],[118,146,67,-0.04795705948353647],[118,146,68,-0.06380793674295601],[118,146,69,-0.08404461133699169],[118,146,70,-0.12579730451225132],[118,146,71,-0.18937838562674023],[118,146,72,-0.17250409830021848],[118,146,73,-0.12080079489026709],[118,146,74,-0.15024043602208823],[118,146,75,-0.21731766762253335],[118,146,76,-0.23892179403663372],[118,146,77,-0.2277463190844667],[118,146,78,-0.20105677432072577],[118,146,79,-0.17942701104650396],[118,147,64,-0.1337960258515511],[118,147,65,-0.12606853054084013],[118,147,66,-0.07045261811724483],[118,147,67,-0.048358385546162314],[118,147,68,-0.06416205069733066],[118,147,69,-0.08462896453565535],[118,147,70,-0.12655296758525209],[118,147,71,-0.19026735558589153],[118,147,72,-0.17343565104216543],[118,147,73,-0.12101745268084545],[118,147,74,-0.1497501999890276],[118,147,75,-0.21698479177885915],[118,147,76,-0.2387192490407289],[118,147,77,-0.22725599058303514],[118,147,78,-0.20030085183928326],[118,147,79,-0.17871752794658657],[118,148,64,-0.13360685287362703],[118,148,65,-0.1259732259059736],[118,148,66,-0.07076776869513376],[118,148,67,-0.048750555682137695],[118,148,68,-0.06449905996131787],[118,148,69,-0.08519397501357935],[118,148,70,-0.12727858826375088],[118,148,71,-0.19109299369347704],[118,148,72,-0.17430269870018397],[118,148,73,-0.12119528231948237],[118,148,74,-0.1492134211337079],[118,148,75,-0.2165822379287083],[118,148,76,-0.23843895989826205],[118,148,77,-0.22668364760147494],[118,148,78,-0.19946776275553257],[118,148,79,-0.17794773434958927],[118,149,64,-0.13337101692079598],[118,149,65,-0.12583006198614058],[118,149,66,-0.07106313349559293],[118,149,67,-0.04913299066666294],[118,149,68,-0.06481848009058785],[118,149,69,-0.08573898630339208],[118,149,70,-0.12797339514047304],[118,149,71,-0.1918544983417125],[118,149,72,-0.17510440402214675],[118,149,73,-0.12133398977175942],[118,149,74,-0.1486305122208888],[118,149,75,-0.21611036003326972],[118,149,76,-0.23808118118051047],[118,149,77,-0.2260298375631055],[118,149,78,-0.1985584410543794],[118,149,79,-0.17711854186700207],[118,150,64,-0.1330886406137889],[118,150,65,-0.12563907363741225],[118,150,66,-0.0713382648062433],[118,150,67,-0.04950512431237415],[118,150,68,-0.06511985114677082],[118,150,69,-0.0862633638609555],[118,150,70,-0.12863664768626462],[118,150,71,-0.1925511498105792],[118,150,72,-0.1758400180934371],[118,150,73,-0.12143333058090368],[118,150,74,-0.1480019464238404],[118,150,75,-0.21556960144108195],[118,150,76,-0.23764626652809634],[118,150,77,-0.22529522050479067],[118,150,78,-0.19757392865185724],[118,150,79,-0.17623093646009164],[118,151,64,-0.13275991196492787],[118,151,65,-0.12540036761407578],[118,151,66,-0.07159274397131517],[118,151,67,-0.04986640488499559],[118,151,68,-0.06540273878205236],[118,151,69,-0.08676649648949016],[118,151,70,-0.12926763790174853],[118,151,71,-0.19318231187212442],[118,151,72,-0.17650888205557816],[118,151,73,-0.12149311047983036],[118,151,74,-0.14732825623809678],[118,151,75,-0.21496049401667155],[118,151,76,-0.23713466798303803],[118,151,77,-0.22448056747823386],[118,151,78,-0.19651537265486993],[118,151,79,-0.17528597590143272],[118,152,64,-0.13238508398787255],[118,152,65,-0.12511412229790222],[118,152,66,-0.07182618243904147],[118,152,67,-0.050216296491641124],[118,152,68,-0.06566673527074522],[118,152,69,-0.08724779772522792],[118,152,70,-0.12986569191960803],[118,152,71,-0.19374743321941051],[118,152,72,-0.17711042862246226],[118,152,73,-0.12151318589804087],[118,152,74,-0.14661003227770827],[118,152,75,-0.21428365709165118],[118,152,76,-0.2365469351247718],[118,152,77,-0.22358675871497163],[118,152,78,-0.1953840223920732],[118,152,79,-0.1742847870991682],[118,153,64,-0.13196447417366092],[118,153,65,-0.12478058727280877],[118,153,66,-0.07203822274677375],[118,153,67,-0.05055428043729551],[118,153,68,-0.0659114604845823],[118,153,69,-0.08770670718050799],[118,153,70,-0.1304301715528942],[118,153,71,-0.1942460487160746],[118,153,72,-0.17764418338978452],[118,153,73,-0.12149346436171601],[118,153,74,-0.1458479219574634],[118,153,75,-0.21353979624107203],[118,153,76,-0.235883714012387],[118,153,77,-0.2226147815606661],[118,153,78,-0.19418122622570286],[118,153,79,-0.17322856329292152],[118,154,64,-0.13149846383418626],[118,154,65,-0.1244000827458497],[118,154,66,-0.07222853944058782],[118,154,67,-0.05087985654509813],[118,154,68,-0.06613656280864741],[118,154,69,-0.08814269184033226],[118,154,70,-0.1309604757848634],[118,154,71,-0.19467778046298262],[118,154,72,-0.1781097659339137],[118,154,73,-0.12143390478565011],[118,154,74,-0.14504262806485552],[118,154,75,-0.2127297018882995],[118,154,76,-0.23514574593585005],[118,154,77,-0.22156572818496933],[118,154,78,-0.1929084281547838],[118,154,79,-0.17211856113059326],[118,155,64,-0.13098749731462642],[118,155,65,-0.12397299881593543],[118,155,66,-0.07239683992635942],[118,155,67,-0.051192544436195225],[118,155,68,-0.06634171999506731],[118,155,69,-0.08855524730855321],[118,155,70,-0.13145604219603135],[118,155,71,-0.19504233867905305],[118,155,72,-0.17850689069713344],[118,155,73,-0.12133451765602059],[118,155,74,-0.14419490722588413],[118,155,75,-0.21185424774217756],[118,155,76,-0.23433386597952496],[118,155,77,-0.22044079307387568],[118,155,78,-0.19156716422076134],[118,155,79,-0.17095609763557038],[118,156,64,-0.1304320810767513],[118,156,65,-0.12349979459215892],[118,156,66,-0.07254286524949934],[118,156,67,-0.05149188476503768],[118,156,68,-0.06652663995176696],[118,156,69,-0.0889438989999677],[118,156,70,-0.13191634832422697],[118,156,71,-0.19533952239381375],[118,156,72,-0.17883536765680402],[118,156,73,-0.12119536510328122],[118,156,74,-0.14330556826907243],[118,156,75,-0.21091438907072807],[118,156,76,-0.23344900140183628],[118,156,77,-0.21924127031211646],[118,156,78,-0.1901590587271467],[118,156,79,-0.1697425470741077],[118,157,64,-0.1298327826553831],[118,157,65,-0.12298099716404638],[118,157,66,-0.07266639080076714],[118,157,67,-0.05177744040617174],[118,157,68,-0.06669106146381538],[118,157,69,-0.08930820327477262],[118,157,70,-0.13234091295364667],[118,157,71,-0.19556921994988238],[118,157,72,-0.1790951027767166],[118,157,73,-0.12101656086481613],[118,157,74,-0.14237547049234234],[118,157,75,-0.2099111608160733],[118,157,76,-0.23249216983541066],[118,157,77,-0.21796855066372675],[118,157,78,-0.1886858202852615],[118,157,79,-0.16847933773284368],[118,158,64,-0.1291902294906807],[118,158,65,-0.12241720042651966],[118,158,66,-0.07276722694582757],[118,158,67,-0.05204879758873887],[118,158,68,-0.0668347548451078],[118,158,69,-0.08964774851199787],[118,158,70,-0.13272929732907182],[118,158,71,-0.19573140931410019],[118,158,72,-0.1792860982395844],[118,158,73,-0.12079827013732104],[118,158,74,-0.14140552183766203],[118,158,75,-0.20884567555573927],[118,158,76,-0.23146447731255243],[118,158,77,-0.2166241184594993],[118,158,78,-0.18714923769864097],[118,158,79,-0.16716794861658324],[118,159,64,-0.12850510763927922],[118,159,65,-0.12180906376280354],[118,159,66,-0.07284521957646059],[118,159,67,-0.052305566975076406],[118,159,68,-0.06695752251835345],[118,159,69,-0.08996215611870102],[118,159,70,-0.13308110629160563],[118,159,71,-0.19582615819662777],[118,159,72,-0.17940845246030104],[118,159,73,-0.12054070931919712],[118,159,74,-0.1403966769786134],[118,159,75,-0.20771912131592435],[118,159,76,-0.23036711612139776],[118,159,77,-0.21520954830057024],[118,159,78,-0.18555117569905302],[118,159,79,-0.16580990607659202],[118,160,64,-0.12777816036764528],[118,160,65,-0.12115731058891607],[118,160,66,-0.07290025058158865],[118,160,67,-0.05254738468002088],[118,160,68,-0.06705919952158348],[118,160,69,-0.09025108147191686],[118,160,70,-0.1333959893325187],[118,160,71,-0.1958536239779137],[118,160,72,-0.1794623598803088],[118,160,73,-0.12024414564358006],[118,160,74,-0.13934993532622333],[118,160,75,-0.20653275924269426],[118,160,76,-0.2292013624985188],[118,160,77,-0.2137265015878566],[118,160,78,-0.18389357054742744],[118,160,79,-0.16440678037971765],[118,161,64,-0.1270101866314046],[118,161,65,-0.12046272676385361],[118,161,66,-0.07293223823657119],[118,161,67,-0.052773913227727724],[118,161,68,-0.06713965393963718],[118,161,69,-0.09051421479054693],[118,161,70,-0.13367364156199646],[118,161,71,-0.1958140534440055],[118,161,72,-0.17944811054410117],[118,161,73,-0.11990889670295861],[118,161,74,-0.13826633895864904],[118,161,75,-0.20528792113752553],[118,161,76,-0.2279685741642684],[118,161,77,-0.21217672288758332],[118,161,78,-0.18217842551333707],[118,161,79,-0.1629601822287233],[118,162,64,-0.12620203944468505],[118,162,65,-0.11972615886995004],[118,162,66,-0.07294113750947845],[118,162,67,-0.052984842443053265],[118,162,68,-0.06719878725934388],[118,162,69,-0.09075128193460273],[118,162,70,-0.13391380458984709],[118,162,71,-0.1957077823312873],[118,162,72,-0.17936608945959598],[118,162,73,-0.11953532986665875],[118,162,74,-0.13714697048044563],[118,162,75,-0.20398600686393015],[118,162,76,-0.22667018770752928],[118,162,77,-0.21056203614351593],[118,162,78,-0.1804078062468819],[118,162,79,-0.16147175924418683],[118,163,64,-0.12535462414385984],[118,163,65,-0.11894851236830022],[118,163,66,-0.07292694028333842],[118,163,67,-0.05317989027477133],[118,163,68,-0.06723653464735924],[118,163,69,-0.0909620451294228],[118,163,70,-0.13411626731544968],[118,163,71,-0.19553523468227219],[118,163,72,-0.17921677574477912],[118,163,73,-0.11912386159277957],[118,163,74,-0.13599295081731438],[118,163,75,-0.202628481632268],[118,163,76,-0.22530771582696152],[118,163,77,-0.20888434074692924],[118,163,78,-0.17858383605703676],[118,163,79,-0.15994319241828434],[118,164,64,-0.12446889655040286],[118,164,65,-0.11813074963453879],[118,164,66,-0.07288967549365379],[118,164,67,-0.053358803548168555],[118,164,68,-0.06725286514989944],[118,164,69,-0.0911463036127346],[118,164,70,-0.13428086662450245],[118,164,71,-0.19529692201467938],[118,164,72,-0.17900074156371756],[118,164,73,-0.1186749566365013],[118,164,74,-0.1348054369523903],[118,164,75,-0.20121687317020648],[118,164,76,-0.2238827444362579],[118,164,77,-0.20714560747570976],[118,164,78,-0.17670869111069276],[118,164,79,-0.1583761925507181],[118,165,64,-0.12354586103782969],[118,165,65,-0.1172738878806034],[118,165,66,-0.07282940918077374],[118,165,67,-0.053521358644821715],[118,165,68,-0.06724778181387878],[118,165,69,-0.09130389420268552],[118,165,70,-0.13440748799042165],[118,165,71,-0.19499344230660992],[118,165,72,-0.1787186508557281],[118,165,73,-0.11818912715699091],[118,165,74,-0.13358561961021984],[118,165,75,-0.1997527687865537],[118,165,76,-0.22239692964124605],[118,165,77,-0.2053478743142782],[118,165,78,-0.17478459556667955],[118,165,79,-0.1567724966769079],[118,166,64,-0.12258656850800398],[118,166,65,-0.11637899696847476],[118,166,66,-0.07274624445698678],[118,166,67,-0.053667362107608994],[118,166,68,-0.0672213217292047],[118,166,69,-0.09143469178517821],[118,166,70,-0.13449606597846409],[118,166,71,-0.19462547880113606],[118,166,72,-0.17837125786208688],[118,166,73,-0.11766693172540504],[118,166,74,-0.13233472089468212],[118,166,75,-0.19823781233649806],[118,166,76,-0.22085199459703939],[118,166,77,-0.20349324216630557],[118,166,78,-0.17281381665911216],[118,166,79,-0.1551338644984127],[118,167,64,-0.12159211428234881],[118,167,65,-0.11544719712222241],[118,167,66,-0.07264032138853695],[118,167,67,-0.05379665116933597],[118,167,68,-0.06717355599230102],[118,167,69,-0.09153860971916679],[118,167,70,-0.1345465846510208],[118,167,71,-0.19419379863425695],[118,167,72,-0.17795940545539518],[118,167,73,-0.11710897423683485],[118,167,74,-0.1310539918872056],[118,167,75,-0.1966737010965442],[118,167,76,-0.21924972625376918],[118,167,77,-0.20158387047244014],[118,167,78,-0.17079865974440545],[118,167,79,-0.15346207482538007],[118,168,64,-0.12056363591373961],[118,168,65,-0.11447965654497505],[118,168,66,-0.07251181679303206],[118,168,67,-0.05390909420360128],[118,168,68,-0.06710458959116013],[118,168,69,-0.09161560015878203],[118,168,70,-0.13455907787275576],[118,168,71,-0.19369925129063656],[118,168,72,-0.17748402327726606],[118,168,73,-0.11651590272926816],[118,168,74,-0.12974471021164907],[118,168,75,-0.1950621825576471],[118,168,76,-0.2175919719996894],[118,168,77,-0.19962197274542876],[118,168,78,-0.16874146332619983],[118,168,79,-0.15175892204056315],[118,169,64,-0.11950231092511493],[118,169,65,-0.11347758894775625],[118,169,66,-0.07236094395304334],[118,169,67,-0.054004591096851684],[118,169,68,-0.06701456121252677],[118,169,69,-0.0916656542914563],[118,169,70,-0.13453362951460754],[118,169,71,-0.19314276689210624],[118,169,72,-0.1769461256906487],[118,169,73,-0.1158884081129549],[118,169,74,-0.1284081775722946],[118,169,75,-0.19340505114529033],[118,169,76,-0.21588063621076722],[118,169,77,-0.1976098120352082],[118,169,78,-0.16664459407237503],[118,169,79,-0.15002621259422402],[118,170,64,-0.11840935448100279],[118,170,65,-0.11244225099734446],[118,170,66,-0.07218795224697136],[118,170,67,-0.05408307354086192],[118,170,68,-0.06690364297207133],[118,170,69,-0.09168880249148162],[118,170,70,-0.13447037355597405],[118,170,71,-0.19252535432440987],[118,170,72,-0.17634680955367557],[118,170,73,-0.1152272228137948],[118,170,74,-0.1270457172713573],[118,170,75,-0.19170414487536505],[118,170,76,-0.21411767671603585],[118,170,77,-0.19554969633658806],[118,170,78,-0.16451044183809382],[118,170,79,-0.14826576153890078],[118,171,64,-0.11728601699842603],[118,171,65,-0.11137493969062938],[118,171,66,-0.07199312669858701],[118,171,67,-0.05414450524519521],[118,171,68,-0.06677204006869908],[118,171,69,-0.09168511438872241],[118,171,70,-0.13436949408471302],[118,171,71,-0.19184809920816112],[118,171,72,-0.17568725182248437],[118,171,73,-0.11453311933464223],[118,171,74,-0.12565867171247447],[118,171,75,-0.18996134195494757],[118,171,76,-0.2123051011882896],[118,171,77,-0.19344397395229748],[118,171,78,-0.16234141470868813],[118,171,79,-0.1464793891127613],[118,172,64,-0.11613358170375887],[118,172,65,-0.11027698966309862],[118,172,66,-0.07177678744692927],[118,172,67,-0.054188882069504334],[118,172,68,-0.06661999036439983],[118,172,69,-0.09165469885248781],[118,172,70,-0.13423122519492436],[118,172,71,-0.19111216172046405],[118,172,72,-0.17496870699100708],[118,172,73,-0.11380690873864258],[118,172,74,-0.12424839989655499],[118,172,75,-0.18817855733711053],[118,172,76,-0.2104449634698025],[118,172,77,-0.19129502882411753],[118,172,78,-0.16013993407586313],[118,172,79,-0.1446689173798636],[118,173,64,-0.11495336214229301],[118,173,65,-0.1091497704393114],[118,173,66,-0.0715392891385349],[118,173,67,-0.054216232075829346],[118,173,68,-0.06644776389129557],[118,173,69,-0.09159770389083263],[118,173,70,-0.1340558507827772],[118,173,71,-0.19031877427407404],[118,173,72,-0.17419250437620523],[118,173,73,-0.11304943905892666],[118,173,74,-0.12281627491633376],[118,173,75,-0.18635773923904014],[118,173,76,-0.20853935984294655],[118,173,77,-0.18910527584483872],[118,173,78,-0.1579084297604139],[118,173,79,-0.14283616693527984],[118,174,64,-0.11374669964742014],[118,174,65,-0.10799468363340929],[118,174,66,-0.07128102024428923],[118,174,67,-0.054226615501388735],[118,174,68,-0.06625566228782807],[118,174,69,-0.09151431646586944],[118,174,70,-0.1338437042409907],[118,174,71,-0.1894692390614287],[118,174,72,-0.17336004525773532],[118,174,73,-0.11226159363922317],[118,174,74,-0.12136368145593486],[118,174,75,-0.18450086563281018],[118,174,76,-0.20659042525572316],[118,174,77,-0.1868771561637455],[118,174,78,-0.1556493351943209],[118,174,79,-0.1409829536826741],[118,175,64,-0.11251496077641765],[118,175,65,-0.10681316010782936],[118,175,66,-0.07100240230345316],[118,175,67,-0.054220124652660934],[118,175,68,-0.066044018166272],[118,175,69,-0.09140476222595194],[118,175,70,-0.13359516805291602],[118,175,71,-0.18856492547129072],[118,175,72,-0.17247279988147604],[118,175,73,-0.11144428941012856],[118,175,74,-0.11989201330162487],[118,175,75,-0.18260994071816752],[118,175,76,-0.20460032951228163],[118,175,77,-0.18461313249819372],[118,175,78,-0.15336508267465424],[118,175,79,-0.1391110856914637],[118,176,64,-0.11125953471993913],[118,176,65,-0.10560665709852118],[118,176,66,-0.07070388909768115],[118,176,67,-0.054196883721834364],[118,176,68,-0.06581319441397537],[118,176,69,-0.09126930515583317],[118,176,70,-0.13331067328742296],[118,176,71,-0.18760726738606154],[118,176,72,-0.1715323043367097],[118,176,73,-0.11059847510591787],[118,176,74,-0.11840267086983336],[118,176,75,-0.18068699138670444],[118,176,76,-0.20257127343857703],[118,176,77,-0.18231568446372307],[118,176,78,-0.1510580987012965],[118,176,79,-0.1372223601402577],[118,177,64,-0.10998183069238608],[118,177,65,-0.10437665531508826],[118,177,66,-0.07038596575816669],[118,177,67,-0.05415704852707739],[118,177,68,-0.06556358343103566],[118,177,69,-0.09110824714626187],[118,177,70,-0.13299069899621974],[118,177,71,-0.18659776036827158],[118,177,72,-0.170540157317222],[118,177,73,-0.10972512942700129],[118,177,74,-0.1168970587584255],[118,177,75,-0.1787340636868033],[118,177,76,-0.20050548503337987],[118,177,77,-0.17998730393499585],[118,177,78,-0.14873079941003975],[118,177,79,-0.1353185603528387],[118,178,64,-0.10868327531037876],[118,178,65,-0.10312465602431382],[118,178,66,-0.07004914780925313],[118,178,67,-0.05410080617831704],[118,178,68,-0.0652956063072808],[118,178,69,-0.09092192748467956],[118,178,70,-0.13263577151547026],[118,178,71,-0.18553795874501033],[118,178,72,-0.16949801677685455],[118,178,73,-0.10882525915322425],[118,178,74,-0.11537658332703561],[118,178,75,-0.17675321929865714],[118,178,76,-0.198405215614824],[118,178,77,-0.17763049044960807],[118,178,78,-0.14638558611208258],[118,178,79,-0.1334014529324488],[118,179,64,-0.10736530996656964],[118,179,65,-0.10185217812559529],[118,179,66,-0.06969398015212917],[118,179,67,-0.05402837467054294],[118,179,68,-0.06500971194167887],[118,179,69,-0.09071072226898821],[118,179,70,-0.13224646367390697],[118,179,71,-0.18442947259934703],[118,179,72,-0.16840759649036197],[118,179,73,-0.10789989721332331],[118,179,74,-0.11384265031210707],[118,179,75,-0.1747465320286087],[118,179,76,-0.19627273597266776],[118,179,77,-0.1752477466665752],[118,179,78,-0.1440248409503997],[118,179,79,-0.13147278499964182],[118,180,64,-0.10602938820606472],[118,180,65,-0.10056075522683101],[118,180,66,-0.06932103599247545],[118,180,67,-0.053940002406966496],[118,180,68,-0.06470637610752668],[118,180,69,-0.09047504374664833],[118,180,70,-0.1318233939099979],[118,180,71,-0.18327396467813575],[118,180,72,-0.1672706625307478],[118,180,73,-0.10695010071601345],[118,180,74,-0.11229666248214436],[118,180,75,-0.1727160843319648],[118,180,76,-0.19411033253639762],[118,180,77,-0.1728415738910207],[118,180,78,-0.1416509226829147],[118,180,79,-0.12953428153850644],[118,181,64,-0.10467697311270631],[118,181,65,-0.09925193272930455],[118,181,66,-0.06893091571613551],[118,181,67,-0.05383596765461097],[118,181,68,-0.06438610046693462],[118,181,69,-0.09021533958158513],[118,181,70,-0.13136722530096187],[118,181,71,-0.18207314722574972],[118,181,72,-0.16608902967442604],[118,181,73,-0.10597694894821137],[118,181,74,-0.11074001733846431],[118,181,75,-0.1706639638733126],[118,181,76,-0.1919203035692314],[118,181,77,-0.17041446767628368],[118,181,78,-0.13926616260179478],[118,181,79,-0.12758764285552765],[118,182,64,-0.10330953471239974],[118,182,65,-0.09792726493004417],[118,182,66,-0.068524245717101],[118,182,67,-0.05371657793520243],[118,182,68,-0.06404941153832515],[118,182,69,-0.08993209205165659],[118,182,70,-0.1308786645067605],[118,182,71,-0.18082877875353864],[118,182,72,-0.16486455774576886],[118,182,73,-0.10498154134597966],[118,182,74,-0.10917410486651265],[118,182,75,-0.1685922601331792],[118,182,76,-0.18970495539792037],[118,182,77,-0.16796891351425589],[118,182,78,-0.13687286059752027],[118,182,79,-0.12563454215481587],[118,183,64,-0.1019285474006709],[118,183,65,-0.09658831215013546],[118,183,66,-0.0681016771823349],[118,183,67,-0.053582169354523757],[118,183,68,-0.06369685962086696],[118,183,69,-0.08962581717970527],[118,183,70,-0.13035846063250323],[118,183,71,-0.17954266075499098],[118,183,72,-0.16359914791278632],[118,183,73,-0.10396499544386338],[118,183,74,-0.10760030534264348],[118,183,75,-0.16650306106976456],[118,183,76,-0.18746659868818852],[118,183,77,-0.16550738262445744],[118,183,78,-0.13447328137580172],[118,183,79,-0.12367662323297465],[118,184,64,-0.10053548740152565],[118,184,65,-0.09523663789734145],[118,184,66,-0.06766388483811213],[118,184,67,-0.053433105873614425],[118,184,68,-0.06332901767989199],[118,184,69,-0.08929706380141542],[118,184,70,-0.12980740401293597],[118,184,71,-0.17821663437668306],[118,184,72,-0.16229473894575044],[118,184,73,-0.10292844480827056],[118,184,74,-0.10601998720098287],[118,184,75,-0.16439844984423027],[118,184,76,-0.18520754477543167],[118,184,77,-0.16303232785188596],[118,184,78,-0.13206965083469466],[118,184,79,-0.1217154982963023],[118,185,64,-0.09913183026457326],[118,185,65,-0.09387380607127296],[118,185,66,-0.06721156566273834],[118,185,67,-0.05326977852546467],[118,185,68,-0.06294648019751156],[118,185,69,-0.08894641257345026],[118,185,70,-0.12922632492299482],[118,185,71,-0.17685257705524537],[118,185,72,-0.16095330345068232],[118,185,73,-0.10187303696058266],[118,185,74,-0.10443450496475389],[118,185,75,-0.16228050161779667],[118,185,76,-0.18293010206009977],[118,185,77,-0.16054617968323395],[118,185,78,-0.12966415260856715],[118,185,79,-0.11975274590250033],[118,186,64,-0.09771904840732004],[118,186,65,-0.09250137821926903],[118,186,66,-0.06674543757069505],[118,186,67,-0.05309260458109881],[118,186,68,-0.06254986199279867],[118,186,69,-0.08857447492556532],[118,186,70,-0.12861609221865122],[118,186,71,-0.17545239913064048],[118,186,72,-0.15957684408965334],[118,186,73,-0.10079993129568436],[118,186,74,-0.10284519724622931],[118,186,75,-0.1601512804287149],[118,186,76,-0.18063657247703505],[118,186,77,-0.15805134239065802],[118,186,78,-0.12725892478493658],[118,186,79,-0.11778990902858923],[118,187,64,-0.09629860870934827],[118,187,65,-0.09112091085094964],[118,187,66,-0.06626623807338122],[118,187,67,-0.05290202666915799],[118,187,68,-0.06213979701601822],[118,187,69,-0.0881818919606012],[118,187,70,-0.12797761191253992],[118,187,71,-0.17401804044611277],[118,187,72,-0.15816738979986047],[118,187,73,-0.09971029700156647],[118,187,74,-0.10125338481917356],[118,187,75,-0.15801283615686035],[118,187,76,-0.17832924804774083],[118,187,77,-0.15555019031173978],[118,187,78,-0.12485605679941512],[118,187,79,-0.11582849326616838],[118,188,64,-0.0948719701649525],[118,188,65,-0.08973395281922802],[118,188,66,-0.06577472292174401],[118,188,67,-0.05269851185328397],[118,188,68,-0.061716937121475406],[118,188,69,-0.087769333306431],[118,188,70,-0.12731182568905983],[118,188,71,-0.17255146694514312],[118,188,72,-0.156726992023348],[118,188,73,-0.09860531098558344],[118,188,74,-0.0996603687673543],[118,188,75,-0.15586720158341097],[118,188,76,-0.17601040752429423],[118,188,77,-0.15304506427376377],[118,188,78,-0.12245758651328603],[118,188,79,-0.11386996514463654],[118,189,64,-0.09344058160068304],[118,189,65,-0.08834204277542221],[118,189,66,-0.06527166473624771],[118,189,67,-0.05248255067184498],[118,189,68,-0.061281950823696474],[118,189,69,-0.08733749592416816],[118,189,70,-0.1266197093639138],[118,189,71,-0.17105466727578617],[118,189,72,-0.15525772095924284],[118,189,73,-0.0974861558129437],[118,189,74,-0.0980674287124838],[118,189,75,-0.1537163895528343],[118,189,76,-0.17368231313340554],[118,189,77,-0.15053826816998064],[118,189,78,-0.12006549747756795],[118,189,79,-0.11191575058255201],[118,190,64,-0.09200587946399731],[118,190,65,-0.08694670670583339],[118,190,66,-0.0647578516296993],[118,190,67,-0.05225465614470641],[118,190,68,-0.06083552204170949],[118,190,69,-0.08688710287709062],[118,190,70,-0.12590227129324358],[118,190,71,-0.16952964941269472],[118,190,72,-0.15376166185020576],[118,190,73,-0.09635401766288453],[118,190,74,-0.09647582112459932],[118,190,75,-0.15156239024401408],[118,190,76,-0.17134720742873671],[118,190,77,-0.1480320656948827],[118,190,78,-0.11768171638661236],[118,190,79,-0.10996723346674472],[118,191,64,-0.09056928568905465],[118,191,65,-0.08554945555694844],[118,191,66,-0.06423408582852247],[118,191,67,-0.05201536275189152],[118,191,68,-0.060378348836239146],[118,191,69,-0.08641890206486681],[118,191,70,-0.12516055073767207],[118,191,71,-0.16797843730702958],[118,191,72,-0.1522409113146395],[118,191,73,-0.0952100843078762],[118,191,74,-0.09488677771762057],[118,191,75,-0.14940716855705063],[118,191,76,-0.16900731025931548],[118,191,77,-0.14552867724501475],[118,191,78,-0.11530811072359215],[118,191,79,-0.10802575435833348],[118,192,64,-0.0891322056454775],[118,192,65,-0.08415178295618589],[118,192,66,-0.0637011822981939],[118,192,67,-0.051765225389200635],[118,192,68,-0.05991114214474718],[118,192,69,-0.08593366492788652],[118,192,70,-0.12439561618682687],[118,192,71,-0.1664030675744198],[118,192,72,-0.15069757373606615],[118,192,73,-0.09405554312113773],[118,192,74,-0.09330150393255021],[118,192,75,-0.14725266162193396],[118,192,76,-0.16666481586155307],[118,192,77,-0.14303027699126056],[118,192,78,-0.11294648659951285],[118,192,79,-0.10609260932435458],[118,193,64,-0.08769602617566678],[118,193,65,-0.0827551630348228],[118,193,66,-0.0631599673785628],[118,193,67,-0.0515048183059351],[118,193,68,-0.05943462451923128],[118,193,69,-0.0854321851265791],[118,193,70,-0.1236085636500333],[118,193,71,-0.16480558623096683],[118,193,72,-0.14913375772083062],[118,193,73,-0.09289157911757098],[118,193,74,-0.09172117751045859],[118,193,75,-0.1451007764349196],[118,193,76,-0.1643218900820109],[118,193,77,-0.14053899012796237],[118,193,78,-0.11059858678664636],[118,193,79,-0.10416904889322393],[118,194,64,-0.0862621137260011],[118,194,65,-0.08136104835944698],[118,194,66,-0.06261127743483048],[118,194,67,-0.05123473403002962],[118,194,68,-0.05894952887174518],[118,194,69,-0.08491527720071736],[118,194,70,-0.12280051491898626],[118,194,71,-0.1631880454870808],[118,194,72,-0.14755157263500043],[118,194,73,-0.09171937303306021],[118,194,74,-0.09014694715707988],[118,194,75,-0.14295338762804538],[118,194,76,-0.16198066773766495],[118,194,77,-0.13805689030360374],[118,194,78,-0.10826608894654716],[118,194,79,-0.10225627713179955],[118,195,64,-0.08483181257703457],[118,195,65,-0.07997086797801302],[118,195,66,-0.06205595753000233],[118,195,67,-0.050955582286000306],[118,195,68,-0.058456597232616946],[118,195,69,-0.08438377521386023],[118,195,70,-0.12197261580844096],[118,195,71,-0.1615525006088735],[118,195,72,-0.14595312523115211],[118,195,73,-0.09054009944697246],[118,195,74,-0.08857993130057931],[118,195,75,-0.14081233537690366],[118,195,76,-0.1596432501201006],[118,195,77,-0.13558599723724696],[118,195,78,-0.10595060405214456],[118,195,79,-0.10035545084141997],[118,196,64,-0.08340644379242824],[118,196,65,-0.07858602496055445],[118,196,66,-0.06149485867120611],[118,196,67,-0.05066798772422056],[118,196,68,-0.05795657949572834],[118,196,69,-0.08383853186211429],[118,196,70,-0.12112603453287873],[118,196,71,-0.1599010059537749],[118,196,72,-0.14434051527739858],[118,196,73,-0.0893549253396106],[118,196,74,-0.08702121726638826],[118,196,75,-0.13867942242887238],[118,196,76,-0.15731170171106057],[118,196,77,-0.13312827459653276],[118,196,78,-0.10365367605375837],[118,196,79,-0.09846768003357753],[118,197,64,-0.08198737348149444],[118,197,65,-0.0772078196788583],[118,197,66,-0.06092866563868862],[118,197,67,-0.05037244916989195],[118,197,68,-0.05745022712358845],[118,197,69,-0.08328047115148249],[118,197,70,-0.12026197730485662],[118,197,71,-0.15823550648180532],[118,197,72,-0.1427157037158505],[118,197,73,-0.08816505364753999],[118,197,74,-0.08547189802457412],[118,197,75,-0.13655629240686773],[118,197,76,-0.15498793781986916],[118,197,77,-0.13068563610606984],[118,197,78,-0.10137690375466421],[118,197,79,-0.09659416421252978],[118,198,64,-0.08057605984161657],[118,198,65,-0.07583737300634037],[118,198,66,-0.06035774280403591],[118,198,67,-0.050069213016360914],[118,198,68,-0.05693827904192022],[118,198,69,-0.0827106259473432],[118,198,70,-0.11938169943794283],[118,198,71,-0.15655774403544914],[118,198,72,-0.1410803968679061],[118,198,73,-0.08697176104071067],[118,198,74,-0.08393310427654406],[118,198,75,-0.13444432281471194],[118,198,76,-0.15267362508546695],[118,198,77,-0.12825994884280545],[118,198,78,-0.09912204701954701],[118,198,79,-0.09473631451149422],[118,199,64,-0.07917391335653183],[118,199,65,-0.07447575029264256],[118,199,66,-0.0597824372495759],[118,199,67,-0.04975852033051852],[118,199,68,-0.05642146123695047],[118,199,69,-0.08213003099350455],[118,199,70,-0.11848646999567129],[118,199,71,-0.15486944610049966],[118,199,72,-0.13943627515615648],[118,199,73,-0.0857763144505396],[118,199,74,-0.08240593551259852],[118,199,75,-0.13234483915324372],[118,199,76,-0.1503703770568553],[118,199,77,-0.12585301504970642],[118,199,78,-0.09689080388791567],[118,199,79,-0.0928955097696524],[118,200,64,-0.07778228021646218],[118,200,65,-0.07312397729904029],[118,200,66,-0.05920311625148165],[118,200,67,-0.04944063740920592],[118,200,68,-0.05590048726971501],[118,200,69,-0.08153970990831212],[118,200,70,-0.11757756630019278],[118,200,71,-0.15317234693636217],[118,200,72,-0.13778501946486787],[118,200,73,-0.08457995924783512],[118,200,74,-0.08089145075910936],[118,200,75,-0.1302591408709635],[118,200,76,-0.14807977757784013],[118,200,77,-0.12346656902849931],[118,200,78,-0.09468478225939538],[118,200,79,-0.09107306534484652],[118,201,64,-0.07640244284004337],[118,201,65,-0.07178303983330671],[118,201,66,-0.05862016592205032],[118,201,67,-0.04911585461396629],[118,201,68,-0.05537605831342314],[118,201,69,-0.08094067521976209],[118,201,70,-0.11665627261275263],[118,201,71,-0.1514681845306189],[118,201,72,-0.1361283081672562],[118,201,73,-0.08338391789178533],[118,201,74,-0.07939066808508397],[118,201,75,-0.1281885000200913],[118,201,76,-0.14580337916957456],[118,201,77,-0.12110227624206828],[118,201,78,-0.0925054999949119],[118,201,79,-0.08927023316014879],[118,202,64,-0.0750356205254144],[118,202,65,-0.07045388348265394],[118,202,66,-0.05803398984053377],[118,202,67,-0.048784485175647985],[118,202,68,-0.05484886320348164],[118,202,69,-0.08033392840793625],[118,202,70,-0.11572387882815105],[118,202,71,-0.14975869763935137],[118,202,72,-0.1344678142478668],[118,202,73,-0.08218938867008957],[118,202,74,-0.07790456421751422],[118,202,75,-0.1261341600062516],[118,202,76,-0.1435427015268342],[118,202,77,-0.11876173261049139],[118,202,78,-0.0903543852373521],[118,202,79,-0.08748820189994333],[118,203,64,-0.07368289415765525],[118,203,65,-0.06913734099064194],[118,203,66,-0.05744494659744879],[118,203,67,-0.0484468117315832],[118,203,68,-0.05431951912144642],[118,203,69,-0.07972037165245967],[118,203,70,-0.11478155041562062],[118,203,71,-0.14804545476554654],[118,203,72,-0.13280504986821007],[118,203,73,-0.0809974503428844],[118,203,74,-0.07643398438244499],[118,203,75,-0.12409718691915646],[118,203,76,-0.1412990604066918],[118,203,77,-0.11644632271059324],[118,203,78,-0.08823266884386846],[118,203,79,-0.08572799132967192],[118,204,64,-0.07234471827540516],[118,204,65,-0.06783366708288739],[118,204,66,-0.05685295016965323],[118,204,67,-0.04810274244882259],[118,204,68,-0.053788184010911726],[118,204,69,-0.07910022923527348],[118,204,70,-0.11382948392106937],[118,204,71,-0.1463287565375581],[118,204,72,-0.13114037123818045],[118,204,73,-0.07980845097960142],[118,204,74,-0.07497906440716794],[118,204,75,-0.12207751540283902],[118,204,76,-0.13907246859600012],[118,204,77,-0.11415631190041615],[118,204,78,-0.08614069573180014],[118,204,79,-0.0839897722989057],[118,205,64,-0.07102128103493625],[118,205,65,-0.06654288171036614],[118,205,66,-0.056257742783664556],[118,205,67,-0.04775203935826381],[118,205,68,-0.05325482192927312],[118,205,69,-0.07847343671861985],[118,205,70,-0.11286747479985176],[118,205,71,-0.1446083918208581],[118,205,72,-0.12947366870371174],[118,205,73,-0.07862243990026865],[118,205,74,-0.07353965458791592],[118,205,75,-0.12007463133225604],[118,205,76,-0.1368624183900798],[118,205,77,-0.11189151407660079],[118,205,78,-0.08407844909310132],[118,205,79,-0.08227336978721651],[118,206,64,-0.06971278155867101],[118,206,65,-0.06526503370025387],[118,206,66,-0.05565911386669682],[118,206,67,-0.047394504844946124],[118,206,68,-0.05271941691448377],[118,206,69,-0.0778399581224768],[118,206,70,-0.11189537908316821],[118,206,71,-0.1428842421523946],[118,206,72,-0.12780491609785777],[118,206,73,-0.077439508025463],[118,206,74,-0.07211564637838465],[118,206,75,-0.11808810535045457],[118,206,76,-0.1346684950803689],[118,206,77,-0.10965180546689439],[118,206,78,-0.08204594615273021],[118,206,79,-0.08057864911663713],[118,207,64,-0.06841942913937893],[118,207,65,-0.06400019920794159],[118,207,66,-0.055056899306807974],[118,207,67,-0.047029981488814966],[118,207,68,-0.05218197353914841],[118,207,69,-0.07719978723276182],[118,207,70,-0.11091311407747753],[118,207,71,-0.14115628036590425],[118,207,72,-0.1261341691845855],[118,207,73,-0.07625978690095618],[118,207,74,-0.07070697056149464],[118,207,75,-0.1161175903212573],[118,207,76,-0.13249037439590336],[118,207,77,-0.10743712165117464],[118,207,78,-0.0800432354002056],[118,207,79,-0.07890551402006701],[118,208,64,-0.06714144102920065],[118,208,65,-0.06274847883770361],[118,208,66,-0.054450979531368904],[118,208,67,-0.04665835086825572],[118,208,68,-0.0516425162772445],[118,208,69,-0.07655294712221898],[118,208,70,-0.10992065649812936],[118,208,71,-0.13942456595748448],[118,208,72,-0.12446156114637094],[118,208,73,-0.07508344590591354],[118,208,74,-0.06931359377592831],[118,208,75,-0.11416281605076285],[118,208,76,-0.13032781677893238],[118,208,77,-0.10524745200055861],[118,208,78,-0.07807039189285923],[118,208,79,-0.07725390277863792],[118,209,64,-0.06587904031277035],[118,209,65,-0.06150999485727422],[118,209,66,-0.05384127759000814],[118,209,67,-0.0462795323374733],[118,209,68,-0.05110108884108522],[118,209,69,-0.07589948960180366],[118,209,70,-0.10891804053961901],[118,209,71,-0.1376892404685301],[118,209,72,-0.12278729809441302],[118,209,73,-0.07391068948883434],[118,209,74,-0.06793551516129659],[118,209,75,-0.11222358415906464],[118,209,76,-0.12818066180947438],[118,209,77,-0.10308283430907077],[118,209,78,-0.07612751276483935],[118,209,79,-0.07562378451098005],[118,210,64,-0.06463245386952068],[118,210,65,-0.060284888508229564],[118,210,66,-0.053227757239599494],[118,210,67,-0.04589348177564472],[118,210,68,-0.05055775349062787],[118,210,69,-0.07523949460565675],[118,210,70,-0.10790535588389784],[118,210,71,-0.13595052288708018],[118,210,72,-0.12111165460358778],[118,210,73,-0.07274175443465815],[118,210,74,-0.06657276312154506],[118,210,75,-0.110299763097055],[118,210,76,-0.12604882277442533],[118,210,77,-0.10094334961801173],[118,210,78,-0.07421471294423035],[118,210,79,-0.07401515561430738],[118,211,64,-0.0634019104297142],[118,211,65,-0.0590733174140922],[118,211,66,-0.05261042102966859],[118,211,67,-0.04550019030649786],[118,211,68,-0.05001259031722591],[118,211,69,-0.07457306951275589],[118,211,70,-0.10688274564878007],[118,211,71,-0.13420870506976607],[118,211,72,-0.11943496927527296],[118,211,73,-0.0715769071667426],[118,211,74,-0.06522539220649423],[118,211,75,-0.10839128330428362],[118,211,76,-0.1239322813779849],[118,211,77,-0.09882911723356386],[118,211,78,-0.07233212108045459],[118,211,79,-0.07242803635734131],[118,212,64,-0.062187638728079496],[118,212,65,-0.0578754530879638],[118,212,66,-0.0519893083873186],[118,212,67,-0.045099682987647216],[118,212,68,-0.0494656965039185],[118,212,69,-0.07390034840835034],[118,212,70,-0.10585040427905186],[118,212,71,-0.13246414718752272],[118,212,72,-0.11775764033199775],[118,212,73,-0.07041644108757869],[118,212,74,-0.06389348011152689],[118,212,75,-0.10649813250469466],[118,212,76,-0.12183108259104661],[118,212,77,-0.0967402899382998],[118,212,78,-0.0704798756836977],[118,212,79,-0.07086246762500434],[118,213,64,-0.06098986575836142],[118,213,65,-0.05669147854140151],[118,213,66,-0.05136449370143692],[118,213,67,-0.04469201746963306],[118,213,68,-0.04891718556434362],[118,213,69,-0.073221491288309],[118,213,70,-0.10480857538340589],[118,213,71,-0.13071727319909798],[118,213,72,-0.11608012124860956],[118,213,73,-0.06926067396224697],[118,213,74,-0.0625771247955622],[118,213,75,-0.10462035113789442],[118,213,76,-0.11974532963806175],[118,213,77,-0.09467704939741343],[118,213,78,-0.0686581214777333],[118,213,79,-0.06931850781476472],[118,214,64,-0.05980881513154749],[118,214,65,-0.055521585996163345],[118,214,66,-0.05073608440660494],[118,214,67,-0.04427728262524338],[118,214,68,-0.048367186562421845],[118,214,69,-0.07253668320960972],[118,214,70,-0.10375754952087023],[118,214,71,-0.12896856635720283],[118,214,72,-0.11440291642532989],[118,214,73,-0.06810994534876057],[118,214,74,-0.061276441717567735],[118,214,75,-0.10275802792435308],[118,214,76,-0.1176751791206564],[118,214,77,-0.09263960176057826],[118,214,78,-0.06686700596713584],[118,214,79,-0.06779622988446114],[118,215,64,-0.05864470553991835],[118,215,65,-0.05436597470024234],[118,215,66,-0.05010421906765373],[118,215,67,-0.043855597150214344],[118,215,68,-0.04781584331494739],[118,215,69,-0.07184613339024173],[118,215,70,-0.10269766194084337],[118,215,71,-0.1272185647527892],[118,215,72,-0.11272657690858193],[118,215,73,-0.06696461407945685],[118,215,74,-0.05999156119184371],[118,215,75,-0.10091129556351199],[118,215,76,-0.11562083627786221],[118,215,77,-0.0906281734602585],[118,215,78,-0.06510667621934076],[118,215,79,-0.0662957185512421],[118,216,64,-0.05749774932852968],[118,216,65,-0.053224848849437054],[118,216,66,-0.04946906546629739],[118,216,67,-0.04342710813688006],[118,216,68,-0.04726331357922377],[118,216,69,-0.07115007426184135],[118,216,70,-0.10162929028123761],[118,216,71,-0.1254678569034653],[118,216,72,-0.11105169616587857],[118,216,73,-0.06582505579759419],[118,216,74,-0.05872262586229667],[118,216,75,-0.09908032656429816],[118,216,76,-0.11358255038336444],[118,216,77,-0.08864300720722473],[118,216,78,-0.06337727586154122],[118,216,79,-0.06481706764110602],[118,217,64,-0.05636815117521942],[118,217,65,-0.0520984156155274],[118,217,66,-0.04883081869177239],[118,217,67,-0.04299198962285966],[118,217,68,-0.04670976822796804],[118,217,69,-0.07044876047853253],[118,217,70,-0.10055285222969851],[118,217,71,-0.12371707739259312],[118,217,72,-0.1093789059214751],[118,217,73,-0.06469166055333653],[118,217,74,-0.05746978829591595],[118,217,75,-0.09726532920802601],[118,217,76,-0.11156061028064472],[118,217,77,-0.08668435818389873],[118,217,78,-0.061678942291909594],[118,217,79,-0.0633603775883673],[118,218,64,-0.055256106879665645],[118,218,65,-0.05098688328185395],[118,218,66,-0.04818969923773847],[118,218,67,-0.0425504411172096],[118,218,68,-0.04615539041365695],[118,218,69,-0.06974246788545127],[118,218,70,-0.09946880315312859],[118,218,71,-0.12196690256589136],[118,218,72,-0.10770887205965626],[118,218,73,-0.06356483046316713],[118,218,74,-0.05623320869551721],[118,218,75,-0.09546654364397004],[118,218,76,-0.1095553400571996],[118,218,77,-0.08475249043590302],[118,218,78,-0.060011804104049875],[118,218,79,-0.06192575308410965],[118,219,64,-0.05416180226156019],[118,219,65,-0.049890459486896126],[118,219,66,-0.04754595110807535],[118,219,67,-0.04210268610687233],[118,219,68,-0.045600374724552015],[118,219,69,-0.06903149245056057],[118,219,70,-0.09837763370109545],[118,219,71,-0.12021804629268312],[118,219,72,-0.10604229060274098],[118,219,73,-0.06244497743671184],[118,219,74,-0.05501305273175379],[118,219,75,-0.09368423811822559],[118,219,76,-0.1075670948593371],[118,219,77,-0.08284767346198345],[118,219,78,-0.05837597872308437],[118,219,79,-0.06051330087250198],[118,220,64,-0.05308541216742495],[118,220,65,-0.048809349576142844],[118,220,66,-0.04689983993446051],[118,220,67,-0.041648970546545226],[118,220,68,-0.04504492633462221],[118,220,69,-0.06831614916341328],[118,220,70,-0.09727986738893445],[118,220,71,-0.11847125579907732],[118,220,72,-0.10437988377092759],[118,220,73,-0.06133252097476982],[118,220,74,-0.05380948949420661],[118,220,75,-0.09191870533663496],[118,220,76,-0.10559625684919546],[118,220,77,-0.08097017900212097],[118,220,78,-0.056771570251159156],[118,220,79,-0.05912312769355101],[118,221,64,-0.0520270995851996],[118,221,65,-0.047743755062339015],[118,221,66,-0.04625165110888368],[118,221,67,-0.04118956133539332],[118,221,68,-0.04448926014962475],[118,221,69,-0.0675967709046148],[118,221,70,-0.09617605816659082],[118,221,71,-0.11672730758048644],[118,221,72,-0.10272239613113306],[118,221,73,-0.06022788604221524],[118,221,74,-0.05262268956125475],[118,221,75,-0.09017025896276874],[118,221,76,-0.10364323130582258],[118,221,77,-0.07912027802339937],[118,221,78,-0.055198667519676406],[118,221,79,-0.057755338370677076],[118,222,64,-0.050987014865232244],[118,222,65,-0.04669387219386861],[118,222,66,-0.04560168793441494],[118,222,67,-0.04072474478424383],[118,222,68,-0.04393359995158388],[118,222,69,-0.0668737072897905],[118,222,70,-0.09506678797940836],[118,222,71,-0.11498700340088155],[118,222,72,-0.10107059084187556],[118,222,73,-0.05913150101919688],[118,222,74,-0.051452823188203635],[118,222,75,-0.08843923025198584],[118,222,76,-0.10170844287215693],[118,222,77,-0.07729823790276996],[118,222,78,-0.053657342344938866],[118,222,79,-0.05641003404117581],[118,223,64,-0.0499652950459028],[118,223,65,-0.04565989063076283],[118,223,66,-0.04495026979767585],[118,223,67,-0.04025482507707686],[118,223,68,-0.04337817754389538],[118,223,69,-0.06614732349189939],[118,223,70,-0.09395266432717805],[118,223,71,-0.11325116638610909],[118,223,72,-0.09942524600109748],[118,223,73,-0.05804379573382565],[118,223,74,-0.05030005861294951],[118,223,75,-0.0867259648226395],[118,223,76,-0.0997923319497658],[118,223,77,-0.07550431980549364],[118,223,78,-0.052147647983367094],[118,223,79,-0.055087310527369863],[118,224,64,-0.04896206328174983],[118,224,65,-0.044641992227574846],[118,224,66,-0.044297730366597336],[118,224,67,-0.03978012273081016],[118,224,68,-0.04282323189930963],[118,224,69,-0.06541799904582023],[118,224,70,-0.09283431782788676],[118,224,71,-0.11152063721849231],[118,224,72,-0.09778715110364505],[118,224,73,-0.05696519957932428],[118,224,74,-0.049164560478290306],[118,224,75,-0.0850308195655133],[118,224,76,-0.09789535124317848],[118,224,77,-0.07373877625768378],[118,224,78,-0.05066961778195954],[118,224,79,-0.053787256846027996],[118,225,64,-0.04797742837156771],[118,225,65,-0.04364034992204202],[118,225,66,-0.04364441581707406],[118,225,67,-0.03930097305746356],[118,225,68,-0.04226900831300496],[118,225,69,-0.06468612663914479],[118,225,70,-0.09171239979262626],[118,225,71,-0.10979627043972322],[118,225,72,-0.09615710361482915],[118,225,73,-0.055896139718305975],[118,225,74,-0.048046488369732424],[118,225,75,-0.08335415969246539],[118,225,76,-0.09601796245550043],[118,225,77,-0.07200184891090995],[118,225,78,-0.04922326401910332],[118,225,79,-0.052509953853311996],[118,226,64,-0.047011484383614396],[118,226,65,-0.04265512672818303],[118,226,66,-0.04299068309212692],[118,226,67,-0.03881772463283314],[118,226,68,-0.04171575756291581],[118,226,69,-0.06395211089310708],[118,226,70,-0.09058757981809276],[118,226,71,-0.10807893086875998],[118,226,72,-0.09453590566614092],[118,226,73,-0.05483703937654207],[118,226,74,-0.046945995467416915],[118,226,75,-0.08169635592515462],[118,226,76,-0.09416063313685352],[118,226,77,-0.07029376649642809],[118,226,78,-0.04780857693037538],[118,226,79,-0.05125547302226261],[118,227,64,-0.04606431037479166],[118,227,65,-0.04168647483223816],[118,227,66,-0.04233689819721471],[118,227,67,-0.03833073777590184],[118,227,68,-0.04116373507950761],[118,227,69,-0.06321636713764825],[118,227,70,-0.08946054340314391],[118,227,71,-0.10636949014119855],[118,227,72,-0.09292436087888564],[118,227,73,-0.05378831622832681],[118,227,74,-0.04586322731060242],[118,227,75,-0.0800577818246179],[118,227,76,-0.09232383368703147],[118,227,77,-0.06861474296620886],[118,227,78,-0.04642552391353696],[118,227,79,-0.050023875349614076],[118,228,64,-0.04513597020034855],[118,228,65,-0.04073453478955764],[118,228,66,-0.041683434535232315],[118,228,67,-0.03784038304315552],[118,228,68,-0.040613200127094615],[118,228,69,-0.06247932018454955],[118,228,70,-0.08833198959573638],[118,228,71,-0.10466882337616125],[118,228,72,-0.09132327132102411],[118,228,73,-0.0527503808751746],[118,228,74,-0.044798320672869825],[118,228,75,-0.07843881126224987],[118,228,76,-0.09050803451349132],[118,228,77,-0.06696497581748813],[118,228,78,-0.04507404890646078],[118,228,79,-0.04881521038844667],[118,229,64,-0.04422651241041839],[118,229,65,-0.039799434820292356],[118,229,66,-0.04103067128464554],[118,229,67,-0.037347039741941035],[118,229,68,-0.04006441499875131],[118,229,69,-0.06174140310254502],[118,229,70,-0.08720262867646149],[118,229,71,-0.10297780597633925],[118,229,72,-0.08973343460205913],[118,229,73,-0.05172363541926192],[118,229,74,-0.04375140254598823],[118,229,75,-0.07683981603253438],[118,229,76,-0.08871370334555301],[118,229,77,-0.065344644597161],[118,229,78,-0.04375407193133602],[118,229,79,-0.04762951540295907],[118,230,64,-0.043335970229502876],[118,230,65,-0.03888129020152421],[118,230,66,-0.04037899182413509],[118,230,67,-0.036851094466985056],[118,230,68,-0.039517644226856934],[118,230,69,-0.06100305599833619],[118,230,70,-0.08607317988479819],[118,230,71,-0.10129731056642902],[118,230,72,-0.0881556411103635],[118,230,73,-0.05070847213273318],[118,230,74,-0.042722589230197165],[118,230,75,-0.07526116360767837],[118,230,76,-0.08694130270542007],[118,230,77,-0.06375390958196618],[118,230,78,-0.04246548879815931],[118,230,79,-0.04646681464145702],[118,231,64,-0.04246436161480862],[118,231,65,-0.03798020275321072],[118,231,66,-0.03972878220692644],[118,231,67,-0.03635293966403308],[118,231,68,-0.038973153811189855],[118,231,69,-0.06026472480731097],[118,231,70,-0.0849443691939486],[118,231,71,-0.09962820407464755],[118,231,72,-0.08659067139676872],[118,231,73,-0.04970527222359908],[118,231,74,-0.04171198552839963],[118,231,75,-0.07370321503401141],[118,231,76,-0.08519128753629661],[118,231,77,-0.06219291063000326],[118,231,78,-0.04120817096017096],[118,231,79,-0.04532711872342247],[118,232,64,-0.04161168938917487],[118,232,65,-0.03709626041509951],[118,232,66,-0.03908042968782527],[118,232,67,-0.03585297222447109],[118,232,68,-0.03843121046643765],[118,232,69,-0.05952686009772643],[118,232,70,-0.08381692713994669],[118,232,71,-0.09797134496153961],[118,232,72,-0.08503929370772231],[118,232,73,-0.04871440469863353],[118,232,74,-0.040719684041558776],[118,232,75,-0.07216632296974733],[118,232,76,-0.08346410298754749],[118,232,77,-0.06066176619874516],[118,232,78,-0.03998196551359507],[118,232,79,-0.04421042413633926],[118,233,64,-0.040777941444237915],[118,233,65,-0.0362295369115967],[118,233,66,-0.03843432130580569],[118,233,67,-0.03535159211465653],[118,233,68,-0.037892080890925876],[118,233,69,-0.05878991589204266],[118,233,70,-0.08269158671049003],[118,233,71,-0.09632758059975162],[118,233,72,-0.08350226167077773],[118,233,73,-0.04773622532335677],[118,233,74,-0.039745764562420405],[118,233,75,-0.07065082986345102],[118,233,76,-0.08176018235654169],[118,233,77,-0.05916057252440352],[118,233,78,-0.03878669533383967],[118,233,79,-0.04311671283782346],[118,234,64,-0.0399630910093501],[118,234,65,-0.03538009150135645],[118,234,66,-0.03779084252475274],[118,234,67,-0.03484920104347882],[118,234,68,-0.03735603105824685],[118,234,69,-0.05805434850895708],[118,234,70,-0.08156908129864679],[118,234,71,-0.09469774480787443],[118,234,72,-0.08198031213458333],[118,234,73,-0.04677107567882675],[118,234,74,-0.038790293564461974],[118,234,75,-0.06915706627223112],[118,234,76,-0.08007994518643693],[118,234,77,-0.05768940295714908],[118,234,78,-0.037622159340071015],[118,234,79,-0.04204595195842679],[118,235,64,-0.03916709698168986],[118,235,65,-0.03454796880818581],[118,235,66,-0.037150375934734074],[118,235,67,-0.03434620117148741],[118,235,68,-0.036823325533385354],[118,235,69,-0.05732061542958624],[118,235,70,-0.08045014272630541],[118,235,71,-0.09308265554088418],[118,235,72,-0.08047416316496399],[118,235,73,-0.04581928231463333],[118,235,74,-0.037853323782793866],[118,235,75,-0.067685349318372],[118,235,76,-0.07842379551879723],[118,235,77,-0.05624830744637672],[118,235,78,-0.036488132879903004],[118,235,79,-0.0409980936003477],[118,236,64,-0.03838990431300045],[118,236,65,-0.03373319872974614],[118,236,66,-0.03651330001595139],[118,236,67,-0.033842993864721234],[118,236,68,-0.03629422681485122],[118,236,69,-0.0565891741911187],[118,236,70,-0.07933549934192506],[118,236,71,-0.09148311273915644],[118,236,72,-0.07898451219813225],[118,236,73,-0.04488115599719577],[118,236,74,-0.03693489388360947],[118,236,75,-0.0662359812828566],[118,236,76,-0.07679212029961643],[118,236,77,-0.054837312169985705],[118,236,78,-0.035384368225870745],[118,236,79,-0.03997307472722527],[118,237,64,-0.037631444448332135],[118,237,65,-0.03293579642035993],[118,237,66,-0.03587998796723842],[118,237,67,-0.033339978496129956],[118,237,68,-0.03576899470420268],[118,237,69,-0.055860481311101655],[118,237,70,-0.07822587419679468],[118,237,71,-0.08989989633741825],[118,237,72,-0.07751203435145856],[118,237,73,-0.04395699105212118],[118,237,74,-0.036035028218597914],[118,237,75,-0.06480924833388124],[118,237,76,-0.07518528793691359],[118,237,77,-0.05345641930134865],[118,237,78,-0.03431059517522483],[118,237,79,-0.0389708171400585],[118,238,64,-0.03689163581218263],[118,238,65,-0.03215576234412692],[118,238,66,-0.03525080660070145],[118,238,67,-0.03283755129721883],[118,238,68,-0.03524788570422339],[118,238,69,-0.055134991245355154],[118,238,70,-0.07712198330363959],[118,238,71,-0.08833376443441499],[118,238,72,-0.0760573808916544],[118,238,73,-0.043047064799082234],[118,238,74,-0.03515373666060644],[118,238,75,-0.06340541938817373],[118,238,76,-0.07360364700771845],[118,238,77,-0.05210560690744179],[118,238,78,-0.03326652174455554],[118,238,79,-0.03799122753424088],[118,239,64,-0.036170384337485324],[118,239,65,-0.03139308239448299],[118,239,66,-0.03462611530384651],[118,239,67,-0.03233610426232081],[118,239,68,-0.03473115244692312],[118,239,69,-0.054413155382358455],[118,239,70,-0.07602453398107009],[118,239,71,-0.08678545162351024],[118,239,72,-0.07462117785968073],[118,239,73,-0.042151637077408405],[118,239,74,-0.034291014516749936],[118,239,75,-0.06202474510264953],[118,239,76,-0.0720475251119366],[118,239,77,-0.05078482897145561],[118,239,78,-0.032251834950789655],[118,239,79,-0.03703419763268507],[118,240,64,-0.03546758403292381],[118,240,65,-0.030647728076235184],[118,240,66,-0.03400626507023806],[118,240,67,-0.03183602410761434],[118,240,68,-0.03421904315239609],[118,240,69,-0.05369542107676243],[118,240,70,-0.07493422328697324],[118,240,71,-0.08525566748384979],[118,240,72,-0.0732040248511244],[118,240,73,-0.04127094986029386],[118,240,74,-0.03344684251504103],[118,240,75,-0.060667456993622866],[118,240,76,-0.07051722787020887],[118,240,77,-0.049494015533011866],[118,240,78,-0.03126620167009998],[118,240,79,-0.03609960438995597],[118,241,64,-0.03478311758412227],[118,241,65,-0.029919656746046686],[118,241,66,-0.03339159759943424],[118,241,67,-0.03133769128670736],[118,241,68,-0.03371180111941562],[118,241,69,-0.052982230724449214],[118,241,70,-0.07385173654352357],[118,241,71,-0.08374509523113785],[118,241,72,-0.07180649395023236],[118,241,73,-0.040405226955252685],[118,241,74,-0.03262118686052835],[118,241,75,-0.059333766680509194],[118,241,76,-0.06901303806255098],[118,241,77,-0.048233072939008685],[118,241,78,-0.0303092695663629],[118,241,79,-0.03518731026233571],[118,242,64,-0.034116856984394116],[118,242,65,-0.02920881190734247],[118,242,66,-0.03278244446670276],[118,242,67,-0.030841479064378514],[118,242,68,-0.0332096642485762],[118,242,69,-0.052274020881427866],[118,242,70,-0.07277774595614972],[118,242,71,-0.08225439052656948],[118,242,72,-0.0704291288153173],[118,242,73,-0.039554673788254835],[118,242,74,-0.03181399935689855],[118,242,75,-0.058023865250707754],[118,242,76,-0.06753521490425914],[118,242,77,-0.04700188419803845],[118,242,78,-0.02938066808093056],[118,242,79,-0.034297163538784696],[118,243,64,-0.03346866419080806],[118,243,65,-0.028515123555555275],[118,243,66,-0.032179126362699685],[118,243,67,-0.030347752649737436],[118,243,68,-0.032712864598606735],[118,243,69,-0.05157122142858178],[118,243,70,-0.07171290932833821],[118,243,71,-0.08078418044189943],[118,243,72,-0.06907244391271951],[118,243,73,-0.038719477268716766],[118,243,74,-0.031025217589421058],[118,243,75,-0.05673792274207471],[118,243,76,-0.06608399345524472],[118,243,77,-0.04580030943125054],[118,243,78,-0.02848000947561152],[118,243,79,-0.03342899872777582],[118,244,64,-0.03283839180146929],[118,244,65,-0.027838508569636187],[118,244,66,-0.03158195240301687],[118,244,67,-0.029856868389783145],[118,244,68,-0.03222162797635568],[118,244,69,-0.050874254784076756],[118,244,70,-0.07065786887375526],[118,244,71,-0.079335062578115],[118,244,72,-0.06773692389603873],[118,244,73,-0.0378998057323193],[118,244,74,-0.030254765165084664],[118,244,75,-0.055476087739152934],[118,244,76,-0.06465958415866954],[118,244,77,-0.04462818641250182],[118,244,78,-0.027606889920939823],[118,244,79,-0.03258263699503466],[118,245,64,-0.03222588375008058],[118,245,65,-0.02717887114579684],[118,245,66,-0.030991219507263437],[118,245,67,-0.029369173024092705],[118,245,68,-0.03173617356084847],[118,245,69,-0.050183535165050315],[118,245,70,-0.06961325012679948],[118,245,71,-0.07790760433473617],[118,245,72,-0.06642302312694277],[118,245,73,-0.037095808958475494],[118,245,74,-0.02950255200579235],[118,245,75,-0.05423848707912389],[118,245,76,-0.06326217250451069],[118,245,77,-0.043485331190663626],[118,245,78,-0.026760890622042382],[118,245,79,-0.03175788664731674],[118,246,64,-0.0316309760139786],[118,246,65,-0.02653610326945373],[118,246,66,-0.030407211847033763],[118,246,67,-0.028885003001036958],[118,246,68,-0.03125671356163371],[118,246,69,-0.049499467899921254],[118,246,70,-0.06857966095224163],[118,246,71,-0.07650234232625584],[118,246,72,-0.06513116533339984],[118,246,73,-0.03630761825906357],[118,246,74,-0.02876847469044792],[118,246,75,-0.053025225663210204],[118,246,76,-0.06189191881340995],[118,246,77,-0.042371538786967644],[118,246,78,-0.025941578974638564],[118,246,79,-0.030954543657413874],[118,247,64,-0.031053497332033785],[118,247,65,-0.025910085221420583],[118,247,66,-0.029830200361896864],[118,247,67,-0.028404683855689006],[118,247,68,-0.030783452911543423],[118,247,69,-0.04882244879247358],[118,247,70,-0.06755769065425601],[118,247,71,-0.07511978194184546],[118,247,72,-0.06386174340083914],[118,247,73,-0.03553534663493341],[118,247,74,-0.028052416841817338],[118,247,75,-0.05183638636909057],[118,247,76,-0.06054895813595495],[118,247,77,-0.04128658396034899],[118,247,78,-0.02514850974398321],[118,247,79,-0.030172392225707872],[118,248,64,-0.030493269928957293],[118,248,65,-0.02530068611443641],[118,248,66,-0.029260442342258615],[118,248,67,-0.027928529649278475],[118,248,68,-0.030316588993822422],[118,248,69,-0.048152863538595846],[118,248,70,-0.06654790918471948],[118,248,71,-0.0737603970440145],[118,248,72,-0.06261511929135952],[118,248,73,-0.034779088996540135],[118,248,74,-0.027354249554055785],[118,248,75,-0.05067203005969697],[118,248,76,-0.05923340026231789],[118,248,77,-0.04023022203381955],[118,248,78,-0.02438122625984019],[118,248,79,-0.029411205373687906],[118,249,64,-0.029950110242783278],[118,249,65,-0.02470776445623003],[118,249,66,-0.028698181077747593],[118,249,67,-0.027456842469817708],[118,249,68,-0.02985631140348657],[118,249,69,-0.04749108719635873],[118,249,70,-0.06555086645030625],[118,249,71,-0.07242462980157695],[118,249,72,-0.06139162408582285],[118,249,73,-0.03403892244499017],[118,249,74,-0.02667383185687588],[118,249,75,-0.049532195683649055],[118,249,76,-0.057945329837031524],[118,249,77,-0.03920218977505401],[118,249,78,-0.023639261620916674],[118,249,79,-0.02867074556501459],[118,250,64,-0.029423829652456056],[118,250,65,-0.02413116873538773],[118,250,66,-0.02814364556953052],[118,250,67,-0.026989911993251653],[118,250,68,-0.029402801742620367],[118,250,69,-0.04683748370986268],[118,250,70,-0.06456709171752095],[118,250,71,-0.07111289065192083],[118,250,72,-0.06019155814336769],[118,250,73,-0.03331490660968015],[118,250,74,-0.026011011212369997],[118,250,75,-0.04841690046242143],[118,250,76,-0.05668480657349278],[118,250,77,-0.038202206324476955],[118,250,78,-0.02292213990248208],[118,250,79,-0.0279507653498259],[118,251,64,-0.028914235202661197],[118,251,65,-0.023570738026400997],[118,251,66,-0.027597050304746247],[118,251,67,-0.026528015104226286],[118,251,68,-0.028956233449190027],[118,251,69,-0.04619240548704332],[118,251,70,-0.06359709311443922],[118,251,71,-0.06982555838726617],[118,251,72,-0.05901519137262184],[118,251,73,-0.03260708403864355],[118,251,74,-0.025365624040579824],[118,251,75,-0.047326140159242566],[118,251,76,-0.055451865562667166],[118,251,77,-0.037229974164320445],[118,251,78,-0.022229377361256426],[118,251,79,-0.027251008028146267],[118,252,64,-0.028421130323259373],[118,252,65,-0.02302630261040863],[118,252,66,-0.02705859509108666],[118,252,67,-0.02607141557537651],[118,252,68,-0.02851677165886085],[118,252,69,-0.04555619303143446],[118,252,70,-0.06264135722762633],[118,252,71,-0.06856298035935962],[118,252,72,-0.05786276360871503],[118,252,73,-0.03191548063770661],[118,252,74,-0.024737496270020243],[118,252,75,-0.046259889424657426],[118,252,76,-0.054246517670375964],[118,252,77,-0.03628518012231691],[118,252,78,-0.02156048363201873],[118,252,79,-0.026571208328440368],[118,253,64,-0.027944315540867126],[118,253,65,-0.022497684608253885],[118,253,66,-0.0265284649493428],[118,253,67,-0.02562036380378142],[118,253,68,-0.028084573099160407],[118,253,69,-0.04492917462763077],[118,253,70,-0.061700348792341694],[118,253,71,-0.06732547279679248],[118,253,72,-0.05673448508998523],[118,253,73,-0.03124010615450646],[118,253,74,-0.02412644390944341],[118,253,75,-0.0452181022136022],[118,253,76,-0.05306875001745028],[118,253,77,-0.035367496403883834],[118,253,78,-0.020914962910739198],[118,253,79,-0.025911093097506954],[118,254,64,-0.0274835891803343],[118,254,65,-0.02198469862261191],[118,254,66,-0.02600683006157468],[118,254,67,-0.025175096603030144],[118,254,68,-0.02765978601521599],[118,254,69,-0.044311666079977906],[118,254,70,-0.06077451047383082],[118,254,71,-0.06611332122892666],[118,254,72,-0.055630537028131526],[118,254,73,-0.030580954703419604],[118,254,74,-0.023532273637241204],[118,254,75,-0.04420071226880119],[118,254,76,-0.05191852653698089],[118,254,77,-0.03447658164687815],[118,254,78,-0.02029231511941258],[118,254,79,-0.025270381998091115],[118,255,64,-0.02703874805409162],[118,255,65,-0.02148715238610957],[118,255,66,-0.025493845772444033],[118,255,67,-0.024735837049181576],[118,255,68,-0.02724255012621907],[118,255,69,-0.04370397050383747],[118,255,70,-0.059864262737251116],[118,255,71,-0.0649267810102806],[118,255,72,-0.05455107226548745],[118,255,73,-0.029938005327489657],[118,255,74,-0.022954783405031046],[118,255,75,-0.04320763366529503],[118,255,76,-0.05079578860287962],[118,255,77,-0.033612081993255695],[118,255,78,-0.019692037048164968],[118,255,79,-0.024648788210792884],[118,256,64,-0.02660958813752683],[118,256,65,-0.02100484741248801],[118,256,66,-0.0249896526410895],[118,256,67,-0.02430279437868876],[118,256,68,-0.02683299661163156],[118,256,69,-0.04310637816853506],[118,256,70,-0.05897000380346808],[118,256,71,-0.0637660779390611],[118,256,72,-0.05349621601298332],[118,256,73,-0.029311222593446123],[118,256,74,-0.022393763052075962],[118,256,75,-0.042238761410892486],[118,256,76,-0.04970045572394684],[118,256,77,-0.03277363217220921],[118,256,78,-0.019113623470575842],[118,256,79,-0.024046019137027863],[118,257,64,-0.026195905228740587],[118,257,65,-0.020537579648012668],[118,257,66,-0.024494376540822038],[118,257,67,-0.02387616393621348],[118,257,68,-0.026431248126069486],[118,257,69,-0.04251916639092105],[118,257,70,-0.0580921096877285],[118,257,71,-0.06263140896344375],[118,257,72,-0.05246606666233561],[118,257,73,-0.0287005572159595],[118,257,74,-0.021848994927331812],[118,257,75,-0.04129397209735852],[118,257,76,-0.04863242629764951],[118,257,77,-0.03196085658961533],[118,257,78,-0.018556568228528195],[118,257,79,-0.02346177709998059],[118,258,64,-0.025797495591252075],[118,258,65,-0.020085140120517122],[118,258,66,-0.024008128803837882],[118,258,67,-0.0234561271701238],[118,258,68,-0.026037418841718337],[118,258,69,-0.04194259947829899],[118,258,70,-0.0572309343179978],[118,258,71,-0.06152294296915049],[118,258,72,-0.051460696666004585],[118,258,73,-0.02810594670735578],[118,258,74,-0.021320254516076456],[118,258,75,-0.04037312459721363],[118,258,76,-0.04759157841787851],[118,258,77,-0.031173370418920786],[118,258,78,-0.0180203652833041],[118,258,79,-0.02289576004071024],[118,259,64,-0.025414156578390492],[118,259,65,-0.01964731558360731],[118,259,66,-0.023531006408049143],[118,259,67,-0.023042851673318973],[118,259,68,-0.025651614517035404],[118,259,69,-0.04137692871928174],[118,259,70,-0.056386809729525436],[118,259,71,-0.06044082164182368],[118,259,72,-0.05048015347846516],[118,259,73,-0.02752731604907031],[118,259,74,-0.02080731106820735],[118,259,75,-0.03947606080106293],[118,259,76,-0.046577770730994825],[118,259,77,-0.03041078068885885],[118,259,78,-0.017504509729996086],[118,259,79,-0.022347662206743404],[118,260,64,-0.025045687238287217],[118,260,65,-0.019223889153718296],[118,260,66,-0.023063092203077663],[118,260,67,-0.022636491266924647],[118,260,68,-0.025273932590424927],[118,260,69,-0.0408223924209816],[118,260,70,-0.05556004633202701],[118,260,71,-0.05938516039769828],[118,260,72,-0.04952446055238837],[118,260,73,-0.02696457838121374],[118,260,74,-0.020309928225448727],[118,260,75,-0.03860260639044755],[118,260,76,-0.04559084333455294],[118,260,77,-0.029672687363671246],[118,260,78,-0.017008498772665196],[118,260,79,-0.02181717483067934],[118,261,64,-0.02469188889858004],[118,261,65,-0.018814640937898277],[118,261,66,-0.022604455172423345],[118,261,67,-0.022237186124310884],[118,261,68,-0.024904462297508867],[118,261,69,-0.040279215990789215],[118,261,70,-0.054750933245714006],[118,261,71,-0.05835604937610959],[118,261,72,-0.048593618383419815],[118,261,73,-0.026417635706735453],[118,261,74,-0.01982786464488345],[118,261,75,-0.03775257164133115],[118,261,76,-0.04463061871321519],[118,261,77,-0.028958684411826398],[118,261,78,-0.01653183265806166],[118,261,79,-0.021303986796550746],[118,262,64,-0.024352565730081724],[118,262,65,-0.018419348650340756],[118,262,66,-0.022155150728781083],[118,262,67,-0.02184506293280162],[118,262,68,-0.024543284810548568],[118,262,69,-0.03974761206085348],[118,262,70,-0.05395973870226039],[118,262,71,-0.057353554487419973],[118,262,72,-0.047687605597332504],[118,262,73,-0.025886379606768827],[118,262,74,-0.019360874616368026],[118,262,75,-0.036925752253423226],[118,262,76,-0.04369690270646586],[118,262,77,-0.028268360859492647],[118,262,78,-0.01607401556604087],[118,262,79,-0.020807785291846514],[118,263,64,-0.02402752528882395],[118,263,65,-0.018037788215847467],[118,263,66,-0.021715221039462655],[118,263,67,-0.02146023509037398],[118,263,68,-0.02419047339850937],[118,263,69,-0.039227780653233235],[118,263,70,-0.05318671050666865],[118,263,71,-0.05637771851002316],[118,263,72,-0.04680638007345097],[118,263,73,-0.025370691963858993],[118,263,74,-0.018908708671547998],[118,263,75,-0.03612193020067114],[118,263,76,-0.04278948550287762],[118,263,77,-0.027601301825323867],[118,263,78,-0.015634556455149686],[118,263,79,-0.02032825644329679],[118,264,64,-0.02371657903605124],[118,264,65,-0.017669734358584422],[118,264,66,-0.021284695378901458],[118,264,67,-0.021082802934616764],[118,264,68,-0.023846093606229402],[118,264,69,-0.038719909383594805],[118,264,70,-0.0524320765559204],[118,264,71,-0.0554285622302032],[118,264,72,-0.04594988009841004],[118,264,73,-0.024870445689920386],[118,264,74,-0.018471114182370643],[118,264,75,-0.03534087459841085],[118,264,76,-0.04190814265584968],[118,264,77,-0.026957089533422084],[118,264,78,-0.015212969862192054],[118,264,79,-0.01986508593471615],[118,265,64,-0.023419542835852646],[118,265,65,-0.017314961174630283],[118,265,66,-0.020863590505221446],[118,265,67,-0.020712854001175222],[118,265,68,-0.02351020345110218],[118,265,69,-0.0382241737012105],[118,265,70,-0.051696045410213],[118,265,71,-0.05450608561874384],[118,265,72,-0.045118025544462426],[118,265,73,-0.0243855054558894],[118,265,74,-0.018047835947132915],[118,265,75,-0.03458234258279983],[118,265,76,-0.041052636115886006],[118,265,77,-0.026335304301607985],[118,265,78,-0.01480877665486455],[118,265,79,-0.01941795960535664],[118,266,64,-0.023136237430248823],[118,266,65,-0.01697324268697106],[118,266,66,-0.02045191105787648],[118,266,67,-0.020350463308881794],[118,266,68,-0.02318285363563761],[118,266,69,-0.037740737162912825],[118,266,70,-0.05097880691252027],[118,266,71,-0.053610269038319],[118,266,72,-0.044310719066727774],[118,266,73,-0.023915728420176353],[118,266,74,-0.01763861676226168],[118,266,75,-0.03384608019832382],[118,266,76,-0.04022271527466604],[118,266,77,-0.025735525502421905],[118,266,78,-0.014421504736849442],[118,266,79,-0.01898656402740005],[118,267,64,-0.022866488891677028],[118,267,65,-0.016644353381758265],[118,267,66,-0.020049649973433923],[118,267,67,-0.019995693668798074],[118,267,68,-0.02286408777426469],[118,267,69,-0.037269751738604466],[118,267,70,-0.05028053285220965],[118,267,71,-0.052741074475885295],[118,267,72,-0.04352784731399713],[118,267,73,-0.023460964953184036],[118,267,74,-0.017243197978196186],[118,267,75,-0.03313182328935744],[118,267,76,-0.03941811801636457],[118,267,77,-0.025157332494560713],[118,267,78,-0.014050689705028329],[118,267,79,-0.018570587061389393],[118,268,64,-0.022610129052903716],[118,268,65,-0.01632806872477235],[118,268,66,-0.01965678891660964],[118,268,67,-0.019648596014378784],[118,268,68,-0.022553942632693415],[118,268,69,-0.03681135814583042],[118,268,70,-0.04960137766840857],[118,268,71,-0.051898446794456335],[118,268,72,-0.04276928214789606],[118,268,73,-0.023021059355287296],[118,268,74,-0.01686132003787591],[118,268,75,-0.03243929839192582],[118,268,76,-0.03863857177186408],[118,268,77,-0.024600305522714833],[118,268,78,-0.01369587545871902],[118,268,79,-0.01816971838854368],[118,269,64,-0.022366995914484638],[118,269,65,-0.01602416565716953],[118,269,66,-0.019273298723730715],[118,269,67,-0.019309209749994935],[118,269,68,-0.022252448378140173],[118,269,69,-0.03636568621086627],[118,269,70,-0.04894147918882442],[118,269,71,-0.05108231499883396],[118,269,72,-0.04203488186543431],[118,269,73,-0.022595850565820384],[118,269,74,-0.016492722996489156],[118,269,75,-0.03176822362200921],[118,269,76,-0.03788379457171613],[118,269,77,-0.024064026584029105],[118,269,78,-0.013356614761071124],[118,269,79,-0.01778365001904853],[118,270,64,-0.02213693402998366],[118,270,65,-0.015732423069733464],[118,270,66,-0.018899139855897473],[118,270,67,-0.018977563115109442],[118,270,68,-0.02195962883873032],[118,270,69,-0.03593285525375042],[118,270,70,-0.048300959399759],[118,270,71,-0.050292593510095795],[118,270,72,-0.04132449242021706],[118,270,73,-0.0221851728607818],[118,270,74,-0.01613714702129344],[118,270,75,-0.031118309556936674],[118,270,76,-0.03715349609393405],[118,270,77,-0.02354808025966929],[118,270,78,-0.013032469752974774],[118,270,79,-0.01741207677556258],[118,271,64,-0.021919794869209697],[118,271,65,-0.015452622254952426],[118,271,66,-0.018534262859177204],[118,271,67,-0.018653673561416086],[118,271,68,-0.021675501770359578],[118,271,69,-0.03551297449462596],[118,271,70,-0.04767992524307309],[118,271,71,-0.04952918344382928],[118,271,72,-0.040637948637806814],[118,271,73,-0.021788856537095044],[118,271,74,-0.01579433287043893],[118,271,75,-0.03048926010660726],[118,271,76,-0.03644737870290998],[118,271,77,-0.023052054510203448],[118,271,78,-0.012723012420017565],[118,271,79,-0.01705469675129871],[118,272,64,-0.02171543715980116],[118,272,65,-0.01518454733637223],[118,272,66,-0.018178608829275078],[118,272,67,-0.018337548140333625],[118,272,68,-0.021400079129321355],[118,272,69,-0.035106143478761224],[118,272,70,-0.04707846943593251],[118,272,71,-0.04879197388734628],[118,272,72,-0.03997507542098447],[118,272,73,-0.021406728581427004],[118,272,74,-0.015464022349873135],[118,272,75,-0.02988077337148593],[118,272,76,-0.035765138475982554],[118,272,77,-0.022575541433737373],[118,272,78,-0.012427825013200123],[118,272,79,-0.01671121174216496],[118,273,64,-0.021523727207506595],[118,273,65,-0.01492798567476035],[118,273,66,-0.017832109878216904],[118,273,67,-0.018029183898295418],[118,273,68,-0.02113336734898809],[118,273,69,-0.03471245251758031],[118,273,70,-0.04649667130921451],[118,273,71,-0.04808084317132242],[118,273,72,-0.03933568894088384],[118,273,73,-0.021038613321692098],[118,273,74,-0.015145958747515667],[118,273,75,-0.02929254248452578],[118,273,76,-0.03510646621440398],[118,273,77,-0.022118137985948548],[118,273,78,-0.012146500424260062],[118,273,79,-0.01638132765255271],[118,274,64,-0.021344539195573733],[118,274,65,-0.01468272825073133],[118,274,66,-0.01749468960069279],[118,274,67,-0.017728568277361644],[118,274,68,-0.0208753676188682],[118,274,69,-0.03433198314305595],[118,274,70,-0.045934597660552],[118,274,71,-0.04739566013155236],[118,274,72,-0.03871959781023539],[118,274,73,-0.020684333059530033],[118,274,74,-0.014839887244027884],[118,274,75,-0.02872425643438344],[118,274,76,-0.034471048435695775],[118,274,77,-0.021679446661374602],[118,274,78,-0.011878642516599052],[118,274,79,-0.01606475487447427],[118,275,64,-0.021177755463645927],[118,275,65,-0.014448570023551701],[118,275,66,-0.017166263537822714],[118,275,67,-0.017435679518759437],[118,275,68,-0.020626076164357326],[118,275,69,-0.03396480857280701],[118,275,70,-0.04539230361807257],[118,275,71,-0.046736285356734686],[118,275,72,-0.03812660423518006],[118,275,73,-0.02034370868216274],[118,275,74,-0.014545555299599066],[118,275,75,-0.028175600867493624],[118,275,76,-0.03385856834459915],[118,275,77,-0.021259076135477513],[118,275,78,-0.011623866412893166],[118,275,79,-0.015761208639825858],[118,276,64,-0.021023266766583254],[118,276,65,-0.01422531026591752],[118,276,66,-0.016846739636209855],[118,276,67,-0.017150487067034828],[118,276,68,-0.02038548452551637],[118,276,69,-0.03361099418325539],[118,276,70,-0.04486983351098751],[118,276,71,-0.046102572418428675],[118,276,72,-0.037556505142354084],[118,276,73,-0.020016560252167703],[118,276,74,-0.01426271301627505],[118,276,75,-0.027646258866777636],[118,276,76,-0.033268706780058485],[118,276,77,-0.020856641867181086],[118,276,78,-0.011381798740562016],[118,276,79,-0.015470409345637773],[118,277,64,-0.02088097251363016],[118,277,65,-0.014012752874577136],[118,277,66,-0.016536018700287924],[118,277,67,-0.016872951972613986],[118,277,68,-0.02015357983324601],[118,277,69,-0.03327059798823551],[118,277,70,-0.04436722174331214],[118,277,71,-0.045494369079568005],[118,277,72,-0.03700909327818696],[118,277,73,-0.019702707573837238],[118,277,74,-0.013991113475462426],[118,277,75,-0.02713591170497204],[118,277,76,-0.03270114313590686],[118,277,77,-0.020471766661733594],[118,277,78,-0.011152077836339456],[118,277,79,-0.015192082852248245],[118,278,64,-0.020750780988323714],[118,278,65,-0.013810706656710763],[118,278,66,-0.016233994836073014],[118,278,67,-0.016603027290653896],[118,278,68,-0.019930345081232082],[118,278,69,-0.032943671120462543],[118,278,70,-0.04388449366710115],[118,278,71,-0.044911518478125946],[118,278,72,-0.03648415827756686],[118,278,73,-0.01940197073489632],[118,278,74,-0.013730513050315824],[118,278,75,-0.026644239570757604],[118,278,76,-0.03215555625313557],[118,278,77,-0.020104081193876848],[118,278,78,-0.010934353911225483],[118,278,79,-0.014925960754388448],[118,279,64,-0.020632609549510465],[118,279,65,-0.013618985592024058],[118,279,66,-0.01594055588455486],[118,279,67,-0.016340658474163765],[118,279,68,-0.019715759392059388],[118,279,69,-0.03263025831330053],[118,279,70,-0.04342166645170452],[118,279,71,-0.044353860282746814],[118,279,72,-0.035981487699241345],[118,279,73,-0.019114170622456562],[118,279,74,-0.013480671692795588],[118,279,75,-0.026170922266064694],[118,279,76,-0.03163162528184636],[118,279,77,-0.019753224491421854],[118,279,78,-0.010728289177124315],[118,279,79,-0.014671780625215273],[118,280,64,-0.020526384813816103],[118,280,65,-0.013437409070559734],[118,280,66,-0.015655583843099855],[118,280,67,-0.016085783759500875],[118,280,68,-0.019509798275933164],[118,280,69,-0.03233039838032761],[118,280,70,-0.042978749945693694],[118,280,71,-0.04382123181737741],[118,280,72,-0.03550086802553923],[118,280,73,-0.018839129412194434],[118,280,74,-0.013241353195263452],[118,280,75,-0.02571563987313228],[118,280,76,-0.031129030511199356],[118,280,77,-0.01941884437944055],[118,280,78,-0.010533557936483641],[118,280,79,-0.014429286233373037],[118,281,64,-0.020432042819853936],[118,281,65,-0.01326580210624119],[118,281,66,-0.015378955273346382],[118,281,67,-0.01583833454243231],[118,281,68,-0.019312433880454744],[118,281,69,-0.032044124690223365],[118,281,70,-0.04255574752822216],[118,281,71,-0.043313469152123335],[118,281,72,-0.0350420856241785],[118,281,73,-0.018576671029816895],[118,281,74,-0.013012325426535682],[118,281,75,-0.025278073390078887],[118,281,76,-0.030647454165872026],[118,281,77,-0.0191005978853657],[118,281,78,-0.010349846636233211],[118,281,79,-0.014198227733189366],[118,282,64,-0.020349529174399528],[118,282,65,-0.013103995526175565],[118,282,66,-0.015110541694197246],[118,282,67,-0.01559823574306993],[118,282,68,-0.019123635229930068],[118,282,69,-0.031771465634557045],[118,282,70,-0.04215265694672066],[118,282,71,-0.04283040815774151],[118,282,72,-0.03460492767010364],[118,282,73,-0.018326621583954678],[118,282,74,-0.012793360542364006],[118,282,75,-0.0248579053339171],[118,282,76,-0.03018658116772713],[118,282,77,-0.018798151605351844],[118,282,78,-0.010176853887280499],[118,282,79,-0.013978361828122546],[118,283,64,-0.020278799180709243],[118,283,65,-0.012951826135759972],[118,283,66,-0.014850209958645702],[118,283,67,-0.015365406158100432],[118,283,68,-0.018943368452723996],[118,283,69,-0.03151244508611654],[118,283,70,-0.04176947113797203],[118,283,71,-0.042371885521371576],[118,283,72,-0.03418918302547321],[118,283,73,-0.018088809769704173],[118,283,74,-0.012584235170372266],[118,283,75,-0.024454820310133456],[118,283,76,-0.029746099861594166],[118,283,77,-0.018511182032321143],[118,283,78,-0.010014290450788077],[118,283,79,-0.013769451907600257],[118,284,64,-0.02021981794907199],[118,284,65,-0.012809136859613487],[118,284,66,-0.014597822613275026],[118,284,67,-0.015139758798830942],[118,284,68,-0.018771596995187777],[118,284,69,-0.03126708284545999],[118,284,70,-0.04140617902973085],[118,284,71,-0.041937739721258104],[118,284,72,-0.03379464307605453],[118,284,73,-0.017863067242080703],[118,284,74,-0.012384730569500402],[118,284,75,-0.02406850554810827],[118,284,76,-0.02932570270423106],[118,284,77,-0.01823937584614134],[118,284,78,-0.009861879192378695],[118,284,79,-0.013571268157378271],[118,285,64,-0.020172560489601164],[118,285,65,-0.012675776858343145],[118,285,66,-0.014353238239391792],[118,285,67,-0.01492120121368163],[118,285,68,-0.018608281820716978],[118,285,69,-0.03103539507343404],[118,285,70,-0.04106276632019124],[118,285,71,-0.04152781195836858],[118,285,72,-0.03342110252241796],[118,285,73,-0.017649228958695515],[118,285,74,-0.012194632764036345],[118,285,75,-0.023698651401808653],[118,285,76,-0.028925086915700175],[118,285,77,-0.017982430166402615],[118,285,78,-0.009719355005329512],[118,285,79,-0.013383587643535784],[118,286,64,-0.020137011787195302],[118,286,65,-0.012551601621133527],[118,286,66,-0.014116311774867185],[118,286,67,-0.014709635793865859],[118,286,68,-0.018453381592524402],[118,286,69,-0.030817394707460935],[118,286,70,-0.04073921623273823],[118,286,71,-0.04114194704295243],[118,286,72,-0.03306836012444537],[118,286,73,-0.017447133491009043],[118,286,74,-0.012013732652344957],[118,286,75,-0.023344951815347827],[118,286,76,-0.028543955092560774],[118,286,77,-0.01774005276827812],[118,286,78,-0.009586464703733647],[118,286,79,-0.013206194370217725],[118,287,64,-0.02011316685848495],[118,287,65,-0.012436473034104376],[118,287,66,-0.013886894815863653],[118,287,67,-0.01450496006109936],[118,287,68,-0.018306852838732738],[118,287,69,-0.030613091859455387],[118,287,70,-0.04043551024354204],[118,287,71,-0.04077999423419635],[118,287,72,-0.032736219397759024],[118,287,73,-0.01725662330352739],[118,287,74,-0.011841826090405733],[118,287,75,-0.023007104753137532],[118,287,76,-0.028182015782416137],[118,287,77,-0.01751196226192979],[118,287,78,-0.009462966886480701],[118,287,79,-0.013038879311194684],[118,288,64,-0.02010103079048209],[118,288,65,-0.012330259424335563],[118,288,66,-0.013664835897722912],[118,288,67,-0.014307066936276777],[118,288,68,-0.01816865009840852],[118,288,69,-0.030422494193282596],[118,288,70,-0.040151628779675534],[118,288,71,-0.040441808031234004],[118,288,72,-0.03242448926075703],[118,288,73,-0.017077545000321593],[118,288,74,-0.011678713950276873],[118,288,75,-0.02268481259449303],[118,288,76,-0.027838984019491128],[118,288,77,-0.017297888235898576],[118,288,78,-0.009348631772786447],[118,288,79,-0.012881440415279272],[118,289,64,-0.02010061578772703],[118,289,65,-0.012232833688395771],[118,289,66,-0.013449980132555056],[118,289,67,-0.014115844697410403],[118,289,68,-0.018038724631754915],[118,289,69,-0.030245604316917786],[118,289,70,-0.03988754778534638],[118,289,71,-0.04012724440739175],[118,289,72,-0.032132980866269104],[118,289,73,-0.01690974698237322],[118,289,74,-0.011524200112802873],[118,289,75,-0.022377780259765688],[118,289,76,-0.027514579683783225],[118,289,77,-0.017097569674868165],[118,289,78,-0.009243239737986303],[118,289,79,-0.01273368135755151],[118,290,64,-0.02011191728147103],[118,290,65,-0.012144058040466327],[118,290,66,-0.013242164358771813],[118,290,67,-0.013931174809465655],[118,290,68,-0.017917013196718998],[118,290,69,-0.030082396463920653],[118,290,70,-0.039643206642216426],[118,290,71,-0.03983612554992885],[118,290,72,-0.03186147809672405],[118,290,73,-0.016753059187953778],[118,290,74,-0.011378075125157079],[118,290,75,-0.02208569764904457],[118,290,76,-0.02720851084508656],[118,290,77,-0.016910741513938427],[118,290,78,-0.009146570950697954],[118,290,79,-0.012595401733210637],[118,291,64,-0.020134926362410936],[118,291,65,-0.012063791763868159],[118,291,66,-0.013041219706266576],[118,291,67,-0.01375293317470576],[118,291,68,-0.01780344418863254],[118,291,69,-0.029932829652989826],[118,291,70,-0.03941852659865823],[118,291,71,-0.03956826010549017],[118,291,72,-0.03160975438863083],[118,291,73,-0.016607304217735555],[118,291,74,-0.01124012486478606],[118,291,75,-0.021808249442288232],[118,291,76,-0.0269204833000666],[118,291,77,-0.016737141924517984],[118,291,78,-0.009058410665015804],[118,291,79,-0.012466402427112666],[118,292,64,-0.02016964363479999],[118,292,65,-0.011991899954829287],[118,292,66,-0.01284697462578155],[118,292,67,-0.01358099162602236],[118,292,68,-0.017697944334693905],[118,292,69,-0.02979686190515901],[118,292,70,-0.03921343063068279],[118,292,71,-0.039323464973620624],[118,292,72,-0.0313775908755713],[118,292,73,-0.01647230943533419],[118,292,74,-0.011110140049904597],[118,292,75,-0.02154512580518223],[118,292,76,-0.02665021095749706],[118,292,77,-0.016576520236599966],[118,292,78,-0.008978554924997726],[118,292,79,-0.012346491307530676],[118,293,64,-0.020216079066082585],[118,293,65,-0.011928253380541211],[118,293,66,-0.012659255034304328],[118,293,67,-0.013415218072936065],[118,293,68,-0.017600438669147893],[118,293,69,-0.02967445037589688],[118,293,70,-0.03902784380142645],[118,293,71,-0.03910156564963922],[118,293,72,-0.03116477661454694],[118,293,73,-0.01634790693280385],[118,293,74,-0.010987916086463375],[118,293,75,-0.02129602250996447],[118,293,76,-0.02639741608165854],[118,293,77,-0.016428636827414463],[118,293,78,-0.008906810200082235],[118,293,79,-0.012235483034768629],[118,294,64,-0.02027425167615323],[118,294,65,-0.011872728221480902],[118,294,66,-0.012477884405326486],[118,294,67,-0.013255476608574322],[118,294,68,-0.017510850416900103],[118,294,69,-0.029565551322069627],[118,294,70,-0.03886169339527144],[118,294,71,-0.03890239630692245],[118,294,72,-0.03097110858555752],[118,294,73,-0.016233933342266263],[118,294,74,-0.010873252795696255],[118,294,75,-0.021060640918533945],[118,294,76,-0.026161829397861575],[118,294,77,-0.016293262897350797],[118,294,78,-0.008842992935515374],[118,294,79,-0.012133198788376391],[118,295,64,-0.02034418919535565],[118,295,65,-0.0118252057800085],[118,295,66,-0.012302683830654542],[118,295,67,-0.013101627589609581],[118,295,68,-0.01742910084640549],[118,295,69,-0.02947012003238434],[118,295,70,-0.03871490900540028],[118,295,71,-0.03872579981535602],[118,295,72,-0.03079639162869294],[118,295,73,-0.016130229605045177],[118,295,74,-0.010765954111695192],[118,295,75,-0.02083868792632261],[118,295,76,-0.025943190154143262],[118,295,77,-0.016170180207185008],[118,295,78,-0.008786929073224616],[118,295,79,-0.012039465966653394],[118,296,64,-0.020425927689418366],[118,296,65,-0.011785572154111622],[118,296,66,-0.012133472053444174],[118,296,67,-0.012953527688597517],[118,296,68,-0.017355109090225595],[118,296,69,-0.02938811071907523],[118,296,70,-0.03858742257245346],[118,296,71,-0.038571627693508144],[118,296,72,-0.030640438316616645],[118,296,73,-0.01603664069679813],[118,296,74,-0.010665827748450587],[118,296,75,-0.02062987586702483],[118,296,76,-0.025741246138980614],[118,296,77,-0.01605918077594314],[118,296,78,-0.008738453542145912],[118,296,79,-0.011954117857641151],[118,297,64,-0.020519511149365722],[118,297,65,-0.011753717875049483],[118,297,66,-0.011970065472179318],[118,297,67,-0.012811029918226014],[118,297,68,-0.017288791931655126],[118,297,69,-0.029319476368633076],[118,297,70,-0.03847916837201626],[118,297,71,-0.03843973999199851],[118,297,72,-0.03050306876021576],[118,297,73,-0.01595301530703724],[118,297,74,-0.010572684835731323],[118,297,75,-0.020433922378319817],[118,297,76,-0.025555753654879255],[118,297,77,-0.015960066538581334],[118,297,78,-0.008697409716791334],[118,297,79,-0.01187699328071573],[118,298,64,-0.020624991116024775],[118,298,65,-0.011729537578415002],[118,298,66,-0.011812278185419337],[118,298,67,-0.012673983696299955],[118,298,68,-0.017230063624289832],[118,298,69,-0.029264168617124754],[118,298,70,-0.03839008301567915],[118,298,71,-0.03833000517171739],[118,298,72,-0.03038411041065966],[118,298,73,-0.015879205536258528],[118,298,74,-0.010486339587429066],[118,298,75,-0.020250550292475532],[118,298,76,-0.025386477510858776],[118,298,77,-0.015872649025111627],[118,298,78,-0.0086636489047184],[118,298,79,-0.011807936259409707],[118,299,64,-0.02074243988281832],[118,299,65,-0.011712943087553367],[118,299,66,-0.011659935296251287],[118,299,67,-0.012542248013357548],[118,299,68,-0.017178848652923982],[118,299,69,-0.02922215041041478],[118,299,70,-0.038320118083255375],[118,299,71,-0.03824231245628614],[118,299,72,-0.0302834102049507],[118,299,73,-0.015815078831069068],[118,299,74,-0.010406621101791852],[118,299,75,-0.020079499535552294],[118,299,76,-0.025233202906001125],[118,299,77,-0.01579676082661011],[118,299,78,-0.008637041527662767],[118,299,79,-0.011746807296254266],[118,300,64,-0.02087196867117825],[118,300,65,-0.01170388137860302],[118,300,66,-0.01151289102006634],[118,300,67,-0.012415709317866707],[118,300,68,-0.01713509911932305],[118,300,69,-0.029193413200438858],[118,300,70,-0.03826925720342027],[118,300,71,-0.03817658853944139],[118,300,72,-0.03020085099775128],[118,300,73,-0.01576053416033408],[118,300,74,-0.010333389354824519],[118,300,75,-0.019920543152111045],[118,300,76,-0.025095751372534586],[118,300,77,-0.015732271064590884],[118,300,78,-0.008617492258625093],[118,300,79,-0.011693498556138954],[118,301,64,-0.021013704428494942],[118,301,65,-0.011702311670557516],[118,301,66,-0.011371006417600478],[118,301,67,-0.012294259501479131],[118,301,68,-0.017098772677903707],[118,301,69,-0.02917795512872592],[118,301,70,-0.0382374945428676],[118,301,71,-0.03813277609753513],[118,301,72,-0.03013633020243586],[118,301,73,-0.01571548080992312],[118,301,74,-0.010266514200655054],[118,301,75,-0.019773466686270884],[118,301,76,-0.024973960405485225],[118,301,77,-0.015679064866520837],[118,301,78,-0.008604919474516708],[118,301,79,-0.011647913656345968],[118,302,64,-0.021167785926315907],[118,302,65,-0.011708201615822516],[118,302,66,-0.01123414604454565],[118,302,67,-0.012177792607718597],[118,302,68,-0.017069828994437437],[118,302,69,-0.029175777540659607],[118,302,70,-0.03822483143860655],[118,302,71,-0.03811083025299681],[118,302,72,-0.030089756221193444],[118,302,73,-0.015679834832578655],[118,302,74,-0.010205871895197652],[118,302,75,-0.01963806493823959],[118,302,76,-0.02486768032253003],[118,302,77,-0.015637039938258924],[118,302,78,-0.008599251687147544],[118,302,79,-0.011609964323979241],[118,303,64,-0.021334363512434028],[118,303,65,-0.011721527106543386],[118,303,66,-0.011102178192197283],[118,303,67,-0.012066205092034352],[118,303,68,-0.017048229703831946],[118,303,69,-0.029186884951399143],[118,303,70,-0.03823127643499566],[118,303,71,-0.038110718385237004],[118,303,72,-0.03006104819193988],[118,303,73,-0.015653518807548897],[118,303,74,-0.01015134491996902],[118,303,75,-0.019514141990021796],[118,303,76,-0.02477677435732887],[118,303,77,-0.0156061063394526],[118,303,78,-0.008600427156576607],[118,303,79,-0.011579570218825764],[118,304,64,-0.021513598861233135],[118,304,65,-0.011742272083645732],[118,304,66,-0.010974975148804904],[118,304,67,-0.011959396102484995],[118,304,68,-0.01703393837337655],[118,304,69,-0.029211285006882057],[118,304,70,-0.03825684530503242],[118,304,71,-0.03813241990209994],[118,304,72,-0.030050135698878818],[118,304,73,-0.01563646158999475],[118,304,74,-0.010102821818470461],[118,304,75,-0.019401511243752032],[118,304,76,-0.024701118757518396],[118,304,77,-0.015586186258080382],[118,304,78,-0.008608393507650202],[118,304,79,-0.0115566587676778],[118,305,64,-0.02170566472089468],[118,305,65,-0.0117704283480576],[118,305,66,-0.010852413483233117],[118,305,67,-0.0118572677826304],[118,305,68,-0.017026920471586385],[118,305,69,-0.029248988439748488],[118,305,70,-0.03830156105564889],[118,305,71,-0.03817592597010399],[118,305,72,-0.030056958445007418],[118,305,73,-0.015628598049352356],[118,305,74,-0.010060197045807136],[118,305,75,-0.019299995474820524],[118,305,76,-0.024640602889004035],[118,305,77,-0.015577213783807943],[118,305,78,-0.008623107348609365],[118,305,79,-0.011541165010404983],[118,306,64,-0.02191074465606725],[118,306,65,-0.011805995373558986],[118,306,66,-0.01073437435261748],[118,306,67,-0.011759725598315342],[118,306,68,-0.017027143342886464],[118,306,69,-0.029300009020182812],[118,306,70,-0.038365453916913816],[118,306,71,-0.03824123920168967],[118,306,72,-0.030081465884810744],[118,306,73,-0.01562986879584451],[118,306,74,-0.010023370832312877],[118,306,75,-0.01920942690213096],[118,306,76,-0.024595129348321716],[118,306,77,-0.015579134679826087],[118,306,78,-0.008644533890623864],[118,306,79,-0.011533031458177061],[118,307,64,-0.022129032784573344],[118,307,65,-0.011848980120690536],[118,307,66,-0.010620743835804676],[118,307,67,-0.011666678690163104],[118,307,68,-0.017034576188503195],[118,307,69,-0.02936436350184463],[118,307,70,-0.03844856131520489],[118,307,71,-0.038328373297682176],[118,307,72,-0.03012361681534687],[118,307,73,-0.015640219894349657],[118,307,74,-0.009992249062049848],[118,307,75,-0.019129647278006437],[118,307,76,-0.024564614084975567],[118,307,77,-0.01559190615282829],[118,307,78,-0.008672646567073183],[118,307,79,-0.011532207964342562],[118,308,64,-0.022360733506748276],[118,308,65,-0.011899396851151236],[118,308,66,-0.010511413294446735],[118,308,67,-0.011578040253706479],[118,308,68,-0.017049190054053504],[118,308,69,-0.029442071563234404],[118,308,70,-0.03855092783057916],[118,308,71,-0.0384373526431679],[118,308,72,-0.030183378923884615],[118,308,73,-0.01565960256486466],[118,308,74,-0.009966743167169282],[118,308,75,-0.019060508000444],[118,308,76,-0.024548986535803636],[118,308,77,-0.01561549662080107],[118,308,78,-0.008707426651392644],[118,308,79,-0.011538651608598413],[118,309,64,-0.022606061226003376],[118,309,65,-0.011957266942095694],[118,309,66,-0.01040627976368243],[118,309,67,-0.011493727949177164],[118,309,68,-0.017070957824430452],[118,309,69,-0.029533155745006524],[118,309,70,-0.03867260513871963],[118,309,71,-0.03856821185496664],[118,309,72,-0.030260728290205652],[118,309,73,-0.01568797286881109],[118,309,74,-0.009946770039220457],[118,309,75,-0.019001870250581917],[118,309,76,-0.024548189773545826],[118,309,77,-0.015649885478297664],[118,309,78,-0.008748862872283795],[118,309,79,-0.011552326595199952],[118,310,64,-0.022865240059216977],[118,310,65,-0.012022618699735274],[118,310,66,-0.010305246374397335],[118,310,67,-0.011413664343061914],[118,310,68,-0.017099854226700156],[118,310,69,-0.029637641383908533],[118,310,70,-0.03881365193799092],[118,310,71,-0.03872099527886458],[118,310,72,-0.030355648841636218],[118,310,73,-0.0157252913804559],[118,310,74,-0.00993225195860534],[118,310,75,-0.01895360515840728],[118,310,76,-0.02456218067190574],[118,310,77,-0.01569506285886533],[118,310,78,-0.008796951025080896],[118,310,79,-0.011573204166079409],[118,311,64,-0.0231385035355924],[118,311,65,-0.01209548717164748],[118,311,66,-0.010208222809100687],[118,311,67,-0.011337777383609771],[118,311,68,-0.01713585584183781],[118,311,69,-0.029755556544199594],[118,311,70,-0.03897413386229491],[118,311,71,-0.03889575643477511],[118,311,72,-0.030468131758839657],[118,311,73,-0.01577152284274888],[118,311,74,-0.00992311654349568],[118,311,75,-0.018915593999902246],[118,311,76,-0.02459093008953171],[118,311,77,-0.01575102939432082],[118,311,78,-0.008851693578081644],[118,311,79,-0.011601262529879891],[118,312,64,-0.023426094282639733],[118,312,65,-0.012175913957187331],[118,312,66,-0.010115125793479993],[118,312,67,-0.011266000912525777],[118,312,68,-0.017178941126230866],[118,312,69,-0.02988693194755894],[118,312,70,-0.03915412338055711],[118,312,71,-0.03909255740797273],[118,312,72,-0.030598174830351155],[118,312,73,-0.015826635806897783],[118,312,74,-0.009919296719632204],[118,312,75,-0.018887728428966983],[118,312,76,-0.02463442307543171],[118,312,77,-0.015817795970563583],[118,312,78,-0.008913099272650117],[118,312,79,-0.011636486808026026],[118,313,64,-0.02372826369797882],[118,313,65,-0.012263947015389916],[118,313,66,-0.010025879625700732],[118,313,67,-0.011198275215120988],[118,313,68,-0.017229090443971626],[118,313,69,-0.030031800902649577],[118,313,70,-0.03935369968381616],[118,313,71,-0.03931146818454814],[118,313,72,-0.03074578175380126],[118,313,73,-0.015890602255029074],[118,313,74,-0.0099207307125358],[118,313,75,-0.01886991074760054],[118,313,76,-0.024692659098443107],[118,313,77,-0.015895383479635178],[118,313,78,-0.008981182715922915],[118,313,79,-0.01167886899908271],[118,314,64,-0.024045271605713018],[118,314,65,-0.012359640469761476],[118,314,66,-0.00994041674551888],[118,314,67,-0.011134547611216144],[118,314,68,-0.017286286111062848],[118,314,69,-0.030190199235667323],[118,314,70,-0.03957294856103594],[118,314,71,-0.03955256592923651],[118,314,72,-0.030910961381753137],[118,314,73,-0.01596339720532245],[118,314,74,-0.009927362063776169],[118,314,75,-0.018862054217956517],[118,314,76,-0.024765652303467514],[118,314,77,-0.015983822567752982],[118,314,78,-0.009055963964985151],[118,314,79,-0.011728407962786905],[118,315,64,-0.024377385896167406],[118,315,65,-0.012463054409348702],[118,315,66,-0.009858678345237407],[118,315,67,-0.0110747730890853],[118,315,68,-0.017350512452733936],[118,315,69,-0.03036216522333846],[118,315,70,-0.03981196226487447],[118,315,71,-0.039815934203770616],[118,315,72,-0.031093726910041714],[118,315,73,-0.016044998299029917],[118,315,74,-0.009939139673038501],[118,315,75,-0.0188640834199927],[118,315,76,-0.024853431797241154],[118,315,77,-0.01608315337905327],[118,315,78,-0.009137468101409512],[118,315,79,-0.0117851094252491],[118,316,64,-0.024724882147846104],[118,316,65,-0.01257425468547617],[118,316,66,-0.009780615024483104],[118,316,67,-0.011018914984696144],[118,316,68,-0.017421755875136943],[118,316,69,-0.030547739529969833],[118,316,70,-0.04007083936877331],[118,316,71,-0.04010166212392788],[118,316,72,-0.031294095006493064],[118,316,73,-0.01613538536883015],[118,316,74,-0.009956017867830009],[118,316,75,-0.01887593465853536],[118,316,76,-0.024956041966475506],[118,316,77,-0.01619342529480355],[118,316,78,-0.00922572479510539],[118,316,79,-0.011848986006949454],[118,317,64,-0.025088043230538287],[118,317,65,-0.012693312703556048],[118,317,66,-0.009706187490717413],[118,317,67,-0.010966945708463877],[118,317,68,-0.017500004952764204],[118,317,69,-0.030746965150287676],[118,317,70,-0.040349684616843094],[118,317,71,-0.04040984345346485],[118,317,72,-0.03151208487789775],[118,317,73,-0.01623453998801332],[118,317,74,-0.009977956502767383],[118,317,75,-0.018897556423656304],[118,317,76,-0.025073542831235505],[118,317,77,-0.016314696667863005],[118,317,78,-0.009320767856480795],[118,317,79,-0.011920057275267792],[118,318,64,-0.025467158888569423],[118,318,65,-0.012820305209369845],[118,318,66,-0.00963536730728245],[118,318,67,-0.010918847521643557],[118,318,68,-0.01758525053296996],[118,318,69,-0.03095988735990944],[118,318,70,-0.04064860876811839],[118,318,71,-0.04074057563316162],[118,318,72,-0.03174771727311363],[118,318,73,-0.016342445000029664],[118,318,74,-0.010004921090464131],[118,318,75,-0.018928909908308825],[118,318,76,-0.025206010436439438],[118,318,77,-0.016447034552191035],[118,318,78,-0.009422634775985586],[118,318,79,-0.011998349823392906],[118,319,64,-0.025862522604052463],[118,319,65,-0.01295531430376091],[118,319,66,-0.009568127183147508],[118,319,67,-0.010874606623938604],[118,319,68,-0.017677490732718557],[118,319,69,-0.03118655648610548],[118,319,70,-0.040967726177229366],[118,319,71,-0.04109396009894934],[118,319,72,-0.03200101342347544],[118,319,73,-0.01645908080484662],[118,319,74,-0.010036878935505535],[118,319,75,-0.0189699606819056],[118,319,76,-0.02535353044490256],[118,319,77,-0.01659051975003608],[118,319,78,-0.009531376539800485],[118,319,79,-0.012083896576670094],[119,-64,64,-0.2309926196327694],[119,-64,65,-0.16138931548543495],[119,-64,66,-0.13739168517934408],[119,-64,67,-0.17570641418681152],[119,-64,68,-0.14213842055684509],[119,-64,69,-0.1291208324326283],[119,-64,70,-0.08133817412391464],[119,-64,71,0.02404113284927115],[119,-64,72,0.03040803096272851],[119,-64,73,-0.08693109748959703],[119,-64,74,-0.12178946457430982],[119,-64,75,-0.13652263930965872],[119,-64,76,-0.12021371852784851],[119,-64,77,0.016597641699013902],[119,-64,78,0.11766949626296137],[119,-64,79,0.019540143819672003],[119,-63,64,-0.22632144889129266],[119,-63,65,-0.15782096743441423],[119,-63,66,-0.13416836401239712],[119,-63,67,-0.17120957736994857],[119,-63,68,-0.1382000727104582],[119,-63,69,-0.12604024836812922],[119,-63,70,-0.07938549034219305],[119,-63,71,0.024206510758905706],[119,-63,72,0.030259772187474505],[119,-63,73,-0.0855475270980075],[119,-63,74,-0.12015178817975689],[119,-63,75,-0.13467729130446182],[119,-63,76,-0.11850515007329049],[119,-63,77,0.015409111241593982],[119,-63,78,0.11416831133886168],[119,-63,79,0.017718003016584785],[119,-62,64,-0.22176308582233786],[119,-62,65,-0.15436414453842165],[119,-62,66,-0.13105186210887743],[119,-62,67,-0.16685437128828176],[119,-62,68,-0.13440846247687424],[119,-62,69,-0.12306480006255208],[119,-62,70,-0.07750698496337241],[119,-62,71,0.024311340058470018],[119,-62,72,0.03006748108067917],[119,-62,73,-0.0842028173800482],[119,-62,74,-0.11855862182685825],[119,-62,75,-0.13288073901772302],[119,-62,76,-0.1168249984857196],[119,-62,77,0.014248015023125733],[119,-62,78,0.1107222907281535],[119,-62,79,0.015925109541210607],[119,-61,64,-0.2173148806235828],[119,-61,65,-0.15101541293152557],[119,-61,66,-0.1280385009871945],[119,-61,67,-0.16263624705099913],[119,-61,68,-0.13075822921900407],[119,-61,69,-0.12019043445025733],[119,-61,70,-0.0756997692526606],[119,-61,71,0.024358365941120372],[119,-61,72,0.029833338297811134],[119,-61,73,-0.08289518104906865],[119,-61,74,-0.11700753433279612],[119,-61,75,-0.13113057238728337],[119,-61,76,-0.11517243932217885],[119,-61,77,0.013113810720486766],[119,-61,78,0.10733099620838342],[119,-61,79,0.014161682101079967],[119,-60,64,-0.21297410467970532],[119,-60,65,-0.1477712683900966],[119,-60,66,-0.12512454609981474],[119,-60,67,-0.15855060587230885],[119,-60,68,-0.1272440084653587],[119,-60,69,-0.11741311702482632],[119,-60,70,-0.07396102182023906],[119,-60,71,0.02435020110397429],[119,-60,72,0.029559397117217126],[119,-60,73,-0.08162289953998558],[119,-60,74,-0.11549613823885586],[119,-60,75,-0.12942438097084902],[119,-60,76,-0.11354659639757007],[119,-60,77,0.012005980650048589],[119,-60,78,0.10399396540799435],[119,-60,79,0.012427929512737152],[119,-59,64,-0.20873798211556205],[119,-59,65,-0.14462822362468145],[119,-59,66,-0.12230631970568391],[119,-59,67,-0.15459291454973714],[119,-59,68,-0.12386054244078601],[119,-59,69,-0.11472889941894507],[119,-59,70,-0.0722879767678219],[119,-59,71,0.024289396058565605],[119,-59,72,0.029247656208223855],[119,-59,73,-0.08038428550664253],[119,-59,74,-0.11402209320513715],[119,-59,75,-0.12775978575928493],[119,-59,76,-0.11194657160877912],[119,-59,77,0.010924023639373016],[119,-59,78,0.1007107176144082],[119,-59,79,0.01072406216535807],[119,-58,64,-0.204603693092432],[119,-58,65,-0.14158280983425328],[119,-58,66,-0.11958020110071439],[119,-58,67,-0.15075870671350575],[119,-58,68,-0.12060268029364134],[119,-58,69,-0.11213391869449423],[119,-58,70,-0.0706779233211134],[119,-58,71,0.024178439279071103],[119,-58,72,0.028900060210708976],[119,-58,73,-0.07917768166648052],[119,-58,74,-0.11258310407494855],[119,-58,75,-0.12613443784381034],[119,-58,76,-0.11037144511522455],[119,-58,77,0.009867456110796],[119,-58,78,0.09748075668346962],[119,-58,79,0.009050294054101706],[119,-57,64,-0.20056837693140214],[119,-57,65,-0.13863157800348633],[119,-57,66,-0.11694262660949335],[119,-57,67,-0.14704358378577279],[119,-57,68,-0.11746537796938061],[119,-57,69,-0.10962439642480905],[119,-57,70,-0.06912820530005946],[119,-57,71,0.024019757631795393],[119,-57,72,0.028518500527208283],[119,-57,73,-0.07800145961542877],[119,-57,74,-0.11117691886390213],[119,-57,75,-0.12454601696433014],[119,-57,76,-0.10882027549709748],[119,-57,77,0.008835813194052022],[119,-57,78,0.09430357409520002],[119,-57,79,0.007406844949894927],[119,-56,64,-0.19662913508248028],[119,-56,65,-0.13577109999582246],[119,-56,66,-0.11439008940594497],[119,-56,67,-0.14344321571956492],[119,-56,68,-0.11444369780576444],[119,-56,69,-0.10719663762042367],[119,-56,70,-0.06763622043490398],[119,-56,71,0.023815717104959718],[119,-56,72,0.028104816350438953],[119,-56,73,-0.07685401860694009],[119,-56,74,-0.10980132669763461],[119,-56,75,-0.12299222997682534],[119,-56,76,-0.10729209991164873],[119,-56,77,0.007828649860775524],[119,-56,78,0.09117865214450646],[119,-56,79,0.005793942691685904],[119,-55,64,-0.19278303394649246],[119,-55,65,-0.1329979694558503],[119,-55,66,-0.11191913917805775],[119,-55,67,-0.13995334153398573],[119,-55,68,-0.11153280787330572],[119,-55,69,-0.10484702951757051],[119,-55,70,-0.06619941954195299],[119,-55,71,0.023568623823743435],[119,-55,72,0.027660795914180296],[119,-55,73,-0.07573378430658781],[119,-55,74,-0.10845415571961063],[119,-55,75,-0.12147080926221336],[119,-55,76,-0.1057859342541133],[119,-55,77,0.006845542078126561],[119,-55,78,0.08810546725422852],[119,-55,79,0.004211825582551282],[119,-54,64,-0.18902710755834823],[119,-54,65,-0.13030880253553032],[119,-54,66,-0.10952638165223379],[119,-54,67,-0.13656976966282605],[119,-54,68,-0.10872798108491084],[119,-54,69,-0.10257204024871354],[119,-54,70,-0.06481530557304745],[119,-54,71,0.02328072533518768],[119,-54,72,0.027188177955219103],[119,-54,73,-0.07463920753356218],[119,-54,74,-0.10713327099021494],[119,-54,75,-0.11997951109910225],[119,-54,76,-0.10430077333019225],[119,-54,77,0.005886087978718567],[119,-54,78,0.08508349339796263],[119,-54,79,0.0026607448707912118],[119,-53,64,-0.1853585201232413],[119,-53,65,-0.12770035078590966],[119,-53,66,-0.10720857407825436],[119,-53,67,-0.13328849982653998],[119,-53,68,-0.10602469268839729],[119,-53,69,-0.1003683124488292],[119,-53,70,-0.06348149374589561],[119,-53,71,0.022954234668342722],[119,-53,72,0.026688680020548066],[119,-53,73,-0.07356883773390731],[119,-53,74,-0.10583668176020031],[119,-53,75,-0.11851623856843717],[119,-53,76,-0.10283570092894076],[119,-53,77,0.004949914420237062],[119,-53,78,0.0821122962723883],[119,-53,79,0.0011409685764097008],[119,-52,64,-0.1817756306086766],[119,-52,65,-0.12517024643717228],[119,-52,66,-0.10496326018016731],[119,-52,67,-0.13010652363786204],[119,-52,68,-0.10341926655262985],[119,-52,69,-0.09823328949139615],[119,-52,70,-0.06219611521173713],[119,-52,71,0.022591482246364963],[119,-52,72,0.026164176685773005],[119,-52,73,-0.07252182104556042],[119,-52,74,-0.10456327275005241],[119,-52,75,-0.11707987472409871],[119,-52,76,-0.10139062385187647],[119,-52,77,0.0040367032228163825],[119,-52,78,0.07919211891267493],[119,-52,79,-3.472269291882508E-4],[119,-51,64,-0.17827732586303424],[119,-51,65,-0.12271653116790197],[119,-51,66,-0.10278836224367852],[119,-51,67,-0.12702129717119534],[119,-51,68,-0.10090844454166456],[119,-51,69,-0.09616480880010037],[119,-51,70,-0.060957556868716976],[119,-51,71,0.02219482340227823],[119,-51,72,0.02561658711879541],[119,-51,73,-0.07149759470301445],[119,-51,74,-0.10331236346139028],[119,-51,75,-0.11566978054699129],[119,-51,76,-0.099965823261407],[119,-51,77,0.0031461422041048114],[119,-51,78,0.07632345383659465],[119,-51,79,-0.0018036105920697272],[119,-50,64,-0.1748624572336772],[119,-50,65,-0.12033726024951204],[119,-50,66,-0.1006818407933171],[119,-50,67,-0.12403030775661807],[119,-50,68,-0.09848903517324435],[119,-50,69,-0.09416076395917423],[119,-50,70,-0.05976424468429662],[119,-50,71,0.02176655670472387],[119,-50,72,0.025047778743093177],[119,-50,73,-0.07049562385019494],[119,-50,74,-0.10208332411470414],[119,-50,75,-0.11428535811281985],[119,-50,76,-0.09856156830749231],[119,-50,77,0.002277900352503206],[119,-50,78,0.07350671134000218],[119,-50,79,-0.003228011994780598],[119,-49,64,-0.1715298408867786],[119,-49,65,-0.11803050308241234],[119,-49,66,-0.09864169426557799],[119,-49,67,-0.1211310741028251],[119,-49,68,-0.09615791400245807],[119,-49,69,-0.0922191036695577],[119,-49,70,-0.05861464357102176],[119,-49,71,0.021308921101116363],[119,-49,72,0.02445956497598976],[119,-49,73,-0.06951539975718805],[119,-49,74,-0.10087557243884908],[119,-49,75,-0.11292604770931614],[119,-49,76,-0.09717811428080604],[119,-49,77,0.0014316284274291248],[119,-49,78,0.07074221927847539],[119,-49,79,-0.004620320231011188],[119,-48,64,-0.16827826114499853],[119,-48,65,-0.11579434574651684],[119,-48,66,-0.09666596038282374],[119,-48,67,-0.11832114859089088],[119,-48,68,-0.09391202563953693],[119,-48,69,-0.09033783235916767],[119,-48,70,-0.057507258289021985],[119,-48,71,0.020824093768913657],[119,-48,72,0.023853703707119197],[119,-48,73,-0.06855643940692832],[119,-48,74,-0.09968857244273867],[119,-48,75,-0.11159132721111321],[119,-48,76,-0.09581570287982266],[119,-48,77,6.069596953356482E-4],[119,-48,78,0.06803022479158446],[119,-48,79,-0.0059804825697708204],[119,-47,64,-0.16510647375134438],[119,-47,65,-0.11362689339767615],[119,-47,66,-0.09475271737505071],[119,-47,67,-0.11559811938338063],[119,-47,68,-0.09174838549746374],[119,-47,69,-0.08851501061863039],[119,-47,70,-0.05644063419916229],[119,-47,71,0.02031418823650153],[119,-47,72,0.02323189599761723],[119,-47,73,-0.06761828502326725],[119,-47,74,-0.09852183308703924],[119,-47,75,-0.11028071133741116],[119,-47,76,-0.0944745624822336],[119,-47,77,-1.9648932258728606E-4],[119,-47,78,0.06537089617771624],[119,-47,79,-0.007308502978224348],[119,-46,64,-0.1620132090520962],[119,-46,65,-0.11152627250928084],[119,-46,66,-0.09290008505328981],[119,-46,67,-0.1129596123521754],[119,-46,68,-0.0896640812782048],[119,-46,69,-0.08674875547160207],[119,-46,70,-0.055413357873324735],[119,-46,71,0.019781252766902492],[119,-46,72,0.02259578499395777],[119,-46,73,-0.06670050354723026],[119,-46,74,-0.09737490686955785],[119,-46,75,-0.10899375080519844],[119,-46,76,-0.0931549084220373],[119,-46,77,-9.791180939804681E-4],[119,-46,78,0.06276432490707914],[119,-46,79,-0.008604440515740431],[119,-45,64,-0.15899717509213981],[119,-45,65,-0.10949063295869069],[119,-45,66,-0.09110622573854997],[119,-45,67,-0.11040329282861043],[119,-45,68,-0.08765627420661166],[119,-45,69,-0.0850372404886804],[119,-45,70,-0.054424057568238066],[119,-45,71,0.01922726899712352],[119,-45,72,0.021946955050079396],[119,-45,73,-0.06580268606790438],[119,-45,74,-0.09624738833740783],[119,-45,75,-0.10773003139032788],[119,-45,76,-0.09185694327344875],[119,-45,77,-0.0017413413129778864],[119,-45,78,0.06021052776062536],[119,-45,79,-0.009868407611477073],[119,-44,64,-0.1560570606167202],[119,-44,65,-0.10751814995880435],[119,-44,66,-0.0893693450507459],[119,-44,67,-0.10792686718017802],[119,-44,68,-0.08572220002169116],[119,-44,69,-0.08337869575426074],[119,-44,70,-0.05347140356967024],[119,-44,71,0.01865415082525436],[119,-44,72,0.021286931050855457],[119,-44,73,-0.06492444721443077],[119,-44,74,-0.09513891253877899],[119,-44,75,-0.10648917290853548],[119,-44,76,-0.09058085714281168],[119,-44,77,-0.0024835881348708798],[119,-44,78,0.05770944908255636],[119,-44,79,-0.011100568237792739],[119,-43,64,-0.1531915379743198],[119,-43,65,-0.10560702583565279],[119,-43,66,-0.08768769256229549],[119,-43,67,-0.10552808421836662],[119,-43,68,-0.08385916973521174],[119,-43,69,-0.08177140769561533],[119,-43,70,-0.05255410841380379],[119,-43,71,0.018063743536982105],[119,-43,72,0.02061717792962601],[119,-43,73,-0.06406542451530446],[119,-43,74,-0.09404915342659269],[119,-43,75,-0.1052708281281],[119,-43,76,-0.08932682796964682],[119,-43,77,-0.0032063014106915796],[119,-43,78,0.05526096313414706],[119,-43,79,-0.012301135991585287],[119,-42,64,-0.15039926591566566],[119,-42,65,-0.10375549165314352],[119,-42,66,-0.08605956232115262],[119,-42,67,-0.1032047364423964],[119,-42,68,-0.08206457016776318],[119,-42,69,-0.08021371878334946],[119,-42,70,-0.05167092699256713],[119,-42,71,0.017457823162936092],[119,-42,72,0.01993910037234365],[119,-42,73,-0.0632252777308422],[119,-42,74,-0.09297782222567999],[119,-42,75,-0.10407468162525542],[119,-42,76,-0.08809502183771611],[119,-42,77,-0.003909936924415805],[119,-42,78,0.0528648765369281],[119,-42,79,-0.013470372095248703],[119,-41,64,-0.1476788922846557],[119,-41,65,-0.10196180868674394],[119,-41,66,-0.08448329324844432],[119,-41,67,-0.10095466112409715],[119,-41,68,-0.08033586427279182],[119,-41,69,-0.07870402711251193],[119,-41,70,-0.05082065654989362],[119,-41,71,0.016838096057753164],[119,-41,72,0.019254042700456043],[119,-41,73,-0.06240368816459804],[119,-41,74,-0.09192466577472544],[119,-41,75,-0.10290044859317737],[119,-41,76,-0.08688559329704731],[119,-41,77,-0.004594962635573085],[119,-41,78,0.050520930793327534],[119,-41,79,-0.014608583328775088],[119,-40,64,-0.14502905659753457],[119,-40,65,-0.10022426974828996],[119,-40,66,-0.08295726941603114],[119,-40,67,-0.09877574123939492],[119,-40,68,-0.07867059125926952],[119,-40,69,-0.07724078587351009],[119,-40,70,-0.05000213657584827],[119,-40,71,0.016206198691482824],[119,-40,72,0.018563288924450607],[119,-40,73,-0.06160035795922729],[119,-40,74,-0.09088946485363143],[119,-40,75,-0.10174787361486874],[119,-40,76,-0.08569868569777696],[119,-40,77,-0.005261857930001241],[119,-40,78,0.048228804873086534],[119,-40,79,-0.01571611990420554],[119,-39,64,-0.14244839250699576],[119,-39,65,-0.0985412003643333],[119,-39,66,-0.08147992020932786],[119,-39,67,-0.09666590625199092],[119,-39,68,-0.07706636652366587],[119,-39,69,-0.07582250272176233],[119,-39,70,-0.049214248605432866],[119,-39,71,0.015563697643831656],[119,-39,72,0.017868062959933678],[119,-39,73,-0.0608150093819364],[119,-39,74,-0.08987203250627025],[119,-39,75,-0.10061672940964671],[119,-39,76,-0.08453443153643081],[119,-39,77,-0.005911112881234525],[119,-39,78,0.045988117854225866],[119,-39,79,-0.016793373293085334],[119,-38,64,-0.13993553014860088],[119,-38,65,-0.0969109598109651],[119,-38,66,-0.0800497203809816],[119,-38,67,-0.09462313275512678],[119,-38,68,-0.07552088140208203],[119,-38,69,-0.07444773905498377],[119,-38,70,-0.048455915928945555],[119,-38,71,0.014912089791421794],[119,-38,72,0.01716952899785492],[119,-38,73,-0.06004738410450436],[119,-38,74,-0.08887221236811628],[119,-38,75,-0.09950681556255597],[119,-38,76,-0.08339295281532642],[119,-38,77,-0.006543227525100679],[119,-38,78,0.043798431607480835],[119,-38,79,-0.0178407740173362],[119,-37,64,-0.13748909836739312],[119,-37,65,-0.09533194200838693],[119,-37,66,-0.0786651900011154],[119,-37,67,-0.0926454449775208],[119,-37,68,-0.07403190275346325],[119,-37,69,-0.07311510920686101],[119,-37,70,-0.04772610322072349],[119,-37,71,0.014252802678082295],[119,-37,72,0.016468792020380953],[119,-37,73,-0.059297242482613165],[119,-37,74,-0.08788987700767617],[119,-37,75,-0.09841795724551174],[119,-37,76,-0.0822743614156791],[119,-37,77,-0.007158711149978186],[119,-37,78,0.04165925351350882],[119,-37,79,-0.018858789413490073],[119,-36,64,-0.13510772682288077],[119,-36,65,-0.09380257627861133],[119,-36,66,-0.07732489430973534],[119,-36,67,-0.09073091515951226],[119,-36,68,-0.07259727238461666],[119,-36,69,-0.07182327956550497],[119,-36,70,-0.04702381609284284],[119,-36,71,0.0135871950582489],[119,-36,72,0.015766898454020312],[119,-36,73,-0.05856436283880107],[119,-36,74,-0.08692492628988577],[119,-36,75,-0.09735000393830211],[119,-36,76,-0.08117875948477028],[119,-36,77,-0.007758081604933218],[119,-36,78,0.039570039202690775],[119,-36,79,-0.019847921379629888],[119,-35,64,-0.13279004797127372],[119,-35,65,-0.09232132797017102],[119,-35,66,-0.07602744347714002],[119,-35,67,-0.08887766380574033],[119,-35,68,-0.0712149063278887],[119,-35,69,-0.07057096762503404],[119,-35,70,-0.046348100580409474],[119,-35,71,0.012916557603324623],[119,-35,72,0.015064836951416196],[119,-35,73,-0.057848540753248745],[119,-35,74,-0.08597728576922334],[119,-35,75,-0.0963028281572268],[119,-35,76,-0.08010623983763825],[119,-35,77,-0.008341864628034082],[119,-35,78,0.0375301953075752],[119,-35,79,-0.020808704114080846],[119,-34,64,-0.1305346989240905],[119,-34,65,-0.09088669895376857],[119,-34,66,-0.07477149227803757],[119,-34,67,-0.08708385982061621],[119,-34,68,-0.0698827939821291],[119,-34,69,-0.06935694097827629],[119,-34,70,-0.04569804256482163],[119,-34,71,0.012242113760972428],[119,-34,72,0.01436353929336629],[119,-34,73,-0.05714958836621509],[119,-34,74,-0.08504690511956532],[119,-34,75,-0.09527632419846821],[119,-34,76,-0.07905688637351771],[119,-34,77,-0.008910593196865102],[119,-34,78,0.03553908221861777],[119,-34,79,-0.021741701854222643],[119,-33,64,-0.1283403231828619],[119,-33,65,-0.08949722799317335],[119,-33,66,-0.07355573968520171],[119,-33,67,-0.08534772053300954],[119,-33,68,-0.06859899712755009],[119,-33,69,-0.06818001625843388],[119,-33,70,-0.045072767141344554],[119,-33,71,0.011565020757231754],[119,-33,72,0.013663881402571175],[119,-33,73,-0.05646733369577999],[119,-33,74,-0.0841337566073499],[119,-33,75,-0.09427040690289624],[119,-33,76,-0.07803077450732508],[119,-33,77,-0.009464806903305551],[119,-33,78,0.0335960168341697],[119,-33,79,-0.0226475066234298],[119,-32,64,-0.12620557224982487],[119,-32,65,-0.08815149099563756],[119,-32,66,-0.0723789283882775],[119,-32,67,-0.08366751161640117],[119,-32,68,-0.0673616488247467],[119,-32,69,-0.0670390580371143],[119,-32,70,-0.044471437937006315],[119,-32,71,0.010886370731590688],[119,-32,72,0.012966684460861078],[119,-32,73,-0.05580161997412338],[119,-32,74,-0.08323783361387505],[119,-32,75,-0.09328501044830917],[119,-32,76,-0.07702797161623952],[119,-32,77,-0.010005051354336509],[119,-32,78,0.031700275296321995],[119,-32,79,-0.02352673599343844],[119,-31,64,-0.12412910711504319],[119,-31,65,-0.08684810114642205],[119,-31,66,-0.07123984424345964],[119,-31,67,-0.08204154691090666],[119,-31,68,-0.06616895220810232],[119,-31,69,-0.06593297768600175],[119,-31,70,-0.04389325638479692],[119,-31,71,0.010207191995117696],[119,-31,72,0.012272716121631421],[119,-31,73,-0.05515230500545013],[119,-31,74,-0.08235914921214026],[119,-31,75,-0.09232008717473182],[119,-31,76,-0.07604853750149783],[119,-31,77,-0.01053187760065007],[119,-31,78,0.02985109570458512],[119,-31,79,-0.024380030869022455],[119,-30,64,-0.12210959962072514],[119,-30,65,-0.08558570893211574],[119,-30,66,-0.07013731565965547],[119,-30,67,-0.08046818815349147],[119,-30,68,-0.0650191791835297],[119,-30,69,-0.06486073220910427],[119,-30,70,-0.04333746095992067],[119,-30,71,0.009528450401934608],[119,-30,72,0.011582691809392004],[119,-30,73,-0.054519260548380126],[119,-30,74,-0.08149773480306753],[119,-30,75,-0.09137560644787025],[119,-30,76,-0.07509252486545755],[119,-30,77,-0.011045841594721858],[119,-30,78,0.028047680799865464],[119,-30,79,-0.025208053301323717],[119,-29,64,-0.12014573370367149],[119,-29,65,-0.08436300205739064],[119,-29,66,-0.06907021292654394],[119,-29,67,-0.07894584462254053],[119,-29,68,-0.06391066904014783],[119,-29,69,-0.06382132305211546],[119,-29,70,-0.042803326383557896],[119,-29,71,0.008851050824599362],[119,-29,72,0.010897276098611816],[119,-29,73,-0.05390237172527609],[119,-29,74,-0.08065363881530653],[119,-29,75,-0.0904515535652042],[119,-29,76,-0.07415997980379539],[119,-29,77,-0.011547503679738703],[119,-29,78,0.02628920061186647],[119,-29,79,-0.02601148433549887],[119,-28,64,-0.11823620651722618],[119,-28,65,-0.0831787052600232],[119,-28,66,-0.0680374474899362],[119,-28,67,-0.07747297270295757],[119,-28,68,-0.0628418269853038],[119,-28,69,-0.06281379489520646],[119,-28,70,-0.04229016279947139],[119,-28,71,0.00817583872408373],[119,-28,72,0.010217084164145528],[119,-28,73,-0.05330153646083468],[119,-28,74,-0.07982692547242225],[119,-28,75,-0.08954792870883585],[119,-28,76,-0.07325094231278892],[119,-28,77,-0.012037428110798679],[119,-28,78,0.024574795063407904],[119,-28,79,-0.026791021897931575],[119,-27,64,-0.11637972943437011],[119,-27,65,-0.08203158002906019],[119,-27,66,-0.0670379711797386],[119,-27,67,-0.0760480753778919],[119,-27,68,-0.06181112261207344],[119,-27,69,-0.0618372344352708],[119,-27,70,-0.041797314928592],[119,-27,71,0.007503601805261428],[119,-27,72,0.009542683295739523],[119,-27,73,-0.0527166649520403],[119,-27,74,-0.07901767363078016],[119,-27,75,-0.08866474594874184],[119,-27,76,-0.07236544681156967],[119,-27,77,-0.012516182609649417],[119,-27,78,0.02290357652570927],[119,-27,79,-0.027547378727698107],[119,-26,64,-0.1145750289336678],[119,-26,65,-0.08092042423085706],[119,-26,66,-0.0660707753955273],[119,-26,67,-0.07466970165292297],[119,-26,68,-0.06081708830790769],[119,-26,69,-0.060890769163185164],[119,-26,70,-0.041324161206361544],[119,-26,71,0.006835071749226228],[119,-26,72,0.008874594469490066],[119,-26,73,-0.052147679171236395],[119,-26,74,-0.07822597569085832],[119,-26,75,-0.0878020322995076],[119,-26,76,-0.07150352267908351],[119,-26,77,-0.012984337954004187],[119,-26,78,0.021274632319311912],[119,-26,79,-0.028281280356322287],[119,-25,64,-0.1128208473701592],[119,-25,65,-0.07984407164785289],[119,-25,66,-0.06513489025471784],[119,-25,67,-0.07333644591851544],[119,-25,68,-0.05985831761287257],[119,-25,69,-0.059973566141438645],[119,-25,70,-0.040870112907486586],[119,-25,71,0.00617092601394187],[119,-25,72,0.008213293969282578],[119,-25,73,-0.05159451240395264],[119,-25,74,-0.07745193658437777],[119,-25,75,-0.08695982683330912],[119,-25,76,-0.07066519480558134],[119,-25,77,-0.01344246760248118],[119,-25,78,0.01968702715570472],[119,-25,79,-0.028993463139457068],[119,-24,64,-0.11111594363343463],[119,-24,65,-0.07880139143489179],[119,-24,66,-0.06422938370815832],[119,-24,67,-0.07204694725642374],[119,-24,68,-0.05893346353559786],[119,-24,69,-0.05908483078718663],[119,-24,70,-0.04043461326254748],[119,-24,71,0.0055117896950306325],[119,-24,72,0.0075592150515099285],[119,-24,73,-0.051057108822941386],[119,-24,74,-0.07669567283923165],[119,-24,75,-0.08613817985148654],[119,-24,76,-0.06985048415841659],[119,-24,77,-0.013891147356063959],[119,-24,78,0.018139805515273534],[119,-24,79,-0.029684672343569276],[119,-23,64,-0.10945909369517674],[119,-23,65,-0.07779128749771022],[119,-23,66,-0.06335336062764577],[119,-23,67,-0.07079988869540371],[119,-23,68,-0.05804123683453372],[119,-23,69,-0.05822380566530998],[119,-23,70,-0.04001713657051966],[119,-23,71,0.00485823743898707],[119,-23,72,0.0069127496468075166],[119,-23,73,-0.05053542309954331],[119,-23,74,-0.07595731172367709],[119,-23,75,-0.08533715211656258],[119,-23,76,-0.06905940836181268],[119,-23,77,-0.014330955056790471],[119,-23,78,0.01663199395777515],[119,-23,79,-0.030355660290127595],[119,-22,64,-0.10784909104870366],[119,-22,65,-0.07681269779825675],[119,-22,66,-0.06250596186982467],[119,-22,67,-0.06959399642155452],[119,-22,68,-0.05718040427188364],[119,-22,69,-0.057389769295886905],[119,-22,70,-0.03961718731116635],[119,-22,71,0.004210795401324419],[119,-22,72,0.00627425009272261],[119,-22,73,-0.050029420053448674],[119,-22,74,-0.07523699047100463],[119,-22,75,-0.08455681414629554],[119,-22,76,-0.06829198229034521],[119,-22,77,-0.014762470324358882],[119,-22,78,0.015162603361951838],[119,-22,79,-0.031007184559379567],[119,-21,64,-0.1062847470431489],[119,-21,65,-0.07586459359140339],[119,-21,66,-0.06168636332072299],[119,-21,67,-0.06842803894841919],[119,-21,68,-0.05634978684719991],[119,-21,69,-0.05658203498016857],[119,-21,70,-0.039234299261018415],[119,-21,71,0.003569943242539412],[119,-21,72,0.00564403089156833],[119,-21,73,-0.04953907434174235],[119,-21,74,-0.07453485558555238],[119,-21,75,-0.08379724557100866],[119,-21,76,-0.06754821867586944],[119,-21,77,-0.015186274331224424],[119,-21,78,0.01373063109140156],[119,-21,79,-0.03164000625532074],[119,-20,64,-0.10476489111486938],[119,-20,65,-0.07494597859735531],[119,-20,66,-0.06089377492484531],[119,-20,67,-0.06730082625163417],[119,-20,68,-0.055548258017101663],[119,-20,69,-0.055799949648705216],[119,-20,70,-0.03886803461628952],[119,-20,71,0.0029361161552902424],[119,-20,72,0.0050223704881706644],[119,-20,73,-0.04906437018784045],[119,-20,74,-0.07385106223050586],[119,-20,75,-0.08305853455501493],[119,-20,76,-0.0668281287275266],[119,-20,77,-0.015602949616584243],[119,-20,78,0.01233506308437249],[119,-20,79,-0.03225488833291543],[119,-19,64,-0.10328837091885373],[119,-19,65,-0.07405588811406316],[119,-19,66,-0.06012743970268499],[119,-19,67,-0.06621120887286541],[119,-19,68,-0.054774741907346054],[119,-19,69,-0.05504289273512847],[119,-19,70,-0.03851798312598817],[119,-19,71,0.0023097069164410874],[119,-19,72,0.0044095130624245155],[119,-19,73,-0.04860530115091228],[119,-19,74,-0.07318577369775812],[119,-19,75,-0.08234077728276197],[119,-19,76,-0.06613172276455663],[119,-19,77,-0.01601307993962267],[119,-19,78,0.010974875865550146],[119,-19,79,-0.03285259398825587],[119,-18,64,-0.10185405236293005],[119,-18,65,-0.07319338807377058],[119,-18,66,-0.059386632760275025],[119,-18,67,-0.06515807699751948],[119,-18,68,-0.0540282115230539],[119,-18,69,-0.05431027507876044],[119,-18,70,-0.03818376123822094],[119,-18,71,0.0016910679580580492],[119,-18,72,0.003805670331954489],[119,-18,73,-0.04816186993621692],[119,-18,74,-0.07253916095982359],[119,-18,75,-0.0816440775100451],[119,-18,76,-0.06545901086165738],[119,-18,77,-0.016417250172322227],[119,-18,78,0.009649038478328374],[119,-18,79,-0.0334338851119391],[119,-17,64,-0.10046081954746071],[119,-17,65,-0.07235757404754965],[119,-17,66,-0.05867066029408947],[119,-17,67,-0.06414035951040925],[119,-17,68,-0.05330768696241846],[119,-17,69,-0.053601537858859766],[119,-17,70,-0.037865011262370955],[119,-17,71,0.0010805134519391443],[119,-17,72,0.0032110233606134357],[119,-17,73,-0.04773408824657768],[119,-17,74,-0.0719114023034798],[119,-17,75,-0.08096854618028815],[119,-17,76,-0.06481000350654169],[119,-17,77,-0.016816046231950862],[119,-17,78,0.008356514336600973],[119,-17,79,-0.033999520805428576],[119,-16,64,-0.09910757461332001],[119,-16,65,-0.07154757020161284],[119,-16,66,-0.05797885859450694],[119,-16,67,-0.06315702303344949],[119,-16,68,-0.05261223363895649],[119,-16,69,-0.05291615156315547],[119,-16,70,-0.037561400549722936],[119,-16,71,4.7832140256837905E-4],[119,-16,72,0.002625724368804767],[119,-16,73,-0.04732197667521114],[119,-16,74,-0.07130268304470368],[119,-16,75,-0.08031430110576998],[119,-16,76,-0.06418471226945825],[119,-16,77,-0.017210055053353285],[119,-16,78,0.007096262995433005],[119,-16,79,-0.03455025595987389],[119,-15,64,-0.09779323750092013],[119,-15,65,-0.07076252820899107],[119,-15,66,-0.057310593050818],[119,-15,67,-0.062207070949212004],[119,-15,68,-0.05194096051695968],[119,-15,69,-0.052253614993034235],[119,-15,70,-0.03727262069487082],[119,-15,71,-1.1526425618329245E-4],[119,-15,72,0.0020498985419883575],[119,-15,73,-0.046925564640009736],[119,-15,74,-0.07071319532427722],[119,-15,75,-0.07968146671346248],[119,-15,76,-0.06358315048446947],[119,-15,77,-0.017599864601112316],[119,-15,78,0.00586724184035466],[119,-15,79,-0.035086839896508314],[119,-14,64,-0.09651674562286595],[119,-14,65,-0.07000162611984807],[119,-14,66,-0.05666525716045593],[119,-14,67,-0.06128954241387108],[119,-14,68,-0.05129301836436207],[119,-14,69,-0.05161345430744347],[119,-14,70,-0.036998386759967736],[119,-14,71,-7.000315647894982E-4],[119,-14,72,0.001483645834164265],[119,-14,73,-0.04654489035922422],[119,-14,74,-0.0701431379832056],[119,-14,75,-0.07907017385488194],[119,-14,76,-0.0630053339422015],[119,-14,77,-0.017986063921464943],[119,-14,78,0.004668407695515383],[119,-14,79,-0.035610015067291494],[119,-13,64,-0.09527709203499654],[119,-13,65,-0.06926410082613102],[119,-13,66,-0.05604224523956432],[119,-13,67,-0.06040347583189121],[119,-13,68,-0.05066758599335822],[119,-13,69,-0.050995186375811026],[119,-13,70,-0.0367384063821808],[119,-13,71,-0.0012758485468457332],[119,-13,72,9.269878912205934E-4],[119,-13,73,-0.046179976335366975],[119,-13,74,-0.06959268849820992],[119,-13,75,-0.07848056076223353],[119,-13,76,-0.062451261511724185],[119,-13,77,-0.01836921671114206],[119,-13,78,0.0034986847565420284],[119,-13,79,-0.03612057099621098],[119,-12,64,-0.09407358554910078],[119,-12,65,-0.0685494729597506],[119,-12,66,-0.055440784022825686],[119,-12,67,-0.05954768081817912],[119,-12,68,-0.05006379301802699],[119,-12,69,-0.050398085175504884],[119,-12,70,-0.03649218240081451],[119,-12,71,-0.0018429893514088438],[119,-12,72,3.7951138755164086E-4],[119,-12,73,-0.04583066597154677],[119,-12,74,-0.06906181521492512],[119,-12,75,-0.07791277589045413],[119,-12,76,-0.06192078279945651],[119,-12,77,-0.018749687002854384],[119,-12,78,0.0023567482950136113],[119,-12,79,-0.03661970212877934],[119,-11,64,-0.09290569374372674],[119,-11,65,-0.06785740661617366],[119,-11,66,-0.0548600635864593],[119,-11,67,-0.058720913152550513],[119,-11,68,-0.049480781044418026],[119,-11,69,-0.04982134701530746],[119,-11,70,-0.03625915150761842],[119,-11,71,-0.00240190413098942],[119,-11,72,-1.5937785487865757E-4],[119,-11,73,-0.0454967286679622],[119,-11,74,-0.06855039447355014],[119,-11,75,-0.07736696251058182],[119,-11,76,-0.06141368653995857],[119,-11,77,-0.01912775833570416],[119,-11,78,0.0012411847266723393],[119,-11,79,-0.0371087494604805],[119,-10,64,-0.0917729046778313],[119,-10,65,-0.06718758765463642],[119,-10,66,-0.054299333382147236],[119,-10,67,-0.0579220045516164],[119,-10,68,-0.04891774659707908],[119,-10,69,-0.04926421979645105],[119,-10,70,-0.03603879337273603],[119,-10,71,-0.0029530354365143916],[119,-10,72,-6.90253891007356E-4],[119,-10,73,-0.04517794805898764],[119,-10,74,-0.06805831080206567],[119,-10,75,-0.076843253149624],[119,-10,76,-0.06092977346075025],[119,-10,77,-0.019503729770105425],[119,-10,78,1.506153817519623E-4],[119,-10,79,-0.037588998840167226],[119,-9,64,-0.09067472517571636],[119,-9,65,-0.06653972175286785],[119,-9,66,-0.05375789876372125],[119,-9,67,-0.057149858574906884],[119,-9,68,-0.04837393790069859],[119,-9,69,-0.04872600042082926],[119,-9,70,-0.03583062874246243],[119,-9,71,-0.003496818387658672],[119,-9,72,-0.0012136715950147902],[119,-9,73,-0.044874121984542235],[119,-9,74,-0.06758545702659498],[119,-9,75,-0.07634177063996571],[119,-9,76,-0.060468856418387],[119,-9,77,-0.019877915082899114],[119,-9,78,-9.163044633793609E-4],[119,-9,79,-0.03806168324882533],[119,-8,64,-0.08961067996132278],[119,-8,65,-0.06591353322422158],[119,-8,66,-0.05323511718777223],[119,-8,67,-0.056403446045416986],[119,-8,68,-0.04784865157992514],[119,-8,69,-0.048206031634006274],[119,-8,70,-0.035634217026121975],[119,-8,71,-0.004033681751872724],[119,-8,72,-0.001730168571974666],[119,-8,73,-0.04458506197902496],[119,-8,74,-0.0671317338435601],[119,-8,75,-0.07586262915160384],[119,-8,76,-0.060030760158586154],[119,-8,77,-0.020250641515767026],[119,-8,78,-0.00196088715292901],[119,-8,79,-0.038527986018318035],[119,-7,64,-0.08858031086503963],[119,-7,65,-0.06530876391795616],[119,-7,66,-0.05273039462556204],[119,-7,67,-0.05568180071081161],[119,-7,68,-0.047341229523934436],[119,-7,69,-0.04770369902933753],[119,-7,70,-0.03544915398687627],[119,-7,71,-0.004564048919177154],[119,-7,72,-0.0022402669275788057],[119,-7,73,-0.04431059277419043],[119,-7,74,-0.0666970494169661],[119,-7,75,-0.0754059351791404],[119,-7,76,-0.059615321105003075],[119,-7,77,-0.020622248612818538],[119,-7,78,-0.0029844141334808842],[119,-7,79,-0.038989043869980984],[119,-6,64,-0.08758317609892952],[119,-6,65,-0.06472517219885951],[119,-6,66,-0.05224318217874518],[119,-6,67,-0.05498401513711209],[119,-6,68,-0.04685105591108625],[119,-6,69,-0.04721842820866103],[119,-6,70,-0.03527506953526302],[119,-6,71,-0.0050883387808085745],[119,-6,72,-0.0027444749048684274],[119,-6,73,-0.0440505518169703],[119,-6,74,-0.06628131900041043],[119,-6,75,-0.0749717884849365],[119,-6,76,-0.05922238717463826],[119,-6,77,-0.020993087143811973],[119,-6,78,-0.0039881373563626235],[119,-6,79,-0.03944594978197926],[119,-5,64,-0.08661884959636994],[119,-5,65,-0.06416253200246162],[119,-5,66,-0.05177297289136404],[119,-5,67,-0.05430923682661009],[119,-5,68,-0.046377554388861944],[119,-5,69,-0.046749682094855895],[119,-5,70,-0.035111625623999325],[119,-5,71,-0.005606966519406775],[119,-5,72,-0.003243288396561507],[119,-5,73,-0.0438047888030673],[119,-5,74,-0.06588446458328863],[119,-5,75,-0.07456028299977796],[119,-5,76,-0.05885181761792831],[119,-5,77,-0.021363518109469567],[119,-5,78,-0.004973280605740014],[119,-5,79,-0.03989975569399849],[119,-4,64,-0.08568692041213276],[119,-4,65,-0.06362063196206354],[119,-4,66,-0.05131929875051955],[119,-4,67,-0.053656664551680305],[119,-4,68,-0.045920185404114626],[119,-4,69,-0.04629695839140367],[119,-4,70,-0.03495851424230559],[119,-4,71,-0.006120344317986991],[119,-4,72,-0.0037371923411682506],[119,-4,73,-0.04357316522694243],[119,-4,74,-0.06550641456050453],[119,-4,75,-0.07417150768229074],[119,-4,76,-0.05850348288156603],[119,-4,77,-0.021733911825252313],[119,-4,78,-0.005941040757179573],[119,-4,79,-0.040351475057396176],[119,-3,64,-0.08478699217913509],[119,-3,65,-0.0630992746039687],[119,-3,66,-0.050881727868219276],[119,-3,67,-0.05302554489623976],[119,-3,68,-0.04547844367865048],[119,-3,69,-0.04585978718406054],[119,-3,70,-0.034815455507868506],[119,-3,71,-0.006628881994624888],[119,-3,72,-0.00422666201080497],[119,-3,73,-0.043355553948735276],[119,-3,74,-0.06514710342497156],[119,-3,75,-0.073805547338375],[119,-3,76,-0.058177264492247166],[119,-3,77,-0.02210464708006744],[119,-3,78,-0.006892588971199028],[119,-3,79,-0.04080208523867581],[119,-2,64,-0.08391868261819965],[119,-2,65,-0.06259827560737334],[119,-2,66,-0.05045986183696108],[119,-2,67,-0.05241516899665245],[119,-2,68,-0.045051855825117615],[119,-2,69,-0.0454377286797073],[119,-2,70,-0.03468219585439582],[119,-2,71,-0.007132987569405899],[119,-2,72,-0.00471216419827251],[119,-2,73,-0.04315183877853451],[119,-2,74,-0.0648064714821165],[119,-2,75,-0.07346248340187482],[119,-2,76,-0.057873054959605486],[119,-2,77,-0.02247611036638301],[119,-2,78,-0.007829071825989686],[119,-2,79,-0.041252529783766916],[119,-1,64,-0.0830816230972141],[119,-1,65,-0.06211746312538512],[119,-1,66,-0.05005333325161762],[119,-1,67,-0.05182486947388131],[119,-1,68,-0.04463997809808638],[119,-1,69,-0.04503037107734353],[119,-1,70,-0.03455850631249688],[119,-1,71,-0.007633067769741332],[119,-1,72,-0.0051941583105423504],[119,-1,73,-0.0429619140782312],[119,-1,74,-0.06448446458547294],[119,-1,75,-0.07314239467759447],[119,-1,76,-0.057590757696604995],[119,-1,77,-0.02284869517819281],[119,-1,78,-0.008751612393123914],[119,-1,79,-0.04170372055017854],[119,0,64,-0.08227545823628132],[119,0,65,-0.061656677163800064],[119,0,66,-0.04966180339034635],[119,0,67,-0.05125401754884572],[119,0,68,-0.04424239427525958],[119,0,69,-0.04463732856624578],[119,0,70,-0.034444180881553176],[119,0,71,-0.008129528479849513],[119,0,72,-0.005673097375503637],[119,0,73,-0.04278568438113656],[119,0,74,-0.06418103389245641],[119,0,75,-0.07284535804779048],[119,0,76,-0.05733028695580208],[119,0,77,-0.023222801373393685],[119,0,78,-0.009661311259845219],[119,0,79,-0.04215653971381641],[119,1,64,-0.0814998455555805],[119,1,65,-0.06121576901436943],[119,1,66,-0.04928496004739037],[119,1,67,-0.05070202033309118],[119,1,68,-0.04385871366380012],[119,1,69,-0.04425823944635609],[119,1,70,-0.0343390349901607],[119,1,71,-0.008622775139844748],[119,1,72,-0.006149428968484413],[119,1,73,-0.04262306402946994],[119,1,74,-0.06389613563939307],[119,1,75,-0.07257144914323159],[119,1,76,-0.05709156777995624],[119,1,77,-0.02359883459716511],[119,1,78,-0.010559247501222342],[119,1,79,-0.042611841656888694],[119,2,64,-0.08075445516271262],[119,2,65,-0.06079460073930259],[119,2,66,-0.0489225155106748],[119,2,67,-0.050168318286925306],[119,2,68,-0.04348856922670561],[119,2,69,-0.04389276436590734],[119,2,70,-0.0342429040425481],[119,2,71,-0.009113213099441705],[119,2,72,-0.00662359606462945],[119,2,73,-0.04247397682964842],[119,2,74,-0.06362973093476278],[119,2,75,-0.07232074297980548],[119,2,76,-0.05687453596548093],[119,2,77,-0.023977205762954243],[119,2,78,-0.011446479605135758],[119,2,79,-0.04307045474294366],[119,3,64,-0.080038969476507],[119,3,65,-0.06039304470393458],[119,3,66,-0.04857420467734532],[119,3,67,-0.04965238283742822],[119,3,68,-0.04313161582430988],[119,3,69,-0.04354058467144256],[119,3,70,-0.03415564204839364],[119,3,71,-0.009601247931013846],[119,3,72,-0.007096037822950654],[119,3,73,-0.04233835572531473],[119,3,74,-0.06338178556967852],[119,3,75,-0.07209331456168135],[119,3,76,-0.05667913803735795],[119,3,77,-0.024358330587784593],[119,3,78,-0.01232404635284585],[119,3,79,-0.04353318298480332],[119,4,64,-0.07935308298440029],[119,4,65,-0.06001098315459038],[119,4,66,-0.048239783300558614],[119,4,67,-0.04915371414892725],[119,4,68,-0.042787528566068544],[119,4,69,-0.04320140086545968],[119,4,70,-0.0340771203334173],[119,4,71,-0.010087285706407125],[119,4,72,-0.007567190307524728],[119,4,73,-0.042216142487973236],[119,4,74,-0.06315226984461608],[119,4,75,-0.07188923945199714],[119,4,76,-0.05650533123420954],[119,4,77,-0.02474262917867518],[119,4,78,-0.013192967657639275],[119,4,79,-0.044000807610837314],[119,5,64,-0.07869650203055134],[119,5,65,-0.05964830783870653],[119,5,66,-0.047919026360934217],[119,5,67,-0.04867183903864049],[119,5,68,-0.04245600126779419],[119,5,69,-0.042874931166924805],[119,5,70,-0.03400722632801355],[119,5,71,-0.01057173324151295],[119,5,72,-0.008037487150907931],[119,5,73,-0.042107287424969886],[119,5,74,-0.06294115841133868],[119,5,75,-0.07170859431193867],[119,5,76,-0.05635308350223057],[119,5,77,-0.025130525666984885],[119,5,78,-0.014054245363766885],[119,5,79,-0.04447408853466642],[119,6,64,-0.078068944632066],[119,6,65,-0.05930491966446401],[119,6,66,-0.04761172655635815],[119,6,67,-0.04820630903050306],[119,6,68,-0.04213674500971282],[119,6,69,-0.04256091017010205],[119,6,70,-0.03394586243127002],[119,6,71,-0.01105499831237221],[119,6,72,-0.008507360164594089],[119,6,73,-0.042011749104592155],[119,6,74,-0.06274843012905361],[119,6,75,-0.07155145740911327],[119,6,76,-0.056222373496812174],[119,6,77,-0.0255224478876203],[119,6,78,-0.014908864007697517],[119,6,79,-0.04495376573313199],[119,7,64,-0.07747014032082437],[119,7,65,-0.05898072839727954],[119,7,66,-0.0473176929040083],[119,7,67,-0.04775669854038765],[119,7,68,-0.04182948679080621],[119,7,69,-0.042259087597240334],[119,7,70,-0.03389294494769356],[119,7,71,-0.011537489846266985],[119,7,72,-0.008977239901010486],[119,7,73,-0.041929494098001674],[119,7,74,-0.06257406793383916],[119,7,75,-0.0714179090960803],[119,7,76,-0.056113190590754584],[119,7,77,-0.02591882710014809],[119,7,78,-0.01575779154352419],[119,7,79,-0.045440560537102534],[119,8,64,-0.07689983000847048],[119,8,65,-0.05867565239055877],[119,8,66,-0.04703674944862967],[119,8,67,-0.04732260318612159],[119,8,68,-0.0415339682749933],[119,8,69,-0.04196922714074827],[119,8,70,-0.03384840309393688],[119,8,71,-0.012019618090919415],[119,8,72,-0.00944755617119132],[119,8,73,-0.0418604967376392],[119,8,74,-0.06241805872036286],[119,8,75,-0.07130803225981805],[119,8,76,-0.056025534887972794],[119,8,77,-0.02632009774887354],[119,8,78,-0.016601980034091378],[119,8,79,-0.04593517683935283],[119,9,64,-0.0763577658723138],[119,9,65,-0.05838961834829045],[119,9,66,-0.04676873407137218],[119,9,67,-0.046903638216014044],[119,9,68,-0.04124994462491372],[119,9,69,-0.04169110539069878],[119,9,70,-0.03381217807291297],[119,9,71,-0.012501794764707206],[119,9,72,-0.009918738522035111],[119,9,73,-0.04180473889177733],[119,9,74,-0.062280393235005456],[119,9,75,-0.07122191274293976],[119,9,76,-0.05595941724172171],[119,9,77,-0.026726697259100155],[119,9,78,-0.01744236630928989],[119,9,79,-0.04643830222355527],[119,10,64,-0.07584371126001592],[119,10,65,-0.058122561117166224],[119,10,66,-0.04651349739371286],[119,10,67,-0.046499437049845334],[119,10,68,-0.040977183419215295],[119,10,69,-0.04142451084364004],[119,10,70,-0.03378422221271242],[119,10,71,-0.012984433190538089],[119,10,72,-0.010391216676760953],[119,10,73,-0.04176220975487272],[119,10,74,-0.0621610659795395],[119,10,75,-0.07115963973744299],[119,10,76,-0.05591485927643021],[119,10,77,-0.02713906586689126],[119,10,78,-0.018279872592811924],[119,10,79,-0.04695060901819503],[119,11,64,-0.07535744061099439],[119,11,65,-0.05787442350596873],[119,11,66,-0.04627090177117097],[119,11,67,-0.04610964992649322],[119,11,68,-0.04071546364937457],[119,11,69,-0.04116924298882379],[119,11,70,-0.033764498167757444],[119,11,71,-0.013467948415735363],[119,11,72,-0.010865420941861858],[119,11,73,-0.041732905653321495],[119,11,74,-0.06206007512451779],[119,11,75,-0.07112130615170544],[119,11,76,-0.05589189341223646],[119,11,77,-0.02755764647968268],[119,11,78,-0.019115407098432288],[119,11,79,-0.0474727552789253],[119,12,64,-0.07489873939266022],[119,12,65,-0.057645156130138195],[119,12,66,-0.04604082037180339],[119,12,67,-0.04573394265267907],[119,12,68,-0.04046457479228997],[119,12,69,-0.04092511146816602],[119,12,70,-0.03375297817973183],[119,12,71,-0.013952757320107723],[119,12,72,-0.011341782583643264],[119,12,73,-0.04171682986626585],[119,12,74,-0.061977422431627634],[119,12,75,-0.07110700895147605],[119,12,76,-0.05589056289143643],[119,12,77,-0.02798288456527194],[119,12,78,-0.019949864596824587],[119,12,79,-0.04800538570274499],[119,13,64,-0.07446740404971329],[119,13,65,-0.05743471727953798],[119,13,66,-0.04582313633470859],[119,13,67,-0.0453719954475958],[119,13,68,-0.040224315955075404],[119,13,69,-0.04069193530644438],[119,13,70,-0.03374964339591017],[119,13,71,-0.014439278714163745],[119,13,72,-0.0118207341771916],[119,13,73,-0.04171399246111145],[119,13,74,-0.06191311318433011],[119,13,75,-0.07111684947559437],[119,13,76,-0.05591092180610972],[119,13,77,-0.028415228066800125],[119,13,78,-0.020784126953783396],[119,13,79,-0.048549132477174496],[119,14,64,-0.07406324196478323],[119,14,65,-0.05724307280749548],[119,14,66,-0.04561774200395252],[119,14,67,-0.045023501878398244],[119,14,68,-0.039994495088611234],[119,14,69,-0.040469542208366224],[119,14,70,-0.03375448324253943],[119,14,71,-0.014927933429178994],[119,14,72,-0.012302709930332237],[119,14,73,-0.04172441014337912],[119,14,74,-0.061867156126122744],[119,14,75,-0.07115093372711014],[119,14,76,-0.055953035126193],[119,14,77,-0.028855127341397637],[119,14,78,-0.021619063640567166],[119,14,79,-0.04910461606737688],[119,15,64,-0.07368607142887802],[119,15,65,-0.057070196039366056],[119,15,66,-0.045424538233625994],[119,15,67,-0.04468816788186787],[119,15,68,-0.039774928266651896],[119,15,69,-0.04025776791937935],[119,15,70,-0.03376749485107609],[119,15,71,-0.015419144400699553],[119,15,72,-0.012788145984976632],[119,15,73,-0.041748106120586055],[119,15,74,-0.0618395634058847],[119,15,75,-0.0712093726405275],[119,15,76,-0.05601697872739408],[119,15,77,-0.02930303512035087],[119,15,78,-0.02245553221706638],[119,15,79,-0.049672445944089184],[119,16,64,-0.07333572162016193],[119,16,65,-0.056916067698931226],[119,16,66,-0.04524343375994533],[119,16,67,-0.044365710867805795],[119,16,68,-0.03956543902744889],[119,16,69,-0.040056455647256156],[119,16,70,-0.03378868253514288],[119,16,71,-0.015913336746850158],[119,16,72,-0.013277480698007625],[119,16,73,-0.041785109979843436],[119,16,74,-0.061830350529806295],[119,16,75,-0.07129228232584911],[119,16,76,-0.056102839418340204],[119,16,77,-0.029759406488687024],[119,16,78,-0.02329437878834982],[119,16,79,-0.05025322125501048],[119,17,64,-0.07301203258973099],[119,17,65,-0.05678067585108877],[119,17,66,-0.045074344636581685],[119,17,67,-0.04405585890001315],[119,17,68,-0.03936585777507425],[119,17,69,-0.03986545554170529],[119,17,70,-0.03381805731621237],[119,17,71,-0.016410937842702127],[119,17,72,-0.013771154903702091],[119,17,73,-0.04183545757891803],[119,17,74,-0.061839536319515324],[119,17,75,-0.07139978429013893],[119,17,76,-0.05621071496645733],[119,17,77,-0.03022469888225116],[119,17,78,-0.02413643843515809],[119,17,79,-0.0508475314422389],[119,18,64,-0.07271485525310324],[119,18,65,-0.05666401585934077],[119,18,66,-0.04491719372958779],[119,18,67,-0.043758349950943805],[119,18,68,-0.039176021237766936],[119,18,69,-0.03968462422939607],[119,18,70,-0.03385563649607284],[119,18,71,-0.016912377391749507],[119,18,72,-0.014269612159444476],[119,18,73,-0.04189919095048781],[119,18,74,-0.06186714287603903],[119,18,75,-0.07153200563726182],[119,18,76,-0.05634071412207404],[119,18,77,-0.030699372100396426],[119,18,78,-0.024982535618779455],[119,18,79,-0.05145595680814322],[119,19,64,-0.07244405138627336],[119,19,65,-0.05656609035673349],[119,19,66,-0.04477191026857718],[119,19,67,-0.04347293122643219],[119,19,68,-0.03899577198088539],[119,19,69,-0.03951382440204157],[119,19,70,-0.0339014432743094],[119,19,71,-0.017418087495470636],[119,19,72,-0.014773298976378257],[119,19,73,-0.04197635821940925],[119,19,74,-0.061913195549378866],[119,19,75,-0.07168907924652013],[119,19,76,-0.05649295664033025],[119,19,77,-0.031183888332557103],[119,19,78,-0.025833484560775572],[119,19,79,-0.052079069032031314],[119,20,64,-0.07219949362528714],[119,20,65,-0.0564869092290016],[119,20,66,-0.044638429451031185],[119,20,67,-0.043199358557158084],[119,20,68,-0.03882495797221816],[119,20,69,-0.039352924455344225],[119,20,70,-0.033955506409127506],[119,20,71,-0.017928502721820744],[119,20,72,-0.015282665036467984],[119,20,73,-0.042067013532842604],[119,20,74,-0.06197772291354598],[119,20,75,-0.07187114393090362],[119,20,76,-0.056667573300536754],[119,20,77,-0.031678712197111096],[119,20,78,-0.026690089598001843],[119,20,79,-0.052717431639874995],[119,21,64,-0.07198106546832621],[119,21,65,-0.056426489608723276],[119,21,66,-0.04451669209680579],[119,21,67,-0.04293739585374379],[119,21,68,-0.03866343219758207],[119,21,69,-0.039201798176783986],[119,21,70,-0.03401785991994183],[119,21,71,-0.01844406017336122],[119,21,72,-0.015798163397270602],[119,21,73,-0.042171217003095625],[119,21,74,-0.062060756746962195],[119,21,75,-0.0720783445756446],[119,21,76,-0.056864705922622785],[119,21,77,-0.032184310790981246],[119,21,78,-0.027553145513300927],[119,21,79,-0.05337160042923041],[119,22,64,-0.07178866127942858],[119,22,65,-0.05638485587942937],[119,22,66,-0.0444066443501683],[119,22,67,-0.04268681462266882],[119,22,68,-0.0385110523248554],[119,22,69,-0.0390603244804366],[119,22,70,-0.034088542830306136],[119,22,71,-0.018965199555678335],[119,22,72,-0.01632025068561874],[119,22,73,-0.0422890346631241],[119,22,74,-0.06216233201825375],[119,22,75,-0.0723108322578239],[119,22,76,-0.05708450738041041],[119,22,77,-0.03270115374860543],[119,22,78,-0.02842343784232026],[119,22,79,-0.05404212385149462],[119,23,64,-0.07162218629305284],[119,23,65,-0.05636203968870382],[119,23,66,-0.04430823742691984],[119,23,67,-0.04244739354045177],[119,23,68,-0.03836768041479814],[119,23,69,-0.03892838718720795],[119,23,70,-0.03416759894988955],[119,23,71,-0.019492363246664618],[119,23,72,-0.016849387281303536],[119,23,73,-0.04242053843468339],[119,23,74,-0.062282486877559655],[119,23,75,-0.0725687643477919],[119,23,76,-0.05732714161149805],[119,23,77,-0.03322971330900548],[119,23,78,-0.029301743156904713],[119,23,79,-0.05472954335357827],[119,24,64,-0.07148155661872495],[119,24,65,-0.05635807996935856],[119,24,66,-0.04422142740433172],[119,24,67,-0.0422189180837524],[119,24,68,-0.038233182677155184],[119,24,69,-0.0388058748490041],[119,24,70,-0.034255076694284264],[119,24,71,-0.0200259963671229],[119,24,72,-0.017386037491691944],[119,24,73,-0.0425658061091327],[119,24,74,-0.0624212626535243],[119,24,75,-0.07285230459314658],[119,24,76,-0.05759278362353811],[119,24,77,-0.03377046438975708],[119,24,78,-0.030188829325502473],[119,24,79,-0.05543439368099901],[119,25,64,-0.07136669924513002],[119,25,65,-0.056373022967892705],[119,25,66,-0.04414617505186758],[119,25,67,-0.04200118021332382],[119,25,68,-0.038107429270757366],[119,25,69,-0.038692680615566],[119,25,70,-0.034351028941590214],[119,25,71,-0.020566546853134637],[119,25,72,-0.017930669718156156],[119,25,73,-0.04272492134098046],[119,25,74,-0.06257870385626887],[119,25,75,-0.07316162318607339],[119,25,76,-0.057881619496790326],[119,25,77,-0.03432388466683178],[119,25,78,-0.03108545575112242],[119,25,79,-0.05615720314443557],[119,26,64,-0.07127755204307844],[119,26,65,-0.05640692227953557],[119,26,66,-0.04408244570087918],[119,26,67,-0.041793978109993045],[119,26,68,-0.03799029414653308],[119,26,69,-0.03858870214288605],[119,26,70,-0.03445551292485364],[119,26,71,-0.02111446553058791],[119,26,72,-0.01848375661511163],[119,26,73,-0.04289797365432339],[119,26,74,-0.0627548581867356],[119,26,75,-0.07349689681487988],[119,26,76,-0.05819384638286691],[119,26,77,-0.03489045465937506],[119,26,78,-0.03199237358740308],[119,26,79,-0.056898493851747695],[119,27,64,-0.07121406376680463],[119,27,65,-0.056459838889204465],[119,27,66,-0.04403020915160442],[119,27,67,-0.041597115961019226],[119,27,68,-0.037881654932461276],[119,27,69,-0.038493841542227854],[119,27,70,-0.034568590159505155],[119,27,71,-0.021670206192174683],[119,27,72,-0.019045775242335614],[119,27,73,-0.043085058462331606],[119,27,74,-0.06294977655283676],[119,27,75,-0.0738583087005415],[119,27,76,-0.058529672499602024],[119,27,77,-0.03547065781857775],[119,27,78,-0.032910325933402644],[119,27,79,-0.057658781907451086],[119,28,64,-0.07117619405315886],[119,28,65,-0.056531841217832904],[119,28,66,-0.04398943961603674],[119,28,67,-0.04141040379544583],[119,28,68,-0.037781392859718176],[119,28,69,-0.038408005368980334],[119,28,70,-0.034690326405107795],[119,28,71,-0.022234225677180846],[119,28,72,-0.019617207211216937],[119,28,73,-0.04328627710003206],[119,28,74,-0.06316351309297145],[119,28,75,-0.07424604861914623],[119,28,76,-0.058889317122053385],[119,28,77,-0.03606498061993676],[119,28,78,-0.033840048007810174],[119,28,79,-0.058438577581668795],[119,29,64,-0.07116391341831835],[119,29,65,-0.05662300517360027],[119,29,66,-0.04396011569541926],[119,29,67,-0.041233657367279075],[119,29,68,-0.0376893927294399],[119,29,69,-0.03833110465073389],[119,29,70,-0.03482079166084341],[119,29,71,-0.02280698395436983],[119,29,72,-0.020198538825532006],[119,29,73,-0.0435017368706992],[119,29,74,-0.06339612520756399],[119,29,75,-0.074660312911162],[119,29,76,-0.05927301056969722],[119,29,77,-0.03667391265831745],[119,29,78,-0.034782267303362265],[119,29,79,-0.05923838545060687],[119,30,64,-0.07117720325165339],[119,30,65,-0.05673341420761693],[119,30,66,-0.04394222039123633],[119,30,67,-0.04106669808546584],[119,30,68,-0.03760554291962218],[119,30,69,-0.03826305495404856],[119,30,70,-0.034960060194223735],[119,30,71,-0.023388944208200285],[119,30,72,-0.020790261217244317],[119,30,73,-0.043731551106157444],[119,30,74,-0.06364767359930643],[119,30,75,-0.07510130447843429],[119,30,76,-0.059680994189874215],[119,30,77,-0.03729794674530739],[119,30,78,-0.03573770372230689],[119,30,79,-0.06005870451059266],[119,31,64,-0.07121605580648539],[119,31,65,-0.05686315937373888],[119,31,66,-0.0439357411488038],[119,31,67,-0.04090935298989962],[119,31,68,-0.0375297354318961],[119,31,69,-0.03820377648958885],[119,31,70,-0.035108210602677756],[119,31,71,-0.02398057292865849],[119,31,72,-0.021392870477837257],[119,31,73,-0.04397583924141048],[119,31,74,-0.06391822232292399],[119,31,75,-0.0755692327699083],[119,31,76,-0.06011352033763428],[119,31,77,-0.037937579008488306],[119,31,78,-0.036707069693871],[119,31,79,-0.06090002826777958],[119,32,64,-0.07128047418751866],[119,32,65,-0.057012339392239555],[119,32,66,-0.04394066993269737],[119,32,67,-0.04076145477284084],[119,32,68,-0.03746186597803675],[119,32,69,-0.0381531942553994],[119,32,70,-0.035265325907751485],[119,32,71,-0.02458234000497685],[119,32,72,-0.022006867785645402],[119,32,73,-0.044234726904042176],[119,32,74,-0.06420783884534598],[119,32,75,-0.07606431375709682],[119,32,76,-0.06057085235216709],[119,32,77,-0.03859330899237682],[119,32,78,-0.03769107027481158],[119,32,79,-0.06176284480567604],[119,33,64,-0.07137047233473505],[119,33,65,-0.05718106071709342],[119,33,66,-0.04395700333337931],[119,33,67,-0.04062284184528108],[119,33,68,-0.03740183410617188],[119,33,69,-0.038111238218189084],[119,33,70,-0.035431493681723034],[119,33,71,-0.0251947188234788],[119,33,72,-0.022632759529591],[119,33,73,-0.044508346018849405],[119,33,74,-0.06451659411720283],[119,33,75,-0.07658676990031613],[119,33,76,-0.06105326453001025],[119,33,77,-0.03926563976084286],[119,33,78,-0.03869040323418349],[119,33,79,-0.06264763683265497],[119,34,64,-0.0714860750036282],[119,34,65,-0.05736943760672622],[119,34,66,-0.04398474270456558],[119,34,67,-0.04049335844797896],[119,34,68,-0.03734954336682473],[119,34,69,-0.038077843532639516],[119,34,70,-0.03560680620656564],[119,34,71,-0.025818186369840485],[119,34,72,-0.023271057429754775],[119,34,73,-0.044796834928251386],[119,34,74,-0.06484456265668406],[119,34,75,-0.07713683010679456],[119,34,76,-0.06156104209530849],[119,34,77,-0.039955078000961576],[119,34,78,-0.03970575912361098],[119,34,79,-0.06355488171169449],[119,35,64,-0.0716273177416843],[119,35,65,-0.05757759219812816],[119,35,66,-0.044023894330991346],[119,35,67,-0.040372854807027354],[119,35,68,-0.03730490151902227],[119,35,69,-0.03805295079883255],[119,35,70,-0.035791360665263366],[119,35,71,-0.026453223336066665],[119,35,72,-0.02392227865518809],[119,35,73,-0.04510033852904568],[119,35,74,-0.06519182264683945],[119,35,75,-0.07771472968178375],[119,35,76,-0.062094481167438174],[119,35,77,-0.04066213412836629],[119,35,78,-0.040737821334479896],[119,35,79,-0.06448505147466359],[119,36,64,-0.07179424686102114],[119,36,65,-0.05780565458425177],[119,36,66,-0.044074469626334746],[119,36,67,-0.04026118733392614],[119,36,68,-0.03726782077679396],[119,36,69,-0.038036506357965405],[119,36,70,-0.03598525936553715],[119,36,71,-0.02710031423246547],[119,36,72,-0.024586945939339234],[119,36,73,-0.04541900842609618],[119,36,74,-0.0655584560474457],[119,36,75,-0.07832071027381653],[119,36,76,-0.06265388872631275],[119,36,77,-0.04138732239422124],[119,36,78,-0.041787266143527596],[119,36,79,-0.065438612823475],[119,37,64,-0.07198691940716866],[119,37,65,-0.058053762894691156],[119,37,66,-0.04413648536119186],[119,37,67,-0.040158218870279226],[119,37,68,-0.037238218096496634],[119,37,69,-0.038028462626612],[119,37,70,-0.03618860999613178],[119,37,71,-0.027759947504959567],[119,37,72,-0.025265587693494063],[119,37,73,-0.0457530031035937],[119,37,74,-0.06594454872263586],[119,37,75,-0.07895501981532375],[119,37,76,-0.0632395825757689],[119,37,77,-0.04213116099408725],[119,37,78,-0.0428547627484955],[119,37,79,-0.06641602712054684],[119,38,64,-0.07220540312399194],[119,38,65,-0.05832206337967793],[119,38,66,-0.04420996392109842],[119,38,67,-0.04006381897734538],[119,38,68,-0.03721601550549362],[119,38,69,-0.038028778469860636],[119,38,70,-0.03640152591587664],[119,38,71,-0.0284326156580943],[119,38,72,-0.0259587381186346],[119,38,73,-0.04610248811455855],[119,38,74,-0.06635019058553997],[119,38,75,-0.07961791245985474],[119,38,76,-0.06385189130546091],[119,38,77,-0.04289417217903765],[119,38,78,-0.04394097329561458],[119,38,79,-0.06741775037105804],[119,39,64,-0.07244977641475948],[119,39,65,-0.05861071049744051],[119,39,66,-0.044294933594656326],[119,39,67,-0.039977864270738316],[119,39,68,-0.0372011404727562],[119,39,69,-0.03803741961367676],[119,39,70,-0.03662412647575081],[119,39,71,-0.029118815384094842],[119,39,72,-0.026666937316090916],[119,39,73,-0.04646763628924642],[119,39,74,-0.06677547576119428],[119,39,75,-0.08030964851715838],[119,39,76,-0.06449115425170239],[119,39,77,-0.04367688236944321],[119,39,78,-0.04504655290078833],[119,39,79,-0.06844423319951973],[119,40,64,-0.07272012829941246],[119,40,65,-0.05891986700503256],[119,40,66,-0.04439142889192282],[119,40,67,-0.039900238800676266],[119,40,68,-0.03719352632204041],[119,40,69,-0.03805435909690291],[119,40,70,-0.03685653737425489],[119,40,71,-0.02981904769838699],[119,40,72,-0.027390731397407792],[119,40,73,-0.04684862796316142],[119,40,74,-0.0672205027690349],[119,40,75,-0.08103049438744063],[119,40,76,-0.0651577214577681],[119,40,77,-0.044479822271990356],[119,40,78,-0.04617214966652142],[119,40,79,-0.06949592082329474],[119,41,64,-0.073016558368087],[119,41,65,-0.05924970405275064],[119,41,66,-0.0444994908932787],[119,41,67,-0.039830834478237334],[119,41,68,-0.037193112688329456],[119,41,69,-0.038079577763323255],[119,41,70,-0.03709889104640572],[119,41,71,-0.03053381808199769],[119,41,72,-0.028130672593834005],[119,41,73,-0.04724565122537842],[119,41,74,-0.06768537472630827],[119,41,75,-0.08178072249613569],[119,41,76,-0.06585195363417658],[119,41,77,-0.04530352700053725],[119,41,78,-0.0473184046967124],[119,41,79,-0.07057325302571564],[119,42,64,-0.07333917673097351],[119,42,65,-0.05960040128229319],[119,42,66,-0.04461916762905074],[119,42,67,-0.039769551548132644],[119,42,68,-0.03719984601826929],[119,42,69,-0.03811306479423541],[119,42,70,-0.03735132708670056],[119,42,71,-0.03126363663129799],[119,42,72,-0.028887319365876525],[119,42,73,-0.04765890218788622],[119,42,74,-0.06817019957374935],[119,42,75,-0.08256061123056567],[119,42,76,-0.06657422211953354],[119,42,77,-0.046148536201542814],[119,42,78,-0.04848595211160596],[119,42,79,-0.07167666413155023],[119,43,64,-0.07368810396457595],[119,43,65,-0.05997214692880662],[119,43,66,-0.04475051449018141],[119,43,67,-0.03971629910852049],[119,43,68,-0.0372136801153191],[119,43,69,-0.03815481828194357],[119,43,70,-0.0376139927063787],[119,43,71,-0.03200901821554257],[119,43,72,-0.02966123651334236],[119,43,73,-0.048088585276634795],[119,43,74,-0.06867509032486509],[119,43,75,-0.08337044487986696],[119,43,76,-0.0673249088425118],[119,43,77,-0.047015394184836655],[119,43,78,-0.04967541906526697],[119,43,79,-0.0728065829875743],[119,44,64,-0.07406347105446724],[119,44,65,-0.060365137927000864],[119,44,66,-0.044893594670293774],[119,44,67,-0.03967099567842996],[119,44,68,-0.03723457673036948],[119,44,69,-0.03820484584459702],[119,44,70,-0.03788704322533033],[119,44,71,-0.032770482642709445],[119,44,72,-0.030452995286334026],[119,44,73,-0.04853491354498352],[119,44,74,-0.06920016534018235],[119,44,75,-0.08421051357960772],[119,44,76,-0.06810440628560224],[119,44,77,-0.04790465006060394],[119,44,78,-0.050887425768085186],[119,44,79,-0.07396343295108611],[119,45,64,-0.07446541933463628],[119,45,65,-0.06077958002151701],[119,45,66,-0.04504847963950519],[119,45,67,-0.03963356981335235],[119,45,68,-0.03726250619855641],[119,45,69,-0.038263165282751546],[119,45,70,-0.03817064259898023],[119,45,71,-0.03354855483416418],[119,45,72,-0.031263173497678105],[119,45,73,-0.04899810901022121],[119,45,74,-0.06974554862780105],[119,45,75,-0.08508111326254049],[119,45,76,-0.06891311745130262],[119,45,77,-0.04881685788354569],[119,45,78,-0.052122585516949434],[119,45,79,-0.07514763188925803],[119,46,64,-0.07489410042348983],[119,46,65,-0.061215687881709335],[119,46,66,-0.0452152496503259],[119,46,67,-0.03960396076952894],[119,46,68,-0.037297448122956496],[119,46,69,-0.03832980527796649],[119,46,70,-0.038464963980422484],[119,46,71,-0.03434376500865659],[119,46,72,-0.032092355637248916],[119,46,73,-0.049478403013777456],[119,46,74,-0.07031137017154757],[119,46,75,-0.08598254561691898],[119,46,76,-0.0697514558313969],[119,46,77,-0.049752576805186424],[119,46,78,-0.053381504735774014],[119,46,79,-0.076359592192202],[119,47,64,-0.07534966832445471],[119,47,65,-0.061673677378426994],[119,47,66,-0.045393986422734074],[119,47,67,-0.039582111353321785],[119,47,68,-0.03733938423060734],[119,47,69,-0.03840479824718135],[119,47,70,-0.038770182420007716],[119,47,71,-0.03515664096638528],[119,47,72,-0.032941125066878976],[119,47,73,-0.04997602867168326],[119,47,74,-0.0708977583414954],[119,47,75,-0.0869151100946183],[119,47,76,-0.07061983740785793],[119,47,77,-0.05071236325003483],[119,47,78,-0.054664775030387566],[119,47,79,-0.07759971279018085],[119,48,64,-0.075832188401428],[119,48,65,-0.06215367458130119],[119,48,66,-0.04558468241305216],[119,48,67,-0.039567877204183345],[119,48,68,-0.03738820749099169],[119,48,69,-0.03848808928180633],[119,48,70,-0.039086383468239096],[119,48,71,-0.03598761607392588],[119,48,72,-0.03380997172884948],[119,48,73,-0.0504911286782078],[119,48,74,-0.07150474747797507],[119,48,75,-0.08787901088555061],[119,48,76,-0.0715185874238757],[119,48,77,-0.051696677674862974],[119,48,78,-0.05597287963680734],[119,48,79,-0.07886828536962673],[119,49,64,-0.07634165891695034],[119,49,65,-0.06265573735279814],[119,49,66,-0.045787262736106046],[119,49,67,-0.03956104877886557],[119,49,68,-0.03744374396788352],[119,49,69,-0.038579557850341485],[119,49,70,-0.03941358457451639],[119,49,71,-0.03683705006212998],[119,49,72,-0.034699312704728105],[119,49,73,-0.05102377602977627],[119,49,74,-0.07213229845297524],[119,49,75,-0.08887437690452032],[119,49,76,-0.07244796021829793],[119,49,77,-0.05270590445867972],[119,49,78,-0.05730621307220284],[119,49,79,-0.08016551386327071],[119,50,64,-0.07687807017409698],[119,50,65,-0.0631799147049238],[119,50,66,-0.04600164503025086],[119,50,67,-0.03956141144881763],[119,50,68,-0.037505812937449264],[119,50,69,-0.0386790779162536],[119,50,70,-0.039751795051165266],[119,50,71,-0.0377052885228077],[119,50,72,-0.03560955162433819],[119,50,73,-0.05157403378092009],[119,50,74,-0.07278035843135582],[119,50,75,-0.08990132112114842],[119,50,76,-0.0734081985590629],[119,50,77,-0.05374041146278214],[119,50,78,-0.058665140630709864],[119,50,79,-0.08149157395493105],[119,51,64,-0.07744140487531756],[119,51,65,-0.06372624735227213],[119,51,66,-0.046227740516754184],[119,51,67,-0.03956874677738858],[119,51,68,-0.03757422815170671],[119,51,69,-0.038786519159378065],[119,51,70,-0.040101017097968567],[119,51,71,-0.038592663404058675],[119,51,72,-0.03654107902591616],[119,51,73,-0.05214195573149038],[119,51,74,-0.07344886152724926],[119,51,75,-0.09095994072123378],[119,51,76,-0.07439953375295667],[119,51,77,-0.054800550325424406],[119,51,78,-0.0600499985743172],[119,51,79,-0.08284661322990673],[119,52,64,-0.07803163727976781],[119,52,65,-0.06429476707037773],[119,52,66,-0.04646545389122841],[119,52,67,-0.03958283264468852],[119,52,68,-0.03764879794690613],[119,52,69,-0.03890174703306606],[119,52,70,-0.04046124565426438],[119,52,71,-0.0394994923083094],[119,52,72,-0.0374942715094491],[119,52,73,-0.05272758592651163],[119,52,74,-0.07413772827902892],[119,52,75,-0.09205031606651656],[119,52,76,-0.0754221845429021],[119,52,77,-0.055886655549521914],[119,52,78,-0.06146109312764122],[119,52,79,-0.08423075012994037],[119,53,64,-0.07864873231160792],[119,53,65,-0.06488549601295888],[119,53,66,-0.04671468320172383],[119,53,67,-0.039603443375795126],[119,53,68,-0.03772932535375303],[119,53,69,-0.03902462281467745],[119,53,70,-0.04083246823759064],[119,53,71,-0.040426077754077076],[119,53,72,-0.038469490845495745],[119,53,73,-0.053330958131949255],[119,53,74,-0.07484686510811525],[119,53,75,-0.0931725096200628],[119,53,76,-0.07647635596079443],[119,53,77,-0.05699904355337838],[119,53,78,-0.06289869944996244],[119,53,79,-0.0856440728873564],[119,54,64,-0.07929264462158679],[119,54,65,-0.06549844599039271],[119,54,66,-0.04697531971568705],[119,54,67,-0.03963034987441205],[119,54,68,-0.037815608211644695],[119,54,69,-0.039155003651069116],[119,54,70,-0.04121466477072208],[119,54,71,-0.041372706404192404],[119,54,72,-0.039467083042233016],[119,54,73,-0.0539520952886882],[119,54,74,-0.0755761637645393],[119,54,75,-0.09432656484082673],[119,54,76,-0.0775622381388409],[119,54,77,-0.05813801168791687],[119,54,78,-0.06436306058988872],[119,54,79,-0.08708663844336331],[119,55,64,-0.07996331760427629],[119,55,65,-0.0661336177117954],[119,55,66,-0.047247247777946456],[119,55,67,-0.039663319763996466],[119,55,68,-0.03790743928899895],[119,55,69,-0.03929274260063284],[119,55,70,-0.04160780739889767],[119,55,71,-0.042339648263293735],[119,55,72,-0.04048737737357442],[119,55,73,-0.05459100894702537],[119,55,74,-0.07632550076217291],[119,55,75,-0.09551250505103236],[119,55,76,-0.0786800050824989],[119,55,77,-0.05930383722405371],[119,55,78,-0.06585438642817285],[119,55,79,-0.08855847135560281],[119,56,64,-0.08066068237345242],[119,56,65,-0.06679099999320359],[119,56,66,-0.047530344661937854],[119,56,67,-0.03970211753837506],[119,56,68,-0.03800460641175888],[119,56,69,-0.03943768867343858],[119,56,70,-0.04201186029907618],[119,56,71,-0.043327155847556864],[119,56,72,-0.04153068537138945],[119,56,73,-0.05524769868407279],[119,56,74,-0.07709473680661941],[119,56,75,-0.09673033228018976],[119,56,76,-0.0798298134083131],[119,56,77,-0.060496776314052036],[119,56,78,-0.06737285261439804],[119,56,79,-0.09005956270015869],[119,57,64,-0.08138465669821812],[119,57,65,-0.0674705689344277],[119,57,66,-0.04782448041636738],[119,57,67,-0.03974650472379864],[119,57,68,-0.03810689260208408],[119,57,69,-0.039589686870970024],[119,57,70,-0.04242677948304374],[119,57,71,-0.04433546332975169],[119,57,72,-0.042597299785006544],[119,57,73,-0.05592215150651007],[119,57,74,-0.07788371621877854],[119,57,75,-0.09798002608969057],[119,57,76,-0.0810118010501437],[119,57,77,-0.06171706293090105],[119,57,78,-0.06891859950344409],[119,57,79,-0.09158986897337063],[119,58,64,-0.08213514390254567],[119,58,65,-0.06817228706721376],[119,58,66,-0.048129517709485765],[119,58,67,-0.0397962400543054],[119,58,68,-0.0382140762291608],[119,58,69,-0.03974857822686259],[119,58,70,-0.04285251259616155],[119,58,71,-0.04536478566280535],[119,58,72,-0.043687493511307365],[119,58,73,-0.05661434124115099],[119,58,74,-0.07869226635710415],[119,58,75,-0.09926154238202593],[119,58,76,-0.08222608593742294],[119,58,77,-0.06296490778990091],[119,58,78,-0.07049173109775328],[119,58,79,-0.09314931099884571],[119,59,64,-0.08291203173108107],[119,59,65,-0.06889610247749318],[119,59,66,-0.04844531167318395],[119,59,67,-0.03985107966224001],[119,59,68,-0.0383259311740397],[119,59,69,-0.039914199850038856],[119,59,70,-0.04328899871357621],[119,59,71,-0.04641531768522208],[119,59,72,-0.04480151849892242],[119,59,73,-0.05732422791588451],[119,59,74,-0.07952019704164828],[119,59,75,-0.100574812198858],[119,59,76,-0.08347276464931942],[119,59,77,-0.06424049725686473],[119,59,78,-0.0720923140016109],[119,59,79,-0.09473777284520167],[119,60,64,-0.08371519118417899],[119,60,65,-0.06964194790459378],[119,60,66,-0.048771709749107155],[119,60,67,-0.03991077728569629],[119,60,68,-0.038442227010331474],[119,60,69,-0.04008638497156902],[119,60,70,-0.04373616813570099],[119,60,71,-0.047487233211839314],[119,60,72,-0.04593960463020738],[119,60,73,-0.05805175713360102],[119,60,74,-0.08036729998300268],[119,60,75,-0.10191974051230213],[119,60,76,-0.08475191104888578],[119,60,77,-0.0655439922475447],[119,60,78,-0.07372037639381353],[119,60,79,-0.09635510076017226],[119,61,64,-0.08454447532526169],[119,61,65,-0.07040973982038608],[119,61,66,-0.04910855153896712],[119,61,67,-0.03997508449456906],[119,61,68,-0.03856272920250883],[119,61,69,-0.04026496299651631],[119,61,70,-0.04419394218474829],[119,61,71,-0.04858068411350034],[119,61,72,-0.04710195858481632],[119,61,73,-0.058796859441754515],[119,61,74,-0.08123334821926481],[119,61,75,-0.1032962050139006],[119,61,76,-0.08606357490143837],[119,61,77,-0.0668755271230224],[119,61,78,-0.07537590702516787],[119,61,79,-0.0980011021267306],[119,62,64,-0.08539971806376365],[119,62,65,-0.07119937749147053],[119,62,66,-0.04945566866123881],[119,62,67,-0.040043750936836014],[119,62,68,-0.038687199323499864],[119,62,69,-0.04044975956198078],[119,62,70,-0.04466223300410651],[119,62,71,-0.04969579938938586],[119,62,72,-0.048288762688894184],[119,62,73,-0.059559449700288314],[119,62,74,-0.08211809556419189],[119,62,75,-0.10470405490592036],[119,62,76,-0.08740778048165113],[119,62,77,-0.06823520858603456],[119,62,78,-0.07705885424743622],[119,62,79,-0.09967554444700233],[119,63,64,-0.08628073291710273],[119,63,65,-0.07201074202765527],[119,63,66,-0.049812884616439866],[119,63,67,-0.040116524606628214],[119,63,68,-0.038815395293196935],[119,63,69,-0.04064059660251851],[119,63,70,-0.045140943362359034],[119,63,71,-0.050832684235885245],[119,63,72,-0.04950017375408942],[119,63,73,-0.06033942645073145],[119,63,74,-0.08302127606975541],[119,63,75,-0.10614310969977071],[119,63,76,-0.08878452517406864],[119,63,77,-0.06962311458337996],[119,63,78,-0.0787691250804399],[119,63,79,-0.10137815435979505],[119,64,64,-0.08718731175523378],[119,64,65,-0.07284369542005284],[119,64,66,-0.05018001466313432],[119,64,67,-0.040193152135519015],[119,64,68,-0.03894707163937772],[119,64,69,-0.040837292424005835],[119,64,70,-0.04562996646368326],[119,64,71,-0.05199141911596515],[119,64,72,-0.050736321910711875],[119,64,73,-0.06113667128927827],[119,64,74,-0.0839426035062719],[119,64,75,-0.10761315802640957],[119,64,76,-0.0901937780718891],[119,64,77,-0.07103929321966945],[119,64,78,-0.08050658432405991],[119,64,79,-0.10310861669755397],[119,65,64,-0.08811922353158456],[119,65,65,-0.07369807957231359],[119,65,66,-0.05055686570683208],[119,65,67,-0.04027337910839855],[119,65,68,-0.03908197978247386],[119,65,69,-0.04103966178700529],[119,65,70,-0.04612918576642063],[119,65,71,-0.05317205883319727],[119,65,72,-0.05199730943960613],[119,65,73,-0.061951048246789854],[119,65,74,-0.08488177086336517],[119,65,75,-0.1091139564638092],[119,65,76,-0.09163547857915907],[119,65,77,-0.07248376168793039],[119,65,78,-0.08227105372202337],[119,65,79,-0.10486657358866135],[119,66,64,-0.08907621300424592],[119,66,65,-0.07457371532856387],[119,66,66,-0.05094323620389579],[119,66,67,-0.04035695040519527],[119,66,68,-0.03921986834552112],[119,66,69,-0.041247516000582844],[119,66,70,-0.04663847481149909],[119,66,71,-0.05437463161459512],[119,66,72,-0.053283209607353485],[119,66,73,-0.06278240317861586],[119,66,74,-0.08583844987494224],[119,66,75,-0.11064522838657519],[119,66,76,-0.09310953502160017],[119,66,77,-0.07395650522260556],[119,66,78,-0.08406231118429959],[119,66,79,-0.10665162361091726],[119,67,64,-0.09005799945161465],[119,67,65,-0.07547040150186098],[119,67,66,-0.05133891608259003],[119,67,67,-0.04044361056959145],[119,67,68,-0.039360483490509836],[119,67,69,-0.041460663027513577],[119,67,70,-0.04715769706249799],[119,67,71,-0.05559913820670109],[119,67,72,-0.05459406550974468],[119,67,73,-0.06363056316731559],[119,67,74,-0.08681229057147895],[119,67,75,-0.11220666284306076],[119,67,76,-0.09461582327164232],[119,67,77,-0.07545747608078301],[119,67,78,-0.08588009007506972],[119,67,79,-0.10846332100212089],[119,68,64,-0.09106427538671165],[119,68,65,-0.07638791390697877],[119,68,66,-0.05174368668331303],[119,68,67,-0.040533104205753415],[119,68,68,-0.039503569282234134],[119,68,69,-0.04167890760167618],[119,68,70,-0.04768670575898002],[119,68,71,-0.05684555098927488],[119,68,72,-0.055929888928433424],[119,68,73,-0.06449533594125888],[119,68,74,-0.0878029208627774],[119,68,75,-0.11379791346527227],[119,68,76,-0.09615418539325553],[119,68,77,-0.07698659255745849],[119,68,78,-0.08772407857310634],[119,68,79,-0.11030117493355164],[119,69,64,-0.0920947052746845],[119,69,65,-0.07732600440155324],[119,69,66,-0.05215732072006473],[119,69,67,-0.040625176403995183],[119,69,68,-0.039648868080637174],[119,69,69,-0.04190205135842155],[119,69,70,-0.04822534378478063],[119,69,71,-0.058113813111146474],[119,69,72,-0.057290659205937504],[119,69,73,-0.06537650931222586],[119,69,74,-0.08880994615443748],[119,69,75,-0.11541859741705897],[119,69,76,-0.09772442831245831],[119,69,77,-0.07854373804084143],[119,69,78,-0.08959391911143749],[119,69,79,-0.11216464885215369],[119,70,64,-0.0931489242581531],[119,70,65,-0.07828439993971147],[119,70,66,-0.05257958226514221],[119,70,67,-0.04071957319615319],[119,70,68,-0.039796120962513844],[119,70,69,-0.04212989297860912],[119,70,70,-0.04877344355288895],[119,70,71,-0.059403837652848644],[119,70,72,-0.058676322144256124],[119,70,73,-0.06627385063512985],[119,70,74,-0.08983294900122805],[119,70,75,-0.11706829438612266],[119,70,76,-0.09932632251952012],[119,70,77,-0.08012876011380064],[119,70,78,-0.09148920790311477],[119,70,79,-0.1140531598971673],[119,71,64,-0.09422653689521648],[119,71,65,-0.07926280164240812],[119,71,66,-0.05301022675898555],[119,71,67,-0.04081604204129447],[119,71,68,-0.03994506817328063],[119,71,69,-0.04236222834691155],[119,71,70,-0.04933082690848786],[119,71,71,-0.06071550682067662],[119,71,72,-0.06008678893245437],[119,71,73,-0.06718710629299016],[119,71,74,-0.09087148880049947],[119,71,75,-0.11874654562543747],[119,71,76,-0.10095960080899319],[119,71,77,-0.08174146970756554],[119,71,78,-0.09340949455975378],[119,71,79,-0.11596607839679438],[119,72,64,-0.09532711591513178],[119,72,65,-0.08026088388882056],[119,72,66,-0.05344900104704697],[119,72,67,-0.04091433234224324],[119,72,68,-0.040095449609389405],[119,72,69,-0.042598850724926175],[119,72,70,-0.049897305051706115],[119,72,71,-0.06204867117690904],[119,72,72,-0.06152193510870433],[119,72,73,-0.06811600121032596],[119,72,74,-0.0919251015287507],[119,72,75,-0.12045285304973051],[119,72,76,-0.10262395706388427],[119,72,77,-0.08338164031391312],[119,72,78,-0.09535428180945729],[119,72,79,-0.11790272745043207],[119,73,64,-0.09645020099686154],[119,73,65,-0.08127829343327299],[119,73,66,-0.05389564344550524],[119,73,67,-0.04101419599327285],[119,73,68,-0.0402470053318288],[119,73,69,-0.042839550939564305],[119,73,70,-0.05047267848159332],[119,73,71,-0.06340314891097115],[119,73,72,-0.06298159956236234],[119,73,73,-0.06906023839816255],[119,73,74,-0.09299329952443273],[119,73,75,-0.12218667839273582],[119,73,76,-0.10431904509040131],[119,73,77,-0.08504900726209737],[119,73,78,-0.09732302532057796],[119,73,79,-0.11986238260186229],[119,74,64,-0.09759529757579337],[119,74,65,-0.08231464855220369],[119,74,66,-0.054349883837520055],[119,74,67,-0.04111538795909727],[119,74,68,-0.04039947611095147],[119,74,69,-0.04308411758706202],[119,74,70,-0.05105673696272939],[119,74,71,-0.06477872515628871],[119,74,72,-0.06446558358168458],[119,74,73,-0.07001949853379394],[119,74,74,-0.0940755713199539],[119,74,75,-0.12394744243088732],[119,74,76,-0.10604447750976236],[119,74,77,-0.08674326706674051],[119,74,78,-0.09931513363753725],[119,74,79,-0.12184427160856265],[119,75,64,-0.09876187568413958],[119,75,65,-0.08336953822581387],[119,75,66,-0.054811443801664146],[119,75,67,-0.04121766688515493],[119,75,68,-0.040552604002727144],[119,75,69,-0.04333233725290091],[119,75,70,-0.05164925951585993],[119,75,71,-0.06617515135764016],[119,75,72,-0.06597364995288285],[119,75,73,-0.07099343957847938],[119,75,74,-0.09517138152581779],[119,75,75,-0.12573452427916507],[119,75,76,-0.10779982471369026],[119,75,77,-0.08846407685295735],[119,75,78,-0.10132996823478395],[119,75,79,-0.12384757431219363],[119,76,64,-0.09994936883065673],[119,76,65,-0.08444252135910887],[119,76,66,-0.05528003677408471],[119,76,67,-0.04132079573900917],[119,76,68,-0.04070613295636492],[119,76,69,-0.043583994747853905],[119,76,70,-0.05225001443388395],[119,76,71,-0.06759214469378837],[119,76,72,-0.0675055221162463],[119,76,73,-0.07198169643623341],[119,76,74,-0.09628017076975338],[119,76,75,-0.12754726076479012],[119,76,76,-0.10958461389026945],[119,76,77,-0.09021105386492152],[119,76,78,-0.10336684369468947],[119,76,79,-0.12587142261506803],[119,77,64,-0.1011571729254241],[119,77,65,-0.0855331260470571],[119,77,66,-0.05575536824578064],[119,77,67,-0.041424542482443566],[119,77,68,-0.04085980945300427],[119,77,69,-0.043838873360222644],[119,77,70,-0.05285875932440511],[119,77,71,-0.06902938756010803],[119,77,72,-0.06906088338503029],[119,77,73,-0.07298388065679376],[119,77,74,-0.09740135569353676],[119,77,75,-0.1293849458843676],[119,77,76,-0.11139832812684201],[119,77,77,-0.09198377506400249],[119,77,78,-0.10542502801489649],[119,77,79,-0.12791490056715846],[119,78,64,-0.10238464525556874],[119,78,65,-0.08664084888867282],[119,78,66,-0.056237135996306066],[119,78,67,-0.04152868077367906],[119,78,68,-0.041013383175037305],[119,78,69,-0.04409675512428933],[119,78,70,-0.053475241180017806],[119,78,71,-0.07048652711590694],[119,78,72,-0.07063937623283852],[119,78,73,-0.07399958018584837],[119,78,74,-0.09853432901014844],[119,78,75,-0.13124683035006005],[119,78,76,-0.11324040559667435],[119,78,77,-0.09378177682253706],[119,78,78,-0.10750374305034531],[119,78,79,-0.12997704456795997],[119,79,64,-0.10363110351792941],[119,79,65,-0.08776515435486029],[119,79,66,-0.05672503036508206],[119,79,67,-0.04163299069893723],[119,79,68,-0.04116660770542717],[119,79,69,-0.04435742110491048],[119,79,70,-0.0540991964774179],[119,79,71,-0.07196317490106532],[119,79,72,-0.07224060165519192],[119,79,73,-0.07502835916555456],[119,79,74,-0.09967845962378724],[119,79,75,-0.1331321212302856],[119,79,76,-0.11511023883611372],[119,79,77,-0.09560455471918893],[119,79,78,-0.10960216509486936],[119,79,79,-0.1320568436872424],[119,80,64,-0.10489582491469467],[119,80,65,-0.08890547421481487],[119,80,66,-0.057218734561301554],[119,80,67,-0.04173725953230711],[119,80,68,-0.04131924125613319],[119,80,69,-0.04462065169803395],[119,80,70,-0.05473035130629203],[119,80,71,-0.07345890652648766],[119,80,72,-0.0738641186108781],[119,80,73,-0.0760697577882641],[119,80,74,-0.10083309281507351],[119,80,75,-0.13503998169027231],[119,80,76,-0.11700717411887544],[119,80,77,-0.09745156344166941],[119,80,78,-0.11171942560684872],[119,80,79,-0.13415324010838525],[119,81,64,-0.10617804531816198],[119,81,65,-0.09006120702582694],[119,81,66,-0.05771792501331372],[119,81,67,-0.04184128252270908],[119,81,68,-0.04147104742460233],[119,81,69,-0.044886226946873074],[119,81,70,-0.05536842152888317],[119,81,71,-0.0749732614427761],[119,81,72,-0.0755094435486347],[119,81,73,-0.07712329220633933],[119,81,74,-0.10199755049368753],[119,81,75,-0.13696953083772773],[119,81,76,-0.11893051093407671],[119,81,77,-0.09932221680244392],[119,81,78,-0.11385461208302884],[119,81,79,-0.13626512969767732],[119,82,64,-0.1074769585107898],[119,82,65,-0.09123171769127003],[119,82,66,-0.0582222717581913],[119,82,67,-0.04194486370651649],[119,82,68,-0.04162179597705965],[119,82,69,-0.04515392687336987],[119,82,70,-0.056013112971037844],[119,82,71,-0.07650574279140142],[119,82,72,-0.07717605002459862],[119,82,73,-0.07818845450084556],[119,82,74,-0.10317113152050598],[119,82,75,-0.1389198436786776],[119,82,76,-0.12087950157452601],[119,82,77,-0.10121588787286366],[119,82,78,-0.11600676908419458],[119,82,79,-0.13839136270261687],[119,83,64,-0.10879171587455275],[119,83,65,-0.09241633705309679],[119,83,66,-0.058731438626798575],[119,83,67,-0.042047816412156484],[119,83,68,-0.04177126317354883],[119,83,69,-0.04542353113326698],[119,83,70,-0.0566641205792371],[119,83,71,-0.07805581559618528],[119,83,72,-0.07886336637433126],[119,83,73,-0.07926471038479299],[119,83,74,-0.10435310868005625],[119,83,75,-0.1408899460930504],[119,83,76,-0.12285334598873407],[119,83,77,-0.10313190482765855],[119,83,78,-0.11817489397559126],[119,83,79,-0.14053073766307225],[119,84,64,-0.11012143990597577],[119,84,65,-0.09361436228689628],[119,84,66,-0.05924507707171358],[119,84,67,-0.04214995441935909],[119,84,68,-0.04191921805336989],[119,84,69,-0.04569479823092419],[119,84,70,-0.057321095570636825],[119,84,71,-0.0796228517332336],[119,84,72,-0.0805707107912671],[119,84,73,-0.08035142595597694],[119,84,74,-0.10554262136177665],[119,84,75,-0.14287865369931543],[119,84,76,-0.12485103735589584],[119,84,77,-0.10506941048052332],[119,84,78,-0.12035776452173255],[119,84,79,-0.14268178202038467],[119,85,64,-0.11146523802462262],[119,85,65,-0.09482506570326545],[119,85,66,-0.059762830507785795],[119,85,67,-0.042251094574213346],[119,85,68,-0.04206542383304279],[119,85,69,-0.045967464999824875],[119,85,70,-0.057983642047892144],[119,85,71,-0.08120612010860942],[119,85,72,-0.08229727782041864],[119,85,73,-0.08144785460867333],[119,85,74,-0.10673865678898621],[119,85,75,-0.1448845396097056],[119,85,76,-0.12687132811820653],[119,85,77,-0.10702732921803758],[119,85,78,-0.12255389849441217],[119,85,79,-0.14484270280396339],[119,86,64,-0.1128221947357205],[119,86,65,-0.09604770082888485],[119,86,66,-0.06028434656259618],[119,86,67,-0.04235107168455566],[119,86,68,-0.04220965829645707],[119,86,69,-0.046241274149703214],[119,86,70,-0.05865135825907136],[119,86,71,-0.08280485226710259],[119,86,72,-0.08404221390250276],[119,86,73,-0.08255322403924703],[119,86,74,-0.1079401782197995],[119,86,75,-0.14690612308298942],[119,86,76,-0.12891290786555162],[119,86,77,-0.10900452808362007],[119,86,78,-0.12476175302196191],[119,86,79,-0.14701164051674853],[119,87,64,-0.11419137114120495],[119,87,65,-0.09728150301099868],[119,87,66,-0.06080927835171781],[119,87,67,-0.042449740070549115],[119,87,68,-0.04235171571116242],[119,87,69,-0.04651597621430681],[119,87,70,-0.059323839526928476],[119,87,71,-0.08441824720715173],[119,87,72,-0.0858046226723024],[119,87,73,-0.08366674203855377],[119,87,74,-0.10914613361427651],[119,87,75,-0.14894188196297847],[119,87,76,-0.13097441475896068],[119,87,77,-0.11099982780372626],[119,87,78,-0.1269797392394633],[119,87,79,-0.14918668666147497],[119,88,64,-0.11557180523953157],[119,88,65,-0.09852568989375017],[119,88,66,-0.06133728514825319],[119,88,67,-0.04254697430258289],[119,88,68,-0.042491407584046306],[119,88,69,-0.04679132985922343],[119,88,70,-0.06000067869624152],[119,88,71,-0.08604547223347264],[119,88,72,-0.08758356565291504],[119,88,73,-0.08478759694750304],[119,88,74,-0.11035545642301137],[119,88,75,-0.150990253461899],[119,88,76,-0.13305443591577745],[119,88,77,-0.11301200381863905],[119,88,78,-0.12920622460561404],[119,88,79,-0.1513658854876847],[119,89,64,-0.11696251231620515],[119,89,65,-0.09977946197364145],[119,89,66,-0.06186803308275289],[119,89,67,-0.042642669943680774],[119,89,68,-0.04262856342139524],[119,89,69,-0.04706710219525404],[119,89,70,-0.06068146660725659],[119,89,71,-0.08768566390399815],[119,89,72,-0.08937806306647052],[119,89,73,-0.08591495818469483],[119,89,74,-0.11156706645085925],[119,89,75,-0.15304963508761885],[119,89,76,-0.13515150795882058],[119,89,77,-0.11503978746748011],[119,89,78,-0.13143953538626788],[119,89,79,-0.1535472358968921],[119,90,64,-0.11836248542506725],[119,90,65,-0.1010420032336075],[119,90,66,-0.06240119587129138],[119,90,67,-0.042736744293120625],[119,90,68,-0.042763031490048134],[119,90,69,-0.04734306909544392],[119,90,70,-0.061365792593541676],[119,90,71,-0.08933792907026376],[119,90,72,-0.09118709476158225],[119,90,73,-0.08704797684533552],[119,90,74,-0.11277987079351946],[119,90,75,-0.15511838571394193],[119,90,76,-0.13726411773106403],[119,90,77,-0.11708186732744312],[119,90,78,-0.13367795930071844],[119,90,79,-0.15572869350277838],[119,91,64,-0.11977069596021464],[119,91,65,-0.10231248185501265],[119,91,66,-0.06293645556938059],[119,91,67,-0.04282913712792472],[119,91,68,-0.042894679576309214],[119,91,69,-0.04761901551390076],[119,91,70,-0.06205324500247244],[119,91,71,-0.09100134601000266],[119,91,72,-0.09300960125737918],[119,91,73,-0.08818578637046494],[119,91,74,-0.11399276484454499],[119,91,75,-0.1571948267928585],[119,91,76,-0.13939070317696767],[119,91,77,-0.11913689070669087],[119,91,78,-0.13591974832605302],[119,91,79,-0.15790817284277506],[119,92,64,-0.12118609431815475],[119,92,65,-0.10359005100658752],[119,92,66,-0.06347350334920697],[119,92,67,-0.04291981143875484],[119,92,68,-0.04302339573916286],[119,92,69,-0.04789473580446334],[119,92,70,-0.06274341173644296],[119,92,71,-0.0926749656503073],[119,92,72,-0.09484448490349821],[119,92,73,-0.08932750328527761],[119,92,74,-0.11520463337009852],[119,92,75,-0.15927724370719903],[119,92,76,-0.1415296543910833],[119,92,77,-0.12120346528976125],[119,92,78,-0.1381631216541489],[119,92,79,-0.16008354973686542],[119,93,64,-0.12260761064965532],[119,93,65,-0.10487384970917385],[119,93,66,-0.06401204029762647],[119,93,67,-0.04300875415676147],[119,93,68,-0.04314908905435286],[119,93,69,-0.048170034037355425],[119,93,70,-0.06343588081287108],[119,93,71,-0.09435781287940387],[119,93,72,-0.09669061115504826],[119,93,73,-0.09047222800519479],[119,93,74,-0.11641435164867961],[119,93,75,-0.16136388726184558],[119,93,76,-0.14367931483417376],[119,93,77,-0.1232801609338156],[119,93,78,-0.14040626879523402],[119,93,79,-0.16225266378900297],[119,94,64,-0.12403415570048543],[119,94,65,-0.10616300377486998],[119,94,66,-0.06455177823219095],[119,94,67,-0.04309597686784933],[119,94,68,-0.043271690345805254],[119,94,69,-0.048444724311922115],[119,94,70,-0.0641302409409545],[119,94,71,-0.09604888794468223],[119,94,72,-0.09854680996108303],[119,94,73,-0.0916190457081027],[119,94,74,-0.1176207866728269],[119,94,75,-0.1634529753112307],[119,94,76,-0.14583798271655862],[119,94,77,-0.12536551161343631],[119,94,78,-0.14264735282118407],[119,94,79,-0.1644133210260144],[119,95,64,-0.12546462174004652],[119,95,65,-0.10745662681896816],[119,95,66,-0.06509244053239274],[119,95,67,-0.04318151651081049],[119,95,68,-0.04339115290086929],[119,95,69,-0.04871863106359278],[119,95,70,-0.06482608211310668],[119,95,71,-0.09774716793432008],[119,95,72,-0.1004118772647439],[119,95,73,-0.09276702727102398],[119,95,74,-0.11882279840967015],[119,95,75,-0.16554269452050482],[119,95,76,-0.14800391254795528],[119,95,77,-0.12745801751116811],[119,95,78,-0.14488451374113648],[119,95,79,-0.16656329666846795],[119,96,64,-0.12689788357663287],[119,96,65,-0.1087538213428158],[119,96,66,-0.0656337629831806],[119,96,67,-0.043265436055719295],[119,96,68,-0.04350745316580357],[119,96,69,-0.04899158936319492],[119,96,70,-0.0655229962088919],[119,96,71,-0.09945160833942938],[119,96,72,-0.10228457661275134],[119,96,73,-0.09391523026924847],[119,96,74,-0.12001924111701147],[119,96,75,-0.1676312022573405],[119,96,76,-0.15017531685253308],[119,96,77,-0.12955614725034512],[119,96,78,-0.1471158720012561],[119,96,79,-0.16870033802745538],[119,97,64,-0.12833279965784247],[119,97,65,-0.11005367988551289],[119,97,66,-0.06617549462771012],[119,97,67,-0.04334782515898134],[119,97,68,-0.04362059141793698],[119,97,69,-0.04926344520679164],[119,97,70,-0.06622057760926242],[119,97,71,-0.1011611446933684],[119,97,72,-0.10416364087155039],[119,97,73,-0.09506270003579628],[119,97,74,-0.12120896471148271],[119,97,75,-0.1697166286109786],[119,97,76,-0.15235036804742624],[119,97,77,-0.13165834026623022],[119,97,78,-0.14933953209994755],[119,97,79,-0.17082216752088505],[119,98,64,-0.12976821325443127],[119,98,65,-0.11135528624214093],[119,98,66,-0.06671739862621416],[119,98,67,-0.04342880079143345],[119,98,68,-0.04373059241095447],[119,98,69,-0.049534055794254434],[119,98,70,-0.06691842381885706],[119,98,71,-0.10287469428452854],[119,98,72,-0.10604777404700443],[119,98,73,-0.09620847077890753],[119,98,74,-0.1223908161851943],[119,98,75,-0.17179707853475712],[119,98,76,-0.1545272004824355],[119,98,77,-0.13376300931091994],[119,98,78,-0.15155358630919447],[119,98,79,-0.17292648580246248],[119,99,64,-0.1312029537256245],[119,99,65,-0.11265771674594353],[119,99,66,-0.06725925311774736],[119,99,67,-0.043508507835849246],[119,99,68,-0.04383750598972136],[119,99,69,-0.049803289794772686],[119,99,70,-0.06761613609403595],[119,99,71,-0.10459115793854393],[119,99,72,-0.10793565320407561],[119,99,73,-0.09735156675502445],[119,99,74,-0.12356364106710646],[119,99,75,-0.1738706341079381],[119,99,76,-0.15670391263807829],[119,99,77,-0.13586854308684934],[119,99,78,-0.15375611849209625],[119,99,79,-0.17501097499610083],[119,100,64,-0.1326358378636789],[119,100,65,-0.11396004161167544],[119,100,66,-0.0678008520815041],[119,100,67,-0.043587119650244616],[119,100,68,-0.04394140767111454],[119,100,69,-0.050071027597572926],[119,100,70,-0.06831332007433727],[119,100,71,-0.10630942186561904],[119,100,72,-0.1098259304825887],[119,100,73,-0.09849100349459304],[119,100,74,-0.12472628492524943],[119,100,75,-0.17593535691230466],[119,100,76,-0.15887856947865608],[119,100,77,-0.13797330900324004],[119,100,78,-0.15594520800620798],[119,100,79,-0.17707330202820656],[119,101,64,-0.13406567131526764],[119,101,65,-0.11526132633713194],[119,101,66,-0.0683420061943595],[119,101,67,-0.04366483859341886],[119,101,68,-0.0440423991873835],[119,101,69,-0.050337161546181085],[119,101,70,-0.06900958641501737],[119,101,71,-0.1080283595683714],[119,101,72,-0.11171723520477798],[119,101,73,-0.09962578907784991],[119,101,74,-0.12587759490582873],[119,101,75,-0.17798929051866302],[119,101,76,-0.1610492049564923],[119,101,77,-0.14007565604927535],[119,101,78,-0.15811893368177318],[119,101,79,-0.1791111220499277],[119,102,64,-0.13549125007694984],[119,102,65,-0.11656063315957836],[119,102,66,-0.06888254368115354],[119,102,67,-0.043741896509137075],[119,102,68,-0.04414060898854584],[119,102,69,-0.05060159615455011],[119,102,70,-0.06970455141827585],[119,102,71,-0.10974683380527209],[119,102,72,-0.11360817606990743],[119,102,73,-0.10075492545753548],[119,102,74,-0.1270164213050569],[119,102,75,-0.18003046307793755],[119,102,76,-0.16321382466289347],[119,102,77,-0.1421739177772173],[119,102,78,-0.16027537786345325],[119,102,79,-0.181122081941107],[119,103,64,-0.13691136206180116],[119,103,65,-0.11785702256364135],[119,103,66,-0.06942231115424163],[119,103,67,-0.04381855516546199],[119,103,68,-0.0442361927004401],[119,103,69,-0.05086424830348453],[119,103,70,-0.0703978376608013],[119,103,71,-0.11146369860455428],[119,103,72,-0.11549734343093648],[119,103,73,-0.10187740982536891],[119,103,74,-0.12814161916952005],[119,103,75,-0.18205689001127529],[119,103,76,-0.16537040862092356],[119,103,77,-0.14426641538821589],[119,103,78,-0.16241263050378535],[119,103,79,-0.18310382388743507],[119,104,64,-0.1383247887340383],[119,104,65,-0.11914955483701013],[119,104,66,-0.06996117443879378],[119,104,67,-0.043895106645798494],[119,104,68,-0.04432933353512978],[119,104,69,-0.05112504741585332],[119,104,70,-0.07108907461527714],[119,104,71,-0.11317780132321639],[119,104,72,-0.1173833116478602],[119,104,73,-0.10299223601896894],[119,104,74,-0.12925204992079542],[119,104,75,-0.18406657679322486],[119,104,76,-0.16751691421455167],[119,104,77,-0.14635146091306478],[119,104,78,-0.16452879329622624],[119,104,79,-0.18505398902204298],[119,105,64,-0.13973030679908494],[119,105,65,-0.12043729160871756],[119,105,66,-0.0704990193350203],[119,105,67,-0.04397187364119358],[119,105,68,-0.044420242613516195],[119,105,69,-0.05138393565435233],[119,105,70,-0.07177789933455794],[119,105,71,-0.11488798478186198],[119,105,72,-0.11926464156540877],[119,105,73,-0.10409839601873545],[119,105,74,-0.1303465829808575],[119,105,75,-0.18605752182820656],[119,105,76,-0.169651279332553],[119,105,77,-0.14842736049298152],[119,105,78,-0.1666219837974109],[119,105,79,-0.18697022117800058],[119,106,64,-0.14112667975670223],[119,106,65,-0.12171922604994628],[119,106,66,-0.07103569903996425],[119,106,67,-0.044049153998168146],[119,106,68,-0.04450911585564571],[119,106,69,-0.05164092115553963],[119,106,70,-0.07246404021196864],[119,106,71,-0.11659313149940899],[119,106,72,-0.12113994510374769],[119,106,73,-0.10519494362570013],[119,106,74,-0.13142407591989766],[119,106,75,-0.18802772768286932],[119,106,76,-0.1717715243834112],[119,106,77,-0.15049243287724684],[119,106,78,-0.16869029518871897],[119,106,79,-0.18885023710396368],[119,107,64,-0.142512642697893],[119,107,65,-0.12299414641617293],[119,107,66,-0.07157092690289013],[119,107,67,-0.04412710664872845],[119,107,68,-0.04459604703769993],[119,107,69,-0.051896183400831956],[119,107,70,-0.0731474804659287],[119,107,71,-0.11829224534220008],[119,107,72,-0.12300800690577304],[119,107,73,-0.10628111915198012],[119,107,74,-0.1324833391870194],[119,107,75,-0.18997522476584158],[119,107,76,-0.17387595017790716],[119,107,77,-0.15254503936057912],[119,107,78,-0.1707317125671436],[119,107,79,-0.19069197146598196],[119,108,64,-0.14388693253412024],[119,108,65,-0.12426080892830499],[119,108,66,-0.0721043979638307],[119,108,67,-0.04420587577930822],[119,108,68,-0.04468112725829178],[119,108,69,-0.052149949700078496],[119,108,70,-0.07382826236478722],[119,108,71,-0.11998435000953636],[119,108,72,-0.12486763670654716],[119,108,73,-0.10735620616212778],[119,108,74,-0.1335231962652304],[119,108,75,-0.19189806141161084],[119,108,76,-0.17596290936436088],[119,108,77,-0.1545835467395717],[119,108,78,-0.1727442206412898],[119,108,79,-0.19249343994004675],[119,109,64,-0.14524829587397847],[119,109,65,-0.12551797790263516],[119,109,66,-0.0726358172377614],[119,109,67,-0.04428561941907165],[119,109,68,-0.0447644676639039],[119,109,69,-0.05240246703167183],[119,109,70,-0.07450644322993283],[119,109,71,-0.12166846816247666],[119,109,72,-0.12671763839091013],[119,109,73,-0.1084195002254446],[119,109,74,-0.13454249819881384],[119,109,75,-0.19379430371617054],[119,109,76,-0.17803075709439312],[119,109,77,-0.15660632177247924],[119,109,78,-0.17472583139362863],[119,109,79,-0.19425271014249337],[119,110,64,-0.14659549106979713],[119,110,65,-0.12676442780638053],[119,110,66,-0.0731649002566092],[119,110,67,-0.044366509256805166],[119,110,68,-0.0448461994637481],[119,110,69,-0.05265400175699565],[119,110,70,-0.07518209541953758],[119,110,71,-0.12334362331765777],[119,110,72,-0.12855681236470837],[119,110,73,-0.10947031040172181],[119,110,74,-0.13554012593266265],[119,110,75,-0.1956620391211256],[119,110,76,-0.18007785391193262],[119,110,77,-0.15861173417686034],[119,110,78,-0.17667458834102265],[119,110,79,-0.19596790602152522],[119,111,64,-0.14792729029127752],[119,111,65,-0.12799894534838668],[119,111,66,-0.07369137360840555],[119,111,67,-0.04444873043424045],[119,111,68,-0.04492647390448156],[119,111,69,-0.052904839275388735],[119,111,70,-0.07585530625475155],[119,111,71,-0.1250088417471426],[119,111,72,-0.13038395795140484],[119,111,73,-0.11050796071211637],[119,111,74,-0.13651499263049097],[119,111,75,-0.19749938001755785],[119,111,76,-0.18210256867416677],[119,111,77,-0.16059815966291263],[119,111,78,-0.17858857076788529],[119,111,79,-0.197637212153794],[119,112,64,-0.1492424816201158],[119,112,65,-0.12922033159832833],[119,112,66,-0.07421497547141666],[119,112,67,-0.04453248131538232],[119,112,68,-0.0450054622032385],[119,112,69,-0.053155283619596025],[119,112,70,-0.07652617788842363],[119,112,71,-0.12666315437992268],[119,112,72,-0.13219787580871106],[119,112,73,-0.11153179159102783],[119,112,74,-0.1374660459634663],[119,112,75,-0.1993044673589335],[119,112,76,-0.18410328149772232],[119,112,77,-0.16256398299489808],[119,112,78,-0.18046589791834305],[119,112,79,-0.1992588779308245],[119,113,64,-0.1505398711594989],[119,113,65,-0.13042740412766965],[119,113,66,-0.07473545614110322],[119,113,67,-0.04461797323149598],[119,113,68,-0.04508335543758682],[119,113,69,-0.05340565699188498],[119,113,70,-0.07719482711659022],[119,113,71,-0.1283055987005762],[119,113,72,-0.13399737035965992],[119,113,73,-0.11254116131481565],[119,113,74,-0.13839227036087665],[119,113,75,-0.2010754742722423],[119,113,76,-0.18607838672317376],[119,113,77,-0.1645076010728418],[119,113,78,-0.1823047331337934],[119,113,79,-0.2008312216203516],[119,114,64,-0.15181828515223258],[119,114,65,-0.1316189991655065],[119,114,66,-0.07525257854773129],[119,114,67,-0.04470543020145248],[119,114,68,-0.045160364391136736],[119,114,69,-0.05365629924118736],[119,114,70,-0.07786138513313863],[119,114,71,-0.12993522064046617],[119,114,72,-0.13578125223230475],[119,114,73,-0.11353544740315236],[119,114,74,-0.13929268921449334],[119,114,75,-0.20281060965639527],[119,114,76,-0.18802629589071349],[119,114,77,-0.16642742602645177],[119,114,78,-0.1841032879222941],[119,114,79,-0.20235263428796826],[119,115,64,-0.15307657156559],[119,115,65,-0.13279397322048034],[119,115,66,-0.07576611821429122],[119,115,67,-0.0447950880727045],[119,115,68,-0.04523671879284713],[119,115,69,-0.05390756671464839],[119,115,70,-0.07852599665469431],[119,115,71,-0.13155107587691728],[119,115,72,-0.1375483401158337],[119,115,73,-0.1145140473961817],[119,115,74,-0.14016636642940866],[119,115,75,-0.2045081211515423],[119,115,76,-0.18994544010799144],[119,115,77,-0.16832188769503725],[119,115,78,-0.18585982532201725],[119,115,79,-0.20382158293423464],[119,116,64,-0.1543134696537998],[119,116,65,-0.13395107112756569],[119,116,66,-0.07627572806002933],[119,116,67,-0.04488705692583544],[119,116,68,-0.045312528222667695],[119,116,69,-0.05415969118420512],[119,116,70,-0.0791886775392294],[119,116,71,-0.13315208807877493],[119,116,72,-0.13929731798897887],[119,116,73,-0.11547623338353698],[119,116,74,-0.1410122601120102],[119,116,75,-0.2061661486867228],[119,116,76,-0.19183412144291354],[119,116,77,-0.17018928355020055],[119,116,78,-0.18757250903945816],[119,116,79,-0.20523645776113936],[119,117,64,-0.15552743202946367],[119,117,65,-0.13508874595943207],[119,117,66,-0.07678075440529511],[119,117,67,-0.04498113401304635],[119,117,68,-0.04538759286673735],[119,117,69,-0.05441258794719499],[119,117,70,-0.07984912091122806],[119,117,71,-0.13473685501861588],[119,117,72,-0.14102653955138975],[119,117,73,-0.11642095302801375],[119,117,74,-0.1418290220417473],[119,117,75,-0.20778252315409362],[119,117,76,-0.19369030879425797],[119,117,77,-0.17202757241042044],[119,117,78,-0.1892391955994503],[119,117,79,-0.2065953616920874],[119,118,64,-0.15671688272491924],[119,118,65,-0.13620542006524344],[119,118,66,-0.07728049925504384],[119,118,67,-0.04507706814342519],[119,118,68,-0.045461670888424816],[119,118,69,-0.05466612574056786],[119,118,70,-0.08050697031848102],[119,118,71,-0.13630392696705657],[119,118,72,-0.14273431017552038],[119,118,73,-0.11734711331131241],[119,118,74,-0.1426152850586829],[119,118,75,-0.20935505824386072],[119,118,76,-0.19551193217660048],[119,118,77,-0.173834671772607],[119,118,78,-0.19085773520423313],[119,118,79,-0.20789641370266312],[119,119,64,-0.1578802619828106],[119,119,65,-0.13729953043086285],[119,119,66,-0.07777426448450096],[119,119,67,-0.045174603538659194],[119,119,68,-0.04553452281410164],[119,119,69,-0.05492017122731707],[119,119,70,-0.08116186502340351],[119,119,71,-0.13785185480121614],[119,119,72,-0.14441893614007445],[119,119,73,-0.11825362909575862],[119,119,74,-0.14336971279208696],[119,119,75,-0.2108816022054686],[119,119,76,-0.1972969345452478],[119,119,77,-0.17560851026040383],[119,119,78,-0.19242602519472235],[119,119,79,-0.20913780227962833],[119,120,64,-0.15901602870924653],[119,120,65,-0.1383695312157286],[119,120,66,-0.07826135271639652],[119,120,67,-0.045273479885451565],[119,120,68,-0.04560591159857139],[119,120,69,-0.05517458866434933],[119,120,70,-0.08181343998257584],[119,120,71,-0.13937919232035434],[119,120,72,-0.1460787275817295],[119,120,73,-0.11913942488531158],[119,120,74,-0.14409100205167322],[119,120,75,-0.21236004179114937],[119,120,76,-0.19904327535343722],[119,120,77,-0.17734703130799898],[119,120,78,-0.19394201414954185],[119,120,79,-0.2103177889563809],[119,121,64,-0.16012266294359986],[119,121,65,-0.13941389631000733],[119,121,66,-0.07874106823051007],[119,121,67,-0.045373432421420896],[119,121,68,-0.045675602701855514],[119,121,69,-0.055429239581817925],[119,121,70,-0.08246132584168087],[119,121,71,-0.14088449858730306],[119,121,72,-0.14771200148008978],[119,121,73,-0.12000343660152447],[119,121,74,-0.14477788519177412],[119,121,75,-0.2137883061856692],[119,121,76,-0.20074893414463882],[119,121,77,-0.17904819687660575],[119,121,78,-0.19540370590958808],[119,121,79,-0.21143471170544714],[119,122,64,-0.1611986683381658],[119,122,65,-0.14043112190457344],[119,122,66,-0.07921271790300154],[119,122,67,-0.045474192054124674],[119,122,68,-0.045743364176688034],[119,122,69,-0.055683982475176655],[119,122,70,-0.08310514894695582],[119,122,71,-0.14236634029030062],[119,122,72,-0.14931708466861995],[119,122,73,-0.12084461336991156],[119,122,74,-0.1454291324408963],[119,122,75,-0.21516437091096657],[119,122,76,-0.20241191417119456],[119,122,77,-0.1807099911941349],[119,122,78,-0.19680916351608635],[119,122,79,-0.21248698817722347],[119,123,64,-0.1622425746408642],[119,123,65,-0.14141972906632966],[119,123,66,-0.07967561217293079],[119,123,67,-0.04557548551278206],[119,123,68,-0.04580896676609555],[119,123,69,-0.055938672511234286],[119,123,70,-0.08374453137425536],[119,123,71,-0.14382329411971942],[119,123,72,-0.15089231686413565],[119,123,73,-0.12166191931209867],[119,123,74,-0.14604355418922169],[119,123,75,-0.2164862616944015],[119,123,76,-0.20403024603032105],[119,123,77,-0.18233042450839138],[119,123,78,-0.1981565130503478],[119,123,79,-0.21347311877471473],[119,124,64,-0.1632529401741026],[119,124,65,-0.14237826631132808],[119,124,66,-0.08012906603325849],[119,124,67,-0.045677035532153014],[119,124,68,-0.04587218401041748],[119,124,69,-0.05619316124946415],[119,124,70,-0.08437909097677486],[119,124,71,-0.14525394915404888],[119,124,72,-0.15243605370725133],[119,124,73,-0.12245433533904139],[119,124,74,-0.14662000322671093],[119,124,75,-0.21775205828933136],[119,124,76,-0.20560199130828505],[119,124,77,-0.18390753684394373],[119,124,78,-0.199443947363699],[119,124,79,-0.21439168955454582],[119,125,64,-0.16422835430291394],[119,125,65,-0.1433053121681419],[119,125,66,-0.08057240004355407],[119,125,67,-0.045778561067967585],[119,125,68,-0.04593279236315007],[119,125,69,-0.05644729637984919],[119,125,70,-0.08500844145249399],[119,125,71,-0.1466569092494782],[119,125,72,-0.1539466698061116],[119,125,73,-0.12322086094057597],[119,125,74,-0.14715737692462547],[119,125,75,-0.21895989823681242],[119,125,76,-0.20712524622341175],[119,125,77,-0.1854394017527229],[119,125,78,-0.2006697296864365],[119,125,79,-0.215241374945189],[119,126,64,-0.16516743988550514],[119,126,65,-0.14419947772398437],[119,126,66,-0.08100494136159272],[119,126,67,-0.045879777543229416],[119,126,68,-0.045990571315024986],[119,126,69,-0.05670092147854491],[119,126,70,-0.08563219243235937],[119,126,71,-0.14803079542733918],[119,126,72,-0.15542256177562594],[119,126,73,-0.12396051596653884],[119,126,74,-0.14765461935348692],[119,126,75,-0.2201079805573654],[119,126,76,-0.20859814525847828],[119,126,77,-0.18692413004831598],[119,126,78,-0.20183219710502182],[119,126,79,-0.21602094027396448],[119,127,64,-0.16606885569931304],[119,127,65,-0.14505940914603194],[119,127,66,-0.08142602479089954],[119,127,67,-0.045980397124581386],[119,127,68,-0.0460453035256931],[119,127,69,-0.05695387578258684],[119,127,70,-0.08624994959016383],[119,127,71,-0.149374248253626],[119,127,72,-0.15686215126434283],[119,127,73,-0.12467234239463444],[119,127,74,-0.14811072333061406],[119,127,75,-0.22119456936180873],[119,127,76,-0.210018864772874],[119,127,77,-0.1883598735138171],[119,127,78,-0.20292976389711503],[119,127,79,-0.2167292440950194],[119,128,64,-0.1669312988357508],[119,128,65,-0.1458837901705126],[119,128,66,-0.08183499384128687],[119,128,67,-0.04608012902787947],[119,128,68,-0.04609677496243399],[119,128,69,-0.05720599398488606],[119,128,70,-0.08686131477506125],[119,128,71,-0.15068593020480786],[119,128,72,-0.15826388796108581],[119,128,73,-0.12535540608026288],[119,128,74,-0.14852473239064398],[119,128,75,-0.22221799737039202],[119,128,76,-0.21138562658488536],[119,128,77,-0.1897448285731076],[119,128,78,-0.20396092471452612],[119,128,79,-0.21736524031121257],[119,129,64,-0.16775350705687367],[119,129,65,-0.1466713445521854],[119,129,66,-0.08223120179937579],[119,129,67,-0.04617867985202681],[119,129,68,-0.046144775045316555],[119,129,69,-0.05745710605072026],[119,129,70,-0.08746588616759796],[119,129,71,-0.15196452801414703],[119,129,72,-0.1596262525734569],[119,129,73,-0.1260087984835281],[119,129,74,-0.1488957426726711],[119,129,75,-0.22317666932967253],[119,129,76,-0.21269670151440742],[119,129,77,-0.19107723991542558],[119,129,78,-0.20492425760463134],[119,129,79,-0.21792798008354464],[119,130,64,-0.16853426110722364],[119,130,65,-0.14742083846687987],[119,130,66,-0.08261401280600325],[119,130,67,-0.0462757539400008],[119,130,68,-0.046189096798206056],[119,130,69,-0.05770703705686369],[119,130,70,-0.08806325846006599],[119,130,71,-0.15320875499273856],[119,130,72,-0.16094775977031078],[119,130,73,-0.12663163836863975],[119,130,74,-0.14922290471783856],[119,130,75,-0.22406906531675305],[119,130,76,-0.21395041287632163],[119,130,77,-0.1923554040630975],[119,130,78,-0.20581842686129356],[119,130,79,-0.21841661352248054],[119,131,64,-0.1692723869742597],[119,131,65,-0.14813108285994012],[119,131,66,-0.08298280293743447],[119,131,67,-0.04637105376596445],[119,131,68,-0.04622953700506538],[119,131,69,-0.05795560705448903],[119,131,70,-0.08865302306193197],[119,131,71,-0.15441735331953124],[119,131,72,-0.16222696108035767],[119,131,73,-0.12722307347100198],[119,131,74,-0.1495054251715473],[119,131,75,-0.22489374392085265],[119,131,76,-0.2151451399148461],[119,131,77,-0.19357767287238983],[119,131,78,-0.20664218569687942],[119,131,79,-0.21883039115629208],[119,132,64,-0.16996675809085596],[119,132,65,-0.1488009357335077],[119,132,66,-0.08333696128723725],[119,132,67,-0.04646428034724913],[119,132,68,-0.04626589637098267],[119,132,69,-0.058202630956912124],[119,132,70,-0.08923476833103636],[119,132,71,-0.15558909629466078],[119,132,72,-0.16346244773913174],[119,132,73,-0.12778228212732504],[119,132,74,-0.14974256838470365],[119,132,75,-0.2256493452924412],[119,132,76,-0.21627932116918377],[119,132,77,-0.19474245695753856],[119,132,78,-0.20739437872754835],[119,132,79,-0.21916866517231962],[119,133,64,-0.17061629747347404],[119,133,65,-0.149429304365734],[119,133,66,-0.08367589104565032],[119,133,67,-0.04655513367990427],[119,133,68,-0.046297979687354524],[119,133,69,-0.05844791845317595],[119,133,70,-0.08980807983114336],[119,133,71,-0.1567227905504603],[119,133,72,-0.164652853476625],[119,133,73,-0.1283084748641514],[119,133,74,-0.1499336579087187],[119,133,75,-0.22633459405050288],[119,133,76,-0.217351457760852],[119,133,77,-0.19584822902811697],[119,133,78,-0.20807394426453424],[119,133,79,-0.21943089042778868],[119,134,64,-0.1712199797897923],[119,134,65,-0.15001514745521163],[119,134,66,-0.08399901057328789],[119,134,67,-0.04664331319645526],[119,134,68,-0.046325596000681916],[119,134,69,-0.05869127394842961],[119,134,70,-0.09037254061636986],[119,134,71,-0.15781727821463082],[119,134,72,-0.1657968572380337],[119,134,73,-0.128800895940298],[119,134,74,-0.15007807787932856],[119,134,75,-0.22694830203890193],[119,134,76,-0.21836011659322238],[119,134,77,-0.19689352713009264],[119,134,78,-0.20867991640479874],[119,134,79,-0.21961662522764694],[119,135,64,-0.17177683334970228],[119,135,65,-0.15055747718407267],[119,135,66,-0.08430575446599556],[119,135,67,-0.04672851824441786],[119,135,68,-0.046348558784427105],[119,135,69,-0.058932496531976554],[119,135,70,-0.09092773154292863],[119,135,71,-0.15887143902016418],[119,135,72,-0.16689318583021165],[119,135,73,-0.12925882483880846],[119,135,74,-0.15017527428460778],[119,135,75,-0.22748937092317761],[119,135,76,-0.21930393345390728],[119,135,77,-0.19787695778111145],[119,135,78,-0.2092114269150564],[119,135,79,-0.21972553186765717],[119,136,64,-0.17228594201379777],[119,136,65,-0.15105536119344662],[119,136,66,-0.08459557460768792],[119,136,67,-0.04681044858404841],[119,136,68,-0.04636668611338694],[119,136,69,-0.05917137997378146],[119,136,70,-0.09147323160850318],[119,136,71,-0.15988419235670084],[119,136,72,-0.1679406164865696],[119,136,73,-0.1296815777041148],[119,136,74,-0.15022475611291822],[119,136,75,-0.22795679461956053],[119,136,76,-0.22018161601081504],[119,136,77,-0.19879719899075796],[119,136,78,-0.2096677069038071],[119,136,79,-0.21975737694176367],[119,137,64,-0.17274644701365388],[119,137,65,-0.15150792446517566],[119,137,66,-0.08486794120800496],[119,137,67,-0.04688880490374023],[119,137,68,-0.04637980084004371],[119,137,69,-0.05940771275015264],[119,137,70,-0.0920086183194991],[119,137,71,-0.16085449925818357],[119,137,72,-0.16893797934338942],[119,137,73,-0.13006850872025133],[119,137,74,-0.15022609637688505],[119,137,75,-0.22834966154843267],[119,137,76,-0.22099194669289124],[119,137,77,-0.19965300315681897],[119,137,78,-0.2100480882767069],[119,137,79,-0.21971203141355614],[119,138,64,-0.1731575486784384],[119,138,65,-0.15191435110396123],[119,138,66,-0.08512234382165891],[119,138,67,-0.04696328935142034],[119,138,68,-0.046387730772367686],[119,138,69,-0.05964127809922832],[119,138,70,-0.09253346808630392],[119,138,71,-0.1617813643218088],[119,138,72,-0.16988415982073143],[119,138,73,-0.13041901142610668],[119,138,74,-0.15017893300988222],[119,138,75,-0.22866715670495955],[119,138,76,-0.22173378544681416],[119,138,77,-0.2004431998288646],[119,138,78,-0.2103520049712814],[119,138,79,-0.21958947045243804],[119,139,64,-0.17351850806261093],[119,139,65,-0.15227388601437117],[119,139,66,-0.08535829234636005],[119,139,67,-0.0470336060802242],[119,139,68,-0.046390308852534846],[119,139,69,-0.059871854106785645],[119,139,70,-0.09304735664655933],[119,139,71,-0.16266383755342775],[119,139,72,-0.1707781009013394],[119,139,73,-0.1307325199638411],[119,139,74,-0.1500829696318833],[119,139,75,-0.2289085635401155],[119,139,76,-0.22240607236115728],[119,139,77,-0.20116669833076148],[119,139,78,-0.210578993967666],[119,139,79,-0.21938977303586005],[119,140,64,-0.17382864846972165],[119,140,65,-0.15258583646741705],[119,140,66,-0.08557531799625727],[119,140,67,-0.04709946180668074],[119,140,68,-0.0463873733360384],[119,140,69,-0.06009921382280684],[119,140,70,-0.0935498595163709],[119,140,71,-0.16350101613478105],[119,140,72,-0.1716188053012522],[119,140,73,-0.131008510256784],[119,140,74,-0.1499379761819262],[119,140,75,-0.22907326564585637],[119,140,76,-0.2230078301498405],[119,140,77,-0.20182249023410873],[119,140,78,-0.2107286960727813],[119,140,79,-0.21911312131978],[119,141,64,-0.17408735686760443],[119,141,65,-0.15284957355174567],[119,141,66,-0.08577297424789139],[119,141,67,-0.047160566379596765],[119,141,68,-0.046378767970682896],[119,141,69,-0.06032312540913004],[119,141,70,-0.09404055246923385],[119,141,71,-0.16429204610810558],[119,141,72,-0.17240533752608467],[119,141,73,-0.13124650111330158],[119,141,74,-0.14974378941486802],[119,141,75,-0.2291607482387679],[119,141,76,-0.22353816648702773],[119,141,77,-0.20240965167494993],[119,141,78,-0.21080085647604574],[119,141,79,-0.21875979978023313],[119,142,64,-0.17429408519051232],[119,142,65,-0.15306453350477103],[119,142,66,-0.08595083775569749],[119,142,67,-0.04721663335776351],[119,142,68,-0.04636434217493586],[119,142,69,-0.060543352318393966],[119,142,70,-0.09451901204235168],[119,142,71,-0.16503612397389883],[119,142,72,-0.1731368258072764],[119,142,73,-0.13144605525331463],[119,142,74,-0.14950031326048452],[119,142,75,-0.22917059943706408],[119,142,76,-0.2239962761859654],[119,142,77,-0.2029273455065217],[119,142,78,-0.2107953250754411],[119,142,79,-0.2183301941296489],[119,143,64,-0.17444835152406196],[119,143,65,-0.15323021891943261],[119,143,66,-0.08610850923417973],[119,143,67,-0.047267380594588626],[119,143,68,-0.04634395121513474],[119,143,69,-0.06075965350438392],[119,143,70,-0.09498481606989462],[119,143,71,-0.16573249819783717],[119,143,72,-0.17381246391292107],[119,143,73,-0.13160678025435593],[119,143,74,-0.1492075190434066],[119,143,75,-0.22910251132642317],[119,143,76,-0.22438144321465245],[119,143,77,-0.20337482328123463],[119,143,78,-0.21071205657345835],[119,143,79,-0.21782479001225644],[119,144,64,-0.17454974116916241],[119,144,65,-0.1533461998226186],[119,144,66,-0.0862456143039584],[119,144,67,-0.04731253082771552],[119,144,68,-0.04631745638104226],[119,144,69,-0.06097178366376434],[119,144,70,-0.09543754424262059],[119,144,71,-0.1663804706230831],[119,144,72,-0.17443151282814254],[119,144,73,-0.1317283294142734],[119,144,74,-0.14886544556280665],[119,144,75,-0.22895628081076375],[119,144,76,-0.22469304254165667],[119,144,77,-0.20375142705554264],[119,144,78,-0.21055111034316148],[119,144,79,-0.21724417148361616],[119,145,64,-0.17459790758141192],[119,145,65,-0.15341211462163626],[119,145,66,-0.08636180429897118],[119,145,67,-0.04735181227166352],[119,145,68,-0.04628472515924987],[119,145,69,-0.06117949350906861],[119,145,70,-0.09587677869316176],[119,145,71,-0.1669793977844834],[119,145,72,-0.1749933023003556],[119,145,73,-0.1318104025279046],[119,145,74,-0.1484741990311555],[119,145,75,-0.22873181024466918],[119,145,76,-0.22493054180581087],[119,145,77,-0.2040565910118363],[119,145,78,-0.21031265006531036],[119,145,79,-0.2165890192799828],[119,146,64,-0.17459257318279756],[119,146,65,-0.15342767091550302],[119,146,66,-0.0864567570322102],[119,146,67,-0.04738495921150033],[119,146,68,-0.04624563140393197],[119,146,69,-0.06138253007268898],[119,146,70,-0.09630210460614727],[119,146,71,-0.16752869212140023],[119,146,72,-0.17549723224512156],[119,146,73,-0.13185274657529283],[119,146,74,-0.14803395287181628],[119,146,75,-0.22842910784482057],[119,146,76,-0.22509350280399737],[119,146,77,-0.20428984289199412],[119,146,78,-0.2099969431381853],[119,146,79,-0.21586010888385673],[119,147,64,-0.174533530042873],[119,147,65,-0.1533926461682211],[119,147,66,-0.08653017751749129],[119,147,67,-0.04741171259555271],[119,147,68,-0.04620005550446331],[119,147,69,-0.06158063704149451],[119,147,70,-0.09671311085220402],[119,147,71,-0.16802782308620187],[119,147,72,-0.17594277400871033],[119,147,73,-0.13185515631924347],[119,147,74,-0.14754494737564935],[119,147,75,-0.2280482878784574],[119,147,76,-0.22518158279172862],[119,147,77,-0.20445080523776735],[119,147,78,-0.20960435986243436],[119,147,79,-0.21505830839266205],[119,148,64,-0.17442064042694277],[119,148,65,-0.15330688824157998],[119,148,66,-0.08658179864485334],[119,148,67,-0.04743182062513997],[119,148,68,-0.04614788454940976],[119,148,69,-0.0617735551215726],[119,148,70,-0.0971093906447586],[119,148,71,-0.16847631814571767],[119,148,72,-0.17632947148389314],[119,148,73,-0.13181747481028397],[119,148,74,-0.14700748921723525],[119,148,75,-0.2275895706275151],[119,148,76,-0.2251945355917228],[119,148,77,-0.2045391964337021],[119,148,78,-0.20913537240395205],[119,148,79,-0.21418457619809994],[119,149,64,-0.17425383720915996],[119,149,65,-0.15317031578545995],[119,149,66,-0.08661138180732326],[119,149,67,-0.04744503933932711],[119,149,68,-0.04608901248641463],[119,149,69,-0.0619610224324682],[119,149,70,-0.09749054221842254],[119,149,71,-0.16887376367323578],[119,149,72,-0.1766569420759011],[119,149,73,-0.13173959379733652],[119,149,74,-0.146421950831745],[119,149,75,-0.22705328212778986],[119,149,76,-0.22513221250622972],[119,149,77,-0.20455483154887683],[119,149,78,-0.20859055353844966],[119,149,79,-0.2132399584842526],[119,150,64,-0.17403312414879718],[119,150,65,-0.1529829184839974],[119,150,66,-0.08661871747689989],[119,150,67,-0.04745113319268973],[119,150,68,-0.04602334027750168],[119,150,69,-0.062142774930169675],[119,150,70,-0.09785616952763924],[119,150,71,-0.16921980572894849],[119,150,72,-0.17692487751594096],[119,150,73,-0.13162145404268727],[119,150,74,-0.14578876965389376],[119,150,75,-0.22643985368311365],[119,150,76,-0.2249945630293916],[119,150,77,-0.20449762297430973],[119,150,78,-0.20797057518203454],[119,150,79,-0.2122255865530283],[119,151,64,-0.17375857602836234],[119,151,65,-0.15274475715642385],[119,151,66,-0.0866036257277652],[119,151,67,-0.04744987562410409],[119,151,68,-0.04595077604932775],[119,151,69,-0.062318546857959296],[119,151,70,-0.09820588296411968],[119,151,71,-0.1695141507270019],[119,151,72,-0.17713304452006445],[119,151,73,-0.13146304554008784],[119,151,74,-0.1451084472208394],[119,151,75,-0.22574982115522982],[119,151,76,-0.22478163535651796],[119,151,77,-0.20436758085348009],[119,151,78,-0.20727620671272295],[119,151,79,-0.21114267398600098],[119,152,64,-0.1734303386525844],[119,152,65,-0.15245596371178777],[119,152,66,-0.08656595670486389],[119,152,67,-0.047441049614590405],[119,152,68,-0.045871235237917425],[119,152,69,-0.062488071224128104],[119,152,70,-0.09853930009149893],[119,152,71,-0.16975656598765962],[119,152,72,-0.1772812852916715],[119,152,73,-0.13126440763511174],[119,152,74,-0.1443815481412785],[119,152,75,-0.2249838240307005],[119,152,76,-0.22449357668771497],[119,152,77,-0.20416481330401645],[119,152,78,-0.20650831308843384],[119,152,79,-0.20999251365213756],[119,153,64,-0.17304862870771784],[119,153,65,-0.15211674095722003],[119,153,66,-0.08650559103615854],[119,153,67,-0.04742444823226918],[119,153,68,-0.045784640727426724],[119,153,69,-0.06265108030542907],[119,153,70,-0.0988560463955148],[119,153,71,-0.1699468801733712],[119,153,72,-0.17736951786636698],[119,153,73,-0.1310256290471586],[119,153,74,-0.14360869893339906],[119,153,75,-0.2241426042668693],[119,153,76,-0.22413063332393623],[119,153,77,-0.2038895264292257],[119,153,78,-0.20566785276758556],[119,153,79,-0.20877647457129953],[119,154,64,-0.17261373348099432],[119,154,65,-0.15172736225982977],[119,154,66,-0.08642244018702197],[119,154,67,-0.04739987516251883],[119,154,68,-0.04569092298247701],[119,154,69,-0.06280730617501318],[119,154,70,-0.09915575604788544],[119,154,71,-0.17008498360784008],[119,154,72,-0.17739773629833197],[119,154,73,-0.13074684779276607],[119,154,74,-0.14279058673473047],[119,154,75,-0.22322700491956032],[119,154,76,-0.22369315055411468],[119,154,77,-0.20354202411874361],[119,154,78,-0.20475587543896576],[119,154,79,-0.20749599864373158],[119,155,64,-0.17212601044044631],[119,155,65,-0.15128817106274287],[119,155,66,-0.08631644675539664],[119,155,67,-0.04736714522147145],[119,155,68,-0.04559002017362264],[119,155,69,-0.06295648125349088],[119,155,70,-0.09943807268198337],[119,155,71,-0.17017082847753878],[119,155,72,-0.17736601068787686],[119,155,73,-0.13042825101018943],[119,155,74,-0.1419279578873052],[119,155,75,-0.22223796855584374],[119,155,76,-0.22318157233266947],[119,155,77,-0.20312270763824433],[119,155,78,-0.2037735195680906],[119,155,79,-0.20615259725609422],[119,156,64,-0.17158588667575103],[119,156,65,-0.15079958025625248],[119,156,66,-0.0861875847065314],[119,156,67,-0.047326084851028204],[119,156,68,-0.045481878295512576],[119,156,69,-0.06309833888162796],[119,156,70,-0.09970265017825983],[119,156,71,-0.17020442891537954],[119,156,72,-0.17727448705025117],[119,156,73,-0.13007007468546564],[119,156,74,-0.14102161640192415],[119,156,75,-0.22117653545587454],[119,156,76,-0.22259644074731133],[119,156,77,-0.2026320750087548],[119,156,78,-0.20272200976775687],[119,156,79,-0.20474784777482238],[119,157,64,-0.17099385820110896],[119,157,65,-0.15026207140545556],[119,157,66,-0.08603585954626887],[119,157,67,-0.047276532593626734],[119,157,68,-0.04536645127731483],[119,157,69,-0.06323261391308077],[119,157,70,-0.09994915345730139],[119,157,71,-0.170185860966606],[119,157,72,-0.1771233870262863],[119,157,73,-0.12967260328046853],[119,157,74,-0.14007242230564482],[119,157,75,-0.2200438416084128],[119,157,76,-0.22193839527770037],[119,157,77,-0.202070720176769],[119,157,78,-0.2016026540009613],[119,157,79,-0.2032833899378299],[119,158,64,-0.17035048912160608],[119,158,65,-0.14967619383620323],[119,158,66,-0.0858613084320598],[119,158,67,-0.04721833954506664],[119,158,68,-0.04524370108499096],[119,158,69,-0.06335904332547156],[119,158,70,-0.1001772592783004],[119,158,71,-0.17011526243726702],[119,158,72,-0.17691300743589647],[119,158,73,-0.1292361692637416],[119,158,74,-0.13908128987697285],[119,158,75,-0.21884111650529356],[119,158,76,-0.2212081718461619],[119,158,77,-0.20143933197699485],[119,158,78,-0.2004168406248137],[119,158,79,-0.20176092215575622],[119,159,64,-0.16965641066489373],[119,159,65,-0.1490425635816185],[119,159,66,-0.08566400022105822],[119,159,67,-0.04715136978375931],[119,159,68,-0.04511359781500873],[119,159,69,-0.06347736684799317],[119,159,70,-0.10038665704062022],[119,159,71,-0.1699928326259352],[119,159,72,-0.17664371967590364],[119,159,73,-0.1287611525451618],[119,159,74,-0.1380491857735514],[119,159,75,-0.21756968074071792],[119,159,76,-0.22040660166231274],[119,159,77,-0.2007386928901995],[119,159,78,-0.19916603528446247],[119,159,79,-0.20018219773406826],[119,160,64,-0.16891232008039314],[119,160,65,-0.14836186219182546],[119,160,66,-0.0854440354548313],[119,160,67,-0.04707550077483765],[119,160,68,-0.04497611977908714],[119,160,69,-0.06358732760363507],[119,160,70,-0.10057704958607501],[119,160,71,-0.16981883193966169],[119,160,72,-0.17631596896412113],[119,160,73,-0.12824797981575597],[119,160,74,-0.13697712705742263],[119,160,75,-0.21623094342179353],[119,160,76,-0.21953460986405646],[119,160,77,-0.19996967759922726],[119,160,78,-0.19785177766641734],[119,160,79,-0.19854902102741318],[119,161,64,-0.16811897940867107],[119,161,65,-0.1476348354100023],[119,161,66,-0.08520154628044345],[119,161,67,-0.04699062374766237],[119,161,68,-0.044831253579597094],[119,161,69,-0.06368867276404004],[119,161,70,-0.10074815399945572],[119,161,71,-0.16959358139543834],[119,161,72,-0.17593027343206305],[119,161,73,-0.12769712379427342],[119,161,74,-0.1358661791232751],[119,161,75,-0.21482639939739553],[119,161,76,-0.21859321395810913],[119,161,77,-0.19913325134692886],[119,161,78,-0.19647567812101704],[119,161,79,-0.1968632435376786],[119,162,64,-0.16727721412397084],[119,162,65,-0.1468622917182287],[119,162,66,-0.08493669630784091],[119,162,67,-0.046896644045332],[119,162,68,-0.044678994175237546],[119,162,69,-0.06378115421490885],[119,162,70,-0.10089970240478591],[119,162,71,-0.16931746200876518],[119,162,72,-0.1754872230690912],[119,162,73,-0.12710910238237022],[119,162,74,-0.13471745353531092],[119,162,75,-0.21335762631290764],[119,162,76,-0.21758352206379225],[119,162,77,-0.19823046810031203],[119,162,78,-0.19503941416406376],[119,162,79,-0.19512675996718803],[119,163,64,-0.1663879116532759],[119,163,65,-0.14604510075701216],[119,163,66,-0.08464968040366992],[119,163,67,-0.0467934814448951],[119,163,68,-0.044519344936615635],[119,163,69,-0.06386452922978134],[119,163,70,-0.10103144275471149],[119,163,71,-0.16899091407117947],[119,163,72,-0.17498747852121382],[119,163,73,-0.12648447773050508],[119,163,74,-0.13353210577863397],[119,163,75,-0.2118262814989533],[119,163,76,-0.21650673096447653],[119,163,77,-0.19726246852584106],[119,163,78,-0.19354472686790997],[119,163,79,-0.1933415042384127],[119,164,64,-0.1654520197756726],[119,164,65,-0.1451841916227843],[119,164,66,-0.08434072442187986],[119,164,67,-0.04668107044708081],[119,164,68,-0.04435231769139637],[119,164,69,-0.06393856114997258],[119,164,70,-0.10114313961040278],[119,164,71,-0.16861443631891113],[119,164,72,-0.1744317697481877],[119,164,73,-0.12582385521692127],[119,164,74,-0.13231133293130778],[119,164,75,-0.21023409870275556],[119,164,76,-0.21536412397170046],[119,164,77,-0.19623047778141353],[119,164,78,-0.19199341715253065],[119,164,79,-0.1915094454915081],[119,165,64,-0.1644705449061059],[119,165,65,-0.1442805510479987],[119,165,66,-0.08401008487163977],[119,165,67,-0.0465593605344514],[119,165,68,-0.04417793275868065],[119,165,69,-0.06400302006836771],[119,165,70,-0.10123457490931217],[119,165,71,-0.16818858499511938],[119,165,72,-0.173820894542974],[119,165,73,-0.1251278823423152],[119,165,74,-0.13105637126341432],[119,165,75,-0.20858288467120062],[119,165,76,-0.2141570686075579],[119,165,77,-0.19513580313110163],[119,165,78,-0.19038734198728455],[119,165,79,-0.18963258407083391],[119,166,64,-0.16344455026799126],[119,166,65,-0.14333522146884609],[119,166,66,-0.08365804852330488],[119,166,67,-0.04642831639698433],[119,166,68,-0.043996218972286054],[119,166,69,-0.06405768351470724],[119,166,70,-0.1013055487180678],[119,166,71,-0.1677139728083806],[119,166,72,-0.17315571691794732],[119,166,73,-0.1243972475430107],[119,166,74,-0.12976849376964392],[119,166,75,-0.20687451559514952],[119,166,76,-0.21288701411155156],[119,166,77,-0.19397983138929145],[119,166,78,-0.18872841051420441],[119,166,79,-0.18771294751143136],[119,167,64,-0.16237515395948476],[119,167,65,-0.14234929898595006],[119,167,66,-0.08328493195338434],[119,167,67,-0.04628791812423043],[119,167,68,-0.04380721369264523],[119,167,69,-0.06410233713998743],[119,167,70,-0.10135587996782103],[119,167,71,-0.16719126779043647],[119,167,72,-0.17243716536269088],[119,167,73,-0.12363267892572041],[119,167,74,-0.1284490076421274],[119,167,75,-0.20511093342497164],[119,167,76,-0.21155548877870417],[119,167,77,-0.19276402620142524],[119,167,78,-0.18701858010380906],[119,167,79,-0.18575258653625423],[119,168,64,-0.16126352691852217],[119,168,65,-0.14132393122372192],[119,168,66,-0.08289108102963659],[119,168,67,-0.046138161363280784],[119,168,68,-0.043610962807024596],[119,168,69,-0.06413677539752202],[119,168,70,-0.10138540716931432],[119,168,71,-0.1666211920563907],[119,168,72,-0.1716662309785051],[119,168,73,-0.12283494292714625],[119,168,74,-0.12709925169033587],[119,168,75,-0.20329414206762492],[119,168,76,-0.2101640971362365],[119,168,77,-0.19148992516902194],[119,168,78,-0.18525985235444883],[119,168,79,-0.18375357107465018],[119,169,64,-0.16011089079208102],[119,169,65,-0.14026031509440023],[119,169,66,-0.0824768703376412],[119,169,67,-0.045979057441923044],[119,169,68,-0.04340752071781149],[119,169,69,-0.06416080221820944],[119,169,70,-0.10139398910495877],[119,169,71,-0.16600452047082564],[119,169,72,-0.17084396549513056],[119,169,73,-0.122004842901909],[119,169,74,-0.1257205937150354],[119,169,75,-0.2014262034760163],[119,169,76,-0.2087145169667079],[119,169,77,-0.19015913682718966],[119,169,78,-0.18345426904628412],[119,169,79,-0.1817179863123474],[119,170,64,-0.1589185157153626],[119,170,65,-0.13915969447304777],[119,170,66,-0.08204270255035805],[119,170,67,-0.045810633456462635],[119,170,68,-0.04319695031860957],[119,170,69,-0.0641742316775117],[119,170,70,-0.10138150549522477],[119,170,71,-0.1653420792235189],[119,170,72,-0.16997147917548122],[119,170,73,-0.12114321764245395],[119,170,74,-0.12431442784332708],[119,170,75,-0.19950923364161813],[119,170,76,-0.20720849618596077],[119,170,77,-0.18877333748325342],[119,170,78,-0.18160390806093205],[119,170,79,-0.17964792878282293],[119,171,64,-0.15768771800694456],[119,171,65,-0.13802335779012606],[119,171,66,-0.08158900774241808],[119,171,67,-0.045632932323847256],[119,171,68,-0.0429793229579398],[119,171,69,-0.06417688865166184],[119,171,70,-0.10134785763667377],[119,171,71,-0.1646347443186647],[119,171,72,-0.16904993861449993],[119,171,73,-0.12025093983479808],[119,171,74,-0.1228821718319495],[119,171,75,-0.19754539850169622],[119,171,76,-0.20564784958478108],[119,171,77,-0.1873342679256315],[119,171,78,-0.17971087927784185],[119,171,79,-0.17754550250963694],[119,172,64,-0.15641985778615153],[119,172,65,-0.13685263554846785],[119,172,66,-0.08111624265104088],[119,172,67,-0.045446012797836007],[119,172,68,-0.04275471839033947],[119,172,69,-0.0641686094606065],[119,172,70,-0.10129296900900554],[119,172,71,-0.16388343998171442],[119,172,72,-0.16808056443851357],[119,172,73,-0.11932891445412251],[119,172,74,-0.1214252643460108],[119,172,75,-0.19553690977266963],[119,172,76,-0.20403445544357757],[119,172,77,-0.1858437300124444],[119,172,78,-0.17777732045832884],[119,172,79,-0.17541281520887417],[119,173,64,-0.15511633651916942],[119,173,65,-0.1356488977717299],[119,173,66,-0.08062488988566455],[119,173,67,-0.045249949449084045],[119,173,68,-0.042523224714674124],[119,173,69,-0.06414924249518875],[119,173,70,-0.10121678584852188],[119,173,71,-0.16308913698811806],[119,173,72,-0.1670646289117123],[119,173,73,-0.11837807710436678],[119,173,74,-0.11994516222036825],[119,173,75,-0.19348602072137056],[119,173,76,-0.2023702520298465],[119,173,77,-0.18430358314974069],[119,173,78,-0.17580539312809235],[119,173,79,-0.17325197456043515],[119,174,64,-0.15377859450067188],[119,174,65,-0.13441355139165123],[119,174,66,-0.0801154570885742],[119,174,67,-0.04504483260917351],[119,174,68,-0.042284938299528854],[119,174,69,-0.06411864882612539],[119,174,70,-0.10111927768549486],[119,174,71,-0.1622528509184522],[119,174,72,-0.16600345345662834],[119,174,73,-0.11739939230614767],[119,174,74,-0.11844333771090239],[119,174,75,-0.19139502188616508],[119,174,76,-0.2006572339886111],[119,174,77,-0.18271574066960494],[119,174,78,-0.1737972784689206],[119,174,79,-0.17106508455649283],[119,175,64,-0.15240810827790474],[119,175,65,-0.13314803758159852],[119,175,66,-0.07958847604895988],[119,175,67,-0.044830768278732946],[119,175,68,-0.04203996369554996],[119,175,69,-0.06407670279235103],[119,175,70,-0.10100043784300021],[119,175,71,-0.16137564034458932],[119,175,72,-0.16489840609569897],[119,175,73,-0.11639385173743456],[119,175,74,-0.11692127574287807],[119,175,75,-0.18926623675999216],[119,175,76,-0.19889744863636913],[119,175,77,-0.18108216611868777],[119,175,78,-0.17175517323007158],[119,175,79,-0.16885424193494564],[119,176,64,-0.151006388024376],[119,176,65,-0.13185382904407414],[119,176,66,-0.07904450177299921],[119,176,67,-0.04460787799991192],[119,176,68,-0.041788413534622815],[119,176,69,-0.0640232925663174],[119,176,70,-0.1008602838948144],[119,176,71,-0.1604586049516551],[119,176,72,-0.16375089882113975],[119,176,73,-0.11536247243150224],[119,176,74,-0.11538047116355343],[119,176,75,-0.18710201744748808],[119,176,76,-0.19709299216941767],[119,176,77,-0.17940486946799103],[119,176,78,-0.16968128566959162],[119,176,79,-0.1666215327051876],[119,177,64,-0.1495749748704901],[119,177,65,-0.13053242726003303],[119,177,66,-0.07848411151275474],[119,177,67,-0.04437629869365617],[119,177,68,-0.04153040841584652],[119,177,69,-0.06395832069394745],[119,177,70,-0.10069885808014499],[119,177,71,-0.1595028836007433],[119,177,72,-0.16256238490059063],[119,177,73,-0.11430629493683556],[119,177,74,-0.11382242600616149],[119,177,75,-0.1849047403084499],[119,177,76,-0.19524600579777648],[119,177,77,-0.17768590325502437],[119,177,78,-0.16757783153562789],[119,177,79,-0.1643690287730561],[119,178,64,-0.14811543819858175],[119,178,65,-0.129185359707947],[119,178,66,-0.0779079037567794],[119,178,67,-0.044136182462313274],[119,178,68,-0.04126607677824478],[119,178,69,-0.06388170460694866],[119,178,70,-0.10051622767301253],[119,178,71,-0.15850965233742145],[119,178,72,-0.16133435612608144],[119,178,73,-0.11322638144369884],[119,178,74,-0.11224864677226883],[119,178,75,-0.18267680159986868],[119,178,76,-0.19335867181615243],[119,178,77,-0.17592735866962303],[119,178,78,-0.16544703009747427],[119,178,79,-0.16209878467126115],[119,179,64,-0.1466293729099512],[119,179,65,-0.12781417706068965],[119,179,66,-0.07731649718549549],[119,179,67,-0.04388769635825375],[119,179,68,-0.040995554760202106],[119,179,69,-0.06379337710528135],[119,179,70,-0.10031248530421556],[119,179,71,-0.15748012235114295],[119,179,72,-0.16006834001395964],[119,179,73,-0.11212381388214043],[119,179,74,-0.11066064173941383],[119,179,75,-0.1804206131287682],[119,179,76,-0.19143320962364233],[119,179,77,-0.17413136159490375],[119,179,78,-0.1632911002357653],[119,179,79,-0.15981283440102467],[119,180,64,-0.14511839667160584],[119,180,65,-0.12642045036838226],[119,180,66,-0.07671052959454713],[119,180,67,-0.043631022119339835],[119,180,68,-0.040718986045664644],[119,180,69,-0.06369328680768735],[119,180,70,-0.1000877492340004],[119,180,71,-0.15641553789085866],[119,180,72,-0.15876589696358248],[119,180,73,-0.11099969199630971],[119,180,74,-0.10905991830081734],[119,180,75,-0.1781385979280227],[119,180,76,-0.18947187170408253],[119,180,77,-0.17230006861499703],[119,180,78,-0.16111225660094497],[119,180,79,-0.15751318839017914],[119,181,64,-0.14358414715051035],[119,181,65,-0.12500576823541756],[119,181,66,-0.07609065678944577],[119,181,67,-0.043366355872177874],[119,181,68,-0.040436521697148266],[119,181,69,-0.06358139856823444],[119,181,70,-0.09984216357362058],[119,181,71,-0.15531717414210644],[119,181,72,-0.15742861738256525],[119,181,73,-0.10985513139994692],[119,181,74,-0.10744798034379766],[119,181,75,-0.17583318596724273],[119,181,76,-0.18747693957910408],[119,181,77,-0.1704356630012835],[119,181,78,-0.1589127058487362],[119,181,79,-0.15520183057235495],[119,182,64,-0.14202827924316888],[119,182,65,-0.12357173399986908],[119,182,66,-0.07545755145492851],[119,182,67,-0.04309390780421936],[119,182,68,-0.04014831997562995],[119,182,69,-0.06345769385694705],[119,182,70,-0.09957589845415442],[119,182,71,-0.15418633507095678],[119,182,72,-0.1560581187864369],[119,182,73,-0.1086912616179338],[119,182,74,-0.10582632567331948],[119,182,75,-0.17350680991063883],[119,182,76,-0.18545071974604901],[119,182,77,-0.1685403506888995],[119,182,78,-0.15669464296093238],[119,182,79,-0.1528807155913075],[119,183,64,-0.14045246230846356],[119,183,65,-0.12211996292356445],[119,183,66,-0.07481190200259963],[119,183,67,-0.04281390180593221],[119,183,68,-0.03985454614746488],[119,183,69,-0.0633221711027313],[119,183,70,-0.09928915014112168],[119,183,71,-0.15302435124024918],[119,183,72,-0.1546560428805949],[119,183,73,-0.10750922411883679],[119,183,74,-0.10419644348697979],[119,183,75,-0.1711619009336722],[119,183,76,-0.18339553961304686],[119,183,77,-0.16661635625536927],[119,183,78,-0.15446024765947236],[119,183,79,-0.15055176613391216],[119,184,64,-0.13885837741165524],[119,184,65,-0.12065207940104615],[119,184,66,-0.07415441140048509],[119,184,67,-0.04252657508435062],[119,184,68,-0.039555372278469815],[119,184,69,-0.06317484599688035],[119,184,70,-0.09898214109356371],[119,184,71,-0.1518325776035488],[119,184,72,-0.1532240526323899],[119,184,73,-0.10631017034331623],[119,184,74,-0.10255981190747254],[119,184,75,-0.1688008846100443],[119,184,76,-0.18131374344354853],[119,184,77,-0.16466591891315707],[119,184,78,-0.15221168092128387],[119,184,79,-0.1482168703947255],[119,185,64,-0.13724771458743415],[119,185,65,-0.11916971419559587],[119,185,66,-0.07348579598821683],[119,185,67,-0.04223217774943309],[119,185,68,-0.039250977015349624],[119,185,69,-0.06301575175559135],[119,185,70,-0.0986551199664544],[119,185,71,-0.15061239128228496],[119,185,72,-0.1517638293411582],[119,185,73,-0.10509525973326199],[119,185,74,-0.10091789557834553],[119,185,75,-0.16642617688032707],[119,185,76,-0.17920768832261869],[119,185,77,-0.16269128852788792],[119,185,78,-0.1499510816009212],[119,185,79,-0.14587787967443208],[119,186,64,-0.13562217012994318],[119,186,65,-0.1176745017104927],[119,186,66,-0.07280678428167853],[119,186,67,-0.041930972374802956],[119,186,68,-0.0389415453547103],[119,186,69,-0.06284493934007038],[119,186,70,-0.09830836155548285],[119,186,71,-0.1493651893315348],[119,186,72,-0.15027706971396126],[119,186,73,-0.10386565776649796],[119,186,74,-0.09927214332866881],[119,186,75,-0.16404018011332056],[119,186,76,-0.1770797401573056],[119,186,77,-0.16069472167394686],[119,186,78,-0.1476805631676022],[119,186,79,-0.14353660611396485],[119,187,64,-0.1339834439175965],[119,187,65,-0.1161680773035412],[119,187,66,-0.07211811577097593],[119,187,67,-0.04162323353452602],[119,187,68,-0.03862726839990654],[119,187,69,-0.06266247763293403],[119,187,70,-0.09794216668344456],[119,187,71,-0.148092386499898],[119,187,72,-0.14876548295470143],[119,187,73,-0.10262253400181644],[119,187,74,-0.09762398591192464],[119,187,75,-0.1616452792708575],[119,187,76,-0.17493226972329404],[119,187,77,-0.15867847773900162],[119,187,78,-0.14540221056272057],[119,187,79,-0.141194820565468],[119,188,64,-0.132333236780455],[119,188,65,-0.11465207465280484],[119,188,66,-0.071420539715645],[119,188,67,-0.04130924731767625],[119,188,68,-0.03830834310599609],[119,188,69,-0.06246845356974058],[119,188,70,-0.09755686202763189],[119,188,71,-0.1467954129888451],[119,188,72,-0.14723078787414268],[119,188,73,-0.10136706013901384],[119,188,74,-0.0959748338241506],[119,188,75,-0.15924383818643928],[119,188,76,-0.17276764876993142],[119,188,77,-0.15664481508882896],[119,188,78,-0.14311807718339695],[119,188,79,-0.1388542506006947],[119,189,64,-0.13067324791788507],[119,189,65,-0.11312812318140411],[119,189,66,-0.07071481394110432],[119,189,67,-0.040989310822583266],[119,189,68,-0.03798497201315359],[119,189,69,-0.06226297222468806],[119,189,70,-0.0971527998878703],[119,189,71,-0.14547571221692984],[119,189,72,-0.14567471002828822],[119,189,73,-0.10010040809856674],[119,189,74,-0.09432607520613878],[119,189,75,-0.15683819596778004],[119,189,76,-0.17058824619564433],[119,189,77,-0.15459598730370022],[119,189,78,-0.14083018199719308],[119,189,79,-0.13651657865693556],[119,190,64,-0.12900517237405656],[119,190,65,-0.11159784554903059],[119,190,66,-0.07000170364034591],[119,190,67,-0.040663731632712495],[119,190,68,-0.03765736296888931],[119,190,69,-0.062046156849640835],[119,190,70,-0.0967303578950169],[119,190,71,-0.1441347385941617],[119,190,72,-0.14409897889237597],[119,190,73,-0.09882374812543804],[119,190,74,-0.09267907383412223],[119,190,75,-0.15443066353286372],[119,190,76,-0.1683964243055053],[119,190,77,-0.1525342394972822],[119,190,78,-0.13854050679251473],[119,190,79,-0.1341834403199582],[119,191,64,-0.12733069857874543],[119,191,65,-0.11006285521769509],[119,191,66,-0.06928198018489098],[119,191,67,-0.04033282727620922],[119,191,68,-0.03732572883944681],[119,191,69,-0.06181814886578952],[119,191,70,-0.09628993865991257],[119,191,71,-0.1427739553117367],[119,191,72,-0.14250532507755626],[119,191,73,-0.09753824692138342],[119,191,74,-0.09103516720309611],[119,191,75,-0.1520235202887384],[119,191,76,-0.16619453516253524],[119,191,77,-0.15046180472878307],[119,191,78,-0.13625099356873038],[119,191,79,-0.1318564227429131],[119,192,64,-0.12565150596077004],[119,192,65,-0.10852475409905088],[119,192,66,-0.0685564199490831],[119,192,67,-0.03999692467126964],[119,192,68,-0.03699028721083119],[119,192,69,-0.061579107807478405],[119,192,70,-0.09583196936305659],[119,192,71,-0.14139483215229873],[119,192,72,-0.1408954775971796],[119,192,73,-0.0962450658100458],[119,192,74,-0.08939566470661595],[119,192,75,-0.14961901096183478],[119,192,76,-0.16398491704409254],[119,192,77,-0.14838090051879987],[119,192,78,-0.13396354206952013],[119,192,79,-0.12953706319967315],[119,193,64,-0.12396926264122676],[119,193,65,-0.10698513029042818],[119,193,66,-0.06782580315176703],[119,193,67,-0.03965635955952917],[119,193,68,-0.03665126007990662],[119,193,69,-0.061329211217852564],[119,193,70,-0.09535690128543535],[119,193,71,-0.13999884332576584],[119,193,72,-0.13927116118936905],[119,193,73,-0.0949453589389413],[119,193,74,-0.08776184591655752],[119,193,75,-0.1472193425881192],[119,193,76,-0.1617698910144149],[119,193,77,-0.14629372547899533],[119,193,78,-0.13168000746240668],[119,193,79,-0.12722684777052032],[119,194,64,-0.12228562321348467],[119,194,65,-0.1054455559064711],[119,194,66,-0.0670909127193889],[119,194,67,-0.039311475929742386],[119,194,68,-0.036308873536037595],[119,194,69,-0.061068654496137374],[119,194,70,-0.09486520928110359],[119,194,71,-0.13858746533558972],[119,194,72,-0.1376340937022782],[119,194,73,-0.09364027152227526],[119,194,74,-0.0861349589659832],[119,194,75,-0.1448266816708957],[119,194,76,-0.15955175762405213],[119,194,77,-0.14420245606536086],[119,194,78,-0.1294021981668688],[119,194,79,-0.12492721015760445],[119,195,64,-0.12060222661677163],[119,195,65,-0.1039075850130944],[119,195,66,-0.0663525331745703],[119,195,67,-0.03896262543410197],[119,195,68,-0.035963357433795584],[119,195,69,-0.060797650696592466],[119,195,70,-0.0943573911924322],[119,195,71,-0.1371621748803125],[119,195,72,-0.13598598354828026],[119,195,73,-0.09233093812840137],[119,195,74,-0.0845162190379277],[119,195,75,-0.14244315151359835],[119,195,76,-0.15733279374664144],[119,195,77,-0.1421092434645024],[119,195,78,-0.12713187383292862],[119,195,79,-0.12263953062713029],[119,196,64,-0.1189206940187619],[119,196,65,-0.10237275061233224],[119,196,66,-0.06561144853676795],[119,196,67,-0.038610166588483215],[119,196,68,-0.035614946320777004],[119,196,69,-0.06051643192522012],[119,196,70,-0.09383396827367789],[119,196,71,-0.13572444688630664],[119,196,72,-0.13432852747226395],[119,196,73,-0.09101848231879556],[119,196,74,-0.08290680775411197],[119,196,75,-0.14007082922315042],[119,196,76,-0.15511524920364525],[119,196,77,-0.14001621107250892],[119,196,78,-0.12487074485532447],[119,196,79,-0.12036513695554946],[119,197,64,-0.11724261398337321],[119,197,65,-0.10084243743710297],[119,197,66,-0.06486832212024123],[119,197,67,-0.03825443947111151],[119,197,68,-0.03526402618236355],[119,197,69,-0.060225441014030455],[119,197,70,-0.09329560967048588],[119,197,71,-0.13427576439065173],[119,197,72,-0.13266343675031833],[119,197,73,-0.08970416693237071],[119,197,74,-0.08130796323692877],[119,197,75,-0.13771168163411066],[119,197,76,-0.15290129926545595],[119,197,77,-0.13792550193542125],[119,197,78,-0.12262063222969623],[119,197,79,-0.11810552464732645],[119,198,64,-0.115569516765556],[119,198,65,-0.09931776257133342],[119,198,66,-0.0641235915689647],[119,198,67,-0.0378957436357418],[119,198,68,-0.03491125739804762],[119,198,69,-0.059925494200282675],[119,198,70,-0.09274324363685696],[119,198,71,-0.13281763375342406],[119,198,72,-0.1309924630008886],[119,198,73,-0.08838952086476604],[119,198,74,-0.07972105104417562],[119,198,75,-0.1353674986530905],[119,198,76,-0.15069298873410464],[119,198,77,-0.1358393058359651],[119,198,78,-0.12038360418779001],[119,198,79,-0.1158625533401339],[119,199,64,-0.11390288316750902],[119,199,65,-0.09779979159177596],[119,199,66,-0.06337768271102955],[119,199,67,-0.03753438207587379],[119,199,68,-0.03455730415271675],[119,199,69,-0.059617430189340376],[119,199,70,-0.09217783382230348],[119,199,71,-0.13135156808438336],[119,199,72,-0.12931734757090993],[119,199,73,-0.08707605944534494],[119,199,74,-0.07814739085592669],[119,199,75,-0.13303999230883176],[119,199,76,-0.1484922958006213],[119,199,77,-0.13375975214531705],[119,199,78,-0.11816168069162629],[119,199,79,-0.11363805186096008],[119,200,64,-0.11224414630236484],[119,200,65,-0.09628956566491866],[119,200,66,-0.06263103539715756],[119,200,67,-0.03717066608745181],[119,200,68,-0.034202801230113426],[119,200,69,-0.05930206684391005],[119,200,70,-0.09160035018964739],[119,200,71,-0.12987908237603293],[119,200,72,-0.12763981279753325],[119,200,73,-0.08576524894520664],[119,200,74,-0.07658823543846059],[119,200,75,-0.13073080981228463],[119,200,76,-0.14630114070462708],[119,200,77,-0.13168889699732392],[119,200,78,-0.11595679597101946],[119,200,79,-0.11143376769828026],[119,201,64,-0.11059469150492693],[119,201,65,-0.09478810067143138],[119,201,66,-0.061884102063736936],[119,201,67,-0.036804914470658506],[119,201,68,-0.03384835491602374],[119,201,69,-0.05898020218863317],[119,201,70,-0.09101176837289354],[119,201,71,-0.12840169090299317],[119,201,72,-0.12596155968582495],[119,201,73,-0.08445850631317525],[119,201,74,-0.07504477125634326],[119,201,75,-0.12844153346230644],[119,201,76,-0.14412138544052983],[119,201,77,-0.12962872325882066],[119,201,78,-0.11377079848399449],[119,201,79,-0.10925136694387078],[119,202,64,-0.10895585634386744],[119,202,65,-0.09329638640449596],[119,202,66,-0.061137346307640325],[119,202,67,-0.03643745273890372],[119,202,68,-0.03349454393125481],[119,202,69,-0.05865261541652404],[119,202,70,-0.09041306903596996],[119,202,71,-0.12692090471223935],[119,202,72,-0.12428426571553536],[119,202,73,-0.08315719902913411],[119,202,74,-0.07351811920536856],[119,202,75,-0.12617368068361143],[119,202,76,-0.1419548335879213],[119,202,77,-0.12758114066036852],[119,202,78,-0.11160545108156705],[119,202,79,-0.1070924344342426],[119,203,64,-0.10732882045979583],[119,203,65,-0.09181529008300086],[119,203,66,-0.06039117756919351],[119,203,67,-0.036068573627035916],[119,203,68,-0.033141884332570065],[119,203,69,-0.058320003598062886],[119,203,70,-0.08980513695192434],[119,203,71,-0.12543808739145748],[119,203,72,-0.12260944248880537],[119,203,73,-0.08186255031111002],[119,203,74,-0.07200925116587882],[119,203,75,-0.12392855754175178],[119,203,76,-0.13980306308639676],[119,203,77,-0.12554783442696624],[119,203,78,-0.10946229784937873],[119,203,79,-0.10495834484780948],[119,204,64,-0.1057138931762263],[119,204,65,-0.0903449378499368],[119,204,66,-0.0596455345973905],[119,204,67,-0.03569828387424042],[119,204,68,-0.03279059543975391],[119,204,69,-0.05798255987163214],[119,204,70,-0.08918810206065392],[119,204,71,-0.12395352981821255],[119,204,72,-0.12093752358507559],[119,204,73,-0.08057502658516663],[119,204,74,-0.07051845080504504],[119,204,75,-0.1217063144072195],[119,204,76,-0.13766634413300377],[119,204,77,-0.12352928526117386],[119,204,78,-0.10734180643597065],[119,204,79,-0.10284943348961556],[119,205,64,-0.10411102445617319],[119,205,65,-0.08888516010245981],[119,205,66,-0.058900174800529344],[119,205,67,-0.03532647712097598],[119,205,68,-0.032440762704104883],[119,205,69,-0.0576402539910692],[119,205,70,-0.08856177790335473],[119,205,71,-0.12246708894890022],[119,205,72,-0.11926850378818711],[119,205,73,-0.07929477604211098],[119,205,74,-0.06904571630913994],[119,205,75,-0.1195066330714857],[119,205,76,-0.135544409052833],[119,205,77,-0.12152547128667271],[119,205,78,-0.10524399860264956],[119,205,79,-0.10076560889650046],[119,206,64,-0.10252020457293677],[119,206,65,-0.08743583828260218],[119,206,66,-0.058154903884681725],[119,206,67,-0.034953072714270936],[119,206,68,-0.03209246840908258],[119,206,69,-0.05729306334991195],[119,206,70,-0.08792602071428937],[119,206,71,-0.12097869773406394],[119,206,72,-0.11760244498419319],[119,206,73,-0.07802197236929276],[119,206,74,-0.06759106840424002],[119,206,75,-0.11732925945434046],[119,206,76,-0.13343705754300383],[119,206,77,-0.11953641810462008],[119,206,78,-0.10316893646558833],[119,206,79,-0.09870682364145152],[119,207,64,-0.10094146306851161],[119,207,65,-0.08599690312966193],[119,207,66,-0.05740957466776638],[119,207,67,-0.034578015306327495],[119,207,68,-0.031745792576627595],[119,207,69,-0.05694097488963386],[119,207,70,-0.08728073053177691],[119,207,71,-0.11948836383432344],[119,207,72,-0.11593947461599943],[119,207,73,-0.07675681430328744],[119,207,74,-0.06615454920031479],[119,207,75,-0.11517400152191237],[119,207,76,-0.1313441556060836],[119,207,77,-0.11756219804164739],[119,207,78,-0.10111672068546121],[119,207,79,-0.09667307215180262],[119,208,64,-0.09937486563115094],[119,208,65,-0.08456833114812065],[119,208,66,-0.05666408468352156],[119,208,67,-0.034201273704844375],[119,208,68,-0.0314008131459143],[119,208,69,-0.05658398568627245],[119,208,70,-0.08662585029719243],[119,208,71,-0.11799616559827195],[119,208,72,-0.114279781443732],[119,208,73,-0.07549952335367265],[119,208,74,-0.0647362194757166],[119,208,75,-0.113040724481588],[119,208,76,-0.1292656313015651],[119,208,77,-0.11560292649846335],[119,208,78,-0.09908748617271881],[119,208,79,-0.09466438615659271],[119,209,64,-0.09782051105305353],[119,209,65,-0.08315014116617629],[119,209,66,-0.055918373819256836],[119,209,67,-0.033822839727768526],[119,209,68,-0.031057606130908695],[119,209,69,-0.056222103465231564],[119,209,70,-0.0859613648880316],[119,209,71,-0.1165022480674011],[119,209,72,-0.11262361135336323],[119,209,73,-0.07425034155819908],[119,209,74,-0.06333615606288184],[119,209,75,-0.11092934612816797],[119,209,76,-0.12720147058518022],[119,209,77,-0.11365875837178005],[119,209,78,-0.09708139793442394],[119,209,79,-0.09268083030402138],[119,210,64,-0.09627852827065826],[119,210,65,-0.08174239098451713],[119,210,66,-0.05517242198495463],[119,210,67,-0.03344272706185319],[119,210,68,-0.030716245760253842],[119,210,69,-0.05585534704750878],[119,210,70,-0.08528730008604064],[119,210,71,-0.11500681900932092],[119,210,72,-0.11097126321707218],[119,210,73,-0.07300952927507678],[119,210,74,-0.06195444933803838],[119,210,75,-0.10883983234030302],[119,210,76,-0.1251517132370689],[119,210,77,-0.11172988455444459],[119,210,78,-0.09509864706704145],[119,210,79,-0.0907224979510312],[119,211,64,-0.09474907349002966],[119,211,65,-0.08034517411543388],[119,211,66,-0.054426246812091794],[119,211,67,-0.0330609701247957],[119,211,68,-0.030376804602530928],[119,211,69,-0.05548374673022446],[119,211,70,-0.08460372148178345],[119,211,71,-0.11351014498144299],[119,211,72,-0.10932308480941846],[119,211,73,-0.07177736301784197],[119,211,74,-0.06059120081742872],[119,211,75,-0.10677219272663538],[119,211,76,-0.12311644888015753],[119,211,77,-0.10981652851851118],[119,211,78,-0.09313944689935078],[119,211,79,-0.08878950712699865],[119,212,64,-0.09323232739966986],[119,212,65,-0.07895861661267073],[119,212,66,-0.05367990138122537],[119,212,67,-0.03267762293105829],[119,212,68,-0.03003935367948734],[119,212,69,-0.05510734460400759],[119,212,70,-0.08391073331736626],[119,212,71,-0.1120125474280319],[119,212,72,-0.10767946878383271],[119,212,73,-0.07055413333792297],[119,212,74,-0.05924652086215083],[119,212,75,-0.10472647642125099],[119,212,76,-0.12109581309026722],[119,212,77,-0.10791894298569327],[119,212,78,-0.09120402928923263],[119,212,79,-0.08688199667325537],[119,213,64,-0.09172849247299393],[119,213,65,-0.07758287399271986],[119,213,66,-0.05293347197801685],[119,213,67,-0.03229275796177918],[119,213,68,-0.029703962569416226],[119,213,69,-0.054726194809520054],[119,213,70,-0.08320847726937246],[119,213,71,-0.11051439881417925],[119,213,72,-0.1060408487142965],[119,213,73,-0.06934014275971198],[119,213,74,-0.05792052649337374],[119,213,75,-0.10270276802826088],[119,213,76,-0.11908998359967236],[119,213,77,-0.10603740668940646],[119,213,78,-0.08929264107772432],[119,213,79,-0.08500012255994645],[119,214,64,-0.09023779036261316],[119,214,65,-0.0762181282485404],[119,214,66,-0.05218707587797491],[119,214,67,-0.031906465039506275],[119,214,68,-0.02937069950255702],[119,214,69,-0.05434036373523896],[119,214,70,-0.08249713117444447],[119,214,71,-0.10901611880087439],[119,214,72,-0.10440769520741987],[119,214,73,-0.06813570377267501],[119,214,74,-0.05661333931937247],[119,214,75,-0.10070118371551412],[119,214,76,-0.11709917659602985],[119,214,77,-0.10417222123240077],[119,214,78,-0.08740554070338369],[119,214,79,-0.08314405438150747],[119,215,64,-0.0887604593883625],[119,215,65,-0.07486458495681479],[119,215,66,-0.05144085916065756],[119,215,67,-0.03151885020869984],[119,215,68,-0.02903963145003341],[119,215,69,-0.05394993015842679],[119,215,70,-0.08177690770024978],[119,215,71,-0.10751817046579534],[119,215,72,-0.10278051209030299],[119,215,73,-0.06694113688467057],[119,215,74,-0.05532508357541888],[119,215,75,-0.09872186745748403],[119,215,76,-0.11512364311865143],[119,215,77,-0.1023237080436583],[119,215,78,-0.08554299497951932],[119,215,79,-0.08131397203168717],[119,216,64,-0.08729675212085665],[119,216,65,-0.07352247047999977],[119,216,66,-0.05069499455450666],[119,216,67,-0.031130034623157974],[119,216,68,-0.028710824207545005],[119,216,69,-0.05355498533107909],[119,216,70,-0.08104805296485268],[119,216,71,-0.10602105657481206],[119,216,72,-0.10115983267968581],[119,216,73,-0.06575676874030865],[119,216,74,-0.05405588427721452],[119,216,75,-0.09676498742743003],[119,216,76,-0.11316366555418662],[119,216,77,-0.10049220543796056],[119,216,78,-0.08370527603641117],[119,216,79,-0.07951006255870949],[119,217,64,-0.08584693306219111],[119,217,65,-0.0721920292645388],[119,217,66,-0.04994967931391302],[119,217,67,-0.030740153441762202],[119,217,68,-0.028384342474833985],[119,217,69,-0.05315563301262419],[119,217,70,-0.08031084510787957],[119,217,71,-0.10452531590957397],[119,217,72,-0.099546216138015],[119,217,73,-0.06458293030790244],[119,217,74,-0.052805865488234335],[119,217,75,-0.09483073253897611],[119,217,76,-0.11121955423385407],[119,217,77,-0.09867806578127185],[119,217,78,-0.08189265843021744],[119,217,79,-0.07773251720085082],[119,218,64,-0.08441127642516044],[119,218,65,-0.07087352123659521],[119,218,66,-0.04920513313036967],[119,218,67,-0.03034935473403636],[119,218,68,-0.028060249931658406],[119,218,69,-0.05275198945102924],[119,218,70,-0.07956559281706448],[119,218,71,-0.10303151965670711],[119,218,72,-0.09794024392197882],[119,218,73,-0.063419955138161],[119,218,74,-0.05157514870094234],[119,218,75,-0.09291930913716054],[119,218,76,-0.1092916441343194],[119,218,77,-0.09688165276473006],[119,218,78,-0.08010541641973153],[119,218,79,-0.07598152860226498],[119,219,64,-0.08299006401219082],[119,219,65,-0.06956721929670372],[119,219,66,-0.04846159607988107],[119,219,67,-0.029957798397187728],[119,219,68,-0.027738609310854805],[119,219,69,-0.05234418331399335],[119,219,70,-0.07881263381406138],[119,219,71,-0.10154026786434836],[119,219,72,-0.09634251632904216],[119,219,73,-0.06226817769747858],[119,219,74,-0.050363851331539915],[119,219,75,-0.09103093783899315],[119,219,76,-0.10738029168434236],[119,219,77,-0.0951033387897705],[119,219,78,-0.07834382141171763],[119,219,79,-0.07425728820853911],[119,220,64,-0.08158358319490912],[119,220,65,-0.06827340691464892],[119,220,66,-0.04771932660896661],[119,220,67,-0.02956565508636764],[119,220,68,-0.02741948246886718],[119,220,69,-0.051932355571882895],[119,220,70,-0.07805233330361447],[119,220,71,-0.10005218597179548],[119,220,72,-0.094753649147344],[119,220,73,-0.061127931778291074],[119,220,74,-0.0491720853275184],[119,220,75,-0.08916585052340047],[119,220,76,-0.10548587167920662],[119,220,77,-0.09334350246653547],[119,220,78,-0.07660813957500105],[119,220,79,-0.0725599838409958],[119,221,64,-0.08019212499509612],[119,221,65,-0.06699237582586275],[119,221,66,-0.0469785995618055],[119,221,67,-0.029173105160007384],[119,221,68,-0.02710293045401442],[119,221,69,-0.051516659334120855],[119,221,70,-0.07728508239040578],[119,221,71,-0.09856792141809026],[119,221,72,-0.09317427041417656],[119,221,73,-0.059999548988672706],[119,221,74,-0.047999955887014376],[119,221,75,-0.08732428747037956],[119,221,76,-0.10360877430493648],[119,221,77,-0.09160252622746559],[119,221,78,-0.0748986296230695],[119,221,79,-0.07088979744840597],[119,222,64,-0.07881598226748143],[119,222,65,-0.0657244238304757],[119,222,66,-0.04623970425114963],[119,222,67,-0.028780337642108713],[119,222,68,-0.026789013572616337],[119,222,69,-0.05109725964076736],[119,222,70,-0.07651129646806835],[119,222,71,-0.09708814033528922],[119,222,72,-0.0916050172879974],[119,222,73,-0.05888335732296787],[119,222,74,-0.046847560288597545],[119,222,75,-0.08550649464897057],[119,222,76,-0.10174940227413899],[119,222,77,-0.08988079405758082],[119,222,78,-0.07321554076438506],[119,222,79,-0.06924690303429376],[119,223,64,-0.07745544798459715],[119,223,65,-0.06446985269602992],[119,223,66,-0.04550294257569865],[119,223,67,-0.02838754920339265],[119,223,68,-0.026477791452991513],[119,223,69,-0.05067433321107433],[119,223,70,-0.07573141358499254],[119,223,71,-0.09561352433204558],[119,223,72,-0.09004653303864064],[119,223,73,-0.057779679814907926],[119,223,74,-0.04571498682981408],[119,223,75,-0.08371272115349603],[119,223,76,-0.09990816807519522],[119,223,77,-0.08817868934264136],[119,223,78,-0.07155911081913383],[119,223,79,-0.0676314647576055],[119,224,64,-0.0761108136237038],[119,224,65,-0.06322896616473787],[119,224,66,-0.0447686271866999],[119,224,67,-0.027994943163255997],[119,224,68,-0.02616932310729494],[119,224,69,-0.05024806815090953],[119,224,70,-0.07494589279171894],[119,224,71,-0.09414476737300807],[119,224,72,-0.0884994641601074],[119,224,73,-0.05668883327436723],[119,224,74,-0.044602313872553666],[119,224,75,-0.08194321678736077],[119,224,76,-0.09808549133641072],[119,224,77,-0.08649659283608592],[119,224,78,-0.06992956450069984],[119,224,79,-0.06604363520413305],[119,225,64,-0.07478236765550202],[119,225,65,-0.06200206806594944],[119,225,66,-0.0440370797064903],[119,225,67,-0.027602728514443224],[119,225,68,-0.025863666991071156],[119,225,69,-0.0498186636209989],[119,225,70,-0.07415521247479226],[119,225,71,-0.09268257275929845],[119,225,72,-0.08696445760992787],[119,225,73,-0.05561112710854402],[119,225,74,-0.043509608992983416],[119,225,75,-0.0801982297934527],[119,225,76,-0.09628179630652023],[119,225,77,-0.084834880745267],[119,225,78,-0.06832711185963586],[119,225,79,-0.06448355382563073],[119,226,64,-0.07347039413411534],[119,226,65,-0.060789460534295646],[119,226,66,-0.04330862900164807],[119,226,67,-0.027211118972295084],[119,226,68,-0.02556088106033615],[119,226,69,-0.04938632946800026],[119,226,70,-0.0733598686819945],[119,226,71,-0.09122765021504428],[119,226,72,-0.08544215817868023],[119,226,73,-0.054546862228019646],[119,226,74,-0.04243692823352981],[119,226,75,-0.07847800472997503],[119,226,76,-0.09449750945276257],[119,226,77,-0.08319392293718647],[119,226,78,-0.06675194688746165],[119,226,79,-0.06295134554316985],[119,227,64,-0.07217517138760919],[119,227,65,-0.05959144233379678],[119,227,66,-0.042583609513386037],[119,227,67,-0.026820332050439728],[119,227,68,-0.025261022826022335],[119,227,69,-0.04895128582057677],[119,227,70,-0.07256037344399238],[119,227,71,-0.08978071308471208],[119,227,72,-0.08393320599289236],[119,227,73,-0.053496330037881144],[119,227,74,-0.04138431545418032],[119,227,75,-0.07678278049034515],[119,227,76,-0.09273305717757555],[119,227,77,-0.08157408126364521],[119,227,78,-0.06520424627722157],[119,227,79,-0.061447119510933276],[119,228,64,-0.07089697080804457],[119,228,65,-0.05840830728795839],[119,228,66,-0.04186235964766973],[119,228,67,-0.026430588164676465],[119,228,68,-0.02496414940555302],[119,228,69,-0.04851376265267339],[119,228,70,-0.0717572530973926],[119,228,71,-0.08834247564558473],[119,228,72,-0.08243823415405944],[119,228,73,-0.052459811513738304],[119,228,74,-0.0403518017801044],[119,228,75,-0.07511278846552183],[119,228,76,-0.09098886365470425],[119,228,77,-0.07997570800536759],[119,228,78,-0.06368416833728067],[119,228,79,-0.059970968036246075],[119,229,64,-0.06963605573983393],[119,229,65,-0.05724034281564825],[119,229,66,-0.0411452202274079],[119,229,67,-0.026042109766724737],[119,229,68,-0.024670317571308092],[119,229,69,-0.04807399931629518],[119,229,70,-0.07095104661419421],[119,229,71,-0.08691365053936463],[119,229,72,-0.08095786651605705],[119,229,73,-0.05143757636217107],[119,229,74,-0.03933940514238664],[119,229,75,-0.07346825084689082],[119,229,76,-0.0892653487853001],[119,229,77,-0.07839914443435682],[119,229,78,-0.06219185205445361],[119,229,79,-0.0585229656512972],[119,230,64,-0.06839268046497118],[119,230,65,-0.05608782857233076],[119,230,66,-0.04043253300894293],[119,230,67,-0.02565512050945983],[119,230,68,-0.024379583795791124],[119,230,69,-0.04763224404622492],[119,230,70,-0.07014230394264606],[119,230,71,-0.08549494632653644],[119,230,72,-0.0794927156028045],[119,230,73,-0.050429882264899625],[119,230,74,-0.038347129908507256],[119,230,75,-0.07184937906762547],[119,230,76,-0.0875629262743761],[119,230,77,-0.07684471949346841],[119,230,78,-0.0607274163022257],[119,230,79,-0.05710316833172225],[119,231,64,-0.06716708928346468],[119,231,65,-0.054951035195959536],[119,231,66,-0.03972463926484293],[119,231,67,-0.02526984444509856],[119,231,68,-0.024092004293268687],[119,231,69,-0.04718875343913839],[119,231,70,-0.0693315843643864],[119,231,71,-0.08408706516663576],[119,231,72,-0.0780433806674967],[119,231,73,-0.04943697420564896],[119,231,74,-0.03737496659899404],[119,231,75,-0.07025637238017064],[119,231,76,-0.08588200182771516],[119,231,77,-0.07531274859186811],[119,231,78,-0.059290959189454887],[119,231,79,-0.05571161285688445],[119,232,64,-0.06595951568709363],[119,232,65,-0.05383022315657745],[119,232,66,-0.03902187843480675],[119,232,67,-0.02488650525769917],[119,232,68,-0.02380763505769232],[119,232,69,-0.04674379190968177],[119,232,70,-0.06851945487269287],[119,232,71,-0.0826907006271666],[119,232,72,-0.07661044589426155],[119,232,73,-0.04845908387843291],[119,232,74,-0.036422891686523934],[119,232,75,-0.06868941656725862],[119,232,76,-0.08422297146907386],[119,232,77,-0.07380353251475925],[119,232,78,-0.057882557544629974],[119,232,79,-0.054348316306418724],[119,233,64,-0.06477018162444523],[119,233,65,-0.05272564170845503],[119,233,66,-0.038324586846302605],[119,233,67,-0.02450532553123428],[119,233,68,-0.023526531896763066],[119,233,69,-0.04629763112616033],[119,233,70,-0.067706488576566],[119,233,71,-0.08130653562346207],[119,233,72,-0.07519447874262727],[119,233,73,-0.047496429175763744],[119,233,74,-0.035490867473649296],[119,233,75,-0.06714868278366729],[119,233,76,-0.08258621997730965],[119,233,77,-0.07231735644553566],[119,233,78,-0.056502266530514114],[119,233,79,-0.05301327568740024],[119,234,64,-0.06359929685498078],[119,234,65,-0.05163752794332443],[119,234,66,-0.037633096506299056],[119,234,67,-0.02412652605432992],[119,234,68,-0.02324875046200034],[119,234,69,-0.04585054942851503],[119,234,70,-0.06689326313520985],[119,234,71,-0.0799352404912935],[119,234,72,-0.07379602843467653],[119,234,73,-0.046549213755030655],[119,234,74,-0.03457884204518239],[119,234,75,-0.06563432652567579],[119,234,76,-0.08097211944277187],[119,234,77,-0.07085448909822929],[119,234,78,-0.055150119383719304],[119,234,79,-0.051706467686248044],[119,235,64,-0.062447058389697885],[119,235,65,-0.050566105943015326],[119,235,66,-0.036947733965208895],[119,235,67,-0.02375032516263013],[119,235,68,-0.022974346274722297],[119,235,69,-0.04540283123132683],[119,235,70,-0.06608035922732565],[119,235,71,-0.07857747119356903],[119,235,72,-0.07241562458428569],[119,235,73,-0.04561762668107994],[119,235,74,-0.033686749291177306],[119,235,75,-0.06414648672494769],[119,235,76,-0.07938102794203711],[119,235,77,-0.06941518195787749],[119,235,78,-0.05382612727352946],[119,235,79,-0.05042784853928757],[119,236,64,-0.061313650015844476],[119,236,65,-0.04951158602960605],[119,236,66,-0.03626881925394451],[119,236,67,-0.023376938119621812],[119,236,68,-0.02270337474790763],[119,236,69,-0.04495476641463657],[119,236,70,-0.06526835905946919],[119,236,71,-0.07723386766200448],[119,236,72,-0.07105377596740568],[119,236,73,-0.04470184214286022],[119,236,74,-0.03281450899641564],[119,236,75,-0.06268528496340799],[119,236,76,-0.0778132883298574],[119,236,77,-0.06799966862625423],[119,236,78,-0.05253027927414511],[119,236,79,-0.04917735401578229],[119,237,64,-0.060199241902949154],[119,237,65,-0.04847416411093389],[119,237,66,-0.03559666489469898],[119,237,67,-0.023006576536583265],[119,237,68,-0.022435891203930258],[119,237,69,-0.04450664970538217],[119,237,70,-0.06445784491751075],[119,237,71,-0.0759050522741576],[119,237,72,-0.06971096943185921],[119,237,73,-0.04380201924178452],[119,237,74,-0.031962026992211866],[119,237,75,-0.06125082480543905],[119,237,76,-0.07626922714689692],[119,237,77,-0.06660816427015465],[119,237,78,-0.05126254244432023],[119,237,79,-0.04795489950708018],[119,238,64,-0.059103990287316374],[119,238,65,-0.04745402111909769],[119,238,66,-0.03493157498580885],[119,238,67,-0.022639447832162422],[119,238,68,-0.02217195088819951],[119,238,69,-0.04405878005225485],[119,238,70,-0.06364939776501323],[119,238,71,-0.07459162846574036],[119,238,72,-0.06838766894468361],[119,238,73,-0.04291830184929762],[119,238,74,-0.03112919536632913],[119,238,75,-0.05984319124354694],[119,238,76,-0.07474915364159442],[119,238,77,-0.06524086516923981],[119,238,78,-0.050022862008242616],[119,238,79,-0.046760380215430906],[119,239,64,-0.058028037232041654],[119,239,65,-0.04645132253940689],[119,239,66,-0.03427384436082082],[119,239,67,-0.022275754731965882],[119,239,68,-0.0219116089788103],[119,239,69,-0.043611459996802965],[119,239,70,-0.06284359589213294],[119,239,71,-0.07329417947768713],[119,239,72,-0.0670843147746532],[119,239,73,-0.04205081853101566],[119,239,74,-0.030315892726808586],[119,239,75,-0.05846245025350444],[119,239,76,-0.07325335890427434],[119,239,77,-0.06389794836029841],[119,239,78,-0.04881116163144619],[119,239,79,-0.045593671436001154],[119,240,64,-0.056971510459473906],[119,240,65,-0.04546621802700726],[119,240,66,-0.033623757821602894],[119,240,67,-0.0219156948083689],[119,240,68,-0.02165492059233927],[119,240,69,-0.04316499504358621],[119,240,70,-0.06204101361839656],[119,240,71,-0.07201326723698989],[119,240,72,-0.06580132280719345],[119,240,73,-0.04119968253465541],[119,240,74,-0.029521984515496116],[119,240,75,-0.05710864845479034],[119,240,76,-0.07178211511136728],[119,240,77,-0.06257957137458983],[119,240,78,-0.04762734378544263],[119,240,79,-0.04445462892554296],[119,241,64,-0.0559345232529619],[119,241,65,-0.044498841108232184],[119,241,66,-0.03298158944507506],[119,241,67,-0.02155946006058362],[119,241,68,-0.021401940785938902],[119,241,69,-0.042719693032117596],[119,241,70,-0.06124222005240916],[119,241,71,-0.07074943136985389],[119,241,72,-0.06453908398850207],[119,241,73,-0.04036499183884093],[119,241,74,-0.028747323367063343],[119,241,75,-0.05578181287200399],[119,241,76,-0.07033567487737108],[119,241,77,-0.061285872064788145],[119,241,78,-0.046471290194731514],[119,241,79,-0.04334308935117409],[119,242,64,-0.05491717442468262],[119,242,65,-0.0435493089635925],[119,242,66,-0.03234760196292098],[119,242,67,-0.021207236534926566],[119,242,68,-0.021152724555989155],[119,242,69,-0.04227586351335838],[119,242,70,-0.06044777791134339],[119,242,71,-0.06950318834534659],[119,242,72,-0.06329796389537827],[119,242,73,-0.03954682925982746],[119,242,74,-0.027991749509399384],[119,242,75,-0.05448195079283672],[119,242,76,-0.06891427071199785],[119,242,77,-0.060016968517952046],[119,242,78,-0.04534286235986916],[119,242,79,-0.04225887081277558],[119,243,64,-0.053919548346257645],[119,243,65,-0.04261772228913547],[119,243,66,-0.031722046213364066],[119,243,67,-0.02085920398503213],[119,243,68,-0.02090732683354767],[119,243,69,-0.041833817133412915],[119,243,70,-0.05965824240272354],[119,243,71,-0.0682750307472749],[119,243,72,-0.062078302426895],[119,243,73,-0.03874526261306057],[119,243,74,-0.02725509120126554],[119,243,75,-0.05320904971804213],[119,243,76,-0.06751811457971826],[119,243,77,-0.05877295905079927],[119,243,78,-0.04424190215027123],[119,243,79,-0.041201773432537385],[119,244,64,-0.05294171503882368],[119,244,65,-0.0417041652327721],[119,244,66,-0.03110516066385484],[119,244,67,-0.020515535571623562],[119,244,68,-0.020665802476890396],[119,244,69,-0.041393865027009424],[119,244,70,-0.05887416017073647],[119,244,71,-0.06706542667163484],[119,244,72,-0.06088041361374329],[119,244,73,-0.037960344926429884],[119,244,74,-0.026537165203179117],[119,244,75,-0.051963077398756365],[119,244,76,-0.0661473975587149],[119,244,77,-0.05755392228347734],[119,244,78,-0.04316823246047728],[119,244,79,-0.04017158000525916],[119,245,64,-0.05198373031921452],[119,245,65,-0.0408087054020767],[119,245,66,-0.030497171003323234],[119,245,67,-0.020176397601349576],[119,245,68,-0.020428206261501127],[119,245,69,-0.04095631822330762],[119,245,70,-0.058096068309044964],[119,245,71,-0.06587481924665888],[119,245,72,-0.05970458554083966],[119,245,73,-0.03719211470206387],[119,245,74,-0.025837777277602503],[119,245,75,-0.05074398195646581],[119,245,76,-0.06480228959610226],[119,245,77,-0.05635991728796223],[119,245,78,-0.04212165792370336],[119,245,79,-0.039168056703140525],[119,246,64,-0.05104563599886738],[119,246,65,-0.03993139393992886],[119,246,66,-0.029898289802391845],[119,246,67,-0.01984194930401529],[119,246,68,-0.020194592867849925],[119,246,69,-0.040521487066421],[119,246,70,-0.057324493441723794],[119,246,71,-0.06470362627209017],[119,246,72,-0.05855108037849172],[119,246,73,-0.036440596223436206],[119,246,74,-0.025156722714573608],[119,246,75,-0.049551692080830975],[119,246,76,-0.06348293935606708],[119,246,77,-0.05519098380712885],[119,246,78,-0.041101965676582045],[119,246,79,-0.038190953828887896],[119,247,64,-0.05012746013208057],[119,247,65,-0.039072265664309005],[119,247,66,-0.029308716239777797],[119,247,67,-0.019512342647452344],[119,247,68,-0.01996501686736927],[119,247,69,-0.04008968065298084],[119,247,70,-0.05655995087368603],[119,247,71,-0.06355223997404812],[119,247,72,-0.0574201345172405],[119,247,73,-0.0357057999045756],[119,247,74,-0.024493786879047894],[119,247,75,-0.048386117300553096],[119,247,76,-0.06218947415744612],[119,247,77,-0.05404714254051054],[119,247,78,-0.040108926169131615],[119,247,79,-0.03724000661113427],[119,248,64,-0.04922921731023575],[119,248,65,-0.03823133926846133],[119,248,66,-0.028728635892888866],[119,248,67,-0.01918772218911832],[119,248,68,-0.019739532707020366],[119,248,69,-0.03966120628890904],[119,248,70,-0.055802943811625275],[119,248,71,-0.062421026871519396],[119,248,72,-0.056311958801273376],[119,248,73,-0.03498772267813494],[119,248,74,-0.02384874577631167],[119,248,75,-0.047247148322418754],[119,248,76,-0.06092199999709251],[119,248,77,-0.052928395492707114],[119,248,78,-0.03914229401411716],[119,248,79,-0.03631493603630902],[119,249,64,-0.04835090899865024],[119,249,65,-0.03740861757762427],[119,249,66,-0.02815822059047922],[119,249,67,-0.01886822496344114],[119,249,68,-0.01951819469289606],[119,249,69,-0.03923636896747128],[119,249,70,-0.0550539626562315],[119,249,71,-0.0613103277502842],[119,249,72,-0.05522673885517993],[119,249,73,-0.034286348419124854],[119,249,74,-0.023221366631987227],[119,249,75,-0.04613465743368426],[119,249,76,-0.059680601655285416],[119,249,77,-0.051834726380424065],[119,249,78,-0.038201808870164326],[119,249,79,-0.03541544971131369],[119,250,64,-0.04749252391272193],[119,250,65,-0.036604087858459665],[119,250,66,-0.027597628325044192],[119,250,67,-0.018553980403798655],[119,250,68,-0.019301056973295844],[119,250,69,-0.0388154708705219],[119,250,70,-0.05431348436612536],[119,250,71,-0.060220457739835455],[119,250,72,-0.05416463549867083],[119,250,73,-0.03360164840111316],[119,250,74,-0.02261140848325505],[119,250,75,-0.04504849896293064],[119,250,76,-0.058465342879288645],[119,250,77,-0.050766101094082375],[119,250,78,-0.03728719635313174],[119,250,79,-0.03454124275152537],[119,251,64,-0.046654038430082104],[119,251,65,-0.0358177221773029],[119,251,66,-0.027047003222485322],[119,251,67,-0.018245110297922806],[119,251,68,-0.019088173521708697],[119,251,69,-0.03839881089469348],[119,251,70,-0.05358197189364518],[119,251,71,-0.059151706488628025],[119,251,72,-0.05312578524377372],[119,251,73,-0.03293358178173079],[119,251,74,-0.022018622778063962],[119,251,75,-0.043988509794554334],[119,251,76,-0.057276266641074644],[119,251,77,-0.049722468209966245],[119,251,78,-0.03639816897045733],[119,251,79,-0.03369199868887496],[119,252,64,-0.045835417035533],[119,252,65,-0.035049477803369415],[119,252,66,-0.026506475566476444],[119,252,67,-0.017941728775463992],[119,252,68,-0.018879598120174475],[119,252,69,-0.037986684204161125],[119,252,70,-0.052859873692373494],[119,252,71,-0.05810433843285864],[119,252,72,-0.05211030086898287],[119,252,73,-0.0322820961143955],[119,252,74,-0.02144275397926756],[119,252,75,-0.04295450993210823],[119,252,76,-0.056113395465158686],[119,252,77,-0.048703759548907724],[119,252,78,-0.03553442707341425],[119,252,79,-0.03286739039498755],[119,253,64,-0.045036612795594115],[119,253,65,-0.03429929765304884],[119,253,66,-0.025976161874821248],[119,253,67,-0.017643942326345967],[119,253,68,-0.018675384343462435],[119,253,69,-0.03757938181142016],[119,253,70,-0.0521476232959786],[119,253,71,-0.057078593153793364],[119,253,72,-0.05111827206476628],[119,253,73,-0.03164712788320205],[119,253,74,-0.02088354017075495],[119,253,75,-0.041946303105741385],[119,253,76,-0.054976731822402286],[119,253,77,-0.0477098907775322],[119,253,78,-0.03469565982241966],[119,253,79,-0.032067081014592304],[119,254,64,-0.04425756785954117],[119,254,65,-0.03356711077144087],[119,254,66,-0.02545616502499655],[119,254,67,-0.017351849848473228],[119,254,68,-0.018475585544498144],[119,254,69,-0.03717719018734507],[119,254,70,-0.05144563896767068],[119,254,71,-0.05607468581853846],[119,254,72,-0.05014976614481846],[119,254,73,-0.031028603057991547],[119,254,74,-0.020340713662799378],[119,254,75,-0.04096367741905],[119,254,76,-0.05386625858558666],[119,254,77,-0.046740762048131594],[119,254,78,-0.03388154616076885],[119,254,79,-0.031290724904654926],[119,255,64,-0.04349821398392394],[119,255,65,-0.03285283284735637],[119,255,66,-0.02494657442602277],[119,255,67,-0.017065542723324074],[119,255,68,-0.01828025484148784],[119,255,69,-0.03678039090165946],[119,255,70,-0.05075432341934909],[119,255,71,-0.055092807699089655],[119,255,72,-0.04920482881748794],[119,255,73,-0.030426437666719208],[119,255,74,-0.019814001594027776],[119,255,75,-0.040006406030749356],[119,255,76,-0.05278193954253978],[119,255,77,-0.04579625867330938],[119,255,78,-0.03309175579242497],[119,255,79,-0.03053796857495698],[119,256,64,-0.04275847307760832],[119,256,65,-0.03215636675803743],[119,256,66,-0.024447466233709036],[119,256,67,-0.016785104917879427],[119,256,68,-0.01808944510713857],[119,256,69,-0.03638926029473258],[119,256,70,-0.05007406359922589],[119,256,71,-0.0541331267643908],[119,256,72,-0.048283485011810956],[119,256,73,-0.02984053838229423],[119,256,74,-0.019303126527552755],[119,256,75,-0.039074247866651285],[119,256,76,-0.05172371996255647],[119,256,77,-0.044876251831598525],[119,256,78,-0.032325950159727515],[119,256,79,-0.029808451626088566],[119,257,64,-0.04203825776447501],[119,257,65,-0.0314776031399202],[119,257,66,-0.023958903606282066],[119,257,67,-0.016510613111308477],[119,257,68,-0.017903208960364306],[119,257,69,-0.036004069181457356],[119,257,70,-0.049405230546490604],[119,257,71,-0.05319578834010808],[119,257,72,-0.04738573975265192],[119,257,73,-0.029270803121164937],[119,257,74,-0.018807807038968432],[119,257,75,-0.03816694835752805],[119,257,76,-0.050691527211838755],[119,257,77,-0.043980599300320986],[119,257,78,-0.03158378341712454],[119,257,79,-0.029101807681076636],[119,258,64,-0.04133747196102263],[119,258,65,-0.03081642098186559],[119,258,66,-0.023480936997390706],[119,258,67,-0.016242136844813987],[119,258,68,-0.01772159876085559],[119,258,69,-0.035625082587797056],[119,258,70,-0.04874817931136846],[119,258,71,-0.05228091583082079],[119,258,72,-0.04651157907954652],[119,258,73,-0.028717121651034443],[119,258,74,-0.01832775829409158],[119,258,75,-0.03728424019858223],[119,258,76,-0.04968527141371017],[119,258,77,-0.043109146212071986],[119,258,78,-0.030864903397314708],[119,258,79,-0.02841766530715905],[119,259,64,-0.04065601146620187],[119,259,65,-0.03017268823735309],[119,259,66,-0.023013604483442363],[119,259,67,-0.015979738692995623],[119,259,68,-0.017544666606841102],[119,259,69,-0.0352525595203912],[119,259,70,-0.04810324893869314],[119,259,71,-0.05138861149932114],[119,259,72,-0.045660971003924924],[119,259,73,-0.02817937620517629],[119,259,74,-0.017862692614468424],[119,259,75,-0.036425844126343525],[119,259,76,-0.04870484614935903],[119,259,77,-0.04226172583128603],[119,259,78,-0.030168952566417183],[119,259,79,-0.027755648924455343],[119,260,64,-0.03999376456090477],[119,260,65,-0.029546262452234136],[119,260,66,-0.022556932122230786],[119,260,67,-0.015723474455082816],[119,260,68,-0.017372464336344928],[119,260,69,-0.03488675276944345],[119,260,70,-0.04747076251293111],[119,260,71,-0.05051895729775444],[119,260,72,-0.04483386649951951],[119,260,73,-0.027657442100928162],[119,260,74,-0.017412320028823924],[119,260,75,-0.03559146970894494],[119,260,76,-0.04775012919489275],[119,260,77,-0.04143816034743876],[119,260,78,-0.02949556896503988],[119,260,79,-0.02711537969854567],[119,261,64,-0.03935061261466236],[119,261,65,-0.028936991404771788],[119,261,66,-0.022110934339838868],[119,261,67,-0.015473393364389092],[119,261,68,-0.01720504353221416],[119,261,69,-0.03452790874494429],[119,261,70,-0.0468510272624169],[119,261,71,-0.04967201574539158],[119,261,72,-0.044030200520906185],[119,261,73,-0.02715118836006473],[119,261,74,-0.016976348808802354],[119,261,75,-0.03478081614589287],[119,261,76,-0.0468209832905549],[119,261,77,-0.04063826168157305],[119,261,78,-0.02884438713239339],[119,261,79,-0.02649647641424988],[119,262,64,-0.03872643069718589],[119,262,65,-0.028344713754790817],[119,262,66,-0.021675614342815043],[119,262,67,-0.015229538314331471],[119,262,68,-0.017042455531145043],[119,262,69,-0.03417626734610792],[119,262,70,-0.046244334720392806],[119,262,71,-0.048847830847894326],[119,262,72,-0.04324989304527464],[119,262,73,-0.02666047832884847],[119,262,74,-0.016554485987479793],[119,262,75,-0.0339935730735708],[119,262,76,-0.04591725693799199],[119,262,77,-0.03986183230292327],[119,262,78,-0.02821503901082006],[119,262,79,-0.025898556328127386],[119,263,64,-0.038121088192498966],[119,263,65,-0.027769259698888663],[119,263,66,-0.021250964552656404],[119,263,67,-0.014991946099360868],[119,263,68,-0.016884751436887516],[119,263,69,-0.033832061863726066],[119,263,70,-0.04565096094028799],[119,263,71,-0.04804642905301883],[119,263,72,-0.0424928501326801],[119,263,73,-0.02618517029566736],[119,263,74,-0.016146437859274648],[119,263,75,-0.033229421372873345],[119,263,76,-0.04503878522152857],[119,263,77,-0.03910866605253628],[119,263,78,-0.027607154828358862],[119,263,79,-0.025321235997472588],[119,264,64,-0.037534449413533996],[119,264,65,-0.027210451628806254],[119,264,66,-0.020836967059701478],[119,264,67,-0.014760647669180765],[119,264,68,-0.01673198213778101],[119,264,69,-0.033495518915000244],[119,264,70,-0.045071166762561184],[119,264,71,-0.047267820237831895],[119,264,72,-0.04175896500022891],[119,264,73,-0.02572511810429896],[119,264,74,-0.01575191046004133],[119,264,75,-0.0324880339755436],[119,264,76,-0.044185390649509805],[119,264,77,-0.03837854897092449],[119,264,78,-0.02702036395721942],[119,264,79,-0.024764132083834694],[119,265,64,-0.03696637421515368],[119,265,65,-0.02666810479017383],[119,265,66,-0.020433594093582065],[119,265,67,-0.014535668394639715],[119,265,68,-0.01658419832871649],[119,265,69,-0.033166858410245845],[119,265,70,-0.04450519813030277],[119,265,71,-0.04651199872262822],[119,265,72,-0.041048119105819965],[119,265,73,-0.025280171760936502],[119,265,74,-0.015370610026247603],[119,265,75,-0.031769076665928146],[119,265,76,-0.043356884011835725],[119,265,77,-0.03767126012688798],[119,265,78,-0.02645429574624712],[119,265,79,-0.02422686212930361],[119,266,64,-0.036416718603671204],[119,266,65,-0.02614202793898837],[119,266,66,-0.020040808507451727],[119,266,67,-0.014317028343701136],[119,266,68,-0.016441450537561967],[119,266,69,-0.03284629355070415],[119,266,70,-0.04395328645068499],[119,266,71,-0.04577894430686826],[119,266,72,-0.04036018323725715],[119,266,73,-0.02485017803322299],[119,266,74,-0.015002243432269195],[119,266,75,-0.031072208875037213],[119,266,76,-0.04255306524992323],[119,266,77,-0.03698657244477643],[119,266,78,-0.025908580325691807],[119,266,79,-0.02370904530403199],[119,267,64,-0.03588533534106265],[119,267,65,-0.02563202399333651],[119,267,66,-0.01965856427331154],[119,267,67,-0.014104742565950892],[119,267,68,-0.01630378915606527],[119,267,69,-0.032534030856582734],[119,267,70,-0.043415648999294607],[119,267,71,-0.04506862332263466],[119,267,72,-0.0396950186027709],[119,267,73,-0.0244349810396659],[119,267,74,-0.01464651860497081],[119,267,75,-0.03039708446397625],[119,267,76,-0.04177372433544646],[119,267,77,-0.03632425352759677],[119,267,78,-0.025382849382811656],[119,267,79,-0.02321030312368463],[119,268,64,-0.03537207454215292],[119,268,65,-0.02513789067800331],[119,268,66,-0.019286806985822136],[119,268,67,-0.013898821384114742],[119,268,68,-0.016171264475171726],[119,268,69,-0.03223027022428769],[119,268,70,-0.04289248936428907],[119,268,71,-0.044380989701243094],[119,268,72,-0.03905247791917077],[119,268,73,-0.02403442282789335],[119,268,74,-0.014303144914843333],[119,268,75,-0.029743352493970143],[119,268,76,-0.04101864215431099],[119,268,77,-0.035684066473487146],[119,268,78,-0.024876736907034375],[119,268,79,-0.0227302601356948],[119,269,64,-0.03487678426316333],[119,269,65,-0.02465942115975406],[119,269,66,-0.018925474372090304],[119,269,67,-0.013699270691100765],[119,269,68,-0.016043926724646197],[119,269,69,-0.03193520501168708],[119,269,70,-0.04238399792727347],[119,269,71,-0.04371598604882003],[119,269,72,-0.038432406494063834],[119,269,73,-0.02364834394031776],[119,269,74,-0.013971833543077556],[119,269,75,-0.029110657980376056],[119,269,76,-0.0402875913924437],[119,269,77,-0.035065770683206654],[119,269,78,-0.024389879903589904],[119,269,79,-0.022268544573398386],[119,270,64,-0.034399311080115375],[119,270,65,-0.024196404671232807],[119,270,66,-0.018574496805037734],[119,270,67,-0.013506092251143789],[119,270,68,-0.01592182611685272],[119,270,69,-0.03164902215014863],[119,270,70,-0.04189035237777562],[119,270,71,-0.04307354472685237],[119,270,72,-0.03783464329879606],[119,270,73,-0.023276583965885347],[119,270,74,-0.013652297824067553],[119,270,75,-0.02849864262825665],[119,270,76,-0.03958033742011423],[119,270,77,-0.034469122656421915],[119,270,78,-0.02392191907471458],[119,270,79,-0.021824788977300103],[119,271,64,-0.03393950065567044],[119,271,65,-0.02374862712154769],[119,271,66,-0.018233797818044635],[119,271,67,-0.013319284003647604],[119,271,68,-0.01580501289446568],[119,271,69,-0.03137190228195708],[119,271,70,-0.04141171825815223],[119,271,71,-0.042453588933876726],[119,271,72,-0.037259022028963036],[119,271,73,-0.02291898207666468],[119,271,74,-0.013344253562914571],[119,271,75,-0.027906945547244526],[119,271,76,-0.038896639171630866],[119,271,77,-0.03389387677468748],[119,271,78,-0.023472499467683233],[119,271,79,-0.021398630782879943],[119,272,64,-0.03349719829308393],[119,272,65,-0.02331587169176585],[119,272,66,-0.017903294618691265],[119,272,67,-0.013138840368393126],[119,272,68,-0.015693537381856432],[119,272,69,-0.031104019921644608],[119,272,70,-0.0409482495357735],[119,272,71,-0.04185603378468175],[119,272,72,-0.036705372149557644],[119,272,73,-0.022575377548133053],[119,272,74,-0.013047419327600441],[119,272,75,-0.027335203943600388],[119,272,76,-0.03823625001739385],[119,272,77,-0.033339786069140384],[119,272,78,-0.023041271089083534],[119,272,79,-0.02098971287450268],[119,273,64,-0.033072249476025745],[119,273,65,-0.02289791941366776],[119,273,66,-0.01758289859952158],[119,273,67,-0.012964752550808633],[119,273,68,-0.015587450039818745],[119,273,69,-0.030845543639651304],[119,273,70,-0.04050008919932189],[119,273,71,-0.04128078738356703],[119,273,72,-0.03617351992200577],[119,273,73,-0.022245610262080544],[119,273,74,-0.012761516715561009],[119,273,75,-0.026783053787521747],[119,273,76,-0.03759891862542298],[119,273,77,-0.032806602971037116],[119,273,78,-0.022627889484874545],[119,273,79,-0.020597684105119116],[119,274,64,-0.03266450039312442],[119,274,65,-0.022494549730258103],[119,274,66,-0.017272515843882272],[119,274,67,-0.012797008846069487],[119,274,68,-0.015486801523270723],[119,274,69,-0.03059663626667938],[119,274,70,-0.040067369876078826],[119,274,71,-0.040727751888412114],[119,274,72,-0.03566328941055857],[119,274,73,-0.021929521191154953],[119,274,74,-0.012486270594481251],[119,274,75,-0.026250130453933963],[119,274,76,-0.03698438980963372],[119,274,77,-0.03229408004339449],[119,274,78,-0.022232016285916995],[119,274,79,-0.020222199781586396],[119,275,64,-0.03227379844614369],[119,275,65,-0.022105541036648958],[119,275,66,-0.01697204762500308],[119,275,67,-0.012635594940833356],[119,275,68,-0.015391642741495133],[119,275,69,-0.030357455117013335],[119,275,70,-0.03965021446709217],[119,275,71,-0.04019682456248046],[119,275,72,-0.03517450346567822],[119,275,73,-0.021626952864115447],[119,275,74,-0.012221409317173736],[119,275,75,-0.025736069335131465],[119,275,76,-0.03639240536225979],[119,275,77,-0.03180197069207736],[119,275,78,-0.02185331971874799],[119,275,79,-0.019862922115520792],[119,276,64,-0.03189999274077932],[119,276,65,-0.02173067120005399],[119,276,66,-0.016681390896596066],[119,276,67,-0.012480494211463989],[119,276,68,-0.015302024920426677],[119,276,69,-0.030128152229016467],[119,276,70,-0.03924873679715538],[119,276,71,-0.03968789881107035],[119,276,72,-0.03470698468223891],[119,276,73,-0.021337749810930486],[119,276,74,-0.011966664910461307],[119,276,75,-0.0252405064237948],[119,276,76,-0.03582270486797214],[119,276,77,-0.03133002985479239],[119,276,78,-0.021491475081480308],[119,276,79,-0.01951952063969656],[119,277,64,-0.03154293455913704],[119,277,65,-0.021369718057764834],[119,277,66,-0.016400438773387205],[119,277,67,-0.01233168801766466],[119,277,68,-0.015217999666456893],[119,277,69,-0.029908874620977136],[119,277,70,-0.03886304227660203],[119,277,71,-0.03920086520031682],[119,277,72,-0.034260556330542154],[119,277,73,-0.021061758986919532],[119,277,74,-0.01172177323803668],[119,277,75,-0.02476307886505644],[119,277,76,-0.03527502649738954],[119,277,77,-0.030878014666543836],[119,277,78,-0.021146165184788637],[119,277,79,-0.01919167259008474],[119,278,64,-0.03120247781299871],[119,278,65,-0.021022459892078238],[119,278,66,-0.01612908100009448],[119,278,67,-0.012189155990475362],[119,278,68,-0.015139619031157523],[119,278,69,-0.029699764560416453],[119,278,70,-0.03849322857195917],[119,278,71,-0.03873561245560954],[119,278,72,-0.0338350432582958],[119,278,73,-0.02079883017516936],[119,278,74,-0.01148647413729798],[119,278,75,-0.024303425476418908],[119,278,76,-0.034749107777808715],[119,278,77,-0.030445685100189208],[119,278,78,-0.020817080758003214],[119,278,79,-0.018879063253681123],[119,279,64,-0.03087847947703455],[119,279,65,-0.020688675881249487],[119,279,66,-0.015867204407481527],[119,279,67,-0.012052876313635478],[119,279,68,-0.015066935576269369],[119,279,69,-0.0295009598449339],[119,279,70,-0.0381393862825798],[119,279,71,-0.03829202843726196],[119,279,72,-0.03343027276184713],[119,279,73,-0.020548816366495033],[119,279,74,-0.011260511530187329],[119,279,75,-0.02386118723445795],[119,279,76,-0.034244686339119146],[119,279,77,-0.03003280458081581],[119,279,78,-0.020503920820382583],[119,279,79,-0.018581386282318882],[119,280,64,-0.03057080000117615],[119,280,65,-0.02036814652565599],[119,280,66,-0.015614693354240775],[119,280,67,-0.011922825997374582],[119,280,68,-0.01500000243826764],[119,280,69,-0.029312594092654187],[119,280,70,-0.037801599620460556],[119,280,71,-0.03787000109123513],[119,280,72,-0.033046075425110386],[119,280,73,-0.0203115741162523],[119,280,74,-0.011043633508089656],[119,280,75,-0.023436007727375294],[119,280,76,-0.03376150063300842],[119,280,77,-0.02963914057273728],[119,280,78,-0.02020639301767687],[119,280,79,-0.018298343972700727],[119,281,64,-0.030279303701392094],[119,281,65,-0.020060654048434413],[119,281,66,-0.015371430153552815],[119,281,67,-0.011798981143719243],[119,281,68,-0.014938873391743043],[119,281,69,-0.029134797040301766],[119,281,70,-0.03747994709052368],[119,281,71,-0.03746941937286092],[119,281,72,-0.03268228592473282],[119,281,73,-0.020086963877317662],[119,281,74,-0.010835592390853032],[119,281,75,-0.023027533572576885],[119,281,76,-0.03329929062368971],[119,281,77,-0.02926446513797575],[119,281,78,-0.01992421392411232],[119,281,79,-0.018029647512900794],[119,282,64,-0.030003859128133584],[119,282,65,-0.019765982769932758],[119,282,66,-0.015137295483273507],[119,282,67,-0.011681317202448324],[119,282,68,-0.0148836029107922],[119,282,69,-0.028967694846919977],[119,282,70,-0.03717450216872904],[119,282,71,-0.03709017414164519],[119,282,72,-0.032338743800148013],[119,282,73,-0.019874850308559504],[119,282,74,-0.010636144759993936],[119,282,75,-0.022635414798551797],[119,282,76,-0.03285779844849811],[119,282,77,-0.028908555465137927],[119,282,78,-0.01965710930992305],[119,282,79,-0.01777501719558151],[119,283,64,-0.029744339411758833],[119,283,65,-0.019483919455407554],[119,283,66,-0.014912168778809526],[119,283,67,-0.01156980921687425],[119,283,68,-0.014834246227566933],[119,283,69,-0.028811410401256416],[119,283,70,-0.036885333975490264],[119,283,71,-0.0367321590253734],[119,283,72,-0.03201529418726569],[119,283,73,-0.019675102558137002],[119,283,74,-0.010445051466162175],[119,283,75,-0.022259305190445635],[119,283,76,-0.03243676904684097],[119,283,77,-0.02857119436766609],[119,283,78,-0.01940481437456574],[119,283,79,-0.01753418259817862],[119,284,64,-0.029500622584243713],[119,284,65,-0.019214253635445266],[119,284,66,-0.01469592860782167],[119,284,67,-0.011464432058647363],[119,284,68,-0.014790859387068589],[119,284,69,-0.028666063630823118],[119,284,70,-0.03661250794194899],[119,284,71,-0.036395271251843594],[119,284,72,-0.03171178851460651],[119,284,73,-0.01948759452094071],[119,284,74,-0.010262077610919428],[119,284,75,-0.02189886259879945],[119,284,76,-0.03203595075608518],[119,284,77,-0.0282521707504658],[119,284,78,-0.019167073945716213],[119,284,79,-0.017306882730271412],[119,285,64,-0.02927259187649869],[119,285,65,-0.018956777898644892],[119,285,66,-0.014488453025986222],[119,285,67,-0.01136516065081427],[119,285,68,-0.014753499297227697],[119,285,69,-0.02853177181065311],[119,285,70,-0.036356086466769716],[119,285,71,-0.036079412446656293],[119,285,72,-0.03142808516074813],[119,285,73,-0.019312205069472545],[119,285,74,-0.010086992502870715],[119,285,75,-0.021553749211010356],[119,285,76,-0.0316550958730708],[119,285,77,-0.027951280043944034],[119,285,78,-0.018943642644109984],[119,285,79,-0.01709286614831843],[119,286,64,-0.02906013599062143],[119,286,65,-0.01871128815615265],[119,286,66,-0.014289619913128338],[119,286,67,-0.011271970178386926],[119,286,68,-0.014722223773260502],[119,286,69,-0.0284086498697883],[119,286,70,-0.03611612956121795],[119,286,71,-0.03578448939558595],[119,286,72,-0.031164050071993545],[119,286,73,-0.019148818257441733],[119,286,74,-0.009919569588175763],[119,286,75,-0.021223631785154864],[119,286,76,-0.03129396118005075],[119,286,77,-0.027668324604522915],[119,286,78,-0.01873428501425014],[119,286,79,-0.016891891037902975],[119,287,64,-0.02886314934639957],[119,287,65,-0.01847758387766786],[119,287,66,-0.01409930728910922],[119,287,67,-0.011184836285695674],[119,287,68,-0.01469709157524107],[119,287,69,-0.028296810693550608],[119,287,70,-0.03589269548038702],[119,287,71,-0.03551041477012728],[119,287,72,-0.030919557339186287],[119,287,73,-0.018997323495306105],[119,287,74,-0.00975958635543012],[119,287,75,-0.02090818184587438],[119,287,76,-0.03095230843393808],[119,287,77,-0.027403114080693753],[119,287,78,-0.01853877562093048],[119,287,79,-0.01670372526355922],[119,288,64,-0.0286815323013652],[119,288,65,-0.018255468298567154],[119,288,66,-0.01391739360891276],[119,288,67,-0.011103735259810238],[119,288,68,-0.014678162437773805],[119,288,69,-0.02819636541966642],[119,288,70,-0.035685841338539026],[119,288,71,-0.03525710781486711],[119,288,72,-0.030694489732600038],[119,288,73,-0.018857615696943206],[119,288,74,-0.009606824214874916],[119,288,75,-0.02060707584208222],[119,288,76,-0.030629904817826424],[119,288,77,-0.027155465743677876],[119,288,78,-0.01835689911144897],[119,288,79,-0.016528146386180966],[119,289,64,-0.028515187389528764],[119,289,65,-0.01804474557775132],[119,289,66,-0.013743756308212585],[119,289,67,-0.011028643124952756],[119,289,68,-0.014665495356515951],[119,289,69,-0.028107420742945834],[119,289,70,-0.03549561969102364],[119,289,71,-0.035024490579073975],[119,289,72,-0.030488735407584604],[119,289,73,-0.01872959269000022],[119,289,74,-0.009461066130461578],[119,289,75,-0.020319992901767232],[119,289,76,-0.030326521120776936],[119,289,77,-0.026925203063666168],[119,289,78,-0.018188449078044948],[119,289,79,-0.01636494068932769],[119,290,64,-0.028363987805486657],[119,290,65,-0.017845196726788654],[119,290,66,-0.013578258160438894],[119,290,67,-0.010959527139320559],[119,290,68,-0.014659134696399324],[119,290,69,-0.028030055334339245],[119,290,70,-0.03532204702597127],[119,290,71,-0.03481245326065583],[119,290,72,-0.030302158138903513],[119,290,73,-0.018613133714790477],[119,290,74,-0.00932207873493172],[119,290,75,-0.0200465960632985],[119,290,76,-0.030041914312503665],[119,290,77,-0.02671214228064652],[119,290,78,-0.018033218787746857],[119,290,79,-0.01621389553654482],[119,291,64,-0.028227794377219728],[119,291,65,-0.017656592523418974],[119,291,66,-0.013420754727704282],[119,291,67,-0.010896350368086909],[119,291,68,-0.014659117545428294],[119,291,69,-0.02796433292512537],[119,291,70,-0.03516512164987153],[119,291,71,-0.034620873897147734],[119,291,72,-0.030134614171215563],[119,291,73,-0.01850811126509527],[119,291,74,-0.009189621818029505],[119,291,75,-0.01978654263971774],[119,291,76,-0.029775837631153868],[119,291,77,-0.026516100149566433],[119,291,78,-0.017891006297634036],[119,291,79,-0.01607480360350686],[119,292,64,-0.028106474226951405],[119,292,65,-0.017478707750494038],[119,292,66,-0.013271102636720133],[119,292,67,-0.01083907680310199],[119,292,68,-0.014665481818670147],[119,292,69,-0.027910316567875126],[119,292,70,-0.035024843092636836],[119,292,71,-0.034449639655481284],[119,292,72,-0.029985970388874565],[119,292,73,-0.01841440384820943],[119,292,74,-0.009063458557505545],[119,292,75,-0.019539495352273843],[119,292,76,-0.02952805138557038],[119,292,77,-0.026336902209635533],[119,292,78,-0.017761619874417822],[119,292,79,-0.015947467302037933],[119,293,64,-0.027999900733435012],[119,293,65,-0.01731132116152184],[119,293,66,-0.013129159706336423],[119,293,67,-0.010787671426642146],[119,293,68,-0.014678266165427873],[119,293,69,-0.027868068762309194],[119,293,70,-0.03490121246276369],[119,293,71,-0.034298647134999034],[119,293,72,-0.029856104469424802],[119,293,73,-0.01833189585823233],[119,293,74,-0.008943355170785247],[119,293,75,-0.019305122188905156],[119,293,76,-0.029298323101814315],[119,293,77,-0.026174382841130044],[119,293,78,-0.01764487782093385],[119,293,79,-0.015831698580802172],[119,294,64,-0.027907953282591262],[119,294,65,-0.01715421527660626],[119,294,66,-0.012994784971280817],[119,294,67,-0.010742100206119112],[119,294,68,-0.01469750978086235],[119,294,69,-0.027837651428346398],[119,294,70,-0.03479423259440308],[119,294,71,-0.034167802424867486],[119,294,72,-0.029744904816981197],[119,294,73,-0.018260477292186633],[119,294,74,-0.008829080439786263],[119,294,75,-0.01908309611750954],[119,294,76,-0.02908642752654471],[119,294,77,-0.026028385203538534],[119,294,78,-0.01754060821370151],[119,294,79,-0.015727318649994885],[119,295,64,-0.02783051697924214],[119,295,65,-0.017007176140932685],[119,295,66,-0.012867838677468314],[119,295,67,-0.01070233006592856],[119,295,68,-0.014723252196651606],[119,295,69,-0.02781912585575665],[119,295,70,-0.03470390816151889],[119,295,71,-0.03405702110874413],[119,295,72,-0.029652270440500728],[119,295,73,-0.01820004342664628],[119,295,74,-0.008720405206234051],[119,295,75,-0.01887309475800923],[119,295,76,-0.028892146584830407],[119,295,77,-0.025898761129456948],[119,295,78,-0.017448648601913908],[119,295,79,-0.01563415767156839],[119,296,64,-0.027767482318361257],[119,296,65,-0.01686999304487633],[119,296,66,-0.012748182248233576],[119,296,67,-0.010668328835381456],[119,296,68,-0.014755533048807239],[119,296,69,-0.027812552628221812],[119,296,70,-0.03463024575710792],[119,296,71,-0.033966228214421135],[119,296,72,-0.029578110774514166],[119,296,73,-0.018150494452807402],[119,296,74,-0.008617101836559463],[119,296,75,-0.018674800012673895],[119,296,76,-0.028715269291243788],[119,296,77,-0.02578537097256572],[119,296,78,-0.017368845666450344],[119,296,79,-0.015552054413837163],[119,297,64,-0.027718744814179783],[119,297,65,-0.016742458204751447],[119,297,66,-0.01263567822082958],[119,297,67,-0.010640065171629371],[119,297,68,-0.01479439182072212],[119,297,69,-0.027817991519653994],[119,297,70,-0.03457325393552197],[119,297,71,-0.03389535810607127],[119,297,72,-0.02952234543971841],[119,297,73,-0.018111735067801442],[119,297,74,-0.008518943655389544],[119,297,75,-0.018487897654153495],[119,297,76,-0.02855559161308623],[119,297,77,-0.02568808340793214],[119,297,78,-0.017301054837338924],[119,297,79,-0.015480855869163873],[119,298,64,-0.027684204660157384],[119,298,65,-0.01662436647697498],[119,298,66,-0.012530190225431814],[119,298,67,-0.0106175085284885],[119,298,68,-0.014839867630646576],[119,298,69,-0.027835501431004404],[119,298,70,-0.034532943285535855],[119,298,71,-0.033844354385370416],[119,298,72,-0.029484904008663354],[119,298,73,-0.018083674087214886],[119,298,74,-0.008425704413188828],[119,298,75,-0.018312076936612937],[119,298,76,-0.028412916349917324],[119,298,77,-0.025606775247512537],[119,298,78,-0.017245139932078407],[119,298,79,-0.015420416896895337],[119,299,64,-0.027663780515287277],[119,299,65,-0.016515529021372193],[119,299,66,-0.012431596746940346],[119,299,67,-0.010600642739912894],[119,299,68,-0.014892012465372674],[119,299,69,-0.027865153608278834],[119,299,70,-0.03450933961931364],[119,299,71,-0.03381318273543729],[119,299,72,-0.029465738565132286],[119,299,73,-0.018066236728493012],[119,299,74,-0.008337170305302557],[119,299,75,-0.01814704261970009],[119,299,76,-0.028287065296241913],[119,299,77,-0.025541343420460588],[119,299,78,-0.0172009848538799],[119,299,79,-0.015370611826272924],[119,300,64,-0.027657428360247482],[119,300,65,-0.016415791942812348],[119,300,66,-0.012339809782700387],[119,300,67,-0.010589484412543048],[119,300,68,-0.014950909133632515],[119,300,69,-0.027907049493222563],[119,300,70,-0.034502501704691796],[119,300,71,-0.03380184820742125],[119,300,72,-0.02946484062753384],[119,300,73,-0.01805938120444783],[119,300,74,-0.008253156248700134],[119,300,75,-0.01799253117508724],[119,300,76,-0.028177895516470045],[119,300,77,-0.025491721003451914],[119,300,78,-0.01716850928891014],[119,300,79,-0.015331350009539125],[119,301,64,-0.02766511726810589],[119,301,65,-0.016325012399390815],[119,301,66,-0.012254751510707292],[119,301,67,-0.01058405984975197],[119,301,68,-0.015016648251157986],[119,301,69,-0.027961298090688307],[119,301,70,-0.034512498978094566],[119,301,71,-0.0338103729197267],[119,301,72,-0.029482218920096528],[119,301,73,-0.018063076605793656],[119,301,74,-0.008173483871315574],[119,301,75,-0.017848289085326083],[119,301,76,-0.02808527807507329],[119,301,77,-0.025457856056149718],[119,301,78,-0.017147647550005442],[119,301,79,-0.01530255484473066],[119,302,64,-0.027686825362022428],[119,302,65,-0.016243054678725978],[119,302,66,-0.012176350717614654],[119,302,67,-0.010584401522948818],[119,302,68,-0.015089324559871978],[119,302,69,-0.028028012464278673],[119,302,70,-0.03453940818082051],[119,302,71,-0.03383879246477838],[119,302,72,-0.029517895662945905],[119,302,73,-0.018077299144963786],[119,302,74,-0.00809797771247473],[119,302,75,-0.017714069183384],[119,302,76,-0.028009094643835202],[119,302,77,-0.025439708181982237],[119,302,78,-0.017138345011678074],[119,302,79,-0.015284160263974458],[119,303,64,-0.027722539581061745],[119,303,65,-0.016169790043395547],[119,303,66,-0.012104542963404009],[119,303,67,-0.01059054823754195],[119,303,68,-0.015169036894421235],[119,303,69,-0.028107309835726846],[119,303,70,-0.03458331355137997],[119,303,71,-0.03388715580624909],[119,303,72,-0.02957190630984154],[119,303,73,-0.018102031831787775],[119,303,74,-0.00802646484206497],[119,303,75,-0.01758963037084123],[119,303,76,-0.02794923744727862],[119,303,77,-0.025437248391820343],[119,303,78,-0.017140557825279373],[119,303,79,-0.0152761104819119],[119,304,64,-0.027772255441170155],[119,304,65,-0.016105096579137335],[119,304,66,-0.012039270761683584],[119,304,67,-0.010602545315591856],[119,304,68,-0.015255888159702323],[119,304,69,-0.028199311693250545],[119,304,70,-0.03464430701919147],[119,304,71,-0.03395552514873613],[119,304,72,-0.029644299251944475],[119,304,73,-0.018137264135970537],[119,304,74,-0.007958774489442804],[119,304,75,-0.017474737339306844],[119,304,76,-0.027905609201550635],[119,304,77,-0.025450458954390767],[119,304,78,-0.017154252626101815],[119,304,79,-0.015278359743240072],[119,305,64,-0.027835976790769268],[119,305,65,-0.01604885904597235],[119,305,66,-0.011980483776379775],[119,305,67,-0.010620444795372894],[119,305,68,-0.015349985318874708],[119,305,69,-0.028304143908942224],[119,305,70,-0.03472248839995241],[119,305,71,-0.034043975778184576],[119,305,72,-0.029735135485125935],[119,305,73,-0.018182991634858075],[119,305,74,-0.007894737682474846],[119,305,75,-0.01736916029626133],[119,305,76,-0.027878123047380327],[119,305,77,-0.02547933323270435],[119,305,78,-0.01717940623130176],[119,305,79,-0.01529087206875373],[119,306,64,-0.027913715560463796],[119,306,65,-0.016000968732421204],[119,306,66,-0.011928139035610973],[119,306,67,-0.010644305648093273],[119,306,68,-0.015451439391440974],[119,306,69,-0.02842193686545191],[119,306,70,-0.03481796559318496],[119,306,71,-0.03415259587133275],[119,306,72,-0.029844488238250755],[119,306,73,-0.01823921564499971],[119,306,74,-0.007834186897232136],[119,306,75,-0.017272674696694627],[119,306,76,-0.027866702477886248],[119,306,77,-0.025523875505858398],[119,306,78,-0.017216005327542715],[119,306,79,-0.015313620999325522],[119,307,64,-0.02800549150639376],[119,307,65,-0.015961323313017257],[119,307,66,-0.011882201163582873],[119,307,67,-0.010674194012068731],[119,307,68,-0.015560365461073207],[119,307,69,-0.028552825592427663],[119,307,70,-0.034930854782662855],[119,307,71,-0.034281486272437475],[119,307,72,-0.029972442559776297],[119,307,73,-0.018305942836029057],[119,307,74,-0.007776955718987723],[119,307,75,-0.017185060982071],[119,307,76,-0.027871281262153734],[119,307,77,-0.025584100775626693],[119,307,78,-0.017264046147253166],[119,307,79,-0.01534658933729502],[119,308,64,-0.028111331946826475],[119,308,65,-0.015929826709350822],[119,308,66,-0.011842642631376615],[119,308,67,-0.010710183444682777],[119,308,68,-0.015676882692970403],[119,308,69,-0.028696949913393676],[119,308,70,-0.03506128064062662],[119,308,71,-0.034430760235526436],[119,308,72,-0.03011909485994508],[119,308,73,-0.018383184825431158],[119,308,74,-0.00772287851531767],[119,308,75,-0.017106104328332983],[119,308,76,-0.027891803365674584],[119,308,77,-0.02566003455734337],[119,308,78,-0.01732353413242788],[119,308,79,-0.015389768884808835],[119,309,64,-0.028231271491626016],[119,309,65,-0.01590638895489579],[119,309,66,-0.01180944402751679],[119,309,67,-0.010752355192486317],[119,309,68,-0.015801114360624677],[119,309,69,-0.028854454603946117],[119,309,70,-0.03520937653688442],[119,309,71,-0.034600543130404414],[119,309,72,-0.030284552405765233],[119,309,73,-0.018470957752790177],[119,309,74,-0.007671790122245675],[119,309,75,-0.017035594404824227],[119,309,76,-0.027928222868891687],[119,309,77,-0.025751712654656547],[119,309,78,-0.01739448358491608],[119,309,79,-0.015443160178705562],[119,310,64,-0.028365351764290024],[119,310,65,-0.01589092606389169],[119,310,66,-0.011782594349220554],[119,310,67,-0.010800798479812263],[119,310,68,-0.01593318788197733],[119,310,69,-0.029025489562357523],[119,310,70,-0.035375284754087646],[119,310,71,-0.034790972110623604],[119,310,72,-0.030468932765901496],[119,310,73,-0.01856928183215319],[119,310,74,-0.0076235255445228235],[119,310,75,-0.016973325146181252],[119,310,76,-0.027980503885242036],[119,310,77,-0.0258591809178004],[119,310,78,-0.01747691730216201],[119,310,79,-0.015506772221600448],[119,311,64,-0.02851362111631595],[119,311,65,-0.015883359904582766],[119,311,66,-0.011762091315235389],[119,311,67,-0.010855610816294674],[119,311,68,-0.01607323486504858],[119,311,69,-0.029210209993887508],[119,311,70,-0.03555915671066398],[119,311,71,-0.03500219574162312],[119,311,72,-0.030672363202543882],[119,311,73,-0.018678180881203252],[119,311,74,-0.007577919671300228],[119,311,75,-0.016919094539434992],[119,311,76,-0.028048620480260293],[119,311,77,-0.02598249498513381],[119,311,78,-0.01757086619741321],[119,311,79,-0.015580622208910301],[119,312,64,-0.028676134333706457],[119,312,65,-0.01588361807712602],[119,312,66,-0.01174794170115986],[119,312,67,-0.010916898323681232],[119,312,68,-0.0162213911632207],[119,312,69,-0.029408776610297213],[119,312,70,-0.035761153193064776],[119,312,71,-0.03523437358722744],[119,312,72,-0.030894980007255206],[119,312,73,-0.018797681825981728],[119,312,74,-0.007534807008605226],[119,312,75,-0.0168727044287249],[119,312,76,-0.02813255659344424],[119,312,77,-0.026121720007762167],[119,312,78,-0.017676368903437597],[119,312,79,-0.01566473525162066],[119,313,64,-0.028852952335492732],[119,313,65,-0.015891633796493883],[119,313,66,-0.011740161698116576],[119,313,67,-0.010984776082315866],[119,313,68,-0.01637779694044626],[119,313,69,-0.029621355846253195],[119,313,70,-0.03598144459915477],[119,313,71,-0.03548767575268394],[119,313,72,-0.031136927777748954],[119,313,73,-0.018927814179962716],[119,313,74,-0.007494021430197934],[119,313,75,-0.016833960340208686],[119,313,76,-0.028232305964735048],[119,313,77,-0.026276930357151344],[119,313,78,-0.017793471358842884],[119,313,79,-0.015759144094684867],[119,314,64,-0.029044141864225572],[119,314,65,-0.01590734578071787],[119,314,66,-0.011738777295620497],[119,314,67,-0.011059368497657466],[119,314,68,-0.016542596746754793],[119,314,69,-0.029848120094505416],[119,314,70,-0.036220211194743876],[119,314,71,-0.03576228238242949],[119,314,72,-0.031398358632521786],[119,314,73,-0.01906860949636278],[119,314,74,-0.007455395948559812],[119,314,75,-0.016802671329929002],[119,314,76,-0.02834787206761736],[119,314,77,-0.02644820931573851],[119,314,78,-0.017922226376152286],[119,314,79,-0.015863888831037395],[119,315,64,-0.029249775168443095],[119,315,65,-0.015930698144819393],[119,315,66,-0.011743824689429213],[119,315,67,-0.011140809687163269],[119,315,68,-0.01671593960451172],[119,315,69,-0.030089247961890258],[119,315,70,-0.03647764338540008],[119,315,71,-0.036058383110764716],[119,315,72,-0.03167943136022164],[119,315,73,-0.019220100792635603],[119,315,74,-0.007418762507925419],[119,315,75,-0.016778649857555842],[119,315,76,-0.028479268050964207],[119,315,77,-0.02663564875062128],[119,315,78,-0.018062693190839894],[119,315,79,-0.015979016611283512],[119,316,64,-0.02946992967719686],[119,316,65,-0.015961640300776944],[119,316,66,-0.011755350715092917],[119,316,67,-0.011229243887814542],[119,316,68,-0.01689797910596176],[119,316,69,-0.030344924548374213],[119,316,70,-0.036753942005823145],[119,316,71,-0.036376176463630484],[119,316,72,-0.03198031050062981],[119,316,73,-0.019382321946194665],[119,316,74,-0.007383951801440631],[119,316,75,-0.016761711689092757],[119,316,76,-0.028626516691895247],[119,316,77,-0.026839348770507563],[119,316,78,-0.018214936990607174],[119,316,79,-0.016104581349232528],[119,317,64,-0.02970468766679111],[119,317,65,-0.016000126863887982],[119,317,66,-0.011773413307852292],[119,317,67,-0.011324825884517246],[119,317,68,-0.0170888735226761],[119,317,69,-0.030615341751511847],[119,317,70,-0.037049318629182086],[119,317,71,-0.036715869209695384],[119,317,72,-0.032301165354133896],[119,317,73,-0.019555307060505702],[119,317,74,-0.007350793114702226],[119,317,75,-0.016751675831788562],[119,317,76,-0.028789650362025007],[119,317,77,-0.02705941736619561],[119,317,78,-0.01837902842425401],[119,317,79,-0.016240643423538346],[119,318,64,-0.02995413591995558],[119,318,65,-0.01604611756586867],[119,318,66,-0.01179808198942183],[119,318,67,-0.011427721459521967],[119,318,68,-0.01728878592757689],[119,318,69,-0.03090069859881537],[119,318,70,-0.03736399589891409],[119,318,71,-0.03707767565898444],[119,318,72,-0.03264216891658709],[119,318,73,-0.019739089800791722],[119,318,74,-0.007319114198094168],[119,318,75,-0.016748364504639315],[119,318,76,-0.02896871100958902],[119,318,77,-0.027295970034946004],[119,318,78,-0.0185550430895834],[119,318,79,-0.01638726937581516],[119,319,64,-0.030218360180410592],[119,319,65,-0.016099572963060037],[119,319,66,-0.011829429590210962],[119,319,67,-0.01153810477062842],[119,319,68,-0.017497887491248997],[119,319,69,-0.031201196435641468],[119,319,70,-0.03769819771686134],[119,319,71,-0.03746181306268468],[119,319,72,-0.033003492807899895],[119,319,73,-0.019933699123655967],[119,319,74,-0.0072887455654724],[119,319,75,-0.016751604545325195],[119,319,76,-0.02916374272217292],[119,319,77,-0.027549124452545422],[119,319,78,-0.018743060963719724],[119,319,79,-0.016544529257657013],[120,-64,64,-0.23396950255743781],[120,-64,65,-0.21815990796500737],[120,-64,66,-0.19073227210192284],[120,-64,67,-0.21903618714013356],[120,-64,68,-0.22505776866008573],[120,-64,69,-0.17448722103808256],[120,-64,70,-0.09386142752896795],[120,-64,71,-0.021174998286579268],[120,-64,72,0.006997601052345124],[120,-64,73,-0.05411981302362636],[120,-64,74,-0.14301779386703464],[120,-64,75,-0.21575683304604495],[120,-64,76,-0.15362757912927497],[120,-64,77,-0.0014713701326466862],[120,-64,78,0.0555475538964391],[120,-64,79,0.0015611756992260704],[120,-63,64,-0.23032397368025476],[120,-63,65,-0.21452550152607622],[120,-63,66,-0.18755164334517338],[120,-63,67,-0.21433730388571645],[120,-63,68,-0.21975816981728205],[120,-63,69,-0.17094306481900323],[120,-63,70,-0.09191116421650522],[120,-63,71,-0.019643256606201556],[120,-63,72,0.007864010602684657],[120,-63,73,-0.05331752121977718],[120,-63,74,-0.1412659870323455],[120,-63,75,-0.21272025971542788],[120,-63,76,-0.15140448021661404],[120,-63,77,-0.0022184804218579332],[120,-63,78,0.052900512599262636],[120,-63,79,-4.4352592370912124E-4],[120,-62,64,-0.2267782117868083],[120,-62,65,-0.21098819067480643],[120,-62,66,-0.1844426662335096],[120,-62,67,-0.2097483892604057],[120,-62,68,-0.21460806716876604],[120,-62,69,-0.1675114940738747],[120,-62,70,-0.09003322677595933],[120,-62,71,-0.01819175587734405],[120,-62,72,0.008654817848831306],[120,-62,73,-0.05256021147478698],[120,-62,74,-0.13955468107748825],[120,-62,75,-0.20974789498117372],[120,-62,76,-0.14923682763732338],[120,-62,77,-0.0029725743831205986],[120,-62,78,0.05029267653312104],[120,-62,79,-0.002402492624855524],[120,-61,64,-0.2233289494341422],[120,-61,65,-0.207544671823474],[120,-61,66,-0.1814028720709055],[120,-61,67,-0.2052663416863442],[120,-61,68,-0.20960254685998836],[120,-61,69,-0.16418784769395103],[120,-61,70,-0.08822452271866617],[120,-61,71,-0.0168179849271999],[120,-61,72,0.00937267358475578],[120,-61,73,-0.05184572130146884],[120,-61,74,-0.13788174564107955],[120,-61,75,-0.20683713041174356],[120,-61,76,-0.1471225757580215],[120,-61,77,-0.0037326731401906292],[120,-61,78,0.047724089013823884],[120,-61,79,-0.004316113733838921],[120,-60,64,-0.21997285064061795],[120,-60,65,-0.2041915401255788],[120,-60,66,-0.17842967231672135],[120,-60,67,-0.2008879372676385],[120,-60,68,-0.20473662445677418],[120,-60,69,-0.16096745635062124],[120,-60,70,-0.08648200544437964],[120,-60,71,-0.015519516791966483],[120,-60,72,0.01002012585246365],[120,-60,73,-0.051171952780774355],[120,-60,74,-0.13624506174121045],[120,-60,75,-0.20398532169040662],[120,-60,76,-0.14505964151288903],[120,-60,77,-0.0044978017337578054],[120,-60,78,0.045194778584647786],[120,-60,79,-0.006184769613953678],[120,-59,64,-0.21670654234578557],[120,-59,65,-0.2009253911043831],[120,-59,66,-0.17552050170651154],[120,-59,67,-0.1966099842316941],[120,-59,68,-0.20000539567595063],[120,-59,69,-0.1578457471092387],[120,-59,70,-0.08480269236000619],[120,-59,71,-0.014293960523383012],[120,-59,72,0.01059967827551109],[120,-59,73,-0.0505368443129929],[120,-59,74,-0.1346425307480008],[120,-59,75,-0.20118982243544406],[120,-59,76,-0.14304593264962004],[120,-59,77,-0.005266994434575758],[120,-59,78,0.042704768337036896],[120,-59,79,-0.0080088182202427],[120,-58,64,-0.21352661666719136],[120,-58,65,-0.19774282144040423],[120,-58,66,-0.17267281717630786],[120,-58,67,-0.19242932313672306],[120,-58,68,-0.19540403671891174],[120,-58,69,-0.15481824220801071],[120,-58,70,-0.08318366403745157],[120,-58,71,-0.013138962447671163],[120,-58,72,0.011113789314689877],[120,-58,73,-0.04993836952915509],[120,-58,74,-0.13307207290236414],[120,-58,75,-0.19844798380489984],[120,-58,76,-0.14107934782773146],[120,-58,77,-0.0060392934865109845],[120,-58,78,0.04025407882276126],[120,-58,79,-0.009788592384775942],[120,-57,64,-0.2104296328649064],[120,-57,65,-0.1946404295314642],[120,-57,66,-0.16988409672486454],[120,-57,67,-0.1883428270113076],[120,-57,68,-0.19092780439074825],[120,-57,69,-0.15188055760307465],[120,-57,70,-0.08162206319888862],[120,-57,71,-0.012052207203687732],[120,-57,72,0.01156487178680573],[120,-57,73,-0.04937453606184964],[120,-57,74,-0.13153162576929095],[120,-57,75,-0.19575715399442128],[120,-57,76,-0.13915777658551484],[120,-57,77,-0.006813747676319704],[120,-57,78,0.03784273111053024],[120,-57,79,-0.011524397053681442],[120,-56,64,-0.2074121190477002],[120,-56,65,-0.19161481589090446],[120,-56,66,-0.16715183829185745],[120,-56,67,-0.1843474015039894],[120,-56,68,-0.1865720360930377],[120,-56,69,-0.1490284013570812],[120,-56,70,-0.08011509355659241],[120,-56,71,-0.011031418540990245],[120,-56,72,0.011955292668598903],[120,-56,73,-0.04884338417553795],[120,-56,74,-0.1300191426505305],[120,-56,75,-0.19311467766725246],[120,-56,76,-0.13727909920377213],[120,-56,77,-0.007589410744924458],[120,-56,78,0.03547074997564073],[120,-56,79,-0.013216506484354068],[120,-55,64,-0.20447057364302854],[120,-55,65,-0.18866258340321704],[120,-55,66,-0.164473558662287],[120,-55,67,-0.18043998504836234],[120,-55,68,-0.182332149707756],[120,-55,69,-0.14625757189872826],[120,-55,70,-0.07866001852584471],[120,-55,71,-0.010074359883005984],[120,-55,72,0.012287373178609926],[120,-55,73,-0.04834298527007504],[120,-55,74,-0.12853259097704278],[120,-55,75,-0.19051789533996497],[120,-55,76,-0.13544118648192055],[120,-55,77,-0.008365339652320487],[120,-55,78,0.03313816720793291],[120,-55,79,-0.014865161416613296],[120,-54,64,-0.20160146665470802],[120,-54,65,-0.18578033745747288],[120,-54,66,-0.16184679240776115],[120,-54,67,-0.17661754904958785],[120,-54,68,-0.17820364339012063],[120,-54,69,-0.14356395618063497],[120,-54,70,-0.07725415982936633],[120,-54,71,-0.009178834661086335],[120,-54,72,0.01256338912905123],[120,-54,73,-0.04787144027149457],[120,-54,74,-0.12706995070175908],[120,-54,75,-0.1879641427481119],[120,-54,76,-0.133641899442856],[120,-54,77,-0.009140592708768012],[120,-54,78,0.03084502502296285],[120,-54,79,-0.016470566232007617],[120,-53,64,-0.19880141076048255],[120,-53,65,-0.18296484543017755],[120,-53,66,-0.15926923227804252],[120,-53,67,-0.17287725442704333],[120,-53,68,-0.17418225568261922],[120,-53,69,-0.14094365989980143],[120,-53,70,-0.07589496843798156],[120,-53,71,-0.008342694528250627],[120,-53,72,0.012785584172743942],[120,-53,73,-0.0474269255986419],[120,-53,74,-0.12562934115160382],[120,-53,75,-0.18545094300903134],[120,-53,76,-0.13187922836590307],[120,-53,77,-0.009914238236386966],[120,-53,78,0.02859141077368116],[120,-53,79,-0.018032906118349477],[120,-52,64,-0.19606830228653477],[120,-52,65,-0.180214102985969],[120,-52,66,-0.1567396721612134],[120,-52,67,-0.16921748526970193],[120,-52,68,-0.1702650226186462],[120,-52,69,-0.13839388330323682],[120,-52,70,-0.07458050465051716],[120,-52,71,-0.007563885817794943],[120,-52,72,0.012956259227918833],[120,-52,73,-0.04700801293247087],[120,-52,74,-0.1242098818124118],[120,-52,75,-0.1829772954287749],[120,-52,76,-0.13015222476182078],[120,-52,77,-0.010685435163755074],[120,-52,78,0.026377645433561383],[120,-52,79,-0.019552501009651228],[120,-51,64,-0.19340064017997458],[120,-51,65,-0.17752668717946019],[120,-51,66,-0.15425742764785455],[120,-51,67,-0.16563718326781404],[120,-51,68,-0.1664495874664105],[120,-51,69,-0.13591236822603053],[120,-51,70,-0.07330913619031441],[120,-51,71,-0.0068403981151738775],[120,-51,72,0.013077730932401213],[120,-51,73,-0.04661348183788645],[120,-51,74,-0.12281117827470296],[120,-51,75,-0.18054289253969782],[120,-51,76,-0.1284604361407068],[120,-51,77,-0.011453418237027571],[120,-51,78,0.024204098044402305],[120,-51,79,-0.021029781200481434],[120,-50,64,-0.19079693360710448],[120,-50,65,-0.17490119795385559],[120,-50,66,-0.15182183777478206],[120,-50,67,-0.16213529171971544],[120,-50,68,-0.1627336293384686],[120,-50,69,-0.13349693041833177],[120,-50,70,-0.07207928254244494],[120,-50,71,-0.0061702342686290965],[120,-50,72,0.01315228645556036],[120,-50,73,-0.04624215460633672],[120,-50,74,-0.12143287236250161],[120,-50,75,-0.1781474430902921],[120,-50,76,-0.1268034176251373],[120,-50,77,-0.012217468054830085],[120,-50,78,0.022071062774342183],[120,-50,79,-0.022465229192596588],[120,-49,64,-0.18825570177825499],[120,-49,65,-0.17233625673695002],[120,-49,66,-0.14943226186457853],[120,-49,67,-0.15871075310266622],[120,-49,68,-0.159114861505896],[120,-49,69,-0.13114545713044004],[120,-49,70,-0.07088941402469821],[120,-49,71,-0.005551413535681361],[120,-49,72,0.013182179750516809],[120,-49,73,-0.045892896078666603],[120,-49,74,-0.12007463889191254],[120,-49,75,-0.17579066850574193],[120,-49,76,-0.125180730421918],[120,-49,77,-0.012976911402017698],[120,-49,78,0.019978759520441185],[120,-49,79,-0.023859377378393533],[120,-48,64,-0.1857754768275697],[120,-48,65,-0.1698305079498985],[120,-48,66,-0.14708807906298227],[120,-48,67,-0.15536250966764142],[120,-48,68,-0.15559103267225954],[120,-48,69,-0.12885590702783292],[120,-48,70,-0.06973805208253299],[120,-48,71,-0.004981974715564877],[120,-48,72,0.013169628278536329],[120,-48,73,-0.045564614220745765],[120,-48,74,-0.11873618479295306],[120,-48,75,-0.17347230293893648],[120,-48,76,-0.12359194285465053],[120,-48,77,-0.013731121602264097],[120,-48,78,0.017927335308981395],[120,-48,79,-0.025212806004286437],[120,-47,64,-0.1833548064890786],[120,-47,65,-0.1673826203701529],[120,-47,66,-0.14478868785967008],[120,-47,67,-0.15208950403603758],[120,-47,68,-0.15215992810765033],[120,-47,69,-0.1266263099031822],[120,-47,70,-0.06862376942227559],[120,-47,71,-0.004459979097006417],[120,-47,72,0.013116809971016847],[120,-47,73,-0.04525626054756095],[120,-47,74,-0.11741724814571397],[120,-47,75,-0.17119209322100323],[120,-47,76,-0.12203663128655792],[120,-47,77,-0.01447951871056961],[120,-47,78,0.015916865843586883],[120,-47,79,-0.026526141077942426],[120,-46,64,-0.18099225657041298],[120,-46,65,-0.16499128835151372],[120,-46,66,-0.1425335055952993],[120,-46,67,-0.1488906797972039],[120,-46,68,-0.14881937064767328],[120,-46,69,-0.124454766199118],[120,-46,70,-0.06754518999210408],[120,-46,71,-0.003983513220180619],[120,-46,72,0.013025860428633572],[120,-46,73,-0.044966830402797545],[120,-46,74,-0.11611759714173679],[120,-46,75,-0.1689497987211526],[120,-46,76,-0.12051438093870742],[120,-46,77,-0.015221569553154962],[120,-46,78,0.013947357189179528],[120,-46,79,-0.027800052229376617],[120,-45,64,-0.17868641322603313],[120,-45,65,-0.16265523290446618],[120,-45,66,-0.14032196795744317],[120,-45,67,-0.1457649821055644],[120,-45,68,-0.145567221562285],[120,-45,69,-0.12233944635523195],[120,-45,70,-0.06650098882017431],[120,-45,71,-0.003550691452178509],[120,-45,72,0.012898870356554553],[120,-45,73,-0.04469536310092979],[120,-45,74,-0.11483702898100896],[120,-45,75,-0.16674519112525446],[120,-45,76,-0.11902478660878531],[120,-45,77,-0.015956787622380092],[120,-45,78,0.01201874757986944],[120,-45,79,-0.02903525053557044],[120,-44,64,-0.1764358850325229],[120,-44,65,-0.1603732026404757],[120,-44,66,-0.13815352846830348],[120,-44,67,-0.14271135827647868],[120,-44,68,-0.14240138129983457],[120,-44,69,-0.12027858999298292],[120,-44,70,-0.0654898917194838],[120,-44,71,-0.0031596583761835805],[120,-44,72,0.012737883233667443],[120,-44,73,-0.04444094193919823],[120,-44,74,-0.1135753687148364],[120,-44,75,-0.16457805414248627],[120,-44,76,-0.11756745329581648],[120,-44,77,-0.01668473283468902],[120,-44,78,0.01013090933872983],[120,-44,79,-0.030232486318212227],[120,-43,64,-0.17423930486918485],[120,-43,65,-0.1581439745842766],[120,-43,66,-0.13602765796697822],[120,-43,67,-0.1397287583799827],[120,-43,68,-0.1393197901117388],[120,-43,69,-0.11827050495193707],[120,-43,70,-0.06451067486895495],[120,-43,71,-0.002808590995151172],[120,-43,72,0.012544893213034777],[120,-43,73,-0.04420269408691456],[120,-43,74,-0.11233246804444591],[120,-43,75,-0.1624481831491088],[120,-43,76,-0.1161419967363306],[120,-43,77,-0.017405011159815825],[120,-43,78,0.008283650897460523],[120,-43,79,-0.03139254692388193],[120,-42,64,-0.1720953316074125],[120,-42,65,-0.1559663548582497],[120,-42,66,-0.13394384408887527],[120,-42,67,-0.1368161358315144],[120,-42,68,-0.13632042856321683],[120,-42,69,-0.11631356619044964],[120,-42,70,-0.06356216428000343],[120,-42,71,-0.0024957007512330367],[120,-42,72,0.012321843250254063],[120,-42,73,-0.04397979035947431],[120,-42,74,-0.11110820408464114],[120,-42,75,-0.16035538477795935],[120,-42,76,-0.11474804385734592],[120,-42,77,-0.01811727412946183],[120,-42,78,0.006476718904196277],[120,-42,79,-0.032516254495573556],[120,-41,64,-0.17000265161302158],[120,-41,65,-0.15383917924344626],[120,-41,66,-0.13190159074499683],[120,-41,67,-0.13397244797899438],[120,-41,68,-0.1334013179357922],[120,-41,69,-0.11440621456383428],[120,-41,70,-0.06264323515791644],[120,-41,71,-0.0022192353629266657],[120,-41,72,0.012070623455579467],[120,-41,73,-0.04377144488465718],[120,-41,74,-0.1099024781015781],[120,-41,75,-0.15829947646208223],[120,-41,76,-0.11338523315172284],[120,-41,77,-0.01882121823390796],[120,-41,78,0.004709800407736092],[120,-41,79,-0.033604463744262174],[120,-40,64,-0.1679599800661605],[120,-40,65,-0.15176131362201536],[120,-40,66,-0.12990041760371948],[120,-40,67,-0.13119665668566918],[120,-40,68,-0.13056052052729522],[120,-40,69,-0.11254695549274098],[120,-40,70,-0.061752811167181614],[120,-40,71,-0.001977480482421036],[120,-40,72,0.01179306966509863],[120,-40,73,-0.04357691466876825],[120,-40,74,-0.10871521423326734],[120,-40,75,-0.15628028594054047],[120,-40,76,-0.11205321498141804],[120,-40,77,-0.019516584215092937],[120,-40,78,0.0029825251066547646],[120,-40,79,-0.034658059728885644],[120,-39,64,-0.1659660621036069],[120,-39,65,-0.14973165430580995],[120,-39,66,-0.12793985957748852],[120,-39,67,-0.128487728908095],[120,-39,68,-0.12779613985502977],[120,-39,69,-0.11073435753403306],[120,-39,70,-0.06088986360961357],[120,-39,71,-0.0017687611759897351],[120,-39,72,0.011490962225821515],[120,-39,73,-0.04339549907003258],[120,-39,74,-0.10754635820084618],[120,-39,75,-0.1542976507339485],[120,-39,76,-0.11075165181398663],[120,-39,77,-0.020203156264535182],[120,-39,78,0.0012944676521774376],[120,-39,79,-0.035677955652576775],[120,-38,64,-0.16401967378882248],[120,-38,65,-0.14774912825627595],[120,-38,66,-0.12601946631690145],[120,-38,67,-0.12584463726882936],[120,-38,68,-0.12510632076790285],[120,-38,69,-0.10896705086621528],[120,-38,70,-0.06005341052404594],[120,-38,71,-0.0015914432308563496],[120,-38,72,0.011166024988923724],[120,-38,73,-0.04322653918671529],[120,-38,74,-0.10639587601832264],[120,-38,75,-0.15235141759700652],[120,-38,76,-0.10948021839776088],[120,-38,77,-0.02088076113461613],[120,-38,78,-3.5485000618873776E-4],[120,-38,79,-0.03666509068275435],[120,-37,64,-0.16211962291543394],[120,-37,65,-0.14581269320085055],[120,-37,66,-0.12413880171458284],[120,-37,67,-0.12326636062350209],[120,-37,68,-0.12248924947333474],[120,-37,69,-0.10724372570111373],[120,-37,70,-0.05924251571614934],[120,-37,71,-0.0014439342923979667],[120,-37,72,0.010819924504916405],[120,-37,73,-0.04306941716737047],[120,-37,74,-0.10526375270804002],[120,-37,75,-0.1504414419549209],[120,-37,76,-0.10823860188104091],[120,-37,77,-0.021549267171653896],[120,-37,78,-0.0019659562429183114],[120,-37,79,-0.03762042780224709],[120,-36,64,-0.1602647496498759],[120,-36,65,-0.14392133765100412],[120,-36,66,-0.12229744342097376],[120,-36,67,-0.12075188462183013],[120,-36,68,-0.11994315348456326],[120,-36,69,-0.10556313063291808],[120,-36,70,-0.05845628772652439],[120,-36,71,-0.0013246848357750106],[120,-36,72,0.010454269414272474],[120,-36,73,-0.04292355545035835],[120,-36,74,-0.10414999102848581],[120,-36,75,-0.14856758733002473],[120,-36,76,-0.10702650188037457],[120,-36,77,-0.02220858327895398],[120,-36,78,-0.003539427356788862],[120,-36,79,-0.038544951698067875],[120,-35,64,-0.15845392701943792],[120,-35,65,-0.14207408082736328],[120,-35,66,-0.12049498237426919],[120,-35,67,-0.1183002022623987],[120,-35,68,-0.1174663014940935],[120,-35,69,-0.10392407093546169],[120,-35,70,-0.05769387874513374],[120,-35,71,-0.0012321889765958328],[120,-35,72,0.0100706100265167],[120,-35,73,-0.04278841593980473],[120,-35,74,-0.10305461022076863],[120,-35,75,-0.1467297247646877],[120,-35,76,-0.10584363050306933],[120,-35,77,-0.02285865781807896],[120,-35,78,-0.005075885159223989],[120,-35,79,-0.03943966669420736],[120,-34,64,-0.15668606125190576],[120,-34,65,-0.1402699724971924],[120,-34,66,-0.11873102234646789],[120,-34,67,-0.11591031444096458],[120,-34,68,-0.11505700317884177],[120,-34,69,-0.10232540681801901],[120,-34,70,-0.05695448347972303],[120,-34,71,-0.0011649851254117902],[120,-34,72,0.00967043808060676],[120,-34,73,-0.04266349912489433],[120,-34,74,-0.10197764477947796],[120,-34,75,-0.14492773224602634],[120,-34,76,-0.10468971232877129],[120,-34,77,-0.023499477456246212],[120,-34,78,-0.00657599456004182],[120,-34,79,-0.04030559473420906],[120,-33,64,-0.1549600919733598],[120,-33,65,-0.1385080927297068],[120,-33,66,-0.1170051795075367],[120,-33,67,-0.1135812304922188],[120,-33,68,-0.11271360894255193],[120,-33,69,-0.10076605164956089],[120,-33,70,-0.056237337985702726],[120,-33,71,-0.0011216564912218674],[120,-33,72,0.009255186679065589],[120,-33,73,-0.042548343149327685],[120,-33,74,-0.10091914325329533],[120,-33,75,-0.14316149413764337],[120,-33,76,-0.10356448435493945],[120,-33,77,-0.024131065967723825],[120,-33,78,-0.008040461159718883],[120,-33,79,-0.041143773418996894],[120,-32,64,-0.15327499227055838],[120,-32,65,-0.1367875515744491],[120,-32,66,-0.11531708200937518],[120,-32,67,-0.11131196872482566],[120,-32,68,-0.11043450960077722],[120,-32,69,-0.09924497016074417],[120,-32,70,-0.05554171846448061],[120,-32,71,-0.0011008314392375186],[120,-32,72,0.008826230388281987],[120,-32,73,-0.042442522837408556],[120,-32,74,-0.09987916708008643],[120,-32,75,-0.14143090062302613],[120,-32,76,-0.10246769591068579],[120,-32,77,-0.024753482996691407],[120,-32,78,-0.009470028856641327],[120,-32,79,-0.041955254104796016],[120,-31,64,-0.15162976862459127],[120,-31,65,-0.13510748866810293],[120,-31,66,-0.11366636959132642],[120,-31,67,-0.10910155694977776],[120,-31,68,-0.10821813601376899],[120,-31,69,-0.0977611766325837],[120,-31,70,-0.05486694003706785],[120,-31,71,-0.0011011837085056447],[120,-31,72,0.008384885497090076],[120,-31,73,-0.04234564868316149],[120,-31,74,-0.09885778946089217],[120,-31,75,-0.13973584716496174],[120,-31,76,-0.10139910854340989],[120,-31,77,-0.02536682278891919],[120,-31,78,-0.01086547747747486],[120,-31,79,-0.042741100065665866],[120,-30,64,-0.15002346072252412],[120,-30,65,-0.13346707277503275],[120,-30,66,-0.11205269320882251],[120,-30,67,-0.10694903300211907],[120,-30,68,-0.1060629586724261],[120,-30,69,-0.09631373308021479],[120,-30,70,-0.05421235549942008],[120,-30,71,-0.0011214324951181048],[120,-30,72,0.007932410425652296],[120,-30,73,-0.042257365808620884],[120,-30,74,-0.09785509427675837],[120,-30,75,-0.13807623398489197],[120,-30,76,-0.10035849588245191],[120,-30,77,-0.025971212899359605],[120,-30,78,-0.012227620438313625],[120,-30,79,-0.043502384724722704],[120,-29,64,-0.14845514115358535],[120,-29,65,-0.1318655012666103],[120,-29,66,-0.11047571468651983],[120,-29,67,-0.10485344525603983],[120,-29,68,-0.10396748724222843],[120,-29,69,-0.09490174743955372],[120,-29,70,-0.05357735406553769],[120,-29,71,-0.0011603424067704448],[120,-29,72,0.007470006276695368],[120,-29,73,-0.042177352897089036],[120,-29,74,-0.0968711750517978],[120,-29,75,-0.13645196556561517],[120,-29,76,-0.09934564348365926],[120,-29,77,-0.0265668128823182],[120,-29,78,-0.013557302443627016],[120,-29,79,-0.04424018995754367],[120,-28,64,-0.14692391499658716],[120,-28,65,-0.13030199954442584],[120,-28,66,-0.10893510639727541],[120,-28,67,-0.10281385313349647],[120,-28,68,-0.10193027007000242],[120,-28,69,-0.09352437176425485],[120,-28,70,-0.05296136010411313],[120,-28,71,-0.0012167232946226206],[120,-28,72,0.0069988175210207474],[120,-28,73,-0.042105321107011665],[120,-28,74,-0.09590613396555975],[120,-28,75,-0.1348629501804585],[120,-28,76,-0.09836034865867957],[120,-28,77,-0.02715381297071317],[120,-28,78,-0.01485539722967204],[120,-28,79,-0.044955604470946695],[120,-27,64,-0.1454289193052037],[120,-27,65,-0.1287758204123616],[120,-27,66,-0.10743055096821343],[120,-27,67,-0.10082932760658093],[120,-27,68,-0.09994989365823782],[120,-27,69,-0.09218080043988677],[120,-27,70,-0.05236383187418809],[120,-27,71,-0.001289429968495959],[120,-27,72,0.006519932809203377],[120,-27,73,-0.042041012971864425],[120,-27,74,-0.09496008091737429],[120,-27,75,-0.13330909945166403],[120,-27,76,-0.0974024202925703],[120,-27,77,-0.027732432750595837],[120,-27,78,-0.016122805358508956],[120,-27,79,-0.045649722259888184],[120,-26,64,-0.14396932249746838],[120,-26,65,-0.12728624340220296],[120,-26,66,-0.1059617410148635],[120,-26,67,-0.09889895169376563],[120,-26,68,-0.09802498211134715],[120,-26,69,-0.09087026842160263],[120,-26,70,-0.05178426026480739],[120,-26,71,-0.0013773618013405817],[120,-26,72,0.006034385901568805],[120,-26,73,-0.04198420129105209],[120,-26,74,-0.0940331326448203],[120,-26,75,-0.13179032794023662],[120,-26,76,-0.09647167865297686],[120,-26,77,-0.028302919836666288],[120,-26,78,-0.017360452068142334],[120,-26,79,-0.046323641144689204],[120,-25,64,-0.14254432365591702],[120,-25,65,-0.12583257405746504],[120,-25,66,-0.10452837890437174],[120,-25,67,-0.09702182095031082],[120,-25,68,-0.09615419655820233],[120,-25,69,-0.08959204950121172],[120,-25,70,-0.051222167543431146],[120,-25,71,-0.0014794622290187588],[120,-25,72,0.005543156708511808],[120,-25,73,-0.04193468801665161],[120,-25,74,-0.0931254118981958],[120,-25,75,-0.1303065527692622],[120,-25,76,-0.09556795519403877],[120,-25,77,-0.028865548554313232],[120,-25,78,-0.0185692851839373],[120,-25,79,-0.04697846139052102],[120,-24,64,-0.14115315174460175],[120,-24,65,-0.12441414317991212],[120,-24,66,-0.10313017654868002],[120,-24,67,-0.09519704395319258],[120,-24,68,-0.09433623455512247],[120,-24,69,-0.08834545460908735],[120,-24,70,-0.050677106117546535],[120,-24,71,-0.0015947181514463765],[120,-24,72,0.005047172433315715],[120,-24,73,-0.04189230314056597],[120,-24,74,-0.09223704667251488],[120,-24,75,-0.12885769328235772],[120,-24,76,-0.09469109235794136],[120,-24,77,-0.029420618633333992],[120,-24,78,-0.01975027309592408],[120,-24,79,-0.047615284410649224],[120,-23,64,-0.13979506474893064],[120,-23,65,-0.12303030604294399],[120,-23,66,-0.10176685522831479],[120,-23,67,-0.09342374278078829],[120,-23,68,-0.09256982947313708],[120,-23,69,-0.08712983015572558],[120,-23,70,-0.05014865731344095],[120,-23,71,-0.0017221592409262885],[120,-23,72,0.004547308809928269],[120,-23,73,-0.041856903586235325],[120,-23,74,-0.09136816949808577],[120,-23,75,-0.1274436707384763],[120,-23,76,-0.09384094337671975],[120,-23,77,-0.029968453918063822],[120,-23,78,-0.020904402806036594],[120,-23,79,-0.048235211554483605],[120,-22,64,-0.13846934874420713],[120,-22,65,-0.12168044157594617],[120,-22,66,-0.10043814544746356],[120,-22,67,-0.0917010534877451],[120,-22,68,-0.09085374987330984],[120,-22,69,-0.0859445564174443],[120,-22,70,-0.04963643017590885],[120,-22,71,-0.0018608571635705688],[120,-22,72,0.00404439142818982],[120,-22,73,-0.04182837210889577],[120,-22,74,-0.09051891679052242],[120,-22,75,-0.12606440804409638],[120,-22,76,-0.09301737207680187],[120,-22,77,-0.030509401098387966],[120,-22,78,-0.022032678048933347],[120,-22,79,-0.04883934298119773],[120,-21,64,-0.13717531689851983],[120,-21,65,-0.12036395152349394],[120,-21,66,-0.09914378682090996],[120,-21,67,-0.0900281265754946],[120,-21,68,-0.08918679887371014],[120,-21,69,-0.08478904597026313],[120,-21,70,-0.04914006029233748],[120,-21,71,-0.002009924719593564],[120,-21,72,0.003539197139223639],[120,-21,73,-0.041806616208085325],[120,-21,74,-0.08968942826073356],[120,-21,75,-0.12471982952352224],[120,-21,76,-0.09222025268856136],[120,-21,77,-0.031043828465753025],[120,-21,78,-0.02313611748956737],[120,-21,79,-0.04942877661933239],[120,-20,64,-0.13591230841528074],[120,-20,65,-0.11908025958294842],[120,-20,66,-0.09788352799316916],[120,-20,67,-0.08840412745876618],[120,-20,68,-0.08756781351128572],[120,-20,69,-0.08366274217542771],[120,-20,70,-0.04865920864417193],[120,-20,71,-0.0021685149079993383],[120,-20,72,0.00303245553405857],[120,-20,73,-0.04179156705569079],[120,-20,74,-0.08887984638503106],[120,-20,75,-0.12340986072764908],[120,-20,76,-0.0914494696628436],[120,-20,77,-0.03157212469786501],[120,-20,78,-0.02421575300013037],[120,-20,79,-0.05000460721238342],[120,-19,64,-0.13467968742056607],[120,-19,65,-0.11782881052389253],[120,-19,66,-0.09665712659022004],[120,-19,67,-0.08682823692865735],[120,-19,68,-0.08599566410186357],[120,-19,69,-0.082565117719785],[120,-19,70,-0.04819356048859985],[120,-19,71,-0.002335819921182749],[120,-19,72,0.0025248504886688215],[120,-19,73,-0.04178317844267911],[120,-19,74,-0.08809031593536328],[120,-19,75,-0.12213442828139813],[120,-19,76,-0.09070491749631979],[120,-19,77,-0.0320946976754919],[120,-19,78,-0.025272628018618654],[120,-19,79,-0.05056792545013731],[120,-18,64,-0.1334768418001543],[120,-18,65,-0.11660906929261221],[120,-18,66,-0.09546434920412289],[120,-18,67,-0.08529965161280753],[120,-18,68,-0.08446925360127329],[120,-18,69,-0.08149567321377198],[120,-18,70,-0.04774282427297047],[120,-18,71,-0.0025110700747572345],[120,-18,72,0.0020170217689243868],[120,-18,73,-0.04178142574735367],[120,-18,74,-0.08732098356941596],[120,-18,75,-0.12089345976978559],[120,-18,76,-0.08998650056732987],[120,-18,77,-0.03261197333447033],[120,-18,78,-0.026307795990858588],[120,-18,79,-0.05111981718524388],[120,-17,64,-0.13230318199073796],[120,-17,65,-0.11542052010447332],[120,-17,66,-0.09430497141062665],[120,-17,67,-0.08381758443317443],[120,-17,68,-0.08298751697031748],[120,-17,69,-0.08045393584931755],[120,-17,70,-0.04730673058408679],[120,-17,71,-0.0026935326776507842],[120,-17,72,0.0015095666893284638],[120,-17,73,-0.04178630492761424],[120,-17,74,-0.08657199748001204],[120,-17,75,-0.11968688366227534],[120,-17,76,-0.08929413298357962],[120,-17,77,-0.033124394555569245],[120,-17,78,-0.027322318897301107],[120,-17,79,-0.05166136273413527],[120,-16,64,-0.13115813972961204],[120,-16,65,-0.11426266552692801],[120,-16,66,-0.09317877781992177],[120,-16,67,-0.08238126506206267],[120,-16,68,-0.08154942054625067],[120,-16,69,-0.07943945811970574],[120,-16,70,-0.04688503113435107],[120,-16,71,-0.0028825108474136636],[120,-16,72,0.001003041819622075],[120,-16,73,-0.041797831539537006],[120,-16,74,-0.08584350710314494],[120,-16,75,-0.1185146292749709],[120,-16,76,-0.08862773844297323],[120,-16,77,-0.033632420094636524],[120,-16,78,-0.02831726586559116],[120,-16,79,-0.05219363626123991],[120,-15,64,-0.13004116676684674],[120,-15,65,-0.11313502555563869],[120,-15,66,-0.09208556216060927],[120,-15,67,-0.08098994037706814],[120,-15,68,-0.08015396142322904],[120,-15,69,-0.0784518166030901],[120,-15,70,-0.046477497786462374],[120,-15,71,-0.003077342275445425],[120,-15,72,4.97964733681793E-4],[120,-15,73,-0.041816039784315424],[120,-15,74,-0.08513566288378889],[120,-15,75,-0.11737662677001934],[120,-15,76,-0.08798725010868953],[120,-15,77,-0.034136523555146604],[120,-15,78,-0.029293711869551785],[120,-15,79,-0.05271770524521883],[120,-14,64,-0.1289517335434837],[120,-14,65,-0.11203713668584271],[120,-14,66,-0.09102512739681606],[120,-14,67,-0.07964287491556854],[120,-14,68,-0.07880016684395869],[120,-14,69,-0.07749061081095979],[120,-14,70,-0.04608392161804395],[120,-14,71,-0.0032773979465389397],[120,-14,72,-5.184204446868968E-6],[120,-14,73,-0.041840981585270574],[120,-14,74,-0.08444861609839059],[120,-14,75,-0.11627280719134934],[120,-14,76,-0.08737261049933914],[120,-14,77,-0.03463719240484483],[120,-14,78,-0.03025273651474562],[120,-14,79,-0.05323463002563036],[120,-13,64,-0.1278893600650772],[120,-13,65,-0.11096856851776132],[120,-13,66,-0.08999723253716753],[120,-13,67,-0.07833929330450574],[120,-13,68,-0.07748707763377007],[120,-13,69,-0.07655544463007621],[120,-13,70,-0.04570407964988158],[120,-13,71,-0.0034820794032651677],[120,-13,72,-5.059771440066083E-4],[120,-13,73,-0.041872724100895486],[120,-13,74,-0.0837825245811794],[120,-13,75,-0.1152031234458808],[120,-13,76,-0.0867837700791079],[120,-13,77,-0.03513491646508729],[120,-13,78,-0.031195417999173077],[120,-13,79,-0.05374546089246414],[120,-12,64,-0.12685383332979894],[120,-12,65,-0.10992904097135865],[120,-12,66,-0.08900124300273567],[120,-12,67,-0.07707800068471755],[120,-12,68,-0.07621364216948993],[120,-12,69,-0.07564580933839689],[120,-12,70,-0.04533752320227022],[120,-12,71,-0.0036908135168291084],[120,-12,72,-0.0010041535740266852],[120,-12,73,-0.04191133715444603],[120,-12,74,-0.08313758667670425],[120,-12,75,-0.11416768371771828],[120,-12,76,-0.08622067824631811],[120,-12,77,-0.03563011856277593],[120,-12,78,-0.032122797676990035],[120,-12,79,-0.05425121732120629],[120,-11,64,-0.12584507805333853],[120,-11,65,-0.10891835147927395],[120,-11,66,-0.08803637297336181],[120,-11,67,-0.07585764777664297],[120,-11,68,-0.07497878649270955],[120,-11,69,-0.07476115849537686],[120,-11,70,-0.04498372787183092],[120,-11,71,-0.0039030709909536913],[120,-11,72,-0.0014995517199228577],[120,-11,73,-0.041956896595505444],[120,-11,74,-0.08251400394951089],[120,-11,75,-0.11316664722104043],[120,-11,76,-0.08568328840390453],[120,-11,77,-0.036123203767053504],[120,-11,78,-0.033035895987382165],[120,-11,79,-0.05475288979865374],[120,-10,64,-0.12486304058327563],[120,-10,65,-0.10793631134235776],[120,-10,66,-0.08710187933534985],[120,-10,67,-0.07467694216725766],[120,-10,68,-0.073781471383584],[120,-10,69,-0.07390096989638663],[120,-10,70,-0.044642210858740365],[120,-10,71,-0.004118372183076617],[120,-10,72,-0.001992046287679827],[120,-10,73,-0.04200948895600149],[120,-10,74,-0.0819119584942836],[120,-10,75,-0.11220014710346424],[120,-10,76,-0.085171562375413],[120,-10,77,-0.03661459706329924],[120,-10,78,-0.03393572866772986],[120,-10,79,-0.05525144764716304],[120,-9,64,-0.12390768621979574],[120,-9,65,-0.10698274438818417],[120,-9,66,-0.08619706024556997],[120,-9,67,-0.07353464671388804],[120,-9,68,-0.07262069138197834],[120,-9,69,-0.07306474443137767],[120,-9,70,-0.04431252876524277],[120,-9,71,-0.0043362843847051654],[120,-9,72,-0.002481546213010173],[120,-9,73,-0.0420692110676499],[120,-9,74,-0.0813316143942134],[120,-9,75,-0.11126829234073071],[120,-9,76,-0.08468547020253846],[120,-9,77,-0.0371047417953854],[120,-9,78,-0.034823306399088434],[120,-9,79,-0.055747839986751146],[120,-8,64,-0.12297899732012393],[120,-8,65,-0.10605748605005133],[120,-8,66,-0.0853212527242629],[120,-8,67,-0.07242957687638162],[120,-8,68,-0.07149547352014056],[120,-8,69,-0.0722520046548826],[120,-8,70,-0.04399427486641331],[120,-8,71,-0.004556419170239921],[120,-8,72,-0.0029679928110814655],[120,-8,73,-0.04213616964526282],[120,-8,74,-0.08077311922017237],[120,-8,75,-0.11037116995175661],[120,-8,76,-0.08422498994507405],[120,-8,77,-0.03759409800085854],[120,-8,78,-0.03569963437560446],[120,-8,79,-0.056242996596184425],[120,-7,64,-0.12207697153801754],[120,-7,65,-0.10516038251216044],[120,-7,66,-0.08447383036053359],[120,-7,67,-0.07136059815820715],[120,-7,68,-0.07040487609139588],[120,-7,69,-0.07146229342038628],[120,-7,70,-0.04368707651306115],[120,-7,71,-0.004778429851890751],[120,-7,72,-0.0034513579869293797],[120,-7,73,-0.04221048086864823],[120,-7,74,-0.08023660544750064],[120,-7,75,-0.10950884710456324],[120,-7,76,-0.08379010750755521],[120,-7,77,-0.03808314085227673],[120,-7,78,-0.03656571189550174],[120,-7,79,-0.05673782872199334],[120,-6,64,-0.12120162019292756],[120,-6,65,-0.10429128991837967],[120,-6,66,-0.08365420112781657],[120,-6,67,-0.07032662365407513],[120,-6,68,-0.06934798745517337],[120,-6,69,-0.07069517257843633],[120,-6,70,-0.04339059266418364],[120,-6,71,-0.005002009039845994],[120,-6,72,-0.003931642507576053],[120,-6,73,-0.04229226996537794],[120,-6,74,-0.07972219179395858],[120,-6,75,-0.10868137311636748],[120,-6,76,-0.08338081649066305],[120,-6,77,-0.03857235920091358],[120,-6,78,-0.03742253197479586],[120,-6,79,-0.05723322983919828],[120,-5,64,-0.12035296676339274],[120,-5,65,-0.10345007364193741],[120,-5,66,-0.08286180530642324],[120,-5,67,-0.06932661170151502],[120,-5,68,-0.06832392487850468],[120,-5,69,-0.06995022173762329],[120,-5,70,-0.04310451154612326],[120,-5,71,-0.005226886306596863],[120,-5,72,-0.004408874336584607],[120,-5,73,-0.042381670796444004],[120,-5,74,-0.07922998448225874],[120,-5,75,-0.10788878135108068],[120,-5,76,-0.08299711806546184],[120,-5,77,-0.03906225421894793],[120,-5,78,-0.038271080984567635],[120,-5,79,-0.05773007636719191],[120,-4,64,-0.11953104549908464],[120,-4,65,-0.10263660761326875],[120,-4,66,-0.08209611351008071],[120,-4,67,-0.0683595636336862],[120,-4,68,-0.06733183341394747],[120,-4,69,-0.06922703708731925],[120,-4,70,-0.0428285484353119],[120,-4,71,-0.005452825954041793],[120,-4,72,-0.004883107031462561],[120,-4,73,-0.042478825446528375],[120,-4,74,-0.07876007843039806],[120,-4,75,-0.10713109101735044],[120,-4,76,-0.08263902086848258],[120,-4,77,-0.039553338136082826],[120,-4,78,-0.03911233831220081],[120,-4,79,-0.058229228343791115],[120,-3,64,-0.11873590014602281],[120,-3,65,-0.10185077370330312],[120,-3,66,-0.08135662481332788],[120,-3,67,-0.0674245216306657],[120,-3,68,-0.06637088481382215],[120,-3,69,-0.06852523028095607],[120,-3,70,-0.042562443561370164],[120,-3,71,-0.0056796248818580045],[120,-3,72,-0.005354418204149889],[120,-3,73,-0.04258388382045339],[120,-3,74,-0.0783125583729511],[120,-3,75,-0.10640830887031215],[120,-3,76,-0.0823065409157717],[120,-3,77,-0.04004613306657274],[120,-3,78,-0.0399472760467905],[120,-3,79,-0.058731530060244216],[120,-2,64,-0.11796758277945878],[120,-2,65,-0.10109246115945257],[120,-2,66,-0.08064286497654417],[120,-2,67,-0.06652056666639804],[120,-2,68,-0.06544027648055203],[120,-2,69,-0.06784442737848868],[120,-2,70,-0.042305960127188603],[120,-2,71,-0.005907110555458466],[120,-2,72,-0.0058229080446061],[120,-2,73,-0.04269700324717192],[120,-2,74,-0.07788749991635376],[120,-2,75,-0.10572043082015442],[120,-2,76,-0.08199970153403985],[120,-2,77,-0.04054116992257171],[120,-2,78,-0.04077685868862474],[120,-2,79,-0.05923781065965205],[120,-1,64,-0.11722615273887249],[120,-1,65,-0.1003615660914824],[120,-1,66,-0.0799543847652398],[120,-1,67,-0.06564681654836484],[120,-1,68,-0.06453923045273158],[120,-1,69,-0.06718426784649549],[120,-1,70,-0.04205888244242504],[120,-1,71,-0.006135139071621477],[120,-1,72,-0.006288697907226422],[120,-1,73,-0.04281834809238615],[120,-1,74,-0.07748497053101729],[120,-1,75,-0.10506744345048441],[120,-1,76,-0.08171853330701152],[120,-1,77,-0.04103898740962327],[120,-1,78,-0.04160204288231874],[120,-1,79,-0.059748884700908514],[120,0,64,-0.11651167565965358],[120,0,65,-0.09965799100452381],[120,0,66,-0.07929075836023879],[120,0,67,-0.06480242404705253],[120,0,68,-0.063666992426519],[120,0,69,-0.06654440361432354],[120,0,70,-0.04182101416681991],[120,0,71,-0.006363593319804248],[120,0,72,-0.006751928959687446],[120,0,73,-0.04294808938075727],[120,0,74,-0.07710503048304386],[120,0,75,-0.10444932544947415],[120,0,76,-0.08146307403518634],[120,0,77,-0.04154013110018008],[120,0,78,-0.0424237771730271],[120,0,79,-0.060265552690072416],[120,1,64,-0.11582422259607418],[120,1,65,-0.09898164437650707],[120,1,66,-0.07865158185537824],[120,1,67,-0.06398657511230976],[120,1,68,-0.06282283081191524],[120,1,69,-0.06592449818463154],[120,1,70,-0.041592176659684524],[120,1,71,-0.006592381237049268],[120,1,72,-0.0072127608936526436],[120,1,73,-0.0430864044285047],[120,1,74,-0.07674773370821246],[120,1,75,-0.1038660489567142],[120,1,76,-0.08123336870725306],[120,1,77,-0.04204515258102235],[120,1,78,-0.0432430017849189],[120,1,79,-0.06078860158080549],[120,2,64,-0.11516386923016805],[120,2,65,-0.09833244027723279],[120,2,66,-0.07803647183921893],[120,2,67,-0.06319848717357322],[120,2,68,-0.06200603582332269],[120,2,69,-0.06532422579652189],[120,2,70,-0.041372207431781216],[120,2,71,-0.0068214341542017784],[120,2,72,-0.007671370696520373],[120,2,73,-0.04323347648694604],[120,2,74,-0.076413128630698],[120,2,75,-0.10331758082855363],[120,2,76,-0.08102946948138612],[120,2,77,-0.04255460867041645],[120,2,78,-0.044060648420867175],[120,2,79,-0.06131880524523494],[120,3,64,-0.11453069516127692],[120,3,65,-0.09771029802641237],[120,3,66,-0.07744506405735505],[120,3,67,-0.062437407521046984],[120,3,68,-0.061215918603830174],[120,3,69,-0.06474327063949732],[120,3,70,-0.041160958695878484],[120,3,71,-0.00705070523115474],[120,3,72,-0.008127951483325659],[120,3,73,-0.04338949439745471],[120,3,74,-0.07610125892895406],[120,3,75,-0.10280388382470783],[120,3,76,-0.08085143567475753],[120,3,77,-0.043069060700938314],[120,3,78,-0.04487764008218303],[120,3,79,-0.06185692491642977],[120,4,64,-0.11392478327112156],[120,4,65,-0.09711514188804538],[120,4,66,-0.07687701215191675],[120,4,67,-0.06170261176494277],[120,4,68,-0.060451810382633545],[120,4,69,-0.06418132611645251],[120,4,70,-0.040958296012265735],[120,4,71,-0.007280167978768347],[120,4,72,-0.008582711387771119],[120,4,73,-0.04355465225817312],[120,4,74,-0.07581216425107937],[120,4,75,-0.10232491771884066],[120,4,76,-0.08069933375965482],[120,4,77,-0.043589073863927096],[120,4,78,-0.04569489090707349],[120,4,79,-0.06240370960348258],[120,5,64,-0.11334621915929086],[120,5,65,-0.09654690079847153],[120,5,66,-0.07633198647479954],[120,5,67,-0.060993402369835234],[120,5,68,-0.05971306166488569],[120,5,69,-0.06363809415381212],[120,5,70,-0.040764097025449954],[120,5,71,-0.007509814864980459],[120,5,72,-0.009035872511165149],[120,5,73,-0.043729149102614],[120,5,74,-0.07554588088180798],[120,5,75,-0.10188064033568563],[120,5,76,-0.08057323736458162],[120,5,77,-0.04411521661154054],[120,5,78,-0.046513306026326195],[120,5,79,-0.06295989647996121],[120,6,64,-0.11279509064422355],[120,6,65,-0.09600550812557192],[120,6,66,-0.07580967297128995],[120,6,67,-0.060309107261337994],[120,6,68,-0.058999041453363855],[120,6,69,-0.06311328455703064],[120,6,70,-0.04057825028838857],[120,6,71,-0.0077396560026739],[120,6,72,-0.009487669928022729],[120,6,73,-0.04391318859025361],[120,6,74,-0.07530244236324782],[120,6,75,-0.1014710085172718],[120,6,76,-0.08047322727884014],[120,6,77,-0.044648060112492574],[120,6,78,-0.04733378143465547],[120,6,79,-0.06352621124637416],[120,7,64,-0.11227148732488945],[120,7,65,-0.09549090145664117],[120,7,66,-0.07530977213078202],[120,7,67,-0.05964907850233329],[120,7,68,-0.058309136501298986],[120,7,69,-0.062606614409658],[120,7,70,-0.04040065417064503],[120,7,71,-0.007969717916822487],[120,7,72,-0.009938350746974372],[120,7,73,-0.04410697870909658],[120,7,74,-0.07508188007138024],[120,7,75,-0.10109597902073364],[120,7,76,-0.08039939145915122],[120,7,77,-0.045188177757646386],[120,7,78,-0.04815720387607651],[120,7,79,-0.06410336846717145],[120,8,64,-0.11177550019843724],[120,8,65,-0.09500302241246115],[120,8,66,-0.07483199800129299],[120,8,67,-0.059012691036011956],[120,8,68,-0.05764275059567783],[120,8,69,-0.06211780751416313],[120,8,70,-0.0402312158468771],[120,8,71,-0.00820004238837733],[120,8,72,-0.010388173225497569],[120,8,73,-0.04431073149005454],[120,8,74,-0.07488422375019768],[120,8,75,-0.10075550935006294],[120,8,76,-0.08035182503687055],[120,8,77,-0.04573614471165353],[120,8,78,-0.048984450741534354],[120,8,79,-0.06469207188260885],[120,9,64,-0.11130722132928732],[120,9,65,-0.0945418164852449],[120,9,66,-0.0743760772646299],[120,9,67,-0.05839934149312863],[120,9,68,-0.056999303870406505],[120,9,69,-0.06164659387281626],[120,9,70,-0.040069850362220334],[120,9,71,-0.008430685372422813],[120,9,72,-0.010837405936985556],[120,9,73,-0.044524662732963315],[120,9,74,-0.0747095020053366],[120,9,75,-0.10044955852414605],[120,9,76,-0.08033063032448247],[120,9,77,-0.046292537506981625],[120,9,78,-0.04981638997702295],[120,9,79,-0.06529301469575668],[120,10,64,-0.11086674356530268],[120,10,65,-0.09410723289819284],[120,10,66,-0.07394174836912812],[120,10,67,-0.057808447060946],[120,10,68,-0.056378232148727114],[120,10,69,-0.06119270920697126],[120,10,70,-0.039916479771214014],[120,10,71,-0.008661715988132214],[120,10,72,-0.011286326988602415],[120,10,73,-0.044748991743987554],[120,10,74,-0.07455774275897718],[120,10,75,-0.10017808778336172],[120,10,76,-0.08033591682012144],[120,10,77,-0.04685793367678967],[120,10,78,-0.050653880000413896],[120,10,79,-0.06590687983485793],[120,11,64,-0.1104541602967496],[120,11,65,-0.09369922448442967],[120,11,66,-0.0735287607169389],[120,11,67,-0.05723944441140556],[120,11,68,-0.05577898631427973],[120,11,69,-0.060755894513122244],[120,11,70,-0.03977103234699122],[120,11,71,-0.008893215578037971],[120,11,72,-0.011735223288291014],[120,11,73,-0.04498394108406294],[120,11,74,-0.0744289736676734],[120,11,75,-0.09994106123689467],[120,11,76,-0.08036780120887806],[120,11,77,-0.04743291142314423],[120,11,78,-0.0514977696251201],[120,11,79,-0.066534340191098],[120,12,64,-0.11006956525399941],[120,12,65,-0.09331774758323717],[120,12,66,-0.0731368739029903],[120,12,67,-0.05669178868620439],[120,12,68,-0.05520103171027321],[120,12,69,-0.06033589565422249],[120,12,70,-0.03963344185761894],[120,12,71,-0.00912527683421257],[120,12,72,-0.012184389859319905],[120,12,73,-0.04522973632802965],[120,12,74,-0.07432322250475673],[120,12,75,-0.0997384464529133],[120,12,76,-0.08042640735977959],[120,12,77,-0.04801804931726675],[120,12,78,-0.05234889798880779],[120,12,79,-0.06717605883186994],[120,13,64,-0.10971305234007556],[120,13,65,-0.09296276195158754],[120,13,66,-0.07276585700286865],[120,13,67,-0.05616495253658141],[120,13,68,-0.054643847566287526],[120,13,69,-0.059932462984852816],[120,13,70,-0.03950364690661555],[120,13,71,-0.009358002989007868],[120,13,72,-0.012634129200743248],[120,13,73,-0.04548660583408483],[120,13,74,-0.07424051750891168],[120,13,75,-0.09957021499369818],[120,13,76,-0.08051186631740262],[120,13,77,-0.0486139260286109],[120,13,78,-0.053208094485371595],[120,13,79,-0.06783268918957071],[120,14,64,-0.10938471549426279],[120,14,65,-0.09263423068902343],[120,14,66,-0.07241548790693234],[120,14,67,-0.05565842521567963],[120,14,68,-0.054106926452227956],[120,14,69,-0.05954535100886561],[120,14,70,-0.039381590334759554],[120,14,71,-0.009591507068000228],[120,14,72,-0.013084750692088903],[120,14,73,-0.04575478052310681],[120,14,74,-0.07418088770041806],[120,14,75,-0.09943634289770387],[120,14,76,-0.08062431628709436],[120,14,77,-0.04922112007964889],[120,14,78,-0.054076178698374604],[120,14,79,-0.06850487522589058],[120,15,64,-0.10908464858324919],[120,15,65,-0.09233212017409666],[120,15,66,-0.07208555269815514],[120,15,67,-0.0551717117215286],[120,15,68,-0.053589773759058774],[120,15,69,-0.05917431806828556],[120,15,70,-0.039267218680508954],[120,15,71,-0.009825911202913633],[120,15,72,-0.013536570040658294],[120,15,73,-0.04603449366745342],[120,15,74,-0.07414436316657239],[120,15,75,-0.09933681111054303],[120,15,76,-0.08076390261292989],[120,15,77,-0.049840209623462764],[120,15,78,-0.05495396033428961],[120,15,79,-0.06919325157163524],[120,16,64,-0.10881294531637802],[120,16,65,-0.09205640001062915],[120,16,66,-0.07177584507129484],[120,16,67,-0.054704331988789934],[120,16,68,-0.05309190720598348],[120,16,69,-0.05881912606232725],[120,16,70,-0.03916048169647],[120,16,71,-0.010061346002321255],[120,16,72,-0.013989908769793436],[120,16,73,-0.04632598068879662],[120,16,74,-0.0741309753177286],[120,16,75,-0.09927160586679394],[120,16,76,-0.08093077774754835],[120,16,77,-0.050471772241306355],[120,16,78,-0.055842239153869336],[120,16,79,-0.06989844364205837],[120,17,64,-0.10856969918182978],[120,17,65,-0.09180704298221302],[120,17,66,-0.07148616579115759],[120,17,67,-0.0542558201275704],[120,17,68,-0.05261285637383033],[120,17,69,-0.058479540195531955],[120,17,70,-0.03906133191954723],[120,17,71,-0.01029794997804043],[120,17,72,-0.014445093746533282],[120,17,73,-0.04662947896460351],[120,17,74,-0.07414075711540612],[120,17,75,-0.09924071902452908],[120,17,76,-0.08112510121315274],[120,17,77,-0.05111638475752463],[120,17,78,-0.05674180490013535],[120,17,79,-0.07062106772778619],[120,18,64,-0.1083550034006648],[120,18,65,-0.0915840250134109],[120,18,66,-0.07121632218781479],[120,18,67,-0.05382572370769065],[120,18,68,-0.05215216226441909],[120,18,69,-0.05815532875408437],[120,18,70,-0.03896972429251441],[120,18,71,-0.01053586902516804],[120,18,72,-0.014902456747061673],[120,18,73,-0.0469452276428376],[120,18,74,-0.07417374327383391],[120,18,75,-0.099244148354366],[120,18,76,-0.0813470395529685],[120,18,77,-0.051774623069293015],[120,18,78,-0.05765343722148391],[120,18,79,-0.07136173106136619],[120,19,64,-0.10816895089588424],[120,19,65,-0.09138732513628092],[120,19,66,-0.0709661276868361],[120,19,67,-0.05341360308699412],[120,19,68,-0.05170937688582776],[120,19,69,-0.057846262909560804],[120,19,70,-0.038885615834968724],[120,19,71,-0.010775255953833274],[120,19,72,-0.015362334058438634],[120,19,73,-0.04727346746453368],[120,19,74,-0.07422997043634247],[120,19,75,-0.09928189778486154],[120,19,76,-0.08159676627259459],[120,19,77,-0.05244706198884737],[120,19,78,-0.05857790558858326],[120,19,79,-0.07212103185960092],[120,20,64,-0.10801163427386251],[120,20,65,-0.09121692546095524],[120,20,66,-0.07073540137273766],[120,20,67,-0.05301903078240108],[120,20,68,-0.051284062863521655],[120,20,69,-0.05755211654944926],[120,20,70,-0.038808965361781],[120,20,71,-0.011016270070836947],[120,20,72,-0.01582506611515588],[120,20,73,-0.04761444059392666],[120,20,74,-0.0743094773279852],[120,20,75,-0.09935397760603139],[120,20,76,-0.08187446177076513],[120,20,77,-0.05313427509604903],[120,20,78,-0.05951596920385867],[120,20,79,-0.07289955934188619],[120,21,64,-0.10788314581561774],[120,21,65,-0.09107281114907172],[120,21,66,-0.07052396758396819],[120,21,67,-0.052641590882533715],[120,21,68,-0.05087579307737903],[120,21,69,-0.057272666133894375],[120,21,70,-0.038739733247296584],[120,21,71,-0.011259076809402113],[120,21,72,-0.01629099716907404],[120,21,73,-0.047968390455823684],[120,21,74,-0.07441230488574108],[120,21,75,-0.09946040463271491],[120,21,76,-0.08218031325907833],[120,21,77,-0.05383683459922681],[120,21,78,-0.06046837690243229],[120,21,79,-0.07369789372479736],[120,22,64,-0.10778357747563526],[120,22,65,-0.09095497038901314],[120,22,66,-0.07033165553794665],[120,22,67,-0.05228087850090803],[120,22,68,-0.050484150324746596],[120,22,69,-0.057007690578268266],[120,22,70,-0.03867788123374003],[120,22,71,-0.011503847405397232],[120,22,72,-0.016760474991406128],[120,22,73,-0.048335561579997334],[120,22,74,-0.07453849636768212],[120,22,75,-0.09960120232952578],[120,22,76,-0.08251451467038787],[120,22,77,-0.05455531120247498],[120,22,78,-0.06143586704360205],[120,22,79,-0.07451660619332662],[120,23,64,-0.1077130208861289],[120,23,65,-0.09086339437202917],[120,23,66,-0.07015829898483347],[120,23,67,-0.051936499268845984],[120,23,68,-0.05010872700976132],[120,23,69,-0.05675697116130966],[120,23,70,-0.03862337228245474],[120,23,71,-0.011750758618500843],[120,23,72,-0.01723385060548642],[120,23,73,-0.04871619945244378],[120,23,74,-0.07468809744250234],[120,23,75,-0.0997764008991153],[120,23,76,-0.08287726655564036],[120,23,77,-0.055290273977741444],[120,23,78,-0.062419167392080775],[120,23,79,-0.07535625884926075],[120,24,64,-0.1076715673647583],[120,24,65,-0.09079807726837912],[120,24,66,-0.0700037358888293],[120,24,67,-0.05160806886736045],[120,24,68,-0.04974912485921341],[120,24,69,-0.056520291458654025],[120,24,70,-0.03857617046672846],[120,24,71,-0.011999992496834033],[120,24,72,-0.017711478049096806],[120,24,73,-0.04911055037336873],[120,24,74,-0.074861156260775],[120,24,75,-0.09998603733542338],[120,24,76,-0.08326877596898673],[120,24,77,-0.05604229024017215],[120,24,78,-0.06341899498833929],[120,24,79,-0.07621740463725925],[120,25,64,-0.1076593079240536],[120,25,65,-0.09075901620279803],[120,25,66,-0.06986780813599429],[120,25,67,-0.05129521259744296],[120,25,68,-0.049404954665342594],[120,25,69,-0.05629743730173618],[120,25,70,-0.038536240905156394],[120,25,71,-0.012251736183731687],[120,25,72,-0.0181937141652477],[120,25,73,-0.049518861321876606],[120,25,74,-0.07505772350935248],[120,25,75,-0.10023015544362536],[120,25,76,-0.08368925634114366],[120,25,77,-0.05681192542541414],[120,25,78,-0.06443605600763605],[120,25,79,-0.0771005872493774],[120,26,64,-0.10767633328096304],[120,26,65,-0.09074621122870243],[120,26,66,-0.06975036126775609],[120,26,67,-0.050997564988347587],[120,26,68,-0.04907583605606885],[120,26,69,-0.05608819676219101],[120,26,70,-0.03850354973466627],[120,26,71,-0.012506181765435932],[120,26,72,-0.018680918420401905],[120,26,73,-0.04994137982742394],[120,26,74,-0.07527785245036027],[120,26,75,-0.10050880582848705],[120,26,76,-0.0841389273410613],[120,26,77,-0.05759974296773189],[120,26,78,-0.06547104560746717],[120,26,79,-0.07800634100888369],[120,27,64,-0.10772273386508235],[120,27,65,-0.09075966530062399],[120,27,66,-0.06965124423937517],[120,27,67,-0.050714769443541606],[120,27,68,-0.048761397293177466],[120,27,69,-0.05589236016193457],[120,27,70,-0.03847806412243013],[120,27,71,-0.012763526158548909],[120,27,72,-0.0191734527491749],[120,27,73,-0.05037835384812869],[120,27,74,-0.07552159894620272],[120,27,75,-0.1008220458527989],[120,27,76,-0.08461801472602311],[120,27,77,-0.05840630417795764],[120,27,78,-0.0665246477633537],[120,27,79,-0.07893519073434771],[120,28,64,-0.10779859982433156],[120,28,65,-0.09079938424451392],[120,28,66,-0.06957030920284918],[120,28,67,-0.05044647792418883],[120,28,68,-0.048461275099118774],[120,28,69,-0.055709720109281595],[120,28,70,-0.03845975231608775],[120,28,71,-0.013023971036234367],[120,28,72,-0.019671681424685263],[120,28,73,-0.05083003165616202],[120,28,74,-0.07578902147207536],[120,28,75,-0.10116993956760845],[120,28,76,-0.0851267501804315],[120,28,77,-0.05923216812050392],[120,28,78,-0.06759753509310072],[120,28,79,-0.07988765158514685],[120,29,64,-0.10790402102702301],[120,29,65,-0.0908653767256849],[120,29,66,-0.06950741131389841],[120,29,67,-0.05019235067017241],[120,29,68,-0.04817511451316903],[120,29,69,-0.05554007156157312],[120,29,70,-0.03844858373185643],[120,29,71,-0.013287722792261801],[120,29,72,-0.020175970953831036],[120,29,73,-0.051296661730545104],[120,29,74,-0.07608018111751479],[120,29,75,-0.101552557615991],[120,29,76,-0.0856653711436396],[120,29,77,-0.06007789148885401],[120,29,78,-0.0686903686698748],[120,29,79,-0.08086422888969813],[120,30,64,-0.10803908705938363],[120,30,65,-0.09095765421421148],[120,30,66,-0.06946240856277275],[120,30,67,-0.04995205595873361],[120,30,68,-0.04790256877771412],[120,30,69,-0.05538321191483405],[120,30,70,-0.03844452908018294],[120,30,71,-0.013554992542037904],[120,30,72,-0.02068668999681842],[120,30,73,-0.05177849265771275],[120,30,74,-0.07639514157849248],[120,30,75,-0.10196997711205803],[120,30,76,-0.08623412062724518],[120,30,77,-0.060944028479100146],[120,30,78,-0.06980379782462641],[120,30,79,-0.08186541795785345],[120,31,64,-0.10820388721780458],[120,31,65,-0.09107623094778332],[120,31,66,-0.06943516162883681],[120,31,67,-0.04972526990100536],[120,31,68,-0.047643299255569295],[120,31,69,-0.055238941121157084],[120,31,70,-0.03844756052878884],[120,31,71,-0.013825996159923111],[120,31,72,-0.02120420931042504],[120,31,73,-0.052275773040362586],[120,31,74,-0.07673396914165753],[120,31,75,-0.10242228149698335],[120,31,76,-0.08683324702240607],[120,31,77,-0.0618311306613084],[120,31,78,-0.07093845993861912],[120,31,79,-0.08289170387908143],[120,32,64,-0.10839851049525386],[120,32,65,-0.09122112389209759],[120,32,66,-0.06942553375902026],[120,32,67,-0.049511676276814284],[120,32,68,-0.0473969753792882],[120,32,69,-0.05510706183457698],[120,32,70,-0.03845765190306327],[120,32,71,-0.014100954352214479],[120,32,72,-0.02172890171457463],[120,32,73,-0.05278875141519199],[120,32,74,-0.07709673266235097],[120,32,75,-0.10290956037382923],[120,32,76,-0.08746300389783725],[120,32,77,-0.06273974684869522],[120,32,78,-0.07209498022707085],[120,32,79,-0.08394356130825338],[120,33,64,-0.10862304556139897],[120,33,65,-0.0913923526989547],[120,33,66,-0.06943339067033492],[120,33,67,-0.0493109664082215],[120,33,68,-0.04716327463346101],[120,33,69,-0.05498737958626632],[120,33,70,-0.03847477892384287],[120,33,71,-0.014380092765234609],[120,33,72,-0.02226114208187015],[120,33,73,-0.053317676180196026],[120,33,74,-0.0774835035380236],[120,33,75,-0.10343190932295826],[120,33,76,-0.08812364978921303],[120,33,77,-0.06367042296473235],[120,33,78,-0.07327397151507851],[120,33,79,-0.08502145424096451],[120,34,64,-0.10887758073619067],[120,34,65,-0.09158993966237072],[120,34,66,-0.06945860047684956],[120,34,67,-0.04912283907242873],[120,34,68,-0.04694188257110845],[120,34,69,-0.05487970299000984],[120,34,70,-0.038498919482767874],[120,34,71,-0.014663642128096677],[120,34,72,-0.02280130734987982],[120,34,73,-0.05386279553234273],[120,34,74,-0.07789435567877143],[120,34,75,-0.1039894296998773],[120,34,76,-0.08881544798083826],[120,34,77,-0.06462370190852681],[120,34,78,-0.07447603400726456],[120,34,79,-0.08612583578054295],[120,35,64,-0.10916220395679925],[120,35,65,-0.09181390967310928],[120,35,66,-0.06950103364162649],[120,35,67,-0.04894700045476285],[120,35,68,-0.046732492865310414],[120,35,69,-0.05478384397896721],[120,35,70,-0.03853005395548208],[120,35,71,-0.014951838429788613],[120,35,72,-0.023349776556067108],[120,35,73,-0.05442435741653378],[120,35,74,-0.07832936547672475],[120,35,75,-0.10458222841738642],[120,35,76,-0.08953866628055665],[120,35,77,-0.06560012341901465],[120,35,78,-0.07570175505282221],[120,35,79,-0.08725714789908114],[120,36,64,-0.10947700273790537],[120,36,65,-0.09206429017211319],[120,36,66,-0.06956056295424443],[120,36,67,-0.04878316414254077],[120,36,68,-0.04653480739725508],[120,36,69,-0.05469961807479064],[120,36,70,-0.038568165553012804],[120,36,71,-0.015244923130271261],[120,36,72,-0.0239069308953301],[120,36,73,-0.05500260948683603],[120,36,74,-0.07878861177605015],[120,36,75,-0.1052104177139103],[120,36,76,-0.09029357678892277],[120,36,77,-0.06660022393863523],[120,36,78,-0.07695170890779916],[120,36,79,-0.08841582119494423],[120,37,64,-0.10982206412553336],[120,37,65,-0.09234111110344498],[120,37,66,-0.06963706353467254],[120,37,67,-0.04863105116072489],[120,37,68,-0.0463485363819468],[120,37,69,-0.05462684469023275],[120,37,70,-0.038613240711760616],[120,37,71,-0.015543143405386279],[120,37,72,-0.024473153800250405],[120,37,73,-0.05559779908109834],[120,37,74,-0.07927217584538296],[120,37,75,-0.10587411490995721],[120,37,76,-0.09108045566381384],[120,37,77,-0.06762453647739446],[120,37,78,-0.07822645649675265],[120,37,79,-0.08960227464944447],[120,38,64,-0.11019747464473555],[120,38,65,-0.09264440486743185],[120,38,66,-0.06973041286438585],[120,38,67,-0.048490390050370834],[120,38,68,-0.04617339853285884],[120,38,69,-0.054565347466434065],[120,38,70,-0.038665269522597245],[120,38,71,-0.015846752425437795],[120,38,72,-0.025048831044250944],[120,38,73,-0.05621017321016844],[120,38,74,-0.0797801413545463],[120,38,75,-0.10657344215467786],[120,38,76,-0.09189958288174047],[120,38,77,-0.06867359047838494],[120,38,78,-0.0795265451761057],[120,38,79,-0.0908169153855229],[120,39,64,-0.11060332024154612],[120,39,65,-0.09297420627478112],[120,39,66,-0.06984049084569134],[120,39,67,-0.04836091699091477],[120,39,68,-0.04600912126681487],[120,39,69,-0.05451495464608481],[120,39,70,-0.03872424619958645],[120,39,71,-0.016156009667336213],[120,39,72,-0.02563435086792545],[120,39,73,-0.056839978562990084],[120,39,74,-0.08031259435742043],[120,39,75,-0.10730852616451124],[120,39,76,-0.0927512419971925],[120,39,77,-0.06974791168597581],[120,39,78,-0.08085250850172666],[120,39,79,-0.09206013843141601],[120,40,64,-0.11103968621977836],[120,40,65,-0.0933305525025376],[120,40,66,-0.06996717989036094],[120,40,67,-0.04824237596743257],[120,40,68,-0.0458554409504206],[120,40,69,-0.05447549948369783],[120,40,70,-0.03879016958890732],[120,40,71,-0.016471181260279754],[120,40,72,-0.02623010412893293],[120,40,73,-0.05748746152898419],[120,40,74,-0.08086962328287792],[120,40,75,-0.10807949795596174],[120,40,76,-0.09363571990148464],[120,40,77,-0.07084802201811011],[120,40,78,-0.08220486600352227],[120,40,79,-0.09333232649250238],[120,41,64,-0.11150665717333752],[120,41,65,-0.09371348305282756],[120,41,66,-0.07011036503875129],[120,41,67,-0.048134518984056573],[120,41,68,-0.04571210318937561],[120,41,69,-0.05444682069423759],[120,41,70,-0.03886304371857016],[120,41,71,-0.016792540364970885],[120,41,72,-0.02683648447591317],[120,41,73,-0.05815286823918957],[120,41,74,-0.0814513189357218],[120,41,75,-0.10888649257457894],[120,41,76,-0.09455330658263542],[120,41,77,-0.07197443944426571],[120,41,78,-0.08358412296999167],[120,41,79,-0.09463384973463101],[120,42,64,-0.11200431691485133],[120,42,65,-0.09412303971541336],[120,42,66,-0.0702699341106772],[120,42,67,-0.04803710632477468],[120,42,68,-0.04557886316198895],[120,42,69,-0.0544287629413452],[120,42,70,-0.038942878389530616],[120,42,71,-0.01712036758641657],[120,42,72,-0.027453888546984738],[120,42,73,-0.05883644462773505],[120,42,74,-0.08205777450958862],[120,42,75,-0.10972964882224918],[120,42,76,-0.09550429488792622],[120,42,77,-0.07312767787084368],[120,42,78,-0.08499077024594062],[120,42,79,-0.09596506558242761],[120,43,64,-0.11253274840149556],[120,43,65,-0.09455926653513001],[120,43,66,-0.07044577788935517],[120,43,67,-0.04794990686284854],[120,43,68,-0.04545548599818951],[120,43,69,-0.05442117736636057],[120,43,70,-0.039029689808775206],[120,43,71,-0.017454951420356243],[120,43,72,-0.028082716193429905],[120,43,73,-0.05953843651526358],[120,43,74,-0.0826890856137729],[120,43,75,-0.11060910898491584],[120,43,76,-0.09648898029084078],[120,43,77,-0.07430824703585662],[120,43,78,-0.08642528404669912],[120,43,79,-0.0973263185361701],[120,44,64,-0.11309203365901693],[120,44,65,-0.09502220978536255],[120,44,66,-0.07063779033982018],[120,44,67,-0.0478726984201321],[120,44,68,-0.04534174720532444],[120,44,69,-0.05442392215933992],[120,44,70,-0.039123501264956374],[120,44,71,-0.01779658873340385],[120,44,72,-0.028723370729270836],[120,44,73,-0.060259089716026504],[120,44,74,-0.08334535031596732],[120,44,75,-0.11152501856290062],[120,44,76,-0.09750766066419266],[120,44,77,-0.075516652414967],[120,44,78,-0.08788812579239748],[120,44,79,-0.09871794001097929],[120,45,64,-0.11368225370504569],[120,45,65,-0.0955119179487704],[120,45,66,-0.07084586886325722],[120,45,67,-0.04780526817756111],[120,45,68,-0.04523743314198225],[120,45,69,-0.05443686317320331],[120,45,70,-0.039224343847108295],[120,45,71,-0.01814558527699374],[120,45,72,-0.02937625920750239],[120,45,73,-0.060998650170423704],[120,45,74,-0.08402666920291005],[120,45,75,-0.11247752600601725],[120,45,76,-0.09856063606133496],[120,45,77,-0.0767533951410858],[120,45,78,-0.08937974196605074],[120,45,79,-0.10014024820221258],[120,46,64,-0.11430348847283778],[120,46,65,-0.0960284417064932],[120,46,66,-0.07106991458870578],[120,46,67,-0.04774741313806036],[120,46,68,-0.04514234154101684],[120,46,69,-0.05445987458207343],[120,46,70,-0.03933225720690008],[120,46,71,-0.01850225623518674],[120,46,72,-0.030041792723771648],[120,46,73,-0.061757364104793294],[120,46,74,-0.08473314546090513],[120,46,75,-0.1134667824556654],[120,46,76,-0.09964820850737464],[120,46,77,-0.07801897193981472],[120,46,78,-0.09090056399929589],[120,46,79,-0.10159354798098878],[120,47,64,-0.11495580867147735],[120,47,65,-0.09657182585929788],[120,47,66,-0.07130982461300411],[120,47,67,-0.047698932539481716],[120,47,68,-0.04505627396608467],[120,47,69,-0.0544928314546093],[120,47,70,-0.039447282221057055],[120,47,71,-0.018866918648836876],[120,47,72,-0.030720378576801086],[120,47,73,-0.06253547003453647],[120,47,74,-0.08546487677797494],[120,47,75,-0.11449293328126352],[120,47,76,-0.10077067357267973],[120,47,77,-0.07931386683835982],[120,47,78,-0.09245099992967805],[120,47,79,-0.10307812254822027],[120,48,64,-0.11563918213430631],[120,48,65,-0.0971420155593371],[120,48,66,-0.07156539839269936],[120,48,67,-0.04765953424383263],[120,48,68,-0.04497894204858483],[120,48,69,-0.05453551590778045],[120,48,70,-0.03956936703539771],[120,48,71,-0.019239797011744515],[120,48,72,-0.03141232539435366],[120,48,73,-0.06333310353053115],[120,48,74,-0.08622185979562455],[120,48,75,-0.1155560219450756],[120,48,76,-0.1019282240661812],[120,48,77,-0.0806384547873095],[120,48,78,-0.0940313377696962],[120,48,79,-0.10459413658435911],[120,49,64,-0.11635349627597075],[120,49,65,-0.0977388787146845],[120,49,66,-0.07183636039624429],[120,49,67,-0.047628857461114435],[120,49,68,-0.044909990117986534],[120,49,69,-0.054587639713391964],[120,49,70,-0.03969838962645162],[120,49,71,-0.01962104544364843],[120,49,72,-0.03211786490460443],[120,49,73,-0.06415031870886596],[120,49,74,-0.08700401135459829],[120,49,75,-0.11665601072973272],[120,49,76,-0.10312097067760512],[120,49,77,-0.08199302232531211],[120,49,78,-0.09564176602511684],[120,49,79,-0.10614165664368475],[120,50,64,-0.11709861911076165],[120,50,65,-0.09836226712564904],[120,50,66,-0.07212242168108769],[120,50,67,-0.047606534576444266],[120,50,68,-0.04484905709733623],[120,50,69,-0.05464890633109317],[120,50,70,-0.039834219954599584],[120,50,71,-0.020010809613169634],[120,50,72,-0.032837213624768956],[120,50,73,-0.06498714981281298],[120,50,74,-0.08781122999781057],[120,50,75,-0.11779284188445234],[120,50,76,-0.10434900321511964],[120,50,77,-0.08337782902222676],[120,50,78,-0.09728243518612484],[120,50,79,-0.10772071270074333],[120,51,64,-0.11787439966936385],[120,51,65,-0.09901201698297347],[120,51,66,-0.07242328081652083],[120,51,67,-0.04759219228912672],[120,51,68,-0.04479577765816982],[120,51,69,-0.05471901214522552],[120,51,70,-0.03997672126631545],[120,51,71,-0.020409227746458453],[120,51,72,-0.03357057357947063],[120,51,73,-0.06584361177357678],[120,51,74,-0.08864339638733988],[120,51,75,-0.11896643761503047],[120,51,76,-0.10561239062856331],[120,51,77,-0.08479310765398188],[120,51,78,-0.09895345790595883],[120,51,79,-0.10933129832051158],[120,52,64,-0.11868066719105631],[120,52,65,-0.09968794814757787],[120,52,66,-0.0727386236158793],[120,52,67,-0.04758545157190474],[120,52,68,-0.044749782189184906],[120,52,69,-0.05479764650741539],[120,52,70,-0.04012575019601792],[120,52,71,-0.020816430422638487],[120,52,72,-0.03431813180309579],[120,52,73,-0.06671969955856578],[120,52,74,-0.08950037249914927],[120,52,75,-0.12017669883834303],[120,52,76,-0.10691117979727895],[120,52,77,-0.08623906314872394],[120,52,78,-0.10065490796975737],[120,52,79,-0.11097336961798882],[120,53,64,-0.1195172302803652],[120,53,65,-0.10038986340206764],[120,53,66,-0.07306812286967616],[120,53,67,-0.047585927642800646],[120,53,68,-0.0447106967721955],[120,53,69,-0.054884491779669135],[120,53,70,-0.040281156863242254],[120,53,71,-0.02123254035338952],[120,53,72,-0.03508005982624295],[120,53,73,-0.06761538750985828],[120,53,74,-0.09038200079965933],[120,53,75,-0.12142350390763129],[120,53,76,-0.10824539429058352],[120,53,77,-0.08771587151469898],[120,53,78,-0.10238681926741934],[120,53,79,-0.11264684422251334],[120,54,64,-0.12038387603207934],[120,54,65,-0.10111754767772542],[120,54,66,-0.0734114380832658],[120,54,67,-0.04759322995249567],[120,54,68,-0.0446781431679343],[120,54,69,-0.05497922338025699],[120,54,70,-0.040442784966865035],[120,54,71,-0.021657672148575485],[120,54,72,-0.035856513149424375],[120,54,73,-0.06853062867696268],[120,54,74,-0.09128810340804198],[120,54,75,-0.12270670731296127],[120,54,76,-0.10961503310535921],[120,54,77,-0.0892236787550674],[120,54,78,-0.10414918477723115],[120,54,79,-0.11435160025319856],[120,55,64,-0.12128036912862301],[120,55,65,-0.10187076726074888],[120,55,66,-0.07376821522261758],[120,55,67,-0.04760696219011843],[120,55,68,-0.04465173881416042],[120,55,69,-0.05508150983454922],[120,55,70,-0.04061047187801049],[120,55,71,-0.022091932069824252],[120,55,72,-0.03664763070725141],[120,55,73,-0.06946535414803062],[120,55,74,-0.09221848124813191],[120,55,75,-0.12402613836133602],[120,55,76,-0.1110200693853958],[120,55,77,-0.09076259977502919],[120,55,78,-0.10594195556717513],[120,55,79,-0.11608747531199],[120,56,64,-0.12220645091392275],[120,56,65,-0.10264926898163311],[120,56,66,-0.07413808647184587],[120,56,67,-0.047626722310332305],[120,56,68,-0.04463109683853491],[120,56,69,-0.05519101283295106],[120,56,70,-0.04078404873325735],[120,56,71,-0.022535417774047856],[120,56,72,-0.03745353432648335],[120,56,73,-0.07041947238382414],[120,56,74,-0.09317291319397304],[120,56,75,-0.12538159984111968],[120,56,76,-0.1124604491273156],[120,56,77,-0.09233271728684488],[120,56,78,-0.1077650398209913],[120,56,79,-0.11785426550096266],[120,57,64,-0.1231618384480304],[120,57,65,-0.10345277939167664],[120,57,66,-0.07452067000614075],[120,57,67,-0.04765210258455105],[120,57,68,-0.04461582608863993],[120,57,69,-0.055307387297980286],[120,57,70,-0.04096334052968668],[120,57,71,-0.02298821804892809],[120,57,72,-0.038274328181427744],[120,57,73,-0.07139286855882672],[120,57,74,-0.09415115521307849],[120,57,75,-0.1267728666755573],[120,57,76,-0.1139360898780986],[120,57,77,-0.09393408071855493],[120,57,78,-0.10961830189624336],[120,57,79,-0.1196517244706072],[120,58,64,-0.12414622354684296],[120,58,65,-0.10428100393065079],[120,58,66,-0.0749155697837218],[120,58,67,-0.04768268967904217],[120,58,68,-0.04460553118143365],[120,58,69,-0.05543028146242753],[120,58,70,-0.041148166223219054],[120,58,71,-0.023450412542402835],[120,58,72,-0.0391100982502511],[120,58,73,-0.07238540391394255],[120,58,74,-0.09515293951152008],[120,58,75,-0.12819968457027445],[120,58,76,-0.11544687942934694],[120,58,77,-0.09556670513232254],[120,58,78,-0.1115015614217003],[120,58,79,-0.1214795625058735],[120,59,64,-0.12515927181141906],[120,59,65,-0.10513362608981192],[120,59,66,-0.07532237536048536],[120,59,67,-0.04771806476266738],[120,59,68,-0.04459981257440606],[120,59,69,-0.05555933696049478],[120,59,70,-0.041338338831662394],[120,59,71,-0.023922071488268408],[120,59,72,-0.03996091177590365],[120,59,73,-0.07339691512535591],[120,59,74,-0.0961779736850805],[120,59,75,-0.12966176865982532],[120,59,76,-0.11699267451365356],[120,59,77,-0.09723057015854925],[120,59,78,-0.11341459244150288],[120,59,79,-0.12333744565685095],[120,60,64,-0.12620062165150892],[120,60,65,-0.10601030657450936],[120,60,66,-0.07574066173098602],[120,60,67,-0.04775780364692763],[120,60,68,-0.044598266660607545],[120,60,69,-0.05569418893369931],[120,60,70,-0.0415336655438099],[120,60,71,-0.02440325543005154],[120,60,72,-0.04082681673545621],[120,60,73,-0.07442721369418959],[120,60,74,-0.09722593988074789],[120,60,75,-0.13115880215847764],[120,60,76,-0.11857329950859896],[120,60,77,-0.09892561895208381],[120,60,78,-0.11535712261368025],[120,60,79,-0.12522499492102745],[120,61,64,-0.1272698833080065],[120,61,65,-0.1069106824707263],[120,61,66,-0.07616998919937512],[120,61,67,-0.047801476960910354],[120,61,68,-0.04460048588964496],[120,61,69,-0.055834466153233286],[120,61,70,-0.04173394783584028],[120,61,71,-0.024894014945315776],[120,61,72,-0.04170784132171151],[120,61,73,-0.07547608536164603],[120,61,74,-0.09829649397288913],[120,61,75,-0.1326904350205416],[120,61,76,-0.12018854515403452],[120,61,77,-0.10065175717694264],[120,61,78,-0.11732883247058833],[120,61,79,-0.12714178548403574],[120,62,64,-0.12836663787916408],[120,62,65,-0.10783436641998422],[120,62,66,-0.0766099032838982],[120,62,67,-0.04784865036366187],[120,62,68,-0.044606058916657546],[120,62,69,-0.055979791160376706],[120,62,70,-0.041938981596213835],[120,62,71,-0.025394390372634204],[120,62,72,-0.04260399344106736],[120,62,73,-0.076543289554394],[120,62,74,-0.09938926475849849],[120,62,75,-0.13425628261568895],[120,62,76,-0.1218381672884934],[120,62,77,-0.10240885202615176],[120,62,78,-0.11932935474894044],[120,62,79,-0.12908734602585584],[120,63,64,-0.1294904363555471],[120,63,65,-0.10878094580715615],[120,63,66,-0.07705993465854787],[120,63,67,-0.04789888479644958],[120,63,68,-0.0446145707812254],[120,63,69,-0.05612978042648763],[120,63,70,-0.042148557260199254],[120,63,71,-0.025904411543504195],[120,63,72,-0.043515260231697446],[120,63,73,-0.07762855886502769],[120,63,74,-0.10050385317600288],[120,63,75,-0.13585592442486258],[120,63,76,-0.12352188561074003],[120,63,77,-0.1041967312834428],[120,63,78,-0.12135827379711119],[120,63,79,-0.1310611580994296],[120,64,64,-0.13064079866875145],[120,64,65,-0.1097499819657565],[120,64,66,-0.07751959913537153],[120,64,67,-0.047951736777237],[120,64,68,-0.04462560311802627],[120,64,69,-0.056284044533941986],[120,64,70,-0.04236245995504074],[120,64,71,-0.02642409752146598],[120,64,72,-0.04444160760613503],[120,64,73,-0.07873159857240707],[120,64,74,-0.10163983155209108],[120,64,75,-0.13748890276243264],[120,64,76,-0.12523938247254407],[120,64,77,-0.10601518243358503],[120,64,78,-0.12341512506732596],[120,64,79,-0.1330626555885388],[120,65,64,-0.1318172127590809],[120,65,65,-0.11074100940541719],[120,65,66,-0.07798839769092678],[120,65,67,-0.04800675873962015],[120,65,68,-0.04463873440098001],[120,65,69,-0.05644218837932775],[120,65,70,-0.042580469656750976],[120,65,71,-0.02695345635078841],[120,65,72,-0.04538297982247921],[120,65,73,-0.07985208620677811],[120,65,74,-0.10279674288113445],[120,65,75,-0.13915472153043576],[120,65,76,-0.12699030170897943],[120,65,77,-0.10786395182831769],[120,65,78,-0.12549939470040686],[120,65,79,-0.13509122425183262],[120,66,64,-0.13301913366738138],[120,66,65,-0.11175353506624157],[120,66,66,-0.0784658165402599],[120,66,67,-0.048063499418352154],[120,66,68,-0.04465354022252336],[120,66,69,-0.05660381140005953],[120,66,70,-0.04280236135936012],[120,66,71,-0.02749248481699282],[120,66,72,-0.046339299088368785],[120,66,73,-0.08098967116448128],[120,66,74,-0.1039741001417234],[120,66,75,-0.14085284501075615],[120,66,76,-0.12877424751255967],[120,66,77,-0.1097427439147836],[120,66,78,-0.12761051921053834],[120,66,79,-0.13714620135967695],[120,67,64,-0.13424598265643095],[120,67,65,-0.11278703760489693],[120,67,66,-0.07895132726175554],[120,67,67,-0.04812150428344453],[120,67,68,-0.04466959360951473],[120,67,69,-0.0567685078254915],[120,67,70,-0.043027905257465075],[120,67,71,-0.028041168221670333],[120,67,72,-0.04731046520207302],[120,67,73,-0.08214397437717771],[120,67,74,-0.10517138565495393],[120,67,75,-0.1425826967012946],[120,67,76,-0.1305907833577513],[120,67,77,-0.11165122053357376],[120,67,78,-0.12974788527758171],[120,67,79,-0.13922687543051795],[120,68,64,-0.13549714636722676],[120,68,65,-0.11384096671722765],[120,68,66,-0.0794443869760308],[120,68,67,-0.04818031602467951],[120,68,68,-0.04468646537715031],[120,68,69,-0.056935866953435305],[120,68,70,-0.043256866942717215],[120,68,71,-0.028599480173878554],[120,68,72,-0.0482963552348806],[120,68,73,-0.08331458804034517],[120,68,74,-0.10638805048899576],[120,68,75,-0.1443436582021367],[120,68,76,-0.13243943098235506],[120,68,77,-0.11358900029334827],[120,68,78,-0.13191082965416354],[120,68,79,-0.14133248607316762],[120,69,64,-0.13677197601565716],[120,69,65,-0.1149147425022951],[120,69,66,-0.07994443858199281],[120,69,67,-0.04823947508823433],[120,69,68,-0.04470372452215553],[120,69,69,-0.05710547345291284],[120,69,70,-0.04348900761487965],[120,69,71,-0.029167382400524074],[120,69,72,-0.04929682325908764],[120,69,73,-0.08450107540584917],[120,69,74,-0.10762351391454474],[120,69,75,-0.1461350681578759],[120,69,76,-0.13431966943240112],[120,69,77,-0.11555565802909153],[120,69,78,-0.13409863919469048],[120,69,79,-0.14346222394132027],[120,70,64,-0.13806978663506528],[120,70,65,-0.11600775487273729],[120,70,66,-0.08045091105301533],[120,70,67,-0.04829852026693225],[120,70,68,-0.04472093865636077],[120,70,69,-0.057276907693816756],[120,70,70,-0.04372408430796263],[120,70,71,-0.02974482457810237],[120,70,72,-0.05031170012583805],[120,70,73,-0.08570297064329341],[120,70,74,-0.10887716291571281],[120,70,75,-0.14795622126226346],[120,70,76,-0.13623093417723203],[120,70,77,-0.11755072435101963],[120,70,78,-0.13631055101323442],[120,70,79,-0.14561523080640407],[120,71,64,-0.13938985637022017],[120,71,65,-0.11711936301633726],[120,71,66,-0.08096321979603346],[120,71,67,-0.048356989345440526],[120,71,68,-0.04473767448161147],[120,71,69,-0.057449746104011296],[120,71,70,-0.04396185013183074],[120,71,71,-0.0303317441881208],[120,71,72,-0.05134079329700101],[120,71,73,-0.08691977877474029],[120,71,74,-0.11014835176085884],[120,71,75,-0.14980636733137126],[120,71,76,-0.13817261630143282],[120,71,77,-0.11957368529103836],[120,71,78,-0.13854575277691977],[120,71,79,-0.14779059975456638],[120,72,64,-0.14073142582824497],[120,72,65,-0.11824889491368865],[120,72,66,-0.0814807670761877],[120,72,67,-0.04841441980153869],[120,72,68,-0.04475349830680541],[120,72,69,-0.05762356155426906],[120,72,70,-0.044202054529594595],[120,72,71,-0.030928066398540278],[120,72,72,-0.05238388673524663],[120,72,73,-0.08815097568730192],[120,72,74,-0.11143640163782091],[120,72,75,-0.15168471045148144],[120,72,76,-0.140144061780312],[120,72,77,-0.1216239820536162],[120,72,78,-0.14080338314123683],[120,72,79,-0.149987375513386],[120,73,64,-0.14209369749206013],[120,73,65,-0.11939564691684064],[120,73,66,-0.08200294250948253],[120,73,67,-0.04847034956438665],[120,73,68,-0.04476797660770178],[120,73,69,-0.057797923771318434],[120,73,70,-0.04444444355101045],[120,73,71,-0.03153370397354029],[120,73,72,-0.05344074085640968],[120,73,73,-0.08939600822798037],[120,73,74,-0.11274060035796754],[120,73,75,-0.1535904082079237],[120,73,76,-0.14214457084561705],[120,73,77,-0.12370101087780976],[120,73,78,-0.14308253233337326],[120,73,79,-0.15220455491359616],[120,74,64,-0.14347583520181692],[120,74,65,-0.12055888339370398],[120,74,66,-0.08252912362566392],[120,74,67,-0.048524317830443704],[120,74,68,-0.04478067662992111],[120,74,69,-0.05797239977908014],[120,74,70,-0.044688760141962554],[120,74,71,-0.032148557213823176],[120,74,72,-0.05451109254808389],[120,74,73,-0.09065429438491991],[120,74,74,-0.11406020213333785],[120,74,75,-0.15552257100099579],[120,74,76,-0.1441733974480638],[120,74,77,-0.12580412301696417],[120,74,78,-0.14538224288924487],[120,74,79,-0.1544410874907045],[120,75,64,-0.14487696370981096],[120,75,65,-0.12173783644297706],[120,75,66,-0.0830586765033248],[120,75,67,-0.04857586593746827],[120,75,68,-0.044791167035389906],[120,75,69,-0.05814655436804901],[120,75,70,-0.04493474445003105],[120,75,71,-0.03277251392965807],[120,75,72,-0.05559465525831179],[120,75,73,-0.09192522355909687],[120,75,74,-0.11539442743108325],[120,75,75,-0.15748026145509755],[120,75,76,-0.1462297488232458],[120,75,77,-0.12793262484249987],[120,75,78,-0.1477015105495958],[120,75,79,-0.15669587623111975],[120,76,64,-0.14629616831427286],[120,76,65,-0.12293170568426377],[120,76,66,-0.08359095647900812],[120,76,67,-0.04862453829678721],[120,76,68,-0.044799018592309135],[120,76,69,-0.058319950592642465],[120,76,70,-0.04518213414605431],[120,76,71,-0.03340544944879756],[120,76,72,-0.05669111915808841],[120,76,73,-0.09320815693026263],[120,76,74,-0.11674246290930504],[120,76,75,-0.1594624939271336],[120,76,76,-0.14831278516736834],[120,76,77,-0.13008577807793598],[120,76,78,-0.15003928532006286],[120,76,79,-0.1589677784669462],[120,77,64,-0.1477324945773237],[120,77,65,-0.12413965812790448],[120,77,66,-0.08412530893175056],[120,77,67,-0.0486698833836808],[120,77,68,-0.044803804908448715],[120,77,69,-0.058492150296115576],[120,77,70,-0.045430664761429845],[120,77,71,-0.03404722666127597],[120,77,72,-0.05780015138118533],[120,77,73,-0.09450242792067286],[120,77,74,-0.118103461438187],[120,77,75,-0.16146823412009104],[120,77,76,-0.1504216194290926],[120,77,77,-0.1322628001690387],[120,77,78,-0.1523944726996358],[120,77,79,-0.16125560692318694],[120,78,64,-0.14918494813228472],[120,78,65,-0.12536082812894275],[120,78,66,-0.08466107014426365],[120,78,67,-0.04871145478548686],[120,78,68,-0.04480510320740763],[120,78,69,-0.0586627146625356],[120,78,70,-0.04568007004083842],[120,78,71,-0.034697696103046766],[120,78,72,-0.05892139634464891],[120,78,73,-0.09580734275991866],[120,78,74,-0.11947654221020407],[120,78,75,-0.16349639880761455],[120,78,76,-0.15255531722363969],[120,78,77,-0.13446286479570912],[120,78,78,-0.15476593508145442],[120,78,79,-0.16355813092065197],[120,79,64,-0.15065249458540228],[120,79,65,-0.12659431742950195],[120,79,66,-0.0851975682416391],[120,79,67,-0.04874881230672271],[120,79,68,-0.044802495147252604],[120,79,69,-0.05883120479514754],[120,79,70,-0.04593008230996623],[120,79,71,-0.035356696080311736],[120,79,72,-0.060054476153109985],[120,79,73,-0.09712218115389167],[120,79,74,-0.12086079094301198],[120,79,75,-0.165545855675255],[120,79,76,-0.15471289687512593],[120,79,77,-0.13668510253091076],[120,79,78,-0.15715249332936188],[120,79,79,-0.16587407773739435],[120,80,64,-0.1521340595168335],[120,80,65,-0.12783919529361315],[120,80,66,-0.08573412420807529],[120,80,67,-0.04878152313013998],[120,80,68,-0.04479556768065449],[120,80,69,-0.058997182320242765],[120,80,70,-0.046180432857642756],[120,80,71,-0.03602405283623319],[120,80,72,-0.061198991089756564],[120,80,73,-0.09844619706055303],[120,80,74,-0.12225526017836215],[120,80,75,-0.1676154232838321],[120,80,76,-0.1568933295928249],[120,80,77,-0.1389286016515478],[120,80,78,-0.1595529285330371],[120,80,79,-0.16820213413096274],[120,81,64,-0.15362852858558956],[120,81,65,-0.12909449873838655],[120,81,66,-0.08627005298182744],[120,81,67,-0.04880916303235318],[120,81,68,-0.044783913955461996],[120,81,69,-0.05916021001554012],[120,81,70,-0.04643085233174863],[120,81,71,-0.03669958076162482],[120,81,72,-0.06235452019659211],[120,81,73,-0.09977861957489409],[120,81,74,-0.12365896968023],[120,81,75,-0.1697038711602138],[120,81,76,-0.15909553978684668],[120,81,77,-0.14119240910582964],[120,81,78,-0.1619659839439417],[120,81,79,-0.17054094802323216],[120,82,64,-0.1551347477428894],[120,82,65,-0.1303592328651522],[120,82,66,-0.08680466462819271],[120,82,67,-0.04883131765232176],[120,82,68,-0.044767134254383556],[120,82,69,-0.05931985246191085],[120,82,70,-0.04668107114815085],[120,82,71,-0.03738308265109238],[120,82,72,-0.06352062194632148],[120,82,73,-0.1011186539250994],[120,82,74,-0.1250709069350629],[120,82,75,-0.1718099200205306],[120,82,76,-0.16131840552842427],[120,82,77,-0.14347553164126212],[120,82,78,-0.1643903670937305],[120,82,79,-0.17288913034906106],[120,83,64,-0.15665152445947603],[120,83,65,-0.13163237154951074],[120,83,66,-0.08733726542982953],[120,83,67,-0.048847583538539324],[120,83,68,-0.044744836557613826],[120,83,69,-0.05947567594865987],[120,83,70,-0.04693081913580863],[120,83,71,-0.03807434924036624],[120,83,72,-0.06469683347879024],[120,83,73,-0.10246547980275279],[120,83,74,-0.12649002389129346],[120,83,75,-0.17393223622464818],[120,83,76,-0.16356075305789605],[120,83,77,-0.1457769311768828],[120,83,78,-0.1668247447778292],[120,83,79,-0.17524524881911552],[120,84,64,-0.1581776604037956],[120,84,65,-0.13291286895789498],[120,84,66,-0.0878671559290292],[120,84,67,-0.04885756190011885],[120,84,68,-0.044716625342047345],[120,84,69,-0.05962722595492162],[120,84,70,-0.04717980218044462],[120,84,71,-0.03877313556147542],[120,84,72,-0.06588262329575027],[120,84,73,-0.10381816525074938],[120,84,74,-0.12791511612026032],[120,84,75,-0.17606924595306891],[120,84,76,-0.165821164380713],[120,84,77,-0.1480953381431165],[120,84,78,-0.16926751305745763],[120,84,79,-0.17760756809994305],[120,85,64,-0.15971197565309708],[120,85,65,-0.13419967577800218],[120,85,66,-0.0883936398667003],[120,85,67,-0.048860863006224796],[120,85,68,-0.04468210429725043],[120,85,69,-0.05977402826842853],[120,85,70,-0.04742770143063855],[120,85,71,-0.03947915765868879],[120,85,72,-0.0670773837125825],[120,85,73,-0.10517565340586264],[120,85,74,-0.12934480298469295],[120,85,75,-0.1782191013387215],[120,85,76,-0.16809793933326508],[120,85,77,-0.15042921205086843],[120,85,78,-0.17171674951733568],[120,85,79,-0.17997399574459194],[120,86,64,-0.1612532850452724],[120,86,65,-0.1354917375060809],[120,86,66,-0.0889160356448369],[120,86,67,-0.04885711977684141],[120,86,68,-0.04464089461014225],[120,86,69,-0.05991562050932902],[120,86,70,-0.047674204137533205],[120,86,71,-0.040192122035546854],[120,86,72,-0.06828048924226567],[120,86,73,-0.10653686829011472],[120,86,74,-0.1307776733770839],[120,86,75,-0.18037990101811355],[120,86,76,-0.17038932216920244],[120,86,77,-0.15277696055090448],[120,86,78,-0.17417048492392634],[120,86,79,-0.18234238784379558],[120,87,64,-0.16280039753427003],[120,87,65,-0.13678799519825097],[120,87,66,-0.08943367824660375],[120,87,67,-0.04884598968448996],[120,87,68,-0.04459263681291002],[120,87,69,-0.060051554499887506],[120,87,70,-0.04791900586070936],[120,87,71,-0.040911728141915946],[120,87,72,-0.06949130164922847],[120,87,73,-0.1079007231136018],[120,87,74,-0.13221229590305678],[120,87,75,-0.18254970493162223],[120,87,76,-0.17269351708723138],[120,87,77,-0.15513695535065888],[120,87,78,-0.1766267235889636],[120,87,79,-0.18471057110724642],[120,88,64,-0.16435211748509476],[120,88,65,-0.13808738671269372],[120,88,66,-0.0899459207142563],[120,88,67,-0.04882715598290473],[120,88,68,-0.044536991627938366],[120,88,69,-0.06018139678600235],[120,88,70,-0.04816181082720372],[120,88,71,-0.041637669118694084],[120,88,72,-0.07070917153358532],[120,88,73,-0.10926612220287191],[120,88,74,-0.13364722017158567],[120,88,75,-0.18472653556878169],[120,88,76,-0.17500868980339163],[120,88,77,-0.15750753463970338],[120,88,78,-0.17908344700887957],[120,88,79,-0.18707634605604548],[120,89,64,-0.1659072460494451],[120,89,65,-0.13938884802845958],[120,89,66,-0.09045213566342541],[120,89,67,-0.0488003289514766],[120,89,68,-0.04447364082420004],[120,89,69,-0.06030472915787111],[120,89,70,-0.048402332287744654],[120,89,71,-0.04236963258605206],[120,89,72,-0.07193343999810847],[120,89,73,-0.11063196302511046],[120,89,74,-0.13508097819304782],[120,89,75,-0.1869083793750073],[120,89,76,-0.17733296929699005],[120,89,77,-0.1598870056852544],[120,89,78,-0.1815386176685942],[120,89,79,-0.18943749037384905],[120,90,64,-0.16746458261840047],[120,90,65,-0.14069131463739298],[120,90,66,-0.09095171682867108],[120,90,67,-0.04876524715061197],[120,90,68,-0.044402288081244565],[120,90,69,-0.060421149166641715],[120,90,70,-0.04864029286802829],[120,90,71,-0.043107301473604115],[120,90,72,-0.07316344039456488],[120,90,73,-0.11199713830315615],[120,90,74,-0.1365120858817963],[120,90,75,-0.1890931883172113],[120,90,76,-0.17966444972742174],[120,90,77,-0.16227364759291826],[120,90,78,-0.18399018300034678],[120,90,79,-0.19179176240819062],[120,91,64,-0.16902292634835167],[120,91,65,-0.1419937230054707],[120,91,66,-0.09144408063505875],[120,91,67,-0.048721678683062895],[120,91,68,-0.044322659856900246],[120,91,69,-0.06053027063396272],[120,91,70,-0.04887542491290281],[120,91,71,-0.04385035489067566],[120,91,72,-0.07439850014560788],[120,91,73,-0.11336053821595843],[120,91,74,-0.1379390446596839],[120,91,75,-0.1912788816054216],[120,91,76,-0.1820011925185993],[120,91,77,-0.16466571422714787],[120,91,78,-0.18643607948743554],[120,91,79,-0.19413690481278897],[120,92,64,-0.1705810777560808],[120,92,65,-0.14329501209954273],[120,92,66,-0.09192866779026553],[120,92,67,-0.04866942245609208],[120,92,68,-0.04423450625467137],[120,92,69,-0.06063172415131412],[120,92,70,-0.049107470821297704],[120,92,71,-0.04459846903456028],[120,92,72,-0.07563794263792885],[120,92,73,-0.11472105267860044],[120,92,74,-0.1393603431565948],[120,92,75,-0.1934633475670473],[120,92,76,-0.1843412286071238],[120,92,77,-0.1670614372851555],[120,92,78,-0.1888742369019407],[120,92,79,-0.19647064832101346],[120,93,64,-0.17213784037872487],[120,93,65,-0.1445941249753045],[120,93,66,-0.09240494489163435],[120,93,67,-0.048608309439304796],[120,93,68,-0.04413760188684619],[120,93,69,-0.0607251575661312],[120,93,70,-0.049336183369841455],[120,93,71,-0.04535131813449143],[120,93,72,-0.07688108918200556],[120,93,73,-0.11607757369567141],[120,93,74,-0.14077445900383243],[120,93,75,-0.19564444567012937],[120,93,76,-0.1866825608498692],[120,93,77,-0.16945902951737654],[120,93,78,-0.19130258266482392],[120,93,79,-0.19879071564013462],[120,94,64,-0.17369202249409493],[120,94,65,-0.14589001042206243],[120,94,66,-0.09287240604240032],[120,94,67,-0.04853820391284197],[120,94,68,-0.044031746729251565],[120,94,69,-0.06081023645175269],[120,94,70,-0.04956132602311456],[120,94,71,-0.04610857542879078],[120,94,72,-0.07812726103332039],[120,94,73,-0.11742899778132472],[120,94,74,-0.14217986071587882],[120,94,75,-0.19782000869146676],[120,94,76,-0.18902316658606455],[120,94,77,-0.17185668808685106],[120,94,78,-0.19371904631603712],[120,94,79,-0.20109482545537324],[120,95,64,-0.17524243889663493],[120,95,65,-0.14718162465965842],[120,95,66,-0.09333057447120026],[120,95,67,-0.04845900470056707],[120,95,68,-0.04391676696358366],[120,95,69,-0.06088664455832238],[120,95,70,-0.04978267322857296],[120,95,71,-0.046869914172487266],[120,95,72,-0.07937578146956248],[120,95,73,-0.11877422843902229],[120,95,74,-0.14357500965579265],[120,95,75,-0.19998784502515576],[120,95,76,-0.19136100034847794],[120,95,77,-0.17425259805928678],[120,95,78,-0.1961215640816916],[120,95,79,-0.20338069653231688],[120,96,64,-0.17678791272406522],[120,96,65,-0.14846793308268866],[120,96,66,-0.09377900414883385],[120,96,67,-0.04837064638278929],[120,96,68,-0.04379251580321089],[120,96,69,-0.06095408424183217],[120,96,70,-0.05000001069420127],[120,96,71,-0.04763500867243972],[120,96,72,-0.08062597791788469],[120,96,73,-0.12011217869355553],[120,96,74,-0.14495836207921858],[120,96,75,-0.2021457411266527],[120,96,76,-0.19369399671772314],[120,96,77,-0.17664493601483516],[120,96,78,-0.19850808352462213],[120,96,79,-0.20564605190567845],[120,97,64,-0.17832727732957646],[120,97,65,-0.14974791204696028],[120,97,66,-0.09421728139614671],[120,97,67,-0.04827310048301889],[120,97,68,-0.04365887429834199],[120,97,69,-0.06101227686859613],[120,97,70,-0.05021313564705177],[120,97,71,-0.04840353534684353],[120,97,72,-0.08187718412595488],[120,97,73,-0.12144177366762937],[120,97,74,-0.14632837125173548],[120,97,75,-0.2042914640871114],[120,97,76,-0.1960200733132329],[120,97,77,-0.17903187377206112],[120,97,78,-0.20087656826418432],[120,97,79,-0.20788862314201687],[120,98,64,-0.1798593781942604],[120,98,65,-0.15102055069295311],[120,98,66,-0.09464502647683387],[120,98,67,-0.048166376623228514],[120,98,68,-0.043515752116483],[120,98,69,-0.06106096319256444],[120,98,70,-0.05042185707091283],[120,98,71,-0.04917517380581386],[120,98,72,-0.08312874237019127],[120,98,73,-0.12276195319498046],[120,98,74,-0.14768348963403763],[120,98,75,-0.20642276433236964],[120,98,76,-0.1983371339139308],[120,98,77,-0.18141158221396603],[120,98,78,-0.20322500275058],[120,98,79,-0.21010615466359994],[120,99,64,-0.1813830748742462],[120,99,65,-0.1522848528008369],[120,99,66,-0.09506189516885079],[120,99,67,-0.048050523642028546],[120,99,68,-0.043363088294076806],[120,99,69,-0.0610999037029517],[120,99,70,-0.05062599592138896],[120,99,71,-0.04994960794951543],[120,99,72,-0.08438000569419053],[120,99,73,-0.12407167446166588],[120,99,74,-0.14902217112916782],[120,99,75,-0.20853737844055348],[120,99,76,-0.20064307170109127],[120,99,77,-0.1837822352053069],[120,99,78,-0.2055513970784728],[120,99,79,-0.21229640812018172],[120,100,64,-0.18289724297687504],[120,100,65,-0.15353983867144635],[120,100,66,-0.0954675803080821],[120,100,67,-0.04792563067017494],[120,100,68,-0.04320085195526882],[120,100,69,-0.06112887893979334],[120,100,70,-0.05082538531680189],[120,100,71,-0.050726527080190084],[120,100,72,-0.0856303401700947],[120,100,73,-0.12536991466692687],[120,100,74,-0.15034287338581687],[120,100,75,-0.21063303207191894],[120,100,76,-0.20293577261543036],[120,100,77,-0.18614201358997465],[120,100,78,-0.20785379182431324],[120,100,79,-0.21445716679522045],[120,101,64,-0.18440077616011083],[120,101,65,-0.15478454702749045],[120,101,66,-0.09586181329791697],[120,101,67,-0.04779182815786792],[120,101,68,-0.04302904299381549],[120,101,69,-0.06114768977520054],[120,101,70,-0.05101987070343252],[120,101,71,-0.05150562702427591],[120,101,72,-0.08687912717535619],[120,101,73,-0.12665567369480368],[120,101,74,-0.15164406015153364],[120,101,75,-0.21270744300423647],[120,101,76,-0.2052131188200126],[120,101,77,-0.18848910925666276],[120,101,78,-0.21013026289138462],[120,101,79,-0.21658624003275473],[120,102,64,-0.18589258814917953],[120,102,65,-0.1560180369290591],[120,102,66,-0.09624436557828375],[120,102,67,-0.047649288848250225],[120,102,68,-0.04284769271412675],[120,102,69,-0.06115615765814059],[120,102,70,-0.051209309993668406],[120,102,71,-0.052286611260628335],[120,102,72,-0.08812576567705134],[120,102,73,-0.12792797678740636],[120,102,74,-0.15292420366940823],[120,102,75,-0.21475832426658986],[120,102,76,-0.2074729922600413],[120,102,77,-0.19082172926055505],[120,102,78,-0.21237892634625594],[120,102,79,-0.21868146767091695],[120,103,64,-0.18737161476437042],[120,103,65,-0.15723938969742737],[120,103,66,-0.09661505004777121],[120,103,67,-0.04749822869162078],[120,103,68,-0.04265686442756387],[120,103,69,-0.061154124820774355],[120,103,70,-0.05139357367578488],[120,103,71,-0.053069192050772485],[120,103,72,-0.08936967451571383],[120,103,73,-0.1291858772106244],[120,103,74,-0.15418178711168762],[120,103,75,-0.2167833873642107],[120,103,76,-0.20971327831023068],[120,103,77,-0.19313809998837134],[120,103,78,-0.21459794323011425],[120,103,79,-0.22074072446792367],[120,104,64,-0.18883681595381357],[120,104,65,-0.1584477108410497],[120,104,66,-0.09697372243248363],[120,104,67,-0.047338907694943755],[120,104,68,-0.04245665400019447],[120,104,69,-0.061141454444530674],[120,104,70,-0.05157254489420373],[120,104,71,-0.053853091567005774],[120,104,72,-0.09061029468045179],[120,104,73,-0.13042845890290927],[120,104,74,-0.15541530704362425],[120,104,75,-0.2187803455866496],[120,104,76,-0.21193186950005027],[120,104,77,-0.19543647135371398],[120,104,78,-0.2167855243282628],[120,104,79,-0.22276192450626328],[120,105,64,-0.19028717778906862],[120,105,65,-0.15964213194357757],[120,105,66,-0.09732028250326616],[120,105,67,-0.04717163060403076],[120,105,68,-0.04224719027416892],[120,105,69,-0.06111803073925232],[120,105,70,-0.05174611948235552],[120,105,71,-0.054638042987037796],[120,105,72,-0.09184709149896751],[120,105,73,-0.13165483906584835],[120,105,74,-0.15662327597904777],[120,105,75,-0.22074691745338965],[120,105,76,-0.2141266693837548],[120,105,77,-0.19771512104674072],[120,105,78,-0.21893993487659014],[120,105,79,-0.22474302556796133],[120,106,64,-0.1917216716044658],[120,106,65,-0.1608217721819496],[120,106,66,-0.09765456732961104],[120,106,67,-0.046996633790244824],[120,106,68,-0.042028549679142595],[120,106,69,-0.06108370809264655],[120,106,70,-0.05191418770937443],[120,106,71,-0.055423759807727],[120,106,72,-0.09307947620802096],[120,106,73,-0.13286413257383484],[120,106,74,-0.1578043049484072],[120,106,75,-0.22268090314762096],[120,106,76,-0.21629568545214142],[120,106,77,-0.19997240028201776],[120,106,78,-0.22105949211907622],[120,106,79,-0.2266820416833026],[120,107,64,-0.19313916527716812],[120,107,65,-0.16198565587413422],[120,107,66,-0.09797613803194379],[120,107,67,-0.04681386195122765],[120,107,68,-0.04180059385244496],[120,107,69,-0.06103822255020219],[120,107,70,-0.052076607873504155],[120,107,71,-0.05620987298626767],[120,107,72,-0.09430664161571294],[120,107,73,-0.13405537239684934],[120,107,74,-0.1589572633641841],[120,107,75,-0.22458033298572105],[120,107,76,-0.2184372001026015],[120,107,77,-0.2022068034764854],[120,107,78,-0.22314254195553568],[120,107,79,-0.22857706174833542],[120,108,64,-0.19453851661571145],[120,108,65,-0.1631328020338855],[120,108,66,-0.09828453137833286],[120,108,67,-0.04662323565964648],[120,108,68,-0.041563180213987146],[120,108,69,-0.0609813283143063],[120,108,70,-0.05223326302723897],[120,108,71,-0.056996004527900615],[120,108,72,-0.09552774208578703],[120,108,73,-0.1352275914321222],[120,108,74,-0.16008109336359236],[120,108,75,-0.2264433017007407],[120,108,76,-0.22054955346738012],[120,108,77,-0.20441685101377213],[120,108,78,-0.22518745946632734],[120,108,79,-0.23042623167918863],[120,109,64,-0.1959185967480846],[120,109,65,-0.164262246576075],[120,109,66,-0.09857931749197257],[120,109,67,-0.04642471196081503],[120,109,68,-0.041316208924177894],[120,109,69,-0.06091282720232936],[120,109,70,-0.05238407256326451],[120,109,71,-0.057781784951873395],[120,109,72,-0.09674193665369053],[120,109,73,-0.13637984360792937],[120,109,74,-0.1611747697692152],[120,109,75,-0.228267933644655],[120,109,76,-0.22263109797838027],[120,109,77,-0.2066010673488569],[120,109,78,-0.2271926536848297],[120,109,79,-0.23222775366815543],[120,110,64,-0.19727829183260281],[120,110,65,-0.16537304392248595],[120,110,66,-0.09886010074957767],[120,110,67,-0.046218284766912233],[120,110,68,-0.04105962349280539],[120,110,69,-0.060832569340969166],[120,110,70,-0.05252899261623179],[120,110,71,-0.05856685415039819],[120,110,72,-0.09794839072219873],[120,110,73,-0.1375112058581632],[120,110,74,-0.16223730233690764],[120,110,75,-0.2300523863442475],[120,110,76,-0.22468020122876387],[120,110,77,-0.208757983520407],[120,110,78,-0.22915657068281264],[120,110,79,-0.23397988996464097],[120,111,64,-0.19861650477913567],[120,111,65,-0.16646426860656668],[120,111,66,-0.09912652063494536],[120,111,67,-0.04600398519234632],[120,111,68,-0.040793411316328985],[120,111,69,-0.06074045377336713],[120,111,70,-0.052668016385994984],[120,111,71,-0.05935086223167497],[120,111,72,-0.09914627776401848],[120,111,73,-0.13862078007094353],[120,111,74,-0.16326773795509456],[120,111,75,-0.23179485404497033],[120,111,76,-0.22669524884190095],[120,111,77,-0.21088613967158915],[120,111,78,-0.23107769658769467],[120,111,79,-0.23568096654354856],[120,112,64,-0.19993215697684177],[120,112,65,-0.16753501687288197],[120,112,66,-0.09937825254290981],[120,112,67,-0.045781881825831754],[120,112,68,-0.040517604137678194],[120,112,69,-0.06063642897256938],[120,112,70,-0.05280117437775095],[120,112,71,-0.06013347034354483],[120,112,72,-0.10033478102637361],[120,112,73,-0.13970769500556104],[120,112,74,-0.16426516278918674],[120,112,75,-0.23349357123314318],[120,112,76,-0.22867464734223533],[120,112,77,-0.21298408757580506],[120,112,78,-0.23295456052444335],[120,112,79,-0.23732937664916995],[120,113,64,-0.20122419002448536],[120,113,65,-0.16858440826698312],[120,113,66,-0.0996150085291201],[120,113,67,-0.04555208093502134],[120,113,68,-0.040232278423003365],[120,113,69,-0.06052049325533789],[120,113,70,-0.05292853455489154],[120,113,71,-0.06091435147438384],[120,113,72,-0.10151309523249352],[120,113,73,-0.14077110817205382],[120,113,74,-0.16522870436489923],[120,113,75,-0.23514681612680133],[120,113,76,-0.23061682702244748],[120,113,77,-0.21505039316356153],[120,113,78,-0.23478573747493645],[120,113,79,-0.23892358420294038],[120,114,64,-0.20249156745928307],[120,114,65,-0.169611587211335],[120,114,66,-0.0998365380012482],[120,114,67,-0.04531472659980051],[120,114,68,-0.03993755565015993],[120,114,69,-0.06039269509074618],[120,114,70,-0.053050202400766695],[120,114,71,-0.06169319122791056],[120,114,72,-0.10268042827484691],[120,114,73,-0.14181020766771135],[120,114,74,-0.166157533584271],[120,114,75,-0.2367529141253684],[120,114,76,-0.2325202448010396],[120,114,77,-0.21708363904642558],[120,114,78,-0.23656985104770856],[120,114,79,-0.24046212706379563],[120,115,64,-0.20373327594030077],[120,115,65,-0.17061572401673375],[120,115,66,-0.10004262779486207],[120,115,67,-0.04507000021166202],[120,115,68,-0.039633601938707005],[120,115,69,-0.06025313272667375],[120,115,70,-0.053166320307753326],[120,115,71,-0.062469687984042774],[120,115,72,-0.10383600230389077],[120,115,73,-0.14282421336737952],[120,115,74,-0.16705086606438524],[120,115,75,-0.23831024059801706],[120,115,76,-0.23438338644758736],[120,115,77,-0.21908242641067147],[120,115,78,-0.23830557552157713],[120,115,79,-0.241943619494324],[120,116,64,-0.20494819336618264],[120,116,65,-0.1715958812414014],[120,116,66,-0.1002329659722165],[120,116,67,-0.044817982097563984],[120,116,68,-0.039320488192909724],[120,116,69,-0.060101812715388434],[120,116,70,-0.05327692428283622],[120,116,71,-0.06324340883861607],[120,116,72,-0.10497890900516872],[120,116,73,-0.1438122306613377],[120,116,74,-0.16790781439359584],[120,116,75,-0.239817073004167],[120,116,76,-0.23620461657718544],[120,116,77,-0.22104522309119842],[120,116,78,-0.23999148238248788],[120,116,79,-0.24336659746418976],[120,117,64,-0.2061349091684879],[120,117,65,-0.17255083155859058],[120,117,66,-0.10040695642724244],[120,117,67,-0.04455846327564073],[120,117,68,-0.038997999688433926],[120,117,69,-0.05993845719369395],[120,117,70,-0.05338174875153091],[120,117,71,-0.06401359302744537],[120,117,72,-0.10610791169099328],[120,117,73,-0.14477305028784088],[120,117,74,-0.16872718577081267],[120,117,75,-0.2412713877236995],[120,117,76,-0.2379819727076601],[120,117,77,-0.22297015502951653],[120,117,78,-0.24162582945940905],[120,117,79,-0.2447293057922519],[120,118,64,-0.20729198402751722],[120,118,65,-0.1734793202203679],[120,118,66,-0.10056398325364116],[120,118,67,-0.04429121219311911],[120,118,68,-0.038665905865875656],[120,118,69,-0.05976277661242115],[120,118,70,-0.05348050210261719],[120,118,71,-0.06477943143382069],[120,118,72,-0.10722172876885176],[120,118,73,-0.14570543479211223],[120,118,74,-0.16950777153030275],[120,118,75,-0.2426711540640608],[120,118,76,-0.2397134618130902],[120,118,77,-0.22485530550504368],[120,118,78,-0.24320686298858818],[120,118,79,-0.24603000337958028],[120,119,64,-0.208417994592084],[120,119,65,-0.17438011007515625],[120,119,66,-0.10070345517964198],[120,119,67,-0.044016019068660324],[120,119,68,-0.03832400524746456],[120,119,69,-0.05957451510823561],[120,119,70,-0.05357291243049542],[120,119,71,-0.06554011388783489],[120,119,72,-0.10831908253999462],[120,119,73,-0.1466081678117435],[120,119,74,-0.17024839700195005],[120,119,75,-0.2440143861484945],[120,119,76,-0.24139711235193248],[120,119,77,-0.22669876740761016],[120,119,78,-0.2447328701823598],[120,119,79,-0.24726701644221977],[120,120,64,-0.2095115355267948],[120,120,65,-0.17525198340614506],[120,120,66,-0.10082480628815746],[120,120,67,-0.043732696014724466],[120,120,68,-0.037972125612241454],[120,120,69,-0.059373450617173376],[120,120,70,-0.053658727542139475],[120,120,71,-0.06629483029045177],[120,120,72,-0.10939870132601591],[120,120,73,-0.14748005615248513],[120,120,74,-0.1709479236346247],[120,120,75,-0.24529914656934912],[120,120,76,-0.2430309776124413],[120,120,77,-0.22849864634550232],[120,120,78,-0.24620218203927993],[120,120,79,-0.2484387414133492],[120,121,64,-0.21057122158039643],[120,121,65,-0.17609374377956838],[120,121,66,-0.10092749671024834],[120,121,67,-0.04344107712795186],[120,121,68,-0.037610124117574584],[120,121,69,-0.05915939491978164],[120,121,70,-0.0537377149223971],[120,121,71,-0.06704277175754317],[120,121,72,-0.11045932161965244],[120,121,73,-0.14831993185428255],[120,121,74,-0.17160525108563845],[120,121,75,-0.2465235500079652],[120,121,76,-0.24461313908141366],[120,121,77,-0.23025306379728122],[120,121,78,-0.24761317610274136],[120,121,79,-0.24954364771760137],[120,122,64,-0.21159568967032122],[120,122,65,-0.1769042178980809],[120,122,66,-0.1010110132888778],[120,122,67,-0.04314101854556163],[120,122,68,-0.03723788736441193],[120,122,69,-0.058932193615616045],[120,122,70,-0.05380966165655621],[120,122,71,-0.06778313178077738],[120,122,72,-0.1114996902540682],[120,122,73,-0.14912665424195734],[120,122,74,-0.172219319270532],[120,122,75,-0.24768576681113114],[120,122,76,-0.2461417098286869],[120,122,77,-0.23196016030120156],[120,122,78,-0.24896427916192546],[120,122,79,-0.2505802804097509],[120,123,64,-0.21258360097848014],[120,123,65,-0.17768225745443705],[120,123,66,-0.10107487021010338],[120,123,67,-0.04283239846598984],[120,123,68,-0.03685533140398726],[120,123,69,-0.05869172602524208],[120,123,70,-0.053874374309383494],[120,123,71,-0.0685151074022224],[120,123,72,-0.11251856658480237],[120,123,73,-0.14989911195493857],[120,123,74,-0.1727891103675024],[120,123,75,-0.24878402651412687],[120,123,76,-0.2476148378995797],[120,123,77,-0.2336180986757314],[120,123,78,-0.2502539698890054],[120,123,79,-0.2515472626703957],[120,124,64,-0.21353364305322026],[120,124,65,-0.1784267409806011],[120,124,66,-0.1011186095989817],[120,124,67,-0.04251511713216192],[120,124,68,-0.03646240168397588],[120,124,69,-0.05843790501824129],[120,124,70,-0.05393167876008632],[120,124,71,-0.06923790039948237],[120,124,72,-0.11351472467845924],[120,124,73,-0.15063622495043102],[120,124,74,-0.17331365077080568],[120,124,75,-0.2498166213003818],[120,124,76,-0.24903070970722038],[120,124,77,-0.23522506726433642],[120,124,78,-0.2514807814065868],[120,124,79,-0.2524432981516884],[120,125,64,-0.2144445319122818],[120,125,65,-0.17913657568738003],[120,125,66,-0.10114180207762113],[120,125,67,-0.04218909677600708],[120,125,68,-0.03605907293240731],[120,125,69,-0.058170676766111304],[120,125,70,-0.05398141999294897],[120,125,71,-0.06995071847822178],[120,125,72,-0.11448695550220325],[120,125,73,-0.15133694647446014],[120,125,74,-0.17379201298755106],[120,125,75,-0.2507819093878418],[120,125,76,-0.25038755341652996],[120,125,77,-0.2367792831974503],[120,125,78,-0.2526433037795411],[120,125,79,-0.2532671731667073],[120,126,64,-0.21531501414155335],[120,126,65,-0.17981069928969493],[120,126,66,-0.10114404728302089],[120,126,67,-0.041854281523062795],[120,126,68,-0.03564534897799312],[120,126,69,-0.05789002041936562],[120,126,70,-0.054023461843676165],[120,126,71,-0.07065277646892802],[120,126,72,-0.11543406910808646],[120,126,73,-0.1520002649953018],[120,126,74,-0.17422331747244038],[120,126,75,-0.25167831833229015],[120,126,76,-0.2516836423114824],[120,126,77,-0.23827899566428293],[120,126,78,-0.25374018642550034],[120,126,79,-0.2540177587165427],[120,127,64,-0.21614386898429083],[120,127,65,-0.18044808181252261],[120,127,66,-0.10112497434243298],[120,127,67,-0.04151063725616148],[120,127,68,-0.03522126250577266],[120,127,69,-0.05759594770845191],[120,127,70,-0.054057686701700344],[120,127,71,-0.07134329752475183],[120,127,72,-0.1163548968061899],[120,127,73,-0.15262520609381441],[120,127,74,-0.17460673439504015],[120,127,75,-0.2525043482379117],[120,127,76,-0.2529172981370576],[120,127,77,-0.23972248918684774],[120,127,78,-0.254770140438423],[120,127,79,-0.25469401234967654],[120,128,64,-0.21692991041547371],[120,128,65,-0.18104772737259886],[120,128,66,-0.10108424230421209],[120,128,67,-0.04115815143745094],[120,128,68,-0.034786874747348276],[120,128,69,-0.057288502468539684],[120,128,70,-0.05408399516900982],[120,128,71,-0.07202151431731256],[120,128,72,-0.11724829332060016],[120,128,73,-0.15321083430532337],[120,128,74,-0.17494148533436416],[120,128,75,-0.2532585748656199],[120,128,76,-0.25408689440724264],[120,128,77,-0.24110808688841082],[120,128,78,-0.2557319408198374],[120,128,79,-0.25529497984880273],[120,129,64,-0.21767198919593106],[120,129,65,-0.1816086759309905],[120,129,66,-0.10102154052228739],[120,129,67,-0.0407968328882052],[120,129,68,-0.03434227510529016],[120,129,69,-0.05696776008859233],[120,129,70,-0.054102305676304766],[120,129,71,-0.07268667022738061],[120,129,72,-0.11811313892225697],[120,129,73,-0.15375625490780173],[120,129,74,-0.1752268448956852],[120,129,75,-0.2539396526298546],[120,129,76,-0.25519085967033694],[120,129,77,-0.24243415374836097],[120,129,78,-0.2566244286125483],[120,129,79,-0.25581979674077454],[120,130,64,-0.21836899490080613],[120,130,65,-0.18213000501161924],[120,130,66,-0.10093658899252278],[120,130,67,-0.04042671152604164],[120,130,68,-0.03388758071155563],[120,130,69,-0.05663382688546344],[120,130,70,-0.05411255405750108],[120,130,71,-0.07333802052736176],[120,130,72,-0.11894834153272595],[120,130,73,-0.15426061565116528],[120,130,74,-0.1754621422446071],[120,130,75,-0.2545463174747206],[120,130,76,-0.25622768072271357],[120,130,77,-0.24369909983531707],[120,130,78,-0.2574465129317823],[120,130,79,-0.25626768962592306],[120,131,64,-0.21901985791697526],[120,131,65,-0.1826108313809334],[120,131,66,-0.10082913863947508],[120,131,67,-0.04004783805942674],[120,131,68,-0.0334229359201405],[120,131,69,-0.05628683940417194],[120,131,70,-0.05411469308388164],[120,131,71,-0.07397483355257202],[120,131,72,-0.11975283879303478],[120,131,73,-0.1547231084226839],[120,131,74,-0.17564676255367417],[120,131,75,-0.25507738962067616],[120,131,76,-0.2571959057622134],[120,131,77,-0.24490138351016588],[120,131,78,-0.2581971728889733],[120,131,79,-0.256637977323563],[120,132,64,-0.21962355140402182],[120,132,65,-0.18305031268393854],[120,132,66,-0.10069897155220403],[120,132,67,-0.039660283639517874],[120,132,68,-0.03294851173444474],[120,132,69,-0.05592696364582928],[120,132,70,-0.05410869195940361],[120,132,71,-0.07459639185834624],[120,132,72,-0.12052560009178796],[120,132,73,-0.1551429708436353],[120,132,74,-0.17578014835695166],[120,132,75,-0.2555317761732074],[120,132,76,-0.2580941474723158],[120,132,77,-0.24603951459062645],[120,132,78,-0.25887545940364454],[120,132,79,-0.2569300718311092],[120,133,64,-0.22017909321337636],[120,133,65,-0.18344764903187016],[120,133,66,-0.10054590116797334],[120,133,67,-0.039264139469588906],[120,133,68,-0.03246450517013762],[120,133,69,-0.055554394225026865],[120,133,70,-0.05409453577887595],[120,133,71,-0.07520199336005133],[120,133,72,-0.12126562854684685],[120,133,73,-0.1555194877924797],[120,133,74,-0.17586180080822078],[120,133,75,-0.2559084735852473],[120,133,76,-0.25892108602825176],[120,133,77,-0.2471120574688101],[120,133,78,-0.2594804968990403],[120,133,79,-0.2571434790947654],[120,134,64,-0.2206855477603123],[120,134,65,-0.18380208453690652],[120,134,66,-0.10036977240289405],[120,134,67,-0.038859516372506335],[120,134,68,-0.03197113855462552],[120,134,69,-0.055169353458848366],[120,134,70,-0.054072224950950425],[120,134,71,-0.07579095245316539],[120,134,72,-0.12197196293500084],[120,134,73,-0.1558519928500405],[120,134,74,-0.1758912808386889],[120,134,75,-0.25620656996547125],[120,134,76,-0.25967547201630814],[120,134,77,-0.24811763417324215],[120,134,78,-0.2600114848774613],[120,134,79,-0.25727779959036784],[120,135,64,-0.22114202784350387],[120,135,65,-0.18411290878938125],[120,135,66,-0.10017046172871495],[120,135,67,-0.03844654431688839],[120,135,68,-0.03146865876448545],[120,135,69,-0.054772090389960865],[120,135,70,-0.05404177458804911],[120,135,71,-0.07636260111065277],[120,135,72,-0.1226436795641821],[120,135,73,-0.15613986966235163],[120,135,74,-0.17586821021032362],[120,135,75,-0.2564252472249282],[120,135,76,-0.26035612925764806],[120,135,77,-0.24905492736676307],[120,135,78,-0.26046769937152225],[120,135,79,-0.25733272871355695],[120,136,64,-0.22154769640695554],[120,136,65,-0.184379458273101],[120,136,66,-0.09994787719517913],[120,136,67,-0.03802537190278515],[120,136,68,-0.030957336402527316],[120,136,69,-0.05436287974656049],[120,136,70,-0.05400321386553055],[120,136,71,-0.07691628995491871],[120,136,72,-0.12327989408290674],[120,136,73,-0.1563825532170434],[120,136,74,-0.17579227246120235],[120,136,75,-0.25656378305490407],[120,136,76,-0.26096195752809115],[120,136,77,-0.2499226832717326],[120,136,78,-0.2608484942678041],[120,136,79,-0.2573080569789999],[120,137,64,-0.22190176823917995],[120,137,65,-0.18460111771447626],[120,137,66,-0.09970195839752573],[120,137,67,-0.03759616580788191],[120,137,68,-0.030437464916400613],[120,137,69,-0.053942020842221106],[120,137,70,-0.05395658535256731],[120,137,71,-0.07745138930173588],[120,137,72,-0.1238797632218125],[120,137,73,-0.15657953102936426],[120,137,74,-0.17566321373951738],[120,137,75,-0.256621552729307],[120,137,76,-0.2614919351654603],[120,137,77,-0.2507197145140143],[120,137,78,-0.2611533024997025],[120,137,79,-0.2572036700290085],[120,138,64,-0.22220351160462185],[120,138,65,-0.18477732136133176],[120,138,66,-0.09943267638892599],[120,138,67,-0.03715911019542114],[120,138,68,-0.029909359660939897],[120,138,69,-0.053509836418983256],[120,138,70,-0.053901944317364316],[120,138,71,-0.07796729017361693],[120,138,72,-0.12444248646234016],[120,138,73,-0.15673034423417617],[120,138,74,-0.17548084352318064],[120,138,75,-0.2565980307253392],[120,138,76,-0.2619451215562894],[120,138,77,-0.2514449028772915],[120,138,78,-0.2613816371065599],[120,138,79,-0.2570195484524575],[120,139,64,-0.22245224980244116],[120,139,65,-0.18490755418741195],[120,139,66,-0.09914003353780797],[120,139,67,-0.03671440608519259],[120,139,68,-0.0293733569066786],[120,139,69,-0.05306667143726236],[120,139,70,-0.053839358009468694],[120,139,71,-0.07846340528018314],[120,139,72,-0.12496730762778567],[120,139,73,-0.15683458858049423],[120,139,74,-0.17524503522225132],[120,139,75,-0.25649279215667836],[120,139,76,-0.26232065949388894],[120,139,77,-0.2520972019593437],[120,139,78,-0.26153309215646564],[120,139,79,-0.256755767415451],[120,140,64,-0.22264736264789559],[120,140,65,-0.1849913530187498],[120,140,66,-0.09882406333020097],[120,140,67,-0.03626227068909728],[120,140,68,-0.028829812797191833],[120,140,69,-0.05261289181638962],[120,140,70,-0.0537689049220542],[120,140,71,-0.07893916996320803],[120,140,72,-0.1254535163921884],[120,140,73,-0.1568919153254143],[120,140,74,-0.17495572666171247],[120,140,75,-0.2563055140138806],[120,140,76,-0.2626177774000288],[120,140,77,-0.25267563972209023],[120,140,78,-0.26160734353045967],[120,140,79,-0.25641249610578937],[120,141,64,-0.22278828787174282],[120,141,65,-0.18502830757828048],[120,141,66,-0.09848483011743618],[120,141,67,-0.03580293671296787],[120,141,68,-0.028279102258181244],[120,141,69,-0.05214888312983957],[120,141,70,-0.053690674037171246],[120,141,71,-0.07939404310409598],[120,141,72,-0.12590044970273062],[120,141,73,-0.156902032024542],[120,141,74,-0.1746129204424635],[120,141,75,-0.2560359762072616],[120,141,76,-0.26283579140277535],[120,141,77,-0.25317932092733564],[120,141,78,-0.26160414956616646],[120,141,79,-0.2559899969937828],[120,142,64,-0.2228745224332215],[120,142,65,-0.18501806144523755],[120,142,66,-0.09812242880967396],[120,142,67,-0.03533665162643514],[120,142,68,-0.027721617861383403],[120,142,69,-0.05167504925936326],[120,142,70,-0.053604764057024475],[120,142,71,-0.07982750799167594],[120,142,72,-0.1263074931115697],[120,142,73,-0.15686470321630525],[120,142,74,-0.17421668417868566],[120,142,75,-0.25568406240801267],[120,142,76,-0.26297410726332016],[120,142,77,-0.2536074294503834],[120,142,78,-0.2615233515592419],[120,142,79,-0.25548862491251884],[120,143,64,-0.2229056237423723],[120,143,65,-0.1849603129260938],[120,143,66,-0.09773698451592962],[120,143,67,-0.0348636769027931],[120,143,68,-0.027157768646609345],[120,143,69,-0.05119181101244837],[120,143,70,-0.053511282624427975],[120,143,71,-0.08023907314829981],[120,143,72,-0.12667408201327823],[120,143,73,-0.15677975099783448],[120,143,74,-0.17376715061009634],[120,143,75,-0.2552497606838846],[120,143,76,-0.26303222214498256],[120,143,77,-0.2539592304638954],[120,143,78,-0.26136487412133896],[120,143,79,-0.25490882596119097],[120,144,64,-0.22288121078766462],[120,144,65,-0.1848548158340316],[120,144,66,-0.0973286521314283],[120,144,67,-0.0343842872309334],[120,144,68,-0.0265879789053958],[120,144,69,-0.050699604707679084],[120,144,70,-0.0534103455356326],[120,144,71,-0.0806282731123522],[120,144,72,-0.12699970278433345],[120,144,73,-0.15664705549038846],[120,144,74,-0.1732645175879435],[120,144,75,-0.2547331639263425],[120,144,76,-0.2630097262179407],[120,144,77,-0.254234072484647],[120,144,78,-0.2611287253936343],[120,144,79,-0.2542511362355822],[120,145,64,-0.22280096516509268],[120,145,65,-0.18470138017413223],[120,145,66,-0.09689761587326182],[120,145,67,-0.03389876970151403],[120,145,68,-0.02601268692989072],[120,145,69,-0.05019888073268456],[120,145,70,-0.05330207594875024],[120,145,71,-0.08099466917539944],[120,145,72,-0.12728389382137462],[120,145,73,-0.15646655519260233],[120,145,74,-0.17270904793392639],[120,145,75,-0.2541344700666615],[120,145,76,-0.26290630409363586],[120,145,77,-0.2544313892761281],[120,145,78,-0.2608149971153114],[120,145,79,-0.2535161803902814],[120,146,64,-0.2226646320051445],[120,146,65,-0.1844998727317313],[120,146,66,-0.09644408876551085],[120,146,67,-0.03340742296967234],[120,146,68,-0.02543234373078336],[120,146,69,-0.049690102079514104],[120,146,70,-0.053186603591043505],[120,146,71,-0.08133785007233522],[120,146,72,-0.12752624647523675],[120,146,73,-0.15623824722015991],[120,146,74,-0.1721010691715967],[120,146,75,-0.2534539820790444],[120,146,76,-0.2627217360832065],[120,146,77,-0.2545507016002414],[120,146,78,-0.26042386454673566],[120,146,79,-0.2527046700376721],[120,147,64,-0.2224720207942953],[120,147,65,-0.18425021756162957],[120,147,66,-0.09596831207510567],[120,147,67,-0.032910556396635794],[120,147,68,-0.0248474117281694],[120,147,69,-0.049173742862320895],[120,147,70,-0.053064063968309545],[120,147,71,-0.08165743262299181],[120,147,72,-0.12772640587806194],[120,147,73,-0.15596218743079057],[120,147,74,-0.17144097313013842],[120,147,75,-0.2526921077694499],[120,147,76,-0.2624558992747859],[120,147,77,-0.25459161881173403],[120,147,78,-0.25995558624738535],[120,147,79,-0.2518174019891184],[120,148,64,-0.22222300608791784],[120,148,65,-0.1839523963760959],[120,148,66,-0.09547055469986987],[120,148,67,-0.03240848917270346],[120,148,68,-0.02425836341938906],[120,148,69,-0.04865028682233683],[120,148,70,-0.05293459757960806],[120,148,71,-0.0819530623238325],[120,148,72,-0.12788407166110072],[120,148,73,-0.15563849043382655],[120,148,74,-0.1707292154207829],[120,148,75,-0.2518493593494185],[120,148,76,-0.2621087684249331],[120,148,77,-0.2545538402893499],[120,148,78,-0.2594105037089686],[120,148,79,-0.2508552563442288],[120,149,64,-0.2219175281117908],[120,149,65,-0.18360644882988678],[120,149,66,-0.09495111251032455],[120,149,67,-0.03190154942413235],[120,149,68,-0.02366568002796079],[120,149,69,-0.0481202258251558],[120,149,70,-0.05279834914052893],[120,149,71,-0.08222441388845868],[120,149,72,-0.12799899856112493],[120,149,73,-0.15526732948387553],[120,149,74,-0.1699663147864887],[120,149,75,-0.25092635279483255],[120,149,76,-0.26168041665999336],[120,149,77,-0.2544371566981163],[120,149,78,-0.2587890408444809],[120,149,79,-0.24981919443441852],[120,150,64,-0.2215555932496455],[120,150,65,-0.18321247270074925],[120,150,66,-0.09441030764693946],[120,150,67,-0.03139007330650511],[120,150,68,-0.023069850137790015],[120,150,69,-0.04758405835534694],[120,150,70,-0.05265546681815001],[120,150,71,-0.08247119173581176],[120,150,72,-0.12807099691370172],[120,150,73,-0.15484893625848703],[120,150,74,-0.1691528523258514],[120,150,75,-0.24992380699013886],[120,150,76,-0.26117101598367715],[120,150,77,-0.25424145107761054],[120,150,78,-0.25809170333431114],[120,150,79,-0.2487102566273636],[120,151,64,-0.22113727441450579],[120,151,65,-0.18277062396418772],[120,151,66,-0.09384848777467031],[120,151,67,-0.03087440408722967],[120,151,68,-0.022471368316916755],[120,151,69,-0.04704228801344143],[120,151,70,-0.05250610148076624],[120,151,71,-0.08269313042506429],[120,151,72,-0.12809993303188932],[120,151,73,-0.15438360052002187],[120,151,74,-0.16828947059259577],[120,151,75,-0.24884254265922848],[120,151,76,-0.2605808375876999],[120,151,77,-0.253966699751498],[120,151,78,-0.25731907783082],[120,151,79,-0.24752955999923848],[120,152,64,-0.22066271130186058],[120,152,65,-0.18228111676153247],[120,152,66,-0.09326602529670633],[120,152,67,-0.0303548912198321],[120,152,68,-0.02187073373507704],[120,152,69,-0.04649542202028731],[120,152,70,-0.052350405965389306],[120,152,71,-0.08288999503635319],[120,152,72,-0.12808572946926064],[120,152,73,-0.15387166966225782],[120,152,74,-0.16737687257233236],[120,152,75,-0.2476834810847615],[120,152,76,-0.25991025196286427],[120,152,77,-0.2536129730541289],[120,152,78,-0.25647183102316295],[120,152,79,-0.24627829588194342],[120,153,64,-0.22013211052303414],[120,153,65,-0.18174422326066117],[120,153,66,-0.0926633165294789],[120,153,67,-0.029831889412743864],[120,153,68,-0.021268448779387206],[120,153,69,-0.045943969733732805],[120,153,70,-0.05218853436591792],[120,153,71,-0.08306158149662987],[120,153,72,-0.12802836516648855],[120,153,73,-0.15331354814259804],[120,153,74,-0.1664158205386387],[120,153,75,-0.24644764261838115],[120,153,76,-0.25915972880855254],[120,153,77,-0.2531804358704837],[120,153,78,-0.25555070856445494],[120,153,79,-0.24495772729278298],[120,154,64,-0.21954574561743465],[120,154,65,-0.18116027340901317],[120,154,66,-0.09204078084107194],[120,154,67,-0.029305757695289265],[120,154,68,-0.020665017672453885],[120,154,69,-0.04538844118251894],[120,154,70,-0.052020641344755966],[120,154,71,-0.08320771685003436],[120,154,72,-0.12792787548104995],[120,154,73,-0.15270969680105842],[120,154,74,-0.16540713479085525],[120,154,75,-0.24513614498486747],[120,154,76,-0.25832983673916454],[120,154,77,-0.2526693479862598],[120,154,78,-0.25455653386366567],[120,154,79,-0.24356918625426927],[120,155,64,-0.21890395694268902],[120,155,65,-0.18052965457883002],[120,155,66,-0.0913988597552563],[120,155,67,-0.02877685848357307],[120,155,68,-0.02006094509718563],[120,155,69,-0.0448293456221669],[120,155,70,-0.05184688147053886],[120,155,71,-0.08332825947235786],[120,155,72,-0.1277843520999696],[120,155,73,-0.15206063206755024],[120,155,74,-0.16435169227633914],[120,155,75,-0.24375020138389916],[120,155,76,-0.25742124278664996],[120,155,77,-0.2520800642454642],[120,155,78,-0.2534902067449937],[120,155,79,-0.24211407101196533],[120,156,64,-0.21820715144202052],[120,156,65,-0.17985281110488016],[120,156,66,-0.0907380160234729],[120,156,67,-0.028245556648973904],[120,156,68,-0.01945673483256337],[120,156,69,-0.04426719011754407],[120,156,70,-0.05166740858447582],[120,156,71,-0.0834230992292681],[120,156,72,-0.1275979428358307],[120,156,73,-0.15136692505927515],[120,156,74,-0.16325042510025983],[120,156,75,-0.24229111839371595],[120,156,76,-0.25643471169887766],[120,156,77,-0.2514130345134077],[120,156,78,-0.25235270197771725],[120,156,79,-0.24059384315840554],[120,157,64,-0.2174558022885482],[120,157,65,-0.17913024371520112],[120,157,66,-0.09005873266712841],[120,157,67,-0.027712218591895398],[120,157,68,-0.018852888404538515],[120,157,69,-0.043702478156629955],[120,157,70,-0.05148237519765619],[120,157,71,-0.0834921575781246],[120,157,72,-0.12736885130663497],[120,157,73,-0.15062920057036233],[120,157,74,-0.16210431892632912],[120,157,75,-0.24076029368154409],[120,157,76,-0.2553711050342026],[120,157,77,-0.2506688034435745],[120,157,78,-0.25114506767984995],[120,157,79,-0.23901002467129945],[120,158,64,-0.21665044840655479],[120,158,65,-0.17836250885572613],[120,158,66,-0.08936151199266072],[120,158,67,-0.02717721132342132],[120,158,68,-0.018249903756183124],[120,158,69,-0.04313570829987553],[120,158,70,-0.051291931921512865],[120,158,71,-0.08353538761334359],[120,158,72,-0.12709733650042332],[120,158,73,-0.1498481359561948],[120,158,74,-0.1609144112722029],[120,158,75,-0.23915921352626257],[120,158,76,-0.2542313800532196],[120,158,77,-0.24984801004743679],[120,158,78,-0.2498684235992016],[120,158,79,-0.23736419487432472],[120,159,64,-0.2157916938701179],[120,159,65,-0.177550217909963],[120,159,66,-0.08864687458187338],[120,159,67,-0.0266409015574599],[120,159,68,-0.01764827394111031],[120,159,69,-0.042567372869358036],[120,159,70,-0.05109622693344172],[120,159,71,-0.0835527740553973],[120,159,72,-0.12678371222589654],[120,159,73,-0.1490244599151591],[120,159,74,-0.15968178970359106],[120,159,75,-0.23748945015935216],[120,159,76,-0.2530165884093187],[120,159,77,-0.24895138706686282],[120,159,78,-0.2485239592757121],[120,159,79,-0.23565798732887466],[120,160,64,-0.21488020717982925],[120,160,65,-0.17669403631517094],[120,160,66,-0.08791535826006067],[120,160,67,-0.02610365481588913],[120,160,68,-0.01704848584405471],[120,160,69,-0.041997956681726706],[120,160,70,-0.05089540547938342],[120,160,71,-0.08354433318366769],[120,160,72,-0.1264283464505942],[120,160,73,-0.14815895117083042],[120,160,74,-0.15840758993138532],[120,160,75,-0.2357526589306882],[120,160,76,-0.2517278746402512],[120,160,77,-0.24797976014936582],[120,160,78,-0.2471129320891861],[120,160,79,-0.23389308666517805],[120,161,64,-0.21391672041873033],[120,161,65,-0.17579468257683664],[120,161,66,-0.08716751704452638],[120,161,67,-0.02556583454918393],[120,161,68,-0.016451018932417082],[120,161,69,-0.04142793582875656],[120,161,70,-0.05068960941499163],[120,161,71,-0.08351011271350862],[120,161,72,-0.12603166052852824],[120,161,73,-0.14725243705791616],[120,161,74,-0.15709299381645073],[120,161,75,-0.23395057530634628],[120,161,76,-0.2503664744636023],[120,161,77,-0.2469340468270709],[120,161,78,-0.24563666519681984],[120,161,79,-0.23207122536122304],[120,162,64,-0.21290202828890553],[120,162,65,-0.17485292718350473],[120,162,66,-0.08640392007608065],[120,162,67,-0.02502780127488904],[120,162,68,-0.01585634404239371],[120,162,69,-0.040857776509067065],[120,162,70,-0.05047897678678725],[120,162,71,-0.0834501916179976],[120,162,72,-0.12559412831946784],[120,162,73,-0.14630579201552296],[120,162,74,-0.15573922728694994],[120,162,75,-0.23208501170603296],[120,162,76,-0.24893371287962834],[120,162,77,-0.24581525530086853],[120,162,78,-0.24409654536513153],[120,162,79,-0.2301941804778922],[120,163,64,-0.21183698703054604],[120,163,65,-0.1738695914243302],[120,163,66,-0.08562515053613017],[120,163,67,-0.024489911736223405],[120,163,68,-0.015264922203163419],[120,163,69,-0.040287933914322366],[120,163,70,-0.0502636414544755],[120,163,71,-0.08336467989496679],[120,163,72,-0.1251162752023724],[120,163,73,-0.14531993599156987],[120,163,74,-0.15434755817334062],[120,163,75,-0.23015785418827986],[120,163,76,-0.24743100208555857],[120,163,77,-0.24462448303183093],[120,163,78,-0.2424940207011261],[120,163,79,-0.22826377035865217],[120,164,64,-0.2107225132256728],[120,164,65,-0.17284554611203343],[120,164,66,-0.08483180455200447],[120,164,67,-0.023952518083023795],[120,164,68,-0.014677203502454918],[120,164,69,-0.03971885117299695],[120,164,70,-0.050043732755407494],[120,164,71,-0.08325371828005004],[120,164,72,-0.1245986769857849],[120,164,73,-0.1442958327624416],[120,164,74,-0.1529192939664492],[120,164,75,-0.22817105899202167],[120,164,76,-0.2458598392060832],[120,164,77,-0.24336291514260164],[120,164,78,-0.24083059828774875],[120,164,79,-0.22628185130208617],[120,165,64,-0.2095595824890236],[120,165,65,-0.171781710214191],[120,165,66,-0.08402449009312528],[120,165,67,-0.023415967077092162],[120,165,68,-0.014093625996590043],[120,165,69,-0.039150958354484254],[120,165,70,-0.04981937521191635],[120,165,71,-0.08311747790659153],[120,165,72,-0.1240419587182824],[120,165,73,-0.1432344881721875],[120,165,74,-0.1514557795042182],[120,165,75,-0.22612664894359205],[120,165,76,-0.2442218038453261],[120,165,77,-0.2420318226320695],[120,165,78,-0.23910784172887162],[120,165,79,-0.22425031421543717],[120,166,64,-0.20834922804898484],[120,166,65,-0.17067904939609693],[120,166,66,-0.08320382586063683],[120,166,67,-0.022880599323918307],[120,166,68,-0.013514614667925725],[120,166,69,-0.03858467153606219],[120,166,70,-0.049590688282026764],[120,166,71,-0.08295615991335667],[120,166,72,-0.12344679340233025],[120,166,73,-0.1421369482957847],[120,166,74,-0.1499583945929425],[120,166,75,-0.22402670973859715],[120,166,76,-0.24251855546618625],[120,166,77,-0.24063256040720907],[120,166,78,-0.23732736860920572],[120,166,79,-0.22217108125717216],[120,167,64,-0.20709253922178578],[120,167,65,-0.1695385744787043],[120,167,66,-0.08237044017309622],[120,167,67,-0.0223467485326218],[120,167,68,-0.012940580432398869],[120,167,69,-0.038020391934939717],[120,167,70,-0.04935778615382905],[120,167,71,-0.08276999500114453],[120,167,72,-0.12281390061520589],[120,167,73,-0.1410042975312238],[120,167,74,-0.14842855156901721],[120,167,75,-0.2218733861085298],[120,167,76,-0.2407518306035325],[120,167,77,-0.23916656513662682],[120,167,78,-0.2354908478747487],[120,167,79,-0.220046102476463],[120,168,64,-0.20579065978249914],[120,168,65,-0.16836133981539878],[120,168,66,-0.08152496985077895],[120,168,67,-0.021814740805814428],[120,168,68,-0.012371919199644288],[120,168,69,-0.0374585051072885],[120,168,70,-0.04912077758353903],[120,168,71,-0.08255924293946289],[120,168,72,-0.12214404504085938],[120,168,73,-0.13983765662532194],[120,168,74,-0.14686769280735804],[120,168,75,-0.21966887788230968],[120,168,76,-0.23892343991824633],[120,168,77,-0.23763535293086913],[120,168,78,-0.23359999713946758],[120,168,79,-0.21787735245723708],[120,169,64,-0.2044447862367515],[120,169,65,-0.16714844159165085],[120,169,66,-0.08066805910114831],[120,169,67,-0.021284893960965754],[120,169,68,-0.011809010987942271],[120,169,69,-0.03689938021587846],[120,169,70,-0.04887976577706102],[120,169,71,-0.08232419202456419],[120,169,72,-0.12143803491685926],[120,169,73,-0.13863818063838543],[120,169,74,-0.14527728818284888],[120,169,75,-0.21741543595330465],[120,169,76,-0.23703526509969577],[120,169,77,-0.23604051685518038],[120,169,78,-0.2316565799240955],[120,169,79,-0.21566682697428324],[120,170,64,-0.20305616599731874],[120,170,65,-0.16590101605177693],[120,170,66,-0.07980035840794378],[120,170,67,-0.020757516884671846],[120,170,68,-0.011252219095969816],[120,170,69,-0.03634336936758211],[120,170,70,-0.04863484831460419],[120,170,71,-0.08206515849021837],[120,170,72,-0.12069672040076658],[120,170,73,-0.13740705685295562],[120,170,74,-0.14365883249124595],[120,170,75,-0.2151153581626112],[120,170,76,-0.235089255624671],[120,170,77,-0.23438372428089752],[120,170,78,-0.22966240283298459],[120,170,79,-0.21341653966862106],[120,171,64,-0.20162609547016044],[120,171,65,-0.16462023765735181],[120,171,66,-0.07892252342635829],[120,171,67,-0.020232908921129805],[120,171,68,-0.010701889333134101],[120,171,69,-0.03579080702174353],[120,171,70,-0.04838611711770784],[120,171,71,-0.08178248587271988],[120,171,72,-0.11992099186052892],[120,171,73,-0.13614550263206682],[120,171,74,-0.14201384283615254],[120,171,75,-0.212770985109717],[120,171,76,-0.23308742538138216],[120,171,77,-0.23266671408227],[120,171,78,-0.2276193126751117],[120,171,79,-0.21112851874912603],[120,172,64,-0.20015591805469135],[120,172,65,-0.1633073171819656],[120,172,66,-0.078035213886657],[120,172,67,-0.01971135929592052],[120,172,68,-0.01015834930996033],[120,172,69,-0.035242009470041885],[120,172,70,-0.04813365845777744],[120,172,71,-0.08147654433170477],[120,172,72,-0.11911177809365991],[120,172,73,-0.13485476323252896],[120,172,74,-0.1403438559887069],[120,172,75,-0.2103846959018095],[120,172,76,-0.23103184916751632],[120,172,77,-0.23089129368596564],[120,172,78,-0.22552919353536766],[120,172,79,-0.20880480372709911],[120,173,64,-0.19864702206340001],[120,173,65,-0.16196349974726063],[120,173,66,-0.0771390925085443],[120,173,67,-0.019193146576049754],[120,173,68,-0.009621907789751269],[120,173,69,-0.03469727438815996],[120,173,70,-0.04787755300500308],[120,173,71,-0.08114772992842857],[120,173,72,-0.1182700444801493],[120,173,73,-0.13353610957886017],[120,173,74,-0.13865042572671474],[120,173,75,-0.2079589038532137],[120,173,76,-0.22892465907181805],[120,173,77,-0.22905933598103614],[120,173,78,-0.2233939638023376],[120,173,79,-0.20644744219016764],[120,174,64,-0.19710083856622537],[120,174,65,-0.16059006280539534],[120,174,66,-0.076234823928534],[120,174,67,-0.018678538167065703],[120,174,68,-0.00909285410249752],[120,174,69,-0.034156880459271954],[120,174,70,-0.047617875916343394],[120,174,71,-0.08079646386327217],[120,174,72,-0.11739679107424078],[120,174,73,-0.1321908360036115],[120,174,74,-0.1369351201600355],[120,174,75,-0.20549605214661343],[120,174,76,-0.22676804074908646],[120,174,77,-0.22717277609761552],[120,174,78,-0.22121557315884358],[120,174,79,-0.20405848662162182],[120,175,64,-0.19551883916532872],[120,175,65,-0.15918831407322956],[120,175,66,-0.07532307364246457],[120,175,67,-0.018167789847865566],[120,175,68,-0.008571457621704135],[120,175,69,-0.033621087069008196],[120,175,70,-0.047354696961025455],[120,175,71,-0.08042319167430359],[120,175,72,-0.1164930506403505],[120,175,73,-0.13082025795987107],[120,175,74,-0.13519951904901853],[120,175,75,-0.20299860946777917],[120,175,76,-0.22456422959882688],[120,175,77,-0.22523360806305634],[120,175,78,-0.21899599954153998],[120,175,79,-0.20163999127094423],[120,176,64,-0.19390253370616417],[120,176,65,-0.15775958942370952],[120,176,66,-0.07440450696522789],[120,176,67,-0.01766114534364896],[120,176,68,-0.00805796730454071],[120,176,69,-0.03309013407123684],[120,176,70,-0.04708808068179212],[120,176,71,-0.0800283823987721],[120,176,72,-0.11555988663850573],[120,176,73,-0.12942570971177803],[120,176,74,-0.13344521112279872],[120,176,75,-0.2004690656256133],[120,176,76,-0.22231550685814425],[120,176,77,-0.22324388134460765],[120,176,78,-0.21673724607583175],[120,176,79,-0.19919400908092538],[120,177,64,-0.1922534679310074],[120,177,65,-0.15630525074010182],[120,177,66,-0.07347978800970624],[120,177,67,-0.017158835937324618],[120,177,68,-0.007552611295459625],[120,177,69,-0.032564241623712575],[120,177,70,-0.046818086589978714],[120,177,71,-0.07961252769953853],[120,177,72,-0.11459839116485725],[120,177,73,-0.12800854200895428],[120,177,74,-0.13167379140427365],[120,177,75,-0.1979099271693867],[120,177,76,-0.2200241956198226],[120,177,77,-0.2212056972882082],[120,177,78,-0.21444133799245116],[120,177,79,-0.19672258867645864],[120,178,64,-0.19057322108128402],[120,178,65,-0.15482668373883055],[120,178,66,-0.07254957868679385],[120,178,67,-0.016661080119483924],[120,178,68,-0.007055596593132558],[120,178,69,-0.032043610092303346],[120,178,70,-0.04654476939228082],[120,178,71,-0.07917614095846597],[120,178,72,-0.11360968285287186],[120,178,73,-0.12657011975074411],[120,178,74,-0.1298868585485172],[120,178,75,-0.1953237130150002],[120,178,76,-0.21769265678675373],[120,178,77,-0.21912120546325717],[120,178,78,-0.21211031953195542],[120,178,79,-0.19422777141971265],[120,179,64,-0.18886340345526995],[120,179,65,-0.15332529576681697],[120,179,66,-0.07161453772828005],[120,179,67,-0.01616808327688094],[120,179,68,-0.006567108780273782],[120,179,69,-0.031528420022197516],[120,179,70,-0.04626817924688777],[120,179,71,-0.0787197563388396],[120,179,72,-0.11259490474088167],[120,179,73,-0.12511181964613713],[120,179,74,-0.12808601220132146],[120,179,75,-0.19271295009208195],[120,179,76,-0.21532328497415912],[120,179,77,-0.21699259992359538],[120,179,78,-0.2097462508433609],[120,179,79,-0.19171158853597134],[120,180,64,-0.18712565392790986],[120,180,65,-0.15180251357931693],[120,180,66,-0.0706753197342837],[120,180,67,-0.01568003741921868],[120,180,68,-0.006087311815675954],[120,180,69,-0.031018832174232236],[120,180,70,-0.04598836204654958],[120,180,71,-0.07824392781900272],[120,180,72,-0.11155522211178424],[120,180,73,-0.12363502787528005],[120,180,74,-0.1262728503845087],[120,180,75,-0.19008016902365404],[120,180,76,-0.21291850437124496],[120,180,77,-0.21482211539523927],[120,180,78,-0.20735120488313374],[120,180,79,-0.18917605831413725],[120,181,64,-0.18536163743968184],[120,181,65,-0.15025978110435698],[120,181,66,-0.06973257424681167],[120,181,67,-0.015197120943849509],[120,181,68,-0.005616347887491578],[120,181,69,-0.03051498762416712],[120,181,70,-0.045705359725939955],[120,181,71,-0.07774922819937823],[120,181,72,-0.11049182031067697],[120,181,73,-0.12214113775840063],[120,181,74,-0.12444896691453579],[120,181,75,-0.18742789985000055],[120,181,76,-0.21048076457411044],[120,181,77,-0.21261202340166174],[120,181,78,-0.20492726432063835],[120,181,79,-0.18662318338543865],[120,182,64,-0.1835730424615486],[120,182,65,-0.1486985571998975],[120,182,66,-0.06878694485087368],[120,182,67,-0.014719498437816895],[120,182,68,-0.005154337326512782],[120,182,69,-0.030017007922442614],[120,182,70,-0.045419210590552185],[120,182,71,-0.07723624808510826],[120,182,72,-0.10940590254624188],[120,182,73,-0.12063154743790702],[120,182,74,-0.12261594886076457],[120,182,75,-0.18475866780816308],[120,182,76,-0.20801253640181025],[120,182,77,-0.2103646283376255],[120,182,78,-0.20247651845605327],[120,182,79,-0.1840549480834993],[120,183,64,-0.18176157844322002],[120,183,65,-0.14712031340997175],[120,183,66,-0.06783906830452556],[120,183,67,-0.01424732051654843],[120,183,68,-0.004701378577988383],[120,183,69,-0.02952499531174208],[120,183,70,-0.045129949664272535],[120,183,71,-0.07670559484660944],[120,183,72,-0.1082986876817423],[120,183,73,-0.11910765757939654],[120,183,74,-0.12077537404969149],[120,183,75,-0.18207498917838036],[120,183,76,-0.2055163077076437],[120,183,77,-0.20808226350282674],[120,183,78,-0.20000106015671826],[120,183,79,-0.18147331588858803],[120,184,64,-0.1799289732520278],[120,184,65,-0.14552653172604138],[120,184,66,-0.0668895736990526],[120,184,67,-0.013780723698310097],[120,184,68,-0.004257548230224929],[120,184,69,-0.029039032999383842],[120,184,70,-0.04483760905262659],[120,184,71,-0.07615789156033209],[120,184,72,-0.1071714080214329],[120,184,73,-0.11757086909716921],[120,184,74,-0.11892880862121714],[120,184,75,-0.17937936720850944],[120,184,76,-0.2029945791977279],[120,184,77,-0.20576728710671088],[120,184,78,-0.1975029828176997],[120,184,79,-0.17888022695841566],[120,185,64,-0.1780769706097938],[120,185,65,-0.1439187023598255],[120,185,66,-0.06593908165037839],[120,185,67,-0.013319830313368516],[120,185,68,-0.0038229010979630843],[120,185,69,-0.02855918548133091],[120,185,70,-0.044542218318604845],[120,185,71,-0.07559377593205127],[120,185,72,-0.10602530709817075],[120,185,73,-0.11602258090973931],[120,185,74,-0.11707780464285496],[120,185,75,-0.17667428812719957],[120,185,76,-0.200449860268935],[120,185,77,-0.20342207825595232],[120,185,78,-0.19498437735224786],[120,185,79,-0.17627759574747312],[120,186,64,-0.17620732753519774],[120,186,65,-0.1422983215339149],[120,186,66,-0.06498820352271178],[120,186,67,-0.012864748446703104],[120,186,68,-0.0033974703583340535],[120,186,69,-0.028085498914424415],[120,186,70,-0.0442438048679219],[120,186,71,-0.07501389920505547],[120,186,72,-0.10486163746798613],[120,186,73,-0.11446418773074483],[120,186,74,-0.11522389778762793],[120,186,75,-0.17396221725635982],[120,186,76,-0.19788466487828685],[120,186,77,-0.2010490329362046],[120,186,78,-0.1924473292177004],[120,186,79,-0.17366730871654057],[120,187,64,-0.1743218117991553],[120,187,65,-0.1406668892964222],[120,187,66,-0.0640375406852735],[120,187,67,-0.01241557191291397],[120,187,68,-0.002981267736918516],[120,187,69,-0.027618001533197677],[120,187,70,-0.04394239434046994],[120,187,71,-0.07441892505559843],[120,187,72,-0.1036816585172896],[120,187,73,-0.11289707790048209],[120,187,74,-0.11336860508113898],[120,187,75,-0.17124559523307992],[120,187,76,-0.19530150745579442],[120,187,77,-0.1986505599997417],[120,187,78,-0.18989391548219592],[120,187,79,-0.1710512221335857],[120,188,64,-0.1724221994007525],[120,188,65,-0.13902590736589068],[120,188,66,-0.0630876838028199],[120,188,67,-0.011972380261830493],[120,188,68,-0.0025742837412152703],[120,188,69,-0.02715670410743034],[120,188,70,-0.04363801100466166],[120,188,71,-0.07380952847796454],[120,188,72,-0.10248663428828331],[120,188,73,-0.11132263126312147],[120,188,74,-0.11151342272306312],[120,188,75,-0.16852683435080892],[120,188,76,-0.19270289887261058],[120,188,77,-0.1962290771705952],[120,188,78,-0.18732620193736543],[120,188,79,-0.16843115996685934],[120,189,64,-0.17051027207135133],[120,189,65,-0.13737687701269286],[120,189,66,-0.06213921216060793],[120,189,67,-0.011535238813232167],[120,189,68,-0.0021764879386602745],[120,189,69,-0.02670160043647707],[120,189,70,-0.04333067815137401],[120,189,71,-0.0731863946615558],[120,189,72,-0.10127783132810773],[120,189,73,-0.10974221709454458],[120,189,74,-0.10965982398812245],[120,189,75,-0.1658083150292793],[120,189,76,-0.19009134247629575],[120,189,77,-0.19378700707883054],[120,189,78,-0.18474624026205555],[120,189,79,-0.16580891187069588],[120,190,64,-0.16858781481440716],[120,190,65,-0.13572129698302582],[120,190,66,-0.0611926930242598],[120,190,67,-0.011104198718910673],[120,190,68,-0.0017878292760845369],[120,190,69,-0.026252667876192105],[120,190,70,-0.04302041848413755],[120,190,71,-0.07255021786236508],[120,190,72,-0.10005651656708445],[120,190,73,-0.1081571920855049],[120,190,74,-0.1078092572112729],[120,190,75,-0.16309238242217433],[120,190,76,-0.18746933020473572],[120,190,77,-0.191326773335464],[120,190,78,-0.18215606524185762],[120,190,79,-0.16318623126408],[120,191,64,-0.1666566134885545],[120,191,65,-0.13406066147156298],[120,191,66,-0.060248681034883546],[120,191,67,-0.01067929705018575],[120,191,68,-0.0014082364373242087],[120,191,69,-0.025809867894138593],[120,191,70,-0.04270725450220299],[120,191,71,-0.07190170027117668],[120,191,72,-0.09882395523128427],[120,191,73,-0.10656889838461583],[120,191,74,-0.10596314386158048],[120,191,75,-0.16038134317114106],[120,191,76,-0.1848393387900666],[120,191,77,-0.188850796659428],[120,191,78,-0.1795576920490256],[120,191,79,-0.1605648335016906],[120,192,64,-0.1647184524414792],[120,192,65,-0.13239645814874426],[120,192,66,-0.05930771763970176],[120,192,67,-0.010260556908900664],[120,192,68,-0.001037618235547354],[120,192,69,-0.025373146648679304],[120,192,70,-0.04239120887317314],[120,192,71,-0.07124155088087643],[120,192,72,-0.0975814087945478],[120,192,73,-0.10497866170550121],[120,192,74,-0.10412287670900067],[120,192,75,-0.1576774623143041],[120,192,76,-0.18220382606373262],[120,192,77,-0.18636149106788633],[120,192,78,-0.17695311358716662],[120,192,79,-0.15794639413681355],[120,193,64,-0.1627751122020323],[120,193,65,-0.1307301662485704],[120,193,66,-0.05837033055829292],[120,193,67,-0.009847987559770507],[120,193,68,-6.758640366630139E-4],[120,193,69,-0.024942435587406935],[120,193,70,-0.042072304791875556],[120,193,71,-0.07057048435519869],[120,193,72,-0.09633013297488383],[120,193,73,-0.1033877895021716],[120,193,74,-0.10228981808793003],[120,193,75,-0.15498296035692202],[120,193,76,-0.1795652273734817],[120,193,77,-0.18386126014096393],[120,193,78,-0.1743442979048045],[120,193,79,-0.1553325472751085],[120,194,64,-0.16082836723793836],[120,194,65,-0.12906325472262864],[120,194,66,-0.05743703328441919],[120,194,67,-0.009441584581856158],[120,194,68,-3.2284421002330477E-4],[120,194,69,-0.02451765206025899],[120,194,70,-0.04175056632214269],[120,194,71,-0.06988921990115982],[120,194,72,-0.09507137577997767],[120,194,73,-0.10179756921647856],[120,194,74,-0.10046529826114023],[120,194,75,-0.1523000105113781],[120,194,76,-0.17692595212282536],[120,194,77,-0.1813524933717817],[120,194,78,-0.1717331856816931],[120,194,79,-0.15272488401791415],[120,195,64,-0.15887998378641174],[120,195,65,-0.12739718046599355],[120,195,66,-0.05650832462332252],[120,195,67,-0.009041330036848575],[120,195,68,2.1589397489861012E-5],[120,195,69,-0.02409869994264773],[120,195,70,-0.04142601871831683],[120,195,71,-0.06919848014751263],[120,195,72,-0.09380637560641153],[120,195,73,-0.1002092666012358],[120,195,74,-0.09865061388731396],[120,195,75,-0.1496307361131108],[120,195,76,-0.17428838044308867],[120,195,77,-0.17883756261239137],[120,195,78,-0.16912168779145884],[120,195,79,-0.1501249509933885],[120,196,64,-0.15693171686295748],[120,196,65,-0.12573338562176445],[120,196,66,-0.05558468834159344],[120,196,67,-0.008647193289863573],[120,196,68,3.576010028984983E-4],[120,196,69,-0.023685472674077307],[120,196,70,-0.04109869055364279],[120,196,71,-0.06849899077793863],[120,196,72,-0.0925363600222604],[120,196,73,-0.09862412470558171],[120,196,74,-0.09684702654291884],[120,196,75,-0.1469772074128377],[120,196,76,-0.17165485986098242],[120,196,77,-0.17631881950315542],[120,196,78,-0.16651168516136017],[120,196,79,-0.1475342514733468],[120,197,64,-0.15498520123620382],[120,197,65,-0.12407317840652986],[120,197,66,-0.05466660300205817],[120,197,67,-0.008259207139989906],[120,197,68,6.851403427284732E-4],[120,197,69,-0.023278135764413833],[120,197,70,-0.040768828580267154],[120,197,71,-0.06779156711788542],[120,197,72,-0.09126261699807034],[120,197,73,-0.09704343032812505],[120,197,74,-0.095055754944511],[120,197,75,-0.1443413441417338],[120,197,76,-0.1690276833845211],[120,197,77,-0.1737986930639735],[120,197,78,-0.1639052859703911],[120,197,79,-0.14495453766587565],[120,198,64,-0.15304184826774409],[120,198,65,-0.1224176256716142],[120,198,66,-0.05375455710132093],[120,198,67,-0.007877541028536526],[120,198,68,0.0010037421267600323],[120,198,69,-0.022877371059518065],[120,198,70,-0.04043708640895356],[120,198,71,-0.06707719097838509],[120,198,72,-0.08998655560510216],[120,198,73,-0.09546856998413561],[120,198,74,-0.09327796619825969],[120,198,75,-0.14172482570197606],[120,198,76,-0.16640906073768225],[120,198,77,-0.1712797643226282],[120,198,78,-0.16130504850617028],[120,198,79,-0.14238807019656793],[120,199,64,-0.15110302915599125],[120,199,65,-0.12076776009750735],[120,199,66,-0.05284903683693764],[120,199,67,-0.007502371009876787],[120,199,68,0.0013129409918367701],[120,199,69,-0.022483866813668194],[120,199,70,-0.0401041389743247],[120,199,71,-0.06635685282350473],[120,199,72,-0.08870957137352305],[120,199,73,-0.09390090407340099],[120,199,74,-0.09151478450664306],[120,199,75,-0.13912925648319888],[120,199,76,-0.16380114037212504],[120,199,77,-0.1687645710363663],[120,199,78,-0.15871350974380838],[120,199,79,-0.13983709197608496],[120,200,64,-0.1491700976136414],[120,200,65,-0.11912460546397756],[120,200,66,-0.05195052313667928],[120,200,67,-0.0071338624409981325],[120,200,68,0.0016123227443088648],[120,200,69,-0.022098254981485974],[120,200,70,-0.03977063431468436],[120,200,71,-0.06563153079767182],[120,200,72,-0.08743302825393844],[120,200,73,-0.09234175037552698],[120,200,74,-0.0897672918311793],[120,200,75,-0.1365561861500236],[120,200,76,-0.16120601179155372],[120,200,77,-0.16625558252541553],[120,200,78,-0.156133124816461],[120,200,79,-0.13730376059553864],[120,201,64,-0.1472443887254875],[120,201,65,-0.11748917532135321],[120,201,66,-0.05105949056191014],[120,201,67,-0.006772169570442791],[120,201,68,0.001901522799297774],[120,201,69,-0.021721113307740098],[120,201,70,-0.0394371944320624],[120,201,71,-0.06490218977661012],[120,201,72,-0.0861582575046877],[120,201,73,-0.09079238337558077],[120,201,74,-0.0880365273334402],[120,201,75,-0.13400710864763343],[120,201,76,-0.15862570445329044],[120,201,77,-0.16375519860045293],[120,201,78,-0.15356626620270686],[120,201,79,-0.134790147788963],[120,202,64,-0.1453272178686445],[120,202,65,-0.11586247171709543],[120,202,66,-0.0501764062702968],[120,202,67,-0.006417435180654526],[120,202,68,0.0021802245443484037],[120,202,69,-0.02135296748684543],[120,202,70,-0.03910441619539249],[120,202,71,-0.06416978048298888],[120,202,72,-0.0848865566899169],[120,202,73,-0.08925403370788965],[120,202,74,-0.08632348691940814],[120,202,75,-0.13148346134658412],[120,202,76,-0.15606218681827863],[120,202,77,-0.1612657486655363],[120,202,78,-0.15101522311992874],[120,202,79,-0.13229823910844718],[120,203,64,-0.143419733053783],[120,203,65,-0.11424536539977677],[120,203,66,-0.04930167711684834],[120,203,67,-0.006069783800277257],[120,203,68,0.0024481549836625222],[120,203,69,-0.020994270346994803],[120,203,70,-0.03877282918947436],[120,203,71,-0.06343516728339885],[120,203,72,-0.0836190935536255],[120,203,73,-0.08772778663410183],[120,203,74,-0.0846290242716586],[120,203,75,-0.12898647238227973],[120,203,76,-0.15351718279970591],[120,203,77,-0.1587893000430532],[120,203,78,-0.1484820208065743],[120,203,79,-0.12982977464795453],[120,204,64,-0.14152196330757882],[120,204,65,-0.11263782693192778],[120,204,66,-0.048435314625839686],[120,204,67,-0.005729282633239634],[120,204,68,0.0027050621261866274],[120,204,69,-0.020645255550619464],[120,204,70,-0.03844261464418031],[120,204,71,-0.06269866270936543],[120,204,72,-0.08235628900403072],[120,204,73,-0.08621393006874341],[120,204,74,-0.08295321767351344],[120,204,75,-0.1265161835583978],[120,204,76,-0.15099099067365382],[120,204,77,-0.1563264217012944],[120,204,78,-0.14596725624986293],[120,204,79,-0.12738522497943722],[120,205,64,-0.13963348938006934],[120,205,65,-0.11103947118563298],[120,205,66,-0.047577178107135305],[120,205,67,-0.005395978966986555],[120,205,68,0.0029507164639865284],[120,205,69,-0.020306046989642886],[120,205,70,-0.03811379700380817],[120,205,71,-0.06196034903357881],[120,205,72,-0.08109825568887563],[120,205,73,-0.0847124264435361],[120,205,74,-0.08129583731308387],[120,205,75,-0.12407216689241911],[120,205,76,-0.1484833303557785],[120,205,77,-0.15387706410761437],[120,205,78,-0.14347093630392665],[120,205,79,-0.12496453945001366],[120,206,64,-0.13775397296046052],[120,206,65,-0.10944998532623142],[120,206,66,-0.046727162419874346],[120,206,67,-0.005069924506625292],[120,206,68,0.0031849179579048893],[120,206,69,-0.01997674383639855],[120,206,70,-0.03778639934890076],[120,206,71,-0.061220335360852834],[120,206,72,-0.0798451425716866],[120,206,73,-0.08322327946979938],[120,206,74,-0.07965670400521546],[120,206,75,-0.12165407662989876],[120,206,76,-0.1459940055245317],[120,206,77,-0.15144125063935823],[120,206,78,-0.14099313189595905],[120,206,79,-0.12256772495698753],[120,207,64,-0.13588315495993372],[120,207,65,-0.10786912685330567],[120,207,66,-0.04588519621443353],[120,207,67,-0.004751174243500956],[120,207,68,0.0034074957709390266],[120,207,69,-0.019657421621619323],[120,207,70,-0.03746044441970183],[120,207,71,-0.0604787574922792],[120,207,72,-0.07859713398742632],[120,207,73,-0.0817465326423446],[120,207,74,-0.078035686896988],[120,207,75,-0.11926164583540767],[120,207,76,-0.1435229014011435],[120,207,77,-0.149019076258928],[120,207,78,-0.1385339763318909],[120,207,79,-0.12019484368271713],[120,208,64,-0.13402085102439737],[120,208,65,-0.10629671942437384],[120,208,66,-0.04505123924649749],[120,208,67,-0.0044397852565776965],[120,208,68,0.003618307916071145],[120,208,69,-0.019348132881168167],[120,208,70,-0.03713595478860174],[120,208,71,-0.05973577638653621],[120,208,72,-0.0773544468673019],[120,208,73,-0.08028226584944352],[120,208,74,-0.07643269937659657],[120,208,75,-0.1168946802082133],[120,208,76,-0.14106997907923668],[120,208,77,-0.14661070252312056],[120,208,78,-0.136093660172333],[120,208,79,-0.1178460078571764],[120,209,64,-0.13216694713905758],[120,209,65,-0.10473264877578058],[120,209,66,-0.04422527977971562],[120,209,67,-0.0041358155788411965],[120,209,68,0.0038172408590786406],[120,209,69,-0.019048907827878256],[120,209,70,-0.036812953022070036],[120,209,71,-0.05899157661313386],[120,209,72,-0.07611732799977203],[120,209,73,-0.07883059207196501],[120,209,74,-0.07484769512121967],[120,209,75,-0.11455305210144535],[120,209,76,-0.1386352699820016],[120,209,77,-0.14421635266637822],[120,209,78,-0.13367242621578235],[120,209,79,-0.1155213746746343],[120,210,64,-0.1303213953224162],[120,210,65,-0.10317685873766437],[120,210,66,-0.04340733207525208],[120,210,67,-0.0038393231288642448],[120,210,68,0.004004209072337005],[120,210,69,-0.01875975505224807],[120,210,70,-0.03649146183458327],[120,210,71,-0.05824636480112671],[120,210,72,-0.07488605133228994],[120,210,73,-0.07739165417380253],[120,210,74,-0.07328066428239398],[120,210,75,-0.1122366947412498],[120,210,76,-0.1362188704476848],[120,210,77,-0.14183630676334857],[120,210,78,-0.13127056459492562],[120,210,79,-0.11322114136828154],[120,211,64,-0.12848420940815933],[120,211,65,-0.10162934734078988],[120,211,66,-0.042597433967048896],[120,211,67,-0.003550364707721188],[120,211,68,0.004179154536533856],[120,211,69,-0.018480662254745983],[120,211,70,-0.03617150423661981],[120,211,71,-0.05750036808692902],[120,211,72,-0.07366091531840557],[120,211,73,-0.07596562178587554],[120,211,74,-0.07173162980787558],[120,211,75,-0.10994559664329583],[120,211,76,-0.13382093644477308],[120,211,77,-0.13947089697637027],[120,211,78,-0.12888840799190002],[120,211,79,-0.11094554044667128],[120,212,64,-0.12665546091407417],[120,212,65,-0.10009016301374254],[120,212,66,-0.041795644521972104],[120,212,67,-0.003268995061377665],[120,212,68,0.004342046188135281],[120,212,69,-0.018211597011504935],[120,212,70,-0.03585310367834595],[120,212,71,-0.05675383256488097],[120,212,72,-0.0724422403148123],[120,212,73,-0.07455268828599892],[120,212,74,-0.0702006438992348],[120,212,75,-0.10767979622460071],[120,212,76,-0.13144167841866833],[120,212,77,-0.1371205028935544],[120,212,78,-0.12652632697822666],[120,212,79,-0.10869483509567467],[120,213,64,-0.12483527499778117],[120,213,65,-0.09855940086966776],[120,213,66,-0.041002041784343385],[120,213,67,-0.0029952660086308147],[120,213,68,0.00449287931127338],[120,213,69,-0.017952507574322894],[120,213,70,-0.03553628419023261],[120,213,71,-0.05600702174422961],[120,213,72,-0.07123036603288489],[120,213,73,-0.07315306787693163],[120,213,74,-0.06868778460469864],[120,213,75,-0.10543937660921385],[120,213,76,-0.12908135627205738],[120,213,77,-0.13478554696319534],[120,213,78,-0.12418472548500491],[120,213,79,-0.10646931474950704],[120,214,64,-0.12302382649967257],[120,214,65,-0.09703719908237021],[120,214,66,-0.04021672060467111],[120,214,67,-0.002729225634642753],[120,214,68,0.004631674873454313],[120,214,69,-0.01770332370514069],[120,214,70,-0.03522107052154265],[120,214,71,-0.05526021501623423],[120,214,72,-0.07002564904922491],[120,214,73,-0.07176699276492939],[120,214,74,-0.06719315254699425],[120,214,75,-0.10322446062680676],[120,214,76,-0.12674027448154454],[120,214,77,-0.13246649003029495],[120,214,78,-0.12186403640881506],[120,214,79,-0.10426929083422196],[120,215,64,-0.12122133607388534],[120,215,65,-0.09552373535204739],[120,215,66,-0.03943979055255783],[120,215,67,-0.002470917549971582],[120,215,68,0.004758478805245744],[120,215,69,-0.01746395754441705],[120,215,70,-0.034907488277294986],[120,215,71,-0.054513706135052985],[120,215,72,-0.06882846037958423],[120,215,73,-0.07039471044101911],[120,215,74,-0.06571686778603927],[120,215,75,-0.10103520600352028],[120,215,76,-0.12441877735329764],[120,215,77,-0.13016382698089118],[120,215,78,-0.1195647173585042],[120,215,79,-0.10209509268676346],[120,216,64,-0.11942806640856757],[120,216,65,-0.09401922346137945],[120,216,66,-0.038671373913925305],[120,216,67,-0.0022203802148881907],[120,216,68,0.004873361224766122],[120,216,69,-0.017234304512172054],[120,216,70,-0.03459556405402547],[120,216,71,-0.05376780171600606],[120,216,72,-0.06763918312038066],[120,216,73,-0.06903648106709813],[120,216,74,-0.06425906681641051],[120,216,75,-0.09887180074471344],[120,216,76,-0.12211724442064496],[120,216,77,-0.12787808249978885],[120,216,78,-0.1172872465477585],[120,216,79,-0.09994706365237377],[120,217,64,-0.1176443185370728],[120,217,65,-0.09252390992308981],[120,217,66,-0.037911603772843416],[120,217,67,-0.0019776463286797484],[120,217,68,0.004976415608363633],[120,217,69,-0.01701424423994904],[120,217,70,-0.03428532557449358],[120,217,71,-0.053022819754816854],[120,217,72,-0.06645821016190646],[120,217,73,-0.067692574968878],[120,217,74,-0.06281989969960201],[120,217,75,-0.09673445870947792],[120,217,76,-0.1198360859866919],[120,217,77,-0.12560980694719812],[120,217,78,-0.11503211883810294],[120,217,79,-0.09782555736285889],[120,218,64,-0.11587042824195236],[120,218,65,-0.09103807072033594],[120,218,66,-0.037160622178261826],[120,218,67,-0.0017427422834407217],[120,218,68,0.005067757909483774],[120,218,69,-0.016803641531377523],[120,218,70,-0.033976801821210885],[120,218,71,-0.052279088171274836],[120,218,72,-0.06528594197705508],[120,218,73,-0.06636327023745756],[120,218,74,-0.061399527331016834],[120,218,75,-0.09462341537684991],[120,218,76,-0.11757573881501353],[120,218,77,-0.12335957235953827],[120,218,78,-0.11279984193656481],[120,218,79,-0.09573093419778451],[120,219,64,-0.11410676255388297],[120,219,65,-0.08956200814156516],[120,219,66,-0.03641857839600783],[120,219,67,-0.0015156876817396317],[120,219,68,0.005147525628185474],[120,219,69,-0.016602347348624723],[120,219,70,-0.03367002316854306],[120,219,71,-0.051536943380716786],[120,219,72,-0.064122784489214],[120,219,73,-0.0650488504411628],[120,219,74,-0.05999811884163263],[120,219,75,-0.09253892380374304],[120,219,76,-0.11533666197150666],[120,219,77,-0.12112796857949548],[120,219,78,-0.11059093275190832],[120,219,79,-0.09366355793031986],[120,220,64,-0.11235371634777716],[120,220,65,-0.08809604771158791],[120,220,66,-0.03568562724635662],[120,220,67,-0.00129649491734668],[120,220,68,0.005215876834256382],[120,220,69,-0.016410199821605968],[120,220,70,-0.03336502151295694],[120,220,71,-0.05079672889656643],[120,220,72,-0.06296914702267499],[120,220,73,-0.0637496024490263],[120,220,74,-0.058615849134147247],[120,220,75,-0.09048125077455353],[120,220,76,-0.11311933282034731],[120,220,77,-0.11891559952009946],[120,220,78,-0.1084059139128909],[120,220,79,-0.09162379255897035],[120,221,64,-0.11061170903849851],[120,221,65,-0.08664053522079697],[120,221,66,-0.034961927527485455],[120,221,67,-0.0010851688180868323],[120,221,68,0.005272989147228643],[120,221,69,-0.016227025276551715],[120,221,70,-0.03306183040090479],[120,221,71,-0.05005879396707692],[120,221,72,-0.06182544033868158],[120,221,73,-0.06246581436708776],[120,221,74,-0.05725289655334783],[120,221,75,-0.088450673142381],[120,221,76,-0.11092424317694305],[120,221,77,-0.116723079567356],[120,221,78,-0.10624531045162422],[120,221,79,-0.08961199932605285],[120,222,64,-0.1088811813786032],[120,222,65,-0.08519583385446941],[120,222,66,-0.0342476405250026],[120,222,67,-8.817063496736436E-4],[120,222,68,0.0053190586769834465],[120,222,69,-0.01605263928023649],[120,222,70,-0.03276048515371955],[120,222,71,-0.04932349224924402],[120,222,72,-0.06069207475990685],[120,222,73,-0.0611977735883985],[120,222,74,-0.0559094406902525],[120,222,75,-0.08644747436162369],[120,222,76,-0.10875189562053127],[120,222,77,-0.11455103012557998],[120,222,78,-0.10410964665461747],[120,222,79,-0.08762853392325282],[120,223,64,-0.10716259236055405],[120,223,65,-0.08376232142410751],[120,223,66,-0.03354292860764138],[120,223,67,-6.860963792040861E-4],[120,223,68,0.005354298928933379],[120,223,69,-0.015886847695966266],[120,223,70,-0.03246102298881702],[120,223,71,-0.04859118052268475],[120,223,72,-0.05956945838583611],[120,223,73,-0.059945764957337506],[120,223,74,-0.05458566031940401],[120,223,75,-0.08447194121154408],[120,223,76,-0.10660279996886772],[120,223,77,-0.11240007630922672],[120,223,78,-0.10199944308361802],[120,223,79,-0.08567374388413086],[120,224,64,-0.10545641622585344],[120,224,65,-0.08234038770278186],[120,224,66,-0.032847953909123304],[120,224,67,-4.983194968640379E-4],[120,224,68,0.005378939677981067],[120,224,69,-0.015729447747313278],[120,224,70,-0.03216348313649663],[120,224,71,-0.047862217446142254],[120,224,72,-0.0584579954012498],[120,224,73,-0.058710069048602875],[120,224,74,-0.05328173146854206],[120,224,75,-0.08252436071022876],[120,224,76,-0.10447746991722993],[120,224,77,-0.11027084378467175],[120,224,78,-0.09991521376792356],[120,224,79,-0.0837479661630067],[120,225,64,-0.10376313958342087],[120,225,65,-0.08093043186631889],[120,225,66,-0.03216287709600887],[120,225,67,-3.183478941873263E-4],[120,225,68,0.005393225815693464],[120,225,69,-0.01558022908545245],[120,225,70,-0.03186790695157698],[120,225,71,-0.04713696235905851],[120,225,72,-0.05735808447962823],[120,225,73,-0.05749096056090947],[120,225,74,-0.051997825619626944],[120,225,75,-0.08060501721806584],[120,225,76,-0.10237641984361977],[120,225,77,-0.10816395576493239],[120,225,78,-0.09785746356930022],[120,225,79,-0.08185152489911816],[120,226,64,-0.10208325863944077],[120,226,65,-0.07953286004207792],[120,226,66,-0.0314878562211979],[120,226,67,-1.4614529704803887E-4],[120,226,68,0.005397416175288738],[120,226,69,-0.015438974855896435],[120,226,70,-0.03157433801907963],[120,226,71,-0.04641577413044576],[120,226,72,-0.056270117282952274],[120,226,73,-0.05628870682512061],[120,226,74,-0.05073410803996562],[120,226,75,-0.07871418972960353],[120,226,76,-0.10030016178173624],[120,226,77,-0.10608003015990777],[120,226,78,-0.09582668572014981],[120,226,79,-0.07998472936446863],[120,227,64,-0.10041727654079073],[120,227,65,-0.07814808296694521],[120,227,66,-0.030823045662605148],[120,227,67,1.8333048550378462E-5],[120,227,68,0.005391782339103128],[120,227,69,-0.015305462760469818],[120,227,70,-0.031282822253245704],[120,227,71,-0.04569901005714062],[120,227,72,-0.05519447705907588],[120,227,73,-0.05510356642628776],[120,227,74,-0.04949073624199623],[120,227,75,-0.07685214935237797],[120,227,76,-0.09824920256297624],[120,227,77,-0.10401967688430698],[120,227,78,-0.0938233595351053],[120,227,79,-0.07814787209334471],[120,228,64,-0.09876570083394644],[120,228,65,-0.07677651375596833],[120,228,66,-0.030168595146316823],[120,228,67,1.7514034001183375E-4],[120,228,68,0.005376607433313967],[120,228,69,-0.01517946611035497],[120,228,70,-0.030993407989144035],[120,228,71,-0.044987024813261216],[120,228,72,-0.05413153733744858],[120,228,73,-0.05393578793872229],[120,228,74,-0.048267858570002826],[120,228,75,-0.07501915697094311],[120,228,76,-0.0962240411283107],[120,228,77,-0.10198349532493882],[120,228,78,-0.09184794829569451],[120,228,79,-0.07634122719096444],[120,229,64,-0.09712904104106536],[120,229,65,-0.07541856578285637],[120,229,66,-0.029524648853347168],[120,229,67,3.243381332695731E-4],[120,229,68,0.005352184914721038],[120,229,69,-0.015060754866123353],[120,229,70,-0.03070614606617778],[120,229,71,-0.044280169452477064],[120,229,72,-0.05308166072362169],[120,229,73,-0.05278560877293016],[120,229,74,-0.04706561291179154],[120,229,75,-0.07321546109400573],[120,229,76,-0.09422516601050147],[120,229,77,-0.09997207196858267],[120,229,78,-0.08990089730721951],[120,229,79,-0.07456504881826881],[120,230,64,-0.09550780635474784],[120,230,65,-0.07407465067337773],[120,230,66,-0.028891344608956024],[120,230,67,4.659962118402185E-4],[120,230,68,0.005318817354337537],[120,230,69,-0.014949096660820773],[120,230,70,-0.03042108990289664],[120,230,71,-0.043578790464528235],[120,230,72,-0.052045197792665567],[120,230,73,-0.051653254132984265],[120,230,74,-0.04588412553314469],[120,230,75,-0.07144129588224912],[120,230,76,-0.09225305298675335],[120,230,77,-0.09798597819121958],[120,230,78,-0.08798263212654558],[120,230,79,-0.07281956984945889],[120,231,64,-0.09390250345270319],[120,231,65,-0.07274517641242033],[120,231,66,-0.02826881315325721],[120,231,67,6.00192412312155E-4],[120,231,68,0.005276815222535185],[120,231,69,-0.014844257802275669],[120,231,70,-0.030138295562532467],[120,231,71,-0.04288322888715267],[120,231,72,-0.05102248608123507],[120,231,73,-0.05053893608257803],[120,231,74,-0.04472351003258802],[120,231,75,-0.06969687935405236],[120,231,76,-0.09030816290145378],[120,231,77,-0.09602576820890157],[120,231,78,-0.08609355695898324],[120,231,79,-0.07110500069841767],[120,232,64,-0.09231363443327573],[120,232,65,-0.071430545565216],[120,232,66,-0.02765717749165733],[120,232,67,7.270124088642423E-4],[120,232,68,0.005226495680396444],[120,232,69,-0.014746004250990964],[120,232,70,-0.029857821808776257],[120,232,71,-0.042193819474382936],[120,232,72,-0.050013849177699556],[120,232,73,-0.049442852717733854],[120,232,74,-0.04358386641376462],[120,232,75,-0.06798241176594962],[120,232,76,-0.08839093965822871],[120,232,77,-0.0940919771900653],[120,232,78,-0.08423405322197944],[120,232,79,-0.06942152830975581],[120,233,64,-0.09074169487254485],[120,233,65,-0.07013115361299607],[120,233,66,-0.027056552323505116],[120,233,67,8.465494594682135E-4],[120,233,68,0.00516818138178157],[120,233,69,-0.014654102570209314],[120,233,70,-0.02957973015141499],[120,233,71,-0.041510889921968115],[120,233,72,-0.04901959590945117],[120,233,73,-0.048365187443903314],[120,233,74,-0.04246528027250743],[120,233,75,-0.06629807416436434],[120,233,76,-0.08650180838016315],[120,233,77,-0.09218511952866693],[120,233,78,-0.08240447827292388],[120,233,79,-0.06776931530987125],[120,234,64,-0.08918717200339081],[120,234,65,-0.06884738740303778],[120,234,66,-0.026467043547113392],[120,234,67,9.589041165344211E-4],[120,234,68,0.005102199290505606],[120,234,69,-0.014568320844937971],[120,234,70,-0.029304084881509897],[120,234,71,-0.04083476015043106],[120,234,72,-0.04804001962615811],[120,234,73,-0.04730610835490462],[120,234,74,-0.04136782209543983],[120,234,75,-0.06464402710476927],[120,234,76,-0.08464117373657908],[120,234,77,-0.09030568727702087],[120,234,78,-0.08060516429791284],[120,234,79,-0.06614849931302365],[120,235,64,-0.08765054301661218],[120,235,65,-0.06757962371276546],[120,235,66,-0.025888747839136472],[120,235,67,0.0010641839048142964],[120,235,68,0.005028879516843272],[120,235,69,-0.014488429566973268],[120,235,70,-0.029030953095898836],[120,235,71,-0.04016574164605756],[120,235,72,-0.0470753975774293],[120,235,73,-0.046265767710907284],[120,235,74,-0.04029154666671417],[120,235,75,-0.06302040953408262],[120,235,76,-0.08280941843434209],[120,235,77,-0.08845414873677128],[120,235,78,-0.07883641735789763],[120,235,79,-0.064559192377092],[120,236,64,-0.08613227348391883],[120,236,65,-0.0663282279273265],[120,236,66,-0.025321752306149838],[120,236,67,0.0011625029693881597],[120,236,68,0.004948554177353614],[120,236,69,-0.01441420248325573],[120,236,70,-0.028760404710925405],[120,236,71,-0.03950413685992586],[120,236,72,-0.04612599038309667],[120,236,73,-0.045244301512476943],[120,236,74,-0.03923649257932935],[120,236,75,-0.06142733783182756],[120,236,76,-0.0810069018713015],[120,236,77,-0.08663094720602883],[120,236,78,-0.07709851658830058],[120,236,79,-0.06300148060342214],[120,237,64,-0.08463281590227616],[120,237,65,-0.06509355282972569],[120,237,66,-0.024766134206082303],[120,237,67,0.001253981696621586],[120,237,68,0.0048615562818241365],[120,237,69,-0.014345417405140639],[120,237,70,-0.028492512465377897],[120,237,71,-0.038850238664855534],[120,237,72,-0.04519204159401596],[120,237,73,-0.04424182916745343],[120,237,74,-0.03820268184723724],[120,237,75,-0.0598649050052248],[120,237,76,-0.07923395894902405],[120,237,77,-0.08483649988023713],[120,237,78,-0.07539171354777553],[120,237,79,-0.06147542387486009],[120,238,64,-0.08315260835877132],[120,238,65,-0.06387593750232373],[120,238,66,-0.024221960737007168],[120,238,67,0.0013387463109877467],[120,238,68,0.004768218650895451],[120,238,69,-0.014281856976458606],[120,238,70,-0.028227351912717896],[120,238,71,-0.03820432986994863],[120,238,72,-0.044273777341031974],[120,238,73,-0.04325845324724321],[120,238,74,-0.03719011961427453],[120,238,75,-0.05833318003310312],[120,238,76,-0.07749089904160246],[120,238,77,-0.08307119690393136],[120,238,78,-0.07371623171145916],[120,238,79,-0.05998105572582933],[120,239,64,-0.0816920733149006],[120,239,65,-0.06267570633824576],[120,239,66,-0.023689288890688106],[120,239,67,0.0014169284506196178],[120,239,68,0.004668872867641639],[120,239,69,-0.014223309398565446],[120,239,70,-0.027965001402806954],[120,239,71,-0.037566682792230514],[120,239,72,-0.04337140606953977],[120,239,73,-0.04229425932896558],[120,239,74,-0.03619879395582398],[120,239,75,-0.056832207353265336],[120,239,76,-0.07577800511697763],[120,239,77,-0.0813354005701948],[120,239,78,-0.07207226610377752],[120,239,79,-0.058518383338133716],[120,240,64,-0.0802516165088369],[120,240,65,-0.06149316816093483],[120,240,66,-0.023168165368126267],[120,240,67,0.001488664724463213],[120,240,68,0.004563848266132762],[120,240,69,-0.014169569110869014],[120,240,70,-0.0277055420534243],[120,240,71,-0.03693755888469609],[120,240,72,-0.04248511835683267],[120,240,73,-0.04134931591970795],[120,240,74,-0.03522867576893231],[120,240,75,-0.05536200648765722],[120,240,76,-0.0740955330068189],[120,240,77,-0.07962944466421168],[120,240,78,-0.07045998306556013],[120,240,79,-0.057087387655954745],[120,241,64,-0.07883162597394724],[120,241,65,-0.06032861544982046],[120,241,66,-0.022658626554240727],[120,241,67,0.0015540962538789236],[120,241,68,0.004453470959739986],[120,241,69,-0.014120437425600641],[120,241,70,-0.027449057711940575],[120,241,71,-0.03631720841986978],[120,241,72,-0.04161508680921248],[120,241,73,-0.04042367445900689],[120,241,74,-0.03427971874648467],[120,241,75,-0.053922571799461215],[120,241,76,-0.07244371082067624],[120,241,77,-0.07795363394696704],[120,241,78,-0.0688795201499529],[120,241,79,-0.05568802361336834],[120,242,64,-0.07743247117156637],[120,242,65,-0.05918232366983091],[120,242,66,-0.022160698548754576],[120,242,67,0.00161336820145066],[120,242,68,0.004338062911599233],[120,242,69,-0.014075723115967024],[120,242,70,-0.02719563490766292],[120,242,71,-0.03570587022786987],[120,242,72,-0.04076146603569816],[120,242,73,-0.03951736939559129],[120,242,74,-0.033351859430956074],[120,242,75,-0.05251387237605035],[120,242,76,-0.0708227384998297],[120,242,77,-0.07630824377485551],[120,242,78,-0.06733098614143618],[120,242,79,-0.05432022046762114],[120,243,64,-0.07605450223572881],[120,243,65,-0.058054550702208094],[120,243,66,-0.021674397250246644],[120,243,67,0.0016666292897402311],[120,243,68,0.004217941049400984],[120,243,69,-0.014035242957064596],[120,243,70,-0.026945362795406227],[120,243,71,-0.035103771487770316],[120,243,72,-0.03992439269497175],[120,243,73,-0.038630418334294966],[120,243,74,-0.032445017343139294],[120,243,75,-0.051135852031530336],[120,243,76,-0.06923278750593329],[120,243,77,-0.0746935198506178],[120,243,78,-0.06581446119201972],[120,243,79,-0.05298388223129313],[120,244,64,-0.07469804932729658],[120,244,65,-0.05694553637384252],[120,244,66,-0.021199728490266325],[120,244,67,0.0017140313126475996],[120,244,68,0.0040934164263617305],[120,244,69,-0.013998822219248542],[120,244,70,-0.026698333090933876],[120,244,71,-0.03451112757090795],[120,244,72,-0.03910398561205918],[120,244,73,-0.037762822248971505],[120,244,74,-0.03155909518117873],[120,244,75,-0.04978842942243944],[120,244,76,-0.06767400063928672],[120,244,77,-0.07310967810075958],[120,244,78,-0.06432999706852525],[120,244,79,-0.05167888819642348],[120,245,64,-0.07336342209468777],[120,245,65,-0.05585550208215321],[120,245,66,-0.02073668821439103],[120,245,67,0.00175572864192068],[120,245,68,0.003964793429898306],[120,245,69,-0.013966295113969282],[120,245,70,-0.026454639999024542],[120,245,71,-0.0339281419346843],[120,245,72,-0.03830034596116008],[120,245,73,-0.03691456575721943],[120,245,74,-0.03069397908521271],[120,245,75,-0.048471498270069024],[120,245,76,-0.06614649198134108],[120,245,77,-0.07155690467437216],[120,245,78,-0.06287761750475702],[120,245,79,-0.0504050935436811],[120,246,64,-0.07205090923814766],[120,246,65,-0.05478465051229635],[120,246,66,-0.02028526270703391],[120,246,67,0.0017918777313045966],[120,246,68,0.0038323690392665015],[120,246,69,-0.013937505192323637],[120,246,70,-0.026214380134939406],[120,246,71,-0.033355006065238293],[120,246,72,-0.03751355751089528],[120,246,73,-0.036085617452648905],[120,246,74,-0.029849538962861123],[120,246,75,-0.04718492768273596],[120,246,76,-0.06465034695579974],[120,246,77,-0.07003535605802924],[120,246,78,-0.06145731865222126],[120,246,79,-0.0491623300296374],[120,247,64,-0.07076077817429875],[120,247,65,-0.05373316544332422],[120,247,66,-0.019845428856823943],[120,247,67,0.0018226366206785612],[120,247,68,0.0036964321330894175],[120,247,69,-0.013912305696875807],[120,247,70,-0.025977652440170657],[120,247,71,-0.032791899467295736],[120,247,72,-0.03674368692819993],[120,247,73,-0.03527593029043514],[120,247,74,-0.029025628870803937],[120,247,75,-0.04592856257128063],[120,247,76,-0.0631856225024969],[120,247,77,-0.06854515930125099],[120,247,78,-0.06006906962300103],[120,247,79,-0.047950406745257884],[120,248,64,-0.0694932747974756],[120,248,65,-0.05270121163971568],[120,248,66,-0.019417154459348503],[120,248,67,0.0018481644424448536],[120,248,68,0.0035572628474372227],[120,248,69,-0.013890559867523912],[120,248,70,-0.02574455809336785],[120,248,71,-0.03223898969936262],[120,248,72,-0.035990784136997175],[120,248,73,-0.034485442021875104],[120,248,74,-0.028222087447676035],[120,248,75,-0.04470222415099368],[120,248,76,-0.061752347358050734],[120,248,77,-0.06708641234683746],[120,248,78,-0.05871281311831768],[120,248,79,-0.0467691109387698],[120,249,64,-0.0682486233341984],[120,249,65,-0.051688934824581444],[120,249,66,-0.019000398554095306],[120,249,67,0.001868620932276093],[120,249,68,0.003415131984798719],[120,249,69,-0.01387214120246247],[120,249,70,-0.02551520041741898],[120,249,71,-0.03169643245237705],[120,249,72,-0.03525488272778537],[120,249,73,-0.03371407567371549],[120,249,74,-0.027438738393557583],[120,249,75,-0.043505710523184096],[120,249,76,-0.060350522437179054],[120,249,77,-0.06565918446026427],[120,249,78,-0.0573884661363257],[120,249,79,-0.04561820889618511],[120,250,64,-0.06702702628693012],[120,250,65,-0.05069646173068023],[120,250,66,-0.018595111792431236],[120,250,67,0.001884165946220317],[120,250,68,0.0032703004740276785],[120,250,69,-0.013856933675494945],[120,250,70,-0.02528968478368042],[120,250,71,-0.031164371669833484],[120,250,72,-0.03453600041422381],[120,250,73,-0.032961740068029134],[120,250,74,-0.02667539099134907],[120,250,75,-0.0423387973295739],[120,250,76,-0.05898012130841883],[120,250,77,-0.06426351675218318],[120,250,78,-0.05609592075265459],[120,250,79,-0.044497446872840456],[120,251,64,-0.06582866446312273],[120,251,65,-0.04972390022527262],[120,251,66,-0.018201236833495508],[120,251,67,0.001894958986029789],[120,251,68,0.0031230188810830455],[120,251,69,-0.013844831911148738],[120,251,70,-0.02506811851436598],[120,251,71,-0.030642939707320273],[120,251,72,-0.033834139532801684],[120,251,73,-0.03222833037846823],[120,251,74,-0.02593184066538167],[120,251,75,-0.041201238472743394],[120,251,76,-0.05764109075791704],[120,251,77,-0.06289942278799524],[120,251,78,-0.05483504496725752],[120,251,79,-0.04340655206946096],[120,252,64,-0.06465369708543674],[120,252,65,-0.04877133950475886],[120,252,66,-0.017818708764963418],[120,252,67,0.0019011587344092648],[120,252,68,0.0029735269700944685],[120,252,69,-0.013835741319268203],[120,252,70,-0.024850610784161186],[120,252,71,-0.030132257529388872],[120,252,72,-0.0331492875817152],[120,252,73,-0.03151372871881296],[120,252,74,-0.025207869572703365],[120,252,75,-0.04009276689592086],[120,252,76,-0.05633335143491443],[120,252,77,-0.06156688927841153],[120,252,78,-0.05360568361118976],[120,252,79,-0.042345233646427304],[120,253,64,-0.06350226197888567],[120,253,65,-0.04783885035495122],[120,253,66,-0.017447455545677164],[120,253,67,0.0019029226017602732],[120,253,68,0.00282205331406783],[120,253,69,-0.013829578190901411],[120,253,70,-0.02463727252210727],[120,253,71,-0.02963243494160118],[120,253,72,-0.032481417795086],[120,253,73,-0.03081780475979125],[120,253,74,-0.024503247222549183],[120,253,75,-0.039013095415471356],[120,253,76,-0.055056798572492516],[120,253,77,-0.060265876844866756],[120,253,78,-0.052407659307005715],[120,253,79,-0.0413131837700847],[120,254,64,-0.06237447583056169],[120,254,65,-0.0469264854727679],[120,254,66,-0.01708739846721768],[120,254,67,0.0019004062858495865],[120,254,68,0.0026688149543154533],[120,254,69,-0.013826269757447949],[120,254,70,-0.024428216314800796],[120,254,71,-0.029143570855567767],[120,254,72,-0.03183048974870262],[120,254,73,-0.03014041637023821],[120,254,74,-0.02381773111960314],[120,254,75,-0.037961917599541456],[120,254,76,-0.05381130277715062],[120,254,77,-0.0589963208536386],[120,254,78,-0.05124077347655948],[120,254,79,-0.04031007868512633],[120,255,64,-0.06127043451753866],[120,255,65,-0.04603427984511979],[120,255,66,-0.016738452631602847],[120,255,67,0.0018937633456527357],[120,255,68,0.002514017107453076],[120,255,69,-0.013825754215195375],[120,255,70,-0.024223556311978697],[120,255,71,-0.028665753584797792],[120,255,72,-0.03119644999355547],[120,255,73,-0.02948141027879284],[120,255,74,-0.023151067426795877],[120,255,75,-0.036938908686458265],[120,255,76,-0.052596710880810915],[120,255,77,-0.05775813231255359],[120,255,78,-0.05010480739013406],[120,255,79,-0.03933557980731217],[120,256,64,-0.06019021349847869],[120,256,65,-0.045162251180716914],[120,256,66,-0.016400527442368192],[120,256,67,0.0018831447905027865],[120,256,68,0.0023578529186383227],[120,256,69,-0.01382798071745051],[120,256,70,-0.02402340813550773],[120,256,71,-0.02819906116913765],[120,256,72,-0.030579232713485373],[120,256,73,-0.02884062275242265],[120,256,74,-0.022502991643487676],[120,256,75,-0.0359437265366104],[120,256,76,-0.051412846848882046],[120,256,77,-0.05655119882418773],[120,256,78,-0.04899952325094731],[120,256,79,-0.038389334830991904],[120,257,64,-0.059133868264419256],[120,257,65,-0.044310400390516126],[120,257,66,-0.01607352710639578],[120,257,67,0.001868698685515803],[120,257,68,0.0022005032595341792],[120,257,69,-0.013832909336574347],[120,257,70,-0.023827888792787213],[120,257,71,-0.027743561725582833],[120,257,72,-0.029978760403361653],[120,257,73,-0.028217880288194948],[120,257,74,-0.021873229295023455],[120,257,75,-0.0349760126116959],[120,257,76,-0.0502595127380674],[120,257,77,-0.055375385589515394],[120,257,78,-0.04792466530923452],[120,257,79,-0.03747097884613167],[120,258,64,-0.058101434844226585],[120,258,65,-0.04347871211256792],[120,258,66,-0.015757351143987224],[120,258,67,0.001850569774099918],[120,258,68,0.0020421365693026063],[120,258,69,-0.013840510998314832],[120,258,70,-0.023637116595555424],[120,258,71,-0.027299313823269725],[120,258,72,-0.02939494456432288],[120,258,73,-0.027613000314866486],[120,258,74,-0.02126149662981421],[120,258,75,-0.03403539297542783],[120,258,76,-0.04913648969771937],[120,258,77,-0.05423053645607059],[120,258,78,-0.04687996100030286],[120,258,79,-0.03658013545981411],[120,259,64,-0.057092930360172836],[120,259,65,-0.0426671552770265],[120,259,66,-0.015451894904775278],[120,259,67,0.0018288991182300056],[120,259,68,0.0018829087368075767],[120,259,69,-0.013850767390863874],[120,259,70,-0.02345121108503175],[120,259,71,-0.026866366880450188],[120,259,72,-0.028827686412704275],[120,259,73,-0.027025791900985356],[120,259,74,-0.02066750132023533],[120,259,75,-0.033121479309964064],[120,259,76,-0.048043539008627165],[120,259,77,-0.05311647500475907],[120,259,78,-0.04586512210111986],[120,259,79,-0.03571641791741306],[120,260,64,-0.05610835362911027],[120,260,65,-0.04187568370713485],[120,260,66,-0.015157050087195496],[120,260,67,0.0018038237570203299],[120,260,68,0.0017229630220732966],[120,260,69,-0.013863670851104497],[120,260,70,-0.023270292964289906],[120,260,71,-0.026444761581281877],[120,260,72,-0.028276877599401173],[120,260,73,-0.02645605646634924],[120,260,74,-0.020090943163795817],[120,260,75,-0.032233869942537276],[120,260,76,-0.046980403153251776],[120,260,77,-0.05203300566957707],[120,260,78,-0.044879845900192596],[120,260,79,-0.03487943021890445],[120,261,64,-0.05514768580476524],[120,261,65,-0.04110423675207561],[120,261,66,-0.014872705259382429],[120,261,67,0.0017754763839790228],[120,261,68,0.0015624300149238123],[120,261,69,-0.01387922423053721],[120,261,70,-0.023094484038712504],[120,261,71,-0.026034530310307558],[120,261,72,-0.027742400936555264],[120,261,73,-0.025903588493831266],[120,261,74,-0.019531514781221226],[120,261,75,-0.03137215087700875],[120,261,76,-0.04594680691159146],[120,261,77,-0.05097991488464892],[120,261,78,-0.04392381637572824],[120,261,79,-0.03406876822606031],[120,262,64,-0.054210891056702085],[120,262,65,-0.04035273994763224],[120,262,66,-0.014598746379471042],[120,262,67,0.001743985043205737],[120,262,68,0.0014014276286502538],[120,262,69,-0.01389744074336208],[120,262,70,-0.02292390716531423],[120,262,71,-0.025635697602527534],[120,262,72,-0.027224131128575167],[120,262,73,-0.025368176238726066],[120,262,74,-0.01898890230824775],[120,262,75,-0.030535896825279636],[120,262,76,-0.044942458476998244],[120,262,77,-0.04995697225312346],[120,262,78,-0.04299670537725819],[120,262,79,-0.03328402075651627],[120,263,64,-0.05329791728156684],[120,263,65,-0.03962110570069417],[120,263,66,-0.014335057313416026],[120,263,67,0.0017094728446698955],[120,263,68,0.0012400611264834318],[120,263,69,-0.013918343799167166],[120,263,70,-0.022758686211652224],[120,263,71,-0.02524828060700686],[120,263,72,-0.026721935504635832],[120,263,73,-0.02484960243292627],[120,263,74,-0.018462786078106003],[120,263,75,-0.029724672233742828],[120,263,76,-0.04396705058644909],[120,263,77,-0.04896393173263427],[120,263,78,-0.04209817380613944],[120,263,79,-0.0325247706609767],[120,264,64,-0.05240869684231502],[120,264,65,-0.03890923399375474],[120,264,66,-0.014081520348592967],[120,264,67,0.0016720576985691225],[120,264,68,0.0010784231785780924],[120,264,69,-0.01394196682265414],[120,264,70,-0.02259894602499336],[120,264,71,-0.024872289562028943],[120,264,72,-0.026235674749963727],[120,264,73,-0.024347644981415728],[120,264,74,-0.017952841291869998],[120,264,75,-0.0289380323002264],[120,264,76,-0.043020261659981206],[120,264,77,-0.048000532832223754],[120,264,78,-0.041227872790590606],[120,264,79,-0.031790595880101385],[120,265,64,-0.05154314733119215],[120,265,65,-0.03821701310564204],[120,265,66,-0.013838016701564957],[120,265,67,0.0016318520686664235],[120,265,68,9.165939471912125E-4],[120,265,69,-0.013968353062767206],[120,265,70,-0.02244481241232699],[120,265,71,-0.024507728279847905],[120,265,72,-0.02576520363334398],[120,265,73,-0.023862077648710754],[120,265,74,-0.017458738674011612],[120,265,75,-0.028175523977115525],[120,265,76,-0.042101756944181376],[120,265,77,-0.04706650181579326],[120,265,78,-0.04038544485113466],[120,265,79,-0.0310810704778638],[120,266,64,-0.05070117235234072],[120,266,65,-0.037544320344843785],[120,266,66,-0.013604427018527751],[120,266,67,0.0015889627444052987],[120,266,68,7.546411977244939E-4],[120,266,69,-0.013997555393516398],[120,266,70,-0.022296412131728047],[120,266,71,-0.02415459463914559],[120,266,72,-0.02531037172843068],[120,266,73,-0.02339267073303778],[120,266,74,-0.016980145110686292],[120,266,75,-0.02743668695660841],[120,266,76,-0.04121118965483956],[120,266,77,-0.046161552907344354],[120,266,78,-0.03957052505256085],[120,266,79,-0.030395765648435828],[120,267,64,-0.049882662320027395],[120,267,65,-0.0368910227919287],[120,267,66,-0.013380631867099346],[120,267,67,0.0015434906314807189],[120,267,68,5.926204332743346E-4],[120,267,69,-0.014029636108731735],[120,267,70,-0.022153872895527102],[120,267,71,-0.023812881083386354],[120,267,72,-0.024871024126608618],[120,267,73,-0.02293919172621137],[120,267,74,-0.016516724268471845],[120,267,75,-0.026721054634334877],[120,267,76,-0.04034820211410263],[120,267,77,-0.04528538949348766],[120,267,78,-0.03878274213876303],[120,267,79,-0.02973425069391701],[120,268,64,-0.04908749526858654],[120,268,65,-0.03625697804768549],[120,268,66,-0.013166512218227643],[120,268,67,0.0014955305604764082],[120,268,68,4.305750503687308E-4],[120,268,69,-0.014064666712868169],[120,268,70,-0.022017323385640282],[120,268,71,-0.02348257512330485],[120,268,72,-0.02444700213928028],[120,268,73,-0.02250140595731128],[120,268,74,-0.01606813719144714],[120,268,75,-0.02602815504781713],[120,268,76,-0.039512426877681486],[120,268,77,-0.04443770531888812],[120,268,78,-0.03802171964703389],[120,268,79,-0.029096093970462335],[120,269,64,-0.04831553767030782],[120,269,65,-0.035642034983742715],[120,269,66,-0.01296194991711796],[120,269,67,0.0014451711130976164],[120,269,68,2.6853651359749574E-4],[120,269,69,-0.014102727709881054],[120,269,70,-0.021886893281336455],[120,269,71,-0.02316365984183504],[120,269,72,-0.024038143987601953],[120,269,73,-0.02207907721841185],[120,269,74,-0.01563404287467719],[120,269,75,-0.025357511786518707],[120,269,76,-0.0387034878478943],[120,269,77,-0.04361818567053],[120,269,78,-0.03728707699862639],[120,269,79,-0.02848086380060015],[120,270,64,-0.047566645257635536],[120,270,65,-0.03504603449258966],[120,270,66,-0.012766828142218078],[120,270,67,0.0013924944654384599],[120,270,68,1.0652454686714513E-4],[120,270,69,-0.014143908392095714],[120,270,70,-0.021762713299656754],[120,270,71,-0.022856114399873062],[120,270,72,-0.023644285477845875],[120,270,73,-0.02167196837077364],[120,270,74,-0.015214098812357291],[120,270,75,-0.02470864487049709],[120,270,76,-0.037921001368571794],[120,270,77,-0.04282650854690503],[120,270,78,-0.03657843056262878],[120,270,79,-0.027888129349772764],[120,271,64,-0.04684066384617734],[120,271,65,-0.03446881023405201],[120,271,66,-0.012581031851391868],[120,271,67,0.0013375762476895354],[120,271,68,-5.5452660902796015E-5],[120,271,69,-0.014188306630845013],[120,271,70,-0.02164491524859254],[120,271,71,-0.0225599145413144],[120,271,72,-0.02326526066068508],[120,271,73,-0.021279841930029502],[120,271,74,-0.014807961519021966],[120,271,75,-0.024081071594921934],[120,271,76,-0.037164577298076186],[120,271,77,-0.04206234580843003],[120,271,78,-0.03589539469041076],[120,271,79,-0.02731746146533619],[120,272,64,-0.046137430155167115],[120,272,65,-0.033910189375436404],[120,272,66,-0.01240444821453989],[120,272,67,0.0012804854196166982],[120,272,68,-2.1739823778032537E-4],[120,272,69,-0.01423602867054463],[120,272,70,-0.021533632093073154],[120,272,71,-0.022275033095895732],[120,272,72,-0.02290090247284674],[120,272,73,-0.020902460629046618],[120,272,74,-0.014415287022401278],[120,272,75,-0.023474307337979936],[120,272,76,-0.03643382005692482],[120,272,77,-0.04132536430561958],[120,272,78,-0.03523758271811748],[120,272,79,-0.026768433476471287],[120,273,64,-0.04545677262217218],[120,273,65,-0.03336999332270236],[120,273,66,-0.012236967032011811],[120,273,67,0.001221284161122563],[120,273,68,-3.7932640054444704E-4],[120,273,69,-0.01428718892770856],[120,273,70,-0.021428998033708777],[120,273,71,-0.02200144047842355],[120,273,72,-0.022551043359687908],[120,273,73,-0.020539587957252345],[120,273,74,-0.014035731326651613],[120,273,75,-0.022887866329925257],[120,273,76,-0.03572832964673299],[120,273,77,-0.04061522698173354],[120,273,78,-0.034604607934881106],[120,273,79,-0.02624062195363969],[120,274,64,-0.04479851220899047],[120,274,65,-0.03284803844018287],[120,274,66,-0.012078481138267141],[120,274,67,0.0011600277771507217],[120,274,68,-5.412622180951329E-4],[120,274,69,-0.014341909796297857],[120,274,70,-0.021331148598180232],[120,274,71,-0.021739105183058986],[120,274,72,-0.022215515877390322],[120,274,73,-0.020190988675354956],[120,274,74,-0.013668950844856179],[120,274,75,-0.022321262381285786],[120,274,76,-0.035047702637440115],[120,274,77,-0.03993159394685127],[120,274,78,-0.03399608451463819],[120,274,79,-0.025733607426417688],[120,275,64,-0.04416246319582597],[120,275,65,-0.03234413675651642],[120,275,66,-0.01192888679031744],[120,275,67,0.0010967646161852223],[120,275,68,-7.032413683829977E-4],[120,275,69,-0.014400321460622133],[120,275,70,-0.021240220745071772],[120,275,71,-0.02148799427138263],[120,275,72,-0.021894153273565115],[120,275,73,-0.019856429304476998],[120,275,74,-0.013314602799818102],[120,275,75,-0.021774009568450187],[120,275,76,-0.034391533119982866],[120,275,77,-0.03927412352049241],[120,275,78,-0.03341162840959811],[120,275,79,-0.025246975058684073],[120,276,64,-0.043548433960981126],[120,276,65,-0.031858096654601424],[120,276,66,-0.011788084040558332],[120,276,67,0.0010315360015916667],[120,276,68,-8.653098905790249E-4],[120,276,69,-0.014462561716865175],[120,276,70,-0.021156352979864602],[120,276,71,-0.021248073853024553],[120,276,72,-0.02158679004516542],[120,276,73,-0.019535678588827158],[120,276,74,-0.012972345592308492],[120,276,75,-0.021245622875086214],[120,276,76,-0.033759413621812055],[120,276,77,-0.038642473240111025],[120,276,78,-0.03285085820359432],[120,276,79,-0.024780315280299465],[120,277,64,-0.04295622774346616],[120,277,65,-0.03138972354354252],[120,277,66,-0.011655977093686563],[120,277,67,9.643761750280283E-4],[120,277,68,-0.0010275239340962216],[120,277,69,-0.014528775804167058],[120,277,70,-0.021079685482752405],[120,277,71,-0.02101930955772312],[120,277,72,-0.021293262472711613],[120,277,73,-0.019228507931134547],[120,277,74,-0.012641839136066372],[120,277,75,-0.020735618788054414],[120,277,76,-0.03315093598286001],[120,277,77,-0.038036300832975725],[120,277,78,-0.032313395923710506],[120,277,79,-0.024333224374550863],[120,278,64,-0.0423856433860598],[120,278,65,-0.030938820510688532],[120,278,66,-0.011532474647443629],[120,278,67,8.953122511790676E-4],[120,278,68,-0.0011899495059270238],[120,278,69,-0.014599116246024045],[120,278,70,-0.021010360247851488],[120,278,71,-0.020801666997718907],[120,278,72,-0.021013409129908497],[120,278,73,-0.018934691800140582],[120,278,74,-0.01232274515895687],[120,278,75,-0.02024351584667211],[120,278,76,-0.03256569218976341],[120,278,77,-0.03745526514911268],[120,278,78,-0.031798867808712605],[120,278,79,-0.02390530502074785],[120,279,64,-0.04183647605650386],[120,279,65,-0.030505188951998784],[120,279,66,-0.01141749021697876],[120,279,67,8.243641830884526E-4],[120,279,68,-0.0013526622176200616],[120,279,69,-0.014673742702609419],[120,279,70,-0.020948521233308783],[120,279,71,-0.020595112219444815],[120,279,72,-0.020747071367808484],[120,279,73,-0.018654008109513637],[120,279,74,-0.012014727469801338],[120,279,75,-0.019768835144367548],[120,279,76,-0.032003275166336574],[120,279,77,-0.03689902705315244],[120,279,78,-0.03130690503294974],[120,279,79,-0.02349616679145791],[120,280,64,-0.04130851794466198],[120,280,65,-0.030088629179117567],[120,280,66,-0.011310942442682029],[120,280,67,7.515447373749223E-4],[120,280,68,-0.0015157470330913595],[120,280,69,-0.014752821834479195],[120,280,70,-0.02089431452176053],[120,280,71,-0.020399612143537946],[120,280,72,-0.02049409377275393],[120,280,73,-0.018386238567622667],[120,280,74,-0.011717452190503375],[120,280,75,-0.019311100781945017],[120,280,76,-0.03146327951847982],[120,280,77,-0.036367250273077384],[120,280,78,-0.030837144384506687],[120,280,79,-0.0231054266039608],[120,281,64,-0.040801558933605486],[120,281,65,-0.029688941001654087],[120,281,66,-0.011212755381352708],[120,281,67,6.768594786778774E-4],[120,281,68,-0.0016792980182938682],[120,281,69,-0.014836527177950346],[120,281,70,-0.020847888490512306],[120,281,71,-0.02021513499222877],[120,281,72,-0.02025432459737315],[120,281,73,-0.018131168997644793],[120,281,74,-0.011430587953175081],[120,281,75,-0.01886984027183638],[120,281,76,-0.030945302231873546],[120,281,77,-0.03585960220400189],[120,281,78,-0.030389228896489696],[120,281,79,-0.02273270912556539],[120,282,64,-0.040315387242710256],[120,282,65,-0.029305924283276937],[120,282,66,-0.011122858780595074],[120,282,67,6.003067627177142E-4],[120,282,68,-0.0018434180936208083],[120,282,69,-0.01492503903229147],[120,282,70,-0.020809393990756427],[120,282,71,-0.020041650703205263],[120,282,72,-0.020027616163949706],[120,282,73,-0.017888589627519432],[120,282,74,-0.011153806062046003],[120,282,75,-0.01844458489285463],[120,282,76,-0.030448943320957864],[120,282,77,-0.03537575466523079],[120,282,78,-0.029962808430401305],[120,282,79,-0.022377647132477346],[120,283,64,-0.03984979004099455],[120,283,65,-0.02893937947036177],[120,283,66,-0.011041188336354745],[120,283,67,5.218777374073395E-4],[120,283,68,-0.002008218789765252],[120,283,69,-0.015018544358720876],[120,283,70,-0.02077898453509378],[120,283,71,-0.019879131329096238],[120,283,72,-0.019813825239526666],[120,283,73,-0.017658295349299975],[120,283,74,-0.010886780620019968],[120,283,75,-0.018034869995114333],[120,283,76,-0.029973806427858705],[120,283,77,-0.03491538460896957],[120,283,78,-0.029557540210643284],[120,283,79,-0.022039881821955577],[120,284,64,-0.039404554029028926],[120,284,65,-0.02858910809201613],[120,284,66,-0.01096768593349722],[120,284,67,4.415563515289521E-4],[120,284,68,-0.0021738200075831346],[120,284,69,-0.015117236691043652],[120,284,70,-0.02075681649256087],[120,284,71,-0.01972755142173249],[120,284,72,-0.019612813382117105],[120,284,73,-0.017440085947458855],[120,284,74,-0.010629188619794058],[120,284,75,-0.017640235254889537],[120,284,76,-0.02951949937003939],[120,284,77,-0.03447817477913977],[120,284,78,-0.029173089309224742],[120,284,79,-0.02171906307749945],[120,285,64,-0.03897946598786145],[120,285,65,-0.02825491323040413],[120,285,66,-0.010902299869325952],[120,285,67,3.593193705595915E-4],[120,285,68,-0.0023403497823463962],[120,285,69,-0.015221316057619224],[120,285,70,-0.020743049290316895],[120,285,71,-0.01958688840037253],[120,285,72,-0.019424447257402336],[120,285,73,-0.01723376629570839],[120,285,74,-0.010380709999506224],[120,285,75,-0.01726022487928574],[120,285,76,-0.02908563463557187],[120,285,77,-0.034063814318829405],[120,285,78,-0.02880912907978284],[120,285,79,-0.02141484968681048],[120,286,64,-0.03857431329351665],[120,286,65,-0.02793659996038466],[120,286,66,-0.010844985059922187],[120,286,67,2.751363993095356E-4],[120,286,68,-0.002507944052607369],[120,286,69,-0.015330988914206808],[120,286,70,-0.020737845621100863],[120,286,71,-0.019457122903099176],[120,286,72,-0.019248598925303027],[120,286,73,-0.01703914652190151],[120,286,74,-0.01014102766292916],[120,286,75,-0.016894387760705763],[120,286,76,-0.02867182982503564],[120,286,77,-0.03367199932498449],[120,286,78,-0.02846534154005255],[120,286,79,-0.021126909512266128],[120,287,64,-0.03818888439571001],[120,287,65,-0.027633975757545597],[120,287,66,-0.010795703229153884],[120,287,67,1.8896991113256852E-4],[120,287,68,-0.0026767464337224844],[120,287,69,-0.015446468087096705],[120,287,70,-0.02074137165552175],[120,287,71,-0.019338239120599295],[120,287,72,-0.019085146095785422],[120,287,73,-0.016856042140551777],[120,287,74,-0.009909827464250981],[120,287,75,-0.016542277581156044],[120,287,76,-0.028277708039129167],[120,287,77,-0.03330243334897844],[120,287,78,-0.028141417701905824],[120,287,79,-0.020854919613599796],[120,288,64,-0.037822969259505186],[120,288,65,-0.027346850873780377],[120,288,66,-0.010754423080159052],[120,288,67,1.0077528356769271E-4],[120,288,68,-0.0028469079959113756],[120,288,69,-0.015567972725794361],[120,288,70,-0.02075379725820161],[120,288,71,-0.019230225111540104],[120,288,72,-0.018933972353238508],[120,288,73,-0.01668427415248406],[120,288,74,-0.009686798157508331],[120,288,75,-0.01620345286650707],[120,288,76,-0.027902898211149187],[120,288,77,-0.03295482784172751],[120,288,78,-0.0278370578480642],[120,288,79,-0.02059856632243586],[120,289,64,-0.037476356267143435],[120,289,65,-0.027075035760252157],[120,289,66,-0.010721118547508708],[120,289,67,1.050200764313063E-5],[120,289,68,-0.0030185856376879774],[120,289,69,-0.015695725988754156],[120,289,70,-0.02077529309829551],[120,289,71,-0.01913306970983219],[120,289,72,-0.018794964591115036],[120,289,73,-0.016523667379415324],[120,289,74,-0.009471630074778737],[120,289,75,-0.01587747567520245],[120,289,76,-0.027547034058109786],[120,289,77,-0.03262890146111817],[120,289,78,-0.02755197110688838],[120,289,79,-0.02035754497342198],[120,290,64,-0.03714880462710115],[120,290,65,-0.026818318058532818],[120,290,66,-0.010695753716085407],[120,290,67,-8.189686867982041E-5],[120,290,68,-0.003191930512910653],[120,290,69,-0.015829936719553662],[120,290,70,-0.020806005932096406],[120,290,71,-0.019046735669611584],[120,290,72,-0.018667991170519826],[120,290,73,-0.016374036773498225],[120,290,74,-0.009264005283754817],[120,290,75,-0.015563901208535257],[120,290,76,-0.02720974387280941],[120,290,77,-0.03232437190259206],[120,290,78,-0.027285870556219692],[120,290,79,-0.02013155763164626],[120,291,64,-0.03684005988749693],[120,291,65,-0.026576475507704304],[120,291,66,-0.010678291085081155],[120,291,67,-1.7646953371779246E-4],[120,291,68,-0.003367093616824422],[120,291,69,-0.015970808937906953],[120,291,70,-0.020846071959432357],[120,291,71,-0.018971174398569882],[120,291,72,-0.018552914037966686],[120,291,73,-0.01623519520345502],[120,291,74,-0.009063603193271189],[120,291,75,-0.015262283858971363],[120,291,76,-0.026890656856186988],[120,291,77,-0.03204096121312081],[120,291,78,-0.027038476437646636],[120,291,79,-0.019920314586567622],[120,292,64,-0.0365498707228056],[120,292,65,-0.026349289931170132],[120,292,66,-0.01066870059737843],[120,292,67,-2.732707905491676E-4],[120,292,68,-0.0035442321290343735],[120,292,69,-0.016118552441058618],[120,292,70,-0.020895631584813334],[120,292,71,-0.01890634208040046],[120,292,72,-0.018449601794667],[120,292,73,-0.016106961627690042],[120,292,74,-0.008870106269943901],[120,292,75,-0.01497218335552607],[120,292,76,-0.026589409551701016],[120,292,77,-0.03177840116492782],[120,292,78,-0.026809519322731235],[120,292,79,-0.019723535681924826],[120,293,64,-0.03627798907538104],[120,293,65,-0.026136547352074137],[120,293,66,-0.010666959657918192],[120,293,67,-3.7236194686237836E-4],[120,293,68,-0.003723509155825321],[120,293,69,-0.016273382706316186],[120,293,70,-0.020954829521494602],[120,293,71,-0.01885219975560197],[120,293,72,-0.01835792964035562],[120,293,73,-0.015989160944580364],[120,293,74,-0.008683199752749502],[120,293,75,-0.014693164505384892],[120,293,76,-0.026305645823406897],[120,293,77,-0.03153643334643982],[120,293,78,-0.02659874007138505],[120,293,79,-0.019540950121181483],[120,294,64,-0.03602417009685944],[120,294,65,-0.025938037940807394],[120,294,66,-0.010673053045539024],[120,294,67,-4.738106418700891E-4],[120,294,68,-0.003905093405693457],[120,294,69,-0.0164355206894926],[120,294,70,-0.021023814748462738],[120,294,71,-0.018808713223106576],[120,294,72,-0.018277779156227303],[120,294,73,-0.015881623731053278],[120,294,74,-0.008502571281998342],[120,294,75,-0.014424796833014258],[120,294,76,-0.026039016720071178],[120,294,77,-0.03131480914519413],[120,294,78,-0.02640588970485422],[120,294,79,-0.019372296211586537],[120,295,64,-0.035788172042772744],[120,295,65,-0.025753555922465723],[120,295,66,-0.010686972801125192],[120,295,67,-5.776906606152776E-4],[120,295,68,-0.004089158858334322],[120,295,69,-0.016605192617353645],[120,295,70,-0.02110274045544514],[120,295,71,-0.01877585291055156],[120,295,72,-0.01820903804714136],[120,295,73,-0.015784185945026858],[120,295,74,-0.00832791049760745],[120,295,75,-0.014166654175424119],[120,295,76,-0.025789180283401957],[120,295,77,-0.03111328966907906],[120,295,78,-0.026230729220677918],[120,295,79,-0.019217321059104345],[120,296,64,-0.03556975611906301],[120,296,65,-0.025582899443198408],[120,296,66,-0.010708718090907864],[120,296,67,-6.840817345267391E-4],[120,296,68,-0.004275884425295551],[120,296,69,-0.016782629771957328],[120,296,70,-0.02119176397411377],[120,296,71,-0.01875359371150755],[120,296,72,-0.018151599841269173],[120,296,73,-0.015696688590348108],[120,296,74,-0.008158908606462388],[120,296,75,-0.013918314233572357],[120,296,76,-0.025555801299369883],[120,296,77,-0.030931645604001218],[120,296,78,-0.026073029347871875],[120,296,79,-0.019075780212942876],[120,297,64,-0.03536868627919172],[120,297,65,-0.02542587039436264],[120,297,66,-0.010738295043643226],[120,297,67,-7.930693269310236E-4],[120,297,68,-0.004465453600342331],[120,297,69,-0.01696806826467897],[120,297,70,-0.021291046693625748],[120,297,71,-0.018741914787900417],[120,297,72,-0.018105363545227196],[120,297,73,-0.01561897734276518],[120,297,74,-0.007995257918636317],[120,297,75,-0.01367935807988585],[120,297,76,-0.02533855099155808],[120,297,77,-0.03076965700596867],[120,297,78,-0.025932570240448323],[120,297,79,-0.018947437258267787],[120,298,64,-0.035184729048367315],[120,298,65,-0.025282274270189344],[120,298,66,-0.010775716636096031],[120,298,67,-9.047444769420086E-4],[120,298,68,-0.004658054171361013],[120,298,69,-0.01716174887065304],[120,298,70,-0.021400754030763997],[120,298,71,-0.018740799407085906],[120,298,72,-0.018070233323087142],[120,298,73,-0.01555090220507024],[120,298,74,-0.007836651421168505],[120,298,75,-0.01344936969008293],[120,298,76,-0.02513710672296852],[120,298,77,-0.030627113092342565],[120,298,78,-0.02580914117347806],[120,298,79,-0.018832063421192487],[120,299,64,-0.03501766803534254],[120,299,65,-0.025151934523575302],[120,299,66,-0.010821016900038175],[120,299,67,-0.0010192177890023673],[120,299,68,-0.004853891899879953],[120,299,69,-0.017363930654526582],[120,299,70,-0.02152106901657651],[120,299,71,-0.018750248211712804],[120,299,72,-0.018046131439171872],[120,299,73,-0.015492330279889555],[120,299,74,-0.007682795333276808],[120,299,75,-0.013227948303438564],[120,299,76,-0.02495116437551494],[120,299,77,-0.030503824572757562],[120,299,78,-0.02570255266082096],[120,299,79,-0.018729449490484697],[120,300,64,-0.0348673236127893],[120,300,65,-0.02503471199747259],[120,300,66,-0.010874270122328113],[120,300,67,-0.0011366383321675085],[120,300,68,-0.005053209022140456],[120,300,69,-0.017574909329600187],[120,300,70,-0.021652210527842226],[120,300,71,-0.018770297033741428],[120,300,72,-0.018033015656030885],[120,300,73,-0.015443162929672061],[120,300,74,-0.007533425988639435],[120,300,75,-0.013014725028859026],[120,300,76,-0.024780454891819223],[120,300,77,-0.030399640068313076],[120,300,78,-0.025612652604975722],[120,300,79,-0.01863942172539141],[120,301,64,-0.03473352776351678],[120,301,65,-0.02493048012421487],[120,301,66,-0.010935566406600499],[120,301,67,-0.0012571694755426862],[120,301,68,-0.005256260236243047],[120,301,69,-0.01779499363394786],[120,301,70,-0.02179441004645431],[120,301,71,-0.01880099371401718],[120,301,72,-0.01803085610627925],[120,301,73,-0.015403312879912773],[120,301,74,-0.007388287117821534],[120,301,75,-0.012809340264058819],[120,301,76,-0.024624722017858605],[120,301,77,-0.03031442410703658],[120,301,78,-0.025539304395885497],[120,301,79,-0.01856182007385648],[120,302,64,-0.03461612002280777],[120,302,65,-0.024839120980006218],[120,302,66,-0.011005007860561404],[120,302,67,-0.0013809851226312228],[120,302,68,-0.005463308858732078],[120,302,69,-0.018024501651250486],[120,302,70,-0.02194790814306911],[120,302,71,-0.018842394415827326],[120,302,72,-0.018039631443448063],[120,302,73,-0.01537270041404496],[120,302,74,-0.0072471260493563675],[120,302,75,-0.012611439841123543],[120,302,76,-0.024483718579643637],[120,302,77,-0.03024805347540095],[120,302,78,-0.02548238321340869],[120,302,79,-0.01849649445861418],[120,303,64,-0.034514947387048786],[120,303,65,-0.02476052526324226],[120,303,66,-0.011082708670876849],[120,303,67,-0.0015082697958387278],[120,303,68,-0.005674626785790154],[120,303,69,-0.01826376089103706],[120,303,70,-0.02211295467431336],[120,303,71,-0.018894563589729237],[120,303,72,-0.018059328591130457],[120,303,73,-0.015351253136645628],[120,303,74,-0.00710969345842746],[120,303,75,-0.012420674671896562],[120,303,76,-0.024357206204081584],[120,303,77,-0.030200416966173007],[120,303,78,-0.025441775698625074],[120,303,79,-0.018443304415204483],[120,304,64,-0.03442986421453278],[120,304,65,-0.024694592272731568],[120,304,66,-0.011168795189856154],[120,304,67,-0.0016392187428791846],[120,304,68,-0.0058904944766744296],[120,304,69,-0.01851310839129543],[120,304,70,-0.02228980900085802],[120,304,71,-0.018957573938714087],[120,304,72,-0.01808994247956596],[120,304,73,-0.01533890573408014],[120,304,74,-0.006975743131802864],[120,304,75,-0.012236700398109882],[120,304,76,-0.02424495502216331],[120,304,77,-0.03017141509217509],[120,304,78,-0.02541737959474861],[120,304,79,-0.01840211871289948],[120,305,64,-0.034360732118722294],[120,305,65,-0.024641229886069736],[120,305,66,-0.011263406033240459],[120,305,67,-0.0017740380642088998],[120,305,68,-0.0061112009580586695],[120,305,69,-0.01877289084250962],[120,305,70,-0.022478740226186785],[120,305,71,-0.019031506383012757],[120,305,72,-0.01813147576828481],[120,305,73,-0.015335599732048073],[120,305,74,-0.00684503175045301],[120,305,75,-0.012059177047858933],[120,305,76,-0.02414674335473254],[120,305,77,-0.0301609597646649],[120,305,78,-0.02540910335623095],[120,305,79,-0.018372814957709375],[120,306,64,-0.03430741985432706],[120,306,65,-0.02460035453844576],[120,306,66,-0.011366692188351275],[120,306,67,-0.0019129448605503376],[120,306,68,-0.006337043847951805],[120,306,69,-0.01904346473228672],[120,306,70,-0.02268002745602881],[120,306,71,-0.019116450023893138],[120,306,72,-0.018183938553419147],[120,306,73,-0.015341283249532524],[120,306,74,-0.006717318691422882],[120,306,75,-0.011887768700152838],[120,306,76,-0.02406235738118623],[120,306,77,-0.03016897393506469],[120,306,78,-0.02541686572464039],[120,306,79,-0.018355279176658662],[120,307,64,-0.034269803196621],[120,307,65,-0.02457189120219979],[120,307,66,-0.011478817131807205],[120,307,67,-0.0020561673995146165],[120,307,68,-0.006568329397873199],[120,307,69,-0.01932519650984573],[120,307,70,-0.02289396007857816],[120,307,71,-0.019212502105850113],[120,307,72,-0.01824734805827611],[120,307,73,-0.01535591074869281],[120,307,74,-0.006592365850664055],[120,307,75,-0.011722143159397553],[120,307,76,-0.02399159079152676],[120,307,77,-0.030195391198751878],[120,307,78,-0.02544059526987229],[120,307,79,-0.018349405382529774],[120,308,64,-0.034247764814501244],[120,308,65,-0.024555773367489805],[120,308,66,-0.011599956955973309],[120,308,67,-0.002203945300281216],[120,308,68,-0.006805372551996363],[120,308,69,-0.01961846276977495],[120,308,70,-0.02312083806578927],[120,308,71,-0.019319767976649756],[120,308,72,-0.01832172830577254],[120,308,73,-0.015379442780296206],[120,308,74,-0.006469937488686262],[120,308,75,-0.011561971641814271],[120,308,76,-0.023934244422284413],[120,308,77,-0.03024015535965226],[120,308,78,-0.02548022989525708],[120,308,79,-0.018355095118311567],[120,309,64,-0.03424119413785141],[120,309,65,-0.024551943024445078],[120,309,66,-0.011730300503244823],[120,309,67,-0.0023565297352259643],[120,309,68,-0.007048497021989569],[120,309,69,-0.01992365045458535],[120,309,70,-0.023360972296190472],[120,309,71,-0.019438361044736258],[120,309,72,-0.01840710977132085],[120,309,73,-0.015411845724326526],[120,309,74,-0.006349800101021664],[120,309,75,-0.011406928475920954],[120,309,76,-0.023890125876904818],[120,309,77,-0.030303219954375238],[120,309,78,-0.025535716305122046],[120,309,79,-0.01837225698061032],[120,310,64,-0.034249987219825195],[120,310,65,-0.024560350647203927],[120,310,66,-0.011870049507211529],[120,310,67,-0.0025141836473326863],[120,310,68,-0.007298035376317234],[120,310,69,-0.020241157075726948],[120,310,70,-0.023614684899822436],[120,310,71,-0.019568402733564808],[120,310,72,-0.01850352901475675],[120,310,73,-0.01545309152545589],[120,310,74,-0.006231722315635409],[120,310,75,-0.011256690819334494],[120,310,76,-0.023859049131271313],[120,310,77,-0.030384547734631808],[120,310,78,-0.02560700943335333],[120,310,79,-0.01840080612131084],[120,311,64,-0.034274046594741925],[120,311,65,-0.02458095518026071],[120,311,66,-0.012019418739692577],[120,311,67,-0.0026771819821610455],[120,311,68,-0.007554329142802201],[120,311,69,-0.02057139095287682],[120,311,70,-0.02388230962607397],[120,311,71,-0.019710022432486485],[120,311,72,-0.018611028289913158],[120,311,73,-0.01550315742312897],[120,311,74,-0.00611547481956465],[120,311,75,-0.011110938394293574],[120,311,76,-0.023840834125130543],[120,311,77,-0.03048411010670541],[120,311,78,-0.025694071831529983],[120,311,79,-0.018440663726828094],[120,312,64,-0.03431328113231988],[120,312,65,-0.024613724027545865],[120,312,66,-0.012178636162562524],[120,312,67,-0.0028458119330773716],[120,312,68,-0.007817728923288166],[120,312,69,-0.020914771471450364],[120,312,70,-0.02416419223534635],[120,312,71,-0.019863357443859492],[120,312,72,-0.018729655130446075],[120,312,73,-0.015562025676054669],[120,312,74,-0.006000830317194485],[120,312,75,-0.010969353244418938],[120,312,76,-0.023835306340252722],[120,312,77,-0.03060188652674067],[120,312,78,-0.025796873015192987],[120,312,79,-0.018491756474322656],[120,313,64,-0.03436760588902455],[120,313,65,-0.02465863304466794],[120,313,66,-0.012347943083217544],[120,313,67,-0.0030203731983810427],[120,313,68,-0.008088594519278916],[120,313,69,-0.0212717293584283],[120,313,70,-0.024460690915631342],[120,313,71,-0.02002855292611448],[120,313,72,-0.018859461910533604],[120,313,73,-0.015629683280959334],[120,313,74,-0.005887563522712505],[120,313,75,-0.01083161951535578],[120,313,76,-0.02384229636624433],[120,313,77,-0.030737863850641332],[120,313,78,-0.025915388766837452],[120,313,79,-0.01855401596430921],[120,314,64,-0.03443694195735837],[120,314,65,-0.024715666534751202],[120,314,66,-0.012527594312466639],[120,314,67,-0.003201178248895673],[120,314,68,-0.008367295067484551],[120,314,69,-0.02164270697674732],[120,314,70,-0.024772176725251303],[120,314,71,-0.020205761832567636],[120,314,72,-0.019000505379098056],[120,314,73,-0.015706121685522354],[120,314,74,-0.005775451189415739],[120,314,75,-0.010697423262070406],[120,314,76,-0.02386163945501324],[120,314,77,-0.030892035637394944],[120,314,78,-0.026049600394249098],[120,314,79,-0.018627378129154784],[120,315,64,-0.03452121631393649],[120,315,65,-0.024784817248279127],[120,315,66,-0.01271785832354851],[120,315,67,-0.003388552604514301],[120,315,68,-0.008654209184247577],[120,315,69,-0.022028158638640837],[120,315,70,-0.025099034063145734],[120,315,71,-0.02039514484581488],[120,315,72,-0.01915284616621761],[120,315,73,-0.015791336495466032],[120,315,74,-0.005664272178653028],[120,315,75,-0.010566452285676676],[120,315,76,-0.023893175064951058],[120,315,77,-0.03106440140465487],[120,315,78,-0.026199493942823976],[120,315,79,-0.018711782617016993],[120,316,64,-0.03462036166722829],[120,316,65,-0.02486608638733789],[120,316,66,-0.012919017410889418],[120,316,67,-0.0035828351181005315],[120,316,68,-0.008949725117862517],[120,316,69,-0.02242855093845427],[120,316,70,-0.025441661168226444],[120,316,71,-0.020596870307597666],[120,316,72,-0.019316548260429705],[120,316,73,-0.015885327175838893],[120,316,74,-0.00555380757129731],[120,316,75,-0.010438396002781432],[120,316,76,-0.023936746395978065],[120,316,77,-0.031254965835458066],[120,316,78,-0.026365059360568575],[120,316,79,-0.018807172150857972],[120,317,64,-0.03473431630586139],[120,317,65,-0.024959483614628925],[120,317,66,-0.013131367847142075],[120,317,67,-0.003784378265079475],[120,317,68,-0.009254240907866156],[120,317,69,-0.022844363105608355],[120,317,70,-0.025800470649454222],[120,317,71,-0.02081111414408372],[120,317,72,-0.01949167845567419],[120,317,73,-0.015988096746598027],[120,317,74,-0.00544384082474381],[120,317,75,-0.010312945350436467],[120,317,76,-0.02399219991666544],[120,317,77,-0.03146373793498561],[120,317,78,-0.026546289614523964],[120,317,79,-0.01891349186224955],[120,318,64,-0.03486302394838998],[120,318,65,-0.025065027067574963],[120,318,66,-0.013355220036943961],[120,318,67,-0.003993548436950589],[120,318,68,-0.009568164550409828],[120,318,69,-0.023276087378502022],[120,318,70,-0.02617589004839447],[120,318,71,-0.021038059786546437],[120,318,72,-0.019678305766665787],[120,318,73,-0.0160996514726564],[120,318,74,-0.005334157978509637],[120,318,75,-0.010189792729870039],[120,318,76,-0.024059384884714513],[120,318,77,-0.031690730136325895],[120,318,78,-0.026743179757427543],[120,318,79,-0.019030688599778127],[120,319,64,-0.035006428803199714],[120,319,65,-0.025182735968117542],[120,319,66,-0.013590896427778493],[120,319,67,-0.004210732643654109],[120,319,68,-0.009891918306719323],[120,319,69,-0.02372421565632935],[120,319,70,-0.026568343646884738],[120,319,71,-0.02127788855387376],[120,319,72,-0.0198764925763415],[120,319,73,-0.016219992169209052],[120,319,74,-0.005224549562102466],[120,319,75,-0.010068634128640196],[120,319,76,-0.02413814613675795],[120,319,77,-0.03193594809516443],[120,319,78,-0.026955719466791067],[120,319,79,-0.01915871178338238],[121,-64,64,-0.289752683415006],[121,-64,65,-0.25168254382091393],[121,-64,66,-0.20583030427154728],[121,-64,67,-0.18562497176202913],[121,-64,68,-0.23096601553013363],[121,-64,69,-0.19177391356031243],[121,-64,70,-0.10282377228582965],[121,-64,71,-0.04429426035432823],[121,-64,72,-0.019328699441324836],[121,-64,73,-0.11270102956675236],[121,-64,74,-0.2027573534444546],[121,-64,75,-0.2627799920857878],[121,-64,76,-0.2635609777789092],[121,-64,77,-0.1821952016918903],[121,-64,78,-0.10986684930121429],[121,-64,79,-0.051298129075547205],[121,-63,64,-0.2853927700872585],[121,-63,65,-0.2481573282726515],[121,-63,66,-0.20362512368493388],[121,-63,67,-0.18295145892511064],[121,-63,68,-0.22711819464115168],[121,-63,69,-0.18883830369436233],[121,-63,70,-0.10103215843030595],[121,-63,71,-0.042231737026032265],[121,-63,72,-0.017615666371879297],[121,-63,73,-0.1105897273636004],[121,-63,74,-0.2000593011019231],[121,-63,75,-0.2594543358114146],[121,-63,76,-0.26015722753530945],[121,-63,77,-0.18010861847574047],[121,-63,78,-0.10990382803815499],[121,-63,79,-0.05283865524651433],[121,-62,64,-0.2811368485330622],[121,-62,65,-0.244711727226292],[121,-62,66,-0.20146731269173665],[121,-62,67,-0.180343865921568],[121,-62,68,-0.22335700459970248],[121,-62,69,-0.185981708879415],[121,-62,70,-0.0993051822155666],[121,-62,71,-0.04025458958795715],[121,-62,72,-0.016002826734268994],[121,-62,73,-0.1085658584832884],[121,-62,74,-0.19742976781834926],[121,-62,75,-0.2561948124646134],[121,-62,76,-0.2568200604334978],[121,-62,77,-0.17807858524093292],[121,-62,78,-0.10993983066088037],[121,-62,79,-0.054327213555767244],[121,-61,64,-0.27698145059668067],[121,-61,65,-0.24134262884685062],[121,-61,66,-0.19935404181776809],[121,-61,67,-0.17779910349836517],[121,-61,68,-0.21967893357074247],[121,-61,69,-0.18320019173575286],[121,-61,70,-0.09763980452335723],[121,-61,71,-0.038360534645681774],[121,-61,72,-0.014487090139729935],[121,-61,73,-0.10662618749212416],[121,-61,74,-0.1948659602893851],[121,-61,75,-0.25299877487002626],[121,-61,76,-0.2535469825109609],[121,-61,77,-0.17610269968869108],[121,-61,78,-0.10997377624709047],[121,-61,79,-0.05576420380513637],[121,-60,64,-0.2729230333527717],[121,-60,65,-0.23804682363752364],[121,-60,66,-0.19728238335745366],[121,-60,67,-0.175313985781562],[121,-60,68,-0.2160803768481382],[121,-60,69,-0.18048978473711488],[121,-60,70,-0.09603300897481405],[121,-60,71,-0.03654732641623608],[121,-60,72,-0.0130654405211046],[121,-60,73,-0.10476751937783475],[121,-60,74,-0.19236506891361088],[121,-60,75,-0.24986351480718783],[121,-60,76,-0.25033543191670804],[121,-60,77,-0.17417852303326664],[121,-60,78,-0.11000456590932288],[121,-60,79,-0.05715001180795471],[121,-59,64,-0.26895801152440507],[121,-59,65,-0.23482109926492703],[121,-59,66,-0.19524945156018453],[121,-59,67,-0.1728853873520068],[121,-59,68,-0.21255779168592334],[121,-59,69,-0.17784660720981865],[121,-59,70,-0.09448184404782257],[121,-59,71,-0.03481273501776801],[121,-59,72,-0.011734893985595981],[121,-59,73,-0.10298667310132593],[121,-59,74,-0.18992426744278626],[121,-59,75,-0.24678628727610263],[121,-59,76,-0.2471828078236567],[121,-59,77,-0.17230359603941758],[121,-59,78,-0.1100310831986846],[121,-59,79,-0.05848500207845519],[121,-58,64,-0.2650827595194856],[121,-58,65,-0.23166224027868715],[121,-58,66,-0.1932523994165789],[121,-58,67,-0.1705102405105987],[121,-58,68,-0.20910769530462744],[121,-58,69,-0.1752668627052966],[121,-58,70,-0.09298342172919109],[121,-58,71,-0.03315454854919372],[121,-58,72,-0.0104925008838789],[121,-58,73,-0.10128048246940725],[121,-58,74,-0.1875407133204217],[121,-58,75,-0.24376431072886198],[121,-58,76,-0.24408647036862413],[121,-58,77,-0.17047543843441337],[121,-58,78,-0.11005219149468398],[121,-58,79,-0.05976951395173468],[121,-57,64,-0.2612936132306456],[121,-57,65,-0.22856702768484766],[121,-57,66,-0.19128841537839963],[121,-57,67,-0.1681855324706204],[121,-57,68,-0.20572666283160748],[121,-57,69,-0.17274683623654907],[121,-57,70,-0.0915349160035797],[121,-57,71,-0.03157057495755256],[121,-57,72,-0.009335347552491284],[121,-57,73,-0.09964579672115428],[121,-57,74,-0.1852115478248276],[121,-57,75,-0.24079476715306777],[121,-57,76,-0.2410437404893179],[121,-57,77,-0.1686915481503722],[121,-57,78,-0.11006673131615445],[121,-57,79,-0.06100385776688265],[121,-56,64,-0.25758687163478167],[121,-56,65,-0.22553223843887066],[121,-56,66,-0.18935472010231413],[121,-56,67,-0.1659083025706859],[121,-56,68,-0.20241132526903705],[121,-56,69,-0.17028289146396278],[121,-56,70,-0.090133561220144],[121,-56,71,-0.030058643682985525],[121,-56,72,-0.00826055771429092],[121,-56,73,-0.0980794808323952],[121,-56,74,-0.1829338960409754],[121,-56,75,-0.2378748020449268],[121,-56,76,-0.23805189969296833],[121,-56,77,-0.1669494004242585],[121,-56,78,-0.11007351757412188],[121,-56,79,-0.06218831112660512],[121,-55,64,-0.25395879821617545],[121,-55,65,-0.22255464488027546],[121,-55,66,-0.18744856324024206],[121,-55,67,-0.16367563952643183],[121,-55,68,-0.19915836750907112],[121,-55,69,-0.16787146785928028],[121,-55,70,-0.08877665035756228],[121,-55,71,-0.028616607083742047],[121,-55,72,-0.007265293544368925],[121,-55,73,-0.09657841555745704],[121,-55,74,-0.18070486668730829],[121,-55,75,-0.23500152429987728],[121,-55,76,-0.2351081897788394],[121,-55,77,-0.16524644677629022],[121,-55,78,-0.11007133678671409],[121,-55,79,-0.0633231152482745],[121,-54,64,-0.25040562223891216],[121,-54,65,-0.21963101413199626],[121,-54,66,-0.18556722029934078],[121,-54,67,-0.16148467873917458],[121,-54,68,-0.1959645264156676],[121,-54,69,-0.16550907787617936],[121,-54,70,-0.08746153320799563],[121,-54,71,-0.027242341644372885],[121,-54,72,-0.006346756409933805],[121,-54,73,-0.09513949722857436],[121,-54,74,-0.1785215518248047],[121,-54,75,-0.23217200604987306],[121,-54,76,-0.2322098125382382],[121,-54,77,-0.1635801138889124],[121,-54,78,-0.11005894427703038],[121,-54,79,-0.06440847142150202],[121,-53,64,-0.24692374916341214],[121,-53,65,-0.21675829464436522],[121,-53,66,-0.1837081511623676],[121,-53,67,-0.15933274238424788],[121,-53,68,-0.1928267648319346],[121,-53,69,-0.1631924556430142],[121,-53,70,-0.08618569592407435],[121,-53,71,-0.025933773901671887],[121,-53,72,-0.005502192675046174],[121,-53,73,-0.09375973059858929],[121,-53,74,-0.1763812048927276],[121,-53,75,-0.22938351838430057],[121,-53,76,-0.2293541692262348],[121,-53,77,-0.16194797447143192],[121,-53,78,-0.11003518016413055],[121,-53,79,-0.06544460936091234],[121,-52,64,-0.24351116464661984],[121,-52,65,-0.21393487164040684],[121,-52,66,-0.1818700869000575],[121,-52,67,-0.15721829356670464],[121,-52,68,-0.1897434426251606],[121,-52,69,-0.16091956798006202],[121,-52,70,-0.0849473033981413],[121,-52,71,-0.024689037900742086],[121,-52,72,-0.004728921723350436],[121,-52,73,-0.0924368514273354],[121,-52,74,-0.1742824368277323],[121,-52,75,-0.2266351126542823],[121,-52,76,-0.22654046644797987],[121,-52,77,-0.16034890320249562],[121,-52,78,-0.10999977874034927],[121,-52,79,-0.06643228761436454],[121,-51,64,-0.24016659522152442],[121,-51,65,-0.21115981827780103],[121,-51,66,-0.1800523949379541],[121,-51,67,-0.1551403606730872],[121,-51,68,-0.18671359284530267],[121,-51,69,-0.15868899865196293],[121,-51,70,-0.0837448668094632],[121,-51,71,-0.023506349863931946],[121,-51,72,-0.004024295124941691],[121,-51,73,-0.0911689472619188],[121,-51,74,-0.17222450055632774],[121,-51,75,-0.2239266725963149],[121,-51,76,-0.223768749546734],[121,-51,77,-0.15878239451047466],[121,-51,78,-0.10995292967813348],[121,-51,79,-0.06737255988459791],[121,-50,64,-0.23688877777925643],[121,-50,65,-0.20843224125078152],[121,-50,66,-0.1782545150258916],[121,-50,67,-0.15309803583967996],[121,-50,68,-0.18373630061234805],[121,-50,69,-0.15649941492478311],[121,-50,70,-0.08257695731357564],[121,-50,71,-0.022383918055410942],[121,-50,72,-0.003385677474565721],[121,-50,73,-0.0899541326106508],[121,-50,74,-0.170206667745991],[121,-50,75,-0.22125808882893058],[121,-50,76,-0.2210390628093435],[121,-50,77,-0.15724796332881594],[121,-50,78,-0.10989487034053648],[121,-50,79,-0.06826653387035729],[121,-49,64,-0.23367645804281148],[121,-49,65,-0.20575127753061725],[121,-49,66,-0.17647595399964228],[121,-49,67,-0.15109047056390226],[121,-49,68,-0.18081069822404403],[121,-49,69,-0.1543495629070204],[121,-49,70,-0.08144220435586258],[121,-49,71,-0.02131994605301549],[121,-49,72,-0.00281045119985476],[121,-49,73,-0.0887905503979405],[121,-49,74,-0.16822822682460867],[121,-49,75,-0.21862925515712797],[121,-49,76,-0.2183514457295422],[121,-49,77,-0.15574514308809245],[121,-49,78,-0.10982588229923156],[121,-49,79,-0.06911536634063788],[121,-48,64,-0.23052839287174226],[121,-48,65,-0.2031160945695838],[121,-48,66,-0.1747162835398423],[121,-48,67,-0.14911687397807166],[121,-48,68,-0.17793596358290714],[121,-48,69,-0.15223826563997536],[121,-48,70,-0.0803392953800093],[121,-48,71,-0.02031263636635266],[121,-48,72,-0.0022960212182007974],[121,-48,73,-0.08767637494609673],[121,-48,74,-0.16628848422756012],[121,-48,75,-0.21604006925733088],[121,-48,76,-0.21570593377107322],[121,-48,77,-0.1542734868358832],[121,-48,78,-0.10974629000231056],[121,-48,79,-0.06992025956629773],[121,-47,64,-0.22744335238743107],[121,-47,65,-0.20052589038831478],[121,-47,66,-0.17297513785385127],[121,-47,67,-0.14717651105971982],[121,-47,68,-0.17511131857222445],[121,-47,69,-0.15016442104760203],[121,-47,70,-0.07926697537892341],[121,-47,71,-0.019360193900310338],[121,-47,72,-0.0018398193211105664],[121,-47,73,-0.08660981469589513],[121,-47,74,-0.16438676546110953],[121,-47,75,-0.21349043322959968],[121,-47,76,-0.21310255903842204],[121,-47,77,-0.15283256819874966],[121,-47,78,-0.10965645935235217],[121,-47,79,-0.07068245778319132],[121,-46,64,-0.22442012192087876],[121,-46,65,-0.19797989355224085],[121,-46,66,-0.17125221129246246],[121,-46,67,-0.1452687007882255],[121,-46,68,-0.17233602739124626],[121,-46,69,-0.14812699976274923],[121,-46,70,-0.0782240462994575],[121,-46,71,-0.018460829259555094],[121,-46,72,-0.0014393082834958653],[121,-46,73,-0.08558911467036993],[121,-46,74,-0.16252241599068934],[121,-46,75,-0.2109802540262496],[121,-46,76,-0.21054135086151846],[121,-46,77,-0.15142198219357778],[121,-46,78,-0.10955679620646028],[121,-46,79,-0.07140324369900745],[121,-45,64,-0.22145750378536602],[121,-45,65,-0.1954773630428244],[121,-45,66,-0.1695472559129527],[121,-45,67,-0.14339281425713857],[121,-45,68,-0.16960939485925242],[121,-45,69,-0.14612504284610517],[121,-45,70,-0.07720936631200494],[121,-45,71,-0.017612761890172142],[121,-45,72,-0.0010919856962845807],[121,-45,73,-0.08461255868683121],[121,-45,74,-0.16069480196267344],[121,-45,75,-0.20850944376584682],[121,-45,76,-0.20802233630063346],[121,-45,77,-0.15004134589567772],[121,-45,78,-0.1094477448096367],[121,-45,79,-0.0720839350551858],[121,-44,64,-0.21855431887697607],[121,-44,65,-0.19301758802965738],[121,-44,66,-0.1678600790000299],[121,-44,67,-0.14154827275166867],[121,-44,68,-0.16693076469815007],[121,-44,69,-0.14415765941400077],[121,-44,70,-0.07622184895616076],[121,-44,71,-0.01681422305547423],[121,-44,72,-7.953875219052894E-4],[121,-44,73,-0.08367847132288571],[121,-44,74,-0.15890331076851316],[121,-44,75,-0.20607791994163413],[121,-44,76,-0.2055455405779027],[121,-44,77,-0.14869029897144678],[121,-44,78,-0.10932978617284332],[121,-44,79,-0.07272588125484943],[121,-43,64,-0.21570940810654232],[121,-43,65,-0.19059988754962776],[121,-43,66,-0.16619054055589136],[121,-43,67,-0.13973454580050207],[121,-43,68,-0.16429951780282825],[121,-43,69,-0.14222402419068667],[121,-43,70,-0.07526046217345632],[121,-43,71,-0.016063458643722234],[121,-43,72,-5.470913732287684E-4],[121,-43,73,-0.08278521964284016],[121,-43,74,-0.15714735146019201],[121,-43,75,-0.20368560553333073],[121,-43,76,-0.20311098744185002],[121,-43,77,-0.14736850408355578],[121,-43,78,-0.10920343640681486],[121,-43,79,-0.07333046006695869],[121,-42,64,-0.21292163366675593],[121,-42,65,-0.18822361009923044],[121,-42,66,-0.1645385507701622],[121,-42,67,-0.13795114921072754],[121,-42,68,-0.1617150705080044],[121,-42,69,-0.14032337500004585],[121,-42,70,-0.07432422723784075],[121,-42,71,-0.015358731805986925],[121,-42,72,-3.4471951728781594E-4],[121,-42,73,-0.0819312146911952],[121,-42,74,-0.15542635502579208],[121,-42,75,-0.20133242903091378],[121,-42,76,-0.20071869947107168],[121,-42,77,-0.1460756471766002],[121,-42,78,-0.10906924502226156],[121,-42,79,-0.0738990744161058],[121,-41,64,-0.21018988013879697],[121,-41,65,-0.18588813314637817],[121,-41,66,-0.16290406748034644],[121,-41,67,-0.13619764309456053],[121,-41,68,-0.15917687286009286],[121,-41,69,-0.13845501021133327],[121,-41,70,-0.07341221759454417],[121,-41,71,-0.014698325423213634],[121,-41,72,-1.859416061752104E-4],[121,-41,73,-0.08111491276058262],[121,-41,74,-0.15373977453412818],[121,-41,75,-0.19901832437896996],[121,-41,76,-0.19836869832331858],[121,-41,77,-0.14481143765139576],[121,-41,78,-0.1089277932069176],[121,-41,79,-0.07443314926681416],[121,-40,64,-0.20751305544321236],[121,-40,65,-0.18359286256807136],[121,-40,66,-0.16128709363303353],[121,-40,67,-0.1344736298962326],[121,-40,68,-0.1566844069021999],[121,-40,69,-0.1366182861529312],[121,-40,70,-0.07252355761768839],[121,-40,71,-0.014080544402141688],[121,-40,72,-6.847713831351405E-5],[121,-40,73,-0.08033481644186755],[121,-40,74,-0.15208708515730418],[121,-40,75,-0.19674323084995105],[121,-40,76,-0.19606100493605932],[121,-40,77,-0.14357560843611905],[121,-40,78,-0.10877969208952892],[121,-40,79,-0.07493412861051393],[121,-39,64,-0.2048900916398766],[121,-39,65,-0.18133723202010463],[121,-39,66,-0.15968767475556833],[121,-39,67,-0.13277875242694834],[121,-39,68,-0.15423718497979264],[121,-39,69,-0.13481261450735155],[121,-39,70,-0.07165742129658649],[121,-39,71,-0.013503717800189888],[121,-39,72,9.902346058068389E-6],[121,-39,73,-0.07958947546435538],[121,-39,74,-0.1504677840798121],[121,-39,75,-0.19450709285426973],[121,-39,76,-0.19379563968434116],[121,-39,77,-0.14236791596234152],[121,-39,78,-0.10862558100033161],[121,-39,79,-0.07540347256253054],[121,-38,64,-0.20231994558236077],[121,-38,65,-0.17912070224513651],[121,-38,66,-0.15810589644763817],[121,-38,67,-0.13111269191562624],[121,-38,68,-0.1518347480743105],[121,-38,69,-0.1330374597002308],[121,-38,70,-0.07081303086052208],[121,-38,71,-0.01296620078011167],[121,-38,72,5.137133048970718E-5],[121,-38,73,-0.07887748733446226],[121,-38,74,-0.14888139030278374],[121,-38,75,-0.192309859695022],[121,-38,76,-0.19157262250171184],[121,-38,77,-0.14118814005409766],[121,-38,78,-0.1084661257373125],[121,-38,79,-0.07584265457588073],[121,-37,64,-0.19980159943226194],[121,-37,65,-0.17694276032538284],[121,-37,66,-0.1565418819018064],[121,-37,67,-0.12947516608279616],[121,-37,68,-0.149476664171561],[121,-37,69,-0.13129233629542092],[121,-37,70,-0.06998965535147388],[121,-37,71,-0.012466376395764395],[121,-37,72,5.80486436551124E-5],[121,-37,73,-0.07819749778145563],[121,-37,74,-0.14732744435183143],[121,-37,75,-0.1901514852748118],[121,-37,76,-0.18939197296978147],[121,-37,77,-0.14003608373803317],[121,-37,78,-0.10830201684708635],[121,-37,79,-0.0762531587779726],[121,-36,64,-0.1973340610390438],[121,-36,65,-0.17480291888591099],[121,-36,66,-0.15499578946138626],[121,-36,67,-0.12786592724448229],[121,-36,68,-0.14716252667112567],[121,-36,69,-0.12957680640743302],[121,-36,70,-0.06918660915373841],[121,-36,71,-0.012002657210668153],[121,-36,72,3.199603061019253E-5],[121,-36,73,-0.07754820101889069],[121,-36,74,-0.1458055078965476],[121,-36,75,-0.1880319277616538],[121,-36,76,-0.18725371038162927],[121,-36,77,-0.13891157298239942],[121,-36,78,-0.10813396792863174],[121,-36,79,-0.0766364774355027],[121,-35,64,-0.1949163641913781],[121,-35,65,-0.17270071525464922],[121,-35,66,-0.15346781022381512],[121,-35,67,-0.1262847604527343],[121,-35,68,-0.14489195284276338],[121,-35,69,-0.12789047714202362],[121,-35,70,-0.06840325048923997],[121,-35,71,-0.01157348675167486],[121,-35,72,-2.4783032551471226E-5],[121,-35,73,-0.0769283398306896],[121,-35,74,-0.14431516328967978],[121,-35,75,-0.1859511492207845],[121,-35,76,-0.1851578537842246],[121,-35,77,-0.13781445637269704],[121,-35,78,-0.10796271396784134],[121,-35,79,-0.07699410855235776],[121,-34,64,-0.19254756874586382],[121,-34,65,-0.17063571058488203],[121,-34,66,-0.15195816569702608],[121,-34,67,-0.12473148167892346],[121,-34,68,-0.14266458233519305],[121,-34,69,-0.12623299807486119],[121,-34,70,-0.06763897988677839],[121,-34,71,-0.011177340800360288],[121,-34,72,-1.1034428752579244E-4],[121,-34,73,-0.07633670549074838],[121,-34,74,-0.14285601303358694],[121,-34,75,-0.18390911521867],[121,-34,76,-0.18310442200462518],[121,-34,77,-0.13674460473141795],[121,-34,78,-0.10778900971020267],[121,-34,79,-0.07732755360453974],[121,-33,64,-0.19022676063931349],[121,-33,65,-0.1686074889460369],[121,-33,66,-0.15046710551600703],[121,-33,67,-0.12320593604568103],[121,-33,68,-0.14048007574234553],[121,-33,69,-0.12460405877767501],[121,-33,70,-0.06689323863322412],[121,-33,71,-0.01081272852526761],[121,-33,72,-2.2280341353484476E-4],[121,-33,73,-0.07577213752512321],[121,-33,74,-0.1414276791814274],[121,-33,75,-0.1819057944052753],[121,-33,76,-0.18109343366460665],[121,-33,77,-0.13570191068927204],[121,-33,78,-0.10761362807858771],[121,-33,79,-0.07763831541565057],[121,-32,64,-0.1879530517905998],[121,-32,65,-0.166615656388157],[121,-32,66,-0.14899490522602254],[121,-32,67,-0.12170799611275566],[121,-32,68,-0.13833811323152612],[121,-32,69,-0.12300338640040398],[121,-32,70,-0.06616550721407215],[121,-32,71,-0.010478193458312291],[121,-32,72,-3.6033652559679807E-4],[121,-32,73,-0.0752335233256633],[121,-32,74,-0.14002980268004137],[121,-32,75,-0.17994115808007688],[121,-32,76,-0.1791249071879253],[121,-32,77,-0.1346862882148562],[121,-32,78,-0.10743735864245457],[121,-32,79,-0.07792789617569716],[121,-31,64,-0.18572557989826566],[121,-31,65,-0.16465983998544959],[121,-31,66,-0.14754186413866577],[121,-31,67,-0.12023756022185353],[121,-31,68,-0.13623839323767978],[121,-31,69,-0.12143074331734421],[121,-31,70,-0.06545530375052433],[121,-31,71,-0.010172314319130338],[121,-31,72,-5.211804594120366E-4],[121,-31,73,-0.07471979762405502],[121,-31,74,-0.13866204266131613],[121,-31,75,-0.17801517974706318],[121,-31,76,-0.1771988608042945],[121,-31,77,-0.13369767210960992],[121,-31,78,-0.10726100614441002],[121,-31,79,-0.07819779560553339],[121,-30,64,-0.18354350814008302],[121,-30,65,-0.162739686864062],[121,-30,66,-0.1461083032663872],[121,-30,67,-0.1187945509050917],[121,-30,68,-0.13418063122748305],[121,-30,69,-0.11988592484459515],[121,-30,70,-0.06476218243982736],[121,-30,71,-0.00989370569141067],[121,-30,72,-7.036328511747673E-4],[121,-30,73,-0.07422994183511937],[121,-30,74,-0.13732407568844804],[121,-30,75,-0.17612783466353438],[121,-30,76,-0.1753153125538506],[121,-30,77,-0.13273601747460131],[121,-30,78,-0.10708538908958277],[121,-30,79,-0.07844950926869963],[121,-29,64,-0.18140602478053178],[121,-29,65,-0.16085486321886855],[121,-29,66,-0.14469456334051353],[121,-29,67,-0.11737891336118338],[121,-29,68,-0.13216455853645567],[121,-29,69,-0.11836875703531059],[121,-29,70,-0.06408573200505965],[121,-29,71,-0.009641018555392246],[121,-29,72,-9.060520207177353E-4],[121,-29,73,-0.07376298327797032],[121,-29,74,-0.13601559496305216],[121,-29,75,-0.17427909938699904],[121,-29,76,-0.1734742802954904],[121,-29,77,-0.1318012991552746],[121,-29,78,-0.106911338402639],[121,-29,79,-0.07868452703176454],[121,-28,64,-0.17931234269226398],[121,-28,65,-0.15900505332395887],[121,-28,66,-0.14330100291742748],[121,-28,67,-0.11599061400321391],[121,-28,68,-0.1301899212820039],[121,-28,69,-0.11687909455874092],[121,-28,70,-0.06342557416026375],[121,-28,71,-0.009412940681029235],[121,-28,72,-0.001126856666642895],[121,-28,73,-0.07331799428357333],[121,-28,74,-0.13473630949880677],[121,-28,75,-0.17246895132417403],[121,-28,76,-0.1716757817222916],[121,-28,77,-0.13089351117009304],[121,-28,78,-0.1067396961569186],[121,-28,79,-0.07890433167391113],[121,-27,64,-0.177261698797521],[121,-27,65,-0.1571899585412729],[121,-27,66,-0.14192799657709815],[121,-27,67,-0.11462963908149365],[121,-27,68,-0.12825647935492746],[121,-27,69,-0.11541681866841888],[121,-27,70,-0.06278136209641547],[121,-27,71,-0.0092081968865224],[121,-27,72,-0.0013645253822063288],[121,-27,73,-0.07289409119706403],[121,-27,74,-0.13348594326696148],[121,-27,75,-0.17069736828570115],[121,-27,76,-0.16991983438695007],[121,-27,77,-0.13001266612869344],[121,-27,78,-0.10657131437969201],[121,-27,79,-0.07911039764602414],[121,-26,64,-0.17525335343516413],[121,-26,65,-0.15540929633140796],[121,-26,66,-0.14057593321752904],[121,-26,67,-0.11329599338446006],[121,-26,68,-0.12636400549140278],[121,-26,69,-0.11398183526408978],[121,-26,70,-0.062152778993170836],[121,-26,71,-0.009025549166923053],[121,-26,72,-0.0016175960006315617],[121,-26,73,-0.07249043328281086],[121,-26,74,-0.1322642343185109],[121,-26,75,-0.16896432804965966],[121,-26,76,-0.16820645573975426],[121,-26,77,-0.12915879464470664],[121,-26,78,-0.10640705393694953],[121,-26,79,-0.07930418997899173],[121,-25,64,-0.17328658965902005],[121,-25,65,-0.1536627992705211],[121,-25,66,-0.13924521444838064],[121,-25,67,-0.11198969902037426],[121,-25,68,-0.12451228442723479],[121,-25,69,-0.1125740730515215],[121,-25,70,-0.06153953656105531],[121,-25,71,-0.008863796697752073],[121,-25,72,-0.0018846647786459876],[121,-25,73,-0.07210622154007434],[121,-25,74,-0.1310709338875835],[121,-25,75,-0.1672698079366973],[121,-25,76,-0.16653566318147253],[121,-25,77,-0.12833194474819484],[121,-25,78,-0.10624778350082313],[121,-25,79,-0.07948716334065112],[121,-24,64,-0.17136071247301501],[121,-24,65,-0.15195021407695264],[121,-24,66,-0.1379362530865604],[121,-24,67,-0.11071079428221202],[121,-24,68,-0.12270111213582723],[121,-24,69,-0.11119348180375795],[121,-24,70,-0.06094137361836463],[121,-24,71,-0.008721775718670322],[121,-24,72,-0.0021643854269987484],[121,-24,73,-0.07174069743682829],[121,-24,74,-0.12990580548019076],[121,-24,75,-0.16561378439919847],[121,-24,76,-0.16490747413323736],[121,-24,77,-0.1275321813022904],[121,-24,78,-0.10609437860227611],[121,-24,79,-0.0796607612404155],[121,-23,64,-0.1694750480082757],[121,-23,65,-0.1502713006508008],[121,-23,66,-0.13664947175601652],[121,-23,67,-0.10945933259767587],[121,-23,68,-0.12093029515087127],[121,-23,69,-0.10984003072670441],[121,-23,70,-0.06035805470652282],[121,-23,71,-0.00859835930214244],[121,-23,72,-0.0024554679964842474],[121,-23,73,-0.07139314156887125],[121,-23,74,-0.12876862395198307],[121,-23,75,-0.16399623262643542],[121,-23,76,-0.1633219061251495],[121,-23,77,-0.12675958542818933],[121,-23,78,-0.10594772077119795],[121,-23,79,-0.07982641538019512],[121,-22,64,-0.1676289426472769],[121,-22,65,-0.14862583112952604],[121,-22,66,-0.1353853015936843],[121,-22,67,-0.10823538156607139],[121,-22,68,-0.11919964997458156],[121,-22,69,-0.10851370693154035],[121,-22,70,-0.059789368747396404],[121,-22,71,-0.00849245701219533],[121,-22,72,-0.0027566776280010643],[121,-22,73,-0.07106287225114953],[121,-22,74,-0.12765917457838066],[121,-22,75,-0.16241712616738616],[121,-22,76,-0.161778976905168],[121,-22,77,-0.1260142539424057],[121,-22,78,-0.10580869676573755],[121,-22,79,-0.07998554515001637],[121,-21,64,-0.1658217620998823],[121,-21,65,-0.14701358896238165],[121,-21,66,-0.13414418106313095],[121,-21,67,-0.10703902208348137],[121,-21,68,-0.11750900257203022],[121,-21,69,-0.10721451401596437],[121,-21,70,-0.05923512774569106],[121,-21,71,-0.008403014458358615],[121,-21,72,-0.0030668331749997],[121,-21,73,-0.07074924404786202],[121,-21,74,-0.12657725212006163],[121,-21,75,-0.16087643657255657],[121,-21,76,-0.1602787045696068],[121,-21,77,-0.12529629880985402],[121,-21,78,-0.10567819789232726],[121,-21,79,-0.08013955726646596],[121,-20,64,-0.16405289043575283],[121,-20,65,-0.14543436800605655],[121,-20,66,-0.13292655487693736],[121,-20,67,-0.1058703475572523],[121,-20,68,-0.11585818795173701],[121,-20,69,-0.10594247075568108],[121,-20,70,-0.05869516553907436],[121,-20,71,-0.00832901274970762],[121,-20,72,-0.0033848057063365325],[121,-20,73,-0.07045164624742746],[121,-20,74,-0.12552265988629313],[121,-20,75,-0.15937413305568712],[121,-20,76,-0.15882110771621302],[121,-20,77,-0.12460584661589158],[121,-20,78,-0.10555711941740129],[121,-20,79,-0.08028984555176273],[121,-19,64,-0.16232172907745787],[121,-19,65,-0.14388797164377504],[121,-19,66,-0.13173287302863043],[121,-19,67,-0.10472946321067816],[121,-19,68,-0.11424704983258287],[121,-19,69,-0.10469760990724668],[121,-19,70,-0.05816933659846387],[121,-19,71,-0.0082694678540105],[121,-19,72,-0.0037095168974519456],[121,-19,73,-0.07016950128814627],[121,-19,74,-0.1244952087983352],[121,-19,75,-0.15791018217602387],[121,-19,76,-0.15740620562068605],[121,-19,77,-0.1239430380602207],[121,-19,78,-0.10544636007156723],[121,-19,79,-0.08043779085113896],[121,-18,64,-0.16062769575835675],[121,-18,65,-0.14237421192981178],[121,-18,66,-0.13056358993462888],[121,-18,67,-0.1036164854784946],[121,-18,68,-0.1126754403968782],[121,-18,69,-0.10347997712296753],[121,-18,70,-0.05765751488057058],[121,-18,71,-0.008223429866865573],[121,-18,72,-0.004039937317492034],[121,-18,73,-0.06990226313997847],[121,-18,74,-0.12349471645476688],[121,-18,75,-0.15648454754150296],[121,-18,76,-0.15603401843727624],[121,-18,77,-0.12330802747523363],[121,-18,78,-0.10534682164668666],[121,-18,79,-0.0805847610860547],[121,-17,64,-0.15897022344889974],[121,-17,65,-0.14089290876099073],[121,-17,66,-0.12941916368623813],[121,-17,67,-0.10253154149345955],[121,-17,68,-0.11114322012912228],[121,-17,69,-0.10228962997807439],[121,-17,70,-0.057159592734377936],[121,-17,71,-0.008189982195511883],[121,-17,72,-0.004375084619599835],[121,-17,73,-0.06964941564736375],[121,-17,74,-0.12252100620012751],[121,-17,75,-0.15509718953281876],[121,-17,76,-0.15470456742380317],[121,-17,77,-0.12270098237096497],[121,-17,78,-0.10525940868592736],[121,-17,79,-0.0807321114405224],[121,-16,64,-0.15734875925483605],[121,-16,65,-0.1394438890765964],[121,-16,66,-0.12830005541155518],[121,-16,67,-0.10147476866419974],[121,-16,68,-0.10965025773994373],[121,-16,69,-0.10112663711016892],[121,-16,70,-0.05667547986305365],[121,-16,71,-0.008168240661977888],[121,-16,72,-0.004714021641391363],[121,-16,73,-0.06941047083771293],[121,-16,74,-0.12157390619802193],[121,-16,75,-0.15374806504815627],[121,-16,76,-0.15341787519134073],[121,-16,77,-0.12212208300861328],[121,-16,78,-0.10518502826667916],[121,-16,79,-0.08088118467780815],[121,-15,64,-0.15576276329052324],[121,-15,65,-0.13802698608786443],[121,-15,66,-0.12720672874687158],[121,-15,67,-0.1004463143443001],[121,-15,68,-0.10819643017455165],[121,-15,69,-0.09999107747062545],[121,-15,70,-0.056205102342501666],[121,-15,71,-0.008157352530064964],[121,-15,72,-0.005055854422266433],[121,-15,73,-0.06918496719977808],[121,-15,74,-0.12065324850949688],[121,-15,75,-0.15243712726812017],[121,-15,76,-0.15217396597865157],[121,-15,77,-0.12157152200430857],[121,-15,78,-0.10512458987599611],[121,-15,79,-0.08103331158470042],[121,-14,64,-0.15421170753008623],[121,-14,65,-0.1366420385378471],[121,-14,66,-0.12613964941681288],[121,-14,67,-0.09944633559234846],[121,-14,68,-0.10678162270482086],[121,-14,69,-0.09888303968726396],[121,-14,70,-0.055748401697409675],[121,-14,71,-0.00815649546040463],[121,-14,72,-0.005399730143747187],[121,-14,73,-0.068972467935602],[121,-14,74,-0.11975886817706828],[121,-14,75,-0.15116432544003838],[121,-14,76,-0.15097286595118561],[121,-14,77,-0.12104950396441762],[121,-14,78,-0.10507900537790119],[121,-14,79,-0.08118981154039455],[121,-13,64,-0.1526950923172739],[121,-13,65,-0.13528891536874948],[121,-13,66,-0.12509927921429392],[121,-13,67,-0.09847498919008604],[121,-13,68,-0.10540572175297717],[121,-13,69,-0.09780262603621077],[121,-13,70,-0.055305320751592495],[121,-13,71,-0.008164855510406624],[121,-13,72,-0.005744853069817943],[121,-13,73,-0.06877260919637038],[121,-13,74,-0.11889065243598738],[121,-13,75,-0.14992963040106566],[121,-13,76,-0.14981458453459173],[121,-13,77,-0.1205562191797628],[121,-13,78,-0.10504914062238421],[121,-13,79,-0.08135194516806529],[121,-12,64,-0.1512125703915647],[121,-12,65,-0.13396768013029195],[121,-12,66,-0.12408602612792663],[121,-12,67,-0.09753235448404703],[121,-12,68,-0.10406855427425847],[121,-12,69,-0.09674996970326696],[121,-12,70,-0.05487571353358771],[121,-12,71,-0.008181500866593092],[121,-12,72,-0.006090612781404421],[121,-12,73,-0.0685854293559902],[121,-12,74,-0.1180488676662981],[121,-12,75,-0.1487332017589888],[121,-12,76,-0.1486989898658043],[121,-12,77,-0.1200916740896073],[121,-12,78,-0.10503549446571035],[121,-12,79,-0.08152059289058076],[121,-11,64,-0.14976388826830186],[121,-11,65,-0.13267847181171574],[121,-11,66,-0.12310023997777299],[121,-11,67,-0.0966184469129848],[121,-11,68,-0.10276989018764011],[121,-11,69,-0.09572518482925202],[121,-11,70,-0.05445939946286439],[121,-11,71,-0.008205504838122567],[121,-11,72,-0.006436529426157627],[121,-11,73,-0.06841114809586937],[121,-11,74,-0.11723392912076323],[121,-11,75,-0.1475752678321296],[121,-11,76,-0.14762589435806492],[121,-11,77,-0.11965581150677902],[121,-11,78,-0.10503841030749514],[121,-11,79,-0.08169645579124062],[121,-10,64,-0.14834882366099109],[121,-10,65,-0.131421411552525],[121,-10,66,-0.1221422292354185],[121,-10,67,-0.09573324975901036],[121,-10,68,-0.10150946534234079],[121,-10,69,-0.0947283460401021],[121,-10,70,-0.0540562101762416],[121,-10,71,-0.00823602444490417],[121,-10,72,-0.006782189936734037],[121,-10,73,-0.06824998448057595],[121,-10,74,-0.11644621828805106],[121,-10,75,-0.14645603191892162],[121,-10,76,-0.1465951236493107],[121,-10,77,-0.11924860475440743],[121,-10,78,-0.10505825064056495],[121,-10,79,-0.08188022794603261],[121,-9,64,-0.14696718189625546],[121,-9,65,-0.1301966031772884],[121,-9,66,-0.12121226461714506],[121,-9,67,-0.0948767177801641],[121,-9,68,-0.10028698547131704],[121,-9,69,-0.09375949187714536],[121,-9,70,-0.053665989088272276],[121,-9,71,-0.008272295084922112],[121,-9,72,-0.0071272430418758345],[121,-9,73,-0.06810215630418547],[121,-9,74,-0.11568608440865712],[121,-9,75,-0.1453756736221256],[121,-9,76,-0.14560651621820894],[121,-9,77,-0.11887005599551571],[121,-9,78,-0.10509539626752477],[121,-9,79,-0.08207259729498725],[121,-8,64,-0.14561879289940619],[121,-8,65,-0.12900413421230925],[121,-8,66,-0.12031058234595438],[121,-8,67,-0.09404878040937799],[121,-8,68,-0.09910212974733311],[121,-8,69,-0.09281862810182807],[121,-8,70,-0.053288590701044365],[121,-8,71,-0.008313625073749647],[121,-8,72,-0.007471394881098254],[121,-8,73,-0.0679678804140832],[121,-8,74,-0.11495384686785626],[121,-8,75,-0.14433435060953573],[121,-8,76,-0.14465992267485855],[121,-8,77,-0.11852019416268972],[121,-8,78,-0.10515024463400188],[121,-8,79,-0.08227424556014702],[121,-7,64,-0.14430350839760356],[121,-7,65,-0.12784407686596067],[121,-7,66,-0.11943738718891629],[121,-7,67,-0.09324934471090698],[121,-7,68,-0.09795455408198421],[121,-7,69,-0.09190573077418017],[121,-7,70,-0.05292387993186772],[121,-7,71,-0.008359390491347747],[121,-7,72,-0.007814404866876224],[121,-7,73,-0.06784737300179815],[121,-7,74,-0.11424979744936407],[121,-7,75,-0.14333220028772353],[121,-7,76,-0.14375520510895953],[121,-7,77,-0.1181990730137953],[121,-7,78,-0.10522320825688226],[121,-7,79,-0.08248584817644533],[121,-6,64,-0.14302119933131002],[121,-6,65,-0.12671648897379448],[121,-6,66,-0.11859285528142836],[121,-6,67,-0.09247829810706945],[121,-6,68,-0.09684389418048071],[121,-6,69,-0.09102074911660418],[121,-6,70,-0.052571731460386725],[121,-6,71,-0.008409030324829361],[121,-6,72,-0.00815608178538259],[121,-6,73,-0.06774084986359495],[121,-6,74,-0.11357420245586795],[121,-6,75,-0.14236934139163784],[121,-6,76,-0.14289223649199947],[121,-6,77,-0.11790676930851963],[121,-6,78,-0.10531471324456634],[121,-6,79,-0.08270807423561252],[121,-5,64,-0.14177175346472673],[121,-5,65,-0.12562141490944798],[121,-5,66,-0.11777713674958933],[121,-5,67,-0.09173551088773452],[121,-5,68,-0.09576976836464635],[121,-5,69,-0.09016360817419278],[121,-5,70,-0.05223202909640681],[121,-5,71,-0.00846204189590126],[121,-5,72,-0.008496280126831119],[121,-5,73,-0.0676485266333342],[121,-5,74,-0.11292730470234191],[121,-5,75,-0.14144587549273557],[121,-5,76,-0.14207090012996565],[121,-5,77,-0.11764338110039341],[121,-5,78,-0.1054251979060141],[121,-5,79,-0.08294158644298492],[121,-4,64,-0.1405550731858188],[121,-4,65,-0.12455888646220298],[121,-4,66,-0.11699035814140667],[121,-4,67,-0.09102083851451627],[121,-4,68,-0.09473178017615716],[121,-4,69,-0.08933421128233579],[121,-4,70,-0.05190466516943142],[121,-4,71,-0.008517976561713212],[121,-4,72,-0.008834896636457364],[121,-4,73,-0.06757061898983893],[121,-4,74,-0.11230932538775086],[121,-4,75,-0.1405618884281056],[121,-4,76,-0.14129108916297398],[121,-4,77,-0.11740902613876822],[121,-4,78,-0.10555511144502679],[121,-4,79,-0.08318704108678593],[121,-3,64,-0.1393710734866949],[121,-3,65,-0.12352892368207617],[121,-3,66,-0.11623262467724729],[121,-3,67,-0.09033412373129467],[121,-3,68,-0.09372952077174779],[121,-3,69,-0.08853244235206674],[121,-3,70,-0.051589539940772595],[121,-3,71,-0.008576435678031487],[121,-3,72,-0.00917186707731205],[121,-3,73,-0.06750734284088318],[121,-3,74,-0.111720465850589],[121,-3,75,-0.13971745165299929],[121,-3,76,-0.14055270610828627],[121,-3,77,-0.11720384037524549],[121,-3,78,-0.10570491273611193],[121,-3,79,-0.08344508801933254],[121,-2,64,-0.13821968011516558],[121,-2,65,-0.1225315356932324],[121,-2,66,-0.11550402232951894],[121,-2,67,-0.08967519849225168],[121,-2,68,-0.09276257112172907],[121,-2,69,-0.08775816798321251],[121,-2,70,-0.05128656103890811],[121,-2,71,-0.008637066813808051],[121,-2,72,-0.009507163196141642],[121,-2,73,-0.06745891448572655],[121,-2,74,-0.11116090921345341],[121,-2,75,-0.13891262351904482],[121,-2,76,-0.13985566244317588],[121,-2,77,-0.1170279765690034],[121,-2,78,-0.1058750691780888],[121,-2,79,-0.08371637064942251],[121,-1,64,-0.13710082788833142],[121,-1,65,-0.12156672147636872],[121,-1,66,-0.11480461974108133],[121,-1,67,-0.08904388571810426],[121,-1,68,-0.09183050402269426],[121,-1,69,-0.08701123941494733],[121,-1,70,-0.05099564291851038],[121,-1,71,-0.008699560206321797],[121,-1,72,-0.009840789883676634],[121,-1,73,-0.0674255507578655],[121,-1,74,-0.11063082192155338],[121,-1,75,-0.1381474504802386],[121,-1,76,-0.13919987822406174],[121,-1,77,-0.11688160298538137],[121,-1,78,-0.10606605562139265],[121,-1,79,-0.0840015259449292],[121,0,64,-0.13601445915927138],[121,0,65,-0.12063447062073074],[121,0,66,-0.114134469991537],[121,0,67,-0.08844000089084039],[121,0,68,-0.09093288593495644],[121,0,69,-0.08629149432302378],[121,0,70,-0.05071670634347827],[121,0,71,-0.008763645446339341],[121,0,72,-0.01017278252085562],[121,0,73,-0.06740746914956244],[121,0,74,-0.11013035517988974],[121,0,75,-0.13742196822875768],[121,0,76,-0.1385852817384318],[121,0,77,-0.11676490218217338],[121,0,78,-0.10627835336500215],[121,0,79,-0.08430118444456071],[121,1,64,-0.1349605224280452],[121,1,65,-0.11973476404636157],[121,1,66,-0.11349361222014855],[121,1,67,-0.08786335349684228],[121,1,68,-0.09006927865488004],[121,1,69,-0.08559875847258651],[121,1,70,-0.05044967789417349],[121,1,71,-0.008829088382985363],[121,1,72,-0.010503204502681013],[121,1,73,-0.06740488791955761],[121,1,74,-0.10965964629362321],[121,1,75,-0.1367362027625351],[121,1,76,-0.13801180918613074],[121,1,77,-0.11667806987809716],[121,1,78,-0.10651244921881653],[121,1,79,-0.08461597027760175],[121,2,64,-0.1339389710883252],[121,2,65,-0.11886757469704677],[121,2,66,-0.11288207311362292],[121,2,67,-0.08731374832774495],[121,2,68,-0.08923924083176464],[121,2,69,-0.08493284723499364],[121,2,70,-0.05019448949884537],[121,2,71,-0.008895688238171894],[121,2,72,-0.010832144931493278],[121,2,73,-0.06741802618512695],[121,2,74,-0.10921881991585053],[121,2,75,-0.13609017138636795],[121,2,76,-0.1374794043865771],[121,2,77,-0.11662131389790387],[121,2,78,-0.10676883462720584],[121,2,79,-0.08494650119029666],[121,3,64,-0.13294976230124175],[121,3,65,-0.11803286820444374],[121,3,66,-0.11229986826667795],[121,3,67,-0.0867909866480305],[121,3,68,-0.08844232933863387],[121,3,69,-0.08429356697678023],[121,3,70,-0.04995107798919734],[121,3,71,-0.008963274920786494],[121,3,72,-0.011159716471719625],[121,3,73,-0.06744710399957975],[121,3,74,-0.10880798920687275],[121,3,75,-0.13548388364830297],[121,3,76,-0.13698801850861997],[121,3,77,-0.11659485318872602],[121,3,78,-0.10704800484947954],[121,3,79,-0.0852933885775014],[121,4,64,-0.13199285598823673],[121,4,65,-0.11723060352383644],[121,4,66,-0.11174700342290451],[121,4,67,-0.08629486723792648],[121,4,68,-0.08767810050587653],[121,4,69,-0.08368071632852697],[121,4,70,-0.04971938467994879],[121,4,71,-0.009031706531118632],[121,4,72,-0.011486053358352278],[121,4,73,-0.06749234241614933],[121,4,74,-0.10842725690883614],[121,4,75,-0.1349173422129658],[121,4,76,-0.13653760981982963],[121,4,77,-0.11659891690234886],[121,4,78,-0.10735045819301443],[121,4,79,-0.08565723751815948],[121,5,64,-0.1310682139348734],[121,5,65,-0.11646073354183613],[121,5,66,-0.11122347560295881],[121,5,67,-0.085825187319667],[121,5,68,-0.08694611122621206],[121,5,69,-0.08309408734094893],[121,5,70,-0.04949935497207952],[121,5,71,-0.00910086704621983],[121,5,72,-0.011811309551548589],[121,5,73,-0.06755396353902522],[121,5,74,-0.10807671633935687],[121,5,75,-0.13439054367334732],[121,5,76,-0.13612814345204546],[121,5,77,-0.11663374353814339],[121,5,78,-0.10767669529474538],[121,5,79,-0.08603864681305097],[121,6,64,-0.13017579899786344],[121,6,65,-0.11572320565638936],[121,6,66,-0.11072927412682343],[121,6,67,-0.08538174337485518],[121,6,68,-0.0862459199391616],[121,6,69,-0.08253346653526185],[121,6,70,-0.04929093797946113],[121,6,71,-0.009170664177285135],[121,6,72,-0.012135657030049034],[121,6,73,-0.06763219056223597],[121,6,74,-0.10775645230763446],[121,6,75,-0.13390347930256882],[121,6,76,-0.13575959118018105],[121,6,77,-0.1166995801415717],[121,6,78,-0.10802721844680727],[121,6,79,-0.08643820902327493],[121,7,64,-0.1293155744078254],[121,7,65,-0.11501796232941533],[121,7,66,-0.11026438153648578],[121,7,67,-0.08496433186023687],[121,7,68,-0.08557708750280088],[121,7,69,-0.08199863585451622],[121,7,70,-0.0490940861785018],[121,7,71,-0.009241027390439362],[121,7,72,-0.012459284216322612],[121,7,73,-0.0677272477969696],[121,7,74,-0.10746654195637068],[121,7,75,-0.1334561357470793],[121,7,76,-0.13543193121139274],[121,7,77,-0.11679668155332384],[121,7,78,-0.10840253096218863],[121,7,79,-0.0868565105079188],[121,8,64,-0.1284875031604799],[121,8,65,-0.11434494161230008],[121,8,66,-0.10982877442496339],[121,8,67,-0.08457274982875193],[121,8,68,-0.08493917796015382],[121,8,69,-0.08148937352221192],[121,8,70,-0.04890875508033224],[121,8,71,-0.009311906082579782],[121,8,72,-0.012782394526532532],[121,8,73,-0.06783936068776378],[121,8,74,-0.10720705553259019],[121,8,75,-0.13304849566262644],[121,8,76,-0.13514514798178223],[121,8,77,-0.11692530970422943],[121,8,78,-0.10880313657626631],[121,8,79,-0.08729413145929392],[121,9,64,-0.1276915474893308],[121,9,65,-0.11370407764452423],[121,9,66,-0.10942242417732707],[121,9,67,-0.08420679546241726],[121,9,68,-0.08433175920729569],[121,9,69,-0.08100545481425231],[121,9,70,-0.048734902925094],[121,9,71,-0.009383267904319039],[121,9,72,-0.01310520503872],[121,9,73,-0.06796875581797468],[121,9,74,-0.10697805709037066],[121,9,75,-0.13268053829436577],[121,9,76,-0.13489923195799736],[121,9,77,-0.11708573295130667],[121,9,78,-0.10922953888024604],[121,9,79,-0.08775164593418822],[121,10,64,-0.12692766841316314],[121,10,65,-0.11309530112567741],[121,10,66,-0.10904529762903244],[121,10,67,-0.08386626852322082],[121,10,68,-0.0837544035698756],[121,10,69,-0.08054665274998576],[121,10,70,-0.04857249039785785],[121,10,71,-0.009455097222391146],[121,10,72,-0.013427945272840655],[121,10,73,-0.06811566090484855],[121,10,74,-0.10677960512833866],[121,10,75,-0.13235224000243012],[121,10,76,-0.13469417944122586],[121,10,77,-0.11727822545049665],[121,10,78,-0.10968224078265416],[121,10,79,-0.08822962187961905],[121,11,64,-0.12619582535190302],[121,11,65,-0.11251853976104369],[121,11,66,-0.10869735764649975],[121,11,67,-0.08355097072780912],[121,11,68,-0.08320668829439408],[121,11,69,-0.08011273870774634],[121,11,70,-0.04842148036564451],[121,11,71,-0.009527393714169514],[121,11,72,-0.013750856076488703],[121,11,73,-0.06828030478440031],[121,11,74,-0.10661175316460603],[121,11,75,-0.13206357473420574],[121,11,76,-0.13452999237116667],[121,11,77,-0.1175030665617392],[121,11,78,-0.11016174399508258],[121,11,79,-0.08872862115153625],[121,12,64,-0.12549597580474986],[121,12,65,-0.11197371868099448],[121,12,66,-0.10837856363463892],[121,12,67,-0.08326070605146865],[121,12,68,-0.08268819596029925],[121,12,69,-0.07970348297008165],[121,12,70,-0.04828183763506918],[121,12,71,-0.009600171087327712],[121,12,72,-0.014074188610444918],[121,12,73,-0.06846291738630367],[121,12,74,-0.1064745502517574],[121,12,75,-0.13181451444459422],[121,12,76,-0.1344066781277686],[121,12,77,-0.1177605402823177],[121,12,78,-0.11066854853860576],[121,12,79,-0.08924919952505167],[121,13,64,-0.12482807508477893],[121,13,65,-0.11146076083442642],[121,13,66,-0.10808887197573235],[121,13,67,-0.08299528096659345],[121,13,68,-0.08219851481866934],[121,13,69,-0.07931865520360323],[121,13,70,-0.04815352873014668],[121,13,71,-0.009673455918009966],[121,13,72,-0.014398203428439971],[121,13,73,-0.06866372969894911],[121,13,74,-0.10636804143438873],[121,13,75,-0.1316050294655353],[121,13,76,-0.1343242493286771],[121,13,77,-0.11805093470458304],[121,13,78,-0.11120315226743464],[121,13,79,-0.08979190669482177],[121,14,64,-0.12419207610445092],[121,14,65,-0.11097958735642635],[121,14,66,-0.107828236403771],[121,14,67,-0.08275450462047557],[121,14,68,-0.08173723906290822],[121,14,69,-0.07895802487809558],[121,14,70,-0.048036521689759415],[121,14,71,-0.009747286601152542],[121,14,72,-0.01472316964571948],[121,14,73,-0.06888297372473991],[121,14,74,-0.10629226815155343],[121,14,75,-0.13143508882600596],[121,14,76,-0.13428272362043614],[121,14,77,-0.11837454149433098],[121,14,78,-0.11176605040648845],[121,14,79,-0.09035728626423678],[121,15,64,-0.12358792920684349],[121,15,65,-0.11053011791042634],[121,15,66,-0.10759660831815047],[121,15,67,-0.08253818895703954],[121,15,68,-0.08130396903666365],[121,15,69,-0.07862136162935456],[121,15,70,-0.04793078588438048],[121,15,71,-0.009821712406987138],[121,15,72,-0.015049364191314989],[121,15,73,-0.06912088242573211],[121,15,74,-0.10624726858644702],[121,15,75,-0.13130466052378992],[121,15,76,-0.13428212346172194],[121,15,77,-0.11873165538639434],[121,15,78,-0.1123577350998285],[121,15,79,-0.09094587572223291],[121,16,64,-0.12301558203765657],[121,16,65,-0.11011227100507555],[121,16,66,-0.10739393704036233],[121,16,67,-0.08234614878683938],[121,16,68,-0.08089831138388888],[121,16,69,-0.078308435569974],[121,16,70,-0.04783629185163983],[121,16,71,-0.009896792638036736],[121,16,72,-0.015377071139125637],[121,16,73,-0.06937768965966476],[121,16,74,-0.10623307796554445],[121,16,75,-0.1312137117502711],[121,16,76,-0.1343224758969991],[121,16,77,-0.11912257369416955],[121,16,78,-0.11297869496702165],[121,16,79,-0.09155820640657698],[121,17,64,-0.12247497945340316],[121,17,65,-0.10972596428612613],[121,17,66,-0.10722017001715135],[121,17,67,-0.08217820180943855],[121,17,68,-0.08051987914576676],[121,17,69,-0.07801901755214555],[121,17,70,-0.04775301115040786],[121,17,71,-0.00997259588126879],[121,17,72,-0.015706581113206226],[121,17,73,-0.06965363010646604],[121,17,74,-0.10624972880939379],[121,17,75,-0.1311622090695867],[121,17,76,-0.13440381231921658],[121,17,77,-0.11954759583009515],[121,17,78,-0.11362941466477862],[121,17,79,-0.09219480345265421],[121,18,64,-0.1219660634614279],[121,18,65,-0.10937111480358437],[121,18,66,-0.10707525297333811],[121,18,67,-0.0820341685919961],[121,18,68,-0.08016829180891895],[121,18,69,-0.07775287938628188],[121,18,70,-0.047680916233059555],[121,18,71,-0.010049199350337172],[121,18,72,-0.016038190762851963],[121,18,73,-0.06994893918526349],[121,18,74,-0.10629725113714875],[121,18,75,-0.1311501185534282],[121,18,76,-0.13452616822025923],[121,18,77,-0.12000702283425144],[121,18,78,-0.11431037445134527],[121,18,79,-0.09285618572682312],[121,19,64,-0.12148877318774219],[121,19,65,-0.10904763925447612],[121,19,66,-0.10695913001741625],[121,19,67,-0.0819138725077621],[121,19,68,-0.07984317530920268],[121,19,69,-0.07750979401919379],[121,19,70,-0.04761998033570208],[121,19,71,-0.01012668831317768],[121,19,72,-0.016372202303344182],[121,19,73,-0.07026385296199635],[121,19,74,-0.10637567262695441],[121,19,75,-0.13117740587289162],[121,19,76,-0.13468958292811525],[121,19,77,-0.12050115690855463],[121,19,78,-0.11502204975141514],[121,19,79,-0.09354286574360617],[121,20,64,-0.12104304486896815],[121,20,65,-0.10875545420159344],[121,20,66,-0.10687174370283892],[121,20,67,-0.08181713963795736],[121,20,68,-0.07954416199515914],[121,20,69,-0.07728953567535524],[121,20,70,-0.04757017738619287],[121,20,71,-0.010205155600533058],[121,20,72,-0.016708923118473364],[121,20,73,-0.07059860804774068],[121,20,74,-0.10648501873425183],[121,20,75,-0.13124403634880225],[121,20,76,-0.1348940993298874],[121,20,77,-0.1210303009542597],[121,20,78,-0.11576491071956217],[121,20,79,-0.09425534956610805],[121,21,64,-0.12062881186490902],[121,21,65,-0.1084944762685869],[121,21,66,-0.10681303504774511],[121,21,67,-0.08174379864032871],[121,21,68,-0.07927089055499259],[121,21,69,-0.07709187996464156],[121,21,70,-0.047531481929814226],[121,21,71,-0.010284701191220977],[121,21,72,-0.017048665421133348],[121,21,73,-0.07095344148785192],[121,21,74,-0.1066253127700202],[121,21,75,-0.13134997496195555],[121,21,76,-0.13513976357990898],[121,21,77,-0.12159475811067134],[121,21,78,-0.11653942180037516],[121,21,79,-0.09499413668915405],[121,22,64,-0.12024600468861836],[121,22,65,-0.10826462231186064],[121,22,66,-0.10678294351579445],[121,22,67,-0.08169368058755262],[121,22,68,-0.07902300591082514],[121,22,69,-0.07691660395983084],[121,22,70,-0.0475038690725762],[121,22,71,-0.01036543187027916],[121,22,72,-0.017391745968557727],[121,22,73,-0.07132859064210874],[121,22,74,-0.10679657594100762],[121,22,75,-0.13149518632482457],[121,22,76,-0.1354266247924671],[121,22,77,-0.12219483129328275],[121,22,78,-0.11734604128378892],[121,22,79,-0.09575971990485145],[121,23,64,-0.11989455105110756],[121,23,65,-0.10806580956977294],[121,23,66,-0.10678140696067762],[121,23,67,-0.08166661877853695],[121,23,68,-0.07880015908384028],[121,23,69,-0.07676348624705845],[121,23,70,-0.047487314442203714],[121,23,71,-0.010447460956396992],[121,23,72,-0.017738485828991655],[121,23,73,-0.07172429305609675],[121,23,74,-0.10699882735401017],[121,23,75,-0.13167963461634352],[121,23,76,-0.13575473471881283],[121,23,77,-0.12283082272979473],[121,23,78,-0.11818522085434968],[121,23,79,-0.09655258515043212],[121,24,64,-0.11957437591806674],[121,24,65,-0.10789795578965052],[121,24,66,-0.10680836153673616],[121,24,67,-0.08166244852550981],[121,24,68,-0.07860200703375068],[121,24,69,-0.0766323069522737],[121,24,70,-0.04748179416689499],[121,24,71,-0.010530908095255611],[121,24,72,-0.0180892101967652],[121,24,73,-0.07214078632407729],[121,24,74,-0.10723208398622763],[121,24,75,-0.13190328348141087],[121,24,76,-0.13612414740827863],[121,24,77,-0.1235030334926848],[121,24,78,-0.11905740513336636],[121,24,79,-0.09737321133835464],[121,25,64,-0.11928540157629479],[121,25,65,-0.10776097933322286],[121,25,66,-0.10686374157809818],[121,25,67,-0.08168100691972772],[121,25,68,-0.07842821247595265],[121,25,69,-0.07652284774669958],[121,25,70,-0.04748728487205993],[121,25,71,-0.010615899115689198],[121,25,72,-0.018444248252989424],[121,25,73,-0.07257830794369656],[121,25,74,-0.10749636062378756],[121,25,75,-0.13216609589687614],[121,25,76,-0.13653491885356628],[121,25,77,-0.1242117630273046],[121,25,78,-0.119963031213227],[121,25,79,-0.0982220701688777],[121,26,64,-0.11902754770779322],[121,26,65,-0.10765479926114903],[121,26,66,-0.1069474794486877],[121,26,67,-0.08172213257856585],[121,26,68,-0.0782784436796415],[121,26,69,-0.07643489183424107],[121,26,70,-0.04750376369533945],[121,26,71,-0.010702565945824768],[121,26,72,-0.01880393306930302],[121,26,73,-0.07303709516296061],[121,26,74,-0.10779166977056975],[121,26,75,-0.13246803400585624],[121,26,76,-0.1369871066204446],[121,26,77,-0.12495730867472514],[121,26,78,-0.12090252818340184],[121,26,79,-0.09909962592547673],[121,27,64,-0.11880073146969902],[121,27,65,-0.10757933539731887],[121,27,66,-0.10705950536537537],[121,27,67,-0.08178566537663431],[121,27,68,-0.07815237425001842],[121,27,69,-0.07636822392366688],[121,27,70,-0.04753120832023453],[121,27,71,-0.01079104658653436],[121,27,72,-0.019168601552251446],[121,27,73,-0.073517384819936],[121,27,74,-0.10811802152945052],[121,27,75,-0.13280905892227646],[121,27,76,-0.13748076946225557],[121,27,77,-0.12573996518878713],[121,27,78,-0.12187631664791618],[121,27,79,-0.1000063352536375],[121,28,64,-0.11860486757852387],[121,28,65,-0.10753450837372151],[121,28,66,-0.1071997471965632],[121,28,67,-0.08187144616356443],[121,28,68,-0.07804968289769956],[121,28,69,-0.07632263018839158],[121,28,70,-0.04756959702880952],[121,28,71,-0.010881485139796032],[121,28,72,-0.019538594426116128],[121,28,73,-0.07401941317576013],[121,28,74,-0.10847542345818217],[121,28,75,-0.1331891305076629],[121,28,76,-0.13801596691984788],[121,28,77,-0.12656002424709725],[121,28,78,-0.12288480823437209],[121,28,79,-0.10094264692377637],[121,29,64,-0.11843986839741387],[121,29,65,-0.10752023965674955],[121,29,66,-0.10736813023849018],[121,29,67,-0.08197931647108202],[121,29,68,-0.07797005319838061],[121,29,69,-0.07629789821665098],[121,29,70,-0.04761890877401773],[121,29,71,-0.010974031889767567],[121,29,72,-0.01991425625220124],[121,29,73,-0.0745434157416411],[121,29,74,-0.1088638804021806],[121,29,75,-0.1336082071223157],[121,29,76,-0.13859275890776096],[121,29,77,-0.12741777395598433],[121,29,78,-0.12392840509488924],[121,29,79,-0.10190900157923782],[121,30,64,-0.1183056440253391],[121,30,65,-0.10753645155581837],[121,30,66,-0.107564576971494],[121,30,67,-0.0821091182119027],[121,30,68,-0.07791317334570173],[121,30,69,-0.07629381695476684],[121,30,70,-0.04767912327222604],[121,30,71,-0.011068843434514456],[121,30,72,-0.020295935482712933],[121,30,73,-0.07508962710056828],[121,30,74,-0.10928339430650148],[121,30,75,-0.13406624535304384],[121,30,76,-0.13921120528761324],[121,30,77,-0.1283134983496433],[121,30,78,-0.12500749939957526],[121,30,79,-0.10290583147047401],[121,31,64,-0.11820210238739295],[121,31,65,-0.10758306721531316],[121,31,66,-0.10778900679854005],[121,31,67,-0.08226069337304401],[121,31,68,-0.07787873590028589],[121,31,69,-0.07631017664624831],[121,31,70,-0.047750221116655125],[121,31,71,-0.011166082866571435],[121,31,72,-0.02068398454759004],[121,31,73,-0.07565828072460813],[121,31,74,-0.10973396400940878],[121,31,75,-0.13456319971979425],[121,31,76,-0.13987136542989567],[121,31,77,-0.12924747688399077],[121,31,78,-0.12612247282344854],[121,31,79,-0.10393356017674117],[121,32,64,-0.11812914932560434],[121,32,65,-0.10766001059093509],[121,32,66,-0.10804133576834372],[121,32,67,-0.08243388370613064],[121,32,68,-0.07786643753787242],[121,32,69,-0.07634676876942798],[121,32,70,-0.047832183912511324],[121,32,71,-0.011265920000668362],[121,32,72,-0.02107875997280008],[121,32,73,-0.07624960878875142],[121,32,74,-0.11021558501999808],[121,32,75,-0.13509902236360752],[121,32,76,-0.14057329776554373],[121,32,77,-0.1302199839260227],[121,32,78,-0.1272736960280332],[121,32,79,-0.10499260231685742],[121,33,64,-0.11808668868983555],[121,33,65,-0.10776720641155717],[121,33,66,-0.10832147628541734],[121,33,67,-0.08262853041725735],[121,33,68,-0.0778759787994189],[121,33,69,-0.07640338597629993],[121,33,70,-0.04792499443462946],[121,33,71,-0.011368531647073483],[121,33,72,-0.021480622528734228],[121,33,73,-0.07686384198235051],[121,33,74,-0.11072824928237623],[121,33,75,-0.13567366271840084],[121,33,76,-0.14131705932881528],[121,33,77,-0.13123128823967115],[121,33,78,-0.12846152813907227],[121,33,79,-0.10608336325071736],[121,34,64,-0.11807462242858824],[121,34,65,-0.10790458012782543],[121,34,66,-0.10862933680946865],[121,34,67,-0.08284447385904324],[121,34,68,-0.07790706384608027],[121,34,69,-0.07647982203526071],[121,34,70,-0.04802863680856084],[121,34,71,-0.01147410192919005],[121,34,72,-0.02188993740752668],[121,34,73,-0.07750120931933727],[121,34,74,-0.11127194492902522],[121,34,75,-0.13628706716923258],[121,34,76,-0.14210270529322072],[121,34,77,-0.1322816524694537],[121,34,78,-0.12968631622213128],[121,34,79,-0.10720623877349661],[121,35,64,-0.11809285067972923],[121,35,65,-0.1080720578487974],[121,35,66,-0.10896482154662118],[121,35,67,-0.08308155322752825],[121,35,68,-0.07795940022194434],[121,35,69,-0.07657587178043461],[121,35,70,-0.04814309671608829],[121,35,71,-0.011582822644160006],[121,35,72,-0.0223070744282562],[121,35,73,-0.07816193794851307],[121,35,74,-0.11184665602604295],[121,35,75,-0.1369391786997952],[121,35,76,-0.14293028850242995],[121,35,77,-0.1333713326234589],[121,35,78,-0.13094839475814038],[121,35,79,-0.10836161480468413],[121,36,64,-0.11814127186129778],[121,36,65,-0.10826956626796803],[121,36,66,-0.10932783013497359],[121,36,67,-0.08333960626658851],[121,36,68,-0.07803269862739676],[121,36,69,-0.07669133107025335],[121,36,70,-0.04826836162619227],[121,36,71,-0.011694893665318402],[121,36,72,-0.022732408269090044],[121,36,73,-0.07884625296528805],[121,36,74,-0.1124523623130133],[121,36,75,-0.13762993653196823],[121,36,76,-0.14379985899821715],[121,36,77,-0.13450057755741013],[121,36,78,-0.13224808512114702],[121,36,79,-0.10954986707422092],[121,37,64,-0.1182197827627747],[121,37,65,-0.10849703258013756],[121,37,66,-0.10971825732711639],[121,37,67,-0.0836184689826185],[121,37,68,-0.0781266727060087],[121,37,69,-0.07682599675798117],[121,37,70,-0.04840442105256822],[121,37,71,-0.011810523385470006],[121,37,72,-0.023166318725587307],[121,37,73,-0.07955437722639387],[121,37,74,-0.11308903894037244],[121,37,75,-0.13835927576040083],[121,37,76,-0.14471146354772477],[121,37,77,-0.13566962846184447],[121,37,78,-0.13358569506087314],[121,37,79,-0.11077136080827504],[121,38,64,-0.11832827863734839],[121,38,65,-0.10875438439064422],[121,38,66,-0.11013599267230226],[121,38,67,-0.08391797537228624],[121,38,68,-0.078241038847856],[121,38,69,-0.076979666676885],[121,38,70,-0.04855126683884598],[121,38,71,-0.011929929200054281],[121,38,72,-0.023609190994494857],[121,38,73,-0.08028653116920281],[121,38,74,-0.11375665620721596],[121,38,75,-0.13912712698518395],[121,38,76,-0.1456651451724728],[121,38,77,-0.13687871835465565],[121,38,78,-0.134961518192912],[121,38,79,-0.11202645041734623],[121,39,64,-0.11846665329584662],[121,39,65,-0.10904154961853901],[121,39,66,-0.11058092020102896],[121,39,67,-0.08423795716619968],[121,39,68,-0.07837551601216627],[121,39,69,-0.07715213964272907],[121,39,70,-0.048708893472670566],[121,39,71,-0.012053338029300937],[121,39,72,-0.02406141598244224],[121,39,73,-0.08104293263737326],[121,39,74,-0.11445517930254831],[121,39,75,-0.13993341594575795],[121,39,76,-0.146660942681686],[121,39,77,-0.13812807158145762],[121,39,78,-0.1363758334996273],[121,39,79,-0.11331547918955097],[121,40,64,-0.11863479920317455],[121,40,65,-0.10935845639536927],[121,40,66,-0.11105291811490117],[121,40,67,-0.08457824359140616],[121,40,68,-0.07852982557221903],[121,40,69,-0.07734321547629187],[121,40,70,-0.04887729842985997],[121,40,71,-0.012180986878578378],[121,40,72,-0.024523390639077096],[121,40,73,-0.08182379671468175],[121,40,74,-0.11518456805308135],[121,40,75,-0.14077806315931443],[121,40,76,-0.14769889021269234],[121,40,77,-0.13941790332648277],[121,40,78,-0.13782890484510568],[121,40,79,-0.11463877899215792],[121,41,64,-0.11883260757822028],[121,41,65,-0.10970503296130185],[121,41,66,-0.11155185848472599],[121,41,67,-0.08493866115570652],[121,41,68,-0.07870369118544109],[121,41,69,-0.07755269504860565],[121,41,70,-0.049056482549869156],[121,41,71,-0.012313123436160403],[121,41,72,-0.0249955183142478],[121,41,73,-0.08262933556899268],[121,41,74,-0.11594477668075263],[121,41,75,-0.14166098356703333],[121,41,76,-0.14877901678127253],[121,41,77,-0.1407484191369067],[121,41,78,-0.13932098050771072],[121,41,79,-0.11599666998457255],[121,42,64,-0.1190599684983227],[121,42,65,-0.11008120756038438],[121,42,66,-0.11207760695988583],[121,42,67,-0.08531903345682719],[121,42,68,-0.07889683869164352],[121,42,69,-0.07778038035161007],[121,42,70,-0.049246450443803054],[121,42,71,-0.012450006707689858],[121,42,72,-0.02547820913894003],[121,42,73,-0.08345975830843895],[121,42,74,-0.11673575357321306],[121,42,75,-0.1425820861915868],[121,42,76,-0.14990134584499903],[121,42,77,-0.14211981446372754],[121,42,78,-0.14085229273404534],[121,42,79,-0.11738946034616278],[121,43,64,-0.11931677100947964],[121,43,65,-0.11048690833678103],[121,43,66,-0.11263002249210764],[121,43,67,-0.08571918101953974],[121,43,68,-0.07910899604234134],[121,43,69,-0.0780260745968843],[121,43,70,-0.04944721093620118],[121,43,71,-0.012591907686602823],[121,43,72,-0.025971880429710863],[121,43,73,-0.08431527085195344],[121,43,74,-0.1175574410705728],[121,43,75,-0.14354127380939366],[121,43,76,-0.15106589488270092],[121,43,77,-0.14353227422247603],[121,43,78,-0.14242305731830035],[121,43,79,-0.11881744602242646],[121,44,64,-0.11960290324359923],[121,44,65,-0.11092206323390193],[121,44,66,-0.11320895707685762],[121,44,67,-0.08613892116389847],[121,44,68,-0.0793398932641277],[121,44,69,-0.07828958234513485],[121,44,70,-0.04965877754182983],[121,44,71,-0.012739110059813642],[121,44,72,-0.02647695711645343],[121,44,73,-0.0851960758164191],[121,44,74,-0.11840977527178102],[121,44,75,-0.1445384426412009],[121,44,76,-0.152272674993333],[121,44,77,-0.1449859723772419],[121,44,78,-0.14403347321118942],[121,44,79,-0.12028091049316438],[121,45,64,-0.11991825254418209],[121,45,65,-0.11138659989838869],[121,45,66,-0.11381425551566948],[121,45,67,-0.08657806790781425],[121,45,68,-0.07958926245905723],[121,45,69,-0.07857070966907828],[121,45,70,-0.049881168978687544],[121,45,71,-0.012891910947946547],[121,45,72,-0.02699387219337303],[121,45,73,-0.08610237242278859],[121,45,74,-0.1192926858640592],[121,45,75,-0.14557348206462678],[121,45,76,-0.15352169051764905],[121,45,77,-0.1464810715516834],[121,45,78,-0.14568372216287268],[121,45,79,-0.12178012456646405],[121,46,64,-0.12026270560185792],[121,46,65,-0.11188044559093714],[121,46,66,-0.11444575520277299],[121,46,67,-0.08703643190721055],[121,46,68,-0.07985683784497952],[121,46,69,-0.07886926435231488],[121,46,70,-0.05011440971837239],[121,46,71,-0.013050621679350284],[121,46,72,-0.02752306719306566],[121,46,73,-0.08703435642357525],[121,46,74,-0.12020609597882066],[121,46,75,-0.14664627435231456],[121,46,76,-0.15481293868612453],[121,46,77,-0.14801772267078112],[121,46,78,-0.14737396840437356],[121,46,79,-0.12331534620235396],[121,47,64,-0.12063614029894487],[121,47,65,-0.11240351878879362],[121,47,66,-0.11510327760726076],[121,47,67,-0.0875138120896631],[121,47,68,-0.08014234747599441],[121,47,69,-0.07918504774847286],[121,47,70,-0.05035852218093324],[121,47,71,-0.013215560187233235],[121,47,72,-0.028064984257679546],[121,47,73,-0.08799221161198335],[121,47,74,-0.12114991361886679],[121,47,75,-0.14775668596405392],[121,47,76,-0.1561464008044881],[121,47,77,-0.14959605612801763],[121,47,78,-0.14910434984566734],[121,47,79,-0.12488681182614085],[121,48,64,-0.12103832961973299],[121,48,65,-0.1129556326420507],[121,48,66,-0.11578653141747727],[121,48,67,-0.08800989874928765],[121,48,68,-0.08044541620977576],[121,48,69,-0.07951775766449096],[121,48,70,-0.05061342973221975],[121,48,71,-0.0133869539797358],[121,48,72,-0.028619968549508552],[121,48,73,-0.088976011447404],[121,48,74,-0.12212393298033894],[121,48,75,-0.1489044685024118],[121,48,76,-0.15752194287015037],[121,48,77,-0.1512160821535595],[121,48,78,-0.15087487824664966],[121,48,79,-0.12649463636477626],[121,49,64,-0.12146896528416158],[121,49,65,-0.11353651823916236],[121,49,66,-0.11649513560538961],[121,49,67,-0.08852429666500268],[121,49,68,-0.08076558879188106],[121,49,69,-0.07986701145022818],[121,49,70,-0.05087897998107215],[121,49,71,-0.01356496349929978],[121,49,72,-0.029188291143507506],[121,49,73,-0.08998574127216041],[121,49,74,-0.12312785647952536],[121,49,75,-0.1500892804811846],[121,49,76,-0.15893933711251082],[121,49,77,-0.15287771222544425],[121,49,78,-0.15268546055719479],[121,49,79,-0.12813883456006844],[121,50,64,-0.12192772091387101],[121,50,65,-0.11414588757818561],[121,50,66,-0.11722868239545259],[121,50,67,-0.08905658831222779],[121,50,68,-0.08110239321157363],[121,50,69,-0.08023240953256426],[121,50,70,-0.051155008696094],[121,50,71,-0.013749746271161767],[121,50,72,-0.0297702128831598],[121,50,73,-0.09102136168291679],[121,50,74,-0.12416135812662937],[121,50,75,-0.15131075062531463],[121,50,76,-0.16039832525043105],[121,50,77,-0.15458082239050583],[121,50,78,-0.15453596236487774],[121,50,79,-0.12981938456563927],[121,51,64,-0.12241425274446172],[121,51,65,-0.1147834340229607],[121,51,66,-0.11798673768148565],[121,51,67,-0.08960633447182864],[121,51,68,-0.0814553413907643],[121,51,69,-0.0806135362112776],[121,51,70,-0.05144134091166178],[121,51,71,-0.013941458160372453],[121,51,72,-0.030365985269405604],[121,51,73,-0.09208280887615367],[121,51,74,-0.12522408381128955],[121,51,75,-0.1525684780095026],[121,51,76,-0.16189861851395024],[121,51,77,-0.1563252532800803],[121,51,78,-0.15642620797116735],[121,51,79,-0.1315362280801729],[121,52,64,-0.12292819908847537],[121,52,65,-0.11544883150794505],[121,52,66,-0.11876884021655217],[121,52,67,-0.09017307362169698],[121,52,68,-0.08182392865263197],[121,52,69,-0.08100995922571019],[121,52,70,-0.05173779079481851],[121,52,71,-0.01414025337257474],[121,52,72,-0.030975850085608034],[121,52,73,-0.09316999374140758],[121,52,74,-0.12631565034359923],[121,52,75,-0.153862030950209],[121,52,76,-0.16343989641713336],[121,52,77,-0.1581108088815789],[121,52,78,-0.1583559792329808],[121,52,79,-0.13328926922950057],[121,53,64,-0.12346917977380667],[121,53,65,-0.11614173371861541],[121,53,66,-0.11957450080607275],[121,53,67,-0.0907563213425582],[121,53,68,-0.08220763320256329],[121,53,69,-0.08142122932609873],[121,53,70,-0.05204416150718371],[121,53,71,-0.0143462844327117],[121,53,72,-0.03160003899576762],[121,53,73,-0.09428280094419104],[121,53,74,-0.1274356444951463],[121,53,75,-0.15519094589775104],[121,53,76,-0.165021805530858],[121,53,77,-0.15993725531738143],[121,53,78,-0.1603250144238246],[121,53,79,-0.13507837345289261],[121,54,64,-0.12403679556152901],[121,54,65,-0.11686177325193106],[121,54,66,-0.12040320151026594],[121,54,67,-0.09135556974366477],[121,54,68,-0.08260591562629016],[121,54,69,-0.08184687985385794],[121,54,70,-0.05236024506458069],[121,54,71,-0.01455970214258893],[121,54,72,-0.032238773118147455],[121,54,73,-0.09542108800357743],[121,54,74,-0.12858362204567128],[121,54,75,-0.15655472633431797],[121,54,76,-0.16664395826150472],[121,54,77,-0.16180431963768424],[121,54,78,-0.1623330071218659],[121,54,79,-0.1369033663999538],[121,55,64,-0.12463062754714371],[121,55,65,-0.11760856076139287],[121,55,66,-0.12125439486206939],[121,55,67,-0.09197028691405405],[121,55,68,-0.08301821841006984],[121,55,69,-0.08228642633504],[121,55,70,-0.05268582219701451],[121,55,71,-0.01478065551818834],[121,55,72,-0.03289226257653482],[121,55,73,-0.09658468436953414],[121,55,74,-0.1297591068409765],[121,55,75,-0.15795284168377374],[121,55,76,-0.16830593164161792],[121,55,77,-0.16371168863407998],[121,55,78,-0.1643796051324036],[121,55,79,-0.13876403284462144],[121,56,64,-0.12525023654936357],[121,56,65,-0.11838168409136784],[121,56,66,-0.12212750310684105],[121,56,67,-0.09259991640516117],[121,56,68,-0.08344396548782841],[121,56,69,-0.08273936609125009],[121,56,70,-0.05302066221166614],[121,56,71,-0.015009291707697605],[121,56,72,-0.033560706031509915],[121,56,73,-0.09777339050526004],[121,56,74,-0.13096158986784087],[121,56,75,-0.15938472623923014],[121,56,76,-0.17000726613874523],[121,56,77,-0.16565900768080324],[121,56,78,-0.1664644094523388],[121,56,79,-0.1406601156228996],[121,57,64,-0.12589516249059843],[121,57,65,-0.11918070740542974],[121,57,66,-0.12302191747021735],[121,57,67,-0.09324387675061391],[121,57,68,-0.08388256182017136],[121,57,69,-0.08320517787225265],[121,57,70,-0.05336452286152535],[121,57,71,-0.015245755891231545],[121,57,72,-0.03424429019419837],[121,57,73,-0.09898697697990567],[121,57,74,-0.13219052835175035],[121,57,75,-0.16084977811443932],[121,57,76,-0.17174746448879222],[121,57,77,-0.1676458796107442],[121,57,78,-0.1685869732843839],[121,57,79,-0.14259131460109317],[121,58,64,-0.12656492377333467],[121,58,65,-0.12000517031352192],[121,58,66,-0.12393699746055872],[121,58,67,-0.09390156102904715],[121,58,68,-0.0843333930101437],[121,58,69,-0.08368332151446291],[121,58,70,-0.05371715022223269],[121,58,71,-0.015490191163220158],[121,58,72,-0.034943189325057016],[121,58,73,-0.10022518357713944],[121,58,74,-0.13344534488327237],[121,58,75,-0.16234735822507396],[121,58,76,-0.17352599056026968],[121,58,77,-0.16967186363338296],[121,58,78,-0.1707468011087695],[121,58,79,-0.14455728568133847],[121,59,64,-0.12725901665669603],[121,59,65,-0.12085458700288183],[121,59,66,-0.12487207021252887],[121,59,67,-0.0945723364758562],[121,59,68,-0.08479582496066071],[121,59,69,-0.08417323762953328],[121,59,70,-0.054078278579711],[121,59,71,-0.01574273839850594],[121,59,72,-0.03565756472039621],[121,59,73,-0.10148771842518389],[121,59,74,-0.1347254265790033],[121,59,75,-0.1638767893060607],[121,59,76,-0.1753422682559579],[121,59,77,-0.17173647430196232],[121,59,78,-0.17294334782032614],[121,59,79,-0.14655763985134482],[121,60,64,-0.12797691463752137],[121,60,65,-0.12172844537773857],[121,60,66,-0.1258264298783974],[121,60,67,-0.09525554414979949],[121,60,68,-0.0852692035784878],[121,60,69,-0.08467434732718744],[121,60,70,-0.05444763033111791],[121,60,71,-0.016003536103218773],[121,60,72,-0.03638756418944695],[121,60,73,-0.10277425715403786],[121,60,74,-0.1360301242830335],[121,60,75,-0.16543735497115716],[121,60,76,-0.17719568045857734],[121,60,77,-0.17383918053729683],[121,60,78,-0.17517601793886353],[121,60,79,-0.14859194228533396],[121,61,64,-0.12871806784031678],[121,61,65,-0.12262620621286595],[121,61,66,-0.12679933707369126],[121,61,67,-0.09595049866036233],[121,61,68,-0.08575285452962421],[121,61,69,-0.08518605197641141],[121,61,70,-0.05482491590160217],[121,61,71,-0.016272720251508888],[121,61,72,-0.03713332152486346],[121,61,73,-0.10408444208567759],[121,61,74,-0.13735875181488597],[121,61,75,-0.16702829882096984],[121,61,76,-0.17908556802708897],[121,61,77,-0.1759794047156438],[121,61,78,-0.1774441649007351],[121,61,79,-0.1506597115031452],[121,62,64,-0.1294819024205016],[121,62,65,-0.12354730232615814],[121,62,66,-0.12779001838385393],[121,62,67,-0.09665648796177943],[121,62,68,-0.08624608305089825],[121,62,69,-0.08570773300905578],[121,62,70,-0.05520983367931154],[121,62,71,-0.016550424109280763],[121,62,72,-0.037894955969690905],[121,62,73,-0.10541788146312595],[121,62,74,-0.13871058526990523],[121,62,75,-0.16864882360563446],[121,62,76,-0.1810112288503175],[121,62,77,-0.17815652182814],[121,62,78,-0.17974709043950815],[121,62,79,-0.15276041859454179],[121,63,64,-0.1302678199854273],[121,63,65,-0.12449113777549992],[121,63,66,-0.12879766593861638],[121,63,67,-0.09737277321961342],[121,63,68,-0.08674817382256474],[121,63,69,-0.08623875176987304],[121,63,70,-0.055602069971078125],[121,63,71,-0.01683677804612293],[121,63,72,-0.038672571683944355],[121,63,73,-0.1067741487243745],[121,63,74,-0.14008486237809809],[121,63,75,-0.1702980904484047],[121,63,76,-0.182971916964644],[121,63,77,-0.18036985871935238],[121,63,78,-0.18208404406363568],[121,63,79,-0.15489348651575785],[121,64,64,-0.13107519703762113],[121,64,65,-0.12545708708520636],[121,64,66,-0.12982143706071347],[121,64,67,-0.09809858875567963],[121,64,68,-0.08725839090657296],[121,64,69,-0.08677844941688817],[121,64,70,-0.056001298981102184],[121,64,71,-0.017131909336626568],[121,64,72,-0.03946625721400212],[121,64,73,-0.10815278182713733],[121,64,74,-0.14148078192734206],[121,64,75,-0.17197521813631422],[121,64,76,-0.18496684174245917],[121,64,77,-0.18261869341240997],[121,64,78,-0.18445422263888347],[121,64,79,-0.1570582894652348],[121,65,64,-0.13190338444478436],[121,65,65,-0.12644449450742454],[121,65,66,-0.13086045399560003],[121,65,67,-0.09883314207706248],[121,65,68,-0.08777597775511105],[121,65,69,-0.08732614687594559],[121,65,70,-0.05640718281494491],[121,65,71,-0.01743594195239259],[121,65,72,-0.04027608496818903],[121,65,73,-0.10955328263052369],[121,65,74,-0.1428975032569063],[121,65,75,-0.17367928248409836],[121,65,76,-0.18699516715814038],[121,65,77,-0.1849022545282684],[121,65,78,-0.18685677008327536],[121,65,79,-0.15925415234554335],[121,66,64,-0.13275170694104718],[121,66,65,-0.12745267332388563],[121,66,66,-0.13191380372873512],[121,66,67,-0.09957561399488066],[121,66,68,-0.08830015729395621],[121,66,69,-0.08788114485317594],[121,66,70,-0.056819371511029275],[121,66,71,-0.017748996345981816],[121,66,72,-0.04110211070190929],[121,66,73,-0.11097511633964573],[121,66,74,-0.14433414582710932],[121,66,75,-0.1754093157774605],[121,66,76,-0.18905601113820672],[121,66,77,-0.18721972080646818],[121,66,78,-0.18929077718204873],[121,66,79,-0.16148035031829155],[121,67,64,-0.1336194626640171],[121,67,65,-0.12848090519347657],[121,67,66,-0.13298053789693726],[121,67,67,-0.10032515883828785],[121,67,68,-0.0888301320849708],[121,67,69,-0.08844272390899084],[121,67,70,-0.05723750310183044],[121,67,71,-0.018071189228239932],[121,67,72,-0.04194437301593398],[121,67,73,-0.1124177110192951],[121,67,74,-0.1457897888709267],[121,67,75,-0.1771643063017307],[121,67,76,-0.19114844500233774],[121,67,77,-0.18957022073481902],[121,67,78,-0.1917552815301147],[121,67,79,-0.16373610845885678],[121,68,64,-0.13450592273210463],[121,68,65,-0.12952843955106352],[121,68,66,-0.1340596728001702],[121,68,67,-0.1010809047690657],[121,68,68,-0.08936508457198189],[121,68,69,-0.0890101445970817],[121,68,70,-0.05766120370677905],[121,68,71,-0.01840263334032615],[121,68,72,-0.0428028928713575],[121,68,73,-0.11388045718266267],[121,68,74,-0.1472634711331798],[121,68,75,-0.17894319796181463],[121,68,76,-0.19327149300177748],[121,68,77,-0.1919528322951778],[121,68,78,-0.1942492676091528],[121,68,79,-0.1660206015175124],[121,69,64,-0.13541033086662418],[121,69,65,-0.13059449306304732],[121,69,66,-0.1351501895200119],[121,69,67,-0.10184195420197811],[121,69,68,-0.08990417741410306],[121,69,69,-0.0895826476717666],[121,69,70,-0.05809008765887359],[121,69,71,-0.018743437221921292],[121,69,72,-0.043677673124919124],[121,69,73,-0.11536270746112436],[121,69,74,-0.14875419070287776],[121,69,75,-0.18074488999924865],[121,69,76,-0.19542413196160713],[121,69,77,-0.19436658283243352],[121,69,78,-0.19677166700633078],[121,69,79,-0.168332953793441],[121,70,64,-0.1363319030631228],[121,70,65,-0.13167824914510445],[121,70,66,-0.13625103415086026],[121,70,67,-0.10260738433583409],[121,70,68,-0.09044655391035915],[121,70,69,-0.09015945436685141],[121,70,70,-0.05852375766687094],[121,70,71,-0.01909370497710361],[121,70,72,-0.04456869808841703],[121,70,73,-0.11686377636101086],[121,70,74,-0.15026090494411196],[121,70,75,-0.18256823681202516],[121,70,76,-0.19760529103322966],[121,70,77,-0.19681044905362338],[121,70,78,-0.19932135878136126],[121,70,79,-0.1706722391279376],[121,71,64,-0.13726982731631285],[121,71,65,-0.1327788575475181],[121,71,66,-0.13736111814971924],[121,71,67,-0.10337624779994264],[121,71,68,-0.09099133851924746],[121,71,69,-0.09073976674897653],[121,71,70,-0.058961805014806065],[121,71,71,-0.01945353603939938],[121,71,72,-0.04547593311596032],[121,71,73,-0.1183829401131594],[121,71,74,-0.15178253053071492],[121,71,75,-0.18441204788265536],[121,71,76,-0.19981385156322118],[121,71,77,-0.19928335716384274],[121,71,78,-0.20189716998824117],[121,71,79,-0.17303748102282598],[121,72,64,-0.13822326340294364],[121,72,65,-0.13389543401346618],[121,72,66,-0.13847931881016073],[121,72,67,-0.10414757342036246],[121,72,68,-0.09153763747662823],[121,72,69,-0.09132276814822424],[121,72,70,-0.05940380980048207],[121,72,71,-0.01982302493757559],[121,72,72,-0.046399324222868625],[121,72,73,-0.11991943662094005],[121,72,74,-0.1533179435897122],[121,72,75,-0.1862750878197625],[121,72,76,-0.20204864708455772],[121,72,77,-0.20178418314541563],[121,72,78,-0.2044978763577287],[121,72,79,-0.1754276528899243],[121,73,64,-0.1391913427268712],[121,73,65,-0.13502706001558015],[121,73,66,-0.13960447986580504],[121,73,67,-0.1049203671100551],[121,73,68,-0.09208453951509109],[121,73,69,-0.09190762366856206],[121,73,70,-0.059849341214463864],[121,73,71,-0.020202261063789882],[121,73,72,-0.04733879774005907],[121,73,73,-0.12147246551231053],[121,73,74,-0.1548659799583917],[121,73,75,-0.18815607651830157],[121,73,76,-0.2043084634360248],[121,73,77,-0.20431175318651376],[121,73,78,-0.20712220314623103],[121,73,79,-0.177841678437107],[121,74,64,-0.140173168230433],[121,74,65,-0.13617278257593768],[121,74,66,-0.14073541222828614],[121,74,67,-0.10569361288663949],[121,74,68,-0.09263111668759806],[121,74,69,-0.09249348078040862],[121,74,70,-0.060297957860923054],[121,74,71,-0.020591328445697676],[121,74,72,-0.048294260007717076],[121,74,73,-0.12304118830120754],[121,74,74,-0.1564254355595037],[121,74,75,-0.1900536894431866],[121,74,76,-0.20659203901531292],[121,74,77,-0.20686484426502963],[121,74,78,-0.20976882615628273],[121,74,79,-0.18027843219613848],[121,75,64,-0.1411678143761695],[121,75,65,-0.13733161417458303],[121,75,66,-0.14187089486434856],[121,75,67,-0.10646627402108645],[121,75,68,-0.0931764252979079],[121,75,69,-0.09307946999737762],[121,75,70,-0.060749208121565104],[121,75,71,-0.020990305524178313],[121,75,72,-0.049265597112080325],[121,75,73,-0.12462472866342433],[121,75,74,-0.15799506689888043],[121,75,75,-0.191966558040897],[121,75,76,-0.20889806517110385],[121,75,77,-0.209442184893243],[121,75,78,-0.212436372933432],[121,75,79,-0.18273674019719444],[121,76,64,-0.14217432720277512],[121,76,65,-0.13850253275151778],[121,76,66,-0.14300967581632995],[121,76,67,-0.10723729432027787],[121,76,68,-0.09371950693995551],[121,76,69,-0.09366470563899829],[121,76,70,-0.061202630563731646],[121,76,71,-0.021399264938374782],[121,76,72,-0.05025267466913713],[121,76,73,-0.1262221728318644],[121,76,74,-0.1595735916894545],[121,76,75,-0.19389327028332365],[121,76,76,-0.21122518673912427],[121,76,77,-0.2120424560283838],[121,76,78,-0.21512342414380103],[121,76,79,-0.18521538079456423],[121,77,64,-0.14319172445898135],[121,77,65,-0.13968448180689924],[121,77,66,-0.14415047336979475],[121,77,67,-0.10800559954582398],[121,77,68,-0.09425938964791726],[121,77,69,-0.09424828668084584],[121,77,70,-0.06165775439353968],[121,77,71,-0.02181827331970345],[121,77,72,-0.051255337658950816],[121,77,73,-0.12783257011574903],[121,77,74,-0.1611596896052779],[121,77,75,-0.19583237134775253],[121,77,76,-0.2135720027267983],[121,77,77,-0.21466429215377644],[121,77,78,-0.21782851513606696],[121,77,79,-0.18771308564762895],[121,78,64,-0.14421899581891953],[121,78,65,-0.14087637060401909],[121,78,66,-0.14529197737164454],[121,78,67,-0.10877009897107898],[121,78,68,-0.0947950891583342],[121,78,69,-0.09482929769325339],[121,78,70,-0.06211409995479571],[121,78,71,-0.02224739109654643],[121,78,72,-0.052273410314296755],[121,78,73,-0.12945493354807816],[121,78,74,-0.16275200316882749],[121,78,75,-0.1977823644365659],[121,78,76,-0.21593706715078967],[121,78,77,-0.2173062825348034],[121,78,78,-0.22055013769105203],[121,78,79,-0.19022854086078292],[121,79,64,-0.1452551031823115],[121,79,65,-0.14207707447941953],[121,79,66,-0.14643285070151285],[121,79,67,-0.1095296870777515],[121,79,68,-0.0953256102852384],[121,79,69,-0.0954068098694417],[121,79,70,-0.06257117927423923],[121,79,71,-0.022686672311345357],[121,79,72,-0.05330669606721784],[121,79,73,-0.1310882406653095],[121,79,74,-0.16434913877449772],[121,79,75,-0.19974171173987343],[121,79,76,-0.2183188900313485],[121,79,77,-0.2199669726534499],[121,79,78,-0.22328674196153234],[121,79,79,-0.1927603882855214],[121,80,64,-0.1462989810625844],[121,80,65,-0.14328543526419799],[121,80,66,-0.14757173089864087],[121,80,67,-0.11028324539286995],[121,80,68,-0.09584994840870109],[121,80,69,-0.09597988214348974],[121,80,70,-0.06302849665341595],[121,80,71,-0.023136164451758028],[121,80,72,-0.05435497755694937],[121,80,73,-0.13273143442279706],[121,80,74,-0.1659496678507213],[121,80,75,-0.20170883554382876],[121,80,76,-0.2207159385469186],[121,80,77,-0.22264486582463502],[121,80,78,-0.22603673860421764],[121,80,79,-0.19530722698739755],[121,81,64,-0.14734953706578924],[121,81,65,-0.14450026182033104],[121,81,66,-0.14870723194588226],[121,81,67,-0.1110296444663126],[121,81,68,-0.0963670910768077],[121,81,69,-0.0965475623982708],[121,81,70,-0.06348554930734053],[121,81,71,-0.023595908297576424],[121,81,72,-0.0554180167025843],[121,81,73,-0.13438342424917235],[121,81,74,-0.1675521281627743],[121,81,75,-0.20368211948701748],[121,81,76,-0.2231266383520524],[121,81,77,-0.22533842499700124],[121,81,78,-0.22879850110520983],[121,81,79,-0.1978676148800445],[121,82,64,-0.1484056524629371],[121,82,65,-0.14572033069549728],[121,82,66,-0.1498379462118172],[121,82,67,-0.11176774598842497],[121,82,68,-0.09687601972051263],[121,82,69,-0.09710888876305125],[121,82,70,-0.06394182804987937],[121,82,71,-0.024065937785088344],[121,82,72,-0.056495554843700405],[121,82,73,-0.13604308724240105],[121,82,74,-0.16915502525783785],[121,82,75,-0.2056599099668201],[121,82,76,-0.22554937506120482],[121,82,77,-0.2280460747402787],[121,82,78,-0.23157036829961541],[121,82,79,-0.20044007052797114],[121,83,64,-0.14946618406884155],[121,83,65,-0.14694438752744385],[121,83,66,-0.15096244662423136],[121,83,67,-0.11249640467899541],[121,83,68,-0.09737571080079448],[121,83,69,-0.09766288996013583],[121,83,70,-0.06439681710618227],[121,83,71,-0.024546279452021764],[121,83,72,-0.05758731171929673],[121,83,73,-0.1377092660802366],[121,83,74,-0.17075682921095728],[121,83,75,-0.20764051110081969],[121,83,76,-0.22798248789095563],[121,83,77,-0.23076619454775815],[121,83,78,-0.23435063730789862],[121,83,79,-0.20302306599438555],[121,84,64,-0.15053000694709517],[121,84,65,-0.1481711712042753],[121,84,66,-0.15207929448281027],[121,84,67,-0.11321446132508496],[121,84,68,-0.09786511812738885],[121,84,69,-0.09820855564505723],[121,84,70,-0.06484996685398925],[121,84,71,-0.02503693863840755],[121,84,72,-0.05869294701931886],[121,84,73,-0.13938066313125586],[121,84,74,-0.17235582473290362],[121,84,75,-0.20962197933356855],[121,84,76,-0.23042401917520972],[121,84,77,-0.23349684088955533],[121,84,78,-0.23713725713486197],[121,84,79,-0.20561473971280766],[121,85,64,-0.15159604037013263],[121,85,65,-0.14939943521060853],[121,85,66,-0.15318705795605875],[121,85,67,-0.11392075392197679],[121,85,68,-0.09834317964435467],[121,85,69,-0.09874483991184654],[121,85,70,-0.06530069392037836],[121,85,71,-0.0255378974975533],[121,85,72,-0.05981205435673172],[121,85,73,-0.14105582606780173],[121,85,74,-0.1739500902936369],[121,85,75,-0.21160209158033783],[121,85,76,-0.23287167139035456],[121,85,77,-0.2362356960919308],[121,85,78,-0.23992777059161882],[121,85,79,-0.20821283879040306],[121,86,64,-0.15266321252586992],[121,86,65,-0.150627933624631],[121,86,66,-0.15428431952974572],[121,86,67,-0.11461413915797058],[121,86,68,-0.09880884895877645],[121,86,69,-0.09927070542393848],[121,86,70,-0.06574841847743958],[121,86,71,-0.026049131649142347],[121,86,72,-0.06094420817217702],[121,86,73,-0.14273327939735528],[121,86,74,-0.17553768307810752],[121,86,75,-0.21357859503773496],[121,86,76,-0.23532310823060343],[121,86,77,-0.23898040040561117],[121,86,78,-0.24271967954067097],[121,86,79,-0.21081505787127305],[121,87,64,-0.15373045906579552],[121,87,65,-0.15185542133286772],[121,87,66,-0.15536967874856208],[121,87,67,-0.11529349608852509],[121,87,68,-0.09926109910683074],[121,87,69,-0.09978512753863465],[121,87,70,-0.06619256732114509],[121,87,71,-0.026570611301485497],[121,87,72,-0.062088967441606156],[121,87,73,-0.14441153474615206],[121,87,74,-0.17711665266175824],[121,87,75,-0.2155492248924884],[121,87,76,-0.23777597573375375],[121,87,77,-0.24172857578264587],[121,87,78,-0.24551047138053655],[121,87,79,-0.21341906321758483],[121,88,64,-0.1547967242886007],[121,88,65,-0.15308065556851863],[121,88,66,-0.15644175500440768],[121,88,67,-0.11595772888412616],[121,88,68,-0.09969892468472479],[121,88,69,-0.10028709595701903],[121,88,70,-0.06663257478050082],[121,88,71,-0.027102301378961986],[121,88,72,-0.063245876591036],[121,88,73,-0.1460890932530545],[121,88,74,-0.1786850434894738],[121,88,75,-0.21751170678600823],[121,88,76,-0.24022790494350263],[121,88,77,-0.2444778292458917],[121,88,78,-0.24829762304809885],[121,88,79,-0.21602249585611008],[121,89,64,-0.15586096237834324],[121,89,65,-0.15430239752725575],[121,89,66,-0.15749919039824972],[121,89,67,-0.11660576963855926],[121,89,68,-0.10012134403075917],[121,89,69,-0.10077561641470567],[121,89,70,-0.06706788365022527],[121,89,71,-0.02764416168132117],[121,89,72,-0.06441446648980072],[121,89,73,-0.1477644480851112],[121,89,74,-0.18024089747093447],[121,89,75,-0.2194637594126199],[121,89,76,-0.24267651472952692],[121,89,77,-0.24722575642774494],[121,89,78,-0.2510786051843049],[121,89,79,-0.21862297488902896],[121,90,64,-0.15692213869301846],[121,90,65,-0.15551941405579883],[121,90,66,-0.15854065266674502],[121,90,67,-0.11723658122870562],[121,90,68,-0.10052740145102623],[121,90,69,-0.10124971240723973],[121,90,70,-0.06749794614350695],[121,90,71,-0.02819614707511868],[121,90,72,-0.06559425552121459],[121,90,73,-0.149436087068562],[121,90,74,-0.18178225668470113],[121,90,75,-0.22140309724352641],[121,90,76,-0.2451194147571517],[121,90,77,-0.24996994526817812],[121,90,78,-0.2538508864510156],[121,90,79,-0.22121810096024638],[121,91,64,-0.15797923109930012],[121,91,65,-0.15673047940837792],[121,91,66,-0.15956483816450476],[121,91,67,-0.11784916021667481],[121,91,68,-0.10091616948105306],[121,91,69,-0.1017084269438629],[121,91,70,-0.0679222248613317],[121,91,71,-0.02875820771743489],[121,91,72,-0.0667847507292097],[121,91,73,-0.15110249542856172],[121,91,74,-0.18330716618301898],[121,91,75,-0.22332743336824223],[121,91,76,-0.24755420859798738],[121,91,77,-0.25270797986150967],[121,91,78,-0.25661193798613163],[121,91,79,-0.22380545986784223],[121,92,64,-0.15903123134900923],[121,92,65,-0.1579343770658878],[121,92,66,-0.16057047489245407],[121,92,67,-0.11844253978466195],[121,92,68,-0.10128675117536672],[121,92,69,-0.10215082432311445],[121,92,70,-0.06834019377470199],[121,92,71,-0.02933028931181278],[121,92,72,-0.06798544903908772],[121,92,73,-0.1527621586303377],[121,92,74,-0.1848136768889006],[121,92,75,-0.22523448244482253],[121,92,76,-0.24997849697241564],[121,92,77,-0.25543744444070465],[121,92,78,-0.2593592379834477],[121,92,79,-0.22638262631267314],[121,93,64,-0.16007714649281918],[121,93,65,-0.15912990161238202],[121,93,66,-0.1615563255625091],[121,93,67,-0.11901579269268607],[121,93,68,-0.10163828241682978],[121,93,69,-0.10257599192369912],[121,93,70,-0.06875133921607222],[121,93,71,-0.029912333396266016],[121,93,72,-0.06919583855022247],[121,93,73,-0.15441356531408695],[121,93,74,-0.18629984857678655],[121,93,75,-0.227121963749981],[121,93,76,-0.25238988111445815],[121,93,77,-0.2581559274874898],[121,93,78,-0.26209027638315285],[121,93,79,-0.22894716777264634],[121,94,64,-0.16111600032652654],[121,94,65,-0.16031586066329226],[121,94,66,-0.16252119068844226],[121,94,67,-0.11956803424903431],[121,94,68,-0.10196993423734624],[121,94,69,-0.10298304200389427],[121,94,70,-0.06915516087620938],[121,94,71,-0.030504277663005234],[121,94,72,-0.07041539989813178],[121,94,73,-0.1560552103154044],[121,94,74,-0.18776375292771558],[121,94,75,-0.22898760431982412],[121,94,76,-0.2547859662490835],[121,94,77,-0.26086102595595567],[121,94,78,-0.26480255965826377],[121,94,79,-0.231496648491594],[121,95,64,-0.1621468348651488],[121,95,65,-0.1614910768395783],[121,95,66,-0.16346391169257918],[121,95,67,-0.12009842528299508],[121,95,68,-0.10228091514138032],[121,95,69,-0.10337111350269458],[121,95,70,-0.06955117280265573],[121,95,71,-0.031106056309404568],[121,95,72,-0.07164360768301356],[121,95,73,-0.15768559776262925],[121,95,74,-0.18920347664967824],[121,95,75,-0.23082914217169825],[121,95,76,-0.25716436517168584],[121,95,77,-0.26355034959688073],[121,95,78,-0.26749361568185026],[121,95,79,-0.23402863357127054],[121,96,64,-0.1631687118399668],[121,96,65,-0.1626543897817903],[121,96,66,-0.16438337401769668],[121,96,67,-0.12060617510921774],[121,96,68,-0.10257047342356866],[121,96,69,-0.10373937383581251],[121,96,70,-0.06993890439590467],[121,96,71,-0.03171760041952641],[121,96,72,-0.07287993196142661],[121,96,73,-0.15930324424203024],[121,96,74,-0.19061712465351927],[121,96,75,-0.23264432959733838],[121,96,76,-0.2595227019190334],[121,96,77,-0.26622152536943505],[121,96,78,-0.2701609986593329],[121,96,79,-0.23654069315443216],[121,97,64,-0.164180714213559],[121,97,65,-0.16380465819785975],[121,97,66,-0.16527851023330847],[121,97,67,-0.1210905444728423],[121,97,68,-0.10283789947157401],[121,97,69,-0.10408702067959975],[121,97,70,-0.07031790139937581],[121,97,71,-0.032338838375384385],[121,97,72,-0.07412383979747375],[121,97,73,-0.1609066820213792],[121,97,74,-0.1920028232745372],[121,97,75,-0.23443093651730906],[121,97,76,-0.2618586155206965],[121,97,77,-0.26887220192655203],[121,97,78,-0.2728022941098063],[121,97,79,-0.23903040668662065],[121,98,64,-0.1651819477077975],[121,98,65,-0.1649407619382713],[121,98,66,-0.1661483031253514],[121,98,67,-0.12155084846439322],[121,98,68,-0.10308252804525554],[121,98,69,-0.10441328373595228],[121,98,70,-0.07068772687927626],[121,98,71,-0.03296969629697012],[121,98,72,-0.07537479686949863],[121,98,73,-0.16249446232210085],[121,98,74,-0.19335872352971573],[121,98,75,-0.23618675388651672],[121,98,76,-0.2641697638196366],[121,98,77,-0.2715000541598203],[121,98,78,-0.2754151238799301],[121,98,79,-0.24149536724386494],[121,99,64,-0.1661715423396705],[121,99,65,-0.1660616040920851],[121,99,66,-0.16699178875811585],[121,99,67,-0.12198645939326755],[121,99,68,-0.10330374052311546],[121,99,69,-0.10471742647121471],[121,99,70,-0.07104796219038399],[121,99,71,-0.0336100985098542],[121,99,72,-0.07663226912791717],[121,99,73,-0.1640651586297906],[121,99,74,-0.1946830044002985],[121,99,75,-0.23790959714035653],[121,99,76,-0.266453827350318],[121,99,77,-0.27410278778934427],[121,99,78,-0.27799715117358154],[121,99,79,-0.24393318591312135],[121,100,64,-0.16714865395975007],[121,100,65,-0.16716611309715015],[121,100,66,-0.1678080594971651],[121,100,67,-0.12239680960855741],[121,100,68,-0.10350096710694731],[121,100,69,-0.10499874782213127],[121,100,70,-0.0713982079238163],[121,100,71,-0.03425996803904261],[121,100,72,-0.07789572449950916],[121,100,73,-0.1656173700326178],[121,100,74,-0.19597387612927988],[121,100,75,-0.23959730967092405],[121,100,76,-0.2687085132624793],[121,100,77,-0.2766781439837452],[121,100,78,-0.28054608558025346],[121,100,79,-0.24634149621204351],[121,101,64,-0.16811246578810823],[121,101,65,-0.16825324485776605],[121,101,66,-0.16859626698195815],[121,101,67,-0.12278139425593693],[121,101,68,-0.10367368897564172],[121,101,69,-0.1052565838619724],[121,101,70,-0.07173808483289908],[121,101,71,-0.03491922712761697],[121,101,72,-0.07916463463318484],[121,101,73,-0.16714972457686128],[121,101,74,-0.19722958352329137],[121,101,75,-0.2412477663226272],[121,101,76,-0.2709315592784884],[121,101,77,-0.2792239039951841],[121,101,78,-0.28305968808496507],[121,101,79,-0.2487179585343847],[121,102,64,-0.1690621899423659],[121,102,65,-0.16932198486286051],[121,102,66,-0.16935562503676566],[121,102,67,-0.12313977395923018],[121,102,68,-0.10382144037902796],[121,102,69,-0.10549030941994315],[121,102,70,-0.07206723473320457],[121,102,71,-0.03558779777846429],[121,102,72,-0.0804384766818694],[121,102,73,-0.16866088262850626],[121,102,74,-0.1984484092481805],[121,102,75,-0.2428588768963537],[121,102,76,-0.2731207376719453],[121,102,77,-0.2817378937940118],[121,102,78,-0.2855357760422633],[121,102,79,-0.2510602646070941],[121,103,64,-0.1699970689526107],[121,103,65,-0.1703713502977391],[121,103,66,-0.17008541250855103],[121,103,67,-0.12347157741537462],[121,103,68,-0.10394381066275045],[121,103,69,-0.10569933964713901],[121,103,70,-0.0723853213729406],[121,103,71,-0.03626560231729694],[121,103,72,-0.0817167351149161],[121,103,73,-0.17014954022968534],[121,103,74,-0.1996286771075946],[121,103,75,-0.24442858965136016],[121,103,76,-0.27527385925510695],[121,103,77,-0.284217988687518],[121,103,78,-0.2879722280968654],[121,103,79,-0.2533661419450532],[121,104,64,-0.1709163772578897],[121,104,65,-0.1714003921423866],[121,104,66,-0.17078497602051848],[121,104,67,-0.12377650389154801],[121,104,68,-0.10404044621525499],[121,104,69,-0.10588313152242904],[121,104,70,-0.072692031269932],[121,104,71,-0.03695256397500703],[121,104,72,-0.08299890355517538],[121,104,73,-0.17161443243856117],[121,104,74,-0.20076875529384444],[121,104,75,-0.24595489479400537],[121,104,76,-0.2773887773625727],[121,104,77,-0.28666211790710955],[121,104,78,-0.2903669890334545],[121,104,79,-0.2556333582892684],[121,105,64,-0.17181942271553288],[121,105,65,-0.17240819727360454],[121,105,66,-0.17145373249249182],[121,105,67,-0.12405432543588713],[121,105,68,-0.10411105218152722],[121,105,69,-0.10604118517931538],[121,105,70,-0.07298707442769552],[121,105,71,-0.03764860742763578],[121,105,72,-0.08428448655324272],[121,105,73,-0.17305433660442787],[121,105,74,-0.2018670596737071],[121,105,75,-0.2474358280030827],[121,105,76,-0.27946339186061253],[121,105,77,-0.28906826913588596],[121,105,78,-0.2927180745100373],[121,105,79,-0.25785972606417973],[121,106,64,-0.1727055896218242],[121,106,65,-0.17339391809788346],[121,106,66,-0.17209101026230414],[121,106,67,-0.12430468141709317],[121,106,68,-0.10415522355511894],[121,106,69,-0.10617291532173237],[121,106,70,-0.07327008837591863],[121,106,71,-0.038353589535734825],[121,106,72,-0.08557290524079042],[121,106,73,-0.1744680316151226],[121,106,74,-0.2029221423813883],[121,106,75,-0.24886954459589583],[121,106,76,-0.2814957011091214],[121,106,77,-0.2914344765506509],[121,106,78,-0.2950235408312315],[121,106,79,-0.26004316443842473],[121,107,64,-0.17357441318766612],[121,107,65,-0.17435682191251642],[121,107,66,-0.17269573133088678],[121,107,67,-0.12452667156468064],[121,107,68,-0.1041721166999956],[121,107,69,-0.10627740822620685],[121,107,70,-0.07354045787124504],[121,107,71,-0.03906716146898028],[121,107,72,-0.08686330273152132],[121,107,73,-0.17585420660257053],[121,107,74,-0.2039328591371144],[121,107,75,-0.25025445985981126],[121,107,76,-0.2834838917775526],[121,107,77,-0.29375877836166137],[121,107,78,-0.29728140731998587],[121,107,79,-0.2621818118179848],[121,108,64,-0.17442547057227276],[121,108,65,-0.17529621799714323],[121,108,66,-0.17326678871053489],[121,108,67,-0.12471934485456058],[121,108,68,-0.10416085969179922],[121,108,69,-0.10635374459257445],[121,108,70,-0.07379755611478568],[121,108,71,-0.0397889317921649],[121,108,72,-0.08815476129394494],[121,108,73,-0.17721155585859985],[121,108,74,-0.20489816608996436],[121,108,75,-0.2515890831105651],[121,108,76,-0.28542621737795454],[121,108,77,-0.2960392384023275],[121,108,78,-0.29948972277649455],[121,108,79,-0.264273886713384],[121,109,64,-0.17525835822321975],[121,109,65,-0.17621144330666041],[121,109,66,-0.17380313357625027],[121,109,67,-0.12488181138375751],[121,109,68,-0.10412064550754198],[121,109,69,-0.1064010721757373],[121,109,70,-0.07404079874879306],[121,109,71,-0.04051850387131469],[121,109,72,-0.0894463536316457],[121,109,73,-0.17853880348732357],[121,109,74,-0.20581707650129305],[121,109,75,-0.2528719829188069],[121,109,76,-0.2873209745022421],[121,109,77,-0.2982739557139548],[121,109,78,-0.30164658518168397],[121,109,79,-0.2663176597760233],[121,110,64,-0.17607269248102653],[121,110,65,-0.1771018637477239],[121,110,66,-0.1743037774375213],[121,110,67,-0.12501324446781967],[121,110,68,-0.10405073409327299],[121,110,69,-0.1064186079370617],[121,110,70,-0.07426964528670134],[121,110,71,-0.04125547654857923],[121,110,72,-0.09073714447312985],[121,110,73,-0.1798347059674077],[121,110,74,-0.20668866304758654],[121,110,75,-0.2541017899591348],[121,110,76,-0.28916650567370994],[121,110,77,-0.30046106760879493],[121,110,78,-0.30375014494293723],[121,110,79,-0.26831145701767073],[121,111,64,-0.17686811015252468],[121,111,65,-0.17796687541261547],[121,111,66,-0.1747677942294677],[121,111,67,-0.12511288265355633],[121,111,68,-0.10395045433908927],[121,111,69,-0.10640564009454791],[121,111,70,-0.07448360048084869],[121,111,71,-0.04199944485152095],[121,111,72,-0.09202619221776052],[121,111,73,-0.18109805468118567],[121,111,74,-0.2075120600129462],[121,111,75,-0.25527719976048646],[121,111,76,-0.29096120213677645],[121,111,77,-0.3025987526880672],[121,111,78,-0.30579860805304554],[121,111,79,-0.2702536629195761],[121,112,64,-0.17764426905274486],[121,112,65,-0.17880590576752464],[121,112,66,-0.17519432231409335],[121,112,67,-0.12518003163664243],[121,112,68,-0.10381920595025826],[121,112,69,-0.10636153005995587],[121,112,70,-0.07468221561959697],[121,112,71,-0.042750000734117506],[121,112,72,-0.09331255063361575],[121,112,73,-0.1823276784033433],[121,112,74,-0.20828646536476564],[121,112,75,-0.25639697534989747],[121,112,76,-0.2927035065785373],[121,112,77,-0.30468523380847806],[121,112,78,-0.30779023915451353],[121,112,79,-0.27214272342269924],[121,113,64,-0.17840084851508106],[121,113,65,-0.17961841479237542],[121,113,66,-0.17558256638270683],[121,113,67,-0.12521406607400523],[121,113,68,-0.1036564612036485],[121,113,69,-0.10628571425155525],[121,113,70,-0.07486508974590059],[121,113,71,-0.04350673384669898],[121,113,72,-0.09459527060287354],[121,113,73,-0.18352244574192156],[121,113,74,-0.2090111427064085],[121,113,75,-0.25745994978186487],[121,113,76,-0.29439191577578394],[121,113,77,-0.3067187809907578],[121,113,78,-0.3097233645014984],[121,113,79,-0.27397714879081],[121,114,64,-0.17913754986945185],[121,114,65,-0.1804038960693368],[121,114,66,-0.17593179925087657],[121,114,67,-0.12521443128127038],[121,114,68,-0.10346176657908406],[121,114,69,-0.10617770577164282],[121,114,70,-0.07503187078969469],[121,114,71,-0.04426923233190899],[121,114,72,-0.09587340191005704],[121,114,73,-0.18468126752438854],[121,114,74,-0.2096854231009172],[121,114,75,-0.25846502854574743],[121,114,76,-0.2960249831612053],[121,114,77,-0.3086977142637538],[121,114,78,-0.31159637481189145],[121,114,79,-0.27575551633853607],[121,115,64,-0.17985409634419447],[121,115,65,-0.18116187726684246],[121,115,66,-0.17624136298078621],[121,115,67,-0.12518064424266065],[121,115,68,-0.10323474368594804],[121,115,69,-0.10603709536226608],[121,115,70,-0.07518225602412164],[121,115,71,-0.0450370830545065],[121,115,72,-0.09714599447259743],[121,115,73,-0.18580309851940705],[121,115,74,-0.2103087061513462],[121,115,75,-0.2594111912287025],[121,115,76,-0.29760132068092504],[121,115,77,-0.3106204058095066],[121,115,78,-0.3134077273676233],[121,115,79,-0.2774764723757141],[121,116,64,-0.18055009886631235],[121,116,65,-0.1818917849084181],[121,116,66,-0.17651053262513464],[121,116,67,-0.1251121556303248],[121,116,68,-0.10297494957988719],[121,116,69,-0.10586341012756778],[121,116,70,-0.07531584872718596],[121,116,71,-0.04580972653795019],[121,116,72,-0.09841195267039085],[121,116,73,-0.1868867905337689],[121,116,74,-0.21088031076368868],[121,116,75,-0.260297341244176],[121,116,76,-0.29911944714182853],[121,116,77,-0.31248512699760644],[121,116,78,-0.3151557913445772],[121,116,79,-0.2791385757474629],[121,117,64,-0.18122487369685195],[121,117,65,-0.18259276029079538],[121,117,66,-0.17673833038437933],[121,117,67,-0.12500816155784117],[121,117,68,-0.10268168612879625],[121,117,69,-0.10565592061708351],[121,117,70,-0.07543196258128959],[121,117,71,-0.04658625907837668],[121,117,72,-0.09966983617656473],[121,117,73,-0.18793089121697767],[121,117,74,-0.2113992708565199],[121,117,75,-0.26112209981539597],[121,117,76,-0.3005775801625605],[121,117,77,-0.31428983834206015],[121,117,78,-0.3168386353201235],[121,117,79,-0.2807400828282274],[121,118,64,-0.1818777028276812],[121,118,65,-0.18326392337296674],[121,118,66,-0.17692379291996183],[121,118,67,-0.12486787376000227],[121,118,68,-0.10235427309161471],[121,118,69,-0.1054139169234712],[121,118,70,-0.0755299004718527],[121,118,71,-0.04736571471697138],[121,118,72,-0.10091814599365581],[121,118,73,-0.18893393330676198],[121,118,74,-0.21186462678496767],[121,118,75,-0.2618841010104212],[121,118,76,-0.3019739345509803],[121,118,77,-0.3160324912202346],[121,118,78,-0.3184543318030573],[121,118,79,-0.28227925480510974],[121,119,64,-0.1825078776859086],[121,119,65,-0.18390441747935277],[121,119,66,-0.17706601692978544],[121,119,67,-0.1246905655441152],[121,119,68,-0.10199209447118006],[121,119,69,-0.10513675555305216],[121,119,70,-0.07560900162826979],[121,119,71,-0.04814711318852171],[121,119,72,-0.10215537397699229],[121,119,73,-0.18989448476099513],[121,119,74,-0.212275475094505],[121,119,75,-0.26258204261768686],[121,119,76,-0.30330677408437046],[121,119,77,-0.31771108053277297],[121,119,78,-0.320001010188441],[121,119,79,-0.28375441090180664],[121,120,64,-0.1831146998295711],[121,120,65,-0.184513410462587],[121,120,66,-0.17716416059842066],[121,120,67,-0.12447557310123367],[121,120,68,-0.10159459971055362],[121,120,69,-0.10482386062333389],[121,120,70,-0.07566864265074447],[121,120,71,-0.04892946138007286],[121,120,72,-0.10338000536555883],[121,120,73,-0.19081115128328485],[121,120,74,-0.2126309700999563],[121,120,75,-0.26321468833816786],[121,120,76,-0.30457441414681313],[121,120,77,-0.3193236477307955],[121,120,78,-0.32147685952953514],[121,120,79,-0.28516393089362485],[121,121,64,-0.18369748166193337],[121,121,65,-0.18509009585167602],[121,121,66,-0.17721744494672045],[121,121,67,-0.12422229670559605],[121,121,68,-0.10116130476655334],[121,121,69,-0.10447472492810055],[121,121,70,-0.07570823847324289],[121,121,71,-0.04971175485962105],[121,121,72,-0.10459052138661988],[121,121,73,-0.19168257881693568],[121,121,74,-0.212930325375768],[121,121,75,-0.26378086988673405],[121,121,76,-0.3057752243237965],[121,121,77,-0.3208682838161211],[121,121,78,-0.3228801312377815],[121,121,79,-0.28650625752822406],[121,122,64,-0.1842555471636837],[121,122,65,-0.18563369398292992],[121,122,66,-0.17722515507509198],[121,122,67,-0.12393020179596578],[121,122,68,-0.10069179305400523],[121,122,69,-0.10408891086358],[121,122,70,-0.07572724325767798],[121,122,71,-0.0504929794706582],[121,122,72,-0.1057854019273501],[121,122,73,-0.19250745600038724],[121,122,74,-0.2131728151534838],[121,122,75,-0.26427948899699605],[121,122,76,-0.30690763094830364],[121,122,77,-0.3223431323081198],[121,122,78,-0.32420914170497295],[121,122,79,-0.2877798988467893],[121,123,64,-0.18478823264222535],[121,123,65,-0.18614345311108957],[121,123,66,-0.17718664129508466],[121,123,67,-0.12359881993306787],[121,123,68,-0.10018571625478945],[121,123,69,-0.10366605120982253],[121,123,70,-0.07572515121479981],[121,123,71,-0.05127211298818284],[121,123,72,-0.10696312826645041],[121,123,73,-0.19328451657729412],[121,123,74,-0.2133577756225928],[121,123,75,-0.2647095193241673],[121,123,76,-0.307970119592669],[121,123,77,-0.3237463921707715],[121,123,78,-0.32546227484189],[121,123,79,-0.2889834304005824],[121,124,64,-0.18529488749711445],[121,124,65,-0.18661865049806156],[121,124,66,-0.17710132014433871],[121,124,67,-0.12322774962777304],[121,124,68,-0.09964279498627615],[121,124,69,-0.10320584976199366],[121,124,70,-0.07570149734758805],[121,124,71,-0.05204812683156273],[121,124,72,-0.10812218585843321],[121,124,73,-0.19401254175444246],[121,124,74,-0.2134846061311079],[121,124,75,-0.2650700082406704],[121,124,76,-0.3089612375004888],[121,124,77,-0.3250763206934427],[121,124,78,-0.326637984527823],[121,124,79,-0.2901154973580856],[121,125,64,-0.18577487500059064],[121,125,65,-0.18705859347668985],[121,125,66,-0.17696867528034724],[121,125,67,-0.12281665703517432],[121,125,68,-0.09906281932430146],[121,125,69,-0.10270808180690087],[121,125,70,-0.07565585811330734],[121,125,71,-0.052819987829465544],[121,125,72,-0.10926106716304694],[121,125,73,-0.1946903625008128],[121,125,74,-0.21355277028247902],[121,125,75,-0.2653600785194668],[121,125,76,-0.3098795959529486],[121,125,77,-0.3263312363189397],[121,125,78,-0.3277347969656315],[121,125,79,-0.2911748164982968],[121,126,64,-0.1862275730920686],[121,126,65,-0.18746262048706178],[121,126,66,-0.17678825824897273],[121,126,67,-0.1223652765102699],[121,126,68,-0.09844564917647097],[121,126,69,-0.10217259444075834],[121,126,70,-0.07558785200079642],[121,126,71,-0.05358666003191452],[121,126,72,-0.11037827451209806],[121,126,73,-0.19531686178122484],[121,126,74,-0.21356179692572272],[121,126,75,-0.2655789299003835],[121,126,76,-0.31072387256401485],[121,126,77,-0.32750952141239537],[121,126,78,-0.32875131293717635],[121,126,79,-0.2921601780860257],[121,127,64,-0.18665237518528113],[121,127,65,-0.18783010208280193],[121,127,66,-0.17655968912401626],[121,127,67,-0.1218734110214089],[121,127,68,-0.0977912145020795],[121,127,69,-0.10159930672475131],[121,127,70,-0.07549714001986786],[121,127,71,-0.054347106564311735],[121,127,72,-0.11147232300569174],[121,127,73,-0.19589097671807623],[121,127,74,-0.21351128103583597],[121,127,75,-0.26572584053491377],[121,127,76,-0.3114928134989628],[121,127,77,-0.3286096249645561],[121,127,78,-0.3296862099541464],[121,127,79,-0.29307044762534434],[121,128,64,-0.18704869098670399],[121,128,65,-0.18816044190490397],[121,128,66,-0.17628265701465815],[121,128,67,-0.12134093241825956],[121,128,68,-0.09709951537560484],[121,128,69,-0.10098820967567972],[121,128,70,-0.07538342610013751],[121,128,71,-0.055100291518163765],[121,128,72,-0.11254174342977602],[121,128,73,-0.19641170067488448],[121,128,74,-0.21340088448188305],[121,128,75,-0.2658001683053101],[121,128,76,-0.3121852356108566],[121,128,77,-0.32963006522310656],[121,128,78,-0.3305382442995633],[121,128,79,-0.2939045674877029],[121,129,64,-0.1874159473237811],[121,129,65,-0.1884530776206883],[121,129,66,-0.17595692043804234],[121,129,67,-0.12076778155160138],[121,129,68,-0.09637062189133833],[121,129,69,-0.10033936608961355],[121,129,70,-0.07524645739698593],[121,129,71,-0.05584518187310224],[121,129,72,-0.11358508518672476],[121,129,73,-0.19687808525550607],[121,129,74,-0.21323033668040925],[121,129,75,-0.2658013520140824],[121,129,76,-0.31280002848970245],[121,129,77,-0.3305694322457427],[121,129,78,-0.3313062529554668],[121,129,79,-0.29466155841154196],[121,130,64,-0.18775358898131758],[121,130,65,-0.1887074818254726],[121,130,66,-0.17558230755469129],[121,130,67,-0.12015396824274005],[121,130,68,-0.09560467390726952],[121,130,69,-0.09965291019709627],[121,130,70,-0.07508602450269788],[121,130,71,-0.05658074944463237],[121,130,72,-0.11460091923053276],[121,130,73,-0.19728924221305782],[121,130,74,-0.21299943513207076],[121,130,75,-0.2657289124402742],[121,130,76,-0.313336156419084],[121,130,77,-0.3314263903687541],[121,130,78,-0.3319891554125222],[121,130,79,-0.295340520870574],[121,131,64,-0.18806107954435913],[121,131,65,-0.1889231629046679],[121,131,66,-0.17515871626498628],[121,131,67,-0.11949957110098051],[121,131,68,-0.09480188062704714],[121,131,69,-0.09892904714917698],[121,131,70,-0.07490196156129053],[121,131,71,-0.05730597285198013],[121,131,72,-0.11558784099814536],[121,131,73,-0.19764434526281938],[121,131,74,-0.21270804583971384],[121,131,75,-0.2655824532592726],[121,131,76,-0.3137926602352681],[121,131,77,-0.3321996805850006],[121,131,78,-0.33258595535754737],[121,131,79,-0.29594063630824147],[121,132,64,-0.1883379022457473],[121,132,65,-0.18909966585402704],[121,132,66,-0.17468611416537358],[121,132,67,-0.11880473718810097],[121,132,68,-0.09396252001939633],[121,132,69,-0.09816805233415911],[121,132,70,-0.07469414628589024],[121,132,71,-0.058019839500296204],[121,132,72,-0.11654447332835295],[121,132,73,-0.19794263179360397],[121,132,74,-0.21235610360639995],[121,132,75,-0.26536166182320425],[121,132,76,-0.31416865908391184],[121,132,77,-0.3328881228253005],[121,132,78,-0.33309574223525384],[121,132,79,-0.29646116823624724],[121,133,64,-0.18858356081643604],[121,133,65,-0.18923657305584987],[121,133,66,-0.17416453836344556],[121,133,67,-0.11806968152934724],[121,133,68,-0.09308693807501205],[121,133,69,-0.09737027052562301],[121,133,70,-0.07446249987792125],[121,133,71,-0.058721347571389054],[121,133,72,-0.11746946935962681],[121,133,73,-0.1981834044723136],[121,133,74,-0.2119436122121586],[121,133,75,-0.26506630979930107],[121,133,76,-0.31446335206964915],[121,133,77,-0.33349061813734004],[121,133,78,-0.33351769268071335],[121,133,79,-0.29690146319534744],[121,134,64,-0.1887975803365968],[121,134,65,-0.1893335050090498],[121,134,66,-0.17359409515155189],[121,134,67,-0.11729468647105136],[121,134,68,-0.09217554790158847],[121,134,69,-0.09653611486296422],[121,134,70,-0.0742069868477871],[121,134,71,-0.05940950801712767],[121,134,72,-0.11836151539828642],[121,134,73,-0.19836603273669087],[121,134,74,-0.21147064446859234],[121,134,75,-0.26469625366400185],[121,134,76,-0.3146760197940498],[121,134,77,-0.3340061507564132],[121,134,78,-0.33385107181939405],[121,134,79,-0.2972609515769919],[121,135,64,-0.1889795080854176],[121,135,65,-0.18939012101102712],[121,135,66,-0.17297495953903377],[121,135,67,-0.1164801008855029],[121,135,68,-0.09122882865821617],[121,135,69,-0.09566606566628713],[121,135,70,-0.07392761473708379],[121,135,71,-0.06008334654959512],[121,135,72,-0.11921933374838017],[121,135,73,-0.19848995417153134],[121,135,74,-0.21093734215072266],[121,135,75,-0.2642514350508756],[121,135,76,-0.31480602577762085],[121,135,77,-0.33443379006245283],[121,135,78,-0.3340952344318795],[121,135,79,-0.2975391483047426],[121,136,64,-0.18912891438744966],[121,136,65,-0.18940611978942234],[121,136,66,-0.17230737464368892],[121,136,67,-0.11562633922429227],[121,136,68,-0.09024732433102926],[121,136,69,-0.09476066908818016],[121,136,70,-0.07362443374280023],[121,136,71,-0.060741905622060346],[121,136,72,-0.12004168549471209],[121,136,73,-0.19855467576392727],[121,136,74,-0.21034391580580233],[121,136,75,-0.26373188095083927],[121,136,76,-0.31485281776173163],[121,136,77,-0.3347726924179949],[121,136,78,-0.3342496259806653],[121,136,79,-0.2977356533747242],[121,137,64,-0.18924539345326305],[121,137,65,-0.18938124008188337],[121,137,66,-0.1715916509435155],[121,137,67,-0.114733880421861],[121,137,68,-0.0892316423525421],[121,137,69,-0.09382053560547732],[121,137,70,-0.073297536244316],[121,137,71,-0.06138424639482687],[121,137,72,-0.12082737323051884],[121,137,73,-0.1985597750334237],[121,137,74,-0.20969064443911348],[121,137,75,-0.26313770376349094],[121,137,76,-0.31481592888657534],[121,137,77,-0.3350221028819434],[121,137,78,-0.3343137834967552],[121,137,79,-0.29785015225474715],[121,138,64,-0.1893285642121216],[121,138,65,-0.18931526116210395],[121,138,66,-0.1708281653902714],[121,138,67,-0.11380326665156362],[121,138,68,-0.08818245206773145],[121,138,69,-0.09284633835475221],[121,138,70,-0.07294705623440242],[121,138,71,-0.062009450680045534],[121,138,72,-0.12157524372140992],[121,138,73,-0.19850490103329343],[121,138,74,-0.20897787507709667],[121,138,75,-0.2624691011987711],[121,138,76,-0.3146949787415184],[121,138,77,-0.3351813567942218],[121,138,78,-0.33428733632407254],[121,138,79,-0.29788241614206745],[121,139,64,-0.18937807113431973],[121,139,65,-0.18920800331048748],[121,139,66,-0.17001736038683576],[121,139,67,-0.11283510193706092],[121,139,68,-0.08710048305048147],[121,139,69,-0.09183881131587003],[121,139,70,-0.07257316865578434],[121,139,71,-0.0626166228595966],[121,139,72,-0.12228419049729983],[121,139,73,-0.1983897752194736],[121,139,74,-0.2082060222084542],[121,139,75,-0.2617263560285216],[121,139,76,-0.3144896742844262],[121,139,77,-0.33524988122661653],[121,139,78,-0.3341700067199903],[121,139,79,-0.29783230208007583],[121,140,64,-0.1893935850407712],[121,140,65,-0.18905932822788882],[121,140,66,-0.16915974263079162],[121,140,67,-0.11183005062236644],[121,140,68,-0.08598652327454236],[121,140,69,-0.09079874734847374],[121,140,70,-0.0721760886451658],[121,140,71,-0.06320489177020862],[121,140,72,-0.12295315636423332],[121,140,73,-0.19821419218405573],[121,140,74,-0.20737556710418367],[121,140,75,-0.26090983568789533],[121,140,76,-0.31419981062683106],[121,140,77,-0.3352271962954111],[121,140,78,-0.33396161031064686],[121,140,79,-0.29769975293458284],[121,141,64,-0.18937480389741204],[121,141,65,-0.1888691393910343],[121,141,66,-0.1682558818271258],[121,141,67,-0.1107888357044128],[121,141,68,-0.08484141714374248],[121,141,69,-0.08972699608687824],[121,141,70,-0.07175607068699695],[121,141,71,-0.06377341255006187],[121,141,72,-0.12358113582819405],[121,141,73,-0.19797802025059547],[121,141,74,-0.20648705701782008],[121,141,75,-0.2600199917269583],[121,141,76,-0.3138252716820781],[121,141,77,-0.33511291633164475],[121,141,78,-0.33366205639996543],[121,141,79,-0.29748479723064397],[121,142,64,-0.1893214535919279],[121,142,65,-0.1886373823483048],[121,142,66,-0.16730640927331963],[121,142,67,-0.10971223703243742],[121,142,68,-0.08366606338665122],[121,142,69,-0.08862446169931361],[121,142,70,-0.07131340767954913],[121,142,71,-0.06432136844119898],[121,142,72,-0.12416717742319393],[121,142,73,-0.1976812019288641],[121,142,74,-0.20554110426744565],[121,142,75,-0.25905735911318567],[121,142,76,-0.3133660306738651],[121,142,77,-0.33490675090514227],[121,142,78,-0.33327134813167],[121,142,79,-0.29718754885123566],[121,143,64,-0.18923328869030176],[121,143,65,-0.18836404495471795],[121,143,66,-0.1663120163205486],[121,143,67,-0.10860108937899042],[121,143,68,-0.08246141282142569],[121,143,69,-0.08749210051799677],[121,143,70,-0.07084842991620974],[121,143,71,-0.06484797254219052],[121,143,72,-0.12471038593619511],[121,143,73,-0.19732375422705567],[121,143,74,-0.20453838520134562],[121,143,75,-0.25802255538594293],[121,143,76,-0.31282215050289186],[121,143,77,-0.33460850569874495],[121,143,78,-0.3327895825038653],[121,143,79,-0.29680820659937257],[121,144,64,-0.18911009317066682],[121,144,65,-0.18804915754507498],[121,144,66,-0.16527345271510305],[121,144,67,-0.10745628038781521],[121,144,68,-0.08122846599704471],[121,144,69,-0.08633091854698166],[121,144,70,-0.0703615039852073],[121,144,71,-0.06535246950563188],[121,144,72,-0.12520992452168822],[121,144,73,-0.19690576881985788],[121,144,74,-0.2034796390494867],[121,144,75,-0.25691627966442354],[121,144,76,-0.31219378396964514],[121,144,77,-0.3342180832294996],[121,144,78,-0.3322169502360813],[121,144,79,-0.29634705362556846],[121,145,64,-0.188951681131936],[121,145,65,-0.18769279304435538],[121,145,66,-0.1641915248244867],[121,145,67,-0.10627874840423689],[121,145,68,-0.07996827071753668],[121,145,69,-0.0851419688551347],[121,145,70,-0.06985303159123736],[121,145,71,-0.06583413717519201],[121,145,72,-0.125665016699051],[121,145,73,-0.19642741207117753],[121,145,74,-0.20236566666325995],[121,145,75,-0.25573931151086426],[121,145,76,-0.3114811738516544],[121,145,77,-0.33373548341388276],[121,145,78,-0.3315537354889984],[121,145,79,-0.29580445672284256],[121,146,64,-0.18875789747468388],[121,146,65,-0.18729506701460386],[121,146,66,-0.1630670937530766],[121,146,67,-0.10506948019417153],[121,146,68,-0.07868191945630575],[121,146,69,-0.08392634886207608],[121,146,70,-0.06932344830277595],[121,146,71,-0.06629228815709975],[121,146,72,-0.1260749482261227],[121,146,73,-0.19588892491072896],[121,146,74,-0.20119732914625943],[121,146,75,-0.254492509651261],[121,146,76,-0.31068465283387453],[121,146,77,-0.33316080397447834],[121,146,78,-0.3308003154373872],[121,146,79,-0.29518086549174877],[121,147,64,-0.1885286185517849],[121,147,65,-0.18685613763768413],[121,147,66,-0.16190107335248977],[121,147,67,-0.1038295085581565],[121,147,68,-0.0773705466679542],[121,147,69,-0.08268519752520453],[121,147,70,-0.06877322222906138],[121,147,71,-0.066726271321155],[121,147,72,-0.12643906884281184],[121,147,73,-0.1952906225640897],[121,147,74,-0.19997554637909037],[121,147,75,-0.25317681055613517],[121,147,76,-0.3098046432911935],[121,147,77,-0.33249424068588207],[121,147,78,-0.32995715969708667],[121,147,79,-0.29447681137816417],[121,148,64,-0.18826375278631968],[121,148,65,-0.1863762056334183],[121,148,66,-0.16069442813218426],[121,148,67,-0.10255990984722446],[121,148,68,-0.07603532600543217],[121,148,69,-0.08141969243634425],[121,148,70,-0.06820285263099879],[121,148,71,-0.06713547322653136],[121,148,72,-0.1267567938788945],[121,148,73,-0.19463289413623902],[121,148,74,-0.19870129544150889],[121,148,75,-0.2517932268842786],[121,148,76,-0.30884165692238824],[121,148,77,-0.3317360874579579],[121,148,78,-0.3290248296071742],[121,148,79,-0.29369290658684793],[121,149,64,-0.18796324125431568],[121,149,65,-0.18585551411279938],[121,149,66,-0.15944817107610457],[121,149,67,-0.10126180138774689],[121,149,68,-0.0746774674506522],[121,149,69,-0.08013104683683427],[121,149,70,-0.06761286847044522],[121,149,71,-0.06751931946787962],[121,149,72,-0.1270276057205837],[121,149,73,-0.19391620204901452],[121,149,74,-0.19737560893544362],[121,149,75,-0.25034284579275423],[121,149,76,-0.3077962942352045],[121,149,77,-0.3308867362549513],[121,149,78,-0.32800397736877124],[121,149,79,-0.2928298428740069],[121,150,64,-0.18762705822991538],[121,150,65,-0.1852943483660837],[121,150,66,-0.15816336137143422],[121,150,67,-0.09993633882264204],[121,150,68,-0.07329821436696901],[121,150,69,-0.07882050656012789],[121,150,70,-0.0670038269025042],[121,150,71,-0.06787727593746078],[121,150,72,-0.12725105513085644],[121,150,73,-0.1931410813333197],[121,150,74,-0.19599957321268524],[121,150,75,-0.24882682711674978],[121,150,76,-0.3066692438825816],[121,150,77,-0.3299466768493459],[121,150,78,-0.32689534504223866],[121,150,79,-0.2918883902223609],[121,151,64,-0.18725521169064546],[121,151,65,-0.18469303558576047],[121,151,66,-0.15684110205581278],[121,151,67,-0.09858471337665699],[121,151,68,-0.07189884048224011],[121,151,69,-0.07748934691124994],[121,151,70,-0.06637631171566448],[121,151,71,-0.06820884999930193],[121,151,72,-0.12742676241897047],[121,151,73,-0.1923081387773377],[121,151,74,-0.1945743265112853],[121,151,75,-0.24724640142323578],[121,151,76,-0.30546128185039384],[121,151,77,-0.3289164964097179],[121,151,78,-0.3256997634047815],[121,151,79,-0.29086939540237505],[121,152,64,-0.1868477437805049],[121,152,65,-0.184051944524521],[121,152,66,-0.15548253758956246],[121,152,67,-0.09720814905362171],[121,152,68,-0.07048064681135581],[121,152,69,-0.0761388694926089],[121,152,70,-0.06573093172473565],[121,152,71,-0.06851359157162852],[121,152,72,-0.1275544184550594],[121,152,73,-0.1914180519324057],[121,152,74,-0.19310105700491623],[121,152,75,-0.24560286794267702],[121,152,76,-0.30417327049743365],[121,152,77,-0.32779687892225645],[121,152,78,-0.3244181506708007],[121,152,79,-0.2897737804235698],[121,153,64,-0.18640473122869183],[121,153,65,-0.18337148508852935],[121,153,66,-0.15408885135970207],[121,153,67,-0.09580789977380999],[121,153,68,-0.06904495852734889],[121,153,69,-0.07477039898584628],[121,153,70,-0.06506831912168452],[121,153,71,-0.0687910941141144],[121,153,72,-0.12763378552617657],[121,153,73,-0.19047156797861786],[121,153,74,-0.19158100076967569],[121,153,75,-0.24389759238337386],[121,153,76,-0.30280615744873435],[121,153,77,-0.32658860444601245],[121,153,78,-0.32305151107759067],[121,153,79,-0.2886025408799906],[121,154,64,-0.1859262857218609],[121,154,65,-0.18265210786644284],[121,154,66,-0.15266126312269215],[121,154,67,-0.0943852464597028],[121,154,68,-0.06759312179034063],[121,154,69,-0.07338527989951545],[121,154,70,-0.0643891277895737],[121,154,71,-0.06904099551678065],[121,154,72,-0.1276646980306397],[121,154,73,-0.18946950245261382],[121,154,74,-0.19001543967299764],[121,154,75,-0.2421320046332862],[121,154,76,-0.3013609743436599],[121,154,77,-0.32529254820231956],[121,154,78,-0.32160093333923984],[121,154,79,-0.28735674419406476],[121,155,64,-0.18541255422791186],[121,155,65,-0.18189430359479178],[121,155,66,-0.1512010263929956],[121,155,67,-0.09294149407857495],[121,155,68,-0.06612650054367489],[121,155,69,-0.07198487329243915],[121,155,70,-0.06369403158488236],[121,155,71,-0.06926297888768691],[121,155,72,-0.12764706300804843],[121,155,73,-0.1884127378404113],[121,155,74,-0.18840569918953867],[121,155,75,-0.24030759635448692],[121,155,76,-0.29983883544057943],[121,155,77,-0.32390967949927085],[121,155,78,-0.32006758897189286],[121,155,79,-0.2860375277632888],[121,156,64,-0.18486371926942333],[121,156,65,-0.18109860256049654],[121,156,66,-0.1497094257846911],[121,156,67,-0.09147796865046816],[121,156,68,-0.06464647328671169],[121,156,69,-0.07057055348267362],[121,156,70,-0.0629837225935736],[121,156,71,-0.06945677323688212],[121,156,72,-0.1275808605028596],[121,156,73,-0.1873022220385244],[121,156,74,-0.18675314614907193],[121,156,75,-0.23842591847565806],[121,156,76,-0.29824093608027724],[121,156,77,-0.3224410604925097],[121,156,78,-0.31845273049373646],[121,156,79,-0.28464609701426224],[121,157,64,-0.18427999914495055],[121,157,65,-0.18026557394143614],[121,157,66,-0.1481877743134333],[121,157,67,-0.08999601423013745],[121,157,68,-0.06315442983374026],[121,157,69,-0.06914370475194812],[121,157,70,-0.06225890936627896],[121,157,71,-0.06962215405439692],[121,157,72,-0.1274661437599295],[121,157,73,-0.1861389666869771],[121,157,74,-0.185059186421571],[121,157,75,-0.2364885785882802],[121,157,76,-0.29656855101061136],[121,157,77,-0.3208878447840135],[121,157,78,-0.3167576895033526],[121,157,79,-0.2831837233687587],[121,158,64,-0.1836616480965583],[121,158,65,-0.17939582508616794],[121,158,66,-0.14663741066615857],[121,158,67,-0.08849698987163855],[121,158,68,-0.061651768068517285],[121,158,69,-0.06770571805545272],[121,158,70,-0.06152031513802033],[121,158,71,-0.06975894378042152],[121,158,72,-0.12730303925098707],[121,158,73,-0.1849240453782039],[121,158,74,-0.1833252625448277],[121,158,75,-0.23449723825242316],[121,158,76,-0.2948230325752931],[121,158,77,-0.3192512758609638],[121,158,78,-0.3149838746403054],[121,158,79,-0.28165174212661986],[121,159,64,-0.18300895642208836],[121,159,65,-0.1784900007340453],[121,159,66,-0.14505969644596703],[121,159,67,-0.08698226658421794],[121,159,68,-0.06013989070389227],[121,159,69,-0.06625798774675021],[121,159,70,-0.06076867603787714],[121,159,71,-0.06986701216615118],[121,159,72,-0.1270917465315412],[121,159,73,-0.18365859174617566],[121,159,74,-0.18155285130006302],[121,159,75,-0.23245361021825736],[121,159,76,-0.2930058087700003],[121,159,77,-0.31753268537718515],[121,159,78,-0.31313276943204266],[121,159,79,-0.28005155027034245],[121,160,64,-0.1823222505307941],[121,160,65,-0.1775487821771093],[121,160,66,-0.14345601339959305],[121,160,67,-0.08545322428810545],[121,160,68,-0.05862020205587044],[121,160,69,-0.06480190832743023],[121,160,70,-0.06000473929395011],[121,160,71,-0.06994627652412093],[121,160,72,-0.12683253792825985],[121,160,73,-0.1823437974404143],[121,160,74,-0.1797434612410842],[121,160,75,-0.23035945556958182],[121,160,76,-0.29111838116936406],[121,160,77,-0.31573349128003686],[121,160,78,-0.3112059300314096],[121,160,79,-0.2783846041963174],[121,161,64,-0.18160189294117443],[121,161,65,-0.17657288636533858],[121,161,66,-0.1418277606349294],[121,161,67,-0.08391124877881329],[121,161,68,-0.057094104841428905],[121,161,69,-0.06333887123103578],[121,161,70,-0.05922926143898444],[121,161,71,-0.06999670186725286],[121,161,72,-0.12652575805745403],[121,161,73,-0.18098090998992722],[121,161,74,-0.17789863018267763],[121,161,75,-0.22821658079590093],[121,161,76,-0.28916232272874076],[121,161,77,-0.3138551957860569],[121,161,78,-0.309204982849284],[121,161,79,-0.2766524173777471],[121,162,64,-0.18084828221995938],[121,162,65,-0.1755630649569375],[121,162,66,-0.14017635183595986],[121,162,67,-0.0823577287083851],[121,162,68,-0.05556299700918482],[121,162,69,-0.06187026165052254],[121,162,70,-0.05844300652189253],[121,162,71,-0.07001830093616952],[121,162,72,-0.1261718231758193],[121,162,73,-0.17957123056237065],[121,162,74,-0.17601992265396282],[121,162,75,-0.22602683479969876],[121,162,76,-0.2871392754649749],[121,162,77,-0.31189938320903177],[121,162,78,-0.3071316220870223],[121,162,79,-0.2748565579643152],[121,163,64,-0.18006185286139523],[121,163,65,-0.17452010331551382],[121,163,66,-0.13850321248242314],[121,163,67,-0.08079405259194078],[121,163,68,-0.05402826861186328],[121,163,69,-0.060397455418307364],[121,163,70,-0.05764674433034384],[121,163,71,-0.07001113411470511],[121,163,72,-0.12577122036515148],[121,163,73,-0.1781161116240533],[121,163,74,-0.17410892732250244],[121,163,75,-0.2237921058457204],[121,163,76,-0.2850509480206826],[121,163,77,-0.3098677176445433],[121,163,78,-0.30498760717357],[121,163,79,-0.2729986463236997],[121,164,64,-0.17924307510616735],[121,164,65,-0.17344481945615517],[121,164,66,-0.13680977708144526],[121,164,67,-0.07922160584772056],[121,164,68,-0.05249129872931783],[121,164,69,-0.05892181594771425],[121,164,70,-0.056841248629504994],[121,164,71,-0.0699753092339427],[121,164,72,-0.12532450655332675],[121,164,73,-0.17661695450669584],[121,164,74,-0.1721672543950309],[121,164,75,-0.22151431845921585],[121,164,76,-0.28289911311691457],[121,164,77,-0.30776194051544303],[121,164,78,-0.3027747601122813],[121,164,79,-0.27108035253006724],[121,165,64,-0.17839245469946607],[121,165,65,-0.17233806294252405],[121,165,66,-0.13509748641822142],[121,165,67,-0.07764176787859545],[121,165,68,-0.05095345245055615],[121,165,69,-0.0574446912442687],[121,165,70,-0.05602729542184341],[121,165,71,-0.06991098126545098],[121,165,72,-0.1248323073743629],[121,165,73,-0.17507520688710074],[121,165,74,-0.170196533000659],[121,165,75,-0.21919543028018418],[121,165,76,-0.2806856048993407],[121,165,77,-0.3055838679830598],[121,165,78,-0.3004949627426371],[121,165,79,-0.2691033938046896],[121,166,64,-0.17751053258790156],[121,166,65,-0.1712007137372445],[121,166,66,-0.1333677848327112],[121,166,67,-0.07605590920283173],[121,166,68,-0.0494160779229855],[121,166,69,-0.05596741099500248],[121,166,70,-0.055205661232789006],[121,166,71,-0.06981835190477426],[121,166,72,-0.12429531587091816],[121,166,73,-0.17349236018612646],[121,166,74,-0.16819840856242474],[121,166,75,-0.21683742888074373],[121,166,76,-0.27841231618337037],[121,166,77,-0.30333538822928013],[121,166,78,-0.29815015392215566],[121,166,79,-0.2670695319137765],[121,167,64,-0.17659788455518557],[121,167,65,-0.17003368100798832],[121,167,66,-0.131622117529132],[121,167,67,-0.07446538864162772],[121,167,68,-0.047880503476756736],[121,167,69,-0.05449128374353784],[121,167,70,-0.054377121426879116],[121,167,71,-0.06969766904662335],[121,167,72,-0.12371429104314474],[121,167,73,-0.1718699468936172],[121,167,74,-0.16617454016307626],[121,167,75,-0.21444232855284376],[121,167,76,-0.2760811956039424],[121,167,77,-0.3010184586150345],[121,167,78,-0.29574232663398337],[121,167,79,-0.26498057052867036],[121,168,64,-0.17565512079667853],[121,168,65,-0.16883790189177653],[121,168,66,-0.12986192792482676],[121,168,67,-0.072871550570656],[121,168,68,-0.046348034831737134],[121,168,69,-0.05301759415832135],[121,168,70,-0.05354244855881685],[121,168,71,-0.06954922615355057],[121,168,72,-0.12309005624830083],[121,168,73,-0.17020953782609702],[121,168,74,-0.1641265979109082],[121,168,75,-0.21201216707354453],[121,168,76,-0.273694244675919],[121,168,77,-0.2986351027210005],[121,168,78,-0.29327352502569753],[121,168,79,-0.2628383525534458],[121,169,64,-0.17468288543314256],[121,169,65,-0.16761434022016347],[121,169,66,-0.12808865504489755],[121,169,67,-0.07127572224257034],[121,169,68,-0.04481995239429953],[121,169,69,-0.051547600400977604],[121,169,70,-0.05270241076370452],[121,169,71,-0.06937336152029289],[121,169,72,-0.12242349745606933],[121,169,73,-0.16851273932426852],[121,169,74,-0.16205626031147005],[121,169,75,-0.20954900245515706],[121,169,76,-0.27125351477132964],[121,169,77,-0.2961874072766983],[121,169,78,-0.2907458413850044],[121,169,79,-0.26064475742496296],[121,170,64,-0.1736818559642017],[121,170,65,-0.16636398520803575],[121,170,66,-0.12630373096869443],[121,170,67,-0.06967921118704157],[121,170,68,-0.04329750865064921],[121,170,69,-0.05008253160124073],[121,170,70,-0.05185777019044823],[121,170,71,-0.06917045743628349],[121,170,72,-0.1217155613649838],[121,170,73,-0.1667811903974602],[121,170,74,-0.15996521165085284],[121,170,75,-0.20705490968748197],[121,170,76,-0.26876110401986647],[121,170,77,-0.29367751898440664],[121,170,78,-0.2881614130580606],[121,170,79,-0.2584016983903334],[121,171,64,-0.17265274266229155],[121,171,65,-0.16508785010893143],[121,171,66,-0.12450857833406882],[121,171,67,-0.06808330269461658],[121,171,68,-0.04178192566307518],[121,171,69,-0.048623585444532935],[121,171,70,-0.05100928148217727],[121,171,71,-0.06894093924923972],[121,171,72,-0.12096725338589598],[121,171,73,-0.16501655982236907],[121,171,74,-0.1578551393962452],[121,171,75,-0.20453197747944257],[121,171,76,-0.26621915413933306],[121,171,77,-0.2911076412446705],[121,171,78,-0.28552241931626093],[121,171,79,-0.2561111197667221],[121,172,64,-0.17159628790803955],[121,172,65,-0.16378697083983104],[121,172,66,-0.12270460790494635],[121,172,67,-0.06648925739023974],[121,172,68,-0.040274392674981466],[121,172,69,-0.04717192587768164],[121,172,70,-0.050157690307218],[121,172,71,-0.0686852743330345],[121,172,72,-0.12017963549883368],[121,172,73,-0.1632205432035091],[121,172,74,-0.15572773161930267],[121,172,75,-0.20198230500730666],[121,172,76,-0.26362984720287064],[121,172,77,-0.2884800307903966],[121,172,78,-0.28283107817736486],[121,172,79,-0.2537749941883139],[121,173,64,-0.17051326546825568],[121,173,65,-0.1624624045784848],[121,173,66,-0.12089321620750144],[121,173,67,-0.06489830890190393],[121,173,68,-0.03877606383011275],[121,173,69,-0.0457286809377784],[121,173,70,-0.049303731943932],[121,173,71,-0.06840397096340252],[121,173,72,-0.11935382399004613],[121,173,73,-0.161394860002883],[121,173,74,-0.15358467444777907],[121,173,75,-0.19940799867665346],[121,173,76,-0.26099540235000185],[121,173,77,-0.2857969942367911],[121,173,78,-0.2800896431868812],[121,173,79,-0.25139531984518354],[121,174,64,-0.1694044797179555],[121,174,65,-0.16111522833645484],[121,174,66,-0.11907578323991996],[121,174,67,-0.06331166162950554],[121,174,68,-0.03728805601092475],[121,174,69,-0.04429494070867584],[121,174,70,-0.048448129922495184],[121,174,71,-0.06809757710538719],[121,174,72,-0.11849098707648448],[121,174,73,-0.15954125054648613],[121,174,74,-0.15142764955076773],[121,174,75,-0.19681116890519043],[121,174,76,-0.25831807244870214],[121,174,77,-0.2830608845546542],[121,174,78,-0.27730040016568386],[121,174,79,-0.24897411771873273],[121,175,64,-0.16827076480801664],[121,175,65,-0.15974653751109216],[121,175,66,-0.1172536702603596],[121,175,67,-0.06173048861848803],[121,175,68,-0.03581144680048723],[121,175,69,-0.04287175540901323],[121,175,70,-0.04759159472637986],[121,175,71,-0.06776667911671239],[121,175,72,-0.1175923424253258],[121,175,73,-0.15766147301527209],[121,175,74,-0.1492583316627272],[121,175,75,-0.1941939269333916],[121,175,76,-0.25560014071583304],[121,175,77,-0.2802740974747331],[121,175,78,-0.2744656639298475],[121,175,79,-0.24651342881826113],[121,176,64,-0.1671129837803049],[121,176,65,-0.15835744441975372],[121,176,66,-0.11542821765739021],[121,176,67,-0.06015592954244119],[121,176,68,-0.03434727257181959],[121,176,69,-0.04146013361513528],[121,176,70,-0.04673482255604551],[121,176,71,-0.06741190037156566],[121,176,72,-0.11665915457651674],[121,176,73,-0.15575730042822025],[121,176,74,-0.14707838615130822],[121,176,75,-0.19155838166980854],[121,176,76,-0.25284391730338307],[121,176,77,-0.27743906783101036],[121,176,78,-0.271587774988651],[121,176,79,-0.2440153114230701],[121,177,64,-0.16593202763234036],[121,177,65,-0.1569490768196542],[121,177,66,-0.11360074290684072],[121,177,67,-0.058589088798343465],[121,177,68,-0.03289652670800836],[121,177,69,-0.04006104062168289],[121,177,70,-0.04587849415706769],[121,177,71,-0.06703389980960345],[121,177,72,-0.11569273227670619],[121,177,73,-0.15383051762518973],[121,177,74,-0.1448894666338629],[121,177,75,-0.1889066365778121],[121,177,76,-0.25005173585811363],[121,177,77,-0.27455826585103815],[121,177,78,-0.2686690962267767],[121,177,79,-0.24148183833447937],[121,178,64,-0.16472881433374914],[121,178,65,-0.15552257641677072],[121,178,66,-0.11177253861859653],[121,178,67,-0.05703103371766563],[121,178,68,-0.03146015795591773],[121,178,69,-0.03867539694206262],[121,178,70,-0.04502327371463274],[121,178,71,-0.06663337041520888],[121,178,72,-0.1146944257331924],[121,178,73,-0.15188291825717828],[121,178,74,-0.14269321264730853],[121,178,75,-0.1862407866103223],[121,178,76,-0.24722595006223813],[121,178,77,-0.27163419340150746],[121,178,78,-0.26571200957664076],[121,178,79,-0.23891509414194043],[121,179,64,-0.16350428779699008],[121,179,65,-0.15407909736728137],[121,179,66,-0.10994487067648694],[121,179,67,-0.055482792896027214],[121,179,68,-0.030039068915708428],[121,179,69,-0.03730407695037505],[121,179,70,-0.044169807816016024],[121,179,71,-0.06621103763231893],[121,179,72,-0.11366562379683523],[121,179,73,-0.1499163017915505],[121,179,74,-0.14049124737579877],[121,179,75,-0.1835629151989162],[121,179,76,-0.24436893016284414],[121,179,77,-0.26866938019739994],[121,179,78,-0.2627189126867683],[121,179,79,-0.23631717250730483],[121,180,64,-0.16225941680503403],[121,180,65,-0.15261980477506776],[121,180,66,-0.10811897647404416],[121,180,67,-0.05394535464364187],[121,180,68,-0.028634114667858146],[121,180,69,-0.035947907665838365],[121,180,70,-0.04331872448240039],[121,180,71,-0.06576765772037453],[121,180,72,-0.1126077510831413],[121,180,73,-0.14793247053976843],[121,180,74,-0.138285175440501],[121,180,75,-0.18087509130353768],[121,180,76,-0.24148305949782675],[121,180,77,-0.2656663799831881],[121,180,78,-0.2596922155921236],[121,180,79,-0.233690173471235],[121,181,64,-0.16099519389889314],[121,181,65,-0.15114587318884173],[121,181,66,-0.10629606324849994],[121,181,67,-0.0524196655582663],[121,181,68,-0.027246101538791555],[121,181,69,-0.034607667680131696],[121,181,70,-0.042470632271072416],[121,181,71,-0.06530401605716403],[121,181,72,-0.11152226504095561],[121,181,73,-0.1459332267150292],[121,181,74,-0.13607658075552018],[121,181,75,-0.17817936652880922],[121,181,76,-0.23857073102610113],[121,181,77,-0.2626277666946058],[121,181,78,-0.25663433739220465],[121,181,79,-0.23103620078554585],[121,182,64,-0.159712634228052],[121,182,65,-0.14965848510245025],[121,182,66,-0.10447730651494504],[121,182,67,-0.050906629221819724],[121,182,68,-0.025875786005615],[121,182,69,-0.03328408622745343],[121,182,70,-0.041626119448709635],[121,182,71,-0.06482092539450787],[121,182,72,-0.11041065297836412],[121,182,73,-0.1439203695270799],[121,182,74,-0.13386702445375942],[121,182,75,-0.17547777231269168],[121,182,76,-0.23563434386984222],[121,182,77,-0.25955613060955035],[121,182,78,-0.25354770294263357],[121,182,79,-0.22835735927513467],[121,183,64,-0.15841277436710843],[121,183,65,-0.1481588294619849],[121,183,66,-0.1026638486022281],[121,183,67,-0.049407105021391624],[121,183,68,-0.024523873739942508],[121,183,69,-0.03197784239656742],[121,183,70,-0.040785753236230175],[121,183,71,-0.06431922407296978],[121,183,72,-0.10927442905563545],[121,183,73,-0.1418956923213976],[121,183,74,-0.1316580428863272],[121,183,75,-0.17277231719306202],[121,183,76,-0.23267629987653474],[121,183,77,-0.25645407449677404],[121,183,78,-0.25043473956594997],[121,183,79,-0.2256557522330648],[121,184,64,-0.1570966711020605],[121,184,65,-0.14664810018328808],[121,184,66,-0.10085679729171061],[121,184,67,-0.04792190709479541],[121,184,68,-0.023191018790182958],[121,184,69,-0.030689564483480328],[121,184,70,-0.03995007912533777],[121,184,71,-0.06379977420189671],[121,184,72,-0.10811513125511317],[121,184,73,-0.13986097976970469],[121,184,74,-0.12945114569879432],[121,184,75,-0.17006498415747082],[121,184,76,-0.2296990002085136],[121,184,77,-0.2533242097709553],[121,184,78,-0.24729787378714665],[121,184,79,-0.2229334788521514],[121,185,64,-0.15576540018986595],[121,185,65,-0.1451274946834392],[121,185,66,-0.0990572245595677],[121,185,67,-0.04645180340029691],[121,185,68,-0.02187782290106813],[121,185,69,-0.029419829482800888],[121,185,70,-0.03911962026658815],[121,185,71,-0.0632634598112313],[121,185,72,-0.10693431833807458],[121,185,73,-0.1378180051186146],[121,185,74,-0.12724781398735013],[121,185,75,-0.1673577280810751],[121,185,76,-0.2267048419676228],[121,185,77,-0.25016915266275797],[121,185,78,-0.24413952809941708],[121,185,79,-0.2201926316962932],[121,186,64,-0.15442005509509815],[121,186,65,-0.14359821242984752],[121,186,66,-0.09726616542296918],[121,186,67,-0.044997514909700734],[121,186,68,-0.020584834968712128],[121,186,69,-0.028169162715335684],[121,186,70,-0.03829487692857671],[121,186,71,-0.06271118498170963],[121,186,72,-0.10573356679868053],[121,186,73,-0.13576852750303695],[121,186,74,-0.12504949853767952],[121,186,75,-0.16465247325750468],[121,186,76,-0.22369621486256175],[121,186,77,-0.2469915204124547],[121,186,78,-0.24096211776546797],[121,186,79,-0.217435294214638],[121,187,64,-0.15306174570765077],[121,187,65,-0.1420614535105093],[121,187,66,-0.09548461688999892],[121,187,67,-0.043559714923402854],[121,187,68,-0.019312550628860177],[121,187,69,-0.026938037588850165],[121,187,70,-0.03747632602750131],[121,187,71,-0.0621438719601136],[121,187,72,-0.10451446782513688],[121,187,73,-0.13371428933071247],[121,187,74,-0.122857618149069],[121,187,75,-0.16195111102708507],[121,187,76,-0.22067549792635066],[121,187,77,-0.2437939274956069],[121,187,78,-0.23776804765960963],[121,187,79,-0.21466353830152052],[121,188,64,-0.15169159704559135],[121,188,65,-0.1405184172289677],[121,188,66,-0.09371353701276974],[121,188,67,-0.04213902850553058],[121,188,68,-0.01806141197545703],[121,188,69,-0.02572687548839861],[121,188,70,-0.036664420726086215],[121,188,71,-0.06156245926632509],[121,188,72,-0.10327862427818311],[121,188,73,-0.131657013743991],[121,188,74,-0.1206735580459592],[121,188,75,-0.1592554975065229],[121,188,76,-0.21764505629119307],[121,188,77,-0.2405789818891723],[121,188,78,-0.2345597091556569],[121,188,79,-0.2118794219049141],[121,189,64,-0.1503107479474583],[121,189,65,-0.13897030072752883],[121,189,66,-0.09195384404283297],[121,189,67,-0.04073603203684623],[121,189,68,-0.016831807406174758],[121,189,69,-0.02453604579214983],[121,189,70,-0.03585959010063073],[121,189,71,-0.06096789979904183],[121,189,72,-0.10202764769705067],[121,189,73,-0.12959840216477672],[121,189,74,-0.11849866837893896],[121,189,75,-0.15656745142391598],[121,189,76,-0.21460723802794085],[121,189,77,-0.23734928138637185],[121,189,78,-0.23133947706559863],[121,189,79,-0.20908498668606484],[121,190,64,-0.1489203497583716],[121,190,65,-0.13741829764218824],[121,190,66,-0.09020641568751184],[121,190,67,-0.03935125288253628],[121,190,68,-0.015624071590948693],[121,190,69,-0.023365866008056443],[121,190,70,-0.03506223887462378],[121,190,71,-0.06036115894699756],[121,190,72,-0.10076315534291345],[121,190,73,-0.12754013192821578],[121,190,74,-0.11633426281681944],[121,190,75,-0.15388875206254962],[121,190,76,-0.21156437105711146],[121,190,77,-0.2341074099684272],[121,190,78,-0.22810970663374974],[121,190,79,-0.20628225573275125],[121,191,64,-0.14752156501447403],[121,191,65,-0.13586359679270027],[121,191,66,-0.0884720884654275],[121,191,67,-0.037985169171572276],[121,191,68,-0.01443848555909699],[121,191,69,-0.022216602026263164],[121,191,70,-0.034272747217134795],[121,191,71,-0.059743212712559154],[121,191,72,-0.09948676728977575],[121,191,73,-0.1254838540104361],[121,191,74,-0.11418161723115167],[121,191,75,-0.15122113731663833],[121,191,76,-0.20851876013825232],[121,191,77,-0.23085593424113873],[121,191,78,-0.22487273059093804],[121,191,79,-0.2034732313284615],[121,192,64,-0.1461155661303545],[121,192,65,-0.13430738091118175],[121,192,66,-0.08675165715910636],[121,192,67,-0.03663820968387406],[121,192,68,-0.013275276900115195],[121,192,69,-0.021088468481685895],[121,192,70,-0.033491470603968405],[121,192,71,-0.059115045854604635],[121,192,72,-0.098200103572652],[121,192,73,-0.1234311908553729],[121,192,74,-0.11204196847429147],[121,192,75,-0.14856630186186104],[121,192,76,-0.20547268394425566],[121,192,77,-0.2275973999441169],[121,192,78,-0.22163085627312373],[121,192,79,-0.20065989277967142],[121,193,64,-0.1447035340941851],[121,193,65,-0.1327508254125669],[121,193,66,-0.08504587436215882],[121,193,67,-0.03531075384103649],[121,193,68,-0.012134620072739761],[121,193,69,-0.019981629220731836],[121,193,70,-0.032718739739324446],[121,193,71,-0.05847765005754293],[121,193,72,-0.09690478140270982],[121,193,73,-0.12138373430534456],[121,193,74,-0.10991651325174837],[121,193,75,-0.14592589544312556],[121,193,76,-0.2024283922269421],[121,193,77,-0.22433432854019866],[121,193,78,-0.21838636280858445],[121,193,79,-0.1978441943031724],[121,194,64,-0.14328665717540548],[121,194,65,-0.13119509721015357],[121,194,66,-0.08335545011815167],[121,194,67,-0.034003131795949826],[121,194,68,-0.011016636816413437],[121,194,69,-0.018896197865675857],[121,194,70,-0.031954860535432714],[121,194,71,-0.057832022133250005],[121,194,72,-0.09560241245886716],[121,194,73,-0.11934304363977702],[121,194,74,-0.10780640708936266],[121,194,75,-0.14330152128177073],[121,194,76,-0.1993881030800835],[121,194,77,-0.22106921389243656],[121,194,78,-0.2151414983776598],[121,194,79,-0.1950280629753248],[121,195,64,-0.14186612964987505],[121,195,65,-0.12964135357943343],[121,195,66,-0.08168105164793964],[121,195,67,-0.032715624616225715],[121,195,68,-0.00992139665886157],[121,195,69,-0.017832238469858874],[121,195,70,-0.031200114147522006],[121,195,71,-0.05717916226273775],[121,195,72,-0.09429460026515517],[121,195,73,-0.11731064372604823],[121,195,74,-0.10571276339540052],[121,195,75,-0.14069473460387277],[121,195,76,-0.1963540003056151],[121,195,77,-0.21780451903565662],[121,195,78,-0.21189847754870889],[121,195,79,-0.19221339674482602],[121,196,64,-0.14044314953769943],[121,196,65,-0.12809074028878437],[121,196,66,-0.08002330339361416],[121,196,67,-0.03144846477778456],[121,196,68,-0.008848918929131996],[121,196,69,-0.01678976827867547],[121,196,70,-0.03045475860233037],[121,196,71,-0.05652007271036846],[121,196,72,-0.09298293765298729],[121,196,73,-0.11528802274507151],[121,196,74,-0.10363665191579305],[121,196,75,-0.13810704022959946],[121,196,76,-0.19332823029649557],[121,196,77,-0.2145426737422013],[121,196,78,-0.20865948119970987],[121,196,79,-0.18940206476190574],[121,197,64,-0.13901879886816154],[121,197,65,-0.12654429921721222],[121,197,66,-0.07838281685067794],[121,197,67,-0.03020186548739689],[121,197,68,-0.007799340761501812],[121,197,69,-0.015768996129176205],[121,197,70,-0.029719208959525095],[121,197,71,-0.055855803325715055],[121,197,72,-0.0916690003486548],[121,197,73,-0.1132765677823151],[121,197,74,-0.10157901804177799],[121,197,75,-0.13553976910356325],[121,197,76,-0.19031283167755628],[121,197,77,-0.2112861535033073],[121,197,78,-0.2054269475672955],[121,197,79,-0.18659616917553407],[121,198,64,-0.13759393769925482],[121,198,65,-0.12500289067674403],[121,198,66,-0.07676023247355566],[121,198,67,-0.0289760632645303],[121,198,68,-0.00677307220057843],[121,198,69,-0.014770534849995166],[121,198,70,-0.028994191914391582],[121,198,71,-0.05518747557656318],[121,198,72,-0.09035432526074716],[121,198,73,-0.11127751180306783],[121,198,74,-0.0995406250187002],[121,198,75,-0.13299398229457063],[121,198,76,-0.18730968166904075],[121,198,77,-0.20803755300629106],[121,198,78,-0.20220382625177333],[121,198,79,-0.18379827322406422],[121,199,64,-0.13616941521036965],[121,199,65,-0.12346736022929304],[121,199,66,-0.07515618162321744],[121,199,67,-0.027771283164457226],[121,199,68,-0.005770503756922975],[121,199,69,-0.013794978099788018],[121,199,70,-0.02828041877082344],[121,199,71,-0.054516180444074795],[121,199,72,-0.08904039958752487],[121,199,73,-0.10929204873677463],[121,199,74,-0.0975222100557847],[121,199,75,-0.13047070218152318],[121,199,76,-0.18432062438651625],[121,199,77,-0.2047994402116101],[121,199,78,-0.1989930467119309],[121,199,79,-0.18101092389747328],[121,200,64,-0.1347460952405943],[121,200,65,-0.12193855827452613],[121,200,66,-0.07357127931511048],[121,200,67,-0.02658773215424453],[121,200,68,-0.004791969366311239],[121,200,69,-0.01284284779907819],[121,200,70,-0.027578545324678842],[121,200,71,-0.0538429670528745],[121,200,72,-0.08772866045609158],[121,200,73,-0.10732134616359836],[121,200,74,-0.09552450109575948],[121,200,75,-0.12797093852171448],[121,200,76,-0.181347483725193],[121,200,77,-0.2015743348112049],[121,200,78,-0.19579744967121887],[121,200,79,-0.1782365908570674],[121,201,64,-0.13332485480889913],[121,201,65,-0.12041733852483838],[121,201,66,-0.0720061226751408],[121,201,67,-0.025425597883981747],[121,201,68,-0.0038377471217680447],[121,201,69,-0.011914595759441255],[121,201,70,-0.026889173271144103],[121,201,71,-0.05316884339177831],[121,201,72,-0.08642049500914936],[121,201,73,-0.10536654348104199],[121,201,74,-0.09354821437450614],[121,201,75,-0.12549568569912295],[121,201,76,-0.1783920601735916],[121,201,77,-0.1983647052571164],[121,201,78,-0.1926197859328426],[121,201,79,-0.17547766590922453],[121,202,64,-0.13190658264681906],[121,202,65,-0.11890455652582158],[121,202,66,-0.07046128950668437],[121,202,67,-0.02428504756146977],[121,202,68,-0.002908060125174272],[121,202,69,-0.011010605439104103],[121,202,70,-0.026212851701026538],[121,202,71,-0.05249477709083094],[121,202,72,-0.0851172405830332],[121,202,73,-0.1034287501916599],[121,202,74,-0.09159405208722653],[121,202,75,-0.12304592008438232],[121,202,76,-0.1754561277541162],[121,202,77,-0.19517296598272368],[121,202,78,-0.18946271542484902],[121,202,79,-0.1727364626576804],[121,203,64,-0.13049204497306607],[121,203,65,-0.1174009469616156],[121,203,66,-0.06893726471901024],[121,203,67,-0.023166202305830306],[121,203,68,-0.0020030752939457536],[121,203,69,-0.01013118275224961],[121,203,70,-0.025550050416134056],[121,203,71,-0.05182163820956263],[121,203,72,-0.08382008995675698],[121,203,73,-0.10150892789659087],[121,203,74,-0.08966259616895583],[121,203,75,-0.12062245607281795],[121,203,76,-0.17254122663690943],[121,203,77,-0.19200124497303198],[121,203,78,-0.1863285812123572],[121,203,79,-0.17001500883441695],[121,204,64,-0.1290810196121275],[121,204,65,-0.11590633532077939],[121,204,66,-0.06743397778110502],[121,204,67,-0.02206898628843422],[121,204,68,-0.0011229011396584774],[121,204,69,-0.009276495424274282],[121,204,70,-0.02490098216770264],[121,204,71,-0.05114982318870152],[121,204,72,-0.08252947723228185],[121,204,73,-0.09960714035863238],[121,204,74,-0.0877536405483418],[121,204,75,-0.11822503590589646],[121,204,76,-0.16964734048389304],[121,204,77,-0.18884989642325337],[121,204,78,-0.1832179541780293],[121,204,79,-0.16731370404565968],[121,205,64,-0.12767289346411156],[121,205,65,-0.11442018981752171],[121,205,66,-0.06595114988566125],[121,205,67,-0.02099326264170672],[121,205,68,-2.6762509358285095E-4],[121,205,69,-0.008446647923575431],[121,205,70,-0.02426574300841885],[121,205,71,-0.05047952003874551],[121,205,72,-0.08124551732242768],[121,205,73,-0.09772310091690388],[121,205,74,-0.08586668671165816],[121,205,75,-0.11585299793738749],[121,205,76,-0.16677384441213935],[121,205,77,-0.18571856426218095],[121,205,78,-0.18013067827129994],[121,205,79,-0.16463227756197626],[121,206,64,-0.12626713957242783],[121,206,65,-0.11294205791167225],[121,206,66,-0.06448855636685721],[121,206,67,-0.01993892502940497],[121,206,68,5.626741888495593E-4],[121,206,69,-0.007641725983716269],[121,206,70,-0.023644416979060986],[121,206,71,-0.04981091899656649],[121,206,72,-0.07996835077698672],[121,206,73,-0.09585659457796876],[121,206,74,-0.08400132098602157],[121,206,75,-0.1135057892780453],[121,206,76,-0.1639202442686604],[121,206,77,-0.18260701370216628],[121,206,78,-0.17706668713117021],[121,206,79,-0.16197053990645305],[121,207,64,-0.12486331578857779],[121,207,65,-0.11147156431412768],[121,207,66,-0.06304602316461896],[121,207,67,-0.018905894051640747],[121,207,68,0.0013679290379326316],[121,207,69,-0.006861795332316022],[121,207,70,-0.023037076031718715],[121,207,71,-0.049144213397023205],[121,207,72,-0.07869814361300129],[121,207,73,-0.09400747475710544],[121,207,74,-0.0821572100359228],[121,207,75,-0.11118296072446218],[121,207,76,-0.16108617221291416],[121,207,77,-0.17951512747405005],[121,207,78,-0.17402600168632887],[121,207,79,-0.15932838133783864],[121,208,64,-0.12346106092067863],[121,208,65,-0.11000840673842467],[121,208,66,-0.06162342206825085],[121,208,67,-0.017894113354783414],[121,208,68,0.002148084867821946],[121,208,69,-0.006106900339067557],[121,208,70,-0.02244377946029083],[121,208,71,-0.04847959937421403],[121,208,72,-0.07743508529527698],[121,208,73,-0.09217565790459838],[121,208,74,-0.08033409455062888],[121,208,75,-0.10888415917525518],[121,208,76,-0.1582713785036142],[121,208,77,-0.1764428977374053],[121,208,78,-0.17100872349028273],[121,208,79,-0.15670576639084047],[121,209,64,-0.12206009094666936],[121,209,65,-0.10855235175972805],[121,209,66,-0.06022066615782511],[121,209,67,-0.016903545939402714],[121,209,68,0.0029031021018525345],[121,209,69,-0.005377062816992918],[121,209,70,-0.021864573400523866],[121,209,71,-0.047817275531913964],[121,209,72,-0.07617938673197468],[121,209,73,-0.09036111829842618],[121,209,74,-0.07853178315956169],[121,209,75,-0.10660912030223793],[121,209,76,-0.15547572348601307],[121,209,77,-0.1733904181638266],[121,209,78,-0.16801502820586525],[121,209,79,-0.15410272853450344],[121,210,64,-0.12066019528647368],[121,210,65,-0.10710323077575032],[121,210,66,-0.05883770543888649],[121,210,67,-0.0159341706623913],[121,210,68,0.0036329579248499063],[121,210,69,-0.00467228097842759],[121,210,70,-0.021299490402308198],[121,210,71,-0.04715744258924197],[121,210,72,-0.07493127829085931],[121,210,73,-0.08856388300057198],[121,210,74,-0.07675014656792375],[121,210,75,-0.10435766146721528],[121,210,76,-0.1526991697736317],[121,210,77,-0.17035787619308262],[121,210,78,-0.16504515924343025],[121,210,79,-0.15151936495090618],[121,211,64,-0.11926123312863779],[121,211,65,-0.10566093606526265],[121,211,66,-0.05747452266684622],[121,211,67,-0.0149859789299884],[121,211,68,0.004337647862637805],[121,211,69,-0.003992528546457865],[121,211,70,-0.020748549076259018],[121,211,71,-0.046500303007043595],[121,211,72,-0.07369100784151032],[121,211,73,-0.08678402697510612],[121,211,74,-0.07498911190632679],[121,211,75,-0.10212967487686378],[121,211,76,-0.14994177462027347],[121,211,77,-0.16734554546324165],[121,211,78,-0.1620994215573762],[121,211,79,-0.1489558314367289],[121,212,64,-0.1178631298080295],[121,212,65,-0.10422541694078603],[121,212,66,-0.05613112935798195],[121,212,67,-0.014058971578746344],[121,212,68,0.005017187189515804],[121,212,69,-0.003337754021638906],[121,212,70,-0.020211753815847798],[121,212,71,-0.04584606059989232],[121,212,72,-0.07245883882845082],[121,212,73,-0.08502166836686624],[121,212,74,-0.07324865728933576],[121,212,75,-0.09992512096963485],[121,212,76,-0.14720368247970556],[121,212,77,-0.16435377841689588],[121,212,78,-0.15917817560578615],[121,212,79,-0.14641233743041351],[121,213,64,-0.1164658732321945],[121,213,65,-0.10279667599293818],[121,213,66,-0.054807561984474874],[121,213,67,-0.013153155941786699],[121,213,68,0.005671612164970339],[121,213,69,-0.0027078801030391863],[121,213,70,-0.01968909459569048],[121,213,71,-0.045194920138113],[121,213,72,-0.07123504837985964],[121,213,73,-0.0832769639401836],[121,213,74,-0.07152880657890508],[121,213,75,-0.09774402202997418],[121,213,76,-0.14448511775181222],[121,213,77,-0.16138299908652792],[121,213,78,-0.15628183147809027],[121,213,79,-0.14388914116779647],[121,214,64,-0.11506951035493569],[121,214,65,-0.10137476542473556],[121,214,66,-0.053503878351348594],[121,214,67,-0.012268543097938267],[121,214,68,0.006300981101359766],[121,214,69,-0.002102803261927775],[121,214,70,-0.019180546846014328],[121,214,71,-0.0445470869438149],[121,214,72,-0.07001992545628065],[121,214,73,-0.08155010467764948],[121,214,74,-0.069829624349631],[121,214,75,-0.09558645602635753],[121,214,76,-0.14178637771529662],[121,214,77,-0.15843369606286198],[121,214,78,-0.15341084319574605],[121,214,79,-0.14138654496925043],[121,215,64,-0.11367414369646126],[121,215,65,-0.09995978347478848],[121,215,66,-0.052220154153419636],[121,215,67,-0.011405145301413715],[121,215,68,0.006905375264887953],[121,215,69,-0.0015223934656307513],[121,215,70,-0.018686071402690706],[121,215,71,-0.04390276648445296],[121,215,72,-0.06881376904340669],[121,215,73,-0.07984131153926761],[121,215,74,-0.06815121105344465],[121,215,75,-0.09345255067058],[121,215,76,-0.1391078256480046],[121,215,77,-0.15550641565059795],[121,215,78,-0.15056570319084253],[121,215,79,-0.13890489066138656],[121,216,64,-0.11227992791020244],[121,216,65,-0.09855187092893923],[121,216,66,-0.05095647971059167],[121,216,67,-0.01056297358974478],[121,216,68,0.007484899612684946],[121,216,69,-9.664940483939483E-4],[121,216,70,-0.01820561453168114],[121,216,71,-0.04326216396704934],[121,216,72,-0.0676168863927277],[121,216,73,-0.07815083138263976],[121,216,74,-0.06649369838198908],[121,216,75,-0.0913424776965687],[121,216,76,-0.13644988413683487],[121,216,77,-0.15260175521639735],[121,216,78,-0.14774693696743527],[121,216,79,-0.13644455513636292],[121,217,64,-0.1108870663971058],[121,217,65,-0.09715120772044303],[121,217,66,-0.04971295687998089],[121,217,67,-0.009742035567704185],[121,217,68,0.008039683369300402],[121,217,69,-4.349217254527999E-4],[121,217,70,-0.017739108026276283],[121,217,71,-0.04262548393589351],[121,217,72,-0.06642959131359379],[121,217,73,-0.07647893304508642],[121,217,74,-0.06485724482545663],[121,217,75,-0.08925644735770642],[121,217,76,-0.13381302857996463],[121,217,77,-0.1497203567343655],[121,217,78,-0.14495509795029776],[121,217,79,-0.13400594605187777],[121,218,64,-0.10949580796873729],[121,218,65,-0.09575800961918494],[121,218,66,-0.04848969614337254],[121,218,67,-0.00894233336482184],[121,218,68,0.008569880446462553],[121,218,69,7.253325416196432E-5],[121,218,70,-0.017286469374989507],[121,218,71,-0.04199292987615363],[121,218,72,-0.06525220251989576],[121,218,73,-0.07482590358867286],[121,218,74,-0.06324203142697965],[121,218,75,-0.08719470314213344],[121,218,76,-0.13119778088463915],[121,218,77,-0.14686290053442622],[121,218,78,-0.14219076252548066],[121,218,79,-0.13158949767477024],[121,219,64,-0.10810644356109113],[121,219,65,-0.09437252501083095],[121,219,66,-0.047286813868538606],[121,219,67,-0.008163861764017373],[121,219,68,0.009075669710404858],[121,219,69,5.561068210950727E-4],[121,219,70,-0.016847601997586854],[121,219,71,-0.041364703825578136],[121,219,72,-0.06408504203433177],[121,219,73,-0.07319204470920786],[121,219,74,-0.06164825773197674],[121,219,75,-0.08515751670594789],[121,219,76,-0.12860470336425817],[121,219,77,-0.14403009925912164],[121,219,78,-0.13945452527683946],[121,219,79,-0.12919566687108663],[121,220,64,-0.10671930300138945],[121,220,65,-0.09299503176706654],[121,220,66,-0.04610442974283514],[121,220,67,-0.007406606498654387],[121,220,68,0.00955725510158064],[121,220,69,0.0010160606710122493],[121,220,70,-0.01642239554630627],[121,220,71,-0.040741005996145316],[121,220,72,-0.06292843365289832],[121,220,73,-0.07157766931021382],[121,220,74,-0.060076137931978225],[121,220,75,-0.0831451830244596],[121,220,76,-0.12603439283874118],[121,220,77,-0.14122269203430843],[121,220,78,-0.13674699442230673],[121,220,79,-0.12682492924527342],[121,221,64,-0.10533475183057972],[121,221,65,-0.09162583420835871],[121,221,66,-0.044942664377442695],[121,221,67,-0.0066705427151813775],[121,221,68,0.010014865611969301],[121,221,69,0.001452681727847274],[121,221,70,-0.016010726269033618],[121,221,71,-0.04012203440732114],[121,221,72,-0.06178270147201871],[121,221,73,-0.06998309824284271],[121,221,74,-0.05852589720258928],[121,221,75,-0.0811580157618916],[121,221,76,-0.12348747494240024],[121,221,77,-0.13844143885915922],[121,221,78,-0.134068787453367],[121,221,79,-0.12447777543101504],[121,222,64,-0.10395318818449638],[121,222,65,-0.09026526016080759],[121,222,66,-0.04380163708040444],[121,222,67,-0.005955633598236957],[121,222,68,0.010448755125654498],[121,222,69,0.0018662814914725133],[121,222,70,-0.015612457430855228],[121,222,71,-0.03950798453231218],[121,222,72,-0.060648168480396704],[121,222,73,-0.06840865721252284],[121,222,74,-0.05699776823519919],[121,222,75,-0.07919634285994467],[121,222,76,-0.12096459864355848],[121,222,77,-0.13568711522061738],[121,222,78,-0.131420526980722],[121,222,79,-0.12215470753598069],[121,223,64,-0.10257503973689418],[121,223,65,-0.08891365810876842],[121,223,66,-0.04268146379642751],[121,223,67,-0.005261829154850096],[121,223,68,0.010859202128738556],[121,223,69,0.002257195276700044],[121,223,70,-0.015227439790149403],[121,223,71,-0.03889904895849258],[121,223,72,-0.059525155217410926],[121,223,73,-0.06685467385293752],[121,223,74,-0.055491987961973924],[121,223,75,-0.07726050234563016],[121,223,76,-0.11846643098012272],[121,223,77,-0.13296050693716796],[121,223,78,-0.12880283678868848],[121,223,79,-0.11985623574249102],[121,224,64,-0.1012007607077781],[121,224,65,-0.08757139444502932],[121,224,66,-0.04158225521122951],[121,224,67,-0.004589065154132133],[121,224,68,0.011246509294978935],[121,224,69,0.0026257813508221975],[121,224,70,-0.014855512125198868],[121,224,71,-0.038295417063034236],[121,224,72,-0.05841397849962996],[121,224,73,-0.06532147496773828],[121,224,74,-0.054008794473570695],[121,224,75,-0.07535083835871854],[121,224,76,-0.11599365201522065],[121,224,77,-0.13026240523644797],[121,224,78,-0.12621633810042923],[121,224,79,-0.11758287506588895],[121,225,64,-0.09983082894053437],[121,225,65,-0.08623885082029954],[121,225,66,-0.04050411501791729],[121,225,67,-0.003937262218529065],[121,225,68,0.011611002953905863],[121,225,69,0.0029724199772361705],[121,225,70,-0.014496501807082066],[121,225,71,-0.03769727470455592],[121,225,72,-0.057314950216718445],[121,225,73,-0.06380938394008404],[121,225,74,-0.052548424128774564],[121,225,75,-0.07346769739893017],[121,225,76,-0.11354695001674006],[121,225,77,-0.12759360207074383],[121,225,78,-0.12366164605556433],[121,225,79,-0.11533514227206577],[121,226,64,-0.09846574305144078],[121,226,65,-0.084916421593742],[121,226,66,-0.039447138342629265],[121,226,67,-0.003306325062423978],[121,226,68,0.01195303244845837],[121,226,69,0.003297512372925624],[121,226,70,-0.014150225414463166],[121,226,71,-0.03710480393145184],[121,226,72,-0.05622837619773905],[121,226,73,-0.0623187183097909],[121,226,74,-0.05111110885501727],[121,226,75,-0.07161142479276571],[121,226,76,-0.11112701686431248],[121,226,77,-0.12495488567391733],[121,226,78,-0.12113936640119156],[121,226,79,-0.11311355295527663],[121,227,64,-0.0971060196551854],[121,227,65,-0.08360451138624601],[121,227,66,-0.03841141032642234],[121,227,67,-0.002696141873618398],[121,227,68,0.01227296938940142],[121,227,69,0.003601479587728445],[121,227,70,-0.013816489385830903],[121,227,71,-0.0365181827074608],[121,227,72,-0.055154555148636535],[121,227,73,-0.06084978751758793],[121,227,74,-0.04969707363849152],[121,227,75,-0.06978236137961316],[121,227,76,-0.10873454368694055],[121,227,77,-0.1223470363627966],[121,227,78,-0.11865009239684124],[121,227,79,-0.11091861877710531],[121,228,64,-0.09575219066996248],[121,228,65,-0.08230353273799768],[121,228,66,-0.03739700486006525],[121,228,67,-0.0021065838329032307],[121,228,68,0.01257120681403145],[121,228,69,0.003884761313487994],[121,228,70,-0.013495090704631417],[121,228,71,-0.035937584654869244],[121,228,72,-0.05409377766139221],[121,228,73,-0.05940289081557949],[121,228,74,-0.04830653420221568],[121,228,75,-0.06798084041638759],[121,228,76,-0.10637021673398883],[121,228,77,-0.11977082258542217],[121,228,78,-0.11619440193330292],[121,228,79,-0.10875084486705046],[121,229,64,-0.09440480070563632],[121,229,65,-0.08101390387176864],[121,229,66,-0.03640398346811024],[121,229,67,-0.0015375047666530536],[121,229,68,0.012848158256849184],[121,229,69,0.0041478146312678675],[121,229,70,-0.013185817612707604],[121,229,71,-0.035363178815632536],[121,229,72,-0.053046325295093205],[121,229,73,-0.05797831534264703],[121,229,74,-0.04693969487005881],[121,229,75,-0.0662071846995766],[121,229,76,-0.10403471348176851],[121,229,77,-0.11722699721790938],[121,229,78,-0.11377285486470422],[121,229,79,-0.10661072738485958],[121,230,64,-0.09306440453839511],[121,230,65,-0.07973604656321195],[121,230,66,-0.03543239433835974],[121,230,67,-9.887409271433164E-4],[121,230,68,0.01310425673998057],[121,230,69,0.004391112704812672],[121,230,70,-0.012888450347493792],[121,230,71,-0.03479512943063423],[121,230,72,-0.052012469728956616],[121,230,73,-0.05657633436318227],[121,230,74,-0.04559674661440686],[121,230,75,-0.06446170390318343],[121,230,76,-0.10172869897743439],[121,230,77,-0.1147162941110607],[121,230,78,-0.11138599055270952],[121,230,79,-0.10449875124443027],[121,231,64,-0.0917315646751239],[121,231,65,-0.07847038411923],[121,231,66,-0.034482271492530525],[121,231,67,-4.6011089500973225E-4],[121,231,68,0.013339953691245066],[121,231,69,0.004615143428454059],[121,231,70,-0.012602761898408836],[121,231,71,-0.034233595737173925],[121,231,72,-0.05099247198707267],[121,231,73,-0.05519720566711641],[121,231,74,-0.044277865284728664],[121,231,75,-0.06274469213058104],[121,231,76,-0.09945282242130138],[121,231,77,-0.1122394248871329],[121,231,78,-0.10903432562111154],[121,231,79,-0.10241538799868843],[121,232,64,-0.09040684901055246],[121,232,65,-0.0772173394652678],[121,232,66,-0.033553634093639435],[121,232,67,4.858440196752914E-5],[121,232,68,0.013555717797827292],[121,232,69,0.004820408037603246],[121,232,70,-0.012328518777957586],[121,232,71,-0.033678731784701606],[121,232,72,-0.049986581734414726],[121,232,73,-0.05384117012882611],[121,232,74,-0.04298321001391209],[121,232,75,-0.061056425677823614],[121,232,76,-0.09720771398806942],[121,232,77,-0.1097970759864676],[121,232,78,-0.10671835191854837],[121,232,79,-0.10036109388450701],[121,233,64,-0.08909082858005017],[121,233,65,-0.0759773333421909],[121,233,66,-0.0326464858854129],[121,233,67,5.375615597451797E-4],[121,233,68,0.013752033803478126],[121,233,69,0.005007419689830621],[121,233,70,-0.012065481803171586],[121,233,71,-0.03313068626877561],[121,233,72,-0.04899503664347455],[121,233,73,-0.05250845042214417],[121,233,74,-0.04171292179888106],[121,233,75,-0.05939716100552801],[121,233,76,-0.0949939818868486],[121,233,77,-0.10738990596301293],[121,233,78,-0.1044385346865789],[121,233,79,-0.09833630802640081],[121,234,64,-0.08778407541067193],[121,234,65,-0.07475078261312754],[121,234,66,-0.031760814758739084],[121,234,67,0.0010070544647763746],[121,234,68,0.01392940125717546],[121,234,69,0.005176702024416515],[121,234,70,-0.011813406883106238],[121,234,71,-0.03258960238312948],[121,234,72,-0.04801806183064377],[121,234,73,-0.051199249888287654],[121,234,74,-0.040467122251574006],[121,234,75,-0.057767132915916244],[121,234,76,-0.09281220965918403],[121,234,77,-0.10501854302701778],[121,234,78,-0.10219531092979454],[121,234,79,-0.0963414507973414],[121,235,64,-0.08648716047279337],[121,235,65,-0.07353809868040252],[121,235,66,-0.0308965924399547],[121,235,67,0.001457313963023748],[121,235,68,0.014088333221107493],[121,235,69,0.005328787708072916],[121,235,70,-0.011572045808250195],[121,235,71,-0.03205561768967591],[121,235,72,-0.04705586936126146],[121,235,73,-0.04991375155314698],[121,235,74,-0.039245912515978455],[121,235,75,-0.05616655293112704],[121,235,76,-0.09066295371361488],[121,235,77,-0.10268358283246606],[121,235,78,-0.09998908798414524],[121,235,79,-0.09437692233469343],[121,236,64,-0.0852006517344313],[121,236,65,-0.07233968601245859],[121,236,66,-0.030053774295587827],[121,236,67,0.0018886074376990257],[121,236,68,0.0142293549456955],[121,236,69,0.005464216974270243],[121,236,70,-0.011341147037902378],[121,236,71,-0.03152886400626644],[121,236,72,-0.046108657822098754],[121,236,73,-0.048652117290056626],[121,236,74,-0.038049372346572435],[121,236,75,-0.054595607868464034],[121,236,76,-0.08854674109467318],[121,236,77,-0.10038558650615738],[121,236,78,-0.09782024227921109],[121,236,79,-0.09244310120896096],[121,237,64,-0.08392511232000582],[121,237,65,-0.07115594078035802],[121,237,66,-0.02923229924795499],[121,237,67,0.0023012183023451665],[121,237,68,0.01435300251926764],[121,237,69,0.005583536163381392],[121,237,70,-0.011120456481718435],[121,237,71,-0.031009467311946405],[121,237,72,-0.045176611959834564],[121,237,73,-0.04741448712379065],[121,237,74,-0.036877559343126844],[121,237,75,-0.053054458607741606],[121,237,76,-0.086464067483518],[121,237,77,-0.09812507891461401],[121,237,78,-0.0956891182896578],[121,237,79,-0.09054034324266891],[121,238,64,-0.08266109877499683],[121,238,65,-0.06998724960319024],[121,238,66,-0.02843208979585579],[121,238,67,0.0026954454159496305],[121,238,68,0.014459821499812292],[121,238,69,0.005687296270555663],[121,238,70,-0.010909718271834162],[121,238,71,-0.030497547669414437],[121,238,72,-0.04425990238391743],[121,238,73,-0.04620097867120777],[121,238,74,-0.03573050833647895],[121,238,75,-0.051543239045437214],[121,238,76,-0.08441539542675286],[121,238,77,-0.0959025471643318],[121,238,78,-0.09359602767068408],[121,238,79,-0.08866898047638673],[121,239,64,-0.0814091594376532],[121,239,65,-0.06883398840146816],[121,239,66,-0.027653052134503732],[121,239,67,0.003071602426792144],[121,239,68,0.014550365535998006],[121,239,69,0.005776051507884378],[121,239,70,-0.01070867552221632],[121,239,71,-0.029993219164391034],[121,239,72,-0.0433586853320797],[121,239,73,-0.04501168671369864],[121,239,74,-0.034608230919597305],[121,239,75,-0.050062055229959615],[121,239,76,-0.08240115278935706],[121,239,77,-0.09371843933028161],[121,239,78,-0.0915412485718959],[121,239,79,-0.08682932027862203],[121,240,64,-0.080169832918551],[121,240,65,-0.06769652135729601],[121,240,66,-0.026895076368686884],[121,240,67,0.003430017051783434],[121,240,68,0.01462519498443974],[121,240,69,0.0058503578871014076],[121,240,70,-0.010517071072095643],[121,240,71,-0.029496589861551792],[121,240,72,-0.042473102496602855],[121,240,73,-0.04384668289627831],[121,240,74,-0.0335107151179203],[121,240,75,-0.04861098467188629],[121,240,76,-0.08042173142700267],[121,240,77,-0.0915731634069228],[121,240,78,-0.08952502512363911],[121,240,79,-0.08502164459599475],[121,241,64,-0.07894364668846339],[121,241,65,-0.06657519997982854],[121,241,66,-0.02615803681308304],[121,241,67,0.003771030298021989],[121,241,68,0.014684875529914466],[121,241,69,0.005910771828691223],[121,241,70,-0.010334648210567279],[121,241,71,-0.029007761776640217],[121,241,72,-0.041603280909288116],[121,241,73,-0.04270601554791672],[121,241,74,-0.03243792519269134],[121,241,75,-0.04719007582265495],[121,241,76,-0.07847748607243135],[121,241,77,-0.08946708647540665],[121,241,78,-0.08754756708946922],[121,241,79,-0.08324620933981322],[121,242,64,-0.07773111577469809],[121,242,65,-0.06547036227431105],[121,242,66,-0.025441792373612937],[121,242,67,0.004094995633241801],[121,242,68,0.014729976814911479],[121,242,69,0.00595784880285412],[121,242,70,-0.010161151379734936],[121,242,71,-0.028526830864408596],[121,242,72,-0.04074933288301502],[121,242,73,-0.041589709617497604],[121,242,74,-0.03138980157077919],[121,242,75,-0.04579934771484259],[121,242,76,-0.07656873343001415],[121,242,77,-0.08740053408013854],[121,242,78,-0.08560904967817126],[121,242,79,-0.08150324390495932],[121,243,64,-0.076532741565692],[121,243,65,-0.0643823320127129],[121,243,66,-0.02474618700367455],[121,243,67,0.004402278111761395],[121,243,68,0.014761071084608151],[121,243,69,0.005992142007403325],[121,243,70,-0.009996326853989457],[121,243,71,-0.028053887021965932],[121,243,72,-0.03991135600761475],[121,243,73,-0.04049776671957327],[121,243,74,-0.030366260894245982],[121,243,75,-0.04443878975682859],[121,243,76,-0.0746957514720501],[121,243,77,-0.08537378980732273],[121,243,78,-0.08370961350841857],[121,243,79,-0.07979295081670466],[121,244,64,-0.07534901072331984],[121,244,65,-0.06331141810372742],[121,244,66,-0.024071050229094323],[121,244,67,0.0046932534624501265],[121,244,68,0.01477873185302323],[121,244,69,0.006014201087245473],[121,244,70,-0.009839923393278266],[121,244,71,-0.027589014107108772],[121,244,72,-0.0390894331977],[121,244,73,-0.03943016528390785],[121,244,74,-0.029367196182732546],[121,244,75,-0.04310836167433642],[121,244,76,-0.07285877892984666],[121,244,77,-0.08338709505765718],[121,244,78,-0.08184936471892523],[121,244,79,-0.07811550550086355],[121,245,64,-0.07418039420207345],[121,245,65,-0.062257914059711976],[121,245,66,-0.023416197735690192],[121,245,67,0.0049683071450670685],[121,245,68,0.014783532595715016],[121,245,69,0.006024570899639023],[121,245,70,-0.009691692868510855],[121,245,71,-0.027132289971222124],[121,245,72,-0.03828363279003329],[121,245,73,-0.03838686080269283],[121,245,74,-0.02839247710161165],[121,245,75,-0.04180799359111877],[121,245,76,-0.07105801497218359],[121,245,77,-0.08144064900494485],[121,245,78,-0.08002837521676413],[121,245,79,-0.0764710561725132],[121,246,64,-0.07302734637391382],[121,246,65,-0.0612220975578923],[121,246,66,-0.02278143201336134],[121,246,67,0.005227833381204463],[121,246,68,0.014776045474052887],[121,246,69,0.006023790329022064],[121,246,70,-0.009551390857470199],[121,246,71,-0.026683786506287624],[121,246,72,-0.03749400868790657],[121,246,73,-0.03736778616916591],[121,246,74,-0.0274419503287055],[121,246,75,-0.04053758624079843],[121,246,76,-0.06929361906329767],[121,246,77,-0.07953460873198262],[121,246,78,-0.07824668305630872],[121,246,79,-0.07485972383828984],[121,247,64,-0.0718903042573117],[121,247,65,-0.060204230092982876],[121,247,66,-0.022166543050725022],[121,247,67,0.005472234165860137],[121,247,68,0.01475684009567897],[121,247,69,0.006012391154734298],[121,247,70,-0.009418777209889402],[121,247,71,-0.0262435697055548],[121,247,72,-0.036720600549973254],[121,247,73,-0.03637285210131371],[121,247,74,-0.02651544001230902],[121,247,75,-0.03929701130171832],[121,247,76,-0.06756571099216026],[121,247,77,-0.07766908953477995],[121,247,78,-0.07650429294114748],[121,247,79,-0.0732816024071372],[121,248,64,-0.0707696868486685],[121,248,65,-0.05920455671816237],[121,248,66,-0.021571309074400795],[121,248,67,0.0057019182654835234],[121,248,68,0.014726482315408412],[121,248,69,0.005990896974542498],[121,248,70,-0.009293616580580972],[121,248,71,-0.025811699737390385],[121,248,72,-0.035963434020893664],[121,248,73,-0.0354019476442565],[121,248,74,-0.025612748313180105],[121,248,75,-0.03808611184648382],[121,248,76,-0.06587437106445243],[121,248,77,-0.07584416538585247],[121,248,78,-0.07480117684118352],[121,248,79,-0.07173675890421193],[121,249,64,-0.06966589455405565],[121,249,65,-0.05822330587121044],[121,249,66,-0.02099549732720245],[121,249,67,0.005917300208079967],[121,249,68,0.014685533080381535],[121,249,69,0.0059598221864076515],[121,249,70,-0.009175678929790555],[121,249,71,-0.025388231031845346],[121,249,72,-0.0352225210011522],[121,249,73,-0.034454940744923224],[121,249,74,-0.0247336560231785],[121,249,75,-0.036904702897809644],[121,249,76,-0.06421964044837615],[121,249,77,-0.07405986954713559],[121,249,78,-0.07313727471709565],[121,249,79,-0.0702252337825662],[121,250,64,-0.068579308718906],[121,250,65,-0.057260689282428515],[121,250,66,-0.02043886487961957],[121,250,67,0.0061187992707394685],[121,250,68,0.014634547322903162],[121,250,69,0.005919671030524328],[121,250,70,-0.00906473999016472],[121,250,71,-0.02497321237944031],[121,250,72,-0.034497859953344596],[121,250,73,-0.03353167889259954],[121,250,74,-0.023877923253215617],[121,250,75,-0.035752572082183874],[121,250,76,-0.06260152166515486],[121,250,77,-0.07231619532284037],[121,250,78,-0.07151249534426621],[121,250,79,-0.06874704132709637],[121,251,64,-0.06751029125304282],[121,251,65,-0.05631690196083775],[121,251,66,-0.01990115946914477],[121,251,67,0.006306838469689123],[121,251,68,0.014574072903994055],[121,251,69,0.005870936693236132],[121,251,70,-0.008960581699958597],[121,251,71,-0.024566687041661952],[121,251,72,-0.03378943624222247],[121,251,73,-0.03263198981896912],[121,251,74,-0.023045290183234233],[121,251,75,-0.034629480372842046],[121,251,76,-0.06101997921488078],[121,251,77,-0.07061309694244731],[121,251,78,-0.06992671722828032],[121,251,79,-0.0673021701451737],[121,252,64,-0.06645918434820791],[121,252,65,-0.05539212225505161],[121,252,66,-0.019382120362211014],[121,252,67,0.006481843557666827],[121,252,68,0.014504649610250421],[121,252,69,0.005814100473990728],[121,252,70,-0.008862992602360053],[121,252,71,-0.024168692872676187],[121,252,72,-0.033097222505792265],[121,252,73,-0.031755682251344966],[121,252,74,-0.02223547786702966],[121,252,75,-0.033535162913568124],[121,252,76,-0.059474940328220635],[121,252,77,-0.06895049056395303],[121,252,78,-0.0683797896041427],[121,252,79,-0.06589058373833359],[121,253,64,-0.06542631028500852],[121,253,65,-0.054486511985096506],[121,253,66,-0.01888147923368826],[121,253,67,0.006644242033144178],[121,253,68,0.01442680820622812],[121,253,69,0.005749631016118447],[121,253,70,-0.008771768210998933],[121,253,71,-0.023779262451730045],[121,253,72,-0.03242117905474695],[121,253,73,-0.030902546712850136],[121,253,74,-0.021448189084812615],[121,253,75,-0.032469329914865834],[121,253,76,-0.05796629583436002],[121,253,77,-0.06732825538741948],[121,253,78,-0.06687153351139179],[121,253,79,-0.06451222114934091],[121,254,64,-0.06441197132599982],[121,254,65,-0.05360021664137472],[121,254,66,-0.018398961059108463],[121,254,67,0.006794462165621407],[121,254,68,0.014341069544169069],[121,254,69,0.005677983601828922],[121,254,70,-0.00868671134191243],[121,254,71,-0.02339842322570292],[121,254,72,-0.03176125429751934],[121,254,73,-0.03007235636341588],[121,254,74,-0.020683109236548293],[121,254,75,-0.03143166761412608],[121,254,76,-0.056493901135500894],[121,254,77,-0.06574623486887671],[121,254,78,-0.06540174293737207],[121,254,79,-0.06316699767893291],[121,255,64,-0.06341644969145349],[121,255,65,-0.05273336564692046],[121,255,66,-0.017934285015044474],[121,255,67,0.006932932040882247],[121,255,68,0.014247943732476523],[121,255,69,0.0055995995114230725],[121,255,70,-0.00860763241245528],[121,255,71,-0.023026197661282426],[121,255,72,-0.03111738518828747],[121,255,73,-0.029264867875614997],[121,255,74,-0.019939907269287765],[121,255,75,-0.030421839291547785],[121,255,76,-0.055057577278219735],[121,255,77,-0.06420423802468503],[121,255,78,-0.06397018602105525],[121,255,79,-0.061854805666559765],[121,256,64,-0.06244000761418169],[121,256,65,-0.05188607267903094],[121,256,66,-0.0174871653832911],[121,256,67,0.007060078629799595],[121,256,68,0.014147929363988654],[121,256,69,0.005514905446387936],[121,256,70,-0.00853434970779413],[121,256,71,-0.0226626034062044],[121,256,72,-0.030489497695267823],[121,256,73,-0.028479822339479533],[121,256,74,-0.019218236631872693],[121,256,75,-0.029439486333700672],[121,256,76,-0.05365711211200213],[121,256,77,-0.06270204081653366],[121,256,78,-0.06257660630991389],[121,256,79,-0.060575515329446994],[121,257,64,-0.06148288746963474],[121,257,65,-0.0510584360463258],[121,257,66,-0.01705731245475165],[121,257,67,0.007176326883957018],[121,257,68,0.014041512804731421],[121,257,69,0.005424313015702978],[121,257,70,-0.00846668961579417],[121,257,71,-0.022307653458988788],[121,257,72,-0.029877507286669637],[121,257,73,-0.027716946190621882],[121,257,74,-0.018517736250603937],[121,257,75,-0.02848422933679247],[121,257,76,-0.05229226152532449],[121,257,77,-0.06123938760736896],[121,257,78,-0.061220724062509745],[121,257,79,-0.059328975654338714],[121,258,64,-0.06054531197739323],[121,258,65,-0.05025053911729595],[121,258,66,-0.01664443342921668],[121,258,67,0.007282098861004141],[121,258,68,0.01392916754345792],[121,258,69,0.0053282182843530585],[121,258,70,-0.008404486831273159],[121,258,71,-0.021961356346610457],[121,258,72,-0.029281319431744647],[121,258,73,-0.02697595215618724],[121,258,74,-0.017838031519712666],[121,258,75,-0.027555669241931736],[121,258,76,-0.05096275074978402],[121,258,77,-0.05981599267872783],[121,258,78,-0.05990223758965523],[121,258,79,-0.058115015336358135],[121,259,64,-0.05962748447004513],[121,259,65,-0.049462450796383874],[121,259,66,-0.01624823330746597],[121,259,67,0.007377812882359611],[121,259,68,0.013811353601964317],[121,259,69,0.005227001382771352],[121,259,70,-0.008347584530713027],[121,259,71,-0.021623716309514887],[121,259,72,-0.028700830114397214],[121,259,73,-0.02625654021334846],[121,259,74,-0.017178735300700364],[121,259,75,-0.02665338849488866],[121,259,76,-0.049668275722896095],[121,259,77,-0.0584315418001285],[121,259,78,-0.05862082462718809],[121,259,79,-0.056933443759472006],[121,260,64,-0.05872958922535662],[121,260,65,-0.04869422604365746],[121,260,66,-0.015868415772399055],[121,260,67,0.007463882725546686],[121,260,68,0.013688517005849672],[121,260,69,0.0051210261756631965],[121,260,70,-0.008295834518640204],[121,260,71,-0.021294733493376624],[121,260,72,-0.02813592635687451],[121,260,73,-0.025558398555273375],[121,260,74,-0.016539448924878682],[121,260,75,-0.02577695222311239],[121,260,76,-0.04840850450035694],[121,260,77,-0.05708569384139448],[121,260,78,-0.05737614373361254],[121,260,79,-0.05578405201313564],[121,261,64,-0.057851791857598645],[121,261,65,-0.04794590643419163],[121,261,66,-0.015504684056188083],[121,261,67,0.007540716853109532],[121,261,68,0.013561089315066338],[121,261,69,0.005010639988400068],[121,261,70,-0.008249097347005822],[121,261,71,-0.02097440414700644],[121,261,72,-0.02758648675113593],[121,261,73,-0.02488120455974226],[121,261,74,-0.015919763193736627],[121,261,75,-0.02492590942306202],[121,261,76,-0.04718307870880115],[121,261,77,-0.0557780824190682],[121,261,78,-0.056167835706113126],[121,261,79,-0.05466661393981058],[121,262,64,-0.056994239763825574],[121,262,65,-0.047217520753295446],[121,262,66,-0.015156741790700989],[121,262,67,0.0076087176797607165],[121,262,68,0.013429487213342715],[121,262,69,0.004896173388967074],[121,262,70,-0.008207242408970486],[121,262,71,-0.02066272082578375],[121,262,72,-0.02705238199554725],[121,262,73,-0.02422462575581384],[121,262,74,-0.01531925937203251],[121,262,75,-0.024099794151183105],[121,262,76,-0.04599161503030432],[121,262,77,-0.05450831756833011],[121,262,78,-0.054995525008671255],[121,262,79,-0.05358088720814656],[121,263,64,-0.05615706262087697],[121,263,65,-0.046509085623787985],[121,263,66,-0.014824293838713046],[121,263,67,0.00766828087910219],[121,263,68,0.013294112155296103],[121,263,69,0.004777940023250856],[121,263,70,-0.00817014800857022],[121,263,71,-0.020359672599980276],[121,263,72,-0.026533475434615417],[121,263,73,-0.0235883207841878],[121,263,74,-0.014737510168809954],[121,263,75,-0.02329812671217856],[121,263,76,-0.04483370671015372],[121,263,77,-0.05327598743215201],[121,263,78,-0.05385882120627199],[121,263,79,-0.05252661440674365],[121,264,64,-0.05534037292888052],[121,264,65,-0.04582060616160952],[121,264,66,-0.014507047103708022],[121,264,67,0.0077197947309472735],[121,264,68,0.013155350069795105],[121,264,69,0.004656236501264403],[121,264,70,-0.00813770140781767],[121,264,71,-0.020065245267347192],[121,264,72,-0.026029623599569483],[121,264,73,-0.022971940347182515],[121,264,74,-0.014174080701860294],[121,264,75,-0.022520414838566986],[121,264,76,-0.04370892507972511],[121,264,77,-0.05208065995975616],[121,264,78,-0.05275732039947263],[121,264,79,-0.051503524153564885],[121,265,64,-0.054544266597023335],[121,265,65,-0.04515207665612009],[121,265,66,-0.014204711316313167],[121,265,67,0.007763639509999512],[121,265,68,0.013013571117926656],[121,265,69,0.004531342331773715],[121,265,70,-0.008109798852819837],[121,265,71,-0.0197794215693105],[121,265,72,-0.025540676747650412],[121,265,73,-0.0223751281444863],[121,265,74,-0.0136285294414474],[121,265,75,-0.02176615485584007],[121,265,76,-0.04261682108659838],[121,265,77,-0.0509218846067785],[121,265,78,-0.05169060665385457],[121,265,79,-0.050511332216197385],[121,266,64,-0.05376882356738833],[121,266,65,-0.044503481271530775],[121,266,66,-0.013916999795665446],[121,266,67,0.007800186916371097],[121,266,68,0.012869129503727407],[121,266,69,0.004403519902669139],[121,266,70,-0.008086345580522462],[121,266,71,-0.01950218141010855],[121,266,72,-0.02506647939805331],[121,266,73,-0.021797521791104724],[121,266,74,-0.013100409129429457],[121,266,75,-0.02103483282788449],[121,266,76,-0.04155692682439238],[121,266,77,-0.04979919402990172],[121,266,78,-0.050658253419165016],[121,266,79,-0.04954974263831706],[121,267,64,-0.053014108472699537],[121,267,65,-0.043874794766024815],[121,267,66,-0.013643630184268481],[121,267,67,0.007829799548142934],[121,267,68,0.012722363335643593],[121,267,69,0.004273014504305332],[121,267,70,-0.008067255807727021],[121,267,71,-0.019233502078213064],[121,267,72,-0.02460687086255714],[121,267,73,-0.021238753714201076],[121,267,74,-0.012589267670240628],[121,267,75,-0.02032592567769806],[121,267,76,-0.04052875705516023],[121,267,77,-0.04871210576910348],[121,267,78,-0.04965982493324304],[121,267,79,-0.04861844886788471],[121,268,64,-0.05228017132386827],[121,268,65,-0.04326598322522162],[121,268,66,-0.013384325155117381],[121,268,67,0.007852830415940612],[121,268,68,0.012573594536551937],[121,268,69,0.004140054392977686],[121,268,70,-0.00805245270401006],[121,268,71,-0.01897335846934679],[121,268,72,-0.024161685768944025],[121,268,73,-0.02069845202577287],[121,268,74,-0.012094648990497451],[121,268,75,-0.019638902278776602],[121,268,76,-0.03953181071754565],[121,268,77,-0.04766012391103648],[121,268,78,-0.04869487760609468],[121,268,79,-0.047717134882754836],[121,269,64,-0.05156704822329112],[121,269,65,-0.04267700480674516],[121,269,66,-0.013138813090092545],[121,269,67,0.007869622499268166],[121,269,68,0.012423128800040284],[121,269,69,0.004004850891647236],[121,269,70,-0.00804186835016829],[121,269,71,-0.018721723310404118],[121,269,72,-0.023730754575389555],[121,269,73,-0.020176241368366474],[121,269,74,-0.01161609386430709],[121,269,75,-0.018973224512907515],[121,269,76,-0.038565572414277174],[121,269,77,-0.046642740727441914],[121,269,78,-0.04776296137976026],[121,269,79,-0.04684547630954859],[121,270,64,-0.050874762099951],[121,270,65,-0.042107810492795585],[121,270,66,-0.01290682872885202],[121,270,67,0.00788050834411028],[121,270,68,0.012271255590525023],[121,270,69,0.0038675985249801716],[121,270,70,-0.008035443683806952],[121,270,71,-0.018478567383584964],[121,270,72,-0.02331390407409952],[121,270,73,-0.01967174373129755],[121,270,74,-0.011153140701675328],[121,270,75,-0.018328348290477903],[121,270,76,-0.03762951387297592],[121,270,77,-0.04565943828289739],[121,270,78,-0.04686362105990444],[121,270,79,-0.04600314153182657],[121,271,64,-0.05020332346244258],[121,271,65,-0.04155834484772529],[121,271,66,-0.012688113787629029],[121,271,67,0.007885809701140369],[121,271,68,0.012118248184718813],[121,271,69,0.0037284751857816676],[121,271,70,-0.008033128433634826],[121,271,71,-0.01824385975002429],[121,271,72,-0.022910957882530527],[121,271,73,-0.019184579235077975],[121,271,74,-0.010705326297698228],[121,271,75,-0.01770372452974902],[121,271,76,-0.036723095374631975],[121,271,77,-0.04470969000657916],[121,271,78,-0.045996397615320095],[121,271,79,-0.045189792783759807],[121,272,64,-0.04955273116615552],[121,272,65,-0.041028546777757365],[121,272,66,-0.01248241754753994],[121,272,67,0.007885837203675711],[121,272,68,0.011964363751881032],[121,272,69,0.0035876423298946553],[121,272,70,-0.008034881044006514],[121,272,71,-0.018017567972207427],[121,272,72,-0.0225217369206224],[121,272,73,-0.018714366882000198],[121,272,74,-0.010272186540523217],[121,272,75,-0.017098800091905814],[121,272,76,-0.03584576714450214],[121,272,77,-0.04379296222310759],[121,272,78,-0.04516082944180703],[121,272,79,-0.04440508722567784],[121,273,64,-0.048922973190951236],[121,273,65,-0.040518350290102687],[121,273,66,-0.012289497412165685],[121,273,67,0.007880890084373534],[121,273,68,0.011809843470259396],[121,273,69,0.00344524519668812],[121,273,70,-0.008040668591178517],[121,273,71,-0.017799658334433095],[121,273,72,-0.02214605987252881],[121,273,73,-0.018260725271053355],[121,273,74,-0.00985325707634455],[121,273,75,-0.016513018669035418],[121,273,76,-0.034996970700570874],[121,273,77,-0.04290871563791881],[121,273,78,-0.04435645358713147],[121,273,79,-0.043648677998036664],[121,274,64,-0.04831402742579498],[121,274,65,-0.04002768524887058],[121,274,66,-0.012109119434333921],[121,274,67,0.007871255929512516],[121,274,68,0.011654912677092072],[121,274,69,0.003301413052282957],[121,274,70,-0.008050466692709814],[121,274,71,-0.017590096060602706],[121,274,72,-0.021783743631428865],[121,274,73,-0.01782327327558034],[121,274,74,-0.00944807392997732],[121,274,75,-0.01594582162252626],[121,274,76,-0.03417614015511344],[121,274,77,-0.04205640677299127],[121,274,78,-0.043582806934040444],[121,274,79,-0.04292021525053799],[121,275,64,-0.047725862456916915],[121,275,65,-0.03955647812528358],[121,275,66,-0.011941058812158095],[121,275,67,0.00785721046958603],[121,275,68,0.011499781049552633],[121,275,69,0.0031562594527518224],[121,275,70,-0.008064259411347344],[121,275,71,-0.017388845528582525],[121,275,72,-0.02143460372604773],[121,275,73,-0.017401630682285018],[121,275,74,-0.009056174079809852],[121,275,75,-0.015396648769704296],[121,275,76,-0.03338270346527322],[121,275,77,-0.04123548934909884],[121,275,78,-0.042839427338512155],[121,275,79,-0.04221934714327658],[121,276,64,-0.04715843835620652],[121,276,65,-0.03910465273983289],[121,276,66,-0.011785100354504618],[121,276,67,0.007839017404841215],[121,276,68,0.011344642814042396],[121,276,69,0.0030098825246113606],[121,276,70,-0.008082039154662187],[121,276,71,-0.017195870480384248],[121,276,72,-0.021098454727588235],[121,276,73,-0.01699541879040031],[121,276,74,-0.008677095986181303],[121,276,75,-0.014864939116834546],[121,276,76,-0.03261608362894388],[121,276,77,-0.04044541561111894],[121,276,78,-0.042125854720658544],[121,276,79,-0.04154572081696375],[121,277,64,-0.04661170746668329],[121,277,65,-0.03867213099414371],[121,277,66,-0.0116410389161769],[121,277,67,0.007816928264298228],[121,277,68,0.011189676981256867],[121,277,69,0.002862365260010172],[121,277,70,-0.00810380657163176],[121,277,71,-0.017011134227407795],[121,277,72,-0.020775110635843228],[121,277,73,-0.016604260970024133],[121,277,74,-0.008310380072474664],[121,277,75,-0.014350131536927532],[121,277,76,-0.031875699822617266],[121,277,77,-0.03968563759325844],[121,277,78,-0.04144163210590221],[121,277,79,-0.04089898332943442],[121,278,64,-0.04608561518201315],[121,278,65,-0.038258833590427956],[121,278,66,-0.011508679803175473],[121,278,67,0.007791182296736387],[121,278,68,0.011035047604523793],[121,278,69,0.0027137758241433524],[121,278,70,-0.008129570447259631],[121,278,71,-0.016834599849970957],[121,278,72,-0.020464385243303896],[121,278,73,-0.01622778317879529],[121,278,74,-0.007955569158427614],[121,278,75,-0.013851665391069247],[121,278,76,-0.031160968478203842],[121,278,77,-0.038955608321371855],[121,278,78,-0.040786306614234],[121,278,79,-0.04027878255578416],[121,279,64,-0.04558010071717234],[121,279,65,-0.03786468073651671],[121,279,66,-0.011387839148460959],[121,279,67,0.007762006392092582],[121,279,68,0.010880904058983919],[121,279,69,0.0025641678725510106],[121,279,70,-0.008159347596229756],[121,279,71,-0.0166662303903398],[121,279,72,-0.020166092476131176],[121,279,73,-0.015865614436240436],[121,279,74,-0.007612208845367186],[121,279,75,-0.013368981092266174],[121,279,76,-0.030471304296170475],[121,279,77,-0.03825478294984063],[121,279,78,-0.04015943039553161],[121,279,79,-0.03968476804962385],[121,280,64,-0.045095097867508475],[121,280,65,-0.03748959283458306],[121,280,66,-0.01127834425870748],[121,280,67,0.007729615031677582],[121,280,68,0.010727381339258624],[121,280,69,0.0024135808760810764],[121,280,70,-0.008193162756505726],[121,280,71,-0.016505989038474313],[121,280,72,-0.019880046710911474],[121,280,73,-0.015517387255279147],[121,280,74,-0.0072798478532728715],[121,280,75,-0.012901520611060919],[121,280,76,-0.029806121192669913],[121,280,77,-0.037582619830766155],[121,280,78,-0.03956056150907771],[121,280,79,-0.0391165918630742],[121,281,64,-0.044630535753574764],[121,281,65,-0.037133491151762246],[121,281,66,-0.011180033932551927],[121,281,67,0.007694210265629825],[121,281,68,0.010574600373371061],[121,281,69,0.002262040451460753],[121,281,70,-0.008231048483668655],[121,281,71,-0.016353839309683135],[121,281,72,-0.01960606306614957],[121,281,73,-0.015182738030496233],[121,281,74,-0.006958038309738787],[121,281,75,-0.012448727922408562],[121,281,76,-0.029164833178638896],[121,281,77,-0.03693858151348093],[121,281,78,-0.03898926474555307],[121,281,79,-0.03857390932324071],[121,282,64,-0.04418633954924131],[121,282,65,-0.03679629847096678],[121,282,66,-0.011092758750858666],[121,282,67,0.00765598171603403],[121,282,68,0.01042266835079895],[121,282,69,0.002109558695575395],[121,282,70,-0.008273045046681922],[121,282,71,-0.016209745213366048],[121,282,72,-0.01934395766748121],[121,282,73,-0.014861307382903519],[121,282,74,-0.006646335991059415],[121,282,75,-0.012010049393521712],[121,282,76,-0.028546855169120054],[121,282,77,-0.036322135672605185],[121,282,78,-0.03844511238988476],[121,282,79,-0.03805637976300806],[121,283,64,-0.04376243119073485],[121,283,65,-0.03647793972030004],[121,283,66,-0.011016381339525124],[121,283,67,0.007615106604156363],[121,283,68,0.010271679062660978],[121,283,69,0.001956134521708576],[121,283,70,-0.008319200325674559],[121,283,71,-0.016073671412024183],[121,283,72,-0.019093547885628746],[121,283,73,-0.014552740461026446],[121,283,74,-0.006344300515817202],[121,283,75,-0.01158493411261116],[121,283,76,-0.027951603721348407],[121,283,77,-0.03573275596310065],[121,283,78,-0.03792768492344596],[121,283,79,-0.037563667204107296],[121,284,64,-0.04335873006436967],[121,284,65,-0.03617834257953547],[121,284,66,-0.010950776605318123],[121,284,67,0.007571749800309912],[121,284,68,0.010121713252193399],[121,284,69,0.0018017539961831112],[121,284,70,-0.008369569712210674],[121,284,71,-0.015945583369691332],[121,284,72,-0.018854652546130626],[121,284,73,-0.014256687198223102],[121,284,74,-0.006051495491463369],[121,284,75,-0.011172834158624639],[121,284,76,-0.02737849770037509],[121,284,77,-0.035169922800942194],[121,284,78,-0.03743657166416183],[121,284,79,-0.03709544099048061],[121,285,64,-0.04297515367085789],[121,285,65,-0.035897438062207236],[121,285,66,-0.010895831945194433],[121,285,67,0.007526063894926342],[121,285,68,0.009972838973823742],[121,285,69,0.0016463906740169256],[121,285,70,-0.008424216012404557],[121,285,71,-0.015825447488924962],[121,285,72,-0.01862709210989042],[121,285,73,-0.013972802526215028],[121,285,74,-0.005767488614493204],[121,285,75,-0.010773204812255839],[121,285,76,-0.02682695887122906],[121,285,77,-0.034633124068186104],[121,285,78,-0.03697137134313552],[121,285,79,-0.03665137637003953],[121,286,64,-0.04261161826421196],[121,286,65,-0.03563516107192443],[121,286,66,-0.010851447429507615],[121,286,67,0.007478189289488692],[121,286,68,0.009825111959307794],[121,286,69,0.0014900059323862175],[121,286,70,-0.008483209353133995],[121,286,71,-0.015713231235489507],[121,286,72,-0.018410688823606337],[121,286,73,-0.01370074654487061],[121,286,74,-0.005491851724919308],[121,286,75,-0.010385504708658715],[121,286,76,-0.026296412416831498],[121,286,77,-0.03412185574135357],[121,286,78,-0.03653169261644701],[121,286,79,-0.03623115502297998],[121,287,64,-0.04226803946335747],[121,287,65,-0.03539145093157169],[121,287,66,-0.010817535959422706],[121,287,67,0.0074282543060854205],[121,287,68,0.009678575989576247],[121,287,69,0.0013325493008826811],[121,287,70,-0.00854662709148498],[121,287,71,-0.015608903249835496],[121,287,72,-0.018205266839132817],[121,287,73,-0.013440184648313057],[121,287,74,-0.005224160815814372],[121,287,75,-0.01000919593242464],[121,287,76,-0.02578628738104877],[121,287,77,-0.03363562244214362],[121,287,78,-0.03611715451078169],[121,287,79,-0.03583446553485298],[121,288,64,-0.04194433283467333],[121,288,65,-0.035166251884095015],[121,288,66,-0.010794023398768154],[121,288,67,0.007376375314461432],[121,288,68,0.009533263271118725],[121,288,69,0.0011739587877411981],[121,288,70,-0.008614553727448892],[121,288,71,-0.015512433444462605],[121,288,72,-0.01801065230081885],[121,288,73,-0.013190787607447664],[121,288,74,-0.004963995998757868],[121,288,75,-0.009643744055498248],[121,288,76,-0.025296017036430838],[121,288,77,-0.03317393790956538],[121,288,78,-0.03572738680153428],[121,288,79,-0.03546100381262034],[121,289,64,-0.04164041267475651],[121,289,65,-0.03495951201149998],[121,289,66,-0.010780847669163898],[121,289,67,0.007322657470702883],[121,289,68,0.009389195617039776],[121,289,69,0.0010141626570786865],[121,289,70,-0.008687078709609851],[121,289,71,-0.015423790830173641],[121,289,72,-0.017826671825221567],[121,289,73,-0.012952231055510783],[121,289,74,-0.004710941393379883],[121,289,75,-0.009288618059316738],[121,289,76,-0.024825038956714136],[121,289,77,-0.03273632513387996],[121,289,78,-0.03536203035415129],[121,289,79,-0.035110473945862294],[121,290,64,-0.04135617852494083],[121,290,65,-0.03477117137379823],[121,290,66,-0.010777950785835428],[121,290,67,0.0072671996942812],[121,290,68,0.009246391378353817],[121,290,69,8.530915615491615E-4],[121,290,70,-0.008764279305966],[121,290,71,-0.01534292543522734],[121,290,72,-0.017653139965489846],[121,290,73,-0.012724191237524152],[121,290,74,-0.0044645849995099554],[121,290,75,-0.008943290058430151],[121,290,76,-0.024372793741552247],[121,290,77,-0.032322314820295184],[121,290,78,-0.035020737786958356],[121,290,79,-0.03478259267206575],[121,291,64,-0.041091523661927566],[121,291,65,-0.03460116940164415],[121,291,66,-0.010785283378480675],[121,291,67,0.007210092447961516],[121,291,68,0.009104862782711021],[121,291,69,6.906730865230415E-4],[121,291,70,-0.00884622911122047],[121,291,71,-0.015269777755068999],[121,291,72,-0.01748986606346305],[121,291,73,-0.012506347841697758],[121,291,74,-0.004224519381147675],[121,291,75,-0.008607236186546194],[121,291,76,-0.023938726834930805],[121,291,77,-0.03193144734392575],[121,291,78,-0.03470317396361798],[121,291,79,-0.034477087832191784],[121,292,64,-0.04084634397202035],[121,292,65,-0.03444945264971693],[121,292,66,-0.010802809504609904],[121,292,67,0.007151415172313831],[121,292,68,0.008964612658818661],[121,292,69,5.268253418869222E-4],[121,292,70,-0.00893300775952468],[121,292,71,-0.015204289303034687],[121,292,72,-0.01733666161465638],[121,292,73,-0.01229838662751195],[121,292,74,-0.003990341787824725],[121,292,75,-0.00827993687555209],[121,292,76,-0.023522289794979338],[121,292,77,-0.03156327425873999],[121,292,78,-0.03440901604686956],[121,292,79,-0.034193696270914835],[121,293,64,-0.04062053831627503],[121,293,65,-0.03431597509134807],[121,293,66,-0.010830506620707406],[121,293,67,0.007091236509049018],[121,293,68,0.008825634852530276],[121,293,69,3.6145731293556747E-4],[121,293,70,-0.009024700775048548],[121,293,71,-0.015146402539028344],[121,293,72,-0.017193340116727875],[121,293,73,-0.012099999261650165],[121,293,74,-0.0037616539003459556],[121,293,75,-0.007960876605074163],[121,293,76,-0.023122940259058707],[121,293,77,-0.031217358341131846],[121,293,78,-0.034137953510189493],[121,293,79,-0.03393216395789714],[121,294,64,-0.04041400878196282],[121,294,65,-0.03420069831044394],[121,294,66,-0.010868365481955975],[121,294,67,0.0070296145671362486],[121,294,68,0.00868791468560568],[121,294,69,1.9446927839536493E-4],[121,294,70,-0.009121399321621223],[121,294,71,-0.015096060671498959],[121,294,72,-0.017059716808957653],[121,294,73,-0.011910883091798741],[121,294,74,-0.0035380615458131593],[121,294,75,-0.0076495436080641875],[121,294,76,-0.022740141832896126],[121,294,77,-0.030893273546211866],[121,294,78,-0.03388968808046382],[121,294,79,-0.03369224607016026],[121,295,64,-0.04022666089748841],[121,295,65,-0.034103591658150155],[121,295,66,-0.010916390014355794],[121,295,67,0.006966597205819376],[121,295,68,0.00855142942275307],[121,295,69,2.5753232819588636E-5],[121,295,70,-0.009223199942773834],[121,295,71,-0.015053207430345208],[121,295,72,-0.016935608370858467],[121,295,73,-0.011730740883186947],[121,295,74,-0.0033191743852194],[121,295,75,-0.007345429537091451],[121,295,76,-0.022373363914443768],[121,295,77,-0.030590604887904042],[121,295,78,-0.03366393360888958],[121,295,79,-0.03347370701202823],[121,296,64,-0.040058403809410385],[121,296,65,-0.03402463237280062],[121,296,66,-0.010974597158094944],[121,296,67,0.0069022223349391775],[121,296,68,0.008416148747670485],[121,296,69,-1.4480668555602315E-4],[121,296,70,-0.00933020429086928],[121,296,71,-0.015017786809132757],[121,296,72,-0.016820832578362685],[121,296,73,-0.011559280517636604],[121,296,74,-0.0031046055745823013],[121,296,75,-0.007048029092490027],[121,296,76,-0.02202208145256238],[121,296,77,-0.030308948241659535],[121,296,78,-0.033460415868016735],[121,296,79,-0.03327632037081683],[121,297,64,-0.03990915042025555],[121,297,65,-0.03396380566166109],[121,297,66,-0.01104301668083011],[121,297,67,0.006836518233183569],[121,297,68,0.008282035249028145],[121,297,69,-3.1733376021077426E-4],[121,297,70,-0.009442518843888198],[121,297,71,-0.014989742774956431],[121,297,72,-0.016715207915968977],[121,297,73,-0.01139621465482779],[121,297,74,-0.002893971400581849],[121,297,75,-0.006756839613542345],[121,297,76,-0.021685774640645937],[121,297,77,-0.03004791006849247],[121,297,78,-0.033278872272695804],[121,297,79,-0.03309986880640347],[121,298,64,-0.03977881756684726],[121,298,65,-0.033921104822823116],[121,298,66,-0.011121691038145615],[121,298,67,0.0067695038073336935],[121,298,68,0.00814904484079258],[121,298,69,-4.919583292868594E-4],[121,298,70,-0.009560254683151088],[121,298,71,-0.014969019018127694],[121,298,72,-0.016618553216178274],[121,298,73,-0.01124126042757868],[121,298,74,-0.0026868909629976807],[121,298,75,-0.006471360704451716],[121,298,76,-0.02136392861509373],[121,298,77,-0.029807107127977378],[121,298,78,-0.03311905159090245],[121,298,79,-0.032944143940469184],[121,299,64,-0.03966734147741526],[121,299,65,-0.03389654643298369],[121,299,66,-0.011210690099930327],[121,299,67,0.006701174174333168],[121,299,68,0.008017112694577465],[121,299,69,-6.68831718435566E-4],[121,299,70,-0.009683541380649347],[121,299,71,-0.014955572612650998],[121,299,72,-0.01653070102582196],[121,299,73,-0.011094152706972843],[121,299,74,-0.0024829992824424107],[121,299,75,-0.006191107121592788],[121,299,76,-0.02105604623819624],[121,299,77,-0.029586179118830658],[121,299,78,-0.03298072644935136],[121,299,79,-0.03280895892481616],[121,300,64,-0.03957469851370265],[121,300,65,-0.033890190715150585],[121,300,66,-0.011310130962575321],[121,300,67,0.006631481241624294],[121,300,68,0.007886134258212487],[121,300,69,-8.481449980871246E-4],[121,300,70,-0.009812545616829801],[121,300,71,-0.014949392301598894],[121,300,72,-0.01645151550372357],[121,300,73,-0.010954661830283602],[121,300,74,-0.002281964811749476],[121,300,75,-0.005915625981336614],[121,300,76,-0.020761665100783734],[121,300,77,-0.029384805454321317],[121,300,78,-0.0328637099102405],[121,300,79,-0.032694165032297134],[121,301,64,-0.03950087930474319],[121,301,65,-0.033902115941676116],[121,301,66,-0.01142015243158533],[121,301,67,0.006560358990877438],[121,301,68,0.007755990376910296],[121,301,69,-0.0010301042165600774],[121,301,70,-0.009947446827018137],[121,301,71,-0.014950474330395534],[121,301,72,-0.01638086837550045],[121,301,73,-0.010822569899332892],[121,301,74,-0.002083466018206575],[121,301,75,-0.00564447349135656],[121,301,76,-0.020480334458912654],[121,301,77,-0.029202682374486783],[121,301,78,-0.03276783278667625],[121,301,79,-0.03259962938230384],[121,302,64,-0.03944588492349709],[121,302,65,-0.033932414605539245],[121,302,66,-0.011540911011536653],[121,302,67,0.006487727499553295],[121,302,68,0.007626551399648734],[121,302,69,-0.0012149264031536071],[121,302,70,-0.010088433373317135],[121,302,71,-0.014958818553408276],[121,302,72,-0.016318634926056334],[121,302,73,-0.01069766691341839],[121,302,74,-0.0018871876121714095],[121,302,75,-0.00537721111902557],[121,302,76,-0.020211611382856542],[121,302,77,-0.02903951906569369],[121,302,78,-0.03269293978929444],[121,302,79,-0.032525231346198905],[121,303,64,-0.039409727206438434],[121,303,65,-0.0339811936779027],[121,303,66,-0.011672580934314008],[121,303,67,0.006413492960125257],[121,303,68,0.00749767732763402],[121,303,69,-0.0014028394817697852],[121,303,70,-0.010235702574508647],[121,303,71,-0.014974428332007073],[121,303,72,-0.016264693727184767],[121,303,73,-0.010579750608404574],[121,303,74,-0.0016928204616689366],[121,303,75,-0.005113405396577148],[121,303,76,-0.019955060469662726],[121,303,77,-0.028895037282565865],[121,303,78,-0.03263888913700476],[121,303,79,-0.03247086239862804],[121,304,64,-0.0393924290763244],[121,304,65,-0.034048574866133934],[121,304,66,-0.011815354192213036],[121,304,67,0.006337547677715133],[121,304,68,0.007369217935175656],[121,304,69,-0.0015940822137992853],[121,304,70,-0.01038946076070479],[121,304,71,-0.014997310436971922],[121,304,72,-0.016218926357532314],[121,304,73,-0.010468626303304602],[121,304,74,-0.001500061537205356],[121,304,75,-0.004852627747219016],[121,304,76,-0.01971025353996399],[121,304,77,-0.02876897092675736],[121,304,78,-0.03260555211968087],[121,304,79,-0.032436425936444815],[121,305,64,-0.039394024868648195],[121,305,65,-0.03413469487197043],[121,305,66,-0.011969440574452416],[121,305,67,0.006259770046949009],[121,305,68,0.007241012863888708],[121,305,69,-0.0017889041693713735],[121,305,70,-0.010549923352350821],[121,305,71,-0.01502747495498223],[121,305,72,-0.016181217114545152],[121,305,73,-0.010364106755188885],[121,305,74,-0.0013086138894112178],[121,305,75,-0.0045944543352617806],[121,305,76,-0.019476769320704062],[121,305,77,-0.02866106558172174],[121,305,78,-0.03259281261085401],[121,305,79,-0.03242183706464633],[121,306,64,-0.03941456066235521],[121,306,65,-0.03423970564951646],[121,306,66,-0.01213506770549727],[121,306,67,0.0061800245089923215],[121,306,68,0.007112891691222097],[121,306,69,-0.0019875657260597437],[121,306,70,-0.010717314963249716],[121,306,71,-0.015064935199017797],[121,306,72,-0.01615145271809614],[121,306,73,-0.010266012023301886],[121,306,74,-0.001118186662238233],[121,306,75,-0.0043384659434590085],[121,306,76,-0.019254193115509452],[121,306,77,-0.028571078002581397],[121,306,78,-0.0326005665284326],[121,306,79,-0.03242702234880859],[121,307,64,-0.03945409461546822],[121,307,65,-0.03436377466275401],[121,307,66,-0.012312481083453342],[121,307,67,0.006098161489859786],[121,307,68,0.006984673974386759],[121,307,69,-0.002190338094125105],[121,307,70,-0.010891869527346394],[121,307,71,-0.015109707622599852],[121,307,72,-0.016129522005563474],[121,307,73,-0.010174169343306904],[121,307,74,-9.284951445363027E-4],[121,307,75,-0.0040842478808885896],[121,307,76,-0.019042116464516316],[121,307,77,-0.028498775560129717],[121,307,78,-0.03262872124141136],[121,307,79,-0.0324519195335922],[121,308,64,-0.039512697306342964],[121,308,65,-0.03450708514225859],[121,308,66,-0.012501944116661761],[121,308,67,0.006014017321235191],[121,308,68,0.00685616927081647],[121,308,69,-0.0023975033673942106],[121,308,70,-0.011073830449102259],[121,308,71,-0.015161811737914931],[121,308,72,-0.016115315618221302],[121,308,73,-0.010088413012631295],[121,308,74,-7.392608629520269E-4],[121,308,75,-0.003831389924842063],[121,308,76,-0.01884013679553405],[121,308,77,-0.028443935637950654],[121,308,78,-0.03267719492050415],[121,308,79,-0.0324964772269893],[121,309,64,-0.03959045208131686],[121,309,65,-0.03466983634078807],[121,309,66,-0.012703738156472572],[121,309,67,0.005927414145188814],[121,309,68,0.006727177136368436],[121,309,69,-0.002609354598877588],[121,309,70,-0.011263450777365624],[121,309,71,-0.015221270037963136],[121,309,72,-0.01610872567887939],[121,309,73,-0.010008584287915373],[121,309,74,-5.502117191773165E-4],[121,309,75,-0.0035794863003028496],[121,309,76,-0.018647857068484187],[121,309,77,-0.028406344981569517],[121,309,78,-0.032745915830593886],[121,309,79,-0.03256065455007299],[121,310,64,-0.039687455409551056],[121,310,65,-0.03485224378739178],[121,310,66,-0.012918162524036469],[121,310,67,0.0058381598043228955],[121,310,68,0.0065974871025244455],[121,310,69,-0.002826195900251965],[121,310,70,-0.0114609934027351],[121,310,71,-0.015288107922977854],[121,310,72,-0.016109645460789607],[121,310,73,-0.009934531295602416],[121,310,74,-3.6108217466450555E-4],[121,310,75,-0.003328135700704895],[121,310,76,-0.018464885415099906],[121,310,77,-0.028385798998474557],[121,310,78,-0.0328348215628495],[121,310,79,-0.03264442075209655],[121,311,64,-0.03980381724590611],[121,311,65,-0.035054539539667307],[121,311,66,-0.013145534528815117],[121,311,67,0.005746047719021855],[121,311,68,0.00646687863390835],[121,311,69,-0.0030483425643629686],[121,311,70,-0.011666731278508998],[121,311,71,-0.015362353631480526],[121,311,72,-0.016117969047933493],[121,311,73,-0.009866108956747777],[121,311,74,-1.7161348601314595E-4],[121,311,75,-0.0030769413537772555],[121,311,76,-0.018290834775931013],[121,311,77,-0.02838210100779941],[121,311,78,-0.03294385820435046],[121,311,79,-0.03274775479090286],[121,312,64,-0.03993966140269136],[121,312,65,-0.035276972433742664],[121,312,66,-0.013386189476365105],[121,312,67,0.005650856753633063],[121,312,68,0.006335121067486061],[121,312,69,-0.003276121209933252],[121,312,70,-0.01188094766540346],[121,312,71,-0.015444038176431817],[121,312,72,-0.016133590986882468],[121,312,73,-0.00980317892714303],[121,312,74,1.844600570836586E-5],[121,312,75,-0.0028255111363602895],[121,312,76,-0.01812532253672198],[121,312,77,-0.028395061438374836],[121,312,78,-0.033072979443024696],[121,312,79,-0.032870644878689924],[121,313,64,-0.040095125931129356],[121,313,65,-0.03551980833151694],[121,313,66,-0.013640480662806185],[121,313,67,0.005552351073557812],[121,313,68,0.006201973534866287],[121,313,69,-0.003509869947696496],[121,313,70,-0.012103936400314094],[121,313,71,-0.015533195287047394],[121,313,72,-0.016156405930510986],[121,313,73,-0.009745609553874197],[121,313,74,2.0934052838487337E-4],[121,313,75,-0.002573457742161129],[121,313,76,-0.017967970166263506],[121,313,77,-0.02842449697379768],[121,313,78,-0.033222145605701574],[121,313,79,-0.033013087993285214],[121,314,64,-0.04027036351336465],[121,314,65,-0.03578333036463863],[121,314,66,-0.013908779353253011],[121,314,67,0.005450279995373607],[121,314,68,0.006067184869154108],[121,314,69,-0.003749938567226819],[121,314,70,-0.012336002189497543],[121,314,71,-0.015629861356956928],[121,314,72,-0.016186308273941828],[121,314,73,-0.009693275849457336],[121,314,74,4.013064716513984E-4],[121,314,75,-0.002320398906485683],[121,314,76,-0.017818402857845063],[121,314,77,-0.028470229643115966],[121,314,78,-0.0333913226270911],[121,314,79,-0.0331750893551939],[121,315,64,-0.04046554186580124],[121,315,65,-0.036067839174621336],[121,315,66,-0.014191474741345793],[121,315,67,0.005344377832259878],[121,315,68,0.005930493497851025],[121,315,69,-0.003996688743775641],[121,315,70,-0.0125774609266348],[121,315,71,-0.015734075399476254],[121,315,72,-0.016223191783180105],[121,315,73,-0.009646059484695024],[121,315,74,5.945719156796052E-4],[121,315,75,-0.002065957692022431],[121,315,76,-0.017676249176431756],[121,315,77,-0.028532085855656905],[121,315,78,-0.0335804809475003],[121,315,79,-0.03335666187078152],[121,316,64,-0.04068084415449936],[121,316,65,-0.03637365314841817],[121,316,66,-0.014488973886876064],[121,316,67,0.005234363737157187],[121,316,68,0.00579162732333882],[121,316,69,-0.004250494264470756],[121,316,70,-0.01282864003632373],[121,316,71,-0.015845879010861316],[121,316,72,-0.01626694921698779],[121,316,73,-0.0096038488014035],[121,316,74,7.893560925595982E-4],[121,316,75,-0.0018097628397849288],[121,316,76,-0.01754114071370036],[121,316,77,-0.0286098953784901],[121,316,78,-0.03378959433714188],[121,316,79,-0.03355782554207197],[121,317,64,-0.04091646942329245],[121,317,65,-0.03670110864868555],[121,317,66,-0.014801701628384989],[121,317,67,0.005119941546219249],[121,317,68,0.005650303592497889],[121,317,69,-0.004511741273296981],[121,317,70,-0.013089878843641456],[121,317,71,-0.01596531634250767],[121,317,72,-0.016317471942643696],[121,317,73,-0.009566538846159687],[121,317,74,9.858687768927391E-4],[121,317,75,-0.001551449189329552],[121,317,76,-0.01741271175305348],[121,317,77,-0.028703490254973336],[121,317,78,-0.03401863864492849],[121,317,79,-0.03377860684375182],[121,318,64,-0.04117263303517907],[121,318,65,-0.03705056023785297],[121,318,66,-0.015130100467472611],[121,318,67,0.005000799625276455],[121,318,68,0.00550622875705268],[121,318,69,-0.004780828534317625],[121,318,70,-0.013361528970483143],[121,318,71,-0.016092434083138787],[121,318,72,-0.016374649546318204],[121,318,73,-0.009534031426197548],[121,318,74,0.0011843096022551597],[121,318,75,-0.0012906581723431333],[121,318,76,-0.017290598946709465],[121,318,77,-0.028812703662800077],[121,318,78,-0.03426759046971451],[121,318,79,-0.034019038068087315],[121,319,64,-0.04144955509869031],[121,319,65,-0.03742236758407177],[121,319,66,-0.015474630157950005],[121,319,67,0.004876600665878056],[121,319,68,0.005359089672593982],[121,319,69,-0.00505816123797386],[121,319,70,-0.013643943071799535],[121,319,71,-0.01622727599521396],[121,319,72,-0.01643836377791171],[121,319,73,-0.009506226374292976],[121,319,74,0.0013848714913864328],[121,319,75,-0.0010270350782226817],[121,319,76,-0.01717443545046583],[121,319,77,-0.028937364096972853],[121,319,78,-0.034536421083033404],[121,319,79,-0.03427915349355416],[122,-64,64,-0.44208064873384095],[122,-64,65,-0.3597633695019145],[122,-64,66,-0.3455487993395317],[122,-64,67,-0.3050021344278037],[122,-64,68,-0.2799585068293784],[122,-64,69,-0.2575107175681578],[122,-64,70,-0.22268497418858693],[122,-64,71,-0.15797756659452358],[122,-64,72,-0.12803874023428996],[122,-64,73,-0.16738284371546003],[122,-64,74,-0.13503545301367098],[122,-64,75,-0.18075177684845264],[122,-64,76,-0.3032793869821544],[122,-64,77,-0.32780121949758045],[122,-64,78,-0.22719702091942068],[122,-64,79,-0.08546771199196934],[122,-63,64,-0.4353424953508869],[122,-63,65,-0.35499996671617456],[122,-63,66,-0.34172682001127946],[122,-63,67,-0.3014450151989439],[122,-63,68,-0.27605440988109015],[122,-63,69,-0.2530472670668545],[122,-63,70,-0.21844450047896724],[122,-63,71,-0.15452250337615503],[122,-63,72,-0.12504221238764712],[122,-63,73,-0.16441484898576378],[122,-63,74,-0.13348277529791439],[122,-63,75,-0.17877555044469462],[122,-63,76,-0.2991014369119624],[122,-63,77,-0.32279023215963154],[122,-63,78,-0.22432791603732968],[122,-63,79,-0.08554854591970724],[122,-62,64,-0.42871426715305183],[122,-62,65,-0.35031013532429545],[122,-62,66,-0.3379527703076988],[122,-62,67,-0.2979415623449685],[122,-62,68,-0.27221289783689256],[122,-62,69,-0.2486732704484363],[122,-62,70,-0.21430344780205327],[122,-62,71,-0.15116750829534434],[122,-62,72,-0.12214996054692655],[122,-62,73,-0.1615413997799966],[122,-62,74,-0.1319920299854072],[122,-62,75,-0.17685385762444575],[122,-62,76,-0.2949978002920553],[122,-62,77,-0.31787665756165484],[122,-62,78,-0.22152150055672462],[122,-62,79,-0.08563939793183499],[122,-61,64,-0.4221931784376201],[122,-61,65,-0.34569128284843825],[122,-61,66,-0.3342239436761389],[122,-61,67,-0.29448881606467375],[122,-61,68,-0.2684313144263959],[122,-61,69,-0.244385719261552],[122,-61,70,-0.21025884502876158],[122,-61,71,-0.14790995582723912],[122,-61,72,-0.11935894125530878],[122,-61,73,-0.1587593349954424],[122,-61,74,-0.1305603700566309],[122,-61,75,-0.17498413801848034],[122,-61,76,-0.29096607095534577],[122,-61,77,-0.31305765984020323],[122,-61,78,-0.21877522485360096],[122,-61,79,-0.08573843885474033],[122,-60,64,-0.41577632246774693],[122,-60,65,-0.34114070996072776],[122,-60,66,-0.3305375352444633],[122,-60,67,-0.29108372668499655],[122,-60,68,-0.2647069167698643],[122,-60,69,-0.24018154761654137],[122,-60,70,-0.20630769102632776],[122,-60,71,-0.1447472131088547],[122,-60,72,-0.11666614553285788],[122,-60,73,-0.1560655273956619],[122,-60,74,-0.12918497978242333],[122,-60,75,-0.17316381821312501],[122,-60,76,-0.2870037648113895],[122,-60,77,-0.30833031776323583],[122,-60,78,-0.21608650898696846],[122,-60,79,-0.08584386802979652],[122,-59,64,-0.409460694070231],[122,-59,65,-0.3366556669716854],[122,-59,66,-0.32689073266338536],[122,-59,67,-0.2877232625502717],[122,-59,68,-0.2610369825817484],[122,-59,69,-0.23605771850701607],[122,-59,70,-0.20244699264097404],[122,-59,71,-0.14167662610990123],[122,-59,72,-0.11406855553799454],[122,-59,73,-0.15345683590341222],[122,-59,74,-0.12786303898232831],[122,-59,75,-0.17139030749486706],[122,-59,76,-0.28310834330947343],[122,-59,77,-0.3036916534892243],[122,-59,78,-0.21345275590916873],[122,-59,79,-0.08595391248718695],[122,-58,64,-0.4032431925306987],[122,-58,65,-0.33223335407944726],[122,-58,66,-0.32328071373765255],[122,-58,67,-0.2844044074765903],[122,-58,68,-0.25741880811355944],[122,-58,69,-0.2320112226120399],[122,-58,70,-0.19867376517489463],[122,-58,71,-0.13869552219400363],[122,-58,72,-0.11156314715351404],[122,-58,73,-0.1509301073220516],[122,-58,74,-0.1265917232988047],[122,-58,75,-0.1696609977060491],[122,-58,76,-0.2792772138326932],[122,-58,77,-0.29913863351958453],[122,-58,78,-0.21087135042018948],[122,-58,79,-0.0860668236534421],[122,-57,64,-0.3971206244472153],[122,-57,65,-0.3278709215914848],[122,-57,66,-0.3197046440767549],[122,-57,67,-0.2811241581924475],[122,-57,68,-0.25384970613889557],[122,-57,69,-0.2280390771318355],[122,-57,70,-0.19498503279730475],[122,-57,71,-0.13580121247671492],[122,-57,72,-0.10914689230210155],[122,-57,73,-0.14848217780784584],[122,-57,74,-0.12536820419679282],[122,-57,75,-0.1679732628914078],[122,-57,76,-0.27550773004628254],[122,-57,77,-0.2946681695966791],[122,-57,78,-0.2083396580450705],[122,-57,79,-0.08618087395631788],[122,-56,64,-0.39108970656680875],[122,-56,65,-0.32356547016551906],[122,-56,66,-0.3161596748371405],[122,-56,67,-0.27787952184595704],[122,-56,68,-0.2503270040502857],[122,-56,69,-0.22413832470831388],[122,-56,70,-0.19137782891499922],[122,-56,71,-0.13299099397836536],[122,-56,72,-0.1068167609791985],[122,-56,73,-0.14610987408625542],[122,-56,74,-0.12418964869682148],[122,-56,75,-0.16632445875913524],[122,-56,76,-0.2717971922276847],[122,-56,77,-0.29027711957370467],[122,-56,78,-0.20585502385945953],[122,-56,79,-0.0862943533524807],[122,-55,64,-0.38514706862229203],[122,-55,65,-0.3193140510912116],[122,-55,66,-0.31264294058451575],[122,-55,67,-0.27466751360709296],[122,-55,68,-0.24684804208611888],[122,-55,69,-0.2203060324408278],[122,-55,70,-0.18784919651120563],[122,-55,71,-0.1302621515792823],[122,-55,72,-0.10456972301469566],[122,-55,73,-0.14381001443058342],[122,-55,74,-0.12305321886846697],[122,-55,75,-0.16471192198343948],[122,-55,76,-0.2681428475964098],[122,-55,77,-0.28596228827139714],[122,-55,78,-0.20341477128281624],[122,-55,79,-0.0864055658025973],[122,-54,64,-0.3792892561886962],[122,-54,65,-0.3151136666354483],[122,-54,66,-0.3091515573053443],[122,-54,67,-0.2714851543936628],[122,-54,68,-0.24341017170603235],[122,-54,69,-0.21653929100784813],[122,-54,70,-0.1843961884622748],[122,-54,71,-0.12761195978621856],[122,-54,72,-0.1024027495763775],[122,-54,73,-0.1415794094228986],[122,-54,74,-0.12195607111222202],[122,-54,75,-0.16313296937676075],[122,-54,76,-0.2645418906632821],[122,-54,77,-0.281720428338349],[122,-54,78,-0.20101620085997599],[122,-54,79,-0.08651282571871088],[122,-53,64,-0.373513047259828],[122,-53,65,-0.31096153648984826],[122,-53,66,-0.3056828869138054],[122,-53,67,-0.26832970678165463],[122,-53,68,-0.24001097087715162],[122,-53,69,-0.21283540952894753],[122,-53,70,-0.18101603714640388],[122,-53,71,-0.12503780330085576],[122,-53,72,-0.10031291152288623],[122,-53,73,-0.13941499974958063],[122,-53,74,-0.12089547625635134],[122,-53,75,-0.16158506136111755],[122,-53,76,-0.26099173350362476],[122,-53,77,-0.2775485327757736],[122,-53,78,-0.19865680112840317],[122,-53,79,-0.08661454833099377],[122,-52,64,-0.36781755274610295],[122,-52,65,-0.3068568829817418],[122,-52,66,-0.30223632783060406],[122,-52,67,-0.26520027329014745],[122,-52,68,-0.23664969343687503],[122,-52,69,-0.20919321660044904],[122,-52,70,-0.1777072786110084],[122,-52,71,-0.12253796560437336],[122,-52,72,-0.09829802250519241],[122,-52,73,-0.1373147720032937],[122,-52,74,-0.11986963484206416],[122,-52,75,-0.1600669080738376],[122,-52,76,-0.25749181036854923],[122,-52,77,-0.27344578025525323],[122,-52,78,-0.19633566879634315],[122,-52,79,-0.08670988969726617],[122,-51,64,-0.36220294447978063],[122,-51,65,-0.30279986567045014],[122,-51,66,-0.2988122603094602],[122,-51,67,-0.2620968491790403],[122,-51,68,-0.23332639025940782],[122,-51,69,-0.2056122482166044],[122,-51,70,-0.17446904411083766],[122,-51,71,-0.12011112607074444],[122,-51,72,-0.09635622827343054],[122,-51,73,-0.13527719695440196],[122,-51,74,-0.11887720439603944],[122,-51,75,-0.15857782137155538],[122,-51,76,-0.2540424805502545],[122,-51,77,-0.2694123366747121],[122,-51,78,-0.1940526549461554],[122,-51,79,-0.08679840232690952],[122,-50,64,-0.35666935477281747],[122,-50,65,-0.29879065008290445],[122,-50,66,-0.29541111505682205],[122,-50,67,-0.2590194887893527],[122,-50,68,-0.2300411463685983],[122,-50,69,-0.20209205570176939],[122,-50,70,-0.17130046148122058],[122,-50,71,-0.1177559405230517],[122,-50,72,-0.0944856655330624],[122,-50,73,-0.1333007495254273],[122,-50,74,-0.11791688085100172],[122,-50,75,-0.15711714317391956],[122,-50,76,-0.25064408091810403],[122,-50,77,-0.2654483290277452],[122,-50,78,-0.19180762240671792],[122,-50,79,-0.08687971301687132],[122,-49,64,-0.35121687186721934],[122,-49,65,-0.29482940223160786],[122,-49,66,-0.29203336528375595],[122,-49,67,-0.2559682982297028],[122,-49,68,-0.22679407448584385],[122,-49,69,-0.1986322010976176],[122,-49,70,-0.16820065317722846],[122,-49,71,-0.11547104280881665],[122,-49,72,-0.09268446459850838],[122,-49,73,-0.1313839097412464],[122,-49,74,-0.11698739837897486],[122,-49,75,-0.15568424350386403],[122,-49,76,-0.2472969217949092],[122,-49,77,-0.26155384191804293],[122,-49,78,-0.18960044223660294],[122,-49,79,-0.08695351940947024],[122,-48,64,-0.3458455413932818],[122,-48,65,-0.2909162881890657],[122,-48,66,-0.2886795238067358],[122,-48,67,-0.252943432553748],[122,-48,68,-0.2235853127442852],[122,-48,69,-0.19523225633454708],[122,-48,70,-0.16516873753165726],[122,-48,71,-0.1132550485380434],[122,-48,72,-0.09095075370554324],[122,-48,73,-0.12952516608801906],[122,-48,74,-0.1160875312600595],[122,-48,75,-0.15427852146041632],[122,-48,76,-0.24400128797346327],[122,-48,77,-0.25772891964245614],[122,-48,78,-0.18743099417692785],[122,-48,79,-0.08701958817067508],[122,-47,64,-0.3405553678116583],[122,-47,65,-0.28705147362648664],[122,-47,66,-0.2853501401176907],[122,-47,67,-0.24994509288831204],[122,-47,68,-0.22041502242039918],[122,-47,69,-0.19189180242489684],[122,-47,70,-0.1622038299674223],[122,-47,71,-0.11110655868038696],[122,-47,72,-0.0892826631025513],[122,-47,73,-0.1277230186432222],[122,-47,74,-0.11521609548440218],[122,-47,75,-0.15289940599054477],[122,-47,76,-0.24075743969377053],[122,-47,77,-0.25397356823275413],[122,-47,78,-0.1852991670144515],[122,-47,79,-0.0870777530283504],[122,-46,64,-0.33534631583702446],[122,-46,65,-0.2832351233215526],[122,-46,66,-0.28204579743694486],[122,-46,67,-0.2469735235269107],[122,-46,68,-0.21728338569230157],[122,-46,69,-0.1886104286814666],[122,-46,70,-0.15930504416416133],[122,-46,71,-0.10902416301705625],[122,-46,72,-0.08767832891808024],[122,-46,73,-0.12597598197867782],[122,-46,74,-0.11437195009703253],[122,-46,75,-0.15154635647044337],[122,-46,76,-0.23756561358354403],[122,-46,77,-0.2502877574549467],[122,-46,78,-0.18320485886183016],[122,-46,79,-0.08712791268752625],[122,-45,64,-0.33021831184118744],[122,-45,65,-0.27946740063987213],[122,-45,66,-0.27876710976205926],[122,-45,67,-0.24402900900272678],[122,-45,68,-0.21419060343341473],[122,-45,69,-0.18538773196444877],[122,-45,70,-0.15647149317885467],[122,-45,71,-0.10700644344363233],[122,-45,72,-0.0861358968028878],[122,-45,73,-0.12428258783903123],[122,-45,74,-0.11355399829555059],[122,-45,75,-0.15021886310668325],[122,-45,76,-0.23442602356442094],[122,-45,77,-0.24667142276513945],[122,-45,78,-0.18114797736178884],[122,-45,79,-0.08717002863920545],[122,-44,64,-0.32517124523385915],[122,-44,65,-0.2757484669948781],[122,-44,66,-0.275514718925353],[122,-44,67,-0.24111187115482346],[122,-44,68,-0.21113689304996483],[122,-44,69,-0.18222331595996594],[122,-44,70,-0.15370229052069512],[122,-44,71,-0.10505197712079131],[122,-44,72,-0.084653525345642],[122,-44,73,-0.12264138759893002],[122,-44,74,-0.11276118829116541],[122,-44,75,-0.14891644716796],[122,-44,76,-0.231338861726611],[122,-44,77,-0.24312446722136657],[122,-44,78,-0.17912843982217952],[122,-44,79,-0.08720412287903677],[122,-43,64,-0.3202049698195932],[122,-43,65,-0.2720784812908944],[122,-43,66,-0.272289291672344],[122,-43,67,-0.23822246620081436],[122,-43,68,-0.2081224863702331],[122,-43,69,-0.179116790493154],[122,-43,70,-0.15099655118059313],[122,-43,71,-0.10315933947064282],[122,-43,72,-0.0832293892623177],[122,-43,73,-0.12105095450281046],[122,-43,74,-0.1119925139439247],[122,-43,75,-0.14763866105823062],[122,-43,76,-0.22830429917466158],[122,-43,77,-0.2396467633510364],[122,-43,78,-0.17714617328878005],[122,-43,79,-0.0872302755516465],[122,-42,64,-0.31531930512932854],[122,-42,65,-0.26845759935379504],[122,-42,66,-0.2690915167726273],[122,-42,67,-0.2353611818284643],[122,-42,68,-0.20514762759285055],[122,-42,69,-0.17606777087839448],[122,-42,70,-0.14835339261571534],[122,-42,71,-0.10132710701681544],[122,-42,72,-0.08186168235987698],[122,-42,73,-0.11950988569154915],[122,-42,74,-0.11124701518302782],[122,-42,75,-0.14638508824188137],[122,-42,76,-0.2253224868468879],[122,-42,77,-0.23623815497371098],[122,-42,78,-0.17520111456249715],[122,-42,79,-0.08724862253580762],[122,-41,64,-0.31051403772540936],[122,-41,65,-0.26488597335378194],[122,-41,66,-0.26592210217435136],[122,-41,67,-0.23252843431828546],[122,-41,68,-0.20221257130110576],[122,-41,69,-0.17307587730928958],[122,-41,70,-0.14577193568979868],[122,-41,71,-0.09955386006723424],[122,-41,72,-0.08054862027575362],[122,-41,73,-0.11801680402094497],[122,-41,74,-0.11052377822347689],[122,-41,75,-0.1451553430317013],[122,-41,76,-0.22239355631116628],[122,-41,77,-0.23289845897931366],[122,-41,78,-0.17329321016767973],[122,-41,79,-0.087259352985212],[122,-40,64,-0.30578892247911316],[122,-40,65,-0.26136375122468886],[122,-40,66,-0.26278177221284316],[122,-40,67,-0.22972466570856662],[122,-40,68,-0.19931758054972795],[122,-40,69,-0.17014073429075746],[122,-40,70,-0.14325130557011728],[122,-40,71,-0.09783818523909199],[122,-40,72,-0.07928844299530864],[122,-40,73,-0.11657035967741927],[122,-40,74,-0.10982193559041345],[122,-40,75,-0.14394907025032297],[122,-40,76,-0.21951762053971557],[122,-40,77,-0.22962746706199869],[122,-40,78,-0.1714224162780784],[122,-40,79,-0.0872627068390126],[122,-39,64,-0.30114368381969014],[122,-39,65,-0.2578910760838717],[122,-39,66,-0.25967126488314785],[122,-39,67,-0.2269503410134454],[122,-39,68,-0.1964629250299188],[122,-39,69,-0.16726197011527014],[122,-39,70,-0.14079063258195906],[122,-39,71,-0.09617867782592254],[122,-39,72,-0.07807941714992074],[122,-39,73,-0.11516923159659342],[122,-39,74,-0.10914066596240297],[122,-39,75,-0.14276594477552085],[122,-39,76,-0.2166947746653307],[122,-39,77,-0.22642494740998922],[122,-39,78,-0.16958869860672324],[122,-39,79,-0.08725897231555557],[122,-38,64,-0.29657801695427244],[122,-38,65,-0.2544680856567922],[122,-38,66,-0.2565913291858082],[122,-38,67,-0.2242059455041561],[122,-38,68,-0.19364887931807875],[122,-38,69,-0.1644392163852215],[122,-38,70,-0.13838905302175378],[122,-38,71,-0.09457394400735912],[122,-38,72,-0.07691983809910126],[122,-38,73,-0.11381212869089659],[122,-38,74,-0.1084791938450736],[122,-38,75,-0.14160567097971272],[122,-38,76,-0.2139250967215753],[122,-38,77,-0.22329064635193396],[122,-38,78,-0.1677920322659091],[122,-38,79,-0.08724848340221059],[122,-37,64,-0.29209158905814325],[122,-37,65,-0.2510949117102153],[122,-37,66,-0.25354272255455684],[122,-37,67,-0.22149198206290796],[122,-37,68,-0.19087572121314866],[122,-37,69,-0.16167210758321104],[122,-37,70,-0.13604570993010823],[122,-37,71,-0.09302260290265532],[122,-37,72,-0.07580803180057524],[122,-37,73,-0.1124977908926705],[122,-37,74,-0.10783678908646453],[122,-37,75,-0.14046798207379663],[122,-37,76,-0.2112086483693812],[122,-37,77,-0.22022428996049323],[122,-37,78,-0.1660324016032959],[122,-37,79,-0.0872316173535418],[122,-36,64,-0.2876840404347662],[122,-36,65,-0.2477716794975477],[122,-36,66,-0.2505262083737554],[122,-36,67,-0.21880896861796986],[122,-36,68,-0.18814373016680191],[122,-36,69,-0.1589602806916556],[122,-36,70,-0.13375975382592634],[122,-36,71,-0.09152328846933036],[122,-36,72,-0.07474235647258093],[122,-36,73,-0.11122499001932376],[122,-36,74,-0.10721276624516927],[122,-36,75,-0.13935263936503253],[122,-36,76,-0.2085454756122409],[122,-36,77,-0.21722558561381378],[122,-36,78,-0.16430980001974557],[122,-36,79,-0.08720879220923922],[122,-35,64,-0.28335498564538697],[122,-35,65,-0.2444985072199195],[122,-35,66,-0.2475425535930181],[122,-35,67,-0.21615743566810833],[122,-35,68,-0.18545318581045542],[122,-35,69,-0.15630337486316925],[122,-35,70,-0.13153034340310107],[122,-35,71,-0.09007465124893752],[122,-35,72,-0.07372120405329344],[122,-35,73,-0.10999253046750046],[122,-35,74,-0.10660648382240802],[122,-35,75,-0.13825943143858815],[122,-35,76,-0.2059356095022703],[122,-35,77,-0.21429422351583827],[122,-35,78,-0.16262422977446325],[122,-35,79,-0.08718046434271008],[122,-34,64,-0.27910401460785933],[122,-34,65,-0.24127550550616303],[122,-34,66,-0.24459252644557447],[122,-34,67,-0.21353792390361478],[122,-34,68,-0.18280436658237437],[122,-34,69,-0.15370103114278394],[122,-34,70,-0.1293566461911636],[122,-34,71,-0.0886753599621763],[122,-34,72,-0.07274300146250583],[122,-34,73,-0.10879924974323192],[122,-34,74,-0.10601734336880199],[122,-34,75,-0.13718817327188268],[122,-34,76,-0.2033790668391562],[122,-34,77,-0.2114298781763326],[122,-34,78,-0.1609757017826153],[122,-34,79,-0.08714712605039508],[122,-33,64,-0.2749306936646783],[122,-33,65,-0.2381027769148421],[122,-33,66,-0.24167689427648523],[122,-33,67,-0.2109509819306817],[122,-33,68,-0.180197548457853],[122,-33,69,-0.1511528922430643],[122,-33,70,-0.12723783918150589],[122,-33,71,-0.0873241029560824],[122,-33,72,-0.0718062116711948],[122,-33,73,-0.10764401883530068],[122,-33,74,-0.10544478847653668],[122,-33,75,-0.13613870529066335],[122,-33,76,-0.20087585086401674],[122,-33,77,-0.20863220985171618],[122,-33,78,-0.159364235410463],[122,-33,79,-0.08710930319129731],[122,-32,64,-0.27083456662001015],[122,-32,65,-0.23498041546100112],[122,-32,66,-0.23879642148592697],[122,-32,67,-0.2083971641049615],[122,-32,68,-0.17763300378475286],[122,-32,69,-0.14865860237277798],[122,-32,70,-0.12517310942064194],[122,-32,71,-0.08601958950615388],[122,-32,72,-0.07090933458470747],[122,-32,73,-0.10652574243893545],[122,-32,74,-0.1048883036671319],[122,-32,75,-0.13511089237519297],[122,-32,76,-0.19842595194989832],[122,-32,77,-0.20590086594765972],[122,-32,78,-0.15778985827260428],[122,-32,79,-0.08706755288534544],[122,-31,64,-0.2668151557457812],[122,-31,65,-0.23190850617027234],[122,-31,66,-0.2359518675923101],[122,-31,67,-0.2058770284796689],[122,-31,68,-0.17511100022640644],[122,-31,69,-0.14621780711979104],[122,-31,70,-0.12316165457218603],[122,-31,71,-0.08476055097672515],[122,-31,72,-0.0700509077457132],[122,-31,73,-0.10544335903714598],[122,-31,74,-0.10434741318488373],[122,-31,75,-0.13410462282468164],[122,-31,76,-0.19602934829065696],[122,-31,77,-0.20323548238460876],[122,-31,78,-0.15625260603579263],[122,-31,79,-0.08702246127865557],[122,-30,64,-0.2628719627569215],[122,-30,65,-0.22888712466271802],[122,-30,66,-0.23314398541935147],[122,-30,67,-0.20339113487290203],[122,-30,68,-0.17263179981344104],[122,-30,69,-0.14383015338866478],[122,-30,70,-0.12120268344924139],[122,-30,71,-0.08354574184313282],[122,-30,72,-0.06922950686324551],[122,-30,73,-0.10439584084697034],[122,-30,74,-0.10382167970567346],[122,-30,75,-0.13311980728767075],[122,-30,76,-0.19368600658980079],[122,-30,77,-0.20063568492738854],[122,-30,78,-0.15475252223348007],[122,-30,79,-0.08697464138304725],[122,-29,64,-0.2590044697557354],[122,-29,65,-0.22591633676838144],[122,-29,66,-0.2303735194104381],[122,-29,67,-0.2009400430580668],[122,-29,68,-0.17019565810550305],[122,-29,69,-0.14149528939314265],[122,-29,70,-0.11929541651878536],[122,-29,71,-0.08237394057931247],[122,-29,72,-0.06844374617420601],[122,-29,73,-0.10338219363775569],[122,-29,74,-0.10331070297035423],[122,-29,75,-0.1321563776655296],[122,-29,76,-0.19139588275063787],[122,-29,77,-0.19810109047997226],[122,-29,78,-0.15328965809485745],[122,-29,79,-0.08692473099638717],[122,-28,64,-0.2552121401455665],[122,-28,65,-0.22299619817644348],[122,-28,66,-0.22764120407318444],[122,-28,67,-0.1985243110808157],[122,-28,68,-0.1678028234636157],[122,-28,69,-0.13921286470370978],[122,-28,70,-0.11743908637979078],[122,-28,71,-0.08124395041478151],[122,-28,72,-0.06769227864392979],[122,-28,73,-0.1024014564286181],[122,-28,74,-0.10281411835164041],[122,-28,75,-0.13121428599590723],[122,-28,76,-0.18915892256902975],[122,-28,77,-0.19563130834659623],[122,-28,78,-0.15186407239197436],[122,-28,79,-0.08687339070977958],[122,-27,64,-0.25149441951395163],[122,-27,65,-0.22012675411963234],[122,-27,66,-0.2249477625564945],[122,-27,67,-0.1961444937053095],[122,-27,68,-0.1654535364335206],[122,-27,69,-0.13698253035026917],[122,-27,70,-0.11563293821683182],[122,-27,71,-0.08015459996512624],[122,-27,72,-0.06697379601250784],[122,-27,73,-0.10145270107213496],[122,-27,74,-0.10233159536301956],[122,-27,75,-0.13029350332254838],[122,-27,76,-0.18697506242993622],[122,-27,77,-0.19322594146042898],[122,-27,78,-0.15047583130825323],[122,-27,79,-0.08682130200698324],[122,-26,64,-0.24785073648528128],[122,-26,65,-0.2173080390951243],[122,-26,66,-0.22229390536171895],[122,-26,67,-0.19380114099186257],[122,-26,68,-0.1631480292398431],[122,-26,69,-0.13480393897970835],[122,-26,70,-0.1138762302307871],[122,-26,71,-0.07910474374009062],[122,-26,72,-0.06628702869344506],[122,-26,73,-0.10053503173102868],[122,-26,74,-0.10186283611762531],[122,-26,75,-0.12939401855728797],[122,-26,76,-0.18484423000865882],[122,-26,77,-0.19088458758085786],[122,-26,78,-0.1491250083313044],[122,-26,79,-0.08676916546069138],[122,-25,64,-0.24428050354318573],[122,-25,65,-0.2145400766231115],[122,-25,66,-0.21968032918912672],[122,-25,67,-0.19149479700764954],[122,-25,68,-0.16088652539074647],[122,-25,69,-0.13267674506816435],[122,-25,70,-0.11216823404838394],[122,-25,71,-0.07809326253360194],[122,-25,72,-0.06563074553137183],[122,-25,73,-0.09964758425456414],[122,-25,74,-0.1014075737446934],[122,-25,75,-0.12851583733972463],[122,-25,76,-0.18276634497768504],[122,-25,77,-0.18860684046056603],[122,-25,78,-0.14781168417279342],[122,-25,79,-0.08671769902982569],[122,-24,64,-0.24078311782279874],[122,-24,65,-0.21182287904393182],[122,-24,66,-0.217107715920356],[122,-24,67,-0.189225998671574],[122,-24,68,-0.1586692393923999],[122,-24,69,-0.1306006051876745],[122,-24,70,-0.11050823511231146],[122,-24,71,-0.07711906370012002],[122,-24,72,-0.06500375342547904],[122,-24,73,-0.09878952546117599],[122,-24,74,-0.10096557077073921],[122,-24,75,-0.12765898089959968],[122,-24,76,-0.1807413197198962],[122,-24,77,-0.1863922909835484],[122,-24,78,-0.14653594671784181],[122,-24,79,-0.08666763646141169],[122,-23,64,-0.23735796187294117],[122,-23,65,-0.20915644735432143],[122,-23,66,-0.2145767317369213],[122,-23,67,-0.18699527473380165],[122,-23,68,-0.15649637657219584],[122,-23,69,-0.12857517832669285],[122,-23,70,-0.10889553305349024],[122,-23,71,-0.07618108132161218],[122,-23,72,-0.0644048968251451],[122,-23,73,-0.0979600523334877],[122,-23,74,-0.10053661747200712],[122,-23,75,-0.12682348492634474],[122,-23,76,-0.1787690600486652],[122,-23,77,-0.18424052827507928],[122,-23,78,-0.14529789100607002],[122,-23,79,-0.08661972579994857],[122,-22,64,-0.2340044043883503],[122,-22,65,-0.20654077108323796],[122,-22,66,-0.212088026374502],[122,-22,67,-0.18480314489009284],[122,-22,68,-0.1543681330095049],[122,-22,69,-0.12660012626399733],[122,-22,70,-0.10732944204719101],[122,-22,71,-0.07527827626958972],[122,-22,72,-0.0638330571042414],[122,-22,73,-0.09715839113176371],[122,-22,74,-0.10012053020436902],[122,-22,75,-0.12600939844992648],[122,-22,76,-0.1768494659353541],[122,-22,77,-0.18215114078472044],[122,-22,78,-0.14409761924625158],[122,-22,79,-0.08657472800677021],[122,-21,64,-0.2307218009120603],[122,-21,65,-0.2039758282074842],[122,-21,66,-0.20964223251230882],[122,-21,67,-0.1826501190306312],[122,-21,68,-0.1522846955725297],[122,-21,69,-0.12467511399544307],[122,-21,70,-0.10580929115466692],[122,-21,71,-0.07440963616662197],[122,-21,72,-0.06328715182046322],[122,-21,73,-0.09638379643156217],[122,-21,74,-0.09971714971635959],[122,-21,75,-0.12521678273666537],[122,-21,76,-0.17498243224461285],[122,-21,77,-0.18012371734343144],[122,-21,78,-0.1429352408663078],[122,-21,79,-0.08653341569139651],[122,-20,64,-0.2275094945078658],[122,-20,65,-0.20146158510702192],[122,-20,66,-0.20723996529629843],[122,-20,67,-0.18053669662250857],[122,-20,68,-0.15024624205948203],[122,-20,69,-0.1227998102128443],[122,-20,70,-0.1043344246518149],[122,-20,71,-0.07357417525157799],[122,-20,72,-0.06276613386573655],[122,-20,73,-0.0956355500909441],[122,-20,74,-0.09932633945042262],[122,-20,75,-0.124445710203157],[122,-20,76,-0.17316784947764619],[122,-20,77,-0.17815784819568503],[122,-20,78,-0.1418108726000277],[122,-20,79,-0.08649657195631058],[122,-19,64,-0.2243668164028913],[122,-19,65,-0.19899799655979003],[122,-19,66,-0.2048818219947549],[122,-19,67,-0.17846336622476702],[122,-19,68,-0.14825294144225937],[122,-19,69,-0.12097388783435377],[122,-19,70,-0.10290420234647572],[122,-19,71,-0.07277093415291185],[122,-19,72,-0.06226899051369194],[122,-19,73,-0.09491296015242591],[122,-19,74,-0.09894798383707151],[122,-19,75,-0.1236962633511108],[122,-19,76,-0.171405604523641],[122,-19,77,-0.17625312600758306],[122,-19,78,-0.14072463861180456],[122,-19,79,-0.08646498935626838],[122,-18,64,-0.22129308660023744],[122,-18,65,-0.19658500577564278],[122,-18,66,-0.20256838178442313],[122,-18,67,-0.1764306051345554],[122,-18,68,-0.14630495421063375],[122,-18,69,-0.11919702458567291],[122,-18,70,-0.10151799988594136],[122,-18,71,-0.07199897957420422],[122,-18,72,-0.06179474236995644],[122,-18,73,-0.09421535968452273],[122,-18,74,-0.09858198658616307],[122,-18,75,-0.12296853372549475],[122,-18,76,-0.16969558141943084],[122,-18,77,-0.17440914685190337],[122,-18,78,-0.13967667066045802],[122,-18,79,-0.0864394689728456],[122,-17,64,-0.21828761446149716],[122,-17,65,-0.1942225444687173],[122,-17,66,-0.2003002056649384],[122,-17,67,-0.17443887916251757],[122,-17,68,-0.1444024328147234],[122,-17,69,-0.11746890363130208],[122,-17,70,-0.10017520905609127],[122,-17,71,-0.07125740389596241],[122,-17,72,-0.061342442230671784],[122,-17,73,-0.09354210556730484],[122,-17,74,-0.09822826897889424],[122,-17,75,-0.12226262089786595],[122,-17,76,-0.1680376621172916],[122,-17,77,-0.17262551117087932],[122,-17,78,-0.13866710830293047],[122,-17,79,-0.0864208196044585],[122,-16,64,-0.21534969925899652],[122,-16,65,-0.19191053296747987],[122,-16,66,-0.19807783649914545],[122,-16,67,-0.1724886425353726],[122,-16,68,-0.14254552220353384],[122,-16,69,-0.11578921425515258],[122,-16,70,-0.09887523807365989],[122,-16,71,-0.07054532469766653],[122,-16,72,-0.06091117385449731],[122,-16,73,-0.09289257722615929],[122,-16,74,-0.09788676816375692],[122,-16,75,-0.12157863147648125],[122,-16,76,-0.16643172726078584],[122,-16,77,-0.17090182471757512],[122,-16,78,-0.13769609913857048],[122,-16,79,-0.08640985707186478],[122,-15,64,-0.21247863069757383],[122,-15,65,-0.1896488803615546],[122,-15,66,-0.1959017991766607],[122,-15,67,-0.170580337923401],[122,-15,68,-0.14073436045727677],[122,-15,69,-0.11415765258985187],[122,-15,70,-0.09761751187309525],[122,-15,71,-0.06986188420390269],[122,-15,72,-0.060500050653068016],[122,-15,73,-0.09226617531759883],[122,-15,74,-0.09755743545921142],[122,-15,75,-0.12091667814440192],[122,-15,76,-0.16487765696849827],[122,-15,77,-0.16923769947667297],[122,-15,78,-0.1367637990945492],[122,-15,79,-0.08640740363883927],[122,-14,64,-0.20967368940549816],[122,-14,65,-0.18743748468414453],[122,-14,66,-0.1937726008976929],[122,-14,67,-0.1687143965902176],[122,-14,68,-0.13896907951101803],[122,-14,69,-0.112573922393997],[122,-14,70,-0.09640147238932723],[122,-14,71,-0.06920624865815066],[122,-14,72,-0.060108214304473745],[122,-14,73,-0.09166232037050594],[122,-14,74,-0.09724023466526464],[122,-14,75,-0.12027687872633905],[122,-14,76,-0.16337533162534804],[122,-14,77,-0.1676327545653648],[122,-14,78,-0.13587037275272582],[122,-14,79,-0.08641428754736498],[122,-13,64,-0.20693413060039764],[122,-13,65,-0.18527623842736785],[122,-13,66,-0.19169072753146174],[122,-13,67,-0.16689123086354762],[122,-13,68,-0.1372497908366123],[122,-13,69,-0.11103772992505624],[122,-13,70,-0.09522656424989288],[122,-13,71,-0.068577599886279],[122,-13,72,-0.059734868469486974],[122,-13,73,-0.09108052330445311],[122,-13,74,-0.09693520907626792],[122,-13,75,-0.11965938291751327],[122,-13,76,-0.16192459679715177],[122,-13,77,-0.16608657935227963],[122,-13,78,-0.1350159700203485],[122,-13,79,-0.08643133434761692],[122,-12,64,-0.20425908336071527],[122,-12,65,-0.18316506188046167],[122,-12,66,-0.18965660515783578],[122,-12,67,-0.16511117039768802],[122,-12,68,-0.13557647359326336],[122,-12,69,-0.10954873302979944],[122,-12,70,-0.0940921359825154],[122,-12,71,-0.06797509378543959],[122,-12,72,-0.0593795180820122],[122,-12,73,-0.09052085793162916],[122,-12,74,-0.09664292923820296],[122,-12,75,-0.11906455162921961],[122,-12,76,-0.16052502916885836],[122,-12,77,-0.16459848847197817],[122,-12,78,-0.1342005677679845],[122,-12,79,-0.0864593046728155],[122,-11,64,-0.201647649415299],[122,-11,65,-0.18110387525209667],[122,-11,66,-0.18767058829360606],[122,-11,67,-0.1633744660305942],[122,-11,68,-0.1339490109018357],[122,-11,69,-0.10810653756364363],[122,-11,70,-0.09299749809604674],[122,-11,71,-0.0673979194267701],[122,-11,72,-0.05904183320131703],[122,-11,73,-0.08998363887927832],[122,-11,74,-0.0963641771181044],[122,-11,75,-0.11849282834847882],[122,-11,76,-0.1591761012496072],[122,-11,77,-0.16316769839326112],[122,-11,78,-0.1334240693642774],[122,-11,79,-0.08649891329549454],[122,-10,64,-0.19909896739730404],[122,-10,65,-0.17909257917706892],[122,-10,66,-0.18573297129145794],[122,-10,67,-0.16168131449689213],[122,-10,68,-0.13236724142736006],[122,-10,69,-0.10671071572127618],[122,-10,70,-0.0919419751860809],[122,-10,71,-0.06684532967519977],[122,-10,72,-0.05872152315284731],[122,-10,73,-0.08946916013039315],[122,-10,74,-0.09609969523584454],[122,-10,75,-0.117944637894175],[122,-10,76,-0.1578773123168931],[122,-10,77,-0.16179346561984753],[122,-10,78,-0.13268638965635987],[122,-10,79,-0.08655085631994704],[122,-9,64,-0.19661220996684456],[122,-9,65,-0.17713105569162907],[122,-9,66,-0.18384399275898478],[122,-9,67,-0.16003186272145253],[122,-9,68,-0.1308309639838262],[122,-9,69,-0.10536081049916413],[122,-9,70,-0.09092490670432213],[122,-9,71,-0.06631663719946243],[122,-9,72,-0.05841833321581911],[122,-9,73,-0.08897769559555053],[122,-9,74,-0.09585018811664588],[122,-9,75,-0.11742038705296698],[122,-9,76,-0.15662818761172978],[122,-9,77,-0.1604750854095179],[122,-9,78,-0.13198745523263555],[122,-9,79,-0.08661581256902844],[122,-8,64,-0.1941865808089919],[122,-8,65,-0.17521916929493056],[122,-8,66,-0.1820038396772572],[122,-8,67,-0.1584262117314773],[122,-8,68,-0.12933994157740994],[122,-8,69,-0.10405633975822587],[122,-8,70,-0.08994564736835294],[122,-8,71,-0.06581121054697411],[122,-8,72,-0.058132042179624144],[122,-8,73,-0.08850950103240485],[122,-8,74,-0.09561632497364675],[122,-8,75,-0.11692046571322158],[122,-8,76,-0.1554282769021471],[122,-8,77,-0.1592118898438109],[122,-8,78,-0.13132720421563812],[122,-8,79,-0.08669444474123912],[122,-7,64,-0.19182131185460838],[122,-7,65,-0.17335676798557192],[122,-7,66,-0.1802126512890236],[122,-7,67,-0.15686442033368966],[122,-7,68,-0.12789390518461055],[122,-7,69,-0.10279679999883645],[122,-7,70,-0.0890035675072281],[122,-7,71,-0.06532847044958284],[122,-7,72,-0.057862460062902556],[122,-7,73,-0.08806481585632511],[122,-7,74,-0.09539874222733473],[122,-7,75,-0.11644524793545911],[122,-7,76,-0.15427715314188975],[122,-7,77,-0.15800324601485624],[122,-7,78,-0.13070558606177227],[122,-7,79,-0.08678740049845067],[122,-6,64,-0.18951566071360684],[122,-6,65,-0.17154368427310926],[122,-6,66,-0.17847052276617095],[122,-6,67,-0.15534650856713467],[122,-6,68,-0.12649255727730785],[122,-6,69,-0.10158166986150577],[122,-6,70,-0.08809805334708465],[122,-6,71,-0.06486788635091499],[122,-6,72,-0.057609425987976255],[122,-6,73,-0.08764386484673269],[122,-6,74,-0.09519804586972791],[122,-6,75,-0.11599509296237646],[122,-6,76,-0.1531744112193395],[122,-6,77,-0.15684855432345787],[122,-6,78,-0.13012256136775396],[122,-6,79,-0.08689531348802289],[122,-5,64,-0.1872689083102779],[122,-5,65,-0.1697797361643757],[122,-5,66,-0.17677750866581182],[122,-5,67,-0.15387246094179305],[122,-5,68,-0.12513557510647214],[122,-5,69,-0.10041041336630027],[122,-5,70,-0.08722850724077688],[122,-5,71,-0.06442897314609475],[122,-5,72,-0.057372806203434205],[122,-5,73,-0.08724685975356901],[122,-5,74,-0.09501481368088328],[122,-5,75,-0.11557034617128788],[122,-5,76,-0.15211966679165445],[122,-5,77,-0.15574724688252065],[122,-5,78,-0.12957810168338968],[122,-5,79,-0.08701880430277938],[122,-4,64,-0.18508035671028578],[122,-4,65,-0.16806472812428755],[122,-4,66,-0.1751336261839928],[122,-4,67,-0.1524422294728014],[122,-4,68,-0.12382261375587783],[122,-4,69,-0.0992824829037132],[122,-4,70,-0.0863943478452896],[122,-4,71,-0.06401128812461922],[122,-4,72,-0.05715249224770119],[122,-4,73,-0.08687400080811883],[122,-4,74,-0.09484959730491693],[122,-4,75,-0.11517133997152051],[122,-4,76,-0.15111255519904185],[122,-4,77,-0.1546987860198666],[122,-4,78,-0.12907218933010928],[122,-4,79,-0.08715848138196926],[122,-3,64,-0.182949327129161],[122,-3,65,-0.1663984520108921],[122,-3,66,-0.17353885821583254],[122,-3,67,-0.15105573651984827],[122,-3,68,-0.12255330897695282],[122,-3,69,-0.09819732198946189],[122,-3,70,-0.08559501025058962],[122,-3,71,-0.06361442810737374],[122,-3,72,-0.05694839924664175],[122,-3,73,-0.08652547814235885],[122,-3,74,-0.09470292419249997],[122,-3,75,-0.11479839464918003],[122,-3,76,-0.15015273045418162],[122,-3,77,-0.15370266287460335],[122,-3,78,-0.12860481722460568],[122,-3,79,-0.0873149418561618],[122,-2,64,-0.18087515811222757],[122,-2,65,-0.16478068798435205],[122,-2,66,-0.17199315623059216],[122,-2,67,-0.14971287744097045],[122,-2,68,-0.12132727981556016],[122,-2,69,-0.09715436779534982],[122,-2,70,-0.08482994606339339],[122,-2,71,-0.06323802676890189],[122,-2,72,-0.05676046433839203],[122,-2,73,-0.0862014731208533],[122,-2,74,-0.09457529941646492],[122,-2,75,-0.11445181916148885],[122,-2,76,-0.14923986430185193],[122,-2,77,-0.15275839608126526],[122,-2,78,-0.12817598870680202],[122,-2,79,-0.08748877233876322],[122,-1,64,-0.17885720387599396],[122,-1,65,-0.1632112053894587],[122,-1,66,-0.17049644296980285],[122,-1,67,-0.14841352306956487],[122,-1,68,-0.1201441310410971],[122,-1,69,-0.09615305346791148],[122,-1,70,-0.08409862344907855],[122,-1,71,-0.06288175213613144],[122,-1,72,-0.056588645218703194],[122,-1,73,-0.08590215958899783],[122,-1,74,-0.09446720736677891],[122,-1,75,-0.11413191188264019],[122,-1,76,-0.1483736453438024],[122,-1,77,-0.15186553053596596],[122,-1,78,-0.12778571737119238],[122,-1,79,-0.08768054966654165],[122,0,64,-0.17689483280131474],[122,0,65,-0.1616897636113251],[122,0,66,-0.16904861497635715],[122,0,67,-0.14715752202316676],[122,0,68,-0.11900345538802665],[122,0,69,-0.09519281024626104],[122,0,70,-0.08340052713486636],[122,0,71,-0.06254530425500897],[122,0,72,-0.05643291880032085],[122,0,73,-0.08562770504133309],[122,0,74,-0.09437911333089646],[122,0,75,-0.11383896130300028],[122,0,76,-0.14755377822405885],[122,0,77,-0.15102363623896287],[122,0,78,-0.1274340269005682],[122,0,79,-0.08789084159138323],[122,1,64,-0.17498742606883633],[122,1,65,-0.1602161129038923],[122,1,66,-0.16764954496216525],[122,1,67,-0.14594470285221736],[122,1,68,-0.11790483561961018],[122,1,69,-0.09427306939020408],[122,1,70,-0.08273515837723687],[122,1,71,-0.062228413016695176],[122,1,72,-0.05629327998011221],[122,1,73,-0.08537827171350072],[122,1,74,-0.09431146496519938],[122,1,75,-0.11357324668332466],[122,1,76,-0.14677998286995486],[122,1,77,-0.15023230720816952],[122,1,78,-0.1271209509010702],[122,1,79,-0.0881202074252883],[122,2,64,-0.1731343764274027],[122,2,65,-0.1587899951907868],[122,2,66,-0.1662990840215955],[122,2,67,-0.14477487603661912],[122,2,68,-0.11684784642317429],[122,2,69,-0.09339326392919746],[122,2,70,-0.08210203489629073],[122,2,71,-0.06193083613510528],[122,2,72,-0.05616974050775867],[122,2,73,-0.08515401760117906],[122,2,74,-0.09426469366285439],[122,2,75,-0.11333503866541661],[122,2,76,-0.14605199378420297],[122,2,77,-0.14949116045819405],[122,2,78,-0.12684653273735455],[122,2,79,-0.0883691986403442],[122,3,64,-0.17133508708642678],[122,3,65,-0.15741114483814542],[122,3,66,-0.16499706369769837],[122,3,67,-0.1436478358376277],[122,3,68,-0.11583205614596334],[122,3,69,-0.09255283024243605],[122,3,70,-0.08150069077968493],[122,3,71,-0.06165235726787819],[122,3,72,-0.05606232795010331],[122,3,73,-0.08495509740925727],[122,3,74,-0.09423921582319937],[122,3,75,-0.11312459984058935],[122,3,76,-0.14536955938352336],[122,3,77,-0.1487998350397121],[122,3,78,-0.1266108253666851],[122,3,79,-0.08863835942528786],[122,4,64,-0.16958897072350657],[122,4,65,-0.15607928939901997],[122,4,66,-0.16374329790791622],[122,4,67,-0.1425633620123034],[122,4,68,-0.11485702838028018],[122,4,69,-0.09175120947995326],[122,4,70,-0.08093067635861821],[122,4,71,-0.06139278427309503],[122,4,72,-0.055971084745440824],[122,4,73,-0.08478166343435112],[122,4,74,-0.09423543402747635],[122,4,75,-0.11294218527715039],[122,4,76,-0.14473244137947958],[122,4,77,-0.14815799113413483],[122,4,78,-0.12641389117071294],[122,4,79,-0.08892822720009229],[122,5,64,-0.16789544859877661],[122,5,65,-0.15479415032890415],[122,5,66,-0.16253758473561367],[122,5,67,-0.14152122139734363],[122,5,68,-0.11392232340618144],[122,5,69,-0.09098784883414224],[122,5,70,-0.08039155805810477],[122,5,71,-0.06115194759423383],[122,5,72,-0.05589606734216384],[122,5,73,-0.08463386638353615],[122,5,74,-0.09425373812538755],[122,5,75,-0.11278804300793849],[122,5,76,-0.14414041419723891],[122,5,77,-0.14756530919862917],[122,5,78,-0.12625580178360876],[122,5,79,-0.08923933308978554],[122,6,64,-0.1662539497678621],[122,6,65,-0.15355544367201632],[122,6,66,-0.16137970809355656],[122,6,67,-0.14052116936888817],[122,6,68,-0.11302749949972758],[122,6,69,-0.09026220267080347],[122,6,70,-0.07988291822371925],[122,6,71,-0.060929698766180714],[122,6,72,-0.05583734541646419],[122,6,73,-0.08451185613210091],[122,6,74,-0.09429450623675102],[122,6,75,-0.11266241447890306],[122,6,76,-0.14359326442821124],[122,6,77,-0.14702148915680516],[122,6,78,-0.12613663791526364],[122,6,79,-0.08957220235862352],[122,7,64,-0.16466391038561415],[122,7,65,-0.15236288071798176],[122,7,66,-0.16026943926519058],[122,7,67,-0.1395629511845766],[122,7,68,-0.1121721141144359],[122,7,69,-0.0895737335284125],[122,7,70,-0.0794043549268384],[122,7,71,-0.060725909035365115],[122,7,72,-0.055795001163983005],[122,7,73,-0.0844157824229658],[122,7,74,-0.0943581056722745],[122,7,75,-0.11256553495961218],[122,7,76,-0.1430907903126713],[122,7,77,-0.14652624963055508],[122,7,78,-0.12605648916826068],[122,7,79,-0.08992735480560247],[122,8,64,-0.16312477309305132],[122,8,65,-0.15121616862851503],[122,8,66,-0.15920653832922846],[122,8,67,-0.1386463032137807],[122,8,68,-0.11135572494318347],[122,8,69,-0.08892191299386096],[122,8,70,-0.078955481750219],[122,8,71,-0.06054046808729118],[122,8,72,-0.05576912866045163],[122,8,73,-0.08434579551021032],[122,8,74,-0.09444489377715955],[122,8,75,-0.11249763391643157],[122,8,76,-0.142632801248581],[122,8,77,-0.14607932720867006],[122,8,78,-0.1260154538472671],[122,8,79,-0.090305305122115],[122,9,64,-0.1616359864803373],[122,9,65,-0.15011501103379543],[122,9,66,-0.15819075547287248],[122,9,67,-0.13777095406172093],[122,9,68,-0.11057789086755175],[122,9,69,-0.08830622246261108],[122,9,70,-0.07853592755569155],[122,9,71,-0.06037328287506986],[122,9,72,-0.055759833286638784],[122,9,73,-0.08430204674907714],[122,9,74,-0.09455521870108467],[122,9,75,-0.11245893534910385],[122,9,76,-0.14221911732307452],[122,9,77,-0.1456804757481205],[122,9,78,-0.12601363875956986],[122,9,79,-0.09070656321251112],[122,10,64,-0.16019700461895858],[122,10,65,-0.14905910859827104],[122,10,66,-0.15722183219875022],[122,10,67,-0.13693662559290348],[122,10,68,-0.1098381728012783],[122,10,69,-0.08772615379082287],[122,10,70,-0.07814533623562789],[122,10,71,-0.060224276542822246],[122,10,72,-0.055767231213119814],[122,10,73,-0.08428468913468483],[122,10,74,-0.09468942009789356],[122,10,75,-0.1124496580913991],[122,10,76,-0.1418495688632452],[122,10,77,-0.14532946570408758],[122,10,78,-0.1260511590055073],[122,10,79,-0.09113163447822828],[122,11,64,-0.1588072866565365],[122,11,65,-0.14804815955558456],[122,11,66,-0.15629950243033644],[122,11,67,-0.13614303385899784],[122,11,68,-0.1091361344341183],[122,11,69,-0.08718120984660199],[122,11,70,-0.07778336644967782],[122,11,71,-0.060093387438037944],[122,11,72,-0.05579144894053471],[122,11,73,-0.08429387779149528],[122,11,74,-0.09484782975805482],[122,11,75,-0.11247001607639837],[122,11,76,-0.1415239960030116],[122,11,77,-0.14502608348498716],[122,11,78,-0.12612813775752435],[122,11,79,-0.09158102006602374],[122,12,64,-0.1574662964681237],[122,12,65,-0.14708186021243766],[122,12,66,-0.1554234935204805],[122,12,67,-0.13538988993609075],[122,12,68,-0.10847134288218245],[122,12,69,-0.08667090496721407],[122,12,70,-0.07744969134822823],[122,12,71,-0.059980568207303415],[122,12,72,-0.055832622891261244],[122,12,73,-0.08432977041552092],[122,12,74,-0.09503077217683192],[122,12,75,-0.11252021856699541],[122,12,76,-0.14124224826308884],[122,12,77,-0.14477013082900178],[122,12,78,-0.1262447060266866],[122,12,79,-0.09205521708083603],[122,13,64,-0.15617350235817212],[122,13,65,-0.14615990542124324],[122,13,66,-0.15459352716744085],[122,13,67,-0.13467690067602375],[122,13,68,-0.10784336925053344],[122,13,69,-0.0861947653287788],[122,13,70,-0.07714399828394544],[122,13,71,-0.05988578497008462],[122,13,72,-0.05589089904863106],[122,13,73,-0.08439252767113949],[122,13,74,-0.0952385650609244],[122,13,75,-0.11260047035218032],[122,13,76,-0.14100418414129137],[122,13,77,-0.14456142419884382],[122,13,78,-0.1264010024155432],[122,13,79,-0.09255471876375135],[122,14,64,-0.1549283768076515],[122,14,65,-0.14528198902141592],[122,14,66,-0.15380932024257407],[122,14,67,-0.13400376937624858],[122,14,68,-0.10725178911350068],[122,14,69,-0.0857523292345706],[122,14,70,-0.07686598851262633],[122,14,71,-0.059809016565462184],[122,14,72,-0.05596643263995725],[122,14,73,-0.08448231354422114],[122,14,74,-0.09547151977612787],[122,14,75,-0.11271097190959438],[122,14,76,-0.14080967071054246],[122,14,77,-0.14439979419164914],[122,14,78,-0.1265971728562392],[122,14,79,-0.0930800146354634],[122,15,64,-0.1537303962612141],[122,15,65,-0.14444780424927622],[122,15,66,-0.15307058553370875],[122,15,67,-0.1333701963725027],[122,15,68,-0.1066961829179782],[122,15,69,-0.08534314732780303],[122,15,70,-0.0766153768845734],[122,15,71,-0.05975025386705212],[122,15,72,-0.05605938785990506],[122,15,73,-0.08459929565324169],[122,15,74,-0.09572994173848663],[122,15,75,-0.11285191953492375],[122,15,76,-0.1406585832222311],[122,15,77,-0.14428508496117762],[122,15,78,-0.12683337033292172],[122,15,79,-0.09363159060566094],[122,16,64,-0.1525790409495913],[122,16,65,-0.14365704411654773],[122,16,66,-0.15237703240801076],[122,16,67,-0.13277587955836895],[122,16,68,-0.10617613631468723],[122,16,69,-0.0849667827344317],[122,16,70,-0.07639189152759777],[122,16,71,-0.059709499161559085],[122,16,72,-0.05616993763087732],[122,16,73,-0.08474364551991011],[122,16,74,-0.0960141307512287],[122,16,75,-0.11302350543864766],[122,16,76,-0.1405508047127253],[122,16,77,-0.14421715364967932],[122,16,78,-0.1271097545875176],[122,16,79,-0.0942099290487177],[122,17,64,-0.15147379474280354],[122,17,65,-0.1429094017575523],[122,17,66,-0.15172836739804424],[122,17,67,-0.13222051483566868],[122,17,68,-0.10569124042220307],[122,17,69,-0.08462281114127115],[122,17,70,-0.07619527352274612],[122,17,71,-0.05968676558671506],[122,17,72,-0.05629826339731914],[122,17,73,-0.08491553880080706],[122,17,74,-0.0963243812897144],[122,17,75,-0.11322591781074179],[122,17,76,-0.14048622561110238],[122,17,77,-0.14419586982705243],[122,17,78,-0.12742649180810584],[122,17,79,-0.09481550884612255],[122,18,64,-0.15041414503003844],[122,18,65,-0.14220457074519283],[122,18,66,-0.1511242947145011],[122,18,67,-0.13170379649939812],[122,18,68,-0.10524109202825785],[122,18,69,-0.08431082081437617],[122,18,70,-0.07602527657373129],[122,18,71,-0.05968207662456083],[122,18,72,-0.05644455495097414],[122,18,73,-0.08511515548138456],[122,18,74,-0.09666098273646127],[122,18,75,-0.11345934085389218],[122,18,76,-0.1404647433463],[122,18,77,-0.1442211149350794],[122,18,78,-0.12778375429913494],[122,18,79,-0.09544880539602808],[122,19,64,-0.1493995826224357],[122,19,65,-0.1415422453759597],[122,19,66,-0.15056451668903215],[122,19,67,-0.13122541756086104],[122,19,68,-0.10482529373271605],[122,19,69,-0.08403041256246518],[122,19,70,-0.07588166667107156],[122,19,71,-0.059695465646312416],[122,19,72,-0.056609010284339165],[122,19,73,-0.08534268003366914],[122,19,74,-0.0970242195682844],[122,19,75,-0.11372395478588958],[122,19,76,-0.14048626195217376],[122,19,77,-0.14429278173481672],[122,19,78,-0.12818172013291698],[122,19,79,-0.09611029059040446],[122,20,64,-0.14842960167535688],[122,20,65,-0.1409221209242554],[122,20,66,-0.15004873415045494],[122,20,67,-0.1307850700124914],[122,20,68,-0.10444345403639974],[122,20,69,-0.08378119964988857],[122,20,70,-0.07576422175189804],[122,20,71,-0.059726975505319156],[122,20,72,-0.0567918354697516],[122,20,73,-0.08559830153894236],[122,20,74,-0.0974143714975161],[122,20,75,-0.11401993581191013],[122,20,76,-0.1405506916691396],[122,20,77,-0.14441077375542155],[122,20,78,-0.12862057278192532],[122,20,79,-0.09680043276030688],[122,21,64,-0.1475036996269779],[122,21,65,-0.14034389386636142],[122,21,66,-0.14957664673748217],[122,21,67,-0.13038244503771626],[122,21,68,-0.10409518737975021],[122,21,69,-0.08356280766340049],[122,21,70,-0.07567273135632865],[122,21,71,-0.05977665817479926],[122,21,72,-0.05699324456165277],[122,21,73,-0.08588221377657462],[122,21,74,-0.09783171356916572],[122,21,75,-0.11434745606741262],[122,21,76,-0.14065794854125566],[122,21,77,-0.1445750047428881],[122,21,78,-0.12910050073151183],[122,21,79,-0.09751969658978442],[122,22,64,-0.14662137715042511],[122,22,65,-0.13980726207451089],[122,22,66,-0.14914795315106896],[122,22,67,-0.1300172331691553],[122,22,68,-0.10378011413519357],[122,22,69,-0.08337487433681902],[122,22,70,-0.07560699628133695],[122,22,71,-0.059844574427327824],[122,22,72,-0.057213459519786534],[122,22,73,-0.08619461528019524],[122,22,74,-0.09827651621589413],[122,22,75,-0.11470668353250328],[122,22,76,-0.14080795400785787],[122,22,77,-0.14478539810743535],[122,22,78,-0.12962169707283652],[122,22,79,-0.09826854299907645],[122,23,64,-0.1457821381169765],[122,23,65,-0.13931192498160422],[122,23,66,-0.1487623513493955],[122,23,67,-0.12968912439837077],[122,23,68,-0.10349786055694896],[122,23,69,-0.0832170493374767],[122,23,70,-0.07556682823303786],[122,23,71,-0.05993079355327878],[122,23,72,-0.057452710151248414],[122,23,73,-0.0865357093623429],[122,23,74,-0.09874904527264486],[122,23,75,-0.11509778191869903],[122,23,76,-0.1410006344890765],[122,23,77,-0.14504188636850943],[122,23,78,-0.13018435907593914],[122,23,79,-0.09904742899781656],[122,24,64,-0.14498548956810642],[122,24,65,-0.13885758371714566],[122,24,66,-0.1484195386883925],[122,24,67,-0.129397808240261],[122,24,68,-0.10324805869184024],[122,24,69,-0.08308899401813881],[122,24,70,-0.07555204947826938],[122,24,71,-0.06003539311559637],[122,24,72,-0.057711234069406016],[122,24,73,-0.0869057041086677],[122,24,74,-0.09924956195271924],[122,24,75,-0.1155209105290635],[122,24,76,-0.14123592096472495],[122,24,77,-0.14534441059654354],[122,24,78,-0.13078868774298108],[122,24,79,-0.09985680750901156],[122,25,64,-0.14423094169450323],[122,25,65,-0.13844394121511655],[122,25,66,-0.14811921201071107],[122,25,67,-0.12914297375518466],[122,25,68,-0.10303034625461112],[122,25,69,-0.08299038113795147],[122,25,70,-0.07556249249639847],[122,25,71,-0.060158458738535925],[122,25,72,-0.05798927666790609],[122,25,73,-0.08730481234278512],[122,25,74,-0.09977832278712845],[122,25,75,-0.11597622409284021],[122,25,76,-0.14151374854631538],[122,25,77,-0.14569291985088487],[122,25,78,-0.1314348873418856],[122,25,79,-0.10069712716471282],[122,26,64,-0.14351800782046514],[122,26,65,-0.1380707022945867],[122,26,66,-0.14786106768599724],[122,26,67,-0.12892430953185416],[122,26,68,-0.1028443664711489],[122,26,69,-0.08292089455584464],[122,26,70,-0.07559799963230096],[122,26,71,-0.06030008392821618],[122,26,72,-0.058287091108123606],[122,26,73,-0.08773325156286813],[122,26,74,-0.10033557952906508],[122,26,75,-0.1164638725758039],[122,26,76,-0.1418340560421585],[122,26,77,-0.1460873706135156],[122,26,78,-0.1321231649207553],[122,26,79,-0.10156883207439986],[122,27,64,-0.14284620439232465],[122,27,65,-0.13773757371391512],[122,27,66,-0.14764480160525706],[122,27,67,-0.12874150363396214],[122,27,68,-0.10268976789289092],[122,27,69,-0.08288022889963284],[122,27,70,-0.07565842275143629],[122,27,71,-0.06046036992298652],[122,27,72,-0.05860493831850269],[122,27,73,-0.08819124385101863],[122,27,74,-0.10092157902532504],[122,27,75,-0.11698400096763009],[122,27,76,-0.14219678551567785],[122,27,77,-0.14652772621837287],[122,27,78,-0.13285372980356894],[122,27,79,-0.10247236156718043],[122,28,64,-0.14221505096985776],[122,28,65,-0.13744426419952555],[122,28,66,-0.14747010913212968],[122,28,67,-0.12859424351352663],[122,28,68,-0.10256620418566287],[122,28,69,-0.08286808921399157],[122,28,70,-0.07574362289801338],[122,28,71,-0.06063942557184452],[122,28,72,-0.058943087004411046],[122,28,73,-0.0886790157565062],[122,28,74,-0.10153656305658228],[122,28,75,-0.11753674904773635],[122,28,76,-0.1426018818373116],[122,28,77,-0.14701395627632902],[122,28,78,-0.13362679306786515],[122,28,79,-0.10340814990907711],[122,29,64,-0.1416240702199013],[122,29,65,-0.13719048445033993],[122,29,66,-0.14733668501387517],[122,29,67,-0.12848221589393666],[122,29,68,-0.10247333389614581],[122,29,69,-0.08288419059039226],[122,29,70,-0.07585346995728007],[122,29,71,-0.06083736723933227],[122,29,72,-0.0593018136672614],[122,29,73,-0.08919679815397763],[122,29,74,-0.10218076814847543],[122,29,75,-0.11812225113118367],[122,29,76,-0.14304929223058957],[122,29,77,-0.14754603609610933],[122,29,78,-0.13444256700529644],[122,29,79,-0.10437662599681115],[122,30,64,-0.14107278791160444],[122,30,65,-0.13697594711900218],[122,30,66,-0.14724422325484512],[122,30,67,-0.12840510662562657],[122,30,68,-0.10241082019906636],[122,30,69,-0.08292825778193387],[122,30,70,-0.07598784232295583],[122,30,71,-0.06105431873546261],[122,30,72,-0.059681402631723966],[122,30,73,-0.0897448260777103],[122,30,74,-0.10285442535547488],[122,30,75,-0.11874063579630584],[122,30,76,-0.14353896581312248],[122,30,77,-0.14812394610159074],[122,30,78,-0.13530126456606306],[122,30,79,-0.10537821302959158],[122,31,64,-0.1405607329130276],[122,31,65,-0.13680036677116414],[122,31,66,-0.14719241695526403],[122,31,67,-0.12836260051737394],[122,31,68,-0.10237833062822757],[122,31,69,-0.08300002480599937],[122,31,70,-0.07614662657092582],[122,31,71,-0.06129041126945162],[122,31,72,-0.060082146080019404],[122,31,73,-0.09032333853306058],[122,31,74,-0.10355776001961117],[122,31,75,-0.11939202559591512],[122,31,76,-0.14407085313348902],[122,31,77,-0.14874767124618],[122,31,78,-0.13620309878846085],[122,31,79,-0.10641332816061072],[122,32,64,-0.1400874371890324],[122,32,65,-0.1366634598242014],[122,32,66,-0.1471809581181659],[122,32,67,-0.12835438114622347],[122,32,68,-0.10237553679445861],[122,32,69,-0.08309923453758576],[122,32,70,-0.0763297171403506],[122,32,71,-0.06154578342618526],[122,32,72,-0.060504344092386766],[122,32,73,-0.09093257828628304],[122,32,74,-0.10429099150622231],[122,32,75,-0.12007653675407388],[122,32,76,-0.14464490570520186],[122,32,77,-0.1494172004251662],[122,32,78,-0.1371482822149579],[122,32,79,-0.10748238213010469],[122,33,64,-0.13965243580058107],[122,33,65,-0.13656494446677617],[122,33,66,-0.14720953742732257],[122,33,67,-0.128380130649029],[122,33,68,-0.10240211409350997],[122,33,69,-0.08322563829607543],[122,33,70,-0.07653701602336221],[122,33,71,-0.061820581164463005],[122,33,72,-0.06094830469288617],[122,33,73,-0.09157279163389717],[122,33,74,-0.10505433291891947],[122,33,75,-0.12079427885051446],[122,33,76,-0.1452610755390785],[122,33,77,-0.15013252588711037],[122,33,78,-0.13813702629635155],[122,33,79,-0.10858577888195377],[122,34,64,-0.13925526690581982],[122,34,65,-0.13650454056081254],[122,34,66,-0.1472778439990839],[122,34,67,-0.12843952949868806],[122,34,68,-0.10245774140695946],[122,34,69,-0.08337899542822273],[122,34,70,-0.07676843246461697],[122,34,71,-0.062114957836252226],[122,34,72,-0.06141434389984008],[122,34,73,-0.092244228152867],[122,34,74,-0.10584799079610667],[122,34,75,-0.12154535449498292],[122,34,76,-0.14591931467558036],[122,34,77,-0.15089364264556948],[122,34,78,-0.13916954078578678],[122,34,79,-0.10972391516600313],[122,35,64,-0.13889547176351422],[122,35,65,-0.1364819695275253],[122,35,66,-0.147385565111083],[122,35,67,-0.1285322562681672],[122,35,68,-0.10254210079917837],[122,35,69,-0.08355907289008575],[122,35,70,-0.07702388267201918],[122,35,71,-0.062429074226312595],[122,35,72,-0.06190278578030549],[122,35,73,-0.09294714043290242],[122,35,74,-0.10667216479148288],[122,35,75,-0.12232985899392006],[122,35,76,-0.1466195747188572],[122,35,77,-0.1517005478926409],[122,35,78,-0.14024603312460254],[122,35,79,-0.11089718012845357],[122,36,64,-0.13857259473954905],[122,36,65,-0.13649695421921026],[122,36,66,-0.14753238591077994],[122,36,67,-0.12865798738543666],[122,36,68,-0.10265487721339175],[122,36,69,-0.0837656448305936],[122,36,70,-0.07730328953996361],[122,36,71,-0.06276309861164799],[122,36,72,-0.06241396250802405],[122,36,73,-0.09368178379221068],[122,36,74,-0.10752704734102206],[122,36,75,-0.12314788001199886],[122,36,76,-0.14736180637437435],[122,36,77,-0.15255324041596294],[122,36,78,-0.1413667078221054],[122,36,79,-0.11210595489279429],[122,37,64,-0.13828618331743145],[122,37,65,-0.1365492187786314],[122,37,66,-0.14771798910691336],[122,37,67,-0.128816396882518],[122,37,68,-0.10279575816990685],[122,37,69,-0.08399849217945381],[122,37,70,-0.07760658238653617],[122,37,71,-0.06311720684039622],[122,37,72,-0.06294821442442072],[122,37,73,-0.09444841597812861],[122,37,74,-0.10841282331907551],[122,37,75,-0.12399949723122997],[122,37,76,-0.14814595899221705],[122,37,77,-0.15345172002103322],[122,37,78,-0.14253176583161523],[122,37,79,-0.11335061213397282],[122,38,64,-0.13803578811387587],[122,38,65,-0.13663848848791663],[122,38,66,-0.14794205464697183],[122,38,67,-0.12900715614188954],[122,38,68,-0.10296443346959719],[122,38,69,-0.08425740224210096],[122,38,70,-0.07793369670616845],[122,38,71,-0.06349158242987432],[122,38,72,-0.06350589010229397],[122,38,73,-0.09524729685411763],[122,38,74,-0.10932966968634468],[122,38,75,-0.12488478201047307],[122,38,76,-0.14897198011831392],[122,38,77,-0.15439598696086537],[122,38,78,-0.14374140392528145],[122,38,79,-0.1146315156486482],[122,39,64,-0.1378209629006855],[122,39,65,-0.13676448960893695],[122,39,66,-0.14820425938384713],[122,39,67,-0.12922993364353155],[122,39,68,-0.10316059490572689],[122,39,69,-0.0845421683043643],[122,39,70,-0.07828457393927592],[122,39,71,-0.06388641668356693],[122,39,72,-0.06408734641188585],[122,39,73,-0.09607868807464529],[122,39,74,-0.11027775513255537],[122,39,75,-0.12580379704831077],[122,39,76,-0.14983981505595834],[122,39,77,-0.15538604137515288],[122,39,78,-0.14499581407033105],[122,39,79,-0.11594901992451839],[122,40,64,-0.13764126463430645],[122,40,65,-0.136926949217253],[122,40,66,-0.14850427673490882],[122,40,67,-0.12948439471596526],[122,40,68,-0.10338393598724248],[122,40,69,-0.08485258924956113],[122,40,70,-0.07865916126049566],[122,40,71,-0.06430190882697105],[122,40,72,-0.06469294858912288],[122,40,73,-0.09694285274957894],[122,40,74,-0.11125723971681697],[122,40,75,-0.12675659605241002],[122,40,76,-0.15074940644018323],[122,40,77,-0.1564218827412974],[122,40,78,-0.14629518280961523],[122,40,79,-0.11730346971191775],[122,41,64,-0.13749625349453654],[122,41,65,-0.13712559503177255],[122,41,66,-0.14884177633680334],[122,41,67,-0.12977020129469283],[122,41,68,-0.10363415167667668],[122,41,69,-0.08518846919072809],[122,41,70,-0.0790574113871815],[122,41,71,-0.06473826616227081],[122,41,72,-0.0653230703058591],[122,41,73,-0.09784005509976647],[122,41,74,-0.11226827450873887],[122,41,75,-0.1277432234186046],[122,41,76,-0.1517006938276665],[122,41,77,-0.15750350933979196],[122,41,78,-0.147639690649471],[122,41,79,-0.11869519960101056],[122,42,64,-0.13738549293399754],[122,42,65,-0.13736015524234801],[122,42,66,-0.14921642369934565],[122,42,67,-0.13008701169149536],[122,42,68,-0.10391093814583546],[122,42,69,-0.0855496171207189],[122,42,70,-0.07947928240987975],[122,42,71,-0.06519570424190574],[122,42,72,-0.06597809374203048],[122,42,73,-0.09877056010556941],[122,42,74,-0.11331100123351028],[122,42,75,-0.1287637139230789],[122,42,76,-0.15269361330498882],[122,42,77,-0.15863091773661014],[122,42,78,-0.14902951145809326],[122,42,79,-0.12012453360809477],[122,43,64,-0.13730854974004514],[122,43,65,-0.13763035833758086],[122,43,66,-0.14962787986191226],[122,43,67,-0.1304344803780803],[122,43,68,-0.10421399255243768],[122,43,69,-0.0859358465828907],[122,43,70,-0.07992473764653041],[122,43,71,-0.06567444706112671],[122,43,72,-0.06665840965964852],[122,43,73,-0.09973463315015567],[122,43,74,-0.11438555192422663],[122,43,75,-0.12981809243111822],[122,43,76,-0.1537280971181575],[122,43,77,-0.15980410228535336],[122,43,78,-0.1504648118777464],[122,43,79,-0.12159178477463961],[122,44,64,-0.1372649941108971],[122,44,65,-0.13793593293518497],[122,44,66,-0.15007580105582985],[122,44,67,-0.13081225778763467],[122,44,68,-0.1045430128409223],[122,44,69,-0.08634697536514241],[122,44,70,-0.08039374552221182],[122,44,71,-0.06617472726971327],[122,44,72,-0.06736441747863468],[122,44,73,-0.10073253965945722],[122,44,74,-0.11549204858488124],[122,44,75,-0.13090637362602742],[122,44,76,-0.15480407332643825],[122,44,77,-0.16102305465205824],[122,44,78,-0.151945750754312],[122,44,79,-0.12309725478285703],[122,45,64,-0.13725439974783019],[122,45,65,-0.13827660761731284],[122,45,66,-0.15055983837630588],[122,45,67,-0.13121999013787736],[122,45,68,-0.10489769757064552],[122,45,69,-0.0867828252200739],[122,45,70,-0.08088627947627983],[122,45,71,-0.06669678640306642],[122,45,72,-0.06809652535454007],[122,45,73,-0.10176454474077201],[122,45,74,-0.11663060286754279],[122,45,75,-0.1320285617619255],[122,45,76,-0.15592146548364452],[122,45,77,-0.16228776336568154],[122,45,78,-0.15347247858782223],[122,45,79,-0.12464123359174616],[122,46,64,-0.13727634396530294],[122,46,65,-0.13865211077325865],[122,46,66,-0.15107963746746594],[122,46,67,-0.13165731927920904],[122,46,68,-0.10527774577467361],[122,46,69,-0.0872432216140265],[122,46,70,-0.08140231789875964],[122,46,71,-0.06724087513289016],[122,46,72,-0.06885515025819325],[122,46,73,-0.10283091282202153],[122,46,74,-0.11780131576729647],[122,46,75,-0.13318465044417072],[122,46,76,-0.15708019235006832],[122,46,77,-0.16359821339733902],[122,46,78,-0.1550451370077109],[122,46,79,-0.12622399909762913],[122,47,64,-0.13733039927754354],[122,47,65,-0.13906216189145304],[122,47,66,-0.15163482964626337],[122,47,67,-0.13212387397628275],[122,47,68,-0.1056828482394845],[122,47,69,-0.08772798487712355],[122,47,70,-0.08194183544932492],[122,47,71,-0.06780724487108906],[122,47,72,-0.06964070937252032],[122,47,73,-0.10393189859052665],[122,47,74,-0.11900426861683724],[122,47,75,-0.13437461370074116],[122,47,76,-0.15828015887889307],[122,47,77,-0.16495437699295828],[122,47,78,-0.15666384947887618],[122,47,79,-0.12784580800611298],[122,48,64,-0.13741603458921875],[122,48,65,-0.13950637221118253],[122,48,66,-0.15222493215750857],[122,48,67,-0.1326191700942566],[122,48,68,-0.10611258745377],[122,48,69,-0.0882368297777589],[122,48,70,-0.08250470255543188],[122,48,71,-0.06839604729406804],[122,48,72,-0.07045351914411437],[122,48,73,-0.10506764533971186],[122,48,74,-0.12023942125776203],[122,48,75,-0.1355983039870407],[122,48,76,-0.15952115388246937],[122,48,77,-0.16635611092637684],[122,48,78,-0.15832861816625612],[122,48,79,-0.12950679260162928],[122,49,64,-0.1375326397874894],[122,49,65,-0.139984268886548],[122,49,66,-0.1528493720713214],[122,49,67,-0.13314263456170702],[122,49,68,-0.10656646146183556],[122,49,69,-0.08876938912395975],[122,49,70,-0.08309070906203345],[122,49,71,-0.06900735813268145],[122,49,72,-0.07129381871290782],[122,49,73,-0.10623820783126833],[122,49,74,-0.12150663488372375],[122,49,75,-0.13685547500949213],[122,49,76,-0.16080287265739773],[122,49,77,-0.16780317885015195],[122,49,78,-0.160039346038603],[122,49,79,-0.1312069829024969],[122,50,64,-0.1376795908478959],[122,50,65,-0.14049535984249667],[122,50,66,-0.15350755107060501],[122,50,67,-0.13369367042400232],[122,50,68,-0.10704394900071926],[122,50,69,-0.08932527883555091],[122,50,70,-0.08369962954047333],[122,50,71,-0.06964124279747178],[122,50,72,-0.07216183535225133],[122,50,73,-0.10744361736893351],[122,50,74,-0.1228057373138098],[122,50,75,-0.13814584718574546],[122,50,76,-0.16212498244364892],[122,50,77,-0.16929531667585437],[122,50,78,-0.1617959021990497],[122,50,79,-0.13294637224276906],[122,51,64,-0.13785625060072432],[122,51,65,-0.14103913420598455],[122,51,66,-0.15419884574673473],[122,51,67,-0.13427165733726987],[122,51,68,-0.10754451000078982],[122,51,69,-0.08990409829464006],[122,51,70,-0.0843312237893722],[122,51,71,-0.07029775709444616],[122,51,72,-0.0730577848966709],[122,51,73,-0.1086838817833751],[122,51,74,-0.12413652311518059],[122,51,75,-0.1394691078764661],[122,51,76,-0.1634871225657855],[122,51,77,-0.17083223254349095],[122,51,78,-0.16359812171243177],[122,51,79,-0.13472491725844055],[122,52,64,-0.13806196822224773],[122,52,65,-0.1416150614525852],[122,52,66,-0.15492260662103796],[122,52,67,-0.13487595079731557],[122,52,68,-0.10806758482147567],[122,52,69,-0.090505429424436],[122,52,70,-0.08498523605640562],[122,52,71,-0.07097694663936228],[122,52,72,-0.07398187084705235],[122,52,73,-0.10995898410307496],[122,52,74,-0.1254987524355452],[122,52,75,-0.14082491033462602],[122,52,76,-0.16488890328808656],[122,52,77,-0.1724136054996428],[122,52,78,-0.1654458041388596],[122,52,79,-0.13654253657811566],[122,53,64,-0.13829607871201013],[122,53,65,-0.14222259053242728],[122,53,66,-0.15567815715920186],[122,53,67,-0.13550588137254177],[122,53,68,-0.1086125934927453],[122,53,69,-0.0911288357687843],[122,53,70,-0.08566139425463506],[122,53,71,-0.07167884624463057],[122,53,72,-0.07493428342953322],[122,53,73,-0.11126888119195158],[122,53,74,-0.1268921498300086],[122,53,75,-0.14221287265910343],[122,53,76,-0.16632990467201245],[122,53,77,-0.17403908417508088],[122,53,78,-0.16733871206752968],[122,53,79,-0.13839910951471385],[122,54,64,-0.1385579023603551],[122,54,65,-0.14286114898036936],[122,54,66,-0.15646479278472014],[122,54,67,-0.13616075394676766],[122,54,68,-0.10917893496770696],[122,54,69,-0.0917738615774519],[122,54,70,-0.08635940917756588],[122,54,71,-0.072403479281286],[122,54,72,-0.07591519861058153],[122,54,73,-0.1126135023584817],[122,54,74,-0.12831640308857226],[122,54,75,-0.14363257675885585],[122,54,76,-0.16780967544160283],[122,54,77,-0.17570828546750333],[122,54,78,-0.16927656965733617],[122,54,79,-0.14029447476499088],[122,55,64,-0.1388467442103898],[122,55,65,-0.14353014201535774],[122,55,66,-0.15728177989752826],[122,55,67,-0.13683984697785648],[122,55,68,-0.10976598639169341],[122,55,69,-0.09244003090222769],[122,55,70,-0.08707897371714715],[122,55,71,-0.07315085701852986],[122,55,72,-0.07692477707084426],[122,55,73,-0.1139927479412288],[122,55,74,-0.129771162070689],[122,55,75,-0.14508356733400618],[122,55,76,-0.16932773186248334],[122,55,77,-0.17742079323514606],[122,55,78,-0.17125906119099027],[122,55,79,-0.14222842912378716],[122,56,64,-0.13916189351863165],[122,56,65,-0.14422895163403135],[122,56,66,-0.1581283549041002],[122,56,67,-0.1375424117781561],[122,56,68,-0.11037310239329719],[122,56,69,-0.09312684670904538],[122,56,70,-0.08781976208906482],[122,56,71,-0.07392097794347927],[122,56,72,-0.07796316314054087],[122,56,73,-0.11540648787590749],[122,56,74,-0.13125603755344564],[122,56,75,-0.14656535088032457],[122,56,76,-0.1708835566402854],[122,56,77,-0.1791761570071756],[122,56,78,-0.17328582964954084],[122,56,79,-0.14420072622009608],[122,57,64,-0.13950262321860635],[122,57,65,-0.1449569357037027],[122,57,66,-0.15900372326535625],[122,57,67,-0.13826767182278196],[122,57,68,-0.11099961440284836],[122,57,69,-0.09383379001139802],[122,57,70,-0.08858142906975221],[122,57,71,-0.07471382706384955],[122,57,72,-0.07903048369933328],[122,57,73,-0.11685456024930829],[122,57,74,-0.13277060010008881],[122,57,75,-0.14807739472368206],[122,57,76,-0.17247659784438746],[122,57,77,-0.1809738907169154],[122,57,78,-0.17535647531436685],[122,57,79,-0.14621107528220023],[122,58,64,-0.13986818939163587],[122,58,65,-0.14571342705988516],[122,58,66,-0.15990705856875528],[122,58,67,-0.139014822091771],[122,58,68,-0.11164483000382795],[122,58,69,-0.09456031903036186],[122,58,70,-0.08936360924959272],[122,58,71,-0.0755293751963581],[122,58,72,-0.08012684704373145],[122,58,73,-0.11833676984555175],[122,58,74,-0.134314378955686],[122,58,75,-0.14961912609109018],[122,58,76,-0.17410626786291705],[122,58,77,-0.18281347146401286],[122,58,78,-0.17747055440378687],[122,58,79,-0.14825913993919776],[122,59,64,-0.140257830749114],[122,59,65,-0.14649773261365312],[122,59,66,-0.16083750163106875],[122,59,67,-0.13978302845220816],[122,59,68,-0.1123080323227881],[122,59,69,-0.09530586838666937],[122,59,70,-0.09016591630691162],[122,59,71,-0.07636757824378326],[122,59,72,-0.0812523417253116],[122,59,73,-0.11985288669038095],[122,59,74,-0.13588686097688205],[122,59,75,-0.15118993122505947],[122,59,76,-0.1757719423950788],[122,59,77,-0.18469433831181647],[122,59,78,-0.17962757775162685],[122,59,79,-0.15034453706640677],[122,60,64,-0.14067076813055943],[122,60,65,-0.1473091324741721],[122,60,66,-0.16179415963836152],[122,60,67,-0.14057142708641615],[122,60,68,-0.11298847946334473],[122,60,69,-0.09606984833031423],[122,60,70,-0.09098794230741018],[122,60,71,-0.07722837646369805],[122,60,72,-0.08240703536319285],[122,60,73,-0.1214026445993827],[122,60,74,-0.13748748960280158],[122,60,75,-0.15278915454805223],[122,60,76,-0.1774729594869252],[122,60,77,-0.18661589112631904],[122,60,78,-0.18182700953518513],[122,60,79,-0.15246683568222474],[122,61,64,-0.14110620402171806],[122,61,65,-0.14814687909178936],[122,61,66,-0.16277610532974704],[122,61,67,-0.14137912397229271],[122,61,68,-0.11368540398981364],[122,61,69,-0.09685164401322637],[122,61,70,-0.09182925703374893],[122,61,71,-0.07811169373198248],[122,61,72,-0.08359097343437762],[122,61,73,-0.12298573973618666],[122,61,74,-0.13911566387421068],[122,61,75,-0.1544160978838155],[122,61,76,-0.17920861861671147],[122,61,77,-0.188577489463072],[122,61,78,-0.1840682660601013],[122,61,79,-0.15462555590406218],[122,62,64,-0.14156332209698694],[122,62,65,-0.14901019642713564],[122,62,66,-0.16378237623151548],[122,62,67,-0.14220519442186558],[122,62,68,-0.11439801246605626],[122,62,69,-0.09765061481060386],[122,62,70,-0.09268940735005106],[122,62,71,-0.07901743680433392],[122,62,72,-0.08480417804576712],[122,62,73,-0.124601829186893],[122,62,74,-0.14077073750814262],[122,62,75,-0.15607001974242501],[122,62,76,-0.18097817983601913],[122,62,77,-0.19057845150856956],[122,62,78,-0.18635071460974112],[122,62,79,-0.15682016797105297],[122,63,64,-0.1420412867904538],[122,63,65,-0.14989827915177353],[122,63,66,-0.16481197394829247],[122,63,67,-0.14304868268414286],[122,63,68,-0.11512548505511686],[122,63,69,-0.09846609369655883],[122,63,70,-0.0935679166061741],[122,63,71,-0.07994549457911646],[122,63,72,-0.08604664669187553],[122,63,73,-0.1262505295571775],[122,63,74,-0.14245201803527155],[122,63,75,-0.15775013467588522],[122,63,76,-0.18278086297289356],[122,63,77,-0.19261805308267696],[122,63,78,-0.18867367236679072],[122,63,79,-0.15905009134130157],[122,64,64,-0.14253924289975373],[122,64,65,-0.15081029188590528],[122,64,66,-0.1658638635178249],[122,64,67,-0.1439086016182263],[122,64,68,-0.11586697518514692],[122,64,69,-0.09929738667970066],[122,64,70,-0.09446428408657614],[122,64,71,-0.08089573736493126],[122,64,72,-0.08731835100239436],[122,64,73,-0.1279314155986232],[122,64,74,-0.1441587660072837],[122,64,75,-0.15945561271105646],[122,64,76,-0.18461584690315758],[122,64,77,-0.1946955267086412],[122,64,78,-0.19103640541471378],[122,64,79,-0.16131469387136013],[122,65,64,-0.1430563152269705],[122,65,65,-0.1517453684787353],[122,65,66,-0.16693697283602432],[122,65,67,-0.14478393244262722],[122,65,68,-0.11662160928708785],[122,65,69,-0.10014377230432601],[122,65,70,-0.09537798450867993],[122,65,71,-0.08186801615645521],[122,65,72,-0.08861923548403584],[122,65,73,-0.1296440188710643],[122,65,74,-0.1458901942815855],[122,65,75,-0.1611855788666932],[122,65,76,-0.18648226889613462],[122,65,77,-0.19681006075733395],[122,65,78,-0.19343812782684744],[122,65,79,-0.16361329108570843],[122,66,64,-0.1435916082607588],[122,66,65,-0.1527026113370867],[122,66,66,-0.16803019215885934],[122,66,67,-0.14567362456665608],[122,66,68,-0.11738848660954618],[122,66,69,-0.10100450122287569],[122,66,70,-0.09630846757560456],[122,66,71,-0.08286216192209024],[122,66,72,-0.08994921626115256],[122,66,73,-0.1313878264477681],[122,66,74,-0.14764546739059783],[122,66,75,-0.16293911276126471],[122,66,76,-0.18837922404090202],[122,66,77,-0.19896079867226338],[122,66,78,-0.19587800085075846],[122,66,79,-0.16594514554385584],[122,67,64,-0.14414420590378027],[122,67,65,-0.15368109080786588],[122,67,66,-0.16914237368761234],[122,67,67,-0.14657659550958418],[122,67,68,-0.11816667911612812],[122,67,69,-0.10187879584526001],[122,67,70,-0.0972551575881695],[122,67,71,-0.08387798490717767],[122,67,72,-0.09130817981998418],[122,67,73,-0.1331622796705387],[122,67,74,-0.14942370100293068],[122,67,75,-0.1647152483181742],[122,67,76,-0.19030576475920874],[122,67,77,-0.20114683828199706],[122,67,78,-0.19835513219561446],[122,67,79,-0.1683094663127367],[122,68,64,-0.14471317124950892],[122,68,65,-0.15467984461996062],[122,68,66,-0.17027233124394647],[122,68,67,-0.1474917309131918],[122,68,68,-0.11895523147045015],[122,68,69,-0.10276585007061481],[122,68,70,-0.09821745312099275],[122,68,71,-0.0849152739564689],[122,68,72,-0.09269598176138659],[122,68,73,-0.13496677296179574],[122,68,74,-0.15122396148357853],[122,68,75,-0.1665129735748217],[122,68,76,-0.19226090041103952],[122,68,77,-0.20336723120646202],[122,68,78,-0.20086857543008665],[122,68,79,-0.17070540855183675],[122,69,64,-0.145297546412375],[122,69,65,-0.15569787739114324],[122,69,66,-0.17141884004113825],[122,69,67,-0.14841788465314337],[122,69,68,-0.11975316111388305],[122,69,69,-0.10366482910698435],[122,69,70,-0.09919472676750946],[122,69,71,-0.08597379585970889],[122,69,72,-0.09411244556719382],[122,69,73,-0.1368006527008667],[122,69,74,-0.15304526556024045],[122,69,75,-0.16833123060184657],[122,69,76,-0.19424359699875238],[122,69,77,-0.20562098236360252],[122,69,78,-0.2034173294983058],[122,69,79,-0.1731320732184338],[122,70,64,-0.14589635241513685],[122,70,65,-0.1567341602055022],[122,70,66,-0.1725806365576953],[122,70,67,-0.14935387905444436],[122,70,68,-0.12055945844092888],[122,70,69,-0.10457486938431801],[122,70,70,-0.10018632495865168],[122,70,71,-0.08705329472422102],[122,70,72,-0.09555736138549836],[122,70,73,-0.13866321617178065],[122,70,74,-0.15488658010273726],[122,70,75,-0.17016891553870017],[122,70,76,-0.19625277697559027],[122,70,77,-0.20790704958276687],[122,70,78,-0.20600033836125148],[122,70,79,-0.17558850690015865],[122,71,64,-0.1465085891372346],[122,71,65,-0.15778763026684656],[122,71,66,-0.17375641851940757],[122,71,67,-0.15029850521600754],[122,71,68,-0.12137308707692956],[122,71,69,-0.10549507856602815],[122,71,70,-0.10119156785982908],[122,71,71,-0.0881534913784085],[122,71,72,-0.09703048484026956],[122,71,73,-0.14055371058986466],[122,71,74,-0.15674682202230406],[122,71,75,-0.17202487875145756],[122,71,76,-0.19828731916417175],[122,71,77,-0.21022434333103532],[122,71,78,-0.20861649077074146],[122,71,79,-0.17807370178182733],[122,72,64,-0.14713323532778444],[122,72,65,-0.1588571906334562],[122,72,66,-0.1749448449957058],[122,72,67,-0.15125052344912038],[122,72,68,-0.12219298426259456],[122,72,69,-0.10642453566421081],[122,72,70,-0.10220974935074825],[122,72,71,-0.08927408281014956],[122,72,72,-0.0985315358709057],[122,72,73,-0.14247133221450398],[122,72,74,-0.15862485829737702],[122,72,75,-0.17389792511856556],[122,72,76,-0.20034605879042713],[122,72,77,-0.21257172655859174],[122,72,78,-0.2112646201830436],[122,72,79,-0.18058659575330946],[122,73,64,-0.14776924868675104],[122,73,65,-0.15994171003946972],[122,73,66,-0.1761445366160124],[122,73,67,-0.15220866383435955],[122,73,68,-0.12301806134962093],[122,73,69,-0.10736229126346729],[122,73,70,-0.10324013709249824],[122,73,71,-0.0904147416441027],[122,73,72,-0.10006019760746612],[122,73,73,-0.1444152255554324],[122,73,74,-0.1605195061322873],[122,73,75,-0.1757868144499694],[122,73,76,-0.2024277876382585],[122,73,77,-0.21494801466908384],[122,73,78,-0.2139435048189105],[122,73,79,-0.18312607266492717],[122,74,64,-0.1484155660176222],[122,74,65,-0.1610400228080092],[122,74,66,-0.17735407591145635],[122,74,67,-0.15317162690113276],[122,74,68,-0.12384720441134314],[122,74,69,-0.10830736785799848],[122,74,70,-0.10428197268610952],[122,74,71,-0.09157511566189974],[122,74,72,-0.10161611528739298],[122,74,73,-0.14638448267982868],[122,74,74,-0.16242953325494225],[122,74,75,-0.17769026204468533],[122,74,76,-0.2045312543298928],[122,74,77,-0.21735197562063424],[122,74,78,-0.21665186787650106],[122,74,79,-0.18569096273649927],[122,75,64,-0.14907110345480587],[122,75,65,-0.1621509288610552],[122,75,66,-0.17857200778710575],[122,75,67,-0.1541380844337469],[122,75,68,-0.12467927497209594],[122,75,69,-0.10925876030643468],[122,75,70,-0.10533447192665228],[122,75,71,-0.0927548273692472],[122,75,72,-0.1031988952196979],[122,75,73,-0.1483781426275008],[122,75,74,-0.16435365835935548],[122,75,75,-0.17960693939162256],[122,75,76,-0.20665516473672685],[122,75,77,-0.21978233016302637],[122,75,78,-0.21938837790344162],[122,75,79,-0.18828004312588664],[122,76,64,-0.14973475676875744],[122,76,65,-0.16327319383088235],[122,76,66,-0.17979684012954394],[122,76,67,-0.15510668040752906],[122,76,68,-0.12551311085863942],[122,76,69,-0.11021543640859349],[122,76,70,-0.10639682515672727],[122,76,71,-0.09395347361393772],[122,76,72,-0.10480810380266517],[122,76,73,-0.15039519094132678],[122,76,74,-0.1662905516985271],[122,76,75,-0.18153547501806164],[122,76,76,-0.20879818252513846],[122,76,77,-0.22223775221627862],[122,76,78,-0.22215164933389983],[122,76,79,-0.1908920386624709],[122,77,64,-0.15040540175162165],[122,77,65,-0.1644055492776465],[122,77,66,-0.1810270445542387],[122,77,67,-0.1560760320580885],[122,77,68,-0.1263475271765847],[122,77,69,-0.11117633760799255],[122,77,70,-0.10746819772291268],[122,77,71,-0.09517062525869768],[122,77,72,-0.10644326660115844],[122,77,73,-0.15243455931997266],[122,77,74,-0.16823883583278362],[122,77,75,-0.18347445548977082],[122,77,76,-0.2109589298414114],[122,77,77,-0.22471686939553098],[122,77,78,-0.22494024319617245],[122,77,79,-0.1935256227505713],[122,78,64,-0.15108189468597283],[122,78,65,-0.16554669301750477],[122,78,66,-0.1822610572968041],[122,78,67,-0.15704473108641614],[122,78,68,-0.12718131741440086],[122,78,69,-0.11214037982364156],[122,78,70,-0.10854773053849671],[122,78,71,-0.09640582691278031],[122,78,72,-0.10810386748970542],[122,78,73,-0.15449512539977897],[122,78,74,-0.17019708653831164],[122,78,75,-0.1854224265663348],[122,78,76,-0.2131359881396008],[122,78,77,-0.22721826368685866],[122,78,78,-0.22775266799589375],[122,78,79,-0.196179418447375],[122,79,64,-0.1517630728990033],[122,79,65,-0.16669528956540283],[122,79,66,-0.18349728025184395],[122,79,67,-0.15801134500205846],[122,79,68,-0.12801325467716626],[122,79,69,-0.11310645441426251],[122,79,70,-0.10963454075553852],[122,79,71,-0.09765859672615476],[122,79,72,-0.10978934786756794],[122,79,73,-0.15657571267252562],[122,79,74,-0.17216383388018294],[122,79,75,-0.18737789451481063],[122,79,76,-0.21532789915581227],[122,79,77,-0.22974047227829406],[122,79,78,-0.2305873807795489],[122,79,79,-0.1988519997194756],[122,80,64,-0.15244775540421357],[122,80,65,-0.1678499706963382],[122,80,66,-0.184734082162577],[122,80,67,-0.15897441860606273],[122,80,68,-0.12884209305170669],[122,80,69,-0.11407342927761374],[122,80,70,-0.11072772254890657],[122,80,71,-0.09892842624999554],[122,80,72,-0.11149910595196107],[122,80,73,-0.15867509054551374],[122,80,74,-0.1741375634536492],[122,80,75,-0.18933932758428815],[122,80,76,-0.21753316603193082],[122,80,77,-0.23228198854992724],[122,80,78,-0.23344278838246565],[122,80,79,-0.20154189288156224],[122,81,64,-0.15313474363240878],[122,81,65,-0.16900933612864072],[122,81,66,-0.18596979996400123],[122,81,67,-0.15993247561491944],[122,81,68,-0.12966656910434635],[122,81,69,-0.11504015008720737],[122,81,70,-0.11182634801465005],[122,81,71,-0.10021478036712271],[122,81,72,-0.11323249615561674],[122,81,73,-0.16079197455018576],[122,81,74,-0.1761167177970166],[122,81,75,-0.19130515764344425],[122,81,76,-0.2197502545914462],[122,81,77,-0.2348412632265647],[122,81,78,-0.23631724886496933],[122,81,79,-0.20424757822027728],[122,82,64,-0.1538228222535178],[122,82,65,-0.17017195433244298],[122,82,66,-0.18720274028182032],[122,82,67,-0.160884020426147],[122,82,68,-0.13048540351193125],[122,82,69,-0.11600544166819296],[122,82,70,-0.1129294681846468],[122,82,71,-0.10151709729590054],[122,82,72,-0.11498882855482497],[122,82,73,-0.16292502670518585],[122,82,74,-0.17809969797884223],[122,82,75,-0.19327378198261694],[122,82,76,-0.22197759476959322],[122,82,77,-0.23741670569603004],[122,82,78,-0.2392090731398794],[122,82,79,-0.20696749180568444],[122,83,64,-0.154510761700638],[122,83,65,-0.1713363645933389],[122,83,66,-0.18843118161156294],[122,83,67,-0.16182753986520995],[122,83,68,-0.1312973022070335],[122,83,69,-0.11696810853108301],[122,83,70,-0.11403611278572186],[122,83,71,-0.10283478706230695],[122,83,72,-0.11676736621213483],[122,83,73,-0.16507285229027893],[122,83,74,-0.18008486064695056],[122,83,75,-0.1952435595014978],[122,83,76,-0.22421357480485923],[122,83,77,-0.24000667678071838],[122,83,78,-0.24211651720721464],[122,83,79,-0.2097000185102561],[122,84,64,-0.1551973738904771],[122,84,65,-0.17250111784597613],[122,84,66,-0.18965339692470715],[122,84,67,-0.16276150360696948],[122,84,68,-0.13210094132336941],[122,84,69,-0.11792690758749713],[122,84,70,-0.11514524989898044],[122,84,71,-0.10416718209564084],[122,84,72,-0.11856725499816634],[122,84,73,-0.16723388339129341],[122,84,74,-0.18207037242120067],[122,84,75,-0.19721263161270278],[122,84,76,-0.226456310602959],[122,84,77,-0.24260921575293826],[122,84,78,-0.24503748118034735],[122,84,79,-0.21244320963955635],[122,85,64,-0.1558815414964802],[122,85,65,-0.17366480470567633],[122,85,66,-0.19086767936513138],[122,85,67,-0.16368438189942808],[122,85,68,-0.13289497801105093],[122,85,69,-0.11888055412611073],[122,85,70,-0.11625578768948716],[122,85,71,-0.10551353383508179],[122,85,72,-0.1203875146095616],[122,85,73,-0.16940636342169707],[122,85,74,-0.18405419028041164],[122,85,75,-0.19917889618087198],[122,85,76,-0.2287036088063626],[122,85,77,-0.2452219926789516],[122,85,78,-0.24796945288004388],[122,85,79,-0.21519472713552754],[122,86,64,-0.15656216812933818],[122,86,65,-0.17482602469427388],[122,86,66,-0.19207233488664177],[122,86,67,-0.16459466170331213],[122,86,68,-0.13367808156248992],[122,86,69,-0.11982776517586038],[122,86,70,-0.11736663117534324],[122,86,71,-0.1068730758970051],[122,86,72,-0.12222712427391723],[122,86,73,-0.17158849065622567],[122,86,74,-0.1860342423467266],[122,86,75,-0.20114022780963223],[122,86,76,-0.23095324611394039],[122,86,77,-0.2478426353584196],[122,86,78,-0.25090986576767993],[122,86,79,-0.21795217776426848],[122,87,64,-0.15723817582446772],[122,87,65,-0.17598338535444324],[122,87,66,-0.19326568348534376],[122,87,67,-0.16549084953377102],[122,87,68,-0.13444893717779602],[122,87,69,-0.1207672640852838],[122,87,70,-0.11847668732464689],[122,87,71,-0.10824502861205865],[122,87,72,-0.12408502849028712],[122,87,73,-0.17377842872177365],[122,87,74,-0.18800844181641643],[122,87,75,-0.20309449427340553],[122,87,76,-0.2332029888762174],[122,87,77,-0.25046875189921824],[122,87,78,-0.2538561240892278],[122,87,79,-0.22071313708588072],[122,88,64,-0.15790850606948248],[122,88,65,-0.17713550379505005],[122,88,66,-0.19444606145862034],[122,88,67,-0.16637147378241737],[122,88,68,-0.13520624820485352],[122,88,69,-0.12169778278926975],[122,88,70,-0.1195848669465863],[122,88,71,-0.1096285998370923],[122,88,72,-0.12596013763135386],[122,88,73,-0.1759743084759905],[122,88,74,-0.18997469001699088],[122,88,75,-0.20503955959385695],[122,88,76,-0.23545059560623635],[122,88,77,-0.2530979332043624],[122,88,78,-0.2568056059869448],[122,88,79,-0.22347515283073585],[122,89,64,-0.15857212087405329],[122,89,65,-0.17828100830885144],[122,89,66,-0.19561182373977767],[122,89,67,-0.16723508710087423],[122,89,68,-0.1359487384480466],[122,89,69,-0.12261806416825548],[122,89,70,-0.12069008667001865],[122,89,71,-0.11102298585083492],[122,89,72,-0.12785132866956683],[122,89,73,-0.17817423004933297],[122,89,74,-0.19193087960821087],[122,89,75,-0.2069732872473746],[122,89,76,-0.23769381963224287],[122,89,77,-0.25572775562629885],[122,89,78,-0.259755666804072],[122,89,79,-0.22623574846112038],[122,90,64,-0.15922800387745403],[122,90,65,-0.17941854005705687],[122,90,66,-0.19676134630035377],[122,90,67,-0.16808026883740576],[122,90,68,-0.13667515453784346],[122,90,69,-0.12352686449279919],[122,90,70,-0.1217912710037785],[122,90,71,-0.11242737233155643],[122,90,72,-0.12975744602738196],[122,90,73,-0.18037626504677745],[122,90,74,-0.1938748979185611],[122,90,75,-0.20889354349415984],[122,90,76,-0.23993041188394842],[122,90,77,-0.2583557837807189],[122,90,78,-0.26270364257352835],[122,90,79,-0.2289924269089946],[122,91,64,-0.1598751614890653],[122,91,65,-0.1805467548151071],[122,91,66,-0.19789302861190056],[122,91,67,-0.1689056275180274],[122,91,68,-0.13738426835321868],[122,91,69,-0.12442295594612088],[122,91,70,-0.12288735447263902],[122,91,71,-0.1138409354147074],[122,91,72,-0.13167730255139698],[122,91,73,-0.1825784589048854],[122,91,74,-0.19580463040820012],[122,91,75,-0.21079820081904502],[122,91,76,-0.24215812380375526],[122,91,77,-0.26097957351160267],[122,91,78,-0.2656468536809635],[122,91,79,-0.23174267447989652],[122,92,64,-0.1605126240569935],[122,92,65,-0.1816643247737838],[122,92,66,-0.19900529615874385],[122,92,67,-0.16970980336320113],[122,92,68,-0.1380748794885501],[122,92,69,-0.12530512921674639],[122,92,70,-0.12397728382242436],[122,92,71,-0.11526284282818422],[122,92,72,-0.1336096806097459],[122,92,73,-0.18477883339933523],[122,92,74,-0.19771796424881166],[122,92,75,-0.21268514147363504],[122,92,76,-0.24437471037389738],[122,92,77,-0.26359667499871803],[122,92,78,-0.2685826086918793],[122,92,79,-0.23448396491229198],[122,93,64,-0.16113944705999625],[122,93,65,-0.18276994038967176],[122,93,66,-0.2000966029931125],[122,93,67,-0.17049147083112287],[122,93,68,-0.13874581775647013],[122,93,69,-0.12617219615312197],[122,93,70,-0.12506002028751592],[122,93,71,-0.11669225510266482],[122,93,72,-0.1355533333118102],[122,93,73,-0.18697538929758545],[122,93,74,-0.19961279201033424],[122,93,75,-0.21455226110901135],[122,93,76,-0.2465779332501724],[122,93,77,-0.2662046359984501],[122,93,78,-0.27150820833201406],[122,93,79,-0.2372137635810847],[122,94,64,-0.16175471231781754],[122,94,65,-0.18386231227878472],[122,94,66,-0.20116543432379064],[122,94,67,-0.1712493411783893],[122,94,68,-0.13939594571788166],[122,94,69,-0.12702299247167534],[122,94,70,-0.12613454191362267],[122,94,71,-0.11812832685413391],[122,94,72,-0.13750698584886134],[122,94,73,-0.18916610915075693],[122,94,74,-0.2014870154440007],[122,94,75,-0.21639747248777425],[122,94,76,-0.24876556399252964],[122,94,77,-0.2688010052083554],[122,94,78,-0.27442094960954955],[122,94,79,-0.23992953183330526],[122,95,64,-0.16235752921504695],[122,95,65,-0.1849401731470608],[122,95,66,-0.2022103091293197],[122,95,67,-0.17198216502872984],[122,95,68,-0.14002416123017228],[122,95,69,-0.12785638050950585],[122,95,70,-0.12719984592840317],[122,95,71,-0.11957020813547103],[122,95,72,-0.1394693369539041],[122,95,73,-0.19134896021837458],[122,95,74,-0.2033385493507082],[122,95,75,-0.21821870926387243],[122,95,76,-0.2509353873825257],[122,95,77,-0.271383335745514],[122,95,78,-0.2773181300672363],[122,95,79,-0.24262873144347777],[122,96,64,-0.16294703593356555],[122,96,65,-0.18600227975126216],[122,96,66,-0.20322978278661402],[122,96,67,-0.17268873494034329],[122,96,68,-0.14062940000446814],[122,96,69,-0.12867125201256763],[122,96,70,-0.12825495115221042],[122,96,71,-0.12101704585366617],[122,96,72,-0.14143906047853896],[122,96,73,-0.19352189751904222],[122,96,74,-0.205165325523247],[122,96,75,-0.22001392981826728],[122,96,76,-0.25308520481728747],[122,96,77,-0.27394918872829305],[122,96,78,-0.2801970521519327],[122,96,79,-0.24530882917551472],[122,97,64,-0.16352240068864846],[122,97,65,-0.18704741488371945],[122,97,66,-0.20422244970575315],[122,97,67,-0.17336788796230632],[122,97,68,-0.1412106381626214],[122,97,69,-0.12946653094993746],[122,97,70,-0.12929890044096712],[122,97,71,-0.1224679852489749],[122,97,72,-0.14341480708429757],[122,97,73,-0.1956828669996926],[122,97,74,-0.2069652967505577],[122,97,75,-0.2217811211382125],[122,97,76,-0.25521283776939613],[122,97,77,-0.2764961369508489],[122,97,78,-0.28305502768864393],[122,97,79,-0.24796730143754253],[122,98,64,-0.1640828229638039],[122,98,65,-0.1880743893742587],[122,98,66,-0.2051869459616336],[122,98,67,-0.1740185081704764],[122,98,68,-0.14176689478451815],[122,98,69,-0.1302411763445311],[122,98,70,-0.13033076315294384],[122,98,71,-0.12392217143207103],[122,98,72,-0.14539520604550393],[122,98,73,-0.19782980881557075],[122,98,74,-0.20873644087181947],[122,98,75,-0.22351830272764844],[122,98,76,-0.2573161313018478],[122,98,77,-0.2790217686393398],[122,98,78,-0.2858893824456788],[122,98,79,-0.2506016390155605],[122,99,64,-0.16462753473939667],[122,99,65,-0.1890820441025273],[122,99,66,-0.20612195191306956],[122,99,67,-0.17463952917323966],[122,99,68,-0.14229723443616016],[122,99,69,-0.1309941851103652],[122,99,70,-0.13134963763093677],[122,99,71,-0.12537875097494758],[122,99,72,-0.1473788671602671],[122,99,73,-0.1999606607126212],[122,99,74,-0.21047676486779626],[122,99,75,-0.22522353053593033],[122,99,76,-0.2593929576269749],[122,99,77,-0.2815236912784788],[122,99,78,-0.2886974607770889],[122,99,79,-0.2532093518713544],[122,100,64,-0.16515580171015015],[122,100,65,-0.190069252013879],[122,100,66,-0.207026194799906],[122,100,67,-0.17522993657746685],[122,100,68,-0.142800769668913],[122,100,69,-0.13172459488627938],[122,100,70,-0.13235465369115426],[122,100,71,-0.1268368735510916],[122,100,72,-0.14936438276584446],[122,100,73,-0.2020733615035434],[122,100,74,-0.2121843089766152],[122,100,75,-0.22689490089194925],[122,100,76,-0.2614412196980581],[122,100,77,-0.2839995354968159],[122,100,78,-0.2914766303282357],[122,100,79,-0.2557879739897579],[122,101,64,-0.16566692448666387],[122,101,65,-0.19103492013194923],[122,101,66,-0.20789845130873563],[122,101,67,-0.17578877040510926],[122,101,68,-0.14327666348031687],[122,101,69,-0.13243148685591058],[122,101,70,-0.13334497510997104],[122,101,71,-0.12829569362023435],[122,101,72,-0.15135032985422875],[122,101,73,-0.20416585462838086],[122,101,74,-0.21385715082091114],[122,101,75,-0.22853055443055623],[122,101,76,-0.2634588548221902],[122,101,77,-0.2864469589988855],[122,101,78,-0.29422428678998463],[122,101,79,-0.2583350682599932],[122,102,64,-0.16616023977606006],[122,102,65,-0.19197799156093306],[122,102,66,-0.20873755009774492],[122,102,67,-0.17631512745082922],[122,102,68,-0.14372413172675555],[122,102,69,-0.13311398854348175],[122,102,70,-0.13431980209946726],[122,102,71,-0.12975437215266755],[122,102,72,-0.1533352722833516],[122,102,73,-0.20623609179004912],[122,102,74,-0.21549340953299437],[122,102,75,-0.23012867999801465],[122,102,76,-0.2654438382827598],[122,102,77,-0.28886365053207763],[122,102,78,-0.2969378586866926],[122,102,79,-0.26084823137549623],[122,103,64,-0.16663512153697732],[122,103,65,-0.19289744747062879],[122,103,66,-0.20954237427133482],[122,103,67,-0.17680816357123033],[122,103,68,-0.14414244547837396],[122,103,69,-0.133771276574946],[122,103,70,-0.13527837376261354],[122,103,71,-0.1312120783879608],[122,103,72,-0.15531776307897344],[122,103,73,-0.208282036654906],[122,103,74,-0.2170912498645974],[122,103,75,-0.2316875185232013],[122,103,76,-0.26739418695986716],[122,103,77,-0.2912473338759557],[122,103,78,-0.2996148121829612],[122,103,79,-0.26332509873644283],[122,104,64,-0.1670909821041848],[122,104,65,-0.19379230905728906],[122,104,66,-0.21031186379522832],[122,104,67,-0.17726709589635828],[122,104,68,-0.14453093330668534],[122,104,69,-0.13440257939394976],[122,104,70,-0.13621997051885723],[122,104,71,-0.13266799162269272],[122,104,72,-0.15729634682194127],[122,104,73,-0.2103016686081168],[122,104,74,-0.2186488862676268],[122,104,75,-0.23320536684122983],[122,104,76,-0.26930796293691345],[122,104,77,-0.29359577184157615],[122,104,78,-0.30225265589392153],[122,104,79,-0.2657633493389987],[122,105,64,-0.1675272733622868],[122,105,65,-0.194661639505553],[122,105,66,-0.21104501772252637],[122,105,67,-0.17769120479660702],[122,105,68,-0.1448889833684578],[122,105,69,-0.1350071798201443],[122,105,70,-0.13714391637012244],[122,105,71,-0.13412130286785895],[122,105,72,-0.15926956201584683],[122,105,73,-0.21229298653986242],[122,105,74,-0.22016458692748486],[122,105,75,-0.2346805814234259],[122,105,76,-0.27118327712582774],[122,105,77,-0.29590677034172225],[122,105,78,-0.30484894572314297],[122,105,79,-0.2681607106784593],[122,106,64,-0.1679435850924696],[122,106,65,-0.1955045827910648],[122,106,66,-0.21174075641090095],[122,106,67,-0.17807965247894267],[122,106,68,-0.1452158975552239],[122,106,69,-0.13558429822366913],[122,106,70,-0.13804943961139934],[122,106,71,-0.13557103680016155],[122,106,72,-0.16123582784936014],[122,106,73,-0.21425399706323695],[122,106,74,-0.2216366716216237],[122,106,75,-0.23611154324318087],[122,106,76,-0.27301834342922116],[122,106,77,-0.29817826663778646],[122,106,78,-0.30740133423014177],[122,106,79,-0.27051501292232716],[122,107,64,-0.16833982866726047],[122,107,65,-0.19632043217547426],[122,107,66,-0.21239765368852923],[122,107,67,-0.17843113180257958],[122,107,68,-0.14551060628083792],[122,107,69,-0.13613285879251724],[122,107,70,-0.1389353935786894],[122,107,71,-0.1370157002377462],[122,107,72,-0.16319322183284926],[122,107,73,-0.21618268771786875],[122,107,74,-0.22306349956680768],[122,107,75,-0.2374965814624288],[122,107,76,-0.2748115729949829],[122,107,77,-0.30040848650705954],[122,107,78,-0.30990765155196637],[122,107,79,-0.2728242814968807],[122,108,64,-0.16871599686643435],[122,108,65,-0.19710853661998803],[122,108,66,-0.213014275680878],[122,108,67,-0.17874430995585414],[122,108,68,-0.14577202337083256],[122,108,69,-0.1366517703307851],[122,108,70,-0.13980058706530146],[122,108,71,-0.13845370702396068],[122,108,72,-0.16513975833493041],[122,108,73,-0.21807706750007833],[122,108,74,-0.2244434816912538],[122,108,75,-0.23883406289339043],[122,108,76,-0.27656144585411163],[122,108,77,-0.30259573187966116],[122,108,78,-0.3123657884435672],[122,108,79,-0.27508661220728786],[122,109,64,-0.16907211117416146],[122,109,65,-0.19786828156233505],[122,109,66,-0.21358925827036399],[122,109,67,-0.17901792916783069],[122,109,68,-0.14599912722794156],[122,109,69,-0.1371399916549183],[122,109,70,-0.14064386102357068],[122,109,71,-0.1398834756164757],[122,109,72,-0.1670734534120858],[122,109,73,-0.21993517885977887],[122,109,74,-0.22577508661847917],[122,109,75,-0.24012241522471459],[122,109,76,-0.27826648528803594],[122,109,77,-0.3047383369429056],[122,109,78,-0.31477367448560095],[122,109,79,-0.2773001472761523],[122,110,64,-0.1694082217474683],[122,110,65,-0.19859909004580917],[122,110,66,-0.21412130963906134],[122,110,67,-0.17925080923104497],[122,110,68,-0.14619096314227506],[122,110,69,-0.13759653403372396],[122,110,70,-0.14146409086154182],[122,110,71,-0.14130343162901585],[122,110,72,-0.16899232811924347],[122,110,73,-0.22175510141970467],[122,110,74,-0.22705684393631864],[122,110,75,-0.24136013018604072],[122,110,76,-0.2799252602141635],[122,110,77,-0.30683467062948266],[122,110,78,-0.31712928155644865],[122,110,79,-0.27946307877871895],[122,111,64,-0.16972440732161617],[122,111,65,-0.19930042378910298],[122,111,66,-0.2146092127258064],[122,111,67,-0.17944184992919404],[122,111,68,-0.14634664551458504],[122,111,69,-0.13802046356454253],[122,111,70,-0.14226018871930352],[122,111,71,-0.142712010436335],[122,111,72,-0.17089441189234844],[122,111,73,-0.2235349556731612],[122,111,74,-0.228287347370178],[122,111,75,-0.24254576661688695],[122,111,76,-0.2815363875042125],[122,111,77,-0.3088831390612789],[122,111,78,-0.31943062724965543],[122,111,79,-0.2815736519882552],[122,112,64,-0.170020775053701],[122,112,65,-0.1999717841940667],[122,112,66,-0.21505182758647798],[122,112,67,-0.1795900333573415],[122,112,68,-0.14646535998159158],[122,112,69,-0.13841090347546245],[122,112,70,-0.14303110571615574],[122,112,71,-0.14410765983354973],[122,112,72,-0.17277774599248014],[122,112,73,-0.22527290664900237],[122,112,74,-0.22946525785036673],[122,112,75,-0.24367795342965043],[122,112,76,-0.2830985342301343],[122,112,77,-0.31088218794490413],[122,112,78,-0.3216757782291461],[122,112,79,-0.2836301686231404],[122,113,64,-0.17029746030589096],[122,113,65,-0.20061271328866656],[122,113,66,-0.21544809364662065],[122,113,67,-0.17969442612265926],[122,113,68,-0.1465463654327132],[122,113,69,-0.1387670363436912],[122,113,70,-0.14377583415988493],[122,113,71,-0.14548884274080046],[122,113,72,-0.17464038700087467],[122,113,73,-0.2269671675325699],[122,113,74,-0.23058930646359274],[122,113,75,-0.24475539245676733],[122,113,76,-0.28461041983253266],[122,113,77,-0.3128303049149533],[122,113,78,-0.32386285351457744],[122,113,79,-0.2856309899873807],[122,114,64,-0.17055462636978957],[122,114,65,-0.20122279460249515],[122,114,66,-0.2157970318359422],[122,114,67,-0.17975418141417612],[122,114,68,-0.14658899590791194],[122,114,69,-0.13908810622041376],[122,114,70,-0.14449340970949415],[122,114,71,-0.1468540399440197],[122,114,72,-0.17648041035394757],[122,114,73,-0.22861600323133804],[122,114,74,-0.2316582972789371],[122,114,75,-0.2457768611723472],[122,114,76,-0.2860708182065844],[122,114,77,-0.31472602182101284],[122,114,78,-0.32599002768923335],[122,114,79,-0.2875745399964336],[122,115,64,-0.17079246358544967],[122,115,65,-0.2018016534178385],[122,115,66,-0.21609774603364434],[122,115,67,-0.17976854036299592],[122,115,68,-0.14659266179274338],[122,115,69,-0.13937342007216758],[122,115,70,-0.14518291289574095],[122,115,71,-0.14820175226882762],[122,115,72,-0.1782959133070839],[122,115,73,-0.2302177332673409],[122,115,74,-0.23267110942557467],[122,115,75,-0.24674121465900095],[122,115,76,-0.28747855907410674],[122,115,77,-0.31656791632135195],[122,115,78,-0.3280555333833612],[122,115,79,-0.28945930743442194],[122,116,64,-0.17101105334894848],[122,116,65,-0.20234882028827886],[122,116,66,-0.21634928610425902],[122,116,67,-0.17973669336031164],[122,116,68,-0.14655670936206935],[122,116,69,-0.1396222059689593],[122,116,70,-0.14584332580510456],[122,116,71,-0.14953035636392775],[122,116,72,-0.18008486987164307],[122,116,73,-0.23177058490976155],[122,116,74,-0.23362654770619792],[122,116,75,-0.24764723447316034],[122,116,76,-0.28883237467026535],[122,116,77,-0.31835445718595917],[122,116,78,-0.3300575058090044],[122,116,79,-0.2912836885997143],[122,117,64,-0.17121018362089804],[122,117,65,-0.20286354537338355],[122,117,66,-0.21655046100797615],[122,117,67,-0.17965759076039223],[122,117,68,-0.14648022904573954],[122,117,69,-0.13983341933834836],[122,117,70,-0.14647333619273656],[122,117,71,-0.15083790730352295],[122,117,72,-0.18184493187711642],[122,117,73,-0.23327249164261266],[122,117,74,-0.23452313778365108],[122,117,75,-0.24849342138413785],[122,117,76,-0.2901306896586344],[122,117,77,-0.32008379215381727],[122,117,78,-0.331993769114181],[122,117,79,-0.2930457710281354],[122,118,64,-0.17138961044302178],[122,118,65,-0.20334506404541444],[122,118,66,-0.2167001084158457],[122,118,67,-0.17953021540437575],[122,118,68,-0.1463623308811664],[122,118,69,-0.14000602179747274],[122,118,70,-0.14707161959932283],[122,118,71,-0.15212242465695977],[122,118,72,-0.18357371888864893],[122,118,73,-0.23472138578788437],[122,118,74,-0.2353594208553293],[122,118,75,-0.2492782929923382],[122,118,76,-0.29137192137026],[122,118,77,-0.3217540515192566],[122,118,78,-0.3338621437958131],[122,118,79,-0.29474364358686644],[122,119,64,-0.17154910110363075],[122,119,65,-0.20379264162949334],[122,119,66,-0.21679714087720392],[122,119,67,-0.17935362917553002],[122,119,68,-0.146202191504299],[122,119,69,-0.140139029034815],[122,119,70,-0.14763688804892497],[122,119,71,-0.15338194269491834],[122,119,72,-0.1852688697348498],[122,119,73,-0.23611525012526857],[122,119,74,-0.23613400474641918],[122,119,75,-0.2500004352517499],[122,119,76,-0.2925545315003147],[122,119,77,-0.32336340070153685],[122,119,78,-0.3356605005624412],[122,119,79,-0.296375450494371],[122,120,64,-0.1716884339585229],[122,120,65,-0.2042055742638246],[122,120,66,-0.2168405475109011],[122,120,67,-0.1791269745536873],[122,120,68,-0.14599905564891438],[122,120,69,-0.14023151271659323],[122,120,70,-0.1481678923105302],[122,120,71,-0.15461451372205948],[122,120,72,-0.18692804664353424],[122,120,73,-0.23745212151610412],[122,120,74,-0.2368455664391926],[122,120,75,-0.25065850491776903],[122,120,76,-0.29367702828619563],[122,120,77,-0.32491004281583225],[122,120,78,-0.3373867636497188],[122,120,79,-0.2979393942500427],[122,121,64,-0.17180739825794297],[122,121,65,-0.2045831897322672],[122,121,66,-0.21682939557455116],[122,121,67,-0.1788494760317403],[122,121,68,-0.14575223752839891],[122,121,69,-0.1402826023034865],[122,121,70,-0.1486634241217635],[122,121,71,-0.15581821144582012],[122,121,72,-0.1885489394071865],[122,121,73,-0.23873009446892168],[122,121,74,-0.23749285449258806],[122,121,75,-0.25125123188814386],[122,121,76,-0.2947379686505264],[122,121,77,-0.32639222124074385],[122,121,78,-0.33903891409138875],[122,121,79,-0.2994337384857199],[122,122,64,-0.17190579398119613],[122,122,65,-0.20492484826733373],[122,122,66,-0.21676283190486528],[122,122,67,-0.1785204413868593],[122,122,68,-0.1454611220931863],[122,122,69,-0.1402914867703333],[122,122,70,-0.14912231836708803],[122,122,71,-0.15699113437110868],[122,122,72,-0.19012926956603365],[122,122,73,-0.23994732463625942],[122,122,74,-0.23807469134485146],[122,122,75,-0.25177742142993287],[122,122,76,-0.2957359603046296],[122,122,77,-0.3278082221777369],[122,122,78,-0.340614992938522],[122,122,79,-0.3008568107326929],[122,123,64,-0.17198343168046096],[122,123,65,-0.20522994332177344],[122,123,66,-0.21664008422263406],[122,123,67,-0.17813926279968942],[122,123,68,-0.1451251661575272],[122,123,69,-0.14025741622181723],[122,123,70,-0.14954345520300213],[122,123,71,-0.1581314092105737],[122,123,72,-0.19166679459653144],[122,123,73,-0.24110203223259555],[122,123,74,-0.2385899754923482],[122,123,75,-0.2522359562857033],[122,123,76,-0.2966696638080447],[122,123,77,-0.32915637719775226],[122,123,78,-0.34211310441981796],[122,123,79,-0.3022070050979931],[122,124,64,-0.17204013233524357],[122,124,65,-0.20549790230692574],[122,124,66,-0.21646046229640317],[122,124,67,-0.1777054178153523],[122,124,68,-0.14474389938973412],[122,124,69,-0.14017970339748914],[122,124,70,-0.14992576212289466],[122,124,71,-0.1592371943000244],[122,124,72,-0.19315931209297194],[122,124,73,-0.2421925053634035],[122,124,74,-0.23903768353796687],[122,124,75,-0.25262579865250495],[122,124,76,-0.297537794579653],[122,124,77,-0.3304350657700712],[122,124,78,-0.3435314190357605],[122,124,79,-0.3034827848439175],[122,125,64,-0.17207572721883468],[122,125,65,-0.20572818729610057],[122,125,66,-0.21622335895939146],[122,125,67,-0.1772184701406727],[122,125,68,-0.14431692516054712],[122,125,69,-0.14005772505984657],[122,125,70,-0.15026821595440937],[122,125,71,-0.16030668300854517],[122,125,72,-0.1946046639299064],[122,125,73,-0.24321710325559348],[122,125,74,-0.23941687210292537],[122,125,75,-0.2529459920275475],[122,125,76,-0.298339124856026],[122,125,77,-0.33164271776842025],[122,125,78,-0.34486817657953933],[122,125,79,-0.3046826848649999],[122,126,64,-0.17209005777807795],[122,126,65,-0.20592029569134152],[122,126,66,-0.21592825097478027],[122,126,67,-0.17667807027273058],[122,126,68,-0.14384392124485337],[122,126,69,-0.1398909232596624],[122,126,70,-0.15056984478245083],[122,126,71,-0.16133810713287583],[122,126,72,-0.19600074039310914],[122,126,73,-0.24417425937986592],[122,126,74,-0.23972667959619295],[122,126,75,-0.2531956629149033],[122,126,76,-0.29907248559265914],[122,126,77,-0.3327778159491884],[122,126,78,-0.3461216890777013],[122,126,79,-0.3058053140568524],[122,127,64,-0.17208297552759635],[122,127,65,-0.20607376085193232],[122,127,66,-0.21557469974496696],[122,127,67,-0.17608395595438364],[122,127,68,-0.1433246403724459],[122,127,69,-0.13967880647308148],[122,127,70,-0.15082972979111434],[122,127,71,-0.16232974026557564],[122,127,72,-0.19734548426679252],[122,127,73,-0.2450624844557456],[122,127,74,-0.23996632783609065],[122,127,75,-0.25337402238790446],[122,127,76,-0.2997367683037582],[122,127,77,-0.33383889839649455],[122,127,78,-0.3472903436435812],[122,127,79,-0.3068493575715239],[122,128,64,-0.17205434195957264],[122,128,65,-0.2061881526831331],[122,128,66,-0.21516235186098584],[122,128,67,-0.1754359524531188],[122,128,68,-0.14275891062413076],[122,128,69,-0.1394209506055204],[122,128,70,-0.15104700701815693],[122,128,71,-0.16327990112659513],[122,128,72,-0.19863689486491196],[122,128,73,-0.24588036933042018],[122,128,74,-0.2401351235190995],[122,128,75,-0.25348036750236347],[122,128,76,-0.30033092683634666],[122,128,77,-0.3348245609287902],[122,128,78,-0.34837260523670954],[122,128,79,-0.3078135789543114],[122,129,64,-0.1720040284700657],[122,129,65,-0.20626307818370157],[122,129,66,-0.21469093948885465],[122,129,67,-0.1747339726602361],[122,129,68,-0.14214663567004895],[122,129,69,-0.13911699985785764],[122,129,70,-0.15122086901589943],[122,129,71,-0.16418695684795537],[122,129,72,-0.19987303199450496],[122,129,73,-0.24662658772283907],[122,129,74,-0.24023245953133548],[122,129,75,-0.25351408255616603],[122,129,76,-0.30085397907452166],[122,129,77,-0.33573345946160765],[122,129,78,-0.3493670193215281],[122,129,79,-0.3086968221572214],[122,130,64,-0.17193191630269145],[122,130,65,-0.20629818195078878],[122,130,66,-0.21416028059012518],[122,130,67,-0.17397801700797336],[122,130,68,-0.1414877948475969],[122,130,69,-0.13876666745081187],[122,130,70,-0.15135056641269318],[122,130,71,-0.1650493262012913],[122,130,72,-0.20105201983912377],[122,130,73,-0.24729989882486447],[122,130,74,-0.24025781609855887],[122,130,75,-0.25347464019118804],[122,130,76,-0.3013050085697429],[122,130,77,-0.3365643123209793],[122,130,78,-0.35027221441888695],[122,130,79,-0.30949801342455124],[122,131,64,-0.17183789651043108],[122,131,65,-0.20629314664093862],[122,131,66,-0.21357027897455558],[122,131,67,-0.1731681732029199],[122,131,68,-0.1407824430769878],[122,131,69,-0.13836973620398052],[122,131,70,-0.1514354093694837],[122,131,71,-0.16586548275822016],[122,131,72,-0.2021720507506548],[122,131,73,-0.2478991497516958],[122,131,74,-0.24021076177109577],[122,131,75,-0.2533616023339818],[122,131,76,-0.3016831660931506],[122,131,77,-0.33731590250203497],[122,131,78,-0.351086904543991],[122,131,79,-0.31021616304636573],[122,132,64,-0.17172186993617808],[122,132,65,-0.2062476933859679],[122,132,66,-0.2129209241833532],[122,132,67,-0.17230461577467954],[122,132,68,-0.14003071061302444],[122,132,69,-0.13792605896644308],[122,132,70,-0.15147476892627984],[122,132,71,-0.16663395797362904],[122,132,72,-0.2032313889380171],[122,132,73,-0.24842327783419038],[122,132,74,-0.24009095424049587],[122,132,75,-0.2531746209721219],[122,132,76,-0.3019876711060193],[122,132,77,-0.3379870798672682],[122,132,78,-0.35180989152467423],[122,132,79,-0.31085036697597135],[122,133,64,-0.17158374721250702],[122,133,65,-0.20616158216258876],[122,133,66,-0.21221229120202337],[122,133,67,-0.17138760543941856],[122,133,68,-0.13923280263225174],[122,133,69,-0.13743555889636125],[122,133,70,-0.1514680782337041],[122,133,71,-0.16735334418216932],[122,133,72,-0.2042283740414834],[122,133,73,-0.24887131274612437],[122,133,74,-0.23989814098522305],[122,133,75,-0.2529134387635482],[122,133,76,-0.30221781314453067],[122,133,77,-0.3385767632789177],[122,133,78,-0.35244006719406445],[122,133,79,-0.3113998083077681],[122,134,64,-0.17142344878104396],[122,134,65,-0.20603461211475105],[122,134,66,-0.21144454000246252],[122,134,67,-0.1704174882786256],[122,134,68,-0.138388998655277],[122,134,69,-0.13689822958754608],[122,134,70,-0.15141483366518677],[122,134,71,-0.16802229749851139],[122,134,72,-0.20516142458168557],[122,134,73,-0.2492423784599276],[122,134,74,-0.2396321597431876],[122,134,75,-0.25257788947675347],[122,134,76,-0.30237295311520596],[122,134,77,-0.33908394265995556],[122,134,78,-0.35297641545196684],[122,134,79,-0.3118637586122165],[122,135,64,-0.1712409049316614],[122,135,65,-0.20586662182773943],[122,135,66,-0.21061791491447138],[122,135,67,-0.16939469473402124],[122,135,68,-0.13749965180457746],[122,135,69,-0.13631413504144002],[122,135,70,-0.15131459580570644],[122,135,71,-0.16863954061212721],[122,135,72,-0.20602904127267288],[122,135,73,-0.24953569502488654],[122,135,74,-0.2392929388094067],[122,135,75,-0.2521678982601173],[122,135,76,-0.3024525244974628],[122,135,77,-0.33950768097819445],[122,135,78,-0.353418014189545],[122,135,79,-0.31224157912499806],[122,136,64,-0.17103605586160958],[122,136,65,-0.20565748955318278],[122,136,66,-0.20973274382747514],[122,136,67,-0.16831973842025585],[122,136,68,-0.1365651878987553],[122,136,69,-0.13568340948353616],[122,136,70,-0.1511669903134119],[122,136,71,-0.16920386546769747],[122,136,72,-0.20682981018876864],[122,136,73,-0.24975058016231025],[122,136,74,-0.23888049715758097],[122,136,75,-0.25168348173918426],[122,136,76,-0.30245603444989294],[122,136,77,-0.3398471161480466],[122,136,78,-0.35376403707212595],[122,136,79,-0.3125327217877497],[122,137,64,-0.1708088517545497],[122,137,65,-0.2054071333842036],[122,137,66,-0.20878943722377255],[122,137,67,-0.16719321475763302],[122,137,68,-0.13558610438472632],[122,137,69,-0.13500625702374114],[122,137,70,-0.15097170865082696],[122,137,71,-0.16971413582252276],[122,137,72,-0.2075624057753565],[122,137,73,-0.24988645067267715],[122,137,74,-0.23839494438488307],[122,137,75,-0.2511247479411641],[122,137,76,-0.302383064817033],[122,137,77,-0.3401014628445678],[122,137,78,-0.3540137551752763],[122,137,79,-0.31273673013815617],[122,138,64,-0.170559252879334],[122,138,65,-0.20511551138005715],[122,138,66,-0.20778848704521574],[122,138,67,-0.16601579942775851],[122,138,68,-0.13456296910993482],[122,138,69,-0.13428295116075264],[122,138,70,-0.1507285086827806],[122,138,71,-0.17016928967268813],[122,138,72,-0.20822559369416843],[122,138,73,-0.2499428236503104],[122,138,74,-0.2378364804797577],[122,138,75,-0.250491896046431],[122,138,76,-0.30223327303355724],[122,138,77,-0.34027001422448605],[122,138,78,-0.3541665384695829],[122,138,79,-0.3128532400475014],[122,139,64,-0.17028722970823976],[122,139,65,-0.20478262163968958],[122,139,66,-0.20673046539576795],[122,139,67,-0.1647882466556201],[122,139,68,-0.1334964189372362],[122,139,69,-0.13351383413103762],[122,139,70,-0.15043721513861633],[122,139,71,-0.1705683415400907],[122,139,72,-0.20881823349409384],[122,139,73,-0.24991931750166946],[122,139,74,-0.2372053954130274],[122,139,75,-0.249785215967268],[122,139,76,-0.3020063929229936],[122,139,77,-0.3403521435490054],[122,139,78,-0.3542218571498836],[122,139,79,-0.31288198030413955],[122,140,64,-0.16999276305422967],[122,140,65,-0.20440850232375068],[122,140,66,-0.20561602308290347],[122,140,67,-0.1635113873221861],[122,140,68,-0.13238715820561237],[122,140,69,-0.13269931610350202],[122,140,70,-0.15009771993664292],[122,140,71,-0.17091038461282704],[122,140,72,-0.20933928109902103],[122,140,73,-0.24981565276390857],[122,140,74,-0.23650206855310832],[122,140,75,-0.24900508775460264],[122,140,76,-0.30170223538826335],[122,140,77,-0.34034730570333027],[122,140,78,-0.35417928280505084],[122,140,79,-0.31282277304173767],[122,141,64,-0.16967584422669701],[122,141,65,-0.2039932316247111],[122,141,66,-0.20444588800137922],[122,141,67,-0.16218612691223866],[122,141,68,-0.13123595704047222],[122,141,69,-0.13183987422150914],[122,141,70,-0.14970998236926822],[122,141,71,-0.17119459273188536],[122,141,72,-0.20978779110475143],[122,141,73,-0.24963165272092538],[122,141,74,-0.2357269679066397],[122,141,75,-0.2481519808339536],[122,141,76,-0.30132068899152836],[122,141,77,-0.34025503860795764],[122,141,78,-0.35403848942475297],[122,141,79,-0.3126755340114666],[122,142,64,-0.1693364752050095],[122,142,65,-0.20353692768481849],[122,142,66,-0.20322086336337075],[122,142,67,-0.16081344330266775],[122,142,68,-0.13004364951774655],[122,142,69,-0.13093605149435825],[122,142,70,-0.14927402914764043],[122,142,71,-0.1714202222175035],[122,142,72,-0.21016291887755484],[122,142,73,-0.249367243814692],[122,142,74,-0.23488064918631454],[122,142,75,-0.24722645307228616],[122,142,76,-0.3008617204210504],[122,142,77,-0.3400749645169802],[122,142,78,-0.3537992542399976],[122,142,79,-0.3124402726977145],[122,143,64,-0.1689746688290533],[122,143,65,-0.20303974846174225],[122,143,66,-0.201941825779486],[122,143,67,-0.15939438439702747],[122,143,68,-0.1288111316865297],[122,143,69,-0.12998845554087965],[122,143,70,-0.1487899543050988],[122,143,71,-0.17158661352903656],[122,143,72,-0.2104639224475122],[122,143,73,-0.24902245585024638],[122,143,74,-0.23396375470819153],[122,143,75,-0.24622914967793688],[122,143,76,-0.3003253748429673],[122,143,77,-0.3398067911987977],[122,143,78,-0.35346145839462023],[122,143,79,-0.31211709227724266],[122,144,64,-0.16859044900586098],[122,144,65,-0.20250189154186696],[122,144,66,-0.20060972319564493],[122,144,67,-0.15793006561267287],[122,144,68,-0.12753935945549863],[122,144,69,-0.1289977571882895],[122,144,70,-0.14825791895917637],[122,144,71,-0.17169319275267456],[122,144,72,-0.21069016419039238],[122,144,73,-0.24859742199332172],[122,144,74,-0.23297701212124855],[122,144,75,-0.24516080193623907],[122,144,76,-0.2997117761361268],[122,144,77,-0.33945031299484113],[122,144,78,-0.3530250874452654],[122,144,79,-0.31170618942206707],[122,145,64,-0.16818385093128174],[122,145,65,-0.2019235939012874],[122,145,66,-0.19922557269123342],[122,145,67,-0.1564216672272494],[122,145,68,-0.12622934634875863],[122,145,69,-0.12796468892988488],[122,145,70,-0.14767815093230022],[122,145,71,-0.1717394729118366],[122,145,72,-0.21084111229241811],[122,145,73,-0.2480923785601697],[122,145,74,-0.2319212329723922],[122,145,75,-0.2440222257839195],[122,145,76,-0.2990211270083511],[122,145,77,-0.33900541175213744],[122,145,78,-0.352490231687807],[122,145,79,-0.3112078539467317],[122,146,64,-0.16775492132555053],[122,146,65,-0.20130513161467697],[122,146,66,-0.19779045814442872],[122,146,67,-0.1548704315918398],[122,146,68,-0.12488216113727962],[122,146,69,-0.1268900432457039],[122,146,70,-0.14705094423183537],[122,146,71,-0.17172505509561098],[122,146,72,-0.21091634199290143],[122,146,73,-0.24750766459973342],[122,146,74,-0.23079731111061713],[122,146,75,-0.24281432022578675],[122,146,76,-0.29825370899273135],[122,146,77,-0.3384720576257616],[122,146,78,-0.35185708630854573],[122,146,79,-0.3106224683009653],[122,147,64,-0.167303718681506],[122,147,65,-0.20064681951230323],[122,147,66,-0.1963055277709362],[122,147,67,-0.15327766021842423],[122,147,68,-0.1234989253524088],[122,147,69,-0.1257746707906266],[122,147,70,-0.14637665839048958],[122,147,71,-0.17164962940115744],[122,147,72,-0.21091553660042123],[122,147,73,-0.24684372126892892],[122,147,74,-0.22960622093442698],[122,147,75,-0.24153806559765117],[122,147,76,-0.29740988232282456],[122,147,77,-0.33785030974748825],[122,147,78,-0.3511259513589314],[122,147,79,-0.3099505069090999],[122,148,64,-0.1668303135241004],[122,148,65,-0.1999490107855655],[122,148,66,-0.19477199154280744],[122,148,67,-0.15164471074977753],[122,148,68,-0.12208081068839974],[122,148,69,-0.12461947845489559],[122,148,70,-0.14565571766856641],[122,148,71,-0.1715129756865225],[122,148,72,-0.21083848827883583],[122,148,73,-0.2461010910023616],[122,148,74,-0.2283490154870712],[122,148,75,-0.24019452167983033],[122,148,76,-0.29649008568585095],[122,148,77,-0.33714031675721295],[122,148,78,-0.3502972315529675],[122,148,79,-0.30919253535795277],[122,149,64,-0.1663347886797689],[122,149,65,-0.1992120965415564],[122,149,66,-0.19319111849436],[122,149,67,-0.14997299382028367],[122,149,68,-0.12062903630124273],[122,149,69,-0.12342542730242702],[122,149,70,-0.1448886101199809],[122,149,71,-0.1713149641309263],[122,149,72,-0.21068509860015458],[122,149,73,-0.24528041647841872],[122,149,74,-0.22702682440456964],[122,149,75,-0.238784825665999],[122,149,76,-0.2954948358532729],[122,149,77,-0.33634231719400765],[122,149,78,-0.34937143588687997],[122,149,79,-0.30834920943522837],[122,150,64,-0.16581723955411773],[122,150,65,-0.19843650530722537],[122,150,66,-0.1915642339225234],[122,150,67,-0.1482639698164551],[122,150,68,-0.1191448660113775],[122,150,69,-0.12219353039263663],[122,150,70,-0.14407588652432846],[122,150,71,-0.17105555560011873],[122,150,72,-0.21045537886195567],[122,150,73,-0.24438243938423584],[122,150,74,-0.22564085172187942],[122,150,75,-0.23731018999251677],[122,150,76,-0.29442472718839857],[122,150,77,-0.3354566397439735],[122,150,78,-0.3483491770810568],[122,150,79,-0.30742127402084607],[122,151,64,-0.16527777441633304],[122,151,65,-0.1976227024838591],[122,151,66,-0.1898927164892788],[122,151,67,-0.14651914554630152],[122,151,68,-0.11762960541822709],[122,151,69,-0.12092485049192887],[122,151,70,-0.1432181591877584],[122,151,71,-0.17073480181503745],[122,151,72,-0.21014945016776718],[122,151,73,-0.2434079989826226],[122,151,74,-0.22419237354294597],[122,151,75,-0.23577190003373247],[122,151,76,-0.29328043103090734],[122,151,77,-0.3344837033423563],[122,151,78,-0.347231170844667],[122,151,79,-0.3064095618338874],[122,152,64,-0.1647165146886264],[122,152,65,-0.19677118975267363],[122,152,66,-0.18817799523409742],[122,152,67,-0.1447400708269117],[122,152,68,-0.11608459893470854],[122,152,69,-0.11962049768128617],[122,152,70,-0.1423161006157504],[122,152,71,-0.17035284532256517],[122,152,72,-0.20976754326952884],[122,152,73,-0.24235803048458426],[122,152,74,-0.22268273558073357],[122,152,75,-0.2341713116691117],[122,152,76,-0.2920626949584918],[122,152,77,-0.33342401712773817],[122,152,78,-0.34601823496381845],[122,152,79,-0.30531499203822204],[122,153,64,-0.16413359523898177],[122,153,65,-0.1958825044324358],[122,153,66,-0.1864215465045487],[122,153,67,-0.14292833499987867],[122,153,68,-0.11451122675014931],[122,153,69,-0.1182816268667462],[122,153,70,-0.14137044206130944],[122,153,71,-0.16990991926781537],[122,153,72,-0.20930999817198334],[122,153,73,-0.24123356323163953],[122,153,74,-0.22111335057367737],[122,153,75,-0.2325098487283664],[122,153,76,-0.29077234192608575],[122,153,77,-0.3322781802464562],[122,153,78,-0.34471128821453345],[122,153,79,-0.30413856871015665],[122,154,64,-0.16352916467540868],[122,154,65,-0.194957218790121],[122,154,66,-0.18462489081346029],[122,154,67,-0.14108556338438283],[122,154,68,-0.11291090173023663],[122,154,69,-0.11690943519983803],[122,154,70,-0.1403819719524572],[122,154,71,-0.16940634696797027],[122,154,72,-0.2087772634995597],[122,154,73,-0.2400357186926554],[122,154,74,-0.21948569558529515],[122,154,75,-0.23078900032105162],[122,154,76,-0.28941026928340313],[122,154,77,-0.331046881505732],[122,154,78,-0.34331134910221717],[122,154,79,-0.30288137917173646],[122,155,64,-0.16290338563986265],[122,155,65,-0.1939959393057222],[122,155,66,-0.18278958963117498],[122,155,67,-0.1392134136778915],[122,155,68,-0.11128506626277748],[122,155,69,-0.11550515941529071],[122,155,70,-0.1393515342032352],[122,155,71,-0.16884254128830653],[122,155,72,-0.20816989562703814],[122,155,73,-0.2387657082804585],[122,155,74,-0.21780130919401725],[122,155,75,-0.22901031805740646],[122,155,76,-0.2879774476718437],[122,155,77,-0.32973089887440177],[122,155,78,-0.34181953442976704],[122,155,79,-0.3015445921936618],[122,156,64,-0.16225643509996535],[122,156,65,-0.19299930589242725],[122,156,66,-0.1809172421216364],[122,156,67,-0.13731357231459196],[122,156,68,-0.10963518905823211],[122,156,69,-0.11407007309360549],[122,156,70,-0.1382800264128174],[122,156,71,-0.1682190038216746],[122,156,72,-0.20748855757601836],[122,156,73,-0.23742483099397768],[122,156,74,-0.2160617885805406],[122,156,75,-0.22717541316745576],[122,156,76,-0.2864749198020553],[122,156,77,-0.32833109883046796],[122,156,78,-0.34023705769682827],[122,156,79,-0.3001294560720012],[122,157,64,-0.16158850463661498],[122,157,65,-0.19196799107346418],[122,157,66,-0.17900948183110732],[122,157,67,-0.13538775079170443],[122,157,68,-0.1079627619140287],[122,157,69,-0.11260548385623201],[122,157,70,-0.13716839795759872],[122,157,71,-0.1675363238732737],[122,157,72,-0.2067340176799071],[122,157,73,-0.23601447089215616],[122,157,74,-0.21426878652026546],[122,157,75,-0.22528595352563532],[122,157,76,-0.2849037991137602],[122,157,77,-0.3268484355551058],[122,157,78,-0.3385652273331569],[122,157,79,-0.2986372965831883],[122,158,64,-0.16089980072558302],[122,158,65,-0.19090269911702976],[122,158,66,-0.17706797333845115],[122,158,67,-0.13343768197391023],[122,158,68,-0.1062692964517877],[122,158,69,-0.11111273050131273],[122,158,70,-0.13601764798147997],[122,158,71,-0.1667951772532014],[122,158,72,-0.20590714802088084],[122,158,73,-0.23453609440635176],[122,158,74,-0.212424008288602],[122,158,75,-0.22334366058842675],[122,158,76,-0.28326526831972987],[122,158,77,-0.32528394997314225],[122,158,78,-0.3368054447694405],[122,158,79,-0.29706951482202654],[122,159,64,-0.16019054501117302],[122,159,65,-0.18980416513080042],[122,159,66,-0.17509440887594674],[122,159,67,-0.13146511638612485],[122,159,68,-0.10455632083660533],[122,159,69,-0.10959318008809481],[122,159,70,-0.13482882328984416],[122,159,71,-0.1659963248798541],[122,159,72,-0.20500892264297332],[122,159,73,-0.23299124749838326],[122,159,74,-0.21052920848712203],[122,159,75,-0.22135030625267463],[122,159,76,-0.2815605778360703],[122,159,77,-0.32363876864041846],[122,159,78,-0.33495920234931575],[122,159,79,-0.2954275849276502],[122,160,64,-0.15946097457001474],[122,160,65,-0.1886731541175976],[122,160,66,-0.17309050492959643],[122,160,67,-0.12947181850477318],[122,160,68,-0.10282537648750692],[122,160,69,-0.1080482249781757],[122,160,70,-0.13360301615294304],[122,160,71,-0.16514061119780085],[122,160,72,-0.20404041554610056],[122,160,73,-0.23138155267178342],[122,160,74,-0.20858618779868682],[122,160,75,-0.21930770964240687],[122,160,76,-0.27979104410125444],[122,160,77,-0.32191410247884295],[122,160,78,-0.3330280810867216],[122,160,79,-0.2937130517026247],[122,161,64,-0.1587113421631048],[122,161,65,-0.18751045999390548],[122,161,66,-0.17105799882794281],[122,161,67,-0.12745956305772935],[122,161,68,-0.10107801478822527],[122,161,69,-0.10647927984191945],[122,161,70,-0.13234136202474503],[122,161,71,-0.16422896241441534],[122,161,72,-0.20300279846657587],[122,161,73,-0.22970870584425954],[122,161,74,-0.20659678967985803],[122,161,75,-0.21721773383216486],[122,161,76,-0.2779580477866419],[122,161,77,-0.3201112453603696],[122,161,78,-0.331013748273102],[122,161,79,-0.2919275281305733],[122,162,64,-0.1579419164742058],[122,162,65,-0.1863169045729867],[122,162,66,-0.16899864532829723],[122,162,67,-0.12543013134290118],[122,162,68,-0.0993157938073118],[122,162,69,-0.10488777863834571],[122,162,70,-0.13104503718343247],[122,162,71,-0.16326238456004474],[122,162,72,-0.20189733845027372],[122,162,73,-0.22797447308969992],[122,162,74,-0.20456289699898414],[122,162,75,-0.21508228251492406],[122,162,76,-0.2760630319014732],[122,162,77,-0.31823157254152423],[122,162,78,-0.328917954939345],[122,162,79,-0.29007269279791476],[122,163,64,-0.15715298233275166],[122,163,65,-0.18509333651443294],[122,163,66,-0.16691421320923924],[122,163,67,-0.12338530757532513],[122,163,68,-0.09754027503652309],[122,163,69,-0.10327517157685288],[122,163,70,-0.12971525629998368],[122,163,71,-0.1622419613770803],[122,163,72,-0.2007253952252618],[122,163,73,-0.22618068725841506],[122,163,74,-0.20248642862844643],[122,163,75,-0.21290329662279028],[122,163,76,-0.27410749979559873],[122,163,77,-0.3162765389505094],[122,163,78,-0.326742533177675],[122,163,79,-0.2881502872254463],[122,164,64,-0.156344840919472],[122,164,65,-0.18384063024208322],[122,164,66,-0.16480648187815342],[122,164,67,-0.1213268752724805],[122,164,68,-0.09575302015630899],[122,164,69,-0.10164292206914396],[122,164,70,-0.12835326994146842],[122,164,71,-0.16116885204385548],[122,164,72,-0.19948841838137374],[122,164,73,-0.22432924448464606],[122,164,74,-0.20036933599963033],[122,164,75,-0.21068275090873873],[122,164,76,-0.27209301306348505],[122,164,77,-0.3142476773293431],[122,164,78,-0.32448939332908716],[122,164,79,-0.28616211311569945],[122,165,64,-0.1555178099529801],[122,165,65,-0.18255968483229204],[122,165,66,-0.16267723800239325],[122,165,67,-0.11925661368725786],[122,165,68,-0.09395558783700377],[122,165,69,-0.09999250367962564],[122,165,70,-0.1269603620157925],[122,165,71,-0.16004428873977472],[122,165,72,-0.1981879443647588],[122,165,73,-0.22242210059063863],[122,165,74,-0.1982135996292058],[122,165,75,-0.20842265049768557],[122,165,76,-0.27002118935328423],[122,165,77,-0.31214659623389235],[122,165,78,-0.32216052104223397],[122,165,79,-0.28411002952213704],[122,166,64,-0.15467222385563284],[122,166,65,-0.18125142287460452],[122,166,66,-0.16052827217252572],[122,166,67,-0.1171762942978188],[122,166,68,-0.09214953058417583],[122,166,69,-0.09832539708252587],[122,166,70,-0.12553784716480576],[122,166,71,-0.1588695740586121],[122,166,72,-0.19682559329603783],[122,166,73,-0.22046126739683905],[122,166,74,-0.196021225625295],[122,166,75,-0.20612502741518596],[122,166,76,-0.2678937000849849],[122,166,77,-0.30997497789502443],[122,166,78,-0.31975797420994506],[122,166,79,-0.2819959499463367],[122,167,64,-0.15380843389706836],[122,167,65,-0.17991678930698188],[122,167,66,-0.15836137560590288],[122,167,67,-0.11508767736327326],[122,167,68,-0.0903363916363312],[122,167,69,-0.0966430870338457],[122,167,70,-0.12408706811277458],[122,167,71,-0.157646078277394],[122,167,72,-0.1954030656212661],[122,167,73,-0.21844880894803445],[122,167,74,-0.1937942421821247],[122,167,75,-0.20379193710208215],[122,167,76,-0.26571226808195497],[122,167,77,-0.3077345759445754],[122,167,78,-0.3172838797899294],[122,167,79,-0.27982183936950616],[122,168,64,-0.15292680831387628],[122,168,65,-0.1785567502277487],[122,168,66,-0.15617833689857125],[122,168,67,-0.11299250855378279],[122,168,68,-0.08851770192290015],[122,168,69,-0.09494705936611993],[122,168,70,-0.12260939297729846],[122,168,71,-0.15637523648872106],[122,168,72,-0.19392213860538696],[122,168,73,-0.21638683766540867],[122,168,74,-0.19153469607166707],[122,168,75,-0.20142545492333686],[122,168,76,-0.2634786651203561],[122,168,77,-0.3054272130101412],[122,168,78,-0.3147404305164092],[122,168,79,-0.277589711224683],[122,169,64,-0.1520277324039847],[122,169,65,-0.17717229168653342],[122,169,66,-0.1539809388333063],[122,169,67,-0.110892515663384],[122,169,68,-0.08669497709018475],[122,169,69,-0.09323879801383249],[122,169,70,-0.12110621254984376],[122,169,71,-0.15505854560486054],[122,169,72,-0.19238466267840762],[122,169,73,-0.21427751043470897],[122,169,74,-0.18924464914074274],[122,169,75,-0.1990276726792777],[122,169,76,-0.2611947094011974],[122,169,77,-0.3030547781831539],[122,169,78,-0.31212988150975685],[122,169,79,-0.2753016243161096],[122,170,64,-0.15111160859440154],[122,170,65,-0.17576441845647128],[122,170,66,-0.1517709552512241],[122,170,67,-0.1087894054133835],[122,170,68,-0.08486971460254844],[122,170,69,-0.09151978207706109],[122,170,70,-0.11957893755303187],[122,170,71,-0.15369756124227593],[122,170,72,-0.19079255764492004],[122,170,73,-0.21212302464079485],[122,170,74,-0.18692617482191398],[122,170,75,-0.196600695127336],[122,170,76,-0.2588622629499419],[122,170,77,-0.3006192243650194],[122,170,78,-0.3094545467913945],[122,170,79,-0.27295967969229584],[122,171,64,-0.15017885648111462],[122,171,65,-0.17433415279005451],[122,171,66,-0.14955014799419797],[122,171,67,-0.10668486035386827],[122,171,68,-0.08304339092588858],[122,171,69,-0.08979148293080781],[122,171,70,-0.11802899588192639],[122,171,71,-0.15229389449573838],[122,171,72,-0.18914780876810508],[122,171,73,-0.209925614159014],[122,171,74,-0.1845813546664245],[122,171,75,-0.194146636522318],[122,171,76,-0.2564832289488486],[122,171,77,-0.29812256549651445],[122,171,78,-0.3067167957114853],[122,171,79,-0.2705660174793604],[122,172,64,-0.1492299128400241],[122,172,65,-0.17288253316100327],[122,172,66,-0.1473202639249062],[122,172,67,-0.10458053587036102],[122,172,68,-0.08121745879997158],[122,172,69,-0.08805536138712906],[122,172,70,-0.11645782983646123],[122,172,71,-0.15084920861143153],[122,172,72,-0.18745246273967728],[122,172,73,-0.20768754531386513],[122,172,74,-0.1822122749072519],[122,172,75,-0.19166761718306413],[122,172,76,-0.2540595490073764],[122,172,77,-0.29556687367595424],[122,172,78,-0.30391904929711167],[122,172,79,-0.2681228136812515],[122,173,64,-0.14826523160791993],[122,173,65,-0.17141061299458737],[122,173,66,-0.14508303203101966],[122,173,67,-0.10247805730223448],[122,173,68,-0.07939334460585343],[122,173,69,-0.08631286491693882],[122,173,70,-0.11486689335214727],[122,173,71,-0.14936521556881663],[122,173,72,-0.1857086235476146],[122,173,73,-0.20541111281546895],[122,173,74,-0.17982102306016845],[122,173,75,-0.18916576009320482],[122,173,76,-0.25159320037615857],[122,173,77,-0.292954276171988],[122,173,78,-0.30106377652881855],[122,173,79,-0.2656322769534488],[122,174,64,-0.14728528383267306],[122,174,65,-0.16991945938888955],[122,174,66,-0.14284016061968735],[122,174,67,-0.10037901717904923],[122,174,68,-0.07757244583422344],[122,174,69,-0.08456542493808984],[122,174,70,-0.11325764923616127],[122,174,71,-0.14784367258134434],[122,174,72,-0.18391844825386414],[122,174,73,-0.2030986356843962],[122,174,74,-0.17740968457054349],[122,174,75,-0.18664318754357342],[122,174,76,-0.2490861931102484],[122,174,77,-0.2902869523372241],[122,174,78,-0.2981534905535789],[122,174,79,-0.26309664535677557],[122,175,64,-0.14629055759191728],[122,175,65,-0.16841015182949284],[122,175,66,-0.14059333460804394],[122,175,67,-0.09828497258043277],[122,175,68,-0.07575612866001306],[122,175,69,-0.08281445417594843],[122,175,70,-0.1116315664157739],[122,175,71,-0.14628637852630655],[122,175,72,-0.18208414269445108],[122,175,73,-0.20075245317535137],[122,175,74,-0.17498033951336586],[122,175,75,-0.18410201782360833],[122,175,76,-0.24654056718746678],[122,175,77,-0.2875671304291934],[122,175,78,-0.2951907448423692],[122,175,79,-0.2605181830979245],[122,176,64,-0.1452815578796461],[122,176,65,-0.16688378090011097],[122,176,66,-0.13834421291508617],[122,176,67,-0.0961974426246439],[122,176,68,-0.07394572562820599],[122,176,69,-0.08106134410238135],[122,176,70,-0.10999011720600493],[122,176,71,-0.14469517031437681],[122,176,72,-0.18020795711468043],[122,176,73,-0.1983749207101491],[122,176,74,-0.17253505935372054],[122,176,75,-0.1815443619688472],[122,176,76,-0.2439583895877931],[122,176,77,-0.2847970843454017],[122,176,78,-0.29217812930061215],[122,176,79,-0.257899177263213],[122,177,64,-0.14425880646033423],[122,177,65,-0.16534144699172654],[122,177,66,-0.13609442595983756],[122,177,67,-0.09411790609043004],[122,177,68,-0.07214253345529839],[122,177,69,-0.0793074624586851],[122,177,70,-0.10833477460325369],[122,177,71,-0.1430719192095958],[122,177,72,-0.17829218175235226],[122,177,73,-0.195968405830373],[122,177,74,-0.17007590377473436],[122,177,75,-0.1789723205714273],[122,177,76,-0.24134175133993194],[122,177,77,-0.28197913027959515],[122,177,78,-0.2891182663399218],[122,177,79,-0.2552419345521335],[122,178,64,-0.14322284169030502],[122,178,65,-0.163784259012781],[122,178,66,-0.13384557327028795],[122,178,67,-0.0920477991762496],[122,178,68,-0.07034781095038829],[122,178,69,-0.07755415086761752],[122,178,70,-0.10666700961149071],[122,178,71,-0.1414185271106778],[122,178,72,-0.17633914238202109],[122,178,73,-0.1935352841799533],[122,178,74,-0.1676049175796919],[122,178,75,-0.17638798066020112],[122,178,76,-0.23869276454122032],[122,178,77,-0.2791156233065225],[122,178,78,-0.28601380691958267],[122,178,79,-0.2525487780171177],[122,179,64,-0.14217421830625332],[122,179,65,-0.16221333310298536],[122,179,66,-0.13159922120711454],[122,179,67,-0.08998851340034916],[122,179,68,-0.06856277705934308],[122,179,69,-0.0758027225392511],[122,179,70,-0.10498828860741424],[122,179,71,-0.13973692280467281],[122,179,72,-0.1743511958334924],[122,179,73,-0.19107793552774577],[122,179,74,-0.16512412767470735],[122,179,75,-0.17379341265680653],[122,179,76,-0.23601355935716073],[122,179,77,-0.27620895390275507],[122,179,78,-0.28286742656624747],[122,179,79,-0.24982204381586484],[122,180,64,-0.1411135071809954],[122,180,65,-0.16062979135333633],[122,180,66,-0.12935690080577267],[122,180,67,-0.08794139364466345],[122,180,68,-0.06678860903502777],[122,180,69,-0.07405446007498524],[122,180,70,-0.10330007075078909],[122,180,71,-0.13802905820408726],[122,180,72,-0.1723307254978142],[122,180,73,-0.18859873984005365],[122,180,74,-0.1626355401380767],[122,180,75,-0.17119066741377414],[122,180,76,-0.23330628100695494],[122,180,77,-0.2732615444113567],[122,180,78,-0.279681821380413],[122,180,79,-0.24706407798254953],[122,181,64,-0.14004129504668753],[122,181,65,-0.15903476053491694],[122,181,66,-0.1271201057400624],[122,181,67,-0.0859077363449253],[122,181,68,-0.06502644073605143],[122,181,69,-0.07231061337361547],[122,181,70,-0.1016038054459796],[122,181,71,-0.13629690457864788],[122,181,72,-0.1702801368340728],[122,181,73,-0.18610007341280232],[122,181,74,-0.16014113738206384],[122,181,75,-0.1685817733404195],[122,181,76,-0.23057308674144683],[122,181,77,-0.270275845458356],[122,181,78,-0.27645970403817655],[122,181,79,-0.24427723322405775],[122,182,64,-0.1389581841858967],[122,182,65,-0.15742937083902864],[122,182,66,-0.12489029040976078],[122,182,67,-0.0838887878287575],[122,182,68,-0.06327736105592552],[122,182,69,-0.07057239764285768],[122,182,70,-0.09990092986039584],[122,182,71,-0.13454244879285424],[122,182,72,-0.16820185289025827],[122,182,73,-0.183584305072818],[122,182,74,-0.1576428754125132],[122,182,75,-0.16596873362193076],[122,182,76,-0.22781614281990378],[122,182,77,-0.2672543323291352],[122,182,78,-0.2732037997967594],[122,182,79,-0.2414638657472867],[122,183,64,-0.13786479209113867],[122,183,65,-0.15581475463125025],[122,183,66,-0.12266886815449841],[122,183,67,-0.08188574280301035],[122,183,68,-0.06154241248406865],[122,183,69,-0.068840991519343],[122,183,70,-0.09819286650539587],[122,183,71,-0.13276768956052656],[122,183,72,-0.16609830985148832],[122,183,73,-0.18105379245746447],[122,183,74,-0.15514268119138216],[122,183,75,-0.16335352353678875],[122,183,76,-0.2250376214921517],[122,183,77,-0.2641995013130467],[122,183,78,-0.2699168425122791],[122,183,79,-0.23862633212347112],[122,184,64,-0.1367617510936217],[122,184,65,-0.15419204522195704],[122,184,66,-0.12045720959552121],[122,184,67,-0.07989974299098339],[122,184,68,-0.0598225897995206],[122,184,69,-0.06711753529958177],[122,184,70,-0.09648102088486518],[122,184,71,-0.1309746337274533],[122,184,72,-0.16397195262874403],[122,184,73,-0.17851087838154497],[122,184,74,-0.1526424501068579],[122,184,75,-0.1607380878772531],[122,184,76,-0.22223969799251644],[122,184,77,-0.26111386602462866],[122,184,78,-0.2666015706781275],[122,184,79,-0.2357669861952773],[122,185,64,-0.1356497079621219],[122,185,65,-0.15256237565581923],[122,185,66,-0.11825664110648616],[122,185,67,-0.07793187591957612],[122,185,68,-0.05811883889767156],[122,185,69,-0.06540312928389305],[122,185,70,-0.09476677921638652],[122,185,71,-0.1291652925931419],[122,185,72,-0.16182523050114075],[122,185,73,-0.17595788730007708],[122,185,74,-0.15014404355535535],[122,185,75,-0.158124338477307],[122,185,76,-0.2194245475520337],[122,185,77,-0.25799995370990847],[122,185,78,-0.2632607234922387],[122,185,79,-0.2328881760323028],[122,186,64,-0.13452932347311933],[122,186,65,-0.150926877522814],[122,186,66,-0.11606844341400845],[122,186,67,-0.07598317385591198],[122,186,68,-0.05643205574986626],[122,186,69,-0.06369883223489596],[122,186,70,-0.09305150622968712],[122,186,71,-0.1273416782826288],[122,186,72,-0.15966059282465178],[122,186,73,-0.17339712187524786],[122,186,74,-0.14764928663933335],[122,186,75,-0.15551415185212147],[122,186,76,-0.21659434243538217],[122,186,77,-0.25486030154636724],[122,186,78,-0.2598970369614327],[122,186,79,-0.22999224094044332],[122,187,64,-0.13340127195347176],[122,187,65,-0.14928667979321963],[122,187,66,-0.11389385032813508],[122,187,67,-0.0740546128923351],[122,187,68,-0.05476308549513189],[122,187,69,-0.062005659951587064],[122,187,70,-0.09133654304665778],[122,187,71,-0.1255058001790809],[122,187,72,-0.15748048481994265],[122,187,73,-0.17083085965546654],[122,187,74,-0.14515996598443817],[122,187,75,-0.15290936695269478],[122,187,76,-0.21375124900891923],[122,187,77,-0.25169745294516654],[122,187,78,-0.25651324005086196],[122,187,79,-0.2270815085304224],[122,188,64,-0.13226624079706692],[122,188,65,-0.14764290767902397],[122,188,66,-0.11173404760244106],[122,188,67,-0.0721471121781384],[122,188,68,-0.05311272166277781],[122,188,69,-0.060324583959557955],[122,188,70,-0.08962320514692258],[122,188,71,-0.12365966142774876],[122,188,72,-0.15528734345173967],[122,188,73,-0.16826134987403898],[122,188,74,-0.14267782767906037],[122,188,75,-0.15031178303892864],[122,188,76,-0.2108974248461095],[122,188,77,-0.24851395386421804],[122,188,78,-0.2531120508864001],[122,188,79,-0.22415829185054478],[122,189,64,-0.13112492995712186],[122,189,65,-0.1459966815241993],[122,189,66,-0.10959017192302468],[122,189,67,-0.07026153329587877],[122,189,68,-0.05148170552415031],[122,189,69,-0.05865653031746849],[122,189,70,-0.08791278042265556],[122,189,71,-0.12180525552167154],[122,189,72,-0.15308359341193864],[122,189,73,-0.16569081037466368],[122,189,74,-0.1402045753390528],[122,189,75,-0.14772315767408534],[122,189,76,-0.20803501587662007],[122,189,77,-0.24531234914074787],[122,189,78,-0.24969617301769897],[122,189,79,-0.22122488658862655],[122,190,64,-0.12997805141591307],[122,190,65,-0.14434911572619522],[122,190,66,-0.10746331002513235],[122,190,67,-0.06839867977951844],[122,190,68,-0.04987072557123732],[122,190,69,-0.05700237853931448],[122,190,70,-0.08620652732590367],[122,190,71,-0.11994456297921052],[122,190,72,-0.15087164321828195],[122,190,73,-0.16312142467046495],[122,190,74,-0.1377418682998765],[122,190,75,-0.14514520484311827],[122,190,76,-0.20516615358519016],[122,190,77,-0.24209517885188844],[122,190,78,-0.2462682917493698],[122,190,79,-0.2182835683477845],[122,191,64,-0.12882632863390292],[122,191,65,-0.14270131769097888],[122,191,66,-0.1053544979357202],[122,191,67,-0.06655929677114916],[122,191,68,-0.04828041711936953],[122,191,69,-0.055362960631592815],[122,191,70,-0.08450567311136963],[122,191,71,-0.11807954812325958],[122,191,72,-0.14865388144012417],[122,191,73,-0.16055533914287612],[122,191,74,-0.13529131993804092],[122,191,75,-0.14257959319698885],[122,191,76,-0.2022929522662671],[122,191,77,-0.23886497471178403],[122,191,78,-0.24283107054752767],[122,191,79,-0.2153365900005567],[122,192,64,-0.1276704959804241],[122,192,65,-0.14105438682393082],[122,192,66,-0.10326472033981166],[122,192,67,-0.06474407081254184],[122,192,68,-0.04671136203077112],[122,192,69,-0.05373906024397165],[122,192,70,-0.0828114121772305],[122,192,71,-0.11621215597167983],[122,192,72,-0.14643267306245025],[122,192,73,-0.15799466038627538],[122,192,74,-0.13285449612333688],[122,192,75,-0.1400279444247381],[122,192,76,-0.19941750634031372],[122,192,77,-0.23562425651363803],[122,192,78,-0.23938714752873458],[122,192,79,-0.21238617912566762],[122,193,64,-0.12651129814820414],[122,193,65,-0.13940941355882172],[122,193,66,-0.10119491006804313],[122,193,67,-0.06295362976724579],[122,193,68,-0.04516408855522704],[122,193,69,-0.05213141193158652],[122,193,70,-0.081124904506201],[122,193,71,-0.11434430924818226],[122,193,72,-0.14421035599889195],[122,193,73,-0.1554414527037742],[122,193,74,-0.13043291380286506],[122,193,75,-0.1374918317546045],[122,193,76,-0.1965418877374493],[122,193,77,-0.23237552862493657],[122,193,78,-0.23593913203803762],[122,193,79,-0.20943453553143784],[122,194,64,-0.12534948955420241],[122,194,65,-0.1377674784270648],[122,194,66,-0.09914594770237485],[122,194,67,-0.06118854286849074],[122,194,68,-0.043639071283664725],[122,194,69,-0.05054070052658033],[122,194,70,-0.07944727420861672],[122,194,71,-0.1124779055224815],[122,194,72,-0.14198923776406455],[122,194,73,-0.1528977357591673],[122,194,74,-0.12802803971757565],[122,194,75,-0.13497277858522588],[122,194,76,-0.19366814335404636],[122,194,77,-0.22912127654403616],[122,194,78,-0.23248960132260868],[122,194,79,-0.20648382886971936],[122,195,64,-0.1241858337293489],[122,195,65,-0.13612965116936365],[122,195,66,-0.09711866129650391],[122,195,67,-0.059449320887667634],[122,195,68,-0.042136731210011734],[122,195,69,-0.04896756061608007],[122,195,70,-0.07777960816901709],[122,195,71,-0.11061481448826678],[122,195,72,-0.13977159231510994],[122,195,73,-0.15036548238948538],[122,195,74,-0.12564128925144716],[122,195,75,-0.13247225724737244],[122,195,76,-0.19079829258751893],[122,195,77,-0.22586396352596752],[122,195,78,-0.2290410973070456],[122,195,79,-0.20353619634384174],[122,196,64,-0.12302110218720629],[122,196,65,-0.13449698930131657],[122,196,66,-0.09511382615641129],[122,196,67,-0.05773641621758718],[122,196,68,-0.0406574364834054],[122,196,69,-0.047412577222193344],[122,196,70,-0.0761229556671985],[122,196,71,-0.10875687542391937],[122,196,72,-0.13755965664587866],[122,196,73,-0.14784661569434987],[122,196,74,-0.12327402450596846],[122,196,75,-0.12999168687230472],[122,196,76,-0.18793432460049747],[122,196,77,-0.222606028105301],[122,196,78,-0.22559612552890937],[122,196,79,-0.20059374206397992],[122,197,64,-0.12185601401811996],[122,197,65,-0.13287046897688828],[122,197,66,-0.09313216160666464],[122,197,67,-0.05605020282119043],[122,197,68,-0.0392015732359586],[122,197,69,-0.04587641535670554],[122,197,70,-0.07447842885505065],[122,197,71,-0.10690589619943522],[122,197,72,-0.13535557512688826],[122,197,73,-0.1453429036963386],[122,197,74,-0.12092744940749935],[122,197,75,-0.1275323146609203],[122,197,76,-0.18507815615985973],[122,197,77,-0.219349977922606],[122,197,78,-0.22215739229232478],[122,197,79,-0.19765871595176654],[122,198,64,-0.12069118462427215],[122,198,65,-0.13125092926652604],[122,198,66,-0.09117434392118598],[122,198,67,-0.0543909758442644],[122,198,68,-0.03776961770623946],[122,198,69,-0.044359939784454086],[122,198,70,-0.07284728890313465],[122,198,71,-0.10506363599904664],[122,198,72,-0.1331613340285424],[122,198,73,-0.14285587020732762],[122,198,74,-0.11860253087029889],[122,198,75,-0.12509512467720776],[122,198,76,-0.18223160365199814],[122,198,77,-0.21609847685119676],[122,198,78,-0.21872800986997276],[122,198,79,-0.19473366666743305],[122,199,64,-0.11952723436491912],[122,199,65,-0.12963919935472165],[122,199,66,-0.08924102793434086],[122,199,67,-0.052759006135178164],[122,199,68,-0.03636201977986498],[122,199,69,-0.0428639875081602],[122,199,70,-0.07123076040549704],[122,199,71,-0.10323178440397661],[122,199,72,-0.1309788377734405],[122,199,73,-0.14038698275989372],[122,199,74,-0.11630019829768487],[122,199,75,-0.12268106180549411],[122,199,76,-0.17939646183591407],[122,199,77,-0.2128541724413562],[122,199,78,-0.2153110591644111],[122,199,79,-0.1918211104249197],[122,200,64,-0.1183648012432426],[122,200,65,-0.12803611308701815],[122,200,66,-0.08733284740422025],[122,200,67,-0.051154544907584774],[122,200,68,-0.034979187369941454],[122,200,69,-0.04138933838100779],[122,200,70,-0.06963000783520994],[122,200,71,-0.10141195995251659],[122,200,72,-0.1288099195693313],[122,200,73,-0.13793767443690153],[122,200,74,-0.11402136576784017],[122,200,75,-0.12029105701965273],[122,200,76,-0.17657451033151847],[122,200,77,-0.20961967066207557],[122,200,78,-0.21190953294062745],[122,200,79,-0.1889234887338145],[122,201,64,-0.11720453977663803],[122,201,65,-0.12644250754174138],[122,201,66,-0.0854504135254671],[122,201,67,-0.049577822484082386],[122,201,68,-0.033621486256056994],[122,201,69,-0.03993671505900362],[122,201,70,-0.06804613551756988],[122,201,71,-0.09960571046030206],[122,201,72,-0.12665634142349477],[122,201,73,-0.13550934192824463],[122,201,74,-0.11176692952256806],[122,201,75,-0.11792602481713836],[122,201,76,-0.17376751037183605],[122,201,77,-0.2063975325870025],[122,201,78,-0.20852633438842957],[122,201,79,-0.18604316798851062],[122,202,64,-0.11604711986532197],[122,202,65,-0.12485922164699101],[122,202,66,-0.08359431356177772],[122,202,67,-0.04802904714714605],[122,202,68,-0.03228924002964834],[122,202,69,-0.038506783080834106],[122,202,70,-0.06648018773218978],[122,202,71,-0.0978145134754973],[122,202,72,-0.12451979430446172],[122,202,73,-0.1331033437372749],[122,202,74,-0.10953776558748678],[122,202,75,-0.11558686077042908],[122,202,76,-0.17097720167378921],[122,202,77,-0.20319027126559333],[122,202,78,-0.2051642759191859],[122,202,79,-0.1831824392218161],[122,203,64,-0.11489310933517871],[122,203,65,-0.12328696812669905],[122,203,66,-0.0817650243220276],[122,203,67,-0.04650835490064408],[122,203,68,-0.030982696916254514],[122,203,69,-0.037100110751712954],[122,203,70,-0.06493307745732176],[122,203,71,-0.09603966980975684],[122,203,72,-0.12240176034979103],[122,203,73,-0.13072084932288439],[122,203,74,-0.1073346036142413],[122,203,75,-0.11327430699263735],[122,203,76,-0.16820510102874275],[122,203,77,-0.2000001104537417],[122,203,78,-0.20182583530365664],[122,203,79,-0.18034329890569945],[122,204,64,-0.11374221440796617],[122,204,65,-0.12172550980697465],[122,204,66,-0.07996236678965352],[122,204,67,-0.04501550025120996],[122,204,68,-0.029701825251440477],[122,204,69,-0.03571691914828817],[122,204,70,-0.06340513140003268],[122,204,71,-0.09428161571597965],[122,204,72,-0.12030262310241963],[122,204,73,-0.12836187711408065],[122,204,74,-0.10515723024216292],[122,204,75,-0.11098810191505684],[122,204,76,-0.16545121776996666],[122,204,77,-0.19682744063276808],[122,204,78,-0.19851158552906212],[122,204,79,-0.17752603098598668],[122,205,64,-0.11259380062778612],[122,205,65,-0.12017423632663432],[122,205,66,-0.07818591675398275],[122,205,67,-0.043550106886889026],[122,205,68,-0.02844649231967737],[122,205,69,-0.034357294613806516],[122,205,70,-0.061896437921278705],[122,205,71,-0.09254042762793073],[122,205,72,-0.11822231308624022],[122,205,73,-0.12602599354016847],[122,205,74,-0.10300507638791541],[122,205,75,-0.1087276061979333],[122,205,76,-0.16271497135952961],[122,205,77,-0.19367191791657287],[122,205,78,-0.19522131987526797],[122,205,79,-0.17473021669684416],[122,206,64,-0.1114473103614108],[122,206,65,-0.11863262026795182],[122,206,66,-0.07643531474097377],[122,206,67,-0.04211184812293474],[122,206,68,-0.027216588242897903],[122,206,69,-0.03302133894522653],[122,206,70,-0.06040710893526407],[122,206,71,-0.09081621207394591],[122,206,72,-0.11616080949005178],[122,206,73,-0.12371285369368411],[122,206,74,-0.10087766648173002],[122,206,75,-0.10649228203263228],[122,206,76,-0.15999590835928312],[122,206,77,-0.19053332560099262],[122,206,78,-0.19195493197792693],[122,206,79,-0.17195552783706683],[122,207,64,-0.11030226179691259],[122,207,65,-0.11710021507249603],[122,207,66,-0.07471026186738663],[122,207,67,-0.04070044262276624],[122,207,68,-0.026012022878614476],[122,207,69,-0.031709166685029454],[122,207,70,-0.058937277927760705],[122,207,71,-0.08910910452613391],[122,207,72,-0.11411813866911326],[122,207,73,-0.12142219751741379],[122,207,74,-0.09877461366766978],[122,207,75,-0.10428168820191636],[122,207,76,-0.15729369827991188],[122,207,77,-0.18741157048761098],[122,207,78,-0.18871241321471932],[122,207,79,-0.16920172516781215],[122,208,64,-0.10915824574205218],[122,208,65,-0.11557665061211633],[122,208,66,-0.07301051426623861],[122,208,67,-0.03931564939897055],[122,208,68,-0.024832722251631387],[122,208,69,-0.030420901769075602],[122,208,70,-0.057487096684763025],[122,208,71,-0.08741926623321424],[122,208,72,-0.11209437005011938],[122,208,73,-0.1191538432842579],[122,208,74,-0.09669561283608186],[122,208,75,-0.10209547281134376],[122,208,76,-0.15460812573294677],[122,208,77,-0.184306674699297],[122,208,78,-0.18549384549038386],[122,208,79,-0.1664686526576115],[122,209,64,-0.10801492248051975],[122,209,65,-0.11406162888170855],[122,209,66,-0.07133587775670482],[122,209,67,-0.03795726306554934],[122,209,68,-0.023678625183788424],[122,209,69,-0.02915667433866442],[122,209,70,-0.05605673214516633],[122,209,71,-0.08574688114312504],[122,209,72,-0.11008961214966356],[122,209,73,-0.11690768129130719],[122,209,74,-0.09464043391404621],[122,209,75,-0.09993336627913561],[122,209,76,-0.1519390827625866],[122,209,77,-0.1812187676492296],[122,209,78,-0.18229939417843133],[122,209,79,-0.16375623185953686],[122,210,64,-0.10687201867965136],[122,210,65,-0.11255491980721391],[122,210,66,-0.06968620275180717],[122,210,67,-0.03662510933415133],[122,210,68,-0.022549680118921077],[122,210,69,-0.02791661771825537],[122,210,70,-0.05464636338059404],[122,210,71,-0.08409215292025364],[122,210,72,-0.10810400870944743],[122,210,73,-0.1146836677636506],[122,210,74,-0.09260891540532414],[122,210,75,-0.09779517457520674],[122,210,76,-0.1492865613520029],[122,210,77,-0.17814807816382242],[122,210,78,-0.179129301223542],[122,210,79,-0.16106445642067166],[122,211,64,-0.10572932434440085],[122,211,65,-0.11105635716350284],[122,211,66,-0.0680613793982155],[122,211,67,-0.03531904074793407],[122,211,68,-0.021445842140464258],[122,211,69,-0.026700865560216832],[122,211,70,-0.05325617870535469],[122,211,71,-0.08245530206182763],[122,211,72,-0.10613773495143777],[122,211,73,-0.11248181896452938],[122,211,74,-0.09060095817284276],[122,211,75,-0.09568077270174627],[122,211,76,-0.14665064610061063],[122,211,77,-0.17509492676133398],[122,211,78,-0.1759838784091233],[122,211,79,-0.15839338672452402],[122,212,64,-0.10458668981335176],[122,212,65,-0.10956583459778257],[122,212,66,-0.06646133294316495],[122,212,67,-0.03403893264729057],[122,212,68,-0.020367070179122267],[122,212,69,-0.025509549157647884],[122,212,70,-0.05188637291916257],[122,212,71,-0.08083656311755416],[122,212,72,-0.10419099395596432],[122,212,73,-0.1103022055092803],[122,212,74,-0.0886165194579594],[122,212,75,-0.09359009840909892],[122,212,76,-0.1440315070703117],[122,212,77,-0.17205971808908316],[122,212,78,-0.1728635007947866],[122,212,79,-0.15574314466737435],[122,213,64,-0.10344402279351388],[122,213,65,-0.10808330175510067],[122,213,66,-0.06488601932413361],[122,213,67,-0.032784679362248964],[122,213,68,-0.019313324408065536],[122,213,69,-0.024342794926066152],[122,213,70,-0.05053714468498743],[122,213,71,-0.07923618201622365],[122,213,72,-0.10226401316559008],[122,213,73,-0.10814494688125377],[122,213,74,-0.08665560713184149],[122,213,75,-0.0915231461419417],[122,213,76,-0.14142939280010172],[122,213,77,-0.16904293352318522],[122,213,78,-0.16976860032873875],[122,213,79,-0.15311390856986165],[122,214,64,-0.10230128543157016],[122,214,65,-0.1066087605033905],[122,214,66,-0.0633354209774702],[122,214,67,-0.031556190626831356],[122,214,68,-0.018284563823113317],[122,214,69,-0.023200722054480195],[122,214,70,-0.04920869404411726],[122,214,71,-0.07765441350263529],[122,214,72,-0.100357041017425],[122,214,73,-0.10601020614855763],[122,214,74,-0.08471827417527301],[122,214,75,-0.08947996121186112],[122,214,76,-0.13884462348968055],[122,214,77,-0.16604512393560988],[122,214,78,-0.16669965964027253],[122,214,79,-0.15050590822543658],[122,215,64,-0.1011584914200043],[122,215,65,-0.10514226125619225],[122,215,66,-0.061809542862502835],[122,215,67,-0.03035338821093843],[122,215,68,-0.017280744005213098],[122,215,69,-0.02208344032595563],[122,215,70,-0.04790122007011064],[122,215,71,-0.07609151868773924],[122,215,72,-0.09847034370626934],[122,215,73,-0.10389818488091403],[122,215,74,-0.08280461338391316],[122,215,75,-0.08746063419328434],[122,215,76,-0.13627758435368775],[122,215,77,-0.16306690263399667],[122,215,78,-0.16365720601755918],[122,215,79,-0.14791942008747902],[122,216,64,-0.10001570313726742],[122,216,65,-0.1036838993918305],[122,216,66,-0.06030840869796962],[122,216,67,-0.02917620276558668],[122,216,68,-0.016301815062415702],[122,216,69,-0.020991048107435482],[122,216,70,-0.046614918662976276],[122,216,71,-0.07454776271450321],[122,216,72,-0.09660420208073675],[122,216,73,-0.10180911826630083],[122,216,74,-0.08091475229666169],[122,216,75,-0.08546529554046896],[122,216,76,-0.13372871914905393],[122,216,77,-0.16010893848019705],[122,216,78,-0.16064180557591293],[122,216,79,-0.14535476259701277],[122,217,64,-0.09887302882184726],[122,217,65,-0.10223381176842922],[122,217,66,-0.058832057407841476],[122,217,67,-0.02802457087751048],[122,217,68,-0.015347719748393546],[122,217,69,-0.019923630508192385],[122,217,70,-0.04534998048455017],[122,217,71,-0.07302341254162142],[122,217,72,-0.09475890867426398],[122,217,73,-0.09974327042736608],[122,217,74,-0.07904884834532319],[122,217,75,-0.08349411042390338],[122,217,76,-0.13119852387871708],[122,217,77,-0.15717194919395178],[122,217,78,-0.1576540576216548],[122,217,79,-0.14281229165313158],[122,218,64,-0.09773061978064439],[122,218,65,-0.10079217333457528],[122,218,66,-0.05738053977368888],[122,218,67,-0.026898432329183035],[122,218,68,-0.01441839175430801],[122,218,69,-0.018881257705836],[122,218,70,-0.04410658903560377],[122,218,71,-0.07151873484672158],[122,218,72,-0.09293476487257246],[122,218,73,-0.09770092993772438],[122,218,74,-0.07720708422407645],[122,218,75,-0.0815472737848909],[122,218,76,-0.12868754067546115],[122,218,77,-0.15425669484831298],[122,218,78,-0.15469458921646137],[122,218,79,-0.14029239622822343],[122,219,64,-0.09658866763262426],[122,219,65,-0.09935919383588314],[122,219,66,-0.05595391529083114],[122,219,67,-0.025797727560372293],[122,219,68,-0.013513754170645044],[122,219,69,-0.017863983438410874],[122,219,70,-0.04288491887485135],[122,219,71,-0.07003399405036237],[122,219,72,-0.09113207821888884],[122,219,73,-0.0956824055383827],[122,219,74,-0.0753896634775584],[122,219,75,-0.07962500560748516],[122,219,76,-0.12619635187010966],[122,219,77,-0.15136397156360035],[122,219,78,-0.15176404994690318],[122,219,79,-0.13779549413014872],[122,220,64,-0.09544740158913909],[122,220,65,-0.09793511461800801],[122,220,66,-0.05455224922544679],[122,220,67,-0.02472239532726038],[122,220,68,-0.012633718115339197],[122,220,69,-0.016871843660626887],[122,220,70,-0.04168513397955271],[122,220,71,-0.0685694504616386],[122,220,72,-0.08935115985785469],[122,220,73,-0.0936880220545051],[122,220,74,-0.07359680630648786],[122,220,75,-0.07772754640714657],[122,220,76,-0.12372557424855804],[122,220,77,-0.14849460540665183],[122,220,78,-0.14886310690352642],[122,220,79,-0.13532202791345335],[122,221,64,-0.09430708577276446],[122,221,65,-0.09652020552697659],[122,221,66,-0.05317560986981531],[122,221,67,-0.023672370555138083],[122,221,68,-0.0117781815243171],[122,221,69,-0.015904855361899933],[122,221,70,-0.04050738624706884],[122,221,71,-0.06712535854588227],[122,221,72,-0.08759232211879982],[122,221,73,-0.09171811651272686],[122,221,74,-0.07182874558987486],[122,221,75,-0.07585515293568247],[122,221,76,-0.12127585350236547],[122,221,77,-0.14564944650209458],[122,221,78,-0.14599243987353944],[122,221,79,-0.13287246094166774],[122,222,64,-0.09316801657679838],[122,222,65,-0.09511476190786324],[122,222,66,-0.05182406599268837],[122,222,67,-0.02264758238050145],[122,222,68,-0.010947028100261288],[122,222,69,-0.014963015543374166],[122,222,70,-0.03935181413624062],[122,222,71,-0.06570196531447985],[122,222,72,-0.08585587623865404],[122,222,73,-0.08977303445905117],[122,222,74,-0.07008572312280165],[122,222,75,-0.07400809410204373],[122,222,76,-0.1188478588776431],[122,222,77,-0.1428293633621172],[122,222,78,-0.14315273675071374],[122,222,79,-0.1304472736026056],[122,223,64,-0.0920305200678607],[122,223,65,-0.0937191017029949],[122,223,66,-0.05049768448163789],[122,223,67,-0.021647952378229002],[122,223,68,-0.010140126415134296],[122,223,69,-0.014046300350680151],[122,223,70,-0.038218541447066795],[122,223,71,-0.06429950883644579],[122,223,72,-0.08414213022444547],[122,223,73,-0.08785312647719036],[122,223,74,-0.06836798606867407],[122,223,75,-0.07218664710851308],[122,223,76,-0.116442278026938],[122,223,77,-0.14003523744094443],[122,223,78,-0.14034468916566917],[122,223,79,-0.12804695967842286],[122,224,64,-0.09089494943430071],[122,224,65,-0.09233356265100286],[122,224,66,-0.049196528174073315],[122,224,67,-0.020673392969369316],[122,224,68,-0.00935732916177133],[122,224,69,-0.013154664358797459],[122,224,70,-0.03710767623678973],[122,224,71,-0.06291821687105288],[122,224,72,-0.08245138685503042],[122,224,73,-0.08595874490701925],[122,224,74,-0.0666757836247321],[122,224,75,-0.07039109380176052],[122,224,76,-0.11405981206872022],[122,224,77,-0.13726795791988045],[122,224,78,-0.13756898833926628],[122,224,79,-0.12567202287206786],[122,225,64,-0.08976168248326723],[122,225,65,-0.09095849958804433],[122,225,66,-0.04792065387335355],[122,225,67,-0.019723806004813296],[122,225,68,-0.0085984725495288],[122,225,69,-0.012288040004924877],[122,225,70,-0.03601930987004529],[122,225,71,-0.06155830562038908],[122,225,72,-0.0807839418213078],[122,225,73,-0.0840902407624943],[122,225,74,-0.06500936389935416],[122,225,75,-0.06862171723802359],[122,225,76,-0.1117011708588094],[122,225,77,-0.13452841672829896],[122,225,78,-0.1348263211612762],[122,225,79,-0.12332297349152051],[122,226,64,-0.08863111918942661],[122,226,65,-0.08959428185252295],[122,226,66,-0.04667011054618922],[122,226,67,-0.018799081519917542],[122,226,68,-0.007863375838735871],[122,226,69,-0.011446337164889102],[122,226,70,-0.034953516200373215],[122,226,71,-0.06021997860037792],[122,226,72,-0.07914008200384662],[122,226,73,-0.08224796084808465],[122,226,74,-0.0633689709994364],[122,226,75,-0.0668787984614412],[122,226,76,-0.10936706847777661],[122,226,77,-0.13181750380543733],[122,226,78,-0.13211736649594827],[122,226,79,-0.12100032529297129],[122,227,64,-0.08750367929844577],[122,227,65,-0.08824129079463865],[122,227,66,-0.04544493769730227],[122,227,67,-0.017899096654939183],[122,227,68,-0.007151841008468543],[122,227,69,-0.010629442868264585],[122,227,70,-0.033910350880033066],[122,227,71,-0.058903425628473956],[122,227,72,-0.07752008388655107],[122,227,73,-0.08043224507246423],[122,227,74,-0.061754842325870994],[122,227,75,-0.06516261349433639],[122,227,76,-0.10705821893802514],[122,227,77,-0.12913610260732475],[122,227,78,-0.12944279171558537],[122,227,79,-0.11870459248391343],[122,228,64,-0.08637979998836043],[122,228,65,-0.08689991739198363],[122,228,66,-0.04424516391701093],[122,228,67,-0.01702371473587651],[122,228,68,-0.006463652551904561],[122,228,69,-0.009837221146998315],[122,228,70,-0.03288985079469094],[122,228,71,-0.05760882192588931],[122,228,72,-0.07592421210462626],[122,228,73,-0.0786434239578099],[122,228,74,-0.06016720607477731],[122,228,75,-0.06347343053787682],[122,228,76,-0.10477533211377084],[122,228,77,-0.1264850858624934],[122,228,78,-0.12680324946260432],[122,228,79,-0.11643628688679256],[122,229,64,-0.0852599335919557],[122,229,65,-0.08557055997229467],[122,229,66,-0.04307080559713941],[122,229,67,-0.01617278451007782],[122,229,68,-0.005798577393302877],[122,229,69,-0.009069513012006375],[122,229,70,-0.03189203361921501],[122,229,71,-0.05633632733190136],[122,229,72,-0.0743527181247962],[122,229,73,-0.07688181634267507],[122,229,74,-0.05860627894178434],[122,229,75,-0.061811507381192655],[122,229,76,-0.10251910989664983],[122,229,77,-0.12386531157945822],[122,229,78,-0.12419937463997474],[122,229,79,-0.11419591526357961],[122,230,64,-0.0841445453832912],[122,230,65,-0.08425362204437467],[122,230,66,-0.041921865810411706],[122,230,67,-0.01534613953078034],[122,230,68,-0.005156364920481964],[122,230,69,-0.008326136551932978],[122,230,70,-0.030916897490528707],[122,230,71,-0.055086085627525205],[122,230,72,-0.07280583905544925],[122,230,73,-0.07514772727605384],[122,230,74,-0.05707226402632972],[122,230,75,-0.060177089016687786],[122,230,76,-0.10029024257918306],[122,230,77,-0.12127761930827725],[122,230,78,-0.12163178162937534],[122,230,79,-0.11198397680139559],[122,231,64,-0.08303411143139361],[122,231,65,-0.08294951023799434],[122,231,66,-0.04079833334819584],[122,231,67,-0.014543597684497693],[122,231,68,-0.004536747126476178],[122,231,69,-0.007606887147971777],[122,231,70,-0.02996442079316631],[122,231,71,-0.0538582239655448],[122,231,72,-0.07128379658406701],[122,231,73,-0.07344144609981412],[122,231,74,-0.05556534893251029],[122,231,75,-0.05857040545883924],[122,231,76,-0.09808940546770008],[122,231,77,-0.11872282665772771],[122,231,78,-0.11910106173576347],[122,231,79,-0.10980096075894231],[122,232,64,-0.08192911652404321],[122,232,65,-0.08165863235340531],[122,232,66,-0.03970018191120091],[122,232,67,-0.013764960854957325],[122,232,68,-0.003939438853886353],[122,232,69,-0.0069115377983936365],[122,232,70,-0.029034562052897447],[122,232,71,-0.05265285240363092],[122,232,72,-0.06978679603900856],[122,232,73,-0.07176324471628111],[122,232,74,-0.054085704062630226],[122,232,75,-0.05699166976336467],[122,232,76,-0.0959172557257182],[122,232,77,-0.11620172606887672],[122,232,78,-0.1166077808564683],[122,232,79,-0.1076473442732066],[122,233,64,-0.08083005216448598],[122,233,65,-0.08038139552092788],[122,233,66,-0.03862736944752528],[122,233,67,-0.013010014717143062],[122,233,68,-0.003364138135360599],[122,233,69,-0.00623983954625909],[122,233,70,-0.02812725993359307],[122,233,71,-0.05147006353709067],[122,233,72,-0.06831502557249963],[122,233,73,-0.07011337603739042],[122,233,74,-0.05263348109923324],[122,233,75,-0.05544107624325286],[122,233,76,-0.0937744294481679],[122,233,77,-0.11371508184509285],[122,233,78,-0.11415247737236588],[122,233,79,-0.1055235903256127],[122,234,64,-0.0797374146437055],[122,234,65,-0.07911820447082235],[122,234,66,-0.037579837632189014],[122,234,67,-0.012278528654788855],[122,234,68,-0.002810526623507015],[122,234,69,-0.005591522003585243],[122,234,70,-0.027242433332263952],[122,234,71,-0.05030993222755047],[122,234,72,-0.06686865546139692],[122,234,73,-0.06849207261140461],[122,234,74,-0.051208811670975206],[122,234,75,-0.053918798877685484],[122,234,76,-0.0916615389661606],[122,234,77,-0.1112636274377219],[122,234,78,-0.11173566025808085],[122,234,79,-0.10343014586643247],[122,235,64,-0.07865170319071542],[122,235,65,-0.0778694599134262],[122,235,66,-0.036557511482071675],[122,235,67,-0.011570255794519639],[122,235,68,-0.0022782701034651798],[122,235,69,-0.004966293965083882],[122,235,70,-0.02637998156700814],[122,235,71,-0.049172515423681507],[122,235,72,-0.06544783752206536],[122,235,73,-0.06689954542280672],[122,235,74,-0.049811806197315026],[122,235,75,-0.052424989909459214],[122,235,76,-0.08957917038133138],[122,235,77,-0.10884806298588182],[122,235,78,-0.10935780740760787],[122,235,79,-0.10136744009595877],[122,236,64,-0.07757341820315655],[122,236,65,-0.0766355570293312],[122,236,66,-0.035560299100026095],[122,236,67,-0.010884933149748697],[122,236,68,-0.0017670190813644999],[122,236,69,-0.0043638441045306675],[122,236,70,-0.025539784652502097],[122,236,71,-0.048057852069964664],[122,236,72,-0.06405270463554427],[122,236,73,-0.06533598286065684],[122,236,74,-0.048442552906663515],[122,236,75,-0.05095977862613317],[122,236,76,-0.08752788132814848],[122,236,77,-0.10646905310808623],[122,236,78,-0.10701936417123857],[122,236,79,-0.09933588290064255],[122,237,64,-0.07650305956023157],[122,237,65,-0.07541688406909633],[122,237,66,-0.03458809154173195],[122,237,67,-0.01022228186730027],[122,237,68,-0.0012764094418397185],[122,237,69,-0.003783841746701288],[122,237,70,-0.02472170365749215],[122,237,71,-0.04696596309929986],[122,237,72,-0.06268337037894102],[122,237,73,-0.06380154985031158],[122,237,74,-0.04710111702224379],[122,237,75,-0.0495232703196902],[122,237,76,-0.08550819896187453],[122,237,77,-0.10412722494261534],[122,237,78,-0.10472074209912514],[122,237,79,-0.09733586344205464],[122,238,64,-0.07544112501977218],[122,238,65,-0.07421382106174443],[122,238,66,-0.03364076279871716],[122,238,67,-0.009582007569658135],[122,238,68,-8.060631677959701E-4],[122,238,69,-0.0032259377077829047],[122,238,70,-0.023925581138659415],[122,238,71,-0.04589685150516261],[122,238,72,-0.061339928758835316],[122,238,73,-0.06229638714308358],[122,238,74,-0.045787540109584156],[122,238,75,-0.048115545419112046],[122,238,76,-0.08352061816920271],[122,238,77,-0.10182316643280906],[122,238,78,-0.10246231788632681],[122,238,79,-0.09536774889621816],[122,239,64,-0.07438810870101484],[122,239,65,-0.07302673863107108],[122,239,66,-0.03271816989088979],[122,239,67,-0.008963800785726807],[122,239,68,-3.555891156904384E-4],[122,239,69,-0.002689765197194889],[122,239,70,-0.023151241645191473],[122,239,71,-0.04485050248894172],[122,239,72,-0.06002245404235405],[122,239,73,-0.060820610758145675],[122,239,74,-0.04450183957928986],[122,239,75,-0.046736658789935784],[122,239,76,-0.08156559999797104],[122,239,77,-0.09955742485277073],[122,239,78,-0.1002444325137479],[122,239,79,-0.09343188334058113],[122,240,64,-0.07334449965436485],[122,240,65,-0.0718559969185106],[122,240,66,-0.031820153061796926],[122,240,67,-0.008367337462932882],[122,240,68,7.541616037322193E-5],[122,240,69,-0.0021749407737389017],[122,240,70,-0.022398492288315083],[122,240,71,-0.043826883677986546],[122,240,72,-0.05873100068141979],[122,240,73,-0.059374311570668845],[122,240,74,-0.04324400833841787],[122,240,75,-0.04538663919447611],[122,240,76,-0.0796435703016895],[122,240,77,-0.0973305055682467],[122,240,78,-0.09806739057891574],[122,240,79,-0.09152858678558325],[122,241,64,-0.07231078051916064],[122,241,65,-0.07070194461106429],[122,241,66,-0.030946536069781358],[122,241,67,-0.007792279553525548],[122,241,68,4.873675423259289E-4],[122,241,69,-0.0016810653490774306],[122,241,70,-0.021667123370043003],[122,241,71,-0.04282594540984262],[122,241,72,-0.05746560332556557],[122,241,73,-0.05795755503994038],[122,241,74,-0.04201401458353827],[122,241,75,-0.04406548890609188],[122,241,76,-0.07775491859400598],[122,241,77,-0.0951428710267831],[122,241,78,-0.0959314598101357],[122,241,79,-0.08965815434746874],[122,242,64,-0.07128742627020317],[122,242,65,-0.06956491807257671],[122,242,66,-0.030097126568182992],[122,242,67,-0.00723827566797638],[122,242,68,8.806904460470165E-4],[122,242,69,-0.0012077252316405576],[122,242,70,-0.02095690906542067],[122,242,71,-0.04184762107815579],[122,242,72,-0.05622627691865747],[122,242,73,-0.056570381071001645],[122,242,74,-0.04081180172835154],[122,242,75,-0.04277318347059833],[122,242,76,-0.07589999710768018],[122,242,77,-0.09299493997067536],[122,242,78,-0.09383687075723626],[122,242,79,-0.0878208555587729],[122,243,64,-0.07027490305350313],[122,243,65,-0.06844524057639015],[122,243,66,-0.029271716567715593],[122,243,67,-0.00670496178843982],[122,243,68,0.0012558198898323957],[122,243,69,-7.54493204166992E-4],[122,243,70,-0.02026760815257492],[122,243,71,-0.04089182753568112],[122,243,72,-0.055013016874763294],[122,243,73,-0.05521280400313271],[122,243,74,-0.03963728845852713],[122,243,75,-0.04150967160765264],[122,243,76,-0.07407912005204911],[122,243,77,-0.09088708686560391],[122,243,78,-0.09178381665174083],[122,243,79,-0.08601693381261032],[122,244,64,-0.06927366711141948],[122,244,65,-0.06734322163717785],[122,244,66,-0.02847008297416592],[122,244,67,-0.006191962035319822],[122,244,68,0.0016131995395737542],[122,244,69,-3.209296282320085E-4],[122,244,70,-0.01959896478493206],[122,244,71,-0.0399584655498467],[122,244,72,-0.05382579932836481],[122,244,73,-0.05388481271834094],[122,244,74,-0.03849036890625826],[122,244,75,-0.04027487524470545],[122,244,76,-0.0722925630624491],[122,244,77,-0.08881964153731155],[122,244,78,-0.08977245342901204],[122,244,79,-0.08424660593664676],[122,245,64,-0.06828416379711032],[122,245,65,-0.06625915643957378],[122,245,66,-0.02769198819464047],[122,245,67,-0.005698889480138215],[122,245,68,0.0019532807365852537],[122,245,69,9.341643068639585E-5],[122,245,70,-0.01895070930008268],[122,245,71,-0.039047420306372205],[122,245,72,-0.05266458145410573],[122,245,73,-0.05258637086290664],[122,245,74,-0.03737091293693437],[122,245,75,-0.039068689675948697],[122,245,76,-0.07054056283460154],[122,245,77,-0.08679288900821097],[122,245,78,-0.08780289990468323],[122,245,79,-0.08251006189244957],[122,246,64,-0.06730682667789936],[122,246,65,-0.06519332536097708],[122,246,66,-0.026937180805633267],[122,246,67,-0.005225346998017815],[122,246,68,0.0022765215138294275],[122,246,69,4.890060638740182E-4],[122,246,70,-0.018322559059857472],[122,246,71,-0.03815856195646298],[122,246,72,-0.05152930185123057],[122,246,73,-0.05131741717490336],[122,246,74,-0.03627876654020336],[122,246,75,-0.0378909838384946],[122,246,76,-0.06882331693649187],[122,246,77,-0.08480706952532169],[122,246,78,-0.08587523809743089],[122,246,79,-0.08080746459564689],[122,247,64,-0.0663420767269187],[122,247,65,-0.06414599358574655],[122,247,66,-0.02620539627631379],[122,247,67,-0.004770928153286727],[122,247,68,0.0025833856060399735],[122,247,69,8.663093718103814E-4],[122,247,70,-0.017714219316326083],[122,247,71,-0.037291746203177996],[122,247,72,-0.05041988098790015],[122,247,73,-0.05007786591056519],[122,247,74,-0.035213752317665666],[122,247,75,-0.036741600697925106],[122,247,76,-0.06714098378989276],[122,247,77,-0.08286237877056818],[122,247,78,-0.08398951368998457],[122,247,79,-0.07913894985217222],[122,248,64,-0.06539032160209016],[122,248,65,-0.06311741080779915],[122,248,66,-0.025496357740540723],[122,248,67,-0.0043352181118833264],[122,248,68,0.00287434145901117],[122,248,69,0.0012258043141654587],[122,248,70,-0.017125384098563443],[122,248,71,-0.036446814922628926],[122,248,72,-0.049336221700571115],[122,248,73,-0.048867607362306505],[122,248,74,-0.03417567005939184],[122,248,75,-0.035620357735235295],[122,248,76,-0.06549368281329701],[122,248,77,-0.08095896824408504],[122,248,78,-0.08214573662009672],[122,248,79,-0.07750462640566005],[122,249,64,-0.06445195501128413],[122,249,65,-0.062107811018498126],[122,249,66,-0.024809776811291897],[122,249,67,-0.003917794574490783],[122,249,68,0.0031498612430264717],[122,249,69,0.0015679755628709312],[122,249,70,-0.01655573711523039],[122,249,71,-0.03562359681579319],[122,249,72,-0.048278209743707196],[122,249,73,-0.04768650846122722],[122,249,74,-0.03316429740149846],[122,249,75,-0.03452704752717699],[122,249,76,-0.06388149471774739],[122,249,77,-0.07909694581091893],[122,249,78,-0.08034388179311587],[122,249,79,-0.07590457609093651],[122,250,64,-0.06352735616221301],[122,250,65,-0.06111741237654289],[122,250,66,-0.024145354431346324],[122,250,67,-0.0035182287245364785],[122,250,68,0.003410419875150293],[122,250,69,0.0018933133635239254],[122,250,70,-0.01600495266816676],[122,250,71,-0.03482190808679368],[122,250,72,-0.04724571438511271],[122,250,73,-0.046534413456922635],[122,250,74,-0.032179390557029515],[122,250,75,-0.03346143841195899],[122,250,76,-0.062304461946746534],[122,250,77,-0.07727637640123051],[122,250,78,-0.0785838899077057],[122,250,79,-0.07433885408838142],[122,251,64,-0.06261688929537904],[122,251,65,-0.060146417156443824],[122,251,66,-0.023502781754254545],[122,251,67,-0.003136086185453518],[122,251,68,0.003656494054810536],[122,251,69,0.002202312410074776],[122,251,70,-0.015472696572409435],[122,251,71,-0.03404155314363],[122,251,72,-0.04623858904226508],[122,251,73,-0.04541114466747538],[122,251,74,-0.03122068511246989],[122,251,75,-0.03242327523228499],[122,251,76,-0.06076258925121675],[122,251,77,-0.07549728285391255],[122,251,78,-0.0768656683862155],[122,251,79,-0.07280748927382022],[122,252,64,-0.061720903298190716],[122,252,65,-0.05919501177207572],[122,252,66,-0.022881741049867333],[122,252,67,-0.002770927981890311],[122,252,68,0.003888561316782804],[122,252,69,0.0024954707374278814],[122,252,70,-0.014958627078272784],[122,252,71,-0.033282325317485914],[122,252,72,-0.04525667195512268],[122,252,73,-0.04431650329259905],[122,252,74,-0.030287896882340112],[122,252,75,-0.031412280147777],[122,252,76,-0.0592558443903195],[122,252,77,-0.07375964689341126],[122,252,78,-0.07518909240122731],[122,252,79,-0.07131048465852774],[122,253,64,-0.060839731398123036],[122,253,65,-0.058263366871681294],[122,253,66,-0.0222819066289017],[122,253,67,-0.0024223114998191578],[122,253,68,0.004107099105401446],[122,253,69,0.0027732886362843226],[122,253,70,-0.014462395791337141],[122,253,71,-0.03254400759685917],[122,253,72,-0.044299786890967925],[122,253,73,-0.04325027028298823],[122,253,74,-0.029380722814434646],[122,253,75,-0.030428153508895595],[122,253,76,-0.057784158948792054],[122,253,77,-0.07206341022942148],[122,253,78,-0.07355400598980899],[122,253,79,-0.06984781791382012],[122,254,64,-0.059973690932595386],[122,254,65,-0.057351637500617635],[122,254,66,-0.021702945781270525],[122,254,67,-0.0020897914407916277],[122,254,68,0.004312583873510866],[122,254,69,0.003036267594229147],[122,254,70,-0.01398364858642441],[122,254,71,-0.03182637337290628],[122,254,72,-0.043367743876955654],[122,254,73,-0.04221220725905548],[122,254,74,-0.028498841938426826],[122,254,75,-0.029470574784581795],[122,254,76,-0.05634742926137706],[122,254,77,-0.07040847576907855],[122,254,78,-0.07196022324706879],[122,254,79,-0.06841944197465029],[122,255,64,-0.05912308319307503],[122,255,65,-0.05645996332809413],[122,255,66,-0.02114451972318102],[122,255,67,-0.0017729207659171698],[122,255,68,0.004505490209335767],[122,255,69,0.003284909266715535],[122,255,70,-0.013522026511899274],[122,255,71,-0.031129187192565907],[122,255,72,-0.04246033995617684],[122,255,73,-0.041202057472408],[122,255,74,-0.02764191635076965],[122,255,75,-0.02853920353600875],[122,255,76,-0.05494551743489574],[122,255,77,-0.06879470893129089],[122,255,78,-0.0704075295907165],[122,255,79,-0.06702528571660465],[122,256,64,-0.058288193340720454],[122,256,65,-0.05558846893408173],[122,256,66,-0.020606284548257147],[122,256,67,-0.001471251625434873],[122,256,68,0.004686289994152468],[122,256,69,0.003519714481279276],[122,256,70,-0.013077166680868543],[122,256,71,-0.030452205516171307],[122,256,72,-0.041577359963163536],[122,256,73,-0.04021954680356927],[122,256,74,-0.026809592229010474],[122,256,75,-0.027633680428981656],[122,256,76,-0.053578252458502736],[122,256,77,-0.06722193905288511],[122,256,78,-0.06889568308844127],[122,256,79,-0.06566525470064762],[122,257,64,-0.057469290390722676],[122,257,65,-0.05473726415254004],[122,257,66,-0.020087892178219928],[122,257,67,-0.0011843362700691674],[122,257,68,0.004855451593330369],[122,257,69,0.0037411822779865834],[122,257,70,-0.01264870314609337],[122,257,71,-0.02979517747641752],[122,257,72,-0.04071857731489457],[122,257,73,-0.03926438478964184],[122,257,74,-0.026001500868870316],[122,257,75,-0.026753628277722045],[122,257,76,-0.05224543139270219],[122,257,77,-0.06568996087632266],[122,257,78,-0.06742441584005994],[122,257,79,-0.06433923197996304],[122,258,64,-0.056666627262384715],[122,258,65,-0.05390644446711488],[122,258,66,-0.01958899130896699],[122,258,67,-9.117279407058994E-4],[122,258,68,0.005013439082976419],[122,258,69,0.00394980898875784],[122,258,70,-0.012236267755710744],[122,258,71,-0.029157845635743432],[122,258,72,-0.039883754813531],[122,258,73,-0.038336265675840135],[122,258,74,-0.0252172597377082],[122,258,75,-0.0258986531130124],[122,258,76,-0.050946820627811196],[122,258,77,-0.06419853610890192],[122,258,78,-0.06599343540658718],[122,258,79,-0.06304707896326928],[122,259,64,-0.05588044089183009],[122,259,65,-0.053096091455433946],[122,259,66,-0.01910922834816141],[122,259,67,-6.529817332289966E-4],[122,259,68,0.005160711514129372],[122,259,69,0.004146087357898789],[122,259,70,-0.0118394909870935],[122,259,71,-0.02853994673933999],[122,259,72,-0.039072645457243184],[122,259,73,-0.037434869485025606],[122,259,74,-0.024456473538238585],[122,259,75,-0.02506834526789938],[122,259,76,-0.049682157202659165],[122,259,77,-0.06274739504350782],[122,259,78,-0.06460242627855214],[122,259,79,-0.06178863632899461],[122,260,64,-0.055110952404131164],[122,260,65,-0.05230627327814321],[122,260,66,-0.018648248340737108],[122,260,67,-4.076554356857367E-4],[122,260,68,0.0052977222161462644],[122,260,69,0.004330505705845772],[122,260,70,-0.011458002756428616],[122,260,71,-0.027941212461161068],[122,260,72,-0.03828499325564462],[122,260,73,-0.0365598630996196],[122,260,74,-0.023718735276655196],[122,260,75,-0.02426228047441707],[122,260,76,-0.04845115017447267],[122,260,77,-0.0613362382311829],[122,260,78,-0.06325105137610647],[122,260,79,-0.0605637249847534],[122,261,64,-0.054358367341568486],[122,261,65,-0.051537045208871236],[122,261,66,-0.01820569587904006],[122,261,67,-1.7531033529010905E-4],[122,261,68,0.005424918140607879],[122,261,69,0.0045035471377854],[122,261,70,-0.011091433201870561],[122,261,71,-0.027361370140513704],[122,261,72,-0.03752053404653219],[122,261,73,-0.03571090135053803],[122,261,74,-0.023003627329626554],[122,261,75,-0.023480020965088305],[122,261,76,-0.047253482031105645],[122,261,77,-0.059964738196050006],[122,261,78,-0.06193895357372113],[122,261,79,-0.059372147066633185],[122,262,64,-0.05362287594464312],[122,262,65,-0.05078845020132692],[122,262,66,-0.017781215994599697],[122,262,67,4.448800692799666E-5],[122,262,68,0.005542739246805172],[122,262,69,0.0046656887985225505],[122,262,70,-0.01073941343834884],[122,262,71,-0.026800143506947968],[122,262,72,-0.036778996310771105],[122,262,73,-0.034887628108036056],[122,262,74,-0.022310722504916586],[122,262,75,-0.022721116573236673],[122,262,76,-0.046088810136980025],[122,262,77,-0.05863254118337087],[122,262,78,-0.06066575724250198],[122,262,79,-0.05821368697287081],[122,263,64,-0.05290465348240295],[122,263,65,-0.05006051948979123],[122,263,66,-0.01737445502881833],[122,263,67,2.5216901570344175E-4],[122,263,68,0.005651617929588312],[122,263,69,0.004817401174662359],[122,263,70,-0.01040157628235511],[122,263,71,-0.02625725339134109],[122,263,72,-0.03606010198233123],[122,263,73,-0.03408967736962126],[122,263,74,-0.02163958509069903],[122,263,75,-0.02198510582645074],[122,263,76,-0.04495676820435629],[122,263,77,-0.05733926893182684],[122,263,78,-0.05943106980342371],[122,263,79,-0.05708811242658283],[122,264,64,-0.052203860628618336],[122,264,65,-0.04935327321933913],[122,264,66,-0.01698506148016878],[122,264,67,4.481563969024355E-4],[122,264,68,0.005751978490079334],[122,264,69,0.004959147444864423],[122,264,70,-0.010077556945289723],[122,264,71,-0.025732418421254545],[122,264,72,-0.035363567250663586],[122,264,73,-0.03331667434048826],[122,264,74,-0.020989771888971387],[122,264,75,-0.02127151702787418],[122,264,76,-0.043856967781847216],[122,264,77,-0.056084520461446095],[122,264,78,-0.05823448328507224],[122,264,79,-0.055995175562335776],[122,265,64,-0.05152064388029625],[122,265,65,-0.04866672110218429],[122,265,66,-0.016612686825754668],[122,265,67,6.328674699506524E-4],[122,265,68,0.005844236649514854],[122,265,69,0.005091382878669751],[122,265,70,-0.009766993694151897],[122,265,71,-0.02522535569878187],[122,265,72,-0.03468910335274754],[122,265,73,-0.032568236502186126],[122,265,74,-0.020360833228779105],[122,265,75,-0.0205798693203015],[122,265,76,-0.04278899975237129],[122,265,77,-0.054867873868928795],[122,265,78,-0.05707557587975646],[122,265,79,-0.05493461403144082],[122,266,64,-0.050855136015007636],[122,266,65,-0.048000863096620994],[122,266,66,-0.016256986315360822],[122,266,67,8.067125383139109E-4],[122,266,68,0.0059287991062443295],[122,266,69,0.005214554284131011],[122,266,70,-0.009469528478585506],[122,266,71,-0.024735781459271064],[122,266,72,-0.034036417352308966],[122,266,73,-0.03184397466551748],[122,266,74,-0.01975231395528884],[122,266,75,-0.01990967372839273],[122,266,76,-0.041752435833064726],[122,266,77,-0.053688888122487906],[122,266,78,-0.055953913492145464],[122,266,79,-0.053906152120983535],[122,267,64,-0.050207456583519876],[122,267,65,-0.04735569010514145],[122,267,66,-0.015917619736400653],[122,267,67,9.700942987323172E-4],[122,267,68,0.006006063135670368],[122,267,69,0.005329099504216357],[122,267,70,-0.009184807523510342],[122,267,71,-0.024263411709466925],[122,267,72,-0.03340521290387876],[122,267,73,-0.03114349400396175],[122,267,74,-0.019163754391087872],[122,267,75,-0.019260434174665286],[122,267,76,-0.04074683007002281],[122,267,77,-0.05254710484871135],[122,267,78,-0.054869051274897704],[122,267,79,-0.05290950188174935],[122,268,64,-0.04957771243422088],[122,268,65,-0.04673118468838793],[122,268,66,-0.015594252148404469],[122,268,67,0.0011234072896652064],[122,268,68,0.0060764162327243505],[122,268,69,0.005435446961738077],[122,268,70,-0.008912481886753478],[122,268,71,-0.023807962843750557],[122,268,72,-0.032795190999504155],[122,268,73,-0.03046639506418048],[122,268,74,-0.018594691266394087],[122,268,75,-0.01863164846524228],[122,268,76,-0.039771720321076086],[122,268,77,-0.05144205010432609],[122,268,78,-0.053820535146034784],[122,268,79,-0.05194436426033222],[122,269,64,-0.048965998265848465],[122,269,65,-0.04612732179170057],[122,269,66,-0.015286554585933736],[122,269,67,0.0012670373791583479],[122,269,68,0.006140235796276448],[122,269,69,0.005534015252340567],[122,269,70,-0.00865220798128416],[122,269,71,-0.023369152237295698],[122,269,72,-0.03220605069607843],[122,269,73,-0.029812274750442996],[122,269,74,-0.01804465861518008],[122,269,75,-0.018022809241669758],[122,269,76,-0.03882662972017118],[122,269,77,-0.050373236126139115],[122,269,78,-0.052807903283111926],[122,269,79,-0.05101043023086479],[122,270,64,-0.04837239720509025],[122,270,65,-0.0455440694811439],[122,270,66,-0.014994204729050498],[122,270,67,0.0014013612920972048],[122,270,68,0.006197888854687351],[122,270,69,0.005625212784871052],[122,270,70,-0.008403648061838395],[122,270,71,-0.02294669881510055],[122,270,72,-0.0316374898214118],[122,270,73,-0.029180727280092054],[122,270,74,-0.017513188634539392],[122,270,75,-0.017433404895459303],[122,270,76,-0.03791106811730813],[122,270,77,-0.04934016305284403],[122,270,78,-0.0518306875895474],[122,270,79,-0.05010738192197725],[122,271,64,-0.04779698140564758],[122,271,65,-0.04498138968598755],[122,271,66,-0.014716887540665266],[122,271,67,0.0015267461766169687],[122,271,68,0.0062497318315683755],[122,271,69,0.0057094374682924295],[122,271,70,-0.008166470675868],[122,271,71,-0.022540323595966687],[122,271,72,-0.03108920565729296],[122,271,73,-0.028571345107422395],[122,271,74,-0.016999812504911487],[122,271,75,-0.01686292044232161],[122,271,76,-0.037024533488345224],[122,271,77,-0.048342320612768],[122,271,78,-0.05088841512875127],[122,271,79,-0.04923489373473212],[122,272,64,-0.04723981266542537],[122,272,65,-0.04443923894474085],[122,272,66,-0.0144542958702986],[122,272,67,0.001643549209227863],[122,272,68,0.0062961103506597865],[122,272,69,0.005787076444125371],[122,272,70,-0.007940351078904038],[122,272,71,-0.022149750210618522],[122,272,72,-0.030560895597935747],[122,272,73,-0.02798371981361017],[122,272,74,-0.01650406116908549],[122,272,75,-0.016310838353384437],[122,272,76,-0.036166513309369167],[122,272,77,-0.04737918977204262],[122,272,78,-0.04998060952199012],[122,272,79,-0.04839263344745917],[122,273,64,-0.046700943058569006],[122,273,65,-0.043917569151946625],[122,273,66,-0.014206131023967526],[122,273,67,0.0017521172380402159],[122,273,68,0.006337359078621493],[122,273,69,0.005858505863274995],[122,273,70,-0.007724971614546023],[122,273,71,-0.02177470539324963],[122,273,72,-0.030052257782316637],[122,273,73,-0.02741744296057401],[122,273,74,-0.01602546606818218],[122,273,75,-0.01577663934099544],[122,273,76,-0.03533648589069873],[122,273,77,-0.0464502443380663],[122,273,78,-0.04910679230618741],[122,273,79,-0.04758026330356199],[122,274,64,-0.04618041557915016],[122,274,65,-0.04341632830306605],[122,274,66,-0.013972103300080732],[122,274,67,0.0018527864633082359],[122,274,68,0.006373801604412703],[122,274,69,0.005924090705961269],[122,274,70,-0.0075200220594231525],[122,274,71,-0.021414919445899714],[122,274,72,-0.02956299169905133],[122,274,73,-0.026872106906895482],[122,274,74,-0.015563559833091873],[122,274,75,-0.015259803097014104],[122,274,76,-0.03453392166597089],[122,274,77,-0.04555495251352969],[122,274,78,-0.04826648424814965],[122,274,79,-0.046797441078549586],[122,275,64,-0.0456782647933768],[122,275,65,-0.04293546123489066],[122,275,66,-0.013751932491373147],[122,275,67,0.0019458821543647175],[122,275,68,0.006405750353851519],[122,275,69,0.005984184643380186],[122,275,70,-0.007325199933559251],[122,275,71,-0.021070126675128215],[122,275,72,-0.02909279876254395],[122,275,73,-0.026347305584143367],[122,275,74,-0.015117876930098575],[122,275,75,-0.014759808981783556],[122,275,76,-0.03375828443211809],[122,275,77,-0.044692778396633284],[122,275,78,-0.047459206611937865],[122,275,79,-0.04604382112269196],[122,276,64,-0.04519451749728454],[122,276,65,-0.04247491035902869],[122,276,66,-0.01354534835303653],[122,276,67,0.0020317184019028414],[122,276,68,0.006433506537877792],[122,276,69,0.006039129939639605],[122,276,70,-0.007140210776665763],[122,276,71,-0.02074006580053543],[122,276,72,-0.02864138285925449],[122,276,73,-0.02584263523216183],[122,276,74,-0.01468795425966593],[122,276,75,-0.014276136662247927],[122,276,76,-0.0330090325364072],[122,276,77,-0.04386318342349988],[122,276,78,-0.04668448237635582],[122,276,79,-0.04531905537585919],[122,277,64,-0.044729193376972204],[122,277,65,-0.042034616386136994],[122,277,66,-0.013352091037331527],[122,277,67,0.0021105979044353552],[122,277,68,0.0064573601329701085],[122,277,69,0.0060892573924369005],[122,277,70,-0.006964768390966702],[122,277,71,-0.020424480334752238],[122,277,72,-0.02820845086302623],[122,277,73,-0.025357695092090213],[122,277,74,-0.014273331707597474],[122,277,75,-0.013808266697952789],[122,277,76,-0.03228562000706557],[122,277,77,-0.043065627749133466],[122,277,78,-0.045941837399754624],[122,277,79,-0.0446227943512707],[122,278,64,-0.0442823056685224],[122,278,65,-0.04161451903866141],[122,278,66,-0.013171911495050828],[122,278,67,0.0021828117876852926],[122,278,68,0.006477589892141918],[122,278,69,0.006134886310912494],[122,278,70,-0.0067985950512065],[122,278,71,-0.02012311893456435],[122,278,72,-0.027793713118487714],[122,278,73,-0.024892088056060538],[122,278,74,-0.013873552647992862],[122,278,75,-0.013355681073908257],[122,278,76,-0.03158749762435131],[122,278,77,-0.0422995715636033],[122,278,78,-0.04523080152955247],[122,278,79,-0.04395468808501769],[122,279,64,-0.04385386181484851],[122,279,65,-0.041214557749955055],[122,279,66,-0.013004571844279835],[122,279,67,0.002248639455591237],[122,279,68,0.006494463384918197],[122,279,69,0.0061763245290867375],[122,279,70,-0.00664142168253261],[122,279,71,-0.019835735722879666],[122,279,72,-0.027396883891617024],[122,279,73,-0.024445421272689494],[122,279,74,-0.013488164397617354],[122,279,75,-0.012917863679526737],[122,279,76,-0.03091411392924533],[122,279,77,-0.041564476340439825],[122,279,78,-0.044550909654058064],[122,279,79,-0.043314387048368416],[122,280,64,-0.04344386411681514],[122,280,65,-0.04083467234774732],[122,280,66,-0.012849845706974932],[122,280,67,0.0023083484715415393],[122,280,68,0.006508237064672906],[122,280,69,0.006213868453268214],[122,280,70,-0.006492988006980256],[122,280,71,-0.019562090581287758],[122,280,72,-0.027017681786623372],[122,280,73,-0.024017306707646582],[122,280,74,-0.013116718621494569],[122,280,75,-0.012494300733076016],[122,280,76,-0.03026491616726113],[122,280,77,-0.0408598060145264],[122,280,78,-0.04390170269436157],[122,280,79,-0.042701543020008864],[122,281,64,-0.0430523103760721],[122,281,65,-0.0404748037200223],[122,281,66,-0.012707518513906743],[122,281,67,0.0023621944684321917],[122,281,68,0.006519156361730754],[122,281,69,0.006247803141843673],[122,281,70,-0.006353042659289404],[122,281,71,-0.019301949412975916],[122,281,72,-0.0266558301283483],[122,281,73,-0.02360736165871306],[122,281,74,-0.012758771689690036],[122,281,75,-0.012084481151280723],[122,281,76,-0.02963935116514877],[122,281,77,-0.04018502808703298],[122,281,78,-0.04328272853420132],[122,281,79,-0.04211580991549455],[122,282,64,-0.04267919452713469],[122,282,65,-0.04013489446144403],[122,282,66,-0.01257738777854137],[122,282,67,0.002410421086119312],[122,282,68,0.006527455800656271],[122,282,69,0.006278402415888197],[122,282,70,-0.006221343272774177],[122,282,71,-0.01905508437576742],[122,282,72,-0.026311057309420172],[122,282,73,-0.023215209224867053],[122,282,74,-0.012413884985399594],[122,282,75,-0.011687896863891059],[122,282,76,-0.02903686613854075],[122,282,77,-0.039539614655171605],[122,282,78,-0.04269354288583318],[122,282,79,-0.04155684457130163],[122,283,64,-0.04232450725635787],[122,283,65,-0.03981488949855956],[122,283,66,-0.012459263340448595],[122,283,67,0.0024532599348270493],[122,283,68,0.006533359140181036],[122,283,69,0.006305928999067854],[122,283,70,-0.0060976565359618035],[122,283,71,-0.018821274085064333],[122,283,72,-0.02598309710144218],[122,283,73,-0.02284047872905216],[122,283,74,-0.012081625164600025],[122,283,75,-0.011304043073215685],[122,283,76,-0.02845690942884886],[122,283,77,-0.03892304336478449],[122,283,78,-0.04213371009005056],[122,283,79,-0.041024307480988995],[122,284,64,-0.04198823660553282],[122,284,65,-0.03951473669206383],[122,284,66,-0.012352967578800948],[122,284,67,0.002490930583098176],[122,284,68,0.006537079534283482],[122,284,69,0.00633063468538149],[122,284,70,-0.005981758220669992],[122,284,71,-0.01860030378645061],[122,284,72,-0.025671688929498847],[122,284,73,-0.022482806094365277],[122,284,74,-0.011761564367624653],[122,284,75,-0.01093241845875879],[122,284,76,-0.027898931167942932],[122,284,77,-0.038334798283950776],[122,284,78,-0.04160280384856666],[122,284,79,-0.040517863481067506],[122,285,64,-0.041670368557931145],[122,285,65,-0.03923438741447852],[122,285,66,-0.01225833559650221],[122,285,67,0.002523640568900763],[122,285,68,0.006538819712996641],[122,285,69,0.006352760533364879],[122,285,70,-0.005873433182144269],[122,285,71,-0.01839196549768656],[122,285,72,-0.025376578109272775],[122,285,73,-0.022141834173477856],[122,285,74,-0.011453280383124877],[122,285,75,-0.01057252532723608],[122,285,76,-0.02736238386935138],[122,285,77,-0.037774370695958646],[122,285,78,-0.04110040788703261],[122,285,79,-0.04003718238426215],[122,286,64,-0.041370887604719464],[122,286,65,-0.038973797101650436],[122,286,66,-0.01217521537544273],[122,286,67,0.002551585432545606],[122,286,68,0.00653877218158986],[122,286,69,0.006372537085465643],[122,286,70,-0.005772475331825445],[122,286,71,-0.01819605811980454],[122,286,72,-0.02509751604607223],[122,286,73,-0.021817213031171588],[122,286,74,-0.011156356764971507],[122,286,75,-0.010223869708373549],[122,286,76,-0.02684672294492081],[122,286,77,-0.037241259810129844],[122,286,78,-0.040626116547002614],[122,286,79,-0.03958193955793068],[122,287,64,-0.04108977728974834],[122,287,65,-0.03873292577651732],[122,287,66,-0.012103467903310199],[122,287,67,0.0025749487701354425],[122,287,68,0.006537119436867395],[122,287,69,0.0063901846114159016],[122,287,70,-0.005678687583229361],[122,287,71,-0.018012387516957374],[122,287,72,-0.024834260395043307],[122,287,73,-0.02150860017990504],[122,287,74,-0.010870382902707023],[122,287,75,-0.009885961396985823],[122,287,76,-0.02635140714602734],[122,287,77,-0.03673497338907701],[122,287,78,-0.040179535305157645],[122,287,79,-0.03915181644546193],[122,288,64,-0.04082702073079367],[122,288,65,-0.038511738543614164],[122,288,66,-0.01204296727230267],[122,288,67,0.002593902306343173],[122,288,68,0.006534034199425975],[122,288,69,0.006405913374550421],[122,288,70,-0.005591881771336458],[122,288,71,-0.01784076656461969],[122,288,72,-0.024586575181819437],[122,288,73,-0.02121566076835527],[122,288,74,-0.010594954046211231],[122,288,75,-0.009558313941917557],[122,288,76,-0.025875898928574028],[122,288,77,-0.03625502829104464],[122,288,78,-0.03976028121808071],[122,288,79,-0.038746501028518496],[122,289,64,-0.04058260082436309],[122,289,65,-0.03831020580676702],[122,289,66,-0.011993600676323385],[122,289,67,0.0026086060908625417],[122,289,68,0.00652968024795272],[122,289,69,0.0064199251937961],[122,289,70,-0.005511876681926494],[122,289,71,-0.01768101318761485],[122,289,72,-0.02435422956634348],[122,289,73,-0.02093806739101359],[122,289,74,-0.010329671472426359],[122,289,75,-0.009240444772578222],[122,289,76,-0.025419664793885167],[122,289,77,-0.03580095098906614],[122,289,78,-0.039367983741317024],[122,289,79,-0.038365689262104506],[122,290,64,-0.0403564985647973],[122,290,65,-0.03812830187245239],[122,290,66,-0.011955267924756263],[122,290,67,0.0026192095051344954],[122,290,68,0.006524217527801334],[122,290,69,0.006432424132637542],[122,290,70,-0.005438482817048055],[122,290,71,-0.01753293440240473],[122,290,72,-0.02413698739561243],[122,290,73,-0.020675497740451205],[122,290,74,-0.01007414421691013],[122,290,75,-0.00893187692529522],[122,290,76,-0.0249821762294063],[122,290,77,-0.035372278692107594],[122,290,78,-0.03900228879777647],[122,290,79,-0.038009093815850645],[122,291,64,-0.04014869523381809],[122,291,65,-0.03796600679599323],[122,291,66,-0.011927881941669823],[122,291,67,0.0026258510880874317],[122,291,68,0.006517800326925178],[122,291,69,0.00644361189699396],[122,291,70,-0.005371509698555607],[122,291,71,-0.017396334425767934],[122,291,72,-0.023934612972947942],[122,291,73,-0.020427636669843326],[122,291,74,-0.009827988994522401],[122,291,75,-0.008632138953892183],[122,291,76,-0.02456291047035152],[122,291,77,-0.03496856004390653],[122,291,78,-0.03866285754082165],[122,291,79,-0.03767644027826773],[122,292,64,-0.03995917430654315],[122,292,65,-0.03782330800065037],[122,292,66,-0.01191136914148406],[122,292,67,0.0026286582210466743],[122,292,68,0.0065105749124081585],[122,292,69,0.006453682339008266],[122,292,70,-0.00531077430045917],[122,292,71,-0.0172710237943394],[122,292,72,-0.023746877220093776],[122,292,73,-0.02019417789333675],[122,292,74,-0.009590829370636277],[122,292,75,-0.00834076403539366],[122,292,76,-0.024161350510984635],[122,292,77,-0.034589355181692004],[122,292,78,-0.038349364487625714],[122,292,79,-0.03736746260346727],[122,293,64,-0.03978792182058679],[122,293,65,-0.0377002005955717],[122,293,66,-0.011905669384942384],[122,293,67,0.0026277472873526882],[122,293,68,0.006502679849020588],[122,293,69,0.0064628218700364575],[122,293,70,-0.005256100773833399],[122,293,71,-0.01715681917449711],[122,293,72,-0.023573557534195672],[122,293,73,-0.01997482391642745],[122,293,74,-0.009362295561637844],[122,293,75,-0.008057289696060748],[122,293,76,-0.023776985066722187],[122,293,77,-0.03423423582427611],[122,293,78,-0.038061497576052095],[122,293,79,-0.03708190328854742],[122,294,64,-0.03963492670358145],[122,294,65,-0.03759668764854044],[122,294,66,-0.011910735905094222],[122,294,67,0.0026232238528867678],[122,294,68,0.006494246361013588],[122,294,69,0.006471209957906027],[122,294,70,-0.005207320053523584],[122,294,71,-0.017053543042002024],[122,294,72,-0.023414437540962344],[122,294,73,-0.019769285911171025],[122,294,74,-0.009142024213489856],[122,294,75,-0.007781257509539447],[122,294,76,-0.023409308471265936],[122,294,77,-0.033902785279491525],[122,294,78,-0.037798958162830285],[122,294,79,-0.03681951353256552],[122,295,64,-0.03950018107113296],[122,295,65,-0.037512780423337874],[122,295,66,-0.011926535206167646],[122,295,67,0.0026151828627467536],[122,295,68,0.006485398711748706],[122,295,69,0.006479019653374888],[122,295,70,-0.005164269427243581],[122,295,71,-0.0169610233167857],[122,295,72,-0.023269306800819848],[122,295,73,-0.01957728355134853],[122,295,74,-0.008929658151915262],[122,295,75,-0.007512212760772583],[122,295,76,-0.02305782050719241],[122,295,77,-0.03359459836746977],[122,295,78,-0.03756146094142905],[122,295,79,-0.03658005333009054],[122,296,64,-0.03938368049380556],[122,296,65,-0.03744849858015217],[122,296,66,-0.01195304693456211],[122,296,67,0.002603708853961174],[122,296,68,0.006476254601335902],[122,296,69,0.006486418146495895],[122,296,70,-0.005126792065886997],[122,296,71,-0.01687909295127202],[122,296,72,-0.023137960466542793],[122,296,73,-0.0193985448072807],[122,296,74,-0.008724846104976319],[122,296,75,-0.00724970407663349],[122,296,76,-0.02272202616970176],[122,296,77,-0.033309281258054844],[122,296,78,-0.03734873377711626],[122,296,79,-0.036363291497459385],[122,297,64,-0.0392854242317835],[122,297,65,-0.037403870337432726],[122,297,66,-0.011990263721019558],[122,297,67,0.0025888761842912398],[122,297,68,0.006466925582630971],[122,297,69,0.006493567353830866],[122,297,70,-0.005094736513661112],[122,297,71,-0.016807589470464273],[122,297,72,-0.023020198890746243],[122,297,73,-0.01923280569993035],[122,297,74,-0.008527242398820748],[122,297,75,-0.006993283024270488],[122,297,76,-0.022401435363234842],[122,297,77,-0.03304645122051399],[122,297,78,-0.03716051745652931],[122,297,79,-0.036169005629860355],[122,298,64,-0.039205415520122674],[122,298,65,-0.037378932676583744],[122,298,66,-0.012038191074721321],[122,298,67,0.0025707491965938694],[122,298,68,0.006457517416476124],[122,298,69,0.006500624459120256],[122,298,70,-0.005067956213985353],[122,298,71,-0.01674635453841928],[122,298,72,-0.022915827257103043],[122,298,73,-0.01907981008852241],[122,298,74,-0.008336506701118478],[122,298,75,-0.006742503751075204],[122,298,76,-0.02209556260272458],[122,298,77,-0.032805736354831846],[122,298,78,-0.03699656541940449],[122,298,79,-0.03599698205715189],[122,299,64,-0.03914367773395465],[122,299,65,-0.037373747189416565],[122,299,66,-0.012096862706368014],[122,299,67,0.002549367158038492],[122,299,68,0.006448115416946076],[122,299,69,0.006507727663768793],[122,299,70,-0.005046323615918884],[122,299,71,-0.01669524790363858],[122,299,72,-0.022824669402707776],[122,299,73,-0.01893932348174847],[122,299,74,-0.008152317631568241],[122,299,75,-0.006496936320822373],[122,299,76,-0.021803940214411174],[122,299,77,-0.03258678864632613],[122,299,78,-0.03685665666888227],[122,299,79,-0.03584702885853533],[122,300,64,-0.039100275953019625],[122,300,65,-0.03738842120796324],[122,300,66,-0.012166361038467391],[122,300,67,0.0025247240991625054],[122,300,68,0.006438764798787736],[122,300,69,0.006514977049883175],[122,300,70,-0.005029749065215922],[122,300,71,-0.016654166031300065],[122,300,72,-0.022746586240548365],[122,300,73,-0.018811151380180306],[122,300,74,-0.00797439084216877],[122,300,75,-0.006256184439140626],[122,300,76,-0.021526135814400695],[122,300,77,-0.03238930120242452],[122,300,78,-0.036740612797097214],[122,300,79,-0.03571899294904071],[122,301,64,-0.039075290098415726],[122,301,65,-0.03742308119455591],[122,301,66,-0.012246790665513615],[122,301,67,0.0024967950259204546],[122,301,68,0.006429496759305199],[122,301,69,0.006522460570123706],[122,301,70,-0.005018155161485604],[122,301,71,-0.016623016776662346],[122,301,72,-0.02268145078641868],[122,301,73,-0.018695114781645882],[122,301,74,-0.00780245480260035],[122,301,75,-0.0060198613822948915],[122,301,76,-0.021261728431676036],[122,301,77,-0.03221298456620258],[122,301,78,-0.036648274525519685],[122,301,79,-0.03561273712038572],[122,302,64,-0.03906881107763822],[122,302,65,-0.037477868832236014],[122,302,66,-0.012338274233018925],[122,302,67,0.0024655399806804684],[122,302,68,0.006420332690883498],[122,302,69,0.006530258454662678],[122,302,70,-0.005011472425058625],[122,302,71,-0.01660171510535127],[122,302,72,-0.022629143987068563],[122,302,73,-0.018591046267363978],[122,302,74,-0.00763624695882353],[122,302,75,-0.005787586076310171],[122,302,76,-0.02101030452950788],[122,302,77,-0.03205756269695647],[122,302,78,-0.036579497718379934],[122,302,79,-0.03552813639586415],[122,303,64,-0.03908094124900087],[122,303,65,-0.037552941365447],[122,303,66,-0.012440952519437472],[122,303,67,0.002430903938535708],[122,303,68,0.00641128428818436],[122,303,69,0.006538443583765074],[122,303,70,-0.005009638934896409],[122,303,71,-0.01659018272543479],[122,303,72,-0.022589554411814632],[122,303,73,-0.0184987899224301],[122,303,74,-0.007475513702846623],[122,303,75,-0.0055589829405184],[122,303,76,-0.020771457706153778],[122,303,77,-0.03192277255727659],[122,303,78,-0.036534152961281104],[122,303,79,-0.03546507793942352],[122,304,64,-0.03911179489588541],[122,304,65,-0.03764847194001389],[122,304,66,-0.012554984527663945],[122,304,67,0.002392816674744033],[122,304,68,0.006402353631216929],[122,304,69,0.006547081854898323],[122,304,70,-0.0050125999601082945],[122,304,71,-0.016588347703992697],[122,304,72,-0.022562577929245726],[122,304,73,-0.018418201260394954],[122,304,74,-0.007320010369836726],[122,304,75,-0.005333681755268268],[122,304,76,-0.020544788374187772],[122,304,77,-0.03180836364281441],[122,304,78,-0.03651212507790791],[122,304,79,-0.035423460929879295],[122,305,64,-0.03916149871133048],[122,305,65,-0.03776464994198791],[122,305,66,-0.012680547585274269],[122,305,67,0.0023511926030776687],[122,305,68,0.0063935332443852445],[122,305,69,0.0065562325455968675],[122,305,70,-0.005020307583630975],[122,305,71,-0.016596144066896502],[122,305,72,-0.02254811736836368],[122,305,73,-0.01834914715277049],[122,305,74,-0.0071695012650192565],[122,305,75,-0.005111317556730893],[122,305,76,-0.020329903419582056],[122,305,77,-0.031714097453016225],[122,305,78,-0.036513312582114384],[122,305,79,-0.03540319639992553],[122,306,64,-0.039230192293551146],[122,306,65,-0.03790168133493697],[122,306,66,-0.012817837452558337],[122,306,67,0.0023059305849643125],[122,306,68,0.006384806131700268],[122,306,69,0.006565948673450879],[122,306,70,-0.005032720316517045],[122,306,71,-0.01661351138048847],[122,306,72,-0.022546082163544645],[122,306,73,-0.018291505764352907],[122,306,74,-0.0070237597229300015],[122,306,75,-0.004891530561882334],[122,306,76,-0.020126415841716077],[122,306,77,-0.03163974690098579],[122,306,78,-0.03653762706257861],[122,306,79,-0.035404207039730066],[122,307,64,-0.039318028653048634],[122,307,65,-0.03805978899525426],[122,307,66,-0.012967068437281494],[122,307,67,0.002256913709383795],[122,307,68,0.006376145788412814],[122,307,69,0.006576277354724415],[122,307,70,-0.0050498027011727075],[122,307,71,-0.01664039431382321],[122,307,72,-0.022556387982741562],[122,307,73,-0.018245166495299562],[122,307,74,-0.00688256820169379],[122,307,75,-0.00467396612689677],[122,307,76,-0.0199339443755452],[122,307,77,-0.031585095660516385],[122,307,78,-0.03658499249710276],[122,307,79,-0.03542642696500776],[122,308,64,-0.03942517473204696],[122,308,65,-0.03823921304505866],[122,308,66,-0.013128473515006787],[122,308,67,0.0022040090435711973],[122,308,68,0.006367516189392175],[122,308,69,0.006587260163235061],[122,308,70,-0.005071524901793137],[122,308,71,-0.016676742180128684],[122,308,72,-0.022578956338409024],[122,308,73,-0.018210029930959163],[122,308,74,-0.006745718415127505],[122,308,75,-0.004458274742338846],[122,308,76,-0.019752113097213978],[122,308,77,-0.03154993744821816],[122,308,78,-0.03665534449354806],[122,308,79,-0.03546980144960476],[122,309,64,-0.039551811937035185],[122,309,65,-0.03844021118223358],[122,309,66,-0.013302304453683838],[122,309,67,0.002147067354681673],[122,309,68,0.006358871754659339],[122,309,69,0.006598933491267218],[122,309,70,-0.005097862280138895],[122,309,71,-0.01672250845612494],[122,309,72,-0.02261371418067724],[122,309,73,-0.018186007800497093],[122,309,74,-0.006613011505565489],[122,309,75,-0.004244112068679971],[122,309,76,-0.01958055101443736],[122,309,77,-0.03153407523853822],[122,309,78,-0.03674862945429733],[122,309,79,-0.03553428662273978],[122,310,64,-0.03969813668522786],[122,310,65,-0.038663059007121275],[122,310,66,-0.013488831941095491],[122,310,67,0.002085922802667231],[122,310,68,0.006350157292554635],[122,310,69,0.006611328914419016],[122,310,70,-0.005128794954700154],[122,310,71,-0.016777650277827696],[122,310,72,-0.022660593472354964],[122,310,73,-0.01817302294540129],[122,310,74,-0.006484258260404174],[122,310,75,-0.004031139015797445],[122,310,76,-0.019418891643001396],[122,310,77,-0.03153732040933763],[122,310,78,-0.03686480366103903],[122,310,79,-0.035619849131170424],[122,311,64,-0.03986436096579319],[122,311,65,-0.038908050345362426],[122,311,66,-0.013688345713637777],[122,311,67,0.0020203926047174755],[122,311,68,0.006341307921094488],[122,311,69,0.006624473562403362],[122,311,70,-0.005164307341213309],[122,311,71,-0.01684212791147398],[122,311,72,-0.022719530745413098],[122,311,73,-0.01817100929900852],[122,311,74,-0.0063592793754668215],[122,311,75,-0.0038190218702525824],[122,311,76,-0.01926677257077593],[122,311,77,-0.03155949181557425],[122,311,78,-0.037003832276599265],[122,311,79,-0.03572646576669051],[122,312,64,-0.04005071291669009],[122,312,65,-0.03917549756631155],[122,312,66,-0.01390115468478361],[122,312,67,0.0019502766717258825],[122,312,68,0.006332248968151643],[122,312,69,0.006638390497950217],[122,312,70,-0.005204387672401209],[122,312,71,-0.016915904198199494],[122,312,72,-0.022790466638655766],[122,312,73,-0.01817991187821936],[122,312,74,-0.006237905768363065],[122,312,75,-0.003607432474251934],[122,312,76,-0.01912383501063943],[122,312,77,-0.03160041478850417],[122,312,78,-0.037165688260461426],[122,312,79,-0.03585412305947851],[122,313,64,-0.04025743741794929],[122,313,65,-0.03946573189640264],[122,313,66,-0.014127587071456931],[122,313,67,0.001875357217359892],[122,313,68,0.006322895851175732],[122,313,69,0.006653099106074984],[122,313,70,-0.005249027494727158],[122,313,71,-0.01699894397111106],[122,313,72,-0.02287334541635695],[122,313,73,-0.01819968678860721],[122,313,74,-0.006119978945093852],[122,313,75,-0.003396048460304553],[122,313,76,-0.018989723343733323],[122,313,77,-0.0316599200576948],[122,313,78,-0.037350351194554904],[122,313,79,-0.03600281683795263],[122,314,64,-0.04048479670220771],[122,314,65,-0.03977910372677724],[122,314,66,-0.014367990516427342],[122,314,67,0.0017953983404238167],[122,314,68,0.006313153937244773],[122,314,69,0.0066686154960815276],[122,314,70,-0.005298221139887935],[122,314,71,-0.017091213443422088],[122,314,72,-0.022968114467723892],[122,314,73,-0.01823030124416461],[122,314,74,-0.006005351423219481],[122,314,75,-0.0031845535456871193],[122,314,76,-0.018864084654477663],[122,314,77,-0.03173784259303722],[122,314,78,-0.03755780601585705],[122,314,79,-0.03617255175592263],[122,315,64,-0.04073307098324348],[122,315,65,-0.040115982914390495],[122,315,66,-0.014622732204707408],[122,315,67,0.0017101455813305448],[122,315,68,0.006302918384323179],[122,315,69,0.006684952918774941],[122,315,70,-0.005351965168697563],[122,315,71,-0.017192679566335158],[122,315,72,-0.023074723787115507],[122,315,73,-0.018271733602940675],[122,315,74,-0.0058938872149445895],[122,315,75,-0.002972637890897187],[122,315,76,-0.01874656825876626],[122,315,77,-0.03183402036382525],[122,315,78,-0.03778804165230535],[122,315,79,-0.03636334078794921],[122,316,64,-0.04100255910319074],[122,316,65,-0.040476759075723914],[122,316,66,-0.014892198971805194],[122,316,67,0.0016193254536356527],[122,316,68,0.006292073964693882],[122,316,69,0.006702122201459584],[122,316,70,-0.0054102577849572285],[122,316,71,-0.01730330935539443],[122,316,72,-0.02319312543503467],[122,316,73,-0.018323973419847293],[122,316,74,-0.00578546237350654],[122,316,75,-0.0027599985263368565],[122,316,76,-0.01863682522676175],[122,316,77,-0.03194829301188624],[122,316,78,-0.03804104955852166],[122,316,79,-0.036575204693963546],[122,317,64,-0.041293579199014656],[122,317,65,-0.040861841872123446],[122,317,66,-0.015176797401572434],[122,317,67,0.0015226449517084185],[122,317,68,0.0062804948716030685],[122,317,69,0.006720132203369058],[122,317,70,-0.005473098216868371],[122,317,71,-0.017423069184077357],[122,317,72,-0.02332327298000226],[122,317,73,-0.018387021517919634],[122,317,74,-0.005679965606265638],[122,317,75,-0.0025463398515115565],[122,317,76,-0.01853450790169342],[122,317,77,-0.03208050043566293],[122,317,78,-0.038316822147855284],[122,317,79,-0.03680817145432859],[122,318,64,-0.04160646938870031],[122,318,65,-0.041271661285654],[122,318,66,-0.015476953911253782],[122,318,67,0.001419791035770697],[122,318,68,0.006268044510256613],[122,318,69,0.006738990294259666],[122,318,70,-0.0055404860635043214],[122,318,71,-0.017551924043444526],[122,318,72,-0.023465120921511252],[122,318,73,-0.018460890079311627],[122,318,74,-0.005577298957877585],[122,318,75,-0.0023313742110381793],[122,318,76,-0.018439269416038365],[122,318,77,-0.03223048128208664],[122,318,78,-0.03861535111729203],[122,318,79,-0.037062275676654086],[122,319,64,-0.04194156634617861],[122,319,65,-0.04170664907054237],[122,319,66,-0.01579311517816719],[122,319,67,0.0013104272123333266],[122,319,68,0.006254567904704347],[122,319,69,0.006758687319248752],[122,319,70,-0.0056124322630739885],[122,319,71,-0.017689840413607823],[122,319,72,-0.023618620175460556],[122,319,73,-0.018545592022372832],[122,319,74,-0.005477366957068915],[122,319,75,-0.0021148133853184747],[122,319,76,-0.01835075779256657],[122,319,77,-0.03239806811886112],[122,319,78,-0.03893662321342712],[122,319,79,-0.03733755674826596],[123,-64,64,-0.3467851685717602],[123,-64,65,-0.2690585991710398],[123,-64,66,-0.2737530143424664],[123,-64,67,-0.2334868409648769],[123,-64,68,-0.18235581703655301],[123,-64,69,-0.18493338245578048],[123,-64,70,-0.18827438832377524],[123,-64,71,-0.11357954749425896],[123,-64,72,-0.06800788570605762],[123,-64,73,-0.08901446253792063],[123,-64,74,-0.1106321261926662],[123,-64,75,-0.2048571153671367],[123,-64,76,-0.2560700916740216],[123,-64,77,-0.2473148772353016],[123,-64,78,-0.2122061305446803],[123,-64,79,-0.20337193315263136],[123,-63,64,-0.34353429361673027],[123,-63,65,-0.26709034041868296],[123,-63,66,-0.271027873576666],[123,-63,67,-0.2310113718926594],[123,-63,68,-0.17949026883833175],[123,-63,69,-0.1806543210784098],[123,-63,70,-0.18444095621767898],[123,-63,71,-0.11239239524476108],[123,-63,72,-0.06772164040135119],[123,-63,73,-0.0886750812614527],[123,-63,74,-0.11056460529365862],[123,-63,75,-0.20303664892249026],[123,-63,76,-0.25263720347488283],[123,-63,77,-0.2435406648212685],[123,-63,78,-0.20904440075178973],[123,-63,79,-0.20071156010689464],[123,-62,64,-0.3402955120732958],[123,-62,65,-0.2651223050910557],[123,-62,66,-0.26831374222069315],[123,-62,67,-0.2285540953680594],[123,-62,68,-0.17667637438722755],[123,-62,69,-0.17647425149856993],[123,-62,70,-0.18070345624029502],[123,-62,71,-0.11125325931172955],[123,-62,72,-0.06746600790317529],[123,-62,73,-0.0883547184877726],[123,-62,74,-0.11050674346724221],[123,-62,75,-0.2012424765736108],[123,-62,76,-0.24924762723375996],[123,-62,77,-0.23982568171177943],[123,-62,78,-0.20595248316743672],[123,-62,79,-0.1981195095406334],[123,-61,64,-0.33706762119725464],[123,-61,65,-0.26315333450450734],[123,-61,66,-0.2656095771810138],[123,-61,67,-0.22611364269261602],[123,-61,68,-0.17391224846944478],[123,-61,69,-0.17239078855314596],[123,-61,70,-0.17705920192671826],[123,-61,71,-0.11015963338651584],[123,-61,72,-0.06723881371889141],[123,-61,73,-0.08805164423601376],[123,-61,74,-0.11045677813833178],[123,-61,75,-0.19947300780623065],[123,-61,76,-0.24590035060375445],[123,-61,77,-0.23616859046980426],[123,-61,78,-0.20292793959244995],[123,-61,79,-0.19559274011104422],[123,-60,64,-0.3338493637248931],[123,-60,65,-0.2611822284046312],[123,-60,66,-0.262914276476075],[123,-60,67,-0.2236885978004874],[123,-60,68,-0.1711959788106298],[123,-60,69,-0.16840152381596765],[123,-60,70,-0.1735055061268608],[123,-60,71,-0.10910906769074662],[123,-60,72,-0.06703797887005415],[123,-60,73,-0.08776422346060714],[123,-60,74,-0.1104130270926267],[123,-60,75,-0.1977266555784425],[123,-60,76,-0.24259428552890847],[123,-60,77,-0.23256797117387676],[123,-60,78,-0.19996830807738702],[123,-60,79,-0.1931282243788677],[123,-59,64,-0.3306394219080429],[123,-59,65,-0.2592077466954807],[123,-59,66,-0.2602267026973373],[123,-59,67,-0.22127753511624762],[123,-59,68,-0.16852566537814961],[123,-59,69,-0.16450405836755855],[123,-59,70,-0.1700396873021885],[123,-59,71,-0.10809913403839783],[123,-59,72,-0.06686145106413555],[123,-59,73,-0.08749082917766722],[123,-59,74,-0.11037380615691808],[123,-59,75,-0.19600179536239526],[123,-59,76,-0.2393282756429298],[123,-59,77,-0.22902234824635775],[123,-59,78,-0.19707111564026122],[123,-59,79,-0.19072294474961757],[123,-58,64,-0.3274364157882004],[123,-58,65,-0.25722860724078833],[123,-58,66,-0.25754568147647716],[123,-58,67,-0.21887901793756398],[123,-58,68,-0.16589941956428836],[123,-58,69,-0.16069600352036034],[123,-58,70,-0.16665907005492],[123,-58,71,-0.10712742449022092],[123,-58,72,-0.06670720302985728],[123,-58,73,-0.08722984075544542],[123,-58,74,-0.11033742716971587],[123,-58,75,-0.19429676428432227],[123,-58,76,-0.2361010967206169],[123,-58,77,-0.22553019096197297],[123,-58,78,-0.1942338777941923],[123,-58,79,-0.188373892433136],[123,-57,64,-0.3242389016087186],[123,-57,65,-0.2552434837401335],[123,-57,66,-0.25487000006537625],[123,-57,67,-0.21649159688842798],[123,-57,68,-0.1633153633994026],[123,-57,69,-0.15697498157066908],[123,-57,70,-0.163360985612188],[123,-57,71,-0.10619154986684523],[123,-57,72,-0.06657323071931012],[123,-57,73,-0.08697964213189943],[123,-57,74,-0.11030219583205003],[123,-57,75,-0.19260986020707938],[123,-57,76,-0.23291145719935039],[123,-57,77,-0.22208991402696748],[123,-57,78,-0.19145409802651692],[123,-57,79,-0.18607806625756493],[123,-56,64,-0.32104537038286984],[123,-56,65,-0.2532510037036365],[123,-56,66,-0.25219840605874877],[123,-56,67,-0.21411380848054182],[123,-56,68,-0.1607716288231861],[123,-56,69,-0.15333862658723624],[123,-56,70,-0.160142772269361],[123,-56,71,-0.10528913812209982],[123,-56,72,-0.06645755136351424],[123,-56,73,-0.08673861993653781],[123,-56,74,-0.11026640942536468],[123,-56,75,-0.19093934075719196],[123,-56,76,-0.22975799877953193],[123,-56,77,-0.21869987824265721],[123,-56,78,-0.18872926724780548],[123,-56,79,-0.18383247136107267],[123,-55,64,-0.3178542466386317],[123,-55,65,-0.25124974654775617],[123,-55,66,-0.2495296062779274],[123,-55,67,-0.2117441738020534],[123,-55,68,-0.15826635702366137],[123,-55,69,-0.14978458523229193],[123,-55,70,-0.15700177579522778],[123,-55,71,-0.10441783259504248],[123,-55,72,-0.06635820140070417],[123,-55,73,-0.08650516153482653],[123,-55,74,-0.11022835442230552],[123,-55,75,-0.18928342231837064],[123,-55,76,-0.22663929711064695],[123,-55,77,-0.21535839125589717],[123,-55,78,-0.18605686322410384],[123,-55,79,-0.18163411778702537],[123,-54,64,-0.31466388736176343],[123,-54,65,-0.24923824183529683],[123,-54,66,-0.24686226583451742],[123,-54,67,-0.20938119735273375],[123,-54,68,-0.1557976978535691],[123,-54,69,-0.14631051761134348],[123,-54,70,-0.15393534980260115],[123,-54,71,-0.10357529015981311],[123,-54,72,-0.06627323429711027],[123,-54,73,-0.08627765301400339],[123,-54,74,-0.11018630401685374],[123,-54,75,-0.18764027901432842],[123,-54,76,-0.22355386257074697],[123,-54,77,-0.2120637084002065],[123,-54,78,-0.18343435000676145],[123,-54,79,-0.17948001900907687],[123,-53,64,-0.3114728403638939],[123,-53,65,-0.24721517721330272],[123,-53,66,-0.24419521814298545],[123,-53,67,-0.20702354794006372],[123,-53,68,-0.1533639464879598],[123,-53,69,-0.1429142282124086],[123,-53,70,-0.15094099585293777],[123,-53,71,-0.10275927608333663],[123,-53,72,-0.06620078169800328],[123,-53,73,-0.08605456095345894],[123,-53,74,-0.11013862466810163],[123,-53,75,-0.18600822892856098],[123,-53,76,-0.22050036669038697],[123,-53,77,-0.20881425064353765],[123,-53,78,-0.18085936830781066],[123,-53,79,-0.17736738058427218],[123,-52,64,-0.3082815922861339],[123,-52,65,-0.2451808150362564],[123,-52,66,-0.2415288834848118],[123,-52,67,-0.20467128130310638],[123,-52,68,-0.15096445827381016],[123,-52,69,-0.13959452277938167],[123,-52,70,-0.14801728970469286],[123,-52,71,-0.10196831646655304],[123,-52,72,-0.06613948485248371],[123,-52,73,-0.08583500191258354],[123,-52,74,-0.1100845197007332],[123,-52,75,-0.18438699540219053],[123,-52,76,-0.21747915004859153],[123,-52,77,-0.20561005094703316],[123,-52,78,-0.17833100938331248],[123,-52,79,-0.17529487281297368],[123,-51,64,-0.3050915536903105],[123,-51,65,-0.2431361829470191],[123,-51,66,-0.23886443683050826],[123,-51,67,-0.20232511808359308],[123,-51,68,-0.14859908609315153],[123,-51,69,-0.1363506455010109],[123,-51,70,-0.1451632919894228],[123,-51,71,-0.10120132257544774],[123,-51,72,-0.06608826062159491],[123,-51,73,-0.08561842899656164],[123,-51,74,-0.11002362780768968],[123,-51,75,-0.18277697227140638],[123,-51,76,-0.21449130337593167],[123,-51,77,-0.2024518585832612],[123,-51,78,-0.17584903333569477],[123,-51,79,-0.17326186396830856],[123,-50,64,-0.30190415512176244],[123,-50,65,-0.24108234556951416],[123,-50,66,-0.23620307083874098],[123,-50,67,-0.19998580668937224],[123,-50,68,-0.1462676964997694],[123,-50,69,-0.13318181499197165],[123,-50,70,-0.14237805353447555],[123,-50,71,-0.10045725563499758],[123,-50,72,-0.06604608475823641],[123,-50,73,-0.08540434382058096],[123,-50,74,-0.10995564948767336],[123,-50,75,-0.18117857201180668],[123,-50,76,-0.21153787466059382],[123,-50,77,-0.1993403740186178],[123,-50,78,-0.17341319777130867],[123,-50,79,-0.17126775425612029],[123,-49,64,-0.29872083929110643],[123,-49,65,-0.23902039782422468],[123,-49,66,-0.2335459890417452],[123,-49,67,-0.19765411718957454],[123,-49,68,-0.14397016619122108],[123,-49,69,-0.13008722322858948],[123,-49,70,-0.1396606144395439],[123,-49,71,-0.09973512549049313],[123,-49,72,-0.0660119909172607],[123,-49,73,-0.08519229465017107],[123,-49,74,-0.10988034429162424],[123,-49,75,-0.179592221725007],[123,-49,76,-0.20861986510232342],[123,-49,77,-0.19627624566703922],[123,-49,78,-0.1710232551041961],[123,-49,79,-0.16931197273776344],[123,-48,64,-0.2955430582315699],[123,-48,65,-0.23695146221245414],[123,-48,66,-0.2308944030926293],[123,-48,67,-0.19533083869492562],[123,-48,68,-0.14170638112251613],[123,-48,69,-0.12706603705252043],[123,-48,70,-0.13701000582169956],[123,-48,71,-0.0990339909441578],[123,-48,72,-0.06598507067921154],[123,-48,73,-0.08498187598892484],[123,-48,74,-0.10979752994998121],[123,-48,75,-0.17801836261579332],[123,-48,76,-0.20573822947681544],[123,-48,77,-0.1932600709026021],[123,-48,78,-0.16867895346630749],[123,-48,79,-0.167393977726233],[123,-47,64,-0.2923722704911166],[123,-47,65,-0.23487668608655296],[123,-47,66,-0.22824953005512813],[123,-47,67,-0.1930167767543019],[123,-47,68,-0.13947623562938344],[123,-47,69,-0.12411739971524392],[123,-47,70,-0.1344252515272615],[123,-47,71,-0.09835295992852784],[123,-47,72,-0.06596447339553767],[123,-47,73,-0.08477272803167017],[123,-47,74,-0.10970708132868451],[123,-47,75,-0.176457449392329],[123,-47,76,-0.20289387657660254],[123,-47,77,-0.19029239714990884],[123,-47,78,-0.16638003755769296],[123,-47,79,-0.16551325702123515],[123,-46,64,-0.28920993836862746],[123,-46,65,-0.23279723891731285],[123,-46,66,-0.2256125897451272],[123,-46,67,-0.19071275077798056],[123,-46,68,-0.13727963156489542],[123,-46,69,-0.12124043245612776],[123,-46,70,-0.13190536980685594],[123,-46,71,-0.09769118952500483],[123,-46,72,-0.06594940586527646],[123,-46,73,-0.08456453599259145],[123,-46,74,-0.10960892922830656],[123,-46,75,-0.17490994959911838],[123,-46,76,-0.20008766972617073],[123,-46,77,-0.18737372304678568],[123,-46,78,-0.16412624943980952],[123,-46,79,-0.16366932799576675],[123,-45,64,-0.2860575252028014],[123,-45,65,-0.23071430956919492],[123,-45,66,-0.22298480213260316],[123,-45,67,-0.1884195914973584],[123,-45,68,-0.1351164774528924],[123,-45,69,-0.11843423610695065],[123,-45,70,-0.12944937495023584],[123,-45,71,-0.09704788583602995],[123,-45,72,-0.06593913185319461],[123,-45,73,-0.0843570293176718],[123,-45,74,-0.10950305904045668],[123,-45,75,-0.17337634289208037],[123,-45,76,-0.1973204273687729],[123,-45,77,-0.1845044996737231],[123,-45,78,-0.1619173292749969],[123,-45,79,-0.16186173754648944],[123,-44,64,-0.28291649272226443],[123,-44,65,-0.22862910359387772],[123,-44,66,-0.22036738481225426],[123,-44,67,-0.18613813847051994],[123,-44,68,-0.13298668766162353],[123,-44,69,-0.11569789271626421],[123,-44,70,-0.12705627887800355],[123,-44,71,-0.09642230371969647],[123,-44,72,-0.06593297145969132],[123,-44,73,-0.08414998079106004],[123,-44,74,-0.10938950927571757],[123,-44,75,-0.1718571202651188],[123,-44,76,-0.19459292372255704],[123,-44,77,-0.18168513184479193],[123,-44,78,-0.15975301601544933],[123,-44,79,-0.16009006192025407],[123,-43,64,-0.27978829846492326],[123,-43,65,-0.22654284055221158],[123,-43,66,-0.2177615505506025],[123,-43,67,-0.18386923764253335],[123,-43,68,-0.1308901816008817],[123,-43,69,-0.11303046718731813],[123,-43,70,-0.12472509268774741],[123,-43,71,-0.09581374639573285],[123,-43,72,-0.06593030035283315],[123,-43,73,-0.0839432055449058],[123,-43,74,-0.10926836997715249],[123,-43,75,-0.17035278323728073],[123,-43,76,-0.19190588950351525],[123,-43,77,-0.17891597945483534],[123,-43,78,-0.15763304804500897],[123,-43,79,-0.1583539064288689],[123,-42,64,-0.27667439327394666],[123,-42,65,-0.22445675137401108],[123,-42,66,-0.2151685049165492],[123,-42,67,-0.18161373896854172],[123,-42,68,-0.1288268829454927],[123,-42,69,-0.11043100892340918],[123,-42,70,-0.12245482815228759],[123,-42,71,-0.09522156493169201],[123,-42,72,-0.06593054887274291],[123,-42,73,-0.08373655998198425],[123,-42,74,-0.10913978103305774],[123,-42,75,-0.16886384300920115],[123,-42,76,-0.18926001271256823],[123,-42,77,-0.1761973588777233],[123,-42,78,-0.15555716377700207],[123,-42,79,-0.15665290506384424],[123,-41,64,-0.2735762188774901],[123,-41,65,-0.22237207576486764],[123,-41,66,-0.21258944400202148],[123,-41,67,-0.17937249410734515],[123,-41,68,-0.12679671888802296],[123,-41,69,-0.10789855347505195],[123,-41,70,-0.12024449916826833],[123,-41,71,-0.09464515761841],[123,-41,72,-0.0659332010187287],[123,-41,73,-0.08352994062050506],[123,-41,74,-0.10900393040252358],[123,-41,75,-0.16739081959739488],[123,-41,76,-0.18665593948422443],[123,-41,77,-0.17352954441075935],[123,-41,78,-0.1535251022115075],[123,-41,79,-0.15498672002270808],[123,-40,64,-0.2704952055588088],[123,-40,65,-0.22029005966868972],[123,-40,66,-0.21002555223877442],[123,-40,67,-0.17714635419258626],[123,-40,68,-0.12479961942337589],[123,-40,69,-0.105432124183714],[123,-40,70,-0.11809312315366924],[123,-40,71,-0.09408396924378555],[123,-40,72,-0.06593779332946748],[123,-40,73,-0.08332328287033947],[123,-40,74,-0.10886105226703502],[123,-40,75,-0.16593424095461443],[123,-40,76,-0.1840942749941761],[123,-40,77,-0.17091276976042724],[123,-40,78,-0.1515366034553994],[123,-40,79,-0.1533550411581285],[123,-39,64,-0.2674327699226867],[123,-39,65,-0.21821195279395814],[123,-39,66,-0.2074780003166353],[123,-39,67,-0.1749361676878419],[123,-39,68,-0.12283551666753494],[123,-39,69,-0.10303073381703176],[123,-39,70,-0.11599972239296874],[123,-39,71,-0.09353749027372314],[123,-39,72,-0.06594391366629127],[123,-39,73,-0.08311655974958022],[123,-39,74,-0.1087114251208272],[123,-39,75,-0.16449464208401676],[123,-39,76,-0.181575584423061],[123,-39,77,-0.16834722956472803],[123,-39,78,-0.14959140920837977],[123,-39,79,-0.15175758536061734],[123,-38,64,-0.2643903127638349],[123,-38,65,-0.21613900621140053],[123,-38,66,-0.20494794320811607],[123,-38,67,-0.17274277833154775],[123,-38,68,-0.12090434421271717],[123,-38,69,-0.10069338619095788],[123,-38,70,-0.11396332532918753],[123,-38,71,-0.09300525594918352],[123,-38,72,-0.06595119990965316],[123,-38,73,-0.0829097805502951],[123,-38,74,-0.10855536981246136],[123,-38,75,-0.16307256415464857],[123,-38,76,-0.17910039397370622],[123,-38,77,-0.16583308094761595],[123,-38,78,-0.14768926321827316],[123,-38,79,-0.15019409588530472],[123,-37,64,-0.2613692170423737],[123,-37,65,-0.21407247003022806],[123,-37,66,-0.20243651830372603],[123,-37,67,-0.17056702317705963],[123,-37,68,-0.11900603652096677],[123,-37,69,-0.09841907777463639],[123,-37,70,-0.11198296780233367],[123,-37,71,-0.09248684530816753],[123,-37,72,-0.06595933857866734],[123,-37,73,-0.08270298946210129],[123,-37,74,-0.10839324754965148],[123,-37,75,-0.16166855362539057],[123,-37,76,-0.1766691919391817],[123,-37,77,-0.1633704451012363],[123,-37,78,-0.14582991170883017],[123,-37,79,-0.14866434163287856],[123,-36,64,-0.2583708459707988],[123,-36,65,-0.21201359115935417],[123,-36,66,-0.19994484366156032],[123,-36,67,-0.168409730732378],[123,-36,68,-0.11714052835782952],[123,-36,69,-0.09620679927397266],[123,-36,70,-0.11005769423388521],[123,-36,71,-0.09198188014114192],[123,-36,72,-0.06596806338324054],[123,-36,73,-0.08249626416176416],[123,-36,74,-0.10822545787873279],[123,-36,75,-0.160283161383938],[123,-36,76,-0.1742824298188229],[123,-36,77,-0.1609594088916876],[123,-36,78,-0.14401310378305415],[123,-36,79,-0.1471681163941961],[123,-35,64,-0.2553965412166089],[123,-35,65,-0.20996361115974832],[123,-35,66,-0.1974740163744532],[123,-35,67,-0.16627171920374395],[123,-35,68,-0.1153077542677962],[123,-35,69,-0.09405553719044694],[123,-35,70,-0.10818655875744809],[123,-35,71,-0.09149002388847478],[123,-35,72,-0.06597715371828633],[123,-35,73,-0.08228971437694312],[123,-35,74,-0.10805243664988418],[123,-35,75,-0.15891694190719052],[123,-35,76,-0.17194052347957017],[123,-35,77,-0.15860002648437915],[123,-35,78,-0.14223859180516268],[123,-35,79,-0.14570523806779143],[123,-34,64,-0.2524476212239996],[123,-34,65,-0.20792376419328792],[123,-34,66,-0.19502511105719786],[123,-34,67,-0.16415379484650863],[123,-34,68,-0.11350764809278273],[123,-34,69,-0.0919642753518749],[123,-34,70,-0.10636862629579617],[123,-34,71,-0.09101098048805793],[123,-34,72,-0.06598643310907429],[123,-34,73,-0.0820834804317453],[123,-34,74,-0.10787465397852536],[123,-34,75,-0.15757045244885298],[123,-34,76,-0.16964385435985183],[123,-34,77,-0.15629232098512],[123,-34,78,-0.14050613176407958],[123,-34,79,-0.14427554785890676],[123,-33,64,-0.2495253796577733],[123,-33,65,-0.2058952750731687],[123,-33,66,-0.19259917845603466],[123,-33,67,-0.16205675042634235],[123,-33,68,-0.11174014253492313],[123,-33,69,-0.08993199641233675],[123,-33,70,-0.10460297358492268],[123,-33,71,-0.09054449318125248],[123,-33,72,-0.06599576761663715],[123,-33,73,-0.08187773178157592],[123,-33,74,-0.10769261221293783],[123,-33,75,-0.15624425225977703],[123,-33,76,-0.16739277071337713],[123,-33,77,-0.1540362860933716],[123,-33,78,-0.13881548362136648],[123,-33,79,-0.14287890946831752],[123,-32,64,-0.24663108397182928],[123,-32,65,-0.20387935742012162],[123,-32,66,-0.19019724418182724],[123,-32,67,-0.159981363793051],[123,-32,68,-0.11000516876451985],[123,-32,69,-0.087957683318608],[123,-32,70,-0.1028886901457397],[123,-32,71,-0.09009034328483255],[123,-32,72,-0.06600506421164201],[123,-32,73,-0.08167266554424282],[123,-32,74,-0.10750684391740754],[123,-32,75,-0.15493890184596615],[123,-32,76,-0.1651875888900668],[123,-32,77,-0.15183188776412285],[123,-32,78,-0.13716641164623447],[123,-32,79,-0.14151520827857025],[123,-31,64,-0.24376597410432763],[123,-31,65,-0.20187721192835426],[123,-31,66,-0.18782030756804322],[123,-31,67,-0.1579283965689307],[123,-31,68,-0.10830265607398805],[123,-31,69,-0.0860403207409241],[123,-31,70,-0.10122487920444566],[123,-31,71,-0.0896483489365076],[123,-31,72,-0.06601426912496416],[123,-31,73,-0.08146850503408666],[123,-31,74,-0.1073179098797932],[123,-31,75,-0.15365496226890615],[123,-31,76,-0.16302859465153488],[123,-31,77,-0.14967906587519123],[123,-31,78,-0.1355586847403133],[123,-31,79,-0.14018435054491182],[123,-30,64,-0.24093126130112322],[123,-30,65,-0.19989002474460318],[123,-30,66,-0.18546934065416987],[123,-30,67,-0.15589859295307876],[123,-30,68,-0.1066325315784502],[123,-30,69,-0.08417889646621689],[123,-30,70,-0.0996106585627649],[123,-30,71,-0.0892183638213098],[123,-30,72,-0.06602336618283067],[123,-30,73,-0.08126549830552293],[123,-30,74,-0.10712639715183324],[123,-30,75,-0.15239299449244392],[123,-30,76,-0.16091604451854952],[123,-30,77,-0.14757773589690207],[123,-30,78,-0.13399207675469774],[123,-30,79,-0.13888626259766618],[123,-29,64,-0.23812812706841574],[123,-29,65,-0.19791896596297243],[123,-29,66,-0.1831452872945451],[123,-29,67,-0.1538926786424074],[123,-29,68,-0.10499471996328485],[123,-29,69,-0.08237240275211205],[123,-29,70,-0.09804516141928907],[123,-29,71,-0.08880027588568612],[123,-29,72,-0.06603237513390632],[123,-29,73,-0.0810639167118924],[123,-29,74,-0.10693291712980538],[123,-29,75,-0.15115355877990458],[123,-29,76,-0.1588501671478475],[123,-29,77,-0.14552779056120746],[123,-29,78,-0.13246636680158272],[123,-29,79,-0.137620890062236],[123,-28,64,-0.2353577222553019],[123,-28,65,-0.19596518823792994],[123,-28,66,-0.1808490623923396],[123,-28,67,-0.151911359869832],[123,-28,68,-0.1033891432789516],[123,-28,69,-0.0806198376404327],[123,-28,70,-0.09652753714346798],[123,-28,71,-0.08839400604597517],[123,-28,72,-0.06604134997544915],[123,-28,73,-0.08086405348526624],[123,-28,74,-0.10673810368271149],[123,-28,75,-0.14993721414486005],[123,-28,76,-0.1568311647358431],[123,-28,77,-0.14352910152758516],[123,-28,78,-0.13098133956276342],[123,-28,79,-0.13638819710251887],[123,-27,64,-0.23262116626645848],[123,-27,65,-0.19402982551730916],[123,-27,66,-0.17858155125797548],[123,-27,67,-0.14995532255962854],[123,-27,68,-0.10181572078322913],[123,-27,69,-0.07892020622922255],[123,-27,70,-0.09505695200393441],[123,-27,71,-0.08799950689761925],[123,-27,72,-0.06605037728527692],[123,-27,73,-0.08066622234247645],[123,-27,74,-0.10654261133458787],[123,-27,75,-0.14874451785856735],[123,-27,76,-0.15485921444684533],[123,-27,77,-0.14158152104327007],[123,-27,78,-0.12953678559716722],[123,-27,79,-0.1351881656930705],[123,-26,64,-0.22991954640460113],[123,-26,65,-0.1921139918965338],[123,-26,66,-0.17634360909072225],[123,-26,67,-0.14802523159939343],[123,-26,68,-0.10027436883071295],[123,-26,69,-0.07727252190243923],[123,-26,70,-0.09363258985283611],[123,-26,71,-0.08761676143098879],[123,-26,72,-0.06605957456575098],[123,-26,73,-0.08047075612212795],[123,-26,74,-0.10634711350683919],[123,-26,75,-0.14757602501658315],[123,-26,76,-0.15293446986334566],[123,-26,77,-0.13968488359543293],[123,-26,78,-0.12813250164933498],[123,-26,79,-0.1340207949247577],[123,-25,64,-0.22725391734215655],[123,-25,65,-0.19021878059500386],[123,-25,66,-0.17413606058202188],[123,-25,67,-0.14612173022781266],[123,-25,68,-0.09876500080944316],[123,-25,69,-0.07567580751687489],[123,-25,70,-0.09225365276811617],[123,-25,71,-0.08724578175951024],[123,-25,72,-0.06606908860572694],[123,-25,73,-0.08027800545709864],[123,-25,74,-0.10615230082607459],[123,-25,75,-0.14643228816681836],[123,-25,76,-0.1510570624561284],[123,-25,77,-0.13783900755321635],[123,-25,78,-0.12676829096074502],[123,-25,79,-0.13288610034830708],[123,-24,64,-0.22462530072114667],[123,-24,65,-0.18834526305508933],[123,-24,66,-0.1719596996386922],[123,-24,67,-0.14424543953703267],[123,-24,68,-0.0972875271243657],[123,-24,69,-0.07412909654609817],[123,-24,70,-0.09091936165576497],[123,-24,71,-0.08688660786542161],[123,-24,72,-0.06607909386600419],[123,-24,73,-0.08008833748665471],[123,-24,74,-0.10595887950235837],[123,-24,75,-0.14531385700093186],[123,-24,76,-0.14922710307205084],[123,-24,77,-0.1360436967977417],[123,-24,78,-0.12544396358576815],[123,-24,79,-0.13178411335971787],[123,-23,64,-0.22203468487983916],[123,-23,65,-0.18649448816366693],[123,-23,66,-0.16981528922375755],[123,-23,67,-0.14239695808799488],[123,-23,68,-0.09584185522711425],[123,-23,69,-0.0726314341813253],[123,-23,70,-0.08962895681404129],[123,-23,71,-0.08653930636802805],[123,-23,72,-0.06608979089328829],[123,-23,73,-0.07990213461181035],[123,-23,74,-0.10576756978214254],[123,-23,75,-0.14422127811050947],[123,-23,76,-0.1474446834373034],[123,-23,77,-0.13429874233824837],[123,-23,78,-0.1241593367137826],[123,-23,79,-0.13071488063097278],[123,-22,64,-0.2194830247044925],[123,-22,65,-0.18466748159584526],[123,-22,66,-0.167703561312468],[123,-22,67,-0.14057686163688865],[123,-22,68,-0.09442788969160137],[123,-22,69,-0.07118187838948198],[123,-22,70,-0.088381698461858],[123,-22,71,-0.0862039693191019],[123,-22,72,-0.06610140476739795],[123,-22,73,-0.07971979329731727],[123,-22,74,-0.10557910447974282],[123,-22,75,-0.1431550948092687],[123,-22,76,-0.14570987767417737],[123,-22,77,-0.13260392391283085],[123,-22,78,-0.12291423499898485],[123,-22,79,-0.1296784635891872],[123,-21,64,-0.21697124160421552],[123,-21,65,-0.18286524528015036],[123,-21,66,-0.16562521696080637],[123,-21,67,-0.13878570297059195],[123,-21,68,-0.09304553233481501],[123,-21,69,-0.0697795009289249],[123,-21,70,-0.08717686723358865],[123,-21,71,-0.08588071302972725],[123,-21,72,-0.06611418358605098],[123,-21,73,-0.07954172292330812],[123,-21,74,-0.10539422759070972],[123,-21,75,-0.14211584702221536],[123,-21,76,-0.14402274382946773],[123,-21,77,-0.13095901157241766],[123,-21,78,-0.12170849089931131],[123,-21,79,-0.12867493794695367],[123,-20,64,-0.2145002236065555],[123,-20,65,-0.18108875698397442],[123,-20,66,-0.1635809264834317],[123,-20,67,-0.13702401184860158],[123,-20,68,-0.09169468238201241],[123,-20,69,-0.06842338832337116],[123,-20,70,-0.08601376464248549],[123,-20,71,-0.0855696769324309],[123,-20,72,-0.06612839699104707],[123,-20,73,-0.07936834468914415],[123,-20,74,-0.10521369298984952],[123,-20,75,-0.14110407124228494],[123,-20,76,-0.14238332541262258],[123,-20,77,-0.12936376724667467],[123,-20,78,-0.12054194502565119],[123,-20,79,-0.1277043932861526],[123,-19,64,-0.2120708255712805],[123,-19,65,-0.17933897001787247],[123,-19,66,-0.16157132973790828],[123,-19,67,-0.13529229504882884],[123,-19,68,-0.09037523667554179],[123,-19,69,-0.06711264279489719],[123,-19,70,-0.08489171351505902],[123,-19,71,-0.0852710224822241],[123,-19,72,-0.06614433473940574],[123,-19,73,-0.07920009057180549],[123,-19,74,-0.10503826321629424],[123,-19,75,-0.14012030055484437],[123,-19,76,-0.14079165294199045],[123,-19,77,-0.12781794629083262],[123,-19,78,-0.11941444650255799],[123,-19,79,-0.126766932697284],[123,-18,64,-0.20968386951960663],[123,-18,65,-0.1776168130570119],[123,-18,66,-0.1595970365119039],[123,-18,67,-0.13359103651445745],[123,-18,68,-0.08908708992647342],[123,-18,69,-0.06584638315704092],[123,-18,70,-0.08381005839880253],[123,-18,71,-0.08498493209984909],[123,-18,72,-0.06616230532263091],[123,-18,73,-0.07903740234081973],[123,-18,74,-0.10486870834757538],[123,-18,75,-0.13916506473017937],[123,-18,76,-0.13924774549761054],[123,-18,77,-0.12632129901256162],[123,-18,78,-0.11832585334153685],[123,-18,79,-0.12586267247602673],[123,-17,64,-0.20734014507576132],[123,-17,65,-0.17592319007765778],[123,-17,66,-0.15765862700975125],[123,-17,67,-0.13192069759874933],[123,-17,68,-0.08783013500803838],[123,-17,69,-0.06462374566908606],[123,-17,70,-0.08276816594554534],[123,-17,71,-0.08471160816008819],[123,-17,72,-0.06618263463679418],[123,-17,73,-0.07888073063130219],[123,-17,74,-0.10470580496411946],[123,-17,75,-0.13823889038375722],[123,-17,76,-0.13775161227901483],[123,-17,77,-0.12487357217809235],[123,-17,78,-0.11727603282780145],[123,-17,79,-0.1249917418783446],[123,-16,64,-0.2050404100177227],[123,-16,65,-0.174258980406454],[123,-16,66,-0.15575665243475947],[123,-16,67,-0.13028171740466182],[123,-16,68,-0.08660426328995625],[123,-16,69,-0.06344388485287897],[123,-16,70,-0.08176542527285131],[123,-16,71,-0.08445127202779126],[123,-16,72,-0.06620566470588732],[123,-16,73,-0.07873053407649143],[123,-16,74,-0.10455033520529512],[123,-16,75,-0.13734230120395774],[123,-16,76,-0.13630325416673525],[123,-16,77,-0.12347451049704643],[123,-16,78,-0.11626486192141096],[123,-16,79,-0.12415428293528032],[123,-15,64,-0.20278539093383025],[123,-15,65,-0.1726250388800551],[123,-15,66,-0.15389163566358113],[123,-15,67,-0.1286745132160361],[123,-15,68,-0.08540936501271235],[123,-15,69,-0.06230597427366929],[123,-15,70,-0.08080124830588233],[123,-15,71,-0.08420416314398009],[123,-15,72,-0.06623175246054577],[123,-15,73,-0.07858727850086795],[123,-15,74,-0.10440308591776518],[123,-15,75,-0.1364758182467733],[123,-15,76,-0.1349026652863262],[123,-15,77,-0.12212385808556445],[123,-15,78,-0.11529222767359697],[123,-15,79,-0.12335045032831161],[123,-14,64,-0.20057578398167633],[123,-14,65,-0.17102219611230807],[123,-14,66,-0.15206407200871097],[123,-14,67,-0.12709948101687932],[123,-14,68,-0.0842453297006943],[123,-14,69,-0.06120920728647802],[123,-14,70,-0.07987507010203015],[123,-14,71,-0.08397053816397583],[123,-14,72,-0.0662612685738051],[123,-14,73,-0.07845143617457273],[123,-14,74,-0.10426484789643968],[123,-14,75,-0.135639960296716],[123,-14,76,-0.13354983457374953],[123,-14,77,-0.12082135990739776],[123,-14,78,-0.11435802765894106],[123,-14,79,-0.12258041132583251],[123,-13,64,-0.19841221068284118],[123,-13,65,-0.16945122323654685],[123,-13,66,-0.15027437918719372],[123,-13,67,-0.12555694744208243],[123,-13,68,-0.08311201659266479],[123,-13,69,-0.06015277007623278],[123,-13,70,-0.07898631196870987],[123,-13,71,-0.083750666283764],[123,-13,72,-0.06629463591580666],[123,-13,73,-0.07832352038176843],[123,-13,74,-0.10413640536938427],[123,-13,75,-0.13483518927512098],[123,-13,76,-0.13224467797482528],[123,-13,77,-0.11956671730956062],[123,-13,78,-0.11346216718584023],[123,-13,79,-0.12184434171286326],[123,-12,64,-0.1962949165625253],[123,-12,65,-0.1679125931170122],[123,-12,66,-0.14852256385614415],[123,-12,67,-0.12404685065954606],[123,-12,68,-0.08200905660430742],[123,-12,69,-0.05913566010416747],[123,-12,70,-0.07813413683921035],[123,-12,71,-0.08354479870875171],[123,-12,72,-0.06633258216990065],[123,-12,73,-0.07820430934073411],[123,-12,74,-0.10401846518936451],[123,-12,75,-0.1340615473389353],[123,-12,76,-0.13098658655079198],[123,-12,77,-0.11835929007844935],[123,-12,78,-0.1126045346103705],[123,-12,79,-0.12114239219138438],[123,-11,64,-0.19422396012360432],[123,-11,65,-0.16640662885547702],[123,-11,66,-0.14680845170610893],[123,-11,67,-0.12256896009575494],[123,-11,68,-0.08093598493676346],[123,-11,69,-0.058156810397191006],[123,-11,70,-0.07731761580475785],[123,-11,71,-0.08335317454424804],[123,-11,72,-0.06637594497101072],[123,-11,73,-0.0780946691776948],[123,-11,74,-0.10391168705001141],[123,-11,75,-0.1333189006605457],[123,-11,76,-0.12977474626728142],[123,-11,77,-0.11719830975308751],[123,-11,78,-0.11178500671665864],[123,-11,79,-0.12047468958045915],[123,-10,64,-0.19219937573981377],[123,-10,65,-0.16493363209534306],[123,-10,66,-0.1451318729179427],[123,-10,67,-0.12112305351797552],[123,-10,68,-0.07989234983378624],[123,-10,69,-0.05721519011839376],[123,-10,70,-0.07653586293488647],[123,-10,71,-0.08317603268146917],[123,-10,72,-0.06642552535352662],[123,-10,73,-0.07799542313986736],[123,-10,74,-0.10381671684874624],[123,-10,75,-0.13260713863720705],[123,-10,76,-0.1286083913755748],[123,-10,77,-0.11608304761877145],[123,-10,78,-0.1110034593673678],[123,-10,79,-0.11984134910437728],[123,-9,64,-0.19022117576384187],[123,-9,65,-0.16349388436859416],[123,-9,66,-0.14349266175313857],[123,-9,67,-0.11970891640234858],[123,-9,68,-0.07887771241522101],[123,-9,69,-0.05630980419577709],[123,-9,70,-0.07578803446516374],[123,-9,71,-0.08301361231771001],[123,-9,72,-0.06648208976140535],[123,-9,73,-0.0779073541200485],[123,-9,74,-0.1037341875420513],[123,-9,75,-0.13192617318934208],[123,-9,76,-0.1274868027661892],[123,-9,77,-0.11501281361349386],[123,-9,78,-0.11025976871604794],[123,-9,79,-0.11924247612890074],[123,-8,64,-0.1882893516709526],[123,-8,65,-0.1620876477169898],[123,-8,66,-0.14189065525095726],[123,-8,67,-0.11832634045693306],[123,-8,68,-0.0778916459645226],[123,-8,69,-0.055439692417091825],[123,-8,70,-0.0750733272715974],[123,-8,71,-0.08286615334780618],[123,-8,72,-0.0665463727122512],[123,-8,73,-0.07783120772985351],[123,-8,74,-0.10366471975843898],[123,-8,75,-0.13127593703924098],[123,-8,76,-0.1264093051035103],[123,-8,77,-0.11398695443658827],[123,-8,78,-0.10955381228825521],[123,-8,79,-0.11867816770477796],[123,-7,64,-0.18640387514739876],[123,-7,65,-0.1607151653041081],[123,-7,66,-0.1403256920602305],[123,-7,67,-0.11697512228236336],[123,-7,68,-0.0769337352754635],[123,-7,69,-0.054603928551855446],[123,-7,70,-0.07439097738763724],[123,-7,71,-0.08273389670271304],[123,-7,72,-0.06661907930673977],[123,-7,73,-0.07776769519955494],[123,-7,74,-0.10360892236400936],[123,-7,75,-0.13065638208375013],[123,-7,76,-0.12537526414777383],[123,-7,77,-0.11300485178951825],[123,-7,78,-0.10888546999327005],[123,-7,79,-0.11814851399530361],[123,-6,64,-0.18456469912681644],[123,-6,65,-0.15937666201888204],[123,-6,66,-0.1387976113986763],[123,-6,67,-0.11565506216305362],[123,-6,68,-0.07600357605466966],[123,-6,69,-0.05380161949933589],[123,-6,70,-0.0737402585637692],[123,-6,71,-0.08261708463988429],[123,-6,72,-0.0667008875907488],[123,-6,73,-0.07771749611223933],[123,-6,74,-0.1035673929845383],[123,-6,75,-0.1300674778580928],[123,-6,76,-0.1243840842551384],[123,-6,77,-0.11206592074141944],[123,-6,78,-0.10825462506913483],[123,-6,79,-0.11765359959388642],[123,-5,64,-0.18277175877754226],[123,-5,65,-0.1580723450711032],[123,-5,66,-0.1373062521326267],[123,-5,67,-0.11436596298195695],[123,-5,68,-0.07510077437671081],[123,-5,69,-0.053031904461378336],[123,-5,70,-0.07312048086957988],[123,-5,71,-0.0825159609898211],[123,-5,72,-0.06679245077734187],[123,-5,73,-0.07768126097979616],[123,-5,74,-0.10354071848768563],[123,-5,75,-0.12950921008774177],[123,-5,76,-0.12343520604670519],[123,-5,77,-0.11116960821216446],[123,-5,78,-0.10766116496361612],[123,-5,79,-0.11719350473727641],[123,-4,64,-0.18102497244342058],[123,-4,65,-0.15680240457908814],[123,-4,66,-0.13585145197004464],[123,-4,67,-0.11310762925186739],[123,-4,68,-0.07422494618846372],[123,-4,69,-0.0522939541389427],[123,-4,70,-0.07253098933796459],[123,-4,71,-0.0824307713627606],[123,-4,72,-0.06689439933543924],[123,-4,73,-0.07765961366795161],[123,-4,74,-0.10352947542847558],[123,-4,75,-0.12898157932498505],[123,-4,76,-0.12252810423742218],[123,-4,77,-0.11031539156585267],[123,-4,78,-0.10710498215353491],[123,-4,79,-0.11676830641973346],[123,-3,64,-0.179324242540555],[123,-3,65,-0.15556701414967533],[123,-3,66,-0.13443304675993162],[123,-3,67,-0.11187986625647862],[123,-3,68,-0.07337571685966932],[123,-3,69,-0.051586969951394765],[123,-3,70,-0.07197116265114266],[123,-3,71,-0.08236176331926745],[123,-3,72,-0.06700734295186336],[123,-3,73,-0.07765315367741779],[123,-3,74,-0.10353423046096923],[123,-3,75,-0.1284845996667546],[123,-3,76,-0.12166228561605637],[123,-3,77,-0.10950277730789106],[123,-3,78,-0.10658597490486184],[123,-3,79,-0.11637807941319912],[123,-2,64,-0.1776694564121959],[123,-2,65,-0.15436633145054937],[123,-2,66,-0.13305086989132625],[123,-2,67,-0.11068247929452193],[123,-2,68,-0.07255272077669386],[123,-2,69,-0.050910183277658526],[123,-2,70,-0.07144041186803352],[123,-2,71,-0.0823091865081839],[123,-2,72,-0.06713187237318717],[123,-2,73,-0.07766245828797733],[123,-2,74,-0.10355554071871326],[123,-2,75,-0.12801829755013877],[123,-2,76,-0.12083728716761447],[123,-2,77,-0.10873129987904784],[123,-2,78,-0.10610404797587343],[123,-2,79,-0.11602289719823537],[123,-1,64,-0.17606048714365624],[123,-1,65,-0.15320049877468106],[123,-1,66,-0.1317047517851642],[123,-1,67,-0.109515273020382],[123,-1,68,-0.07175560097653277],[123,-1,69,-0.05026285471833144],[123,-1,70,-0.07093817919238006],[123,-1,71,-0.08227329277503001],[123,-1,72,-0.0672685611334864],[123,-1,73,-0.07768808457199743],[123,-1,74,-0.10359395416618128],[123,-1,75,-0.1275827106218233],[123,-1,76,-0.12005267432973243],[123,-1,77,-0.10800052054001476],[123,-1,78,-0.10565911326548331],[123,-1,79,-0.11570283281014829],[123,0,64,-0.174497194339035],[123,0,65,-0.15206964359664996],[123,0,66,-0.13039451947252179],[123,0,67,-0.10837805087484227],[123,0,68,-0.07098400881829663],[123,0,69,-0.04964427337801199],[123,0,70,-0.07046393678099983],[123,0,71,-0.08225433624374956],[123,0,72,-0.06741796717391156],[123,0,73,-0.07773057128368849],[123,0,74,-0.10365000992321297],[123,0,75,-0.12717788667769356],[123,0,76,-0.11930803937485569],[123,0,77,-0.10731002634029471],[123,0,78,-0.10525109040881453],[123,0,79,-0.11541795960449695],[123,1,64,-0.17297942486131737],[123,1,65,-0.15097387912049032],[123,1,66,-0.12911999625293064],[123,1,67,-0.10727061459978543],[123,1,68,-0.07023760368952527],[123,1,69,-0.04905375616715037],[123,1,70,-0.07001718559146876],[123,1,71,-0.0822525733744225],[123,1,72,-0.06758063435973134],[123,1,73,-0.07779044063015803],[123,1,74,-0.10372423856418339],[123,1,75,-0.12680388266877554],[123,1,76,-0.11860299991028399],[123,1,77,-0.1066594291654889],[123,1,78,-0.10487990732198728],[123,1,79,-0.11516835194593572],[123,2,64,-0.1715070135371661],[123,2,65,-0.14991330481854184],[123,2,66,-0.1278810014265689],[123,2,67,-0.10619276383079897],[123,2,68,-0.06951605274472261],[123,2,69,-0.04849064712271399],[123,2,70,-0.06959745426839214],[123,2,71,-0.08226826299923325],[123,2,72,-0.06775709390015779],[123,2,73,-0.07786819992996925],[123,2,74,-0.10381716239331278],[123,2,75,-0.1264607637695856],[123,2,76,-0.11793719748833252],[123,2,77,-0.10604836485719692],[123,2,78,-0.10454550069789928],[123,2,79,-0.1149540858239975],[123,3,64,-0.17007978382762373],[123,3,65,-0.14888800696077562],[123,3,66,-0.12667735009441553],[123,3,67,-0.1051442957619187],[123,3,68,-0.06881903067370157],[123,3,69,-0.04795431674709375],[123,3,70,-0.06920429806743456],[123,3,71,-0.0823016663388168],[123,3,72,-0.06794786567607046],[123,3,73,-0.07796434316472331],[123,3,74,-0.10392929569736516],[123,3,75,-0.12614860250501622],[123,3,76,-0.11731029631920395],[123,3,77,-0.10547649240006712],[123,3,78,-0.10424781645475267],[123,3,79,-0.11477523939926197],[123,4,64,-0.16869754846579246],[123,4,65,-0.14789805913399373],[123,4,66,-0.12550885302066245],[123,4,67,-0.10412500487696066],[123,4,68,-0.06814621949745028],[123,4,69,-0.047444161364725325],[123,4,70,-0.06883729781622476],[123,4,71,-0.0823530470008642],[123,4,72,-0.0681534594804927],[123,4,73,-0.07807935242891473],[123,4,74,-0.10406114497676232],[123,4,75,-0.1258674779318981],[123,4,76,-0.11672198207944448],[123,4,77,-0.1049434931707716],[123,4,78,-0.10398681013897816],[123,4,79,-0.11463189348311281],[123,5,64,-0.16736011006233745],[123,5,65,-0.14694352275017356],[123,5,66,-0.1243753165518354],[123,5,67,-0.10313468274204882],[123,5,68,-0.06749730838928272],[123,5,69,-0.04695960249587642],[123,5,70,-0.06849605891112791],[123,5,71,-0.08242267096258166],[123,5,72,-0.0683743761763357],[123,5,73,-0.07821369928297348],[123,5,74,-0.10421320915587741],[123,5,75,-0.12561747487133407],[123,5,76,-0.11617196080906277],[123,5,77,-0.10444907024383814],[123,5,78,-0.10376244728402605],[123,5,79,-0.1145241319539999],[123,6,64,-0.16606726167960853],[123,6,65,-0.14602444754324556],[123,6,66,-0.12327654258737138],[123,6,67,-0.10217311785425154],[123,6,68,-0.06687199351923556],[123,6,69,-0.04650008624717037],[123,6,70,-0.06818021034891525],[123,6,71,-0.08251080653845713],[123,6,72,-0.06861110877574242],[123,6,73,-0.07836784601421903],[123,6,74,-0.10438597977315599],[123,6,75,-0.12539868318802314],[123,6,76,-0.11565995789075921],[123,6,77,-0.10399294774960012],[123,6,78,-0.10357470372648854],[123,6,79,-0.11445204211299087],[123,7,64,-0.16481878737506234],[123,7,65,-0.14514087205356796],[123,7,66,-0.12221232859664528],[123,7,67,-0.1012400955414842],[123,7,68,-0.06626997791979881],[123,7,69,-0.04606508271845619],[123,7,70,-0.06788940379232337],[123,7,71,-0.08261772433459612],[123,7,72,-0.06886414344510383],[123,7,73,-0.07854224681019045],[123,7,74,-0.104579941151548],[123,7,75,-0.12521119711285125],[123,7,76,-0.1151857171049918],[123,7,77,-0.10357487027973639],[123,7,78,-0.10342356588090265],[123,7,79,-0.11441571498119095],[123,8,64,-0.1636144627144911],[123,8,65,-0.14429282409925434],[123,8,66,-0.12118246767760282],[123,8,67,-0.10033539790901014],[123,8,68,-0.06569097137112313],[123,8,69,-0.04565408542560551],[123,8,70,-0.06762331266840242],[123,8,71,-0.08274369719063744],[123,8,72,-0.06913396043950616],[123,8,73,-0.07873734884849687],[123,8,74,-0.10479557054952744],[123,8,75,-0.12505511460504865],[123,8,76,-0.11474899975484398],[123,8,77,-0.10319460233606079],[123,8,78,-0.10330903097444603],[123,8,79,-0.1144152455413784],[123,9,64,-0.16245405525554715],[123,9,65,-0.1434803212335736],[123,9,66,-0.12018674865248026],[123,9,67,-0.09945880382819251],[123,9,68,-0.06513469030404347],[123,9,69,-0.04526661073892758],[123,9,70,-0.06738163129860515],[123,9,71,-0.08288900011016294],[123,9,72,-0.06942103497019374],[123,9,73,-0.0789535933071562],[123,9,74,-0.10503333829290784],[123,9,75,-0.12493053675037108],[123,9,76,-0.11434958385501702],[123,9,77,-0.10285192781851119],[123,9,78,-0.10323110724272233],[123,9,79,-0.11445073292609904],[123,10,64,-0.16133732500199352],[123,10,65,-0.14270337118764317],[123,10,66,-0.11922495619634092],[123,10,67,-0.0986100889634064],[123,10,68,-0.06460085771938529],[123,10,69,-0.04490219733692225],[123,10,70,-0.0671640740595547],[123,10,71,-0.08305391018036351],[123,10,72,-0.06972583800839605],[123,10,73,-0.0791914162991491],[123,10,74,-0.10529370788755918],[123,10,75,-0.12483756719188177],[123,10,76,-0.11398726337956136],[123,10,77,-0.1025466495485068],[123,10,78,-0.10318981408774354],[123,10,79,-0.11452228055431135],[123,11,64,-0.16026402482896104],[123,11,65,-0.14196197229755855],[123,11,66,-0.11829687099433756],[123,11,67,-0.09778902583320309],[123,11,68,-0.0640892031220737],[123,11,69,-0.044560405675064425],[123,11,70,-0.06697037457336041],[123,11,71,-0.08323870648151374],[123,11,72,-0.07004883702857821],[123,11,73,-0.07945124973462052],[123,11,74,-0.10557713611296618],[123,11,75,-0.12477631158996577],[123,11,76,-0.11366184756320233],[123,11,77,-0.10227858882402102],[123,11,78,-0.10318518219910384],[123,11,79,-0.114629996218485],[123,12,64,-0.1592339008795365],[123,12,65,-0.14125611391521042],[123,12,66,-0.1174022699239413],[123,12,67,-0.09699538390214743],[123,12,68,-0.06359946246876316],[123,12,69,-0.044240817469409],[123,12,70,-0.06680028492642232],[123,12,71,-0.08344366998675995],[123,12,72,-0.07039049669402331],[123,12,73,-0.0797335221140072],[123,12,74,-0.10588407309656574],[123,12,75,-0.12474687710841859],[123,12,76,-0.11337316025146477],[123,12,77,-0.10204758500298101],[123,12,78,-0.10321725363932405],[123,12,79,-0.11477399212399529],[123,13,64,-0.15824669293295568],[123,13,65,-0.14058577680204337],[123,13,66,-0.11654092625861749],[123,13,67,-0.09622892969999822],[123,13,68,-0.06313137812781888],[123,13,69,-0.04394303519483291],[123,13,70,-0.06665357491566859],[123,13,71,-0.08366908345260181],[123,13,72,-0.07075127948744175],[123,13,73,-0.08003865925514815],[123,13,74,-0.10621496236873143],[123,13,75,-0.12474937192359101],[123,13,76,-0.11312103929509183],[123,13,77,-0.10185349511182731],[123,13,78,-0.10328608189429328],[123,13,79,-0.11495438488254862],[123,14,64,-0.15730213474459923],[123,14,65,-0.13995093350499718],[123,14,66,-0.11571260988962684],[123,14,67,-0.09548942696509428],[123,14,68,-0.06268469885054453],[123,14,69,-0.043666681597702185],[123,14,70,-0.0665300313211311],[123,14,71,-0.08391523130030039],[123,14,72,-0.07113164628904894],[123,14,73,-0.08036708495718002],[123,14,74,-0.10657024089817493],[123,14,75,-0.12478390475368233],[123,14,76,-0.11290533598448761],[123,14,77,-0.101696193476219],[123,14,78,-0.1033917318896317],[123,14,79,-0.11517129546123854],[123,15,64,-0.1563999543580594],[123,15,65,-0.1393515487139906],[123,15,66,-0.11491708756295899],[123,15,67,-0.0947766368091419],[123,15,68,-0.062259179752747404],[123,15,69,-0.043411399222854405],[123,15,70,-0.06642945720386059],[123,15,71,-0.0841823994884355],[123,15,72,-0.07153205690443906],[123,15,73,-0.08071922160389744],[123,15,74,-0.10695033910758209],[123,15,75,-0.12485058440551167],[123,15,76,-0.11272591452026048],[123,15,77,-0.10157557137113662],[123,15,78,-0.10353427997381666],[123,15,79,-0.11542484908881948],[123,16,64,-0.15553987438948316],[123,16,65,-0.13878757960029472],[123,16,66,-0.11415412312858944],[123,16,67,-0.09409031790078418],[123,16,68,-0.06185458230578711],[123,16,69,-0.043176849954758796],[123,16,70,-0.06635167122815647],[123,16,71,-0.08447087537670549],[123,16,72,-0.0719529705443478],[123,16,73,-0.08109549070902008],[123,16,74,-0.10735568086922694],[123,16,75,-0.12494951933622495],[123,16,76,-0.11258265151618084],[123,16,77,-0.10149153668779265],[123,16,78,-0.10371381386883706],[123,16,79,-0.11571517512068251],[123,17,64,-0.15472161228448228],[123,17,65,-0.1382589761352759],[123,17,66,-0.11342347779955989],[123,17,67,-0.0934302266656407],[123,17,68,-0.061470674336429325],[123,17,69,-0.042962714572798266],[123,17,70,-0.06629650700717712],[123,17,71,-0.08478094758107081],[123,17,72,-0.07239484625829125],[123,17,73,-0.08149631340570097],[123,17,74,-0.1077866834803757],[123,17,75,-0.12508081722763573],[123,17,76,-0.11247543553118244],[123,17,77,-0.1014440136149923],[123,17,78,-0.10393043258915857],[123,17,79,-0.11604240686402556],[123,18,64,-0.1539448805478378],[123,18,65,-0.13776568138896686],[123,18,66,-0.11272491041855497],[123,18,67,-0.09279611750067573],[123,18,68,-0.06110723003486933],[123,18,69,-0.042768692320578755],[123,18,70,-0.06626381247097396],[123,18,71,-0.08511290582022003],[123,18,72,-0.07285814332383457],[123,18,73,-0.08192211088236352],[123,18,74,-0.10824375761822722],[123,18,75,-0.125244584571026],[123,18,76,-0.11240416662725407],[123,18,77,-0.10143294233271931],[123,18,78,-0.10418424632969696],[123,18,79,-0.11640668136461246],[123,19,64,-0.1532093869463423],[123,19,65,-0.13730763180807576],[123,19,66,-0.11205817772993383],[123,19,67,-0.09218774300104478],[123,19,68,-0.06076402997045339],[123,19,69,-0.042594500489252146],[123,19,70,-0.06625344925609286],[123,19,71,-0.08546704075337871],[123,19,72,-0.07334332159317458],[123,19,73,-0.08237330476689225],[123,19,74,-0.10872730727424008],[123,19,75,-0.12544092626049078],[123,19,76,-0.11236875595037597],[123,19,77,-0.1014582787159551],[123,19,78,-0.10447537632354628],[123,19,79,-0.11680813915656955],[123,20,64,-0.1525148346851534],[123,20,65,-0.1368847574731175],[123,20,66,-0.11142303465542273],[123,20,67,-0.09160485419780519],[123,20,68,-0.06044086111473896],[123,20,69,-0.042439874014867984],[123,20,70,-0.0662652921159451],[123,20,71,-0.0858436438094516],[123,20,72,-0.0738508417985702],[123,20,73,-0.08285031746103945],[123,20,74,-0.10923772966773153],[123,20,75,-0.12566994519312139],[123,20,76,-0.11236912533191895],[123,20,77,-0.10151999404691119],[123,20,78,-0.10480395467019146],[123,20,79,-0.11724692397665479],[123,21,64,-0.15186092255803935],[123,21,65,-0.13649698233438057],[123,21,66,-0.11081923457183555],[123,21,67,-0.09104720080504483],[123,21,68,-0.060137516871582475],[123,21,69,-0.042304565089745436],[123,21,70,-0.0662992283511533],[123,21,71,-0.0862430070074354],[123,21,72,-0.07438116581799252],[123,21,73,-0.08335357242674847],[123,21,74,-0.1097754151386369],[123,21,75,-0.1259317418744744],[123,21,76,-0.11240520690812915],[123,21,77,-0.1016180747339875],[123,21,78,-0.10517012413490068],[123,21,79,-0.11772318244440948],[123,22,64,-0.15124734507202248],[123,22,65,-0.1361442244266068],[123,22,66,-0.11024652958947816],[123,22,67,-0.09051453147525985],[123,22,68,-0.059853797114103366],[123,22,69,-0.042188342787937684],[123,22,70,-0.06635515725920263],[123,22,71,-0.08666542276810381],[123,22,72,-0.07493475690231008],[123,22,73,-0.08388349442603357],[123,22,74,-0.11034074701945384],[123,22,75,-0.12622641402805646],[123,22,76,-0.1124769427556142],[123,22,77,-0.10175252203597594],[123,22,78,-0.10557403792004665],[123,22,79,-0.1182370637096801],[123,23,64,-0.15067379254699445],[123,23,65,-0.13582639606234884],[123,23,66,-0.10970467083009727],[123,23,67,-0.09000659406202073],[123,23,68,-0.05958950822846822],[123,23,69,-0.04209099270488814],[123,23,70,-0.06643298960279062],[123,23,71,-0.087111183716978],[123,23,72,-0.07551207986522271],[123,23,73,-0.08444050971595139],[123,23,74,-0.11093410148646368],[123,23,75,-0.12655405620776777],[123,23,76,-0.11258428454099205],[123,23,77,-0.10192335179019658],[123,23,78,-0.10601585940912758],[123,23,79,-0.11878871906903885],[123,24,64,-0.1501399511909076],[123,24,65,-0.1355434040040263],[123,24,66,-0.10919340870340175],[123,24,67,-0.0895231358891235],[123,24,68,-0.0593444631644866],[123,24,69,-0.042012316611361206],[123,24,70,-0.06653264709630212],[123,24,71,-0.08758058247857803],[123,24,72,-0.07611360123702396],[123,24,73,-0.08502504620006263],[123,24,74,-0.11155584739037291],[123,24,75,-0.12691475941242286],[123,24,76,-0.11272719318304648],[123,24,77,-0.10213059414336145],[123,24,78,-0.10649576188424036],[123,24,79,-0.11937830155264001],[123,25,64,-0.14964550315129685],[123,25,65,-0.13529514961487388],[123,25,66,-0.10871249318143554],[123,25,67,-0.0890639040256711],[123,25,68,-0.05911848149315522],[123,25,69,-0.04195213212180768],[123,25,70,-0.06665406190996231],[123,25,71,-0.08807391146204492],[123,25,72,-0.07673978938324964],[123,25,73,-0.08563753353776123],[123,25,74,-0.1122063460666761],[123,25,75,-0.12730861070175392],[123,25,76,-0.11290563852601228],[123,25,77,-0.10237429328415842],[123,25,78,-0.10701392821783588],[123,25,79,-0.12000596548316524],[123,26,64,-0.14919012654396846],[123,26,65,-0.13508152898906886],[123,26,66,-0.10826167407027369],[123,26,67,-0.08862864556671714],[123,26,68,-0.05891138947137167],[123,26,69,-0.04191027237735653],[123,26,70,-0.06679717619130568],[123,26,71,-0.08859146263826079],[123,26,72,-0.07739111458919982],[123,26,73,-0.08627840321277117],[123,26,74,-0.11288595112614146],[123,26,75,-0.1277356928135171],[123,26,76,-0.11311959902283182],[123,26,77,-0.1026545071766996],[123,26,78,-0.10757055053963371],[123,26,79,-0.12067186600858584],[123,27,64,-0.1487734954597632],[123,27,65,-0.13490243306141617],[123,27,66,-0.10784070127866038],[123,27,67,-0.0882171079192405],[123,27,68,-0.05872302011408269],[123,27,69,-0.04188658574361095],[123,27,70,-0.06696194160364274],[123,27,71,-0.0891335273086209],[123,27,72,-0.07806804911122896],[123,27,73,-0.08694808856202346],[123,27,74,-0.11359500822591366],[123,27,75,-0.12819608378152025],[123,27,76,-0.11336906142739657],[123,27,77,-0.10297130729407056],[123,27,78,-0.1081658298795743],[123,27,79,-0.12137615861051958],[123,28,64,-0.14839527995044527],[123,28,65,-0.13475774769712312],[123,28,66,-0.10744932508342894],[123,28,67,-0.08782903909343827],[123,28,68,-0.058553213274256964],[123,28,69,-0.041880935523503464],[123,28,70,-0.06714831888134425],[123,28,71,-0.08970039586571563],[123,28,72,-0.07877106719569688],[123,28,73,-0.08764702476612013],[123,28,74,-0.11433385482189443],[123,28,75,-0.1286898565546608],[123,28,76,-0.11365402049503662],[123,28,77,-0.10332477835140283],[123,28,78,-0.108799975787789],[123,28,79,-0.12211899859009927],[123,29,64,-0.14805514599489003],[123,29,65,-0.13464735376232667],[123,29,66,-0.10708729639172143],[123,29,67,-0.08746418799948871],[123,29,68,-0.05840181573115503],[123,29,69,-0.04189319968550316],[123,29,70,-0.06735627740186237],[123,29,71,-0.090292357546264],[123,29,72,-0.07950064506644638],[123,29,73,-0.08837564880256546],[123,29,74,-0.11510281990320644],[123,29,75,-0.129217078617297],[123,29,76,-0.11397447869073048],[123,29,77,-0.10371501803803228],[123,29,78,-0.10947320593263785],[123,29,79,-0.12290054053338796],[123,30,64,-0.14775275544681563],[123,30,65,-0.13457112717611683],[123,30,66,-0.10675436700013993],[123,30,67,-0.08712230475004312],[123,30,68,-0.05826868128739226],[123,30,69,-0.04192327060745018],[123,30,70,-0.06758579477445803],[123,30,71,-0.09090970017667502],[123,30,72,-0.08025726088160307],[123,30,73,-0.08913439936287745],[123,30,74,-0.11590222370965153],[123,30,75,-0.1297778116114628],[123,30,76,-0.11433044590464495],[123,30,77,-0.10414213674837662],[123,30,78,-0.11018574567788045],[123,30,79,-0.12372093775843988],[123,31,64,-0.14748776596546773],[123,31,65,-0.1345289389449686],[123,31,66,-0.10645028985116582],[123,31,67,-0.08680314096889724],[123,31,68,-0.05815367087541176],[123,31,69,-0.041971054836379675],[123,31,70,-0.06783685644575496],[123,31,71,-0.0915527099117535],[123,31,72,-0.0810413946605276],[123,31,73,-0.08992371673472425],[123,31,74,-0.1167323774332618],[123,31,75,-0.13037211096170825],[123,31,76,-0.11472193917486034],[123,31,77,-0.10460625731135431],[123,31,78,-0.1109378276401805],[123,31,79,-0.12458034174628556],[123,32,64,-0.14725983093079834],[123,32,65,-0.1345206551806294],[123,32,66,-0.10617481928732718],[123,32,67,-0.08650645010642748],[123,32,68,-0.05805665267404396],[123,32,69,-0.04203647286472537],[123,32,70,-0.06810945532234312],[123,32,71,-0.09222167096716175],[123,32,72,-0.08185352818174664],[123,32,73,-0.09074404265023585],[123,32,74,-0.11759358290521642],[123,32,75,-0.1310000255035789],[123,32,76,-0.11514898241730517],[123,32,77,-0.10510751471827201],[123,32,78,-0.11172969122821304],[123,32,79,-0.1254789015582485],[123,33,64,-0.14706859934475777],[123,33,65,-0.13454613710259025],[123,33,66,-0.10592771130368729],[123,33,67,-0.08623198776245385],[123,33,68,-0.05797750223584805],[123,33,69,-0.042119458923288486],[123,33,70,-0.06840359141071602],[123,33,71,-0.0929168653463108],[123,33,72,-0.08269414485265217],[123,33,73,-0.09159582010159681],[123,33,74,-0.11848613226950212],[123,33,75,-0.13166159711692418],[123,33,76,-0.11561160616305849],[123,33,77,-0.10564605584919223],[123,33,78,-0.11256158216469866],[123,33,79,-0.12641676324209666],[123,34,64,-0.14691371572049866],[123,34,65,-0.1346052410264451],[123,34,66,-0.1057087237994027],[123,34,67,-0.08597951201735614],[123,34,68,-0.057916102626032924],[123,34,69,-0.042219960791438096],[123,34,70,-0.06871927147498287],[123,34,71,-0.09363857256250997],[123,34,72,-0.08356372955181698],[123,34,73,-0.09247949312509789],[123,34,74,-0.11941030764491671],[123,34,75,-0.13235686036549404],[123,34,76,-0.11610984730339063],[123,34,77,-0.10622203919795062],[123,34,78,-0.11343375199282515],[123,34,79,-0.12739406922972427],[123,35,64,-0.1467948199614169],[123,35,65,-0.1346978183395706],[123,35,66,-0.1055176168292103],[123,35,67,-0.08574878377236318],[123,35,68,-0.057872344573796385],[123,35,69,-0.04233793962503611],[123,35,70,-0.06905650871289576],[123,35,71,-0.09438706935731041],[123,35,72,-0.08446276844479603],[123,35,73,-0.09339550655484045],[123,35,74,-0.1203663807771827],[123,35,75,-0.13308584214449348],[123,35,76,-0.11664374884305971],[123,35,77,-0.10683563459608922],[123,35,78,-0.114346457568606],[123,35,79,-0.12841095772920136],[123,36,64,-0.14671154723204072],[123,36,65,-0.13482371546563998],[123,36,66,-0.1053541528557719],[123,36,67,-0.0855395670999899],[123,36,68,-0.05784612663693167],[123,36,69,-0.042473369802580783],[123,36,70,-0.06941532245080552],[123,36,71,-0.09516262941605962],[123,36,72,-0.08539174877427073],[123,36,73,-0.09434430574728478],[123,36,74,-0.12135461268306028],[123,36,75,-0.13384856133793627],[123,36,76,-0.11721335966249985],[123,36,77,-0.1074870229360541],[123,36,78,-0.11529996054079573],[123,36,79,-0.12946756211414262],[123,37,64,-0.14666352782296524],[123,37,65,-0.13498277381966556],[123,37,66,-0.1052180970039491],[123,37,67,-0.08535162960572083],[123,37,68,-0.05783735538062751],[123,37,69,-0.042626238790134635],[123,37,70,-0.06979573785830741],[123,37,71,-0.09596552308184472],[123,37,72,-0.08635115862547922],[123,37,73,-0.09532633627792436],[123,37,74,-0.12237525328858394],[123,37,75,-0.13464502848789076],[123,37,76,-0.1178187342897181],[123,37,77,-0.10817639589413625],[123,37,78,-0.11629452682012711],[123,37,79,-0.13056401031354464],[123,38,64,-0.14665038701213284],[123,38,65,-0.13517482975536568],[123,38,66,-0.10510921731815207],[123,38,67,-0.08518474280209389],[123,38,68,-0.05784594557141365],[123,38,69,-0.04279654702562949],[123,38,70,-0.07019778568344144],[123,38,71,-0.0967960170691184],[123,38,72,-0.08734148666790559],[123,38,73,-0.09634204361139789],[123,38,74,-0.12342854106369337],[123,38,75,-0.13547524547789297],[123,38,76,-0.1184599326828414],[123,38,77,-0.10890395565373247],[123,38,78,-0.1173304260397338],[123,38,79,-0.13170042420538322],[123,39,64,-0.14667174492487162],[123,39,65,-0.13539971450675203],[123,39,66,-0.1050272850239592],[123,39,67,-0.08503868249636883],[123,39,68,-0.057871820387199145],[123,39,69,-0.04298430782314319],[123,39,70,-0.07062150200938223],[123,39,71,-0.09765437417839319],[123,39,72,-0.08836322187422675],[123,39,73,-0.09739187274638653],[123,39,74,-0.12451470265568275],[123,39,75,-0.13633920523296694],[123,39,76,-0.1191370200243549],[123,39,77,-0.10966991462956563],[123,39,78,-0.11840793100870765],[123,39,79,-0.1328769190173904],[123,40,64,-0.14672721639525313],[123,40,65,-0.13565725412598226],[123,40,66,-0.10497207479529981],[123,40,67,-0.08491322919303966],[123,40,68,-0.057914911644403745],[123,40,69,-0.04318954729780477],[123,40,70,-0.07106692803369723],[123,40,71,-0.09854085301355141],[123,40,72,-0.08941685321760394],[123,40,73,-0.09847626783673766],[123,40,74,-0.12563395252409879],[123,40,75,-0.1372368914389071],[123,40,76,-0.11985006652821954],[123,40,77,-0.11047449519362477],[123,40,78,-0.11952731716088283],[123,40,79,-0.13409360273861498],[123,41,64,-0.14681641083142816],[123,41,65,-0.13594726941960766],[123,41,66,-0.10494336502852387],[123,41,67,-0.08480816851245904],[123,41,68,-0.057975160043170916],[123,41,69,-0.04341230431199163],[123,41,70,-0.07153410987132412],[123,41,71,-0.09945570770341536],[123,41,72,-0.09050286934844363],[123,41,73,-0.09959567179029871],[123,41,74,-0.1267864925798522],[123,41,75,-0.13816827828362274],[123,41,76,-0.1205991472611472],[123,41,77,-0.11131792940365477],[123,41,78,-0.12068886200103301],[123,41,79,-0.1353505755454964],[123,42,64,-0.14693893208772987],[123,42,65,-0.1362695758854722],[123,42,66,-0.10494093812473951],[123,42,67,-0.0847232916268753],[123,42,68,-0.05805251543167216],[123,42,69,-0.04365263044352246],[123,42,70,-0.07202309838253605],[123,42,71,-0.10039918762936285],[123,42,72,-0.09162175825183691],[123,42,73,-0.10075052584703592],[123,42,74,-0.12797251183150038],[123,42,75,-0.13913333022352178],[123,42,76,-0.12138434197942215],[123,42,77,-0.11220045873511612],[123,42,78,-0.1218928445507948],[123,42,79,-0.13664792924634506],[123,43,64,-0.1470943783464091],[123,43,65,-0.13662398365258657],[123,43,66,-0.10496458078179785],[123,43,67,-0.08465839571515607],[123,43,68,-0.05814693709047428],[123,43,69,-0.04391058997653961],[123,43,70,-0.07253394902722027],[123,43,71,-0.10137153716086239],[123,43,72,-0.09277400688692079],[123,43,73,-0.1019412691380552],[123,43,74,-0.12919218604177174],[123,43,75,-0.14013200177802815],[123,43,76,-0.12220573498271839],[123,43,77,-0.11312233381758262],[123,43,78,-0.12313954479671246],[123,43,79,-0.1379857467482255],[123,44,64,-0.14728234201198553],[123,44,65,-0.13701029742641116],[123,44,66,-0.10501408429734327],[123,44,67,-0.08461328443748424],[123,44,68,-0.05825839403795564],[123,44,69,-0.044186259915819134],[123,44,70,-0.07306672174690927],[123,44,71,-0.10237299540093688],[123,44,72,-0.09396010080950083],[123,44,73,-0.10316833822724353],[123,44,74,-0.1304456773975815],[123,44,75,-0.14116423735548025],[123,44,76,-0.12306341498646438],[123,44,77,-0.11408381417664444],[123,44,78,-0.12442924314293545],[123,44,79,-0.139364101550396],[123,45,64,-0.1475024096212966],[123,45,65,-0.13742831644207745],[123,45,66,-0.10508924488435273],[123,45,67,-0.08458776843128893],[123,45,68,-0.05838686535773114],[123,45,69,-0.04447973002525675],[123,45,70,-0.07362148087608233],[123,45,71,-0.10340379594368576],[123,45,72,-0.09518052377935181],[123,45,73,-0.10443216663733536],[123,45,74,-0.13173313419693777],[123,45,75,-0.14222997111378718],[123,45,76,-0.12395747501437708],[123,45,77,-0.11508516798244495],[123,45,78,-0.12576221987120778],[123,45,79,-0.14078305726858265],[123,46,64,-0.1477541617723573],[123,46,65,-0.13787783442809767],[123,46,66,-0.10518986400053691],[123,46,67,-0.08458166582959573],[123,46,68,-0.05853234054898184],[123,46,69,-0.04479110289125511],[123,46,70,-0.07419829508429164],[123,46,71,-0.10446416664605085],[123,46,72,-0.0964357573536447],[123,46,73,-0.10573318436224541],[123,46,74,-0.1330546905562132],[123,46,75,-0.1433291268592711],[123,46,76,-0.12488801231280691],[123,46,77,-0.11612667180600539],[123,46,78,-0.12713875461085214],[123,46,79,-0.14224266719443418],[123,47,64,-0.14803716428705083],[123,47,65,-0.13835863077546207],[123,47,66,-0.10531573986555637],[123,47,67,-0.08459479395573943],[123,47,68,-0.05869481103344025],[123,47,69,-0.045120485124599756],[123,47,70,-0.07479722844342554],[123,47,71,-0.10555432048851422],[123,47,72,-0.09772627151998271],[123,47,73,-0.10707180839897144],[123,47,74,-0.13441045715204436],[123,47,75,-0.14446160897700153],[123,47,76,-0.12585511925733248],[123,47,77,-0.11720860133212659],[123,47,78,-0.12855911674780865],[123,47,79,-0.1437429647993805],[123,48,64,-0.14835086647452378],[123,48,65,-0.13887036853735021],[123,48,66,-0.1054665655474555],[123,48,67,-0.0846268673317069],[123,48,68,-0.058874167710717525],[123,48,69,-0.045467884345647316],[123,48,70,-0.07541823701761324],[123,48,71,-0.10667435167316208],[123,48,72,-0.09905242026541827],[123,48,73,-0.1084483379430356],[123,48,74,-0.13580041638918378],[123,48,75,-0.14562719752793224],[123,48,76,-0.12685877812761368],[123,48,77,-0.11833112564541813],[123,48,78,-0.13002345913037977],[123,48,79,-0.1452838572800971],[123,49,64,-0.14869462653151727],[123,49,65,-0.13941261970905877],[123,49,66,-0.1056419544827142],[123,49,67,-0.08467752328294553],[123,49,68,-0.05907022626588431],[123,49,69,-0.045833234080757075],[123,49,70,-0.07606119353160232],[123,49,71,-0.10782425994556702],[123,49,72,-0.10041446550007631],[123,49,73,-0.10986297810265479],[123,49,74,-0.13722444629065125],[123,49,75,-0.14682557225184523],[123,49,76,-0.1278988849339053],[123,49,77,-0.11949433072225969],[123,49,78,-0.1315318411596385],[123,49,79,-0.14686514869230557],[123,50,64,-0.14906777844503297],[123,50,65,-0.1399849321986369],[123,50,66,-0.1058415078846814],[123,50,67,-0.08474638963990268],[123,50,68,-0.05928279477507631],[123,50,69,-0.04621646116125522],[123,50,70,-0.07672595475507818],[123,50,71,-0.1090040178233736],[123,50,72,-0.10181264406153616],[123,50,73,-0.11131590690156992],[123,50,74,-0.13868238792438828],[123,50,75,-0.14805638033172025],[123,50,76,-0.12897531718953434],[123,50,77,-0.12069828706205124],[123,50,78,-0.13308429623783685],[123,50,79,-0.14848660768478675],[123,51,64,-0.14946963263592258],[123,51,65,-0.14058683043206097],[123,51,66,-0.10606481568681023],[123,51,67,-0.08483308588499475],[123,51,68,-0.05951167465862603],[123,51,69,-0.04661748637382154],[123,51,70,-0.07741236205050017],[123,51,71,-0.11021357087583744],[123,51,72,-0.10324716763754921],[123,51,73,-0.11280727510085202],[123,51,74,-0.14017404558894192],[123,51,75,-0.14931923683047885],[123,51,76,-0.1300879342252459],[123,51,77,-0.12194304973832093],[123,51,78,-0.13468083154037955],[123,51,79,-0.15014796748210985],[123,52,64,-0.14989947530003764],[123,52,65,-0.14121781464145197],[123,52,66,-0.10631145616048092],[123,52,67,-0.08493722297803923],[123,52,68,-0.05975666030893582],[123,52,69,-0.04703622378473327],[123,52,70,-0.0781202406038648],[123,52,71,-0.11145283667123398],[123,52,72,-0.10471822132077492],[123,52,73,-0.11433720465224301],[123,52,74,-0.14169918567181844],[123,52,75,-0.15061372381379998],[123,52,76,-0.13123657615858528],[123,52,77,-0.12322865708495927],[123,52,78,-0.13632142643196937],[123,52,79,-0.15184892454285603],[123,53,64,-0.1503565677464729],[123,53,65,-0.1418773601376661],[123,53,66,-0.10658099550928891],[123,53,67,-0.08505840316400035],[123,53,68,-0.060017538699260235],[123,53,69,-0.04747258004679235],[123,53,70,-0.07884939865085351],[123,53,71,-0.1127217037079558],[123,53,72,-0.10622596211312056],[123,53,73,-0.11590578710357013],[123,53,74,-0.1432575355052155],[123,53,75,-0.15193938948587804],[123,53,76,-0.1324210628458448],[123,53,77,-0.12455512934739511],[123,53,78,-0.1380060308612137],[123,53,79,-0.15358913723173506],[123,54,64,-0.15084014573871746],[123,54,65,-0.14256491657249187],[123,54,66,-0.10687298744309187],[123,54,67,-0.08519621976585565],[123,54,68,-0.060294088976127126],[123,54,69,-0.047926453691944884],[123,54,70,-0.07959962670255835],[123,54,71,-0.11402003033439642],[123,54,72,-0.10777051738407462],[123,54,73,-0.11751308196105117],[123,54,74,-0.14484878222552378],[123,54,75,-0.15329574734404325],[123,54,76,-0.1336411928205816],[123,54,77,-0.125922467302449],[123,54,78,-0.13973456373929],[123,54,79,-0.15536822451257754],[123,55,64,-0.1513494188445707],[123,55,65,-0.14327990719574193],[123,55,66,-0.10718697273506966],[123,55,67,-0.08535025696531309],[123,55,68,-0.060586082038103145],[123,55,69,-0.048397734412649406],[123,55,70,-0.0803706967750613],[123,55,71,-0.11534764366284563],[123,55,72,-0.1093519832876048],[123,55,73,-0.1191591150135037],[123,55,74,-0.14647257164311697],[123,55,75,-0.15468227535822482],[123,55,76,-0.13489674222280498],[123,55,77,-0.12733065085074205],[123,55,78,-0.1415069113084428],[123,55,79,-0.15718576466929735],[123,56,64,-0.15188356980077297],[123,56,65,-0.1440217281126346],[123,56,66,-0.10752247876508692],[123,56,67,-0.08552008957411747],[123,56,68,-0.06089328010367281],[123,56,69,-0.048886302335195655],[123,56,70,-0.0811623616273044],[123,56,71,-0.11670433848281782],[123,56,72,-0.11097042314244493],[123,56,73,-0.12084387662372544],[123,56,74,-0.14812850712912218],[123,56,75,-0.1560984151813468],[123,56,76,-0.13618746372308854],[123,56,77,-0.12877963758576505],[123,56,78,-0.14332292550634004],[123,56,79,-0.1590412940620777],[123,57,64,-0.15244175389836537],[123,57,65,-0.14478974754695068],[123,57,66,-0.10787901905265117],[123,57,67,-0.08570528279864463],[123,57,68,-0.061215436271017803],[123,57,69,-0.04939202728826949],[123,57,70,-0.08197435401180359],[123,57,71,-0.1180898761793957],[123,57,72,-0.11262586578083322],[123,57,73,-0.12256731999256343],[123,57,74,-0.14981614852601768],[123,57,75,-0.15754357139682296],[123,57,76,-0.13751308544599125],[123,57,77,-0.13026936134390663],[123,57,78,-0.14518242233252338],[123,57,79,-0.16093430592616545],[123,58,64,-0.15302309839479658],[123,58,65,-0.14558330511547005],[123,58,66,-0.1082560927827196],[123,58,67,-0.08590539200041163],[123,58,68,-0.06155229407247363],[123,58,69,-0.04991476807013241],[123,58,70,-0.08280638594283404],[123,58,71,-0.1195039836622763],[123,58,72,-0.11431830387094712],[123,58,73,-0.12432935940137489],[123,58,74,-0.1515350110889765],[123,58,75,-0.15901711080931827],[123,58,76,-0.13887330989724533],[123,58,77,-0.13179973073988654],[123,58,78,-0.14708518022335298],[123,58,79,-0.16286424922069678],[123,59,64,-0.1536267019588838],[123,59,65,-0.1464017111193149],[123,59,66,-0.10865318432765286],[123,59,67,-0.0861199624551418],[123,59,68,-0.061903587026513676],[123,59,69,-0.05045437171793413],[123,59,70,-0.08365814798687085],[123,59,71,-0.12094635231140693],[123,59,72,-0.11604769221856864],[123,59,73,-0.12612986843887367],[123,59,74,-0.1532845644650377],[123,59,75,-0.16051836178503195],[123,59,76,-0.1402678128993376],[123,59,77,-0.1333706276922899],[123,59,78,-0.14903093844209175],[123,59,79,-0.1648305275351267],[123,60,64,-0.15425163415475704],[123,60,65,-0.1472442458578727],[123,60,66,-0.10906976276860876],[123,60,67,-0.0863485291129776],[123,60,68,-0.06226903819012869],[123,60,69,-0.05101067278277768],[123,60,70,-0.08452930858015978],[123,60,71,-0.12241663694522187],[123,60,72,-0.11781394605374766],[123,60,73,-0.1279686782185991],[123,60,74,-0.1550642317172871],[123,60,75,-0.1620466136477737],[123,60,76,-0.14169624254021726],[123,60,77,-0.13498190594408604],[123,60,78,-0.15101939549096888],[123,60,79,-0.1668324980608814],[123,61,64,-0.154896934970906],[123,61,65,-0.14811015897100066],[123,61,66,-0.10950528141964605],[123,61,67,-0.08659061636238052],[123,61,68,-0.06264835971447881],[123,61,69,-0.051583492614240355],[123,61,70,-0.08541951337836365],[123,61,71,-0.12391445481759378],[123,61,72,-0.11961693930843932],[123,61,73,-0.12984557559344564],[123,61,74,-0.15687338840126855],[123,61,75,-0.16360111613707248],[123,61,76,-0.14315821813994398],[123,61,77,-0.13663338958318588],[123,61,78,-0.1530502075522084],[123,61,79,-0.1688694706358726],[123,62,64,-0.15556161440047492],[123,62,65,-0.14899866881526935],[123,62,66,-0.10995917735782515],[123,62,67,-0.08684573780023931],[123,62,68,-0.06304125240674618],[123,62,69,-0.05217263865818397],[123,62,70,-0.08632838464333402],[123,62,71,-0.12543938464975343],[123,62,72,-0.12145650289135819],[123,62,73,-0.1317603013739653],[123,62,74,-0.15871136170094338],[123,62,75,-0.1651810789345663],[123,62,76,-0.14465332924021745],[123,62,77,-0.13832487156831186],[123,62,78,-0.15512298696521123],[123,62,79,-0.1709407068695547],[123,63,64,-0.15624465207896296],[123,63,65,-0.14990896188006575],[123,63,66,-0.11043087096261753],[123,63,67,-0.08711339601069097],[123,63,68,-0.0634474053011618],[123,63,69,-0.05277790377180773],[123,63,70,-0.08725552067215053],[123,63,71,-0.1269909657035539],[123,63,72,-0.12333242296654598],[123,63,73,-0.1337125485574043],[123,63,74,-0.16057742963157884],[123,63,75,-0.1667856712649087],[123,63,76,-0.14618113462185114],[123,63,77,-0.1400561122656695],[123,63,78,-0.15723730074726422],[123,63,79,-0.1730454193562294],[123,64,64,-0.15694499698539705],[123,64,65,-0.15084019224932016],[123,64,66,-0.11091976546787191],[123,64,67,-0.08739308235507501],[123,64,68,-0.06386649524216328],[123,64,69,-0.05339906555995047],[123,64,70,-0.0882004952735748],[123,64,71,-0.12856869690248268],[123,64,72,-0.12524443924231862],[123,64,73,-0.1357019605745984],[123,64,74,-0.16247082031689408],[123,64,75,-0.16841402157729615],[123,64,76,-0.1477411613552728],[123,64,77,-0.14182683800203594],[123,64,78,-0.15939266916522168],[123,64,79,-0.17518277098420482],[123,65,64,-0.15766156721304914],[123,65,65,-0.15179148111468904],[123,65,66,-0.11142524652962714],[123,65,67,-0.08768427677543109],[123,65,68,-0.06429818648269292],[123,65,69,-0.054035885736779435],[123,65,70,-0.08916285729716551],[123,65,71,-0.13017203600697685],[123,65,72,-0.12719224327757694],[123,65,73,-0.13772812956216668],[123,65,74,-0.16439071134788638],[123,65,75,-0.17006521731372534],[123,65,76,-0.14933290388929774],[123,65,77,-0.14363673964014764],[123,65,78,-0.161588564365834],[123,65,79,-0.17735187434844302],[123,66,64,-0.15839324981570732],[123,66,65,-0.15276191634599157],[123,66,66,-0.11194668181305316],[123,66,67,-0.08798644761393755],[123,66,68,-0.06474213030069545],[123,66,69,-0.05468810951708663],[123,66,70,-0.09014213022028239],[123,66,71,-0.1318003988505404],[123,66,72,-0.12917547681254005],[123,66,73,-0.13979059466751945],[123,66,74,-0.16633622923061503],[123,66,75,-0.17173830476989138],[123,66,76,-0.15095582318340078],[123,66,77,-0.14548547118233512],[123,66,78,-0.1638244090723785],[123,66,79,-0.17955179127415183],[123,67,64,-0.15913890073536094],[123,67,65,-0.15375055212464647],[123,67,66,-0.11248342060174897],[123,67,67,-0.0882990514505708],[123,67,68,-0.06519796463681976],[123,67,69,-0.055355465041466954],[123,67,70,-0.09113781179825961],[123,67,71,-0.13345315864333557],[123,67,72,-0.13119373013136004],[123,67,73,-0.14188884039456423],[123,67,74,-0.16830644893030178],[123,67,75,-0.1734322890546044],[123,67,76,-0.15260934588886904],[123,67,77,-0.14737264840866335],[123,67,78,-0.16609957535549988],[123,67,79,-0.18178153245876974],[123,68,64,-0.1598973448171091],[123,68,65,-0.15475640864582246],[123,68,66,-0.11303479343263854],[123,68,67,-0.08862153296128124],[123,68,68,-0.06566531375639721],[123,68,69,-0.05603766283972532],[123,68,70,-0.09214937378295962],[123,68,71,-0.13512964534977598],[123,68,72,-0.13324654046406276],[123,68,73,-0.1440222949979962],[123,68,74,-0.1703003935188809],[123,68,75,-0.1751461341533408],[123,68,76,-0.15429286358415525],[123,68,77,-0.14929784755583503],[123,68,78,-0.16841338348606508],[123,68,79,-0.18404005723952901],[123,69,64,-0.16066737591692604],[123,69,65,-0.15577847189493849],[123,69,66,-0.11360011175967388],[123,69,67,-0.08895332479890468],[123,69,68,-0.06614378793875464],[123,69,69,-0.05673439533691929],[123,69,70,-0.09317626171492745],[123,69,71,-0.1368291451467338],[123,69,72,-0.13533339043556633],[123,69,73,-0.1461903289343311],[123,69,74,-0.1723170339331027],[123,69,75,-0.17687876310142334],[123,69,76,-0.1560057320698507],[123,69,77,-0.15126060404336117],[123,69,78,-0.17076510087798868],[123,69,79,-0.18632627349367337],[123,70,64,-0.16144775710778073],[123,70,65,-0.15681569350406954],[123,70,66,-0.11417866764953491],[123,70,67,-0.08929384749898812],[123,70,68,-0.06663298319692312],[123,70,69,-0.05744533640647961],[123,70,70,-0.09421789479429617],[123,70,71,-0.1385508999689021],[123,70,72,-0.13745370656965536],[123,70,73,-0.14839225337796338],[123,70,74,-0.17435528885013746],[123,70,75,-0.17862905827210424],[123,70,76,-0.15774727072869785],[123,70,77,-0.15326041125360162],[123,70,78,-0.1731539411289701],[123,70,79,-0.18863903767818124],[123,71,64,-0.16223722098937252],[123,71,65,-0.15786699069365911],[123,71,66,-0.11476973351244805],[123,71,67,-0.08964250941262317],[123,71,68,-0.06713248103076831],[123,71,69,-0.058170140974843465],[123,71,70,-0.09527366583547928],[123,71,71,-0.14029410714775453],[123,71,72,-0.1396068578558885],[123,71,73,-0.15062731881060584],[123,71,74,-0.17641402468739426],[123,71,75,-0.18039586178453765],[123,71,76,-0.1595167619560185],[123,71,77,-0.15529671937235653],[123,71,78,-0.17557906316703467],[123,71,79,-0.19097715501555146],[123,72,64,-0.16303447010655744],[123,72,65,-0.15893124630482575],[123,72,66,-0.11537256187123084],[123,72,67,-0.08999870666833869],[123,72,68,-0.06764184821656506],[123,72,69,-0.0589084446820595],[123,72,70,-0.09634294131059937],[123,72,71,-0.14205791915047047],[123,72,72,-0.14179215438757348],[123,72,73,-0.15289471369261204],[123,72,74,-0.17849205573310487],[123,72,75,-0.18217797603639282],[123,72,76,-0.1613134506659474],[123,72,77,-0.15736893429681417],[123,72,78,-0.1780395705107644],[123,72,79,-0.1933393798319577],[123,73,64,-0.16383817748129345],[123,73,65,-0.16000730892739906],[123,73,66,-0.11598638517162616],[123,73,67,-0.09036182316505276],[123,73,68,-0.06816063663602234],[123,73,69,-0.05965986360281586],[123,73,70,-0.09742506148647041],[123,73,71,-0.14384144342507735],[123,73,72,-0.1440088460790411],[123,73,73,-0.15519356322475034],[123,73,74,-0.1805881444139726],[123,73,75,-0.18397416436556957],[123,73,76,-0.16313654387883034],[123,73,77,-0.15947641661774387],[123,73,78,-0.18053451065103315],[123,73,79,-0.19572441605376684],[123,74,64,-0.1646469872625948],[123,74,65,-0.16109399312855718],[123,74,66,-0.11661041563688225],[123,74,67,-0.09073123059795768],[123,74,68,-0.06868838314766994],[123,74,69,-0.06042399403225465],[123,74,70,-0.09851934065972984],[123,74,71,-0.14564374235783384],[123,74,72,-0.14625612147045447],[123,74,73,-0.15752292820898495],[123,74,74,-0.18270100170583572],[123,74,75,-0.18578315184506902],[123,74,76,-0.16498521039501346],[123,74,77,-0.1616184806828108],[123,74,78,-0.1830628745618892],[123,74,79,-0.19813091786798115],[123,75,64,-0.16545951549873117],[123,75,65,-0.16219007978678712],[123,75,66,-0.11724384516951482],[123,75,67,-0.09110628851918152],[123,75,68,-0.0692246095035017],[123,75,69,-0.061200412340909026],[123,75,70,-0.09962506749455455],[123,75,71,-0.1474638333487457],[123,75,72,-0.1485331066284975],[123,75,73,-0.15988180401689953],[123,75,74,-0.18482928769305013],[123,75,75,-0.18760362621479484],[123,75,76,-0.16685858056024377],[123,75,77,-0.16379439374797847],[123,75,78,-0.1856235963481522],[123,75,79,-0.2005574905518483],[123,76,64,-0.16627435103553237],[123,76,65,-0.16329431653560322],[123,76,66,-0.11788584530310085],[123,76,67,-0.09148634443498506],[123,76,68,-0.06976882231370797],[123,76,69,-0.061988674903017696],[123,76,70,-0.10074150546716079],[123,76,71,-0.14930068901084978],[123,76,72,-0.1508388641512648],[123,76,73,-0.16226911967434826],[123,76,74,-0.18697161228189682],[123,76,75,-0.1894342389536238],[123,76,76,-0.16875574612775707],[123,76,77,-0.16600337522395042],[123,76,78,-0.18821555303708526],[123,76,79,-0.2030026914764086],[123,77,64,-0.16709005654426212],[123,77,65,-0.16440541832116246],[123,77,66,-0.11853556720683686],[123,77,67,-0.09187073394111976],[123,77,68,-0.07032051306219378],[123,77,69,-0.06278831810230423],[123,77,70,-0.10186789342097168],[123,77,71,-0.15115323749861378],[123,77,72,-0.1531723922856333],[123,77,73,-0.16468373707084913],[123,77,74,-0.18912653607291563],[123,77,75,-0.19127360649465477],[123,77,76,-0.17067576022198752],[123,77,77,-0.1682445960245435],[123,77,78,-0.19083756452126335],[123,77,79,-0.20546503128826665],[123,78,64,-0.16790516968212926],[123,78,65,-0.16552206807762548],[123,78,66,-0.11919214174552356],[123,78,67,-0.09225878089791859],[123,78,68,-0.0708791581755256],[123,78,69,-0.06359885841921208],[123,78,70,-0.10300344623607433],[123,78,71,-0.15302036297051724],[123,78,72,-0.15553262416536556],[123,78,73,-0.1671244503021697],[123,78,74,-0.19129257139664985],[123,78,75,-0.19312031158610954],[123,78,76,-0.1726176374087005],[123,78,77,-0.17051717802387245],[123,78,78,-0.19348839365953138],[123,78,79,-0.20794297527338265],[123,79,64,-0.16871820438805793],[123,79,65,-0.16664291752376892],[123,79,66,-0.11985467959753995],[123,79,67,-0.09264979764659166],[123,79,68,-0.07144421914783831],[123,79,69,-0.06441979260341531],[123,79,70,-0.10414735561625192],[123,79,71,-0.1549009061905564],[123,79,72,-0.1579184271781053],[123,79,73,-0.16958998515443258],[123,79,74,-0.1934681835168207],[123,79,75,-0.19497290479988988],[123,79,76,-0.17458035387617737],[123,79,77,-0.1728201936291407],[123,79,78,-0.19616674654266075],[123,79,79,-0.21043494490615505],[123,80,64,-0.16952765231582706],[123,80,65,-0.16776658808395356],[123,80,66,-0.12052227143321018],[123,80,67,-0.09304308526804436],[123,80,68,-0.07201514272404995],[123,80,69,-0.06525059793517253],[123,80,70,-0.10529879099645392],[123,80,71,-0.156793665272986],[123,80,72,-0.1603286024692656],[123,80,73,-0.1720789987378738],[123,80,74,-0.19565179200442162],[123,80,75,-0.19682990618925197],[123,80,76,-0.17656284773184458],[123,80,77,-0.17515266547568858],[123,80,78,-0.1988712729299434],[123,80,79,-0.2129393195864406],[123,81,64,-0.1703319844061975],[123,81,65,-0.1688916719361722],[123,81,66,-0.12119398815587247],[123,81,67,-0.09343793388547332],[123,81,68,-0.07259136114364353],[123,81,69,-0.06609073257891473],[123,81,70,-0.1064569005732059],[123,81,71,-0.15869739657424872],[123,81,72,-0.16276188459067853],[123,81,73,-0.17459007927821468],[123,81,74,-0.19784177228569236],[123,81,75,-0.19868980709655334],[123,81,76,-0.17856401941853725],[123,81,77,-0.17751356625083634],[123,81,78,-0.20160056686262623],[123,81,79,-0.21545443856659116],[123,82,64,-0.17112965259909865],[123,82,65,-0.17001673318946542],[123,82,66,-0.12186888120781761],[123,82,67,-0.09383362301185716],[123,82,68,-0.07317229244708279],[123,82,69,-0.06693963603217123],[123,82,70,-0.1076208124600094],[123,82,71,-0.16061081573558247],[123,82,72,-0.1652169413016584],[123,82,73,-0.1771217460733551],[123,82,74,-0.200036457366382],[123,82,75,-0.20055107211148931],[123,82,76,-0.1805827322543499],[123,82,77,-0.17990181865289684],[123,82,78,-0.20435316745968743],[123,82,79,-0.2179786030699517],[123,83,64,-0.1719190938725451],[123,83,65,-0.1711403107086457],[123,83,66,-0.12254598356072235],[123,83,67,-0.09422942206208805],[123,83,68,-0.07375734066390936],[123,83,69,-0.06779672925384965],[123,83,70,-0.10878963489951717],[123,83,71,-0.16253259669375564],[123,83,72,-0.1676923706762858],[123,83,73,-0.17967244593180448],[123,83,74,-0.20223413487551473],[123,83,75,-0.20241213562128474],[123,83,76,-0.18261780746583411],[123,83,77,-0.18231628925729718],[123,83,78,-0.20712755213551923],[123,83,79,-0.22051006961783443],[123,84,64,-0.1726988057662458],[123,84,65,-0.1722609718022279],[123,84,66,-0.12322433257393076],[123,84,67,-0.09462459664492846],[123,84,68,-0.07434589201605714],[123,84,69,-0.06866140332490434],[123,84,70,-0.10996242570562005],[123,84,71,-0.1644613063278905],[123,84,72,-0.17018661285505748],[123,84,73,-0.18224043843233356],[123,84,74,-0.20443289755297883],[123,84,75,-0.20427123035206832],[123,84,76,-0.18466784801023645],[123,84,77,-0.18475559202461964],[123,84,78,-0.2099218922556876],[123,84,79,-0.22304676873799548],[123,85,64,-0.17346738314586418],[123,85,65,-0.17337734390556694],[123,85,66,-0.12390298819595084],[123,85,67,-0.09501841982076947],[123,85,68,-0.07493732175096593],[123,85,69,-0.0695330237164525],[123,85,70,-0.11113819619113974],[123,85,71,-0.16639540412475268],[123,85,72,-0.17269794180096296],[123,85,73,-0.184823781736058],[123,85,74,-0.206630625331292],[123,85,75,-0.20612636521981959],[123,85,76,-0.1867312102729131],[123,85,77,-0.18721805199405192],[123,85,78,-0.2127340066257899],[123,85,79,-0.22558625343235525],[123,86,64,-0.17422344947374344],[123,86,65,-0.17448807018299656],[123,86,66,-0.12458101732120792],[123,86,67,-0.09541017295143567],[123,86,68,-0.07553100514742356],[123,86,69,-0.07041094982992417],[123,86,70,-0.11231595702628665],[123,86,71,-0.1683333308292269],[123,86,72,-0.17522457645020745],[123,86,73,-0.18742047444084553],[123,86,74,-0.20882517282293755],[123,86,75,-0.20797553863493878],[123,86,76,-0.18880621657814897],[123,86,77,-0.1897019377150568],[123,86,78,-0.21556165093724894],[123,86,79,-0.228126035659717],[123,87,64,-0.17496565400866093],[123,87,65,-0.17559180809397318],[123,87,66,-0.12525749308788797],[123,87,67,-0.09579914592978976],[123,87,68,-0.07612631875010982],[123,87,69,-0.0712945373184348],[123,87,70,-0.11349472292969627],[123,87,71,-0.17027351604287516],[123,87,72,-0.1777646889467673],[123,87,73,-0.19002846589908948],[123,87,74,-0.21101438382452564],[123,87,75,-0.20981675445176934],[123,87,76,-0.19089116969115302],[123,87,77,-0.19220547664384172],[123,87,78,-0.218402537916382],[123,87,79,-0.2306636106678293],[123,88,64,-0.17569267384800621],[123,88,65,-0.17668723126808364],[123,88,66,-0.1259314954694102],[123,88,67,-0.09618463758105256],[123,88,68,-0.07672264114022409],[123,88,69,-0.07218313945457591],[123,88,70,-0.11467351486257736],[123,88,71,-0.17221438072821896],[123,88,72,-0.18031640631656812],[123,88,73,-0.1926456580612876],[123,88,74,-0.21319609457216027],[123,88,75,-0.2116480250167495],[123,88,76,-0.19298435432638603],[123,88,77,-0.19472685624454908],[123,88,78,-0.22125433968577637],[123,88,79,-0.23319646066905272],[123,89,64,-0.1764032160150298],[123,89,65,-0.17777303143901754],[123,89,66,-0.12660211190707388],[123,89,67,-0.09656595609086792],[123,89,68,-0.07731935376117065],[123,89,69,-0.07307610859088084],[123,89,70,-0.11585136231647357],[123,89,71,-0.1741543398289408],[123,89,72,-0.18287781230942596],[123,89,73,-0.19526990750258053],[123,89,74,-0.21536813712973685],[123,89,75,-0.2134673743193995],[123,89,76,-0.19508403879300662],[123,89,77,-0.1972642252710233],[123,89,78,-0.22411469033706483],[123,89,79,-0.23572205869266988],[123,90,64,-0.17709601958360635],[123,90,65,-0.17884792043103587],[123,90,66,-0.12726843798105578],[123,90,67,-0.09694241945776404],[123,90,68,-0.07791584179694218],[123,90,69,-0.07397279770982669],[123,90,70,-0.11702730568847033],[123,90,71,-0.17609180499921284],[123,90,72,-0.18544694940625528],[123,90,73,-0.1978990276293577],[123,90,74,-0.2175283429007462],[123,90,75,-0.2152728412358986],[123,90,76,-0.19718847677317192],[123,90,77,-0.19981569522742776],[123,90,78,-0.22698118870959538],[123,90,79,-0.2382378726024537],[123,91,64,-0.17776985783282132],[123,91,65,-0.17991063219129175],[123,91,66,-0.12792957811692457],[123,91,67,-0.09731335596769004],[123,91,68,-0.07851149510069468],[123,91,69,-0.07487256205987299],[123,91,70,-0.11820039873726189],[123,91,71,-0.17802518743491225],[123,91,72,-0.1880218209885182],[123,91,73,-0.20053079106247013],[123,91,74,-0.21967454625363358],[123,91,75,-0.21706248285462912],[123,91,76,-0.19929590922857573],[123,91,77,-0.20237934200553734],[123,91,78,-0.22985140136883342],[123,91,79,-0.24074136926745054],[123,92,64,-0.17842354042349237],[123,92,65,-0.18095992486112428],[123,92,66,-0.12858464632473782],[123,92,67,-0.09767810468824893],[123,92,68,-0.0791057091707648],[123,92,69,-0.07577476087357118],[123,92,70,-0.11936971111298536],[123,92,71,-0.17995290079894172],[123,92,72,-0.19060039366629825],[123,92,73,-0.20316293219297682],[123,92,74,-0.22180458825021568],[123,92,75,-0.2188343778726646],[123,92,76,-0.20140456643020138],[123,92,77,-0.20495320769599132],[123,92,78,-0.23272286577760162],[123,92,79,-0.2432300188732464],[123,93,64,-0.17905591558868433],[123,93,65,-0.18199458287933998],[123,93,66,-0.1292327669678297],[123,93,67,-0.09803601598031773],[123,93,68,-0.07969788617128062],[123,93,69,-0.07667875916345959],[123,93,70,-0.12053433095338656],[123,93,71,-0.18187336423250808],[123,93,72,-0.19318059976091503],[123,93,73,-0.2057931499058422],[123,93,74,-0.22391632046624735],[123,93,75,-0.2205866300519185],[123,93,76,-0.20351267010597898],[123,93,77,-0.2075353025703759],[123,93,78,-0.2355930936526704],[123,93,79,-0.2457012993604497],[123,94,64,-0.17966587233011905],[123,94,65,-0.18301341911029473],[123,94,66,-0.1298730755583156],[123,94,67,-0.09838645202471641],[123,94,68,-0.08028743599429693],[123,94,69,-0.07758392959101963],[123,94,70,-0.12169336753841818],[123,94,71,-0.18378500544372098],[123,94,72,-0.19576033993740047],[123,94,73,-0.20841911046638012],[123,94,74,-0.2260076088927199],[123,94,75,-0.22231737172330926],[123,94,76,-0.20561843570061866],[123,94,77,-0.21012360723043735],[123,94,78,-0.238459574498485],[123,94,79,-0.24815270097648096],[123,95,64,-0.18025234261234624],[123,95,65,-0.18401527698950046],[123,95,66,-0.13050471957635584],[123,95,67,-0.09872878736162251],[123,95,68,-0.08087377736024948],[123,95,69,-0.07848965440360897],[123,95,70,-0.12284595399501196],[123,95,71,-0.18568626386451403],[123,95,72,-0.19833748598169432],[123,95,73,-0.211038450563745],[123,95,74,-0.22807633790613124],[123,95,75,-0.22402476732710466],[123,95,76,-0.2077200747416074],[123,95,77,-0.21271607492028946],[123,95,78,-0.2413197793092337],[123,95,79,-0.2505817309262939],[123,96,64,-0.1808143035464264],[123,96,65,-0.1849990326793095],[123,96,66,-0.13112685931015808],[123,96,67,-0.09906240944041583],[123,96,68,-0.08145633895332369],[123,96,69,-0.07939532743387549],[123,96,70,-0.12399125004335608],[123,96,71,-0.1875755938664579],[123,96,72,-0.20090988371682772],[123,96,73,-0.21364878050514746],[123,96,74,-0.23012041429550403],[123,96,75,-0.22570701697729204],[123,96,76,-0.20981579730493333],[123,96,77,-0.21531063399688383],[123,96,78,-0.24417116442974676],[123,96,79,-0.25298591810707644],[123,97,64,-0.1813507795548771],[123,97,65,-0.18596359722717185],[123,97,66,-0.13173866871370676],[123,97,67,-0.09938671917766742],[123,97,68,-0.08203456058818931],[123,97,69,-0.08030035615579559],[123,97,70,-0.1251284447756741],[123,97,71,-0.18945146802571158],[123,97,72,-0.20347535605190636],[123,97,73,-0.21624768755398807],[123,97,74,-0.2321377713336523],[123,97,75,-0.22736236003769206],[123,97,76,-0.21190381457382532],[123,97,77,-0.2179051905535609],[123,97,78,-0.24701117556516025],[123,97,79,-0.2553628179115843],[123,98,64,-0.18186084450960502],[123,98,65,-0.18690791871887455],[123,98,66,-0.13233933627919992],[123,98,67,-0.09970113152102306],[123,98,68,-0.0826078944044125],[123,98,69,-0.08120416379113513],[123,98,70,-0.12625675945818252],[123,98,71,-0.19131238042702878],[123,98,72,-0.20603170615720803],[123,98,73,-0.21883273940457382],[123,98,74,-0.23412637287987487],[123,98,75,-0.22898907869735827],[123,98,76,-0.21398234148345407],[123,98,77,-0.22049763119097346],[123,98,78,-0.2498372519286686],[123,98,79,-0.257710017084343],[123,99,64,-0.1823436238345226],[123,99,65,-0.18783098441908086],[123,99,66,-0.13292806592112774],[123,99,67,-0.1000050760167085],[123,99,68,-0.08317580608466216],[123,99,69,-0.08210619145973072],[123,99,70,-0.12737545034655148],[123,99,71,-0.19315684999639982],[123,99,72,-0.20857672075818],[123,99,73,-0.22140148778551982],[123,99,74,-0.23608421750094444],[123,99,75,-0.23058550153263768],[123,99,76,-0.21604959944417962],[123,99,77,-0.22308582592911658],[123,99,78,-0.252646830516071],[123,99,79,-0.26002513861453974],[123,100,64,-0.18279829656459937],[123,100,65,-0.188731822891477],[123,100,66,-0.13350407786894786],[123,100,67,-0.10029799737843595],[123,100,68,-0.08373777609270958],[123,100,69,-0.08300590036667972],[123,100,70,-0.1284838115049414],[123,100,71,-0.19498342385166878],[123,100,72,-0.2111081735407056],[123,100,73,-0.22395147218350578],[123,100,74,-0.2380093425970949],[123,100,75,-0.23215000704324032],[123,100,76,-0.218103819135674],[123,100,77,-0.22566763125373857],[123,100,78,-0.2554373504953171],[123,100,79,-0.26230584664918266],[123,101,64,-0.18322409735316586],[123,101,65,-0.18960950609083177],[123,101,66,-0.13406660956533228],[123,101,67,-0.10057935605554205],[123,101,68,-0.08429330092711343],[123,101,69,-0.08390277401922797],[123,101,70,-0.1295811776184582],[123,101,71,-0.19679068066024852],[123,101,72,-0.21362382865956478],[123,101,73,-0.22648022367857004],[123,101,74,-0.2398998285195157],[123,101,75,-0.233681027149613],[123,101,76,-0.22014324336395336],[123,101,77,-0.22824089328990602],[123,101,78,-0.2582062576987375],[123,101,79,-0.26454985140982823],[123,102,64,-0.18362031841929977],[123,102,65,-0.19046315141921932],[123,102,66,-0.13461491656689986],[123,102,67,-0.10084862879814686],[123,102,68,-0.08484189438627916],[123,102,69,-0.0847963204657672],[123,102,70,-0.1306669267885738],[123,102,71,-0.1985772339927901],[123,102,72,-0.21612144434153255],[123,102,73,-0.22898526888163354],[123,102,74,-0.24175380266568297],[123,102,75,-0.23517705063886465],[123,102,76,-0.22216612997302423],[123,102,77,-0.2308034510949497],[123,102,78,-0.2609510092051027],[123,102,79,-0.2667549140959335],[123,103,64,-0.18398631142728536],[123,103,65,-0.19129192373874174],[123,103,66,-0.13514827344441868],[123,103,67,-0.10110530921721869],[123,103,68,-0.08538308884053289],[123,103,69,-0.08568607454913436],[123,103,70,-0.13174048330093896],[123,103,71,-0.2003417356615594],[123,103,72,-0.21859877657421706],[123,103,73,-0.23146413396456417],[123,103,74,-0.2435694435388231],[123,103,75,-0.23663662654658854],[123,103,76,-0.22417075480265303],[123,103,77,-0.2333531400626],[123,103,78,-0.26366907799825967],[123,103,79,-0.2689188517578028],[123,104,64,-0.18432148929025083],[123,104,65,-0.19209503733313196],[123,104,66,-0.13566597467946973],[123,104,67,-0.10134890833746449],[123,104,68,-0.0859164365067397],[123,104,69,-0.08657160016614278],[123,104,70,-0.13280132035485565],[123,104,71,-0.20208287903214714],[123,104,72,-0.221053582871351],[123,104,73,-0.23391434877269446],[123,104,74,-0.24534498475774996],[123,104,75,-0.23805836746199754],[123,104,76,-0.2261554146835175],[123,104,77,-0.23588779542964675],[123,104,78,-0.26635795768867476],[123,104,79,-0.27103954212200093],[123,105,64,-0.18462532790945954],[123,105,65,-0.1928717577715049],[123,105,66,-0.1361673354777116],[123,105,67,-0.10157895506684224],[123,105,68,-0.08644151066198415],[123,105,69,-0.0874524924617076],[123,105,70,-0.1338489626327134],[123,105,71,-0.2037994021185899],[123,105,72,-0.22348362602481858],[123,105,73,-0.2363334510304935],[123,105,74,-0.247078718955614],[123,105,75,-0.23944095265595033],[123,105,76,-0.22811843048856556],[123,105,77,-0.2384052559698943],[123,105,78,-0.2690151673310012],[123,105,79,-0.27311492835516304],[123,106,64,-0.18489738921779797],[123,106,65,-0.19362135722063176],[123,106,66,-0.13665160413193628],[123,106,67,-0.10179491169791953],[123,106,68,-0.08695783819711894],[123,106,69,-0.08832830432846726],[123,106,70,-0.1348828573557768],[123,106,71,-0.20548988186097664],[123,106,72,-0.22588658530525768],[123,106,73,-0.2387190160276213],[123,106,74,-0.24876894549330947],[123,106,75,-0.24078302789451778],[123,106,76,-0.23005818134886738],[123,106,77,-0.24090347562683123],[123,106,78,-0.27163830975911357],[123,106,79,-0.27514302589240575],[123,107,64,-0.1851373569579784],[123,107,65,-0.1943430198950141],[123,107,66,-0.13711779865800358],[123,107,67,-0.10199601911187119],[123,107,68,-0.08746476705415518],[123,107,69,-0.08919838794695384],[123,107,70,-0.13590210508920372],[123,107,71,-0.20715232575642814],[123,107,72,-0.2282598851552958],[123,107,73,-0.24106871515074846],[123,107,74,-0.2504138614349203],[123,107,75,-0.24208300283534165],[123,107,76,-0.23197315931416054],[123,107,77,-0.24338072562805774],[123,107,78,-0.27422516966602856],[123,107,79,-0.27712192081257464],[123,108,64,-0.18534497634755648],[123,108,65,-0.1950359459794765],[123,108,66,-0.1375649298340126],[123,108,67,-0.10218151427344596],[123,108,68,-0.08796163066625577],[123,108,69,-0.09006205767255689],[123,108,70,-0.1369057521442212],[123,108,71,-0.20878466480946034],[123,108,72,-0.23060092709304972],[123,108,73,-0.24338026645888974],[123,108,74,-0.25201169356390085],[123,108,75,-0.2433392929121337],[123,108,76,-0.23386188497200097],[123,108,77,-0.2458353243381693],[123,108,78,-0.2767735751154731],[123,108,79,-0.279049753954412],[123,109,64,-0.18552004232036773],[123,109,65,-0.19569937691499914],[123,109,66,-0.13799205109052534],[123,109,67,-0.10235067834138066],[123,109,68,-0.08844778580862371],[123,109,69,-0.09091862970478014],[123,109,70,-0.13789285991815467],[123,109,71,-0.21038486753955793],[123,109,72,-0.23290714445784294],[123,109,73,-0.24565142614676574],[123,109,74,-0.25356073109883104],[123,109,75,-0.24455037640943217],[123,109,76,-0.23572289167772614],[123,109,77,-0.24826558051832],[123,109,78,-0.2792813711793808],[123,109,79,-0.28092472169616134],[123,110,64,-0.18566240018614133],[123,110,65,-0.19633259677785891],[123,110,66,-0.13839826009560752],[123,110,67,-0.1025028379925365],[123,110,68,-0.08892261392500529],[123,110,69,-0.09176742353094516],[123,110,70,-0.13886250668615524],[123,110,71,-0.21195094366219833],[123,110,72,-0.2351760071180565],[123,110,73,-0.24787999277731879],[123,110,74,-0.2550593289900288],[123,110,75,-0.24571479722842823],[123,110,76,-0.237554727745068],[123,110,77,-0.25066979581111337],[123,110,78,-0.28174642370420216],[123,110,79,-0.2827450793637656],[123,111,64,-0.18577194619196155],[123,111,65,-0.19693493360234615],[123,111,66,-0.1387827003089478],[123,111,67,-0.10263736670565475],[123,111,68,-0.08938552244356994],[123,111,69,-0.09260776339762535],[123,111,70,-0.1398137893970257],[123,111,71,-0.21348094775906543],[123,111,72,-0.23740502618151124],[123,111,73,-0.2500638114747783],[123,111,74,-0.2565059111101881],[123,111,75,-0.2468311675556248],[123,111,76,-0.2393559586505102],[123,111,77,-0.25304626728913276],[123,111,78,-0.2841666230863839],[123,111,79,-0.28450914454244636],[123,112,64,-0.18584862798344337],[123,112,65,-0.19750576064253247],[123,112,66,-0.13914456249726745],[123,112,67,-0.10275368599704837],[123,112,68,-0.08983594607652531],[123,112,69,-0.09343897980608465],[123,112,70,-0.14074582546791606],[123,112,71,-0.21497298292427255],[123,112,72,-0.23959175869273677],[123,112,73,-0.252200778065341],[123,112,74,-0.25789897332811357],[123,112,75,-0.24789817042441326],[123,112,76,-0.24112516924757374],[123,112,77,-0.25539329006480904],[123,112,78,-0.28653988804903885],[123,112,79,-0.28621530028245123],[123,113,64,-0.18589244496371773],[123,113,65,-0.198044497568718],[123,113,66,-0.1394830862034436],[123,113,67,-0.1028512666008154],[123,113,68,-0.09027334809789682],[123,113,69,-0.09426041102782201],[123,113,70,-0.14165775457258087],[123,113,71,-0.21642520437351334],[123,113,72,-0.24173381230153113],[123,113,73,-0.2542888431526469],[123,113,74,-0.2592370864549773],[123,113,75,-0.2489145621599985],[123,113,76,-0.24286096598702556],[123,113,77,-0.2577091599588465],[123,113,78,-0.288864169411583],[123,113,79,-0.28786199818996483],[123,114,64,-0.18590344854855587],[123,114,65,-0.1985506115943024],[123,114,66,-0.1397975611619517],[123,114,67,-0.10292962958639133],[123,114,68,-0.09069722159391688],[123,114,69,-0.09507140463609201],[123,114,70,-0.14254874041778912],[123,114,71,-0.21783582300315077],[123,114,72,-0.2438288498872341],[123,114,73,-0.2563260161153341],[123,114,74,-0.26051889905288256],[123,114,75,-0.24987917469846746],[123,114,76,-0.24456197913877814],[123,114,77,-0.259992176223911],[123,114,78,-0.29113745384383893],[123,114,79,-0.2894477613943787],[123,115,64,-0.18588174176420952],[123,115,65,-0.19902361797052856],[123,115,66,-0.1400873280884656],[123,115,67,-0.10298834683497755],[123,115,68,-0.09110709010241283],[123,115,69,-0.09587131846435594],[123,115,70,-0.14341797191102337],[123,115,71,-0.21920310828840317],[123,115,72,-0.24587459351869026],[123,115,73,-0.25831036840294463],[123,115,74,-0.26174313947805267],[123,115,75,-0.2507909171466701],[123,115,76,-0.2462268643799548],[123,115,77,-0.26224064368210165],[123,115,78,-0.29335776695157906],[123,115,79,-0.2909711867324525],[123,116,64,-0.18582734272504073],[123,116,65,-0.19946294277104276],[123,116,66,-0.1403516401428536],[123,116,67,-0.10302690054822906],[123,116,68,-0.09150236568399615],[123,116,69,-0.09665937739884532],[123,116,70,-0.14426451848517022],[123,116,71,-0.22052524363577422],[123,116,72,-0.24786867921684377],[123,116,73,-0.2602398859533186],[123,116,74,-0.26290846533759615],[123,116,75,-0.25164862311625474],[123,116,76,-0.24785414864109528],[123,116,77,-0.26445271752571536],[123,116,78,-0.295523017298737],[123,116,79,-0.2924307861196788],[123,117,64,-0.1857399992548015],[123,117,65,-0.1998677361772313],[123,117,66,-0.14058947422574664],[123,117,67,-0.10304449190360525],[123,117,68,-0.091882155495522],[123,117,69,-0.09743447803207189],[123,117,70,-0.14508713256188252],[123,117,71,-0.22180012811991154],[123,117,72,-0.24980845740190966],[123,117,73,-0.2621122665693015],[123,117,74,-0.2640132571515321],[123,117,75,-0.25245084157259046],[123,117,76,-0.24944201889936618],[123,117,77,-0.2666261904114693],[123,117,78,-0.2976307819290931],[123,117,79,-0.2938247686049747],[123,118,64,-0.18561945263035579],[123,118,65,-0.20023714024613082],[123,118,66,-0.140799802122218],[123,118,67,-0.10304031493054652],[123,118,68,-0.09224553902346153],[123,118,69,-0.09819546943731654],[123,118,70,-0.14588453353085812],[123,118,71,-0.22302566510641375],[123,118,72,-0.2516912856643878],[123,118,73,-0.2639252150437477],[123,118,74,-0.2650559151619659],[123,118,75,-0.2531961362905905],[123,118,76,-0.25098862515888287],[123,118,77,-0.26875879922665313],[123,118,78,-0.29967861689019737],[123,118,79,-0.29515135272785437],[123,119,64,-0.18546548132167867],[123,119,65,-0.20057033418405143],[123,119,66,-0.14098163663234148],[123,119,67,-0.10301360283840898],[123,119,68,-0.0925916152749098],[123,119,69,-0.09894120140793494],[123,119,70,-0.14665545661814489],[123,119,71,-0.22419981314574064],[123,119,72,-0.25351458125344883],[123,119,73,-0.26567649543751937],[123,119,74,-0.2660349107070607],[123,119,75,-0.25388313735115375],[123,119,76,-0.25249213307908036],[123,119,77,-0.2708482790273854],[123,119,78,-0.3016641123144917],[123,119,79,-0.29640882081654096],[123,120,64,-0.1852779010150224],[123,120,65,-0.20086653541278565],[123,120,66,-0.14113403298289254],[123,120,67,-0.10296362910702321],[123,120,68,-0.09291950425851833],[123,120,69,-0.09967052651858004],[123,120,70,-0.14739865502762392],[123,120,71,-0.22532058954567133],[123,120,72,-0.2552758257172687],[123,120,73,-0.26736393497733235],[123,120,74,-0.26694878865769855],[123,120,75,-0.25451054320142574],[123,120,76,-0.25395072679607505],[123,120,77,-0.2728923667084897],[123,120,78,-0.3035848966229475],[123,120,79,-0.2975955217966396],[123,121,64,-0.18505656457969621],[123,121,65,-0.2011250005957974],[123,121,66,-0.14125609019707924],[123,121,67,-0.10288970853123011],[123,121,68,-0.09322834846233789],[123,121,69,-0.10038230223174714],[123,121,70,-0.14811290209638636],[123,121,71,-0.22638607387589713],[123,121,72,-0.25697256946523256],[123,121,73,-0.2689854278656407],[123,121,74,-0.26779616973185033],[123,121,75,-0.2550771226132553],[123,121,76,-0.25536261178989533],[123,121,77,-0.27488880477370947],[123,121,78,-0.3054386407326151],[123,121,79,-0.29870987390880493],[123,122,64,-0.18480136197838998],[123,122,65,-0.20134502662123654],[123,122,66,-0.14134695241663336],[123,122,67,-0.10279119821428018],[123,122,68,-0.09351731432338545],[123,122,69,-0.10107539304385754],[123,122,70,-0.14879699345786776],[123,122,71,-0.22739441139332428],[123,122,72,-0.25860243623800766],[123,122,73,-0.2705389389917392],[123,122,74,-0.268575752679814],[123,122,75,-0.2555817165337372],[123,122,76,-0.2567260177914051],[123,122,77,-0.27683534519872266],[123,122,78,-0.30722306225793056],[123,122,79,-0.29975036732856497],[123,123,64,-0.1845122201211502],[123,123,65,-0.20152595153876035],[123,123,66,-0.14140581017082227],[123,123,67,-0.10266749850526036],[123,123,68,-0.09378559368381652],[123,123,69,-0.10174867266491183],[123,123,70,-0.14944974920654372],[123,123,71,-0.22834381637696594],[123,123,72,-0.2601631274718104],[123,123,73,-0.2720225075335724],[123,123,74,-0.2692863163339195],[123,123,75,-0.2560232398220861],[123,123,76,-0.2580392017224546],[123,123,77,-0.27872975337884887],[123,123,78,-0.30893592969543143],[123,123,79,-0.30071556668169047],[123,124,64,-0.18418910266324173],[123,124,65,-0.2016671554472379],[123,124,66,-0.1414319015871431],[123,124,67,-0.10251805387594204],[123,124,68,-0.09403240522860469],[123,124,69,-0.1024010262255289],[123,124,70,-0.1500700160578951],[123,124,71,-0.2292325753615763],[123,124,72,-0.2616524265435002],[123,124,73,-0.2734342504400274],[123,124,74,-0.26992672151669794],[123,124,75,-0.2564006828674434],[123,124,76,-0.25930045066247115],[123,124,77,-0.2805698121527431],[123,124,78,-0.3105750665813365],[123,124,79,-0.30160411344869126],[123,125,64,-0.18383200974730293],[123,125,65,-0.20176806133056377],[123,125,66,-0.14142451353870736],[123,125,67,-0.10234235373271548],[123,125,68,-0.09425699589969648],[123,125,69,-0.10303135250501678],[123,125,70,-0.15065666949730236],[123,125,71,-0.23005905025953013],[123,125,72,-0.2630682028835517],[123,125,73,-0.27477236578389813],[123,125,74,-0.27049591280202345],[123,125,75,-0.25671311308263883],[123,125,76,-0.2605080848344758],[123,125,77,-0.282353325892892],[123,125,78,-0.31213835561135633],[123,125,79,-0.302414728252327],[123,126,64,-0.18344097769037201],[123,126,65,-0.20182813583896783],[123,126,66,-0.14138298272359945],[123,126,67,-0.10213993315959377],[123,126,68,-0.09445864228172884],[123,126,69,-0.10363856617401375],[123,126,70,-0.15120861591154264],[123,126,71,-0.23082168136085632],[123,126,72,-0.26440841594439224],[123,126,73,-0.2760351359760825],[123,126,74,-0.2709929201241941],[123,126,75,-0.2569596762693324],[123,126,76,-0.26166046060326137],[123,126,77,-0.2840781246532097],[123,126,78,-0.3136237427119999],[123,126,79,-0.3031462130222854],[123,127,64,-0.1830160786164715],[123,127,65,-0.20184689001330336],[123,127,66,-0.1413066966716965],[123,127,67,-0.10191037358848504],[123,127,68,-0.09463665195441703],[123,127,69,-0.10422160004503689],[123,127,70,-0.15172479469648234],[123,127,71,-0.23151899020166927],[123,127,72,-0.2656711190120127],[123,127,73,-0.2772209308319744],[123,127,74,-0.2714168602303902],[123,127,75,-0.2571395978503413],[123,127,76,-0.2627559734782142],[123,127,77,-0.2857420683635444],[123,127,78,-0.31502924105256463],[123,127,79,-0.30379745303144257],[123,128,64,-0.1825574200356227],[123,128,65,-0.20182387994999015],[123,128,66,-0.14119509467474897],[123,128,67,-0.10165330339327883],[123,128,68,-0.09479036480687876],[123,128,69,-0.10477940732422718],[123,128,70,-0.15220418033462346],[123,128,71,-0.2321495822917275],[123,128,72,-0.2668544628493039],[123,128,73,-0.2783282104814856],[123,128,74,-0.27176693797246626],[123,128,75,-0.2572521839654141],[123,128,76,-0.2637930611130913],[123,128,77,-0.2873430510604978],[123,128,78,-0.3163529349870026],[123,128,79,-0.3043674187984685],[123,129,64,-0.18206514437030527],[123,129,65,-0.2017587074044407],[123,129,66,-0.14104766863579596],[123,129,67,-0.10136839840458564],[123,129,68,-0.09491915430927428],[123,129,69,-0.10531096385748669],[123,129,70,-0.15264578443619317],[123,129,71,-0.23271214969230122],[123,129,72,-0.2679566991600987],[123,129,73,-0.2793555281145981],[123,129,74,-0.272042447434541],[123,129,75,-0.2572968224271305],[123,129,76,-0.26477020629487225],[123,129,77,-0.2888790051435532],[123,129,78,-0.31759298391486634],[123,129,79,-0.3048551678518484],[123,130,64,-0.1815394284304864],[123,130,65,-0.2016510203309274],[123,130,66,-0.14086396383423277],[123,130,67,-0.10105538234222745],[123,130,68,-0.09502242873722207],[123,130,69,-0.10581527036409638],[123,130,70,-0.15304865773746112],[123,130,71,-0.23320547343596712],[123,130,72,-0.26897618386343963],[123,130,73,-0.280301532554818],[123,130,74,-0.27224277289334475],[123,130,75,-0.25727298353402345],[123,130,76,-0.2656859399136394],[123,130,77,-0.2903479056451274],[123,130,78,-0.31874762605057977],[123,130,79,-0.3052598463507213],[123,131,64,-0.18098048283851823],[123,131,65,-0.201500513357056],[123,131,66,-0.14064357960319365],[123,131,67,-0.10071402716294958],[123,131,68,-0.09509963234465815],[123,131,69,-0.10629135465092573],[123,131,70,-0.15341189205011335],[123,131,71,-0.23362842578051715],[123,131,72,-0.26991138016822486],[123,131,73,-0.2811649706534436],[123,131,74,-0.27236738960881635],[123,131,75,-0.2571802207384748],[123,131,76,-0.26653884390531324],[123,131,77,-0.29174777450285005],[123,131,78,-0.31981518209037535],[123,131,79,-0.3055806905582952],[123,132,64,-0.18038855140531976],[123,132,65,-0.20130692819116114],[123,132,66,-0.14038616991618147],[123,132,67,-0.1003441533210934],[123,132,68,-0.09515024648091752],[123,132,69,-0.10673827380028816],[123,132,70,-0.15373462215555364],[123,132,71,-0.23397997228966466],[123,132,72,-0.27076086143900563],[123,132,73,-0.281944689498094],[123,132,74,-0.27241586444297994],[123,132,75,-0.25701817116738385],[123,132,76,-0.26732755415898646],[123,132,77,-0.2930766848221094],[123,132,78,-0.3207940587663865],[123,132,79,-0.30581702816398176],[123,133,64,-0.17976391045937337],[123,133,65,-0.2010700539611059],[123,133,66,-0.14009144388017913],[123,133,67,-0.0999456299402957],[123,133,68,-0.0951737906479897],[123,133,69,-0.1071551163245132],[123,133,70,-0.15401602763812616],[123,133,71,-0.23425917373377753],[123,133,72,-0.27152331384434497],[123,133,73,-0.282639638429472],[123,133,74,-0.27238785630561735],[123,133,75,-0.2567865559940215],[123,133,76,-0.26805076338048184],[123,133,77,-0.29433276511662293],[123,133,78,-0.32168275227751597],[123,133,79,-0.30596827945072774],[123,134,64,-0.179106868130212],[123,134,65,-0.20078972748317003],[123,134,66,-0.1397591661328101],[123,134,67,-0.09951837489461586],[123,134,68,-0.09516982349410182],[123,134,69,-0.1075410042803609],[123,134,70,-0.15425533465141003],[123,134,71,-0.23446518780447437],[123,134,72,-0.27219753877985403],[123,134,73,-0.2832488708609355],[123,134,74,-0.2722831164258161],[123,134,75,-0.25648518065994974],[123,134,76,-0.26870722390374463],[123,134,77,-0.29551420351463653],[123,134,78,-0.3224798515869328],[123,134,79,-0.30603395830444274],[123,135,64,-0.17841776358817066],[123,135,65,-0.20046583345987126],[123,135,66,-0.13938915714140854],[123,135,67,-0.09906235479778733],[123,135,68,-0.09513794373994112],[123,135,69,-0.10789509533642962],[123,135,70,-0.15445181761184876],[123,135,71,-0.23459727063746494],[123,135,72,-0.2727824550587113],[123,135,73,-0.28377154589602477],[123,135,74,-0.2721014884489796],[123,135,75,-0.2561139349463301],[123,135,76,-0.26929575044165616],[123,135,77,-0.2966192519181952],[123,135,78,-0.32318404157628866],[123,135,79,-0.30601367306280775],[123,136,64,-0.1776969662422908],[123,136,65,-0.20009830460575823],[123,136,66,-0.1389812934021938],[123,136,67,-0.09857758489963599],[123,136,68,-0.09507779103405997],[123,136,69,-0.1082165847868228],[123,136,70,-0.15460480081419042],[123,136,71,-0.2346547781386597],[123,136,72,-0.2732771008631917],[123,136,73,-0.28420692973967643],[123,136,74,-0.2718429083593989],[123,136,75,-0.25567279289435557],[123,136,76,-0.26981522276783876],[123,136,77,-0.29764623010281355],[123,136,78,-0.3237941060470004],[123,136,79,-0.30590712720113283],[123,137,64,-0.17694487489836913],[123,137,65,-0.19968712170039649],[123,137,66,-0.1385355075380556],[123,137,67,-0.09806412888900704],[123,137,68,-0.09498904673419253],[123,137,69,-0.10850470750442012],[123,137,70,-0.15471365996337147],[123,137,71,-0.234637167109158],[123,137,72,-0.27368063545148236],[123,137,73,-0.284554396899485],[123,137,74,-0.27150740422901537],[123,137,75,-0.2551618125750099],[123,137,76,-0.2702645883211001],[123,137,77,-0.2985935297448438],[123,137,78,-0.32430893055929016],[123,137,79,-0.30571411985337316],[123,138,64,-0.17616191687923874],[123,138,65,-0.19923231356795998],[123,138,66,-0.13805178829378978],[123,138,67,-0.09752209860287979],[123,138,68,-0.09487143461145647],[123,138,69,-0.10875873982725374],[123,138,70,-0.154777823617714],[123,138,71,-0.23454399616538296],[123,138,72,-0.273992340614812],[123,138,73,-0.28481343117397423],[123,138,74,-0.27109509579350777],[123,138,75,-0.2545811357087698],[123,138,76,-0.27064286472421356],[123,138,77,-0.2994596183638341],[123,138,78,-0.32472750510000903],[123,138,79,-0.30543454616680554],[123,139,64,-0.17534854710945696],[123,139,65,-0.19873395698302673],[123,139,66,-0.13753018042794535],[123,139,67,-0.09695165364166321],[123,139,68,-0.09472472147463773],[123,139,69,-0.10897800137163963],[123,139,70,-0.15479677453852703],[123,139,71,-0.23437492645125302],[123,139,72,-0.27421162188068915],[123,139,73,-0.28498362642546043],[123,139,74,-0.27060619385731627],[123,139,75,-0.2539309871362825],[123,139,76,-0.2709491422088298],[123,139,77,-0.30024304316719486],[123,139,78,-0.32504892657064305],[123,139,79,-0.3050683974892797],[123,140,64,-0.17450524716665178],[123,140,65,-0.19819217650236126],[123,140,66,-0.13697078450075967],[123,140,67,-0.09635300089096245],[123,140,68,-0.09454871771198096],[123,140,69,-0.10916185676587718],[123,140,70,-0.154770050941431],[123,140,71,-0.23412972213992056],[123,140,72,-0.27433800945882947],[123,140,73,-0.28506468713572797],[123,140,74,-0.2700409995297403],[123,140,75,-0.25321167414148743],[123,140,76,-0.27118258593847405],[123,140,77,-0.3009424347846291],[123,140,78,-0.32527240108734956],[123,140,79,-0.30461576138841334],[123,141,64,-0.17363252430186474],[123,141,65,-0.19760714422267336],[123,141,66,-0.1363737565580091],[123,141,67,-0.09572639395045857],[123,141,68,-0.09434327774819512],[123,141,69,-0.10930971729857367],[123,141,70,-0.15469724764502826],[123,141,71,-0.23380825072328845],[123,141,72,-0.2743711589271311],[123,141,73,-0.285056428743354],[123,141,74,-0.2693999032946878],[123,141,75,-0.25242358562903516],[123,141,76,-0.2713424382217154],[123,141,77,-0.30155651087988866],[123,141,78,-0.32539724608528775],[123,141,79,-0.3040768215024809],[123,142,64,-0.1727309104312751],[123,142,65,-0.19697907946451085],[123,142,66,-0.13573930771089407],[123,142,67,-0.09507213247080137],[123,142,68,-0.09410830041459775],[123,142,69,-0.10942104247582983],[123,142,70,-0.1545780171127748],[123,142,71,-0.2334104830881308],[123,142,72,-0.27431085165585933],[123,142,73,-0.28495877776215744],[123,142,74,-0.26868338391714364],[123,142,75,-0.2515671911582739],[123,142,76,-0.2714280206078216],[123,142,77,-0.30208407962765627],[123,142,78,-0.3254228922200151],[123,142,79,-0.3034518572232031],[123,143,64,-0.17180096110176],[123,143,65,-0.1963082483826457],[123,143,66,-0.13506770361241957],[123,143,67,-0.09439056139975284],[123,143,68,-0.09384372923061177],[123,143,69,-0.10949534148180629],[123,143,70,-0.15441207038423443],[123,143,71,-0.23293649337832353],[123,143,72,-0.2741569949689784],[123,143,73,-0.2847717716808667],[123,143,74,-0.26789200718985545],[123,143,75,-0.250643039836437],[123,143,76,-0.27143873585741624],[123,143,77,-0.30252404304357594],[123,143,78,-0.32534888505921733],[123,143,79,-0.302741243211049],[123,144,64,-0.17084325443279466],[123,144,65,-0.19559496350350075],[123,144,66,-0.134359263831048],[123,144,67,-0.09368207013910365],[123,144,68,-0.09354955259510182],[123,144,69,-0.109532174537458],[123,144,70,-0.1541991778922082],[123,144,71,-0.23238645864334848],[123,144,72,-0.27390962204238545],[123,144,73,-0.2844955586447257],[123,144,74,-0.2670264245241756],[123,144,75,-0.2496517590740555],[123,144,76,-0.27137406978092726],[123,144,77,-0.3028754001557687],[123,144,78,-0.3251748865585809],[123,144,79,-0.30194544874408125],[123,145,64,-0.16985839003721734],[123,145,65,-0.1948395831903368],[123,145,66,-0.1336143611227],[123,145,67,-0.0929470916141585],[123,145,68,-0.09322580388628697],[123,145,69,-0.10953115415249275],[123,145,70,-0.15393917016251896],[123,145,71,-0.2317606582738487],[123,145,72,-0.27356889153956554],[123,145,73,-0.2841303969203819],[123,145,74,-0.2660873713894064],[123,145,75,-0.24859405320596428],[123,145,76,-0.27123359293790766],[123,145,77,-0.30313725000652664],[123,145,78,-0.3249006763161934],[123,145,79,-0.3010650369018026],[123,146,64,-0.1688469879234549],[123,146,65,-0.1940425110371221],[123,146,66,-0.13283342060250525],[123,146,67,-0.0921861012578881],[123,146,68,-0.09287256146927214],[123,146,69,-0.10949194626594871],[123,146,70,-0.153631938393619],[123,146,71,-0.23105947322571127],[123,146,72,-0.27313508698599315],[123,146,73,-0.28367665414599375],[123,146,74,-0.2650756656054051],[123,146,75,-0.24747070198163015],[123,146,76,-0.27101696219060073],[123,146,77,-0.30330879447324605],[123,146,78,-0.3245261526004266],[123,146,79,-0.30010066358586723],[123,147,64,-0.16780968738177596],[123,147,65,-0.19320419519216736],[123,147,66,-0.13201691881799615],[123,147,67,-0.09139961591210247],[123,147,68,-0.09248994861051595],[123,147,69,-0.10941427127110236],[123,147,70,-0.15327743491348297],[123,147,71,-0.23028338503472998],[123,147,72,-0.27260861588437024],[123,147,73,-0.2831348063691153],[123,147,74,-0.263992205493555],[123,147,75,-0.24628255892884085],[123,147,76,-0.2707239221055121],[123,147,77,-0.3033893408981564],[123,147,78,-0.3240513331468924],[123,147,79,-0.2990530763799214],[123,148,64,-0.1667471458571936],[123,148,65,-0.1923251276127953],[123,148,66,-0.1311653827257325],[123,148,67,-0.09058819264825724],[123,148,68,-0.09207813329882784],[123,148,69,-0.10929790492076172],[123,148,70,-0.15287567351163392],[123,148,71,-0.229432974624564],[123,148,72,-0.27199000857355066],[123,148,73,-0.2825054368754781],[123,148,74,-0.26283796789158487],[123,148,75,-0.2450305495951155],[123,148,76,-0.27035430619708356],[123,148,77,-0.30337830451684505],[123,148,78,-0.32347635572067374],[123,148,79,-0.2979231132512376],[123,149,64,-0.16566003781163197],[123,149,65,-0.19140584325249205],[123,149,66,-0.13027938857364402],[123,149,67,-0.08975242751077828],[123,149,68,-0.09163732797280306],[123,149,69,-0.10914267910938881],[123,149,70,-0.15242672964452275],[123,149,71,-0.22850892091132008],[123,149,72,-0.2712799168347756],[123,149,73,-0.2817892348123876],[123,149,74,-0.2616140060380403],[123,149,75,-0.2437156696714947],[123,149,76,-0.26990803800798985],[123,149,77,-0.30327521067614016],[123,149,78,-0.3228014784406989],[123,149,79,-0.296711701097201],[123,150,64,-0.16454905357795802],[123,150,65,-0.19044691918214027],[123,150,66,-0.12935956069163726],[123,150,67,-0.08889295418599362],[123,150,68,-0.09116778915485696],[123,150,69,-0.10894848252883801],[123,150,70,-0.15193074051281785],[123,150,71,-0.22751199920865448],[123,150,72,-0.2704791122495486],[123,150,73,-0.2809869936109996],[123,150,74,-0.2603214473325259],[123,150,75,-0.24233898300364407],[123,150,76,-0.2693851320210075],[123,150,77,-0.3030796968325038],[123,150,78,-0.32202707986379475],[123,150,79,-0.29541985414008626],[123,151,64,-0.1634148982084813],[123,151,65,-0.18944897364711402],[123,151,66,-0.1284065701933057],[123,151,67,-0.08801044260002944],[123,151,68,-0.09066981699234858],[123,151,69,-0.1087152611949305],[123,151,70,-0.15138790500958554],[123,151,71,-0.22644307943791095],[123,151,72,-0.2695884843142249],[123,151,73,-0.280099609212275],[123,151,74,-0.25896149097810667],[123,151,75,-0.24090161949545094],[123,151,76,-0.2687856943978353],[123,151,77,-0.30279151432267043],[123,151,78,-0.3211536588266181],[123,151,79,-0.29404867217391406],[123,152,64,-0.16225829032049388],[123,152,65,-0.18841266506216056],[123,152,66,-0.12742113359182322],[123,152,67,-0.08710559744920934],[123,152,68,-0.09014375470654178],[123,152,69,-0.1084430188424596],[123,152,70,-0.15079848353868783],[123,152,71,-0.22530312414834336],[123,152,72,-0.268609038317066],[123,152,73,-0.27912807810195084],[123,152,74,-0.25753540551253457],[123,152,75,-0.23940477291055173],[123,152,76,-0.2681099235407475],[123,152,77,-0.30241052989896516],[123,152,78,-0.32018183404438166],[123,152,79,-0.2925993386675582],[123,153,64,-0.16107996094140153],[123,153,65,-0.18733869094615982],[123,153,66,-0.12640401133336338],[123,153,67,-0.0861791566667221],[123,153,68,-0.08958998795045921],[123,153,69,-0.10813181718666333],[123,153,70,-0.15016279770313906],[123,153,71,-0.22409318635303574],[123,153,72,-0.26754189298420344],[123,153,73,-0.27807349516036023],[123,153,74,-0.2560445262351969],[123,153,75,-0.2378496985774447],[123,153,76,-0.2673581104734488],[123,153,77,-0.3019367270224198],[123,153,78,-0.31911234346598405],[123,153,79,-0.2910731187286077],[123,154,64,-0.1598806523559491],[123,154,65,-0.18622778679898372],[123,154,66,-0.1253560062516177],[123,154,67,-0.08523188982950289],[123,154,68,-0.08900894407696554],[123,154,69,-0.10778177604961926],[123,154,70,-0.14948122986354617],[123,154,71,-0.222814407186648],[123,154,72,-0.2663882779015836],[123,154,73,-0.27693705133340274],[123,154,74,-0.25449025253687063],[123,154,75,-0.23623771100401567],[123,154,76,-0.26653063903799723],[123,154,77,-0.301370206907512],[123,154,78,-0.3179460433858414],[123,154,79,-0.2894713569327946],[123,155,64,-0.1586611169580068],[123,155,65,-0.18508072492283162],[123,155,66,-0.12427796194721236],[123,155,67,-0.08426459650944323],[123,155,68,-0.08840109131868779],[123,155,69,-0.10739307335044604],[123,155,70,-0.14875422256713416],[123,155,71,-0.22146801339160438],[123,155,72,-0.2651495307206092],[123,155,73,-0.2757200311314486],[123,155,74,-0.2528740451395899],[123,155,75,-0.23457018140753153],[123,155,76,-0.26562798590523967],[123,155,77,-0.3007111893131644],[123,155,78,-0.3166839073134795],[123,155,79,-0.2877954750241639],[123,156,64,-0.15742211610932705],[123,156,65,-0.18389831319054664],[123,156,66,-0.12317076109604795],[123,156,67,-0.08327810457323226],[123,156,68,-0.08776693788168537],[123,156,69,-0.1069659449586646],[123,156,70,-0.1479822778482861],[123,156,71,-0.22005531463984102],[123,156,72,-0.2638270941557741],[123,156,73,-0.27442380996336896],[123,156,74,-0.2511974232540489],[123,156,75,-0.23284853516626436],[123,156,76,-0.2646507203967077],[123,156,77,-0.29996001307537645],[123,156,78,-0.31532702460260265],[123,156,79,-0.2860469694914014],[123,157,64,-0.1561644190076091],[123,157,65,-0.18268139376353285],[123,157,66,-0.12203532369076373],[123,157,67,-0.0822732684352374],[123,157,68,-0.08710703095501533],[123,157,69,-0.10650068441047908],[123,157,70,-0.14716595640186766],[123,157,71,-0.21857770069763874],[123,157,72,-0.26242251278314943],[123,157,73,-0.2730498513133011],[123,157,74,-0.24946196166211598],[123,157,75,-0.2310742491990808],[123,157,76,-0.2635995041165225],[123,157,77,-0.2991171363777172],[123,157,78,-0.3138765988421067],[123,157,79,-0.28422740902605925],[123,158,64,-0.15488880156615872],[123,158,65,-0.18143084176203322],[123,158,66,-0.12087260521974008],[123,158,67,-0.08125096726800646],[123,158,68,-0.08642195563864435],[123,158,69,-0.10599764248823183],[123,158,70,-0.1463058766310385],[123,158,71,-0.2170366384415217],[123,158,72,-0.26093742964911915],[123,158,73,-0.2715997037681438],[123,158,74,-0.24766928773213645],[123,158,75,-0.22924884927943703],[123,158,76,-0.26247509039242817],[123,158,77,-0.2981831367567361],[123,158,78,-0.3123339460122112],[123,158,79,-0.2823384318686692],[123,159,64,-0.15359604530734108],[123,159,65,-0.1801475638906248],[123,159,66,-0.11968359478821827],[123,159,67,-0.08021210317507486],[123,159,68,-0.08571233379240727],[123,159,69,-0.10545722666372659],[123,159,70,-0.14540271357162565],[123,159,71,-0.2154336687335852],[123,159,72,-0.25937358269926275],[123,159,73,-0.27007499790412226],[123,159,74,-0.24582107837476813],[123,159,75,-0.22737390729031184],[123,159,76,-0.26127832352565544],[123,159,77,-0.29715871084020257],[123,159,78,-0.31070049240956865],[123,159,79,-0.28038174304897173],[123,160,64,-0.1522869362719296],[123,160,65,-0.17883249702187848],[123,160,66,-0.11846931318624829],[123,160,67,-0.07915759933083573],[123,160,68,-0.08497882280893194],[123,160,69,-0.10487990040653357],[123,160,70,-0.14445719769546736],[123,160,71,-0.21377040316493515],[123,160,72,-0.2577328010377084],[123,160,73,-0.26847744304107407],[123,160,74,-0.24391905694714314],[123,160,75,-0.22545103842667868],[123,160,76,-0.2600101378499175],[123,160,77,-0.2960446738169591],[123,160,78,-0.308977772345918],[123,160,79,-0.27835911152672305],[123,161,64,-0.15096226394639595],[123,161,65,-0.17748660674125996],[123,161,66,-0.1172308109083733],[123,161,67,-0.07808839809237841],[123,161,68,-0.08422211431375982],[123,161,69,-0.1042661823589125],[123,161,70,-0.14347011359558992],[123,161,71,-0.21204852067633007],[123,161,72,-0.25601700102776853],[123,161,73,-0.2668088238734358],[123,161,74,-0.24196499011318848],[123,161,75,-0.22348189835219323],[123,161,76,-0.2586715566004594],[123,161,77,-0.29484195863807633],[123,161,78,-0.3071674256255374],[123,161,79,-0.2762723672397533],[123,162,64,-0.149622820210057],[123,162,65,-0.17611088585639992],[123,162,66,-0.11596916613003558],[123,162,67,-0.07700545908821078],[123,162,68,-0.08344293279606353],[123,162,69,-0.10361664537937132],[123,162,70,-0.1424422985563611],[123,162,71,-0.21026976406533576],[123,162,72,-0.254228182244999],[123,162,73,-0.2650709969871396],[123,162,74,-0.23996068466792395],[123,162,75,-0.22146818031678672],[123,162,76,-0.2572636905946772],[123,162,77,-0.29355161494988863],[123,162,78,-0.30527119480741605],[123,162,79,-0.27412339806613517],[123,163,64,-0.14826939830390007],[123,163,65,-0.17470635287394465],[123,163,66,-0.11468548264581896],[123,163,67,-0.07590975728885899],[123,163,68,-0.08264203417361121],[123,163,69,-0.10293191545734859],[123,163,70,-0.14137464101214975],[123,163,71,-0.2084359363895975],[123,163,72,-0.2523684232941876],[123,163,73,-0.26326588727186884],[123,163,74,-0.2379079843335137],[123,163,75,-0.2194116122418593],[123,163,76,-0.25578773672642907],[123,163,77,-0.29217480776037225],[123,163,78,-0.30329092225870424],[123,163,79,-0.27191414670747405],[123,164,64,-0.14690279182281848],[123,164,65,-0.17327405044728836],[123,164,66,-0.11338088777476116],[123,164,67,-0.07480228106439853],[123,164,68,-0.08182020429586451],[123,164,69,-0.10221267050196942],[123,164,70,-0.14026807889838894],[123,164,71,-0.20654889727608886],[123,164,72,-0.250439877502111],[123,164,73,-0.26139548423834313],[123,164,74,-0.23580876653482719],[123,164,75,-0.21731395377978616],[123,164,76,-0.2542449762767895],[123,164,77,-0.29071281584127306],[123,164,78,-0.3012285470066595],[123,164,79,-0.26964660750049496],[123,165,64,-0.1455237937328502],[123,165,65,-0.1718150437985183],[123,165,66,-0.11205653023801342],[123,165,67,-0.07368403023395127],[123,165,68,-0.08097825738925413],[123,165,69,-0.10145963900820519],[123,165,70,-0.13912359789921042],[123,165,71,-0.20461055914634052],[123,165,72,-0.24844476849813246],[123,165,73,-0.2594618382504568],[123,165,74,-0.2336649391621677],[123,165,75,-0.215176993354406],[123,165,76,-0.252636773044604],[123,165,77,-0.2891670298692794],[123,165,78,-0.2990861013969192],[123,165,79,-0.2673228231642368],[123,166,64,-0.14413319541490402],[123,166,65,-0.17033041911796298],[123,166,66,-0.1107135780142121],[123,166,67,-0.0725560141122201],[123,166,68,-0.08011703444889934],[123,166,69,-0.10067359860422236],[123,166,70,-0.1379422295961826],[123,166,71,-0.20262288336785297],[123,166,72,-0.2463853856949521],[123,166,73,-0.2574670566822198],[123,166,74,-0.23147843732870732],[123,166,75,-0.21300254518909245],[123,166,76,-0.25096457130076716],[123,166,77,-0.2875389503104016],[123,166,78,-0.29686570756647684],[123,166,79,-0.2649448814902128],[123,167,64,-0.1427317857363458],[123,167,65,-0.1688212819447867],[123,167,66,-0.10935321617798027],[123,167,67,-0.07141924955812201],[123,167,68,-0.07923740158120925],[123,167,69,-0.09985537448410517],[123,167,70,-0.13672504952296655],[123,167,71,-0.20058787634201414],[123,167,72,-0.24426407968202443],[123,167,73,-0.2554133000095987],[123,167,74,-0.22925122013009575],[123,167,75,-0.21079244632899677],[123,167,76,-0.24922989357081252],[123,167,77,-0.2858301850526884],[123,167,78,-0.2945695737403821],[123,167,79,-0.26251491198306454],[123,168,64,-0.14132035015167121],[123,168,65,-0.167288755532079],[123,168,66,-0.10797664472698446],[123,168,67,-0.0702747590305375],[123,168,68,-0.07834024830195203],[123,168,69,-0.09900583773051527],[123,168,70,-0.1354731751309809],[123,168,71,-0.19850758553891262],[123,168,72,-0.24208325754426457],[123,168,73,-0.2533027778473813],[123,168,74,-0.2269852674135025],[123,168,75,-0.20854855366390204],[123,168,76,-0.24743433825091599],[123,168,77,-0.28404244679320845],[123,168,78,-0.29219999036164085],[123,168,79,-0.2600350824592151],[123,169,64,-0.13989966983338845],[123,169,65,-0.16573397919993776],[123,169,66,-0.10658507640302756],[123,169,67,-0.06912356865619171],[123,169,68,-0.07742648579456188],[123,169,69,-0.09812590353227107],[123,169,70,-0.1341877636714728],[123,169,71,-0.19638409548954408],[123,169,72,-0.23984537811881695],[123,169,73,-0.25113774494127505],[123,169,74,-0.22468257656323484],[123,169,75,-0.20627274095808065],[123,169,76,-0.24557957706304323],[123,169,77,-0.28217755018615304],[123,169,78,-0.2897593260643602],[123,169,79,-0.2575075956111245],[123,170,64,-0.138470520834063],[123,170,65,-0.16415810668001687],[123,170,66,-0.10517973451260221],[123,170,67,-0.06796670631456894],[123,170,68,-0.07649704513352933],[123,170,69,-0.09721652930212232],[123,170,70,-0.13287000999957152],[123,170,71,-0.19421952374584375],[123,170,72,-0.2375529472026535],[123,170,73,-0.24892049712541545],[123,170,74,-0.22234515930984527],[123,170,75,-0.2039668958933778],[123,170,76,-0.24366735235549034],[123,170,77,-0.2802374087597155],[123,170,78,-0.28725002350061407],[123,170,79,-0.2549346855447272],[123,171,64,-0.1370336732803943],[123,171,65,-0.16256230445506295],[123,171,66,-0.10376185075238484],[123,171,67,-0.06680519974477436],[123,171,68,-0.07555287547792225],[123,171,69,-0.09627871270043482],[123,171,70,-0.1315211443062302],[123,171,71,-0.1920160168190732],[123,171,72,-0.23520851272386722],[123,171,73,-0.2466533672554948],[123,171,74,-0.21997503856947387],[123,171,75,-0.20163291713165815],[123,171,76,-0.24169947425564756],[123,171,77,-0.2782240316102643],[123,171,78,-0.2846745950319865],[123,171,79,-0.25231861429766533],[123,172,64,-0.13558989060001359],[123,172,65,-0.16094775009691306],[123,172,66,-0.1023326630450597],[123,172,67,-0.06564007467910352],[123,172,68,-0.07459494224011644],[123,172,69,-0.09531348957074409],[123,172,70,-0.13014242978408852],[123,172,71,-0.1897757461069449],[123,172,72,-0.23281465988943834],[123,172,73,-0.24433872112762742],[123,172,74,-0.2175742453199231],[123,172,75,-0.19927271140256586],[123,172,76,-0.2396778176823163],[123,172,77,-0.2761395198831021],[123,172,78,-0.28203561829713086],[123,172,79,-0.24966166834588416],[123,173,64,-0.13413992878156775],[123,173,65,-0.15931563060642118],[123,173,66,-0.10089341339083166],[123,173,67,-0.06447235300800741],[123,173,68,-0.07362422523493116],[123,173,69,-0.0943219317934761],[123,173,70,-0.12873516023351597],[123,173,71,-0.18750090381982673],[123,173,72,-0.23037400632220756],[123,173,73,-0.24197895339299702],[123,173,74,-0.2151448155197117],[123,173,75,-0.19688819062238133],[123,173,76,-0.23760431922540856],[123,173,77,-0.27398606304986123],[123,173,78,-0.27933573166705156],[123,173,79,-0.24696615510610456],[123,174,64,-0.13268453566853797],[123,174,65,-0.15766714075877994],[123,174,66,-0.09944534573995521],[123,174,67,-0.06330305098106231],[123,174,68,-0.07264171681446721],[123,174,69,-0.09330514506444722],[123,174,70,-0.1273006576152956],[123,174,71,-0.1851936989162756],[123,174,72,-0.22788919719971668],[123,174,73,-0.23957648347824748],[123,174,74,-0.21268878707613376],[123,174,75,-0.19448126904960722],[123,174,76,-0.23548097390136724],[123,174,77,-0.27176593499335594],[123,174,78,-0.27657762960017207],[123,174,79,-0.24423439944164674],[123,175,64,-0.1312244502870747],[123,175,65,-0.1560034814576378],[123,175,66,-0.09798970389148452],[123,175,67,-0.06213317744838034],[123,175,68,-0.07164841999395163],[123,175,69,-0.09226426660496183],[123,175,70,-0.12584026955650093],[123,175,71,-0.18285635305794787],[123,175,72,-0.22536290040739265],[123,175,73,-0.23713375152141844],[123,175,74,-0.2102081968680519],[123,175,75,-0.1920538604827032],[123,175,76,-0.2333098317930894],[123,175,77,-0.26948148991139803],[123,175,78,-0.2737640579095382],[123,175,79,-0.24146874017899247],[123,176,64,-0.12976040220799645],[123,176,65,-0.15432585810137248],[123,176,66,-0.09652772942337996],[123,176,67,-0.06096373214679026],[123,176,68,-0.07064534657396132],[123,176,69,-0.09120046281060169],[123,176,70,-0.12435536681628591],[123,176,71,-0.18049109659378926],[123,176,72,-0.2227978017183798],[123,176,73,-0.23465321433303943],[123,176,74,-0.20770507782884845],[123,176,75,-0.18960787550515765],[123,176,76,-0.23109299458352453],[123,176,77,-0.267135158051698],[123,176,78,-0.27089780895471266],[123,176,79,-0.23867152664231536],[123,177,64,-0.12829311094298598],[123,177,65,-0.15263547896485782],[123,177,66,-0.09506065965901564],[123,177,67,-0.0597957040349819],[123,177,68,-0.0696335152644337],[123,177,69,-0.09011492684601677],[123,177,70,-0.12284734071840743],[123,177,71,-0.17810016458319203],[123,177,72,-0.22019660001213961],[123,177,73,-0.23213734139186823],[123,177,74,-0.20518145609472604],[123,177,75,-0.18714521878293525],[123,177,76,-0.22883261199261176],[123,177,77,-0.26472944129069853],[123,177,78,-0.2679817167712204],[123,177,79,-0.2358451152131751],[123,178,64,-0.12682328537486448],[123,178,65,-0.150933553599972],[123,178,66,-0.09358972567498508],[123,178,67,-0.058630069681624916],[123,178,68,-0.06861394981585327],[123,178,69,-0.0890088761931982],[123,178,70,-0.12131760055737613],[123,178,71,-0.17568579286756106],[123,178,72,-0.21756200254364366],[123,178,73,-0.22958861088448368],[123,178,74,-0.20263934822318877],[123,178,75,-0.18466778641905135],[123,178,76,-0.22653087812749714],[123,178,77,-0.2622669085696589],[123,178,78,-0.26501865215049797],[123,178,79,-0.23299186592236865],[123,179,64,-0.12535162322166987],[123,179,65,-0.14922129125802397],[123,179,66,-0.09211615035498426],[123,179,67,-0.057467791710318836],[123,179,68,-0.0675876771630102],[123,179,69,-0.08788355016088807],[123,179,70,-0.11976757098518355],[123,179,71,-0.17325021419944503],[123,179,72,-0.21489672027470438],[123,179,73,-0.22700950579770612],[123,179,74,-0.20008075848621448],[123,179,75,-0.18217746336979632],[123,179,76,-0.22419002775636032],[123,179,77,-0.2597501912018985],[123,179,78,-0.2620115176834311],[123,179,79,-0.23011413908075098],[123,180,64,-0.12387881053418233],[123,180,65,-0.1474998993372311],[123,180,66,-0.09064114649441161],[123,180,67,-0.05630981730505925],[123,180,68,-0.0665557255867035],[123,180,69,-0.08674020736291713],[123,180,70,-0.11819868938560328],[123,180,71,-0.17079565443811617],[123,180,72,-0.2122034632786857],[123,180,73,-0.22440251007259263],[123,180,74,-0.1975076762423635],[123,180,75,-0.17967612092692703],[123,180,76,-0.2218123325164951],[123,180,77,-0.25718197806559323],[123,180,78,-0.25896324278071076],[123,180,79,-0.22721429195574744],[123,181,64,-0.12240552122637463],[123,181,65,-0.14577058185827285],[123,181,66,-0.08916591496017268],[123,181,67,-0.055157076779723875],[123,181,68,-0.0655191228987299],[123,181,69,-0.08558012317338624],[123,181,70,-0.1166124032430843],[123,181,71,-0.16832432882015913],[123,181,72,-0.20948493622947564],[123,181,73,-0.2217701048284316],[123,181,74,-0.19492207339168843],[123,181,75,-0.17716561426985514],[123,181,76,-0.2194000970675382],[123,181,77,-0.25456501069693466],[123,181,78,-0.2558767786832163],[123,181,79,-0.2242946755000066],[123,182,64,-0.1209324166381274],[123,182,65,-0.14403453797083873],[123,182,66,-0.08769164290997326],[123,182,67,-0.05401048221485066],[123,182,68,-0.06447889465539745],[123,182,69,-0.08440458716663576],[123,182,70,-0.11501016751318742],[123,182,71,-0.16583843831322878],[123,182,72,-0.206743833985179],[123,182,73,-0.2191147646648394],[123,182,74,-0.19232590191696994],[123,182,75,-0.1746477800915907],[123,182,76,-0.21695565520096574],[123,182,77,-0.2519020782988305],[123,182,78,-0.2527550934756342],[123,182,79,-0.22135763113845183],[123,183,64,-0.11946014512947477],[123,183,65,-0.14229296049404455],[123,183,66,-0.08621950207526846],[123,183,67,-0.05287092616484483],[123,183,68,-0.06343606240480437],[123,183,69,-0.08321490055008077],[123,183,70,-0.11339344200156064],[123,183,71,-0.16334016606084142],[123,183,72,-0.20398283727664665],[123,183,73,-0.21643895404979055],[123,183,74,-0.18972109151452332],[123,183,75,-0.17212443430199206],[123,183,76,-0.21448136591723582],[123,183,77,-0.24919601268071406],[123,183,78,-0.24960116711653674],[123,183,79,-0.2184054876198145],[123,184,64,-0.1179893417054816],[123,184,65,-0.1405470344934371],[123,184,66,-0.08475064711180579],[123,184,67,-0.051739280438499395],[123,184,68,-0.062391641972985724],[123,184,69,-0.08201237359796361],[123,184,70,-0.11176368875833835],[123,184,71,-0.16083167392562017],[123,184,72,-0.20120460851046512],[123,184,73,-0.2137451238010127],[123,184,74,-0.18710954731741636],[123,184,75,-0.1695973698115452],[123,184,76,-0.21197960948205805],[123,184,77,-0.24644968314523966],[123,184,78,-0.24641798649797636],[123,184,79,-0.2154405579384248],[123,185,64,-0.1165206276707395],[123,185,65,-0.13879793589720538],[123,185,66,-0.08328621402149422],[123,185,67,-0.0506163949554903],[123,185,68,-0.06134664179391655],[123,185,69,-0.08079832309406026],[123,185,70,-0.11012236949474709],[123,185,71,-0.1583150991379764],[123,185,72,-0.19841178769556153],[123,185,73,-0.21103570766782473],[123,185,74,-0.18449314771362108],[123,185,75,-0.16706835439864032],[123,185,76,-0.20945278347342133],[123,185,77,-0.24366599133789096],[123,185,78,-0.24320854054756647],[123,185,79,-0.21246513633183173],[123,186,64,-0.11505461031239704],[123,186,65,-0.13704683015413843],[123,186,66,-0.08182731864918596],[123,186,67,-0.04950309668135528],[123,186,68,-0.060302061288314494],[123,186,69,-0.07957406979141925],[123,186,70,-0.10847094302867284],[123,186,71,-0.15579255105686068],[123,186,72,-0.19560698850214897],[123,186,73,-0.20831311902015467],[123,186,74,-0.18187374226129766],[123,186,75,-0.16453912866306336],[123,186,76,-0.2069032988311167],[123,186,77,-0.24084786607570674],[123,186,78,-0.2399758153858394],[123,186,79,-0.20948149535955246],[123,187,64,-0.11359188261048907],[123,187,65,-0.13529487093570886],[123,187,66,-0.08037505525769136],[123,187,67,-0.04840018864318265],[123,187,68,-0.059258889295985495],[123,187,69,-0.07834093589708385],[123,187,70,-0.10681086276573856],[123,187,71,-0.15326610804867852],[123,187,72,-0.19279279446117487],[123,187,73,-0.20557974765105091],[123,187,74,-0.17925314970304929],[123,187,75,-0.16201140406811687],[123,187,76,-0.2043335759205294],[123,187,77,-0.23799825817142514],[123,187,78,-0.23672278955146284],[123,187,79,-0.206491883067986],[123,188,64,-0.11213302297422734],[123,188,65,-0.13354319888453497],[123,188,66,-0.07893049518413646],[123,188,67,-0.047308449028025834],[123,188,68,-0.05821810256633101],[123,188,69,-0.07710024258968155],[123,188,70,-0.10514357422230605],[123,188,71,-0.15073781449002085],[123,188,72,-0.18997175531190674],[123,188,73,-0.20283795669858226],[123,188,74,-0.1766331560806225],[123,188,75,-0.1594868610734838],[123,188,76,-0.20174604062245527],[123,188,77,-0.23512013526936387],[123,188,78,-0.233452429306592],[123,188,79,-0.2034985202461971],[123,189,64,-0.11067859500286395],[123,189,65,-0.13179294041139245],[123,189,66,-0.077494685580603],[123,189,67,-0.04622863036588399],[123,189,68,-0.05718066431153147],[123,189,69,-0.07585330757770656],[123,189,70,-0.10347051259670402],[123,189,71,-0.1482096778994364],[123,189,72,-0.18714638350481752],[123,189,73,-0.20009007969267564],[123,189,74,-0.17401551295125897],[123,189,75,-0.15696714736073408],[123,189,76,-0.19914312046074065],[123,189,77,-0.2322164767094288],[123,189,78,-0.2301676840344271],[123,189,79,-0.200503597777061],[123,190,64,-0.10922914726959213],[123,190,65,-0.13004520654276328],[123,190,66,-0.07606864824170127],[123,190,67,-0.045161458798804024],[123,190,68,-0.05614752282668885],[123,190,69,-0.07460144270611294],[123,190,70,-0.10179310039470202],[123,190,71,-0.14568366620289241],[123,190,72,-0.18431915086628783],[123,190,73,-0.19733841773195734],[123,190,74,-0.17140193570651333],[123,190,75,-0.15445387615303752],[123,190,76,-0.19652724077942807],[123,190,77,-0.2292902684355165],[123,190,78,-0.22687148174064212],[123,190,79,-0.19750927408790206],[123,191,64,-0.10778521312686885],[123,191,65,-0.12830109182078187],[123,191,66,-0.07465337852152569],[123,191,67,-0.044107633437461984],[123,191,68,-0.05511961018107],[123,191,69,-0.07334595161871606],[123,191,70,-0.1001127451150957],[123,191,71,-0.14316170513712417],[123,191,72,-0.18149248543112548],[123,191,73,-0.19458523679524906],[123,191,74,-0.16879410199402878],[123,191,75,-0.1519486246303668],[123,191,76,-0.1939008209809788],[123,191,77,-0.22634449796446512],[123,191,78,-0.223566724669988],[123,191,79,-0.19451767270443807],[123,192,64,-0.10634731053149665],[123,192,65,-0.1265616732573361],[123,192,66,-0.07324984434223163],[123,192,67,-0.043067825806380904],[123,192,68,-0.054097840984424515],[123,192,69,-0.07208812748372144],[123,192,70,-0.09843083700102306],[123,192,71,-0.1406456757945532],[123,192,72,-0.17866876844832608],[123,192,73,-0.1918327651919783],[123,192,74,-0.16619365024249244],[123,192,75,-0.14945293244125707],[123,192,76,-0.1912662708370748],[123,192,77,-0.2233821494315915],[123,192,78,-0.22025628504902242],[123,192,79,-0.19153087991159878],[123,193,64,-0.1049159418876695],[123,193,65,-0.12482800934389005],[123,193,66,-0.07185898529620767],[123,193,67,-0.042042679378691175],[123,193,68,-0.05308311123213623],[123,193,69,-0.07082925078948664],[123,193,70,-0.09674874686239303],[123,193,71,-0.1381374123129422],[123,193,72,-0.1758503315649006],[123,193,73,-0.1890831911552673],[123,193,74,-0.16360217828959572],[123,193,75,-0.1469683003118223],[123,193,76,-0.1886259868832349],[123,193,77,-0.22040619872855383],[123,193,78,-0.2169430009654052],[123,193,79,-0.18855094252436969],[123,194,64,-0.1034915939061582],[123,194,65,-0.12310113911849124],[123,194,66,-0.07048171184361142],[123,194,67,-0.04103280920114346],[123,194,68,-0.052076297232769096],[123,194,69,-0.06957058721736294],[123,194,70,-0.09506782397448149],[123,194,71,-0.1356386997123804],[123,194,72,-0.17303945419199773],[123,194,73,-0.1863386605810959],[123,194,74,-0.1610212421126306],[123,194,75,-0.14449618875258496],[123,194,76,-0.18598234890839632],[123,194,77,-0.21741960874910599],[123,194,78,-0.21362967239382466],[123,194,79,-0.18557986577159985],[123,195,64,-0.1020747374776852],[123,195,65,-0.12138208129124319],[123,195,66,-0.06911890460678068],[123,195,67,-0.04003880160986058],[123,195,68,-0.05107825462138366],[123,195,69,-0.06831338559827325],[123,195,70,-0.09338939405755757],[123,195,71,-0.13315127188175394],[123,195,72,-0.17023836105697798],[123,195,73,-0.18360127491640857],[123,195,74,-0.15845235466089494],[123,195,75,-0.14203801686322784],[123,195,76,-0.1833377165502028],[123,195,77,-0.21442532475784626],[123,195,78,-0.2103190573779889],[123,195,79,-0.18261961129522933],[123,196,64,-0.10066582868334847],[123,196,65,-0.11967183367118504],[123,196,66,-0.06777141360959638],[123,196,67,-0.03906121339546153],[123,196,68,-0.05008981592529981],[123,196,69,-0.06705887483127418],[123,196,70,-0.0917147573062145],[123,196,71,-0.1306768098172582],[123,196,72,-0.16744921942288885],[123,196,73,-0.18087308859473794],[123,196,74,-0.15589698486084586],[123,196,75,-0.1395951615354383],[123,196,76,-0.18069442594014962],[123,196,77,-0.21142626995229066],[123,196,78,-0.2070138693507939],[123,196,79,-0.17967209668068265],[123,197,64,-0.09926544171674341],[123,197,65,-0.11797140100543065],[123,197,66,-0.06644003904402744],[123,197,67,-0.03810049598045707],[123,197,68,-0.049111609500174555],[123,197,69,-0.0658081295075607],[123,197,70,-0.09004518271170112],[123,197,71,-0.12821695306827355],[123,197,72,-0.16467407690086933],[123,197,73,-0.17815603803031801],[123,197,74,-0.15335656745738482],[123,197,75,-0.1371689928661597],[123,197,76,-0.1780547770131668],[123,197,77,-0.2084253453852222],[123,197,78,-0.20371688645985192],[123,197,79,-0.17673935893167908],[123,198,64,-0.09787439216424551],[123,198,65,-0.11628182081949331],[123,198,66,-0.06512551011629464],[123,198,67,-0.03715692612686313],[123,198,68,-0.04814389983136439],[123,198,69,-0.06456195030125218],[123,198,70,-0.08838190499899469],[123,198,71,-0.1257733171427388],[123,198,72,-0.16191481260955565],[123,198,73,-0.17545188825543884],[123,198,74,-0.15083252500484778],[123,198,75,-0.1347609121008087],[123,198,76,-0.17542101237988017],[123,198,77,-0.20542541696979952],[123,198,78,-0.2004310401777634],[123,198,79,-0.1738236952725522],[123,199,64,-0.09649350448504639],[123,199,65,-0.11460411285583659],[123,199,66,-0.06382851400446532],[123,199,67,-0.03623073928465492],[123,199,68,-0.04718691026388285],[123,199,69,-0.06332109903843425],[123,199,70,-0.08672613186244453],[123,199,71,-0.1233474758459316],[123,199,72,-0.15917324942757094],[123,199,73,-0.17276236487279],[123,199,74,-0.1483262609236264],[123,199,75,-0.1323722921400224],[123,199,76,-0.17279532191687816],[123,199,77,-0.20242929136797666],[123,199,78,-0.19715920232945144],[123,199,79,-0.17092736194906738],[123,200,64,-0.09512358184030992],[123,200,65,-0.11293927206381434],[123,200,66,-0.06254969992407373],[123,200,67,-0.03532214687427144],[123,200,68,-0.04624086318715169],[123,200,69,-0.06208632709400806],[123,200,70,-0.08507904308941856],[123,200,71,-0.12094095668053532],[123,200,72,-0.1564511658452976],[123,200,73,-0.17008916789269576],[123,200,74,-0.14583915556400012],[123,200,75,-0.13000446812010594],[123,200,76,-0.17017984278099696],[123,200,77,-0.19943971201119998],[123,200,78,-0.19390415718877438],[123,200,79,-0.16805253571323284],[123,201,64,-0.09376540585665842],[123,201,65,-0.1112882680848367],[123,201,66,-0.06128967934689899],[123,201,67,-0.03443133654576776],[123,201,68,-0.04530597911391654],[123,201,69,-0.06085837368800961],[123,201,70,-0.08344178875552713],[123,201,71,-0.11855523883938224],[123,201,72,-0.15375029379931213],[123,201,73,-0.16743396918962408],[123,201,74,-0.1433725638117663],[123,201,75,-0.12765873589854707],[123,201,76,-0.16757665815171519],[123,201,77,-0.1964593572647055],[123,201,78,-0.1906686001486484],[123,201,79,-0.16520131346343303],[123,202,64,-0.0924197364442735],[123,202,65,-0.10965204481163557],[123,202,66,-0.06004902631091777],[123,202,67,-0.03355847249544068],[123,202,68,-0.044382475789216995],[123,202,69,-0.059637964248846966],[123,202,70,-0.08181548753625936],[123,202,71,-0.11619175137736815],[123,202,72,-0.15107231669243104],[123,202,73,-0.16479841011577975],[123,202,74,-0.1409278128389038],[123,202,75,-0.12533635067721663],[123,202,76,-0.16498779610428901],[123,202,77,-0.19349083876155354],[123,202,78,-0.18745513661806515],[123,202,79,-0.16237571206916107],[123,203,64,-0.09108721990280297],[123,203,65,-0.10803140953210759],[123,203,66,-0.05882821676582932],[123,203,67,-0.032703661412907266],[123,203,68,-0.043470520940248884],[123,203,69,-0.058425745659611276],[123,203,70,-0.08020113727332842],[123,203,71,-0.11385174526470684],[123,203,72,-0.14841870095085807],[123,203,73,-0.16218391502325205],[123,203,74,-0.13850604085616913],[123,203,75,-0.12303838283133442],[123,203,76,-0.16241503792671624],[123,203,77,-0.1905364738996001],[123,203,78,-0.18426606039886997],[123,203,79,-0.1595774753712493],[123,204,64,-0.08976779537609192],[123,204,65,-0.10642631841803618],[123,204,66,-0.057627238276042284],[123,204,67,-0.031866734594299076],[123,204,68,-0.042569934563015034],[123,204,69,-0.05722188022858961],[123,204,70,-0.0785990502557083],[123,204,71,-0.11153548264884496],[123,204,72,-0.14578962129567893],[123,204,73,-0.15959049882022253],[123,204,74,-0.1361071692618867],[123,204,75,-0.12076479719691245],[123,204,76,-0.15985868409947238],[123,204,77,-0.18759682188165805],[123,204,78,-0.18110192870309672],[123,204,79,-0.1568068292530989],[123,205,64,-0.08846111846903203],[123,205,65,-0.10483638725713344],[123,205,66,-0.05644588233033094],[123,205,67,-0.031047417821359165],[123,205,68,-0.04168041012197114],[123,205,69,-0.05602634654705712],[123,205,70,-0.07700927026581572],[123,205,71,-0.1092428376789978],[123,205,72,-0.14318474055201844],[123,205,73,-0.15701761909622194],[123,205,74,-0.13373064413959407],[123,205,75,-0.11851512403471792],[123,205,76,-0.15731843462844688],[123,205,77,-0.18467172434306978],[123,205,78,-0.1779625896133814],[123,205,79,-0.15406338101946987],[123,206,64,-0.08716689301063336],[123,206,65,-0.10326129094029442],[123,206,66,-0.05528396674664],[123,206,67,-0.03024545734773348],[123,206,68,-0.040801682794813526],[123,206,69,-0.05483916900339554],[123,206,70,-0.07543189186999265],[123,206,71,-0.10697375563512723],[123,206,72,-0.1406038134992127],[123,206,73,-0.15446484191315052],[123,206,74,-0.13137601197119303],[123,206,75,-0.1162889773055459],[123,206,76,-0.15479407927770578],[123,206,77,-0.18176112314359816],[123,206,78,-0.1748479827264361],[123,206,79,-0.15134681959281907],[123,207,64,-0.08588486965639916],[123,207,65,-0.10170076161094152],[123,207,66,-0.05414133387992921],[123,207,67,-0.02946061820543819],[123,207,68,-0.03993352737380541],[123,207,69,-0.053660415382885185],[123,207,70,-0.07386705767128694],[123,207,71,-0.10472824889378925],[123,207,72,-0.13804668287565738],[123,207,73,-0.1519318379973831],[123,207,74,-0.12904291557849668],[123,207,75,-0.11408605111380202],[123,207,76,-0.15228549550293857],[123,207,77,-0.1788650582959804],[123,207,78,-0.17175813636447565],[123,207,79,-0.14865691308152054],[123,208,64,-0.08461484280282631],[123,208,65,-0.10015458478415393],[123,208,66,-0.05301784777928354],[123,208,67,-0.02869268197388386],[123,208,68,-0.03907575536772703],[123,208,69,-0.052490193305963086],[123,208,70,-0.07231495394191619],[123,208,71,-0.10250639061855685],[123,208,72,-0.13551327234078098],[123,208,73,-0.14941837554255585],[123,208,74,-0.12673108717920198],[123,208,75,-0.11190611356338852],[123,208,76,-0.14979264276118495],[123,208,77,-0.1759836615567295],[123,208,78,-0.1686931606196346],[123,208,79,-0.14599350275263137],[123,209,64,-0.08335664760613669],[123,209,65,-0.09862259559411962],[123,209,66,-0.05191339149338408],[123,209,67,-0.027941444687937016],[123,209,68,-0.03822821221205953],[123,209,69,-0.05132864674792356],[123,209,70,-0.07077580636441068],[123,209,71,-0.10030830865774672],[123,209,72,-0.1330035796589559],[123,209,73,-0.14692431322311836],[123,209,74,-0.1244403416685366],[123,209,75,-0.10974900082429476],[123,209,76,-0.14731555692782847],[123,209,77,-0.17311715010306494],[123,209,78,-0.16565324055937589],[123,209,79,-0.14335649718931523],[123,210,64,-0.08211015710232444],[123,210,65,-0.09710467516668396],[123,210,66,-0.05082786452205467],[123,210,67,-0.02720671488077036],[123,210,68,-0.037390774582831],[123,210,69,-0.050175952640613634],[123,210,70,-0.06924987588363346],[123,210,71,-0.0981341796492189],[123,210,72,-0.1305176701029009],[123,210,73,-0.1444495934133095],[123,210,74,-0.12217057012001663],[123,210,75,-0.10761461140486847],[123,210,76,-0.14485434482184578],[123,210,77,-0.17026582030064585],[123,210,78,-0.16263862959707173],[123,210,79,-0.14074586663214492],[123,211,64,-0.08087527942608408],[123,211,65,-0.09560074711435912],[123,211,66,-0.049761180411704124],[123,211,67,-0.026488311757493752],[123,211,68,-0.036563347810315644],[123,211,69,-0.049032317557329994],[123,211,70,-0.06773745467240674],[123,211,71,-0.09598422333275215],[123,211,72,-0.1280556700751226],[123,211,73,-0.14199423560760022],[123,211,74,-0.11992173350013843],[123,211,75,-0.10550290062575418],[123,211,76,-0.14240917884099397],[123,211,77,-0.16743004156741906],[123,211,78,-0.15964964303234863],[123,211,79,-0.13816163750394916],[123,212,64,-0.079651955126494],[123,212,65,-0.09411077415157348],[123,212,66,-0.048713264492448574],[123,212,67,-0.025786063495651008],[123,212,68,-0.03574586338933782],[123,212,69,-0.04789797448254575],[123,212,70,-0.06623886221374703],[123,212,71,-0.09385869707089886],[123,212,72,-0.1256177609466227],[123,212,73,-0.1395583300397329],[123,212,74,-0.11769385659293302],[123,212,75,-0.10341387529227081],[123,212,76,-0.13998029170916604],[123,212,77,-0.16461025033938123],[123,212,78,-0.15668665176599222],[123,212,79,-0.13560388711813975],[123,213,64,-0.07844015457765624],[123,213,65,-0.09263475482834257],[123,213,66,-0.04768405175468386],[123,213,67,-0.025099805668785103],[123,213,68,-0.03493827658349344],[123,213,69,-0.04677317966852245],[123,213,70,-0.06475444150299627],[123,213,71,-0.09175789057962622],[123,213,72,-0.1232041731127288],[123,213,73,-0.13714203149848175],[123,213,74,-0.1154870221313101],[123,213,75,-0.10134758856269739],[123,213,76,-0.13756797133862708],[123,213,77,-0.1618069441444776],[123,213,78,-0.1537500761943762],[123,213,79,-0.13307273857068905],[123,214,64,-0.07723987548280438],[123,214,65,-0.09117272038092487],[123,214,66,-0.04667348486286883],[123,214,67,-0.02442937978939838],[123,214,68,-0.03414056412111915],[123,214,69,-0.0456582095812295],[123,214,70,-0.06328455537335449],[123,214,71,-0.08968212087033776],[123,214,72,-0.12081518026643508],[123,214,73,-0.13474555333914118],[123,214,74,-0.11330136513301071],[123,214,75,-0.09930413501057196],[123,214,76,-0.13517255581030904],[123,214,77,-0.15902067579124168],[123,214,78,-0.1508403802885032],[123,214,79,-0.13056835581614937],[123,215,64,-0.07605114047057784],[123,215,65,-0.08972473169825833],[123,215,66,-0.045681512304149664],[123,215,67,-0.023774631967631146],[123,215,68,-0.0333527219811953],[123,215,69,-0.04455335793817809],[123,215,70,-0.06182958294834593],[123,215,71,-0.08763172740494637],[123,215,72,-0.11845109388993397],[123,215,73,-0.1323691616903969],[123,215,74,-0.11113706743964684],[123,215,75,-0.09728364587953765],[123,215,76,-0.1327944284756245],[123,215,77,-0.15625204767898906],[123,215,78,-0.1479580658626985],[123,215,79,-0.1280909389281761],[123,216,64,-0.07487399478235035],[123,216,65,-0.08829087640320282],[123,216,66,-0.04470808666936205],[123,216,67,-0.023135411682023477],[123,216,68,-0.03257476326773306],[123,216,69,-0.04345893284097525],[123,216,70,-0.06038991622479886],[123,216,71,-0.08560706746573879],[123,216,72,-0.11611225796528248],[123,216,73,-0.13001316985679742],[123,216,74,-0.10899435245787337],[123,216,75,-0.09528628452963686],[123,216,76,-0.13043401318350764],[123,216,77,-0.1535017062365252],[123,216,78,-0.1451036670379002],[123,216,79,-0.12564071954504152],[123,217,64,-0.07370850404969406],[123,217,65,-0.08687126604783048],[123,217,66,-0.04375316306385969],[123,217,67,-0.022511570658762584],[123,217,68,-0.03180671617151429],[123,217,69,-0.042375254005526025],[123,217,70,-0.058965956789878024],[123,217,71,-0.08360851174173224],[123,217,72,-0.11379904390531141],[123,217,73,-0.12767793291753254],[123,217,74,-0.10687348010224379],[123,217,75,-0.09331224207428852],[123,217,76,-0.1280917696366289],[123,217,77,-0.15077033649647065],[123,217,78,-0.1422777449043945],[123,217,79,-0.12321795650069098],[123,218,64,-0.07255475216112921],[123,218,65,-0.08546603342208475],[123,218,66,-0.04281669764543116],[123,218,67,-0.021902961855765464],[123,218,68,-0.031048622018245986],[123,218,69,-0.041302650092808486],[123,218,70,-0.05755811267555007],[123,218,71,-0.08163644013304358],[123,218,72,-0.11151184570587808],[123,218,73,-0.1253638425224914],[123,218,74,-0.10477474193957347],[123,218,75,-0.09136173320731335],[123,218,76,-0.125768188880771],[123,218,77,-0.14805865681223],[123,218,78,-0.13948088238854475],[123,218,79,-0.12082293164175859],[123,219,64,-0.07141283921743545],[123,219,65,-0.08407532997525875],[123,219,66,-0.04189864628645995],[123,219,67,-0.021309438547963237],[123,219,68,-0.030300533402418485],[123,219,69,-0.04024145614316738],[123,219,70,-0.056166795353725825],[123,219,71,-0.07969123777462801],[123,219,72,-0.10925107532056093],[123,219,73,-0.12307132188684415],[123,219,74,-0.10269845653492064],[123,219,75,-0.0894349922195315],[123,219,76,-0.12346378893144996],[123,219,77,-0.1453674137246104],[123,219,78,-0.13671367932782896],[123,219,79,-0.11845594583090559],[123,220,64,-0.0702828795748199],[123,220,65,-0.082699323349753],[123,220,66,-0.04099896335727984],[123,220,67,-0.020730853510078612],[123,220,68,-0.029562512406250577],[123,220,69,-0.039192011116937445],[123,220,70,-0.054792416875027436],[123,220,71,-0.0777732912803956],[123,220,72,-0.1070171582587148],[123,220,73,-0.12080082098546596],[123,220,74,-0.1006449649993882],[123,220,75,-0.0875322692044592],[123,220,76,-0.12117911054180007],[123,220,77,-0.14269737698489765],[123,220,78,-0.1339767477581052],[123,220,79,-0.11611731513666541],[123,221,64,-0.06916499997532434],[123,221,65,-0.08133819502664269],[123,221,66,-0.040117600627576445],[123,221,67,-0.020167058293210534],[123,221,68,-0.02883462890326949],[123,221,69,-0.03815465554415381],[123,221,70,-0.05343538715392714],[123,221,71,-0.07588298520846298],[123,221,72,-0.10481052940767965],[123,221,73,-0.11855281194862219],[123,221,74,-0.09861462674006226],[123,221,75,-0.08565382645266105],[123,221,76,-0.11891471311571931],[123,221,77,-0.1400493347410383],[123,221,78,-0.1312707074166873],[123,221,79,-0.11380736720983778],[123,222,64,-0.06805933776381957],[123,222,65,-0.0799921380825271],[123,222,66,-0.03925450628247345],[123,222,67,-0.019617902591447647],[123,222,68,-0.028116958946080135],[123,222,69,-0.03712972928586535],[123,222,70,-0.05209611140260433],[123,222,71,-0.0740206987478302],[123,222,72,-0.10263162907961403],[123,222,73,-0.116327784660236],[123,222,74,-0.09660781541232995],[123,222,75,-0.08379993503419084],[123,222,76,-0.11667117077009471],[123,222,77,-0.13742408889324984],[123,222,78,-0.1285961814643195],[123,222,79,-0.11152643784623349],[123,223,64,-0.06696603919093037],[123,223,65,-0.07866135505709425],[123,223,66,-0.038409624049787],[123,223,67,-0.019083233694696937],[123,223,68,-0.027409583237915425],[123,223,69,-0.03611756940936484],[123,223,70,-0.05077498771552472],[123,223,71,-0.07218680262636391],[123,223,72,-0.10048089928312916],[123,223,73,-0.114126242559957],[123,223,74,-0.09462491507473526],[123,223,75,-0.08197087156842697],[123,223,76,-0.11444906854974826],[123,223,77,-0.13482245062504927],[123,223,78,-0.12595379242866409],[123,223,79,-0.10927486773532338],[123,224,64,-0.06588525780124163],[123,224,65,-0.07734605593080796],[123,224,66,-0.037582892434814184],[123,224,67,-0.01856289602391042],[123,224,68,-0.02671258568759501],[123,224,69,-0.0351185081794358],[123,224,70,-0.049472404806387656],[123,224,71,-0.07038165623953832],[123,224,72,-0.09835878021957588],[123,224,73,-0.11194869865010298],[123,224,74,-0.09266631654641178],[123,224,75,-0.08016691518046966],[123,224,76,-0.11224899879855164],[123,224,77,-0.13224523611533506],[123,224,78,-0.12334415837143786],[123,224,79,-0.10705299939412499],[123,225,64,-0.06481715290605718],[123,225,65,-0.07604645621199828],[123,225,66,-0.036774244058829245],[123,225,67,-0.018056730744810342],[123,225,68,-0.02602605204744156],[123,225,69,-0.034132871167374186],[123,225,70,-0.04818873989860859],[123,225,71,-0.06860560499883316],[123,225,72,-0.09626570700339362],[123,225,73,-0.10979567170827621],[123,225,74,-0.0907324139668851],[123,225,75,-0.07838834464301815],[123,225,76,-0.1100715576898527],[123,225,77,-0.12969326243668503],[123,225,78,-0.12076788928075274],[123,225,79,-0.10486117428534747],[123,226,64,-0.06376188813992163],[123,226,65,-0.07476277513253231],[123,226,66,-0.03598360509732491],[123,226,67,-0.01756457545618656],[123,226,68,-0.02535006863365948],[123,226,69,-0.03316097547925037],[123,226,70,-0.04692435677008371],[123,226,71,-0.06685897789819915],[123,226,72,-0.09420210660551313],[123,226,73,-0.10766768270616436],[123,226,74,-0.08882360155777702],[123,226,75,-0.07663543570239076],[123,226,76,-0.10791734191903792],[123,226,77,-0.1271673436445402],[123,226,78,-0.11822558368963842],[123,226,79,-0.10269973011850192],[123,227,64,-0.0627196301000893],[123,227,65,-0.0734952339511638],[123,227,66,-0.03521089481394207],[123,227,67,-0.01708626394884326],[123,227,68,-0.024684721128631754],[123,227,69,-0.03220312810455689],[123,227,70,-0.04567960395254138],[123,227,71,-0.06514208529648724],[123,227,72,-0.0921683950183829],[123,227,73,-0.10556525143475659],[123,227,74,-0.08694027058569696],[123,227,75,-0.07490845858712865],[123,227,76,-0.10578694556076515],[123,227,77,-0.12466828706147895],[123,227,78,-0.11571782552120202],[123,227,79,-0.10056899833243917],[123,228,64,-0.06169054706800391],[123,228,65,-0.07224405436348731],[123,228,66,-0.034456025185875254],[123,228,67,-0.016621626031217855],[123,228,68,-0.02403009346446375],[123,228,69,-0.03125962438600297],[123,228,70,-0.04445481308528557],[123,228,71,-0.06345521691317425],[123,228,72,-0.09016497464068263],[123,228,73,-0.1034888933357964],[123,228,74,-0.0850828065252277],[123,228,75,-0.07320767569727898],[123,228,76,-0.1036809570929792],[123,228,77,-0.12219688976018034],[123,228,78,-0.11324518116022612],[123,228,79,-0.09846930175740677],[123,229,64,-0.06067480781176691],[123,229,65,-0.07100945701728494],[123,229,66,-0.03371890061643959],[123,229,67,-0.016170487417683132],[123,229,68,-0.023386266786991274],[123,229,69,-0.030330746610846317],[123,229,70,-0.04325029742266157],[123,229,71,-0.06179864003418345],[123,229,72,-0.08819223187930876],[123,229,73,-0.10143911653890567],[123,229,74,-0.08325158642056243],[123,229,75,-0.07153333947214487],[123,229,76,-0.10159995658942697],[123,229,77,-0.11975393524810178],[123,229,78,-0.11080819675041331],[123,229,79,-0.09640095245440145],[123,230,64,-0.05967258046851958],[123,230,65,-0.06979166013193952],[123,230,66,-0.03299941773043087],[123,230,67,-0.015732669675575836],[123,230,68,-0.02275331849937856],[123,230,69,-0.02941676272379327],[123,230,70,-0.0420663504941157],[123,230,71,-0.06017259792408463],[123,230,72,-0.08625053496576016],[123,230,73,-0.09941641910343613],[123,230,74,-0.08144697644401422],[123,230,75,-0.0698856904340084],[123,230,76,-0.09954451308201737],[123,230,77,-0.11734019035633281],[123,230,78,-0.10840739571592724],[123,230,79,-0.09436424972932526],[123,231,64,-0.05868403150552464],[123,231,65,-0.06859087822040125],[123,231,66,-0.0322974652478046],[123,231,67,-0.015307990226970167],[123,231,68,-0.02213132138426851],[123,231,69,-0.028517925161090092],[123,231,70,-0.040903244915227246],[123,231,71,-0.05857730844041962],[123,231,72,-0.08434023198353453],[123,231,73,-0.09742128646363449],[123,231,74,-0.07966932964918076],[123,231,75,-0.06826495540495697],[123,231,76,-0.09751518209388274],[123,231,77,-0.11495640233442228],[123,231,78,-0.10604327650522903],[123,231,79,-0.09235947831907607],[123,232,64,-0.05770932475863717],[123,232,65,-0.06740732091203595],[123,232,66,-0.03161292393114026],[123,232,67,-0.014896262401230221],[123,232,68,-0.021520342803299702],[123,232,69,-0.027634469805019855],[123,232,70,-0.0397612313476023],[123,232,71,-0.057012962845370885],[123,232,72,-0.08246164910265887],[123,232,73,-0.09545418907526679],[123,232,74,-0.07791898391615815],[123,232,75,-0.06667134589361536],[123,232,76,-0.09551250334356601],[123,232,77,-0.11260329615235008],[123,232,78,-0.10371631055462988],[123,232,79,-0.09038690674641302],[123,233,64,-0.05674862054678787],[123,233,65,-0.0662411918745644],[123,233,66,-0.030945666602358785],[123,233,67,-0.01449729553444553],[123,233,68,-0.020920443972697614],[123,233,69,-0.02676661505767148],[123,233,70,-0.038640537605101895],[123,233,71,-0.055479724809543544],[123,233,72,-0.08061508901704226],[123,233,73,-0.0935155802614355],[123,233,74,-0.07619626008582199],[123,233,75,-0.06510505664829075],[123,233,76,-0.09353699862032559],[123,233,77,-0.11028157201020786],[123,233,78,-0.10142694046843018],[123,233,79,-0.08844678584015653],[123,234,64,-0.0558020748609607],[123,234,65,-0.06509268783310845],[123,234,66,-0.03029555822410147],[123,234,67,-0.014110895111857164],[123,234,68,-0.020331679313462293],[123,234,69,-0.025914561032425436],[123,234,70,-0.03754136790339963],[123,234,71,-0.05397772960213445],[123,234,72,-0.07880082957985096],[123,234,73,-0.09160589425483545],[123,234,74,-0.07450146027975378],[123,234,75,-0.06356626437266745],[123,234,76,-0.09158916983005282],[123,234,77,-0.10799190305547038],[123,234,78,-0.09917557841191313],[123,234,79,-0.08653934741695067],[123,235,64,-0.0548698386260523],[123,235,65,-0.06396199768421001],[123,235,66,-0.02966245604117925],[123,235,67,-0.013736862949438195],[123,235,68,-0.019754095874521115],[123,235,69,-0.02507848886121097],[123,235,70,-0.036463902249418235],[123,235,71,-0.05250708346130281],[123,235,72,-0.07701912263165353],[123,235,73,-0.08972554443325062],[123,235,74,-0.07283486640199661],[123,235,75,-0.06205512659987997],[123,235,76,-0.08966949721083653],[123,235,77,-0.10573493330710315],[123,235,78,-0.09696260471292417],[123,235,79,-0.08466480312054334],[123,236,64,-0.05395205703392797],[123,236,65,-0.0628493017025708],[123,236,66,-0.02904620977754889],[123,236,67,-0.013374997410890684],[123,236,68,-0.019187732827105907],[123,236,69,-0.024258560115270184],[123,236,70,-0.03540829596684448],[123,236,71,-0.051067863138206444],[123,236,72,-0.07527019301571869],[123,236,73,-0.08787492174469247],[123,236,74,-0.07119673881846326],[123,236,75,-0.060571780720511025],[123,236,76,-0.0877784377167739],[123,236,77,-0.10351127578514775],[123,236,78,-0.09478836666727318],[123,236,79,-0.08282334341429001],[123,237,64,-0.05304886894586534],[123,237,65,-0.06175477083808647],[123,237,66,-0.028446661884271387],[123,237,67,-0.013025093656363977],[123,237,68,-0.01863262102842624],[123,237,69,-0.02345491633675698],[123,237,70,-0.03437467935347559],[123,237,71,-0.049660115607730065],[123,237,72,-0.07355423777440354],[123,237,73,-0.086054393318114],[123,237,74,-0.06958731520941044],[123,237,75,-0.05911634315973817],[123,237,76,-0.08591642356813957],[123,237,77,-0.1013215108437654],[123,237,78,-0.09265317754266933],[123,237,79,-0.0810151367223129],[123,238,64,-0.05216040636248051],[123,238,65,-0.060678566100610516],[123,238,66,-0.027863647833959778],[123,238,67,-0.01268694391928771],[123,238,68,-0.018088782652575512],[123,238,69,-0.022667678678171956],[123,238,70,-0.03336315746581096],[123,238,71,-0.048283857938608954],[123,238,72,-0.07187142552021963],[123,238,73,-0.08426430125523285],[123,238,74,-0.06800680959003375],[123,238,75,-0.057688908698576076],[123,238,76,-0.08408386096557055],[123,238,77,-0.09916618470511014],[123,238,78,-0.09055731577543011],[123,238,79,-0.07924032871449996],[123,239,64,-0.05128679395918062],[123,239,65,-0.059620838029790284],[123,239,66,-0.027296996457321625],[123,239,67,-0.012360337807844466],[123,239,68,-0.017556230886500854],[123,239,69,-0.021896947646341723],[123,239,70,-0.03237381002599445],[123,239,71,-0.04693907731537265],[123,239,72,-0.07022189597485821],[123,239,73,-0.08250496159862875],[123,239,74,-0.06645541149392557],[123,239,75,-0.056289549933935305],[123,239,76,-0.0822811289655198],[123,239,77,-0.09704580819083969],[123,239,78,-0.08850102435380183],[123,239,79,-0.07749904173034519],[123,240,64,-0.05042814868506668],[123,240,65,-0.058581726247162326],[123,240,66,-0.02674653031745211],[123,240,67,-0.012045062627680505],[123,240,68,-0.01703496968870428],[123,240,69,-0.021142802947310926],[123,240,70,-0.03140669144587322],[123,240,71,-0.045625731204228824],[123,240,72,-0.06860575966911767],[123,240,73,-0.08077666347088525],[123,240,74,-0.0649332853137897],[123,240,75,-0.05491831687195105],[123,240,76,-0.08050857851377653],[123,240,77,-0.0949608556474721],[123,240,78,-0.08648451038129527],[123,240,79,-0.07579137433640562],[123,241,64,-0.049584579423142074],[123,241,65,-0.057561359087588894],[123,241,66,-0.026212066117631303],[123,241,67,-0.011740903722574168],[123,241,68,-0.016524993608231744],[123,241,69,-0.020405303428250244],[123,241,70,-0.030461830962679442],[123,241,71,-0.04434374765479863],[123,241,72,-0.06702309779642171],[123,241,73,-0.07907966837919754],[123,241,74,-0.06344056979350929],[123,241,75,-0.05357523664882037],[123,241,76,-0.07876653163343195],[123,241,77,-0.09291176406123618],[123,241,78,-0.08450794481306491],[123,241,79,-0.07411740101195936],[123,242,64,-0.04875618670963607],[123,242,65,-0.056559853307046104],[123,242,66,-0.02569341513852567],[123,242,67,-0.011447644829936739],[123,242,68,-0.016026287661416738],[123,242,69,-0.019684487112244596],[123,242,70,-0.029539232880618403],[123,242,71,-0.04309302572944062],[123,242,72,-0.06547396221239929],[123,242,73,-0.07741420967957605],[123,242,74,-0.06197737766542521],[123,242,75,-0.052260313373228014],[123,242,76,-0.0770552807633244],[123,242,77,-0.09089893235759242],[123,242,78,-0.08257146235806838],[123,242,79,-0.07247717195733325],[123,243,64,-0.04794306251016392],[123,243,65,-0.055577313863656455],[123,243,66,-0.02519038370078372],[123,243,67,-0.01116506844812433],[123,243,68,-0.015538827263724573],[123,243,69,-0.01898037132157506],[123,243,70,-0.028638876912418475],[123,243,71,-0.041873436051742104],[123,243,72,-0.0639583755727846],[123,243,73,-0.07578049219445948],[123,243,74,-0.06054379542641273],[123,243,75,-0.05097352808424325],[123,243,76,-0.07537508824258456],[123,243,77,-0.08892272088006087],[123,243,78,-0.08067516153940753],[123,243,79,-0.07087071301919376],[123,244,64,-0.04714529005038753],[123,244,65,-0.054613833768784245],[123,244,66,-0.024702773649159872],[123,244,67,-0.010892956212683522],[123,244,68,-0.015062578213953954],[123,244,69,-0.018292952884905508],[123,244,70,-0.027760718614726655],[123,244,71,-0.040684821465653775],[123,244,72,-0.06247633160173374],[123,244,73,-0.07417869197728813],[123,244,74,-0.0591398832461323],[123,244,75,-0.04971483881843346],[123,244,76,-0.07372618593655975],[123,244,77,-0.08698345104254578],[123,244,78,-0.07881910490499852],[123,244,79,-0.06929802572697948],[123,245,64,-0.04636294369882462],[123,245,65,-0.05366949400497357],[123,245,66,-0.024230382854475232],[123,245,67,-0.010631089278827919],[123,245,68,-0.014597496728003386],[123,245,69,-0.01762220842362807],[123,245,70,-0.026904689911112764],[123,245,71,-0.03952699779670026],[123,245,72,-0.06102779548255655],[123,245,73,-0.07260895621738338],[123,245,74,-0.057765675000676316],[123,245,75,-0.04848418077985584],[123,245,76,-0.07210877499910538],[123,245,77,-0.08508140514894562],[123,245,78,-0.0770033193805322],[123,245,79,-0.06775908743459658],[123,246,64,-0.04559608889937501],[123,246,65,-0.052744363507422204],[123,246,66,-0.023773005729849226],[123,246,67,-0.01037924870756105],[123,246,68,-0.014143529519316094],[123,246,69,-0.01696809471245146],[123,246,70,-0.02607069969632145],[123,246,71,-0.03839975470666356],[123,246,72,-0.05961270436275117],[123,246,73,-0.07107140327824923],[123,246,74,-0.05642117842464773],[123,246,75,-0.04728146660646251],[123,246,76,-0.07052302576589214],[123,246,77,-0.08321682637341497],[123,246,78,-0.07522779675646508],[123,246,79,-0.066253851561378],[123,247,64,-0.044844782151130906],[123,247,65,-0.051838499205670144],[123,247,66,-0.02333043375783083],[123,247,67,-0.010137215853045506],[123,247,68,-0.01370061392309058],[123,247,69,-0.016330549109209662],[123,247,70,-0.025258634515351673],[123,247,71,-0.03730285663316503],[123,247,72,-0.05823096796519963],[123,247,73,-0.06956612286226915],[123,247,74,-0.0551063753746144],[123,247,75,-0.04610658672642715],[123,247,76,-0.06896907777314075],[123,247,77,-0.08138991889431946],[123,247,78,-0.07349249430067101],[123,247,79,-0.0647822479262975],[123,248,64,-0.04410907103298552],[123,248,65,-0.05095194612212489],[123,248,66,-0.02290245602520655],[123,248,67,-0.009904772748952427],[123,248,68,-0.013268678061283224],[123,248,69,-0.015709490048757706],[123,248,70,-0.02446835931088894],[123,248,71,-0.03623604380561549],[123,248,72,-0.05688246929735021],[123,248,73,-0.06809317629461188],[123,248,74,-0.05382122219676698],[123,248,75,-0.04495940979783541],[123,248,76,-0.06744703989592232],[123,248,77,-0.07960084817458235],[123,248,78,-0.07179733548825279],[123,248,79,-0.063344183169364],[123,249,64,-0.04338899427057191],[123,249,65,-0.05008473752406481],[123,249,66,-0.02248885976247843],[123,249,67,-0.009681702491722517],[123,249,68,-0.012847641045439603],[123,249,69,-0.015104817595789632],[123,249,70,-0.023699718232643607],[123,249,71,-0.03519903332913135],[123,249,72,-0.0555670654502679],[123,249,73,-0.06665259691909381],[123,249,74,-0.052565650191586696],[123,249,75,-0.04383978322521146],[123,249,76,-0.06595699059998562],[123,249,77,-0.0778497413808853],[123,249,78,-0.07014221083998129],[123,249,79,-0.06193954125415075],[123,250,64,-0.04268458184302657],[123,250,65,-0.04923689512572346],[123,250,66,-0.022089430885162496],[123,250,67,-0.009467789618805391],[123,250,68,-0.012437413214350122],[123,250,69,-0.014516414051341573],[123,250,70,-0.02295253550213801],[123,250,71,-0.034191520328108696],[123,250,72,-0.05428458847945819],[123,250,73,-0.06524439059864381],[123,250,74,-0.05133956616827208],[123,250,75,-0.04274753374634001],[123,250,76,-0.0644989783008562],[123,250,77,-0.07613668793391526],[123,250,78,-0.06852697886077481],[123,250,79,-0.060568184045399744],[123,251,64,-0.04199585512707312],[123,251,65,-0.04840842933707161],[123,251,66,-0.02170395453425068],[123,251,67,-0.00926282048011248],[123,251,68,-0.012037896403534873],[123,251,69,-0.013944144607747637],[123,251,70,-0.022226616326560283],[123,251,71,-0.03321317914132997],[123,251,72,-0.05303484635947026],[123,251,73,-0.06386853631298776],[123,251,74,-0.05014285308168175],[123,251,75,-0.041682468082888634],[123,251,76,-0.06307302182380196],[123,251,77,-0.07446174018166485],[123,251,78,-0.06695146706964006],[123,251,79,-0.059229951955669206],[123,252,64,-0.04132282707594984],[123,252,65,-0.047599339555945856],[123,252,66,-0.021332215613394396],[123,252,67,-0.00906658360110519],[123,252,68,-0.011648984243596724],[123,252,69,-0.013387858046843166],[123,252,70,-0.021521747855395526],[123,252,71,-0.03226366456068154],[123,252,72,-0.051817624004418854],[123,252,73,-0.0625249868461781],[123,252,74,-0.04897537074460508],[123,252,75,-0.04064437364842477],[123,252,76,-0.061679110958154586],[123,252,77,-0.07282491418765097],[123,252,78,-0.06541547311256317],[123,252,79,-0.057924664655073135],[123,253,64,-0.04066550243069383],[123,253,65,-0.04680961450018179],[123,253,66,-0.020973999320536448],[123,253,67,-0.008878870036080708],[123,253,68,-0.011270562484489488],[123,253,69,-0.012847387476236415],[123,253,70,-0.020837700173646945],[123,253,71,-0.03134261310577296],[123,253,72,-0.05063268434669727],[123,253,73,-0.061213669556602616],[123,253,74,-0.04783695660820947],[123,253,75,-0.039633019307484973],[123,253,76,-0.06031720709935536],[123,253,77,-0.07122619062578299],[123,253,78,-0.0639187659498891],[123,253,79,-0.056652121838198524],[123,254,64,-0.04002387796131503],[123,254,65,-0.04603923257644359],[123,254,66,-0.02062909167191268],[123,254,67,-0.00869947371037938],[123,254,68,-0.010902509342786805],[123,254,69,-0.01232255109853373],[123,254,70,-0.02017422732559609],[123,254,71,-0.030449644326999387],[123,254,72,-0.04947976946632844],[123,254,73,-0.059934487222154616],[123,254,74,-0.0467274266036037],[123,254,75,-0.03864815617946807],[123,254,76,-0.058987243972028335],[123,254,77,-0.06966551577352874],[123,254,78,-0.062461087109836645],[123,254,79,-0.05541210404237723],[123,255,64,-0.03939794273544103],[123,255,65,-0.045288162282511014],[123,255,66,-0.02029728001655783],[123,255,67,-0.008528191750418242],[123,255,68,-0.010544695869111395],[123,255,69,-0.011813153008512009],[123,255,70,-0.01953106836323314],[123,255,71,-0.029584362129880675],[123,255,72,-0.04835860176362257],[123,255,73,-0.05868731895334984],[123,255,74,-0.04564657603758905],[123,255,75,-0.037689518481272964],[123,255,76,-0.057689128427363644],[123,255,77,-0.06814280259501052],[123,255,78,-0.06104215199995497],[123,255,79,-0.05420437351160921],[123,256,64,-0.0387876784120217],[123,256,65,-0.04455636263981596],[123,256,66,-0.019978353539615485],[123,256,67,-0.008364824800586637],[123,256,68,-0.010196986332924813],[123,256,69,-0.011318984013327144],[123,256,70,-0.01890794841366309],[123,256,71,-0.02874635611380137],[123,256,72,-0.047268885168018915],[123,256,73,-0.05747202116726328],[123,256,74,-0.04459418053578762],[123,256,75,-0.03675682440273041],[123,256,76,-0.05642274130806007],[123,256,77,-0.06665793190563354],[123,256,78,-0.05966165126846806],[123,256,79,-0.053028675100527396],[123,257,64,-0.03819305955772146],[123,257,65,-0.04384378365308524],[123,257,66,-0.019672103752940043],[123,257,67,-0.00820917732619159],[123,257,68,-0.009859238621950232],[123,257,69,-0.010839822470971166],[123,257,70,-0.018304579759987793],[123,257,71,-0.02793520291857798],[123,257,72,-0.04621030637622776],[123,257,73,-0.056288428615285074],[123,257,74,-0.04356999702649684],[123,257,75,-0.03584977700904597],[123,257,76,-0.05518793837409316],[123,257,77,-0.06521075360988453],[123,257,78,-0.05831925220764796],[123,257,79,-0.051884737212926545],[123,258,64,-0.03761405398369043],[123,258,65,-0.043150366794035916],[123,258,66,-0.019378324971678726],[123,258,67,-0.008061057901806452],[123,258,68,-0.009531304653604255],[123,258,69,-0.010375435142366095],[123,258,70,-0.017720662930417717],[123,258,71,-0.027150467572645012],[123,258,72,-0.04518253611307878],[123,258,73,-0.055136355457875715],[123,258,74,-0.042573764758819244],[123,258,75,-0.03496806516467107],[123,258,76,-0.053984551282632465],[123,258,77,-0.06380108800401572],[123,258,78,-0.057014600191586697],[123,258,79,-0.05077227276953787],[123,259,64,-0.03705062310042842],[123,259,65,-0.04247604550612321],[123,259,66,-0.01909681477567448],[123,259,67,-0.007920279484492492],[123,259,68,-0.009213030795882994],[123,259,69,-0.009925578052627924],[123,259,70,-0.017155887790586424],[123,259,71,-0.02639170483697808],[123,259,72,-0.04418523040874106],[123,259,73,-0.05401559637965191],[123,259,74,-0.04160520634879522],[123,259,75,-0.03411136447319658],[123,259,76,-0.052812388615476914],[123,259,77,-0.06242872713541002],[123,259,78,-0.055747320140951746],[123,259,79,-0.04969098019986244],[123,260,64,-0.0365027222885108],[123,260,65,-0.041820745727426806],[123,260,66,-0.018827374454703345],[123,260,67,-0.007786659671500259],[123,260,68,-0.008904258295247387],[123,260,69,-0.00948999735721168],[123,260,70,-0.016609934634287907],[123,260,71,-0.025658460539223063],[123,260,72,-0.043218031886272],[123,260,73,-0.05292592773832999],[123,260,74,-0.040664028847484254],[123,260,75,-0.03327933822807196],[123,260,76,-0.051671236947467114],[123,260,77,-0.061093436210547324],[123,260,78,-0.05451701800756819],[123,260,79,-0.04864054445304436],[123,261,64,-0.03597030128301548],[123,261,65,-0.04118438642886423],[123,261,66,-0.018569809436736726],[123,261,67,-0.007660020942199205],[123,261,68,-0.008604823709177195],[123,261,69,-0.009068430208870135],[123,261,70,-0.016082475268153935],[123,261,71,-0.024950272892899424],[123,261,72,-0.042280571053781045],[123,261,73,-0.05186710874128495],[123,261,74,-0.0397499248251865],[123,261,75,-0.032471638369189315],[123,261,76,-0.050560861949458684],[123,261,77,-0.05979495504366193],[123,261,78,-0.053323282271951614],[123,261,79,-0.04762063802294731],[123,262,64,-0.035453304569528644],[123,262,65,-0.04056688016499232],[123,262,66,-0.018323929698554137],[123,262,67,-0.0075401908840851874],[123,262,68,-0.00831455934115461],[123,262,69,-0.008660605621537717],[123,262,70,-0.015573174086031302],[123,262,71,-0.024266673796886257],[123,262,72,-0.04137246759578474],[123,262,73,-0.050838882643691276],[123,262,74,-0.03886257346622279],[123,262,75,-0.03168790644058014],[123,262,76,-0.049481009519553386],[123,262,77,-0.05853299953834244],[123,262,78,-0.0521656854471856],[123,262,79,-0.04663092198276247],[123,263,64,-0.03495167178966876],[123,263,65,-0.039968133634753995],[123,263,66,-0.018089550158178525],[123,263,67,-0.007427002402827985],[123,263,68,-0.00803329367595796],[123,263,69,-0.008266245327473665],[123,263,70,-0.01508168912911037],[123,263,71,-0.023607190110784913],[123,263,72,-0.04049333165865602],[123,263,73,-0.049840977962451426],[123,263,74,-0.03800164166894616],[123,263,75,-0.030927774544710695],[123,263,76,-0.0484314069364323],[123,263,77,-0.05730726319452837],[123,263,78,-0.05104378558283282],[123,263,79,-0.045671047024658726],[123,264,64,-0.034465338154143633],[123,264,65,-0.039388048249639006],[123,264,66,-0.01786649104875615],[123,264,67,-0.0073202939164398965],[123,264,68,-0.007760851813282938],[123,264,69,-0.00788506462423836],[123,264,70,-0.014607673128158591],[123,264,71,-0.02297134490214407],[123,264,72,-0.03964276512541346],[123,264,73,-0.04887310970038898],[123,264,74,-0.03716678514593711],[123,264,75,-0.03019086628911524],[123,264,76,-0.04741176402881693],[123,264,77,-0.05611741863359477],[123,264,78,-0.04995712776288484],[123,264,79,-0.044740654500189374],[123,265,64,-0.03399423486140438],[123,265,65,-0.038826520706810246],[123,265,66,-0.017654578273613882],[123,265,67,-0.007219909533726391],[123,265,68,-0.007497055897816971],[123,265,69,-0.007516773208285001],[123,265,70,-0.014150774524478556],[123,265,71,-0.022358658661883152],[123,265,72,-0.038820362875401276],[123,265,73,-0.047934980575422795],[123,265,74,-0.0363576495195868],[123,265,75,-0.029476797721335133],[123,265,76,-0.04642177435524609],[123,265,77,-0.05496311913444207],[123,265,78,-0.04890524559205596],[123,265,79,-0.04383937745734707],[123,266,64,-0.03353828952002023],[123,266,65,-0.038283443564845386],[123,266,66,-0.01745364374233998],[123,266,67,-0.007125699217264046],[123,266,68,-0.007241725544019237],[123,266,69,-0.007161075992189722],[123,266,70,-0.013710638466510562],[123,266,71,-0.021768650484631936],[123,266,72,-0.03802571402474777],[123,266,73,-0.047026282249709984],[123,266,74,-0.03557387140854882],[123,266,75,-0.028785178248378316],[123,266,76,-0.045461116388550236],[123,266,77,-0.05384400017376517],[123,266,78,-0.047887662665034955],[123,266,79,-0.04296684167034952],[123,267,64,-0.03309742657298076],[123,267,65,-0.03775870581985884],[123,267,66,-0.01726352568785609],[123,267,67,-0.007037518931248237],[123,267,68,-0.006994678254004903],[123,267,69,-0.006817673902788654],[123,267,70,-0.013286907779294378],[123,267,71,-0.021200839211072135],[123,267,72,-0.037258403143824025],[123,267,73,-0.04614669655403121],[123,267,74,-0.034815079500832395],[123,267,75,-0.028115611537173978],[123,267,76,-0.04452945469962229],[123,267,77,-0.052759680963959915],[123,267,78,-0.046903894013644414],[123,267,79,-0.04212266665845008],[123,268,64,-0.032671567722177726],[123,268,65,-0.037252193479852716],[123,268,66,-0.017084068964526657],[123,268,67,-0.006955230774604934],[123,268,68,-0.006755729827044353],[123,268,69,-0.006486264657713706],[123,268,70,-0.01287922390427872],[123,268,71,-0.02065474452971211],[123,268,72,-0.036518011448234175],[123,268,73,-0.045295896702953475],[123,268,74,-0.034080895609571664],[123,268,75,-0.027467696392728263],[123,268,76,-0.0436264411352821],[123,268,77,-0.051709765982391756],[123,268,78,-0.04595344752715487],[123,268,79,-0.04130646669024308],[123,269,64,-0.03226063235138071],[123,269,65,-0.0367637901352393],[123,269,66,-0.016915125327431974],[123,269,67,-0.006878703099822012],[123,269,68,-0.006524694759319745],[123,269,69,-0.006166543518055285],[123,269,70,-0.012487227807248058],[123,269,71,-0.020129888035871225],[123,269,72,-0.03580411796018637],[123,269,73,-0.04447354849658193],[123,269,74,-0.03337093570778683],[123,269,75,-0.02684102761092919],[123,269,76,-0.04275171598525238],[123,269,77,-0.050693846486037995],[123,269,78,-0.045035825341314825],[123,269,79,-0.04051785177012492],[123,270,64,-0.03186453794610014],[123,270,65,-0.036293377523591845],[123,270,66,-0.016756553693022043],[123,270,67,-0.00680781061802628],[123,270,68,-0.00630138663272445],[123,270,69,-0.005858204015122916],[123,270,70,-0.012110560852417145],[123,270,71,-0.01962579424598987],[123,270,72,-0.03511630063741046],[123,270,73,-0.043679311505003086],[123,270,74,-0.032684810938739366],[123,270,75,-0.026235196803202174],[123,270,76,-0.04190490913350109],[123,270,77,-0.04971150200582499],[123,270,78,-0.04415052519197945],[123,270,79,-0.03975642860377758],[123,271,64,-0.031483200508768454],[123,271,65,-0.03584083608674987],[123,271,66,-0.016608220381405074],[123,271,67,-0.006742434490853279],[123,271,68,-0.006085618491599175],[123,271,69,-0.0055609386494893005],[123,271,70,-0.011748865640997051],[123,271,71,-0.019141991565690426],[123,271,72,-0.03445413746707584],[123,271,73,-0.042912840231778215],[123,271,74,-0.03202212859874035],[123,271,75,-0.025649793190434016],[123,271,76,-0.041085641189420444],[123,271,77,-0.04876230181525999],[123,271,78,-0.04329704172950261],[123,271,79,-0.039021801539700876],[123,272,64,-0.031116534967742384],[123,272,65,-0.03540604551850792],[123,272,66,-0.016469999340590288],[123,272,67,-0.0066824624097095815],[123,272,68,-0.005877203206435908],[123,272,69,-0.005274439560731709],[123,272,70,-0.011401786812795916],[123,272,71,-0.018678013210320775],[123,272,72,-0.03381720752245758],[123,272,73,-0.04217378525312668],[123,272,74,-0.03138249308954557],[123,272,75,-0.025084404363820707],[123,272,76,-0.040293524594551114],[123,272,77,-0.04784580636826706],[123,272,78,-0.04247486779036291],[123,272,79,-0.038313573484018294],[123,273,64,-0.03076445557867095],[123,273,65,-0.03498888530118986],[123,273,66,-0.01634177235302674],[123,273,67,-0.006627788663043162],[123,273,68,-0.00567595382369704],[123,273,69,-0.0049983991664940075],[123,273,70,-0.011068971809650382],[123,273,71,-0.01823339807699139],[123,273,72,-0.033205091980365635],[123,273,73,-0.0414617943296942],[123,273,74,-0.030765506837723715],[123,273,75,-0.02453861701050542],[123,273,76,-0.03952816470078082],[123,273,77,-0.04696156870141775],[123,273,78,-0.041683495622757596],[123,273,79,-0.03763134678593294],[123,274,64,-0.030426876316839806],[123,274,65,-0.03458923522950139],[123,274,66,-0.016223429224823387],[123,274,67,-0.006578314192267695],[123,274,68,-0.005481683901016885],[123,274,69,-0.004732510769703871],[123,274,70,-0.010750071599726262],[123,274,71,-0.0178076915673958],[123,274,72,-0.03261737509762841],[123,274,73,-0.04077651348806947],[123,274,74,-0.03017077117864282],[123,274,75,-0.024012017602094204],[123,274,76,-0.038789160816190014],[123,274,77,-0.04610913579605683],[123,274,78,-0.04092241806318696],[123,274,79,-0.036974724091395975],[123,275,64,-0.03010371125913681],[123,275,65,-0.03420697592011814],[123,275,66,-0.01611486795803663],[123,275,67,-0.006533946636992352],[123,275,68,-0.00529420782716878],[123,275,69,-0.004476469132968869],[123,275,70,-0.010444741361924583],[123,275,71,-0.01740044636093744],[123,275,72,-0.0320536451451505],[123,275,73,-0.04011758806944832],[123,275,74,-0.02959788720295248],[123,275,75,-0.02350419304432741],[123,275,76,-0.03807610721492357],[123,275,77,-0.04528804989608575],[123,275,78,-0.040191129661281945],[123,275,79,-0.036343309162687416],[123,276,64,-0.02979487495432683],[123,276,65,-0.03384198930553102],[123,276,66,-0.01601599490641446],[123,276,67,-0.006494600370206898],[123,276,68,-0.0051133411262787205],[123,276,69,-0.004229971019355742],[123,276,70,-0.01015264112983217],[123,276,71,-0.01701122313791885],[123,276,72,-0.03151349529830352],[123,276,73,-0.039484663743087484],[123,276,74,-0.0290464565636699],[123,276,75,-0.023014731286376558],[123,276,76,-0.037388594107694385],[123,276,77,-0.04449784977745124],[123,276,78,-0.03948912775037472],[123,276,79,-0.035736707661759674],[123,277,64,-0.02950028278037494],[123,277,65,-0.03349415911074519],[123,277,66,-0.015926724914993053],[123,277,67,-0.0064601965240851265],[123,277,68,-0.004938900745887767],[123,277,69,-0.003992715698940387],[123,277,70,-0.009873436394843246],[123,277,71,-0.016639591252760072],[123,277,72,-0.03099652448262566],[123,277,73,-0.038877387482420735],[123,277,74,-0.028516082242204064],[123,277,75,-0.02254322188842219],[123,277,76,-0.03672620856973854],[123,277,77,-0.043738071965651666],[123,277,78,-0.038815913461531265],[123,277,79,-0.03515452789533709],[123,278,64,-0.029219851287578858],[123,278,65,-0.033163371311471],[123,278,66,-0.015846981443911133],[123,278,67,-0.006430663007046783],[123,278,68,-0.004770705328548235],[123,278,69,-0.003764405420661823],[123,278,70,-0.009606798668233153],[123,278,71,-0.016285129357389513],[123,278,72,-0.03050233817399512],[123,278,73,-0.03829540850192103],[123,278,74,-0.028006369271850965],[123,278,75,-0.02208925654632862],[123,278,76,-0.03608853542323988],[123,278,77,-0.04300825189781703],[123,278,78,-0.03817099267895901],[123,278,79,-0.03459638151988343],[123,279,64,-0.028953498526299398],[123,279,65,-0.03284951457249004],[123,279,66,-0.015776696676778702],[123,279,67,-0.006405934512700103],[123,279,68,-0.004608575466730073],[123,279,69,-0.0035447458491583853],[123,279,70,-0.009352406002110817],[123,279,71,-0.015947425975113186],[123,279,72,-0.03003054915261808],[123,279,73,-0.03773837915299017],[123,279,74,-0.027516925417483795],[123,279,75,-0.021652429572382805],[123,279,76,-0.03547515807143087],[123,279,77,-0.042307925026152715],[123,279,78,-0.037553876934879125],[123,279,79,-0.03406188420465657],[123,280,64,-0.02870114435811356],[123,280,65,-0.03255248066493208],[123,280,66,-0.015715811613913114],[123,280,67,-0.006385952521280313],[123,280,68,-0.004452333940911379],[123,280,69,-0.0033334464664020085],[123,280,70,-0.009109943469309698],[123,280,71,-0.015626080025413408],[123,280,72,-0.029580778210340067],[123,280,73,-0.03720595577735538],[123,280,74,-0.027047361810349533],[123,280,75,-0.021232338331217345],[123,280,76,-0.034885659281769746],[123,280,77,-0.041636627859761854],[123,280,78,-0.03696408424212007],[123,280,79,-0.03355065625118622],[123,281,64,-0.028462710749221597],[123,281,65,-0.03227216486121659],[123,281,66,-0.01566427615069252],[123,281,67,-0.0063706652941543426],[123,281,68,-0.004301805940790703],[123,281,69,-0.003130220938051646],[123,281,70,-0.008879103602379508],[123,281,71,-0.015320701300242746],[123,281,72,-0.029152654810922617],[123,281,73,-0.036697799516618945],[123,281,74,-0.02659729353704177],[123,281,75,-0.020828583630155936],[123,281,76,-0.03431962191575387],[123,281,77,-0.04099389894205764],[123,281,78,-0.036401139862815915],[123,281,79,-0.03306232316758475],[123,282,64,-0.02823812204494972],[123,282,65,-0.032008466306435085],[123,282,66,-0.015622049141224281],[123,282,67,-0.00636002786193292],[123,282,68,-0.004156819269630175],[123,282,69,-0.002934787444539135],[123,282,70,-0.008659586791917966],[123,282,71,-0.015030910892459943],[123,282,72,-0.02874581770303911],[123,282,73,-0.03621357707675845],[123,282,74,-0.0261663401818637],[123,282,75,-0.020440770063333905],[123,282,76,-0.033776629603083454],[123,282,77,-0.04037927976114824],[123,282,78,-0.035864577011703695],[123,282,79,-0.03259651619617813],[123,283,64,-0.028027305224209445],[123,283,65,-0.031761288364977276],[123,283,66,-0.0155890984474694],[123,283,67,-0.0063540020067014424],[123,283,68,-0.004017204531813097],[123,283,69,-0.002746868976996792],[123,283,70,-0.008451101644567445],[123,283,71,-0.014756341577147246],[123,283,72,-0.02835991548586171],[123,283,73,-0.03575296144653314],[123,283,74,-0.025754126321944872],[123,283,75,-0.020068506309057616],[123,283,76,-0.03325626735804149],[123,283,77,-0.039792315590752254],[123,283,78,-0.035353937492611835],[123,283,79,-0.03215287279301409],[123,284,64,-0.027830190132760464],[123,284,65,-0.031530538941194605],[123,284,66,-0.015565400973876842],[123,284,67,-0.006352556238824987],[123,284,68,-0.0038827953037408693],[123,284,69,-0.0025661935981838584],[123,284,70,-0.008253365301030966],[123,284,71,-0.014496638146578388],[123,284,72,-0.027994607127177207],[123,284,73,-0.03531563256886527],[123,284,74,-0.02536028197458121],[123,284,75,-0.019711405379944237],[123,284,76,-0.032758122136073896],[123,284,77,-0.03923255625932663],[123,284,78,-0.03486877226678723],[123,284,79,-0.03173103705784218],[123,285,64,-0.027646709694121373],[123,285,65,-0.03131613077289507],[123,285,66,-0.015550942687505937],[123,285,67,-0.006355665768740206],[123,285,68,-0.0037534282882458],[123,285,69,-0.0023924946686173913],[123,285,70,-0.008066103714486874],[123,285,71,-0.014251457699631799],[123,285,72,-0.027649562434028923],[123,285,73,-0.034901277964373804],[123,285,74,-0.02498444299637346],[123,285,75,-0.01936908482545817],[123,285,76,-0.03228178332866152],[123,285,77,-0.0386995568452026],[123,285,78,-0.034408641951747504],[123,285,79,-0.03133066011319531],[123,286,64,-0.027476800096965914],[123,286,65,-0.031117981696458623],[123,286,66,-0.015545718623527851],[123,286,67,-0.006363312474098425],[123,286,68,-0.0036289434527410733],[123,286,69,-0.0022255110381499883],[123,286,70,-0.007889051889798196],[123,286,71,-0.01402046988645883],[123,286,72,-0.027324462475935965],[123,286,73,-0.034509593306342734],[123,286,74,-0.02462625143383852],[123,286,75,-0.019041166886529813],[123,286,76,-0.03182684319468196],[123,286,77,-0.0381928782956253],[123,286,78,-0.03397311724936881],[123,286,79,-0.030951400431228068],[123,287,64,-0.027320400957818295],[123,287,65,-0.03093601488233249],[123,287,66,-0.01554973287589695],[123,287,67,-0.006375484862565337],[123,287,68,-0.0035091841513539565],[123,287,69,-0.002064987203236143],[123,287,70,-0.007721954083880937],[123,287,71,-0.013803357109181444],[123,287,72,-0.027018999960747504],[123,287,73,-0.034140282946471014],[123,287,74,-0.02428535582523049],[123,287,75,-0.018727278601981586],[123,287,76,-0.031392897226525975],[123,287,77,-0.03771208796764844],[123,287,78,-0.03356177930190134],[123,287,79,-0.030592924106967314],[123,288,64,-0.02717745545783015],[123,288,65,-0.03077015903963237],[123,288,66,-0.015562998572874857],[123,288,67,-0.006392178030520722],[123,288,68,-0.0033939972313111813],[123,288,69,-0.0019106734301234031],[123,288,70,-0.00756456396756274],[123,288,71,-0.013599814679357877],[123,288,72,-0.026732879563197948],[123,288,73,-0.033793060390813125],[123,288,74,-0.023961411453370354],[123,288,75,-0.018427051866520938],[123,288,76,-0.03097954444929425],[123,288,77,-0.03725676008887567],[123,288,78,-0.0331742199745679],[123,288,79,-0.0302549050766176],[123,289,64,-0.027047910849518332],[123,289,65,-0.030620348989282283],[123,289,66,-0.01558553819925118],[123,289,67,-0.006413393597065584],[123,289,68,-0.00328323232885973],[123,289,69,-0.0017623242666264657],[123,289,70,-0.007416642595690922],[123,289,71,-0.013409548620933492],[123,289,72,-0.026465816440355654],[123,289,73,-0.03346764782857003],[123,289,74,-0.023654080127012134],[123,289,75,-0.018140123038962404],[123,289,76,-0.030586387255841237],[123,289,77,-0.036826476022738176],[123,289,78,-0.032810042589284126],[123,289,79,-0.029937026492148962],[123,290,64,-0.026931721886452098],[123,290,65,-0.030486529140391228],[123,290,66,-0.01561738649346719],[123,290,67,-0.006439139439269925],[123,290,68,-0.0031767354508679393],[123,290,69,-0.001619685808590307],[123,290,70,-0.0072779410960384225],[123,290,71,-0.013232257153951306],[123,290,72,-0.026217522408683087],[123,290,73,-0.03316376957126039],[123,290,74,-0.023363027282967467],[123,290,75,-0.017866130042090846],[123,290,76,-0.030213028730382025],[123,290,77,-0.03642082390838487],[123,290,78,-0.03246886642479636],[123,290,79,-0.029638990636620767],[123,291,64,-0.026828849649954238],[123,291,65,-0.030368652242154588],[123,291,66,-0.015658588973904923],[123,291,67,-0.00646942958971977],[123,291,68,-0.0030743520714907892],[123,291,69,-0.001482502018242784],[123,291,70,-0.007148209484123257],[123,291,71,-0.013067640381267174],[123,291,72,-0.025987713898209086],[123,291,73,-0.032881156885878754],[123,291,74,-0.02308792480870848],[123,291,75,-0.017604714961433714],[123,291,76,-0.029859075343684847],[123,291,77,-0.036039400054305684],[123,291,78,-0.0321503249634376],[123,291,79,-0.029360514078248575],[123,292,64,-0.026739259823994974],[123,292,65,-0.03026667766027872],[123,292,66,-0.015709200183592315],[123,292,67,-0.006504284240932089],[123,292,68,-0.0029759308170617775],[123,292,69,-0.0013505220022996436],[123,292,70,-0.007027206666292895],[123,292,71,-0.012915411066333376],[123,292,72,-0.02577612042598343],[123,292,73,-0.03261955263492451],[123,292,74,-0.02282845329741982],[123,292,75,-0.01735552602033746],[123,292,76,-0.029524139040591264],[123,292,77,-0.03568180975639581],[123,292,78,-0.03185406350723468],[123,292,79,-0.02910132204601764],[123,293,64,-0.026662922692594737],[123,293,65,-0.030180571416329648],[123,293,66,-0.015769283590231827],[123,293,67,-0.006543729682841937],[123,293,68,-0.002881323471756343],[123,293,69,-0.0012234999142750208],[123,293,70,-0.006914700337404147],[123,293,71,-0.012775294499214622],[123,293,72,-0.025582484617455114],[123,293,73,-0.03237871145013099],[123,293,74,-0.02258430202189215],[123,293,75,-0.017118217358414456],[123,293,76,-0.029207837146182327],[123,293,77,-0.035347667309300744],[123,293,78,-0.031579739086350804],[123,293,79,-0.02886114840282505],[123,294,64,-0.02659981312610547],[123,294,65,-0.030110306209518673],[123,294,66,-0.015838911484823085],[123,294,67,-0.006587798233802102],[123,294,68,-0.002790384928674368],[123,294,69,-0.0011011947454997561],[123,294,70,-0.006810466736035805],[123,294,71,-0.012647028212811691],[123,294,72,-0.025406562101504652],[123,294,73,-0.03215839982057313],[123,294,74,-0.022355168851154163],[123,294,75,-0.01689244875465751],[123,294,76,-0.02890979218943093],[123,294,77,-0.035036595929459034],[123,294,78,-0.03132702031464773],[123,294,79,-0.02863973561531715],[123,295,64,-0.026549910538031157],[123,295,65,-0.030055861402108513],[123,295,66,-0.015918164861981162],[123,295,67,-0.0066365281655855896],[123,295,68,-0.002702973120962989],[123,295,69,-9.833700731928172E-4],[123,295,70,-0.006714290350702719],[123,295,71,-0.01253036165038737],[123,295,72,-0.025248121356550586],[123,295,73,-0.03195839613483266],[123,295,74,-0.022140760129450026],[123,295,75,-0.016677885313821163],[123,295,76,-0.028629631661197592],[123,295,77,-0.034748227593331765],[123,295,78,-0.031095587167652317],[123,295,79,-0.028436834665875602],[123,296,64,-0.026513198810904515],[123,296,65,-0.03001722296674475],[123,296,66,-0.016007133280690998],[123,296,67,-0.006689963622041329],[123,296,68,-0.0026189489329251077],[123,296,69,-8.697937647451586E-4],[123,296,70,-0.0066259635758990024],[123,296,71,-0.01242505578361257],[123,296,72,-0.025106943506878077],[123,296,73,-0.031778490676480975],[123,296,74,-0.021940790517413995],[123,296,75,-0.016474197115770087],[123,296,76,-0.02836698770481033],[123,296,77,-0.034482202788310275],[123,296,78,-0.030885130680657708],[123,296,79,-0.028252204905229047],[123,297,64,-0.026489666189693388],[123,297,65,-0.029994383393951524],[123,297,66,-0.016105914704121493],[123,297,67,-0.006748154530994348],[123,297,68,-0.002538176091008007],[123,297,69,-7.60237637191089E-4],[123,297,70,-0.0065452863165569196],[123,297,71,-0.01233088268011523],[123,297,72,-0.024982822068196277],[123,297,73,-0.03161848557209831],[123,297,74,-0.02175498279529183],[123,297,75,-0.016281058827494928],[123,297,76,-0.028121496737441225],[123,297,77,-0.03423817017367055],[123,297,78,-0.03069535256450626],[123,297,79,-0.028085613844112952],[123,298,64,-0.026479305228692282],[123,298,65,-0.029987341644192606],[123,298,66,-0.016214615401994557],[123,298,67,-0.0068111565926941755],[123,298,68,-0.002460521117098232],[123,298,69,-6.544771520856182E-4],[123,298,70,-0.006472065619580517],[123,298,71,-0.012247625098519989],[123,298,72,-0.024875562719475584],[123,298,73,-0.031478194768191296],[123,298,74,-0.021583067704275764],[123,298,75,-0.016098149352783142],[123,298,76,-0.027892799074839818],[123,298,77,-0.03401578622232374],[123,298,78,-0.03052596480910757],[123,298,79,-0.027936836954264004],[123,299,64,-0.02648212922553746],[123,299,65,-0.029996119331318103],[123,299,66,-0.016333365862329734],[123,299,67,-0.0068790470588142765],[123,299,68,-0.002385868831077539],[123,299,69,-5.523064108851119E-4],[123,299,70,-0.006406130383212472],[123,299,71,-0.012175090955243913],[123,299,72,-0.02478499774563365],[123,299,73,-0.03135745848919427],[123,299,74,-0.0214247980932187],[123,299,75,-0.015925165608244633],[123,299,76,-0.027680552475376395],[123,299,77,-0.033814728594373594],[123,299,78,-0.030376702869206604],[123,299,79,-0.027805670925189638],[123,300,64,-0.02649819416245943],[123,300,65,-0.030020782290953014],[123,300,66,-0.01646234199751408],[123,300,67,-0.006951945716366033],[123,300,68,-0.0023141429425246134],[123,300,69,-4.535581113851295E-4],[123,300,70,-0.006347350922904812],[123,300,71,-0.012113132557343366],[123,300,72,-0.024711005157230195],[123,300,73,-0.03125616229108177],[123,300,74,-0.021279967590038907],[123,300,75,-0.015761840744965883],[123,300,76,-0.027484450017128077],[123,300,77,-0.03363471374704188],[123,300,78,-0.030247343024858465],[123,300,79,-0.02769195105416635],[123,301,64,-0.02652757034994419],[123,301,65,-0.03006141259273944],[123,301,66,-0.016601737545576388],[123,301,67,-0.00702998779742555],[123,301,68,-0.00224527924814183],[123,301,69,-3.5807675186705546E-4],[123,301,70,-0.0062956124271341014],[123,301,71,-0.012061620358219598],[123,301,72,-0.024653482942519976],[123,301,73,-0.031174211839753805],[123,301,74,-0.021148385575839302],[123,301,75,-0.01560791921645882],[123,301,76,-0.02730419530435895],[123,301,77,-0.03347547234792255],[123,301,78,-0.030137678029960823],[123,301,79,-0.027595527405201464],[123,302,64,-0.026570338057875335],[123,302,65,-0.03011810420499369],[123,302,66,-0.016751759825584446],[123,302,67,-0.0071133199521602655],[123,302,68,-0.002179221577904362],[123,302,69,-2.657142582163094E-4],[123,302,70,-0.0062508105410323846],[123,302,71,-0.01202043856771267],[123,302,72,-0.024612344907441856],[123,302,73,-0.031111529024884357],[123,302,74,-0.021029873258872858],[123,302,75,-0.015463152706990975],[123,302,76,-0.02713949826453533],[123,302,77,-0.0333367450320379],[123,302,78,-0.03004751290216422],[123,302,79,-0.02751626093711674],[123,303,64,-0.026626587636695183],[123,303,65,-0.03019096307542999],[123,303,66,-0.016912629866655746],[123,303,67,-0.007202100555435109],[123,303,68,-0.0021159220034317836],[123,303,69,-1.7632978197389227E-4],[123,303,70,-0.006212851054482252],[123,303,71,-0.011989484816060379],[123,303,72,-0.024587520518658368],[123,303,73,-0.0310680520328191],[123,303,74,-0.020924263672963017],[123,303,75,-0.015327299937241258],[123,303,76,-0.02699007473564388],[123,303,77,-0.03321828187767218],[123,303,78,-0.029976664397874702],[123,303,79,-0.027454023307155344],[123,304,64,-0.02669641964455536],[123,304,65,-0.03028010720774571],[123,304,66,-0.0170845825532996],[123,304,67,-0.0072965000522518],[123,304,68,-0.002055341073498374],[123,304,69,-8.978948999029442E-5],[123,304,70,-0.006181649570601428],[123,304,71,-0.011968669802442987],[123,304,72,-0.024578954733485935],[123,304,73,-0.031043735413894654],[123,304,74,-0.020831401685472286],[123,304,75,-0.015200126479150887],[123,304,76,-0.026855646018714492],[123,304,77,-0.033119841817172195],[123,304,78,-0.029924960429476233],[123,304,79,-0.027408696648400076],[123,305,64,-0.026779944980173047],[123,305,65,-0.030385666733279595],[123,305,66,-0.017267866786472706],[123,305,67,-0.007396701342875149],[123,305,68,-0.001997448077694374],[123,305,69,-5.966344506641777E-6],[123,305,70,-0.006157131152629439],[123,305,71,-0.011957916926726302],[123,305,72,-0.02458660781612971],[123,305,73,-0.031038550144645446],[123,305,74,-0.020751144016352703],[123,305,75,-0.015081404581468713],[123,305,76,-0.02673593839506236],[123,305,77,-0.03304119198034272],[123,305,78,-0.02989223942219635],[123,305,79,-0.027380173320602157],[123,306,64,-0.026877285021138647],[123,306,65,-0.030507783976948977],[123,306,66,-0.017462745659717765],[123,306,67,-0.007502900208543132],[123,306,68,-0.0019422213392399355],[123,306,69,7.526012768776526E-5],[123,306,70,-0.006139229947021296],[123,306,71,-0.011957161902857864],[123,306,72,-0.024610455139589912],[123,306,73,-0.031052483685423807],[123,306,74,-0.020683359269936204],[123,306,75,-0.014970913007640273],[123,306,76,-0.026630682607832707],[123,306,77,-0.032982106967983725],[123,306,78,-0.02987834960792943],[123,306,79,-0.02736835563410135],[123,307,64,-0.026988571767440978],[123,307,65,-0.030646613516661016],[123,307,66,-0.017669496649741507],[123,307,67,-0.0076153057787108885],[123,307,68,-0.0018896485379670713],[123,307,69,1.5400407853943316E-4],[123,307,70,-0.006127888780336971],[123,307,71,-0.011966352352206016],[123,307,72,-0.024650486972548513],[123,307,73,-0.031085540034001102],[123,307,74,-0.020627927981236718],[123,307,75,-0.01486843688784177],[123,307,76,-0.026539613307501497],[123,307,77,-0.03294236805303011],[123,307,78,-0.02988314825321468],[123,307,79,-0.027373155546592712],[123,308,64,-0.027113947990014403],[123,308,65,-0.0308023222353985],[123,308,66,-0.017888411820793194],[123,308,67,-0.007734141040835883],[123,308,68,-0.0018397270644790742],[123,308,69,2.3037359614891213E-4],[123,308,70,-0.006123058727310506],[123,308,71,-0.01198544737498399],[123,308,72,-0.024706708250506252],[123,308,73,-0.031137739775779646],[123,308,74,-0.020584742678668378],[123,308,75,-0.014773767587124398],[123,308,76,-0.02646246846106393],[123,308,77,-0.032921762306680175],[123,308,78,-0.029906500818468726],[123,308,79,-0.027394494332589215],[123,309,64,-0.027253567384122896],[123,309,65,-0.03097508936515933],[123,309,66,-0.018119798042185106],[123,309,67,-0.007859643393744262],[123,309,68,-0.001792464406472962],[123,309,69,3.044709782096935E-4],[123,309,70,-0.0061246986472576525],[123,309,71,-0.012014417097738213],[123,309,72,-0.02477913833038743],[123,309,73,-0.031209120131288053],[123,309,74,-0.02055370796519434],[123,309,75,-0.014686702591785174],[123,309,76,-0.026398988724711747],[123,309,77,-0.032920081646812926],[123,309,78,-0.029948280045464345],[123,309,79,-0.027432302225512815],[123,310,64,-0.027407594727411933],[123,310,65,-0.031165106521916],[123,310,66,-0.018363977218292537],[123,310,67,-0.007992065245662002],[123,310,68,-0.0017478785681856912],[123,310,69,3.7639302354720795E-4],[123,310,70,-0.0061327746857571174],[123,310,71,-0.012053242194720261],[123,310,72,-0.024867810727775747],[123,310,73,-0.031299735001668244],[123,310,74,-0.020534740620032205],[123,310,75,-0.014607045416233701],[123,310,76,-0.02634891677986908],[123,310,77,-0.03293712180590677],[123,310,78,-0.030008364969943063],[123,310,79,-0.027486518032434407],[123,311,64,-0.02757620604247888],[123,311,65,-0.03137257773075162],[123,311,66,-0.018621286530363254],[123,311,67,-0.008131674658027182],[123,311,68,-0.001705998523890418],[123,311,69,4.4623134402907926E-4],[123,311,70,-0.006147259738331557],[123,311,71,-0.012101913380824222],[123,311,72,-0.024972772835913662],[123,311,73,-0.03140965501291941],[123,311,74,-0.02052776972316325],[123,311,75,-0.01453460553278874],[123,311,76,-0.0263119966325421],[123,311,77,-0.03297268121560879],[123,311,78,-0.030086639856170605],[123,311,79,-0.027557088721585486],[123,312,64,-0.02775958876380915],[123,312,65,-0.03159771944030046],[123,312,66,-0.018892078689452245],[123,312,67,-0.008278756036219343],[123,312,68,-0.0016668647063130472],[123,312,69,5.140726993276888E-4],[123,312,70,-0.006168132872624181],[123,312,71,-0.01216043087361257],[123,312,72,-0.025094085625540805],[123,312,73,-0.031538967559683675],[123,312,74,-0.020532736804985418],[123,312,75,-0.014469198326980017],[123,312,76,-0.026287972876004723],[123,312,77,-0.03302655980502266],[123,312,78,-0.030182993050154587],[123,312,79,-0.02764396898285637],[123,313,64,-0.027957941908923322],[123,313,65,-0.0318407605255954],[123,313,66,-0.01917672219977973],[123,313,67,-0.008433610868351631],[123,313,68,-0.001630529530772814],[123,313,69,5.799993572233388E-4],[123,313,70,-0.006195378705352143],[123,313,71,-0.012228803821816037],[123,313,72,-0.02523182332461101],[123,313,73,-0.03168777684939547],[123,313,74,-0.020549596023550776],[123,313,75,-0.014410645081081587],[123,313,76,-0.026276589916923592],[123,313,77,-0.033098557709722136],[123,313,78,-0.030297315748176044],[123,313,79,-0.027747120761596585],[123,314,64,-0.02817147625357983],[123,314,65,-0.03210194227840376],[123,314,66,-0.01947560163180182],[123,314,67,-0.008596558513276216],[123,314,68,-0.001597057955776322],[123,314,69,6.440894823382019E-4],[123,314,70,-0.006228986730112989],[123,314,71,-0.012307049697568889],[123,314,72,-0.025386073076896554],[123,314,73,-0.031856203947649715],[123,314,74,-0.020578314371924537],[123,314,75,-0.014358772988752693],[123,314,76,-0.02627759116511497],[123,314,77,-0.03318847388845625],[123,314,78,-0.030429500677243974],[123,314,79,-0.027866512766148578],[123,315,64,-0.028400414510851853],[123,315,65,-0.03238151838408973],[123,315,66,-0.019789117904255006],[123,315,67,-0.008767937038936576],[123,315,68,-0.001566528080695848],[123,315,69,7.064175564056847E-4],[123,315,70,-0.006268950591907959],[123,315,71,-0.01239519364950641],[123,315,72,-0.025556934578443546],[123,315,73,-0.03204438682564772],[123,315,74,-0.020618871918270127],[123,315,75,-0.014313415203787603],[123,315,76,-0.026290718187201908],[123,315,77,-0.033296104644462844],[123,315,78,-0.03057944068403407],[123,315,79,-0.028002119949644234],[123,316,64,-0.028644991513871513],[123,316,65,-0.032679754884005235],[123,316,66,-0.020117688574406833],[123,316,67,-0.00894810411216157],[123,316,68,-0.0015390317810426172],[123,316,69,7.67054833391104E-4],[123,316,70,-0.0063152673040521206],[123,316,71,-0.012493267813745748],[123,316,72,-0.025744519690819197],[123,316,73,-0.032252480410604516],[123,316,74,-0.02067126208134005],[123,316,75,-0.014274410926109165],[123,316,76,-0.026315709824535596],[123,316,77,-0.03342124204829454],[123,316,78,-0.03074702722886856],[123,316,79,-0.028153922966715185],[123,317,64,-0.028905454402005572],[123,317,65,-0.032996930122372745],[123,317,66,-0.02046174813572326],[123,317,67,-0.009137437940960969],[123,317,68,-0.0015146753817278321],[123,317,69,8.260698329737694E-4],[123,317,70,-0.006367936402963907],[123,317,71,-0.012601310579673248],[123,317,72,-0.025948952030066863],[123,317,73,-0.0324806566399984],[123,317,74,-0.020735491944104394],[123,317,75,-0.014241605528259177],[123,317,76,-0.026352301275839197],[123,317,77,-0.033563672259062115],[123,317,78,-0.030932148781302876],[123,317,79,-0.028321907605884256],[123,318,64,-0.029182062810172882],[123,318,65,-0.033333334676567794],[123,318,66,-0.020821748322115783],[123,318,67,-0.009336338270299437],[123,318,68,-0.0014935803685413851],[123,318,69,8.835288761100859E-4],[123,318,70,-0.00642695903615289],[123,318,71,-0.012719365807374435],[123,318,72,-0.026170366530261474],[123,318,73,-0.032729104520540064],[123,318,74,-0.020811582608286028],[123,318,75,-0.014214850725739346],[123,318,76,-0.026400223145131574],[123,318,77,-0.033723173741019026],[123,318,78,-0.031134689113921133],[123,318,79,-0.028506064198525038],[123,319,64,-0.02947507122056974],[123,319,65,-0.0336892571115816],[123,319,66,-0.021198154943407856],[123,319,67,-0.009545218185791876],[123,319,68,-0.0014758811126043742],[123,319,69,9.39480579497862E-4],[123,319,70,-0.006492350583873887],[123,319,71,-0.012847484227153327],[123,319,72,-0.026408901665727708],[123,319,73,-0.03299801544473106],[123,319,74,-0.02089955368878457],[123,319,75,-0.01419399263167122],[123,319,76,-0.026459196668265943],[123,319,77,-0.03389951522431455],[123,319,78,-0.03135452642160302],[123,319,79,-0.028706388575984974],[124,-64,64,-0.1090555448143689],[124,-64,65,-0.07023093919681109],[124,-64,66,-0.11032373347496455],[124,-64,67,-0.0802472196879573],[124,-64,68,-0.043758291353492414],[124,-64,69,-0.06085832454686842],[124,-64,70,-0.08167436495919189],[124,-64,71,-0.04342486808517289],[124,-64,72,-0.0145244932786029],[124,-64,73,-0.06083043711680238],[124,-64,74,-0.17623880593139904],[124,-64,75,-0.27717288484672836],[124,-64,76,-0.22910694076406637],[124,-64,77,-0.17198336146419163],[124,-64,78,-0.16490017946482619],[124,-64,79,-0.23787707829907132],[124,-63,64,-0.10979508626110249],[124,-63,65,-0.07160982225431854],[124,-63,66,-0.1103996560779496],[124,-63,67,-0.08043000136141627],[124,-63,68,-0.04345504990110756],[124,-63,69,-0.05910922577307228],[124,-63,70,-0.08028919063875116],[124,-63,71,-0.04390479857642985],[124,-63,72,-0.015498124644198849],[124,-63,73,-0.06125527192797224],[124,-63,74,-0.17541694012178505],[124,-63,75,-0.27424219257984395],[124,-63,76,-0.22603760263767772],[124,-63,77,-0.16946135076599436],[124,-63,78,-0.16253078479875085],[124,-63,79,-0.2345529761698281],[124,-62,64,-0.11051017069907373],[124,-62,65,-0.07295381828546606],[124,-62,66,-0.11044195850635535],[124,-62,67,-0.08058211405749278],[124,-62,68,-0.043150579754369],[124,-62,69,-0.057404685703384147],[124,-62,70,-0.07894423415321795],[124,-62,71,-0.044387651070983414],[124,-62,72,-0.016463946153521564],[124,-62,73,-0.061677008896463346],[124,-62,74,-0.1745996456579997],[124,-62,75,-0.27133885876295327],[124,-62,76,-0.22300762135941124],[124,-62,77,-0.1669873027851005],[124,-62,78,-0.16021739994271136],[124,-62,79,-0.23129257431919234],[124,-61,64,-0.11119928730629992],[124,-61,65,-0.07426189295430385],[124,-61,66,-0.11045064629427785],[124,-61,67,-0.08070349463346313],[124,-61,68,-0.04284449880586686],[124,-61,69,-0.055743833688978846],[124,-61,70,-0.07763812173529666],[124,-61,71,-0.044871946795478006],[124,-61,72,-0.017420784654821254],[124,-61,73,-0.06209437185025454],[124,-61,74,-0.1737853910204305],[124,-61,75,-0.26846159239929285],[124,-61,76,-0.22001599369211264],[124,-61,77,-0.16455972992052476],[124,-61,78,-0.15795783208338682],[124,-61,79,-0.2280934633682597],[124,-60,64,-0.11186099643798172],[124,-60,65,-0.07553307037938337],[124,-60,66,-0.11042572848141231],[124,-60,67,-0.08079408802960295],[124,-60,68,-0.042536442303431024],[124,-60,69,-0.054125808985899505],[124,-60,70,-0.07636951574669792],[124,-60,71,-0.04535630718765456],[124,-60,72,-0.018367600517207885],[124,-60,73,-0.06250621980632041],[124,-60,74,-0.1729727393727476],[124,-60,75,-0.26560910965504037],[124,-60,76,-0.2170616731025253],[124,-60,77,-0.16217711289379116],[124,-60,78,-0.15574989570371495],[124,-60,79,-0.22495323761794436],[124,-59,64,-0.11249389453055895],[124,-59,65,-0.07676639874483585],[124,-59,66,-0.11036720121963846],[124,-59,67,-0.0808538445323275],[124,-59,68,-0.04222606233574665],[124,-59,69,-0.052549757602234994],[124,-59,70,-0.07513709090515129],[124,-59,71,-0.04583939254264988],[124,-59,72,-0.019303391991176384],[124,-59,73,-0.06291143038192822],[124,-59,74,-0.17216023576158845],[124,-59,75,-0.26278006637545015],[124,-59,76,-0.2141435568630959],[124,-59,77,-0.15983791120766594],[124,-59,78,-0.1535914093836214],[124,-59,79,-0.2218694759288785],[124,-58,64,-0.1130966095188749],[124,-58,65,-0.07796094618385203],[124,-58,66,-0.11027504531938438],[124,-58,67,-0.0808827173234355],[124,-58,68,-0.041913026209373525],[124,-58,69,-0.05101483219623535],[124,-58,70,-0.0739395333397362],[124,-58,71,-0.046319898794008975],[124,-58,72,-0.020227191982270857],[124,-58,73,-0.0633088969841884],[124,-58,74,-0.17134640480138097],[124,-58,75,-0.25997305749709376],[124,-58,76,-0.21126048645071643],[124,-58,77,-0.15754056297688188],[124,-58,78,-0.15148019497980142],[124,-58,79,-0.21883974137610268],[124,-57,64,-0.11366779628999252],[124,-57,65,-0.07911579666179598],[124,-57,66,-0.11014922390059619],[124,-57,67,-0.08088066012594222],[124,-57,68,-0.04159701490055716],[124,-57,69,-0.04952019203471784],[124,-57,70,-0.07277553965541467],[124,-57,71,-0.046796554278863],[124,-57,72,-0.021138064828749352],[124,-57,73,-0.06369752600687165],[124,-57,74,-0.1705297483593102],[124,-57,75,-0.25718661652796027],[124,-57,76,-0.2084112480004016],[124,-57,77,-0.15528348475474982],[124,-57,78,-0.1494140767531308],[124,-57,79,-0.21586158086655832],[124,-56,64,-0.11420613218297032],[124,-56,65,-0.08023004586724988],[124,-56,66,-0.1099896801554582],[124,-56,67,-0.08084762495955138],[124,-56,68,-0.04127772158533906],[124,-56,69,-0.04806500300048391],[124,-56,70,-0.0716438159952876],[124,-56,71,-0.047268116473022724],[124,-56,72,-0.022035103051980066],[124,-56,73,-0.0640762339959186],[124,-56,74,-0.16970874321199364],[124,-56,75,-0.25441921508112086],[124,-56,76,-0.20559457281426355],[124,-56,77,-0.15306507136709904],[124,-56,78,-0.14739088045538457],[124,-56,79,-0.21293252472848057],[124,-55,64,-0.1147103125587501],[124,-55,65,-0.08130279713403157],[124,-55,66,-0.10979633523671223],[124,-55,67,-0.08078356001877296],[124,-55,68,-0.040954850250985955],[124,-55,69,-0.046648437639555146],[124,-55,70,-0.07054307710067542],[124,-55,71,-0.04773336870963307],[124,-55,72,-0.022917424092277403],[124,-55,73,-0.06444394479936497],[124,-55,74,-0.16888183869845438],[124,-55,75,-0.2516692624802113],[124,-55,76,-0.20280913793333646],[124,-55,77,-0.15088369576080954],[124,-55,78,-0.1454084323888742],[124,-55,79,-0.21005008629152877],[124,-54,64,-0.1151790464642088],[124,-54,65,-0.0823331574171561],[124,-54,66,-0.10956908628511511],[124,-54,67,-0.08068840768606649],[124,-54,68,-0.04062811439131869],[124,-54,69,-0.04526967523922861],[124,-54,70,-0.06947204536945345],[124,-54,71,-0.048191116895034185],[124,-54,72,-0.023784167042824697],[124,-54,73,-0.06479958671760921],[124,-54,74,-0.1680474543945339],[124,-54,75,-0.24893510545581582],[124,-54,76,-0.2000535667806366],[124,-54,77,-0.14873770887493068],[124,-54,78,-0.14346455845324904],[124,-54,79,-0.20721176147721598],[124,-53,64,-0.1156111477521771],[124,-53,65,-0.08332030331323459],[124,-53,66,-0.10930789806113068],[124,-53,67,-0.0805621728005631],[124,-53,68,-0.04029727147730748],[124,-53,69,-0.04392794151317807],[124,-53,70,-0.06842951264343085],[124,-53,71,-0.04864023158646063],[124,-53,72,-0.024634512750921357],[124,-53,73,-0.0651421524629924],[124,-53,74,-0.1672041416648205],[124,-53,75,-0.24621527312849467],[124,-53,76,-0.19732662953904068],[124,-53,77,-0.14662559025522565],[124,-53,78,-0.14155723097930675],[124,-53,79,-0.20441524513325518],[124,-52,64,-0.11600618959089311],[124,-52,65,-0.08426396694462321],[124,-52,66,-0.10901343964299934],[124,-52,67,-0.08040540034428473],[124,-52,68,-0.03996236308026323],[124,-52,69,-0.04262276617895281],[124,-52,70,-0.06741475821135122],[124,-52,71,-0.04907996036387144],[124,-52,72,-0.025467849951568946],[124,-52,73,-0.06547113015879465],[124,-52,74,-0.1663516932725223],[124,-52,75,-0.243510123269725],[124,-52,76,-0.19462857792364793],[124,-52,77,-0.14454695380622082],[124,-52,78,-0.1396855554993051],[124,-52,79,-0.20165987808157834],[124,-51,64,-0.11636416781075212],[124,-51,65,-0.08516420474795067],[124,-51,66,-0.10868673740991965],[124,-51,67,-0.08021891574498109],[124,-51,68,-0.03962357536164632],[124,-51,69,-0.04135380379145592],[124,-51,70,-0.06642729214035248],[124,-51,71,-0.0495097729232658],[124,-51,72,-0.026283711806525677],[124,-51,73,-0.06578628185983391],[124,-51,74,-0.1654905178533835],[124,-51,75,-0.24082086349152437],[124,-51,76,-0.1919603317375423],[124,-51,77,-0.14250193053016333],[124,-51,78,-0.1378491686004702],[124,-51,79,-0.19894576206393463],[124,-50,64,-0.11668517562131103],[124,-50,65,-0.08602116229632996],[124,-50,66,-0.10832885218575725],[124,-50,67,-0.08000358215270659],[124,-50,68,-0.03928111381940001],[124,-50,69,-0.04012069090264031],[124,-50,70,-0.06546663484074695],[124,-50,71,-0.04992920776543626],[124,-50,72,-0.027081700277553817],[124,-50,73,-0.06608742998226311],[124,-50,74,-0.16462107263754333],[124,-50,75,-0.2381486930842029],[124,-50,76,-0.18932277692832175],[124,-50,77,-0.14049063833154693],[124,-50,78,-0.13604771880315522],[124,-50,79,-0.19627299762877973],[124,-49,64,-0.11696939851391416],[124,-49,65,-0.08683507019384541],[124,-49,66,-0.10794087456599383],[124,-49,67,-0.07976029609813473],[124,-49,68,-0.03893520112539012],[124,-49,69,-0.038923046075630276],[124,-49,70,-0.06453231624591824],[124,-49,71,-0.05033786984753833],[124,-49,72,-0.02786148410274656],[124,-49,73,-0.06637445465803303],[124,-49,74,-0.16374385859540452],[124,-49,75,-0.23549479724930647],[124,-49,76,-0.1867167619243493],[124,-49,77,-0.13851317969319987],[124,-49,78,-0.134280864190787],[124,-49,79,-0.19364168032016882],[124,-48,64,-0.11721711084018428],[124,-48,65,-0.08760624114725987],[124,-48,66,-0.1075239220237357],[124,-48,67,-0.07948998448893323],[124,-48,68,-0.03858607567272412],[124,-48,69,-0.0377604707366069],[124,-48,70,-0.06362387618828295],[124,-48,71,-0.05073542898312718],[124,-48,72,-0.028622797100073635],[124,-48,73,-0.06664729217032628],[124,-48,74,-0.16285941860298347],[124,-48,75,-0.23286034604699768],[124,-48,76,-0.1841430978625732],[124,-48,77,-0.1365696422460153],[124,-48,78,-0.1325482728017174],[124,-48,79,-0.19105190096784053],[124,-47,64,-0.11742867228657995],[124,-47,65,-0.08833506692281728],[124,-47,66,-0.10707913603335643],[124,-47,67,-0.07919360162668887],[124,-47,68,-0.03823399015569027],[124,-47,69,-0.036632550085298615],[124,-47,70,-0.06274086476468242],[124,-47,71,-0.05112161815057226],[124,-47,72,-0.02936543638169635],[124,-47,73,-0.06690593329814268],[124,-47,74,-0.16196833552274792],[124,-47,75,-0.2302464933699408],[124,-47,76,-0.18160255887297674],[124,-47,77,-0.13466009933604556],[124,-47,78,-0.13084962295018657],[124,-47,79,-0.1885037459225497],[124,-46,64,-0.11760452426070052],[124,-46,65,-0.08902201520320543],[124,-46,66,-0.10660767922151215],[124,-46,67,-0.07887212625458413],[124,-46,68,-0.03787921018557627],[124,-46,69,-0.03553885405705254],[124,-46,70,-0.0618828426901009],[124,-46,71,-0.05149623172027753],[124,-46,72,-0.030089260489487693],[124,-46,73,-0.06715042158091229],[124,-46,74,-0.16107123021403102],[124,-46,75,-0.22765437595067564],[124,-46,76,-0.1790958824191147],[124,-46,77,-0.13278461058935415],[124,-46,78,-0.12918460348179212],[124,-46,79,-0.18599729724389186],[124,-45,64,-0.11774518620459468],[124,-45,65,-0.08966762635936373],[124,-45,66,-0.1061107325546483],[124,-45,67,-0.07852655864534254],[124,-45,68,-0.037522012945248324],[124,-45,69,-0.03447893832954216],[124,-45,70,-0.06104938163863322],[124,-45,71,-0.0518591236108321],[124,-45,72,-0.030794187461869824],[124,-45,73,-0.06738085151367051],[124,-45,74,-0.16016875948658513],[124,-45,75,-0.22508511240887233],[124,-45,76,-0.17662376969389904],[124,-45,77,-0.13094322247486195],[124,-45,78,-0.12755291396865606],[124,-45,79,-0.18353263284748192],[124,-44,64,-0.11785125185032655],[124,-44,65,-0.09027251015178014],[124,-44,66,-0.10558949257174968],[124,-44,67,-0.07815791773851583],[124,-44,68,-0.037162685885264043],[124,-44,69,-0.03345234536756324],[124,-44,70,-0.06024006457102812],[124,-44,71,-0.05221020538438014],[124,-44,72,-0.03148019284222532],[124,-44,73,-0.06759736668344361],[124,-44,74,-0.15926161401073113],[124,-44,75,-0.22253980234472345],[124,-44,76,-0.1741868860698654],[124,-44,77,-0.12913596886562625],[124,-44,78,-0.12595426484964226],[124,-44,79,-0.1811098266183367],[124,-43,64,-0.11792338543270157],[124,-43,65,-0.0908373423756501],[124,-43,66,-0.10504516867066771],[124,-43,67,-0.07776723833570194],[124,-43,68,-0.036801525464132685],[124,-43,69,-0.03245860549968894],[124,-43,70,-0.0594544860483269],[124,-43,71,-0.05254944429127143],[124,-43,72,-0.03214730763888563],[124,-43,73,-0.06780015785721621],[124,-43,74,-0.1583505161970751],[124,-43,75,-0.2200195254842431],[124,-43,76,-0.17178586160301065],[124,-43,77,-0.12736287159898038],[124,-43,78,-0.12438837752087117],[124,-43,79,-0.17872894849700968],[124,-42,64,-0.1179623178735203],[124,-42,65,-0.09136286146372229],[124,-42,66,-0.10447898045558651],[124,-42,67,-0.07735556836145249],[124,-42,68,-0.036438835934868054],[124,-42,69,-0.03149723802061608],[124,-42,70,-0.05869225253112675],[124,-42,71,-0.052876861273743705],[124,-42,72,-0.0327956162463788],[124,-42,73,-0.0679894610314994],[124,-42,74,-0.1574362180581929],[124,-42,75,-0.21752534088170455],[124,-42,76,-0.16942129158902694],[124,-42,77,-0.12562394103581503],[124,-42,78,-0.1228549843815555],[124,-42,79,-0.17639006454463038],[124,-41,64,-0.11796884295151967],[124,-41,65,-0.09184986506048658],[124,-41,66,-0.10389215515287624],[124,-41,67,-0.07692396619724477],[124,-41,68,-0.036074928179946626],[124,-41,69,-0.03056775231352553],[124,-41,70,-0.05795298266436616],[124,-41,71,-0.05319252893834478],[124,-41,72,-0.03342525433755711],[124,-41,73,-0.06816555545342694],[124,-41,74,-0.1565194990643654],[124,-41,75,-0.21505828618418063],[124,-41,76,-0.16709373717082512],[124,-41,77,-0.12391917661945781],[124,-41,78,-0.12135382884024049],[124,-41,79,-0.1740932369928777],[124,-40,64,-0.11794381347175242],[124,-40,65,-0.0922992065809748],[124,-40,66,-0.10328592510207436],[124,-40,67,-0.07647349809533499],[124,-40,68,-0.03571011859658154],[124,-40,69,-0.029669648987091873],[124,-40,70,-0.057236307547714055],[124,-40,71,-0.05349656950656714],[124,-40,72,-0.0340364067359613],[124,-40,73,-0.06832876162300433],[124,-40,74,-0.15560116400492444],[124,-40,75,-0.21261937696270147],[124,-40,76,-0.16480372599610377],[124,-40,77,-0.12224856743456104],[124,-40,78,-0.1198846652863708],[124,-40,79,-0.17183852428458019],[124,-39,64,-0.11788813744743798],[124,-39,65,-0.09271179176675537],[124,-39,66,-0.10266152532795825],[124,-39,67,-0.07600523567847348],[124,-39,68,-0.035344728033768084],[124,-39,69,-0.028802421021885943],[124,-39,70,-0.056541870991616366],[124,-39,71,-0.05378915275272079],[124,-39,72,-0.03462930527734197],[124,-39,73,-0.0684794392856727],[124,-39,74,-0.1546820408660857],[124,-39,75,-0.21020960611398218],[124,-39,76,-0.16255175292351348],[124,-39,77,-0.12061209276630377],[124,-39,78,-0.11844725903186736],[124,-39,79,-0.16962598111022933],[124,-38,64,-0.11780277430705904],[124,-38,65,-0.09308857525147571],[124,-38,66,-0.10202019119938231],[124,-38,67,-0.07552025353112637],[124,-38,68,-0.03497908078257235],[124,-38,69,-0.02796555492143841],[124,-38,70,-0.05586932975941435],[124,-38,71,-0.0540704939379709],[124,-38,72,-0.03520422666911795],[124,-38,73,-0.06861798542416754],[124,-38,74,-0.15376297873573605],[124,-38,75,-0.20782994333637156],[124,-38,76,-0.1603382807760002],[124,-38,77,-0.11900972266030879],[124,-38,78,-0.117041386227349],[124,-38,79,-0.16745565844547539],[124,-37,64,-0.11768873113890425],[124,-37,65,-0.09343055714776276],[124,-37,66,-0.10136315617997467],[124,-37,67,-0.07501962688721708],[124,-37,68,-0.034613503620880365],[124,-37,69,-0.02715853186352826],[124,-37,70,-0.055218353796073136],[124,-37,71,-0.05434085174913876],[124,-37,72,-0.03576149035623098],[124,-37,73,-0.06874483225829589],[124,-37,74,-0.15284484574507398],[124,-37,75,-0.20548133468325958],[124,-37,76,-0.15816374113984594],[124,-37,77,-0.11744141848369018],[124,-37,78,-0.11566683375749715],[124,-37,79,-0.1653276035943791],[124,-36,64,-0.11754705898449855],[124,-36,65,-0.09373877966656523],[124,-36,66,-0.10069164967506772],[124,-36,67,-0.07450442941864617],[124,-36,68,-0.034248324913439626],[124,-36,69,-0.026380828847406227],[124,-36,70,-0.054588626444029585],[124,-36,71,-0.05460052625037065],[124,-36,72,-0.03630145640134577],[124,-36,73,-0.06886044526071264],[124,-36,74,-0.1519285270562365],[124,-36,75,-0.20316470219658891],[124,-36,76,-0.156028535207699],[124,-36,77,-0.11590713348747197],[124,-36,78,-0.11432339911972626],[124,-36,79,-0.16324186024271017],[124,-35,64,-0.11737884919206092],[124,-35,65,-0.09401432377975784],[124,-35,66,-0.10000689497898461],[124,-35,67,-0.07397573112854952],[124,-35,68,-0.03388387376807779],[124,-35,69,-0.025631919833227466],[124,-35,70,-0.05397984464702821],[124,-35,71,-0.05484985685565434],[124,-35,72,-0.03682452338720151],[124,-35,73,-0.06896532119659385],[124,-35,74,-0.151014922904665],[124,-35,75,-0.20088094362290634],[124,-35,76,-0.15393303466400243],[124,-35,77,-0.11440681337078264],[124,-35,78,-0.11301089029031705],[124,-35,79,-0.1611984685254325],[124,-34,64,-0.11718522984028068],[124,-34,65,-0.09425830593600373],[124,-34,66,-0.09931010732603966],[124,-34,67,-0.07343459635246066],[124,-34,68,-0.03352047924856472],[124,-34,69,-0.024911276870088025],[124,-34,70,-0.05339171914273951],[124,-34,71,-0.05508922032962465],[124,-34,72,-0.03733112634839263],[124,-34,73,-0.06905998619454201],[124,-34,74,-0.1501049467041838],[124,-34,75,-0.1986309322138246],[124,-34,76,-0.1518775826110442],[124,-34,77,-0.11294039684708372],[124,-34,78,-0.11172912558185356],[124,-34,79,-0.1591974651120634],[124,-33,64,-0.11696736224232429],[124,-33,65,-0.0944718748395354],[124,-33,66,-0.09860249204833897],[124,-33,67,-0.07288208187023905],[124,-33,68,-0.03315846964461682],[124,-33,69,-0.024218371209574686],[124,-33,70,-0.05282397464525605],[124,-33,71,-0.055319028823906824],[124,-33,72,-0.037821734739635494],[124,-33,73,-0.06914499385579988],[124,-33,74,-0.14919952322232036],[124,-33,75,-0.19641551661252354],[124,-33,76,-0.1498624945339317],[124,-33,77,-0.11150781621279192],[124,-33,78,-0.11047793349572528],[124,-33,79,-0.15723888331339217],[124,-32,64,-0.11672643753908951],[124,-32,65,-0.0946562083006515],[124,-32,66,-0.09788524284270954],[124,-32,67,-0.07231923513084361],[124,-32,68,-0.032798171799117176],[124,-32,69,-0.023552674401825513],[124,-32,70,-0.0522763500184336],[124,-32,71,-0.05553972795565443],[124,-32,72,-0.03829685044699631],[124,-32,73,-0.06922092340823521],[124,-32,74,-0.14829958683258687],[124,-32,75,-0.19423552082734863],[124,-32,76,-0.14788805930258053],[124,-32,77,-0.11010899791846682],[124,-32,78,-0.10925715257308985],[124,-32,79,-0.15532275321256211],[124,-31,64,-0.11646367339028739],[124,-31,65,-0.09481251016632367],[124,-31,66,-0.09715954014879193],[124,-31,67,-0.07174709259171295],[124,-31,68,-0.032439910492638],[124,-31,69,-0.02291365937158392],[124,-31,70,-0.05174859844131441],[124,-31,71,-0.05575179493472689],[124,-31,72,-0.038757005848332075],[124,-31,73,-0.06928837791130021],[124,-31,74,-0.1474060798500118],[124,-31,75,-0.19209174429337064],[124,-31,76,-0.1459545402089402],[124,-31,77,-0.10874386314287117],[124,-31,78,-0.10806663124764535],[124,-31,79,-0.15344910182336466],[124,-30,64,-0.1161803107713018],[124,-30,65,-0.09494200733871459],[124,-30,66,-0.09642654963987997],[124,-30,67,-0.0711666781740444],[124,-30,68,-0.032084007885205774],[124,-30,69,-0.02230080147204219],[124,-30,70,-0.05124048756694894],[124,-30,71,-0.055955736745558766],[124,-30,72,-0.03920276192879208],[124,-30,73,-0.06934798251772883],[124,-30,74,-0.146519950955595],[124,-30,75,-0.18998496202239565],[124,-30,76,-0.14406217603762722],[124,-30,77,-0.107412328370155],[124,-30,78,-0.10690622770331432],[124,-30,79,-0.1516179532782571],[124,-29,64,-0.11587761088293079],[124,-29,65,-0.09504594688859382],[124,-29,66,-0.09568742082743226],[124,-29,67,-0.07057900183459198],[124,-29,68,-0.03173078301490433],[124,-29,69,-0.02171357951438952],[124,-29,70,-0.05075179967583614],[124,-29,71,-0.05615208838922785],[124,-29,72,-0.03963470645669762],[124,-29,73,-0.06940038279718068],[124,-29,74,-0.14564215371464626],[124,-29,75,-0.18791592484147254],[124,-29,76,-0.14221118216802148],[124,-29,77,-0.1061143059702998],[124,-29,78,-0.1057758097396549],[124,-29,79,-0.14982932904823792],[124,-28,64,-0.11555685218068859],[124,-28,65,-0.09512559327024944],[124,-28,66,-0.09494328577996411],[124,-28,67,-0.06998505825437479],[124,-28,68,-0.03138055135297465],[124,-28,69,-0.021151476771457928],[124,-28,70,-0.05028233182544573],[124,-28,71,-0.05634141119100514],[124,-28,72,-0.0400534522248723],[124,-28,73,-0.06944624312675605],[124,-28,74,-0.14477364519353136],[124,-28,75,-0.1858853597197629],[124,-28,76,-0.1404017517059908],[124,-28,77,-0.10484970478303918],[124,-28,78,-0.10467525464770018],[124,-28,79,-0.14808324819653207],[124,-27,64,-0.11521932752967658],[124,-27,65,-0.0951822256438542],[124,-27,66,-0.09419525795657414],[124,-27,67,-0.06938582564422402],[124,-27,68,-0.0310336244149025],[124,-27,69,-0.02061398195410791],[124,-27,70,-0.04983189599731208],[124,-27,71,-0.05652429117826746],[124,-27,72,-0.04045963536210047],[124,-27,73,-0.06948624515288905],[124,-27,74,-0.14391538467880094],[124,-27,75,-0.18389397018335815],[124,-27,76,-0.13863405664342884],[124,-27,77,-0.10361843070546958],[124,-27,78,-0.10360444909874894],[124,-27,79,-0.14637972766778848],[124,-26,64,-0.11486634149025357],[124,-26,65,-0.09521713531049845],[124,-26,66,-0.09344443115482139],[124,-26,67,-0.06878226466656008],[124,-26,68,-0.030690309426729536],[124,-26,69,-0.0201005901591387],[124,-26,70,-0.04940031924310896],[124,-26,71,-0.05670133753313877],[124,-26,72,-0.04085391371887917],[124,-26,73,-0.0695210863285825],[124,-26,74,-0.14306833250199574],[124,-26,75,-0.1819424368172302],[124,-26,76,-0.1369082490436749],[124,-26,77,-0.10242038728341993],[124,-26,78,-0.10256328904830728],[124,-26,79,-0.14471878261412405],[124,-25,64,-0.11449920773930558],[124,-25,65,-0.09523162326470509],[124,-25,66,-0.0926918785724778],[124,-25,67,-0.06817531747259203],[124,-25,68,-0.03035090904587998],[124,-25,69,-0.019610803787920444],[124,-25,70,-0.04898744383130014],[124,-25,71,-0.056873181123999625],[124,-25,72,-0.04123696533138869],[124,-25,73,-0.06955147852968467],[124,-25,74,-0.14223344897305545],[124,-25,75,-0.1800314178533962],[124,-25,76,-0.13522446225103357],[124,-25,77,-0.10125547630674195],[124,-25,78,-0.10155167965729799],[124,-25,79,-0.14310042675921678],[124,-24,64,-0.11411924663125973],[124,-24,65,-0.09522699786861076],[124,-24,66,-0.09193865198227927],[124,-24,67,-0.06756590685373925],[124,-24,68,-0.030015721135661415],[124,-24,69,-0.01914413343517673],[124,-24,70,-0.04859312739597685],[124,-24,71,-0.057040473119619337],[124,-24,72,-0.04160948696724098],[124,-24,73,-0.06957814675351559],[124,-24,74,-0.14141169342474016],[124,-24,75,-0.17816154984414714],[124,-24,76,-0.13358281212264586],[124,-24,77,-0.10012359840868806],[124,-24,78,-0.10056953523248559],[124,-24,79,-0.14152467280144912],[124,-23,64,-0.11372778290230712],[124,-23,65,-0.09520457265135014],[124,-23,66,-0.09118578101838141],[124,-23,67,-0.06695493550565822],[124,-23,68,-0.029685038592406867],[124,-23,69,-0.018700098747470417],[124,-23,70,-0.0482172430894029],[124,-23,71,-0.05720388368919688],[124,-23,72,-0.04197219275608047],[124,-23,73,-0.06960182790264696],[124,-23,74,-0.14060402336990302],[124,-23,75,-0.1763334484188896],[124,-23,76,-0.13198339828088415],[124,-23,77,-0.09902465366938944],[124,-23,78,-0.09961677918774993],[124,-23,79,-0.13999153285677163],[124,-22,64,-0.11332614352084396],[124,-22,65,-0.09516566423674855],[124,-22,66,-0.0904342725730364],[124,-22,67,-0.06634328540307892],[124,-22,68,-0.0293591492242729],[124,-22,69,-0.01827822925130364],[124,-22,70,-0.04785967973993695],[124,-22,71,-0.05736410079137545],[124,-22,72,-0.04232581290790178],[124,-22,73,-0.06962326965640714],[124,-22,74,-0.13981139377311463],[124,-22,75,-0.1745477091230872],[124,-22,76,-0.1304263053846115],[124,-22,77,-0.09795854222356869],[124,-22,78,-0.09869334402779836],[124,-22,79,-0.1385010189418924],[124,-21,64,-0.1129156556865956],[124,-21,65,-0.09511159040190337],[124,-21,66,-0.08968511030172485],[124,-21,67,-0.06573181728338265],[124,-21,68,-0.029038335680633836],[124,-21,69,-0.017878065150950917],[124,-21,70,-0.047520342017008436],[124,-21,71,-0.057521829054959964],[124,-21,72,-0.042671092521613135],[124,-21,73,-0.06964322943232784],[124,-21,74,-0.13903475643772698],[124,-21,75,-0.17280490833764797],[124,-21,76,-0.12891160441770352],[124,-21,77,-0.09692516487260738],[124,-21,78,-0.09779917135573649],[124,-21,79,-0.13705314349823175],[124,-20,64,-0.11249764498023626],[124,-20,65,-0.09504366826861659],[124,-20,66,-0.08893925423461298],[124,-20,67,-0.06512137023650105],[124,-20,68,-0.028722875430853282],[124,-20,69,-0.01749915809624174],[124,-20,70,-0.04719915060472413],[124,-20,71,-0.05767778875363504],[124,-20,72,-0.0430087904859384],[124,-20,73,-0.06966247343930035],[124,-20,74,-0.13827505950895266],[124,-20,75,-0.17110560427685736],[124,-20,76,-0.1274393539931694],[124,-20,77,-0.09592442370095522],[124,-20,78,-0.09693421190563772],[124,-20,79,-0.1356479199568033],[124,-19,64,-0.1120734336649325],[124,-19,65,-0.094963212629259],[124,-19,66,-0.08819764049207465],[124,-19,67,-0.0645127613986033],[124,-19,68,-0.02841304079127065],[124,-19,69,-0.01714107192081177],[124,-19,70,-0.0468960423857978],[124,-19,71,-0.05783271487679486],[124,-19,72,-0.043339678474579375],[124,-19,73,-0.0696817758240202],[124,-19,74,-0.1375332470932968],[124,-19,75,-0.16945033806298546],[124,-19,76,-0.12600960167141234],[124,-19,77,-0.09495622269699988],[124,-19,78,-0.09609842560124109],[124,-19,79,-0.1342853633441884],[124,-18,64,-0.11164433914077788],[124,-18,65,-0.09487153440821779],[124,-18,66,-0.08746118110184217],[124,-18,67,-0.06390678574687476],[124,-18,68,-0.028109098999233924],[124,-18,69,-0.016803383351539542],[124,-18,70,-0.046610970637512496],[124,-18,71,-0.05798735629831616],[124,-18,72,-0.04366454003726732],[124,-18,73,-0.06970191791199369],[124,-18,74,-0.13681025899433705],[124,-18,75,-0.1678396348756031],[124,-18,76,-0.12462238529122513],[124,-18,77,-0.09402046837848572],[124,-18,78,-0.09529178164173767],[124,-18,79,-0.1329654909296229],[124,-17,64,-0.11121167255248926],[124,-17,65,-0.09476993925948994],[124,-17,66,-0.08673076391501731],[124,-17,67,-0.06330421599238313],[124,-17,68,-0.02781131233284471],[124,-17,69,-0.0164856826899242],[124,-17,70,-0.04634390524129368],[124,-17,71,-0.058142475044715126],[124,-17,72,-0.043984169787954996],[124,-17,73,-0.06972368754399486],[124,-17,74,-0.13610703056443293],[124,-17,75,-0.16627400517349178],[124,-17,76,-0.12327773431209932],[124,-17,77,-0.09311707042247806],[124,-17,78,-0.09451425861539188],[124,-17,79,-0.13168832291303445],[124,-16,64,-0.1107767375504392],[124,-16,65,-0.09465972630070188],[124,-16,66,-0.08600725261814578],[124,-16,67,-0.0627058025680151],[124,-16,68,-0.02751993827519713],[124,-16,69,-0.01618757446644347],[124,-16,70,-0.04609483290759156],[124,-16,71,-0.058298845663997],[124,-16,72,-0.04429937269126893],[124,-16,73,-0.06974787850871551],[124,-16,74,-0.13542449267178405],[124,-16,75,-0.16475394598709941],[124,-16,76,-0.1219756711666287],[124,-16,77,-0.09224594229997962],[124,-16,78,-0.09376584464172863],[124,-16,79,-0.13045388315388518],[124,-15,64,-0.11034082920472046],[124,-15,65,-0.09454218698346925],[124,-15,66,-0.08529148683844018],[124,-15,67,-0.06211227370836973],[124,-15,68,-0.02723522972189828],[124,-15,69,-0.015908678069083054],[124,-15,70,-0.04586375741776899],[124,-15,71,-0.05845725469627593],[124,-15,72,-0.04461096344810573],[124,-15,73,-0.06977529007211292],[124,-15,74,-0.1347635717820089],[124,-15,75,-0.16327994227948972],[124,-15,76,-0.12071621262186226],[124,-15,77,-0.09140700191529397],[124,-15,78,-0.09304653754289331],[124,-15,79,-0.1292621999406024],[124,-14,64,-0.10990523307142051],[124,-14,65,-0.09441860409949207],[124,-14,66,-0.08458428233896349],[124,-14,67,-0.06152433561824829],[124,-14,68,-0.026957435230519883],[124,-14,69,-0.015648628347232185],[124,-14,70,-0.045650699884557465],[124,-14,71,-0.05861850024691718],[124,-14,72,-0.0449197659809466],[124,-14,73,-0.06980672660364089],[124,-14,74,-0.13412519015309732],[124,-14,75,-0.16185246837363804],[124,-14,76,-0.1194993711484718],[124,-14,77,-0.09060017225015204],[124,-14,78,-0.09235634504461411],[124,-14,79,-0.12811330680024832],[124,-13,64,-0.10947122521265748],[124,-13,65,-0.09429023046041846],[124,-13,66,-0.08388635745942709],[124,-13,67,-0.060942598961327976],[124,-13,68,-0.026686734094333784],[124,-13,69,-0.01540700070305634],[124,-13,70,-0.045455619376156886],[124,-13,71,-0.05878336856506843],[124,-13,72,-0.04522663773261111],[124,-13,73,-0.0698430184015385],[124,-13,74,-0.13351022911374796],[124,-13,75,-0.16047190176402237],[124,-13,76,-0.11832507519766373],[124,-13,77,-0.08982533714255668],[124,-13,78,-0.09169529490622856],[124,-13,79,-0.12700724236882138],[124,-12,64,-0.10904006127298739],[124,-12,65,-0.09415814602659069],[124,-12,66,-0.08319785454192363],[124,-12,67,-0.06036710105575871],[124,-12,68,-0.026422813574899878],[124,-12,69,-0.015182822118907854],[124,-12,70,-0.045277890928253704],[124,-12,71,-0.05895247005585854],[124,-12,72,-0.04553261696790328],[124,-12,73,-0.06988514829862454],[124,-12,74,-0.1329192783941214],[124,-12,75,-0.15913794669870165],[124,-12,76,-0.1171926422242413],[124,-12,77,-0.08908205047913868],[124,-12,78,-0.09106349486784682],[124,-12,79,-0.1259440359742813],[124,-11,64,-0.10861293400999665],[124,-11,65,-0.09402333051773487],[124,-11,66,-0.08251868860086216],[124,-11,67,-0.05979765488962274],[124,-11,68,-0.02616517652461847],[124,-11,69,-0.014974927894654738],[124,-11,70,-0.04511666762681023],[124,-11,71,-0.05912631360057996],[124,-11,72,-0.04583877458150622],[124,-11,73,-0.06993412697727522],[124,-11,74,-0.13235278416691362],[124,-11,75,-0.15785002625115266],[124,-11,76,-0.11610115659775613],[124,-11,77,-0.08836974724267495],[124,-11,78,-0.09046107496541392],[124,-11,79,-0.12492369092218855],[124,-10,64,-0.10819096513474152],[124,-10,65,-0.09388673461437715],[124,-10,66,-0.08184881751461393],[124,-10,67,-0.05923411905278516],[124,-10,68,-0.025913379801586485],[124,-10,69,-0.014782237792140886],[124,-10,70,-0.04497117006093092],[124,-10,71,-0.05930538625493287],[124,-10,72,-0.046146119264183],[124,-10,73,-0.06999091216489566],[124,-10,74,-0.13181118096560107],[124,-10,75,-0.15660760084773687],[124,-10,76,-0.11504976606726408],[124,-10,77,-0.08768790754206474],[124,-10,78,-0.08988814989667197],[124,-10,79,-0.12394618573681943],[124,-9,64,-0.10777520989836492],[124,-9,65,-0.09374928127377077],[124,-9,66,-0.08118823848219815],[124,-9,67,-0.058676394024495586],[124,-9,68,-0.02566703095507984],[124,-9,69,-0.014603752183199677],[124,-9,70,-0.04484068391679084],[124,-9,71,-0.05949015603578512],[124,-9,72,-0.046455602243518065],[124,-9,73,-0.07005641239972031],[124,-9,74,-0.13129489314231352],[124,-9,75,-0.15541016745485123],[124,-9,76,-0.11403767896012751],[124,-9,77,-0.08703605453307721],[124,-9,78,-0.08934482090577588],[124,-9,79,-0.12301147732227385],[124,-8,64,-0.10736666143861917],[124,-8,65,-0.09361186659740105],[124,-8,66,-0.08053698332253374],[124,-8,67,-0.05812441731593064],[124,-8,68,-0.025425783873090954],[124,-8,69,-0.0144385469408693],[124,-8,70,-0.04472455612328656],[124,-8,71,-0.059681074060297545],[124,-8,72,-0.04676812221890873],[124,-8,73,-0.07013149100296331],[124,-8,74,-0.13080433554301635],[124,-8,75,-0.15425725713642569],[124,-8,76,-0.11306416000826136],[124,-8,77,-0.08641375162374614],[124,-8,78,-0.08883117775824478],[124,-8,79,-0.12211950391380406],[124,-7,64,-0.10696625485606262],[124,-7,65,-0.09347536065637221],[124,-7,66,-0.0798951141147676],[124,-7,67,-0.057578158964424156],[124,-7,68,-0.025189334715964143],[124,-7,69,-0.014285768610381446],[124,-7,70,-0.044622191168454645],[124,-7,71,-0.05987857649834948],[124,-7,72,-0.04708452997749497],[124,-7,73,-0.07021696981759862],[124,-7,74,-0.1303399141428839],[124,-7,75,-0.1531484327571556],[124,-7,76,-0.11212852644714834],[124,-7,77,-0.08582059987357323],[124,-7,78,-0.08834730059997925],[124,-7,79,-0.12127018783261963],[124,-6,64,-0.10657487103334312],[124,-6,65,-0.09334060827809118],[124,-6,66,-0.07926271916469228],[124,-6,67,-0.0570376173636898],[124,-6,68,-0.02495741812369167],[124,-6,69,-0.014144629849051701],[124,-6,70,-0.04453304758268502],[124,-6,71,-0.06008308635002695],[124,-6,72,-0.04740563270646235],[124,-6,73,-0.07031363272426998],[124,-6,74,-0.12990202664472336],[124,-6,75,-0.15208328682576297],[124,-6,76,-0.1112301443747991],[124,-6,77,-0.08525623557685083],[124,-6,78,-0.08789326170494854],[124,-6,79,-0.12046343805298614],[124,-5,64,-0.10619334021060604],[124,-5,65,-0.09320842979742913],[124,-5,66,-0.0786399092823985],[124,-5,67,-0.056502815414517564],[124,-5,68,-0.0247298036846193],[124,-5,69,-0.014014405124337515],[124,-5,70,-0.044456634584579956],[124,-5,71,-0.0602950150594639],[124,-5,72,-0.04773219801679227],[124,-5,73,-0.07042222894459324],[124,-5,74,-0.12949106304302557],[124,-5,75,-0.1510614394724521],[124,-5,76,-0.11036842535799955],[124,-5,77,-0.08472032802058985],[124,-5,78,-0.08746912711605363],[124,-5,79,-0.11969915259017615],[124,-4,64,-0.10582244532953726],[124,-4,65,-0.0930796217751682],[124,-4,66,-0.07802681435635281],[124,-4,67,-0.05597379698052673],[124,-4,68,-0.024506292653411296],[124,-4,69,-0.013894426659387697],[124,-4,70,-0.04439250888505286],[124,-4,71,-0.060514763975741556],[124,-4,72,-0.048064957693057894],[124,-4,73,-0.0705434761417722],[124,-4,74,-0.1291074061558458],[124,-4,75,-0.15008253655454193],[124,-4,76,-0.1095428232733249],[124,-4,77,-0.0842125774076863],[124,-4,78,-0.08707495818351269],[124,-4,79,-0.11897722071751327],[124,-3,64,-0.10546292515825616],[124,-3,65,-0.09295495768643097],[124,-3,66,-0.07742358020942576],[124,-3,67,-0.05545062363393253],[124,-3,68,-0.024286714906478504],[124,-3,69,-0.013784080615700202],[124,-3,70,-0.04434027164523688],[124,-3,71,-0.060742725671163934],[124,-3,72,-0.04840461118353687],[124,-3,73,-0.07067806332825755],[124,-3,74,-0.12875143212655468],[124,-3,75,-0.1491462478842865],[124,-3,76,-0.10875283137072825],[124,-3,77,-0.08373271293625656],[124,-3,78,-0.08671081300507093],[124,-3,79,-0.11829752502054733],[124,-2,64,-0.10511547720880897],[124,-2,65,-0.09283518858152708],[124,-2,66,-0.0768303657226117],[124,-2,67,-0.05493337167655784],[124,-2,68,-0.024070926123317408],[124,-2,69,-0.013682803502694319],[124,-2,70,-0.04429956558365161],[124,-2,71,-0.060979285126715466],[124,-2,72,-0.04875182884445614],[124,-2,73,-0.07082665358987214],[124,-2,74,-0.12842351089722753],[124,-2,75,-0.1482522655728532],[124,-2,76,-0.10799797954777558],[124,-2,77,-0.08328049102632287],[124,-2,78,-0.08637674777222375],[124,-2,79,-0.1176599432961232],[124,-1,64,-0.1047807604584863],[124,-1,65,-0.09272104372133706],[124,-1,66,-0.07624734021238447],[124,-1,67,-0.054422129421568786],[124,-1,68,-0.02385880518241613],[124,-1,69,-0.01359007880414933],[124,-1,70,-0.044270072227911975],[124,-1,71,-0.061224820793935084],[124,-1,72,-0.049107254951646105],[124,-1,73,-0.0709898866354353],[124,-1,74,-0.12812400665513268],[124,-1,75,-0.1474003024843511],[124,-1,76,-0.10727783182283371],[124,-1,77,-0.08285569368521528],[124,-1,78,-0.08607281802644137],[124,-1,79,-0.11706435030375174],[124,0,64,-0.10445939788583271],[124,0,65,-0.09261323118924099],[124,0,66,-0.07567468104803902],[124,0,67,-0.053916994721868415],[124,0,68,-0.02365025176078435],[124,0,69,-0.013505433811793187],[124,0,70,-0.04425150930628997],[124,0,71,-0.061479705542031755],[124,0,72,-0.04947151049247482],[124,0,73,-0.07116838118066988],[124,0,74,-0.12785327825363163],[124,0,75,-0.14659009079390586],[124,0,76,-0.10659198399590325],[124,0,77,-0.0824581270033953],[124,0,78,-0.08579907982931212],[124,0,79,-0.1165106193764654],[124,1,64,-0.1041519788317389],[124,1,65,-0.0925124384813543],[124,1,66,-0.07511257149568903],[124,1,67,-0.05341807273145411],[124,1,68,-0.023445184126471348],[124,1,69,-0.013428436656568439],[124,1,70,-0.04424362827438421],[124,1,71,-0.06174430749856899],[124,1,72,-0.04984519575044054],[124,1,73,-0.07136273717483835],[124,1,74,-0.12761167960858977],[124,1,75,-0.14582138064382452],[124,1,76,-0.10594006148614264],[124,1,77,-0.08208761977269965],[124,1,78,-0.08555559085039868],[124,1,79,-0.11599862389806476],[124,2,64,-0.10385906119548083],[124,2,65,-0.09241933307657818],[124,2,66,-0.07456119877588976],[124,2,67,-0.05292547388638634],[124,2,68,-0.023243537113710484],[124,2,69,-0.013358693528301373],[124,2,70,-0.04424621197206134],[124,2,71,-0.062018990791492014],[124,2,72,-0.05022889269421517],[124,2,73,-0.07157353787813317],[124,2,74,-0.12739956007112813],[124,2,75,-0.14509393889189257],[124,2,76,-0.10532171733540234],[124,2,77,-0.08174402221920325],[124,2,78,-0.08534241137636782],[124,2,79,-0.11552823865328592],[124,3,64,-0.10358117347518608],[124,3,65,-0.09233456298784191],[124,3,66,-0.07402075232231059],[124,3,67,-0.0524393120925219],[124,3,68,-0.023045260270752276],[124,3,69,-0.01329584607485349],[124,3,70,-0.04425907240590107],[124,3,71,-0.062304116199873256],[124,3,72,-0.05062316718249923],[124,3,73,-0.07180135179756938],[124,3,74,-0.12721726477743728],[124,3,75,-0.14440754794601504],[124,3,76,-0.10473663036753496],[124,3,77,-0.08142720484327648],[124,3,78,-0.08515960524488903],[124,3,79,-0.11509934105720719],[124,4,64,-0.10331881666174997],[124,4,65,-0.09225875729573702],[124,4,66,-0.07349142222928612],[124,4,67,-0.05195970310761253],[124,4,68,-0.02285031617080769],[124,4,69,-0.013239568972120993],[124,4,70,-0.04428204865238882],[124,4,71,-0.06260004172028713],[124,4,72,-0.05102857099553147],[124,4,73,-0.07204673448877677],[124,4,74,-0.12706513497620758],[124,4,75,-0.14376200467952724],[124,4,76,-0.1041845034936347],[124,4,77,-0.08113705735970947],[124,4,78,-0.08500724070664983],[124,4,79,-0.11471181226992895],[124,5,64,-0.10307246599470439],[124,5,65,-0.0921925266655015],[124,5,66,-0.07297339787642232],[124,5,67,-0.05148676310576036],[124,5,68,-0.02265867887682535],[124,5,69,-0.013189567656470662],[124,5,70,-0.04431500487705804],[124,5,71,-0.06290712305520493],[124,5,72,-0.05144564370350819],[124,5,73,-0.07231023023065848],[124,5,74,-0.12694350833400675],[124,5,75,-0.14315711942156054],[124,5,76,-0.10366506215366361],[124,5,77,-0.0808734877309937],[124,5,78,-0.0848853912186042],[124,5,79,-0.11436553820219926],[124,6,64,-0.10284257258816756],[124,6,65,-0.09213646384821567],[124,6,66,-0.07246686671893435],[124,6,67,-0.05102060741276587],[124,6,68,-0.022470332551266414],[124,6,69,-0.013145576211570387],[124,6,70,-0.04435782846489823],[124,6,71,-0.06322571402943515],[124,6,72,-0.0518749143817301],[124,6,73,-0.07259237357960732],[124,6,74,-0.12685271921887134],[124,6,75,-0.14259271501707216],[124,6,76,-0.10317805288540673],[124,6,77,-0.0806364212872413],[124,6,78,-0.08479413617150977],[124,6,79,-0.114060410417467],[124,7,64,-0.10262956493457791],[124,7,65,-0.09209114416693734],[124,7,66,-0.07197201323284326],[124,7,67,-0.050561349401391564],[124,7,68,-0.02228527020242895],[124,7,69,-0.013107355401879489],[124,7,70,-0.04441042825740713],[124,7,71,-0.0635561669402155],[124,7,72,-0.05231690318178039],[124,7,73,-0.07289369080961314],[124,7,74,-0.12679309896225233],[124,7,75,-0.1420686259513072],[124,7,76,-0.10272324201207836],[124,7,77,-0.08042579992650056],[124,7,78,-0.08473356155464072],[124,7,79,-0.11379632693555689],[124,8,64,-0.10243385029341487],[124,8,65,-0.09205712598828583],[124,8,66,-0.07148901800452981],[124,8,67,-0.05010909953597658],[124,8,68,-0.02210349255917752],[124,8,69,-0.013074690845297214],[124,8,70,-0.044472732891666256],[124,8,71,-0.06389883284608928],[124,8,72,-0.05277212276747024],[124,8,73,-0.07321470124418472],[124,8,74,-0.12676497609928228],[124,8,75,-0.14158469753357264],[124,8,76,-0.10230041444024976],[124,8,77,-0.08024158138947453],[124,8,78,-0.08470376056036628],[124,8,79,-0.11357319294284841],[124,9,64,-0.10225581597176776],[124,9,65,-0.092034951179931],[124,9,66,-0.07101805695467346],[124,9,67,-0.04966396455640307],[124,9,68,-0.021925007066388443],[124,9,69,-0.013047391317845268],[124,9,70,-0.04454468923697488],[124,9,71,-0.06425406179938117],[124,9,72,-0.05324107962386384],[124,9,73,-0.07355591848573403],[124,9,74,-0.12676867658730206],[124,9,75,-0.14114078513546097],[124,9,76,-0.10190937256023229],[124,9,77,-0.080083738603007],[124,9,78,-0.08470483413120418],[124,9,79,-0.11339092141365242],[124,10,64,-0.10209583050323404],[124,10,65,-0.09202514555434593],[124,10,66,-0.0705593006870703],[124,10,67,-0.0492260467919124],[124,10,68,-0.02174982699380605],[124,10,69,-0.013025287183571663],[124,10,70,-0.04462626092467843],[124,10,71,-0.06462220302672325],[124,10,72,-0.053724275247209206],[124,10,73,-0.07391785154773996],[124,10,74,-0.126804524002511],[124,10,75,-0.14073675347885706],[124,10,76,-0.10154993524144508],[124,10,77,-0.0799522590869853],[124,10,78,-0.08473689145181243],[124,10,79,-0.1132494336472293],[124,11,64,-0.10195424473115158],[124,11,65,-0.09202821929898874],[124,11,66,-0.07011291395320313],[124,11,67,-0.04879544359568397],[124,11,68,-0.021577970651305994],[124,11,69,-0.013008228943093975],[124,11,70,-0.04471742696686081],[124,11,71,-0.06500360506166092],[124,11,72,-0.05422220722306849],[124,11,73,-0.0743010058946144],[124,11,74,-0.126872839714465],[124,11,75,-0.14037247596921085],[124,11,76,-0.10122193691564164],[124,11,77,-0.07984714441954732],[124,11,78,-0.08480005038819685],[124,11,79,-0.11314865972461569],[124,12,64,-0.1018313928019004],[124,12,65,-0.09204466739308698],[124,12,66,-0.06967905522398093],[124,12,67,-0.04837224689166198],[124,12,68,-0.02140946070401766],[124,12,69,-0.012996085894583138],[124,12,70,-0.044818180459767744],[124,12,71,-0.06539861583311467],[124,12,72,-0.05473537019954984],[124,12,73,-0.07470588439394953],[124,12,74,-0.1269739430381725],[124,12,75,-0.1400478340698374],[124,12,76,-0.10092522674131449],[124,12,77,-0.07976840975581449],[124,12,78,-0.08489443787633542],[124,12,79,-0.11308853888925537],[124,13,64,-0.10172759307363642],[124,13,65,-0.09207497001109964],[124,13,66,-0.06925787636051074],[124,13,67,-0.04795654282558644],[124,13,68,-0.021244323581114482],[124,13,69,-0.012988744901279837],[124,13,70,-0.04492852736794559],[124,13,71,-0.06580758271315654],[124,13,72,-0.05526425676209683],[124,13,73,-0.07513298818550924],[124,13,74,-0.12710815136348416],[124,13,75,-0.13976271671322835],[124,13,76,-0.10065966784299145],[124,13,77,-0.07971608339565324],[124,13,78,-0.08502019026229869],[124,13,79,-0.11306901985523365],[124,14,64,-0.10164314894543298],[124,14,65,-0.0921195929128124],[124,14,66,-0.06884952237615757],[124,14,67,-0.047548411512607094],[124,14,68,-0.02108258897238484],[124,14,69,-0.012986109259873637],[124,14,70,-0.04504848538515889],[124,14,71,-0.06623085252721364],[124,14,72,-0.05580935821580695],[124,14,73,-0.07558281747098002],[124,14,74,-0.12727578026139424],[124,14,75,-0.13951701974553166],[124,14,76,-0.10042513661945836],[124,14,77,-0.07969020639618433],[124,14,78,-0.085177453595773],[124,14,79,-0.11309006104665895],[124,15,64,-0.1015783496115763],[124,15,65,-0.0921789878200549],[124,15,66,-0.06845413128268343],[124,15,67,-0.047147926874411314],[124,15,68,-0.020924289407137902],[124,15,69,-0.012988097664453049],[124,15,70,-0.04517808286837613],[124,15,71,-0.06666877152962399],[124,15,72,-0.05637116528091673],[124,15,73,-0.07605587222828586],[124,15,74,-0.12747714356693252],[124,15,75,-0.13931064540066104],[124,15,76,-0.10022152211538812],[124,15,77,-0.0796908322250836],[124,15,78,-0.08536638387884406],[124,15,79,-0.11315163077162431],[124,16,64,-0.10153347074538945],[124,16,65,-0.09225359277991234],[124,16,66,-0.06807183401362714],[124,16,67,-0.04675515655919397],[124,16,68,-0.020769459910275713],[124,16,69,-0.012994643260953084],[124,16,70,-0.045317357841199814],[124,16,71,-0.06712168534715689],[124,16,72,-0.056950168706640686],[124,16,73,-0.0765526528539439],[124,16,74,-0.12771255343826102],[124,16,75,-0.13914350180068494],[124,16,76,-0.10004872545117238],[124,16,77,-0.07971802645093685],[124,16,78,-0.08558714727175305],[124,16,79,-0.11325370733396718],[124,17,64,-0.10150877511676401],[124,17,65,-0.09234383251435092],[124,17,66,-0.06770275441858631],[124,17,67,-0.04637016193830924],[124,17,68,-0.020618137730769273],[124,17,69,-0.013005692787374868],[124,17,70,-0.045466357063337806],[124,17,71,-0.06758993889295675],[124,17,72,-0.057546859808243984],[124,17,73,-0.07707366073674697],[124,17,74,-0.12798232039166924],[124,17,75,-0.13901550247943692],[124,17,76,-0.09990665930615455],[124,17,77,-0.07977186646719764],[124,17,78,-0.08583992025728177],[124,17,79,-0.11339627908594008],[124,18,64,-0.10150451314721635],[124,18,65,-0.09245011875607011],[124,18,66,-0.06734700932242382],[124,18,67,-0.04599299817382477],[124,18,68,-0.020470362138040633],[124,18,69,-0.013021205795267398],[124,18,70,-0.04562513516281309],[124,18,71,-0.06807387625307103],[124,18,72,-0.05816173093177979],[124,18,73,-0.07761939876572031],[124,18,74,-0.12828675331209177],[124,18,75,-0.1389265659264676],[124,18,76,-0.0997952474507623],[124,18,77,-0.07985244124649124],[124,18,78,-0.08612488976527131],[124,18,79,-0.11357934442469754],[124,19,64,-0.10152092340614287],[124,19,65,-0.0925728505704565],[124,19,66,-0.06700470864386901],[124,19,67,-0.04562371435165864],[124,19,68,-0.0203261742821106],[124,19,69,-0.013041153948264182],[124,19,70,-0.04579375382782259],[124,19,71,-0.06857384054762865],[124,19,72,-0.058795275850685634],[124,19,73,-0.078190371775166],[124,19,74,-0.128626159438889],[124,19,75,-0.13887661514876098],[124,19,76,-0.09971442432340823],[124,19,77,-0.07995985112227881],[124,19,78,-0.08644225325876005],[124,19,79,-0.11380291173544634],[124,20,64,-0.1015582330517011],[124,20,65,-0.09271241466351655],[124,20,66,-0.06667595556841954],[124,20,67,-0.04526235367542368],[124,20,68,-0.020185617113707255],[124,20,69,-0.013065520393762842],[124,20,70,-0.04597228105534949],[124,20,71,-0.06909017376854429],[124,20,72,-0.05944799009807895],[124,20,73,-0.0787870869293594],[124,20,74,-0.12900084432665268],[124,20,75,-0.13886557724788098],[124,20,76,-0.09966413464837423],[124,20,77,-0.08009420759513534],[124,20,78,-0.08679221878313628],[124,20,79,-0.11406699928397501],[124,21,64,-0.10161665821949414],[124,21,65,-0.09286918567561016],[124,21,66,-0.06636084677076061],[124,21,67,-0.044908953716426746],[124,21,68,-0.020048735360754515],[124,21,69,-0.013094299204015844],[124,21,70,-0.046160790453743446],[124,21,71,-0.0696232165954406],[124,21,72,-0.06012037123826714],[124,21,73,-0.07941005404922456],[124,21,74,-0.12941111178080886],[124,21,75,-0.13889338301041165],[124,21,76,-0.09964433309115593],[124,21,77,-0.08025563316106041],[124,21,78,-0.08717500497960294],[124,21,79,-0.11437163506114882],[124,22,64,-0.10169640436211952],[124,22,65,-0.09304352646090402],[124,22,66,-0.06605947268236954],[124,22,67,-0.04456354671572373],[124,22,68,-0.019915575558013914],[124,22,69,-0.013127494883217478],[124,22,70,-0.04635936059673176],[124,22,71,-0.07017330819141257],[124,22,72,-0.06081291908076189],[124,22,73,-0.08005978588318396],[124,22,74,-0.129857263767903],[124,22,75,-0.13895996650985287],[124,22,76,-0.09965498394809937],[124,22,77,-0.08044426115949924],[124,22,78,-0.08759084106423397],[124,22,79,-0.11471685658191158],[124,23,64,-0.10179766654247172],[124,23,65,-0.09323578835248152],[124,23,66,-0.06577191780032844],[124,23,67,-0.04422615993449081],[124,23,68,-0.019786186126919018],[124,23,69,-0.013165121937406914],[124,23,70,-0.04656807442650431],[124,23,71,-0.07074078598015004],[124,23,72,-0.06152613583983102],[124,23,73,-0.08073679832420233],[124,23,74,-0.13033960030053188],[124,23,75,-0.1390652647183776],[124,23,76,-0.09969606086746373],[124,23,77,-0.08066023563895804],[124,23,78,-0.08803996677385854],[124,23,79,-0.1151027106412723],[124,24,64,-0.10192062968348864],[124,24,65,-0.09344631141303261],[124,24,66,-0.06549826103366785],[124,24,67,-0.04389681604927555],[124,24,68,-0.019660617502855297],[124,24,69,-0.013207204504191395],[124,24,70,-0.046787018703653906],[124,24,71,-0.07132598540579914],[124,24,72,-0.062260526242337154],[124,24,73,-0.08144161057483569],[124,24,74,-0.13085841929690048],[124,24,75,-0.13920921712704762],[124,24,76,-0.09976754659927572],[124,24,77,-0.08090371123824588],[124,24,78,-0.08852263227992367],[124,24,79,-0.11552925302964685],[124,25,64,-0.1020654687769736],[124,25,65,-0.09367542467116473],[124,25,66,-0.06523857608396214],[124,25,67,-0.04357553358908236],[124,25,68,-0.019538922307443054],[124,25,69,-0.013253776039575876],[124,25,70,-0.0470162835020001],[124,25,71,-0.07192923967693561],[124,25,72,-0.06301659758645481],[124,25,73,-0.08217474526201721],[124,25,74,-0.1314140164151457],[124,25,75,-0.13939176537338316],[124,25,76,-0.0998694327716657],[124,25,77,-0.08117485308160628],[124,25,78,-0.08903909807149782],[124,25,79,-0.11599654820993195],[124,26,64,-0.10223234905399309],[124,26,65,-0.09392344634340444],[124,26,66,-0.06499293185720179],[124,26,67,-0.04326232741155452],[124,26,68,-0.019421155563607233],[124,26,69,-0.013304879059391065],[124,26,70,-0.047255961746505544],[124,26,71,-0.07255087949596123],[124,26,72,-0.06379485975365307],[124,26,73,-0.0829367285031692],[124,26,74,-0.13200668486263942],[124,26,75,-0.13961285287540948],[124,26,76,-0.10000171969163718],[124,26,77,-0.08147383668618592],[124,26,78,-0.08958963480856103],[124,26,79,-0.1165046689586554],[124,27,64,-0.10242142611923465],[124,27,65,-0.0941906840420032],[124,27,66,-0.06476139290424256],[124,27,67,-0.0429572092157767],[124,27,68,-0.01930737495140394],[124,27,69,-0.013360564932983945],[124,27,70,-0.047506148792651],[124,27,71,-0.07319123277516888],[124,27,72,-0.0645958251761224],[124,27,73,-0.08372808992508665],[124,27,74,-0.13263671518056283],[124,27,75,-0.13987242447150067],[124,27,76,-0.1001644161684248],[124,27,77,-0.08180084788041275],[124,27,78,-0.09017452314666435],[124,27,79,-0.1170536959734871],[124,28,64,-0.10263284605166498],[124,28,65,-0.09447743496875775],[124,28,66,-0.06454401988745659],[124,28,67,-0.042660188089542715],[124,28,68,-0.019197641102821402],[124,28,69,-0.01342089372707586],[124,28,70,-0.04776694204586598],[124,28,71,-0.07385062434074546],[124,28,72,-0.06542000876170513],[124,28,73,-0.08454936263697624],[124,28,74,-0.13330439500418653],[124,28,75,-0.1401704260656131],[124,28,76,-0.10035753935787944],[124,28,77,-0.08215608273206178],[124,28,78,-0.09079405353408093],[124,28,79,-0.11764371744942755],[124,29,64,-0.10286674547377901],[124,29,65,-0.09478398609514326],[124,29,66,-0.06434087007148964],[124,29,67,-0.0423712710892006],[124,29,68,-0.01909201793397554],[124,29,69,-0.013485934097886348],[124,29,70,-0.048038440619810586],[124,29,71,-0.07452937562598687],[124,29,72,-0.06626792777826036],[124,29,73,-0.08540108315895889],[124,29,74,-0.13401000879941502],[124,29,75,-0.14050680427773016],[124,29,76,-0.10058111462655286],[124,29,77,-0.08253974748495542],[124,29,78,-0.09144852598258182],[124,29,79,-0.11827482862601017],[124,30,64,-0.10312325159164236],[124,30,65,-0.095110614329093],[124,30,66,-0.06415199783624073],[124,30,67,-0.04209046385038248],[124,30,68,-0.018990573013251556],[124,30,69,-0.013555763229757658],[124,30,70,-0.04832074503244754],[124,30,71,-0.0752278043549693],[124,30,72,-0.06714010169922974],[124,30,73,-0.08628379130722669],[124,30,74,-0.1347538375762308],[124,30,75,-0.140881506099515],[124,30,76,-0.10083517543431295],[124,30,77,-0.08295205850333319],[124,30,78,-0.09213824981292122],[124,30,79,-0.11894713130780514],[124,31,64,-0.10340248220794117],[124,31,65,-0.09545758666888506],[124,31,66,-0.06397745521046265],[124,31,67,-0.041817771228198616],[124,31,68,-0.018893377964159706],[124,31,69,-0.013630466818732194],[124,31,70,-0.04861395693907832],[124,31,71,-0.07594622421799178],[124,31,72,-0.06803705201211435],[124,31,73,-0.08719803003703507],[124,31,74,-0.1355361585798435],[124,31,75,-0.14129447855543106],[124,31,76,-0.10111976323458093],[124,31,77,-0.08339324222313041],[124,31,78,-0.09286354337619687],[124,31,79,-0.11966073336060581],[124,32,64,-0.10370454571024582],[124,32,65,-0.0958251603446994],[124,32,66,-0.06381729242460904],[124,32,67,-0.041553197965678836],[124,32,68,-0.01880050890182518],[124,32,69,-0.013710139099699264],[124,32,70,-0.048918178901706785],[124,32,71,-0.07668494454015497],[124,32,72,-0.06895930199149572],[124,32,73,-0.08814434524467271],[124,32,74,-0.13635724496048635],[124,32,75,-0.14174566836979918],[124,32,76,-0.10143492739146633],[124,32,77,-0.08386353510952607],[124,32,78,-0.0936247337522619],[124,32,79,-0.12041574818569772],[124,33,64,-0.104029541036644],[124,33,65,-0.09621358294844964],[124,33,66,-0.06367155848171366],[124,33,67,-0.04129674938938638],[124,33,68,-0.018712046902127424],[124,33,69,-0.013794882915837844],[124,33,70,-0.04923351419423418],[124,33,71,-0.07744426994444337],[124,33,72,-0.06990737643811962],[124,33,73,-0.08912328552947493],[124,33,74,-0.1372173654228883],[124,33,75,-0.14223502164042093],[124,33,76,-0.10178072511321246],[124,33,77,-0.08436318362021217],[124,33,78,-0.09442215642636287],[124,33,79,-0.12121229417462091],[124,34,64,-0.10437755762095924],[124,34,65,-0.09662309255264505],[124,34,66,-0.06354030174532077],[124,34,67,-0.04104843213134113],[124,34,68,-0.018628078502674974],[124,34,69,-0.013884809829270815],[124,34,70,-0.04956006664321657],[124,34,71,-0.07822450001079581],[124,34,72,-0.07088180138556163],[124,34,73,-0.09013540191697612],[124,34,74,-0.13811678385663717],[124,34,75,-0.1427624835196383],[124,34,76,-0.10215722140158212],[124,34,77,-0.08489244417400307],[124,34,78,-0.09525615494526421],[124,34,79,-0.1220504941469333],[124,35,64,-0.10474867531978724],[124,35,65,-0.09705391781913736],[124,35,66,-0.06342357054365871],[124,35,67,-0.04080825487653215],[124,35,68,-0.018548696234910074],[124,35,69,-0.013980040271980392],[124,35,70,-0.0498979405040925],[124,35,71,-0.07902592893272005],[124,35,72,-0.07188310377595684],[124,35,73,-0.09118124754429491],[124,35,74,-0.1390557589487897],[124,35,75,-0.143327997903888],[124,35,76,-0.1025644890169616],[124,35,77,-0.08545158312450744],[124,35,78,-0.0961270805541546],[124,35,79,-0.12293047477353525],[124,36,64,-0.10514296432357308],[124,36,65,-0.09750627809866354],[124,36,66,-0.06332141378935527],[124,36,67,-0.04057622913538645],[124,36,68,-0.018473999186691223],[124,36,69,-0.014080703736115993],[124,36,70,-0.050247240372916675],[124,36,71,-0.07984884517304867],[124,36,72,-0.07291181110621432],[124,36,73,-0.09226137730880388],[124,36,74,-0.14003454378017757],[124,36,75,-0.14393150713294603],[124,36,76,-0.10300260845906747],[124,36,77,-0.08604087673866073],[124,36,78,-0.09703529181565389],[124,36,79,-0.12385236598815029],[124,37,64,-0.10556048505404693],[124,37,65,-0.09798038352225659],[124,37,66,-0.06323388161418281],[124,37,67,-0.04035237004071102],[124,37,68,-0.018404093594828315],[124,37,69,-0.014186939002985946],[124,37,70,-0.05060807113385432],[124,37,71,-0.08069353112057638],[124,37,72,-0.07396845104618245],[124,37,73,-0.09337634748121118],[124,37,74,-0.1410533854070635],[124,37,75,-0.14457295170028073],[124,37,76,-0.10347166796332107],[124,37,77,-0.08666061118005448],[124,37,78,-0.09798115421233304],[124,37,79,-0.12481630038966739],[124,38,64,-0.10600128805036266],[124,38,65,-0.09847643508568076],[124,38,66,-0.06316102601842473],[124,38,67,-0.04013669716870643],[124,38,68,-0.018339093467105813],[124,38,69,-0.01429889441012387],[124,38,70,-0.05098053794283982],[124,38,71,-0.08156026274940614],[124,38,72,-0.07505355103022712],[124,38,73,-0.09452671528419143],[124,38,74,-0.1421125244299161],[124,38,75,-0.14525226997607943],[124,38,76,-0.1039717635130593],[124,38,77,-0.08731108249708527],[124,38,78,-0.09896503973421801],[124,38,79,-0.12582241263811914],[124,39,64,-0.10646541384632507],[124,39,65,-0.09899462472813064],[124,39,66,-0.06310290153452723],[124,39,67,-0.039929235383682565],[124,39,68,-0.018279121233345443],[124,39,69,-0.014416728155878423],[124,39,70,-0.05136474624792909],[124,39,71,-0.08244930928290617],[124,39,72,-0.0761676378236764],[124,39,73,-0.09571303843771829],[124,39,74,-0.14321219455120032],[124,39,75,-0.14596939794463978],[124,39,76,-0.10450299886784024],[124,39,77,-0.08799259661600531],[124,39,78,-0.0999873264527861],[124,39,79,-0.12687083884712688],[124,40,64,-0.10695289284118215],[124,40,65,-0.0995351354065746],[124,40,66,-0.06305956590482706],[124,40,67,-0.039730015706198114],[124,40,68,-0.01822430842514217],[124,40,69,-0.01454060864110454],[124,40,70,-0.05176080184706363],[124,40,71,-0.08336093286433217],[124,40,72,-0.07731123706565955],[124,40,73,-0.0969358746723391],[124,40,74,-0.144352622124254],[124,40,75,-0.1467242689579973],[124,40,76,-0.10506548560822543],[124,40,77,-0.08870546933906802],[124,40,78,-0.10104839808306675],[124,40,79,-0.12796171597575118],[124,41,64,-0.1074637451665038],[124,41,65,-0.10009814116719258],[124,41,66,-0.06303108077317501],[124,41,67,-0.039539076204341835],[124,41,68,-0.01817479638389592],[124,41,69,-0.0146707148475714],[124,41,70,-0.052168810984070814],[124,41,71,-0.08429538823624728],[124,41,72,-0.07848487278987976],[124,41,73,-0.09819578121165809],[124,41,74,-0.1455340256954329],[124,41,75,-0.14751681350776472],[124,41,76,-0.10565934319749111],[124,41,77,-0.08945002634801592],[124,41,78,-0.10214864353551703],[124,41,79,-0.12909518122276242],[124,42,64,-0.10799798055176145],[124,42,65,-0.10068380721548767],[124,42,66,-0.06301751239035733],[124,42,67,-0.03935646290790801],[124,42,68,-0.018130736996798517],[124,42,69,-0.014807236752795919],[124,42,70,-0.05258888048388476],[124,42,71,-0.08525292243101801],[124,42,72,-0.07968906692494157],[124,42,73,-0.09949331422538951],[124,42,74,-0.14675661554186603],[124,42,75,-0.14834695901729672],[124,42,76,-0.10628469906080515],[124,42,77,-0.0902266032132405],[124,42,78,-0.10328845645943033],[124,42,79,-0.13027137142643427],[124,43,64,-0.10855559819126055],[124,43,65,-0.1012922899867057],[124,43,66,-0.06301893233320303],[124,43,67,-0.03918223074516936],[124,43,68,-0.018092293460387647],[124,43,69,-0.014950375781019076],[124,43,70,-0.053021117928050844],[124,43,71,-0.08623377447473561],[124,43,72,-0.08092433877587535],[124,43,73,-0.10082902825437576],[124,43,74,-0.14802059320726016],[124,43,75,-0.1492146296563682],[124,43,76,-0.10694168868244155],[124,43,77,-0.09103554540897055],[124,43,78,-0.10446823477968661],[124,43,79,-0.13149042247302617],[124,44,64,-0.10913658661517579],[124,44,65,-0.10192373721831384],[124,44,66,-0.06303541823730839],[124,44,67,-0.039016444501947335],[124,44,68,-0.018059641071286953],[124,44,69,-0.015100345290112163],[124,44,70,-0.05346563187171796],[124,44,71,-0.0872381751070597],[124,44,72,-0.08219120448859801],[124,44,73,-0.10220347560906921],[124,44,74,-0.1493261510383392],[124,44,75,-0.1501197461806692],[124,44,76,-0.10763045572167376],[124,44,77,-0.0918772083349275],[124,44,78,-0.10568838022875938],[124,44,79,-0.13275246871721935],[124,45,64,-0.10974092356752116],[124,45,65,-0.10257828802638426],[124,45,66,-0.06306705454330915],[124,45,67,-0.038859179802632496],[124,45,68,-0.01803296804371687],[124,45,69,-0.015257371094228553],[124,45,70,-0.053922532103420635],[124,45,71,-0.08826634651959125],[124,45,72,-0.08349017649913225],[124,45,73,-0.1036172057430751],[124,45,74,-0.15067347172463885],[124,45,75,-0.15106222579850864],[124,45,76,-0.10835115214803442],[124,45,77,-0.0927519573449282],[124,45,78,-0.10694929787597506],[124,45,79,-0.1340576424178601],[124,46,64,-0.11036857589390899],[124,46,65,-0.10325607298775338],[124,46,66,-0.063113933256564],[124,46,67,-0.03871052411269789],[124,46,68,-0.018012476353268716],[124,46,69,-0.015421692021991553],[124,46,70,-0.05439192994899593],[124,46,71,-0.08931850211544819],[124,46,72,-0.08482176296943948],[124,46,73,-0.10507076460338688],[124,46,74,-0.15206272784443145],[124,46,75,-0.15204198206712763],[124,46,76,-0.1091039383966053],[124,46,77,-0.0936601677829212],[124,46,78,-0.10825139565606257],[124,46,79,-0.1354060731923907],[124,47,64,-0.11101949040546806],[124,47,65,-0.10395720517133614],[124,47,66,-0.06317614563939505],[124,47,67,-0.038570568659280435],[124,47,68,-0.017998373481191658],[124,47,69,-0.015593551362439128],[124,47,70,-0.05487392945098048],[124,47,71,-0.09039483710013822],[124,47,72,-0.08618645799640767],[124,47,73,-0.10656468472081314],[124,47,74,-0.1534940721584792],[124,47,75,-0.1530589155368156],[124,47,76,-0.10988897423654984],[124,47,77,-0.09460221569617083],[124,47,78,-0.1095950745448556],[124,47,79,-0.13679787811559332],[124,48,64,-0.11169348929252317],[124,48,65,-0.10468167542615817],[124,48,66,-0.06325367787497752],[124,48,67,-0.038439304041071556],[124,48,68,-0.017990767561781255],[124,48,69,-0.015773091431862212],[124,48,70,-0.05536852138716291],[124,48,71,-0.0914954215963745],[124,48,72,-0.08758463401208831],[124,48,73,-0.1080993771834729],[124,48,74,-0.15496752951933163],[124,48,75,-0.1541128057324178],[124,48,76,-0.11070631066172619],[124,48,77,-0.09557836925402272],[124,48,78,-0.11098061913065939],[124,48,79,-0.1382330519295829],[124,49,64,-0.11239029645564674],[124,49,65,-0.10542937876786915],[124,49,66,-0.06334643801904526],[124,49,67,-0.03831664732177838],[124,49,68,-0.017989694207641658],[124,49,69,-0.015960380019356207],[124,49,70,-0.05587560937258138],[124,49,71,-0.092620226015582],[124,49,72,-0.08901656659651318],[124,49,73,-0.10967515620642794],[124,49,74,-0.15648302160490074],[124,49,75,-0.15520333617764984],[124,49,76,-0.11155591500699762],[124,49,77,-0.09658881357866382],[124,49,78,-0.1124082217952515],[124,49,79,-0.139711491089187],[124,50,64,-0.11310960632077201],[124,50,65,-0.10620018345308053],[124,50,66,-0.06345432585041276],[124,50,67,-0.0382025122421569],[124,50,68,-0.017995186672655587],[124,50,69,-0.01615548039640919],[124,50,70,-0.0563950797569986],[124,50,71,-0.09376919042437762],[124,50,72,-0.09048250346507639],[124,50,73,-0.11129230808343024],[124,50,74,-0.15804043628712838],[124,50,75,-0.1563301642955296],[124,50,76,-0.11243774114413052],[124,50,77,-0.09763372086332339],[124,50,78,-0.11387805240247861],[124,50,79,-0.14123306356170878],[124,51,64,-0.11385108442732567],[124,51,65,-0.1069939317044885],[124,51,66,-0.06357723425433397],[124,51,67,-0.03809681085645121],[124,51,68,-0.018007277329615365],[124,51,69,-0.016358452537766792],[124,51,70,-0.05692680263517955],[124,51,71,-0.09494222489169472],[124,51,72,-0.09198266428067643],[124,51,73,-0.11295109083462747],[124,51,74,-0.15963962761295908],[124,51,75,-0.1574929218222176],[124,51,76,-0.11335173005199395],[124,51,77,-0.09871325073036114],[124,51,78,-0.11539025810496974],[124,51,79,-0.14279760864753696],[124,52,64,-0.11461436666653213],[124,52,65,-0.10781043907310622],[124,52,66,-0.06371504923278709],[124,52,67,-0.03799945379764968],[124,52,68,-0.01802599777847454],[124,52,69,-0.016569352982209365],[124,52,70,-0.05747063151302794],[124,52,71,-0.09613920847431562],[124,52,72,-0.09351723906137847],[124,52,73,-0.11465173243529436],[124,52,74,-0.16128041439891905],[124,52,75,-0.15869121385075458],[124,52,76,-0.11429780899245527],[124,52,77,-0.09982754917826663],[124,52,78,-0.11694496173838338],[124,52,79,-0.14440493541164298],[124,53,64,-0.11539905850667939],[124,53,65,-0.10864949377610099],[124,53,66,-0.06386764987998791],[124,53,67,-0.037910350511928634],[124,53,68,-0.018051378928526818],[124,53,69,-0.016788234680133966],[124,53,70,-0.058026402981233134],[124,53,71,-0.09735998819695968],[124,53,72,-0.09508638654185847],[124,53,73,-0.11639442898653812],[124,53,74,-0.16296257880405435],[124,53,75,-0.15992461787141857],[124,53,76,-0.11527589065970525],[124,53,77,-0.10097674748826495],[124,53,78,-0.11854226017877832],[124,53,79,-0.1460548211056627],[124,54,64,-0.11620473421112755],[124,54,65,-0.10951085601495746],[124,54,66,-0.06403490832476584],[124,54,67,-0.03782940946316739],[124,54,68,-0.01808345105559132],[124,54,69,-0.017015146829886356],[124,54,70,-0.05859393640035853],[124,54,71,-0.09860437803258781],[124,54,72,-0.09669023249361929],[124,54,73,-0.11817934283281809],[124,54,74,-0.1646858648869228],[124,54,75,-0.16119268281339777],[124,54,76,-0.11628587230582182],[124,54,77,-0.10216096109342937],[124,54,78,-0.12018222266801523],[124,54,79,-0.14774700958656956],[124,55,64,-0.11703093605493248],[124,55,65,-0.11039425727878337],[124,55,66,-0.0642166896413823],[124,55,67,-0.037756538308304104],[124,55,68,-0.01812224383521853],[124,55,69,-0.017250134704800177],[124,55,70,-0.059173033601354265],[124,55,71,-0.09987215788872222],[124,55,72,-0.09832886800918363],[124,55,73,-0.12000660063135615],[124,55,74,-0.1664499771524893],[124,55,75,-0.162494928092527],[124,55,76,-0.11732763484544187],[124,55,77,-0.10338028841331832],[124,55,78,-0.12186488911229058],[124,55,79,-0.14948120973808127],[124,56,64,-0.11787717354610844],[124,56,65,-0.11129939963770448],[124,56,66,-0.06441285173037586],[124,56,67,-0.03769164404427227],[124,56,68,-0.018167786352950188],[124,56,69,-0.017493239472993548],[124,56,70,-0.059763478605595],[124,56,71,-0.10116307260577244],[124,56,72,-0.10000234775574639],[124,56,73,-0.12187629137880916],[124,56,74,-0.16825457909496583],[124,56,75,-0.16383084266993592],[124,56,76,-0.11840104194255162],[124,56,77,-0.10463480965736519],[124,56,78,-0.12359026835917063],[124,56,79,-0.1512570939011496],[124,57,64,-0.11874292265768441],[124,57,65,-0.11222595503142588],[124,57,66,-0.06462324517100848],[124,57,67,-0.03763463312718643],[124,57,68,-0.018220107092647965],[124,57,69,-0.01774449801202732],[124,57,70,-0.06036503736862282],[124,57,71,-0.10247683097352699],[124,57,72,-0.10171068820403972],[124,57,73,-0.12378846440087406],[124,57,74,-0.17009929174282737],[124,57,75,-0.16519988412654432],[124,57,76,-0.11950593908251188],[124,57,77,-0.10592458560041504],[124,57,78,-0.12535833645873268],[124,57,79,-0.15307429632004974],[124,58,64,-0.11962762507677686],[124,58,65,-0.11317356455810028],[124,58,66,-0.06484771304682364],[124,58,67,-0.03758541156434667],[124,58,68,-0.01827923390385763],[124,58,69,-0.01800394272054972],[124,58,70,-0.06097745755180075],[124,58,71,-0.10381310477207188],[124,58,72,-0.10345386583837463],[124,58,73,-0.12574312731072756],[124,58,74,-0.17198369221233953],[124,58,75,-0.166601477758339],[124,58,76,-0.12064215263249267],[124,58,77,-0.10724965633393965],[124,58,78,-0.12716903491460482],[124,58,79,-0.1549324116106917],[124,59,64,-0.12053068747706198],[124,59,65,-0.11414183776879434],[124,59,66,-0.06508609074586053],[124,59,67,-0.0375438849796124],[124,59,68,-0.018345193949207313],[124,59,69,-0.018271601329148294],[124,59,70,-0.061600468326184224],[124,59,71,-0.10517152784358938],[124,59,72,-0.10523181535413657],[124,59,73,-0.12774024394254785],[124,59,74,-0.17390731227614226],[124,59,75,-0.1680350156974806],[124,59,76,-0.12180948889365027],[124,59,77,-0.1086100399966887],[124,59,78,-0.1290222689309864],[124,59,79,-0.15683099325797953],[124,60,64,-0.12145148082112985],[124,60,65,-0.11513035197294794],[124,60,66,-0.06533820573705496],[124,60,67,-0.03750995865263957],[124,60,68,-0.018418013632833335],[124,60,69,-0.018547496712685047],[124,60,70,-0.06223378021296149],[124,60,71,-0.10655169520161376],[124,60,72,-0.10704442784927751],[124,60,73,-0.12977973226666045],[124,60,74,-0.17586963695358465],[124,60,75,-0.16949985606432347],[124,60,76,-0.12300773314847976],[124,60,77,-0.11000573148871225],[124,60,78,-0.13091790566194988],[124,60,79,-0.1587695521491731],[124,61,64,-0.12238933969926856],[124,61,65,-0.11613865156028184],[124,61,66,-0.06560387732431895],[124,61,67,-0.03748353753239661],[124,61,68,-0.018497718510795708],[124,61,69,-0.01883164670640911],[124,61,70,-0.06287708496481252],[124,61,71,-0.10795316218440489],[124,61,72,-0.10889154901657314],[124,61,73,-0.13186146229310694],[124,61,74,-0.1778701031295987],[124,61,75,-0.17099532215542745],[124,61,76,-0.12423664870685158],[124,61,77,-0.11143670117284557],[124,61,78,-0.13285577246952854],[124,61,79,-0.16074755515030012],[124,62,64,-0.12334356171133398],[124,62,65,-0.11716624734472564],[124,62,66,-0.06588291637982138],[124,62,67,-0.03746452622536212],[124,62,68,-0.018584333184483694],[124,62,69,-0.019124063928231724],[124,62,70,-0.06353005549259033],[124,62,71,-0.10937544365923173],[124,62,72,-0.11077297734370757],[124,62,73,-0.13398525397076977],[124,62,74,-0.1799080982090652],[124,62,75,-0.1725207016727009],[124,62,76,-0.12549597595437734],[124,62,77,-0.11290289356796164],[124,62,78,-0.1348356551973371],[124,62,79,-0.16276442373280975],[124,63,64,-0.12431340689845286],[124,63,65,-0.11821261593603809],[124,63,66,-0.06617512505800444],[124,63,67,-0.037452828958781735],[124,63,68,-0.018677881178028155],[124,63,69,-0.01942475560960006],[124,63,70,-0.06419234584174224],[124,63,71,-0.11081801328445783],[124,63,72,-0.11268846232852042],[124,63,73,-0.13615087508949442],[124,63,74,-0.18198295881375615],[124,63,75,-0.17407524599883564],[124,63,76,-0.12678543140687348],[124,63,77,-0.11440422603850255],[124,63,78,-0.1368572964667143],[124,63,79,-0.16481953265777113],[124,64,64,-0.12529809723130497],[124,64,65,-0.11927719914479555],[124,64,66,-0.06648029649183003],[124,64,67,-0.03744834951928992],[124,64,68,-0.018778384800711808],[124,64,69,-0.019733723437414346],[124,64,70,-0.06486359122283007],[124,64,71,-0.11228030283632412],[124,64,72,-0.11463770271693158],[124,64,73,-0.1383580391928713],[124,64,74,-0.18409396952895954],[124,64,75,-0.17565816952413046],[124,64,76,-0.12810470677473382],[124,64,77,-0.11594058748492747],[124,64,78,-0.13892039400250883],[124,64,79,-0.16691220872493784],[124,65,64,-0.12629681616181632],[124,65,65,-0.12035940342654375],[124,65,66,-0.06679821447280726],[124,65,67,-0.03745099116721588],[124,65,68,-0.018885864995414985],[124,65,69,-0.020050963409505157],[124,65,70,-0.0655434081005265],[124,65,71,-0.11376170160744473],[124,65,72,-0.11662034477139258],[124,65,73,-0.1406064035097251],[124,65,74,-0.1862403617070906],[124,65,75,-0.17726864902987266],[124,65,76,-0.12945346804120586],[124,65,77,-0.11751183703998248],[124,65,78,-0.14102459899592015],[124,65,79,-0.16904172959414093],[124,66,64,-0.12730870824510962],[124,66,65,-0.12145859937091592],[124,66,66,-0.0671286531163552],[124,66,67,-0.03746065652689031],[124,66,68,-0.019000341174176743],[124,66,69,-0.02037646570622881],[124,66,70,-0.06623139434538437],[124,66,71,-0.11526155588396006],[124,66,72,-0.11863598057780662],[124,66,73,-0.14289556691248942],[124,66,74,-0.18842131233550824],[124,66,75,-0.17890582313330797],[124,66,76,-0.13083135455856018],[124,66,77,-0.11911780277576348],[124,66,78,-0.1431695145118576],[124,66,79,-0.17120732268641442],[124,67,64,-0.12833287883851746],[124,67,65,-0.12257412124154939],[124,67,66,-0.0674713765140611],[124,67,67,-0.037477247453218725],[124,67,68,-0.01912183104191529],[124,67,69,-0.0207102145807281],[124,67,70,-0.06692712945262377],[124,67,71,-0.11677916850838815],[124,67,72,-0.12068414639923593],[124,67,73,-0.1452250679110859],[124,67,74,-0.1906359429759808],[124,67,75,-0.1805687917993133],[124,67,76,-0.13223797816636493],[124,67,77,-0.12075828042687448],[124,67,78,-0.1453546939486061],[124,67,79,-0.17340816417239263],[124,68,64,-0.1293683938844665],[124,68,65,-0.12370526657262988],[124,68,66,-0.06782613837442077],[124,68,67,-0.037500664874822176],[124,68,68,-0.0192503504094253],[124,68,69,-0.021052188270448444],[124,68,70,-0.0676301748320554],[124,68,71,-0.11831379853506506],[124,68,72,-0.12276432108473131],[124,68,73,-0.1475943826909895],[124,68,74,-0.19288331878308823],[124,68,75,-0.18225661592369113],[124,68,76,-0.13367292233602565],[124,68,77,-0.1224330321349835],[124,68,78,-0.14757963955756329],[124,68,79,-0.17564337805538005],[124,69,64,-0.13041427978396866],[124,69,65,-0.12485129582788601],[124,69,66,-0.06819268165368084],[124,69,67,-0.03753080861404717],[124,69,68,-0.019385912996780764],[124,69,69,-0.02140235893250167],[124,69,70,-0.06834007417316779],[124,69,71,-0.11986466098507499],[124,69,72,-0.12487592454189704],[124,69,73,-0.15000292320449596],[124,69,74,-0.19516244760895773],[124,69,75,-0.18396831699300448],[124,69,76,-0.13513574134591871],[124,69,77,-0.12414178522035049],[124,69,78,-0.1498438010310435],[124,69,79,-0.17791203535654573],[124,70,64,-0.13146952336739018],[124,70,65,-0.12601143212783472],[124,70,66,-0.0685707381784403],[124,70,67,-0.03756757718417657],[124,70,68,-0.01952853022831711],[124,70,69,-0.021760692605477108],[124,70,70,-0.06905635388925956],[124,70,71,-0.12143092670745344],[124,70,72,-0.12701831628192997],[124,70,73,-0.15245003532440574],[124,70,74,-0.1974722792016893],[124,70,75,-0.18570287682576633],[124,70,76,-0.13662595949150338],[124,70,77,-0.12588423098602167],[124,70,78,-0.15214657416621918],[124,70,79,-0.18021315340961125],[124,71,64,-0.13253307196901246],[124,71,65,-0.12718486105097093],[124,71,66,-0.06896002826166563],[124,71,67,-0.03761086756416626],[124,71,68,-0.019678211020360846],[124,71,69,-0.022127149200245683],[124,71,70,-0.06977852364428984],[124,71,71,-0.12301172235327738],[124,71,72,-0.12919079404594577],[124,71,73,-0.15493499706946434],[124,71,74,-0.19981170450472083],[124,71,75,-0.18745923739962977],[124,71,76,-0.13814307033481513],[124,71,77,-0.12766002356048953],[124,71,78,-0.15448729961331373],[124,71,79,-0.18254569527227069],[124,72,64,-0.13360383361178338],[124,72,65,-0.12837073051455306],[124,72,66,-0.0693602603138422],[124,72,67,-0.03766057495129747],[124,72,68,-0.019834961562938624],[124,72,69,-0.022501682522305014],[124,72,70,-0.07050607696594906],[124,72,71,-0.12460613046912145],[124,72,72,-0.13139259252154376],[124,72,73,-0.15745701691111602],[124,72,74,-0.20217955506436086],[124,72,75,-0.1892363007691358],[124,72,76,-0.1396865359978372],[124,72,77,-0.12946877878477542],[124,72,78,-0.15686526171623683],[124,72,79,-0.18490856926149404],[124,73,64,-0.13468067730848352],[124,73,65,-0.12956815074052577],[124,73,66,-0.06977113045103003],[124,73,67,-0.03771659249218421],[124,73,68,-0.019998785096733532],[124,73,69,-0.022884240328173214],[124,73,70,-0.07123849194823406],[124,73,71,-0.12621318971615944],[124,73,72,-0.13362288215862372],[124,73,73,-0.1600152321712563],[124,73,74,-0.20457460255260806],[124,73,75,-0.19103292907842212],[124,73,76,-0.14125578650429255],[124,73,77,-0.1313100731500126],[124,73,78,-0.15927968745389398],[124,73,79,-0.18730062861971972],[124,74,64,-0.135762433485253],[124,74,65,-0.13077619431192666],[124,74,66,-0.07019232210158113],[124,74,67,-0.03777881099258457],[124,74,68,-0.020169681686546113],[124,74,69,-0.023274764418234735],[124,74,70,-0.07197523204649402],[124,74,71,-0.1278318952208864],[124,74,72,-0.13588076809343635],[124,74,73,-0.1626087075207056],[124,74,74,-0.20699555841216746],[124,74,75,-0.19284794467305075],[124,74,76,-0.1428502191743651],[124,74,77,-0.13318344279163957],[124,74,78,-0.16172974549031863],[124,74,79,-0.18972067131868547],[124,75,64,-0.1368478945332327],[124,75,65,-0.131993896325019],[124,75,66,-0.07062350561337201],[124,75,67,-0.03784711860656309],[124,75,68,-0.020347647992581333],[124,75,69,-0.02367319076839856],[124,75,70,-0.07271574696767458],[124,75,71,-0.12946119906321046],[124,75,72,-0.13816528918991122],[124,75,73,-0.1652364335882812],[124,75,74,-0.20944107363049888],[124,75,75,-0.19468013031499623],[124,75,76,-0.14446919807693834],[124,75,77,-0.1350883825464482],[124,75,78,-0.16421454534180646],[124,75,79,-0.192167440007494],[124,76,64,-0.13793581549374676],[124,76,65,-0.13322025464216636],[124,76,66,-0.07106433786343697],[124,76,67,-0.037921400505626666],[124,76,68,-0.02053267704092077],[124,76,69,-0.024079449702838967],[124,76,70,-0.07345947365815488],[124,76,71,-0.1311000109073185],[124,76,72,-0.1404754172072321],[124,76,73,-0.16789732569033103],[124,76,74,-0.21190973864947524],[124,76,75,-0.19652822950457496],[124,76,76,-0.14611205354391915],[124,76,77,-0.13702434507877406],[124,76,78,-0.16673313666913103],[124,76,79,-0.19463962211123262],[124,77,64,-0.13902491488210245],[124,77,65,-0.1344542302502159],[124,77,66,-0.07151446187190197],[124,77,67,-0.03800153852848626],[124,77,68,-0.020724757994511584],[124,77,69,-0.024493466109922358],[124,77,70,-0.07420583739117834],[124,77,71,-0.13274719878032332],[124,77,72,-0.1428100561025278],[124,77,73,-0.17059022269058904],[124,77,74,-0.21440008341700403],[124,77,75,-0.1983909469128479],[124,77,76,-0.14777808175116985],[124,77,77,-0.1389907400821132],[124,77,78,-0.16928450870278133],[124,77,79,-0.19713585008613974],[124,78,64,-0.1401138756547239],[124,78,65,-0.1356947477289178],[124,78,66,-0.07197350642220009],[124,78,67,-0.03808741081222514],[124,78,68,-0.020923875926073508],[124,78,69,-0.02491515970333101],[124,78,70,-0.07495425295552727],[124,78,71,-0.13440159000331825],[124,78,72,-0.14516804147744794],[124,78,73,-0.17331388600018882],[124,78,74,-0.21691057758670426],[124,78,75,-0.20026694892778396],[124,78,76,-0.14946654437057127],[124,78,77,-0.1409869335624992],[124,78,78,-0.1718675898090432],[124,78,79,-0.1996547018370192],[124,79,64,-0.14120134632391873],[124,79,65,-0.13694069583361362],[124,79,66,-0.07244108568959759],[124,79,67,-0.038178891405749656],[124,79,68,-0.021130011594343426],[124,79,69,-0.02534444533024037],[124,79,70,-0.07570412594667496],[124,79,71,-0.13606197227902075],[124,79,72,-0.14754814017722784],[124,79,73,-0.17606699872759443],[124,79,74,-0.2194396308714483],[124,79,75,-0.20215486431719987],[124,79,76,-0.1511766682976961],[124,79,77,-0.14301224720996727],[124,79,78,-0.17448124720457434],[124,79,79,-0.2021947013022446],[124,80,64,-0.14228594222408167],[124,80,65,-0.13819092819606732],[124,80,66,-0.07291679888006969],[124,80,67,-0.038275849866454],[124,80,68,-0.021343141225042758],[124,80,69,-0.025781233328173548],[124,80,70,-0.0764548541611474],[124,80,71,-0.13772709493964505],[124,80,72,-0.14994905005060716],[124,80,73,-0.17884816498805942],[124,80,74,-0.2219855935562117],[124,80,75,-0.20405328501115505],[124,80,76,-0.15290764545946545],[124,80,77,-0.14506595786434848],[124,80,78,-0.1771242868268459],[124,80,79,-0.20475431921125486],[124,81,64,-0.14336624693266023],[124,81,65,-0.13944426414697048],[124,81,66,-0.07340022988164824],[124,81,67,-0.03837815084118454],[124,81,68,-0.021563236298012864],[124,81,69,-0.026225429932004052],[124,81,70,-0.07720582909438264],[124,81,71,-0.13939567035814854],[124,81,72,-0.15236939987873713],[124,81,73,-0.18165590938208093],[124,81,74,-0.22454675717532924],[124,81,75,-0.20596076700617513],[124,81,76,-0.15465863270610583],[124,81,77,-0.1471472970816185],[124,81,78,-0.17979545336761626],[124,81,79,-0.2073319740190508],[124,82,64,-0.14444081384864968],[124,82,65,-0.14069948966325826],[124,82,66,-0.07389094693041323],[124,82,67,-0.038485653632700095],[124,82,68,-0.021790263341954753],[124,82,69,-0.026676937732349183],[124,82,70,-0.07795643754187202],[124,82,71,-0.1410663755254166],[124,82,72,-0.15480774948090475],[124,82,73,-0.18448867665209945],[124,82,74,-0.22712135535887634],[124,82,75,-0.20787583139337648],[124,82,76,-0.15642875179164006],[124,82,77,-0.14925545080693023],[124,82,78,-0.18249343047627342],[124,82,79,-0.20992603302172677],[124,83,64,-0.14550817011131054],[124,83,65,-0.1419553600205894],[124,83,66,-0.0743885028349073],[124,83,67,-0.03859821188750826],[124,83,68,-0.02202418373232036],[124,83,69,-0.02713565607836474],[124,83,70,-0.07870606270086347],[124,83,71,-0.1427378521860435],[124,83,72,-0.15726258766801735],[124,83,73,-0.18734482807991834],[124,83,74,-0.22970755982390287],[124,83,75,-0.20979696019589697],[124,83,76,-0.15821708489937444],[124,83,77,-0.151389554300852],[124,83,78,-0.1852168345813177],[124,83,79,-0.21253480543777928],[124,84,64,-0.14656689154686584],[124,84,65,-0.14321065475965228],[124,84,66,-0.07489245366154239],[124,84,67,-0.03871567828170294],[124,84,68,-0.02226495381056178],[124,84,69,-0.027601478759986482],[124,84,70,-0.07945406842772057],[124,84,71,-0.14440866020351426],[124,84,72,-0.15973226079003983],[124,84,73,-0.19022253446590928],[124,84,74,-0.23230332512771057],[124,84,75,-0.21172243193113946],[124,84,76,-0.1600225322233856],[124,84,77,-0.153548538792555],[124,84,78,-0.187964008078248],[124,84,79,-0.21515628433359035],[124,85,64,-0.14761563796946012],[124,85,65,-0.14446420752214212],[124,85,66,-0.07540237076861858],[124,85,67,-0.03883790913531036],[124,85,68,-0.022512527053880824],[124,85,69,-0.02807429656972915],[124,85,70,-0.08019980460132395],[124,85,71,-0.1460772810571047],[124,85,72,-0.16221496855952022],[124,85,73,-0.19311976450757737],[124,85,74,-0.23490637136112724],[124,85,75,-0.21365030160027376],[124,85,76,-0.1618437899158822],[124,85,77,-0.15573110342481325],[124,85,78,-0.19073297956806323],[124,85,79,-0.2177880990236826],[124,86,64,-0.14865308426056692],[124,86,65,-0.14571485841467272],[124,86,66,-0.07591782489596514],[124,86,67,-0.03896476094435866],[124,86,68,-0.02276685535269874],[124,86,69,-0.02855400340475648],[124,86,70,-0.080942635017777],[124,86,71,-0.14774218559738583],[124,86,72,-0.16470885681992758],[124,86,73,-0.19603441818402734],[124,86,74,-0.2375143783536194],[124,86,75,-0.2155786047699227],[124,86,76,-0.1636795217652698],[124,86,77,-0.15793589648716952],[124,86,78,-0.1935217080102298],[124,86,79,-0.22042782231806268],[124,87,64,-0.14967791795915786],[124,87,65,-0.14696145250785614],[124,87,66,-0.07643838488840468],[124,87,67,-0.039096089560325724],[124,87,68,-0.023027889016189768],[124,87,69,-0.029040497518777776],[124,87,70,-0.08168194114228022],[124,87,71,-0.1494018408996757],[124,87,72,-0.1672120251816822],[124,87,73,-0.19896433657072188],[124,87,74,-0.24012499983843308],[124,87,75,-0.21750537190857566],[124,87,76,-0.16552837044856725],[124,87,77,-0.16016152726519609],[124,87,78,-0.1963280995601941],[124,87,79,-0.22307299208112033],[124,88,64,-0.1506888417174567],[124,88,65,-0.14820284181765744],[124,88,66,-0.07696361758121936],[124,88,67,-0.03923174962903165],[124,88,68,-0.023295576759162683],[124,88,69,-0.029533682545831177],[124,88,70,-0.08241712443405855],[124,88,71,-0.15105471335770224],[124,88,72,-0.16972252930407583],[124,88,73,-0.2019073037518383],[124,88,74,-0.24273586595802105],[124,88,75,-0.21942863035777693],[124,88,76,-0.16738895828024614],[124,88,77,-0.16240656675161694],[124,88,78,-0.1991500094210493],[124,88,79,-0.2257211139236903],[124,89,64,-0.15168457581816552],[124,89,65,-0.14943788734925498],[124,89,66,-0.077493087708857],[124,89,67,-0.03937159403436159],[124,89,68,-0.023569865714983422],[124,89,69,-0.030033468577110155],[124,89,70,-0.08314760872625858],[124,89,71,-0.15269927188583216],[124,89,72,-0.17223838335642294],[124,89,73,-0.20486104893651952],[124,89,74,-0.24534458592071023],[124,89,75,-0.22134640640587924],[124,89,76,-0.1692598880746165],[124,89,77,-0.1646695485102596],[124,89,78,-0.20198524390980488],[124,89,79,-0.22836966409451573],[124,90,64,-0.15266386074603552],[124,90,65,-0.1506654611978766],[124,90,66,-0.07802635783692052],[124,90,67,-0.039515473348064586],[124,90,68,-0.02385070147497282],[124,90,69,-0.030539773288710145],[124,90,70,-0.08387284265397801],[124,90,71,-0.15433399122142283],[124,90,72,-0.17475756265455228],[124,90,73,-0.20782324877654065],[124,90,74,-0.24794875080162848],[124,90,75,-0.22325672745734196],[124,90,76,-0.1711397441198711],[124,90,77,-0.16694896969244388],[124,90,78,-0.20483156273506228],[124,90,79,-0.23101609256362307],[124,91,64,-0.1536254598063657],[124,91,65,-0.15188444870080425],[124,91,66,-0.07856298831750759],[124,91,67,-0.03966323528697567],[124,91,68,-0.024138028154646923],[124,91,69,-0.031052523117875215],[124,91,70,-0.08459230212321157],[124,91,71,-0.15595735531832347],[124,91,72,-0.17727800646808659],[124,91,73,-0.21079152988225325],[124,91,74,-0.25054593648045115],[124,91,75,-0.22515762429032735],[124,91,76,-0.1730270932616797],[124,91,77,-0.16924329220502862],[124,91,78,-0.2076866814822469],[124,91,79,-0.23365782628950293],[124,92,64,-0.15456816178267138],[124,92,65,-0.1530937506344292],[124,92,66,-0.07910253726792149],[124,92,67,-0.03981472417902809],[124,92,68,-0.024431788487015275],[124,92,69,-0.031571654484956656],[124,92,70,-0.08530549281306103],[124,92,71,-0.1575678608219679],[124,92,72,-0.17979762099325836],[124,92,73,-0.21376347153298436],[124,92,74,-0.25313370670806495],[124,92,75,-0.2270471333951069],[124,92,76,-0.17492048609393385],[124,92,77,-0.17155094402886387],[124,92,78,-0.21054827430180026],[124,92,79,-0.23629227266132458],[124,93,64,-0.15549078362556734],[124,93,65,-0.15429228545004378],[124,93,66,-0.07964456057283645],[124,93,67,-0.03996978043955742],[124,93,68,-0.024731923943122035],[124,93,69,-0.03209711505804637],[124,93,70,-0.08601195270326074],[124,93,71,-0.159164020616064],[124,93,72,-0.1823142824854192],[124,93,73,-0.2167366085774727],[124,93,74,-0.255709616293888],[124,93,75,-0.2289232993856562],[124,93,76,-0.1768184582540592],[124,93,77,-0.17387032068604044],[124,93,78,-0.21341397679513432],[124,93,79,-0.23891682310688273],[124,94,64,-0.15639217316460374],[124,94,65,-0.15547899154176753],[124,94,66,-0.08018861190995556],[124,94,67,-0.040128240059420256],[124,94,68,-0.025038374879869044],[124,94,69,-0.03262886505689639],[124,94,70,-0.08671125461868494],[124,94,71,-0.16074436743036577],[124,94,72,-0.18482584054470935],[124,94,73,-0.21970843451921376],[124,94,74,-0.2582712144051231],[124,94,75,-0.23078417747658075],[124,94,76,-0.17871953182000536],[124,94,77,-0.17619978685383145],[124,94,78,-0.2162813890923991],[124,94,79,-0.24152885685633188],[124,95,64,-0.1572712118346273],[124,95,65,-0.15665282953983584],[124,95,66,-0.08073424279923447],[124,95,67,-0.04028993410654069],[124,95,68,-0.025351080715085145],[124,95,69,-0.033166878592457476],[124,95,70,-0.08740300878221288],[124,95,71,-0.16230745749860798],[124,95,72,-0.18733012154778492],[124,95,73,-0.22267640478101922],[124,95,74,-0.2608160479689267],[124,95,75,-0.23262783601742784],[124,95,76,-0.18062221680582718],[124,95,77,-0.17853767812283186],[124,95,78,-0.21914807911550616],[124,95,79,-0.24412574485126284],[124,96,64,-0.15812681740797702],[124,96,65,-0.15781278462221945],[124,96,66,-0.08128100267568841],[124,96,67,-0.040454688242507315],[124,96,68,-0.02566998012965771],[124,96,69,-0.033711145038030334],[124,96,70,-0.08808686536699387],[124,96,71,-0.16385187425522454],[124,96,72,-0.18982493221781888],[124,96,73,-0.22563794014236938],[124,96,74,-0.26334166516802426],[124,96,75,-0.23445235907621306],[124,96,76,-0.1825250127524368],[124,96,77,-0.18088230289627627],[124,96,78,-0.22201158601909946],[124,96,79,-0.2467048537880601],[124,97,64,-0.15895794672369798],[124,97,65,-0.15895786883740326],[124,97,66,-0.08182843898582044],[124,97,67,-0.04062232225591013],[124,97,68,-0.025995011296450207],[124,97,69,-0.03426167042774914],[124,97,70,-0.08876251703890385],[124,97,71,-0.1653762320591302],[124,97,72,-0.1923080633244587],[124,97,73,-0.22859043034258975],[124,97,74,-0.26584561902005155],[124,97,75,-0.2362558490639358],[124,97,76,-0.18442641040990423],[124,97,77,-0.18323194442711385],[124,97,78,-0.2248694238015684],[124,97,79,-0.249263550284021],[124,98,64,-0.15976359840479404],[124,98,65,-0.1600871234309867],[124,98,66,-0.08237609730769654],[124,98,67,-0.04079264961414622],[124,98,68,-0.02632611213562191],[124,98,69,-0.034818478877839676],[124,98,70,-0.08942970147975399],[124,98,71,-0.16687917993250923],[124,98,72,-0.19477729350484074],[124,98,73,-0.23153123784224808],[124,98,74,-0.26832547103057447],[124,98,75,-0.23803642939173986],[124,98,76,-0.18632489350741133],[124,98,77,-0.1855848629889442],[124,98,78,-0.2277190850775322],[124,98,79,-0.2517992051542229],[124,99,64,-0.16054281555439068],[124,99,65,-0.16119962116858577],[124,99,66,-0.08292352149462855],[124,99,67,-0.0409654770354038],[124,99,68,-0.0266632205957998],[124,99,69,-0.035381614025767456],[124,99,70,-0.09008820388154594],[124,99,71,-0.16835940530220767],[124,99,72,-0.19723039319617097],[124,99,73,-0.23445770173453587],[124,99,74,-0.27077879490941853],[124,99,75,-0.23979224715224678],[124,99,76,-0.18821894060665645],[124,99,77,-0.18793929817641372],[124,99,78,-0.2305580450025561],[124,99,79,-0.2543091977866166],[124,100,64,-0.1612946884216126],[124,100,65,-0.16229446864744224],[124,100,66,-0.08347025384243854],[124,100,67,-0.0411406040825779],[124,100,68,-0.027006274960457575],[124,100,69,-0.03595114048215582],[124,100,70,-0.09073785940191745],[124,100,71,-0.169815637731107],[124,100,72,-0.19966512866991337],[124,100,73,-0.23736714179787846],[124,100,74,-0.27320318033975266],[124,100,75,-0.24152147581658712],[124,100,76,-0.19010702703429802],[124,100,77,-0.19029347133025193],[124,100,78,-0.23338376534028824],[124,100,79,-0.25679092060245706],[124,101,64,-0.16201835702792633],[124,101,65,-0.16337080858904385],[124,101,66,-0.08401583528025422],[124,101,67,-0.041317822780888046],[124,101,68,-0.027355214178747318],[124,101,69,-0.036527145290109926],[124,101,70,-0.09137855557078263],[124,101,71,-0.17124665262664837],[124,101,72,-0.202079266157121],[124,101,73,-0.24025686268043878],[124,101,74,-0.2755962367891302],[124,101,75,-0.2432223179385983],[124,101,76,-0.19198762688876128],[124,101,77,-0.19264558808166926],[124,101,78,-0.23619369866161855],[124,101,79,-0.25924178358878835],[124,102,64,-0.16271301374460845],[124,102,65,-0.16442782210494647],[124,102,66,-0.08455980558469971],[124,102,67,-0.041496917260905104],[124,102,68,-0.0277099782198373],[124,102,69,-0.037109739386278526],[124,102,70,-0.09201023463798455],[124,102,71,-0.1726512749134429],[124,102,72,-0.20447057605394475],[124,102,73,-0.24312415820662495],[124,102,74,-0.27795559735147046],[124,102,75,-0.2448930078576051],[124,102,76,-0.193859215116432],[124,102,77,-0.19499384101032516],[124,102,78,-0.23898529266483698],[124,102,79,-0.26165921888929833],[124,103,64,-0.16337790581204722],[124,103,65,-0.16546473092798886],[124,103,66,-0.08510170361735844],[124,103,67,-0.04167766342872591],[124,103,68,-0.028070508449736783],[124,103,69,-0.03769905905781561],[124,103,70,-0.09263289585175619],[124,103,71,-0.17402838265683826],[124,103,72,-0.20683683719597207],[124,103,73,-0.24596631579523515],[124,103,74,-0.28027892260885606],[124,103,75,-0.24653181439124672],[124,103,76,-0.19572026965206277],[124,103,77,-0.19733641240968813],[124,103,78,-0.24175599460528932],[124,103,79,-0.2640406854396039],[124,104,64,-0.16401233779160754],[124,104,65,-0.16648079960106313],[124,104,66,-0.08564106758533889],[124,104,67,-0.04185982866501168],[124,104,68,-0.02843674802945762],[124,104,69,-0.03829526738919414],[124,104,70,-0.09324659765773255],[124,104,71,-0.1753769106242296],[124,104,72,-0.2091758411896485],[124,104,73,-0.24878062097840134],[124,104,74,-0.28256390450188634],[124,104,75,-0.24813704350984422],[124,104,76,-0.1975692736179792],[124,104,77,-0.19967147715316302],[124,104,78,-0.24450325582251628],[124,104,79,-0.2663836736327612],[124,105,64,-0.1646156739115705],[124,105,65,-0.16747533752765956],[124,105,66,-0.08617743528021508],[124,105,67,-0.04204317153885791],[124,105,68,-0.02880864231718121],[124,105,69,-0.038898555643838775],[124,105,70,-0.0938514597047854],[124,105,71,-0.17669585365712398],[124,105,72,-0.2114853967787381],[124,105,73,-0.2515643620614234],[124,105,74,-0.2848082701908021],[124,105,75,-0.24970704096809],[124,105,76,-0.19940471759711376],[124,105,77,-0.20199720567362758],[124,105,78,-0.2472245363637517],[124,105,79,-0.26868571005774383],[124,106,64,-0.16518730528529127],[124,106,65,-0.16844759764254136],[124,106,66,-0.08671029358372383],[124,106,67,-0.042227424853171845],[124,106,68,-0.029186120462041207],[124,106,69,-0.039509085163403165],[124,106,70,-0.09444754121203197],[124,106,71,-0.17798413603619986],[124,106,72,-0.21376332268289888],[124,106,73,-0.25431489518878847],[124,106,74,-0.2870097788284151],[124,106,75,-0.25124017698872675],[124,106,76,-0.20122512544727075],[124,106,77,-0.20431178876767403],[124,106,78,-0.24991732203784764],[124,106,79,-0.2709444284047679],[124,107,64,-0.16572657724809328],[124,107,65,-0.16939657165222285],[124,107,66,-0.08723898761588177],[124,107,67,-0.042412273716212485],[124,107,68,-0.02956905797460903],[124,107,69,-0.040126854661831364],[124,107,70,-0.09503458174554784],[124,107,71,-0.17924034475808376],[124,107,72,-0.216007429441644],[124,107,73,-0.25702976911218434],[124,107,74,-0.28916621446633256],[124,107,75,-0.2527348169114674],[124,107,76,-0.20302909769740207],[124,107,77,-0.20661347415550793],[124,107,78,-0.25257914664507075],[124,107,79,-0.27315769904430603],[124,108,64,-0.16623286518117872],[124,108,65,-0.17032122983290576],[124,108,66,-0.08776285306799457],[124,108,67,-0.04259741084482872],[124,108,68,-0.029957320179398908],[124,108,69,-0.04075181636132969],[124,108,70,-0.09561226711617715],[124,108,71,-0.1804630381038378],[124,108,72,-0.21821555117845742],[124,108,73,-0.25970658988797723],[124,108,74,-0.2912754107729312],[124,108,75,-0.2541893706282309],[124,108,76,-0.20481525109130067],[124,108,77,-0.2089005049420811],[124,108,78,-0.25520755776001297],[124,108,79,-0.2753234702754329],[124,109,64,-0.16670559376267938],[124,109,65,-0.1712205770479777],[124,109,66,-0.0882812453698332],[124,109,67,-0.04278254763326793],[124,109,68,-0.03035077240769261],[124,109,69,-0.04138390505748725],[124,109,70,-0.09618029275278792],[124,109,71,-0.18165081851498965],[124,109,72,-0.22038555603388726],[124,109,73,-0.2623429935907984],[124,109,74,-0.293335259027678],[124,109,75,-0.25560230517841326],[124,109,76,-0.20658220729898852],[124,109,77,-0.21117110931332925],[124,109,78,-0.25780011354578275],[124,109,79,-0.27743973638541314],[124,110,64,-0.16714423849182392],[124,110,65,-0.17209365460155782],[124,110,66,-0.08879354068828023],[124,110,67,-0.042967414688389965],[124,110,68,-0.030749280375081782],[124,110,69,-0.04202303836877356],[124,110,70,-0.09673836445460579],[124,110,71,-0.18280233556069583],[124,110,72,-0.22251535042943632],[124,110,73,-0.2649366507162857],[124,110,74,-0.2953437118358175],[124,110,75,-0.2569721472780015],[124,110,76,-0.20832859488017955],[124,110,77,-0.21342350325111384],[124,110,78,-0.2603543871995201],[124,110,79,-0.27950454145162706],[124,111,64,-0.16754832712376475],[124,111,65,-0.17293954205678114],[124,111,66,-0.08929913692991634],[124,111,67,-0.04315176236073918],[124,111,68,-0.03115271057957112],[124,111,69,-0.04266911703438503],[124,111,70,-0.09728619913682202],[124,111,71,-0.18391628884315114],[124,111,72,-0.22460288329618244],[124,111,73,-0.26748527055536736],[124,111,74,-0.2972987867554254],[124,111,75,-0.25829748575985756],[124,111,76,-0.21005305128302681],[124,111,77,-0.21565589334105054],[124,111,78,-0.26286797143983925],[124,111,79,-0.2815159830751948],[124,112,64,-0.16791744100980677],[124,112,65,-0.17375735901255354],[124,112,66,-0.08979745474270209],[124,112,67,-0.043335361267590605],[124,112,68,-0.03156093071877919],[124,112,69,-0.04332202526160913],[124,112,70,-0.09782352556800154],[124,112,71,-0.18499143083099417],[124,112,72,-0.22664615025512316],[124,112,73,-0.26998660552782006],[124,112,74,-0.29919856982498017],[124,112,75,-0.2595769739163657],[124,112,76,-0.21175422487448187],[124,112,77,-0.21786647966869024],[124,112,78,-0.26533848302506136],[124,112,79,-0.2834722160360917],[124,113,64,-0.16825121633800258],[124,113,65,-0.17454626683260915],[124,113,66,-0.09028793851197628],[124,113,67,-0.043518002804191776],[124,113,68,-0.03197381012469862],[124,113,69,-0.043981631123587224],[124,113,70,-0.09835008509772686],[124,113,71,-0.1860265696106349],[124,113,72,-0.2286431977362915],[124,113,73,-0.27243845546285383],[124,113,74,-0.3010412189798972],[124,113,75,-0.260809331735972],[124,113,76,-0.213430776998366],[124,113,77,-0.22005345879902563],[124,113,78,-0.267763567290784],[124,113,79,-0.2853714558596432],[124,114,64,-0.16854934526929152],[124,114,65,-0.17530547032077481],[124,114,66,-0.09077005734601418],[124,114,67,-0.043699499639472464],[124,114,68,-0.03239122021433123],[124,114,69,-0.04464778700800004],[124,114,70,-0.09886563237281112],[124,114,71,-0.18702057154561363],[124,114,72,-0.23059212702376014],[124,114,73,-0.2748386718144995],[124,114,74,-0.3028249673468167],[124,114,75,-0.26199334802550306],[124,114,76,-0.21508138405699848],[124,114,77,-0.22221502683372912],[124,114,78,-0.2701409026949744],[124,114,79,-0.28721198228438133],[124,115,64,-0.1688115764088638],[124,115,65,-0.17603421877418896],[124,115,66,-0.09124330547758512],[124,115,67,-0.04387968561709141],[124,115,68,-0.03281303437228696],[124,115,69,-0.04532032952807735],[124,115,70,-0.09936993544478208],[124,115,71,-0.18797236323211614],[124,115,72,-0.23249109760494613],[124,115,73,-0.27718516118416836],[124,115,74,-0.30454812578255086],[124,115,75,-0.26312788178156143],[124,115,76,-0.21670473897638792],[124,115,77,-0.22434938189777484],[124,115,78,-0.2724682047095863],[124,115,79,-0.2889921419657916],[124,116,64,-0.1690375782235621],[124,116,65,-0.1767316683974073],[124,116,66,-0.09170706243188215],[124,116,67,-0.04405827377291446],[124,116,68,-0.03323898433199592],[124,116,69,-0.045998934313359524],[124,116,70,-0.09986262902933354],[124,116,71,-0.18888078484563198],[124,116,72,-0.2343381802556149],[124,116,73,-0.27947573692053934],[124,116,74,-0.30620893176706904],[124,116,75,-0.26421170826151374],[124,116,76,-0.21829939584752261],[124,116,77,-0.2264545681874182],[124,116,78,-0.27474306952935557],[124,116,79,-0.2907101892375165],[124,117,64,-0.1692267532993238],[124,117,65,-0.17739669492904414],[124,117,66,-0.09216040277520118],[124,117,67,-0.04423466324776488],[124,117,68,-0.03366846480045325],[124,117,69,-0.04668291839197991],[124,117,70,-0.10034301459348256],[124,117,71,-0.18974438951245012],[124,117,72,-0.23613115545530824],[124,117,73,-0.2817079153548094],[124,117,74,-0.3078053421711055],[124,117,75,-0.2652433082359312],[124,117,76,-0.21986355718288886],[124,117,77,-0.22852826196797554],[124,117,78,-0.27696275892818173],[124,117,79,-0.2923640672062174],[124,118,64,-0.16937850477597624],[124,118,65,-0.17802816387352513],[124,118,66,-0.0926023689241774],[124,118,67,-0.04440821468860874],[124,118,68,-0.034100812056101576],[124,118,69,-0.04737152205032986],[124,118,70,-0.10081034532657177],[124,118,71,-0.19056173294025217],[124,118,72,-0.2378678075592117],[124,118,73,-0.28387921329967547],[124,118,74,-0.30933533273423724],[124,118,75,-0.2662211694670943],[124,118,76,-0.22139537903707218],[124,118,77,-0.23056808096431522],[124,118,78,-0.2791245138879278],[124,118,79,-0.29395172298273986],[124,119,64,-0.16949228121937193],[124,119,65,-0.17862497667876615],[124,119,66,-0.09303201740672387],[124,119,67,-0.04457829655057283],[124,119,68,-0.034535350928350396],[124,119,69,-0.048063956553841845],[124,119,70,-0.1012638743353928],[124,119,71,-0.19133142358693436],[124,119,72,-0.23954597693946655],[124,119,73,-0.28598720095894364],[124,119,74,-0.31079695033666965],[124,119,75,-0.26714383843873907],[124,119,76,-0.22289302396562904],[124,119,77,-0.23257163907719736],[124,119,78,-0.2812256109073845],[124,119,79,-0.29547116296255865],[124,120,64,-0.16956757745609052],[124,120,65,-0.1791860724044128],[124,120,66,-0.09344842014881939],[124,120,67,-0.044744285909896445],[124,120,68,-0.034971395809589995],[124,120,69,-0.04875940542446917],[124,120,70,-0.10170285580503614],[124,120,71,-0.192052125151931],[124,120,72,-0.2411635639261187],[124,120,73,-0.2880295061271531],[124,120,74,-0.31218831599387564],[124,120,75,-0.2680099223136713],[124,120,76,-0.22435466383980554],[124,120,77,-0.23453655047597022],[124,120,78,-0.2832633670673574],[124,120,79,-0.29692045625853963],[124,121,64,-0.16960393532994342],[124,121,65,-0.1797104293522503],[124,121,66,-0.09385066577616169],[124,121,67,-0.044905569296496604],[124,121,68,-0.035408251729141096],[124,121,69,-0.04945702582633118],[124,121,70,-0.10212654619892562],[124,121,71,-0.19272255898130577],[124,121,72,-0.24271853265936164],[124,121,73,-0.29000381831514976],[124,121,74,-0.3135076277366657],[124,121,75,-0.26881809080821734],[124,121,76,-0.22577848272850978],[124,121,77,-0.23646043379784268],[124,121,78,-0.2852351450987864],[124,121,79,-0.2982977380568354],[124,122,64,-0.1696009443774452],[124,122,65,-0.18019706665368285],[124,122,66,-0.09423786092620433],[124,122,67,-0.04506154354278678],[124,122,68,-0.03584521548619924],[124,122,69,-0.050155950056909884],[124,122,70,-0.10253420549516168],[124,122,71,-0.19334150637875824],[124,122,72,-0.24420891484184098],[124,122,73,-0.29190789279064155],[124,122,74,-0.31475316336866693],[124,122,75,-0.26956707797823654],[124,122,76,-0.2271626798411139],[124,122,77,-0.23834091644388264],[124,122,78,-0.28713835844029545],[124,122,79,-0.2996012128872048],[124,123,64,-0.16955824241967649],[124,123,65,-0.18064504580932061],[124,123,66,-0.09460913156611148],[124,123,67,-0.04521161664540405],[124,123,68,-0.03628157683863829],[124,123,69,-0.050855287140752374],[124,123,70,-0.10292509845612738],[124,123,71,-0.19390781081501338],[124,123,72,-0.24563281338010232],[124,123,73,-0.29373955452298517],[124,123,74,-0.31592328309359197],[124,123,75,-0.2702556839117319],[124,123,76,-0.22850547252431494],[124,123,77,-0.24017563896135288],[124,123,78,-0.28897047627141614],[124,123,79,-0.30082915779921277],[124,124,64,-0.16947551606819136],[124,124,65,-0.1810534721758262],[124,124,66,-0.0949636243121521],[124,124,67,-0.04535520863648061],[124,124,68,-0.036716619744312826],[124,124,69,-0.05155412452216787],[124,124,70,-0.10329849592810192],[124,124,71,-0.1944203800283608],[124,124,72,-0.24698840590454973],[124,124,73,-0.2954967020216777],[124,124,74,-0.3170164320050847],[124,124,75,-0.27088277632337776],[124,124,76,-0.2298050993059246],[124,124,77,-0.2419622595014346],[124,124,78,-0.2907290285075739],[124,124,79,-0.3019799254359176],[124,125,64,-0.1693525011429066],[124,125,65,-0.18142149639535554],[124,125,66,-0.09530050774609801],[124,125,67,-0.04549175246111836],[124,125,68,-0.037149623651312254],[124,125,69,-0.05225152985298469],[124,125,70,-0.10365367616745949],[124,125,71,-0.19487818800947873],[124,125,72,-0.24827394815769077],[124,125,73,-0.2971773110583579],[124,125,74,-0.3180311424324223],[124,125,75,-0.2714472920466636],[124,125,76,-0.2310598229781905],[124,125,77,-0.24369845834094572],[124,125,78,-0.2924116107429043],[124,125,79,-0.3030519469969166],[124,126,64,-0.16918898300019694],[124,126,65,-0.18174831576310146],[124,126,66,-0.09561897372423393],[124,126,67,-0.04562069485776619],[124,126,68,-0.037579864833462276],[124,126,69,-0.052946552871043814],[124,126,70,-0.10398992618990476],[124,126,71,-0.19528027686407465],[124,126,72,-0.24948777724083943],[124,126,73,-0.29877943826242975],[124,126,74,-0.3189660361358141],[124,126,75,-0.2719482384196804],[124,126,76,-0.23226793371294616],[124,126,77,-0.24538194245620487],[124,126,78,-0.2940158891269333],[124,126,79,-0.30404373508285537],[124,127,64,-0.1689847967696518],[124,127,65,-0.18203317552859713],[124,127,66,-0.09591823867458804],[124,127,67,-0.04574149723817124],[124,127,68,-0.03800661776713706],[124,127,69,-0.05363822736464301],[124,127,70,-0.10430654313898192],[124,127,71,-0.1956257585472169],[124,127,72,-0.25062831470984476],[124,127,73,-0.3003012245807492],[124,127,74,-0.3198198263454933],[124,127,75,-0.272384694560893],[124,127,76,-0.23342775220059922],[124,127,77,-0.24701045013674564],[124,127,78,-0.2955396051611532],[124,127,79,-0.30495388641373883],[124,128,64,-0.1687398274982754],[124,128,65,-0.1822753701266615],[124,128,66,-0.09619754487807602],[124,128,67,-0.045853636563646084],[124,128,68,-0.038429156545324826],[124,128,69,-0.054325573217805116],[124,128,70,-0.10460283567000847],[124,128,71,-0.19591381646369468],[124,128,72,-0.25169406951091694],[124,128,73,-0.3017408985922266],[124,128,74,-0.3205913196393372],[124,128,75,-0.2727558125316287],[124,128,76,-0.23453763280474718],[124,128,77,-0.2485817556262525],[124,128,78,-0.2969805804016377],[124,128,79,-0.30578108441372154],[124,129,64,-0.16845401020118525],[124,129,65,-0.18247424433406706],[124,129,66,-0.0964561617293082],[124,129,67,-0.045956606214422345],[124,129,68,-0.03884675632472835],[124,129,69,-0.05500759853086501],[124,129,70,-0.104878125345455],[124,129,71,-0.19614370692917127],[124,129,72,-0.2526836407480979],[124,129,73,-0.3030967796685897],[124,129,74,-0.32127941765423323],[124,129,75,-0.27306081838235136],[124,129,76,-0.23559596672397953],[124,129,77,-0.25009367377774533],[124,129,78,-0.29833672105394504],[124,129,79,-0.306524101655345],[124,130,64,-0.1681273298181329],[124,130,65,-0.18262919434820168],[124,130,66,-0.09669338697284241],[124,130,67,-0.04604991684886872],[124,130,68,-0.03925869480150162],[124,130,69,-0.05568330181047711],[124,130,70,-0.10513174803763468],[124,130,71,-0.1963147604873063],[124,130,72,-0.2535957202744213],[124,130,73,-0.30436728097298027],[124,130,74,-0.3218831186269401],[124,130,75,-0.27329901308013926],[124,130,76,-0.2366011851522104],[124,130,77,-0.2515440647097329],[124,130,78,-0.2996060224467158],[124,130,79,-0.3071818021565231],[124,131,64,-0.167759821075489],[124,131,65,-0.18273966878424883],[124,131,66,-0.09690854791078465],[124,131,67,-0.04613309724944118],[124,131,68,-0.03966425371114027],[124,131,69,-0.05635167422286283],[124,131,70,-0.1053630553345268],[124,131,71,-0.1964263830785388],[124,131,72,-0.2544290950993747],[124,131,73,-0.30555091228851755],[124,131,74,-0.3224015187607007],[124,131,75,-0.27346977331514855],[124,131,76,-0.23755176242872839],[124,131,77,-0.25293083844983416],[124,131,78,-0.30078657337059933],[124,131,79,-0.3077531435239419],[124,132,64,-0.1673515682536174],[124,132,65,-0.18280516958763451],[124,132,66,-0.09710100257770458],[124,132,67,-0.046205695152262416],[124,132,68,-0.040062720347896416],[124,132,69,-0.057011701903773436],[124,132,70,-0.10557141594443749],[124,132,71,-0.19647805705667223],[124,132,72,-0.25518264960583653],[124,132,73,-0.30664628266946314],[124,132,74,-0.3228338134144415],[124,132,75,-0.2735725521842239],[124,132,76,-0.23844621916901648],[124,132,77,-0.2542519595521743],[124,132,78,-0.30187656026941806],[124,132,79,-0.3082371789369356],[124,133,64,-0.16690270485983963],[124,133,65,-0.18282525285871815],[124,133,66,-0.09727014087892032],[124,133,67,-0.04626727805728177],[124,133,68,-0.04045338909898323],[124,133,69,-0.057662368318355035],[124,133,70,-0.1057562170951345],[124,133,71,-0.19646934204988625],[124,133,72,-0.2558553675702247],[124,133,73,-0.3076521029080857],[124,133,74,-0.32317929811186935],[124,133,75,-0.27360687975013287],[124,133,76,-0.2392831253672464],[124,133,77,-0.25550545167468613],[124,133,78,-0.3028742712707562],[124,133,79,-0.3086330589662602],[124,134,64,-0.1664134132075053],[124,134,65,-0.1827995295869779],[124,134,66,-0.09741538568833341],[124,134,67,-0.04631743401605512],[124,134,68,-0.04083556298876718],[124,134,69,-0.0583026566638613],[124,134,70,-0.10591686592306349],[124,134,71,-0.19639987566332867],[124,134,72,-0.2564463339802288],[124,134,73,-0.3085671878108788],[124,134,74,-0.3234373693683623],[124,134,75,-0.27357236347529723],[124,134,76,-0.24006110346129814],[124,134,77,-0.25668940210238467],[124,134,78,-0.3037781000435487],[124,134,79,-0.3089400332226361],[124,135,64,-0.16588392390195872],[124,135,65,-0.18272766629218481],[124,135,66,-0.09753619390209399],[124,135,67,-0.046355772394237105],[124,135,68,-0.04120855522804779],[124,135,69,-0.05893155230789404],[124,135,70,-0.10605279084818442],[124,135,71,-0.19626937402091602],[124,135,72,-0.2569547366451007],[124,135,73,-0.3093904582783219],[124,135,74,-0.3236075253340859],[124,135,75,-0.27346868852923617],[124,135,76,-0.2407788313510936],[124,135,77,-0.2578019662026214],[124,135,78,-0.3045865494706368],[124,135,79,-0.30915745183035753],[124,136,64,-0.1653145152344763],[124,136,65,-0.1826093855703242],[124,136,66,-0.09763205744450337],[124,136,67,-0.04638192460597071],[124,136,68,-0.041571690763484666],[124,136,69,-0.059548045254658906],[124,136,70,-0.10616344292997133],[124,136,71,-0.19607763214450713],[124,136,72,-0.25737986759411324],[124,136,73,-0.3101209431829039],[124,136,74,-0.32368936625227535],[124,136,75,-0.27329561796927015],[124,136,76,-0.241435045360992],[124,136,77,-0.25884137179832095],[124,136,78,-0.3052982351246873],[124,136,79,-0.30928476672169064],[124,137,64,-0.1647055124855375],[124,137,65,-0.18244446654230234],[124,137,66,-0.0977025042226971],[124,137,67,-0.04639554481743775],[124,137,68,-0.04192430782217701],[124,137,69,-0.06015113263152896],[124,137,70,-0.10624829720009378],[124,137,71,-0.19582452416911758],[124,137,72,-0.25772112425945526],[124,137,73,-0.3107577810407407],[124,137,74,-0.3236825947322017],[124,137,75,-0.2730529927944074],[124,137,76,-0.24202854313703237],[124,137,77,-0.25980592344528325],[124,137,78,-0.3059118885363891],[124,137,79,-0.3093215327482805],[124,138,64,-0.16405728713906512],[124,138,65,-0.18223274520374855],[124,138,66,-0.0977470990267935],[124,138,67,-0.046396310616937],[124,138,68,-0.04226575944639025],[124,138,69,-0.06073982118806419],[124,138,70,-0.10630685396732782],[124,138,71,-0.19551000339337368],[124,138,72,-0.25797801044048474],[124,138,73,-0.31130022147267483],[124,138,74,-0.323587015836849],[124,138,75,-0.27274073187266334],[124,138,76,-0.24255818646983546],[124,138,77,-0.2606940065997342],[124,138,78,-0.3064263602443563],[124,138,79,-0.309267408606242],[124,139,64,-0.1633702560095402],[124,139,65,-0.18197411467449676],[124,139,66,-0.0977654443723414],[124,139,67,-0.046383923648951164],[124,139,68,-0.04259541501341012],[124,139,69,-0.061313129799510625],[124,139,70,-0.10633864009026542],[124,139,71,-0.1951341021649191],[124,139,72,-0.2581501370469194],[124,139,73,-0.31174762645133575],[124,139,74,-0.3234025369858452],[124,139,75,-0.27235883174238074],[124,139,76,-0.24302290403405186],[124,139,77,-0.2615040916624649],[124,139,78,-0.30684062261672634],[124,139,79,-0.3091221575720811],[124,140,64,-0.162644880284158],[124,140,65,-0.18166852534662525],[124,140,66,-0.09775718128205942],[124,140,67,-0.04635811020976732],[124,140,68,-0.04291266173550808],[124,140,69,-0.06187009196669372],[124,140,70,-0.106343210213428],[124,140,71,-0.19469693160100135],[124,140,72,-0.2582372226192291],[124,140,73,-0.31209947133127386],[124,140,74,-0.3231291676747405],[124,140,75,-0.2719073662884796],[124,140,76,-0.24342169403536704],[124,140,77,-0.2622347378861394],[124,140,78,-0.30715377243508335],[124,140,79,-0.3088856480471306],[124,141,64,-0.16188166448245372],[124,141,65,-0.18131598493021367],[124,141,66,-0.09772199000403864],[124,141,67,-0.04631862180234829],[124,141,68,-0.043216906135055584],[124,141,69,-0.06240975830419072],[124,141,70,-0.10632014796247705],[124,141,71,-0.19419868114499622],[124,141,72,-0.2582390936251541],[124,141,73,-0.31235534565984596],[124,141,74,-0.3227670190121933],[124,141,75,-0.27138648629484663],[124,141,76,-0.24375362675620446],[124,141,77,-0.262884597132601],[124,141,78,-0.30736503323194764],[124,141,79,-0.3085578539086403],[124,142,64,-0.16108115533606604],[124,142,65,-0.1809165583962659],[124,142,66,-0.09765959066374205],[124,142,67,-0.04626523564824906],[124,142,68,-0.04350757548983971],[124,142,69,-0.06293119900859936],[124,142,70,-0.1062690670942634],[124,142,71,-0.1936396179601188],[124,142,72,-0.25815568453195836],[124,142,73,-0.31251495376718846],[124,142,74,-0.3223163030771576],[124,142,75,-0.27079641887441425],[124,142,76,-0.2440178469914589],[124,142,77,-0.2634524174673471],[124,142,78,-0.3074737573737778],[124,142,79,-0.30813885466620966],[124,143,64,-0.16024394059154204],[124,143,65,-0.18047036781653747],[124,143,66,-0.09756974384732836],[124,143,67,-0.04619775515451694],[124,143,68,-0.043784119243722094],[124,143,69,-0.0634335062987499],[124,143,70,-0.10618961259757417],[124,143,71,-0.19302008616208347],[124,143,72,-0.25798703765468617],[124,143,73,-0.3125781151341964],[124,143,74,-0.32177733209861875],[124,143,75,-0.2701374667787531],[124,143,76,-0.24421357636579477],[124,143,77,-0.26393704657870826],[124,143,78,-0.30747942788213006],[124,143,79,-0.3076288354227421],[124,144,64,-0.15937064773932447],[124,144,65,-0.17997759210029626],[124,144,66,-0.09745225111402103],[124,144,67,-0.04611601033364633],[124,144,68,-0.04404601037786087],[124,144,69,-0.06391579681973825],[124,144,70,-0.10608146174055211],[124,144,71,-0.1923405058929771],[124,144,72,-0.2577333027813719],[124,144,73,-0.312544764538058],[124,144,74,-0.32115051746090895],[124,144,75,-0.26941000758930206],[124,144,76,-0.24434011552429574],[124,144,77,-0.264337435009701],[124,144,78,-0.3073816599863656],[124,144,79,-0.3070280866396256],[124,145,64,-0.15846194267225178],[124,145,65,-0.17943846662833374],[124,145,66,-0.09730695543543867],[124,145,67,-0.04601985817479225],[124,145,68,-0.04429274673781301],[124,145,69,-0.06437721400271336],[124,145,70,-0.10594432506086009],[124,145,71,-0.1916013722390579],[124,145,72,-0.25739473657679734],[124,145,73,-0.3124149519755188],[124,145,74,-0.32043636853808016],[124,145,75,-0.26861449279263666],[124,145,76,-0.24439684618854213],[124,145,77,-0.2646526391910113],[124,145,78,-0.30718020240207466],[124,145,79,-0.3063370037063691],[124,146,64,-0.15751852827714596],[124,146,65,-0.1788532827848303],[124,146,66,-0.09713374156000353],[124,146,67,-0.045909182964590234],[124,146,68,-0.044523852311946895],[124,146,69,-0.06481693037245712],[124,146,70,-0.10577794729485546],[124,146,71,-0.19080325399572737],[124,146,72,-0.2569717017670594],[124,146,73,-0.3121888423646313],[124,146,74,-0.3196354913612573],[124,146,75,-0.26775144674243817],[124,146,76,-0.24438323307047075],[124,146,77,-0.26488182426405144],[124,146,78,-0.3068749383301584],[124,146,79,-0.3055560863154361],[124,147,64,-0.15654114296319763],[124,147,65,-0.17822238738796783],[124,147,66,-0.0969325363007793],[124,147,67,-0.04578389655610399],[124,147,68,-0.04473887845676291],[124,147,69,-0.06523414979494195],[124,147,70,-0.10558210824214964],[124,147,71,-0.18994679228329509],[124,147,72,-0.25646466610783425],[124,147,73,-0.3118667150263958],[124,147,74,-0.3187485871232931],[124,147,75,-0.2668214655110754],[124,147,76,-0.2442988256367738],[124,147,77,-0.26502426668367807],[124,147,78,-0.3064658861723602],[124,147,79,-0.3046859376435381],[124,148,64,-0.15553055913107772],[124,148,65,-0.1775461820204553],[124,148,66,-0.0967033087452811],[124,148,67,-0.04564393858454531],[124,148,68,-0.044937405064833506],[124,148,69,-0.06562810965718643],[124,148,70,-0.10535662356213202],[124,148,71,-0.18903269901766218],[124,148,72,-0.25587420113985543],[124,148,73,-0.3114489629482481],[124,148,74,-0.3177764505254594],[124,148,75,-0.2658252156339516],[124,148,76,-0.2441432597169113],[124,148,77,-0.26507935659070364],[124,148,78,-0.30595319995983694],[124,148,79,-0.3037272633411614],[124,149,64,-0.15448758158684925],[124,149,65,-0.17682512226142177],[124,149,66,-0.09644607038604347],[124,149,67,-0.04548927662860508],[124,149,68,-0.04511904167128498],[124,149,69,-0.06599808297195989],[124,149,70,-0.10510134549923085],[124,149,71,-0.18806175524045216],[124,149,72,-0.2552009807357454],[124,149,73,-0.3109360918319782],[124,149,74,-0.31671996797127416],[124,149,75,-0.26476343274999525],[124,149,76,-0.24391625894825492],[124,149,77,-0.26504659994504776],[124,149,78,-0.3053371694922395],[124,149,79,-0.3026808703326102],[124,150,64,-0.1534130459048953],[124,150,65,-0.17605971682139515],[124,150,66,-0.09616087517095223],[124,150,67,-0.04531990631637416],[124,150,68,-0.045283428494902744],[124,150,69,-0.06634338040007809],[124,150,70,-0.10481616353385416],[124,150,71,-0.187034809313503],[124,150,72,-0.2544457794429147],[124,150,73,-0.3103287189292263],[124,150,74,-0.31558011561293997],[124,150,75,-0.2636369201418884],[124,150,76,-0.24361763605231257],[124,150,77,-0.2649256204110615],[124,150,78,-0.3046182201856352],[124,150,79,-0.3015476654293664],[124,151,64,-0.15230781674421545],[124,151,65,-0.1752505265823518],[124,151,66,-0.09584781947258311],[124,151,67,-0.04513585137502552],[124,151,68,-0.04543023741016971],[124,151,69,-0.0666633521833197],[124,151,70,-0.10450100495620585],[124,151,71,-0.18595277498304152],[124,151,72,-0.25360947062782324],[124,151,73,-0.309627571668256],[124,151,74,-0.31435795725615967],[124,151,75,-0.2624465471798043],[124,151,76,-0.24324729393642744],[124,151,77,-0.2647161609872918],[124,151,78,-0.30379691262845815],[124,151,79,-0.30032865376002255],[124,152,64,-0.1511727861225573],[124,152,65,-0.17439816354508958],[124,152,66,-0.0955070419760261],[124,152,67,-0.044937163623589654],[124,152,68,-0.04555917284675482],[124,152,69,-0.06695738998125739],[124,152,70,-0.1041558353603701],[124,152,71,-0.18481662931920606],[124,152,72,-0.2526930244274504],[124,152,73,-0.3088334860762756],[124,152,74,-0.3130546421294527],[124,152,75,-0.2611932476726341],[124,152,76,-0.24280522661586124],[124,152,77,-0.2644180853737541],[124,152,78,-0.30287394184558963],[124,152,79,-0.2990249370205732],[124,153,64,-0.15000887165295063],[124,153,65,-0.17350328968642284],[124,153,66,-0.0951387234849172],[124,153,67,-0.044723922908343164],[124,153,68,-0.045669972613213775],[124,153,69,-0.06722492860562694],[124,153,70,-0.10378065905631503],[124,153,71,-0.1836274105369324],[124,153,72,-0.25169750551435177],[124,153,73,-0.30794740500210777],[124,153,74,-0.311671402524352],[124,153,75,-0.2598780181308376],[124,153,76,-0.2422915199516797],[124,153,77,-0.2640313790705861],[124,153,78,-0.3018501362715428],[124,153,79,-0.2976377115492986],[124,154,64,-0.1488170147472822],[124,154,65,-0.17256661572893758],[124,154,66,-0.09474308664563505],[124,154,67,-0.044496236980505796],[124,154,68,-0.04576240864191083],[124,154,69,-0.06746544764619217],[124,154,70,-0.10337551939770866],[124,154,71,-0.18238621570452113],[124,154,72,-0.250624070682162],[124,154,73,-0.3069703761444936],[124,154,74,-0.31020955131310834],[124,154,75,-0.2585019159451856],[124,154,76,-0.24170635220037462],[124,154,77,-0.26355615020278284],[124,154,78,-0.30072645643459706],[124,154,79,-0.2961682662309165],[124,155,64,-0.14759817879163173],[124,155,65,-0.1715888998262949],[124,155,66,-0.09432039558987343],[124,155,67,-0.04425424131612876],[124,155,68,-0.045836287652433486],[124,155,69,-0.0676784729824312],[124,155,70,-0.1029404990236919],[124,155,71,-0.18109419834649879],[124,155,72,-0.24947396625890947],[124,155,73,-0.30590354989186613],[124,155,74,-0.3086704793508132],[124,155,75,-0.25706605748584416],[124,155,76,-0.24104999437176697],[124,155,77,-0.26299263006662577],[124,155,78,-0.2995039933546598],[124,155,79,-0.29461798023517416],[124,156,64,-0.1463533472981242],[124,156,65,-0.170570946167283],[124,156,66,-0.09387095549604738],[124,156,67,-0.04399809887825325],[124,156,68,-0.04589145173106429],[124,156,69,-0.06786357817577644],[124,156,70,-0.10247572001304348],[124,156,71,-0.17975256594765399],[124,156,72,-0.24824852535592512],[124,156,73,-0.30474817697984957],[124,156,74,-0.3070556527689977],[124,156,75,-0.25557161612632284],[124,156,76,-0.24032281039226427],[124,156,77,-0.26234117339427476],[124,156,78,-0.2981839666584653],[124,156,79,-0.29298832059542335],[124,157,64,-0.1450835220380818],[124,157,65,-0.1695136035020346],[124,157,66,-0.09339511207022197],[124,157,67,-0.04372799982158214],[124,157,68,-0.04592777882413132],[124,157,69,-0.0680203857375253],[124,157,70,-0.10198134394940923],[124,157,71,-0.17836257736534059],[124,157,72,-0.2469491649605589],[124,157,73,-0.30350560597322074],[124,157,74,-0.3053666101679966],[124,157,75,-0.2540198201969481],[124,157,76,-0.2395252570711777],[124,157,77,-0.2616022583339335],[124,157,78,-0.2967677224166199],[124,157,79,-0.2912808396331699],[124,158,64,-0.14378972116128919],[124,158,65,-0.16841776359404187],[124,158,66,-0.09289325094752461],[124,158,67,-0.043444161140129764],[124,158,68,-0.04594518314339708],[124,158,69,-0.06814856826801491],[124,158,70,-0.10145757189658909],[124,158,71,-0.17692554015738016],[124,158,72,-0.24557738288130276],[124,158,73,-0.30217728057950055],[124,158,74,-0.30360495971550616],[124,158,75,-0.25241195087261104],[124,158,76,-0.23865788386841516],[124,158,77,-0.2607764861439391],[124,158,78,-0.29525673070787045],[124,158,79,-0.2894971722349753],[124,159,64,-0.14247297730616282],[124,159,65,-0.16728435960178492],[124,159,66,-0.09236579701523245],[124,159,67,-0.043146826258490686],[124,159,68,-0.04594361548193882],[124,159,69,-0.06824784946309709],[124,159,70,-0.10090464428315044],[124,159,71,-0.1754428078330595],[124,159,72,-0.2441347545542741],[124,159,73,-0.3007647368017254],[124,159,74,-0.3017723761588908],[124,159,75,-0.2507493399995973],[124,159,76,-0.23772133246248456],[124,159,77,-0.25986458060006484],[124,159,78,-0.2936525829167946],[124,159,79,-0.287639032988452],[124,160,64,-0.14113433570559383],[124,160,65,-0.16611436439395902],[124,160,66,-0.09181321365896049],[124,160,67,-0.04283626456754008],[124,160,68,-0.0459230634392702],[124,160,69,-0.0683180049843989],[124,160,70,-0.10032284069589427],[124,160,71,-0.1739157770348435],[124,160,72,-0.24262292972030622],[124,160,73,-0.29926959993833413],[124,160,74,-0.2998705977589003],[124,160,75,-0.24903336786638636],[124,160,76,-0.23671633611838525],[124,160,77,-0.2588673871162865],[124,160,78,-0.29195698877195336],[124,160,79,-0.28570821318444956],[124,161,64,-0.13977485229321393],[124,161,65,-0.16490878880248702],[124,161,66,-0.09123600193365515],[124,161,67,-0.0425127709056188],[124,161,68,-0.04588355155483335],[124,161,69,-0.06835886319040625],[124,161,70,-0.09971247958206604],[124,161,71,-0.17234588465860728],[124,161,72,-0.24104362898222903],[124,161,73,-0.2976935814384714],[124,161,74,-0.29790142315255247],[124,161,75,-0.24726546092335097],[124,161,76,-0.23564371885562727],[124,161,77,-0.25778587158025623],[124,161,78,-0.2901717731323608],[124,161,79,-0.2837065776928659],[124,162,64,-0.13839559181475733],[124,162,65,-0.1636686798176261],[124,162,66,-0.09063469966130254],[124,162,67,-0.042176664986399624],[124,162,68,-0.04582514134927409],[124,162,69,-0.06837030572586056],[124,162,70,-0.09907391786043149],[124,162,71,-0.17073460492021875],[124,162,72,-0.23939864025212726],[124,162,73,-0.2960384756213064],[124,162,74,-0.2958667081529807],[124,162,75,-0.2454470894563246],[124,162,76,-0.23450439441726662],[124,162,77,-0.2566211189056767],[124,162,78,-0.28829887253090175],[124,162,79,-0.28163606171982986],[124,163,64,-0.1369976259491169],[124,163,65,-0.16239511872962653],[124,163,66,-0.09000988045750509],[124,163,67,-0.04182829077483384],[124,163,68,-0.04574793127326796],[124,163,69,-0.06835226796749676],[124,163,70,-0.09840755044166684],[124,163,71,-0.16908344637639142],[124,163,72,-0.23768981509859086],[124,163,73,-0.29430615626826423],[124,163,74,-0.29376836249405686],[124,163,75,-0.2435797652190032],[124,163,76,-0.23329936504149018],[124,163,77,-0.2553743313047416],[124,163,78,-0.2863403314840696],[124,163,79,-0.27949866745425467],[124,164,64,-0.13558203144362696],[124,164,65,-0.16108921922154523],[124,164,66,-0.0893621526893357],[124,164,67,-0.041468015812789125],[124,164,68,-0.045652056564030284],[124,164,69,-0.0683047393247083],[124,164,70,-0.0977138096588329],[124,164,71,-0.1673939489077798],[124,164,72,-0.23591906500417004],[124,164,73,-0.2924985730973424],[124,164,74,-0.29160834652763623],[124,164,75,-0.24166503902918085],[124,164,76,-0.23202972003797678],[124,164,77,-0.25404682628479597],[124,164,78,-0.28429829857814976],[124,164,79,-0.2772964606120568],[124,165,64,-0.13414988826797314],[124,165,65,-0.15975212541791142],[124,165,66,-0.08869215836707815],[124,165,67,-0.041096230496138905],[124,165,68,-0.04553768900995462],[124,165,69,-0.0682277633942217],[124,165,70,-0.09699316460895323],[124,165,71,-0.16566768067225232],[124,165,72,-0.23408835754337307],[124,165,73,-0.29061774812891694],[124,165,74,-0.2893886678812405],[124,165,75,-0.23970449833380802],[124,165,76,-0.2306966341719137],[124,165,77,-0.2526400343743305],[124,165,78,-0.2821750223426654],[124,165,79,-0.27503156688656705],[124,166,64,-0.13270227779101273],[124,166,65,-0.1583850098940369],[124,166,66,-0.08800057197269093],[124,166,67,-0.04071334730526116],[124,166,68,-0.04540503662418699],[124,166,69,-0.06812143796843224],[124,166,70,-0.09624612040704657],[124,166,71,-0.1639062350362755],[124,166,72,-0.23219971249163737],[124,166,73,-0.2886657719526104],[124,166,74,-0.2871113780839115],[124,166,75,-0.23769976474780166],[124,166,76,-0.22930136585917235],[124,166,77,-0.2511554965843264],[124,166,78,-0.27997284692251684],[124,166,79,-0.27270616831381167],[124,167,64,-0.131240280984671],[124,167,65,-0.1569890716508762],[124,167,66,-0.08728809922806902],[124,167,67,-0.04031979999109505],[124,167,68,-0.04525434322830344],[124,167,69,-0.06798591489760973],[124,167,70,-0.09547321735424871],[124,167,71,-0.16211122749229054],[124,167,72,-0.23025519787582022],[124,167,73,-0.28664479990503444],[124,167,74,-0.2847785691679787],[124,167,75,-0.23565249157157492],[124,167,76,-0.22784525517687235],[124,167,77,-0.24959486161198657],[124,167,78,-0.277694207560949],[124,167,79,-0.2703224995616195],[124,168,64,-0.12976497665889677],[124,168,65,-0.15556553406037152],[124,168,66,-0.08655547580635424],[124,168,67,-0.03991604271905143],[124,168,68,-0.04508588794757811],[124,168,69,-0.06782139980670943],[124,168,70,-0.09467503002193196],[124,168,71,-0.16028429256985552],[124,168,72,-0.22825692597673253],[124,168,73,-0.28455704816828575],[124,168,74,-0.28239237025431146],[124,168,75,-0.23356436129213928],[124,168,76,-0.2263297216941318],[124,168,77,-0.24795988279471637],[124,168,78,-0.2753416259059778],[124,168,79,-0.26788284415157027],[124,169,64,-0.12827743973152722],[124,169,65,-0.15411564278631013],[124,169,66,-0.08580346598978116],[124,169,67,-0.03950254917327535],[124,169,68,-0.04489998461971032],[124,169,69,-0.06762815166811473],[124,169,70,-0.09385216625404606],[124,169,71,-0.15842708074825682],[124,169,72,-0.22620704929429092],[124,169,73,-0.28240478979924655],[124,169,74,-0.27995494412858085],[124,169,75,-0.23143708307262748],[124,169,76,-0.22475626212849986],[124,169,77,-0.24625241482317575],[124,169,78,-0.27291770515351665],[124,169,79,-0.2653895306229883],[124,170,64,-0.1267787395366913],[124,170,65,-0.15264066368571733],[124,170,66,-0.0850328612776949],[124,170,67,-0.039079811623875645],[124,170,68,-0.04469698111916647],[124,170,69,-0.06740648223212718],[124,170,70,-0.09300526609011539],[124,170,71,-0.15654125537808738],[124,170,72,-0.22410775648576817],[124,170,73,-0.2801903506997684],[124,170,74,-0.27746848381586864],[124,170,75,-0.22927239023498197],[124,170,76,-0.223126447834134],[124,170,77,-0.24447441022303268],[124,170,78,-0.2704251250408787],[124,170,79,-0.26284492864824716],[124,171,64,-0.12526993817523857],[124,171,65,-0.1511418806958819],[124,171,66,-0.08424447894861956],[124,171,67,-0.03864833995995973],[124,171,68,-0.0444772585996996],[124,171,69,-0.06715675531764302],[124,171,70,-0.09213500061168034],[124,171,71,-0.15462848961920966],[124,171,72,-0.2219612682876107],[124,171,73,-0.2779161055379131],[124,171,74,-0.27493520916086706],[124,171,75,-0.22707203774051532],[124,171,76,-0.2214419221284476],[124,171,77,-0.24262791561594324],[124,171,78,-0.26786663670484473],[124,171,79,-0.2602514451087527],[124,172,64,-0.12375208891043786],[124,172,65,-0.14962059371208064],[124,172,66,-0.08343916058038382],[124,172,67,-0.038208660691406986],[124,172,68,-0.04424123065787984],[124,172,69,-0.06687938596592499],[124,172,70,-0.09124207071515229],[124,172,71,-0.15269046340225664],[124,172,72,-0.21976983343113865],[124,172,73,-0.27558447363041116],[124,172,74,-0.2723573634206991],[124,172,75,-0.22483779967293677],[124,172,76,-0.2197043974645002],[124,172,77,-0.24071506777103835],[124,172,78,-0.2652450574188395],[124,172,79,-0.257611520140997],[124,173,64,-0.12222623461197708],[124,173,65,-0.14807811646106403],[124,173,66,-0.08261777053248318],[124,173,67,-0.03776131592247481],[124,173,68,-0.04398934242080598],[124,173,69,-0.066574839460928],[124,173,70,-0.09032720581432364],[124,173,71,-0.1507288604206314],[124,173,72,-0.21753572456230758],[124,173,73,-0.2731979147964831],[124,173,74,-0.26973720987721145],[124,173,75,-0.22257146672834258],[124,173,76,-0.21791565245697345],[124,173,77,-0.23873808945896724],[124,173,78,-0.262563265224125],[124,173,79,-0.2549276231620798],[124,174,64,-0.12069340625109942],[124,174,65,-0.1465157743753762],[124,174,66,-0.08178119439504641],[124,174,67,-0.03730686230050038],[124,174,68,-0.04372206956151889],[124,174,69,-0.0662436302201903],[124,174,70,-0.08939116247604295],[124,174,71,-0.14874536515975886],[124,174,72,-0.21526123417556717],[124,174,73,-0.2707589251931544],[124,174,74,-0.26707702847540576],[124,174,75,-0.2202748437165897],[124,174,76,-0.21607752877015052],[124,174,77,-0.2366992851213059],[124,174,78,-0.2598241934702463],[124,174,79,-0.2522022488841137],[124,175,64,-0.11915462144944776],[124,175,65,-0.14493490247351193],[124,175,66,-0.08093033740888189],[124,175,67,-0.03684586994304905],[124,175,68,-0.043439917245893384],[124,175,69,-0.06588632056075251],[124,175,70,-0.08843472299273608],[124,175,71,-0.14674165997002883],[124,175,72,-0.21294867057162006],[124,175,73,-0.26827003314210923],[124,175,74,-0.2643791124944534],[124,175,75,-0.21794974707835485],[124,175,76,-0.21419192787681973],[124,175,77,-0.23460103636879667],[124,175,78,-0.25703082528020776],[124,175,79,-0.2494379133268825],[124,176,64,-0.11761088308393809],[124,176,65,-0.14333684325086107],[124,176,66,-0.08006612286121305],[124,176,67,-0.03637892134699481],[124,176,68,-0.043143419015094636],[124,176,69,-0.06550351934507931],[124,176,70,-0.08745869389569082],[124,176,71,-0.14471942218961176],[124,176,72,-0.21060035384863326],[124,176,73,-0.26573379495798877],[124,176,74,-0.2616457652574572],[124,176,75,-0.21559800242202073],[124,176,76,-0.21226080769748037],[124,176,77,-0.23244579732248896],[124,176,78,-0.25418618795601294],[124,176,79,-0.24663714983800147],[124,177,64,-0.11606317794976807],[124,177,65,-0.1417229445863639],[124,177,66,-0.07918949046187616],[124,177,67,-0.035906610283162256],[124,177,68,-0.0428331356079958],[124,177,69,-0.06509588051245467],[124,177,70,-0.08646390441323104],[124,177,71,-0.14268032132303132],[124,177,72,-0.2082186119362355],[124,177,73,-0.2631527907879937],[124,177,74,-0.2588792968859694],[124,177,75,-0.21322144208449315],[124,177,76,-0.210286179129781],[124,177,77,-0.23023608981253077],[124,177,78,-0.25129334734044345],[124,177,79,-0.24380250512983323],[124,178,64,-0.11451247548338404],[124,178,65,-0.14009455766968257],[124,178,66,-0.07830139470480493],[124,178,67,-0.03542954068021455],[124,178,68,-0.0425096537281726],[124,178,69,-0.0646641015017267],[124,178,70,-0.08545120487806482],[124,178,71,-0.14062601628105392],[124,178,72,-0.2058057766813091],[124,178,73,-0.260529620472424],[124,178,74,-0.25608202110494077],[124,178,75,-0.2108219027198497],[124,178,76,-0.20827010247846106],[124,178,77,-0.2279744984497988],[124,178,78,-0.24835540215096583],[124,178,79,-0.24093653534222595],[124,179,64,-0.1129597265469413],[124,179,65,-0.13845303495360387],[124,179,66,-0.07740280321976102],[124,179,67,-0.03494832550160368],[124,179,68,-0.04217358476038264],[124,179,69,-0.06420892157175025],[124,179,70,-0.08442146508826372],[124,179,71,-0.13855815268707836],[124,179,72,-0.20336417999424286],[124,179,73,-0.25786689943561864],[124,179,74,-0.2532562521035224],[124,179,75,-0.208401222919598],[124,179,76,-0.20621468379651606],[124,179,77,-0.22566366558609366],[124,179,78,-0.24537547830171394],[124,179,79,-0.23804180213997586],[124,180,64,-0.11140586227558287],[124,180,65,-0.13679972813631278],[124,180,66,-0.07649469511934878],[124,180,67,-0.03446358561947625],[124,180,68,-0.041825563441664555],[124,180,69,-0.06373112002626721],[124,180,70,-0.0833755726264889],[124,180,71,-0.1364783602549096],[124,180,72,-0.20089615006402098],[124,180,73,-0.25516725461659273],[124,180,74,-0.25040430145690984],[124,180,75,-0.20596124086823112],[124,180,76,-0.2041220711486803],[124,180,77,-0.22330628617906267],[124,180,78,-0.2423567232295235],[124,180,79,-0.23512086885383685],[124,181,64,-0.10985179298854322],[124,181,65,-0.13513598617803463],[124,181,66,-0.07557805934642146],[124,181,67,-0.03397594868950912],[124,181,68,-0.04146624649242387],[124,181,69,-0.06323151435036549],[124,181,70,-0.08231443114221866],[124,181,71,-0.13438825024240234],[124,181,72,-0.19840400765012103],[124,181,73,-0.2524333204483957],[124,181,74,-0.24752847511408965],[124,181,75,-0.20350379203756946],[124,181,76,-0.20199445080862835],[124,181,77,-0.220905102578364],[124,181,78,-0.23930230023988908],[124,181,79,-0.232176296673625],[124,182,64,-0.10829840716480298],[124,182,65,-0.1334631533563946],[124,182,66,-0.07465389302702136],[124,182,67,-0.033486048030683904],[124,182,68,-0.04109631121304408],[124,182,69,-0.0627109582659742],[124,182,70,-0.08123895860180019],[124,182,71,-0.13228941298504404],[124,182,72,-0.19589006245877713],[124,182,73,-0.24966773489495878],[124,182,74,-0.24463107045605406],[124,182,75,-0.20103070692324237],[124,182,76,-0.1998340434015802],[124,182,77,-0.21846289924988868],[124,182,78,-0.23621538288858931],[124,182,79,-0.22921064090176463],[124,183,64,-0.1067465704837892],[124,183,65,-0.13178256736475633],[124,183,66,-0.07372319983409528],[124,183,67,-0.03299452151412714],[124,183,68,-0.04071645405181581],[124,183,69,-0.062170339714255486],[124,183,70,-0.08015008551131923],[124,183,71,-0.13018341551321844],[124,183,72,-0.19335660961082318],[124,183,73,-0.24687313555397167],[124,183,74,-0.24171437342881053],[124,183,75,-0.19854380882655417],[124,183,76,-0.19764310000430843],[124,183,77,-0.2159824974551797],[124,183,78,-0.23309914941461518],[124,183,79,-0.22622644727543673],[124,184,64,-0.10519712493128976],[124,184,65,-0.13009555745759568],[124,184,66,-0.07278698836721403],[124,184,67,-0.03250201046514189],[124,184,68,-0.040327389150101416],[124,184,69,-0.061610578773010204],[124,184,70,-0.07904875311731142],[124,184,71,-0.12807179925643616],[124,184,72,-0.19080592620783463],[124,184,73,-0.24405215583397913],[124,184,74,-0.23878065575514232],[124,184,75,-0.1960449116847726],[124,184,76,-0.1954238982146953],[124,184,77,-0.21346674990331013],[124,184,78,-0.2299567772397475],[124,184,79,-0.2232262483651599],[124,185,64,-0.10365088797047893],[124,185,65,-0.1284034426468129],[124,185,66,-0.07184627055354506],[124,185,67,-0.03200915858258906],[124,185,68,-0.03992984687079939],[124,185,69,-0.06103262551747702],[124,185,70,-0.07793591159038073],[124,185,71,-0.12595607783738896],[124,185,72,-0.18824026800285673],[124,185,73,-0.24120742121359104],[124,185,74,-0.23583217222881137],[124,185,75,-0.19353581795274855],[124,185,76,-0.19317873820319628],[124,185,77,-0.21091853539265631],[124,185,78,-0.2267914375498898],[124,185,79,-0.22021256005739545],[124,186,64,-0.10210865177770602],[124,186,65,-0.1267075299527462],[124,186,66,-0.07090206007537868],[124,186,67,-0.0315166108798581],[124,186,68,-0.03952457231636647],[124,186,69,-0.06043745783321881],[124,186,70,-0.07681251819690499],[124,186,71,-0.12383773495833016],[124,186,72,-0.1856618661815797],[124,186,73,-0.23834154559038837],[124,186,74,-0.2328711580945921],[124,186,75,-0.19101831653863324],[124,186,76,-0.1909099387587134],[124,186,77,-0.20834075346009068],[124,186,78,-0.22360628997295767],[124,186,79,-0.21718787812847018],[124,187,64,-0.10057118254238531],[124,187,65,-0.12500911271343246],[124,187,66,-0.06995537082946038],[124,187,67,-0.031025012651630334],[124,187,68,-0.039112323842717775],[124,187,69,-0.05982607918994017],[124,187,70,-0.07567953546395698],[124,187,71,-0.1217182223817866],[124,187,72,-0.18307292425930605],[124,187,73,-0.23545712772673844],[124,187,74,-0.22989982651721347],[124,187,75,-0.1884941807962899],[124,187,76,-0.18861983334146817],[124,187,77,-0.20573631905512188],[124,187,78,-0.22040447736774438],[124,187,79,-0.21415467491679477],[124,188,64,-0.09903921983004642],[124,188,65,-0.12330946895546288],[124,188,66,-0.06900721542336392],[124,188,67,-0.030535008470653647],[124,188,68,-0.03869387157543028],[124,188,69,-0.05919951638527506],[124,188,70,-0.07453792934258323],[124,188,71,-0.11959895800718164],[124,188,72,-0.1804756150985609],[124,188,73,-0.23255674779934346],[124,188,74,-0.22692036614194142],[124,188,75,-0.1859651665768074],[124,188,76,-0.18631076615548478],[124,188,77,-0.20310815725643855],[124,188,78,-0.21718912073773836],[124,188,79,-0.2111153960999811],[124,189,64,-0.09751347600738144],[124,189,65,-0.1216098598296358],[124,189,66,-0.0680586037141579],[124,189,67,-0.03004724121879185],[124,189,68,-0.03826999593480396],[124,189,69,-0.0585588172677908],[124,189,70,-0.07338866737462314],[124,189,71,-0.11748132404457168],[124,189,72,-0.17787207805176236],[124,189,73,-0.22964296405904006],[124,189,74,-0.22393493874930925],[124,189,75,-0.18343301034143647],[124,189,76,-0.1839850882533831],[124,189,77,-0.20045919804828138],[124,189,78,-0.21396331428349116],[124,189,79,-0.2080724575831915],[124,190,64,-0.09599463572780506],[124,190,65,-0.1199115281143535],[124,190,66,-0.06711054139453176],[124,190,67,-0.02956235115655221],[124,190,68,-0.03784148617634126],[124,190,69,-0.05790504844850795],[124,190,70,-0.07223271686813244],[124,190,71,-0.11536666528617906],[124,190,72,-0.17526441623279498],[124,190,73,-0.22671830960691472],[124,190,74,-0.2209456770061318],[124,190,75,-0.1808994273380532],[124,190,76,-0.18164515368609543],[124,190,77,-0.19779237117384876],[124,190,78,-0.21073012060657142],[124,190,79,-0.20502824250463872],[124,191,64,-0.09448335547578897],[124,191,65,-0.1182156967895044],[124,191,66,-0.06616402863150199],[124,191,67,-0.02908097503528676],[124,191,68,-0.03740913895326567],[124,191,69,-0.05723929301035528],[124,191,70,-0.07107104308646071],[124,191,71,-0.11325628747600548],[124,191,72,-0.17265469392084246],[124,191,73,-0.22378528929241004],[124,191,74,-0.21795468231464252],[124,191,75,-0.17836610984309184],[124,191,76,-0.17929331571005214],[124,191,77,-0.19511060108272596],[124,191,78,-0.2074925660776102],[124,191,79,-0.20198509836376455],[124,192,64,-0.0929802631680097],[124,192,65,-0.1165235676833984],[124,192,66,-0.06522005876280106],[124,192,67,-0.028603745256276892],[124,192,68,-0.03697375690775718],[124,192,69,-0.056562648225058215],[124,192,70,-0.06990460745596158],[124,192,71,-0.11115145577737356],[124,192,72,-0.17004493409934743],[124,192,73,-0.22084637673873003],[124,192,74,-0.2149640227613509],[124,192,75,-0.1758347254707895],[124,192,76,-0.1769319230643398],[124,192,77,-0.19241680198911137],[124,192,78,-0.20425363638042915],[124,192,79,-0.19894533427731836],[124,193,64,-0.09148595780904331],[124,193,65,-0.11483632019505263],[124,193,66,-0.06427961705593384],[124,193,67,-0.028131289080836352],[124,193,68,-0.03653614729756146],[124,193,69,-0.05587622328696662],[124,193,70,-0.06873436579721026],[124,193,71,-0.10905339333779787],[124,193,72,-0.16743711613241719],[124,193,73,-0.21790401150038494],[124,193,74,-0.2119757311668422],[124,193,75,-0.17330691555134567],[124,193,76,-0.1745633163301067],[124,193,77,-0.1897138730572109],[124,193,78,-0.20101627224355648],[124,193,79,-0.19591121836806533],[124,194,64,-0.0900010091991403],[124,194,65,-0.11315511009393968],[124,194,66,-0.06334367953484075],[124,194,67,-0.027664227895548354],[124,194,68,-0.03609712066462001],[124,194,69,-0.0551811370733077],[124,194,70,-0.06756126658445116],[124,194,71,-0.10696327995011379],[124,194,72,-0.16483317358047736],[124,194,73,-0.2149605963573459],[124,194,74,-0.20899180323755054],[124,194,75,-0.1707842935795424],[124,194,76,-0.1721898243844143],[124,194,77,-0.18700469372989229],[124,194,78,-0.1977833653698992],[124,194,79,-0.1928849752905611],[124,195,64,-0.08852595769131447],[124,195,65,-0.11148106839904943],[124,195,66,-0.06241321187900155],[124,195,67,-0.027203176536709575],[124,195,68,-0.03565748955237682],[124,195,69,-0.05447851594036993],[124,195,70,-0.06638624923793585],[124,195,71,-0.10488225080841979],[124,195,72,-0.16223499215647139],[124,195,73,-0.21201849474978895],[124,195,74,-0.20601419582011982],[124,195,75,-0.1682684437350741],[124,195,76,-0.16981376096038497],[124,195,77,-0.1842921192161398],[124,195,78,-0.19455775457455168],[124,195,79,-0.1898687838978824],[124,196,64,-0.08706131549241762],[124,196,65,-0.10981530053465238],[124,196,66,-0.061489167716336425],[124,196,67,-0.026748741426016725],[124,196,68,-0.03521806500505542],[124,196,69,-0.053769489951081835],[124,196,70,-0.06521024242900515],[124,196,71,-0.10281139567026457],[124,196,72,-0.15964440736128033],[124,196,73,-0.20908002756537078],[124,196,74,-0.20304482529547158],[124,196,75,-0.16576092015666125],[124,196,76,-0.16743742155429056],[124,196,77,-0.18157897597459796],[124,196,78,-0.19134222236550522],[124,196,79,-0.1868647760160131],[124,197,64,-0.08560774322168346],[124,197,65,-0.10815890812715497],[124,197,66,-0.06057240538751693],[124,197,67,-0.026301371360487977],[124,197,68,-0.034779387934505065],[124,197,69,-0.05305500061029004],[124,197,70,-0.06403416032714117],[124,197,71,-0.10075179808259685],[124,197,72,-0.15706315169703322],[124,197,73,-0.20614738036081504],[124,197,74,-0.20008557297822263],[124,197,75,-0.16326332632234114],[124,197,76,-0.1650631037641693],[124,197,77,-0.17886803297778334],[124,197,78,-0.18813951615276284],[124,197,79,-0.1838751467445172],[124,198,64,-0.0841662114602268],[124,198,65,-0.10651300706343843],[124,198,66,-0.05966360254006703],[124,198,67,-0.025861215842094158],[124,198,68,-0.03434148776315848],[124,198,69,-0.05233562646024013],[124,198,70,-0.06285890338773001],[124,198,71,-0.09870458977366756],[124,198,72,-0.1544928259888981],[124,198,73,-0.203222534785657],[124,198,74,-0.19713830463687926],[124,198,75,-0.16077738967026403],[124,198,76,-0.16269310632270426],[124,198,77,-0.17616195525227377],[124,198,78,-0.184952356659254],[124,198,79,-0.18090224803339203],[124,199,64,-0.08273768973404903],[124,199,65,-0.10487868482658523],[124,199,66,-0.05876339085414496],[124,199,67,-0.02542838115567805],[124,199,68,-0.03390435672960609],[124,199,69,-0.05161191742809639],[124,199,70,-0.061685364726064375],[124,199,71,-0.09667089728800919],[124,199,72,-0.15193500738669707],[124,199,73,-0.20030744235777867],[124,199,74,-0.194204871476032],[124,199,75,-0.1583048202222229],[124,199,76,-0.16032966542656113],[124,199,77,-0.17346332363001607],[124,199,78,-0.18178338083977938],[124,199,79,-0.17794838185499526],[124,200,64,-0.08132310669413968],[124,200,65,-0.10325699483898068],[124,200,66,-0.05787237425486425],[124,200,67,-0.02500296388964442],[124,200,68,-0.03346800938205232],[124,200,69,-0.050884435846966586],[124,200,70,-0.06051442867022563],[124,200,71,-0.09465183106802096],[124,200,72,-0.14939125870128556],[124,200,73,-0.1974040424907672],[124,200,74,-0.19128710650688352],[124,200,75,-0.1558472908594464],[124,200,76,-0.15797494775653595],[124,200,77,-0.1707746381381447],[124,200,78,-0.17863513438367298],[124,200,79,-0.17501577350473843],[124,201,64,-0.07992335025713898],[124,201,65,-0.10164895617458558],[124,201,66,-0.056991129342703645],[124,201,67,-0.024585051337655466],[124,201,68,-0.03303248135801617],[124,201,69,-0.05015375446537756],[124,201,70,-0.059346968569544696],[124,201,71,-0.09264848229694692],[124,201,72,-0.14686312482990285],[124,201,73,-0.19451425895222507],[124,201,74,-0.18838682146315028],[124,201,75,-0.15340643577061883],[124,201,76,-0.15563105048367434],[124,201,77,-0.16809831760455582],[124,201,78,-0.17551007087343418],[124,201,79,-0.1721065710199798],[124,202,64,-0.07853926783275074],[124,202,65,-0.10005555335422979],[124,202,66,-0.05612020587332679],[124,202,67,-0.02417472190780228],[124,202,68,-0.03259782814629438],[124,202,69,-0.049420454481345695],[124,202,70,-0.05818384469222075],[124,202,71,-0.09066191989609228],[124,202,72,-0.14435212934959551],[124,202,73,-0.19163999647709495],[124,202,74,-0.1855058038697706],[124,202,75,-0.15098384903422568],[124,202,76,-0.15330000140081657],[124,202,77,-0.16543669942352537],[124,202,78,-0.17241055116620557],[124,202,79,-0.16922284479084262],[124,203,64,-0.07717158927900615],[124,203,65,-0.09847763600875821],[124,203,66,-0.05526007022076856],[124,203,67,-0.02377202063909356],[124,203,68,-0.032164089680034744],[124,203,69,-0.04868507121268101],[124,203,70,-0.05702584004728499],[124,203,71,-0.0886930897698567],[124,203,72,-0.14185961276881534],[124,203,73,-0.1887829241007821],[124,203,74,-0.18264560540533362],[124,203,75,-0.14858091154694372],[124,203,76,-0.15098358274152743],[124,203,77,-0.16279184727859106],[124,203,78,-0.1693386410689461],[124,203,79,-0.1663663870652978],[124,204,64,-0.0758204297660358],[124,204,65,-0.09691527225071235],[124,204,66,-0.054410737370287635],[124,204,67,-0.023376799130696433],[124,204,68,-0.03173106761905481],[124,204,69,-0.04794775344689237],[124,204,70,-0.05587326011514213],[124,204,71,-0.0867421866609469],[124,204,72,-0.1393857082662871],[124,204,73,-0.18594309083979574],[124,204,74,-0.17980618863661593],[124,204,75,-0.14619767976897372],[124,204,76,-0.14868218959171023],[124,204,77,-0.16016430901986822],[124,204,78,-0.1662948101952136],[124,204,79,-0.16353741900827262],[124,205,64,-0.07448565415195334],[124,205,65,-0.09536821517490225],[124,205,66,-0.0535720360315223],[124,205,67,-0.022988832108987986],[124,205,68,-0.03129848051891124],[124,205,69,-0.04720850414322516],[124,205,70,-0.05472622770011008],[124,205,71,-0.08480912335117093],[124,205,72,-0.1369300809726913],[124,205,73,-0.18311990658975996],[124,205,74,-0.17698688960762102],[124,205,75,-0.14383368035692093],[124,205,76,-0.1463956430759801],[124,205,77,-0.15755400679108664],[124,205,78,-0.16327887696138982],[124,205,79,-0.16073552187314863],[124,206,64,-0.07316715809388395],[124,206,65,-0.09383626594612103],[124,206,66,-0.052743815535833974],[124,206,67,-0.022607907751909257],[124,206,68,-0.030866086242482473],[124,206,69,-0.04646736916726969],[124,206,70,-0.053584908471814095],[124,206,71,-0.08289388628559738],[124,206,72,-0.13449250115956535],[124,206,73,-0.18031291223406112],[124,206,74,-0.17418717194644162],[124,206,75,-0.14148853154533655],[124,206,76,-0.1441238295670484],[124,206,77,-0.15496093401890526],[124,206,78,-0.16029074187669004],[124,206,79,-0.1579603631313338],[124,207,64,-0.07186486658477424],[124,207,65,-0.09231927211011694],[124,207,66,-0.051925945253044954],[124,207,67,-0.02223382727235055],[124,207,68,-0.030433680767551433],[124,207,69,-0.045724435809589646],[124,207,70,-0.052449508556175826],[124,207,71,-0.08099653100105782],[124,207,72,-0.13207283959255445],[124,207,73,-0.17752177552264553],[124,207,74,-0.17140662272438162],[124,207,75,-0.13916194034345822],[124,207,76,-0.14186669990483783],[124,207,77,-0.1523851541153425],[124,207,78,-0.1573303846788488],[124,207,79,-0.1552116939393191],[124,208,64,-0.07057873108833283],[124,208,65,-0.09081712406114724],[124,208,66,-0.05111831296324103],[124,208,67,-0.02186640406900135],[124,208,68,-0.030001096365445748],[124,208,69,-0.04497983028995691],[124,208,70,-0.05132027096945591],[124,208,71,-0.07911717582140676],[124,208,72,-0.12967105999154124],[124,208,73,-0.17474628298080416],[124,208,74,-0.168644944454606],[124,208,75,-0.13685369654293567],[124,208,76,-0.13962426522882296],[124,208,77,-0.14982679549175948],[124,208,78,-0.1543978576909265],[124,208,79,-0.15248934287611995],[124,209,64,-0.0693087267900595],[124,209,65,-0.08932975162780238],[124,209,66,-0.05032082330000649],[124,209,67,-0.021505462929761954],[124,209,68,-0.029568199813029255],[124,209,69,-0.04423371527254526],[124,209,70,-0.05019747211981413],[124,209,71,-0.07725599574573756],[124,209,72,-0.12728721170054522],[124,209,73,-0.1719863320149814],[124,209,74,-0.1659019473082192],[124,209,75,-0.13456366689433114],[124,209,76,-0.13739659287731187],[124,209,77,-0.14728604665151876],[124,209,78,-0.15149327936086016],[124,209,79,-0.14979320987218406],[124,210,64,-0.06805484996412967],[124,210,65,-0.08785712077582061],[124,210,66,-0.049533396264158765],[124,210,67,-0.021150839284850197],[124,210,68,-0.02913489063399155],[124,210,69,-0.04348628739312106],[124,210,70,-0.04908141837901465],[124,210,71,-0.0754132165283044],[124,210,72,-0.12492142256395192],[124,210,73,-0.1692419232101907],[124,210,74,-0.16317754154097894],[124,210,75,-0.13229178944873704],[124,210,76,-0.1351838023571952],[124,210,77,-0.14476315136695123],[124,210,78,-0.14861682798677286],[124,210,79,-0.1471232603285537],[124,211,64,-0.06681711545596622],[124,211,65,-0.08639923042694646],[124,211,66,-0.04875596580706371],[124,211,67,-0.020802378506904973],[124,211,68,-0.02870109936624059],[124,211,69,-0.042737774799999975],[124,211,70,-0.04797244272748778],[124,211,71,-0.07358910895001992],[124,211,72,-0.12257389200713253],[124,211,73,-0.16651315281538392],[124,211,74,-0.1604717301255775],[124,211,75,-0.13003806806183138],[124,211,76,-0.13298606138777086],[124,211,77,-0.14225840394634043],[124,211,78,-0.14576873563136333],[124,211,79,-0.14447951942560652],[124,212,64,-0.06559555428023905],[124,212,65,-0.08495610939307267],[124,212,66,-0.04798847848254751],[124,212,67,-0.020459935255476625],[124,212,68,-0.028266785852916206],[124,212,69,-0.041988434711090344],[124,212,70,-0.046870901476303684],[124,212,71,-0.0717839832821589],[124,212,72,-0.12024488432065067],[124,212,73,-0.1638002054145855],[124,212,74,-0.1577846015858436],[124,212,75,-0.12780256705848136],[124,212,76,-0.13080358202226033],[124,212,77,-0.1397721445965921],[124,212,78,-0.14294928222879374],[124,212,79,-0.14186206662103706],[124,213,64,-0.064390211333971],[124,213,65,-0.0835278134250819],[124,213,66,-0.047230892166382085],[124,213,67,-0.020123372863412863],[124,213,68,-0.02783193755523269],[124,213,69,-0.041238550989879046],[124,213,70,-0.04577717106995603],[124,213,71,-0.06999818394360195],[124,213,72,-0.11793472214829331],[124,213,73,-0.16110334678291527],[124,213,74,-0.15511632303050266],[124,213,75,-0.1255854060567048],[124,213,76,-0.1286366168506359],[124,213,77,-0.1373047548872212],[124,213,78,-0.14015878988756394],[124,213,79,-0.13927103033703403],[124,214,64,-0.0632011432243846],[124,214,65,-0.08211442237598532],[124,214,66,-0.046483174842323505],[124,214,67,-0.01979256276280441],[124,214,68,-0.027396567886028077],[124,214,69,-0.04048843174371377],[124,214,70,-0.04469164497413786],[124,214,71,-0.06823208435352986],[124,214,72,-0.11564378018004888],[124,214,73,-0.15842291692780497],[124,214,74,-0.1524671333852951],[124,214,75,-0.12338675495045327],[124,214,76,-0.126485455287418],[124,214,77,-0.13485665332126362],[124,214,78,-0.13739761739290665],[124,214,79,-0.13670658283688603],[124,215,64,-0.062028416210965935],[124,215,65,-0.08071603747799899],[124,215,66,-0.0457453034535855],[124,215,67,-0.01946738394821231],[124,215,68,-0.02696071456340993],[124,215,69,-0.03973840694805718],[124,215,70,-0.043614730652781236],[124,215,71,-0.0664860819818034],[124,215,72,-0.11337247905178406],[124,215,73,-0.15575932331663],[124,215,74,-0.1498373368231496],[124,215,75,-0.12120682905114055],[124,215,76,-0.12435041994802688],[124,215,77,-0.13242829101856604],[124,215,78,-0.13466615491211203],[124,215,79,-0.13416893529136614],[124,216,64,-0.06087210426108776],[124,216,65,-0.07933277873325362],[124,216,66,-0.045017262818576535],[124,216,67,-0.0191477224750001],[124,216,68,-0.02652443798440006],[124,216,69,-0.038988826100715676],[124,216,70,-0.04254684663873706],[124,216,71,-0.06476059359954141],[124,216,72,-0.11112127945389927],[124,216,73,-0.15311303429276316],[124,216,74,-0.14722729639288942],[124,216,75,-0.11904588438823457],[124,216,76,-0.12223186311719571],[124,216,77,-0.13002014751674826],[124,216,78,-0.13196481890603226],[124,216,79,-0.1316583330353055],[124,217,64,-0.059732287218430755],[124,217,65,-0.07796478241788855],[124,217,66,-0.04429904460971406],[124,217,67,-0.018833470990730985],[124,217,68,-0.02608781961896451],[124,217,69,-0.03824005591031557],[124,217,70,-0.04148841970249652],[124,217,71,-0.06305605073256508],[124,217,72,-0.10889067645165908],[124,217,73,-0.150484572682756],[124,217,74,-0.14463742784765204],[124,217,75,-0.11690421316960703],[124,217,76,-0.12013016331293928],[124,217,77,-0.12763272669501255],[124,217,78,-0.12929404724987031],[124,217,79,-0.12917505101487176],[124,218,64,-0.0586090490832224],[124,218,65,-0.076612198699213],[124,218,66,-0.04359064639401278],[124,218,67,-0.018524528297625117],[124,218,68,-0.02565096042515699],[124,218,69,-0.03749247802342843],[124,218,70,-0.040439882123246305],[124,218,71,-0.06137289532035035],[124,218,72,-0.10668119402008018],[124,218,73,-0.14787450959778758],[124,218,74,-0.14206819367463785],[124,218,75,-0.11478213940250877],[124,218,76,-0.11804572194938448],[124,218,77,-0.12526655282568322],[124,218,78,-0.12665429456601612],[124,218,79,-0.12671938942595215],[124,219,64,-0.05750247640317999],[124,219,65,-0.07527518936561002],[124,219,66,-0.04289207073412518],[124,219,67,-0.018220798944202064],[124,219,68,-0.02521397928648795],[124,219,69,-0.0367464867949089],[124,219,70,-0.03940166906647167],[124,219,71,-0.059711575583094416],[124,219,72,-0.10449337979642671],[124,219,73,-0.1452834584329268],[124,219,74,-0.13952009732823656],[124,219,75,-0.1126800146762395],[124,219,76,-0.11597896010170117],[124,219,77,-0.12292216675816313],[124,219,78,-0.12404602777143145],[124,219,79,-0.12429166954401814],[124,220,64,-0.056412656773823414],[124,220,65,-0.07395392566874996],[124,220,66,-0.04220332434840644],[124,220,67,-0.01792219284427291],[124,220,68,-0.024777011472874737],[124,220,69,-0.0360024871060092],[124,220,70,-0.03837421607207492],[124,220,71,-0.058072542099266204],[124,220,72,-0.10232780005331442],[124,220,73,-0.14271206906795667],[124,220,74,-0.13699367766879586],[124,220,75,-0.11059821410763429],[124,220,76,-0.1139303153761689],[124,220,77,-0.12060012223966753],[124,220,78,-0.12146972184167308],[124,220,79,-0.12189222974568062],[124,221,64,-0.05533967744668292],[124,221,65,-0.07264858627763338],[124,221,66,-0.04152441732856947],[124,221,67,-0.01762862492158246],[124,221,68,-0.024340207126830295],[124,221,69,-0.03526089223490557],[124,221,70,-0.03735795665681964],[124,221,71,-0.056456244095830325],[124,221,72,-0.10018503489539299],[124,221,73,-0.14016102227367444],[124,221,74,-0.13448950360949968],[124,221,75,-0.10853713245055933],[124,221,76,-0.11190023888829997],[124,221,77,-0.11830098237684095],[124,221,78,-0.11892585579329643],[124,221,79,-0.11952142172201928],[124,222,64,-0.05428362404369763],[124,222,65,-0.07135935534383141],[124,222,66,-0.04085536241339118],[124,222,67,-0.0173400147784356],[124,222,68,-0.023903729776696896],[124,222,69,-0.0345221217841617],[124,222,70,-0.036353320034557206],[124,222,71,-0.054863125952933516],[124,222,72,-0.09806567368232733],[124,222,73,-0.13763102432756025],[124,222,74,-0.13200816897383968],[124,222,75,-0.10649718037053665],[124,222,76,-0.10988919235170441],[124,222,77,-0.11602531624198274],[124,222,78,-0.11641490888590195],[124,222,79,-0.11717960688353882],[124,223,64,-0.05324457937590787],[124,223,65,-0.07008642067715982],[124,223,66,-0.040196174316877026],[124,223,67,-0.017056286386721926],[124,223,68,-0.023467754878888608],[124,223,69,-0.033786599669564626],[124,223,70,-0.03536072895738414],[124,223,71,-0.053293623924461644],[124,223,72,-0.09597031068053215],[124,223,73,-0.1351228018426258],[124,223,74,-0.12955028756611905],[124,223,75,-0.10447878088552989],[124,223,76,-0.10789764528017737],[124,223,77,-0.11377369562725206],[124,223,78,-0.11393735704461636],[124,223,79,-0.11486715295636032],[124,224,64,-0.05222262236439437],[124,224,65,-0.06882997203092027],[124,224,66,-0.0395468691092778],[124,224,67,-0.016777367799867143],[124,224,68,-0.023032468391261034],[124,224,69,-0.03305475217466474],[124,224,70,-0.03438059768055449],[124,224,71,-0.051748163075464926],[124,224,72,-0.09389954094580984],[124,224,73,-0.13263709681312025],[124,224,74,-0.12711648845735263],[124,224,75,-0.1024823659738253],[124,224,76,-0.10592607230530163],[124,224,77,-0.11154669194988309],[124,224,78,-0.11149366950335986],[124,224,79,-0.11258443076904374],[124,225,64,-0.051217827061191885],[124,225,65,-0.06759019949564771],[124,225,66,-0.03890746364926203],[124,225,67,-0.016503190884273974],[124,225,68,-0.022598065379756345],[124,225,69,-0.03232700607511366],[124,225,70,-0.033413330053522663],[124,225,71,-0.05022715443689317],[124,225,72,-0.09185395643857226],[124,225,73,-0.13017466188048413],[124,225,74,-0.12470741148869076],[124,225,75,-0.10050837334972967],[124,225,76,-0.10397495061158463],[124,225,77,-0.10934487331100484],[124,225,78,-0.10908430566869852],[124,225,79,-0.11033181122911877],[124,226,64,-0.050230261767722516],[124,226,65,-0.06636729200014031],[124,226,66,-0.03827797506550609],[124,226,67,-0.016233691068888667],[124,226,68,-0.02216474866051549],[124,226,69,-0.03160378683668551],[124,226,70,-0.03245931773909287],[124,226,71,-0.048730992377570746],[124,226,72,-0.08983414237287711],[124,226,73,-0.12773625582261325],[124,226,74,-0.12232370299422685],[124,226,75,-0.09855724340758062],[124,226,76,-0.10204475749088647],[124,226,77,-0.10716880171024457],[124,226,78,-0.10670971220355635],[124,226,79,-0.10810966248809023],[124,227,64,-0.049259988248163175],[124,227,65,-0.06516143591842008],[124,227,66,-0.03765842028596374],[124,227,67,-0.01596880711164097],[124,227,68,-0.021732727479689556],[124,227,69,-0.030885516890635033],[124,227,70,-0.031518938562229384],[124,227,71,-0.04726005219279236],[124,227,72,-0.08784067380002229],[124,227,73,-0.12532263926916068],[124,227,74,-0.1199660117447787],[124,227,75,-0.09662941633437229],[124,227,76,-0.10013596801768777],[124,227,77,-0.10501903041791757],[124,227,78,-0.10437032032958703],[124,227,79,-0.10591834729343666],[124,228,64,-0.04830706103495442],[124,228,65,-0.06397281378106012],[124,228,66,-0.03704881561300471],[124,228,67,-0.015708480881535893],[124,228,68,-0.021302216233118013],[124,228,69,-0.03017261398972428],[124,228,70,-0.03059255498959293],[124,228,71,-0.04581468790830572],[124,228,72,-0.08587411242685371],[124,228,73,-0.12293457064511372],[124,228,74,-0.11763498511381883],[124,228,75,-0.09472532939097035],[124,228,76,-0.09824905284642026],[124,228,77,-0.10289610150612202],[124,228,78,-0.10206654334642315],[124,228,79,-0.10375822052573878],[124,229,64,-0.04737152682350644],[124,229,65,-0.06280160308914176],[124,229,66,-0.036449176342585994],[124,229,67,-0.015452657155247932],[124,229,68,-0.02087343322798728],[124,229,69,-0.029465489647939488],[124,229,70,-0.02968051274040349],[124,229,71,-0.044395230297846006],[124,229,72,-0.08393500366836365],[124,229,73,-0.12057280234440697],[124,229,74,-0.11533126546630898],[124,229,75,-0.0928454143615974],[124,229,76,-0.09638447613180384],[124,229,77,-0.10080054353962296],[124,229,78,-0.09979877436549248],[124,229,79,-0.10162962691875803],[124,230,64,-0.046453423953053324],[124,230,65,-0.06164797522897228],[124,230,66,-0.035859516425637776],[124,230,67,-0.015201283427173268],[124,230,68,-0.020446599488536523],[124,230,69,-0.02876454766660858],[124,230,70,-0.028783139528773347],[124,230,71,-0.04300198511180222],[124,230,72,-0.08202387393358555],[124,230,73,-0.11823807713484001],[124,230,74,-0.11305548677080134],[124,230,75,-0.09099009517099844],[124,230,76,-0.09454269357289599],[124,230,77,-0.09873286942700368],[124,230,78,-0.0975673842556165],[124,230,79,-0.09953289896000735],[124,231,64,-0.045552781970435774],[124,231,65,-0.06051209448548164],[124,231,66,-0.035279848169791336],[124,231,67,-0.01495430973192456],[124,231,68,-0.020021937607734762],[124,231,69,-0.028070182749249658],[124,231,70,-0.027900743937158086],[124,231,71,-0.04163523151396677],[124,231,72,-0.08014122814313943],[124,231,73,-0.11593112479497626],[124,231,74,-0.11080827143462947],[124,231,75,-0.08915978566831234],[124,231,76,-0.09272415058121308],[124,231,77,-0.09669357443207273],[124,231,78,-0.0953727197970397],[124,231,79,-0.09746835496896748],[124,232,64,-0.0446696212734795],[124,232,65,-0.05939411715205685],[124,232,66,-0.034710181979572395],[124,232,67,-0.014711688478321985],[124,232,68,-0.019599670646727404],[124,232,69,-0.027382779207099455],[124,232,70,-0.027033614420076908],[124,232,71,-0.04029522072269909],[124,232,72,-0.0782875474761586],[124,232,73,-0.11365265898311804],[124,232,74,-0.10859022736152966],[124,232,75,-0.08735488757634965],[124,232,76,-0.09092928057299904],[124,232,77,-0.0946831343450753],[124,232,78,-0.09321510204004993],[124,232,79,-0.0954362973498072],[124,233,64,-0.04380395283056928],[124,233,65,-0.05829419073444524],[124,233,66,-0.03415052613321708],[124,233,67,-0.014473374294033154],[124,233,68,-0.019180021083738053],[124,233,69,-0.02670270975692956],[124,233,70,-0.026182018436827936],[124,233,71,-0.038982174852288345],[124,233,72,-0.07646328734373782],[124,233,73,-0.11140337433789468],[124,233,74,-0.10640194523054686],[124,233,75,-0.08557578860465893],[124,233,76,-0.08915850338545729],[124,233,77,-0.0927020038128526],[124,233,78,-0.09109482486389922],[124,233,79,-0.09343701101517089],[124,234,64,-0.04295577797288998],[124,234,65,-0.05721245324616754],[124,234,66,-0.03360088659423392],[124,234,67,-0.014239323880041453],[124,234,68,-0.018763209813913873],[124,234,69,-0.026030334412333125],[124,234,70,-0.02534620171142501],[124,234,71,-0.03769628594968973],[124,234,72,-0.07466887558539229],[124,234,73,-0.10918394380934984],[124,234,74,-0.10424399599450943],[124,234,75,-0.08382286072437542],[124,234,76,-0.08741222381641862],[124,234,77,-0.09075061482661329],[124,234,78,-0.08901215373123059],[124,234,79,-0.09147076197725519],[124,235,64,-0.04212508825574105],[124,235,65,-0.0561490325927426],[124,235,66,-0.033061266855853075],[124,235,67,-0.014009495874186637],[124,235,68,-0.0183494552014248],[124,235,69,-0.025365999469263344],[124,235,70,-0.02452638761752311],[124,235,71,-0.03643771522124758],[124,235,72,-0.07290471088440376],[124,235,73,-0.10699501621880704],[124,235,74,-0.10211692859583942],[124,235,75,-0.08209645860250699],[124,235,76,-0.08569083028663747],[124,235,77,-0.0888293753655685],[124,235,78,-0.08696732463278649],[124,235,79,-0.08953779610211812],[124,236,64,-0.04131186538529923],[124,236,65,-0.05510404604192043],[124,236,66,-0.03253166781654885],[124,236,67,-0.013783850723112485],[124,236,68,-0.01793897218497326],[124,236,69,-0.024710036586254366],[124,236,70,-0.02372277668571835],[124,236,71,-0.035206592443545966],[124,236,72,-0.07117116139738823],[124,236,73,-0.1048372140452127],[124,236,74,-0.1000212678969568],[124,236,75,-0.0803969181929906],[124,236,76,-0.08399469362364079],[124,236,77,-0.08693866819428801],[124,236,78,-0.08496054321678492],[124,236,79,-0.08763833802289779],[124,237,64,-0.040516081207132404],[124,237,65,-0.054077599776962484],[124,237,66,-0.03201208768481548],[124,237,67,-0.01356235056198081],[124,237,68,-0.01753197143763565],[124,237,69,-0.02406276195931531],[124,237,70,-0.022935546230140005],[124,237,71,-0.03400301555198002],[124,237,72,-0.0694685635928031],[124,237,73,-0.10271113143501308],[124,237,74,-0.09795751282198317],[124,237,75,-0.0787245554814899],[124,237,76,-0.08232416596573888],[124,237,77,-0.08507884981120548],[124,237,78,-0.08299198409693483],[124,237,79,-0.08577259020733852],[124,238,64,-0.03973769775273802],[124,238,65,-0.053069788529895474],[124,238,66,-0.03150252191140168],[124,238,67,-0.013344959101368592],[124,238,68,-0.017128658581754903],[124,238,69,-0.023424475591109762],[124,238,70,-0.022164850090876865],[124,238,71,-0.03282705040019786],[124,238,72,-0.0677972212925862],[124,238,73,-0.1006173324320364],[124,238,74,-0.09592613470593654],[124,238,75,-0.07707966538057077],[124,238,76,-0.08067957978452489],[124,238,77,-0.08325024954531032],[124,238,78,-0.08106179033270308],[124,238,79,-0.08394073217476418],[124,239,64,-0.038976667340401075],[124,239,65,-0.05208069529159586],[124,239,66,-0.031002963147276862],[124,239,67,-0.013131641520847875],[124,239,68,-0.01672923345942244],[124,239,69,-0.02279546065368128],[124,239,70,-0.021410818488439672],[124,239,71,-0.031678730683171716],[124,239,72,-0.06615740491063618],[124,239,73,-0.09855634942329723],[124,239,74,-0.09392757584713816],[124,239,75,-0.07546252077160882],[124,239,76,-0.0790612470239464],[124,239,77,-0.08145316879772342],[124,239,78,-0.07917007307515009],[124,239,79,-0.08214291985744435],[124,240,64,-0.038232932726634285],[124,240,65,-0.05111039109543875],[124,240,66,-0.030513401225609815],[124,240,67,-0.012922364368770171],[124,240,68,-0.016333889458841365],[124,240,69,-0.022175982943580662],[124,240,70,-0.02067355798608436],[124,240,71,-0.03055805801623528],[124,240,72,-0.06454935088133419],[124,240,73,-0.09652868179606132],[124,240,74,-0.09196224825804528],[124,240,75,-0.07387337168945536],[124,240,76,-0.07746945835374436],[124,240,77,-0.07968788042447626],[124,240,78,-0.07731691137133516],[124,240,79,-0.08037928510106826],[124,241,64,-0.037506427304484016],[124,241,65,-0.05015893487117084],[124,241,66,-0.03003382316607494],[124,241,67,-0.012717095467819302],[124,241,68,-0.01594281289665039],[124,241,69,-0.021566290427900578],[124,241,70,-0.01995315155552004],[124,241,71,-0.029465002162110055],[124,241,72,-0.06297326127088347],[124,241,73,-0.09453479480097364],[124,241,74,-0.0900305326092595],[124,241,75,-0.07231244464559074],[124,241,76,-0.07590448253478137],[124,241,77,-0.07795462825646376],[124,241,78,-0.07550235212001973],[124,241,79,-0.07864993529883706],[124,242,64,-0.03679707534504165],[124,242,65,-0.049226373365631654],[124,242,66,-0.02956421319989222],[124,242,67,-0.012515803825981902],[124,242,68,-0.015556182456100714],[124,242,69,-0.02096661287940694],[124,242,70,-0.019249658741264174],[124,242,71,-0.0283995013976535],[124,242,72,-0.061429303563855966],[124,242,73,-0.09257511861557677],[124,242,74,-0.08813277736105951],[124,242,75,-0.07077994208527144],[124,242,76,-0.0743665658935917],[124,242,77,-0.07625362675228262],[124,242,78,-0.07372641017121993],[124,242,79,-0.07695495315356743],[124,243,64,-0.036104792278518],[124,243,65,-0.048312741126867544],[124,243,66,-0.02910455281401243],[124,243,67,-0.012318459552588177],[124,243,68,-0.015174168680739427],[124,243,69,-0.020377161598605184],[124,243,70,-0.018563115918632845],[124,243,71,-0.027361463011809247],[124,243,72,-0.05991761061697054],[124,243,73,-0.09065004760205302],[124,243,74,-0.08626929807637339],[124,243,75,-0.06927604197389026],[124,243,76,-0.07285593190320132],[124,243,77,-0.0745850607793262],[124,243,78,-0.07198906856192577],[124,243,79,-0.07529439656201302],[124,244,64,-0.03542948501129205],[124,244,65,-0.04741806054814415],[124,244,66,-0.02865482081292034],[124,244,67,-0.012125033779121481],[124,244,68,-0.014796933523045284],[124,244,69,-0.019798129220276968],[124,244,70,-0.01789353664013891],[124,244,71,-0.02635076392603202],[124,244,72,-0.05843828077180449],[124,244,73,-0.08875993975258023],[124,244,74,-0.08444037690872594],[124,244,75,-0.06780089750754371],[124,244,76,-0.07137278086705649],[124,244,77,-0.07294908551825204],[124,244,78,-0.07029027888016019],[124,244,79,-0.07366829861549161],[124,245,64,-0.034771052275445954],[124,245,65,-0.04654234196837027],[124,245,66,-0.02821499339661179],[124,245,67,-0.011935498584560753],[124,245,68,-0.014424629947290017],[124,245,69,-0.01922968960176348],[124,245,70,-0.01724091206490529],[124,245,71,-0.025367251428331326],[124,245,72,-0.056991378117906395],[124,245,73,-0.08690511631532066],[124,245,74,-0.0826462622583888],[124,245,75,-0.0663546369426327],[124,245,76,-0.0699172897027224],[124,245,77,-0.07134582648572281],[124,245,78,-0.06862996174945794],[124,245,79,-0.07207666771084409],[124,246,64,-0.03412938500733741],[124,246,65,-0.04568558382539392],[124,246,66,-0.027785044253319353],[124,246,67,-0.011749826925014866],[124,246,68,-0.014057401585669205],[124,246,69,-0.018671997789982055],[124,246,70,-0.016605211465527934],[124,246,71,-0.024410744011950317],[124,246,72,-0.05557693289752285],[124,246,73,-0.08508586159366527],[124,246,74,-0.08088716858961043],[124,246,75,-0.06493736353909324],[124,246,76,-0.06848961182178011],[124,246,77,-0.06977537967006711],[124,246,78,-0.06700800742572607],[124,246,79,-0.07051948776562308],[124,247,64,-0.033504366751881565],[124,247,65,-0.04484777285866385],[124,247,66,-0.027364944665651106],[124,247,67,-0.011567992567470833],[124,247,68,-0.013695382446588694],[124,247,69,-0.01812519006394549],[124,247,70,-0.01598638280671807],[124,247,71,-0.023481032309653087],[124,247,72,-0.05419494204300366],[124,247,73,-0.08330242291105633],[124,247,74,-0.07916327640156083],[124,247,75,-0.06354915561173534],[124,247,76,-0.06708987710220553],[124,247,77,-0.06823781177434335],[124,247,78,-0.06542427649842598],[124,247,79,-0.06899671853140031],[124,248,64,-0.032895874089283635],[124,248,65,-0.04402888435773221],[124,248,66,-0.026954663628837867],[124,248,67,-0.011389970027476052],[124,248,68,-0.013338696673790323],[124,248,69,-0.017589384049317577],[124,248,70,-0.015384353389951973],[124,248,71,-0.022577880114561636],[124,248,72,-0.05284536983779419],[124,248,73,-0.08155501073340365],[124,248,74,-0.07747473234536006],[124,248,75,-0.06219006668399801],[124,248,76,-0.0657181919493202],[124,248,77,-0.06673316056109535],[124,248,78,-0.0638786006879744],[124,248,79,-0.06750829599900814],[124,249,64,-0.03230377708110552],[124,249,65,-0.04322888245313324],[124,249,66,-0.026554167979879],[124,249,67,-0.011215734510634916],[124,249,68,-0.012987458354870581],[124,249,69,-0.017064678901384595],[124,249,70,-0.014799030558335983],[124,249,71,-0.021701025478552054],[124,249,72,-0.05152814869187881],[124,249,73,-0.07984379894090317],[124,249,74,-0.07582164947939192],[124,249,75,-0.06086012573835708],[124,249,76,-0.0643746394412948],[124,249,77,-0.0652614352929823],[124,249,78,-0.062370783731311455],[124,249,79,-0.06605413288956165],[124,250,64,-0.031727939732635366],[124,250,65,-0.04244772044618096],[124,250,66,-0.026163422536412136],[124,250,67,-0.011045261857794409],[124,250,68,-0.012641771377562854],[124,250,69,-0.016551155552625596],[124,250,70,-0.014230302455839896],[124,250,71,-0.02085018187925674],[124,250,72,-0.050243180022464924],[124,250,73,-0.07816892524083474],[124,250,74,-0.07420410765491478],[124,250,75,-0.059559337557507315],[124,250,76,-0.06305927955502462],[124,250,77,-0.06382261726332052],[124,250,78,-0.06090060234760447],[124,250,79,-0.0646341192250889],[124,251,64,-0.031168220468652065],[124,251,65,-0.04168534117427482],[124,251,66,-0.02578239024419096],[124,251,67,-0.010878528493813329],[124,251,68,-0.012301729332018103],[124,251,69,-0.016048877020938986],[124,251,70,-0.01367803883507811],[124,251,71,-0.02002503944685563],[124,251,72,-0.04899033523071616],[124,251,73,-0.07653049171276452],[124,251,74,-0.07262215402385477],[124,251,75,-0.05828768315037895],[124,251,76,-0.06177214946808736],[124,251,77,-0.06241666041049091],[124,251,78,-0.05946780727613776],[124,251,79,-0.06324812297262612],[124,252,64,-0.030624472619824792],[124,252,65,-0.04094167740838307],[124,252,66,-0.0254110323321428],[124,252,67,-0.010715511379850572],[124,252,68,-0.011967415457212012],[124,252,69,-0.015557888774484876],[124,252,70,-0.01314209190786873],[124,252,71,-0.019225266242003283],[124,252,72,-0.04776945676540395],[124,252,73,-0.07492856547747974],[124,252,74,-0.07107580366059969],[124,252,75,-0.05704512025703537],[124,252,76,-0.0605132639324159],[124,252,77,-0.06104349201011877],[124,252,78,-0.058072124378567444],[124,252,79,-0.061895990755711484],[124,253,64,-0.030096544917095132],[124,253,65,-0.040216652279412825],[124,253,66,-0.025049308474010344],[124,253,67,-0.010556187969097354],[124,253,68,-0.01163890262947114],[124,253,69,-0.015078219148999771],[124,253,70,-0.012622297232856475],[124,253,71,-0.018450509576420544],[124,253,72,-0.046580359264417726],[124,253,73,-0.07336317948088739],[124,253,74,-0.06956504028953735],[124,253,75,-0.05583158392645866],[124,253,76,-0.059282615715215446],[124,253,77,-0.059703013438875616],[124,253,78,-0.05671325579783311],[124,253,79,-0.06057754862725461],[124,254,64,-0.029584281991521702],[124,254,65,-0.03951017973024987],[124,254,66,-0.024697176955641335],[124,254,67,-0.010400536165888518],[124,254,68,-0.011316253391009636],[124,254,69,-0.014609879813378362],[124,254,70,-0.012118474634580682],[124,254,71,-0.017700397367906875],[124,254,72,-0.045422830765202094],[124,254,73,-0.07183433338407082],[124,254,74,-0.06808981711006097],[124,254,75,-0.054646987161237504],[124,254,76,-0.0580801761025903],[124,254,77,-0.058395101003731256],[124,254,78,-0.05539088116617465],[124,254,79,-0.05929260289784159],[124,255,64,-0.029087524877229314],[124,255,65,-0.03882216499035747],[124,255,66,-0.024354594847070993],[124,255,67,-0.010248534288162482],[124,255,68,-0.010999520016306824],[124,255,69,-0.014152866279301237],[124,255,70,-0.011630429148510738],[124,255,71,-0.01697453952180784],[124,255,72,-0.04429663397537113],[124,255,73,-0.07034199455072415],[124,255,74,-0.06665005771080584],[124,255,75,-0.053491221623224984],[124,255,76,-0.056905895461317545],[124,255,77,-0.057119606830519185],[124,255,78,-0.05410465885491179],[124,255,79,-0.05804094101366736],[124,256,64,-0.02860611151521277],[124,256,65,-0.0381525050698821],[124,256,66,-0.024021518178569082],[124,256,67,-0.010100161033216943],[124,256,68,-0.01068874461405944],[124,256,69,-0.013707158450657897],[124,256,70,-0.011157951986704452],[124,256,71,-0.016272529331251718],[124,256,72,-0.0432015075949315],[124,256,73,-0.06888609912320338],[124,256,74,-0.0652456570649049],[124,256,75,-0.052364158394257336],[124,256,76,-0.05575970385415093],[124,256,77,-0.05587635980568263],[124,256,78,-0.052854227258821496],[124,256,79,-0.05682233247837242],[124,257,64,-0.028139877255890653],[124,257,65,-0.03750108927031606],[124,257,66,-0.023697902119882534],[124,257,67,-0.009955395446717981],[124,257,68,-0.0103839592623885],[124,257,69,-0.013272721208521103],[124,257,70,-0.010700821518904648],[124,257,71,-0.015593944888775956],[124,257,72,-0.04213716768177177],[124,257,73,-0.06746655317850657],[124,257,74,-0.0638764825981356],[124,257,75,-0.05126564878610121],[124,257,76,-0.05464151170402245],[124,257,77,-0.05466516656512244],[124,257,78,-0.05163920610817695],[124,257,79,-0.05563652981320306],[124,258,64,-0.027688655358459043],[124,258,65,-0.03686779970888162],[124,258,66,-0.023383701161971915],[124,258,67,-0.009814216894939104],[124,258,68,-0.010085186174957723],[124,258,69,-0.012849505027485874],[124,258,70,-0.010258804264104984],[124,258,71,-0.014938350502333058],[124,258,72,-0.041103309052357075],[124,258,73,-0.06608323395563027],[124,258,74,-0.06254237532196073],[124,258,75,-0.05019552519390067],[124,258,76,-0.053551210502526564],[124,258,77,-0.053485812524160674],[124,258,78,-0.050459197801768385],[124,258,79,-0.05448326955007104],[124,259,64,-0.027252277485207754],[124,259,65,-0.0362525118538837],[124,259,66,-0.023078869300565078],[124,259,67,-0.009676605040184824],[124,259,68,-0.009792437895609626],[124,259,69,-0.012437446619218993],[124,259,70,-0.00983165588780147],[124,259,71,-0.014305298109005746],[124,259,72,-0.040099606709833896],[124,259,73,-0.0647359911458673],[124,259,74,-0.061243151023580834],[124,259,75,-0.049153601987482115],[124,259,76,-0.05248867355806188],[124,259,77,-0.05233806294269972],[124,259,78,-0.04931378875446266],[124,259,79,-0.05336227325222525],[124,260,64,-0.02683057418910232],[124,260,65,-0.03565509506838884],[124,260,66,-0.022783360220902],[124,260,67,-0.009542539819356394],[124,260,68,-0.009505717519113617],[124,260,69,-0.012036469599137409],[124,260,70,-0.009419122200363296],[124,260,71,-0.013694328680134638],[124,260,72,-0.03912571729205408],[124,260,73,-0.06342464823778429],[124,260,74,-0.059978601505289754],[124,260,75,-0.048139676435001146],[124,260,76,-0.051453756779038635],[124,260,77,-0.051221664019772836],[124,260,78,-0.04820255075313062],[124,260,79,-0.052273248557418876],[124,261,64,-0.026423375393078347],[124,261,65,-0.03507541315971321],[124,261,66,-0.022497127483099483],[124,261,67,-0.009412001425626587],[124,261,68,-0.009225018935634727],[124,261,69,-0.011646485172248958],[124,261,70,-0.009020940152221466],[124,261,71,-0.013104973611982998],[124,261,72,-0.0381812805323821],[124,261,73,-0.06214900390883708],[124,261,74,-0.058748495865623404],[124,261,75,-0.04715352965356648],[124,261,76,-0.050446299487612645],[124,261,77,-0.05013634401181844],[124,261,78,-0.04712504231506235],[124,261,79,-0.051215890238641225],[124,262,64,-0.02603051085960604],[124,262,65,-0.03451332493229551],[124,262,66,-0.022220124707586768],[124,262,67,-0.009284970293170639],[124,262,68,-0.008950327096524621],[124,262,69,-0.011267392834272779],[124,262,70,-0.00863683882179073],[124,262,71,-0.012536756096437176],[124,262,72,-0.03726592072646894],[124,262,73,-0.060908833455783164],[124,262,74,-0.05755258181499159],[124,262,75,-0.04619492758161101],[124,262,76,-0.04946612525944166],[124,262,77,-0.04908181436913612],[124,262,78,-0.04608081004326584],[124,262,79,-0.05018988127765093],[124,263,64,-0.025651810649205787],[124,263,65,-0.03396868474164417],[124,263,66,-0.02195230576009914],[124,263,67,-0.009161427084893176],[124,263,68,-0.008681618299060766],[124,263,69,-0.010899081084286446],[124,263,70,-0.0082665403923056],[124,263,71,-0.011989192466661604],[124,263,72,-0.03637924819854312],[124,263,73,-0.05970389025630309],[124,263,74,-0.05639058701871236],[124,263,75,-0.04526362196794379],[124,263,76,-0.04851304278502952],[124,263,77,-0.04805777088513426],[124,263,78,-0.04506938997333467],[124,263,79,-0.04919489394673545],[124,264,64,-0.02528710556672802],[124,264,65,-0.03344134304717583],[124,264,66,-0.021693624935763156],[124,264,67,-0.009041352683099605],[124,264,68,-0.008418860487810403],[124,264,69,-0.0105414281452999],[124,264,70,-0.00790976111402979],[124,264,71,-0.011461793513059013],[124,264,72,-0.03552086076115862],[124,264,73,-0.05853390725452371],[124,264,74,-0.05526222046063373],[124,264,75,-0.04435935137260361],[124,264,76,-0.047586846748307085],[124,264,77,-0.04706389485316022],[124,264,78,-0.04409030890688517],[124,264,79,-0.04823059089432704],[124,265,64,-0.024936227594308902],[124,265,65,-0.03293114696185871],[124,265,66,-0.02144403714182177],[124,265,67,-0.008924728183037812],[124,265,68,-0.008162013570325253],[124,265,69,-0.010194302689286049],[124,265,70,-0.007566212248544397],[124,265,71,-0.010954065765282404],[124,265,72,-0.03469034516269732],[124,265,73,-0.057398598463402756],[124,265,74,-0.054167173820776515],[124,265,75,-0.04348184217480419],[124,265,76,-0.046687318718176204],[124,265,77,-0.04609985422586266],[124,265,78,-0.043143085726848246],[124,265,79,-0.0472966262302895],[124,266,64,-0.024599010310014838],[124,266,65,-0.032437940796682004],[124,266,66,-0.021203498078568056],[124,266,67,-0.00881153488922249],[124,266,68,-0.007911029744927314],[124,266,69,-0.00985756456336285],[124,266,70,-0.007235600992099813],[124,266,71,-0.010465512736472716],[124,266,72,-0.033887278517319944],[124,266,73,-0.056297660477237915],[124,266,74,-0.053105122860708585],[124,266,75,-0.04263080958344802],[124,266,76,-0.04581422804882949],[124,266,77,-0.04516530477222019],[124,266,78,-0.042227232690199255],[124,266,79,-0.04639264660688174],[124,267,64,-0.024275289291307133],[124,267,65,-0.031961566598099574],[124,267,66,-0.02097196441809819],[124,267,67,-0.00870175431446631],[124,267,68,-0.007665853838429655],[124,267,69,-0.00953106551400257],[124,267,70,-0.006917631375295652],[124,267,71,-0.009995636126316392],[124,267,72,-0.033111229712455684],[124,267,73,-0.055230773987886214],[124,267,74,-0.052075728810665224],[124,267,75,-0.04180595864589944],[124,267,76,-0.04496733278478162],[124,267,77,-0.0442598912275745],[124,267,78,-0.04134225669402171],[124,267,79,-0.045518292291622964],[124,268,64,-0.023964902502532245],[124,268,65,-0.03150186467668369],[124,268,66,-0.02074939398049292],[124,268,67,-0.008595368181511544],[124,268,68,-0.007426423651690605],[124,268,69,-0.009214649906303623],[124,268,70,-0.0066120051366104216],[124,268,71,-0.009543936979913317],[124,268,72,-0.03236176078930032],[124,268,73,-0.054197605298588074],[124,268,74,-0.05107863975271044],[124,268,75,-0.04100698525089065],[124,268,76,-0.04414638056663777],[124,268,77,-0.04338324843218729],[124,268,78,-0.04048766051108006],[124,268,79,-0.04467319822846221],[124,269,64,-0.02366769066572562],[124,269,65,-0.031058674125324853],[124,269,66,-0.020535745907050748],[124,269,67,-0.008492358427147753],[124,269,68,-0.007192670310983559],[124,269,69,-0.008908155435544329],[124,269,70,-0.006318422567571573],[124,269,71,-0.009109916799846723],[124,269,72,-0.03163842829217994],[124,269,73,-0.0531978078296206],[124,269,74,-0.05011349199453945],[124,269,75,-0.04023357712164013],[124,269,76,-0.04335110953374094],[124,269,77,-0.04253500245403887],[124,269,78,-0.039662943991362616],[124,269,79,-0.043856995083851304],[124,270,64,-0.023383497614112774],[124,270,65,-0.030631833325430784],[124,270,66,-0.020330980830225363],[124,270,67,-0.008392707208708203],[124,270,68,-0.0069645186232678465],[124,270,69,-0.008611413828432843],[124,270,70,-0.006036583327625831],[124,270,71,-0.008693078609241445],[124,270,72,-0.030940784583030366],[124,270,73,-0.052231023610346865],[124,270,74,-0.0491799114288391],[124,270,75,-0.03948541479548037],[124,270,76,-0.04258124921997277],[124,270,77,-0.041714771691800864],[124,270,78,-0.03886760522635009],[124,270,79,-0.043069310274528705],[124,271,64,-0.023112170627735275],[124,271,65,-0.03022118043964689],[124,271,66,-0.020135061039902962],[124,271,67,-0.00829639691280366],[124,271,68,-0.006741887433519531],[124,271,69,-0.008324251531639248],[124,271,70,-0.005766187227013988],[124,271,71,-0.008292927963962773],[124,271,72,-0.03026837911760607],[124,271,73,-0.051296884752553694],[124,271,74,-0.04827751487341933],[124,271,75,-0.038762172586482437],[124,271,76,-0.041836521439087636],[124,271,77,-0.04092216795410004],[124,271,78,-0.03810114167301784],[124,271,79,-0.042309768973987395],[124,272,64,-0.02285356075070637],[124,272,65,-0.029826553889724963],[124,272,66,-0.01994795064567646],[124,272,67,-0.008203410166160994],[124,272,68,-0.006524689982393923],[124,272,69,-0.008046490385392032],[124,272,70,-0.005506934976205708],[124,272,71,-0.007908973912471083],[124,272,72,-0.029620759680403317],[124,272,73,-0.05039501490030956],[124,272,74,-0.04740591138764346],[124,272,75,-0.038063519527778006],[124,272,76,-0.041116641156098366],[124,272,77,-0.04015679751140175],[124,272,78,-0.03736305123485288],[124,272,79,-0.04157799509480019],[124,273,64,-0.02260752308963599],[124,273,65,-0.029447792818234148],[124,273,66,-0.019769615734758234],[124,273,67,-0.008113729848411353],[124,273,68,-0.0063128342625894205],[124,273,69,-0.007777948280098483],[124,273,70,-0.005258528900676819],[124,273,71,-0.007540729902185787],[124,273,72,-0.028997473575633776],[124,273,73,-0.04952503065190298],[124,273,74,-0.04656470356098609],[124,273,75,-0.03738912029047342],[124,273,76,-0.040421317341342036],[124,273,77,-0.03941826211702263],[124,273,78,-0.03665283329739625],[124,273,79,-0.040873612244133294],[124,274,64,-0.022373917092824266],[124,274,65,-0.029084737532898752],[124,274,66,-0.019600024525185673],[124,274,67,-0.008027339106674662],[124,274,68,-0.0061062233723896235],[124,274,69,-0.007518439794140939],[124,274,70,-0.005020673620050361],[124,274,71,-0.007187714631544225],[124,274,72,-0.028398068771930726],[124,274,73,-0.048686542949759756],[124,274,74,-0.04575348876985533],[124,274,75,-0.03673863607626133],[124,274,76,-0.03975025380400195],[124,274,77,-0.03870615999399553],[124,274,78,-0.035969989716076456],[124,274,79,-0.0401962446499658],[124,275,64,-0.02215260680984254],[124,275,65,-0.028737229932404927],[124,275,66,-0.019439147513955857],[124,275,67,-0.007944221371774071],[124,275,68,-0.0059047558649736095],[124,275,69,-0.007267776811170501],[124,275,70,-0.0047930766908162534],[124,275,71,-0.006849452847233457],[124,275,72,-0.02782209499878868],[124,275,73,-0.04787915843454721],[124,275,74,-0.04497186039910588],[124,275,75,-0.036111725481015274],[124,275,76,-0.0391031500019678],[124,275,77,-0.038020086784674535],[124,275,78,-0.03531402575429691],[124,275,79,-0.039545518055677374],[124,276,64,-0.021943461131142143],[124,276,65,-0.028405113912576108],[124,276,66,-0.01928695761971071],[124,276,67,-0.007864360375898069],[124,276,68,-0.00570832609218321],[124,276,69,-0.00702576911539084],[124,276,70,-0.004575449212046389],[124,276,71,-0.006525476086358253],[124,276,72,-0.027269104793046436],[124,276,73,-0.04710248075998822],[124,276,74,-0.04421940902495445],[124,276,75,-0.035508045326843],[124,276,76,-0.03847970182504324],[124,276,77,-0.03735963646015297],[124,276,78,-0.03468445096994596],[124,276,79,-0.03892106058081553],[124,277,64,-0.02174635400736165],[124,277,65,-0.028088235751887212],[124,277,66,-0.019143430319598396],[124,277,67,-0.007787740171540088],[124,277,68,-0.005516824541566016],[124,277,69,-0.006792224963502681],[124,277,70,-0.004367506393709414],[124,277,71,-0.006215323363573907],[124,277,72,-0.026738654494020436],[124,277,73,-0.04635611186521941],[124,277,74,-0.04349572355629742],[124,277,75,-0.03492725146026298],[124,277,76,-0.03787960234863883],[124,277,77,-0.0367244021867426],[124,277,78,-0.034080780048691285],[124,277,79,-0.038322503546004506],[124,278,64,-0.021561164647994575],[124,278,65,-0.027786444475317505],[124,278,66,-0.019008543779903277],[124,278,67,-0.007714345151524187],[124,278,68,-0.005330138165610249],[124,278,69,-0.006566951632124411],[124,278,70,-0.004168968087343963],[124,278,71,-0.005918541803439736],[124,278,72,-0.026230305186158605],[124,278,73,-0.04563965320180738],[124,278,74,-0.042800392331688406],[124,278,75,-0.034368999514331554],[124,278,76,-0.03730254255519409],[124,278,77,-0.03611397714691292],[124,278,78,-0.03350253358257295],[124,278,79,-0.03774948226007484],[124,279,64,-0.02138777769907562],[124,279,65,-0.0274995921955815],[124,279,66,-0.018882278980018225],[124,279,67,-0.007644160069920413],[124,279,68,-0.005148150702198674],[124,279,69,-0.006349755939654138],[124,279,70,-0.003979559278997108],[124,279,71,-0.0056346872184616145],[124,279,72,-0.02574362358833441],[124,279,73,-0.0449527069128142],[124,279,74,-0.04213300416948995],[124,279,75,-0.03383294563271105],[124,279,76,-0.03674821202068136],[124,279,77,-0.03552795531223611],[124,279,78,-0.032949238792557685],[124,279,79,-0.0372016367676053],[124,280,64,-0.021226083399545657],[124,280,65,-0.0272275344308191],[124,280,66,-0.018764619829323648],[124,280,67,-0.007577170063665161],[124,280,68,-0.004970742985432157],[124,280,69,-0.006140444741686038],[124,280,70,-0.0037990105444712396],[124,280,71,-0.005363324633484731],[124,280,72,-0.02527818288913605],[124,280,73,-0.04429487696157193],[124,280,74,-0.041493149368960563],[124,280,75,-0.03331874715383285],[124,280,76,-0.03621629956365804],[124,280,77,-0.03496593216602766],[124,280,78,-0.03242043019384953],[124,280,79,-0.036678612555185744],[124,281,64,-0.02107597771591945],[124,281,65,-0.02697013039783392],[124,281,66,-0.018655553276496584],[124,281,67,-0.007513360674682432],[124,281,68,-0.004797793246066803],[124,281,69,-0.005938825399211487],[124,281,70,-0.003627058467027389],[124,281,71,-0.00510402875725532],[124,281,72,-0.0248335635277081],[124,281,73,-0.043665770208066314],[124,281,74,-0.04088042066026367],[124,281,75,-0.032826063253444775],[124,281,76,-0.03570649385442344],[124,281,77,-0.0344275053734862],[124,281,78,-0.03191565020285126],[124,281,79,-0.03618006121478684],[124,282,64,-0.020937362454853496],[124,282,65,-0.026727243279982528],[124,282,66,-0.0185550694107482],[124,282,67,-0.00745271787230582],[124,282,68,-0.004629177400916259],[124,282,69,-0.005744706218946899],[124,282,70,-0.0034634460177768982],[124,282,71,-0.004856384402097519],[124,282,72,-0.0244093539198768],[124,282,73,-0.04306499743105066],[124,282,74,-0.04029441410158961],[124,282,75,-0.032354555543963145],[124,282,76,-0.035218483981922684],[124,282,77,-0.03391227539724175],[124,282,78,-0.03143444968475102],[124,282,79,-0.03570564106269879],[124,283,64,-0.020810145353183547],[124,283,65,-0.02649874046883213],[124,283,66,-0.018463161554466062],[124,283,67,-0.00739522807581026],[124,283,68,-0.004464769330683355],[124,283,69,-0.005557896865245929],[124,283,70,-0.003307922899081542],[124,283,71,-0.004619986852778888],[124,283,72,-0.02400515112946834],[124,283,73,-0.042492174294235095],[124,283,74,-0.03973472992179328],[124,283,75,-0.03190388862918271],[124,283,76,-0.03475195997613212],[124,283,77,-0.03341984605632447],[124,283,78,-0.030976388440784625],[124,283,79,-0.035255017712574305],[124,284,64,-0.0206942401449409],[124,284,65,-0.02628449377868657],[124,284,66,-0.018379826346691372],[124,284,67,-0.007340878176851173],[124,284,68,-0.004304441145770553],[124,284,69,-0.005378208743127482],[124,284,70,-0.0031602458513195738],[124,284,71,-0.004394442185708624],[124,284,72,-0.023620561484849853],[124,284,73,-0.04194692225507546],[124,284,74,-0.03920097330711772],[124,284,75,-0.03147373061299701],[124,284,76,-0.03430661328372293],[124,284,77,-0.03294982502663265],[124,284,78,-0.030541035634252842],[124,284,79,-0.03482786460114609],[124,285,64,-0.020589566604808738],[124,285,65,-0.02608437963307072],[124,285,66,-0.01830506381682917],[124,285,67,-0.007289655561617443],[124,285,68,-0.004148063439717058],[124,285,69,-0.005205455352026461],[124,285,70,-0.0030201789234053397],[124,285,71,-0.0041793675396698884],[124,285,72,-0.02325520114083541],[124,285,73,-0.04142886941485566],[124,285,74,-0.038692755130737506],[124,285,75,-0.031063753560881115],[124,285,76,-0.03388213719486214],[124,285,77,-0.03250182428103834],[124,285,78,-0.030127970154395375],[124,285,79,-0.03442386346522749],[124,286,64,-0.02049605056742111],[124,286,65,-0.025898279222246173],[124,286,66,-0.018238877447955538],[124,286,67,-0.007241548132511878],[124,286,68,-0.003995505530005038],[124,286,69,-0.005039452609941678],[124,286,70,-0.002887493707473986],[124,286,71,-0.0039743913393343894],[124,286,72,-0.022908696586198103],[124,286,73,-0.04093765130891706],[124,286,74,-0.038209692624008626],[124,286,75,-0.03067363391298236],[124,286,76,-0.033478227219069824],[124,286,77,-0.03207546046732172],[124,286,78,-0.02973678091722777],[124,286,79,-0.03404270476862565],[124,287,64,-0.020413623921833043],[124,287,65,-0.025726078630796546],[124,287,66,-0.01818127422904009],[124,287,67,-0.007196544329175229],[124,287,68,-0.0038466356860553806],[124,287,69,-0.004880019147687364],[124,287,70,-0.0027619695381174867],[124,287,71,-0.0037791534727998756],[124,287,72,-0.022580685097081013],[124,287,73,-0.04047291163601061],[124,287,74,-0.03775140998843277],[124,287,75,-0.03030305284773158],[124,287,76,-0.03309458140808609],[124,287,77,-0.031670355222143384],[124,287,78,-0.029367067102416797],[124,287,79,-0.03368408807759811],[124,288,64,-0.020342224580410476],[124,288,65,-0.025567668934275777],[124,288,66,-0.018132264695355445],[124,288,67,-0.007154633148674007],[124,288,68,-0.0037013213443115272],[124,288,69,-0.004726976572984262],[124,288,70,-0.0026433936565329556],[124,288,71,-0.003593305424380278],[124,288,72,-0.022270815136642096],[124,288,73,-0.0400343029258541],[124,288,74,-0.03731753894745049],[124,288,75,-0.029951696594946824],[124,288,76,-0.03273090062373138],[124,288,77,-0.03128613541927074],[124,288,78,-0.029018438325224147],[124,288,79,-0.033347722383467726],[124,289,64,-0.020281796928235438],[124,289,65,-0.025422946628032732],[124,289,66,-0.018091863007622482],[124,289,67,-0.00711580362330145],[124,289,68,-0.003559428045121621],[124,289,69,-0.004580147883840168],[124,289,70,-0.002531559165488195],[124,289,71,-0.0034165080557518202],[124,289,72,-0.021978744658631186],[124,289,73,-0.039621485578172924],[124,289,74,-0.03690771795118843],[124,289,75,-0.029619255441643306],[124,289,76,-0.032386887554375826],[124,289,77,-0.030922432485922916],[124,289,78,-0.02869051449484927],[124,289,79,-0.033033326730599444],[124,290,64,-0.02023229590250514],[124,290,65,-0.02529181664977565],[124,290,66,-0.0180600874001489],[124,290,67,-0.007080040458338698],[124,290,68,-0.0034208093920672367],[124,290,69,-0.004439342976056477],[124,290,70,-0.0024262475960893375],[124,290,71,-0.0032484131316162937],[124,290,72,-0.021704125166937798],[124,290,73,-0.03923411615070806],[124,290,74,-0.03652158267161106],[124,290,75,-0.029305414264085762],[124,290,76,-0.032062237656249395],[124,290,77,-0.030578875871079797],[124,290,78,-0.028382924062138135],[124,290,79,-0.032740633452286845],[124,291,64,-0.020193685007798702],[124,291,65,-0.02517419103112516],[124,291,66,-0.018036960025254525],[124,291,67,-0.0070473262338529765],[124,291,68,-0.0032853123553100295],[124,291,69,-0.004304366252344784],[124,291,70,-0.0023272379246578904],[124,291,71,-0.0030886730671241323],[124,291,72,-0.021446611015691144],[124,291,73,-0.038871855312628587],[124,291,74,-0.036158772869652266],[124,291,75,-0.029009859093738304],[124,291,76,-0.0317566453212488],[124,291,77,-0.0302550975448936],[124,291,78,-0.028095305578423248],[124,291,79,-0.03246938719063383],[124,292,64,-0.020165933866531996],[124,292,65,-0.025069987201979477],[124,292,66,-0.018022506712438345],[124,292,67,-0.007017643927585671],[124,292,68,-0.003152783301717064],[124,292,69,-0.004175025217656433],[124,292,70,-0.0022343167150901118],[124,292,71,-0.0029369516875410464],[124,292,72,-0.021205869256005927],[124,292,73,-0.03853437578869303],[124,292,74,-0.03581893896943025],[124,292,75,-0.028732283354069202],[124,292,76,-0.03146980973302102],[124,292,77,-0.02995073619666449],[124,292,78,-0.027827308881803656],[124,292,79,-0.032219343403629884],[124,293,64,-0.020149018058052023],[124,293,65,-0.024979127924619114],[124,293,66,-0.018016756937352597],[124,293,67,-0.006990976910458914],[124,293,68,-0.0030230681043457957],[124,293,69,-0.004051130526935751],[124,293,70,-0.002147278035121278],[124,293,71,-0.002792924069141578],[124,293,72,-0.020981579689319765],[124,293,73,-0.038221362633421754],[124,293,74,-0.03550174223007421],[124,293,75,-0.02847238783597394],[124,293,76,-0.03120143476002783],[124,293,77,-0.029665437073374278],[124,293,78,-0.027578594904738893],[124,293,79,-0.03199026840908567],[124,294,64,-0.020142918951788286],[124,294,65,-0.02490154120840468],[124,294,66,-0.018019743776642224],[124,294,67,-0.006967308914276981],[124,294,68,-0.002896012178682905],[124,294,69,-0.003932495913423706],[124,294,70,-0.0020659232341394373],[124,294,71,-0.002656276233547769],[124,294,72,-0.020773434778684555],[124,294,73,-0.03793251337696002],[124,294,74,-0.03520685480712913],[124,294,75,-0.028229880572973164],[124,294,76,-0.030951228739397943],[124,294,77,-0.029398851711454635],[124,294,78,-0.02734883540476732],[124,294,79,-0.031781939388941825],[124,295,64,-0.02014762351115448],[124,295,65,-0.024837160187877717],[124,295,66,-0.018031503845416186],[124,295,67,-0.006946623995141542],[124,295,68,-0.002771460501091745],[124,295,69,-0.003818938076436537],[124,295,70,-0.0019900606771449873],[124,295,71,-0.0025267047971529576],[124,295,72,-0.020581139508126373],[124,295,73,-0.037667538111710974],[124,295,74,-0.03493395976074249],[124,295,75,-0.02800447667177292],[124,295,76,-0.030718904203167707],[124,295,77,-0.029150637598526544],[124,295,78,-0.02713771262807752],[124,295,79,-0.03159414433686814],[124,296,64,-0.020163124066753187],[124,296,65,-0.02478592296276432],[124,296,66,-0.018052077216233215],[124,296,67,-0.006928906492386096],[124,296,68,-0.0026492576094808867],[124,296,69,-0.003710276527571081],[124,296,70,-0.0019195054337796777],[124,296,71,-0.002403916575442646],[124,296,72,-0.020404411189582663],[124,296,73,-0.037426159518769216],[124,296,74,-0.034682751009897164],[124,296,75,-0.027795898097118743],[124,296,76,-0.030504177544610336],[124,296,77,-0.02892045776268003],[124,296,78,-0.026944918903903305],[124,296,79,-0.0314266819473301],[124,297,64,-0.02018941805734715],[124,297,65,-0.02474777239830933],[124,297,66,-0.01808150731845125],[124,297,67,-0.006914140982863671],[124,297,68,-0.002529247586217372],[124,297,69,-0.003606333394146245],[124,297,70,-0.00185407892111322],[124,297,71,-0.0022876281417895396],[124,297,72,-0.02024297921677389],[124,297,73,-0.037208112833149246],[124,297,74,-0.03445293323195936],[124,297,75,-0.027603873409888142],[124,297,76,-0.030306768622341874],[124,297,77,-0.02870798028676962],[124,297,78,-0.026770156167545366],[124,297,79,-0.03127936144422319],[124,298,64,-0.0202265078278753],[124,298,65,-0.02472265597381557],[124,298,66,-0.018119840904935413],[124,298,67,-0.006902312317319395],[124,298,68,-0.0024112741089064487],[124,298,69,-0.0035069332628898013],[124,298,70,-0.001793608581786802],[124,298,71,-0.002177565422048131],[124,298,72,-0.020096584846069077],[124,298,73,-0.03701314582652387],[124,298,74,-0.034244221785537356],[124,298,75,-0.027428137535094276],[124,298,76,-0.03012640037661954],[124,298,77,-0.02851287782091405],[124,298,78,-0.026613135484576174],[124,298,79,-0.031152002421173806],[124,299,64,-0.020274417536298422],[124,299,65,-0.024710542466485175],[124,299,66,-0.018167144615724926],[124,299,67,-0.006893422018397707],[124,299,68,-0.0022951966045554094],[124,299,69,-0.0034119188608219327],[124,299,70,-0.001737943164399191],[124,299,71,-0.0020734786703193856],[124,299,72,-0.019964996134696742],[124,299,73,-0.036841033730239094],[124,299,74,-0.03405635737994303],[124,299,75,-0.027268446090567555],[124,299,76,-0.029962812802722248],[124,299,77,-0.028334841260834815],[124,299,78,-0.02647359057488599],[124,299,79,-0.031044448531220827],[124,300,64,-0.020333215678323906],[124,300,65,-0.024711444127011546],[124,300,66,-0.018223526940085506],[124,300,67,-0.0068875099841154185],[124,300,68,-0.0021809115889017843],[124,300,69,-0.0033211717877255444],[124,300,70,-0.0016869729507836796],[124,300,71,-0.0019751622982606253],[124,300,72,-0.019848027631595922],[124,300,73,-0.0366915988127136],[124,300,74,-0.033889125320503616],[124,300,75,-0.027124594215756363],[124,300,76,-0.029815781325659],[124,300,77,-0.02817359773756776],[124,300,78,-0.02635129557954547],[124,300,79,-0.03095658536228837],[124,301,64,-0.02040298540396297],[124,301,65,-0.024725387445640377],[124,301,66,-0.018289109577158128],[124,301,67,-0.006884626374700983],[124,301,68,-0.002068324920391345],[124,301,69,-0.003234584854028374],[124,301,70,-0.0016406022841030875],[124,301,71,-0.0018824276873920635],[124,301,72,-0.01974551369889097],[124,301,73,-0.03656468421131129],[124,301,74,-0.03374232962579009],[124,301,75,-0.026996390865272276],[124,301,76,-0.02968509118151587],[124,301,77,-0.028028885138539027],[124,301,78,-0.026246039878955726],[124,301,79,-0.030888315869256066],[124,302,64,-0.020483819825614695],[124,302,65,-0.02475240854836335],[124,302,66,-0.01836402310382184],[124,302,67,-0.006884827490225919],[124,302,68,-0.0019573477037305343],[124,302,69,-0.0031520577151847476],[124,302,70,-0.0015987450778965125],[124,302,71,-0.0017950986869600834],[124,302,72,-0.019657304220644867],[124,302,73,-0.03646014986222323],[124,302,74,-0.033615788980689384],[124,302,75,-0.02688365468413234],[124,302,76,-0.029570533107869522],[124,302,77,-0.027900447682463893],[124,302,78,-0.026157623739391286],[124,302,79,-0.030839556429308548],[124,303,64,-0.02057582199303008],[124,303,65,-0.024792553183001144],[124,303,66,-0.018448407188191678],[124,303,67,-0.006888176150000784],[124,303,68,-0.0018478966180658376],[124,303,69,-0.0030734968322512317],[124,303,70,-0.0015613245845885217],[124,303,71,-0.0017130113186113814],[124,303,72,-0.019583264454445002],[124,303,73,-0.03637787251028808],[124,303,74,-0.03350933672587551],[124,303,75,-0.026786213874873337],[124,303,76,-0.02947190295351983],[124,303,77,-0.027788035350670114],[124,303,78,-0.026085857775133947],[124,303,79,-0.030810236684899767],[124,304,64,-0.020679104873090652],[124,304,65,-0.024845876702514938],[124,304,66,-0.018542410824603884],[124,304,67,-0.006894742117007358],[124,304,68,-0.0017398942770945544],[124,304,69,-0.002998815425849573],[124,304,70,-0.0015282731504137163],[124,304,71,-0.0016360134743442704],[124,304,72,-0.019523274869302346],[124,304,73,-0.036317745697338165],[124,304,74,-0.03342282083568183],[124,304,75,-0.02670390605910752],[124,304,76,-0.029389001257327293],[124,304,77,-0.027691403270381002],[124,304,78,-0.026030562366152275],[124,304,79,-0.030800299357890405],[124,305,64,-0.020793791333793304],[124,305,65,-0.024912444044970006],[124,305,66,-0.018646192590390343],[124,305,67,-0.0069046025691952805],[124,305,68,-0.0016332696227168457],[124,305,69,-0.0029279334224637343],[124,305,70,-0.0014995319548987446],[124,305,71,-0.001563964606835843],[124,305,72,-0.01947723096942517],[124,305,73,-0.03627967972917505],[124,305,74,-0.03335610388526848],[124,305,75,-0.026636578134323425],[124,305,76,-0.029321632795458116],[124,305,77,-0.027610311048227497],[124,305,78,-0.02599156702931416],[124,305,79,-0.030809700033966065],[124,306,64,-0.02092001413183379],[124,306,65,-0.024992329709569966],[124,306,66,-0.018759920924809447],[124,306,67,-0.006917842619595338],[124,306,68,-0.0015279583538730039],[124,306,69,-0.0028607773918699155],[124,306,70,-0.0014750507328356714],[124,306,71,-0.0014967354110554062],[124,306,72,-0.019445043103333087],[124,306,73,-0.036263601621297485],[124,306,74,-0.03330906300808012],[124,306,75,-0.026584086126889433],[124,306,76,-0.029269606096468052],[124,306,77,-0.027544522052274447],[124,306,78,-0.02596870974106031],[124,306,79,-0.030838406916504045],[124,307,64,-0.021057915903181106],[124,307,65,-0.025085617728187133],[124,307,66,-0.018883774430573978],[124,307,67,-0.0069345558873465185],[124,307,68,-0.001423903392272596],[124,307,69,-0.0027972804743521336],[124,307,70,-0.0014547874764538743],[124,307,71,-0.0014342074958742744],[124,307,72,-0.019426636257669064],[124,307,73,-0.036269455023517985],[124,307,74,-0.03328158984468688],[124,307,75,-0.026546295042372492],[124,307,76,-0.029232732923790576],[124,307,77,-0.027493802640863943],[124,307,78,-0.025961836209411174],[124,307,79,-0.03088640054910714],[124,308,64,-0.02120764915605287],[124,308,65,-0.02519240163182599],[124,308,66,-0.01901794219849617],[124,308,67,-0.006954845121868221],[124,308,68,-0.0013210553867557125],[124,308,69,-0.002737382296202116],[124,308,70,-0.0014387081152858468],[124,308,71,-0.0013762730441965305],[124,308,72,-0.01942194983497359],[124,308,73,-0.03629720012362545],[124,308,74,-0.033273590484210976],[124,308,75,-0.02652307871445599],[124,308,76,-0.02921082772534255],[124,308,77,-0.027457921336608727],[124,308,78,-0.025970799093138083],[124,308,79,-0.03095367350609424],[124,309,64,-0.021369376265697213],[124,309,65,-0.025312784411451135],[124,309,66,-0.01916262415582759],[124,309,67,-0.0069788228825229445],[124,309,68,-0.0012193732580413302],[124,309,69,-0.002681028871824302],[124,309,70,-0.001426786170984389],[124,309,71,-0.0013228344599282267],[124,309,72,-0.019430937414573024],[124,309,73,-0.03634681353025525],[124,309,74,-0.03328498539963216],[124,309,75,-0.026514319653895176],[124,309,76,-0.029203707050101047],[124,309,77,-0.02743664794389292],[124,309,78,-0.025995457165882738],[124,309,79,-0.031040230050297945],[124,310,64,-0.021543269470396004],[124,310,65,-0.025446878472613222],[124,310,66,-0.01931803143893802],[124,310,67,-0.007006612276231575],[124,310,68,-0.0011188247856267284],[124,310,69,-0.002628172490585743],[124,310,70,-0.00141900238411172],[124,310,71,-0.001273803999897644],[124,310,72,-0.01945356649561718],[124,310,73,-0.03641828813512691],[124,310,74,-0.03331570937835635],[124,310,75,-0.026519908899108723],[124,310,76,-0.029211188931651873],[124,310,77,-0.027429752608268135],[124,310,78,-0.02603567442297174],[124,310,79,-0.031146085757586928],[124,311,64,-0.021729510868115625],[124,311,65,-0.025594805583312563],[124,311,66,-0.019484386791038977],[124,311,67,-0.0070383477556072655],[124,311,68,-0.0010193872385954078],[124,311,69,-0.0025787715863678624],[124,311,70,-0.001415344309694227],[124,311,71,-0.0012291033886488367],[124,311,72,-0.019489818221207437],[124,311,73,-0.03651163295482386],[124,311,74,-0.0333657114495347],[124,311,75,-0.02653974587017675],[124,311,76,-0.029233092238873708],[124,311,77,-0.027437004816185467],[124,311,78,-0.026091319128655407],[124,311,79,-0.03127126710761213],[124,312,64,-0.021928292413231458],[124,312,65,-0.02575669681453116],[124,312,66,-0.019661924985703336],[124,312,67,-0.007074175980257222],[124,312,68,-9.21048052058989E-4],[124,312,69,-0.002532790587570324],[124,312,70,-0.0014158058780873045],[124,312,71,-0.001188663413817763],[124,312,72,-0.019539687082427173],[124,312,73,-0.036626872952271974],[124,312,74,-0.033434954809693974],[124,312,75,-0.02657373822816729],[124,312,76,-0.02926923599407327],[124,312,77,-0.027458172333541444],[124,312,78,-0.02616226280147756],[124,312,79,-0.03141581104034622],[124,313,64,-0.02213981591275559],[124,313,65,-0.025932692472859],[124,313,66,-0.019850893276974563],[124,313,67,-0.007114256743970445],[124,313,68,-8.23805550909248E-4],[124,313,69,-0.002490199745109305],[124,313,70,-0.0014203869174566153],[124,313,71,-0.0011524234996031207],[124,313,72,-0.01960318060098138],[124,313,73,-0.03676404883807273],[124,313,74,-0.03352341674832725],[124,313,75,-0.0266218017418738],[124,313,76,-0.029319438659051483],[124,313,77,-0.027493020081580655],[124,313,78,-0.026248379135480053],[124,313,79,-0.03157976447807257],[124,314,64,-0.022364293021508896],[124,314,65,-0.02612294202464041],[124,314,66,-0.02005155187689754],[124,314,67,-0.007158763970565983],[124,314,68,-7.276697224937689E-4],[124,314,69,-0.002450974935744609],[124,314,70,-0.0014290926339514851],[124,314,71,-0.0011203312556554012],[124,314,72,-0.0196803189890472],[124,314,73,-0.03692321685184016],[124,314,74,-0.0336310885751774],[124,314,75,-0.026683860164210295],[124,314,76,-0.029383517389759684],[124,314,77,-0.027541308948774705],[124,314,78,-0.02634954285496742],[124,314,79,-0.03176318381257519],[124,315,64,-0.022601945235672497],[124,315,65,-0.02632760401105075],[124,315,66,-0.020264174461320013],[124,315,67,-0.007207886781203104],[124,315,68,-6.326630397341858E-4],[124,315,69,-0.002415097437843773],[124,315,70,-0.0014419330454045472],[124,315,71,-0.0010923419985073603],[124,315,72,-0.01977113478481461],[124,315,73,-0.03710444852366404],[124,315,74,-0.033757975551002364],[124,315,75,-0.026759845120649568],[124,315,76,-0.02946128726036767],[124,315,77,-0.027602794537371373],[124,315,78,-0.026465628500574684],[124,315,79,-0.03196613435736596],[124,316,64,-0.022853003884152304],[124,316,65,-0.02654684595349968],[124,316,66,-0.02048904870481856],[124,316,67,-0.007261830635951461],[124,316,68,-5.388213360829691E-4],[124,316,69,-0.0023825536764630426],[124,316,70,-0.0014589223641650942],[124,316,71,-0.0010684182424890302],[124,316,72,-0.01987567246209888],[124,316,73,-0.037307830415811885],[124,316,74,-0.03390409682368581],[124,316,75,-0.026849696012244743],[124,316,76,-0.029552560457752963],[124,316,77,-0.02767722584341338],[124,316,78,-0.02659650914443379],[124,316,79,-0.032188689764894376],[124,317,64,-0.023117710117196197],[124,317,65,-0.026780844248750227],[124,317,66,-0.02072647684560818],[124,317,67,-0.0073208185524104],[124,317,68,-4.4619473358656244E-4],[124,317,69,-0.0023533349344071345],[124,317,70,-0.0014800783244605699],[124,317,71,-0.001048529156899664],[124,317,72,-0.01999398801230054],[124,317,73,-0.037533463844755664],[124,317,74,-0.03406948537160759],[124,317,75,-0.02695335993590956],[124,317,76,-0.029657145447605806],[124,317,77,-0.027764343869142474],[124,317,78,-0.026742055032305288],[124,317,79,-0.03243093140879093],[124,318,64,-0.02339631489168776],[124,318,65,-0.027029784053116502],[124,318,66,-0.020976776281261645],[124,318,67,-0.007385092404099222],[124,318,68,-3.5484862513945897E-4],[124,318,69,-0.002327437025690298],[124,318,70,-0.0015054214494667148],[124,318,71,-0.0010326499860409033],[124,318,72,-0.02012614849688897],[124,318,73,-0.03778146458357987],[124,318,74,-0.03425418795623004],[124,318,75,-0.02707079162476171],[124,318,76,-0.029774846113531026],[124,318,77,-0.027863880166836216],[124,318,78,-0.026902132150629737],[124,318,79,-0.03269294773130628],[124,319,64,-0.023689069195738092],[124,319,65,-0.027293852874899736],[124,319,66,-0.02124027269750387],[124,319,67,-0.007454899707642978],[124,319,68,-2.648564278538129E-4],[124,319,69,-0.0023048693421682457],[124,319,70,-0.0015349842724121533],[124,319,71,-0.0010207631375093052],[124,319,72,-0.020272225983886945],[124,319,73,-0.038051951345472484],[124,319,74,-0.03445824999552522],[124,319,75,-0.027201939490451753],[124,319,76,-0.029905455064390712],[124,319,77,-0.02797555497633196],[124,319,78,-0.027076600153350044],[124,319,79,-0.032974828761142286],[125,-64,64,9.166998387005611E-4],[125,-64,65,0.04585613851147227],[125,-64,66,-0.013726217903405006],[125,-64,67,-0.032103315900923135],[125,-64,68,-0.05104553161640345],[125,-64,69,-0.05585019471564656],[125,-64,70,-0.07159453978561993],[125,-64,71,-0.10047464282579902],[125,-64,72,-0.10999695054040468],[125,-64,73,-0.09997485390331577],[125,-64,74,-0.16702309462077372],[125,-64,75,-0.2365367932726008],[125,-64,76,-0.19536086235602684],[125,-64,77,-0.15900397071427527],[125,-64,78,-0.17575058628189802],[125,-64,79,-0.21074022337080703],[125,-63,64,7.617268157765556E-5],[125,-63,65,0.04359684393483149],[125,-63,66,-0.015420325685297097],[125,-63,67,-0.03324069401850365],[125,-63,68,-0.05096677063908054],[125,-63,69,-0.05449445859133058],[125,-63,70,-0.07015621714600069],[125,-63,71,-0.09873707795628414],[125,-63,72,-0.10825218078899901],[125,-63,73,-0.09894802220668902],[125,-63,74,-0.16594414042220237],[125,-63,75,-0.23387694865628295],[125,-63,76,-0.19250321197972553],[125,-63,77,-0.1562966383046335],[125,-63,78,-0.1732185012116732],[125,-63,79,-0.20812973319932623],[125,-62,64,-7.865734893766817E-4],[125,-62,65,0.041349435479356385],[125,-62,66,-0.01707126186269209],[125,-62,67,-0.0343341441849489],[125,-62,68,-0.05086202823472925],[125,-62,69,-0.053154299749396915],[125,-62,70,-0.06875346462781542],[125,-62,71,-0.09705178355174615],[125,-62,72,-0.10655498982173651],[125,-62,73,-0.09795890645384364],[125,-62,74,-0.16487482798865197],[125,-62,75,-0.2312391728484189],[125,-62,76,-0.1897036427080832],[125,-62,77,-0.15367145054598746],[125,-62,78,-0.17074072404705018],[125,-62,79,-0.20554477665899637],[125,-61,64,-0.0016691801270228284],[125,-61,65,0.03911544550774303],[125,-61,66,-0.018678915777999093],[125,-61,67,-0.0353838126905545],[125,-61,68,-0.05073189526182669],[125,-61,69,-0.051830015617313194],[125,-61,70,-0.06738539773245103],[125,-61,71,-0.09541688353168848],[125,-61,72,-0.10490376591121861],[125,-61,73,-0.09700571038190096],[125,-61,74,-0.16381392424576596],[125,-61,75,-0.22862266834154069],[125,-61,76,-0.1869602093990782],[125,-61,77,-0.15112529788216486],[125,-61,78,-0.16831502277720406],[125,-61,79,-0.20298433001738359],[125,-60,64,-0.0025694035397306456],[125,-60,65,0.03689630214846526],[125,-60,66,-0.02024322585804337],[125,-60,67,-0.03638988146713035],[125,-60,68,-0.05057697993678984],[125,-60,69,-0.05052191175222581],[125,-60,70,-0.06605117628696061],[125,-60,71,-0.09383059432913923],[125,-60,72,-0.10329700458332712],[125,-60,73,-0.09608676260506538],[125,-60,74,-0.16276029001501613],[125,-60,75,-0.22602665988022566],[125,-60,76,-0.18427097438612924],[125,-60,77,-0.1486551012270992],[125,-60,78,-0.16593919954609365],[125,-60,79,-0.20044738162327624],[125,-59,64,-0.003485061908294405],[125,-59,65,0.034693386047109726],[125,-59,66,-0.021764137168722913],[125,-59,67,-0.03735254003012143],[125,-59,68,-0.050397884430103575],[125,-59,69,-0.04923027770619244],[125,-59,70,-0.06474996125489908],[125,-59,71,-0.09229114649459573],[125,-59,72,-0.1017331972515579],[125,-59,73,-0.09520038555120416],[125,-59,74,-0.16171275181414752],[125,-59,75,-0.22345030794977333],[125,-59,76,-0.18163397140617005],[125,-59,77,-0.14625779756592783],[125,-59,78,-0.16361106292925254],[125,-59,79,-0.19793289068948644],[125,-58,64,-0.004414032333116751],[125,-58,65,0.03250803366696391],[125,-58,66,-0.023241598634736453],[125,-58,67,-0.03827198288581888],[125,-58,68,-0.05019520307257713],[125,-58,69,-0.047955386686574925],[125,-58,70,-0.06348091430107336],[125,-58,71,-0.09079678405917466],[125,-58,72,-0.10021083092667263],[125,-58,73,-0.09434489488866647],[125,-58,74,-0.16067010068637147],[125,-58,75,-0.22089270880215467],[125,-58,76,-0.17904720645725714],[125,-58,77,-0.1439303404973106],[125,-58,78,-0.16132842740461217],[125,-58,79,-0.19543978646185306],[125,-57,64,-0.005354247781163836],[125,-57,65,0.030341540714144775],[125,-57,66,-0.02467556026731918],[125,-57,67,-0.0391484070067106],[125,-57,68,-0.049969520738355616],[125,-57,69,-0.04669749539157096],[125,-57,70,-0.062243197412232665],[125,-57,71,-0.08934576389226258],[125,-57,72,-0.09872838793799962],[125,-57,73,-0.09351859889422434],[125,-57,74,-0.15963109104225726],[125,-57,75,-0.21835289458389937],[125,-57,76,-0.17650865857227996],[125,-57,77,-0.14166970055934214],[125,-57,78,-0.1590891127737686],[125,-57,79,-0.19296696751361575],[125,-56,64,-0.006303693922886849],[125,-56,65,0.028195165696346114],[125,-56,66,-0.02606597039697775],[125,-56,67,-0.03998200937722187],[125,-56,68,-0.049721411393472116],[125,-56,69,-0.04545684399391775],[125,-56,70,-0.06103597254741242],[125,-56,71,-0.08793635501886787],[125,-56,72,-0.0972843456148033],[125,-56,73,-0.09271979770998254],[125,-56,74,-0.15859443947235397],[125,-56,75,-0.215829833535771],[125,-56,76,-0.17401628050589435],[125,-56,77,-0.13947286535293474],[125,-56,78,-0.15689094353759112],[125,-56,79,-0.19051330115625278],[125,-55,64,-0.0072604058738718735],[125,-55,65,0.026070133598181226],[125,-55,66,-0.027412772927228077],[125,-55,67,-0.040772984624010744],[125,-55,68,-0.049451436808800216],[125,-55,69,-0.04423365625743643],[125,-55,70,-0.0598584013125838],[125,-55,71,-0.08656683789956679],[125,-55,72,-0.0958771759297175],[125,-55,73,-0.0919467825000455],[125,-55,74,-0.15755882354965475],[125,-55,75,-0.21332243027591916],[125,-55,76,-0.17156799935028824],[125,-55,77,-0.13733683948462364],[125,-55,78,-0.15473174824347524],[125,-55,79,-0.18807762297731262],[125,-54,64,-0.008222464856256356],[125,-54,65,0.023967639655903948],[125,-54,66,-0.028715904625049363],[125,-54,67,-0.041521522744333884],[125,-54,68,-0.04916014543567868],[125,-54,69,-0.043028139771065586],[125,-54,70,-0.0587096446545408],[125,-54,71,-0.08523550367646258],[125,-54,72,-0.09450534510696307],[125,-54,73,-0.09119783451860779],[125,-54,74,-0.1565228806417242],[125,-54,75,-0.21082952617894646],[125,-54,76,-0.16916171709617076],[125,-54,77,-0.13525864435141732],[125,-54,78,-0.15260935882185114],[125,-54,79,-0.18565873651597484],[125,-53,64,-0.009188002303833438],[125,-53,65,0.02188887142457945],[125,-53,66,-0.02997531785057581],[125,-53,67,-0.0422278433437114],[125,-53,68,-0.048848114284906825],[125,-53,69,-0.041840523618179096],[125,-53,70,-0.057588914834717356],[125,-53,71,-0.08394073086067116],[125,-53,72,-0.09316740062537555],[125,-53,73,-0.09047131040307373],[125,-53,74,-0.15548535749526673],[125,-53,75,-0.20835010511975824],[125,-53,76,-0.16679547809510537],[125,-53,77,-0.13323545324152572],[125,-53,78,-0.1505217653341345],[125,-53,79,-0.18325560519246017],[125,-52,64,-0.010155257349793305],[125,-52,65,0.019835117440176152],[125,-52,66,-0.031191164400863832],[125,-52,67,-0.04289245009721505],[125,-52,68,-0.0485162384947317],[125,-52,69,-0.04067130239141381],[125,-52,70,-0.056495821621381295],[125,-52,71,-0.08268150159577313],[125,-52,72,-0.09186255515044904],[125,-52,73,-0.08976622415588531],[125,-52,74,-0.15444612925836324],[125,-52,75,-0.20588467024466633],[125,-52,76,-0.1644685843517924],[125,-52,77,-0.13126549382308955],[125,-52,78,-0.14846815315701634],[125,-52,79,-0.18086863630209263],[125,-51,64,-0.011122571845250237],[125,-51,65,0.017807651847305175],[125,-51,66,-0.03236373305792051],[125,-51,67,-0.043516014443575335],[125,-51,68,-0.04816556594865994],[125,-51,69,-0.039521069064454385],[125,-51,70,-0.055430152152406535],[125,-51,71,-0.08145708420604666],[125,-51,72,-0.09059033086082624],[125,-51,73,-0.08908191165855751],[125,-51,74,-0.15340561740723352],[125,-51,75,-0.20343441961793907],[125,-51,76,-0.16218091417243982],[125,-51,77,-0.12934749112802577],[125,-51,78,-0.14644826779142509],[125,-51,79,-0.17849889856068044],[125,-50,64,-0.012088370316838397],[125,-50,65,0.015807660489741533],[125,-50,66,-0.033493368587367504],[125,-50,67,-0.044099253050933165],[125,-50,68,-0.04779714685522666],[125,-50,69,-0.03839037986884971],[125,-50,70,-0.05439168589085647],[125,-50,71,-0.08026676116786971],[125,-50,72,-0.08935025314660361],[125,-50,73,-0.08841773213083864],[125,-50,74,-0.1523642668493321],[125,-50,75,-0.20100052678344563],[125,-50,76,-0.15993233596931025],[125,-50,77,-0.12748019193919352],[125,-50,78,-0.144461868169291],[125,-50,79,-0.17614744555219544],[125,-49,64,-0.01305115974966821],[125,-49,65,0.013836240897841492],[125,-49,66,-0.03458046921225116],[125,-49,67,-0.0446429243417778],[125,-49,68,-0.04741203058754962],[125,-49,69,-0.03727975339549834],[125,-49,70,-0.05338019415253115],[125,-49,71,-0.0791098284768621],[125,-49,72,-0.08814185003420526],[125,-49,73,-0.0877730675818313],[125,-49,74,-0.1513225422802693],[125,-49,75,-0.1985841362149173],[125,-49,76,-0.15772270629088933],[125,-49,77,-0.1256623642115196],[125,-49,78,-0.1425087237813279],[125,-49,79,-0.17381531070352352],[125,-48,64,-0.01400952932339616],[125,-48,65,0.011894402852940777],[125,-48,66,-0.0356254844650702],[125,-48,67,-0.04514782567053724],[125,-48,68,-0.0470112634488054],[125,-48,69,-0.03618967058555682],[125,-48,70,-0.052395440679707465],[125,-48,71,-0.07798559645380677],[125,-48,72,-0.08696465325033666],[125,-48,73,-0.0871473237858985],[125,-48,74,-0.1502809273399189],[125,-48,75,-0.19618636275155454],[125,-48,76,-0.15555187097474274],[125,-48,77,-0.12389279888313565],[125,-48,78,-0.14058861470795056],[125,-48,79,-0.1715035060291405],[125,-47,64,-0.014962149980311232],[125,-47,65,0.009983069142891269],[125,-47,66,-0.03662891296895166],[125,-47,67,-0.04561479048811601],[125,-47,68,-0.04659588655035266],[125,-47,69,-0.035120574875401274],[125,-47,70,-0.05143718224820489],[125,-47,71,-0.07689339049980143],[125,-47,72,-0.08581819924434651],[125,-47,73,-0.08653993113898564],[125,-47,74,-0.14923992370251815],[125,-47,75,-0.19380829108737557],[125,-47,76,-0.1534196662193505],[125,-47,77,-0.12217031147952503],[125,-47,78,-0.13870133157593625],[125,-47,79,-0.16921302096181084],[125,-46,64,-0.015907773831803466],[125,-46,65,0.008103076499597666],[125,-46,66,-0.03759130015862997],[125,-46,67,-0.04604468550419018],[125,-46,68,-0.04616693380451835],[125,-46,69,-0.0340728724867539],[125,-46,70,-0.05050516930356654],[125,-46,71,-0.07583255180056801],[125,-46,72,-0.08470203016770296],[125,-46,73,-0.08595034539870329],[125,-46,74,-0.14820005010940876],[125,-46,75,-0.1914509753166041],[125,-46,76,-0.15132591957870722],[125,-46,77,-0.12049374351930124],[125,-46,78,-0.1368466754489837],[125,-46,79,-0.1669448212734732],[125,-45,64,-0.0168452334097613],[125,-45,65,0.006255176709291661],[125,-45,66,-0.03851323595148786],[125,-45,67,-0.04643840785744339],[125,-45,68,-0.04572543003346099],[125,-45,69,-0.03304693285292378],[125,-45,70,-0.049599146622163144],[125,-45,71,-0.07480243797993354],[125,-45,72,-0.08361569480941959],[125,-45,73,-0.08537804831168258],[125,-45,74,-0.14716184135273666],[125,-45,75,-0.1891154385369364],[125,-45,76,-0.149270450883394],[125,-45,77,-0.11886196373030046],[125,-45,78,-0.1350244576599299],[125,-45,79,-0.1646998480897416],[125,-44,64,-0.017773440770019047],[125,-44,65,0.004440037885843748],[125,-44,66,-0.039395352378742456],[125,-44,67,-0.04679688230351567],[125,-44,68,-0.04527238919524205],[125,-44,69,-0.0320430891723448],[125,-44,70,-0.04871885399346671],[125,-44,71,-0.07380242370308099],[125,-44,72,-0.08255874948690002],[125,-44,73,-0.08482254813228847],[125,-44,74,-0.14612584721848662],[125,-44,75,-0.1868026725124787],[125,-44,76,-0.14725307309200575],[125,-44,77,-0.11727386908497248],[125,-44,78,-0.1332344995923524],[125,-44,79,-0.16247901700115625],[125,-43,64,-0.018691386455287118],[125,-43,65,0.002658245897152635],[125,-43,66,-0.04023832118665647],[125,-43,67,-0.04712105843001899],[125,-43,68,-0.04480881272787996],[125,-43,69,-0.031061639080695414],[125,-43,70,-0.047864026919949475],[125,-43,71,-0.07283190123036834],[125,-43,72,-0.08153075889190647],[125,-43,73,-0.08428338003703126],[125,-43,74,-0.14509263139699446],[125,-43,75,-0.18451363739784896],[125,-43,76,-0.14527359307685606],[125,-43,77,-0.11572838566418528],[125,-43,78,-0.13147663241898327],[125,-43,79,-0.16028321727372483],[125,-42,64,-0.019598138325051626],[125,-42,65,9.103059347195737E-4],[125,-42,66,-0.04104285141705162],[125,-42,67,-0.047411907907166324],[125,-42,68,-0.04433568801153397],[125,-42,69,-0.030102845432805395],[125,-42,70,-0.0470343973311217],[125,-42,71,-0.07189028092265043],[125,-42,72,-0.08053129689155],[125,-42,73,-0.08376010643912975],[125,-42,74,-0.14406277036869472],[125,-42,75,-0.18224926152451207],[125,-42,76,-0.14333181234768586],[125,-42,77,-0.11422446935843696],[125,-42,78,-0.12975069680393955],[125,-42,79,-0.15811331116067254],[125,-41,64,-0.020492840260372177],[125,-41,65,-8.03355783823256E-4],[125,-41,66,-0.04180968697626472],[125,-41,67,-0.04767042178222606],[125,-41,68,-0.04385398694878295],[125,-41,69,-0.029166937185888194],[125,-41,70,-0.046229694308638575],[125,-41,71,-0.07097699169946611],[125,-41,72,-0.07955994728467115],[125,-41,73,-0.08325231720809356],[125,-41,74,-0.1430368522727898],[125,-41,75,-0.18001044125033897],[125,-41,76,-0.14142752771725778],[125,-41,77,-0.11276110641566417],[125,-41,78,-0.12805654257564486],[125,-41,79,-0.15597013331698978],[125,-40,64,-0.021374710751714536],[125,-40,65,-0.0024823901895704302],[125,-40,66,-0.04253960420134286],[125,-40,67,-0.04789760782548591],[125,-40,68,-0.04336466466262644],[125,-40,69,-0.028254110375828624],[125,-40,70,-0.045449644819652794],[125,-40,71,-0.07009148145167568],[125,-40,72,-0.07861630451424681],[125,-40,73,-0.08275962979937537],[125,-40,74,-0.14201547576623255],[125,-40,75,-0.17779804087309323],[125,-40,76,-0.13956053191263845],[125,-40,77,-0.11133731384478063],[125,-40,78,-0.12639402837696795],[125,-40,79,-0.15385449031785836],[125,-39,64,-0.022243041377866955],[125,-39,65,-0.004126523424714901],[125,-39,66,-0.043233409431628705],[125,-39,67,-0.04809448793460146],[125,-39,68,-0.042868658311260376],[125,-39,69,-0.0273645291782499],[125,-39,70,-0.04469397445562937],[125,-39,71,-0.069233217410186],[125,-39,72,-0.07769997433657251],[125,-39,73,-0.08228168929915435],[125,-39,74,-0.14099924887996426],[125,-39,75,-0.1756128926081613],[125,-39,76,-0.13773061413577634],[125,-39,77,-0.1099521396838882],[125,-39,78,-0.1247630212986674],[125,-39,79,-0.1517671602814825],[125,-38,64,-0.02309719518434469],[125,-38,65,-0.005735554802817912],[125,-38,66,-0.04389193659374163],[125,-38,67,-0.04826209560389525],[125,-38,68,-0.04236688601859124],[125,-38,69,-0.026498327046517087],[125,-38,70,-0.043962408174278274],[125,-38,71,-0.06840168647276798],[125,-38,72,-0.07681057444837279],[125,-38,73,-0.08181816838960669],[125,-38,74,-0.13998878787919206],[125,-38,75,-0.1734557966307409],[125,-38,76,-0.13593756057703596],[125,-38,77,-0.1086046631421241],[125,-38,78,-0.1231633965020171],[125,-38,79,-0.14970889259653197],[125,-37,64,-0.023936604969729568],[125,-37,65,-0.007309354677277247],[125,-37,66,-0.04451604480749829],[125,-37,67,-0.04840147346456747],[125,-37,68,-0.04186024591910994],[125,-37,69,-0.02565560791905349],[125,-37,70,-0.04325467104247071],[125,-37,71,-0.06759639549114628],[125,-37,72,-0.07594773507322335],[125,-37,73,-0.08136876724012168],[125,-37,74,-0.1389847161341596],[125,-37,75,-0.17132752118246491],[125,-37,76,-0.1341811548852616],[125,-37,77,-0.1072939946239927],[125,-37,78,-0.12159503683615888],[125,-37,79,-0.1476804077540173],[125,-36,64,-0.024760771488230554],[125,-36,65,-0.008847862228023213],[125,-36,66,-0.045106616019694394],[125,-36,67,-0.048513670901032944],[125,-36,68,-0.04134961531528311],[125,-36,69,-0.024836447488434922],[125,-36,70,-0.04257048897806496],[125,-36,71,-0.0668168715205253],[125,-36,72,-0.07511109950870497],[125,-36,73,-0.08093321332981973],[125,-36,74,-0.13798766300734236],[125,-36,75,-0.16922880274204624],[125,-36,76,-0.13246117859767373],[125,-36,77,-0.10601927564469231],[125,-36,78,-0.1200578324552345],[125,-36,79,-0.1456823972828864],[125,-35,64,-0.025569261577026953],[125,-35,65,-0.010351083176632421],[125,-35,66,-0.04566455267251789],[125,-35,67,-0.04859974174832122],[125,-35,68,-0.04083584994561222],[125,-35,69,-0.024040894525243772],[125,-35,70,-0.04190958948902474],[125,-35,71,-0.06606266203408108],[125,-35,72,-0.07430032463611129],[125,-35,73,-0.0805112612069875],[125,-35,74,-0.1369982627628655],[125,-35,75,-0.16716034625950887],[125,-35,76,-0.13077741153297287],[125,-35,77,-0.10477967864494317],[125,-35,78,-0.11855168044017445],[125,-35,79,-0.14371552378844404],[125,-34,64,-0.026361706216693676],[125,-34,65,-0.011819087439659454],[125,-34,66,-0.04619077541266869],[125,-34,67,-0.048660742074685896],[125,-34,68,-0.04031978336104601],[125,-34,69,-0.023268972249762338],[125,-34,70,-0.04127170240824489],[125,-34,71,-0.06533333510489535],[125,-34,72,-0.0735150813945463],[125,-34,73,-0.0801026921908907],[125,-34,74,-0.13601715350339866],[125,-34,75,-0.16512282545320428],[125,-34,76,-0.12912963215074807],[125,-34,77,-0.10357440671345461],[125,-34,78,-0.1170764844295488],[125,-34,79,-0.14178042109224817],[125,-33,64,-0.027137798533167362],[125,-33,65,-0.013252006730039421],[125,-33,66,-0.046686220847062095],[125,-33,67,-0.04869772805327561],[125,-33,68,-0.03980222640742959],[125,-33,69,-0.02252067974508563],[125,-33,70,-0.04065656062290284],[125,-33,71,-0.06462847955808682],[125,-33,72,-0.07275505522155147],[125,-33,73,-0.07970731402157434],[125,-33,74,-0.13504497613957736],[125,-33,75,-0.16311688316876363],[125,-33,76,-0.1275176178802887],[125,-33,77,-0.10240269322505872],[125,-33,78,-0.11563215426366373],[125,-33,79,-0.13987769447194942],[125,-32,64,-0.027897291749357487],[125,-32,65,-0.014650032115942516],[125,-32,66,-0.04715183935027811],[125,-32,67,-0.048711753925930364],[125,-32,68,-0.03928396681122493],[125,-32,69,-0.02179599340531996],[125,-32,70,-0.040063900797139056],[125,-32,71,-0.06394770509577148],[125,-32,72,-0.07201994646234351],[125,-32,73,-0.079324960463022],[125,-32,74,-0.1340823733964233],[125,-32,75,-0.16114313179875003],[125,-32,76,-0.12594114542156462],[125,-32,77,-0.10126380140208942],[125,-32,78,-0.11421860564557369],[125,-32,79,-0.13800792099910256],[125,-31,64,-0.028639997094579706],[125,-31,65,-0.016013411546411185],[125,-31,66,-0.0475885929286668],[125,-31,67,-0.04870387006185061],[125,-31,68,-0.0387657688657436],[125,-31,69,-0.02109486841303942],[125,-31,70,-0.0394934640872525],[125,-31,71,-0.06329064239773284],[125,-31,72,-0.07130947075003043],[125,-31,73,-0.07895549086515291],[125,-31,74,-0.1331299888610261],[125,-31,75,-0.15920215376178118],[125,-31,76,-0.1243999910211534],[125,-31,77,-0.10015702380646054],[125,-31,78,-0.1128357598225072],[125,-31,79,-0.13617164997288408],[125,-30,64,-0.0293657816798425],[125,-30,65,-0.017342447352865484],[125,-30,66,-0.04799745314559412],[125,-30,67,-0.04867512111340664],[125,-30,68,-0.03824837321499074],[125,-30,69,-0.020417240240513893],[125,-30,70,-0.03894499684879426],[125,-30,71,-0.06265694320073138],[125,-30,72,-0.0706233593592602],[125,-30,73,-0.07859878969003878],[125,-30,74,-0.1321884660753587],[125,-30,75,-0.15729450203968862],[125,-30,76,-0.12289393072570286],[125,-30,77,-0.09908168176955999],[125,-30,78,-0.11148354329083705],[125,-30,79,-0.13436940344740217],[125,-29,64,-0.030074566346647694],[125,-29,65,-0.018637493735063487],[125,-29,66,-0.04837939911166252],[125,-29,67,-0.04862654427067247],[125,-29,68,-0.03773249673188257],[125,-29,69,-0.019763026169376544],[125,-29,70,-0.03841825133496154],[125,-29,71,-0.06204628035927928],[125,-29,72,-0.06996135953571013],[125,-29,73,-0.07825476600748967],[125,-29,74,-0.13125844767759037],[125,-29,75,-0.15542070077102876],[125,-29,76,-0.12142274061524842],[125,-29,77,-0.0980371247666613],[125,-29,78,-0.11016188752731773],[125,-29,79,-0.13260167684999985],[125,-28,64,-0.030766323496963555],[125,-28,65,-0.01989895424000913],[125,-28,66,-0.048735415543525146],[125,-28,67,-0.0485591676160233],[125,-28,68,-0.03721883248769559],[125,-28,69,-0.019132126823938472],[125,-28,70,-0.037912986386058126],[125,-28,71,-0.0614583478908914],[125,-28,72,-0.06932323480403754],[125,-28,73,-0.07792335296517239],[125,-28,74,-0.13034057459503207],[125,-28,75,-0.15358124589924124],[125,-28,76,-0.1199861970186553],[125,-28,77,-0.0970227297423302],[125,-28,78,-0.10887072874910304],[125,-28,79,-0.13086893968789068],[125,-27,64,-0.03144107491178488],[125,-27,65,-0.0211272792419357],[125,-27,66,-0.049066490894447604],[125,-27,67,-0.048474008579654095],[125,-27,68,-0.03670804980946608],[125,-27,69,-0.018524427713664086],[125,-27,70,-0.03742896810993461],[125,-27,71,-0.06089286100883536],[125,-27,72,-0.06870876525696847],[125,-27,73,-0.07760450723829604],[125,-27,74,-0.129435485291489],[125,-27,75,-0.151776605873645],[125,-27,76,-0.11858407671330087],[125,-27,77,-0.09603790039298823],[125,-27,78,-0.10761000770478137],[125,-27,79,-0.1291716363403519],[125,-26,64,-0.03209888956528943],[125,-26,65,-0.022322963430992288],[125,-26,66,-0.04937361555920139],[125,-26,67,-0.04837207249631242],[125,-26,68,-0.036200794421851853],[125,-26,69,-0.01793980078053919],[125,-26,70,-0.036965970553356174],[125,-26,71,-0.06034955614526856],[125,-26,72,-0.06811774782810835],[125,-26,73,-0.0772982084636029],[125,-26,74,-0.12854381507129806],[125,-26,75,-0.1500072224012144],[125,-26,76,-0.11721615711081616],[125,-26,77,-0.09508206641231406],[125,-26,78,-0.10637966949825317],[125,-26,79,-0.12751018693346847],[125,-25,64,-0.03273988144152523],[125,-25,65,-0.023486543318087857],[125,-25,66,-0.049657780155652906],[125,-25,67,-0.04825435126331537],[125,-25,68,-0.03569768867007331],[125,-25,69,-0.01737810594756053],[125,-25,70,-0.03652377636455547],[125,-25,71,-0.0598281909677935],[125,-25,72,-0.06754999655122929],[125,-25,73,-0.07700445866238523],[125,-25,74,-0.1276661954421308],[125,-25,75,-0.14827351124712368],[125,-25,76,-0.11588221643065949],[125,-25,77,-0.09415468270493921],[125,-25,78,-0.10517966344712029],[125,-25,79,-0.1258849882944543],[125,-24,64,-0.03336420736025298],[125,-24,65,-0.024618594762926424],[125,-24,66,-0.04991997388496138],[125,-24,67,-0.04812182209949667],[125,-24,68,-0.035199331820483654],[125,-24,69,-0.01683919266489839],[125,-24,70,-0.03610217744735945],[125,-24,71,-0.059328544392439585],[125,-24,72,-0.06700534280880788],[125,-24,73,-0.07672328165706538],[125,-24,74,-0.12680325353829214],[125,-24,75,-0.1465758630819702],[125,-24,76,-0.11458203386314368],[125,-24,77,-0.09325522857355403],[125,-24,78,-0.10400994297701892],[125,-24,79,-0.12429641498254114],[125,-23,64,-0.03397206481815513],[125,-23,65,-0.025719730531777736],[125,-23,66,-0.05016118297181956],[125,-23,67,-0.04797544640427472],[125,-23,68,-0.03470630043518936],[125,-23,69,-0.016322901450506168],[125,-23,70,-0.03570097560730552],[125,-23,71,-0.05885041659592868],[125,-23,72,-0.06648363557246495],[125,-23,73,-0.07645472248556673],[125,-23,74,-0.12595561160581167],[125,-23,75,-0.14491464437339696],[125,-23,76,-0.11331538972323962],[125,-23,77,-0.09238320688405086],[125,-23,78,-0.10287046555295108],[125,-23,79,-0.12274482039326894],[125,-22,64,-0.034563689851460196],[125,-22,65,-0.02679059789126535],[125,-22,66,-0.05038238918591877],[125,-22,67,-0.04781616871581929],[125,-22,68,-0.03421914881726824],[125,-22,69,-0.01582906542241736],[125,-22,70,-0.03531998319042454],[125,-22,71,-0.05839362903018509],[125,-22,72,-0.06598474163809344],[125,-22,73,-0.07619884681763937],[125,-22,74,-0.1251238865504338],[125,-22,75,-0.14329019831991463],[125,-22,76,-0.1120820655964543],[125,-22,77,-0.09153814321311413],[125,-22,78,-0.10176119264857852],[125,-22,79,-0.12123053793313561],[125,-21,64,-0.03513935492571496],[125,-21,65,-0.027831876244049338],[125,-21,66,-0.050584568445461095],[125,-21,67,-0.04764491576697955],[125,-21,68,-0.03373840952313917],[125,-21,69,-0.015357511820292297],[125,-21,70,-0.034959023715490124],[125,-21,71,-0.05795802444200729],[125,-21,72,-0.06550854585844564],[125,-21,73,-0.07595574037710423],[125,-21,74,-0.12430868954932263],[125,-21,75,-0.14170284582468992],[125,-21,76,-0.11088184447791853],[125,-21,77,-0.09071958498231317],[125,-21,78,-0.10068208975423018],[125,-21,79,-0.11975388226158648],[125,-20,64,-0.03569936685799178],[125,-20,65,-0.02884427481176701],[125,-20,66,-0.05076868950308669],[125,-20,67,-0.0474625956372383],[125,-20,68,-0.033264593938561064],[125,-20,69,-0.014908063513988865],[125,-20,70,-0.034617932500538684],[125,-20,71,-0.05754346690065216],[125,-20,72,-0.06505495137581145],[125,-20,73,-0.0757255083736493],[125,-20,74,-0.12351062572689475],[125,-20,75,-0.14015288650691504],[125,-20,76,-0.10971451090554546],[125,-20,77,-0.08992710058227993],[125,-20,78,-0.09963312642405733],[125,-20,79,-0.11831515059724375],[125,-19,64,-0.03624406477661844],[125,-19,65,-0.029828530370297722],[125,-19,66,-0.05093571271436297],[125,-19,67,-0.04727009699879791],[125,-19,68,-0.032798192914891576],[125,-19,69,-0.014480540497361789],[125,-19,70,-0.034296557284690575],[125,-19,71,-0.057149841836164214],[125,-19,72,-0.06462387985752793],[125,-19,73,-0.07550827494773907],[125,-19,74,-0.12273029389505967],[125,-19,75,-0.13864059974850917],[125,-19,76,-0.10857985108810744],[125,-19,77,-0.08916027849035188],[125,-19,78,-0.09861427636273477],[125,-19,79,-0.11691462408548049],[125,-18,64,-0.03677381812320488],[125,-18,65,-0.030785405042046868],[125,-18,66,-0.051086588888705715],[125,-18,67,-0.0470682884546913],[125,-18,68,-0.032339677462322206],[125,-18,69,-0.014074761365818936],[125,-18,70,-0.033994758846420794],[125,-18,71,-0.056777056091222924],[125,-18,72,-0.06421527173701914],[125,-18,73,-0.07530418263197558],[125,-18,74,-0.12196828635789228],[125,-18,75,-0.13716624577388092],[125,-18,76,-0.10747765302891604],[125,-18,77,-0.08841872638469911],[125,-18,78,-0.09762551755191745],[125,-18,79,-0.11555256922450491],[125,-17,64,-0.03728902470126265],[125,-17,65,-0.0317156841493883],[125,-17,66,-0.051222258222156376],[125,-17,67,-0.046858017966446515],[125,-17,68,-0.03188949949673919],[125,-17,69,-0.01369054477633034],[125,-17,70,-0.033712411619394124],[125,-17,71,-0.056425037989108966],[125,-17,72,-0.06382908646291957],[125,-17,73,-0.07511339183193146],[125,-17,74,-0.1212251887804234],[125,-17,75,-0.13573006676040344],[125,-17,76,-0.10640770664555342],[125,-17,77,-0.0877020702575331],[125,-17,78,-0.09666683241643148],[125,-17,79,-0.11422923934713415],[125,-16,64,-0.03779010877552063],[125,-16,65,-0.032620174133144095],[125,-16,66,-0.051343649311300824],[125,-16,67,-0.04664011236877099],[125,-16,68,-0.031448092637078026],[125,-16,69,-0.013327710889003789],[125,-16,70,-0.03344940430719673],[125,-16,71,-0.056093737420452774],[125,-16,72,-0.06346530275891268],[125,-16,73,-0.07493608032938093],[125,-16,74,-0.12050158012113493],[125,-16,75,-0.1343322879773906],[125,-16,76,-0.10536980388608551],[125,-16,77,-0.08700995352978576],[125,-16,78,-0.09573820803016031],[125,-16,79,-0.11294487615567435],[125,-15,64,-0.038277519225716955],[125,-15,65,-0.03349970053960379],[125,-15,66,-0.051451678247373615],[125,-15,67,-0.04641537696856492],[125,-15,68,-0.03101587305014904],[125,-15,69,-0.012986082789628248],[125,-15,70,-0.033205640498384655],[125,-15,71,-0.05578312595136706],[125,-15,72,-0.06312391889687012],[125,-15,73,-0.0747724428106483],[125,-15,74,-0.11979803262755771],[125,-15,75,-0.132973118951399],[125,-15,76,-0.10436373884205133],[125,-15,77,-0.08634203616932506],[125,-15,78,-0.09483963636145858],[125,-15,79,-0.11169971130744066],[125,-14,64,-0.03875172775817701],[125,-14,65,-0.034355106079039945],[125,-14,66,-0.051547247789188004],[125,-14,67,-0.04618459522526486],[125,-14,68,-0.03059324033987826],[125,-14,69,-0.012665487892725091],[125,-14,70,-0.03298103928322174],[125,-14,71,-0.055493196955397416],[125,-14,72,-0.06280495298573133],[125,-14,73,-0.07462269042248078],[125,-14,74,-0.11911511189407788],[125,-14,75,-0.13165275465563495],[125,-14,76,-0.10338930785830425],[125,-14,77,-0.08569799381437836],[125,-14,78,-0.0939711145577557],[125,-14,79,-0.1104939680485388],[125,-13,64,-0.03921329432019883],[125,-13,65,-0.03518728522472016],[125,-13,66,-0.051631225686776736],[125,-13,67,-0.04594849493907249],[125,-13,68,-0.030180505804407853],[125,-13,69,-0.01236566838630653],[125,-13,70,-0.032775472487030284],[125,-13,71,-0.05522396448857286],[125,-13,72,-0.06250846192724395],[125,-13,73,-0.07448708496250137],[125,-13,74,-0.1184533814311769],[125,-13,75,-0.13037133364339032],[125,-13,76,-0.10244626256345986],[125,-13,77,-0.08507749627107586],[125,-13,78,-0.09313264636111658],[125,-13,79,-0.10932785489143998],[125,-12,64,-0.0396632932528876],[125,-12,65,-0.035997415066141805],[125,-12,66,-0.05170431135493678],[125,-12,67,-0.045707533209841195],[125,-12,68,-0.029777419799142522],[125,-12,69,-0.012085688491014043],[125,-12,70,-0.032588346935496136],[125,-12,71,-0.05497544309105569],[125,-12,72,-0.06223465122519016],[125,-12,73,-0.07436615764310436],[125,-12,74,-0.11781342753849385],[125,-12,75,-0.12912865702891804],[125,-12,76,-0.10153400862690139],[125,-12,77,-0.08448007807838223],[125,-12,78,-0.09232424457772802],[125,-12,79,-0.10820150422912736],[125,-11,64,-0.04010297598753468],[125,-11,65,-0.03678677193527714],[125,-11,66,-0.05176714151153927],[125,-11,67,-0.045462061708194015],[125,-11,68,-0.029383509985908326],[125,-11,69,-0.011824354186636105],[125,-11,70,-0.032418886197539985],[125,-11,71,-0.05474762423806707],[125,-11,72,-0.061983758972768845],[125,-11,73,-0.07426053233518887],[125,-11,74,-0.11719582817352402],[125,-11,75,-0.12792438583251464],[125,-11,76,-0.10065183773053021],[125,-11,77,-0.08390524791911999],[125,-11,78,-0.0915459139325329],[125,-11,79,-0.1071149839848923],[125,-10,64,-0.04053352149625768],[125,-10,65,-0.03755659506373458],[125,-10,66,-0.05182036695017917],[125,-10,67,-0.04521245012681479],[125,-10,68,-0.028998347177556956],[125,-10,69,-0.011580545424626094],[125,-10,70,-0.03226636044915548],[125,-10,71,-0.054540477256119],[125,-10,72,-0.06175598416850056],[125,-10,73,-0.0741707968457516],[125,-10,74,-0.11660113542289283],[125,-10,75,-0.12675819855796178],[125,-10,76,-0.09979910090958102],[125,-10,77,-0.08335256484140832],[125,-10,78,-0.09079764562518673],[125,-10,79,-0.10606832452560559],[125,-9,64,-0.04095604054858353],[125,-9,65,-0.03830808795278882],[125,-9,66,-0.05186464987540286],[125,-9,67,-0.04495908343948988],[125,-9,68,-0.028621543125420028],[125,-9,69,-0.011353213764315263],[125,-9,70,-0.03213008578387018],[125,-9,71,-0.05435395298197701],[125,-9,72,-0.061551491306987414],[125,-9,73,-0.074097505823216],[125,-9,74,-0.11602987710437267],[125,-9,75,-0.1256297908052833],[125,-9,76,-0.09897520486561201],[125,-9,77,-0.08282163474448719],[125,-9,78,-0.09007941903889637],[125,-9,79,-0.10506152284576349],[125,-8,64,-0.04137158100380129],[125,-8,65,-0.03904242036643548],[125,-8,66,-0.05190066104905584],[125,-8,67,-0.04470235874413095],[125,-8,68,-0.028252747060498427],[125,-8,69,-0.011141378356428432],[125,-8,70,-0.03200942228377269],[125,-8,71,-0.05418798712365756],[125,-8,72,-0.06137041501797423],[125,-8,73,-0.07404118415576258],[125,-8,74,-0.11548255839858089],[125,-8,75,-0.12453887411002033],[125,-8,76,-0.09817960760871403],[125,-8,77,-0.0823121066840148],[125,-8,78,-0.08939120338358206],[125,-8,79,-0.10409454637094243],[125,-7,64,-0.04178113276491509],[125,-7,65,-0.03976073020017752],[125,-7,66,-0.05192907717171006],[125,-7,67,-0.04444268237047849],[125,-7,68,-0.02789164246413952],[125,-7,69,-0.01094412212361027],[125,-7,70,-0.03190377213871559],[125,-7,71,-0.05404250334365438],[125,-7,72,-0.06121286436792568],[125,-7,73,-0.07400233015404702],[125,-7,74,-0.11495966341422219],[125,-7,75,-0.12348517488192674],[125,-7,76,-0.09741181438803749],[125,-7,77,-0.0818236694185223],[125,-7,78,-0.0887329592460279],[125,-7,79,-0.10316733653429905],[125,-6,64,-0.042185632409783555],[125,-6,65,-0.04046412523249707],[125,-6,66,-0.051950578488826435],[125,-6,67,-0.044180467240158866],[125,-6,68,-0.027537944058401275],[125,-6,69,-0.010760588131233297],[125,-6,70,-0.03181257781466498],[125,-6,71,-0.05391741607935919],[125,-6,72,-0.06107892684067864],[125,-6,73,-0.07398141852829312],[125,-6,74,-0.11446165668927939],[125,-6,75,-0.12246843343802598],[125,-6,76,-0.0966713738978064],[125,-6,77,-0.08135604818658107],[125,-6,78,-0.08810464005083372],[125,-6,79,-0.1022798121354398],[125,-5,64,-0.04258596751478611],[125,-5,65,-0.0411536847657682],[125,-5,66,-0.051965846611393605],[125,-5,67,-0.04391613046692701],[125,-5,68,-0.02719139500643087],[125,-5,69,-0.010589976141811617],[125,-5,70,-0.03173532027198705],[125,-5,71,-0.05381263311525259],[125,-5,72,-0.060968672013383136],[125,-5,73,-0.07397890316953068],[125,-5,74,-0.11398898463043684],[125,-5,75,-0.12148840312498685],[125,-5,76,-0.0959578747460986],[125,-5,77,-0.0809090017042951],[125,-5,78,-0.08750619343587838],[125,-5,79,-0.10143187249083226],[125,-4,64,-0.0429829806859464],[125,-4,65,-0.04183046116301026],[125,-4,66,-0.05197556254076222],[125,-4,67,-0.04365009118499532],[125,-4,68,-0.026851764313229658],[125,-4,69,-0.010431539346308426],[125,-4,70,-0.03167151723418618],[125,-4,71,-0.05372805792092957],[125,-4,72,-0.06088215494347141],[125,-4,73,-0.07399521974441492],[125,-4,74,-0.1135420768928114],[125,-4,75,-0.12054484952573484],[125,-4,76,-0.095270942173754],[125,-4,77,-0.08048231937276332],[125,-4,78,-0.0869375625458489],[125,-4,79,-0.10062340038471337],[125,-3,64,-0.04337747331223829],[125,-3,65,-0.042495481286776014],[125,-3,66,-0.05198040488765461],[125,-3,67,-0.0433827685936879],[125,-3,68,-0.02651884441746602],[125,-3,69,-0.010284581265817308],[125,-3,70,-0.031620721507548466],[125,-3,71,-0.05366359176868119],[125,-3,72,-0.06081941928207214],[125,-3,73,-0.07403078811289744],[125,-3,74,-0.1131213477020448],[125,-3,75,-0.11963754974535924],[125,-3,76,-0.09461023501104995],[125,-3,77,-0.08007581868537249],[125,-3,78,-0.08639868724735428],[125,-3,79,-0.09985426482933023],[125,-2,64,-0.043770209055418494],[125,-2,65,-0.04314974784619187],[125,-2,66,-0.051981048275460164],[125,-2,67,-0.04311458020688347],[125,-2,68,-0.026192448965179055],[125,-2,69,-0.010148452817183191],[125,-2,70,-0.03158251935197257],[125,-2,71,-0.053619135643880954],[125,-2,72,-0.060780500128827394],[125,-2,73,-0.07408601457772238],[125,-2,74,-0.11272719712068047],[125,-2,75,-0.11876629177144564],[125,-2,76,-0.09397544286001587],[125,-2,77,-0.07968934282494886],[125,-2,78,-0.08588950526904485],[125,-2,79,-0.09912432364316014],[125,-1,64,-0.044161917090255944],[125,-1,65,-0.04379424065782402],[125,-1,66,-0.051978161918022805],[125,-1,67,-0.042845940295899505],[125,-1,68,-0.025872410756352358],[125,-1,69,-0.010022549536159714],[125,-1,70,-0.03155652890303722],[125,-1,71,-0.05359459196086322],[125,-1,72,-0.06076542664251753],[125,-1,73,-0.07416129397434444],[125,-1,74,-0.11236001226055692],[125,-1,75,-0.11793087390398263],[125,-1,76,-0.09336628349044908],[125,-1,77,-0.07932275844092437],[125,-1,78,-0.08540995326997616],[125,-1,79,-0.0984334258554638],[125,0,64,-0.0445532951087179],[125,0,65,-0.044429917825888454],[125,0,66,-0.05197240836243188],[125,0,67,-0.042577258514863804],[125,0,68,-0.025558579855668857],[125,0,69,-0.009906308951918229],[125,0,70,-0.031542398645304004],[125,0,71,-0.053589866096576816],[125,0,72,-0.060774224421485064],[125,0,73,-0.07425701160963616],[125,0,74,-0.11202016844292076],[125,0,75,-0.11713110425016952],[125,0,76,-0.09278250043805812],[125,0,77,-0.07897595359696034],[125,0,78,-0.08495996783941047],[125,0,79,-0.09778141394536374],[125,1,64,-0.04494501210122407],[125,1,65,-0.04505771684702567],[125,1,66,-0.0519644423875235],[125,1,67,-0.04230893869791719],[125,1,68,-0.02525082185899565],[125,1,69,-0.009799208106847928],[125,1,70,-0.03153980593671056],[125,1,71,-0.05360486775378706],[125,1,72,-0.06080691766733459],[125,1,73,-0.07437354505742139],[125,1,74,-0.11170803030784693],[125,1,75,-0.11636680027958037],[125,1,76,-0.09222386079348842],[125,1,77,-0.07864883587973133],[125,1,78,-0.08453948643115497],[125,1,79,-0.09716812592341648],[125,2,64,-0.045337710927559546],[125,2,65,-0.04567855564453248],[125,2,66,-0.051954910048975865],[125,2,67,-0.04204137781785766],[125,2,68,-0.024949016307342576],[125,2,69,-0.009700761215662185],[125,2,70,-0.03154845558371291],[125,2,71,-0.053639512165016306],[125,2,72,-0.060863531144778604],[125,2,73,-0.07451126581846455],[125,2,74,-0.11142395287437479],[125,2,75,-0.11563778843518598],[125,2,76,-0.09169015317123776],[125,2,77,-0.07834133065974687],[125,2,78,-0.08414844823533238],[125,2,79,-0.09659339726330513],[125,3,64,-0.04573201068965387],[125,3,65,-0.046293333536740956],[125,3,66,-0.05194444786220372],[125,3,67,-0.04177496509625782],[125,3,68,-0.024653055240391474],[125,3,69,-0.009610517458058004],[125,3,70,-0.031568078466798134],[125,3,71,-0.05369372114797878],[125,3,72,-0.06094409195004245],[125,3,73,-0.0746705408522821],[125,3,74,-0.11116828255274018],[125,3,75,-0.11494390379595242],[125,3,76,-0.09118118584790563],[125,3,77,-0.07805337949545217],[125,3,78,-0.08378679499044932],[125,3,79,-0.09605706269110967],[125,4,64,-0.04612850891795856],[125,4,65,-0.04690293214396379],[125,4,66,-0.051933682114523316],[125,4,67,-0.04151008125544817],[125,4,68,-0.02436284188197696],[125,4,69,-0.009528058899334908],[125,4,70,-0.03159843021588179],[125,4,71,-0.05376742402275204],[125,4,72,-0.0610486310996954],[125,4,73,-0.0748517339877984],[125,4,74,-0.11094135810998526],[125,4,75,-0.11428498978689004],[125,4,76,-0.09069678505959827],[125,4,77,-0.07778493867214513],[125,4,78,-0.0834544717385194],[125,4,79,-0.0955589578393472],[125,5,64,-0.04652778358260412],[125,5,65,-0.0475082162380889],[125,5,66,-0.051923228298265234],[125,5,67,-0.04124709790305818],[125,5,68,-0.024078289450122345],[125,5,69,-0.009452998533478595],[125,5,70,-0.03163928993493712],[125,5,71,-0.05386055840034361],[125,5,72,-0.061177184951155414],[125,5,73,-0.07505520721945115],[125,5,74,-0.11074351159006317],[125,5,75,-0.1136608979324979],[125,5,76,-0.0902367934486075],[125,5,77,-0.07753597786746982],[125,5,78,-0.083151427525802],[125,5,79,-0.09509892077262884],[125,6,64,-0.046930394940102295],[125,6,65,-0.04811003453870147],[125,6,66,-0.051913690656862306],[125,6,67,-0.0409863770402551],[125,6,68,-0.023799320084604052],[125,6,69,-0.00938497844345823],[125,6,70,-0.03169045897518718],[125,6,71,-0.0539730708518816],[125,6,72,-0.06132979646564309],[125,6,73,-0.07528132189507958],[125,6,74,-0.11057506918953644],[125,6,75,-0.11307148764980035],[125,6,76,-0.08980106864996941],[125,6,77,-0.0773064789356537],[125,6,78,-0.08287761605170098],[125,6,79,-0.09467679339160287],[125,7,64,-0.04733688722588315],[125,7,65,-0.04870922045936776],[125,7,66,-0.051905661836245315],[125,7,67,-0.04072827068521167],[125,7,68,-0.023525863885327028],[125,7,69,-0.009323668073669945],[125,7,70,-0.03175175975611927],[125,7,71,-0.05410491746715832],[125,7,72,-0.06150651632381405],[125,7,73,-0.07553043980158573],[125,7,74,-0.11043635208988564],[125,7,75,-0.11251662607732199],[125,7,76,-0.08938948200888858],[125,7,77,-0.0770964348029595],[125,7,78,-0.08263299626823929],[125,7,79,-0.09429242272156585],[125,8,64,-0.047747790202387556],[125,8,65,-0.04930659280737344],[125,8,66,-0.05189972263409356],[125,8,67,-0.04047312060364394],[125,8,68,-0.023257858055022576],[125,8,69,-0.009268762609565443],[125,8,70,-0.031823034633439246],[125,8,71,-0.05425606431069683],[125,8,72,-0.06170740390368972],[125,8,73,-0.07580292415394949],[125,8,74,-0.11032767724729517],[125,8,75,-0.1119961879364624],[125,8,76,-0.0890019174203651],[125,8,77,-0.0769058484670978],[125,8,78,-0.0824175329323687],[125,8,79,-0.09394566209180072],[125,9,64,-0.04816362057202981],[125,9,65,-0.04990295644003432],[125,9,66,-0.05189644183986417],[125,9,67,-0.040221258138723556],[125,9,68,-0.02299524614016269],[125,9,69,-0.009219981459763202],[125,9,70,-0.031904144813098945],[125,9,71,-0.054426487783103224],[125,9,72,-0.06193252813004486],[125,9,73,-0.076099140492913],[125,9,74,-0.11024935814077655],[125,9,75,-0.11151005542196937],[125,9,76,-0.088638270282837],[125,9,77,-0.07673473209374833],[125,9,78,-0.08223119711334119],[125,9,79,-0.09363637221150727],[125,10,64,-0.048584883263873745],[125,10,65,-0.05049910288046945],[125,10,66,-0.0518963761588385],[125,10,67,-0.03997300413306345],[125,10,68,-0.022737977364294084],[125,10,69,-0.009177066836129122],[125,10,70,-0.03199496931048443],[125,10,71,-0.05461617489500414],[125,10,72,-0.06218196820388914],[125,10,73,-0.07641945749632514],[125,10,74,-0.11020170547942919],[125,10,75,-0.11105811811838359],[125,10,76,-0.088298446558053],[125,10,77,-0.07658310620366089],[125,10,78,-0.08207396665725672],[125,10,79,-0.09336442214791424],[125,11,64,-0.049012072602309956],[125,11,65,-0.05109581089539763],[125,11,66,-0.05190007021364063],[125,11,67,-0.03972866893578429],[125,11,68,-0.022486006048226398],[125,11,69,-0.009139782427426208],[125,11,70,-0.03209540395373982],[125,11,71,-0.054825123460345834],[125,11,72,-0.062455814220098924],[125,11,73,-0.07676424770874539],[125,11,74,-0.11018502786949626],[125,11,75,-0.11064027293944527],[125,11,76,-0.08798236192974626],[125,11,77,-0.07645099894409861],[125,11,78,-0.08194582661076798],[125,11,79,-0.09312969021186289],[125,12,64,-0.049445673365647154],[125,12,65,-0.05169384703739256],[125,12,66,-0.05190805661708114],[125,12,67,-0.03948855248813544],[125,12,68,-0.022239291111891008],[125,12,69,-0.0091079121624008],[125,12,70,-0.03220536043025079],[125,12,71,-0.055053342215470716],[125,12,72,-0.06275416768083086],[125,12,73,-0.07713388819366845],[125,12,74,-0.11019963244189962],[125,12,75,-0.11025642408769315],[125,12,76,-0.08768994105414327],[125,12,77,-0.07633844543877098],[125,12,78,-0.08184676960587854],[125,12,79,-0.09293206475594691],[125,13,64,-0.04988616174206342],[125,13,65,-0.05229396615379453],[125,13,66,-0.051920856110463535],[125,13,67,-0.03925294448151144],[125,13,68,-0.021997795652976524],[125,13,69,-0.009081259058352132],[125,13,70,-0.032324765375282595],[125,13,71,-0.05530085086996042],[125,13,72,-0.0630771419118575],[125,13,73,-0.07752876111242236],[125,13,74,-0.11024582544086617],[125,13,75,-0.10990648303165838],[125,13,76,-0.08742111689574415],[125,13,77,-0.07624548721074505],[125,13,78,-0.08177679620769468],[125,13,79,-0.09277144489005686],[125,14,64,-0.05033400618986131],[125,14,65,-0.05289691186421073],[125,14,66,-0.051938977761733354],[125,14,67,-0.039022124582017266],[125,14,68,-0.021761486597681727],[125,14,69,-0.009059644151358858],[125,14,70,-0.03245355950169516],[125,14,71,-0.0555676800947741],[125,14,72,-0.0634248623884407],[125,14,73,-0.07794925423344076],[125,14,74,-0.11032391277416237],[125,14,75,-0.10959036849817771],[125,14,76,-0.08717583014215372],[125,14,77,-0.07617217167309788],[125,14,78,-0.08173591522685504],[125,14,79,-0.09264774111888152],[125,15,64,-0.05078966820863126],[125,15,65,-0.05350341700843608],[125,15,66,-0.05196291921823594],[125,15,67,-0.038796362716185695],[125,15,68,-0.02153033441930017],[125,15,69,-0.009042905504609167],[125,15,70,-0.032591696769742176],[125,15,71,-0.05585387145290908],[125,15,72,-0.06379746697698739],[125,15,73,-0.07839576137541414],[125,15,74,-0.11043420052548403],[125,15,75,-0.10930800647759319],[125,15,76,-0.08695402869219801],[125,15,77,-0.07611855168246462],[125,15,78,-0.08172414399834789],[125,15,79,-0.0925608759057505],[125,16,64,-0.051253603027439476],[125,16,65,-0.05411420406635727],[125,16,66,-0.05199316700906602],[125,16,67,-0.038575919412739176],[125,16,68,-0.021304312920566646],[125,16,69,-0.0090308972913979],[125,16,70,-0.032739143595896095],[125,16,71,-0.056159477277382006],[125,16,72,-0.06419510609823764],[125,16,73,-0.07886868278748978],[125,16,74,-0.11057699542945358],[125,16,75,-0.10905933023972493],[125,16,76,-0.08675566721189822],[125,16,77,-0.07608468515091747],[125,16,78,-0.08174150862831847],[125,16,79,-0.0925107841669419],[125,17,64,-0.05172626021583814],[125,17,65,-0.05472998555131778],[125,17,66,-0.05203019689235123],[125,17,67,-0.03836104619569841],[125,17,68,-0.021083399076033703],[125,17,69,-0.009023488949602103],[125,17,70,-0.03289587809972549],[125,17,71,-0.05648456050105738],[125,17,72,-0.0646179428173946],[125,17,73,-0.07936842546950863],[125,17,74,-0.11075260530971122],[125,17,75,-0.1088442803587268],[125,17,76,-0.08658070675329123],[125,17,77,-0.07607063471196501],[125,17,78,-0.0817880442104433],[125,17,79,-0.09249741370040504],[125,18,64,-0.05220808422301176],[125,18,65,-0.055351464378161734],[125,18,66,-0.05207447424302098],[125,18,67,-0.03815198602441254],[125,18,68,-0.02086757293095361],[125,18,69,-0.009020564404567288],[125,18,70,-0.033061889387801115],[125,18,71,-0.05682919444243362],[125,18,72,-0.06506615286611726],[125,18,73,-0.07989540343493184],[125,18,74,-0.11096133948047388],[125,18,75,-0.10866280474502889],[125,18,76,-0.08642911443139913],[125,18,77,-0.07607646743672461],[125,18,78,-0.08186379501332466],[125,18,79,-0.09252072555257794],[125,19,64,-0.052699514850102],[125,19,65,-0.05597933420710424],[125,19,66,-0.052126454476928236],[125,19,67,-0.03794897377644845],[125,19,68,-0.020656817553434938],[125,19,69,-0.00902202135754832],[125,19,70,-0.03323717687369076],[125,19,71,-0.05719346255128609],[125,19,72,-0.06553992460102288],[125,19,73,-0.08045003791897241],[125,19,74,-0.11120350911199492],[125,19,75,-0.10851485868279151],[125,19,76,-0.08630086315503836],[125,19,77,-0.07610225459665707],[125,19,78,-0.08196881464036872],[125,19,79,-0.09258069432685338],[125,20,64,-0.053200987660381074],[125,20,65,-0.056614279764433104],[125,20,66,-0.05218658350748406],[125,20,67,-0.037752236769615456],[125,20,68,-0.020451119036922052],[125,20,69,-0.009027770637057977],[125,20,70,-0.03342174963315452],[125,20,71,-0.05757745811775826],[125,20,72,-0.06603945890296344],[125,20,73,-0.081032757534211],[125,20,74,-0.11147942756032667],[125,20,75,-0.10840040487145056],[125,20,76,-0.08619593140751854],[125,20,77,-0.0761480714695616],[125,20,78,-0.08210316616354198],[125,20,79,-0.09267730843703759],[125,21,64,-0.05371293433156304],[125,21,65,-0.05725697714085454],[125,21,66,-0.05225529823114336],[125,21,67,-0.03756199531962746],[125,21,68,-0.020250466550214462],[125,21,69,-0.009037735610572018],[125,21,70,-0.03361562579363164],[125,21,71,-0.05798128394819257],[125,21,72,-0.06656496902097647],[125,21,73,-0.08164399837573058],[125,21,74,-0.1117894106617263],[125,21,75,-0.10831941347003715],[125,21,76,-0.08611430307355604],[125,21,77,-0.07621399718575975],[125,21,78,-0.08226692223232447],[125,21,79,-0.09281057030894117],[125,22,64,-0.054235782954298484],[125,22,65,-0.05790809406825871],[125,22,66,-0.05233302703840212],[125,22,67,-0.037378463330259175],[125,22,68,-0.020054852432539055],[125,22,69,-0.009051851654278645],[125,22,70,-0.033818831957231274],[125,22,71,-0.05840505201081052],[125,22,72,-0.06711668036456082],[125,22,73,-0.08228420407768414],[125,22,74,-0.1121337769921043],[125,22,75,-0.10827186214315217],[125,22,76,-0.08605596730909454],[125,22,77,-0.07630011461172329],[125,22,78,-0.08246016515917448],[125,22,79,-0.09298049653311144],[125,23,64,-0.054769958280592154],[125,23,65,-0.058568290175562046],[125,23,66,-0.052420190347196506],[125,23,67,-0.03720184891311689],[125,23,68,-0.019864272331404066],[125,23,69,-0.0090700656787196],[125,23,70,-0.03403140265649192],[125,23,71,-0.058848883054131634],[125,23,72,-0.06769483024764028],[125,23,73,-0.08295382582303269],[125,23,74,-0.11251284809190266],[125,23,75,-0.10825773610762242],[125,23,76,-0.08602091845103396],[125,23,77,-0.07640651026866974],[125,23,78,-0.08268298698279325],[125,23,79,-0.09318711797156629],[125,24,64,-0.05531588192555917],[125,24,65,-0.059238217224142735],[125,24,66,-0.05251720115576921],[125,24,67,-0.037032355034352135],[125,24,68,-0.019678725381123786],[125,24,69,-0.00909233570828355],[125,24,70,-0.03425337984219141],[125,24,71,-0.059312906200773424],[125,24,72,-0.06829966758726733],[125,24,73,-0.08365332230798692],[125,24,74,-0.1129269486567454],[125,24,75,-0.1082770281789475],[125,24,76,-0.0860091559641133],[125,24,77,-0.07653327428385959],[125,24,78,-0.08293548951039675],[125,24,79,-0.09343047982119303],[125,25,64,-0.05587397252574364],[125,25,65,-0.05991851932337494],[125,25,66,-0.05262446561235267],[125,25,67,-0.03687018018594634],[125,25,68,-0.019498214420158217],[125,25,69,-0.00911863051272734],[125,25,70,-0.03448481240262202],[125,25,71,-0.05979725851916126],[125,25,72,-0.06893145255994179],[125,25,73,-0.08438315966261357],[125,25,74,-0.11337640669427293],[125,25,75,-0.10832973881683475],[125,25,76,-0.08602068442251726],[125,25,77,-0.07668050037261959],[125,25,78,-0.08321778434022122],[125,25,79,-0.09371064163638551],[125,26,64,-0.05644464585696788],[125,26,65,-0.06060983312667317],[125,26,66,-0.0527423835992083],[125,26,67,-0.03671551907941295],[125,26,68,-0.01932274624559106],[125,26,69,-0.009148929289044762],[125,26,70,-0.03472575571380945],[125,26,71,-0.060302084575508806],[125,26,72,-0.06959045621819053],[125,26,73,-0.08514381132892349],[125,26,74,-0.11386155364756856],[125,26,75,-0.10841587616923838],[125,26,76,-0.08605551352404826],[125,26,77,-0.07684828584935904],[125,26,78,-0.08352999286547477],[125,26,79,-0.09402767731337008],[125,27,64,-0.05702831491443411],[125,27,65,-0.06131278800838078],[125,27,66,-0.05287134932872613],[125,27,67,-0.03656856335993427],[125,27,68,-0.019152331903206643],[125,27,69,-0.009183221392113805],[125,27,70,-0.03497627122020546],[125,27,71,-0.0608275359682631],[125,27,72,-0.07027696006982706],[125,27,73,-0.08593575789762568],[125,27,74,-0.11438272448557024],[125,27,75,-0.10853545611439905],[125,27,76,-0.08611365813490318],[125,27,77,-0.07703673166601864],[125,27,78,-0.08387224626087603],[125,27,79,-0.09438167503850232],[125,28,64,-0.05762538995763527],[125,28,65,-0.062028006221821176],[125,28,66,-0.05301175194951431],[125,28,67,-0.03642950233918956],[125,28,68,-0.01898698701183049],[125,28,69,-0.009221506112740148],[125,28,70,-0.03523642604551005],[125,28,71,-0.061373770847132914],[125,28,72,-0.07099125562217853],[125,28,73,-0.08675948690467325],[125,28,74,-0.11494025776091754],[125,28,75,-0.10868850230053102],[125,28,76,-0.0861951383633807],[125,28,77,-0.0772459424766532],[125,28,78,-0.08424468545295748],[125,28,79,-0.09477273720275654],[125,29,64,-0.05823627852245797],[125,29,65,-0.06275610303880211],[125,29,66,-0.053163976160583326],[125,29,67,-0.03629852374531134],[125,29,68,-0.018826732120755932],[125,29,69,-0.009263792501855843],[125,29,70,-0.03550629263337821],[125,29,71,-0.06194095341872985],[125,29,72,-0.07173364389342117],[125,29,73,-0.08761549258865416],[125,29,74,-0.11553449563571412],[125,29,75,-0.10887504618292262],[125,29,76,-0.08629997966107146],[125,29,77,-0.07747602672705874],[125,29,78,-0.08464746107530767],[125,29,79,-0.09520098028453781],[125,30,64,-0.05886138540265276],[125,30,65,-0.06349768687079752],[125,30,66,-0.053328402831850925],[125,30,67,-0.03617581448852357],[125,30,68,-0.018671593099167893],[125,30,69,-0.009310099239720366],[125,30,70,-0.0357859484178153],[125,30,71,-0.06252925344072904],[125,30,72,-0.07250443489299414],[125,30,73,-0.08850427560997638],[125,30,74,-0.11616578387566712],[125,30,75,-0.10909512705825698],[125,30,76,-0.08642821295023435],[125,30,77,-0.07772709676848354],[125,30,78,-0.08508073340985849],[125,30,79,-0.09566653470279471],[125,31,64,-0.059501112602741345],[125,31,65,-0.06425335937205193],[125,31,66,-0.053505409629385034],[125,31,67,-0.03606156144120831],[125,31,68,-0.018521601556651248],[125,31,69,-0.009360454549144678],[125,31,70,-0.03607547552320901],[125,31,71,-0.06313884570644296],[125,31,72,-0.07330394707299502],[125,31,73,-0.0894263427327869],[125,31,74,-0.11683447181313954],[125,31,75,-0.10934879209611309],[125,31,76,-0.08657987477631424],[125,31,77,-0.07799926899470666],[125,31,78,-0.08554467231538818],[125,31,79,-0.09616954464239662],[125,32,64,-0.06015585926431223],[125,32,65,-0.06502371552485935],[125,32,66,-0.05369537164394594],[125,32,67,-0.035955952231276116],[125,32,68,-0.018376795293982565],[125,32,69,-0.009414896151881595],[125,32,70,-0.0363749604940516],[125,32,71,-0.06376990952166403],[125,32,72,-0.07413250675237905],[125,32,73,-0.09038220647053889],[125,32,74,-0.11754091227969138],[125,32,75,-0.10963609636768219],[125,32,76,-0.0867550074847225],[125,32,77,-0.0782926640019154],[125,32,78,-0.08603945714439067],[125,32,79,-0.09671016785364742],[125,33,64,-0.06082602156749048],[125,33,65,-0.0658093437072198],[125,33,66,-0.053898662021467564],[125,33,67,-0.03585917604778328],[125,33,68,-0.018237218783460286],[125,33,69,-0.009473471267397289],[125,33,70,-0.03668449405446406],[125,33,71,-0.06442262817556059],[125,33,72,-0.07499044751566919],[125,33,73,-0.09137238469605108],[125,33,74,-0.11828546150867093],[125,33,75,-0.10995710287177615],[125,33,76,-0.08695365942112529],[125,33,77,-0.07860740677093206],[125,33,78,-0.08656527664943038],[125,33,79,-0.09728857542770727],[125,34,64,-0.06151199260932429],[125,34,65,-0.06661082574313622],[125,34,66,-0.054115652594278335],[125,34,67,-0.03577142445788084],[125,34,68,-0.018102923678161527],[125,34,69,-0.009536236653392875],[125,34,70,-0.037004170897785106],[125,34,71,-0.06509718840744821],[125,34,72,-0.07587810958787945],[125,34,73,-0.09239740021694264],[125,34,74,-0.11906847900850542],[125,34,75,-0.11031188255831853],[125,34,76,-0.0871758851546779],[125,34,77,-0.07894362687152875],[125,34,78,-0.0871223288801528],[125,34,79,-0.09790495154968132],[125,35,64,-0.062214162260747836],[125,35,65,-0.0674287369358389],[125,35,66,-0.054346714511965905],[125,35,67,-0.035692892234256826],[125,35,68,-0.0179739693495867],[125,35,69,-0.009603258687548645],[125,35,70,-0.037334089506595315],[125,35,71,-0.0657937798712646],[125,35,72,-0.07679583918732825],[125,35,73,-0.09345778031733758],[125,35,74,-0.11989032740738223],[125,35,75,-0.11070051434957176],[125,35,76,-0.08742174572376842],[125,35,77,-0.07930145868868284],[125,35,78,-0.0877108210721116],[125,35,79,-0.09855949323107488],[125,36,64,-0.06293291700366906],[125,36,65,-0.0682636460841987],[125,36,66,-0.05459221887083177],[125,36,67,-0.03562377819225409],[125,36,68,-0.017850423453169468],[125,36,69,-0.009674613490011787],[125,36,70,-0.037674352003605464],[125,36,71,-0.06651259459954799],[125,36,72,-0.07774398785795344],[125,36,73,-0.09455405626669909],[125,36,74,-0.1207513722700062],[125,36,75,-0.11112308515937062],[125,36,76,-0.08769130890391434],[125,36,77,-0.07968104167071517],[125,36,78,-0.08833096952855733],[125,36,79,-0.09925241002323586],[125,37,64,-0.06366863974973172],[125,37,65,-0.06911611548268615],[125,37,66,-0.05485253734101254],[125,37,67,-0.03556428603593637],[125,37,68,-0.01773236252122366],[125,37,69,-0.009750387086286573],[125,37,70,-0.03802506403399509],[125,37,71,-0.06725382646880318],[125,37,72,-0.0787229117828017],[125,37,73,-0.09568676279674308],[125,37,74,-0.12165198188721958],[125,37,75,-0.11157968991072685],[125,37,76,-0.0879846494976004],[125,37,77,-0.08008252059938642],[125,37,78,-0.0889829994963696],[125,37,79,-0.09998392371340675],[125,38,64,-0.06442170964225016],[125,38,65,-0.06998670090525393],[125,38,66,-0.05512804279039712],[125,38,67,-0.035514625212396185],[125,38,68,-0.017619872582924925],[125,38,69,-0.009830675610257978],[125,38,70,-0.0383863346798822],[125,38,71,-0.06801767066817103],[125,38,72,-0.07973297108036682],[125,38,73,-0.09685643754740487],[125,38,74,-0.12259252703929809],[125,38,75,-0.11207043155220024],[125,38,76,-0.08830184964592178],[125,38,77,-0.08050604588211677],[125,38,78,-0.08966714503732295],[125,38,79,-0.10075426800496824],[125,39,64,-0.06519250184275728],[125,39,65,-0.0708759515735407],[125,39,66,-0.055419109904489616],[125,39,67,-0.03547501177357697],[125,39,68,-0.01751304981090829],[125,39,69,-0.009915585547114837],[125,39,70,-0.03875827640767117],[125,39,71,-0.06880432317333775],[125,39,72,-0.08077452908545589],[125,39,73,-0.09806362048285631],[125,39,74,-0.12357338073375666],[125,39,75,-0.11259542107343552],[125,39,76,-0.08864299916194057],[125,39,77,-0.08095177386653508],[125,39,78,-0.09038364889585536],[125,39,79,-0.10156368818339992],[125,40,64,-0.06598138730363913],[125,40,65,-0.07178441010989245],[125,40,66,-0.055726115801455804],[125,40,67,-0.0354456692449199],[125,40,68,-0.017412001194113912],[125,40,69,-0.010005234016051799],[125,40,70,-0.03914100504917356],[125,40,71,-0.06961398022772902],[125,40,72,-0.08184795161635565],[125,40,73,-0.09930885327868079],[125,40,74,-0.12459491791858843],[125,40,75,-0.11315477752032929],[125,40,76,-0.0890081958857526],[125,40,77,-0.08141986717766111],[125,40,78,-0.09113276236454448],[125,40,79,-0.10241244076949135],[125,41,64,-0.06678873252828664],[125,41,65,-0.07271261247571266],[125,41,66,-0.05604944064158186],[125,41,67,-0.03542682950009466],[125,41,68,-0.017316845236471527],[125,41,69,-0.010099749092643193],[125,41,70,-0.03953463981745238],[125,41,71,-0.07044683783306921],[125,41,72,-0.08295360623009321],[125,41,73,-0.10059267868134725],[125,41,74,-0.12565751517187393],[125,41,75,-0.11374862801028056],[125,41,76,-0.08939754606128004],[125,41,77,-0.08191049507805415],[125,41,78,-0.09191474514849197],[125,41,79,-0.1033007931613013],[125,42,64,-0.0676148993202365],[125,42,65,-0.07366108789575235],[125,42,66,-0.05638946823042563],[125,42,67,-0.03541873364106341],[125,42,68,-0.017227712681020857],[125,42,69,-0.010199270170864567],[125,42,70,-0.039939303358464774],[125,42,71,-0.07130309125149355],[125,42,72,-0.08409186146769142],[125,42,73,-0.10191563984124084],[125,42,74,-0.12676155036877468],[125,42,75,-0.11437710774801246],[125,42,76,-0.08981116473485175],[125,42,77,-0.08242383385131029],[125,42,78,-0.0927298652298318],[125,42,79,-0.1042290232663584],[125,43,64,-0.06846024452274396],[125,43,65,-0.07463035876896856],[125,43,66,-0.05674658661490061],[125,43,67,-0.03542163288263563],[125,43,68,-0.017144747258987885],[125,43,69,-0.01030394836472654],[125,43,70,-0.04035512183961951],[125,43,71,-0.07218293452144409],[125,43,72,-0.08526308609135758],[125,43,73,-0.10327827962055477],[125,43,74,-0.1279074023269315],[125,43,75,-0.11504036004241419],[125,43,76,-0.09024917617560267],[125,43,77,-0.08296006720927862],[125,43,78,-0.09357839873355044],[125,43,79,-0.10519741912555178],[125,44,64,-0.06932511975028158],[125,44,65,-0.07562094056667468],[125,44,66,-0.05712118867155856],[125,44,67,-0.03543578944063298],[125,44,68,-0.01706810646331778],[125,44,69,-0.010413946949544249],[125,44,70,-0.040782225076474325],[125,44,71,-0.07308655998969456],[125,44,72,-0.08646764831566377],[125,44,73,-0.10468113987747008],[125,44,74,-0.12909545043135956],[125,44,75,-0.11573853632487376],[125,44,76,-0.09071171431775579],[125,44,77,-0.08351938672340571],[125,44,78,-0.09446062979584059],[125,44,79,-0.10620627853017929],[125,45,64,-0.07020987111349462],[125,45,65,-0.07663334171878414],[125,45,66,-0.05751367268632093],[125,45,67,-0.035461477422702045],[125,45,68,-0.016997962346101344],[125,45,69,-0.010529441842883396],[125,45,70,-0.04122074669887192],[125,45,71,-0.07401415786194392],[125,45,72,-0.0877059150348859],[125,45,73,-0.10612476072817034],[125,45,74,-0.13032607423998926],[125,45,75,-0.1164717961695631],[125,45,76,-0.0911989232248232],[125,45,77,-0.08410199228060392],[125,45,78,-0.09537685043620098],[125,45,79,-0.1072559086336048],[125,46,64,-0.07111483893912657],[125,46,65,-0.07766806348896237],[125,46,66,-0.057924442924835215],[125,46,67,-0.03549898372067557],[125,46,68,-0.01693450233921538],[125,46,69,-0.010650622125183551],[125,46,70,-0.041670824357829574],[125,46,71,-0.0749659157744618],[125,46,72,-0.08897825104871879],[125,46,73,-0.10760967978828244],[125,46,74,-0.13159965307098617],[125,46,75,-0.11724030731606269],[125,46,76,-0.09171095757569458],[125,46,77,-0.08470809256398819],[125,46,78,-0.09632736043445987],[125,46,79,-0.10834662555893734],[125,47,64,-0.0720403481981293],[125,47,65,-0.07872559052668417],[125,47,66,-0.058353900855084316],[125,47,67,-0.03554859954107728],[125,47,68,-0.016877920710461954],[125,47,69,-0.01077768118829026],[125,47,70,-0.04213259053788713],[125,47,71,-0.07594200892771184],[125,47,72,-0.09028500880198959],[125,47,73,-0.1091364218835949],[125,47,74,-0.13291655603591512],[125,47,75,-0.11804423613222222],[125,47,76,-0.09224797358462317],[125,47,77,-0.08533789594533951],[125,47,78,-0.0973124575748054],[125,47,79,-0.10947874433931151],[125,48,64,-0.07298660089196046],[125,48,65,-0.07980628305587487],[125,48,66,-0.05880233768942256],[125,48,67,-0.03561051294891623],[125,48,68,-0.016828310738214246],[125,48,69,-0.01091070830214808],[125,48,70,-0.042606063471962274],[125,48,71,-0.07694248998457454],[125,48,72,-0.09162641754404416],[125,48,73,-0.11070538783731815],[125,48,74,-0.1342770308265422],[125,48,75,-0.11888363652421785],[125,48,76,-0.09281001806059831],[125,48,77,-0.08599149919310664],[125,48,78,-0.09833232535837093],[125,48,79,-0.11065246598833595],[125,49,64,-0.07395370318441745],[125,49,65,-0.08091040402504054],[125,49,66,-0.059269962108071575],[125,49,67,-0.03568483682652437],[125,49,68,-0.01678569254824845],[125,49,69,-0.011049716087073164],[125,49,70,-0.04309117419190592],[125,49,71,-0.07796731531353927],[125,49,72,-0.09300260903556838],[125,49,73,-0.1123168800104162],[125,49,74,-0.13568122948238115],[125,49,75,-0.11975847607320876],[125,49,76,-0.09339705494038193],[125,49,77,-0.08666891388817295],[125,49,78,-0.09938705863732343],[125,49,79,-0.11186790271598358],[125,50,64,-0.07494173599742632],[125,50,65,-0.08203818993742906],[125,50,66,-0.05975697188209589],[125,50,67,-0.03577168096723391],[125,50,68,-0.016750085336042296],[125,50,69,-0.011194712619395244],[125,50,70,-0.043587838447938024],[125,50,71,-0.07901641631547981],[125,50,72,-0.09441368854551602],[125,50,73,-0.11397117334127763],[125,50,74,-0.13712927988856616],[125,50,75,-0.12066870815097103],[125,50,76,-0.09400903805058843],[125,50,77,-0.08737013930627253],[125,50,78,-0.10047673593283764],[125,50,79,-0.11312515005443394],[125,51,64,-0.0759507553712512],[125,51,65,-0.08318985130446016],[125,51,66,-0.06026355497917053],[125,51,67,-0.03587115352787601],[125,51,68,-0.01672150883929669],[125,51,69,-0.011345702675503106],[125,51,70,-0.04409595764167496],[125,51,71,-0.08008969961708942],[125,51,72,-0.09585973455687986],[125,51,73,-0.1156685149374363],[125,51,74,-0.13862128568925025],[125,51,75,-0.1216142723307185],[125,51,76,-0.09464591204542627],[125,51,77,-0.0880951633438894],[125,51,78,-0.10160141964341529],[125,51,79,-0.11442428672793746],[125,52,64,-0.07698079141414563],[125,52,65,-0.08436557167535942],[125,52,66,-0.06078988923128552],[125,52,67,-0.035983361047315025],[125,52,68,-0.01669998339749682],[125,52,69,-0.011502687581679693],[125,52,70,-0.04461541837150636],[125,52,71,-0.0811870458613171],[125,52,72,-0.097340797042125],[125,52,73,-0.11740912221057066],[125,52,74,-0.14015732473830828],[125,52,75,-0.12259509334571461],[125,52,76,-0.09530761190477059],[125,52,77,-0.08884396200605899],[125,52,78,-0.10276115479702938],[125,52,79,-0.11576537305511761],[125,53,64,-0.07803184721477721],[125,53,65,-0.08556550661886028],[125,53,66,-0.06133614194077391],[125,53,67,-0.036108408409689395],[125,53,68,-0.01668552998085236],[125,53,69,-0.011665665056480418],[125,53,70,-0.045146091981950506],[125,53,71,-0.08230830849117872],[125,53,72,-0.0988568957078319],[125,53,73,-0.11919318095691699],[125,53,74,-0.14173744749158232],[125,53,75,-0.12361108000174985],[125,53,76,-0.09599406240120027],[125,53,77,-0.08961649886840894],[125,53,78,-0.10395596776387905],[125,53,79,-0.11714844930407244],[125,54,64,-0.07910389772190841],[125,54,65,-0.08678978266087689],[125,54,66,-0.06190246942582273],[125,54,67,-0.03624639875258465],[125,54,68,-0.016678170189383536],[125,54,69,-0.011834629047774024],[125,54,70,-0.04568783412087487],[125,54,71,-0.08345331253247813],[125,54,72,-0.10040801821413986],[125,54,73,-0.12102084338809738],[125,54,74,-0.14336167534446967],[125,54,75,-0.1246621240458144],[125,54,76,-0.09670517753761315],[125,54,77,-0.090412724515527],[125,54,78,-0.10518586493310907],[125,54,79,-0.11857353400396221],[125,55,64,-0.0801968885959528],[125,55,65,-0.0880384961822026],[125,55,66,-0.0624890165066216],[125,55,67,-0.03639743332027141],[125,55,68,-0.01667792622284339],[125,55,69,-0.012009569566572297],[125,55,70,-0.046240484308531005],[125,55,71,-0.08462185338113601],[125,55,72,-0.10199411837482233],[125,55,73,-0.12289222611762322],[125,55,74,-0.14502999891881702],[125,55,75,-0.12574809899335002],[125,55,76,-0.09744085995702506],[125,55,77,-0.0912325759577451],[125,55,78,-0.10645083135694232],[125,55,79,-0.12004062221689585],[125,56,64,-0.08131073503723096],[125,56,65,-0.08931171228049925],[125,56,66,-0.06309591593337376],[125,56,67,-0.03656161126214238],[125,56,68,-0.0166848208221747],[125,56,69,-0.012190472519857054],[125,56,70,-0.046803865522484646],[125,56,71,-0.08581369560104368],[125,56,72,-0.10361511434411541],[125,56,73,-0.12480740810864852],[125,56,74,-0.14674237630329318],[125,56,75,-0.12686885891658814],[125,56,76,-0.09820100032623856],[125,56,77,-0.09207597602852889],[125,56,78,-0.10775082936586838],[125,56,79,-0.12154968377415638],[125,57,64,-0.08244532059594882],[125,57,65,-0.0906094636010527],[125,57,66,-0.06372328775745449],[125,57,67,-0.036739029376446644],[125,57,68,-0.01669887718317232],[125,57,69,-0.012377319544664507],[125,57,70,-0.047377783802621025],[125,57,71,-0.08702857173856378],[125,57,72,-0.10527088679672165],[125,57,73,-0.12676642858887183],[125,57,74,-0.148498731251644],[125,57,75,-0.1280242371965963],[125,57,76,-0.09898547669510813],[125,57,77,-0.09294283276470758],[125,57,78,-0.10908579715867449],[125,57,79,-0.1231006614809936],[125,58,64,-0.08360049596906687],[125,58,65,-0.09193174914092087],[125,58,66,-0.06437123864701567],[125,58,67,-0.036929781799363355],[125,58,68,-0.01672011884296731],[125,58,69,-0.012570087845695308],[125,58,70,-0.047962027880449745],[125,58,71,-0.08826618115993645],[125,58,72,-0.1069612771076299],[125,58,73,-0.12876928493874032],[125,58,74,-0.15029895134337867],[125,58,75,-0.12921404524171187],[125,58,76,-0.09979415383313128],[125,58,77,-0.09383303877179439],[125,58,78,-0.11045564737122335],[125,58,79,-0.12469346929435815],[125,59,64,-0.08477607778947308],[125,59,65,-0.09327853303135289],[125,59,66,-0.0650398611484513],[125,59,67,-0.037133959639489324],[125,59,68,-0.016748569539976506],[125,59,69,-0.01276875003880701],[125,59,70,-0.048556368837057946],[125,59,71,-0.08952618891808058],[125,59,72,-0.10868608553872301],[125,59,73,-0.13081593055946497],[125,59,74,-0.15214288611170956],[125,59,75,-0.1304380711752096],[125,59,76,-0.10062688254519515],[125,59,77,-0.09474647057675326],[125,59,78,-0.11186026562808961],[125,59,79,-0.12632799047821153],[125,60,64,-0.08597184741307641],[125,60,65,-0.09464974330357133],[125,60,66,-0.06572923289522234],[125,60,67,-0.03735165055781813],[125,60,68,-0.016784253047955628],[125,60,69,-0.01297327400279303],[125,60,70,-0.04916055979413377],[125,60,71,-0.09080822465545002],[125,60,72,-0.11044506943942024],[125,60,73,-0.1329062727276878],[125,60,74,-0.15403034514379135],[125,60,75,-0.13169607849517487],[125,60,76,-0.10148349896835566],[125,60,77,-0.09568298797061543],[125,60,78,-0.11329950908132214],[125,60,79,-0.1280040757412376],[125,61,64,-0.08718754970960238],[125,61,65,-0.09604527064317665],[125,61,66,-0.06643941576559592],[125,61,67,-0.03758293829327377],[125,61,68,-0.016827192984762172],[125,61,69,-0.013183622741857097],[125,61,70,-0.04977433564250325],[125,61,71,-0.09211188154972984],[125,61,72,-0.11223794146882898],[125,61,73,-0.135040170443897],[125,61,74,-0.1559610961584884],[125,61,75,-0.13298780470964544],[125,61,76,-0.10236382385155521],[125,61,77,-0.09664243334338568],[125,61,78,-0.11477320494074014],[125,61,79,-0.12972154136196823],[125,62,64,-0.08842289186311363],[125,62,65,-0.09746496713868764],[125,62,66,-0.06717045499099428],[125,62,67,-0.037827902133927234],[125,62,68,-0.016877412596478594],[125,62,69,-0.013399754261272614],[125,62,70,-0.05039741281271379],[125,62,71,-0.09343671530934093],[125,62,72,-0.11406436784718081],[125,62,73,-0.13721743228205577],[125,62,74,-0.15793486306717067],[125,62,75,-0.13431295995025794],[125,62,76,-0.10326766182027843],[125,62,77,-0.09762463101376018],[125,62,78,-0.11628114900035627],[125,62,79,-0.13148016730656864],[125,63,64,-0.08967754218849076],[125,63,65,-0.09890864502994914],[125,63,66,-0.06792237821677664],[125,63,67,-0.038086616334079705],[125,63,68,-0.016934934517568598],[125,63,69,-0.01362162145875588],[125,63,70,-0.05102948909224085],[125,63,71,-0.09478224322587053],[125,63,72,-0.11592396664459391],[125,63,73,-0.1394378142482226],[125,63,74,-0.1599513240232839],[125,63,75,-0.13567122556779831],[125,63,76,-0.10419480062822843],[125,63,77,-0.09862938655626131],[125,63,78,-0.11782310416571257],[125,63,79,-0.1332796953447662],[125,64,64,-0.09095112897024937],[125,64,65,-0.10037607546229002],[125,64,66,-0.06869519451735218],[125,64,67,-0.03835914947741324],[125,64,68,-0.0169997805077228],[125,64,69,-0.013849172034073152],[125,64,70,-0.0516702434938699],[125,64,71,-0.09614794329060149],[125,64,72,-0.11781630611537401],[125,64,73,-0.14170101765617835],[125,64,74,-0.16201010946660763],[125,64,75,-0.13706225271313205],[125,64,76,-0.10514501039811895],[125,64,77,-0.09965648612839746],[125,64,78,-0.1193987989870138],[125,64,79,-0.13511982716954865],[125,65,64,-0.09224323933032905],[125,65,65,-0.10186698725259254],[125,65,66,-0.06948889336773234],[125,65,67,-0.03864556378654071],[125,65,68,-0.0170719711661195],[125,65,69,-0.014082348419461918],[125,65,70,-0.05231933617985434],[125,65,71,-0.09753325338247616],[125,65,72,-0.11974090308637803],[125,65,73,-0.1440066870284739],[125,65,74,-0.16411080016844729],[125,65,75,-0.13848566090725148],[125,65,76,-0.10611804285384085],[125,65,77,-0.10070569580060001],[125,65,78,-0.12100792620319066],[125,65,79,-0.13700022252655764],[125,66,64,-0.09355341813161072],[125,66,65,-0.10338106567354814],[125,66,66,-0.07030344357371002],[125,66,67,-0.038945914379345345],[125,66,68,-0.01715152562386252],[125,66,69,-0.014321087733469441],[125,66,70,-0.05297640844642943],[125,66,71,-0.09893757053485487],[125,66,72,-0.12169722140807585],[125,66,73,-0.14635440803146277],[125,66,74,-0.16625292528411031],[125,66,75,-0.13994103660420046],[125,66,76,-0.10711363054622063],[125,66,77,-0.10177676089163537],[125,66,78,-0.12265014130206714],[125,66,79,-0.13892049735920114],[125,67,64,-0.09488116692414082],[125,67,65,-0.10491795126264648],[125,67,66,-0.07113879216309639],[125,67,67,-0.03926024847264336],[125,67,68,-0.017238461215381695],[125,67,69,-0.014565321760781643],[125,67,70,-0.05364108277320563],[125,67,71,-0.10036025028850667],[125,67,72,-0.12368467047722007],[125,67,73,-0.14874370545330215],[125,67,74,-0.1684359604194013],[125,67,75,-0.1414279317509664],[125,67,76,-0.1081314860748328],[125,67,77,-0.1028694053124143],[125,67,78,-0.12432506110211587],[125,67,79,-0.14088022197583758],[125,68,64,-0.09622594294113818],[125,68,65,-0.10647723866252753],[125,68,66,-0.07199486324053068],[125,68,67,-0.03958860453378842],[125,68,68,-0.017332793129642178],[125,68,69,-0.01481497696064034],[125,68,70,-0.054312962941921165],[125,68,71,-0.10180060613825048],[125,68,72,-0.12570260384009743],[125,68,73,-0.1511740412340076],[125,68,74,-0.1706593257179359],[125,68,75,-0.14294586234842607],[125,68,76,-0.10917130130824226],[125,68,77,-0.10398333092100003],[125,68,78,-0.12603226236125778],[125,68,79,-0.1428789192454404],[125,69,64,-0.09758715815203159],[125,69,65,-0.10805847549954045],[125,69,66,-0.0728715568086184],[125,69,67,-0.039931011381017435],[125,69,68,-0.017434534042072958],[125,69,69,-0.015069974506425035],[125,69,70,-0.05499163422895237],[125,69,71,-0.10325790908068053],[125,69,72,-0.12775031788551636],[125,69,73,-0.1536448125569604],[125,69,74,-0.1729223839763797],[125,69,75,-0.14449430701769908],[125,69,76,-0.11023274660524864],[125,69,77,-0.10511821689179317],[125,69,78,-0.12777128041841168],[125,69,79,-0.14491606282842048],[125,70,64,-0.09896417837989972],[125,70,65,-0.1096611613074954],[125,70,66,-0.07376874755834109],[125,70,67,-0.04028748723349831],[125,70,68,-0.017543693728196738],[125,70,69,-0.015330230358963961],[125,70,70,-0.05567666367588686],[125,70,71,-0.10473138727036553],[125,70,72,-0.1298270506367896],[125,70,73,-0.15615535001147635],[125,70,74,-0.17522443879492294],[125,70,75,-0.14607270557641994],[125,70,76,-0.11131547003977178],[125,70,77,-0.10627371910189011],[125,70,78,-0.12954160787359562],[125,70,79,-0.1469910754494366],[125,71,64,-0.10035632249073054],[125,71,65,-0.11128474650366728],[125,71,66,-0.07468628363183948],[125,71,67,-0.04065803871218298],[125,71,68,-0.01766027865997473],[125,71,69,-0.01559565537605432],[125,71,70,-0.05636760044228678],[125,71,71,-0.10622022579178508],[125,71,72,-0.13193198065197323],[125,71,73,-0.1587049158361514],[125,71,74,-0.17756473277043142],[125,71,75,-0.1476804576295471],[125,71,76,-0.11241909663206513],[125,71,77,-0.10744946953763114],[125,71,78,-0.13134269331245912],[125,71,79,-0.1491033272191434],[125,72,64,-0.10176286166202952],[125,72,65,-0.11292863142425902],[125,72,66,-0.07562398536091883],[125,72,67,-0.04104265979280076],[125,72,68,-0.01778429158599051],[125,72,69,-0.015866155460653123],[125,72,70,-0.057063976244643023],[125,72,71,-0.10772356655418547],[125,72,72,-0.13406422604170365],[125,72,73,-0.16129270225292622],[125,72,74,-0.1799424457399652],[125,72,75,-0.14931692117955117],[125,72,76,-0.1135432275890733],[125,72,77,-0.10864507572442766],[125,72,78,-0.13317394008126252],[125,72,79,-0.15125213401200446],[125,73,64,-0.10318301873834884],[125,73,65,-0.11459216542660858],[125,73,66,-0.0765816439848448],[125,73,67,-0.04144133071254158],[125,73,68,-0.01791573109667698],[125,73,69,-0.016141631750128862],[125,73,70,-0.05776530588533489],[125,73,71,-0.1092405083163815],[125,73,72,-0.13622284361396156],[125,73,73,-0.163917829901915],[125,73,74,-0.18235669308250624],[125,73,75,-0.1509814112609769],[125,73,76,-0.11468743955684692],[125,73,77,-0.10986012018301262],[125,73,78,-0.13503470511841018],[125,73,79,-0.15343675590743105],[125,74,64,-0.10461596768126376],[125,74,65,-0.11627464606541903],[125,74,66,-0.07755902035116664],[125,74,67,-0.04185401683216532],[125,74,68,-0.01805459117583264],[125,74,69,-0.016421980848827934],[125,74,70,-0.05847108787513132],[125,74,71,-0.11077010684826799],[125,74,72,-0.13840682815496752],[125,74,73,-0.1665793463870678],[125,74,74,-0.1848065240868406],[125,74,75,-0.1526731986044758],[125,74,76,-0.1158512838879538],[125,74,77,-0.11109415991522606],[125,74,78,-0.13692429784865554],[125,74,79,-0.1556563957015505],[125,75,64,-0.10606083312136755],[125,75,65,-0.11797531835038486],[125,75,66,-0.07855584360359127],[125,75,67,-0.042280667455561215],[125,75,68,-0.018200860739798465],[125,75,69,-0.01670709510614075],[125,75,70,-0.05918080515256201],[125,75,71,-0.1123113752356238],[125,75,72,-0.14061511185539954],[125,75,73,-0.16927622494287944],[125,75,74,-0.18729092039374728],[125,75,75,-0.15439150833562998],[125,75,76,-0.11703428592697727],[125,75,77,-0.11234672592253588],[125,75,78,-0.13884197914620397],[125,75,79,-0.15791019749706142],[125,76,64,-0.10751669001976463],[125,76,65,-0.11969337409254317],[125,76,66,-0.07957180986114247],[125,76,67,-0.04272121460904272],[125,76,68,-0.018354523165760184],[125,76,69,-0.01699686294212214],[125,76,70,-0.059893925903187865],[125,76,71,-0.11386328433447125],[125,76,72,-0.14284656389092842],[125,76,73,-0.17200736323230092],[125,76,74,-0.1898087945207183],[125,76,75,-0.15613551871399922],[125,76,76,-0.1182359443172576],[125,76,77,-0.11361732276050324],[125,76,78,-0.1407869603729625],[125,76,79,-0.1601972453786751],[125,77,64,-0.10898256344643736],[125,77,65,-0.12142795134663359],[125,77,66,-0.08060658089305371],[125,77,67,-0.04317557178289821],[125,77,68,-0.018515555810685112],[125,77,69,-0.017291169222524088],[125,77,70,-0.06060990448143416],[125,77,71,-0.11542476338089325],[125,77,72,-0.1450999901658668],[125,77,73,-0.1747715822860018],[125,77,74,-0.1923589884775305],[125,77,75,-0.1579043599179513],[125,77,76,-0.11945573033208118],[125,77,77,-0.11490542813237124],[125,77,78,-0.1427584024981558],[125,77,79,-0.1625165621816539],[125,78,64,-0.11045742848274537],[125,78,65,-0.12317813395669214],[125,78,66,-0.08165978279410628],[125,78,67,-0.04364363263804818],[125,78,68,-0.018683929522542136],[125,78,69,-0.01758989568496796],[125,78,70,-0.061328182437326594],[125,78,71,-0.11699470076185166],[125,78,72,-0.1473741332285018],[125,78,73,-0.17756762559305103],[125,78,74,-0.19494027248106827],[125,78,75,-0.15969711288098482],[125,78,76,-0.12069308723363528],[125,78,77,-0.11621049252500044],[125,78,78,-0.144755415305557],[125,78,79,-0.16486710836100563],[125,79,64,-0.1119402102551445],[125,79,65,-0.12494295121200179],[125,79,66,-0.08273100466536956],[125,79,67,-0.04412526968096844],[125,79,68,-0.018859608145546932],[125,79,69,-0.01789292141778777],[125,79,70,-0.06204818965007625],[125,79,71,-0.11857194495211604],[125,79,72,-0.14966767236638354],[125,79,73,-0.18039415835298486],[125,79,74,-0.19755134377785577],[125,79,75,-0.16151280818537958],[125,79,76,-0.12194742966312236],[125,79,77,-0.11753193889037433],[125,79,78,-0.14677705669455646],[125,79,79,-0.16724778096888648],[125,80,64,-0.11342978410696233],[125,80,65,-0.1267213776203454],[125,80,66,-0.08381979730550279],[125,80,67,-0.04462033291031206],[125,80,68,-0.019042548021225257],[125,80,69,-0.0182001233928103],[125,80,70,-0.06276934556997962],[125,80,71,-0.12015530562189243],[125,80,72,-0.1519792238894682],[125,80,73,-0.1832497668990337],[125,80,74,-0.20019082558275425],[125,80,75,-0.1633504250190939],[125,80,76,-0.12321814306545238],[125,80,77,-0.11886916237583049],[125,80,78,-0.1488223320811848],[125,80,79,-0.16965741274768445],[125,81,64,-0.11492497591483238],[125,81,65,-0.12851233280534527],[125,81,66,-0.0849256719180517],[125,81,67,-0.04512864843903823],[125,81,68,-0.019232697487225055],[125,81,69,-0.01851137705313374],[125,81,70,-0.06349106056966866],[125,81,71,-0.1217435549192346],[125,81,72,-0.15430734160862178],[125,81,73,-0.18613295830208207],[125,81,74,-0.20285726614228175],[125,81,75,-0.16520889020193455],[125,81,76,-0.12450458315202712],[125,81,77,-0.1202215301061983],[125,81,78,-0.15089019390517802],[125,81,79,-0.17209477134623022],[125,82,64,-0.11642456255606508],[125,82,65,-0.13031468153443979],[125,82,66,-0.08604809884040267],[125,82,67,-0.045650017096188766],[125,82,68,-0.019429996375904257],[125,82,69,-0.01882655695671],[125,82,70,-0.06421273740525318],[125,82,71,-0.12333542893074405],[125,82,72,-0.15665051751654432],[125,82,73,-0.18904216016467906],[125,82,74,-0.20554913793100782],[125,82,75,-0.1670870772871499],[125,82,76,-0.12580607540520894],[125,82,77,-0.12158838102098904],[125,82,78,-0.15297954124904992],[125,82,79,-0.17455855866647366],[125,83,64,-0.11792727456465765],[125,83,65,-0.13212723564680337],[125,83,66,-0.08718650712823928],[125,83,67,-0.04618421327553468],[125,83,68,-0.019634375552515737],[125,83,69,-0.019145537441673757],[125,83,70,-0.064933772431132],[125,83,71,-0.12492962818342468],[125,83,72,-0.1590071806548804],[125,83,73,-0.1919757174900689],[125,83,74,-0.2082648328699044],[125,83,75,-0.16898380181718298],[125,83,76,-0.12712191123939862],[125,83,77,-0.12296902207751172],[125,83,78,-0.15508921440326423],[125,83,79,-0.17704740386420684],[125,84,64,-0.11943186505223771],[125,84,65,-0.1339488142271224],[125,84,66,-0.08834031201387406],[125,84,67,-0.046730993014957735],[125,84,68,-0.01984575807920895],[125,84,69,-0.0194681927044478],[125,84,70,-0.0656535473118425],[125,84,71,-0.12652478561503616],[125,84,72,-0.1613756365739168],[125,84,73,-0.19493179640339883],[125,84,74,-0.2110025339063497],[125,84,75,-0.17089769824078727],[125,84,76,-0.12845124171867495],[125,84,77,-0.12436261238056716],[125,84,78,-0.1572178316600698],[125,84,79,-0.17955965805600263],[125,85,64,-0.12093714214930047],[125,85,65,-0.13577827505465428],[125,85,66,-0.08950893100217702],[125,85,67,-0.04729010002021775],[125,85,68,-0.02006406122321822],[125,85,69,-0.01979439942748565],[125,85,70,-0.06637143489125487],[125,85,71,-0.12811947222593306],[125,85,72,-0.16375406751310634],[125,85,73,-0.19790837657839272],[125,85,74,-0.21376020064481163],[125,85,75,-0.17282720383939107],[125,85,76,-0.12979306233990304],[125,85,77,-0.12576814479269355],[125,85,78,-0.159363759592983],[125,85,79,-0.18209335446942657],[125,86,64,-0.12244190461795634],[125,86,65,-0.1376144604145395],[125,86,66,-0.09069175847758462],[125,86,67,-0.04786125755240965],[125,86,68,-0.020289195748081162],[125,86,69,-0.02012404003456177],[125,86,70,-0.06708681750062594],[125,86,71,-0.12971224712758847],[125,86,72,-0.16614061508014713],[125,86,73,-0.20090337387038634],[125,86,74,-0.2165357278096302],[125,86,75,-0.17477070813016865],[125,86,76,-0.13114634122079177],[125,86,77,-0.12718458496673085],[125,86,78,-0.16152530604473764],[125,86,79,-0.18464644895481977],[125,87,64,-0.12394493944192556],[125,87,65,-0.13945619508462434],[125,87,66,-0.09188816359794372],[125,87,67,-0.04844416680289194],[125,87,68,-0.020521065500575177],[125,87,69,-0.020457003900313544],[125,87,70,-0.06779909010797971],[125,87,71,-0.13130166333604748],[125,87,72,-0.16853338787362315],[125,87,73,-0.20391464973745277],[125,87,74,-0.21932695572559716],[125,87,75,-0.17672656198681486],[125,87,76,-0.13251002689008645],[125,87,77,-0.1286108802481223],[125,87,78,-0.16370073278763786],[125,87,79,-0.18721683551953017],[125,88,64,-0.1254450239837557],[125,88,65,-0.14130228825396904],[125,88,66,-0.0930974900059631],[125,88,67,-0.049038505826351844],[125,88,68,-0.020759567080384865],[125,88,69,-0.02079318850617198],[125,88,70,-0.06850766263380105],[125,88,71,-0.13288627092314823],[125,88,72,-0.17093046446623256],[125,88,73,-0.20694001349060392],[125,88,74,-0.22213167127328454],[125,88,75,-0.17869307765805656],[125,88,76,-0.1338830482123685],[125,88,77,-0.13004596003707566],[125,88,78,-0.16588825632568985],[125,88,79,-0.1898023470257356],[125,89,64,-0.12694092823730477],[125,89,65,-0.14315153553866014],[125,89,66,-0.094319055595211],[125,89,67,-0.04964392850074674],[125,89,68,-0.02100458953537927],[125,89,69,-0.021132500645783158],[125,89,70,-0.06921196233350639],[125,89,71,-0.1344646202969094],[125,89,72,-0.17332989657515643],[125,89,73,-0.20997722475442288],[125,89,74,-0.22494760901477365],[125,89,75,-0.18066852890440324],[125,89,76,-0.13526431438370218],[125,89,77,-0.1314887362274014],[125,89,78,-0.16808604885630468],[125,89,79,-0.19240075608843324],[125,90,64,-0.12843141717102174],[125,90,65,-0.14500272109127663],[125,90,66,-0.09555215233247717],[125,90,67,-0.05026006351768801],[125,90,68,-0.021256014083835303],[125,90,69,-0.021474857677285984],[125,90,70,-0.06991143624032335],[125,90,71,-0.1360352656029326],[125,90,72,-0.17572971241315732],[125,90,73,-0.21302399613455536],[125,90,74,-0.22777245248880504],[125,90,75,-0.18265115125377887],[125,90,76,-0.13665271499842535],[125,90,77,-0.13293810372115208],[125,90,78,-0.17029223939071217],[125,90,79,-0.1950097761735441],[125,91,64,-0.129915253157136],[125,91,65,-0.14685461979994188],[125,91,66,-0.09679604613825221],[125,91,67,-0.05088651340692452],[125,91,68,-0.021513713864921048],[125,91,69,-0.021820188819509756],[125,91,70,-0.07060555366177644],[125,91,71,-0.13759676823802822],[125,91,72,-0.17812792021321705],[125,91,73,-0.21607799608773634],[125,91,74,-0.23060383567399384],[125,91,75,-0.18463914237656703],[125,91,76,-0.1380471201873704],[125,91,77,-0.13439294101809635],[125,91,78,-0.17250491503187868],[125,91,79,-0.19762706289565493],[125,92,64,-0.13139119848141892],[125,92,65,-0.14870599957245093],[125,92,66,-0.09804997682695041],[125,92,67,-0.0515228535985922],[125,92,68,-0.02177755371865614],[125,92,69,-0.02216843648879404],[125,92,70,-0.07129380872249526],[125,92,71,-0.13914770046659886],[125,92,72,-0.18052251191873075],[125,92,73,-0.21913685198929644],[125,92,74,-0.23343934461837043],[125,92,75,-0.18663066258046687],[125,92,76,-0.13944638082772384],[125,92,77,-0.1358521108788735],[125,92,78,-0.17472212240828253],[125,92,79,-0.2002502155144269],[125,93,64,-0.13285801792782906],[125,93,65,-0.1505556237006136],[125,93,66,-0.09931315810847258],[125,93,67,-0.05216863152701231],[125,93,68,-0.022047389996575673],[125,93,69,-0.022519557672885368],[125,93,70,-0.07197572294570914],[125,93,71,-0.14068664912977422],[125,93,72,-0.18291146703058],[125,93,73,-0.22219815339241542],[125,93,74,-0.23627651923318188],[125,93,75,-0.18862383542548558],[125,93,76,-0.14084932882475867],[125,93,77,-0.13731446106063452],[125,93,78,-0.17694186926158836],[125,93,79,-0.20287677862831185],[125,94,64,-0.13431448143192196],[125,94,65,-0.1524022532995171],[125,94,66,-0.10058477765256171],[125,94,67,-0.052823365779810866],[125,94,68,-0.022323070404222725],[125,94,69,-0.02287352533801862],[125,94,70,-0.07265084786535231],[125,94,71,-0.14221221943665355],[125,94,72,-0.18529275660161934],[125,94,73,-0.2252594554726218],[125,94,74,-0.23911285524846063],[125,94,75,-0.19061674845920798],[125,94,76,-0.1422547774655744],[125,94,77,-0.13877882512378958],[125,94,78,-0.17916212618581526],[125,94,79,-0.20550424406369186],[125,95,64,-0.13575936679657769],[125,95,65,-0.15424464981609104],[125,95,66,-0.10186399721734798],[125,95,67,-0.05348654529619788],[125,95,68,-0.02260443387656377],[125,95,69,-0.023230329865027023],[125,95,70,-0.07331876766036018],[125,95,71,-0.1437230388265105],[125,95,72,-0.18766434736846596],[125,95,73,-0.22831828265041076],[125,95,74,-0.24194580632757126],[125,95,75,-0.19260745407241225],[125,95,76,-0.14366152184498132],[125,95,77,-0.14024402330840446],[125,95,78,-0.18138082851525458],[125,95,79,-0.20813005295714568],[125,96,64,-0.13719146246318256],[125,96,65,-0.15608157760092495],[125,96,66,-0.1031499528433127],[125,96,67,-0.05415762861820514],[125,96,68,-0.022891310487303234],[125,96,69,-0.02358998050998983],[125,96,70,-0.07397910180234056],[125,96,71,-0.1452177608902248],[125,96,72,-0.19002420600970465],[125,96,73,-0.23137213238406218],[125,96,74,-0.24477278633746688],[125,96,75,-0.19459397047485122],[125,96,76,-0.14506833936352667],[125,96,77,-0.14170886347859835],[125,96,78,-0.18359587835793265],[125,96,79,-0.21075159802798377],[125,97,64,-0.13860957033110774],[125,97,65,-0.1579118065369988],[125,97,66,-0.10444175511382194],[125,97,67,-0.054836043198709716],[125,97,68,-0.02318352139302197],[125,97,69,-0.023952506884670106],[125,97,70,-0.07463150770750085],[125,97,71,-0.14669506933876247],[125,97,72,-0.19237030351903114],[125,97,73,-0.23441847912414537],[125,97,74,-0.2475911717710995],[125,97,75,-0.19657428279093742],[125,97,76,-0.14647399029764593],[125,97,77,-0.14317214213320179],[125,97,78,-0.18580514677106394],[125,97,79,-0.21336622603777203],[125,98,64,-0.14001250861799674],[125,98,65,-0.15973411471863982],[125,98,66,-0.10573848948325258],[125,98,67,-0.05552118477004929],[125,98,68,-0.02348087881298231],[125,98,69,-0.024317960451732654],[125,98,70,-0.07527568338341495],[125,98,71,-0.1481536820060613],[125,98,72,-0.19470061968119798],[125,98,73,-0.2374547784205092],[125,98,74,-0.2503983043180182],[125,98,75,-0.1985463442748618],[125,98,76,-0.14787721844182353],[125,98,77,-0.14463264548079968],[125,98,78,-0.18800647607453996],[125,98,79,-0.21597124043305682],[125,99,64,-0.14139911475303704],[125,99,65,-0.1615472911736715],[125,99,66,-0.10703921667355651],[125,99,67,-0.05621241677695819],[125,99,68,-0.023783186045303006],[125,99,69,-0.024686416029422547],[125,99,70,-0.07591137006089047],[125,99,71,-0.14959235487321804],[125,99,72,-0.19701314763798852],[125,99,73,-0.24047847117187585],[125,99,74,-0.25319149357878357],[125,99,75,-0.20050807764445658],[125,99,76,-0.14927675182251285],[125,99,77,-0.14608915057709365],[125,99,78,-0.19019768229805992],[125,99,79,-0.2185639041669695],[125,100,64,-0.14276824829515178],[125,100,65,-0.16335013862147113],[125,100,66,-0.1083429731400082],[125,100,67,-0.056909069877527245],[125,100,68,-0.024090237520137968],[125,100,69,-0.025057973300170785],[125,100,70,-0.07653835480098636],[125,100,71,-0.1510098861005366],[125,100,72,-0.19930589853093203],[125,100,73,-0.24348698800760404],[125,100,74,-0.25596801991851326],[125,100,75,-0.2024573765329653],[125,100,76,-0.15067130348350788],[125,100,77,-0.14754042652242402],[125,100,78,-0.19237655775715795],[125,100,79,-0.22114144269494598],[125,101,64,-0.14411879386778623],[125,101,65,-0.16514147625937076],[125,101,66,-0.10964877160672924],[125,101,67,-0.057610441515830724],[125,101,68,-0.024401818890394316],[125,101,69,-0.025432758317369807],[125,101,70,-0.07715647306702515],[125,101,71,-0.1524051200536619],[125,101,72,-0.20157690620692814],[125,101,73,-0.24647775379056608],[125,101,74,-0.2587251374544853],[125,101,75,-0.20439210705766295],[125,101,76,-0.15205957234234185],[125,101,77,-0.14898523571715466],[125,101,78,-0.19454087375300805],[125,101,79,-0.22370104713930258],[125,102,64,-0.1454496641016948],[125,102,65,-0.1669201425695492],[125,102,66,-0.11095560167238334],[125,102,67,-0.05831579556971749],[125,102,68,-0.024717707160353684],[125,102,69,-0.025810925004285633],[125,102,70,-0.07776561125120288],[125,102,71,-0.15377695130968252],[125,102,72,-0.20382423197243338],[125,102,73,-0.24944819222950243],[125,102,74,-0.2614600771723448],[125,102,75,-0.2063101095040205],[125,102,76,-0.15344024411711993],[125,102,77,-0.15042233517242082],[125,102,78,-0.19668838339044026],[125,102,79,-0.22623987761687317],[125,103,64,-0.14675980257697166],[125,103,65,-0.16868499813838111],[125,103,66,-0.11226243048631682],[125,103,67,-0.059024362077204885],[125,103,68,-0.025037670852490878],[125,103,69,-0.02619265663892856],[125,103,70,-0.07836570914531242],[125,103,71,-0.15512432862889877],[125,103,72,-0.2060459693814654],[125,103,73,-0.2523957305887235],[125,103,74,-0.26417005016514],[125,103,75,-0.20820920012391983],[125,103,76,-0.15481199232311205],[125,103,77,-0.1518504778736599],[125,103,78,-0.1988168245082981],[125,103,79,-0.22875506672348977],[125,104,64,-0.14804818675538586],[125,104,65,-0.17043492848000016],[125,104,66,-0.11356820349524521],[125,104,67,-0.05973533704478756],[125,104,68,-0.025361470212655897],[125,104,69,-0.026578167318520078],[125,104,70,-0.07895676234498265],[125,104,71,-0.1564462588777531],[125,104,72,-0.20824024904228122],[125,104,73,-0.2553178044825289],[125,104,74,-0.26685225098907484],[125,104,75,-0.21008717304619248],[125,104,76,-0.15617347933828835],[125,104,77,-0.15326841419419673],[125,104,78,-0.20092392271589574],[125,104,79,-0.23124372316860603],[125,105,64,-0.1493138308195938],[125,105,65,-0.1721688467100065],[125,105,66,-0.11487184526331784],[125,105,67,-0.06044788240318432],[125,105,68,-0.02568885751292697],[125,105,69,-0.026967703408936096],[125,105,70,-0.079538824509351],[125,105,71,-0.15774181085503866],[125,105,72,-0.21040524346071912],[125,105,73,-0.2582118627474218],[125,105,74,-0.26950386113365543],[125,105,75,-0.21194180238141808],[125,105,76,-0.15752335760363492],[125,105,77,-0.15467489335225976],[125,105,78,-0.203007394555758],[125,105,79,-0.23370293567792977],[125,106,64,-0.1505557014496479],[125,106,65,-0.1738855259702265],[125,106,66,-0.11617226503855606],[125,106,67,-0.061161200864455964],[125,106,68,-0.02601964673920936],[125,106,69,-0.02736155596218294],[125,106,70,-0.08011192771253196],[125,106,71,-0.15901007760935765],[125,106,72,-0.21253920860081232],[125,106,73,-0.2610753786353943],[125,106,74,-0.2721220594506991],[125,106,75,-0.21377094477221265],[125,106,76,-0.15886034995750561],[125,106,77,-0.15606866118628096],[125,106,78,-0.2050649832691907],[125,106,79,-0.2361299244866078],[125,107,64,-0.15177254849156244],[125,107,65,-0.17558326777695363],[125,107,66,-0.11746837549482357],[125,107,67,-0.06187469591495041],[125,107,68,-0.026353850116200315],[125,107,69,-0.02776006305168008],[125,107,70,-0.08067590254748423],[125,107,71,-0.16025008058485996],[125,107,72,-0.21464054390899237],[125,107,73,-0.2639058603659808],[125,107,74,-0.2747040532313676],[125,107,75,-0.2155727541336442],[125,107,76,-0.160183412650336],[125,107,77,-0.15744845860951756],[125,107,78,-0.2070945340463906],[125,107,79,-0.2385223437646671],[125,108,64,-0.1529631108574998],[125,108,65,-0.17726030570068538],[125,108,66,-0.11875909530591992],[125,108,67,-0.06258781468177242],[125,108,68,-0.026691515067761976],[125,108,69,-0.02816355501184074],[125,108,70,-0.08123054185473447],[125,108,71,-0.16146084429944857],[125,108,72,-0.216707685735685],[125,108,73,-0.2667008315146403],[125,108,74,-0.2772470861999003],[125,108,75,-0.21734547000255014],[125,108,76,-0.16149155970051596],[125,108,77,-0.1588130381923457],[125,108,78,-0.20909393265553375],[125,108,79,-0.2408779510424919],[125,109,64,-0.15412616496613674],[125,109,65,-0.17891489847656328],[125,109,66,-0.12004334964961842],[125,109,67,-0.0633000112804106],[125,109,68,-0.02703268771282025],[125,109,69,-0.028572345299357038],[125,109,70,-0.08177564162603794],[125,109,71,-0.162641417894557],[125,109,72,-0.21873908857225885],[125,109,73,-0.2694578311414914],[125,109,74,-0.2797484417942299],[125,109,75,-0.2190873697471628],[125,109,76,-0.16278382343940379],[125,109,77,-0.16016116877878306],[125,109,78,-0.21106109344032495],[125,109,79,-0.24319453474541103],[125,110,64,-0.1552605272298216],[125,110,65,-0.1805453329800736],[125,110,66,-0.12132007191619273],[125,110,67,-0.06401074783168666],[125,110,68,-0.027377413096466702],[125,110,69,-0.028986730339855254],[125,110,70,-0.08231100182491412],[125,110,71,-0.1637908774691571],[125,110,72,-0.22073322828158107],[125,110,73,-0.2721744182818029],[125,110,74,-0.28220544795700414],[125,110,75,-0.2207967715292761],[125,110,76,-0.16405925593395929],[125,110,77,-0.1614916375053041],[125,110,78,-0.2129939633149446],[125,110,79,-0.2454699184674591],[125,111,64,-0.15636505649842505],[125,111,65,-0.182149927210476],[125,111,66,-0.1225882054471315],[125,111,67,-0.06471949549493188],[125,111,68,-0.027725735430219205],[125,111,69,-0.029406989399966648],[125,111,70,-0.08283642720749292],[125,111,71,-0.16490832837080627],[125,111,72,-0.22268860530240586],[125,111,73,-0.27484817645171955],[125,111,74,-0.2846154819092845],[125,111,75,-0.2224720372234347],[125,111,76,-0.16531693039645226],[125,111,77,-0.1628032518283415],[125,111,78,-0.21489052575237078],[125,111,79,-0.24770196521868984],[125,112,64,-0.15743865645131044],[125,112,65,-0.18372703327199752],[125,112,66,-0.1238467052986936],[125,112,67,-0.06542573551362425],[125,112,68,-0.0280776983412183],[125,112,69,-0.02983338448809377],[125,112,70,-0.08335172814290707],[125,112,71,-0.16599290743816947],[125,112,72,-0.22460374782076944],[125,112,73,-0.277476718157885],[125,112,74,-0.28697597489126947],[125,112,75,-0.22411157528314568],[125,112,76,-0.16655594257732542],[125,112,77,-0.1640948415542371],[125,112,78,-0.21674880475331662],[125,112,79,-0.24988858163363167],[125,113,64,-0.158480277928991],[125,113,65,-0.18527504034284417],[125,113,66,-0.1250945400248828],[125,113,67,-0.06612896026968845],[125,113,68,-0.02843334513003091],[125,113,69,-0.030266160286851546],[125,113,70,-0.08385672143226999],[125,113,71,-0.16704378518939147],[125,113,72,-0.22647721490140912],[125,113,73,-0.28005768939942405],[125,113,74,-0.289284416854469],[125,113,75,-0.22571384354428417],[125,113,76,-0.16777541213732025],[125,113,77,-0.16536526086537243],[125,113,78,-0.21856686878300838],[125,113,79,-0.2520277221284599],[125,114,64,-0.15948892119616498],[125,114,65,-0.186792377622075],[125,114,66,-0.12633069347430162],[125,114,67,-0.06682867434257803],[125,114,68,-0.028792719036580223],[125,114,69,-0.03070554411982352],[125,114,70,-0.08435123112507063],[125,114,71,-0.16806016795064424],[125,114,72,-0.2283075995720787],[125,114,73,-0.28258877415053624],[125,114,74,-0.29153836108988057],[125,114,75,-0.22727735195607107],[125,114,76,-0.1689744839949938],[125,114,77,-0.16661339033614012],[125,114,78,-0.220342834663007],[125,114,79,-0.25411739299444824],[125,115,64,-0.16046363756864107],[125,115,65,-0.1882775166784903],[125,115,66,-0.12755416602267722],[125,115,67,-0.06752439498992886],[125,115,68,-0.02915586292757807],[125,115,69,-0.031151745362189325],[125,115,70,-0.08483508873211631],[125,115,71,-0.16904129931291642],[125,115,72,-0.2300935312405861],[125,115,73,-0.2850676981921707],[125,115,74,-0.2937354281504623],[125,115,75,-0.22880066459701037],[125,115,76,-0.17015232900580674],[125,115,77,-0.16783813828567742],[125,115,78,-0.22207487075190904],[125,115,79,-0.2561556557552076],[125,116,64,-0.16140339312122323],[125,116,65,-0.189728834276978],[125,116,66,-0.1287638346733879],[125,116,67,-0.0682155098298551],[125,116,68,-0.029522674528913332],[125,116,69,-0.03160480875653237],[125,116,70,-0.08530798562379421],[125,116,71,-0.16998631202936962],[125,116,72,-0.23183352688053732],[125,116,73,-0.2874920800477948],[125,116,74,-0.29587315514287954],[125,116,75,-0.23028224537988137],[125,116,76,-0.17130798670648292],[125,116,77,-0.16903828252467806],[125,116,78,-0.2237610387949471],[125,116,79,-0.258140467500739],[125,117,64,-0.16230688297767376],[125,117,65,-0.19114442514973928],[125,117,66,-0.1299582624680663],[125,117,67,-0.06890108314117724],[125,117,68,-0.029892709596192564],[125,117,69,-0.03206441500408755],[125,117,70,-0.08576927195535226],[125,117,71,-0.17089402566557607],[125,117,72,-0.2335257872701637],[125,117,73,-0.2898592262753136],[125,117,74,-0.2979487886082431],[125,117,75,-0.23172024663938812],[125,117,76,-0.17244015028832477],[125,117,77,-0.17021225361885292],[125,117,78,-0.2253990765164406],[125,117,79,-0.2600694612256616],[125,118,64,-0.16317280075746096],[125,118,65,-0.19252237539105807],[125,118,66,-0.13113597402541138],[125,118,67,-0.06958013376359991],[125,118,68,-0.030265462194005638],[125,118,69,-0.03253016401009599],[125,118,70,-0.08621824371759594],[125,118,71,-0.17176323783418732],[125,118,72,-0.23516849236160967],[125,118,73,-0.2921664314428679],[125,118,74,-0.2999595875763973],[125,118,75,-0.23311281345314547],[125,118,76,-0.1735474729129749],[125,118,77,-0.17135844503238473],[125,118,78,-0.22698671255631267],[125,118,79,-0.2619402640052645],[125,119,64,-0.16399988498936452],[125,119,65,-0.19386081029952804],[125,119,66,-0.13229550301796267],[125,119,67,-0.0702516823617313],[125,119,68,-0.030640411777411836],[125,119,69,-0.033001622384028574],[125,119,70,-0.08665419139867159],[125,119,71,-0.17259277437114195],[125,119,72,-0.2367598530021397],[125,119,73,-0.29441103186691703],[125,119,74,-0.3019028777314596],[125,119,75,-0.23445813650499278],[125,119,76,-0.1746286200578722],[125,119,77,-0.1724752667221709],[125,119,78,-0.22852172221864164],[125,119,79,-0.2637505534016725],[125,120,64,-0.1647869212105487],[125,120,65,-0.19515789742313916],[125,120,66,-0.13343539439217808],[125,120,67,-0.0709147529128148],[125,120,68,-0.031017023996288213],[125,120,69,-0.033478324179278963],[125,120,70,-0.08707640130389666],[125,120,71,-0.17338149156433605],[125,120,72,-0.23829811418438449],[125,120,73,-0.2965904103528621],[125,120,74,-0.3037760559935281],[125,120,75,-0.23575445486530328],[125,120,76,-0.1756822713306891],[125,120,77,-0.1735611476751688],[125,120,78,-0.23000193156900828],[125,120,79,-0.2654980616806227],[125,121,64,-0.16553274399745563],[125,121,65,-0.19641184956998994],[125,121,66,-0.13455420661886353],[125,121,67,-0.07156837422991252],[125,121,68,-0.031394751561482505],[125,121,69,-0.03395977173877703],[125,121,70,-0.08748415692446462],[125,121,71,-0.17412827835047237],[125,121,72,-0.23978155826784156],[125,121,73,-0.2987020009044494],[125,121,74,-0.30557659501001994],[125,121,75,-0.23700005871582885],[125,121,76,-0.17670712231198962],[125,121,77,-0.1746145384722666],[125,121,78,-0.2314252214844718],[125,121,79,-0.267180579967562],[125,122,64,-0.166236238921926],[125,122,65,-0.19762092777547505],[125,122,66,-0.13565051396781364],[125,122,67,-0.072211581516116],[125,122,68,-0.03177303517082458],[125,122,69,-0.03444543664589146],[125,122,70,-0.08787674035192525],[125,122,71,-0.1748320584743102],[125,122,72,-0.2412085081639318],[125,122,73,-0.30074329338968725],[125,122,74,-0.30730204754329093],[125,122,75,-0.23819329201136233],[125,122,76,-0.17770188642195472],[125,122,77,-0.17563391387176272],[125,122,78,-0.23278953164411623],[125,122,79,-0.26879596233149683],[125,123,64,-0.1668963444262052],[125,123,65,-0.19878344421694508],[125,123,66,-0.13672290880044172],[125,123,67,-0.07284341794527661],[125,123,68,-0.03215130449282277],[125,123,69,-0.03493476077952122],[125,123,70,-0.08825343373508714],[125,123,71,-0.1754917926045541],[125,123,72,-0.24257733047687233],[125,123,73,-0.3027118381509896],[125,123,74,-0.30895005074151033],[125,123,75,-0.23933255507070292],[125,123,76,-0.178665296806896],[125,123,77,-0.17661777540542092],[125,123,78,-0.2340928644482439],[125,123,79,-0.27034212978516914],[125,124,64,-0.16751205361074412],[125,124,65,-0.19989776506698956],[125,124,66,-0.13777000387408558],[125,124,67,-0.07346293626463266],[125,124,68,-0.032528979205613116],[125,124,69,-0.035427157471777895],[125,124,70,-0.08861352077570511],[125,124,71,-0.1761064804006268],[125,124,72,-0.24388643859259676],[125,124,73,-0.3046052505473071],[125,124,74,-0.3105183302801229],[125,124,75,-0.24041630708964287],[125,124,76,-0.1795961082411389],[125,124,77,-0.17756465397993618],[125,124,78,-0.23533328885445276],[125,124,79,-0.2718170741902964],[125,125,64,-0.1680824159290134],[125,125,65,-0.2009623132767187],[125,125,66,-0.1387904346516472],[125,125,67,-0.07406920041465528],[125,125,68,-0.03290547008851996],[125,125,69,-0.035922012766203104],[125,125,70,-0.08895628825908401],[125,125,71,-0.17667516252464857],[125,125,72,-0.24513429570801673],[125,125,73,-0.30642121541612594],[125,125,74,-0.3120047043617107],[125,125,75,-0.24144306856899778],[125,125,76,-0.1804930990397898],[125,125,77,-0.17847311247659559],[125,125,78,-0.23650894411907042],[125,125,79,-0.2732188620568798],[125,126,64,-0.16860653878385928],[125,126,65,-0.2019755712806425],[125,126,66,-0.13978286161019252],[125,126,67,-0.07466128716138548],[125,126,68,-0.03328018016338103],[125,126,69,-0.0364186867740263],[125,126,70,-0.08928102761552435],[125,126,71,-0.17719692259303388],[125,126,72,-0.2463194177929596],[125,126,73,-0.30815749144334503],[125,126,74,-0.313407087562489],[125,126,75,-0.24241142365097298],[125,126,76,-0.18135507297779857],[125,126,77,-0.17934174834185454],[125,126,78,-0.23761804343268633],[125,126,79,-0.2745456382258374],[125,127,64,-0.16908358902022302],[125,127,65,-0.20293608361496643],[125,127,66,-0.14074597254208338],[125,127,67,-0.07523828773643848],[125,127,68,-0.033652505882540124],[125,127,69,-0.036916515125469784],[125,127,70,-0.08958703650827052],[125,127,71,-0.1776708890621754],[125,127,72,-0.24744037647717976],[125,127,73,-0.3098119154291906],[125,127,74,-0.31472349451416753],[125,127,75,-0.24332002235744643],[125,127,76,-0.1821808612106145],[125,127,77,-0.1801691961614697],[125,127,78,-0.23865887743876651],[125,127,79,-0.275795629424498],[125,128,64,-0.16951279430940788],[125,128,65,-0.2038424594414184],[125,128,66,-0.14167848484224002],[125,128,67,-0.07579930947984923],[125,128,68,-0.03402183836024144],[125,128,69,-0.03741481051271173],[125,128,70,-0.08987362044347176],[125,128,71,-0.1780962370428462],[125,128,72,-0.24849580185498024],[125,128,73,-0.3113824064385722],[125,128,74,-0.3159520434104489],[125,128,75,-0.24416758272408576],[125,128,76,-0.18296932419168885],[125,128,77,-0.1809541302108379],[125,128,78,-0.23962981762470445],[125,128,79,-0.27696714768485314],[125,129,64,-0.16989344442042575],[125,129,65,-0.20469337496900877],[125,129,66,-0.1425791477751381],[125,129,67,-0.07634347748089745],[125,129,68,-0.0343875646439663],[125,129,69,-0.037912864320685],[125,129,70,-0.09014009439747919],[125,129,71,-0.17847219003808226],[125,129,72,-0.24948438520010302],[125,129,73,-0.3128669698245136],[125,129,74,-0.31709095932797915],[125,129,75,-0.24495289282454044],[125,129,76,-0.18371935358199906],[125,129,77,-0.18169526697417893],[125,129,78,-0.2405293195750035],[125,129,79,-0.278058593614819],[125,130,64,-0.17022489237429522],[125,130,65,-0.2054875757664109],[125,130,66,-0.1434467447151487],[125,130,67,-0.07686993621200543],[125,130,68,-0.03474906902203792],[125,130,69,-0.038409948341448646],[125,130,70,-0.09038578445660539],[125,130,71,-0.17879802159944835],[125,130,72,-0.25040488158370555],[125,130,73,-0.3142637011135864],[125,130,74,-0.31813857735215867],[125,130,75,-0.24567481267928712],[125,130,76,-0.18442987414669737],[125,130,77,-0.18239136762518962],[125,130,78,-0.2413559260766587],[125,130,79,-0.27906845951314924],[125,131,64,-0.1705065554775606],[125,131,65,-0.20622387895801045],[125,131,66,-0.1442800953539011],[125,131,67,-0.07737785115083584],[125,131,68,-0.03510573436369087],[125,131,69,-0.03890531656751516],[125,131,70,-0.09061002946437884],[125,131,71,-0.17907305689679612],[125,131,72,-0.2512561123884325],[125,131,73,-0.315570789742584],[125,131,74,-0.31909334549881385],[125,131,75,-0.24633227604405708],[125,131,76,-0.18509984563395557],[125,131,77,-0.1830412404618598],[125,131,78,-0.24210827006725305],[125,131,79,-0.2799953323190743],[125,132,64,-0.17073791623168014],[125,132,65,-0.2069011752970141],[125,132,66,-0.14507805786840158],[125,132,67,-0.07786641038570791],[125,132,68,-0.03545694348762187],[125,132,69,-0.03939820705911846],[125,132,70,-0.0908121826711721],[125,132,71,-0.17929667419682083],[125,132,72,-0.252036967711824],[125,132,73,-0.31678652263606505],[125,132,74,-0.31995382742340633],[125,132,75,-0.24692429207317312],[125,132,76,-0.18572826463105363],[125,132,77,-0.18364374328819355],[125,132,78,-0.24278507741672947],[125,132,79,-0.28083789638821743],[125,133,64,-0.1709185231153086],[125,133,65,-0.20751843110935836],[125,133,66,-0.145839531043705],[125,133,67,-0.0783348261994634],[125,133,68,-0.03580208055488929],[125,133,69,-0.03988784388004923],[125,133,70,-0.09099161338098037],[125,133,71,-0.1794683062459206],[125,133,72,-0.2527464086525073],[125,133,73,-0.3179092876147464],[125,133,74,-0.32071870491006527],[125,133,75,-0.24744994685344732],[125,133,76,-0.18631416639270276],[125,133,77,-0.184197785735634],[125,133,78,-0.24338516953426348],[125,133,79,-0.2815949360867839],[125,134,64,-0.17104799123692216],[125,134,65,-0.2080746901025699],[125,134,66,-0.14656345634405232],[125,134,67,-0.07878233662697647],[125,134,68,-0.036140532481917405],[125,134,69,-0.04037343909636862],[125,134,70,-0.0911477085900669],[125,134,71,-0.1795874415531299],[125,134,72,-0.2533834694729162],[125,134,73,-0.31893757662518013],[125,134,74,-0.32138678013343813],[125,134,75,-0.24790840480471457],[125,134,76,-0.18685662663661834],[125,134,77,-0.18470233151712093],[125,134,78,-0.2439074657921886],[125,134,79,-0.28226533819656296],[125,135,64,-0.17112600285562812],[125,135,65,-0.20856907503411865],[125,135,66,-0.14724881992649017],[125,135,67,-0.07920820698152832],[125,135,68,-0.03647169036922895],[125,135,69,-0.04085419483198281],[125,135,70,-0.09127987461210477],[125,135,71,-0.17965362556913017],[125,135,72,-0.253947259632554],[125,135,73,-0.31986998878161343],[125,135,74,-0.32195697768705744],[125,135,75,-0.2482989099434623],[125,135,76,-0.18735476330135237],[125,135,77,-0.18515640060681376],[125,135,78,-0.24435098575945957],[125,135,79,-0.28284809412381473],[125,136,64,-0.17115230776841275],[125,136,65,-0.20900078923421883],[125,136,66,-0.14789465459111586],[125,136,67,-0.07961173134534731],[125,136,68,-0.03679495094143621],[125,136,69,-0.04132930537478335],[125,136,70,-0.09138753868442426],[125,136,71,-0.17966646175761716],[125,136,72,-0.25443696568611895],[125,136,73,-0.32070523321138045],[125,136,74,-0.32242834637259843],[125,136,75,-0.24862078700638945],[125,136,76,-0.1878077382614004],[125,136,77,-0.18555907133865934],[125,136,78,-0.24471485123767822],[125,136,79,-0.2833423019056432],[125,137,64,-0.17112672356250402],[125,137,65,-0.2093691179784697],[125,137,66,-0.14850004166224542],[125,137,67,-0.07999223401968544],[125,137,68,-0.03710971799393346],[125,137,69,-0.041797959326789334],[125,137,70,-0.09147015054994424],[125,137,71,-0.17962561255558582],[125,137,72,-0.25485185304115715],[125,137,73,-0.3214421316957439],[125,137,74,-0.3228000607451709],[125,137,75,-0.24887344243116222],[125,137,76,-0.18821475899464665],[125,137,77,-0.18590948241715344],[125,137,78,-0.244998288093313],[125,137,79,-0.2837471680080735],[125,138,64,-0.17104913573194083],[125,138,65,-0.20967342970617506],[125,138,66,-0.14906411279496593],[125,138,67,-0.08034907092990469],[125,138,68,-0.03741540384167035],[125,138,69,-0.042259341791504916],[125,138,70,-0.09152718400938432],[125,138,71,-0.1795308002194009],[125,138,72,-0.2551912675702522],[125,138,73,-0.32207962109861643],[125,138,74,-0.3230714224105027],[125,138,75,-0.24905636519202717],[125,138,76,-0.1885750801972573],[125,138,77,-0.1862068348338345],[125,138,78,-0.2452006278803284],[125,138,79,-0.2840620089106258],[125,139,64,-0.17091949765785697],[125,139,65,-0.2099131770806192],[125,139,66,-0.14958605170170758],[125,139,67,-0.08068163098114423],[125,139,68,-0.03771143076532979],[125,139,69,-0.042712636591488246],[125,139,70,-0.0915581384383732],[125,139,71,-0.17938180755381822],[125,139,72,-0.255454637073116],[125,139,73,-0.32261675557615965],[125,139,74,-0.3232418610706027],[125,139,75,-0.24916912748833067],[125,139,76,-0.1888880053411729],[125,139,77,-0.18645039368324673],[125,139,78,-0.24532130924805498],[125,139,79,-0.2842862524727794],[125,140,64,-0.17073783045241012],[125,140,65,-0.2100878978880607],[125,140,66,-0.1500650957936768],[125,140,67,-0.08098933736026552],[125,140,68,-0.03799723245019828],[125,140,69,-0.04315702850895014],[125,140,70,-0.09156254026411455],[125,140,71,-0.17917847852145205],[125,140,72,-0.25564147258436304],[125,140,73,-0.3230527085608875],[125,140,74,-0.32331093531529176],[125,140,75,-0.24921138528444808],[125,140,76,-0.18915288816946083],[125,140,77,-0.1866394898723553],[125,140,78,-0.24535987912978974],[125,140,79,-0.28441943907839357],[125,141,64,-0.17050422266670415],[125,141,65,-0.2101972157726643],[125,141,66,-0.15050053773220254],[125,141,67,-0.08127164877991407],[125,141,68,-0.03827225541301249],[125,141,69,-0.04359170554206286],[125,141,70,-0.09153994439635894],[125,141,71,-0.17892071873051968],[125,141,72,-0.2557513695231151],[125,141,73,-0.32338677451446873],[125,141,74,-0.32327833315767845],[125,141,75,-0.24918287869998454],[125,141,76,-0.18936913412485126],[125,141,77,-0.18677352171763592],[125,141,78,-0.24531599370823634],[125,141,79,-0.28446122255472917],[125,142,64,-0.17021882986346484],[125,142,65,-0.2102408408050793],[125,142,66,-0.15089172688527672],[125,142,67,-0.08152806066067396],[125,142,68,-0.038535960412049146],[125,142,69,-0.04401586116952395],[125,142,70,-0.09148993560750203],[125,142,71,-0.1786084957990231],[125,142,72,-0.25578400868103435],[125,142,73,-0.32361837044410585],[125,142,74,-0.3231438723124777],[125,142,75,-0.24908343224956156],[125,142,76,-0.18953620170690777],[125,142,77,-0.18685195642434244],[125,142,78,-0.24518941915458686],[125,142,79,-0.284411370863428],[125,143,64,-0.16988187405563673],[125,143,65,-0.2102185698828524],[125,143,66,-0.15123807068481374],[125,143,67,-0.08175810624746192],[125,143,68,-0.038787823835760196],[125,143,69,-0.044428696615844386],[125,143,70,-0.09141212985675991],[125,143,71,-0.1782418395938877],[125,143,72,-0.255739157045789],[125,143,73,-0.3237470371779845],[125,143,74,-0.32290750021677395],[125,143,75,-0.2489129549318813],[125,143,76,-0.189653603753397],[125,143,77,-0.18687433144274035],[125,143,78,-0.24498003213869599],[125,143,79,-0.28426976656141634],[125,144,64,-0.16949364301247863],[125,144,65,-0.21013028696135683],[125,144,66,-0.1515390358804168],[125,144,67,-0.08196135765648493],[125,144,68,-0.039027339065289976],[125,144,69,-0.04482942310977531],[125,144,70,-0.09130617555351167],[125,144,71,-0.17782084234393658],[125,144,72,-0.2556166684574112],[125,144,73,-0.32377244039597297],[125,144,74,-0.32256929379360283],[125,144,75,-0.24867144016816994],[125,144,76,-0.18972090864156235],[125,144,77,-0.18684025569641263],[125,144,78,-0.24468782010849185],[125,144,79,-0.28403640703039046],[125,145,64,-0.16905448943512028],[125,145,65,-0.20997596311441322],[125,145,66,-0.15179414968571617],[125,145,67,-0.08213742684927183],[125,145,68,-0.03925401780626127],[125,145,69,-0.045217264128248405],[125,145,70,-0.09117175475503123],[125,145,71,-0.17734565862591312],[125,145,72,-0.2554164840954501],[125,145,73,-0.3236943714124411],[125,145,74,-0.3221294589594774],[125,145,75,-0.2483589655905103],[125,145,76,-0.18973774140517094],[125,145,77,-0.1867494106780726],[125,145,78,-0.24431288133745038],[125,145,79,-0.2837114044742001],[125,146,64,-0.16856483000394776],[125,146,65,-0.20975565642425997],[125,146,66,-0.15200300081360582],[125,146,67,-0.08228596653047952],[125,146,68,-0.039467391385294225],[125,146,69,-0.04559145761822546],[125,146,70,-0.09100858429404989],[125,146,71,-0.1768165052231809],[125,146,72,-0.25513863279529575],[125,146,73,-0.3235127477087332],[125,146,74,-0.3215883298776908],[125,146,75,-0.24797569268094938],[125,146,76,-0.18970378476335134],[125,146,77,-0.1866015514086557],[125,146,78,-0.24385542473964542],[125,146,79,-0.28329498568411565],[125,147,64,-0.1680251443005404],[125,147,65,-0.2094695117010452],[125,147,66,-0.1521652403970582],[125,147,67,-0.08240667096642107],[125,147,68,-0.03966701200682441],[125,147,69,-0.04595125818888448],[125,147,70,-0.09081641683174109],[125,147,71,-0.17623366085702794],[125,147,72,-0.25478323119249485],[125,147,73,-0.3232276132135654],[125,147,74,-0.32094636795998654],[125,147,75,-0.24752186626266706],[125,147,76,-0.18961878005745814],[125,147,77,-0.18639650725585594],[125,147,78,-0.24331576945258862],[125,147,79,-0.28278749157263494],[125,148,64,-0.16743597360726525],[125,148,65,-0.20911776003247834],[125,148,66,-0.1522805827924464],[125,148,67,-0.08249927672144397],[125,148,68,-0.039852453965876715],[125,148,69,-0.04629593926663513],[125,148,70,-0.09059504183196726],[125,148,71,-0.17559746579092325],[125,148,72,-0.2543504836943714],[125,148,73,-0.3228391383302952],[125,148,74,-0.32020416061986634],[125,148,75,-0.24699781384485447],[125,148,76,-0.1894825280923645],[125,148,77,-0.18613418260861597],[125,148,78,-0.2426943441887429],[125,148,79,-0.2821893764771417],[125,149,64,-0.16679791958798373],[125,149,65,-0.20870071816478672],[125,149,66,-0.15234880626267563],[125,149,67,-0.08256356330956079],[125,149,68,-0.040023314812602746],[125,149,69,-0.046624795205572174],[125,149,70,-0.09034428645285926],[125,149,71,-0.17490832130842232],[125,149,72,-0.253840682278728],[125,149,73,-0.32234761971073267],[125,149,74,-0.3193624197815142],[125,149,75,-0.24640394482332853],[125,149,76,-0.18929488987882315],[125,149,77,-0.18581455740450578],[125,149,78,-0.241991686357295],[125,149,79,-0.28150120723539257],[125,150,64,-0.16611164285366484],[125,150,65,-0.20821878771659738],[125,150,66,-0.15236975353773316],[125,150,67,-0.08259935375895656],[125,150,68,-0.04017921646451468],[125,150,69,-0.04693714334608731],[125,150,70,-0.09006401635203128],[125,150,71,-0.17416668906577312],[125,150,72,-0.2532542061198918],[125,150,73,-0.32175347977589713],[125,150,74,-0.31842198014900247],[125,150,75,-0.24574074953927746],[125,150,76,-0.18905578727376673],[125,150,77,-0.18543768750732417],[125,150,78,-0.24120844095845162],[125,150,79,-0.2807236620354723],[125,151,64,-0.16537786141702235],[125,151,65,-0.20767245422783817],[125,151,66,-0.15234333225061844],[125,151,67,-0.08260651508726563],[125,151,68,-0.04031980626252224],[125,151,69,-0.047232326014538854],[125,151,70,-0.08975413640202275],[125,151,71,-0.173373090320645],[125,151,72,-0.25259152104282234],[125,151,73,-0.3210572659847834],[125,151,74,-0.3173837972410683],[125,151,75,-0.24500879819884552],[125,151,76,-0.18876520351563508],[125,151,77,-0.18500370493267226],[125,151,78,-0.24034535925317468],[125,151,79,-0.2798575290434583],[125,152,64,-0.16459734904060835],[125,152,65,-0.2070622860462258],[125,152,66,-0.1522695152469677],[125,152,67,-0.0825849586857729],[125,152,68,-0.040444757967055635],[125,152,69,-0.047509712457061405],[125,152,70,-0.0894145913128271],[125,152,71,-0.17252810503875432],[125,152,72,-0.2518531788064981],[125,152,73,-0.32025964985296435],[125,152,74,-0.31624894519742214],[125,152,75,-0.24420873965664638],[125,152,76,-0.18842318365211522],[125,152,77,-0.18451281791969987],[125,152,78,-0.23940329721196002],[125,152,79,-0.2789037048127148],[125,153,64,-0.16377093348309002],[125,153,65,-0.20638893305437217],[125,153,66,-0.15214834076705097],[125,153,67,-0.08253464061096845],[125,153,68,-0.04055377269075023],[125,153,69,-0.047768700700827026],[125,153,70,-0.0890453661586733],[125,153,71,-0.17163237088051686],[125,153,72,-0.25103981621825944],[125,153,73,-0.3193614257235323],[125,153,74,-0.3150186143631434],[125,153,75,-0.24334130006658994],[125,153,76,-0.18802983485792008],[125,153,77,-0.18396531084766204],[125,153,78,-0.2383832137468991],[125,153,79,-0.2778631924793213],[125,154,64,-0.16289949464869652],[125,154,65,-0.20565312524096976],[125,154,66,-0.15197991249916984],[125,154,67,-0.08245556178216157],[125,154,68,-0.040646579764377105],[125,154,69,-0.04800871933631141],[125,154,70,-0.0886464868065286],[125,154,71,-0.17068658207018228],[125,154,72,-0.25015215408123254],[125,154,73,-0.31836350929355933],[125,154,74,-0.31369410865827807],[125,154,75,-0.24240728140370882],[125,154,76,-0.18758532664051447],[125,154,77,-0.18336154399636104],[125,154,78,-0.2372861687318786],[125,154,79,-0.27673709974872],[125,155,64,-0.16198396264510667],[125,155,65,-0.2048556711199822],[125,155,66,-0.1517643995038829],[125,155,67,-0.0823477680841558],[125,155,68,-0.04072293753293005],[125,155,69,-0.048229229214402446],[125,155,70,-0.08821802024411497],[125,155,71,-0.1696914881502591],[125,155,72,-0.24919099597745545],[125,155,73,-0.3172669358999924],[125,155,74,-0.31227684274037093],[125,155,75,-0.24140755986101406],[125,155,76,-0.18708989093202072],[125,155,77,-0.18270195315004767],[125,155,78,-0.2361133208164338],[125,155,79,-0.27552663667931054],[125,156,64,-0.1610253157552603],[125,156,65,-0.2039974560021636],[125,156,66,-0.1515020360088419],[125,156,67,-0.0822113503742792],[125,156,68,-0.0407826340790226],[125,156,69,-0.04842972505249566],[125,156,70,-0.08776007480557135],[125,156,71,-0.16864789262434862],[125,156,72,-0.24815722688973535],[125,156,73,-0.31607285856950496],[125,156,74,-0.3107683389681231],[125,156,75,-0.2403430841256309],[125,156,76,-0.18654382206580353],[125,156,77,-0.18198704904478574],[125,156,78,-0.23486592503932166],[125,156,79,-0.27423311326919764],[125,157,64,-0.16002457832880218],[125,157,65,-0.20307944012365287],[125,157,66,-0.1511931210744061],[125,157,67,-0.0820464443933496],[125,157,68,-0.04082548787097737],[125,157,69,-0.04860973694402791],[125,157,70,-0.08727280029320898],[125,157,71,-0.16755665149180973],[125,157,72,-0.2470518116657281],[125,157,73,-0.3147825458375342],[125,157,74,-0.3091702241749157],[125,157,75,-0.2392148735387771],[125,157,76,-0.18594747663657002],[125,157,77,-0.18121741665977173],[125,157,78,-0.23354533024848564],[125,157,79,-0.2728579368528975],[125,158,64,-0.15898281859907468],[125,158,65,-0.20210265663678068],[125,158,66,-0.15083801813059886],[125,158,67,-0.08185323058048202],[125,158,68,-0.0408513483332844],[125,158,69,-0.04876883176628609],[125,158,70,-0.08675638799418936],[125,158,71,-0.16641867167799607],[125,158,72,-0.24587579332815787],[125,158,73,-0.31339737934235073],[125,158,74,-0.30748422626138616],[125,158,75,-0.23802401614438878],[125,158,76,-0.1853012732431515],[125,158,77,-0.1803937143535876],[125,158,78,-0.23215297633463552],[125,158,79,-0.2714026093153007],[125,159,64,-0.15790114643173553],[125,159,65,-0.2010682094686027],[125,159,66,-0.15043715438634125],[125,159,67,-0.08163193379193631],[125,159,68,-0.04086009633736018],[125,159,69,-0.04890661448168436],[125,159,70,-0.08621107059129386],[125,159,71,-0.16523490936407842],[125,159,72,-0.24463029123549881],[125,159,73,-0.3119188512006247],[125,159,74,-0.30571217061667105],[125,159,75,-0.23677166663141494],[125,159,76,-0.18460569211344743],[125,159,77,-0.17951667284682188],[125,159,78,-0.23069039128618934],[125,159,79,-0.2698687241306657],[125,160,64,-0.15678071101123],[125,160,65,-0.19997727105301694],[125,160,66,-0.149991020112277],[125,160,67,-0.0813828229244995],[125,160,68,-0.04085164461080835],[125,160,69,-0.04902272932808119],[125,160,70,-0.0856371219672889],[125,160,71,-0.16400636822071707],[125,160,72,-0.24331649909783468],[125,160,73,-0.3103485611715519],[125,160,74,-0.3038559763783352],[125,160,75,-0.2354590441750423],[125,160,76,-0.18386127461135685],[125,160,77,-0.17858709405297432],[125,160,78,-0.22915918807381833],[125,160,79,-0.2682579632348948],[125,161,64,-0.15562269847149773],[125,161,65,-0.19883107994268995],[125,161,66,-0.14950016779891281],[125,161,67,-0.08110621044424557],[125,161,68,-0.04082593806371822],[125,161,69,-0.04911686089416856],[125,161,70,-0.08503485690280864],[125,161,71,-0.16273409755014498],[125,161,72,-0.24193568285301703],[125,161,73,-0.3086882136171893],[125,161,74,-0.30191765254137365],[125,161,75,-0.23408743018230435],[125,161,76,-0.18306862262588744],[125,161,77,-0.1776058497600539],[125,161,78,-0.22756106137334292],[125,161,79,-0.26657209373977275],[125,162,64,-0.15442832947738305],[125,162,65,-0.1976309383073121],[125,162,66,-0.14896521119215456],[125,162,67,-0.08080245182178915],[125,162,68,-0.040782954030796396],[125,162,69,-0.04918873507635168],[125,162,70,-0.08440463066798942],[125,162,71,-0.16141919034141905],[125,162,72,-0.24048917840858425],[125,162,73,-0.3069396142671924],[125,162,74,-0.2998992939270039],[125,162,75,-0.2326581659477239],[125,162,76,-0.18222839784296357],[125,162,77,-0.17657388016573564],[125,162,78,-0.22589778413615044],[125,162,79,-0.26481296449825925],[125,163,64,-0.1531988567633026],[125,163,65,-0.19637820932499772],[125,163,66,-0.1483868242087001],[125,163,67,-0.08047194487546581],[125,163,68,-0.040722702428445404],[125,163,69,-0.04923811991399937],[125,163,70,-0.08374683850847096],[125,163,71,-0.16006278124382078],[125,163,72,-0.23897838925525025],[125,163,73,-0.30510466679665205],[125,163,74,-0.2978030770222301],[125,163,75,-0.23117265022477917],[125,163,76,-0.18134132090080807],[125,163,77,-0.1754921922693965],[125,163,78,-0.22417120401671323],[125,163,79,-0.26298250253026995],[125,164,64,-0.15193556263580715],[125,164,65,-0.1950743144739429],[125,164,66,-0.1477657397341416],[125,164,67,-0.08011512902420419],[125,164,68,-0.040645225826239015],[125,164,69,-0.04926482630043027],[125,164,70,-0.08306191502676963],[125,164,71,-0.15866604446361918],[125,164,72,-0.23740478395811165],[125,164,73,-0.30318536922625355],[125,164,74,-0.2956312557014475],[125,164,75,-0.2296323367191631],[125,164,76,-0.18040817043015045],[125,164,77,-0.17436185812484525],[125,164,78,-0.22238323966719958],[125,164,79,-0.26108270931875865],[125,165,64,-0.15063975644669828],[125,165,65,-0.19372073073169302],[125,165,66,-0.14710274830698616],[125,165,67,-0.0797324844521333],[125,165,68,-0.040550599432532614],[125,165,69,-0.04926870856743875],[125,165,70,-0.0823503334603497],[125,165,71,-0.15723019158954915],[125,165,72,-0.23576989353202424],[125,165,73,-0.3011838101544357],[125,165,74,-0.2933861568415713],[125,165,75,-0.22803873150993875],[125,165,76,-0.17942978198087184],[125,165,77,-0.1731840129579973],[125,165,78,-0.22053587690951004],[125,165,79,-0.25911565698621414],[125,166,64,-0.14931277204336796],[125,166,65,-0.19231898768958436],[125,166,66,-0.14639869669214697],[125,166,67,-0.07932453118727076],[125,166,68,-0.040438930994272065],[125,166,69,-0.04924966494165837],[125,166,70,-0.08161260485809498],[125,166,71,-0.1557564693525315],[125,166,72,-0.2340753087078469],[125,166,73,-0.2991021648316188],[125,166,74,-0.2910701758423018],[125,166,75,-0.22639339040475526],[125,166,76,-0.17840704683701925],[125,166,77,-0.17195985315415738],[125,166,78,-0.21863116479535075],[125,166,79,-0.25708348436191114],[125,167,64,-0.14795596520305596],[125,167,65,-0.19087066459017693],[125,167,66,-0.14565448634785727],[125,167,67,-0.07889182809696306],[125,167,68,-0.04031036061141225],[125,167,69,-0.04920763787157006],[125,167,70,-0.08084927715724384],[125,167,71,-0.154246157325321],[125,167,72,-0.23232267709657176],[125,167,73,-0.29694269108705273],[125,167,74,-0.2886857720633609],[125,167,75,-0.2246979162354738],[125,167,76,-0.17734091072255453],[125,167,77,-0.1706906341200781],[125,167,78,-0.21667121156531824],[125,167,79,-0.2549883929505825],[125,168,64,-0.14657071105765193],[125,168,65,-0.18937738729562192],[125,168,66,-0.14487107179024916],[125,168,67,-0.07843497180300182],[125,168,68,-0.04016506046664416],[125,168,69,-0.04914261422442731],[125,168,70,-0.08006093416316931],[125,168,71,-0.15270056556784983],[125,168,72,-0.23051370025852844],[125,168,73,-0.2947077251191098],[125,168,74,-0.2862354641905591],[125,168,75,-0.22295395610054838],[125,168,76,-0.17623237240048795],[125,168,77,-0.1693776680262997],[125,168,78,-0.21465818051812668],[125,168,79,-0.2528326428132989],[125,169,64,-0.14515840151565373],[125,169,65,-0.18784082519510986],[125,169,66,-0.14404945886022186],[125,169,67,-0.07795459551966112],[125,169,68,-0.04000323447148971],[125,169,69,-0.04905462535290812],[125,169,70,-0.07924819443475895],[125,169,71,-0.15112103222417514],[125,169,72,-0.22865013068511517],[125,169,73,-0.29239967716024884],[125,169,74,-0.28372182554267206],[125,169,75,-0.22116319856062114],[125,169,76,-0.17508248216845707],[125,169,77,-0.16802232143574675],[125,169,78,-0.21259428580138973],[125,169,79,-0.2506185483715681],[125,170,64,-0.1437204426877784],[125,170,65,-0.1862626880596339],[125,170,66,-0.14319070289749744],[125,170,67,-0.077451367818133],[125,170,68,-0.03982511783009738],[125,170,69,-0.04894374703175401],[125,170,70,-0.07841171007841387],[125,170,71,-0.14950892107695465],[125,170,72,-0.22673376870063863],[125,170,73,-0.2900210270281132],[125,170,74,-0.28114747933108836],[125,170,75,-0.21932737079380119],[125,170,76,-0.1738923402541177],[125,170,77,-0.1666260128248897],[125,170,78,-0.21048178813548088],[125,170,79,-0.2483484741457634],[125,171,64,-0.14225825232267747],[125,171,65,-0.18464472285245537],[125,171,66,-0.14229590682712936],[125,171,67,-0.07692599132116526],[125,171,68,-0.03963097652245124],[125,171,69,-0.04881009926522369],[125,171,70,-0.07755216545408232],[125,171,71,-0.14786561906550097],[125,171,72,-0.2247664592920612],[125,171,73,-0.2875743195745339],[125,171,74,-0.2785150938842239],[125,171,75,-0.21744823571715496],[125,171,76,-0.1726630951141053],[125,171,77,-0.16519021000420708],[125,171,78,-0.20832299048219177],[125,171,79,-0.24602483043912093],[125,172,64,-0.14077325725905063],[125,172,65,-0.18298871050370144],[125,172,66,-0.1413662191639793],[125,172,67,-0.07637920133191359],[125,172,68,-0.03942110670896826],[125,172,69,-0.04865384596663303],[125,172,70,-0.07667027579697157],[125,172,71,-0.1461925337734325],[125,172,72,-0.22275008887453793],[125,172,73,-0.2850621600443873],[125,172,74,-0.2758273778486225],[125,172,75,-0.2155275890809252],[125,172,76,-0.17139594164062863],[125,172,77,-0.16371642744499562],[125,172,78,-0.20612023366995946],[125,172,79,-0.24365006897858985],[125,173,64,-0.13926689090032274],[125,173,65,-0.1812964626575852],[125,173,66,-0.14040283194097283],[125,173,67,-0.07581176440127857],[125,173,68,-0.039195834058777065],[125,173,69,-0.048475194511757504],[125,173,70,-0.07576678575889326],[125,173,71,-0.1444910908919657],[125,173,72,-0.22068658200074312],[125,173,73,-0.2824872093564441],[125,173,74,-0.27308707537857413],[125,173,75,-0.21356725654197747],[125,173,76,-0.17009211928008824],[125,173,77,-0.16220622351990852],[125,173,78,-0.20387589198749814],[125,173,79,-0.2412266785238294],[125,174,64,-0.13774059071791467],[125,174,65,-0.17956981840078992],[125,174,66,-0.13940697856723677],[125,174,67,-0.07522447683826748],[125,174,68,-0.03895551300430923],[125,174,69,-0.04827439516839958],[125,174,70,-0.07484246787350166],[125,174,71,-0.1427627316649086],[125,174,72,-0.21857789802208286],[125,174,73,-0.2798521793185048],[125,174,74,-0.270296961325992],[125,174,75,-0.2115690907229834],[125,174,76,-0.16875291006846077],[125,174,77,-0.16066119766494594],[125,174,78,-0.2015923687577195],[125,174,79,-0.23875718045567568],[125,175,64,-0.13619579578894125],[125,175,65,-0.17781064098054303],[125,175,66,-0.13837993162244563],[125,175,67,-0.0746181631681069],[125,175,68,-0.038700525925082954],[125,175,69,-0.048051740404853514],[125,175,70,-0.07389812094988707],[125,175,71,-0.14100891032133556],[125,175,72,-0.21642602770992286],[125,175,73,-0.2771598277892134],[125,175,74,-0.2674598364421249],[125,175,75,-0.2095349682637958],[125,175,76,-0.16737963658848531],[125,175,77,-0.1590829874708864],[125,175,78,-0.19927209190379258],[125,175,79,-0.23624412435534448],[125,176,64,-0.13463394437396148],[125,176,65,-0.17602081452086635],[125,176,66,-0.13732300059393246],[125,176,67,-0.07399367454304737],[125,176,68,-0.03843128226385431],[125,176,69,-0.04780756408048024],[125,176,70,-0.07293456839924918],[125,176,71,-0.13923109150187807],[125,176,72,-0.214232989844961],[125,176,73,-0.2744129537989584],[125,176,74,-0.2645785226024574],[125,176,75,-0.2074667868713752],[125,176,76,-0.1659736598539472],[125,176,77,-0.15747326571238388],[125,176,78,-0.19691750951910514],[125,176,79,-0.23369008358550472],[125,177,64,-0.13305647154023564],[125,177,65,-0.17420224074549356],[125,177,66,-0.1362375295633875],[125,177,67,-0.07335188711103952],[125,177,68,-0.038148217578617964],[125,177,69,-0.04754224052209156],[125,177,70,-0.07195265649960733],[125,177,71,-0.13743074768450322],[125,177,72,-0.2120008277829232],[125,177,73,-0.2716143926423811],[125,177,74,-0.26165585806601505],[125,177,75,-0.20536646237464315],[125,177,76,-0.1645363771267282],[125,177,77,-0.15583373732327557],[125,177,78,-0.19453108545287984],[125,177,79,-0.23109765088434286],[125,178,64,-0.13146480683568945],[125,178,65,-0.17235683571582802],[125,178,66,-0.13512489485010665],[125,178,67,-0.07269370034759301],[125,178,68,-0.037851792534159094],[125,178,69,-0.04725618349024234],[125,178,70,-0.07095325260368407],[125,178,71,-0.13560935661554024],[125,178,72,-0.2097316060046945],[125,178,73,-0.2687670109549177],[125,178,74,-0.2586946927799647],[125,178,75,-0.20323592579048066],[125,178,76,-0.16306921967247612],[125,178,77,-0.15416613632677395],[125,178,78,-0.19211529492300025],[125,178,79,-0.22846943398352165],[125,179,64,-0.12986037201851233],[125,179,65,-0.17048652659221838],[125,179,66,-0.1339865026179663],[125,179,67,-0.0720200353563272],[125,179,68,-0.03754249183712806],[125,179,69,-0.046949845039969886],[125,179,70,-0.06993724329527201],[125,179,71,-0.13376839875155733],[125,179,72,-0.20742740665891168],[125,179,73,-0.26587370178576275],[125,179,74,-0.2556978837401422],[125,179,75,-0.20107712040699582],[125,179,76,-0.16157365046103275],[125,179,77,-0.15247222272944197],[125,179,78,-0.18967262016744246],[125,179,79,-0.22580805126073938],[125,180,64,-0.12824457884712387],[125,180,65,-0.16859324842675003],[125,180,66,-0.13282378645346798],[125,180,67,-0.07133183314388061],[125,180,68,-0.037220823118861275],[125,180,69,-0.04662371428093939],[125,180,70,-0.06890553249957859],[125,180,71,-0.13190935471760704],[125,180,72,-0.20509032610502742],[125,180,73,-0.26293737967959036],[125,180,74,-0.2526682904178675],[125,180,75,-0.1988919988901335],[125,180,76,-0.16005116181803344],[125,180,77,-0.1507537793880289],[125,180,78,-0.1872055461455696],[125,180,79,-0.2231161274374768],[125,181,64,-0.12661882693491813],[125,181,65,-0.16667894099557368],[125,181,66,-0.13163820492232767],[125,181,67,-0.0706300528749775],[125,181,68,-0.03688731577037932],[125,181,69,-0.046278316042328946],[125,181,70,-0.06785903955316683],[125,181,71,-0.13003370278715748],[125,181,72,-0.20272247146469],[125,181,73,-0.2599609757791917],[125,181,74,-0.24960877026303263],[125,181,75,-0.19668252041950812],[125,181,76,-0.1585032730342613],[125,181,77,-0.14901260885834597],[125,181,78,-0.1847165563002573],[125,181,79,-0.2203962893321905],[125,182,64,-0.12498450167390868],[125,182,65,-0.16474554567861588],[125,182,66,-0.13043123911218735],[125,182,67,-0.06991567011354818],[125,182,68,-0.036542519734183196],[125,182,69,-0.04591420944812709],[125,182,70,-0.06679869723918795],[125,182,71,-0.12814291638882092],[125,182,72,-0.2003259571891395],[125,182,73,-0.25694743296102074],[125,182,74,-0.2465221742930854],[125,182,75,-0.19445064785921845],[125,182,76,-0.1569315279395562],[125,182,77,-0.1472505302354575],[125,182,78,-0.1822081283915546],[125,182,79,-0.21765116167896484],[125,183,64,-0.12334297223114506],[125,183,65,-0.16279500239438463],[125,183,66,-0.12920439016918694],[125,183,67,-0.0691896750559605],[125,183,68,-0.0361870042577181],[125,183,69,-0.04553198640891827],[125,183,70,-0.06572544979376153],[125,183,71,-0.12623846164484925],[125,183,72,-0.19790290165021232],[125,183,73,-0.25389970101548365],[125,183,74,-0.24341134277719934],[125,183,75,-0.19219834496929936],[125,183,76,-0.15533749244830625],[125,183,77,-0.14546937599459253],[125,183,78,-0.17968273041234878],[125,183,79,-0.21488336302138328],[125,184,64,-0.12169558962141767],[125,184,65,-0.1608292465973215],[125,184,66,-0.12795917683616],[125,184,67,-0.06845307076246447],[125,184,68,-0.035821356613505335],[125,184,69,-0.04513227003650468],[125,184,70,-0.06464025088937253],[125,184,71,-0.12432179494609383],[125,184,72,-0.19545542376230185],[125,184,73,-0.25082073188351117],[125,184,74,-0.24027910102445427],[125,184,75,-0.1899275736632426],[125,184,76,-0.15372275208365865],[125,184,77,-0.1436709888421687],[125,184,78,-0.17714281659610734],[125,184,79,-0.21209550169098523],[125,185,64,-0.12004368485946088],[125,185,65,-0.1588502063449402],[125,185,66,-0.12669713300029756],[125,185,67,-0.06770687139302074],[125,185,68,-0.03544618079109698],[125,185,69,-0.044715712987994094],[125,185,70,-0.06354406160118493],[125,185,71,-0.12239436056788193],[125,185,72,-0.19298563964242574],[125,185,73,-0.24771347496069898],[125,185,74,-0.23712825528445178],[125,185,75,-0.18764029131688004],[125,185,76,-0.15208890948775702],[125,185,77,-0.14185721858635764],[125,185,78,-0.17459082352644412],[125,185,79,-0.2092901718793711],[125,186,64,-0.11838856719457018],[125,186,65,-0.1568597994417753],[125,186,66,-0.12541980525819246],[125,186,67,-0.06695210045378977],[125,186,68,-0.035062096166205654],[125,186,69,-0.04428299574631273],[125,186,70,-0.06243784836225816],[125,186,71,-0.12045758833106163],[125,186,72,-0.1904956593153419],[125,186,73,-0.2445808724800183],[125,186,74,-0.2339615887683634],[125,186,75,-0.18533844813375255],[125,186,76,-0.15043758192545462],[125,186,77,-0.14002991903663378],[125,186,78,-0.17202916635789717],[125,186,79,-0.20646994981263836],[125,187,64,-0.11673152243018789],[125,187,65,-0.1548599306668768],[125,187,66,-0.12412875050617396],[125,187,67,-0.06618978906054958],[125,187,68,-0.0346697361524341],[125,187,69,-0.04383482484428258],[125,187,70,-0.06132258091357559],[125,187,71,-0.11851289131213806],[125,187,72,-0.18798758347037306],[125,187,73,-0.24142585498373623],[125,187,74,-0.2307818577979297],[125,187,75,-0.18302398457188815],[125,187,76,-0.1487703987890422],[125,187,77,-0.13819094494168632],[125,187,78,-0.16946023515687889],[125,187,79,-0.20363739003644446],[125,188,64,-0.11507381133066462],[125,188,65,-0.15285248909128918],[125,188,66,-0.12282553356383201],[125,188,67,-0.06542097422533491],[125,188,68,-0.034269746841140744],[125,188,69,-0.043371931039619796],[125,188,70,-0.060199230254774944],[125,188,71,-0.11656166360613528],[125,188,72,-0.1854635002762967],[125,188,73,-0.23825133689479178],[125,188,74,-0.22759178808942462],[125,188,75,-0.18069882883668156],[125,188,76,-0.14708899911158393],[125,188,77,-0.13634214897497957],[125,188,78,-0.1668863913712991],[125,188,79,-0.20079502181953213],[125,189,64,-0.11341666811711662],[125,189,65,-0.15083934549172592],[125,189,66,-0.12151172483867041],[125,189,67,-0.06464669717264597],[125,189,68,-0.03386278563511538],[125,189,69,-0.0428950674484484],[125,189,70,-0.059068766601471125],[125,189,71,-0.11460527814557671],[125,189,72,-0.1829254822604283],[125,189,73,-0.2350602121975505],[125,189,74,-0.22439407117918175],[125,189,75,-0.17836489444443765],[125,189,76,-0.14539502909658533],[125,189,77,-0.13448537877722094],[125,189,78,-0.1643099644369868],[125,189,79,-0.1979453456831977],[125,190,64,-0.11176129905390347],[125,190,65,-0.14882234986628395],[125,190,66,-0.12018889803974737],[125,190,67,-0.06386800169151588],[125,190,68,-0.03344951988175795],[125,190,69,-0.04240500764501381],[125,190,70,-0.05793215735490556],[125,190,71,-0.11264508457858703],[125,190,72,-0.18037558325764022],[125,190,73,-0.23185535023736695],[125,190,74,-0.2211913609967188],[125,190,75,-0.17602407786086896],[125,190,76,-0.14369013967170538],[125,190,77,-0.13262247406481598],[125,190,78,-0.16173324852850446],[125,190,79,-0.19509083006368377],[125,191,64,-0.11010888112691249],[125,191,65,-0.14680332905773763],[125,191,66,-0.11885862794811135],[125,191,67,-0.06308593252971038],[125,191,68,-0.03303062551151562],[125,191,69,-0.041902543735426144],[125,191,70,-0.05679036508958988],[125,191,71,-0.11068240720881495],[125,191,72,-0.1778158354347328],[125,191,73,-0.22863959164794703],[125,191,74,-0.21798627059098788],[125,191,75,-0.1736782562186156],[125,191,76,-0.1419759840742337],[125,191,77,-0.13075526381323332],[125,191,78,-0.15915849946145577],[125,191,79,-0.19223390811399257],[125,192,64,-0.10846056081452876],[125,192,65,-0.14478408448965982],[125,192,66,-0.11752248825181837],[125,192,67,-0.062301533836335105],[125,192,68,-0.03260678568740752],[125,192,69,-0.04138848441338748],[125,192,70,-0.05564434556449398],[125,192,71,-0.10871854299955783],[125,192,72,-0.17524824639525458],[125,192,73,-0.22541574441506984],[125,192,74,-0.21478136901481726],[125,192,75,-0.17132928511769385],[125,192,76,-0.1402542154761197],[125,192,77,-0.12888556352409453],[125,192,78,-0.15658793175294944],[125,192,79,-0.18937697465122033],[125,193,64,-0.10681745295177293],[125,193,65,-0.1427663900202382],[125,193,66,-0.1161820494531908],[125,193,67,-0.06151584765903622],[125,193,68,-0.03217868947145045],[125,193,69,-0.040863653005896436],[125,193,70,-0.0544950457631629],[125,193,71,-0.10675475964408403],[125,193,72,-0.1726747963694524],[125,193,73,-0.22218658008467565],[125,193,74,-0.21157917837201112],[125,193,75,-0.16897899651247197],[125,193,76,-0.13852648465623757],[125,193,77,-0.12701517258452427],[125,193,78,-0.15402371584628605],[125,193,79,-0.18652238325493983],[125,194,64,-0.10518063968778724],[125,194,65,-0.1407519899183334],[125,194,66,-0.11483887685589186],[125,194,67,-0.060729912501917976],[125,194,68,-0.03174703051378985],[125,194,69,-0.04032888551694237],[125,194,70,-0.05334340196794887],[125,194,71,-0.1047922937037812],[125,194,72,-0.17009743549367018],[125,194,73,-0.21895483012287512],[125,194,74,-0.20838217103113693],[125,194,75,-0.16662919668862414],[125,194,76,-0.13679443772760785],[125,194,77,-0.12514587172715075],[125,194,78,-0.15146797550548233],[125,194,79,-0.1836724435217369],[125,195,64,-0.10355116953646237],[125,195,65,-0.13874259696596092],[125,195,66,-0.11349452863929027],[125,195,67,-0.059944761950253146],[125,195,68,-0.03131250577037168],[125,195,69,-0.039785028677264],[125,195,70,-0.05219033787339781],[125,195,71,-0.1028323488154037],[125,195,72,-0.1675180811830849],[125,195,73,-0.21572318243481445],[125,195,74,-0.20519276700938172],[125,195,75,-0.1642816643331694],[125,195,76,-0.13505971392713934],[125,195,77,-0.12327942059881956],[125,195,78,-0.14892278538462525],[125,195,79,-0.18082941848042222],[125,196,64,-0.10193005741108291],[125,196,65,-0.1367398900528605],[125,196,66,-0.11215055242614147],[125,196,67,-0.05916142181652706],[125,196,68,-0.030875813097963008],[125,196,69,-0.03923293743565482],[125,196,70,-0.051036762819765345],[125,196,71,-0.10087609409811989],[125,196,72,-0.16493861539863802],[125,196,73,-0.21249427757973463],[125,196,74,-0.2020133315205703],[125,196,75,-0.16193814935349835],[125,196,76,-0.13332394420716967],[125,196,77,-0.12141755592009253],[125,196,78,-0.146390169302607],[125,196,79,-0.1779955229798052],[125,197,64,-0.10031838875257883],[125,197,65,-0.1347454373495734],[125,197,66,-0.11080829404113131],[125,197,67,-0.05838072539926267],[125,197,68,-0.030437513435433255],[125,197,69,-0.03867340497595629],[125,197,70,-0.04988357958377577],[125,197,71,-0.09892468116499918],[125,197,72,-0.16236086172191913],[125,197,73,-0.209270652210473],[125,197,74,-0.198846172923043],[125,197,75,-0.15960044767268647],[125,197,76,-0.1315888319122811],[125,197,77,-0.11956204156590472],[125,197,78,-0.14387215822629526],[125,197,79,-0.1751730154769204],[125,198,64,-0.0987174132367211],[125,198,65,-0.13276062670389682],[125,198,66,-0.1094687194251427],[125,198,67,-0.05760314196962604],[125,198,68,-0.02999790417117183],[125,198,69,-0.03810709567930947],[125,198,70,-0.04873169470230648],[125,198,71,-0.096979278329294],[125,198,72,-0.15978658341134608],[125,198,73,-0.20605469814510002],[125,198,74,-0.19569354790757318],[125,198,75,-0.15727046669484163],[125,198,76,-0.1298562063363109],[125,198,77,-0.11771469374136757],[125,198,78,-0.14137083205662668],[125,198,79,-0.17236427482844713],[125,199,64,-0.09712835808583405],[125,199,65,-0.13078679745968244],[125,199,66,-0.10813274365137299],[125,199,67,-0.05682909630418938],[125,199,68,-0.029557257993082293],[125,199,69,-0.03753466011892785],[125,199,70,-0.047582003099451486],[125,199,71,-0.09504105491727095],[125,199,72,-0.15721753638911234],[125,199,73,-0.20284876459105947],[125,199,74,-0.19255766629539642],[125,199,75,-0.15495008605423527],[125,199,76,-0.1281278550238702],[125,199,77,-0.11587726654236936],[125,199,78,-0.13888820103906868],[125,199,79,-0.16957162569767137],[125,200,64,-0.09555240411075842],[125,200,65,-0.12882525644115606],[125,200,66,-0.10680127259580029],[125,200,67,-0.05605900941055491],[125,200,68,-0.029115852733682595],[125,200,69,-0.03695674863392288],[125,200,70,-0.04643538395069829],[125,200,71,-0.09311117465464304],[125,200,72,-0.15465547085196724],[125,200,73,-0.19965516723759189],[125,200,74,-0.18944068893222188],[125,200,75,-0.15264113886181416],[125,200,76,-0.1264055042108297],[125,200,77,-0.1140514394672584],[125,200,78,-0.13642619134800715],[125,200,79,-0.16679731590758093],[125,201,64,-0.09399068566071021],[125,201,65,-0.12687727702597923],[125,201,66,-0.10547520214001711],[125,201,67,-0.055293298064644766],[125,201,68,-0.028673970439964943],[125,201,69,-0.03637400980078446],[125,201,70,-0.04529269853288146],[125,201,71,-0.09119079190045096],[125,201,72,-0.15210212688221073],[125,201,73,-0.19647618461595073],[125,201,74,-0.1863447252619398],[125,201,75,-0.15034541058753143],[125,201,76,-0.12469081963184425],[125,201,77,-0.11223881848194371],[125,201,78,-0.1339866453055491],[125,201,79,-0.16404351578205417],[125,202,64,-0.09244429068456299],[125,202,65,-0.12494409832145209],[125,202,66,-0.10415541741706509],[125,202,67,-0.05453237436493703],[125,202,68,-0.028231896452653615],[125,202,69,-0.035787088938486256],[125,202,70,-0.04415478816903076],[125,202,71,-0.08928104801685789],[125,202,72,-0.14955923021580314],[125,202,73,-0.19331405465125062],[125,202,74,-0.18327183109849424],[125,202,75,-0.14806463808588238],[125,202,76,-0.1229854074214631],[125,202,77,-0.11044093719967754],[125,202,78,-0.13157132178278225],[125,202,79,-0.1613123176877402],[125,203,64,-0.09091417023207211],[125,203,65,-0.12302679988169476],[125,203,66,-0.10284268643793869],[125,203,67,-0.05377658926162864],[125,203,68,-0.027789889134275936],[125,203,69,-0.03519658896124858],[125,203,70,-0.04302242560092993],[125,203,71,-0.08738297189081343],[125,203,72,-0.14702832468653604],[125,203,73,-0.19017075744264433],[125,203,74,-0.18022380149441222],[125,203,75,-0.1458003409949051],[125,203,76,-0.12129067403919815],[125,203,77,-0.10865913048413706],[125,203,78,-0.12918174345540456],[125,203,79,-0.15860554570668597],[125,204,64,-0.08940055470516242],[125,204,65,-0.12112549685668667],[125,204,66,-0.10153697368571989],[125,204,67,-0.05302586919044966],[125,204,68,-0.0273479894336036],[125,204,69,-0.03460282605032588],[125,204,70,-0.041896017341821294],[125,204,71,-0.08549686296565286],[125,204,72,-0.14450971454130013],[125,204,73,-0.18704663105391064],[125,204,74,-0.17720084556927465],[125,204,75,-0.14355273574096322],[125,204,76,-0.11960691211342202],[125,204,77,-0.10689371079556297],[125,204,78,-0.12681821034419144],[125,204,79,-0.15592352849891986],[125,205,64,-0.08790337864969462],[125,205,65,-0.11923991800978838],[125,205,66,-0.10023792153025007],[125,205,67,-0.05227997322390232],[125,205,68,-0.02690615666826563],[125,205,69,-0.03400600481904358],[125,205,70,-0.04077583289603529],[125,205,71,-0.08362274968440367],[125,205,72,-0.1420032251116176],[125,205,73,-0.18394136379401177],[125,205,74,-0.17420253996610713],[125,205,75,-0.1413215091119824],[125,205,76,-0.11793394576682399],[125,205,77,-0.10514456109988951],[125,205,78,-0.12448051956400272],[125,205,79,-0.15326598252553922],[125,206,64,-0.08642260987976932],[125,206,65,-0.117369856518013],[125,206,66,-0.09894523118104612],[125,206,67,-0.051538695356727775],[125,206,68,-0.026464374488216296],[125,206,69,-0.0334063546757338],[125,206,70,-0.03966217533664929],[125,206,71,-0.0817607378215888],[125,206,72,-0.1395087937230455],[125,206,73,-0.1808547680624653],[125,206,74,-0.17122857129840172],[125,206,75,-0.13910642513407484],[125,206,76,-0.1162716412666114],[125,206,77,-0.10341159871608113],[125,206,78,-0.12216852276162254],[125,206,79,-0.15063270113329286],[125,207,64,-0.084958247948946],[125,207,65,-0.11551516773259707],[125,207,66,-0.09765866153854089],[125,207,67,-0.05080186366291639],[125,207,68,-0.026022650041984886],[125,207,69,-0.032804128870958425],[125,207,70,-0.038555378739370844],[125,207,71,-0.0799110059699776],[125,207,72,-0.13702646499132956],[125,207,73,-0.17778677585611632],[125,207,74,-0.16827873211168853],[125,207,75,-0.13690732308420248],[125,207,76,-0.11461990732986399],[125,207,77,-0.10169477510677058],[125,207,78,-0.11988212418545528],[125,207,79,-0.1480235522905467],[125,208,64,-0.08351032096141695],[125,208,65,-0.11367576463703573],[125,208,66,-0.09637802605457901],[125,208,67,-0.05006933840719087],[125,208,68,-0.025581012581158462],[125,208,69,-0.03219960278554011],[125,208,70,-0.037455804751738146],[125,208,71,-0.07807379928631275],[125,208,72,-0.1345563830776134],[125,208,73,-0.1747374302793115],[125,208,74,-0.16535291305363872],[125,208,75,-0.134724112352981],[125,208,76,-0.11297869270640969],[125,208,77,-0.09999407323450868],[125,208,78,-0.1176212759116306],[125,208,79,-0.1454384727712064],[125,209,64,-0.08207888250232237],[125,209,65,-0.11185161344007706],[125,209,66,-0.09510318966212701],[125,209,67,-0.049341010203753706],[125,209,68,-0.025139512077613446],[125,209,69,-0.03159307220194008],[125,209,70,-0.03636383922486668],[125,209,71,-0.076249423385439],[125,209,72,-0.13209878410490541],[125,209,73,-0.17170687724581016],[125,209,74,-0.16245109526695475],[125,209,75,-0.13255676743822542],[125,209,76,-0.11134798379709569],[125,209,77,-0.09830950498650562],[125,209,78,-0.11538597323499063],[125,209,79,-0.14287746250918895],[125,210,64,-0.0806640086883686],[125,210,65,-0.11004272930240502],[125,210,66,-0.09383406577159849],[125,210,67,-0.04861679821997261],[125,210,68,-0.024698217853424825],[125,210,69,-0.03098485156319576],[125,210,70,-0.03527988891225113],[125,210,71,-0.0744382383835774],[125,210,72,-0.12965398873533004],[125,210,73,-0.16869535737180774],[125,210,74,-0.1595733430025317],[125,210,75,-0.13040532306864516],[125,210,76,-0.10972780231016664],[125,210,77,-0.09664110867100524],[125,210,78,-0.11317625022628951],[125,210,79,-0.14034057912417783],[125,211,64,-0.07926579533989452],[125,211,65,-0.10824917219628849],[125,211,66,-0.0925706133318531],[125,211,67,-0.04789664842314875],[125,211,68,-0.024257217223807387],[125,211,69,-0.03037527222395103],[125,211,70,-0.03420437824054964],[125,211,71,-0.0726406530927235],[125,211,72,-0.12722239490930518],[125,211,73,-0.16570319806089723],[125,211,74,-0.1567197964515182],[125,211,75,-0.12826986945768207],[125,211,76,-0.10811820295826204],[125,211,77,-0.09498894658808178],[125,211,78,-0.11099217545692554],[125,211,79,-0.13782793261974832],[125,212,64,-0.07788435527536247],[125,212,65,-0.10647104289782992],[125,212,66,-0.09131283395445243],[125,212,67,-0.047180531868867184],[125,212,68,-0.023816614153738615],[125,212,69,-0.029764680698272],[125,212,70,-0.03313774615745064],[125,212,71,-0.07085711936900989],[125,212,72,-0.12480447074903882],[125,212,73,-0.16273080578292126],[125,212,74,-0.15389066479576366],[125,212,75,-0.12615054768790562],[125,212,76,-0.10651927119831721],[125,212,77,-0.09335310267725955],[125,212,78,-0.10883384789237044],[125,212,79,-0.13533968025510823],[125,213,64,-0.07651981572910539],[125,213,65,-0.10470847911178442],[125,213,66,-0.0900607691002598],[125,213,67,-0.046468443029785145],[125,213,68,-0.02337652792921589],[125,213,69,-0.029153436909123788],[125,213,70,-0.03208044306190533],[125,213,71,-0.06908812661868013],[125,213,72,-0.12240074762986758],[125,213,73,-0.15977865854967685],[125,213,74,-0.1510862194769084],[125,213,75,-0.12404754522676079],[125,213,76,-0.10493112101645517],[125,213,77,-0.09173368024400358],[125,213,78,-0.10670139295531055],[125,213,79,-0.13287602159183726],[125,214,64,-0.07517231589303236],[125,214,65,-0.10296165172922257],[125,214,66,-0.08881449732795972],[125,214,67,-0.045760398164077794],[125,214,68,-0.022937091844409674],[125,214,69,-0.028541912444554084],[125,214,70,-0.0310329278221383],[125,214,71,-0.0673341964659804],[125,214,72,-0.12001181342393336],[125,214,73,-0.15684729859129815],[125,214,74,-0.1483067876850358],[125,214,75,-0.12196109157481609],[125,214,76,-0.10335389275983826],[125,214,77,-0.09013079976685928],[125,214,78,-0.10459495875938245],[125,214,79,-0.1304371937171285],[125,215,64,-0.07384200458274924],[125,215,65,-0.10123076121846356],[125,215,66,-0.08757413160442601],[125,215,67,-0.045056433722999924],[125,215,68,-0.02249845190614674],[125,215,69,-0.027930488825658642],[125,215,70,-0.029995664886791274],[125,215,71,-0.06559587758767911],[125,215,72,-0.11763830592138338],[125,215,73,-0.1539373252377564],[125,215,74,-0.1455527460682457],[125,215,75,-0.11989145404785907],[125,215,76,-0.10178775101725378],[125,215,77,-0.08854459678666471],[125,215,78,-0.10251471251413262],[125,215,79,-0.12802346664501202],[125,216,64,-0.07252903802833101],[125,216,65,-0.09951603414983426],[125,216,66,-0.08633981667720161],[125,216,67,-0.04435660479727312],[125,216,68,-0.02206076555735308],[125,216,69,-0.027319555791455116],[125,216,70,-0.02896912149451545],[125,216,71,-0.06387374071926745],[125,216,72,-0.11528090643485903],[125,216,73,-0.1510493880103997],[125,216,74,-0.14282451466485038],[125,216,75,-0.11783893369434005],[125,216,76,-0.1002328825500417],[125,216,77,-0.08697521987895289],[125,216,78,-0.10046083710156915],[125,216,79,-0.12563513889696704],[125,217,64,-0.07123357778978878],[125,217,65,-0.09781771985493384],[125,217,66,-0.08511172650969756],[125,217,67,-0.04366098360227194],[125,217,68,-0.02162420042127803],[125,217,69,-0.026709509605821764],[125,217,70,-0.027953764987216592],[125,217,71,-0.06216837383810368],[125,217,72,-0.1129403335934876],[125,217,73,-0.1481841799288577],[125,217,74,-0.14012255106019525],[125,217,75,-0.11580386134983894],[125,217,76,-0.09868949427491228],[125,217,77,-0.08542282871044866],[125,217,78,-0.09843352782448024],[125,217,79,-0.12327253326330966],[125,218,64,-0.0699557887969627],[125,218,65,-0.09613608722104744],[125,218,66,-0.08389006177990098],[125,218,67,-0.04296965800211308],[125,218,68,-0.021188933068385818],[125,218,69,-0.026100751391562895],[125,218,70,-0.026950060231916425],[125,218,71,-0.06048037752877721],[125,218,72,-0.11061733733278863],[125,218,73,-0.14534243103877284],[125,218,74,-0.13744734477016],[125,218,75,-0.11378659383020719],[125,218,76,-0.097157811299994],[125,218,77,-0.08388759218021984],[125,218,78,-0.09643298932632584],[125,218,79,-0.12093599274651158],[125,219,64,-0.06869583751335429],[125,219,65,-0.0944714216213737],[125,219,66,-0.0826750474436308],[125,219,67,-0.042282730072956375],[125,219,68,-0.020755147807932996],[125,219,69,-0.025493685496626037],[125,219,70,-0.02595846715598734],[125,219,71,-0.05881036053596092],[125,219,72,-0.10831269308707553],[125,219,73,-0.14252490216594713],[125,219,74,-0.13479941185347907],[125,219,75,-0.1117875102650878],[125,219,76,-0.09563807501539102],[125,219,77,-0.08236968664584737],[125,219,78,-0.09445943268226294],[125,219,79,-0.11862587668747153],[125,220,64,-0.06745389022309624],[125,220,65,-0.09282402198162422],[125,220,66,-0.08146693036349621],[125,220,67,-0.041600314705914763],[125,220,68,-0.020323035506258812],[125,220,69,-0.024888717897322794],[125,220,70,-0.02497943840015194],[125,220,71,-0.057158935509798475],[125,220,72,-0.10602719619085715],[125,220,73,-0.1397323789023984],[125,220,74,-0.13217928975491258],[125,220,75,-0.10980700857342339],[125,220,76,-0.094130541239377],[125,220,77,-0.08086929423469492],[125,220,78,-0.09251307266050486],[125,220,79,-0.11634255707549739],[125,221,64,-0.06623011144003099],[125,221,65,-0.09119419798349433],[125,221,66,-0.08026597700488493],[125,221,67,-0.04092253825012995],[125,221,68,-0.019892792433901792],[125,221,69,-0.024286254643316754],[125,221,70,-0.024013417093364017],[125,221,71,-0.055526714948692865],[125,221,72,-0.10376165649567975],[125,221,73,-0.13696566582972555],[125,221,74,-0.12958753238120507],[125,221,75,-0.10784550208251574],[125,221,76,-0.09263547842129137],[125,221,77,-0.07938660124018093],[125,221,78,-0.09059412515293724],[125,221,79,-0.11408641504253623],[125,222,64,-0.065024662437552],[125,222,65,-0.08958226740533064],[125,222,66,-0.07907247120035041],[125,222,67,-0.04024953719660861],[125,222,68,-0.019464619143606806],[125,222,69,-0.023686700348897978],[125,222,70,-0.02306083475322549],[125,222,71,-0.0539143073439494],[125,222,72,-0.10151689320853731],[125,222,73,-0.13422558098487095],[125,222,74,-0.12702470541150873],[125,222,75,-0.10590341629202774],[125,222,76,-0.09115316590207184],[125,222,77,-0.07792179660270719],[125,222,78,-0.08870280477354572],[125,222,79,-0.11185783754187348],[125,223,64,-0.0638376998975833],[125,223,65,-0.0879885536001476],[125,223,66,-0.07788671198381661],[125,223,67,-0.039581456903475636],[125,223,68,-0.01903871938126575],[125,223,69,-0.0230904567348541],[125,223,70,-0.02212210931517708],[125,223,71,-0.052322313530317306],[125,223,72,-0.09929372995764565],[125,223,73,-0.1315129505730335],[125,223,74,-0.12449138184366595],[125,223,75,-0.10398118578414808],[125,223,76,-0.08968389223325823],[125,223,77,-0.07647507047469328],[125,223,78,-0.08683932262287171],[125,223,79,-0.10965721421120328],[125,224,64,-0.06266937467683689],[125,224,65,-0.08641338311099159],[125,224,66,-0.07670901149607783],[125,224,67,-0.03891845036337791],[125,224,68,-0.018615299031824635],[125,224,69,-0.022497921225042933],[125,224,70,-0.02119764329327973],[125,224,71,-0.05075132324602381],[125,224,72,-0.0970929900909707],[125,224,73,-0.1288286039320875],[125,224,74,-0.12198813777744076],[125,224,75,-0.10207925128097807],[125,224,76,-0.08822795355525156],[125,224,77,-0.07504661286902242],[125,224,78,-0.08500388421642391],[125,224,79,-0.1074849344196854],[125,225,64,-0.061519830688186276],[125,225,65,-0.08485708342340119],[125,225,66,-0.07553969296301866],[125,225,67,-0.03826067701375059],[125,225,68,-0.018194565102076923],[125,225,69,-0.021909485601451974],[125,225,70,-0.020287822074859012],[125,225,71,-0.04920191190528788],[125,225,72,-0.09491549221233814],[125,225,73,-0.12617336875232563],[125,225,74,-0.11951554843536234],[125,225,75,-0.10019805684993564],[125,225,76,-0.08678565203549596],[125,225,77,-0.07363661238999321],[125,225,78,-0.0831966875746065],[125,225,79,-0.10534138449822583],[125,226,64,-0.060389203894726434],[125,226,65,-0.08331998085446965],[125,226,66,-0.07437908874793867],[125,226,67,-0.03760830159065658],[125,226,68,-0.017776724742171946],[125,226,69,-0.021325534721247895],[125,226,70,-0.019393012350797222],[125,226,71,-0.047674637585716426],[125,226,72,-0.09276204595936723],[125,226,73,-0.12354806655477542],[125,226,74,-0.11707418442140288],[125,226,75,-0.09833804725770913],[125,226,76,-0.08535729436714633],[125,226,77,-0.07224525504569926],[125,226,78,-0.08141792147139199],[125,226,79,-0.10322694515184734],[125,227,64,-0.0592776214138921],[125,227,65,-0.08180239857781901],[125,227,66,-0.07322753847934692],[125,227,67,-0.03696149302693497],[125,227,68,-0.017361984307597337],[125,227,69,-0.020746445299037332],[125,227,70,-0.018513560682752825],[125,227,71,-0.04617003823236751],[125,227,72,-0.09063344802685809],[125,227,73,-0.12095350843076731],[125,227,74,-0.11466460821729373],[125,227,75,-0.09649966547308068],[125,227,76,-0.08394319032876973],[125,227,77,-0.07087272314066506],[125,227,78,-0.07966776383870927],[125,227,79,-0.10114198905271789],[125,228,64,-0.05818520072872297],[125,228,65,-0.08030465478349057],[125,228,66,-0.07208538725546197],[125,228,67,-0.036320423395319636],[125,228,68,-0.016950548463226942],[125,228,69,-0.02017258475719447],[125,228,70,-0.017649792208021618],[125,228,71,-0.044688629079553226],[125,228,72,-0.08853047843852055],[125,228,73,-0.1183904910447211],[125,228,74,-0.11228737091574077],[125,228,75,-0.09468335031859655],[125,228,76,-0.08254365140549091],[125,228,77,-0.0695191942473787],[125,228,78,-0.07794638032316646],[125,228,79,-0.09908687861198455],[125,229,64,-0.05711204900314721],[125,229,65,-0.07882706097149517],[125,229,66,-0.07095298392654956],[125,229,67,-0.03568526689714504],[125,229,68,-0.016542619330887545],[125,229,69,-0.019604310146771907],[125,229,70,-0.016802009482214986],[125,229,71,-0.04323090029075683],[125,229,72,-0.08645389706919272],[125,229,73,-0.11585979290142437],[125,229,74,-0.1099430091892863],[125,229,75,-0.09288953427076899],[125,229,76,-0.08115898947191791],[125,229,77,-0.06818484025523573],[125,229,78,-0.07625392299143692],[125,229,79,-0.09706196392819705],[125,230,64,-0.05605826249798763],[125,230,65,-0.0773699203775396],[125,230,66,-0.06983067945614506],[125,230,67,-0.03505619889723513],[125,230,68,-0.016138395681779587],[125,230,69,-0.019041967141185882],[125,230,70,-0.015970491459412633],[125,230,71,-0.04179731481634536],[125,230,72,-0.08440444041895653],[125,230,73,-0.11336217087838583],[125,230,74,-0.10763204249307709],[125,230,75,-0.09111864140823274],[125,230,76,-0.07978951553715953],[125,230,77,-0.06686982649534799],[125,230,78,-0.07459052918042154],[125,230,79,-0.09506758090980319],[125,231,64,-0.05502392608416286],[125,231,65,-0.07593352652913002],[125,231,66,-0.06871882536202682],[125,231,67,-0.034433395005459895],[125,231,68,-0.015738072174885185],[125,231,69,-0.018485889104476624],[125,231,70,-0.015155492608887317],[125,231,71,-0.040388306468007104],[125,231,72,-0.08238281863972453],[125,231,73,-0.11089835702305938],[125,231,74,-0.10535497049921184],[125,231,75,-0.08937108550691177],[125,231,76,-0.07843553855210925],[125,231,77,-0.06557431093950787],[125,231,78,-0.07295632048798198],[125,231,79,-0.09310404956877921],[125,232,64,-0.054009112849392346],[125,232,65,-0.07451816192999679],[125,232,66,-0.06761777223765897],[125,232,67,-0.033817030205369476],[125,232,68,-0.015341838642325509],[125,232,69,-0.017936396235570588],[125,232,70,-0.014357242166952373],[125,232,71,-0.03900427820809902],[125,232,72,-0.08038971281405734],[125,232,73,-0.10846905561397797],[125,232,74,-0.10311227075981239],[125,232,75,-0.08764726828095265],[125,232,76,-0.07709736427911733],[125,232,77,-0.06429844347152754],[125,232,78,-0.07135140189982758],[125,232,79,-0.09117167248214246],[125,233,64,-0.05301388379459302],[125,233,65,-0.07312409687054996],[125,233,66,-0.06652786835469027],[125,233,67,-0.033207278030257796],[125,233,68,-0.014949879422482841],[125,233,69,-0.01739379478963952],[125,233,70,-0.013575943522006782],[125,233,71,-0.03764560065140795],[125,233,72,-0.07842577248518633],[125,233,73,-0.10607494048410783],[125,233,74,-0.1009043965954525],[125,233,75,-0.0859475777678938],[125,233,76,-0.07577529422412248],[125,233,77,-0.06304236522911559],[125,233,78,-0.06977586104794585],[125,233,79,-0.0892707334177854],[125,234,64,-0.05203828761598525],[125,234,65,-0.0717515883617834],[125,234,66,-0.06544945834688327],[125,234,67,-0.0326043097868777],[125,234,68,-0.014562372741482987],[125,234,69,-0.01685837637724894],[125,234,70,-0.01281177373031402],[125,234,71,-0.036312610776078294],[125,234,72,-0.07649161343636193],[125,234,73,-0.10371665260393527],[125,234,74,-0.09873177520501368],[125,234,75,-0.08427238685618531],[125,234,76,-0.07446962463119901],[125,234,77,-0.061806208014344645],[125,234,78,-0.06822976759573433],[125,234,79,-0.08740149612071418],[125,235,64,-0.051082360568820734],[125,235,65,-0.07040087918980223],[125,235,66,-0.06438288197567461],[125,235,67,-0.03200829382692833],[125,235,68,-0.0141794901434426],[125,235,69,-0.016330417341613303],[125,235,70,-0.01206488315955365],[125,235,71,-0.03500561083975297],[125,235,72,-0.07458781571683272],[125,235,73,-0.10139479792104311],[125,235,74,-0.09659480599252462],[125,235,75,-0.08262205195288265],[125,235,76,-0.07318064553941353],[125,235,77,-0.06059009377070974],[125,235,78,-0.06671317274483013],[125,235,79,-0.0855642032554928],[125,236,64,-0.05014612640857653],[125,236,65,-0.06907219708794038],[125,236,66,-0.0633284729774028],[125,236,67,-0.031419394866359716],[125,236,68,-0.013801395969731803],[125,236,69,-0.01581017821395992],[125,236,70,-0.011335395256774686],[125,236,71,-0.03372486749635153],[125,236,72,-0.07271492191100529],[125,236,73,-0.09910994545223667],[125,236,74,-0.0944938591060713],[125,236,75,-0.08099691178905431],[125,236,76,-0.07190863990182551],[125,236,77,-0.059394134124745646],[125,236,78,-0.06522610885850176],[125,236,79,-0.08375907550042715],[125,237,64,-0.04922959640536017],[125,237,65,-0.06776575402317918],[125,237,66,-0.06228655799202438],[125,237,67,-0.0308377733523959],[125,237,68,-0.01342824688727285],[125,237,69,-0.015297903246602476],[125,237,70,-0.010623406436887839],[125,237,71,-0.03247061110821165],[125,237,72,-0.0708734356465146],[125,237,73,-0.09686262562351886],[125,237,74,-0.09242927418335017],[125,237,75,-0.07939728636013063],[125,237,76,-0.07065388276636587],[125,237,77,-0.058218429990100136],[125,237,78,-0.06376858919631756],[125,237,79,-0.08198631078874119],[125,238,64,-0.048332769427215386],[125,238,65,-0.0664817455933663],[125,238,66,-0.061257455572939316],[125,238,67,-0.030263584878065648],[125,238,68,-0.013060191465710023],[125,238,69,-0.014793820022991485],[125,238,70,-0.00992898608743787],[125,238,71,-0.031243035247720385],[125,238,72,-0.06906382033619635],[125,238,73,-0.09465332885252896],[125,238,74,-0.09040135929798726],[125,238,75,-0.07782347599813892],[125,238,76,-0.06941664051824309],[125,238,77,-0.057063071231917166],[125,238,78,-0.062340607754691975],[125,238,79,-0.08024608369175301],[125,239,64,-0.04745563208801697],[125,239,65,-0.06522035053157062],[125,239,66,-0.06024147527738481],[125,239,67,-0.029696979643942856],[125,239,68,-0.012697369803127542],[125,239,69,-0.014298139143705424],[125,239,70,-0.009252176685047665],[125,239,71,-0.030042296382017504],[125,239,72,-0.06728649814826396],[125,239,73,-0.09248250436742797],[125,239,74,-0.08841039010034434],[125,239,75,-0.07627576057253242],[125,239,76,-0.06819717018347483],[125,239,77,-0.05592813638938179],[125,239,78,-0.06094213920786004],[125,239,79,-0.07853854493886617],[125,240,64,-0.046598158955602584],[125,240,65,-0.06398173031370016],[125,240,66,-0.059238916836637553],[125,240,67,-0.029138101966657434],[125,240,68,-0.012339913199778427],[125,240,69,-0.013811053986993938],[125,240,70,-0.008592994018536287],[125,240,71,-0.02886851373377535],[125,240,72,-0.06554184919827893],[125,240,73,-0.0903505592555547],[125,240,74,-0.08645660914611022],[125,240,75,-0.07475439881604938],[125,240,76,-0.06699571879304327],[125,240,77,-0.054813692454234286],[125,240,78,-0.059573138943746815],[125,240,79,-0.07686382106898139],[125,241,64,-0.04576031281578785],[125,241,65,-0.06276602886534459],[125,241,66,-0.05825006940506158],[125,241,67,-0.028587089833613702],[125,241,68,-0.011987943879108797],[125,241,69,-0.013332740542186585],[125,241,70,-0.0079514275134174],[125,241,71,-0.027721769310594665],[125,241,72,-0.06383021095587998],[125,241,73,-0.08825785773459559],[125,241,74,-0.0845402254056057],[125,241,75,-0.0732596277717859],[125,241,76,-0.06581252280706144],[125,241,77,-0.053719794703018076],[125,241,78,-0.05823354318914366],[125,241,79,-0.07522201420773891],[125,242,64,-0.044942044987974],[125,242,65,-0.06157337236369279],[125,242,66,-0.05727521088689355],[125,242,67,-0.028044074503278452],[125,242,68,-0.011641574755221071],[125,242,69,-0.012863357314023785],[125,242,70,-0.007327440652219179],[125,242,71,-0.026602108095111664],[125,242,72,-0.062151877858652914],[125,242,73,-0.0862047206384844],[125,242,74,-0.08266141394643245],[125,242,75,-0.07179166235749805],[125,242,76,-0.06464780759831729],[125,242,77,-0.05264648658087124],[125,242,78,-0.05692326921863466],[125,242,79,-0.07361320196490542],[125,243,64,-0.04414329568806269],[125,243,65,-0.06040386913022128],[125,243,66,-0.056314607339437564],[125,243,67,-0.027509180150253217],[125,243,68,-0.011300909245726245],[125,243,69,-0.01240304529566911],[125,243,70,-0.006720971484805695],[125,243,71,-0.025509538387513846],[125,243,72,-0.060507101124970666],[125,243,73,-0.08419142510973184],[125,243,74,-0.08082031578177291],[125,243,75,-0.07035069504290511],[125,243,76,-0.06350178699441988],[125,243,77,-0.05159379963461104],[125,243,78,-0.05564221564167834],[125,243,79,-0.07203743744605501],[125,244,64,-0.04336399443445251],[125,244,65,-0.05925760960973858],[125,244,66,-0.05536851245116448],[125,244,67,-0.026982523554238174],[125,244,68,-0.010966041128779896],[125,244,69,-0.011951928007920037],[125,244,70,-0.006131933222675029],[125,244,71,-0.024444032291809362],[125,244,72,-0.05889608875713069],[125,244,73,-0.08221820448942192],[125,244,74,-0.07901703787638778],[125,244,75,-0.06893689563558994],[125,244,76,-0.06237466287769389],[125,244,77,-0.05056175349286259],[125,244,78,-0.0543902627622753],[125,244,79,-0.07049474937259267],[125,245,64,-0.04260406049299973],[125,245,65,-0.05813466643132124],[125,245,66,-0.05443716709307762],[125,245,67,-0.026464213831922268],[125,245,68,-0.010637054442981353],[125,245,69,-0.011510111601931577],[125,245,70,-0.005560214911061574],[125,245,71,-0.023405526336926767],[125,245,72,-0.0573190057257074],[125,245,73,-0.08028524839574128],[125,245,74,-0.07725165330217153],[125,245,75,-0.06755041117096414],[125,245,76,-0.061266624841918284],[125,245,77,-0.04955035589102007],[125,245,78,-0.05316727300573488],[125,245,79,-0.06898514230413688],[125,246,64,-0.04186340335686911],[125,246,65,-0.057035094546561346],[125,246,66,-0.05352079894149874],[125,246,67,-0.02595435221069281],[125,246,68,-0.010314023428642575],[125,246,69,-0.011077685022535538],[125,246,70,-0.005005682172519811],[125,246,71,-0.022393922223462454],[125,246,72,-0.055775974325622486],[125,246,73,-0.07839270298151993],[125,246,74,-0.07552420153490565],[125,246,75,-0.06619136590157955],[125,246,76,-0.060177849904863814],[125,246,77,-0.04855960273878154],[125,246,78,-0.05197309140706521],[125,246,79,-0.0675085969571697],[125,247,64,-0.04114192325734032],[125,247,65,-0.055958931440536576],[125,247,66,-0.052619622170313025],[125,247,67,-0.025453031842994977],[125,247,68,-0.009997012508838447],[125,247,69,-0.010654720229077286],[125,247,70,-0.004468178015587114],[125,247,71,-0.021409087686721274],[125,247,72,-0.05426707469413212],[125,247,73,-0.07654067136098523],[125,247,74,-0.07383468888373881],[125,247,75,-0.06485986138098315],[125,247,76,-0.05910850227553955],[125,247,77,-0.047589478228047516],[125,247,78,-0.050807546155631475],[125,247,79,-0.06606507061388373],[125,248,64,-0.04043951170171527],[125,248,65,-0.05490619741084571],[125,248,66,-0.05173383721053473],[125,248,67,-0.024960337660051592],[125,248,68,-0.009686076308509348],[125,248,69,-0.010241272470511133],[125,248,70,-0.003947523702049494],[125,248,71,-0.020450857466544004],[125,248,72,-0.05279234548063239],[125,248,73,-0.07472921419565369],[125,248,74,-0.0721830890447866],[125,248,75,-0.0635559766371771],[125,248,76,-0.058058733174931196],[125,248,77,-0.046639954978944784],[125,248,78,-0.0496704491907875],[125,248,79,-0.06465449761510851],[125,249,64,-0.039756052034634594],[125,249,65,-0.0538768959100804],[125,249,66,-0.05086363057495983],[125,249,67,-0.024476346263605255],[125,249,68,-0.0093812597098203],[125,249,69,-0.009837380611394185],[125,249,70,-0.003443519666349166],[125,249,71,-0.019519034374371618],[125,249,72,-0.05135178465800974],[125,249,73,-0.07295835042912757],[125,249,74,-0.0705693437702195],[125,249,75,-0.062279768430702695],[125,249,76,-0.05702868070896435],[125,249,77,-0.045710994221788794],[125,249,78,-0.048561596843331306],[125,249,79,-0.06327678993125412],[125,250,64,-0.03909142001921994],[125,250,65,-0.05287101394708201],[125,250,66,-0.05000917474552108],[125,250,67,-0.024001125854240166],[125,250,68,-0.009082597941863894],[125,250,69,-0.009443067505273564],[125,250,70,-0.002955946480650707],[125,250,71,-0.018613390447927307],[125,250,72,-0.04994535046506713],[125,250,73,-0.07122805816037989],[125,250,74,-0.06899336364414266],[125,250,75,-0.061031271592276795],[125,250,76,-0.05601846979231104],[125,250,77,-0.044802546012783835],[125,250,78,-0.04748077051773592],[125,250,79,-0.06193183780522398],[125,251,64,-0.038445484434598706],[125,251,65,-0.051888522542352454],[125,251,66,-0.049170628120850685],[125,251,67,-0.023534736194770527],[125,251,68,-0.00879011670272048],[125,251,69,-0.009058340411883015],[125,251,70,-0.0024845658591497967],[125,251,71,-0.01773366818393832],[125,251,72,-0.048572962469470723],[125,251,73,-0.06953827564502892],[125,251,74,-0.06745502895658731],[125,251,75,-0.059810499434868505],[125,251,76,-0.05502821212156723],[125,251,77,-0.04391454948127465],[125,251,78,-0.04642773741023763],[125,251,79,-0.060619510461299375],[125,252,64,-0.037818107686549876],[125,252,65,-0.050929377233056704],[125,252,66,-0.048348135021481824],[125,252,67,-0.023077228607145384],[125,252,68,-0.008503832311848043],[125,252,69,-0.008683191454514294],[125,252,70,-0.0020291216952981494],[125,252,71,-0.01687958183939429],[125,252,72,-0.04723450274062514],[125,252,73,-0.06788890241407389],[125,252,74,-0.0659541906669966],[125,252,75,-0.05861744423510663],[125,252,76,-0.05405800619627397],[125,252,77,-0.04304693310641009],[125,252,78,-0.04540225125804338],[125,252,79,-0.05933965687410689],[125,253,64,-0.03720914642813666],[125,253,65,-0.04999351862308227],[125,253,66,-0.04754182575000766],[125,253,67,-0.022628646001238286],[125,253,68,-0.008223751890700036],[125,253,69,-0.008317598113865957],[125,253,70,-0.0015893411257172376],[125,253,71,-0.016050818791942065],[125,253,72,-0.04592981712187667],[125,253,73,-0.06627980049954825],[125,253,74,-0.06449067144864247],[125,253,75,-0.05745207777888145],[125,253,76,-0.053107937386141585],[125,253,77,-0.042199615021070995],[125,253,78,-0.04440405311504543],[125,253,79,-0.05809210659184834],[125,254,64,-0.036618452187355634],[125,254,65,-0.049080872973690064],[125,254,66,-0.046751816703439655],[125,254,67,-0.022189022933841826],[125,254,68,-0.007949873569430091],[125,254,69,-0.007961523754650425],[125,254,70,-0.0011649356147137946],[125,254,71,-0.015247040950174725],[125,254,72,-0.044658716591499226],[125,254,73,-0.06471079575659863],[125,254,74,-0.06306426680551865],[125,254,75,-0.05631435196601573],[125,254,76,-0.052178078042758286],[125,254,77,-0.041372503340935986],[125,254,78,-0.04343287214960205],[125,254,79,-0.056876670608079063],[125,255,64,-0.03604587199902311],[125,255,65,-0.04819135283040292],[125,255,66,-0.045978210534971226],[125,255,67,-0.0217583856961727],[125,255,68,-0.007682186717540287],[125,255,69,-0.007614918181258774],[125,255,70,-7.556020534951862E-4],[125,255,71,-0.014467886204788435],[125,255,72,-0.04342097870204295],[125,255,73,-0.06318167927161164],[125,255,74,-0.061674746253417075],[125,255,75,-0.055204199468940576],[125,255,76,-0.05126848765400886],[125,255,77,-0.04056549651660763],[125,255,78,-0.04248842646013955],[125,255,79,-0.05569314227648102],[125,256,64,-0.035491249038257164],[125,256,65,-0.047324857681844336],[125,256,66,-0.0452210963622706],[125,256,67,-0.021336752428131905],[125,256,68,-0.007420672196291023],[125,256,69,-0.007277718218784726],[125,256,70,-3.6102386836507465E-4],[125,256,71,-0.013712969911810025],[125,256,72,-0.04221634908776291],[125,256,73,-0.06169220884613274],[125,256,74,-0.06032185455703875],[125,256,75,-0.05412153444032957],[125,256,76,-0.05037921303932677],[125,256,77,-0.0397784837067156],[125,256,78,-0.04157042390448277],[125,256,79,-0.054541298263182346],[125,257,64,-0.0349544232530899],[125,257,65,-0.046481274646353654],[125,257,66,-0.044480550019394854],[125,257,67,-0.020924133257545597],[125,257,68,-0.007165302630689776],[125,257,69,-0.006949848315743643],[125,257,70,1.9127867615555875E-5],[125,257,71,-0.012981886399360917],[125,257,72,-0.04104454303003611],[125,257,73,-0.060242110546495725],[125,257,74,-0.05900531301518529],[125,257,75,-0.05306625326471631],[125,257,76,-0.04951028858383747],[125,257,77,-0.039011345169945144],[125,257,78,-0.040678562939012425],[125,257,79,-0.05342089953134011],[125,258,64,-0.03443523199393028],[125,258,65,-0.04566047918234181],[125,258,66,-0.043756634349406805],[125,258,67,-0.02052053046261219],[125,258,68,-0.0069160426989050275],[125,258,69,-0.00663122116490339],[125,258,70,3.8519332475160596E-4],[125,258,71,-0.012274210489758294],[125,258,72,-0.03990524707093609],[125,258,73,-0.05883108030932099],[125,258,74,-0.05772482078631488],[125,258,75,-0.05203823534921415],[125,258,76,-0.048661736509398076],[125,258,77,-0.03826395267397991],[125,258,78,-0.03981253346395128],[125,258,79,-0.05233169235288112],[125,259,64,-0.03393351063774153],[125,259,65,-0.04486233581845532],[125,259,66,-0.043049399534735154],[125,259,67,-0.020125938655750315],[125,259,68,-0.006672849436949464],[125,259,69,-0.0063217383386958695],[125,259,70,7.375228136385849E-4],[125,259,71,-0.0115894990290694],[125,259,72,-0.03879812066538984],[125,259,73,-0.05745878559327023],[125,259,74,-0.056480056246963686],[125,259,75,-0.05103734394852985],[125,259,76,-0.047833567180453535],[125,259,77,-0.037536169919352984],[125,259,78,-0.03897201767124783],[125,259,79,-0.051273409342450324],[125,260,64,-0.03344909320496916],[125,260,65,-0.04408669889975814],[125,260,66,-0.042358883462322486],[125,260,67,-0.01974034498704347],[125,260,68,-0.0064356725565080436],[125,260,69,-0.006021290935766276],[125,260,70,0.001076475693641867],[125,260,71,-0.01092729241659061],[125,260,72,-0.03772279786264665],[125,260,73,-0.05612486706772665],[125,260,74,-0.05527067837579628],[125,260,75,-0.050063427019569375],[125,260,76,-0.047025779442576604],[125,260,77,-0.036827852976233665],[125,260,78,-0.038156690891726026],[125,260,79,-0.050245770508804646],[125,261,64,-0.03298181296742793],[125,261,65,-0.04333341334629694],[125,261,66,-0.04168511212061872],[125,261,67,-0.019363729365495942],[125,261,68,-0.006204454773843409],[125,261,69,-0.00572976023534444],[125,261,70,0.001402419297370631],[125,261,71,-0.010287116127137256],[125,261,72,-0.03667888900815477],[125,261,73,-0.0548289403294041],[125,261,74,-0.05409632815633962],[125,261,75,-0.04911631810106484],[125,261,76,-0.046238360991512496],[125,261,77,-0.03613885073221294],[125,261,78,-0.03736622243836614],[125,261,79,-0.04924848431909009],[125,262,64,-0.03253150304550014],[125,262,65,-0.04260231542054696],[125,262,66,-0.041028100025482295],[125,262,67,-0.018996064696310894],[125,262,68,-0.005979132147740368],[125,262,69,-0.005447018356214048],[125,262,70,0.0017157278753244373],[125,262,71,-0.009668482219401671],[125,262,72,-0.03566598245728122],[125,262,73,-0.053570597638197326],[125,262,74,-0.05295662999172807],[125,262,75,-0.048195837213759585],[125,262,76,-0.04547128877048816],[125,262,77,-0.03546900534916804],[125,262,78,-0.03660027644276289],[125,262,79,-0.04828124877162281],[125,263,64,-0.03209799699314692],[125,263,65,-0.04189323350038961],[125,263,66,-0.040387850672073206],[125,263,67,-0.01863731713241817],[125,263,68,-0.005759634424508467],[125,263,69,-0.005172928917189295],[125,263,70,0.0020167815645807693],[125,263,71,-0.009070890824064266],[125,263,72,-0.03468364629270863],[125,263,73,-0.052349409663953836],[125,263,74,-0.05185119312508991],[125,263,75,-0.047301791776825274],[125,263,76,-0.04472452939349974],[125,263,77,-0.03481815272731078],[125,263,78,-0.035858512681987746],[125,263,79,-0.04734375247299297],[125,264,64,-0.03168112936939744],[125,264,65,-0.04120598885444299],[125,264,66,-0.039764357009872506],[125,264,67,-0.018287446338521255],[125,264,68,-0.00554588538814222],[125,264,69,-0.004907347696161863],[125,264,70,0.0023059653850687253],[125,264,71,-0.008493831605787967],[125,264,72,-0.03373143003776782],[125,264,73,-0.05116492723623567],[125,264,74,-0.050779613059535156],[125,264,75,-0.046433977536340744],[125,264,76,-0.04399803959226634],[125,264,77,-0.03418612297456946],[125,264,78,-0.03514058739328381],[125,264,79,-0.04643567571552411],[125,265,64,-0.031280736295105215],[125,265,65,-0.04054039641671099],[125,265,66,-0.039157601937992885],[125,265,67,-0.01794640576594704],[125,265,68,-0.005337803213791954],[125,265,69,-0.004650123284908002],[125,265,70,0.0025836682666877534],[125,265,71,-0.007936785193640845],[125,265,72,-0.032808866358370804],[125,265,73,-0.050016683089513056],[125,265,74,-0.04974147297200501],[125,265,75,-0.0455921795017965],[125,265,76,-0.04329176668449209],[125,265,77,-0.033572740879468384],[125,265,78,-0.0344461540741853],[125,265,79,-0.045556691551316454],[125,266,64,-0.030896655993887176],[125,266,65,-0.03989626555767109],[125,266,66,-0.038567558817988734],[125,266,67,-0.0176141429366153],[125,266,68,-0.005135300822773912],[125,266,69,-0.0044010977370032515],[125,266,70,0.0028502821102093807],[125,266,71,-0.007399224574946609],[125,266,72,-0.03191547274665731],[125,266,73,-0.04890419359664263],[125,266,74,-0.048736345115570685],[125,266,75,-0.04477617288674015],[125,266,76,-0.042605649061044505],[125,266,77,-0.032977826385693826],[125,266,78,-0.033774864265824385],[125,266,79,-0.044706466859292915],[125,267,64,-0.030528729316307728],[125,267,65,-0.03927340084910043],[125,267,66,-0.03799419200145661],[125,267,67,-0.017290599734506272],[125,267,68,-0.0049382862374480205],[125,267,69,-0.004160107206363232],[125,267,70,0.0031062008845840613],[125,267,71,-0.006880616448012688],[125,267,72,-0.031050753179922227],[125,267,73,-0.04782696048390537],[125,267,74,-0.047763792205109325],[125,267,75,-0.043985724049854694],[125,267,76,-0.04193961668965518],[125,267,77,-0.032401195066584704],[125,267,78,-0.0331263683173762],[125,267,79,-0.04388466340189694],[125,268,64,-0.030176800246462954],[125,268,65,-0.0386716028200777],[125,268,66,-0.03743745736975837],[125,268,67,-0.016975712703030613],[125,268,68,-0.004746662934358545],[125,268,69,-0.003926982574075801],[125,268,70,0.0033518197629815692],[125,268,71,-0.006380422529618014],[125,268,72,-0.030214199748835484],[125,268,73,-0.0467844725212833],[125,268,74,-0.046823368781597076],[125,268,75,-0.04322059143290318],[125,268,76,-0.0412935916327122],[125,268,77,-0.0318426585977943],[125,268,78,-0.03250031612973251],[125,268,79,-0.043090938868263616],[125,269,64,-0.02984071639022745],[125,269,65,-0.0380906687017532],[125,269,66,-0.03689730288327354],[125,269,67,-0.016669413346758276],[125,269,68,-0.004560330194124775],[125,269,69,-0.003701550061356793],[125,269,70,0.0035875342995919904],[125,269,71,-0.005898100813584411],[125,269,72,-0.029405294249421808],[125,269,73,-0.04577620718207883],[125,269,74,-0.04591462255058736],[125,269,75,-0.04248052649213877],[125,269,76,-0.04066748857670235],[125,269,77,-0.03130202522640261],[125,269,78,-0.031896357876653555],[125,269,79,-0.04232494790088723],[125,270,64,-0.029520329444542238],[125,270,65,-0.03753039315865069],[125,270,66,-0.03637366913767972],[125,270,67,-0.016371628436033965],[125,270,68,-0.004379183446675549],[125,270,69,-0.0034836318266381937],[125,270,70,0.0038137396489140323],[125,270,71,-0.005433106777193129],[125,270,72,-0.028623509733732008],[125,270,73,-0.04480163226640812],[125,270,74,-0.04503709569077368],[125,270,75,-0.04176527461995388],[125,270,76,-0.04006121537087045],[125,270,77,-0.030779100234799427],[125,270,78,-0.03131414470180494],[125,270,79,-0.04158634310301074],[125,271,64,-0.029215495647180928],[125,271,65,-0.036990569004386846],[125,271,66,-0.03586648992481675],[125,271,67,-0.016082280313041545],[125,271,68,-0.004203114610495452],[125,271,69,-0.003273046544947342],[125,271,70,0.00403082982898547],[125,271,71,-0.004984894532622118],[125,271,72,-0.02786831201457743],[125,271,73,-0.043860207483506504],[125,271,74,-0.044190326128839295],[125,271,75,-0.041074576053688236],[125,271,76,-0.039474673572640596],[125,271,77,-0.03027368639766786],[125,271,78,-0.030753329390204153],[125,271,79,-0.04087477602412829],[125,272,64,-0.028926076206530545],[125,272,65,-0.03647098789985499],[125,272,66,-0.03537569279579245],[125,272,67,-0.015801287197957765],[125,272,68,-0.004032012424660368],[125,272,69,-0.0030696099679089353],[125,272,70,0.004239197029734116],[125,272,71,-0.0045529179209906736],[125,272,72,-0.02713916112014539],[125,272,73,-0.0429513859881997],[125,272,74,-0.04337384877711271],[125,272,75,-0.04040816676868777],[125,272,76,-0.038907758997364324],[125,272,77,-0.029785584430442297],[125,272,78,-0.030213567012747185],[125,272,79,-0.04018989812118303],[125,273,64,-0.028651937710968634],[125,273,65,-0.035971441032043756],[125,273,66,-0.03490119962406167],[125,273,67,-0.015528563493887707],[125,273,68,-0.003865762772524824],[125,273,69,-0.0028731354628495926],[125,273,70,0.0044392309673787515],[125,273,71,-0.004136631546988193],[125,273,72,-0.02643551269474337],[125,273,73,-0.04207461586728892],[125,273,74,-0.04258719673083797],[125,273,75,-0.03976577935285129],[125,273,76,-0.03836036226994908],[125,273,77,-0.029314593427621913],[125,273,78,-0.02969451554258315],[125,273,79,-0.03953136169319617],[125,274,64,-0.02839295251749353],[125,274,65,-0.035491719771799136],[125,274,66,-0.03444292716631014],[125,274,67,-0.015264020089348107],[125,274,68,-0.003704248996028222],[125,274,69,-0.002683434529654422],[125,274,70,0.004631318285550819],[125,274,71,-0.003735491752448304],[125,274,72,-0.02575681934234592],[125,274,73,-0.04122934157200023],[125,274,74,-0.04182990242216635],[125,274,75,-0.03914714386007252],[125,274,76,-0.037832369375955584],[125,274,77,-0.02886051128937085],[125,274,78,-0.029195836442236497],[125,274,79,-0.038898820787240426],[125,275,64,-0.0281489991192953],[125,275,65,-0.035031616308958],[125,275,66,-0.03400078761906103],[125,275,67,-0.015007564657129062],[125,275,68,-0.003547352199675635],[125,275,69,-0.0025003172941592475],[125,275,70,0.004815842003598541],[125,275,71,-0.003348957527574913],[125,275,72,-0.025102531910011175],[125,275,73,-0.04041500529300913],[125,275,74,-0.041101498728241946],[125,275,75,-0.03855198864011751],[125,275,76,-0.03732366220974923],[125,275,77,-0.02842313513484044],[125,275,78,-0.02871719522045386],[125,275,79,-0.03829193207380574],[125,276,64,-0.027919962491984474],[125,276,65,-0.034590924263385184],[125,276,66,-0.033574689169005204],[125,276,67,-0.01475910194842409],[125,276,68,-0.0033949515433349866],[125,276,69,-0.0023235929770053392],[125,276,70,0.0049931810123181285],[125,276,71,-0.002976491358866596],[125,276,72,-0.024472100708624246],[125,276,73,-0.039631048274917244],[125,276,74,-0.040401520031012515],[125,276,75,-0.03798004114262521],[125,276,76,-0.03683411911731091],[125,276,77,-0.02800226170067614],[125,276,78,-0.028258261957844494],[125,276,79,-0.03771035568974417],[125,277,64,-0.027705734418236094],[125,277,65,-0.03416943927057062],[125,277,66,-0.03316453653516679],[125,277,67,-0.014518534081206085],[125,277,68,-0.0032469245230980727],[125,277,69,-0.002153070337026789],[125,277,70,0.005163709617160907],[125,277,71,-0.0026175600131024836],[125,277,72,-0.023864976668794547],[125,277,73,-0.03887691206740419],[125,277,74,-0.03972950322665186],[125,277,75,-0.037431028693061974],[125,277,76,-0.03636361543134839],[125,277,77,-0.027597687723203857],[125,277,78,-0.02781871180046632],[125,277,79,-0.03715375604711903],[125,278,64,-0.027506213790601787],[125,278,65,-0.033766959540521564],[125,278,66,-0.03277023150109165],[125,278,67,-0.014285760821881564],[125,278,68,-0.0031031472395255193],[125,278,69,-0.0019885580883526465],[125,278,70,0.005327797128801077],[125,278,71,-0.002271635257033833],[125,278,72,-0.023280612430070284],[125,278,73,-0.03815203971059115],[125,278,74,-0.0390849886826991],[125,278,75,-0.03690467923858306],[125,278,76,-0.03591202399635847],[125,278,77,-0.027209210302799],[125,278,78,-0.02739822542056525],[125,278,79,-0.03662180260638677],[125,279,64,-0.027321306892243994],[125,279,65,-0.03338328638877277],[125,279,66,-0.0323916734353366],[125,279,67,-0.014060679859324597],[125,279,68,-0.002963494652679051],[125,279,69,-0.0018298652905201042],[125,279,70,0.00548580750079695],[125,279,71,-0.0019381945126884898],[125,279,72,-0.022718463361954905],[125,279,73,-0.0374558768524536],[125,279,74,-0.038467521141230664],[125,279,75,-0.03640072206187125],[125,279,76,-0.03547921568132041],[125,279,77,-0.026836627248960025],[125,279,78,-0.02699648944372693],[125,279,79,-0.03611417061244071],[125,280,64,-0.027150927655351306],[125,280,65,-0.03301822473842599],[125,280,66,-0.032028759798639755],[125,280,67,-0.013843187070476192],[125,280,68,-0.002827840823436412],[125,280,69,-0.0016768017110070075],[125,280,70,0.005638099013940193],[125,280,71,-0.001616721448436613],[125,280,72,-0.02217798851550805],[125,280,73,-0.03678787279640327],[125,280,74,-0.03787665056658188],[125,280,75,-0.035918888461148],[125,280,76,-0.03506505987773595],[125,280,77,-0.026479737404633587],[125,280,78,-0.026613196841751882],[125,280,79,-0.03563054179214568],[125,281,64,-0.026994997896957737],[125,281,65,-0.03267158359218157],[125,281,66,-0.031681386636225516],[125,281,67,-0.013633176776749155],[125,281,68,-0.002696059140645146],[125,281,69,-0.0015291781596740333],[125,281,70,0.005785024006783161],[125,281,71,-0.0013067065061723214],[125,281,72,-0.021658651504582953],[125,281,73,-0.03614748147740946],[125,281,74,-0.03731193293630233],[125,281,75,-0.03545891239464467],[125,281,76,-0.03466942498075422],[125,281,77,-0.026138340948343046],[125,281,78,-0.026248047290586708],[125,281,79,-0.03517060501205559],[125,282,64,-0.02685344753186133],[125,282,65,-0.0323431764733807],[125,282,66,-0.03134944905378144],[125,282,67,-0.01343054199054725],[125,282,68,-0.0025680225337418906],[125,282,69,-0.0013868067946805486],[125,282,70,0.005926928651753232],[125,282,71,-0.0010076473651366082],[125,282,72,-0.021159921315979546],[125,282,73,-0.03553416236524891],[125,282,74,-0.03677293097417787],[125,282,75,-0.03502053108791307],[125,282,76,-0.03429217885114488],[125,282,77,-0.025812239672682154],[125,282,78,-0.025900747492659065],[125,282,79,-0.034734056895066256],[125,283,64,-0.026726214762308312],[125,283,65,-0.03203282183513312],[125,283,66,-0.03103284167573877],[125,283,67,-0.013235174651287604],[125,283,68,-0.002443603670538963],[125,283,69,-0.0012495013995176968],[125,283,70,0.006064152776182632],[125,283,71,-7.190493430756923E-4],[125,283,72,-0.02068127304802551],[125,283,73,-0.03494738129369047],[125,283,74,-0.03625921482430073],[125,283,75,-0.034603485602449566],[125,283,76,-0.033933189255927955],[125,283,77,-0.02550123723775455],[125,283,78,-0.025571011462985356],[125,283,79,-0.03432060239481116],[125,284,64,-0.026613246244043424],[125,284,65,-0.031740343436621916],[125,284,66,-0.03073145908454905],[125,284,67,-0.013046965850364576],[125,284,68,-0.0023226751399250613],[125,284,69,-0.0011170776308390808],[125,284,70,0.006197029727550742],[125,284,71,-4.4042573553878384E-4],[125,284,72,-0.0202221885772646],[125,284,73,-0.034386611214583834],[125,284,74,-0.03577036266527062],[125,284,75,-0.03420752136416781],[125,284,76,-0.033592324285484164],[125,284,77,-0.025205139398135384],[125,284,78,-0.02525856077840163],[125,284,79,-0.03392995532662759],[125,285,64,-0.026514497228275525],[125,285,65,-0.0314655706857059],[125,285,66,-0.03044519623973041],[125,285,67,-0.012865806044564188],[125,285,68,-0.0022051096192818452],[125,285,69,-9.893532368072512E-4],[125,285,70,0.006325886282218667],[125,285,71,-1.7129809420947037E-4],[125,285,72,-0.019782157153083887],[125,285,73,-0.033851332875966214],[125,285,74,-0.03530596126370323],[125,285,75,-0.033832388650319255],[125,285,76,-0.03326945274500539],[125,285,77,-0.024923754201935815],[125,285,78,-0.024963124789258506],[125,285,79,-0.03356183885393948],[125,286,64,-0.02642993167903848],[125,286,65,-0.03120833894695238],[125,286,66,-0.030173948875526452],[125,286,67,-0.012691585257501579],[125,286,68,-0.00209078002647015],[125,286,69,-8.661482457060699E-4],[125,286,70,0.006451042596922166],[125,286,71,8.880355475482637E-5],[125,286,72,-0.019360675920249315],[125,286,73,-0.03334103542343354],[125,286,74,-0.034865606466304815],[125,286,75,-0.03347784303351605],[125,286,76,-0.03296444451817461],[125,286,77,-0.024656892160557824],[125,286,78,-0.02468444079289786],[125,286,79,-0.03321598592890667],[125,287,64,-0.026359522365350156],[125,287,65,-0.03096848981422901],[125,287,66,-0.0299176138760836],[125,287,67,-0.012524193268710985],[125,287,68,-0.0019795596562700688],[125,287,69,-7.47285124563713E-4],[125,287,70,0.006572812202331798],[125,287,71,3.4034055138433414E-4],[125,287,72,-0.018957250369394586],[125,287,73,-0.03285521692410112],[125,287,74,-0.034448903629814696],[125,287,75,-0.0331436457815472],[125,287,76,-0.032677170900991925],[125,287,77,-0.02440436638771738],[125,287,78,-0.02442225416818921],[125,287,79,-0.0328921396861743],[125,288,64,-0.02630325092747922],[125,288,65,-0.030745871346968996],[125,288,66,-0.029676089627107063],[125,288,67,-0.012363519790070698],[125,288,68,-0.0018713223011915788],[125,288,69,-6.325889075252273E-4],[125,288,70,0.006691502038028856],[125,288,71,5.837655005550565E-4],[125,288,72,-0.018571394715576752],[125,288,73,-0.03239338481254318],[125,288,74,-0.03405546798814976],[125,288,75,-0.03282956421170324],[125,288,76,-0.03240750490368326],[125,288,77,-0.024165992706308603],[125,288,78,-0.024176318470353633],[125,288,79,-0.03259005378852111],[125,289,64,-0.026261107963368047],[125,289,65,-0.030540337907432016],[125,289,66,-0.029449275290784015],[125,289,67,-0.012209452859127293],[125,289,68,-0.0017659402169396398],[125,289,69,-5.2188514579353E-4],[125,289,70,0.006807414579750017],[125,289,71,8.195242010240711E-4],[125,289,72,-0.018202630262789454],[125,289,73,-0.0319550543118782],[125,289,74,-0.03368492301711676],[125,289,75,-0.032535370081906066],[125,289,76,-0.03215531957058277],[125,289,77,-0.0239415878103974],[125,289,78,-0.0239463937850931],[125,289,79,-0.03230949132243338],[125,290,64,-0.02623309340537467],[125,290,65,-0.03035174740568289],[125,290,66,-0.029237062652976556],[125,290,67,-0.012061864771899312],[125,290,68,-0.0016632670192987455],[125,290,69,-4.14982703623311E-4],[125,290,70,0.006920864455265947],[125,290,71,0.0010480714567763173],[125,290,72,-0.01785047024635849],[125,290,73,-0.03153973344898085],[125,290,74,-0.03333688552258564],[125,290,75,-0.03226082487762666],[125,290,76,-0.031920472961723255],[125,290,77,-0.02373095430217253],[125,290,78,-0.023732233387316157],[125,290,79,-0.03205021406644956],[125,291,64,-0.026219216275172298],[125,291,65,-0.03017996291357896],[125,291,66,-0.029039340811886687],[125,291,67,-0.011920619658684907],[125,291,68,-0.0015631467272156716],[125,291,69,-3.1168276272208723E-4],[125,291,70,0.007032170047646906],[125,291,71,0.0012698627162051903],[125,291,72,-0.017514428730140214],[125,291,73,-0.03114693243514779],[125,291,74,-0.03301097513102757],[125,291,75,-0.0320056892354605],[125,291,76,-0.03170281762594707],[125,291,77,-0.023533889688097387],[125,291,78,-0.02353359168392345],[125,291,79,-0.03181198932116424],[125,292,64,-0.026219494410337316],[125,292,65,-0.030024854432309917],[125,292,66,-0.0288560013465759],[125,292,67,-0.011785581885797586],[125,292,68,-0.0014654238178406966],[125,292,69,-2.1178885054263553E-4],[125,292,70,0.007141644122284154],[125,292,71,0.001485344941213114],[125,292,72,-0.01719402991096815],[125,292,73,-0.03077617312562219],[125,292,74,-0.032706823735335615],[125,292,75,-0.03176973232896579],[125,292,76,-0.031502210109640806],[125,292,77,-0.023350195491619364],[125,292,78,-0.02335023226969945],[125,292,79,-0.03159459676016568],[125,293,64,-0.026233954388603528],[125,293,65,-0.02988629892314508],[125,293,66,-0.0286869385067984],[125,293,67,-0.011656616110778974],[125,293,68,-0.001369943198117603],[125,293,69,-1.1510673825002473E-4],[125,293,70,0.007249594135411904],[125,293,71,0.0016949568571529546],[125,293,72,-0.016888808058437656],[125,293,73,-0.03042698897699159],[125,293,74,-0.0324240754421474],[125,293,75,-0.031552731877975346],[125,293,76,-0.031318510966588574],[125,293,77,-0.02317967707562773],[125,293,78,-0.02318192771646299],[125,293,79,-0.03139782843375993],[125,294,64,-0.02626263142174853],[125,294,65,-0.029764180278706066],[125,294,66,-0.028532049325197616],[125,294,67,-0.011533587241923332],[125,294,68,-0.0012765500607076188],[125,294,69,-2.144420501196772E-5],[125,294,70,0.007356322678984659],[125,294,71,0.0018991293469030669],[125,294,72,-0.016598307299105972],[125,294,73,-0.030098924843887844],[125,294,74,-0.032162386375828064],[125,294,75,-0.031354474029653176],[125,294,76,-0.031151584646644484],[125,294,77,-0.023022143346611325],[125,294,78,-0.023028459247265078],[125,294,79,-0.031221488660045142],[125,295,64,-0.02630556921554887],[125,295,65,-0.02965838924935718],[125,295,66,-0.028391233697236177],[125,295,67,-0.011416360379730095],[125,295,68,-0.001185089717919034],[125,295,69,6.938923812725738E-5],[125,295,70,0.007462127972427856],[125,295,71,0.0020982859021910958],[125,295,72,-0.016322081330672984],[125,295,73,-0.029791536700651718],[125,295,74,-0.03192142442462874],[125,295,75,-0.031174753195378248],[125,295,76,-0.031001299348029504],[125,295,77,-0.022877406423905452],[125,295,78,-0.022889616369774806],[125,295,79,-0.03106539386379679],[125,296,64,-0.026362819794184682],[125,296,65,-0.02956882332331529],[125,296,66,-0.02826439442793809],[125,296,67,-0.011304800740026372],[125,296,68,-0.0010954074131411375],[125,296,69,1.57582666129477E-4],[125,296,70,0.007567304402200291],[125,296,71,0.00229284313250195],[125,296,72,-0.016059693065377027],[125,296,73,-0.029504391286630193],[125,296,74,-0.03170086892767942],[125,296,75,-0.031013371841737476],[125,296,76,-0.030867526831007804],[125,296,77,-0.022745281272105487],[125,296,78,-0.02276519646704305],[125,296,79,-0.03092937236091524],[125,297,64,-0.02643444328735917],[125,297,65,-0.029495386559003526],[125,297,66,-0.028151437244544147],[125,297,67,-0.011198773558530545],[125,297,68,-0.00100734810923285],[125,297,69,2.4332410111264905E-4],[125,297,70,0.007672143110365579],[125,297,71,0.00248321133215489],[125,297,72,-0.015810714201646668],[125,297,73,-0.02923706567362945],[125,297,74,-0.031500410301388455],[125,297,75,-0.030870140233891258],[125,297,76,-0.030750142190742905],[125,297,77,-0.022625585294727347],[125,297,78,-0.022655004343742985],[125,297,79,-0.03081326408606887],[125,298,64,-0.02652050777264102],[125,298,65,-0.02943798946096567],[125,298,66,-0.028052270865629246],[125,298,67,-0.011098144066685172],[125,298,68,-9.207563419235919E-4],[125,298,69,3.268008311277124E-4],[125,298,70,0.007776932547593627],[125,298,71,0.0026697950216034967],[125,298,72,-0.015574724806426658],[125,298,73,-0.02898914683629879],[125,298,74,-0.03131974968499914],[125,298,75,-0.03074487620973714],[125,298,76,-0.030649023666329666],[125,298,77,-0.02251813796535322],[125,298,78,-0.02255885180308686],[125,298,79,-0.030716920337319698],[125,299,64,-0.02662110685655321],[125,299,65,-0.02939656629968031],[125,299,66,-0.0279668242514332],[125,299,67,-0.011002794395153356],[125,299,68,-8.354927325431592E-4],[125,299,69,4.081833474567641E-4],[125,299,70,0.007881942897621907],[125,299,71,0.0028529776078291503],[125,299,72,-0.015351328532477622],[125,299,73,-0.02876024662672339],[125,299,74,-0.031158613792176125],[125,299,75,-0.03063741996506448],[125,299,76,-0.030564067267460148],[125,299,77,-0.022422775087609356],[125,299,78,-0.022476571663393282],[125,299,79,-0.030640217772096405],[125,300,64,-0.026736382980064453],[125,300,65,-0.029371098022884557],[125,300,66,-0.0278950693421692],[125,300,67,-0.01091264586719926],[125,300,68,-7.514557727498727E-4],[125,300,69,4.876041419769549E-4],[125,300,70,0.00798740547154759],[125,300,71,0.00303310112261042],[125,300,72,-0.015140172646352505],[125,300,73,-0.028550021458876067],[125,300,74,-0.031016774400357713],[125,300,75,-0.030547653402631395],[125,300,76,-0.030495205888073407],[125,300,77,-0.022339367465436556],[125,300,78,-0.022408036102665896],[125,300,79,-0.030583076644684203],[125,301,64,-0.026866496556854334],[125,301,65,-0.029361581854728692],[125,301,66,-0.02783699134374337],[125,301,67,-0.010827629678254467],[125,301,68,-6.68552786562674E-4],[125,301,69,5.651865779741495E-4],[125,301,70,0.008093541429752202],[125,301,71,0.0032104945677041913],[125,301,72,-0.014940920138307192],[125,301,73,-0.02835814474644894],[125,301,74,-0.03089402126628423],[125,301,75,-0.030475473550029837],[125,301,76,-0.030442383100007648],[125,301,77,-0.022267794836894162],[125,301,78,-0.02235313081594109],[125,301,79,-0.03054543537311215],[125,302,64,-0.027011621124366673],[125,302,65,-0.029368026515989944],[125,302,66,-0.027792584278510644],[125,302,67,-0.01074768249473135],[125,302,68,-5.866954488349171E-4],[125,302,69,6.410495772227244E-4],[125,302,70,0.008200566661227546],[125,302,71,0.00338547874890884],[125,302,72,-0.014753245013719904],[125,302,73,-0.02818430220989014],[125,302,74,-0.030790157635605508],[125,302,75,-0.03042078830140484],[125,302,76,-0.030405549004367906],[125,302,77,-0.02220794160776741],[125,302,78,-0.022311750715507162],[125,302,79,-0.03052724639514422],[125,303,64,-0.027171943336517942],[125,303,65,-0.029390452202757992],[125,303,66,-0.02776185124077572],[125,303,67,-0.010672746706337903],[125,303,68,-5.057998797308175E-4],[125,303,69,7.153078272372496E-4],[125,303,70,0.008308692254115284],[125,303,71,0.003558366770110676],[125,303,72,-0.014576831848610233],[125,303,73,-0.028028191380295973],[125,303,74,-0.030704999911340722],[125,303,75,-0.030383516275857128],[125,303,76,-0.03038466015254833],[125,303,77,-0.022159696607122262],[125,303,78,-0.022283799596714723],[125,303,79,-0.030528475927541692],[125,304,64,-0.027347662953822228],[125,304,65,-0.029428890554439594],[125,304,66,-0.027744804662048393],[125,304,67,-0.01060277070871003],[125,304,68,-4.257867601344011E-4],[125,304,69,7.880719986225815E-4],[125,304,70,0.008418124982584613],[125,304,71,0.0037294645487619456],[125,304,72,-0.014411375308836943],[125,304,73,-0.027889521058579305],[125,304,74,-0.030638377297078752],[125,304,75,-0.030363586663417052],[125,304,76,-0.030379679460537774],[125,304,77,-0.022122952838898674],[125,304,78,-0.02226918979101635],[125,304,79,-0.030549103695548186],[125,305,64,-0.027538992829894783],[125,305,65,-0.029483384610489285],[125,305,66,-0.02774146658688184],[125,305,67,-0.010537709218039664],[125,305,68,-3.465814686114499E-4],[125,305,69,8.594489740318868E-4],[125,305,70,0.008529067811958283],[125,305,71,0.0038990713541131434],[125,305,72,-0.014256579631715685],[125,305,73,-0.02776801072864457],[125,305,74,-0.03059013141439484],[125,305,75,-0.030360939058451428],[125,305,76,-0.03039057611664082],[125,305,77,-0.022097607229663918],[125,305,78,-0.022267841805500798],[125,305,79,-0.030589122630979147],[125,306,64,-0.027746158893267005],[125,306,65,-0.02955398875524137],[125,306,66,-0.027751868960190648],[125,306,67,-0.010477523619479252],[125,306,68,-2.6811424054911005E-4],[125,306,69,9.295420903905387E-4],[125,306,70,0.008641720424224945],[125,306,71,0.004067480369761641],[125,306,72,-0.014112158068615262],[125,306,73,-0.02766338992319928],[125,306,74,-0.030560115893980923],[125,306,75,-0.030375523280489067],[125,306,76,-0.030417325482984932],[125,306,77,-0.02208356037285778],[125,306,78,-0.022279683948283942],[125,306,79,-0.030648538537327713],[125,307,64,-0.027969400123422403],[125,307,65,-0.029640768650213735],[125,307,66,-0.027776053927041775],[125,307,67,-0.010422182351227365],[125,307,68,-1.9032035011268535E-4],[125,307,69,9.984513962009996E-4],[125,307,70,0.008756279766321184],[125,307,71,0.0042349792823340076],[125,307,72,-0.013977832286892311],[125,307,73,-0.027575397540731805],[125,307,74,-0.03054819594001267],[125,307,75,-0.030407299182582417],[125,307,76,-0.030459908991426383],[125,307,77,-0.022080716270080757],[125,307,78,-0.022304651939223517],[125,307,79,-0.03072736972032701],[125,308,64,-0.02820896851995308],[125,308,65,-0.029743801153240775],[125,308,66,-0.027814074145988566],[125,308,67,-0.010371661326310315],[125,308,68,-1.1314031566631655E-4],[125,308,69,0.0010662739258951793],[125,308,70,0.00887294062379601],[125,308,71,0.004401850898362481],[125,308,72,-0.013853331729338428],[125,308,73,-0.02750378111209049],[125,308,74,-0.0305542478673148],[125,308,75,-0.030456236447465854],[125,308,76,-0.030518314034730872],[125,308,77,-0.02208898207020996],[125,308,78,-0.02234268850554495],[125,308,79,-0.03082564658245776],[125,309,64,-0.028465129063712222],[125,309,65,-0.029863174223768097],[125,309,66,-0.027865993117086724],[125,309,67,-0.010325944394168366],[125,309,68,-3.652012928933059E-5],[125,309,69,0.001133103993377974],[125,309,70,0.008991896222724102],[125,309,71,0.004568373791681812],[125,309,72,-0.013738392929107172],[125,309,73,-0.0274482960149987],[125,309,74,-0.03057815861091803],[125,309,75,-0.030522314371905196],[125,309,76,-0.030592533854155588],[125,309,77,-0.022108267807360013],[125,309,78,-0.022393742962085097],[125,309,79,-0.030943411179932514],[125,310,64,-0.028738159668825765],[125,310,65,-0.0299989868136289],[125,310,66,-0.02793188552579194],[125,310,67,-0.010285023844247457],[125,310,68,3.9588488993063903E-5],[125,310,69,0.0011990335070806793],[125,310,70,0.009113338862984773],[125,310,71,0.0047348229839392075],[125,310,72,-0.013632758777877197],[125,310,73,-0.027408704634734094],[125,310,74,-0.030619825207634663],[125,310,75,-0.03060552163977401],[125,310,76,-0.03068256742481932],[125,310,77,-0.022138486138944268],[125,310,78,-0.022457770775991353],[125,310,79,-0.031080716740738246],[125,311,64,-0.02902835112441797],[125,311,65,-0.03015134874260445],[125,311,66,-0.028011837604001465],[125,311,67,-0.010248900953882117],[125,311,68,1.1522781166783624E-4],[125,311,69,0.0012641523090165105],[125,311,70,0.00923746058626073],[125,311,71,0.004901470661060603],[125,311,72,-0.013536177744818485],[125,311,73,-0.027384775469120885],[125,311,74,-0.030679154249337214],[125,311,75,-0.030705856084546554],[125,311,76,-0.030788419340520432],[125,311,77,-0.0221795520853457],[125,311,78,-0.02253473311585914],[125,311,79,-0.03123762714238869],[125,312,64,-0.02933600702489266],[125,312,65,-0.03032038055805116],[125,312,66,-0.028105947509538567],[125,312,67,-0.010217586582816886],[125,312,68,1.9043379832559294E-4],[125,312,69,0.0013285485405233372],[125,312,70,0.009364453882369289],[125,312,71,0.00506858692879111],[125,312,72,-0.01344840304370956],[125,312,73,-0.027376282175881537],[125,312,74,-0.030756061307663146],[125,312,75,-0.030823324442035428],[125,312,76,-0.03091009969991839],[125,312,77,-0.022231382772951492],[125,312,78,-0.02262459638543469],[125,312,79,-0.0314142163481005],[125,313,64,-0.029661443687602006],[125,313,65,-0.03050621337785282],[125,313,66,-0.02821432572541288],[125,313,67,-0.010191101816765838],[125,313,68,2.6523576388004657E-4],[125,313,69,0.001392309037569186],[125,313,70,0.009494512437781577],[125,313,71,0.005236440610685573],[125,313,72,-0.013369191745355504],[125,313,73,-0.027383002560313896],[125,313,74,-0.030850470329927472],[125,313,75,-0.030957942094355664],[125,313,76,-0.031047623996264383],[125,313,77,-0.022293897182559076],[125,313,78,-0.022727331742166082],[125,313,79,-0.0316105678001873],[125,314,64,-0.030004990056735802],[125,314,65,-0.03070898871594566],[125,314,66,-0.028337095480214694],[125,314,67,-0.010169478662450554],[125,314,68,3.3965601996564885E-4],[125,314,69,0.0014555197586800421],[125,314,70,0.009627831930416749],[125,314,71,0.005405300092170523],[125,314,72,-0.013298303832270654],[125,314,73,-0.027404717501197013],[125,314,74,-0.030962313006096545],[125,314,75,-0.03110973280625243],[125,314,76,-0.031201013013136412],[125,314,77,-0.022367015905425128],[125,314,78,-0.022842914601059493],[125,314,79,-0.03182677376956264],[125,315,64,-0.030366987592255694],[125,315,65,-0.030928858289636225],[125,315,66,-0.028474393191002506],[125,315,67,-0.010152760796570794],[125,315,68,4.1370948914172317E-4],[125,315,69,0.0015182662487490122],[125,315,70,0.009764610875036907],[125,315,71,0.005575434214556278],[125,315,72,-0.013235501192386567],[125,315,73,-0.027441209812749005],[125,315,74,-0.03109152810673178],[125,315,75,-0.031278728455072735],[125,315,76,-0.0313702927288858],[125,315,77,-0.022450660909476138],[125,315,78,-0.022971324124461165],[125,315,79,-0.03206293466033266],[125,316,64,-0.03074779014269213],[125,316,65,-0.03116598380790873],[125,316,66,-0.02862636893003075],[125,316,67,-0.010141004371152822],[125,316,68,4.8740329162629914E-4],[125,316,69,0.0015806341421788982],[125,316,70,0.009905051523787237],[125,316,71,0.005747113223106571],[125,316,72,-0.013180546548380868],[125,316,73,-0.027492263040425468],[125,316,74,-0.03123806079190097],[125,316,75,-0.03146496875581676],[125,316,76,-0.03155549423276495],[125,316,77,-0.022544755318459835],[125,316,78,-0.023112542698572255],[125,316,79,-0.03231915826857807],[125,317,64,-0.03114776380063269],[125,317,65,-0.0314205367399073],[125,317,66,-0.028793186916647444],[125,317,67,-0.010134278877705833],[125,317,68,5.607363043742819E-4],[125,317,69,0.0016427097089900808],[125,317,70,0.010049360826624646],[125,317,71,0.00592060977349138],[125,317,72,-0.013133202319054594],[125,317,73,-0.027557660188305678],[125,317,74,-0.03140186189113488],[125,317,75,-0.031668500982854876],[125,317,76,-0.03175665365595536],[125,317,77,-0.022649223207070066],[125,317,78,-0.023266555397694722],[125,317,79,-0.03259555899454719],[125,318,64,-0.03156728673972163],[125,318,65,-0.03169269806274728],[125,318,66,-0.028975026035635957],[125,318,67,-0.010132668072552906],[125,318,68,6.336986924464117E-4],[125,318,69,0.0017045804477180987],[125,318,70,0.01019775145657285],[125,318,71,0.006096200001153676],[125,318,72,-0.013093229409041155],[125,318,73,-0.027637182375801393],[125,318,74,-0.031582887154601516],[125,318,75,-0.031889379690041006],[125,318,76,-0.031973812120949324],[125,318,77,-0.02276398941532364],[125,318,78,-0.023433349437397413],[125,318,79,-0.03289225700761829],[125,319,64,-0.03200674972271433],[125,319,65,-0.03198266428669739],[125,319,66,-0.029172070808835653],[125,319,67,-0.010136255783512042],[125,319,68,7.062775068913389E-4],[125,319,69,0.0017663239621794132],[125,319,70,0.01035042391723589],[125,319,71,0.006274153810140995],[125,319,72,-0.013060391622804403],[125,319,73,-0.027730613481595067],[125,319,74,-0.0317810948923339],[125,319,75,-0.032127658992800054],[125,319,76,-0.03220700434725135],[125,319,77,-0.022888970875704535],[125,319,78,-0.023612906604122637],[125,319,79,-0.0332093675968352],[126,-64,64,-0.06318979695915333],[126,-64,65,0.014094910601401988],[126,-64,66,0.012698833666925698],[126,-64,67,-0.034246363571904755],[126,-64,68,-0.10650239690674923],[126,-64,69,-0.09867814388658541],[126,-64,70,-0.060426708784210026],[126,-64,71,-0.09199418883106636],[126,-64,72,-0.15667565185888174],[126,-64,73,-0.13724503603451532],[126,-64,74,-0.13869138225402833],[126,-64,75,-0.15317127978714273],[126,-64,76,-0.055875669900662166],[126,-64,77,-0.017576729443687798],[126,-64,78,-0.11674997806649533],[126,-64,79,-0.1509639356027256],[126,-63,64,-0.061991985818966255],[126,-63,65,0.013174467682446303],[126,-63,66,0.01143555852531113],[126,-63,67,-0.03455509087611636],[126,-63,68,-0.10478885326496556],[126,-63,69,-0.09581271869893954],[126,-63,70,-0.058123565874954056],[126,-63,71,-0.08975604472572112],[126,-63,72,-0.15418909300802724],[126,-63,73,-0.13542994525088256],[126,-63,74,-0.13772347200529825],[126,-63,75,-0.1516921508091195],[126,-63,76,-0.05502740457564514],[126,-63,77,-0.016690924320862763],[126,-63,78,-0.11504824236987635],[126,-63,79,-0.1492864200564669],[126,-62,64,-0.060872988283972994],[126,-62,65,0.012218359695893523],[126,-62,66,0.010168877170177794],[126,-62,67,-0.03486678404813481],[126,-62,68,-0.10309657003198357],[126,-62,69,-0.09300139180645019],[126,-62,70,-0.05589962882873225],[126,-62,71,-0.08761300041902641],[126,-62,72,-0.15177406099458418],[126,-62,73,-0.133676606426115],[126,-62,74,-0.13678248947037758],[126,-62,75,-0.1502352662420156],[126,-62,76,-0.05422544558851279],[126,-62,77,-0.015876472251704046],[126,-62,78,-0.11338856561791041],[126,-62,79,-0.1476281077828545],[126,-61,64,-0.0598298076644862],[126,-61,65,0.011228781729945445],[126,-61,66,0.008900031957202464],[126,-61,67,-0.03518053470041038],[126,-61,68,-0.10142510553730245],[126,-61,69,-0.0902437453510704],[126,-61,70,-0.053752932516045696],[126,-61,71,-0.0855618561581747],[126,-61,72,-0.14942835159775428],[126,-61,73,-0.13198296191068962],[126,-61,74,-0.13586699632734311],[126,-61,75,-0.14879984263112905],[126,-61,76,-0.053468051892969465],[126,-61,77,-0.015130606230845474],[126,-61,78,-0.1117691854211839],[126,-61,79,-0.14598792014481674],[126,-60,64,-0.05885950617929728],[126,-60,65,0.01020784833837503],[126,-60,66,0.007630192389997555],[126,-60,67,-0.03549548579653296],[126,-60,68,-0.09977404262031649],[126,-60,69,-0.08753937483933592],[126,-60,70,-0.05168157500401343],[126,-60,71,-0.08359951146599098],[126,-60,72,-0.14714983357354694],[126,-60,73,-0.13034702129086267],[126,-60,74,-0.13497560980617512],[126,-60,75,-0.14738511589727407],[126,-60,76,-0.0527535309594956],[126,-60,77,-0.01445064232074109],[126,-60,78,-0.11018840450856143],[126,-60,79,-0.14436483172309802],[126,-59,64,-0.05795916162741394],[126,-59,65,0.009157661895122514],[126,-59,66,0.006360526083439804],[126,-59,67,-0.03581077506828839],[126,-59,68,-0.09814294740493842],[126,-59,69,-0.08488785624659612],[126,-59,70,-0.049683671503704965],[126,-59,71,-0.08172288875067896],[126,-59,72,-0.14493634612712547],[126,-59,73,-0.12876674939373894],[126,-59,74,-0.1341068937923816],[126,-59,75,-0.1459902557984981],[126,-59,76,-0.05208017967709109],[126,-59,77,-0.013833930819112831],[126,-59,78,-0.10864453281004792],[126,-59,79,-0.14275780720243822],[126,-58,64,-0.057125867583620565],[126,-58,65,0.008080313182506687],[126,-58,66,0.005092199377535418],[126,-58,67,-0.036125534710129886],[126,-58,68,-0.09653136942695692],[126,-58,69,-0.08228874724377803],[126,-58,70,-0.047757355539934605],[126,-58,71,-0.07992893427221091],[126,-58,72,-0.14278570001995525],[126,-58,73,-0.12724006774565894],[126,-58,74,-0.13325935941176792],[126,-58,75,-0.14461436687210338],[126,-58,76,-0.05144628558113297],[126,-58,77,-0.013277857479590963],[126,-58,78,-0.10713588738511985],[126,-58,79,-0.14116580039768847],[126,-57,64,-0.056356733369785306],[126,-57,65,0.006977882241609541],[126,-57,66,0.0038263781427086392],[126,-57,67,-0.03643889096785852],[126,-57,68,-0.09493884184114756],[126,-57,69,-0.07974158855430864],[126,-57,70,-0.045900780054239636],[126,-57,71,-0.07821461890383373],[126,-57,72,-0.14069567856845996],[126,-57,73,-0.12576485584907962],[126,-57,74,-0.1324314654684425],[126,-57,75,-0.14325648931804402],[126,-57,76,-0.05085012785027794],[126,-57,77,-0.01277984439539051],[126,-57,78,-0.10566079227417442],[126,-57,79,-0.13958775333448553],[126,-56,64,-0.05564888379064988],[126,-56,65,0.005852439503543482],[126,-56,66,0.002564228793225088],[126,-56,67,-0.036749963609888414],[126,-56,68,-0.09336488168863773],[126,-56,69,-0.07724590540811652],[126,-56,70,-0.044112118412905126],[126,-56,71,-0.07657693865932211],[126,-56,72,-0.1386640384905584],[126,-56,73,-0.12433895223445464],[126,-56,74,-0.1316216187021921],[126,-56,75,-0.14191559979385895],[126,-56,76,-0.05028997805746948],[126,-56,77,-0.012337350539726547],[126,-56,78,-0.10421757825971588],[126,-56,79,-0.1380225953672057],[126,-55,64,-0.054999458645293826],[126,-55,65,0.00470604718649994],[126,-55,66,0.001306919491045231],[126,-55,67,-0.037057865296835295],[126,-55,68,-0.09180899022497659],[126,-55,69,-0.07480120907634355],[126,-55,70,-0.04238956531521605],[126,-55,71,-0.07501291499474427],[126,-55,72,-0.13668851060716192],[126,-55,73,-0.12296015529926886],[126,-55,74,-0.13082817388477902],[126,-55,75,-0.1405906121335525],[126,-55,76,-0.04976410068981227],[126,-55,77,-0.011947871981360608],[126,-55,78,-0.1028045825516516],[126,-55,79,-0.13646924234647886],[126,-54,64,-0.05440561202668176],[126,-54,65,0.003540760942418834],[126,-54,66,5.562152193247988E-5],[126,-54,67,-0.037361700865310425],[126,-54,68,-0.0902706533092905],[126,-54,69,-0.07240699847061165],[126,-54,70,-0.040731337597646924],[126,-54,71,-0.07351959489458862],[126,-54,72,-0.1347668004070977],[126,-54,73,-0.12162622394801133],[126,-54,74,-0.13004943377602016],[126,-54,75,-0.13928037800394416],[126,-54,76,-0.04927075345288811],[126,-54,77,-0.011608941794245568],[126,-54,78,-0.1014201484112015],[126,-54,79,-0.13492659584852373],[126,-53,64,-0.05386455503947658],[126,-53,65,0.0023586336796339253],[126,-53,66,-0.001188490172594517],[126,-53,67,-0.037660598693978156],[126,-53,68,-0.08874941893939094],[126,-53,69,-0.07006282369096196],[126,-53,70,-0.03913571009406108],[126,-53,71,-0.0720941166179616],[126,-53,72,-0.13289671191375454],[126,-53,73,-0.12033499164330495],[126,-53,74,-0.1292837729818595],[126,-53,75,-0.13798382199796524],[126,-53,76,-0.04880823569892345],[126,-53,77,-0.01131814106165638],[126,-53,78,-0.10006272689442822],[126,-53,79,-0.13339368075025929],[126,-52,64,-0.05337384951401122],[126,-52,65,0.0011617192943123226],[126,-52,66,-0.002424254474274429],[126,-52,67,-0.03795393340089316],[126,-52,68,-0.0872454109215513],[126,-52,69,-0.06776868805996113],[126,-52,70,-0.037601240887204526],[126,-52,71,-0.07073414596388236],[126,-52,72,-0.13107697346967753],[126,-52,73,-0.11908513063207937],[126,-52,74,-0.12853047822015637],[126,-52,75,-0.13670084788919754],[126,-52,76,-0.048375213937827406],[126,-52,77,-0.011073173173463211],[126,-52,78,-0.09873155906982574],[126,-52,79,-0.1318705714117599],[126,-51,64,-0.052931239330373483],[126,-51,65,-4.796422069907893E-5],[126,-51,66,-0.0036505516578364122],[126,-51,67,-0.03824121688151055],[126,-51,68,-0.08575900996612906],[126,-51,69,-0.06552476308246129],[126,-51,70,-0.03612660275154622],[126,-51,71,-0.0694375998170622],[126,-51,72,-0.12930673778078144],[126,-51,73,-0.11787570304524546],[126,-51,74,-0.12778927386052874],[126,-51,75,-0.13543180956832898],[126,-51,76,-0.047970532792791606],[126,-51,77,-0.010871815484618528],[126,-51,78,-0.09742625955440784],[126,-51,79,-0.13035783476562318],[126,-50,64,-0.05253450193643585],[126,-50,65,-0.0012684510564883837],[126,-50,66,-0.004866308692509918],[126,-50,67,-0.038521990916376564],[126,-50,68,-0.08429058115927078],[126,-50,69,-0.0633311637789654],[126,-50,70,-0.03471045570457962],[126,-50,71,-0.0682024156797546],[126,-50,72,-0.12758515102332715],[126,-50,73,-0.11670576768937242],[126,-50,74,-0.12705989470928233],[126,-50,75,-0.134177043715959],[126,-50,76,-0.04759304930586515],[126,-50,77,-0.010711881946720793],[126,-50,78,-0.09614645773519678],[126,-50,79,-0.12885604477667154],[126,-49,64,-0.0521814505751357],[126,-49,65,-0.0024978303688765364],[126,-49,66,-0.006070500496219576],[126,-49,67,-0.0387958268922979],[126,-49,68,-0.08284047214780335],[126,-49,69,-0.06118794868326738],[126,-49,70,-0.033351448982834535],[126,-49,71,-0.06702655388057233],[126,-49,72,-0.12591135329139608],[126,-49,73,-0.11557438123563102],[126,-49,74,-0.1263420853137087],[126,-49,75,-0.13293686848179362],[126,-49,76,-0.04724163466803282],[126,-49,77,-0.010591226331939435],[126,-49,78,-0.09489179627643125],[126,-49,79,-0.12736577865353627],[126,-48,64,-0.051869937156919295],[126,-48,65,-0.003734248757321607],[126,-48,66,-0.007262150982407219],[126,-48,67,-0.03906232599504496],[126,-48,68,-0.08140901286322635],[126,-48,69,-0.05909512119869722],[126,-48,70,-0.03204822366314819],[126,-48,71,-0.0659080008499651],[126,-48,72,-0.12428448129436702],[126,-48,73,-0.11448060140164758],[126,-48,74,-0.1256356014584076],[126,-48,75,-0.13171158466949515],[126,-48,76,-0.04691517666418473],[126,-48,77,-0.010507745362432304],[126,-48,78,-0.093661931489048],[126,-48,79,-0.12588761572037455],[126,-47,64,-0.05159785494121286],[126,-47,65,-0.004975912498253058],[126,-47,66,-0.008440333906019911],[126,-47,67,-0.039321119276301116],[126,-47,68,-0.07999651530050483],[126,-47,69,-0.05705263109036354],[126,-47,70,-0.030799415229174284],[126,-47,71,-0.06484477218931048],[126,-47,72,-0.12270367093165561],[126,-47,73,-0.11342348995039747],[126,-47,74,-0.12494021149529462],[126,-47,75,-0.1305014768564389],[126,-47,76,-0.046612581911974066],[126,-47,77,-0.010459381530673335],[126,-47,78,-0.09245653360756445],[126,-47,79,-0.12442213630561855],[126,-46,64,-0.05136314102446484],[126,-46,65,-0.006221089534749071],[126,-46,66,-0.009604173514673008],[126,-46,67,-0.03957186760101015],[126,-46,68,-0.07860327335066211],[126,-46,69,-0.05506037610149369],[126,-46,70,-0.02960365607637163],[126,-46,71,-0.06383491553293646],[126,-46,72,-0.12116805974246568],[126,-46,73,-0.11240211550522326],[126,-46,74,-0.12425569751211614],[126,-46,75,-0.12930681444920664],[126,-46,76,-0.04633277789822034],[126,-46,77,-0.010444125617960584],[126,-46,78,-0.09127528698176159],[126,-46,79,-0.12296992065498312],[126,-45,64,-0.051163778632918065],[126,-45,65,-0.007468111225067155],[126,-45,66,-0.010752845011209322],[126,-45,67,-0.03981426148121026],[126,-45,68,-0.07722956268588684],[126,-45,69,-0.05311820368199505],[126,-45,70,-0.028459577949132068],[126,-45,71,-0.06287651320303966],[126,-45,72,-0.1196767892287772],[126,-45,73,-0.11141555618067664],[126,-45,74,-0.12358185634452594],[126,-45,75,-0.12812785267569549],[126,-45,76,-0.04607471481686949],[126,-45,77,-0.010460018918853176],[126,-45,78,-0.09011789019027211],[126,-45,79,-0.12153154787530471],[126,-44,64,-0.05099779921920963],[126,-44,65,-0.008715373853389115],[126,-44,66,-0.011885574834246761],[126,-44,67,-0.04004802080254726],[126,-44,68,-0.07587564069589291],[126,-44,69,-0.05122591281777405],[126,-44,70,-0.02736581430449515],[126,-44,71,-0.061967684658505544],[126,-44,72,-0.11822900705070084],[126,-44,73,-0.11046290202980298],[126,-44,74,-0.12291850043724874],[126,-44,75,-0.12696483351506604],[126,-44,76,-0.04583736721309244],[126,-44,77,-0.010505155179976767],[126,-44,78,-0.08898405608327509],[126,-44,79,-0.12010759491557563],[126,-43,64,-0.050863284362700094],[126,-43,65,-0.009961339906908503],[126,-43,66,-0.0130016407637166],[126,-43,67,-0.040272894449808194],[126,-43,68,-0.07454174647422843],[126,-43,69,-0.04938325594965069],[126,-43,70,-0.026321002597505246],[126,-43,71,-0.061106588739380296],[126,-43,72,-0.11682386909390438],[126,-43,73,-0.10954325730921456],[126,-43,74,-0.12226545856020327],[126,-43,75,-0.12581798656695894],[126,-43,76,-0.04561973543856823],[126,-43,77,-0.010577682262178204],[126,-43,78,-0.08787351176129665],[126,-43,79,-0.11869863559099922],[126,-42,64,-0.050758367473885055],[126,-42,65,-0.011204539123754484],[126,-42,66,-0.014100371858318497],[126,-42,67,-0.040488659837505714],[126,-42,68,-0.07322810085289075],[126,-42,69,-0.04758994097079953],[126,-42,70,-0.025323786483653347],[126,-42,71,-0.060291425709287964],[126,-42,72,-0.11546054140925538],[126,-42,73,-0.10865574256375053],[126,-42,74,-0.12162257638547816],[126,-42,75,-0.12468752986135251],[126,-42,76,-0.045420846923141564],[126,-42,77,-0.010675803535240178],[126,-42,78,-0.0867859984968047],[126,-42,79,-0.11730523965531657],[126,-41,64,-0.050681235304164504],[126,-41,65,-0.012443569317067225],[126,-41,66,-0.0151811482322478],[126,-41,67,-0.040695122351732095],[126,-41,68,-0.07193490648372533],[126,-41,69,-0.045845633292182525],[126,-41,70,-0.02437281793462133],[126,-41,71,-0.05952043909896383],[126,-41,72,-0.11413820202556581],[126,-41,73,-0.10779949653333569],[126,-41,74,-0.12098971693146154],[126,-41,75,-0.12357367061076323],[126,-41,76,-0.04523975726856248],[126,-41,77,-0.010797779014925544],[126,-41,78,-0.08572127160525847],[126,-41,79,-0.11592797192634788],[126,-40,64,-0.050630129262895424],[126,-40,65,-0.013677096981107865],[126,-40,66,-0.016243400678725494],[126,-40,67,-0.040892114709462475],[126,-40,68,-0.07066234796501722],[126,-40,69,-0.04414995796580147],[126,-40,70,-0.023466759264115167],[126,-40,71,-0.058791917354701156],[126,-40,72,-0.11285604263684974],[126,-40,73,-0.10697367788521168],[126,-40,74,-0.12036676088057473],[126,-40,75,-0.12247660590657912],[126,-40,76,-0.04507555117025699],[126,-40,77,-0.010941926252397639],[126,-40,78,-0.08467910027202538],[126,-40,79,-0.11456739146920716],[126,-39,64,-0.05060334654403908],[126,-39,65,-0.014903857685540091],[126,-39,66,-0.017286610147730284],[126,-39,67,-0.041079496241154555],[126,-39,68,-0.06941059201139708],[126,-39,69,-0.042502501855788424],[126,-39,70,-0.022604285060933246],[126,-39,71,-0.05810419529591026],[126,-39,72,-0.1116132701658177],[126,-39,73,-0.10617746677505428],[126,-39,74,-0.11975360677700048],[126,-39,75,-0.12139652336125256],[126,-39,76,-0.04492734317316798],[126,-39,77,-0.011106620986174457],[126,-39,78,-0.08365926734123343],[126,-39,79,-0.11322405084107898],[126,-38,64,-0.0505992410655258],[126,-38,65,-0.01612265626473038],[126,-38,66,-0.01831030708567758],[126,-38,67,-0.04125715210264133],[126,-38,68,-0.06817978766534245],[126,-38,69,-0.04090281584795558],[126,-38,70,-0.02178408402715077],[126,-38,71,-0.057455655386718464],[126,-38,72,-0.11040910820597148],[126,-38,73,-0.10541006624114926],[126,-38,74,-0.11915017111105682],[126,-38,75,-0.12033360169831225],[126,-38,76,-0.04479427826803907],[126,-38,77,-0.011290297567101003],[126,-38,78,-0.08266156907250176],[126,-38,79,-0.11189849540112282],[126,-37,64,-0.05061622422497834],[126,-37,65,-0.017332366809290276],[126,-37,66,-0.01931407064480179],[126,-37,67,-0.0414249924221529],[126,-37,68,-0.06697006654847723],[126,-37,69,-0.0393504170888303],[126,-37,70,-0.02100486071980454],[126,-37,71,-0.05684472882701608],[126,-37,72,-0.1092427983450714],[126,-37,73,-0.10467070343621926],[126,-37,74,-0.11855638829690368],[126,-37,75,-0.11928801129220812],[126,-37,76,-0.04467553233467164],[126,-37,77,-0.011491449166968615],[126,-37,78,-0.08168581487125834],[126,-37,79,-0.110591262688656],[126,-36,64,-0.05065276547572371],[126,-36,65,-0.018531932467244557],[126,-36,66,-0.02029752776982315],[126,-36,67,-0.04158295138796908],[126,-36,68,-0.06578154315064123],[126,-36,69,-0.037844791245459516],[126,-36,70,-0.020265337194782768],[126,-36,71,-0.056269896468614466],[126,-36,72,-0.10811360137295266],[126,-36,73,-0.10395863070169116],[126,-36,74,-0.117972210550084],[126,-36,75,-0.11825991465986627],[126,-36,76,-0.04457031243862437],[126,-36,77,-0.011708627781324647],[126,-36,78,-0.08073182699792769],[126,-36,79,-0.10930288187218531],[126,-35,64,-0.05070739272776833],[126,-35,65,-0.019720365062811787],[126,-35,66,-0.021260352169751882],[126,-35,67,-0.04173098628232483],[126,-35,68,-0.06461431515492294],[126,-35,69,-0.036385394777951684],[126,-35,70,-0.01956425455233886],[126,-35,71,-0.05572968956281341],[126,-35,72,-0.10702079837724841],[126,-35,73,-0.10327312648976729],[126,-35,74,-0.11739760767161868],[126,-35,75,-0.11724946690607056],[126,-35,76,-0.0444778569880997],[126,-35,77,-0.01194044403723235],[126,-35,78,-0.07979944026118208],[126,-35,79,-0.10803387327163425],[126,-34,64,-0.05077869257859063],[126,-34,65,-0.02089674454080789],[126,-34,66,-0.0222022631823919],[126,-34,67,-0.0418690764667786],[126,-34,68,-0.06346846379660537],[126,-34,69,-0.034971657216993],[126,-34,70,-0.018900374383915543],[126,-34,71,-0.05522269034582549],[126,-34,72,-0.10596369173069436],[126,-34,73,-0.10261349613875666],[126,-34,74,-0.11683256674510221],[126,-34,75,-0.1162568161246125],[126,-34,76,-0.044397435757639936],[126,-34,77,-0.01218556681658059],[126,-34,78,-0.07888850170004337],[126,-34,79,-0.10678474795559095],[126,-33,64,-0.05086531037921428],[126,-33,65,-0.02206021824514713],[126,-33,66,-0.02312302453927926],[126,-33,67,-0.0419972223243006],[126,-33,68,-0.062344054254167426],[126,-33,69,-0.0336029834392286],[126,-33,70,-0.018272480120583207],[126,-33,71,-0.05474753246899354],[126,-33,72,-0.10494160597414963],[126,-33,73,-0.1019790725075495],[126,-33,74,-0.11627709175334514],[126,-33,75,-0.1152821037573109],[126,-33,76,-0.0443283497854038],[126,-33,77,-0.012442722705605414],[126,-33,78,-0.07799887025946826],[126,-33,79,-0.10555600741515485],[126,-32,64,-0.05096595014109749],[126,-32,65,-0.023210000039831147],[126,-32,66,-0.024022443038427207],[126,-32,67,-0.042115444162883854],[126,-32,68,-0.06124113607022791],[126,-32,69,-0.032278755933637666],[126,-32,70,-0.01767937828358494],[126,-32,71,-0.05430290128076617],[126,-32,72,-0.10395388859948598],[126,-32,73,-0.10136921647510638],[126,-32,74,-0.1157312031207657],[126,-32,75,-0.1143254649127679],[126,-32,76,-0.044269931150575884],[126,-32,77,-0.012710695280999934],[126,-32,78,-0.07713041646359504],[126,-32,79,-0.1043481433154361],[126,-31,64,-0.05107937428987467],[126,-31,65,-0.024345369281147524],[126,-31,66,-0.02490036713231876],[126,-31,67,-0.04222378108546189],[126,-31,68,-0.060159743600505],[126,-31,69,-0.030998337052692906],[126,-31,70,-0.017119899638043536],[126,-31,71,-0.05388753396778388],[126,-31,72,-0.10299991073688157],[126,-31,73,-0.10078331731115879],[126,-31,74,-0.11519493718775346],[126,-31,75,-0.11338702864686338],[126,-31,76,-0.04422154263755497],[126,-31,77,-0.012988324242988942],[126,-31,78,-0.07628302209070946],[126,-31,79,-0.10316163732558396],[126,-30,64,-0.051204403272239164],[126,-30,65,-0.025465669649906306],[126,-30,66,-0.025756685438453993],[126,-30,67,-0.04232228983070857],[126,-30,68,-0.05909989648887358],[126,-30,69,-0.02976107124256249],[126,-30,70,-0.01659290025124493],[126,-30,71,-0.05350021956258859],[126,-30,72,-0.10207906775121932],[126,-30,73,-0.10022079292443287],[126,-30,74,-0.1146683456230448],[126,-30,75,-0.11246691820691244],[126,-30,76,-0.04418257729345438],[126,-30,77,-0.013274504405527793],[126,-30,78,-0.07545657985367611],[126,-30,79,-0.10199696102788373],[126,-29,64,-0.051339915022286325],[126,-29,65,-0.026570307852390167],[126,-29,66,-0.026591325179381543],[126,-29,67,-0.042411043588871974],[126,-29,68,-0.058061600166430416],[126,-29,69,-0.02856628724691894],[126,-29,70,-0.016097262457085815],[126,-29,71,-0.053139798825437984],[126,-29,72,-0.10119077975227521],[126,-29,73,-0.09968108999463204],[126,-29,74,-0.11415149477980097],[126,-29,75,-0.11156525124122259],[126,-29,76,-0.04415245788520627],[126,-29,77,-0.013568184553450914],[126,-29,78,-0.07465099308920753],[126,-29,79,-0.10085457590606213],[126,-28,64,-0.051484844294002366],[126,-28,65,-0.027658752198912916],[126,-28,66,-0.027404250559158908],[126,-28,67,-0.0424901307967581],[126,-28,68,-0.05704484637268912],[126,-28,69,-0.027413300279566562],[126,-28,70,-0.015631895728753953],[126,-28,71,-0.052805164007951],[126,-28,72,-0.1003344920236535],[126,-28,73,-0.09916368399461253],[126,-28,74,-0.11364446500101347],[126,-28,75,-0.11068213997584134],[126,-28,76,-0.04413063626253631],[126,-28,77,-0.013868366176242002],[126,-28,78,-0.07386617545917887],[126,-28,79,-0.09973493341279442],[126,-27,64,-0.05163818186670815],[126,-27,65,-0.028730531068828963],[126,-27,66,-0.02819546108294365],[126,-27,67,-0.042559653915717144],[126,-27,68,-0.05604961369702787],[126,-27,69,-0.026301414161542625],[126,-27,70,-0.015195737461980625],[126,-27,71,-0.052495258506353296],[126,-27,72,-0.09950967537549783],[126,-27,73,-0.09866807910918556],[126,-27,74,-0.11314734987962032],[126,-27,75,-0.10981769136020969],[126,-27,76,-0.04411659263291522],[126,-27,77,-0.014174102087826402],[126,-27,78,-0.07310205066694925],[126,-27,79,-0.09863847511616528],[126,-26,64,-0.05179897363019435],[126,-26,65,-0.02978523127060194],[126,-26,66,-0.028964989826018972],[126,-26,67,-0.042619728196071335],[126,-26,68,-0.05507586813839587],[126,-26,69,-0.025229923418665992],[126,-26,70,-0.014787753671322125],[126,-26,71,-0.05220907641194955],[126,-26,72,-0.09871582642591183],[126,-26,73,-0.09819380805680024],[126,-26,74,-0.11266025547831042],[126,-26,75,-0.10897200718319494],[126,-26,76,-0.04410983475425794],[126,-26,77,-0.014484494941326613],[126,-26,78,-0.07235855219126483],[126,-26,79,-0.09756563292450002],[126,-25,64,-0.051966319556535946],[126,-25,65,-0.030822496305636472],[126,-25,66,-0.029712901658500702],[126,-25,67,-0.04267048043136312],[126,-25,68,-0.054123563681493736],[126,-25,69,-0.024198115336110007],[126,-25,70,-0.01440693960231846],[126,-25,71,-0.05194566196658926],[126,-25,72,-0.09795246781620885],[126,-25,73,-0.09774043182046475],[126,-25,74,-0.11218329951388693],[126,-25,75,-0.108145184161021],[126,-25,76,-0.044109897051061435],[126,-25,77,-0.014798695647504979],[126,-25,78,-0.07163562304018627],[126,-25,79,-0.09651682938889458],[126,-24,64,-0.05213937256556492],[126,-24,65,-0.03184202454439001],[126,-24,66,-0.030439291431650212],[126,-24,67,-0.042712047705496296],[126,-24,68,-0.05319264288765516],[126,-24,69,-0.023205271967007345],[126,-24,70,-0.014052320262574233],[126,-24,71,-0.05170410893081448],[126,-24,72,-0.09721914836508765],[126,-24,73,-0.09730753929413859],[126,-24,74,-0.11171661051074357],[126,-24,75,-0.10733731399849136],[126,-24,76,-0.04411633965943989],[126,-24,77,-0.015115901705261307],[126,-24,78,-0.07093321552726305],[126,-24,79,-0.09549247808262146],[126,-23,64,-0.05231733729084371],[126,-23,65,-0.032843567323004585],[126,-23,66,-0.031144282131332746],[126,-23,67,-0.042744576135479086],[126,-23,68,-0.052283037498591166],[126,-23,69,-0.022250672092391476],[126,-23,70,-0.01372295087486531],[126,-23,71,-0.051483559872171764],[126,-23,72,-0.09651544316669457],[126,-23,73,-0.09689474685060666],[126,-23,74,-0.11126032692761112],[126,-23,75,-0.10654848342466185],[126,-23,76,-0.04412874740613086],[126,-23,77,-0.015435355452024157],[126,-23,78,-0.07025129107180922],[126,-23,79,-0.0944929840563046],[126,-22,64,-0.0524994687530815],[126,-22,65,-0.03382692696863049],[126,-22,66,-0.031828023003990374],[126,-22,67,-0.0427682196123439],[126,-22,68,-0.051394669051340075],[126,-22,69,-0.021333593130337326],[126,-22,70,-0.013417917255675696],[126,-22,71,-0.05128320538118776],[126,-22,72,-0.09584095363761322],[126,-22,73,-0.09650169783681546],[126,-22,74,-0.11081459626154454],[126,-22,75,-0.10577877420412433],[126,-22,76,-0.04414672872641551],[126,-22,77,-0.01575634224161041],[126,-22,78,-0.06958982002505111],[126,-22,79,-0.09351874436776501],[126,-21,64,-0.0526850709478593],[126,-21,65,-0.03479195476138375],[126,-21,66,-0.03249068766018837],[126,-21,67,-0.042783138542553514],[126,-21,68,-0.05052744950282294],[126,-21,69,-0.02045331299256322],[126,-21,70,-0.013136336122703141],[126,-21,71,-0.051102283222365145],[126,-21,72,-0.09519530751775665],[126,-21,73,-0.09612806200248375],[126,-21,74,-0.11037957413280867],[126,-21,75,-0.10502826312493106],[126,-21,76,-0.04416991452561155],[126,-21,77,-0.016078188556703073],[126,-21,78,-0.06894878152371083],[126,-21,79,-0.09257014868533361],[126,-20,64,-0.05287349535429043],[126,-20,65,-0.03573854884050282],[126,-20,66,-0.03313247216035747],[126,-20,67,-0.04278949859182411],[126,-20,68,-0.04968128186234033],[126,-20,69,-0.019609111887021517],[126,-20,70,-0.012877355334868236],[126,-20,71,-0.05094007742726941],[126,-20,72,-0.0945781588299355],[126,-20,73,-0.09577353486749174],[126,-20,74,-0.10995542335388886],[126,-20,75,-0.10429702196393474],[126,-20,76,-0.04419795698837877],[126,-20,77,-0.016400260062534373],[126,-20,78,-0.06832816337226301],[126,-20,79,-0.09164757996322759],[126,-19,64,-0.053064139371246655],[126,-19,65,-0.03666665206210946],[126,-19,66,-0.03375359308714028],[126,-19,67,-0.04278746943314872],[126,-19,68,-0.048856060830537715],[126,-19,69,-0.01880027406551376],[126,-19,70,-0.012640154068585327],[126,-19,71,-0.05079591733671932],[126,-19,72,-0.09398918780289794],[126,-19,73,-0.09543783703345697],[126,-19,74,-0.109542312985648],[126,-19,75,-0.1035851174303106],[126,-19,76,-0.04423052833991125],[126,-19,77,-0.016721959608061457],[126,-19,78,-0.0677279619550643],[126,-19,79,-0.09075141518766543],[126,-18,64,-0.053256444687630265],[126,-18,65,-0.03757624981570419],[126,-18,66,-0.034354285608445105],[126,-18,67,-0.04277722350056967],[126,-18,68,-0.048051673443443126],[126,-18,69,-0.01802608951572838],[126,-18,70,-0.0124239429341339],[126,-18,71,-0.050669176598892765],[126,-18,72,-0.09342810076252801],[126,-18,73,-0.09512071344468673],[126,-18,74,-0.10914041738333402],[126,-18,75,-0.10289261108788064],[126,-18,76,-0.04426731956276095],[126,-18,77,-0.017042725180444793],[126,-18,78,-0.06714818217935493],[126,-18,79,-0.08988202619233802],[126,-17,64,-0.05344989559284415],[126,-17,65,-0.038467367806055475],[126,-17,66,-0.03493480153481927],[126,-17,67,-0.04275893474984676],[126,-17,68,-0.04726799972011811],[126,-17,69,-0.01728585559731707],[126,-17,70,-0.012227964035898755],[126,-17,71,-0.05055927212981391],[126,-17,72,-0.09289462999563723],[126,-17,73,-0.09482193260332493],[126,-17,74,-0.1087499152346979],[126,-17,75,-0.10221955925660495],[126,-17,76,-0.044308039072617586],[126,-17,77,-0.01736202781808646],[126,-17,78,-0.06658883744988224],[126,-17,79,-0.08903978054174728],[126,-16,64,-0.053644017233546254],[126,-16,65,-0.03934006980694208],[126,-16,66,-0.035495407374549794],[126,-16,67,-0.0427327774270489],[126,-16,68,-0.0465049133126655],[126,-16,69,-0.016578878622084417],[126,-16,70,-0.012051490980414437],[126,-16,71,-0.05046566304257853],[126,-16,72,-0.09238853359076757],[126,-16,73,-0.09454128574337638],[126,-16,74,-0.10837098859227354],[126,-16,75,-0.10156601289358044],[126,-16,76,-0.0443524113561612],[126,-16,77,-0.0176793694871396],[126,-16,78,-0.06604994967586252],[126,-16,79,-0.08822504248103745],[126,-15,64,-0.053838373822557316],[126,-15,65,-0.040194455392874716],[126,-15,66,-0.03603638238957063],[126,-15,67,-0.04269892484586537],[126,-15,68,-0.04576228215742225],[126,-15,69,-0.015904475378679298],[126,-15,70,-0.011893828836172777],[126,-15,71,-0.05038784955143139],[126,-15,72,-0.09190959526028197],[126,-15,73,-0.09427858596803035],[126,-15,74,-0.10800382190156455],[126,-15,75,-0.1009320174537431],[126,-15,76,-0.04440017557376977],[126,-15,77,-0.017994280925924293],[126,-15,78,-0.0655315493108475],[126,-15,79,-0.08743817395095618],[126,-14,64,-0.05403256680539093],[126,-14,65,-0.041030657654386675],[126,-14,66,-0.036558016654738935],[126,-14,67,-0.04265754817402428],[126,-14,68,-0.04503996912609981],[126,-14,69,-0.015261974602346328],[126,-14,70,-0.011754314049031166],[126,-14,71,-0.050325371856427346],[126,-14,72,-0.0914576241477368],[126,-14,73,-0.09403366735429482],[126,-14,74,-0.10764860102642576],[126,-14,75,-0.10031761273020652],[126,-14,76,-0.04445108412942506],[126,-14,77,-0.01830631946112423],[126,-14,78,-0.06503367542586064],[126,-14,79,-0.08667953566654468],[126,-13,64,-0.05422632412185063],[126,-13,65,-0.04184891487057403],[126,-13,66,-0.03706066497067387],[126,-13,67,-0.042608847644848936],[126,-13,68,-0.04433781622182566],[126,-13,69,-0.01465070139861366],[126,-13,70,-0.011632356227644813],[126,-13,71,-0.050277870969878014],[126,-13,72,-0.09103246917226865],[126,-13,73,-0.09380640940802369],[126,-13,74,-0.1073055472723231],[126,-13,75,-0.09972284744073175],[126,-13,76,-0.044504922947399286],[126,-13,77,-0.01861509653408146],[126,-13,78,-0.06455635816782233],[126,-13,79,-0.08594946546678793],[126,-12,64,-0.05442009189200378],[126,-12,65,-0.042650052276160436],[126,-12,66,-0.03754511743912344],[126,-12,67,-0.04255327125623737],[126,-12,68,-0.04365553710698336],[126,-12,69,-0.014069862039303962],[126,-12,70,-0.01152770465478127],[126,-12,71,-0.050245483872934274],[126,-12,72,-0.0906341061068207],[126,-12,73,-0.09359690354142673],[126,-12,74,-0.10697514982115237],[126,-12,75,-0.09914788070466461],[126,-12,76,-0.0445616615142256],[126,-12,77,-0.018920479414203564],[126,-12,78,-0.0640994996968411],[126,-12,79,-0.0852481203476318],[126,-11,64,-0.05461460876968809],[126,-11,65,-0.04343514146930155],[126,-11,66,-0.03801235943608262],[126,-11,67,-0.04249138451415832],[126,-11,68,-0.04299279195382814],[126,-11,69,-0.01351860973250495],[126,-11,70,-0.011440237608044393],[126,-11,71,-0.05022853640849303],[126,-11,72,-0.09026255132580309],[126,-11,73,-0.09340533943826052],[126,-11,74,-0.10665801560176653],[126,-11,75,-0.09859292688651004],[126,-11,76,-0.04462137506602577],[126,-11,77,-0.01922247628381757],[126,-11,78,-0.06366294586775904],[126,-11,79,-0.08457555702916723],[126,-10,64,-0.05481057169679469],[126,-10,65,-0.044205229152292955],[126,-10,66,-0.03846336886115421],[126,-10,67,-0.042423753983103274],[126,-10,68,-0.04234924787300349],[126,-10,69,-0.012996105912435926],[126,-10,70,-0.011369807163634124],[126,-10,71,-0.05022731387840962],[126,-10,72,-0.08991780620688136],[126,-10,73,-0.09323191246480103],[126,-10,74,-0.10635474280922179],[126,-10,75,-0.09805820367578102],[126,-10,76,-0.04468416756262864],[126,-10,77,-0.019521129483374054],[126,-10,78,-0.06324654927253717],[126,-10,79,-0.08393181238279988],[126,-9,64,-0.05500863801395057],[126,-9,65,-0.044961337488979715],[126,-9,66,-0.03889911411398255],[126,-9,67,-0.04235094506324081],[126,-9,68,-0.041724579195456045],[126,-9,69,-0.012501522417893995],[126,-9,70,-0.011316242581586701],[126,-9,71,-0.05024206481884169],[126,-9,72,-0.08959985985425988],[126,-9,73,-0.09307682342997495],[126,-9,74,-0.10606592024630078],[126,-9,75,-0.09754393125759268],[126,-9,76,-0.044750168735231445],[126,-9,77,-0.019816512163663973],[126,-9,78,-0.06285016979966324],[126,-9,79,-0.08331690639753071],[126,-8,64,-0.05520942916513476],[126,-8,65,-0.04570446583481438],[126,-8,66,-0.03932055329331688],[126,-8,67,-0.04227352056225923],[126,-8,68,-0.041118467428789156],[126,-8,69,-0.01203404317941393],[126,-8,70,-0.011279354256164779],[126,-8,71,-0.050273005684013806],[126,-8,72,-0.08930869187482751],[126,-8,73,-0.09294027881220006],[126,-8,74,-0.10579212739911557],[126,-8,75,-0.09705033184112401],[126,-8,76,-0.04481953172601214],[126,-8,77,-0.020108725689068376],[126,-8,78,-0.0624736748087945],[126,-8,79,-0.08273084453730002],[126,-7,64,-0.05541353414521815],[126,-7,65,-0.04643559233886363],[126,-7,66,-0.03972863348845503],[126,-7,67,-0.04219203940814381],[126,-7,68,-0.04053060122226498],[126,-7,69,-0.011592865758546816],[126,-7,70,-0.011258937376322891],[126,-7,71,-0.05032032517658975],[126,-7,72,-0.08904427491053941],[126,-7,73,-0.09282249094189925],[126,-7,74,-0.10553393453953021],[126,-7,75,-0.09657762925040102],[126,-7,76,-0.04489243088654281],[126,-7,77,-0.02039789719681486],[126,-7,78,-0.06211693927700974],[126,-7,79,-0.08217361994431299],[126,-6,64,-0.05562151270297456],[126,-6,65,-0.04715567542556039],[126,-6,66,-0.04012429015949348],[126,-6,67,-0.04210705549667431],[126,-6,68,-0.03996067634001298],[126,-6,69,-0.011177202745774297],[126,-6,70,-0.011254775309435588],[126,-6,71,-0.050384188242431814],[126,-6,72,-0.08880657694082375],[126,-6,73,-0.09272367814375976],[126,-6,74,-0.10529190285328466],[126,-6,75,-0.09612604857423855],[126,-6,76,-0.04496905972892731],[126,-6,77,-0.020684177307212743],[126,-6,78,-0.06177984591952265],[126,-6,79,-0.08164521549593295],[126,-5,64,-0.055833898311887835],[126,-5,65,-0.04786565516375929],[126,-5,66,-0.040508446602790064],[126,-5,67,-0.042019116667461776],[126,-5,68,-0.03940839564203194],[126,-5,69,-0.010786283023608262],[126,-5,70,-0.011266642721371132],[126,-5,71,-0.050464739747150975],[126,-5,72,-0.08859556336837097],[126,-5,73,-0.09264406484254131],[126,-5,74,-0.10506658459259947],[126,-5,75,-0.09569581587216414],[126,-5,76,-0.04504962902355278],[126,-5,77,-0.02096773797973786],[126,-5,78,-0.06146228528749433],[126,-5,79,-0.08114560572249772],[126,-4,64,-0.056051200920697354],[126,-4,65,-0.048566454530256035],[126,-4,66,-0.040882013497899126],[126,-4,67,-0.04192876380227742],[126,-4,68,-0.038873469072498175],[126,-4,69,-0.010419352901341446],[126,-4,70,-0.011294308445746415],[126,-4,71,-0.050562107851322736],[126,-4,72,-0.0884111989010828],[126,-4,73,-0.09258388163583721],[126,-4,74,-0.10485852325182822],[126,-4,75,-0.09528715793304797],[126,-4,76,-0.04513436503726081],[126,-4,77,-0.021248770509707107],[126,-4,78,-0.061164155845322386],[126,-4,79,-0.08067475859311347],[126,-3,64,-0.056273909495458324],[126,-3,65,-0.04925898057478675],[126,-3,66,-0.04124588853236358],[126,-3,67,-0.04183653003961674],[126,-3,68,-0.038355613655031554],[126,-3,69,-0.010075677127998584],[126,-3,70,-0.01133753811511313],[126,-3,71,-0.05067640710089782],[126,-3,72,-0.08825344924259503],[126,-3,73,-0.09254336533703603],[126,-3,74,-0.10466825376474939],[126,-3,75,-0.09490030208327559],[126,-3,76,-0.04522350790585391],[126,-3,77,-0.021527483660323633],[126,-3,78,-0.060885364029669944],[126,-3,79,-0.08023263717631664],[126,-2,64,-0.05650249436455516],[126,-2,65,-0.049944125493201964],[126,-2,66,-0.04160095610072331],[126,-2,67,-0.04174294009950771],[126,-2,68,-0.0378545534945884],[126,-2,69,-0.009754539789985842],[126,-2,70,-0.011396096566589351],[126,-2,71,-0.05080774124882947],[126,-2,72,-0.08812228260326721],[126,-2,73,-0.09252275899143236],[126,-2,74,-0.10449630272198926],[126,-2,75,-0.09453547604130325],[126,-2,76,-0.04531731013489258],[126,-2,77,-0.021804101924864355],[126,-2,78,-0.06062582429232351],[126,-2,79,-0.0798192011822472],[126,-1,64,-0.05673740937768198],[126,-1,65,-0.05062276761512287],[126,-1,66,-0.04194808707402999],[126,-1,67,-0.04164850971259099],[126,-1,68,-0.037370019785595544],[126,-1,69,-0.00945524509979041],[126,-1,70,-0.011469750034106737],[126,-1,71,-0.050956205823342524],[126,-1,72,-0.08801767104294751],[126,-1,73,-0.09252231186809426],[126,-1,74,-0.10434318860692289],[126,-1,75,-0.09419290781539771],[126,-1,76,-0.045416035222726706],[126,-1,77,-0.02207886391371749],[126,-1,78,-0.06038545912872599],[126,-1,79,-0.0794344083926563],[126,0,64,-0.056979093889545786],[126,0,65,-0.051295772312187696],[126,0,66,-0.04228813863628571],[126,0,67,-0.04155374514771818],[126,0,68,-0.03690175082606658],[126,0,69,-0.009177118082084003],[126,0,70,-0.01155826813925017],[126,0,71,-0.051121890457825545],[126,0,72,-0.0879395916564013],[126,0,73,-0.09254227942992704],[126,0,74,-0.10420942204843474],[126,0,75,-0.09387282564148292],[126,0,76,-0.04551995639986513],[126,0,77,-0.02235202086107891],[126,0,78,-0.06016419909393693],[126,0,79,-0.07907821598488271],[126,1,64,-0.05722797457866361],[126,1,65,-0.051963992832654494],[126,1,66,-0.04262195418423136],[126,1,67,-0.04145914283242947],[126,1,68,-0.03644949203746346],[126,1,69,-0.008919505163477353],[126,1,70,-0.011661425692341177],[126,1,71,-0.05130488099675762],[126,1,72,-0.08788802761175822],[126,1,73,-0.09258292328410771],[126,1,74,-0.10409550608886019],[126,1,75,-0.09357545795806813],[126,1,76,-0.045629355478891256],[126,1,77,-0.022623835246178916],[126,1,78,-0.0599619828076375],[126,1,79,-0.0787505817556944],[126,2,64,-0.05748446711116053],[126,2,65,-0.05262827106775086],[126,2,66,-0.042950363286890184],[126,2,67,-0.041365189060747494],[126,2,68,-0.03601299599002132],[126,2,69,-0.008681774671970536],[126,2,70,-0.011779004315007557],[126,2,71,-0.05150526139144534],[126,2,72,-0.08786296905174938],[126,2,73,-0.09264451111475853],[126,2,74,-0.10400193646532803],[126,2,75,-0.09330103341521463],[126,2,76,-0.04574452180916697],[126,2,77,-0.022894579523890398],[126,2,78,-0.05977875694956513],[126,2,79,-0.07845146525054797],[126,3,64,-0.057748977659162426],[126,3,65,-0.05328943825491638],[126,3,66,-0.04327418170139267],[126,3,67,-0.04127235978295434],[126,3,68,-0.035592022433368356],[126,3,69,-0.008463317252090258],[126,3,70,-0.011910793895206249],[126,3,71,-0.051723115398841786],[126,3,72,-0.08786441386706369],[126,3,73,-0.0927273165995685],[126,3,74,-0.10392920190276872],[126,3,75,-0.09304978091464337],[126,3,76,-0.04586575133077577],[126,3,77,-0.023164534959737595],[126,3,78,-0.059614476246714114],[126,3,79,-0.0781808288036496],[126,4,64,-0.058021904282971846],[126,4,65,-0.053948315622766044],[126,4,66,-0.04359421144166685],[126,4,67,-0.04118112047218558],[126,4,68,-0.03518633833230174],[126,4,69,-0.00826354620155211],[126,4,70,-0.012056593885292082],[126,4,71,-0.05195852809613498],[126,4,72,-0.08789236835064097],[126,4,73,-0.0928316193118507],[126,4,74,-0.10387778441683844],[126,4,75,-0.09282192967816147],[126,4,76,-0.04599334572229702],[126,4,77,-0.023433990564420203],[126,4,78,-0.05946910345351561],[126,4,79,-0.07793863849395176],[126,5,64,-0.0583036381857295],[126,5,65,-0.05460571498222047],[126,5,66,-0.04391124089656903],[126,5,67,-0.04109192606277004],[126,5,68,-0.034795717907537556],[126,5,69,-0.008081897735049474],[126,5,70,-0.012216214453270305],[126,5,71,-0.05221158722313823],[126,5,72,-0.08794684774114918],[126,5,73,-0.09295770460924896],[126,5,74,-0.1038481596249301],[126,5,75,-0.09261770934159103],[126,5,76,-0.046127611637077154],[126,5,77,-0.02370324212299944],[126,5,78,-0.0593426093260142],[126,5,79,-0.07772486502189242],[126,6,64,-0.05859456484892722],[126,6,65,-0.05526243926800033],[126,6,66,-0.04422604499416702],[126,6,67,-0.041005220955500306],[126,6,68,-0.03441994268136197],[126,6,69,-0.007917831180675051],[126,6,70,-0.012389477497049379],[126,6,71,-0.05248238436399669],[126,6,72,-0.08802787666346305],[126,6,73,-0.09310586351017201],[126,6,74,-0.10384079706351451],[126,6,75,-0.0924373500715468],[126,6,76,-0.04626886002290592],[126,6,77,-0.023972591314098887],[126,6,78,-0.05923497259104278],[126,6,79,-0.07753948451153045],[126,7,64,-0.05889506505673306],[126,7,65,-0.055919283034394585],[126,7,66,-0.044539385408973675],[126,7,67,-0.040921439085206346],[126,7,68,-0.03405880152814202],[126,7,69,-0.007770829114300648],[126,7,70,-0.012576217531112783],[126,7,71,-0.052771015979151646],[126,7,72,-0.08813548947349235],[126,7,73,-0.09327639255886074],[126,7,74,-0.10385616051006688],[126,7,75,-0.09228108270249596],[126,7,76,-0.04641740552016441],[126,7,77,-0.024242344914592064],[126,7,78,-0.05914617991128315],[126,7,79,-0.07738247924247824],[126,8,64,-0.05920551581659361],[126,8,65,-0.05657703290882467],[126,8,66,-0.044852010808923926],[126,8,67,-0.04084100404611571],[126,8,68,-0.03371209072961088],[126,8,69,-0.007640397436978543],[126,8,70,-0.012776282454547773],[126,8,71,-0.05307758429785254],[126,8,72,-0.08826973051415804],[126,8,73,-0.09346959367974517],[126,8,74,-0.10389470830777998],[126,8,75,-0.0921491388915613],[126,8,76,-0.04657356593362428],[126,8,77,-0.02451281408532863],[126,8,78,-0.05907622584695601],[126,8,79,-0.0772538383157461],[126,9,64,-0.05952629118325142],[126,9,65,-0.05723646800651018],[126,9,66,-0.04516465713904717],[126,9,67,-0.040764329270752325],[126,9,68,-0.03337961403494901],[126,9,69,-0.007526065400310891],[126,9,70,-0.012989534209034126],[126,9,71,-0.053402198081012126],[126,9,72,-0.08843065428893428],[126,9,73,-0.09368577402165511],[126,9,74,-0.10395689369135712],[126,9,75,-0.09204175128869595],[126,9,76,-0.046737661773326965],[126,9,77,-0.024784313733669964],[126,9,78,-0.05902511281487636],[126,9,79,-0.0771535582574592],[126,10,64,-0.05985776299291579],[126,10,65,-0.05789836030927205],[126,10,66,-0.0454780479388824],[126,10,67,-0.0406918182583227],[126,10,68,-0.033061182725712485],[126,10,69,-0.007427385584534136],[126,10,70,-0.013215849334990827],[126,10,71,-0.053744973263655106],[126,10,72,-0.08861832555894643],[126,10,73,-0.09392524579231852],[126,10,74,-0.10404316511221942],[126,10,75,-0.09195915371995958],[126,10,76,-0.046910015860152095],[126,10,77,-0.02505716194875048],[126,10,78,-0.05899285104552747],[126,10,79,-0.07708164356418264],[126,11,64,-0.06020030151384585],[126,11,65,-0.0585634750111364],[126,11,66,-0.04579289469068325],[126,11,67,-0.04062386484865595],[126,11,68,-0.032756615685617455],[126,11,69,-0.007343933833794751],[126,11,70,-0.013455119433594892],[126,11,71,-0.05410603348558451],[126,11,72,-0.08883281936910727],[126,11,73,-0.09418832608335595],[126,11,74,-0.10415396656141576],[126,11,75,-0.09190158138166077],[126,11,76,-0.04709095299181178],[126,11,77,-0.02533167950548822],[126,11,78,-0.0589794585386993],[126,11,79,-0.0770381071933365],[126,12,64,-0.06055427601930382],[126,12,65,-0.0592325708332371],[126,12,66,-0.04610989719564352],[126,12,67,-0.040560853538039766],[126,12,68,-0.032465739475295546],[126,12,69,-0.007275309152966802],[126,12,70,-0.013707251542063651],[126,12,71,-0.05448551051845167],[126,12,72,-0.08907422100846538],[126,12,73,-0.09447533668595429],[126,12,74,-0.10428973788865614],[126,12,75,-0.0918692710433062],[126,12,76,-0.047280799665261906],[126,12,77,-0.025608189433589255],[126,12,78,-0.058984961018234645],[126,12,79,-0.07702297100203297],[126,13,64,-0.060920055288443034],[126,13,65,-0.05990640031023997],[126,13,66,-0.04642974397544964],[126,13,67,-0.040503159833479414],[126,13,68,-0.032188388412153365],[126,13,69,-0.007221133570149094],[126,13,70,-0.01397216842918404],[126,13,71,-0.054883544596891654],[126,13,72,-0.08934262590953675],[126,13,73,-0.09478660389727407],[126,13,74,-0.10445091511591899],[126,13,75,-0.09186246125739694],[126,13,76,-0.04747988385171017],[126,13,77,-0.025887016647962512],[126,13,78,-0.05900939188638688],[126,13,79,-0.0770362661374892],[126,14,64,-0.06129800804026482],[126,14,65,-0.06058571005020337],[126,14,66,-0.04675311269649688],[126,14,67,-0.04045115064203455],[126,14,68,-0.03192440465543714],[126,14,69,-0.007181051968719247],[126,14,70,-0.014249808817618862],[126,14,71,-0.05530028466083356],[126,14,72,-0.08963813949097313],[126,14,73,-0.09512245831749655],[126,14,74,-0.10463793074408323],[126,14,75,-0.09188139257415864],[126,14,76,-0.047688534820534936],[126,14,77,-0.02616848763707087],[126,14,78,-0.05905279217819736],[126,14,79,-0.07707803338192512],[126,15,64,-0.061688503305510754],[126,15,65,-0.06127124096965821],[126,15,66,-0.04708067061429379],[126,15,67,-0.040405184692166404],[126,15,68,-0.03167363829671197],[126,15,69,-0.007154731892702024],[126,15,70,-0.014540127539225322],[126,15,71,-0.05573588851571332],[126,15,72,-0.08996087694766808],[126,15,73,-0.09548323463742171],[126,15,74,-0.10485121405117731],[126,15,75,-0.09192630775947866],[126,15,76,-0.04790708300869335],[126,15,77,-0.026452930205988927],[126,15,78,-0.05911521051633589],[126,15,79,-0.07714832345475683],[126,16,64,-0.062091910740936306],[126,16,65,-0.06196372850537946],[126,16,66,-0.04741307503559387],[126,16,67,-0.04036561298414334],[126,16,68,-0.03143594745592483],[126,16,69,-0.007141863328946418],[126,16,70,-0.014843095629175122],[126,16,71,-0.05619052291678677],[126,16,72,-0.09031096299200359],[126,16,73,-0.09586927141638292],[126,16,74,-0.10509119138083117],[126,16,75,-0.09199745201436825],[126,16,76,-0.048135859932334026],[126,16,77,-0.02674067327106052],[126,16,78,-0.05919670306678211],[126,16,79,-0.07724719727468694],[126,17,64,-0.06250860089016044],[126,17,65,-0.06266390280420592],[126,17,66,-0.04775097379596398],[126,17,67,-0.04033277926680101],[126,17,68,-0.03121119838330834],[126,17,69,-0.007142158469474618],[126,17,70,-0.015158700364378018],[126,17,71,-0.056664363583397166],[126,17,72,-0.09068853154972978],[126,17,73,-0.09628091085027246],[126,17,74,-0.10535828641965475],[126,17,75,-0.09209507319443366],[126,17,76,-0.04837519813756793],[126,17,77,-0.027032046703267684],[126,17,78,-0.059297333495749234],[126,17,79,-0.07737472618418983],[126,18,64,-0.06293894539487425],[126,18,65,-0.06337248889197339],[126,18,66,-0.04809500575051493],[126,18,67,-0.04030702053806101],[126,18,68,-0.030999265567336568],[126,18,69,-0.007155351457104357],[126,18,70,-0.015486945251273584],[126,18,71,-0.05715759514853652],[126,18,72,-0.09109372541359163],[126,18,73,-0.09671849852933763],[126,18,74,-0.1056529204622604],[126,18,75,-0.09221942202787596],[126,18,76,-0.0486254311874825],[126,18,77,-0.027327381217541535],[126,18,78,-0.05941717292818244],[126,18,79,-0.07753099213867823],[126,19,64,-0.06338331715996987],[126,19,65,-0.06409020682251707],[126,19,66,-0.0484458012756607],[126,19,67,-0.040288667566827606],[126,19,68,-0.03080003184901121],[126,19,69,-0.0071811981173096305],[126,19,70,-0.01582784996779184],[126,19,71,-0.05767041104875648],[126,19,72,-0.09152669585765796],[126,19,73,-0.0971823831854486],[126,19,74,-0.1059755126627788],[126,19,75,-0.09237075233069526],[126,19,76,-0.04888689368270257],[126,19,77,-0.02762700830545471],[126,19,78,-0.05955629990821331],[126,19,79,-0.07771608786257272],[126,20,64,-0.0638420904758553],[126,20,65,-0.06481777180753749],[126,20,66,-0.04880398277988598],[126,20,67,-0.04027804543406901],[126,20,68,-0.030613388542794974],[126,20,69,-0.007219475679116397],[126,20,70,-0.01618145026395362],[126,20,71,-0.058203013359095904],[126,20,72,-0.09198760221505804],[126,20,73,-0.0976729164285262],[126,20,74,-0.10632648027180715],[126,20,75,-0.09254932121788925],[126,20,76,-0.04915992131300247],[126,20,77,-0.0279312602089172],[126,20,78,-0.05971480036194581],[126,20,79,-0.07793011697435574],[126,21,64,-0.06431564110088918],[126,21,65,-0.06555589432789272],[126,21,66,-0.049170165221512026],[126,21,67,-0.04027547409097716],[126,21,68,-0.030439235564460123],[126,21,69,-0.007269982487591693],[126,21,70,-0.016547797825216475],[126,21,71,-0.058755612577305924],[126,21,72,-0.0924766114215723],[126,21,73,-0.09819045247174353],[126,21,74,-0.10670623885773696],[126,21,75,-0.09275538930947042],[126,21,76,-0.04944485093758408],[126,21,77,-0.02824046993260701],[126,21,78,-0.059892767562913],[126,21,79,-0.07817319408254046],[126,22,64,-0.0648043463066867],[126,22,65,-0.06630528022682348],[126,22,66,-0.04954495663161389],[126,22,67,-0.04028126893231848],[126,22,68,-0.030277481566200283],[126,22,69,-0.007332537710375436],[126,22,70,-0.01692696010244151],[126,22,71,-0.059328427361410405],[126,22,72,-0.09299389752740844],[126,22,73,-0.0987353478451985],[126,22,74,-0.10711520251156853],[126,22,75,-0.09298922093029169],[126,22,76,-0.04974202069186529],[126,22,77,-0.028554971293081353],[126,22,78,-0.06009030210059578],[126,22,79,-0.07844544485442426],[126,23,64,-0.06530858488879585],[126,23,65,-0.06706663078547039],[126,23,66,-0.049928958640314075],[126,23,67,-0.04029574138322716],[126,23,68,-0.03012804407936467],[126,23,69,-0.007406981040539452],[126,23,70,-0.017319020112071763],[126,23,71,-0.05992168422433877],[126,23,72,-0.09353964117932467],[126,23,73,-0.09930796109776176],[126,23,74,-0.10755378403438985],[126,23,75,-0.09325108430276162],[126,23,76,-0.05005177011878834],[126,23,77,-0.028875099002674636],[126,23,78,-0.06030751185241552],[126,23,79,-0.07874700605940393],[126,24,64,-0.06582873714497203],[126,24,65,-0.06784064278087813],[126,24,66,-0.05032276700470781],[126,24,67,-0.04031919949777596],[126,24,68,-0.029990849665135533],[126,24,69,-0.007493172397850919],[126,24,70,-0.017724076209798142],[126,24,71,-0.06053561718905555],[126,24,72,-0.09411402907506614],[126,24,73,-0.09990865248677873],[126,24,74,-0.10802239510673514],[126,24,75,-0.09354125173157025],[126,24,76,-0.05037444032276679],[126,24,77,-0.02920118878639477],[126,24,78,-0.06054451195957719],[126,24,79,-0.07907802558849197],[126,25,64,-0.06636518482313541],[126,25,65,-0.06862800852665049],[126,25,66,-0.050726972136818704],[126,25,67,-0.04035194856784811],[126,25,68,-0.02986583407353788],[126,25,69,-0.007590991630425922],[126,25,70,-0.018142241840804596],[126,25,71,-0.061170467407435924],[126,25,72,-0.09471725339203906],[126,25,73,-0.1005377836554226],[126,25,74,-0.10852144643919442],[126,25,75,-0.09385999977970289],[126,25,76,-0.050710374144600064],[126,25,77,-0.029533577530226843],[126,25,78,-0.06080142480720875],[126,25,79,-0.07943866245164465],[126,26,64,-0.06691831104089073],[126,26,65,-0.06942941589630401],[126,26,66,-0.05114215963003892],[126,26,67,-0.040394291740943264],[126,26,68,-0.029752942411172215],[126,26,69,-0.007700338218610741],[126,26,70,-0.018573645269438138],[126,26,71,-0.061826482745902335],[126,26,72,-0.09534951119202163],[126,26,73,-0.10119571729751071],[126,26,74,-0.10905134790371186],[126,26,75,-0.09420760943509314],[126,26,76,-0.051059916355827906],[126,26,77,-0.0298726034594023],[126,26,78,-0.06107838000927073],[126,26,79,-0.0798290867544416],[126,27,64,-0.06748850017828412],[126,27,65,-0.07024554832927324],[126,27,66,-0.051568910782551255],[126,27,67,-0.04044653064562108],[126,27,68,-0.029652129318025643],[126,27,69,-0.00782113098275339],[126,27,70,-0.019018429290902715],[126,27,71,-0.06250391734061733],[126,27,72,-0.09601100380361781],[126,27,73,-0.10188281680964903],[126,27,74,-0.10961250864507939],[126,27,75,-0.09458436626731884],[126,27,76,-0.051423413871097355],[126,27,77,-0.030218606345277323],[126,27,78,-0.061375514398681705],[126,27,79,-0.0802494796555469],[126,28,64,-0.06807613774535257],[126,28,65,-0.07107708481948775],[126,28,66,-0.052007803116333705],[126,28,67,-0.0405089660234309],[126,28,68,-0.02956335915376386],[126,28,69,-0.007953307796446247],[126,28,70,-0.019476750927416672],[126,28,71,-0.06320303112489747],[126,28,72,-0.09670193618413725],[126,28,73,-0.10259944593066214],[126,28,74,-0.11020533717225547],[126,28,75,-0.09499056057386719],[126,28,76,-0.05180121597729514],[126,28,77,-0.03057192773964902],[126,28,78,-0.06169297202318322],[126,28,79,-0.08070003330636992],[126,29,64,-0.0686816102258881],[126,29,65,-0.07192469988639771],[126,29,66,-0.052459410890416565],[126,29,67,-0.04058189836627091],[126,29,68,-0.02948660619391294],[126,29,69,-0.008096825306705793],[126,29,70,-0.019948781111097488],[126,29,71,-0.06392408933137167],[126,29,72,-0.09742251626255853],[126,29,73,-0.10334596836836192],[126,29,74,-0.110830241429241],[126,29,75,-0.09542648751558032],[126,29,76,-0.05219367457833226],[126,29,77,-0.03093291123546537],[126,29,78,-0.062030904147500274],[126,29,79,-0.08118095077430335],[126,30,64,-0.06930530489866672],[126,30,65,-0.07278906352824843],[126,30,66,-0.05292430560707832],[126,30,67,-0.04066562855815344],[126,30,68,-0.029421854836284626],[126,30,69,-0.008251658662396062],[126,30,70,-0.020434704355625652],[126,30,71,-0.064667361971246],[126,30,72,-0.09817295426517841],[126,30,73,-0.10412274741375332],[126,30,74,-0.11148762884529331],[126,30,75,-0.09589244724092368],[126,30,76,-0.05260114445453734],[126,30,77,-0.031301902752950084],[126,30,78,-0.062389469262324915],[126,30,79,-0.08169244595081575],[126,31,64,-0.06994760963732748],[126,31,65,-0.07367084115740719],[126,31,66,-0.053403056509761584],[126,31,67,-0.04076045852047491],[126,31,68,-0.02936909981804772],[126,31,69,-0.008417801252146837],[126,31,70,-0.02093471841863339],[126,31,71,-0.06543312329297027],[126,31,72,-0.09895346202558734],[126,31,73,-0.10493014554290973],[126,31,74,-0.11217790636439065],[126,31,75,-0.09638874499883684],[126,31,76,-0.05302398353578365],[126,31,77,-0.031679250850334045],[126,31,78,-0.06276883310074129],[126,31,79,-0.0822347434456969],[126,32,64,-0.07060891268999886],[126,32,65,-0.07457069351755233],[126,32,66,-0.0538962310715515],[126,32,67,-0.04086669185994862],[126,32,68,-0.02932834644383381],[126,32,69,-0.00859526445292291],[126,32,70,-0.021449033956636058],[126,32,71,-0.06622165122253915],[126,32,72,-0.09976425228065208],[126,32,73,-0.10576852400687344],[126,32,74,-0.11290148045396685],[126,32,75,-0.09691569124000061],[126,32,76,-0.05346255318757576],[126,32,77,-0.032065307058478563],[126,32,78,-0.0631691686627267],[126,32,79,-0.08280807846871677],[126,33,64,-0.07128960243963925],[126,33,65,-0.07548927658246811],[126,33,66,-0.05440439547305184],[126,33,67,-0.04098463451836606],[126,33,68,-0.029299610825209342],[126,33,69,-0.008784077390263661],[126,33,70,-0.02197787417415473],[126,33,71,-0.06703322678754452],[126,33,72,-0.1006055379541675],[126,33,73,-0.10663824240999348],[126,33,74,-0.11365875709297318],[126,33,75,-0.09747360170637183],[126,33,76,-0.05391721850937955],[126,33,77,-0.03246042623873184],[126,33,78,-0.06359065624835342],[126,33,79,-0.0834126966998886],[126,34,64,-0.07199006714604411],[126,34,65,-0.07642724143625132],[126,34,66,-0.05492811506858578],[126,34,67,-0.04111459542343814],[126,34,68,-0.02928292013187646],[126,34,69,-0.008984286711178645],[126,34,70,-0.022521474468623726],[126,34,71,-0.06786813352710877],[126,34,72,-0.10147753142994533],[126,34,73,-0.10753965827728101],[126,34,74,-0.11445014173946445],[126,34,75,-0.09806279750894692],[126,34,76,-0.054388348644614865],[126,34,77,-0.03286496696349615],[126,34,78,-0.06403348350038798],[126,34,79,-0.08404885414955453],[126,35,64,-0.07271069467041906],[126,35,65,-0.07738523413475164],[126,35,66,-0.055467954839687215],[126,35,67,-0.04125688713999934],[126,35,68,-0.029278312854940793],[126,35,69,-0.009195956370608062],[126,35,70,-0.023080082072587178],[126,35,71,-0.06872665688981076],[126,35,72,-0.10238044381618393],[126,35,73,-0.1084731266114994],[126,35,74,-0.11527603927800603],[126,35,75,-0.09868360519377288],[126,35,76,-0.05487631710181203],[126,35,77,-0.03327929191905358],[126,35,78,-0.06449784545700325],[126,35,79,-0.08471681700948687],[126,36,64,-0.07345187218333221],[126,36,65,-0.07836389554803987],[126,36,66,-0.05602447983482823],[126,36,67,-0.04141182652083204],[126,36,68,-0.029285839082517924],[126,36,69,-0.009419167432241457],[126,36,70,-0.023653955694563498],[126,36,71,-0.06960908362165841],[126,36,72,-0.10331448420298896],[126,36,73,-0.10943899944077261],[126,36,74,-0.11613685394722634],[126,36,75,-0.09933635679623157],[126,36,76,-0.0553815020864637],[126,36,77,-0.033703768330235466],[126,36,78,-0.06498394461530616],[126,36,79,-0.08541686149614817],[126,37,64,-0.0742139858568884],[126,37,65,-0.07936386118379708],[126,37,66,-0.056598255594413435],[126,37,67,-0.041579735356425285],[126,37,68,-0.02930556078796404],[126,37,69,-0.009654017884473606],[126,37,70,-0.024243365159947558],[126,37,71,-0.07051570114623786],[126,37,72,-0.10427985891507723],[126,37,73,-0.11043762535770452],[126,37,74,-0.11703298924799861],[126,37,75,-0.1000213898837268],[126,37,76,-0.055904286843217244],[126,37,77,-0.03413876840661779],[126,37,78,-0.06549199100644224],[126,37,79,-0.08614927368728244],[126,38,64,-0.07499742054193738],[126,38,65,-0.08038576099153778],[126,38,66,-0.05718984856007824],[126,38,67,-0.04176094102297298],[126,38,68,-0.029337552130976885],[126,38,69,-0.009900622472211086],[126,38,70,-0.024848591053258647],[126,38,71,-0.07144679693918023],[126,38,72,-0.10527677076178324],[126,38,73,-0.11146934905111335],[126,38,74,-0.11796484783278972],[126,38,75,-0.10073904758693134],[126,38,76,-0.056445060008101476],[126,38,77,-0.03458466980997805],[126,38,78,-0.06602220228305046],[126,38,79,-0.08691434935299598],[126,39,64,-0.07580255943109701],[126,39,65,-0.08143021914760558],[126,39,66,-0.05779982646731083],[126,39,67,-0.04195577712786843],[126,39,68,-0.029381899771734245],[126,39,69,-0.010159112545152312],[126,39,70,-0.025469924362967127],[126,39,71,-0.07240265789909854],[126,39,72,-0.10630541828657745],[126,39,73,-0.11253451083160187],[126,39,74,-0.1189328313767804],[126,39,75,-0.101489678619764],[126,39,76,-0.05700421597049444],[126,39,77,-0.03504185614275087],[126,39,78,-0.06657480381982044],[126,39,79,-0.08771239378244561],[126,40,64,-0.07662978370842198],[126,40,65,-0.08249785382098546],[126,40,66,-0.05842875872048067],[126,40,67,-0.0421645841519736],[126,40,68,-0.029438703198238443],[126,40,69,-0.01042963592316347],[126,40,70,-0.026107666130156033],[126,40,71,-0.07338356971725493],[126,40,72,-0.10736599501848403],[126,40,73,-0.1136334461523799],[126,40,74,-0.11993734043147826],[126,40,75,-0.10227363728834458],[126,40,76,-0.05758215524462339],[126,40,77,-0.03551071745729636],[126,40,78,-0.06715002882794978],[126,40,79,-0.08854372160728409],[126,41,64,-0.0774794721865316],[126,41,65,-0.08358927691999789],[126,41,66,-0.05907721674931891],[126,41,67,-0.04238771008787582],[126,41,68,-0.029508075066949153],[126,41,69,-0.010712356779290721],[126,41,70,-0.026762127102213266],[126,41,71,-0.07438981624824123],[126,41,72,-0.10845868872787445],[126,41,73,-0.11476648512685304],[126,41,74,-0.12097877426159133],[126,41,75,-0.10309128348917158],[126,41,76,-0.058179284850383366],[126,41,77,-0.03599165078578674],[126,41,78,-0.06774811848427716],[126,41,79,-0.08940865662298461],[126,42,64,-0.07835200093206665],[126,42,65,-0.08470509382005303],[126,42,66,-0.0597457743459367],[126,42,67,-0.04262551107332799],[126,42,68,-0.02959014155675952],[126,42,69,-0.011007455540941014],[126,42,70,-0.02743362739278041],[126,42,71,-0.07542167888407784],[126,42,72,-0.10958368068930124],[126,42,73,-0.11593395204468478],[126,42,74,-0.12205753066603355],[126,42,75,-0.10394298269682321],[126,42,76,-0.058796018703313135],[126,42,77,-0.03648506069055425],[126,42,78,-0.0683693220758862],[126,42,79,-0.0903075316091774],[126,43,64,-0.07924774288033767],[126,43,65,-0.08584590307267122],[126,43,66,-0.060435007981416176],[126,43,67,-0.042878352018971506],[126,43,68,-0.029685042736262806],[126,43,69,-0.011315128809680969],[126,43,70,-0.028122496149136117],[126,43,71,-0.07647943593417202],[126,43,72,-0.11074114495413015],[126,43,73,-0.11713616488813174],[126,43,74,-0.12317400578396182],[126,43,75,-0.10482910594146097],[126,43,76,-0.05943277801353332],[126,43,77,-0.036991359834702975],[126,43,78,-0.06901389716092537],[126,43,79,-0.0912406881500922],[126,44,64,-0.08016706744009533],[126,44,65,-0.08701229609608682],[126,44,66,-0.06114549710102958],[126,44,67,-0.04314660722940765],[126,44,68,-0.02979293294422018],[126,44,69,-0.011635589300099928],[126,44,70,-0.028829071228232597],[126,44,71,-0.07756336201370485],[126,44,72,-0.11193124763590984],[126,44,73,-0.11837343485062764],[126,44,74,-0.12432859388683823],[126,44,75,-0.10575002977645871],[126,44,76,-0.0600899916934859],[126,44,77,-0.03751096957281024],[126,44,78,-0.06968210974640787],[126,44,79,-0.09220847645622124],[126,45,64,-0.08111034008940884],[126,45,65,-0.08820485684784786],[126,45,66,-0.06187782439713653],[126,45,67,-0.043430661016608224],[126,45,68,-0.029913981183061548],[126,45,69,-0.011969065798150264],[126,45,70,-0.029553698882621778],[126,45,71,-0.07867372744312708],[126,45,72,-0.11315414621158765],[126,45,73,-0.11964606585974798],[126,45,74,-0.1255216871575832],[126,45,75,-0.10670613623649894],[126,45,76,-0.06076809677431122],[126,45,77,-0.03804432056152098],[126,45,78,-0.07037423448373015],[126,45,79,-0.093211255188309],[126,46,64,-0.08207792196363786],[126,46,65,-0.08942416147985496],[126,46,66,-0.0626325760587377],[126,46,67,-0.04373090830453074],[126,46,68,-0.030048371525129375],[126,46,69,-0.012315803139301917],[126,46,70,-0.03029673345747834],[126,46,71,-0.07981079766148987],[126,46,72,-0.1144099888417607],[126,46,73,-0.1209543541067582],[126,46,74,-0.12675367545788335],[126,46,75,-0.1076978127864282],[126,46,76,-0.06146753883063272],[126,46,77,-0.03859185338976795],[126,46,78,-0.07109055488257861],[126,46,79,-0.09424939128472225],[126,47,64,-0.0830701598932019],[126,47,65,-0.0906707684058856],[126,47,66,-0.06341033239895905],[126,47,67,-0.04404774559878682],[126,47,68,-0.030196293879091163],[126,47,69,-0.012676052527308574],[126,47,70,-0.031058527393080706],[126,47,71,-0.08097482292216322],[126,47,72,-0.11569890395155114],[126,47,73,-0.12229857779578776],[126,47,74,-0.12802493626786074],[126,47,75,-0.10872544241658301],[126,47,76,-0.06218876254117079],[126,47,77,-0.039154009328169315],[126,47,78,-0.07183135361584139],[126,47,79,-0.09532324983727669],[126,48,64,-0.08408727579113011],[126,48,65,-0.09194510736618292],[126,48,66,-0.06421155712768978],[126,48,67,-0.04438146027193488],[126,48,68,-0.030357832750794293],[126,48,69,-0.013049959510685813],[126,48,70,-0.03183931853212558],[126,48,71,-0.08216592495249399],[126,48,72,-0.11702088643388481],[126,48,73,-0.12367888315224647],[126,48,74,-0.12933572051445696],[126,48,75,-0.10978928927727764],[126,48,76,-0.06293209745369249],[126,48,77,-0.03973111594160476],[126,48,78,-0.07259679733522492],[126,48,79,-0.09643307810959341],[126,49,64,-0.08512939468307901],[126,49,65,-0.09324750738438325],[126,49,66,-0.06503662576609844],[126,49,67,-0.04473225926442279],[126,49,68,-0.030532995703610517],[126,49,69,-0.013437591927564314],[126,49,70,-0.03263925764913794],[126,49,71,-0.08338412410284278],[126,49,72,-0.1183758246085716],[126,49,73,-0.12509531143129168],[126,49,74,-0.1306861796375823],[126,49,75,-0.11088952581148108],[126,49,76,-0.06369778552496488],[126,49,77,-0.04032341474922991],[126,49,78,-0.0733869637979909],[126,49,79,-0.09757903211563945],[126,50,64,-0.08619661720437652],[126,50,65,-0.09457826941785384],[126,50,66,-0.06588589898033359],[126,50,67,-0.04510034295739529],[126,50,68,-0.030721787255695607],[126,50,69,-0.013839013538454346],[126,50,70,-0.033458481904581054],[126,50,71,-0.0846294126720294],[126,50,72,-0.11976357360791709],[126,50,73,-0.1265478725794651],[126,50,74,-0.1320764395293845],[126,50,75,-0.11202630700389936],[126,50,76,-0.06448605603714756],[126,50,77,-0.04093113651702041],[126,50,78,-0.07420191687445125],[126,50,79,-0.09876125131187131],[126,51,64,-0.0872890198417655],[126,51,65,-0.09593766658963485],[126,51,66,-0.06675972333072423],[126,51,67,-0.045485906322640074],[126,51,68,-0.030924209929034253],[126,51,69,-0.014254284670709908],[126,51,70,-0.034297115155777616],[126,51,71,-0.08590175494951299],[126,51,72,-0.12118395533526441],[126,51,73,-0.12803654529939143],[126,51,74,-0.13350660069871187],[126,51,75,-0.11319977070036308],[126,51,76,-0.06529712644579683],[126,51,77,-0.04155450233896182],[126,51,78,-0.07504170719352087],[126,51,79,-0.09997985876013839],[126,52,64,-0.08840665372087943],[126,52,65,-0.09732594295001791],[126,52,66,-0.06765843052955332],[126,52,67,-0.04588913858937112],[126,52,68,-0.031140263838108976],[126,52,69,-0.014683461410909754],[126,52,70,-0.03515526680953432],[126,52,71,-0.08720108580876913],[126,52,72,-0.12263675697939211],[126,52,73,-0.12956127564740275],[126,52,74,-0.1349767369373482],[126,52,75,-0.11441003642168511],[126,52,76,-0.0661312017319457],[126,52,77,-0.0421937232286063],[126,52,78,-0.07590637129890254],[126,52,79,-0.10123495978483496],[126,53,64,-0.08954954335079236],[126,53,65,-0.09874331218224078],[126,53,66,-0.06858233662300407],[126,53,67,-0.04631022284623155],[126,53,68,-0.03136994624095998],[126,53,69,-0.015126594772572693],[126,53,70,-0.036033030648712605],[126,53,71,-0.08852730928965671],[126,53,72,-0.12412172952673878],[126,53,73,-0.131121975608439],[126,53,74,-0.13648689393421048],[126,53,75,-0.11565720412060111],[126,53,76,-0.06698847370963763],[126,53,77,-0.04284899967574318],[126,53,78,-0.07679593077524194],[126,53,79,-0.10252664058786205],[126,54,64,-0.09071768532977188],[126,54,65,-0.10018995625609897],[126,54,66,-0.06953174109856575],[126,54,67,-0.046749335578986334],[126,54,68,-0.031613251053995525],[126,54,69,-0.01558372984179448],[126,54,70,-0.036930483636706986],[126,54,71,-0.08988029717580938],[126,54,72,-0.1256385862781474],[126,54,73,-0.13271852165374382],[126,54,74,-0.13803708784126256],[126,54,75,-0.1169413528843763],[126,54,76,-0.06786912029066278],[126,54,77,-0.04352052116970417],[126,54,78,-0.07771039134679497],[126,54,79,-0.1038549668246307],[126,55,64,-0.09191104701653169],[126,55,65,-0.10166602403347094],[126,55,66,-0.07050692591925087],[126,55,67,-0.047206646144342196],[126,55,68,-0.031870168331885294],[126,55,69,-0.016054904903464756],[126,55,70,-0.03784768470393959],[126,55,71,-0.09125988757329372],[126,55,72,-0.12718700137704902],[126,55,73,-0.1343507532870876],[126,55,74,-0.13962730379505497],[126,55,75,-0.11826253958577376],[126,55,76,-0.068773304708298],[126,55,77,-0.04420846569084433],[126,55,78,-0.07864974195119667],[126,55,79,-0.10521998214444393],[126,56,64,-0.09312956517150416],[126,56,65,-0.10317162983000239],[126,56,66,-0.07150815448610738],[126,56,67,-0.04768231618037561],[126,56,68,-0.03214068371392382],[126,56,69,-0.01654015055087311],[126,56,70,-0.038784673520699725],[126,56,71,-0.09266588349702914],[126,56,72,-0.12876660835624815],[126,56,73,-0.13601847158547975],[126,56,74,-0.14125749439798824],[126,56,75,-0.11962079748524931],[126,56,76,-0.06970117470198207],[126,56,77,-0.044912999171850876],[126,56,78,-0.07961395379104805],[126,56,79,-0.10662170669878247],[126,57,64,-0.09437314457288276],[126,57,65,-0.10470685193746022],[126,57,66,-0.07253567053064743],[126,57,67,-0.04817649895408236],[126,57,68,-0.03242477783828549],[126,57,69,-0.017039488781646347],[126,57,70,-0.03974146926086491],[126,57,71,-0.09409805147171801],[126,57,72,-0.13037699871073966],[126,57,73,-0.13772143774058968],[126,57,74,-0.14292757816361193],[126,57,75,-0.12101613478741202],[126,57,76,-0.0706528616649674],[126,57,77,-0.04563427493060306],[126,57,78,-0.08060297936613389],[126,57,79,-0.10806013562118578],[126,58,64,-0.0956416566123553],[126,58,65,-0.10627173111146042],[126,58,66,-0.07358969693890172],[126,58,67,-0.04868933864655538],[126,58,68,-0.032722425725588714],[126,58,69,-0.01755293208305168],[126,58,70,-0.040718069361199156],[126,58,71,-0.09555612015420897],[126,58,72,-0.13201772050414107],[126,58,73,-0.139459371607253],[126,58,74,-0.14463743793040043],[126,58,75,-0.12244853315489868],[126,58,76,-0.07162847975704938],[126,58,77,-0.04637243307634079],[126,58,78,-0.08161675148913101],[126,58,79,-0.10953523748253018],[126,59,64,-0.0969349378757251],[126,59,65,-0.10786626902958207],[126,59,66,-0.07467043450900691],[126,59,67,-0.04922096957639834],[126,59,68,-0.03303359613328237],[126,59,69,-0.018080482509886326],[126,59,70,-0.04171444828117535],[126,59,71,-0.09703977898448836],[126,59,72,-0.13368827701659508],[126,59,73,-0.1412319502656978],[126,59,74,-0.14638691924868819],[126,59,75,-0.12391794618303298],[126,59,76,-0.07262812498463861],[126,59,77,-0.04712759989102685],[126,59,78,-0.08265518228781722],[126,59,79,-0.1110469527257258],[126,60,64,-0.09825278871385172],[126,60,65,-0.10949042672514549],[126,60,66,-0.07577806064440383],[126,60,67,-0.04977151536204834],[126,60,68,-0.03335825088242271],[126,60,69,-0.018622130758323183],[126,60,70,-0.04273055626848322],[126,60,71,-0.09854867687271789],[126,60,72,-0.13538812544219953],[126,60,73,-0.14303880660435095],[126,60,74,-0.1481758287456547],[126,60,75,-0.12542429783882816],[126,60,76,-0.07365187425056088],[126,60,77,-0.04789988718787057],[126,60,78,-0.08371816219688716],[126,60,79,-0.11259519208402413],[126,61,64,-0.0995949718095411],[126,61,65,-0.11114412300215493],[126,61,66,-0.07691272798486459],[126,61,67,-0.0503410880237305],[126,61,68,-0.03369634415844526],[126,61,69,-0.019177855239195917],[126,61,70,-0.043766318135551326],[126,61,71,-0.10008242092988895],[126,61,72,-0.13711667564415345],[126,61,73,-0.14487952793021439],[126,61,74,-0.15000393247339244],[126,61,75,-0.1269674808680292],[126,61,76,-0.07469978437605658],[126,61,77,-0.048689391649031646],[126,61,78,-0.08480555894254702],[126,61,79,-0.1141798349872595],[126,62,64,-0.10096121074629175],[126,62,65,-0.11282723283721804],[126,62,66,-0.07807456297780553],[126,62,67,-0.05092978702590425],[126,62,68,-0.034047821787647696],[126,62,69,-0.01974762115440346],[126,62,70,-0.04482163205266331],[126,62,71,-0.10164057524990597],[126,62,72,-0.1388732889760225],[126,62,73,-0.14675365461404521],[126,62,74,-0.15187095424534486],[126,62,75,-0.12854735517413254],[126,62,76,-0.0757718910976209],[126,62,77,-0.04949619414465168],[126,62,78,-0.08591721652319606],[126,62,79,-0.11580072796056186],[126,63,64,-0.10235118858505303],[126,63,65,-0.11453958577453442],[126,63,66,-0.07926366439255982],[126,63,67,-0.05153769826118345],[126,63,68,-0.034412620491194264],[126,63,69,-0.02033137958027432],[126,63,70,-0.04589636836345713],[126,63,71,-0.1032226597510893],[126,63,72,-0.1406572771776798],[126,63,73,-0.14866067877774744],[126,63,74,-0.15377657396660416],[126,63,75,-0.13016374617353207],[126,63,76,-0.07686820804147262],[126,63,77,-0.05032035903546569],[126,63,78,-0.08705295418962325],[126,63,79,-0.11745768302026695],[126,64,64,-0.10376454645533191],[126,64,65,-0.11628096432025135],[126,64,66,-0.08048010178045581],[126,64,67,-0.052164892976797585],[126,64,68,-0.03479066711850126],[126,64,69,-0.020929066561846413],[126,64,70,-0.04699036842874886],[126,64,71,-0.10482814908519193],[126,64,72,-0.14246790135453213],[126,64,73,-0.15060004303147417],[126,64,74,-0.15572042596369437],[126,64,75,-0.13181644313107818],[126,64,76,-0.07798872567851961],[126,64,77,-0.05116193346128517],[126,64,78,-0.08821256542818173],[126,64,79,-0.11915047607185658],[126,65,64,-0.10520088216729544],[126,65,65,-0.11805110234284655],[126,65,66,-0.08172391388387519],[126,65,67,-0.05281142664488374],[126,65,68,-0.035181877862019706],[126,65,69,-0.02154060222221427],[126,65,70,-0.04810344350485166],[126,65,71,-0.10645647162221154],[126,65,72,-0.1443043710488118],[126,65,73,-0.15257113926816668],[126,65,74,-0.15770209731976265],[126,65,75,-0.13350519748064993],[126,65,76,-0.07913341026292459],[126,65,77,-0.05202094661783071],[126,65,78,-0.0893958169506004],[126,65,79,-0.1208788453150324],[126,66,64,-0.10665974885164306],[126,66,65,-0.1198496834863234],[126,66,66,-0.08299510699759012],[126,66,67,-0.05347733777797536],[126,66,68,-0.035586157455501664],[126,66,69,-0.02216588989123986],[126,66,70,-0.049235373662740944],[126,66,71,-0.10810700851937603],[126,66,72,-0.14616584341172673],[126,66,73,-0.15457330752328333],[126,66,74,-0.15972112622117074],[126,66,75,-0.13522972113541976],[126,66,76,-0.080302202757392],[126,66,77,-0.05289740902436692],[126,66,78,-0.09060244769406155],[126,66,79,-0.12264248966106717],[126,67,64,-0.10814065363435699],[126,67,65,-0.12167633960342422],[126,67,66,-0.08429365328611528],[126,67,67,-0.05416264669135609],[126,67,68,-0.03600339835798976],[126,67,69,-0.022804815258048543],[126,67,70,-0.050385906754537836],[126,67,71,-0.10977909288273031],[126,67,72,-0.14805142248531347],[126,67,73,-0.15660583490765154],[126,67,74,-0.16177700032180942],[126,67,75,-0.13698968479287096],[126,67,76,-0.08149501774861762],[126,67,77,-0.05379131178486625],[126,67,78,-0.09183216783543512],[126,67,79,-0.12444106716790022],[126,68,64,-0.10964305635351682],[126,68,65,-0.12353064921613316],[126,68,66,-0.08561948906090763],[126,68,67,-0.05486735421402],[126,68,68,-0.03643347992584346],[126,68,69,-0.0234572455518763],[126,68,70,-0.051554757433959215],[126,68,71,-0.1114720090298283],[126,68,72,-0.14996015860280917],[126,68,73,-0.15866795462136396],[126,68,74,-0.1638691551314964],[126,68,75,-0.13878471623967373],[126,68,76,-0.082711742356309],[126,68,77,-0.054702625845340545],[126,68,78,-0.09308465782347246],[126,68,79,-0.12627419349843336],[126,69,64,-0.11116636832562658],[126,69,65,-0.12541213601107193],[126,69,66,-0.0869725130216465],[126,69,67,-0.05559144035028078],[126,69,68,-0.03687626757528131],[126,69,69,-0.02412302875596432],[126,69,70,-0.05274160623749449],[126,69,71,-0.11318499186203229],[126,69,72,-0.15189104791632962],[126,69,73,-0.16075884505672533],[126,69,74,-0.16599697243507594],[126,69,75,-0.14061439866184447],[126,69,76,-0.08395223513944859],[126,69,77,-0.05563130125020059],[126,69,78,-0.09435956743295838],[126,69,79,-0.12814144040773803],[126,70,64,-0.11270995116906385],[126,70,65,-0.1273202673775819],[126,70,66,-0.08835258446609875],[126,70,67,-0.05633486289429121],[126,70,68,-0.03733161193804774],[126,70,69,-0.024801992859321068],[126,70,70,-0.05394609873319041],[126,70,71,-0.1149172263549232],[126,70,72,-0.1538430320605727],[126,70,73,-0.16287762899828545],[126,70,74,-0.16815977874899626],[126,70,75,-0.14247826896581092],[126,70,76,-0.08521632500359654],[126,70,77,-0.05657726640057177],[126,70,78,-0.09565651484487532],[126,70,79,-0.1300423342650029],[126,71,64,-0.11427311569236283],[126,71,65,-0.12925445299643104],[126,71,66,-0.08975952147333784],[126,71,67,-0.057097555999945114],[126,71,68,-0.03779934801290837],[126,71,69,-0.025493945151227836],[126,71,70,-0.05516784474395215],[126,71,71,-0.11666784717520771],[126,71,72,-0.15581499796107334],[126,71,73,-0.16502337292790506],[126,71,74,-0.1703568438222297],[126,71,75,-0.14437581611615977],[126,71,76,-0.08650381011312876],[126,71,77,-0.05754042731754718],[126,71,78,-0.09697508575665725],[126,71,79,-0.13197635461612975],[126,72,64,-0.11585512085520935],[126,72,65,-0.13121404348729615],[126,72,66,-0.09119309906543706],[126,72,67,-0.05787942870893863],[126,72,68,-0.03827929431585143],[126,72,69,-0.026198671563482916],[126,72,70,-0.056406417652358896],[126,72,71,-0.11843593843244492],[126,72,72,-0.15780577779542257],[126,72,73,-0.1671950864428121],[126,72,74,-0.1725873791885982],[126,72,75,-0.14630647949610218],[126,72,76,-0.08781445681249504],[126,72,77,-0.05852066691349117],[126,72,78,-0.09831483252671454],[126,72,79,-0.13394293279305025],[126,73,64,-0.11745517281012578],[126,73,65,-0.1331983291233194],[126,73,66,-0.09265304735307438],[126,73,67,-0.058680363440044875],[126,73,68,-0.03877125203201019],[126,73,69,-0.026915936065444818],[126,73,70,-0.05766135379400947],[126,73,71,-0.12022053357377074],[126,73,72,-0.15981414911563124],[126,73,73,-0.16939172179451287],[126,73,74,-0.17485053677768253],[126,73,75,-0.14826964729688397],[126,73,76,-0.08914799856071814],[126,73,77,-0.05951784427459529],[126,73,78,-0.0996752733574668],[126,73,79,-0.13594145057593449],[126,74,64,-0.11907242403283837],[126,74,65,-0.13520653862109105],[126,74,66,-0.09413904967075457],[126,74,67,-0.05950021444290764],[126,74,68,-0.039275004172416764],[126,74,69,-0.02764548011692855],[126,74,70,-0.058932151946347475],[126,74,71,-0.12202061542953206],[126,74,72,-0.16183883513948344],[126,74,73,-0.17161217355622832],[126,74,74,-0.17714540759153302],[126,74,75,-0.15026465494249538],[126,74,76,-0.0905041348834304],[126,74,77,-0.06053179395791299],[126,74,78,-0.10105589152109692],[126,74,79,-0.1379712389144877],[126,75,64,-0.12070597254941913],[126,75,65,-0.13723783801457642],[126,75,66,-0.09565074070773784],[126,75,67,-0.06033880622001311],[126,75,68,-0.039790314738873345],[126,75,69,-0.0283870221840714],[126,75,70,-0.06021827291991138],[126,75,71,-0.1238351164175669],[126,75,72,-0.16387850521847985],[126,75,73,-0.1738552784264517],[126,75,74,-0.17947102045457766],[126,75,75,-0.15229078355629266],[126,75,76,-0.09188253034693308],[126,75,77,-0.061562325306229446],[126,75,78,-0.10245613463233573],[126,75,79,-0.14003157671466998],[126,76,64,-0.1223548612682709],[126,76,65,-0.13929132962151633],[126,76,66,-0.09718770464106373],[126,76,67,-0.06119593192081101],[126,76,68,-0.040316927900364105],[126,76,69,-0.029140257323273095],[126,76,70,-0.06151913925885469],[126,76,71,-0.1256629189135308],[126,76,72,-0.16593177548954313],[126,76,73,-0.1761198151759619],[126,76,74,-0.18182634084413224],[126,76,75,-0.15434725847626876],[126,76,76,-0.09328281355886135],[126,76,77,-0.06260922178418131],[126,76,78,-0.10387541397258125],[126,76,79,-0.14212168969719421],[126,77,64,-0.12401807742497434],[126,77,65,-0.14136605111085204],[126,77,66,-0.09874947327736519],[126,77,67,-0.06207135171225506],[126,77,68,-0.040854567184515536],[126,77,69,-0.029904856838236973],[126,77,70,-0.06283413505741174],[126,77,71,-0.12750285579429785],[126,77,72,-0.16799720971722423],[126,77,73,-0.1784045047453872],[126,77,74,-0.18421026980897792],[126,77,75,-0.15643324782586174],[126,77,76,-0.09470457620011626],[126,77,77,-0.06367224033905886],[126,77,78,-0.10531310386962753],[126,77,79,-0.1442407493341687],[126,78,64,-0.12569455214796516],[126,78,65,-0.14346097467972158],[126,78,66,-0.10033552421051356],[126,78,67,-0.06296479113040906],[126,78,68,-0.04140293468778373],[126,78,69,-0.030680468015115227],[126,78,70,-0.06416260589884762],[126,78,71,-0.12935371116107922],[126,78,72,-0.17007332033266545],[126,78,73,-0.18070801050013124],[126,78,74,-0.186621642983498],[126,78,75,-0.158547861147346],[126,78,76,-0.09614737209286046],[126,78,77,-0.0647511107898165],[126,78,78,-0.10676854113730308],[126,78,79,-0.14638787187028734],[126,79,64,-0.12738316015290108],[126,79,65,-0.14557500634852807],[126,79,66,-0.10194527900245548],[126,79,67,-0.06387593941811996],[126,79,68,-0.04196171030816674],[126,79,69,-0.03146671394066527],[126,79,70,-0.0655038589232112],[126,79,71,-0.1312142212484383],[126,79,72,-0.1721585696750425],[126,79,73,-0.18302893864915018],[126,79,74,-0.189059229704882],[126,79,75,-0.16069014810498453],[126,79,76,-0.09761071630946272],[126,79,77,-0.06584553524785929],[126,79,78,-0.10824102457929523],[126,79,79,-0.148562117434965],[126,80,64,-0.12908271957338832],[126,80,65,-0.14770698538245838],[126,80,66,-0.1035781013948852],[126,80,67,-0.06480444785408182],[126,80,68,-0.0425305510043134],[126,80,69,-0.032263193408148434],[126,80,70,-0.06685716302990184],[126,80,71,-0.1330830755248219],[126,80,72,-0.17425137144056993],[126,80,73,-0.18536583883366578],[126,80,74,-0.19152173224085564],[126,80,75,-0.16285909726520312],[126,80,76,-0.09909408432731685],[126,80,77,-0.0669551875731621],[126,80,78,-0.1097298145613551],[126,80,79,-0.15076248925174532],[126,81,64,-0.1307919919355647],[126,81,65,-0.14985568384771597],[126,81,66,-0.1052332955597318],[126,81,67,-0.06574992807902007],[126,81,68,-0.04310909008504684],[126,81,69,-0.033069480915584475],[126,81,70,-0.06822174922079187],[126,81,71,-0.1349589179896772],[126,81,72,-0.1763500923435103],[126,81,73,-0.1877172048914834],[126,81,74,-0.1940077851353573],[126,81,75,-0.1650536349611508],[126,81,76,-0.10059691123455568],[126,81,77,-0.06807971286933864],[126,81,78,-0.11123413265605558],[126,81,79,-0.15298793295128105],[126,82,64,-0.13250968228377913],[126,82,65,-0.15201980631054238],[126,82,66,-0.1069101043967239],[126,82,67,-0.06671195042509442],[126,82,68,-0.04369693653341963],[126,82,69,-0.03388512676076375],[126,82,70,-0.0695968110892602],[126,82,71,-0.1368403486715774],[126,82,72,-0.1784530539929304],[126,82,73,-0.19008147580215257],[126,82,74,-0.19651595467953484],[126,82,75,-0.16727262424911046],[126,82,76,-0.10211859099174447],[126,82,77,-0.06921872702129692],[126,82,78,-0.11275316136421804],[126,82,79,-0.15523733599411726],[126,83,64,-0.1342344420747818],[126,83,65,-0.1541979920843235],[126,83,66,-0.10860770915593737],[126,83,67,-0.06769004278749871],[126,83,68,-0.044293674550513744],[126,83,69,-0.034709657249286145],[126,83,70,-0.07098150522256601],[126,83,71,-0.13872592436016476],[126,83,72,-0.18055853307285114],[126,83,73,-0.1924570340901597],[126,83,74,-0.19904473499396239],[126,83,75,-0.16951486037648247],[126,83,76,-0.1036584732054372],[126,83,77,-0.07037181431056151],[126,83,78,-0.1142860403391007],[126,83,79,-0.15750952176077032],[126,84,64,-0.13596495683299206],[126,84,65,-0.15638889615804694],[126,84,66,-0.11032527140058582],[126,84,67,-0.0686837077367819],[126,84,68,-0.044898869823429804],[126,84,69,-0.03554257620316221],[126,84,70,-0.07237494594395642],[126,84,71,-0.14061413244221732],[126,84,72,-0.18266470625343098],[126,84,73,-0.19484212383837418],[126,84,74,-0.20159243903158172],[126,84,75,-0.17177895831979537],[126,84,76,-0.10521578266972151],[126,84,77,-0.07153846506021894],[126,84,78,-0.11583175368905146],[126,84,79,-0.15980307718811845],[126,85,64,-0.13769998562197383],[126,85,65,-0.15859122915684631],[126,85,66,-0.11206195604854913],[126,85,67,-0.06969243358297711],[126,85,68,-0.0455120756544428],[126,85,69,-0.036383369549757204],[126,85,70,-0.07377621201064923],[126,85,71,-0.14250339985468063],[126,85,72,-0.18476965624930236],[126,85,73,-0.19723484964807714],[126,85,74,-0.20415718938629374],[126,85,75,-0.17406333875027794],[126,85,76,-0.10678960678704409],[126,85,77,-0.07271806443391894],[126,85,78,-0.11738911051390975],[126,85,79,-0.16211632017682615],[126,86,64,-0.139438276902952],[126,86,65,-0.16080368200128758],[126,86,66,-0.11381689190357609],[126,86,67,-0.07071567809143389],[126,86,68,-0.046132828700576334],[126,86,69,-0.037231507791310646],[126,86,70,-0.075184360617299],[126,86,71,-0.14439213820391747],[126,86,72,-0.18687145351093323],[126,86,73,-0.19963328689616905],[126,86,74,-0.20673705545668442],[126,86,75,-0.17636636503254227],[126,86,76,-0.10837899160339755],[126,86,77,-0.073909965914513],[126,86,78,-0.11895687899557278],[126,86,79,-0.1644475022282764],[126,87,64,-0.14117856475372711],[126,87,65,-0.1630249225892535],[126,87,66,-0.11558916883276836],[126,87,67,-0.07175286650394928],[126,87,68,-0.04676064854159598],[126,87,69,-0.038086447240797704],[126,87,70,-0.07659843015499752],[126,87,71,-0.14627874957372863],[126,87,72,-0.18896816462271498],[126,87,73,-0.20203549101264462],[126,87,74,-0.20933006279926974],[126,87,75,-0.17868635183247403],[126,87,76,-0.10998294781669718],[126,87,77,-0.07511349600445155],[126,87,78,-0.1205337952317684],[126,87,79,-0.16679482162299764],[126,88,64,-0.14291957095527189],[126,88,65,-0.165253597833248],[126,88,66,-0.11737783775774008],[126,88,67,-0.07280339072324561],[126,88,68,-0.04739503765384266],[126,88,69,-0.03894763134153077],[126,88,70,-0.07801744246973615],[126,88,71,-0.14816163007462013],[126,88,72,-0.19105785622398125],[126,88,73,-0.2044395004115466],[126,88,74,-0.2119341943065565],[126,88,75,-0.1810215654334532],[126,88,76,-0.11160045092156011],[126,88,77,-0.0763279544167745],[126,88,78,-0.12211856384840974],[126,88,79,-0.16915642411639148],[126,89,64,-0.14466000718071434],[126,89,65,-0.1674883358094736],[126,89,66,-0.11918191072962023],[126,89,67,-0.07386660854840643],[126,89,68,-0.04803548144169444],[126,89,69,-0.03981449209090253],[126,89,70,-0.07944040525646669],[126,89,71,-0.15003917353977841],[126,89,72,-0.19313859907964415],[126,89,73,-0.2068433395742492],[126,89,74,-0.21454739153380295],[126,89,75,-0.1833702241924763],[126,89,76,-0.11323044144834997],[126,89,77,-0.07755261433658685],[126,89,78,-0.12370985871834791],[126,89,79,-0.17153040379871054],[126,90,64,-0.14639857728247516],[126,90,65,-0.16972774801497198],[126,90,66,-0.12100036108974442],[126,90,67,-0.0749418429646409],[126,90,68,-0.04868144832747945],[126,90,69,-0.04068645156621306],[126,90,70,-0.08086631458442617],[126,90,71,-0.15190977535882902],[126,90,72,-0.19520847228965618],[126,90,73,-0.20924502227762953],[126,90,74,-0.21716755617254835],[126,90,75,-0.18573049913692857],[126,90,76,-0.11487182529766361],[126,90,77,-0.07878672275384604],[126,90,78,-0.12530632378559908],[126,90,79,-0.17391480411880766],[126,91,64,-0.14813397967291195],[126,91,65,-0.17197043172865298],[126,91,66,-0.12283212371770509],[126,91,67,-0.07602838149075307],[126,91,68,-0.04933238990054689],[126,91,69,-0.04156292355006969],[126,91,70,-0.08229415754875674],[126,91,71,-0.1537718364397074],[126,91,72,-0.1972655676257628],[126,91,73,-0.21164255495905338],[126,91,74,-0.21979255166861691],[126,91,75,-0.18810051470249325],[126,91,76,-0.11652347417123052],[126,91,77,-0.08002950086809926],[126,91,78,-0.12690657399388694],[126,91,79,-0.17630761907080214],[126,92,64,-0.1498649097933626],[126,92,65,-0.17421497247156081],[126,92,66,-0.1246760953682053],[126,92,67,-0.07712547558762685],[126,92,68,-0.049987741126020696],[126,92,69,-0.04244331525233564],[126,92,70,-0.08372291504276311],[126,92,71,-0.15562376728821448],[126,92,72,-0.19930799398328616],[126,92,73,-0.21403394020948963],[126,92,74,-0.22242020498192858],[126,92,75,-0.19047834961240426],[126,92,76,-0.11818422609994184],[126,92,77,-0.08128014456556815],[126,92,78,-0.12850919631804655],[126,92,79,-0.1787067945424012],[126,93,64,-0.1515900626661315],[126,93,65,-0.17645994656133152],[126,93,66,-0.12653113509801836],[126,93,67,-0.07823234013106953],[126,93,68,-0.050646920613680924],[126,93,69,-0.04332702912519892],[126,93,70,-0.08515156464457767],[126,93,71,-0.1574639921941875],[126,93,72,-0.20133388193505516],[126,93,73,-0.21641718038554042],[126,93,74,-0.2250483084851543],[126,93,75,-0.19286203789803283],[126,93,76,-0.11985288606957155],[126,93,77,-0.08253782496884193],[126,93,78,-0.13011275089665947],[126,93,79,-0.18111022982329067],[126,94,64,-0.15330813552351927],[126,94,65,-0.1787039237553247],[126,94,66,-0.12839606478410814],[126,94,67,-0.07934815295226816],[126,94,68,-0.05130933094722691],[126,94,69,-0.04421346476742079],[126,94,70,-0.08657908361133222],[126,94,71,-0.15929095351249217],[126,94,72,-0.20334138837390162],[126,94,73,-0.2187902813305595],[126,94,74,-0.22767462199784036],[126,94,75,-0.19524957006046664],[126,94,76,-0.12152822674446738],[126,94,77,-0.0838016890591841],[126,94,78,-0.13171577226398073],[126,94,79,-0.18351577927156823],[126,95,64,-0.1550178305076605],[126,95,65,-0.18094546997653943],[126,95,66,-0.13026966973380724],[126,95,67,-0.08047205444910827],[126,95,68,-0.05197435907406494],[126,95,69,-0.045102020913400535],[126,95,70,-0.08800445197336586],[126,95,71,-0.16110311602645766],[126,95,72,-0.20532870122960498],[126,95,73,-0.22115125619457734],[126,95,74,-0.23029687495236903],[126,95,75,-0.1976388943725298],[126,95,76,-0.12320898928932057],[126,95,77,-0.08507086037130855],[126,95,78,-0.13331677067904213],[126,95,79,-0.18592125413587748],[126,96,64,-0.15671785743450733],[126,96,65,-0.18318315011596428],[126,96,66,-0.13215069938767401],[126,96,67,-0.08160314727148003],[126,96,68,-0.0526413767555545],[126,96,69,-0.04599209750218498],[126,96,70,-0.08942665572034791],[126,96,71,-0.1628989713806998],[126,96,72,-0.20729404424551384],[126,96,73,-0.22349812934214633],[126,96,74,-0.232912768687673],[126,96,75,-0.20002791832030514],[126,96,76,-0.12489388428880678],[126,96,77,-0.08634443976020087],[126,96,78,-0.13491423354948615],[126,96,79,-0.1883244245304181],[126,97,64,-0.15840693661499192],[126,97,65,-0.1854155309046671],[126,97,66,-0.13403786811547586],[126,97,67,-0.08274049608366178],[126,97,68,-0.05330974107751995],[126,97,69,-0.04688309782113373],[126,97,70,-0.09084469007065614],[126,97,71,-0.16467704256975732],[126,97,72,-0.2092356817996191],[126,97,73,-0.225828940336825],[126,97,74,-0.2355199788663754],[126,97,75,-0.20241451018299952],[126,97,76,-0.12658159276470402],[126,97,77,-0.08762150623940353],[126,97,78,-0.1365066269475095],[126,97,79,-0.19072302155969598],[126,98,64,-0.1600838017260502],[126,98,65,-0.18764118384855574],[126,98,66,-0.13592985610551508],[126,98,67,-0.08388312740677335],[126,98,68,-0.05397879502066915],[126,98,69,-0.04777443071851317],[126,98,70,-0.09225756281478942],[126,98,71,-0.1664358884684277],[126,98,72,-0.21115192375435538],[126,98,73,-0.2281417479905434],[126,98,74,-0.23811615801066457],[126,98,75,-0.20479650074966088],[126,98,76,-0.12827076728983594],[126,98,77,-0.08890111788996574],[126,98,78,-0.13809239721504196],[126,98,79,-0.19311473958946862],[126,99,64,-0.16174720272384507],[126,99,65,-0.18985868821833968],[126,99,66,-0.13782531034723855],[126,99,67,-0.08503002954414592],[126,99,68,-0.05464786809034478],[126,99,69,-0.04866551287881438],[126,99,70,-0.093664297723021],[126,99,71,-0.1681741083891571],[126,99,72,-0.2130411303189294],[126,99,73,-0.23043463446563697],[126,99,74,-0.24069893815184543],[126,99,75,-0.20717168517090345],[126,99,76,-0.1299600331978815],[126,99,77,-0.09018231283899063],[126,99,78,-0.1396699726549991],[126,99,79,-0.19549723865990606],[126,100,64,-0.1633959087912608],[126,100,65,-0.19206663408694793],[126,100,66,-0.13972284570688176],[126,100,67,-0.08618015259237058],[126,100,68,-0.05531627700489538],[126,100,69,-0.049555771154211295],[126,100,70,-0.09506393800702391],[126,100,71,-0.16989034665144429],[126,100,72,-0.21490171690765522],[126,100,73,-0.2327057094170202],[126,100,74,-0.24326593358826054],[126,100,75,-0.20953782494353787],[126,100,76,-0.13164798988789136],[126,100,77,-0.09146411030655476],[126,100,78,-0.1412377653052744],[126,100,79,-0.19786814703667047],[126,101,64,-0.1650287113114689],[126,101,65,-0.1942636254063253],[126,101,66,-0.14162104609565207],[126,101,67,-0.0873324085406565],[126,101,68,-0.05598332644177886],[126,101,69,-0.050444644945174706],[126,101,70,-0.09645554982472986],[126,101,71,-0.17158329714781267],[126,101,72,-0.21673215897742606],[126,101,73,-0.2349531141615999],[126,101,74,-0.24581474374593465],[126,101,75,-0.2118926500256584],[126,101,76,-0.1333332122220721],[126,101,77,-0.09274551171954501],[126,101,78,-0.1427941727918942],[126,101,79,-0.20022506389521774],[126,102,64,-0.1666444268590688],[126,102,65,-0.1964482831152142],[126,102,66,-0.14351846572966936],[126,102,67,-0.08848567146093332],[126,102,68,-0.05664830984028045],[126,102,69,-0.0513315886228234],[126,102,70,-0.09783822581717987],[126,102,71,-0.17325170789052488],[126,102,72,-0.21853099682714977],[126,102,73,-0.23717502586170267],[126,102,74,-0.2483429561359764],[126,102,75,-0.214233861079388],[126,102,76,-0.1350142520150986],[126,102,77,-0.09402550189070492],[126,102,78,-0.14433758025749951],[126,102,79,-0.2025655621332201],[126,103,64,-0.16824190020012725],[126,103,65,-0.19861924826930724],[126,103,66,-0.14541363048068057],[126,103,67,-0.08963877779101338],[126,103,68,-0.05731051025958982],[126,103,69,-0.05221607398527836],[126,103,70,-0.09921108866577041],[126,103,71,-0.17489438552297096],[126,103,72,-0.22029684034181107],[126,103,73,-0.23936966170907323],[126,103,74,-0.25084814940252587],[126,103,75,-0.21655913183819306],[126,103,76,-0.1366896396129907],[126,103,77,-0.0953030502610097],[126,103,78,-0.14586636236114767],[126,103,79,-0.2048871913056936],[126,104,64,-0.16982000729223157],[126,104,65,-0.20077518518490914],[126,104,66,-0.14730503931630778],[126,104,67,-0.09079052671295054],[126,104,68,-0.0579692012907993],[126,104,69,-0.05309759273993952],[126,104,70,-0.10057329465791748],[126,104,71,-0.17651019977942328],[126,104,72,-0.22202837366365916],[126,104,73,-0.24153528309577124],[126,104,74,-0.2533278964547499],[126,104,75,-0.2188661115953472],[126,104,76,-0.1383578855593193],[126,104,77,-0.09657711220328055],[126,104,78,-0.1473788853452202],[126,104,79,-0.20718748067705053],[126,105,64,-0.17137765815094136],[126,105,65,-0.2029147843972455],[126,105,66,-0.14919116582779285],[126,105,67,-0.09193968070060053],[126,105,68,-0.05862364810397877],[126,105,69,-0.053975659056968384],[126,105,70,-0.10192403721389352],[126,105,71,-0.17809808781564282],[126,105,72,-0.22372435974127858],[126,105,73,-0.2436701996819915],[126,105,74,-0.2557797675914174],[126,105,75,-0.22115242781400676],[126,105,76,-0.14001748238389944],[126,105,77,-0.09784663038660643],[126,105,78,-0.14887350917893918],[126,105,79,-0.2094639424253374],[126,106,64,-0.17291365407612858],[126,106,65,-0.2050365438598532],[126,106,66,-0.15107046044094102],[126,106,67,-0.09308505230485375],[126,106,68,-0.0592732055033861],[126,106,69,-0.054849872261597814],[126,106,70,-0.10326250680442471],[126,106,71,-0.17965698403976174],[126,106,72,-0.2253836044567738],[126,106,73,-0.2457726827844026],[126,106,74,-0.25820123645595006],[126,106,75,-0.22341569580672113],[126,106,76,-0.14166695151097752],[126,106,77,-0.09911053931354193],[126,106,78,-0.15034860751243664],[126,106,79,-0.2117141248262183],[126,107,64,-0.1744264041585313],[126,107,65,-0.20713833705347848],[126,107,66,-0.1529413616257435],[126,107,67,-0.094225686926009],[126,107,68,-0.059917510376847345],[126,107,69,-0.055720018864729354],[126,107,70,-0.10458778935862315],[126,107,71,-0.18118565662565897],[126,107,72,-0.2270048586597975],[126,107,73,-0.24784077990942446],[126,107,74,-0.2605895047444429],[126,107,75,-0.22565354917496339],[126,107,76,-0.14330494037799146],[126,107,77,-0.10036777904073414],[126,107,78,-0.15180261483309573],[126,107,79,-0.21393572386120094],[126,108,64,-0.17591427052562256],[126,108,65,-0.2092179392975632],[126,108,66,-0.1548023084717041],[126,108,67,-0.09536067952178102],[126,108,68,-0.06055625573804519],[126,108,69,-0.056585906212462296],[126,108,70,-0.10589894404229262],[126,108,71,-0.182682855562029],[126,108,72,-0.2285868835912325],[126,108,73,-0.2498725156091706],[126,108,74,-0.26294175293555977],[126,108,75,-0.22786364675383255],[126,108,76,-0.144930128113621],[126,108,77,-0.1016172983347744],[126,108,78,-0.15323400166054552],[126,108,79,-0.216126484279987],[126,109,64,-0.1773756482613874],[126,109,65,-0.21127314878152612],[126,109,66,-0.15665174410540067],[126,109,67,-0.09648913256186906],[126,109,68,-0.06118914050124346],[126,109,69,-0.05744732883876694],[126,109,70,-0.1071950257024327],[126,109,71,-0.18414735162533896],[126,109,72,-0.23012847134630932],[126,109,73,-0.2518659412725043],[126,109,74,-0.26525519850221363],[126,109,75,-0.23004367504958478],[126,109,76,-0.14654120501947537],[126,109,77,-0.10285805597770671],[126,109,78,-0.154641269746411],[126,109,79,-0.2182841790582015],[126,110,64,-0.17880896825217743],[126,110,65,-0.21330179011013362],[126,110,66,-0.15848811820675177],[126,110,67,-0.09761015766362299],[126,110,68,-0.06181587045921583],[126,110,69,-0.05830406950877564],[126,110,70,-0.10847508722679454],[126,110,71,-0.18557793920166307],[126,110,72,-0.23162844745422892],[126,110,73,-0.2538191386672504],[126,110,74,-0.26752710078319164],[126,110,75,-0.23219135226216325],[126,110,76,-0.14813687488935476],[126,110,77,-0.10408902280813917],[126,110,78,-0.15602295513173978],[126,110,79,-0.2204066137165236],[126,111,64,-0.18021270001856654],[126,111,65,-0.21530171787892632],[126,111,66,-0.16030988956727266],[126,111,67,-0.09872287724499947],[126,111,68,-0.06243615925748602],[126,111,69,-0.05915590028489656],[126,111,70,-0.10973818193430993],[126,111,71,-0.18697343908236178],[126,111,72,-0.23308567340106323],[126,111,73,-0.25573022347310825],[126,111,74,-0.26975476586337316],[126,111,75,-0.23430443231398732],[126,111,76,-0.1497158573364856],[126,111,77,-0.10530918377036705],[126,111,78,-0.15737763117241993],[126,111,79,-0.22249163062866148],[126,112,64,-0.18158535452348254],[126,112,65,-0.21727082026806485],[126,112,66,-0.16211552868317022],[126,112,67,-0.09982642618968654],[126,112,68,-0.06304972936256713],[126,112,69,-0.06000258361572432],[126,112,70,-0.11098336599176725],[126,112,71,-0.1883327012271236],[126,112,72,-0.23449904909069533],[126,112,73,-0.2575973487958885],[126,112,74,-0.2719355514459886],[126,112,75,-0.23638070887174303],[126,112,76,-0.15127689012186418],[126,112,77,-0.10651753996466112],[126,112,78,-0.1587039115215777],[126,112,79,-0.2245371133042628],[126,113,64,-0.18292548694696678],[126,113,65,-0.21920702264292796],[126,113,66,-0.16390352037600844],[126,113,67,-0.10091995351921582],[126,113,68,-0.06365631302179595],[126,113,69,-0.0608438734473953],[126,113,70,-0.11220970085176718],[126,113,71,-0.18965460748774562],[126,113,72,-0.235867515238494],[126,113,73,-0.25941870865359085],[126,113,74,-0.27406687170037713],[126,113,75,-0.2384180193479285],[126,113,76,-0.15281873147679143],[126,113,77,-0.10771311069183317],[126,113,78,-0.16000045305804142],[126,113,79,-0.2265409906328321],[126,114,64,-0.18423169941798798],[126,114,65,-0.2211082911497455],[126,114,66,-0.16567236643349809],[126,114,67,-0.1020026240667916],[126,114,68,-0.06425565321224556],[126,114,69,-0.061679516356668226],[126,114,70,-0.11341625570661593],[126,114,71,-0.1909380742858798],[126,114,72,-0.23719005569239154],[126,114,73,-0.26119254142474563],[126,114,74,-0.2761462020687622],[126,114,75,-0.24041424886893734],[126,114,76,-0.15434016241261522],[126,114,77,-0.10889493548513501],[126,114,78,-0.16126595875009656],[126,114,79,-0.22850124107474828],[126,115,64,-0.1855026431309835],[126,115,65,-0.22297263572505546],[126,115,66,-0.1674205876866626],[126,115,67,-0.10307361956455603],[126,115,68,-0.0648475039863659],[126,115,69,-0.06250925210817476],[126,115,70,-0.11460210934923258],[126,115,71,-0.19218205462778706],[126,115,72,-0.23846569905910456],[126,115,73,-0.26291713262569855],[126,115,74,-0.2781710833851757],[126,115,75,-0.2423673335592381],[126,115,76,-0.15583998836656138],[126,115,77,-0.11006207547160465],[126,115,78,-0.16249917978618184],[126,115,79,-0.2304158961210551],[126,116,64,-0.1867368817078372],[126,116,65,-0.22479797272483729],[126,116,66,-0.1691465840730981],[126,116,67,-0.10413199602932258],[126,116,68,-0.06543148542909456],[126,116,69,-0.06333266717377732],[126,116,70,-0.11576620329201744],[126,116,71,-0.19338538962020474],[126,116,72,-0.2396933681127684],[126,116,73,-0.2645906637996316],[126,116,74,-0.2801389703917277],[126,116,75,-0.2442751065390178],[126,116,76,-0.15731688189684656],[126,116,77,-0.11121345408765773],[126,116,78,-0.1636987553079873],[126,116,79,-0.2322828796716897],[126,117,64,-0.18793270489176717],[126,117,65,-0.22658193723428438],[126,117,66,-0.17084844373049682],[126,117,67,-0.10517648947448822],[126,117,68,-0.0660068862393567],[126,117,69,-0.06414899521147438],[126,117,70,-0.11690714112037486],[126,117,71,-0.19454660544680338],[126,117,72,-0.24087167392995404],[126,117,73,-0.2662110054385007],[126,117,74,-0.28204702354675687],[126,117,75,-0.24613508651034427],[126,117,76,-0.1587691672825073],[126,117,77,-0.11234763897555258],[126,117,78,-0.16486299253659584],[126,117,79,-0.23409978708230064],[126,118,64,-0.18908840025922274],[126,118,65,-0.22832215889464683],[126,118,66,-0.1725242211434256],[126,118,67,-0.10620579618327765],[126,118,68,-0.06657294640735217],[126,118,69,-0.06495740323053745],[126,118,70,-0.11802347907521761],[126,118,71,-0.19566420708561433],[126,118,72,-0.24199921233108462],[126,118,73,-0.26777601781956006],[126,118,74,-0.2838924143112561],[126,118,75,-0.24794478543391557],[126,118,76,-0.1601951298467731],[126,118,77,-0.1134631541860242],[126,118,78,-0.1659901827125021],[126,118,79,-0.2358642055846313],[126,119,64,-0.19020230048746523],[126,119,65,-0.23001631073465567],[126,119,66,-0.1741719857524576],[126,119,67,-0.10721862084248819],[126,119,68,-0.06712890515071213],[126,119,69,-0.0657570404458167],[126,119,70,-0.11911377668431883],[126,119,71,-0.19673672939454878],[126,119,72,-0.24307461505521324],[126,119,73,-0.2692836039717925],[126,119,74,-0.28567237991457894],[126,119,75,-0.24970176309515957],[126,119,76,-0.16159306961035005],[126,119,77,-0.1145585341071443],[126,119,78,-0.16707865609607264],[126,119,79,-0.23757377117262088],[126,120,64,-0.19127278604495804],[126,120,65,-0.23166211292699812],[126,120,66,-0.17578982501301268],[126,120,67,-0.10821367859646976],[126,120,68,-0.06767400224701954],[126,120,69,-0.06654704003866575],[126,120,70,-0.12017659973849631],[126,120,71,-0.1977627399459127],[126,120,72,-0.24409655213696588],[126,120,73,-0.27073171332267987],[126,120,74,-0.2873842282289894],[126,120,75,-0.2514036312747644],[126,120,76,-0.1629613040742629],[126,120,77,-0.1156323259940204],[126,120,78,-0.1681267849699795],[126,120,79,-0.2392261729551888],[126,121,64,-0.19229828782870415],[126,121,65,-0.23325733651421926],[126,121,66,-0.17737584747667745],[126,121,67,-0.10918969712370652],[126,121,68,-0.06820747939626845],[126,121,69,-0.06732652098837974],[126,121,70,-0.12121052330368512],[126,121,71,-0.1987408418333671],[126,121,72,-0.24506373424384448],[126,121,73,-0.2721183453123111],[126,121,74,-0.28902534256778906],[126,121,75,-0.25304805787416124],[126,121,76,-0.16429817102029273],[126,121,77,-0.1166830925191214],[126,121,78,-0.16913298659171935],[126,121,79,-0.24081915744955132],[126,122,64,-0.1932772897402512],[126,122,65,-0.23479980709292597],[126,122,66,-0.1789281858868346],[126,122,67,-0.11014541873027021],[126,122,68,-0.06872858160980751],[126,122,69,-0.06809458997051882],[126,122,70,-0.12221413476114919],[126,122,71,-0.19966967644398],[126,122,72,-0.24597491496850446],[126,122,73,-0.27344155296513034],[126,122,74,-0.29059318639214027],[126,122,75,-0.25463277098379006],[126,122,76,-0.16560203132167695],[126,122,77,-0.11770941433597933],[126,122,78,-0.17009572608696424],[126,122,79,-0.24235053280226487],[126,123,64,-0.1942083311923046],[126,123,65,-0.23628740844530413],[126,123,66,-0.18044500028036908],[126,123,67,-0.11107960245435299],[126,123,68,-0.06923655862218277],[126,123,69,-0.06885034331811811],[126,123,70,-0.12318603686783743],[126,123,71,-0.2005479261879902],[126,123,72,-0.24682889307060932],[126,123,73,-0.27469944640962224],[126,123,74,-0.2920853079119734],[126,123,75,-0.25615556288215924],[126,123,76,-0.16687127175665192],[126,123,77,-0.11870989264894997],[126,123,78,-0.17101351927468805],[126,123,79,-0.2438181729253793],[126,124,64,-0.19509000953809352],[126,124,65,-0.23771808610712056],[126,124,66,-0.18192448108713977],[126,124,67,-0.11199102617601384],[126,124,68,-0.06973066632213874],[126,124,69,-0.06959286904139778],[126,124,70,-0.12412485082863259],[126,124,71,-0.20137431717887813],[126,124,72,-0.24762451466286906],[126,124,73,-0.27589019633628775],[126,124,74,-0.29349934456670335],[126,124,75,-0.2576142939538895],[126,124,76,-0.16810430781734262],[126,124,77,-0.11968315178163587],[126,124,78,-0.17188493541521577],[126,124,79,-0.2452200215352944],[126,125,64,-0.19592098241591857],[126,125,65,-0.23908985086159948],[126,125,66,-0.18336485221891524],[126,125,67,-0.11287848872626377],[126,125,68,-0.07021016819894066],[126,125,69,-0.07032124890125707],[126,125,70,-0.12502921937206365],[126,125,71,-0.20214762185639087],[126,125,72,-0.2483606753359434],[126,125,73,-0.27701203738436986],[126,125,74,-0.2948330273718947],[126,125,75,-0.25900689651524555],[126,125,76,-0.16929958650651147],[126,125,77,-0.12062784173659392],[126,125,78,-0.17270859987265347],[126,125,79,-0.24655409608226467],[126,126,64,-0.1966999700015804],[126,126,65,-0.24040078214880056],[126,126,66,-0.18476437413945898],[126,126,67,-0.1137408119896004],[126,126,68,-0.0706743368000844],[126,126,69,-0.07103456053152496],[126,126,70,-0.12589780982089793],[126,126,71,-0.20286666154523036],[126,126,72,-0.24903632221694472],[126,126,73,-0.278063271447911],[126,126,74,-0.29608418511843043],[126,126,75,-0.2603313785359055],[126,126,76,-0.1704555891146499],[126,126,77,-0.12154264073893278],[126,126,78,-0.17348319668342366],[126,126,79,-0.2478184915587753],[126,127,64,-0.19742575716166702],[126,127,65,-0.2416490313803559],[126,127,66,-0.18612134690744972],[126,127,67,-0.11457684299406803],[126,127,68,-0.07112245519633323],[126,127,69,-0.07173187960459206],[126,127,70,-0.1267293171488541],[126,127,71,-0.20353030894216334],[126,127,72,-0.24965045595634316],[126,127,73,-0.27904227089184475],[126,127,74,-0.2972507484111961],[126,127,75,-0.26158582724604273],[126,127,76,-0.17157083396989264],[126,127,77,-0.12242625775640423],[126,127,78,-0.17420747102293138],[126,127,79,-0.24901138417539562],[126,128,64,-0.1980971955010077],[126,128,65,-0.2428328251497348],[126,128,66,-0.1874341131839834],[126,128,67,-0.11538545598296336],[126,128,68,-0.07155381844997177],[126,128,69,-0.07241228203479959],[126,128,70,-0.12752246701461742],[126,128,71,-0.20413749052446023],[126,128,72,-0.25020213263819957],[126,128,73,-0.27994748166903927],[126,128,74,-0.2983307535348128],[126,128,75,-0.26276841261815076],[126,128,76,-0.17264387915328216],[126,128,77,-0.1232774349886569],[126,128,78,-0.17488023156275245],[126,128,79,-0.2501310348931149],[126,129,64,-0.19871320529794095],[126,129,65,-0.24395046832851744],[126,129,66,-0.18870106119646401],[126,129,67,-0.1161655544623274],[126,129,68,-0.0719677350821009],[126,129,69,-0.07307484621369453],[126,129,70,-0.12827601876425973],[126,129,71,-0.20468718887269768],[126,129,72,-0.2506904656087724],[126,129,73,-0.2807774263293975],[126,129,74,-0.29932234613448727],[126,129,75,-0.26387739071341826],[126,129,76,-0.17367332517195794],[126,129,77,-0.1240949503183727],[126,129,78,-0.17550035271107667],[126,129,79,-0.251175792801609],[126,130,64,-0.19927277732136564],[126,130,65,-0.2450003470394754],[126,130,66,-0.18992062765075898],[126,130,67,-0.11691607321838952],[126,130,68,-0.07236352853471358],[126,130,69,-0.07371865527099097],[126,130,70,-0.12898876839310924],[126,130,71,-0.20517844490110793],[126,130,72,-0.2511146272186709],[126,130,73,-0.2815307069123654],[126,130,74,-0.30022378470062133],[126,130,75,-0.26491110688286096],[126,130,76,-0.17465781758289958],[126,130,77,-0.12487761971707702],[126,130,78,-0.17606677672952578],[126,130,79,-0.2521440983333465],[126,131,64,-0.19977497452393556],[126,131,65,-0.24598093149764097],[126,131,66,-0.19109130058361562],[126,131,67,-0.11763598029921345],[126,131,68,-0.07274053862328998],[126,131,69,-0.0743427993548966],[126,131,70,-0.1296595514581483],[126,131,71,-0.2056103599888712],[126,131,72,-0.2514738504738929],[126,131,73,-0.28220600771444776],[126,131,74,-0.3010334438464245],[126,131,75,-0.2658679988138503],[126,131,76,-0.1755960495599554],[126,131,77,-0.12562429959852403],[126,131,78,-0.1765785157198614],[126,131,79,-0.25303448630394293],[126,132,64,-0.2002189336061379],[126,132,65,-0.2468907787109368],[126,132,66,-0.19221162214747212],[126,132,67,-0.11832427895486483],[126,132,68,-0.07309812297560844],[126,132,69,-0.07494637792525861],[126,132,70,-0.13028724593203472],[126,132,71,-0.20598209800596068],[126,132,72,-0.2517674305912785],[126,132,73,-0.2828020979236633],[126,132,74,-0.30174981736844514],[126,132,75,-0.2667465994131642],[126,132,76,-0.1764867643970122],[126,132,77,-0.12633388911269725],[126,132,78,-0.17703465347454475],[126,132,79,-0.2538455887697372],[126,133,64,-0.20060386644636807],[126,133,65,-0.24772853503232867],[126,133,66,-0.19328019131992355],[126,133,67,-0.11898000953049652],[126,133,68,-0.07343565845245277],[126,133,69,-0.07552850205281028],[126,133,70,-0.13087077498990515],[126,133,71,-0.20629288722737377],[126,133,72,-0.2519947264540721],[126,133,73,-0.28331783411314215],[126,133,74,-0.3023715210805586],[126,133,75,-0.2675455395181282],[126,133,76,-0.1773287579402618],[126,133,77,-0.12700533237357736],[126,133,78,-0.17743434718551024],[126,133,79,-0.2545761376940797],[126,134,64,-0.20092906139255137],[126,134,65,-0.2484929385559187],[126,134,66,-0.1942956665303014],[126,134,67,-0.11960225130687926],[126,134,68,-0.07375254254591947],[126,134,69,-0.07608829671768384],[126,134,70,-0.13140910972024356],[126,134,71,-0.20654202212987813],[126,134,72,-0.2521551619635232],[126,134,73,-0.2837521625864469],[126,134,74,-0.3028972954126825],[126,134,75,-0.2682635504279583],[126,134,76,-0.17812088094269846],[126,134,77,-0.1276376206140195],[126,134,78,-0.1777768290059952],[126,134,79,-0.255224967414441],[126,135,64,-0.20119388441126393],[126,135,65,-0.24918282134984465],[126,135,66,-0.195256768196015],[126,135,67,-0.12019012428301536],[126,135,68,-0.07404819475103606],[126,135,69,-0.07662490310023065],[126,135,70,-0.13190127175121594],[126,135,71,-0.2067288650656671],[126,135,72,-0.25224822728268126],[126,135,73,-0.2841041215675708],[126,135,74,-0.3033260077662052],[126,135,75,-0.2688994662479434],[126,135,76,-0.17886204133415684],[126,135,77,-0.12822979426127024],[126,135,78,-0.1780614074607396],[126,135,79,-0.2557910169030718],[126,136,64,-0.20139778009073586],[126,136,65,-0.24979711151931652],[126,136,66,-0.19616228116150913],[126,136,67,-0.12074279089561515],[126,136,68,-0.07432205790644157],[126,136,69,-0.07713748085711224],[126,136,70,-0.13234633578405217],[126,136,71,-0.20685284780763913],[126,136,72,-0.25227347996875177],[126,136,73,-0.2843728432289285],[126,136,74,-0.3036566546188337],[126,136,75,-0.26945222603963126],[126,136,76,-0.17955120640036598],[126,136,77,-0.12878094492683734],[126,136,78,-0.17828746870032555],[126,136,79,-0.2562733318145403],[126,137,64,-0.2015402724945708],[126,137,65,-0.25033483509362925],[126,137,66,-0.19701105703295166],[126,137,67,-0.12125945767037595],[126,137,68,-0.07457359949992876],[126,137,69,-0.07762521037557503],[126,137,70,-0.13274343202526218],[126,137,71,-0.20691347296134968],[126,137,72,-0.25223054599067973],[126,137,73,-0.2845575555511158],[126,137,74,-0.30388836337236574],[126,137,75,-0.2699208757707859],[126,137,76,-0.1801874048647413],[126,137,77,-0.12929021730467857],[126,137,78,-0.17845447759594799],[126,137,79,-0.25667106631418035],[126,138,64,-0.20162096586345343],[126,138,65,-0.25079511773149493],[126,138,66,-0.19780201640200984],[126,138,67,-0.12173937680017373],[126,138,68,-0.07480231293472131],[126,138,69,-0.07808729499880143],[126,138,70,-0.13309174850970845],[126,138,71,-0.20691031523903602],[126,138,72,-0.252119120628864],[126,138,73,-0.28465758400862046],[126,138,74,-0.3040203939376493],[126,138,75,-0.27030457005945335],[126,138,76,-0.180769728866854],[126,138,77,-0.12975681097190728],[126,138,78,-0.17856197867139675],[126,138,79,-0.2569834846821244],[126,139,64,-0.20163954516256893],[126,139,65,-0.2511771862395517],[126,139,66,-0.19853415095235477],[126,139,67,-0.12218184764545828],[126,139,68,-0.07500771875242898],[126,139,69,-0.07852296321523172],[126,139,70,-0.13339053330683256],[126,139,71,-0.20684302259148013],[126,139,72,-0.2519389692541922],[126,139,73,-0.28467235307613253],[126,139,74,-0.3040521400517847],[126,139,75,-0.2706025737070606],[126,139,76,-0.18129733583175522],[126,139,77,-0.1301799820864685],[126,139,78,-0.1786095968695247],[126,139,79,-0.2572099626882816],[126,140,64,-0.20159577647293],[126,140,65,-0.2514803698994721],[126,140,66,-0.19920652544284354],[126,140,67,-0.12258621815235023],[126,140,68,-0.0751893658087279],[126,140,69,-0.07893147080478595],[126,140,70,-0.13363909660262374],[126,140,71,-0.20671131719387537],[126,140,72,-0.25168992798389794],[126,140,73,-0.2846013875505942],[126,140,74,-0.3039831303234606],[126,140,75,-0.2708142630161269],[126,140,76,-0.181769450224638],[126,140,77,-0.1305590449765446],[126,140,78,-0.1785970381510284],[126,140,79,-0.2573499887343643],[126,141,64,-0.20148950722525377],[126,141,65,-0.2517041015996154],[126,141,66,-0.19981827956163398],[126,141,67,-0.1229518861841529],[126,141,68,-0.07534683239792367],[126,141,69,-0.07931210293498743],[126,141,70,-0.1338368126502665],[126,141,71,-0.20651499628225095],[126,141,72,-0.2513719042120138],[126,141,73,-0.28444431368459633],[126,141,74,-0.3038130290030991],[126,141,75,-0.2709391268887427],[126,141,76,-0.18218536518556597],[126,141,77,-0.1308933736167195],[126,141,78,-0.1785240899238444],[126,141,79,-0.25740316475971675],[126,142,64,-0.20132066627550985],[126,142,65,-0.25184791876776136],[126,142,66,-0.2003686296458363],[126,142,67,-0.12327830076221662],[126,142,68,-0.07547972732267445],[126,142,69,-0.07966417620007286],[126,142,70,-0.13398312158274542],[126,142,71,-0.20625393283744115],[126,142,72,-0.2509848770125347],[126,142,73,-0.2842008601272631],[126,142,74,-0.30354163647534377],[126,142,75,-0.27097676770265466],[126,142,76,-0.18254444403934206],[126,142,77,-0.1311824029862734],[126,142,78,-0.1783906213020225],[126,142,79,-0.2573692069084866],[126,143,64,-0.20108926382171274],[126,143,65,-0.2519114641020099],[126,143,66,-0.2008568702616463],[126,143,67,-0.12356496321233736],[126,143,68,-0.07558769090529553],[126,143,69,-0.0799870405963024],[126,143,70,-0.13407753108108736],[126,143,71,-0.20592807611400576],[126,143,72,-0.2505288974137108],[126,143,73,-0.2838708586692746],[126,143,74,-0.30316888947222737],[126,143,75,-0.27092690196240415],[126,143,76,-0.18284612167588105],[126,143,77,-0.13142563030528953],[126,143,78,-0.17819658319343482],[126,143,79,-0.2572479459563557],[126,144,64,-0.20079539116201187],[126,144,65,-0.2518944860975273],[126,144,66,-0.20128237564028423],[126,144,67,-0.12381142821312921],[126,144,68,-0.07567039593722208],[126,144,69,-0.08028008142684055],[126,144,70,-0.13411961789233776],[126,144,71,-0.20553745201196036],[126,144,72,-0.25000408854221723],[126,144,73,-0.2834542447892136],[126,144,74,-0.30269486100620563],[126,144,75,-0.27078936072362364],[126,144,76,-0.18308990579680307],[126,144,77,-0.13162261614460632],[126,144,78,-0.17794200821620676],[126,144,79,-0.2570393274957937],[126,145,64,-0.2004392202945768],[126,145,65,-0.2517968393673998],[126,145,66,-0.20164460096545428],[126,145,67,-0.12401730474307376],[126,145,68,-0.07572754856336171],[126,145,69,-0.08054272112974148],[126,145,70,-0.13410902919179285],[126,145,71,-0.20508216328961223],[126,145,72,-0.24941064563628204],[126,145,73,-0.2829510579989709],[126,145,74,-0.3021197600230704],[126,145,75,-0.2705640897892627],[126,145,76,-0.1832753780243191],[126,145,77,-0.13177298540601856],[126,145,78,-0.1776270104442796],[126,145,79,-0.25674341187953903],[126,146,64,-0.2000210033602547],[126,146,65,-0.25161848475643933],[126,146,66,-0.20194308350840923],[126,146,67,-0.12418225692322003],[126,146,68,-0.07575888909826646],[126,146,69,-0.08077442102279904],[126,146,70,-0.13404548378449213],[126,146,71,-0.20456238961628376],[126,146,72,-0.24874883592720975],[126,146,73,-0.2823614419865012],[126,146,74,-0.30144393077557347],[126,146,75,-0.27025114967713904],[126,146,76,-0.18340219486882492],[126,146,77,-0.13187642816947637],[126,146,78,-0.17725178498302152],[126,146,79,-0.2563603739227163],[126,147,64,-0.19954107192941314],[126,147,65,-0.25135948924739404],[126,147,66,-0.20217744360717294],[126,147,67,-0.12430600475282022],[126,147,68,-0.07576419277122662],[126,147,69,-0.08097468295923739],[126,147,70,-0.13392877314144772],[126,147,71,-0.2039783874641321],[126,147,72,-0.24801899838903618],[126,147,73,-0.28168564455477],[126,147,74,-0.3006678519194362],[126,147,75,-0.26985071535889593],[126,147,76,-0.18347008855203362],[126,147,77,-0.1319327004044505],[126,147,78,-0.17681660737631158],[126,147,79,-0.25589050236473904],[126,148,64,-0.19899983613483568],[126,148,65,-0.2510200256595876],[126,148,66,-0.20234738548683792],[126,148,67,-0.1243883247354527],[126,148,68,-0.07574327039759891],[126,148,69,-0.08114305088848489],[126,148,70,-0.13375876226659153],[126,148,71,-0.2033304898387751],[126,148,72,-0.24722154335643537],[126,148,73,-0.2809240173563075],[126,148,74,-0.2997921353342052],[126,148,75,-0.2693630757710654],[126,148,76,-0.18347886768282953],[126,148,77,-0.1319416245429892],[126,148,78,-0.17632183284701425],[126,148,79,-0.2553341990928476],[126,149,64,-0.19839778365298197],[126,149,65,-0.2506003721406165],[126,149,66,-0.20245269791833476],[126,149,67,-0.12442905039351762],[126,149,68,-0.07569596897390722],[126,149,69,-0.0812791123165651],[126,149,70,-0.13353539039096202],[126,149,71,-0.2026191058488981],[126,149,72,-0.24635695201132185],[126,149,73,-0.2800770154233462],[126,149,74,-0.29881752467223205],[126,149,75,-0.2687886330995999],[126,149,76,-0.18342841778344748],[126,149,77,-0.1319030899124158],[126,149,78,-0.1757678953732562],[126,149,79,-0.25469197812984073],[126,150,64,-0.19773547853634676],[126,150,65,-0.2501009114523237],[126,150,66,-0.20249325471350144],[126,150,67,-0.12442807266929207],[126,150,68,-0.07562217219445676],[126,150,69,-0.08138249966093104],[126,150,70,-0.1332586714911661],[126,150,71,-0.20184472011548046],[126,150,72,-0.245425775738945],[126,150,73,-0.2791451964941048],[126,150,74,-0.2977448936398481],[126,150,75,-0.268127901839881],[126,150,76,-0.18331870166400405],[126,150,77,-0.13181705302603133],[126,150,78,-0.17515530660340328],[126,150,79,-0.2539644643892703],[126,151,64,-0.19701355990007258],[126,151,65,-0.24952213005283305],[126,151,66,-0.20246901505472695],[126,151,67,-0.12438534021105466],[126,151,68,-0.07552180088745429],[126,151,69,-0.08145289149490839],[126,151,70,-0.13292869462972554],[126,151,71,-0.201007892021756],[126,151,72,-0.24442863535459483],[126,151,73,-0.27812922013631636],[126,151,74,-0.2965752440155475],[126,151,75,-0.2673815076348116],[126,151,76,-0.183149759643786],[126,151,77,-0.13168353773057578],[126,151,78,-0.17448465461306437],[126,151,79,-0.2531523922019994],[126,152,64,-0.19623274046638212],[126,152,65,-0.2488646169770249],[126,152,66,-0.2023800236579255],[126,152,67,-0.1243008595431245],[126,152,68,-0.07539481336886232],[126,152,69,-0.0814900136772638],[126,152,70,-0.13254562411546983],[126,152,71,-0.20010925480549588],[126,152,72,-0.2433662202023986],[126,152,73,-0.2770298466696995],[126,152,74,-0.29530970341077845],[126,152,75,-0.2665501858942551],[126,152,76,-0.1829217096181768],[126,152,77,-0.131502635209663],[126,152,78,-0.17375660250794742],[126,152,79,-0.25225660361873975],[126,153,64,-0.19539380497079356],[126,153,65,-0.24812906251839661],[126,153,66,-0.20222641076805134],[126,153,67,-0.12417469511898997],[126,153,68,-0.0752412057124708],[126,153,69,-0.08149364036278611],[126,153,70,-0.13210969948272355],[126,153,71,-0.19914951449566248],[126,153,72,-0.24223928712801715],[126,153,73,-0.2758479358896188],[126,153,74,-0.2939495227796546],[126,153,75,-0.2656347801996788],[126,153,76,-0.18263474697050738],[126,153,77,-0.13127450384280626],[126,153,78,-0.17297188687679113],[126,153,79,-0.25127804649379765],[126,154,64,-0.19449760843444497],[126,154,65,-0.2473162567157896],[126,154,66,-0.2020083919868326],[126,154,67,-0.12400696925703393],[126,154,68,-0.07506101193491872],[126,154,69,-0.08146359489015263],[126,154,70,-0.1316212352886068],[126,154,71,-0.19812944869593277],[126,154,72,-0.24104865932735545],[126,154,73,-0.2745844455947134],[126,154,74,-0.29249607368458813],[126,154,75,-0.26463624049842377],[126,154,76,-0.18228914432853993],[126,154,77,-0.13099936892007297],[126,154,78,-0.17213131609900875],[126,154,79,-0.2502177723558509],[126,155,64,-0.19354507430724546],[126,155,65,-0.24642708764904478],[126,155,66,-0.20172626793290008],[126,155,67,-0.12379786195871897],[126,155,68,-0.07485430409467533],[126,155,69,-0.08139975054376851],[126,155,70,-0.1310806207283669],[126,155,71,-0.19704990521805676],[126,155,72,-0.23979522507376394],[126,155,73,-0.27324042992186853],[126,155,74,-0.29095084532557364],[126,155,75,-0.2635556210926626],[126,155,76,-0.1818852511657855],[126,155,77,-0.13067752221287934],[126,155,78,-0.17123576851211855],[126,155,79,-0.24907693407225237],[126,156,64,-0.19253719248689619],[126,156,65,-0.24546253954814967],[126,156,66,-0.20138042373494056],[126,156,67,-0.1235476106094302],[126,156,68,-0.07462119230425464],[126,156,69,-0.08130203118668604],[126,156,70,-0.13048831906924685],[126,156,71,-0.19591180056843877],[126,156,72,-0.2384799363264837],[126,156,73,-0.27181703749238467],[126,156,74,-0.28931544134145365],[126,156,75,-0.26239407842860113],[126,156,76,-0.1814234932482415],[126,156,77,-0.13030932140181864],[126,156,78,-0.17028619044436413],[126,156,79,-0.2478567833138343],[126,157,64,-0.19147501721915874],[126,157,65,-0.24442369072097306],[126,157,66,-0.20097132835899284],[126,157,67,-0.12325650956251154],[126,157,68,-0.07436182465519944],[126,157,69,-0.0811704117621335],[126,157,70,-0.1298448669039755],[126,157,71,-0.19471611829175606],[126,157,72,-0.2371038072234066],[126,157,73,-0.2703155093737607],[126,157,74,-0.28759157639215044],[126,157,75,-0.26115286869206056],[126,157,76,-0.1809043719276146],[126,157,77,-0.1298951893628783],[126,157,78,-0.1692835941183136],[126,157,79,-0.24655866782780192],[126,158,64,-0.19035966488507375],[126,158,65,-0.2433117113051867],[126,158,66,-0.2004995337714887],[126,158,67,-0.12292490960739894],[126,158,68,-0.07407638705567299],[126,158,69,-0.08100491866165517],[126,158,70,-0.12915087322557917],[126,158,71,-0.19346390717586545],[126,158,72,-0.23566791246153057],[126,158,73,-0.2687371768620082],[126,158,74,-0.28578107253143686],[126,158,75,-0.2598333452170934],[126,158,76,-0.18032846328253568],[126,158,77,-0.12943561331382533],[126,158,78,-0.16822905543156613],[126,158,79,-0.24518402852679344],[126,159,64,-0.18919231168110973],[126,159,65,-0.24212786085044566],[126,159,66,-0.1999656739401048],[126,159,67,-0.12255321732308219],[126,159,68,-0.07376510298076078],[126,159,69,-0.08080562995831103],[126,159,70,-0.12840701832578888],[126,159,71,-0.19215627932262486],[126,159,72,-0.23417338556875003],[126,159,73,-0.2670834590899012],[126,159,74,-0.28388585538036937],[126,159,75,-0.2584369557147661],[126,159,76,-0.17969641710969855],[126,159,77,-0.12893114382295193],[126,159,78,-0.16712371162098477],[126,159,79,-0.24373439640266065],[126,160,64,-0.18797419119848638],[126,160,65,-0.2408734857373615],[126,160,66,-0.19937046367495548],[126,160,67,-0.12214189431846001],[126,160,68,-0.07342823313585377],[126,160,69,-0.08057267550382911],[126,160,70,-0.12761405251987604],[126,160,71,-0.19079440808963588],[126,160,72,-0.23262141707089865],[126,160,73,-0.26535586046704246],[126,160,74,-0.28190795011202174],[126,160,75,-0.25696523932972776],[126,160,76,-0.1790089557673027],[126,160,77,-0.1283823936827952],[126,160,78,-0.1659687588171767],[126,160,79,-0.24221138927398964],[126,161,64,-0.18670659190819866],[126,161,65,-0.23955001644026316],[126,161,66,-0.19871469731315033],[126,161,67,-0.12169145636152903],[126,161,68,-0.07306607503380297],[126,161,69,-0.08030623688912294],[126,161,70,-0.12677279470137165],[126,161,71,-0.18937952590831186],[126,161,72,-0.23101325255823296],[126,161,73,-0.26355596795810327],[126,161,74,-0.27984947725867176],[126,161,75,-0.25541982353263726],[126,161,76,-0.17826687287362],[126,161,77,-0.12779003665186775],[126,161,78,-0.1647654494962125],[126,161,79,-0.24061670837679938],[126,162,64,-0.18539085455846455],[126,162,65,-0.23815896464114328],[126,162,66,-0.19799924725017246],[126,162,67,-0.12120247239965044],[126,162,68,-0.07267896248678304],[126,162,69,-0.08000654726802191],[126,162,70,-0.12588413073063837],[126,162,71,-0.18791292198398585],[126,162,72,-0.22935019065577747],[126,162,73,-0.2616854482060178],[126,162,74,-0.27771264835302173],[126,162,75,-0.2538024208569451],[126,162,76,-0.17747103186393035],[126,162,77,-0.12715480606783575],[126,162,78,-0.16351508983581403],[126,162,79,-0.23895213480824903],[126,163,64,-0.18402836949152876],[126,163,65,-0.23670192020257916],[126,163,66,-0.19722506232198406],[126,163,67,-0.12067556347347172],[126,163,68,-0.07226726501408405],[126,163,69,-0.07967389104454946],[126,163,70,-0.12494901166182516],[126,163,71,-0.1863959398841025],[126,163,72,-0.2276335809021671],[126,163,73,-0.25974604450731753],[126,163,74,-0.27549976141543],[126,163,75,-0.25211482548889685],[126,163,76,-0.1766223644094712],[126,163,77,-0.1264774933359507],[126,163,78,-0.16221903698342902],[126,163,79,-0.2372195258335036],[126,164,64,-0.18262057388696099],[126,164,65,-0.2351805480078128],[126,164,66,-0.19639316604222692],[126,164,67,-0.1201114015274318],[126,164,68,-0.07183138716735733],[126,164,69,-0.07930860342459362],[126,164,70,-0.12396845181329505],[126,164,71,-0.18482997502087087],[126,164,72,-0.22586482154186682],[126,164,73,-0.25773957364721767],[126,164,74,-0.2732131962995346],[126,164,75,-0.2503589097200278],[126,164,76,-0.17572186870248918],[126,164,77,-0.1257589462969648],[126,164,78,-0.1608786962438373],[126,164,79,-0.23542081106625573],[126,165,64,-0.1811689489387223],[126,165,65,-0.23359658467650557],[126,165,66,-0.1955046546993073],[126,165,67,-0.11951070812007228],[126,165,68,-0.071371767775082],[126,165,69,-0.07891106983325767],[126,165,70,-0.12294352668709495],[126,165,71,-0.18321647203500235],[126,165,72,-0.22404535723582383],[126,165,73,-0.2556679226024171],[126,165,74,-0.27085540990895723],[126,165,75,-0.24853662027174775],[126,165,76,-0.17477060761187865],[126,165,77,-0.12500006747911444],[126,165,78,-0.1594955181940839],[126,165,79,-0.23355798853368023],[126,166,64,-0.1796750169734068],[126,166,65,-0.23195183516499168],[126,166,66,-0.19456069531854417],[126,166,67,-0.11887425303768005],[126,166,68,-0.07088887910829077],[126,166,69,-0.07848172519966201],[126,166,70,-0.1218753707435462],[126,166,71,-0.1815569220874169],[126,166,72,-0.22217667669577035],[126,166,73,-0.2535330451198924],[126,166,74,-0.2684289312980419],[126,166,75,-0.2466499745018811],[126,166,76,-0.17376970671423628],[126,166,77,-0.12420181223908008],[126,166,78,-0.15807099573362485],[126,166,79,-0.23163312063677488],[126,167,64,-0.17814033851720584],[126,167,65,-0.2302481692601833],[126,167,66,-0.19356252349502465],[126,167,67,-0.11820285281512768],[126,167,68,-0.07038322596988346],[126,167,69,-0.07802105311146357],[126,167,70,-0.12076517503753054],[126,167,71,-0.1798528600660607],[126,167,72,-0.22026031024760298],[126,167,73,-0.25133695818034857],[126,167,74,-0.2659363566698846],[126,167,75,-0.2447010565033842],[126,167,76,-0.1727203522056218],[126,167,77,-0.12336518679724974],[126,167,78,-0.1566066610777666],[126,167,79,-0.22964833001734256],[126,168,64,-0.17656650931918885],[126,168,65,-0.22848751797650194],[126,168,66,-0.19251144110313353],[126,168,67,-0.1174973691680163],[126,168,68,-0.0698553447100742],[126,168,69,-0.07752958484178372],[126,168,70,-0.1196141847234598],[126,168,71,-0.17810586171514298],[126,168,72,-0.21829782732935088],[126,168,73,-0.24908173835520245],[126,168,74,-0.2633803442850378],[126,168,75,-0.24269201310562388],[126,168,76,-0.17162378869959813],[126,168,77,-0.1224912461728638],[126,168,78,-0.1551040827024722],[126,168,79,-0.22760579534293365],[126,169,64,-0.17495515733859554],[126,169,65,-0.22667186986548285],[126,169,66,-0.19140881388915257],[126,169,67,-0.11675870734055391],[126,169,68,-0.06930580217080477],[126,169,69,-0.0770078982517315],[126,169,70,-0.11842369643639314],[126,169,71,-0.17631754069432248],[126,169,72,-0.21629083392941917],[126,169,73,-0.24676951806629635],[126,169,74,-0.2607636092944966],[126,169,75,-0.24062504978887564],[126,169,76,-0.17048131691752563],[126,169,77,-0.12158109202498217],[126,169,78,-0.15356486224872154],[126,169,79,-0.22550774702125373],[126,170,64,-0.1733079397038264],[126,170,65,-0.22480326724786642],[126,170,66,-0.19025606895363173],[126,170,67,-0.11598781437381978],[126,170,68,-0.06873519456214743],[126,170,69,-0.07645661657209918],[126,170,70,-0.11719505555710179],[126,170,71,-0.17448954557546748],[126,170,72,-0.21424096997084585],[126,170,73,-0.24440248175771925],[126,170,74,-0.2580889185106252],[126,170,75,-0.2385024265228329],[126,170,76,-0.169294291277382],[126,170,77,-0.12063587040547193],[126,170,78,-0.15199063139459934],[126,170,79,-0.2233564628555891],[126,171,64,-0.17162653965088673],[126,171,65,-0.22288380237821392],[126,171,66,-0.18905469213062479],[126,171,67,-0.11518567729937669],[126,171,68,-0.06814414627401318],[126,171,69,-0.07587640706830281],[126,171,70,-0.11592965336933359],[126,171,71,-0.1726235567848097],[126,171,72,-0.21214990664744948],[126,171,73,-0.24198286198936206],[126,171,74,-0.2553590851298123],[126,171,75,-0.23632645354011356],[126,171,76,-0.16806411738772922],[126,171,77,-0.11965676943052284],[126,171,78,-0.15038304870332214],[126,171,79,-0.22115426365287352],[126,172,64,-0.16991266344898218],[126,172,65,-0.22091561355219197],[126,172,66,-0.18780622527116353],[126,172,67,-0.11435332126339164],[126,172,68,-0.06753330862664662],[126,172,69,-0.0752679795930006],[126,172,70,-0.11462892411780369],[126,172,71,-0.17072128349834576],[126,172,72,-0.2100193437177687],[126,172,73,-0.23951293546196825],[126,172,74,-0.25257696342063],[126,172,75,-0.23409948705582795],[126,172,76,-0.16679224945372262],[126,172,77,-0.11864501687743277],[126,172,78,-0.14874379645536856],[126,172,79,-0.21890350879601672],[126,173,64,-0.168168037320937],[126,173,65,-0.21890088116678819],[126,173,66,-0.1865122634386416],[126,173,67,-0.11349180758665317],[126,173,68,-0.0669033585636103],[126,173,69,-0.07463208503123406],[126,173,70,-0.11329434197577011],[126,173,71,-0.16878446049842344],[126,173,72,-0.20785100676274226],[126,173,73,-0.23699501898357778],[126,173,74,-0.2497454433912506],[126,173,75,-0.2318239249443566],[126,173,76,-0.16548018760232408],[126,173,77,-0.11760187771362066],[126,173,78,-0.14707457747280825],[126,173,79,-0.21660659179206243],[126,174,64,-0.1663944043660727],[126,174,65,-0.21684182374383337],[126,174,66,-0.18517445202409397],[126,174,67,-0.11260223176612463],[126,174,68,-0.06625499729118646],[126,174,69,-0.07396951364335297],[126,174,70,-0.11192741793136338],[126,174,71,-0.16681484499951976],[126,174,72,-0.20564664441313105],[126,174,73,-0.23443146538740167],[126,174,74,-0.24686744544985173],[126,174,75,-0.22950220238455823],[126,174,76,-0.16412947513417173],[126,174,77,-0.11652865156507995],[126,174,78,-0.14537711194388908],[126,174,79,-0.21426593580771133],[126,175,64,-0.16459352149307568],[126,175,65,-0.21474069392723408],[126,175,66,-0.18379448378957902],[126,175,67,-0.11168572142382861],[126,175,68,-0.06558894886827253],[126,175,69,-0.07328109331130277],[126,175,70,-0.11052969660203761],[126,175,71,-0.16481421345118505],[126,175,72,-0.2034080255526639],[126,175,73,-0.2318246594112111],[126,175,74,-0.24394591507161273],[126,175,75,-0.22713678748463184],[126,175,76,-0.16274169570978106],[126,175,77,-0.11542667013165497],[126,175,78,-0.14365313425582116],[126,175,79,-0.21188398920362947],[126,176,64,-0.16276715637026562],[126,176,65,-0.21259977446432518],[126,176,66,-0.18237409584809589],[126,176,67,-0.11074343420903632],[126,176,68,-0.06490595875101528],[126,176,69,-0.07256768769420135],[126,176,70,-0.10910275298673701],[126,176,71,-0.16278435832611307],[126,176,72,-0.20113693650285022],[126,176,73,-0.22917701354834835],[126,176,74,-0.24098381748573494],[126,176,75,-0.22473017689779723],[126,176,76,-0.16131847047791942],[126,176,77,-0.11429729455664783],[126,176,78,-0.1419043898435278],[126,176,79,-0.20946322107876564],[126,177,64,-0.16091708440059246],[126,177,65,-0.21042137418179865],[126,177,66,-0.18091506658873016],[126,177,67,-0.10977655565994282],[126,177,68,-0.06420679229662146],[126,177,69,-0.07183019429948129],[126,177,70,-0.10764818916556705],[126,177,71,-0.1607270849012797],[126,177,72,-0.19883517819542426],[126,177,73,-0.2264909638805366],[126,177,74,-0.23798413239580837],[126,177,75,-0.22228489143999758],[126,177,76,-0.15986145515428188],[126,177,77,-0.11314191275850043],[126,177,78,-0.14013263206207033],[126,177,79,-0.20700611683582493],[126,178,64,-0.1590450857285063],[126,178,65,-0.20820782396657656],[126,178,66,-0.1794192125558524],[126,178,67,-0.10878629703110584],[126,178,68,-0.06349223323089047],[126,178,69,-0.07106954247614213],[126,178,70,-0.10616763095687981],[126,178,71,-0.15864420803999282],[126,178,72,-0.19650456333829033],[126,178,73,-0.22376896590259243],[126,178,74,-0.23494984874655445],[126,178,75,-0.21980347172066303],[126,178,76,-0.15837233705867915],[126,178,77,-0.1119619367323299],[126,178,78,-0.13833961909021783],[126,178,79,-0.20451517377876094],[126,179,64,-0.15715294228565288],[126,179,65,-0.20596147276192953],[126,179,66,-0.177888385291371],[126,179,67,-0.10777389309306395],[126,179,68,-0.06276308208412985],[126,179,69,-0.07028669133691094],[126,179,70,-0.10466272454176836],[126,179,71,-0.15653754898256514],[126,179,72,-0.19414691358073305],[126,179,73,-0.22101349034908113],[126,179,74,-0.23188395954972202],[126,179,75,-0.21728847379747657],[126,179,76,-0.1568528321191084],[126,179,77,-0.11075879982921046],[126,179,78,-0.13652711087241726],[126,179,79,-0.201992896752883],[126,180,64,-0.1552424348822182],[126,180,65,-0.2036846835890817],[126,180,66,-0.17632446814920244],[126,180,67,-0.10674059991068677],[126,180,68,-0.062020154600270425],[126,180,69,-0.0694826276164012],[126,180,70,-0.10313513306607178],[126,180,71,-0.15440893215324558],[126,180,72,-0.19176405668363658],[126,180,73,-0.2182270190329251],[126,180,74,-0.22878945678165757],[126,180,75,-0.21474246486598772],[126,180,76,-0.15530468185124766],[126,180,77,-0.10953395402121403],[126,180,78,-0.13469686610629722],[126,180,79,-0.19944179383800106],[126,181,64,-0.15331534035048122],[126,181,65,-0.20137982960438336],[126,181,66,-0.1747293730912067],[126,181,67,-0.10568769260687434],[126,181,68,-0.061264280124053376],[126,181,69,-0.06865836347254382],[126,181,70,-0.10158653322999925],[126,181,71,-0.15226018199084762],[126,181,72,-0.18935782370028134],[126,181,73,-0.2154120407058095],[126,181,74,-0.22566932636469278],[126,181,75,-0.21216801899468932],[126,181,76,-0.15372965032194943],[126,181,77,-0.10828886716020697],[126,181,78,-0.13285063928251017],[126,181,79,-0.1968643721046205],[126,182,64,-0.15137342874690696],[126,182,65,-0.1990492902019676],[126,182,66,-0.17310503747391254],[126,182,67,-0.10461646311828025],[126,182,68,-0.0604962999712284],[126,182,69,-0.06781493423873286],[126,182,70,-0.10001861187543876],[126,182,71,-0.1500931198103034],[126,182,72,-0.18693004617314896],[126,182,73,-0.21257104695006993],[126,182,74,-0.22252654324411464],[126,182,75,-0.20956771291597542],[126,182,76,-0.15212952110538577],[126,182,77,-0.10702502023843409],[126,182,78,-0.13099017778349595],[126,182,79,-0.19426313344290258],[126,183,64,-0.14941846061890413],[126,183,65,-0.19669544717167167],[126,183,66,-0.17145342083546536],[126,183,67,-0.10352821794983944],[126,183,68,-0.059717065786813274],[126,183,69,-0.06695339613435052],[126,183,70,-0.09843306258104079],[126,183,71,-0.1479095607022227],[126,183,72,-0.18448255335206734],[126,183,73,-0.20970652811162888],[126,183,74,-0.21936406657213584],[126,183,75,-0.20694412188321348],[126,183,76,-0.15050609424059616],[126,183,77,-0.10574390465896363],[126,183,78,-0.12911721904750936],[126,183,79,-0.1916405704737746],[126,184,64,-0.1474521843420679],[126,184,65,-0.19432068092174715],[126,184,66,-0.16977650169222155],[126,184,67,-0.10242427593486833],[126,184,68,-0.058927437896464846],[126,184,69,-0.06607482394141811],[126,184,70,-0.09683158227502922],[126,184,71,-0.1457113104772448],[126,184,72,-0.182017169438802],[126,184,73,-0.20682096928327162],[126,184,74,-0.21618483500979022],[126,184,75,-0.20429981560384758],[126,184,76,-0.14886118319913827],[126,184,77,-0.10444701952397532],[126,184,78,-0.12723348780391708],[126,184,79,-0.18899916255112756],[126,185,64,-0.1454763335334473],[126,185,65,-0.19192736677565775],[126,185,66,-0.16807627435442818],[126,185,67,-0.10130596600752255],[126,185,68,-0.058128283656029324],[126,185,69,-0.06518030865521392],[126,185,70,-0.09521586787556167],[126,185,71,-0.1435001626617014],[126,185,72,-0.17953571086302078],[126,185,73,-0.2039168463473357],[126,185,74,-0.21299176215723165],[126,185,75,-0.20163735425818816],[126,185,76,-0.14719661187157168],[126,185,77,-0.10313586894884812],[126,185,78,-0.12534069338548057],[126,185,79,-0.18634137186365984],[126,186,64,-0.143492624546124],[126,186,65,-0.1895178713520343],[126,186,66,-0.16635474577045223],[126,186,67,-0.10017462499443681],[126,186,68,-0.05732047580440414],[126,186,69,-0.06427095511682743],[126,186,70,-0.09358761296836954],[126,186,71,-0.14127789555088058],[126,186,72,-0.17703998359438688],[126,186,73,-0.20099662208664537],[126,186,74,-0.20978773212245272],[126,186,75,-0.19895928461325108],[126,186,76,-0.1455142115814811],[126,186,77,-0.10181195940994395],[126,186,78,-0.12344052712305034],[126,186,79,-0.18366963964449293],[126,187,64,-0.1415027540500428],[126,187,65,-0.1870945490365492],[126,187,66,-0.16461393240895025],[126,187,67,-0.0990315954323131],[126,187,68,-0.05650489082478372],[126,187,69,-0.06334787963560819],[126,187,70,-0.0919485045311516],[126,187,71,-0.1390462693258138],[126,187,72,-0.1745317804952799],[126,187,73,-0.19806274237220367],[126,187,74,-0.20657559523789756],[126,187,75,-0.19626813624066483],[126,187,76,-0.14381581813568506],[126,187,77,-0.10047679713386705],[126,187,78,-0.12153465982774349],[126,187,79,-0.18098638249623267],[126,188,64,-0.13950839670370657],[126,188,65,-0.18465973855414602],[126,188,66,-0.1628558571882992],[126,188,67,-0.09787822341817445],[126,188,68,-0.05568240731933622],[126,188,69,-0.06241220760947888],[126,188,70,-0.09030021971397578],[126,188,71,-0.1368070232391771],[126,188,72,-0.17201287871838838],[126,188,73,-0.19511763243580782],[126,188,74,-0.20335816393388045],[126,188,75,-0.1935664178472742],[126,188,76,-0.1421032689191614],[126,188,77,-0.09913188553582548],[126,188,78,-0.11962473936530756],[126,188,79,-0.17829398883862477],[126,189,64,-0.13751120292107236],[126,189,65,-0.18221575964980463],[126,189,66,-0.1610825464625793],[126,189,67,-0.09671585649900304],[126,189,68,-0.054853904402371464],[126,189,69,-0.06146507115112223],[126,189,70,-0.08864442268473932],[126,189,71,-0.13456187287560967],[126,189,72,-0.16948503715323165],[126,189,73,-0.1921636932354862],[126,189,74,-0.20013820877723346],[126,189,75,-0.19085661372677515],[126,189,76,-0.14037840004318955],[126,189,77,-0.09777872271464336],[126,189,78,-0.11771238832708754],[126,189,79,-0.17559481548555003],[126,190,64,-0.1355127967375909],[126,190,65,-0.17976490988561517],[126,190,66,-0.1592960270732442],[126,190,67,-0.09554584160735363],[126,190,68,-0.05402026011694326],[126,190,69,-0.06050760672793856],[126,190,70,-0.08698276154837564],[126,190,71,-0.13231250749130272],[126,190,72,-0.16694999392533064],[126,190,73,-0.1892032979212089],[126,190,74,-0.19691845468296168],[126,190,75,-0.18814118034025917],[126,190,76,-0.13864304355503673],[126,190,77,-0.09641879901175728],[126,190,78,-0.11579920180160484],[126,190,79,-0.17289118435753667],[126,191,64,-0.13351477377899276],[126,191,65,-0.17730946156159008],[126,191,66,-0.15749832347549142],[126,191,67,-0.09436952304945354],[126,191,68,-0.05318234987976829],[126,191,69,-0.05954095282361369],[126,191,70,-0.08531686534819942],[126,191,71,-0.13006058743735824],[126,191,72,-0.1644094639514796],[126,191,73,-0.18623878840795383],[126,191,74,-0.19370157730610316],[126,191,75,-0.185422543033134],[126,191,76,-0.13689902471734927],[126,191,77,-0.09505359464132329],[126,191,78,-0.11388674525036693],[126,191,79,-0.170185379335437],[126,192,64,-0.13151869933610585],[126,192,65,-0.17485165876730083],[126,192,66,-0.15569145494824063],[126,192,67,-0.09318824055223313],[126,192,68,-0.052341044959289776],[126,192,69,-0.05856624762906064],[126,192,70,-0.08364834115745115],[126,192,71,-0.12780774167102596],[126,192,72,-0.1618651365543106],[126,192,73,-0.18327247206283329],[126,192,74,-0.1904901996204239],[126,192,75,-0.18270309289552994],[126,192,76,-0.1351481593653235],[126,192,77,-0.09368457739843312],[126,192,78,-0.11197655249122926],[126,192,79,-0.16747964326046214],[126,193,64,-0.12952610654858104],[126,193,65,-0.17239371457099864],[126,193,66,-0.15387743289642666],[126,193,67,-0.09200332737558381],[126,193,68,-0.0514972109915819],[126,193,69,-0.057584626770341416],[126,193,70,-0.08197877126869577],[126,193,71,-0.12555556535847542],[126,193,72,-0.15931867313897463],[126,193,73,-0.18030661851248753],[126,193,74,-0.1872868886898874],[126,193,75,-0.17998518377277983],[126,193,76,-0.1333922513494534],[126,193,77,-0.09231320045212742],[126,193,78,-0.1100701237921683],[126,193,79,-0.16477617508514586],[126,194,64,-0.12753849470007406],[126,194,65,-0.16993780835249483],[126,194,66,-0.15205825825412755],[126,194,67,-0.09081610849598772],[126,194,68,-0.05065170653864362],[126,194,69,-0.05659722108098825],[126,194,70,-0.08030971048830897],[126,194,71,-0.12330561757233201],[126,194,72,-0.15677170493449577],[126,194,73,-0.1773434565765848],[126,194,74,-0.18409415263830364],[126,194,75,-0.1772711294321982],[126,194,76,-0.13163309007152488],[126,194,77,-0.09094090022971722],[126,194,78,-0.10816892407799655],[126,194,79,-0.16207712717932174],[126,195,64,-0.12555732762702312],[126,195,65,-0.1674860832856571],[126,195,66,-0.15023591899688496],[126,195,67,-0.08962789886758],[126,195,68,-0.0498053816935732],[126,195,69,-0.05560515442602328],[126,195,70,-0.07864268354289411],[126,195,71,-0.12105941908675212],[126,195,72,-0.15422583080194452],[126,195,73,-0.17438517133267772],[126,195,74,-0.1809144378217896],[126,195,75,-0.17456320089182586],[126,195,76,-0.12987244812122833],[126,195,77,-0.08956909439860893],[126,195,78,-0.10627438125211643],[126,195,79,-0.15938460279459973],[126,196,64,-0.1235840328370994],[126,196,65,-0.16504064296809037],[126,196,66,-0.1484123861973515],[126,196,67,-0.0884400012496009],[126,196,68,-0.048959077378689715],[126,196,69,-0.05460954180184126],[126,196,70,-0.07697918205211957],[126,196,71,-0.11881844998203527],[126,196,72,-0.1516826155071955],[126,196,73,-0.1714339022359789],[126,196,74,-0.1777501271515772],[126,196,75,-0.17186362471567188],[126,196,76,-0.12811207945715214],[126,196,77,-0.08819918044080798],[126,196,78,-0.10438788583990202],[126,196,79,-0.15670065493274313],[126,197,64,-0.12162006961831125],[126,197,65,-0.16260343070609767],[126,197,66,-0.14658942585616275],[126,197,67,-0.08725364240009564],[126,197,68,-0.048113697749534],[126,197,69,-0.05361151129264393],[126,197,70,-0.07532059760560793],[126,197,71,-0.11658411679130878],[126,197,72,-0.14914363756129773],[126,197,73,-0.16849184839060088],[126,197,74,-0.174603646878118],[126,197,75,-0.169174672489515],[126,197,76,-0.12635376567694528],[126,197,77,-0.08683258850268245],[126,197,78,-0.10251092977281318],[126,197,79,-0.15402742936741862],[126,198,64,-0.11966698770267123],[126,198,65,-0.16017612145212634],[126,198,66,-0.14476842563796544],[126,198,67,-0.08606990766823323],[126,198,68,-0.04727026491966633],[126,198,69,-0.05261221500748522],[126,198,70,-0.07366816357324688],[126,198,71,-0.11435774147596353],[126,198,72,-0.14661055064391496],[126,198,73,-0.16556136209964725],[126,198,74,-0.17147755238354323],[126,198,75,-0.16649872865744794],[126,198,76,-0.12459934093454533],[126,198,77,-0.08547081254212655],[126,198,78,-0.10064522244045868],[126,198,79,-0.1513672877323928],[126,199,64,-0.11772630025906057],[126,199,65,-0.15776033107709672],[126,199,66,-0.14295071914080373],[126,199,67,-0.08488984208903459],[126,199,68,-0.04642977645093516],[126,199,69,-0.05161277580721075],[126,199,70,-0.07202306986157045],[126,199,71,-0.1121406330700631],[126,199,72,-0.1440850115387972],[126,199,73,-0.1626447537683148],[126,199,74,-0.16837432207670242],[126,199,75,-0.16383811294266054],[126,199,76,-0.12285058751959013],[126,199,77,-0.0841152954318275],[126,199,78,-0.09879243164675375],[126,199,79,-0.14872254216896658],[126,200,64,-0.11579946742337155],[126,200,65,-0.15535764159214735],[126,200,66,-0.1411376262276644],[126,200,67,-0.08371446337065969],[126,200,68,-0.04559318785797505],[126,200,69,-0.05061428038114629],[126,200,70,-0.07038647555170628],[126,200,71,-0.10993409212341063],[126,200,72,-0.14156866601481313],[126,200,73,-0.1597442652801298],[126,200,74,-0.16529633148277625],[126,200,75,-0.1611950584536491],[126,200,76,-0.12110922404202856],[126,200,77,-0.08276741604413573],[126,200,78,-0.09695415117181347],[126,200,79,-0.14609542097130412],[126,201,64,-0.11388789592716889],[126,201,65,-0.15296959956937195],[126,201,66,-0.13933045157221188],[126,201,67,-0.08254476147125714],[126,201,68,-0.04476141273488285],[126,201,69,-0.049617778544348325],[126,201,70,-0.06875950684381087],[126,201,71,-0.10773940680242479],[126,201,72,-0.1390631446931067],[126,201,73,-0.15686206813162812],[126,201,74,-0.16224585315043574],[126,201,75,-0.15857171180954366],[126,201,76,-0.1193769060389503],[126,201,77,-0.08142849014447459],[126,201,78,-0.09513190100130997],[126,201,79,-0.14348806783317997],[126,202,64,-0.11199293885924097],[126,202,65,-0.15059771468664518],[126,202,66,-0.13753048328234985],[126,202,67,-0.0813816982543203],[126,202,68,-0.04393532297119427],[126,202,69,-0.048624282622546706],[126,202,70,-0.06714325512370649],[126,202,71,-0.1055578491358621],[126,202,72,-0.13657005907080502],[126,202,73,-0.15400026176807807],[126,202,74,-0.15922505679022017],[126,202,75,-0.155970133454668],[126,202,76,-0.11765522669600831],[126,202,77,-0.08009977139041809],[126,202,78,-0.09332712771843339],[126,202,79,-0.1409025413175142],[126,203,64,-0.1101157863032624],[126,203,65,-0.1482433090726241],[126,203,66,-0.13573885285250584],[126,203,67,-0.08022612403857753],[126,203,68,-0.043115703727403885],[126,203,69,-0.04763471617141004],[126,203,70,-0.06553870441249442],[126,203,71,-0.10339055840058557],[126,203,72,-0.13409084934073964],[126,203,73,-0.15116070287581856],[126,203,74,-0.15623583269830513],[126,203,75,-0.15339212250388623],[126,203,76,-0.11594558347669068],[126,203,77,-0.07878236029395089],[126,203,78,-0.09154109691793126],[126,203,79,-0.1383406495389111],[126,204,64,-0.10825676195450014],[126,204,65,-0.14590655257767693],[126,204,66,-0.13395563423411846],[126,204,67,-0.07907823904567701],[126,204,68,-0.0423029628043301],[126,204,69,-0.04664958869946892],[126,204,70,-0.06394627980518512],[126,204,71,-0.10123781427058307],[126,204,72,-0.13162582663376887],[126,204,73,-0.14834391605261704],[126,204,74,-0.1532786551996508],[126,204,75,-0.15083808368872495],[126,204,76,-0.11424830957255104],[126,204,77,-0.07747661044235168],[126,204,78,-0.08977419894232892],[126,204,79,-0.13580288758381776],[126,205,64,-0.1064158356113721],[126,205,65,-0.1435871568159246],[126,205,66,-0.13218047765812296],[126,205,67,-0.07793797645921113],[126,205,68,-0.041497345764063574],[126,205,69,-0.04566923843124927],[126,205,70,-0.06236619194550434],[126,205,71,-0.09909957450910925],[126,205,72,-0.12917486875864653],[126,205,73,-0.14554989075849242],[126,205,74,-0.15035341836158772],[126,205,75,-0.1483078449725569],[126,205,76,-0.11256329079609123],[126,205,77,-0.07618255750659562],[126,205,78,-0.08802645998035111],[126,205,79,-0.13328921132246221],[126,206,64,-0.10459301982837312],[126,206,65,-0.14128491562495357],[126,206,66,-0.13041311007754938],[126,206,67,-0.0768053033010811],[126,206,68,-0.040699101421190896],[126,206,69,-0.044694017696354296],[126,206,70,-0.06079869543236919],[126,206,71,-0.0969758849095925],[126,206,72,-0.12673795728264],[126,206,73,-0.1427786961935543],[126,206,74,-0.14746007997826174],[126,206,75,-0.14580129503676065],[126,206,76,-0.11089045180684133],[126,206,77,-0.07490025438893866],[126,206,78,-0.08629793607296259],[126,206,79,-0.13079963695450128],[126,207,64,-0.10278836793890934],[126,207,65,-0.13899970207172369],[126,207,66,-0.1286533333948771],[126,207,67,-0.07568021956344771],[126,207,68,-0.03990848143133344],[126,207,69,-0.04372429194759389],[126,207,70,-0.059244085700661246],[126,207,71,-0.0948668744127901],[126,207,72,-0.1243151727148071],[126,207,73,-0.14003047774486582],[126,207,74,-0.14459865869683008],[126,207,75,-0.14331838163719848],[126,207,76,-0.1092297560694091],[126,207,77,-0.07362977127283392],[126,207,78,-0.08458871179898964],[126,207,79,-0.12833423862304127],[126,208,64,-0.10100197006710414],[126,208,65,-0.136731462693575],[126,208,66,-0.1269010200728312],[126,208,67,-0.07456275577321099],[126,208,68,-0.03912573901496092],[126,208,69,-0.04276043779021656],[126,208,70,-0.0577026946056014],[126,208,71,-0.09277274817141007],[126,208,72,-0.12190668694722767],[126,208,73,-0.13730545027803914],[126,208,74,-0.1417692278766103],[126,208,75,-0.14085910666607088],[126,208,76,-0.10758120323860317],[126,208,77,-0.07237119390620066],[126,208,78,-0.08289889694714264],[126,208,79,-0.12589314295112985],[126,209,64,-0.09923394927358627],[126,209,65,-0.13448021189754458],[126,209,66,-0.12515610883652037],[126,209,67,-0.07345297061694507],[126,209,68,-0.038351127712729235],[126,209,69,-0.04180284102801905],[126,209,70,-0.056174886111223746],[126,209,71,-0.09069378078428718],[126,209,72,-0.11951275586429665],[126,209,73,-0.13460389159901553],[126,209,74,-0.138971909658438],[126,209,75,-0.1384235213623686],[126,209,76,-0.10594482659796393],[126,209,77,-0.07112462192698701],[126,209,78,-0.08122862330152752],[126,209,79,-0.12347652374058521],[126,210,64,-0.09748445783732418],[126,210,65,-0.1322460265167955],[126,210,66,-0.12341860046508285],[126,210,67,-0.0723509486275467],[126,210,68,-0.0375849001777187],[126,210,69,-0.040851894733260376],[126,210,70,-0.054661052087091565],[126,210,71,-0.08863030970013142],[126,210,72,-0.11713371212002276],[126,210,73,-0.13192613608995107],[126,210,74,-0.13620686924749018],[126,210,75,-0.13601172167362857],[126,210,76,-0.10432069055479945],[126,210,77,-0.06989016723529434],[126,210,78,-0.07957804154439801],[126,210,79,-0.12108459683697809],[126,211,64,-0.09575367367559778],[126,211,65,-0.1300290405237339],[126,211,66,-0.12168855367182785],[126,211,67,-0.07125679793398225],[126,211,68,-0.03682730700953551],[126,211,69,-0.03990799734712458],[126,211,70,-0.053161608217851784],[126,211,71,-0.08658272879223101],[126,211,72,-0.11476995808476667],[126,211,73,-0.1292725685236174],[126,211,74,-0.13347430941274738],[126,211,75,-0.13362384377162548],[126,211,76,-0.10270888819459142],[126,211,77,-0.06866795241584595],[126,211,78,-0.07794731827959656],[126,211,79,-0.1187176151646224],[126,212,64,-0.09404179690405183],[126,212,65,-0.12782943989993029],[126,212,66,-0.11996608107249743],[126,212,67,-0.07017064807552438],[126,212,68,-0.036078595634707826],[126,212,69,-0.03897155081712358],[126,212,70,-0.05167699003038872],[126,212,71,-0.08455148210646932],[126,212,72,-0.11242195896397905],[126,212,73,-0.12664361806096228],[126,212,74,-0.1307744652060052],[126,212,75,-0.13126005972443142],[126,212,76,-0.10110953889734303],[126,212,77,-0.06745810921405299],[126,212,78,-0.07633663317972758],[126,212,79,-0.11637586393530479],[126,213,64,-0.0923490465386449],[126,213,65,-0.1256474576634541],[126,213,66,-0.11825134524187393],[126,213,67,-0.06909264788189076],[126,213,68,-0.03533900923735178],[126,213,69,-0.03804295877754685],[126,213,70,-0.05020764904352156],[126,213,71,-0.08253705778591532],[126,213,72,-0.11009023609251212],[126,213,73,-0.12403975243666873],[126,213,74,-0.1281075989030827],[126,213,75,-0.12892057332708268],[126,213,76,-0.09952278601818235],[126,213,77,-0.06626077706845618],[126,213,78,-0.07474617625971293],[126,213,79,-0.1140596560343289],[126,214,64,-0.09067565734117881],[126,214,65,-0.1234833690546697],[126,214,66,-0.11654455485951629],[126,214,67,-0.06802296342073792],[126,214,68,-0.03460878574367435],[126,214,69,-0.0371226247787929],[126,214,70,-0.0487540490453039],[126,214,71,-0.08053998217600192],[126,214,72,-0.10777536040894901],[126,214,73,-0.12146147233769189],[126,214,74,-0.1254739951696105],[126,214,75,-0.12660561609292204],[126,214,76,-0.09794879463434703],[126,214,77,-0.06507610170192969],[126,214,78,-0.07317614527904086],[126,214,79,-0.11176932758730075],[126,215,64,-0.08902187680983413],[126,215,65,-0.12133748688178972],[126,215,66,-0.11484596094580504],[126,215,67,-0.06696177601388284],[126,215,68,-0.033888156863381105],[126,215,69,-0.03621095057102796],[126,215,70,-0.04731666250290382],[126,215,71,-0.07856081411478062],[126,215,72,-0.10547794611497918],[126,215,73,-0.11890930597968087],[126,215,74,-0.12287395645336231],[126,215,75,-0.12431544340738683],[126,215,76,-0.09638774936040298],[126,215,77,-0.06390423377358102],[126,215,78,-0.07162674327457527],[126,215,79,-0.10950523371078766],[126,216,64,-0.08738796231589487],[126,216,65,-0.11921015702769922],[126,216,66,-0.11315585318983422],[126,216,67,-0.06590928032357089],[126,216,68,-0.03317734719062704],[126,216,69,-0.03530833444727963],[126,216,70,-0.045895967109975955],[126,216,71,-0.07660013941314969],[126,216,72,-0.1031986445253398],[126,216,73,-0.11638380388610119],[126,216,74,-0.12030779860469112],[126,216,75,-0.12205033084572973],[126,216,76,-0.09483985223330713],[126,216,77,-0.06274532759286473],[126,216,78,-0.0700981762253607],[126,216,79,-0.10726774444965394],[126,217,64,-0.08577417838761742],[126,217,65,-0.11710175411973732],[126,217,66,-0.11147455637103641],[126,217,67,-0.06486568251007555],[126,217,68,-0.0324765733667601],[126,217,69,-0.034415169650741755],[126,217,70,-0.0444924424762894],[126,217,71,-0.07465856553021674],[126,217,72,-0.10093813811420528],[126,217,73,-0.11388553387472979],[126,217,74,-0.11777584672623502],[126,217,75,-0.1198105706559214],[126,217,76,-0.0933053206687801],[126,217,77,-0.0615995398971344],[126,217,78,-0.06859065085051612],[126,217,79,-0.10505724090360997],[126,218,64,-0.08418079414184264],[126,218,65,-0.11501267736412014],[126,218,66,-0.10980242687658816],[126,218,67,-0.06383119846176069],[126,218,68,-0.03178604330663464],[126,218,69,-0.03353184285063482],[126,218,70,-0.04310656696409629],[126,218,71,-0.07273671644901408],[126,218,72,-0.09869713476402903],[126,218,73,-0.1114150762558671],[126,218,74,-0.11527843125252077],[126,218,75,-0.11759646840759361],[126,218,76,-0.09178438549016119],[126,218,77,-0.06046702869342571],[126,218,78,-0.0671043725408084],[126,218,79,-0.1028741115450355],[126,219,64,-0.08260808086368257],[126,219,65,-0.11294334654672929],[126,219,66,-0.10813984931686173],[126,219,67,-0.06280605209866573],[126,219,68,-0.03110595548991193],[126,219,69,-0.032658732690621584],[126,219,70,-0.0417388146754757],[126,219,71,-0.0708352277578117],[126,219,72,-0.09647636222293722],[126,219,73,-0.1089730192463344],[126,219,74,-0.11281588425964945],[126,219,75,-0.115408339807605],[126,219,76,-0.09027728903077392],[126,219,77,-0.05934795216499512],[126,219,78,-0.06563954342413607],[126,219,79,-0.10071874872978226],[126,220,64,-0.08105630973423346],[126,220,65,-0.11089419820186806],[126,220,66,-0.10648723324125435],[126,220,67,-0.06179047375050195],[126,220,68,-0.03043649831832325],[126,220,69,-0.031796208413321876],[126,220,70,-0.040389652594474884],[126,220,71,-0.06895474194207891],[126,220,72,-0.09427656277663943],[126,220,73,-0.10655995460286916],[126,220,74,-0.11038853600467612],[126,220,75,-0.11324650768241777],[126,220,76,-0.0887842833105907],[126,220,77,-0.05824246764279319],[126,220,78,-0.0641963605646941],[126,220,79,-0.09859154540217213],[126,221,64,-0.07952574970597802],[126,221,65,-0.10886568195051687],[126,221,66,-0.10484500995682897],[126,221,67,-0.0607846986098558],[126,221,68,-0.029777849539550625],[126,221,69,-0.030944628564127618],[126,221,70,-0.039059537887546084],[126,221,71,-0.06709590389198059],[126,221,72,-0.09209848814069654],[126,221,73,-0.10417647347814876],[126,221,74,-0.10799671169383106],[126,221,75,-0.11111129912717778],[126,221,76,-0.08730562828784029],[126,221,77,-0.0571507306418113],[126,221,78,-0.06277501429522787],[126,221,79,-0.0964928919949826],[126,222,64,-0.07801666552514532],[126,222,65,-0.10685825700939405],[126,222,66,-0.10321362945217007],[126,222,67,-0.0597889652611994],[126,222,68,-0.029130175737964822],[126,222,69,-0.030104339777045595],[126,222,70,-0.03774891536526552],[126,222,71,-0.06525935662989578],[126,222,72,-0.08994289457862933],[126,222,73,-0.1018231625021141],[126,222,74,-0.10564072847813752],[126,222,75,-0.10900304282098726],[126,222,76,-0.08584159018598672],[126,222,77,-0.05607289396194727],[126,222,78,-0.06137568668134594],[126,222,79,-0.09442317352469626],[126,223,64,-0.07652931589994047],[126,223,65,-0.10487238887191115],[126,223,66,-0.10159355742881349],[126,223,67,-0.058803514286143915],[126,223,68,-0.02849363189211598],[126,223,69,-0.029275675644883627],[126,223,70,-0.036458215107852535],[126,223,71,-0.0634457372620402],[126,223,72,-0.087810538250972],[126,223,73,-0.09950060009073215],[126,223,74,-0.10332089267444387],[126,223,75,-0.1069220665074991],[126,223,76,-0.08439243989632973],[126,223,77,-0.05500910685278481],[126,223,78,-0.05999855011646565],[126,223,79,-0.09238276688178289],[126,224,64,-0.07506395181324009],[126,224,65,-0.10290854616188655],[126,224,66,-0.09998527244257101],[126,224,67,-0.05782858694524355],[126,224,68,-0.02786836099857817],[126,224,69,-0.028458955675715027],[126,224,70,-0.035187850256534835],[126,224,71,-0.06165567315782026],[126,224,72,-0.08570217079993875],[126,224,73,-0.097209352983799],[126,224,74,-0.10103749720939127],[126,224,75,-0.10486869463964488],[126,224,76,-0.0829584514563477],[126,224,77,-0.05395951424150493],[126,224,78,-0.058643766045627196],[126,224,79,-0.0903720383153256],[126,225,64,-0.0736208149779569],[126,225,65,-0.10096719766055091],[126,225,66,-0.09838926315690821],[126,225,67,-0.05686442393643907],[126,225,68,-0.027254493761390466],[126,225,69,-0.027654484337084194],[126,225,70,-0.033938214972211014],[126,225,71,-0.05988977835993572],[126,225,72,-0.08361853517377522],[126,225,73,-0.09494997301273202],[126,225,74,-0.09879081928325642],[126,225,75,-0.10284324618691229],[126,225,76,-0.08153990060371566],[126,225,77,-0.05292425602291012],[126,225,78,-0.05731148381601582],[126,225,79,-0.08839134111076007],[126,226,64,-0.07220013643292503],[126,226,65,-0.09904880950705253],[126,226,66,-0.09680602571037879],[126,226,67,-0.05591126423005023],[126,226,68,-0.026652148346041855],[126,226,69,-0.026862550189009092],[126,226,70,-0.03270968256232448],[126,226,71,-0.058148650227649874],[126,226,72,-0.08156036169426255],[126,226,73,-0.09272299409868143],[126,226,74,-0.09658111825009112],[126,226,75,-0.10084603260323236],[126,226,76,-0.08013706340575831],[126,226,77,-0.05190346641034317],[126,226,78,-0.056001839651666135],[126,226,79,-0.0864410134589706],[126,227,64,-0.07080213527686377],[126,227,65,-0.0971538425723702],[126,227,66,-0.09523606119997716],[126,227,67,-0.05496934398008844],[126,227,68,-0.02606143019670829],[126,227,69,-0.026083425106451633],[126,227,70,-0.03150260377631011],[126,227,71,-0.056432866315010696],[126,227,72,-0.07952836437021117],[126,227,73,-0.09052892948068655],[126,227,74,-0.09440863371011175],[126,227,75,-0.09887735595324705],[126,227,76,-0.07875021496401871],[126,227,77,-0.05089727334618349],[126,227,78,-0.054714955749559355],[126,227,79,-0.08452137651455813],[126,228,64,-0.06942701753760364],[126,228,65,-0.09528275000613629],[126,228,66,-0.09367987328201922],[126,228,67,-0.05403889551143571],[126,228,68,-0.025482431915150063],[126,228,69,-0.025317363591484295],[126,228,70,-0.030317305269364218],[126,228,71,-0.054742981485075615],[126,228,72,-0.07752323745902757],[126,228,73,-0.0883682691729082],[126,228,74,-0.09227358380975864],[126,228,75,-0.09693750719434925],[126,228,76,-0.07737962819342943],[126,228,77,-0.049905797970398035],[126,228,78,-0.05345093949395537],[126,228,79,-0.08263273264053943],[126,229,64,-0.06807497517344852],[126,229,65,-0.0934359749554971],[126,229,66,-0.09213796589192211],[126,229,67,-0.053120146382259883],[126,229,68,-0.024915233199442822],[126,229,69,-0.024564602174986135],[126,229,70,-0.02915408823370754],[126,229,71,-0.05307952526046946],[126,229,72,-0.07554565227769632],[126,229,73,-0.0862414776493226],[126,229,74,-0.09017616374437992],[126,229,75,-0.09502676461157039],[126,229,76,-0.07602557267544655],[126,229,77,-0.04892915414550366],[126,229,78,-0.05220988278551983],[126,229,79,-0.08077536383626867],[126,230,64,-0.06674618520328893],[126,230,65,-0.09161394845479635],[126,230,66,-0.09061084108404834],[126,230,67,-0.05221331852089688],[126,230,68,-0.024359900840531412],[126,230,69,-0.02382535890734239],[126,230,70,-0.028013227195950702],[126,230,71,-0.05144299940988448],[126,230,72,-0.07359625426377445],[126,230,73,-0.08414899175364071],[126,230,74,-0.08811654445808904],[126,230,75,-0.09314539240213966],[126,230,76,-0.07468831358443773],[126,230,77,-0.04796744803623593],[126,230,78,-0.05099186148159437],[126,230,79,-0.07894953034496577],[126,231,64,-0.06544080896175503],[126,231,65,-0.08981708748443289],[126,231,66,-0.08909899699245534],[126,231,67,-0.05131862743621566],[126,231,68,-0.023816488774363754],[126,231,69,-0.023099832937220732],[126,231,70,-0.026894968978579646],[126,231,71,-0.04983387576935295],[126,231,72,-0.07167566028617355],[126,231,73,-0.08209121883154431],[126,231,74,-0.08609487153488919],[126,231,75,-0.09129363940619593],[126,231,76,-0.07336811068644045],[126,231,77,-0.047020777742066165],[126,231,78,-0.04979693494365449],[126,231,79,-0.0771554694367308],[126,232,64,-0.06415899147544935],[126,232,65,-0.08804579319686398],[126,232,66,-0.08760292591312564],[126,232,67,-0.05043628150032127],[126,232,68,-0.0232850381871855],[126,232,69,-0.022388204177128928],[126,232,70,-0.025799531822993885],[126,232,71,-0.048252594296343834],[126,232,72,-0.06978445620469508],[126,232,73,-0.08006853508169327],[126,232,74,-0.08411126427477517],[126,232,75,-0.0894717379798851],[126,232,76,-0.07206521740932231],[126,232,77,-0.04608923298065299],[126,232,78,-0.04862514568780824],[126,232,79,-0.07539339436253481],[126,233,64,-0.06290086095608464],[126,233,65,-0.08630044930736917],[126,233,66,-0.08612311250798005],[126,233,67,-0.04956648130232092],[126,233,68,-0.022765577671457538],[126,233,69,-0.021690633054154678],[126,233,70,-0.024727104671030096],[126,233,71,-0.046699561354023984],[126,233,72,-0.06792319467651918],[126,233,73,-0.07808128412138636],[126,233,74,-0.08216581494820292],[126,233,75,-0.08767990300685326],[126,233,76,-0.07077987998329903],[126,233,77,-0.04517289482027357],[126,233,78,-0.047476519134018735],[126,233,79,-0.0736634934743042],[126,234,64,-0.0616665284061042],[126,234,65,-0.0845814206467744],[126,234,66,-0.08466003213064713],[126,234,67,-0.048709419071689776],[126,234,68,-0.022258123429689858],[126,234,69,-0.021007260343929766],[126,234,70,-0.02367784660133707],[126,234,71,-0.04517514822223818],[126,234,72,-0.0660923932070115],[126,234,73,-0.07612977576213083],[126,234,74,-0.08025858822195998],[126,234,75,-0.08591833104388188],[126,234,76,-0.06951233665063641],[126,234,77,-0.044271835459195046],[126,234,78,-0.04635106344953203],[126,234,79,-0.07196592950581703],[126,235,64,-0.06045608733216718],[126,235,65,-0.08288905187297],[126,235,66,-0.08321414927365628],[126,235,67,-0.04786527816962921],[126,235,68,-0.021762679523370614],[126,235,69,-0.020338207085545575],[126,235,70,-0.022651886416450995],[126,235,71,-0.04367968983102175],[126,235,72,-0.06429253244141893],[126,235,73,-0.07421428498980709],[126,235,74,-0.07838962074918514],[126,235,75,-0.0841871995962105],[126,235,76,-0.06826281694328723],[126,235,77,-0.04338611804992094],[126,235,78,-0.04524876948186079],[126,235,79,-0.07030083900880246],[126,236,64,-0.05926961356174347],[126,236,65,-0.08122366633773158],[126,236,66,-0.0817859161364466],[126,236,67,-0.0470342326467067],[126,236,68,-0.021279238164116386],[126,236,69,-0.019683574574907922],[126,236,70,-0.021649322375994533],[126,236,71,-0.042213483711803404],[126,236,72,-0.06252405469330118],[126,236,73,-0.07233505114362317],[126,236,74,-0.07655892091607236],[126,236,75,-0.08248666651793429],[126,236,76,-0.06703154102715247],[126,236,77,-0.04251579656624248],[126,236,78,-0.044169610776578924],[126,236,79,-0.06866833193835263],[126,237,64,-0.05810716515788339],[126,237,65,-0.07958556510497487],[126,237,66,-0.08037577131324694],[126,237,67,-0.046216446864904344],[126,237,68,-0.020807780044057443],[126,237,69,-0.019043444433707302],[126,237,70,-0.020670222070917385],[126,237,71,-0.04077678916072184],[126,237,72,-0.06078736270475352],[126,237,73,-0.07049227728750675],[126,237,74,-0.07476646873754074],[126,237,75,-0.08081686953266946],[126,237,76,-0.065818719111562],[126,237,77,-0.04166091571099136],[126,237,78,-0.0431135436750703],[126,237,79,-0.06706849138145601],[126,238,64,-0.056968782427106436],[126,238,65,-0.07797502611625443],[126,238,66,-0.07898413859957847],[126,238,67,-0.04541207518209058],[126,238,68,-0.020348274702426953],[126,238,69,-0.018417878750948573],[126,238,70,-0.01971462243329335],[126,238,71,-0.039369826607845756],[126,238,72,-0.05908281863276971],[126,238,73,-0.06868612976711967],[126,238,74,-0.07301221589398037],[126,238,75,-0.07917792586953627],[126,238,76,-0.06462455092249257],[126,238,77,-0.040821510862380686],[126,238,78,-0.04208050748729958],[126,238,79,-0.06550137342221654],[126,239,64,-0.05585448801528674],[126,239,65,-0.07639230349904094],[126,239,66,-0.07761142591586512],[126,239,67,-0.04462126169684903],[126,239,68,-0.01990068092531855],[126,239,69,-0.017806920293794756],[126,239,70,-0.01878252987583582],[126,239,71,-0.03799277718551197],[126,239,72,-0.057410743255449516],[126,239,73,-0.06691673794528744],[126,239,74,-0.071296085901075],[126,239,75,-0.07756993200942114],[126,239,76,-0.06344922523800992],[126,239,77,-0.03999760805685867],[126,239,78,-0.0410704247346636],[126,239,79,-0.06396700713714461],[126,240,64,-0.05476428708631296],[126,240,65,-0.07483762701299965],[126,240,66,-0.0762580243463231],[126,240,67,-0.04384414005148063],[126,240,68,-0.019464947175533282],[126,240,69,-0.017210592784247986],[126,240,70,-0.017873920554902806],[126,240,71,-0.036645782488381115],[126,240,72,-0.05577141539106907],[126,240,73,-0.06518419410820427],[126,240,74,-0.06961797440456759],[126,240,75,-0.07599296353635358],[126,240,76,-0.06229291948434356],[126,240,77,-0.03918922400639588],[126,240,78,-0.040083201457941975],[126,240,79,-0.06246539471370994],[126,241,64,-0.0536981675782473],[126,241,65,-0.07331120162923213],[126,241,66,-0.0749243072910103],[126,241,67,-0.04308083329089863],[126,241,68,-0.019041012049437072],[126,241,69,-0.016628901238027627],[126,241,70,-0.01698874075047697],[126,241,71,-0.03532894451731847],[126,241,72,-0.054165071522462395],[126,241,73,-0.06348855353443769],[126,241,74,-0.06797774959176571],[126,241,75,-0.0744470750887485],[126,241,76,-0.06115579939092446],[126,241,77,-0.03839636614812704],[126,241,78,-0.03911872758534919],[126,241,79,-0.06099651168519033],[126,242,64,-0.052656100531718694],[126,242,65,-0.07181320723723415],[126,242,66,-0.07361062972868909],[126,242,67,-0.04233145377510691],[126,242,68,-0.018628804757807024],[126,242,69,-0.016061832361881346],[126,242,70,-0.016126907356340772],[126,242,71,-0.03404232579873133],[126,242,72,-0.05259190561861297],[126,242,73,-0.061829834718472275],[126,242,74,-0.06637525271158848],[126,242,75,-0.07293230040525103],[126,242,76,-0.06003801870272784],[126,242,77,-0.037619032724355544],[126,242,78,-0.03817687735576749],[126,242,79,-0.0595603072747874],[126,243,64,-0.0516380404852542],[126,243,65,-0.07034379847408885],[126,243,66,-0.07231732758786487],[126,243,67,-0.041596103142849714],[126,243,68,-0.018228245627644815],[126,243,69,-0.015509355005416633],[126,243,70,-0.015288308473426982],[126,243,71,-0.03278594967056822],[126,243,72,-0.05105206914485122],[126,243,73,-0.06020801974024615],[126,243,74,-0.06481029869492218],[126,243,75,-0.07144865245984748],[126,243,76,-0.05893971894816299],[126,243,77,-0.03685721289091399],[126,243,78,-0.03725750979224026],[126,243,79,-0.0581567048418693],[126,244,64,-0.05064392593227049],[126,244,65,-0.06890310467022473],[126,244,66,-0.07104471722312063],[126,244,67,-0.04087487232397624],[126,244,68,-0.017839246621991926],[126,244,69,-0.014971420663443338],[126,244,70,-0.01447280409913159],[126,244,71,-0.03155980072580763],[126,244,72,-0.04954567125259671],[126,244,73,-0.05862305477191658],[126,244,74,-0.06328267686709563],[126,244,75,-0.06999612368089482],[126,244,76,-0.057861029260721335],[126,244,77,-0.036110886851920924],[126,244,78,-0.03636046922087384],[126,244,79,-0.0567856024231568],[126,245,64,-0.04967367983452735],[126,245,65,-0.06749122990594371],[126,245,66,-0.0697930949936788],[126,245,67,-0.04016784159805319],[126,245,68,-0.017461711874873376],[126,245,69,-0.014447964024766653],[126,245,70,-0.01368022690524876],[126,245,71,-0.030363825403970205],[126,245,72,-0.04807277913921754],[126,245,73,-0.05707485071294072],[126,245,74,-0.06179215174437837],[126,245,75,-0.06857468624875822],[126,245,76,-0.056802066252590974],[126,245,77,-0.035380026019056175],[126,245,78,-0.03548558583041661],[126,245,79,-0.05544687336169763],[126,246,64,-0.04872721018686343],[126,246,65,-0.06610825317275495],[126,246,66,-0.0685627369408645],[126,246,67,-0.03947508069669028],[126,246,68,-0.017095538238540233],[126,246,69,-0.013938903563292089],[126,246,70,-0.012910383097061932],[126,246,71,-0.029197932720908475],[126,246,72,-0.046633418568218746],[126,246,73,-0.05556328394440314],[126,246,74,-0.060338463906472434],[126,246,75,-0.06718429246672672],[126,246,76,-0.05576293393836053],[126,246,77,-0.03466459319347273],[126,246,78,-0.034632676267832334],[126,246,79,-0.054140367016446464],[126,247,64,-0.04780441062815452],[126,247,65,-0.06475422863347857],[126,247,66,-0.06735389856099273],[126,247,67,-0.03879664894705961],[126,247,68,-0.01674061584029836],[126,247,69,-0.0134441421672958],[126,247,70,-0.01216305334606929],[126,247,71,-0.028061995126934917],[126,247,72,-0.04522757453970621],[126,247,73,-0.05408819719345388],[126,247,74,-0.05892133093712034],[126,247,75,-0.06582487519995309],[126,247,76,-0.05474372370694891],[126,247,77,-0.033964542768559335],[126,247,78,-0.03380154426534331],[126,247,79,-0.05286590954535696],[126,248,64,-0.046905161093501374],[126,248,65,-0.06342918597497431],[126,248,66,-0.06616681466999005],[126,248,67,-0.038132595454050316],[126,248,68,-0.01639682864628374],[126,248,69,-0.012963567802686341],[126,248,70,-0.011437993788779419],[126,248,71,-0.026955849483181388],[126,248,72,-0.04385519210083087],[126,248,73,-0.05264940049865701],[126,248,74,-0.05754044842508084],[126,248,75,-0.06449634837718721],[126,248,76,-0.053744514339829505],[126,248,77,-0.033279820951780587],[126,248,78,-0.03299198129451055],[126,248,79,-0.05162330475493612],[126,249,64,-0.046029328502808886],[126,249,65,-0.06213313084733991],[126,249,66,-0.06500169935594655],[126,249,67,-0.037482959318539184],[126,249,68,-0.016064055029689963],[126,249,69,-0.012497054206134273],[126,249,70,-0.010734937084057877],[126,249,71,-0.025879298146023903],[126,249,72,-0.042516177285784024],[126,249,73,-0.0512466722670841],[126,249,74,-0.056195491017939844],[126,249,75,-0.06319860755018335],[126,249,76,-0.05276537207363185],[126,249,77,-0.03261036600391443],[126,249,78,-0.03220376724309573],[126,249,79,-0.05041233500935003],[126,250,64,-0.04517676748102491],[126,250,65,-0.06086604538336793],[126,250,66,-0.06385874601562574],[126,250,67,-0.03684776988924112],[126,250,68,-0.015742168341040672],[126,250,69,-0.012044461603949045],[126,250,70,-0.01005359352151751],[126,250,71,-0.02483211014932523],[126,250,72,-0.04121039817476896],[126,250,73,-0.049879760413990566],[126,250,74,-0.054886113521392],[126,250,75,-0.06193153050571835],[126,250,76,-0.05180635070515449],[126,250,77,-0.0319561084940357],[126,250,78,-0.03143667111058009],[126,250,79,-0.0492327621922765],[126,251,64,-0.04434732110545102],[126,251,65,-0.05962788879205552],[126,251,66,-0.0627381274708446],[126,251,67,-0.03622704704562627],[126,251,68,-0.015431037478229733],[126,251,69,-0.011605637452650567],[126,251,70,-0.009393652173549396],[126,251,71,-0.023814022474279294],[126,251,72,-0.03993768606133153],[126,251,73,-0.048548383576006465],[126,251,74,-0.05361195203686392],[126,251,75,-0.060694977925259096],[126,251,76,-0.050867491736798304],[126,251,77,-0.0313169715686446],[126,251,78,-0.030690451718369947],[126,251,79,-0.04808432871484803],[126,252,64,-0.04354082167572587],[126,252,65,-0.05841859802001018],[126,252,66,-0.06163999616056215],[126,252,67,-0.035620801509444334],[126,252,68,-0.015130527454203244],[126,252,69,-0.011180417197270616],[126,252,70,-0.008754782083717293],[126,252,71,-0.022824741396708984],[126,252,72,-0.03869783671744239],[126,252,73,-0.04725223238889916],[126,252,74,-0.05237262513060451],[126,252,75,-0.059488794087453806],[126,252,76,-0.049948824560442605],[126,252,77,-0.030692871233424453],[126,252,78,-0.029964858430922524],[126,252,79,-0.046966758563230314],[126,253,64,-0.04275709150222423],[126,253,65,-0.05723808847462056],[126,253,66,-0.060564484404410285],[126,253,67,-0.03502903518240971],[126,253,68,-0.014840499960270403],[126,253,69,-0.010768625043494939],[126,253,70,-0.008136633484377431],[126,253,71,-0.02186394390176698],[126,253,72,-0.03749061174575474],[126,253,73,-0.04599097082109998],[126,253,74,-0.05116773502760971],[126,253,75,-0.05831280760871907],[126,253,76,-0.04905036667774228],[126,253,77,-0.030083716646137758],[126,253,78,-0.02925963188417208],[126,253,79,-0.04587975837954905],[126,254,64,-0.04199594370879393],[126,254,65,-0.05608625480293175],[126,254,66,-0.05951170473333864],[126,254,67,-0.03445174150764558],[126,254,68,-0.014560813923168943],[126,254,69,-0.010370074739862416],[126,254,70,-0.007538839036567017],[126,254,71,-0.020931279156145222],[126,254,72,-0.03631574000856347],[126,254,73,-0.04476423755437102],[126,254,74,-0.04999686882402203],[126,254,75,-0.057166832217327414],[126,254,76,-0.048172123954812046],[126,254,77,-0.0294894104192227],[126,254,78,-0.028574504717821036],[126,254,79,-0.0448230185700859],[126,255,64,-0.041257183045968544],[126,255,65,-0.054962971720284484],[126,255,66,-0.05848175028303148],[126,255,67,-0.03388890585256227],[126,255,68,-0.014291326054174568],[126,255,69,-0.009984570366380164],[126,255,70,-0.006961015085429828],[126,255,71,-0.020026370028114304],[126,255,72,-0.03517291912315182],[126,255,73,-0.04357164740321842],[126,255,74,-0.0488595997119475],[126,255,75,-0.05605066755656321],[126,255,76,-0.04731409090928033],[126,255,77,-0.028909848930731473],[126,255,78,-0.027909202308274844],[126,255,79,-0.04379621443492015],[126,256,64,-0.040540606710956245],[126,256,65,-0.053868094882862365],[126,256,66,-0.05747469524570042],[126,256,67,-0.033340505910876714],[126,256,68,-0.014031891388664376],[126,256,69,-0.009611907126032316],[126,256,70,-0.006402762924673905],[126,256,71,-0.01914881464594642],[126,256,72,-0.03406181701339179],[126,256,73,-0.042412792764886326],[126,256,74,-0.0477554882109103],[126,256,75,-0.054964100012636984],[126,256,76,-0.046476251027655464],[126,256,77,-0.02834492264226982],[126,256,78,-0.0272634434991563],[126,256,79,-0.042799007313399307],[126,257,64,-0.0398460051709116],[126,257,65,-0.052801461798427075],[126,257,66,-0.056490595375858633],[126,257,67,-0.03280651212154726],[126,257,68,-0.013782363814685812],[126,257,69,-0.009251872135800988],[126,257,70,-0.005863670063802392],[126,257,71,-0.018298187985542395],[126,257,72,-0.03298207350768802],[126,257,73,-0.04128724509202717],[126,257,74,-0.04668408340046644],[126,257,75,-0.05390690356320655],[126,257,76,-0.04565857711095129],[126,257,77,-0.027794516422654188],[126,257,78,-0.026636941326537808],[126,257,79,-0.041831045740083624],[126,258,64,-0.03917316298621554],[126,258,65,-0.05176289276968915],[126,258,66,-0.05552948854570736],[126,258,67,-0.03228688810248461],[126,258,68,-0.013542596589247394],[126,258,69,-0.008904245214000945],[126,258,70,-0.0053433114921675314],[126,258,71,-0.01747404347842612],[126,258,72,-0.03193330197365317],[126,258,73,-0.040194556380457915],[126,258,74,-0.045644924148824276],[126,258,75,-0.05287884064252701],[126,258,76,-0.04486103164652741],[126,258,77,-0.027258509876062754],[126,258,78,-0.026029403736232356],[126,258,79,-0.040891966606081284],[126,259,64,-0.038521859630670716],[126,259,65,-0.05075219186490142],[126,259,66,-0.05459139534577505],[126,259,67,-0.03178159109695276],[126,259,68,-0.013312442841165346],[126,259,69,-0.008568799660872796],[126,259,70,-0.004841250934173629],[126,259,71,-0.016675914631593344],[126,259,72,-0.030915090980188017],[126,259,73,-0.03913426066470113],[126,259,74,-0.04463754033261254],[126,259,75,-0.0518796630193935],[126,259,76,-0.044083567204080056],[126,259,77,-0.02673677767347901],[126,259,78,-0.025440534290655153],[126,259,79,-0.03998139632094108],[126,260,64,-0.037891870305728964],[126,260,65,-0.04976914791044559],[126,260,66,-0.05367631972649399],[126,260,67,-0.03129057243065084],[126,260,68,-0.013091756059438672],[126,260,69,-0.008245303029550979],[126,260,70,-0.004357042090261188],[126,260,71,-0.015903316651068897],[126,260,72,-0.02992700597797457],[126,260,73,-0.03810587551433552],[126,260,74,-0.043661454043248976],[126,260,75,-0.050909112684209674],[126,260,76,-0.04332612685372321],[126,260,77,-0.026229189886274314],[126,260,78,-0.02487003286296184],[126,260,79,-0.03909895197054559],[126,261,64,-0.03728296674608198],[126,261,65,-0.04881353550038267],[126,261,66,-0.052784249676468914],[126,261,67,-0.03081377797756272],[126,261,68,-0.012880390566278599],[126,261,69,-0.007933517884725284],[126,261,70,-0.0038902298586609594],[126,261,71,-0.01515574806145314],[126,261,72,-0.02896859098978454],[126,261,73,-0.03710890352454496],[126,261,74,-0.042716180775692246],[126,261,75,-0.04996692274169046],[126,261,76,-0.042588644604111985],[126,261,77,-0.025735612320820975],[126,261,78,-0.024317596316360844],[126,261,79,-0.03824424246673429],[126,262,64,-0.03669491801413565],[126,262,65,-0.04788511601812501],[126,262,66,-0.05191515793325132],[126,262,67,-0.03035114863272628],[126,262,68,-0.01267820197402801],[126,262,69,-0.0076332025464718786],[126,262,70,-0.003440351533209642],[126,262,71,-0.01443269231412454],[126,262,72,-0.02803937030236881],[126,262,73,-0.036142833794584606],[126,262,74,-0.041801230595650246],[126,262,75,-0.04905281830586149],[126,262,76,-0.04187104585855569],[126,262,77,-0.025255906853054944],[126,262,78,-0.023782919166669393],[126,262,79,-0.03741686968465323],[126,263,64,-0.036127491281081586],[126,263,65,-0.046983638665590056],[126,263,66,-0.05106900272251018],[126,263,67,-0.029902620790155425],[126,263,68,-0.012485047625332042],[126,263,69,-0.007344111816919722],[126,263,70,-0.003006937972870749],[126,263,71,-0.01373361937720824],[126,263,72,-0.02713885015211407],[126,263,73,-0.03520714338824848],[126,263,74,-0.04091610928162401],[126,263,75,-0.04816651739417941],[126,263,76,-0.0411732478870677],[126,263,77,-0.024789931761934017],[126,263,78,-0.023265694226351982],[126,263,79,-0.036616429584100225],[126,264,64,-0.035580452592490555],[126,264,65,-0.04610884149543217],[126,264,66,-0.050245728521606976],[126,264,67,-0.02946812682425185],[126,264,68,-0.012300787016058133],[126,264,69,-0.007065997687621882],[126,264,70,-0.0025895147389672687],[126,264,71,-0.013057987300883924],[126,264,72,-0.026266520397098553],[126,264,73,-0.03430129877080972],[126,264,74,-0.04006031943848319],[126,264,75,-0.04730773181777883],[126,264,76,-0.04049516031232744],[126,264,77,-0.024337542060785478],[126,264,78,-0.022765613228465955],[126,264,79,-0.03584251331142612],[126,265,64,-0.035053567616525436],[126,265,65,-0.045260452442149],[126,265,66,-0.049445266843666826],[126,265,67,-0.029047595573108053],[126,265,68,-0.012125282200556323],[126,265,69,-0.006798610025664254],[126,265,70,-0.0021876031964572985],[126,265,71,-0.012405243752037819],[126,265,72,-0.025421856168599613],[126,265,73,-0.03342475721725059],[126,265,74,-0.039233361579537836],[126,265,75,-0.046476168064993925],[126,265,76,-0.03983668560752395],[126,265,77,-0.023898589825549446],[126,265,78,-0.022282367429087402],[126,265,79,-0.03509470827881067],[126,266,64,-0.03454660237304582],[126,266,65,-0.04443819034808223],[126,266,66,-0.04866753703835408],[126,266,67,-0.02864095282219011],[126,266,68,-0.01195839817895908],[126,266,69,-0.006541697236736831],[126,266,70,-0.0018007215759444709],[126,266,71,-0.01177482751273994],[126,266,72,-0.024604319495570494],[126,266,73,-0.0325769681869844],[126,266,74,-0.03843473517436173],[126,266,75,-0.04567152817546065],[126,266,76,-0.039197719604059024],[126,266,77,-0.02347292451894621],[126,266,78,-0.021815648186940522],[126,266,79,-0.03437259921799231],[126,267,64,-0.03405932394207368],[126,267,65,-0.04364176598057832],[126,267,66,-0.04791244710570057],[126,267,67,-0.02824812178698868],[126,267,68,-0.011800003266332931],[126,267,69,-0.006295006903582199],[126,267,70,-0.0014283859934652052],[126,267,71,-0.011166169937495325],[126,267,72,-0.023813360896069516],[126,267,73,-0.03175737466064585],[126,267,74,-0.03766393965990176],[126,267,75,-0.0448935106022755],[126,267,76,-0.03857815200712366],[126,267,77,-0.023060393309637273],[126,267,78,-0.021365147519121018],[126,267,79,-0.03367576920581049],[126,268,64,-0.0335915011502309],[126,268,65,-0.04287088303677811],[126,268,66,-0.04717989451944633],[126,268,67,-0.027869023593291607],[126,268,68,-0.011649969443566947],[126,268,69,-0.006058286398399717],[126,268,70,-0.0010701114254246182],[126,268,71,-0.010578696364673845],[126,268,72,-0.023048420930077012],[126,268,73,-0.030965414434882273],[126,268,74,-0.03692047541265593],[126,268,75,-0.04414181105981511],[126,268,76,-0.03797786691715505],[126,268,77,-0.022660841385451054],[126,268,78,-0.020930558631921583],[126,268,79,-0.03300380065915023],[126,269,64,-0.033142905233917656],[126,269,65,-0.04212523913273643],[126,269,66,-0.04646976705649024],[126,269,67,-0.027503577753815435],[126,269,68,-0.011508172689968349],[126,269,69,-0.00583128346795659],[126,269,70,-7.254126363879182E-4],[126,269,71,-0.010011827477984504],[126,269,72,-0.022308931708600772],[126,269,73,-0.030200521371439214],[126,269,74,-0.03620384467994923],[126,269,75,-0.043416123354967744],[126,269,76,-0.037396743355204244],[126,269,77,-0.022274112259762585],[126,269,78,-0.02051157642589993],[126,269,79,-0.03235627629712139],[126,270,64,-0.03271331047816483],[126,270,65,-0.041404526773807085],[126,270,66,-0.04578194362920448],[126,270,67,-0.02715170264002614],[126,270,68,-0.011374493297620513],[126,270,69,-0.005613746790331634],[126,270,70,-3.938050577644227E-4],[126,270,71,-0.009464980614319945],[126,270,72,-0.021594318354436433],[126,270,73,-0.02946212659719206],[126,270,74,-0.03551355246858167],[126,270,75,-0.04271614019967467],[126,270,76,-0.03683465579027533],[126,270,77,-0.021900048070148958],[126,270,78,-0.020107897974463218],[126,270,79,-0.031732780068550716],[126,271,64,-0.032302494830201464],[126,271,65,-0.04070843430342857],[126,271,66,-0.045116295117490025],[126,271,67,-0.026813315948036355],[126,271,68,-0.01124881616760622],[126,271,69,-0.0054054265023604706],[126,271,70,-7.480561572511301E-5],[126,271,71,-0.008937571014733331],[126,271,72,-0.020904000410394283],[126,271,73,-0.02874965965210657],[126,271,74,-0.0348491073893248],[126,271,75,-0.04204155400279005],[126,271,76,-0.03629147466669874],[126,271,77,-0.021538489868431626],[126,271,78,-0.019719222975332674],[126,271,79,-0.031132898043061647],[126,272,64,-0.03191024048692641],[126,272,65,-0.04003664682767484],[126,272,66,-0.044472685197614756],[126,272,67,-0.02648833515755716],[126,272,68,-0.01113103108826941],[126,272,69,-0.005206074697009214],[126,272,70,2.320664930029026E-4],[126,272,71,-0.008429013015741074],[126,272,72,-0.0202373931912486],[126,272,73,-0.028062549582442406],[126,272,74,-0.034210022455957334],[126,272,75,-0.041392057639404525],[126,272,76,-0.03576706692963858],[126,272,77,-0.02118927790124814],[126,272,78,-0.019345254174369688],[126,272,79,-0.030556219264240927],[126,273,64,-0.03153633445556207],[126,273,65,-0.03938884711313377],[126,273,66,-0.043850971165010084],[126,273,67,-0.02617667798293401],[126,273,68,-0.011021032995714702],[126,273,69,-0.0050154458900267965],[126,273,70,5.272890785448309E-4],[126,273,71,-0.007938721178558532],[126,273,72,-0.01959390907609376],[126,273,73,-0.027400225976817193],[126,273,74,-0.033595815837700764],[126,273,75,-0.04076734519587235],[126,273,76,-0.03526129654683809],[126,273,77,-0.02085225188028272],[126,273,78,-0.01898569776131449],[126,273,79,-0.030002336563562253],[126,274,64,-0.0311805690868939],[126,274,65,-0.0387647164558813],[126,274,66,-0.043251004748364984],[126,274,67,-0.02587826281538652],[126,274,68,-0.010918722216808502],[126,274,69,-0.00483329745537539],[126,274,70,8.113362892883013E-4],[126,274,71,-0.007466111354279702],[126,274,72,-0.01897295873821355],[126,274,73,-0.026762119943063215],[126,274,74,-0.03300601156410646],[126,274,75,-0.04016711268890831],[126,274,76,-0.034774025024753276],[126,274,77,-0.020527251241317355],[126,274,78,-0.018640263737092093],[126,274,79,-0.029470847333937303],[126,275,64,-0.030842742580567566],[126,275,65,-0.0381639355195106],[126,275,66,-0.042672632912496206],[126,275,67,-0.02559300915561383],[126,275,68,-0.010824004694946312],[126,275,69,-0.004659390029031971],[126,275,70,0.0010846779978616974],[126,275,71,-0.007010601683378554],[126,275,72,-0.01837395230995734],[126,275,73,-0.026147665024063706],[126,275,74,-0.032440140181574796],[126,275,75,-0.039591058757194875],[126,275,76,-0.034305111917226495],[126,275,77,-0.020214115391248195],[126,275,78,-0.018308666252387674],[126,275,79,-0.028961354261906075],[126,276,64,-0.03052265946199444],[126,276,65,-0.03758618514034952],[126,276,66,-0.042115698647617265],[126,276,67,-0.025320838035989845],[126,276,68,-0.01073679219887661],[126,276,69,-0.0044934878808655385],[126,276,70,0.0013477792420095902],[126,276,71,-0.006571613528270588],[126,276,72,-0.01779630048049958],[126,276,73,-0.025556298051028284],[126,276,74,-0.0318977393608281],[126,276,75,-0.039038885324031505],[126,276,76,-0.03385441532488336],[126,276,77,-0.019912683942220486],[126,276,78,-0.017990623917258444],[126,276,79,-0.028473466017629286],[126,277,64,-0.030220131030491187],[126,277,65,-0.037031147098186334],[126,277,66,-0.04158004174278779],[126,277,67,-0.025061672431637348],[126,277,68,-0.010657002514888244],[126,277,69,-0.0043353592543911345],[126,277,70,0.0016010997204811456],[126,277,71,-0.006148572338007567],[126,277,72,-0.01723941552471809],[126,277,73,-0.02498745993290414],[126,277,74,-0.031378354454779635],[126,277,75,-0.03851029822963889],[126,277,76,-0.03342179238346383],[126,277,77,-0.019622796932044786],[126,277,78,-0.017685860081604617],[126,277,79,-0.028006797901981736],[126,278,64,-0.029934975778317174],[126,278,65,-0.036498504850972543],[126,278,66,-0.041065499541453825],[126,278,67,-0.024815437659706018],[126,278,68,-0.010584559622654727],[126,278,69,-0.004184776674269983],[126,278,70,0.0018450933438662349],[126,278,71,-0.005740908444478865],[126,278,72,-0.016702712261754397],[126,278,73,-0.024440596380833145],[126,278,74,-0.030881539006328097],[126,278,75,-0.03800500783178941],[126,278,76,-0.033007099739317154],[126,278,77,-0.019344295030046848],[126,278,78,-0.017394103086350244],[126,278,79,-0.027560972450148696],[126,279,64,-0.029667019780308355],[126,279,65,-0.035987944232118534],[126,279,66,-0.04057190767712673],[126,279,67,-0.024582061766223063],[126,279,68,-0.01051939385501695],[126,279,69,-0.0040415172214874825],[126,279,70,0.0020802078401475125],[126,279,71,-0.0053480577897732995],[126,279,72,-0.016185608942126055],[126,279,73,-0.02391515856675738],[126,279,74,-0.03040685520568673],[126,279,75,-0.03752272957348683],[126,279,76,-0.03261019401030628],[126,279,77,-0.01907701972749942],[126,279,78,-0.01711508648521102],[126,279,79,-0.027135619991219925],[126,280,64,-0.029416097053848247],[126,280,65,-0.03549915410914881],[126,280,66,-0.040099100787393566],[126,280,67,-0.02436147589993534],[126,280,68,-0.010461442041976942],[126,280,69,-0.003905362776199134],[126,280,70,0.0023068844145865803],[126,280,71,-0.004969462584612078],[126,280,72,-0.015687528062548188],[126,280,73,-0.02341060371545568],[126,280,74,-0.029953874296920285],[126,280,75,-0.03706318451647081],[126,280,76,-0.032230932230404456],[126,280,77,-0.018820813511792926],[126,280,78,-0.016848549236955106],[126,280,79,-0.02673037916336501],[126,281,64,-0.029182049888910936],[126,281,65,-0.03503182700259282],[126,281,66,-0.039646913204567716],[126,281,67,-0.024153614672584315],[126,281,68,-0.010410647639133817],[126,281,69,-0.0037761002282612815],[126,281,70,0.0025255574634458953],[126,281,71,-0.004604571897985641],[126,281,72,-0.015207897107872672],[126,281,73,-0.02292639562943557],[126,281,74,-0.02952217693340267],[126,281,75,-0.03662609983935021],[126,281,76,-0.0318691722762746],[126,281,77,-0.018575520023483363],[126,281,78,-0.016594235868059335],[126,281,79,-0.026344897384222125],[126,282,64,-0.028964729147913808],[126,282,65,-0.03458565966409805],[126,282,66,-0.03921517962140842],[126,282,67,-0.02395841650507936],[126,282,68,-0.010366960840751366],[126,282,69,-0.0036535216554773047],[126,282,70,0.0027366543409592468],[126,282,71,-0.004252842178311094],[126,282,72,-0.01474614921977001],[126,282,73,-0.022462005146224696],[126,282,74,-0.029111353481920905],[126,282,75,-0.03621120929918378],[126,282,76,-0.03152477327414122],[126,282,77,-0.018340984195351302],[126,282,78,-0.016351896605661873],[126,282,79,-0.02597883127617285],[126,283,64,-0.028763994535117042],[126,283,65,-0.03416035361286138],[126,283,66,-0.03880373573046532],[126,283,67,-0.023775823959072923],[126,283,68,-0.010330338677612495],[126,283,69,-0.0035374244696095426],[126,283,70,0.0029405951788744164],[126,283,71,-0.003913737706608279],[126,283,72,-0.014301723791990817],[126,283,73,-0.02201691052771838],[126,283,74,-0.028721004275174503],[126,283,75,-0.035818253655354376],[126,283,76,-0.031197595985293487],[126,283,77,-0.018117052372606076],[126,283,78,-0.016121287480710997],[126,283,79,-0.025631847046212478],[126,284,64,-0.02857971483526617],[126,284,65,-0.03375561562954292],[126,284,66,-0.03841241883569896],[126,284,67,-0.02360578405344136],[126,284,68,-0.010300745099744171],[126,284,69,-0.003427611530182073],[126,284,70,0.003137792757855249],[126,284,71,-0.0035867309823134916],[126,284,72,-0.013874066992198364],[126,284,73,-0.021590597781305766],[126,284,74,-0.028350739812392816],[126,284,75,-0.035446981054569705],[126,284,76,-0.03088750316856385],[126,284,77,-0.017903572413350187],[126,284,78,-0.015902170401179354],[126,284,79,-0.025303620820117875],[126,285,64,-0.028411768121144026],[126,285,65,-0.03337115820689847],[126,285,66,-0.03804106843512938],[126,285,67,-0.023448248565189986],[126,285,68,-0.01027815104403274],[126,285,69,-0.0033238912260730065],[126,285,70,0.0033286524300084074],[126,285,71,-0.0032713030424489885],[126,285,72,-0.013462632210495526],[126,285,73,-0.021182560912543558],[126,285,74,-0.02800018090776307],[126,285,75,-0.0350971473758138],[126,285,76,-0.030594359918141197],[126,285,77,-0.01770039376840982],[126,285,78,-0.015694313195186563],[126,285,79,-0.02499383893060816],[126,286,64,-0.028260041929653194],[126,286,65,-0.03300669995642809],[126,286,66,-0.03768952677336498],[126,286,67,-0.023303174314312697],[126,286,68,-0.010262534486683468],[126,286,69,-0.003226077524864583],[126,286,70,0.0035135720917832],[126,286,71,-0.0029669437149555324],[126,286,72,-0.013066880434891981],[126,286,73,-0.02079230210918984],[126,286,74,-0.027668958786328555],[126,286,75,-0.03476851653406019],[126,286,76,-0.03031803397509754],[126,286,77,-0.01750736753963279],[126,286,78,-0.015497489623842446],[126,286,79,-0.024702198159171025],[126,287,64,-0.02812443340598654],[126,287,65,-0.03266196597037006],[126,287,66,-0.03735763936293913],[126,287,67,-0.023170523432128165],[126,287,68,-0.010253880480385417],[126,287,69,-0.0031339899898480397],[126,287,70,0.0036929422065340367],[126,287,71,-0.0026731518070172307],[126,287,72,-0.012686280554013062],[126,287,73,-0.020419331856396338],[126,287,74,-0.02735671512694005],[126,287,75,-0.03446086074151967],[126,287,76,-0.030058396011011044],[126,287,77,-0.017324346515735705],[126,287,78,-0.015311479363572534],[126,287,79,-0.02442840593117529],[126,288,64,-0.028004849415371087],[126,288,65,-0.03233668813839687],[126,288,66,-0.03704525547345699],[126,288,67,-0.02305026361260821],[126,288,68,-0.010252181175953919],[126,288,69,-0.003047453764511252],[126,288,70,0.003867145876074486],[126,288,71,-0.0023894352292262626],[126,288,72,-0.012320309587403704],[126,288,73,-0.020063168982841138],[126,288,74,-0.027063102051771086],[126,288,75,-0.03417396072515054],[126,288,76,-0.02981531988207391],[126,288,77,-0.01715118518477095],[126,288,78,-0.01513606795763703],[126,288,79,-0.024172180463830586],[126,289,64,-0.027901206292370903],[126,289,65,-0.03203060441788967],[126,289,66,-0.03675222647965552],[126,289,67,-0.022942365292141997],[126,289,68,-0.010257432642514731],[126,289,69,-0.002966296811818663],[126,289,70,0.00403656113505184],[126,289,71,-0.0021153093138869144],[126,289,72,-0.011968451203168175],[126,289,73,-0.019723338805868518],[126,289,74,-0.02678778008456514],[126,289,75,-0.03390760392794432],[126,289,76,-0.02958868069639313],[126,289,77,-0.01698773720763697],[126,289,78,-0.014971043940671518],[126,289,79,-0.023933248033419906],[126,290,64,-0.02781342712797016],[126,290,65,-0.03174345093818004],[126,290,66,-0.03647838932541141],[126,290,67,-0.02284677736787193],[126,290,68,-0.010269609324539651],[126,290,69,-0.002890328085210379],[126,290,70,0.004201578563372104],[126,290,71,-0.0018502828945412392],[126,290,72,-0.011630182843705776],[126,290,73,-0.01939935867767476],[126,290,74,-0.0265304025470708],[126,290,75,-0.03366156918113006],[126,290,76,-0.029378338051072747],[126,290,77,-0.01683383554130131],[126,290,78,-0.014816176639007583],[126,290,79,-0.02371132064799886],[126,291,64,-0.027741442851757083],[126,291,65,-0.03147496614808084],[126,291,66,-0.03622357569474148],[126,291,67,-0.02276344031891949],[126,291,68,-0.01028867754926988],[126,291,69,-0.0028193489148744364],[126,291,70,0.004362592312275802],[126,291,71,-0.0015938657749060704],[126,291,72,-0.011304983232951515],[126,291,73,-0.0190907464897473],[126,291,74,-0.026290624789407045],[126,291,75,-0.0334356361096801],[126,291,76,-0.029184146240824722],[126,291,77,-0.01668930392397291],[126,291,78,-0.014671228781663314],[126,291,79,-0.023506108982131856],[126,292,64,-0.027685193669862884],[126,292,65,-0.031224895568702248],[126,292,66,-0.03598762220764876],[126,292,67,-0.022692300691723136],[126,292,68,-0.010314610413497283],[126,292,69,-0.002753165561978245],[126,292,70,0.00451999019403009],[126,292,71,-0.0013455767951697803],[126,292,72,-0.01099234012876336],[126,292,73,-0.018797029229052308],[126,292,74,-0.02606811345633421],[126,292,75,-0.033229594614357746],[126,292,76,-0.02900596467770145],[126,292,77,-0.016553968753341072],[126,292,78,-0.014535969607676811],[126,292,79,-0.023317335788142674],[126,293,64,-0.02764462899654826],[126,293,65,-0.030992991849035922],[126,293,66,-0.03577037067692309],[126,293,67,-0.022633311166266455],[126,293,68,-0.010347387617099732],[126,293,69,-0.0026915889409040027],[126,293,70,0.004674154070493393],[126,293,71,-0.0011049435780016703],[126,293,72,-0.010691750124498613],[126,293,73,-0.01851774258733805],[126,293,74,-0.025862546101838833],[126,293,75,-0.033043244750007],[126,293,76,-0.028843657863786044],[126,293,77,-0.016427658838863914],[126,293,78,-0.014410174510908513],[126,293,79,-0.0231447356455704],[126,294,64,-0.027619707329926895],[126,294,65,-0.030779014723489272],[126,294,66,-0.035571668229403344],[126,294,67,-0.02258643046118078],[126,294,68,-0.010386995130858131],[126,294,69,-0.002634434180335798],[126,294,70,0.00482546038982568],[126,294,71,-8.715021350612449E-4],[126,294,72,-0.010402718310058014],[126,294,73,-0.018252430424615027],[126,294,74,-0.02567361066604217],[126,294,75,-0.03287639647188458],[126,294,76,-0.02869709523624084],[126,294,77,-0.016310205019166375],[126,294,78,-0.014293624532211778],[126,294,79,-0.022988054538515247],[126,295,64,-0.027610396084600253],[126,295,65,-0.030582730914119508],[126,295,66,-0.035391367383341386],[126,295,67,-0.022551623211078516],[126,295,68,-0.010433424837320628],[126,295,69,-0.0025815201410868136],[126,295,70,0.004974280776313422],[126,295,71,-6.447964106993744E-4],[126,295,72,-0.010124757864887252],[126,295,73,-0.018000644167353943],[126,295,74,-0.02550100490108117],[126,295,75,-0.032728869335911244],[126,295,76,-0.02856615097878308],[126,295,77,-0.016201439754878685],[126,295,78,-0.014186105821820824],[126,295,79,-0.022847049384869634],[126,296,64,-0.027616671379703757],[126,296,65,-0.03040391397648045],[126,296,66,-0.035229326080829564],[126,296,67,-0.022528859814917562],[126,296,68,-0.010486674142963007],[126,296,69,-0.002532668888869901],[126,296,70,0.005120982674255868],[126,296,71,-4.2437776238643353E-4],[126,296,72,-0.009857389582322495],[126,296,73,-0.017761942139978826],[126,296,74,-0.02534443574410025],[126,296,75,-0.032600492150592464],[126,296,76,-0.02845070379756523],[126,296,77,-0.016101196695364525],[126,296,78,-0.014087409070433217],[126,296,79,-0.02272148751530546],[126,297,64,-0.027638517780735915],[126,297,65,-0.030242344087921418],[126,297,66,-0.035085407674251744],[126,297,67,-0.022518116254133674],[126,297,68,-0.010546745559725],[126,297,69,-0.002487705119991957],[126,297,70,0.005265930047119408],[126,297,71,-2.0980437714901055E-4],[126,297,72,-0.009600141324463664],[126,297,73,-0.017535888828051134],[126,297,74,-0.025203618635340062],[126,297,75,-0.03249110257827535],[126,297,76,-0.0283506366594543],[126,297,77,-0.016009310217795735],[126,297,78,-0.013997328907381468],[126,297,79,-0.022611146099717885],[126,298,64,-0.0276759280913081],[126,298,65,-0.030097807873398587],[126,298,66,-0.034959480960466915],[126,298,67,-0.022519373972469694],[126,298,68,-0.010613646345623519],[126,298,69,-0.0024464556280915086],[126,298,70,0.0054094840444480815],[126,298,71,-6.407106771812021E-7],[126,298,72,-0.009352547492890528],[126,298,73,-0.017322054156442036],[126,298,74,-0.025078276863039272],[126,298,75,-0.03240054676603412],[126,298,76,-0.028265836572315368],[126,298,77,-0.015925615017562234],[126,298,78,-0.013915663343698242],[126,298,79,-0.02251581159714875],[126,299,64,-0.02772892152428083],[126,299,65,-0.029970116295808168],[126,299,66,-0.034851437994621724],[126,299,67,-0.02253263726148918],[126,299,68,-0.01068740536792645],[126,299,69,-0.0024087657036234514],[126,299,70,0.005551987007460866],[126,299,71,2.0352667642198897E-4],[126,299,72,-0.009114164642983352],[126,299,73,-0.01712002867124026],[126,299,74,-0.02496815659375224],[126,299,75,-0.0323286944432946],[126,299,76,-0.028196209632178882],[126,299,77,-0.015849960771132737],[126,299,78,-0.013842228085268811],[126,299,79,-0.02243529386635316],[126,300,64,-0.02779756770262247],[126,300,65,-0.029859128238167325],[126,300,66,-0.03476121748397195],[126,300,67,-0.02255795612059448],[126,300,68,-0.010768095321468128],[126,300,69,-0.002374520758872061],[126,300,70,0.005693741363759925],[126,300,71,4.030682835680536E-4],[126,300,72,-0.008884591990535368],[126,300,73,-0.016929443515647492],[126,300,74,-0.024873046615491518],[126,300,75,-0.03227545864600346],[126,300,76,-0.02814170062530767],[126,300,77,-0.01578223128236524],[126,300,78,-0.01377687524416743],[126,300,79,-0.022369444576414932],[126,301,64,-0.02788195448847922],[126,301,65,-0.029764718829352405],[126,301,66,-0.03468877383935641],[126,301,67,-0.022595395666675348],[126,301,68,-0.010855802345959682],[126,301,69,-0.0023436161633129757],[126,301,70,0.005835039513146084],[126,301,71,5.983410543774884E-4],[126,301,72,-0.008663442446977206],[126,301,73,-0.016749941660383117],[126,301,74,-0.02479275004929942],[126,301,75,-0.032240768088581444],[126,301,76,-0.02810226594322039],[126,301,77,-0.0157223175772064],[126,301,78,-0.013719466589486116],[126,301,79,-0.022318130704853993],[126,302,64,-0.02798218286756101],[126,302,65,-0.029686774403612136],[126,302,66,-0.034634072470246184],[126,302,67,-0.022645031407681364],[126,302,68,-0.010950621118613994],[126,302,69,-0.0023159521634754376],[126,302,70,0.005976168995850039],[126,302,71,7.896934007641719E-4],[126,302,72,-0.008450337669452669],[126,302,73,-0.016581172818038805],[126,302,74,-0.024727079439587137],[126,302,75,-0.03222456261253502],[126,302,76,-0.02807786929662643],[126,302,77,-0.01567011352719272],[126,302,78,-0.013669869049371168],[126,302,79,-0.022281230003428354],[126,303,64,-0.028098366852256668],[126,303,65,-0.029625192390776788],[126,303,66,-0.03459708994605757],[126,303,67,-0.02270694931957441],[126,303,68,-0.011052654669289376],[126,303,69,-0.002291433434564043],[126,303,70,0.00611741310343133],[126,303,71,9.774657436236475E-4],[126,303,72,-0.008244907523527781],[126,303,73,-0.016422792703812545],[126,303,74,-0.024675856141543127],[126,303,75,-0.03222679287672766],[126,303,76,-0.028068481631521282],[126,303,77,-0.015625515633280806],[126,303,78,-0.01362795431345018],[126,303,79,-0.022258630488194042],[126,304,64,-0.028230633373395996],[126,304,65,-0.02957988118792585],[126,304,66,-0.034577814153372216],[126,304,67,-0.02278124593202363],[126,304,68,-0.01116201419627652],[126,304,69,-0.0022699686133684596],[126,304,70,0.006259051512455162],[126,304,71,0.0011619910820640225],[126,304,72,-0.00804678951240564],[126,304,73,-0.016274462259446395],[126,304,74,-0.02463890968359253],[126,304,75,-0.03224742002630867],[126,304,76,-0.028074081042174084],[126,304,77,-0.015588422819584098],[126,304,78,-0.013593598436555943],[126,304,79,-0.022250229903013483],[126,305,64,-0.02837912215958981],[126,305,65,-0.029550760012186813],[126,305,66,-0.03457624444951054],[126,305,67,-0.022868028422795592],[126,305,68,-0.011278818881203773],[126,305,69,-0.0022514698101987135],[126,305,70,0.006401360942823014],[126,305,71,0.001343595592690512],[126,305,72,-0.00785562817147473],[126,305,73,-0.01613584683889969],[126,305,74,-0.024616077103583735],[126,305,75,-0.03228641533918799],[126,305,76,-0.028094652681143667],[126,305,77,-0.015558736237666834],[126,305,78,-0.01356668144355203],[126,305,79,-0.022255935154662426],[126,306,64,-0.028543985603029405],[126,306,65,-0.0295377587342896],[126,306,66,-0.034592391812948015],[126,306,67,-0.02296741472084092],[126,306,68,-0.011403195701498274],[126,306,69,-0.002235852097439342],[126,306,70,0.0065446158428496765],[126,306,71,0.001522599260700255],[126,306,72,-0.007671074426832011],[126,306,73,-0.016006615354212612],[126,306,74,-0.024607202257408357],[126,306,75,-0.03234375984904402],[126,306,76,-0.02813018866667858],[126,306,77,-0.015536359082285614],[126,306,78,-0.013547086935204893],[126,306,79,-0.022275661717691176],[126,307,64,-0.028725388610584848],[126,307,65,-0.02954081769248767],[126,307,66,-0.034626278991121855],[126,307,67,-0.023079533618119152],[126,307,68,-0.011535279238778028],[126,307,69,-0.0022230329721500647],[126,307,70,0.006689089103409512],[126,307,71,0.0016993165448106222],[126,307,72,-0.007492784916215582],[126,307,73,-0.015886439379925288],[126,307,74,-0.02461213509879331],[126,307,75,-0.03241944394394846],[126,307,76,-0.02818068798807477],[126,307,77,-0.015521196419711576],[126,307,78,-0.013534701695195387],[126,307,79,-0.02230933300720395],[126,308,64,-0.028923508439010686],[126,308,65,-0.029559887486428862],[126,308,66,-0.03467794064623468],[126,308,67,-0.023204524890264925],[126,308,68,-0.011675211481525548],[126,308,69,-0.0022129317900027303],[126,308,70,0.00683505280368834],[126,308,71,0.001874057078298611],[126,308,72,-0.007320421270591395],[126,308,73,-0.015774992214356597],[126,308,74,-0.02463073092906205],[126,308,75,-0.03251346693981455],[126,308,76,-0.028246156409807495],[126,308,77,-0.015513155030034894],[126,308,78,-0.01352941529853299],[126,308,79,-0.022356879717751015],[126,309,64,-0.02913853451302714],[126,309,65,-0.029594928750525176],[126,309,66,-0.03474742349969573],[126,309,67,-0.023342539426237735],[126,309,68,-0.011823141620344455],[126,309,69,-0.0022054691676826376],[126,309,70,0.006982778991310163],[126,309,71,0.0020471264087046736],[126,309,72,-0.007153649354425496],[126,309,73,-0.01567194789597089],[126,309,74,-0.02466284961572091],[126,309,75,-0.03262583662799326],[126,309,76,-0.028326606375486035],[126,309,77,-0.015512143265108365],[126,309,78,-0.013531119721801979],[126,309,79,-0.022418239126558468],[126,310,64,-0.029370668225014388],[126,310,65,-0.029645911906342793],[126,310,66,-0.0348347864758848],[126,310,67,-0.023493739367144675],[126,310,68,-0.01197922583406373],[126,310,69,-0.002200566350729611],[126,310,70,0.007132540499837041],[126,310,71,0.0022188267790321666],[126,310,72,-0.006992138462459061],[126,310,73,-0.015576980172994609],[126,310,74,-0.024708354778794534],[126,310,75,-0.03275656879646867],[126,310,76,-0.028422056912920057],[126,310,77,-0.015518070924060946],[126,310,78,-0.013539708955850577],[126,310,79,-0.022493354359363112],[126,311,64,-0.02962012271503552],[126,311,65,-0.029712816893510456],[126,311,66,-0.034940100845964474],[126,311,67,-0.02365829825447854],[126,311,68,-0.012143627064929777],[126,311,69,-0.0021981445436563807],[126,311,70,0.0072846118068510875],[126,311,71,0.002389457953532393],[126,311,72,-0.006835560470608405],[126,311,73,-0.015489761424404662],[126,311,74,-0.02476711294393443],[126,311,75,-0.03290568672425525],[126,311,76,-0.028532533541842528],[126,311,77,-0.015530849148591886],[126,311,78,-0.013555078621731628],[126,311,79,-0.022582173617186185],[126,312,64,-0.029887122629876885],[126,312,65,-0.029795632878611845],[126,312,66,-0.03506345037248875],[126,312,67,-0.023836401188049174],[126,312,68,-0.012316514781089865],[126,312,69,-0.0021981241990282428],[126,312,70,0.007439269936057364],[126,312,71,0.002559318091450304],[126,312,72,-0.006683588938390557],[126,312,73,-0.01540996153035407],[126,312,74,-0.024838992661416488],[126,312,75,-0.033073220648739354],[126,312,76,-0.028658068186073093],[126,312,77,-0.01555039034053173],[126,312,78,-0.01357712559089724],[126,312,79,-0.022684649362446015],[126,313,64,-0.03017190385977414],[126,313,65,-0.02989435794149778],[126,313,66,-0.03520493145557624],[126,313,67,-0.024028244993925155],[126,313,68,-0.012498064724544766],[126,313,69,-0.0022004242620511615],[126,313,70,0.0075967954070562185],[126,313,71,0.0027287046723697018],[126,313,72,-0.006535898160074166],[126,313,73,-0.015337246690073934],[126,313,74,-0.024923863590261285],[126,313,75,-0.0332592072058702],[126,313,76,-0.028798699092162195],[126,313,77,-0.01557660810443746],[126,313,78,-0.013605747610859057],[126,313,79,-0.022800737462896493],[126,314,64,-0.030474713251486766],[126,314,65,-0.030008998738437986],[126,314,66,-0.035364653281441685],[126,314,67,-0.024234038402746395],[126,314,68,-0.012688458642734915],[126,314,69,-0.002204961367092411],[126,314,70,0.007757473236628844],[126,314,71,0.0028979154770494187],[126,314,72,-0.006392162161566365],[126,314,73,-0.01527127818528156],[126,314,74,-0.02502159554685384],[126,314,75,-0.03346368884328238],[126,314,76,-0.02895447075680919],[126,314,77,-0.015609417218279532],[126,314,78,-0.01364084293774952],[126,314,79,-0.022930396291991017],[126,315,64,-0.030795808296369628],[126,315,65,-0.03013957014150032],[126,315,66,-0.03554273797407301],[126,315,67,-0.024454002238790108],[126,315,68,-0.012887884001899854],[126,315,69,-0.0022116489824291334],[126,315,70,0.00792159399557835],[126,315,71,0.0030672496279033194],[126,315,72,-0.006252053639843492],[126,315,73,-0.015211711087111484],[126,315,74,-0.025132057517575395],[126,315,75,-0.033686713206598475],[126,315,76,-0.029125433865591337],[126,315,77,-0.015648733635551252],[126,315,78,-0.013682309977434743],[126,315,79,-0.023073585784383316],[126,316,64,-0.031135456792084223],[126,316,65,-0.0302860948535225],[126,316,66,-0.035739320750840756],[126,316,67,-0.024688369620197378],[126,316,68,-0.01309653368033905],[126,316,69,-0.0022203964994130265],[126,316,70,0.008089454925342337],[126,316,71,0.0032370086935075556],[126,316,72,-0.006115242841566282],[126,316,73,-0.01515819290461405],[126,316,74,-0.025255116635137284],[126,316,75,-0.033928332499358074],[126,316,76,-0.02931164524578893],[126,316,77,-0.015694474522410486],[126,316,78,-0.013730046937063185],[126,316,79,-0.023230266445421685],[126,317,64,-0.03149393647660567],[126,317,65,-0.030448602998032395],[126,317,66,-0.03595455008282019],[126,317,67,-0.02493738617079166],[126,317,68,-0.013314605639702751],[126,317,69,-0.0022311082621504063],[126,317,70,0.008261361118743852],[126,317,71,0.0034074978617369984],[126,317,72,-0.0059813963773553466],[126,317,73,-0.015110362172903239],[126,317,74,-0.025390637118488456],[126,317,75,-0.03418860281721374],[126,317,76,-0.029513167836333093],[126,317,77,-0.015746558333739325],[126,317,78,-0.013783951489172072],[126,317,79,-0.02340039831365689],[126,318,64,-0.03187153463318174],[126,318,65,-0.030627131683447693],[126,318,66,-0.036188587860572205],[126,318,67,-0.02520131024392115],[126,318,68,-0.013542302572432661],[126,318,69,-0.0022436825337127336],[126,318,70,0.008437626769389089],[126,318,71,0.0035790271863347274],[126,318,72,-0.005850175968058816],[126,318,73,-0.015067846979096649],[126,318,74,-0.025538479176374484],[126,318,75,-0.03446758345724016],[126,318,76,-0.029730070678131014],[126,318,77,-0.015804904932263865],[126,318,78,-0.013843920450708654],[126,318,79,-0.02358393987556028],[126,319,64,-0.032268555979979484],[126,319,65,-0.030821737361986568],[126,319,66,-0.03644159940775747],[126,319,67,-0.02548039603744574],[126,319,68,-0.013779823883652882],[126,319,69,-0.0022580204517532254],[126,319,70,0.008618558301104603],[126,319,71,0.0037519011236034883],[126,319,72,-0.005721244867780433],[126,319,73,-0.015030273671668204],[126,319,74,-0.02569850296494994],[126,319,75,-0.03476533499068167],[126,319,76,-0.029962421969487427],[126,319,77,-0.015869430682290863],[126,319,78,-0.013909846533318301],[126,319,79,-0.023780843527152647],[127,-64,64,-0.23363650673119504],[127,-64,65,-0.13526988086610778],[127,-64,66,-0.04621970240388278],[127,-64,67,-0.11574964961056744],[127,-64,68,-0.24011130515169993],[127,-64,69,-0.2556321360668406],[127,-64,70,-0.17407837066369358],[127,-64,71,-0.08331542905087326],[127,-64,72,-0.14367599660080374],[127,-64,73,-0.2023417378056823],[127,-64,74,-0.19190843344517575],[127,-64,75,-0.1340164244143237],[127,-64,76,0.0013379762094625205],[127,-64,77,0.057340045571488085],[127,-64,78,0.023670858488143723],[127,-64,79,0.03129456801343137],[127,-63,64,-0.2300530339218781],[127,-63,65,-0.1335906314647153],[127,-63,66,-0.04582184290183301],[127,-63,67,-0.11389515796661596],[127,-63,68,-0.2356278829645182],[127,-63,69,-0.2502419639400631],[127,-63,70,-0.17037118148596156],[127,-63,71,-0.0824421449997528],[127,-63,72,-0.14266006862622388],[127,-63,73,-0.19958160681128465],[127,-63,74,-0.18924231814021683],[127,-63,75,-0.1324934114255522],[127,-63,76,0.0013398518201466045],[127,-63,77,0.057353333818403976],[127,-63,78,0.023700997911011087],[127,-63,79,0.03047019017641547],[127,-62,64,-0.22656801293409176],[127,-62,65,-0.13196931607025592],[127,-62,66,-0.04545922665735189],[127,-62,67,-0.11208838955505601],[127,-62,68,-0.23120713193489603],[127,-62,69,-0.24492568083181596],[127,-62,70,-0.16673615673155132],[127,-62,71,-0.08161321751593793],[127,-62,72,-0.14166627408933363],[127,-62,73,-0.19689024254162388],[127,-62,74,-0.18664761505923722],[127,-62,75,-0.1310136776957931],[127,-62,76,0.0013006337929803743],[127,-62,77,0.05730482022392671],[127,-62,78,0.023685671907143102],[127,-62,79,0.029615268535975903],[127,-61,64,-0.22317804145430148],[127,-61,65,-0.13040378419652315],[127,-61,66,-0.04513054400183997],[127,-61,67,-0.11032817955621074],[127,-61,68,-0.22684838560843978],[127,-61,69,-0.2396829120251175],[127,-61,70,-0.16317198916671105],[127,-61,71,-0.08082667669894908],[127,-61,72,-0.1406934998713349],[127,-61,73,-0.19426568284172605],[127,-61,74,-0.18412216518581762],[127,-61,75,-0.12957590502219815],[127,-61,76,0.001221841031512345],[127,-61,77,0.05719670803352173],[127,-61,78,0.02362705811047332],[127,-61,79,0.028732260824766737],[127,-60,64,-0.21987971270769358],[127,-60,65,-0.12889192834738983],[127,-60,66,-0.04483455599681992],[127,-60,67,-0.10861340297194987],[127,-60,68,-0.22255096862627766],[127,-60,69,-0.23451324707148802],[127,-60,70,-0.15967737480596816],[127,-60,71,-0.08008060496796966],[127,-60,72,-0.13974065125675178],[127,-60,73,-0.19170595652940448],[127,-60,74,-0.1816638013237544],[127,-60,75,-0.12817876896900932],[127,-60,76,0.0011049434905255479],[127,-60,77,0.05703110218583164],[127,-60,78,0.02352721368273942],[127,-60,79,0.027823488295883603],[127,-59,64,-0.21666960173712693],[127,-59,65,-0.1274316114443554],[127,-59,66,-0.04456999188898832],[127,-59,67,-0.10694288531834974],[127,-59,68,-0.21831413939061517],[127,-59,69,-0.22941620609606955],[127,-59,70,-0.15625097822038117],[127,-59,71,-0.07937308223795295],[127,-59,72,-0.13880658409270694],[127,-59,73,-0.18920902268312462],[127,-59,74,-0.179270293874992],[127,-59,75,-0.12682088512146122],[127,-59,76,9.514202777808102E-4],[127,-59,77,0.056810071753121374],[127,-59,78,0.023388140190279752],[127,-59,79,0.026891197073467953],[127,-58,64,-0.213544266394998],[127,-58,65,-0.12602066762956746],[127,-58,66,-0.04433555025547069],[127,-58,67,-0.10531540460047563],[127,-58,68,-0.2141370924154656],[127,-58,69,-0.22439124258307983],[127,-58,70,-0.1528914344485274],[127,-58,71,-0.07870218583780952],[127,-58,72,-0.13789010462807352],[127,-58,73,-0.18677277263444972],[127,-58,74,-0.17693935297492572],[127,-58,75,-0.12550081062531745],[127,-58,76,7.627582017970841E-4],[127,-58,77,0.0565356482072579],[127,-58,78,0.023211783645236034],[127,-58,79,0.025937559882466342],[127,-57,64,-0.21050024814857],[127,-57,65,-0.12465690290686936],[127,-57,66,-0.04412989998396622],[127,-57,67,-0.10372969318865366],[127,-57,68,-0.21001896080173518],[127,-57,69,-0.2194377463704596],[127,-57,70,-0.14959735094725587],[127,-57,71,-0.07806599027843386],[127,-57,72,-0.13698996928125898],[127,-57,73,-0.18439503179673888],[127,-57,74,-0.1746686304200801],[127,-57,75,-0.12421704554999],[127,-57,76,5.404506155666717E-4],[127,-57,77,0.056209824044494476],[127,-57,78,0.023000034791699136],[127,-57,79,0.024964678047217324],[127,-56,64,-0.20753407270816907],[127,-56,65,-0.12333809559820126],[127,-56,66,-0.04395168104689503],[127,-56,67,-0.1021844395580528],[127,-56,68,-0.20595881880242542],[127,-56,69,-0.21455504682050427],[127,-56,70,-0.1463673095594313],[127,-56,71,-0.07746256685513418],[127,-56,72,-0.1361048843141826],[127,-56,73,-0.18207356131014757],[127,-56,74,-0.17245572137481616],[127,-56,75,-0.12296803405942479],[127,-56,76,2.8599657347873087E-4],[127,-56,77,0.055834551788766826],[127,-56,78,0.02275472965325793],[127,-56,79,0.02397458376428437],[127,-55,64,-0.2046422504965559],[127,-55,65,-0.12206199662917676],[127,-55,66,-0.04379950507930215],[127,-55,67,-0.10067828989804258],[127,-55,68,-0.20195568447283657],[127,-55,69,-0.20974241615117784],[127,-55,70,-0.14319986849403504],[127,-55,71,-0.0768899830960834],[127,-55,72,-0.13523350542335655],[127,-55,73,-0.1798060595146384],[127,-55,74,-0.17029816587230207],[127,-55,75,-0.1217521654026785],[127,-55,76,9.002893678084208E-7],[127,-55,77,0.05541174336202431],[127,-55,78,0.022477650327565105],[127,-55,79,0.0229692426267217],[127,-54,64,-0.20182127697916583],[127,-54,65,-0.12082632965885562],[127,-54,66,-0.0436719557712456],[127,-54,67,-0.09920984959873691],[127,-54,68,-0.19800852240119354],[127,-54,69,-0.20499907291328676],[127,-54,70,-0.14009356431459333],[127,-54,71,-0.07634630206930451],[127,-54,72,-0.13437443726018486],[127,-54,73,-0.17759016326454566],[127,-54,74,-0.16819345012676573],[127,-54,75,-0.12056777473755748],[127,-54,76,-3.133291172861574E-4],[127,-54,77,0.054943269809641114],[127,-54,78,0.022170526013647378],[127,-54,79,0.021950556377250106],[127,-53,64,-0.19906779260464977],[127,-53,65,-0.1196288887695156],[127,-53,66,-0.04356762529525934],[127,-53,67,-0.09777776730162097],[127,-53,68,-0.19411641348435593],[127,-53,69,-0.20032436084365968],[127,-53,70,-0.1370470358414272],[127,-53,71,-0.07582965013852261],[127,-53,72,-0.13352635563568055],[127,-53,73,-0.17542361297730294],[127,-53,74,-0.1661391653733327],[127,-53,75,-0.11941325894716502],[127,-53,76,-6.551782429130793E-4],[127,-53,77,0.05443101550188997],[127,-53,78,0.021835056305383172],[127,-53,79,0.020920387310983453],[127,-52,64,-0.19637965414319056],[127,-52,65,-0.11846819774088448],[127,-52,66,-0.043485362023443434],[127,-52,67,-0.09638128933521332],[127,-52,68,-0.19027966372218152],[127,-52,69,-0.19571890626330304],[127,-52,70,-0.13405983018152415],[127,-52,71,-0.07533868063847175],[127,-52,72,-0.13268883858024838],[127,-52,73,-0.17330535246060827],[127,-52,74,-0.16413406593510999],[127,-52,75,-0.11828785241609278],[127,-52,76,-0.0010231377795851238],[127,-52,77,0.05387724233428841],[127,-52,78,0.02147305910473376],[127,-52,79,0.019880695424935948],[127,-51,64,-0.19375529474832895],[127,-51,65,-0.11734312962992409],[127,-51,66,-0.043424138724284564],[127,-51,67,-0.09501992629870354],[127,-51,68,-0.18649910067850348],[127,-51,69,-0.19118386189462916],[127,-51,70,-0.13113188053361932],[127,-51,71,-0.07487231093725837],[127,-51,72,-0.13186189577529916],[127,-51,73,-0.17123487263715886],[127,-51,74,-0.16217743709965549],[127,-51,75,-0.11719117419670128],[127,-51,76,-0.0014157122495220436],[127,-51,77,0.05328437321382507],[127,-51,78,0.021086378779825037],[127,-51,79,0.01883342884426211],[127,-50,64,-0.19119316688290108],[127,-50,65,-0.11625256948371032],[127,-50,66,-0.043382931329242806],[127,-50,67,-0.09369316520506084],[127,-50,68,-0.1827754813941102],[127,-50,69,-0.1867202811297433],[127,-50,70,-0.12826307278732466],[127,-50,71,-0.07442948688389049],[127,-50,72,-0.13104554500729648],[127,-50,73,-0.16921164091393442],[127,-50,74,-0.1602685461373153],[127,-50,75,-0.11612282940775169],[127,-50,76,-0.0018314236965326525],[127,-50,77,0.0526547990322097],[127,-50,78,0.02067680642329534],[127,-50,79,0.01778044234304512],[127,-49,64,-0.18869174150955959],[127,-49,65,-0.11519541480354896],[127,-49,66,-0.04336072095940257],[127,-49,67,-0.09240047038162998],[127,-49,68,-0.17910949012249947],[127,-49,69,-0.1823291156890114],[127,-49,70,-0.12545324493910467],[127,-49,71,-0.07400918328722277],[127,-49,72,-0.13023981091935016],[127,-49,73,-0.16723510146331208],[127,-49,74,-0.15840664286186304],[127,-49,75,-0.11508240983287021],[127,-49,76,-0.0022688150910036196],[127,-49,77,0.05199087351627563],[127,-49,78,0.020246077657124592],[127,-49,79,0.016723496461588477],[127,-48,64,-0.1862495101910403],[127,-48,65,-0.11417057772882663],[127,-48,66,-0.043356496491842506],[127,-48,67,-0.09114128588270845],[127,-48,68,-0.1755017394226831],[127,-48,69,-0.1780112169064773],[127,-48,70,-0.1227021889223837],[127,-48,71,-0.07361040553652846],[127,-48,72,-0.1294447260079215],[127,-48,73,-0.1653046785079342],[127,-48,74,-0.15659096303894632],[127,-48,75,-0.11406949658030183],[127,-48,76,-0.002726453492938538],[127,-48,77,0.05129490942938568],[127,-48,78,0.019795871116772158],[127,-48,79,0.015664257359559414],[127,-47,64,-0.183864987038132],[127,-47,65,-0.11317698707386027],[127,-47,66,-0.04336925697725334],[127,-47,67,-0.08991503782323454],[127,-47,68,-0.1719527713784691],[127,-47,69,-0.17376733723474067],[127,-47,70,-0.12000965248512854],[127,-47,71,-0.07323219105894399],[127,-47,72,-0.1286603315273914],[127,-47,73,-0.163419779463991],[127,-47,74,-0.15482073161684715],[127,-47,75,-0.11308366260047464],[127,-47,76,-0.0032029329689867592],[127,-47,77,0.05056917508527326],[127,-47,78,0.01932780718061301],[127,-47,79,0.014604296960532425],[127,-46,64,-0.1815367105054346],[127,-46,65,-0.1122135902174834],[127,-46,66,-0.04339801390731359],[127,-46,67,-0.08872113663002071],[127,-46,68,-0.16846305893603689],[127,-46,69,-0.1695981319555203],[127,-46,70,-0.11737534110718963],[127,-46,71,-0.07287361061664382],[127,-46,72,-0.12788667830436787],[127,-46,73,-0.161579797939934],[127,-46,74,-0.15309516577845],[127,-46,75,-0.11212447506070297],[127,-46,76,-0.003696877265976828],[127,-46,77,0.049815891170245805],[127,-46,78,0.018843446934533794],[127,-46,79,0.013545093369753064],[127,-45,64,-0.1792632450353408],[127,-45,65,-0.11127935484543684],[127,-45,66,-0.04344179333071998],[127,-45,67,-0.08755897920722881],[127,-45,68,-0.16503300735146242],[127,-45,69,-0.16550416108191732],[127,-45,70,-0.11479891994977755],[127,-45,71,-0.07253376944694419],[127,-45,72,-0.12712382746379391],[127,-45,73,-0.15978411658822414],[127,-45,74,-0.1514134778138948],[127,-45,75,-0.11119149757678852],[127,-45,76,-0.0042069422440518525],[127,-45,77,0.049037227869005294],[127,-45,78,0.01834429136143628],[127,-45,79,0.01248803154706664],[127,-44,64,-0.17704318255134213],[127,-44,65,-0.11037327054627295],[127,-44,66,-0.04349963781737284],[127,-44,67,-0.08642795101326264],[127,-44,68,-0.16166295574000106],[127,-44,69,-0.16148589143862124],[127,-44,70,-0.11228001582994053],[127,-44,71,-0.07221180824925515],[127,-44,72,-0.12637185106951634],[127,-44,73,-0.15803210980858376],[127,-44,74,-0.1497748778142079],[127,-44,75,-0.11028429230197813],[127,-44,76,-0.00473181807331753],[127,-44,77,0.04823530228841695],[127,-44,78,0.017831780744922456],[127,-44,79,0.011434404216734922],[127,-43,64,-0.17487514380230906],[127,-43,65,-0.10949435026201473],[127,-43,66,-0.0435706082708338],[127,-43,67,-0.0853274280467681],[127,-43,68,-0.1583531787190586],[127,-43,69,-0.1575436989064024],[127,-43,70,-0.10981821921323494],[127,-43,71,-0.07190690402325287],[127,-43,72,-0.12563083268227468],[127,-43,73,-0.15632314630194924],[127,-43,74,-0.1481785761869166],[127,-43,75,-0.10940242187429554],[127,-43,76,-0.00527023119858662],[127,-43,77,0.047412176172820786],[127,-43,78,0.017307294276285575],[127,-43,79,0.010385412996002789],[127,-42,64,-0.17275777955956484],[127,-42,65,-0.10864163159498029],[127,-42,66,-0.043653785589347884],[127,-42,67,-0.08425677873950778],[127,-42,68,-0.15510388813658865],[127,-42,69,-0.15367787081715012],[127,-42,70,-0.10741308621788836],[127,-42,71,-0.0716182707628684],[127,-42,72,-0.1249008678382],[127,-42,73,-0.15465659147473793],[127,-42,74,-0.1466237859950216],[127,-42,75,-0.10854545122353708],[127,-42,76,-0.005820946077172207],[127,-42,77,0.04656985390402231],[127,-42,78,0.016772149853926794],[127,-42,79,0.009342169724553422],[127,-41,64,-0.17068977166924618],[127,-41,65,-0.10781417797283484],[127,-41,66,-0.04374827217641103],[127,-41,67,-0.08321536575448439],[127,-41,68,-0.15191523487698652],[127,-41,69,-0.14988860848609986],[127,-41,70,-0.10506414062429138],[127,-41,71,-0.07134516001127338],[127,-41,72,-0.12418206445136032],[127,-41,73,-0.15303180969385932],[127,-41,74,-0.14510972512147424],[127,-41,75,-0.10771294923986505],[127,-41,76,-0.0063827666953965995],[127,-41,77,0.045710280778326555],[127,-41,78,0.01622760406405981],[127,-41,79,0.008305697977054965],[127,-40,64,-0.1686698339628245],[127,-40,65,-0.10701107967431522],[127,-40,66,-0.04385319330229599],[127,-40,67,-0.08220254768804526],[127,-40,68,-0.14878731073665066],[127,-40,69,-0.14617602986809491],[127,-40,70,-0.1027708758839838],[127,-40,71,-0.07108686128238507],[127,-40,72,-0.12347454314414594],[127,-40,73,-0.15144816639346884],[127,-40,74,-0.14363561826181512],[127,-40,75,-0.10690449030633165],[127,-40,76,-0.006954537869930493],[127,-40,77,0.04483534155248662],[127,-40,78,0.015674852331554898],[127,-40,79,0.007276934741295354],[127,-39,64,-0.16669671302880162],[127,-39,65,-0.1062314547182066],[127,-39,66,-0.04396769831811658],[127,-39,67,-0.08121768067481137],[127,-39,68,-0.1457201503613363],[127,-39,69,-0.14254017232480695],[127,-39,70,-0.10053275712245323],[127,-39,71,-0.07084270235450478],[127,-39,72,-0.12277843750928052],[127,-39,73,-0.1499050300347972],[127,-39,74,-0.14220069874791819],[127,-39,75,-0.10611965569787002],[127,-39,76,-0.007535146340340048],[127,-39,77,0.04394685925010971],[127,-39,78,0.015115029229901338],[127,-39,79,0.006256732244877746],[127,-38,64,-0.1647691888491512],[127,-38,65,-0.10547444961871139],[127,-38,66,-0.044090961724625496],[127,-38,67,-0.0802601198948374],[127,-38,68,-0.14271373323778017],[127,-38,69,-0.13898099549030796],[127,-38,70,-0.09834922313060077],[127,-38,71,-0.07061204944217755],[127,-38,72,-0.12209389430763529],[127,-38,73,-0.1484017739210792],[127,-38,74,-0.14080421020640724],[127,-38,75,-0.1053580348498007],[127,-38,76,-0.008123521659739591],[127,-38,77,0.04304659421952983],[127,-38,78,0.014549208939192752],[127,-38,79,0.005245859913694317],[127,-37,64,-0.16288607530436544],[127,-37,65,-0.10473924001063528],[127,-37,66,-0.04422218409826452],[127,-37,67,-0.07932922098269664],[127,-37,68,-0.13976798573225066],[127,-37,69,-0.13549838422271135],[127,-37,70,-0.09621968834006525],[127,-37,71,-0.0703943072525582],[127,-37,72,-0.12142107360614247],[127,-37,73,-0.14693777787004214],[127,-37,74,-0.13944540805568384],[127,-37,75,-0.10461922649919896],[127,-37,76,-0.008718636890764943],[127,-37,77,0.04213624343379789],[127,-37,78,0.01397840584111457],[127,-37,79,0.004245006445824166],[127,-36,64,-0.16104622055101103],[127,-36,65,-0.1040250311478761],[127,-36,66,-0.044360592877106225],[127,-36,67,-0.07842434133827948],[127,-36,68,-0.13688278316867386],[127,-36,69,-0.13209215162975782],[127,-36,70,-0.09414354477775297],[127,-36,71,-0.07018891893255841],[127,-36,72,-0.1207601488600349],[127,-36,73,-0.145512429746634],[127,-36,74,-0.13812356084566246],[127,-36,75,-0.10390283970255468],[127,-36,76,-0.0093195091141747],[127,-36,77,0.0412174400233235],[127,-36,78,0.01340357524020067],[127,-36,79,0.0032547819851319808],[127,-35,64,-0.15924850727623197],[127,-35,65,-0.10333105827923132],[127,-35,66,-0.04450544300989902],[127,-35,67,-0.0775448413396518],[127,-35,68,-0.13405795193945877],[127,-35,69,-0.12876204215684608],[127,-35,70,-0.09212016399550912],[127,-35,71,-0.06999536591345497],[127,-35,72,-0.1201113069439847],[127,-35,73,-0.1441251268593007],[127,-35,74,-0.13683795144485655],[127,-35,75,-0.10320849473361635],[127,-35,76,-0.009925199757805326],[127,-35,77,0.04029175303129386],[127,-35,78,0.012825614200618465],[127,-35,79,0.0022757203791747456],[127,-34,64,-0.1574918528335961],[127,-34,65,-0.10265658690551623],[127,-34,66,-0.04465601747146183],[127,-34,67,-0.07669008545835007],[127,-34,68,-0.1312932716421592],[127,-34,69,-0.1255077347262224],[127,-34,70,-0.09014889897101086],[127,-34,71,-0.0698131676595191],[127,-34,72,-0.11947474813654717],[127,-34,73,-0.14277527722323047],[127,-34,74,-0.1355878780795069],[127,-34,75,-0.10253582386531683],[127,-34,76,-0.010534814753615562],[127,-34,77,0.03936068738195139],[127,-34,78,0.012245362488059715],[127,-34,79,0.0013082815067018967],[127,-33,64,-0.1557752092650897],[127,-33,65,-0.10200091292240132],[127,-33,66,-0.04481162764814063],[127,-33,67,-0.0758594432779568],[127,-33,68,-0.12858847723555453],[127,-33,69,-0.12232884591665513],[127,-33,70,-0.08822908597648757],[127,-33,71,-0.06964188132751577],[127,-33,72,-0.1188506860625694],[127,-33,73,-0.14146230069448434],[127,-33,74,-0.1343726552298555],[127,-33,75,-0.1018844720400198],[127,-33,76,-0.01114750453082439],[127,-33,77,0.03842568405157398],[127,-33,78,0.01166360360642861],[127,-33,79,3.528536604770514E-4],[127,-32,64,-0.1540975632139417],[127,-32,65,-0.10136336265327296],[127,-32,66,-0.04497161359699523],[127,-32,67,-0.07505229041677898],[127,-32,68,-0.125943261208733],[127,-32,69,-0.11922493317313151],[127,-32,70,-0.08636004641197638],[127,-32,71,-0.069481101343715],[127,-32,72,-0.11823934759798461],[127,-32,73,-0.1401856299789469],[127,-32,74,-0.13319161438861754],[127,-32,75,-0.10125409743223875],[127,-32,76,-0.011762463853033117],[127,-32,77,0.03748812043210204],[127,-32,78,0.011081065919439602],[127,-32,79,-5.902440280838026E-4],[127,-31,64,-0.15245793573328817],[127,-31,65,-0.10074329277675685],[127,-31,66,-0.045135344182765304],[127,-31,67,-0.07426800935585252],[127,-31,68,-0.12335727575722565],[127,-31,69,-0.11619549803677516],[127,-31,70,-0.08454108860033142],[127,-31,71,-0.06933045890524611],[127,-31,72,-0.11764097274158652],[127,-31,73,-0.13894471152042764],[127,-31,74,-0.13204410468701563],[127,-31,75,-0.10064437190824915],[127,-31,76,-0.012378931507414257],[127,-31,77,0.03654931087719173],[127,-31,78,0.010498423847367764],[127,-31,79,-0.0015207591355002827],[127,-30,64,-0.15085538199575751],[127,-30,65,-0.10014009015364284],[127,-30,66,-0.04530221709682511],[127,-30,67,-0.07350599017368799],[127,-30,68,-0.12083013496048839],[127,-30,69,-0.11323998938563444],[127,-30,70,-0.08277150954151488],[127,-30,71,-0.06918962141260675],[127,-30,72,-0.11705581445834241],[127,-30,73,-0.13773900627241462],[127,-30,74,-0.1309294933938315],[127,-30,75,-0.10005498138706752],[127,-30,76,-0.012996189854026875],[127,-30,77,0.03561050742052165],[127,-30,78,0.00991629912951888],[127,-30,79,-0.002438503476441069],[127,-29,64,-0.14928899090894188],[127,-29,65,-0.09955317155783974],[127,-29,66,-0.04547165876227658],[127,-29,67,-0.0727656311891646],[127,-29,68,-0.11836141695514416],[127,-29,69,-0.11035780667733683],[127,-29,70,-0.08105059662384749],[127,-29,71,-0.06905829183990445],[127,-29,72,-0.1164841384985697],[127,-29,73,-0.1365679903579649],[127,-29,74,-0.12984716629283707],[127,-29,75,-0.09948562610716212],[127,-29,76,-0.013613564243141217],[127,-29,77,0.03467290065636591],[127,-29,78,0.009335262143416997],[127,-29,79,-0.0033433506292029633],[127,-28,64,-0.14775788464192666],[127,-28,65,-0.09898198331622833],[127,-28,66,-0.04564312412962507],[127,-28,67,-0.07204633951431418],[127,-28,68,-0.11595066609884694],[127,-28,69,-0.10754830318525287],[127,-28,70,-0.07937762929036453],[127,-28,71,-0.0689362080495144],[127,-28,72,-0.11592622319741035],[127,-28,73,-0.13543115562248245],[127,-28,74,-0.1287965279441511],[127,-28,75,-0.0989360208034145],[127,-28,76,-0.014230422308504026],[127,-28,77,0.03373762077245107],[127,-28,78,0.008755833271929685],[127,-28,79,-0.0042352334675815435],[127,-27,64,-0.14626121806806164],[127,-27,65,-0.09842600086229658],[127,-27,66,-0.045816096367545724],[127,-27,67,-0.07134753151886393],[127,-27,68,-0.11359739511991042],[127,-27,69,-0.10481078922031939],[127,-27,70,-0.07775188065870617],[127,-27,71,-0.06882314205771248],[127,-27,72,-0.11538235925892161],[127,-27,73,-0.13432801008420725],[127,-27,74,-0.12777700183505805],[127,-27,75,-0.09840589479883205],[127,-27,76,-0.014846173144362275],[127,-27,77,0.03280573872525158],[127,-27,78,0.008178484309892655],[127,-27,79,-0.005114141709610147],[127,-26,64,-0.14479817812894186],[127,-26,65,-0.09788472820826247],[127,-26,66,-0.04599008645312456],[127,-26,67,-0.07066863320835202],[127,-26,68,-0.11130108724797001],[127,-26,69,-0.10214453533102823],[127,-26,70,-0.07617261909310155],[127,-26,71,-0.06871889925756101],[127,-26,72,-0.11485284952884761],[127,-26,73,-0.13325807828711686],[127,-26,74,-0.12678803042562978],[127,-26,75,-0.09789499201531525],[127,-26,76,-0.015460266373770288],[127,-26,77,0.03187826754821184],[127,-26,78,0.0076036399022827075],[127,-26,79,-0.005980119492878335],[127,-25,64,-0.14336798312472532],[127,-25,65,-0.09735769734055981],[127,-25,66,-0.04616463266617411],[127,-25,67,-0.07000908051790791],[127,-25,68,-0.1090611983214037],[127,-25,69,-0.09954877547474855],[127,-25,70,-0.07463910972743787],[127,-25,71,-0.06862331760535519],[127,-25,72,-0.11433800876018378],[127,-25,73,-0.1322209015611343],[127,-25,74,-0.12582907509459476],[127,-25,75,-0.0974030709078722],[127,-25,76,-0.016072191115660682],[127,-25,77,0.030956163783482503],[127,-25,78,0.0070316790062459385],[127,-25,79,-0.0068332629856170625],[127,-24,64,-0.14196988193580362],[127,-24,65,-0.09684446754347333],[127,-24,66,-0.04633929999218201],[127,-24,67,-0.06936831952383737],[127,-24,68,-0.1068771588675132],[127,-24,69,-0.0970227101540637],[127,-24,70,-0.07315061593864962],[127,-24,71,-0.06853626677672364],[127,-24,72,-0.11383816337546651],[127,-24,73,-0.13121603819446864],[127,-24,74,-0.1248996159907632],[127,-24,75,-0.09692990432655495],[127,-24,76,-0.01668147485794756],[127,-24,77,0.030040329028003184],[127,-24,78,0.006462936369641145],[127,-24,79,-0.00767371804211269],[127,-23,64,-0.14060315318062208],[127,-23,65,-0.09634462465551799],[127,-23,66,-0.0465136794383048],[127,-23,67,-0.06874580657508261],[127,-23,68,-0.10474837615161954],[127,-23,69,-0.09456550951216998],[127,-23,70,-0.07170640076978425],[127,-23,71,-0.06845764729819319],[127,-23,72,-0.11335365122948418],[127,-23,73,-0.13024306352277784],[127,-23,74,-0.12399915179509438],[127,-23,75,-0.09647527931016717],[127,-23,76,-0.017287682243557888],[127,-23,77,0.0291316115852021],[127,-23,78,0.005897704019290493],[127,-23,79,-0.00850167791025457],[127,-22,64,-0.13926710431447595],[127,-22,65,-0.09585778026320467],[127,-22,66,-0.04668738726690655],[127,-22,67,-0.0681410083468081],[127,-22,68,-0.10267423619165582],[127,-22,69,-0.09217631638203241],[127,-22,70,-0.07030572830247152],[127,-22,71,-0.06838738965994542],[127,-22,72,-0.11288482137605614],[127,-22,73,-0.12930156993988048],[127,-22,74,-0.12312719939845902],[127,-22,75,-0.09603899681578056],[127,-22,76,-0.01789041377616379],[127,-22,77,0.028230808213752453],[127,-22,78,0.005336232752367035],[127,-22,79,-0.009317380998543111],[127,-21,64,-0.13796107067397909],[127,-21,65,-0.09538357083672154],[127,-21,66,-0.046860064151070115],[127,-21,67,-0.06755340181838276],[127,-21,68,-0.10065410573512297],[127,-21,69,-0.08985424928449741],[127,-21,70,-0.06894786497874855],[127,-21,71,-0.06832545341527736],[127,-21,72,-0.11243203384236769],[127,-21,73,-0.1283911668346548],[127,-21,74,-0.12228329349998107],[127,-21,75,-0.09562087138794508],[127,-21,76,-0.018489304452096584],[127,-21,77,0.02733866596517171],[127,-21,78,0.004778733624742033],[127,-21,79,-0.010121108709280392],[127,-20,64,-0.136684414471601],[127,-20,65,-0.09492165681179364],[127,-20,66,-0.04703137425628163],[127,-20,67,-0.06698247417790047],[127,-20,68,-0.0986873341954163],[127,-20,69,-0.08759840537091099],[127,-20,70,-0.06763208087227363],[127,-20,71,-0.06827182627193905],[127,-20,72,-0.1119956594140659],[127,-20,73,-0.12751148045852556],[127,-20,74,-0.1214669861305351],[127,-20,75,-0.09522073077118913],[127,-20,76,-0.019084022324497303],[127,-20,77,0.0264558841025458],[127,-20,78,0.004225379430624266],[127,-20,79,-0.01091318334396602],[127,-19,64,-0.13543652374465442],[127,-19,65,-0.09447172162197588],[127,-19,66,-0.047201004252507686],[127,-19,67,-0.066427722655505],[127,-19,68,-0.09677325554495085],[127,-19,69,-0.0854078633064315],[127,-19,70,-0.06635765090929942],[127,-19,71,-0.06822652318039596],[127,-19,72,-0.11157607943424981],[127,-19,73,-0.1266621537279196],[127,-19,74,-0.120677846105884],[127,-19,75,-0.09483841546934559],[127,-19,76,-0.01967426700556535],[127,-19,77,0.02558311609289601],[127,-19,78,0.0036763061680634623],[127,-19,79,-0.011693966086485383],[127,-18,64,-0.13421681126292762],[127,-18,65,-0.09403347068547475],[127,-18,66,-0.0473686622607653],[127,-18,67,-0.06588865428776222],[127,-18,68,-0.09491119016277758],[127,-18,69,-0.08328168609068543],[127,-18,70,-0.0651238560399618],[127,-18,71,-0.06818958542384279],[127,-18,72,-0.11117368561933695],[127,-18,73,-0.12584284596592663],[127,-18,74,-0.11991545841372377],[127,-18,75,-0.09447377825504233],[127,-18,76,-0.02025976811242156],[127,-18,77,0.02472097166613125],[127,-18,78,0.0031316144852883135],[127,-18,79,-0.01246385506912448],[127,-17,64,-0.13302471339881783],[127,-17,65,-0.09360663035027697],[127,-17,66,-0.04753407673798635],[127,-17,67,-0.06536478561514188],[127,-17,68,-0.09310044663451421],[127,-17,69,-0.08121892381275678],[127,-17,70,-0.06392998436049134],[127,-17,71,-0.06816107971440741],[127,-17,72,-0.11078887989446617],[127,-17,73,-0.12505323258710097],[127,-17,74,-0.11917942353853397],[127,-17,75,-0.09412668363236885],[127,-17,76,-0.020840283661639633],[127,-17,77,0.023870018934040962],[127,-17,78,0.0025913711033161133],[127,-17,79,-0.01322328352582311],[127,-16,64,-0.1318596889637558],[127,-16,65,-0.09319094680130639],[127,-16,66,-0.04769699530395544],[127,-16,67,-0.06485564231474983],[127,-16,68,-0.0913403235028091],[127,-16,69,-0.07921861633808734],[127,-16,70,-0.06277533218724651],[127,-16,71,-0.06814109729986037],[127,-16,72,-0.11042207425103932],[127,-16,73,-0.1242930047292712],[127,-16,74,-0.11846935672800257],[127,-16,75,-0.093797007255631],[127,-16,76,-0.021415598417256647],[127,-16,77,0.023030786563092345],[127,-16,78,0.0020556102105180334],[127,-16,79,-0.0139727180366943],[127,-15,64,-0.13072121801449538],[127,-15,65,-0.09278618493314379],[127,-15,66,-0.04785718351392375],[127,-15,67,-0.0643607587703885],[127,-15,68,-0.08963011096680064],[127,-15,69,-0.07727979592529574],[127,-15,70,-0.06165920508362603],[127,-15,71,-0.06812975308490206],[127,-15,72,-0.1100736906288429],[127,-15,73,-0.12356186883604647],[127,-15,74,-0.11778488720453816],[127,-15,75,-0.09348463530688172],[127,-15,76,-0.021985522196697315],[127,-15,77,0.022203765995244432],[127,-15,78,0.0015243348251912305],[127,-15,79,-0.014712656867357255],[127,-14,64,-0.1296088006324626],[127,-14,65,-0.09239212719146654],[127,-14,66,-0.04801442358014717],[127,-14,67,-0.06387967758178502],[127,-14,68,-0.087969092529147],[127,-14,69,-0.07540148977123284],[127,-14,70,-0.06058091884092824],[127,-14,71,-0.0681271847707033],[127,-14,72,-0.10974416082486316],[127,-14,73,-0.12285954619334655],[127,-14,74,-0.11712565732497005],[127,-14,75,-0.0931894638345526],[127,-14,76,-0.022549888138550273],[127,-14,77,0.02138941371153641],[127,-14,78,9.975181226206515E-4],[127,-14,79,-0.015443628406088414],[127,-13,64,-0.12852202832850465],[127,-13,65,-0.09200862358738159],[127,-13,66,-0.048168546183474846],[127,-13,67,-0.06341196387722114],[127,-13,68,-0.0863565435955297],[127,-13,69,-0.07358273050307698],[127,-13,70,-0.05953985296302684],[127,-13,71,-0.0681335984214211],[127,-13,72,-0.10943392203116292],[127,-13,73,-0.12218579720668103],[127,-13,74,-0.11649136542998902],[127,-13,75,-0.09291142120730067],[127,-13,76,-0.023108581241250557],[127,-13,77,0.02058811260796648],[127,-13,78,4.7508848606637696E-4],[127,-13,79,-0.01616621181213113],[127,-12,64,-0.1274610578771584],[127,-12,65,-0.09163592840551549],[127,-12,66,-0.04831965634571058],[127,-12,67,-0.06295731261623169],[127,-12,68,-0.08479171307566985],[127,-12,69,-0.07182260466806632],[127,-12,70,-0.05853578697530264],[127,-12,71,-0.06814956165263247],[127,-12,72,-0.10914337972340533],[127,-12,73,-0.12154058481595326],[127,-12,74,-0.11588205613006618],[127,-12,75,-0.09265062358697511],[127,-12,76,-0.023661742499573712],[127,-12,77,0.01979989868299088],[127,-12,78,-4.3171746730128934E-5],[127,-12,79,-0.016881171055328305],[127,-11,64,-0.12642627696849731],[127,-11,65,-0.09127447188163738],[127,-11,66,-0.04846800613152775],[127,-11,67,-0.06251550632654719],[127,-11,68,-0.08327383774769008],[127,-11,69,-0.07012020256398706],[127,-11,70,-0.05756863995638534],[127,-11,71,-0.06817576669105062],[127,-11,72,-0.10887290736279721],[127,-11,73,-0.12092396505414654],[127,-11,74,-0.11529793175428618],[127,-11,75,-0.09240728003587535],[127,-11,76,-0.02420964747933721],[127,-11,77,0.019024631030982737],[127,-11,78,-5.575415169348871E-4],[127,-11,79,-0.01758932943831354],[127,-10,64,-0.1254180386907602],[127,-10,65,-0.09092467381677115],[127,-10,66,-0.0486138761739003],[127,-10,67,-0.06208636401317391],[127,-10,68,-0.08180215455280654],[127,-10,69,-0.06847458917773486],[127,-10,70,-0.0566382773605932],[127,-10,71,-0.06821285770764013],[127,-10,72,-0.10862285982261516],[127,-10,73,-0.12033599716863891],[127,-10,74,-0.11473919429917707],[127,-10,75,-0.09218160947760076],[127,-10,76,-0.024752597283109683],[127,-10,77,0.01826213991595468],[127,-10,78,-0.0010682995761395],[127,-10,79,-0.018291484665346247],[127,-9,64,-0.12443666297000679],[127,-9,65,-0.09058694341242542],[127,-9,66,-0.048757572396382835],[127,-9,67,-0.06166973798025612],[127,-9,68,-0.08037590205748248],[127,-9,69,-0.06688480846919564],[127,-9,70,-0.05574451601598761],[127,-9,71,-0.0682614345839494],[127,-9,72,-0.10839357582565341],[127,-9,73,-0.11977674362080391],[127,-9,74,-0.11420604486647491],[127,-9,75,-0.09197383974638958],[127,-9,76,-0.02529091608254839],[127,-9,77,0.017512229408569977],[127,-9,78,-0.0015757250124947245],[127,-9,79,-0.01898841094175997],[127,-8,64,-0.12348243931762624],[127,-8,65,-0.0902616800890474],[127,-8,66,-0.048899423556071894],[127,-8,67,-0.06126551112125907],[127,-8,68,-0.07899432179073407],[127,-8,69,-0.0653498875782578],[127,-8,70,-0.05488712985264621],[127,-8,71,-0.06832205731743592],[127,-8,72,-0.10818538010867634],[127,-8,73,-0.1192462705341218],[127,-8,74,-0.11369868396965162],[127,-8,75,-0.0917842071290904],[127,-8,76,-0.02582494935652419],[127,-8,77,0.016774679116132753],[127,-8,78,-0.002080098024982658],[127,-8,79,-0.019680861351949297],[127,-7,64,-0.12255562941134003],[127,-7,65,-0.0899492742521538],[127,-7,66,-0.049039778944628694],[127,-7,67,-0.06087359438655988],[127,-7,68,-0.07765665951775808],[127,-7,69,-0.063868840786972],[127,-7,70,-0.05406585528676577],[127,-7,71,-0.06839525011765275],[127,-7,72,-0.10799858540036263],[127,-7,73,-0.118744648092173],[127,-7,74,-0.113217311826883],[127,-7,75,-0.09161295593546073],[127,-7,76,-0.026355062227960465],[127,-7,77,0.016049245827604378],[127,-7,78,-0.0025817006147644712],[127,-7,79,-0.020369570059596283],[127,-6,64,-0.12165646951758985],[127,-6,65,-0.08965010800978583],[127,-6,66,-0.049179006242270305],[127,-6,67,-0.06049392442191883],[127,-6,68,-0.07636216645087161],[127,-6,69,-0.062440673244136394],[127,-6,70,-0.053280396273173464],[127,-6,71,-0.06848150520855067],[127,-6,72,-0.10783349422385387],[127,-6,73,-0.11827195089013877],[127,-6,74,-0.11276212864142028],[127,-6,75,-0.09146033809640339],[127,-6,76,-0.026881637896991828],[127,-6,77,0.015335665074785695],[127,-6,78,-0.003080817200161396],[127,-6,79,-0.02105525434088556],[127,-5,64,-0.12078517276299912],[127,-5,65,-0.08936455584476544],[127,-5,66,-0.04931748951956078],[127,-5,67,-0.06012646137127987],[127,-5,68,-0.07511010039889321],[127,-5,69,-0.061064384459820646],[127,-5,70,-0.05253042903890618],[127,-5,71,-0.06858128635182123],[127,-5,72,-0.10769040053459678],[127,-5,73,-0.11782825824320933],[127,-5,74,-0.1123333348702015],[127,-5,75,-0.09132661278962138],[127,-5,76,-0.02740507616791039],[127,-5,77,0.014633652610961645],[127,-5,78,-0.0035777351615173206],[127,-5,79,-0.021738616461037544],[127,-4,64,-0.11994193126227051],[127,-4,65,-0.08909298524492491],[127,-4,66,-0.04945562738165037],[127,-4,67,-0.05977118683723458],[127,-4,68,-0.07389972685612095],[127,-4,69,-0.05973897157744898],[127,-4,70,-0.05181560651044799],[127,-4,71,-0.06869503210569777],[127,-4,72,-0.10756959120358828],[127,-4,73,-0.11741365445494047],[127,-4,74,-0.11193113148130157],[127,-4,75,-0.0912120460919411],[127,-4,76,-0.02792579206716062],[127,-4,77,0.01394290580851103],[127,-4,78,-0.004072745321820132],[127,-4,79,-0.022420345403983997],[127,-3,64,-0.11912691810976964],[127,-3,65,-0.08883575729442693],[127,-3,66,-0.04959383124969665],[127,-3,67,-0.05942810199262334],[127,-3,68,-0.07273032003228343],[127,-3,69,-0.0584634324313145],[127,-3,70,-0.05113556244729849],[127,-3,71,-0.06882315883335466],[127,-3,72,-0.10747134735580252],[127,-3,73,-0.11702822904849175],[127,-3,74,-0.1115557202008088],[127,-3,75,-0.09111691065754318],[127,-3,76,-0.028444214549636117],[127,-3,77,0.013263104977023316],[127,-3,78,-0.0045661423687324955],[127,-3,79,-0.023101118464661254],[127,-2,64,-0.11834028924178884],[127,-2,65,-0.08859322722908321],[127,-2,66,-0.04973252377415583],[127,-2,67,-0.05909722583677032],[127,-2,68,-0.07160116382493235],[127,-2,69,-0.05723676839750712],[127,-2,70,-0.05048991529446917],[127,-2,71,-0.06896606347457794],[127,-2,72,-0.10739594557308253],[127,-2,73,-0.11667207696341854],[127,-2,74,-0.11120730374957546],[127,-2,75,-0.09104148542121514],[127,-2,76,-0.028960785290438],[127,-2,77,0.012593914603567692],[127,-2,78,-0.005058225223384559],[127,-2,79,-0.023781602712954],[127,-1,64,-0.11758218517614638],[127,-1,65,-0.08836574495830789],[127,-1,66,-0.049872137374539],[127,-1,67,-0.058778593589824346],[127,-1,68,-0.07051155273574983],[127,-1,69,-0.05605798704623155],[127,-1,70,-0.04987827176630573],[127,-1,71,-0.06912412609384347],[127,-1,72,-0.10734365897022875],[127,-1,73,-0.11634529872038755],[127,-1,74,-0.11088608607009669],[127,-1,75,-0.09098605532556008],[127,-1,76,-0.029475957559103018],[127,-1,77,0.01193498451693347],[127,-1,78,-0.005549297360901771],[127,-1,79,-0.024462456337801267],[127,0,64,-0.11685273263561857],[127,0,65,-0.08815365555625863],[127,0,66,-0.050013112900343264],[127,0,67,-0.05847225521885554],[127,0,68,-0.06946079273241486],[127,0,69,-0.054926104603620234],[127,0,70,-0.04930023017398227],[127,0,71,-0.06929771221756567],[127,0,72,-0.10731475815265218],[127,0,73,-0.11604800055606045],[127,0,74,-0.11059227254375757],[127,0,75,-0.09095091107109805],[127,0,76,-0.02999019517333655],[127,0,77,0.011285950977663065],[127,0,78,-0.006039667087417666],[127,0,79,-0.025144329879611932],[127,1,64,-0.1161520460614354],[127,1,65,-0.0879572997245226],[127,1,66,-0.05015589840787549],[127,1,67,-0.05817827408944191],[127,1,68,-0.06844820205774302],[127,1,69,-0.053840148231164696],[127,1,70,-0.04875538350881818],[127,1,71,-0.0694871749727654],[127,1,72,-0.10730951206346177],[127,1,73,-0.11578029453015694],[127,1,74,-0.11032607019857092],[127,1,75,-0.09093634888810005],[127,1,76,-0.030503971529235296],[127,1,77,0.010646437695764758],[127,1,78,-0.00652964777803799],[127,1,79,-0.02582786735869513],[127,2,64,-0.11548022902272073],[127,2,65,-0.08777701422844718],[127,2,66,-0.0503009480476561],[127,2,67,-0.05789672573651385],[127,2,68,-0.06747311198778305],[127,2,69,-0.052799158130772676],[127,2,70,-0.04824332229327487],[127,2,71,-0.0696928570388488],[127,2,72,-0.10732818872734358],[127,2,73,-0.11554229860644004],[127,2,74,-0.11008768790736687],[127,2,75,-0.09094267032885743],[127,2,76,-0.031017768704879527],[127,2,77,0.010016056778133829],[127,2,78,-0.007019558079847911],[127,2,79,-0.026513707306896762],[127,3,64,-0.11483737552757603],[127,3,65,-0.08761313230912202],[127,3,66,-0.050448721057222784],[127,3,67,-0.057627696748430476],[127,3,68,-0.06653486754069207],[127,3,69,-0.051802189483503236],[127,3,70,-0.04776363721132383],[127,3,71,-0.0699150924237519],[127,3,72,-0.10737105589820062],[127,3,73,-0.11533413670924039],[127,3,74,-0.10987733657637871],[127,3,75,-0.09097018207909778],[127,3,76,-0.03153207663423153],[127,3,77,0.009394409607675592],[127,3,78,-0.007509722083858025],[127,3,79,-0.027202483709281158],[127,4,64,-0.11422357124124533],[127,4,65,-0.08746598407284584],[127,4,66,-0.05059968085421999],[127,4,67,-0.05737128375839799],[127,4,68,-0.06563282813824743],[127,4,69,-0.05084831422995125],[127,4,70,-0.047315921529605134],[127,4,71,-0.0701542080751977],[127,4,72,-0.10743838161707495],[127,4,73,-0.11515593875694313],[127,4,74,-0.10969522932408712],[127,4,75,-0.09101919578720469],[127,4,76,-0.03204739234826884],[127,4,77,0.00878108765616457],[127,4,78,-0.008000469469509408],[127,4,79,-0.027894826862272258],[127,5,64,-0.11363889461644167],[127,5,65,-0.08733589685966438],[127,5,66,-0.050754294224661774],[127,5,67,-0.05712759253740789],[127,5,68,-0.06476636822180108],[127,5,69,-0.04993662270007064],[127,5,70,-0.04689977332042413],[127,5,71,-0.070410525337236],[127,5,72,-0.10753043468638471],[127,5,73,-0.11500784067362277],[127,5,74,-0.10954158165004352],[127,5,75,-0.09109002790978378],[127,5,76,-0.0325642192802082],[127,5,77,0.008175673232979365],[127,5,78,-0.008492135625014422],[127,5,79,-0.028591364154182987],[127,6,64,-0.11308341794074325],[127,6,65,-0.08722319559248212],[127,6,66,-0.05091303060141457],[127,6,67,-0.05689673718310854],[127,6,68,-0.06393487782459067],[127,6,69,-0.04906622510019344],[127,6,70,-0.04651479749739752],[127,6,71,-0.07068436126178824],[127,6,72,-0.1076474850661356],[127,6,73,-0.11488998437989562],[127,6,74,-0.10941661159338832],[127,6,75,-0.09118299957214858],[127,6,76,-0.03308306663176566],[127,6,77,0.007577740171791324],[127,6,78,-0.008985061746638757],[127,6,79,-0.02929272077373482],[127,7,64,-0.11255720830570017],[127,7,65,-0.08712820310809641],[127,7,66,-0.051076361428053295],[127,7,67,-0.05667883939918831],[127,7,68,-0.06313776310232562],[127,7,69,-0.04823625286484566],[127,7,70,-0.046160607674229415],[127,7,71,-0.07097602978443522],[127,7,72,-0.10778980419738976],[127,7,73,-0.11480251776392209],[127,7,74,-0.10932053988073284],[127,7,75,-0.09129843644227699],[127,7,76,-0.03360444879741722],[127,7,77,0.0069868544573035915],[127,7,78,-0.009479594919771989],[127,7,79,-0.02999952035177688],[127,8,64,-0.11206032850195927],[127,8,65,-0.08705124047127276],[127,8,66,-0.05124475960326185],[127,8,67,-0.05647402785994152],[127,8,68,-0.06237444682390061],[127,8,69,-0.04744585988073302],[127,8,70,-0.04583682785667611],[127,8,71,-0.07128584277310303],[127,8,72,-0.10795766525779356],[127,8,73,-0.11474559463325908],[127,8,74,-0.10925359006294004],[127,8,75,-0.09143666861669524],[127,8,76,-0.03412888484358844],[127,8,77,0.006402574794207664],[127,8,78,-0.009976088184336228],[127,8,79,-0.030712385540973695],[127,9,64,-0.11159283784454485],[127,9,65,-0.08699262727291021],[127,9,66,-0.05141869900114081],[127,9,67,-0.05628243765494014],[127,9,68,-0.061644368824160536],[127,9,69,-0.04669422359016501],[127,9,70,-0.04554309397747845],[127,9,71,-0.07161411095788912],[127,9,72,-0.1081513433536655],[127,9,73,-0.1147193746481969],[127,9,74,-0.10921598864036464],[127,9,75,-0.0915980305168032],[127,9,76,-0.03465689803980939],[127,9,77,0.005824453120445568],[127,9,78,-0.01047490058692771],[127,9,79,-0.03143193853793817],[127,10,64,-0.1111547929321852],[127,10,65,-0.08695268191321724],[127,10,66,-0.05159865406290642],[127,10,67,-0.05610420980891864],[127,10,68,-0.06094698642063052],[127,10,69,-0.04598054598099042],[127,10,70,-0.045279055283671675],[127,10,71,-0.0719611447498084],[127,10,72,-0.10837111565281204],[127,10,73,-0.11472402323710523],[127,10,74,-0.1092079651760875],[127,10,75,-0.09178286079415852],[127,10,76,-0.035189015438920994],[127,10,77,0.005252035066863799],[127,10,78,-0.010976397221864845],[127,10,79,-0.032158801551941375],[127,11,64,-0.1107462483442629],[127,11,65,-0.0869317218706001],[127,11,66,-0.05178509945550255],[127,11,67,-0.05593949087208242],[127,11,68,-0.06028177479603819],[127,11,69,-0.04530405446984617],[127,11,70,-0.045044375585239875],[127,11,71,-0.07232725495567888],[127,11,72,-0.10861726146179398],[127,11,73,-0.11475971149410664],[127,11,74,-0.10922975239655841],[127,11,75,-0.09199150224315822],[127,11,76,-0.03572576750340246],[127,11,77,0.0046848603653851005],[127,11,78,-0.011480949263056914],[127,11,79,-0.0328935972239356],[127,12,64,-0.11036725727881469],[127,12,65,-0.08693006395693122],[127,12,66,-0.05197850979286247],[127,12,67,-0.05578843257631776],[127,12,68,-0.059648227348505105],[127,12,69,-0.044664002685373135],[127,12,70,-0.044838734373776154],[127,12,71,-0.07271275339601488],[127,12,72,-0.10889006225116007],[127,12,73,-0.11482661605938901],[127,12,74,-0.10928158627912875],[127,12,75,-0.0922243017196511],[127,12,76,-0.03626768777502345],[127,12,77,0.004122463207738025],[127,12,78,-0.011988933988477099],[127,12,79,-0.033636948999385026],[127,13,64,-0.11001787213477798],[127,13,65,-0.08694802455973487],[127,13,66,-0.05217935941567169],[127,13,67,-0.05565119155295874],[127,13,68,-0.0590458560112511],[127,13,69,-0.04405967115782309],[127,13,70,-0.04466182781942345],[127,13,71,-0.07311795343234],[127,13,72,-0.10918980163183543],[127,13,73,-0.11492491898235589],[127,13,74,-0.10936370612592082],[127,13,75,-0.09248161006401658],[127,13,76,-0.03681531258508659],[127,13,77,0.003564372556755764],[127,13,78,-0.012500734798843494],[127,13,79,-0.034389481458099454],[127,14,64,-0.10969814504140238],[127,14,65,-0.08698591987165412],[127,14,66,-0.05238812222555315],[127,14,67,-0.05552792910788605],[127,14,68,-0.058474191543558436],[127,14,69,-0.04349036792118418],[127,14,70,-0.04451336965392443],[127,14,71,-0.07354317040985223],[127,14,72,-0.10951676528551732],[127,14,73,-0.11505480756767975],[127,14,74,-0.10947635462341024],[127,14,75,-0.09276378202721153],[127,14,76,-0.037369180802536234],[127,14,77,0.003010112412282873],[127,14,78,-0.013016741231884692],[127,14,79,-0.03515182060392995],[127,15,64,-0.10940812833762695],[127,15,65,-0.08704406610755253],[127,15,66,-0.05260527156981959],[127,15,67,-0.05541881105000945],[127,15,68,-0.05793278379478416],[127,15,69,-0.04295542903378957],[127,15,70,-0.04439309194731102],[127,15,71,-0.07398872202106709],[127,15,72,-0.10987124085177202],[127,15,73,-0.11521647420434254],[127,15,74,-0.10961977788718491],[127,15,75,-0.0930711761984002],[127,15,76,-0.03792983361737084],[127,15,77,0.0024592020336129177],[127,15,78,-0.013537348973484043],[127,15,79,-0.035924594117004716],[127,16,64,-0.10914787500396157],[127,16,65,-0.0871227797094323],[127,16,66,-0.0528312801729984],[127,16,67,-0.05532400756929669],[127,16,68,-0.057421201943105904],[127,16,69,-0.04245421902306977],[127,16,70,-0.0443007457853188],[127,16,71,-0.07445492859559745],[127,16,72,-0.11025351777419501],[127,16,73,-0.11541011617761565],[127,16,74,-0.10979422549126756],[127,16,75,-0.09340415493274841],[127,16,76,-0.03849781435681085],[127,16,77,0.0019111561203952836],[127,16,78,-0.014062959866795907],[127,16,79,-0.03670843157088084],[127,17,64,-0.1089174390492938],[127,17,65,-0.08722237753934078],[127,17,66,-0.05306662011154087],[127,17,67,-0.055243693160759326],[127,17,68,-0.05693903471069434],[127,17,69,-0.0419861312599146],[127,17,70,-0.04423610185430319],[127,17,71,-0.07494211332095664],[127,17,72,-0.11066388710788329],[127,17,73,-0.1156359354639682],[127,17,74,-0.10999995048148163],[127,17,75,-0.09376308427807631],[127,17,76,-0.03907366833182662],[127,17,77,0.001365484953847795],[127,17,78,-0.01459398192035211],[127,17,79,-0.03750396461682948],[127,18,64,-0.10871687585478464],[127,18,65,-0.08734317706027075],[127,18,66,-0.053311762828191146],[127,18,67,-0.055178046590920425],[127,18,68,-0.056485890556889344],[127,18,69,-0.04155058826778818],[127,18,70,-0.04419895093997778],[127,18,71,-0.0754506023988193],[127,18,72,-0.1111026412901622],[127,18,73,-0.11589413850877092],[127,18,74,-0.11023720937226572],[127,18,75,-0.09414833389903389],[127,18,76,-0.03965794271165113],[127,18,77,8.21694500125378E-4],[127,18,78,-0.015130829315979654],[127,18,79,-0.03831182713718357],[127,19,64,-0.10854624247692399],[127,19,65,-0.08748549650505458],[127,19,66,-0.05356717918266715],[127,19,67,-0.055127250903497016],[127,19,68,-0.05606139785094533],[127,19,69,-0.04114704197153986],[127,19,70,-0.044189104346007174],[127,19,71,-0.07598072514094797],[127,19,72,-0.11157007387642624],[127,19,73,-0.11618493598670891],[127,19,74,-0.11050626212643325],[127,19,75,-0.09456027699757441],[127,19,76,-0.04025118642404278],[127,19,77,2.7928647759746565E-4],[127,19,78,-0.015673922417304913],[127,19,79,-0.039132655369568885],[127,20,64,-0.1084055979116587],[127,20,65,-0.08764965503319032],[127,20,66,-0.05383333953546796],[127,20,67,-0.05509149346123691],[127,20,68,-0.055665205025869975],[127,20,69,-0.04077497389060366],[127,20,70,-0.04420639423811736],[127,20,71,-0.07653281400867308],[127,20,72,-0.11206647924279495],[127,20,73,-0.116508542544818],[127,20,74,-0.11080737211740917],[127,20,75,-0.0949992902285719],[127,20,76,-0.04085395007917879],[127,20,77,-2.6224161028106936E-4],[127,20,78,-0.01622368777951298],[127,20,79,-0.03996708800365133],[127,21,64,-0.10829500332129957],[127,21,65,-0.08783597287541267],[127,21,66,-0.05411071386166965],[127,21,67,-0.0550709660209293],[127,21,68,-0.05529698071475118],[127,21,69,-0.04043389528096577],[127,21,70,-0.04425067391898693],[127,21,71,-0.07710720459947229],[127,21,72,-0.11259215225708198],[127,21,73,-0.1168651765279809],[127,21,74,-0.11114080607344132],[127,21,75,-0.0954657536094221],[127,21,76,-0.04146678591508794],[127,21,77,-8.033964748154727E-4],[127,21,78,-0.016780558160890705],[127,21,79,-0.040815766251838095],[127,22,64,-0.10821452222585341],[127,22,65,-0.08804477146584379],[127,22,66,-0.05439977189178063],[127,22,67,-0.05506586483884625],[127,22,68,-0.05495641387096469],[127,22,69,-0.04012334723008284],[127,22,70,-0.044321818038903636],[127,22,71,-0.07770423558401433],[127,22,72,-0.11314738791955106],[127,22,73,-0.11725505968682111],[127,22,74,-0.11150683400340064],[127,22,75,-0.09596005042260874],[127,22,76,-0.04209024776270175],[127,22,77,-0.0013446890730608467],[127,22,78,-0.017344972536658076],[127,22,79,-0.04167933389529129],[127,23,64,-0.10816422066029169],[127,23,65,-0.08827637356150167],[127,23,66,-0.05470098327683915],[127,23,67,-0.05507639080401617],[127,23,68,-0.05464321387358367],[127,23,69,-0.03984290070868009],[127,23,70,-0.044419722746836886],[127,23,71,-0.07832424859677896],[127,23,72,-0.11373248097482512],[127,23,73,-0.1176784168679323],[127,23,74,-0.11190572910382095],[127,23,75,-0.09648256711028022],[127,23,76,-0.04272489102869876],[127,23,77,-0.0018866346684397863],[127,23,78,-0.017917376115520186],[127,23,79,-0.04255843730649373],[127,24,64,-0.1081441672991054],[127,24,65,-0.08853110334885701],[127,24,66,-0.05501481777500863],[127,24,67,-0.05510274959682567],[127,24,68,-0.054357110619189554],[127,24,69,-0.03959215658305692],[127,24,70,-0.04454430578620627],[127,24,71,-0.07896758808309433],[127,24,72,-0.11434772549618953],[127,24,73,-0.11813547568636858],[127,24,74,-0.1123377676468271],[127,24,75,-0.09703369315990885],[127,24,76,-0.04337127269437095],[127,24,77,-0.002429752919482579],[127,24,78,-0.018498220359262442],[127,24,79,-0.043453725449451946],[127,25,64,-0.10815443354945321],[127,25,65,-0.08880928653715837],[127,25,66,-0.05534174545710986],[127,25,67,-0.05514515187065188],[127,25,68,-0.05409785460126744],[127,25,69,-0.039370745591336534],[127,25,70,-0.044695506539379135],[127,25,71,-0.0796346011053139],[127,25,72,-0.11499341444356147],[127,25,73,-0.11862646618043485],[127,25,74,-0.11280322884873184],[127,25,75,-0.09761382098025381],[127,25,76,-0.044029951328908135],[127,25,77,-0.002974567995298836],[127,25,78,-0.01908796300571293],[127,25,79,-0.04436584985859941],[127,26,64,-0.10819509361411182],[127,26,65,-0.08911125043820804],[127,26,66,-0.05568223692862716],[127,26,67,-0.05520381345434608],[127,26,68,-0.0538652169782904],[127,26,69,-0.03917832828685269],[127,26,70,-0.044873286024626445],[127,26,71,-0.08032563711064761],[127,26,72,-0.11566983919632715],[127,26,73,-0.1191516204488415],[127,26,74,-0.11330239471911945],[127,26,75,-0.09822334576691345],[127,26,76,-0.04470148711558929],[127,26,77,-0.0035216087164462815],[127,26,78,-0.019687068095351718],[127,26,79,-0.0452954645973796],[127,27,64,-0.1082662245253102],[127,27,65,-0.08943732403221538],[127,27,66,-0.0560367635658046],[127,27,67,-0.05527895557348306],[127,27,68,-0.05365898963147626],[127,27,69,-0.03901459495158104],[127,27,70,-0.04507762684894253],[127,27,71,-0.08104104766299346],[127,27,72,-0.11637728906222763],[127,27,73,-0.1197111722703339],[127,27,74,-0.1138355498902793],[127,27,75,-0.0988626653568194],[127,27,76,-0.04538644188944395],[127,27,77,-0.0040714087198794],[127,27,78,-0.02029600600176512],[127,27,79,-0.04624322619739981],[127,28,64,-0.10836790615050745],[127,28,65,-0.08978783801938142],[127,28,66,-0.05640579776359434],[127,28,67,-0.055370805088448286],[127,28,68,-0.053478985213168254],[127,28,69,-0.03887926548233813],[127,28,70,-0.045308533119909136],[127,28,71,-0.08178118614101229],[127,28,72,-0.11711605076350397],[127,28,73,-0.12030535670600942],[127,28,74,-0.11440298142696119],[127,28,75,-0.0995321800711502],[127,28,76,-0.046085379185093284],[127,28,77,-0.004624506646765768],[127,28,78,-0.0209152534661652],[127,28,79,-0.047209793579047976],[127,29,64,-0.10850022117111122],[127,29,65,-0.09016312485686441],[127,29,66,-0.05678981319332354],[127,29,67,-0.05547959474755355],[127,29,68,-0.05332503718671631],[127,29,69,-0.03877208925225027],[127,29,70,-0.04556603031953096],[127,29,71,-0.08254640740458251],[127,29,72,-0.11788640790154539],[127,29,73,-0.12093440968462377],[127,29,74,-0.11500497861650999],[127,29,75,-0.1002322925462498],[127,29,76,-0.04679886429359488],[127,29,77,-0.005181446352021146],[127,29,78,-0.02154529363617613],[127,29,79,-0.048195827954443916],[127,30,64,-0.10866325503503205],[127,30,65,-0.09056351878072724],[127,30,66,-0.05718928506800023],[127,30,67,-0.055605563453425315],[127,30,68,-0.05319699985860058],[127,30,69,-0.0386928449497167],[127,30,70,-0.045850165142676896],[127,30,71,-0.08333706743164017],[127,30,72,-0.11868864040128806],[127,30,73,-0.12159856757123871],[127,30,74,-0.11564183273947536],[127,30,75,-0.10096340755219053],[127,30,76,-0.04752746432717498],[127,30,77,-0.005742777134421783],[127,30,78,-0.022186616109026634],[127,30,79,-0.04920199271353711],[127,31,64,-0.10885709588397512],[127,31,65,-0.09098935581251341],[127,31,66,-0.05760469041331001],[127,31,67,-0.055748956541053434],[127,31,68,-0.05309474840351373],[127,31,69,-0.03864134039693681],[127,31,70,-0.04616100530258018],[127,31,71,-0.08415352292736819],[127,31,72,-0.11952302393669285],[127,31,73,-0.12229806671969518],[127,31,74,-0.11631383682092045],[127,31,75,-0.10172593179876406],[127,31,76,-0.04827174829088366],[127,31,77,-0.006309053986259329],[127,31,78,-0.022839716979333177],[127,31,79,-0.05022895329420734],[127,32,64,-0.1090818344563325],[127,32,65,-0.09144097375010903],[127,32,66,-0.058036508342449854],[127,32,67,-0.055910026065976476],[127,32,68,-0.053018178883026054],[127,32,69,-0.03861741234985331],[127,32,70,-0.0464986393056335],[127,32,71,-0.08499613090766116],[127,32,72,-0.12038982933873023],[127,32,73,-0.12303314300951888],[127,32,74,-0.11702128536275587],[127,32,75,-0.10252027372879972],[127,32,76,-0.04903228716032033],[127,32,77,-0.006880837861557664],[127,32,78,-0.023505098891653215],[127,32,79,-0.05127737703724375],[127,33,64,-0.1093375639664627],[127,33,65,-0.09191871214250813],[127,33,66,-0.05848522033297221],[127,33,67,-0.05608903110110784],[127,33,68,-0.05296720825833124],[127,33,69,-0.03862092628111959],[127,33,70,-0.04686317619746404],[127,33,71,-0.08586524825869674],[127,33,72,-0.12128932198731987],[127,33,73,-0.12380403136791988],[127,33,74,-0.11776447405746465],[127,33,75,-0.10334684329876508],[127,33,76,-0.04980965396463078],[127,33,77,-0.0074586959618755935],[127,33,78,-0.02418327109794796],[127,33,79,-0.05234793302704856],[127,34,64,-0.10962437996117863],[127,34,65,-0.0924229122481649],[127,34,66,-0.05895131050393728],[127,34,67,-0.056286238040825984],[127,34,68,-0.05294177439753021],[127,34,69,-0.03865177614755347],[127,34,70,-0.047254745282131624],[127,34,71,-0.08676123127447498],[127,34,72,-0.12222176118882785],[127,34,73,-0.1246109652777173],[127,34,74,-0.1185436994837314],[127,34,75,-0.10420605174676076],[127,34,76,-0.05060442387412955],[127,34,77,-0.00804320203881944],[127,34,78,-0.024874749520149533],[127,34,79,-0.05344129191899568],[127,35,64,-0.10994238015423771],[127,35,65,-0.09295391697662939],[127,35,66,-0.05943526589173947],[127,35,67,-0.05650192091101052],[127,35,68,-0.05294183607781992],[127,35,69,-0.038709884143345294],[127,35,70,-0.04767349581611438],[127,35,71,-0.08768443517418831],[127,35,72,-0.12318739954083993],[127,35,73,-0.12545417627215322],[127,35,74,-0.11935925878459577],[127,35,75,-0.10509831134813954],[127,35,76,-0.05141717429200333],[127,35,77,-0.008634936712432102],[127,35,78,-0.02558005681803747],[127,35,79,-0.054558125754417944],[127,36,64,-0.11029166423958735],[127,36,65,-0.09351207081313967],[127,36,66,-0.059937576722985955],[127,36,67,-0.056736361683709956],[127,36,68,-0.05296737298282375],[127,36,69,-0.03879520044006997],[127,36,70,-0.048119596678534576],[127,36,71,-0.08863521360123608],[127,36,72,-0.12418648228598965],[127,36,73,-0.12633389341762513],[127,36,74,-0.12021144932879196],[127,36,75,-0.10602403515903197],[127,36,76,-0.05224848494960054],[127,36,77,-0.009234487804627706],[127,36,78,-0.026299722462601028],[127,36,79,-0.05569910776419706],[127,37,64,-0.11067233368416132],[127,37,65,-0.09409771972592083],[127,37,66,-0.06045873668291673],[127,37,67,-0.05698985059522074],[127,37,68,-0.053018385695255084],[127,37,69,-0.03890770291441944],[127,37,70,-0.048593236018978844],[127,37,71,-0.08961391810578935],[127,37,72,-0.1252192466568281],[127,37,73,-0.12725034278557604],[127,37,74,-0.12110056835611052],[127,37,75,-0.10698363674823894],[127,37,76,-0.05309893800496238],[127,37,77,-0.009842450686925111],[127,37,78,-0.027034282815129502],[127,37,79,-0.056864912162046075],[127,38,64,-0.11108449150101411],[127,38,65,-0.09471121105594929],[127,38,66,-0.060999243177889885],[127,38,67,-0.0572626864663774],[127,38,68,-0.05309489568500772],[127,38,69,-0.03904739686440417],[127,38,70,-0.04909462088411406],[127,38,71,-0.09062089761282897],[127,38,72,-0.12628592121383178],[127,38,73,-0.12820374691488604],[127,38,74,-0.12202691260769613],[127,38,75,-0.10797752991804464],[127,38,76,-0.05396911814433395],[127,38,77,-0.010459428641769778],[127,38,78,-0.0277842812122876],[127,38,79,-0.058056213928626664],[127,39,64,-0.11152824200356627],[127,39,65,-0.09535289338894479],[127,39,66,-0.061559597590465184],[127,39,67,-0.05755517702384382],[127,39,68,-0.053196945292638985],[127,39,69,-0.03921431471457277],[127,39,70,-0.049623976824142046],[127,39,71,-0.09165649787759737],[127,39,72,-0.1273867251787715],[127,39,73,-0.12919432426622882],[127,39,74,-0.12299077794227799],[127,39,75,-0.10900612841458202],[127,39,76,-0.0548596126864449],[127,39,77,-0.011086033236721334],[127,39,78,-0.0285502680574131],[127,39,79,-0.05927368858767953],[127,40,64,-0.11200369054177806],[127,40,65,-0.09602311640941993],[127,40,66,-0.06214030552570545],[127,40,67,-0.05786763922125612],[127,40,68,-0.05332459770816091],[127,40,69,-0.03940851571069258],[127,40,70,-0.0501815474800638],[127,40,71,-0.092721060930523],[127,40,72,-0.12852186776587202],[127,40,73,-0.13022228867004712],[127,40,74,-0.12399245893948142],[127,40,75,-0.11006984562854615],[127,40,76,-0.05577101168949075],[127,40,77,-0.011722884710867345],[127,40,78,-0.029332800918349992],[127,40,79,-0.060518011975475364],[127,41,64,-0.11251094322106596],[127,41,65,-0.09672223073661797],[127,41,66,-0.06274187704730125],[127,41,67,-0.0582003995590346],[127,41,68,-0.05347793694492973],[127,41,69,-0.039630085604157754],[127,41,70,-0.050767594152587615],[127,41,71,-0.09381492451369441],[127,41,72,-0.12969154751330278],[127,41,73,-0.1312878487698969],[127,41,74,-0.1250322484914337],[127,41,75,-0.11116909428711724],[127,41,76,-0.05670390806078148],[127,41,77,-0.012370612372806875],[127,41,78,-0.03013244463211119],[127,41,79,-0.06178986000492842],[127,42,64,-0.11305010660481406],[127,42,65,-0.09745058774222988],[127,42,66,-0.06336482690218775],[127,42,67,-0.05855379440171289],[127,42,68,-0.05365706780835389],[127,42,69,-0.03987913632627831],[127,42,70,-0.05138239535345203],[127,42,71,-0.09493842151109044],[127,42,72,-0.13089595161775305],[127,42,73,-0.13239120746310107],[127,42,74,-0.1261104373840229],[127,42,75,-0.11230428613810248],[127,42,76,-0.057658897669143644],[127,42,77,-0.013029855009602466],[127,42,78,-0.030949771416724284],[127,42,79,-0.06308990842584158],[127,43,64,-0.11362128740132484],[127,43,65,-0.09820853934977386],[127,43,66,-0.06400967473229112],[127,43,67,-0.05892817029157202],[127,43,68,-0.053862115859002295],[127,43,69,-0.040155805652432965],[127,43,70,-0.052026246339810955],[127,43,71,-0.09609187937480838],[127,43,72,-0.13213525527496126],[127,43,73,-0.13353256134074512],[127,43,74,-0.12722731386922367],[127,43,75,-0.11347583162736201],[127,43,76,-0.058636579460185446],[127,43,77,-0.01370126130606669],[127,43,78,-0.03178536099058579],[127,43,79,-0.06441883258278391],[127,44,64,-0.11422459213609974],[127,44,65,-0.09899643781558089],[127,44,66,-0.06467694527208077],[127,44,67,-0.059323884257377196],[127,44,68,-0.05409322736962799],[127,44,69,-0.040460256855974285],[127,44,70,-0.052699458632285534],[127,44,71,-0.09727561954965452],[127,44,72,-0.1334096210292611],[127,44,73,-0.134712100129216],[127,44,74,-0.12838316323003438],[127,44,75,-0.11468413957071902],[127,44,76,-0.05963755557463403],[127,44,77,-0.014385490273790599],[127,44,78,-0.03263980069970449],[127,44,79,-0.06577730717222276],[127,45,64,-0.11486012681037634],[127,45,65,-0.09981463549136942],[127,45,66,-0.06536716853061975],[127,45,67,-0.059741304116988914],[127,45,68,-0.05435056927552311],[127,45,69,-0.04079267835165762],[127,45,70,-0.053402359517231726],[127,45,71,-0.09848995689857755],[127,45,72,-0.1347191981353995],[127,45,73,-0.13593000613564632],[127,45,74,-0.12957826733968383],[127,45,75,-0.11592961682166313],[127,45,76,-0.060662431470025306],[127,45,77,-0.015083211689331532],[127,45,78,-0.0335136856532342],[127,45,79,-0.0671660060006261],[127,46,64,-0.11552799654682361],[127,46,65,-0.10066348456837201],[127,46,66,-0.06608087995674547],[127,46,67,-0.060180808772529175],[127,46,68,-0.05463432911747841],[127,46,69,-0.041153283328213164],[127,46,70,-0.054135291533670034],[127,46,71,-0.09973519913146006],[127,46,72,-0.13606412193596806],[127,46,73,-0.13718645369968743],[127,46,74,-0.1308129042167971],[127,46,75,-0.11721266793619095],[127,46,76,-0.06171181604602705],[127,46,77,-0.015795106540925336],[127,46,78,-0.03440761886766237],[127,46,79,-0.0685856017452782],[127,47,64,-0.11622829542198036],[127,47,65,-0.10154332697184104],[127,47,66,-0.06681861072500897],[127,47,67,-0.06064277860589352],[127,47,68,-0.05494470505580992],[127,47,69,-0.04154229941898605],[127,47,70,-0.05489860196480068],[127,47,71,-0.10101163622950012],[127,47,72,-0.13744450321762067],[127,47,73,-0.13848159858384743],[127,47,74,-0.13208733747795576],[127,47,75,-0.11853368470581248],[127,47,76,-0.06278631161322351],[127,47,77,-0.016521857292438567],[127,47,78,-0.03532220119921445],[127,47,79,-0.0700367554686052],[127,48,64,-0.11696099301040247],[127,48,65,-0.10245438058918384],[127,48,66,-0.06758077398294496],[127,48,67,-0.061127481473374934],[127,48,68,-0.055281791112422006],[127,48,69,-0.04195985322514801],[127,48,70,-0.055692526806201036],[127,48,71,-0.10231942399573574],[127,48,72,-0.1388603113331052],[127,48,73,-0.13981546074341245],[127,48,74,-0.13340169878226213],[127,48,75,-0.11989292830682423],[127,48,76,-0.06388639610559138],[127,48,77,-0.017264030016472073],[127,48,78,-0.03625791276958061],[127,48,79,-0.0715199972442477],[127,49,64,-0.11772596351836472],[127,49,65,-0.1033967683782988],[127,49,66,-0.06836769427394677],[127,49,67,-0.06163510218240105],[127,49,68,-0.05564560619293729],[127,49,69,-0.042405998912330344],[127,49,70,-0.05651721910104646],[127,49,71,-0.10365861229313195],[127,49,72,-0.14031140232031233],[127,49,73,-0.14118795237527176],[127,49,74,-0.13475601583592153],[127,49,75,-0.12129055730356245],[127,49,76,-0.06501245144384292],[127,49,77,-0.01802210297402426],[127,49,78,-0.03721514113550402],[127,49,79,-0.07303575381989669],[127,50,64,-0.11852306039347531],[127,50,65,-0.10437059319380164],[127,50,66,-0.06917968292586146],[127,50,67,-0.06216581819583726],[127,50,68,-0.05603616959161757],[127,50,69,-0.04288079354190492],[127,50,70,-0.05737282426392648],[127,50,71,-0.10502922055470919],[127,50,72,-0.1417975945650213],[127,50,73,-0.14259895375320877],[127,50,74,-0.13615028842607402],[127,50,75,-0.1227267039375889],[127,50,76,-0.0661648404438316],[127,50,77,-0.0187965439975248],[127,50,78,-0.03819425852405053],[127,50,79,-0.07458442560436748],[127,51,64,-0.11935211663253485],[127,51,65,-0.10537593813022553],[127,51,66,-0.0700170387800961],[127,51,67,-0.06271980051533163],[127,51,68,-0.05645350150737279],[127,51,69,-0.04338429724156583],[127,51,70,-0.058259480074523286],[127,51,71,-0.10643123782465293],[127,51,72,-0.14331866884175476],[127,51,73,-0.14404831325690778],[127,51,74,-0.1375844884635758],[127,51,75,-0.12420147425497251],[127,51,76,-0.0673439073931887],[127,51,77,-0.01958781137094467],[127,51,78,-0.03919562239956249],[127,51,79,-0.07616638681729365],[127,52,64,-0.1202129435904553],[127,52,65,-0.1064128653508631],[127,52,66,-0.07088004739474112],[127,52,67,-0.06329721304316387],[127,52,68,-0.056897622036646875],[127,52,69,-0.04391657184721515],[127,52,70,-0.05917731514003224],[127,52,71,-0.10786462129771397],[127,52,72,-0.14487436686670804],[127,52,73,-0.14553584589312565],[127,52,74,-0.13905855849785792],[127,52,75,-0.12571494670015157],[127,52,76,-0.06854997708921094],[127,52,77,-0.020396353164766606],[127,52,78,-0.04021957448741534],[127,52,79,-0.07778198409479549],[127,53,64,-0.12110532974009423],[127,53,65,-0.10748141485505554],[127,53,66,-0.07176898017670176],[127,53,67,-0.06389821188117983],[127,53,68,-0.0573685501059955],[127,53,69,-0.04447767948330344],[127,53,70,-0.060126447298618574],[127,53,71,-0.10932929483597457],[127,53,72,-0.1464643898467895],[127,53,73,-0.1470613317958232],[127,53,74,-0.1405724101935573],[127,53,75,-0.12726717066958845],[127,53,76,-0.06978335383374003],[127,53,77,-0.021222606524160668],[127,53,78,-0.04126643975798007],[127,53,79,-0.0794315350603072],[127,54,64,-0.12202903938675623],[127,54,65,-0.10858160318674426],[127,54,66,-0.07268409344389826],[127,54,67,-0.06452294456752529],[127,54,68,-0.05786630234541012],[127,54,69,-0.04506768108317036],[127,54,70,-0.06110698196677184],[127,54,71,-0.11082514746880134],[127,54,72,-0.1480883970316793],[127,54,73,-0.14862451471101212],[127,54,74,-0.14212592277366579],[127,54,75,-0.12885816502957675],[127,54,76,-0.0710443203879842],[127,54,77,-0.022066996911965873],[127,54,78,-0.04233652537355762],[127,54,79,-0.08111532686524886],[127,55,64,-0.12298381134121474],[127,55,65,-0.10971342208722534],[127,55,66,-0.07362562741866811],[127,55,67,-0.06517154925191454],[127,55,68,-0.05839089190346341],[127,55,69,-0.04568663485099914],[127,55,70,-0.062119010433555714],[127,55,71,-0.11235203188201733],[127,55,72,-0.14974600427603388],[127,55,73,-0.15022510047227983],[127,55,74,-0.14371894143412328],[127,55,75,-0.1304879166027407],[127,55,76,-0.072333136890372],[127,55,77,-0.022929937308175212],[127,55,78,-0.043430119601174544],[127,55,79,-0.08283361470441986],[127,56,64,-0.12396935755530468],[127,56,65,-0.11087683709523839],[127,56,66,-0.07459380515364114],[127,56,67,-0.06584415381026021],[127,56,68,-0.058942327205462226],[127,56,69,-0.04633459466716756],[127,56,70,-0.06316260810497618],[127,56,71,-0.11390976290257299],[127,56,72,-0.15143678261920238],[127,56,73,-0.15186275547318923],[127,56,74,-0.14535127573502088],[127,56,75,-0.13215637862800625],[127,56,76,-0.07365003974073417],[127,56,77,-0.023811827367800034],[127,56,78,-0.04454749069432798],[127,56,79,-0.08458662031124184],[127,57,64,-0.12498536172429793],[127,57,65,-0.11207178609771781],[127,57,66,-0.07558883139150484],[127,57,67,-0.06654087489958116],[127,57,68,-0.05952061065589035],[127,57,69,-0.04701160843893368],[127,57,70,-0.06423783270190771],[127,57,71,-0.11549811598525972],[127,57,72,-0.15316025689008192],[127,57,73,-0.1535371051430076],[127,57,74,-0.14702269797381473],[127,57,75,-0.13386346919906145],[127,57,76,-0.07499524045430965],[127,57,77,-0.024713052539147625],[127,57,78,-0.04568888574694981],[127,57,79,-0.08637453043822024],[127,58,64,-0.12603147786040905],[127,58,65,-0.11329817783467232],[127,58,66,-0.07661089136016755],[127,58,67,-0.06726181695414746],[127,58,68,-0.060125737286491926],[127,58,69,-0.04771771639852421],[127,58,70,-0.06534472241519976],[127,58,71,-0.1171168257081832],[127,58,72,-0.1549159043448875],[127,58,73,-0.1552477324323696],[127,58,74,-0.14873294154611677],[127,58,75,-0.13560906968648034],[127,58,76,-0.07636892448920424],[127,58,77,-0.025633983144656296],[127,58,78,-0.046854529522983926],[127,58,79,-0.08819749532815872],[127,59,64,-0.1271073288420048],[127,59,65,-0.11455589036190968],[127,59,66,-0.07766014950502961],[127,59,67,-0.06800707112397152],[127,59,68,-0.06075769335152038],[127,59,69,-0.04845294935093397],[127,59,70,-0.06648329402187368],[127,59,71,-0.11876558428399489],[127,59,72,-0.15670315334586646],[127,59,73,-0.156994176315748],[127,59,74,-0.15048169929989516],[127,59,75,-0.13739302314896162],[127,59,76,-0.07777125005116653],[127,59,77,-0.026574973426641096],[127,59,78,-0.04804462326519606],[127,59,79,-0.0900556271819305],[127,60,64,-0.12821250494327827],[127,60,65,-0.11584476947553894],[127,60,66,-0.07873674816025039],[127,60,67,-0.06877671415687563],[127,60,68,-0.061416454871822394],[127,60,69,-0.04921732687395717],[127,60,70,-0.06765354096658148],[127,60,71,-0.12044404009411541],[127,60,72,-0.15852138208919186],[127,60,73,-0.1587759303178198],[127,60,74,-0.152268621889144],[127,60,75,-0.13921513273935096],[127,60,76,-0.07920234687974595],[127,60,77,-0.027536360560480123],[127,60,78,-0.049259343487021594],[127,60,79,-0.09194899862883239],[127,61,64,-0.129346562349313],[127,61,65,-0.11716462710236034],[127,61,66,-0.07984080616103707],[127,61,67,-0.06957080722545637],[127,61,68,-0.062101986129558646],[127,61,69,-0.050010855473171106],[127,61,70,-0.06885543141272726],[127,61,71,-0.12215179625334337],[127,61,72,-0.1603699173903766],[127,61,73,-0.16059244107095744],[127,61,74,-0.15409331613324448],[127,61,75,-0.14107516011128585],[127,61,76,-0.08066231502003378],[127,61,77,-0.028518463637895588],[127,61,78,-0.05049884075138835],[127,61,79,-0.09387764120569762],[127,62,64,-0.13050902166169046],[127,62,65,-0.11851523966052568],[127,62,66,-0.08097241739922507],[127,62,67,-0.0703893947004555],[127,62,68,-0.06281423811557695],[127,62,69,-0.050833526694878055],[127,62,70,-0.07008890626797734],[127,62,71,-0.1238884092125027],[127,62,72,-0.16224803353576103],[127,62,73,-0.16244310691130412],[127,62,74,-0.15595534338849934],[127,62,75,-0.14297282383255477],[127,62,76,-0.08215122358443044],[127,62,77,-0.029521582623214377],[127,62,78,-0.05176323844068117],[127,62,79,-0.09584154385119822],[127,63,64,-0.13169936640002014],[127,63,65,-0.11989634639509901],[127,63,66,-0.08213164932463929],[127,63,67,-0.07123250287221351],[127,63,68,-0.06355314693166553],[127,63,69,-0.05168531520029365],[127,63,70,-0.07135387718918558],[127,63,71,-0.12565338740698231],[127,63,72,-0.1641549512087636],[127,63,73,-0.16432727652108398],[127,63,74,-0.15785421793853646],[127,63,75,-0.14490779781148566],[127,63,76,-0.08366910950907537],[127,63,77,-0.03054599728567534],[127,63,78,-0.0530526315221964],[127,63,79,-0.09784065142195641],[127,64,64,-0.13291704150491396],[127,64,65,-0.12130764769333158],[127,64,66,-0.08331854139489368],[127,64,67,-0.0721001386220036],[127,64,68,-0.06431863215007658],[127,64,69,-0.05256617680450267],[127,64,70,-0.07265022457201216],[127,64,71,-0.12744618995913648],[127,64,72,-0.16608983649962422],[127,64,73,-0.16624424762487292],[127,64,74,-0.15978940541040768],[127,64,75,-0.1468797097428033],[127,64,76,-0.08521597630969796],[127,64,77,-0.031591966110980294],[127,64,78,-0.05436708531355393],[127,64,79,-0.09987486323719856],[127,65,64,-0.1341614518482211],[127,65,65,-0.12274880338481156],[127,65,66,-0.08453310347662644],[127,65,67,-0.072992288045322],[127,65,68,-0.06511059513301372],[127,65,69,-0.053476046484062324],[127,65,70,-0.07397779553087487],[127,65,71,-0.129266225442742],[127,65,72,-0.16805180000752476],[127,65,73,-0.16819326574779117],[127,65,74,-0.161760321223493],[127,65,75,-0.14888813957968977],[127,65,76,-0.08679179284192949],[127,65,77,-0.032659725195565044],[127,65,78,-0.055706634252798],[127,65,79,-0.10194403165894557],[127,66,64,-0.13543196075644057],[127,66,65,-0.12421943103176411],[127,66,66,-0.0857753142012702],[127,66,67,-0.07390891502928984],[127,66,68,-0.06592891731494682],[127,66,69,-0.05441483635740914],[127,66,70,-0.07533640187516592],[127,66,71,-0.13111285071782017],[127,66,72,-0.17003989604397868],[127,66,73,-0.17017352304361322],[127,66,74,-0.163766329078387],[127,66,75,-0.15093261803883307],[127,66,76,-0.08839649207115134],[127,66,77,-0.03374948712711844],[127,66,78,-0.05707128067795556],[127,66,79,-0.10404796071474716],[127,67,64,-0.1367278885535631],[127,67,65,-0.125719104215214],[127,67,66,-0.08704511927892446],[127,67,67,-0.07484995978670554],[127,67,68,-0.06677345845097077],[127,67,69,-0.05538243364257488],[127,67,70,-0.07672581808796967],[127,67,71,-0.13298536984422524],[127,67,72,-0.1720531219463974],[127,67,73,-0.17218415720094873],[127,67,74,-0.16580673949322927],[127,67,75,-0.15301262514556946],[127,67,76,-0.09002996985730234],[127,67,77,-0.03486143985524469],[127,67,78,-0.05846099362114865],[127,67,79,-0.10618640477025866],[127,68,64,-0.13804851112965733],[127,68,65,-0.12724735082279437],[127,68,66,-0.08834242977396578],[127,68,67,-0.07581533734934556],[127,68,68,-0.06764405483459916],[127,68,69,-0.0563786985970182],[127,68,70,-0.07814577931383426],[127,68,71,-0.13488303308250832],[127,68,72,-0.17409041751072493],[127,68,73,-0.17422425043565984],[127,68,74,-0.16788080839496408],[127,68,75,-0.15512758882621908],[127,68,76,-0.0916920837600393],[127,68,77,-0.03599574555615526],[127,68,78,-0.05987570762232794],[127,68,79,-0.10835906725889602],[127,69,64,-0.13939305854179532],[127,69,65,-0.1288036513443523],[127,69,66,-0.08966712034644185],[127,69,67,-0.07680493602345917],[127,69,68,-0.06854051748873831],[127,69,69,-0.057403462444747366],[127,69,70,-0.07959597936246221],[127,69,71,-0.13680503599060934],[127,69,72,-0.17615066455196446],[127,69,73,-0.1762928285777501],[127,69,74,-0.1699877357732184],[127,69,75,-0.15727688355494585],[127,69,76,-0.09338265186990359],[127,69,77,-0.03715253949557214],[127,69,78,-0.061315321567942574],[127,69,79,-0.11056559947598918],[127,70,64,-0.1407607136540777],[127,70,65,-0.1303874371817313],[127,70,66,-0.09101902746356748],[127,70,67,-0.07781861581064374],[127,70,68,-0.06946263033387513],[127,70,69,-0.05845652529626149],[127,70,70,-0.08107606873550233],[127,70,71,-0.138750518624978],[127,70,72,-0.17823268660135436],[127,70,73,-0.17838886026099385],[127,70,74,-0.17212666440459506],[127,70,75,-0.15945982906257708],[127,70,76,-0.09510145167126774],[127,70,77,-0.038331928894182896],[127,70,78,-0.06277969755997345],[127,70,79,-0.11280559944490658],[127,71,64,-0.142150610823656],[127,71,65,-0.1319980889793153],[127,71,66,-0.09239794758589548],[127,71,67,-0.07885620679750266],[127,71,68,-0.07041014833777781],[127,71,69,-0.05953765406714307],[127,71,70,-0.08258565268387365],[127,71,71,-0.14071856485465484],[127,71,72,-0.18033524874873386],[127,71,73,-0.18051125622348368],[127,71,74,-0.17429667865520676],[127,71,75,-0.1616756891148579],[127,71,76,-0.09684821894289501],[127,71,77,-0.03953399180009363],[127,71,78,-0.06426865982080975],[127,71,79,-0.11507861086259079],[127,72,64,-0.1435618346398463],[127,72,65,-0.13363493498219653],[127,72,66,-0.09380363533309029],[127,72,67,-0.07991750751781279],[127,72,68,-0.07138279565136381],[127,72,69,-0.06064658040152736],[127,72,70,-0.0841242893033754],[127,72,71,-0.14270820179684132],[127,72,72,-0.18245705763851455],[127,72,73,-0.18265886872728282],[127,72,74,-0.17649680336939505],[127,72,75,-0.16392367036774194],[127,72,76,-0.09862264670210492],[127,72,77,-0.04075877597294278],[127,72,78,-0.06578199363960277],[127,72,79,-0.11738412213201259],[127,73,64,-0.1449934187235776],[127,73,65,-0.13529724942906765],[127,73,66,-0.0952358016345455],[127,73,67,-0.08100228329121045],[127,73,68,-0.07238026373571113],[127,73,69,-0.06178299860702278],[127,73,70,-0.08569148767661076],[127,73,71,-0.14471839938240305],[127,73,72,-0.1845967616274288],[127,73,73,-0.18483049110527347],[127,73,74,-0.17872600285261797],[127,73,75,-0.1662029213073669],[127,73,76,-0.10042438419862182],[127,73,77,-0.04200629778447816],[127,73,78,-0.06731944436580306],[127,73,79,-0.11972156548902102],[127,74,64,-0.14644434459449412],[127,74,65,-0.13698425098709244],[127,74,66,-0.09669411187034803],[127,74,67,-0.08211026454264725],[127,74,68,-0.07340220948546546],[127,74,69,-0.06294656360795464],[127,74,70,-0.08728670606944727],[127,74,71,-0.1467480700595438],[127,74,72,-0.18675295111187493],[127,74,73,-0.1870248574430979],[127,74,74,-0.18098317995642876],[127,74,75,-0.16851253128231913],[127,74,76,-0.10225303596418449],[127,74,77,-0.04327654114048199],[127,74,78,-0.06888071645558977],[127,74,79,-0.12209031623094406],[127,75,64,-0.1479135406131999],[127,75,65,-0.13869510123629258],[127,75,66,-0.0981781840084804],[127,75,67,-0.0832411451072272],[127,75,68,-0.0744482533542784],[127,75,69,-0.06413688892419175],[127,75,70,-0.08890935019053066],[127,75,71,-0.14879606864379663],[127,75,72,-0.188924159032426],[127,75,73,-0.18924064240400562],[127,75,74,-0.18326717527353775],[127,75,75,-0.170851529635866],[127,75,76,-0.10410816092411711],[127,75,77,-0.04456945642911467],[127,75,78,-0.07046547257700778],[127,75,79,-0.12448969205428853],[127,76,64,-0.14939988100620072],[127,76,65,-0.14042890321113807],[127,76,66,-0.09968758674443952],[127,76,67,-0.08439458052532123],[127,76,68,-0.07551797748822822],[127,76,69,-0.06535354468313652],[127,76,70,-0.09055877152255672],[127,76,71,-0.15086119232220008],[127,76,72,-0.19110886156262497],[127,76,73,-0.19147646120416026],[127,76,74,-0.18557676645084908],[127,76,75,-0.1732188849457569],[127,76,76,-0.10598927157705017],[127,76,77,-0.04588495950083741],[127,76,78,-0.07207333277962277],[127,76,79,-0.12691895250872326],[127,77,64,-0.15090218498114663],[127,77,65,-0.1421847000071998],[127,77,66,-0.10122183764976188],[127,77,67,-0.08557018633314394],[127,77,68,-0.07661092387347261],[127,77,69,-0.06659605567273875],[127,77,70,-0.09223426573416492],[127,77,71,-0.15294218081925454],[127,77,72,-0.19330547898875022],[127,77,73,-0.1937308697457117],[127,77,74,-0.18791066762828246],[127,77,75,-0.17561350437911938],[127,77,76,-0.10789583324896439],[127,77,77,-0.04722293068513705],[127,77,78,-0.0737038737344751],[127,77,79,-0.12937729857436298],[127,78,64,-0.1524192159400403],[127,78,65,-0.14396147346089264],[127,78,66,-0.10278040133628231],[127,78,67,-0.08676753635432279],[127,78,68,-0.07772659250474466],[127,78,69,-0.06786389944373418],[127,78,70,-0.09393507118150225],[127,78,71,-0.15503771673193972],[127,78,72,-0.19551237678674036],[127,78,73,-0.19600236491464865],[127,78,74,-0.19026752901108354],[127,78,75,-0.17803423316989442],[127,78,76,-0.10982726342772876],[127,78,77,-0.04858321384938934],[127,78,78,-0.0753566280501154],[127,78,79,-0.13186387236919678],[127,79,64,-0.1539496807981034],[127,79,65,-0.14575814291048084],[127,79,66,-0.10436268764327367],[127,79,67,-0.08798616099830488],[127,79,68,-0.078864439581627],[127,79,69,-0.06915650446959322],[127,79,70,-0.09566036750863585],[127,79,71,-0.15714642604070325],[127,79,72,-0.19772786690192487],[127,79,73,-0.19828938505011925],[127,79,74,-0.19264593658318502],[127,79,75,-0.18047985422613064],[127,79,76,-0.11178293118426073],[127,79,77,-0.04996561550525604],[127,79,78,-0.07703108367045791],[127,79,79,-0.13437775699328577],[127,80,64,-0.15549222941594243],[127,80,65,-0.14757356404660268],[127,80,66,-0.10596804985489666],[127,80,67,-0.0892255455717397],[127,80,68,-0.08002387573981765],[127,80,69,-0.07047324837289112],[127,80,70,-0.09740927435604482],[127,80,71,-0.15926687880287338],[127,80,72,-0.19995020923656956],[127,80,73,-0.2005903105914948],[127,80,74,-0.1950444119689652],[127,80,75,-0.18294908787425845],[127,80,76,-0.11376215668632188],[127,80,77,-0.05136990396801444],[127,80,78,-0.07872668336007206],[127,80,79,-0.1369179765160525],[127,81,64,-0.15704545415264345],[127,81,65,-0.14940652786067676],[127,81,66,-0.10759578295570803],[127,81,67,-0.0904851286093084],[127,81,68,-0.08120426432494031],[127,81,69,-0.07181345622709144],[127,81,70,-0.09918085018651818],[127,81,71,-0.16139759003448237],[127,81,72,-0.20217761334958448],[127,81,73,-0.20290346490902236],[127,81,74,-0.1974614124505376],[127,81,75,-0.1854405917472812],[127,81,76,-0.11576421081088678],[127,81,77,-0.05279580857426962],[127,81,78,-0.08044282428245983],[127,81,79,-0.13948349611271174],[127,82,64,-0.1586078895473548],[127,82,65,-0.15125575969962926],[127,82,66,-0.10924512193228915],[127,82,67,-0.09176430023081525],[127,82,68,-0.0824049197167554],[127,82,69,-0.0731763989429365],[127,82,70,-0.10097409123777892],[127,82,71,-0.16353702078595583],[127,82,72,-0.2044082403720558],[127,82,73,-0.20522711532347349],[127,82,74,-0.1998953311474644],[127,82,75,-0.18795296082359836],[127,82,76,-0.11778831486089626],[127,82,77,-0.054243018963506036],[127,82,78,-0.08217885767674558],[127,82,79,-0.14207322235555578],[127,83,64,-0.1601780156030352],[127,83,65,-0.1531199211498072],[127,83,66,-0.11091524166591667],[127,83,67,-0.09306240146415232],[127,83,68,-0.08362510623271038],[127,83,69,-0.07456129193355014],[127,83,70,-0.1027879304846562],[127,83,71,-0.1656835786054082],[127,83,72,-0.20664020338156755],[127,83,73,-0.2075594718095803],[127,83,74,-0.20234449420393735],[127,83,75,-0.19048472398271432],[127,83,76,-0.11983363768986113],[127,83,77,-0.05571118298363215],[127,83,78,-0.08393408617985056],[127,83,79,-0.14468599895094345],[127,84,64,-0.16175437278170118],[127,84,65,-0.15499770030574703],[127,84,66,-0.11260530759411713],[127,84,67,-0.09437875494642611],[127,84,68,-0.08486405535880814],[127,84,69,-0.07596730145161447],[127,84,70,-0.10462123520599112],[127,84,71,-0.1678355967930121],[127,84,72,-0.20887151808029428],[127,84,73,-0.2098986126220796],[127,84,74,-0.20480706437671178],[127,84,75,-0.19303423160517827],[127,84,76,-0.12189921106804288],[127,84,77,-0.05719986019539741],[127,84,78,-0.08570768585105228],[127,84,79,-0.14732045814028447],[127,85,64,-0.16333560990978807],[127,85,65,-0.156887853052613],[127,85,66,-0.11431450160175252],[127,85,67,-0.09571268278346437],[127,85,68,-0.08612097882006921],[127,85,69,-0.07739355385983936],[127,85,70,-0.1064728170816546],[127,85,71,-0.16999134778146974],[127,85,72,-0.21110011377726165],[127,85,73,-0.2122424878010056],[127,85,74,-0.20728103695439767],[127,85,75,-0.19559964504632926],[127,85,76,-0.12398391737081736],[127,85,77,-0.05870851150572511],[127,85,78,-0.08749869045410417],[127,85,79,-0.14997499182159765],[127,86,64,-0.1649203694364384],[127,86,65,-0.15878911511915908],[127,86,66,-0.11604197326205237],[127,86,67,-0.09706347779741079],[127,86,68,-0.08739505397460501],[127,86,69,-0.07883913286708798],[127,86,70,-0.10834144279404073],[127,86,71,-0.17214908387225947],[127,86,72,-0.21332391128118705],[127,86,73,-0.21458902296386873],[127,86,74,-0.20976436548725294],[127,86,75,-0.19817907832224202],[127,86,76,-0.12608659249536094],[127,86,77,-0.06023655226315744],[127,86,78,-0.08930608283526907],[127,86,79,-0.15264792749207554],[127,87,64,-0.16650728096206932],[127,87,65,-0.1607001970243893],[127,87,66,-0.11778683644898418],[127,87,67,-0.09843040107322944],[127,87,68,-0.08868542229685035],[127,87,69,-0.08030307915976342],[127,87,70,-0.11022583532622333],[127,87,71,-0.17430704242149644],[127,87,72,-0.21554083104896476],[127,87,73,-0.21693612820257052],[127,87,74,-0.21225497126172035],[127,87,75,-0.20077060848724873],[127,87,76,-0.1282060333070702],[127,87,77,-0.06178335590538849],[127,87,78,-0.09112880154641494],[127,87,79,-0.15533754123402727],[127,88,64,-0.1680949625529466],[127,88,65,-0.16261978509433905],[127,88,66,-0.11954816936643531],[127,88,67,-0.0998126815621123],[127,88,68,-0.08999118902508485],[127,88,69,-0.08178439048555224],[127,88,70,-0.11212467498634755],[127,88,71,-0.1764634490849059],[127,88,72,-0.21774879715533035],[127,88,73,-0.2192817010989735],[127,88,74,-0.21475074542478897],[127,88,75,-0.20337227759443383],[127,88,76,-0.13034099890229842],[127,88,77,-0.06334825437741592],[127,88,78,-0.09296574191343529],[127,88,79,-0.15804205996595408],[127,89,64,-0.16968202214236305],[127,89,65,-0.16454654257499374],[127,89,66,-0.1213250146598384],[127,89,67,-0.10120951575463577],[127,89,68,-0.09131142291130293],[127,89,69,-0.08328202188095016],[127,89,70,-0.1140366005950474],[127,89,71,-0.17861652120754684],[127,89,72,-0.21994574140070458],[127,89,73,-0.22162362989403275],[127,89,74,-0.2172495512718275],[127,89,75,-0.2059820948197124],[127,89,76,-0.13249021200324684],[127,89,77,-0.06493053865694748],[127,89,78,-0.09481575723804839],[127,89,79,-0.1607596638733725],[127,90,64,-0.17126705901519093],[127,90,65,-0.16647911083965083],[127,90,66,-0.12311637961177595],[127,90,67,-0.10262006742586481],[127,90,68,-0.09264515607563814],[127,90,69,-0.0847948860444005],[127,90,70,-0.1159602108354065],[127,90,71,-0.18076447135015766],[127,90,72,-0.2221296075458751],[127,90,73,-0.22395979680243192],[127,90,74,-0.21974922669305302],[127,90,75,-0.20859803874539765],[127,90,76,-0.1346523604836221],[127,90,77,-0.06652945938864784],[127,90,78,-0.09667766013235118],[127,90,79,-0.1634884890151917],[127,91,64,-0.17284866537235338],[127,91,65,-0.16841611068876372],[127,91,66,-0.1249212364229197],[127,91,67,-0.10404346745451479],[127,91,68,-0.09399138396738374],[127,91,69,-0.08632185385652658],[127,91,70,-0.11789406576446886],[127,91,71,-0.18290551094332202],[127,91,72,-0.22429835566150852],[127,91,73,-0.22628808146407942],[127,91,74,-0.22224758677328724],[127,91,75,-0.21121805979862954],[127,91,76,-0.1368260990231692],[127,91,77,-0.06814422762838665],[127,91,78,-0.09855022398497587],[127,91,79,-0.16622663010069544],[127,92,64,-0.17442542797146288],[127,92,65,-0.17035614374000171],[127,92,66,-0.12673852257944745],[127,92,67,-0.10547881371814569],[127,92,68,-0.09534906543441861],[127,92,69,-0.08786175504851079],[127,92,70,-0.11983668848473894],[127,92,71,-0.18503785405998233],[127,92,72,-0.2264499665798179],[127,92,73,-0.22860636452322278],[127,92,74,-0.22474242653911974],[127,92,75,-0.21384008283948192],[127,92,76,-0.13901005088867174],[127,92,77,-0.06977401569820099],[127,92,78,-0.10043218455715844],[127,92,79,-0.16897214343143374],[127,93,64,-0.1759959298397077],[127,93,65,-0.17229779390605066],[127,93,66,-0.1285671413079396],[127,93,67,-0.10692517106630758],[127,93,68,-0.09671712290270548],[127,93,69,-0.08941337901934122],[127,93,70,-0.12178656697363408],[127,93,71,-0.18715972129625755],[127,93,72,-0.22858244643517558],[127,93,73,-0.23091253132544795],[127,93,74,-0.2272315238471607],[127,93,75,-0.21646200989310355],[127,93,76,-0.14120280983858105],[127,93,77,-0.07141795815231522],[127,93,78,-0.10232224170657007],[127,93,79,-0.1717230500016732],[127,94,64,-0.17755875205478655],[127,94,65,-0.17423962895736175],[127,94,66,-0.1304059621185119],[127,94,67,-0.10838157137338829],[127,94,68,-0.09809444266726307],[127,94,69,-0.0909754758021809],[127,94,70,-0.12374215606826319],[127,94,71,-0.18926934374986876],[127,94,72,-0.2306938312798263],[127,94,73,-0.2332044757222401],[127,94,74,-0.2297126424065236],[127,94,75,-0.21908172301967987],[127,94,76,-0.14340294214789326],[127,94,77,-0.07307515285407962],[127,94,78,-0.10421906123619794],[127,94,79,-0.17447733875029886],[127,95,64,-0.17911247558951823],[127,95,65,-0.17618020216685637],[127,95,66,-0.13225382143679634],[127,95,67,-0.10984701367283985],[127,95,68,-0.09947987529583141],[127,95,69,-0.0925467571797384],[127,95,70,-0.1257018796024096],[127,95,71,-0.19136496708497322],[127,95,72,-0.23278219176041198],[127,95,73,-0.23548010397235675],[127,95,74,-0.2321835349282773],[127,95,75,-0.2216970873155776],[127,95,76,-0.1456089887494862],[127,95,77,-0.074744662163322],[127,95,78,-0.10612127686513369],[127,95,79,-0.17723296995647375],[127,96,64,-0.1806556832154854],[127,96,65,-0.17811805403326797],[127,96,66,-0.1341095233251013],[127,96,67,-0.11132046437425194],[127,96,68,-0.1008722361461446],[127,96,69,-0.09412589794801479],[127,96,70,-0.12766413269198554],[127,96,71,-0.19344485567158404],[127,96,72,-0.234845637840435],[127,96,73,-0.237737338728688],[127,96,74,-0.23464194639405664],[127,96,75,-0.2243059540384535],[127,96,76,-0.14781946748756564],[127,96,77,-0.07642551423308512],[127,96,78,-0.10802749231753334],[127,96,79,-0.1799878787706057],[127,97,64,-0.18218696146091007],[127,97,65,-0.1800517140796058],[127,97,66,-0.13597184029292278],[127,97,67,-0.11280085756464563],[127,97,68,-0.1022703059975138],[127,97,69,-0.09571153732739446],[127,97,70,-0.12962728416472585],[127,97,71,-0.1955072967873101],[127,97,72,-0.23688232355342453],[127,97,73,-0.2399741230989091],[127,97,74,-0.2370856174356515],[127,97,75,-0.22690616384871148],[127,97,76,-0.15003287547848027],[127,97,77,-0.07811670441435774],[127,97,78,-0.10993628352560642],[127,97,79,-0.18273997887163634],[127,98,64,-0.18370490261775796],[127,98,65,-0.18197970272297118],[127,98,66,-0.13783951419674903],[127,98,67,-0.11428709539519126],[127,98,68,-0.1036728317971489],[127,98,69,-0.09730228051958],[127,98,70,-0.13158967912933534],[127,98,71,-0.1975506048686656],[127,98,72,-0.23889045177114748],[127,98,73,-0.2421884247677835],[127,98,74,-0.23951228781694187],[127,98,75,-0.22949555015921452],[127,98,76,-0.15224769157368973],[127,98,77,-0.07981719676695503],[127,98,78,-0.11184620094199108],[127,98,79,-0.18548716624104344],[127,99,64,-0.1852081067928508],[127,99,65,-0.18390053321167604],[127,99,66,-0.13971125722882985],[127,99,67,-0.1157780485543441],[127,99,68,-0.10507852752132672],[127,99,69,-0.09889670040836096],[127,99,70,-0.1335496416787238],[127,99,71,-0.1995731257987202],[127,99,72,-0.24086827897081897],[127,99,73,-0.24437824016854537],[127,99,74,-0.2419197000090995],[127,99,75,-0.23207194258467187],[127,99,76,-0.1544623789191814],[127,99,77,-0.08152592567421724],[127,99,78,-0.11375577195635636],[127,99,79,-0.18822732304333584],[127,100,64,-0.18669518399762847],[127,100,65,-0.18581271362543308],[127,100,66,-0.14158575299440918],[127,100,67,-0.11727255682826106],[127,100,68,-0.10648607515126042],[127,100,69,-0.10049333940176246],[127,100,70,-0.13550547772146623],[127,100,71,-0.2015732412175223],[127,100,72,-0.24281411998503138],[127,100,73,-0.24654159869050388],[127,100,74,-0.24430560284964326],[127,100,75,-0.23463317048176718],[127,100,76,-0.1566753876052669],[127,100,77,-0.0832417975588354],[127,100,78,-0.11566350341069295],[127,100,79,-0.19095832160236226],[127,101,64,-0.1881647562710487],[127,101,65,-0.18771474893415316],[127,101,66,-0.1434616576766621],[127,101,67,-0.1187694297491611],[127,101,68,-0.1078941257632247],[127,101,69,-0.10209071141264424],[127,101,70,-0.13745547793510138],[127,101,71,-0.20354937284136376],[127,101,72,-0.24472635271784918],[127,101,73,-0.24867656690966108],[127,101,74,-0.24666775527555204],[127,101,75,-0.23717706657067295],[127,101,76,-0.1588851574002493],[127,101,77,-0.084963692696655],[127,101,78,-0.11756788420728416],[127,101,79,-0.1936780284622234],[127,102,64,-0.1896154598299149],[127,102,65,-0.18960514311063578],[127,102,66,-0.14533760128831963],[127,102,67,-0.12026744733206529],[127,102,68,-0.10930130073213974],[127,102,69,-0.10368730397428594],[127,102,70,-0.13939792083431998],[127,102,71,-0.2054999867766104],[127,102,72,-0.24660342281030753],[127,102,73,-0.25078125282884334],[127,102,74,-0.2490039301202662],[127,102,75,-0.2397014706281911],[127,102,76,-0.16109012056102937],[127,102,77,-0.08669046712487],[127,102,78,-0.11946738800291236],[127,102,79,-0.1963843085211043],[127,103,64,-0.19104594724084287],[127,103,65,-0.19148240129228244],[127,103,66,-0.1472121890087548],[127,103,67,-0.12176536090018293],[127,103,68,-0.11070619304754019],[127,103,69,-0.1052815804870555],[127,103,70,-0.14133107594664285],[127,103,71,-0.20742359781362013],[127,103,72,-0.24844384823846297],[127,103,73,-0.2528538101136461],[127,103,74,-0.2513119179641387],[127,103,75,-0.24220423324246185],[127,103,76,-0.1632887047133837],[127,103,77,-0.0884209546406418],[127,103,78,-0.12136047598249451],[127,103,79,-0.19907502922596468],[127,104,64,-0.19245488960795215],[127,104,65,-0.19334503198676167],[127,104,66,-0.14908400260506346],[127,104,67,-0.12326189399899913],[127,104,68,-0.11210736874053659],[127,104,69,-0.1068719825917783],[127,104,70,-0.14325320708770242],[127,104,71,-0.20931877368604826],[127,104,72,-0.25024622382706563],[127,104,73,-0.2548924423102949],[127,104,74,-0.25358953102760506],[127,104,75,-0.2446832196188533],[127,104,76,-0.16547933579428661],[127,104,77,-0.09015396888578196],[127,104,78,-0.12324559970495917],[127,104,79,-0.2017480648156477],[127,105,64,-0.19384097873863854],[127,105,65,-0.19519154930007612],[127,105,66,-0.1509516020016396],[127,105,67,-0.12475574349890045],[127,105,68,-0.11350336855599487],[127,105,69,-0.10845693279339358],[127,105,70,-0.14516257577908545],[127,105,71,-0.2111841391551472],[127,105,72,-0.2520092255107912],[127,105,73,-0.2568954069330679],[127,105,74,-0.2558346070036312],[127,105,75,-0.247136313297801],[127,105,76,-0.16766044095835056],[127,105,77,-0.0918883055296073],[127,105,78,-0.12512120405792831],[127,105,79,-0.2044013005509566],[127,106,64,-0.1952028925531356],[127,106,65,-0.19702045619124683],[127,106,66,-0.15281360433394914],[127,106,67,-0.12624569797513086],[127,106,68,-0.11489286870346807],[127,106,69,-0.11003498658841562],[127,106,70,-0.1470575037248621],[127,106,71,-0.21301823163192918],[127,106,72,-0.25373143591099534],[127,106,73,-0.2588609035484704],[127,106,74,-0.25804490542607234],[127,106,75,-0.24956127017787613],[127,106,76,-0.16983034628778915],[127,106,77,-0.0936227640671263],[127,106,78,-0.12698578168870692],[127,106,79,-0.20703257945486322],[127,107,64,-0.19653922628598652],[127,107,65,-0.19883020959523573],[127,107,66,-0.1546688375112203],[127,107,67,-0.12773087085441429],[127,107,68,-0.11627499490020751],[127,107,69,-0.11160512288998703],[127,107,70,-0.148936484894669],[127,107,71,-0.21481920217462616],[127,107,72,-0.25541098439166954],[127,107,73,-0.26078684276928543],[127,107,74,-0.26021790443041115],[127,107,75,-0.2519554320023239],[127,107,76,-0.17198707243948083],[127,107,77,-0.09535618704389955],[127,107,78,-0.12883797587829246],[127,107,79,-0.20963958937798946],[127,108,64,-0.19784858309174022],[127,108,65,-0.20061926781823808],[127,108,66,-0.1565161595035742],[127,108,67,-0.12921042829400295],[127,108,68,-0.11764894975720278],[127,108,69,-0.11316638647545872],[127,108,70,-0.15079803953389953],[127,108,71,-0.2165851523123406],[127,108,72,-0.2570459523955502],[127,108,73,-0.26267111280297006],[127,108,74,-0.26235106368136313],[127,108,75,-0.25431608847104115],[127,108,76,-0.17412858476963455],[127,108,77,-0.09708741421768763],[127,108,78,-0.1306764607029594],[127,108,79,-0.212219996707294],[127,109,64,-0.19912959612753575],[127,109,65,-0.20238610315728503],[127,109,66,-0.15835441917737075],[127,109,67,-0.13068352880490997],[127,109,68,-0.1190139302116374],[127,109,69,-0.11471781008326731],[127,109,70,-0.15264068485263216],[127,109,71,-0.2183142145842085],[127,109,72,-0.25863446960879655],[127,109,73,-0.2645116435200911],[127,109,74,-0.2644418863431393],[127,109,75,-0.2566405617350015],[127,109,76,-0.17625285249557232],[127,109,77,-0.09881527420761281],[127,109,78,-0.13249991636147335],[127,109,79,-0.21477148061131004],[127,110,64,-0.2003809309786916],[127,110,65,-0.2041292044567434],[127,110,66,-0.16018245819804763],[127,110,67,-0.132149324709938],[127,110,68,-0.12036912917474275],[127,110,69,-0.11625841653861932],[127,110,70,-0.15446293810405598],[127,110,71,-0.22000455625378412],[127,110,72,-0.2601747175563805],[127,110,73,-0.26630641020869844],[127,110,74,-0.2664879235261668],[127,110,75,-0.25892621107260744],[127,110,76,-0.17835785230302664],[127,110,77,-0.10053858676553537],[127,110,78,-0.13430703190866317],[127,110,79,-0.2172917375175753],[127,111,64,-0.20160128806794625],[127,111,65,-0.20584707967900662],[127,111,66,-0.16199911297593333],[127,111,67,-0.133606963635353],[127,111,68,-0.12171373720721466],[127,111,69,-0.11778722092351519],[127,111,70,-0.1562633197046065],[127,111,71,-0.2216543830066781],[127,111,72,-0.26166493314324074],[127,111,73,-0.268053437297363],[127,111,74,-0.26848677871571086],[127,111,75,-0.2611704375798079],[127,111,76,-0.18044157200792854],[127,111,77,-0.10225616509622414],[127,111,78,-0.13609650798912085],[127,111,79,-0.21977848560677146],[127,112,64,-0.20278940504098666],[127,112,65,-0.20753825848270022],[127,112,66,-0.16380321665185596],[127,112,67,-0.1350555900340187],[127,112,68,-0.12304694421949733],[127,112,69,-0.11930323278763591],[127,112,70,-0.15804035638890943],[127,112,71,-0.22326194262043605],[127,112,72,-0.26310341213005456],[127,112,73,-0.2697508020355201],[127,112,74,-0.27043611216759544],[127,112,75,-0.263370688858454],[127,112,76,-0.1825020142619317],[127,112,77,-0.10396681822074057],[127,112,78,-0.13786705956368414],[127,112,79,-0.22222946931071935],[127,113,64,-0.2039440591209201],[127,113,65,-0.20920129480162314],[127,113,66,-0.16559360111911392],[127,113,67,-0.1364943467375724],[127,113,68,-0.12436794119399275],[127,113,69,-0.12080545839626149],[127,113,70,-0.15979258439230745],[127,113,71,-0.22482552859558516],[127,113,72,-0.26448851253256844],[127,113,73,-0.27139663811978243],[127,113,74,-0.2723336452562987],[127,113,75,-0.26552446368736454],[127,113,76,-0.18453720029070073],[127,113,77,-0.10566935337718611],[127,113,78,-0.1396174186212399],[127,113,79,-0.22464246380120922],[127,114,64,-0.20506406942436003],[127,114,65,-0.2108347694175348],[127,114,66,-0.16736909907810033],[127,114,67,-0.13792237653498748],[127,114,68,-0.12567592192598862],[127,114,69,-0.12229290301100491],[127,114,70,-0.16151855265336948],[127,114,71,-0.22634348373672708],[127,114,72,-0.26581865793354936],[127,114,73,-0.2729891392549522],[127,114,74,-0.27417716476080334],[127,114,75,-0.26762931666057627],[127,114,76,-0.1865451736537497],[127,114,77,-0.10736257845266411],[127,114,78,-0.141346336868274],[127,114,79,-0.22701527945648414],[127,115,64,-0.20614829866559414],[127,115,65,-0.21243729194688168],[127,115,66,-0.1691285455399516],[127,115,67,-0.13933882318815352],[127,115,68,-0.1269700841865759],[127,115,69,-0.12376457259871942],[127,115,70,-0.16321682542158505],[127,115,71,-0.2278142030587667],[127,115,72,-0.2670923400758866],[127,115,73,-0.27452656201102343],[127,115,74,-0.2759645264393729],[127,115,75,-0.2696828621360991],[127,115,76,-0.18852400336638156],[127,115,77,-0.10904530378513566],[127,115,78,-0.14305258772673127],[127,115,79,-0.22934576562350178],[127,116,64,-0.2071955152939003],[127,116,65,-0.2140073616220912],[127,116,66,-0.17087063649029305],[127,116,67,-0.1407426879173073],[127,116,68,-0.12824948465437153],[127,116,69,-0.12521932762345575],[127,116,70,-0.16488583522666053],[127,116,71,-0.22923598527301342],[127,116,72,-0.26830796829054465],[127,116,73,-0.27600707382600825],[127,116,74,-0.27769350203540893],[127,116,75,-0.2716826199316017],[127,116,76,-0.19047162711996368],[127,116,77,-0.11071618237380448],[127,116,78,-0.1447348049775954],[127,116,79,-0.23163164931076174],[127,117,64,-0.20820420571387044],[127,117,65,-0.21554317750249632],[127,117,66,-0.17259373633839964],[127,117,67,-0.1421326339722576],[127,117,68,-0.12951284122239323],[127,117,69,-0.1266556835184326],[127,117,70,-0.16652368179547153],[127,117,71,-0.23060682942877125],[127,117,72,-0.26946366332710686],[127,117,73,-0.2774285447121522],[127,117,74,-0.27936156925745864],[127,117,75,-0.27362580329532854],[127,117,76,-0.19238563611604778],[127,117,77,-0.11237349099873349],[127,117,78,-0.14639126152664508],[127,117,79,-0.23387031325494204],[127,118,64,-0.20917284725383098],[127,118,65,-0.21704291497720574],[127,118,66,-0.17429615724422176],[127,118,67,-0.14350726863803476],[127,118,68,-0.13075881830758623],[127,118,69,-0.1280720997648783],[127,118,70,-0.16812842515930757],[127,118,71,-0.231924731284767],[127,118,72,-0.2705575565079036],[127,118,73,-0.27878884994061065],[127,118,74,-0.2809662183656303],[127,118,75,-0.2755096291459195],[127,118,76,-0.19426358787319706],[127,118,77,-0.11401544497128416],[127,118,78,-0.14802018736435418],[127,118,79,-0.23605911876872507],[127,119,64,-0.2100999553368445],[127,119,65,-0.21850477390626646],[127,119,66,-0.17597620752897644],[127,119,67,-0.1448651917079185],[127,119,68,-0.13198607599464723],[127,119,69,-0.1294670301844245],[127,119,70,-0.1696981373128814],[127,119,71,-0.23318773551330113],[127,119,72,-0.2715878420425398],[127,119,73,-0.28008592326765364],[127,119,74,-0.28250500664945855],[127,119,75,-0.2773313735919694],[127,119,76,-0.1961030617538139],[127,119,77,-0.11564025301117799],[127,119,78,-0.14961982497377163],[127,119,79,-0.23819546339526929],[127,120,64,-0.21098408582341188],[127,120,65,-0.21992698144105366],[127,120,66,-0.177632194292012],[127,120,67,-0.1462049976339396],[127,120,68,-0.13319327231545908],[127,120,69,-0.13083892584108867],[127,120,70,-0.17123090591781942],[127,120,71,-0.23439393933022185],[127,120,72,-0.2725527802001547],[127,120,73,-0.28131776050239465],[127,120,74,-0.28397556269679514],[127,120,75,-0.27908837672994674],[127,120,76,-0.19790166330964984],[127,120,77,-0.11724612044652827],[127,120,78,-0.15118843247053748],[127,120,79,-0.240276785729918],[127,121,64,-0.21182383731892646],[127,121,65,-0.2213077948434741],[127,121,66,-0.17926242608456436],[127,121,67,-0.14752527773774268],[127,121,68,-0.13437906557932952],[127,121,69,-0.13218623800074944],[127,121,70,-0.17272483803117514],[127,121,71,-0.235541496066418],[127,121,72,-0.2734507003933263],[127,121,73,-0.28248242300662474],[127,121,74,-0.2853755905790926],[127,121,75,-0.2807780473817218],[127,121,76,-0.19965702864652937],[127,121,77,-0.11883125247782411],[127,121,78,-0.1527242867511585],[127,121,79,-0.2423005702138821],[127,122,64,-0.2126178534391423],[127,122,65,-0.22264550429670243],[127,122,66,-0.18086521563473673],[127,122,67,-0.14882462247721387],[127,122,68,-0.13554211674883354],[127,122,69,-0.13350742114121478],[127,122,70,-0.17417806384927872],[127,122,71,-0.23662861867023716],[127,122,72,-0.27428000416429277],[127,122,73,-0.2835780411165804],[127,122,74,-0.2867028739402625],[127,122,75,-0.28239786775733766],[127,122,76,-0.2013668287959879],[127,122,77,-0.12039385749765562],[127,122,78,-0.154225686641471],[127,122,79,-0.24426435188657245],[127,123,64,-0.21336482502703077],[127,123,65,-0.22393843570014504],[127,123,66,-0.18243888261777472],[127,123,67,-0.15010162376400976],[127,123,68,-0.13668109185581592],[127,123,69,-0.13480093600567114],[127,123,70,-0.1755887404570435],[127,123,71,-0.23765358313036516],[127,123,72,-0.27503916806441264],[127,123,73,-0.28460281747665284],[127,123,74,-0.28795527997658427],[127,123,75,-0.28394539802888163],[127,123,76,-0.2030287740814137],[127,123,77,-0.12193215045767587],[127,123,78,-0.1556909560371268],[127,123,79,-0.24616572108328091],[127,124,64,-0.21406349231450064],[127,124,65,-0.22518495344130252],[127,124,66,-0.18398175646545448],[127,124,67,-0.15135487732685535],[127,124,68,-0.13779466445184493],[127,124,69,-0.13606525269199182],[127,124,70,-0.17695505557266134],[127,124,71,-0.23861473180887677],[127,124,72,-0.275726746418051],[127,124,73,-0.2855550302752431],[127,124,74,-0.2891307632954539],[127,124,75,-0.2854182808015642],[127,124,76,-0.2046406184662022],[127,124,77,-0.12344435627401269],[127,124,78,-0.15711844702786434],[127,124,79,-0.2480023280649764],[127,125,64,-0.21471264702262086],[127,125,65,-0.2263834631372493],[127,125,66,-0.18549217920822073],[127,125,67,-0.15258298511527812],[127,125,68,-0.13888151808722277],[127,125,69,-0.137298853770138],[127,125,70,-0.1782752312775054],[127,125,71,-0.2395104766743959],[127,125,72,-0.2763413739624348],[127,125,73,-0.2864330363732508],[127,125,74,-0.2902273696411648],[127,125,75,-0.28681424546845624],[127,125,76,-0.206200163871461],[127,125,77,-0.12492871326218295],[127,125,78,-0.15850654299737457],[127,125,79,-0.2497718875671821],[127,126,64,-0.21531113439415622],[127,126,65,-0.22753241433848387],[127,126,66,-0.18696850834349693],[127,126,67,-0.15378455773821664],[127,126,68,-0.13994034881245657],[127,126,69,-0.13850023741965853],[127,126,70,-0.17954752772097757],[127,126,71,-0.24033930242556667],[127,126,72,-0.27688176835535144],[127,126,73,-0.2872352743159473],[127,126,74,-0.29124323947631725],[127,126,75,-0.2881311124356822],[127,126,76,-0.2077052644507931],[127,126,77,-0.12638347659232202],[127,126,78,-0.15985366169053625],[127,126,79,-0.25147218325504134],[127,127,64,-0.21585785515236725],[127,127,65,-0.22863030318794406],[127,127,66,-0.18840911972340357],[127,127,67,-0.15495821693172615],[127,127,68,-0.1409698676958931],[127,127,69,-0.13966792057905122],[127,127,70,-0.180770246789936],[127,127,71,-0.24109976949528453],[127,127,72,-0.2773467325429228],[127,127,73,-0.2879602672192781],[127,127,74,-0.2921766114078646],[127,127,75,-0.2893667972052305],[127,127,76,-0.20915383080974484],[127,127,77,-0.1278069217553916],[127,127,78,-0.1611582582398474],[127,127,79,-0.25310107207191435],[127,128,64,-0.21635176738025924],[127,128,65,-0.22967567502808528],[127,128,66,-0.1898124104549733],[127,128,67,-0.15610259804984064],[127,128,68,-0.14196880335108977],[127,128,69,-0.14080044209860385],[127,128,70,-0.18194173573235603],[127,128,71,-0.24179051692648793],[127,128,72,-0.27773515698011003],[127,128,73,-0.28860662552199196],[127,128,74,-0.29302582544730804],[127,128,75,-0.29051931430300715],[127,128,76,-0.21054383415760822],[127,128,77,-0.12919734803089397],[127,128,78,-0.16241882814294964],[127,128,79,-0.2546564884691257],[127,129,64,-0.21679188831466886],[127,129,65,-0.23066712694901312],[127,129,66,-0.19117680180581237],[127,129,67,-0.15721635257247785],[127,129,68,-0.14293590446735263],[127,129,69,-0.14189636588817592],[127,129,70,-0.1830603907248817],[127,129,71,-0.2424102651106502],[127,129,72,-0.27804602169701487],[127,129,73,-0.2891730495953499],[127,129,74,-0.2937893260950432],[127,129,75,-0.29158678104020164],[127,129,76,-0.21187331037940177],[127,129,77,-0.1305530819465111],[127,129,78,-0.16363391018322218],[127,129,79,-0.25613644850478207],[127,130,64,-0.21717729604978414],[127,130,65,-0.231603310270773],[127,130,66,-0.19250074210802515],[127,130,67,-0.15829815062411198],[127,130,68,-0.14386994233673872],[127,130,69,-0.14295428405123983],[127,130,70,-0.1841246603739509],[127,130,71,-0.24295781838046973],[127,130,72,-0.27827839820447836],[127,130,73,-0.289658332202537],[127,130,74,-0.29446566523937673],[127,130,75,-0.2925674210965345],[127,130,76,-0.21314036401601322],[127,130,77,-0.13187248072001623],[127,130,78,-0.1648020892855486],[127,130,79,-0.2575390537999386],[127,131,64,-0.21750713114496534],[127,131,65,-0.23248293295304723],[127,131,66,-0.1937827096531273],[127,131,67,-0.15934668349682185],[127,131,68,-0.14476971337075115],[127,131,69,-0.143972819996438],[127,131,70,-0.18513304914029402],[127,131,71,-0.2434320674486848],[127,131,72,-0.2784314512329513],[127,131,73,-0.2900613608003179],[127,131,74,-0.29505350486130416],[127,131,75,-0.29345956791448413],[127,131,76,-0.21434317214070026],[127,131,77,-0.13315393567374573],[127,131,78,-0.16592199929948065],[127,131,79,-0.2588624953407554],[127,132,64,-0.21778059813198145],[127,132,65,-0.23330476192567992],[127,132,66,-0.1950212155706115],[127,132,67,-0.1603606661712175],[127,132,68,-0.1456340415998788],[127,132,69,-0.14495063151784834],[127,132,70,-0.18608412067671704],[127,132,71,-0.24383199168537145],[127,132,72,-0.2785044402991037],[127,132,73,-0.29038111967592145],[127,132,74,-0.29555161953672665],[127,132,75,-0.29426166789417973],[127,132,76,-0.2154799881204091],[127,132,77,-0.13439587561194483],[127,132,78,-0.16699232570222894],[127,132,79,-0.260105057115762],[127,133,64,-0.21799696691704015],[127,133,65,-0.2340676253336048],[127,133,66,-0.19621480668274766],[127,133,67,-0.1613388398286375],[127,133,68,-0.14646178114907474],[127,133,69,-0.14588641383510784],[127,133,70,-0.186976501069229],[127,133,71,-0.24415666122652205],[127,133,72,-0.2784967210951145],[127,133,73,-0.29061669191255923],[127,133,74,-0.29595889872836456],[127,133,75,-0.2949722833791975],[127,133,76,-0.21654914525062058],[127,133,77,-0.1355967701512744],[127,133,78,-0.16801180821405629],[127,133,79,-0.261265119577748],[127,134,64,-0.2181555740732965],[127,134,65,-0.234770414689972],[127,134,66,-0.19736206832819117],[127,134,67,-0.16227997434795965],[127,134,68,-0.14725181868226486],[127,134,69,-0.14677890258458148],[127,134,70,-0.1878088819717948],[127,134,71,-0.24440523890721796],[127,134,72,-0.27840774669612994],[127,134,73,-0.29076726117748863],[127,134,74,-0.29627434886028264],[127,134,75,-0.2955900954241568],[127,134,76,-0.21754906025277482],[127,134,77,-0.13675513299484754],[127,134,78,-0.16897924331888856],[127,134,79,-0.26234116292033466],[127,135,64,-0.21825582401980603],[127,135,65,-0.23541208693147908],[127,135,66,-0.1984616271469656],[127,135,67,-0.16318287078031812],[127,135,68,-0.14800307580896865],[127,135,69,-0.14762687675277714],[127,135,70,-0.18858002362520135],[127,135,71,-0.2445769820131954],[127,135,72,-0.2782370685818982],[127,135,73,-0.29083211332700687],[127,135,74,-0.2964970951685728],[127,135,75,-0.2961139063356499],[127,135,76,-0.21847823662368784],[127,135,77,-0.13786952514026046],[127,135,78,-0.16989348668321277],[127,135,79,-0.2633317701598167],[127,136,64,-0.21829719008320703],[127,136,65,-0.23599166637013702],[127,136,66,-0.1995121538193826],[127,136,67,-0.16404636379498172],[127,136,68,-0.14871451144613945],[127,136,69,-0.1484291615432928],[127,136,70,-0.18928875775080728],[127,136,71,-0.24467124384513794],[127,136,72,-0.2779843374691225],[127,136,73,-0.29081063782326666],[127,136,74,-0.29662638332240504],[127,136,75,-0.29654264197869834],[127,136,76,-0.21933526782672866],[127,136,77,-0.13893855801216207],[127,136,78,-0.17075345546654744],[127,136,79,-0.2642356300133807],[127,137,64,-0.218279215438736],[127,137,65,-0.23650824653597247],[127,137,66,-0.20051236575152895],[127,137,67,-0.164869324089661],[127,137,68,-0.1493851241283884],[127,137,69,-0.14918463116868305],[127,137,70,-0.18993399031024044],[127,137,71,-0.24468747509058428],[127,137,72,-0.27764930395164833],[127,137,73,-0.2907023289583417],[127,137,74,-0.29666158081034444],[127,137,75,-0.29687535384164965],[127,137,76,-0.22011884031499104],[127,137,77,-0.13996089651010363],[127,137,78,-0.17155813051710686],[127,137,79,-0.26505153956545524],[127,138,64,-0.21820151392751802],[127,138,65,-0.23696099190542141],[127,138,66,-0.2014610296999997],[127,138,67,-0.1656506607585246],[127,138,68,-0.1500139542598308],[127,138,69,-0.14989221155877328],[127,138,70,-0.19051470412244773],[127,138,71,-0.24462522499890008],[127,138,72,-0.2772318189461548],[127,138,73,-0.2905067868815014],[127,138,74,-0.2966021780875263],[127,138,75,-0.2971112208531235],[127,138,76,-0.220827736377122],[127,138,77,-0.1409352619625711],[127,138,78,-0.1723065584465554],[127,138,79,-0.26577840671452274],[127,139,64,-0.21806377074739988],[127,139,65,-0.23734913951045658],[127,139,66,-0.2023569643286413],[127,139,67,-0.16638932361124129],[127,139,68,-0.15060008630088792],[127,139,69,-0.15055088297711608],[127,139,70,-0.19102996132986524],[127,139,71,-0.24448414235534646],[127,139,72,-0.27673183394158135],[127,139,73,-0.2902237184261993],[127,139,74,-0.2964477894799743],[127,139,75,-0.29724955094535377],[127,139,76,-0.2214608367969544],[127,139,77,-0.14186043497830456],[127,139,78,-0.1729978535780637],[127,139,79,-0.2664152523933714],[127,140,64,-0.21786574301495734],[127,140,65,-0.23767200042380177],[127,140,66,-0.20319904269020087],[127,140,67,-0.16708430543644293],[127,140,68,-0.15114265088350703],[127,140,69,-0.15115968253748677],[127,140,70,-0.1914789057058756],[127,140,71,-0.24426397625087468],[127,140,72,-0.27614940105112057],[127,140,73,-0.2898529377338566],[127,140,74,-0.2961981538430834],[127,140,75,-0.29728978235903636],[127,140,76,-0.22201712331863815],[127,140,77,-0.14273525818630434],[127,140,78,-0.173631199762266],[127,140,79,-0.266961212556462],[127,141,64,-0.21760726019665408],[127,141,65,-0.23792896111588582],[127,141,66,-0.20398619462589104],[127,141,67,-0.1677346442030758],[127,141,68,-0.1516408268484082],[127,141,69,-0.15171770661255013],[127,141,70,-0.19186076479615127],[127,141,71,-0.24396457664488164],[127,141,72,-0.2754846728661518],[127,141,73,-0.2893943666720709],[127,141,74,-0.2958531349719849],[127,141,75,-0.2972314846855311],[127,141,76,-0.22249568090946598],[127,141,77,-0.14355863885614423],[127,141,78,-0.1742058520560222],[127,141,79,-0.2674155399287185],[127,142,64,-0.2172882244074952],[127,142,65,-0.23811948467953242],[127,142,66,-0.20471740907606084],[127,142,67,-0.16833942519323228],[127,142,68,-0.15209384319813857],[127,142,69,-0.1522241131270905],[127,142,70,-0.19217485188693656],[127,142,71,-0.24358589471878006],[127,142,72,-0.2747379021121025],[127,142,73,-0.2888480350454804],[127,142,74,-0.2954127217622628],[127,142,75,-0.2970743596430654],[127,142,76,-0.22289569981320753],[127,142,77,-0.14432955139057763],[127,142,78,-0.17472113825932314],[127,142,79,-0.26777760551081164],[127,143,64,-0.21690861057587754],[127,143,65,-0.23824311191870973],[127,143,66,-0.20539173629533328],[127,143,67,-0.16889778306017605],[127,143,68,-0.1525009809599052],[127,143,69,-0.1526781237284922],[127,143,70,-0.19242056779380562],[127,143,71,-0.2431279830188555],[127,143,72,-0.27390944110677395],[127,143,73,-0.2882140805980754],[127,143,74,-0.2948770281201951],[127,143,75,-0.2968182415843494],[127,143,76,-0.22321647738732833],[127,143,77,-0.1450470396827207],[127,143,78,-0.17517646030603068],[127,143,79,-0.2680468998366814],[127,144,64,-0.21646846647371962],[127,144,65,-0.23829946229802756],[127,144,66,-0.20600828996578469],[127,144,67,-0.16940890380543722],[127,144,68,-0.15286157495238636],[127,144,69,-0.15307902582748353],[127,144,70,-0.19259740246494994],[127,144,71,-0.24259099538752163],[127,144,72,-0.27299974102225993],[127,144,73,-0.28749274880634734],[127,144,74,-0.29424629262243934],[127,144,75,-0.29646309773381035],[127,144,76,-0.22345741971810518],[127,144,77,-0.14571021933048078],[127,144,78,-0.17557129550456596],[127,144,79,-0.2682230339797897],[127,145,64,-0.21596791261130605],[127,145,65,-0.2382882347500279],[127,145,66,-0.20656624920197295],[127,145,67,-0.16987202666902823],[127,145,68,-0.1531750154509454],[127,145,69,-0.15342617450249935],[127,145,70,-0.19270493639357456],[127,145,71,-0.24197518668269755],[127,145,72,-0.2720093509521353],[127,145,73,-0.28668439246324073],[127,145,74,-0.2935208779257983],[127,145,75,-0.29600902815344504],[127,145,76,-0.22361804300830443],[127,145,77,-0.1463182797013097],[127,145,78,-0.17590519762509682],[127,145,79,-0.26830574030536103],[127,146,64,-0.21540714199668523],[127,146,65,-0.2382092083376874],[127,146,66,-0.20706486044186043],[127,146,67,-0.1702864459270283],[127,146,68,-0.15344074974594588],[127,146,69,-0.15371899426140126],[127,146,70,-0.19274284183454113],[127,146,71,-0.24128091228569298],[127,146,72,-0.2709389167861881],[127,146,73,-0.2857894710534802],[127,146,74,-0.2927012699284228],[127,146,75,-0.2954562654370738],[127,146,76,-0.22369797473271397],[127,146,77,-0.14687048584073661],[127,146,78,-0.17617779783017382],[127,146,79,-0.2682948729665746],[127,147,64,-0.2147864197597942],[127,147,65,-0.23806224276994145],[127,147,66,-0.207503439217978],[127,147,67,-0.17065151259101202],[127,147,68,-0.15365828358914108],[127,147,69,-0.15395698065469593],[127,147,70,-0.19271088382097848],[127,147,71,-0.24050862739858053],[127,147,72,-0.2697891798954691],[127,147,73,-0.284808549921398],[127,147,74,-0.2917880766845341],[127,147,75,-0.2948051741335924],[127,147,76,-0.22369695455755736],[127,147,77,-0.1473661802186526],[127,147,78,-0.1763888054462487],[127,147,79,-0.2681904081434824],[127,148,64,-0.2141060826418854],[127,148,65,-0.23784727876841388],[127,148,66,-0.2078813718034392],[127,148,67,-0.17096663600402515],[127,148,68,-0.15382718252340882],[127,148,69,-0.15413970173481079],[127,148,70,-0.1926089209771586],[127,148,71,-0.23965888613268607],[127,148,72,-0.26856097563101367],[127,148,73,-0.2837422992329901],[127,148,74,-0.29078202707542944],[127,148,75,-0.29405624990057044],[127,148,76,-0.22361483502045407],[127,148,77,-0.1478047843077216],[127,148,78,-0.17653800857392396],[127,148,79,-0.2679924440241395],[127,149,64,-0.21336653835118982],[127,149,65,-0.23756433828394416],[127,149,66,-0.2081981167277504],[127,149,67,-0.17123128532808604],[127,149,68,-0.15394707309143543],[127,149,69,-0.1542667993564518],[127,149,70,-0.1924369061245707],[127,149,71,-0.23873234039044375],[127,149,72,-0.2672552316401048],[127,149,73,-0.282591492734494],[127,149,74,-0.2896839692402563],[127,149,75,-0.29321011839036104],[127,149,76,-0.22345158196833168],[127,149,77,-0.14818579998881973],[127,149,78,-0.17662527453525478],[127,149,79,-0.26770120052821617],[127,150,64,-0.2125682647861157],[127,150,65,-0.2372135245619093],[127,150,66,-0.20845320615769852],[127,150,67,-0.17144499091846493],[127,150,68,-0.15401764391927894],[127,150,69,-0.15433799031352288],[127,150,70,-0.1921948866787272],[127,150,71,-0.23772973854346663],[127,150,72,-0.2658729660044554],[127,150,73,-0.2813570063103488],[127,150,74,-0.2884948687707032],[127,150,75,-0.29226753387164184],[127,150,76,-0.2232072747514207],[127,150,77,-0.14850881077893377],[127,150,78,-0.1766505501569135],[127,150,79,-0.26731701877413616],[127,151,64,-0.21171180912764254],[127,151,65,-0.2367950220557204],[127,151,66,-0.20864624713892502],[127,151,67,-0.17160734558028165],[127,151,68,-0.15403864667109526],[127,151,69,-0.1543530673085821],[127,151,70,-0.1918830048348801],[127,151,71,-0.23665192391028522],[127,151,72,-0.2644152852051828],[127,151,73,-0.28003981634394304],[127,151,74,-0.28721580667441776],[127,151,75,-0.29122937759006007],[127,151,76,-0.22288210617215284],[127,151,77,-0.14877348287742836],[127,151,78,-0.17661386188843356],[127,151,79,-0.2668403602914823],[127,152,64,-0.21079778680293304],[127,152,65,-0.2363090961883105],[127,152,66,-0.20877692269419754],[127,152,67,-0.17171800570330073],[127,152,68,-0.15400989687169053],[127,152,69,-0.15431189975132015],[127,152,70,-0.19150149754147328],[127,152,71,-0.23549983303779884],[127,152,72,-0.26288338191992616],[127,152,73,-0.2786409978851118],[127,152,74,-0.2858479771126209],[127,152,75,-0.2900966558724224],[127,152,76,-0.2224763821885632],[127,152,77,-0.14897956602720694],[127,152,78,-0.17651531575529478],[127,152,79,-0.26627180598122374],[127,153,64,-0.2098268803225327],[127,153,65,-0.23575609296182473],[127,153,66,-0.208844992774759],[127,153,67,-0.1717766922711158],[127,153,68,-0.1539312745939429],[127,153,69,-0.15421443438307048],[127,153,70,-0.19105069626080642],[127,153,71,-0.23427449379105947],[127,153,72,-0.2612785326579281],[127,153,73,-0.2771617226288758],[127,153,74,-0.28439268491801295],[127,153,75,-0.28887049797959313],[127,153,76,-0.22199052137250905],[127,153,77,-0.14912689418781644],[127,153,78,-0.1763550971470369],[127,153,79,-0.2656120548270123],[127,154,64,-0.2087998379938568],[127,154,65,-0.23513643841612164],[127,154,66,-0.20885029506152228],[127,154,67,-0.17178319174126594],[127,154,68,-0.15380272500852338],[127,154,69,-0.1540606957248902],[127,154,70,-0.19053102651703555],[127,154,71,-0.23297702325654748],[127,154,72,-0.25960209523930156],[127,154,73,-0.2756032567104034],[127,154,74,-0.282851342899649],[127,154,75,-0.287552153713957],[127,154,76,-0.22142505412374017],[127,154,77,-0.14921538601811163],[127,154,78,-0.1761334704410466],[127,154,79,-0.2648619223614992],[127,155,64,-0.20771747251401804],[127,155,65,-0.23445063793713936],[127,155,66,-0.2087927456133314],[127,155,67,-0.17173735679320534],[127,155,68,-0.15362425879377625],[127,155,69,-0.1538507863473148],[127,155,70,-0.18994300723230692],[127,155,71,-0.2316086254646611],[127,155,72,-0.2578555061251637],[127,155,73,-0.27396695832171997],[127,155,74,-0.28122546894208306],[127,155,75,-0.28614299078803923],[127,155,76,-0.22078062164164877],[127,155,77,-0.1492450451667472],[127,155,78,-0.17585077846320127],[127,155,79,-0.2640223388924058],[127,156,64,-0.20658065944535436],[127,156,65,-0.23369927541654573],[127,156,66,-0.20867233935989446],[127,156,67,-0.17163910694140339],[127,156,68,-0.1533959524040188],[127,156,69,-0.15358488696044195],[127,156,70,-0.18928724985247217],[127,156,71,-0.23017058893763637],[127,156,72,-0.2560402776056641],[127,156,73,-0.2722542751561253],[127,156,74,-0.27951668290660314],[127,156,75,-0.28464449196150154],[127,156,76,-0.22005797465719437],[127,156,77,-0.14921596036928814],[127,156,78,-0.17550744178692926],[127,156,79,-0.26309434749367233],[127,157,64,-0.20539033557732736],[127,157,65,-0.23288301226452102],[127,157,66,-0.20848915043745891],[127,157,67,-0.1714884290112471],[127,157,68,-0.15311794819495064],[127,157,69,-0.15326325632355792],[127,157,70,-0.18856445726447688],[127,157,71,-0.2286642840696118],[127,157,72,-0.25415799485331303],[127,157,73,-0.2704667416867603],[127,157,74,-0.27772670334292027],[127,157,75,-0.2830582519544012],[127,157,76,-0.21925797192827767],[127,157,77,-0.14912830535139138],[127,157,78,-0.17510395787277225],[127,157,79,-0.262079101767756],[127,158,64,-0.20414749717877662],[127,158,65,-0.2320025862779169],[127,158,66,-0.20824333236574544],[127,158,67,-0.17128537747582875],[127,158,68,-0.1527904544053103],[127,158,69,-0.15288623097412038],[127,158,70,-0.18777542250819268],[127,158,71,-0.2270911603460339],[127,158,72,-0.25221031284936146],[127,158,73,-0.2686059762862073],[127,158,74,-0.27585734402018786],[127,158,75,-0.28138597414522476],[127,158,76,-0.2183815785025359],[127,158,77,-0.148982338538108],[127,158,78,-0.1746409000509677],[127,158,79,-0.2609778633857654],[127,159,64,-0.20285319814478986],[127,159,65,-0.23105881036642226],[127,159,66,-0.20793511806510692],[127,159,67,-0.1710300746520983],[127,159,68,-0.1524137449943514],[127,159,69,-0.15245422477647483],[127,159,70,-0.18692102728609128],[127,159,71,-0.22545274341003463],[127,159,72,-0.2501989531912769],[127,159,73,-0.266673678194416],[127,159,74,-0.27391051028669017],[127,159,75,-0.27962946706278224],[127,159,76,-0.21742986375224743],[127,159,77,-0.14877840256995783],[127,159,78,-0.17411891634999704],[127,159,79,-0.25979199941272973],[127,160,64,-0.20150854804270915],[127,160,65,-0.23005257113974506],[127,160,66,-0.20756481971333743],[127,160,67,-0.17072271075526785],[127,160,68,-0.15198815933513288],[127,160,69,-0.15196772829124214],[127,160,70,-0.18600224027477041],[127,160,71,-0.22375063198380737],[127,160,72,-0.24812570078962867],[127,160,73,-0.26467162434262487],[127,160,74,-0.27188819526795865],[127,160,75,-0.27779064068160697],[127,160,76,-0.2164039991867152],[127,160,77,-0.148516923627059],[127,160,78,-0.17353872817450705],[127,160,79,-0.2585229794259229],[127,161,64,-0.20011471006208909],[127,161,65,-0.22898482735922115],[127,161,66,-0.20713282844204928],[127,161,67,-0.17036354381081173],[127,161,68,-0.1515141017641137],[127,161,69,-0.15142730796694623],[127,161,70,-0.18502011524302114],[127,161,71,-0.22198649465344564],[127,161,72,-0.2459924004629798],[127,161,73,-0.2626016660413514],[127,161,74,-0.2697924759135356],[127,161,75,-0.27587150253106224],[127,161,76,-0.21530525604820658],[127,161,77,-0.1481984105632063],[127,161,78,-0.17290112883641778],[127,161,79,-0.25717237243471225],[127,162,64,-0.19867289887362866],[127,162,65,-0.22785660825761023],[127,162,66,-0.2066396138729888],[127,162,67,-0.16995289942380581],[127,162,68,-0.15099204098794633],[127,162,69,-0.15083360515597724],[127,162,70,-0.18397578898167335],[127,162,71,-0.22016206652601417],[127,162,72,-0.24380095343956823],[127,162,73,-0.2604657255408377],[127,162,74,-0.2676255089029315],[127,162,75,-0.27387415362882644],[127,162,76,-0.21413500269817584],[127,162,77,-0.14782345385241394],[127,162,78,-0.17220698194346035],[127,162,79,-0.25574184361096236],[127,163,64,-0.19718437840233358],[127,163,65,-0.22666901173118664],[127,163,66,-0.20608572349513518],[127,163,67,-0.1694911704057854],[127,163,68,-0.15042250934882154],[127,163,69,-0.1501873349575757],[127,163,70,-0.18287047905107306],[127,163,71,-0.21827914576796328],[127,163,72,-0.24155331377474654],[127,163,73,-0.2582657924726405],[127,163,74,-0.26538952642167074],[127,163,75,-0.2718007842498808],[127,163,76,-0.21289470180111691],[127,163,77,-0.14739272435101156],[127,163,78,-0.17145721964975455],[127,163,79,-0.25423315083949233],[127,164,64,-0.19565045952039534],[127,164,65,-0.22542320240860886],[127,164,66,-0.20547178188392337],[127,164,67,-0.1689788162597598],[127,164,68,-0.14980610195018557],[127,164,69,-0.14948928489110921],[127,164,70,-0.18170548135263287],[127,164,71,-0.21633959003431483],[127,164,72,-0.23925148469333885],[127,164,73,-0.2560039201813802],[127,164,74,-0.26308683181865455],[127,164,75,-0.2696536695425833],[127,164,76,-0.2115859073140539],[127,164,77,-0.14690697187901644],[127,164,78,-0.17065284077344453],[127,164,79,-0.2526481410985915],[127,165,64,-0.19407249766544354],[127,165,65,-0.2241204096013644],[127,165,66,-0.20479848976440262],[127,165,67,-0.16841636252444123],[127,165,68,-0.14914347564506988],[127,165,69,-0.14874031340344437],[127,165,70,-0.18048216753142135],[127,165,71,-0.21434531279827568],[127,165,72,-0.23689751486616245],[127,165,73,-0.2536822219558892],[127,165,74,-0.26071979515631133],[127,165,75,-0.26743516500377734],[127,165,76,-0.2102102612902592],[127,165,77,-0.14636702362509363],[127,165,78,-0.16979490878679215],[127,165,79,-0.25098874668105037],[127,166,64,-0.1924518903899979],[127,166,65,-0.22276192514089319],[127,166,66,-0.20406662292058447],[127,166,67,-0.1678043999791691],[127,166,68,-0.14843534788969923],[127,166,69,-0.14794134821475796],[127,166,70,-0.17920198221728492],[127,166,71,-0.212298279591161],[127,166,72,-0.2344934946300556],[127,166,73,-0.25130286716921524],[127,166,74,-0.25829084866522706],[127,166,75,-0.2651477018252107],[127,166,76,-0.20876949050631746],[127,166,77,-0.1457737823799302],[127,166,78,-0.16888454968439934],[127,166,79,-0.2492569812664874],[127,167,64,-0.19079007484813704],[127,167,65,-0.22134910110783645],[127,167,66,-0.20327703095376692],[127,167,67,-0.1671435837114899],[127,167,68,-0.14768249546551787],[127,167,69,-0.1470933845077033],[127,167,70,-0.17786644011253527],[127,167,71,-0.21020050416273592],[127,167,72,-0.23204155216084615],[127,167,73,-0.2488680773371814],[127,167,74,-0.25580248211519463],[127,167,75,-0.26279378212391236],[127,167,76,-0.20726540292227835],[127,167,77,-0.14512822460351327],[127,167,78,-0.16792294973567817],[127,167,79,-0.2474549358562366],[127,168,64,-0.18908852522548603],[127,168,65,-0.21988334745910235],[127,168,66,-0.20243063589302077],[127,168,67,-0.16643463204973108],[127,168,68,-0.1468857530731387],[127,168,69,-0.1461974829653113],[127,168,70,-0.17647712293465626],[127,168,71,-0.2080540445721859],[127,168,72,-0.22954384960867127],[127,168,73,-0.24638012210530524],[127,168,74,-0.25325723811470585],[127,168,75,-0.2603759740693732],[127,168,76,-0.20569988398506528],[127,168,77,-0.14443139833225124],[127,168,78,-0.16691135312788893],[127,168,79,-0.24558477458227973],[127,169,64,-0.18734875011879504],[127,169,65,-0.21836612955874823],[127,169,66,-0.2015284306615331],[127,169,67,-0.16567832536338148],[127,169,68,-0.1460460118021832],[127,169,69,-0.14525476766356177],[127,169,70,-0.1750356762229938],[127,169,71,-0.2058609992201022],[127,169,72,-0.22700257920510786],[127,169,73,-0.24384131517407767],[127,169,74,-0.2506577073511058],[127,169,75,-0.25789690692066436],[127,169,76,-0.20407489278584814],[127,169,77,-0.14368442093245937],[127,169,78,-0.1658510595064195],[127,169,79,-0.24364873040205803],[127,170,64,-0.1855722898714219],[127,170,65,-0.21679896561889736],[127,170,66,-0.20057147740290857],[127,170,67,-0.16487550473446322],[127,170,68,-0.14516421748132283],[127,170,69,-0.14426642382497773],[127,170,70,-0.17354380601873562],[127,170,71,-0.20362350283188274],[127,170,72,-0.22441995935147308],[127,170,73,-0.2412540101726343],[127,170,74,-0.248006523783627],[127,170,75,-0.2553592659867612],[127,170,76,-0.20239245808248615],[127,170,77,-0.1428884767072102],[127,170,78,-0.16474342141922116],[127,170,79,-0.24164910069121878],[127,171,64,-0.18376071387116769],[127,171,65,-0.21518342405718602],[127,171,66,-0.19956090567201182],[127,171,67,-0.1640270705035448],[127,171,68,-0.1442413689132816],[127,171,69,-0.14323369544012896],[127,171,70,-0.17200327542795935],[127,171,71,-0.2013437224030756],[127,171,72,-0.22179823069765633],[127,171,73,-0.2386205964910001],[127,171,74,-0.24530635980165233],[127,171,75,-0.2527657875235449],[127,171,76,-0.20065467419860208],[127,171,77,-0.14204481436405345],[127,171,78,-0.16358984167257226],[127,171,79,-0.23958824274657436],[127,172,64,-0.18191561781692708],[127,172,65,-0.21352112077742313],[127,172,66,-0.19849791049533205],[127,172,67,-0.16313398069440616],[127,172,68,-0.1432785159998784],[127,172,69,-0.1421578827643082],[127,172,70,-0.1704159010778072],[127,172,71,-0.1990238531171382],[127,172,72,-0.2191396522206894],[127,172,73,-0.23594349508106532],[127,172,74,-0.24255992136049526],[127,172,75,-0.25011925358101494],[127,172,76,-0.19886369681119156],[127,172,77,-0.1411547443515614],[127,172,78,-0.16239177060557067],[127,172,79,-0.2374685692117199],[127,173,64,-0.18003862096065903],[127,173,65,-0.2118137163803423],[127,173,66,-0.1973837503062619],[127,173,67,-0.16219724932176396],[127,173,68,-0.1422767577625576],[127,173,69,-0.1410403396970721],[127,173,70,-0.16878354947618462],[127,173,71,-0.19666611424607172],[127,173,72,-0.21644649731213866],[127,173,73,-0.2332251542364742],[127,173,74,-0.23976994310696587],[127,173,75,-0.24742248681430953],[127,173,76,-0.19702173863899808],[127,173,77,-0.1402196360730672],[127,173,78,-0.16115070329091966],[127,173,79,-0.23529254343785094],[127,174,64,-0.17813136333122506],[127,174,65,-0.2100629133115284],[127,174,66,-0.19621974476111076],[127,174,67,-0.16121794458687352],[127,174,68,-0.14123724026421772],[127,174,69,-0.13988247105275906],[127,174,70,-0.16710813328569718],[127,174,71,-0.19427274504436864],[127,174,72,-0.21372104988327903],[127,174,73,-0.2304680453616097],[127,174,74,-0.23693918350695747],[127,174,75,-0.24467834527218918],[127,174,76,-0.1951310650442165],[127,174,77,-0.13924091498641059],[127,174,78,-0.15986817666979072],[127,174,79,-0.23306267479244744],[127,175,64,-0.17619550294661313],[127,175,65,-0.20827045295374347],[127,175,66,-0.1950072724420439],[127,175,67,-0.16019718696616286],[127,175,68,-0.1401611544384423],[127,175,69,-0.13868572973041352],[127,175,70,-0.1653916075227352],[127,175,71,-0.19184600064656046],[127,175,72,-0.21096560049677907],[127,175,73,-0.22767465873977116],[127,175,74,-0.23407041998714515],[127,175,75,-0.2418897171765856],[127,175,76,-0.19319398956032577],[127,175,77,-0.13822005959886988],[127,175,78,-0.15854576662869124],[127,175,79,-0.2307815139285325],[127,176,64,-0.17423271302103036],[127,176,65,-0.20643811267098433],[127,176,66,-0.19374776845346878],[127,176,67,-0.1591361471983917],[127,176,68,-0.13904973383252398],[127,176,69,-0.13745161379188406],[127,176,70,-0.16363596569283717],[127,176,71,-0.18938814797853895],[127,176,72,-0.20818244253341053],[127,176,73,-0.2248474993105458],[127,176,74,-0.2311664441027379],[127,176,75,-0.23905951570673908],[127,176,76,-0.1912128693590235],[127,176,77,-0.13715859836675415],[127,176,78,-0.1571850850263229],[127,176,79,-0.2284516480271453],[127,177,64,-0.17224467917334554],[127,177,65,-0.20456770281178122],[127,177,66,-0.19244272191881587],[127,177,67,-0.15803604417621445],[127,177,68,-0.13790425227100167],[127,177,69,-0.13618166345719412],[127,177,70,-0.1618432358736581],[127,177,71,-0.1869014616926768],[127,177,72,-0.20537386840208308],[127,177,73,-0.22198908246630458],[127,177,74,-0.2282300567431012],[127,177,75,-0.236190673801412],[127,177,76,-0.18919010066950528],[127,177,77,-0.13605810650954908],[127,177,78,-0.15578777667863325],[127,177,79,-0.2260756960257487],[127,178,64,-0.17023309664326583],[127,178,65,-0.20266106367928952],[127,178,66,-0.1910936733849214],[127,178,67,-0.15689814274829847],[127,178,68,-0.13672602144664558],[127,178,69,-0.13487745802652892],[127,178,70,-0.16001547675697622],[127,178,71,-0.18438822013655642],[127,178,72,-0.2025421658012159],[127,178,73,-0.2191019298775648],[127,178,74,-0.22526406338680657],[127,178,75,-0.23328613899245884],[127,178,76,-0.18712811416337072],[127,178,77,-0.1349202027487025],[127,178,78,-0.15435551631024758],[127,178,79,-0.22365630384512858],[127,179,64,-0.16819966752153026],[127,179,65,-0.20072006247579194],[127,179,66,-0.1897022121415448],[127,179,67,-0.15572375143844586],[127,179,68,-0.13551638844605482],[127,179,69,-0.1335406127384051],[127,179,70,-0.1581547736612454],[127,179,71,-0.1818507013648568],[127,179,72,-0.19968961403912],[127,179,73,-0.2161885653567752],[127,179,74,-0.2222712694174172],[127,179,75,-0.23034886828286177],[127,179,76,-0.18502937031855432],[127,179,77,-0.13374654598139918],[127,179,78,-0.15289000548051074],[127,179,79,-0.22119613962720788],[127,180,64,-0.16614609800035457],[127,180,65,-0.19874659022932695],[127,180,66,-0.18826997346387156],[127,180,67,-0.15451422008849022],[127,180,68,-0.13427673321728692],[127,180,69,-0.13217277557383816],[127,180,70,-0.15626323452629667],[127,180,71,-0.17929117920373613],[127,180,72,-0.19681848042082317],[127,180,73,-0.21325151076992144],[127,180,74,-0.21925447551108823],[127,180,75,-0.22738182308216331],[127,180,76,-0.18289635477576602],[127,180,77,-0.1325388318999523],[127,180,78,-0.15139296949248385],[127,180,79,-0.21869788899614487],[127,181,64,-0.16407409565019634],[127,181,65,-0.19674255871013935],[127,181,66,-0.18679863578608047],[127,181,67,-0.15327093743195916],[127,181,68,-0.13300846598709234],[127,181,69,-0.13077562401647058],[127,181,70,-0.15434298590178036],[127,181,71,-0.17671191937672473],[127,181,72,-0.1939310167083714],[127,181,73,-0.2102932820050817],[127,181,74,-0.2162164731067161],[127,181,75,-0.22438796421193072],[127,181,76,-0.18073157370087833],[127,181,77,-0.13129878956754026],[127,181,78,-0.1498661542931358],[127,181,79,-0.21616425035478698],[127,182,64,-0.16198536672876115],[127,182,65,-0.19470989734465557],[127,182,66,-0.18528991781429227],[127,182,67,-0.15199532860572373],[127,182,68,-0.13171302463547027],[127,182,69,-0.12935086177872782],[127,182,70,-0.15239616894087968],[127,182,71,-0.17411517570078236],[127,182,72,-0.1910294556612631],[127,182,73,-0.2073163850067805],[127,182,74,-0.21316003996901364],[127,182,75,-0.2213702469935807],[127,182,76,-0.17853754916666242],[127,182,77,-0.13002817796118885],[127,182,78,-0.1483113233729837],[127,182,79,-0.21359793022835713],[127,183,64,-0.15988161352806043],[127,183,65,-0.19265055013470406],[127,183,66,-0.183745575587476],[127,183,67,-0.1506888526071234],[127,183,68,-0.13039187203546204],[127,183,69,-0.12790021550424882],[127,183,70,-0.1504249354108347],[127,183,71,-0.17150318636090095],[127,183,72,-0.18811600766334938],[127,183,73,-0.20432331188476868],[127,183,74,-0.21008793585458874],[127,183,75,-0.2183316164306314],[127,183,76,-0.17631681456724643],[127,183,77,-0.12872878249304492],[127,183,78,-0.1467302546734144],[127,183,79,-0.2110016386670233],[127,184,64,-0.15776453176510946],[127,184,65,-0.19056647258962203],[127,184,66,-0.18216739949503333],[127,184,67,-0.14935299970419366],[127,184,68,-0.1290464933661512],[127,184,69,-0.1264254314568428],[127,184,70,-0.14843144373164982],[127,184,71,-0.1688781702711865],[127,184,72,-0.1851928574420745],[127,184,73,-0.2013165371054856],[127,184,74,-0.20700289829065102],[127,184,75,-0.21527500249701947],[127,184,76,-0.17407191007848405],[127,184,77,-0.12740241152099696],[127,184,78,-0.14512473750978117],[127,184,79,-0.20837808471863375],[127,185,64,-0.15563580802166355],[127,185,65,-0.1884596286788338],[127,185,66,-0.18055721125996008],[127,185,67,-0.14798928880680476],[127,185,68,-0.12767839340693107],[127,185,69,-0.12492827220625917],[127,185,70,-0.146417855054211],[127,185,71,-0.16624232352995225],[127,185,72,-0.1822621608855081],[127,185,73,-0.1982985137741315],[127,185,74,-0.20390763847555915],[127,185,75,-0.21220331554274652],[127,185,76,-0.17180537817728436],[127,185,77,-0.12605089285976637],[127,185,78,-0.14349656951830528],[127,185,79,-0.20572997198261275],[127,186,64,-0.15349711723822201],[127,186,65,-0.18633198781242996],[127,186,66,-0.17891686089664746],[127,186,67,-0.14659926480669594],[127,186,68,-0.12628909382120118],[127,186,69,-0.12341051332111037],[127,186,70,-0.14438632938891718],[127,186,71,-0.16359781597598275],[127,186,72,-0.1793260419622389],[127,186,73,-0.19527167001496568],[127,186,74,-0.20080483731002707],[127,186,75,-0.20911944182773426],[127,186,76,-0.16951975923276952],[127,186,77,-0.12467607030359791],[127,186,78,-0.14184755363468668],[127,186,79,-0.2030599942556415],[127,187,64,-0.15135012026726655],[127,187,65,-0.1841855218571519],[127,187,66,-0.1772482236524823],[127,187,67,-0.1451844958944785],[127,187,68,-0.12488013043764264],[127,187,69,-0.12187394007919569],[127,187,70,-0.14233902179565458],[127,187,71,-0.16094678785261723],[127,187,72,-0.1763865897486932],[127,187,73,-0.1922384054570227],[127,187,74,-0.1976971415673014],[127,187,75,-0.20602623919427795],[127,187,76,-0.16721758718186946],[127,187,77,-0.12327980017163859],[127,187,78,-0.140179495112183],[127,187,79,-0.2003708312793643],[127,188,64,-0.14919646149045213],[127,188,65,-0.18202220219503426],[127,188,66,-0.17555319694246327],[127,188,67,-0.14374657086176396],[127,188,68,-0.12345305053722182],[127,188,69,-0.12032034420540735],[127,188,70,-0.14027807864568764],[127,188,71,-0.15829134658583027],[127,188,72,-0.1734458555679722],[127,188,73,-0.18920108783202805],[127,188,74,-0.1945871602101223],[127,188,75,-0.20292653288799772],[127,188,76,-0.1649013853016553],[127,188,77,-0.1218639478869797],[127,188,78,-0.13849419858670067],[127,188,79,-0.19766514459989104],[127,189,64,-0.14703776650427447],[127,189,65,-0.1798439968318845],[127,189,66,-0.17383369728618578],[127,189,67,-0.1422870963967037],[127,189,68,-0.1220094101541119],[127,189,69,-0.11875152064735414],[127,189,70,-0.1382056339658208],[127,189,71,-0.1556335636820643],[127,189,72,-0.170505850243897],[127,189,73,-0.18616204969095237],[127,189,74,-0.19147746086186065],[127,189,75,-0.19982311153676016],[127,189,76,-0.16257366209046734],[127,189,77,-0.12043038460030463],[127,189,78,-0.13679346519632538],[127,189,79,-0.19494557354850064],[127,190,64,-0.14487563987841356],[127,190,65,-0.17765286756255141],[127,190,66,-0.1720916572565193],[127,190,67,-0.14080769438121607],[127,190,68,-0.12055077139860955],[127,190,69,-0.11716926439863369],[127,190,70,-0.13612380587478523],[127,190,71,-0.1529754717509757],[127,190,72,-0.16756854147337852],[127,190,73,-0.1831235852451268],[127,190,74,-0.18837056643862354],[127,190,75,-0.19671872329644585],[127,190,76,-0.1602369072694958],[127,190,77,-0.11898098386889738],[127,190,78,-0.13507908976246463],[127,190,79,-0.1922147313524307],[127,191,64,-0.14271166299068672],[127,191,65,-0.17545076719976088],[127,191,66,-0.170329022449317],[127,191,67,-0.13930999919820522],[127,191,68,-0.11907869981007206],[127,191,69,-0.1155753673795424],[127,191,70,-0.1340346931214867],[127,191,71,-0.1503190616577779],[127,191,72,-0.16463585131977537],[127,191,73,-0.18008794733742622],[127,191,74,-0.18526895194861917],[127,191,75,-0.1936160721719209],[127,191,76,-0.15789358791607774],[127,191,77,-0.11751761840156798],[127,191,78,-0.13335285803950975],[127,191,79,-0.1894752013841234],[127,192,64,-0.14054739194229393],[127,192,65,-0.17323963687314423],[127,192,66,-0.16854774848353038],[127,192,67,-0.13779565505711291],[127,192,68,-0.11759476174783044],[127,192,69,-0.11397161538483498],[127,192,70,-0.13194037173439097],[127,192,71,-0.14766627980933403],[127,192,72,-0.16170965382941532],[127,192,73,-0.17705734454858724],[127,192,74,-0.18217504146456528],[127,192,75,-0.19051781452104646],[127,192,76,-0.15554614473963496],[127,192,77,-0.11604215687992979],[127,192,78,-0.13161654403976947],[127,192,79,-0.1867295335568715],[127,193,64,-0.13838435555668768],[127,193,65,-0.17102140340481065],[127,193,66,-0.16674979804101223],[127,193,67,-0.13626631334608943],[127,193,68,-0.11610052182789823],[127,193,69,-0.11235978510790395],[127,193,70,-0.12984289179089223],[127,193,71,-0.14501902557758445],[127,193,72,-0.15879177277290346],[127,193,73,-0.1740339384431976],[127,193,74,-0.17909120527430555],[127,193,75,-0.18742655574892875],[127,193,76,-0.15319698851066074],[127,193,77,-0.11455646086614742],[127,193,78,-0.1298719074400696],[127,193,79,-0.18398024087419787],[127,194,64,-0.13622405346513497],[127,194,65,-0.16879797676762098],[127,194,66,-0.16493713795523182],[127,194,67,-0.13472363001898432],[127,194,68,-0.11459754041310116],[127,194,69,-0.11074164125045222],[127,194,70,-0.12774427431505514],[127,194,71,-0.1423791488633378],[127,194,72,-0.1558839795123854],[127,194,73,-0.17101984095948924],[127,194,74,-0.17601975721433566],[127,194,75,-0.1843448471991015],[127,194,76,-0.15084849665276498],[127,194,77,-0.11306238180705908],[127,194,78,-0.12812069107618304],[127,194,79,-0.1812297961398025],[127,195,64,-0.1340679542816727],[127,195,65,-0.16657124763204517],[127,195,66,-0.1631117363580652],[127,195,67,-0.13316926302536647],[127,195,68,-0.11308737116419046],[127,195,69,-0.10911893372653524],[127,195,70,-0.1256465083117181],[127,195,71,-0.13974844780288692],[127,195,72,-0.1529879909953286],[127,195,73,-0.16801711194644528],[127,195,74,-0.17296295219023913],[127,195,75,-0.181275183247633],[127,195,76,-0.1485030100072362],[127,195,77,-0.11156175814425762],[127,195,78,-0.12636461853092706],[127,195,79,-0.1784806288343345],[127,196,64,-0.131917494712228],[127,196,65,-0.16434308444686832],[127,196,66,-0.16127555896641188],[127,196,67,-0.1316048698377378],[127,196,68,-0.11157155910220684],[127,196,69,-0.10749339460542735],[127,196,70,-0.12355154691008197],[127,196,71,-0.13712866615658517],[127,196,72,-0.15010546813138348],[127,196,73,-0.16502775746080162],[127,196,74,-0.1699229844262069],[127,196,75,-0.17821999891534365],[127,196,76,-0.14616282956896345],[127,196,77,-0.11005641235020165],[127,196,78,-0.12460539240197381],[127,196,79,-0.17573512282709736],[127,197,64,-0.12977417672432667],[127,197,65,-0.162115265548139],[127,197,66,-0.15943045688798765],[127,197,67,-0.13003210929148779],[127,197,68,-0.11005168874598473],[127,197,69,-0.10586669134321713],[127,197,70,-0.12146118346597468],[127,197,71,-0.13452144004590677],[127,197,72,-0.14723804747065702],[127,197,73,-0.16205379945959733],[127,197,74,-0.16690204736054046],[127,197,75,-0.17518170196407726],[127,197,76,-0.14383018630122585],[127,197,77,-0.10854812349234097],[127,197,78,-0.12284475893535367],[127,197,79,-0.17299569047079782],[127,198,64,-0.1276396531233064],[127,198,65,-0.15988941976711454],[127,198,66,-0.157578063465077],[127,198,67,-0.1284526366791579],[127,198,68,-0.10852941775576257],[127,198,69,-0.10424037703518925],[127,198,70,-0.11937694283217389],[127,198,71,-0.13192826795868454],[127,198,72,-0.14438738790372],[127,198,73,-0.15909733917604346],[127,198,74,-0.16390237973224395],[127,198,75,-0.1721626913161558],[127,198,76,-0.1415071994247647],[127,198,77,-0.10703858835510444],[127,198,78,-0.12108455782108468],[127,198,79,-0.17026483309876655],[127,199,64,-0.12551554893435093],[127,199,65,-0.15766714281609528],[127,199,66,-0.15571998405618712],[127,199,67,-0.1268680872596638],[127,199,68,-0.10700637560373522],[127,199,69,-0.1026159590337787],[127,199,70,-0.11730029723796227],[127,199,71,-0.12935061808239906],[127,199,72,-0.14155512797531514],[127,199,73,-0.15616042841469233],[127,199,74,-0.16092614609095104],[127,199,75,-0.16916528327165148],[127,199,76,-0.13919590815618413],[127,199,77,-0.1055294491802317],[127,199,78,-0.11932659334529838],[127,199,79,-0.16754499613582738],[127,200,64,-0.12340343791205882],[127,200,65,-0.15545001023311272],[127,200,66,-0.15385781832979667],[127,200,67,-0.12528007309362496],[127,200,68,-0.10548415040960347],[127,200,69,-0.10099490712866221],[127,200,70,-0.11523269156372415],[127,200,71,-0.1267899375375199],[127,200,72,-0.13874287596667034],[127,200,73,-0.15324505158015692],[127,200,74,-0.1579754217821103],[127,200,75,-0.16619170252407056],[127,200,76,-0.13689827657164333],[127,200,77,-0.10402229798892351],[127,200,78,-0.11757261793044534],[127,200,79,-0.16483854993512795],[127,201,64,-0.12130484173071912],[127,201,65,-0.15323957538963068],[127,201,66,-0.15199315795472526],[127,201,67,-0.12369018144747125],[127,201,68,-0.10396428808044401],[127,201,69,-0.09937865240867316],[127,201,70,-0.11317554102039061],[127,201,71,-0.12424764872225634],[127,201,72,-0.13595220629051638],[127,201,73,-0.15035312413188506],[127,201,74,-0.15505219281103527],[127,201,75,-0.16324408205790275],[127,201,76,-0.13461619358946786],[127,201,77,-0.10251867650499337],[127,201,78,-0.11582433161849345],[127,201,79,-0.1621477887378817],[127,202,64,-0.11922122930164192],[127,202,65,-0.1510373675920094],[127,202,66,-0.1501275843656177],[127,202,67,-0.12209997329327872],[127,202,68,-0.1024482915626852],[127,202,69,-0.09776858622889079],[127,202,70,-0.11113022895490221],[127,202,71,-0.12172514583106145],[127,202,72,-0.13318465607834168],[127,202,73,-0.14748649122882893],[127,202,74,-0.1521583559002621],[127,202,75,-0.16032446324839153],[127,202,76,-0.132351473108552],[127,202,77,-0.10102007617358676],[127,202,78,-0.11408338167814881],[127,202,79,-0.15947492983582492],[127,203,64,-0.11715390058308107],[127,203,65,-0.14884474112516172],[127,203,66,-0.14826251583666647],[127,203,67,-0.12051085759511612],[127,203,68,-0.10093751463364838],[127,203,69,-0.09616595734253758],[127,203,70,-0.10909798762031264],[127,203,71,-0.1192236618878122],[127,203,72,-0.13044157835410514],[127,203,73,-0.14464676541440072],[127,203,74,-0.14929555048752807],[127,203,75,-0.15743461675689446],[127,203,76,-0.13010570443708763],[127,203,77,-0.09952782243484709],[127,203,78,-0.11235123025062804],[127,203,79,-0.15682192677047424],[127,204,64,-0.11510324255374947],[127,204,65,-0.14666190927263822],[127,204,66,-0.14639822681703435],[127,204,67,-0.11892328386278077],[127,204,68,-0.0994324787548953],[127,204,69,-0.09457121379441003],[127,204,70,-0.10707914327397088],[127,204,71,-0.11674343563663442],[127,204,72,-0.12772321964803451],[127,204,73,-0.14183429118216703],[127,204,74,-0.14646407799651515],[127,204,75,-0.15457488830650096],[127,204,76,-0.12787928614427357],[127,204,77,-0.09804232470383345],[127,204,78,-0.11062829924739251],[127,204,79,-0.1541892668394773],[127,205,64,-0.11306927351931648],[127,205,65,-0.14448863264238218],[127,205,66,-0.1445345338779568],[127,205,67,-0.11733730992536727],[127,205,68,-0.09793336078953493],[127,205,69,-0.09298447821356828],[127,205,70,-0.10507366764148988],[127,205,71,-0.11428432910983807],[127,205,72,-0.12502940408888893],[127,205,73,-0.13904890777798423],[127,205,74,-0.1436636966259436],[127,205,75,-0.15174504152534915],[127,205,76,-0.12567212527356897],[127,205,77,-0.09656360918428163],[127,205,78,-0.10891457870171131],[127,205,79,-0.15157683554710233],[127,206,64,-0.11105206321414647],[127,206,65,-0.1423247582622813],[127,206,66,-0.1426713391111493],[127,206,67,-0.1157530507117357],[127,206,68,-0.0964403753938714],[127,206,69,-0.09140591756972048],[127,206,70,-0.10308160291771062],[127,206,71,-0.1118462982801383],[127,206,72,-0.12236005492880356],[127,206,73,-0.13629053514922812],[127,206,74,-0.1408942335329428],[127,206,75,-0.14894491005494945],[127,206,76,-0.12348418162120967],[127,206,77,-0.09509173862052035],[127,206,78,-0.10721010516564809],[127,206,79,-0.1489845915536591],[127,207,64,-0.10905173046509199],[127,207,65,-0.14017021701025437],[127,207,66,-0.14080862840622296],[127,207,67,-0.11417067711927363],[127,207,68,-0.09495377405028896],[127,207,69,-0.0898357416118282],[127,207,70,-0.10110305849671383],[127,207,71,-0.10942938773029223],[127,207,72,-0.11971518894854023],[127,207,73,-0.13355917006599258],[127,207,74,-0.13815558186502327],[127,207,75,-0.14617439489822145],[127,207,76,-0.12131546631482282],[127,207,77,-0.09362681216195928],[127,207,78,-0.10551496104940297],[127,207,79,-0.1464125645986339],[127,208,64,-0.10706843870679454],[127,208,65,-0.13802501822898008],[127,208,66,-0.13894646682396275],[127,208,67,-0.11259041247436002],[127,208,68,-0.09347384206349636],[127,208,69,-0.0882741993584165],[127,208,70,-0.09913820552489663],[127,208,71,-0.10703372299424019],[127,208,72,-0.11709490828354754],[127,208,73,-0.13085487928270723],[127,208,74,-0.1354476946981149],[127,208,75,-0.14343345844568864],[127,208,76,-0.11916603756358578],[127,208,77,-0.09216896297442614],[127,208,78,-0.10382927141937445],[127,208,79,-0.14386084990986295],[127,209,64,-0.10510239162079486],[127,209,65,-0.13588924444294118],[127,209,66,-0.13708499400952792],[127,209,67,-0.11101252901702133],[127,209,68,-0.09200089559190334],[127,209,69,-0.08672157564197787],[127,209,70,-0.09718727157824672],[127,209,71,-0.10465950311831439],[127,209,72,-0.11449939249335157],[127,209,73,-0.12817779290637826],[127,209,74,-0.13277057918464472],[127,209,75,-0.14072211870027526],[127,209,76,-0.11703599651962135],[127,209,77,-0.09071835586757249],[127,209,78,-0.10215320084182992],[127,209,79,-0.14132960274726158],[127,210,64,-0.10315382890142674],[127,210,65,-0.13376304617775467],[127,210,66,-0.13522441964691673],[127,210,67,-0.10943734441436184],[127,210,68,-0.09053527872019353],[127,210,69,-0.08517818771229925],[127,210,70,-0.09525053546552498],[127,210,71,-0.10230699344125208],[127,210,72,-0.11192889087275985],[127,210,73,-0.12552809797244513],[127,210,74,-0.1301242909123306],[127,210,75,-0.13804044370199242],[127,210,76,-0.11492548325391264],[127,210,77,-0.08927518494298606],[127,210,78,-0.10048695027625529],[127,210,79,-0.13881903308451163],[127,211,64,-0.1012230221516345],[127,211,65,-0.13164663688264752],[127,211,66,-0.13336501895694866],[127,211,67,-0.10786521830770704],[127,211,68,-0.08907736057913604],[127,211,69,-0.08364438190373814],[127,211,70,-0.09332832215986955],[127,211,71,-0.09997651859310029],[127,211,72,-0.1093837150047124],[127,211,73,-0.12290603222984632],[127,211,74,-0.12750892847455966],[127,211,75,-0.1353885461539287],[127,211,76,-0.11283467284997423],[127,211,77,-0.08783967126752226],[127,211,78,-0.09883075402247696],[127,211,79,-0.13632940043235697],[127,212,64,-0.09931027091182092],[127,212,65,-0.12954028795762276],[127,212,66,-0.13150712824175612],[127,212,67,-0.10629654889859634],[127,212,68,-0.08762753251848054],[127,212,69,-0.08212053037146123],[127,212,70,-0.09142099786182713],[127,212,71,-0.09766845571404616],[127,212,72,-0.10686423155556696],[127,212,73,-0.12031187813721711],[127,212,74,-0.12492462825320136],[127,212,75,-0.13276657825090205],[127,212,76,-0.11076377161834691],[127,212,77,-0.08641206057617462],[127,212,78,-0.09718487672557544],[127,212,79,-0.1338610088072339],[127,213,64,-0.09741589882481659],[127,213,65,-0.1274443238874777],[127,213,66,-0.12965114047945073],[127,213,67,-0.10473176957895707],[127,213,68,-0.0861862053386351],[127,213,69,-0.08060702790168399],[127,213,70,-0.08952896519730821],[127,213,71,-0.09538322789508362],[127,213,72,-0.10437085531447941],[127,213,73,-0.11774595707244898],[127,213,74,-0.12237155941469652],[127,213,75,-0.13017472671207944],[127,213,76,-0.10871301343483118],[127,213,77,-0.08499262100863861],[127,213,78,-0.09554961044253697],[127,213,79,-0.1314142018490177],[127,214,64,-0.09554024994001677],[127,214,65,-0.12535911748541095],[127,214,66,-0.12779750097325623],[127,214,67,-0.1031713456109654],[127,214,68,-0.08475380658667965],[127,214,69,-0.07910428880095735],[127,214,70,-0.0876526585543603],[127,214,71,-0.09312129784314178],[127,214,72,-0.101904042479241],[127,214,73,-0.11520862375806439],[127,214,74,-0.11984991912023432],[127,214,75,-0.12761320801880496],[127,214,76,-0.10668265620524169],[127,214,77,-0.08358164088360484],[127,214,78,-0.0939252717745525],[127,214,79,-0.12898935809170256],[127,215,64,-0.09368368515955551],[127,215,65,-0.12328508524932583],[127,215,66,-0.12594670305984734],[127,215,67,-0.10161577086213264],[127,215,68,-0.0833307779220004],[127,215,69,-0.07761274386940714],[127,215,70,-0.08579253956284079],[127,215,71,-0.09088316177373887],[127,215,72,-0.09946428419136877],[127,215,73,-0.11270026090488541],[127,215,74,-0.11735992795063184],[127,215,75,-0.12508226385865728],[127,215,76,-0.10467297845921922],[127,215,77,-0.08217942651462468],[127,215,78,-0.0923121990687367],[127,215,79,-0.12658688639073587],[127,216,64,-0.09184657882920623],[127,216,65,-0.12122268283427395],[127,216,66,-0.12409928388202536],[127,216,67,-0.10006556460117794],[127,216,68,-0.08191757255658846],[127,216,69,-0.0761328374627151],[127,216,70,-0.08394909272124589],[127,216,71,-0.08866934353459442],[127,216,72,-0.09705210032358842],[127,216,73,-0.11022127407647732],[127,216,74,-0.11490182554635499],[127,216,75,-0.12258215677655017],[127,216,76,-0.10268427607539296],[127,216,77,-0.08078630007118927],[127,216,78,-0.0907107496928752],[127,216,79,-0.12420722151057169],[127,217,64,-0.09002931547651917],[127,217,65,-0.11917240064477537],[127,217,66,-0.12225582023123037],[127,217,67,-0.0985212683602707],[127,217,68,-0.08051465277481942],[127,217,69,-0.07466502464749615],[127,217,70,-0.08212282117503272],[127,217,71,-0.08648038896385363],[127,217,72,-0.09466803352305893],[127,217,73,-0.10777208677678454],[127,217,74,-0.11247586646292435],[127,217,75,-0.12011316603348147],[127,217,76,-0.10071685914000289],[127,217,77,-0.07940259748857245],[127,217,78,-0.08912129738674841],[127,217,79,-0.12185081987591913],[127,218,64,-0.08823228669838587],[127,218,65,-0.11713475955084988],[127,218,66,-0.12041692446555524],[127,218,67,-0.09698344286908554],[127,218,68,-0.07912248753717281],[127,218,69,-0.07320976845446144],[127,218,70,-0.08031424265070014],[127,218,71,-0.08431686048659659],[127,218,72,-0.09231264351367947],[127,218,73,-0.10535313576314807],[127,218,74,-0.11008231624161649],[127,218,75,-0.11767558367318419],[127,218,76,-0.09877104894074402],[127,218,77,-0.07802866642971862],[127,218,78,-0.08754422969331534],[127,218,79,-0.11951815548984533],[127,219,64,-0.08645588819997592],[127,219,65,-0.11511030673173522],[127,219,66,-0.11858324050912976],[127,219,67,-0.09545266506604506],[127,219,68,-0.07774155017208868],[127,219,69,-0.0717675372335623],[127,219,70,-0.07852388554983157],[127,219,71,-0.0821793319532942],[127,219,72,-0.08998650166078644],[127,219,73,-0.10296486658669908],[127,219,74,-0.10772144769511634],[127,219,75,-0.1152697107966669],[127,219,76,-0.09684717509736923],[127,219,77,-0.0766648643023316],[127,219,78,-0.08597994547291753],[127,219,79,-0.11720971602169424],[127,220,64,-0.08470051698661793],[127,220,65,-0.11309961165123023],[127,220,66,-0.11675543993878143],[127,220,67,-0.09392952519191143],[127,220,68,-0.07637231615976495],[127,220,69,-0.07033880211497343],[127,220,70,-0.07675228520706516],[127,220,71,-0.08006838372363764],[127,220,72,-0.08769018580128796],[127,220,73,-0.10060772936175705],[127,220,74,-0.1053935374073802],[127,220,75,-0.11289585404422803],[127,220,76,-0.09494557283023629],[127,220,77,-0.07531155633408623],[127,220,78,-0.08442885250341618],[127,220,79,-0.11492599906742794],[127,221,64,-0.08296656870990739],[127,221,65,-0.11110326216861145],[127,221,66,-0.11493421816393476],[127,221,67,-0.09241462397074275],[127,221,68,-0.07501526101141469],[127,221,69,-0.06892403457954069],[127,221,70,-0.07499998031578767],[127,221,71,-0.07798459799897946],[127,221,72,-0.08542427534206588],[127,221,73,-0.09828217476557205],[127,221,74,-0.10309886244667957],[127,221,75,-0.11055432228423033],[127,221,76,-0.09306658036773369],[127,221,77,-0.07396911370873317],[127,221,78,-0.08289136516899569],[127,221,79,-0.11266750858471213],[127,222,64,-0.08125443516890757],[127,222,65,-0.10912186078890679],[127,222,66,-0.11312029070562017],[127,222,67,-0.0909085698829425],[127,222,68,-0.07367085824707936],[127,222,69,-0.06752370414191791],[127,222,70,-0.0732675095249742],[127,222,71,-0.0759285544061867],[127,222,72,-0.08318934662901362],[127,222,73,-0.09598865026927694],[127,222,74,-0.1008376972903546],[127,222,75,-0.10824542350748075],[127,222,76,-0.09121053649315161],[127,222,77,-0.0726379117656316],[127,222,78,-0.08136790224010737],[127,222,79,-0.11043475150466199],[127,223,64,-0.07956450196692841],[127,223,65,-0.1071560210561504],[127,223,66,-0.11131438958033979],[127,223,67,-0.08941197653486228],[127,223,68,-0.07233957747472326],[127,223,69,-0.06613827614927931],[127,223,70,-0.07155540821025298],[127,223,71,-0.0739008258352854],[127,223,72,-0.0809859685886244],[127,223,73,-0.09372759660047625],[127,223,74,-0.09861031095942496],[127,223,75,-0.10596946192567627],[127,223,76,-0.08937777823124719],[127,223,77,-0.07131832826503445],[127,223,78,-0.07985888474676933],[127,223,79,-0.10822823452177091],[127,224,64,-0.07789714632401117],[127,224,65,-0.10520636409305711],[127,224,66,-0.10951725979440902],[127,224,67,-0.08792546012915407],[127,224,68,-0.07102188257299004],[127,224,69,-0.06476820969815368],[127,224,70,-0.06986420542191059],[127,224,71,-0.07190197453279959],[127,224,72,-0.07881469864354569],[127,224,73,-0.09149944443745436],[127,224,74,-0.09641696436084307],[127,224,75,-0.1037267352720144],[127,224,76,-0.08756863867445942],[127,224,77,-0.07001074172127968],[127,224,78,-0.07836473394722795],[127,224,79,-0.1060484610631718],[127,225,64,-0.07625273504479911],[127,225,65,-0.10327351529025369],[127,225,66,-0.10772965595412255],[127,225,67,-0.08644963703969763],[127,225,68,-0.06971822997955614],[127,225,69,-0.06341395567148467],[127,225,70,-0.06819442101204998],[127,225,71,-0.0699325484520628],[127,225,72,-0.07667607890286061],[127,225,73,-0.08930461133442043],[127,225,74,-0.09425790783471968],[127,225,75,-0.10151753230161631],[127,225,76,-0.08578344494836534],[127,225,77,-0.0687155298057987],[127,225,78,-0.07688586939369121],[127,225,79,-0.10389592843792454],[127,226,64,-0.07463162264106694],[127,226,65,-0.10135810114789359],[127,226,66,-0.10595233899681691],[127,226,67,-0.08498512149457571],[127,226,68,-0.06842906708663249],[127,226,69,-0.06207595489763183],[127,226,70,-0.06654656294265429],[127,226,71,-0.06799307786117945],[127,226,72,-0.07457063262723046],[127,226,73,-0.08714349887668822],[127,226,74,-0.0921333789034508],[127,226,75,-0.0993421304890113],[127,226,76,-0.08402251631563148],[127,226,77,-0.06743306782161382],[127,226,78,-0.07542270709655027],[127,226,79,-0.10177112516656035],[127,227,64,-0.07303414960781318],[127,227,65,-0.09946074627218775],[127,227,66,-0.10418607304763122],[127,227,67,-0.08353252337024096],[127,227,68,-0.06715483074479635],[127,227,69,-0.0607546364326401],[127,227,70,-0.06492112477582714],[127,227,71,-0.06608407220867417],[127,227,72,-0.0724988609683696],[127,227,73,-0.0850164900641735],[127,227,74,-0.09004360021931214],[127,227,75,-0.0972007939195742],[127,227,76,-0.08228616241744216],[127,227,77,-0.06616372725084815],[127,227,78,-0.07397565778829937],[127,227,79,-0.09967452849073682],[127,228,64,-0.07146064085136708],[127,228,65,-0.09758207052896317],[127,228,66,-0.10243162240636366],[127,228,67,-0.08209244609958545],[127,228,68,-0.06589594587590128],[127,228,69,-0.0594504159666516],[127,228,70,-0.0633185833469138],[127,228,71,-0.06420601724614303],[127,228,72,-0.07046123998157519],[127,228,73,-0.08292394692099521],[127,228,74,-0.08798877770664516],[127,228,75,-0.09509377137137055],[127,228,76,-0.08057468165101658],[127,228,77,-0.06490787437648662],[127,228,78,-0.07254512528802494],[127,228,79,-0.0976066020623438],[127,229,64,-0.06991140426756597],[127,229,65,-0.09572268635597057],[127,229,66,-0.10068974866843597],[127,229,67,-0.08066548469622643],[127,229,68,-0.06465282419542279],[127,229,69,-0.05816369435491377],[127,229,70,-0.06173939662067113],[127,229,71,-0.0623593724065118],[127,229,72,-0.06845821790930212],[127,229,73,-0.08086620832841453],[127,229,74,-0.08596909889438106],[127,229,75,-0.09302129458349084],[127,229,76,-0.07888835968151613],[127,229,77,-0.06366586897941369],[127,229,78,-0.07113150496705288],[127,229,79,-0.0955677938109541],[127,230,64,-0.06838672946770274],[127,230,65,-0.0938831962352812],[127,230,66,-0.09896120798359896],[127,230,67,-0.07925222389694697],[127,230,68,-0.06342586304423982],[127,230,69,-0.05689485627344332],[127,230,70,-0.06018400173011906],[127,230,71,-0.06054456843580249],[127,230,72,-0.0664902127330533],[127,230,73,-0.07884358807781774],[127,230,74,-0.08398473143430976],[127,230,75,-0.09098357670662605],[127,230,76,-0.07722746808638686],[127,230,77,-0.06243806311158461],[127,230,78,-0.06973518231612462],[127,230,79,-0.09355853398811788],[127,231,64,-0.06688688664952133],[127,231,65,-0.09206419032663182],[127,231,66,-0.09724674845552053],[127,231,67,-0.07785323642377255],[127,231,68,-0.062215444329439804],[127,231,69,-0.05564426899895989],[127,231,70,-0.058652813197126966],[127,231,71,-0.058762005275558464],[127,231,72,-0.06455760999008156],[127,231,73,-0.07685637313987338],[127,231,74,-0.08203582180011212],[127,231,75,-0.08898081093124918],[127,231,76,-0.07559226312983686],[127,231,77,-0.06122479994589998],[127,231,78,-0.06835653161411669],[127,231,79,-0.0915792333864941],[127,232,64,-0.0654121256101783],[127,232,65,-0.09026624426214273],[127,232,66,-0.09554710768494633],[127,232,67,-0.07646908136674753],[127,232,68,-0.061021933573363586],[127,232,69,-0.05441228131228014],[127,232,70,-0.05714622133321184],[127,232,71,-0.057012050192331354],[127,232,72,-0.0626607608506404],[127,232,73,-0.0749048221454486],[127,232,74,-0.0801224941618356],[127,232,75,-0.0870131692884388],[127,232,76,-0.07398298466488215],[127,232,77,-0.0600264127031653],[127,232,78,-0.06699591469807878],[127,232,79,-0.08963028173140818],[127,233,64,-0.06396267489776808],[127,233,65,-0.08848991710240241],[127,233,66,-0.09386301045866698],[127,233,67,-0.07510030268808533],[127,233,68,-0.059845679069781756],[127,233,69,-0.05319922252399887],[127,233,70,-0.055664590818513514],[127,233,71,-0.05529503614995795],[127,233,72,-0.06079998045083063],[127,233,73,-0.07298916407339207],[127,233,74,-0.07824484943021834],[127,233,75,-0.08508080161811124],[127,233,76,-0.07239985516015589],[127,233,77,-0.05884322365631541],[127,233,78,-0.06565367983410476],[127,233,79,-0.08771204624202256],[127,234,64,-0.06253874109764702],[127,234,65,-0.08673574945342352],[127,234,66,-0.09219516658600277],[127,234,67,-0.07374742784791374],[127,234,68,-0.05868701114571991],[127,234,69,-0.05200540162085624],[127,234,70,-0.05420825945633315],[127,234,71,-0.05361126041961702],[127,234,72,-0.0589755464753383],[127,234,73,-0.07110959713975619],[127,234,74,-0.07640296446493883],[127,234,75,-0.0831838346991016],[127,234,76,-0.07084307884838666],[127,234,77,-0.057675543211839084],[127,234,78,-0.06433016068825333],[127,234,79,-0.08582487035887128],[127,235,64,-0.06114050824947782],[127,235,65,-0.08500426174351483],[127,235,66,-0.09054426888401614],[127,235,67,-0.07241096655141786],[127,235,68,-0.05754624152711131],[127,235,69,-0.05083110653079947],[127,235,70,-0.052777537100073976],[127,235,71,-0.05196098342196087],[127,235,72,-0.057187697983660774],[127,235,73,-0.0692662878825499],[127,235,74,-0.0745968914405996],[127,235,75,-0.08132237153527605],[127,235,76,-0.06931284099322153],[127,235,77,-0.0565236690681349],[127,235,78,-0.06302567539648306],[127,235,79,-0.08396907263412921],[127,236,64,-0.059768137390665284],[127,236,65,-0.0832959526586923],[127,236,66,-0.08891099131218944],[127,236,67,-0.0710914096168174],[127,236,68,-0.05642366280619094],[127,236,69,-0.04967660350443366],[127,236,70,-0.05137270474896717],[127,236,71,-0.05034442779501827],[127,236,72,-0.055436634472806716],[127,236,73,-0.06745937043571447],[127,236,74,-0.07282665736405773],[127,236,75,-0.07949649079165763],[127,236,76,-0.06780930727087667],[127,236,77,-0.05538788545034609],[127,236,78,-0.061740525732332775],[127,236,79,-0.0821449457806426],[127,237,64,-0.058421766221551916],[127,237,65,-0.08161129773477015],[127,237,66,-0.08729598725677137],[127,237,67,-0.06978922796317455],[127,237,68,-0.0553195480082023],[127,237,69,-0.048542136610155766],[127,237,70,-0.04999401380841334],[127,237,71,-0.04876177768088862],[127,237,72,-0.05372251516878075],[127,237,73,-0.06568894598554932],[127,237,74,-0.07109226373645776],[127,237,75,-0.07770624637430183],[127,237,76,-0.0663326232628659],[127,237,77,-0.05426846242099445],[127,237,78,-0.060474996370814105],[127,237,79,-0.0803527558753758],[127,238,64,-0.057101508887503934],[127,238,65,-0.07995074810383519],[127,238,66,-0.08569988796449057],[127,238,67,-0.06850487171665273],[127,238,68,-0.054234150254725326],[127,238,69,-0.04742792733995317],[127,238,70,-0.04864168551031968],[127,238,71,-0.04721317822367842],[127,238,72,-0.05204545853858987],[127,238,73,-0.06395508240244147],[127,238,74,-0.06939368635314622],[127,238,75,-0.07595166714747706],[127,238,76,-0.06488291405587022],[127,238,77,-0.053165655265535045],[127,238,78,-0.05922935424674131],[127,238,79,-0.07859274171260063],[127,239,64,-0.0558074558728349],[127,239,65,-0.07831472939241377],[127,239,66,-0.0841233011248741],[127,239,67,-0.06723876943350018],[127,239,68,-0.05316770252070539],[127,239,69,-0.0463341743225673],[127,239,70,-0.04731591048840192],[127,239,71,-0.045698735270623306],[127,239,72,-0.050405542014003525],[127,239,73,-0.06225781404043661],[127,239,74,-0.06773087523452699],[127,239,75,-0.07423275678158642],[127,239,76,-0.06346028394467579],[127,239,77,-0.05207970395178665],[127,239,78,-0.05800384800552797],[127,239,79,-0.07686511430188513],[127,240,64,-0.05453967400129561],[127,240,65,-0.07670364076820294],[127,240,66,-0.08256680959989836],[127,240,67,-0.0659913274376541],[127,240,68,-0.05212041748199979],[127,240,69,-0.04526105314040267],[127,240,70,-0.04601684850296587],[127,240,71,-0.04421851526779414],[127,240,72,-0.04880280191775841],[127,240,73,-0.060597141696837796],[127,240,74,-0.06610375468075169],[127,240,75,-0.07254949372510613],[127,240,76,-0.06206481623393486],[127,240,77,-0.05101083266199748],[127,240,78,-0.0567987075442537],[127,240,79,-0.07517005650564633],[127,241,64,-0.05329820653769423],[127,241,65,-0.0751178541318456],[127,241,66,-0.08103097029922042],[127,241,67,-0.06476292927051443],[127,241,68,-0.05109248745004492],[127,241,69,-0.04420871624631001],[127,241,70,-0.04474462830933024],[127,241,71,-0.04277254534136891],[127,241,72,-0.047237233582486236],[127,241,73,-0.058973032723758256],[127,241,74,-0.06451222344305033],[127,241,75,-0.07090183129371623],[127,241,76,-0.06069657313435982],[127,241,77,-0.04995924939609888],[127,241,78,-0.05561414364057752],[127,241,79,-0.07350772281076197],[127,242,64,-0.0520830733851104],[127,242,65,-0.07355771344988836],[127,242,66,-0.07951631319882156],[127,242,67,-0.06355393525015962],[127,242,68,-0.050084084390090655],[127,242,69,-0.04317729297615295],[127,242,70,-0.04349934766371163],[127,242,71,-0.041360813555049655],[127,242,72,-0.04570879165225118],[127,242,73,-0.05738542128333801],[127,242,74,-0.0629561550044678],[127,242,75,-0.06928969786976452],[127,242,76,-0.05935559574889839],[127,242,77,-0.048925145644590766],[127,242,78,-0.05445034766694419],[127,242,79,-0.07187823922856978],[127,243,64,-0.05089427137202511],[127,243,65,-0.07202353422468771],[127,243,66,-0.07802334050042485],[127,243,67,-0.06236468213694213],[127,243,68,-0.04909536001924795],[127,243,69,-0.04216688965283591],[127,243,70,-0.042281073460078304],[127,243,71,-0.039983269333857985],[127,243,72,-0.0442173905562464],[127,243,73,-0.05583420873811901],[127,243,74,-0.0614353979627041],[127,243,75,-0.0677129972051261],[127,243,76,-0.05804190414430135],[127,243,77,-0.04790869612929178],[127,243,78,-0.05330749138730809],[127,243,79,-0.07028170331734437],[127,244,64,-0.04973177462360966],[127,244,65,-0.07051560309670368],[127,244,66,-0.07655252592863351],[127,244,67,-0.061195482902130595],[127,244,68,-0.048126445980454256],[127,244,69,-0.04117758977728172],[127,244,70,-0.04108984199120221],[127,244,71,-0.03863982404424233],[127,244,72,-0.04276290514391041],[127,244,73,-0.05431926416791985],[127,244,74,-0.059949776507748256],[127,244,75,-0.06617160882050675],[127,244,76,-0.056755497503426504],[127,244,77,-0.04691005861003754],[127,244,78,-0.05218572683344409],[127,244,79,-0.06871818432118036],[127,245,64,-0.04859553501139225],[127,245,65,-0.06903417757435618],[127,245,66,-0.07510431416237599],[127,245,67,-0.06004662659604075],[127,245,68,-0.047177454088364615],[127,245,69,-0.040209454301710794],[127,245,70,-0.03992565932693066],[127,245,71,-0.03733035172021622],[127,245,72,-0.04134517147052781],[127,245,73,-0.05284042500446022],[127,245,74,-0.05849909098703728],[127,245,75,-0.06466538849427782],[127,245,76,-0.05549635435359885],[127,245,77,-0.04592937375530639],[127,245,78,-0.05108518625780518],[127,245,79,-0.06718772341911138],[127,246,64,-0.047485482675453154],[127,246,65,-0.06757948588630944],[127,246,66,-0.07367912039683516],[127,246,67,-0.05891837831183322],[127,246,68,-0.0462484766430456],[127,246,69,-0.039262521980413786],[127,246,70,-0.038788501802484575],[127,246,71,-0.03605468992504761],[127,246,72,-0.039963987722191695],[127,246,73,-0.051397497774886496],[127,246,74,-0.05708311855088866],[127,246,75,-0.06319416883392523],[127,246,76,-0.05426443286626685],[127,246,77,-0.04496676507456484],[127,246,78,-0.05000598215970443],[127,246,79,-0.06569033407813483],[127,247,64,-0.04640152661332757],[127,247,65,-0.06615172695083943],[127,247,66,-0.07227733003173073],[127,247,67,-0.05781097924097926],[127,247,68,-0.04533958680729384],[127,247,69,-0.03833680979311879],[127,247,70,-0.03767831660945025],[127,247,71,-0.03481264073790463],[127,247,72,-0.03861911526891068],[127,247,73,-0.0499902589453349],[127,247,74,-0.055701613871042006],[127,247,75,-0.061757759923287775],[127,247,76,-0.05305967122320958],[127,247,77,-0.044022338910043],[127,247,78,-0.04894820738152538],[127,247,79,-0.06422600250377526],[127,248,64,-0.04534355532978513],[127,248,65,-0.06475107045669469],[127,248,66,-0.07089929848147529],[127,248,67,-0.05672464681618502],[127,248,68,-0.04445083904332146],[127,248,69,-0.037432313435950784],[127,248,70,-0.03659502248199836],[127,248,71,-0.033603971854774185],[127,248,72,-0.037310279834573586],[127,248,73,-0.04861845585564966],[127,248,74,-0.05435430992521831],[127,248,75,-0.06035595003880589],[127,248,76,-0.05188198804451258],[127,248,77,-0.04309618448549807],[127,248,78,-0.04791193527152268],[127,248,79,-0.06279468818172358],[127,249,64,-0.0443114375417359],[127,249,65,-0.06337765704971389],[127,249,66,-0.06954535110247966],[127,249,67,-0.055659574937447526],[127,249,68,-0.0435822696045504],[127,249,69,-0.03654900787495893],[127,249,70,-0.03553851047082318],[127,249,71,-0.03242841779298923],[127,249,72,-0.03603717277252315],[127,249,73,-0.04728180773645583],[127,249,74,-0.05304091884075722],[127,249,75,-0.05898850642814771],[127,249,76,-0.050731282873582126],[127,249,77,-0.042188374009455694],[127,249,78,-0.046897219909726146],[127,249,79,-0.06139632450410349],[127,250,64,-0.043305022932548703],[127,250,65,-0.062031598619276145],[127,250,66,-0.06821578323258941],[127,250,67,-0.05461593427674873],[127,250,68,-0.042733897078209244],[127,250,69,-0.03568684795711899],[127,250,70,-0.03450864479721615],[127,250,71,-0.03128568118869242],[127,250,72,-0.034799452435506535],[127,250,73,-0.04598000679982132],[127,250,74,-0.05176113279049398],[127,250,75,-0.05765517614466579],[127,250,76,-0.049607436714464055],[127,250,77,-0.041298962830299144],[127,250,78,-0.04590409639336077],[127,250,79,-0.06003081947388635],[127,251,64,-0.04232414295015896],[127,251,65,-0.06071297867854007],[127,251,66,-0.06691086033741755],[127,251,67,-0.05359387265679606],[127,251,68,-0.041905722974441756],[127,251,69,-0.034845769073724796],[127,251,70,-0.03350526377970735],[127,251,71,-0.030175434176671782],[127,251,72,-0.033596745628898306],[127,251,73,-0.044712719394878093],[127,251,74,-0.05051462493421063],[127,251,75,-0.05635568693128986],[127,251,76,-0.0485103126167802],[127,251,77,-0.04042798964048668],[127,251,78,-0.044932581178133],[127,251,79,-0.058698056480994014],[127,252,64,-0.0413686116434719],[127,252,65,-0.05942185283235033],[127,252,66,-0.06563081825815732],[127,252,67,-0.05259351549914922],[127,252,68,-0.0410977323576754],[127,252,69,-0.03402568787110861],[127,252,70,-0.03252818082574687],[127,252,71,-0.029097319842140243],[127,252,72,-0.032428649136253006],[127,252,73,-0.04347958721992138],[127,252,74,-0.04930105039918348],[127,252,75,-0.05508974814763574],[127,252,76,-0.04743975630367507],[127,252,77,-0.03957547672713456],[127,252,78,-0.043982672471716666],[127,252,79,-0.05739789514370686],[127,253,64,-0.040438226531669764],[127,253,65,-0.05815824932660056],[127,253,66,-0.06437586355527287],[127,253,67,-0.05161496633699696],[127,253,68,-0.04030989451602079],[127,253,69,-0.03322650300365319],[127,253,70,-0.03157718548095471],[127,253,71,-0.02805095373419818],[127,253,72,-0.03129473130643617],[127,253,73,-0.042280228582671206],[127,253,74,-0.04812004729352505],[127,253,75,-0.05385705173426731],[127,253,76,-0.04639559683821109],[127,253,77,-0.03874143026610996],[127,253,78,-0.043054350675715],[127,253,79,-0.05613017220903467],[127,254,64,-0.039532769501170476],[127,254,65,-0.056922169672798076],[127,254,66,-0.06314617394232369],[127,254,67,-0.05065830738780235],[127,254,68,-0.039542163664530054],[127,254,69,-0.032448095924114496],[127,254,70,-0.030652044528566444],[127,254,71,-0.027035925430939585],[127,254,72,-0.030194533691828073],[127,254,73,-0.041114239700582436],[127,254,74,-0.04697123774622852],[127,254,75,-0.05265727320823553],[127,254,76,-0.04537764732373285],[127,254,77,-0.0379258406567259],[127,254,78,-0.04214757887235381],[127,254,79,-0.05489470250579533],[127,255,64,-0.038652007725170814],[127,255,65,-0.05571358934158954],[127,255,66,-0.061941898804099046],[127,255,67,-0.049723600181048995],[127,255,68,-0.038794479678236925],[127,255,69,-0.031690331706372706],[127,255,70,-0.0297525031318501],[127,255,71,-0.026051800146438757],[127,255,72,-0.029127572727396734],[127,255,73,-0.03998119603333858],[127,255,74,-0.045854228968059185],[127,255,75,-0.05149007268424087],[127,255,76,-0.04438570563383743],[127,255,77,-0.03712868289411427],[127,255,78,-0.04126230335218752],[127,255,79,-0.05369127994428921],[127,256,64,-0.0377956946008496],[127,256,65,-0.05453245851899329],[127,256,66,-0.060763159793133376],[127,256,67,-0.048810886236299145],[127,256,68,-0.03806676885097009],[127,256,69,-0.03095305989581119],[127,256,70,-0.02887828601241916],[127,256,71,-0.025098120370145496],[127,256,72,-0.028093341440752886],[127,256,73,-0.03888065363990589],[127,256,74,-0.04476861432765724],[127,256,75,-0.05035509591595911],[127,256,76,-0.04341955516766649],[127,256,77,-0.03634991697629097],[127,256,78,-0.04039845417907373],[127,256,79,-0.05251967855655004],[127,257,64,-0.03696357069949341],[127,257,65,-0.053378702919125116],[127,257,66,-0.05961005149862572],[127,257,67,-0.04792018778680318],[127,257,68,-0.03735894467602938],[127,257,69,-0.0302361153826308],[127,257,70,-0.02802909865754262],[127,257,71,-0.024174407529537357],[127,257,72,-0.027091311183645918],[127,257,73,-0.03781215055279341],[127,257,74,-0.04371397443745158],[127,257,75,-0.049251975352287654],[127,257,76,-0.04247896562635211],[127,257,77,-0.03558948834291249],[127,257,78,-0.039555945788704014],[127,257,79,-0.05137965357131178],[127,258,64,-0.0361553647250202],[127,258,65,-0.0522522246472871],[127,258,66,-0.0584826421817859],[127,258,67,-0.04705150854396523],[127,258,68,-0.036670908644950796],[127,258,69,-0.02953931929356347],[127,258,70,-0.027204628549793587],[127,258,71,-0.023280163667270985],[127,258,72,-0.026120933375778668],[127,258,73,-0.03677520816248789],[127,258,74,-0.04268987824426144],[127,258,75,-0.04818033120352372],[127,258,76,-0.04156369380658704],[127,258,77,-0.034847328342726365],[127,258,78,-0.03873467761702176],[127,258,79,-0.05027094251800348],[127,259,64,-0.035370794476556285],[127,259,65,-0.05115290310735098],[127,259,66,-0.057380974571608845],[127,259,67,-0.04620483449801053],[127,259,68,-0.036002551060688504],[127,259,69,-0.02886247989757326],[127,259,70,-0.026404546412589852],[127,259,71,-0.022414873124443273],[127,259,72,-0.02518164125221287],[127,259,73,-0.03576933260532138],[127,259,74,-0.04169588411969547],[127,259,75,-0.047139772512696174],[127,259,76,-0.04067348440739669],[127,259,77,-0.03412335472669395],[127,259,78,-0.037934534754882],[127,259,79,-0.04919326635424187],[127,260,64,-0.0346095678109341],[127,260,65,-0.050080595947478664],[127,260,66,-0.05630506671511603],[127,260,67,-0.04538013475028286],[127,260,68,-0.03535375186167219],[127,260,69,-0.028205393521286152],[127,260,70,-0.025628507465429412],[127,260,71,-0.021578004221983034],[127,260,72,-0.024272851606072173],[127,260,73,-0.034794016148355374],[127,260,74,-0.0407315409457219],[127,260,75,-0.04612989822751518],[127,260,76,-0.03980807084633041],[127,260,77,-0.03341747216377813],[127,260,78,-0.03715538862536778],[127,260,79,-0.048146330611482976],[127,261,64,-0.03387138360120937],[127,261,65,-0.04903514003836286],[127,261,66,-0.05525491287616707],[127,261,67,-0.04457736237271076],[127,261,68,-0.03472438145336402],[127,261,69,-0.02756784547008698],[127,261,70,-0.02487615268292397],[127,261,71,-0.020769010932657348],[127,261,72,-0.023393966518736854],[127,261,73,-0.03384873856522867],[127,261,74,-0.039796389191066484],[127,261,75,-0.0451502982686637],[127,261,76,-0.03896717608143984],[127,261,77,-0.03272957277641151],[127,261,78,-0.03639709768024654],[127,261,79,-0.04712982655370396],[127,262,64,-0.033155932687497336],[127,262,65,-0.048016352478298975],[127,262,66,-0.05423048447700857],[127,262,67,-0.043796455290073796],[127,262,68,-0.03411430154405898],[127,262,69,-0.02694961095097049],[127,262,70,-0.02414711005198911],[127,262,71,-0.019987334536596065],[127,262,72,-0.022544375070168612],[127,262,73,-0.032932968497234615],[127,262,74,-0.038889961974340304],[127,262,75,-0.04420055459037787],[127,262,76,-0.03815051343554347],[127,262,77,-0.032059536692675986],[127,262,78,-0.03565950811211378],[127,262,79,-0.04614343234417988],[127,263,64,-0.03246289881664746],[127,263,65,-0.04702403161955835],[127,263,66,-0.05323173107682008],[127,263,67,-0.043037337180819715],[127,263,68,-0.03352336598183089],[127,263,69,-0.026350455993428536],[127,263,70,-0.023440995821857272],[127,263,71,-0.019232405253710214],[127,263,72,-0.021723455022498752],[127,263,73,-0.03204616479425665],[127,263,74,-0.03801178611006721],[127,263,75,-0.043280242229509415],[127,263,76,-0.03735778741942143],[127,263,77,-0.031407232612251534],[127,263,78,-0.03494245457884453],[127,263,79,-0.0451868142156353],[127,264,64,-0.03179195956751605],[127,264,65,-0.046057958110727146],[127,264,66,-0.0522585813816558],[127,264,67,-0.042299918392335864],[127,264,68,-0.03295142158969853],[127,264,69,-0.025770138364863266],[127,264,70,-0.02275741574190443],[127,264,71,-0.01850364384686798],[127,264,72,-0.02093057447052274],[127,264,73,-0.03118777783056249],[127,264,74,-0.03716138313406244],[127,264,75,-0.042388930339521104],[127,264,76,-0.03658869455075028],[127,264,77,-0.03077251838325059],[127,264,78,-0.03424576093707813],[127,264,79,-0.04425962763928378],[127,265,64,-0.031142787258798894],[127,265,65,-0.04511789594984426],[127,265,66,-0.051310944280292835],[127,265,67,-0.04158409686669816],[127,265,68,-0.032398308996222154],[127,265,69,-0.025208408477190684],[127,265,70,-0.022095966282572047],[127,265,71,-0.017800463190144018],[127,265,72,-0.02016509345321963],[127,265,73,-0.030357250790793554],[127,265,74,-0.036338270304851865],[127,265,75,-0.04152618320608538],[127,265,76,-0.035842924165722836],[127,265,77,-0.030155241587085654],[127,265,78,-0.033569240981539475],[127,265,79,-0.04336151848848189],[127,266,64,-0.0305150498366041],[127,266,65,-0.044203593543371944],[127,266,66,-0.05038870990065264],[127,266,67,-0.04088975907307701],[127,266,68,-0.03186386345890749],[127,266,69,-0.024665010281508026],[127,266,70,-0.021456235834999397],[127,266,71,-0.01712226979695043],[127,266,72,-0.01942636552092632],[127,266,73,-0.02955402092185631],[127,266,74,-0.035541961578084966],[127,266,75,-0.04069156124119404],[127,266,76,-0.03512015922044809],[127,266,77,-0.029555240128569304],[127,266,78,-0.03291269918709629],[127,266,79,-0.04249212419294663],[127,267,64,-0.029908411739178895],[127,267,65,-0.0433147847662589],[127,267,66,-0.049491750681641196],[127,267,67,-0.040216780943147366],[127,267,68,-0.03134791567796321],[127,267,69,-0.024139682147908185],[127,267,70,-0.020837805885308005],[127,267,71,-0.016468465303338013],[127,267,72,-0.01871373925329729],[127,267,73,-0.02877752074678072],[127,267,74,-0.03477196855115302],[127,267,75,-0.03988462195293017],[127,267,76,-0.03442007707939267],[127,267,77,-0.028972342828524858],[127,267,78,-0.032275931450574585],[127,267,79,-0.041651074879734476],[127,268,64,-0.029322534736395275],[127,268,65,-0.042451190018553527],[127,268,66,-0.048619922455414175],[127,268,67,-0.039565028805998305],[127,268,68,-0.03085029259810117],[127,268,69,-0.023632157727712398],[127,268,70,-0.020240252159794],[127,268,71,-0.015838447902221334],[127,268,72,-0.018026559723664896],[127,268,73,-0.02802717923695205],[127,268,74,-0.03402780137545488],[127,268,75,-0.039104920888258926],[127,268,76,-0.03374235028825972],[127,268,77,-0.028406370016232953],[127,268,78,-0.03165872582944424],[127,268,79,-0.04083799449738774],[127,269,64,-0.028757078741805386],[127,269,65,-0.04161251727424866],[127,269,66,-0.04777306553526523],[127,269,67,-0.03893436031920375],[127,269,68,-0.030370818196227244],[127,269,69,-0.023142166795595397],[127,269,70,-0.01966314573760585],[127,269,71,-0.015231613724746988],[127,269,72,-0.01736416990589705],[127,269,73,-0.027302422939464974],[127,269,74,-0.033308969633988064],[127,269,75,-0.03835201254641187],[127,269,76,-0.033086647328847286],[127,269,77,-0.027857134119112066],[127,269,78,-0.03106086327459915],[127,269,79,-0.040052501919884353],[127,270,64,-0.028211702595290697],[127,270,65,-0.04079846311828235],[127,270,66,-0.04695100580454482],[127,270,67,-0.038324625392895224],[127,270,68,-0.02990931425302929],[127,270,69,-0.022669436069280652],[127,270,70,-0.019106054127809413],[127,270,71,-0.014647358165486395],[127,270,72,-0.01672591202032941],[127,270,73,-0.026602677056690893],[127,270,74,-0.03261498318217699],[127,270,75,-0.037625451260656397],[127,270,76,-0.03245263335358834],[127,270,77,-0.027324440247120486],[127,270,78,-0.030482118354585815],[127,270,79,-0.039294212027263756],[127,271,64,-0.027686064814495395],[127,271,65,-0.04000871376782651],[127,271,66,-0.046153555802204545],[127,271,67,-0.03773566710383276],[127,271,68,-0.029465601106605725],[127,271,69,-0.022213690004667143],[127,271,70,-0.018568542308044528],[127,271,71,-0.014085077148569295],[127,271,72,-0.01611112881579856],[127,271,73,-0.025927366475461677],[127,271,74,-0.03194535295005572],[127,271,75,-0.0369247920464244],[127,271,76,-0.03183997089759562],[127,271,77,-0.026808086769426632],[127,271,78,-0.029922259968728313],[127,271,79,-0.03856273676000016],[127,272,64,-0.027179824313433996],[127,272,65,-0.039242946074239296],[127,272,66,-0.0453805158007852],[127,272,67,-0.037167322596646735],[127,272,68,-0.02903949838642572],[127,272,69,-0.02177465156443934],[127,272,70,-0.018050173722281043],[127,272,71,-0.013544168332300403],[127,272,72,-0.015519164785243173],[127,272,73,-0.025275916743587118],[127,272,74,-0.031299591704130145],[127,272,75,-0.036249591413970494],[127,272,76,-0.031248320566185796],[127,272,77,-0.02630786588099331],[127,272,78,-0.029381052046733233],[127,272,79,-0.037857686144425584],[127,273,64,-0.026692641086811318],[127,273,65,-0.038500828502279254],[127,273,66,-0.044631674872867726],[127,273,67,-0.036619423969577417],[127,273,68,-0.02863082572603222],[127,273,69,-0.021352042958383985],[127,273,70,-0.017550511235471574],[127,273,71,-0.013024032250208662],[127,273,72,-0.014949367312761195],[127,273,73,-0.024647754991712793],[127,273,74,-0.030677214767430697],[127,273,75,-0.03559940814389491],[127,273,76,-0.0306773416959722],[127,273,77,-0.025823564156788437],[127,273,78,-0.02885825423245364],[127,273,79,-0.03717866928669095],[127,274,64,-0.026224176858775823],[127,274,65,-0.037782022083409486],[127,274,66,-0.043906811942236404],[127,274,67,-0.036091799142222054],[127,274,68,-0.028239403453049452],[127,274,69,-0.020945586353823858],[127,274,70,-0.017069118043185748],[127,274,71,-0.01252407338687191],[127,274,72,-0.01440108775041577],[127,274,73,-0.024042310798816326],[127,274,74,-0.030077740696459545],[127,274,75,-0.034973804024045825],[127,274,76,-0.03012669298776224],[127,274,77,-0.025354963091442213],[127,274,78,-0.02835362254963118],[127,274,79,-0.036525295332974266],[127,275,64,-0.025774095694954414],[127,275,65,-0.03708618134024275],[127,275,66,-0.043205696816205535],[127,275,67,-0.035584272702936175],[127,275,68,-0.027865053255147945],[127,275,69,-0.020555004554721847],[127,275,70,-0.016605558534565606],[127,275,71,-0.012043701187214312],[127,275,72,-0.013873682423449139],[127,275,73,-0.02345901699988856],[127,275,74,-0.02950069191388655],[127,275,75,-0.034372344546451175],[127,275,76,-0.02959603310959451],[127,275,77,-0.024901839622241212],[127,275,78,-0.027866910047530124],[127,275,79,-0.03589717439381404],[127,276,64,-0.025342064576753618],[127,276,65,-0.036412955179387946],[127,276,66,-0.04252809119577677],[127,276,67,-0.035096666733696165],[127,276,68,-0.02750759882073785],[127,276,69,-0.02018002164816761],[127,276,70,-0.016159399107196208],[127,276,71,-0.011582330998319838],[127,276,72,-0.013366513562919338],[127,276,73,-0.022897310434595693],[127,276,74,-0.028945595296006703],[127,276,75,-0.03379459956307296],[127,276,76,-0.029085021268369156],[127,276,77,-0.024463966633441355],[127,276,78,-0.027397867424493266],[127,276,79,-0.03529391843062858],[127,277,64,-0.024927753937047114],[127,277,65,-0.03576198775018738],[127,277,66,-0.04187374966051674],[127,277,67,-0.03462880161038366],[127,277,68,-0.02716686645326616],[127,277,69,-0.019820363617103768],[127,277,70,-0.01573020893272622],[127,277,71,-0.011139384943124053],[127,277,72,-0.012878950165102494],[127,277,73,-0.02235663263594977],[127,277,74,-0.02841198271411654],[127,277,75,-0.03324014389931029],[127,277,76,-0.028593317748637704],[127,277,77,-0.024041113439980232],[127,277,78,-0.02694624362756985],[127,277,79,-0.034715142102659004],[127,278,64,-0.0245308381564625],[127,278,65,-0.035132919267020855],[127,278,66,-0.04124242062523679],[127,278,67,-0.034180496776578945],[127,278,68,-0.026842685658067685],[127,278,69,-0.019475758918267323],[127,278,70,-0.015317560672280893],[127,278,71,-0.010714292725627926],[127,278,72,-0.012410368777293753],[127,278,73,-0.021836430458211455],[127,278,74,-0.027899391529081923],[127,278,75,-0.03270855792427955],[127,278,76,-0.028120584417205663],[127,278,77,-0.023633046248746147],[127,278,78,-0.026511786426459353],[127,278,79,-0.034160463572716376],[127,279,64,-0.02415099601957551],[127,279,65,-0.03452538679305226],[127,279,66,-0.04063384726576115],[127,279,67,-0.03375157148908156],[127,279,68,-0.02653488970079791],[127,279,69,-0.019145939024438025],[127,279,70,-0.014921031140909832],[127,279,71,-0.010306492367539],[127,279,72,-0.011960154209909032],[127,279,73,-0.021336156643437625],[127,279,74,-0.027407365038482585],[127,279,75,-0.03219942807699865],[127,279,76,-0.02766648519229124],[127,279,77,-0.023239528595649414],[127,279,78,-0.02609424296011863],[127,279,79,-0.03362950527025785],[127,280,64,-0.023787911130413418],[127,280,65,-0.03393902498348898],[127,280,66,-0.040047768411271736],[127,280,67,-0.03334184553350358],[127,280,68,-0.02624331613654508],[127,280,69,-0.018830638930191823],[127,280,70,-0.0145402019204953],[127,280,71,-0.009915430876481121],[127,280,72,-0.011527700175031914],[127,280,73,-0.020855270326252933],[127,280,74,-0.02693545287581754],[127,280,75,-0.03171234734769501],[127,280,76,-0.027230686476072734],[127,280,77,-0.022860321756836142],[127,280,78,-0.025693360254487284],[127,280,79,-0.03312189461045512],[127,281,64,-0.023441272286720986],[127,281,65,-0.03337346678658918],[127,281,66,-0.039483919400895635],[127,281,67,-0.032951139908385434],[127,281,68,-0.025967807308764194],[127,281,69,-0.01852959762044128],[127,281,70,-0.014174659920702841],[127,281,71,-0.0095405648461144],[127,281,72,-0.01111240985175602],[127,281,73,-0.020393237476567266],[127,281,74,-0.026483211361334306],[127,281,75,-0.031246915713519265],[127,281,76,-0.026812857549521778],[127,281,77,-0.022495185132459603],[127,281,78,-0.025308885709868615],[127,281,79,-0.032637264668025],[127,282,64,-0.023110773812494538],[127,282,65,-0.03282834410081301],[127,282,66,-0.038942032902371776],[127,282,67,-0.03257927747637271],[127,282,68,-0.025708210817206072],[127,282,69,-0.018242558501106888],[127,282,70,-0.013823997887682756],[127,282,71,-0.009181360988668523],[127,282,72,-0.010713696378842345],[127,282,73,-0.019949531280072805],[127,282,74,-0.026050203804102997],[127,282,75,-0.030802740528000045],[127,282,76,-0.026412670928481072],[127,282,77,-0.02214387660150448],[127,282,78,-0.02494056755659141],[127,282,79,-0.032175254804690676],[127,283,64,-0.02279611584833988],[127,283,65,-0.032303288386680236],[127,283,66,-0.0384218396908167],[127,283,67,-0.03222608358109955],[127,283,68,-0.02546437995405561],[127,283,69,-0.017969269791338477],[127,283,70,-0.013487814860365255],[127,283,71,-0.00883729660055124],[127,283,72,-0.010330983275371668],[127,283,73,-0.01952363245647065],[127,283,74,-0.02563600075502388],[127,283,75,-0.03037943686362965],[127,283,76,-0.026029802680010913],[127,283,77,-0.02180615284624958],[127,283,78,-0.02458815527766826],[127,283,79,-0.03173551124924227],[127,284,64,-0.022497004599216795],[127,284,65,-0.03179793123202029],[127,284,66,-0.03792306938574821],[127,284,67,-0.03189138662847948],[127,284,68,-0.02523617410749056],[127,284,69,-0.017709484876732243],[127,284,70,-0.013165716574271293],[127,284,71,-0.008507859961791093],[127,284,72,-0.009963704790176605],[127,284,73,-0.019115029515442486],[127,284,74,-0.025240180210482445],[127,284,75,-0.029976627806987916],[127,284,76,-0.0256639326980648],[127,284,77,-0.021481769645018845],[127,284,78,-0.024251399997233383],[127,284,79,-0.03131768762922338],[127,285,64,-0.02221315253914583],[127,285,65,-0.031311904869428864],[127,285,66,-0.037445451144669455],[127,285,67,-0.03157501863116957],[127,285,68,-0.025023459131867515],[127,285,69,-0.017462962623012782],[127,285,70,-0.012857315812830072],[127,285,71,-0.008192550670149658],[127,285,72,-0.009611306180917163],[127,285,73,-0.018723218950437458],[127,285,74,-0.024862327766388675],[127,285,75,-0.029593944705826217],[127,285,76,-0.025314744937591577],[127,285,77,-0.02117048213194586],[127,285,78,-0.02393005483361188],[127,285,79,-0.030921445453331423],[127,286,64,-0.021944278572452458],[127,286,65,-0.030844842644866134],[127,286,66,-0.036988714311656914],[127,286,67,-0.03127681571502997],[127,286,68,-0.02482610768373835],[127,286,69,-0.01722946764967219],[127,286,70,-0.012562232706258673],[127,286,71,-0.007890879910803193],[127,286,72,-0.009273243923732914],[127,286,73,-0.018347705370393264],[127,286,74,-0.024502036722359108],[127,286,75,-0.029231027367545313],[127,286,76,-0.024981927606198523],[127,286,77,-0.020872045022552528],[127,286,78,-0.023623875215943536],[127,286,79,-0.030546454543665585],[127,287,64,-0.021690108151096565],[127,287,65,-0.030396379436418264],[127,287,66,-0.0365525890195003],[127,287,67,-0.030996618586424485],[127,287,68,-0.024643999522855276],[127,287,69,-0.017008770563035663],[127,287,70,-0.01228009497806742],[127,287,71,-0.007602370662493723],[127,287,72,-0.00894898585440982],[127,287,73,-0.017988001569510133],[127,287,74,-0.02415890813578541],[127,287,75,-0.028887524208478347],[127,287,76,-0.024665173312520598],[127,287,77,-0.020586212804002055],[127,287,78,-0.023332619163332357],[127,287,79,-0.030192393416977627],[127,288,64,-0.02145037334760016],[127,288,65,-0.029966152022331646],[127,288,66,-0.03613680674404789],[127,288,67,-0.03073427295923056],[127,288,68,-0.024477021777280967],[127,288,69,-0.016800648148205012],[127,288,70,-0.012010538139265527],[127,288,71,-0.007326557841043709],[127,288,72,-0.008638011241997113],[127,288,73,-0.01764362853519304],[127,288,74,-0.02383255082552065],[127,288,75,-0.02856309235336956],[127,288,76,-0.024364179170453793],[127,288,77,-0.020312739888949057],[127,288,78,-0.023056047525546318],[127,288,79,-0.029858949614092637],[127,289,64,-0.021224812847290303],[127,289,65,-0.029553798549918388],[127,289,66,-0.03574109849812639],[127,289,67,-0.030489626263617925],[127,289,68,-0.024325065178389466],[127,289,69,-0.01660488009587464],[127,289,70,-0.011753202948739468],[127,289,71,-0.00706298643156672],[127,289,72,-0.00833980925966651],[127,289,73,-0.017314113845318307],[127,289,74,-0.0235225796684767],[127,289,75,-0.02825739602673969],[127,289,76,-0.024078644958893527],[127,289,77,-0.020051378327612855],[127,289,78,-0.02279392131273842],[127,289,79,-0.029545816934395792],[127,290,64,-0.021013171470752667],[127,290,65,-0.029158951858412798],[127,290,66,-0.03536517667327912],[127,290,67,-0.030262498506328925],[127,290,68,-0.024187992274853385],[127,290,69,-0.016421221700251416],[127,290,70,-0.011507714027047672],[127,290,71,-0.006811195953734756],[127,290,72,-0.008053866803068287],[127,290,73,-0.016998979434256968],[127,290,74,-0.02322860254978395],[127,290,75,-0.0279700935628572],[127,290,76,-0.023808258187164567],[127,290,77,-0.019801858892265062],[127,290,78,-0.022545979138956573],[127,290,79,-0.029252671591512337],[127,291,64,-0.020815199777240903],[127,291,65,-0.028781242879629198],[127,291,66,-0.03500874502228976],[127,291,67,-0.03005269815788586],[127,291,68,-0.024065654633347273],[127,291,69,-0.01624941854707921],[127,291,70,-0.011273691331136246],[127,291,71,-0.006570728896192906],[127,291,72,-0.0077796754153692796],[127,291,73,-0.016697748816385062],[127,291,74,-0.022950228147525488],[127,291,75,-0.02770084521768458],[127,291,76,-0.02355270289341635],[127,291,77,-0.019563902091408177],[127,291,78,-0.02231195035739747],[127,291,79,-0.02897918617002046],[127,292,64,-0.020630653998716848],[127,292,65,-0.028420304668741375],[127,292,66,-0.03467150979229976],[127,292,67,-0.02986003964052595],[127,292,68,-0.02395791169011103],[127,292,69,-0.01608922259675096],[127,292,70,-0.011050762712489148],[127,292,71,-0.00634113979351393],[127,292,72,-0.007516738417673907],[127,292,73,-0.016409954296488893],[127,292,74,-0.022687073700457278],[127,292,75,-0.02744932101664206],[127,292,76,-0.02331166863271111],[127,292,77,-0.019337229596065986],[127,292,78,-0.02209156876120505],[127,292,79,-0.028725044167482863],[127,293,64,-0.020459295881981657],[127,293,65,-0.02807577248735055],[127,293,66,-0.034353179959933096],[127,293,67,-0.029684343427491537],[127,293,68,-0.02386463069340494],[127,293,69,-0.01594039204424413],[127,293,70,-0.010838563753294679],[127,293,71,-0.006121994991320173],[127,293,72,-0.007264570588747302],[127,293,73,-0.016135136594026028],[127,293,74,-0.022438764671650305],[127,293,75,-0.027215200509533657],[127,293,76,-0.023084850250828473],[127,293,77,-0.019121564074995427],[127,293,78,-0.021884572469937972],[127,293,79,-0.028489939889486043],[127,294,64,-0.02030089247556818],[127,294,65,-0.02774728378841687],[127,294,66,-0.034053467303403605],[127,294,67,-0.0295254359257087],[127,294,68,-0.02378568642033572],[127,294,69,-0.01580269097643747],[127,294,70,-0.010636737426379744],[127,294,71,-0.0059128722644528975],[127,294,72,-0.007022697716370381],[127,294,73,-0.015872844343550702],[127,294,74,-0.02220493429378235],[127,294,75,-0.0269981724045527],[127,294,76,-0.022871947530332812],[127,294,77,-0.018916628886215398],[127,294,78,-0.021690703649342273],[127,294,79,-0.0282735781568262],[127,295,64,-0.020155215861229234],[127,295,65,-0.027434478139029817],[127,295,66,-0.033772086411765344],[127,295,67,-0.02938314930187751],[127,295,68,-0.023720960841882206],[127,295,69,-0.015675888975989292],[127,295,70,-0.010444933696104356],[127,295,71,-0.005713360373957907],[127,295,72,-0.006790656088484792],[127,295,73,-0.015622633539871344],[127,295,74,-0.021985223069227153],[127,295,75,-0.02679793415405124],[127,295,76,-0.022672664792199693],[127,295,77,-0.018722147730485774],[127,295,78,-0.021509708190515016],[127,295,79,-0.028075673958092188],[127,296,64,-0.020022042828717855],[127,296,65,-0.02713699708010443],[127,296,66,-0.03350875462989655],[127,296,67,-0.02925732124994202],[127,296,68,-0.023670342733741606],[127,296,69,-0.015559760669865894],[127,296,70,-0.010262809059025204],[127,296,71,-0.005523058562288165],[127,296,72,-0.006567991923747194],[127,296,73,-0.015384066927122889],[127,296,74,-0.021779278223925138],[127,296,75,-0.02661419149060912],[127,296,76,-0.02248671045162042],[127,296,77,-0.018537844265520423],[127,296,78,-0.021341335346996587],[127,296,79,-0.0278959520456639],[127,297,64,-0.019901154492429046],[127,297,65,-0.026854483922053925],[127,297,66,-0.03326319193777154],[127,297,67,-0.029147794697785542],[127,297,68,-0.02363372723043166],[127,297,69,-0.015454085220420995],[127,297,70,-0.010090026022929868],[127,297,71,-0.005341575985859485],[127,297,72,-0.006354260740877634],[127,297,73,-0.015156713330798802],[127,297,74,-0.021586753113947886],[127,297,75,-0.026446657911857935],[127,297,76,-0.022313796526579544],[127,297,77,-0.018363441679767178],[127,297,78,-0.021185337328334223],[127,297,79,-0.02773414647304445],[127,298,64,-0.019792335949849908],[127,298,65,-0.02658658357525527],[127,298,66,-0.03303512086068787],[127,298,67,-0.029054417547413378],[127,298,68,-0.023611015414871185],[127,298,69,-0.015358645850194615],[127,298,70,-0.0099262526146097],[127,298,71,-0.005168531174366587],[127,298,72,-0.0061490267550995915],[127,298,73,-0.01494014701946245],[127,298,74,-0.021407306670119433],[127,298,75,-0.026295054197702096],[127,298,76,-0.02215363818184418],[127,298,77,-0.01819866230755379],[127,298,78,-0.02104146893047681],[127,298,79,-0.027590000152090996],[127,299,64,-0.019695394971340246],[127,299,65,-0.026332961082285233],[127,299,66,-0.032824284761862055],[127,299,67,-0.028977060492402996],[127,299,68,-0.02360213168837123],[127,299,69,-0.015273246856098203],[127,299,70,-0.009771179091646216],[127,299,71,-0.005003568420276859],[127,299,72,-0.005951878941982551],[127,299,73,-0.014733963481812763],[127,299,74,-0.021240619020820528],[127,299,75,-0.026159123862990137],[127,299,76,-0.022005968984080523],[127,299,77,-0.01804324274310733],[127,299,78,-0.020909502450520333],[127,299,79,-0.027463279476182476],[127,300,64,-0.01961018662400844],[127,300,65,-0.026093325947207147],[127,300,66,-0.032630471799890017],[127,300,67,-0.02891564037760294],[127,300,68,-0.023607046564414362],[127,300,69,-0.015197735931200268],[127,300,70,-0.009624539846664198],[127,300,71,-0.004846379252032958],[127,300,72,-0.005762452082307348],[127,300,73,-0.014537800087372968],[127,300,74,-0.021086411910817848],[127,300,75,-0.026038653307190907],[127,300,76,-0.021870560768863647],[127,300,77,-0.017896953488202257],[127,300,78,-0.020789247048228123],[127,300,79,-0.027353793293414308],[127,301,64,-0.019536579673335386],[127,301,65,-0.025867399226188543],[127,301,66,-0.032453482605876154],[127,301,67,-0.02887008821657805],[127,301,68,-0.02362574503302535],[127,301,69,-0.015131972943193923],[127,301,70,-0.009486082625099456],[127,301,71,-0.004696672052976548],[127,301,72,-0.0055803967601645],[127,301,73,-0.01435130648194028],[127,301,74,-0.020944419615141607],[127,301,75,-0.025933443176122138],[127,301,76,-0.021747195420383916],[127,301,77,-0.017759571189028794],[127,301,78,-0.02068052133259836],[127,301,79,-0.02726136569916237],[127,302,64,-0.01947445110384988],[127,302,65,-0.025654908290468733],[127,302,66,-0.032293125194662396],[127,302,67,-0.02884034402000091],[127,302,68,-0.023658221324817395],[127,302,69,-0.015075824713058714],[127,302,70,-0.009355563352489838],[127,302,71,-0.004554166912610386],[127,302,72,-0.005405374230604032],[127,302,73,-0.01417413950286127],[127,302,74,-0.020814384041311827],[127,302,75,-0.025843303576100464],[127,302,76,-0.02163566019205971],[127,302,77,-0.017630874118402036],[127,302,78,-0.020583148896269002],[127,302,79,-0.02718583147668954],[127,303,64,-0.019423685837444183],[127,303,65,-0.025455586699664225],[127,303,66,-0.032149214897797804],[127,303,67,-0.028826356563059256],[127,303,68,-0.02370447853478515],[127,303,69,-0.015029164578126362],[127,303,70,-0.009232745670453017],[127,303,71,-0.0044185951145142245],[127,303,72,-0.0052370558570761176],[127,303,73,-0.01400596260055135],[127,303,74,-0.02069605428269761],[127,303,75,-0.02576805366882982],[127,303,76,-0.021535747352995144],[127,303,77,-0.017510641935059367],[127,303,78,-0.020496958064959804],[127,303,79,-0.02712703567757958],[127,304,64,-0.019384176429435584],[127,304,65,-0.025269174052347187],[127,304,66,-0.032021574268414246],[127,304,67,-0.028828083122418188],[127,304,68,-0.023764528214981578],[127,304,69,-0.0149918719262709],[127,304,70,-0.009117400443415287],[127,304,71,-0.004289698595609658],[127,304,72,-0.005075122524123779],[127,304,73,-0.013846445240200905],[127,304,74,-0.02058918616301515],[127,304,75,-0.025707521249651956],[127,304,76,-0.021447253824272598],[127,304,77,-0.017398655443233695],[127,304,78,-0.02042178164051115],[127,304,79,-0.02708483317267168],[127,305,64,-0.019355822741399954],[127,305,65,-0.025095415814014876],[127,305,66,-0.0319100329576246],[127,305,67,-0.028845489181090523],[127,305,68,-0.02383838993359438],[127,305,69,-0.014963831699159581],[127,305,70,-0.009009305234440386],[127,305,71,-0.004167229375092343],[127,305,72,-0.004919264024200196],[127,305,73,-0.01369526228327177],[127,305,74,-0.020493541772206438],[127,305,75,-0.02566154230883924],[127,305,76,-0.0213699808054114],[127,305,77,-0.017294696353724742],[127,305,78,-0.020357456638066537],[127,305,79,-0.027059088172423217],[127,306,64,-0.01933853158972695],[127,306,65,-0.024934063122535585],[127,306,66,-0.03181442756204023],[127,306,67,-0.02887854809951185],[127,306,68,-0.0239260907978493],[127,306,69,-0.014944933862388803],[127,306,70,-0.008908243748340977],[127,306,71,-0.004050948951104924],[127,306,72,-0.004769178417286912],[127,306,73,-0.013552093348362527],[127,306,74,-0.02040888899404037],[127,306,75,-0.02562996057569944],[127,306,76,-0.02130373339148148],[127,306,77,-0.01719854704793531],[127,306,78,-0.02030382401814596],[127,306,79,-0.02704967371570207],[127,307,64,-0.019332216368773723],[127,307,65,-0.024784872571149506],[127,307,66,-0.03173460144198195],[127,307,67,-0.028927240751039827],[127,307,68,-0.0240276649380475],[127,307,69,-0.014935072840200398],[127,307,70,-0.008814005240076427],[127,307,71,-0.003940627662966403],[127,307,72,-0.004624571361782115],[127,307,73,-0.013416622150987833],[127,307,74,-0.020335001025875706],[127,307,75,-0.02561262704535216],[127,307,76,-0.02124832018152325],[127,307,77,-0.017109990346588298],[127,307,78,-0.020260728414556967],[127,307,79,-0.027056471126076936],[127,308,64,-0.019336796647432902],[127,308,65,-0.024647605969081145],[127,308,66,-0.03167040450994176],[127,308,67,-0.028991555120048317],[127,308,68,-0.024143152949966697],[127,308,69,-0.014934146912370003],[127,308,70,-0.00872638388627663],[127,308,71,-0.0038360440165290588],[127,308,72,-0.004485155414935019],[127,308,73,-0.01328853582180476],[127,308,74,-0.020271655891148734],[127,308,75,-0.025609399488151392],[127,308,76,-0.02120355287910683],[127,308,77,-0.017028809285106656],[127,308,78,-0.020228017859311394],[127,308,79,-0.027079369434768522],[127,309,64,-0.01935219773785571],[127,309,65,-0.024522030079787708],[127,309,66,-0.03162169298881534],[127,309,67,-0.029071485860715455],[127,309,68,-0.024272601292753514],[127,309,69,-0.014942057570735818],[127,309,70,-0.00864517811755007],[127,309,71,-0.00373698396997242],[127,309,72,-0.0043506493008927585],[127,309,73,-0.013167524202794519],[127,309,74,-0.020218635945260934],[127,309,75,-0.025620141941836008],[127,309,76,-0.021169245886039963],[127,309,77,-0.016954786897895608],[127,309,78,-0.02020554350592942],[127,309,79,-0.027118264769514372],[127,310,64,-0.019378350235005743],[127,310,65,-0.02440791633683609],[127,310,66,-0.031588329139385085],[127,310,67,-0.029167033814537977],[127,310,68,-0.02441606163934077],[127,310,69,-0.014958708832716437],[127,310,70,-0.008570189909051817],[127,310,71,-0.0036432401770809626],[127,310,72,-0.004220777144217464],[127,310,73,-0.01305327912088553],[127,310,74,-0.020175727375661312],[127,310,75,-0.02564472418660414],[127,310,76,-0.021145215890415712],[127,310,77,-0.01688770601403091],[127,310,78,-0.020193159352731967],[127,310,79,-0.027173059708698932],[127,311,64,-0.01941518952566331],[127,311,65,-0.024305040537374166],[127,311,66,-0.031570180956506384],[127,311,67,-0.02927820548455678],[127,311,68,-0.024573590176356797],[127,311,69,-0.01498400650907152],[127,311,70,-0.008501224026627474],[127,311,71,-0.003554611184812198],[127,311,72,-0.004095267666543731],[127,311,73,-0.012945493638508939],[127,311,74,-0.02014271969706391],[127,311,75,-0.025683021203449036],[127,311,76,-0.021131281450395303],[127,311,77,-0.016827349067135036],[127,311,78,-0.020190721967962042],[127,311,79,-0.027243662600224323],[127,312,64,-0.01946265526543722],[127,312,65,-0.02421318251311573],[127,312,66,-0.03156712183339139],[127,312,67,-0.029405012464206768],[127,312,68,-0.0247452468504042],[127,312,69,-0.015017857423039026],[127,312,70,-0.008438087225663209],[127,312,71,-0.0034709005816977614],[127,312,72,-0.003973853343836844],[127,312,73,-0.012843861280557024],[127,312,74,-0.020119405242863733],[127,312,75,-0.025734912616217357],[127,312,76,-0.0211272625753102],[127,312,77,-0.01677349792248379],[127,312,78,-0.020198090218796542],[127,312,79,-0.0273299868447134],[127,313,64,-0.01952069082228556],[127,313,65,-0.024132125778718764],[127,313,66,-0.03157903019334191],[127,313,67,-0.02954747081865511],[127,313,68,-0.024931094557523698],[127,313,69,-0.015060168577888689],[127,313,70,-0.008380587399609191],[127,313,71,-0.0033919160933796213],[127,313,72,-0.0038562695215256806],[127,313,73,-0.01274807523722286],[127,313,74,-0.020105578653963577],[127,313,75,-0.02580028211799898],[127,313,76,-0.021132980305871345],[127,313,77,-0.0167259337246593],[127,313,78,-0.020215125006548897],[127,313,79,-0.027431950142774233],[127,314,64,-0.01958924268500853],[127,314,65,-0.024061657157400964],[127,314,66,-0.03160578908823795],[127,314,67,-0.029705600416449745],[127,314,68,-0.02513119827261151],[127,314,69,-0.015110846269847301],[127,314,70,-0.008328532674992313],[127,314,71,-0.0033174686213571854],[127,314,72,-0.003742253484609262],[127,314,73,-0.012657827542213725],[127,314,74,-0.020101036366378746],[127,314,75,-0.02587901688261665],[127,314,76,-0.021148256295490716],[127,314,77,-0.01668443676933989],[127,314,78,-0.02024168901060736],[127,314,79,-0.02754947370621334],[127,315,64,-0.0196682598351304],[127,315,65,-0.02400156638358323],[127,315,66,-0.03164728576302491],[127,315,67,-0.029879424209244478],[127,315,68,-0.025345624115501876],[127,315,69,-0.0151697951432613],[127,315,70,-0.008281730449572073],[127,315,71,-0.0032473712207871067],[127,315,72,-0.0036315434796550423],[127,315,73,-0.012572808225838845],[127,315,74,-0.020105576099129288],[127,315,75,-0.025971006962132406],[127,315,76,-0.021172912394919405],[127,315,77,-0.01664878640307221],[127,315,78,-0.020277646443880293],[127,315,79,-0.027682481433234728],[127,316,64,-0.019757693080552523],[127,316,65,-0.02395164568230787],[127,316,66,-0.03170341118539371],[127,316,67,-0.030068967457341507],[127,316,68,-0.025574438350406542],[127,316,69,-0.015236917184799288],[127,316,70,-0.008239986370162752],[127,316,71,-0.0031814380129779715],[127,316,72,-0.003523877685457067],[127,316,73,-0.012492704442505418],[127,316,74,-0.020118996344096352],[127,316,75,-0.026076144671462718],[127,316,76,-0.02120677024262746],[127,316,77,-0.016618760955137434],[127,316,78,-0.020322862822764458],[127,316,79,-0.027830899047847076],[127,317,64,-0.019857494349348102],[127,317,65,-0.023911689325137746],[127,317,66,-0.03177405953979447],[127,317,67,-0.030274256898762966],[127,317,68,-0.025817706315386445],[127,317,69,-0.015312110653444786],[127,317,70,-0.008203103246522332],[127,317,71,-0.0031194830280344968],[127,317,72,-0.0034189931289821235],[127,317,73,-0.012417199572195737],[127,317,74,-0.020141095859679596],[127,317,75,-0.026194323961368858],[127,317,76,-0.02124965086356517],[127,317,77,-0.016594137705873903],[127,317,78,-0.020377204754887978],[127,317,79,-0.02799465320388733],[127,318,64,-0.0199676159420469],[127,318,65,-0.023881493162191087],[127,318,66,-0.03185912768486506],[127,318,67,-0.030495319859546316],[127,318,68,-0.026075491278535392],[127,318,69,-0.015395268942989659],[127,318,70,-0.008170879897599691],[127,318,71,-0.003061318972938513],[127,318,72,-0.0033166245431109076],[127,318,73,-0.012345972295545205],[127,318,74,-0.02017167317025715],[127,318,75,-0.026325439781267983],[127,318,76,-0.021301374279159246],[127,318,77,-0.016574692896057824],[127,318,78,-0.020440539748105956],[127,318,79,-0.028173670554275745],[127,319,64,-0.020088017778420134],[127,319,65,-0.023860859741589198],[127,319,66,-0.031958514655084744],[127,319,67,-0.030732181604606786],[127,319,68,-0.026347855729867777],[127,319,69,-0.015486288920120751],[127,319,70,-0.008143120053428755],[127,319,71,-0.0030067648972918327],[127,319,72,-0.0032165108957062905],[127,319,73,-0.012278697887987765],[127,319,74,-0.02021052086626561],[127,319,75,-0.026469384403402782],[127,319,76,-0.02136176102653734],[127,319,77,-0.016560200378746285],[127,319,78,-0.02051273076477272],[127,319,79,-0.028367873943080612]] diff --git a/pumpkin-world/assets/converted_cave_spaghetti_2d_7_4.json b/pumpkin-world/assets/converted_cave_spaghetti_2d_7_4.json new file mode 100644 index 000000000..3776b4925 --- /dev/null +++ b/pumpkin-world/assets/converted_cave_spaghetti_2d_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,1.0],[112,-64,65,1.0],[112,-64,66,1.0],[112,-64,67,1.0],[112,-64,68,1.0],[112,-64,69,1.0],[112,-64,70,1.0],[112,-64,71,1.0],[112,-64,72,1.0],[112,-64,73,1.0],[112,-64,74,1.0],[112,-64,75,1.0],[112,-64,76,1.0],[112,-64,77,1.0],[112,-64,78,1.0],[112,-64,79,1.0],[112,-63,64,1.0],[112,-63,65,1.0],[112,-63,66,1.0],[112,-63,67,1.0],[112,-63,68,1.0],[112,-63,69,1.0],[112,-63,70,1.0],[112,-63,71,1.0],[112,-63,72,1.0],[112,-63,73,1.0],[112,-63,74,1.0],[112,-63,75,1.0],[112,-63,76,1.0],[112,-63,77,1.0],[112,-63,78,1.0],[112,-63,79,1.0],[112,-62,64,1.0],[112,-62,65,1.0],[112,-62,66,1.0],[112,-62,67,1.0],[112,-62,68,1.0],[112,-62,69,1.0],[112,-62,70,1.0],[112,-62,71,1.0],[112,-62,72,1.0],[112,-62,73,1.0],[112,-62,74,1.0],[112,-62,75,1.0],[112,-62,76,1.0],[112,-62,77,1.0],[112,-62,78,1.0],[112,-62,79,1.0],[112,-61,64,1.0],[112,-61,65,1.0],[112,-61,66,1.0],[112,-61,67,1.0],[112,-61,68,1.0],[112,-61,69,1.0],[112,-61,70,1.0],[112,-61,71,1.0],[112,-61,72,1.0],[112,-61,73,1.0],[112,-61,74,1.0],[112,-61,75,1.0],[112,-61,76,1.0],[112,-61,77,1.0],[112,-61,78,1.0],[112,-61,79,1.0],[112,-60,64,1.0],[112,-60,65,1.0],[112,-60,66,1.0],[112,-60,67,1.0],[112,-60,68,1.0],[112,-60,69,1.0],[112,-60,70,1.0],[112,-60,71,1.0],[112,-60,72,1.0],[112,-60,73,1.0],[112,-60,74,1.0],[112,-60,75,1.0],[112,-60,76,1.0],[112,-60,77,1.0],[112,-60,78,1.0],[112,-60,79,1.0],[112,-59,64,1.0],[112,-59,65,1.0],[112,-59,66,1.0],[112,-59,67,1.0],[112,-59,68,1.0],[112,-59,69,1.0],[112,-59,70,1.0],[112,-59,71,1.0],[112,-59,72,1.0],[112,-59,73,1.0],[112,-59,74,1.0],[112,-59,75,1.0],[112,-59,76,1.0],[112,-59,77,1.0],[112,-59,78,1.0],[112,-59,79,1.0],[112,-58,64,1.0],[112,-58,65,1.0],[112,-58,66,1.0],[112,-58,67,1.0],[112,-58,68,1.0],[112,-58,69,1.0],[112,-58,70,1.0],[112,-58,71,1.0],[112,-58,72,1.0],[112,-58,73,1.0],[112,-58,74,1.0],[112,-58,75,1.0],[112,-58,76,1.0],[112,-58,77,1.0],[112,-58,78,1.0],[112,-58,79,1.0],[112,-57,64,1.0],[112,-57,65,1.0],[112,-57,66,1.0],[112,-57,67,1.0],[112,-57,68,1.0],[112,-57,69,1.0],[112,-57,70,1.0],[112,-57,71,1.0],[112,-57,72,1.0],[112,-57,73,1.0],[112,-57,74,1.0],[112,-57,75,1.0],[112,-57,76,1.0],[112,-57,77,1.0],[112,-57,78,1.0],[112,-57,79,1.0],[112,-56,64,1.0],[112,-56,65,1.0],[112,-56,66,1.0],[112,-56,67,1.0],[112,-56,68,1.0],[112,-56,69,1.0],[112,-56,70,1.0],[112,-56,71,1.0],[112,-56,72,1.0],[112,-56,73,1.0],[112,-56,74,1.0],[112,-56,75,1.0],[112,-56,76,1.0],[112,-56,77,1.0],[112,-56,78,1.0],[112,-56,79,1.0],[112,-55,64,1.0],[112,-55,65,1.0],[112,-55,66,1.0],[112,-55,67,1.0],[112,-55,68,1.0],[112,-55,69,1.0],[112,-55,70,1.0],[112,-55,71,1.0],[112,-55,72,1.0],[112,-55,73,1.0],[112,-55,74,1.0],[112,-55,75,1.0],[112,-55,76,1.0],[112,-55,77,1.0],[112,-55,78,1.0],[112,-55,79,1.0],[112,-54,64,1.0],[112,-54,65,1.0],[112,-54,66,1.0],[112,-54,67,1.0],[112,-54,68,1.0],[112,-54,69,1.0],[112,-54,70,1.0],[112,-54,71,1.0],[112,-54,72,1.0],[112,-54,73,1.0],[112,-54,74,1.0],[112,-54,75,1.0],[112,-54,76,1.0],[112,-54,77,1.0],[112,-54,78,1.0],[112,-54,79,1.0],[112,-53,64,1.0],[112,-53,65,1.0],[112,-53,66,1.0],[112,-53,67,1.0],[112,-53,68,1.0],[112,-53,69,1.0],[112,-53,70,1.0],[112,-53,71,1.0],[112,-53,72,1.0],[112,-53,73,1.0],[112,-53,74,1.0],[112,-53,75,1.0],[112,-53,76,1.0],[112,-53,77,1.0],[112,-53,78,1.0],[112,-53,79,1.0],[112,-52,64,1.0],[112,-52,65,1.0],[112,-52,66,1.0],[112,-52,67,1.0],[112,-52,68,1.0],[112,-52,69,1.0],[112,-52,70,1.0],[112,-52,71,1.0],[112,-52,72,1.0],[112,-52,73,1.0],[112,-52,74,1.0],[112,-52,75,1.0],[112,-52,76,1.0],[112,-52,77,1.0],[112,-52,78,1.0],[112,-52,79,1.0],[112,-51,64,1.0],[112,-51,65,1.0],[112,-51,66,1.0],[112,-51,67,1.0],[112,-51,68,1.0],[112,-51,69,1.0],[112,-51,70,1.0],[112,-51,71,1.0],[112,-51,72,1.0],[112,-51,73,1.0],[112,-51,74,1.0],[112,-51,75,1.0],[112,-51,76,1.0],[112,-51,77,1.0],[112,-51,78,1.0],[112,-51,79,1.0],[112,-50,64,1.0],[112,-50,65,1.0],[112,-50,66,1.0],[112,-50,67,1.0],[112,-50,68,1.0],[112,-50,69,1.0],[112,-50,70,1.0],[112,-50,71,1.0],[112,-50,72,1.0],[112,-50,73,1.0],[112,-50,74,1.0],[112,-50,75,1.0],[112,-50,76,1.0],[112,-50,77,1.0],[112,-50,78,1.0],[112,-50,79,1.0],[112,-49,64,1.0],[112,-49,65,1.0],[112,-49,66,1.0],[112,-49,67,1.0],[112,-49,68,1.0],[112,-49,69,1.0],[112,-49,70,1.0],[112,-49,71,1.0],[112,-49,72,1.0],[112,-49,73,1.0],[112,-49,74,1.0],[112,-49,75,1.0],[112,-49,76,1.0],[112,-49,77,1.0],[112,-49,78,1.0],[112,-49,79,1.0],[112,-48,64,1.0],[112,-48,65,1.0],[112,-48,66,1.0],[112,-48,67,1.0],[112,-48,68,1.0],[112,-48,69,1.0],[112,-48,70,1.0],[112,-48,71,1.0],[112,-48,72,1.0],[112,-48,73,1.0],[112,-48,74,1.0],[112,-48,75,1.0],[112,-48,76,1.0],[112,-48,77,1.0],[112,-48,78,1.0],[112,-48,79,1.0],[112,-47,64,1.0],[112,-47,65,1.0],[112,-47,66,1.0],[112,-47,67,1.0],[112,-47,68,1.0],[112,-47,69,1.0],[112,-47,70,1.0],[112,-47,71,1.0],[112,-47,72,1.0],[112,-47,73,1.0],[112,-47,74,1.0],[112,-47,75,1.0],[112,-47,76,1.0],[112,-47,77,1.0],[112,-47,78,1.0],[112,-47,79,1.0],[112,-46,64,1.0],[112,-46,65,1.0],[112,-46,66,1.0],[112,-46,67,1.0],[112,-46,68,1.0],[112,-46,69,1.0],[112,-46,70,1.0],[112,-46,71,1.0],[112,-46,72,1.0],[112,-46,73,1.0],[112,-46,74,1.0],[112,-46,75,1.0],[112,-46,76,1.0],[112,-46,77,1.0],[112,-46,78,1.0],[112,-46,79,1.0],[112,-45,64,1.0],[112,-45,65,1.0],[112,-45,66,1.0],[112,-45,67,1.0],[112,-45,68,1.0],[112,-45,69,1.0],[112,-45,70,1.0],[112,-45,71,1.0],[112,-45,72,1.0],[112,-45,73,1.0],[112,-45,74,1.0],[112,-45,75,1.0],[112,-45,76,1.0],[112,-45,77,1.0],[112,-45,78,1.0],[112,-45,79,1.0],[112,-44,64,1.0],[112,-44,65,1.0],[112,-44,66,1.0],[112,-44,67,1.0],[112,-44,68,1.0],[112,-44,69,1.0],[112,-44,70,1.0],[112,-44,71,1.0],[112,-44,72,1.0],[112,-44,73,1.0],[112,-44,74,1.0],[112,-44,75,1.0],[112,-44,76,1.0],[112,-44,77,1.0],[112,-44,78,1.0],[112,-44,79,1.0],[112,-43,64,1.0],[112,-43,65,1.0],[112,-43,66,1.0],[112,-43,67,1.0],[112,-43,68,1.0],[112,-43,69,1.0],[112,-43,70,1.0],[112,-43,71,1.0],[112,-43,72,1.0],[112,-43,73,1.0],[112,-43,74,1.0],[112,-43,75,1.0],[112,-43,76,1.0],[112,-43,77,1.0],[112,-43,78,1.0],[112,-43,79,1.0],[112,-42,64,1.0],[112,-42,65,1.0],[112,-42,66,1.0],[112,-42,67,1.0],[112,-42,68,1.0],[112,-42,69,1.0],[112,-42,70,1.0],[112,-42,71,1.0],[112,-42,72,1.0],[112,-42,73,1.0],[112,-42,74,1.0],[112,-42,75,1.0],[112,-42,76,1.0],[112,-42,77,1.0],[112,-42,78,1.0],[112,-42,79,1.0],[112,-41,64,1.0],[112,-41,65,1.0],[112,-41,66,1.0],[112,-41,67,1.0],[112,-41,68,1.0],[112,-41,69,1.0],[112,-41,70,1.0],[112,-41,71,1.0],[112,-41,72,1.0],[112,-41,73,1.0],[112,-41,74,1.0],[112,-41,75,1.0],[112,-41,76,1.0],[112,-41,77,1.0],[112,-41,78,1.0],[112,-41,79,1.0],[112,-40,64,1.0],[112,-40,65,1.0],[112,-40,66,1.0],[112,-40,67,1.0],[112,-40,68,1.0],[112,-40,69,1.0],[112,-40,70,1.0],[112,-40,71,1.0],[112,-40,72,1.0],[112,-40,73,1.0],[112,-40,74,1.0],[112,-40,75,1.0],[112,-40,76,1.0],[112,-40,77,1.0],[112,-40,78,1.0],[112,-40,79,1.0],[112,-39,64,1.0],[112,-39,65,1.0],[112,-39,66,1.0],[112,-39,67,1.0],[112,-39,68,1.0],[112,-39,69,1.0],[112,-39,70,1.0],[112,-39,71,1.0],[112,-39,72,1.0],[112,-39,73,1.0],[112,-39,74,1.0],[112,-39,75,1.0],[112,-39,76,1.0],[112,-39,77,1.0],[112,-39,78,1.0],[112,-39,79,1.0],[112,-38,64,1.0],[112,-38,65,1.0],[112,-38,66,1.0],[112,-38,67,1.0],[112,-38,68,1.0],[112,-38,69,1.0],[112,-38,70,1.0],[112,-38,71,1.0],[112,-38,72,1.0],[112,-38,73,1.0],[112,-38,74,1.0],[112,-38,75,1.0],[112,-38,76,1.0],[112,-38,77,1.0],[112,-38,78,1.0],[112,-38,79,1.0],[112,-37,64,1.0],[112,-37,65,1.0],[112,-37,66,1.0],[112,-37,67,1.0],[112,-37,68,1.0],[112,-37,69,1.0],[112,-37,70,1.0],[112,-37,71,1.0],[112,-37,72,1.0],[112,-37,73,1.0],[112,-37,74,1.0],[112,-37,75,1.0],[112,-37,76,1.0],[112,-37,77,1.0],[112,-37,78,1.0],[112,-37,79,1.0],[112,-36,64,1.0],[112,-36,65,1.0],[112,-36,66,1.0],[112,-36,67,1.0],[112,-36,68,1.0],[112,-36,69,1.0],[112,-36,70,1.0],[112,-36,71,1.0],[112,-36,72,1.0],[112,-36,73,1.0],[112,-36,74,1.0],[112,-36,75,1.0],[112,-36,76,1.0],[112,-36,77,1.0],[112,-36,78,1.0],[112,-36,79,1.0],[112,-35,64,1.0],[112,-35,65,1.0],[112,-35,66,1.0],[112,-35,67,1.0],[112,-35,68,1.0],[112,-35,69,1.0],[112,-35,70,1.0],[112,-35,71,1.0],[112,-35,72,1.0],[112,-35,73,1.0],[112,-35,74,1.0],[112,-35,75,1.0],[112,-35,76,1.0],[112,-35,77,1.0],[112,-35,78,1.0],[112,-35,79,1.0],[112,-34,64,1.0],[112,-34,65,1.0],[112,-34,66,1.0],[112,-34,67,1.0],[112,-34,68,1.0],[112,-34,69,1.0],[112,-34,70,1.0],[112,-34,71,1.0],[112,-34,72,1.0],[112,-34,73,1.0],[112,-34,74,1.0],[112,-34,75,1.0],[112,-34,76,1.0],[112,-34,77,1.0],[112,-34,78,1.0],[112,-34,79,1.0],[112,-33,64,1.0],[112,-33,65,1.0],[112,-33,66,1.0],[112,-33,67,1.0],[112,-33,68,1.0],[112,-33,69,1.0],[112,-33,70,1.0],[112,-33,71,1.0],[112,-33,72,1.0],[112,-33,73,1.0],[112,-33,74,1.0],[112,-33,75,1.0],[112,-33,76,1.0],[112,-33,77,1.0],[112,-33,78,1.0],[112,-33,79,1.0],[112,-32,64,1.0],[112,-32,65,1.0],[112,-32,66,1.0],[112,-32,67,1.0],[112,-32,68,1.0],[112,-32,69,1.0],[112,-32,70,1.0],[112,-32,71,1.0],[112,-32,72,1.0],[112,-32,73,1.0],[112,-32,74,1.0],[112,-32,75,1.0],[112,-32,76,1.0],[112,-32,77,1.0],[112,-32,78,1.0],[112,-32,79,1.0],[112,-31,64,1.0],[112,-31,65,1.0],[112,-31,66,1.0],[112,-31,67,1.0],[112,-31,68,1.0],[112,-31,69,1.0],[112,-31,70,1.0],[112,-31,71,1.0],[112,-31,72,1.0],[112,-31,73,1.0],[112,-31,74,1.0],[112,-31,75,1.0],[112,-31,76,1.0],[112,-31,77,1.0],[112,-31,78,1.0],[112,-31,79,1.0],[112,-30,64,1.0],[112,-30,65,1.0],[112,-30,66,1.0],[112,-30,67,1.0],[112,-30,68,1.0],[112,-30,69,1.0],[112,-30,70,1.0],[112,-30,71,1.0],[112,-30,72,1.0],[112,-30,73,1.0],[112,-30,74,1.0],[112,-30,75,1.0],[112,-30,76,1.0],[112,-30,77,1.0],[112,-30,78,1.0],[112,-30,79,1.0],[112,-29,64,1.0],[112,-29,65,1.0],[112,-29,66,1.0],[112,-29,67,1.0],[112,-29,68,1.0],[112,-29,69,1.0],[112,-29,70,1.0],[112,-29,71,1.0],[112,-29,72,1.0],[112,-29,73,1.0],[112,-29,74,1.0],[112,-29,75,1.0],[112,-29,76,1.0],[112,-29,77,1.0],[112,-29,78,1.0],[112,-29,79,1.0],[112,-28,64,1.0],[112,-28,65,1.0],[112,-28,66,1.0],[112,-28,67,1.0],[112,-28,68,1.0],[112,-28,69,1.0],[112,-28,70,1.0],[112,-28,71,1.0],[112,-28,72,1.0],[112,-28,73,1.0],[112,-28,74,1.0],[112,-28,75,1.0],[112,-28,76,1.0],[112,-28,77,1.0],[112,-28,78,1.0],[112,-28,79,1.0],[112,-27,64,1.0],[112,-27,65,1.0],[112,-27,66,1.0],[112,-27,67,1.0],[112,-27,68,1.0],[112,-27,69,1.0],[112,-27,70,1.0],[112,-27,71,1.0],[112,-27,72,1.0],[112,-27,73,1.0],[112,-27,74,1.0],[112,-27,75,1.0],[112,-27,76,1.0],[112,-27,77,1.0],[112,-27,78,1.0],[112,-27,79,1.0],[112,-26,64,1.0],[112,-26,65,1.0],[112,-26,66,1.0],[112,-26,67,1.0],[112,-26,68,1.0],[112,-26,69,1.0],[112,-26,70,1.0],[112,-26,71,1.0],[112,-26,72,1.0],[112,-26,73,1.0],[112,-26,74,1.0],[112,-26,75,1.0],[112,-26,76,1.0],[112,-26,77,1.0],[112,-26,78,1.0],[112,-26,79,1.0],[112,-25,64,1.0],[112,-25,65,1.0],[112,-25,66,1.0],[112,-25,67,1.0],[112,-25,68,1.0],[112,-25,69,1.0],[112,-25,70,1.0],[112,-25,71,1.0],[112,-25,72,1.0],[112,-25,73,1.0],[112,-25,74,1.0],[112,-25,75,1.0],[112,-25,76,1.0],[112,-25,77,1.0],[112,-25,78,1.0],[112,-25,79,1.0],[112,-24,64,1.0],[112,-24,65,1.0],[112,-24,66,1.0],[112,-24,67,1.0],[112,-24,68,1.0],[112,-24,69,1.0],[112,-24,70,1.0],[112,-24,71,1.0],[112,-24,72,1.0],[112,-24,73,1.0],[112,-24,74,1.0],[112,-24,75,1.0],[112,-24,76,1.0],[112,-24,77,1.0],[112,-24,78,1.0],[112,-24,79,1.0],[112,-23,64,1.0],[112,-23,65,1.0],[112,-23,66,1.0],[112,-23,67,1.0],[112,-23,68,1.0],[112,-23,69,1.0],[112,-23,70,1.0],[112,-23,71,1.0],[112,-23,72,1.0],[112,-23,73,1.0],[112,-23,74,1.0],[112,-23,75,1.0],[112,-23,76,1.0],[112,-23,77,1.0],[112,-23,78,1.0],[112,-23,79,1.0],[112,-22,64,1.0],[112,-22,65,1.0],[112,-22,66,1.0],[112,-22,67,1.0],[112,-22,68,1.0],[112,-22,69,1.0],[112,-22,70,1.0],[112,-22,71,1.0],[112,-22,72,1.0],[112,-22,73,1.0],[112,-22,74,1.0],[112,-22,75,1.0],[112,-22,76,1.0],[112,-22,77,1.0],[112,-22,78,1.0],[112,-22,79,1.0],[112,-21,64,1.0],[112,-21,65,1.0],[112,-21,66,1.0],[112,-21,67,1.0],[112,-21,68,1.0],[112,-21,69,1.0],[112,-21,70,1.0],[112,-21,71,1.0],[112,-21,72,1.0],[112,-21,73,1.0],[112,-21,74,1.0],[112,-21,75,1.0],[112,-21,76,1.0],[112,-21,77,1.0],[112,-21,78,1.0],[112,-21,79,1.0],[112,-20,64,1.0],[112,-20,65,1.0],[112,-20,66,1.0],[112,-20,67,1.0],[112,-20,68,1.0],[112,-20,69,1.0],[112,-20,70,1.0],[112,-20,71,1.0],[112,-20,72,1.0],[112,-20,73,1.0],[112,-20,74,1.0],[112,-20,75,1.0],[112,-20,76,1.0],[112,-20,77,1.0],[112,-20,78,1.0],[112,-20,79,1.0],[112,-19,64,1.0],[112,-19,65,1.0],[112,-19,66,1.0],[112,-19,67,1.0],[112,-19,68,1.0],[112,-19,69,1.0],[112,-19,70,1.0],[112,-19,71,1.0],[112,-19,72,1.0],[112,-19,73,1.0],[112,-19,74,1.0],[112,-19,75,1.0],[112,-19,76,1.0],[112,-19,77,1.0],[112,-19,78,1.0],[112,-19,79,1.0],[112,-18,64,1.0],[112,-18,65,1.0],[112,-18,66,1.0],[112,-18,67,1.0],[112,-18,68,1.0],[112,-18,69,1.0],[112,-18,70,1.0],[112,-18,71,1.0],[112,-18,72,1.0],[112,-18,73,1.0],[112,-18,74,1.0],[112,-18,75,1.0],[112,-18,76,1.0],[112,-18,77,1.0],[112,-18,78,1.0],[112,-18,79,1.0],[112,-17,64,1.0],[112,-17,65,1.0],[112,-17,66,1.0],[112,-17,67,1.0],[112,-17,68,1.0],[112,-17,69,1.0],[112,-17,70,1.0],[112,-17,71,1.0],[112,-17,72,1.0],[112,-17,73,1.0],[112,-17,74,1.0],[112,-17,75,1.0],[112,-17,76,1.0],[112,-17,77,1.0],[112,-17,78,1.0],[112,-17,79,1.0],[112,-16,64,1.0],[112,-16,65,1.0],[112,-16,66,1.0],[112,-16,67,1.0],[112,-16,68,1.0],[112,-16,69,1.0],[112,-16,70,1.0],[112,-16,71,1.0],[112,-16,72,1.0],[112,-16,73,1.0],[112,-16,74,1.0],[112,-16,75,1.0],[112,-16,76,1.0],[112,-16,77,1.0],[112,-16,78,1.0],[112,-16,79,1.0],[112,-15,64,0.9998008535061252],[112,-15,65,1.0],[112,-15,66,1.0],[112,-15,67,1.0],[112,-15,68,1.0],[112,-15,69,1.0],[112,-15,70,1.0],[112,-15,71,1.0],[112,-15,72,1.0],[112,-15,73,1.0],[112,-15,74,1.0],[112,-15,75,1.0],[112,-15,76,1.0],[112,-15,77,1.0],[112,-15,78,1.0],[112,-15,79,1.0],[112,-14,64,0.6694885270511715],[112,-14,65,0.7555686878302067],[112,-14,66,0.8463398848998039],[112,-14,67,0.9415420674506546],[112,-14,68,1.0],[112,-14,69,1.0],[112,-14,70,1.0],[112,-14,71,1.0],[112,-14,72,1.0],[112,-14,73,1.0],[112,-14,74,1.0],[112,-14,75,1.0],[112,-14,76,1.0],[112,-14,77,1.0],[112,-14,78,1.0],[112,-14,79,1.0],[112,-13,64,0.4213500637832811],[112,-13,65,0.4849972810798111],[112,-13,66,0.5529529318928991],[112,-13,67,0.6250268654717634],[112,-13,68,0.7010050753975262],[112,-13,69,0.7806531546628448],[112,-13,70,0.8637197315733558],[112,-13,71,0.9499398692695504],[112,-13,72,1.0],[112,-13,73,1.0],[112,-13,74,1.0],[112,-13,75,1.0],[112,-13,76,1.0],[112,-13,77,1.0],[112,-13,78,1.0],[112,-13,79,1.0],[112,-12,64,0.24363254067123885],[112,-12,65,0.288227222496531],[112,-12,66,0.3366641919911644],[112,-12,67,0.38882325205644314],[112,-12,68,0.44455784979405427],[112,-12,69,0.5036983873878551],[112,-12,70,0.5660555204663168],[112,-12,71,0.6314234270054692],[112,-12,72,0.6995830305785384],[112,-12,73,0.7703051626155588],[112,-12,74,0.8433536492877605],[112,-12,75,0.9184883097258385],[112,-12,76,0.9954678534690318],[112,-12,77,1.0],[112,-12,78,1.0],[112,-12,79,1.0],[112,-11,64,0.12458293874974155],[112,-11,65,0.1535056235068689],[112,-11,66,0.18572090681519837],[112,-11,67,0.22117859881558533],[112,-11,68,0.2597997543814167],[112,-11,69,0.30147984233775904],[112,-11,70,0.3460919088425235],[112,-11,71,0.39348971825028806],[112,-11,72,0.44351085548972796],[112,-11,73,0.4959797748063615],[112,-11,74,0.5507107806394961],[112,-11,75,0.6075109274501755],[112,-11,76,0.6661828264591139],[112,-11,77,0.7265273484789605],[112,-11,78,0.7883462133688048],[112,-11,79,0.8514444580612949],[112,-10,64,0.05244814299012914],[112,-10,65,0.06907949910016652],[112,-10,66,0.08837022117634326],[112,-10,67,0.11034018018041278],[112,-10,68,0.1349781930029288],[112,-10,69,0.16224505255498028],[112,-10,70,0.19207655872581755],[112,-10,71,0.22438653378737877],[112,-10,72,0.25906980650163935],[112,-10,73,0.2960051499711557],[112,-10,74,0.33505815915530257],[112,-10,75,0.37608405497694364],[112,-10,76,0.41893040304077966],[112,-10,77,0.4634397361647629],[112,-10,78,0.5094520712134286],[112,-10,79,0.5568073120875133],[112,-9,64,0.030564264633728917],[112,-9,65,0.03395596491672468],[112,-9,66,0.03724882319830218],[112,-9,67,0.04455517326650926],[112,-9,68,0.058340471813972165],[112,-9,69,0.07424145302336646],[112,-9,70,0.09225703371244863],[112,-9,71,0.11236156560510707],[112,-9,72,0.13450770377077628],[112,-9,73,0.15862923620746078],[112,-9,74,0.18464386064401747],[112,-9,75,0.21245589559461497],[112,-9,76,0.24195891374907846],[112,-9,77,0.27303828691712545],[112,-9,78,0.30557363297650025],[112,-9,79,0.3394411565835785],[112,-8,64,0.026175851035882457],[112,-8,65,0.029544366588168544],[112,-8,66,0.032818087139236674],[112,-8,67,0.03599431707252985],[112,-8,68,0.03907030205998395],[112,-8,69,0.042043248118186057],[112,-8,70,0.04491034006899995],[112,-8,71,0.04766875940447156],[112,-8,72,0.05807226814325739],[112,-8,73,0.07209988193471366],[112,-8,74,0.0877158608702577],[112,-8,75,0.10487455218284399],[112,-8,76,0.1235165883471624],[112,-8,77,0.14357135715039857],[112,-8,78,0.16495938149115613],[112,-8,79,0.18759460056956545],[112,-7,64,0.0217612942195411],[112,-7,65,0.025104632561667076],[112,-7,66,0.028357195109106476],[112,-7,67,0.03151635634276216],[112,-7,68,0.034579419974615444],[112,-7,69,0.03754363832137916],[112,-7,70,0.0404062310814938],[112,-7,71,0.04316440351527437],[112,-7,72,0.04581536402846933],[112,-7,73,0.04835634115892002],[112,-7,74,0.05078459996646811],[112,-7,75,0.05309745782626099],[112,-7,76,0.05529229962513803],[112,-7,77,0.06328720198309976],[112,-7,78,0.0758576979313176],[112,-7,79,0.08951615104444774],[112,-6,64,0.01732801420403702],[112,-6,65,0.020644187030238216],[112,-6,66,0.02387357064864165],[112,-6,67,0.027013611108708695],[112,-6,68,0.030061671905422152],[112,-6,69,0.03301505365073861],[112,-6,70,0.03587101314769497],[112,-6,71,0.03862678186697659],[112,-6,72,0.041279583826208346],[112,-6,73,0.04382665287165862],[112,-6,74,0.046265249362500406],[112,-6,75,0.04859267625778352],[112,-6,76,0.050806294605796866],[112,-6,77,0.05290353843609316],[112,-6,78,0.05488192905396938],[112,-6,79,0.05673908873767772],[112,-5,64,0.012883450805469682],[112,-5,65,0.01617047738471239],[112,-5,66,0.01937466396222367],[112,-5,67,0.022493529537585544],[112,-5,68,0.025524499056214026],[112,-5,69,0.028464923358572668],[112,-5,70,0.03131209853178942],[112,-5,71,0.03406328466348581],[112,-5,72,0.03671572399807638],[112,-5,73,0.039266658495230915],[112,-5,74,0.04171334679064208],[112,-5,75,0.04405308055925385],[112,-5,76,0.046283200280629],[112,-5,77,0.048401110406727545],[112,-5,78,0.05040429393188976],[112,-5,79,0.052290326365299955],[112,-4,64,0.008435051264287528],[112,-4,65,0.01169096182790677],[112,-4,66,0.014867939529145321],[112,-4,67,0.01796357760758669],[112,-4,68,0.020975364048321572],[112,-4,69,0.02390070178858074],[112,-4,70,0.02673692832695696],[112,-4,71,0.02948133473502542],[112,-4,72,0.032131184071622396],[112,-4,73,0.03468372919947189],[112,-4,74,0.03713623000430482],[112,-4,75,0.03948597001662639],[112,-4,76,0.04173027243580757],[112,-4,77,0.043866515556775246],[112,-4,78,0.045892147599093595],[112,-4,79,0.0478047009387116],[112,-3,64,0.003990258894951311],[112,-3,65,0.007213098014245196],[112,-3,66,0.010360864743923948],[112,-3,67,0.013431227759815569],[112,-3,68,0.016421739595233055],[112,-3,69,0.01932985708441194],[112,-3,70,0.022152961209160167],[112,-3,71,0.024888376348529667],[112,-3,72,0.02753338893176925],[112,-3,73,0.03008526549424921],[112,-3,74,0.03254127013650017],[112,-3,75,0.034898681386524744],[112,-3,76,0.03715480846505616],[112,-3,77,0.039307006954037375],[112,-3,78,0.04135269386811622],[112,-3,79,0.043289362129429375],[112,-2,64,-4.4349724229648946E-4],[112,-2,65,0.0027443327148492236],[112,-2,66,0.005860899585690402],[112,-2,67,0.008903948583146117],[112,-2,68,0.011871098214259732],[112,-2,69,0.014759860939593701],[112,-2,70,0.01756766323689525],[112,-2,71,0.02029186506884014],[112,-2,72,0.02292977875511739],[112,-2,73,0.0254786872485415],[112,-2,74,0.027935861815339233],[112,-2,75,0.030298579119764288],[112,-2,76,0.03256413771271947],[112,-2,77,0.034729873924655506],[112,-2,78,0.03679317716254383],[112,-2,79,0.038751504611197155],[112,-1,64,-0.004858811647584053],[112,-1,65,-0.0017079074919283538],[112,-1,66,0.001375487316629509],[112,-1,67,0.004389195531984386],[112,-1,68,0.007330902975196854],[112,-1,69,0.010198179388801479],[112,-1,70,0.012988498696875378],[112,-1,71,0.015699258670675065],[112,-1,72,0.018327800000105934],[112,-1,73,0.02087142477070661],[112,-1,74,0.02332741434629928],[112,-1,75,0.025693046657458522],[112,-1,76,0.027965612895476416],[112,-1,77,0.030142433612094816],[112,-1,78,0.032220874224801396],[112,-1,79,0.03419835992796445],[112,0,64,-0.009248310665463187],[112,0,65,-0.006136224504505246],[112,0,66,-0.0030879537905102034],[112,0,67,-1.0559732304855213E-4],[112,0,68,0.002808599286005263],[112,0,69,0.005652264640492295],[112,0,70,0.008422921995669103],[112,0,71,0.011118009101391789],[112,0,72,0.013734897453054673],[112,0,73,0.016270910949961095],[112,0,74,0.01872334396127897],[112,0,75,0.021089478799734343],[112,0,76,0.023366602602719798],[112,0,77,0.02555202362108861],[112,0,78,0.027643086915431735],[112,0,79,0.02963718946011238],[112,1,64,-0.013604659746878127],[112,1,65,-0.010533255956624223],[112,1,66,-0.007522037695850803],[112,1,67,-0.0045730245115273155],[112,1,68,-0.0016883922845063529],[112,1,69,0.0011295479508846157],[112,1,70,0.00387837059727799],[112,1,71,0.006555555494527757],[112,1,72,0.009158507330070079],[112,1,73,0.011684574459058225],[112,1,74,0.014131067134427015],[112,1,75,0.016495275147038538],[112,1,76,0.018774484875586084],[112,1,77,0.02096599574652786],[112,1,78,0.02306713610384624],[112,1,79,0.025075278488910085],[112,2,64,-0.017920569689037325],[112,2,65,-0.014891681450444408],[112,2,66,-0.01191941680675164],[112,2,67,-0.009005715346713072],[112,2,68,-0.006152682146979671],[112,2,69,-0.003362566460700822],[112,2,70,-6.377409933341696E-4],[112,2,71,0.0020193182341336213],[112,2,72,0.004606051434829728],[112,2,73,0.007119834018175196],[112,2,74,0.009557994964757573],[112,2,75,0.011917834614049869],[112,2,76,0.01419664186464887],[112,2,77,0.01639171078730948],[112,2,78,0.01850035665056466],[112,2,79,0.020519931359215655],[112,3,64,-0.011193475911430223],[112,3,65,-0.017389714280010446],[112,3,66,-0.016272787163113762],[112,3,67,-0.013396339076133176],[112,3,68,-0.010576916794798573],[112,3,69,-0.007816706455146406],[112,3,70,-0.005118026200765971],[112,3,71,-0.0024833059301097513],[112,3,72,8.493237223715366E-5],[112,3,73,0.002584093720002907],[112,3,74,0.005011528625544638],[112,3,75,0.007364551016189047],[112,3,76,0.009640455566269107],[112,3,77,0.01183653444513566],[112,3,78,0.013950093480931444],[112,3,79,0.015978467740413976],[112,4,64,-9.650087139586081E-4],[112,4,65,-0.0024170655349327586],[112,4,66,-0.004801356623680413],[112,4,67,-0.008281401321924129],[112,4,68,-0.012986436751497533],[112,4,69,-0.012225535975492557],[112,4,70,-0.009555130303761171],[112,4,71,-0.006944947716992229],[112,4,72,-0.0043974701820552325],[112,4,73,-0.001915260583963109],[112,4,74,4.990558804932876E-4],[112,4,75,0.002842809728723951],[112,4,76,0.00511330463759764],[112,4,77,0.007307834308262276],[112,4,78,0.009423698750311599],[112,4,79,0.011458219985588332],[112,5,64,1.768709804674187E-5],[112,5,65,-8.117400219524743E-7],[112,5,66,-8.418438976706555E-5],[112,5,67,-4.644478546708518E-4],[112,5,68,-0.0013373866795380787],[112,5,69,-0.0028650808103325327],[112,5,70,-0.00517845345006733],[112,5,71,-0.008379823664290834],[112,5,72,-0.008833802156245366],[112,5,73,-0.006370863835923078],[112,5,74,-0.003972051333303077],[112,5,75,-0.0016400145815201606],[112,5,76,6.225622902428576E-4],[112,5,77,0.0028129779202051564],[112,5,78,0.004928530100771322],[112,5,79,0.00696653158893689],[112,6,64,0.003438090527441147],[112,6,65,0.0015426514532862175],[112,6,66,5.323828564261175E-4],[112,6,67,1.067190102247905E-4],[112,6,68,3.1766326306840073E-6],[112,6,69,-5.047204829787306E-6],[112,6,70,-1.1150395716396394E-4],[112,6,71,-4.789342854586065E-4],[112,6,72,-0.0012417060808422914],[112,6,73,-0.0025082360096799327],[112,6,74,-0.004363381481689256],[112,6,75,-0.006076559151862018],[112,6,76,-0.003824404737416784],[112,6,77,-0.0016406680666119847],[112,6,78,4.7195000922861663E-4],[112,6,79,0.0025107567414147866],[112,7,64,0.02097958364483266],[112,7,65,0.013896831043097043],[112,7,66,0.008731976868193898],[112,7,67,0.005115855602476462],[112,7,68,0.0027191339063672385],[112,7,69,0.001250031763814678],[112,7,70,4.5201002297865455E-4],[112,7,71,1.0143906544831885E-4],[112,7,72,5.262834687480738E-6],[112,7,73,-1.3281413274599534E-6],[112,7,74,-5.7201784540188426E-5],[112,7,75,-2.775553812572777E-4],[112,7,76,-7.561410512924281E-4],[112,7,77,-0.0015674353728169295],[112,7,78,-0.0027687437583872342],[112,7,79,-0.0019017390153625302],[112,8,64,0.06432545151436708],[112,8,65,0.048745136599354595],[112,8,66,0.036198131550961674],[112,8,67,0.02624661998618585],[112,8,68,0.018494267181616172],[112,8,69,0.012584061923006061],[112,8,70,0.008196117911794547],[112,8,71,0.005045449205931123],[112,8,72,0.002879733701167911],[112,8,73,0.0014770780993266597],[112,8,74,6.437971631726778E-4],[112,8,75,2.122193270707145E-4],[112,8,76,3.8529926713215114E-5],[112,8,77,6.624338584840898E-7],[112,8,78,-3.7528602122392527E-6],[112,8,79,-5.937426853569879E-5],[112,9,64,0.14515888212321273],[112,9,65,0.11777088018984683],[112,9,66,0.09461428288483208],[112,9,67,0.07518257187895185],[112,9,68,0.059012259732601095],[112,9,69,0.045680849917148145],[112,9,70,0.03480474953235009],[112,9,71,0.02603714894164825],[112,9,72,0.01906588210676705],[112,9,73,0.01361128087942719],[112,9,74,0.00942403590117006],[112,9,75,0.006283076072331701],[112,9,76,0.003993477791247279],[112,9,77,0.0023844143369738265],[112,9,78,0.001307154878227039],[112,9,79,6.331216481015938E-4],[112,10,64,0.27516296631476356],[112,10,65,0.23265727630993352],[112,10,66,0.19566376885085815],[112,10,67,0.1636071725747104],[112,10,68,0.13595669598725255],[112,10,69,0.11222410312368061],[112,10,70,0.09196173502201195],[112,10,71,0.07476049097573559],[112,10,72,0.06024778312219799],[112,10,73,0.04808547743560053],[112,10,74,0.03796783362743952],[112,10,75,0.029619455807038758],[112,10,76,0.022793265040855656],[112,10,77,0.017268504171606407],[112,10,78,0.012848784418699606],[112,10,79,0.0093601823949062],[112,11,64,0.4660206977254686],[112,11,65,0.4050874418159146],[112,11,66,0.3510298293609723],[112,11,67,0.30320378487024374],[112,11,68,0.2610110614503181],[112,11,69,0.2238974295728103],[112,11,70,0.1913508047488206],[112,11,71,0.16289932782184277],[112,11,72,0.13810941121043885],[112,11,73,0.11658376398037987],[112,11,74,0.09795940810138677],[112,11,75,0.08190569763248451],[112,11,76,0.06812235191205666],[112,11,77,0.05633751310181268],[112,11,78,0.04630583764475794],[112,11,79,0.03780663036722391],[112,12,64,0.7294149727253662],[112,12,65,0.6467443958621061],[112,12,66,0.5723956061916227],[112,12,67,0.505655672995399],[112,12,68,0.44585874263018405],[112,12,69,0.39238433787095783],[112,12,70,0.34465558923158235],[112,12,71,0.3021374117208924],[112,12,72,0.26433464014018104],[112,12,73,0.23079013561236247],[112,12,74,0.20108287555072374],[112,12,75,0.1748260387023813],[112,12,76,0.1516650962797548],[112,12,77,0.13127591951783715],[112,12,78,0.11336291325576307],[112,12,79,0.09765718436763314],[112,13,64,1.0],[112,13,65,0.9693110598415274],[112,13,66,0.8714441429210352],[112,13,67,0.7826460025469447],[112,13,68,0.7021830269693466],[112,13,69,0.6293682371278638],[112,13,70,0.5635596190636321],[112,13,71,0.5041583945615196],[112,13,72,0.4506072429029649],[112,13,73,0.40238848623006496],[112,13,74,0.35902225058206333],[112,13,75,0.32006461413021653],[112,13,76,0.28510575356137724],[112,13,77,0.25376809893705116],[112,13,78,0.22570450666464695],[112,13,79,0.20059645950055138],[112,14,64,1.0],[112,14,65,1.0],[112,14,66,1.0],[112,14,67,1.0],[112,14,68,1.0],[112,14,69,0.9465324368874434],[112,14,70,0.8597463248403441],[112,14,71,0.7806458278042605],[112,14,72,0.7086108916340698],[112,14,73,0.6430626084495327],[112,14,74,0.5834614460952702],[112,14,75,0.5293054569003672],[112,14,76,0.48012847662477337],[112,14,77,0.4354983239086574],[112,14,78,0.39501500989944344],[112,14,79,0.35830896707061427],[112,15,64,1.0],[112,15,65,1.0],[112,15,66,1.0],[112,15,67,1.0],[112,15,68,1.0],[112,15,69,1.0],[112,15,70,1.0],[112,15,71,1.0],[112,15,72,1.0],[112,15,73,0.9644961935255272],[112,15,74,0.8860842732014074],[112,15,75,0.8142324977828216],[112,15,76,0.7484173156997342],[112,15,77,0.6881507639220292],[112,15,78,0.632978711508466],[112,15,79,0.5824791144847128],[112,16,64,1.0],[112,16,65,1.0],[112,16,66,1.0],[112,16,67,1.0],[112,16,68,1.0],[112,16,69,1.0],[112,16,70,1.0],[112,16,71,1.0],[112,16,72,1.0],[112,16,73,1.0],[112,16,74,1.0],[112,16,75,1.0],[112,16,76,1.0],[112,16,77,1.0],[112,16,78,0.95127979646923],[112,16,79,0.8847912051577773],[112,17,64,1.0],[112,17,65,1.0],[112,17,66,1.0],[112,17,67,1.0],[112,17,68,1.0],[112,17,69,1.0],[112,17,70,1.0],[112,17,71,1.0],[112,17,72,1.0],[112,17,73,1.0],[112,17,74,1.0],[112,17,75,1.0],[112,17,76,1.0],[112,17,77,1.0],[112,17,78,1.0],[112,17,79,1.0],[112,18,64,1.0],[112,18,65,1.0],[112,18,66,1.0],[112,18,67,1.0],[112,18,68,1.0],[112,18,69,1.0],[112,18,70,1.0],[112,18,71,1.0],[112,18,72,1.0],[112,18,73,1.0],[112,18,74,1.0],[112,18,75,1.0],[112,18,76,1.0],[112,18,77,1.0],[112,18,78,1.0],[112,18,79,1.0],[112,19,64,1.0],[112,19,65,1.0],[112,19,66,1.0],[112,19,67,1.0],[112,19,68,1.0],[112,19,69,1.0],[112,19,70,1.0],[112,19,71,1.0],[112,19,72,1.0],[112,19,73,1.0],[112,19,74,1.0],[112,19,75,1.0],[112,19,76,1.0],[112,19,77,1.0],[112,19,78,1.0],[112,19,79,1.0],[112,20,64,1.0],[112,20,65,1.0],[112,20,66,1.0],[112,20,67,1.0],[112,20,68,1.0],[112,20,69,1.0],[112,20,70,1.0],[112,20,71,1.0],[112,20,72,1.0],[112,20,73,1.0],[112,20,74,1.0],[112,20,75,1.0],[112,20,76,1.0],[112,20,77,1.0],[112,20,78,1.0],[112,20,79,1.0],[112,21,64,1.0],[112,21,65,1.0],[112,21,66,1.0],[112,21,67,1.0],[112,21,68,1.0],[112,21,69,1.0],[112,21,70,1.0],[112,21,71,1.0],[112,21,72,1.0],[112,21,73,1.0],[112,21,74,1.0],[112,21,75,1.0],[112,21,76,1.0],[112,21,77,1.0],[112,21,78,1.0],[112,21,79,1.0],[112,22,64,1.0],[112,22,65,1.0],[112,22,66,1.0],[112,22,67,1.0],[112,22,68,1.0],[112,22,69,1.0],[112,22,70,1.0],[112,22,71,1.0],[112,22,72,1.0],[112,22,73,1.0],[112,22,74,1.0],[112,22,75,1.0],[112,22,76,1.0],[112,22,77,1.0],[112,22,78,1.0],[112,22,79,1.0],[112,23,64,1.0],[112,23,65,1.0],[112,23,66,1.0],[112,23,67,1.0],[112,23,68,1.0],[112,23,69,1.0],[112,23,70,1.0],[112,23,71,1.0],[112,23,72,1.0],[112,23,73,1.0],[112,23,74,1.0],[112,23,75,1.0],[112,23,76,1.0],[112,23,77,1.0],[112,23,78,1.0],[112,23,79,1.0],[112,24,64,1.0],[112,24,65,1.0],[112,24,66,1.0],[112,24,67,1.0],[112,24,68,1.0],[112,24,69,1.0],[112,24,70,1.0],[112,24,71,1.0],[112,24,72,1.0],[112,24,73,1.0],[112,24,74,1.0],[112,24,75,1.0],[112,24,76,1.0],[112,24,77,1.0],[112,24,78,1.0],[112,24,79,1.0],[112,25,64,1.0],[112,25,65,1.0],[112,25,66,1.0],[112,25,67,1.0],[112,25,68,1.0],[112,25,69,1.0],[112,25,70,1.0],[112,25,71,1.0],[112,25,72,1.0],[112,25,73,1.0],[112,25,74,1.0],[112,25,75,1.0],[112,25,76,1.0],[112,25,77,1.0],[112,25,78,1.0],[112,25,79,1.0],[112,26,64,1.0],[112,26,65,1.0],[112,26,66,1.0],[112,26,67,1.0],[112,26,68,1.0],[112,26,69,1.0],[112,26,70,1.0],[112,26,71,1.0],[112,26,72,1.0],[112,26,73,1.0],[112,26,74,1.0],[112,26,75,1.0],[112,26,76,1.0],[112,26,77,1.0],[112,26,78,1.0],[112,26,79,1.0],[112,27,64,1.0],[112,27,65,1.0],[112,27,66,1.0],[112,27,67,1.0],[112,27,68,1.0],[112,27,69,1.0],[112,27,70,1.0],[112,27,71,1.0],[112,27,72,1.0],[112,27,73,1.0],[112,27,74,1.0],[112,27,75,1.0],[112,27,76,1.0],[112,27,77,1.0],[112,27,78,1.0],[112,27,79,1.0],[112,28,64,1.0],[112,28,65,1.0],[112,28,66,1.0],[112,28,67,1.0],[112,28,68,1.0],[112,28,69,1.0],[112,28,70,1.0],[112,28,71,1.0],[112,28,72,1.0],[112,28,73,1.0],[112,28,74,1.0],[112,28,75,1.0],[112,28,76,1.0],[112,28,77,1.0],[112,28,78,1.0],[112,28,79,1.0],[112,29,64,1.0],[112,29,65,1.0],[112,29,66,1.0],[112,29,67,1.0],[112,29,68,1.0],[112,29,69,1.0],[112,29,70,1.0],[112,29,71,1.0],[112,29,72,1.0],[112,29,73,1.0],[112,29,74,1.0],[112,29,75,1.0],[112,29,76,1.0],[112,29,77,1.0],[112,29,78,1.0],[112,29,79,1.0],[112,30,64,1.0],[112,30,65,1.0],[112,30,66,1.0],[112,30,67,1.0],[112,30,68,1.0],[112,30,69,1.0],[112,30,70,1.0],[112,30,71,1.0],[112,30,72,1.0],[112,30,73,1.0],[112,30,74,1.0],[112,30,75,1.0],[112,30,76,1.0],[112,30,77,1.0],[112,30,78,1.0],[112,30,79,1.0],[112,31,64,1.0],[112,31,65,1.0],[112,31,66,1.0],[112,31,67,1.0],[112,31,68,1.0],[112,31,69,1.0],[112,31,70,1.0],[112,31,71,1.0],[112,31,72,1.0],[112,31,73,1.0],[112,31,74,1.0],[112,31,75,1.0],[112,31,76,1.0],[112,31,77,1.0],[112,31,78,1.0],[112,31,79,1.0],[112,32,64,1.0],[112,32,65,1.0],[112,32,66,1.0],[112,32,67,1.0],[112,32,68,1.0],[112,32,69,1.0],[112,32,70,1.0],[112,32,71,1.0],[112,32,72,1.0],[112,32,73,1.0],[112,32,74,1.0],[112,32,75,1.0],[112,32,76,1.0],[112,32,77,1.0],[112,32,78,1.0],[112,32,79,1.0],[112,33,64,1.0],[112,33,65,1.0],[112,33,66,1.0],[112,33,67,1.0],[112,33,68,1.0],[112,33,69,1.0],[112,33,70,1.0],[112,33,71,1.0],[112,33,72,1.0],[112,33,73,1.0],[112,33,74,1.0],[112,33,75,1.0],[112,33,76,1.0],[112,33,77,1.0],[112,33,78,1.0],[112,33,79,1.0],[112,34,64,1.0],[112,34,65,1.0],[112,34,66,1.0],[112,34,67,1.0],[112,34,68,1.0],[112,34,69,1.0],[112,34,70,1.0],[112,34,71,1.0],[112,34,72,1.0],[112,34,73,1.0],[112,34,74,1.0],[112,34,75,1.0],[112,34,76,1.0],[112,34,77,1.0],[112,34,78,1.0],[112,34,79,1.0],[112,35,64,1.0],[112,35,65,1.0],[112,35,66,1.0],[112,35,67,1.0],[112,35,68,1.0],[112,35,69,1.0],[112,35,70,1.0],[112,35,71,1.0],[112,35,72,1.0],[112,35,73,1.0],[112,35,74,1.0],[112,35,75,1.0],[112,35,76,1.0],[112,35,77,1.0],[112,35,78,1.0],[112,35,79,1.0],[112,36,64,1.0],[112,36,65,1.0],[112,36,66,1.0],[112,36,67,1.0],[112,36,68,1.0],[112,36,69,1.0],[112,36,70,1.0],[112,36,71,1.0],[112,36,72,1.0],[112,36,73,1.0],[112,36,74,1.0],[112,36,75,1.0],[112,36,76,1.0],[112,36,77,1.0],[112,36,78,1.0],[112,36,79,1.0],[112,37,64,1.0],[112,37,65,1.0],[112,37,66,1.0],[112,37,67,1.0],[112,37,68,1.0],[112,37,69,1.0],[112,37,70,1.0],[112,37,71,1.0],[112,37,72,1.0],[112,37,73,1.0],[112,37,74,1.0],[112,37,75,1.0],[112,37,76,1.0],[112,37,77,1.0],[112,37,78,1.0],[112,37,79,1.0],[112,38,64,1.0],[112,38,65,1.0],[112,38,66,1.0],[112,38,67,1.0],[112,38,68,1.0],[112,38,69,1.0],[112,38,70,1.0],[112,38,71,1.0],[112,38,72,1.0],[112,38,73,1.0],[112,38,74,1.0],[112,38,75,1.0],[112,38,76,1.0],[112,38,77,1.0],[112,38,78,1.0],[112,38,79,1.0],[112,39,64,1.0],[112,39,65,1.0],[112,39,66,1.0],[112,39,67,1.0],[112,39,68,1.0],[112,39,69,1.0],[112,39,70,1.0],[112,39,71,1.0],[112,39,72,1.0],[112,39,73,1.0],[112,39,74,1.0],[112,39,75,1.0],[112,39,76,1.0],[112,39,77,1.0],[112,39,78,1.0],[112,39,79,1.0],[112,40,64,1.0],[112,40,65,1.0],[112,40,66,1.0],[112,40,67,1.0],[112,40,68,1.0],[112,40,69,1.0],[112,40,70,1.0],[112,40,71,1.0],[112,40,72,1.0],[112,40,73,1.0],[112,40,74,1.0],[112,40,75,1.0],[112,40,76,1.0],[112,40,77,1.0],[112,40,78,1.0],[112,40,79,1.0],[112,41,64,1.0],[112,41,65,1.0],[112,41,66,1.0],[112,41,67,1.0],[112,41,68,1.0],[112,41,69,1.0],[112,41,70,1.0],[112,41,71,1.0],[112,41,72,1.0],[112,41,73,1.0],[112,41,74,1.0],[112,41,75,1.0],[112,41,76,1.0],[112,41,77,1.0],[112,41,78,1.0],[112,41,79,1.0],[112,42,64,1.0],[112,42,65,1.0],[112,42,66,1.0],[112,42,67,1.0],[112,42,68,1.0],[112,42,69,1.0],[112,42,70,1.0],[112,42,71,1.0],[112,42,72,1.0],[112,42,73,1.0],[112,42,74,1.0],[112,42,75,1.0],[112,42,76,1.0],[112,42,77,1.0],[112,42,78,1.0],[112,42,79,1.0],[112,43,64,1.0],[112,43,65,1.0],[112,43,66,1.0],[112,43,67,1.0],[112,43,68,1.0],[112,43,69,1.0],[112,43,70,1.0],[112,43,71,1.0],[112,43,72,1.0],[112,43,73,1.0],[112,43,74,1.0],[112,43,75,1.0],[112,43,76,1.0],[112,43,77,1.0],[112,43,78,1.0],[112,43,79,1.0],[112,44,64,1.0],[112,44,65,1.0],[112,44,66,1.0],[112,44,67,1.0],[112,44,68,1.0],[112,44,69,1.0],[112,44,70,1.0],[112,44,71,1.0],[112,44,72,1.0],[112,44,73,1.0],[112,44,74,1.0],[112,44,75,1.0],[112,44,76,1.0],[112,44,77,1.0],[112,44,78,1.0],[112,44,79,1.0],[112,45,64,1.0],[112,45,65,1.0],[112,45,66,1.0],[112,45,67,1.0],[112,45,68,1.0],[112,45,69,1.0],[112,45,70,1.0],[112,45,71,1.0],[112,45,72,1.0],[112,45,73,1.0],[112,45,74,1.0],[112,45,75,1.0],[112,45,76,1.0],[112,45,77,1.0],[112,45,78,1.0],[112,45,79,1.0],[112,46,64,1.0],[112,46,65,1.0],[112,46,66,1.0],[112,46,67,1.0],[112,46,68,1.0],[112,46,69,1.0],[112,46,70,1.0],[112,46,71,1.0],[112,46,72,1.0],[112,46,73,1.0],[112,46,74,1.0],[112,46,75,1.0],[112,46,76,1.0],[112,46,77,1.0],[112,46,78,1.0],[112,46,79,1.0],[112,47,64,1.0],[112,47,65,1.0],[112,47,66,1.0],[112,47,67,1.0],[112,47,68,1.0],[112,47,69,1.0],[112,47,70,1.0],[112,47,71,1.0],[112,47,72,1.0],[112,47,73,1.0],[112,47,74,1.0],[112,47,75,1.0],[112,47,76,1.0],[112,47,77,1.0],[112,47,78,1.0],[112,47,79,1.0],[112,48,64,1.0],[112,48,65,1.0],[112,48,66,1.0],[112,48,67,1.0],[112,48,68,1.0],[112,48,69,1.0],[112,48,70,1.0],[112,48,71,1.0],[112,48,72,1.0],[112,48,73,1.0],[112,48,74,1.0],[112,48,75,1.0],[112,48,76,1.0],[112,48,77,1.0],[112,48,78,1.0],[112,48,79,1.0],[112,49,64,1.0],[112,49,65,1.0],[112,49,66,1.0],[112,49,67,1.0],[112,49,68,1.0],[112,49,69,1.0],[112,49,70,1.0],[112,49,71,1.0],[112,49,72,1.0],[112,49,73,1.0],[112,49,74,1.0],[112,49,75,1.0],[112,49,76,1.0],[112,49,77,1.0],[112,49,78,1.0],[112,49,79,1.0],[112,50,64,1.0],[112,50,65,1.0],[112,50,66,1.0],[112,50,67,1.0],[112,50,68,1.0],[112,50,69,1.0],[112,50,70,1.0],[112,50,71,1.0],[112,50,72,1.0],[112,50,73,1.0],[112,50,74,1.0],[112,50,75,1.0],[112,50,76,1.0],[112,50,77,1.0],[112,50,78,1.0],[112,50,79,1.0],[112,51,64,1.0],[112,51,65,1.0],[112,51,66,1.0],[112,51,67,1.0],[112,51,68,1.0],[112,51,69,1.0],[112,51,70,1.0],[112,51,71,1.0],[112,51,72,1.0],[112,51,73,1.0],[112,51,74,1.0],[112,51,75,1.0],[112,51,76,1.0],[112,51,77,1.0],[112,51,78,1.0],[112,51,79,1.0],[112,52,64,1.0],[112,52,65,1.0],[112,52,66,1.0],[112,52,67,1.0],[112,52,68,1.0],[112,52,69,1.0],[112,52,70,1.0],[112,52,71,1.0],[112,52,72,1.0],[112,52,73,1.0],[112,52,74,1.0],[112,52,75,1.0],[112,52,76,1.0],[112,52,77,1.0],[112,52,78,1.0],[112,52,79,1.0],[112,53,64,1.0],[112,53,65,1.0],[112,53,66,1.0],[112,53,67,1.0],[112,53,68,1.0],[112,53,69,1.0],[112,53,70,1.0],[112,53,71,1.0],[112,53,72,1.0],[112,53,73,1.0],[112,53,74,1.0],[112,53,75,1.0],[112,53,76,1.0],[112,53,77,1.0],[112,53,78,1.0],[112,53,79,1.0],[112,54,64,1.0],[112,54,65,1.0],[112,54,66,1.0],[112,54,67,1.0],[112,54,68,1.0],[112,54,69,1.0],[112,54,70,1.0],[112,54,71,1.0],[112,54,72,1.0],[112,54,73,1.0],[112,54,74,1.0],[112,54,75,1.0],[112,54,76,1.0],[112,54,77,1.0],[112,54,78,1.0],[112,54,79,1.0],[112,55,64,1.0],[112,55,65,1.0],[112,55,66,1.0],[112,55,67,1.0],[112,55,68,1.0],[112,55,69,1.0],[112,55,70,1.0],[112,55,71,1.0],[112,55,72,1.0],[112,55,73,1.0],[112,55,74,1.0],[112,55,75,1.0],[112,55,76,1.0],[112,55,77,1.0],[112,55,78,1.0],[112,55,79,1.0],[112,56,64,1.0],[112,56,65,1.0],[112,56,66,1.0],[112,56,67,1.0],[112,56,68,1.0],[112,56,69,1.0],[112,56,70,1.0],[112,56,71,1.0],[112,56,72,1.0],[112,56,73,1.0],[112,56,74,1.0],[112,56,75,1.0],[112,56,76,1.0],[112,56,77,1.0],[112,56,78,1.0],[112,56,79,1.0],[112,57,64,1.0],[112,57,65,1.0],[112,57,66,1.0],[112,57,67,1.0],[112,57,68,1.0],[112,57,69,1.0],[112,57,70,1.0],[112,57,71,1.0],[112,57,72,1.0],[112,57,73,1.0],[112,57,74,1.0],[112,57,75,1.0],[112,57,76,1.0],[112,57,77,1.0],[112,57,78,1.0],[112,57,79,1.0],[112,58,64,1.0],[112,58,65,1.0],[112,58,66,1.0],[112,58,67,1.0],[112,58,68,1.0],[112,58,69,1.0],[112,58,70,1.0],[112,58,71,1.0],[112,58,72,1.0],[112,58,73,1.0],[112,58,74,1.0],[112,58,75,1.0],[112,58,76,1.0],[112,58,77,1.0],[112,58,78,1.0],[112,58,79,1.0],[112,59,64,1.0],[112,59,65,1.0],[112,59,66,1.0],[112,59,67,1.0],[112,59,68,1.0],[112,59,69,1.0],[112,59,70,1.0],[112,59,71,1.0],[112,59,72,1.0],[112,59,73,1.0],[112,59,74,1.0],[112,59,75,1.0],[112,59,76,1.0],[112,59,77,1.0],[112,59,78,1.0],[112,59,79,1.0],[112,60,64,1.0],[112,60,65,1.0],[112,60,66,1.0],[112,60,67,1.0],[112,60,68,1.0],[112,60,69,1.0],[112,60,70,1.0],[112,60,71,1.0],[112,60,72,1.0],[112,60,73,1.0],[112,60,74,1.0],[112,60,75,1.0],[112,60,76,1.0],[112,60,77,1.0],[112,60,78,1.0],[112,60,79,1.0],[112,61,64,1.0],[112,61,65,1.0],[112,61,66,1.0],[112,61,67,1.0],[112,61,68,1.0],[112,61,69,1.0],[112,61,70,1.0],[112,61,71,1.0],[112,61,72,1.0],[112,61,73,1.0],[112,61,74,1.0],[112,61,75,1.0],[112,61,76,1.0],[112,61,77,1.0],[112,61,78,1.0],[112,61,79,1.0],[112,62,64,1.0],[112,62,65,1.0],[112,62,66,1.0],[112,62,67,1.0],[112,62,68,1.0],[112,62,69,1.0],[112,62,70,1.0],[112,62,71,1.0],[112,62,72,1.0],[112,62,73,1.0],[112,62,74,1.0],[112,62,75,1.0],[112,62,76,1.0],[112,62,77,1.0],[112,62,78,1.0],[112,62,79,1.0],[112,63,64,1.0],[112,63,65,1.0],[112,63,66,1.0],[112,63,67,1.0],[112,63,68,1.0],[112,63,69,1.0],[112,63,70,1.0],[112,63,71,1.0],[112,63,72,1.0],[112,63,73,1.0],[112,63,74,1.0],[112,63,75,1.0],[112,63,76,1.0],[112,63,77,1.0],[112,63,78,1.0],[112,63,79,1.0],[112,64,64,1.0],[112,64,65,1.0],[112,64,66,1.0],[112,64,67,1.0],[112,64,68,1.0],[112,64,69,1.0],[112,64,70,1.0],[112,64,71,1.0],[112,64,72,1.0],[112,64,73,1.0],[112,64,74,1.0],[112,64,75,1.0],[112,64,76,1.0],[112,64,77,1.0],[112,64,78,1.0],[112,64,79,1.0],[112,65,64,1.0],[112,65,65,1.0],[112,65,66,1.0],[112,65,67,1.0],[112,65,68,1.0],[112,65,69,1.0],[112,65,70,1.0],[112,65,71,1.0],[112,65,72,1.0],[112,65,73,1.0],[112,65,74,1.0],[112,65,75,1.0],[112,65,76,1.0],[112,65,77,1.0],[112,65,78,1.0],[112,65,79,1.0],[112,66,64,1.0],[112,66,65,1.0],[112,66,66,1.0],[112,66,67,1.0],[112,66,68,1.0],[112,66,69,1.0],[112,66,70,1.0],[112,66,71,1.0],[112,66,72,1.0],[112,66,73,1.0],[112,66,74,1.0],[112,66,75,1.0],[112,66,76,1.0],[112,66,77,1.0],[112,66,78,1.0],[112,66,79,1.0],[112,67,64,1.0],[112,67,65,1.0],[112,67,66,1.0],[112,67,67,1.0],[112,67,68,1.0],[112,67,69,1.0],[112,67,70,1.0],[112,67,71,1.0],[112,67,72,1.0],[112,67,73,1.0],[112,67,74,1.0],[112,67,75,1.0],[112,67,76,1.0],[112,67,77,1.0],[112,67,78,1.0],[112,67,79,1.0],[112,68,64,1.0],[112,68,65,1.0],[112,68,66,1.0],[112,68,67,1.0],[112,68,68,1.0],[112,68,69,1.0],[112,68,70,1.0],[112,68,71,1.0],[112,68,72,1.0],[112,68,73,1.0],[112,68,74,1.0],[112,68,75,1.0],[112,68,76,1.0],[112,68,77,1.0],[112,68,78,1.0],[112,68,79,1.0],[112,69,64,1.0],[112,69,65,1.0],[112,69,66,1.0],[112,69,67,1.0],[112,69,68,1.0],[112,69,69,1.0],[112,69,70,1.0],[112,69,71,1.0],[112,69,72,1.0],[112,69,73,1.0],[112,69,74,1.0],[112,69,75,1.0],[112,69,76,1.0],[112,69,77,1.0],[112,69,78,1.0],[112,69,79,1.0],[112,70,64,1.0],[112,70,65,1.0],[112,70,66,1.0],[112,70,67,1.0],[112,70,68,1.0],[112,70,69,1.0],[112,70,70,1.0],[112,70,71,1.0],[112,70,72,1.0],[112,70,73,1.0],[112,70,74,1.0],[112,70,75,1.0],[112,70,76,1.0],[112,70,77,1.0],[112,70,78,1.0],[112,70,79,1.0],[112,71,64,1.0],[112,71,65,1.0],[112,71,66,1.0],[112,71,67,1.0],[112,71,68,1.0],[112,71,69,1.0],[112,71,70,1.0],[112,71,71,1.0],[112,71,72,1.0],[112,71,73,1.0],[112,71,74,1.0],[112,71,75,1.0],[112,71,76,1.0],[112,71,77,1.0],[112,71,78,1.0],[112,71,79,1.0],[112,72,64,1.0],[112,72,65,1.0],[112,72,66,1.0],[112,72,67,1.0],[112,72,68,1.0],[112,72,69,1.0],[112,72,70,1.0],[112,72,71,1.0],[112,72,72,1.0],[112,72,73,1.0],[112,72,74,1.0],[112,72,75,1.0],[112,72,76,1.0],[112,72,77,1.0],[112,72,78,1.0],[112,72,79,1.0],[112,73,64,1.0],[112,73,65,1.0],[112,73,66,1.0],[112,73,67,1.0],[112,73,68,1.0],[112,73,69,1.0],[112,73,70,1.0],[112,73,71,1.0],[112,73,72,1.0],[112,73,73,1.0],[112,73,74,1.0],[112,73,75,1.0],[112,73,76,1.0],[112,73,77,1.0],[112,73,78,1.0],[112,73,79,1.0],[112,74,64,1.0],[112,74,65,1.0],[112,74,66,1.0],[112,74,67,1.0],[112,74,68,1.0],[112,74,69,1.0],[112,74,70,1.0],[112,74,71,1.0],[112,74,72,1.0],[112,74,73,1.0],[112,74,74,1.0],[112,74,75,1.0],[112,74,76,1.0],[112,74,77,1.0],[112,74,78,1.0],[112,74,79,1.0],[112,75,64,1.0],[112,75,65,1.0],[112,75,66,1.0],[112,75,67,1.0],[112,75,68,1.0],[112,75,69,1.0],[112,75,70,1.0],[112,75,71,1.0],[112,75,72,1.0],[112,75,73,1.0],[112,75,74,1.0],[112,75,75,1.0],[112,75,76,1.0],[112,75,77,1.0],[112,75,78,1.0],[112,75,79,1.0],[112,76,64,1.0],[112,76,65,1.0],[112,76,66,1.0],[112,76,67,1.0],[112,76,68,1.0],[112,76,69,1.0],[112,76,70,1.0],[112,76,71,1.0],[112,76,72,1.0],[112,76,73,1.0],[112,76,74,1.0],[112,76,75,1.0],[112,76,76,1.0],[112,76,77,1.0],[112,76,78,1.0],[112,76,79,1.0],[112,77,64,1.0],[112,77,65,1.0],[112,77,66,1.0],[112,77,67,1.0],[112,77,68,1.0],[112,77,69,1.0],[112,77,70,1.0],[112,77,71,1.0],[112,77,72,1.0],[112,77,73,1.0],[112,77,74,1.0],[112,77,75,1.0],[112,77,76,1.0],[112,77,77,1.0],[112,77,78,1.0],[112,77,79,1.0],[112,78,64,1.0],[112,78,65,1.0],[112,78,66,1.0],[112,78,67,1.0],[112,78,68,1.0],[112,78,69,1.0],[112,78,70,1.0],[112,78,71,1.0],[112,78,72,1.0],[112,78,73,1.0],[112,78,74,1.0],[112,78,75,1.0],[112,78,76,1.0],[112,78,77,1.0],[112,78,78,1.0],[112,78,79,1.0],[112,79,64,1.0],[112,79,65,1.0],[112,79,66,1.0],[112,79,67,1.0],[112,79,68,1.0],[112,79,69,1.0],[112,79,70,1.0],[112,79,71,1.0],[112,79,72,1.0],[112,79,73,1.0],[112,79,74,1.0],[112,79,75,1.0],[112,79,76,1.0],[112,79,77,1.0],[112,79,78,1.0],[112,79,79,1.0],[112,80,64,1.0],[112,80,65,1.0],[112,80,66,1.0],[112,80,67,1.0],[112,80,68,1.0],[112,80,69,1.0],[112,80,70,1.0],[112,80,71,1.0],[112,80,72,1.0],[112,80,73,1.0],[112,80,74,1.0],[112,80,75,1.0],[112,80,76,1.0],[112,80,77,1.0],[112,80,78,1.0],[112,80,79,1.0],[112,81,64,1.0],[112,81,65,1.0],[112,81,66,1.0],[112,81,67,1.0],[112,81,68,1.0],[112,81,69,1.0],[112,81,70,1.0],[112,81,71,1.0],[112,81,72,1.0],[112,81,73,1.0],[112,81,74,1.0],[112,81,75,1.0],[112,81,76,1.0],[112,81,77,1.0],[112,81,78,1.0],[112,81,79,1.0],[112,82,64,1.0],[112,82,65,1.0],[112,82,66,1.0],[112,82,67,1.0],[112,82,68,1.0],[112,82,69,1.0],[112,82,70,1.0],[112,82,71,1.0],[112,82,72,1.0],[112,82,73,1.0],[112,82,74,1.0],[112,82,75,1.0],[112,82,76,1.0],[112,82,77,1.0],[112,82,78,1.0],[112,82,79,1.0],[112,83,64,1.0],[112,83,65,1.0],[112,83,66,1.0],[112,83,67,1.0],[112,83,68,1.0],[112,83,69,1.0],[112,83,70,1.0],[112,83,71,1.0],[112,83,72,1.0],[112,83,73,1.0],[112,83,74,1.0],[112,83,75,1.0],[112,83,76,1.0],[112,83,77,1.0],[112,83,78,1.0],[112,83,79,1.0],[112,84,64,1.0],[112,84,65,1.0],[112,84,66,1.0],[112,84,67,1.0],[112,84,68,1.0],[112,84,69,1.0],[112,84,70,1.0],[112,84,71,1.0],[112,84,72,1.0],[112,84,73,1.0],[112,84,74,1.0],[112,84,75,1.0],[112,84,76,1.0],[112,84,77,1.0],[112,84,78,1.0],[112,84,79,1.0],[112,85,64,1.0],[112,85,65,1.0],[112,85,66,1.0],[112,85,67,1.0],[112,85,68,1.0],[112,85,69,1.0],[112,85,70,1.0],[112,85,71,1.0],[112,85,72,1.0],[112,85,73,1.0],[112,85,74,1.0],[112,85,75,1.0],[112,85,76,1.0],[112,85,77,1.0],[112,85,78,1.0],[112,85,79,1.0],[112,86,64,1.0],[112,86,65,1.0],[112,86,66,1.0],[112,86,67,1.0],[112,86,68,1.0],[112,86,69,1.0],[112,86,70,1.0],[112,86,71,1.0],[112,86,72,1.0],[112,86,73,1.0],[112,86,74,1.0],[112,86,75,1.0],[112,86,76,1.0],[112,86,77,1.0],[112,86,78,1.0],[112,86,79,1.0],[112,87,64,1.0],[112,87,65,1.0],[112,87,66,1.0],[112,87,67,1.0],[112,87,68,1.0],[112,87,69,1.0],[112,87,70,1.0],[112,87,71,1.0],[112,87,72,1.0],[112,87,73,1.0],[112,87,74,1.0],[112,87,75,1.0],[112,87,76,1.0],[112,87,77,1.0],[112,87,78,1.0],[112,87,79,1.0],[112,88,64,1.0],[112,88,65,1.0],[112,88,66,1.0],[112,88,67,1.0],[112,88,68,1.0],[112,88,69,1.0],[112,88,70,1.0],[112,88,71,1.0],[112,88,72,1.0],[112,88,73,1.0],[112,88,74,1.0],[112,88,75,1.0],[112,88,76,1.0],[112,88,77,1.0],[112,88,78,1.0],[112,88,79,1.0],[112,89,64,1.0],[112,89,65,1.0],[112,89,66,1.0],[112,89,67,1.0],[112,89,68,1.0],[112,89,69,1.0],[112,89,70,1.0],[112,89,71,1.0],[112,89,72,1.0],[112,89,73,1.0],[112,89,74,1.0],[112,89,75,1.0],[112,89,76,1.0],[112,89,77,1.0],[112,89,78,1.0],[112,89,79,1.0],[112,90,64,1.0],[112,90,65,1.0],[112,90,66,1.0],[112,90,67,1.0],[112,90,68,1.0],[112,90,69,1.0],[112,90,70,1.0],[112,90,71,1.0],[112,90,72,1.0],[112,90,73,1.0],[112,90,74,1.0],[112,90,75,1.0],[112,90,76,1.0],[112,90,77,1.0],[112,90,78,1.0],[112,90,79,1.0],[112,91,64,1.0],[112,91,65,1.0],[112,91,66,1.0],[112,91,67,1.0],[112,91,68,1.0],[112,91,69,1.0],[112,91,70,1.0],[112,91,71,1.0],[112,91,72,1.0],[112,91,73,1.0],[112,91,74,1.0],[112,91,75,1.0],[112,91,76,1.0],[112,91,77,1.0],[112,91,78,1.0],[112,91,79,1.0],[112,92,64,1.0],[112,92,65,1.0],[112,92,66,1.0],[112,92,67,1.0],[112,92,68,1.0],[112,92,69,1.0],[112,92,70,1.0],[112,92,71,1.0],[112,92,72,1.0],[112,92,73,1.0],[112,92,74,1.0],[112,92,75,1.0],[112,92,76,1.0],[112,92,77,1.0],[112,92,78,1.0],[112,92,79,1.0],[112,93,64,1.0],[112,93,65,1.0],[112,93,66,1.0],[112,93,67,1.0],[112,93,68,1.0],[112,93,69,1.0],[112,93,70,1.0],[112,93,71,1.0],[112,93,72,1.0],[112,93,73,1.0],[112,93,74,1.0],[112,93,75,1.0],[112,93,76,1.0],[112,93,77,1.0],[112,93,78,1.0],[112,93,79,1.0],[112,94,64,1.0],[112,94,65,1.0],[112,94,66,1.0],[112,94,67,1.0],[112,94,68,1.0],[112,94,69,1.0],[112,94,70,1.0],[112,94,71,1.0],[112,94,72,1.0],[112,94,73,1.0],[112,94,74,1.0],[112,94,75,1.0],[112,94,76,1.0],[112,94,77,1.0],[112,94,78,1.0],[112,94,79,1.0],[112,95,64,1.0],[112,95,65,1.0],[112,95,66,1.0],[112,95,67,1.0],[112,95,68,1.0],[112,95,69,1.0],[112,95,70,1.0],[112,95,71,1.0],[112,95,72,1.0],[112,95,73,1.0],[112,95,74,1.0],[112,95,75,1.0],[112,95,76,1.0],[112,95,77,1.0],[112,95,78,1.0],[112,95,79,1.0],[112,96,64,1.0],[112,96,65,1.0],[112,96,66,1.0],[112,96,67,1.0],[112,96,68,1.0],[112,96,69,1.0],[112,96,70,1.0],[112,96,71,1.0],[112,96,72,1.0],[112,96,73,1.0],[112,96,74,1.0],[112,96,75,1.0],[112,96,76,1.0],[112,96,77,1.0],[112,96,78,1.0],[112,96,79,1.0],[112,97,64,1.0],[112,97,65,1.0],[112,97,66,1.0],[112,97,67,1.0],[112,97,68,1.0],[112,97,69,1.0],[112,97,70,1.0],[112,97,71,1.0],[112,97,72,1.0],[112,97,73,1.0],[112,97,74,1.0],[112,97,75,1.0],[112,97,76,1.0],[112,97,77,1.0],[112,97,78,1.0],[112,97,79,1.0],[112,98,64,1.0],[112,98,65,1.0],[112,98,66,1.0],[112,98,67,1.0],[112,98,68,1.0],[112,98,69,1.0],[112,98,70,1.0],[112,98,71,1.0],[112,98,72,1.0],[112,98,73,1.0],[112,98,74,1.0],[112,98,75,1.0],[112,98,76,1.0],[112,98,77,1.0],[112,98,78,1.0],[112,98,79,1.0],[112,99,64,1.0],[112,99,65,1.0],[112,99,66,1.0],[112,99,67,1.0],[112,99,68,1.0],[112,99,69,1.0],[112,99,70,1.0],[112,99,71,1.0],[112,99,72,1.0],[112,99,73,1.0],[112,99,74,1.0],[112,99,75,1.0],[112,99,76,1.0],[112,99,77,1.0],[112,99,78,1.0],[112,99,79,1.0],[112,100,64,1.0],[112,100,65,1.0],[112,100,66,1.0],[112,100,67,1.0],[112,100,68,1.0],[112,100,69,1.0],[112,100,70,1.0],[112,100,71,1.0],[112,100,72,1.0],[112,100,73,1.0],[112,100,74,1.0],[112,100,75,1.0],[112,100,76,1.0],[112,100,77,1.0],[112,100,78,1.0],[112,100,79,1.0],[112,101,64,1.0],[112,101,65,1.0],[112,101,66,1.0],[112,101,67,1.0],[112,101,68,1.0],[112,101,69,1.0],[112,101,70,1.0],[112,101,71,1.0],[112,101,72,1.0],[112,101,73,1.0],[112,101,74,1.0],[112,101,75,1.0],[112,101,76,1.0],[112,101,77,1.0],[112,101,78,1.0],[112,101,79,1.0],[112,102,64,1.0],[112,102,65,1.0],[112,102,66,1.0],[112,102,67,1.0],[112,102,68,1.0],[112,102,69,1.0],[112,102,70,1.0],[112,102,71,1.0],[112,102,72,1.0],[112,102,73,1.0],[112,102,74,1.0],[112,102,75,1.0],[112,102,76,1.0],[112,102,77,1.0],[112,102,78,1.0],[112,102,79,1.0],[112,103,64,1.0],[112,103,65,1.0],[112,103,66,1.0],[112,103,67,1.0],[112,103,68,1.0],[112,103,69,1.0],[112,103,70,1.0],[112,103,71,1.0],[112,103,72,1.0],[112,103,73,1.0],[112,103,74,1.0],[112,103,75,1.0],[112,103,76,1.0],[112,103,77,1.0],[112,103,78,1.0],[112,103,79,1.0],[112,104,64,1.0],[112,104,65,1.0],[112,104,66,1.0],[112,104,67,1.0],[112,104,68,1.0],[112,104,69,1.0],[112,104,70,1.0],[112,104,71,1.0],[112,104,72,1.0],[112,104,73,1.0],[112,104,74,1.0],[112,104,75,1.0],[112,104,76,1.0],[112,104,77,1.0],[112,104,78,1.0],[112,104,79,1.0],[112,105,64,1.0],[112,105,65,1.0],[112,105,66,1.0],[112,105,67,1.0],[112,105,68,1.0],[112,105,69,1.0],[112,105,70,1.0],[112,105,71,1.0],[112,105,72,1.0],[112,105,73,1.0],[112,105,74,1.0],[112,105,75,1.0],[112,105,76,1.0],[112,105,77,1.0],[112,105,78,1.0],[112,105,79,1.0],[112,106,64,1.0],[112,106,65,1.0],[112,106,66,1.0],[112,106,67,1.0],[112,106,68,1.0],[112,106,69,1.0],[112,106,70,1.0],[112,106,71,1.0],[112,106,72,1.0],[112,106,73,1.0],[112,106,74,1.0],[112,106,75,1.0],[112,106,76,1.0],[112,106,77,1.0],[112,106,78,1.0],[112,106,79,1.0],[112,107,64,1.0],[112,107,65,1.0],[112,107,66,1.0],[112,107,67,1.0],[112,107,68,1.0],[112,107,69,1.0],[112,107,70,1.0],[112,107,71,1.0],[112,107,72,1.0],[112,107,73,1.0],[112,107,74,1.0],[112,107,75,1.0],[112,107,76,1.0],[112,107,77,1.0],[112,107,78,1.0],[112,107,79,1.0],[112,108,64,1.0],[112,108,65,1.0],[112,108,66,1.0],[112,108,67,1.0],[112,108,68,1.0],[112,108,69,1.0],[112,108,70,1.0],[112,108,71,1.0],[112,108,72,1.0],[112,108,73,1.0],[112,108,74,1.0],[112,108,75,1.0],[112,108,76,1.0],[112,108,77,1.0],[112,108,78,1.0],[112,108,79,1.0],[112,109,64,1.0],[112,109,65,1.0],[112,109,66,1.0],[112,109,67,1.0],[112,109,68,1.0],[112,109,69,1.0],[112,109,70,1.0],[112,109,71,1.0],[112,109,72,1.0],[112,109,73,1.0],[112,109,74,1.0],[112,109,75,1.0],[112,109,76,1.0],[112,109,77,1.0],[112,109,78,1.0],[112,109,79,1.0],[112,110,64,1.0],[112,110,65,1.0],[112,110,66,1.0],[112,110,67,1.0],[112,110,68,1.0],[112,110,69,1.0],[112,110,70,1.0],[112,110,71,1.0],[112,110,72,1.0],[112,110,73,1.0],[112,110,74,1.0],[112,110,75,1.0],[112,110,76,1.0],[112,110,77,1.0],[112,110,78,1.0],[112,110,79,1.0],[112,111,64,1.0],[112,111,65,1.0],[112,111,66,1.0],[112,111,67,1.0],[112,111,68,1.0],[112,111,69,1.0],[112,111,70,1.0],[112,111,71,1.0],[112,111,72,1.0],[112,111,73,1.0],[112,111,74,1.0],[112,111,75,1.0],[112,111,76,1.0],[112,111,77,1.0],[112,111,78,1.0],[112,111,79,1.0],[112,112,64,1.0],[112,112,65,1.0],[112,112,66,1.0],[112,112,67,1.0],[112,112,68,1.0],[112,112,69,1.0],[112,112,70,1.0],[112,112,71,1.0],[112,112,72,1.0],[112,112,73,1.0],[112,112,74,1.0],[112,112,75,1.0],[112,112,76,1.0],[112,112,77,1.0],[112,112,78,1.0],[112,112,79,1.0],[112,113,64,1.0],[112,113,65,1.0],[112,113,66,1.0],[112,113,67,1.0],[112,113,68,1.0],[112,113,69,1.0],[112,113,70,1.0],[112,113,71,1.0],[112,113,72,1.0],[112,113,73,1.0],[112,113,74,1.0],[112,113,75,1.0],[112,113,76,1.0],[112,113,77,1.0],[112,113,78,1.0],[112,113,79,1.0],[112,114,64,1.0],[112,114,65,1.0],[112,114,66,1.0],[112,114,67,1.0],[112,114,68,1.0],[112,114,69,1.0],[112,114,70,1.0],[112,114,71,1.0],[112,114,72,1.0],[112,114,73,1.0],[112,114,74,1.0],[112,114,75,1.0],[112,114,76,1.0],[112,114,77,1.0],[112,114,78,1.0],[112,114,79,1.0],[112,115,64,1.0],[112,115,65,1.0],[112,115,66,1.0],[112,115,67,1.0],[112,115,68,1.0],[112,115,69,1.0],[112,115,70,1.0],[112,115,71,1.0],[112,115,72,1.0],[112,115,73,1.0],[112,115,74,1.0],[112,115,75,1.0],[112,115,76,1.0],[112,115,77,1.0],[112,115,78,1.0],[112,115,79,1.0],[112,116,64,1.0],[112,116,65,1.0],[112,116,66,1.0],[112,116,67,1.0],[112,116,68,1.0],[112,116,69,1.0],[112,116,70,1.0],[112,116,71,1.0],[112,116,72,1.0],[112,116,73,1.0],[112,116,74,1.0],[112,116,75,1.0],[112,116,76,1.0],[112,116,77,1.0],[112,116,78,1.0],[112,116,79,1.0],[112,117,64,1.0],[112,117,65,1.0],[112,117,66,1.0],[112,117,67,1.0],[112,117,68,1.0],[112,117,69,1.0],[112,117,70,1.0],[112,117,71,1.0],[112,117,72,1.0],[112,117,73,1.0],[112,117,74,1.0],[112,117,75,1.0],[112,117,76,1.0],[112,117,77,1.0],[112,117,78,1.0],[112,117,79,1.0],[112,118,64,1.0],[112,118,65,1.0],[112,118,66,1.0],[112,118,67,1.0],[112,118,68,1.0],[112,118,69,1.0],[112,118,70,1.0],[112,118,71,1.0],[112,118,72,1.0],[112,118,73,1.0],[112,118,74,1.0],[112,118,75,1.0],[112,118,76,1.0],[112,118,77,1.0],[112,118,78,1.0],[112,118,79,1.0],[112,119,64,1.0],[112,119,65,1.0],[112,119,66,1.0],[112,119,67,1.0],[112,119,68,1.0],[112,119,69,1.0],[112,119,70,1.0],[112,119,71,1.0],[112,119,72,1.0],[112,119,73,1.0],[112,119,74,1.0],[112,119,75,1.0],[112,119,76,1.0],[112,119,77,1.0],[112,119,78,1.0],[112,119,79,1.0],[112,120,64,1.0],[112,120,65,1.0],[112,120,66,1.0],[112,120,67,1.0],[112,120,68,1.0],[112,120,69,1.0],[112,120,70,1.0],[112,120,71,1.0],[112,120,72,1.0],[112,120,73,1.0],[112,120,74,1.0],[112,120,75,1.0],[112,120,76,1.0],[112,120,77,1.0],[112,120,78,1.0],[112,120,79,1.0],[112,121,64,1.0],[112,121,65,1.0],[112,121,66,1.0],[112,121,67,1.0],[112,121,68,1.0],[112,121,69,1.0],[112,121,70,1.0],[112,121,71,1.0],[112,121,72,1.0],[112,121,73,1.0],[112,121,74,1.0],[112,121,75,1.0],[112,121,76,1.0],[112,121,77,1.0],[112,121,78,1.0],[112,121,79,1.0],[112,122,64,1.0],[112,122,65,1.0],[112,122,66,1.0],[112,122,67,1.0],[112,122,68,1.0],[112,122,69,1.0],[112,122,70,1.0],[112,122,71,1.0],[112,122,72,1.0],[112,122,73,1.0],[112,122,74,1.0],[112,122,75,1.0],[112,122,76,1.0],[112,122,77,1.0],[112,122,78,1.0],[112,122,79,1.0],[112,123,64,1.0],[112,123,65,1.0],[112,123,66,1.0],[112,123,67,1.0],[112,123,68,1.0],[112,123,69,1.0],[112,123,70,1.0],[112,123,71,1.0],[112,123,72,1.0],[112,123,73,1.0],[112,123,74,1.0],[112,123,75,1.0],[112,123,76,1.0],[112,123,77,1.0],[112,123,78,1.0],[112,123,79,1.0],[112,124,64,1.0],[112,124,65,1.0],[112,124,66,1.0],[112,124,67,1.0],[112,124,68,1.0],[112,124,69,1.0],[112,124,70,1.0],[112,124,71,1.0],[112,124,72,1.0],[112,124,73,1.0],[112,124,74,1.0],[112,124,75,1.0],[112,124,76,1.0],[112,124,77,1.0],[112,124,78,1.0],[112,124,79,1.0],[112,125,64,1.0],[112,125,65,1.0],[112,125,66,1.0],[112,125,67,1.0],[112,125,68,1.0],[112,125,69,1.0],[112,125,70,1.0],[112,125,71,1.0],[112,125,72,1.0],[112,125,73,1.0],[112,125,74,1.0],[112,125,75,1.0],[112,125,76,1.0],[112,125,77,1.0],[112,125,78,1.0],[112,125,79,1.0],[112,126,64,1.0],[112,126,65,1.0],[112,126,66,1.0],[112,126,67,1.0],[112,126,68,1.0],[112,126,69,1.0],[112,126,70,1.0],[112,126,71,1.0],[112,126,72,1.0],[112,126,73,1.0],[112,126,74,1.0],[112,126,75,1.0],[112,126,76,1.0],[112,126,77,1.0],[112,126,78,1.0],[112,126,79,1.0],[112,127,64,1.0],[112,127,65,1.0],[112,127,66,1.0],[112,127,67,1.0],[112,127,68,1.0],[112,127,69,1.0],[112,127,70,1.0],[112,127,71,1.0],[112,127,72,1.0],[112,127,73,1.0],[112,127,74,1.0],[112,127,75,1.0],[112,127,76,1.0],[112,127,77,1.0],[112,127,78,1.0],[112,127,79,1.0],[112,128,64,1.0],[112,128,65,1.0],[112,128,66,1.0],[112,128,67,1.0],[112,128,68,1.0],[112,128,69,1.0],[112,128,70,1.0],[112,128,71,1.0],[112,128,72,1.0],[112,128,73,1.0],[112,128,74,1.0],[112,128,75,1.0],[112,128,76,1.0],[112,128,77,1.0],[112,128,78,1.0],[112,128,79,1.0],[112,129,64,1.0],[112,129,65,1.0],[112,129,66,1.0],[112,129,67,1.0],[112,129,68,1.0],[112,129,69,1.0],[112,129,70,1.0],[112,129,71,1.0],[112,129,72,1.0],[112,129,73,1.0],[112,129,74,1.0],[112,129,75,1.0],[112,129,76,1.0],[112,129,77,1.0],[112,129,78,1.0],[112,129,79,1.0],[112,130,64,1.0],[112,130,65,1.0],[112,130,66,1.0],[112,130,67,1.0],[112,130,68,1.0],[112,130,69,1.0],[112,130,70,1.0],[112,130,71,1.0],[112,130,72,1.0],[112,130,73,1.0],[112,130,74,1.0],[112,130,75,1.0],[112,130,76,1.0],[112,130,77,1.0],[112,130,78,1.0],[112,130,79,1.0],[112,131,64,1.0],[112,131,65,1.0],[112,131,66,1.0],[112,131,67,1.0],[112,131,68,1.0],[112,131,69,1.0],[112,131,70,1.0],[112,131,71,1.0],[112,131,72,1.0],[112,131,73,1.0],[112,131,74,1.0],[112,131,75,1.0],[112,131,76,1.0],[112,131,77,1.0],[112,131,78,1.0],[112,131,79,1.0],[112,132,64,1.0],[112,132,65,1.0],[112,132,66,1.0],[112,132,67,1.0],[112,132,68,1.0],[112,132,69,1.0],[112,132,70,1.0],[112,132,71,1.0],[112,132,72,1.0],[112,132,73,1.0],[112,132,74,1.0],[112,132,75,1.0],[112,132,76,1.0],[112,132,77,1.0],[112,132,78,1.0],[112,132,79,1.0],[112,133,64,1.0],[112,133,65,1.0],[112,133,66,1.0],[112,133,67,1.0],[112,133,68,1.0],[112,133,69,1.0],[112,133,70,1.0],[112,133,71,1.0],[112,133,72,1.0],[112,133,73,1.0],[112,133,74,1.0],[112,133,75,1.0],[112,133,76,1.0],[112,133,77,1.0],[112,133,78,1.0],[112,133,79,1.0],[112,134,64,1.0],[112,134,65,1.0],[112,134,66,1.0],[112,134,67,1.0],[112,134,68,1.0],[112,134,69,1.0],[112,134,70,1.0],[112,134,71,1.0],[112,134,72,1.0],[112,134,73,1.0],[112,134,74,1.0],[112,134,75,1.0],[112,134,76,1.0],[112,134,77,1.0],[112,134,78,1.0],[112,134,79,1.0],[112,135,64,1.0],[112,135,65,1.0],[112,135,66,1.0],[112,135,67,1.0],[112,135,68,1.0],[112,135,69,1.0],[112,135,70,1.0],[112,135,71,1.0],[112,135,72,1.0],[112,135,73,1.0],[112,135,74,1.0],[112,135,75,1.0],[112,135,76,1.0],[112,135,77,1.0],[112,135,78,1.0],[112,135,79,1.0],[112,136,64,1.0],[112,136,65,1.0],[112,136,66,1.0],[112,136,67,1.0],[112,136,68,1.0],[112,136,69,1.0],[112,136,70,1.0],[112,136,71,1.0],[112,136,72,1.0],[112,136,73,1.0],[112,136,74,1.0],[112,136,75,1.0],[112,136,76,1.0],[112,136,77,1.0],[112,136,78,1.0],[112,136,79,1.0],[112,137,64,1.0],[112,137,65,1.0],[112,137,66,1.0],[112,137,67,1.0],[112,137,68,1.0],[112,137,69,1.0],[112,137,70,1.0],[112,137,71,1.0],[112,137,72,1.0],[112,137,73,1.0],[112,137,74,1.0],[112,137,75,1.0],[112,137,76,1.0],[112,137,77,1.0],[112,137,78,1.0],[112,137,79,1.0],[112,138,64,1.0],[112,138,65,1.0],[112,138,66,1.0],[112,138,67,1.0],[112,138,68,1.0],[112,138,69,1.0],[112,138,70,1.0],[112,138,71,1.0],[112,138,72,1.0],[112,138,73,1.0],[112,138,74,1.0],[112,138,75,1.0],[112,138,76,1.0],[112,138,77,1.0],[112,138,78,1.0],[112,138,79,1.0],[112,139,64,1.0],[112,139,65,1.0],[112,139,66,1.0],[112,139,67,1.0],[112,139,68,1.0],[112,139,69,1.0],[112,139,70,1.0],[112,139,71,1.0],[112,139,72,1.0],[112,139,73,1.0],[112,139,74,1.0],[112,139,75,1.0],[112,139,76,1.0],[112,139,77,1.0],[112,139,78,1.0],[112,139,79,1.0],[112,140,64,1.0],[112,140,65,1.0],[112,140,66,1.0],[112,140,67,1.0],[112,140,68,1.0],[112,140,69,1.0],[112,140,70,1.0],[112,140,71,1.0],[112,140,72,1.0],[112,140,73,1.0],[112,140,74,1.0],[112,140,75,1.0],[112,140,76,1.0],[112,140,77,1.0],[112,140,78,1.0],[112,140,79,1.0],[112,141,64,1.0],[112,141,65,1.0],[112,141,66,1.0],[112,141,67,1.0],[112,141,68,1.0],[112,141,69,1.0],[112,141,70,1.0],[112,141,71,1.0],[112,141,72,1.0],[112,141,73,1.0],[112,141,74,1.0],[112,141,75,1.0],[112,141,76,1.0],[112,141,77,1.0],[112,141,78,1.0],[112,141,79,1.0],[112,142,64,1.0],[112,142,65,1.0],[112,142,66,1.0],[112,142,67,1.0],[112,142,68,1.0],[112,142,69,1.0],[112,142,70,1.0],[112,142,71,1.0],[112,142,72,1.0],[112,142,73,1.0],[112,142,74,1.0],[112,142,75,1.0],[112,142,76,1.0],[112,142,77,1.0],[112,142,78,1.0],[112,142,79,1.0],[112,143,64,1.0],[112,143,65,1.0],[112,143,66,1.0],[112,143,67,1.0],[112,143,68,1.0],[112,143,69,1.0],[112,143,70,1.0],[112,143,71,1.0],[112,143,72,1.0],[112,143,73,1.0],[112,143,74,1.0],[112,143,75,1.0],[112,143,76,1.0],[112,143,77,1.0],[112,143,78,1.0],[112,143,79,1.0],[112,144,64,1.0],[112,144,65,1.0],[112,144,66,1.0],[112,144,67,1.0],[112,144,68,1.0],[112,144,69,1.0],[112,144,70,1.0],[112,144,71,1.0],[112,144,72,1.0],[112,144,73,1.0],[112,144,74,1.0],[112,144,75,1.0],[112,144,76,1.0],[112,144,77,1.0],[112,144,78,1.0],[112,144,79,1.0],[112,145,64,1.0],[112,145,65,1.0],[112,145,66,1.0],[112,145,67,1.0],[112,145,68,1.0],[112,145,69,1.0],[112,145,70,1.0],[112,145,71,1.0],[112,145,72,1.0],[112,145,73,1.0],[112,145,74,1.0],[112,145,75,1.0],[112,145,76,1.0],[112,145,77,1.0],[112,145,78,1.0],[112,145,79,1.0],[112,146,64,1.0],[112,146,65,1.0],[112,146,66,1.0],[112,146,67,1.0],[112,146,68,1.0],[112,146,69,1.0],[112,146,70,1.0],[112,146,71,1.0],[112,146,72,1.0],[112,146,73,1.0],[112,146,74,1.0],[112,146,75,1.0],[112,146,76,1.0],[112,146,77,1.0],[112,146,78,1.0],[112,146,79,1.0],[112,147,64,1.0],[112,147,65,1.0],[112,147,66,1.0],[112,147,67,1.0],[112,147,68,1.0],[112,147,69,1.0],[112,147,70,1.0],[112,147,71,1.0],[112,147,72,1.0],[112,147,73,1.0],[112,147,74,1.0],[112,147,75,1.0],[112,147,76,1.0],[112,147,77,1.0],[112,147,78,1.0],[112,147,79,1.0],[112,148,64,1.0],[112,148,65,1.0],[112,148,66,1.0],[112,148,67,1.0],[112,148,68,1.0],[112,148,69,1.0],[112,148,70,1.0],[112,148,71,1.0],[112,148,72,1.0],[112,148,73,1.0],[112,148,74,1.0],[112,148,75,1.0],[112,148,76,1.0],[112,148,77,1.0],[112,148,78,1.0],[112,148,79,1.0],[112,149,64,1.0],[112,149,65,1.0],[112,149,66,1.0],[112,149,67,1.0],[112,149,68,1.0],[112,149,69,1.0],[112,149,70,1.0],[112,149,71,1.0],[112,149,72,1.0],[112,149,73,1.0],[112,149,74,1.0],[112,149,75,1.0],[112,149,76,1.0],[112,149,77,1.0],[112,149,78,1.0],[112,149,79,1.0],[112,150,64,1.0],[112,150,65,1.0],[112,150,66,1.0],[112,150,67,1.0],[112,150,68,1.0],[112,150,69,1.0],[112,150,70,1.0],[112,150,71,1.0],[112,150,72,1.0],[112,150,73,1.0],[112,150,74,1.0],[112,150,75,1.0],[112,150,76,1.0],[112,150,77,1.0],[112,150,78,1.0],[112,150,79,1.0],[112,151,64,1.0],[112,151,65,1.0],[112,151,66,1.0],[112,151,67,1.0],[112,151,68,1.0],[112,151,69,1.0],[112,151,70,1.0],[112,151,71,1.0],[112,151,72,1.0],[112,151,73,1.0],[112,151,74,1.0],[112,151,75,1.0],[112,151,76,1.0],[112,151,77,1.0],[112,151,78,1.0],[112,151,79,1.0],[112,152,64,1.0],[112,152,65,1.0],[112,152,66,1.0],[112,152,67,1.0],[112,152,68,1.0],[112,152,69,1.0],[112,152,70,1.0],[112,152,71,1.0],[112,152,72,1.0],[112,152,73,1.0],[112,152,74,1.0],[112,152,75,1.0],[112,152,76,1.0],[112,152,77,1.0],[112,152,78,1.0],[112,152,79,1.0],[112,153,64,1.0],[112,153,65,1.0],[112,153,66,1.0],[112,153,67,1.0],[112,153,68,1.0],[112,153,69,1.0],[112,153,70,1.0],[112,153,71,1.0],[112,153,72,1.0],[112,153,73,1.0],[112,153,74,1.0],[112,153,75,1.0],[112,153,76,1.0],[112,153,77,1.0],[112,153,78,1.0],[112,153,79,1.0],[112,154,64,1.0],[112,154,65,1.0],[112,154,66,1.0],[112,154,67,1.0],[112,154,68,1.0],[112,154,69,1.0],[112,154,70,1.0],[112,154,71,1.0],[112,154,72,1.0],[112,154,73,1.0],[112,154,74,1.0],[112,154,75,1.0],[112,154,76,1.0],[112,154,77,1.0],[112,154,78,1.0],[112,154,79,1.0],[112,155,64,1.0],[112,155,65,1.0],[112,155,66,1.0],[112,155,67,1.0],[112,155,68,1.0],[112,155,69,1.0],[112,155,70,1.0],[112,155,71,1.0],[112,155,72,1.0],[112,155,73,1.0],[112,155,74,1.0],[112,155,75,1.0],[112,155,76,1.0],[112,155,77,1.0],[112,155,78,1.0],[112,155,79,1.0],[112,156,64,1.0],[112,156,65,1.0],[112,156,66,1.0],[112,156,67,1.0],[112,156,68,1.0],[112,156,69,1.0],[112,156,70,1.0],[112,156,71,1.0],[112,156,72,1.0],[112,156,73,1.0],[112,156,74,1.0],[112,156,75,1.0],[112,156,76,1.0],[112,156,77,1.0],[112,156,78,1.0],[112,156,79,1.0],[112,157,64,1.0],[112,157,65,1.0],[112,157,66,1.0],[112,157,67,1.0],[112,157,68,1.0],[112,157,69,1.0],[112,157,70,1.0],[112,157,71,1.0],[112,157,72,1.0],[112,157,73,1.0],[112,157,74,1.0],[112,157,75,1.0],[112,157,76,1.0],[112,157,77,1.0],[112,157,78,1.0],[112,157,79,1.0],[112,158,64,1.0],[112,158,65,1.0],[112,158,66,1.0],[112,158,67,1.0],[112,158,68,1.0],[112,158,69,1.0],[112,158,70,1.0],[112,158,71,1.0],[112,158,72,1.0],[112,158,73,1.0],[112,158,74,1.0],[112,158,75,1.0],[112,158,76,1.0],[112,158,77,1.0],[112,158,78,1.0],[112,158,79,1.0],[112,159,64,1.0],[112,159,65,1.0],[112,159,66,1.0],[112,159,67,1.0],[112,159,68,1.0],[112,159,69,1.0],[112,159,70,1.0],[112,159,71,1.0],[112,159,72,1.0],[112,159,73,1.0],[112,159,74,1.0],[112,159,75,1.0],[112,159,76,1.0],[112,159,77,1.0],[112,159,78,1.0],[112,159,79,1.0],[112,160,64,1.0],[112,160,65,1.0],[112,160,66,1.0],[112,160,67,1.0],[112,160,68,1.0],[112,160,69,1.0],[112,160,70,1.0],[112,160,71,1.0],[112,160,72,1.0],[112,160,73,1.0],[112,160,74,1.0],[112,160,75,1.0],[112,160,76,1.0],[112,160,77,1.0],[112,160,78,1.0],[112,160,79,1.0],[112,161,64,1.0],[112,161,65,1.0],[112,161,66,1.0],[112,161,67,1.0],[112,161,68,1.0],[112,161,69,1.0],[112,161,70,1.0],[112,161,71,1.0],[112,161,72,1.0],[112,161,73,1.0],[112,161,74,1.0],[112,161,75,1.0],[112,161,76,1.0],[112,161,77,1.0],[112,161,78,1.0],[112,161,79,1.0],[112,162,64,1.0],[112,162,65,1.0],[112,162,66,1.0],[112,162,67,1.0],[112,162,68,1.0],[112,162,69,1.0],[112,162,70,1.0],[112,162,71,1.0],[112,162,72,1.0],[112,162,73,1.0],[112,162,74,1.0],[112,162,75,1.0],[112,162,76,1.0],[112,162,77,1.0],[112,162,78,1.0],[112,162,79,1.0],[112,163,64,1.0],[112,163,65,1.0],[112,163,66,1.0],[112,163,67,1.0],[112,163,68,1.0],[112,163,69,1.0],[112,163,70,1.0],[112,163,71,1.0],[112,163,72,1.0],[112,163,73,1.0],[112,163,74,1.0],[112,163,75,1.0],[112,163,76,1.0],[112,163,77,1.0],[112,163,78,1.0],[112,163,79,1.0],[112,164,64,1.0],[112,164,65,1.0],[112,164,66,1.0],[112,164,67,1.0],[112,164,68,1.0],[112,164,69,1.0],[112,164,70,1.0],[112,164,71,1.0],[112,164,72,1.0],[112,164,73,1.0],[112,164,74,1.0],[112,164,75,1.0],[112,164,76,1.0],[112,164,77,1.0],[112,164,78,1.0],[112,164,79,1.0],[112,165,64,1.0],[112,165,65,1.0],[112,165,66,1.0],[112,165,67,1.0],[112,165,68,1.0],[112,165,69,1.0],[112,165,70,1.0],[112,165,71,1.0],[112,165,72,1.0],[112,165,73,1.0],[112,165,74,1.0],[112,165,75,1.0],[112,165,76,1.0],[112,165,77,1.0],[112,165,78,1.0],[112,165,79,1.0],[112,166,64,1.0],[112,166,65,1.0],[112,166,66,1.0],[112,166,67,1.0],[112,166,68,1.0],[112,166,69,1.0],[112,166,70,1.0],[112,166,71,1.0],[112,166,72,1.0],[112,166,73,1.0],[112,166,74,1.0],[112,166,75,1.0],[112,166,76,1.0],[112,166,77,1.0],[112,166,78,1.0],[112,166,79,1.0],[112,167,64,1.0],[112,167,65,1.0],[112,167,66,1.0],[112,167,67,1.0],[112,167,68,1.0],[112,167,69,1.0],[112,167,70,1.0],[112,167,71,1.0],[112,167,72,1.0],[112,167,73,1.0],[112,167,74,1.0],[112,167,75,1.0],[112,167,76,1.0],[112,167,77,1.0],[112,167,78,1.0],[112,167,79,1.0],[112,168,64,1.0],[112,168,65,1.0],[112,168,66,1.0],[112,168,67,1.0],[112,168,68,1.0],[112,168,69,1.0],[112,168,70,1.0],[112,168,71,1.0],[112,168,72,1.0],[112,168,73,1.0],[112,168,74,1.0],[112,168,75,1.0],[112,168,76,1.0],[112,168,77,1.0],[112,168,78,1.0],[112,168,79,1.0],[112,169,64,1.0],[112,169,65,1.0],[112,169,66,1.0],[112,169,67,1.0],[112,169,68,1.0],[112,169,69,1.0],[112,169,70,1.0],[112,169,71,1.0],[112,169,72,1.0],[112,169,73,1.0],[112,169,74,1.0],[112,169,75,1.0],[112,169,76,1.0],[112,169,77,1.0],[112,169,78,1.0],[112,169,79,1.0],[112,170,64,1.0],[112,170,65,1.0],[112,170,66,1.0],[112,170,67,1.0],[112,170,68,1.0],[112,170,69,1.0],[112,170,70,1.0],[112,170,71,1.0],[112,170,72,1.0],[112,170,73,1.0],[112,170,74,1.0],[112,170,75,1.0],[112,170,76,1.0],[112,170,77,1.0],[112,170,78,1.0],[112,170,79,1.0],[112,171,64,1.0],[112,171,65,1.0],[112,171,66,1.0],[112,171,67,1.0],[112,171,68,1.0],[112,171,69,1.0],[112,171,70,1.0],[112,171,71,1.0],[112,171,72,1.0],[112,171,73,1.0],[112,171,74,1.0],[112,171,75,1.0],[112,171,76,1.0],[112,171,77,1.0],[112,171,78,1.0],[112,171,79,1.0],[112,172,64,1.0],[112,172,65,1.0],[112,172,66,1.0],[112,172,67,1.0],[112,172,68,1.0],[112,172,69,1.0],[112,172,70,1.0],[112,172,71,1.0],[112,172,72,1.0],[112,172,73,1.0],[112,172,74,1.0],[112,172,75,1.0],[112,172,76,1.0],[112,172,77,1.0],[112,172,78,1.0],[112,172,79,1.0],[112,173,64,1.0],[112,173,65,1.0],[112,173,66,1.0],[112,173,67,1.0],[112,173,68,1.0],[112,173,69,1.0],[112,173,70,1.0],[112,173,71,1.0],[112,173,72,1.0],[112,173,73,1.0],[112,173,74,1.0],[112,173,75,1.0],[112,173,76,1.0],[112,173,77,1.0],[112,173,78,1.0],[112,173,79,1.0],[112,174,64,1.0],[112,174,65,1.0],[112,174,66,1.0],[112,174,67,1.0],[112,174,68,1.0],[112,174,69,1.0],[112,174,70,1.0],[112,174,71,1.0],[112,174,72,1.0],[112,174,73,1.0],[112,174,74,1.0],[112,174,75,1.0],[112,174,76,1.0],[112,174,77,1.0],[112,174,78,1.0],[112,174,79,1.0],[112,175,64,1.0],[112,175,65,1.0],[112,175,66,1.0],[112,175,67,1.0],[112,175,68,1.0],[112,175,69,1.0],[112,175,70,1.0],[112,175,71,1.0],[112,175,72,1.0],[112,175,73,1.0],[112,175,74,1.0],[112,175,75,1.0],[112,175,76,1.0],[112,175,77,1.0],[112,175,78,1.0],[112,175,79,1.0],[112,176,64,1.0],[112,176,65,1.0],[112,176,66,1.0],[112,176,67,1.0],[112,176,68,1.0],[112,176,69,1.0],[112,176,70,1.0],[112,176,71,1.0],[112,176,72,1.0],[112,176,73,1.0],[112,176,74,1.0],[112,176,75,1.0],[112,176,76,1.0],[112,176,77,1.0],[112,176,78,1.0],[112,176,79,1.0],[112,177,64,1.0],[112,177,65,1.0],[112,177,66,1.0],[112,177,67,1.0],[112,177,68,1.0],[112,177,69,1.0],[112,177,70,1.0],[112,177,71,1.0],[112,177,72,1.0],[112,177,73,1.0],[112,177,74,1.0],[112,177,75,1.0],[112,177,76,1.0],[112,177,77,1.0],[112,177,78,1.0],[112,177,79,1.0],[112,178,64,1.0],[112,178,65,1.0],[112,178,66,1.0],[112,178,67,1.0],[112,178,68,1.0],[112,178,69,1.0],[112,178,70,1.0],[112,178,71,1.0],[112,178,72,1.0],[112,178,73,1.0],[112,178,74,1.0],[112,178,75,1.0],[112,178,76,1.0],[112,178,77,1.0],[112,178,78,1.0],[112,178,79,1.0],[112,179,64,1.0],[112,179,65,1.0],[112,179,66,1.0],[112,179,67,1.0],[112,179,68,1.0],[112,179,69,1.0],[112,179,70,1.0],[112,179,71,1.0],[112,179,72,1.0],[112,179,73,1.0],[112,179,74,1.0],[112,179,75,1.0],[112,179,76,1.0],[112,179,77,1.0],[112,179,78,1.0],[112,179,79,1.0],[112,180,64,1.0],[112,180,65,1.0],[112,180,66,1.0],[112,180,67,1.0],[112,180,68,1.0],[112,180,69,1.0],[112,180,70,1.0],[112,180,71,1.0],[112,180,72,1.0],[112,180,73,1.0],[112,180,74,1.0],[112,180,75,1.0],[112,180,76,1.0],[112,180,77,1.0],[112,180,78,1.0],[112,180,79,1.0],[112,181,64,1.0],[112,181,65,1.0],[112,181,66,1.0],[112,181,67,1.0],[112,181,68,1.0],[112,181,69,1.0],[112,181,70,1.0],[112,181,71,1.0],[112,181,72,1.0],[112,181,73,1.0],[112,181,74,1.0],[112,181,75,1.0],[112,181,76,1.0],[112,181,77,1.0],[112,181,78,1.0],[112,181,79,1.0],[112,182,64,1.0],[112,182,65,1.0],[112,182,66,1.0],[112,182,67,1.0],[112,182,68,1.0],[112,182,69,1.0],[112,182,70,1.0],[112,182,71,1.0],[112,182,72,1.0],[112,182,73,1.0],[112,182,74,1.0],[112,182,75,1.0],[112,182,76,1.0],[112,182,77,1.0],[112,182,78,1.0],[112,182,79,1.0],[112,183,64,1.0],[112,183,65,1.0],[112,183,66,1.0],[112,183,67,1.0],[112,183,68,1.0],[112,183,69,1.0],[112,183,70,1.0],[112,183,71,1.0],[112,183,72,1.0],[112,183,73,1.0],[112,183,74,1.0],[112,183,75,1.0],[112,183,76,1.0],[112,183,77,1.0],[112,183,78,1.0],[112,183,79,1.0],[112,184,64,1.0],[112,184,65,1.0],[112,184,66,1.0],[112,184,67,1.0],[112,184,68,1.0],[112,184,69,1.0],[112,184,70,1.0],[112,184,71,1.0],[112,184,72,1.0],[112,184,73,1.0],[112,184,74,1.0],[112,184,75,1.0],[112,184,76,1.0],[112,184,77,1.0],[112,184,78,1.0],[112,184,79,1.0],[112,185,64,1.0],[112,185,65,1.0],[112,185,66,1.0],[112,185,67,1.0],[112,185,68,1.0],[112,185,69,1.0],[112,185,70,1.0],[112,185,71,1.0],[112,185,72,1.0],[112,185,73,1.0],[112,185,74,1.0],[112,185,75,1.0],[112,185,76,1.0],[112,185,77,1.0],[112,185,78,1.0],[112,185,79,1.0],[112,186,64,1.0],[112,186,65,1.0],[112,186,66,1.0],[112,186,67,1.0],[112,186,68,1.0],[112,186,69,1.0],[112,186,70,1.0],[112,186,71,1.0],[112,186,72,1.0],[112,186,73,1.0],[112,186,74,1.0],[112,186,75,1.0],[112,186,76,1.0],[112,186,77,1.0],[112,186,78,1.0],[112,186,79,1.0],[112,187,64,1.0],[112,187,65,1.0],[112,187,66,1.0],[112,187,67,1.0],[112,187,68,1.0],[112,187,69,1.0],[112,187,70,1.0],[112,187,71,1.0],[112,187,72,1.0],[112,187,73,1.0],[112,187,74,1.0],[112,187,75,1.0],[112,187,76,1.0],[112,187,77,1.0],[112,187,78,1.0],[112,187,79,1.0],[112,188,64,1.0],[112,188,65,1.0],[112,188,66,1.0],[112,188,67,1.0],[112,188,68,1.0],[112,188,69,1.0],[112,188,70,1.0],[112,188,71,1.0],[112,188,72,1.0],[112,188,73,1.0],[112,188,74,1.0],[112,188,75,1.0],[112,188,76,1.0],[112,188,77,1.0],[112,188,78,1.0],[112,188,79,1.0],[112,189,64,1.0],[112,189,65,1.0],[112,189,66,1.0],[112,189,67,1.0],[112,189,68,1.0],[112,189,69,1.0],[112,189,70,1.0],[112,189,71,1.0],[112,189,72,1.0],[112,189,73,1.0],[112,189,74,1.0],[112,189,75,1.0],[112,189,76,1.0],[112,189,77,1.0],[112,189,78,1.0],[112,189,79,1.0],[112,190,64,1.0],[112,190,65,1.0],[112,190,66,1.0],[112,190,67,1.0],[112,190,68,1.0],[112,190,69,1.0],[112,190,70,1.0],[112,190,71,1.0],[112,190,72,1.0],[112,190,73,1.0],[112,190,74,1.0],[112,190,75,1.0],[112,190,76,1.0],[112,190,77,1.0],[112,190,78,1.0],[112,190,79,1.0],[112,191,64,1.0],[112,191,65,1.0],[112,191,66,1.0],[112,191,67,1.0],[112,191,68,1.0],[112,191,69,1.0],[112,191,70,1.0],[112,191,71,1.0],[112,191,72,1.0],[112,191,73,1.0],[112,191,74,1.0],[112,191,75,1.0],[112,191,76,1.0],[112,191,77,1.0],[112,191,78,1.0],[112,191,79,1.0],[112,192,64,1.0],[112,192,65,1.0],[112,192,66,1.0],[112,192,67,1.0],[112,192,68,1.0],[112,192,69,1.0],[112,192,70,1.0],[112,192,71,1.0],[112,192,72,1.0],[112,192,73,1.0],[112,192,74,1.0],[112,192,75,1.0],[112,192,76,1.0],[112,192,77,1.0],[112,192,78,1.0],[112,192,79,1.0],[112,193,64,1.0],[112,193,65,1.0],[112,193,66,1.0],[112,193,67,1.0],[112,193,68,1.0],[112,193,69,1.0],[112,193,70,1.0],[112,193,71,1.0],[112,193,72,1.0],[112,193,73,1.0],[112,193,74,1.0],[112,193,75,1.0],[112,193,76,1.0],[112,193,77,1.0],[112,193,78,1.0],[112,193,79,1.0],[112,194,64,1.0],[112,194,65,1.0],[112,194,66,1.0],[112,194,67,1.0],[112,194,68,1.0],[112,194,69,1.0],[112,194,70,1.0],[112,194,71,1.0],[112,194,72,1.0],[112,194,73,1.0],[112,194,74,1.0],[112,194,75,1.0],[112,194,76,1.0],[112,194,77,1.0],[112,194,78,1.0],[112,194,79,1.0],[112,195,64,1.0],[112,195,65,1.0],[112,195,66,1.0],[112,195,67,1.0],[112,195,68,1.0],[112,195,69,1.0],[112,195,70,1.0],[112,195,71,1.0],[112,195,72,1.0],[112,195,73,1.0],[112,195,74,1.0],[112,195,75,1.0],[112,195,76,1.0],[112,195,77,1.0],[112,195,78,1.0],[112,195,79,1.0],[112,196,64,1.0],[112,196,65,1.0],[112,196,66,1.0],[112,196,67,1.0],[112,196,68,1.0],[112,196,69,1.0],[112,196,70,1.0],[112,196,71,1.0],[112,196,72,1.0],[112,196,73,1.0],[112,196,74,1.0],[112,196,75,1.0],[112,196,76,1.0],[112,196,77,1.0],[112,196,78,1.0],[112,196,79,1.0],[112,197,64,1.0],[112,197,65,1.0],[112,197,66,1.0],[112,197,67,1.0],[112,197,68,1.0],[112,197,69,1.0],[112,197,70,1.0],[112,197,71,1.0],[112,197,72,1.0],[112,197,73,1.0],[112,197,74,1.0],[112,197,75,1.0],[112,197,76,1.0],[112,197,77,1.0],[112,197,78,1.0],[112,197,79,1.0],[112,198,64,1.0],[112,198,65,1.0],[112,198,66,1.0],[112,198,67,1.0],[112,198,68,1.0],[112,198,69,1.0],[112,198,70,1.0],[112,198,71,1.0],[112,198,72,1.0],[112,198,73,1.0],[112,198,74,1.0],[112,198,75,1.0],[112,198,76,1.0],[112,198,77,1.0],[112,198,78,1.0],[112,198,79,1.0],[112,199,64,1.0],[112,199,65,1.0],[112,199,66,1.0],[112,199,67,1.0],[112,199,68,1.0],[112,199,69,1.0],[112,199,70,1.0],[112,199,71,1.0],[112,199,72,1.0],[112,199,73,1.0],[112,199,74,1.0],[112,199,75,1.0],[112,199,76,1.0],[112,199,77,1.0],[112,199,78,1.0],[112,199,79,1.0],[112,200,64,1.0],[112,200,65,1.0],[112,200,66,1.0],[112,200,67,1.0],[112,200,68,1.0],[112,200,69,1.0],[112,200,70,1.0],[112,200,71,1.0],[112,200,72,1.0],[112,200,73,1.0],[112,200,74,1.0],[112,200,75,1.0],[112,200,76,1.0],[112,200,77,1.0],[112,200,78,1.0],[112,200,79,1.0],[112,201,64,1.0],[112,201,65,1.0],[112,201,66,1.0],[112,201,67,1.0],[112,201,68,1.0],[112,201,69,1.0],[112,201,70,1.0],[112,201,71,1.0],[112,201,72,1.0],[112,201,73,1.0],[112,201,74,1.0],[112,201,75,1.0],[112,201,76,1.0],[112,201,77,1.0],[112,201,78,1.0],[112,201,79,1.0],[112,202,64,1.0],[112,202,65,1.0],[112,202,66,1.0],[112,202,67,1.0],[112,202,68,1.0],[112,202,69,1.0],[112,202,70,1.0],[112,202,71,1.0],[112,202,72,1.0],[112,202,73,1.0],[112,202,74,1.0],[112,202,75,1.0],[112,202,76,1.0],[112,202,77,1.0],[112,202,78,1.0],[112,202,79,1.0],[112,203,64,1.0],[112,203,65,1.0],[112,203,66,1.0],[112,203,67,1.0],[112,203,68,1.0],[112,203,69,1.0],[112,203,70,1.0],[112,203,71,1.0],[112,203,72,1.0],[112,203,73,1.0],[112,203,74,1.0],[112,203,75,1.0],[112,203,76,1.0],[112,203,77,1.0],[112,203,78,1.0],[112,203,79,1.0],[112,204,64,1.0],[112,204,65,1.0],[112,204,66,1.0],[112,204,67,1.0],[112,204,68,1.0],[112,204,69,1.0],[112,204,70,1.0],[112,204,71,1.0],[112,204,72,1.0],[112,204,73,1.0],[112,204,74,1.0],[112,204,75,1.0],[112,204,76,1.0],[112,204,77,1.0],[112,204,78,1.0],[112,204,79,1.0],[112,205,64,1.0],[112,205,65,1.0],[112,205,66,1.0],[112,205,67,1.0],[112,205,68,1.0],[112,205,69,1.0],[112,205,70,1.0],[112,205,71,1.0],[112,205,72,1.0],[112,205,73,1.0],[112,205,74,1.0],[112,205,75,1.0],[112,205,76,1.0],[112,205,77,1.0],[112,205,78,1.0],[112,205,79,1.0],[112,206,64,1.0],[112,206,65,1.0],[112,206,66,1.0],[112,206,67,1.0],[112,206,68,1.0],[112,206,69,1.0],[112,206,70,1.0],[112,206,71,1.0],[112,206,72,1.0],[112,206,73,1.0],[112,206,74,1.0],[112,206,75,1.0],[112,206,76,1.0],[112,206,77,1.0],[112,206,78,1.0],[112,206,79,1.0],[112,207,64,1.0],[112,207,65,1.0],[112,207,66,1.0],[112,207,67,1.0],[112,207,68,1.0],[112,207,69,1.0],[112,207,70,1.0],[112,207,71,1.0],[112,207,72,1.0],[112,207,73,1.0],[112,207,74,1.0],[112,207,75,1.0],[112,207,76,1.0],[112,207,77,1.0],[112,207,78,1.0],[112,207,79,1.0],[112,208,64,1.0],[112,208,65,1.0],[112,208,66,1.0],[112,208,67,1.0],[112,208,68,1.0],[112,208,69,1.0],[112,208,70,1.0],[112,208,71,1.0],[112,208,72,1.0],[112,208,73,1.0],[112,208,74,1.0],[112,208,75,1.0],[112,208,76,1.0],[112,208,77,1.0],[112,208,78,1.0],[112,208,79,1.0],[112,209,64,1.0],[112,209,65,1.0],[112,209,66,1.0],[112,209,67,1.0],[112,209,68,1.0],[112,209,69,1.0],[112,209,70,1.0],[112,209,71,1.0],[112,209,72,1.0],[112,209,73,1.0],[112,209,74,1.0],[112,209,75,1.0],[112,209,76,1.0],[112,209,77,1.0],[112,209,78,1.0],[112,209,79,1.0],[112,210,64,1.0],[112,210,65,1.0],[112,210,66,1.0],[112,210,67,1.0],[112,210,68,1.0],[112,210,69,1.0],[112,210,70,1.0],[112,210,71,1.0],[112,210,72,1.0],[112,210,73,1.0],[112,210,74,1.0],[112,210,75,1.0],[112,210,76,1.0],[112,210,77,1.0],[112,210,78,1.0],[112,210,79,1.0],[112,211,64,1.0],[112,211,65,1.0],[112,211,66,1.0],[112,211,67,1.0],[112,211,68,1.0],[112,211,69,1.0],[112,211,70,1.0],[112,211,71,1.0],[112,211,72,1.0],[112,211,73,1.0],[112,211,74,1.0],[112,211,75,1.0],[112,211,76,1.0],[112,211,77,1.0],[112,211,78,1.0],[112,211,79,1.0],[112,212,64,1.0],[112,212,65,1.0],[112,212,66,1.0],[112,212,67,1.0],[112,212,68,1.0],[112,212,69,1.0],[112,212,70,1.0],[112,212,71,1.0],[112,212,72,1.0],[112,212,73,1.0],[112,212,74,1.0],[112,212,75,1.0],[112,212,76,1.0],[112,212,77,1.0],[112,212,78,1.0],[112,212,79,1.0],[112,213,64,1.0],[112,213,65,1.0],[112,213,66,1.0],[112,213,67,1.0],[112,213,68,1.0],[112,213,69,1.0],[112,213,70,1.0],[112,213,71,1.0],[112,213,72,1.0],[112,213,73,1.0],[112,213,74,1.0],[112,213,75,1.0],[112,213,76,1.0],[112,213,77,1.0],[112,213,78,1.0],[112,213,79,1.0],[112,214,64,1.0],[112,214,65,1.0],[112,214,66,1.0],[112,214,67,1.0],[112,214,68,1.0],[112,214,69,1.0],[112,214,70,1.0],[112,214,71,1.0],[112,214,72,1.0],[112,214,73,1.0],[112,214,74,1.0],[112,214,75,1.0],[112,214,76,1.0],[112,214,77,1.0],[112,214,78,1.0],[112,214,79,1.0],[112,215,64,1.0],[112,215,65,1.0],[112,215,66,1.0],[112,215,67,1.0],[112,215,68,1.0],[112,215,69,1.0],[112,215,70,1.0],[112,215,71,1.0],[112,215,72,1.0],[112,215,73,1.0],[112,215,74,1.0],[112,215,75,1.0],[112,215,76,1.0],[112,215,77,1.0],[112,215,78,1.0],[112,215,79,1.0],[112,216,64,1.0],[112,216,65,1.0],[112,216,66,1.0],[112,216,67,1.0],[112,216,68,1.0],[112,216,69,1.0],[112,216,70,1.0],[112,216,71,1.0],[112,216,72,1.0],[112,216,73,1.0],[112,216,74,1.0],[112,216,75,1.0],[112,216,76,1.0],[112,216,77,1.0],[112,216,78,1.0],[112,216,79,1.0],[112,217,64,1.0],[112,217,65,1.0],[112,217,66,1.0],[112,217,67,1.0],[112,217,68,1.0],[112,217,69,1.0],[112,217,70,1.0],[112,217,71,1.0],[112,217,72,1.0],[112,217,73,1.0],[112,217,74,1.0],[112,217,75,1.0],[112,217,76,1.0],[112,217,77,1.0],[112,217,78,1.0],[112,217,79,1.0],[112,218,64,1.0],[112,218,65,1.0],[112,218,66,1.0],[112,218,67,1.0],[112,218,68,1.0],[112,218,69,1.0],[112,218,70,1.0],[112,218,71,1.0],[112,218,72,1.0],[112,218,73,1.0],[112,218,74,1.0],[112,218,75,1.0],[112,218,76,1.0],[112,218,77,1.0],[112,218,78,1.0],[112,218,79,1.0],[112,219,64,1.0],[112,219,65,1.0],[112,219,66,1.0],[112,219,67,1.0],[112,219,68,1.0],[112,219,69,1.0],[112,219,70,1.0],[112,219,71,1.0],[112,219,72,1.0],[112,219,73,1.0],[112,219,74,1.0],[112,219,75,1.0],[112,219,76,1.0],[112,219,77,1.0],[112,219,78,1.0],[112,219,79,1.0],[112,220,64,1.0],[112,220,65,1.0],[112,220,66,1.0],[112,220,67,1.0],[112,220,68,1.0],[112,220,69,1.0],[112,220,70,1.0],[112,220,71,1.0],[112,220,72,1.0],[112,220,73,1.0],[112,220,74,1.0],[112,220,75,1.0],[112,220,76,1.0],[112,220,77,1.0],[112,220,78,1.0],[112,220,79,1.0],[112,221,64,1.0],[112,221,65,1.0],[112,221,66,1.0],[112,221,67,1.0],[112,221,68,1.0],[112,221,69,1.0],[112,221,70,1.0],[112,221,71,1.0],[112,221,72,1.0],[112,221,73,1.0],[112,221,74,1.0],[112,221,75,1.0],[112,221,76,1.0],[112,221,77,1.0],[112,221,78,1.0],[112,221,79,1.0],[112,222,64,1.0],[112,222,65,1.0],[112,222,66,1.0],[112,222,67,1.0],[112,222,68,1.0],[112,222,69,1.0],[112,222,70,1.0],[112,222,71,1.0],[112,222,72,1.0],[112,222,73,1.0],[112,222,74,1.0],[112,222,75,1.0],[112,222,76,1.0],[112,222,77,1.0],[112,222,78,1.0],[112,222,79,1.0],[112,223,64,1.0],[112,223,65,1.0],[112,223,66,1.0],[112,223,67,1.0],[112,223,68,1.0],[112,223,69,1.0],[112,223,70,1.0],[112,223,71,1.0],[112,223,72,1.0],[112,223,73,1.0],[112,223,74,1.0],[112,223,75,1.0],[112,223,76,1.0],[112,223,77,1.0],[112,223,78,1.0],[112,223,79,1.0],[112,224,64,1.0],[112,224,65,1.0],[112,224,66,1.0],[112,224,67,1.0],[112,224,68,1.0],[112,224,69,1.0],[112,224,70,1.0],[112,224,71,1.0],[112,224,72,1.0],[112,224,73,1.0],[112,224,74,1.0],[112,224,75,1.0],[112,224,76,1.0],[112,224,77,1.0],[112,224,78,1.0],[112,224,79,1.0],[112,225,64,1.0],[112,225,65,1.0],[112,225,66,1.0],[112,225,67,1.0],[112,225,68,1.0],[112,225,69,1.0],[112,225,70,1.0],[112,225,71,1.0],[112,225,72,1.0],[112,225,73,1.0],[112,225,74,1.0],[112,225,75,1.0],[112,225,76,1.0],[112,225,77,1.0],[112,225,78,1.0],[112,225,79,1.0],[112,226,64,1.0],[112,226,65,1.0],[112,226,66,1.0],[112,226,67,1.0],[112,226,68,1.0],[112,226,69,1.0],[112,226,70,1.0],[112,226,71,1.0],[112,226,72,1.0],[112,226,73,1.0],[112,226,74,1.0],[112,226,75,1.0],[112,226,76,1.0],[112,226,77,1.0],[112,226,78,1.0],[112,226,79,1.0],[112,227,64,1.0],[112,227,65,1.0],[112,227,66,1.0],[112,227,67,1.0],[112,227,68,1.0],[112,227,69,1.0],[112,227,70,1.0],[112,227,71,1.0],[112,227,72,1.0],[112,227,73,1.0],[112,227,74,1.0],[112,227,75,1.0],[112,227,76,1.0],[112,227,77,1.0],[112,227,78,1.0],[112,227,79,1.0],[112,228,64,1.0],[112,228,65,1.0],[112,228,66,1.0],[112,228,67,1.0],[112,228,68,1.0],[112,228,69,1.0],[112,228,70,1.0],[112,228,71,1.0],[112,228,72,1.0],[112,228,73,1.0],[112,228,74,1.0],[112,228,75,1.0],[112,228,76,1.0],[112,228,77,1.0],[112,228,78,1.0],[112,228,79,1.0],[112,229,64,1.0],[112,229,65,1.0],[112,229,66,1.0],[112,229,67,1.0],[112,229,68,1.0],[112,229,69,1.0],[112,229,70,1.0],[112,229,71,1.0],[112,229,72,1.0],[112,229,73,1.0],[112,229,74,1.0],[112,229,75,1.0],[112,229,76,1.0],[112,229,77,1.0],[112,229,78,1.0],[112,229,79,1.0],[112,230,64,1.0],[112,230,65,1.0],[112,230,66,1.0],[112,230,67,1.0],[112,230,68,1.0],[112,230,69,1.0],[112,230,70,1.0],[112,230,71,1.0],[112,230,72,1.0],[112,230,73,1.0],[112,230,74,1.0],[112,230,75,1.0],[112,230,76,1.0],[112,230,77,1.0],[112,230,78,1.0],[112,230,79,1.0],[112,231,64,1.0],[112,231,65,1.0],[112,231,66,1.0],[112,231,67,1.0],[112,231,68,1.0],[112,231,69,1.0],[112,231,70,1.0],[112,231,71,1.0],[112,231,72,1.0],[112,231,73,1.0],[112,231,74,1.0],[112,231,75,1.0],[112,231,76,1.0],[112,231,77,1.0],[112,231,78,1.0],[112,231,79,1.0],[112,232,64,1.0],[112,232,65,1.0],[112,232,66,1.0],[112,232,67,1.0],[112,232,68,1.0],[112,232,69,1.0],[112,232,70,1.0],[112,232,71,1.0],[112,232,72,1.0],[112,232,73,1.0],[112,232,74,1.0],[112,232,75,1.0],[112,232,76,1.0],[112,232,77,1.0],[112,232,78,1.0],[112,232,79,1.0],[112,233,64,1.0],[112,233,65,1.0],[112,233,66,1.0],[112,233,67,1.0],[112,233,68,1.0],[112,233,69,1.0],[112,233,70,1.0],[112,233,71,1.0],[112,233,72,1.0],[112,233,73,1.0],[112,233,74,1.0],[112,233,75,1.0],[112,233,76,1.0],[112,233,77,1.0],[112,233,78,1.0],[112,233,79,1.0],[112,234,64,1.0],[112,234,65,1.0],[112,234,66,1.0],[112,234,67,1.0],[112,234,68,1.0],[112,234,69,1.0],[112,234,70,1.0],[112,234,71,1.0],[112,234,72,1.0],[112,234,73,1.0],[112,234,74,1.0],[112,234,75,1.0],[112,234,76,1.0],[112,234,77,1.0],[112,234,78,1.0],[112,234,79,1.0],[112,235,64,1.0],[112,235,65,1.0],[112,235,66,1.0],[112,235,67,1.0],[112,235,68,1.0],[112,235,69,1.0],[112,235,70,1.0],[112,235,71,1.0],[112,235,72,1.0],[112,235,73,1.0],[112,235,74,1.0],[112,235,75,1.0],[112,235,76,1.0],[112,235,77,1.0],[112,235,78,1.0],[112,235,79,1.0],[112,236,64,1.0],[112,236,65,1.0],[112,236,66,1.0],[112,236,67,1.0],[112,236,68,1.0],[112,236,69,1.0],[112,236,70,1.0],[112,236,71,1.0],[112,236,72,1.0],[112,236,73,1.0],[112,236,74,1.0],[112,236,75,1.0],[112,236,76,1.0],[112,236,77,1.0],[112,236,78,1.0],[112,236,79,1.0],[112,237,64,1.0],[112,237,65,1.0],[112,237,66,1.0],[112,237,67,1.0],[112,237,68,1.0],[112,237,69,1.0],[112,237,70,1.0],[112,237,71,1.0],[112,237,72,1.0],[112,237,73,1.0],[112,237,74,1.0],[112,237,75,1.0],[112,237,76,1.0],[112,237,77,1.0],[112,237,78,1.0],[112,237,79,1.0],[112,238,64,1.0],[112,238,65,1.0],[112,238,66,1.0],[112,238,67,1.0],[112,238,68,1.0],[112,238,69,1.0],[112,238,70,1.0],[112,238,71,1.0],[112,238,72,1.0],[112,238,73,1.0],[112,238,74,1.0],[112,238,75,1.0],[112,238,76,1.0],[112,238,77,1.0],[112,238,78,1.0],[112,238,79,1.0],[112,239,64,1.0],[112,239,65,1.0],[112,239,66,1.0],[112,239,67,1.0],[112,239,68,1.0],[112,239,69,1.0],[112,239,70,1.0],[112,239,71,1.0],[112,239,72,1.0],[112,239,73,1.0],[112,239,74,1.0],[112,239,75,1.0],[112,239,76,1.0],[112,239,77,1.0],[112,239,78,1.0],[112,239,79,1.0],[112,240,64,1.0],[112,240,65,1.0],[112,240,66,1.0],[112,240,67,1.0],[112,240,68,1.0],[112,240,69,1.0],[112,240,70,1.0],[112,240,71,1.0],[112,240,72,1.0],[112,240,73,1.0],[112,240,74,1.0],[112,240,75,1.0],[112,240,76,1.0],[112,240,77,1.0],[112,240,78,1.0],[112,240,79,1.0],[112,241,64,1.0],[112,241,65,1.0],[112,241,66,1.0],[112,241,67,1.0],[112,241,68,1.0],[112,241,69,1.0],[112,241,70,1.0],[112,241,71,1.0],[112,241,72,1.0],[112,241,73,1.0],[112,241,74,1.0],[112,241,75,1.0],[112,241,76,1.0],[112,241,77,1.0],[112,241,78,1.0],[112,241,79,1.0],[112,242,64,1.0],[112,242,65,1.0],[112,242,66,1.0],[112,242,67,1.0],[112,242,68,1.0],[112,242,69,1.0],[112,242,70,1.0],[112,242,71,1.0],[112,242,72,1.0],[112,242,73,1.0],[112,242,74,1.0],[112,242,75,1.0],[112,242,76,1.0],[112,242,77,1.0],[112,242,78,1.0],[112,242,79,1.0],[112,243,64,1.0],[112,243,65,1.0],[112,243,66,1.0],[112,243,67,1.0],[112,243,68,1.0],[112,243,69,1.0],[112,243,70,1.0],[112,243,71,1.0],[112,243,72,1.0],[112,243,73,1.0],[112,243,74,1.0],[112,243,75,1.0],[112,243,76,1.0],[112,243,77,1.0],[112,243,78,1.0],[112,243,79,1.0],[112,244,64,1.0],[112,244,65,1.0],[112,244,66,1.0],[112,244,67,1.0],[112,244,68,1.0],[112,244,69,1.0],[112,244,70,1.0],[112,244,71,1.0],[112,244,72,1.0],[112,244,73,1.0],[112,244,74,1.0],[112,244,75,1.0],[112,244,76,1.0],[112,244,77,1.0],[112,244,78,1.0],[112,244,79,1.0],[112,245,64,1.0],[112,245,65,1.0],[112,245,66,1.0],[112,245,67,1.0],[112,245,68,1.0],[112,245,69,1.0],[112,245,70,1.0],[112,245,71,1.0],[112,245,72,1.0],[112,245,73,1.0],[112,245,74,1.0],[112,245,75,1.0],[112,245,76,1.0],[112,245,77,1.0],[112,245,78,1.0],[112,245,79,1.0],[112,246,64,1.0],[112,246,65,1.0],[112,246,66,1.0],[112,246,67,1.0],[112,246,68,1.0],[112,246,69,1.0],[112,246,70,1.0],[112,246,71,1.0],[112,246,72,1.0],[112,246,73,1.0],[112,246,74,1.0],[112,246,75,1.0],[112,246,76,1.0],[112,246,77,1.0],[112,246,78,1.0],[112,246,79,1.0],[112,247,64,1.0],[112,247,65,1.0],[112,247,66,1.0],[112,247,67,1.0],[112,247,68,1.0],[112,247,69,1.0],[112,247,70,1.0],[112,247,71,1.0],[112,247,72,1.0],[112,247,73,1.0],[112,247,74,1.0],[112,247,75,1.0],[112,247,76,1.0],[112,247,77,1.0],[112,247,78,1.0],[112,247,79,1.0],[112,248,64,1.0],[112,248,65,1.0],[112,248,66,1.0],[112,248,67,1.0],[112,248,68,1.0],[112,248,69,1.0],[112,248,70,1.0],[112,248,71,1.0],[112,248,72,1.0],[112,248,73,1.0],[112,248,74,1.0],[112,248,75,1.0],[112,248,76,1.0],[112,248,77,1.0],[112,248,78,1.0],[112,248,79,1.0],[112,249,64,1.0],[112,249,65,1.0],[112,249,66,1.0],[112,249,67,1.0],[112,249,68,1.0],[112,249,69,1.0],[112,249,70,1.0],[112,249,71,1.0],[112,249,72,1.0],[112,249,73,1.0],[112,249,74,1.0],[112,249,75,1.0],[112,249,76,1.0],[112,249,77,1.0],[112,249,78,1.0],[112,249,79,1.0],[112,250,64,1.0],[112,250,65,1.0],[112,250,66,1.0],[112,250,67,1.0],[112,250,68,1.0],[112,250,69,1.0],[112,250,70,1.0],[112,250,71,1.0],[112,250,72,1.0],[112,250,73,1.0],[112,250,74,1.0],[112,250,75,1.0],[112,250,76,1.0],[112,250,77,1.0],[112,250,78,1.0],[112,250,79,1.0],[112,251,64,1.0],[112,251,65,1.0],[112,251,66,1.0],[112,251,67,1.0],[112,251,68,1.0],[112,251,69,1.0],[112,251,70,1.0],[112,251,71,1.0],[112,251,72,1.0],[112,251,73,1.0],[112,251,74,1.0],[112,251,75,1.0],[112,251,76,1.0],[112,251,77,1.0],[112,251,78,1.0],[112,251,79,1.0],[112,252,64,1.0],[112,252,65,1.0],[112,252,66,1.0],[112,252,67,1.0],[112,252,68,1.0],[112,252,69,1.0],[112,252,70,1.0],[112,252,71,1.0],[112,252,72,1.0],[112,252,73,1.0],[112,252,74,1.0],[112,252,75,1.0],[112,252,76,1.0],[112,252,77,1.0],[112,252,78,1.0],[112,252,79,1.0],[112,253,64,1.0],[112,253,65,1.0],[112,253,66,1.0],[112,253,67,1.0],[112,253,68,1.0],[112,253,69,1.0],[112,253,70,1.0],[112,253,71,1.0],[112,253,72,1.0],[112,253,73,1.0],[112,253,74,1.0],[112,253,75,1.0],[112,253,76,1.0],[112,253,77,1.0],[112,253,78,1.0],[112,253,79,1.0],[112,254,64,1.0],[112,254,65,1.0],[112,254,66,1.0],[112,254,67,1.0],[112,254,68,1.0],[112,254,69,1.0],[112,254,70,1.0],[112,254,71,1.0],[112,254,72,1.0],[112,254,73,1.0],[112,254,74,1.0],[112,254,75,1.0],[112,254,76,1.0],[112,254,77,1.0],[112,254,78,1.0],[112,254,79,1.0],[112,255,64,1.0],[112,255,65,1.0],[112,255,66,1.0],[112,255,67,1.0],[112,255,68,1.0],[112,255,69,1.0],[112,255,70,1.0],[112,255,71,1.0],[112,255,72,1.0],[112,255,73,1.0],[112,255,74,1.0],[112,255,75,1.0],[112,255,76,1.0],[112,255,77,1.0],[112,255,78,1.0],[112,255,79,1.0],[112,256,64,1.0],[112,256,65,1.0],[112,256,66,1.0],[112,256,67,1.0],[112,256,68,1.0],[112,256,69,1.0],[112,256,70,1.0],[112,256,71,1.0],[112,256,72,1.0],[112,256,73,1.0],[112,256,74,1.0],[112,256,75,1.0],[112,256,76,1.0],[112,256,77,1.0],[112,256,78,1.0],[112,256,79,1.0],[112,257,64,1.0],[112,257,65,1.0],[112,257,66,1.0],[112,257,67,1.0],[112,257,68,1.0],[112,257,69,1.0],[112,257,70,1.0],[112,257,71,1.0],[112,257,72,1.0],[112,257,73,1.0],[112,257,74,1.0],[112,257,75,1.0],[112,257,76,1.0],[112,257,77,1.0],[112,257,78,1.0],[112,257,79,1.0],[112,258,64,1.0],[112,258,65,1.0],[112,258,66,1.0],[112,258,67,1.0],[112,258,68,1.0],[112,258,69,1.0],[112,258,70,1.0],[112,258,71,1.0],[112,258,72,1.0],[112,258,73,1.0],[112,258,74,1.0],[112,258,75,1.0],[112,258,76,1.0],[112,258,77,1.0],[112,258,78,1.0],[112,258,79,1.0],[112,259,64,1.0],[112,259,65,1.0],[112,259,66,1.0],[112,259,67,1.0],[112,259,68,1.0],[112,259,69,1.0],[112,259,70,1.0],[112,259,71,1.0],[112,259,72,1.0],[112,259,73,1.0],[112,259,74,1.0],[112,259,75,1.0],[112,259,76,1.0],[112,259,77,1.0],[112,259,78,1.0],[112,259,79,1.0],[112,260,64,1.0],[112,260,65,1.0],[112,260,66,1.0],[112,260,67,1.0],[112,260,68,1.0],[112,260,69,1.0],[112,260,70,1.0],[112,260,71,1.0],[112,260,72,1.0],[112,260,73,1.0],[112,260,74,1.0],[112,260,75,1.0],[112,260,76,1.0],[112,260,77,1.0],[112,260,78,1.0],[112,260,79,1.0],[112,261,64,1.0],[112,261,65,1.0],[112,261,66,1.0],[112,261,67,1.0],[112,261,68,1.0],[112,261,69,1.0],[112,261,70,1.0],[112,261,71,1.0],[112,261,72,1.0],[112,261,73,1.0],[112,261,74,1.0],[112,261,75,1.0],[112,261,76,1.0],[112,261,77,1.0],[112,261,78,1.0],[112,261,79,1.0],[112,262,64,1.0],[112,262,65,1.0],[112,262,66,1.0],[112,262,67,1.0],[112,262,68,1.0],[112,262,69,1.0],[112,262,70,1.0],[112,262,71,1.0],[112,262,72,1.0],[112,262,73,1.0],[112,262,74,1.0],[112,262,75,1.0],[112,262,76,1.0],[112,262,77,1.0],[112,262,78,1.0],[112,262,79,1.0],[112,263,64,1.0],[112,263,65,1.0],[112,263,66,1.0],[112,263,67,1.0],[112,263,68,1.0],[112,263,69,1.0],[112,263,70,1.0],[112,263,71,1.0],[112,263,72,1.0],[112,263,73,1.0],[112,263,74,1.0],[112,263,75,1.0],[112,263,76,1.0],[112,263,77,1.0],[112,263,78,1.0],[112,263,79,1.0],[112,264,64,1.0],[112,264,65,1.0],[112,264,66,1.0],[112,264,67,1.0],[112,264,68,1.0],[112,264,69,1.0],[112,264,70,1.0],[112,264,71,1.0],[112,264,72,1.0],[112,264,73,1.0],[112,264,74,1.0],[112,264,75,1.0],[112,264,76,1.0],[112,264,77,1.0],[112,264,78,1.0],[112,264,79,1.0],[112,265,64,1.0],[112,265,65,1.0],[112,265,66,1.0],[112,265,67,1.0],[112,265,68,1.0],[112,265,69,1.0],[112,265,70,1.0],[112,265,71,1.0],[112,265,72,1.0],[112,265,73,1.0],[112,265,74,1.0],[112,265,75,1.0],[112,265,76,1.0],[112,265,77,1.0],[112,265,78,1.0],[112,265,79,1.0],[112,266,64,1.0],[112,266,65,1.0],[112,266,66,1.0],[112,266,67,1.0],[112,266,68,1.0],[112,266,69,1.0],[112,266,70,1.0],[112,266,71,1.0],[112,266,72,1.0],[112,266,73,1.0],[112,266,74,1.0],[112,266,75,1.0],[112,266,76,1.0],[112,266,77,1.0],[112,266,78,1.0],[112,266,79,1.0],[112,267,64,1.0],[112,267,65,1.0],[112,267,66,1.0],[112,267,67,1.0],[112,267,68,1.0],[112,267,69,1.0],[112,267,70,1.0],[112,267,71,1.0],[112,267,72,1.0],[112,267,73,1.0],[112,267,74,1.0],[112,267,75,1.0],[112,267,76,1.0],[112,267,77,1.0],[112,267,78,1.0],[112,267,79,1.0],[112,268,64,1.0],[112,268,65,1.0],[112,268,66,1.0],[112,268,67,1.0],[112,268,68,1.0],[112,268,69,1.0],[112,268,70,1.0],[112,268,71,1.0],[112,268,72,1.0],[112,268,73,1.0],[112,268,74,1.0],[112,268,75,1.0],[112,268,76,1.0],[112,268,77,1.0],[112,268,78,1.0],[112,268,79,1.0],[112,269,64,1.0],[112,269,65,1.0],[112,269,66,1.0],[112,269,67,1.0],[112,269,68,1.0],[112,269,69,1.0],[112,269,70,1.0],[112,269,71,1.0],[112,269,72,1.0],[112,269,73,1.0],[112,269,74,1.0],[112,269,75,1.0],[112,269,76,1.0],[112,269,77,1.0],[112,269,78,1.0],[112,269,79,1.0],[112,270,64,1.0],[112,270,65,1.0],[112,270,66,1.0],[112,270,67,1.0],[112,270,68,1.0],[112,270,69,1.0],[112,270,70,1.0],[112,270,71,1.0],[112,270,72,1.0],[112,270,73,1.0],[112,270,74,1.0],[112,270,75,1.0],[112,270,76,1.0],[112,270,77,1.0],[112,270,78,1.0],[112,270,79,1.0],[112,271,64,1.0],[112,271,65,1.0],[112,271,66,1.0],[112,271,67,1.0],[112,271,68,1.0],[112,271,69,1.0],[112,271,70,1.0],[112,271,71,1.0],[112,271,72,1.0],[112,271,73,1.0],[112,271,74,1.0],[112,271,75,1.0],[112,271,76,1.0],[112,271,77,1.0],[112,271,78,1.0],[112,271,79,1.0],[112,272,64,1.0],[112,272,65,1.0],[112,272,66,1.0],[112,272,67,1.0],[112,272,68,1.0],[112,272,69,1.0],[112,272,70,1.0],[112,272,71,1.0],[112,272,72,1.0],[112,272,73,1.0],[112,272,74,1.0],[112,272,75,1.0],[112,272,76,1.0],[112,272,77,1.0],[112,272,78,1.0],[112,272,79,1.0],[112,273,64,1.0],[112,273,65,1.0],[112,273,66,1.0],[112,273,67,1.0],[112,273,68,1.0],[112,273,69,1.0],[112,273,70,1.0],[112,273,71,1.0],[112,273,72,1.0],[112,273,73,1.0],[112,273,74,1.0],[112,273,75,1.0],[112,273,76,1.0],[112,273,77,1.0],[112,273,78,1.0],[112,273,79,1.0],[112,274,64,1.0],[112,274,65,1.0],[112,274,66,1.0],[112,274,67,1.0],[112,274,68,1.0],[112,274,69,1.0],[112,274,70,1.0],[112,274,71,1.0],[112,274,72,1.0],[112,274,73,1.0],[112,274,74,1.0],[112,274,75,1.0],[112,274,76,1.0],[112,274,77,1.0],[112,274,78,1.0],[112,274,79,1.0],[112,275,64,1.0],[112,275,65,1.0],[112,275,66,1.0],[112,275,67,1.0],[112,275,68,1.0],[112,275,69,1.0],[112,275,70,1.0],[112,275,71,1.0],[112,275,72,1.0],[112,275,73,1.0],[112,275,74,1.0],[112,275,75,1.0],[112,275,76,1.0],[112,275,77,1.0],[112,275,78,1.0],[112,275,79,1.0],[112,276,64,1.0],[112,276,65,1.0],[112,276,66,1.0],[112,276,67,1.0],[112,276,68,1.0],[112,276,69,1.0],[112,276,70,1.0],[112,276,71,1.0],[112,276,72,1.0],[112,276,73,1.0],[112,276,74,1.0],[112,276,75,1.0],[112,276,76,1.0],[112,276,77,1.0],[112,276,78,1.0],[112,276,79,1.0],[112,277,64,1.0],[112,277,65,1.0],[112,277,66,1.0],[112,277,67,1.0],[112,277,68,1.0],[112,277,69,1.0],[112,277,70,1.0],[112,277,71,1.0],[112,277,72,1.0],[112,277,73,1.0],[112,277,74,1.0],[112,277,75,1.0],[112,277,76,1.0],[112,277,77,1.0],[112,277,78,1.0],[112,277,79,1.0],[112,278,64,1.0],[112,278,65,1.0],[112,278,66,1.0],[112,278,67,1.0],[112,278,68,1.0],[112,278,69,1.0],[112,278,70,1.0],[112,278,71,1.0],[112,278,72,1.0],[112,278,73,1.0],[112,278,74,1.0],[112,278,75,1.0],[112,278,76,1.0],[112,278,77,1.0],[112,278,78,1.0],[112,278,79,1.0],[112,279,64,1.0],[112,279,65,1.0],[112,279,66,1.0],[112,279,67,1.0],[112,279,68,1.0],[112,279,69,1.0],[112,279,70,1.0],[112,279,71,1.0],[112,279,72,1.0],[112,279,73,1.0],[112,279,74,1.0],[112,279,75,1.0],[112,279,76,1.0],[112,279,77,1.0],[112,279,78,1.0],[112,279,79,1.0],[112,280,64,1.0],[112,280,65,1.0],[112,280,66,1.0],[112,280,67,1.0],[112,280,68,1.0],[112,280,69,1.0],[112,280,70,1.0],[112,280,71,1.0],[112,280,72,1.0],[112,280,73,1.0],[112,280,74,1.0],[112,280,75,1.0],[112,280,76,1.0],[112,280,77,1.0],[112,280,78,1.0],[112,280,79,1.0],[112,281,64,1.0],[112,281,65,1.0],[112,281,66,1.0],[112,281,67,1.0],[112,281,68,1.0],[112,281,69,1.0],[112,281,70,1.0],[112,281,71,1.0],[112,281,72,1.0],[112,281,73,1.0],[112,281,74,1.0],[112,281,75,1.0],[112,281,76,1.0],[112,281,77,1.0],[112,281,78,1.0],[112,281,79,1.0],[112,282,64,1.0],[112,282,65,1.0],[112,282,66,1.0],[112,282,67,1.0],[112,282,68,1.0],[112,282,69,1.0],[112,282,70,1.0],[112,282,71,1.0],[112,282,72,1.0],[112,282,73,1.0],[112,282,74,1.0],[112,282,75,1.0],[112,282,76,1.0],[112,282,77,1.0],[112,282,78,1.0],[112,282,79,1.0],[112,283,64,1.0],[112,283,65,1.0],[112,283,66,1.0],[112,283,67,1.0],[112,283,68,1.0],[112,283,69,1.0],[112,283,70,1.0],[112,283,71,1.0],[112,283,72,1.0],[112,283,73,1.0],[112,283,74,1.0],[112,283,75,1.0],[112,283,76,1.0],[112,283,77,1.0],[112,283,78,1.0],[112,283,79,1.0],[112,284,64,1.0],[112,284,65,1.0],[112,284,66,1.0],[112,284,67,1.0],[112,284,68,1.0],[112,284,69,1.0],[112,284,70,1.0],[112,284,71,1.0],[112,284,72,1.0],[112,284,73,1.0],[112,284,74,1.0],[112,284,75,1.0],[112,284,76,1.0],[112,284,77,1.0],[112,284,78,1.0],[112,284,79,1.0],[112,285,64,1.0],[112,285,65,1.0],[112,285,66,1.0],[112,285,67,1.0],[112,285,68,1.0],[112,285,69,1.0],[112,285,70,1.0],[112,285,71,1.0],[112,285,72,1.0],[112,285,73,1.0],[112,285,74,1.0],[112,285,75,1.0],[112,285,76,1.0],[112,285,77,1.0],[112,285,78,1.0],[112,285,79,1.0],[112,286,64,1.0],[112,286,65,1.0],[112,286,66,1.0],[112,286,67,1.0],[112,286,68,1.0],[112,286,69,1.0],[112,286,70,1.0],[112,286,71,1.0],[112,286,72,1.0],[112,286,73,1.0],[112,286,74,1.0],[112,286,75,1.0],[112,286,76,1.0],[112,286,77,1.0],[112,286,78,1.0],[112,286,79,1.0],[112,287,64,1.0],[112,287,65,1.0],[112,287,66,1.0],[112,287,67,1.0],[112,287,68,1.0],[112,287,69,1.0],[112,287,70,1.0],[112,287,71,1.0],[112,287,72,1.0],[112,287,73,1.0],[112,287,74,1.0],[112,287,75,1.0],[112,287,76,1.0],[112,287,77,1.0],[112,287,78,1.0],[112,287,79,1.0],[112,288,64,1.0],[112,288,65,1.0],[112,288,66,1.0],[112,288,67,1.0],[112,288,68,1.0],[112,288,69,1.0],[112,288,70,1.0],[112,288,71,1.0],[112,288,72,1.0],[112,288,73,1.0],[112,288,74,1.0],[112,288,75,1.0],[112,288,76,1.0],[112,288,77,1.0],[112,288,78,1.0],[112,288,79,1.0],[112,289,64,1.0],[112,289,65,1.0],[112,289,66,1.0],[112,289,67,1.0],[112,289,68,1.0],[112,289,69,1.0],[112,289,70,1.0],[112,289,71,1.0],[112,289,72,1.0],[112,289,73,1.0],[112,289,74,1.0],[112,289,75,1.0],[112,289,76,1.0],[112,289,77,1.0],[112,289,78,1.0],[112,289,79,1.0],[112,290,64,1.0],[112,290,65,1.0],[112,290,66,1.0],[112,290,67,1.0],[112,290,68,1.0],[112,290,69,1.0],[112,290,70,1.0],[112,290,71,1.0],[112,290,72,1.0],[112,290,73,1.0],[112,290,74,1.0],[112,290,75,1.0],[112,290,76,1.0],[112,290,77,1.0],[112,290,78,1.0],[112,290,79,1.0],[112,291,64,1.0],[112,291,65,1.0],[112,291,66,1.0],[112,291,67,1.0],[112,291,68,1.0],[112,291,69,1.0],[112,291,70,1.0],[112,291,71,1.0],[112,291,72,1.0],[112,291,73,1.0],[112,291,74,1.0],[112,291,75,1.0],[112,291,76,1.0],[112,291,77,1.0],[112,291,78,1.0],[112,291,79,1.0],[112,292,64,1.0],[112,292,65,1.0],[112,292,66,1.0],[112,292,67,1.0],[112,292,68,1.0],[112,292,69,1.0],[112,292,70,1.0],[112,292,71,1.0],[112,292,72,1.0],[112,292,73,1.0],[112,292,74,1.0],[112,292,75,1.0],[112,292,76,1.0],[112,292,77,1.0],[112,292,78,1.0],[112,292,79,1.0],[112,293,64,1.0],[112,293,65,1.0],[112,293,66,1.0],[112,293,67,1.0],[112,293,68,1.0],[112,293,69,1.0],[112,293,70,1.0],[112,293,71,1.0],[112,293,72,1.0],[112,293,73,1.0],[112,293,74,1.0],[112,293,75,1.0],[112,293,76,1.0],[112,293,77,1.0],[112,293,78,1.0],[112,293,79,1.0],[112,294,64,1.0],[112,294,65,1.0],[112,294,66,1.0],[112,294,67,1.0],[112,294,68,1.0],[112,294,69,1.0],[112,294,70,1.0],[112,294,71,1.0],[112,294,72,1.0],[112,294,73,1.0],[112,294,74,1.0],[112,294,75,1.0],[112,294,76,1.0],[112,294,77,1.0],[112,294,78,1.0],[112,294,79,1.0],[112,295,64,1.0],[112,295,65,1.0],[112,295,66,1.0],[112,295,67,1.0],[112,295,68,1.0],[112,295,69,1.0],[112,295,70,1.0],[112,295,71,1.0],[112,295,72,1.0],[112,295,73,1.0],[112,295,74,1.0],[112,295,75,1.0],[112,295,76,1.0],[112,295,77,1.0],[112,295,78,1.0],[112,295,79,1.0],[112,296,64,1.0],[112,296,65,1.0],[112,296,66,1.0],[112,296,67,1.0],[112,296,68,1.0],[112,296,69,1.0],[112,296,70,1.0],[112,296,71,1.0],[112,296,72,1.0],[112,296,73,1.0],[112,296,74,1.0],[112,296,75,1.0],[112,296,76,1.0],[112,296,77,1.0],[112,296,78,1.0],[112,296,79,1.0],[112,297,64,1.0],[112,297,65,1.0],[112,297,66,1.0],[112,297,67,1.0],[112,297,68,1.0],[112,297,69,1.0],[112,297,70,1.0],[112,297,71,1.0],[112,297,72,1.0],[112,297,73,1.0],[112,297,74,1.0],[112,297,75,1.0],[112,297,76,1.0],[112,297,77,1.0],[112,297,78,1.0],[112,297,79,1.0],[112,298,64,1.0],[112,298,65,1.0],[112,298,66,1.0],[112,298,67,1.0],[112,298,68,1.0],[112,298,69,1.0],[112,298,70,1.0],[112,298,71,1.0],[112,298,72,1.0],[112,298,73,1.0],[112,298,74,1.0],[112,298,75,1.0],[112,298,76,1.0],[112,298,77,1.0],[112,298,78,1.0],[112,298,79,1.0],[112,299,64,1.0],[112,299,65,1.0],[112,299,66,1.0],[112,299,67,1.0],[112,299,68,1.0],[112,299,69,1.0],[112,299,70,1.0],[112,299,71,1.0],[112,299,72,1.0],[112,299,73,1.0],[112,299,74,1.0],[112,299,75,1.0],[112,299,76,1.0],[112,299,77,1.0],[112,299,78,1.0],[112,299,79,1.0],[112,300,64,1.0],[112,300,65,1.0],[112,300,66,1.0],[112,300,67,1.0],[112,300,68,1.0],[112,300,69,1.0],[112,300,70,1.0],[112,300,71,1.0],[112,300,72,1.0],[112,300,73,1.0],[112,300,74,1.0],[112,300,75,1.0],[112,300,76,1.0],[112,300,77,1.0],[112,300,78,1.0],[112,300,79,1.0],[112,301,64,1.0],[112,301,65,1.0],[112,301,66,1.0],[112,301,67,1.0],[112,301,68,1.0],[112,301,69,1.0],[112,301,70,1.0],[112,301,71,1.0],[112,301,72,1.0],[112,301,73,1.0],[112,301,74,1.0],[112,301,75,1.0],[112,301,76,1.0],[112,301,77,1.0],[112,301,78,1.0],[112,301,79,1.0],[112,302,64,1.0],[112,302,65,1.0],[112,302,66,1.0],[112,302,67,1.0],[112,302,68,1.0],[112,302,69,1.0],[112,302,70,1.0],[112,302,71,1.0],[112,302,72,1.0],[112,302,73,1.0],[112,302,74,1.0],[112,302,75,1.0],[112,302,76,1.0],[112,302,77,1.0],[112,302,78,1.0],[112,302,79,1.0],[112,303,64,1.0],[112,303,65,1.0],[112,303,66,1.0],[112,303,67,1.0],[112,303,68,1.0],[112,303,69,1.0],[112,303,70,1.0],[112,303,71,1.0],[112,303,72,1.0],[112,303,73,1.0],[112,303,74,1.0],[112,303,75,1.0],[112,303,76,1.0],[112,303,77,1.0],[112,303,78,1.0],[112,303,79,1.0],[112,304,64,1.0],[112,304,65,1.0],[112,304,66,1.0],[112,304,67,1.0],[112,304,68,1.0],[112,304,69,1.0],[112,304,70,1.0],[112,304,71,1.0],[112,304,72,1.0],[112,304,73,1.0],[112,304,74,1.0],[112,304,75,1.0],[112,304,76,1.0],[112,304,77,1.0],[112,304,78,1.0],[112,304,79,1.0],[112,305,64,1.0],[112,305,65,1.0],[112,305,66,1.0],[112,305,67,1.0],[112,305,68,1.0],[112,305,69,1.0],[112,305,70,1.0],[112,305,71,1.0],[112,305,72,1.0],[112,305,73,1.0],[112,305,74,1.0],[112,305,75,1.0],[112,305,76,1.0],[112,305,77,1.0],[112,305,78,1.0],[112,305,79,1.0],[112,306,64,1.0],[112,306,65,1.0],[112,306,66,1.0],[112,306,67,1.0],[112,306,68,1.0],[112,306,69,1.0],[112,306,70,1.0],[112,306,71,1.0],[112,306,72,1.0],[112,306,73,1.0],[112,306,74,1.0],[112,306,75,1.0],[112,306,76,1.0],[112,306,77,1.0],[112,306,78,1.0],[112,306,79,1.0],[112,307,64,1.0],[112,307,65,1.0],[112,307,66,1.0],[112,307,67,1.0],[112,307,68,1.0],[112,307,69,1.0],[112,307,70,1.0],[112,307,71,1.0],[112,307,72,1.0],[112,307,73,1.0],[112,307,74,1.0],[112,307,75,1.0],[112,307,76,1.0],[112,307,77,1.0],[112,307,78,1.0],[112,307,79,1.0],[112,308,64,1.0],[112,308,65,1.0],[112,308,66,1.0],[112,308,67,1.0],[112,308,68,1.0],[112,308,69,1.0],[112,308,70,1.0],[112,308,71,1.0],[112,308,72,1.0],[112,308,73,1.0],[112,308,74,1.0],[112,308,75,1.0],[112,308,76,1.0],[112,308,77,1.0],[112,308,78,1.0],[112,308,79,1.0],[112,309,64,1.0],[112,309,65,1.0],[112,309,66,1.0],[112,309,67,1.0],[112,309,68,1.0],[112,309,69,1.0],[112,309,70,1.0],[112,309,71,1.0],[112,309,72,1.0],[112,309,73,1.0],[112,309,74,1.0],[112,309,75,1.0],[112,309,76,1.0],[112,309,77,1.0],[112,309,78,1.0],[112,309,79,1.0],[112,310,64,1.0],[112,310,65,1.0],[112,310,66,1.0],[112,310,67,1.0],[112,310,68,1.0],[112,310,69,1.0],[112,310,70,1.0],[112,310,71,1.0],[112,310,72,1.0],[112,310,73,1.0],[112,310,74,1.0],[112,310,75,1.0],[112,310,76,1.0],[112,310,77,1.0],[112,310,78,1.0],[112,310,79,1.0],[112,311,64,1.0],[112,311,65,1.0],[112,311,66,1.0],[112,311,67,1.0],[112,311,68,1.0],[112,311,69,1.0],[112,311,70,1.0],[112,311,71,1.0],[112,311,72,1.0],[112,311,73,1.0],[112,311,74,1.0],[112,311,75,1.0],[112,311,76,1.0],[112,311,77,1.0],[112,311,78,1.0],[112,311,79,1.0],[112,312,64,1.0],[112,312,65,1.0],[112,312,66,1.0],[112,312,67,1.0],[112,312,68,1.0],[112,312,69,1.0],[112,312,70,1.0],[112,312,71,1.0],[112,312,72,1.0],[112,312,73,1.0],[112,312,74,1.0],[112,312,75,1.0],[112,312,76,1.0],[112,312,77,1.0],[112,312,78,1.0],[112,312,79,1.0],[112,313,64,1.0],[112,313,65,1.0],[112,313,66,1.0],[112,313,67,1.0],[112,313,68,1.0],[112,313,69,1.0],[112,313,70,1.0],[112,313,71,1.0],[112,313,72,1.0],[112,313,73,1.0],[112,313,74,1.0],[112,313,75,1.0],[112,313,76,1.0],[112,313,77,1.0],[112,313,78,1.0],[112,313,79,1.0],[112,314,64,1.0],[112,314,65,1.0],[112,314,66,1.0],[112,314,67,1.0],[112,314,68,1.0],[112,314,69,1.0],[112,314,70,1.0],[112,314,71,1.0],[112,314,72,1.0],[112,314,73,1.0],[112,314,74,1.0],[112,314,75,1.0],[112,314,76,1.0],[112,314,77,1.0],[112,314,78,1.0],[112,314,79,1.0],[112,315,64,1.0],[112,315,65,1.0],[112,315,66,1.0],[112,315,67,1.0],[112,315,68,1.0],[112,315,69,1.0],[112,315,70,1.0],[112,315,71,1.0],[112,315,72,1.0],[112,315,73,1.0],[112,315,74,1.0],[112,315,75,1.0],[112,315,76,1.0],[112,315,77,1.0],[112,315,78,1.0],[112,315,79,1.0],[112,316,64,1.0],[112,316,65,1.0],[112,316,66,1.0],[112,316,67,1.0],[112,316,68,1.0],[112,316,69,1.0],[112,316,70,1.0],[112,316,71,1.0],[112,316,72,1.0],[112,316,73,1.0],[112,316,74,1.0],[112,316,75,1.0],[112,316,76,1.0],[112,316,77,1.0],[112,316,78,1.0],[112,316,79,1.0],[112,317,64,1.0],[112,317,65,1.0],[112,317,66,1.0],[112,317,67,1.0],[112,317,68,1.0],[112,317,69,1.0],[112,317,70,1.0],[112,317,71,1.0],[112,317,72,1.0],[112,317,73,1.0],[112,317,74,1.0],[112,317,75,1.0],[112,317,76,1.0],[112,317,77,1.0],[112,317,78,1.0],[112,317,79,1.0],[112,318,64,1.0],[112,318,65,1.0],[112,318,66,1.0],[112,318,67,1.0],[112,318,68,1.0],[112,318,69,1.0],[112,318,70,1.0],[112,318,71,1.0],[112,318,72,1.0],[112,318,73,1.0],[112,318,74,1.0],[112,318,75,1.0],[112,318,76,1.0],[112,318,77,1.0],[112,318,78,1.0],[112,318,79,1.0],[112,319,64,1.0],[112,319,65,1.0],[112,319,66,1.0],[112,319,67,1.0],[112,319,68,1.0],[112,319,69,1.0],[112,319,70,1.0],[112,319,71,1.0],[112,319,72,1.0],[112,319,73,1.0],[112,319,74,1.0],[112,319,75,1.0],[112,319,76,1.0],[112,319,77,1.0],[112,319,78,1.0],[112,319,79,1.0],[113,-64,64,1.0],[113,-64,65,1.0],[113,-64,66,1.0],[113,-64,67,1.0],[113,-64,68,1.0],[113,-64,69,1.0],[113,-64,70,1.0],[113,-64,71,1.0],[113,-64,72,1.0],[113,-64,73,1.0],[113,-64,74,1.0],[113,-64,75,1.0],[113,-64,76,1.0],[113,-64,77,1.0],[113,-64,78,1.0],[113,-64,79,1.0],[113,-63,64,1.0],[113,-63,65,1.0],[113,-63,66,1.0],[113,-63,67,1.0],[113,-63,68,1.0],[113,-63,69,1.0],[113,-63,70,1.0],[113,-63,71,1.0],[113,-63,72,1.0],[113,-63,73,1.0],[113,-63,74,1.0],[113,-63,75,1.0],[113,-63,76,1.0],[113,-63,77,1.0],[113,-63,78,1.0],[113,-63,79,1.0],[113,-62,64,1.0],[113,-62,65,1.0],[113,-62,66,1.0],[113,-62,67,1.0],[113,-62,68,1.0],[113,-62,69,1.0],[113,-62,70,1.0],[113,-62,71,1.0],[113,-62,72,1.0],[113,-62,73,1.0],[113,-62,74,1.0],[113,-62,75,1.0],[113,-62,76,1.0],[113,-62,77,1.0],[113,-62,78,1.0],[113,-62,79,1.0],[113,-61,64,1.0],[113,-61,65,1.0],[113,-61,66,1.0],[113,-61,67,1.0],[113,-61,68,1.0],[113,-61,69,1.0],[113,-61,70,1.0],[113,-61,71,1.0],[113,-61,72,1.0],[113,-61,73,1.0],[113,-61,74,1.0],[113,-61,75,1.0],[113,-61,76,1.0],[113,-61,77,1.0],[113,-61,78,1.0],[113,-61,79,1.0],[113,-60,64,1.0],[113,-60,65,1.0],[113,-60,66,1.0],[113,-60,67,1.0],[113,-60,68,1.0],[113,-60,69,1.0],[113,-60,70,1.0],[113,-60,71,1.0],[113,-60,72,1.0],[113,-60,73,1.0],[113,-60,74,1.0],[113,-60,75,1.0],[113,-60,76,1.0],[113,-60,77,1.0],[113,-60,78,1.0],[113,-60,79,1.0],[113,-59,64,1.0],[113,-59,65,1.0],[113,-59,66,1.0],[113,-59,67,1.0],[113,-59,68,1.0],[113,-59,69,1.0],[113,-59,70,1.0],[113,-59,71,1.0],[113,-59,72,1.0],[113,-59,73,1.0],[113,-59,74,1.0],[113,-59,75,1.0],[113,-59,76,1.0],[113,-59,77,1.0],[113,-59,78,1.0],[113,-59,79,1.0],[113,-58,64,1.0],[113,-58,65,1.0],[113,-58,66,1.0],[113,-58,67,1.0],[113,-58,68,1.0],[113,-58,69,1.0],[113,-58,70,1.0],[113,-58,71,1.0],[113,-58,72,1.0],[113,-58,73,1.0],[113,-58,74,1.0],[113,-58,75,1.0],[113,-58,76,1.0],[113,-58,77,1.0],[113,-58,78,1.0],[113,-58,79,1.0],[113,-57,64,1.0],[113,-57,65,1.0],[113,-57,66,1.0],[113,-57,67,1.0],[113,-57,68,1.0],[113,-57,69,1.0],[113,-57,70,1.0],[113,-57,71,1.0],[113,-57,72,1.0],[113,-57,73,1.0],[113,-57,74,1.0],[113,-57,75,1.0],[113,-57,76,1.0],[113,-57,77,1.0],[113,-57,78,1.0],[113,-57,79,1.0],[113,-56,64,1.0],[113,-56,65,1.0],[113,-56,66,1.0],[113,-56,67,1.0],[113,-56,68,1.0],[113,-56,69,1.0],[113,-56,70,1.0],[113,-56,71,1.0],[113,-56,72,1.0],[113,-56,73,1.0],[113,-56,74,1.0],[113,-56,75,1.0],[113,-56,76,1.0],[113,-56,77,1.0],[113,-56,78,1.0],[113,-56,79,1.0],[113,-55,64,1.0],[113,-55,65,1.0],[113,-55,66,1.0],[113,-55,67,1.0],[113,-55,68,1.0],[113,-55,69,1.0],[113,-55,70,1.0],[113,-55,71,1.0],[113,-55,72,1.0],[113,-55,73,1.0],[113,-55,74,1.0],[113,-55,75,1.0],[113,-55,76,1.0],[113,-55,77,1.0],[113,-55,78,1.0],[113,-55,79,1.0],[113,-54,64,1.0],[113,-54,65,1.0],[113,-54,66,1.0],[113,-54,67,1.0],[113,-54,68,1.0],[113,-54,69,1.0],[113,-54,70,1.0],[113,-54,71,1.0],[113,-54,72,1.0],[113,-54,73,1.0],[113,-54,74,1.0],[113,-54,75,1.0],[113,-54,76,1.0],[113,-54,77,1.0],[113,-54,78,1.0],[113,-54,79,1.0],[113,-53,64,1.0],[113,-53,65,1.0],[113,-53,66,1.0],[113,-53,67,1.0],[113,-53,68,1.0],[113,-53,69,1.0],[113,-53,70,1.0],[113,-53,71,1.0],[113,-53,72,1.0],[113,-53,73,1.0],[113,-53,74,1.0],[113,-53,75,1.0],[113,-53,76,1.0],[113,-53,77,1.0],[113,-53,78,1.0],[113,-53,79,1.0],[113,-52,64,1.0],[113,-52,65,1.0],[113,-52,66,1.0],[113,-52,67,1.0],[113,-52,68,1.0],[113,-52,69,1.0],[113,-52,70,1.0],[113,-52,71,1.0],[113,-52,72,1.0],[113,-52,73,1.0],[113,-52,74,1.0],[113,-52,75,1.0],[113,-52,76,1.0],[113,-52,77,1.0],[113,-52,78,1.0],[113,-52,79,1.0],[113,-51,64,1.0],[113,-51,65,1.0],[113,-51,66,1.0],[113,-51,67,1.0],[113,-51,68,1.0],[113,-51,69,1.0],[113,-51,70,1.0],[113,-51,71,1.0],[113,-51,72,1.0],[113,-51,73,1.0],[113,-51,74,1.0],[113,-51,75,1.0],[113,-51,76,1.0],[113,-51,77,1.0],[113,-51,78,1.0],[113,-51,79,1.0],[113,-50,64,1.0],[113,-50,65,1.0],[113,-50,66,1.0],[113,-50,67,1.0],[113,-50,68,1.0],[113,-50,69,1.0],[113,-50,70,1.0],[113,-50,71,1.0],[113,-50,72,1.0],[113,-50,73,1.0],[113,-50,74,1.0],[113,-50,75,1.0],[113,-50,76,1.0],[113,-50,77,1.0],[113,-50,78,1.0],[113,-50,79,1.0],[113,-49,64,1.0],[113,-49,65,1.0],[113,-49,66,1.0],[113,-49,67,1.0],[113,-49,68,1.0],[113,-49,69,1.0],[113,-49,70,1.0],[113,-49,71,1.0],[113,-49,72,1.0],[113,-49,73,1.0],[113,-49,74,1.0],[113,-49,75,1.0],[113,-49,76,1.0],[113,-49,77,1.0],[113,-49,78,1.0],[113,-49,79,1.0],[113,-48,64,1.0],[113,-48,65,1.0],[113,-48,66,1.0],[113,-48,67,1.0],[113,-48,68,1.0],[113,-48,69,1.0],[113,-48,70,1.0],[113,-48,71,1.0],[113,-48,72,1.0],[113,-48,73,1.0],[113,-48,74,1.0],[113,-48,75,1.0],[113,-48,76,1.0],[113,-48,77,1.0],[113,-48,78,1.0],[113,-48,79,1.0],[113,-47,64,1.0],[113,-47,65,1.0],[113,-47,66,1.0],[113,-47,67,1.0],[113,-47,68,1.0],[113,-47,69,1.0],[113,-47,70,1.0],[113,-47,71,1.0],[113,-47,72,1.0],[113,-47,73,1.0],[113,-47,74,1.0],[113,-47,75,1.0],[113,-47,76,1.0],[113,-47,77,1.0],[113,-47,78,1.0],[113,-47,79,1.0],[113,-46,64,1.0],[113,-46,65,1.0],[113,-46,66,1.0],[113,-46,67,1.0],[113,-46,68,1.0],[113,-46,69,1.0],[113,-46,70,1.0],[113,-46,71,1.0],[113,-46,72,1.0],[113,-46,73,1.0],[113,-46,74,1.0],[113,-46,75,1.0],[113,-46,76,1.0],[113,-46,77,1.0],[113,-46,78,1.0],[113,-46,79,1.0],[113,-45,64,1.0],[113,-45,65,1.0],[113,-45,66,1.0],[113,-45,67,1.0],[113,-45,68,1.0],[113,-45,69,1.0],[113,-45,70,1.0],[113,-45,71,1.0],[113,-45,72,1.0],[113,-45,73,1.0],[113,-45,74,1.0],[113,-45,75,1.0],[113,-45,76,1.0],[113,-45,77,1.0],[113,-45,78,1.0],[113,-45,79,1.0],[113,-44,64,1.0],[113,-44,65,1.0],[113,-44,66,1.0],[113,-44,67,1.0],[113,-44,68,1.0],[113,-44,69,1.0],[113,-44,70,1.0],[113,-44,71,1.0],[113,-44,72,1.0],[113,-44,73,1.0],[113,-44,74,1.0],[113,-44,75,1.0],[113,-44,76,1.0],[113,-44,77,1.0],[113,-44,78,1.0],[113,-44,79,1.0],[113,-43,64,1.0],[113,-43,65,1.0],[113,-43,66,1.0],[113,-43,67,1.0],[113,-43,68,1.0],[113,-43,69,1.0],[113,-43,70,1.0],[113,-43,71,1.0],[113,-43,72,1.0],[113,-43,73,1.0],[113,-43,74,1.0],[113,-43,75,1.0],[113,-43,76,1.0],[113,-43,77,1.0],[113,-43,78,1.0],[113,-43,79,1.0],[113,-42,64,1.0],[113,-42,65,1.0],[113,-42,66,1.0],[113,-42,67,1.0],[113,-42,68,1.0],[113,-42,69,1.0],[113,-42,70,1.0],[113,-42,71,1.0],[113,-42,72,1.0],[113,-42,73,1.0],[113,-42,74,1.0],[113,-42,75,1.0],[113,-42,76,1.0],[113,-42,77,1.0],[113,-42,78,1.0],[113,-42,79,1.0],[113,-41,64,1.0],[113,-41,65,1.0],[113,-41,66,1.0],[113,-41,67,1.0],[113,-41,68,1.0],[113,-41,69,1.0],[113,-41,70,1.0],[113,-41,71,1.0],[113,-41,72,1.0],[113,-41,73,1.0],[113,-41,74,1.0],[113,-41,75,1.0],[113,-41,76,1.0],[113,-41,77,1.0],[113,-41,78,1.0],[113,-41,79,1.0],[113,-40,64,1.0],[113,-40,65,1.0],[113,-40,66,1.0],[113,-40,67,1.0],[113,-40,68,1.0],[113,-40,69,1.0],[113,-40,70,1.0],[113,-40,71,1.0],[113,-40,72,1.0],[113,-40,73,1.0],[113,-40,74,1.0],[113,-40,75,1.0],[113,-40,76,1.0],[113,-40,77,1.0],[113,-40,78,1.0],[113,-40,79,1.0],[113,-39,64,1.0],[113,-39,65,1.0],[113,-39,66,1.0],[113,-39,67,1.0],[113,-39,68,1.0],[113,-39,69,1.0],[113,-39,70,1.0],[113,-39,71,1.0],[113,-39,72,1.0],[113,-39,73,1.0],[113,-39,74,1.0],[113,-39,75,1.0],[113,-39,76,1.0],[113,-39,77,1.0],[113,-39,78,1.0],[113,-39,79,1.0],[113,-38,64,1.0],[113,-38,65,1.0],[113,-38,66,1.0],[113,-38,67,1.0],[113,-38,68,1.0],[113,-38,69,1.0],[113,-38,70,1.0],[113,-38,71,1.0],[113,-38,72,1.0],[113,-38,73,1.0],[113,-38,74,1.0],[113,-38,75,1.0],[113,-38,76,1.0],[113,-38,77,1.0],[113,-38,78,1.0],[113,-38,79,1.0],[113,-37,64,1.0],[113,-37,65,1.0],[113,-37,66,1.0],[113,-37,67,1.0],[113,-37,68,1.0],[113,-37,69,1.0],[113,-37,70,1.0],[113,-37,71,1.0],[113,-37,72,1.0],[113,-37,73,1.0],[113,-37,74,1.0],[113,-37,75,1.0],[113,-37,76,1.0],[113,-37,77,1.0],[113,-37,78,1.0],[113,-37,79,1.0],[113,-36,64,1.0],[113,-36,65,1.0],[113,-36,66,1.0],[113,-36,67,1.0],[113,-36,68,1.0],[113,-36,69,1.0],[113,-36,70,1.0],[113,-36,71,1.0],[113,-36,72,1.0],[113,-36,73,1.0],[113,-36,74,1.0],[113,-36,75,1.0],[113,-36,76,1.0],[113,-36,77,1.0],[113,-36,78,1.0],[113,-36,79,1.0],[113,-35,64,1.0],[113,-35,65,1.0],[113,-35,66,1.0],[113,-35,67,1.0],[113,-35,68,1.0],[113,-35,69,1.0],[113,-35,70,1.0],[113,-35,71,1.0],[113,-35,72,1.0],[113,-35,73,1.0],[113,-35,74,1.0],[113,-35,75,1.0],[113,-35,76,1.0],[113,-35,77,1.0],[113,-35,78,1.0],[113,-35,79,1.0],[113,-34,64,1.0],[113,-34,65,1.0],[113,-34,66,1.0],[113,-34,67,1.0],[113,-34,68,1.0],[113,-34,69,1.0],[113,-34,70,1.0],[113,-34,71,1.0],[113,-34,72,1.0],[113,-34,73,1.0],[113,-34,74,1.0],[113,-34,75,1.0],[113,-34,76,1.0],[113,-34,77,1.0],[113,-34,78,1.0],[113,-34,79,1.0],[113,-33,64,1.0],[113,-33,65,1.0],[113,-33,66,1.0],[113,-33,67,1.0],[113,-33,68,1.0],[113,-33,69,1.0],[113,-33,70,1.0],[113,-33,71,1.0],[113,-33,72,1.0],[113,-33,73,1.0],[113,-33,74,1.0],[113,-33,75,1.0],[113,-33,76,1.0],[113,-33,77,1.0],[113,-33,78,1.0],[113,-33,79,1.0],[113,-32,64,1.0],[113,-32,65,1.0],[113,-32,66,1.0],[113,-32,67,1.0],[113,-32,68,1.0],[113,-32,69,1.0],[113,-32,70,1.0],[113,-32,71,1.0],[113,-32,72,1.0],[113,-32,73,1.0],[113,-32,74,1.0],[113,-32,75,1.0],[113,-32,76,1.0],[113,-32,77,1.0],[113,-32,78,1.0],[113,-32,79,1.0],[113,-31,64,1.0],[113,-31,65,1.0],[113,-31,66,1.0],[113,-31,67,1.0],[113,-31,68,1.0],[113,-31,69,1.0],[113,-31,70,1.0],[113,-31,71,1.0],[113,-31,72,1.0],[113,-31,73,1.0],[113,-31,74,1.0],[113,-31,75,1.0],[113,-31,76,1.0],[113,-31,77,1.0],[113,-31,78,1.0],[113,-31,79,1.0],[113,-30,64,1.0],[113,-30,65,1.0],[113,-30,66,1.0],[113,-30,67,1.0],[113,-30,68,1.0],[113,-30,69,1.0],[113,-30,70,1.0],[113,-30,71,1.0],[113,-30,72,1.0],[113,-30,73,1.0],[113,-30,74,1.0],[113,-30,75,1.0],[113,-30,76,1.0],[113,-30,77,1.0],[113,-30,78,1.0],[113,-30,79,1.0],[113,-29,64,1.0],[113,-29,65,1.0],[113,-29,66,1.0],[113,-29,67,1.0],[113,-29,68,1.0],[113,-29,69,1.0],[113,-29,70,1.0],[113,-29,71,1.0],[113,-29,72,1.0],[113,-29,73,1.0],[113,-29,74,1.0],[113,-29,75,1.0],[113,-29,76,1.0],[113,-29,77,1.0],[113,-29,78,1.0],[113,-29,79,1.0],[113,-28,64,1.0],[113,-28,65,1.0],[113,-28,66,1.0],[113,-28,67,1.0],[113,-28,68,1.0],[113,-28,69,1.0],[113,-28,70,1.0],[113,-28,71,1.0],[113,-28,72,1.0],[113,-28,73,1.0],[113,-28,74,1.0],[113,-28,75,1.0],[113,-28,76,1.0],[113,-28,77,1.0],[113,-28,78,1.0],[113,-28,79,1.0],[113,-27,64,1.0],[113,-27,65,1.0],[113,-27,66,1.0],[113,-27,67,1.0],[113,-27,68,1.0],[113,-27,69,1.0],[113,-27,70,1.0],[113,-27,71,1.0],[113,-27,72,1.0],[113,-27,73,1.0],[113,-27,74,1.0],[113,-27,75,1.0],[113,-27,76,1.0],[113,-27,77,1.0],[113,-27,78,1.0],[113,-27,79,1.0],[113,-26,64,1.0],[113,-26,65,1.0],[113,-26,66,1.0],[113,-26,67,1.0],[113,-26,68,1.0],[113,-26,69,1.0],[113,-26,70,1.0],[113,-26,71,1.0],[113,-26,72,1.0],[113,-26,73,1.0],[113,-26,74,1.0],[113,-26,75,1.0],[113,-26,76,1.0],[113,-26,77,1.0],[113,-26,78,1.0],[113,-26,79,1.0],[113,-25,64,1.0],[113,-25,65,1.0],[113,-25,66,1.0],[113,-25,67,1.0],[113,-25,68,1.0],[113,-25,69,1.0],[113,-25,70,1.0],[113,-25,71,1.0],[113,-25,72,1.0],[113,-25,73,1.0],[113,-25,74,1.0],[113,-25,75,1.0],[113,-25,76,1.0],[113,-25,77,1.0],[113,-25,78,1.0],[113,-25,79,1.0],[113,-24,64,1.0],[113,-24,65,1.0],[113,-24,66,1.0],[113,-24,67,1.0],[113,-24,68,1.0],[113,-24,69,1.0],[113,-24,70,1.0],[113,-24,71,1.0],[113,-24,72,1.0],[113,-24,73,1.0],[113,-24,74,1.0],[113,-24,75,1.0],[113,-24,76,1.0],[113,-24,77,1.0],[113,-24,78,1.0],[113,-24,79,1.0],[113,-23,64,1.0],[113,-23,65,1.0],[113,-23,66,1.0],[113,-23,67,1.0],[113,-23,68,1.0],[113,-23,69,1.0],[113,-23,70,1.0],[113,-23,71,1.0],[113,-23,72,1.0],[113,-23,73,1.0],[113,-23,74,1.0],[113,-23,75,1.0],[113,-23,76,1.0],[113,-23,77,1.0],[113,-23,78,1.0],[113,-23,79,1.0],[113,-22,64,1.0],[113,-22,65,1.0],[113,-22,66,1.0],[113,-22,67,1.0],[113,-22,68,1.0],[113,-22,69,1.0],[113,-22,70,1.0],[113,-22,71,1.0],[113,-22,72,1.0],[113,-22,73,1.0],[113,-22,74,1.0],[113,-22,75,1.0],[113,-22,76,1.0],[113,-22,77,1.0],[113,-22,78,1.0],[113,-22,79,1.0],[113,-21,64,1.0],[113,-21,65,1.0],[113,-21,66,1.0],[113,-21,67,1.0],[113,-21,68,1.0],[113,-21,69,1.0],[113,-21,70,1.0],[113,-21,71,1.0],[113,-21,72,1.0],[113,-21,73,1.0],[113,-21,74,1.0],[113,-21,75,1.0],[113,-21,76,1.0],[113,-21,77,1.0],[113,-21,78,1.0],[113,-21,79,1.0],[113,-20,64,1.0],[113,-20,65,1.0],[113,-20,66,1.0],[113,-20,67,1.0],[113,-20,68,1.0],[113,-20,69,1.0],[113,-20,70,1.0],[113,-20,71,1.0],[113,-20,72,1.0],[113,-20,73,1.0],[113,-20,74,1.0],[113,-20,75,1.0],[113,-20,76,1.0],[113,-20,77,1.0],[113,-20,78,1.0],[113,-20,79,1.0],[113,-19,64,1.0],[113,-19,65,1.0],[113,-19,66,1.0],[113,-19,67,1.0],[113,-19,68,1.0],[113,-19,69,1.0],[113,-19,70,1.0],[113,-19,71,1.0],[113,-19,72,1.0],[113,-19,73,1.0],[113,-19,74,1.0],[113,-19,75,1.0],[113,-19,76,1.0],[113,-19,77,1.0],[113,-19,78,1.0],[113,-19,79,1.0],[113,-18,64,1.0],[113,-18,65,1.0],[113,-18,66,1.0],[113,-18,67,1.0],[113,-18,68,1.0],[113,-18,69,1.0],[113,-18,70,1.0],[113,-18,71,1.0],[113,-18,72,1.0],[113,-18,73,1.0],[113,-18,74,1.0],[113,-18,75,1.0],[113,-18,76,1.0],[113,-18,77,1.0],[113,-18,78,1.0],[113,-18,79,1.0],[113,-17,64,1.0],[113,-17,65,1.0],[113,-17,66,1.0],[113,-17,67,1.0],[113,-17,68,1.0],[113,-17,69,1.0],[113,-17,70,1.0],[113,-17,71,1.0],[113,-17,72,1.0],[113,-17,73,1.0],[113,-17,74,1.0],[113,-17,75,1.0],[113,-17,76,1.0],[113,-17,77,1.0],[113,-17,78,1.0],[113,-17,79,1.0],[113,-16,64,1.0],[113,-16,65,1.0],[113,-16,66,1.0],[113,-16,67,1.0],[113,-16,68,1.0],[113,-16,69,1.0],[113,-16,70,1.0],[113,-16,71,1.0],[113,-16,72,1.0],[113,-16,73,1.0],[113,-16,74,1.0],[113,-16,75,1.0],[113,-16,76,1.0],[113,-16,77,1.0],[113,-16,78,1.0],[113,-16,79,1.0],[113,-15,64,0.9603709568682641],[113,-15,65,1.0],[113,-15,66,1.0],[113,-15,67,1.0],[113,-15,68,1.0],[113,-15,69,1.0],[113,-15,70,1.0],[113,-15,71,1.0],[113,-15,72,1.0],[113,-15,73,1.0],[113,-15,74,1.0],[113,-15,75,1.0],[113,-15,76,1.0],[113,-15,77,1.0],[113,-15,78,1.0],[113,-15,79,1.0],[113,-14,64,0.6393658552041707],[113,-14,65,0.7232156759710953],[113,-14,66,0.8117744776243332],[113,-14,67,0.9047912705093286],[113,-14,68,1.0],[113,-14,69,1.0],[113,-14,70,1.0],[113,-14,71,1.0],[113,-14,72,1.0],[113,-14,73,1.0],[113,-14,74,1.0],[113,-14,75,1.0],[113,-14,76,1.0],[113,-14,77,1.0],[113,-14,78,1.0],[113,-14,79,1.0],[113,-13,64,0.39928375126056004],[113,-13,65,0.46097775247484585],[113,-13,66,0.5269813318247211],[113,-13,67,0.5971135871365528],[113,-13,68,0.6711691940360659],[113,-13,69,0.7489218503739314],[113,-13,70,0.8301277039220271],[113,-13,71,0.914528746134692],[113,-13,72,1.0],[113,-13,73,1.0],[113,-13,74,1.0],[113,-13,75,1.0],[113,-13,76,1.0],[113,-13,77,1.0],[113,-13,78,1.0],[113,-13,79,1.0],[113,-12,64,0.22837160346370342],[113,-12,65,0.27130262444354747],[113,-12,66,0.3180604114481961],[113,-12,67,0.3685341994903908],[113,-12,68,0.4225863219614937],[113,-12,69,0.4800555104400693],[113,-12,70,0.5407601843885727],[113,-12,71,0.6045017137941634],[113,-12,72,0.6710676385436167],[113,-12,73,0.740234829167467],[113,-12,74,0.8117725745285354],[113,-12,75,0.8854455831121901],[113,-12,76,0.961016885751618],[113,-12,77,1.0],[113,-12,78,1.0],[113,-12,79,1.0],[113,-11,64,0.11487627431187039],[113,-11,65,0.14243728483989132],[113,-11,66,0.17325883972594228],[113,-11,67,0.20730036086847675],[113,-11,68,0.24449198966873031],[113,-11,69,0.28473774475700825],[113,-11,70,0.3279186762470362],[113,-11,71,0.37389599983566485],[113,-11,72,0.4225141947633596],[113,-11,73,0.4736040504598569],[113,-11,74,0.5269856476050997],[113,-11,75,0.5824712603715775],[113,-11,76,0.6398681677446568],[113,-11,77,0.6989813630322278],[113,-11,78,0.7596161520070169],[113,-11,79,0.8215806315367927],[113,-10,64,0.04704453024980894],[113,-10,65,0.06262863019836162],[113,-10,66,0.08082364308797725],[113,-10,67,0.10165922739601937],[113,-10,68,0.1251334827721435],[113,-10,69,0.1512159682170252],[113,-10,70,0.17985072345162412],[113,-10,71,0.21095927705512965],[113,-10,72,0.24444362561269117],[113,-10,73,0.28018916888678397],[113,-10,74,0.3180675868968438],[113,-10,75,0.35793964578228366],[113,-10,76,0.3996579204090138],[113,-10,77,0.44306942284909506],[113,-10,78,0.4880181271393741],[113,-10,79,0.5343473820800063],[113,-9,64,0.029343190863174336],[113,-9,65,0.032722252501659034],[113,-9,66,0.03600324691949107],[113,-9,67,0.039857857893563685],[113,-9,68,0.052757989208308334],[113,-9,69,0.06773749766314424],[113,-9,70,0.08480377153747293],[113,-9,71,0.1039391194612256],[113,-9,72,0.12510363335150956],[113,-9,73,0.14823801473390974],[113,-9,74,0.17326635048712072],[113,-9,75,0.20009882499527182],[113,-9,76,0.22863435673177673],[113,-9,77,0.25876314842224996],[113,-9,78,0.2903691411550218],[113,-9,79,0.3233323641060599],[113,-8,64,0.02501139801882895],[113,-8,65,0.02836572666068475],[113,-8,66,0.031625969833578675],[113,-8,67,0.03478953154716801],[113,-8,68,0.03785375851169906],[113,-8,69,0.04081595878817412],[113,-8,70,0.04367341985486002],[113,-8,71,0.04642342608994772],[113,-8,72,0.052741820940008725],[113,-8,73,0.06599831861873788],[113,-8,74,0.0808297964242507],[113,-8,75,0.0971967832611512],[113,-8,76,0.11504558893589413],[113,-8,77,0.1343107787162399],[113,-8,78,0.15491755952922534],[113,-8,79,0.17678406937058894],[113,-7,64,0.020652116963294893],[113,-7,65,0.023979713844220873],[113,-7,66,0.02721718005226604],[113,-7,67,0.030361990467245352],[113,-7,68,0.033411550871436324],[113,-7,69,0.036363216902895],[113,-7,70,0.0392143124242525],[113,-7,71,0.041962147306798245],[113,-7,72,0.04460403463011231],[113,-7,73,0.04713730729693429],[113,-7,74,0.049559334063418115],[113,-7,75,0.05186753498491997],[113,-7,76,0.054059396277005366],[113,-7,77,0.05796045141053102],[113,-7,78,0.06991164608810649],[113,-7,79,0.08295088761753514],[113,-6,64,0.016272684131337117],[113,-6,65,0.019571556331747057],[113,-6,66,0.02278422095967026],[113,-6,67,0.025908225249889907],[113,-6,68,0.028941035810368873],[113,-6,69,0.03188005785911514],[113,-6,70,0.03472265387610182],[113,-6,71,0.037466161670046155],[113,-6,72,0.04010791186031275],[113,-6,73,0.042645244773627175],[113,-6,74,0.04507552675574719],[113,-6,75,0.04739616589824282],[113,-6,76,0.04960462718006784],[113,-6,77,0.051698447024190124],[113,-6,78,0.05367524726907967],[113,-6,79,0.055532748555324904],[113,-5,64,0.011880458159774218],[113,-5,65,0.015148622012133003],[113,-5,66,0.018334465019806755],[113,-5,67,0.021435608167669165],[113,-5,68,0.02444958056704708],[113,-5,69,0.027373838956206945],[113,-5,70,0.03020578661590711],[113,-5,71,0.0329427916998207],[113,-5,72,0.03558220498009172],[113,-5,73,0.03812137700771215],[113,-5,74,0.04055767468786839],[113,-5,75,0.042888497270405716],[113,-5,76,0.0451112917550953],[113,-5,77,0.047223567711971136],[113,-5,78,0.0492229115165331],[113,-5,79,0.051107000000091024],[113,-4,64,0.007482807739527961],[113,-4,65,0.010718292218265743],[113,-4,66,0.01387530160407345],[113,-4,67,0.016951531935180723],[113,-4,68,0.019944576425298753],[113,-4,69,0.022851945207509404],[113,-4,70,0.025671084493665494],[113,-4,71,0.028399395149108747],[113,-4,72,0.03103425068297004],[113,-4,73,0.03357301465373472],[113,-4,74,0.03601305749022447],[113,-4,75,0.038351772728147035],[113,-4,76,0.04058659266189105],[113,-4,77,0.04271500341184035],[113,-4,78,0.04473455940700096],[113,-4,79,0.04664289728321539],[113,-3,64,0.0030871004870372323],[113,-3,65,0.006287950584409341],[113,-3,66,0.009414125845074013],[113,-3,67,0.012463398570049009],[113,-3,68,0.015433427593272937],[113,-3,69,0.018321778248419712],[113,-3,70,0.02112594175210679],[113,-3,71,0.023843354003300607],[113,-3,72,0.02647141379918802],[113,-3,73,0.02900750046719519],[113,-3,74,0.03144899091330269],[113,-3,75,0.0337932760868123],[113,-3,76,0.0360377768612409],[113,-3,77,0.03817995933161406],[113,-3,78,0.04021734952795545],[113,-3,79,0.042147547545246064],[113,-2,64,-0.001299307164938271],[113,-2,65,0.001864972926317432],[113,-2,66,0.004958328516803279],[113,-2,67,0.007978609284138648],[113,-2,68,0.010923541116795249],[113,-2,69,0.013790746283137714],[113,-2,70,0.01657776301817389],[113,-2,71,0.019282064527818665],[113,-2,72,0.02190107741093726],[113,-2,73,0.02443219949885058],[113,-2,74,0.02687281711245388],[113,-2,75,0.02922032173709961],[113,-2,76,0.0314721261149237],[113,-2,77,0.03362567975488675],[113,-2,78,0.03567848386032489],[113,-2,79,0.03762810567428611],[113,-1,64,-0.005669079057152526],[113,-1,65,-0.0025432818559235487],[113,-1,66,5.152869411671965E-4],[113,-1,67,0.0035045554049521893],[113,-1,68,0.006422317827006689],[113,-1,69,0.009266255070036401],[113,-1,70,0.01203395433771818],[113,-1,71,0.014722928363800472],[113,-1,72,0.01733063402072932],[113,-1,73,0.019854490347480602],[113,-1,74,0.02229189599675023],[113,-1,75,0.02464024610165566],[113,-1,76,0.0268969485616248],[113,-1,77,0.02905943974774499],[113,-1,78,0.031125199627366408],[113,-1,79,0.033091766308239026],[113,0,64,-0.010014907374324658],[113,0,65,-0.006929479852304743],[113,0,66,-0.00390764307913969],[113,0,67,-9.513896727644522E-4],[113,0,68,0.0019371443223056076],[113,0,69,0.0047556999456812715],[113,0,70,0.0075019152534335845],[113,0,71,0.010173344671855412],[113,0,72,0.012767477772924543],[113,0,73,0.015281757471142285],[113,0,74,0.0177135976419037],[113,0,75,0.02006040016155001],[113,0,76,0.022319571368780676],[113,0,77,0.024488537947698466],[113,0,78,0.026564762232279382],[113,0,79,0.028545756932548474],[113,1,64,-0.014329519696222426],[113,1,65,-0.011286319194571931],[113,1,66,-0.008303134301417776],[113,1,67,-0.005381877505224002],[113,1,68,-0.0025246140154222205],[113,1,69,2.664588874797466E-4],[113,1,70,0.0029890319260125336],[113,1,71,0.00564070332388221],[113,1,72,0.008218997728402663],[113,1,73,0.010721384556898007],[113,1,74,0.013145295767230239],[113,1,75,0.015488143052606054],[113,1,76,0.017747334460334795],[113,1,77,0.019920290434815087],[113,1,78,0.022004459284541596],[113,1,79,0.023997332073411065],[113,2,64,-0.018605685029366326],[113,2,65,-0.015606536085154742],[113,2,66,-0.012663894057391954],[113,2,67,-0.009779590587595983],[113,2,68,-0.006955618970269847],[113,2,69,-0.004194113385023707],[113,2,70,-0.0014973287014628175],[113,2,71,0.0011323791429587518],[113,2,72,0.0036925721923914342],[113,2,73,0.0061807489490274745],[113,2,74,0.008594362276671833],[113,2,75,0.010930836731607017],[113,2,76,0.013187585320420053],[113,2,77,0.015362025685069586],[113,2,78,0.017451595714984572],[113,2,79,0.019453768586476357],[113,3,64,-0.009333843761773212],[113,3,65,-0.014898700612448723],[113,3,66,-0.016982669241293186],[113,3,67,-0.014137247311806683],[113,3,68,-0.011348564407483115],[113,3,69,-0.008618690270213517],[113,3,70,-0.005949823695899886],[113,3,71,-0.0033442728087024406],[113,3,72,-8.04435904555853E-4],[113,3,73,0.0016672171357201004],[113,3,74,0.004068162863869802],[113,3,75,0.0063958417123660405],[113,3,76,0.008647674872961045],[113,3,77,0.010821080605901708],[113,3,78,0.01291348997959789],[113,3,79,0.014922362041029619],[113,4,64,-6.288714758355691E-4],[113,4,65,-0.0017799282651170156],[113,4,66,-0.003783485149750606],[113,4,67,-0.006812853670333624],[113,4,68,-0.011006613868134094],[113,4,69,-0.012999977105835316],[113,4,70,-0.010361137883351329],[113,4,71,-0.007781920893735188],[113,4,72,-0.005264682572436896],[113,4,73,-0.002811858705758258],[113,4,74,-4.259463187128859E-4],[113,4,75,0.0018905138716595396],[113,4,76,0.004134954437191467],[113,4,77,0.0063047976539798226],[113,4,78,0.00839747135206085],[113,4,79,0.010410424199650485],[113,5,64,6.023187990402832E-5],[113,5,65,5.000737625554131E-8],[113,5,66,-2.9640971685624724E-5],[113,5,67,-2.708115960223462E-4],[113,5,68,-9.287705302295044E-4],[113,5,69,-0.0021746796823383886],[113,5,70,-0.004148091476670651],[113,5,71,-0.006959493033143889],[113,5,72,-0.00968084527451872],[113,5,73,-0.007249143105412768],[113,5,74,-0.0048806209266112],[113,5,75,-0.0025777976749661036],[113,5,76,-3.4322624090246667E-4],[113,5,77,0.0018205230351797108],[113,5,78,0.003910878305012501],[113,5,79,0.005925281593360393],[113,6,64,0.004416827627246234],[113,6,65,0.00212472093209305],[113,6,66,8.28644120634689E-4],[113,6,67,2.1792046216487904E-4],[113,6,68,2.0365342004509747E-5],[113,6,69,-1.0266303217386237E-7],[113,6,70,-4.587961603363503E-5],[113,6,71,-2.8810796670666276E-4],[113,6,72,-8.691077455073303E-4],[113,6,73,-0.0019047933580353632],[113,6,74,-0.003487062846496095],[113,6,75,-0.005686147287802615],[113,6,76,-0.004779519881228919],[113,6,77,-0.0026243940132392105],[113,6,78,-5.389420199596734E-4],[113,6,79,0.001474275192239985],[113,7,64,0.02412418021310399],[113,7,65,0.016277473942065284],[113,7,66,0.010474884376084384],[113,7,67,0.006336981392183846],[113,7,68,0.003524557092819749],[113,7,69,0.0017363605425577164],[113,7,70,7.067968236772126E-4],[113,7,71,2.0360514538186764E-4],[113,7,72,2.5530249519813927E-5],[113,7,73,7.709371443278729E-10],[113,7,74,-1.917246478552956E-5],[113,7,75,-1.5406598449969826E-4],[113,7,76,-5.048696710715755E-4],[113,7,77,-0.0011520587630183365],[113,7,78,-0.0021585023704310253],[113,7,79,-0.0029352388284486775],[113,8,64,0.07086545713903439],[113,8,65,0.05414160110233462],[113,8,66,0.04059249625492054],[113,8,67,0.029769911874729077],[113,8,68,0.02126746944252012],[113,8,69,0.01471849850794465],[113,8,70,0.009793850077711594],[113,8,71,0.006199682004079852],[113,8,72,0.0036752303913740077],[113,8,73,0.0019905804893766746],[113,8,74,9.444499063741945E-4],[113,8,75,3.6199625459978706E-4],[113,8,76,9.266054533205882E-5],[113,8,77,8.056783646451707E-6],[113,8,78,-8.271974518878012E-8],[113,8,79,-2.1897792516776967E-5],[113,9,64,0.1563237288944709],[113,9,65,0.12740029703969968],[113,9,66,0.10286479835506704],[113,9,67,0.0822001543060752],[113,9,68,0.06493266840688171],[113,9,69,0.05063000068396092],[113,9,70,0.038899092842415765],[113,9,71,0.029384058357127582],[113,9,72,0.021764051281031652],[113,9,73,0.015751127049860345],[113,9,74,0.011088107966629809],[113,9,75,0.0075464653693880866],[113,9,76,0.00492422973606914],[113,9,77,0.0030439391624865696],[113,9,78,0.0017506357683816439],[113,9,79,9.099186524894566E-4],[113,10,64,0.2921819688936756],[113,10,65,0.24773665887618843],[113,10,66,0.208975011342127],[113,10,67,0.17531105272465114],[113,10,68,0.14620362122030983],[113,10,69,0.12115445731851905],[113,10,70,0.09970623819161938],[113,10,71,0.08144056991208136],[113,10,72,0.0659759510635248],[113,10,73,0.0529657208351464],[113,10,74,0.04209600413379954],[113,10,75,0.03308366560776453],[113,10,76,0.025674283772454017],[113,10,77,0.01964015566052516],[113,10,78,0.014778341588604617],[113,10,79,0.01090875875527446],[113,11,64,0.49012305341631535],[113,11,65,0.4268336861661687],[113,11,66,0.3706062578830489],[113,11,67,0.3207858527412814],[113,11,68,0.27676369626267655],[113,11,69,0.23797535938006548],[113,11,70,0.20389889949672682],[113,11,71,0.17405295225306278],[113,11,72,0.14799478734136964],[113,11,73,0.1253183412683025],[113,11,74,0.10565223945072254],[113,11,75,0.08865781942922728],[113,11,76,0.07402716632582507],[113,11,77,0.06148117095506469],[113,11,78,0.05076762021792669],[113,11,79,0.04165932858658396],[113,12,64,0.7618297615517458],[113,12,65,0.6763742808371674],[113,12,66,0.5994415625835019],[113,12,67,0.5303077014731388],[113,12,68,0.4682961629898712],[113,12,69,0.4127760984847514],[113,12,70,0.363160590350528],[113,12,71,0.318904840761232],[113,12,72,0.27950431709172313],[113,12,73,0.24449286672656717],[113,12,74,0.21344081349584593],[113,12,75,0.18595304741220717],[113,12,76,0.1616671187716476],[113,12,77,0.14025134701457967],[113,12,78,0.12140295401340276],[113,12,79,0.10484623068791409],[113,13,64,1.0],[113,13,65,1.0],[113,13,66,0.907163851928877],[113,13,67,0.8155596474813348],[113,13,68,0.7324841918680014],[113,13,69,0.6572399668272628],[113,13,70,0.5891747244946803],[113,13,71,0.5276797705389407],[113,13,72,0.472188196587228],[113,13,73,0.422173074458908],[113,13,74,0.37714562429751797],[113,13,75,0.3366533681651171],[113,13,76,0.30027828009733926],[113,13,77,0.2676349430033396],[113,13,78,0.23836872211358026],[113,13,79,0.212153963969792],[113,14,64,1.0],[113,14,65,1.0],[113,14,66,1.0],[113,14,67,1.0],[113,14,68,1.0],[113,14,69,0.9830501571154002],[113,14,70,0.8936246157509399],[113,14,71,0.8120611763376374],[113,14,72,0.7377299813206132],[113,14,73,0.6700426405073381],[113,14,74,0.6084504682520409],[113,14,75,0.5524426982411622],[113,14,76,0.5015446868138593],[113,14,77,0.4553161151897986],[113,14,78,0.4133492003437117],[113,14,79,0.37526692361383013],[113,15,64,1.0],[113,15,65,1.0],[113,15,66,1.0],[113,15,67,1.0],[113,15,68,1.0],[113,15,69,1.0],[113,15,70,1.0],[113,15,71,1.0],[113,15,72,1.0],[113,15,73,0.9997851396318046],[113,15,74,0.9190390400453126],[113,15,75,0.8450048520567546],[113,15,76,0.7771502728709174],[113,15,77,0.7149789168586173],[113,15,78,0.6580285611246093],[113,15,79,0.6058694009784363],[113,16,64,1.0],[113,16,65,1.0],[113,16,66,1.0],[113,16,67,1.0],[113,16,68,1.0],[113,16,69,1.0],[113,16,70,1.0],[113,16,71,1.0],[113,16,72,1.0],[113,16,73,1.0],[113,16,74,1.0],[113,16,75,1.0],[113,16,76,1.0],[113,16,77,1.0],[113,16,78,0.984090873385248],[113,16,79,0.915645583508273],[113,17,64,1.0],[113,17,65,1.0],[113,17,66,1.0],[113,17,67,1.0],[113,17,68,1.0],[113,17,69,1.0],[113,17,70,1.0],[113,17,71,1.0],[113,17,72,1.0],[113,17,73,1.0],[113,17,74,1.0],[113,17,75,1.0],[113,17,76,1.0],[113,17,77,1.0],[113,17,78,1.0],[113,17,79,1.0],[113,18,64,1.0],[113,18,65,1.0],[113,18,66,1.0],[113,18,67,1.0],[113,18,68,1.0],[113,18,69,1.0],[113,18,70,1.0],[113,18,71,1.0],[113,18,72,1.0],[113,18,73,1.0],[113,18,74,1.0],[113,18,75,1.0],[113,18,76,1.0],[113,18,77,1.0],[113,18,78,1.0],[113,18,79,1.0],[113,19,64,1.0],[113,19,65,1.0],[113,19,66,1.0],[113,19,67,1.0],[113,19,68,1.0],[113,19,69,1.0],[113,19,70,1.0],[113,19,71,1.0],[113,19,72,1.0],[113,19,73,1.0],[113,19,74,1.0],[113,19,75,1.0],[113,19,76,1.0],[113,19,77,1.0],[113,19,78,1.0],[113,19,79,1.0],[113,20,64,1.0],[113,20,65,1.0],[113,20,66,1.0],[113,20,67,1.0],[113,20,68,1.0],[113,20,69,1.0],[113,20,70,1.0],[113,20,71,1.0],[113,20,72,1.0],[113,20,73,1.0],[113,20,74,1.0],[113,20,75,1.0],[113,20,76,1.0],[113,20,77,1.0],[113,20,78,1.0],[113,20,79,1.0],[113,21,64,1.0],[113,21,65,1.0],[113,21,66,1.0],[113,21,67,1.0],[113,21,68,1.0],[113,21,69,1.0],[113,21,70,1.0],[113,21,71,1.0],[113,21,72,1.0],[113,21,73,1.0],[113,21,74,1.0],[113,21,75,1.0],[113,21,76,1.0],[113,21,77,1.0],[113,21,78,1.0],[113,21,79,1.0],[113,22,64,1.0],[113,22,65,1.0],[113,22,66,1.0],[113,22,67,1.0],[113,22,68,1.0],[113,22,69,1.0],[113,22,70,1.0],[113,22,71,1.0],[113,22,72,1.0],[113,22,73,1.0],[113,22,74,1.0],[113,22,75,1.0],[113,22,76,1.0],[113,22,77,1.0],[113,22,78,1.0],[113,22,79,1.0],[113,23,64,1.0],[113,23,65,1.0],[113,23,66,1.0],[113,23,67,1.0],[113,23,68,1.0],[113,23,69,1.0],[113,23,70,1.0],[113,23,71,1.0],[113,23,72,1.0],[113,23,73,1.0],[113,23,74,1.0],[113,23,75,1.0],[113,23,76,1.0],[113,23,77,1.0],[113,23,78,1.0],[113,23,79,1.0],[113,24,64,1.0],[113,24,65,1.0],[113,24,66,1.0],[113,24,67,1.0],[113,24,68,1.0],[113,24,69,1.0],[113,24,70,1.0],[113,24,71,1.0],[113,24,72,1.0],[113,24,73,1.0],[113,24,74,1.0],[113,24,75,1.0],[113,24,76,1.0],[113,24,77,1.0],[113,24,78,1.0],[113,24,79,1.0],[113,25,64,1.0],[113,25,65,1.0],[113,25,66,1.0],[113,25,67,1.0],[113,25,68,1.0],[113,25,69,1.0],[113,25,70,1.0],[113,25,71,1.0],[113,25,72,1.0],[113,25,73,1.0],[113,25,74,1.0],[113,25,75,1.0],[113,25,76,1.0],[113,25,77,1.0],[113,25,78,1.0],[113,25,79,1.0],[113,26,64,1.0],[113,26,65,1.0],[113,26,66,1.0],[113,26,67,1.0],[113,26,68,1.0],[113,26,69,1.0],[113,26,70,1.0],[113,26,71,1.0],[113,26,72,1.0],[113,26,73,1.0],[113,26,74,1.0],[113,26,75,1.0],[113,26,76,1.0],[113,26,77,1.0],[113,26,78,1.0],[113,26,79,1.0],[113,27,64,1.0],[113,27,65,1.0],[113,27,66,1.0],[113,27,67,1.0],[113,27,68,1.0],[113,27,69,1.0],[113,27,70,1.0],[113,27,71,1.0],[113,27,72,1.0],[113,27,73,1.0],[113,27,74,1.0],[113,27,75,1.0],[113,27,76,1.0],[113,27,77,1.0],[113,27,78,1.0],[113,27,79,1.0],[113,28,64,1.0],[113,28,65,1.0],[113,28,66,1.0],[113,28,67,1.0],[113,28,68,1.0],[113,28,69,1.0],[113,28,70,1.0],[113,28,71,1.0],[113,28,72,1.0],[113,28,73,1.0],[113,28,74,1.0],[113,28,75,1.0],[113,28,76,1.0],[113,28,77,1.0],[113,28,78,1.0],[113,28,79,1.0],[113,29,64,1.0],[113,29,65,1.0],[113,29,66,1.0],[113,29,67,1.0],[113,29,68,1.0],[113,29,69,1.0],[113,29,70,1.0],[113,29,71,1.0],[113,29,72,1.0],[113,29,73,1.0],[113,29,74,1.0],[113,29,75,1.0],[113,29,76,1.0],[113,29,77,1.0],[113,29,78,1.0],[113,29,79,1.0],[113,30,64,1.0],[113,30,65,1.0],[113,30,66,1.0],[113,30,67,1.0],[113,30,68,1.0],[113,30,69,1.0],[113,30,70,1.0],[113,30,71,1.0],[113,30,72,1.0],[113,30,73,1.0],[113,30,74,1.0],[113,30,75,1.0],[113,30,76,1.0],[113,30,77,1.0],[113,30,78,1.0],[113,30,79,1.0],[113,31,64,1.0],[113,31,65,1.0],[113,31,66,1.0],[113,31,67,1.0],[113,31,68,1.0],[113,31,69,1.0],[113,31,70,1.0],[113,31,71,1.0],[113,31,72,1.0],[113,31,73,1.0],[113,31,74,1.0],[113,31,75,1.0],[113,31,76,1.0],[113,31,77,1.0],[113,31,78,1.0],[113,31,79,1.0],[113,32,64,1.0],[113,32,65,1.0],[113,32,66,1.0],[113,32,67,1.0],[113,32,68,1.0],[113,32,69,1.0],[113,32,70,1.0],[113,32,71,1.0],[113,32,72,1.0],[113,32,73,1.0],[113,32,74,1.0],[113,32,75,1.0],[113,32,76,1.0],[113,32,77,1.0],[113,32,78,1.0],[113,32,79,1.0],[113,33,64,1.0],[113,33,65,1.0],[113,33,66,1.0],[113,33,67,1.0],[113,33,68,1.0],[113,33,69,1.0],[113,33,70,1.0],[113,33,71,1.0],[113,33,72,1.0],[113,33,73,1.0],[113,33,74,1.0],[113,33,75,1.0],[113,33,76,1.0],[113,33,77,1.0],[113,33,78,1.0],[113,33,79,1.0],[113,34,64,1.0],[113,34,65,1.0],[113,34,66,1.0],[113,34,67,1.0],[113,34,68,1.0],[113,34,69,1.0],[113,34,70,1.0],[113,34,71,1.0],[113,34,72,1.0],[113,34,73,1.0],[113,34,74,1.0],[113,34,75,1.0],[113,34,76,1.0],[113,34,77,1.0],[113,34,78,1.0],[113,34,79,1.0],[113,35,64,1.0],[113,35,65,1.0],[113,35,66,1.0],[113,35,67,1.0],[113,35,68,1.0],[113,35,69,1.0],[113,35,70,1.0],[113,35,71,1.0],[113,35,72,1.0],[113,35,73,1.0],[113,35,74,1.0],[113,35,75,1.0],[113,35,76,1.0],[113,35,77,1.0],[113,35,78,1.0],[113,35,79,1.0],[113,36,64,1.0],[113,36,65,1.0],[113,36,66,1.0],[113,36,67,1.0],[113,36,68,1.0],[113,36,69,1.0],[113,36,70,1.0],[113,36,71,1.0],[113,36,72,1.0],[113,36,73,1.0],[113,36,74,1.0],[113,36,75,1.0],[113,36,76,1.0],[113,36,77,1.0],[113,36,78,1.0],[113,36,79,1.0],[113,37,64,1.0],[113,37,65,1.0],[113,37,66,1.0],[113,37,67,1.0],[113,37,68,1.0],[113,37,69,1.0],[113,37,70,1.0],[113,37,71,1.0],[113,37,72,1.0],[113,37,73,1.0],[113,37,74,1.0],[113,37,75,1.0],[113,37,76,1.0],[113,37,77,1.0],[113,37,78,1.0],[113,37,79,1.0],[113,38,64,1.0],[113,38,65,1.0],[113,38,66,1.0],[113,38,67,1.0],[113,38,68,1.0],[113,38,69,1.0],[113,38,70,1.0],[113,38,71,1.0],[113,38,72,1.0],[113,38,73,1.0],[113,38,74,1.0],[113,38,75,1.0],[113,38,76,1.0],[113,38,77,1.0],[113,38,78,1.0],[113,38,79,1.0],[113,39,64,1.0],[113,39,65,1.0],[113,39,66,1.0],[113,39,67,1.0],[113,39,68,1.0],[113,39,69,1.0],[113,39,70,1.0],[113,39,71,1.0],[113,39,72,1.0],[113,39,73,1.0],[113,39,74,1.0],[113,39,75,1.0],[113,39,76,1.0],[113,39,77,1.0],[113,39,78,1.0],[113,39,79,1.0],[113,40,64,1.0],[113,40,65,1.0],[113,40,66,1.0],[113,40,67,1.0],[113,40,68,1.0],[113,40,69,1.0],[113,40,70,1.0],[113,40,71,1.0],[113,40,72,1.0],[113,40,73,1.0],[113,40,74,1.0],[113,40,75,1.0],[113,40,76,1.0],[113,40,77,1.0],[113,40,78,1.0],[113,40,79,1.0],[113,41,64,1.0],[113,41,65,1.0],[113,41,66,1.0],[113,41,67,1.0],[113,41,68,1.0],[113,41,69,1.0],[113,41,70,1.0],[113,41,71,1.0],[113,41,72,1.0],[113,41,73,1.0],[113,41,74,1.0],[113,41,75,1.0],[113,41,76,1.0],[113,41,77,1.0],[113,41,78,1.0],[113,41,79,1.0],[113,42,64,1.0],[113,42,65,1.0],[113,42,66,1.0],[113,42,67,1.0],[113,42,68,1.0],[113,42,69,1.0],[113,42,70,1.0],[113,42,71,1.0],[113,42,72,1.0],[113,42,73,1.0],[113,42,74,1.0],[113,42,75,1.0],[113,42,76,1.0],[113,42,77,1.0],[113,42,78,1.0],[113,42,79,1.0],[113,43,64,1.0],[113,43,65,1.0],[113,43,66,1.0],[113,43,67,1.0],[113,43,68,1.0],[113,43,69,1.0],[113,43,70,1.0],[113,43,71,1.0],[113,43,72,1.0],[113,43,73,1.0],[113,43,74,1.0],[113,43,75,1.0],[113,43,76,1.0],[113,43,77,1.0],[113,43,78,1.0],[113,43,79,1.0],[113,44,64,1.0],[113,44,65,1.0],[113,44,66,1.0],[113,44,67,1.0],[113,44,68,1.0],[113,44,69,1.0],[113,44,70,1.0],[113,44,71,1.0],[113,44,72,1.0],[113,44,73,1.0],[113,44,74,1.0],[113,44,75,1.0],[113,44,76,1.0],[113,44,77,1.0],[113,44,78,1.0],[113,44,79,1.0],[113,45,64,1.0],[113,45,65,1.0],[113,45,66,1.0],[113,45,67,1.0],[113,45,68,1.0],[113,45,69,1.0],[113,45,70,1.0],[113,45,71,1.0],[113,45,72,1.0],[113,45,73,1.0],[113,45,74,1.0],[113,45,75,1.0],[113,45,76,1.0],[113,45,77,1.0],[113,45,78,1.0],[113,45,79,1.0],[113,46,64,1.0],[113,46,65,1.0],[113,46,66,1.0],[113,46,67,1.0],[113,46,68,1.0],[113,46,69,1.0],[113,46,70,1.0],[113,46,71,1.0],[113,46,72,1.0],[113,46,73,1.0],[113,46,74,1.0],[113,46,75,1.0],[113,46,76,1.0],[113,46,77,1.0],[113,46,78,1.0],[113,46,79,1.0],[113,47,64,1.0],[113,47,65,1.0],[113,47,66,1.0],[113,47,67,1.0],[113,47,68,1.0],[113,47,69,1.0],[113,47,70,1.0],[113,47,71,1.0],[113,47,72,1.0],[113,47,73,1.0],[113,47,74,1.0],[113,47,75,1.0],[113,47,76,1.0],[113,47,77,1.0],[113,47,78,1.0],[113,47,79,1.0],[113,48,64,1.0],[113,48,65,1.0],[113,48,66,1.0],[113,48,67,1.0],[113,48,68,1.0],[113,48,69,1.0],[113,48,70,1.0],[113,48,71,1.0],[113,48,72,1.0],[113,48,73,1.0],[113,48,74,1.0],[113,48,75,1.0],[113,48,76,1.0],[113,48,77,1.0],[113,48,78,1.0],[113,48,79,1.0],[113,49,64,1.0],[113,49,65,1.0],[113,49,66,1.0],[113,49,67,1.0],[113,49,68,1.0],[113,49,69,1.0],[113,49,70,1.0],[113,49,71,1.0],[113,49,72,1.0],[113,49,73,1.0],[113,49,74,1.0],[113,49,75,1.0],[113,49,76,1.0],[113,49,77,1.0],[113,49,78,1.0],[113,49,79,1.0],[113,50,64,1.0],[113,50,65,1.0],[113,50,66,1.0],[113,50,67,1.0],[113,50,68,1.0],[113,50,69,1.0],[113,50,70,1.0],[113,50,71,1.0],[113,50,72,1.0],[113,50,73,1.0],[113,50,74,1.0],[113,50,75,1.0],[113,50,76,1.0],[113,50,77,1.0],[113,50,78,1.0],[113,50,79,1.0],[113,51,64,1.0],[113,51,65,1.0],[113,51,66,1.0],[113,51,67,1.0],[113,51,68,1.0],[113,51,69,1.0],[113,51,70,1.0],[113,51,71,1.0],[113,51,72,1.0],[113,51,73,1.0],[113,51,74,1.0],[113,51,75,1.0],[113,51,76,1.0],[113,51,77,1.0],[113,51,78,1.0],[113,51,79,1.0],[113,52,64,1.0],[113,52,65,1.0],[113,52,66,1.0],[113,52,67,1.0],[113,52,68,1.0],[113,52,69,1.0],[113,52,70,1.0],[113,52,71,1.0],[113,52,72,1.0],[113,52,73,1.0],[113,52,74,1.0],[113,52,75,1.0],[113,52,76,1.0],[113,52,77,1.0],[113,52,78,1.0],[113,52,79,1.0],[113,53,64,1.0],[113,53,65,1.0],[113,53,66,1.0],[113,53,67,1.0],[113,53,68,1.0],[113,53,69,1.0],[113,53,70,1.0],[113,53,71,1.0],[113,53,72,1.0],[113,53,73,1.0],[113,53,74,1.0],[113,53,75,1.0],[113,53,76,1.0],[113,53,77,1.0],[113,53,78,1.0],[113,53,79,1.0],[113,54,64,1.0],[113,54,65,1.0],[113,54,66,1.0],[113,54,67,1.0],[113,54,68,1.0],[113,54,69,1.0],[113,54,70,1.0],[113,54,71,1.0],[113,54,72,1.0],[113,54,73,1.0],[113,54,74,1.0],[113,54,75,1.0],[113,54,76,1.0],[113,54,77,1.0],[113,54,78,1.0],[113,54,79,1.0],[113,55,64,1.0],[113,55,65,1.0],[113,55,66,1.0],[113,55,67,1.0],[113,55,68,1.0],[113,55,69,1.0],[113,55,70,1.0],[113,55,71,1.0],[113,55,72,1.0],[113,55,73,1.0],[113,55,74,1.0],[113,55,75,1.0],[113,55,76,1.0],[113,55,77,1.0],[113,55,78,1.0],[113,55,79,1.0],[113,56,64,1.0],[113,56,65,1.0],[113,56,66,1.0],[113,56,67,1.0],[113,56,68,1.0],[113,56,69,1.0],[113,56,70,1.0],[113,56,71,1.0],[113,56,72,1.0],[113,56,73,1.0],[113,56,74,1.0],[113,56,75,1.0],[113,56,76,1.0],[113,56,77,1.0],[113,56,78,1.0],[113,56,79,1.0],[113,57,64,1.0],[113,57,65,1.0],[113,57,66,1.0],[113,57,67,1.0],[113,57,68,1.0],[113,57,69,1.0],[113,57,70,1.0],[113,57,71,1.0],[113,57,72,1.0],[113,57,73,1.0],[113,57,74,1.0],[113,57,75,1.0],[113,57,76,1.0],[113,57,77,1.0],[113,57,78,1.0],[113,57,79,1.0],[113,58,64,1.0],[113,58,65,1.0],[113,58,66,1.0],[113,58,67,1.0],[113,58,68,1.0],[113,58,69,1.0],[113,58,70,1.0],[113,58,71,1.0],[113,58,72,1.0],[113,58,73,1.0],[113,58,74,1.0],[113,58,75,1.0],[113,58,76,1.0],[113,58,77,1.0],[113,58,78,1.0],[113,58,79,1.0],[113,59,64,1.0],[113,59,65,1.0],[113,59,66,1.0],[113,59,67,1.0],[113,59,68,1.0],[113,59,69,1.0],[113,59,70,1.0],[113,59,71,1.0],[113,59,72,1.0],[113,59,73,1.0],[113,59,74,1.0],[113,59,75,1.0],[113,59,76,1.0],[113,59,77,1.0],[113,59,78,1.0],[113,59,79,1.0],[113,60,64,1.0],[113,60,65,1.0],[113,60,66,1.0],[113,60,67,1.0],[113,60,68,1.0],[113,60,69,1.0],[113,60,70,1.0],[113,60,71,1.0],[113,60,72,1.0],[113,60,73,1.0],[113,60,74,1.0],[113,60,75,1.0],[113,60,76,1.0],[113,60,77,1.0],[113,60,78,1.0],[113,60,79,1.0],[113,61,64,1.0],[113,61,65,1.0],[113,61,66,1.0],[113,61,67,1.0],[113,61,68,1.0],[113,61,69,1.0],[113,61,70,1.0],[113,61,71,1.0],[113,61,72,1.0],[113,61,73,1.0],[113,61,74,1.0],[113,61,75,1.0],[113,61,76,1.0],[113,61,77,1.0],[113,61,78,1.0],[113,61,79,1.0],[113,62,64,1.0],[113,62,65,1.0],[113,62,66,1.0],[113,62,67,1.0],[113,62,68,1.0],[113,62,69,1.0],[113,62,70,1.0],[113,62,71,1.0],[113,62,72,1.0],[113,62,73,1.0],[113,62,74,1.0],[113,62,75,1.0],[113,62,76,1.0],[113,62,77,1.0],[113,62,78,1.0],[113,62,79,1.0],[113,63,64,1.0],[113,63,65,1.0],[113,63,66,1.0],[113,63,67,1.0],[113,63,68,1.0],[113,63,69,1.0],[113,63,70,1.0],[113,63,71,1.0],[113,63,72,1.0],[113,63,73,1.0],[113,63,74,1.0],[113,63,75,1.0],[113,63,76,1.0],[113,63,77,1.0],[113,63,78,1.0],[113,63,79,1.0],[113,64,64,1.0],[113,64,65,1.0],[113,64,66,1.0],[113,64,67,1.0],[113,64,68,1.0],[113,64,69,1.0],[113,64,70,1.0],[113,64,71,1.0],[113,64,72,1.0],[113,64,73,1.0],[113,64,74,1.0],[113,64,75,1.0],[113,64,76,1.0],[113,64,77,1.0],[113,64,78,1.0],[113,64,79,1.0],[113,65,64,1.0],[113,65,65,1.0],[113,65,66,1.0],[113,65,67,1.0],[113,65,68,1.0],[113,65,69,1.0],[113,65,70,1.0],[113,65,71,1.0],[113,65,72,1.0],[113,65,73,1.0],[113,65,74,1.0],[113,65,75,1.0],[113,65,76,1.0],[113,65,77,1.0],[113,65,78,1.0],[113,65,79,1.0],[113,66,64,1.0],[113,66,65,1.0],[113,66,66,1.0],[113,66,67,1.0],[113,66,68,1.0],[113,66,69,1.0],[113,66,70,1.0],[113,66,71,1.0],[113,66,72,1.0],[113,66,73,1.0],[113,66,74,1.0],[113,66,75,1.0],[113,66,76,1.0],[113,66,77,1.0],[113,66,78,1.0],[113,66,79,1.0],[113,67,64,1.0],[113,67,65,1.0],[113,67,66,1.0],[113,67,67,1.0],[113,67,68,1.0],[113,67,69,1.0],[113,67,70,1.0],[113,67,71,1.0],[113,67,72,1.0],[113,67,73,1.0],[113,67,74,1.0],[113,67,75,1.0],[113,67,76,1.0],[113,67,77,1.0],[113,67,78,1.0],[113,67,79,1.0],[113,68,64,1.0],[113,68,65,1.0],[113,68,66,1.0],[113,68,67,1.0],[113,68,68,1.0],[113,68,69,1.0],[113,68,70,1.0],[113,68,71,1.0],[113,68,72,1.0],[113,68,73,1.0],[113,68,74,1.0],[113,68,75,1.0],[113,68,76,1.0],[113,68,77,1.0],[113,68,78,1.0],[113,68,79,1.0],[113,69,64,1.0],[113,69,65,1.0],[113,69,66,1.0],[113,69,67,1.0],[113,69,68,1.0],[113,69,69,1.0],[113,69,70,1.0],[113,69,71,1.0],[113,69,72,1.0],[113,69,73,1.0],[113,69,74,1.0],[113,69,75,1.0],[113,69,76,1.0],[113,69,77,1.0],[113,69,78,1.0],[113,69,79,1.0],[113,70,64,1.0],[113,70,65,1.0],[113,70,66,1.0],[113,70,67,1.0],[113,70,68,1.0],[113,70,69,1.0],[113,70,70,1.0],[113,70,71,1.0],[113,70,72,1.0],[113,70,73,1.0],[113,70,74,1.0],[113,70,75,1.0],[113,70,76,1.0],[113,70,77,1.0],[113,70,78,1.0],[113,70,79,1.0],[113,71,64,1.0],[113,71,65,1.0],[113,71,66,1.0],[113,71,67,1.0],[113,71,68,1.0],[113,71,69,1.0],[113,71,70,1.0],[113,71,71,1.0],[113,71,72,1.0],[113,71,73,1.0],[113,71,74,1.0],[113,71,75,1.0],[113,71,76,1.0],[113,71,77,1.0],[113,71,78,1.0],[113,71,79,1.0],[113,72,64,1.0],[113,72,65,1.0],[113,72,66,1.0],[113,72,67,1.0],[113,72,68,1.0],[113,72,69,1.0],[113,72,70,1.0],[113,72,71,1.0],[113,72,72,1.0],[113,72,73,1.0],[113,72,74,1.0],[113,72,75,1.0],[113,72,76,1.0],[113,72,77,1.0],[113,72,78,1.0],[113,72,79,1.0],[113,73,64,1.0],[113,73,65,1.0],[113,73,66,1.0],[113,73,67,1.0],[113,73,68,1.0],[113,73,69,1.0],[113,73,70,1.0],[113,73,71,1.0],[113,73,72,1.0],[113,73,73,1.0],[113,73,74,1.0],[113,73,75,1.0],[113,73,76,1.0],[113,73,77,1.0],[113,73,78,1.0],[113,73,79,1.0],[113,74,64,1.0],[113,74,65,1.0],[113,74,66,1.0],[113,74,67,1.0],[113,74,68,1.0],[113,74,69,1.0],[113,74,70,1.0],[113,74,71,1.0],[113,74,72,1.0],[113,74,73,1.0],[113,74,74,1.0],[113,74,75,1.0],[113,74,76,1.0],[113,74,77,1.0],[113,74,78,1.0],[113,74,79,1.0],[113,75,64,1.0],[113,75,65,1.0],[113,75,66,1.0],[113,75,67,1.0],[113,75,68,1.0],[113,75,69,1.0],[113,75,70,1.0],[113,75,71,1.0],[113,75,72,1.0],[113,75,73,1.0],[113,75,74,1.0],[113,75,75,1.0],[113,75,76,1.0],[113,75,77,1.0],[113,75,78,1.0],[113,75,79,1.0],[113,76,64,1.0],[113,76,65,1.0],[113,76,66,1.0],[113,76,67,1.0],[113,76,68,1.0],[113,76,69,1.0],[113,76,70,1.0],[113,76,71,1.0],[113,76,72,1.0],[113,76,73,1.0],[113,76,74,1.0],[113,76,75,1.0],[113,76,76,1.0],[113,76,77,1.0],[113,76,78,1.0],[113,76,79,1.0],[113,77,64,1.0],[113,77,65,1.0],[113,77,66,1.0],[113,77,67,1.0],[113,77,68,1.0],[113,77,69,1.0],[113,77,70,1.0],[113,77,71,1.0],[113,77,72,1.0],[113,77,73,1.0],[113,77,74,1.0],[113,77,75,1.0],[113,77,76,1.0],[113,77,77,1.0],[113,77,78,1.0],[113,77,79,1.0],[113,78,64,1.0],[113,78,65,1.0],[113,78,66,1.0],[113,78,67,1.0],[113,78,68,1.0],[113,78,69,1.0],[113,78,70,1.0],[113,78,71,1.0],[113,78,72,1.0],[113,78,73,1.0],[113,78,74,1.0],[113,78,75,1.0],[113,78,76,1.0],[113,78,77,1.0],[113,78,78,1.0],[113,78,79,1.0],[113,79,64,1.0],[113,79,65,1.0],[113,79,66,1.0],[113,79,67,1.0],[113,79,68,1.0],[113,79,69,1.0],[113,79,70,1.0],[113,79,71,1.0],[113,79,72,1.0],[113,79,73,1.0],[113,79,74,1.0],[113,79,75,1.0],[113,79,76,1.0],[113,79,77,1.0],[113,79,78,1.0],[113,79,79,1.0],[113,80,64,1.0],[113,80,65,1.0],[113,80,66,1.0],[113,80,67,1.0],[113,80,68,1.0],[113,80,69,1.0],[113,80,70,1.0],[113,80,71,1.0],[113,80,72,1.0],[113,80,73,1.0],[113,80,74,1.0],[113,80,75,1.0],[113,80,76,1.0],[113,80,77,1.0],[113,80,78,1.0],[113,80,79,1.0],[113,81,64,1.0],[113,81,65,1.0],[113,81,66,1.0],[113,81,67,1.0],[113,81,68,1.0],[113,81,69,1.0],[113,81,70,1.0],[113,81,71,1.0],[113,81,72,1.0],[113,81,73,1.0],[113,81,74,1.0],[113,81,75,1.0],[113,81,76,1.0],[113,81,77,1.0],[113,81,78,1.0],[113,81,79,1.0],[113,82,64,1.0],[113,82,65,1.0],[113,82,66,1.0],[113,82,67,1.0],[113,82,68,1.0],[113,82,69,1.0],[113,82,70,1.0],[113,82,71,1.0],[113,82,72,1.0],[113,82,73,1.0],[113,82,74,1.0],[113,82,75,1.0],[113,82,76,1.0],[113,82,77,1.0],[113,82,78,1.0],[113,82,79,1.0],[113,83,64,1.0],[113,83,65,1.0],[113,83,66,1.0],[113,83,67,1.0],[113,83,68,1.0],[113,83,69,1.0],[113,83,70,1.0],[113,83,71,1.0],[113,83,72,1.0],[113,83,73,1.0],[113,83,74,1.0],[113,83,75,1.0],[113,83,76,1.0],[113,83,77,1.0],[113,83,78,1.0],[113,83,79,1.0],[113,84,64,1.0],[113,84,65,1.0],[113,84,66,1.0],[113,84,67,1.0],[113,84,68,1.0],[113,84,69,1.0],[113,84,70,1.0],[113,84,71,1.0],[113,84,72,1.0],[113,84,73,1.0],[113,84,74,1.0],[113,84,75,1.0],[113,84,76,1.0],[113,84,77,1.0],[113,84,78,1.0],[113,84,79,1.0],[113,85,64,1.0],[113,85,65,1.0],[113,85,66,1.0],[113,85,67,1.0],[113,85,68,1.0],[113,85,69,1.0],[113,85,70,1.0],[113,85,71,1.0],[113,85,72,1.0],[113,85,73,1.0],[113,85,74,1.0],[113,85,75,1.0],[113,85,76,1.0],[113,85,77,1.0],[113,85,78,1.0],[113,85,79,1.0],[113,86,64,1.0],[113,86,65,1.0],[113,86,66,1.0],[113,86,67,1.0],[113,86,68,1.0],[113,86,69,1.0],[113,86,70,1.0],[113,86,71,1.0],[113,86,72,1.0],[113,86,73,1.0],[113,86,74,1.0],[113,86,75,1.0],[113,86,76,1.0],[113,86,77,1.0],[113,86,78,1.0],[113,86,79,1.0],[113,87,64,1.0],[113,87,65,1.0],[113,87,66,1.0],[113,87,67,1.0],[113,87,68,1.0],[113,87,69,1.0],[113,87,70,1.0],[113,87,71,1.0],[113,87,72,1.0],[113,87,73,1.0],[113,87,74,1.0],[113,87,75,1.0],[113,87,76,1.0],[113,87,77,1.0],[113,87,78,1.0],[113,87,79,1.0],[113,88,64,1.0],[113,88,65,1.0],[113,88,66,1.0],[113,88,67,1.0],[113,88,68,1.0],[113,88,69,1.0],[113,88,70,1.0],[113,88,71,1.0],[113,88,72,1.0],[113,88,73,1.0],[113,88,74,1.0],[113,88,75,1.0],[113,88,76,1.0],[113,88,77,1.0],[113,88,78,1.0],[113,88,79,1.0],[113,89,64,1.0],[113,89,65,1.0],[113,89,66,1.0],[113,89,67,1.0],[113,89,68,1.0],[113,89,69,1.0],[113,89,70,1.0],[113,89,71,1.0],[113,89,72,1.0],[113,89,73,1.0],[113,89,74,1.0],[113,89,75,1.0],[113,89,76,1.0],[113,89,77,1.0],[113,89,78,1.0],[113,89,79,1.0],[113,90,64,1.0],[113,90,65,1.0],[113,90,66,1.0],[113,90,67,1.0],[113,90,68,1.0],[113,90,69,1.0],[113,90,70,1.0],[113,90,71,1.0],[113,90,72,1.0],[113,90,73,1.0],[113,90,74,1.0],[113,90,75,1.0],[113,90,76,1.0],[113,90,77,1.0],[113,90,78,1.0],[113,90,79,1.0],[113,91,64,1.0],[113,91,65,1.0],[113,91,66,1.0],[113,91,67,1.0],[113,91,68,1.0],[113,91,69,1.0],[113,91,70,1.0],[113,91,71,1.0],[113,91,72,1.0],[113,91,73,1.0],[113,91,74,1.0],[113,91,75,1.0],[113,91,76,1.0],[113,91,77,1.0],[113,91,78,1.0],[113,91,79,1.0],[113,92,64,1.0],[113,92,65,1.0],[113,92,66,1.0],[113,92,67,1.0],[113,92,68,1.0],[113,92,69,1.0],[113,92,70,1.0],[113,92,71,1.0],[113,92,72,1.0],[113,92,73,1.0],[113,92,74,1.0],[113,92,75,1.0],[113,92,76,1.0],[113,92,77,1.0],[113,92,78,1.0],[113,92,79,1.0],[113,93,64,1.0],[113,93,65,1.0],[113,93,66,1.0],[113,93,67,1.0],[113,93,68,1.0],[113,93,69,1.0],[113,93,70,1.0],[113,93,71,1.0],[113,93,72,1.0],[113,93,73,1.0],[113,93,74,1.0],[113,93,75,1.0],[113,93,76,1.0],[113,93,77,1.0],[113,93,78,1.0],[113,93,79,1.0],[113,94,64,1.0],[113,94,65,1.0],[113,94,66,1.0],[113,94,67,1.0],[113,94,68,1.0],[113,94,69,1.0],[113,94,70,1.0],[113,94,71,1.0],[113,94,72,1.0],[113,94,73,1.0],[113,94,74,1.0],[113,94,75,1.0],[113,94,76,1.0],[113,94,77,1.0],[113,94,78,1.0],[113,94,79,1.0],[113,95,64,1.0],[113,95,65,1.0],[113,95,66,1.0],[113,95,67,1.0],[113,95,68,1.0],[113,95,69,1.0],[113,95,70,1.0],[113,95,71,1.0],[113,95,72,1.0],[113,95,73,1.0],[113,95,74,1.0],[113,95,75,1.0],[113,95,76,1.0],[113,95,77,1.0],[113,95,78,1.0],[113,95,79,1.0],[113,96,64,1.0],[113,96,65,1.0],[113,96,66,1.0],[113,96,67,1.0],[113,96,68,1.0],[113,96,69,1.0],[113,96,70,1.0],[113,96,71,1.0],[113,96,72,1.0],[113,96,73,1.0],[113,96,74,1.0],[113,96,75,1.0],[113,96,76,1.0],[113,96,77,1.0],[113,96,78,1.0],[113,96,79,1.0],[113,97,64,1.0],[113,97,65,1.0],[113,97,66,1.0],[113,97,67,1.0],[113,97,68,1.0],[113,97,69,1.0],[113,97,70,1.0],[113,97,71,1.0],[113,97,72,1.0],[113,97,73,1.0],[113,97,74,1.0],[113,97,75,1.0],[113,97,76,1.0],[113,97,77,1.0],[113,97,78,1.0],[113,97,79,1.0],[113,98,64,1.0],[113,98,65,1.0],[113,98,66,1.0],[113,98,67,1.0],[113,98,68,1.0],[113,98,69,1.0],[113,98,70,1.0],[113,98,71,1.0],[113,98,72,1.0],[113,98,73,1.0],[113,98,74,1.0],[113,98,75,1.0],[113,98,76,1.0],[113,98,77,1.0],[113,98,78,1.0],[113,98,79,1.0],[113,99,64,1.0],[113,99,65,1.0],[113,99,66,1.0],[113,99,67,1.0],[113,99,68,1.0],[113,99,69,1.0],[113,99,70,1.0],[113,99,71,1.0],[113,99,72,1.0],[113,99,73,1.0],[113,99,74,1.0],[113,99,75,1.0],[113,99,76,1.0],[113,99,77,1.0],[113,99,78,1.0],[113,99,79,1.0],[113,100,64,1.0],[113,100,65,1.0],[113,100,66,1.0],[113,100,67,1.0],[113,100,68,1.0],[113,100,69,1.0],[113,100,70,1.0],[113,100,71,1.0],[113,100,72,1.0],[113,100,73,1.0],[113,100,74,1.0],[113,100,75,1.0],[113,100,76,1.0],[113,100,77,1.0],[113,100,78,1.0],[113,100,79,1.0],[113,101,64,1.0],[113,101,65,1.0],[113,101,66,1.0],[113,101,67,1.0],[113,101,68,1.0],[113,101,69,1.0],[113,101,70,1.0],[113,101,71,1.0],[113,101,72,1.0],[113,101,73,1.0],[113,101,74,1.0],[113,101,75,1.0],[113,101,76,1.0],[113,101,77,1.0],[113,101,78,1.0],[113,101,79,1.0],[113,102,64,1.0],[113,102,65,1.0],[113,102,66,1.0],[113,102,67,1.0],[113,102,68,1.0],[113,102,69,1.0],[113,102,70,1.0],[113,102,71,1.0],[113,102,72,1.0],[113,102,73,1.0],[113,102,74,1.0],[113,102,75,1.0],[113,102,76,1.0],[113,102,77,1.0],[113,102,78,1.0],[113,102,79,1.0],[113,103,64,1.0],[113,103,65,1.0],[113,103,66,1.0],[113,103,67,1.0],[113,103,68,1.0],[113,103,69,1.0],[113,103,70,1.0],[113,103,71,1.0],[113,103,72,1.0],[113,103,73,1.0],[113,103,74,1.0],[113,103,75,1.0],[113,103,76,1.0],[113,103,77,1.0],[113,103,78,1.0],[113,103,79,1.0],[113,104,64,1.0],[113,104,65,1.0],[113,104,66,1.0],[113,104,67,1.0],[113,104,68,1.0],[113,104,69,1.0],[113,104,70,1.0],[113,104,71,1.0],[113,104,72,1.0],[113,104,73,1.0],[113,104,74,1.0],[113,104,75,1.0],[113,104,76,1.0],[113,104,77,1.0],[113,104,78,1.0],[113,104,79,1.0],[113,105,64,1.0],[113,105,65,1.0],[113,105,66,1.0],[113,105,67,1.0],[113,105,68,1.0],[113,105,69,1.0],[113,105,70,1.0],[113,105,71,1.0],[113,105,72,1.0],[113,105,73,1.0],[113,105,74,1.0],[113,105,75,1.0],[113,105,76,1.0],[113,105,77,1.0],[113,105,78,1.0],[113,105,79,1.0],[113,106,64,1.0],[113,106,65,1.0],[113,106,66,1.0],[113,106,67,1.0],[113,106,68,1.0],[113,106,69,1.0],[113,106,70,1.0],[113,106,71,1.0],[113,106,72,1.0],[113,106,73,1.0],[113,106,74,1.0],[113,106,75,1.0],[113,106,76,1.0],[113,106,77,1.0],[113,106,78,1.0],[113,106,79,1.0],[113,107,64,1.0],[113,107,65,1.0],[113,107,66,1.0],[113,107,67,1.0],[113,107,68,1.0],[113,107,69,1.0],[113,107,70,1.0],[113,107,71,1.0],[113,107,72,1.0],[113,107,73,1.0],[113,107,74,1.0],[113,107,75,1.0],[113,107,76,1.0],[113,107,77,1.0],[113,107,78,1.0],[113,107,79,1.0],[113,108,64,1.0],[113,108,65,1.0],[113,108,66,1.0],[113,108,67,1.0],[113,108,68,1.0],[113,108,69,1.0],[113,108,70,1.0],[113,108,71,1.0],[113,108,72,1.0],[113,108,73,1.0],[113,108,74,1.0],[113,108,75,1.0],[113,108,76,1.0],[113,108,77,1.0],[113,108,78,1.0],[113,108,79,1.0],[113,109,64,1.0],[113,109,65,1.0],[113,109,66,1.0],[113,109,67,1.0],[113,109,68,1.0],[113,109,69,1.0],[113,109,70,1.0],[113,109,71,1.0],[113,109,72,1.0],[113,109,73,1.0],[113,109,74,1.0],[113,109,75,1.0],[113,109,76,1.0],[113,109,77,1.0],[113,109,78,1.0],[113,109,79,1.0],[113,110,64,1.0],[113,110,65,1.0],[113,110,66,1.0],[113,110,67,1.0],[113,110,68,1.0],[113,110,69,1.0],[113,110,70,1.0],[113,110,71,1.0],[113,110,72,1.0],[113,110,73,1.0],[113,110,74,1.0],[113,110,75,1.0],[113,110,76,1.0],[113,110,77,1.0],[113,110,78,1.0],[113,110,79,1.0],[113,111,64,1.0],[113,111,65,1.0],[113,111,66,1.0],[113,111,67,1.0],[113,111,68,1.0],[113,111,69,1.0],[113,111,70,1.0],[113,111,71,1.0],[113,111,72,1.0],[113,111,73,1.0],[113,111,74,1.0],[113,111,75,1.0],[113,111,76,1.0],[113,111,77,1.0],[113,111,78,1.0],[113,111,79,1.0],[113,112,64,1.0],[113,112,65,1.0],[113,112,66,1.0],[113,112,67,1.0],[113,112,68,1.0],[113,112,69,1.0],[113,112,70,1.0],[113,112,71,1.0],[113,112,72,1.0],[113,112,73,1.0],[113,112,74,1.0],[113,112,75,1.0],[113,112,76,1.0],[113,112,77,1.0],[113,112,78,1.0],[113,112,79,1.0],[113,113,64,1.0],[113,113,65,1.0],[113,113,66,1.0],[113,113,67,1.0],[113,113,68,1.0],[113,113,69,1.0],[113,113,70,1.0],[113,113,71,1.0],[113,113,72,1.0],[113,113,73,1.0],[113,113,74,1.0],[113,113,75,1.0],[113,113,76,1.0],[113,113,77,1.0],[113,113,78,1.0],[113,113,79,1.0],[113,114,64,1.0],[113,114,65,1.0],[113,114,66,1.0],[113,114,67,1.0],[113,114,68,1.0],[113,114,69,1.0],[113,114,70,1.0],[113,114,71,1.0],[113,114,72,1.0],[113,114,73,1.0],[113,114,74,1.0],[113,114,75,1.0],[113,114,76,1.0],[113,114,77,1.0],[113,114,78,1.0],[113,114,79,1.0],[113,115,64,1.0],[113,115,65,1.0],[113,115,66,1.0],[113,115,67,1.0],[113,115,68,1.0],[113,115,69,1.0],[113,115,70,1.0],[113,115,71,1.0],[113,115,72,1.0],[113,115,73,1.0],[113,115,74,1.0],[113,115,75,1.0],[113,115,76,1.0],[113,115,77,1.0],[113,115,78,1.0],[113,115,79,1.0],[113,116,64,1.0],[113,116,65,1.0],[113,116,66,1.0],[113,116,67,1.0],[113,116,68,1.0],[113,116,69,1.0],[113,116,70,1.0],[113,116,71,1.0],[113,116,72,1.0],[113,116,73,1.0],[113,116,74,1.0],[113,116,75,1.0],[113,116,76,1.0],[113,116,77,1.0],[113,116,78,1.0],[113,116,79,1.0],[113,117,64,1.0],[113,117,65,1.0],[113,117,66,1.0],[113,117,67,1.0],[113,117,68,1.0],[113,117,69,1.0],[113,117,70,1.0],[113,117,71,1.0],[113,117,72,1.0],[113,117,73,1.0],[113,117,74,1.0],[113,117,75,1.0],[113,117,76,1.0],[113,117,77,1.0],[113,117,78,1.0],[113,117,79,1.0],[113,118,64,1.0],[113,118,65,1.0],[113,118,66,1.0],[113,118,67,1.0],[113,118,68,1.0],[113,118,69,1.0],[113,118,70,1.0],[113,118,71,1.0],[113,118,72,1.0],[113,118,73,1.0],[113,118,74,1.0],[113,118,75,1.0],[113,118,76,1.0],[113,118,77,1.0],[113,118,78,1.0],[113,118,79,1.0],[113,119,64,1.0],[113,119,65,1.0],[113,119,66,1.0],[113,119,67,1.0],[113,119,68,1.0],[113,119,69,1.0],[113,119,70,1.0],[113,119,71,1.0],[113,119,72,1.0],[113,119,73,1.0],[113,119,74,1.0],[113,119,75,1.0],[113,119,76,1.0],[113,119,77,1.0],[113,119,78,1.0],[113,119,79,1.0],[113,120,64,1.0],[113,120,65,1.0],[113,120,66,1.0],[113,120,67,1.0],[113,120,68,1.0],[113,120,69,1.0],[113,120,70,1.0],[113,120,71,1.0],[113,120,72,1.0],[113,120,73,1.0],[113,120,74,1.0],[113,120,75,1.0],[113,120,76,1.0],[113,120,77,1.0],[113,120,78,1.0],[113,120,79,1.0],[113,121,64,1.0],[113,121,65,1.0],[113,121,66,1.0],[113,121,67,1.0],[113,121,68,1.0],[113,121,69,1.0],[113,121,70,1.0],[113,121,71,1.0],[113,121,72,1.0],[113,121,73,1.0],[113,121,74,1.0],[113,121,75,1.0],[113,121,76,1.0],[113,121,77,1.0],[113,121,78,1.0],[113,121,79,1.0],[113,122,64,1.0],[113,122,65,1.0],[113,122,66,1.0],[113,122,67,1.0],[113,122,68,1.0],[113,122,69,1.0],[113,122,70,1.0],[113,122,71,1.0],[113,122,72,1.0],[113,122,73,1.0],[113,122,74,1.0],[113,122,75,1.0],[113,122,76,1.0],[113,122,77,1.0],[113,122,78,1.0],[113,122,79,1.0],[113,123,64,1.0],[113,123,65,1.0],[113,123,66,1.0],[113,123,67,1.0],[113,123,68,1.0],[113,123,69,1.0],[113,123,70,1.0],[113,123,71,1.0],[113,123,72,1.0],[113,123,73,1.0],[113,123,74,1.0],[113,123,75,1.0],[113,123,76,1.0],[113,123,77,1.0],[113,123,78,1.0],[113,123,79,1.0],[113,124,64,1.0],[113,124,65,1.0],[113,124,66,1.0],[113,124,67,1.0],[113,124,68,1.0],[113,124,69,1.0],[113,124,70,1.0],[113,124,71,1.0],[113,124,72,1.0],[113,124,73,1.0],[113,124,74,1.0],[113,124,75,1.0],[113,124,76,1.0],[113,124,77,1.0],[113,124,78,1.0],[113,124,79,1.0],[113,125,64,1.0],[113,125,65,1.0],[113,125,66,1.0],[113,125,67,1.0],[113,125,68,1.0],[113,125,69,1.0],[113,125,70,1.0],[113,125,71,1.0],[113,125,72,1.0],[113,125,73,1.0],[113,125,74,1.0],[113,125,75,1.0],[113,125,76,1.0],[113,125,77,1.0],[113,125,78,1.0],[113,125,79,1.0],[113,126,64,1.0],[113,126,65,1.0],[113,126,66,1.0],[113,126,67,1.0],[113,126,68,1.0],[113,126,69,1.0],[113,126,70,1.0],[113,126,71,1.0],[113,126,72,1.0],[113,126,73,1.0],[113,126,74,1.0],[113,126,75,1.0],[113,126,76,1.0],[113,126,77,1.0],[113,126,78,1.0],[113,126,79,1.0],[113,127,64,1.0],[113,127,65,1.0],[113,127,66,1.0],[113,127,67,1.0],[113,127,68,1.0],[113,127,69,1.0],[113,127,70,1.0],[113,127,71,1.0],[113,127,72,1.0],[113,127,73,1.0],[113,127,74,1.0],[113,127,75,1.0],[113,127,76,1.0],[113,127,77,1.0],[113,127,78,1.0],[113,127,79,1.0],[113,128,64,1.0],[113,128,65,1.0],[113,128,66,1.0],[113,128,67,1.0],[113,128,68,1.0],[113,128,69,1.0],[113,128,70,1.0],[113,128,71,1.0],[113,128,72,1.0],[113,128,73,1.0],[113,128,74,1.0],[113,128,75,1.0],[113,128,76,1.0],[113,128,77,1.0],[113,128,78,1.0],[113,128,79,1.0],[113,129,64,1.0],[113,129,65,1.0],[113,129,66,1.0],[113,129,67,1.0],[113,129,68,1.0],[113,129,69,1.0],[113,129,70,1.0],[113,129,71,1.0],[113,129,72,1.0],[113,129,73,1.0],[113,129,74,1.0],[113,129,75,1.0],[113,129,76,1.0],[113,129,77,1.0],[113,129,78,1.0],[113,129,79,1.0],[113,130,64,1.0],[113,130,65,1.0],[113,130,66,1.0],[113,130,67,1.0],[113,130,68,1.0],[113,130,69,1.0],[113,130,70,1.0],[113,130,71,1.0],[113,130,72,1.0],[113,130,73,1.0],[113,130,74,1.0],[113,130,75,1.0],[113,130,76,1.0],[113,130,77,1.0],[113,130,78,1.0],[113,130,79,1.0],[113,131,64,1.0],[113,131,65,1.0],[113,131,66,1.0],[113,131,67,1.0],[113,131,68,1.0],[113,131,69,1.0],[113,131,70,1.0],[113,131,71,1.0],[113,131,72,1.0],[113,131,73,1.0],[113,131,74,1.0],[113,131,75,1.0],[113,131,76,1.0],[113,131,77,1.0],[113,131,78,1.0],[113,131,79,1.0],[113,132,64,1.0],[113,132,65,1.0],[113,132,66,1.0],[113,132,67,1.0],[113,132,68,1.0],[113,132,69,1.0],[113,132,70,1.0],[113,132,71,1.0],[113,132,72,1.0],[113,132,73,1.0],[113,132,74,1.0],[113,132,75,1.0],[113,132,76,1.0],[113,132,77,1.0],[113,132,78,1.0],[113,132,79,1.0],[113,133,64,1.0],[113,133,65,1.0],[113,133,66,1.0],[113,133,67,1.0],[113,133,68,1.0],[113,133,69,1.0],[113,133,70,1.0],[113,133,71,1.0],[113,133,72,1.0],[113,133,73,1.0],[113,133,74,1.0],[113,133,75,1.0],[113,133,76,1.0],[113,133,77,1.0],[113,133,78,1.0],[113,133,79,1.0],[113,134,64,1.0],[113,134,65,1.0],[113,134,66,1.0],[113,134,67,1.0],[113,134,68,1.0],[113,134,69,1.0],[113,134,70,1.0],[113,134,71,1.0],[113,134,72,1.0],[113,134,73,1.0],[113,134,74,1.0],[113,134,75,1.0],[113,134,76,1.0],[113,134,77,1.0],[113,134,78,1.0],[113,134,79,1.0],[113,135,64,1.0],[113,135,65,1.0],[113,135,66,1.0],[113,135,67,1.0],[113,135,68,1.0],[113,135,69,1.0],[113,135,70,1.0],[113,135,71,1.0],[113,135,72,1.0],[113,135,73,1.0],[113,135,74,1.0],[113,135,75,1.0],[113,135,76,1.0],[113,135,77,1.0],[113,135,78,1.0],[113,135,79,1.0],[113,136,64,1.0],[113,136,65,1.0],[113,136,66,1.0],[113,136,67,1.0],[113,136,68,1.0],[113,136,69,1.0],[113,136,70,1.0],[113,136,71,1.0],[113,136,72,1.0],[113,136,73,1.0],[113,136,74,1.0],[113,136,75,1.0],[113,136,76,1.0],[113,136,77,1.0],[113,136,78,1.0],[113,136,79,1.0],[113,137,64,1.0],[113,137,65,1.0],[113,137,66,1.0],[113,137,67,1.0],[113,137,68,1.0],[113,137,69,1.0],[113,137,70,1.0],[113,137,71,1.0],[113,137,72,1.0],[113,137,73,1.0],[113,137,74,1.0],[113,137,75,1.0],[113,137,76,1.0],[113,137,77,1.0],[113,137,78,1.0],[113,137,79,1.0],[113,138,64,1.0],[113,138,65,1.0],[113,138,66,1.0],[113,138,67,1.0],[113,138,68,1.0],[113,138,69,1.0],[113,138,70,1.0],[113,138,71,1.0],[113,138,72,1.0],[113,138,73,1.0],[113,138,74,1.0],[113,138,75,1.0],[113,138,76,1.0],[113,138,77,1.0],[113,138,78,1.0],[113,138,79,1.0],[113,139,64,1.0],[113,139,65,1.0],[113,139,66,1.0],[113,139,67,1.0],[113,139,68,1.0],[113,139,69,1.0],[113,139,70,1.0],[113,139,71,1.0],[113,139,72,1.0],[113,139,73,1.0],[113,139,74,1.0],[113,139,75,1.0],[113,139,76,1.0],[113,139,77,1.0],[113,139,78,1.0],[113,139,79,1.0],[113,140,64,1.0],[113,140,65,1.0],[113,140,66,1.0],[113,140,67,1.0],[113,140,68,1.0],[113,140,69,1.0],[113,140,70,1.0],[113,140,71,1.0],[113,140,72,1.0],[113,140,73,1.0],[113,140,74,1.0],[113,140,75,1.0],[113,140,76,1.0],[113,140,77,1.0],[113,140,78,1.0],[113,140,79,1.0],[113,141,64,1.0],[113,141,65,1.0],[113,141,66,1.0],[113,141,67,1.0],[113,141,68,1.0],[113,141,69,1.0],[113,141,70,1.0],[113,141,71,1.0],[113,141,72,1.0],[113,141,73,1.0],[113,141,74,1.0],[113,141,75,1.0],[113,141,76,1.0],[113,141,77,1.0],[113,141,78,1.0],[113,141,79,1.0],[113,142,64,1.0],[113,142,65,1.0],[113,142,66,1.0],[113,142,67,1.0],[113,142,68,1.0],[113,142,69,1.0],[113,142,70,1.0],[113,142,71,1.0],[113,142,72,1.0],[113,142,73,1.0],[113,142,74,1.0],[113,142,75,1.0],[113,142,76,1.0],[113,142,77,1.0],[113,142,78,1.0],[113,142,79,1.0],[113,143,64,1.0],[113,143,65,1.0],[113,143,66,1.0],[113,143,67,1.0],[113,143,68,1.0],[113,143,69,1.0],[113,143,70,1.0],[113,143,71,1.0],[113,143,72,1.0],[113,143,73,1.0],[113,143,74,1.0],[113,143,75,1.0],[113,143,76,1.0],[113,143,77,1.0],[113,143,78,1.0],[113,143,79,1.0],[113,144,64,1.0],[113,144,65,1.0],[113,144,66,1.0],[113,144,67,1.0],[113,144,68,1.0],[113,144,69,1.0],[113,144,70,1.0],[113,144,71,1.0],[113,144,72,1.0],[113,144,73,1.0],[113,144,74,1.0],[113,144,75,1.0],[113,144,76,1.0],[113,144,77,1.0],[113,144,78,1.0],[113,144,79,1.0],[113,145,64,1.0],[113,145,65,1.0],[113,145,66,1.0],[113,145,67,1.0],[113,145,68,1.0],[113,145,69,1.0],[113,145,70,1.0],[113,145,71,1.0],[113,145,72,1.0],[113,145,73,1.0],[113,145,74,1.0],[113,145,75,1.0],[113,145,76,1.0],[113,145,77,1.0],[113,145,78,1.0],[113,145,79,1.0],[113,146,64,1.0],[113,146,65,1.0],[113,146,66,1.0],[113,146,67,1.0],[113,146,68,1.0],[113,146,69,1.0],[113,146,70,1.0],[113,146,71,1.0],[113,146,72,1.0],[113,146,73,1.0],[113,146,74,1.0],[113,146,75,1.0],[113,146,76,1.0],[113,146,77,1.0],[113,146,78,1.0],[113,146,79,1.0],[113,147,64,1.0],[113,147,65,1.0],[113,147,66,1.0],[113,147,67,1.0],[113,147,68,1.0],[113,147,69,1.0],[113,147,70,1.0],[113,147,71,1.0],[113,147,72,1.0],[113,147,73,1.0],[113,147,74,1.0],[113,147,75,1.0],[113,147,76,1.0],[113,147,77,1.0],[113,147,78,1.0],[113,147,79,1.0],[113,148,64,1.0],[113,148,65,1.0],[113,148,66,1.0],[113,148,67,1.0],[113,148,68,1.0],[113,148,69,1.0],[113,148,70,1.0],[113,148,71,1.0],[113,148,72,1.0],[113,148,73,1.0],[113,148,74,1.0],[113,148,75,1.0],[113,148,76,1.0],[113,148,77,1.0],[113,148,78,1.0],[113,148,79,1.0],[113,149,64,1.0],[113,149,65,1.0],[113,149,66,1.0],[113,149,67,1.0],[113,149,68,1.0],[113,149,69,1.0],[113,149,70,1.0],[113,149,71,1.0],[113,149,72,1.0],[113,149,73,1.0],[113,149,74,1.0],[113,149,75,1.0],[113,149,76,1.0],[113,149,77,1.0],[113,149,78,1.0],[113,149,79,1.0],[113,150,64,1.0],[113,150,65,1.0],[113,150,66,1.0],[113,150,67,1.0],[113,150,68,1.0],[113,150,69,1.0],[113,150,70,1.0],[113,150,71,1.0],[113,150,72,1.0],[113,150,73,1.0],[113,150,74,1.0],[113,150,75,1.0],[113,150,76,1.0],[113,150,77,1.0],[113,150,78,1.0],[113,150,79,1.0],[113,151,64,1.0],[113,151,65,1.0],[113,151,66,1.0],[113,151,67,1.0],[113,151,68,1.0],[113,151,69,1.0],[113,151,70,1.0],[113,151,71,1.0],[113,151,72,1.0],[113,151,73,1.0],[113,151,74,1.0],[113,151,75,1.0],[113,151,76,1.0],[113,151,77,1.0],[113,151,78,1.0],[113,151,79,1.0],[113,152,64,1.0],[113,152,65,1.0],[113,152,66,1.0],[113,152,67,1.0],[113,152,68,1.0],[113,152,69,1.0],[113,152,70,1.0],[113,152,71,1.0],[113,152,72,1.0],[113,152,73,1.0],[113,152,74,1.0],[113,152,75,1.0],[113,152,76,1.0],[113,152,77,1.0],[113,152,78,1.0],[113,152,79,1.0],[113,153,64,1.0],[113,153,65,1.0],[113,153,66,1.0],[113,153,67,1.0],[113,153,68,1.0],[113,153,69,1.0],[113,153,70,1.0],[113,153,71,1.0],[113,153,72,1.0],[113,153,73,1.0],[113,153,74,1.0],[113,153,75,1.0],[113,153,76,1.0],[113,153,77,1.0],[113,153,78,1.0],[113,153,79,1.0],[113,154,64,1.0],[113,154,65,1.0],[113,154,66,1.0],[113,154,67,1.0],[113,154,68,1.0],[113,154,69,1.0],[113,154,70,1.0],[113,154,71,1.0],[113,154,72,1.0],[113,154,73,1.0],[113,154,74,1.0],[113,154,75,1.0],[113,154,76,1.0],[113,154,77,1.0],[113,154,78,1.0],[113,154,79,1.0],[113,155,64,1.0],[113,155,65,1.0],[113,155,66,1.0],[113,155,67,1.0],[113,155,68,1.0],[113,155,69,1.0],[113,155,70,1.0],[113,155,71,1.0],[113,155,72,1.0],[113,155,73,1.0],[113,155,74,1.0],[113,155,75,1.0],[113,155,76,1.0],[113,155,77,1.0],[113,155,78,1.0],[113,155,79,1.0],[113,156,64,1.0],[113,156,65,1.0],[113,156,66,1.0],[113,156,67,1.0],[113,156,68,1.0],[113,156,69,1.0],[113,156,70,1.0],[113,156,71,1.0],[113,156,72,1.0],[113,156,73,1.0],[113,156,74,1.0],[113,156,75,1.0],[113,156,76,1.0],[113,156,77,1.0],[113,156,78,1.0],[113,156,79,1.0],[113,157,64,1.0],[113,157,65,1.0],[113,157,66,1.0],[113,157,67,1.0],[113,157,68,1.0],[113,157,69,1.0],[113,157,70,1.0],[113,157,71,1.0],[113,157,72,1.0],[113,157,73,1.0],[113,157,74,1.0],[113,157,75,1.0],[113,157,76,1.0],[113,157,77,1.0],[113,157,78,1.0],[113,157,79,1.0],[113,158,64,1.0],[113,158,65,1.0],[113,158,66,1.0],[113,158,67,1.0],[113,158,68,1.0],[113,158,69,1.0],[113,158,70,1.0],[113,158,71,1.0],[113,158,72,1.0],[113,158,73,1.0],[113,158,74,1.0],[113,158,75,1.0],[113,158,76,1.0],[113,158,77,1.0],[113,158,78,1.0],[113,158,79,1.0],[113,159,64,1.0],[113,159,65,1.0],[113,159,66,1.0],[113,159,67,1.0],[113,159,68,1.0],[113,159,69,1.0],[113,159,70,1.0],[113,159,71,1.0],[113,159,72,1.0],[113,159,73,1.0],[113,159,74,1.0],[113,159,75,1.0],[113,159,76,1.0],[113,159,77,1.0],[113,159,78,1.0],[113,159,79,1.0],[113,160,64,1.0],[113,160,65,1.0],[113,160,66,1.0],[113,160,67,1.0],[113,160,68,1.0],[113,160,69,1.0],[113,160,70,1.0],[113,160,71,1.0],[113,160,72,1.0],[113,160,73,1.0],[113,160,74,1.0],[113,160,75,1.0],[113,160,76,1.0],[113,160,77,1.0],[113,160,78,1.0],[113,160,79,1.0],[113,161,64,1.0],[113,161,65,1.0],[113,161,66,1.0],[113,161,67,1.0],[113,161,68,1.0],[113,161,69,1.0],[113,161,70,1.0],[113,161,71,1.0],[113,161,72,1.0],[113,161,73,1.0],[113,161,74,1.0],[113,161,75,1.0],[113,161,76,1.0],[113,161,77,1.0],[113,161,78,1.0],[113,161,79,1.0],[113,162,64,1.0],[113,162,65,1.0],[113,162,66,1.0],[113,162,67,1.0],[113,162,68,1.0],[113,162,69,1.0],[113,162,70,1.0],[113,162,71,1.0],[113,162,72,1.0],[113,162,73,1.0],[113,162,74,1.0],[113,162,75,1.0],[113,162,76,1.0],[113,162,77,1.0],[113,162,78,1.0],[113,162,79,1.0],[113,163,64,1.0],[113,163,65,1.0],[113,163,66,1.0],[113,163,67,1.0],[113,163,68,1.0],[113,163,69,1.0],[113,163,70,1.0],[113,163,71,1.0],[113,163,72,1.0],[113,163,73,1.0],[113,163,74,1.0],[113,163,75,1.0],[113,163,76,1.0],[113,163,77,1.0],[113,163,78,1.0],[113,163,79,1.0],[113,164,64,1.0],[113,164,65,1.0],[113,164,66,1.0],[113,164,67,1.0],[113,164,68,1.0],[113,164,69,1.0],[113,164,70,1.0],[113,164,71,1.0],[113,164,72,1.0],[113,164,73,1.0],[113,164,74,1.0],[113,164,75,1.0],[113,164,76,1.0],[113,164,77,1.0],[113,164,78,1.0],[113,164,79,1.0],[113,165,64,1.0],[113,165,65,1.0],[113,165,66,1.0],[113,165,67,1.0],[113,165,68,1.0],[113,165,69,1.0],[113,165,70,1.0],[113,165,71,1.0],[113,165,72,1.0],[113,165,73,1.0],[113,165,74,1.0],[113,165,75,1.0],[113,165,76,1.0],[113,165,77,1.0],[113,165,78,1.0],[113,165,79,1.0],[113,166,64,1.0],[113,166,65,1.0],[113,166,66,1.0],[113,166,67,1.0],[113,166,68,1.0],[113,166,69,1.0],[113,166,70,1.0],[113,166,71,1.0],[113,166,72,1.0],[113,166,73,1.0],[113,166,74,1.0],[113,166,75,1.0],[113,166,76,1.0],[113,166,77,1.0],[113,166,78,1.0],[113,166,79,1.0],[113,167,64,1.0],[113,167,65,1.0],[113,167,66,1.0],[113,167,67,1.0],[113,167,68,1.0],[113,167,69,1.0],[113,167,70,1.0],[113,167,71,1.0],[113,167,72,1.0],[113,167,73,1.0],[113,167,74,1.0],[113,167,75,1.0],[113,167,76,1.0],[113,167,77,1.0],[113,167,78,1.0],[113,167,79,1.0],[113,168,64,1.0],[113,168,65,1.0],[113,168,66,1.0],[113,168,67,1.0],[113,168,68,1.0],[113,168,69,1.0],[113,168,70,1.0],[113,168,71,1.0],[113,168,72,1.0],[113,168,73,1.0],[113,168,74,1.0],[113,168,75,1.0],[113,168,76,1.0],[113,168,77,1.0],[113,168,78,1.0],[113,168,79,1.0],[113,169,64,1.0],[113,169,65,1.0],[113,169,66,1.0],[113,169,67,1.0],[113,169,68,1.0],[113,169,69,1.0],[113,169,70,1.0],[113,169,71,1.0],[113,169,72,1.0],[113,169,73,1.0],[113,169,74,1.0],[113,169,75,1.0],[113,169,76,1.0],[113,169,77,1.0],[113,169,78,1.0],[113,169,79,1.0],[113,170,64,1.0],[113,170,65,1.0],[113,170,66,1.0],[113,170,67,1.0],[113,170,68,1.0],[113,170,69,1.0],[113,170,70,1.0],[113,170,71,1.0],[113,170,72,1.0],[113,170,73,1.0],[113,170,74,1.0],[113,170,75,1.0],[113,170,76,1.0],[113,170,77,1.0],[113,170,78,1.0],[113,170,79,1.0],[113,171,64,1.0],[113,171,65,1.0],[113,171,66,1.0],[113,171,67,1.0],[113,171,68,1.0],[113,171,69,1.0],[113,171,70,1.0],[113,171,71,1.0],[113,171,72,1.0],[113,171,73,1.0],[113,171,74,1.0],[113,171,75,1.0],[113,171,76,1.0],[113,171,77,1.0],[113,171,78,1.0],[113,171,79,1.0],[113,172,64,1.0],[113,172,65,1.0],[113,172,66,1.0],[113,172,67,1.0],[113,172,68,1.0],[113,172,69,1.0],[113,172,70,1.0],[113,172,71,1.0],[113,172,72,1.0],[113,172,73,1.0],[113,172,74,1.0],[113,172,75,1.0],[113,172,76,1.0],[113,172,77,1.0],[113,172,78,1.0],[113,172,79,1.0],[113,173,64,1.0],[113,173,65,1.0],[113,173,66,1.0],[113,173,67,1.0],[113,173,68,1.0],[113,173,69,1.0],[113,173,70,1.0],[113,173,71,1.0],[113,173,72,1.0],[113,173,73,1.0],[113,173,74,1.0],[113,173,75,1.0],[113,173,76,1.0],[113,173,77,1.0],[113,173,78,1.0],[113,173,79,1.0],[113,174,64,1.0],[113,174,65,1.0],[113,174,66,1.0],[113,174,67,1.0],[113,174,68,1.0],[113,174,69,1.0],[113,174,70,1.0],[113,174,71,1.0],[113,174,72,1.0],[113,174,73,1.0],[113,174,74,1.0],[113,174,75,1.0],[113,174,76,1.0],[113,174,77,1.0],[113,174,78,1.0],[113,174,79,1.0],[113,175,64,1.0],[113,175,65,1.0],[113,175,66,1.0],[113,175,67,1.0],[113,175,68,1.0],[113,175,69,1.0],[113,175,70,1.0],[113,175,71,1.0],[113,175,72,1.0],[113,175,73,1.0],[113,175,74,1.0],[113,175,75,1.0],[113,175,76,1.0],[113,175,77,1.0],[113,175,78,1.0],[113,175,79,1.0],[113,176,64,1.0],[113,176,65,1.0],[113,176,66,1.0],[113,176,67,1.0],[113,176,68,1.0],[113,176,69,1.0],[113,176,70,1.0],[113,176,71,1.0],[113,176,72,1.0],[113,176,73,1.0],[113,176,74,1.0],[113,176,75,1.0],[113,176,76,1.0],[113,176,77,1.0],[113,176,78,1.0],[113,176,79,1.0],[113,177,64,1.0],[113,177,65,1.0],[113,177,66,1.0],[113,177,67,1.0],[113,177,68,1.0],[113,177,69,1.0],[113,177,70,1.0],[113,177,71,1.0],[113,177,72,1.0],[113,177,73,1.0],[113,177,74,1.0],[113,177,75,1.0],[113,177,76,1.0],[113,177,77,1.0],[113,177,78,1.0],[113,177,79,1.0],[113,178,64,1.0],[113,178,65,1.0],[113,178,66,1.0],[113,178,67,1.0],[113,178,68,1.0],[113,178,69,1.0],[113,178,70,1.0],[113,178,71,1.0],[113,178,72,1.0],[113,178,73,1.0],[113,178,74,1.0],[113,178,75,1.0],[113,178,76,1.0],[113,178,77,1.0],[113,178,78,1.0],[113,178,79,1.0],[113,179,64,1.0],[113,179,65,1.0],[113,179,66,1.0],[113,179,67,1.0],[113,179,68,1.0],[113,179,69,1.0],[113,179,70,1.0],[113,179,71,1.0],[113,179,72,1.0],[113,179,73,1.0],[113,179,74,1.0],[113,179,75,1.0],[113,179,76,1.0],[113,179,77,1.0],[113,179,78,1.0],[113,179,79,1.0],[113,180,64,1.0],[113,180,65,1.0],[113,180,66,1.0],[113,180,67,1.0],[113,180,68,1.0],[113,180,69,1.0],[113,180,70,1.0],[113,180,71,1.0],[113,180,72,1.0],[113,180,73,1.0],[113,180,74,1.0],[113,180,75,1.0],[113,180,76,1.0],[113,180,77,1.0],[113,180,78,1.0],[113,180,79,1.0],[113,181,64,1.0],[113,181,65,1.0],[113,181,66,1.0],[113,181,67,1.0],[113,181,68,1.0],[113,181,69,1.0],[113,181,70,1.0],[113,181,71,1.0],[113,181,72,1.0],[113,181,73,1.0],[113,181,74,1.0],[113,181,75,1.0],[113,181,76,1.0],[113,181,77,1.0],[113,181,78,1.0],[113,181,79,1.0],[113,182,64,1.0],[113,182,65,1.0],[113,182,66,1.0],[113,182,67,1.0],[113,182,68,1.0],[113,182,69,1.0],[113,182,70,1.0],[113,182,71,1.0],[113,182,72,1.0],[113,182,73,1.0],[113,182,74,1.0],[113,182,75,1.0],[113,182,76,1.0],[113,182,77,1.0],[113,182,78,1.0],[113,182,79,1.0],[113,183,64,1.0],[113,183,65,1.0],[113,183,66,1.0],[113,183,67,1.0],[113,183,68,1.0],[113,183,69,1.0],[113,183,70,1.0],[113,183,71,1.0],[113,183,72,1.0],[113,183,73,1.0],[113,183,74,1.0],[113,183,75,1.0],[113,183,76,1.0],[113,183,77,1.0],[113,183,78,1.0],[113,183,79,1.0],[113,184,64,1.0],[113,184,65,1.0],[113,184,66,1.0],[113,184,67,1.0],[113,184,68,1.0],[113,184,69,1.0],[113,184,70,1.0],[113,184,71,1.0],[113,184,72,1.0],[113,184,73,1.0],[113,184,74,1.0],[113,184,75,1.0],[113,184,76,1.0],[113,184,77,1.0],[113,184,78,1.0],[113,184,79,1.0],[113,185,64,1.0],[113,185,65,1.0],[113,185,66,1.0],[113,185,67,1.0],[113,185,68,1.0],[113,185,69,1.0],[113,185,70,1.0],[113,185,71,1.0],[113,185,72,1.0],[113,185,73,1.0],[113,185,74,1.0],[113,185,75,1.0],[113,185,76,1.0],[113,185,77,1.0],[113,185,78,1.0],[113,185,79,1.0],[113,186,64,1.0],[113,186,65,1.0],[113,186,66,1.0],[113,186,67,1.0],[113,186,68,1.0],[113,186,69,1.0],[113,186,70,1.0],[113,186,71,1.0],[113,186,72,1.0],[113,186,73,1.0],[113,186,74,1.0],[113,186,75,1.0],[113,186,76,1.0],[113,186,77,1.0],[113,186,78,1.0],[113,186,79,1.0],[113,187,64,1.0],[113,187,65,1.0],[113,187,66,1.0],[113,187,67,1.0],[113,187,68,1.0],[113,187,69,1.0],[113,187,70,1.0],[113,187,71,1.0],[113,187,72,1.0],[113,187,73,1.0],[113,187,74,1.0],[113,187,75,1.0],[113,187,76,1.0],[113,187,77,1.0],[113,187,78,1.0],[113,187,79,1.0],[113,188,64,1.0],[113,188,65,1.0],[113,188,66,1.0],[113,188,67,1.0],[113,188,68,1.0],[113,188,69,1.0],[113,188,70,1.0],[113,188,71,1.0],[113,188,72,1.0],[113,188,73,1.0],[113,188,74,1.0],[113,188,75,1.0],[113,188,76,1.0],[113,188,77,1.0],[113,188,78,1.0],[113,188,79,1.0],[113,189,64,1.0],[113,189,65,1.0],[113,189,66,1.0],[113,189,67,1.0],[113,189,68,1.0],[113,189,69,1.0],[113,189,70,1.0],[113,189,71,1.0],[113,189,72,1.0],[113,189,73,1.0],[113,189,74,1.0],[113,189,75,1.0],[113,189,76,1.0],[113,189,77,1.0],[113,189,78,1.0],[113,189,79,1.0],[113,190,64,1.0],[113,190,65,1.0],[113,190,66,1.0],[113,190,67,1.0],[113,190,68,1.0],[113,190,69,1.0],[113,190,70,1.0],[113,190,71,1.0],[113,190,72,1.0],[113,190,73,1.0],[113,190,74,1.0],[113,190,75,1.0],[113,190,76,1.0],[113,190,77,1.0],[113,190,78,1.0],[113,190,79,1.0],[113,191,64,1.0],[113,191,65,1.0],[113,191,66,1.0],[113,191,67,1.0],[113,191,68,1.0],[113,191,69,1.0],[113,191,70,1.0],[113,191,71,1.0],[113,191,72,1.0],[113,191,73,1.0],[113,191,74,1.0],[113,191,75,1.0],[113,191,76,1.0],[113,191,77,1.0],[113,191,78,1.0],[113,191,79,1.0],[113,192,64,1.0],[113,192,65,1.0],[113,192,66,1.0],[113,192,67,1.0],[113,192,68,1.0],[113,192,69,1.0],[113,192,70,1.0],[113,192,71,1.0],[113,192,72,1.0],[113,192,73,1.0],[113,192,74,1.0],[113,192,75,1.0],[113,192,76,1.0],[113,192,77,1.0],[113,192,78,1.0],[113,192,79,1.0],[113,193,64,1.0],[113,193,65,1.0],[113,193,66,1.0],[113,193,67,1.0],[113,193,68,1.0],[113,193,69,1.0],[113,193,70,1.0],[113,193,71,1.0],[113,193,72,1.0],[113,193,73,1.0],[113,193,74,1.0],[113,193,75,1.0],[113,193,76,1.0],[113,193,77,1.0],[113,193,78,1.0],[113,193,79,1.0],[113,194,64,1.0],[113,194,65,1.0],[113,194,66,1.0],[113,194,67,1.0],[113,194,68,1.0],[113,194,69,1.0],[113,194,70,1.0],[113,194,71,1.0],[113,194,72,1.0],[113,194,73,1.0],[113,194,74,1.0],[113,194,75,1.0],[113,194,76,1.0],[113,194,77,1.0],[113,194,78,1.0],[113,194,79,1.0],[113,195,64,1.0],[113,195,65,1.0],[113,195,66,1.0],[113,195,67,1.0],[113,195,68,1.0],[113,195,69,1.0],[113,195,70,1.0],[113,195,71,1.0],[113,195,72,1.0],[113,195,73,1.0],[113,195,74,1.0],[113,195,75,1.0],[113,195,76,1.0],[113,195,77,1.0],[113,195,78,1.0],[113,195,79,1.0],[113,196,64,1.0],[113,196,65,1.0],[113,196,66,1.0],[113,196,67,1.0],[113,196,68,1.0],[113,196,69,1.0],[113,196,70,1.0],[113,196,71,1.0],[113,196,72,1.0],[113,196,73,1.0],[113,196,74,1.0],[113,196,75,1.0],[113,196,76,1.0],[113,196,77,1.0],[113,196,78,1.0],[113,196,79,1.0],[113,197,64,1.0],[113,197,65,1.0],[113,197,66,1.0],[113,197,67,1.0],[113,197,68,1.0],[113,197,69,1.0],[113,197,70,1.0],[113,197,71,1.0],[113,197,72,1.0],[113,197,73,1.0],[113,197,74,1.0],[113,197,75,1.0],[113,197,76,1.0],[113,197,77,1.0],[113,197,78,1.0],[113,197,79,1.0],[113,198,64,1.0],[113,198,65,1.0],[113,198,66,1.0],[113,198,67,1.0],[113,198,68,1.0],[113,198,69,1.0],[113,198,70,1.0],[113,198,71,1.0],[113,198,72,1.0],[113,198,73,1.0],[113,198,74,1.0],[113,198,75,1.0],[113,198,76,1.0],[113,198,77,1.0],[113,198,78,1.0],[113,198,79,1.0],[113,199,64,1.0],[113,199,65,1.0],[113,199,66,1.0],[113,199,67,1.0],[113,199,68,1.0],[113,199,69,1.0],[113,199,70,1.0],[113,199,71,1.0],[113,199,72,1.0],[113,199,73,1.0],[113,199,74,1.0],[113,199,75,1.0],[113,199,76,1.0],[113,199,77,1.0],[113,199,78,1.0],[113,199,79,1.0],[113,200,64,1.0],[113,200,65,1.0],[113,200,66,1.0],[113,200,67,1.0],[113,200,68,1.0],[113,200,69,1.0],[113,200,70,1.0],[113,200,71,1.0],[113,200,72,1.0],[113,200,73,1.0],[113,200,74,1.0],[113,200,75,1.0],[113,200,76,1.0],[113,200,77,1.0],[113,200,78,1.0],[113,200,79,1.0],[113,201,64,1.0],[113,201,65,1.0],[113,201,66,1.0],[113,201,67,1.0],[113,201,68,1.0],[113,201,69,1.0],[113,201,70,1.0],[113,201,71,1.0],[113,201,72,1.0],[113,201,73,1.0],[113,201,74,1.0],[113,201,75,1.0],[113,201,76,1.0],[113,201,77,1.0],[113,201,78,1.0],[113,201,79,1.0],[113,202,64,1.0],[113,202,65,1.0],[113,202,66,1.0],[113,202,67,1.0],[113,202,68,1.0],[113,202,69,1.0],[113,202,70,1.0],[113,202,71,1.0],[113,202,72,1.0],[113,202,73,1.0],[113,202,74,1.0],[113,202,75,1.0],[113,202,76,1.0],[113,202,77,1.0],[113,202,78,1.0],[113,202,79,1.0],[113,203,64,1.0],[113,203,65,1.0],[113,203,66,1.0],[113,203,67,1.0],[113,203,68,1.0],[113,203,69,1.0],[113,203,70,1.0],[113,203,71,1.0],[113,203,72,1.0],[113,203,73,1.0],[113,203,74,1.0],[113,203,75,1.0],[113,203,76,1.0],[113,203,77,1.0],[113,203,78,1.0],[113,203,79,1.0],[113,204,64,1.0],[113,204,65,1.0],[113,204,66,1.0],[113,204,67,1.0],[113,204,68,1.0],[113,204,69,1.0],[113,204,70,1.0],[113,204,71,1.0],[113,204,72,1.0],[113,204,73,1.0],[113,204,74,1.0],[113,204,75,1.0],[113,204,76,1.0],[113,204,77,1.0],[113,204,78,1.0],[113,204,79,1.0],[113,205,64,1.0],[113,205,65,1.0],[113,205,66,1.0],[113,205,67,1.0],[113,205,68,1.0],[113,205,69,1.0],[113,205,70,1.0],[113,205,71,1.0],[113,205,72,1.0],[113,205,73,1.0],[113,205,74,1.0],[113,205,75,1.0],[113,205,76,1.0],[113,205,77,1.0],[113,205,78,1.0],[113,205,79,1.0],[113,206,64,1.0],[113,206,65,1.0],[113,206,66,1.0],[113,206,67,1.0],[113,206,68,1.0],[113,206,69,1.0],[113,206,70,1.0],[113,206,71,1.0],[113,206,72,1.0],[113,206,73,1.0],[113,206,74,1.0],[113,206,75,1.0],[113,206,76,1.0],[113,206,77,1.0],[113,206,78,1.0],[113,206,79,1.0],[113,207,64,1.0],[113,207,65,1.0],[113,207,66,1.0],[113,207,67,1.0],[113,207,68,1.0],[113,207,69,1.0],[113,207,70,1.0],[113,207,71,1.0],[113,207,72,1.0],[113,207,73,1.0],[113,207,74,1.0],[113,207,75,1.0],[113,207,76,1.0],[113,207,77,1.0],[113,207,78,1.0],[113,207,79,1.0],[113,208,64,1.0],[113,208,65,1.0],[113,208,66,1.0],[113,208,67,1.0],[113,208,68,1.0],[113,208,69,1.0],[113,208,70,1.0],[113,208,71,1.0],[113,208,72,1.0],[113,208,73,1.0],[113,208,74,1.0],[113,208,75,1.0],[113,208,76,1.0],[113,208,77,1.0],[113,208,78,1.0],[113,208,79,1.0],[113,209,64,1.0],[113,209,65,1.0],[113,209,66,1.0],[113,209,67,1.0],[113,209,68,1.0],[113,209,69,1.0],[113,209,70,1.0],[113,209,71,1.0],[113,209,72,1.0],[113,209,73,1.0],[113,209,74,1.0],[113,209,75,1.0],[113,209,76,1.0],[113,209,77,1.0],[113,209,78,1.0],[113,209,79,1.0],[113,210,64,1.0],[113,210,65,1.0],[113,210,66,1.0],[113,210,67,1.0],[113,210,68,1.0],[113,210,69,1.0],[113,210,70,1.0],[113,210,71,1.0],[113,210,72,1.0],[113,210,73,1.0],[113,210,74,1.0],[113,210,75,1.0],[113,210,76,1.0],[113,210,77,1.0],[113,210,78,1.0],[113,210,79,1.0],[113,211,64,1.0],[113,211,65,1.0],[113,211,66,1.0],[113,211,67,1.0],[113,211,68,1.0],[113,211,69,1.0],[113,211,70,1.0],[113,211,71,1.0],[113,211,72,1.0],[113,211,73,1.0],[113,211,74,1.0],[113,211,75,1.0],[113,211,76,1.0],[113,211,77,1.0],[113,211,78,1.0],[113,211,79,1.0],[113,212,64,1.0],[113,212,65,1.0],[113,212,66,1.0],[113,212,67,1.0],[113,212,68,1.0],[113,212,69,1.0],[113,212,70,1.0],[113,212,71,1.0],[113,212,72,1.0],[113,212,73,1.0],[113,212,74,1.0],[113,212,75,1.0],[113,212,76,1.0],[113,212,77,1.0],[113,212,78,1.0],[113,212,79,1.0],[113,213,64,1.0],[113,213,65,1.0],[113,213,66,1.0],[113,213,67,1.0],[113,213,68,1.0],[113,213,69,1.0],[113,213,70,1.0],[113,213,71,1.0],[113,213,72,1.0],[113,213,73,1.0],[113,213,74,1.0],[113,213,75,1.0],[113,213,76,1.0],[113,213,77,1.0],[113,213,78,1.0],[113,213,79,1.0],[113,214,64,1.0],[113,214,65,1.0],[113,214,66,1.0],[113,214,67,1.0],[113,214,68,1.0],[113,214,69,1.0],[113,214,70,1.0],[113,214,71,1.0],[113,214,72,1.0],[113,214,73,1.0],[113,214,74,1.0],[113,214,75,1.0],[113,214,76,1.0],[113,214,77,1.0],[113,214,78,1.0],[113,214,79,1.0],[113,215,64,1.0],[113,215,65,1.0],[113,215,66,1.0],[113,215,67,1.0],[113,215,68,1.0],[113,215,69,1.0],[113,215,70,1.0],[113,215,71,1.0],[113,215,72,1.0],[113,215,73,1.0],[113,215,74,1.0],[113,215,75,1.0],[113,215,76,1.0],[113,215,77,1.0],[113,215,78,1.0],[113,215,79,1.0],[113,216,64,1.0],[113,216,65,1.0],[113,216,66,1.0],[113,216,67,1.0],[113,216,68,1.0],[113,216,69,1.0],[113,216,70,1.0],[113,216,71,1.0],[113,216,72,1.0],[113,216,73,1.0],[113,216,74,1.0],[113,216,75,1.0],[113,216,76,1.0],[113,216,77,1.0],[113,216,78,1.0],[113,216,79,1.0],[113,217,64,1.0],[113,217,65,1.0],[113,217,66,1.0],[113,217,67,1.0],[113,217,68,1.0],[113,217,69,1.0],[113,217,70,1.0],[113,217,71,1.0],[113,217,72,1.0],[113,217,73,1.0],[113,217,74,1.0],[113,217,75,1.0],[113,217,76,1.0],[113,217,77,1.0],[113,217,78,1.0],[113,217,79,1.0],[113,218,64,1.0],[113,218,65,1.0],[113,218,66,1.0],[113,218,67,1.0],[113,218,68,1.0],[113,218,69,1.0],[113,218,70,1.0],[113,218,71,1.0],[113,218,72,1.0],[113,218,73,1.0],[113,218,74,1.0],[113,218,75,1.0],[113,218,76,1.0],[113,218,77,1.0],[113,218,78,1.0],[113,218,79,1.0],[113,219,64,1.0],[113,219,65,1.0],[113,219,66,1.0],[113,219,67,1.0],[113,219,68,1.0],[113,219,69,1.0],[113,219,70,1.0],[113,219,71,1.0],[113,219,72,1.0],[113,219,73,1.0],[113,219,74,1.0],[113,219,75,1.0],[113,219,76,1.0],[113,219,77,1.0],[113,219,78,1.0],[113,219,79,1.0],[113,220,64,1.0],[113,220,65,1.0],[113,220,66,1.0],[113,220,67,1.0],[113,220,68,1.0],[113,220,69,1.0],[113,220,70,1.0],[113,220,71,1.0],[113,220,72,1.0],[113,220,73,1.0],[113,220,74,1.0],[113,220,75,1.0],[113,220,76,1.0],[113,220,77,1.0],[113,220,78,1.0],[113,220,79,1.0],[113,221,64,1.0],[113,221,65,1.0],[113,221,66,1.0],[113,221,67,1.0],[113,221,68,1.0],[113,221,69,1.0],[113,221,70,1.0],[113,221,71,1.0],[113,221,72,1.0],[113,221,73,1.0],[113,221,74,1.0],[113,221,75,1.0],[113,221,76,1.0],[113,221,77,1.0],[113,221,78,1.0],[113,221,79,1.0],[113,222,64,1.0],[113,222,65,1.0],[113,222,66,1.0],[113,222,67,1.0],[113,222,68,1.0],[113,222,69,1.0],[113,222,70,1.0],[113,222,71,1.0],[113,222,72,1.0],[113,222,73,1.0],[113,222,74,1.0],[113,222,75,1.0],[113,222,76,1.0],[113,222,77,1.0],[113,222,78,1.0],[113,222,79,1.0],[113,223,64,1.0],[113,223,65,1.0],[113,223,66,1.0],[113,223,67,1.0],[113,223,68,1.0],[113,223,69,1.0],[113,223,70,1.0],[113,223,71,1.0],[113,223,72,1.0],[113,223,73,1.0],[113,223,74,1.0],[113,223,75,1.0],[113,223,76,1.0],[113,223,77,1.0],[113,223,78,1.0],[113,223,79,1.0],[113,224,64,1.0],[113,224,65,1.0],[113,224,66,1.0],[113,224,67,1.0],[113,224,68,1.0],[113,224,69,1.0],[113,224,70,1.0],[113,224,71,1.0],[113,224,72,1.0],[113,224,73,1.0],[113,224,74,1.0],[113,224,75,1.0],[113,224,76,1.0],[113,224,77,1.0],[113,224,78,1.0],[113,224,79,1.0],[113,225,64,1.0],[113,225,65,1.0],[113,225,66,1.0],[113,225,67,1.0],[113,225,68,1.0],[113,225,69,1.0],[113,225,70,1.0],[113,225,71,1.0],[113,225,72,1.0],[113,225,73,1.0],[113,225,74,1.0],[113,225,75,1.0],[113,225,76,1.0],[113,225,77,1.0],[113,225,78,1.0],[113,225,79,1.0],[113,226,64,1.0],[113,226,65,1.0],[113,226,66,1.0],[113,226,67,1.0],[113,226,68,1.0],[113,226,69,1.0],[113,226,70,1.0],[113,226,71,1.0],[113,226,72,1.0],[113,226,73,1.0],[113,226,74,1.0],[113,226,75,1.0],[113,226,76,1.0],[113,226,77,1.0],[113,226,78,1.0],[113,226,79,1.0],[113,227,64,1.0],[113,227,65,1.0],[113,227,66,1.0],[113,227,67,1.0],[113,227,68,1.0],[113,227,69,1.0],[113,227,70,1.0],[113,227,71,1.0],[113,227,72,1.0],[113,227,73,1.0],[113,227,74,1.0],[113,227,75,1.0],[113,227,76,1.0],[113,227,77,1.0],[113,227,78,1.0],[113,227,79,1.0],[113,228,64,1.0],[113,228,65,1.0],[113,228,66,1.0],[113,228,67,1.0],[113,228,68,1.0],[113,228,69,1.0],[113,228,70,1.0],[113,228,71,1.0],[113,228,72,1.0],[113,228,73,1.0],[113,228,74,1.0],[113,228,75,1.0],[113,228,76,1.0],[113,228,77,1.0],[113,228,78,1.0],[113,228,79,1.0],[113,229,64,1.0],[113,229,65,1.0],[113,229,66,1.0],[113,229,67,1.0],[113,229,68,1.0],[113,229,69,1.0],[113,229,70,1.0],[113,229,71,1.0],[113,229,72,1.0],[113,229,73,1.0],[113,229,74,1.0],[113,229,75,1.0],[113,229,76,1.0],[113,229,77,1.0],[113,229,78,1.0],[113,229,79,1.0],[113,230,64,1.0],[113,230,65,1.0],[113,230,66,1.0],[113,230,67,1.0],[113,230,68,1.0],[113,230,69,1.0],[113,230,70,1.0],[113,230,71,1.0],[113,230,72,1.0],[113,230,73,1.0],[113,230,74,1.0],[113,230,75,1.0],[113,230,76,1.0],[113,230,77,1.0],[113,230,78,1.0],[113,230,79,1.0],[113,231,64,1.0],[113,231,65,1.0],[113,231,66,1.0],[113,231,67,1.0],[113,231,68,1.0],[113,231,69,1.0],[113,231,70,1.0],[113,231,71,1.0],[113,231,72,1.0],[113,231,73,1.0],[113,231,74,1.0],[113,231,75,1.0],[113,231,76,1.0],[113,231,77,1.0],[113,231,78,1.0],[113,231,79,1.0],[113,232,64,1.0],[113,232,65,1.0],[113,232,66,1.0],[113,232,67,1.0],[113,232,68,1.0],[113,232,69,1.0],[113,232,70,1.0],[113,232,71,1.0],[113,232,72,1.0],[113,232,73,1.0],[113,232,74,1.0],[113,232,75,1.0],[113,232,76,1.0],[113,232,77,1.0],[113,232,78,1.0],[113,232,79,1.0],[113,233,64,1.0],[113,233,65,1.0],[113,233,66,1.0],[113,233,67,1.0],[113,233,68,1.0],[113,233,69,1.0],[113,233,70,1.0],[113,233,71,1.0],[113,233,72,1.0],[113,233,73,1.0],[113,233,74,1.0],[113,233,75,1.0],[113,233,76,1.0],[113,233,77,1.0],[113,233,78,1.0],[113,233,79,1.0],[113,234,64,1.0],[113,234,65,1.0],[113,234,66,1.0],[113,234,67,1.0],[113,234,68,1.0],[113,234,69,1.0],[113,234,70,1.0],[113,234,71,1.0],[113,234,72,1.0],[113,234,73,1.0],[113,234,74,1.0],[113,234,75,1.0],[113,234,76,1.0],[113,234,77,1.0],[113,234,78,1.0],[113,234,79,1.0],[113,235,64,1.0],[113,235,65,1.0],[113,235,66,1.0],[113,235,67,1.0],[113,235,68,1.0],[113,235,69,1.0],[113,235,70,1.0],[113,235,71,1.0],[113,235,72,1.0],[113,235,73,1.0],[113,235,74,1.0],[113,235,75,1.0],[113,235,76,1.0],[113,235,77,1.0],[113,235,78,1.0],[113,235,79,1.0],[113,236,64,1.0],[113,236,65,1.0],[113,236,66,1.0],[113,236,67,1.0],[113,236,68,1.0],[113,236,69,1.0],[113,236,70,1.0],[113,236,71,1.0],[113,236,72,1.0],[113,236,73,1.0],[113,236,74,1.0],[113,236,75,1.0],[113,236,76,1.0],[113,236,77,1.0],[113,236,78,1.0],[113,236,79,1.0],[113,237,64,1.0],[113,237,65,1.0],[113,237,66,1.0],[113,237,67,1.0],[113,237,68,1.0],[113,237,69,1.0],[113,237,70,1.0],[113,237,71,1.0],[113,237,72,1.0],[113,237,73,1.0],[113,237,74,1.0],[113,237,75,1.0],[113,237,76,1.0],[113,237,77,1.0],[113,237,78,1.0],[113,237,79,1.0],[113,238,64,1.0],[113,238,65,1.0],[113,238,66,1.0],[113,238,67,1.0],[113,238,68,1.0],[113,238,69,1.0],[113,238,70,1.0],[113,238,71,1.0],[113,238,72,1.0],[113,238,73,1.0],[113,238,74,1.0],[113,238,75,1.0],[113,238,76,1.0],[113,238,77,1.0],[113,238,78,1.0],[113,238,79,1.0],[113,239,64,1.0],[113,239,65,1.0],[113,239,66,1.0],[113,239,67,1.0],[113,239,68,1.0],[113,239,69,1.0],[113,239,70,1.0],[113,239,71,1.0],[113,239,72,1.0],[113,239,73,1.0],[113,239,74,1.0],[113,239,75,1.0],[113,239,76,1.0],[113,239,77,1.0],[113,239,78,1.0],[113,239,79,1.0],[113,240,64,1.0],[113,240,65,1.0],[113,240,66,1.0],[113,240,67,1.0],[113,240,68,1.0],[113,240,69,1.0],[113,240,70,1.0],[113,240,71,1.0],[113,240,72,1.0],[113,240,73,1.0],[113,240,74,1.0],[113,240,75,1.0],[113,240,76,1.0],[113,240,77,1.0],[113,240,78,1.0],[113,240,79,1.0],[113,241,64,1.0],[113,241,65,1.0],[113,241,66,1.0],[113,241,67,1.0],[113,241,68,1.0],[113,241,69,1.0],[113,241,70,1.0],[113,241,71,1.0],[113,241,72,1.0],[113,241,73,1.0],[113,241,74,1.0],[113,241,75,1.0],[113,241,76,1.0],[113,241,77,1.0],[113,241,78,1.0],[113,241,79,1.0],[113,242,64,1.0],[113,242,65,1.0],[113,242,66,1.0],[113,242,67,1.0],[113,242,68,1.0],[113,242,69,1.0],[113,242,70,1.0],[113,242,71,1.0],[113,242,72,1.0],[113,242,73,1.0],[113,242,74,1.0],[113,242,75,1.0],[113,242,76,1.0],[113,242,77,1.0],[113,242,78,1.0],[113,242,79,1.0],[113,243,64,1.0],[113,243,65,1.0],[113,243,66,1.0],[113,243,67,1.0],[113,243,68,1.0],[113,243,69,1.0],[113,243,70,1.0],[113,243,71,1.0],[113,243,72,1.0],[113,243,73,1.0],[113,243,74,1.0],[113,243,75,1.0],[113,243,76,1.0],[113,243,77,1.0],[113,243,78,1.0],[113,243,79,1.0],[113,244,64,1.0],[113,244,65,1.0],[113,244,66,1.0],[113,244,67,1.0],[113,244,68,1.0],[113,244,69,1.0],[113,244,70,1.0],[113,244,71,1.0],[113,244,72,1.0],[113,244,73,1.0],[113,244,74,1.0],[113,244,75,1.0],[113,244,76,1.0],[113,244,77,1.0],[113,244,78,1.0],[113,244,79,1.0],[113,245,64,1.0],[113,245,65,1.0],[113,245,66,1.0],[113,245,67,1.0],[113,245,68,1.0],[113,245,69,1.0],[113,245,70,1.0],[113,245,71,1.0],[113,245,72,1.0],[113,245,73,1.0],[113,245,74,1.0],[113,245,75,1.0],[113,245,76,1.0],[113,245,77,1.0],[113,245,78,1.0],[113,245,79,1.0],[113,246,64,1.0],[113,246,65,1.0],[113,246,66,1.0],[113,246,67,1.0],[113,246,68,1.0],[113,246,69,1.0],[113,246,70,1.0],[113,246,71,1.0],[113,246,72,1.0],[113,246,73,1.0],[113,246,74,1.0],[113,246,75,1.0],[113,246,76,1.0],[113,246,77,1.0],[113,246,78,1.0],[113,246,79,1.0],[113,247,64,1.0],[113,247,65,1.0],[113,247,66,1.0],[113,247,67,1.0],[113,247,68,1.0],[113,247,69,1.0],[113,247,70,1.0],[113,247,71,1.0],[113,247,72,1.0],[113,247,73,1.0],[113,247,74,1.0],[113,247,75,1.0],[113,247,76,1.0],[113,247,77,1.0],[113,247,78,1.0],[113,247,79,1.0],[113,248,64,1.0],[113,248,65,1.0],[113,248,66,1.0],[113,248,67,1.0],[113,248,68,1.0],[113,248,69,1.0],[113,248,70,1.0],[113,248,71,1.0],[113,248,72,1.0],[113,248,73,1.0],[113,248,74,1.0],[113,248,75,1.0],[113,248,76,1.0],[113,248,77,1.0],[113,248,78,1.0],[113,248,79,1.0],[113,249,64,1.0],[113,249,65,1.0],[113,249,66,1.0],[113,249,67,1.0],[113,249,68,1.0],[113,249,69,1.0],[113,249,70,1.0],[113,249,71,1.0],[113,249,72,1.0],[113,249,73,1.0],[113,249,74,1.0],[113,249,75,1.0],[113,249,76,1.0],[113,249,77,1.0],[113,249,78,1.0],[113,249,79,1.0],[113,250,64,1.0],[113,250,65,1.0],[113,250,66,1.0],[113,250,67,1.0],[113,250,68,1.0],[113,250,69,1.0],[113,250,70,1.0],[113,250,71,1.0],[113,250,72,1.0],[113,250,73,1.0],[113,250,74,1.0],[113,250,75,1.0],[113,250,76,1.0],[113,250,77,1.0],[113,250,78,1.0],[113,250,79,1.0],[113,251,64,1.0],[113,251,65,1.0],[113,251,66,1.0],[113,251,67,1.0],[113,251,68,1.0],[113,251,69,1.0],[113,251,70,1.0],[113,251,71,1.0],[113,251,72,1.0],[113,251,73,1.0],[113,251,74,1.0],[113,251,75,1.0],[113,251,76,1.0],[113,251,77,1.0],[113,251,78,1.0],[113,251,79,1.0],[113,252,64,1.0],[113,252,65,1.0],[113,252,66,1.0],[113,252,67,1.0],[113,252,68,1.0],[113,252,69,1.0],[113,252,70,1.0],[113,252,71,1.0],[113,252,72,1.0],[113,252,73,1.0],[113,252,74,1.0],[113,252,75,1.0],[113,252,76,1.0],[113,252,77,1.0],[113,252,78,1.0],[113,252,79,1.0],[113,253,64,1.0],[113,253,65,1.0],[113,253,66,1.0],[113,253,67,1.0],[113,253,68,1.0],[113,253,69,1.0],[113,253,70,1.0],[113,253,71,1.0],[113,253,72,1.0],[113,253,73,1.0],[113,253,74,1.0],[113,253,75,1.0],[113,253,76,1.0],[113,253,77,1.0],[113,253,78,1.0],[113,253,79,1.0],[113,254,64,1.0],[113,254,65,1.0],[113,254,66,1.0],[113,254,67,1.0],[113,254,68,1.0],[113,254,69,1.0],[113,254,70,1.0],[113,254,71,1.0],[113,254,72,1.0],[113,254,73,1.0],[113,254,74,1.0],[113,254,75,1.0],[113,254,76,1.0],[113,254,77,1.0],[113,254,78,1.0],[113,254,79,1.0],[113,255,64,1.0],[113,255,65,1.0],[113,255,66,1.0],[113,255,67,1.0],[113,255,68,1.0],[113,255,69,1.0],[113,255,70,1.0],[113,255,71,1.0],[113,255,72,1.0],[113,255,73,1.0],[113,255,74,1.0],[113,255,75,1.0],[113,255,76,1.0],[113,255,77,1.0],[113,255,78,1.0],[113,255,79,1.0],[113,256,64,1.0],[113,256,65,1.0],[113,256,66,1.0],[113,256,67,1.0],[113,256,68,1.0],[113,256,69,1.0],[113,256,70,1.0],[113,256,71,1.0],[113,256,72,1.0],[113,256,73,1.0],[113,256,74,1.0],[113,256,75,1.0],[113,256,76,1.0],[113,256,77,1.0],[113,256,78,1.0],[113,256,79,1.0],[113,257,64,1.0],[113,257,65,1.0],[113,257,66,1.0],[113,257,67,1.0],[113,257,68,1.0],[113,257,69,1.0],[113,257,70,1.0],[113,257,71,1.0],[113,257,72,1.0],[113,257,73,1.0],[113,257,74,1.0],[113,257,75,1.0],[113,257,76,1.0],[113,257,77,1.0],[113,257,78,1.0],[113,257,79,1.0],[113,258,64,1.0],[113,258,65,1.0],[113,258,66,1.0],[113,258,67,1.0],[113,258,68,1.0],[113,258,69,1.0],[113,258,70,1.0],[113,258,71,1.0],[113,258,72,1.0],[113,258,73,1.0],[113,258,74,1.0],[113,258,75,1.0],[113,258,76,1.0],[113,258,77,1.0],[113,258,78,1.0],[113,258,79,1.0],[113,259,64,1.0],[113,259,65,1.0],[113,259,66,1.0],[113,259,67,1.0],[113,259,68,1.0],[113,259,69,1.0],[113,259,70,1.0],[113,259,71,1.0],[113,259,72,1.0],[113,259,73,1.0],[113,259,74,1.0],[113,259,75,1.0],[113,259,76,1.0],[113,259,77,1.0],[113,259,78,1.0],[113,259,79,1.0],[113,260,64,1.0],[113,260,65,1.0],[113,260,66,1.0],[113,260,67,1.0],[113,260,68,1.0],[113,260,69,1.0],[113,260,70,1.0],[113,260,71,1.0],[113,260,72,1.0],[113,260,73,1.0],[113,260,74,1.0],[113,260,75,1.0],[113,260,76,1.0],[113,260,77,1.0],[113,260,78,1.0],[113,260,79,1.0],[113,261,64,1.0],[113,261,65,1.0],[113,261,66,1.0],[113,261,67,1.0],[113,261,68,1.0],[113,261,69,1.0],[113,261,70,1.0],[113,261,71,1.0],[113,261,72,1.0],[113,261,73,1.0],[113,261,74,1.0],[113,261,75,1.0],[113,261,76,1.0],[113,261,77,1.0],[113,261,78,1.0],[113,261,79,1.0],[113,262,64,1.0],[113,262,65,1.0],[113,262,66,1.0],[113,262,67,1.0],[113,262,68,1.0],[113,262,69,1.0],[113,262,70,1.0],[113,262,71,1.0],[113,262,72,1.0],[113,262,73,1.0],[113,262,74,1.0],[113,262,75,1.0],[113,262,76,1.0],[113,262,77,1.0],[113,262,78,1.0],[113,262,79,1.0],[113,263,64,1.0],[113,263,65,1.0],[113,263,66,1.0],[113,263,67,1.0],[113,263,68,1.0],[113,263,69,1.0],[113,263,70,1.0],[113,263,71,1.0],[113,263,72,1.0],[113,263,73,1.0],[113,263,74,1.0],[113,263,75,1.0],[113,263,76,1.0],[113,263,77,1.0],[113,263,78,1.0],[113,263,79,1.0],[113,264,64,1.0],[113,264,65,1.0],[113,264,66,1.0],[113,264,67,1.0],[113,264,68,1.0],[113,264,69,1.0],[113,264,70,1.0],[113,264,71,1.0],[113,264,72,1.0],[113,264,73,1.0],[113,264,74,1.0],[113,264,75,1.0],[113,264,76,1.0],[113,264,77,1.0],[113,264,78,1.0],[113,264,79,1.0],[113,265,64,1.0],[113,265,65,1.0],[113,265,66,1.0],[113,265,67,1.0],[113,265,68,1.0],[113,265,69,1.0],[113,265,70,1.0],[113,265,71,1.0],[113,265,72,1.0],[113,265,73,1.0],[113,265,74,1.0],[113,265,75,1.0],[113,265,76,1.0],[113,265,77,1.0],[113,265,78,1.0],[113,265,79,1.0],[113,266,64,1.0],[113,266,65,1.0],[113,266,66,1.0],[113,266,67,1.0],[113,266,68,1.0],[113,266,69,1.0],[113,266,70,1.0],[113,266,71,1.0],[113,266,72,1.0],[113,266,73,1.0],[113,266,74,1.0],[113,266,75,1.0],[113,266,76,1.0],[113,266,77,1.0],[113,266,78,1.0],[113,266,79,1.0],[113,267,64,1.0],[113,267,65,1.0],[113,267,66,1.0],[113,267,67,1.0],[113,267,68,1.0],[113,267,69,1.0],[113,267,70,1.0],[113,267,71,1.0],[113,267,72,1.0],[113,267,73,1.0],[113,267,74,1.0],[113,267,75,1.0],[113,267,76,1.0],[113,267,77,1.0],[113,267,78,1.0],[113,267,79,1.0],[113,268,64,1.0],[113,268,65,1.0],[113,268,66,1.0],[113,268,67,1.0],[113,268,68,1.0],[113,268,69,1.0],[113,268,70,1.0],[113,268,71,1.0],[113,268,72,1.0],[113,268,73,1.0],[113,268,74,1.0],[113,268,75,1.0],[113,268,76,1.0],[113,268,77,1.0],[113,268,78,1.0],[113,268,79,1.0],[113,269,64,1.0],[113,269,65,1.0],[113,269,66,1.0],[113,269,67,1.0],[113,269,68,1.0],[113,269,69,1.0],[113,269,70,1.0],[113,269,71,1.0],[113,269,72,1.0],[113,269,73,1.0],[113,269,74,1.0],[113,269,75,1.0],[113,269,76,1.0],[113,269,77,1.0],[113,269,78,1.0],[113,269,79,1.0],[113,270,64,1.0],[113,270,65,1.0],[113,270,66,1.0],[113,270,67,1.0],[113,270,68,1.0],[113,270,69,1.0],[113,270,70,1.0],[113,270,71,1.0],[113,270,72,1.0],[113,270,73,1.0],[113,270,74,1.0],[113,270,75,1.0],[113,270,76,1.0],[113,270,77,1.0],[113,270,78,1.0],[113,270,79,1.0],[113,271,64,1.0],[113,271,65,1.0],[113,271,66,1.0],[113,271,67,1.0],[113,271,68,1.0],[113,271,69,1.0],[113,271,70,1.0],[113,271,71,1.0],[113,271,72,1.0],[113,271,73,1.0],[113,271,74,1.0],[113,271,75,1.0],[113,271,76,1.0],[113,271,77,1.0],[113,271,78,1.0],[113,271,79,1.0],[113,272,64,1.0],[113,272,65,1.0],[113,272,66,1.0],[113,272,67,1.0],[113,272,68,1.0],[113,272,69,1.0],[113,272,70,1.0],[113,272,71,1.0],[113,272,72,1.0],[113,272,73,1.0],[113,272,74,1.0],[113,272,75,1.0],[113,272,76,1.0],[113,272,77,1.0],[113,272,78,1.0],[113,272,79,1.0],[113,273,64,1.0],[113,273,65,1.0],[113,273,66,1.0],[113,273,67,1.0],[113,273,68,1.0],[113,273,69,1.0],[113,273,70,1.0],[113,273,71,1.0],[113,273,72,1.0],[113,273,73,1.0],[113,273,74,1.0],[113,273,75,1.0],[113,273,76,1.0],[113,273,77,1.0],[113,273,78,1.0],[113,273,79,1.0],[113,274,64,1.0],[113,274,65,1.0],[113,274,66,1.0],[113,274,67,1.0],[113,274,68,1.0],[113,274,69,1.0],[113,274,70,1.0],[113,274,71,1.0],[113,274,72,1.0],[113,274,73,1.0],[113,274,74,1.0],[113,274,75,1.0],[113,274,76,1.0],[113,274,77,1.0],[113,274,78,1.0],[113,274,79,1.0],[113,275,64,1.0],[113,275,65,1.0],[113,275,66,1.0],[113,275,67,1.0],[113,275,68,1.0],[113,275,69,1.0],[113,275,70,1.0],[113,275,71,1.0],[113,275,72,1.0],[113,275,73,1.0],[113,275,74,1.0],[113,275,75,1.0],[113,275,76,1.0],[113,275,77,1.0],[113,275,78,1.0],[113,275,79,1.0],[113,276,64,1.0],[113,276,65,1.0],[113,276,66,1.0],[113,276,67,1.0],[113,276,68,1.0],[113,276,69,1.0],[113,276,70,1.0],[113,276,71,1.0],[113,276,72,1.0],[113,276,73,1.0],[113,276,74,1.0],[113,276,75,1.0],[113,276,76,1.0],[113,276,77,1.0],[113,276,78,1.0],[113,276,79,1.0],[113,277,64,1.0],[113,277,65,1.0],[113,277,66,1.0],[113,277,67,1.0],[113,277,68,1.0],[113,277,69,1.0],[113,277,70,1.0],[113,277,71,1.0],[113,277,72,1.0],[113,277,73,1.0],[113,277,74,1.0],[113,277,75,1.0],[113,277,76,1.0],[113,277,77,1.0],[113,277,78,1.0],[113,277,79,1.0],[113,278,64,1.0],[113,278,65,1.0],[113,278,66,1.0],[113,278,67,1.0],[113,278,68,1.0],[113,278,69,1.0],[113,278,70,1.0],[113,278,71,1.0],[113,278,72,1.0],[113,278,73,1.0],[113,278,74,1.0],[113,278,75,1.0],[113,278,76,1.0],[113,278,77,1.0],[113,278,78,1.0],[113,278,79,1.0],[113,279,64,1.0],[113,279,65,1.0],[113,279,66,1.0],[113,279,67,1.0],[113,279,68,1.0],[113,279,69,1.0],[113,279,70,1.0],[113,279,71,1.0],[113,279,72,1.0],[113,279,73,1.0],[113,279,74,1.0],[113,279,75,1.0],[113,279,76,1.0],[113,279,77,1.0],[113,279,78,1.0],[113,279,79,1.0],[113,280,64,1.0],[113,280,65,1.0],[113,280,66,1.0],[113,280,67,1.0],[113,280,68,1.0],[113,280,69,1.0],[113,280,70,1.0],[113,280,71,1.0],[113,280,72,1.0],[113,280,73,1.0],[113,280,74,1.0],[113,280,75,1.0],[113,280,76,1.0],[113,280,77,1.0],[113,280,78,1.0],[113,280,79,1.0],[113,281,64,1.0],[113,281,65,1.0],[113,281,66,1.0],[113,281,67,1.0],[113,281,68,1.0],[113,281,69,1.0],[113,281,70,1.0],[113,281,71,1.0],[113,281,72,1.0],[113,281,73,1.0],[113,281,74,1.0],[113,281,75,1.0],[113,281,76,1.0],[113,281,77,1.0],[113,281,78,1.0],[113,281,79,1.0],[113,282,64,1.0],[113,282,65,1.0],[113,282,66,1.0],[113,282,67,1.0],[113,282,68,1.0],[113,282,69,1.0],[113,282,70,1.0],[113,282,71,1.0],[113,282,72,1.0],[113,282,73,1.0],[113,282,74,1.0],[113,282,75,1.0],[113,282,76,1.0],[113,282,77,1.0],[113,282,78,1.0],[113,282,79,1.0],[113,283,64,1.0],[113,283,65,1.0],[113,283,66,1.0],[113,283,67,1.0],[113,283,68,1.0],[113,283,69,1.0],[113,283,70,1.0],[113,283,71,1.0],[113,283,72,1.0],[113,283,73,1.0],[113,283,74,1.0],[113,283,75,1.0],[113,283,76,1.0],[113,283,77,1.0],[113,283,78,1.0],[113,283,79,1.0],[113,284,64,1.0],[113,284,65,1.0],[113,284,66,1.0],[113,284,67,1.0],[113,284,68,1.0],[113,284,69,1.0],[113,284,70,1.0],[113,284,71,1.0],[113,284,72,1.0],[113,284,73,1.0],[113,284,74,1.0],[113,284,75,1.0],[113,284,76,1.0],[113,284,77,1.0],[113,284,78,1.0],[113,284,79,1.0],[113,285,64,1.0],[113,285,65,1.0],[113,285,66,1.0],[113,285,67,1.0],[113,285,68,1.0],[113,285,69,1.0],[113,285,70,1.0],[113,285,71,1.0],[113,285,72,1.0],[113,285,73,1.0],[113,285,74,1.0],[113,285,75,1.0],[113,285,76,1.0],[113,285,77,1.0],[113,285,78,1.0],[113,285,79,1.0],[113,286,64,1.0],[113,286,65,1.0],[113,286,66,1.0],[113,286,67,1.0],[113,286,68,1.0],[113,286,69,1.0],[113,286,70,1.0],[113,286,71,1.0],[113,286,72,1.0],[113,286,73,1.0],[113,286,74,1.0],[113,286,75,1.0],[113,286,76,1.0],[113,286,77,1.0],[113,286,78,1.0],[113,286,79,1.0],[113,287,64,1.0],[113,287,65,1.0],[113,287,66,1.0],[113,287,67,1.0],[113,287,68,1.0],[113,287,69,1.0],[113,287,70,1.0],[113,287,71,1.0],[113,287,72,1.0],[113,287,73,1.0],[113,287,74,1.0],[113,287,75,1.0],[113,287,76,1.0],[113,287,77,1.0],[113,287,78,1.0],[113,287,79,1.0],[113,288,64,1.0],[113,288,65,1.0],[113,288,66,1.0],[113,288,67,1.0],[113,288,68,1.0],[113,288,69,1.0],[113,288,70,1.0],[113,288,71,1.0],[113,288,72,1.0],[113,288,73,1.0],[113,288,74,1.0],[113,288,75,1.0],[113,288,76,1.0],[113,288,77,1.0],[113,288,78,1.0],[113,288,79,1.0],[113,289,64,1.0],[113,289,65,1.0],[113,289,66,1.0],[113,289,67,1.0],[113,289,68,1.0],[113,289,69,1.0],[113,289,70,1.0],[113,289,71,1.0],[113,289,72,1.0],[113,289,73,1.0],[113,289,74,1.0],[113,289,75,1.0],[113,289,76,1.0],[113,289,77,1.0],[113,289,78,1.0],[113,289,79,1.0],[113,290,64,1.0],[113,290,65,1.0],[113,290,66,1.0],[113,290,67,1.0],[113,290,68,1.0],[113,290,69,1.0],[113,290,70,1.0],[113,290,71,1.0],[113,290,72,1.0],[113,290,73,1.0],[113,290,74,1.0],[113,290,75,1.0],[113,290,76,1.0],[113,290,77,1.0],[113,290,78,1.0],[113,290,79,1.0],[113,291,64,1.0],[113,291,65,1.0],[113,291,66,1.0],[113,291,67,1.0],[113,291,68,1.0],[113,291,69,1.0],[113,291,70,1.0],[113,291,71,1.0],[113,291,72,1.0],[113,291,73,1.0],[113,291,74,1.0],[113,291,75,1.0],[113,291,76,1.0],[113,291,77,1.0],[113,291,78,1.0],[113,291,79,1.0],[113,292,64,1.0],[113,292,65,1.0],[113,292,66,1.0],[113,292,67,1.0],[113,292,68,1.0],[113,292,69,1.0],[113,292,70,1.0],[113,292,71,1.0],[113,292,72,1.0],[113,292,73,1.0],[113,292,74,1.0],[113,292,75,1.0],[113,292,76,1.0],[113,292,77,1.0],[113,292,78,1.0],[113,292,79,1.0],[113,293,64,1.0],[113,293,65,1.0],[113,293,66,1.0],[113,293,67,1.0],[113,293,68,1.0],[113,293,69,1.0],[113,293,70,1.0],[113,293,71,1.0],[113,293,72,1.0],[113,293,73,1.0],[113,293,74,1.0],[113,293,75,1.0],[113,293,76,1.0],[113,293,77,1.0],[113,293,78,1.0],[113,293,79,1.0],[113,294,64,1.0],[113,294,65,1.0],[113,294,66,1.0],[113,294,67,1.0],[113,294,68,1.0],[113,294,69,1.0],[113,294,70,1.0],[113,294,71,1.0],[113,294,72,1.0],[113,294,73,1.0],[113,294,74,1.0],[113,294,75,1.0],[113,294,76,1.0],[113,294,77,1.0],[113,294,78,1.0],[113,294,79,1.0],[113,295,64,1.0],[113,295,65,1.0],[113,295,66,1.0],[113,295,67,1.0],[113,295,68,1.0],[113,295,69,1.0],[113,295,70,1.0],[113,295,71,1.0],[113,295,72,1.0],[113,295,73,1.0],[113,295,74,1.0],[113,295,75,1.0],[113,295,76,1.0],[113,295,77,1.0],[113,295,78,1.0],[113,295,79,1.0],[113,296,64,1.0],[113,296,65,1.0],[113,296,66,1.0],[113,296,67,1.0],[113,296,68,1.0],[113,296,69,1.0],[113,296,70,1.0],[113,296,71,1.0],[113,296,72,1.0],[113,296,73,1.0],[113,296,74,1.0],[113,296,75,1.0],[113,296,76,1.0],[113,296,77,1.0],[113,296,78,1.0],[113,296,79,1.0],[113,297,64,1.0],[113,297,65,1.0],[113,297,66,1.0],[113,297,67,1.0],[113,297,68,1.0],[113,297,69,1.0],[113,297,70,1.0],[113,297,71,1.0],[113,297,72,1.0],[113,297,73,1.0],[113,297,74,1.0],[113,297,75,1.0],[113,297,76,1.0],[113,297,77,1.0],[113,297,78,1.0],[113,297,79,1.0],[113,298,64,1.0],[113,298,65,1.0],[113,298,66,1.0],[113,298,67,1.0],[113,298,68,1.0],[113,298,69,1.0],[113,298,70,1.0],[113,298,71,1.0],[113,298,72,1.0],[113,298,73,1.0],[113,298,74,1.0],[113,298,75,1.0],[113,298,76,1.0],[113,298,77,1.0],[113,298,78,1.0],[113,298,79,1.0],[113,299,64,1.0],[113,299,65,1.0],[113,299,66,1.0],[113,299,67,1.0],[113,299,68,1.0],[113,299,69,1.0],[113,299,70,1.0],[113,299,71,1.0],[113,299,72,1.0],[113,299,73,1.0],[113,299,74,1.0],[113,299,75,1.0],[113,299,76,1.0],[113,299,77,1.0],[113,299,78,1.0],[113,299,79,1.0],[113,300,64,1.0],[113,300,65,1.0],[113,300,66,1.0],[113,300,67,1.0],[113,300,68,1.0],[113,300,69,1.0],[113,300,70,1.0],[113,300,71,1.0],[113,300,72,1.0],[113,300,73,1.0],[113,300,74,1.0],[113,300,75,1.0],[113,300,76,1.0],[113,300,77,1.0],[113,300,78,1.0],[113,300,79,1.0],[113,301,64,1.0],[113,301,65,1.0],[113,301,66,1.0],[113,301,67,1.0],[113,301,68,1.0],[113,301,69,1.0],[113,301,70,1.0],[113,301,71,1.0],[113,301,72,1.0],[113,301,73,1.0],[113,301,74,1.0],[113,301,75,1.0],[113,301,76,1.0],[113,301,77,1.0],[113,301,78,1.0],[113,301,79,1.0],[113,302,64,1.0],[113,302,65,1.0],[113,302,66,1.0],[113,302,67,1.0],[113,302,68,1.0],[113,302,69,1.0],[113,302,70,1.0],[113,302,71,1.0],[113,302,72,1.0],[113,302,73,1.0],[113,302,74,1.0],[113,302,75,1.0],[113,302,76,1.0],[113,302,77,1.0],[113,302,78,1.0],[113,302,79,1.0],[113,303,64,1.0],[113,303,65,1.0],[113,303,66,1.0],[113,303,67,1.0],[113,303,68,1.0],[113,303,69,1.0],[113,303,70,1.0],[113,303,71,1.0],[113,303,72,1.0],[113,303,73,1.0],[113,303,74,1.0],[113,303,75,1.0],[113,303,76,1.0],[113,303,77,1.0],[113,303,78,1.0],[113,303,79,1.0],[113,304,64,1.0],[113,304,65,1.0],[113,304,66,1.0],[113,304,67,1.0],[113,304,68,1.0],[113,304,69,1.0],[113,304,70,1.0],[113,304,71,1.0],[113,304,72,1.0],[113,304,73,1.0],[113,304,74,1.0],[113,304,75,1.0],[113,304,76,1.0],[113,304,77,1.0],[113,304,78,1.0],[113,304,79,1.0],[113,305,64,1.0],[113,305,65,1.0],[113,305,66,1.0],[113,305,67,1.0],[113,305,68,1.0],[113,305,69,1.0],[113,305,70,1.0],[113,305,71,1.0],[113,305,72,1.0],[113,305,73,1.0],[113,305,74,1.0],[113,305,75,1.0],[113,305,76,1.0],[113,305,77,1.0],[113,305,78,1.0],[113,305,79,1.0],[113,306,64,1.0],[113,306,65,1.0],[113,306,66,1.0],[113,306,67,1.0],[113,306,68,1.0],[113,306,69,1.0],[113,306,70,1.0],[113,306,71,1.0],[113,306,72,1.0],[113,306,73,1.0],[113,306,74,1.0],[113,306,75,1.0],[113,306,76,1.0],[113,306,77,1.0],[113,306,78,1.0],[113,306,79,1.0],[113,307,64,1.0],[113,307,65,1.0],[113,307,66,1.0],[113,307,67,1.0],[113,307,68,1.0],[113,307,69,1.0],[113,307,70,1.0],[113,307,71,1.0],[113,307,72,1.0],[113,307,73,1.0],[113,307,74,1.0],[113,307,75,1.0],[113,307,76,1.0],[113,307,77,1.0],[113,307,78,1.0],[113,307,79,1.0],[113,308,64,1.0],[113,308,65,1.0],[113,308,66,1.0],[113,308,67,1.0],[113,308,68,1.0],[113,308,69,1.0],[113,308,70,1.0],[113,308,71,1.0],[113,308,72,1.0],[113,308,73,1.0],[113,308,74,1.0],[113,308,75,1.0],[113,308,76,1.0],[113,308,77,1.0],[113,308,78,1.0],[113,308,79,1.0],[113,309,64,1.0],[113,309,65,1.0],[113,309,66,1.0],[113,309,67,1.0],[113,309,68,1.0],[113,309,69,1.0],[113,309,70,1.0],[113,309,71,1.0],[113,309,72,1.0],[113,309,73,1.0],[113,309,74,1.0],[113,309,75,1.0],[113,309,76,1.0],[113,309,77,1.0],[113,309,78,1.0],[113,309,79,1.0],[113,310,64,1.0],[113,310,65,1.0],[113,310,66,1.0],[113,310,67,1.0],[113,310,68,1.0],[113,310,69,1.0],[113,310,70,1.0],[113,310,71,1.0],[113,310,72,1.0],[113,310,73,1.0],[113,310,74,1.0],[113,310,75,1.0],[113,310,76,1.0],[113,310,77,1.0],[113,310,78,1.0],[113,310,79,1.0],[113,311,64,1.0],[113,311,65,1.0],[113,311,66,1.0],[113,311,67,1.0],[113,311,68,1.0],[113,311,69,1.0],[113,311,70,1.0],[113,311,71,1.0],[113,311,72,1.0],[113,311,73,1.0],[113,311,74,1.0],[113,311,75,1.0],[113,311,76,1.0],[113,311,77,1.0],[113,311,78,1.0],[113,311,79,1.0],[113,312,64,1.0],[113,312,65,1.0],[113,312,66,1.0],[113,312,67,1.0],[113,312,68,1.0],[113,312,69,1.0],[113,312,70,1.0],[113,312,71,1.0],[113,312,72,1.0],[113,312,73,1.0],[113,312,74,1.0],[113,312,75,1.0],[113,312,76,1.0],[113,312,77,1.0],[113,312,78,1.0],[113,312,79,1.0],[113,313,64,1.0],[113,313,65,1.0],[113,313,66,1.0],[113,313,67,1.0],[113,313,68,1.0],[113,313,69,1.0],[113,313,70,1.0],[113,313,71,1.0],[113,313,72,1.0],[113,313,73,1.0],[113,313,74,1.0],[113,313,75,1.0],[113,313,76,1.0],[113,313,77,1.0],[113,313,78,1.0],[113,313,79,1.0],[113,314,64,1.0],[113,314,65,1.0],[113,314,66,1.0],[113,314,67,1.0],[113,314,68,1.0],[113,314,69,1.0],[113,314,70,1.0],[113,314,71,1.0],[113,314,72,1.0],[113,314,73,1.0],[113,314,74,1.0],[113,314,75,1.0],[113,314,76,1.0],[113,314,77,1.0],[113,314,78,1.0],[113,314,79,1.0],[113,315,64,1.0],[113,315,65,1.0],[113,315,66,1.0],[113,315,67,1.0],[113,315,68,1.0],[113,315,69,1.0],[113,315,70,1.0],[113,315,71,1.0],[113,315,72,1.0],[113,315,73,1.0],[113,315,74,1.0],[113,315,75,1.0],[113,315,76,1.0],[113,315,77,1.0],[113,315,78,1.0],[113,315,79,1.0],[113,316,64,1.0],[113,316,65,1.0],[113,316,66,1.0],[113,316,67,1.0],[113,316,68,1.0],[113,316,69,1.0],[113,316,70,1.0],[113,316,71,1.0],[113,316,72,1.0],[113,316,73,1.0],[113,316,74,1.0],[113,316,75,1.0],[113,316,76,1.0],[113,316,77,1.0],[113,316,78,1.0],[113,316,79,1.0],[113,317,64,1.0],[113,317,65,1.0],[113,317,66,1.0],[113,317,67,1.0],[113,317,68,1.0],[113,317,69,1.0],[113,317,70,1.0],[113,317,71,1.0],[113,317,72,1.0],[113,317,73,1.0],[113,317,74,1.0],[113,317,75,1.0],[113,317,76,1.0],[113,317,77,1.0],[113,317,78,1.0],[113,317,79,1.0],[113,318,64,1.0],[113,318,65,1.0],[113,318,66,1.0],[113,318,67,1.0],[113,318,68,1.0],[113,318,69,1.0],[113,318,70,1.0],[113,318,71,1.0],[113,318,72,1.0],[113,318,73,1.0],[113,318,74,1.0],[113,318,75,1.0],[113,318,76,1.0],[113,318,77,1.0],[113,318,78,1.0],[113,318,79,1.0],[113,319,64,1.0],[113,319,65,1.0],[113,319,66,1.0],[113,319,67,1.0],[113,319,68,1.0],[113,319,69,1.0],[113,319,70,1.0],[113,319,71,1.0],[113,319,72,1.0],[113,319,73,1.0],[113,319,74,1.0],[113,319,75,1.0],[113,319,76,1.0],[113,319,77,1.0],[113,319,78,1.0],[113,319,79,1.0],[114,-64,64,1.0],[114,-64,65,1.0],[114,-64,66,1.0],[114,-64,67,1.0],[114,-64,68,1.0],[114,-64,69,1.0],[114,-64,70,1.0],[114,-64,71,1.0],[114,-64,72,1.0],[114,-64,73,1.0],[114,-64,74,1.0],[114,-64,75,1.0],[114,-64,76,1.0],[114,-64,77,1.0],[114,-64,78,1.0],[114,-64,79,1.0],[114,-63,64,1.0],[114,-63,65,1.0],[114,-63,66,1.0],[114,-63,67,1.0],[114,-63,68,1.0],[114,-63,69,1.0],[114,-63,70,1.0],[114,-63,71,1.0],[114,-63,72,1.0],[114,-63,73,1.0],[114,-63,74,1.0],[114,-63,75,1.0],[114,-63,76,1.0],[114,-63,77,1.0],[114,-63,78,1.0],[114,-63,79,1.0],[114,-62,64,1.0],[114,-62,65,1.0],[114,-62,66,1.0],[114,-62,67,1.0],[114,-62,68,1.0],[114,-62,69,1.0],[114,-62,70,1.0],[114,-62,71,1.0],[114,-62,72,1.0],[114,-62,73,1.0],[114,-62,74,1.0],[114,-62,75,1.0],[114,-62,76,1.0],[114,-62,77,1.0],[114,-62,78,1.0],[114,-62,79,1.0],[114,-61,64,1.0],[114,-61,65,1.0],[114,-61,66,1.0],[114,-61,67,1.0],[114,-61,68,1.0],[114,-61,69,1.0],[114,-61,70,1.0],[114,-61,71,1.0],[114,-61,72,1.0],[114,-61,73,1.0],[114,-61,74,1.0],[114,-61,75,1.0],[114,-61,76,1.0],[114,-61,77,1.0],[114,-61,78,1.0],[114,-61,79,1.0],[114,-60,64,1.0],[114,-60,65,1.0],[114,-60,66,1.0],[114,-60,67,1.0],[114,-60,68,1.0],[114,-60,69,1.0],[114,-60,70,1.0],[114,-60,71,1.0],[114,-60,72,1.0],[114,-60,73,1.0],[114,-60,74,1.0],[114,-60,75,1.0],[114,-60,76,1.0],[114,-60,77,1.0],[114,-60,78,1.0],[114,-60,79,1.0],[114,-59,64,1.0],[114,-59,65,1.0],[114,-59,66,1.0],[114,-59,67,1.0],[114,-59,68,1.0],[114,-59,69,1.0],[114,-59,70,1.0],[114,-59,71,1.0],[114,-59,72,1.0],[114,-59,73,1.0],[114,-59,74,1.0],[114,-59,75,1.0],[114,-59,76,1.0],[114,-59,77,1.0],[114,-59,78,1.0],[114,-59,79,1.0],[114,-58,64,1.0],[114,-58,65,1.0],[114,-58,66,1.0],[114,-58,67,1.0],[114,-58,68,1.0],[114,-58,69,1.0],[114,-58,70,1.0],[114,-58,71,1.0],[114,-58,72,1.0],[114,-58,73,1.0],[114,-58,74,1.0],[114,-58,75,1.0],[114,-58,76,1.0],[114,-58,77,1.0],[114,-58,78,1.0],[114,-58,79,1.0],[114,-57,64,1.0],[114,-57,65,1.0],[114,-57,66,1.0],[114,-57,67,1.0],[114,-57,68,1.0],[114,-57,69,1.0],[114,-57,70,1.0],[114,-57,71,1.0],[114,-57,72,1.0],[114,-57,73,1.0],[114,-57,74,1.0],[114,-57,75,1.0],[114,-57,76,1.0],[114,-57,77,1.0],[114,-57,78,1.0],[114,-57,79,1.0],[114,-56,64,1.0],[114,-56,65,1.0],[114,-56,66,1.0],[114,-56,67,1.0],[114,-56,68,1.0],[114,-56,69,1.0],[114,-56,70,1.0],[114,-56,71,1.0],[114,-56,72,1.0],[114,-56,73,1.0],[114,-56,74,1.0],[114,-56,75,1.0],[114,-56,76,1.0],[114,-56,77,1.0],[114,-56,78,1.0],[114,-56,79,1.0],[114,-55,64,1.0],[114,-55,65,1.0],[114,-55,66,1.0],[114,-55,67,1.0],[114,-55,68,1.0],[114,-55,69,1.0],[114,-55,70,1.0],[114,-55,71,1.0],[114,-55,72,1.0],[114,-55,73,1.0],[114,-55,74,1.0],[114,-55,75,1.0],[114,-55,76,1.0],[114,-55,77,1.0],[114,-55,78,1.0],[114,-55,79,1.0],[114,-54,64,1.0],[114,-54,65,1.0],[114,-54,66,1.0],[114,-54,67,1.0],[114,-54,68,1.0],[114,-54,69,1.0],[114,-54,70,1.0],[114,-54,71,1.0],[114,-54,72,1.0],[114,-54,73,1.0],[114,-54,74,1.0],[114,-54,75,1.0],[114,-54,76,1.0],[114,-54,77,1.0],[114,-54,78,1.0],[114,-54,79,1.0],[114,-53,64,1.0],[114,-53,65,1.0],[114,-53,66,1.0],[114,-53,67,1.0],[114,-53,68,1.0],[114,-53,69,1.0],[114,-53,70,1.0],[114,-53,71,1.0],[114,-53,72,1.0],[114,-53,73,1.0],[114,-53,74,1.0],[114,-53,75,1.0],[114,-53,76,1.0],[114,-53,77,1.0],[114,-53,78,1.0],[114,-53,79,1.0],[114,-52,64,1.0],[114,-52,65,1.0],[114,-52,66,1.0],[114,-52,67,1.0],[114,-52,68,1.0],[114,-52,69,1.0],[114,-52,70,1.0],[114,-52,71,1.0],[114,-52,72,1.0],[114,-52,73,1.0],[114,-52,74,1.0],[114,-52,75,1.0],[114,-52,76,1.0],[114,-52,77,1.0],[114,-52,78,1.0],[114,-52,79,1.0],[114,-51,64,1.0],[114,-51,65,1.0],[114,-51,66,1.0],[114,-51,67,1.0],[114,-51,68,1.0],[114,-51,69,1.0],[114,-51,70,1.0],[114,-51,71,1.0],[114,-51,72,1.0],[114,-51,73,1.0],[114,-51,74,1.0],[114,-51,75,1.0],[114,-51,76,1.0],[114,-51,77,1.0],[114,-51,78,1.0],[114,-51,79,1.0],[114,-50,64,1.0],[114,-50,65,1.0],[114,-50,66,1.0],[114,-50,67,1.0],[114,-50,68,1.0],[114,-50,69,1.0],[114,-50,70,1.0],[114,-50,71,1.0],[114,-50,72,1.0],[114,-50,73,1.0],[114,-50,74,1.0],[114,-50,75,1.0],[114,-50,76,1.0],[114,-50,77,1.0],[114,-50,78,1.0],[114,-50,79,1.0],[114,-49,64,1.0],[114,-49,65,1.0],[114,-49,66,1.0],[114,-49,67,1.0],[114,-49,68,1.0],[114,-49,69,1.0],[114,-49,70,1.0],[114,-49,71,1.0],[114,-49,72,1.0],[114,-49,73,1.0],[114,-49,74,1.0],[114,-49,75,1.0],[114,-49,76,1.0],[114,-49,77,1.0],[114,-49,78,1.0],[114,-49,79,1.0],[114,-48,64,1.0],[114,-48,65,1.0],[114,-48,66,1.0],[114,-48,67,1.0],[114,-48,68,1.0],[114,-48,69,1.0],[114,-48,70,1.0],[114,-48,71,1.0],[114,-48,72,1.0],[114,-48,73,1.0],[114,-48,74,1.0],[114,-48,75,1.0],[114,-48,76,1.0],[114,-48,77,1.0],[114,-48,78,1.0],[114,-48,79,1.0],[114,-47,64,1.0],[114,-47,65,1.0],[114,-47,66,1.0],[114,-47,67,1.0],[114,-47,68,1.0],[114,-47,69,1.0],[114,-47,70,1.0],[114,-47,71,1.0],[114,-47,72,1.0],[114,-47,73,1.0],[114,-47,74,1.0],[114,-47,75,1.0],[114,-47,76,1.0],[114,-47,77,1.0],[114,-47,78,1.0],[114,-47,79,1.0],[114,-46,64,1.0],[114,-46,65,1.0],[114,-46,66,1.0],[114,-46,67,1.0],[114,-46,68,1.0],[114,-46,69,1.0],[114,-46,70,1.0],[114,-46,71,1.0],[114,-46,72,1.0],[114,-46,73,1.0],[114,-46,74,1.0],[114,-46,75,1.0],[114,-46,76,1.0],[114,-46,77,1.0],[114,-46,78,1.0],[114,-46,79,1.0],[114,-45,64,1.0],[114,-45,65,1.0],[114,-45,66,1.0],[114,-45,67,1.0],[114,-45,68,1.0],[114,-45,69,1.0],[114,-45,70,1.0],[114,-45,71,1.0],[114,-45,72,1.0],[114,-45,73,1.0],[114,-45,74,1.0],[114,-45,75,1.0],[114,-45,76,1.0],[114,-45,77,1.0],[114,-45,78,1.0],[114,-45,79,1.0],[114,-44,64,1.0],[114,-44,65,1.0],[114,-44,66,1.0],[114,-44,67,1.0],[114,-44,68,1.0],[114,-44,69,1.0],[114,-44,70,1.0],[114,-44,71,1.0],[114,-44,72,1.0],[114,-44,73,1.0],[114,-44,74,1.0],[114,-44,75,1.0],[114,-44,76,1.0],[114,-44,77,1.0],[114,-44,78,1.0],[114,-44,79,1.0],[114,-43,64,1.0],[114,-43,65,1.0],[114,-43,66,1.0],[114,-43,67,1.0],[114,-43,68,1.0],[114,-43,69,1.0],[114,-43,70,1.0],[114,-43,71,1.0],[114,-43,72,1.0],[114,-43,73,1.0],[114,-43,74,1.0],[114,-43,75,1.0],[114,-43,76,1.0],[114,-43,77,1.0],[114,-43,78,1.0],[114,-43,79,1.0],[114,-42,64,1.0],[114,-42,65,1.0],[114,-42,66,1.0],[114,-42,67,1.0],[114,-42,68,1.0],[114,-42,69,1.0],[114,-42,70,1.0],[114,-42,71,1.0],[114,-42,72,1.0],[114,-42,73,1.0],[114,-42,74,1.0],[114,-42,75,1.0],[114,-42,76,1.0],[114,-42,77,1.0],[114,-42,78,1.0],[114,-42,79,1.0],[114,-41,64,1.0],[114,-41,65,1.0],[114,-41,66,1.0],[114,-41,67,1.0],[114,-41,68,1.0],[114,-41,69,1.0],[114,-41,70,1.0],[114,-41,71,1.0],[114,-41,72,1.0],[114,-41,73,1.0],[114,-41,74,1.0],[114,-41,75,1.0],[114,-41,76,1.0],[114,-41,77,1.0],[114,-41,78,1.0],[114,-41,79,1.0],[114,-40,64,1.0],[114,-40,65,1.0],[114,-40,66,1.0],[114,-40,67,1.0],[114,-40,68,1.0],[114,-40,69,1.0],[114,-40,70,1.0],[114,-40,71,1.0],[114,-40,72,1.0],[114,-40,73,1.0],[114,-40,74,1.0],[114,-40,75,1.0],[114,-40,76,1.0],[114,-40,77,1.0],[114,-40,78,1.0],[114,-40,79,1.0],[114,-39,64,1.0],[114,-39,65,1.0],[114,-39,66,1.0],[114,-39,67,1.0],[114,-39,68,1.0],[114,-39,69,1.0],[114,-39,70,1.0],[114,-39,71,1.0],[114,-39,72,1.0],[114,-39,73,1.0],[114,-39,74,1.0],[114,-39,75,1.0],[114,-39,76,1.0],[114,-39,77,1.0],[114,-39,78,1.0],[114,-39,79,1.0],[114,-38,64,1.0],[114,-38,65,1.0],[114,-38,66,1.0],[114,-38,67,1.0],[114,-38,68,1.0],[114,-38,69,1.0],[114,-38,70,1.0],[114,-38,71,1.0],[114,-38,72,1.0],[114,-38,73,1.0],[114,-38,74,1.0],[114,-38,75,1.0],[114,-38,76,1.0],[114,-38,77,1.0],[114,-38,78,1.0],[114,-38,79,1.0],[114,-37,64,1.0],[114,-37,65,1.0],[114,-37,66,1.0],[114,-37,67,1.0],[114,-37,68,1.0],[114,-37,69,1.0],[114,-37,70,1.0],[114,-37,71,1.0],[114,-37,72,1.0],[114,-37,73,1.0],[114,-37,74,1.0],[114,-37,75,1.0],[114,-37,76,1.0],[114,-37,77,1.0],[114,-37,78,1.0],[114,-37,79,1.0],[114,-36,64,1.0],[114,-36,65,1.0],[114,-36,66,1.0],[114,-36,67,1.0],[114,-36,68,1.0],[114,-36,69,1.0],[114,-36,70,1.0],[114,-36,71,1.0],[114,-36,72,1.0],[114,-36,73,1.0],[114,-36,74,1.0],[114,-36,75,1.0],[114,-36,76,1.0],[114,-36,77,1.0],[114,-36,78,1.0],[114,-36,79,1.0],[114,-35,64,1.0],[114,-35,65,1.0],[114,-35,66,1.0],[114,-35,67,1.0],[114,-35,68,1.0],[114,-35,69,1.0],[114,-35,70,1.0],[114,-35,71,1.0],[114,-35,72,1.0],[114,-35,73,1.0],[114,-35,74,1.0],[114,-35,75,1.0],[114,-35,76,1.0],[114,-35,77,1.0],[114,-35,78,1.0],[114,-35,79,1.0],[114,-34,64,1.0],[114,-34,65,1.0],[114,-34,66,1.0],[114,-34,67,1.0],[114,-34,68,1.0],[114,-34,69,1.0],[114,-34,70,1.0],[114,-34,71,1.0],[114,-34,72,1.0],[114,-34,73,1.0],[114,-34,74,1.0],[114,-34,75,1.0],[114,-34,76,1.0],[114,-34,77,1.0],[114,-34,78,1.0],[114,-34,79,1.0],[114,-33,64,1.0],[114,-33,65,1.0],[114,-33,66,1.0],[114,-33,67,1.0],[114,-33,68,1.0],[114,-33,69,1.0],[114,-33,70,1.0],[114,-33,71,1.0],[114,-33,72,1.0],[114,-33,73,1.0],[114,-33,74,1.0],[114,-33,75,1.0],[114,-33,76,1.0],[114,-33,77,1.0],[114,-33,78,1.0],[114,-33,79,1.0],[114,-32,64,1.0],[114,-32,65,1.0],[114,-32,66,1.0],[114,-32,67,1.0],[114,-32,68,1.0],[114,-32,69,1.0],[114,-32,70,1.0],[114,-32,71,1.0],[114,-32,72,1.0],[114,-32,73,1.0],[114,-32,74,1.0],[114,-32,75,1.0],[114,-32,76,1.0],[114,-32,77,1.0],[114,-32,78,1.0],[114,-32,79,1.0],[114,-31,64,1.0],[114,-31,65,1.0],[114,-31,66,1.0],[114,-31,67,1.0],[114,-31,68,1.0],[114,-31,69,1.0],[114,-31,70,1.0],[114,-31,71,1.0],[114,-31,72,1.0],[114,-31,73,1.0],[114,-31,74,1.0],[114,-31,75,1.0],[114,-31,76,1.0],[114,-31,77,1.0],[114,-31,78,1.0],[114,-31,79,1.0],[114,-30,64,1.0],[114,-30,65,1.0],[114,-30,66,1.0],[114,-30,67,1.0],[114,-30,68,1.0],[114,-30,69,1.0],[114,-30,70,1.0],[114,-30,71,1.0],[114,-30,72,1.0],[114,-30,73,1.0],[114,-30,74,1.0],[114,-30,75,1.0],[114,-30,76,1.0],[114,-30,77,1.0],[114,-30,78,1.0],[114,-30,79,1.0],[114,-29,64,1.0],[114,-29,65,1.0],[114,-29,66,1.0],[114,-29,67,1.0],[114,-29,68,1.0],[114,-29,69,1.0],[114,-29,70,1.0],[114,-29,71,1.0],[114,-29,72,1.0],[114,-29,73,1.0],[114,-29,74,1.0],[114,-29,75,1.0],[114,-29,76,1.0],[114,-29,77,1.0],[114,-29,78,1.0],[114,-29,79,1.0],[114,-28,64,1.0],[114,-28,65,1.0],[114,-28,66,1.0],[114,-28,67,1.0],[114,-28,68,1.0],[114,-28,69,1.0],[114,-28,70,1.0],[114,-28,71,1.0],[114,-28,72,1.0],[114,-28,73,1.0],[114,-28,74,1.0],[114,-28,75,1.0],[114,-28,76,1.0],[114,-28,77,1.0],[114,-28,78,1.0],[114,-28,79,1.0],[114,-27,64,1.0],[114,-27,65,1.0],[114,-27,66,1.0],[114,-27,67,1.0],[114,-27,68,1.0],[114,-27,69,1.0],[114,-27,70,1.0],[114,-27,71,1.0],[114,-27,72,1.0],[114,-27,73,1.0],[114,-27,74,1.0],[114,-27,75,1.0],[114,-27,76,1.0],[114,-27,77,1.0],[114,-27,78,1.0],[114,-27,79,1.0],[114,-26,64,1.0],[114,-26,65,1.0],[114,-26,66,1.0],[114,-26,67,1.0],[114,-26,68,1.0],[114,-26,69,1.0],[114,-26,70,1.0],[114,-26,71,1.0],[114,-26,72,1.0],[114,-26,73,1.0],[114,-26,74,1.0],[114,-26,75,1.0],[114,-26,76,1.0],[114,-26,77,1.0],[114,-26,78,1.0],[114,-26,79,1.0],[114,-25,64,1.0],[114,-25,65,1.0],[114,-25,66,1.0],[114,-25,67,1.0],[114,-25,68,1.0],[114,-25,69,1.0],[114,-25,70,1.0],[114,-25,71,1.0],[114,-25,72,1.0],[114,-25,73,1.0],[114,-25,74,1.0],[114,-25,75,1.0],[114,-25,76,1.0],[114,-25,77,1.0],[114,-25,78,1.0],[114,-25,79,1.0],[114,-24,64,1.0],[114,-24,65,1.0],[114,-24,66,1.0],[114,-24,67,1.0],[114,-24,68,1.0],[114,-24,69,1.0],[114,-24,70,1.0],[114,-24,71,1.0],[114,-24,72,1.0],[114,-24,73,1.0],[114,-24,74,1.0],[114,-24,75,1.0],[114,-24,76,1.0],[114,-24,77,1.0],[114,-24,78,1.0],[114,-24,79,1.0],[114,-23,64,1.0],[114,-23,65,1.0],[114,-23,66,1.0],[114,-23,67,1.0],[114,-23,68,1.0],[114,-23,69,1.0],[114,-23,70,1.0],[114,-23,71,1.0],[114,-23,72,1.0],[114,-23,73,1.0],[114,-23,74,1.0],[114,-23,75,1.0],[114,-23,76,1.0],[114,-23,77,1.0],[114,-23,78,1.0],[114,-23,79,1.0],[114,-22,64,1.0],[114,-22,65,1.0],[114,-22,66,1.0],[114,-22,67,1.0],[114,-22,68,1.0],[114,-22,69,1.0],[114,-22,70,1.0],[114,-22,71,1.0],[114,-22,72,1.0],[114,-22,73,1.0],[114,-22,74,1.0],[114,-22,75,1.0],[114,-22,76,1.0],[114,-22,77,1.0],[114,-22,78,1.0],[114,-22,79,1.0],[114,-21,64,1.0],[114,-21,65,1.0],[114,-21,66,1.0],[114,-21,67,1.0],[114,-21,68,1.0],[114,-21,69,1.0],[114,-21,70,1.0],[114,-21,71,1.0],[114,-21,72,1.0],[114,-21,73,1.0],[114,-21,74,1.0],[114,-21,75,1.0],[114,-21,76,1.0],[114,-21,77,1.0],[114,-21,78,1.0],[114,-21,79,1.0],[114,-20,64,1.0],[114,-20,65,1.0],[114,-20,66,1.0],[114,-20,67,1.0],[114,-20,68,1.0],[114,-20,69,1.0],[114,-20,70,1.0],[114,-20,71,1.0],[114,-20,72,1.0],[114,-20,73,1.0],[114,-20,74,1.0],[114,-20,75,1.0],[114,-20,76,1.0],[114,-20,77,1.0],[114,-20,78,1.0],[114,-20,79,1.0],[114,-19,64,1.0],[114,-19,65,1.0],[114,-19,66,1.0],[114,-19,67,1.0],[114,-19,68,1.0],[114,-19,69,1.0],[114,-19,70,1.0],[114,-19,71,1.0],[114,-19,72,1.0],[114,-19,73,1.0],[114,-19,74,1.0],[114,-19,75,1.0],[114,-19,76,1.0],[114,-19,77,1.0],[114,-19,78,1.0],[114,-19,79,1.0],[114,-18,64,1.0],[114,-18,65,1.0],[114,-18,66,1.0],[114,-18,67,1.0],[114,-18,68,1.0],[114,-18,69,1.0],[114,-18,70,1.0],[114,-18,71,1.0],[114,-18,72,1.0],[114,-18,73,1.0],[114,-18,74,1.0],[114,-18,75,1.0],[114,-18,76,1.0],[114,-18,77,1.0],[114,-18,78,1.0],[114,-18,79,1.0],[114,-17,64,1.0],[114,-17,65,1.0],[114,-17,66,1.0],[114,-17,67,1.0],[114,-17,68,1.0],[114,-17,69,1.0],[114,-17,70,1.0],[114,-17,71,1.0],[114,-17,72,1.0],[114,-17,73,1.0],[114,-17,74,1.0],[114,-17,75,1.0],[114,-17,76,1.0],[114,-17,77,1.0],[114,-17,78,1.0],[114,-17,79,1.0],[114,-16,64,1.0],[114,-16,65,1.0],[114,-16,66,1.0],[114,-16,67,1.0],[114,-16,68,1.0],[114,-16,69,1.0],[114,-16,70,1.0],[114,-16,71,1.0],[114,-16,72,1.0],[114,-16,73,1.0],[114,-16,74,1.0],[114,-16,75,1.0],[114,-16,76,1.0],[114,-16,77,1.0],[114,-16,78,1.0],[114,-16,79,1.0],[114,-15,64,0.922669513501206],[114,-15,65,1.0],[114,-15,66,1.0],[114,-15,67,1.0],[114,-15,68,1.0],[114,-15,69,1.0],[114,-15,70,1.0],[114,-15,71,1.0],[114,-15,72,1.0],[114,-15,73,1.0],[114,-15,74,1.0],[114,-15,75,1.0],[114,-15,76,1.0],[114,-15,77,1.0],[114,-15,78,1.0],[114,-15,79,1.0],[114,-14,64,0.6106753877485903],[114,-14,65,0.6923641013961878],[114,-14,66,0.7787789796645029],[114,-14,67,0.8696780856933097],[114,-14,68,0.9647970563875321],[114,-14,69,1.0],[114,-14,70,1.0],[114,-14,71,1.0],[114,-14,72,1.0],[114,-14,73,1.0],[114,-14,74,1.0],[114,-14,75,1.0],[114,-14,76,1.0],[114,-14,77,1.0],[114,-14,78,1.0],[114,-14,79,1.0],[114,-13,64,0.3783757780181125],[114,-13,65,0.4381807084501205],[114,-13,66,0.5022956042321204],[114,-13,67,0.5705488001994456],[114,-13,68,0.6427436460929283],[114,-13,69,0.7186619401093353],[114,-13,70,0.798067348203079],[114,-13,71,0.880708791930273],[114,-13,72,0.9663237883843049],[114,-13,73,1.0],[114,-13,74,1.0],[114,-13,75,1.0],[114,-13,76,1.0],[114,-13,77,1.0],[114,-13,78,1.0],[114,-13,79,1.0],[114,-12,64,0.2140175245971575],[114,-12,65,0.25534412912791116],[114,-12,66,0.3004812315947933],[114,-12,67,0.3493274842367316],[114,-12,68,0.40175409575864457],[114,-12,69,0.4576081198330424],[114,-12,70,0.5167157359271647],[114,-12,71,0.5788855055089601],[114,-12,72,0.643911587406972],[114,-12,73,0.7115768969318393],[114,-12,74,0.7816561942957764],[114,-12,75,0.8539190889358529],[114,-12,76,0.9281329475113267],[114,-12,77,1.0],[114,-12,78,1.0],[114,-12,79,1.0],[114,-11,64,0.10584737185320005],[114,-11,65,0.13210123833483484],[114,-11,66,0.1615828670014899],[114,-11,67,0.19426127319758912],[114,-11,68,0.2300756707146315],[114,-11,69,0.26893861777813194],[114,-11,70,0.31073916195688683],[114,-11,71,0.3553459673096873],[114,-11,72,0.4026104077706448],[114,-11,73,0.45236961157094474],[114,-11,74,0.5044494423892222],[114,-11,75,0.558667403946283],[114,-11,76,0.6148354558789396],[114,-11,77,0.6727627299310482],[114,-11,78,0.7322581368207864],[114,-11,79,0.7931328555438872],[114,-10,64,0.04211196811203282],[114,-10,65,0.05669881455891864],[114,-10,66,0.07384741891011008],[114,-10,67,0.09359720531126599],[114,-10,68,0.11595553875725083],[114,-10,69,0.14090073109860302],[114,-10,70,0.16838505258965328],[114,-10,71,0.19833773255479692],[114,-10,72,0.23066793340040567],[114,-10,73,0.26526768296053344],[114,-10,74,0.30201475102397557],[114,-10,75,0.3407754568685486],[114,-10,76,0.38140739570208265],[114,-10,77,0.42376207306792035],[114,-10,78,0.4676874375379571],[114,-10,79,0.5130303033603839],[114,-9,64,0.027902358795652754],[114,-9,65,0.031265630724593894],[114,-9,66,0.034531660411820736],[114,-9,67,0.03769788537437051],[114,-9,68,0.047640770017218954],[114,-9,69,0.061741658910533966],[114,-9,70,0.07790073571433632],[114,-9,71,0.09610825768911668],[114,-9,72,0.11633174907645753],[114,-9,73,0.13851882399240747],[114,-9,74,0.1625999609770341],[114,-9,75,0.18849121613640063],[114,-9,76,0.21609686284138305],[114,-9,77,0.24531194706041826],[114,-9,78,0.27602474861340487],[114,-9,79,0.3081191399215864],[114,-8,64,0.02363712340741045],[114,-8,65,0.026974120602608197],[114,-8,66,0.030217787837168046],[114,-8,67,0.033365632600172744],[114,-8,68,0.0364151065983308],[114,-8,69,0.03936362397931857],[114,-8,70,0.042208578983936394],[114,-8,71,0.04494736302688799],[114,-8,72,0.04784934029199152],[114,-8,73,0.06037064790215211],[114,-8,74,0.07445281300156618],[114,-8,75,0.0900625497937181],[114,-8,76,0.10715185240310854],[114,-8,77,0.12566047384805556],[114,-8,78,0.1455183185905753],[114,-8,79,0.16664774014606143],[114,-7,64,0.01934318085906713],[114,-7,65,0.022651900736930693],[114,-7,66,0.025871176906855954],[114,-7,67,0.028998588414291933],[114,-7,68,0.032031646996991056],[114,-7,69,0.03496781559678709],[114,-7,70,0.0378045262995897],[114,-7,71,0.040539197703403106],[114,-7,72,0.04316925171463196],[114,-7,73,0.045692129772361686],[114,-7,74,0.04810530850076109],[114,-7,75,0.0504063147897566],[114,-7,76,0.052592740303662254],[114,-7,77,0.054662255418033316],[114,-7,78,0.06441629437586491],[114,-7,79,0.0768643769521148],[114,-6,64,0.01502777394989517],[114,-6,65,0.018306221443344588],[114,-6,66,0.021499080803295323],[114,-6,67,0.024604004128517022],[114,-6,68,0.02761856495016212],[114,-6,69,0.030540277012499277],[114,-6,70,0.03336661248170232],[114,-6,71,0.036095019582501366],[114,-6,72,0.038722939662957145],[114,-6,73,0.04124782368704879],[114,-6,74,0.04366714815522085],[114,-6,75,0.04597843045303922],[114,-6,76,0.048179243627640686],[114,-6,77,0.050267230592243764],[114,-6,78,0.0522401177585166],[114,-6,79,0.05409572809707585],[114,-5,64,0.010698169909391785],[114,-5,65,0.013944360877294872],[114,-5,66,0.017108784019382407],[114,-5,67,0.02018916589495537],[114,-5,68,0.02318314351457619],[114,-5,69,0.026088283369967498],[114,-5,70,0.028902099892237694],[114,-5,71,0.031622073338243024],[114,-5,72,0.03424566710534613],[114,-5,73,0.03677034447425893],[114,-5,74,0.03919358478011863],[114,-5,75,0.0415128990119471],[114,-5,76,0.04372584484017435],[114,-5,77,0.045830041072497434],[114,-5,78,0.047823181537868326],[114,-5,79,0.04970304839888778],[114,-4,64,0.006361648497081943],[114,-4,65,0.009573613112243987],[114,-4,66,0.012707590425458715],[114,-4,67,0.015761382771835336],[114,-4,68,0.018732692248317875],[114,-4,69,0.021619139972677615],[114,-4,70,0.024418284771541364],[114,-4,71,0.027127641297261786],[114,-4,72,0.02974469757389262],[114,-4,73,0.03226693197195739],[114,-4,74,0.034691829612155965],[114,-4,75,0.03701689819816302],[114,-4,76,0.039239683278198684],[114,-4,77,0.041357782935641685],[114,-4,78,0.04336886190847872],[114,-4,79,0.04527066513786706],[114,-3,64,0.002025491119799383],[114,-3,65,0.0052012772388662434],[114,-3,66,0.00830281236070999],[114,-3,67,0.011327975817595273],[114,-3,68,0.014274536318246434],[114,-3,69,0.01714017141562011],[114,-3,70,0.019922486404855104],[114,-3,71,0.02261903265120458],[114,-3,72,0.025227325348214445],[114,-3,73,0.027744860705833936],[114,-3,74,0.03016913256860585],[114,-3,75,0.03249764846409024],[114,-3,76,0.03472794508119935],[114,-3,77,0.03685760317871541],[114,-3,78,0.03888426192378642],[114,-3,79,0.040805632660675696],[114,-2,64,-0.0023030290335295175],[114,-2,65,8.346474851061159E-4],[114,-2,66,0.0039017607490344566],[114,-2,67,0.0068962682132879954],[114,-2,68,0.009816006639824612],[114,-2,69,0.01265871175356046],[114,-2,70,0.015422037330151142],[114,-2,71,0.01810357371532529],[114,-2,72,0.02070086577603812],[114,-2,73,0.02321143028312722],[114,-2,74,0.025632772725619875],[114,-2,75,0.02796240355684461],[114,-2,76,0.030197853872026434],[114,-2,77,0.03233669051763625],[114,-2,78,0.03437653063228845],[114,-2,79,0.036315055619465166],[114,-1,64,-0.006616655839627297],[114,-1,65,-0.003518995642924093],[114,-1,66,-4.8826376064910887E-4],[114,-1,67,0.0024735764132681262],[114,-1,68,0.005364431049320252],[114,-1,69,0.008182095706022484],[114,-1,70,0.010924274587261404],[114,-1,71,0.0135885992331954],[114,-1,72,0.01617264664497508],[114,-1,73,0.01867395684296301],[114,-1,74,0.02109004985860702],[114,-1,75,0.023418442160115974],[114,-1,76,0.02565666251161787],[114,-1,77,0.0278022672660723],[114,-1,78,0.029852855091730343],[114,-1,79,0.03180608113242073],[114,0,64,-0.010908158071109467],[114,0,65,-0.007852393199191066],[114,0,66,-0.004859978629634103],[114,0,67,-0.001932797675812073],[114,0,68,9.271265084063798E-4],[114,0,69,0.0037176508990016746],[114,0,70,0.0064365320083195066],[114,0,71,0.009081444727560305],[114,0,72,0.01165000060551534],[114,0,73,0.014139765563223966],[114,0,74,0.0165482770447068],[114,0,75,0.018873060603927017],[114,0,76,0.021111645927656623],[114,0,77,0.023261582294520702],[114,0,78,0.025320453470011592],[114,0,79,0.027285892037754486],[114,1,64,-0.015170336209250089],[114,1,65,-0.012158314615142947],[114,1,66,-0.00920612624021179],[114,1,67,-0.006315573487717933],[114,1,68,-0.003488607658859076],[114,1,69,-7.273088566019312E-4],[114,1,70,0.001966133549502487],[114,1,71,0.004589439897319796],[114,1,72,0.00714025864522129],[114,1,73,0.009616184223938909],[114,1,74,0.012014774327339314],[114,1,75,0.014333566642268883],[114,1,76,0.01657009501714672],[114,1,77,0.018721905069578763],[114,1,78,0.020786569232785608],[114,1,79,0.022761701241125434],[114,2,64,-0.01939602823925117],[114,2,65,-0.01642956349625809],[114,2,66,-0.013519479682000887],[114,2,67,-0.010667497561042107],[114,2,68,-0.007875495496658398],[114,2,69,-0.005145489249823339],[114,2,70,-0.002479612335914698],[114,2,71,1.1990306065112755E-4],[114,2,72,0.0026507446141332755],[114,2,73,0.0051105378272014446],[114,2,74,0.007496863442848153],[114,2,75,0.009807274298630805],[114,2,76,0.012039311622918415],[114,2,77,0.014190520773418161],[114,2,78,0.016258466417771053],[114,2,79,0.01824074715650345],[114,3,64,-0.0077209693769083815],[114,3,65,-0.012697702712760649],[114,3,66,-0.017792847513823505],[114,3,67,-0.014981348275318357],[114,3,68,-0.012226289115651663],[114,3,69,-0.009529620117745996],[114,3,70,-0.006893417283201503],[114,3,71,-0.004319863355736746],[114,3,72,-0.001811229198615337],[114,3,73,6.301442736148938E-4],[114,3,74,0.003001863609226628],[114,3,75,0.005301499779413396],[114,3,76,0.007526604584059654],[114,3,77,0.009674726503458755],[114,3,78,0.011743425995765278],[114,3,79,0.013730290240468707],[114,4,64,-3.854053774214178E-4],[114,4,65,-0.0012745505545692986],[114,4,66,-0.0029358903972173476],[114,4,67,-0.005552496317009024],[114,4,68,-0.00927226388771924],[114,4,69,-0.013872459056898274],[114,4,70,-0.011268016560509478],[114,4,71,-0.00872257628121758],[114,4,72,-0.006238365436983237],[114,4,73,-0.003817688904744182],[114,4,74,-0.0014629116230741174],[114,4,75,8.235584552248876E-4],[114,4,76,0.003039286860265611],[114,4,77,0.005181828552235569],[114,4,78,0.007248743318357412],[114,4,79,0.009237610619942292],[114,5,64,1.4142261315236134E-4],[114,5,65,4.452718942057926E-6],[114,5,66,-6.144359113259215E-6],[114,5,67,-1.4225658233990696E-4],[114,5,68,-6.186857963714412E-4],[114,5,69,-0.0016156498191684323],[114,5,70,-0.003281308863685032],[114,5,71,-0.005734301045234665],[114,5,72,-0.009066272268353168],[114,5,73,-0.008225666754829226],[114,5,74,-0.005890156458246025],[114,5,75,-0.0036192370899299497],[114,5,76,-0.001415326269877351],[114,5,77,7.191407674705386E-4],[114,5,78,0.0027817266523519554],[114,5,79,0.004770006813361968],[114,6,64,0.005542758666047906],[114,6,65,0.0028226766446215394],[114,6,66,0.001209939623235204],[114,6,67,3.8379987309135875E-4],[114,6,68,6.240605143448098E-5],[114,6,69,4.277439122470062E-7],[114,6,70,-1.3351036115797102E-5],[114,6,71,-1.5845439914562994E-4],[114,6,72,-5.851387022412353E-4],[114,6,73,-0.0014168043726497978],[114,6,74,-0.002752382264932039],[114,6,75,-0.004668682175974462],[114,6,76,-0.005829917936697862],[114,6,77,-0.0037060160076668597],[114,6,78,-0.001650303199115348],[114,6,79,3.3479554528013933E-4],[114,7,64,0.027501750036911],[114,7,65,0.01886339352365696],[114,7,66,0.012395758728352854],[114,7,67,0.007709194930437238],[114,7,68,0.004454658058722021],[114,7,69,0.002321459332875624],[114,7,70,0.0010349761308147013],[114,7,71,3.5433981683166357E-4],[114,7,72,7.011478450400072E-5],[114,7,73,1.9823947887900217E-6],[114,7,74,-3.5571746406381147E-6],[114,7,75,-7.545290299258374E-5],[114,7,76,-3.203292876149039E-4],[114,7,77,-8.246605634271734E-4],[114,7,78,-0.0016568832256477993],[114,7,79,-0.0028694383381885724],[114,8,64,0.07770144709907299],[114,8,65,0.059809778351353426],[114,8,66,0.045234612407338524],[114,8,67,0.03351735232388006],[114,8,68,0.024241618063974905],[114,8,69,0.017031116706130157],[114,8,70,0.011547468125965517],[114,8,71,0.007488000627953092],[114,8,72,0.004583530555439623],[114,8,73,0.0025961393692839453],[114,8,74,0.0013169610603012709],[114,8,75,5.639920512775759E-4],[114,8,76,1.7993495936095754E-4],[114,8,77,3.008673262088156E-5],[114,8,78,2.807517746381216E-7],[114,8,79,-5.108492858611764E-6],[114,9,64,0.1678248032805265],[114,9,65,0.13734490875061953],[114,9,66,0.11140970231388206],[114,9,67,0.08949159756720171],[114,9,68,0.07110673526428067],[114,9,69,0.05581297256166354],[114,9,70,0.04320782096069837],[114,9,71,0.03292634716682517],[114,9,72,0.024639050668223538],[114,9,73,0.01804973133384705],[114,9,74,0.012893359745636311],[114,9,75,0.008933962310365286],[114,9,76,0.005962532457266979],[114,9,77,0.003794978419945332],[114,9,78,0.002270117229493692],[114,9,79,0.0012477236210939882],[114,10,64,0.3095546750046228],[114,10,65,0.263151764909179],[114,10,66,0.2226041322380123],[114,10,67,0.18731515788408773],[114,10,68,0.15673336014221248],[114,10,69,0.1303505004605241],[114,10,70,0.10769963108897927],[114,10,71,0.08835309859014862],[114,10,72,0.07192051678802173],[114,10,73,0.058046722264313365],[114,10,74,0.04640972496712823],[114,10,75,0.036718665866879864],[114,10,76,0.028711792900756997],[114,10,77,0.022154465689371582],[114,10,78,0.016837198688229936],[114,10,79,0.012573751568295622],[114,11,64,0.5145738216343909],[114,11,65,0.4489132295204198],[114,11,66,0.3905009080434952],[114,11,67,0.338671162142097],[114,11,68,0.29280474439638965],[114,11,69,0.2523270747539926],[114,11,70,0.2167063953311831],[114,11,71,0.1854518739991764],[114,11,72,0.15811167010463997],[114,11,73,0.13427097524316917],[114,11,74,0.11355004150110543],[114,11,75,0.09560220898979133],[114,11,76,0.08011194384850508],[114,11,77,0.06679289718525103],[114,11,78,0.055385994653564495],[114,11,79,0.04565756555138122],[114,12,64,0.7945649054205657],[114,12,65,0.7063120877279536],[114,12,66,0.6267829376089455],[114,12,67,0.5552426407903446],[114,12,68,0.49100404087575417],[114,12,69,0.4334259705144734],[114,12,70,0.38191151080162034],[114,12,71,0.3359061923638966],[114,12,72,0.2948961512533859],[114,12,73,0.2584062523771128],[114,12,74,0.22599819272874266],[114,12,75,0.19726859613545386],[114,12,76,0.17184711063099334],[114,12,77,0.14939451891003322],[114,12,78,0.12960087159731748],[114,12,79,0.11218365230920005],[114,13,64,1.0],[114,13,65,1.0],[114,13,66,0.9431330307725616],[114,13,67,0.8487125258008209],[114,13,68,0.7630143035174948],[114,13,69,0.6853303634700433],[114,13,70,0.6149982748397318],[114,13,71,0.5513994724508952],[114,13,72,0.49395750023961804],[114,13,73,0.44213621471831277],[114,13,74,0.3954379605540483],[114,13,75,0.3534017298623449],[114,13,76,0.3156013162620212],[114,13,77,0.2816434741325683],[114,13,78,0.25116609284266367],[114,13,79,0.22383639501876562],[114,14,64,1.0],[114,14,65,1.0],[114,14,66,1.0],[114,14,67,1.0],[114,14,68,1.0],[114,14,69,1.0],[114,14,70,0.927649884945038],[114,14,71,0.8436150327549727],[114,14,72,0.7669791563670525],[114,14,73,0.6971444221894247],[114,14,74,0.633553025325614],[114,14,75,0.5756854107495665],[114,14,76,0.5230584813539819],[114,14,77,0.47522380330017794],[114,14,78,0.43176581847302004],[114,14,79,0.3923000732009807],[114,15,64,1.0],[114,15,65,1.0],[114,15,66,1.0],[114,15,67,1.0],[114,15,68,1.0],[114,15,69,1.0],[114,15,70,1.0],[114,15,71,1.0],[114,15,72,1.0],[114,15,73,1.0],[114,15,74,0.9520269657619491],[114,15,75,0.8758033373189471],[114,15,76,0.8059024240367529],[114,15,77,0.7418194439543558],[114,15,78,0.6830841052445755],[114,15,79,0.6292588626300175],[114,16,64,1.0],[114,16,65,1.0],[114,16,66,1.0],[114,16,67,1.0],[114,16,68,1.0],[114,16,69,1.0],[114,16,70,1.0],[114,16,71,1.0],[114,16,72,1.0],[114,16,73,1.0],[114,16,74,1.0],[114,16,75,1.0],[114,16,76,1.0],[114,16,77,1.0],[114,16,78,1.0],[114,16,79,0.9463968352464439],[114,17,64,1.0],[114,17,65,1.0],[114,17,66,1.0],[114,17,67,1.0],[114,17,68,1.0],[114,17,69,1.0],[114,17,70,1.0],[114,17,71,1.0],[114,17,72,1.0],[114,17,73,1.0],[114,17,74,1.0],[114,17,75,1.0],[114,17,76,1.0],[114,17,77,1.0],[114,17,78,1.0],[114,17,79,1.0],[114,18,64,1.0],[114,18,65,1.0],[114,18,66,1.0],[114,18,67,1.0],[114,18,68,1.0],[114,18,69,1.0],[114,18,70,1.0],[114,18,71,1.0],[114,18,72,1.0],[114,18,73,1.0],[114,18,74,1.0],[114,18,75,1.0],[114,18,76,1.0],[114,18,77,1.0],[114,18,78,1.0],[114,18,79,1.0],[114,19,64,1.0],[114,19,65,1.0],[114,19,66,1.0],[114,19,67,1.0],[114,19,68,1.0],[114,19,69,1.0],[114,19,70,1.0],[114,19,71,1.0],[114,19,72,1.0],[114,19,73,1.0],[114,19,74,1.0],[114,19,75,1.0],[114,19,76,1.0],[114,19,77,1.0],[114,19,78,1.0],[114,19,79,1.0],[114,20,64,1.0],[114,20,65,1.0],[114,20,66,1.0],[114,20,67,1.0],[114,20,68,1.0],[114,20,69,1.0],[114,20,70,1.0],[114,20,71,1.0],[114,20,72,1.0],[114,20,73,1.0],[114,20,74,1.0],[114,20,75,1.0],[114,20,76,1.0],[114,20,77,1.0],[114,20,78,1.0],[114,20,79,1.0],[114,21,64,1.0],[114,21,65,1.0],[114,21,66,1.0],[114,21,67,1.0],[114,21,68,1.0],[114,21,69,1.0],[114,21,70,1.0],[114,21,71,1.0],[114,21,72,1.0],[114,21,73,1.0],[114,21,74,1.0],[114,21,75,1.0],[114,21,76,1.0],[114,21,77,1.0],[114,21,78,1.0],[114,21,79,1.0],[114,22,64,1.0],[114,22,65,1.0],[114,22,66,1.0],[114,22,67,1.0],[114,22,68,1.0],[114,22,69,1.0],[114,22,70,1.0],[114,22,71,1.0],[114,22,72,1.0],[114,22,73,1.0],[114,22,74,1.0],[114,22,75,1.0],[114,22,76,1.0],[114,22,77,1.0],[114,22,78,1.0],[114,22,79,1.0],[114,23,64,1.0],[114,23,65,1.0],[114,23,66,1.0],[114,23,67,1.0],[114,23,68,1.0],[114,23,69,1.0],[114,23,70,1.0],[114,23,71,1.0],[114,23,72,1.0],[114,23,73,1.0],[114,23,74,1.0],[114,23,75,1.0],[114,23,76,1.0],[114,23,77,1.0],[114,23,78,1.0],[114,23,79,1.0],[114,24,64,1.0],[114,24,65,1.0],[114,24,66,1.0],[114,24,67,1.0],[114,24,68,1.0],[114,24,69,1.0],[114,24,70,1.0],[114,24,71,1.0],[114,24,72,1.0],[114,24,73,1.0],[114,24,74,1.0],[114,24,75,1.0],[114,24,76,1.0],[114,24,77,1.0],[114,24,78,1.0],[114,24,79,1.0],[114,25,64,1.0],[114,25,65,1.0],[114,25,66,1.0],[114,25,67,1.0],[114,25,68,1.0],[114,25,69,1.0],[114,25,70,1.0],[114,25,71,1.0],[114,25,72,1.0],[114,25,73,1.0],[114,25,74,1.0],[114,25,75,1.0],[114,25,76,1.0],[114,25,77,1.0],[114,25,78,1.0],[114,25,79,1.0],[114,26,64,1.0],[114,26,65,1.0],[114,26,66,1.0],[114,26,67,1.0],[114,26,68,1.0],[114,26,69,1.0],[114,26,70,1.0],[114,26,71,1.0],[114,26,72,1.0],[114,26,73,1.0],[114,26,74,1.0],[114,26,75,1.0],[114,26,76,1.0],[114,26,77,1.0],[114,26,78,1.0],[114,26,79,1.0],[114,27,64,1.0],[114,27,65,1.0],[114,27,66,1.0],[114,27,67,1.0],[114,27,68,1.0],[114,27,69,1.0],[114,27,70,1.0],[114,27,71,1.0],[114,27,72,1.0],[114,27,73,1.0],[114,27,74,1.0],[114,27,75,1.0],[114,27,76,1.0],[114,27,77,1.0],[114,27,78,1.0],[114,27,79,1.0],[114,28,64,1.0],[114,28,65,1.0],[114,28,66,1.0],[114,28,67,1.0],[114,28,68,1.0],[114,28,69,1.0],[114,28,70,1.0],[114,28,71,1.0],[114,28,72,1.0],[114,28,73,1.0],[114,28,74,1.0],[114,28,75,1.0],[114,28,76,1.0],[114,28,77,1.0],[114,28,78,1.0],[114,28,79,1.0],[114,29,64,1.0],[114,29,65,1.0],[114,29,66,1.0],[114,29,67,1.0],[114,29,68,1.0],[114,29,69,1.0],[114,29,70,1.0],[114,29,71,1.0],[114,29,72,1.0],[114,29,73,1.0],[114,29,74,1.0],[114,29,75,1.0],[114,29,76,1.0],[114,29,77,1.0],[114,29,78,1.0],[114,29,79,1.0],[114,30,64,1.0],[114,30,65,1.0],[114,30,66,1.0],[114,30,67,1.0],[114,30,68,1.0],[114,30,69,1.0],[114,30,70,1.0],[114,30,71,1.0],[114,30,72,1.0],[114,30,73,1.0],[114,30,74,1.0],[114,30,75,1.0],[114,30,76,1.0],[114,30,77,1.0],[114,30,78,1.0],[114,30,79,1.0],[114,31,64,1.0],[114,31,65,1.0],[114,31,66,1.0],[114,31,67,1.0],[114,31,68,1.0],[114,31,69,1.0],[114,31,70,1.0],[114,31,71,1.0],[114,31,72,1.0],[114,31,73,1.0],[114,31,74,1.0],[114,31,75,1.0],[114,31,76,1.0],[114,31,77,1.0],[114,31,78,1.0],[114,31,79,1.0],[114,32,64,1.0],[114,32,65,1.0],[114,32,66,1.0],[114,32,67,1.0],[114,32,68,1.0],[114,32,69,1.0],[114,32,70,1.0],[114,32,71,1.0],[114,32,72,1.0],[114,32,73,1.0],[114,32,74,1.0],[114,32,75,1.0],[114,32,76,1.0],[114,32,77,1.0],[114,32,78,1.0],[114,32,79,1.0],[114,33,64,1.0],[114,33,65,1.0],[114,33,66,1.0],[114,33,67,1.0],[114,33,68,1.0],[114,33,69,1.0],[114,33,70,1.0],[114,33,71,1.0],[114,33,72,1.0],[114,33,73,1.0],[114,33,74,1.0],[114,33,75,1.0],[114,33,76,1.0],[114,33,77,1.0],[114,33,78,1.0],[114,33,79,1.0],[114,34,64,1.0],[114,34,65,1.0],[114,34,66,1.0],[114,34,67,1.0],[114,34,68,1.0],[114,34,69,1.0],[114,34,70,1.0],[114,34,71,1.0],[114,34,72,1.0],[114,34,73,1.0],[114,34,74,1.0],[114,34,75,1.0],[114,34,76,1.0],[114,34,77,1.0],[114,34,78,1.0],[114,34,79,1.0],[114,35,64,1.0],[114,35,65,1.0],[114,35,66,1.0],[114,35,67,1.0],[114,35,68,1.0],[114,35,69,1.0],[114,35,70,1.0],[114,35,71,1.0],[114,35,72,1.0],[114,35,73,1.0],[114,35,74,1.0],[114,35,75,1.0],[114,35,76,1.0],[114,35,77,1.0],[114,35,78,1.0],[114,35,79,1.0],[114,36,64,1.0],[114,36,65,1.0],[114,36,66,1.0],[114,36,67,1.0],[114,36,68,1.0],[114,36,69,1.0],[114,36,70,1.0],[114,36,71,1.0],[114,36,72,1.0],[114,36,73,1.0],[114,36,74,1.0],[114,36,75,1.0],[114,36,76,1.0],[114,36,77,1.0],[114,36,78,1.0],[114,36,79,1.0],[114,37,64,1.0],[114,37,65,1.0],[114,37,66,1.0],[114,37,67,1.0],[114,37,68,1.0],[114,37,69,1.0],[114,37,70,1.0],[114,37,71,1.0],[114,37,72,1.0],[114,37,73,1.0],[114,37,74,1.0],[114,37,75,1.0],[114,37,76,1.0],[114,37,77,1.0],[114,37,78,1.0],[114,37,79,1.0],[114,38,64,1.0],[114,38,65,1.0],[114,38,66,1.0],[114,38,67,1.0],[114,38,68,1.0],[114,38,69,1.0],[114,38,70,1.0],[114,38,71,1.0],[114,38,72,1.0],[114,38,73,1.0],[114,38,74,1.0],[114,38,75,1.0],[114,38,76,1.0],[114,38,77,1.0],[114,38,78,1.0],[114,38,79,1.0],[114,39,64,1.0],[114,39,65,1.0],[114,39,66,1.0],[114,39,67,1.0],[114,39,68,1.0],[114,39,69,1.0],[114,39,70,1.0],[114,39,71,1.0],[114,39,72,1.0],[114,39,73,1.0],[114,39,74,1.0],[114,39,75,1.0],[114,39,76,1.0],[114,39,77,1.0],[114,39,78,1.0],[114,39,79,1.0],[114,40,64,1.0],[114,40,65,1.0],[114,40,66,1.0],[114,40,67,1.0],[114,40,68,1.0],[114,40,69,1.0],[114,40,70,1.0],[114,40,71,1.0],[114,40,72,1.0],[114,40,73,1.0],[114,40,74,1.0],[114,40,75,1.0],[114,40,76,1.0],[114,40,77,1.0],[114,40,78,1.0],[114,40,79,1.0],[114,41,64,1.0],[114,41,65,1.0],[114,41,66,1.0],[114,41,67,1.0],[114,41,68,1.0],[114,41,69,1.0],[114,41,70,1.0],[114,41,71,1.0],[114,41,72,1.0],[114,41,73,1.0],[114,41,74,1.0],[114,41,75,1.0],[114,41,76,1.0],[114,41,77,1.0],[114,41,78,1.0],[114,41,79,1.0],[114,42,64,1.0],[114,42,65,1.0],[114,42,66,1.0],[114,42,67,1.0],[114,42,68,1.0],[114,42,69,1.0],[114,42,70,1.0],[114,42,71,1.0],[114,42,72,1.0],[114,42,73,1.0],[114,42,74,1.0],[114,42,75,1.0],[114,42,76,1.0],[114,42,77,1.0],[114,42,78,1.0],[114,42,79,1.0],[114,43,64,1.0],[114,43,65,1.0],[114,43,66,1.0],[114,43,67,1.0],[114,43,68,1.0],[114,43,69,1.0],[114,43,70,1.0],[114,43,71,1.0],[114,43,72,1.0],[114,43,73,1.0],[114,43,74,1.0],[114,43,75,1.0],[114,43,76,1.0],[114,43,77,1.0],[114,43,78,1.0],[114,43,79,1.0],[114,44,64,1.0],[114,44,65,1.0],[114,44,66,1.0],[114,44,67,1.0],[114,44,68,1.0],[114,44,69,1.0],[114,44,70,1.0],[114,44,71,1.0],[114,44,72,1.0],[114,44,73,1.0],[114,44,74,1.0],[114,44,75,1.0],[114,44,76,1.0],[114,44,77,1.0],[114,44,78,1.0],[114,44,79,1.0],[114,45,64,1.0],[114,45,65,1.0],[114,45,66,1.0],[114,45,67,1.0],[114,45,68,1.0],[114,45,69,1.0],[114,45,70,1.0],[114,45,71,1.0],[114,45,72,1.0],[114,45,73,1.0],[114,45,74,1.0],[114,45,75,1.0],[114,45,76,1.0],[114,45,77,1.0],[114,45,78,1.0],[114,45,79,1.0],[114,46,64,1.0],[114,46,65,1.0],[114,46,66,1.0],[114,46,67,1.0],[114,46,68,1.0],[114,46,69,1.0],[114,46,70,1.0],[114,46,71,1.0],[114,46,72,1.0],[114,46,73,1.0],[114,46,74,1.0],[114,46,75,1.0],[114,46,76,1.0],[114,46,77,1.0],[114,46,78,1.0],[114,46,79,1.0],[114,47,64,1.0],[114,47,65,1.0],[114,47,66,1.0],[114,47,67,1.0],[114,47,68,1.0],[114,47,69,1.0],[114,47,70,1.0],[114,47,71,1.0],[114,47,72,1.0],[114,47,73,1.0],[114,47,74,1.0],[114,47,75,1.0],[114,47,76,1.0],[114,47,77,1.0],[114,47,78,1.0],[114,47,79,1.0],[114,48,64,1.0],[114,48,65,1.0],[114,48,66,1.0],[114,48,67,1.0],[114,48,68,1.0],[114,48,69,1.0],[114,48,70,1.0],[114,48,71,1.0],[114,48,72,1.0],[114,48,73,1.0],[114,48,74,1.0],[114,48,75,1.0],[114,48,76,1.0],[114,48,77,1.0],[114,48,78,1.0],[114,48,79,1.0],[114,49,64,1.0],[114,49,65,1.0],[114,49,66,1.0],[114,49,67,1.0],[114,49,68,1.0],[114,49,69,1.0],[114,49,70,1.0],[114,49,71,1.0],[114,49,72,1.0],[114,49,73,1.0],[114,49,74,1.0],[114,49,75,1.0],[114,49,76,1.0],[114,49,77,1.0],[114,49,78,1.0],[114,49,79,1.0],[114,50,64,1.0],[114,50,65,1.0],[114,50,66,1.0],[114,50,67,1.0],[114,50,68,1.0],[114,50,69,1.0],[114,50,70,1.0],[114,50,71,1.0],[114,50,72,1.0],[114,50,73,1.0],[114,50,74,1.0],[114,50,75,1.0],[114,50,76,1.0],[114,50,77,1.0],[114,50,78,1.0],[114,50,79,1.0],[114,51,64,1.0],[114,51,65,1.0],[114,51,66,1.0],[114,51,67,1.0],[114,51,68,1.0],[114,51,69,1.0],[114,51,70,1.0],[114,51,71,1.0],[114,51,72,1.0],[114,51,73,1.0],[114,51,74,1.0],[114,51,75,1.0],[114,51,76,1.0],[114,51,77,1.0],[114,51,78,1.0],[114,51,79,1.0],[114,52,64,1.0],[114,52,65,1.0],[114,52,66,1.0],[114,52,67,1.0],[114,52,68,1.0],[114,52,69,1.0],[114,52,70,1.0],[114,52,71,1.0],[114,52,72,1.0],[114,52,73,1.0],[114,52,74,1.0],[114,52,75,1.0],[114,52,76,1.0],[114,52,77,1.0],[114,52,78,1.0],[114,52,79,1.0],[114,53,64,1.0],[114,53,65,1.0],[114,53,66,1.0],[114,53,67,1.0],[114,53,68,1.0],[114,53,69,1.0],[114,53,70,1.0],[114,53,71,1.0],[114,53,72,1.0],[114,53,73,1.0],[114,53,74,1.0],[114,53,75,1.0],[114,53,76,1.0],[114,53,77,1.0],[114,53,78,1.0],[114,53,79,1.0],[114,54,64,1.0],[114,54,65,1.0],[114,54,66,1.0],[114,54,67,1.0],[114,54,68,1.0],[114,54,69,1.0],[114,54,70,1.0],[114,54,71,1.0],[114,54,72,1.0],[114,54,73,1.0],[114,54,74,1.0],[114,54,75,1.0],[114,54,76,1.0],[114,54,77,1.0],[114,54,78,1.0],[114,54,79,1.0],[114,55,64,1.0],[114,55,65,1.0],[114,55,66,1.0],[114,55,67,1.0],[114,55,68,1.0],[114,55,69,1.0],[114,55,70,1.0],[114,55,71,1.0],[114,55,72,1.0],[114,55,73,1.0],[114,55,74,1.0],[114,55,75,1.0],[114,55,76,1.0],[114,55,77,1.0],[114,55,78,1.0],[114,55,79,1.0],[114,56,64,1.0],[114,56,65,1.0],[114,56,66,1.0],[114,56,67,1.0],[114,56,68,1.0],[114,56,69,1.0],[114,56,70,1.0],[114,56,71,1.0],[114,56,72,1.0],[114,56,73,1.0],[114,56,74,1.0],[114,56,75,1.0],[114,56,76,1.0],[114,56,77,1.0],[114,56,78,1.0],[114,56,79,1.0],[114,57,64,1.0],[114,57,65,1.0],[114,57,66,1.0],[114,57,67,1.0],[114,57,68,1.0],[114,57,69,1.0],[114,57,70,1.0],[114,57,71,1.0],[114,57,72,1.0],[114,57,73,1.0],[114,57,74,1.0],[114,57,75,1.0],[114,57,76,1.0],[114,57,77,1.0],[114,57,78,1.0],[114,57,79,1.0],[114,58,64,1.0],[114,58,65,1.0],[114,58,66,1.0],[114,58,67,1.0],[114,58,68,1.0],[114,58,69,1.0],[114,58,70,1.0],[114,58,71,1.0],[114,58,72,1.0],[114,58,73,1.0],[114,58,74,1.0],[114,58,75,1.0],[114,58,76,1.0],[114,58,77,1.0],[114,58,78,1.0],[114,58,79,1.0],[114,59,64,1.0],[114,59,65,1.0],[114,59,66,1.0],[114,59,67,1.0],[114,59,68,1.0],[114,59,69,1.0],[114,59,70,1.0],[114,59,71,1.0],[114,59,72,1.0],[114,59,73,1.0],[114,59,74,1.0],[114,59,75,1.0],[114,59,76,1.0],[114,59,77,1.0],[114,59,78,1.0],[114,59,79,1.0],[114,60,64,1.0],[114,60,65,1.0],[114,60,66,1.0],[114,60,67,1.0],[114,60,68,1.0],[114,60,69,1.0],[114,60,70,1.0],[114,60,71,1.0],[114,60,72,1.0],[114,60,73,1.0],[114,60,74,1.0],[114,60,75,1.0],[114,60,76,1.0],[114,60,77,1.0],[114,60,78,1.0],[114,60,79,1.0],[114,61,64,1.0],[114,61,65,1.0],[114,61,66,1.0],[114,61,67,1.0],[114,61,68,1.0],[114,61,69,1.0],[114,61,70,1.0],[114,61,71,1.0],[114,61,72,1.0],[114,61,73,1.0],[114,61,74,1.0],[114,61,75,1.0],[114,61,76,1.0],[114,61,77,1.0],[114,61,78,1.0],[114,61,79,1.0],[114,62,64,1.0],[114,62,65,1.0],[114,62,66,1.0],[114,62,67,1.0],[114,62,68,1.0],[114,62,69,1.0],[114,62,70,1.0],[114,62,71,1.0],[114,62,72,1.0],[114,62,73,1.0],[114,62,74,1.0],[114,62,75,1.0],[114,62,76,1.0],[114,62,77,1.0],[114,62,78,1.0],[114,62,79,1.0],[114,63,64,1.0],[114,63,65,1.0],[114,63,66,1.0],[114,63,67,1.0],[114,63,68,1.0],[114,63,69,1.0],[114,63,70,1.0],[114,63,71,1.0],[114,63,72,1.0],[114,63,73,1.0],[114,63,74,1.0],[114,63,75,1.0],[114,63,76,1.0],[114,63,77,1.0],[114,63,78,1.0],[114,63,79,1.0],[114,64,64,1.0],[114,64,65,1.0],[114,64,66,1.0],[114,64,67,1.0],[114,64,68,1.0],[114,64,69,1.0],[114,64,70,1.0],[114,64,71,1.0],[114,64,72,1.0],[114,64,73,1.0],[114,64,74,1.0],[114,64,75,1.0],[114,64,76,1.0],[114,64,77,1.0],[114,64,78,1.0],[114,64,79,1.0],[114,65,64,1.0],[114,65,65,1.0],[114,65,66,1.0],[114,65,67,1.0],[114,65,68,1.0],[114,65,69,1.0],[114,65,70,1.0],[114,65,71,1.0],[114,65,72,1.0],[114,65,73,1.0],[114,65,74,1.0],[114,65,75,1.0],[114,65,76,1.0],[114,65,77,1.0],[114,65,78,1.0],[114,65,79,1.0],[114,66,64,1.0],[114,66,65,1.0],[114,66,66,1.0],[114,66,67,1.0],[114,66,68,1.0],[114,66,69,1.0],[114,66,70,1.0],[114,66,71,1.0],[114,66,72,1.0],[114,66,73,1.0],[114,66,74,1.0],[114,66,75,1.0],[114,66,76,1.0],[114,66,77,1.0],[114,66,78,1.0],[114,66,79,1.0],[114,67,64,1.0],[114,67,65,1.0],[114,67,66,1.0],[114,67,67,1.0],[114,67,68,1.0],[114,67,69,1.0],[114,67,70,1.0],[114,67,71,1.0],[114,67,72,1.0],[114,67,73,1.0],[114,67,74,1.0],[114,67,75,1.0],[114,67,76,1.0],[114,67,77,1.0],[114,67,78,1.0],[114,67,79,1.0],[114,68,64,1.0],[114,68,65,1.0],[114,68,66,1.0],[114,68,67,1.0],[114,68,68,1.0],[114,68,69,1.0],[114,68,70,1.0],[114,68,71,1.0],[114,68,72,1.0],[114,68,73,1.0],[114,68,74,1.0],[114,68,75,1.0],[114,68,76,1.0],[114,68,77,1.0],[114,68,78,1.0],[114,68,79,1.0],[114,69,64,1.0],[114,69,65,1.0],[114,69,66,1.0],[114,69,67,1.0],[114,69,68,1.0],[114,69,69,1.0],[114,69,70,1.0],[114,69,71,1.0],[114,69,72,1.0],[114,69,73,1.0],[114,69,74,1.0],[114,69,75,1.0],[114,69,76,1.0],[114,69,77,1.0],[114,69,78,1.0],[114,69,79,1.0],[114,70,64,1.0],[114,70,65,1.0],[114,70,66,1.0],[114,70,67,1.0],[114,70,68,1.0],[114,70,69,1.0],[114,70,70,1.0],[114,70,71,1.0],[114,70,72,1.0],[114,70,73,1.0],[114,70,74,1.0],[114,70,75,1.0],[114,70,76,1.0],[114,70,77,1.0],[114,70,78,1.0],[114,70,79,1.0],[114,71,64,1.0],[114,71,65,1.0],[114,71,66,1.0],[114,71,67,1.0],[114,71,68,1.0],[114,71,69,1.0],[114,71,70,1.0],[114,71,71,1.0],[114,71,72,1.0],[114,71,73,1.0],[114,71,74,1.0],[114,71,75,1.0],[114,71,76,1.0],[114,71,77,1.0],[114,71,78,1.0],[114,71,79,1.0],[114,72,64,1.0],[114,72,65,1.0],[114,72,66,1.0],[114,72,67,1.0],[114,72,68,1.0],[114,72,69,1.0],[114,72,70,1.0],[114,72,71,1.0],[114,72,72,1.0],[114,72,73,1.0],[114,72,74,1.0],[114,72,75,1.0],[114,72,76,1.0],[114,72,77,1.0],[114,72,78,1.0],[114,72,79,1.0],[114,73,64,1.0],[114,73,65,1.0],[114,73,66,1.0],[114,73,67,1.0],[114,73,68,1.0],[114,73,69,1.0],[114,73,70,1.0],[114,73,71,1.0],[114,73,72,1.0],[114,73,73,1.0],[114,73,74,1.0],[114,73,75,1.0],[114,73,76,1.0],[114,73,77,1.0],[114,73,78,1.0],[114,73,79,1.0],[114,74,64,1.0],[114,74,65,1.0],[114,74,66,1.0],[114,74,67,1.0],[114,74,68,1.0],[114,74,69,1.0],[114,74,70,1.0],[114,74,71,1.0],[114,74,72,1.0],[114,74,73,1.0],[114,74,74,1.0],[114,74,75,1.0],[114,74,76,1.0],[114,74,77,1.0],[114,74,78,1.0],[114,74,79,1.0],[114,75,64,1.0],[114,75,65,1.0],[114,75,66,1.0],[114,75,67,1.0],[114,75,68,1.0],[114,75,69,1.0],[114,75,70,1.0],[114,75,71,1.0],[114,75,72,1.0],[114,75,73,1.0],[114,75,74,1.0],[114,75,75,1.0],[114,75,76,1.0],[114,75,77,1.0],[114,75,78,1.0],[114,75,79,1.0],[114,76,64,1.0],[114,76,65,1.0],[114,76,66,1.0],[114,76,67,1.0],[114,76,68,1.0],[114,76,69,1.0],[114,76,70,1.0],[114,76,71,1.0],[114,76,72,1.0],[114,76,73,1.0],[114,76,74,1.0],[114,76,75,1.0],[114,76,76,1.0],[114,76,77,1.0],[114,76,78,1.0],[114,76,79,1.0],[114,77,64,1.0],[114,77,65,1.0],[114,77,66,1.0],[114,77,67,1.0],[114,77,68,1.0],[114,77,69,1.0],[114,77,70,1.0],[114,77,71,1.0],[114,77,72,1.0],[114,77,73,1.0],[114,77,74,1.0],[114,77,75,1.0],[114,77,76,1.0],[114,77,77,1.0],[114,77,78,1.0],[114,77,79,1.0],[114,78,64,1.0],[114,78,65,1.0],[114,78,66,1.0],[114,78,67,1.0],[114,78,68,1.0],[114,78,69,1.0],[114,78,70,1.0],[114,78,71,1.0],[114,78,72,1.0],[114,78,73,1.0],[114,78,74,1.0],[114,78,75,1.0],[114,78,76,1.0],[114,78,77,1.0],[114,78,78,1.0],[114,78,79,1.0],[114,79,64,1.0],[114,79,65,1.0],[114,79,66,1.0],[114,79,67,1.0],[114,79,68,1.0],[114,79,69,1.0],[114,79,70,1.0],[114,79,71,1.0],[114,79,72,1.0],[114,79,73,1.0],[114,79,74,1.0],[114,79,75,1.0],[114,79,76,1.0],[114,79,77,1.0],[114,79,78,1.0],[114,79,79,1.0],[114,80,64,1.0],[114,80,65,1.0],[114,80,66,1.0],[114,80,67,1.0],[114,80,68,1.0],[114,80,69,1.0],[114,80,70,1.0],[114,80,71,1.0],[114,80,72,1.0],[114,80,73,1.0],[114,80,74,1.0],[114,80,75,1.0],[114,80,76,1.0],[114,80,77,1.0],[114,80,78,1.0],[114,80,79,1.0],[114,81,64,1.0],[114,81,65,1.0],[114,81,66,1.0],[114,81,67,1.0],[114,81,68,1.0],[114,81,69,1.0],[114,81,70,1.0],[114,81,71,1.0],[114,81,72,1.0],[114,81,73,1.0],[114,81,74,1.0],[114,81,75,1.0],[114,81,76,1.0],[114,81,77,1.0],[114,81,78,1.0],[114,81,79,1.0],[114,82,64,1.0],[114,82,65,1.0],[114,82,66,1.0],[114,82,67,1.0],[114,82,68,1.0],[114,82,69,1.0],[114,82,70,1.0],[114,82,71,1.0],[114,82,72,1.0],[114,82,73,1.0],[114,82,74,1.0],[114,82,75,1.0],[114,82,76,1.0],[114,82,77,1.0],[114,82,78,1.0],[114,82,79,1.0],[114,83,64,1.0],[114,83,65,1.0],[114,83,66,1.0],[114,83,67,1.0],[114,83,68,1.0],[114,83,69,1.0],[114,83,70,1.0],[114,83,71,1.0],[114,83,72,1.0],[114,83,73,1.0],[114,83,74,1.0],[114,83,75,1.0],[114,83,76,1.0],[114,83,77,1.0],[114,83,78,1.0],[114,83,79,1.0],[114,84,64,1.0],[114,84,65,1.0],[114,84,66,1.0],[114,84,67,1.0],[114,84,68,1.0],[114,84,69,1.0],[114,84,70,1.0],[114,84,71,1.0],[114,84,72,1.0],[114,84,73,1.0],[114,84,74,1.0],[114,84,75,1.0],[114,84,76,1.0],[114,84,77,1.0],[114,84,78,1.0],[114,84,79,1.0],[114,85,64,1.0],[114,85,65,1.0],[114,85,66,1.0],[114,85,67,1.0],[114,85,68,1.0],[114,85,69,1.0],[114,85,70,1.0],[114,85,71,1.0],[114,85,72,1.0],[114,85,73,1.0],[114,85,74,1.0],[114,85,75,1.0],[114,85,76,1.0],[114,85,77,1.0],[114,85,78,1.0],[114,85,79,1.0],[114,86,64,1.0],[114,86,65,1.0],[114,86,66,1.0],[114,86,67,1.0],[114,86,68,1.0],[114,86,69,1.0],[114,86,70,1.0],[114,86,71,1.0],[114,86,72,1.0],[114,86,73,1.0],[114,86,74,1.0],[114,86,75,1.0],[114,86,76,1.0],[114,86,77,1.0],[114,86,78,1.0],[114,86,79,1.0],[114,87,64,1.0],[114,87,65,1.0],[114,87,66,1.0],[114,87,67,1.0],[114,87,68,1.0],[114,87,69,1.0],[114,87,70,1.0],[114,87,71,1.0],[114,87,72,1.0],[114,87,73,1.0],[114,87,74,1.0],[114,87,75,1.0],[114,87,76,1.0],[114,87,77,1.0],[114,87,78,1.0],[114,87,79,1.0],[114,88,64,1.0],[114,88,65,1.0],[114,88,66,1.0],[114,88,67,1.0],[114,88,68,1.0],[114,88,69,1.0],[114,88,70,1.0],[114,88,71,1.0],[114,88,72,1.0],[114,88,73,1.0],[114,88,74,1.0],[114,88,75,1.0],[114,88,76,1.0],[114,88,77,1.0],[114,88,78,1.0],[114,88,79,1.0],[114,89,64,1.0],[114,89,65,1.0],[114,89,66,1.0],[114,89,67,1.0],[114,89,68,1.0],[114,89,69,1.0],[114,89,70,1.0],[114,89,71,1.0],[114,89,72,1.0],[114,89,73,1.0],[114,89,74,1.0],[114,89,75,1.0],[114,89,76,1.0],[114,89,77,1.0],[114,89,78,1.0],[114,89,79,1.0],[114,90,64,1.0],[114,90,65,1.0],[114,90,66,1.0],[114,90,67,1.0],[114,90,68,1.0],[114,90,69,1.0],[114,90,70,1.0],[114,90,71,1.0],[114,90,72,1.0],[114,90,73,1.0],[114,90,74,1.0],[114,90,75,1.0],[114,90,76,1.0],[114,90,77,1.0],[114,90,78,1.0],[114,90,79,1.0],[114,91,64,1.0],[114,91,65,1.0],[114,91,66,1.0],[114,91,67,1.0],[114,91,68,1.0],[114,91,69,1.0],[114,91,70,1.0],[114,91,71,1.0],[114,91,72,1.0],[114,91,73,1.0],[114,91,74,1.0],[114,91,75,1.0],[114,91,76,1.0],[114,91,77,1.0],[114,91,78,1.0],[114,91,79,1.0],[114,92,64,1.0],[114,92,65,1.0],[114,92,66,1.0],[114,92,67,1.0],[114,92,68,1.0],[114,92,69,1.0],[114,92,70,1.0],[114,92,71,1.0],[114,92,72,1.0],[114,92,73,1.0],[114,92,74,1.0],[114,92,75,1.0],[114,92,76,1.0],[114,92,77,1.0],[114,92,78,1.0],[114,92,79,1.0],[114,93,64,1.0],[114,93,65,1.0],[114,93,66,1.0],[114,93,67,1.0],[114,93,68,1.0],[114,93,69,1.0],[114,93,70,1.0],[114,93,71,1.0],[114,93,72,1.0],[114,93,73,1.0],[114,93,74,1.0],[114,93,75,1.0],[114,93,76,1.0],[114,93,77,1.0],[114,93,78,1.0],[114,93,79,1.0],[114,94,64,1.0],[114,94,65,1.0],[114,94,66,1.0],[114,94,67,1.0],[114,94,68,1.0],[114,94,69,1.0],[114,94,70,1.0],[114,94,71,1.0],[114,94,72,1.0],[114,94,73,1.0],[114,94,74,1.0],[114,94,75,1.0],[114,94,76,1.0],[114,94,77,1.0],[114,94,78,1.0],[114,94,79,1.0],[114,95,64,1.0],[114,95,65,1.0],[114,95,66,1.0],[114,95,67,1.0],[114,95,68,1.0],[114,95,69,1.0],[114,95,70,1.0],[114,95,71,1.0],[114,95,72,1.0],[114,95,73,1.0],[114,95,74,1.0],[114,95,75,1.0],[114,95,76,1.0],[114,95,77,1.0],[114,95,78,1.0],[114,95,79,1.0],[114,96,64,1.0],[114,96,65,1.0],[114,96,66,1.0],[114,96,67,1.0],[114,96,68,1.0],[114,96,69,1.0],[114,96,70,1.0],[114,96,71,1.0],[114,96,72,1.0],[114,96,73,1.0],[114,96,74,1.0],[114,96,75,1.0],[114,96,76,1.0],[114,96,77,1.0],[114,96,78,1.0],[114,96,79,1.0],[114,97,64,1.0],[114,97,65,1.0],[114,97,66,1.0],[114,97,67,1.0],[114,97,68,1.0],[114,97,69,1.0],[114,97,70,1.0],[114,97,71,1.0],[114,97,72,1.0],[114,97,73,1.0],[114,97,74,1.0],[114,97,75,1.0],[114,97,76,1.0],[114,97,77,1.0],[114,97,78,1.0],[114,97,79,1.0],[114,98,64,1.0],[114,98,65,1.0],[114,98,66,1.0],[114,98,67,1.0],[114,98,68,1.0],[114,98,69,1.0],[114,98,70,1.0],[114,98,71,1.0],[114,98,72,1.0],[114,98,73,1.0],[114,98,74,1.0],[114,98,75,1.0],[114,98,76,1.0],[114,98,77,1.0],[114,98,78,1.0],[114,98,79,1.0],[114,99,64,1.0],[114,99,65,1.0],[114,99,66,1.0],[114,99,67,1.0],[114,99,68,1.0],[114,99,69,1.0],[114,99,70,1.0],[114,99,71,1.0],[114,99,72,1.0],[114,99,73,1.0],[114,99,74,1.0],[114,99,75,1.0],[114,99,76,1.0],[114,99,77,1.0],[114,99,78,1.0],[114,99,79,1.0],[114,100,64,1.0],[114,100,65,1.0],[114,100,66,1.0],[114,100,67,1.0],[114,100,68,1.0],[114,100,69,1.0],[114,100,70,1.0],[114,100,71,1.0],[114,100,72,1.0],[114,100,73,1.0],[114,100,74,1.0],[114,100,75,1.0],[114,100,76,1.0],[114,100,77,1.0],[114,100,78,1.0],[114,100,79,1.0],[114,101,64,1.0],[114,101,65,1.0],[114,101,66,1.0],[114,101,67,1.0],[114,101,68,1.0],[114,101,69,1.0],[114,101,70,1.0],[114,101,71,1.0],[114,101,72,1.0],[114,101,73,1.0],[114,101,74,1.0],[114,101,75,1.0],[114,101,76,1.0],[114,101,77,1.0],[114,101,78,1.0],[114,101,79,1.0],[114,102,64,1.0],[114,102,65,1.0],[114,102,66,1.0],[114,102,67,1.0],[114,102,68,1.0],[114,102,69,1.0],[114,102,70,1.0],[114,102,71,1.0],[114,102,72,1.0],[114,102,73,1.0],[114,102,74,1.0],[114,102,75,1.0],[114,102,76,1.0],[114,102,77,1.0],[114,102,78,1.0],[114,102,79,1.0],[114,103,64,1.0],[114,103,65,1.0],[114,103,66,1.0],[114,103,67,1.0],[114,103,68,1.0],[114,103,69,1.0],[114,103,70,1.0],[114,103,71,1.0],[114,103,72,1.0],[114,103,73,1.0],[114,103,74,1.0],[114,103,75,1.0],[114,103,76,1.0],[114,103,77,1.0],[114,103,78,1.0],[114,103,79,1.0],[114,104,64,1.0],[114,104,65,1.0],[114,104,66,1.0],[114,104,67,1.0],[114,104,68,1.0],[114,104,69,1.0],[114,104,70,1.0],[114,104,71,1.0],[114,104,72,1.0],[114,104,73,1.0],[114,104,74,1.0],[114,104,75,1.0],[114,104,76,1.0],[114,104,77,1.0],[114,104,78,1.0],[114,104,79,1.0],[114,105,64,1.0],[114,105,65,1.0],[114,105,66,1.0],[114,105,67,1.0],[114,105,68,1.0],[114,105,69,1.0],[114,105,70,1.0],[114,105,71,1.0],[114,105,72,1.0],[114,105,73,1.0],[114,105,74,1.0],[114,105,75,1.0],[114,105,76,1.0],[114,105,77,1.0],[114,105,78,1.0],[114,105,79,1.0],[114,106,64,1.0],[114,106,65,1.0],[114,106,66,1.0],[114,106,67,1.0],[114,106,68,1.0],[114,106,69,1.0],[114,106,70,1.0],[114,106,71,1.0],[114,106,72,1.0],[114,106,73,1.0],[114,106,74,1.0],[114,106,75,1.0],[114,106,76,1.0],[114,106,77,1.0],[114,106,78,1.0],[114,106,79,1.0],[114,107,64,1.0],[114,107,65,1.0],[114,107,66,1.0],[114,107,67,1.0],[114,107,68,1.0],[114,107,69,1.0],[114,107,70,1.0],[114,107,71,1.0],[114,107,72,1.0],[114,107,73,1.0],[114,107,74,1.0],[114,107,75,1.0],[114,107,76,1.0],[114,107,77,1.0],[114,107,78,1.0],[114,107,79,1.0],[114,108,64,1.0],[114,108,65,1.0],[114,108,66,1.0],[114,108,67,1.0],[114,108,68,1.0],[114,108,69,1.0],[114,108,70,1.0],[114,108,71,1.0],[114,108,72,1.0],[114,108,73,1.0],[114,108,74,1.0],[114,108,75,1.0],[114,108,76,1.0],[114,108,77,1.0],[114,108,78,1.0],[114,108,79,1.0],[114,109,64,1.0],[114,109,65,1.0],[114,109,66,1.0],[114,109,67,1.0],[114,109,68,1.0],[114,109,69,1.0],[114,109,70,1.0],[114,109,71,1.0],[114,109,72,1.0],[114,109,73,1.0],[114,109,74,1.0],[114,109,75,1.0],[114,109,76,1.0],[114,109,77,1.0],[114,109,78,1.0],[114,109,79,1.0],[114,110,64,1.0],[114,110,65,1.0],[114,110,66,1.0],[114,110,67,1.0],[114,110,68,1.0],[114,110,69,1.0],[114,110,70,1.0],[114,110,71,1.0],[114,110,72,1.0],[114,110,73,1.0],[114,110,74,1.0],[114,110,75,1.0],[114,110,76,1.0],[114,110,77,1.0],[114,110,78,1.0],[114,110,79,1.0],[114,111,64,1.0],[114,111,65,1.0],[114,111,66,1.0],[114,111,67,1.0],[114,111,68,1.0],[114,111,69,1.0],[114,111,70,1.0],[114,111,71,1.0],[114,111,72,1.0],[114,111,73,1.0],[114,111,74,1.0],[114,111,75,1.0],[114,111,76,1.0],[114,111,77,1.0],[114,111,78,1.0],[114,111,79,1.0],[114,112,64,1.0],[114,112,65,1.0],[114,112,66,1.0],[114,112,67,1.0],[114,112,68,1.0],[114,112,69,1.0],[114,112,70,1.0],[114,112,71,1.0],[114,112,72,1.0],[114,112,73,1.0],[114,112,74,1.0],[114,112,75,1.0],[114,112,76,1.0],[114,112,77,1.0],[114,112,78,1.0],[114,112,79,1.0],[114,113,64,1.0],[114,113,65,1.0],[114,113,66,1.0],[114,113,67,1.0],[114,113,68,1.0],[114,113,69,1.0],[114,113,70,1.0],[114,113,71,1.0],[114,113,72,1.0],[114,113,73,1.0],[114,113,74,1.0],[114,113,75,1.0],[114,113,76,1.0],[114,113,77,1.0],[114,113,78,1.0],[114,113,79,1.0],[114,114,64,1.0],[114,114,65,1.0],[114,114,66,1.0],[114,114,67,1.0],[114,114,68,1.0],[114,114,69,1.0],[114,114,70,1.0],[114,114,71,1.0],[114,114,72,1.0],[114,114,73,1.0],[114,114,74,1.0],[114,114,75,1.0],[114,114,76,1.0],[114,114,77,1.0],[114,114,78,1.0],[114,114,79,1.0],[114,115,64,1.0],[114,115,65,1.0],[114,115,66,1.0],[114,115,67,1.0],[114,115,68,1.0],[114,115,69,1.0],[114,115,70,1.0],[114,115,71,1.0],[114,115,72,1.0],[114,115,73,1.0],[114,115,74,1.0],[114,115,75,1.0],[114,115,76,1.0],[114,115,77,1.0],[114,115,78,1.0],[114,115,79,1.0],[114,116,64,1.0],[114,116,65,1.0],[114,116,66,1.0],[114,116,67,1.0],[114,116,68,1.0],[114,116,69,1.0],[114,116,70,1.0],[114,116,71,1.0],[114,116,72,1.0],[114,116,73,1.0],[114,116,74,1.0],[114,116,75,1.0],[114,116,76,1.0],[114,116,77,1.0],[114,116,78,1.0],[114,116,79,1.0],[114,117,64,1.0],[114,117,65,1.0],[114,117,66,1.0],[114,117,67,1.0],[114,117,68,1.0],[114,117,69,1.0],[114,117,70,1.0],[114,117,71,1.0],[114,117,72,1.0],[114,117,73,1.0],[114,117,74,1.0],[114,117,75,1.0],[114,117,76,1.0],[114,117,77,1.0],[114,117,78,1.0],[114,117,79,1.0],[114,118,64,1.0],[114,118,65,1.0],[114,118,66,1.0],[114,118,67,1.0],[114,118,68,1.0],[114,118,69,1.0],[114,118,70,1.0],[114,118,71,1.0],[114,118,72,1.0],[114,118,73,1.0],[114,118,74,1.0],[114,118,75,1.0],[114,118,76,1.0],[114,118,77,1.0],[114,118,78,1.0],[114,118,79,1.0],[114,119,64,1.0],[114,119,65,1.0],[114,119,66,1.0],[114,119,67,1.0],[114,119,68,1.0],[114,119,69,1.0],[114,119,70,1.0],[114,119,71,1.0],[114,119,72,1.0],[114,119,73,1.0],[114,119,74,1.0],[114,119,75,1.0],[114,119,76,1.0],[114,119,77,1.0],[114,119,78,1.0],[114,119,79,1.0],[114,120,64,1.0],[114,120,65,1.0],[114,120,66,1.0],[114,120,67,1.0],[114,120,68,1.0],[114,120,69,1.0],[114,120,70,1.0],[114,120,71,1.0],[114,120,72,1.0],[114,120,73,1.0],[114,120,74,1.0],[114,120,75,1.0],[114,120,76,1.0],[114,120,77,1.0],[114,120,78,1.0],[114,120,79,1.0],[114,121,64,1.0],[114,121,65,1.0],[114,121,66,1.0],[114,121,67,1.0],[114,121,68,1.0],[114,121,69,1.0],[114,121,70,1.0],[114,121,71,1.0],[114,121,72,1.0],[114,121,73,1.0],[114,121,74,1.0],[114,121,75,1.0],[114,121,76,1.0],[114,121,77,1.0],[114,121,78,1.0],[114,121,79,1.0],[114,122,64,1.0],[114,122,65,1.0],[114,122,66,1.0],[114,122,67,1.0],[114,122,68,1.0],[114,122,69,1.0],[114,122,70,1.0],[114,122,71,1.0],[114,122,72,1.0],[114,122,73,1.0],[114,122,74,1.0],[114,122,75,1.0],[114,122,76,1.0],[114,122,77,1.0],[114,122,78,1.0],[114,122,79,1.0],[114,123,64,1.0],[114,123,65,1.0],[114,123,66,1.0],[114,123,67,1.0],[114,123,68,1.0],[114,123,69,1.0],[114,123,70,1.0],[114,123,71,1.0],[114,123,72,1.0],[114,123,73,1.0],[114,123,74,1.0],[114,123,75,1.0],[114,123,76,1.0],[114,123,77,1.0],[114,123,78,1.0],[114,123,79,1.0],[114,124,64,1.0],[114,124,65,1.0],[114,124,66,1.0],[114,124,67,1.0],[114,124,68,1.0],[114,124,69,1.0],[114,124,70,1.0],[114,124,71,1.0],[114,124,72,1.0],[114,124,73,1.0],[114,124,74,1.0],[114,124,75,1.0],[114,124,76,1.0],[114,124,77,1.0],[114,124,78,1.0],[114,124,79,1.0],[114,125,64,1.0],[114,125,65,1.0],[114,125,66,1.0],[114,125,67,1.0],[114,125,68,1.0],[114,125,69,1.0],[114,125,70,1.0],[114,125,71,1.0],[114,125,72,1.0],[114,125,73,1.0],[114,125,74,1.0],[114,125,75,1.0],[114,125,76,1.0],[114,125,77,1.0],[114,125,78,1.0],[114,125,79,1.0],[114,126,64,1.0],[114,126,65,1.0],[114,126,66,1.0],[114,126,67,1.0],[114,126,68,1.0],[114,126,69,1.0],[114,126,70,1.0],[114,126,71,1.0],[114,126,72,1.0],[114,126,73,1.0],[114,126,74,1.0],[114,126,75,1.0],[114,126,76,1.0],[114,126,77,1.0],[114,126,78,1.0],[114,126,79,1.0],[114,127,64,1.0],[114,127,65,1.0],[114,127,66,1.0],[114,127,67,1.0],[114,127,68,1.0],[114,127,69,1.0],[114,127,70,1.0],[114,127,71,1.0],[114,127,72,1.0],[114,127,73,1.0],[114,127,74,1.0],[114,127,75,1.0],[114,127,76,1.0],[114,127,77,1.0],[114,127,78,1.0],[114,127,79,1.0],[114,128,64,1.0],[114,128,65,1.0],[114,128,66,1.0],[114,128,67,1.0],[114,128,68,1.0],[114,128,69,1.0],[114,128,70,1.0],[114,128,71,1.0],[114,128,72,1.0],[114,128,73,1.0],[114,128,74,1.0],[114,128,75,1.0],[114,128,76,1.0],[114,128,77,1.0],[114,128,78,1.0],[114,128,79,1.0],[114,129,64,1.0],[114,129,65,1.0],[114,129,66,1.0],[114,129,67,1.0],[114,129,68,1.0],[114,129,69,1.0],[114,129,70,1.0],[114,129,71,1.0],[114,129,72,1.0],[114,129,73,1.0],[114,129,74,1.0],[114,129,75,1.0],[114,129,76,1.0],[114,129,77,1.0],[114,129,78,1.0],[114,129,79,1.0],[114,130,64,1.0],[114,130,65,1.0],[114,130,66,1.0],[114,130,67,1.0],[114,130,68,1.0],[114,130,69,1.0],[114,130,70,1.0],[114,130,71,1.0],[114,130,72,1.0],[114,130,73,1.0],[114,130,74,1.0],[114,130,75,1.0],[114,130,76,1.0],[114,130,77,1.0],[114,130,78,1.0],[114,130,79,1.0],[114,131,64,1.0],[114,131,65,1.0],[114,131,66,1.0],[114,131,67,1.0],[114,131,68,1.0],[114,131,69,1.0],[114,131,70,1.0],[114,131,71,1.0],[114,131,72,1.0],[114,131,73,1.0],[114,131,74,1.0],[114,131,75,1.0],[114,131,76,1.0],[114,131,77,1.0],[114,131,78,1.0],[114,131,79,1.0],[114,132,64,1.0],[114,132,65,1.0],[114,132,66,1.0],[114,132,67,1.0],[114,132,68,1.0],[114,132,69,1.0],[114,132,70,1.0],[114,132,71,1.0],[114,132,72,1.0],[114,132,73,1.0],[114,132,74,1.0],[114,132,75,1.0],[114,132,76,1.0],[114,132,77,1.0],[114,132,78,1.0],[114,132,79,1.0],[114,133,64,1.0],[114,133,65,1.0],[114,133,66,1.0],[114,133,67,1.0],[114,133,68,1.0],[114,133,69,1.0],[114,133,70,1.0],[114,133,71,1.0],[114,133,72,1.0],[114,133,73,1.0],[114,133,74,1.0],[114,133,75,1.0],[114,133,76,1.0],[114,133,77,1.0],[114,133,78,1.0],[114,133,79,1.0],[114,134,64,1.0],[114,134,65,1.0],[114,134,66,1.0],[114,134,67,1.0],[114,134,68,1.0],[114,134,69,1.0],[114,134,70,1.0],[114,134,71,1.0],[114,134,72,1.0],[114,134,73,1.0],[114,134,74,1.0],[114,134,75,1.0],[114,134,76,1.0],[114,134,77,1.0],[114,134,78,1.0],[114,134,79,1.0],[114,135,64,1.0],[114,135,65,1.0],[114,135,66,1.0],[114,135,67,1.0],[114,135,68,1.0],[114,135,69,1.0],[114,135,70,1.0],[114,135,71,1.0],[114,135,72,1.0],[114,135,73,1.0],[114,135,74,1.0],[114,135,75,1.0],[114,135,76,1.0],[114,135,77,1.0],[114,135,78,1.0],[114,135,79,1.0],[114,136,64,1.0],[114,136,65,1.0],[114,136,66,1.0],[114,136,67,1.0],[114,136,68,1.0],[114,136,69,1.0],[114,136,70,1.0],[114,136,71,1.0],[114,136,72,1.0],[114,136,73,1.0],[114,136,74,1.0],[114,136,75,1.0],[114,136,76,1.0],[114,136,77,1.0],[114,136,78,1.0],[114,136,79,1.0],[114,137,64,1.0],[114,137,65,1.0],[114,137,66,1.0],[114,137,67,1.0],[114,137,68,1.0],[114,137,69,1.0],[114,137,70,1.0],[114,137,71,1.0],[114,137,72,1.0],[114,137,73,1.0],[114,137,74,1.0],[114,137,75,1.0],[114,137,76,1.0],[114,137,77,1.0],[114,137,78,1.0],[114,137,79,1.0],[114,138,64,1.0],[114,138,65,1.0],[114,138,66,1.0],[114,138,67,1.0],[114,138,68,1.0],[114,138,69,1.0],[114,138,70,1.0],[114,138,71,1.0],[114,138,72,1.0],[114,138,73,1.0],[114,138,74,1.0],[114,138,75,1.0],[114,138,76,1.0],[114,138,77,1.0],[114,138,78,1.0],[114,138,79,1.0],[114,139,64,1.0],[114,139,65,1.0],[114,139,66,1.0],[114,139,67,1.0],[114,139,68,1.0],[114,139,69,1.0],[114,139,70,1.0],[114,139,71,1.0],[114,139,72,1.0],[114,139,73,1.0],[114,139,74,1.0],[114,139,75,1.0],[114,139,76,1.0],[114,139,77,1.0],[114,139,78,1.0],[114,139,79,1.0],[114,140,64,1.0],[114,140,65,1.0],[114,140,66,1.0],[114,140,67,1.0],[114,140,68,1.0],[114,140,69,1.0],[114,140,70,1.0],[114,140,71,1.0],[114,140,72,1.0],[114,140,73,1.0],[114,140,74,1.0],[114,140,75,1.0],[114,140,76,1.0],[114,140,77,1.0],[114,140,78,1.0],[114,140,79,1.0],[114,141,64,1.0],[114,141,65,1.0],[114,141,66,1.0],[114,141,67,1.0],[114,141,68,1.0],[114,141,69,1.0],[114,141,70,1.0],[114,141,71,1.0],[114,141,72,1.0],[114,141,73,1.0],[114,141,74,1.0],[114,141,75,1.0],[114,141,76,1.0],[114,141,77,1.0],[114,141,78,1.0],[114,141,79,1.0],[114,142,64,1.0],[114,142,65,1.0],[114,142,66,1.0],[114,142,67,1.0],[114,142,68,1.0],[114,142,69,1.0],[114,142,70,1.0],[114,142,71,1.0],[114,142,72,1.0],[114,142,73,1.0],[114,142,74,1.0],[114,142,75,1.0],[114,142,76,1.0],[114,142,77,1.0],[114,142,78,1.0],[114,142,79,1.0],[114,143,64,1.0],[114,143,65,1.0],[114,143,66,1.0],[114,143,67,1.0],[114,143,68,1.0],[114,143,69,1.0],[114,143,70,1.0],[114,143,71,1.0],[114,143,72,1.0],[114,143,73,1.0],[114,143,74,1.0],[114,143,75,1.0],[114,143,76,1.0],[114,143,77,1.0],[114,143,78,1.0],[114,143,79,1.0],[114,144,64,1.0],[114,144,65,1.0],[114,144,66,1.0],[114,144,67,1.0],[114,144,68,1.0],[114,144,69,1.0],[114,144,70,1.0],[114,144,71,1.0],[114,144,72,1.0],[114,144,73,1.0],[114,144,74,1.0],[114,144,75,1.0],[114,144,76,1.0],[114,144,77,1.0],[114,144,78,1.0],[114,144,79,1.0],[114,145,64,1.0],[114,145,65,1.0],[114,145,66,1.0],[114,145,67,1.0],[114,145,68,1.0],[114,145,69,1.0],[114,145,70,1.0],[114,145,71,1.0],[114,145,72,1.0],[114,145,73,1.0],[114,145,74,1.0],[114,145,75,1.0],[114,145,76,1.0],[114,145,77,1.0],[114,145,78,1.0],[114,145,79,1.0],[114,146,64,1.0],[114,146,65,1.0],[114,146,66,1.0],[114,146,67,1.0],[114,146,68,1.0],[114,146,69,1.0],[114,146,70,1.0],[114,146,71,1.0],[114,146,72,1.0],[114,146,73,1.0],[114,146,74,1.0],[114,146,75,1.0],[114,146,76,1.0],[114,146,77,1.0],[114,146,78,1.0],[114,146,79,1.0],[114,147,64,1.0],[114,147,65,1.0],[114,147,66,1.0],[114,147,67,1.0],[114,147,68,1.0],[114,147,69,1.0],[114,147,70,1.0],[114,147,71,1.0],[114,147,72,1.0],[114,147,73,1.0],[114,147,74,1.0],[114,147,75,1.0],[114,147,76,1.0],[114,147,77,1.0],[114,147,78,1.0],[114,147,79,1.0],[114,148,64,1.0],[114,148,65,1.0],[114,148,66,1.0],[114,148,67,1.0],[114,148,68,1.0],[114,148,69,1.0],[114,148,70,1.0],[114,148,71,1.0],[114,148,72,1.0],[114,148,73,1.0],[114,148,74,1.0],[114,148,75,1.0],[114,148,76,1.0],[114,148,77,1.0],[114,148,78,1.0],[114,148,79,1.0],[114,149,64,1.0],[114,149,65,1.0],[114,149,66,1.0],[114,149,67,1.0],[114,149,68,1.0],[114,149,69,1.0],[114,149,70,1.0],[114,149,71,1.0],[114,149,72,1.0],[114,149,73,1.0],[114,149,74,1.0],[114,149,75,1.0],[114,149,76,1.0],[114,149,77,1.0],[114,149,78,1.0],[114,149,79,1.0],[114,150,64,1.0],[114,150,65,1.0],[114,150,66,1.0],[114,150,67,1.0],[114,150,68,1.0],[114,150,69,1.0],[114,150,70,1.0],[114,150,71,1.0],[114,150,72,1.0],[114,150,73,1.0],[114,150,74,1.0],[114,150,75,1.0],[114,150,76,1.0],[114,150,77,1.0],[114,150,78,1.0],[114,150,79,1.0],[114,151,64,1.0],[114,151,65,1.0],[114,151,66,1.0],[114,151,67,1.0],[114,151,68,1.0],[114,151,69,1.0],[114,151,70,1.0],[114,151,71,1.0],[114,151,72,1.0],[114,151,73,1.0],[114,151,74,1.0],[114,151,75,1.0],[114,151,76,1.0],[114,151,77,1.0],[114,151,78,1.0],[114,151,79,1.0],[114,152,64,1.0],[114,152,65,1.0],[114,152,66,1.0],[114,152,67,1.0],[114,152,68,1.0],[114,152,69,1.0],[114,152,70,1.0],[114,152,71,1.0],[114,152,72,1.0],[114,152,73,1.0],[114,152,74,1.0],[114,152,75,1.0],[114,152,76,1.0],[114,152,77,1.0],[114,152,78,1.0],[114,152,79,1.0],[114,153,64,1.0],[114,153,65,1.0],[114,153,66,1.0],[114,153,67,1.0],[114,153,68,1.0],[114,153,69,1.0],[114,153,70,1.0],[114,153,71,1.0],[114,153,72,1.0],[114,153,73,1.0],[114,153,74,1.0],[114,153,75,1.0],[114,153,76,1.0],[114,153,77,1.0],[114,153,78,1.0],[114,153,79,1.0],[114,154,64,1.0],[114,154,65,1.0],[114,154,66,1.0],[114,154,67,1.0],[114,154,68,1.0],[114,154,69,1.0],[114,154,70,1.0],[114,154,71,1.0],[114,154,72,1.0],[114,154,73,1.0],[114,154,74,1.0],[114,154,75,1.0],[114,154,76,1.0],[114,154,77,1.0],[114,154,78,1.0],[114,154,79,1.0],[114,155,64,1.0],[114,155,65,1.0],[114,155,66,1.0],[114,155,67,1.0],[114,155,68,1.0],[114,155,69,1.0],[114,155,70,1.0],[114,155,71,1.0],[114,155,72,1.0],[114,155,73,1.0],[114,155,74,1.0],[114,155,75,1.0],[114,155,76,1.0],[114,155,77,1.0],[114,155,78,1.0],[114,155,79,1.0],[114,156,64,1.0],[114,156,65,1.0],[114,156,66,1.0],[114,156,67,1.0],[114,156,68,1.0],[114,156,69,1.0],[114,156,70,1.0],[114,156,71,1.0],[114,156,72,1.0],[114,156,73,1.0],[114,156,74,1.0],[114,156,75,1.0],[114,156,76,1.0],[114,156,77,1.0],[114,156,78,1.0],[114,156,79,1.0],[114,157,64,1.0],[114,157,65,1.0],[114,157,66,1.0],[114,157,67,1.0],[114,157,68,1.0],[114,157,69,1.0],[114,157,70,1.0],[114,157,71,1.0],[114,157,72,1.0],[114,157,73,1.0],[114,157,74,1.0],[114,157,75,1.0],[114,157,76,1.0],[114,157,77,1.0],[114,157,78,1.0],[114,157,79,1.0],[114,158,64,1.0],[114,158,65,1.0],[114,158,66,1.0],[114,158,67,1.0],[114,158,68,1.0],[114,158,69,1.0],[114,158,70,1.0],[114,158,71,1.0],[114,158,72,1.0],[114,158,73,1.0],[114,158,74,1.0],[114,158,75,1.0],[114,158,76,1.0],[114,158,77,1.0],[114,158,78,1.0],[114,158,79,1.0],[114,159,64,1.0],[114,159,65,1.0],[114,159,66,1.0],[114,159,67,1.0],[114,159,68,1.0],[114,159,69,1.0],[114,159,70,1.0],[114,159,71,1.0],[114,159,72,1.0],[114,159,73,1.0],[114,159,74,1.0],[114,159,75,1.0],[114,159,76,1.0],[114,159,77,1.0],[114,159,78,1.0],[114,159,79,1.0],[114,160,64,1.0],[114,160,65,1.0],[114,160,66,1.0],[114,160,67,1.0],[114,160,68,1.0],[114,160,69,1.0],[114,160,70,1.0],[114,160,71,1.0],[114,160,72,1.0],[114,160,73,1.0],[114,160,74,1.0],[114,160,75,1.0],[114,160,76,1.0],[114,160,77,1.0],[114,160,78,1.0],[114,160,79,1.0],[114,161,64,1.0],[114,161,65,1.0],[114,161,66,1.0],[114,161,67,1.0],[114,161,68,1.0],[114,161,69,1.0],[114,161,70,1.0],[114,161,71,1.0],[114,161,72,1.0],[114,161,73,1.0],[114,161,74,1.0],[114,161,75,1.0],[114,161,76,1.0],[114,161,77,1.0],[114,161,78,1.0],[114,161,79,1.0],[114,162,64,1.0],[114,162,65,1.0],[114,162,66,1.0],[114,162,67,1.0],[114,162,68,1.0],[114,162,69,1.0],[114,162,70,1.0],[114,162,71,1.0],[114,162,72,1.0],[114,162,73,1.0],[114,162,74,1.0],[114,162,75,1.0],[114,162,76,1.0],[114,162,77,1.0],[114,162,78,1.0],[114,162,79,1.0],[114,163,64,1.0],[114,163,65,1.0],[114,163,66,1.0],[114,163,67,1.0],[114,163,68,1.0],[114,163,69,1.0],[114,163,70,1.0],[114,163,71,1.0],[114,163,72,1.0],[114,163,73,1.0],[114,163,74,1.0],[114,163,75,1.0],[114,163,76,1.0],[114,163,77,1.0],[114,163,78,1.0],[114,163,79,1.0],[114,164,64,1.0],[114,164,65,1.0],[114,164,66,1.0],[114,164,67,1.0],[114,164,68,1.0],[114,164,69,1.0],[114,164,70,1.0],[114,164,71,1.0],[114,164,72,1.0],[114,164,73,1.0],[114,164,74,1.0],[114,164,75,1.0],[114,164,76,1.0],[114,164,77,1.0],[114,164,78,1.0],[114,164,79,1.0],[114,165,64,1.0],[114,165,65,1.0],[114,165,66,1.0],[114,165,67,1.0],[114,165,68,1.0],[114,165,69,1.0],[114,165,70,1.0],[114,165,71,1.0],[114,165,72,1.0],[114,165,73,1.0],[114,165,74,1.0],[114,165,75,1.0],[114,165,76,1.0],[114,165,77,1.0],[114,165,78,1.0],[114,165,79,1.0],[114,166,64,1.0],[114,166,65,1.0],[114,166,66,1.0],[114,166,67,1.0],[114,166,68,1.0],[114,166,69,1.0],[114,166,70,1.0],[114,166,71,1.0],[114,166,72,1.0],[114,166,73,1.0],[114,166,74,1.0],[114,166,75,1.0],[114,166,76,1.0],[114,166,77,1.0],[114,166,78,1.0],[114,166,79,1.0],[114,167,64,1.0],[114,167,65,1.0],[114,167,66,1.0],[114,167,67,1.0],[114,167,68,1.0],[114,167,69,1.0],[114,167,70,1.0],[114,167,71,1.0],[114,167,72,1.0],[114,167,73,1.0],[114,167,74,1.0],[114,167,75,1.0],[114,167,76,1.0],[114,167,77,1.0],[114,167,78,1.0],[114,167,79,1.0],[114,168,64,1.0],[114,168,65,1.0],[114,168,66,1.0],[114,168,67,1.0],[114,168,68,1.0],[114,168,69,1.0],[114,168,70,1.0],[114,168,71,1.0],[114,168,72,1.0],[114,168,73,1.0],[114,168,74,1.0],[114,168,75,1.0],[114,168,76,1.0],[114,168,77,1.0],[114,168,78,1.0],[114,168,79,1.0],[114,169,64,1.0],[114,169,65,1.0],[114,169,66,1.0],[114,169,67,1.0],[114,169,68,1.0],[114,169,69,1.0],[114,169,70,1.0],[114,169,71,1.0],[114,169,72,1.0],[114,169,73,1.0],[114,169,74,1.0],[114,169,75,1.0],[114,169,76,1.0],[114,169,77,1.0],[114,169,78,1.0],[114,169,79,1.0],[114,170,64,1.0],[114,170,65,1.0],[114,170,66,1.0],[114,170,67,1.0],[114,170,68,1.0],[114,170,69,1.0],[114,170,70,1.0],[114,170,71,1.0],[114,170,72,1.0],[114,170,73,1.0],[114,170,74,1.0],[114,170,75,1.0],[114,170,76,1.0],[114,170,77,1.0],[114,170,78,1.0],[114,170,79,1.0],[114,171,64,1.0],[114,171,65,1.0],[114,171,66,1.0],[114,171,67,1.0],[114,171,68,1.0],[114,171,69,1.0],[114,171,70,1.0],[114,171,71,1.0],[114,171,72,1.0],[114,171,73,1.0],[114,171,74,1.0],[114,171,75,1.0],[114,171,76,1.0],[114,171,77,1.0],[114,171,78,1.0],[114,171,79,1.0],[114,172,64,1.0],[114,172,65,1.0],[114,172,66,1.0],[114,172,67,1.0],[114,172,68,1.0],[114,172,69,1.0],[114,172,70,1.0],[114,172,71,1.0],[114,172,72,1.0],[114,172,73,1.0],[114,172,74,1.0],[114,172,75,1.0],[114,172,76,1.0],[114,172,77,1.0],[114,172,78,1.0],[114,172,79,1.0],[114,173,64,1.0],[114,173,65,1.0],[114,173,66,1.0],[114,173,67,1.0],[114,173,68,1.0],[114,173,69,1.0],[114,173,70,1.0],[114,173,71,1.0],[114,173,72,1.0],[114,173,73,1.0],[114,173,74,1.0],[114,173,75,1.0],[114,173,76,1.0],[114,173,77,1.0],[114,173,78,1.0],[114,173,79,1.0],[114,174,64,1.0],[114,174,65,1.0],[114,174,66,1.0],[114,174,67,1.0],[114,174,68,1.0],[114,174,69,1.0],[114,174,70,1.0],[114,174,71,1.0],[114,174,72,1.0],[114,174,73,1.0],[114,174,74,1.0],[114,174,75,1.0],[114,174,76,1.0],[114,174,77,1.0],[114,174,78,1.0],[114,174,79,1.0],[114,175,64,1.0],[114,175,65,1.0],[114,175,66,1.0],[114,175,67,1.0],[114,175,68,1.0],[114,175,69,1.0],[114,175,70,1.0],[114,175,71,1.0],[114,175,72,1.0],[114,175,73,1.0],[114,175,74,1.0],[114,175,75,1.0],[114,175,76,1.0],[114,175,77,1.0],[114,175,78,1.0],[114,175,79,1.0],[114,176,64,1.0],[114,176,65,1.0],[114,176,66,1.0],[114,176,67,1.0],[114,176,68,1.0],[114,176,69,1.0],[114,176,70,1.0],[114,176,71,1.0],[114,176,72,1.0],[114,176,73,1.0],[114,176,74,1.0],[114,176,75,1.0],[114,176,76,1.0],[114,176,77,1.0],[114,176,78,1.0],[114,176,79,1.0],[114,177,64,1.0],[114,177,65,1.0],[114,177,66,1.0],[114,177,67,1.0],[114,177,68,1.0],[114,177,69,1.0],[114,177,70,1.0],[114,177,71,1.0],[114,177,72,1.0],[114,177,73,1.0],[114,177,74,1.0],[114,177,75,1.0],[114,177,76,1.0],[114,177,77,1.0],[114,177,78,1.0],[114,177,79,1.0],[114,178,64,1.0],[114,178,65,1.0],[114,178,66,1.0],[114,178,67,1.0],[114,178,68,1.0],[114,178,69,1.0],[114,178,70,1.0],[114,178,71,1.0],[114,178,72,1.0],[114,178,73,1.0],[114,178,74,1.0],[114,178,75,1.0],[114,178,76,1.0],[114,178,77,1.0],[114,178,78,1.0],[114,178,79,1.0],[114,179,64,1.0],[114,179,65,1.0],[114,179,66,1.0],[114,179,67,1.0],[114,179,68,1.0],[114,179,69,1.0],[114,179,70,1.0],[114,179,71,1.0],[114,179,72,1.0],[114,179,73,1.0],[114,179,74,1.0],[114,179,75,1.0],[114,179,76,1.0],[114,179,77,1.0],[114,179,78,1.0],[114,179,79,1.0],[114,180,64,1.0],[114,180,65,1.0],[114,180,66,1.0],[114,180,67,1.0],[114,180,68,1.0],[114,180,69,1.0],[114,180,70,1.0],[114,180,71,1.0],[114,180,72,1.0],[114,180,73,1.0],[114,180,74,1.0],[114,180,75,1.0],[114,180,76,1.0],[114,180,77,1.0],[114,180,78,1.0],[114,180,79,1.0],[114,181,64,1.0],[114,181,65,1.0],[114,181,66,1.0],[114,181,67,1.0],[114,181,68,1.0],[114,181,69,1.0],[114,181,70,1.0],[114,181,71,1.0],[114,181,72,1.0],[114,181,73,1.0],[114,181,74,1.0],[114,181,75,1.0],[114,181,76,1.0],[114,181,77,1.0],[114,181,78,1.0],[114,181,79,1.0],[114,182,64,1.0],[114,182,65,1.0],[114,182,66,1.0],[114,182,67,1.0],[114,182,68,1.0],[114,182,69,1.0],[114,182,70,1.0],[114,182,71,1.0],[114,182,72,1.0],[114,182,73,1.0],[114,182,74,1.0],[114,182,75,1.0],[114,182,76,1.0],[114,182,77,1.0],[114,182,78,1.0],[114,182,79,1.0],[114,183,64,1.0],[114,183,65,1.0],[114,183,66,1.0],[114,183,67,1.0],[114,183,68,1.0],[114,183,69,1.0],[114,183,70,1.0],[114,183,71,1.0],[114,183,72,1.0],[114,183,73,1.0],[114,183,74,1.0],[114,183,75,1.0],[114,183,76,1.0],[114,183,77,1.0],[114,183,78,1.0],[114,183,79,1.0],[114,184,64,1.0],[114,184,65,1.0],[114,184,66,1.0],[114,184,67,1.0],[114,184,68,1.0],[114,184,69,1.0],[114,184,70,1.0],[114,184,71,1.0],[114,184,72,1.0],[114,184,73,1.0],[114,184,74,1.0],[114,184,75,1.0],[114,184,76,1.0],[114,184,77,1.0],[114,184,78,1.0],[114,184,79,1.0],[114,185,64,1.0],[114,185,65,1.0],[114,185,66,1.0],[114,185,67,1.0],[114,185,68,1.0],[114,185,69,1.0],[114,185,70,1.0],[114,185,71,1.0],[114,185,72,1.0],[114,185,73,1.0],[114,185,74,1.0],[114,185,75,1.0],[114,185,76,1.0],[114,185,77,1.0],[114,185,78,1.0],[114,185,79,1.0],[114,186,64,1.0],[114,186,65,1.0],[114,186,66,1.0],[114,186,67,1.0],[114,186,68,1.0],[114,186,69,1.0],[114,186,70,1.0],[114,186,71,1.0],[114,186,72,1.0],[114,186,73,1.0],[114,186,74,1.0],[114,186,75,1.0],[114,186,76,1.0],[114,186,77,1.0],[114,186,78,1.0],[114,186,79,1.0],[114,187,64,1.0],[114,187,65,1.0],[114,187,66,1.0],[114,187,67,1.0],[114,187,68,1.0],[114,187,69,1.0],[114,187,70,1.0],[114,187,71,1.0],[114,187,72,1.0],[114,187,73,1.0],[114,187,74,1.0],[114,187,75,1.0],[114,187,76,1.0],[114,187,77,1.0],[114,187,78,1.0],[114,187,79,1.0],[114,188,64,1.0],[114,188,65,1.0],[114,188,66,1.0],[114,188,67,1.0],[114,188,68,1.0],[114,188,69,1.0],[114,188,70,1.0],[114,188,71,1.0],[114,188,72,1.0],[114,188,73,1.0],[114,188,74,1.0],[114,188,75,1.0],[114,188,76,1.0],[114,188,77,1.0],[114,188,78,1.0],[114,188,79,1.0],[114,189,64,1.0],[114,189,65,1.0],[114,189,66,1.0],[114,189,67,1.0],[114,189,68,1.0],[114,189,69,1.0],[114,189,70,1.0],[114,189,71,1.0],[114,189,72,1.0],[114,189,73,1.0],[114,189,74,1.0],[114,189,75,1.0],[114,189,76,1.0],[114,189,77,1.0],[114,189,78,1.0],[114,189,79,1.0],[114,190,64,1.0],[114,190,65,1.0],[114,190,66,1.0],[114,190,67,1.0],[114,190,68,1.0],[114,190,69,1.0],[114,190,70,1.0],[114,190,71,1.0],[114,190,72,1.0],[114,190,73,1.0],[114,190,74,1.0],[114,190,75,1.0],[114,190,76,1.0],[114,190,77,1.0],[114,190,78,1.0],[114,190,79,1.0],[114,191,64,1.0],[114,191,65,1.0],[114,191,66,1.0],[114,191,67,1.0],[114,191,68,1.0],[114,191,69,1.0],[114,191,70,1.0],[114,191,71,1.0],[114,191,72,1.0],[114,191,73,1.0],[114,191,74,1.0],[114,191,75,1.0],[114,191,76,1.0],[114,191,77,1.0],[114,191,78,1.0],[114,191,79,1.0],[114,192,64,1.0],[114,192,65,1.0],[114,192,66,1.0],[114,192,67,1.0],[114,192,68,1.0],[114,192,69,1.0],[114,192,70,1.0],[114,192,71,1.0],[114,192,72,1.0],[114,192,73,1.0],[114,192,74,1.0],[114,192,75,1.0],[114,192,76,1.0],[114,192,77,1.0],[114,192,78,1.0],[114,192,79,1.0],[114,193,64,1.0],[114,193,65,1.0],[114,193,66,1.0],[114,193,67,1.0],[114,193,68,1.0],[114,193,69,1.0],[114,193,70,1.0],[114,193,71,1.0],[114,193,72,1.0],[114,193,73,1.0],[114,193,74,1.0],[114,193,75,1.0],[114,193,76,1.0],[114,193,77,1.0],[114,193,78,1.0],[114,193,79,1.0],[114,194,64,1.0],[114,194,65,1.0],[114,194,66,1.0],[114,194,67,1.0],[114,194,68,1.0],[114,194,69,1.0],[114,194,70,1.0],[114,194,71,1.0],[114,194,72,1.0],[114,194,73,1.0],[114,194,74,1.0],[114,194,75,1.0],[114,194,76,1.0],[114,194,77,1.0],[114,194,78,1.0],[114,194,79,1.0],[114,195,64,1.0],[114,195,65,1.0],[114,195,66,1.0],[114,195,67,1.0],[114,195,68,1.0],[114,195,69,1.0],[114,195,70,1.0],[114,195,71,1.0],[114,195,72,1.0],[114,195,73,1.0],[114,195,74,1.0],[114,195,75,1.0],[114,195,76,1.0],[114,195,77,1.0],[114,195,78,1.0],[114,195,79,1.0],[114,196,64,1.0],[114,196,65,1.0],[114,196,66,1.0],[114,196,67,1.0],[114,196,68,1.0],[114,196,69,1.0],[114,196,70,1.0],[114,196,71,1.0],[114,196,72,1.0],[114,196,73,1.0],[114,196,74,1.0],[114,196,75,1.0],[114,196,76,1.0],[114,196,77,1.0],[114,196,78,1.0],[114,196,79,1.0],[114,197,64,1.0],[114,197,65,1.0],[114,197,66,1.0],[114,197,67,1.0],[114,197,68,1.0],[114,197,69,1.0],[114,197,70,1.0],[114,197,71,1.0],[114,197,72,1.0],[114,197,73,1.0],[114,197,74,1.0],[114,197,75,1.0],[114,197,76,1.0],[114,197,77,1.0],[114,197,78,1.0],[114,197,79,1.0],[114,198,64,1.0],[114,198,65,1.0],[114,198,66,1.0],[114,198,67,1.0],[114,198,68,1.0],[114,198,69,1.0],[114,198,70,1.0],[114,198,71,1.0],[114,198,72,1.0],[114,198,73,1.0],[114,198,74,1.0],[114,198,75,1.0],[114,198,76,1.0],[114,198,77,1.0],[114,198,78,1.0],[114,198,79,1.0],[114,199,64,1.0],[114,199,65,1.0],[114,199,66,1.0],[114,199,67,1.0],[114,199,68,1.0],[114,199,69,1.0],[114,199,70,1.0],[114,199,71,1.0],[114,199,72,1.0],[114,199,73,1.0],[114,199,74,1.0],[114,199,75,1.0],[114,199,76,1.0],[114,199,77,1.0],[114,199,78,1.0],[114,199,79,1.0],[114,200,64,1.0],[114,200,65,1.0],[114,200,66,1.0],[114,200,67,1.0],[114,200,68,1.0],[114,200,69,1.0],[114,200,70,1.0],[114,200,71,1.0],[114,200,72,1.0],[114,200,73,1.0],[114,200,74,1.0],[114,200,75,1.0],[114,200,76,1.0],[114,200,77,1.0],[114,200,78,1.0],[114,200,79,1.0],[114,201,64,1.0],[114,201,65,1.0],[114,201,66,1.0],[114,201,67,1.0],[114,201,68,1.0],[114,201,69,1.0],[114,201,70,1.0],[114,201,71,1.0],[114,201,72,1.0],[114,201,73,1.0],[114,201,74,1.0],[114,201,75,1.0],[114,201,76,1.0],[114,201,77,1.0],[114,201,78,1.0],[114,201,79,1.0],[114,202,64,1.0],[114,202,65,1.0],[114,202,66,1.0],[114,202,67,1.0],[114,202,68,1.0],[114,202,69,1.0],[114,202,70,1.0],[114,202,71,1.0],[114,202,72,1.0],[114,202,73,1.0],[114,202,74,1.0],[114,202,75,1.0],[114,202,76,1.0],[114,202,77,1.0],[114,202,78,1.0],[114,202,79,1.0],[114,203,64,1.0],[114,203,65,1.0],[114,203,66,1.0],[114,203,67,1.0],[114,203,68,1.0],[114,203,69,1.0],[114,203,70,1.0],[114,203,71,1.0],[114,203,72,1.0],[114,203,73,1.0],[114,203,74,1.0],[114,203,75,1.0],[114,203,76,1.0],[114,203,77,1.0],[114,203,78,1.0],[114,203,79,1.0],[114,204,64,1.0],[114,204,65,1.0],[114,204,66,1.0],[114,204,67,1.0],[114,204,68,1.0],[114,204,69,1.0],[114,204,70,1.0],[114,204,71,1.0],[114,204,72,1.0],[114,204,73,1.0],[114,204,74,1.0],[114,204,75,1.0],[114,204,76,1.0],[114,204,77,1.0],[114,204,78,1.0],[114,204,79,1.0],[114,205,64,1.0],[114,205,65,1.0],[114,205,66,1.0],[114,205,67,1.0],[114,205,68,1.0],[114,205,69,1.0],[114,205,70,1.0],[114,205,71,1.0],[114,205,72,1.0],[114,205,73,1.0],[114,205,74,1.0],[114,205,75,1.0],[114,205,76,1.0],[114,205,77,1.0],[114,205,78,1.0],[114,205,79,1.0],[114,206,64,1.0],[114,206,65,1.0],[114,206,66,1.0],[114,206,67,1.0],[114,206,68,1.0],[114,206,69,1.0],[114,206,70,1.0],[114,206,71,1.0],[114,206,72,1.0],[114,206,73,1.0],[114,206,74,1.0],[114,206,75,1.0],[114,206,76,1.0],[114,206,77,1.0],[114,206,78,1.0],[114,206,79,1.0],[114,207,64,1.0],[114,207,65,1.0],[114,207,66,1.0],[114,207,67,1.0],[114,207,68,1.0],[114,207,69,1.0],[114,207,70,1.0],[114,207,71,1.0],[114,207,72,1.0],[114,207,73,1.0],[114,207,74,1.0],[114,207,75,1.0],[114,207,76,1.0],[114,207,77,1.0],[114,207,78,1.0],[114,207,79,1.0],[114,208,64,1.0],[114,208,65,1.0],[114,208,66,1.0],[114,208,67,1.0],[114,208,68,1.0],[114,208,69,1.0],[114,208,70,1.0],[114,208,71,1.0],[114,208,72,1.0],[114,208,73,1.0],[114,208,74,1.0],[114,208,75,1.0],[114,208,76,1.0],[114,208,77,1.0],[114,208,78,1.0],[114,208,79,1.0],[114,209,64,1.0],[114,209,65,1.0],[114,209,66,1.0],[114,209,67,1.0],[114,209,68,1.0],[114,209,69,1.0],[114,209,70,1.0],[114,209,71,1.0],[114,209,72,1.0],[114,209,73,1.0],[114,209,74,1.0],[114,209,75,1.0],[114,209,76,1.0],[114,209,77,1.0],[114,209,78,1.0],[114,209,79,1.0],[114,210,64,1.0],[114,210,65,1.0],[114,210,66,1.0],[114,210,67,1.0],[114,210,68,1.0],[114,210,69,1.0],[114,210,70,1.0],[114,210,71,1.0],[114,210,72,1.0],[114,210,73,1.0],[114,210,74,1.0],[114,210,75,1.0],[114,210,76,1.0],[114,210,77,1.0],[114,210,78,1.0],[114,210,79,1.0],[114,211,64,1.0],[114,211,65,1.0],[114,211,66,1.0],[114,211,67,1.0],[114,211,68,1.0],[114,211,69,1.0],[114,211,70,1.0],[114,211,71,1.0],[114,211,72,1.0],[114,211,73,1.0],[114,211,74,1.0],[114,211,75,1.0],[114,211,76,1.0],[114,211,77,1.0],[114,211,78,1.0],[114,211,79,1.0],[114,212,64,1.0],[114,212,65,1.0],[114,212,66,1.0],[114,212,67,1.0],[114,212,68,1.0],[114,212,69,1.0],[114,212,70,1.0],[114,212,71,1.0],[114,212,72,1.0],[114,212,73,1.0],[114,212,74,1.0],[114,212,75,1.0],[114,212,76,1.0],[114,212,77,1.0],[114,212,78,1.0],[114,212,79,1.0],[114,213,64,1.0],[114,213,65,1.0],[114,213,66,1.0],[114,213,67,1.0],[114,213,68,1.0],[114,213,69,1.0],[114,213,70,1.0],[114,213,71,1.0],[114,213,72,1.0],[114,213,73,1.0],[114,213,74,1.0],[114,213,75,1.0],[114,213,76,1.0],[114,213,77,1.0],[114,213,78,1.0],[114,213,79,1.0],[114,214,64,1.0],[114,214,65,1.0],[114,214,66,1.0],[114,214,67,1.0],[114,214,68,1.0],[114,214,69,1.0],[114,214,70,1.0],[114,214,71,1.0],[114,214,72,1.0],[114,214,73,1.0],[114,214,74,1.0],[114,214,75,1.0],[114,214,76,1.0],[114,214,77,1.0],[114,214,78,1.0],[114,214,79,1.0],[114,215,64,1.0],[114,215,65,1.0],[114,215,66,1.0],[114,215,67,1.0],[114,215,68,1.0],[114,215,69,1.0],[114,215,70,1.0],[114,215,71,1.0],[114,215,72,1.0],[114,215,73,1.0],[114,215,74,1.0],[114,215,75,1.0],[114,215,76,1.0],[114,215,77,1.0],[114,215,78,1.0],[114,215,79,1.0],[114,216,64,1.0],[114,216,65,1.0],[114,216,66,1.0],[114,216,67,1.0],[114,216,68,1.0],[114,216,69,1.0],[114,216,70,1.0],[114,216,71,1.0],[114,216,72,1.0],[114,216,73,1.0],[114,216,74,1.0],[114,216,75,1.0],[114,216,76,1.0],[114,216,77,1.0],[114,216,78,1.0],[114,216,79,1.0],[114,217,64,1.0],[114,217,65,1.0],[114,217,66,1.0],[114,217,67,1.0],[114,217,68,1.0],[114,217,69,1.0],[114,217,70,1.0],[114,217,71,1.0],[114,217,72,1.0],[114,217,73,1.0],[114,217,74,1.0],[114,217,75,1.0],[114,217,76,1.0],[114,217,77,1.0],[114,217,78,1.0],[114,217,79,1.0],[114,218,64,1.0],[114,218,65,1.0],[114,218,66,1.0],[114,218,67,1.0],[114,218,68,1.0],[114,218,69,1.0],[114,218,70,1.0],[114,218,71,1.0],[114,218,72,1.0],[114,218,73,1.0],[114,218,74,1.0],[114,218,75,1.0],[114,218,76,1.0],[114,218,77,1.0],[114,218,78,1.0],[114,218,79,1.0],[114,219,64,1.0],[114,219,65,1.0],[114,219,66,1.0],[114,219,67,1.0],[114,219,68,1.0],[114,219,69,1.0],[114,219,70,1.0],[114,219,71,1.0],[114,219,72,1.0],[114,219,73,1.0],[114,219,74,1.0],[114,219,75,1.0],[114,219,76,1.0],[114,219,77,1.0],[114,219,78,1.0],[114,219,79,1.0],[114,220,64,1.0],[114,220,65,1.0],[114,220,66,1.0],[114,220,67,1.0],[114,220,68,1.0],[114,220,69,1.0],[114,220,70,1.0],[114,220,71,1.0],[114,220,72,1.0],[114,220,73,1.0],[114,220,74,1.0],[114,220,75,1.0],[114,220,76,1.0],[114,220,77,1.0],[114,220,78,1.0],[114,220,79,1.0],[114,221,64,1.0],[114,221,65,1.0],[114,221,66,1.0],[114,221,67,1.0],[114,221,68,1.0],[114,221,69,1.0],[114,221,70,1.0],[114,221,71,1.0],[114,221,72,1.0],[114,221,73,1.0],[114,221,74,1.0],[114,221,75,1.0],[114,221,76,1.0],[114,221,77,1.0],[114,221,78,1.0],[114,221,79,1.0],[114,222,64,1.0],[114,222,65,1.0],[114,222,66,1.0],[114,222,67,1.0],[114,222,68,1.0],[114,222,69,1.0],[114,222,70,1.0],[114,222,71,1.0],[114,222,72,1.0],[114,222,73,1.0],[114,222,74,1.0],[114,222,75,1.0],[114,222,76,1.0],[114,222,77,1.0],[114,222,78,1.0],[114,222,79,1.0],[114,223,64,1.0],[114,223,65,1.0],[114,223,66,1.0],[114,223,67,1.0],[114,223,68,1.0],[114,223,69,1.0],[114,223,70,1.0],[114,223,71,1.0],[114,223,72,1.0],[114,223,73,1.0],[114,223,74,1.0],[114,223,75,1.0],[114,223,76,1.0],[114,223,77,1.0],[114,223,78,1.0],[114,223,79,1.0],[114,224,64,1.0],[114,224,65,1.0],[114,224,66,1.0],[114,224,67,1.0],[114,224,68,1.0],[114,224,69,1.0],[114,224,70,1.0],[114,224,71,1.0],[114,224,72,1.0],[114,224,73,1.0],[114,224,74,1.0],[114,224,75,1.0],[114,224,76,1.0],[114,224,77,1.0],[114,224,78,1.0],[114,224,79,1.0],[114,225,64,1.0],[114,225,65,1.0],[114,225,66,1.0],[114,225,67,1.0],[114,225,68,1.0],[114,225,69,1.0],[114,225,70,1.0],[114,225,71,1.0],[114,225,72,1.0],[114,225,73,1.0],[114,225,74,1.0],[114,225,75,1.0],[114,225,76,1.0],[114,225,77,1.0],[114,225,78,1.0],[114,225,79,1.0],[114,226,64,1.0],[114,226,65,1.0],[114,226,66,1.0],[114,226,67,1.0],[114,226,68,1.0],[114,226,69,1.0],[114,226,70,1.0],[114,226,71,1.0],[114,226,72,1.0],[114,226,73,1.0],[114,226,74,1.0],[114,226,75,1.0],[114,226,76,1.0],[114,226,77,1.0],[114,226,78,1.0],[114,226,79,1.0],[114,227,64,1.0],[114,227,65,1.0],[114,227,66,1.0],[114,227,67,1.0],[114,227,68,1.0],[114,227,69,1.0],[114,227,70,1.0],[114,227,71,1.0],[114,227,72,1.0],[114,227,73,1.0],[114,227,74,1.0],[114,227,75,1.0],[114,227,76,1.0],[114,227,77,1.0],[114,227,78,1.0],[114,227,79,1.0],[114,228,64,1.0],[114,228,65,1.0],[114,228,66,1.0],[114,228,67,1.0],[114,228,68,1.0],[114,228,69,1.0],[114,228,70,1.0],[114,228,71,1.0],[114,228,72,1.0],[114,228,73,1.0],[114,228,74,1.0],[114,228,75,1.0],[114,228,76,1.0],[114,228,77,1.0],[114,228,78,1.0],[114,228,79,1.0],[114,229,64,1.0],[114,229,65,1.0],[114,229,66,1.0],[114,229,67,1.0],[114,229,68,1.0],[114,229,69,1.0],[114,229,70,1.0],[114,229,71,1.0],[114,229,72,1.0],[114,229,73,1.0],[114,229,74,1.0],[114,229,75,1.0],[114,229,76,1.0],[114,229,77,1.0],[114,229,78,1.0],[114,229,79,1.0],[114,230,64,1.0],[114,230,65,1.0],[114,230,66,1.0],[114,230,67,1.0],[114,230,68,1.0],[114,230,69,1.0],[114,230,70,1.0],[114,230,71,1.0],[114,230,72,1.0],[114,230,73,1.0],[114,230,74,1.0],[114,230,75,1.0],[114,230,76,1.0],[114,230,77,1.0],[114,230,78,1.0],[114,230,79,1.0],[114,231,64,1.0],[114,231,65,1.0],[114,231,66,1.0],[114,231,67,1.0],[114,231,68,1.0],[114,231,69,1.0],[114,231,70,1.0],[114,231,71,1.0],[114,231,72,1.0],[114,231,73,1.0],[114,231,74,1.0],[114,231,75,1.0],[114,231,76,1.0],[114,231,77,1.0],[114,231,78,1.0],[114,231,79,1.0],[114,232,64,1.0],[114,232,65,1.0],[114,232,66,1.0],[114,232,67,1.0],[114,232,68,1.0],[114,232,69,1.0],[114,232,70,1.0],[114,232,71,1.0],[114,232,72,1.0],[114,232,73,1.0],[114,232,74,1.0],[114,232,75,1.0],[114,232,76,1.0],[114,232,77,1.0],[114,232,78,1.0],[114,232,79,1.0],[114,233,64,1.0],[114,233,65,1.0],[114,233,66,1.0],[114,233,67,1.0],[114,233,68,1.0],[114,233,69,1.0],[114,233,70,1.0],[114,233,71,1.0],[114,233,72,1.0],[114,233,73,1.0],[114,233,74,1.0],[114,233,75,1.0],[114,233,76,1.0],[114,233,77,1.0],[114,233,78,1.0],[114,233,79,1.0],[114,234,64,1.0],[114,234,65,1.0],[114,234,66,1.0],[114,234,67,1.0],[114,234,68,1.0],[114,234,69,1.0],[114,234,70,1.0],[114,234,71,1.0],[114,234,72,1.0],[114,234,73,1.0],[114,234,74,1.0],[114,234,75,1.0],[114,234,76,1.0],[114,234,77,1.0],[114,234,78,1.0],[114,234,79,1.0],[114,235,64,1.0],[114,235,65,1.0],[114,235,66,1.0],[114,235,67,1.0],[114,235,68,1.0],[114,235,69,1.0],[114,235,70,1.0],[114,235,71,1.0],[114,235,72,1.0],[114,235,73,1.0],[114,235,74,1.0],[114,235,75,1.0],[114,235,76,1.0],[114,235,77,1.0],[114,235,78,1.0],[114,235,79,1.0],[114,236,64,1.0],[114,236,65,1.0],[114,236,66,1.0],[114,236,67,1.0],[114,236,68,1.0],[114,236,69,1.0],[114,236,70,1.0],[114,236,71,1.0],[114,236,72,1.0],[114,236,73,1.0],[114,236,74,1.0],[114,236,75,1.0],[114,236,76,1.0],[114,236,77,1.0],[114,236,78,1.0],[114,236,79,1.0],[114,237,64,1.0],[114,237,65,1.0],[114,237,66,1.0],[114,237,67,1.0],[114,237,68,1.0],[114,237,69,1.0],[114,237,70,1.0],[114,237,71,1.0],[114,237,72,1.0],[114,237,73,1.0],[114,237,74,1.0],[114,237,75,1.0],[114,237,76,1.0],[114,237,77,1.0],[114,237,78,1.0],[114,237,79,1.0],[114,238,64,1.0],[114,238,65,1.0],[114,238,66,1.0],[114,238,67,1.0],[114,238,68,1.0],[114,238,69,1.0],[114,238,70,1.0],[114,238,71,1.0],[114,238,72,1.0],[114,238,73,1.0],[114,238,74,1.0],[114,238,75,1.0],[114,238,76,1.0],[114,238,77,1.0],[114,238,78,1.0],[114,238,79,1.0],[114,239,64,1.0],[114,239,65,1.0],[114,239,66,1.0],[114,239,67,1.0],[114,239,68,1.0],[114,239,69,1.0],[114,239,70,1.0],[114,239,71,1.0],[114,239,72,1.0],[114,239,73,1.0],[114,239,74,1.0],[114,239,75,1.0],[114,239,76,1.0],[114,239,77,1.0],[114,239,78,1.0],[114,239,79,1.0],[114,240,64,1.0],[114,240,65,1.0],[114,240,66,1.0],[114,240,67,1.0],[114,240,68,1.0],[114,240,69,1.0],[114,240,70,1.0],[114,240,71,1.0],[114,240,72,1.0],[114,240,73,1.0],[114,240,74,1.0],[114,240,75,1.0],[114,240,76,1.0],[114,240,77,1.0],[114,240,78,1.0],[114,240,79,1.0],[114,241,64,1.0],[114,241,65,1.0],[114,241,66,1.0],[114,241,67,1.0],[114,241,68,1.0],[114,241,69,1.0],[114,241,70,1.0],[114,241,71,1.0],[114,241,72,1.0],[114,241,73,1.0],[114,241,74,1.0],[114,241,75,1.0],[114,241,76,1.0],[114,241,77,1.0],[114,241,78,1.0],[114,241,79,1.0],[114,242,64,1.0],[114,242,65,1.0],[114,242,66,1.0],[114,242,67,1.0],[114,242,68,1.0],[114,242,69,1.0],[114,242,70,1.0],[114,242,71,1.0],[114,242,72,1.0],[114,242,73,1.0],[114,242,74,1.0],[114,242,75,1.0],[114,242,76,1.0],[114,242,77,1.0],[114,242,78,1.0],[114,242,79,1.0],[114,243,64,1.0],[114,243,65,1.0],[114,243,66,1.0],[114,243,67,1.0],[114,243,68,1.0],[114,243,69,1.0],[114,243,70,1.0],[114,243,71,1.0],[114,243,72,1.0],[114,243,73,1.0],[114,243,74,1.0],[114,243,75,1.0],[114,243,76,1.0],[114,243,77,1.0],[114,243,78,1.0],[114,243,79,1.0],[114,244,64,1.0],[114,244,65,1.0],[114,244,66,1.0],[114,244,67,1.0],[114,244,68,1.0],[114,244,69,1.0],[114,244,70,1.0],[114,244,71,1.0],[114,244,72,1.0],[114,244,73,1.0],[114,244,74,1.0],[114,244,75,1.0],[114,244,76,1.0],[114,244,77,1.0],[114,244,78,1.0],[114,244,79,1.0],[114,245,64,1.0],[114,245,65,1.0],[114,245,66,1.0],[114,245,67,1.0],[114,245,68,1.0],[114,245,69,1.0],[114,245,70,1.0],[114,245,71,1.0],[114,245,72,1.0],[114,245,73,1.0],[114,245,74,1.0],[114,245,75,1.0],[114,245,76,1.0],[114,245,77,1.0],[114,245,78,1.0],[114,245,79,1.0],[114,246,64,1.0],[114,246,65,1.0],[114,246,66,1.0],[114,246,67,1.0],[114,246,68,1.0],[114,246,69,1.0],[114,246,70,1.0],[114,246,71,1.0],[114,246,72,1.0],[114,246,73,1.0],[114,246,74,1.0],[114,246,75,1.0],[114,246,76,1.0],[114,246,77,1.0],[114,246,78,1.0],[114,246,79,1.0],[114,247,64,1.0],[114,247,65,1.0],[114,247,66,1.0],[114,247,67,1.0],[114,247,68,1.0],[114,247,69,1.0],[114,247,70,1.0],[114,247,71,1.0],[114,247,72,1.0],[114,247,73,1.0],[114,247,74,1.0],[114,247,75,1.0],[114,247,76,1.0],[114,247,77,1.0],[114,247,78,1.0],[114,247,79,1.0],[114,248,64,1.0],[114,248,65,1.0],[114,248,66,1.0],[114,248,67,1.0],[114,248,68,1.0],[114,248,69,1.0],[114,248,70,1.0],[114,248,71,1.0],[114,248,72,1.0],[114,248,73,1.0],[114,248,74,1.0],[114,248,75,1.0],[114,248,76,1.0],[114,248,77,1.0],[114,248,78,1.0],[114,248,79,1.0],[114,249,64,1.0],[114,249,65,1.0],[114,249,66,1.0],[114,249,67,1.0],[114,249,68,1.0],[114,249,69,1.0],[114,249,70,1.0],[114,249,71,1.0],[114,249,72,1.0],[114,249,73,1.0],[114,249,74,1.0],[114,249,75,1.0],[114,249,76,1.0],[114,249,77,1.0],[114,249,78,1.0],[114,249,79,1.0],[114,250,64,1.0],[114,250,65,1.0],[114,250,66,1.0],[114,250,67,1.0],[114,250,68,1.0],[114,250,69,1.0],[114,250,70,1.0],[114,250,71,1.0],[114,250,72,1.0],[114,250,73,1.0],[114,250,74,1.0],[114,250,75,1.0],[114,250,76,1.0],[114,250,77,1.0],[114,250,78,1.0],[114,250,79,1.0],[114,251,64,1.0],[114,251,65,1.0],[114,251,66,1.0],[114,251,67,1.0],[114,251,68,1.0],[114,251,69,1.0],[114,251,70,1.0],[114,251,71,1.0],[114,251,72,1.0],[114,251,73,1.0],[114,251,74,1.0],[114,251,75,1.0],[114,251,76,1.0],[114,251,77,1.0],[114,251,78,1.0],[114,251,79,1.0],[114,252,64,1.0],[114,252,65,1.0],[114,252,66,1.0],[114,252,67,1.0],[114,252,68,1.0],[114,252,69,1.0],[114,252,70,1.0],[114,252,71,1.0],[114,252,72,1.0],[114,252,73,1.0],[114,252,74,1.0],[114,252,75,1.0],[114,252,76,1.0],[114,252,77,1.0],[114,252,78,1.0],[114,252,79,1.0],[114,253,64,1.0],[114,253,65,1.0],[114,253,66,1.0],[114,253,67,1.0],[114,253,68,1.0],[114,253,69,1.0],[114,253,70,1.0],[114,253,71,1.0],[114,253,72,1.0],[114,253,73,1.0],[114,253,74,1.0],[114,253,75,1.0],[114,253,76,1.0],[114,253,77,1.0],[114,253,78,1.0],[114,253,79,1.0],[114,254,64,1.0],[114,254,65,1.0],[114,254,66,1.0],[114,254,67,1.0],[114,254,68,1.0],[114,254,69,1.0],[114,254,70,1.0],[114,254,71,1.0],[114,254,72,1.0],[114,254,73,1.0],[114,254,74,1.0],[114,254,75,1.0],[114,254,76,1.0],[114,254,77,1.0],[114,254,78,1.0],[114,254,79,1.0],[114,255,64,1.0],[114,255,65,1.0],[114,255,66,1.0],[114,255,67,1.0],[114,255,68,1.0],[114,255,69,1.0],[114,255,70,1.0],[114,255,71,1.0],[114,255,72,1.0],[114,255,73,1.0],[114,255,74,1.0],[114,255,75,1.0],[114,255,76,1.0],[114,255,77,1.0],[114,255,78,1.0],[114,255,79,1.0],[114,256,64,1.0],[114,256,65,1.0],[114,256,66,1.0],[114,256,67,1.0],[114,256,68,1.0],[114,256,69,1.0],[114,256,70,1.0],[114,256,71,1.0],[114,256,72,1.0],[114,256,73,1.0],[114,256,74,1.0],[114,256,75,1.0],[114,256,76,1.0],[114,256,77,1.0],[114,256,78,1.0],[114,256,79,1.0],[114,257,64,1.0],[114,257,65,1.0],[114,257,66,1.0],[114,257,67,1.0],[114,257,68,1.0],[114,257,69,1.0],[114,257,70,1.0],[114,257,71,1.0],[114,257,72,1.0],[114,257,73,1.0],[114,257,74,1.0],[114,257,75,1.0],[114,257,76,1.0],[114,257,77,1.0],[114,257,78,1.0],[114,257,79,1.0],[114,258,64,1.0],[114,258,65,1.0],[114,258,66,1.0],[114,258,67,1.0],[114,258,68,1.0],[114,258,69,1.0],[114,258,70,1.0],[114,258,71,1.0],[114,258,72,1.0],[114,258,73,1.0],[114,258,74,1.0],[114,258,75,1.0],[114,258,76,1.0],[114,258,77,1.0],[114,258,78,1.0],[114,258,79,1.0],[114,259,64,1.0],[114,259,65,1.0],[114,259,66,1.0],[114,259,67,1.0],[114,259,68,1.0],[114,259,69,1.0],[114,259,70,1.0],[114,259,71,1.0],[114,259,72,1.0],[114,259,73,1.0],[114,259,74,1.0],[114,259,75,1.0],[114,259,76,1.0],[114,259,77,1.0],[114,259,78,1.0],[114,259,79,1.0],[114,260,64,1.0],[114,260,65,1.0],[114,260,66,1.0],[114,260,67,1.0],[114,260,68,1.0],[114,260,69,1.0],[114,260,70,1.0],[114,260,71,1.0],[114,260,72,1.0],[114,260,73,1.0],[114,260,74,1.0],[114,260,75,1.0],[114,260,76,1.0],[114,260,77,1.0],[114,260,78,1.0],[114,260,79,1.0],[114,261,64,1.0],[114,261,65,1.0],[114,261,66,1.0],[114,261,67,1.0],[114,261,68,1.0],[114,261,69,1.0],[114,261,70,1.0],[114,261,71,1.0],[114,261,72,1.0],[114,261,73,1.0],[114,261,74,1.0],[114,261,75,1.0],[114,261,76,1.0],[114,261,77,1.0],[114,261,78,1.0],[114,261,79,1.0],[114,262,64,1.0],[114,262,65,1.0],[114,262,66,1.0],[114,262,67,1.0],[114,262,68,1.0],[114,262,69,1.0],[114,262,70,1.0],[114,262,71,1.0],[114,262,72,1.0],[114,262,73,1.0],[114,262,74,1.0],[114,262,75,1.0],[114,262,76,1.0],[114,262,77,1.0],[114,262,78,1.0],[114,262,79,1.0],[114,263,64,1.0],[114,263,65,1.0],[114,263,66,1.0],[114,263,67,1.0],[114,263,68,1.0],[114,263,69,1.0],[114,263,70,1.0],[114,263,71,1.0],[114,263,72,1.0],[114,263,73,1.0],[114,263,74,1.0],[114,263,75,1.0],[114,263,76,1.0],[114,263,77,1.0],[114,263,78,1.0],[114,263,79,1.0],[114,264,64,1.0],[114,264,65,1.0],[114,264,66,1.0],[114,264,67,1.0],[114,264,68,1.0],[114,264,69,1.0],[114,264,70,1.0],[114,264,71,1.0],[114,264,72,1.0],[114,264,73,1.0],[114,264,74,1.0],[114,264,75,1.0],[114,264,76,1.0],[114,264,77,1.0],[114,264,78,1.0],[114,264,79,1.0],[114,265,64,1.0],[114,265,65,1.0],[114,265,66,1.0],[114,265,67,1.0],[114,265,68,1.0],[114,265,69,1.0],[114,265,70,1.0],[114,265,71,1.0],[114,265,72,1.0],[114,265,73,1.0],[114,265,74,1.0],[114,265,75,1.0],[114,265,76,1.0],[114,265,77,1.0],[114,265,78,1.0],[114,265,79,1.0],[114,266,64,1.0],[114,266,65,1.0],[114,266,66,1.0],[114,266,67,1.0],[114,266,68,1.0],[114,266,69,1.0],[114,266,70,1.0],[114,266,71,1.0],[114,266,72,1.0],[114,266,73,1.0],[114,266,74,1.0],[114,266,75,1.0],[114,266,76,1.0],[114,266,77,1.0],[114,266,78,1.0],[114,266,79,1.0],[114,267,64,1.0],[114,267,65,1.0],[114,267,66,1.0],[114,267,67,1.0],[114,267,68,1.0],[114,267,69,1.0],[114,267,70,1.0],[114,267,71,1.0],[114,267,72,1.0],[114,267,73,1.0],[114,267,74,1.0],[114,267,75,1.0],[114,267,76,1.0],[114,267,77,1.0],[114,267,78,1.0],[114,267,79,1.0],[114,268,64,1.0],[114,268,65,1.0],[114,268,66,1.0],[114,268,67,1.0],[114,268,68,1.0],[114,268,69,1.0],[114,268,70,1.0],[114,268,71,1.0],[114,268,72,1.0],[114,268,73,1.0],[114,268,74,1.0],[114,268,75,1.0],[114,268,76,1.0],[114,268,77,1.0],[114,268,78,1.0],[114,268,79,1.0],[114,269,64,1.0],[114,269,65,1.0],[114,269,66,1.0],[114,269,67,1.0],[114,269,68,1.0],[114,269,69,1.0],[114,269,70,1.0],[114,269,71,1.0],[114,269,72,1.0],[114,269,73,1.0],[114,269,74,1.0],[114,269,75,1.0],[114,269,76,1.0],[114,269,77,1.0],[114,269,78,1.0],[114,269,79,1.0],[114,270,64,1.0],[114,270,65,1.0],[114,270,66,1.0],[114,270,67,1.0],[114,270,68,1.0],[114,270,69,1.0],[114,270,70,1.0],[114,270,71,1.0],[114,270,72,1.0],[114,270,73,1.0],[114,270,74,1.0],[114,270,75,1.0],[114,270,76,1.0],[114,270,77,1.0],[114,270,78,1.0],[114,270,79,1.0],[114,271,64,1.0],[114,271,65,1.0],[114,271,66,1.0],[114,271,67,1.0],[114,271,68,1.0],[114,271,69,1.0],[114,271,70,1.0],[114,271,71,1.0],[114,271,72,1.0],[114,271,73,1.0],[114,271,74,1.0],[114,271,75,1.0],[114,271,76,1.0],[114,271,77,1.0],[114,271,78,1.0],[114,271,79,1.0],[114,272,64,1.0],[114,272,65,1.0],[114,272,66,1.0],[114,272,67,1.0],[114,272,68,1.0],[114,272,69,1.0],[114,272,70,1.0],[114,272,71,1.0],[114,272,72,1.0],[114,272,73,1.0],[114,272,74,1.0],[114,272,75,1.0],[114,272,76,1.0],[114,272,77,1.0],[114,272,78,1.0],[114,272,79,1.0],[114,273,64,1.0],[114,273,65,1.0],[114,273,66,1.0],[114,273,67,1.0],[114,273,68,1.0],[114,273,69,1.0],[114,273,70,1.0],[114,273,71,1.0],[114,273,72,1.0],[114,273,73,1.0],[114,273,74,1.0],[114,273,75,1.0],[114,273,76,1.0],[114,273,77,1.0],[114,273,78,1.0],[114,273,79,1.0],[114,274,64,1.0],[114,274,65,1.0],[114,274,66,1.0],[114,274,67,1.0],[114,274,68,1.0],[114,274,69,1.0],[114,274,70,1.0],[114,274,71,1.0],[114,274,72,1.0],[114,274,73,1.0],[114,274,74,1.0],[114,274,75,1.0],[114,274,76,1.0],[114,274,77,1.0],[114,274,78,1.0],[114,274,79,1.0],[114,275,64,1.0],[114,275,65,1.0],[114,275,66,1.0],[114,275,67,1.0],[114,275,68,1.0],[114,275,69,1.0],[114,275,70,1.0],[114,275,71,1.0],[114,275,72,1.0],[114,275,73,1.0],[114,275,74,1.0],[114,275,75,1.0],[114,275,76,1.0],[114,275,77,1.0],[114,275,78,1.0],[114,275,79,1.0],[114,276,64,1.0],[114,276,65,1.0],[114,276,66,1.0],[114,276,67,1.0],[114,276,68,1.0],[114,276,69,1.0],[114,276,70,1.0],[114,276,71,1.0],[114,276,72,1.0],[114,276,73,1.0],[114,276,74,1.0],[114,276,75,1.0],[114,276,76,1.0],[114,276,77,1.0],[114,276,78,1.0],[114,276,79,1.0],[114,277,64,1.0],[114,277,65,1.0],[114,277,66,1.0],[114,277,67,1.0],[114,277,68,1.0],[114,277,69,1.0],[114,277,70,1.0],[114,277,71,1.0],[114,277,72,1.0],[114,277,73,1.0],[114,277,74,1.0],[114,277,75,1.0],[114,277,76,1.0],[114,277,77,1.0],[114,277,78,1.0],[114,277,79,1.0],[114,278,64,1.0],[114,278,65,1.0],[114,278,66,1.0],[114,278,67,1.0],[114,278,68,1.0],[114,278,69,1.0],[114,278,70,1.0],[114,278,71,1.0],[114,278,72,1.0],[114,278,73,1.0],[114,278,74,1.0],[114,278,75,1.0],[114,278,76,1.0],[114,278,77,1.0],[114,278,78,1.0],[114,278,79,1.0],[114,279,64,1.0],[114,279,65,1.0],[114,279,66,1.0],[114,279,67,1.0],[114,279,68,1.0],[114,279,69,1.0],[114,279,70,1.0],[114,279,71,1.0],[114,279,72,1.0],[114,279,73,1.0],[114,279,74,1.0],[114,279,75,1.0],[114,279,76,1.0],[114,279,77,1.0],[114,279,78,1.0],[114,279,79,1.0],[114,280,64,1.0],[114,280,65,1.0],[114,280,66,1.0],[114,280,67,1.0],[114,280,68,1.0],[114,280,69,1.0],[114,280,70,1.0],[114,280,71,1.0],[114,280,72,1.0],[114,280,73,1.0],[114,280,74,1.0],[114,280,75,1.0],[114,280,76,1.0],[114,280,77,1.0],[114,280,78,1.0],[114,280,79,1.0],[114,281,64,1.0],[114,281,65,1.0],[114,281,66,1.0],[114,281,67,1.0],[114,281,68,1.0],[114,281,69,1.0],[114,281,70,1.0],[114,281,71,1.0],[114,281,72,1.0],[114,281,73,1.0],[114,281,74,1.0],[114,281,75,1.0],[114,281,76,1.0],[114,281,77,1.0],[114,281,78,1.0],[114,281,79,1.0],[114,282,64,1.0],[114,282,65,1.0],[114,282,66,1.0],[114,282,67,1.0],[114,282,68,1.0],[114,282,69,1.0],[114,282,70,1.0],[114,282,71,1.0],[114,282,72,1.0],[114,282,73,1.0],[114,282,74,1.0],[114,282,75,1.0],[114,282,76,1.0],[114,282,77,1.0],[114,282,78,1.0],[114,282,79,1.0],[114,283,64,1.0],[114,283,65,1.0],[114,283,66,1.0],[114,283,67,1.0],[114,283,68,1.0],[114,283,69,1.0],[114,283,70,1.0],[114,283,71,1.0],[114,283,72,1.0],[114,283,73,1.0],[114,283,74,1.0],[114,283,75,1.0],[114,283,76,1.0],[114,283,77,1.0],[114,283,78,1.0],[114,283,79,1.0],[114,284,64,1.0],[114,284,65,1.0],[114,284,66,1.0],[114,284,67,1.0],[114,284,68,1.0],[114,284,69,1.0],[114,284,70,1.0],[114,284,71,1.0],[114,284,72,1.0],[114,284,73,1.0],[114,284,74,1.0],[114,284,75,1.0],[114,284,76,1.0],[114,284,77,1.0],[114,284,78,1.0],[114,284,79,1.0],[114,285,64,1.0],[114,285,65,1.0],[114,285,66,1.0],[114,285,67,1.0],[114,285,68,1.0],[114,285,69,1.0],[114,285,70,1.0],[114,285,71,1.0],[114,285,72,1.0],[114,285,73,1.0],[114,285,74,1.0],[114,285,75,1.0],[114,285,76,1.0],[114,285,77,1.0],[114,285,78,1.0],[114,285,79,1.0],[114,286,64,1.0],[114,286,65,1.0],[114,286,66,1.0],[114,286,67,1.0],[114,286,68,1.0],[114,286,69,1.0],[114,286,70,1.0],[114,286,71,1.0],[114,286,72,1.0],[114,286,73,1.0],[114,286,74,1.0],[114,286,75,1.0],[114,286,76,1.0],[114,286,77,1.0],[114,286,78,1.0],[114,286,79,1.0],[114,287,64,1.0],[114,287,65,1.0],[114,287,66,1.0],[114,287,67,1.0],[114,287,68,1.0],[114,287,69,1.0],[114,287,70,1.0],[114,287,71,1.0],[114,287,72,1.0],[114,287,73,1.0],[114,287,74,1.0],[114,287,75,1.0],[114,287,76,1.0],[114,287,77,1.0],[114,287,78,1.0],[114,287,79,1.0],[114,288,64,1.0],[114,288,65,1.0],[114,288,66,1.0],[114,288,67,1.0],[114,288,68,1.0],[114,288,69,1.0],[114,288,70,1.0],[114,288,71,1.0],[114,288,72,1.0],[114,288,73,1.0],[114,288,74,1.0],[114,288,75,1.0],[114,288,76,1.0],[114,288,77,1.0],[114,288,78,1.0],[114,288,79,1.0],[114,289,64,1.0],[114,289,65,1.0],[114,289,66,1.0],[114,289,67,1.0],[114,289,68,1.0],[114,289,69,1.0],[114,289,70,1.0],[114,289,71,1.0],[114,289,72,1.0],[114,289,73,1.0],[114,289,74,1.0],[114,289,75,1.0],[114,289,76,1.0],[114,289,77,1.0],[114,289,78,1.0],[114,289,79,1.0],[114,290,64,1.0],[114,290,65,1.0],[114,290,66,1.0],[114,290,67,1.0],[114,290,68,1.0],[114,290,69,1.0],[114,290,70,1.0],[114,290,71,1.0],[114,290,72,1.0],[114,290,73,1.0],[114,290,74,1.0],[114,290,75,1.0],[114,290,76,1.0],[114,290,77,1.0],[114,290,78,1.0],[114,290,79,1.0],[114,291,64,1.0],[114,291,65,1.0],[114,291,66,1.0],[114,291,67,1.0],[114,291,68,1.0],[114,291,69,1.0],[114,291,70,1.0],[114,291,71,1.0],[114,291,72,1.0],[114,291,73,1.0],[114,291,74,1.0],[114,291,75,1.0],[114,291,76,1.0],[114,291,77,1.0],[114,291,78,1.0],[114,291,79,1.0],[114,292,64,1.0],[114,292,65,1.0],[114,292,66,1.0],[114,292,67,1.0],[114,292,68,1.0],[114,292,69,1.0],[114,292,70,1.0],[114,292,71,1.0],[114,292,72,1.0],[114,292,73,1.0],[114,292,74,1.0],[114,292,75,1.0],[114,292,76,1.0],[114,292,77,1.0],[114,292,78,1.0],[114,292,79,1.0],[114,293,64,1.0],[114,293,65,1.0],[114,293,66,1.0],[114,293,67,1.0],[114,293,68,1.0],[114,293,69,1.0],[114,293,70,1.0],[114,293,71,1.0],[114,293,72,1.0],[114,293,73,1.0],[114,293,74,1.0],[114,293,75,1.0],[114,293,76,1.0],[114,293,77,1.0],[114,293,78,1.0],[114,293,79,1.0],[114,294,64,1.0],[114,294,65,1.0],[114,294,66,1.0],[114,294,67,1.0],[114,294,68,1.0],[114,294,69,1.0],[114,294,70,1.0],[114,294,71,1.0],[114,294,72,1.0],[114,294,73,1.0],[114,294,74,1.0],[114,294,75,1.0],[114,294,76,1.0],[114,294,77,1.0],[114,294,78,1.0],[114,294,79,1.0],[114,295,64,1.0],[114,295,65,1.0],[114,295,66,1.0],[114,295,67,1.0],[114,295,68,1.0],[114,295,69,1.0],[114,295,70,1.0],[114,295,71,1.0],[114,295,72,1.0],[114,295,73,1.0],[114,295,74,1.0],[114,295,75,1.0],[114,295,76,1.0],[114,295,77,1.0],[114,295,78,1.0],[114,295,79,1.0],[114,296,64,1.0],[114,296,65,1.0],[114,296,66,1.0],[114,296,67,1.0],[114,296,68,1.0],[114,296,69,1.0],[114,296,70,1.0],[114,296,71,1.0],[114,296,72,1.0],[114,296,73,1.0],[114,296,74,1.0],[114,296,75,1.0],[114,296,76,1.0],[114,296,77,1.0],[114,296,78,1.0],[114,296,79,1.0],[114,297,64,1.0],[114,297,65,1.0],[114,297,66,1.0],[114,297,67,1.0],[114,297,68,1.0],[114,297,69,1.0],[114,297,70,1.0],[114,297,71,1.0],[114,297,72,1.0],[114,297,73,1.0],[114,297,74,1.0],[114,297,75,1.0],[114,297,76,1.0],[114,297,77,1.0],[114,297,78,1.0],[114,297,79,1.0],[114,298,64,1.0],[114,298,65,1.0],[114,298,66,1.0],[114,298,67,1.0],[114,298,68,1.0],[114,298,69,1.0],[114,298,70,1.0],[114,298,71,1.0],[114,298,72,1.0],[114,298,73,1.0],[114,298,74,1.0],[114,298,75,1.0],[114,298,76,1.0],[114,298,77,1.0],[114,298,78,1.0],[114,298,79,1.0],[114,299,64,1.0],[114,299,65,1.0],[114,299,66,1.0],[114,299,67,1.0],[114,299,68,1.0],[114,299,69,1.0],[114,299,70,1.0],[114,299,71,1.0],[114,299,72,1.0],[114,299,73,1.0],[114,299,74,1.0],[114,299,75,1.0],[114,299,76,1.0],[114,299,77,1.0],[114,299,78,1.0],[114,299,79,1.0],[114,300,64,1.0],[114,300,65,1.0],[114,300,66,1.0],[114,300,67,1.0],[114,300,68,1.0],[114,300,69,1.0],[114,300,70,1.0],[114,300,71,1.0],[114,300,72,1.0],[114,300,73,1.0],[114,300,74,1.0],[114,300,75,1.0],[114,300,76,1.0],[114,300,77,1.0],[114,300,78,1.0],[114,300,79,1.0],[114,301,64,1.0],[114,301,65,1.0],[114,301,66,1.0],[114,301,67,1.0],[114,301,68,1.0],[114,301,69,1.0],[114,301,70,1.0],[114,301,71,1.0],[114,301,72,1.0],[114,301,73,1.0],[114,301,74,1.0],[114,301,75,1.0],[114,301,76,1.0],[114,301,77,1.0],[114,301,78,1.0],[114,301,79,1.0],[114,302,64,1.0],[114,302,65,1.0],[114,302,66,1.0],[114,302,67,1.0],[114,302,68,1.0],[114,302,69,1.0],[114,302,70,1.0],[114,302,71,1.0],[114,302,72,1.0],[114,302,73,1.0],[114,302,74,1.0],[114,302,75,1.0],[114,302,76,1.0],[114,302,77,1.0],[114,302,78,1.0],[114,302,79,1.0],[114,303,64,1.0],[114,303,65,1.0],[114,303,66,1.0],[114,303,67,1.0],[114,303,68,1.0],[114,303,69,1.0],[114,303,70,1.0],[114,303,71,1.0],[114,303,72,1.0],[114,303,73,1.0],[114,303,74,1.0],[114,303,75,1.0],[114,303,76,1.0],[114,303,77,1.0],[114,303,78,1.0],[114,303,79,1.0],[114,304,64,1.0],[114,304,65,1.0],[114,304,66,1.0],[114,304,67,1.0],[114,304,68,1.0],[114,304,69,1.0],[114,304,70,1.0],[114,304,71,1.0],[114,304,72,1.0],[114,304,73,1.0],[114,304,74,1.0],[114,304,75,1.0],[114,304,76,1.0],[114,304,77,1.0],[114,304,78,1.0],[114,304,79,1.0],[114,305,64,1.0],[114,305,65,1.0],[114,305,66,1.0],[114,305,67,1.0],[114,305,68,1.0],[114,305,69,1.0],[114,305,70,1.0],[114,305,71,1.0],[114,305,72,1.0],[114,305,73,1.0],[114,305,74,1.0],[114,305,75,1.0],[114,305,76,1.0],[114,305,77,1.0],[114,305,78,1.0],[114,305,79,1.0],[114,306,64,1.0],[114,306,65,1.0],[114,306,66,1.0],[114,306,67,1.0],[114,306,68,1.0],[114,306,69,1.0],[114,306,70,1.0],[114,306,71,1.0],[114,306,72,1.0],[114,306,73,1.0],[114,306,74,1.0],[114,306,75,1.0],[114,306,76,1.0],[114,306,77,1.0],[114,306,78,1.0],[114,306,79,1.0],[114,307,64,1.0],[114,307,65,1.0],[114,307,66,1.0],[114,307,67,1.0],[114,307,68,1.0],[114,307,69,1.0],[114,307,70,1.0],[114,307,71,1.0],[114,307,72,1.0],[114,307,73,1.0],[114,307,74,1.0],[114,307,75,1.0],[114,307,76,1.0],[114,307,77,1.0],[114,307,78,1.0],[114,307,79,1.0],[114,308,64,1.0],[114,308,65,1.0],[114,308,66,1.0],[114,308,67,1.0],[114,308,68,1.0],[114,308,69,1.0],[114,308,70,1.0],[114,308,71,1.0],[114,308,72,1.0],[114,308,73,1.0],[114,308,74,1.0],[114,308,75,1.0],[114,308,76,1.0],[114,308,77,1.0],[114,308,78,1.0],[114,308,79,1.0],[114,309,64,1.0],[114,309,65,1.0],[114,309,66,1.0],[114,309,67,1.0],[114,309,68,1.0],[114,309,69,1.0],[114,309,70,1.0],[114,309,71,1.0],[114,309,72,1.0],[114,309,73,1.0],[114,309,74,1.0],[114,309,75,1.0],[114,309,76,1.0],[114,309,77,1.0],[114,309,78,1.0],[114,309,79,1.0],[114,310,64,1.0],[114,310,65,1.0],[114,310,66,1.0],[114,310,67,1.0],[114,310,68,1.0],[114,310,69,1.0],[114,310,70,1.0],[114,310,71,1.0],[114,310,72,1.0],[114,310,73,1.0],[114,310,74,1.0],[114,310,75,1.0],[114,310,76,1.0],[114,310,77,1.0],[114,310,78,1.0],[114,310,79,1.0],[114,311,64,1.0],[114,311,65,1.0],[114,311,66,1.0],[114,311,67,1.0],[114,311,68,1.0],[114,311,69,1.0],[114,311,70,1.0],[114,311,71,1.0],[114,311,72,1.0],[114,311,73,1.0],[114,311,74,1.0],[114,311,75,1.0],[114,311,76,1.0],[114,311,77,1.0],[114,311,78,1.0],[114,311,79,1.0],[114,312,64,1.0],[114,312,65,1.0],[114,312,66,1.0],[114,312,67,1.0],[114,312,68,1.0],[114,312,69,1.0],[114,312,70,1.0],[114,312,71,1.0],[114,312,72,1.0],[114,312,73,1.0],[114,312,74,1.0],[114,312,75,1.0],[114,312,76,1.0],[114,312,77,1.0],[114,312,78,1.0],[114,312,79,1.0],[114,313,64,1.0],[114,313,65,1.0],[114,313,66,1.0],[114,313,67,1.0],[114,313,68,1.0],[114,313,69,1.0],[114,313,70,1.0],[114,313,71,1.0],[114,313,72,1.0],[114,313,73,1.0],[114,313,74,1.0],[114,313,75,1.0],[114,313,76,1.0],[114,313,77,1.0],[114,313,78,1.0],[114,313,79,1.0],[114,314,64,1.0],[114,314,65,1.0],[114,314,66,1.0],[114,314,67,1.0],[114,314,68,1.0],[114,314,69,1.0],[114,314,70,1.0],[114,314,71,1.0],[114,314,72,1.0],[114,314,73,1.0],[114,314,74,1.0],[114,314,75,1.0],[114,314,76,1.0],[114,314,77,1.0],[114,314,78,1.0],[114,314,79,1.0],[114,315,64,1.0],[114,315,65,1.0],[114,315,66,1.0],[114,315,67,1.0],[114,315,68,1.0],[114,315,69,1.0],[114,315,70,1.0],[114,315,71,1.0],[114,315,72,1.0],[114,315,73,1.0],[114,315,74,1.0],[114,315,75,1.0],[114,315,76,1.0],[114,315,77,1.0],[114,315,78,1.0],[114,315,79,1.0],[114,316,64,1.0],[114,316,65,1.0],[114,316,66,1.0],[114,316,67,1.0],[114,316,68,1.0],[114,316,69,1.0],[114,316,70,1.0],[114,316,71,1.0],[114,316,72,1.0],[114,316,73,1.0],[114,316,74,1.0],[114,316,75,1.0],[114,316,76,1.0],[114,316,77,1.0],[114,316,78,1.0],[114,316,79,1.0],[114,317,64,1.0],[114,317,65,1.0],[114,317,66,1.0],[114,317,67,1.0],[114,317,68,1.0],[114,317,69,1.0],[114,317,70,1.0],[114,317,71,1.0],[114,317,72,1.0],[114,317,73,1.0],[114,317,74,1.0],[114,317,75,1.0],[114,317,76,1.0],[114,317,77,1.0],[114,317,78,1.0],[114,317,79,1.0],[114,318,64,1.0],[114,318,65,1.0],[114,318,66,1.0],[114,318,67,1.0],[114,318,68,1.0],[114,318,69,1.0],[114,318,70,1.0],[114,318,71,1.0],[114,318,72,1.0],[114,318,73,1.0],[114,318,74,1.0],[114,318,75,1.0],[114,318,76,1.0],[114,318,77,1.0],[114,318,78,1.0],[114,318,79,1.0],[114,319,64,1.0],[114,319,65,1.0],[114,319,66,1.0],[114,319,67,1.0],[114,319,68,1.0],[114,319,69,1.0],[114,319,70,1.0],[114,319,71,1.0],[114,319,72,1.0],[114,319,73,1.0],[114,319,74,1.0],[114,319,75,1.0],[114,319,76,1.0],[114,319,77,1.0],[114,319,78,1.0],[114,319,79,1.0],[115,-64,64,1.0],[115,-64,65,1.0],[115,-64,66,1.0],[115,-64,67,1.0],[115,-64,68,1.0],[115,-64,69,1.0],[115,-64,70,1.0],[115,-64,71,1.0],[115,-64,72,1.0],[115,-64,73,1.0],[115,-64,74,1.0],[115,-64,75,1.0],[115,-64,76,1.0],[115,-64,77,1.0],[115,-64,78,1.0],[115,-64,79,1.0],[115,-63,64,1.0],[115,-63,65,1.0],[115,-63,66,1.0],[115,-63,67,1.0],[115,-63,68,1.0],[115,-63,69,1.0],[115,-63,70,1.0],[115,-63,71,1.0],[115,-63,72,1.0],[115,-63,73,1.0],[115,-63,74,1.0],[115,-63,75,1.0],[115,-63,76,1.0],[115,-63,77,1.0],[115,-63,78,1.0],[115,-63,79,1.0],[115,-62,64,1.0],[115,-62,65,1.0],[115,-62,66,1.0],[115,-62,67,1.0],[115,-62,68,1.0],[115,-62,69,1.0],[115,-62,70,1.0],[115,-62,71,1.0],[115,-62,72,1.0],[115,-62,73,1.0],[115,-62,74,1.0],[115,-62,75,1.0],[115,-62,76,1.0],[115,-62,77,1.0],[115,-62,78,1.0],[115,-62,79,1.0],[115,-61,64,1.0],[115,-61,65,1.0],[115,-61,66,1.0],[115,-61,67,1.0],[115,-61,68,1.0],[115,-61,69,1.0],[115,-61,70,1.0],[115,-61,71,1.0],[115,-61,72,1.0],[115,-61,73,1.0],[115,-61,74,1.0],[115,-61,75,1.0],[115,-61,76,1.0],[115,-61,77,1.0],[115,-61,78,1.0],[115,-61,79,1.0],[115,-60,64,1.0],[115,-60,65,1.0],[115,-60,66,1.0],[115,-60,67,1.0],[115,-60,68,1.0],[115,-60,69,1.0],[115,-60,70,1.0],[115,-60,71,1.0],[115,-60,72,1.0],[115,-60,73,1.0],[115,-60,74,1.0],[115,-60,75,1.0],[115,-60,76,1.0],[115,-60,77,1.0],[115,-60,78,1.0],[115,-60,79,1.0],[115,-59,64,1.0],[115,-59,65,1.0],[115,-59,66,1.0],[115,-59,67,1.0],[115,-59,68,1.0],[115,-59,69,1.0],[115,-59,70,1.0],[115,-59,71,1.0],[115,-59,72,1.0],[115,-59,73,1.0],[115,-59,74,1.0],[115,-59,75,1.0],[115,-59,76,1.0],[115,-59,77,1.0],[115,-59,78,1.0],[115,-59,79,1.0],[115,-58,64,1.0],[115,-58,65,1.0],[115,-58,66,1.0],[115,-58,67,1.0],[115,-58,68,1.0],[115,-58,69,1.0],[115,-58,70,1.0],[115,-58,71,1.0],[115,-58,72,1.0],[115,-58,73,1.0],[115,-58,74,1.0],[115,-58,75,1.0],[115,-58,76,1.0],[115,-58,77,1.0],[115,-58,78,1.0],[115,-58,79,1.0],[115,-57,64,1.0],[115,-57,65,1.0],[115,-57,66,1.0],[115,-57,67,1.0],[115,-57,68,1.0],[115,-57,69,1.0],[115,-57,70,1.0],[115,-57,71,1.0],[115,-57,72,1.0],[115,-57,73,1.0],[115,-57,74,1.0],[115,-57,75,1.0],[115,-57,76,1.0],[115,-57,77,1.0],[115,-57,78,1.0],[115,-57,79,1.0],[115,-56,64,1.0],[115,-56,65,1.0],[115,-56,66,1.0],[115,-56,67,1.0],[115,-56,68,1.0],[115,-56,69,1.0],[115,-56,70,1.0],[115,-56,71,1.0],[115,-56,72,1.0],[115,-56,73,1.0],[115,-56,74,1.0],[115,-56,75,1.0],[115,-56,76,1.0],[115,-56,77,1.0],[115,-56,78,1.0],[115,-56,79,1.0],[115,-55,64,1.0],[115,-55,65,1.0],[115,-55,66,1.0],[115,-55,67,1.0],[115,-55,68,1.0],[115,-55,69,1.0],[115,-55,70,1.0],[115,-55,71,1.0],[115,-55,72,1.0],[115,-55,73,1.0],[115,-55,74,1.0],[115,-55,75,1.0],[115,-55,76,1.0],[115,-55,77,1.0],[115,-55,78,1.0],[115,-55,79,1.0],[115,-54,64,1.0],[115,-54,65,1.0],[115,-54,66,1.0],[115,-54,67,1.0],[115,-54,68,1.0],[115,-54,69,1.0],[115,-54,70,1.0],[115,-54,71,1.0],[115,-54,72,1.0],[115,-54,73,1.0],[115,-54,74,1.0],[115,-54,75,1.0],[115,-54,76,1.0],[115,-54,77,1.0],[115,-54,78,1.0],[115,-54,79,1.0],[115,-53,64,1.0],[115,-53,65,1.0],[115,-53,66,1.0],[115,-53,67,1.0],[115,-53,68,1.0],[115,-53,69,1.0],[115,-53,70,1.0],[115,-53,71,1.0],[115,-53,72,1.0],[115,-53,73,1.0],[115,-53,74,1.0],[115,-53,75,1.0],[115,-53,76,1.0],[115,-53,77,1.0],[115,-53,78,1.0],[115,-53,79,1.0],[115,-52,64,1.0],[115,-52,65,1.0],[115,-52,66,1.0],[115,-52,67,1.0],[115,-52,68,1.0],[115,-52,69,1.0],[115,-52,70,1.0],[115,-52,71,1.0],[115,-52,72,1.0],[115,-52,73,1.0],[115,-52,74,1.0],[115,-52,75,1.0],[115,-52,76,1.0],[115,-52,77,1.0],[115,-52,78,1.0],[115,-52,79,1.0],[115,-51,64,1.0],[115,-51,65,1.0],[115,-51,66,1.0],[115,-51,67,1.0],[115,-51,68,1.0],[115,-51,69,1.0],[115,-51,70,1.0],[115,-51,71,1.0],[115,-51,72,1.0],[115,-51,73,1.0],[115,-51,74,1.0],[115,-51,75,1.0],[115,-51,76,1.0],[115,-51,77,1.0],[115,-51,78,1.0],[115,-51,79,1.0],[115,-50,64,1.0],[115,-50,65,1.0],[115,-50,66,1.0],[115,-50,67,1.0],[115,-50,68,1.0],[115,-50,69,1.0],[115,-50,70,1.0],[115,-50,71,1.0],[115,-50,72,1.0],[115,-50,73,1.0],[115,-50,74,1.0],[115,-50,75,1.0],[115,-50,76,1.0],[115,-50,77,1.0],[115,-50,78,1.0],[115,-50,79,1.0],[115,-49,64,1.0],[115,-49,65,1.0],[115,-49,66,1.0],[115,-49,67,1.0],[115,-49,68,1.0],[115,-49,69,1.0],[115,-49,70,1.0],[115,-49,71,1.0],[115,-49,72,1.0],[115,-49,73,1.0],[115,-49,74,1.0],[115,-49,75,1.0],[115,-49,76,1.0],[115,-49,77,1.0],[115,-49,78,1.0],[115,-49,79,1.0],[115,-48,64,1.0],[115,-48,65,1.0],[115,-48,66,1.0],[115,-48,67,1.0],[115,-48,68,1.0],[115,-48,69,1.0],[115,-48,70,1.0],[115,-48,71,1.0],[115,-48,72,1.0],[115,-48,73,1.0],[115,-48,74,1.0],[115,-48,75,1.0],[115,-48,76,1.0],[115,-48,77,1.0],[115,-48,78,1.0],[115,-48,79,1.0],[115,-47,64,1.0],[115,-47,65,1.0],[115,-47,66,1.0],[115,-47,67,1.0],[115,-47,68,1.0],[115,-47,69,1.0],[115,-47,70,1.0],[115,-47,71,1.0],[115,-47,72,1.0],[115,-47,73,1.0],[115,-47,74,1.0],[115,-47,75,1.0],[115,-47,76,1.0],[115,-47,77,1.0],[115,-47,78,1.0],[115,-47,79,1.0],[115,-46,64,1.0],[115,-46,65,1.0],[115,-46,66,1.0],[115,-46,67,1.0],[115,-46,68,1.0],[115,-46,69,1.0],[115,-46,70,1.0],[115,-46,71,1.0],[115,-46,72,1.0],[115,-46,73,1.0],[115,-46,74,1.0],[115,-46,75,1.0],[115,-46,76,1.0],[115,-46,77,1.0],[115,-46,78,1.0],[115,-46,79,1.0],[115,-45,64,1.0],[115,-45,65,1.0],[115,-45,66,1.0],[115,-45,67,1.0],[115,-45,68,1.0],[115,-45,69,1.0],[115,-45,70,1.0],[115,-45,71,1.0],[115,-45,72,1.0],[115,-45,73,1.0],[115,-45,74,1.0],[115,-45,75,1.0],[115,-45,76,1.0],[115,-45,77,1.0],[115,-45,78,1.0],[115,-45,79,1.0],[115,-44,64,1.0],[115,-44,65,1.0],[115,-44,66,1.0],[115,-44,67,1.0],[115,-44,68,1.0],[115,-44,69,1.0],[115,-44,70,1.0],[115,-44,71,1.0],[115,-44,72,1.0],[115,-44,73,1.0],[115,-44,74,1.0],[115,-44,75,1.0],[115,-44,76,1.0],[115,-44,77,1.0],[115,-44,78,1.0],[115,-44,79,1.0],[115,-43,64,1.0],[115,-43,65,1.0],[115,-43,66,1.0],[115,-43,67,1.0],[115,-43,68,1.0],[115,-43,69,1.0],[115,-43,70,1.0],[115,-43,71,1.0],[115,-43,72,1.0],[115,-43,73,1.0],[115,-43,74,1.0],[115,-43,75,1.0],[115,-43,76,1.0],[115,-43,77,1.0],[115,-43,78,1.0],[115,-43,79,1.0],[115,-42,64,1.0],[115,-42,65,1.0],[115,-42,66,1.0],[115,-42,67,1.0],[115,-42,68,1.0],[115,-42,69,1.0],[115,-42,70,1.0],[115,-42,71,1.0],[115,-42,72,1.0],[115,-42,73,1.0],[115,-42,74,1.0],[115,-42,75,1.0],[115,-42,76,1.0],[115,-42,77,1.0],[115,-42,78,1.0],[115,-42,79,1.0],[115,-41,64,1.0],[115,-41,65,1.0],[115,-41,66,1.0],[115,-41,67,1.0],[115,-41,68,1.0],[115,-41,69,1.0],[115,-41,70,1.0],[115,-41,71,1.0],[115,-41,72,1.0],[115,-41,73,1.0],[115,-41,74,1.0],[115,-41,75,1.0],[115,-41,76,1.0],[115,-41,77,1.0],[115,-41,78,1.0],[115,-41,79,1.0],[115,-40,64,1.0],[115,-40,65,1.0],[115,-40,66,1.0],[115,-40,67,1.0],[115,-40,68,1.0],[115,-40,69,1.0],[115,-40,70,1.0],[115,-40,71,1.0],[115,-40,72,1.0],[115,-40,73,1.0],[115,-40,74,1.0],[115,-40,75,1.0],[115,-40,76,1.0],[115,-40,77,1.0],[115,-40,78,1.0],[115,-40,79,1.0],[115,-39,64,1.0],[115,-39,65,1.0],[115,-39,66,1.0],[115,-39,67,1.0],[115,-39,68,1.0],[115,-39,69,1.0],[115,-39,70,1.0],[115,-39,71,1.0],[115,-39,72,1.0],[115,-39,73,1.0],[115,-39,74,1.0],[115,-39,75,1.0],[115,-39,76,1.0],[115,-39,77,1.0],[115,-39,78,1.0],[115,-39,79,1.0],[115,-38,64,1.0],[115,-38,65,1.0],[115,-38,66,1.0],[115,-38,67,1.0],[115,-38,68,1.0],[115,-38,69,1.0],[115,-38,70,1.0],[115,-38,71,1.0],[115,-38,72,1.0],[115,-38,73,1.0],[115,-38,74,1.0],[115,-38,75,1.0],[115,-38,76,1.0],[115,-38,77,1.0],[115,-38,78,1.0],[115,-38,79,1.0],[115,-37,64,1.0],[115,-37,65,1.0],[115,-37,66,1.0],[115,-37,67,1.0],[115,-37,68,1.0],[115,-37,69,1.0],[115,-37,70,1.0],[115,-37,71,1.0],[115,-37,72,1.0],[115,-37,73,1.0],[115,-37,74,1.0],[115,-37,75,1.0],[115,-37,76,1.0],[115,-37,77,1.0],[115,-37,78,1.0],[115,-37,79,1.0],[115,-36,64,1.0],[115,-36,65,1.0],[115,-36,66,1.0],[115,-36,67,1.0],[115,-36,68,1.0],[115,-36,69,1.0],[115,-36,70,1.0],[115,-36,71,1.0],[115,-36,72,1.0],[115,-36,73,1.0],[115,-36,74,1.0],[115,-36,75,1.0],[115,-36,76,1.0],[115,-36,77,1.0],[115,-36,78,1.0],[115,-36,79,1.0],[115,-35,64,1.0],[115,-35,65,1.0],[115,-35,66,1.0],[115,-35,67,1.0],[115,-35,68,1.0],[115,-35,69,1.0],[115,-35,70,1.0],[115,-35,71,1.0],[115,-35,72,1.0],[115,-35,73,1.0],[115,-35,74,1.0],[115,-35,75,1.0],[115,-35,76,1.0],[115,-35,77,1.0],[115,-35,78,1.0],[115,-35,79,1.0],[115,-34,64,1.0],[115,-34,65,1.0],[115,-34,66,1.0],[115,-34,67,1.0],[115,-34,68,1.0],[115,-34,69,1.0],[115,-34,70,1.0],[115,-34,71,1.0],[115,-34,72,1.0],[115,-34,73,1.0],[115,-34,74,1.0],[115,-34,75,1.0],[115,-34,76,1.0],[115,-34,77,1.0],[115,-34,78,1.0],[115,-34,79,1.0],[115,-33,64,1.0],[115,-33,65,1.0],[115,-33,66,1.0],[115,-33,67,1.0],[115,-33,68,1.0],[115,-33,69,1.0],[115,-33,70,1.0],[115,-33,71,1.0],[115,-33,72,1.0],[115,-33,73,1.0],[115,-33,74,1.0],[115,-33,75,1.0],[115,-33,76,1.0],[115,-33,77,1.0],[115,-33,78,1.0],[115,-33,79,1.0],[115,-32,64,1.0],[115,-32,65,1.0],[115,-32,66,1.0],[115,-32,67,1.0],[115,-32,68,1.0],[115,-32,69,1.0],[115,-32,70,1.0],[115,-32,71,1.0],[115,-32,72,1.0],[115,-32,73,1.0],[115,-32,74,1.0],[115,-32,75,1.0],[115,-32,76,1.0],[115,-32,77,1.0],[115,-32,78,1.0],[115,-32,79,1.0],[115,-31,64,1.0],[115,-31,65,1.0],[115,-31,66,1.0],[115,-31,67,1.0],[115,-31,68,1.0],[115,-31,69,1.0],[115,-31,70,1.0],[115,-31,71,1.0],[115,-31,72,1.0],[115,-31,73,1.0],[115,-31,74,1.0],[115,-31,75,1.0],[115,-31,76,1.0],[115,-31,77,1.0],[115,-31,78,1.0],[115,-31,79,1.0],[115,-30,64,1.0],[115,-30,65,1.0],[115,-30,66,1.0],[115,-30,67,1.0],[115,-30,68,1.0],[115,-30,69,1.0],[115,-30,70,1.0],[115,-30,71,1.0],[115,-30,72,1.0],[115,-30,73,1.0],[115,-30,74,1.0],[115,-30,75,1.0],[115,-30,76,1.0],[115,-30,77,1.0],[115,-30,78,1.0],[115,-30,79,1.0],[115,-29,64,1.0],[115,-29,65,1.0],[115,-29,66,1.0],[115,-29,67,1.0],[115,-29,68,1.0],[115,-29,69,1.0],[115,-29,70,1.0],[115,-29,71,1.0],[115,-29,72,1.0],[115,-29,73,1.0],[115,-29,74,1.0],[115,-29,75,1.0],[115,-29,76,1.0],[115,-29,77,1.0],[115,-29,78,1.0],[115,-29,79,1.0],[115,-28,64,1.0],[115,-28,65,1.0],[115,-28,66,1.0],[115,-28,67,1.0],[115,-28,68,1.0],[115,-28,69,1.0],[115,-28,70,1.0],[115,-28,71,1.0],[115,-28,72,1.0],[115,-28,73,1.0],[115,-28,74,1.0],[115,-28,75,1.0],[115,-28,76,1.0],[115,-28,77,1.0],[115,-28,78,1.0],[115,-28,79,1.0],[115,-27,64,1.0],[115,-27,65,1.0],[115,-27,66,1.0],[115,-27,67,1.0],[115,-27,68,1.0],[115,-27,69,1.0],[115,-27,70,1.0],[115,-27,71,1.0],[115,-27,72,1.0],[115,-27,73,1.0],[115,-27,74,1.0],[115,-27,75,1.0],[115,-27,76,1.0],[115,-27,77,1.0],[115,-27,78,1.0],[115,-27,79,1.0],[115,-26,64,1.0],[115,-26,65,1.0],[115,-26,66,1.0],[115,-26,67,1.0],[115,-26,68,1.0],[115,-26,69,1.0],[115,-26,70,1.0],[115,-26,71,1.0],[115,-26,72,1.0],[115,-26,73,1.0],[115,-26,74,1.0],[115,-26,75,1.0],[115,-26,76,1.0],[115,-26,77,1.0],[115,-26,78,1.0],[115,-26,79,1.0],[115,-25,64,1.0],[115,-25,65,1.0],[115,-25,66,1.0],[115,-25,67,1.0],[115,-25,68,1.0],[115,-25,69,1.0],[115,-25,70,1.0],[115,-25,71,1.0],[115,-25,72,1.0],[115,-25,73,1.0],[115,-25,74,1.0],[115,-25,75,1.0],[115,-25,76,1.0],[115,-25,77,1.0],[115,-25,78,1.0],[115,-25,79,1.0],[115,-24,64,1.0],[115,-24,65,1.0],[115,-24,66,1.0],[115,-24,67,1.0],[115,-24,68,1.0],[115,-24,69,1.0],[115,-24,70,1.0],[115,-24,71,1.0],[115,-24,72,1.0],[115,-24,73,1.0],[115,-24,74,1.0],[115,-24,75,1.0],[115,-24,76,1.0],[115,-24,77,1.0],[115,-24,78,1.0],[115,-24,79,1.0],[115,-23,64,1.0],[115,-23,65,1.0],[115,-23,66,1.0],[115,-23,67,1.0],[115,-23,68,1.0],[115,-23,69,1.0],[115,-23,70,1.0],[115,-23,71,1.0],[115,-23,72,1.0],[115,-23,73,1.0],[115,-23,74,1.0],[115,-23,75,1.0],[115,-23,76,1.0],[115,-23,77,1.0],[115,-23,78,1.0],[115,-23,79,1.0],[115,-22,64,1.0],[115,-22,65,1.0],[115,-22,66,1.0],[115,-22,67,1.0],[115,-22,68,1.0],[115,-22,69,1.0],[115,-22,70,1.0],[115,-22,71,1.0],[115,-22,72,1.0],[115,-22,73,1.0],[115,-22,74,1.0],[115,-22,75,1.0],[115,-22,76,1.0],[115,-22,77,1.0],[115,-22,78,1.0],[115,-22,79,1.0],[115,-21,64,1.0],[115,-21,65,1.0],[115,-21,66,1.0],[115,-21,67,1.0],[115,-21,68,1.0],[115,-21,69,1.0],[115,-21,70,1.0],[115,-21,71,1.0],[115,-21,72,1.0],[115,-21,73,1.0],[115,-21,74,1.0],[115,-21,75,1.0],[115,-21,76,1.0],[115,-21,77,1.0],[115,-21,78,1.0],[115,-21,79,1.0],[115,-20,64,1.0],[115,-20,65,1.0],[115,-20,66,1.0],[115,-20,67,1.0],[115,-20,68,1.0],[115,-20,69,1.0],[115,-20,70,1.0],[115,-20,71,1.0],[115,-20,72,1.0],[115,-20,73,1.0],[115,-20,74,1.0],[115,-20,75,1.0],[115,-20,76,1.0],[115,-20,77,1.0],[115,-20,78,1.0],[115,-20,79,1.0],[115,-19,64,1.0],[115,-19,65,1.0],[115,-19,66,1.0],[115,-19,67,1.0],[115,-19,68,1.0],[115,-19,69,1.0],[115,-19,70,1.0],[115,-19,71,1.0],[115,-19,72,1.0],[115,-19,73,1.0],[115,-19,74,1.0],[115,-19,75,1.0],[115,-19,76,1.0],[115,-19,77,1.0],[115,-19,78,1.0],[115,-19,79,1.0],[115,-18,64,1.0],[115,-18,65,1.0],[115,-18,66,1.0],[115,-18,67,1.0],[115,-18,68,1.0],[115,-18,69,1.0],[115,-18,70,1.0],[115,-18,71,1.0],[115,-18,72,1.0],[115,-18,73,1.0],[115,-18,74,1.0],[115,-18,75,1.0],[115,-18,76,1.0],[115,-18,77,1.0],[115,-18,78,1.0],[115,-18,79,1.0],[115,-17,64,1.0],[115,-17,65,1.0],[115,-17,66,1.0],[115,-17,67,1.0],[115,-17,68,1.0],[115,-17,69,1.0],[115,-17,70,1.0],[115,-17,71,1.0],[115,-17,72,1.0],[115,-17,73,1.0],[115,-17,74,1.0],[115,-17,75,1.0],[115,-17,76,1.0],[115,-17,77,1.0],[115,-17,78,1.0],[115,-17,79,1.0],[115,-16,64,1.0],[115,-16,65,1.0],[115,-16,66,1.0],[115,-16,67,1.0],[115,-16,68,1.0],[115,-16,69,1.0],[115,-16,70,1.0],[115,-16,71,1.0],[115,-16,72,1.0],[115,-16,73,1.0],[115,-16,74,1.0],[115,-16,75,1.0],[115,-16,76,1.0],[115,-16,77,1.0],[115,-16,78,1.0],[115,-16,79,1.0],[115,-15,64,0.8866286036811987],[115,-15,65,0.9912588634022699],[115,-15,66,1.0],[115,-15,67,1.0],[115,-15,68,1.0],[115,-15,69,1.0],[115,-15,70,1.0],[115,-15,71,1.0],[115,-15,72,1.0],[115,-15,73,1.0],[115,-15,74,1.0],[115,-15,75,1.0],[115,-15,76,1.0],[115,-15,77,1.0],[115,-15,78,1.0],[115,-15,79,1.0],[115,-14,64,0.583356091255734],[115,-14,65,0.6629513843381656],[115,-14,66,0.7472893093702718],[115,-14,67,0.8361369739914126],[115,-14,68,0.9292384791061582],[115,-14,69,1.0],[115,-14,70,1.0],[115,-14,71,1.0],[115,-14,72,1.0],[115,-14,73,1.0],[115,-14,74,1.0],[115,-14,75,1.0],[115,-14,76,1.0],[115,-14,77,1.0],[115,-14,78,1.0],[115,-14,79,1.0],[115,-13,64,0.35857201663320565],[115,-13,65,0.41655047161585185],[115,-13,66,0.4788385674983839],[115,-13,67,0.5452738644071699],[115,-13,68,0.6156683782603694],[115,-13,69,0.6898120032053223],[115,-13,70,0.7674759223190994],[115,-13,71,0.8484159893616623],[115,-13,72,0.9323760651161889],[115,-13,73,1.0],[115,-13,74,1.0],[115,-13,75,1.0],[115,-13,76,1.0],[115,-13,77,1.0],[115,-13,78,1.0],[115,-13,79,1.0],[115,-12,64,0.20052310236743112],[115,-12,65,0.24030297877387952],[115,-12,66,0.28387638568797213],[115,-12,67,0.33115137732333105],[115,-12,68,0.3820080265021895],[115,-12,69,0.4363017015997568],[115,-12,70,0.4938663382811195],[115,-12,71,0.5545176890828505],[115,-12,72,0.6180565346004737],[115,-12,73,0.6842718408632595],[115,-12,74,0.7529438483945701],[115,-12,75,0.823847079512637],[115,-12,76,0.8967532515793207],[115,-12,77,0.9714340851405319],[115,-12,78,1.0],[115,-12,79,1.0],[115,-11,64,0.09745597510240141],[115,-11,65,0.12245566306817039],[115,-11,66,0.15064965161464627],[115,-11,67,0.18201653063679538],[115,-11,68,0.21650457174570362],[115,-11,69,0.2540348622535028],[115,-11,70,0.29450444050274743],[115,-11,71,0.3377894158547131],[115,-11,72,0.3837480573245682],[115,-11,73,0.43222383563581585],[115,-11,74,0.48304840434895224],[115,-11,75,0.5360445067302768],[115,-11,76,0.5910287961341523],[115,-11,77,0.647814558863904],[115,-11,78,0.7062143297857952],[115,-11,79,0.7660423923605845],[115,-10,64,0.03761716545425298],[115,-10,65,0.05125518535034911],[115,-10,66,0.06740515617503706],[115,-10,67,0.0861162450925357],[115,-10,68,0.10740506438183035],[115,-10,69,0.13125866499576325],[115,-10,70,0.15763753803903288],[115,-10,71,0.18647860774143904],[115,-10,72,0.2176982001413483],[115,-10,73,0.251194972442932],[115,-10,74,0.28685278885838505],[115,-10,75,0.3245435297123551],[115,-10,76,0.36412982164783214],[115,-10,77,0.40546767791977795],[115,-10,78,0.44840903901654466],[115,-10,79,0.49280420518272733],[115,-9,64,0.02624573843125138],[115,-9,65,0.02958998663633306],[115,-9,66,0.03283786178970937],[115,-9,67,0.03598690814732999],[115,-9,68,0.042956457149983904],[115,-9,69,0.05622019163114701],[115,-9,70,0.07151284154902036],[115,-9,71,0.08883260404145424],[115,-9,72,0.10815443076980044],[115,-9,73,0.12943284720211107],[115,-9,74,0.15260472581419024],[115,-9,75,0.17759200009724713],[115,-9,76,0.204304307277562],[115,-9,77,0.23264154875512225],[115,-9,78,0.2624963584670743],[115,-9,79,0.29375647065901533],[115,-8,64,0.022056954742842624],[115,-8,65,0.02537339131336771],[115,-8,66,0.028597293373642724],[115,-8,67,0.03172627574227206],[115,-8,68,0.034757899097585726],[115,-8,69,0.03768968775245465],[115,-8,70,0.04051914687100423],[115,-8,71,0.04324377912703408],[115,-8,72,0.04586110080440476],[115,-8,73,0.05518495618857841],[115,-8,74,0.06855183909706491],[115,-8,75,0.0834376691459438],[115,-8,76,0.09980013143797024],[115,-8,77,0.11758417671069438],[115,-8,78,0.13672442017656214],[115,-8,79,0.1571474472998085],[115,-7,64,0.017838366306702415],[115,-7,65,0.02112498729702913],[115,-7,66,0.024322887307968298],[115,-7,67,0.027429753315649036],[115,-7,68,0.03044320691715125],[115,-7,69,0.03336082237865831],[115,-7,70,0.03618014412517788],[115,-7,71,0.03889870367163822],[115,-7,72,0.04151403599562228],[115,-7,73,0.04402369535142666],[115,-7,74,0.046425270525597036],[115,-7,75,0.04871639953408219],[115,-7,76,0.05089478376069769],[115,-7,77,0.05295820153716359],[115,-7,78,0.05934125456123859],[115,-7,79,0.07122529162864895],[115,-6,64,0.013597112233269572],[115,-6,65,0.01685192288868647],[115,-6,66,0.020021796529670247],[115,-6,67,0.02310449379743608],[115,-6,68,0.026097698976900167],[115,-6,69,0.028999038298837515],[115,-6,70,0.03180609768371171],[115,-6,71,0.03451643992698239],[115,-6,72,0.03712762132615525],[115,-6,73,0.0396372077492595],[115,-6,74,0.04204279014490265],[115,-6,75,0.04434199949405162],[115,-6,76,0.0465325212032231],[115,-6,77,0.04861210893935163],[115,-6,78,0.05057859790613333],[115,-6,79,0.05242991756211537],[115,-5,64,0.00934035812201195],[115,-5,65,0.012561376286097818],[115,-5,66,0.01570120733891473],[115,-5,67,0.01875768700462075],[115,-5,68,0.02172856394842286],[115,-5,69,0.024611518313109454],[115,-5,70,0.02740417969779243],[115,-5,71,0.03010414457866257],[115,-5,72,0.032708993172023734],[115,-5,73,0.03521630573929242],[115,-5,74,0.03762367833410983],[115,-5,75,0.03992873799171613],[115,-5,76,0.04212915736027274],[115,-5,77,0.04422266877439731],[115,-5,78,0.046207077770709246],[115,-5,79,0.048080276045661494],[115,-4,64,0.005075284432320783],[115,-4,65,0.008260543928810753],[115,-4,66,0.011368327728771152],[115,-4,67,0.014396547965247898],[115,-4,68,0.01734301929685695],[115,-4,69,0.020205477658797447],[115,-4,70,0.022981598457042104],[115,-4,71,0.025669014205513055],[115,-4,72,0.028265331606502263],[115,-4,73,0.030768148074026738],[115,-4,74,0.033175067700265924],[115,-4,75,0.0354837166652304],[115,-4,76,0.03769175808934497],[115,-4,77,0.039796906329216196],[115,-4,78,0.04179694071637785],[115,-4,79,0.04368971873929118],[115,-3,64,8.090758708181739E-4],[115,-3,65,0.0039566298633293626],[115,-3,66,0.0070303767382919324],[115,-3,67,0.010028306269657845],[115,-3,68,0.012948300640689601],[115,-3,69,0.01578815338933165],[115,-3,70,0.018545587798157084],[115,-3,71,0.021218274728697674],[115,-3,72,0.023803849900421843],[115,-3,73,0.02629993061404412],[115,-3,74,0.028704131919315166],[115,-3,75,0.03101408222744636],[115,-3,76,0.03322743836784478],[115,-3,77,0.03534190008943378],[115,-3,78,0.037355224006349455],[115,-3,79,0.0392652369882937],[115,-2,64,-0.003451088204895876],[115,-2,65,-3.4316387192558084E-4],[115,-2,66,0.002694574828979432],[115,-2,67,0.0056601964489443116],[115,-2,68,0.00855165214285565],[115,-2,69,0.011366794788770868],[115,-2,70,0.014103397553733396],[115,-2,71,0.016759171905796788],[115,-2,72,0.019331785072524817],[115,-2,73,0.02181887694565121],[115,-2,74,0.02421807643204766],[115,-2,75,0.02652701725115285],[115,-2,76,0.028743353178540827],[115,-2,77,0.030864772735902282],[115,-2,78,0.032889013327228815],[115,-2,79,0.03481387482148184],[115,-1,64,-0.0076980423660839015],[115,-1,65,-0.004631645841892733],[115,-1,66,-0.0016318647153925822],[115,-1,67,0.0012994493806042784],[115,-1,68,0.004160317933105458],[115,-1,69,0.006948654821911891],[115,-1,70,0.009662285041249427],[115,-1,71,0.01229896286986306],[115,-1,72,0.014856389489839895],[115,-1,73,0.017332230053843142],[115,-1,74,0.019724130200907637],[115,-1,75,0.022029732020950196],[115,-1,76,0.0242466894676706],[115,-1,77,0.026372683220117765],[115,-1,78,0.028405434992713183],[115,-1,79,0.0303427212940112],[115,0,64,-0.011924642676280968],[115,0,65,-0.008901642790360029],[115,0,66,-0.0059417433655777965],[115,0,67,-0.0030467152786014876],[115,0,68,-2.1846543833739518E-4],[115,0,69,0.0025409826200126287],[115,0,70,0.00522950759222543],[115,0,71,0.007844908713466686],[115,0,72,0.010384923518104806],[115,0,73,0.012847245050609211],[115,0,74,0.015229538527683516],[115,0,75,0.017529457451787078],[115,0,76,0.019744659175722053],[115,0,77,0.021872819918559036],[115,0,78,0.023911649232692053],[115,0,79,0.025858903922306643],[115,1,64,-0.01612377323828651],[115,1,65,-0.013146006195686143],[115,1,66,-0.010227883900293978],[115,1,67,-0.0073710956325896415],[115,1,68,-0.0045774755158447325],[115,1,69,-0.0018489829978886735],[115,1,70,8.123161215474739E-4],[115,1,71,0.0034042681177132786],[115,1,72,0.005924649222215264],[115,1,73,0.008371182958566675],[115,1,74,0.010741556932063447],[115,1,75,0.013033439074139307],[115,1,76,0.01524449334087423],[115,1,77,0.01737239486593438],[115,1,78,0.01941484456773014],[115,1,79,0.021369583211077223],[115,2,64,-0.020288351724726227],[115,2,65,-0.017357617806737703],[115,2,66,-0.014483135936285356],[115,2,67,-0.011666513058686032],[115,2,68,-0.00890950942216407],[115,2,69,-0.006214018968046471],[115,2,70,-0.003582050263034424],[115,2,71,-0.0010157079737497313],[115,2,72,0.0014828251167174275],[115,2,73,0.003911305549932902],[115,2,74,0.006267446091070765],[115,2,75,0.008548932085847137],[115,2,76,0.010753437275107747],[115,2,77,0.01287863906734734],[115,2,78,0.014922233268949717],[115,2,79,0.016881948272432508],[115,3,64,-0.006330452242325041],[115,3,65,-0.01076074236181616],[115,3,66,-0.016714239424637754],[115,3,67,-0.01592581669315457],[115,3,68,-0.01320738831091886],[115,3,69,-0.01054692238947575],[115,3,70,-0.007946368611237396],[115,3,71,-0.005407780635747116],[115,3,72,-0.0029332980336642597],[115,3,73,-5.251287591679574E-4],[115,3,74,0.0018144678393704067],[115,3,75,0.004083197470602963],[115,3,76,0.006278746812982454],[115,3,77,0.008398798889375794],[115,3,78,0.010441047903303954],[115,3,79,0.012403213537094955],[115,4,64,-2.1724643083205372E-4],[115,4,65,-8.819727393047248E-4],[115,4,66,-0.0022380717648714204],[115,4,67,-0.0044783412116908075],[115,4,68,-0.007759963704958197],[115,4,69,-0.012207125158675563],[115,4,70,-0.012273435440412123],[115,4,71,-0.009764726197614017],[115,4,72,-0.007316480363468596],[115,4,73,-0.004930867959068899],[115,4,74,-0.0026101177695549496],[115,4,75,-3.565008169152048E-4],[115,4,76,0.0018276856330753585],[115,4,77,0.003940133530060522],[115,4,78,0.005978538964236779],[115,4,79,0.007940616557704096],[115,5,64,2.715693959539659E-4],[115,5,65,2.4322610109459612E-5],[115,5,66,-2.0864246343896462E-7],[115,5,67,-6.379216319637811E-5],[115,5,68,-3.906907310244875E-4],[115,5,69,-0.0011701508589968621],[115,5,70,-0.0025589180848035473],[115,5,71,-0.0046837635454792205],[115,5,72,-0.0076440071197200485],[115,5,73,-0.009298668441584244],[115,5,74,-0.006999054341348884],[115,5,75,-0.004762897599251394],[115,5,76,-0.002592476347908726],[115,5,77,-4.900864321845527E-4],[115,5,78,0.0015419735877427593],[115,5,79,0.003501416904223134],[115,6,64,0.006819122490652887],[115,6,65,0.003641396465799551],[115,6,66,0.0016827280805995245],[115,6,67,6.123403041078995E-4],[115,6,68,1.3875119497184417E-4],[115,6,69,7.412225323492426E-6],[115,6,70,-1.6865927391224406E-6],[115,6,71,-7.642978660018281E-5],[115,6,72,-3.7499321809155063E-4],[115,6,73,-0.0010282507016068669],[115,6,74,-0.002142157244563844],[115,6,75,-0.0038000964899900175],[115,6,76,-0.006065180806112779],[115,6,77,-0.004884579410762591],[115,6,78,-0.0028613646461937356],[115,6,79,-9.071038485702829E-4],[115,7,64,0.031108443351517915],[115,7,65,0.0216524044317738],[115,7,66,0.014494018947988695],[115,7,67,0.009233461500938778],[115,7,68,0.005511891972106509],[115,7,69,0.00300921839744029],[115,7,70,0.0014418199575653699],[115,7,71,5.602448180921874E-4],[115,7,72,1.4689708406950122E-4],[115,7,73,1.3726570293048307E-5],[115,7,74,-6.556395362607374E-8],[115,7,75,-3.0293006423177802E-5],[115,7,76,-1.9001082010523243E-4],[115,7,77,-5.716917138205668E-4],[115,7,78,-0.0012493424254192858],[115,7,79,-0.0022805516153343846],[115,8,64,0.084822465659449],[115,8,65,0.06574040487018724],[115,8,66,0.05011684683906357],[115,8,67,0.037482878653259145],[115,8,68,0.027412162996250575],[115,8,69,0.019518823040820008],[115,8,70,0.01345528074973734],[115,8,71,0.008910063060346874],[115,8,72,0.005605589990526154],[115,8,73,0.003295958176837205],[115,8,74,0.0017647327416859013],[115,8,75,8.227596876275954E-4],[115,8,76,3.060102426762951E-4],[115,8,77,7.346773385061512E-5],[115,8,78,5.066653284705369E-6],[115,8,79,-3.0739016279842046E-7],[115,9,64,0.17964402621870834],[115,9,65,0.14758835883856178],[115,9,66,0.12023429690261858],[115,9,67,0.09704380083257201],[115,9,68,0.07752289708693333],[115,9,69,0.06121968254269338],[115,9,70,0.04772227555323931],[115,9,71,0.03665672790176007],[115,9,72,0.027684911460819847],[115,9,73,0.020502392877791292],[115,9,74,0.014836309031670995],[115,9,75,0.010443255348003135],[115,9,76,0.007107198329841167],[115,9,77,0.004637422865342798],[115,9,78,0.002866524010670882],[115,9,79,0.001648452031588597],[115,10,64,0.32725586490135844],[115,10,65,0.278879130030735],[115,10,66,0.23652935649436155],[115,10,67,0.19959933888995082],[115,10,68,0.16752732841794477],[115,10,69,0.1397951542212523],[115,10,70,0.11592628464718113],[115,10,71,0.09548384239422461],[115,10,72,0.07806858712737791],[115,10,73,0.06331687869031523],[115,10,74,0.050898633509118135],[115,10,75,0.040515286162628394],[115,10,76,0.0318977674112255],[115,10,77,0.02480450922840188],[115,10,78,0.019019486567956462],[115,10,79,0.014350304740422353],[115,11,64,0.5393406245953196],[115,11,65,0.4712954847214412],[115,11,66,0.41068491511804117],[115,11,67,0.35683250539373207],[115,11,68,0.30910859245161537],[115,11,69,0.2669284962565362],[115,11,70,0.22975068874783394],[115,11,71,0.19707490960409166],[115,11,72,0.1684402422163449],[115,11,73,0.14342316280648446],[115,11,74,0.1216355751351767],[115,11,75,0.10272284266247732],[115,11,76,0.08636182938661047],[115,11,77,0.07225895988947663],[115,11,78,0.06014830835566413],[115,11,79,0.04978972552857796],[115,12,64,0.8275808511561399],[115,12,65,0.736520091714608],[115,12,66,0.6543837643702891],[115,12,67,0.5804262145709254],[115,12,68,0.5139497258768131],[115,12,69,0.45430286762503863],[115,12,70,0.4008787689398671],[115,12,71,0.35311333254006005],[115,12,72,0.31048340147214504],[115,12,73,0.27250489151454665],[115,12,74,0.23873090154700127],[115,12,75,0.2087498136362825],[115,12,76,0.18218339399719022],[115,12,77,0.1586849053419662],[115,12,78,0.1379372404186705],[115,12,79,0.11965108579190264],[115,13,64,1.0],[115,13,65,1.0],[115,13,66,0.9793085978890848],[115,13,67,0.8820632822522566],[115,13,68,0.7937336665505879],[115,13,69,0.7136013280379713],[115,13,70,0.6409937066112543],[115,13,71,0.5752824140847437],[115,13,72,0.5158814890857312],[115,13,73,0.46224561012387533],[115,13,74,0.4138682789794296],[115,13,75,0.37027998604895807],[115,13,76,0.3310463687407614],[115,13,77,0.2957663734181974],[115,13,78,0.26407043072499176],[115,13,79,0.23561865343546612],[115,14,64,1.0],[115,14,65,1.0],[115,14,66,1.0],[115,14,67,1.0],[115,14,68,1.0],[115,14,69,1.0],[115,14,70,0.9617785833919335],[115,14,71,0.8752653569299953],[115,14,72,0.7963178286265948],[115,14,73,0.7243287628936834],[115,14,74,0.6587312721904235],[115,14,75,0.5989970449637889],[115,14,76,0.5446345587906812],[115,14,77,0.4951872892051726],[115,14,78,0.4502319240783433],[115,14,79,0.4093765927829527],[115,15,64,1.0],[115,15,65,1.0],[115,15,66,1.0],[115,15,67,1.0],[115,15,68,1.0],[115,15,69,1.0],[115,15,70,1.0],[115,15,71,1.0],[115,15,72,1.0],[115,15,73,1.0],[115,15,74,0.9850033443900912],[115,15,75,0.9065845734682165],[115,15,76,0.8346316669184374],[115,15,77,0.768631474963943],[115,15,78,0.7081056620343369],[115,15,79,0.652608964489704],[115,16,64,1.0],[115,16,65,1.0],[115,16,66,1.0],[115,16,67,1.0],[115,16,68,1.0],[115,16,69,1.0],[115,16,70,1.0],[115,16,71,1.0],[115,16,72,1.0],[115,16,73,1.0],[115,16,74,1.0],[115,16,75,1.0],[115,16,76,1.0],[115,16,77,1.0],[115,16,78,1.0],[115,16,79,0.9769997254595133],[115,17,64,1.0],[115,17,65,1.0],[115,17,66,1.0],[115,17,67,1.0],[115,17,68,1.0],[115,17,69,1.0],[115,17,70,1.0],[115,17,71,1.0],[115,17,72,1.0],[115,17,73,1.0],[115,17,74,1.0],[115,17,75,1.0],[115,17,76,1.0],[115,17,77,1.0],[115,17,78,1.0],[115,17,79,1.0],[115,18,64,1.0],[115,18,65,1.0],[115,18,66,1.0],[115,18,67,1.0],[115,18,68,1.0],[115,18,69,1.0],[115,18,70,1.0],[115,18,71,1.0],[115,18,72,1.0],[115,18,73,1.0],[115,18,74,1.0],[115,18,75,1.0],[115,18,76,1.0],[115,18,77,1.0],[115,18,78,1.0],[115,18,79,1.0],[115,19,64,1.0],[115,19,65,1.0],[115,19,66,1.0],[115,19,67,1.0],[115,19,68,1.0],[115,19,69,1.0],[115,19,70,1.0],[115,19,71,1.0],[115,19,72,1.0],[115,19,73,1.0],[115,19,74,1.0],[115,19,75,1.0],[115,19,76,1.0],[115,19,77,1.0],[115,19,78,1.0],[115,19,79,1.0],[115,20,64,1.0],[115,20,65,1.0],[115,20,66,1.0],[115,20,67,1.0],[115,20,68,1.0],[115,20,69,1.0],[115,20,70,1.0],[115,20,71,1.0],[115,20,72,1.0],[115,20,73,1.0],[115,20,74,1.0],[115,20,75,1.0],[115,20,76,1.0],[115,20,77,1.0],[115,20,78,1.0],[115,20,79,1.0],[115,21,64,1.0],[115,21,65,1.0],[115,21,66,1.0],[115,21,67,1.0],[115,21,68,1.0],[115,21,69,1.0],[115,21,70,1.0],[115,21,71,1.0],[115,21,72,1.0],[115,21,73,1.0],[115,21,74,1.0],[115,21,75,1.0],[115,21,76,1.0],[115,21,77,1.0],[115,21,78,1.0],[115,21,79,1.0],[115,22,64,1.0],[115,22,65,1.0],[115,22,66,1.0],[115,22,67,1.0],[115,22,68,1.0],[115,22,69,1.0],[115,22,70,1.0],[115,22,71,1.0],[115,22,72,1.0],[115,22,73,1.0],[115,22,74,1.0],[115,22,75,1.0],[115,22,76,1.0],[115,22,77,1.0],[115,22,78,1.0],[115,22,79,1.0],[115,23,64,1.0],[115,23,65,1.0],[115,23,66,1.0],[115,23,67,1.0],[115,23,68,1.0],[115,23,69,1.0],[115,23,70,1.0],[115,23,71,1.0],[115,23,72,1.0],[115,23,73,1.0],[115,23,74,1.0],[115,23,75,1.0],[115,23,76,1.0],[115,23,77,1.0],[115,23,78,1.0],[115,23,79,1.0],[115,24,64,1.0],[115,24,65,1.0],[115,24,66,1.0],[115,24,67,1.0],[115,24,68,1.0],[115,24,69,1.0],[115,24,70,1.0],[115,24,71,1.0],[115,24,72,1.0],[115,24,73,1.0],[115,24,74,1.0],[115,24,75,1.0],[115,24,76,1.0],[115,24,77,1.0],[115,24,78,1.0],[115,24,79,1.0],[115,25,64,1.0],[115,25,65,1.0],[115,25,66,1.0],[115,25,67,1.0],[115,25,68,1.0],[115,25,69,1.0],[115,25,70,1.0],[115,25,71,1.0],[115,25,72,1.0],[115,25,73,1.0],[115,25,74,1.0],[115,25,75,1.0],[115,25,76,1.0],[115,25,77,1.0],[115,25,78,1.0],[115,25,79,1.0],[115,26,64,1.0],[115,26,65,1.0],[115,26,66,1.0],[115,26,67,1.0],[115,26,68,1.0],[115,26,69,1.0],[115,26,70,1.0],[115,26,71,1.0],[115,26,72,1.0],[115,26,73,1.0],[115,26,74,1.0],[115,26,75,1.0],[115,26,76,1.0],[115,26,77,1.0],[115,26,78,1.0],[115,26,79,1.0],[115,27,64,1.0],[115,27,65,1.0],[115,27,66,1.0],[115,27,67,1.0],[115,27,68,1.0],[115,27,69,1.0],[115,27,70,1.0],[115,27,71,1.0],[115,27,72,1.0],[115,27,73,1.0],[115,27,74,1.0],[115,27,75,1.0],[115,27,76,1.0],[115,27,77,1.0],[115,27,78,1.0],[115,27,79,1.0],[115,28,64,1.0],[115,28,65,1.0],[115,28,66,1.0],[115,28,67,1.0],[115,28,68,1.0],[115,28,69,1.0],[115,28,70,1.0],[115,28,71,1.0],[115,28,72,1.0],[115,28,73,1.0],[115,28,74,1.0],[115,28,75,1.0],[115,28,76,1.0],[115,28,77,1.0],[115,28,78,1.0],[115,28,79,1.0],[115,29,64,1.0],[115,29,65,1.0],[115,29,66,1.0],[115,29,67,1.0],[115,29,68,1.0],[115,29,69,1.0],[115,29,70,1.0],[115,29,71,1.0],[115,29,72,1.0],[115,29,73,1.0],[115,29,74,1.0],[115,29,75,1.0],[115,29,76,1.0],[115,29,77,1.0],[115,29,78,1.0],[115,29,79,1.0],[115,30,64,1.0],[115,30,65,1.0],[115,30,66,1.0],[115,30,67,1.0],[115,30,68,1.0],[115,30,69,1.0],[115,30,70,1.0],[115,30,71,1.0],[115,30,72,1.0],[115,30,73,1.0],[115,30,74,1.0],[115,30,75,1.0],[115,30,76,1.0],[115,30,77,1.0],[115,30,78,1.0],[115,30,79,1.0],[115,31,64,1.0],[115,31,65,1.0],[115,31,66,1.0],[115,31,67,1.0],[115,31,68,1.0],[115,31,69,1.0],[115,31,70,1.0],[115,31,71,1.0],[115,31,72,1.0],[115,31,73,1.0],[115,31,74,1.0],[115,31,75,1.0],[115,31,76,1.0],[115,31,77,1.0],[115,31,78,1.0],[115,31,79,1.0],[115,32,64,1.0],[115,32,65,1.0],[115,32,66,1.0],[115,32,67,1.0],[115,32,68,1.0],[115,32,69,1.0],[115,32,70,1.0],[115,32,71,1.0],[115,32,72,1.0],[115,32,73,1.0],[115,32,74,1.0],[115,32,75,1.0],[115,32,76,1.0],[115,32,77,1.0],[115,32,78,1.0],[115,32,79,1.0],[115,33,64,1.0],[115,33,65,1.0],[115,33,66,1.0],[115,33,67,1.0],[115,33,68,1.0],[115,33,69,1.0],[115,33,70,1.0],[115,33,71,1.0],[115,33,72,1.0],[115,33,73,1.0],[115,33,74,1.0],[115,33,75,1.0],[115,33,76,1.0],[115,33,77,1.0],[115,33,78,1.0],[115,33,79,1.0],[115,34,64,1.0],[115,34,65,1.0],[115,34,66,1.0],[115,34,67,1.0],[115,34,68,1.0],[115,34,69,1.0],[115,34,70,1.0],[115,34,71,1.0],[115,34,72,1.0],[115,34,73,1.0],[115,34,74,1.0],[115,34,75,1.0],[115,34,76,1.0],[115,34,77,1.0],[115,34,78,1.0],[115,34,79,1.0],[115,35,64,1.0],[115,35,65,1.0],[115,35,66,1.0],[115,35,67,1.0],[115,35,68,1.0],[115,35,69,1.0],[115,35,70,1.0],[115,35,71,1.0],[115,35,72,1.0],[115,35,73,1.0],[115,35,74,1.0],[115,35,75,1.0],[115,35,76,1.0],[115,35,77,1.0],[115,35,78,1.0],[115,35,79,1.0],[115,36,64,1.0],[115,36,65,1.0],[115,36,66,1.0],[115,36,67,1.0],[115,36,68,1.0],[115,36,69,1.0],[115,36,70,1.0],[115,36,71,1.0],[115,36,72,1.0],[115,36,73,1.0],[115,36,74,1.0],[115,36,75,1.0],[115,36,76,1.0],[115,36,77,1.0],[115,36,78,1.0],[115,36,79,1.0],[115,37,64,1.0],[115,37,65,1.0],[115,37,66,1.0],[115,37,67,1.0],[115,37,68,1.0],[115,37,69,1.0],[115,37,70,1.0],[115,37,71,1.0],[115,37,72,1.0],[115,37,73,1.0],[115,37,74,1.0],[115,37,75,1.0],[115,37,76,1.0],[115,37,77,1.0],[115,37,78,1.0],[115,37,79,1.0],[115,38,64,1.0],[115,38,65,1.0],[115,38,66,1.0],[115,38,67,1.0],[115,38,68,1.0],[115,38,69,1.0],[115,38,70,1.0],[115,38,71,1.0],[115,38,72,1.0],[115,38,73,1.0],[115,38,74,1.0],[115,38,75,1.0],[115,38,76,1.0],[115,38,77,1.0],[115,38,78,1.0],[115,38,79,1.0],[115,39,64,1.0],[115,39,65,1.0],[115,39,66,1.0],[115,39,67,1.0],[115,39,68,1.0],[115,39,69,1.0],[115,39,70,1.0],[115,39,71,1.0],[115,39,72,1.0],[115,39,73,1.0],[115,39,74,1.0],[115,39,75,1.0],[115,39,76,1.0],[115,39,77,1.0],[115,39,78,1.0],[115,39,79,1.0],[115,40,64,1.0],[115,40,65,1.0],[115,40,66,1.0],[115,40,67,1.0],[115,40,68,1.0],[115,40,69,1.0],[115,40,70,1.0],[115,40,71,1.0],[115,40,72,1.0],[115,40,73,1.0],[115,40,74,1.0],[115,40,75,1.0],[115,40,76,1.0],[115,40,77,1.0],[115,40,78,1.0],[115,40,79,1.0],[115,41,64,1.0],[115,41,65,1.0],[115,41,66,1.0],[115,41,67,1.0],[115,41,68,1.0],[115,41,69,1.0],[115,41,70,1.0],[115,41,71,1.0],[115,41,72,1.0],[115,41,73,1.0],[115,41,74,1.0],[115,41,75,1.0],[115,41,76,1.0],[115,41,77,1.0],[115,41,78,1.0],[115,41,79,1.0],[115,42,64,1.0],[115,42,65,1.0],[115,42,66,1.0],[115,42,67,1.0],[115,42,68,1.0],[115,42,69,1.0],[115,42,70,1.0],[115,42,71,1.0],[115,42,72,1.0],[115,42,73,1.0],[115,42,74,1.0],[115,42,75,1.0],[115,42,76,1.0],[115,42,77,1.0],[115,42,78,1.0],[115,42,79,1.0],[115,43,64,1.0],[115,43,65,1.0],[115,43,66,1.0],[115,43,67,1.0],[115,43,68,1.0],[115,43,69,1.0],[115,43,70,1.0],[115,43,71,1.0],[115,43,72,1.0],[115,43,73,1.0],[115,43,74,1.0],[115,43,75,1.0],[115,43,76,1.0],[115,43,77,1.0],[115,43,78,1.0],[115,43,79,1.0],[115,44,64,1.0],[115,44,65,1.0],[115,44,66,1.0],[115,44,67,1.0],[115,44,68,1.0],[115,44,69,1.0],[115,44,70,1.0],[115,44,71,1.0],[115,44,72,1.0],[115,44,73,1.0],[115,44,74,1.0],[115,44,75,1.0],[115,44,76,1.0],[115,44,77,1.0],[115,44,78,1.0],[115,44,79,1.0],[115,45,64,1.0],[115,45,65,1.0],[115,45,66,1.0],[115,45,67,1.0],[115,45,68,1.0],[115,45,69,1.0],[115,45,70,1.0],[115,45,71,1.0],[115,45,72,1.0],[115,45,73,1.0],[115,45,74,1.0],[115,45,75,1.0],[115,45,76,1.0],[115,45,77,1.0],[115,45,78,1.0],[115,45,79,1.0],[115,46,64,1.0],[115,46,65,1.0],[115,46,66,1.0],[115,46,67,1.0],[115,46,68,1.0],[115,46,69,1.0],[115,46,70,1.0],[115,46,71,1.0],[115,46,72,1.0],[115,46,73,1.0],[115,46,74,1.0],[115,46,75,1.0],[115,46,76,1.0],[115,46,77,1.0],[115,46,78,1.0],[115,46,79,1.0],[115,47,64,1.0],[115,47,65,1.0],[115,47,66,1.0],[115,47,67,1.0],[115,47,68,1.0],[115,47,69,1.0],[115,47,70,1.0],[115,47,71,1.0],[115,47,72,1.0],[115,47,73,1.0],[115,47,74,1.0],[115,47,75,1.0],[115,47,76,1.0],[115,47,77,1.0],[115,47,78,1.0],[115,47,79,1.0],[115,48,64,1.0],[115,48,65,1.0],[115,48,66,1.0],[115,48,67,1.0],[115,48,68,1.0],[115,48,69,1.0],[115,48,70,1.0],[115,48,71,1.0],[115,48,72,1.0],[115,48,73,1.0],[115,48,74,1.0],[115,48,75,1.0],[115,48,76,1.0],[115,48,77,1.0],[115,48,78,1.0],[115,48,79,1.0],[115,49,64,1.0],[115,49,65,1.0],[115,49,66,1.0],[115,49,67,1.0],[115,49,68,1.0],[115,49,69,1.0],[115,49,70,1.0],[115,49,71,1.0],[115,49,72,1.0],[115,49,73,1.0],[115,49,74,1.0],[115,49,75,1.0],[115,49,76,1.0],[115,49,77,1.0],[115,49,78,1.0],[115,49,79,1.0],[115,50,64,1.0],[115,50,65,1.0],[115,50,66,1.0],[115,50,67,1.0],[115,50,68,1.0],[115,50,69,1.0],[115,50,70,1.0],[115,50,71,1.0],[115,50,72,1.0],[115,50,73,1.0],[115,50,74,1.0],[115,50,75,1.0],[115,50,76,1.0],[115,50,77,1.0],[115,50,78,1.0],[115,50,79,1.0],[115,51,64,1.0],[115,51,65,1.0],[115,51,66,1.0],[115,51,67,1.0],[115,51,68,1.0],[115,51,69,1.0],[115,51,70,1.0],[115,51,71,1.0],[115,51,72,1.0],[115,51,73,1.0],[115,51,74,1.0],[115,51,75,1.0],[115,51,76,1.0],[115,51,77,1.0],[115,51,78,1.0],[115,51,79,1.0],[115,52,64,1.0],[115,52,65,1.0],[115,52,66,1.0],[115,52,67,1.0],[115,52,68,1.0],[115,52,69,1.0],[115,52,70,1.0],[115,52,71,1.0],[115,52,72,1.0],[115,52,73,1.0],[115,52,74,1.0],[115,52,75,1.0],[115,52,76,1.0],[115,52,77,1.0],[115,52,78,1.0],[115,52,79,1.0],[115,53,64,1.0],[115,53,65,1.0],[115,53,66,1.0],[115,53,67,1.0],[115,53,68,1.0],[115,53,69,1.0],[115,53,70,1.0],[115,53,71,1.0],[115,53,72,1.0],[115,53,73,1.0],[115,53,74,1.0],[115,53,75,1.0],[115,53,76,1.0],[115,53,77,1.0],[115,53,78,1.0],[115,53,79,1.0],[115,54,64,1.0],[115,54,65,1.0],[115,54,66,1.0],[115,54,67,1.0],[115,54,68,1.0],[115,54,69,1.0],[115,54,70,1.0],[115,54,71,1.0],[115,54,72,1.0],[115,54,73,1.0],[115,54,74,1.0],[115,54,75,1.0],[115,54,76,1.0],[115,54,77,1.0],[115,54,78,1.0],[115,54,79,1.0],[115,55,64,1.0],[115,55,65,1.0],[115,55,66,1.0],[115,55,67,1.0],[115,55,68,1.0],[115,55,69,1.0],[115,55,70,1.0],[115,55,71,1.0],[115,55,72,1.0],[115,55,73,1.0],[115,55,74,1.0],[115,55,75,1.0],[115,55,76,1.0],[115,55,77,1.0],[115,55,78,1.0],[115,55,79,1.0],[115,56,64,1.0],[115,56,65,1.0],[115,56,66,1.0],[115,56,67,1.0],[115,56,68,1.0],[115,56,69,1.0],[115,56,70,1.0],[115,56,71,1.0],[115,56,72,1.0],[115,56,73,1.0],[115,56,74,1.0],[115,56,75,1.0],[115,56,76,1.0],[115,56,77,1.0],[115,56,78,1.0],[115,56,79,1.0],[115,57,64,1.0],[115,57,65,1.0],[115,57,66,1.0],[115,57,67,1.0],[115,57,68,1.0],[115,57,69,1.0],[115,57,70,1.0],[115,57,71,1.0],[115,57,72,1.0],[115,57,73,1.0],[115,57,74,1.0],[115,57,75,1.0],[115,57,76,1.0],[115,57,77,1.0],[115,57,78,1.0],[115,57,79,1.0],[115,58,64,1.0],[115,58,65,1.0],[115,58,66,1.0],[115,58,67,1.0],[115,58,68,1.0],[115,58,69,1.0],[115,58,70,1.0],[115,58,71,1.0],[115,58,72,1.0],[115,58,73,1.0],[115,58,74,1.0],[115,58,75,1.0],[115,58,76,1.0],[115,58,77,1.0],[115,58,78,1.0],[115,58,79,1.0],[115,59,64,1.0],[115,59,65,1.0],[115,59,66,1.0],[115,59,67,1.0],[115,59,68,1.0],[115,59,69,1.0],[115,59,70,1.0],[115,59,71,1.0],[115,59,72,1.0],[115,59,73,1.0],[115,59,74,1.0],[115,59,75,1.0],[115,59,76,1.0],[115,59,77,1.0],[115,59,78,1.0],[115,59,79,1.0],[115,60,64,1.0],[115,60,65,1.0],[115,60,66,1.0],[115,60,67,1.0],[115,60,68,1.0],[115,60,69,1.0],[115,60,70,1.0],[115,60,71,1.0],[115,60,72,1.0],[115,60,73,1.0],[115,60,74,1.0],[115,60,75,1.0],[115,60,76,1.0],[115,60,77,1.0],[115,60,78,1.0],[115,60,79,1.0],[115,61,64,1.0],[115,61,65,1.0],[115,61,66,1.0],[115,61,67,1.0],[115,61,68,1.0],[115,61,69,1.0],[115,61,70,1.0],[115,61,71,1.0],[115,61,72,1.0],[115,61,73,1.0],[115,61,74,1.0],[115,61,75,1.0],[115,61,76,1.0],[115,61,77,1.0],[115,61,78,1.0],[115,61,79,1.0],[115,62,64,1.0],[115,62,65,1.0],[115,62,66,1.0],[115,62,67,1.0],[115,62,68,1.0],[115,62,69,1.0],[115,62,70,1.0],[115,62,71,1.0],[115,62,72,1.0],[115,62,73,1.0],[115,62,74,1.0],[115,62,75,1.0],[115,62,76,1.0],[115,62,77,1.0],[115,62,78,1.0],[115,62,79,1.0],[115,63,64,1.0],[115,63,65,1.0],[115,63,66,1.0],[115,63,67,1.0],[115,63,68,1.0],[115,63,69,1.0],[115,63,70,1.0],[115,63,71,1.0],[115,63,72,1.0],[115,63,73,1.0],[115,63,74,1.0],[115,63,75,1.0],[115,63,76,1.0],[115,63,77,1.0],[115,63,78,1.0],[115,63,79,1.0],[115,64,64,1.0],[115,64,65,1.0],[115,64,66,1.0],[115,64,67,1.0],[115,64,68,1.0],[115,64,69,1.0],[115,64,70,1.0],[115,64,71,1.0],[115,64,72,1.0],[115,64,73,1.0],[115,64,74,1.0],[115,64,75,1.0],[115,64,76,1.0],[115,64,77,1.0],[115,64,78,1.0],[115,64,79,1.0],[115,65,64,1.0],[115,65,65,1.0],[115,65,66,1.0],[115,65,67,1.0],[115,65,68,1.0],[115,65,69,1.0],[115,65,70,1.0],[115,65,71,1.0],[115,65,72,1.0],[115,65,73,1.0],[115,65,74,1.0],[115,65,75,1.0],[115,65,76,1.0],[115,65,77,1.0],[115,65,78,1.0],[115,65,79,1.0],[115,66,64,1.0],[115,66,65,1.0],[115,66,66,1.0],[115,66,67,1.0],[115,66,68,1.0],[115,66,69,1.0],[115,66,70,1.0],[115,66,71,1.0],[115,66,72,1.0],[115,66,73,1.0],[115,66,74,1.0],[115,66,75,1.0],[115,66,76,1.0],[115,66,77,1.0],[115,66,78,1.0],[115,66,79,1.0],[115,67,64,1.0],[115,67,65,1.0],[115,67,66,1.0],[115,67,67,1.0],[115,67,68,1.0],[115,67,69,1.0],[115,67,70,1.0],[115,67,71,1.0],[115,67,72,1.0],[115,67,73,1.0],[115,67,74,1.0],[115,67,75,1.0],[115,67,76,1.0],[115,67,77,1.0],[115,67,78,1.0],[115,67,79,1.0],[115,68,64,1.0],[115,68,65,1.0],[115,68,66,1.0],[115,68,67,1.0],[115,68,68,1.0],[115,68,69,1.0],[115,68,70,1.0],[115,68,71,1.0],[115,68,72,1.0],[115,68,73,1.0],[115,68,74,1.0],[115,68,75,1.0],[115,68,76,1.0],[115,68,77,1.0],[115,68,78,1.0],[115,68,79,1.0],[115,69,64,1.0],[115,69,65,1.0],[115,69,66,1.0],[115,69,67,1.0],[115,69,68,1.0],[115,69,69,1.0],[115,69,70,1.0],[115,69,71,1.0],[115,69,72,1.0],[115,69,73,1.0],[115,69,74,1.0],[115,69,75,1.0],[115,69,76,1.0],[115,69,77,1.0],[115,69,78,1.0],[115,69,79,1.0],[115,70,64,1.0],[115,70,65,1.0],[115,70,66,1.0],[115,70,67,1.0],[115,70,68,1.0],[115,70,69,1.0],[115,70,70,1.0],[115,70,71,1.0],[115,70,72,1.0],[115,70,73,1.0],[115,70,74,1.0],[115,70,75,1.0],[115,70,76,1.0],[115,70,77,1.0],[115,70,78,1.0],[115,70,79,1.0],[115,71,64,1.0],[115,71,65,1.0],[115,71,66,1.0],[115,71,67,1.0],[115,71,68,1.0],[115,71,69,1.0],[115,71,70,1.0],[115,71,71,1.0],[115,71,72,1.0],[115,71,73,1.0],[115,71,74,1.0],[115,71,75,1.0],[115,71,76,1.0],[115,71,77,1.0],[115,71,78,1.0],[115,71,79,1.0],[115,72,64,1.0],[115,72,65,1.0],[115,72,66,1.0],[115,72,67,1.0],[115,72,68,1.0],[115,72,69,1.0],[115,72,70,1.0],[115,72,71,1.0],[115,72,72,1.0],[115,72,73,1.0],[115,72,74,1.0],[115,72,75,1.0],[115,72,76,1.0],[115,72,77,1.0],[115,72,78,1.0],[115,72,79,1.0],[115,73,64,1.0],[115,73,65,1.0],[115,73,66,1.0],[115,73,67,1.0],[115,73,68,1.0],[115,73,69,1.0],[115,73,70,1.0],[115,73,71,1.0],[115,73,72,1.0],[115,73,73,1.0],[115,73,74,1.0],[115,73,75,1.0],[115,73,76,1.0],[115,73,77,1.0],[115,73,78,1.0],[115,73,79,1.0],[115,74,64,1.0],[115,74,65,1.0],[115,74,66,1.0],[115,74,67,1.0],[115,74,68,1.0],[115,74,69,1.0],[115,74,70,1.0],[115,74,71,1.0],[115,74,72,1.0],[115,74,73,1.0],[115,74,74,1.0],[115,74,75,1.0],[115,74,76,1.0],[115,74,77,1.0],[115,74,78,1.0],[115,74,79,1.0],[115,75,64,1.0],[115,75,65,1.0],[115,75,66,1.0],[115,75,67,1.0],[115,75,68,1.0],[115,75,69,1.0],[115,75,70,1.0],[115,75,71,1.0],[115,75,72,1.0],[115,75,73,1.0],[115,75,74,1.0],[115,75,75,1.0],[115,75,76,1.0],[115,75,77,1.0],[115,75,78,1.0],[115,75,79,1.0],[115,76,64,1.0],[115,76,65,1.0],[115,76,66,1.0],[115,76,67,1.0],[115,76,68,1.0],[115,76,69,1.0],[115,76,70,1.0],[115,76,71,1.0],[115,76,72,1.0],[115,76,73,1.0],[115,76,74,1.0],[115,76,75,1.0],[115,76,76,1.0],[115,76,77,1.0],[115,76,78,1.0],[115,76,79,1.0],[115,77,64,1.0],[115,77,65,1.0],[115,77,66,1.0],[115,77,67,1.0],[115,77,68,1.0],[115,77,69,1.0],[115,77,70,1.0],[115,77,71,1.0],[115,77,72,1.0],[115,77,73,1.0],[115,77,74,1.0],[115,77,75,1.0],[115,77,76,1.0],[115,77,77,1.0],[115,77,78,1.0],[115,77,79,1.0],[115,78,64,1.0],[115,78,65,1.0],[115,78,66,1.0],[115,78,67,1.0],[115,78,68,1.0],[115,78,69,1.0],[115,78,70,1.0],[115,78,71,1.0],[115,78,72,1.0],[115,78,73,1.0],[115,78,74,1.0],[115,78,75,1.0],[115,78,76,1.0],[115,78,77,1.0],[115,78,78,1.0],[115,78,79,1.0],[115,79,64,1.0],[115,79,65,1.0],[115,79,66,1.0],[115,79,67,1.0],[115,79,68,1.0],[115,79,69,1.0],[115,79,70,1.0],[115,79,71,1.0],[115,79,72,1.0],[115,79,73,1.0],[115,79,74,1.0],[115,79,75,1.0],[115,79,76,1.0],[115,79,77,1.0],[115,79,78,1.0],[115,79,79,1.0],[115,80,64,1.0],[115,80,65,1.0],[115,80,66,1.0],[115,80,67,1.0],[115,80,68,1.0],[115,80,69,1.0],[115,80,70,1.0],[115,80,71,1.0],[115,80,72,1.0],[115,80,73,1.0],[115,80,74,1.0],[115,80,75,1.0],[115,80,76,1.0],[115,80,77,1.0],[115,80,78,1.0],[115,80,79,1.0],[115,81,64,1.0],[115,81,65,1.0],[115,81,66,1.0],[115,81,67,1.0],[115,81,68,1.0],[115,81,69,1.0],[115,81,70,1.0],[115,81,71,1.0],[115,81,72,1.0],[115,81,73,1.0],[115,81,74,1.0],[115,81,75,1.0],[115,81,76,1.0],[115,81,77,1.0],[115,81,78,1.0],[115,81,79,1.0],[115,82,64,1.0],[115,82,65,1.0],[115,82,66,1.0],[115,82,67,1.0],[115,82,68,1.0],[115,82,69,1.0],[115,82,70,1.0],[115,82,71,1.0],[115,82,72,1.0],[115,82,73,1.0],[115,82,74,1.0],[115,82,75,1.0],[115,82,76,1.0],[115,82,77,1.0],[115,82,78,1.0],[115,82,79,1.0],[115,83,64,1.0],[115,83,65,1.0],[115,83,66,1.0],[115,83,67,1.0],[115,83,68,1.0],[115,83,69,1.0],[115,83,70,1.0],[115,83,71,1.0],[115,83,72,1.0],[115,83,73,1.0],[115,83,74,1.0],[115,83,75,1.0],[115,83,76,1.0],[115,83,77,1.0],[115,83,78,1.0],[115,83,79,1.0],[115,84,64,1.0],[115,84,65,1.0],[115,84,66,1.0],[115,84,67,1.0],[115,84,68,1.0],[115,84,69,1.0],[115,84,70,1.0],[115,84,71,1.0],[115,84,72,1.0],[115,84,73,1.0],[115,84,74,1.0],[115,84,75,1.0],[115,84,76,1.0],[115,84,77,1.0],[115,84,78,1.0],[115,84,79,1.0],[115,85,64,1.0],[115,85,65,1.0],[115,85,66,1.0],[115,85,67,1.0],[115,85,68,1.0],[115,85,69,1.0],[115,85,70,1.0],[115,85,71,1.0],[115,85,72,1.0],[115,85,73,1.0],[115,85,74,1.0],[115,85,75,1.0],[115,85,76,1.0],[115,85,77,1.0],[115,85,78,1.0],[115,85,79,1.0],[115,86,64,1.0],[115,86,65,1.0],[115,86,66,1.0],[115,86,67,1.0],[115,86,68,1.0],[115,86,69,1.0],[115,86,70,1.0],[115,86,71,1.0],[115,86,72,1.0],[115,86,73,1.0],[115,86,74,1.0],[115,86,75,1.0],[115,86,76,1.0],[115,86,77,1.0],[115,86,78,1.0],[115,86,79,1.0],[115,87,64,1.0],[115,87,65,1.0],[115,87,66,1.0],[115,87,67,1.0],[115,87,68,1.0],[115,87,69,1.0],[115,87,70,1.0],[115,87,71,1.0],[115,87,72,1.0],[115,87,73,1.0],[115,87,74,1.0],[115,87,75,1.0],[115,87,76,1.0],[115,87,77,1.0],[115,87,78,1.0],[115,87,79,1.0],[115,88,64,1.0],[115,88,65,1.0],[115,88,66,1.0],[115,88,67,1.0],[115,88,68,1.0],[115,88,69,1.0],[115,88,70,1.0],[115,88,71,1.0],[115,88,72,1.0],[115,88,73,1.0],[115,88,74,1.0],[115,88,75,1.0],[115,88,76,1.0],[115,88,77,1.0],[115,88,78,1.0],[115,88,79,1.0],[115,89,64,1.0],[115,89,65,1.0],[115,89,66,1.0],[115,89,67,1.0],[115,89,68,1.0],[115,89,69,1.0],[115,89,70,1.0],[115,89,71,1.0],[115,89,72,1.0],[115,89,73,1.0],[115,89,74,1.0],[115,89,75,1.0],[115,89,76,1.0],[115,89,77,1.0],[115,89,78,1.0],[115,89,79,1.0],[115,90,64,1.0],[115,90,65,1.0],[115,90,66,1.0],[115,90,67,1.0],[115,90,68,1.0],[115,90,69,1.0],[115,90,70,1.0],[115,90,71,1.0],[115,90,72,1.0],[115,90,73,1.0],[115,90,74,1.0],[115,90,75,1.0],[115,90,76,1.0],[115,90,77,1.0],[115,90,78,1.0],[115,90,79,1.0],[115,91,64,1.0],[115,91,65,1.0],[115,91,66,1.0],[115,91,67,1.0],[115,91,68,1.0],[115,91,69,1.0],[115,91,70,1.0],[115,91,71,1.0],[115,91,72,1.0],[115,91,73,1.0],[115,91,74,1.0],[115,91,75,1.0],[115,91,76,1.0],[115,91,77,1.0],[115,91,78,1.0],[115,91,79,1.0],[115,92,64,1.0],[115,92,65,1.0],[115,92,66,1.0],[115,92,67,1.0],[115,92,68,1.0],[115,92,69,1.0],[115,92,70,1.0],[115,92,71,1.0],[115,92,72,1.0],[115,92,73,1.0],[115,92,74,1.0],[115,92,75,1.0],[115,92,76,1.0],[115,92,77,1.0],[115,92,78,1.0],[115,92,79,1.0],[115,93,64,1.0],[115,93,65,1.0],[115,93,66,1.0],[115,93,67,1.0],[115,93,68,1.0],[115,93,69,1.0],[115,93,70,1.0],[115,93,71,1.0],[115,93,72,1.0],[115,93,73,1.0],[115,93,74,1.0],[115,93,75,1.0],[115,93,76,1.0],[115,93,77,1.0],[115,93,78,1.0],[115,93,79,1.0],[115,94,64,1.0],[115,94,65,1.0],[115,94,66,1.0],[115,94,67,1.0],[115,94,68,1.0],[115,94,69,1.0],[115,94,70,1.0],[115,94,71,1.0],[115,94,72,1.0],[115,94,73,1.0],[115,94,74,1.0],[115,94,75,1.0],[115,94,76,1.0],[115,94,77,1.0],[115,94,78,1.0],[115,94,79,1.0],[115,95,64,1.0],[115,95,65,1.0],[115,95,66,1.0],[115,95,67,1.0],[115,95,68,1.0],[115,95,69,1.0],[115,95,70,1.0],[115,95,71,1.0],[115,95,72,1.0],[115,95,73,1.0],[115,95,74,1.0],[115,95,75,1.0],[115,95,76,1.0],[115,95,77,1.0],[115,95,78,1.0],[115,95,79,1.0],[115,96,64,1.0],[115,96,65,1.0],[115,96,66,1.0],[115,96,67,1.0],[115,96,68,1.0],[115,96,69,1.0],[115,96,70,1.0],[115,96,71,1.0],[115,96,72,1.0],[115,96,73,1.0],[115,96,74,1.0],[115,96,75,1.0],[115,96,76,1.0],[115,96,77,1.0],[115,96,78,1.0],[115,96,79,1.0],[115,97,64,1.0],[115,97,65,1.0],[115,97,66,1.0],[115,97,67,1.0],[115,97,68,1.0],[115,97,69,1.0],[115,97,70,1.0],[115,97,71,1.0],[115,97,72,1.0],[115,97,73,1.0],[115,97,74,1.0],[115,97,75,1.0],[115,97,76,1.0],[115,97,77,1.0],[115,97,78,1.0],[115,97,79,1.0],[115,98,64,1.0],[115,98,65,1.0],[115,98,66,1.0],[115,98,67,1.0],[115,98,68,1.0],[115,98,69,1.0],[115,98,70,1.0],[115,98,71,1.0],[115,98,72,1.0],[115,98,73,1.0],[115,98,74,1.0],[115,98,75,1.0],[115,98,76,1.0],[115,98,77,1.0],[115,98,78,1.0],[115,98,79,1.0],[115,99,64,1.0],[115,99,65,1.0],[115,99,66,1.0],[115,99,67,1.0],[115,99,68,1.0],[115,99,69,1.0],[115,99,70,1.0],[115,99,71,1.0],[115,99,72,1.0],[115,99,73,1.0],[115,99,74,1.0],[115,99,75,1.0],[115,99,76,1.0],[115,99,77,1.0],[115,99,78,1.0],[115,99,79,1.0],[115,100,64,1.0],[115,100,65,1.0],[115,100,66,1.0],[115,100,67,1.0],[115,100,68,1.0],[115,100,69,1.0],[115,100,70,1.0],[115,100,71,1.0],[115,100,72,1.0],[115,100,73,1.0],[115,100,74,1.0],[115,100,75,1.0],[115,100,76,1.0],[115,100,77,1.0],[115,100,78,1.0],[115,100,79,1.0],[115,101,64,1.0],[115,101,65,1.0],[115,101,66,1.0],[115,101,67,1.0],[115,101,68,1.0],[115,101,69,1.0],[115,101,70,1.0],[115,101,71,1.0],[115,101,72,1.0],[115,101,73,1.0],[115,101,74,1.0],[115,101,75,1.0],[115,101,76,1.0],[115,101,77,1.0],[115,101,78,1.0],[115,101,79,1.0],[115,102,64,1.0],[115,102,65,1.0],[115,102,66,1.0],[115,102,67,1.0],[115,102,68,1.0],[115,102,69,1.0],[115,102,70,1.0],[115,102,71,1.0],[115,102,72,1.0],[115,102,73,1.0],[115,102,74,1.0],[115,102,75,1.0],[115,102,76,1.0],[115,102,77,1.0],[115,102,78,1.0],[115,102,79,1.0],[115,103,64,1.0],[115,103,65,1.0],[115,103,66,1.0],[115,103,67,1.0],[115,103,68,1.0],[115,103,69,1.0],[115,103,70,1.0],[115,103,71,1.0],[115,103,72,1.0],[115,103,73,1.0],[115,103,74,1.0],[115,103,75,1.0],[115,103,76,1.0],[115,103,77,1.0],[115,103,78,1.0],[115,103,79,1.0],[115,104,64,1.0],[115,104,65,1.0],[115,104,66,1.0],[115,104,67,1.0],[115,104,68,1.0],[115,104,69,1.0],[115,104,70,1.0],[115,104,71,1.0],[115,104,72,1.0],[115,104,73,1.0],[115,104,74,1.0],[115,104,75,1.0],[115,104,76,1.0],[115,104,77,1.0],[115,104,78,1.0],[115,104,79,1.0],[115,105,64,1.0],[115,105,65,1.0],[115,105,66,1.0],[115,105,67,1.0],[115,105,68,1.0],[115,105,69,1.0],[115,105,70,1.0],[115,105,71,1.0],[115,105,72,1.0],[115,105,73,1.0],[115,105,74,1.0],[115,105,75,1.0],[115,105,76,1.0],[115,105,77,1.0],[115,105,78,1.0],[115,105,79,1.0],[115,106,64,1.0],[115,106,65,1.0],[115,106,66,1.0],[115,106,67,1.0],[115,106,68,1.0],[115,106,69,1.0],[115,106,70,1.0],[115,106,71,1.0],[115,106,72,1.0],[115,106,73,1.0],[115,106,74,1.0],[115,106,75,1.0],[115,106,76,1.0],[115,106,77,1.0],[115,106,78,1.0],[115,106,79,1.0],[115,107,64,1.0],[115,107,65,1.0],[115,107,66,1.0],[115,107,67,1.0],[115,107,68,1.0],[115,107,69,1.0],[115,107,70,1.0],[115,107,71,1.0],[115,107,72,1.0],[115,107,73,1.0],[115,107,74,1.0],[115,107,75,1.0],[115,107,76,1.0],[115,107,77,1.0],[115,107,78,1.0],[115,107,79,1.0],[115,108,64,1.0],[115,108,65,1.0],[115,108,66,1.0],[115,108,67,1.0],[115,108,68,1.0],[115,108,69,1.0],[115,108,70,1.0],[115,108,71,1.0],[115,108,72,1.0],[115,108,73,1.0],[115,108,74,1.0],[115,108,75,1.0],[115,108,76,1.0],[115,108,77,1.0],[115,108,78,1.0],[115,108,79,1.0],[115,109,64,1.0],[115,109,65,1.0],[115,109,66,1.0],[115,109,67,1.0],[115,109,68,1.0],[115,109,69,1.0],[115,109,70,1.0],[115,109,71,1.0],[115,109,72,1.0],[115,109,73,1.0],[115,109,74,1.0],[115,109,75,1.0],[115,109,76,1.0],[115,109,77,1.0],[115,109,78,1.0],[115,109,79,1.0],[115,110,64,1.0],[115,110,65,1.0],[115,110,66,1.0],[115,110,67,1.0],[115,110,68,1.0],[115,110,69,1.0],[115,110,70,1.0],[115,110,71,1.0],[115,110,72,1.0],[115,110,73,1.0],[115,110,74,1.0],[115,110,75,1.0],[115,110,76,1.0],[115,110,77,1.0],[115,110,78,1.0],[115,110,79,1.0],[115,111,64,1.0],[115,111,65,1.0],[115,111,66,1.0],[115,111,67,1.0],[115,111,68,1.0],[115,111,69,1.0],[115,111,70,1.0],[115,111,71,1.0],[115,111,72,1.0],[115,111,73,1.0],[115,111,74,1.0],[115,111,75,1.0],[115,111,76,1.0],[115,111,77,1.0],[115,111,78,1.0],[115,111,79,1.0],[115,112,64,1.0],[115,112,65,1.0],[115,112,66,1.0],[115,112,67,1.0],[115,112,68,1.0],[115,112,69,1.0],[115,112,70,1.0],[115,112,71,1.0],[115,112,72,1.0],[115,112,73,1.0],[115,112,74,1.0],[115,112,75,1.0],[115,112,76,1.0],[115,112,77,1.0],[115,112,78,1.0],[115,112,79,1.0],[115,113,64,1.0],[115,113,65,1.0],[115,113,66,1.0],[115,113,67,1.0],[115,113,68,1.0],[115,113,69,1.0],[115,113,70,1.0],[115,113,71,1.0],[115,113,72,1.0],[115,113,73,1.0],[115,113,74,1.0],[115,113,75,1.0],[115,113,76,1.0],[115,113,77,1.0],[115,113,78,1.0],[115,113,79,1.0],[115,114,64,1.0],[115,114,65,1.0],[115,114,66,1.0],[115,114,67,1.0],[115,114,68,1.0],[115,114,69,1.0],[115,114,70,1.0],[115,114,71,1.0],[115,114,72,1.0],[115,114,73,1.0],[115,114,74,1.0],[115,114,75,1.0],[115,114,76,1.0],[115,114,77,1.0],[115,114,78,1.0],[115,114,79,1.0],[115,115,64,1.0],[115,115,65,1.0],[115,115,66,1.0],[115,115,67,1.0],[115,115,68,1.0],[115,115,69,1.0],[115,115,70,1.0],[115,115,71,1.0],[115,115,72,1.0],[115,115,73,1.0],[115,115,74,1.0],[115,115,75,1.0],[115,115,76,1.0],[115,115,77,1.0],[115,115,78,1.0],[115,115,79,1.0],[115,116,64,1.0],[115,116,65,1.0],[115,116,66,1.0],[115,116,67,1.0],[115,116,68,1.0],[115,116,69,1.0],[115,116,70,1.0],[115,116,71,1.0],[115,116,72,1.0],[115,116,73,1.0],[115,116,74,1.0],[115,116,75,1.0],[115,116,76,1.0],[115,116,77,1.0],[115,116,78,1.0],[115,116,79,1.0],[115,117,64,1.0],[115,117,65,1.0],[115,117,66,1.0],[115,117,67,1.0],[115,117,68,1.0],[115,117,69,1.0],[115,117,70,1.0],[115,117,71,1.0],[115,117,72,1.0],[115,117,73,1.0],[115,117,74,1.0],[115,117,75,1.0],[115,117,76,1.0],[115,117,77,1.0],[115,117,78,1.0],[115,117,79,1.0],[115,118,64,1.0],[115,118,65,1.0],[115,118,66,1.0],[115,118,67,1.0],[115,118,68,1.0],[115,118,69,1.0],[115,118,70,1.0],[115,118,71,1.0],[115,118,72,1.0],[115,118,73,1.0],[115,118,74,1.0],[115,118,75,1.0],[115,118,76,1.0],[115,118,77,1.0],[115,118,78,1.0],[115,118,79,1.0],[115,119,64,1.0],[115,119,65,1.0],[115,119,66,1.0],[115,119,67,1.0],[115,119,68,1.0],[115,119,69,1.0],[115,119,70,1.0],[115,119,71,1.0],[115,119,72,1.0],[115,119,73,1.0],[115,119,74,1.0],[115,119,75,1.0],[115,119,76,1.0],[115,119,77,1.0],[115,119,78,1.0],[115,119,79,1.0],[115,120,64,1.0],[115,120,65,1.0],[115,120,66,1.0],[115,120,67,1.0],[115,120,68,1.0],[115,120,69,1.0],[115,120,70,1.0],[115,120,71,1.0],[115,120,72,1.0],[115,120,73,1.0],[115,120,74,1.0],[115,120,75,1.0],[115,120,76,1.0],[115,120,77,1.0],[115,120,78,1.0],[115,120,79,1.0],[115,121,64,1.0],[115,121,65,1.0],[115,121,66,1.0],[115,121,67,1.0],[115,121,68,1.0],[115,121,69,1.0],[115,121,70,1.0],[115,121,71,1.0],[115,121,72,1.0],[115,121,73,1.0],[115,121,74,1.0],[115,121,75,1.0],[115,121,76,1.0],[115,121,77,1.0],[115,121,78,1.0],[115,121,79,1.0],[115,122,64,1.0],[115,122,65,1.0],[115,122,66,1.0],[115,122,67,1.0],[115,122,68,1.0],[115,122,69,1.0],[115,122,70,1.0],[115,122,71,1.0],[115,122,72,1.0],[115,122,73,1.0],[115,122,74,1.0],[115,122,75,1.0],[115,122,76,1.0],[115,122,77,1.0],[115,122,78,1.0],[115,122,79,1.0],[115,123,64,1.0],[115,123,65,1.0],[115,123,66,1.0],[115,123,67,1.0],[115,123,68,1.0],[115,123,69,1.0],[115,123,70,1.0],[115,123,71,1.0],[115,123,72,1.0],[115,123,73,1.0],[115,123,74,1.0],[115,123,75,1.0],[115,123,76,1.0],[115,123,77,1.0],[115,123,78,1.0],[115,123,79,1.0],[115,124,64,1.0],[115,124,65,1.0],[115,124,66,1.0],[115,124,67,1.0],[115,124,68,1.0],[115,124,69,1.0],[115,124,70,1.0],[115,124,71,1.0],[115,124,72,1.0],[115,124,73,1.0],[115,124,74,1.0],[115,124,75,1.0],[115,124,76,1.0],[115,124,77,1.0],[115,124,78,1.0],[115,124,79,1.0],[115,125,64,1.0],[115,125,65,1.0],[115,125,66,1.0],[115,125,67,1.0],[115,125,68,1.0],[115,125,69,1.0],[115,125,70,1.0],[115,125,71,1.0],[115,125,72,1.0],[115,125,73,1.0],[115,125,74,1.0],[115,125,75,1.0],[115,125,76,1.0],[115,125,77,1.0],[115,125,78,1.0],[115,125,79,1.0],[115,126,64,1.0],[115,126,65,1.0],[115,126,66,1.0],[115,126,67,1.0],[115,126,68,1.0],[115,126,69,1.0],[115,126,70,1.0],[115,126,71,1.0],[115,126,72,1.0],[115,126,73,1.0],[115,126,74,1.0],[115,126,75,1.0],[115,126,76,1.0],[115,126,77,1.0],[115,126,78,1.0],[115,126,79,1.0],[115,127,64,1.0],[115,127,65,1.0],[115,127,66,1.0],[115,127,67,1.0],[115,127,68,1.0],[115,127,69,1.0],[115,127,70,1.0],[115,127,71,1.0],[115,127,72,1.0],[115,127,73,1.0],[115,127,74,1.0],[115,127,75,1.0],[115,127,76,1.0],[115,127,77,1.0],[115,127,78,1.0],[115,127,79,1.0],[115,128,64,1.0],[115,128,65,1.0],[115,128,66,1.0],[115,128,67,1.0],[115,128,68,1.0],[115,128,69,1.0],[115,128,70,1.0],[115,128,71,1.0],[115,128,72,1.0],[115,128,73,1.0],[115,128,74,1.0],[115,128,75,1.0],[115,128,76,1.0],[115,128,77,1.0],[115,128,78,1.0],[115,128,79,1.0],[115,129,64,1.0],[115,129,65,1.0],[115,129,66,1.0],[115,129,67,1.0],[115,129,68,1.0],[115,129,69,1.0],[115,129,70,1.0],[115,129,71,1.0],[115,129,72,1.0],[115,129,73,1.0],[115,129,74,1.0],[115,129,75,1.0],[115,129,76,1.0],[115,129,77,1.0],[115,129,78,1.0],[115,129,79,1.0],[115,130,64,1.0],[115,130,65,1.0],[115,130,66,1.0],[115,130,67,1.0],[115,130,68,1.0],[115,130,69,1.0],[115,130,70,1.0],[115,130,71,1.0],[115,130,72,1.0],[115,130,73,1.0],[115,130,74,1.0],[115,130,75,1.0],[115,130,76,1.0],[115,130,77,1.0],[115,130,78,1.0],[115,130,79,1.0],[115,131,64,1.0],[115,131,65,1.0],[115,131,66,1.0],[115,131,67,1.0],[115,131,68,1.0],[115,131,69,1.0],[115,131,70,1.0],[115,131,71,1.0],[115,131,72,1.0],[115,131,73,1.0],[115,131,74,1.0],[115,131,75,1.0],[115,131,76,1.0],[115,131,77,1.0],[115,131,78,1.0],[115,131,79,1.0],[115,132,64,1.0],[115,132,65,1.0],[115,132,66,1.0],[115,132,67,1.0],[115,132,68,1.0],[115,132,69,1.0],[115,132,70,1.0],[115,132,71,1.0],[115,132,72,1.0],[115,132,73,1.0],[115,132,74,1.0],[115,132,75,1.0],[115,132,76,1.0],[115,132,77,1.0],[115,132,78,1.0],[115,132,79,1.0],[115,133,64,1.0],[115,133,65,1.0],[115,133,66,1.0],[115,133,67,1.0],[115,133,68,1.0],[115,133,69,1.0],[115,133,70,1.0],[115,133,71,1.0],[115,133,72,1.0],[115,133,73,1.0],[115,133,74,1.0],[115,133,75,1.0],[115,133,76,1.0],[115,133,77,1.0],[115,133,78,1.0],[115,133,79,1.0],[115,134,64,1.0],[115,134,65,1.0],[115,134,66,1.0],[115,134,67,1.0],[115,134,68,1.0],[115,134,69,1.0],[115,134,70,1.0],[115,134,71,1.0],[115,134,72,1.0],[115,134,73,1.0],[115,134,74,1.0],[115,134,75,1.0],[115,134,76,1.0],[115,134,77,1.0],[115,134,78,1.0],[115,134,79,1.0],[115,135,64,1.0],[115,135,65,1.0],[115,135,66,1.0],[115,135,67,1.0],[115,135,68,1.0],[115,135,69,1.0],[115,135,70,1.0],[115,135,71,1.0],[115,135,72,1.0],[115,135,73,1.0],[115,135,74,1.0],[115,135,75,1.0],[115,135,76,1.0],[115,135,77,1.0],[115,135,78,1.0],[115,135,79,1.0],[115,136,64,1.0],[115,136,65,1.0],[115,136,66,1.0],[115,136,67,1.0],[115,136,68,1.0],[115,136,69,1.0],[115,136,70,1.0],[115,136,71,1.0],[115,136,72,1.0],[115,136,73,1.0],[115,136,74,1.0],[115,136,75,1.0],[115,136,76,1.0],[115,136,77,1.0],[115,136,78,1.0],[115,136,79,1.0],[115,137,64,1.0],[115,137,65,1.0],[115,137,66,1.0],[115,137,67,1.0],[115,137,68,1.0],[115,137,69,1.0],[115,137,70,1.0],[115,137,71,1.0],[115,137,72,1.0],[115,137,73,1.0],[115,137,74,1.0],[115,137,75,1.0],[115,137,76,1.0],[115,137,77,1.0],[115,137,78,1.0],[115,137,79,1.0],[115,138,64,1.0],[115,138,65,1.0],[115,138,66,1.0],[115,138,67,1.0],[115,138,68,1.0],[115,138,69,1.0],[115,138,70,1.0],[115,138,71,1.0],[115,138,72,1.0],[115,138,73,1.0],[115,138,74,1.0],[115,138,75,1.0],[115,138,76,1.0],[115,138,77,1.0],[115,138,78,1.0],[115,138,79,1.0],[115,139,64,1.0],[115,139,65,1.0],[115,139,66,1.0],[115,139,67,1.0],[115,139,68,1.0],[115,139,69,1.0],[115,139,70,1.0],[115,139,71,1.0],[115,139,72,1.0],[115,139,73,1.0],[115,139,74,1.0],[115,139,75,1.0],[115,139,76,1.0],[115,139,77,1.0],[115,139,78,1.0],[115,139,79,1.0],[115,140,64,1.0],[115,140,65,1.0],[115,140,66,1.0],[115,140,67,1.0],[115,140,68,1.0],[115,140,69,1.0],[115,140,70,1.0],[115,140,71,1.0],[115,140,72,1.0],[115,140,73,1.0],[115,140,74,1.0],[115,140,75,1.0],[115,140,76,1.0],[115,140,77,1.0],[115,140,78,1.0],[115,140,79,1.0],[115,141,64,1.0],[115,141,65,1.0],[115,141,66,1.0],[115,141,67,1.0],[115,141,68,1.0],[115,141,69,1.0],[115,141,70,1.0],[115,141,71,1.0],[115,141,72,1.0],[115,141,73,1.0],[115,141,74,1.0],[115,141,75,1.0],[115,141,76,1.0],[115,141,77,1.0],[115,141,78,1.0],[115,141,79,1.0],[115,142,64,1.0],[115,142,65,1.0],[115,142,66,1.0],[115,142,67,1.0],[115,142,68,1.0],[115,142,69,1.0],[115,142,70,1.0],[115,142,71,1.0],[115,142,72,1.0],[115,142,73,1.0],[115,142,74,1.0],[115,142,75,1.0],[115,142,76,1.0],[115,142,77,1.0],[115,142,78,1.0],[115,142,79,1.0],[115,143,64,1.0],[115,143,65,1.0],[115,143,66,1.0],[115,143,67,1.0],[115,143,68,1.0],[115,143,69,1.0],[115,143,70,1.0],[115,143,71,1.0],[115,143,72,1.0],[115,143,73,1.0],[115,143,74,1.0],[115,143,75,1.0],[115,143,76,1.0],[115,143,77,1.0],[115,143,78,1.0],[115,143,79,1.0],[115,144,64,1.0],[115,144,65,1.0],[115,144,66,1.0],[115,144,67,1.0],[115,144,68,1.0],[115,144,69,1.0],[115,144,70,1.0],[115,144,71,1.0],[115,144,72,1.0],[115,144,73,1.0],[115,144,74,1.0],[115,144,75,1.0],[115,144,76,1.0],[115,144,77,1.0],[115,144,78,1.0],[115,144,79,1.0],[115,145,64,1.0],[115,145,65,1.0],[115,145,66,1.0],[115,145,67,1.0],[115,145,68,1.0],[115,145,69,1.0],[115,145,70,1.0],[115,145,71,1.0],[115,145,72,1.0],[115,145,73,1.0],[115,145,74,1.0],[115,145,75,1.0],[115,145,76,1.0],[115,145,77,1.0],[115,145,78,1.0],[115,145,79,1.0],[115,146,64,1.0],[115,146,65,1.0],[115,146,66,1.0],[115,146,67,1.0],[115,146,68,1.0],[115,146,69,1.0],[115,146,70,1.0],[115,146,71,1.0],[115,146,72,1.0],[115,146,73,1.0],[115,146,74,1.0],[115,146,75,1.0],[115,146,76,1.0],[115,146,77,1.0],[115,146,78,1.0],[115,146,79,1.0],[115,147,64,1.0],[115,147,65,1.0],[115,147,66,1.0],[115,147,67,1.0],[115,147,68,1.0],[115,147,69,1.0],[115,147,70,1.0],[115,147,71,1.0],[115,147,72,1.0],[115,147,73,1.0],[115,147,74,1.0],[115,147,75,1.0],[115,147,76,1.0],[115,147,77,1.0],[115,147,78,1.0],[115,147,79,1.0],[115,148,64,1.0],[115,148,65,1.0],[115,148,66,1.0],[115,148,67,1.0],[115,148,68,1.0],[115,148,69,1.0],[115,148,70,1.0],[115,148,71,1.0],[115,148,72,1.0],[115,148,73,1.0],[115,148,74,1.0],[115,148,75,1.0],[115,148,76,1.0],[115,148,77,1.0],[115,148,78,1.0],[115,148,79,1.0],[115,149,64,1.0],[115,149,65,1.0],[115,149,66,1.0],[115,149,67,1.0],[115,149,68,1.0],[115,149,69,1.0],[115,149,70,1.0],[115,149,71,1.0],[115,149,72,1.0],[115,149,73,1.0],[115,149,74,1.0],[115,149,75,1.0],[115,149,76,1.0],[115,149,77,1.0],[115,149,78,1.0],[115,149,79,1.0],[115,150,64,1.0],[115,150,65,1.0],[115,150,66,1.0],[115,150,67,1.0],[115,150,68,1.0],[115,150,69,1.0],[115,150,70,1.0],[115,150,71,1.0],[115,150,72,1.0],[115,150,73,1.0],[115,150,74,1.0],[115,150,75,1.0],[115,150,76,1.0],[115,150,77,1.0],[115,150,78,1.0],[115,150,79,1.0],[115,151,64,1.0],[115,151,65,1.0],[115,151,66,1.0],[115,151,67,1.0],[115,151,68,1.0],[115,151,69,1.0],[115,151,70,1.0],[115,151,71,1.0],[115,151,72,1.0],[115,151,73,1.0],[115,151,74,1.0],[115,151,75,1.0],[115,151,76,1.0],[115,151,77,1.0],[115,151,78,1.0],[115,151,79,1.0],[115,152,64,1.0],[115,152,65,1.0],[115,152,66,1.0],[115,152,67,1.0],[115,152,68,1.0],[115,152,69,1.0],[115,152,70,1.0],[115,152,71,1.0],[115,152,72,1.0],[115,152,73,1.0],[115,152,74,1.0],[115,152,75,1.0],[115,152,76,1.0],[115,152,77,1.0],[115,152,78,1.0],[115,152,79,1.0],[115,153,64,1.0],[115,153,65,1.0],[115,153,66,1.0],[115,153,67,1.0],[115,153,68,1.0],[115,153,69,1.0],[115,153,70,1.0],[115,153,71,1.0],[115,153,72,1.0],[115,153,73,1.0],[115,153,74,1.0],[115,153,75,1.0],[115,153,76,1.0],[115,153,77,1.0],[115,153,78,1.0],[115,153,79,1.0],[115,154,64,1.0],[115,154,65,1.0],[115,154,66,1.0],[115,154,67,1.0],[115,154,68,1.0],[115,154,69,1.0],[115,154,70,1.0],[115,154,71,1.0],[115,154,72,1.0],[115,154,73,1.0],[115,154,74,1.0],[115,154,75,1.0],[115,154,76,1.0],[115,154,77,1.0],[115,154,78,1.0],[115,154,79,1.0],[115,155,64,1.0],[115,155,65,1.0],[115,155,66,1.0],[115,155,67,1.0],[115,155,68,1.0],[115,155,69,1.0],[115,155,70,1.0],[115,155,71,1.0],[115,155,72,1.0],[115,155,73,1.0],[115,155,74,1.0],[115,155,75,1.0],[115,155,76,1.0],[115,155,77,1.0],[115,155,78,1.0],[115,155,79,1.0],[115,156,64,1.0],[115,156,65,1.0],[115,156,66,1.0],[115,156,67,1.0],[115,156,68,1.0],[115,156,69,1.0],[115,156,70,1.0],[115,156,71,1.0],[115,156,72,1.0],[115,156,73,1.0],[115,156,74,1.0],[115,156,75,1.0],[115,156,76,1.0],[115,156,77,1.0],[115,156,78,1.0],[115,156,79,1.0],[115,157,64,1.0],[115,157,65,1.0],[115,157,66,1.0],[115,157,67,1.0],[115,157,68,1.0],[115,157,69,1.0],[115,157,70,1.0],[115,157,71,1.0],[115,157,72,1.0],[115,157,73,1.0],[115,157,74,1.0],[115,157,75,1.0],[115,157,76,1.0],[115,157,77,1.0],[115,157,78,1.0],[115,157,79,1.0],[115,158,64,1.0],[115,158,65,1.0],[115,158,66,1.0],[115,158,67,1.0],[115,158,68,1.0],[115,158,69,1.0],[115,158,70,1.0],[115,158,71,1.0],[115,158,72,1.0],[115,158,73,1.0],[115,158,74,1.0],[115,158,75,1.0],[115,158,76,1.0],[115,158,77,1.0],[115,158,78,1.0],[115,158,79,1.0],[115,159,64,1.0],[115,159,65,1.0],[115,159,66,1.0],[115,159,67,1.0],[115,159,68,1.0],[115,159,69,1.0],[115,159,70,1.0],[115,159,71,1.0],[115,159,72,1.0],[115,159,73,1.0],[115,159,74,1.0],[115,159,75,1.0],[115,159,76,1.0],[115,159,77,1.0],[115,159,78,1.0],[115,159,79,1.0],[115,160,64,1.0],[115,160,65,1.0],[115,160,66,1.0],[115,160,67,1.0],[115,160,68,1.0],[115,160,69,1.0],[115,160,70,1.0],[115,160,71,1.0],[115,160,72,1.0],[115,160,73,1.0],[115,160,74,1.0],[115,160,75,1.0],[115,160,76,1.0],[115,160,77,1.0],[115,160,78,1.0],[115,160,79,1.0],[115,161,64,1.0],[115,161,65,1.0],[115,161,66,1.0],[115,161,67,1.0],[115,161,68,1.0],[115,161,69,1.0],[115,161,70,1.0],[115,161,71,1.0],[115,161,72,1.0],[115,161,73,1.0],[115,161,74,1.0],[115,161,75,1.0],[115,161,76,1.0],[115,161,77,1.0],[115,161,78,1.0],[115,161,79,1.0],[115,162,64,1.0],[115,162,65,1.0],[115,162,66,1.0],[115,162,67,1.0],[115,162,68,1.0],[115,162,69,1.0],[115,162,70,1.0],[115,162,71,1.0],[115,162,72,1.0],[115,162,73,1.0],[115,162,74,1.0],[115,162,75,1.0],[115,162,76,1.0],[115,162,77,1.0],[115,162,78,1.0],[115,162,79,1.0],[115,163,64,1.0],[115,163,65,1.0],[115,163,66,1.0],[115,163,67,1.0],[115,163,68,1.0],[115,163,69,1.0],[115,163,70,1.0],[115,163,71,1.0],[115,163,72,1.0],[115,163,73,1.0],[115,163,74,1.0],[115,163,75,1.0],[115,163,76,1.0],[115,163,77,1.0],[115,163,78,1.0],[115,163,79,1.0],[115,164,64,1.0],[115,164,65,1.0],[115,164,66,1.0],[115,164,67,1.0],[115,164,68,1.0],[115,164,69,1.0],[115,164,70,1.0],[115,164,71,1.0],[115,164,72,1.0],[115,164,73,1.0],[115,164,74,1.0],[115,164,75,1.0],[115,164,76,1.0],[115,164,77,1.0],[115,164,78,1.0],[115,164,79,1.0],[115,165,64,1.0],[115,165,65,1.0],[115,165,66,1.0],[115,165,67,1.0],[115,165,68,1.0],[115,165,69,1.0],[115,165,70,1.0],[115,165,71,1.0],[115,165,72,1.0],[115,165,73,1.0],[115,165,74,1.0],[115,165,75,1.0],[115,165,76,1.0],[115,165,77,1.0],[115,165,78,1.0],[115,165,79,1.0],[115,166,64,1.0],[115,166,65,1.0],[115,166,66,1.0],[115,166,67,1.0],[115,166,68,1.0],[115,166,69,1.0],[115,166,70,1.0],[115,166,71,1.0],[115,166,72,1.0],[115,166,73,1.0],[115,166,74,1.0],[115,166,75,1.0],[115,166,76,1.0],[115,166,77,1.0],[115,166,78,1.0],[115,166,79,1.0],[115,167,64,1.0],[115,167,65,1.0],[115,167,66,1.0],[115,167,67,1.0],[115,167,68,1.0],[115,167,69,1.0],[115,167,70,1.0],[115,167,71,1.0],[115,167,72,1.0],[115,167,73,1.0],[115,167,74,1.0],[115,167,75,1.0],[115,167,76,1.0],[115,167,77,1.0],[115,167,78,1.0],[115,167,79,1.0],[115,168,64,1.0],[115,168,65,1.0],[115,168,66,1.0],[115,168,67,1.0],[115,168,68,1.0],[115,168,69,1.0],[115,168,70,1.0],[115,168,71,1.0],[115,168,72,1.0],[115,168,73,1.0],[115,168,74,1.0],[115,168,75,1.0],[115,168,76,1.0],[115,168,77,1.0],[115,168,78,1.0],[115,168,79,1.0],[115,169,64,1.0],[115,169,65,1.0],[115,169,66,1.0],[115,169,67,1.0],[115,169,68,1.0],[115,169,69,1.0],[115,169,70,1.0],[115,169,71,1.0],[115,169,72,1.0],[115,169,73,1.0],[115,169,74,1.0],[115,169,75,1.0],[115,169,76,1.0],[115,169,77,1.0],[115,169,78,1.0],[115,169,79,1.0],[115,170,64,1.0],[115,170,65,1.0],[115,170,66,1.0],[115,170,67,1.0],[115,170,68,1.0],[115,170,69,1.0],[115,170,70,1.0],[115,170,71,1.0],[115,170,72,1.0],[115,170,73,1.0],[115,170,74,1.0],[115,170,75,1.0],[115,170,76,1.0],[115,170,77,1.0],[115,170,78,1.0],[115,170,79,1.0],[115,171,64,1.0],[115,171,65,1.0],[115,171,66,1.0],[115,171,67,1.0],[115,171,68,1.0],[115,171,69,1.0],[115,171,70,1.0],[115,171,71,1.0],[115,171,72,1.0],[115,171,73,1.0],[115,171,74,1.0],[115,171,75,1.0],[115,171,76,1.0],[115,171,77,1.0],[115,171,78,1.0],[115,171,79,1.0],[115,172,64,1.0],[115,172,65,1.0],[115,172,66,1.0],[115,172,67,1.0],[115,172,68,1.0],[115,172,69,1.0],[115,172,70,1.0],[115,172,71,1.0],[115,172,72,1.0],[115,172,73,1.0],[115,172,74,1.0],[115,172,75,1.0],[115,172,76,1.0],[115,172,77,1.0],[115,172,78,1.0],[115,172,79,1.0],[115,173,64,1.0],[115,173,65,1.0],[115,173,66,1.0],[115,173,67,1.0],[115,173,68,1.0],[115,173,69,1.0],[115,173,70,1.0],[115,173,71,1.0],[115,173,72,1.0],[115,173,73,1.0],[115,173,74,1.0],[115,173,75,1.0],[115,173,76,1.0],[115,173,77,1.0],[115,173,78,1.0],[115,173,79,1.0],[115,174,64,1.0],[115,174,65,1.0],[115,174,66,1.0],[115,174,67,1.0],[115,174,68,1.0],[115,174,69,1.0],[115,174,70,1.0],[115,174,71,1.0],[115,174,72,1.0],[115,174,73,1.0],[115,174,74,1.0],[115,174,75,1.0],[115,174,76,1.0],[115,174,77,1.0],[115,174,78,1.0],[115,174,79,1.0],[115,175,64,1.0],[115,175,65,1.0],[115,175,66,1.0],[115,175,67,1.0],[115,175,68,1.0],[115,175,69,1.0],[115,175,70,1.0],[115,175,71,1.0],[115,175,72,1.0],[115,175,73,1.0],[115,175,74,1.0],[115,175,75,1.0],[115,175,76,1.0],[115,175,77,1.0],[115,175,78,1.0],[115,175,79,1.0],[115,176,64,1.0],[115,176,65,1.0],[115,176,66,1.0],[115,176,67,1.0],[115,176,68,1.0],[115,176,69,1.0],[115,176,70,1.0],[115,176,71,1.0],[115,176,72,1.0],[115,176,73,1.0],[115,176,74,1.0],[115,176,75,1.0],[115,176,76,1.0],[115,176,77,1.0],[115,176,78,1.0],[115,176,79,1.0],[115,177,64,1.0],[115,177,65,1.0],[115,177,66,1.0],[115,177,67,1.0],[115,177,68,1.0],[115,177,69,1.0],[115,177,70,1.0],[115,177,71,1.0],[115,177,72,1.0],[115,177,73,1.0],[115,177,74,1.0],[115,177,75,1.0],[115,177,76,1.0],[115,177,77,1.0],[115,177,78,1.0],[115,177,79,1.0],[115,178,64,1.0],[115,178,65,1.0],[115,178,66,1.0],[115,178,67,1.0],[115,178,68,1.0],[115,178,69,1.0],[115,178,70,1.0],[115,178,71,1.0],[115,178,72,1.0],[115,178,73,1.0],[115,178,74,1.0],[115,178,75,1.0],[115,178,76,1.0],[115,178,77,1.0],[115,178,78,1.0],[115,178,79,1.0],[115,179,64,1.0],[115,179,65,1.0],[115,179,66,1.0],[115,179,67,1.0],[115,179,68,1.0],[115,179,69,1.0],[115,179,70,1.0],[115,179,71,1.0],[115,179,72,1.0],[115,179,73,1.0],[115,179,74,1.0],[115,179,75,1.0],[115,179,76,1.0],[115,179,77,1.0],[115,179,78,1.0],[115,179,79,1.0],[115,180,64,1.0],[115,180,65,1.0],[115,180,66,1.0],[115,180,67,1.0],[115,180,68,1.0],[115,180,69,1.0],[115,180,70,1.0],[115,180,71,1.0],[115,180,72,1.0],[115,180,73,1.0],[115,180,74,1.0],[115,180,75,1.0],[115,180,76,1.0],[115,180,77,1.0],[115,180,78,1.0],[115,180,79,1.0],[115,181,64,1.0],[115,181,65,1.0],[115,181,66,1.0],[115,181,67,1.0],[115,181,68,1.0],[115,181,69,1.0],[115,181,70,1.0],[115,181,71,1.0],[115,181,72,1.0],[115,181,73,1.0],[115,181,74,1.0],[115,181,75,1.0],[115,181,76,1.0],[115,181,77,1.0],[115,181,78,1.0],[115,181,79,1.0],[115,182,64,1.0],[115,182,65,1.0],[115,182,66,1.0],[115,182,67,1.0],[115,182,68,1.0],[115,182,69,1.0],[115,182,70,1.0],[115,182,71,1.0],[115,182,72,1.0],[115,182,73,1.0],[115,182,74,1.0],[115,182,75,1.0],[115,182,76,1.0],[115,182,77,1.0],[115,182,78,1.0],[115,182,79,1.0],[115,183,64,1.0],[115,183,65,1.0],[115,183,66,1.0],[115,183,67,1.0],[115,183,68,1.0],[115,183,69,1.0],[115,183,70,1.0],[115,183,71,1.0],[115,183,72,1.0],[115,183,73,1.0],[115,183,74,1.0],[115,183,75,1.0],[115,183,76,1.0],[115,183,77,1.0],[115,183,78,1.0],[115,183,79,1.0],[115,184,64,1.0],[115,184,65,1.0],[115,184,66,1.0],[115,184,67,1.0],[115,184,68,1.0],[115,184,69,1.0],[115,184,70,1.0],[115,184,71,1.0],[115,184,72,1.0],[115,184,73,1.0],[115,184,74,1.0],[115,184,75,1.0],[115,184,76,1.0],[115,184,77,1.0],[115,184,78,1.0],[115,184,79,1.0],[115,185,64,1.0],[115,185,65,1.0],[115,185,66,1.0],[115,185,67,1.0],[115,185,68,1.0],[115,185,69,1.0],[115,185,70,1.0],[115,185,71,1.0],[115,185,72,1.0],[115,185,73,1.0],[115,185,74,1.0],[115,185,75,1.0],[115,185,76,1.0],[115,185,77,1.0],[115,185,78,1.0],[115,185,79,1.0],[115,186,64,1.0],[115,186,65,1.0],[115,186,66,1.0],[115,186,67,1.0],[115,186,68,1.0],[115,186,69,1.0],[115,186,70,1.0],[115,186,71,1.0],[115,186,72,1.0],[115,186,73,1.0],[115,186,74,1.0],[115,186,75,1.0],[115,186,76,1.0],[115,186,77,1.0],[115,186,78,1.0],[115,186,79,1.0],[115,187,64,1.0],[115,187,65,1.0],[115,187,66,1.0],[115,187,67,1.0],[115,187,68,1.0],[115,187,69,1.0],[115,187,70,1.0],[115,187,71,1.0],[115,187,72,1.0],[115,187,73,1.0],[115,187,74,1.0],[115,187,75,1.0],[115,187,76,1.0],[115,187,77,1.0],[115,187,78,1.0],[115,187,79,1.0],[115,188,64,1.0],[115,188,65,1.0],[115,188,66,1.0],[115,188,67,1.0],[115,188,68,1.0],[115,188,69,1.0],[115,188,70,1.0],[115,188,71,1.0],[115,188,72,1.0],[115,188,73,1.0],[115,188,74,1.0],[115,188,75,1.0],[115,188,76,1.0],[115,188,77,1.0],[115,188,78,1.0],[115,188,79,1.0],[115,189,64,1.0],[115,189,65,1.0],[115,189,66,1.0],[115,189,67,1.0],[115,189,68,1.0],[115,189,69,1.0],[115,189,70,1.0],[115,189,71,1.0],[115,189,72,1.0],[115,189,73,1.0],[115,189,74,1.0],[115,189,75,1.0],[115,189,76,1.0],[115,189,77,1.0],[115,189,78,1.0],[115,189,79,1.0],[115,190,64,1.0],[115,190,65,1.0],[115,190,66,1.0],[115,190,67,1.0],[115,190,68,1.0],[115,190,69,1.0],[115,190,70,1.0],[115,190,71,1.0],[115,190,72,1.0],[115,190,73,1.0],[115,190,74,1.0],[115,190,75,1.0],[115,190,76,1.0],[115,190,77,1.0],[115,190,78,1.0],[115,190,79,1.0],[115,191,64,1.0],[115,191,65,1.0],[115,191,66,1.0],[115,191,67,1.0],[115,191,68,1.0],[115,191,69,1.0],[115,191,70,1.0],[115,191,71,1.0],[115,191,72,1.0],[115,191,73,1.0],[115,191,74,1.0],[115,191,75,1.0],[115,191,76,1.0],[115,191,77,1.0],[115,191,78,1.0],[115,191,79,1.0],[115,192,64,1.0],[115,192,65,1.0],[115,192,66,1.0],[115,192,67,1.0],[115,192,68,1.0],[115,192,69,1.0],[115,192,70,1.0],[115,192,71,1.0],[115,192,72,1.0],[115,192,73,1.0],[115,192,74,1.0],[115,192,75,1.0],[115,192,76,1.0],[115,192,77,1.0],[115,192,78,1.0],[115,192,79,1.0],[115,193,64,1.0],[115,193,65,1.0],[115,193,66,1.0],[115,193,67,1.0],[115,193,68,1.0],[115,193,69,1.0],[115,193,70,1.0],[115,193,71,1.0],[115,193,72,1.0],[115,193,73,1.0],[115,193,74,1.0],[115,193,75,1.0],[115,193,76,1.0],[115,193,77,1.0],[115,193,78,1.0],[115,193,79,1.0],[115,194,64,1.0],[115,194,65,1.0],[115,194,66,1.0],[115,194,67,1.0],[115,194,68,1.0],[115,194,69,1.0],[115,194,70,1.0],[115,194,71,1.0],[115,194,72,1.0],[115,194,73,1.0],[115,194,74,1.0],[115,194,75,1.0],[115,194,76,1.0],[115,194,77,1.0],[115,194,78,1.0],[115,194,79,1.0],[115,195,64,1.0],[115,195,65,1.0],[115,195,66,1.0],[115,195,67,1.0],[115,195,68,1.0],[115,195,69,1.0],[115,195,70,1.0],[115,195,71,1.0],[115,195,72,1.0],[115,195,73,1.0],[115,195,74,1.0],[115,195,75,1.0],[115,195,76,1.0],[115,195,77,1.0],[115,195,78,1.0],[115,195,79,1.0],[115,196,64,1.0],[115,196,65,1.0],[115,196,66,1.0],[115,196,67,1.0],[115,196,68,1.0],[115,196,69,1.0],[115,196,70,1.0],[115,196,71,1.0],[115,196,72,1.0],[115,196,73,1.0],[115,196,74,1.0],[115,196,75,1.0],[115,196,76,1.0],[115,196,77,1.0],[115,196,78,1.0],[115,196,79,1.0],[115,197,64,1.0],[115,197,65,1.0],[115,197,66,1.0],[115,197,67,1.0],[115,197,68,1.0],[115,197,69,1.0],[115,197,70,1.0],[115,197,71,1.0],[115,197,72,1.0],[115,197,73,1.0],[115,197,74,1.0],[115,197,75,1.0],[115,197,76,1.0],[115,197,77,1.0],[115,197,78,1.0],[115,197,79,1.0],[115,198,64,1.0],[115,198,65,1.0],[115,198,66,1.0],[115,198,67,1.0],[115,198,68,1.0],[115,198,69,1.0],[115,198,70,1.0],[115,198,71,1.0],[115,198,72,1.0],[115,198,73,1.0],[115,198,74,1.0],[115,198,75,1.0],[115,198,76,1.0],[115,198,77,1.0],[115,198,78,1.0],[115,198,79,1.0],[115,199,64,1.0],[115,199,65,1.0],[115,199,66,1.0],[115,199,67,1.0],[115,199,68,1.0],[115,199,69,1.0],[115,199,70,1.0],[115,199,71,1.0],[115,199,72,1.0],[115,199,73,1.0],[115,199,74,1.0],[115,199,75,1.0],[115,199,76,1.0],[115,199,77,1.0],[115,199,78,1.0],[115,199,79,1.0],[115,200,64,1.0],[115,200,65,1.0],[115,200,66,1.0],[115,200,67,1.0],[115,200,68,1.0],[115,200,69,1.0],[115,200,70,1.0],[115,200,71,1.0],[115,200,72,1.0],[115,200,73,1.0],[115,200,74,1.0],[115,200,75,1.0],[115,200,76,1.0],[115,200,77,1.0],[115,200,78,1.0],[115,200,79,1.0],[115,201,64,1.0],[115,201,65,1.0],[115,201,66,1.0],[115,201,67,1.0],[115,201,68,1.0],[115,201,69,1.0],[115,201,70,1.0],[115,201,71,1.0],[115,201,72,1.0],[115,201,73,1.0],[115,201,74,1.0],[115,201,75,1.0],[115,201,76,1.0],[115,201,77,1.0],[115,201,78,1.0],[115,201,79,1.0],[115,202,64,1.0],[115,202,65,1.0],[115,202,66,1.0],[115,202,67,1.0],[115,202,68,1.0],[115,202,69,1.0],[115,202,70,1.0],[115,202,71,1.0],[115,202,72,1.0],[115,202,73,1.0],[115,202,74,1.0],[115,202,75,1.0],[115,202,76,1.0],[115,202,77,1.0],[115,202,78,1.0],[115,202,79,1.0],[115,203,64,1.0],[115,203,65,1.0],[115,203,66,1.0],[115,203,67,1.0],[115,203,68,1.0],[115,203,69,1.0],[115,203,70,1.0],[115,203,71,1.0],[115,203,72,1.0],[115,203,73,1.0],[115,203,74,1.0],[115,203,75,1.0],[115,203,76,1.0],[115,203,77,1.0],[115,203,78,1.0],[115,203,79,1.0],[115,204,64,1.0],[115,204,65,1.0],[115,204,66,1.0],[115,204,67,1.0],[115,204,68,1.0],[115,204,69,1.0],[115,204,70,1.0],[115,204,71,1.0],[115,204,72,1.0],[115,204,73,1.0],[115,204,74,1.0],[115,204,75,1.0],[115,204,76,1.0],[115,204,77,1.0],[115,204,78,1.0],[115,204,79,1.0],[115,205,64,1.0],[115,205,65,1.0],[115,205,66,1.0],[115,205,67,1.0],[115,205,68,1.0],[115,205,69,1.0],[115,205,70,1.0],[115,205,71,1.0],[115,205,72,1.0],[115,205,73,1.0],[115,205,74,1.0],[115,205,75,1.0],[115,205,76,1.0],[115,205,77,1.0],[115,205,78,1.0],[115,205,79,1.0],[115,206,64,1.0],[115,206,65,1.0],[115,206,66,1.0],[115,206,67,1.0],[115,206,68,1.0],[115,206,69,1.0],[115,206,70,1.0],[115,206,71,1.0],[115,206,72,1.0],[115,206,73,1.0],[115,206,74,1.0],[115,206,75,1.0],[115,206,76,1.0],[115,206,77,1.0],[115,206,78,1.0],[115,206,79,1.0],[115,207,64,1.0],[115,207,65,1.0],[115,207,66,1.0],[115,207,67,1.0],[115,207,68,1.0],[115,207,69,1.0],[115,207,70,1.0],[115,207,71,1.0],[115,207,72,1.0],[115,207,73,1.0],[115,207,74,1.0],[115,207,75,1.0],[115,207,76,1.0],[115,207,77,1.0],[115,207,78,1.0],[115,207,79,1.0],[115,208,64,1.0],[115,208,65,1.0],[115,208,66,1.0],[115,208,67,1.0],[115,208,68,1.0],[115,208,69,1.0],[115,208,70,1.0],[115,208,71,1.0],[115,208,72,1.0],[115,208,73,1.0],[115,208,74,1.0],[115,208,75,1.0],[115,208,76,1.0],[115,208,77,1.0],[115,208,78,1.0],[115,208,79,1.0],[115,209,64,1.0],[115,209,65,1.0],[115,209,66,1.0],[115,209,67,1.0],[115,209,68,1.0],[115,209,69,1.0],[115,209,70,1.0],[115,209,71,1.0],[115,209,72,1.0],[115,209,73,1.0],[115,209,74,1.0],[115,209,75,1.0],[115,209,76,1.0],[115,209,77,1.0],[115,209,78,1.0],[115,209,79,1.0],[115,210,64,1.0],[115,210,65,1.0],[115,210,66,1.0],[115,210,67,1.0],[115,210,68,1.0],[115,210,69,1.0],[115,210,70,1.0],[115,210,71,1.0],[115,210,72,1.0],[115,210,73,1.0],[115,210,74,1.0],[115,210,75,1.0],[115,210,76,1.0],[115,210,77,1.0],[115,210,78,1.0],[115,210,79,1.0],[115,211,64,1.0],[115,211,65,1.0],[115,211,66,1.0],[115,211,67,1.0],[115,211,68,1.0],[115,211,69,1.0],[115,211,70,1.0],[115,211,71,1.0],[115,211,72,1.0],[115,211,73,1.0],[115,211,74,1.0],[115,211,75,1.0],[115,211,76,1.0],[115,211,77,1.0],[115,211,78,1.0],[115,211,79,1.0],[115,212,64,1.0],[115,212,65,1.0],[115,212,66,1.0],[115,212,67,1.0],[115,212,68,1.0],[115,212,69,1.0],[115,212,70,1.0],[115,212,71,1.0],[115,212,72,1.0],[115,212,73,1.0],[115,212,74,1.0],[115,212,75,1.0],[115,212,76,1.0],[115,212,77,1.0],[115,212,78,1.0],[115,212,79,1.0],[115,213,64,1.0],[115,213,65,1.0],[115,213,66,1.0],[115,213,67,1.0],[115,213,68,1.0],[115,213,69,1.0],[115,213,70,1.0],[115,213,71,1.0],[115,213,72,1.0],[115,213,73,1.0],[115,213,74,1.0],[115,213,75,1.0],[115,213,76,1.0],[115,213,77,1.0],[115,213,78,1.0],[115,213,79,1.0],[115,214,64,1.0],[115,214,65,1.0],[115,214,66,1.0],[115,214,67,1.0],[115,214,68,1.0],[115,214,69,1.0],[115,214,70,1.0],[115,214,71,1.0],[115,214,72,1.0],[115,214,73,1.0],[115,214,74,1.0],[115,214,75,1.0],[115,214,76,1.0],[115,214,77,1.0],[115,214,78,1.0],[115,214,79,1.0],[115,215,64,1.0],[115,215,65,1.0],[115,215,66,1.0],[115,215,67,1.0],[115,215,68,1.0],[115,215,69,1.0],[115,215,70,1.0],[115,215,71,1.0],[115,215,72,1.0],[115,215,73,1.0],[115,215,74,1.0],[115,215,75,1.0],[115,215,76,1.0],[115,215,77,1.0],[115,215,78,1.0],[115,215,79,1.0],[115,216,64,1.0],[115,216,65,1.0],[115,216,66,1.0],[115,216,67,1.0],[115,216,68,1.0],[115,216,69,1.0],[115,216,70,1.0],[115,216,71,1.0],[115,216,72,1.0],[115,216,73,1.0],[115,216,74,1.0],[115,216,75,1.0],[115,216,76,1.0],[115,216,77,1.0],[115,216,78,1.0],[115,216,79,1.0],[115,217,64,1.0],[115,217,65,1.0],[115,217,66,1.0],[115,217,67,1.0],[115,217,68,1.0],[115,217,69,1.0],[115,217,70,1.0],[115,217,71,1.0],[115,217,72,1.0],[115,217,73,1.0],[115,217,74,1.0],[115,217,75,1.0],[115,217,76,1.0],[115,217,77,1.0],[115,217,78,1.0],[115,217,79,1.0],[115,218,64,1.0],[115,218,65,1.0],[115,218,66,1.0],[115,218,67,1.0],[115,218,68,1.0],[115,218,69,1.0],[115,218,70,1.0],[115,218,71,1.0],[115,218,72,1.0],[115,218,73,1.0],[115,218,74,1.0],[115,218,75,1.0],[115,218,76,1.0],[115,218,77,1.0],[115,218,78,1.0],[115,218,79,1.0],[115,219,64,1.0],[115,219,65,1.0],[115,219,66,1.0],[115,219,67,1.0],[115,219,68,1.0],[115,219,69,1.0],[115,219,70,1.0],[115,219,71,1.0],[115,219,72,1.0],[115,219,73,1.0],[115,219,74,1.0],[115,219,75,1.0],[115,219,76,1.0],[115,219,77,1.0],[115,219,78,1.0],[115,219,79,1.0],[115,220,64,1.0],[115,220,65,1.0],[115,220,66,1.0],[115,220,67,1.0],[115,220,68,1.0],[115,220,69,1.0],[115,220,70,1.0],[115,220,71,1.0],[115,220,72,1.0],[115,220,73,1.0],[115,220,74,1.0],[115,220,75,1.0],[115,220,76,1.0],[115,220,77,1.0],[115,220,78,1.0],[115,220,79,1.0],[115,221,64,1.0],[115,221,65,1.0],[115,221,66,1.0],[115,221,67,1.0],[115,221,68,1.0],[115,221,69,1.0],[115,221,70,1.0],[115,221,71,1.0],[115,221,72,1.0],[115,221,73,1.0],[115,221,74,1.0],[115,221,75,1.0],[115,221,76,1.0],[115,221,77,1.0],[115,221,78,1.0],[115,221,79,1.0],[115,222,64,1.0],[115,222,65,1.0],[115,222,66,1.0],[115,222,67,1.0],[115,222,68,1.0],[115,222,69,1.0],[115,222,70,1.0],[115,222,71,1.0],[115,222,72,1.0],[115,222,73,1.0],[115,222,74,1.0],[115,222,75,1.0],[115,222,76,1.0],[115,222,77,1.0],[115,222,78,1.0],[115,222,79,1.0],[115,223,64,1.0],[115,223,65,1.0],[115,223,66,1.0],[115,223,67,1.0],[115,223,68,1.0],[115,223,69,1.0],[115,223,70,1.0],[115,223,71,1.0],[115,223,72,1.0],[115,223,73,1.0],[115,223,74,1.0],[115,223,75,1.0],[115,223,76,1.0],[115,223,77,1.0],[115,223,78,1.0],[115,223,79,1.0],[115,224,64,1.0],[115,224,65,1.0],[115,224,66,1.0],[115,224,67,1.0],[115,224,68,1.0],[115,224,69,1.0],[115,224,70,1.0],[115,224,71,1.0],[115,224,72,1.0],[115,224,73,1.0],[115,224,74,1.0],[115,224,75,1.0],[115,224,76,1.0],[115,224,77,1.0],[115,224,78,1.0],[115,224,79,1.0],[115,225,64,1.0],[115,225,65,1.0],[115,225,66,1.0],[115,225,67,1.0],[115,225,68,1.0],[115,225,69,1.0],[115,225,70,1.0],[115,225,71,1.0],[115,225,72,1.0],[115,225,73,1.0],[115,225,74,1.0],[115,225,75,1.0],[115,225,76,1.0],[115,225,77,1.0],[115,225,78,1.0],[115,225,79,1.0],[115,226,64,1.0],[115,226,65,1.0],[115,226,66,1.0],[115,226,67,1.0],[115,226,68,1.0],[115,226,69,1.0],[115,226,70,1.0],[115,226,71,1.0],[115,226,72,1.0],[115,226,73,1.0],[115,226,74,1.0],[115,226,75,1.0],[115,226,76,1.0],[115,226,77,1.0],[115,226,78,1.0],[115,226,79,1.0],[115,227,64,1.0],[115,227,65,1.0],[115,227,66,1.0],[115,227,67,1.0],[115,227,68,1.0],[115,227,69,1.0],[115,227,70,1.0],[115,227,71,1.0],[115,227,72,1.0],[115,227,73,1.0],[115,227,74,1.0],[115,227,75,1.0],[115,227,76,1.0],[115,227,77,1.0],[115,227,78,1.0],[115,227,79,1.0],[115,228,64,1.0],[115,228,65,1.0],[115,228,66,1.0],[115,228,67,1.0],[115,228,68,1.0],[115,228,69,1.0],[115,228,70,1.0],[115,228,71,1.0],[115,228,72,1.0],[115,228,73,1.0],[115,228,74,1.0],[115,228,75,1.0],[115,228,76,1.0],[115,228,77,1.0],[115,228,78,1.0],[115,228,79,1.0],[115,229,64,1.0],[115,229,65,1.0],[115,229,66,1.0],[115,229,67,1.0],[115,229,68,1.0],[115,229,69,1.0],[115,229,70,1.0],[115,229,71,1.0],[115,229,72,1.0],[115,229,73,1.0],[115,229,74,1.0],[115,229,75,1.0],[115,229,76,1.0],[115,229,77,1.0],[115,229,78,1.0],[115,229,79,1.0],[115,230,64,1.0],[115,230,65,1.0],[115,230,66,1.0],[115,230,67,1.0],[115,230,68,1.0],[115,230,69,1.0],[115,230,70,1.0],[115,230,71,1.0],[115,230,72,1.0],[115,230,73,1.0],[115,230,74,1.0],[115,230,75,1.0],[115,230,76,1.0],[115,230,77,1.0],[115,230,78,1.0],[115,230,79,1.0],[115,231,64,1.0],[115,231,65,1.0],[115,231,66,1.0],[115,231,67,1.0],[115,231,68,1.0],[115,231,69,1.0],[115,231,70,1.0],[115,231,71,1.0],[115,231,72,1.0],[115,231,73,1.0],[115,231,74,1.0],[115,231,75,1.0],[115,231,76,1.0],[115,231,77,1.0],[115,231,78,1.0],[115,231,79,1.0],[115,232,64,1.0],[115,232,65,1.0],[115,232,66,1.0],[115,232,67,1.0],[115,232,68,1.0],[115,232,69,1.0],[115,232,70,1.0],[115,232,71,1.0],[115,232,72,1.0],[115,232,73,1.0],[115,232,74,1.0],[115,232,75,1.0],[115,232,76,1.0],[115,232,77,1.0],[115,232,78,1.0],[115,232,79,1.0],[115,233,64,1.0],[115,233,65,1.0],[115,233,66,1.0],[115,233,67,1.0],[115,233,68,1.0],[115,233,69,1.0],[115,233,70,1.0],[115,233,71,1.0],[115,233,72,1.0],[115,233,73,1.0],[115,233,74,1.0],[115,233,75,1.0],[115,233,76,1.0],[115,233,77,1.0],[115,233,78,1.0],[115,233,79,1.0],[115,234,64,1.0],[115,234,65,1.0],[115,234,66,1.0],[115,234,67,1.0],[115,234,68,1.0],[115,234,69,1.0],[115,234,70,1.0],[115,234,71,1.0],[115,234,72,1.0],[115,234,73,1.0],[115,234,74,1.0],[115,234,75,1.0],[115,234,76,1.0],[115,234,77,1.0],[115,234,78,1.0],[115,234,79,1.0],[115,235,64,1.0],[115,235,65,1.0],[115,235,66,1.0],[115,235,67,1.0],[115,235,68,1.0],[115,235,69,1.0],[115,235,70,1.0],[115,235,71,1.0],[115,235,72,1.0],[115,235,73,1.0],[115,235,74,1.0],[115,235,75,1.0],[115,235,76,1.0],[115,235,77,1.0],[115,235,78,1.0],[115,235,79,1.0],[115,236,64,1.0],[115,236,65,1.0],[115,236,66,1.0],[115,236,67,1.0],[115,236,68,1.0],[115,236,69,1.0],[115,236,70,1.0],[115,236,71,1.0],[115,236,72,1.0],[115,236,73,1.0],[115,236,74,1.0],[115,236,75,1.0],[115,236,76,1.0],[115,236,77,1.0],[115,236,78,1.0],[115,236,79,1.0],[115,237,64,1.0],[115,237,65,1.0],[115,237,66,1.0],[115,237,67,1.0],[115,237,68,1.0],[115,237,69,1.0],[115,237,70,1.0],[115,237,71,1.0],[115,237,72,1.0],[115,237,73,1.0],[115,237,74,1.0],[115,237,75,1.0],[115,237,76,1.0],[115,237,77,1.0],[115,237,78,1.0],[115,237,79,1.0],[115,238,64,1.0],[115,238,65,1.0],[115,238,66,1.0],[115,238,67,1.0],[115,238,68,1.0],[115,238,69,1.0],[115,238,70,1.0],[115,238,71,1.0],[115,238,72,1.0],[115,238,73,1.0],[115,238,74,1.0],[115,238,75,1.0],[115,238,76,1.0],[115,238,77,1.0],[115,238,78,1.0],[115,238,79,1.0],[115,239,64,1.0],[115,239,65,1.0],[115,239,66,1.0],[115,239,67,1.0],[115,239,68,1.0],[115,239,69,1.0],[115,239,70,1.0],[115,239,71,1.0],[115,239,72,1.0],[115,239,73,1.0],[115,239,74,1.0],[115,239,75,1.0],[115,239,76,1.0],[115,239,77,1.0],[115,239,78,1.0],[115,239,79,1.0],[115,240,64,1.0],[115,240,65,1.0],[115,240,66,1.0],[115,240,67,1.0],[115,240,68,1.0],[115,240,69,1.0],[115,240,70,1.0],[115,240,71,1.0],[115,240,72,1.0],[115,240,73,1.0],[115,240,74,1.0],[115,240,75,1.0],[115,240,76,1.0],[115,240,77,1.0],[115,240,78,1.0],[115,240,79,1.0],[115,241,64,1.0],[115,241,65,1.0],[115,241,66,1.0],[115,241,67,1.0],[115,241,68,1.0],[115,241,69,1.0],[115,241,70,1.0],[115,241,71,1.0],[115,241,72,1.0],[115,241,73,1.0],[115,241,74,1.0],[115,241,75,1.0],[115,241,76,1.0],[115,241,77,1.0],[115,241,78,1.0],[115,241,79,1.0],[115,242,64,1.0],[115,242,65,1.0],[115,242,66,1.0],[115,242,67,1.0],[115,242,68,1.0],[115,242,69,1.0],[115,242,70,1.0],[115,242,71,1.0],[115,242,72,1.0],[115,242,73,1.0],[115,242,74,1.0],[115,242,75,1.0],[115,242,76,1.0],[115,242,77,1.0],[115,242,78,1.0],[115,242,79,1.0],[115,243,64,1.0],[115,243,65,1.0],[115,243,66,1.0],[115,243,67,1.0],[115,243,68,1.0],[115,243,69,1.0],[115,243,70,1.0],[115,243,71,1.0],[115,243,72,1.0],[115,243,73,1.0],[115,243,74,1.0],[115,243,75,1.0],[115,243,76,1.0],[115,243,77,1.0],[115,243,78,1.0],[115,243,79,1.0],[115,244,64,1.0],[115,244,65,1.0],[115,244,66,1.0],[115,244,67,1.0],[115,244,68,1.0],[115,244,69,1.0],[115,244,70,1.0],[115,244,71,1.0],[115,244,72,1.0],[115,244,73,1.0],[115,244,74,1.0],[115,244,75,1.0],[115,244,76,1.0],[115,244,77,1.0],[115,244,78,1.0],[115,244,79,1.0],[115,245,64,1.0],[115,245,65,1.0],[115,245,66,1.0],[115,245,67,1.0],[115,245,68,1.0],[115,245,69,1.0],[115,245,70,1.0],[115,245,71,1.0],[115,245,72,1.0],[115,245,73,1.0],[115,245,74,1.0],[115,245,75,1.0],[115,245,76,1.0],[115,245,77,1.0],[115,245,78,1.0],[115,245,79,1.0],[115,246,64,1.0],[115,246,65,1.0],[115,246,66,1.0],[115,246,67,1.0],[115,246,68,1.0],[115,246,69,1.0],[115,246,70,1.0],[115,246,71,1.0],[115,246,72,1.0],[115,246,73,1.0],[115,246,74,1.0],[115,246,75,1.0],[115,246,76,1.0],[115,246,77,1.0],[115,246,78,1.0],[115,246,79,1.0],[115,247,64,1.0],[115,247,65,1.0],[115,247,66,1.0],[115,247,67,1.0],[115,247,68,1.0],[115,247,69,1.0],[115,247,70,1.0],[115,247,71,1.0],[115,247,72,1.0],[115,247,73,1.0],[115,247,74,1.0],[115,247,75,1.0],[115,247,76,1.0],[115,247,77,1.0],[115,247,78,1.0],[115,247,79,1.0],[115,248,64,1.0],[115,248,65,1.0],[115,248,66,1.0],[115,248,67,1.0],[115,248,68,1.0],[115,248,69,1.0],[115,248,70,1.0],[115,248,71,1.0],[115,248,72,1.0],[115,248,73,1.0],[115,248,74,1.0],[115,248,75,1.0],[115,248,76,1.0],[115,248,77,1.0],[115,248,78,1.0],[115,248,79,1.0],[115,249,64,1.0],[115,249,65,1.0],[115,249,66,1.0],[115,249,67,1.0],[115,249,68,1.0],[115,249,69,1.0],[115,249,70,1.0],[115,249,71,1.0],[115,249,72,1.0],[115,249,73,1.0],[115,249,74,1.0],[115,249,75,1.0],[115,249,76,1.0],[115,249,77,1.0],[115,249,78,1.0],[115,249,79,1.0],[115,250,64,1.0],[115,250,65,1.0],[115,250,66,1.0],[115,250,67,1.0],[115,250,68,1.0],[115,250,69,1.0],[115,250,70,1.0],[115,250,71,1.0],[115,250,72,1.0],[115,250,73,1.0],[115,250,74,1.0],[115,250,75,1.0],[115,250,76,1.0],[115,250,77,1.0],[115,250,78,1.0],[115,250,79,1.0],[115,251,64,1.0],[115,251,65,1.0],[115,251,66,1.0],[115,251,67,1.0],[115,251,68,1.0],[115,251,69,1.0],[115,251,70,1.0],[115,251,71,1.0],[115,251,72,1.0],[115,251,73,1.0],[115,251,74,1.0],[115,251,75,1.0],[115,251,76,1.0],[115,251,77,1.0],[115,251,78,1.0],[115,251,79,1.0],[115,252,64,1.0],[115,252,65,1.0],[115,252,66,1.0],[115,252,67,1.0],[115,252,68,1.0],[115,252,69,1.0],[115,252,70,1.0],[115,252,71,1.0],[115,252,72,1.0],[115,252,73,1.0],[115,252,74,1.0],[115,252,75,1.0],[115,252,76,1.0],[115,252,77,1.0],[115,252,78,1.0],[115,252,79,1.0],[115,253,64,1.0],[115,253,65,1.0],[115,253,66,1.0],[115,253,67,1.0],[115,253,68,1.0],[115,253,69,1.0],[115,253,70,1.0],[115,253,71,1.0],[115,253,72,1.0],[115,253,73,1.0],[115,253,74,1.0],[115,253,75,1.0],[115,253,76,1.0],[115,253,77,1.0],[115,253,78,1.0],[115,253,79,1.0],[115,254,64,1.0],[115,254,65,1.0],[115,254,66,1.0],[115,254,67,1.0],[115,254,68,1.0],[115,254,69,1.0],[115,254,70,1.0],[115,254,71,1.0],[115,254,72,1.0],[115,254,73,1.0],[115,254,74,1.0],[115,254,75,1.0],[115,254,76,1.0],[115,254,77,1.0],[115,254,78,1.0],[115,254,79,1.0],[115,255,64,1.0],[115,255,65,1.0],[115,255,66,1.0],[115,255,67,1.0],[115,255,68,1.0],[115,255,69,1.0],[115,255,70,1.0],[115,255,71,1.0],[115,255,72,1.0],[115,255,73,1.0],[115,255,74,1.0],[115,255,75,1.0],[115,255,76,1.0],[115,255,77,1.0],[115,255,78,1.0],[115,255,79,1.0],[115,256,64,1.0],[115,256,65,1.0],[115,256,66,1.0],[115,256,67,1.0],[115,256,68,1.0],[115,256,69,1.0],[115,256,70,1.0],[115,256,71,1.0],[115,256,72,1.0],[115,256,73,1.0],[115,256,74,1.0],[115,256,75,1.0],[115,256,76,1.0],[115,256,77,1.0],[115,256,78,1.0],[115,256,79,1.0],[115,257,64,1.0],[115,257,65,1.0],[115,257,66,1.0],[115,257,67,1.0],[115,257,68,1.0],[115,257,69,1.0],[115,257,70,1.0],[115,257,71,1.0],[115,257,72,1.0],[115,257,73,1.0],[115,257,74,1.0],[115,257,75,1.0],[115,257,76,1.0],[115,257,77,1.0],[115,257,78,1.0],[115,257,79,1.0],[115,258,64,1.0],[115,258,65,1.0],[115,258,66,1.0],[115,258,67,1.0],[115,258,68,1.0],[115,258,69,1.0],[115,258,70,1.0],[115,258,71,1.0],[115,258,72,1.0],[115,258,73,1.0],[115,258,74,1.0],[115,258,75,1.0],[115,258,76,1.0],[115,258,77,1.0],[115,258,78,1.0],[115,258,79,1.0],[115,259,64,1.0],[115,259,65,1.0],[115,259,66,1.0],[115,259,67,1.0],[115,259,68,1.0],[115,259,69,1.0],[115,259,70,1.0],[115,259,71,1.0],[115,259,72,1.0],[115,259,73,1.0],[115,259,74,1.0],[115,259,75,1.0],[115,259,76,1.0],[115,259,77,1.0],[115,259,78,1.0],[115,259,79,1.0],[115,260,64,1.0],[115,260,65,1.0],[115,260,66,1.0],[115,260,67,1.0],[115,260,68,1.0],[115,260,69,1.0],[115,260,70,1.0],[115,260,71,1.0],[115,260,72,1.0],[115,260,73,1.0],[115,260,74,1.0],[115,260,75,1.0],[115,260,76,1.0],[115,260,77,1.0],[115,260,78,1.0],[115,260,79,1.0],[115,261,64,1.0],[115,261,65,1.0],[115,261,66,1.0],[115,261,67,1.0],[115,261,68,1.0],[115,261,69,1.0],[115,261,70,1.0],[115,261,71,1.0],[115,261,72,1.0],[115,261,73,1.0],[115,261,74,1.0],[115,261,75,1.0],[115,261,76,1.0],[115,261,77,1.0],[115,261,78,1.0],[115,261,79,1.0],[115,262,64,1.0],[115,262,65,1.0],[115,262,66,1.0],[115,262,67,1.0],[115,262,68,1.0],[115,262,69,1.0],[115,262,70,1.0],[115,262,71,1.0],[115,262,72,1.0],[115,262,73,1.0],[115,262,74,1.0],[115,262,75,1.0],[115,262,76,1.0],[115,262,77,1.0],[115,262,78,1.0],[115,262,79,1.0],[115,263,64,1.0],[115,263,65,1.0],[115,263,66,1.0],[115,263,67,1.0],[115,263,68,1.0],[115,263,69,1.0],[115,263,70,1.0],[115,263,71,1.0],[115,263,72,1.0],[115,263,73,1.0],[115,263,74,1.0],[115,263,75,1.0],[115,263,76,1.0],[115,263,77,1.0],[115,263,78,1.0],[115,263,79,1.0],[115,264,64,1.0],[115,264,65,1.0],[115,264,66,1.0],[115,264,67,1.0],[115,264,68,1.0],[115,264,69,1.0],[115,264,70,1.0],[115,264,71,1.0],[115,264,72,1.0],[115,264,73,1.0],[115,264,74,1.0],[115,264,75,1.0],[115,264,76,1.0],[115,264,77,1.0],[115,264,78,1.0],[115,264,79,1.0],[115,265,64,1.0],[115,265,65,1.0],[115,265,66,1.0],[115,265,67,1.0],[115,265,68,1.0],[115,265,69,1.0],[115,265,70,1.0],[115,265,71,1.0],[115,265,72,1.0],[115,265,73,1.0],[115,265,74,1.0],[115,265,75,1.0],[115,265,76,1.0],[115,265,77,1.0],[115,265,78,1.0],[115,265,79,1.0],[115,266,64,1.0],[115,266,65,1.0],[115,266,66,1.0],[115,266,67,1.0],[115,266,68,1.0],[115,266,69,1.0],[115,266,70,1.0],[115,266,71,1.0],[115,266,72,1.0],[115,266,73,1.0],[115,266,74,1.0],[115,266,75,1.0],[115,266,76,1.0],[115,266,77,1.0],[115,266,78,1.0],[115,266,79,1.0],[115,267,64,1.0],[115,267,65,1.0],[115,267,66,1.0],[115,267,67,1.0],[115,267,68,1.0],[115,267,69,1.0],[115,267,70,1.0],[115,267,71,1.0],[115,267,72,1.0],[115,267,73,1.0],[115,267,74,1.0],[115,267,75,1.0],[115,267,76,1.0],[115,267,77,1.0],[115,267,78,1.0],[115,267,79,1.0],[115,268,64,1.0],[115,268,65,1.0],[115,268,66,1.0],[115,268,67,1.0],[115,268,68,1.0],[115,268,69,1.0],[115,268,70,1.0],[115,268,71,1.0],[115,268,72,1.0],[115,268,73,1.0],[115,268,74,1.0],[115,268,75,1.0],[115,268,76,1.0],[115,268,77,1.0],[115,268,78,1.0],[115,268,79,1.0],[115,269,64,1.0],[115,269,65,1.0],[115,269,66,1.0],[115,269,67,1.0],[115,269,68,1.0],[115,269,69,1.0],[115,269,70,1.0],[115,269,71,1.0],[115,269,72,1.0],[115,269,73,1.0],[115,269,74,1.0],[115,269,75,1.0],[115,269,76,1.0],[115,269,77,1.0],[115,269,78,1.0],[115,269,79,1.0],[115,270,64,1.0],[115,270,65,1.0],[115,270,66,1.0],[115,270,67,1.0],[115,270,68,1.0],[115,270,69,1.0],[115,270,70,1.0],[115,270,71,1.0],[115,270,72,1.0],[115,270,73,1.0],[115,270,74,1.0],[115,270,75,1.0],[115,270,76,1.0],[115,270,77,1.0],[115,270,78,1.0],[115,270,79,1.0],[115,271,64,1.0],[115,271,65,1.0],[115,271,66,1.0],[115,271,67,1.0],[115,271,68,1.0],[115,271,69,1.0],[115,271,70,1.0],[115,271,71,1.0],[115,271,72,1.0],[115,271,73,1.0],[115,271,74,1.0],[115,271,75,1.0],[115,271,76,1.0],[115,271,77,1.0],[115,271,78,1.0],[115,271,79,1.0],[115,272,64,1.0],[115,272,65,1.0],[115,272,66,1.0],[115,272,67,1.0],[115,272,68,1.0],[115,272,69,1.0],[115,272,70,1.0],[115,272,71,1.0],[115,272,72,1.0],[115,272,73,1.0],[115,272,74,1.0],[115,272,75,1.0],[115,272,76,1.0],[115,272,77,1.0],[115,272,78,1.0],[115,272,79,1.0],[115,273,64,1.0],[115,273,65,1.0],[115,273,66,1.0],[115,273,67,1.0],[115,273,68,1.0],[115,273,69,1.0],[115,273,70,1.0],[115,273,71,1.0],[115,273,72,1.0],[115,273,73,1.0],[115,273,74,1.0],[115,273,75,1.0],[115,273,76,1.0],[115,273,77,1.0],[115,273,78,1.0],[115,273,79,1.0],[115,274,64,1.0],[115,274,65,1.0],[115,274,66,1.0],[115,274,67,1.0],[115,274,68,1.0],[115,274,69,1.0],[115,274,70,1.0],[115,274,71,1.0],[115,274,72,1.0],[115,274,73,1.0],[115,274,74,1.0],[115,274,75,1.0],[115,274,76,1.0],[115,274,77,1.0],[115,274,78,1.0],[115,274,79,1.0],[115,275,64,1.0],[115,275,65,1.0],[115,275,66,1.0],[115,275,67,1.0],[115,275,68,1.0],[115,275,69,1.0],[115,275,70,1.0],[115,275,71,1.0],[115,275,72,1.0],[115,275,73,1.0],[115,275,74,1.0],[115,275,75,1.0],[115,275,76,1.0],[115,275,77,1.0],[115,275,78,1.0],[115,275,79,1.0],[115,276,64,1.0],[115,276,65,1.0],[115,276,66,1.0],[115,276,67,1.0],[115,276,68,1.0],[115,276,69,1.0],[115,276,70,1.0],[115,276,71,1.0],[115,276,72,1.0],[115,276,73,1.0],[115,276,74,1.0],[115,276,75,1.0],[115,276,76,1.0],[115,276,77,1.0],[115,276,78,1.0],[115,276,79,1.0],[115,277,64,1.0],[115,277,65,1.0],[115,277,66,1.0],[115,277,67,1.0],[115,277,68,1.0],[115,277,69,1.0],[115,277,70,1.0],[115,277,71,1.0],[115,277,72,1.0],[115,277,73,1.0],[115,277,74,1.0],[115,277,75,1.0],[115,277,76,1.0],[115,277,77,1.0],[115,277,78,1.0],[115,277,79,1.0],[115,278,64,1.0],[115,278,65,1.0],[115,278,66,1.0],[115,278,67,1.0],[115,278,68,1.0],[115,278,69,1.0],[115,278,70,1.0],[115,278,71,1.0],[115,278,72,1.0],[115,278,73,1.0],[115,278,74,1.0],[115,278,75,1.0],[115,278,76,1.0],[115,278,77,1.0],[115,278,78,1.0],[115,278,79,1.0],[115,279,64,1.0],[115,279,65,1.0],[115,279,66,1.0],[115,279,67,1.0],[115,279,68,1.0],[115,279,69,1.0],[115,279,70,1.0],[115,279,71,1.0],[115,279,72,1.0],[115,279,73,1.0],[115,279,74,1.0],[115,279,75,1.0],[115,279,76,1.0],[115,279,77,1.0],[115,279,78,1.0],[115,279,79,1.0],[115,280,64,1.0],[115,280,65,1.0],[115,280,66,1.0],[115,280,67,1.0],[115,280,68,1.0],[115,280,69,1.0],[115,280,70,1.0],[115,280,71,1.0],[115,280,72,1.0],[115,280,73,1.0],[115,280,74,1.0],[115,280,75,1.0],[115,280,76,1.0],[115,280,77,1.0],[115,280,78,1.0],[115,280,79,1.0],[115,281,64,1.0],[115,281,65,1.0],[115,281,66,1.0],[115,281,67,1.0],[115,281,68,1.0],[115,281,69,1.0],[115,281,70,1.0],[115,281,71,1.0],[115,281,72,1.0],[115,281,73,1.0],[115,281,74,1.0],[115,281,75,1.0],[115,281,76,1.0],[115,281,77,1.0],[115,281,78,1.0],[115,281,79,1.0],[115,282,64,1.0],[115,282,65,1.0],[115,282,66,1.0],[115,282,67,1.0],[115,282,68,1.0],[115,282,69,1.0],[115,282,70,1.0],[115,282,71,1.0],[115,282,72,1.0],[115,282,73,1.0],[115,282,74,1.0],[115,282,75,1.0],[115,282,76,1.0],[115,282,77,1.0],[115,282,78,1.0],[115,282,79,1.0],[115,283,64,1.0],[115,283,65,1.0],[115,283,66,1.0],[115,283,67,1.0],[115,283,68,1.0],[115,283,69,1.0],[115,283,70,1.0],[115,283,71,1.0],[115,283,72,1.0],[115,283,73,1.0],[115,283,74,1.0],[115,283,75,1.0],[115,283,76,1.0],[115,283,77,1.0],[115,283,78,1.0],[115,283,79,1.0],[115,284,64,1.0],[115,284,65,1.0],[115,284,66,1.0],[115,284,67,1.0],[115,284,68,1.0],[115,284,69,1.0],[115,284,70,1.0],[115,284,71,1.0],[115,284,72,1.0],[115,284,73,1.0],[115,284,74,1.0],[115,284,75,1.0],[115,284,76,1.0],[115,284,77,1.0],[115,284,78,1.0],[115,284,79,1.0],[115,285,64,1.0],[115,285,65,1.0],[115,285,66,1.0],[115,285,67,1.0],[115,285,68,1.0],[115,285,69,1.0],[115,285,70,1.0],[115,285,71,1.0],[115,285,72,1.0],[115,285,73,1.0],[115,285,74,1.0],[115,285,75,1.0],[115,285,76,1.0],[115,285,77,1.0],[115,285,78,1.0],[115,285,79,1.0],[115,286,64,1.0],[115,286,65,1.0],[115,286,66,1.0],[115,286,67,1.0],[115,286,68,1.0],[115,286,69,1.0],[115,286,70,1.0],[115,286,71,1.0],[115,286,72,1.0],[115,286,73,1.0],[115,286,74,1.0],[115,286,75,1.0],[115,286,76,1.0],[115,286,77,1.0],[115,286,78,1.0],[115,286,79,1.0],[115,287,64,1.0],[115,287,65,1.0],[115,287,66,1.0],[115,287,67,1.0],[115,287,68,1.0],[115,287,69,1.0],[115,287,70,1.0],[115,287,71,1.0],[115,287,72,1.0],[115,287,73,1.0],[115,287,74,1.0],[115,287,75,1.0],[115,287,76,1.0],[115,287,77,1.0],[115,287,78,1.0],[115,287,79,1.0],[115,288,64,1.0],[115,288,65,1.0],[115,288,66,1.0],[115,288,67,1.0],[115,288,68,1.0],[115,288,69,1.0],[115,288,70,1.0],[115,288,71,1.0],[115,288,72,1.0],[115,288,73,1.0],[115,288,74,1.0],[115,288,75,1.0],[115,288,76,1.0],[115,288,77,1.0],[115,288,78,1.0],[115,288,79,1.0],[115,289,64,1.0],[115,289,65,1.0],[115,289,66,1.0],[115,289,67,1.0],[115,289,68,1.0],[115,289,69,1.0],[115,289,70,1.0],[115,289,71,1.0],[115,289,72,1.0],[115,289,73,1.0],[115,289,74,1.0],[115,289,75,1.0],[115,289,76,1.0],[115,289,77,1.0],[115,289,78,1.0],[115,289,79,1.0],[115,290,64,1.0],[115,290,65,1.0],[115,290,66,1.0],[115,290,67,1.0],[115,290,68,1.0],[115,290,69,1.0],[115,290,70,1.0],[115,290,71,1.0],[115,290,72,1.0],[115,290,73,1.0],[115,290,74,1.0],[115,290,75,1.0],[115,290,76,1.0],[115,290,77,1.0],[115,290,78,1.0],[115,290,79,1.0],[115,291,64,1.0],[115,291,65,1.0],[115,291,66,1.0],[115,291,67,1.0],[115,291,68,1.0],[115,291,69,1.0],[115,291,70,1.0],[115,291,71,1.0],[115,291,72,1.0],[115,291,73,1.0],[115,291,74,1.0],[115,291,75,1.0],[115,291,76,1.0],[115,291,77,1.0],[115,291,78,1.0],[115,291,79,1.0],[115,292,64,1.0],[115,292,65,1.0],[115,292,66,1.0],[115,292,67,1.0],[115,292,68,1.0],[115,292,69,1.0],[115,292,70,1.0],[115,292,71,1.0],[115,292,72,1.0],[115,292,73,1.0],[115,292,74,1.0],[115,292,75,1.0],[115,292,76,1.0],[115,292,77,1.0],[115,292,78,1.0],[115,292,79,1.0],[115,293,64,1.0],[115,293,65,1.0],[115,293,66,1.0],[115,293,67,1.0],[115,293,68,1.0],[115,293,69,1.0],[115,293,70,1.0],[115,293,71,1.0],[115,293,72,1.0],[115,293,73,1.0],[115,293,74,1.0],[115,293,75,1.0],[115,293,76,1.0],[115,293,77,1.0],[115,293,78,1.0],[115,293,79,1.0],[115,294,64,1.0],[115,294,65,1.0],[115,294,66,1.0],[115,294,67,1.0],[115,294,68,1.0],[115,294,69,1.0],[115,294,70,1.0],[115,294,71,1.0],[115,294,72,1.0],[115,294,73,1.0],[115,294,74,1.0],[115,294,75,1.0],[115,294,76,1.0],[115,294,77,1.0],[115,294,78,1.0],[115,294,79,1.0],[115,295,64,1.0],[115,295,65,1.0],[115,295,66,1.0],[115,295,67,1.0],[115,295,68,1.0],[115,295,69,1.0],[115,295,70,1.0],[115,295,71,1.0],[115,295,72,1.0],[115,295,73,1.0],[115,295,74,1.0],[115,295,75,1.0],[115,295,76,1.0],[115,295,77,1.0],[115,295,78,1.0],[115,295,79,1.0],[115,296,64,1.0],[115,296,65,1.0],[115,296,66,1.0],[115,296,67,1.0],[115,296,68,1.0],[115,296,69,1.0],[115,296,70,1.0],[115,296,71,1.0],[115,296,72,1.0],[115,296,73,1.0],[115,296,74,1.0],[115,296,75,1.0],[115,296,76,1.0],[115,296,77,1.0],[115,296,78,1.0],[115,296,79,1.0],[115,297,64,1.0],[115,297,65,1.0],[115,297,66,1.0],[115,297,67,1.0],[115,297,68,1.0],[115,297,69,1.0],[115,297,70,1.0],[115,297,71,1.0],[115,297,72,1.0],[115,297,73,1.0],[115,297,74,1.0],[115,297,75,1.0],[115,297,76,1.0],[115,297,77,1.0],[115,297,78,1.0],[115,297,79,1.0],[115,298,64,1.0],[115,298,65,1.0],[115,298,66,1.0],[115,298,67,1.0],[115,298,68,1.0],[115,298,69,1.0],[115,298,70,1.0],[115,298,71,1.0],[115,298,72,1.0],[115,298,73,1.0],[115,298,74,1.0],[115,298,75,1.0],[115,298,76,1.0],[115,298,77,1.0],[115,298,78,1.0],[115,298,79,1.0],[115,299,64,1.0],[115,299,65,1.0],[115,299,66,1.0],[115,299,67,1.0],[115,299,68,1.0],[115,299,69,1.0],[115,299,70,1.0],[115,299,71,1.0],[115,299,72,1.0],[115,299,73,1.0],[115,299,74,1.0],[115,299,75,1.0],[115,299,76,1.0],[115,299,77,1.0],[115,299,78,1.0],[115,299,79,1.0],[115,300,64,1.0],[115,300,65,1.0],[115,300,66,1.0],[115,300,67,1.0],[115,300,68,1.0],[115,300,69,1.0],[115,300,70,1.0],[115,300,71,1.0],[115,300,72,1.0],[115,300,73,1.0],[115,300,74,1.0],[115,300,75,1.0],[115,300,76,1.0],[115,300,77,1.0],[115,300,78,1.0],[115,300,79,1.0],[115,301,64,1.0],[115,301,65,1.0],[115,301,66,1.0],[115,301,67,1.0],[115,301,68,1.0],[115,301,69,1.0],[115,301,70,1.0],[115,301,71,1.0],[115,301,72,1.0],[115,301,73,1.0],[115,301,74,1.0],[115,301,75,1.0],[115,301,76,1.0],[115,301,77,1.0],[115,301,78,1.0],[115,301,79,1.0],[115,302,64,1.0],[115,302,65,1.0],[115,302,66,1.0],[115,302,67,1.0],[115,302,68,1.0],[115,302,69,1.0],[115,302,70,1.0],[115,302,71,1.0],[115,302,72,1.0],[115,302,73,1.0],[115,302,74,1.0],[115,302,75,1.0],[115,302,76,1.0],[115,302,77,1.0],[115,302,78,1.0],[115,302,79,1.0],[115,303,64,1.0],[115,303,65,1.0],[115,303,66,1.0],[115,303,67,1.0],[115,303,68,1.0],[115,303,69,1.0],[115,303,70,1.0],[115,303,71,1.0],[115,303,72,1.0],[115,303,73,1.0],[115,303,74,1.0],[115,303,75,1.0],[115,303,76,1.0],[115,303,77,1.0],[115,303,78,1.0],[115,303,79,1.0],[115,304,64,1.0],[115,304,65,1.0],[115,304,66,1.0],[115,304,67,1.0],[115,304,68,1.0],[115,304,69,1.0],[115,304,70,1.0],[115,304,71,1.0],[115,304,72,1.0],[115,304,73,1.0],[115,304,74,1.0],[115,304,75,1.0],[115,304,76,1.0],[115,304,77,1.0],[115,304,78,1.0],[115,304,79,1.0],[115,305,64,1.0],[115,305,65,1.0],[115,305,66,1.0],[115,305,67,1.0],[115,305,68,1.0],[115,305,69,1.0],[115,305,70,1.0],[115,305,71,1.0],[115,305,72,1.0],[115,305,73,1.0],[115,305,74,1.0],[115,305,75,1.0],[115,305,76,1.0],[115,305,77,1.0],[115,305,78,1.0],[115,305,79,1.0],[115,306,64,1.0],[115,306,65,1.0],[115,306,66,1.0],[115,306,67,1.0],[115,306,68,1.0],[115,306,69,1.0],[115,306,70,1.0],[115,306,71,1.0],[115,306,72,1.0],[115,306,73,1.0],[115,306,74,1.0],[115,306,75,1.0],[115,306,76,1.0],[115,306,77,1.0],[115,306,78,1.0],[115,306,79,1.0],[115,307,64,1.0],[115,307,65,1.0],[115,307,66,1.0],[115,307,67,1.0],[115,307,68,1.0],[115,307,69,1.0],[115,307,70,1.0],[115,307,71,1.0],[115,307,72,1.0],[115,307,73,1.0],[115,307,74,1.0],[115,307,75,1.0],[115,307,76,1.0],[115,307,77,1.0],[115,307,78,1.0],[115,307,79,1.0],[115,308,64,1.0],[115,308,65,1.0],[115,308,66,1.0],[115,308,67,1.0],[115,308,68,1.0],[115,308,69,1.0],[115,308,70,1.0],[115,308,71,1.0],[115,308,72,1.0],[115,308,73,1.0],[115,308,74,1.0],[115,308,75,1.0],[115,308,76,1.0],[115,308,77,1.0],[115,308,78,1.0],[115,308,79,1.0],[115,309,64,1.0],[115,309,65,1.0],[115,309,66,1.0],[115,309,67,1.0],[115,309,68,1.0],[115,309,69,1.0],[115,309,70,1.0],[115,309,71,1.0],[115,309,72,1.0],[115,309,73,1.0],[115,309,74,1.0],[115,309,75,1.0],[115,309,76,1.0],[115,309,77,1.0],[115,309,78,1.0],[115,309,79,1.0],[115,310,64,1.0],[115,310,65,1.0],[115,310,66,1.0],[115,310,67,1.0],[115,310,68,1.0],[115,310,69,1.0],[115,310,70,1.0],[115,310,71,1.0],[115,310,72,1.0],[115,310,73,1.0],[115,310,74,1.0],[115,310,75,1.0],[115,310,76,1.0],[115,310,77,1.0],[115,310,78,1.0],[115,310,79,1.0],[115,311,64,1.0],[115,311,65,1.0],[115,311,66,1.0],[115,311,67,1.0],[115,311,68,1.0],[115,311,69,1.0],[115,311,70,1.0],[115,311,71,1.0],[115,311,72,1.0],[115,311,73,1.0],[115,311,74,1.0],[115,311,75,1.0],[115,311,76,1.0],[115,311,77,1.0],[115,311,78,1.0],[115,311,79,1.0],[115,312,64,1.0],[115,312,65,1.0],[115,312,66,1.0],[115,312,67,1.0],[115,312,68,1.0],[115,312,69,1.0],[115,312,70,1.0],[115,312,71,1.0],[115,312,72,1.0],[115,312,73,1.0],[115,312,74,1.0],[115,312,75,1.0],[115,312,76,1.0],[115,312,77,1.0],[115,312,78,1.0],[115,312,79,1.0],[115,313,64,1.0],[115,313,65,1.0],[115,313,66,1.0],[115,313,67,1.0],[115,313,68,1.0],[115,313,69,1.0],[115,313,70,1.0],[115,313,71,1.0],[115,313,72,1.0],[115,313,73,1.0],[115,313,74,1.0],[115,313,75,1.0],[115,313,76,1.0],[115,313,77,1.0],[115,313,78,1.0],[115,313,79,1.0],[115,314,64,1.0],[115,314,65,1.0],[115,314,66,1.0],[115,314,67,1.0],[115,314,68,1.0],[115,314,69,1.0],[115,314,70,1.0],[115,314,71,1.0],[115,314,72,1.0],[115,314,73,1.0],[115,314,74,1.0],[115,314,75,1.0],[115,314,76,1.0],[115,314,77,1.0],[115,314,78,1.0],[115,314,79,1.0],[115,315,64,1.0],[115,315,65,1.0],[115,315,66,1.0],[115,315,67,1.0],[115,315,68,1.0],[115,315,69,1.0],[115,315,70,1.0],[115,315,71,1.0],[115,315,72,1.0],[115,315,73,1.0],[115,315,74,1.0],[115,315,75,1.0],[115,315,76,1.0],[115,315,77,1.0],[115,315,78,1.0],[115,315,79,1.0],[115,316,64,1.0],[115,316,65,1.0],[115,316,66,1.0],[115,316,67,1.0],[115,316,68,1.0],[115,316,69,1.0],[115,316,70,1.0],[115,316,71,1.0],[115,316,72,1.0],[115,316,73,1.0],[115,316,74,1.0],[115,316,75,1.0],[115,316,76,1.0],[115,316,77,1.0],[115,316,78,1.0],[115,316,79,1.0],[115,317,64,1.0],[115,317,65,1.0],[115,317,66,1.0],[115,317,67,1.0],[115,317,68,1.0],[115,317,69,1.0],[115,317,70,1.0],[115,317,71,1.0],[115,317,72,1.0],[115,317,73,1.0],[115,317,74,1.0],[115,317,75,1.0],[115,317,76,1.0],[115,317,77,1.0],[115,317,78,1.0],[115,317,79,1.0],[115,318,64,1.0],[115,318,65,1.0],[115,318,66,1.0],[115,318,67,1.0],[115,318,68,1.0],[115,318,69,1.0],[115,318,70,1.0],[115,318,71,1.0],[115,318,72,1.0],[115,318,73,1.0],[115,318,74,1.0],[115,318,75,1.0],[115,318,76,1.0],[115,318,77,1.0],[115,318,78,1.0],[115,318,79,1.0],[115,319,64,1.0],[115,319,65,1.0],[115,319,66,1.0],[115,319,67,1.0],[115,319,68,1.0],[115,319,69,1.0],[115,319,70,1.0],[115,319,71,1.0],[115,319,72,1.0],[115,319,73,1.0],[115,319,74,1.0],[115,319,75,1.0],[115,319,76,1.0],[115,319,77,1.0],[115,319,78,1.0],[115,319,79,1.0],[116,-64,64,1.0],[116,-64,65,1.0],[116,-64,66,1.0],[116,-64,67,1.0],[116,-64,68,1.0],[116,-64,69,1.0],[116,-64,70,1.0],[116,-64,71,1.0],[116,-64,72,1.0],[116,-64,73,1.0],[116,-64,74,1.0],[116,-64,75,1.0],[116,-64,76,1.0],[116,-64,77,1.0],[116,-64,78,1.0],[116,-64,79,1.0],[116,-63,64,1.0],[116,-63,65,1.0],[116,-63,66,1.0],[116,-63,67,1.0],[116,-63,68,1.0],[116,-63,69,1.0],[116,-63,70,1.0],[116,-63,71,1.0],[116,-63,72,1.0],[116,-63,73,1.0],[116,-63,74,1.0],[116,-63,75,1.0],[116,-63,76,1.0],[116,-63,77,1.0],[116,-63,78,1.0],[116,-63,79,1.0],[116,-62,64,1.0],[116,-62,65,1.0],[116,-62,66,1.0],[116,-62,67,1.0],[116,-62,68,1.0],[116,-62,69,1.0],[116,-62,70,1.0],[116,-62,71,1.0],[116,-62,72,1.0],[116,-62,73,1.0],[116,-62,74,1.0],[116,-62,75,1.0],[116,-62,76,1.0],[116,-62,77,1.0],[116,-62,78,1.0],[116,-62,79,1.0],[116,-61,64,1.0],[116,-61,65,1.0],[116,-61,66,1.0],[116,-61,67,1.0],[116,-61,68,1.0],[116,-61,69,1.0],[116,-61,70,1.0],[116,-61,71,1.0],[116,-61,72,1.0],[116,-61,73,1.0],[116,-61,74,1.0],[116,-61,75,1.0],[116,-61,76,1.0],[116,-61,77,1.0],[116,-61,78,1.0],[116,-61,79,1.0],[116,-60,64,1.0],[116,-60,65,1.0],[116,-60,66,1.0],[116,-60,67,1.0],[116,-60,68,1.0],[116,-60,69,1.0],[116,-60,70,1.0],[116,-60,71,1.0],[116,-60,72,1.0],[116,-60,73,1.0],[116,-60,74,1.0],[116,-60,75,1.0],[116,-60,76,1.0],[116,-60,77,1.0],[116,-60,78,1.0],[116,-60,79,1.0],[116,-59,64,1.0],[116,-59,65,1.0],[116,-59,66,1.0],[116,-59,67,1.0],[116,-59,68,1.0],[116,-59,69,1.0],[116,-59,70,1.0],[116,-59,71,1.0],[116,-59,72,1.0],[116,-59,73,1.0],[116,-59,74,1.0],[116,-59,75,1.0],[116,-59,76,1.0],[116,-59,77,1.0],[116,-59,78,1.0],[116,-59,79,1.0],[116,-58,64,1.0],[116,-58,65,1.0],[116,-58,66,1.0],[116,-58,67,1.0],[116,-58,68,1.0],[116,-58,69,1.0],[116,-58,70,1.0],[116,-58,71,1.0],[116,-58,72,1.0],[116,-58,73,1.0],[116,-58,74,1.0],[116,-58,75,1.0],[116,-58,76,1.0],[116,-58,77,1.0],[116,-58,78,1.0],[116,-58,79,1.0],[116,-57,64,1.0],[116,-57,65,1.0],[116,-57,66,1.0],[116,-57,67,1.0],[116,-57,68,1.0],[116,-57,69,1.0],[116,-57,70,1.0],[116,-57,71,1.0],[116,-57,72,1.0],[116,-57,73,1.0],[116,-57,74,1.0],[116,-57,75,1.0],[116,-57,76,1.0],[116,-57,77,1.0],[116,-57,78,1.0],[116,-57,79,1.0],[116,-56,64,1.0],[116,-56,65,1.0],[116,-56,66,1.0],[116,-56,67,1.0],[116,-56,68,1.0],[116,-56,69,1.0],[116,-56,70,1.0],[116,-56,71,1.0],[116,-56,72,1.0],[116,-56,73,1.0],[116,-56,74,1.0],[116,-56,75,1.0],[116,-56,76,1.0],[116,-56,77,1.0],[116,-56,78,1.0],[116,-56,79,1.0],[116,-55,64,1.0],[116,-55,65,1.0],[116,-55,66,1.0],[116,-55,67,1.0],[116,-55,68,1.0],[116,-55,69,1.0],[116,-55,70,1.0],[116,-55,71,1.0],[116,-55,72,1.0],[116,-55,73,1.0],[116,-55,74,1.0],[116,-55,75,1.0],[116,-55,76,1.0],[116,-55,77,1.0],[116,-55,78,1.0],[116,-55,79,1.0],[116,-54,64,1.0],[116,-54,65,1.0],[116,-54,66,1.0],[116,-54,67,1.0],[116,-54,68,1.0],[116,-54,69,1.0],[116,-54,70,1.0],[116,-54,71,1.0],[116,-54,72,1.0],[116,-54,73,1.0],[116,-54,74,1.0],[116,-54,75,1.0],[116,-54,76,1.0],[116,-54,77,1.0],[116,-54,78,1.0],[116,-54,79,1.0],[116,-53,64,1.0],[116,-53,65,1.0],[116,-53,66,1.0],[116,-53,67,1.0],[116,-53,68,1.0],[116,-53,69,1.0],[116,-53,70,1.0],[116,-53,71,1.0],[116,-53,72,1.0],[116,-53,73,1.0],[116,-53,74,1.0],[116,-53,75,1.0],[116,-53,76,1.0],[116,-53,77,1.0],[116,-53,78,1.0],[116,-53,79,1.0],[116,-52,64,1.0],[116,-52,65,1.0],[116,-52,66,1.0],[116,-52,67,1.0],[116,-52,68,1.0],[116,-52,69,1.0],[116,-52,70,1.0],[116,-52,71,1.0],[116,-52,72,1.0],[116,-52,73,1.0],[116,-52,74,1.0],[116,-52,75,1.0],[116,-52,76,1.0],[116,-52,77,1.0],[116,-52,78,1.0],[116,-52,79,1.0],[116,-51,64,1.0],[116,-51,65,1.0],[116,-51,66,1.0],[116,-51,67,1.0],[116,-51,68,1.0],[116,-51,69,1.0],[116,-51,70,1.0],[116,-51,71,1.0],[116,-51,72,1.0],[116,-51,73,1.0],[116,-51,74,1.0],[116,-51,75,1.0],[116,-51,76,1.0],[116,-51,77,1.0],[116,-51,78,1.0],[116,-51,79,1.0],[116,-50,64,1.0],[116,-50,65,1.0],[116,-50,66,1.0],[116,-50,67,1.0],[116,-50,68,1.0],[116,-50,69,1.0],[116,-50,70,1.0],[116,-50,71,1.0],[116,-50,72,1.0],[116,-50,73,1.0],[116,-50,74,1.0],[116,-50,75,1.0],[116,-50,76,1.0],[116,-50,77,1.0],[116,-50,78,1.0],[116,-50,79,1.0],[116,-49,64,1.0],[116,-49,65,1.0],[116,-49,66,1.0],[116,-49,67,1.0],[116,-49,68,1.0],[116,-49,69,1.0],[116,-49,70,1.0],[116,-49,71,1.0],[116,-49,72,1.0],[116,-49,73,1.0],[116,-49,74,1.0],[116,-49,75,1.0],[116,-49,76,1.0],[116,-49,77,1.0],[116,-49,78,1.0],[116,-49,79,1.0],[116,-48,64,1.0],[116,-48,65,1.0],[116,-48,66,1.0],[116,-48,67,1.0],[116,-48,68,1.0],[116,-48,69,1.0],[116,-48,70,1.0],[116,-48,71,1.0],[116,-48,72,1.0],[116,-48,73,1.0],[116,-48,74,1.0],[116,-48,75,1.0],[116,-48,76,1.0],[116,-48,77,1.0],[116,-48,78,1.0],[116,-48,79,1.0],[116,-47,64,1.0],[116,-47,65,1.0],[116,-47,66,1.0],[116,-47,67,1.0],[116,-47,68,1.0],[116,-47,69,1.0],[116,-47,70,1.0],[116,-47,71,1.0],[116,-47,72,1.0],[116,-47,73,1.0],[116,-47,74,1.0],[116,-47,75,1.0],[116,-47,76,1.0],[116,-47,77,1.0],[116,-47,78,1.0],[116,-47,79,1.0],[116,-46,64,1.0],[116,-46,65,1.0],[116,-46,66,1.0],[116,-46,67,1.0],[116,-46,68,1.0],[116,-46,69,1.0],[116,-46,70,1.0],[116,-46,71,1.0],[116,-46,72,1.0],[116,-46,73,1.0],[116,-46,74,1.0],[116,-46,75,1.0],[116,-46,76,1.0],[116,-46,77,1.0],[116,-46,78,1.0],[116,-46,79,1.0],[116,-45,64,1.0],[116,-45,65,1.0],[116,-45,66,1.0],[116,-45,67,1.0],[116,-45,68,1.0],[116,-45,69,1.0],[116,-45,70,1.0],[116,-45,71,1.0],[116,-45,72,1.0],[116,-45,73,1.0],[116,-45,74,1.0],[116,-45,75,1.0],[116,-45,76,1.0],[116,-45,77,1.0],[116,-45,78,1.0],[116,-45,79,1.0],[116,-44,64,1.0],[116,-44,65,1.0],[116,-44,66,1.0],[116,-44,67,1.0],[116,-44,68,1.0],[116,-44,69,1.0],[116,-44,70,1.0],[116,-44,71,1.0],[116,-44,72,1.0],[116,-44,73,1.0],[116,-44,74,1.0],[116,-44,75,1.0],[116,-44,76,1.0],[116,-44,77,1.0],[116,-44,78,1.0],[116,-44,79,1.0],[116,-43,64,1.0],[116,-43,65,1.0],[116,-43,66,1.0],[116,-43,67,1.0],[116,-43,68,1.0],[116,-43,69,1.0],[116,-43,70,1.0],[116,-43,71,1.0],[116,-43,72,1.0],[116,-43,73,1.0],[116,-43,74,1.0],[116,-43,75,1.0],[116,-43,76,1.0],[116,-43,77,1.0],[116,-43,78,1.0],[116,-43,79,1.0],[116,-42,64,1.0],[116,-42,65,1.0],[116,-42,66,1.0],[116,-42,67,1.0],[116,-42,68,1.0],[116,-42,69,1.0],[116,-42,70,1.0],[116,-42,71,1.0],[116,-42,72,1.0],[116,-42,73,1.0],[116,-42,74,1.0],[116,-42,75,1.0],[116,-42,76,1.0],[116,-42,77,1.0],[116,-42,78,1.0],[116,-42,79,1.0],[116,-41,64,1.0],[116,-41,65,1.0],[116,-41,66,1.0],[116,-41,67,1.0],[116,-41,68,1.0],[116,-41,69,1.0],[116,-41,70,1.0],[116,-41,71,1.0],[116,-41,72,1.0],[116,-41,73,1.0],[116,-41,74,1.0],[116,-41,75,1.0],[116,-41,76,1.0],[116,-41,77,1.0],[116,-41,78,1.0],[116,-41,79,1.0],[116,-40,64,1.0],[116,-40,65,1.0],[116,-40,66,1.0],[116,-40,67,1.0],[116,-40,68,1.0],[116,-40,69,1.0],[116,-40,70,1.0],[116,-40,71,1.0],[116,-40,72,1.0],[116,-40,73,1.0],[116,-40,74,1.0],[116,-40,75,1.0],[116,-40,76,1.0],[116,-40,77,1.0],[116,-40,78,1.0],[116,-40,79,1.0],[116,-39,64,1.0],[116,-39,65,1.0],[116,-39,66,1.0],[116,-39,67,1.0],[116,-39,68,1.0],[116,-39,69,1.0],[116,-39,70,1.0],[116,-39,71,1.0],[116,-39,72,1.0],[116,-39,73,1.0],[116,-39,74,1.0],[116,-39,75,1.0],[116,-39,76,1.0],[116,-39,77,1.0],[116,-39,78,1.0],[116,-39,79,1.0],[116,-38,64,1.0],[116,-38,65,1.0],[116,-38,66,1.0],[116,-38,67,1.0],[116,-38,68,1.0],[116,-38,69,1.0],[116,-38,70,1.0],[116,-38,71,1.0],[116,-38,72,1.0],[116,-38,73,1.0],[116,-38,74,1.0],[116,-38,75,1.0],[116,-38,76,1.0],[116,-38,77,1.0],[116,-38,78,1.0],[116,-38,79,1.0],[116,-37,64,1.0],[116,-37,65,1.0],[116,-37,66,1.0],[116,-37,67,1.0],[116,-37,68,1.0],[116,-37,69,1.0],[116,-37,70,1.0],[116,-37,71,1.0],[116,-37,72,1.0],[116,-37,73,1.0],[116,-37,74,1.0],[116,-37,75,1.0],[116,-37,76,1.0],[116,-37,77,1.0],[116,-37,78,1.0],[116,-37,79,1.0],[116,-36,64,1.0],[116,-36,65,1.0],[116,-36,66,1.0],[116,-36,67,1.0],[116,-36,68,1.0],[116,-36,69,1.0],[116,-36,70,1.0],[116,-36,71,1.0],[116,-36,72,1.0],[116,-36,73,1.0],[116,-36,74,1.0],[116,-36,75,1.0],[116,-36,76,1.0],[116,-36,77,1.0],[116,-36,78,1.0],[116,-36,79,1.0],[116,-35,64,1.0],[116,-35,65,1.0],[116,-35,66,1.0],[116,-35,67,1.0],[116,-35,68,1.0],[116,-35,69,1.0],[116,-35,70,1.0],[116,-35,71,1.0],[116,-35,72,1.0],[116,-35,73,1.0],[116,-35,74,1.0],[116,-35,75,1.0],[116,-35,76,1.0],[116,-35,77,1.0],[116,-35,78,1.0],[116,-35,79,1.0],[116,-34,64,1.0],[116,-34,65,1.0],[116,-34,66,1.0],[116,-34,67,1.0],[116,-34,68,1.0],[116,-34,69,1.0],[116,-34,70,1.0],[116,-34,71,1.0],[116,-34,72,1.0],[116,-34,73,1.0],[116,-34,74,1.0],[116,-34,75,1.0],[116,-34,76,1.0],[116,-34,77,1.0],[116,-34,78,1.0],[116,-34,79,1.0],[116,-33,64,1.0],[116,-33,65,1.0],[116,-33,66,1.0],[116,-33,67,1.0],[116,-33,68,1.0],[116,-33,69,1.0],[116,-33,70,1.0],[116,-33,71,1.0],[116,-33,72,1.0],[116,-33,73,1.0],[116,-33,74,1.0],[116,-33,75,1.0],[116,-33,76,1.0],[116,-33,77,1.0],[116,-33,78,1.0],[116,-33,79,1.0],[116,-32,64,1.0],[116,-32,65,1.0],[116,-32,66,1.0],[116,-32,67,1.0],[116,-32,68,1.0],[116,-32,69,1.0],[116,-32,70,1.0],[116,-32,71,1.0],[116,-32,72,1.0],[116,-32,73,1.0],[116,-32,74,1.0],[116,-32,75,1.0],[116,-32,76,1.0],[116,-32,77,1.0],[116,-32,78,1.0],[116,-32,79,1.0],[116,-31,64,1.0],[116,-31,65,1.0],[116,-31,66,1.0],[116,-31,67,1.0],[116,-31,68,1.0],[116,-31,69,1.0],[116,-31,70,1.0],[116,-31,71,1.0],[116,-31,72,1.0],[116,-31,73,1.0],[116,-31,74,1.0],[116,-31,75,1.0],[116,-31,76,1.0],[116,-31,77,1.0],[116,-31,78,1.0],[116,-31,79,1.0],[116,-30,64,1.0],[116,-30,65,1.0],[116,-30,66,1.0],[116,-30,67,1.0],[116,-30,68,1.0],[116,-30,69,1.0],[116,-30,70,1.0],[116,-30,71,1.0],[116,-30,72,1.0],[116,-30,73,1.0],[116,-30,74,1.0],[116,-30,75,1.0],[116,-30,76,1.0],[116,-30,77,1.0],[116,-30,78,1.0],[116,-30,79,1.0],[116,-29,64,1.0],[116,-29,65,1.0],[116,-29,66,1.0],[116,-29,67,1.0],[116,-29,68,1.0],[116,-29,69,1.0],[116,-29,70,1.0],[116,-29,71,1.0],[116,-29,72,1.0],[116,-29,73,1.0],[116,-29,74,1.0],[116,-29,75,1.0],[116,-29,76,1.0],[116,-29,77,1.0],[116,-29,78,1.0],[116,-29,79,1.0],[116,-28,64,1.0],[116,-28,65,1.0],[116,-28,66,1.0],[116,-28,67,1.0],[116,-28,68,1.0],[116,-28,69,1.0],[116,-28,70,1.0],[116,-28,71,1.0],[116,-28,72,1.0],[116,-28,73,1.0],[116,-28,74,1.0],[116,-28,75,1.0],[116,-28,76,1.0],[116,-28,77,1.0],[116,-28,78,1.0],[116,-28,79,1.0],[116,-27,64,1.0],[116,-27,65,1.0],[116,-27,66,1.0],[116,-27,67,1.0],[116,-27,68,1.0],[116,-27,69,1.0],[116,-27,70,1.0],[116,-27,71,1.0],[116,-27,72,1.0],[116,-27,73,1.0],[116,-27,74,1.0],[116,-27,75,1.0],[116,-27,76,1.0],[116,-27,77,1.0],[116,-27,78,1.0],[116,-27,79,1.0],[116,-26,64,1.0],[116,-26,65,1.0],[116,-26,66,1.0],[116,-26,67,1.0],[116,-26,68,1.0],[116,-26,69,1.0],[116,-26,70,1.0],[116,-26,71,1.0],[116,-26,72,1.0],[116,-26,73,1.0],[116,-26,74,1.0],[116,-26,75,1.0],[116,-26,76,1.0],[116,-26,77,1.0],[116,-26,78,1.0],[116,-26,79,1.0],[116,-25,64,1.0],[116,-25,65,1.0],[116,-25,66,1.0],[116,-25,67,1.0],[116,-25,68,1.0],[116,-25,69,1.0],[116,-25,70,1.0],[116,-25,71,1.0],[116,-25,72,1.0],[116,-25,73,1.0],[116,-25,74,1.0],[116,-25,75,1.0],[116,-25,76,1.0],[116,-25,77,1.0],[116,-25,78,1.0],[116,-25,79,1.0],[116,-24,64,1.0],[116,-24,65,1.0],[116,-24,66,1.0],[116,-24,67,1.0],[116,-24,68,1.0],[116,-24,69,1.0],[116,-24,70,1.0],[116,-24,71,1.0],[116,-24,72,1.0],[116,-24,73,1.0],[116,-24,74,1.0],[116,-24,75,1.0],[116,-24,76,1.0],[116,-24,77,1.0],[116,-24,78,1.0],[116,-24,79,1.0],[116,-23,64,1.0],[116,-23,65,1.0],[116,-23,66,1.0],[116,-23,67,1.0],[116,-23,68,1.0],[116,-23,69,1.0],[116,-23,70,1.0],[116,-23,71,1.0],[116,-23,72,1.0],[116,-23,73,1.0],[116,-23,74,1.0],[116,-23,75,1.0],[116,-23,76,1.0],[116,-23,77,1.0],[116,-23,78,1.0],[116,-23,79,1.0],[116,-22,64,1.0],[116,-22,65,1.0],[116,-22,66,1.0],[116,-22,67,1.0],[116,-22,68,1.0],[116,-22,69,1.0],[116,-22,70,1.0],[116,-22,71,1.0],[116,-22,72,1.0],[116,-22,73,1.0],[116,-22,74,1.0],[116,-22,75,1.0],[116,-22,76,1.0],[116,-22,77,1.0],[116,-22,78,1.0],[116,-22,79,1.0],[116,-21,64,1.0],[116,-21,65,1.0],[116,-21,66,1.0],[116,-21,67,1.0],[116,-21,68,1.0],[116,-21,69,1.0],[116,-21,70,1.0],[116,-21,71,1.0],[116,-21,72,1.0],[116,-21,73,1.0],[116,-21,74,1.0],[116,-21,75,1.0],[116,-21,76,1.0],[116,-21,77,1.0],[116,-21,78,1.0],[116,-21,79,1.0],[116,-20,64,1.0],[116,-20,65,1.0],[116,-20,66,1.0],[116,-20,67,1.0],[116,-20,68,1.0],[116,-20,69,1.0],[116,-20,70,1.0],[116,-20,71,1.0],[116,-20,72,1.0],[116,-20,73,1.0],[116,-20,74,1.0],[116,-20,75,1.0],[116,-20,76,1.0],[116,-20,77,1.0],[116,-20,78,1.0],[116,-20,79,1.0],[116,-19,64,1.0],[116,-19,65,1.0],[116,-19,66,1.0],[116,-19,67,1.0],[116,-19,68,1.0],[116,-19,69,1.0],[116,-19,70,1.0],[116,-19,71,1.0],[116,-19,72,1.0],[116,-19,73,1.0],[116,-19,74,1.0],[116,-19,75,1.0],[116,-19,76,1.0],[116,-19,77,1.0],[116,-19,78,1.0],[116,-19,79,1.0],[116,-18,64,1.0],[116,-18,65,1.0],[116,-18,66,1.0],[116,-18,67,1.0],[116,-18,68,1.0],[116,-18,69,1.0],[116,-18,70,1.0],[116,-18,71,1.0],[116,-18,72,1.0],[116,-18,73,1.0],[116,-18,74,1.0],[116,-18,75,1.0],[116,-18,76,1.0],[116,-18,77,1.0],[116,-18,78,1.0],[116,-18,79,1.0],[116,-17,64,1.0],[116,-17,65,1.0],[116,-17,66,1.0],[116,-17,67,1.0],[116,-17,68,1.0],[116,-17,69,1.0],[116,-17,70,1.0],[116,-17,71,1.0],[116,-17,72,1.0],[116,-17,73,1.0],[116,-17,74,1.0],[116,-17,75,1.0],[116,-17,76,1.0],[116,-17,77,1.0],[116,-17,78,1.0],[116,-17,79,1.0],[116,-16,64,1.0],[116,-16,65,1.0],[116,-16,66,1.0],[116,-16,67,1.0],[116,-16,68,1.0],[116,-16,69,1.0],[116,-16,70,1.0],[116,-16,71,1.0],[116,-16,72,1.0],[116,-16,73,1.0],[116,-16,74,1.0],[116,-16,75,1.0],[116,-16,76,1.0],[116,-16,77,1.0],[116,-16,78,1.0],[116,-16,79,1.0],[116,-15,64,0.8521823676583739],[116,-15,65,0.9545364943264253],[116,-15,66,1.0],[116,-15,67,1.0],[116,-15,68,1.0],[116,-15,69,1.0],[116,-15,70,1.0],[116,-15,71,1.0],[116,-15,72,1.0],[116,-15,73,1.0],[116,-15,74,1.0],[116,-15,75,1.0],[116,-15,76,1.0],[116,-15,77,1.0],[116,-15,78,1.0],[116,-15,79,1.0],[116,-14,64,0.5573489510824897],[116,-14,65,0.6349169784256213],[116,-14,66,0.7172434334652626],[116,-14,67,0.8041044601256829],[116,-14,68,0.8952526187353608],[116,-14,69,0.9904204455784869],[116,-14,70,1.0],[116,-14,71,1.0],[116,-14,72,1.0],[116,-14,73,1.0],[116,-14,74,1.0],[116,-14,75,1.0],[116,-14,76,1.0],[116,-14,77,1.0],[116,-14,78,1.0],[116,-14,79,1.0],[116,-13,64,0.339820306107875],[116,-13,65,0.39603334641695154],[116,-13,66,0.4565550375744605],[116,-13,67,0.5212321531421616],[116,-13,68,0.5898853672841132],[116,-13,69,0.6623126658360614],[116,-13,70,0.7382927481811593],[116,-13,71,0.8175884027211124],[116,-13,72,0.899949839464074],[116,-13,73,0.985117964094144],[116,-13,74,1.0],[116,-13,75,1.0],[116,-13,76,1.0],[116,-13,77,1.0],[116,-13,78,1.0],[116,-13,79,1.0],[116,-12,64,0.1878430379617232],[116,-12,65,0.22613233458808554],[116,-12,66,0.2681975423338777],[116,-12,67,0.31395610177940764],[116,-12,68,0.3632969384600446],[116,-12,69,0.4160837279864234],[116,-12,70,0.47215815845368064],[116,-12,71,0.531343173192091],[116,-12,72,0.5934461776077017],[116,-12,73,0.6582621946693046],[116,-12,74,0.7255769545025147],[116,-12,75,0.7951699045958653],[116,-12,76,0.8668171282638799],[116,-12,77,0.9402941602369107],[116,-12,78,1.0],[116,-12,79,1.0],[116,-11,64,0.08966365597346497],[116,-11,65,0.11346058295525638],[116,-11,66,0.1404177182562115],[116,-11,67,0.17052320685006736],[116,-11,68,0.20373436317350915],[116,-11,69,0.23998079283013204],[116,-11,70,0.27916751808870216],[116,-11,71,0.3211780904909086],[116,-11,72,0.36587767454469255],[116,-11,73,0.4131160872512314],[116,-11,74,0.4627307790840187],[116,-11,75,0.5145497430370903],[116,-11,76,0.5683943394544422],[116,-11,77,0.624082025533309],[116,-11,78,0.6814289796913608],[116,-11,79,0.7402526123668527],[116,-10,64,0.0335285734604792],[116,-10,65,0.046264635145327186],[116,-10,66,0.061462239089249006],[116,-10,67,0.07918027202808968],[116,-10,68,0.09944457482409794],[116,-10,69,0.12225092328661677],[116,-10,70,0.1475680193148878],[116,-10,71,0.17534047594056185],[116,-10,72,0.2054917804737066],[116,-10,73,0.2379272206923533],[116,-10,74,0.27253675985123943],[116,-10,75,0.3091978472391771],[116,-10,76,0.34777815206437523],[116,-10,77,0.3881382095828541],[116,-10,78,0.4301339696272371],[116,-10,79,0.4736192390158936],[116,-9,64,0.024377384528607098],[116,-9,65,0.027699300479428993],[116,-9,66,0.03092575062981158],[116,-9,67,0.03405438989222146],[116,-9,68,0.03867440917601973],[116,-9,69,0.05114108426602301],[116,-9,70,0.06560675597940882],[116,-9,71,0.08207755211201982],[116,-9,72,0.1005358464724883],[116,-9,73,0.12094307435691934],[116,-9,74,0.1432425042319778],[116,-9,75,0.16736195246842905],[116,-9,76,0.19321642897194632],[116,-9,77,0.22071070264837525],[116,-9,78,0.24974177682816479],[116,-9,79,0.28020126604110873],[116,-8,64,0.020274874343905076],[116,-8,65,0.023567444864158404],[116,-8,66,0.0267683100805053],[116,-8,67,0.02987519597690548],[116,-8,68,0.0328857761841818],[116,-8,69,0.035797689283791144],[116,-8,70,0.038608555567196966],[116,-8,71,0.04131599325065677],[116,-8,72,0.043917634145679785],[116,-8,73,0.050411027982826394],[116,-8,74,0.06309551965860238],[116,-8,75,0.07728969362824308],[116,-8,76,0.09295693232662691],[116,-8,77,0.11004739389958366],[116,-8,78,0.12850041725802885],[116,-8,79,0.14824683597492833],[116,-7,64,0.016141578184482377],[116,-7,65,0.019402800407910474],[116,-7,66,0.022576053922794374],[116,-7,67,0.02565913738841233],[116,-7,68,0.028649786172613143],[116,-7,69,0.03154568991342706],[116,-7,70,0.03434450953621949],[116,-7,71,0.037043893726198],[116,-7,72,0.03964149485653067],[116,-7,73,0.04213498437176843],[116,-7,74,0.04452206762671623],[116,-7,75,0.046800498180901685],[116,-7,76,0.04896809154832816],[116,-7,77,0.051022738402777726],[116,-7,78,0.05465780527385944],[116,-7,79,0.06600398937840056],[116,-6,64,0.011984521445709294],[116,-6,65,0.015212403375905938],[116,-6,66,0.018356024835440694],[116,-6,67,0.021413258675575968],[116,-6,68,0.024381903775065203],[116,-6,69,0.027259702840445127],[116,-6,70,0.030044359662241935],[116,-6,71,0.032733555826901156],[116,-6,72,0.03532496688470118],[116,-6,73,0.037816277973339044],[116,-6,74,0.04020519889733824],[116,-6,75,0.04248947866342386],[116,-6,76,0.04466691947155306],[116,-6,77,0.046735390161865946],[116,-6,78,0.04869283911735475],[116,-6,79,0.05053730662252449],[116,-5,64,0.00781075790960422],[116,-5,65,0.011003321821138778],[116,-5,66,0.014115300743415063],[116,-5,67,0.017144643146774358],[116,-5,68,0.020089213117915464],[116,-5,69,0.022946808379425497],[116,-5,70,0.02571517776602717],[116,-5,71,0.028392038157349808],[116,-5,72,0.030975090867487717],[116,-5,73,0.03346203749103137],[116,-5,74,0.035850595205720884],[116,-5,75,0.038138511531871366],[116,-5,76,0.040323578548251915],[116,-5,77,0.04240364656468972],[116,-5,78,0.044376637251191356],[116,-5,79,0.046240556223859156],[116,-4,64,0.003627358410138802],[116,-4,65,0.0067826442201194825],[116,-4,66,0.009860983433644353],[116,-4,67,0.012860401475435067],[116,-4,68,0.015778829257626838],[116,-4,69,0.018614121398844906],[116,-4,70,0.021364073901231025],[116,-4,71,0.02402644128522312],[116,-4,72,0.026598953182353606],[116,-4,73,0.02907933038575304],[116,-4,74,0.03146530035850515],[116,-4,75,0.03375461220000687],[116,-4,76,0.03594505107001274],[116,-4,77,0.038034452070634016],[116,-4,78,0.04002071358608781],[116,-4,79,0.04190181008047244],[116,-3,64,-5.585994852935552E-4],[116,-3,65,0.0025574691281214784],[116,-3,66,0.005600188193839818],[116,-3,67,0.008567661332439185],[116,-3,68,0.011457887816881077],[116,-3,69,0.014268780971226587],[116,-3,70,0.016998186028960603],[116,-3,71,0.01964389745072906],[116,-3,72,0.022203675701753273],[116,-3,73,0.02467526348860865],[116,-3,74,0.027056401455513093],[116,-3,75,0.02934484334027989],[116,-3,76,0.031538370589612987],[116,-3,77,0.033634806434017006],[116,-3,78,0.035632029422115075],[116,-3,79,0.03752798641465226],[116,-2,64,-0.004740040778218262],[116,-2,65,-0.001665104146042519],[116,-2,66,0.0013400344744314424],[116,-2,67,0.0042735580454480795],[116,-2,68,0.007133535651695701],[116,-2,69,0.009917941058575276],[116,-2,70,0.01262467073215974],[116,-2,71,0.015251561320651662],[116,-2,72,0.017796406597601816],[116,-2,73,0.020256973866574664],[116,-2,74,0.022631019827408193],[116,-2,75,0.024916305904223],[116,-2,76,0.027110613034856408],[116,-2,77,0.029211755921995583],[116,-2,78,0.031217596745801532],[116,-2,79,0.03312605833830483],[116,-1,64,-0.008909901325259546],[116,-1,65,-0.005877983845744304],[116,-1,66,-0.0029123624264187284],[116,-1,67,-1.4773714873260457E-5],[116,-1,68,0.0028129225494937862],[116,-1,69,0.005568762233065766],[116,-1,70,0.008250694969793776],[116,-1,71,0.010856601786984978],[116,-1,72,0.01338431219535885],[116,-1,73,0.015831620743055892],[116,-1,74,0.018196303033745358],[116,-1,75,0.02047613120898826],[116,-1,76,0.02266888889453024],[116,-1,77,0.02477238561080053],[116,-1,78,0.026784470647405655],[116,-1,79,0.028703046401901182],[116,0,64,-0.013061135108136536],[116,0,65,-0.010074093052740214],[116,0,66,-0.007149898654704764],[116,0,67,-0.004290207221717718],[116,0,68,-0.0014968060418509288],[116,0,69,0.001228404433009804],[116,0,70,0.0038834288708561454],[116,0,71,0.006466194810173319],[116,0,72,0.008974569877748195],[116,0,73,0.01140637847335093],[116,0,74,0.013759417921439691],[116,0,75,0.016031474090044934],[116,0,76,0.01822033647650481],[116,0,77,0.020323812760330268],[116,0,78,0.022339742822987875],[116,0,79,0.024266012234884657],[116,1,64,-0.01718672048749264],[116,1,65,-0.014246375953866776],[116,1,66,-0.011365488069381473],[116,1,67,-0.008545629952095228],[116,1,68,-0.005788515254007996],[116,1,69,-0.003095979245918333],[116,1,70,-4.6996043182259695E-4],[116,1,71,0.0020875173069447722],[116,1,72,0.004574362038099487],[116,1,73,0.006988430575005859],[116,1,74,0.009327544743632614],[116,1,75,0.011589507120024739],[116,1,76,0.01377211623796172],[116,1,77,0.015873181267082086],[116,1,78,0.01789053616126087],[116,1,79,0.019822053277524558],[116,2,64,-0.021279665440545235],[116,2,65,-0.018387803088214257],[116,2,66,-0.01555206748807085],[116,2,67,-0.012773948819879428],[116,2,68,-0.010055086007213387],[116,2,69,-0.007397247724180003],[116,2,70,-0.0048023139279445085],[116,2,71,-0.0022722579172519894],[116,2,72,1.9087108332223324E-4],[116,2,73,0.0025849648130740546],[116,2,74,0.0049078723389731],[116,2,75,0.007157415893724699],[116,2,76,0.009331406187760488],[116,2,77,0.01142765719543768],[116,2,78,0.013444000415234816],[116,2,79,0.015378298604227361],[116,3,64,-0.0051395116876196585],[116,3,65,-0.009063479377119777],[116,3,66,-0.01444499219721523],[116,3,67,-0.016968094381944694],[116,3,68,-0.014289419188323847],[116,3,69,-0.011668276076604513],[116,3,70,-0.009106484816305098],[116,3,71,-0.006605966191210212],[116,3,72,-0.004168724513490846],[116,3,73,-0.0017968306597287292],[116,3,74,5.075943713034256E-4],[116,3,75,0.0027423953792646352],[116,3,76,0.004905398360941442],[116,3,77,0.006994425387294806],[116,3,78,0.00900730895864827],[116,3,79,0.01094190583829966],[116,4,64,-1.0853439077746073E-4],[116,4,65,-5.847572000324898E-4],[116,4,66,-0.0016710690162068478],[116,4,67,-0.0035699590086639816],[116,4,68,-0.00644786728255178],[116,4,69,-0.010437790060760547],[116,4,70,-0.01337534155154449],[116,4,71,-0.010906453956335799],[116,4,72,-0.008497253110839334],[116,4,73,-0.006149770107974406],[116,4,74,-0.0038660933702506575],[116,4,75,-0.0016483526646076385],[116,4,76,5.01296365355508E-4],[116,4,77,0.0025806871500398676],[116,4,78,0.004587656627183287],[116,4,79,0.006520059158159751],[116,5,64,4.5960582275691596E-4],[116,5,65,7.01910989502221E-5],[116,5,66,2.390442327090227E-7],[116,5,67,-2.1858930474272047E-5],[116,5,68,-2.2979298228278025E-4],[116,5,69,-8.218099452429479E-4],[116,5,70,-0.0019632171920581534],[116,5,71,-0.003788900000496847],[116,5,72,-0.00640583769781028],[116,5,73,-0.009895604478472335],[116,5,74,-0.008205994610777513],[116,5,75,-0.006007621205050898],[116,5,76,-0.0038736859995617615],[116,5,77,-0.0018063409771230388],[116,5,78,1.9225864447404428E-4],[116,5,79,0.002119968395007603],[116,6,64,0.008247919820333915],[116,6,65,0.004584501975848459],[116,6,66,0.0022521938628171294],[116,6,67,9.102325362822968E-4],[116,6,68,2.575431112404591E-4],[116,6,69,3.0391196809645418E-5],[116,6,70,-3.9269021973643675E-11],[116,6,71,-2.9853186414584642E-5],[116,6,72,-2.2524578741872406E-4],[116,6,73,-7.245115016448025E-4],[116,6,74,-0.0016406200018655999],[116,6,75,-0.003063523140627757],[116,6,76,-0.005062455775991012],[116,6,77,-0.006159427378511058],[116,6,78,-0.004171649367108718],[116,6,79,-0.0022511307780640755],[116,7,64,0.034939321778068584],[116,7,65,0.024641214773523424],[116,7,66,0.016767959785215586],[116,7,67,0.010909604569598523],[116,7,68,0.006697554831758796],[116,7,69,0.003802351672694143],[116,7,70,0.0019314070274121797],[116,7,71,8.267118249284995E-4],[116,7,72,2.625311429701857E-4],[116,7,73,4.310007934694761E-5],[116,7,74,3.334202100585483E-7],[116,7,75,-8.438542736203467E-6],[116,7,76,-1.0269650272646359E-4],[116,7,77,-3.809102774584566E-4],[116,7,78,-9.226588932347843E-4],[116,7,79,-0.001790683927025372],[116,8,64,0.09221662912158872],[116,8,65,0.07192327165891871],[116,8,66,0.05523060355780797],[116,8,67,0.041659448326839425],[116,8,68,0.030773557573055214],[116,8,69,0.022177510932403287],[116,8,70,0.015514567328833934],[116,8,71,0.010464482035252232],[116,8,72,0.006741303581868411],[116,8,73,0.0040911640421895275],[116,8,74,0.0022900756242162277],[116,8,75,0.0011417458066087533],[116,8,76,4.7542249616810815E-4],[116,8,77,1.4377984685998613E-4],[116,8,78,2.0854477724215994E-5],[116,8,79,4.086526380925368E-8],[116,9,64,0.19176256247048565],[116,9,65,0.15811351756401118],[116,9,66,0.12932309426515698],[116,9,67,0.10484285687875668],[116,9,68,0.08416876821953254],[116,9,69,0.06683920949578817],[116,9,70,0.05243294483692306],[116,9,71,0.04056704468053289],[116,9,72,0.030894781837158002],[116,9,73,0.02310351357096705],[116,9,74,0.016912562471753358],[116,9,75,0.012071108245455766],[116,9,76,0.008356101832359865],[116,9,77,0.005570212475174156],[116,9,78,0.0035398175070560766],[116,9,79,0.002113043723850551],[116,10,64,0.345259745586489],[116,10,65,0.29489470013049063],[116,10,66,0.250728303271213],[116,10,67,0.21214282514723976],[116,10,68,0.17856630508053264],[116,10,69,0.14947068888346662],[116,10,70,0.12436990410220339],[116,10,71,0.10281788715515355],[116,10,72,0.08440657595689478],[116,10,73,0.06876388117363957],[116,10,74,0.055551648733914494],[116,10,75,0.04446362560885665],[116,10,76,0.03522344020390481],[116,10,77,0.027582607966452444],[116,10,78,0.021318572012078853],[116,10,79,0.016232787722057048],[116,11,64,0.5643907053252587],[116,11,65,0.49394946965807135],[116,11,66,0.431129004164166],[116,11,67,0.37524224984672944],[116,11,68,0.32564918782833097],[116,11,69,0.28175509155141926],[116,11,70,0.2430087101850143],[116,11,71,0.20890039693976617],[116,11,72,0.17896019565383464],[116,11,73,0.1527558986032548],[116,11,74,0.12989108800920282],[116,11,75,0.11000317314351148],[116,11,76,0.09276143430664097],[116,11,77,0.07786508426545709],[116,11,78,0.06504135698577679],[116,11,79,0.05404363270058847],[116,12,64,0.8608378715918924],[116,12,65,0.7669603790565201],[116,12,66,0.682207872705015],[116,12,67,0.6058239294293485],[116,12,68,0.5371003374398503],[116,12,69,0.4753754608293078],[116,12,70,0.4200325285904549],[116,12,71,0.3704978615328823],[116,12,72,0.3262390502336923],[116,12,73,0.2867630967828958],[116,12,74,0.25161453264519046],[116,12,75,0.22037352442615904],[116,12,76,0.1926539787493325],[116,12,77,0.16810165681466263],[116,12,78,0.14639230850551466],[116,12,79,0.12722983517306435],[116,13,64,1.0],[116,13,65,1.0],[116,13,66,1.0],[116,13,67,0.9155705640336652],[116,13,68,0.8246025761420207],[116,13,69,0.7420147408624499],[116,13,70,0.6671244252069943],[116,13,71,0.5992934683861398],[116,13,72,0.5379264485270858],[116,13,73,0.48246890573432444],[116,13,74,0.43240553366388124],[116,13,75,0.3872583512856805],[116,13,76,0.3465848659725346],[116,13,77,0.30997623846990346],[116,13,78,0.2770554596454882],[116,13,79,0.24747554823529389],[116,14,64,1.0],[116,14,65,1.0],[116,14,66,1.0],[116,14,67,1.0],[116,14,68,1.0],[116,14,69,1.0],[116,14,70,0.9959673662488413],[116,14,71,0.9069703048433325],[116,14,72,0.8257055988252443],[116,14,73,0.7515566545103894],[116,14,74,0.6839475406908404],[116,14,75,0.6223412237289706],[116,14,76,0.5662377861712282],[116,14,77,0.5151726394197937],[116,14,78,0.46871474039295163],[116,14,79,0.42646482147832915],[116,15,64,1.0],[116,15,65,1.0],[116,15,66,1.0],[116,15,67,1.0],[116,15,68,1.0],[116,15,69,1.0],[116,15,70,1.0],[116,15,71,1.0],[116,15,72,1.0],[116,15,73,1.0],[116,15,74,1.0],[116,15,75,0.9373056098704028],[116,15,76,0.863296327221065],[116,15,77,0.7953745671087707],[116,15,78,0.7330539775680784],[116,15,79,0.6758816009051684],[116,16,64,1.0],[116,16,65,1.0],[116,16,66,1.0],[116,16,67,1.0],[116,16,68,1.0],[116,16,69,1.0],[116,16,70,1.0],[116,16,71,1.0],[116,16,72,1.0],[116,16,73,1.0],[116,16,74,1.0],[116,16,75,1.0],[116,16,76,1.0],[116,16,77,1.0],[116,16,78,1.0],[116,16,79,1.0],[116,17,64,1.0],[116,17,65,1.0],[116,17,66,1.0],[116,17,67,1.0],[116,17,68,1.0],[116,17,69,1.0],[116,17,70,1.0],[116,17,71,1.0],[116,17,72,1.0],[116,17,73,1.0],[116,17,74,1.0],[116,17,75,1.0],[116,17,76,1.0],[116,17,77,1.0],[116,17,78,1.0],[116,17,79,1.0],[116,18,64,1.0],[116,18,65,1.0],[116,18,66,1.0],[116,18,67,1.0],[116,18,68,1.0],[116,18,69,1.0],[116,18,70,1.0],[116,18,71,1.0],[116,18,72,1.0],[116,18,73,1.0],[116,18,74,1.0],[116,18,75,1.0],[116,18,76,1.0],[116,18,77,1.0],[116,18,78,1.0],[116,18,79,1.0],[116,19,64,1.0],[116,19,65,1.0],[116,19,66,1.0],[116,19,67,1.0],[116,19,68,1.0],[116,19,69,1.0],[116,19,70,1.0],[116,19,71,1.0],[116,19,72,1.0],[116,19,73,1.0],[116,19,74,1.0],[116,19,75,1.0],[116,19,76,1.0],[116,19,77,1.0],[116,19,78,1.0],[116,19,79,1.0],[116,20,64,1.0],[116,20,65,1.0],[116,20,66,1.0],[116,20,67,1.0],[116,20,68,1.0],[116,20,69,1.0],[116,20,70,1.0],[116,20,71,1.0],[116,20,72,1.0],[116,20,73,1.0],[116,20,74,1.0],[116,20,75,1.0],[116,20,76,1.0],[116,20,77,1.0],[116,20,78,1.0],[116,20,79,1.0],[116,21,64,1.0],[116,21,65,1.0],[116,21,66,1.0],[116,21,67,1.0],[116,21,68,1.0],[116,21,69,1.0],[116,21,70,1.0],[116,21,71,1.0],[116,21,72,1.0],[116,21,73,1.0],[116,21,74,1.0],[116,21,75,1.0],[116,21,76,1.0],[116,21,77,1.0],[116,21,78,1.0],[116,21,79,1.0],[116,22,64,1.0],[116,22,65,1.0],[116,22,66,1.0],[116,22,67,1.0],[116,22,68,1.0],[116,22,69,1.0],[116,22,70,1.0],[116,22,71,1.0],[116,22,72,1.0],[116,22,73,1.0],[116,22,74,1.0],[116,22,75,1.0],[116,22,76,1.0],[116,22,77,1.0],[116,22,78,1.0],[116,22,79,1.0],[116,23,64,1.0],[116,23,65,1.0],[116,23,66,1.0],[116,23,67,1.0],[116,23,68,1.0],[116,23,69,1.0],[116,23,70,1.0],[116,23,71,1.0],[116,23,72,1.0],[116,23,73,1.0],[116,23,74,1.0],[116,23,75,1.0],[116,23,76,1.0],[116,23,77,1.0],[116,23,78,1.0],[116,23,79,1.0],[116,24,64,1.0],[116,24,65,1.0],[116,24,66,1.0],[116,24,67,1.0],[116,24,68,1.0],[116,24,69,1.0],[116,24,70,1.0],[116,24,71,1.0],[116,24,72,1.0],[116,24,73,1.0],[116,24,74,1.0],[116,24,75,1.0],[116,24,76,1.0],[116,24,77,1.0],[116,24,78,1.0],[116,24,79,1.0],[116,25,64,1.0],[116,25,65,1.0],[116,25,66,1.0],[116,25,67,1.0],[116,25,68,1.0],[116,25,69,1.0],[116,25,70,1.0],[116,25,71,1.0],[116,25,72,1.0],[116,25,73,1.0],[116,25,74,1.0],[116,25,75,1.0],[116,25,76,1.0],[116,25,77,1.0],[116,25,78,1.0],[116,25,79,1.0],[116,26,64,1.0],[116,26,65,1.0],[116,26,66,1.0],[116,26,67,1.0],[116,26,68,1.0],[116,26,69,1.0],[116,26,70,1.0],[116,26,71,1.0],[116,26,72,1.0],[116,26,73,1.0],[116,26,74,1.0],[116,26,75,1.0],[116,26,76,1.0],[116,26,77,1.0],[116,26,78,1.0],[116,26,79,1.0],[116,27,64,1.0],[116,27,65,1.0],[116,27,66,1.0],[116,27,67,1.0],[116,27,68,1.0],[116,27,69,1.0],[116,27,70,1.0],[116,27,71,1.0],[116,27,72,1.0],[116,27,73,1.0],[116,27,74,1.0],[116,27,75,1.0],[116,27,76,1.0],[116,27,77,1.0],[116,27,78,1.0],[116,27,79,1.0],[116,28,64,1.0],[116,28,65,1.0],[116,28,66,1.0],[116,28,67,1.0],[116,28,68,1.0],[116,28,69,1.0],[116,28,70,1.0],[116,28,71,1.0],[116,28,72,1.0],[116,28,73,1.0],[116,28,74,1.0],[116,28,75,1.0],[116,28,76,1.0],[116,28,77,1.0],[116,28,78,1.0],[116,28,79,1.0],[116,29,64,1.0],[116,29,65,1.0],[116,29,66,1.0],[116,29,67,1.0],[116,29,68,1.0],[116,29,69,1.0],[116,29,70,1.0],[116,29,71,1.0],[116,29,72,1.0],[116,29,73,1.0],[116,29,74,1.0],[116,29,75,1.0],[116,29,76,1.0],[116,29,77,1.0],[116,29,78,1.0],[116,29,79,1.0],[116,30,64,1.0],[116,30,65,1.0],[116,30,66,1.0],[116,30,67,1.0],[116,30,68,1.0],[116,30,69,1.0],[116,30,70,1.0],[116,30,71,1.0],[116,30,72,1.0],[116,30,73,1.0],[116,30,74,1.0],[116,30,75,1.0],[116,30,76,1.0],[116,30,77,1.0],[116,30,78,1.0],[116,30,79,1.0],[116,31,64,1.0],[116,31,65,1.0],[116,31,66,1.0],[116,31,67,1.0],[116,31,68,1.0],[116,31,69,1.0],[116,31,70,1.0],[116,31,71,1.0],[116,31,72,1.0],[116,31,73,1.0],[116,31,74,1.0],[116,31,75,1.0],[116,31,76,1.0],[116,31,77,1.0],[116,31,78,1.0],[116,31,79,1.0],[116,32,64,1.0],[116,32,65,1.0],[116,32,66,1.0],[116,32,67,1.0],[116,32,68,1.0],[116,32,69,1.0],[116,32,70,1.0],[116,32,71,1.0],[116,32,72,1.0],[116,32,73,1.0],[116,32,74,1.0],[116,32,75,1.0],[116,32,76,1.0],[116,32,77,1.0],[116,32,78,1.0],[116,32,79,1.0],[116,33,64,1.0],[116,33,65,1.0],[116,33,66,1.0],[116,33,67,1.0],[116,33,68,1.0],[116,33,69,1.0],[116,33,70,1.0],[116,33,71,1.0],[116,33,72,1.0],[116,33,73,1.0],[116,33,74,1.0],[116,33,75,1.0],[116,33,76,1.0],[116,33,77,1.0],[116,33,78,1.0],[116,33,79,1.0],[116,34,64,1.0],[116,34,65,1.0],[116,34,66,1.0],[116,34,67,1.0],[116,34,68,1.0],[116,34,69,1.0],[116,34,70,1.0],[116,34,71,1.0],[116,34,72,1.0],[116,34,73,1.0],[116,34,74,1.0],[116,34,75,1.0],[116,34,76,1.0],[116,34,77,1.0],[116,34,78,1.0],[116,34,79,1.0],[116,35,64,1.0],[116,35,65,1.0],[116,35,66,1.0],[116,35,67,1.0],[116,35,68,1.0],[116,35,69,1.0],[116,35,70,1.0],[116,35,71,1.0],[116,35,72,1.0],[116,35,73,1.0],[116,35,74,1.0],[116,35,75,1.0],[116,35,76,1.0],[116,35,77,1.0],[116,35,78,1.0],[116,35,79,1.0],[116,36,64,1.0],[116,36,65,1.0],[116,36,66,1.0],[116,36,67,1.0],[116,36,68,1.0],[116,36,69,1.0],[116,36,70,1.0],[116,36,71,1.0],[116,36,72,1.0],[116,36,73,1.0],[116,36,74,1.0],[116,36,75,1.0],[116,36,76,1.0],[116,36,77,1.0],[116,36,78,1.0],[116,36,79,1.0],[116,37,64,1.0],[116,37,65,1.0],[116,37,66,1.0],[116,37,67,1.0],[116,37,68,1.0],[116,37,69,1.0],[116,37,70,1.0],[116,37,71,1.0],[116,37,72,1.0],[116,37,73,1.0],[116,37,74,1.0],[116,37,75,1.0],[116,37,76,1.0],[116,37,77,1.0],[116,37,78,1.0],[116,37,79,1.0],[116,38,64,1.0],[116,38,65,1.0],[116,38,66,1.0],[116,38,67,1.0],[116,38,68,1.0],[116,38,69,1.0],[116,38,70,1.0],[116,38,71,1.0],[116,38,72,1.0],[116,38,73,1.0],[116,38,74,1.0],[116,38,75,1.0],[116,38,76,1.0],[116,38,77,1.0],[116,38,78,1.0],[116,38,79,1.0],[116,39,64,1.0],[116,39,65,1.0],[116,39,66,1.0],[116,39,67,1.0],[116,39,68,1.0],[116,39,69,1.0],[116,39,70,1.0],[116,39,71,1.0],[116,39,72,1.0],[116,39,73,1.0],[116,39,74,1.0],[116,39,75,1.0],[116,39,76,1.0],[116,39,77,1.0],[116,39,78,1.0],[116,39,79,1.0],[116,40,64,1.0],[116,40,65,1.0],[116,40,66,1.0],[116,40,67,1.0],[116,40,68,1.0],[116,40,69,1.0],[116,40,70,1.0],[116,40,71,1.0],[116,40,72,1.0],[116,40,73,1.0],[116,40,74,1.0],[116,40,75,1.0],[116,40,76,1.0],[116,40,77,1.0],[116,40,78,1.0],[116,40,79,1.0],[116,41,64,1.0],[116,41,65,1.0],[116,41,66,1.0],[116,41,67,1.0],[116,41,68,1.0],[116,41,69,1.0],[116,41,70,1.0],[116,41,71,1.0],[116,41,72,1.0],[116,41,73,1.0],[116,41,74,1.0],[116,41,75,1.0],[116,41,76,1.0],[116,41,77,1.0],[116,41,78,1.0],[116,41,79,1.0],[116,42,64,1.0],[116,42,65,1.0],[116,42,66,1.0],[116,42,67,1.0],[116,42,68,1.0],[116,42,69,1.0],[116,42,70,1.0],[116,42,71,1.0],[116,42,72,1.0],[116,42,73,1.0],[116,42,74,1.0],[116,42,75,1.0],[116,42,76,1.0],[116,42,77,1.0],[116,42,78,1.0],[116,42,79,1.0],[116,43,64,1.0],[116,43,65,1.0],[116,43,66,1.0],[116,43,67,1.0],[116,43,68,1.0],[116,43,69,1.0],[116,43,70,1.0],[116,43,71,1.0],[116,43,72,1.0],[116,43,73,1.0],[116,43,74,1.0],[116,43,75,1.0],[116,43,76,1.0],[116,43,77,1.0],[116,43,78,1.0],[116,43,79,1.0],[116,44,64,1.0],[116,44,65,1.0],[116,44,66,1.0],[116,44,67,1.0],[116,44,68,1.0],[116,44,69,1.0],[116,44,70,1.0],[116,44,71,1.0],[116,44,72,1.0],[116,44,73,1.0],[116,44,74,1.0],[116,44,75,1.0],[116,44,76,1.0],[116,44,77,1.0],[116,44,78,1.0],[116,44,79,1.0],[116,45,64,1.0],[116,45,65,1.0],[116,45,66,1.0],[116,45,67,1.0],[116,45,68,1.0],[116,45,69,1.0],[116,45,70,1.0],[116,45,71,1.0],[116,45,72,1.0],[116,45,73,1.0],[116,45,74,1.0],[116,45,75,1.0],[116,45,76,1.0],[116,45,77,1.0],[116,45,78,1.0],[116,45,79,1.0],[116,46,64,1.0],[116,46,65,1.0],[116,46,66,1.0],[116,46,67,1.0],[116,46,68,1.0],[116,46,69,1.0],[116,46,70,1.0],[116,46,71,1.0],[116,46,72,1.0],[116,46,73,1.0],[116,46,74,1.0],[116,46,75,1.0],[116,46,76,1.0],[116,46,77,1.0],[116,46,78,1.0],[116,46,79,1.0],[116,47,64,1.0],[116,47,65,1.0],[116,47,66,1.0],[116,47,67,1.0],[116,47,68,1.0],[116,47,69,1.0],[116,47,70,1.0],[116,47,71,1.0],[116,47,72,1.0],[116,47,73,1.0],[116,47,74,1.0],[116,47,75,1.0],[116,47,76,1.0],[116,47,77,1.0],[116,47,78,1.0],[116,47,79,1.0],[116,48,64,1.0],[116,48,65,1.0],[116,48,66,1.0],[116,48,67,1.0],[116,48,68,1.0],[116,48,69,1.0],[116,48,70,1.0],[116,48,71,1.0],[116,48,72,1.0],[116,48,73,1.0],[116,48,74,1.0],[116,48,75,1.0],[116,48,76,1.0],[116,48,77,1.0],[116,48,78,1.0],[116,48,79,1.0],[116,49,64,1.0],[116,49,65,1.0],[116,49,66,1.0],[116,49,67,1.0],[116,49,68,1.0],[116,49,69,1.0],[116,49,70,1.0],[116,49,71,1.0],[116,49,72,1.0],[116,49,73,1.0],[116,49,74,1.0],[116,49,75,1.0],[116,49,76,1.0],[116,49,77,1.0],[116,49,78,1.0],[116,49,79,1.0],[116,50,64,1.0],[116,50,65,1.0],[116,50,66,1.0],[116,50,67,1.0],[116,50,68,1.0],[116,50,69,1.0],[116,50,70,1.0],[116,50,71,1.0],[116,50,72,1.0],[116,50,73,1.0],[116,50,74,1.0],[116,50,75,1.0],[116,50,76,1.0],[116,50,77,1.0],[116,50,78,1.0],[116,50,79,1.0],[116,51,64,1.0],[116,51,65,1.0],[116,51,66,1.0],[116,51,67,1.0],[116,51,68,1.0],[116,51,69,1.0],[116,51,70,1.0],[116,51,71,1.0],[116,51,72,1.0],[116,51,73,1.0],[116,51,74,1.0],[116,51,75,1.0],[116,51,76,1.0],[116,51,77,1.0],[116,51,78,1.0],[116,51,79,1.0],[116,52,64,1.0],[116,52,65,1.0],[116,52,66,1.0],[116,52,67,1.0],[116,52,68,1.0],[116,52,69,1.0],[116,52,70,1.0],[116,52,71,1.0],[116,52,72,1.0],[116,52,73,1.0],[116,52,74,1.0],[116,52,75,1.0],[116,52,76,1.0],[116,52,77,1.0],[116,52,78,1.0],[116,52,79,1.0],[116,53,64,1.0],[116,53,65,1.0],[116,53,66,1.0],[116,53,67,1.0],[116,53,68,1.0],[116,53,69,1.0],[116,53,70,1.0],[116,53,71,1.0],[116,53,72,1.0],[116,53,73,1.0],[116,53,74,1.0],[116,53,75,1.0],[116,53,76,1.0],[116,53,77,1.0],[116,53,78,1.0],[116,53,79,1.0],[116,54,64,1.0],[116,54,65,1.0],[116,54,66,1.0],[116,54,67,1.0],[116,54,68,1.0],[116,54,69,1.0],[116,54,70,1.0],[116,54,71,1.0],[116,54,72,1.0],[116,54,73,1.0],[116,54,74,1.0],[116,54,75,1.0],[116,54,76,1.0],[116,54,77,1.0],[116,54,78,1.0],[116,54,79,1.0],[116,55,64,1.0],[116,55,65,1.0],[116,55,66,1.0],[116,55,67,1.0],[116,55,68,1.0],[116,55,69,1.0],[116,55,70,1.0],[116,55,71,1.0],[116,55,72,1.0],[116,55,73,1.0],[116,55,74,1.0],[116,55,75,1.0],[116,55,76,1.0],[116,55,77,1.0],[116,55,78,1.0],[116,55,79,1.0],[116,56,64,1.0],[116,56,65,1.0],[116,56,66,1.0],[116,56,67,1.0],[116,56,68,1.0],[116,56,69,1.0],[116,56,70,1.0],[116,56,71,1.0],[116,56,72,1.0],[116,56,73,1.0],[116,56,74,1.0],[116,56,75,1.0],[116,56,76,1.0],[116,56,77,1.0],[116,56,78,1.0],[116,56,79,1.0],[116,57,64,1.0],[116,57,65,1.0],[116,57,66,1.0],[116,57,67,1.0],[116,57,68,1.0],[116,57,69,1.0],[116,57,70,1.0],[116,57,71,1.0],[116,57,72,1.0],[116,57,73,1.0],[116,57,74,1.0],[116,57,75,1.0],[116,57,76,1.0],[116,57,77,1.0],[116,57,78,1.0],[116,57,79,1.0],[116,58,64,1.0],[116,58,65,1.0],[116,58,66,1.0],[116,58,67,1.0],[116,58,68,1.0],[116,58,69,1.0],[116,58,70,1.0],[116,58,71,1.0],[116,58,72,1.0],[116,58,73,1.0],[116,58,74,1.0],[116,58,75,1.0],[116,58,76,1.0],[116,58,77,1.0],[116,58,78,1.0],[116,58,79,1.0],[116,59,64,1.0],[116,59,65,1.0],[116,59,66,1.0],[116,59,67,1.0],[116,59,68,1.0],[116,59,69,1.0],[116,59,70,1.0],[116,59,71,1.0],[116,59,72,1.0],[116,59,73,1.0],[116,59,74,1.0],[116,59,75,1.0],[116,59,76,1.0],[116,59,77,1.0],[116,59,78,1.0],[116,59,79,1.0],[116,60,64,1.0],[116,60,65,1.0],[116,60,66,1.0],[116,60,67,1.0],[116,60,68,1.0],[116,60,69,1.0],[116,60,70,1.0],[116,60,71,1.0],[116,60,72,1.0],[116,60,73,1.0],[116,60,74,1.0],[116,60,75,1.0],[116,60,76,1.0],[116,60,77,1.0],[116,60,78,1.0],[116,60,79,1.0],[116,61,64,1.0],[116,61,65,1.0],[116,61,66,1.0],[116,61,67,1.0],[116,61,68,1.0],[116,61,69,1.0],[116,61,70,1.0],[116,61,71,1.0],[116,61,72,1.0],[116,61,73,1.0],[116,61,74,1.0],[116,61,75,1.0],[116,61,76,1.0],[116,61,77,1.0],[116,61,78,1.0],[116,61,79,1.0],[116,62,64,1.0],[116,62,65,1.0],[116,62,66,1.0],[116,62,67,1.0],[116,62,68,1.0],[116,62,69,1.0],[116,62,70,1.0],[116,62,71,1.0],[116,62,72,1.0],[116,62,73,1.0],[116,62,74,1.0],[116,62,75,1.0],[116,62,76,1.0],[116,62,77,1.0],[116,62,78,1.0],[116,62,79,1.0],[116,63,64,1.0],[116,63,65,1.0],[116,63,66,1.0],[116,63,67,1.0],[116,63,68,1.0],[116,63,69,1.0],[116,63,70,1.0],[116,63,71,1.0],[116,63,72,1.0],[116,63,73,1.0],[116,63,74,1.0],[116,63,75,1.0],[116,63,76,1.0],[116,63,77,1.0],[116,63,78,1.0],[116,63,79,1.0],[116,64,64,1.0],[116,64,65,1.0],[116,64,66,1.0],[116,64,67,1.0],[116,64,68,1.0],[116,64,69,1.0],[116,64,70,1.0],[116,64,71,1.0],[116,64,72,1.0],[116,64,73,1.0],[116,64,74,1.0],[116,64,75,1.0],[116,64,76,1.0],[116,64,77,1.0],[116,64,78,1.0],[116,64,79,1.0],[116,65,64,1.0],[116,65,65,1.0],[116,65,66,1.0],[116,65,67,1.0],[116,65,68,1.0],[116,65,69,1.0],[116,65,70,1.0],[116,65,71,1.0],[116,65,72,1.0],[116,65,73,1.0],[116,65,74,1.0],[116,65,75,1.0],[116,65,76,1.0],[116,65,77,1.0],[116,65,78,1.0],[116,65,79,1.0],[116,66,64,1.0],[116,66,65,1.0],[116,66,66,1.0],[116,66,67,1.0],[116,66,68,1.0],[116,66,69,1.0],[116,66,70,1.0],[116,66,71,1.0],[116,66,72,1.0],[116,66,73,1.0],[116,66,74,1.0],[116,66,75,1.0],[116,66,76,1.0],[116,66,77,1.0],[116,66,78,1.0],[116,66,79,1.0],[116,67,64,1.0],[116,67,65,1.0],[116,67,66,1.0],[116,67,67,1.0],[116,67,68,1.0],[116,67,69,1.0],[116,67,70,1.0],[116,67,71,1.0],[116,67,72,1.0],[116,67,73,1.0],[116,67,74,1.0],[116,67,75,1.0],[116,67,76,1.0],[116,67,77,1.0],[116,67,78,1.0],[116,67,79,1.0],[116,68,64,1.0],[116,68,65,1.0],[116,68,66,1.0],[116,68,67,1.0],[116,68,68,1.0],[116,68,69,1.0],[116,68,70,1.0],[116,68,71,1.0],[116,68,72,1.0],[116,68,73,1.0],[116,68,74,1.0],[116,68,75,1.0],[116,68,76,1.0],[116,68,77,1.0],[116,68,78,1.0],[116,68,79,1.0],[116,69,64,1.0],[116,69,65,1.0],[116,69,66,1.0],[116,69,67,1.0],[116,69,68,1.0],[116,69,69,1.0],[116,69,70,1.0],[116,69,71,1.0],[116,69,72,1.0],[116,69,73,1.0],[116,69,74,1.0],[116,69,75,1.0],[116,69,76,1.0],[116,69,77,1.0],[116,69,78,1.0],[116,69,79,1.0],[116,70,64,1.0],[116,70,65,1.0],[116,70,66,1.0],[116,70,67,1.0],[116,70,68,1.0],[116,70,69,1.0],[116,70,70,1.0],[116,70,71,1.0],[116,70,72,1.0],[116,70,73,1.0],[116,70,74,1.0],[116,70,75,1.0],[116,70,76,1.0],[116,70,77,1.0],[116,70,78,1.0],[116,70,79,1.0],[116,71,64,1.0],[116,71,65,1.0],[116,71,66,1.0],[116,71,67,1.0],[116,71,68,1.0],[116,71,69,1.0],[116,71,70,1.0],[116,71,71,1.0],[116,71,72,1.0],[116,71,73,1.0],[116,71,74,1.0],[116,71,75,1.0],[116,71,76,1.0],[116,71,77,1.0],[116,71,78,1.0],[116,71,79,1.0],[116,72,64,1.0],[116,72,65,1.0],[116,72,66,1.0],[116,72,67,1.0],[116,72,68,1.0],[116,72,69,1.0],[116,72,70,1.0],[116,72,71,1.0],[116,72,72,1.0],[116,72,73,1.0],[116,72,74,1.0],[116,72,75,1.0],[116,72,76,1.0],[116,72,77,1.0],[116,72,78,1.0],[116,72,79,1.0],[116,73,64,1.0],[116,73,65,1.0],[116,73,66,1.0],[116,73,67,1.0],[116,73,68,1.0],[116,73,69,1.0],[116,73,70,1.0],[116,73,71,1.0],[116,73,72,1.0],[116,73,73,1.0],[116,73,74,1.0],[116,73,75,1.0],[116,73,76,1.0],[116,73,77,1.0],[116,73,78,1.0],[116,73,79,1.0],[116,74,64,1.0],[116,74,65,1.0],[116,74,66,1.0],[116,74,67,1.0],[116,74,68,1.0],[116,74,69,1.0],[116,74,70,1.0],[116,74,71,1.0],[116,74,72,1.0],[116,74,73,1.0],[116,74,74,1.0],[116,74,75,1.0],[116,74,76,1.0],[116,74,77,1.0],[116,74,78,1.0],[116,74,79,1.0],[116,75,64,1.0],[116,75,65,1.0],[116,75,66,1.0],[116,75,67,1.0],[116,75,68,1.0],[116,75,69,1.0],[116,75,70,1.0],[116,75,71,1.0],[116,75,72,1.0],[116,75,73,1.0],[116,75,74,1.0],[116,75,75,1.0],[116,75,76,1.0],[116,75,77,1.0],[116,75,78,1.0],[116,75,79,1.0],[116,76,64,1.0],[116,76,65,1.0],[116,76,66,1.0],[116,76,67,1.0],[116,76,68,1.0],[116,76,69,1.0],[116,76,70,1.0],[116,76,71,1.0],[116,76,72,1.0],[116,76,73,1.0],[116,76,74,1.0],[116,76,75,1.0],[116,76,76,1.0],[116,76,77,1.0],[116,76,78,1.0],[116,76,79,1.0],[116,77,64,1.0],[116,77,65,1.0],[116,77,66,1.0],[116,77,67,1.0],[116,77,68,1.0],[116,77,69,1.0],[116,77,70,1.0],[116,77,71,1.0],[116,77,72,1.0],[116,77,73,1.0],[116,77,74,1.0],[116,77,75,1.0],[116,77,76,1.0],[116,77,77,1.0],[116,77,78,1.0],[116,77,79,1.0],[116,78,64,1.0],[116,78,65,1.0],[116,78,66,1.0],[116,78,67,1.0],[116,78,68,1.0],[116,78,69,1.0],[116,78,70,1.0],[116,78,71,1.0],[116,78,72,1.0],[116,78,73,1.0],[116,78,74,1.0],[116,78,75,1.0],[116,78,76,1.0],[116,78,77,1.0],[116,78,78,1.0],[116,78,79,1.0],[116,79,64,1.0],[116,79,65,1.0],[116,79,66,1.0],[116,79,67,1.0],[116,79,68,1.0],[116,79,69,1.0],[116,79,70,1.0],[116,79,71,1.0],[116,79,72,1.0],[116,79,73,1.0],[116,79,74,1.0],[116,79,75,1.0],[116,79,76,1.0],[116,79,77,1.0],[116,79,78,1.0],[116,79,79,1.0],[116,80,64,1.0],[116,80,65,1.0],[116,80,66,1.0],[116,80,67,1.0],[116,80,68,1.0],[116,80,69,1.0],[116,80,70,1.0],[116,80,71,1.0],[116,80,72,1.0],[116,80,73,1.0],[116,80,74,1.0],[116,80,75,1.0],[116,80,76,1.0],[116,80,77,1.0],[116,80,78,1.0],[116,80,79,1.0],[116,81,64,1.0],[116,81,65,1.0],[116,81,66,1.0],[116,81,67,1.0],[116,81,68,1.0],[116,81,69,1.0],[116,81,70,1.0],[116,81,71,1.0],[116,81,72,1.0],[116,81,73,1.0],[116,81,74,1.0],[116,81,75,1.0],[116,81,76,1.0],[116,81,77,1.0],[116,81,78,1.0],[116,81,79,1.0],[116,82,64,1.0],[116,82,65,1.0],[116,82,66,1.0],[116,82,67,1.0],[116,82,68,1.0],[116,82,69,1.0],[116,82,70,1.0],[116,82,71,1.0],[116,82,72,1.0],[116,82,73,1.0],[116,82,74,1.0],[116,82,75,1.0],[116,82,76,1.0],[116,82,77,1.0],[116,82,78,1.0],[116,82,79,1.0],[116,83,64,1.0],[116,83,65,1.0],[116,83,66,1.0],[116,83,67,1.0],[116,83,68,1.0],[116,83,69,1.0],[116,83,70,1.0],[116,83,71,1.0],[116,83,72,1.0],[116,83,73,1.0],[116,83,74,1.0],[116,83,75,1.0],[116,83,76,1.0],[116,83,77,1.0],[116,83,78,1.0],[116,83,79,1.0],[116,84,64,1.0],[116,84,65,1.0],[116,84,66,1.0],[116,84,67,1.0],[116,84,68,1.0],[116,84,69,1.0],[116,84,70,1.0],[116,84,71,1.0],[116,84,72,1.0],[116,84,73,1.0],[116,84,74,1.0],[116,84,75,1.0],[116,84,76,1.0],[116,84,77,1.0],[116,84,78,1.0],[116,84,79,1.0],[116,85,64,1.0],[116,85,65,1.0],[116,85,66,1.0],[116,85,67,1.0],[116,85,68,1.0],[116,85,69,1.0],[116,85,70,1.0],[116,85,71,1.0],[116,85,72,1.0],[116,85,73,1.0],[116,85,74,1.0],[116,85,75,1.0],[116,85,76,1.0],[116,85,77,1.0],[116,85,78,1.0],[116,85,79,1.0],[116,86,64,1.0],[116,86,65,1.0],[116,86,66,1.0],[116,86,67,1.0],[116,86,68,1.0],[116,86,69,1.0],[116,86,70,1.0],[116,86,71,1.0],[116,86,72,1.0],[116,86,73,1.0],[116,86,74,1.0],[116,86,75,1.0],[116,86,76,1.0],[116,86,77,1.0],[116,86,78,1.0],[116,86,79,1.0],[116,87,64,1.0],[116,87,65,1.0],[116,87,66,1.0],[116,87,67,1.0],[116,87,68,1.0],[116,87,69,1.0],[116,87,70,1.0],[116,87,71,1.0],[116,87,72,1.0],[116,87,73,1.0],[116,87,74,1.0],[116,87,75,1.0],[116,87,76,1.0],[116,87,77,1.0],[116,87,78,1.0],[116,87,79,1.0],[116,88,64,1.0],[116,88,65,1.0],[116,88,66,1.0],[116,88,67,1.0],[116,88,68,1.0],[116,88,69,1.0],[116,88,70,1.0],[116,88,71,1.0],[116,88,72,1.0],[116,88,73,1.0],[116,88,74,1.0],[116,88,75,1.0],[116,88,76,1.0],[116,88,77,1.0],[116,88,78,1.0],[116,88,79,1.0],[116,89,64,1.0],[116,89,65,1.0],[116,89,66,1.0],[116,89,67,1.0],[116,89,68,1.0],[116,89,69,1.0],[116,89,70,1.0],[116,89,71,1.0],[116,89,72,1.0],[116,89,73,1.0],[116,89,74,1.0],[116,89,75,1.0],[116,89,76,1.0],[116,89,77,1.0],[116,89,78,1.0],[116,89,79,1.0],[116,90,64,1.0],[116,90,65,1.0],[116,90,66,1.0],[116,90,67,1.0],[116,90,68,1.0],[116,90,69,1.0],[116,90,70,1.0],[116,90,71,1.0],[116,90,72,1.0],[116,90,73,1.0],[116,90,74,1.0],[116,90,75,1.0],[116,90,76,1.0],[116,90,77,1.0],[116,90,78,1.0],[116,90,79,1.0],[116,91,64,1.0],[116,91,65,1.0],[116,91,66,1.0],[116,91,67,1.0],[116,91,68,1.0],[116,91,69,1.0],[116,91,70,1.0],[116,91,71,1.0],[116,91,72,1.0],[116,91,73,1.0],[116,91,74,1.0],[116,91,75,1.0],[116,91,76,1.0],[116,91,77,1.0],[116,91,78,1.0],[116,91,79,1.0],[116,92,64,1.0],[116,92,65,1.0],[116,92,66,1.0],[116,92,67,1.0],[116,92,68,1.0],[116,92,69,1.0],[116,92,70,1.0],[116,92,71,1.0],[116,92,72,1.0],[116,92,73,1.0],[116,92,74,1.0],[116,92,75,1.0],[116,92,76,1.0],[116,92,77,1.0],[116,92,78,1.0],[116,92,79,1.0],[116,93,64,1.0],[116,93,65,1.0],[116,93,66,1.0],[116,93,67,1.0],[116,93,68,1.0],[116,93,69,1.0],[116,93,70,1.0],[116,93,71,1.0],[116,93,72,1.0],[116,93,73,1.0],[116,93,74,1.0],[116,93,75,1.0],[116,93,76,1.0],[116,93,77,1.0],[116,93,78,1.0],[116,93,79,1.0],[116,94,64,1.0],[116,94,65,1.0],[116,94,66,1.0],[116,94,67,1.0],[116,94,68,1.0],[116,94,69,1.0],[116,94,70,1.0],[116,94,71,1.0],[116,94,72,1.0],[116,94,73,1.0],[116,94,74,1.0],[116,94,75,1.0],[116,94,76,1.0],[116,94,77,1.0],[116,94,78,1.0],[116,94,79,1.0],[116,95,64,1.0],[116,95,65,1.0],[116,95,66,1.0],[116,95,67,1.0],[116,95,68,1.0],[116,95,69,1.0],[116,95,70,1.0],[116,95,71,1.0],[116,95,72,1.0],[116,95,73,1.0],[116,95,74,1.0],[116,95,75,1.0],[116,95,76,1.0],[116,95,77,1.0],[116,95,78,1.0],[116,95,79,1.0],[116,96,64,1.0],[116,96,65,1.0],[116,96,66,1.0],[116,96,67,1.0],[116,96,68,1.0],[116,96,69,1.0],[116,96,70,1.0],[116,96,71,1.0],[116,96,72,1.0],[116,96,73,1.0],[116,96,74,1.0],[116,96,75,1.0],[116,96,76,1.0],[116,96,77,1.0],[116,96,78,1.0],[116,96,79,1.0],[116,97,64,1.0],[116,97,65,1.0],[116,97,66,1.0],[116,97,67,1.0],[116,97,68,1.0],[116,97,69,1.0],[116,97,70,1.0],[116,97,71,1.0],[116,97,72,1.0],[116,97,73,1.0],[116,97,74,1.0],[116,97,75,1.0],[116,97,76,1.0],[116,97,77,1.0],[116,97,78,1.0],[116,97,79,1.0],[116,98,64,1.0],[116,98,65,1.0],[116,98,66,1.0],[116,98,67,1.0],[116,98,68,1.0],[116,98,69,1.0],[116,98,70,1.0],[116,98,71,1.0],[116,98,72,1.0],[116,98,73,1.0],[116,98,74,1.0],[116,98,75,1.0],[116,98,76,1.0],[116,98,77,1.0],[116,98,78,1.0],[116,98,79,1.0],[116,99,64,1.0],[116,99,65,1.0],[116,99,66,1.0],[116,99,67,1.0],[116,99,68,1.0],[116,99,69,1.0],[116,99,70,1.0],[116,99,71,1.0],[116,99,72,1.0],[116,99,73,1.0],[116,99,74,1.0],[116,99,75,1.0],[116,99,76,1.0],[116,99,77,1.0],[116,99,78,1.0],[116,99,79,1.0],[116,100,64,1.0],[116,100,65,1.0],[116,100,66,1.0],[116,100,67,1.0],[116,100,68,1.0],[116,100,69,1.0],[116,100,70,1.0],[116,100,71,1.0],[116,100,72,1.0],[116,100,73,1.0],[116,100,74,1.0],[116,100,75,1.0],[116,100,76,1.0],[116,100,77,1.0],[116,100,78,1.0],[116,100,79,1.0],[116,101,64,1.0],[116,101,65,1.0],[116,101,66,1.0],[116,101,67,1.0],[116,101,68,1.0],[116,101,69,1.0],[116,101,70,1.0],[116,101,71,1.0],[116,101,72,1.0],[116,101,73,1.0],[116,101,74,1.0],[116,101,75,1.0],[116,101,76,1.0],[116,101,77,1.0],[116,101,78,1.0],[116,101,79,1.0],[116,102,64,1.0],[116,102,65,1.0],[116,102,66,1.0],[116,102,67,1.0],[116,102,68,1.0],[116,102,69,1.0],[116,102,70,1.0],[116,102,71,1.0],[116,102,72,1.0],[116,102,73,1.0],[116,102,74,1.0],[116,102,75,1.0],[116,102,76,1.0],[116,102,77,1.0],[116,102,78,1.0],[116,102,79,1.0],[116,103,64,1.0],[116,103,65,1.0],[116,103,66,1.0],[116,103,67,1.0],[116,103,68,1.0],[116,103,69,1.0],[116,103,70,1.0],[116,103,71,1.0],[116,103,72,1.0],[116,103,73,1.0],[116,103,74,1.0],[116,103,75,1.0],[116,103,76,1.0],[116,103,77,1.0],[116,103,78,1.0],[116,103,79,1.0],[116,104,64,1.0],[116,104,65,1.0],[116,104,66,1.0],[116,104,67,1.0],[116,104,68,1.0],[116,104,69,1.0],[116,104,70,1.0],[116,104,71,1.0],[116,104,72,1.0],[116,104,73,1.0],[116,104,74,1.0],[116,104,75,1.0],[116,104,76,1.0],[116,104,77,1.0],[116,104,78,1.0],[116,104,79,1.0],[116,105,64,1.0],[116,105,65,1.0],[116,105,66,1.0],[116,105,67,1.0],[116,105,68,1.0],[116,105,69,1.0],[116,105,70,1.0],[116,105,71,1.0],[116,105,72,1.0],[116,105,73,1.0],[116,105,74,1.0],[116,105,75,1.0],[116,105,76,1.0],[116,105,77,1.0],[116,105,78,1.0],[116,105,79,1.0],[116,106,64,1.0],[116,106,65,1.0],[116,106,66,1.0],[116,106,67,1.0],[116,106,68,1.0],[116,106,69,1.0],[116,106,70,1.0],[116,106,71,1.0],[116,106,72,1.0],[116,106,73,1.0],[116,106,74,1.0],[116,106,75,1.0],[116,106,76,1.0],[116,106,77,1.0],[116,106,78,1.0],[116,106,79,1.0],[116,107,64,1.0],[116,107,65,1.0],[116,107,66,1.0],[116,107,67,1.0],[116,107,68,1.0],[116,107,69,1.0],[116,107,70,1.0],[116,107,71,1.0],[116,107,72,1.0],[116,107,73,1.0],[116,107,74,1.0],[116,107,75,1.0],[116,107,76,1.0],[116,107,77,1.0],[116,107,78,1.0],[116,107,79,1.0],[116,108,64,1.0],[116,108,65,1.0],[116,108,66,1.0],[116,108,67,1.0],[116,108,68,1.0],[116,108,69,1.0],[116,108,70,1.0],[116,108,71,1.0],[116,108,72,1.0],[116,108,73,1.0],[116,108,74,1.0],[116,108,75,1.0],[116,108,76,1.0],[116,108,77,1.0],[116,108,78,1.0],[116,108,79,1.0],[116,109,64,1.0],[116,109,65,1.0],[116,109,66,1.0],[116,109,67,1.0],[116,109,68,1.0],[116,109,69,1.0],[116,109,70,1.0],[116,109,71,1.0],[116,109,72,1.0],[116,109,73,1.0],[116,109,74,1.0],[116,109,75,1.0],[116,109,76,1.0],[116,109,77,1.0],[116,109,78,1.0],[116,109,79,1.0],[116,110,64,1.0],[116,110,65,1.0],[116,110,66,1.0],[116,110,67,1.0],[116,110,68,1.0],[116,110,69,1.0],[116,110,70,1.0],[116,110,71,1.0],[116,110,72,1.0],[116,110,73,1.0],[116,110,74,1.0],[116,110,75,1.0],[116,110,76,1.0],[116,110,77,1.0],[116,110,78,1.0],[116,110,79,1.0],[116,111,64,1.0],[116,111,65,1.0],[116,111,66,1.0],[116,111,67,1.0],[116,111,68,1.0],[116,111,69,1.0],[116,111,70,1.0],[116,111,71,1.0],[116,111,72,1.0],[116,111,73,1.0],[116,111,74,1.0],[116,111,75,1.0],[116,111,76,1.0],[116,111,77,1.0],[116,111,78,1.0],[116,111,79,1.0],[116,112,64,1.0],[116,112,65,1.0],[116,112,66,1.0],[116,112,67,1.0],[116,112,68,1.0],[116,112,69,1.0],[116,112,70,1.0],[116,112,71,1.0],[116,112,72,1.0],[116,112,73,1.0],[116,112,74,1.0],[116,112,75,1.0],[116,112,76,1.0],[116,112,77,1.0],[116,112,78,1.0],[116,112,79,1.0],[116,113,64,1.0],[116,113,65,1.0],[116,113,66,1.0],[116,113,67,1.0],[116,113,68,1.0],[116,113,69,1.0],[116,113,70,1.0],[116,113,71,1.0],[116,113,72,1.0],[116,113,73,1.0],[116,113,74,1.0],[116,113,75,1.0],[116,113,76,1.0],[116,113,77,1.0],[116,113,78,1.0],[116,113,79,1.0],[116,114,64,1.0],[116,114,65,1.0],[116,114,66,1.0],[116,114,67,1.0],[116,114,68,1.0],[116,114,69,1.0],[116,114,70,1.0],[116,114,71,1.0],[116,114,72,1.0],[116,114,73,1.0],[116,114,74,1.0],[116,114,75,1.0],[116,114,76,1.0],[116,114,77,1.0],[116,114,78,1.0],[116,114,79,1.0],[116,115,64,1.0],[116,115,65,1.0],[116,115,66,1.0],[116,115,67,1.0],[116,115,68,1.0],[116,115,69,1.0],[116,115,70,1.0],[116,115,71,1.0],[116,115,72,1.0],[116,115,73,1.0],[116,115,74,1.0],[116,115,75,1.0],[116,115,76,1.0],[116,115,77,1.0],[116,115,78,1.0],[116,115,79,1.0],[116,116,64,1.0],[116,116,65,1.0],[116,116,66,1.0],[116,116,67,1.0],[116,116,68,1.0],[116,116,69,1.0],[116,116,70,1.0],[116,116,71,1.0],[116,116,72,1.0],[116,116,73,1.0],[116,116,74,1.0],[116,116,75,1.0],[116,116,76,1.0],[116,116,77,1.0],[116,116,78,1.0],[116,116,79,1.0],[116,117,64,1.0],[116,117,65,1.0],[116,117,66,1.0],[116,117,67,1.0],[116,117,68,1.0],[116,117,69,1.0],[116,117,70,1.0],[116,117,71,1.0],[116,117,72,1.0],[116,117,73,1.0],[116,117,74,1.0],[116,117,75,1.0],[116,117,76,1.0],[116,117,77,1.0],[116,117,78,1.0],[116,117,79,1.0],[116,118,64,1.0],[116,118,65,1.0],[116,118,66,1.0],[116,118,67,1.0],[116,118,68,1.0],[116,118,69,1.0],[116,118,70,1.0],[116,118,71,1.0],[116,118,72,1.0],[116,118,73,1.0],[116,118,74,1.0],[116,118,75,1.0],[116,118,76,1.0],[116,118,77,1.0],[116,118,78,1.0],[116,118,79,1.0],[116,119,64,1.0],[116,119,65,1.0],[116,119,66,1.0],[116,119,67,1.0],[116,119,68,1.0],[116,119,69,1.0],[116,119,70,1.0],[116,119,71,1.0],[116,119,72,1.0],[116,119,73,1.0],[116,119,74,1.0],[116,119,75,1.0],[116,119,76,1.0],[116,119,77,1.0],[116,119,78,1.0],[116,119,79,1.0],[116,120,64,1.0],[116,120,65,1.0],[116,120,66,1.0],[116,120,67,1.0],[116,120,68,1.0],[116,120,69,1.0],[116,120,70,1.0],[116,120,71,1.0],[116,120,72,1.0],[116,120,73,1.0],[116,120,74,1.0],[116,120,75,1.0],[116,120,76,1.0],[116,120,77,1.0],[116,120,78,1.0],[116,120,79,1.0],[116,121,64,1.0],[116,121,65,1.0],[116,121,66,1.0],[116,121,67,1.0],[116,121,68,1.0],[116,121,69,1.0],[116,121,70,1.0],[116,121,71,1.0],[116,121,72,1.0],[116,121,73,1.0],[116,121,74,1.0],[116,121,75,1.0],[116,121,76,1.0],[116,121,77,1.0],[116,121,78,1.0],[116,121,79,1.0],[116,122,64,1.0],[116,122,65,1.0],[116,122,66,1.0],[116,122,67,1.0],[116,122,68,1.0],[116,122,69,1.0],[116,122,70,1.0],[116,122,71,1.0],[116,122,72,1.0],[116,122,73,1.0],[116,122,74,1.0],[116,122,75,1.0],[116,122,76,1.0],[116,122,77,1.0],[116,122,78,1.0],[116,122,79,1.0],[116,123,64,1.0],[116,123,65,1.0],[116,123,66,1.0],[116,123,67,1.0],[116,123,68,1.0],[116,123,69,1.0],[116,123,70,1.0],[116,123,71,1.0],[116,123,72,1.0],[116,123,73,1.0],[116,123,74,1.0],[116,123,75,1.0],[116,123,76,1.0],[116,123,77,1.0],[116,123,78,1.0],[116,123,79,1.0],[116,124,64,1.0],[116,124,65,1.0],[116,124,66,1.0],[116,124,67,1.0],[116,124,68,1.0],[116,124,69,1.0],[116,124,70,1.0],[116,124,71,1.0],[116,124,72,1.0],[116,124,73,1.0],[116,124,74,1.0],[116,124,75,1.0],[116,124,76,1.0],[116,124,77,1.0],[116,124,78,1.0],[116,124,79,1.0],[116,125,64,1.0],[116,125,65,1.0],[116,125,66,1.0],[116,125,67,1.0],[116,125,68,1.0],[116,125,69,1.0],[116,125,70,1.0],[116,125,71,1.0],[116,125,72,1.0],[116,125,73,1.0],[116,125,74,1.0],[116,125,75,1.0],[116,125,76,1.0],[116,125,77,1.0],[116,125,78,1.0],[116,125,79,1.0],[116,126,64,1.0],[116,126,65,1.0],[116,126,66,1.0],[116,126,67,1.0],[116,126,68,1.0],[116,126,69,1.0],[116,126,70,1.0],[116,126,71,1.0],[116,126,72,1.0],[116,126,73,1.0],[116,126,74,1.0],[116,126,75,1.0],[116,126,76,1.0],[116,126,77,1.0],[116,126,78,1.0],[116,126,79,1.0],[116,127,64,1.0],[116,127,65,1.0],[116,127,66,1.0],[116,127,67,1.0],[116,127,68,1.0],[116,127,69,1.0],[116,127,70,1.0],[116,127,71,1.0],[116,127,72,1.0],[116,127,73,1.0],[116,127,74,1.0],[116,127,75,1.0],[116,127,76,1.0],[116,127,77,1.0],[116,127,78,1.0],[116,127,79,1.0],[116,128,64,1.0],[116,128,65,1.0],[116,128,66,1.0],[116,128,67,1.0],[116,128,68,1.0],[116,128,69,1.0],[116,128,70,1.0],[116,128,71,1.0],[116,128,72,1.0],[116,128,73,1.0],[116,128,74,1.0],[116,128,75,1.0],[116,128,76,1.0],[116,128,77,1.0],[116,128,78,1.0],[116,128,79,1.0],[116,129,64,1.0],[116,129,65,1.0],[116,129,66,1.0],[116,129,67,1.0],[116,129,68,1.0],[116,129,69,1.0],[116,129,70,1.0],[116,129,71,1.0],[116,129,72,1.0],[116,129,73,1.0],[116,129,74,1.0],[116,129,75,1.0],[116,129,76,1.0],[116,129,77,1.0],[116,129,78,1.0],[116,129,79,1.0],[116,130,64,1.0],[116,130,65,1.0],[116,130,66,1.0],[116,130,67,1.0],[116,130,68,1.0],[116,130,69,1.0],[116,130,70,1.0],[116,130,71,1.0],[116,130,72,1.0],[116,130,73,1.0],[116,130,74,1.0],[116,130,75,1.0],[116,130,76,1.0],[116,130,77,1.0],[116,130,78,1.0],[116,130,79,1.0],[116,131,64,1.0],[116,131,65,1.0],[116,131,66,1.0],[116,131,67,1.0],[116,131,68,1.0],[116,131,69,1.0],[116,131,70,1.0],[116,131,71,1.0],[116,131,72,1.0],[116,131,73,1.0],[116,131,74,1.0],[116,131,75,1.0],[116,131,76,1.0],[116,131,77,1.0],[116,131,78,1.0],[116,131,79,1.0],[116,132,64,1.0],[116,132,65,1.0],[116,132,66,1.0],[116,132,67,1.0],[116,132,68,1.0],[116,132,69,1.0],[116,132,70,1.0],[116,132,71,1.0],[116,132,72,1.0],[116,132,73,1.0],[116,132,74,1.0],[116,132,75,1.0],[116,132,76,1.0],[116,132,77,1.0],[116,132,78,1.0],[116,132,79,1.0],[116,133,64,1.0],[116,133,65,1.0],[116,133,66,1.0],[116,133,67,1.0],[116,133,68,1.0],[116,133,69,1.0],[116,133,70,1.0],[116,133,71,1.0],[116,133,72,1.0],[116,133,73,1.0],[116,133,74,1.0],[116,133,75,1.0],[116,133,76,1.0],[116,133,77,1.0],[116,133,78,1.0],[116,133,79,1.0],[116,134,64,1.0],[116,134,65,1.0],[116,134,66,1.0],[116,134,67,1.0],[116,134,68,1.0],[116,134,69,1.0],[116,134,70,1.0],[116,134,71,1.0],[116,134,72,1.0],[116,134,73,1.0],[116,134,74,1.0],[116,134,75,1.0],[116,134,76,1.0],[116,134,77,1.0],[116,134,78,1.0],[116,134,79,1.0],[116,135,64,1.0],[116,135,65,1.0],[116,135,66,1.0],[116,135,67,1.0],[116,135,68,1.0],[116,135,69,1.0],[116,135,70,1.0],[116,135,71,1.0],[116,135,72,1.0],[116,135,73,1.0],[116,135,74,1.0],[116,135,75,1.0],[116,135,76,1.0],[116,135,77,1.0],[116,135,78,1.0],[116,135,79,1.0],[116,136,64,1.0],[116,136,65,1.0],[116,136,66,1.0],[116,136,67,1.0],[116,136,68,1.0],[116,136,69,1.0],[116,136,70,1.0],[116,136,71,1.0],[116,136,72,1.0],[116,136,73,1.0],[116,136,74,1.0],[116,136,75,1.0],[116,136,76,1.0],[116,136,77,1.0],[116,136,78,1.0],[116,136,79,1.0],[116,137,64,1.0],[116,137,65,1.0],[116,137,66,1.0],[116,137,67,1.0],[116,137,68,1.0],[116,137,69,1.0],[116,137,70,1.0],[116,137,71,1.0],[116,137,72,1.0],[116,137,73,1.0],[116,137,74,1.0],[116,137,75,1.0],[116,137,76,1.0],[116,137,77,1.0],[116,137,78,1.0],[116,137,79,1.0],[116,138,64,1.0],[116,138,65,1.0],[116,138,66,1.0],[116,138,67,1.0],[116,138,68,1.0],[116,138,69,1.0],[116,138,70,1.0],[116,138,71,1.0],[116,138,72,1.0],[116,138,73,1.0],[116,138,74,1.0],[116,138,75,1.0],[116,138,76,1.0],[116,138,77,1.0],[116,138,78,1.0],[116,138,79,1.0],[116,139,64,1.0],[116,139,65,1.0],[116,139,66,1.0],[116,139,67,1.0],[116,139,68,1.0],[116,139,69,1.0],[116,139,70,1.0],[116,139,71,1.0],[116,139,72,1.0],[116,139,73,1.0],[116,139,74,1.0],[116,139,75,1.0],[116,139,76,1.0],[116,139,77,1.0],[116,139,78,1.0],[116,139,79,1.0],[116,140,64,1.0],[116,140,65,1.0],[116,140,66,1.0],[116,140,67,1.0],[116,140,68,1.0],[116,140,69,1.0],[116,140,70,1.0],[116,140,71,1.0],[116,140,72,1.0],[116,140,73,1.0],[116,140,74,1.0],[116,140,75,1.0],[116,140,76,1.0],[116,140,77,1.0],[116,140,78,1.0],[116,140,79,1.0],[116,141,64,1.0],[116,141,65,1.0],[116,141,66,1.0],[116,141,67,1.0],[116,141,68,1.0],[116,141,69,1.0],[116,141,70,1.0],[116,141,71,1.0],[116,141,72,1.0],[116,141,73,1.0],[116,141,74,1.0],[116,141,75,1.0],[116,141,76,1.0],[116,141,77,1.0],[116,141,78,1.0],[116,141,79,1.0],[116,142,64,1.0],[116,142,65,1.0],[116,142,66,1.0],[116,142,67,1.0],[116,142,68,1.0],[116,142,69,1.0],[116,142,70,1.0],[116,142,71,1.0],[116,142,72,1.0],[116,142,73,1.0],[116,142,74,1.0],[116,142,75,1.0],[116,142,76,1.0],[116,142,77,1.0],[116,142,78,1.0],[116,142,79,1.0],[116,143,64,1.0],[116,143,65,1.0],[116,143,66,1.0],[116,143,67,1.0],[116,143,68,1.0],[116,143,69,1.0],[116,143,70,1.0],[116,143,71,1.0],[116,143,72,1.0],[116,143,73,1.0],[116,143,74,1.0],[116,143,75,1.0],[116,143,76,1.0],[116,143,77,1.0],[116,143,78,1.0],[116,143,79,1.0],[116,144,64,1.0],[116,144,65,1.0],[116,144,66,1.0],[116,144,67,1.0],[116,144,68,1.0],[116,144,69,1.0],[116,144,70,1.0],[116,144,71,1.0],[116,144,72,1.0],[116,144,73,1.0],[116,144,74,1.0],[116,144,75,1.0],[116,144,76,1.0],[116,144,77,1.0],[116,144,78,1.0],[116,144,79,1.0],[116,145,64,1.0],[116,145,65,1.0],[116,145,66,1.0],[116,145,67,1.0],[116,145,68,1.0],[116,145,69,1.0],[116,145,70,1.0],[116,145,71,1.0],[116,145,72,1.0],[116,145,73,1.0],[116,145,74,1.0],[116,145,75,1.0],[116,145,76,1.0],[116,145,77,1.0],[116,145,78,1.0],[116,145,79,1.0],[116,146,64,1.0],[116,146,65,1.0],[116,146,66,1.0],[116,146,67,1.0],[116,146,68,1.0],[116,146,69,1.0],[116,146,70,1.0],[116,146,71,1.0],[116,146,72,1.0],[116,146,73,1.0],[116,146,74,1.0],[116,146,75,1.0],[116,146,76,1.0],[116,146,77,1.0],[116,146,78,1.0],[116,146,79,1.0],[116,147,64,1.0],[116,147,65,1.0],[116,147,66,1.0],[116,147,67,1.0],[116,147,68,1.0],[116,147,69,1.0],[116,147,70,1.0],[116,147,71,1.0],[116,147,72,1.0],[116,147,73,1.0],[116,147,74,1.0],[116,147,75,1.0],[116,147,76,1.0],[116,147,77,1.0],[116,147,78,1.0],[116,147,79,1.0],[116,148,64,1.0],[116,148,65,1.0],[116,148,66,1.0],[116,148,67,1.0],[116,148,68,1.0],[116,148,69,1.0],[116,148,70,1.0],[116,148,71,1.0],[116,148,72,1.0],[116,148,73,1.0],[116,148,74,1.0],[116,148,75,1.0],[116,148,76,1.0],[116,148,77,1.0],[116,148,78,1.0],[116,148,79,1.0],[116,149,64,1.0],[116,149,65,1.0],[116,149,66,1.0],[116,149,67,1.0],[116,149,68,1.0],[116,149,69,1.0],[116,149,70,1.0],[116,149,71,1.0],[116,149,72,1.0],[116,149,73,1.0],[116,149,74,1.0],[116,149,75,1.0],[116,149,76,1.0],[116,149,77,1.0],[116,149,78,1.0],[116,149,79,1.0],[116,150,64,1.0],[116,150,65,1.0],[116,150,66,1.0],[116,150,67,1.0],[116,150,68,1.0],[116,150,69,1.0],[116,150,70,1.0],[116,150,71,1.0],[116,150,72,1.0],[116,150,73,1.0],[116,150,74,1.0],[116,150,75,1.0],[116,150,76,1.0],[116,150,77,1.0],[116,150,78,1.0],[116,150,79,1.0],[116,151,64,1.0],[116,151,65,1.0],[116,151,66,1.0],[116,151,67,1.0],[116,151,68,1.0],[116,151,69,1.0],[116,151,70,1.0],[116,151,71,1.0],[116,151,72,1.0],[116,151,73,1.0],[116,151,74,1.0],[116,151,75,1.0],[116,151,76,1.0],[116,151,77,1.0],[116,151,78,1.0],[116,151,79,1.0],[116,152,64,1.0],[116,152,65,1.0],[116,152,66,1.0],[116,152,67,1.0],[116,152,68,1.0],[116,152,69,1.0],[116,152,70,1.0],[116,152,71,1.0],[116,152,72,1.0],[116,152,73,1.0],[116,152,74,1.0],[116,152,75,1.0],[116,152,76,1.0],[116,152,77,1.0],[116,152,78,1.0],[116,152,79,1.0],[116,153,64,1.0],[116,153,65,1.0],[116,153,66,1.0],[116,153,67,1.0],[116,153,68,1.0],[116,153,69,1.0],[116,153,70,1.0],[116,153,71,1.0],[116,153,72,1.0],[116,153,73,1.0],[116,153,74,1.0],[116,153,75,1.0],[116,153,76,1.0],[116,153,77,1.0],[116,153,78,1.0],[116,153,79,1.0],[116,154,64,1.0],[116,154,65,1.0],[116,154,66,1.0],[116,154,67,1.0],[116,154,68,1.0],[116,154,69,1.0],[116,154,70,1.0],[116,154,71,1.0],[116,154,72,1.0],[116,154,73,1.0],[116,154,74,1.0],[116,154,75,1.0],[116,154,76,1.0],[116,154,77,1.0],[116,154,78,1.0],[116,154,79,1.0],[116,155,64,1.0],[116,155,65,1.0],[116,155,66,1.0],[116,155,67,1.0],[116,155,68,1.0],[116,155,69,1.0],[116,155,70,1.0],[116,155,71,1.0],[116,155,72,1.0],[116,155,73,1.0],[116,155,74,1.0],[116,155,75,1.0],[116,155,76,1.0],[116,155,77,1.0],[116,155,78,1.0],[116,155,79,1.0],[116,156,64,1.0],[116,156,65,1.0],[116,156,66,1.0],[116,156,67,1.0],[116,156,68,1.0],[116,156,69,1.0],[116,156,70,1.0],[116,156,71,1.0],[116,156,72,1.0],[116,156,73,1.0],[116,156,74,1.0],[116,156,75,1.0],[116,156,76,1.0],[116,156,77,1.0],[116,156,78,1.0],[116,156,79,1.0],[116,157,64,1.0],[116,157,65,1.0],[116,157,66,1.0],[116,157,67,1.0],[116,157,68,1.0],[116,157,69,1.0],[116,157,70,1.0],[116,157,71,1.0],[116,157,72,1.0],[116,157,73,1.0],[116,157,74,1.0],[116,157,75,1.0],[116,157,76,1.0],[116,157,77,1.0],[116,157,78,1.0],[116,157,79,1.0],[116,158,64,1.0],[116,158,65,1.0],[116,158,66,1.0],[116,158,67,1.0],[116,158,68,1.0],[116,158,69,1.0],[116,158,70,1.0],[116,158,71,1.0],[116,158,72,1.0],[116,158,73,1.0],[116,158,74,1.0],[116,158,75,1.0],[116,158,76,1.0],[116,158,77,1.0],[116,158,78,1.0],[116,158,79,1.0],[116,159,64,1.0],[116,159,65,1.0],[116,159,66,1.0],[116,159,67,1.0],[116,159,68,1.0],[116,159,69,1.0],[116,159,70,1.0],[116,159,71,1.0],[116,159,72,1.0],[116,159,73,1.0],[116,159,74,1.0],[116,159,75,1.0],[116,159,76,1.0],[116,159,77,1.0],[116,159,78,1.0],[116,159,79,1.0],[116,160,64,1.0],[116,160,65,1.0],[116,160,66,1.0],[116,160,67,1.0],[116,160,68,1.0],[116,160,69,1.0],[116,160,70,1.0],[116,160,71,1.0],[116,160,72,1.0],[116,160,73,1.0],[116,160,74,1.0],[116,160,75,1.0],[116,160,76,1.0],[116,160,77,1.0],[116,160,78,1.0],[116,160,79,1.0],[116,161,64,1.0],[116,161,65,1.0],[116,161,66,1.0],[116,161,67,1.0],[116,161,68,1.0],[116,161,69,1.0],[116,161,70,1.0],[116,161,71,1.0],[116,161,72,1.0],[116,161,73,1.0],[116,161,74,1.0],[116,161,75,1.0],[116,161,76,1.0],[116,161,77,1.0],[116,161,78,1.0],[116,161,79,1.0],[116,162,64,1.0],[116,162,65,1.0],[116,162,66,1.0],[116,162,67,1.0],[116,162,68,1.0],[116,162,69,1.0],[116,162,70,1.0],[116,162,71,1.0],[116,162,72,1.0],[116,162,73,1.0],[116,162,74,1.0],[116,162,75,1.0],[116,162,76,1.0],[116,162,77,1.0],[116,162,78,1.0],[116,162,79,1.0],[116,163,64,1.0],[116,163,65,1.0],[116,163,66,1.0],[116,163,67,1.0],[116,163,68,1.0],[116,163,69,1.0],[116,163,70,1.0],[116,163,71,1.0],[116,163,72,1.0],[116,163,73,1.0],[116,163,74,1.0],[116,163,75,1.0],[116,163,76,1.0],[116,163,77,1.0],[116,163,78,1.0],[116,163,79,1.0],[116,164,64,1.0],[116,164,65,1.0],[116,164,66,1.0],[116,164,67,1.0],[116,164,68,1.0],[116,164,69,1.0],[116,164,70,1.0],[116,164,71,1.0],[116,164,72,1.0],[116,164,73,1.0],[116,164,74,1.0],[116,164,75,1.0],[116,164,76,1.0],[116,164,77,1.0],[116,164,78,1.0],[116,164,79,1.0],[116,165,64,1.0],[116,165,65,1.0],[116,165,66,1.0],[116,165,67,1.0],[116,165,68,1.0],[116,165,69,1.0],[116,165,70,1.0],[116,165,71,1.0],[116,165,72,1.0],[116,165,73,1.0],[116,165,74,1.0],[116,165,75,1.0],[116,165,76,1.0],[116,165,77,1.0],[116,165,78,1.0],[116,165,79,1.0],[116,166,64,1.0],[116,166,65,1.0],[116,166,66,1.0],[116,166,67,1.0],[116,166,68,1.0],[116,166,69,1.0],[116,166,70,1.0],[116,166,71,1.0],[116,166,72,1.0],[116,166,73,1.0],[116,166,74,1.0],[116,166,75,1.0],[116,166,76,1.0],[116,166,77,1.0],[116,166,78,1.0],[116,166,79,1.0],[116,167,64,1.0],[116,167,65,1.0],[116,167,66,1.0],[116,167,67,1.0],[116,167,68,1.0],[116,167,69,1.0],[116,167,70,1.0],[116,167,71,1.0],[116,167,72,1.0],[116,167,73,1.0],[116,167,74,1.0],[116,167,75,1.0],[116,167,76,1.0],[116,167,77,1.0],[116,167,78,1.0],[116,167,79,1.0],[116,168,64,1.0],[116,168,65,1.0],[116,168,66,1.0],[116,168,67,1.0],[116,168,68,1.0],[116,168,69,1.0],[116,168,70,1.0],[116,168,71,1.0],[116,168,72,1.0],[116,168,73,1.0],[116,168,74,1.0],[116,168,75,1.0],[116,168,76,1.0],[116,168,77,1.0],[116,168,78,1.0],[116,168,79,1.0],[116,169,64,1.0],[116,169,65,1.0],[116,169,66,1.0],[116,169,67,1.0],[116,169,68,1.0],[116,169,69,1.0],[116,169,70,1.0],[116,169,71,1.0],[116,169,72,1.0],[116,169,73,1.0],[116,169,74,1.0],[116,169,75,1.0],[116,169,76,1.0],[116,169,77,1.0],[116,169,78,1.0],[116,169,79,1.0],[116,170,64,1.0],[116,170,65,1.0],[116,170,66,1.0],[116,170,67,1.0],[116,170,68,1.0],[116,170,69,1.0],[116,170,70,1.0],[116,170,71,1.0],[116,170,72,1.0],[116,170,73,1.0],[116,170,74,1.0],[116,170,75,1.0],[116,170,76,1.0],[116,170,77,1.0],[116,170,78,1.0],[116,170,79,1.0],[116,171,64,1.0],[116,171,65,1.0],[116,171,66,1.0],[116,171,67,1.0],[116,171,68,1.0],[116,171,69,1.0],[116,171,70,1.0],[116,171,71,1.0],[116,171,72,1.0],[116,171,73,1.0],[116,171,74,1.0],[116,171,75,1.0],[116,171,76,1.0],[116,171,77,1.0],[116,171,78,1.0],[116,171,79,1.0],[116,172,64,1.0],[116,172,65,1.0],[116,172,66,1.0],[116,172,67,1.0],[116,172,68,1.0],[116,172,69,1.0],[116,172,70,1.0],[116,172,71,1.0],[116,172,72,1.0],[116,172,73,1.0],[116,172,74,1.0],[116,172,75,1.0],[116,172,76,1.0],[116,172,77,1.0],[116,172,78,1.0],[116,172,79,1.0],[116,173,64,1.0],[116,173,65,1.0],[116,173,66,1.0],[116,173,67,1.0],[116,173,68,1.0],[116,173,69,1.0],[116,173,70,1.0],[116,173,71,1.0],[116,173,72,1.0],[116,173,73,1.0],[116,173,74,1.0],[116,173,75,1.0],[116,173,76,1.0],[116,173,77,1.0],[116,173,78,1.0],[116,173,79,1.0],[116,174,64,1.0],[116,174,65,1.0],[116,174,66,1.0],[116,174,67,1.0],[116,174,68,1.0],[116,174,69,1.0],[116,174,70,1.0],[116,174,71,1.0],[116,174,72,1.0],[116,174,73,1.0],[116,174,74,1.0],[116,174,75,1.0],[116,174,76,1.0],[116,174,77,1.0],[116,174,78,1.0],[116,174,79,1.0],[116,175,64,1.0],[116,175,65,1.0],[116,175,66,1.0],[116,175,67,1.0],[116,175,68,1.0],[116,175,69,1.0],[116,175,70,1.0],[116,175,71,1.0],[116,175,72,1.0],[116,175,73,1.0],[116,175,74,1.0],[116,175,75,1.0],[116,175,76,1.0],[116,175,77,1.0],[116,175,78,1.0],[116,175,79,1.0],[116,176,64,1.0],[116,176,65,1.0],[116,176,66,1.0],[116,176,67,1.0],[116,176,68,1.0],[116,176,69,1.0],[116,176,70,1.0],[116,176,71,1.0],[116,176,72,1.0],[116,176,73,1.0],[116,176,74,1.0],[116,176,75,1.0],[116,176,76,1.0],[116,176,77,1.0],[116,176,78,1.0],[116,176,79,1.0],[116,177,64,1.0],[116,177,65,1.0],[116,177,66,1.0],[116,177,67,1.0],[116,177,68,1.0],[116,177,69,1.0],[116,177,70,1.0],[116,177,71,1.0],[116,177,72,1.0],[116,177,73,1.0],[116,177,74,1.0],[116,177,75,1.0],[116,177,76,1.0],[116,177,77,1.0],[116,177,78,1.0],[116,177,79,1.0],[116,178,64,1.0],[116,178,65,1.0],[116,178,66,1.0],[116,178,67,1.0],[116,178,68,1.0],[116,178,69,1.0],[116,178,70,1.0],[116,178,71,1.0],[116,178,72,1.0],[116,178,73,1.0],[116,178,74,1.0],[116,178,75,1.0],[116,178,76,1.0],[116,178,77,1.0],[116,178,78,1.0],[116,178,79,1.0],[116,179,64,1.0],[116,179,65,1.0],[116,179,66,1.0],[116,179,67,1.0],[116,179,68,1.0],[116,179,69,1.0],[116,179,70,1.0],[116,179,71,1.0],[116,179,72,1.0],[116,179,73,1.0],[116,179,74,1.0],[116,179,75,1.0],[116,179,76,1.0],[116,179,77,1.0],[116,179,78,1.0],[116,179,79,1.0],[116,180,64,1.0],[116,180,65,1.0],[116,180,66,1.0],[116,180,67,1.0],[116,180,68,1.0],[116,180,69,1.0],[116,180,70,1.0],[116,180,71,1.0],[116,180,72,1.0],[116,180,73,1.0],[116,180,74,1.0],[116,180,75,1.0],[116,180,76,1.0],[116,180,77,1.0],[116,180,78,1.0],[116,180,79,1.0],[116,181,64,1.0],[116,181,65,1.0],[116,181,66,1.0],[116,181,67,1.0],[116,181,68,1.0],[116,181,69,1.0],[116,181,70,1.0],[116,181,71,1.0],[116,181,72,1.0],[116,181,73,1.0],[116,181,74,1.0],[116,181,75,1.0],[116,181,76,1.0],[116,181,77,1.0],[116,181,78,1.0],[116,181,79,1.0],[116,182,64,1.0],[116,182,65,1.0],[116,182,66,1.0],[116,182,67,1.0],[116,182,68,1.0],[116,182,69,1.0],[116,182,70,1.0],[116,182,71,1.0],[116,182,72,1.0],[116,182,73,1.0],[116,182,74,1.0],[116,182,75,1.0],[116,182,76,1.0],[116,182,77,1.0],[116,182,78,1.0],[116,182,79,1.0],[116,183,64,1.0],[116,183,65,1.0],[116,183,66,1.0],[116,183,67,1.0],[116,183,68,1.0],[116,183,69,1.0],[116,183,70,1.0],[116,183,71,1.0],[116,183,72,1.0],[116,183,73,1.0],[116,183,74,1.0],[116,183,75,1.0],[116,183,76,1.0],[116,183,77,1.0],[116,183,78,1.0],[116,183,79,1.0],[116,184,64,1.0],[116,184,65,1.0],[116,184,66,1.0],[116,184,67,1.0],[116,184,68,1.0],[116,184,69,1.0],[116,184,70,1.0],[116,184,71,1.0],[116,184,72,1.0],[116,184,73,1.0],[116,184,74,1.0],[116,184,75,1.0],[116,184,76,1.0],[116,184,77,1.0],[116,184,78,1.0],[116,184,79,1.0],[116,185,64,1.0],[116,185,65,1.0],[116,185,66,1.0],[116,185,67,1.0],[116,185,68,1.0],[116,185,69,1.0],[116,185,70,1.0],[116,185,71,1.0],[116,185,72,1.0],[116,185,73,1.0],[116,185,74,1.0],[116,185,75,1.0],[116,185,76,1.0],[116,185,77,1.0],[116,185,78,1.0],[116,185,79,1.0],[116,186,64,1.0],[116,186,65,1.0],[116,186,66,1.0],[116,186,67,1.0],[116,186,68,1.0],[116,186,69,1.0],[116,186,70,1.0],[116,186,71,1.0],[116,186,72,1.0],[116,186,73,1.0],[116,186,74,1.0],[116,186,75,1.0],[116,186,76,1.0],[116,186,77,1.0],[116,186,78,1.0],[116,186,79,1.0],[116,187,64,1.0],[116,187,65,1.0],[116,187,66,1.0],[116,187,67,1.0],[116,187,68,1.0],[116,187,69,1.0],[116,187,70,1.0],[116,187,71,1.0],[116,187,72,1.0],[116,187,73,1.0],[116,187,74,1.0],[116,187,75,1.0],[116,187,76,1.0],[116,187,77,1.0],[116,187,78,1.0],[116,187,79,1.0],[116,188,64,1.0],[116,188,65,1.0],[116,188,66,1.0],[116,188,67,1.0],[116,188,68,1.0],[116,188,69,1.0],[116,188,70,1.0],[116,188,71,1.0],[116,188,72,1.0],[116,188,73,1.0],[116,188,74,1.0],[116,188,75,1.0],[116,188,76,1.0],[116,188,77,1.0],[116,188,78,1.0],[116,188,79,1.0],[116,189,64,1.0],[116,189,65,1.0],[116,189,66,1.0],[116,189,67,1.0],[116,189,68,1.0],[116,189,69,1.0],[116,189,70,1.0],[116,189,71,1.0],[116,189,72,1.0],[116,189,73,1.0],[116,189,74,1.0],[116,189,75,1.0],[116,189,76,1.0],[116,189,77,1.0],[116,189,78,1.0],[116,189,79,1.0],[116,190,64,1.0],[116,190,65,1.0],[116,190,66,1.0],[116,190,67,1.0],[116,190,68,1.0],[116,190,69,1.0],[116,190,70,1.0],[116,190,71,1.0],[116,190,72,1.0],[116,190,73,1.0],[116,190,74,1.0],[116,190,75,1.0],[116,190,76,1.0],[116,190,77,1.0],[116,190,78,1.0],[116,190,79,1.0],[116,191,64,1.0],[116,191,65,1.0],[116,191,66,1.0],[116,191,67,1.0],[116,191,68,1.0],[116,191,69,1.0],[116,191,70,1.0],[116,191,71,1.0],[116,191,72,1.0],[116,191,73,1.0],[116,191,74,1.0],[116,191,75,1.0],[116,191,76,1.0],[116,191,77,1.0],[116,191,78,1.0],[116,191,79,1.0],[116,192,64,1.0],[116,192,65,1.0],[116,192,66,1.0],[116,192,67,1.0],[116,192,68,1.0],[116,192,69,1.0],[116,192,70,1.0],[116,192,71,1.0],[116,192,72,1.0],[116,192,73,1.0],[116,192,74,1.0],[116,192,75,1.0],[116,192,76,1.0],[116,192,77,1.0],[116,192,78,1.0],[116,192,79,1.0],[116,193,64,1.0],[116,193,65,1.0],[116,193,66,1.0],[116,193,67,1.0],[116,193,68,1.0],[116,193,69,1.0],[116,193,70,1.0],[116,193,71,1.0],[116,193,72,1.0],[116,193,73,1.0],[116,193,74,1.0],[116,193,75,1.0],[116,193,76,1.0],[116,193,77,1.0],[116,193,78,1.0],[116,193,79,1.0],[116,194,64,1.0],[116,194,65,1.0],[116,194,66,1.0],[116,194,67,1.0],[116,194,68,1.0],[116,194,69,1.0],[116,194,70,1.0],[116,194,71,1.0],[116,194,72,1.0],[116,194,73,1.0],[116,194,74,1.0],[116,194,75,1.0],[116,194,76,1.0],[116,194,77,1.0],[116,194,78,1.0],[116,194,79,1.0],[116,195,64,1.0],[116,195,65,1.0],[116,195,66,1.0],[116,195,67,1.0],[116,195,68,1.0],[116,195,69,1.0],[116,195,70,1.0],[116,195,71,1.0],[116,195,72,1.0],[116,195,73,1.0],[116,195,74,1.0],[116,195,75,1.0],[116,195,76,1.0],[116,195,77,1.0],[116,195,78,1.0],[116,195,79,1.0],[116,196,64,1.0],[116,196,65,1.0],[116,196,66,1.0],[116,196,67,1.0],[116,196,68,1.0],[116,196,69,1.0],[116,196,70,1.0],[116,196,71,1.0],[116,196,72,1.0],[116,196,73,1.0],[116,196,74,1.0],[116,196,75,1.0],[116,196,76,1.0],[116,196,77,1.0],[116,196,78,1.0],[116,196,79,1.0],[116,197,64,1.0],[116,197,65,1.0],[116,197,66,1.0],[116,197,67,1.0],[116,197,68,1.0],[116,197,69,1.0],[116,197,70,1.0],[116,197,71,1.0],[116,197,72,1.0],[116,197,73,1.0],[116,197,74,1.0],[116,197,75,1.0],[116,197,76,1.0],[116,197,77,1.0],[116,197,78,1.0],[116,197,79,1.0],[116,198,64,1.0],[116,198,65,1.0],[116,198,66,1.0],[116,198,67,1.0],[116,198,68,1.0],[116,198,69,1.0],[116,198,70,1.0],[116,198,71,1.0],[116,198,72,1.0],[116,198,73,1.0],[116,198,74,1.0],[116,198,75,1.0],[116,198,76,1.0],[116,198,77,1.0],[116,198,78,1.0],[116,198,79,1.0],[116,199,64,1.0],[116,199,65,1.0],[116,199,66,1.0],[116,199,67,1.0],[116,199,68,1.0],[116,199,69,1.0],[116,199,70,1.0],[116,199,71,1.0],[116,199,72,1.0],[116,199,73,1.0],[116,199,74,1.0],[116,199,75,1.0],[116,199,76,1.0],[116,199,77,1.0],[116,199,78,1.0],[116,199,79,1.0],[116,200,64,1.0],[116,200,65,1.0],[116,200,66,1.0],[116,200,67,1.0],[116,200,68,1.0],[116,200,69,1.0],[116,200,70,1.0],[116,200,71,1.0],[116,200,72,1.0],[116,200,73,1.0],[116,200,74,1.0],[116,200,75,1.0],[116,200,76,1.0],[116,200,77,1.0],[116,200,78,1.0],[116,200,79,1.0],[116,201,64,1.0],[116,201,65,1.0],[116,201,66,1.0],[116,201,67,1.0],[116,201,68,1.0],[116,201,69,1.0],[116,201,70,1.0],[116,201,71,1.0],[116,201,72,1.0],[116,201,73,1.0],[116,201,74,1.0],[116,201,75,1.0],[116,201,76,1.0],[116,201,77,1.0],[116,201,78,1.0],[116,201,79,1.0],[116,202,64,1.0],[116,202,65,1.0],[116,202,66,1.0],[116,202,67,1.0],[116,202,68,1.0],[116,202,69,1.0],[116,202,70,1.0],[116,202,71,1.0],[116,202,72,1.0],[116,202,73,1.0],[116,202,74,1.0],[116,202,75,1.0],[116,202,76,1.0],[116,202,77,1.0],[116,202,78,1.0],[116,202,79,1.0],[116,203,64,1.0],[116,203,65,1.0],[116,203,66,1.0],[116,203,67,1.0],[116,203,68,1.0],[116,203,69,1.0],[116,203,70,1.0],[116,203,71,1.0],[116,203,72,1.0],[116,203,73,1.0],[116,203,74,1.0],[116,203,75,1.0],[116,203,76,1.0],[116,203,77,1.0],[116,203,78,1.0],[116,203,79,1.0],[116,204,64,1.0],[116,204,65,1.0],[116,204,66,1.0],[116,204,67,1.0],[116,204,68,1.0],[116,204,69,1.0],[116,204,70,1.0],[116,204,71,1.0],[116,204,72,1.0],[116,204,73,1.0],[116,204,74,1.0],[116,204,75,1.0],[116,204,76,1.0],[116,204,77,1.0],[116,204,78,1.0],[116,204,79,1.0],[116,205,64,1.0],[116,205,65,1.0],[116,205,66,1.0],[116,205,67,1.0],[116,205,68,1.0],[116,205,69,1.0],[116,205,70,1.0],[116,205,71,1.0],[116,205,72,1.0],[116,205,73,1.0],[116,205,74,1.0],[116,205,75,1.0],[116,205,76,1.0],[116,205,77,1.0],[116,205,78,1.0],[116,205,79,1.0],[116,206,64,1.0],[116,206,65,1.0],[116,206,66,1.0],[116,206,67,1.0],[116,206,68,1.0],[116,206,69,1.0],[116,206,70,1.0],[116,206,71,1.0],[116,206,72,1.0],[116,206,73,1.0],[116,206,74,1.0],[116,206,75,1.0],[116,206,76,1.0],[116,206,77,1.0],[116,206,78,1.0],[116,206,79,1.0],[116,207,64,1.0],[116,207,65,1.0],[116,207,66,1.0],[116,207,67,1.0],[116,207,68,1.0],[116,207,69,1.0],[116,207,70,1.0],[116,207,71,1.0],[116,207,72,1.0],[116,207,73,1.0],[116,207,74,1.0],[116,207,75,1.0],[116,207,76,1.0],[116,207,77,1.0],[116,207,78,1.0],[116,207,79,1.0],[116,208,64,1.0],[116,208,65,1.0],[116,208,66,1.0],[116,208,67,1.0],[116,208,68,1.0],[116,208,69,1.0],[116,208,70,1.0],[116,208,71,1.0],[116,208,72,1.0],[116,208,73,1.0],[116,208,74,1.0],[116,208,75,1.0],[116,208,76,1.0],[116,208,77,1.0],[116,208,78,1.0],[116,208,79,1.0],[116,209,64,1.0],[116,209,65,1.0],[116,209,66,1.0],[116,209,67,1.0],[116,209,68,1.0],[116,209,69,1.0],[116,209,70,1.0],[116,209,71,1.0],[116,209,72,1.0],[116,209,73,1.0],[116,209,74,1.0],[116,209,75,1.0],[116,209,76,1.0],[116,209,77,1.0],[116,209,78,1.0],[116,209,79,1.0],[116,210,64,1.0],[116,210,65,1.0],[116,210,66,1.0],[116,210,67,1.0],[116,210,68,1.0],[116,210,69,1.0],[116,210,70,1.0],[116,210,71,1.0],[116,210,72,1.0],[116,210,73,1.0],[116,210,74,1.0],[116,210,75,1.0],[116,210,76,1.0],[116,210,77,1.0],[116,210,78,1.0],[116,210,79,1.0],[116,211,64,1.0],[116,211,65,1.0],[116,211,66,1.0],[116,211,67,1.0],[116,211,68,1.0],[116,211,69,1.0],[116,211,70,1.0],[116,211,71,1.0],[116,211,72,1.0],[116,211,73,1.0],[116,211,74,1.0],[116,211,75,1.0],[116,211,76,1.0],[116,211,77,1.0],[116,211,78,1.0],[116,211,79,1.0],[116,212,64,1.0],[116,212,65,1.0],[116,212,66,1.0],[116,212,67,1.0],[116,212,68,1.0],[116,212,69,1.0],[116,212,70,1.0],[116,212,71,1.0],[116,212,72,1.0],[116,212,73,1.0],[116,212,74,1.0],[116,212,75,1.0],[116,212,76,1.0],[116,212,77,1.0],[116,212,78,1.0],[116,212,79,1.0],[116,213,64,1.0],[116,213,65,1.0],[116,213,66,1.0],[116,213,67,1.0],[116,213,68,1.0],[116,213,69,1.0],[116,213,70,1.0],[116,213,71,1.0],[116,213,72,1.0],[116,213,73,1.0],[116,213,74,1.0],[116,213,75,1.0],[116,213,76,1.0],[116,213,77,1.0],[116,213,78,1.0],[116,213,79,1.0],[116,214,64,1.0],[116,214,65,1.0],[116,214,66,1.0],[116,214,67,1.0],[116,214,68,1.0],[116,214,69,1.0],[116,214,70,1.0],[116,214,71,1.0],[116,214,72,1.0],[116,214,73,1.0],[116,214,74,1.0],[116,214,75,1.0],[116,214,76,1.0],[116,214,77,1.0],[116,214,78,1.0],[116,214,79,1.0],[116,215,64,1.0],[116,215,65,1.0],[116,215,66,1.0],[116,215,67,1.0],[116,215,68,1.0],[116,215,69,1.0],[116,215,70,1.0],[116,215,71,1.0],[116,215,72,1.0],[116,215,73,1.0],[116,215,74,1.0],[116,215,75,1.0],[116,215,76,1.0],[116,215,77,1.0],[116,215,78,1.0],[116,215,79,1.0],[116,216,64,1.0],[116,216,65,1.0],[116,216,66,1.0],[116,216,67,1.0],[116,216,68,1.0],[116,216,69,1.0],[116,216,70,1.0],[116,216,71,1.0],[116,216,72,1.0],[116,216,73,1.0],[116,216,74,1.0],[116,216,75,1.0],[116,216,76,1.0],[116,216,77,1.0],[116,216,78,1.0],[116,216,79,1.0],[116,217,64,1.0],[116,217,65,1.0],[116,217,66,1.0],[116,217,67,1.0],[116,217,68,1.0],[116,217,69,1.0],[116,217,70,1.0],[116,217,71,1.0],[116,217,72,1.0],[116,217,73,1.0],[116,217,74,1.0],[116,217,75,1.0],[116,217,76,1.0],[116,217,77,1.0],[116,217,78,1.0],[116,217,79,1.0],[116,218,64,1.0],[116,218,65,1.0],[116,218,66,1.0],[116,218,67,1.0],[116,218,68,1.0],[116,218,69,1.0],[116,218,70,1.0],[116,218,71,1.0],[116,218,72,1.0],[116,218,73,1.0],[116,218,74,1.0],[116,218,75,1.0],[116,218,76,1.0],[116,218,77,1.0],[116,218,78,1.0],[116,218,79,1.0],[116,219,64,1.0],[116,219,65,1.0],[116,219,66,1.0],[116,219,67,1.0],[116,219,68,1.0],[116,219,69,1.0],[116,219,70,1.0],[116,219,71,1.0],[116,219,72,1.0],[116,219,73,1.0],[116,219,74,1.0],[116,219,75,1.0],[116,219,76,1.0],[116,219,77,1.0],[116,219,78,1.0],[116,219,79,1.0],[116,220,64,1.0],[116,220,65,1.0],[116,220,66,1.0],[116,220,67,1.0],[116,220,68,1.0],[116,220,69,1.0],[116,220,70,1.0],[116,220,71,1.0],[116,220,72,1.0],[116,220,73,1.0],[116,220,74,1.0],[116,220,75,1.0],[116,220,76,1.0],[116,220,77,1.0],[116,220,78,1.0],[116,220,79,1.0],[116,221,64,1.0],[116,221,65,1.0],[116,221,66,1.0],[116,221,67,1.0],[116,221,68,1.0],[116,221,69,1.0],[116,221,70,1.0],[116,221,71,1.0],[116,221,72,1.0],[116,221,73,1.0],[116,221,74,1.0],[116,221,75,1.0],[116,221,76,1.0],[116,221,77,1.0],[116,221,78,1.0],[116,221,79,1.0],[116,222,64,1.0],[116,222,65,1.0],[116,222,66,1.0],[116,222,67,1.0],[116,222,68,1.0],[116,222,69,1.0],[116,222,70,1.0],[116,222,71,1.0],[116,222,72,1.0],[116,222,73,1.0],[116,222,74,1.0],[116,222,75,1.0],[116,222,76,1.0],[116,222,77,1.0],[116,222,78,1.0],[116,222,79,1.0],[116,223,64,1.0],[116,223,65,1.0],[116,223,66,1.0],[116,223,67,1.0],[116,223,68,1.0],[116,223,69,1.0],[116,223,70,1.0],[116,223,71,1.0],[116,223,72,1.0],[116,223,73,1.0],[116,223,74,1.0],[116,223,75,1.0],[116,223,76,1.0],[116,223,77,1.0],[116,223,78,1.0],[116,223,79,1.0],[116,224,64,1.0],[116,224,65,1.0],[116,224,66,1.0],[116,224,67,1.0],[116,224,68,1.0],[116,224,69,1.0],[116,224,70,1.0],[116,224,71,1.0],[116,224,72,1.0],[116,224,73,1.0],[116,224,74,1.0],[116,224,75,1.0],[116,224,76,1.0],[116,224,77,1.0],[116,224,78,1.0],[116,224,79,1.0],[116,225,64,1.0],[116,225,65,1.0],[116,225,66,1.0],[116,225,67,1.0],[116,225,68,1.0],[116,225,69,1.0],[116,225,70,1.0],[116,225,71,1.0],[116,225,72,1.0],[116,225,73,1.0],[116,225,74,1.0],[116,225,75,1.0],[116,225,76,1.0],[116,225,77,1.0],[116,225,78,1.0],[116,225,79,1.0],[116,226,64,1.0],[116,226,65,1.0],[116,226,66,1.0],[116,226,67,1.0],[116,226,68,1.0],[116,226,69,1.0],[116,226,70,1.0],[116,226,71,1.0],[116,226,72,1.0],[116,226,73,1.0],[116,226,74,1.0],[116,226,75,1.0],[116,226,76,1.0],[116,226,77,1.0],[116,226,78,1.0],[116,226,79,1.0],[116,227,64,1.0],[116,227,65,1.0],[116,227,66,1.0],[116,227,67,1.0],[116,227,68,1.0],[116,227,69,1.0],[116,227,70,1.0],[116,227,71,1.0],[116,227,72,1.0],[116,227,73,1.0],[116,227,74,1.0],[116,227,75,1.0],[116,227,76,1.0],[116,227,77,1.0],[116,227,78,1.0],[116,227,79,1.0],[116,228,64,1.0],[116,228,65,1.0],[116,228,66,1.0],[116,228,67,1.0],[116,228,68,1.0],[116,228,69,1.0],[116,228,70,1.0],[116,228,71,1.0],[116,228,72,1.0],[116,228,73,1.0],[116,228,74,1.0],[116,228,75,1.0],[116,228,76,1.0],[116,228,77,1.0],[116,228,78,1.0],[116,228,79,1.0],[116,229,64,1.0],[116,229,65,1.0],[116,229,66,1.0],[116,229,67,1.0],[116,229,68,1.0],[116,229,69,1.0],[116,229,70,1.0],[116,229,71,1.0],[116,229,72,1.0],[116,229,73,1.0],[116,229,74,1.0],[116,229,75,1.0],[116,229,76,1.0],[116,229,77,1.0],[116,229,78,1.0],[116,229,79,1.0],[116,230,64,1.0],[116,230,65,1.0],[116,230,66,1.0],[116,230,67,1.0],[116,230,68,1.0],[116,230,69,1.0],[116,230,70,1.0],[116,230,71,1.0],[116,230,72,1.0],[116,230,73,1.0],[116,230,74,1.0],[116,230,75,1.0],[116,230,76,1.0],[116,230,77,1.0],[116,230,78,1.0],[116,230,79,1.0],[116,231,64,1.0],[116,231,65,1.0],[116,231,66,1.0],[116,231,67,1.0],[116,231,68,1.0],[116,231,69,1.0],[116,231,70,1.0],[116,231,71,1.0],[116,231,72,1.0],[116,231,73,1.0],[116,231,74,1.0],[116,231,75,1.0],[116,231,76,1.0],[116,231,77,1.0],[116,231,78,1.0],[116,231,79,1.0],[116,232,64,1.0],[116,232,65,1.0],[116,232,66,1.0],[116,232,67,1.0],[116,232,68,1.0],[116,232,69,1.0],[116,232,70,1.0],[116,232,71,1.0],[116,232,72,1.0],[116,232,73,1.0],[116,232,74,1.0],[116,232,75,1.0],[116,232,76,1.0],[116,232,77,1.0],[116,232,78,1.0],[116,232,79,1.0],[116,233,64,1.0],[116,233,65,1.0],[116,233,66,1.0],[116,233,67,1.0],[116,233,68,1.0],[116,233,69,1.0],[116,233,70,1.0],[116,233,71,1.0],[116,233,72,1.0],[116,233,73,1.0],[116,233,74,1.0],[116,233,75,1.0],[116,233,76,1.0],[116,233,77,1.0],[116,233,78,1.0],[116,233,79,1.0],[116,234,64,1.0],[116,234,65,1.0],[116,234,66,1.0],[116,234,67,1.0],[116,234,68,1.0],[116,234,69,1.0],[116,234,70,1.0],[116,234,71,1.0],[116,234,72,1.0],[116,234,73,1.0],[116,234,74,1.0],[116,234,75,1.0],[116,234,76,1.0],[116,234,77,1.0],[116,234,78,1.0],[116,234,79,1.0],[116,235,64,1.0],[116,235,65,1.0],[116,235,66,1.0],[116,235,67,1.0],[116,235,68,1.0],[116,235,69,1.0],[116,235,70,1.0],[116,235,71,1.0],[116,235,72,1.0],[116,235,73,1.0],[116,235,74,1.0],[116,235,75,1.0],[116,235,76,1.0],[116,235,77,1.0],[116,235,78,1.0],[116,235,79,1.0],[116,236,64,1.0],[116,236,65,1.0],[116,236,66,1.0],[116,236,67,1.0],[116,236,68,1.0],[116,236,69,1.0],[116,236,70,1.0],[116,236,71,1.0],[116,236,72,1.0],[116,236,73,1.0],[116,236,74,1.0],[116,236,75,1.0],[116,236,76,1.0],[116,236,77,1.0],[116,236,78,1.0],[116,236,79,1.0],[116,237,64,1.0],[116,237,65,1.0],[116,237,66,1.0],[116,237,67,1.0],[116,237,68,1.0],[116,237,69,1.0],[116,237,70,1.0],[116,237,71,1.0],[116,237,72,1.0],[116,237,73,1.0],[116,237,74,1.0],[116,237,75,1.0],[116,237,76,1.0],[116,237,77,1.0],[116,237,78,1.0],[116,237,79,1.0],[116,238,64,1.0],[116,238,65,1.0],[116,238,66,1.0],[116,238,67,1.0],[116,238,68,1.0],[116,238,69,1.0],[116,238,70,1.0],[116,238,71,1.0],[116,238,72,1.0],[116,238,73,1.0],[116,238,74,1.0],[116,238,75,1.0],[116,238,76,1.0],[116,238,77,1.0],[116,238,78,1.0],[116,238,79,1.0],[116,239,64,1.0],[116,239,65,1.0],[116,239,66,1.0],[116,239,67,1.0],[116,239,68,1.0],[116,239,69,1.0],[116,239,70,1.0],[116,239,71,1.0],[116,239,72,1.0],[116,239,73,1.0],[116,239,74,1.0],[116,239,75,1.0],[116,239,76,1.0],[116,239,77,1.0],[116,239,78,1.0],[116,239,79,1.0],[116,240,64,1.0],[116,240,65,1.0],[116,240,66,1.0],[116,240,67,1.0],[116,240,68,1.0],[116,240,69,1.0],[116,240,70,1.0],[116,240,71,1.0],[116,240,72,1.0],[116,240,73,1.0],[116,240,74,1.0],[116,240,75,1.0],[116,240,76,1.0],[116,240,77,1.0],[116,240,78,1.0],[116,240,79,1.0],[116,241,64,1.0],[116,241,65,1.0],[116,241,66,1.0],[116,241,67,1.0],[116,241,68,1.0],[116,241,69,1.0],[116,241,70,1.0],[116,241,71,1.0],[116,241,72,1.0],[116,241,73,1.0],[116,241,74,1.0],[116,241,75,1.0],[116,241,76,1.0],[116,241,77,1.0],[116,241,78,1.0],[116,241,79,1.0],[116,242,64,1.0],[116,242,65,1.0],[116,242,66,1.0],[116,242,67,1.0],[116,242,68,1.0],[116,242,69,1.0],[116,242,70,1.0],[116,242,71,1.0],[116,242,72,1.0],[116,242,73,1.0],[116,242,74,1.0],[116,242,75,1.0],[116,242,76,1.0],[116,242,77,1.0],[116,242,78,1.0],[116,242,79,1.0],[116,243,64,1.0],[116,243,65,1.0],[116,243,66,1.0],[116,243,67,1.0],[116,243,68,1.0],[116,243,69,1.0],[116,243,70,1.0],[116,243,71,1.0],[116,243,72,1.0],[116,243,73,1.0],[116,243,74,1.0],[116,243,75,1.0],[116,243,76,1.0],[116,243,77,1.0],[116,243,78,1.0],[116,243,79,1.0],[116,244,64,1.0],[116,244,65,1.0],[116,244,66,1.0],[116,244,67,1.0],[116,244,68,1.0],[116,244,69,1.0],[116,244,70,1.0],[116,244,71,1.0],[116,244,72,1.0],[116,244,73,1.0],[116,244,74,1.0],[116,244,75,1.0],[116,244,76,1.0],[116,244,77,1.0],[116,244,78,1.0],[116,244,79,1.0],[116,245,64,1.0],[116,245,65,1.0],[116,245,66,1.0],[116,245,67,1.0],[116,245,68,1.0],[116,245,69,1.0],[116,245,70,1.0],[116,245,71,1.0],[116,245,72,1.0],[116,245,73,1.0],[116,245,74,1.0],[116,245,75,1.0],[116,245,76,1.0],[116,245,77,1.0],[116,245,78,1.0],[116,245,79,1.0],[116,246,64,1.0],[116,246,65,1.0],[116,246,66,1.0],[116,246,67,1.0],[116,246,68,1.0],[116,246,69,1.0],[116,246,70,1.0],[116,246,71,1.0],[116,246,72,1.0],[116,246,73,1.0],[116,246,74,1.0],[116,246,75,1.0],[116,246,76,1.0],[116,246,77,1.0],[116,246,78,1.0],[116,246,79,1.0],[116,247,64,1.0],[116,247,65,1.0],[116,247,66,1.0],[116,247,67,1.0],[116,247,68,1.0],[116,247,69,1.0],[116,247,70,1.0],[116,247,71,1.0],[116,247,72,1.0],[116,247,73,1.0],[116,247,74,1.0],[116,247,75,1.0],[116,247,76,1.0],[116,247,77,1.0],[116,247,78,1.0],[116,247,79,1.0],[116,248,64,1.0],[116,248,65,1.0],[116,248,66,1.0],[116,248,67,1.0],[116,248,68,1.0],[116,248,69,1.0],[116,248,70,1.0],[116,248,71,1.0],[116,248,72,1.0],[116,248,73,1.0],[116,248,74,1.0],[116,248,75,1.0],[116,248,76,1.0],[116,248,77,1.0],[116,248,78,1.0],[116,248,79,1.0],[116,249,64,1.0],[116,249,65,1.0],[116,249,66,1.0],[116,249,67,1.0],[116,249,68,1.0],[116,249,69,1.0],[116,249,70,1.0],[116,249,71,1.0],[116,249,72,1.0],[116,249,73,1.0],[116,249,74,1.0],[116,249,75,1.0],[116,249,76,1.0],[116,249,77,1.0],[116,249,78,1.0],[116,249,79,1.0],[116,250,64,1.0],[116,250,65,1.0],[116,250,66,1.0],[116,250,67,1.0],[116,250,68,1.0],[116,250,69,1.0],[116,250,70,1.0],[116,250,71,1.0],[116,250,72,1.0],[116,250,73,1.0],[116,250,74,1.0],[116,250,75,1.0],[116,250,76,1.0],[116,250,77,1.0],[116,250,78,1.0],[116,250,79,1.0],[116,251,64,1.0],[116,251,65,1.0],[116,251,66,1.0],[116,251,67,1.0],[116,251,68,1.0],[116,251,69,1.0],[116,251,70,1.0],[116,251,71,1.0],[116,251,72,1.0],[116,251,73,1.0],[116,251,74,1.0],[116,251,75,1.0],[116,251,76,1.0],[116,251,77,1.0],[116,251,78,1.0],[116,251,79,1.0],[116,252,64,1.0],[116,252,65,1.0],[116,252,66,1.0],[116,252,67,1.0],[116,252,68,1.0],[116,252,69,1.0],[116,252,70,1.0],[116,252,71,1.0],[116,252,72,1.0],[116,252,73,1.0],[116,252,74,1.0],[116,252,75,1.0],[116,252,76,1.0],[116,252,77,1.0],[116,252,78,1.0],[116,252,79,1.0],[116,253,64,1.0],[116,253,65,1.0],[116,253,66,1.0],[116,253,67,1.0],[116,253,68,1.0],[116,253,69,1.0],[116,253,70,1.0],[116,253,71,1.0],[116,253,72,1.0],[116,253,73,1.0],[116,253,74,1.0],[116,253,75,1.0],[116,253,76,1.0],[116,253,77,1.0],[116,253,78,1.0],[116,253,79,1.0],[116,254,64,1.0],[116,254,65,1.0],[116,254,66,1.0],[116,254,67,1.0],[116,254,68,1.0],[116,254,69,1.0],[116,254,70,1.0],[116,254,71,1.0],[116,254,72,1.0],[116,254,73,1.0],[116,254,74,1.0],[116,254,75,1.0],[116,254,76,1.0],[116,254,77,1.0],[116,254,78,1.0],[116,254,79,1.0],[116,255,64,1.0],[116,255,65,1.0],[116,255,66,1.0],[116,255,67,1.0],[116,255,68,1.0],[116,255,69,1.0],[116,255,70,1.0],[116,255,71,1.0],[116,255,72,1.0],[116,255,73,1.0],[116,255,74,1.0],[116,255,75,1.0],[116,255,76,1.0],[116,255,77,1.0],[116,255,78,1.0],[116,255,79,1.0],[116,256,64,1.0],[116,256,65,1.0],[116,256,66,1.0],[116,256,67,1.0],[116,256,68,1.0],[116,256,69,1.0],[116,256,70,1.0],[116,256,71,1.0],[116,256,72,1.0],[116,256,73,1.0],[116,256,74,1.0],[116,256,75,1.0],[116,256,76,1.0],[116,256,77,1.0],[116,256,78,1.0],[116,256,79,1.0],[116,257,64,1.0],[116,257,65,1.0],[116,257,66,1.0],[116,257,67,1.0],[116,257,68,1.0],[116,257,69,1.0],[116,257,70,1.0],[116,257,71,1.0],[116,257,72,1.0],[116,257,73,1.0],[116,257,74,1.0],[116,257,75,1.0],[116,257,76,1.0],[116,257,77,1.0],[116,257,78,1.0],[116,257,79,1.0],[116,258,64,1.0],[116,258,65,1.0],[116,258,66,1.0],[116,258,67,1.0],[116,258,68,1.0],[116,258,69,1.0],[116,258,70,1.0],[116,258,71,1.0],[116,258,72,1.0],[116,258,73,1.0],[116,258,74,1.0],[116,258,75,1.0],[116,258,76,1.0],[116,258,77,1.0],[116,258,78,1.0],[116,258,79,1.0],[116,259,64,1.0],[116,259,65,1.0],[116,259,66,1.0],[116,259,67,1.0],[116,259,68,1.0],[116,259,69,1.0],[116,259,70,1.0],[116,259,71,1.0],[116,259,72,1.0],[116,259,73,1.0],[116,259,74,1.0],[116,259,75,1.0],[116,259,76,1.0],[116,259,77,1.0],[116,259,78,1.0],[116,259,79,1.0],[116,260,64,1.0],[116,260,65,1.0],[116,260,66,1.0],[116,260,67,1.0],[116,260,68,1.0],[116,260,69,1.0],[116,260,70,1.0],[116,260,71,1.0],[116,260,72,1.0],[116,260,73,1.0],[116,260,74,1.0],[116,260,75,1.0],[116,260,76,1.0],[116,260,77,1.0],[116,260,78,1.0],[116,260,79,1.0],[116,261,64,1.0],[116,261,65,1.0],[116,261,66,1.0],[116,261,67,1.0],[116,261,68,1.0],[116,261,69,1.0],[116,261,70,1.0],[116,261,71,1.0],[116,261,72,1.0],[116,261,73,1.0],[116,261,74,1.0],[116,261,75,1.0],[116,261,76,1.0],[116,261,77,1.0],[116,261,78,1.0],[116,261,79,1.0],[116,262,64,1.0],[116,262,65,1.0],[116,262,66,1.0],[116,262,67,1.0],[116,262,68,1.0],[116,262,69,1.0],[116,262,70,1.0],[116,262,71,1.0],[116,262,72,1.0],[116,262,73,1.0],[116,262,74,1.0],[116,262,75,1.0],[116,262,76,1.0],[116,262,77,1.0],[116,262,78,1.0],[116,262,79,1.0],[116,263,64,1.0],[116,263,65,1.0],[116,263,66,1.0],[116,263,67,1.0],[116,263,68,1.0],[116,263,69,1.0],[116,263,70,1.0],[116,263,71,1.0],[116,263,72,1.0],[116,263,73,1.0],[116,263,74,1.0],[116,263,75,1.0],[116,263,76,1.0],[116,263,77,1.0],[116,263,78,1.0],[116,263,79,1.0],[116,264,64,1.0],[116,264,65,1.0],[116,264,66,1.0],[116,264,67,1.0],[116,264,68,1.0],[116,264,69,1.0],[116,264,70,1.0],[116,264,71,1.0],[116,264,72,1.0],[116,264,73,1.0],[116,264,74,1.0],[116,264,75,1.0],[116,264,76,1.0],[116,264,77,1.0],[116,264,78,1.0],[116,264,79,1.0],[116,265,64,1.0],[116,265,65,1.0],[116,265,66,1.0],[116,265,67,1.0],[116,265,68,1.0],[116,265,69,1.0],[116,265,70,1.0],[116,265,71,1.0],[116,265,72,1.0],[116,265,73,1.0],[116,265,74,1.0],[116,265,75,1.0],[116,265,76,1.0],[116,265,77,1.0],[116,265,78,1.0],[116,265,79,1.0],[116,266,64,1.0],[116,266,65,1.0],[116,266,66,1.0],[116,266,67,1.0],[116,266,68,1.0],[116,266,69,1.0],[116,266,70,1.0],[116,266,71,1.0],[116,266,72,1.0],[116,266,73,1.0],[116,266,74,1.0],[116,266,75,1.0],[116,266,76,1.0],[116,266,77,1.0],[116,266,78,1.0],[116,266,79,1.0],[116,267,64,1.0],[116,267,65,1.0],[116,267,66,1.0],[116,267,67,1.0],[116,267,68,1.0],[116,267,69,1.0],[116,267,70,1.0],[116,267,71,1.0],[116,267,72,1.0],[116,267,73,1.0],[116,267,74,1.0],[116,267,75,1.0],[116,267,76,1.0],[116,267,77,1.0],[116,267,78,1.0],[116,267,79,1.0],[116,268,64,1.0],[116,268,65,1.0],[116,268,66,1.0],[116,268,67,1.0],[116,268,68,1.0],[116,268,69,1.0],[116,268,70,1.0],[116,268,71,1.0],[116,268,72,1.0],[116,268,73,1.0],[116,268,74,1.0],[116,268,75,1.0],[116,268,76,1.0],[116,268,77,1.0],[116,268,78,1.0],[116,268,79,1.0],[116,269,64,1.0],[116,269,65,1.0],[116,269,66,1.0],[116,269,67,1.0],[116,269,68,1.0],[116,269,69,1.0],[116,269,70,1.0],[116,269,71,1.0],[116,269,72,1.0],[116,269,73,1.0],[116,269,74,1.0],[116,269,75,1.0],[116,269,76,1.0],[116,269,77,1.0],[116,269,78,1.0],[116,269,79,1.0],[116,270,64,1.0],[116,270,65,1.0],[116,270,66,1.0],[116,270,67,1.0],[116,270,68,1.0],[116,270,69,1.0],[116,270,70,1.0],[116,270,71,1.0],[116,270,72,1.0],[116,270,73,1.0],[116,270,74,1.0],[116,270,75,1.0],[116,270,76,1.0],[116,270,77,1.0],[116,270,78,1.0],[116,270,79,1.0],[116,271,64,1.0],[116,271,65,1.0],[116,271,66,1.0],[116,271,67,1.0],[116,271,68,1.0],[116,271,69,1.0],[116,271,70,1.0],[116,271,71,1.0],[116,271,72,1.0],[116,271,73,1.0],[116,271,74,1.0],[116,271,75,1.0],[116,271,76,1.0],[116,271,77,1.0],[116,271,78,1.0],[116,271,79,1.0],[116,272,64,1.0],[116,272,65,1.0],[116,272,66,1.0],[116,272,67,1.0],[116,272,68,1.0],[116,272,69,1.0],[116,272,70,1.0],[116,272,71,1.0],[116,272,72,1.0],[116,272,73,1.0],[116,272,74,1.0],[116,272,75,1.0],[116,272,76,1.0],[116,272,77,1.0],[116,272,78,1.0],[116,272,79,1.0],[116,273,64,1.0],[116,273,65,1.0],[116,273,66,1.0],[116,273,67,1.0],[116,273,68,1.0],[116,273,69,1.0],[116,273,70,1.0],[116,273,71,1.0],[116,273,72,1.0],[116,273,73,1.0],[116,273,74,1.0],[116,273,75,1.0],[116,273,76,1.0],[116,273,77,1.0],[116,273,78,1.0],[116,273,79,1.0],[116,274,64,1.0],[116,274,65,1.0],[116,274,66,1.0],[116,274,67,1.0],[116,274,68,1.0],[116,274,69,1.0],[116,274,70,1.0],[116,274,71,1.0],[116,274,72,1.0],[116,274,73,1.0],[116,274,74,1.0],[116,274,75,1.0],[116,274,76,1.0],[116,274,77,1.0],[116,274,78,1.0],[116,274,79,1.0],[116,275,64,1.0],[116,275,65,1.0],[116,275,66,1.0],[116,275,67,1.0],[116,275,68,1.0],[116,275,69,1.0],[116,275,70,1.0],[116,275,71,1.0],[116,275,72,1.0],[116,275,73,1.0],[116,275,74,1.0],[116,275,75,1.0],[116,275,76,1.0],[116,275,77,1.0],[116,275,78,1.0],[116,275,79,1.0],[116,276,64,1.0],[116,276,65,1.0],[116,276,66,1.0],[116,276,67,1.0],[116,276,68,1.0],[116,276,69,1.0],[116,276,70,1.0],[116,276,71,1.0],[116,276,72,1.0],[116,276,73,1.0],[116,276,74,1.0],[116,276,75,1.0],[116,276,76,1.0],[116,276,77,1.0],[116,276,78,1.0],[116,276,79,1.0],[116,277,64,1.0],[116,277,65,1.0],[116,277,66,1.0],[116,277,67,1.0],[116,277,68,1.0],[116,277,69,1.0],[116,277,70,1.0],[116,277,71,1.0],[116,277,72,1.0],[116,277,73,1.0],[116,277,74,1.0],[116,277,75,1.0],[116,277,76,1.0],[116,277,77,1.0],[116,277,78,1.0],[116,277,79,1.0],[116,278,64,1.0],[116,278,65,1.0],[116,278,66,1.0],[116,278,67,1.0],[116,278,68,1.0],[116,278,69,1.0],[116,278,70,1.0],[116,278,71,1.0],[116,278,72,1.0],[116,278,73,1.0],[116,278,74,1.0],[116,278,75,1.0],[116,278,76,1.0],[116,278,77,1.0],[116,278,78,1.0],[116,278,79,1.0],[116,279,64,1.0],[116,279,65,1.0],[116,279,66,1.0],[116,279,67,1.0],[116,279,68,1.0],[116,279,69,1.0],[116,279,70,1.0],[116,279,71,1.0],[116,279,72,1.0],[116,279,73,1.0],[116,279,74,1.0],[116,279,75,1.0],[116,279,76,1.0],[116,279,77,1.0],[116,279,78,1.0],[116,279,79,1.0],[116,280,64,1.0],[116,280,65,1.0],[116,280,66,1.0],[116,280,67,1.0],[116,280,68,1.0],[116,280,69,1.0],[116,280,70,1.0],[116,280,71,1.0],[116,280,72,1.0],[116,280,73,1.0],[116,280,74,1.0],[116,280,75,1.0],[116,280,76,1.0],[116,280,77,1.0],[116,280,78,1.0],[116,280,79,1.0],[116,281,64,1.0],[116,281,65,1.0],[116,281,66,1.0],[116,281,67,1.0],[116,281,68,1.0],[116,281,69,1.0],[116,281,70,1.0],[116,281,71,1.0],[116,281,72,1.0],[116,281,73,1.0],[116,281,74,1.0],[116,281,75,1.0],[116,281,76,1.0],[116,281,77,1.0],[116,281,78,1.0],[116,281,79,1.0],[116,282,64,1.0],[116,282,65,1.0],[116,282,66,1.0],[116,282,67,1.0],[116,282,68,1.0],[116,282,69,1.0],[116,282,70,1.0],[116,282,71,1.0],[116,282,72,1.0],[116,282,73,1.0],[116,282,74,1.0],[116,282,75,1.0],[116,282,76,1.0],[116,282,77,1.0],[116,282,78,1.0],[116,282,79,1.0],[116,283,64,1.0],[116,283,65,1.0],[116,283,66,1.0],[116,283,67,1.0],[116,283,68,1.0],[116,283,69,1.0],[116,283,70,1.0],[116,283,71,1.0],[116,283,72,1.0],[116,283,73,1.0],[116,283,74,1.0],[116,283,75,1.0],[116,283,76,1.0],[116,283,77,1.0],[116,283,78,1.0],[116,283,79,1.0],[116,284,64,1.0],[116,284,65,1.0],[116,284,66,1.0],[116,284,67,1.0],[116,284,68,1.0],[116,284,69,1.0],[116,284,70,1.0],[116,284,71,1.0],[116,284,72,1.0],[116,284,73,1.0],[116,284,74,1.0],[116,284,75,1.0],[116,284,76,1.0],[116,284,77,1.0],[116,284,78,1.0],[116,284,79,1.0],[116,285,64,1.0],[116,285,65,1.0],[116,285,66,1.0],[116,285,67,1.0],[116,285,68,1.0],[116,285,69,1.0],[116,285,70,1.0],[116,285,71,1.0],[116,285,72,1.0],[116,285,73,1.0],[116,285,74,1.0],[116,285,75,1.0],[116,285,76,1.0],[116,285,77,1.0],[116,285,78,1.0],[116,285,79,1.0],[116,286,64,1.0],[116,286,65,1.0],[116,286,66,1.0],[116,286,67,1.0],[116,286,68,1.0],[116,286,69,1.0],[116,286,70,1.0],[116,286,71,1.0],[116,286,72,1.0],[116,286,73,1.0],[116,286,74,1.0],[116,286,75,1.0],[116,286,76,1.0],[116,286,77,1.0],[116,286,78,1.0],[116,286,79,1.0],[116,287,64,1.0],[116,287,65,1.0],[116,287,66,1.0],[116,287,67,1.0],[116,287,68,1.0],[116,287,69,1.0],[116,287,70,1.0],[116,287,71,1.0],[116,287,72,1.0],[116,287,73,1.0],[116,287,74,1.0],[116,287,75,1.0],[116,287,76,1.0],[116,287,77,1.0],[116,287,78,1.0],[116,287,79,1.0],[116,288,64,1.0],[116,288,65,1.0],[116,288,66,1.0],[116,288,67,1.0],[116,288,68,1.0],[116,288,69,1.0],[116,288,70,1.0],[116,288,71,1.0],[116,288,72,1.0],[116,288,73,1.0],[116,288,74,1.0],[116,288,75,1.0],[116,288,76,1.0],[116,288,77,1.0],[116,288,78,1.0],[116,288,79,1.0],[116,289,64,1.0],[116,289,65,1.0],[116,289,66,1.0],[116,289,67,1.0],[116,289,68,1.0],[116,289,69,1.0],[116,289,70,1.0],[116,289,71,1.0],[116,289,72,1.0],[116,289,73,1.0],[116,289,74,1.0],[116,289,75,1.0],[116,289,76,1.0],[116,289,77,1.0],[116,289,78,1.0],[116,289,79,1.0],[116,290,64,1.0],[116,290,65,1.0],[116,290,66,1.0],[116,290,67,1.0],[116,290,68,1.0],[116,290,69,1.0],[116,290,70,1.0],[116,290,71,1.0],[116,290,72,1.0],[116,290,73,1.0],[116,290,74,1.0],[116,290,75,1.0],[116,290,76,1.0],[116,290,77,1.0],[116,290,78,1.0],[116,290,79,1.0],[116,291,64,1.0],[116,291,65,1.0],[116,291,66,1.0],[116,291,67,1.0],[116,291,68,1.0],[116,291,69,1.0],[116,291,70,1.0],[116,291,71,1.0],[116,291,72,1.0],[116,291,73,1.0],[116,291,74,1.0],[116,291,75,1.0],[116,291,76,1.0],[116,291,77,1.0],[116,291,78,1.0],[116,291,79,1.0],[116,292,64,1.0],[116,292,65,1.0],[116,292,66,1.0],[116,292,67,1.0],[116,292,68,1.0],[116,292,69,1.0],[116,292,70,1.0],[116,292,71,1.0],[116,292,72,1.0],[116,292,73,1.0],[116,292,74,1.0],[116,292,75,1.0],[116,292,76,1.0],[116,292,77,1.0],[116,292,78,1.0],[116,292,79,1.0],[116,293,64,1.0],[116,293,65,1.0],[116,293,66,1.0],[116,293,67,1.0],[116,293,68,1.0],[116,293,69,1.0],[116,293,70,1.0],[116,293,71,1.0],[116,293,72,1.0],[116,293,73,1.0],[116,293,74,1.0],[116,293,75,1.0],[116,293,76,1.0],[116,293,77,1.0],[116,293,78,1.0],[116,293,79,1.0],[116,294,64,1.0],[116,294,65,1.0],[116,294,66,1.0],[116,294,67,1.0],[116,294,68,1.0],[116,294,69,1.0],[116,294,70,1.0],[116,294,71,1.0],[116,294,72,1.0],[116,294,73,1.0],[116,294,74,1.0],[116,294,75,1.0],[116,294,76,1.0],[116,294,77,1.0],[116,294,78,1.0],[116,294,79,1.0],[116,295,64,1.0],[116,295,65,1.0],[116,295,66,1.0],[116,295,67,1.0],[116,295,68,1.0],[116,295,69,1.0],[116,295,70,1.0],[116,295,71,1.0],[116,295,72,1.0],[116,295,73,1.0],[116,295,74,1.0],[116,295,75,1.0],[116,295,76,1.0],[116,295,77,1.0],[116,295,78,1.0],[116,295,79,1.0],[116,296,64,1.0],[116,296,65,1.0],[116,296,66,1.0],[116,296,67,1.0],[116,296,68,1.0],[116,296,69,1.0],[116,296,70,1.0],[116,296,71,1.0],[116,296,72,1.0],[116,296,73,1.0],[116,296,74,1.0],[116,296,75,1.0],[116,296,76,1.0],[116,296,77,1.0],[116,296,78,1.0],[116,296,79,1.0],[116,297,64,1.0],[116,297,65,1.0],[116,297,66,1.0],[116,297,67,1.0],[116,297,68,1.0],[116,297,69,1.0],[116,297,70,1.0],[116,297,71,1.0],[116,297,72,1.0],[116,297,73,1.0],[116,297,74,1.0],[116,297,75,1.0],[116,297,76,1.0],[116,297,77,1.0],[116,297,78,1.0],[116,297,79,1.0],[116,298,64,1.0],[116,298,65,1.0],[116,298,66,1.0],[116,298,67,1.0],[116,298,68,1.0],[116,298,69,1.0],[116,298,70,1.0],[116,298,71,1.0],[116,298,72,1.0],[116,298,73,1.0],[116,298,74,1.0],[116,298,75,1.0],[116,298,76,1.0],[116,298,77,1.0],[116,298,78,1.0],[116,298,79,1.0],[116,299,64,1.0],[116,299,65,1.0],[116,299,66,1.0],[116,299,67,1.0],[116,299,68,1.0],[116,299,69,1.0],[116,299,70,1.0],[116,299,71,1.0],[116,299,72,1.0],[116,299,73,1.0],[116,299,74,1.0],[116,299,75,1.0],[116,299,76,1.0],[116,299,77,1.0],[116,299,78,1.0],[116,299,79,1.0],[116,300,64,1.0],[116,300,65,1.0],[116,300,66,1.0],[116,300,67,1.0],[116,300,68,1.0],[116,300,69,1.0],[116,300,70,1.0],[116,300,71,1.0],[116,300,72,1.0],[116,300,73,1.0],[116,300,74,1.0],[116,300,75,1.0],[116,300,76,1.0],[116,300,77,1.0],[116,300,78,1.0],[116,300,79,1.0],[116,301,64,1.0],[116,301,65,1.0],[116,301,66,1.0],[116,301,67,1.0],[116,301,68,1.0],[116,301,69,1.0],[116,301,70,1.0],[116,301,71,1.0],[116,301,72,1.0],[116,301,73,1.0],[116,301,74,1.0],[116,301,75,1.0],[116,301,76,1.0],[116,301,77,1.0],[116,301,78,1.0],[116,301,79,1.0],[116,302,64,1.0],[116,302,65,1.0],[116,302,66,1.0],[116,302,67,1.0],[116,302,68,1.0],[116,302,69,1.0],[116,302,70,1.0],[116,302,71,1.0],[116,302,72,1.0],[116,302,73,1.0],[116,302,74,1.0],[116,302,75,1.0],[116,302,76,1.0],[116,302,77,1.0],[116,302,78,1.0],[116,302,79,1.0],[116,303,64,1.0],[116,303,65,1.0],[116,303,66,1.0],[116,303,67,1.0],[116,303,68,1.0],[116,303,69,1.0],[116,303,70,1.0],[116,303,71,1.0],[116,303,72,1.0],[116,303,73,1.0],[116,303,74,1.0],[116,303,75,1.0],[116,303,76,1.0],[116,303,77,1.0],[116,303,78,1.0],[116,303,79,1.0],[116,304,64,1.0],[116,304,65,1.0],[116,304,66,1.0],[116,304,67,1.0],[116,304,68,1.0],[116,304,69,1.0],[116,304,70,1.0],[116,304,71,1.0],[116,304,72,1.0],[116,304,73,1.0],[116,304,74,1.0],[116,304,75,1.0],[116,304,76,1.0],[116,304,77,1.0],[116,304,78,1.0],[116,304,79,1.0],[116,305,64,1.0],[116,305,65,1.0],[116,305,66,1.0],[116,305,67,1.0],[116,305,68,1.0],[116,305,69,1.0],[116,305,70,1.0],[116,305,71,1.0],[116,305,72,1.0],[116,305,73,1.0],[116,305,74,1.0],[116,305,75,1.0],[116,305,76,1.0],[116,305,77,1.0],[116,305,78,1.0],[116,305,79,1.0],[116,306,64,1.0],[116,306,65,1.0],[116,306,66,1.0],[116,306,67,1.0],[116,306,68,1.0],[116,306,69,1.0],[116,306,70,1.0],[116,306,71,1.0],[116,306,72,1.0],[116,306,73,1.0],[116,306,74,1.0],[116,306,75,1.0],[116,306,76,1.0],[116,306,77,1.0],[116,306,78,1.0],[116,306,79,1.0],[116,307,64,1.0],[116,307,65,1.0],[116,307,66,1.0],[116,307,67,1.0],[116,307,68,1.0],[116,307,69,1.0],[116,307,70,1.0],[116,307,71,1.0],[116,307,72,1.0],[116,307,73,1.0],[116,307,74,1.0],[116,307,75,1.0],[116,307,76,1.0],[116,307,77,1.0],[116,307,78,1.0],[116,307,79,1.0],[116,308,64,1.0],[116,308,65,1.0],[116,308,66,1.0],[116,308,67,1.0],[116,308,68,1.0],[116,308,69,1.0],[116,308,70,1.0],[116,308,71,1.0],[116,308,72,1.0],[116,308,73,1.0],[116,308,74,1.0],[116,308,75,1.0],[116,308,76,1.0],[116,308,77,1.0],[116,308,78,1.0],[116,308,79,1.0],[116,309,64,1.0],[116,309,65,1.0],[116,309,66,1.0],[116,309,67,1.0],[116,309,68,1.0],[116,309,69,1.0],[116,309,70,1.0],[116,309,71,1.0],[116,309,72,1.0],[116,309,73,1.0],[116,309,74,1.0],[116,309,75,1.0],[116,309,76,1.0],[116,309,77,1.0],[116,309,78,1.0],[116,309,79,1.0],[116,310,64,1.0],[116,310,65,1.0],[116,310,66,1.0],[116,310,67,1.0],[116,310,68,1.0],[116,310,69,1.0],[116,310,70,1.0],[116,310,71,1.0],[116,310,72,1.0],[116,310,73,1.0],[116,310,74,1.0],[116,310,75,1.0],[116,310,76,1.0],[116,310,77,1.0],[116,310,78,1.0],[116,310,79,1.0],[116,311,64,1.0],[116,311,65,1.0],[116,311,66,1.0],[116,311,67,1.0],[116,311,68,1.0],[116,311,69,1.0],[116,311,70,1.0],[116,311,71,1.0],[116,311,72,1.0],[116,311,73,1.0],[116,311,74,1.0],[116,311,75,1.0],[116,311,76,1.0],[116,311,77,1.0],[116,311,78,1.0],[116,311,79,1.0],[116,312,64,1.0],[116,312,65,1.0],[116,312,66,1.0],[116,312,67,1.0],[116,312,68,1.0],[116,312,69,1.0],[116,312,70,1.0],[116,312,71,1.0],[116,312,72,1.0],[116,312,73,1.0],[116,312,74,1.0],[116,312,75,1.0],[116,312,76,1.0],[116,312,77,1.0],[116,312,78,1.0],[116,312,79,1.0],[116,313,64,1.0],[116,313,65,1.0],[116,313,66,1.0],[116,313,67,1.0],[116,313,68,1.0],[116,313,69,1.0],[116,313,70,1.0],[116,313,71,1.0],[116,313,72,1.0],[116,313,73,1.0],[116,313,74,1.0],[116,313,75,1.0],[116,313,76,1.0],[116,313,77,1.0],[116,313,78,1.0],[116,313,79,1.0],[116,314,64,1.0],[116,314,65,1.0],[116,314,66,1.0],[116,314,67,1.0],[116,314,68,1.0],[116,314,69,1.0],[116,314,70,1.0],[116,314,71,1.0],[116,314,72,1.0],[116,314,73,1.0],[116,314,74,1.0],[116,314,75,1.0],[116,314,76,1.0],[116,314,77,1.0],[116,314,78,1.0],[116,314,79,1.0],[116,315,64,1.0],[116,315,65,1.0],[116,315,66,1.0],[116,315,67,1.0],[116,315,68,1.0],[116,315,69,1.0],[116,315,70,1.0],[116,315,71,1.0],[116,315,72,1.0],[116,315,73,1.0],[116,315,74,1.0],[116,315,75,1.0],[116,315,76,1.0],[116,315,77,1.0],[116,315,78,1.0],[116,315,79,1.0],[116,316,64,1.0],[116,316,65,1.0],[116,316,66,1.0],[116,316,67,1.0],[116,316,68,1.0],[116,316,69,1.0],[116,316,70,1.0],[116,316,71,1.0],[116,316,72,1.0],[116,316,73,1.0],[116,316,74,1.0],[116,316,75,1.0],[116,316,76,1.0],[116,316,77,1.0],[116,316,78,1.0],[116,316,79,1.0],[116,317,64,1.0],[116,317,65,1.0],[116,317,66,1.0],[116,317,67,1.0],[116,317,68,1.0],[116,317,69,1.0],[116,317,70,1.0],[116,317,71,1.0],[116,317,72,1.0],[116,317,73,1.0],[116,317,74,1.0],[116,317,75,1.0],[116,317,76,1.0],[116,317,77,1.0],[116,317,78,1.0],[116,317,79,1.0],[116,318,64,1.0],[116,318,65,1.0],[116,318,66,1.0],[116,318,67,1.0],[116,318,68,1.0],[116,318,69,1.0],[116,318,70,1.0],[116,318,71,1.0],[116,318,72,1.0],[116,318,73,1.0],[116,318,74,1.0],[116,318,75,1.0],[116,318,76,1.0],[116,318,77,1.0],[116,318,78,1.0],[116,318,79,1.0],[116,319,64,1.0],[116,319,65,1.0],[116,319,66,1.0],[116,319,67,1.0],[116,319,68,1.0],[116,319,69,1.0],[116,319,70,1.0],[116,319,71,1.0],[116,319,72,1.0],[116,319,73,1.0],[116,319,74,1.0],[116,319,75,1.0],[116,319,76,1.0],[116,319,77,1.0],[116,319,78,1.0],[116,319,79,1.0],[117,-64,64,1.0],[117,-64,65,1.0],[117,-64,66,1.0],[117,-64,67,1.0],[117,-64,68,1.0],[117,-64,69,1.0],[117,-64,70,1.0],[117,-64,71,1.0],[117,-64,72,1.0],[117,-64,73,1.0],[117,-64,74,1.0],[117,-64,75,1.0],[117,-64,76,1.0],[117,-64,77,1.0],[117,-64,78,1.0],[117,-64,79,1.0],[117,-63,64,1.0],[117,-63,65,1.0],[117,-63,66,1.0],[117,-63,67,1.0],[117,-63,68,1.0],[117,-63,69,1.0],[117,-63,70,1.0],[117,-63,71,1.0],[117,-63,72,1.0],[117,-63,73,1.0],[117,-63,74,1.0],[117,-63,75,1.0],[117,-63,76,1.0],[117,-63,77,1.0],[117,-63,78,1.0],[117,-63,79,1.0],[117,-62,64,1.0],[117,-62,65,1.0],[117,-62,66,1.0],[117,-62,67,1.0],[117,-62,68,1.0],[117,-62,69,1.0],[117,-62,70,1.0],[117,-62,71,1.0],[117,-62,72,1.0],[117,-62,73,1.0],[117,-62,74,1.0],[117,-62,75,1.0],[117,-62,76,1.0],[117,-62,77,1.0],[117,-62,78,1.0],[117,-62,79,1.0],[117,-61,64,1.0],[117,-61,65,1.0],[117,-61,66,1.0],[117,-61,67,1.0],[117,-61,68,1.0],[117,-61,69,1.0],[117,-61,70,1.0],[117,-61,71,1.0],[117,-61,72,1.0],[117,-61,73,1.0],[117,-61,74,1.0],[117,-61,75,1.0],[117,-61,76,1.0],[117,-61,77,1.0],[117,-61,78,1.0],[117,-61,79,1.0],[117,-60,64,1.0],[117,-60,65,1.0],[117,-60,66,1.0],[117,-60,67,1.0],[117,-60,68,1.0],[117,-60,69,1.0],[117,-60,70,1.0],[117,-60,71,1.0],[117,-60,72,1.0],[117,-60,73,1.0],[117,-60,74,1.0],[117,-60,75,1.0],[117,-60,76,1.0],[117,-60,77,1.0],[117,-60,78,1.0],[117,-60,79,1.0],[117,-59,64,1.0],[117,-59,65,1.0],[117,-59,66,1.0],[117,-59,67,1.0],[117,-59,68,1.0],[117,-59,69,1.0],[117,-59,70,1.0],[117,-59,71,1.0],[117,-59,72,1.0],[117,-59,73,1.0],[117,-59,74,1.0],[117,-59,75,1.0],[117,-59,76,1.0],[117,-59,77,1.0],[117,-59,78,1.0],[117,-59,79,1.0],[117,-58,64,1.0],[117,-58,65,1.0],[117,-58,66,1.0],[117,-58,67,1.0],[117,-58,68,1.0],[117,-58,69,1.0],[117,-58,70,1.0],[117,-58,71,1.0],[117,-58,72,1.0],[117,-58,73,1.0],[117,-58,74,1.0],[117,-58,75,1.0],[117,-58,76,1.0],[117,-58,77,1.0],[117,-58,78,1.0],[117,-58,79,1.0],[117,-57,64,1.0],[117,-57,65,1.0],[117,-57,66,1.0],[117,-57,67,1.0],[117,-57,68,1.0],[117,-57,69,1.0],[117,-57,70,1.0],[117,-57,71,1.0],[117,-57,72,1.0],[117,-57,73,1.0],[117,-57,74,1.0],[117,-57,75,1.0],[117,-57,76,1.0],[117,-57,77,1.0],[117,-57,78,1.0],[117,-57,79,1.0],[117,-56,64,1.0],[117,-56,65,1.0],[117,-56,66,1.0],[117,-56,67,1.0],[117,-56,68,1.0],[117,-56,69,1.0],[117,-56,70,1.0],[117,-56,71,1.0],[117,-56,72,1.0],[117,-56,73,1.0],[117,-56,74,1.0],[117,-56,75,1.0],[117,-56,76,1.0],[117,-56,77,1.0],[117,-56,78,1.0],[117,-56,79,1.0],[117,-55,64,1.0],[117,-55,65,1.0],[117,-55,66,1.0],[117,-55,67,1.0],[117,-55,68,1.0],[117,-55,69,1.0],[117,-55,70,1.0],[117,-55,71,1.0],[117,-55,72,1.0],[117,-55,73,1.0],[117,-55,74,1.0],[117,-55,75,1.0],[117,-55,76,1.0],[117,-55,77,1.0],[117,-55,78,1.0],[117,-55,79,1.0],[117,-54,64,1.0],[117,-54,65,1.0],[117,-54,66,1.0],[117,-54,67,1.0],[117,-54,68,1.0],[117,-54,69,1.0],[117,-54,70,1.0],[117,-54,71,1.0],[117,-54,72,1.0],[117,-54,73,1.0],[117,-54,74,1.0],[117,-54,75,1.0],[117,-54,76,1.0],[117,-54,77,1.0],[117,-54,78,1.0],[117,-54,79,1.0],[117,-53,64,1.0],[117,-53,65,1.0],[117,-53,66,1.0],[117,-53,67,1.0],[117,-53,68,1.0],[117,-53,69,1.0],[117,-53,70,1.0],[117,-53,71,1.0],[117,-53,72,1.0],[117,-53,73,1.0],[117,-53,74,1.0],[117,-53,75,1.0],[117,-53,76,1.0],[117,-53,77,1.0],[117,-53,78,1.0],[117,-53,79,1.0],[117,-52,64,1.0],[117,-52,65,1.0],[117,-52,66,1.0],[117,-52,67,1.0],[117,-52,68,1.0],[117,-52,69,1.0],[117,-52,70,1.0],[117,-52,71,1.0],[117,-52,72,1.0],[117,-52,73,1.0],[117,-52,74,1.0],[117,-52,75,1.0],[117,-52,76,1.0],[117,-52,77,1.0],[117,-52,78,1.0],[117,-52,79,1.0],[117,-51,64,1.0],[117,-51,65,1.0],[117,-51,66,1.0],[117,-51,67,1.0],[117,-51,68,1.0],[117,-51,69,1.0],[117,-51,70,1.0],[117,-51,71,1.0],[117,-51,72,1.0],[117,-51,73,1.0],[117,-51,74,1.0],[117,-51,75,1.0],[117,-51,76,1.0],[117,-51,77,1.0],[117,-51,78,1.0],[117,-51,79,1.0],[117,-50,64,1.0],[117,-50,65,1.0],[117,-50,66,1.0],[117,-50,67,1.0],[117,-50,68,1.0],[117,-50,69,1.0],[117,-50,70,1.0],[117,-50,71,1.0],[117,-50,72,1.0],[117,-50,73,1.0],[117,-50,74,1.0],[117,-50,75,1.0],[117,-50,76,1.0],[117,-50,77,1.0],[117,-50,78,1.0],[117,-50,79,1.0],[117,-49,64,1.0],[117,-49,65,1.0],[117,-49,66,1.0],[117,-49,67,1.0],[117,-49,68,1.0],[117,-49,69,1.0],[117,-49,70,1.0],[117,-49,71,1.0],[117,-49,72,1.0],[117,-49,73,1.0],[117,-49,74,1.0],[117,-49,75,1.0],[117,-49,76,1.0],[117,-49,77,1.0],[117,-49,78,1.0],[117,-49,79,1.0],[117,-48,64,1.0],[117,-48,65,1.0],[117,-48,66,1.0],[117,-48,67,1.0],[117,-48,68,1.0],[117,-48,69,1.0],[117,-48,70,1.0],[117,-48,71,1.0],[117,-48,72,1.0],[117,-48,73,1.0],[117,-48,74,1.0],[117,-48,75,1.0],[117,-48,76,1.0],[117,-48,77,1.0],[117,-48,78,1.0],[117,-48,79,1.0],[117,-47,64,1.0],[117,-47,65,1.0],[117,-47,66,1.0],[117,-47,67,1.0],[117,-47,68,1.0],[117,-47,69,1.0],[117,-47,70,1.0],[117,-47,71,1.0],[117,-47,72,1.0],[117,-47,73,1.0],[117,-47,74,1.0],[117,-47,75,1.0],[117,-47,76,1.0],[117,-47,77,1.0],[117,-47,78,1.0],[117,-47,79,1.0],[117,-46,64,1.0],[117,-46,65,1.0],[117,-46,66,1.0],[117,-46,67,1.0],[117,-46,68,1.0],[117,-46,69,1.0],[117,-46,70,1.0],[117,-46,71,1.0],[117,-46,72,1.0],[117,-46,73,1.0],[117,-46,74,1.0],[117,-46,75,1.0],[117,-46,76,1.0],[117,-46,77,1.0],[117,-46,78,1.0],[117,-46,79,1.0],[117,-45,64,1.0],[117,-45,65,1.0],[117,-45,66,1.0],[117,-45,67,1.0],[117,-45,68,1.0],[117,-45,69,1.0],[117,-45,70,1.0],[117,-45,71,1.0],[117,-45,72,1.0],[117,-45,73,1.0],[117,-45,74,1.0],[117,-45,75,1.0],[117,-45,76,1.0],[117,-45,77,1.0],[117,-45,78,1.0],[117,-45,79,1.0],[117,-44,64,1.0],[117,-44,65,1.0],[117,-44,66,1.0],[117,-44,67,1.0],[117,-44,68,1.0],[117,-44,69,1.0],[117,-44,70,1.0],[117,-44,71,1.0],[117,-44,72,1.0],[117,-44,73,1.0],[117,-44,74,1.0],[117,-44,75,1.0],[117,-44,76,1.0],[117,-44,77,1.0],[117,-44,78,1.0],[117,-44,79,1.0],[117,-43,64,1.0],[117,-43,65,1.0],[117,-43,66,1.0],[117,-43,67,1.0],[117,-43,68,1.0],[117,-43,69,1.0],[117,-43,70,1.0],[117,-43,71,1.0],[117,-43,72,1.0],[117,-43,73,1.0],[117,-43,74,1.0],[117,-43,75,1.0],[117,-43,76,1.0],[117,-43,77,1.0],[117,-43,78,1.0],[117,-43,79,1.0],[117,-42,64,1.0],[117,-42,65,1.0],[117,-42,66,1.0],[117,-42,67,1.0],[117,-42,68,1.0],[117,-42,69,1.0],[117,-42,70,1.0],[117,-42,71,1.0],[117,-42,72,1.0],[117,-42,73,1.0],[117,-42,74,1.0],[117,-42,75,1.0],[117,-42,76,1.0],[117,-42,77,1.0],[117,-42,78,1.0],[117,-42,79,1.0],[117,-41,64,1.0],[117,-41,65,1.0],[117,-41,66,1.0],[117,-41,67,1.0],[117,-41,68,1.0],[117,-41,69,1.0],[117,-41,70,1.0],[117,-41,71,1.0],[117,-41,72,1.0],[117,-41,73,1.0],[117,-41,74,1.0],[117,-41,75,1.0],[117,-41,76,1.0],[117,-41,77,1.0],[117,-41,78,1.0],[117,-41,79,1.0],[117,-40,64,1.0],[117,-40,65,1.0],[117,-40,66,1.0],[117,-40,67,1.0],[117,-40,68,1.0],[117,-40,69,1.0],[117,-40,70,1.0],[117,-40,71,1.0],[117,-40,72,1.0],[117,-40,73,1.0],[117,-40,74,1.0],[117,-40,75,1.0],[117,-40,76,1.0],[117,-40,77,1.0],[117,-40,78,1.0],[117,-40,79,1.0],[117,-39,64,1.0],[117,-39,65,1.0],[117,-39,66,1.0],[117,-39,67,1.0],[117,-39,68,1.0],[117,-39,69,1.0],[117,-39,70,1.0],[117,-39,71,1.0],[117,-39,72,1.0],[117,-39,73,1.0],[117,-39,74,1.0],[117,-39,75,1.0],[117,-39,76,1.0],[117,-39,77,1.0],[117,-39,78,1.0],[117,-39,79,1.0],[117,-38,64,1.0],[117,-38,65,1.0],[117,-38,66,1.0],[117,-38,67,1.0],[117,-38,68,1.0],[117,-38,69,1.0],[117,-38,70,1.0],[117,-38,71,1.0],[117,-38,72,1.0],[117,-38,73,1.0],[117,-38,74,1.0],[117,-38,75,1.0],[117,-38,76,1.0],[117,-38,77,1.0],[117,-38,78,1.0],[117,-38,79,1.0],[117,-37,64,1.0],[117,-37,65,1.0],[117,-37,66,1.0],[117,-37,67,1.0],[117,-37,68,1.0],[117,-37,69,1.0],[117,-37,70,1.0],[117,-37,71,1.0],[117,-37,72,1.0],[117,-37,73,1.0],[117,-37,74,1.0],[117,-37,75,1.0],[117,-37,76,1.0],[117,-37,77,1.0],[117,-37,78,1.0],[117,-37,79,1.0],[117,-36,64,1.0],[117,-36,65,1.0],[117,-36,66,1.0],[117,-36,67,1.0],[117,-36,68,1.0],[117,-36,69,1.0],[117,-36,70,1.0],[117,-36,71,1.0],[117,-36,72,1.0],[117,-36,73,1.0],[117,-36,74,1.0],[117,-36,75,1.0],[117,-36,76,1.0],[117,-36,77,1.0],[117,-36,78,1.0],[117,-36,79,1.0],[117,-35,64,1.0],[117,-35,65,1.0],[117,-35,66,1.0],[117,-35,67,1.0],[117,-35,68,1.0],[117,-35,69,1.0],[117,-35,70,1.0],[117,-35,71,1.0],[117,-35,72,1.0],[117,-35,73,1.0],[117,-35,74,1.0],[117,-35,75,1.0],[117,-35,76,1.0],[117,-35,77,1.0],[117,-35,78,1.0],[117,-35,79,1.0],[117,-34,64,1.0],[117,-34,65,1.0],[117,-34,66,1.0],[117,-34,67,1.0],[117,-34,68,1.0],[117,-34,69,1.0],[117,-34,70,1.0],[117,-34,71,1.0],[117,-34,72,1.0],[117,-34,73,1.0],[117,-34,74,1.0],[117,-34,75,1.0],[117,-34,76,1.0],[117,-34,77,1.0],[117,-34,78,1.0],[117,-34,79,1.0],[117,-33,64,1.0],[117,-33,65,1.0],[117,-33,66,1.0],[117,-33,67,1.0],[117,-33,68,1.0],[117,-33,69,1.0],[117,-33,70,1.0],[117,-33,71,1.0],[117,-33,72,1.0],[117,-33,73,1.0],[117,-33,74,1.0],[117,-33,75,1.0],[117,-33,76,1.0],[117,-33,77,1.0],[117,-33,78,1.0],[117,-33,79,1.0],[117,-32,64,1.0],[117,-32,65,1.0],[117,-32,66,1.0],[117,-32,67,1.0],[117,-32,68,1.0],[117,-32,69,1.0],[117,-32,70,1.0],[117,-32,71,1.0],[117,-32,72,1.0],[117,-32,73,1.0],[117,-32,74,1.0],[117,-32,75,1.0],[117,-32,76,1.0],[117,-32,77,1.0],[117,-32,78,1.0],[117,-32,79,1.0],[117,-31,64,1.0],[117,-31,65,1.0],[117,-31,66,1.0],[117,-31,67,1.0],[117,-31,68,1.0],[117,-31,69,1.0],[117,-31,70,1.0],[117,-31,71,1.0],[117,-31,72,1.0],[117,-31,73,1.0],[117,-31,74,1.0],[117,-31,75,1.0],[117,-31,76,1.0],[117,-31,77,1.0],[117,-31,78,1.0],[117,-31,79,1.0],[117,-30,64,1.0],[117,-30,65,1.0],[117,-30,66,1.0],[117,-30,67,1.0],[117,-30,68,1.0],[117,-30,69,1.0],[117,-30,70,1.0],[117,-30,71,1.0],[117,-30,72,1.0],[117,-30,73,1.0],[117,-30,74,1.0],[117,-30,75,1.0],[117,-30,76,1.0],[117,-30,77,1.0],[117,-30,78,1.0],[117,-30,79,1.0],[117,-29,64,1.0],[117,-29,65,1.0],[117,-29,66,1.0],[117,-29,67,1.0],[117,-29,68,1.0],[117,-29,69,1.0],[117,-29,70,1.0],[117,-29,71,1.0],[117,-29,72,1.0],[117,-29,73,1.0],[117,-29,74,1.0],[117,-29,75,1.0],[117,-29,76,1.0],[117,-29,77,1.0],[117,-29,78,1.0],[117,-29,79,1.0],[117,-28,64,1.0],[117,-28,65,1.0],[117,-28,66,1.0],[117,-28,67,1.0],[117,-28,68,1.0],[117,-28,69,1.0],[117,-28,70,1.0],[117,-28,71,1.0],[117,-28,72,1.0],[117,-28,73,1.0],[117,-28,74,1.0],[117,-28,75,1.0],[117,-28,76,1.0],[117,-28,77,1.0],[117,-28,78,1.0],[117,-28,79,1.0],[117,-27,64,1.0],[117,-27,65,1.0],[117,-27,66,1.0],[117,-27,67,1.0],[117,-27,68,1.0],[117,-27,69,1.0],[117,-27,70,1.0],[117,-27,71,1.0],[117,-27,72,1.0],[117,-27,73,1.0],[117,-27,74,1.0],[117,-27,75,1.0],[117,-27,76,1.0],[117,-27,77,1.0],[117,-27,78,1.0],[117,-27,79,1.0],[117,-26,64,1.0],[117,-26,65,1.0],[117,-26,66,1.0],[117,-26,67,1.0],[117,-26,68,1.0],[117,-26,69,1.0],[117,-26,70,1.0],[117,-26,71,1.0],[117,-26,72,1.0],[117,-26,73,1.0],[117,-26,74,1.0],[117,-26,75,1.0],[117,-26,76,1.0],[117,-26,77,1.0],[117,-26,78,1.0],[117,-26,79,1.0],[117,-25,64,1.0],[117,-25,65,1.0],[117,-25,66,1.0],[117,-25,67,1.0],[117,-25,68,1.0],[117,-25,69,1.0],[117,-25,70,1.0],[117,-25,71,1.0],[117,-25,72,1.0],[117,-25,73,1.0],[117,-25,74,1.0],[117,-25,75,1.0],[117,-25,76,1.0],[117,-25,77,1.0],[117,-25,78,1.0],[117,-25,79,1.0],[117,-24,64,1.0],[117,-24,65,1.0],[117,-24,66,1.0],[117,-24,67,1.0],[117,-24,68,1.0],[117,-24,69,1.0],[117,-24,70,1.0],[117,-24,71,1.0],[117,-24,72,1.0],[117,-24,73,1.0],[117,-24,74,1.0],[117,-24,75,1.0],[117,-24,76,1.0],[117,-24,77,1.0],[117,-24,78,1.0],[117,-24,79,1.0],[117,-23,64,1.0],[117,-23,65,1.0],[117,-23,66,1.0],[117,-23,67,1.0],[117,-23,68,1.0],[117,-23,69,1.0],[117,-23,70,1.0],[117,-23,71,1.0],[117,-23,72,1.0],[117,-23,73,1.0],[117,-23,74,1.0],[117,-23,75,1.0],[117,-23,76,1.0],[117,-23,77,1.0],[117,-23,78,1.0],[117,-23,79,1.0],[117,-22,64,1.0],[117,-22,65,1.0],[117,-22,66,1.0],[117,-22,67,1.0],[117,-22,68,1.0],[117,-22,69,1.0],[117,-22,70,1.0],[117,-22,71,1.0],[117,-22,72,1.0],[117,-22,73,1.0],[117,-22,74,1.0],[117,-22,75,1.0],[117,-22,76,1.0],[117,-22,77,1.0],[117,-22,78,1.0],[117,-22,79,1.0],[117,-21,64,1.0],[117,-21,65,1.0],[117,-21,66,1.0],[117,-21,67,1.0],[117,-21,68,1.0],[117,-21,69,1.0],[117,-21,70,1.0],[117,-21,71,1.0],[117,-21,72,1.0],[117,-21,73,1.0],[117,-21,74,1.0],[117,-21,75,1.0],[117,-21,76,1.0],[117,-21,77,1.0],[117,-21,78,1.0],[117,-21,79,1.0],[117,-20,64,1.0],[117,-20,65,1.0],[117,-20,66,1.0],[117,-20,67,1.0],[117,-20,68,1.0],[117,-20,69,1.0],[117,-20,70,1.0],[117,-20,71,1.0],[117,-20,72,1.0],[117,-20,73,1.0],[117,-20,74,1.0],[117,-20,75,1.0],[117,-20,76,1.0],[117,-20,77,1.0],[117,-20,78,1.0],[117,-20,79,1.0],[117,-19,64,1.0],[117,-19,65,1.0],[117,-19,66,1.0],[117,-19,67,1.0],[117,-19,68,1.0],[117,-19,69,1.0],[117,-19,70,1.0],[117,-19,71,1.0],[117,-19,72,1.0],[117,-19,73,1.0],[117,-19,74,1.0],[117,-19,75,1.0],[117,-19,76,1.0],[117,-19,77,1.0],[117,-19,78,1.0],[117,-19,79,1.0],[117,-18,64,1.0],[117,-18,65,1.0],[117,-18,66,1.0],[117,-18,67,1.0],[117,-18,68,1.0],[117,-18,69,1.0],[117,-18,70,1.0],[117,-18,71,1.0],[117,-18,72,1.0],[117,-18,73,1.0],[117,-18,74,1.0],[117,-18,75,1.0],[117,-18,76,1.0],[117,-18,77,1.0],[117,-18,78,1.0],[117,-18,79,1.0],[117,-17,64,1.0],[117,-17,65,1.0],[117,-17,66,1.0],[117,-17,67,1.0],[117,-17,68,1.0],[117,-17,69,1.0],[117,-17,70,1.0],[117,-17,71,1.0],[117,-17,72,1.0],[117,-17,73,1.0],[117,-17,74,1.0],[117,-17,75,1.0],[117,-17,76,1.0],[117,-17,77,1.0],[117,-17,78,1.0],[117,-17,79,1.0],[117,-16,64,1.0],[117,-16,65,1.0],[117,-16,66,1.0],[117,-16,67,1.0],[117,-16,68,1.0],[117,-16,69,1.0],[117,-16,70,1.0],[117,-16,71,1.0],[117,-16,72,1.0],[117,-16,73,1.0],[117,-16,74,1.0],[117,-16,75,1.0],[117,-16,76,1.0],[117,-16,77,1.0],[117,-16,78,1.0],[117,-16,79,1.0],[117,-15,64,0.8192669889930259],[117,-15,65,0.9194148962958794],[117,-15,66,1.0],[117,-15,67,1.0],[117,-15,68,1.0],[117,-15,69,1.0],[117,-15,70,1.0],[117,-15,71,1.0],[117,-15,72,1.0],[117,-15,73,1.0],[117,-15,74,1.0],[117,-15,75,1.0],[117,-15,76,1.0],[117,-15,77,1.0],[117,-15,78,1.0],[117,-15,79,1.0],[117,-14,64,0.5325969481117588],[117,-14,65,0.608202348412237],[117,-14,66,0.6885813457106379],[117,-14,67,0.7735191120969025],[117,-14,68,0.8627766629848153],[117,-14,69,0.956094405491014],[117,-14,70,1.0],[117,-14,71,1.0],[117,-14,72,1.0],[117,-14,73,1.0],[117,-14,74,1.0],[117,-14,75,1.0],[117,-14,76,1.0],[117,-14,77,1.0],[117,-14,78,1.0],[117,-14,79,1.0],[117,-13,64,0.32207042211449244],[117,-13,65,0.3765775903637877],[117,-13,66,0.4353918001396601],[117,-13,67,0.4983690264590816],[117,-13,68,0.5653385938222732],[117,-13,69,0.6361065756424539],[117,-13,70,0.7104591870557112],[117,-13,71,0.7881661539016686],[117,-13,72,0.8689840413843378],[117,-13,73,0.952659526753108],[117,-13,74,1.0],[117,-13,75,1.0],[117,-13,76,1.0],[117,-13,77,1.0],[117,-13,78,1.0],[117,-13,79,1.0],[117,-12,64,0.1759338993103029],[117,-12,65,0.21278724159655188],[117,-12,66,0.25339827125359826],[117,-12,67,0.2976937992749378],[117,-12,68,0.34557159231010487],[117,-12,69,0.39690362567740517],[117,-12,70,0.4515393361911216],[117,-12,71,0.5093088578575816],[117,-12,72,0.5700262241774519],[117,-12,73,0.6334925215865499],[117,-12,74,0.6994989794596334],[117,-12,75,0.7678299831325761],[117,-12,76,0.8382659975260879],[117,-12,77,0.9105863901670808],[117,-12,78,0.9845721437449612],[117,-12,79,1.0],[117,-11,64,0.08243377212453142],[117,-11,65,0.10507782529827353],[117,-11,66,0.13084741281420614],[117,-11,67,0.1597402146856463],[117,-11,68,0.19172257276856738],[117,-11,69,0.22673259988958397],[117,-11,70,0.26468329524532264],[117,-11,71,0.3054656493908509],[117,-11,72,0.348951722782722],[117,-11,73,0.3949976826015008],[117,-11,74,0.4434467834368096],[117,-11,75,0.4941322784036187],[117,-11,76,0.5468802483413124],[117,-11,77,0.6015123379159497],[117,-11,78,0.6578483887316605],[117,-11,79,0.7157089609246104],[117,-10,64,0.029816336988230982],[117,-10,65,0.041695768284217116],[117,-10,66,0.055985781834362765],[117,-10,67,0.07275495970887898],[117,-10,68,0.0920383520215278],[117,-10,69,0.11384044470514511],[117,-10,70,0.13813814003802474],[117,-10,71,0.16488373350169067],[117,-10,72,0.19400787116401974],[117,-10,73,0.22542247250538963],[117,-10,74,0.25902360442901146],[117,-10,75,0.2946942931377212],[117,-10,76,0.3323072615973352],[117,-10,77,0.37172758143089557],[117,-10,78,0.4128152293186043],[117,-10,79,0.45542753928969915],[117,-9,64,0.022301442734343965],[117,-9,65,0.02559765192286248],[117,-9,66,0.028799334328100737],[117,-9,67,0.03190425941001088],[117,-9,68,0.034910157090736436],[117,-9,69,0.04647400855823478],[117,-9,70,0.060150848023930545],[117,-9,71,0.07581021645399592],[117,-9,72,0.09344190417924925],[117,-9,73,0.11301425453167195],[117,-9,74,0.13447693382407855],[117,-9,75,0.15776364665381262],[117,-9,76,0.1827947843193619],[117,-9,77,0.20947999521769517],[117,-9,78,0.23772066726618613],[117,-9,79,0.2674123136484174],[117,-8,64,0.01829492609881666],[117,-8,65,0.021560257382676376],[117,-8,66,0.02473474000315873],[117,-8,67,0.0278162149206672],[117,-8,68,0.030802472694445845],[117,-8,69,0.03369127029201746],[117,-8,70,0.0364803473685625],[117,-8,71,0.03916744201605065],[117,-8,72,0.04175030598238019],[117,-8,73,0.046020292305347474],[117,-8,74,0.058054163031582506],[117,-8,75,0.07158785792436642],[117,-8,76,0.0865904628195566],[117,-8,77,0.10301735270407981],[117,-8,78,0.12081260289331752],[117,-8,79,0.13991131098687676],[117,-7,64,0.014256753269624368],[117,-7,65,0.017489207280102184],[117,-7,66,0.020634468047800773],[117,-7,67,0.02369044964480089],[117,-7,68,0.026655005118307498],[117,-7,69,0.02952594354202008],[117,-7,70,0.03230104653765663],[117,-7,71,0.034978084266441244],[117,-7,72,0.03755483089081353],[117,-7,73,0.040029079506052626],[117,-7,74,0.04239865654196113],[117,-7,75,0.04466143563475597],[117,-7,76,0.046815350968855036],[117,-7,77,0.048858410088824016],[117,-7,78,0.05078870618128192],[117,-7,79,0.061172456337221244],[117,-6,64,0.010193825956734848],[117,-6,65,0.013391415880286764],[117,-6,66,0.016505440929541905],[117,-6,67,0.01953388981256348],[117,-6,68,0.022474679841287912],[117,-6,69,0.025325674205865893],[117,-6,70,0.028084698719798448],[117,-6,71,0.030749558035677145],[117,-6,72,0.03331805133178781],[117,-6,73,0.03578798746926822],[117,-6,74,0.03815719961996703],[117,-6,75,0.04042355936515162],[117,-6,76,0.042584990264751536],[117,-6,77,0.04463948089740234],[117,-6,78,0.046585097371089866],[117,-6,79,0.04841999530466396],[117,-5,64,0.006113076001871255],[117,-5,65,0.00927383097089967],[117,-5,66,0.012354618084204287],[117,-5,67,0.015353502120792575],[117,-5,68,0.018268466357137123],[117,-5,69,0.02109743004525918],[117,-5,70,0.023838265362674887],[117,-5,71,0.026488813834015273],[117,-5,72,0.02904690222457685],[117,-5,73,0.031510357905497284],[117,-5,74,0.033877023690697824],[117,-5,75,0.036144772145745505],[117,-5,76,0.03831151936831821],[117,-5,77,0.04037523824053955],[117,-5,78,0.042333971152981535],[117,-5,79,0.04418584220060678],[117,-4,64,0.002021454361463705],[117,-4,65,0.00514342281142869],[117,-4,66,0.008188984840862439],[117,-4,67,0.01115628264309907],[117,-4,68,0.014043367079271424],[117,-4,69,0.01684821534067253],[117,-4,70,0.019568748084475597],[117,-4,71,0.022202846042622126],[117,-4,72,0.024748366104136686],[117,-4,73,0.02720315687055949],[117,-4,74,0.0295650736846422],[117,-4,75,0.03183199313245838],[117,-4,76,0.03400182701861116],[117,-4,77,0.036072535814805226],[117,-4,78,0.03804214158158279],[117,-4,79,0.03990874036349301],[117,-3,64,-0.0020740788936812055],[117,-3,65,0.0010071741025118597],[117,-3,66,0.0040155423703815],[117,-3,67,0.006949246767344104],[117,-3,68,0.009806407277079356],[117,-3,69,0.012585060836506179],[117,-3,70,0.01528317863803616],[117,-3,71,0.01789868290691335],[117,-3,72,0.02042946315390152],[117,-3,73,0.022873391903006766],[117,-3,74,0.025228339894383396],[117,-3,75,0.027492190762573004],[117,-3,76,0.02966285518976023],[117,-3,77,0.03173828453431231],[117,-3,78,0.03371648393439964],[117,-3,79,0.03559552488697226],[117,-2,64,-0.0061665635619686035],[117,-2,65,-0.0031279290246643554],[117,-2,66,-1.5870134242227524E-4],[117,-2,67,0.0027394201605298873],[117,-2,68,0.00556462604367626],[117,-2,69,0.00831501472197204],[117,-2,70,0.010988609915222193],[117,-2,71,0.013583377574885508],[117,-2,72,0.016097242288567716],[117,-2,73,0.018528103161889603],[117,-2,74,0.020873849177878954],[117,-2,75,0.023132374034037388],[117,-2,76,0.025301590456762002],[117,-2,77,0.027379443993393336],[117,-2,78,0.029363926281683737],[117,-2,79,0.03125308779696241],[117,-1,64,-0.01024904727788667],[117,-1,65,-0.007254904998933144],[117,-1,66,-0.004326739503030044],[117,-1,67,-0.0014661692389209072],[117,-1,68,0.0013250682950802714],[117,-1,69,0.004045134647670867],[117,-1,70,0.006692107991520195],[117,-1,71,0.009264000180411847],[117,-1,72,0.011758773286836326],[117,-1,73,0.014174355619714515],[117,-1,74,0.016508657222403543],[117,-1,75,0.018759584851136595],[117,-1,76,0.020925056433575687],[117,-1,77,0.023003015007747915],[117,-1,78,0.024991442141161523],[117,-1,79,0.02688837083037715],[117,0,64,-0.014314592462143408],[117,0,65,-0.011366783779656414],[117,0,66,-0.008481573487854312],[117,0,67,-0.00566049820147968],[117,0,68,-0.0029052221991710675],[117,0,69,-2.1751922211402097E-4],[117,0,70,0.0024007452108593327],[117,0,71,0.004947630971524147],[117,0,72,0.007421139974137708],[117,0,73,0.009819232310618278],[117,0,74,0.01213984186917691],[117,0,75,0.01438089143655552],[117,0,76,0.01654030728354975],[117,0,77,0.018616033234087163],[117,0,78,0.02060604421765555],[117,0,79,0.022508359305360222],[117,1,64,-0.01835628225508175],[117,1,65,-0.015456612807194445],[117,1,66,-0.012616218801276065],[117,1,67,-0.009836554159433318],[117,1,68,-0.007119208753978291],[117,1,69,-0.004465890121424253],[117,1,70,-0.0018784056893509163],[117,1,71,6.413544836649451E-4],[117,1,72,0.0030914344553201606],[117,1,73,0.005469828633738974],[117,1,74,0.007774497498661041],[117,1,75,0.010003382809815976],[117,1,76,0.012154422302161572],[117,1,77,0.014225563868258774],[117,1,78,0.016214779227576498],[117,1,79,0.018120077083005608],[117,2,64,-0.022367225433360997],[117,2,65,-0.019517461933319803],[117,2,66,-0.016723710009070407],[117,2,67,-0.013987340132400633],[117,2,68,-0.011309866675196956],[117,2,69,-0.008692929558918303],[117,2,70,-0.006138276412956091],[117,2,71,-0.0036477452420774006],[117,2,72,-0.0012232476026831154],[117,2,73,0.0011332477117996231],[117,2,74,0.003419730476541101],[117,2,75,0.00563416433210398],[117,2,76,0.0077745015720827385],[117,2,77,0.00983869742186498],[117,2,78,0.011824723808302774],[117,2,79,0.01373058262057928],[117,3,64,-0.0041269290403529515],[117,3,65,-0.007583154748079495],[117,3,66,-0.012430805526300897],[117,3,67,-0.018105878625448567],[117,3,68,-0.015470187134722785],[117,3,69,-0.012891601158458499],[117,3,70,-0.010371806899570409],[117,3,71,-0.007912588395757099],[117,3,72,-0.005515810638214012],[117,3,73,-0.0031834031951014433],[117,3,74,-9.173443396179592E-4],[117,3,75,0.001280354317477042],[117,3,76,0.003407662690564396],[117,3,77,0.005462546577366625],[117,3,78,0.00744298151243971],[117,3,79,0.009346966116237171],[117,4,64,-4.484905431908255E-5],[117,4,65,-3.669256612867211E-4],[117,4,66,-0.001217400515913196],[117,4,67,-0.0028084181807578545],[117,4,68,-0.005315645584885141],[117,4,69,-0.0088808637014164],[117,4,70,-0.013614583670308602],[117,4,71,-0.01214610209038551],[117,4,72,-0.00977916181228286],[117,4,73,-0.0074730152205000275],[117,4,74,-0.005229606033043045],[117,4,75,-0.0030509182895499254],[117,4,76,-9.389614308621674E-4],[117,4,77,0.0011042441216721904],[117,4,78,0.003076680886954307],[117,4,79,0.004976347745231875],[117,5,64,7.131584372189491E-4],[117,5,65,1.5126323809301438E-4],[117,5,66,5.925997734089475E-6],[117,5,67,-4.262140349335883E-6],[117,5,68,-1.2238385278057052E-4],[117,5,69,-5.556567668839726E-4],[117,5,70,-0.0014779255822892025],[117,5,71,-0.0030321699385902645],[117,5,72,-0.005333013293569655],[117,5,73,-0.008469218686544853],[117,5,74,-0.009509928999740291],[117,5,75,-0.007352515170029043],[117,5,76,-0.005258223694356773],[117,5,77,-0.003229058041781356],[117,5,78,-0.0012670253628020642],[117,5,79,6.258769876227102E-4],[117,6,64,0.009829988351016734],[117,6,65,0.005654432518164915],[117,6,66,0.0029223200702978925],[117,6,67,0.0012829472283980184],[117,6,68,4.256853423028394E-4],[117,6,69,7.764777785379353E-5],[117,6,70,1.3192445380401782E-6],[117,6,71,-7.837450608001099E-6],[117,6,72,-1.2378271485531195E-4],[117,6,73,-4.922956140260215E-4],[117,6,74,-0.0012333501841870417],[117,6,75,-0.002443460103583047],[117,6,76,-0.00419798006025109],[117,6,77,-0.006553353072484224],[117,6,78,-0.005580960124204455],[117,6,79,-0.0036972669525320856],[117,7,64,0.03898843897761937],[117,7,65,0.027825505697976562],[117,7,66,0.019214830287585305],[117,7,67,0.0127363834097406],[117,7,68,0.008011860208647333],[117,7,69,0.004702472685041806],[117,7,70,0.0025066979211711958],[117,7,71,0.0011579968821107463],[117,7,72,4.2251807367434775E-4],[117,7,73,9.67997979838925E-5],[117,7,74,5.484117590062756E-6],[117,7,75,-9.45077831015479E-7],[117,7,76,-4.8388305753201266E-5],[117,7,77,-2.4131030348347124E-4],[117,7,78,-6.64863640580947E-4],[117,7,79,-0.001386947360119547],[117,8,64,0.0998712119258401],[117,8,65,0.07834730918848493],[117,8,66,0.06056640770302942],[117,8,67,0.046039121933327695],[117,8,68,0.034319340579720116],[117,8,69,0.0250021419139027],[117,8,70,0.01772165834935556],[117,8,71,0.012148904715945064],[117,8,72,0.007989584291021656],[117,8,73,0.004981886135533541],[117,8,74,0.0028942866924716384],[117,8,75,0.0015233679282356531],[117,8,76,6.916635450739881E-4],[117,8,77,2.455439673043795E-4],[117,8,78,5.31499112700945E-5],[117,8,79,2.3833969947457505E-6],[117,9,64,0.204160912070942],[117,9,65,0.16890257223723285],[117,9,66,0.13865990577888204],[117,9,67,0.1128741403119314],[117,9,68,0.09103122784846167],[117,9,69,0.07265988056150499],[117,9,70,0.05732954914905321],[117,9,71,0.04464835800783646],[117,9,72,0.03426101104104922],[117,9,73,0.02584668145576004],[117,9,74,0.019116898354211355],[117,9,75,0.013813442285916142],[117,9,76,0.009706261220210725],[117,9,77,0.0065914176225243416],[117,9,78,0.004289076475405072],[117,9,79,0.0026415431891137846],[117,10,64,0.363540047506546],[117,10,65,0.31117392687675677],[117,10,66,0.2651780803311418],[117,10,67,0.22492431798291593],[117,10,68,0.1898305249053177],[117,10,69,0.15935881479737896],[117,10,70,0.1330136195896635],[117,10,71,0.11033972894313597],[117,10,72,0.09092029323697536],[117,10,73,0.07437480320805402],[117,10,74,0.060357058893645135],[117,10,75,0.04855313993033099],[117,10,76,0.03867938860008881],[117,10,77,0.030480416287775893],[117,10,78,0.023727143221941895],[117,10,79,0.018214880530405986],[117,11,64,0.5896910295001514],[117,11,65,0.5168439078766228],[117,11,66,0.4518035894781259],[117,11,67,0.3938724362533654],[117,11,68,0.3424001360799434],[117,11,69,0.29678197180181703],[117,11,70,0.2564570195249424],[117,11,71,0.220906289867162],[117,11,72,0.18965082552959076],[117,11,73,0.1622497681589569],[117,11,74,0.13829840700028942],[117,11,75,0.11742622127874262],[117,11,76,0.09929492763265545],[117,11,77,0.08359654324344128],[117,11,78,0.0700514745649249],[117,11,79,0.05840664076997013],[117,12,64,0.8942961724523769],[117,12,65,0.7975949526991828],[117,12,66,0.7102189935927605],[117,12,67,0.6314011782489323],[117,12,68,0.5604228670866297],[117,12,69,0.49661227970790117],[117,12,70,0.43934279933164816],[117,12,71,0.3880312132204876],[117,12,72,0.3421359022392092],[117,12,73,0.3011549923207954],[117,12,74,0.26462448018768125],[117,12,75,0.2321163451526223],[117,12,76,0.20323665825218848],[117,12,77,0.17762369934027],[117,12,78,0.15494609207470048],[117,12,79,0.13490096600102272],[117,13,64,1.0],[117,13,65,1.0],[117,13,66,1.0],[117,13,67,0.9491931288663175],[117,13,68,0.8555814249733733],[117,13,69,0.7705325675471812],[117,13,70,0.6933539098518535],[117,13,71,0.6233975714779043],[117,13,72,0.5600587172913039],[117,13,73,0.5027737908840109],[117,13,74,0.45101871472242266],[117,13,75,0.40430706870342986],[117,13,76,0.3621882583018322],[117,13,77,0.32424568291869255],[117,13,78,0.2900949143940281],[117,13,79,0.25938189497382846],[117,14,64,1.0],[117,14,65,1.0],[117,14,66,1.0],[117,14,67,1.0],[117,14,68,1.0],[117,14,69,1.0],[117,14,70,1.0],[117,14,71,0.9386883370911473],[117,14,72,0.8551023641559067],[117,14,73,0.7787893781532554],[117,14,74,0.7091644455569922],[117,14,75,0.6456818473421629],[117,14,76,0.587833303459906],[117,14,77,0.5351461897319076],[117,14,78,0.48718175715796996],[117,14,79,0.4435333630124119],[117,15,64,1.0],[117,15,65,1.0],[117,15,66,1.0],[117,15,67,1.0],[117,15,68,1.0],[117,15,69,1.0],[117,15,70,1.0],[117,15,71,1.0],[117,15,72,1.0],[117,15,73,1.0],[117,15,74,1.0],[117,15,75,0.9679240346724954],[117,15,76,0.8918552671698154],[117,15,77,0.8220088128725898],[117,15,78,0.7578903329174124],[117,15,79,0.6990392019349139],[117,16,64,1.0],[117,16,65,1.0],[117,16,66,1.0],[117,16,67,1.0],[117,16,68,1.0],[117,16,69,1.0],[117,16,70,1.0],[117,16,71,1.0],[117,16,72,1.0],[117,16,73,1.0],[117,16,74,1.0],[117,16,75,1.0],[117,16,76,1.0],[117,16,77,1.0],[117,16,78,1.0],[117,16,79,1.0],[117,17,64,1.0],[117,17,65,1.0],[117,17,66,1.0],[117,17,67,1.0],[117,17,68,1.0],[117,17,69,1.0],[117,17,70,1.0],[117,17,71,1.0],[117,17,72,1.0],[117,17,73,1.0],[117,17,74,1.0],[117,17,75,1.0],[117,17,76,1.0],[117,17,77,1.0],[117,17,78,1.0],[117,17,79,1.0],[117,18,64,1.0],[117,18,65,1.0],[117,18,66,1.0],[117,18,67,1.0],[117,18,68,1.0],[117,18,69,1.0],[117,18,70,1.0],[117,18,71,1.0],[117,18,72,1.0],[117,18,73,1.0],[117,18,74,1.0],[117,18,75,1.0],[117,18,76,1.0],[117,18,77,1.0],[117,18,78,1.0],[117,18,79,1.0],[117,19,64,1.0],[117,19,65,1.0],[117,19,66,1.0],[117,19,67,1.0],[117,19,68,1.0],[117,19,69,1.0],[117,19,70,1.0],[117,19,71,1.0],[117,19,72,1.0],[117,19,73,1.0],[117,19,74,1.0],[117,19,75,1.0],[117,19,76,1.0],[117,19,77,1.0],[117,19,78,1.0],[117,19,79,1.0],[117,20,64,1.0],[117,20,65,1.0],[117,20,66,1.0],[117,20,67,1.0],[117,20,68,1.0],[117,20,69,1.0],[117,20,70,1.0],[117,20,71,1.0],[117,20,72,1.0],[117,20,73,1.0],[117,20,74,1.0],[117,20,75,1.0],[117,20,76,1.0],[117,20,77,1.0],[117,20,78,1.0],[117,20,79,1.0],[117,21,64,1.0],[117,21,65,1.0],[117,21,66,1.0],[117,21,67,1.0],[117,21,68,1.0],[117,21,69,1.0],[117,21,70,1.0],[117,21,71,1.0],[117,21,72,1.0],[117,21,73,1.0],[117,21,74,1.0],[117,21,75,1.0],[117,21,76,1.0],[117,21,77,1.0],[117,21,78,1.0],[117,21,79,1.0],[117,22,64,1.0],[117,22,65,1.0],[117,22,66,1.0],[117,22,67,1.0],[117,22,68,1.0],[117,22,69,1.0],[117,22,70,1.0],[117,22,71,1.0],[117,22,72,1.0],[117,22,73,1.0],[117,22,74,1.0],[117,22,75,1.0],[117,22,76,1.0],[117,22,77,1.0],[117,22,78,1.0],[117,22,79,1.0],[117,23,64,1.0],[117,23,65,1.0],[117,23,66,1.0],[117,23,67,1.0],[117,23,68,1.0],[117,23,69,1.0],[117,23,70,1.0],[117,23,71,1.0],[117,23,72,1.0],[117,23,73,1.0],[117,23,74,1.0],[117,23,75,1.0],[117,23,76,1.0],[117,23,77,1.0],[117,23,78,1.0],[117,23,79,1.0],[117,24,64,1.0],[117,24,65,1.0],[117,24,66,1.0],[117,24,67,1.0],[117,24,68,1.0],[117,24,69,1.0],[117,24,70,1.0],[117,24,71,1.0],[117,24,72,1.0],[117,24,73,1.0],[117,24,74,1.0],[117,24,75,1.0],[117,24,76,1.0],[117,24,77,1.0],[117,24,78,1.0],[117,24,79,1.0],[117,25,64,1.0],[117,25,65,1.0],[117,25,66,1.0],[117,25,67,1.0],[117,25,68,1.0],[117,25,69,1.0],[117,25,70,1.0],[117,25,71,1.0],[117,25,72,1.0],[117,25,73,1.0],[117,25,74,1.0],[117,25,75,1.0],[117,25,76,1.0],[117,25,77,1.0],[117,25,78,1.0],[117,25,79,1.0],[117,26,64,1.0],[117,26,65,1.0],[117,26,66,1.0],[117,26,67,1.0],[117,26,68,1.0],[117,26,69,1.0],[117,26,70,1.0],[117,26,71,1.0],[117,26,72,1.0],[117,26,73,1.0],[117,26,74,1.0],[117,26,75,1.0],[117,26,76,1.0],[117,26,77,1.0],[117,26,78,1.0],[117,26,79,1.0],[117,27,64,1.0],[117,27,65,1.0],[117,27,66,1.0],[117,27,67,1.0],[117,27,68,1.0],[117,27,69,1.0],[117,27,70,1.0],[117,27,71,1.0],[117,27,72,1.0],[117,27,73,1.0],[117,27,74,1.0],[117,27,75,1.0],[117,27,76,1.0],[117,27,77,1.0],[117,27,78,1.0],[117,27,79,1.0],[117,28,64,1.0],[117,28,65,1.0],[117,28,66,1.0],[117,28,67,1.0],[117,28,68,1.0],[117,28,69,1.0],[117,28,70,1.0],[117,28,71,1.0],[117,28,72,1.0],[117,28,73,1.0],[117,28,74,1.0],[117,28,75,1.0],[117,28,76,1.0],[117,28,77,1.0],[117,28,78,1.0],[117,28,79,1.0],[117,29,64,1.0],[117,29,65,1.0],[117,29,66,1.0],[117,29,67,1.0],[117,29,68,1.0],[117,29,69,1.0],[117,29,70,1.0],[117,29,71,1.0],[117,29,72,1.0],[117,29,73,1.0],[117,29,74,1.0],[117,29,75,1.0],[117,29,76,1.0],[117,29,77,1.0],[117,29,78,1.0],[117,29,79,1.0],[117,30,64,1.0],[117,30,65,1.0],[117,30,66,1.0],[117,30,67,1.0],[117,30,68,1.0],[117,30,69,1.0],[117,30,70,1.0],[117,30,71,1.0],[117,30,72,1.0],[117,30,73,1.0],[117,30,74,1.0],[117,30,75,1.0],[117,30,76,1.0],[117,30,77,1.0],[117,30,78,1.0],[117,30,79,1.0],[117,31,64,1.0],[117,31,65,1.0],[117,31,66,1.0],[117,31,67,1.0],[117,31,68,1.0],[117,31,69,1.0],[117,31,70,1.0],[117,31,71,1.0],[117,31,72,1.0],[117,31,73,1.0],[117,31,74,1.0],[117,31,75,1.0],[117,31,76,1.0],[117,31,77,1.0],[117,31,78,1.0],[117,31,79,1.0],[117,32,64,1.0],[117,32,65,1.0],[117,32,66,1.0],[117,32,67,1.0],[117,32,68,1.0],[117,32,69,1.0],[117,32,70,1.0],[117,32,71,1.0],[117,32,72,1.0],[117,32,73,1.0],[117,32,74,1.0],[117,32,75,1.0],[117,32,76,1.0],[117,32,77,1.0],[117,32,78,1.0],[117,32,79,1.0],[117,33,64,1.0],[117,33,65,1.0],[117,33,66,1.0],[117,33,67,1.0],[117,33,68,1.0],[117,33,69,1.0],[117,33,70,1.0],[117,33,71,1.0],[117,33,72,1.0],[117,33,73,1.0],[117,33,74,1.0],[117,33,75,1.0],[117,33,76,1.0],[117,33,77,1.0],[117,33,78,1.0],[117,33,79,1.0],[117,34,64,1.0],[117,34,65,1.0],[117,34,66,1.0],[117,34,67,1.0],[117,34,68,1.0],[117,34,69,1.0],[117,34,70,1.0],[117,34,71,1.0],[117,34,72,1.0],[117,34,73,1.0],[117,34,74,1.0],[117,34,75,1.0],[117,34,76,1.0],[117,34,77,1.0],[117,34,78,1.0],[117,34,79,1.0],[117,35,64,1.0],[117,35,65,1.0],[117,35,66,1.0],[117,35,67,1.0],[117,35,68,1.0],[117,35,69,1.0],[117,35,70,1.0],[117,35,71,1.0],[117,35,72,1.0],[117,35,73,1.0],[117,35,74,1.0],[117,35,75,1.0],[117,35,76,1.0],[117,35,77,1.0],[117,35,78,1.0],[117,35,79,1.0],[117,36,64,1.0],[117,36,65,1.0],[117,36,66,1.0],[117,36,67,1.0],[117,36,68,1.0],[117,36,69,1.0],[117,36,70,1.0],[117,36,71,1.0],[117,36,72,1.0],[117,36,73,1.0],[117,36,74,1.0],[117,36,75,1.0],[117,36,76,1.0],[117,36,77,1.0],[117,36,78,1.0],[117,36,79,1.0],[117,37,64,1.0],[117,37,65,1.0],[117,37,66,1.0],[117,37,67,1.0],[117,37,68,1.0],[117,37,69,1.0],[117,37,70,1.0],[117,37,71,1.0],[117,37,72,1.0],[117,37,73,1.0],[117,37,74,1.0],[117,37,75,1.0],[117,37,76,1.0],[117,37,77,1.0],[117,37,78,1.0],[117,37,79,1.0],[117,38,64,1.0],[117,38,65,1.0],[117,38,66,1.0],[117,38,67,1.0],[117,38,68,1.0],[117,38,69,1.0],[117,38,70,1.0],[117,38,71,1.0],[117,38,72,1.0],[117,38,73,1.0],[117,38,74,1.0],[117,38,75,1.0],[117,38,76,1.0],[117,38,77,1.0],[117,38,78,1.0],[117,38,79,1.0],[117,39,64,1.0],[117,39,65,1.0],[117,39,66,1.0],[117,39,67,1.0],[117,39,68,1.0],[117,39,69,1.0],[117,39,70,1.0],[117,39,71,1.0],[117,39,72,1.0],[117,39,73,1.0],[117,39,74,1.0],[117,39,75,1.0],[117,39,76,1.0],[117,39,77,1.0],[117,39,78,1.0],[117,39,79,1.0],[117,40,64,1.0],[117,40,65,1.0],[117,40,66,1.0],[117,40,67,1.0],[117,40,68,1.0],[117,40,69,1.0],[117,40,70,1.0],[117,40,71,1.0],[117,40,72,1.0],[117,40,73,1.0],[117,40,74,1.0],[117,40,75,1.0],[117,40,76,1.0],[117,40,77,1.0],[117,40,78,1.0],[117,40,79,1.0],[117,41,64,1.0],[117,41,65,1.0],[117,41,66,1.0],[117,41,67,1.0],[117,41,68,1.0],[117,41,69,1.0],[117,41,70,1.0],[117,41,71,1.0],[117,41,72,1.0],[117,41,73,1.0],[117,41,74,1.0],[117,41,75,1.0],[117,41,76,1.0],[117,41,77,1.0],[117,41,78,1.0],[117,41,79,1.0],[117,42,64,1.0],[117,42,65,1.0],[117,42,66,1.0],[117,42,67,1.0],[117,42,68,1.0],[117,42,69,1.0],[117,42,70,1.0],[117,42,71,1.0],[117,42,72,1.0],[117,42,73,1.0],[117,42,74,1.0],[117,42,75,1.0],[117,42,76,1.0],[117,42,77,1.0],[117,42,78,1.0],[117,42,79,1.0],[117,43,64,1.0],[117,43,65,1.0],[117,43,66,1.0],[117,43,67,1.0],[117,43,68,1.0],[117,43,69,1.0],[117,43,70,1.0],[117,43,71,1.0],[117,43,72,1.0],[117,43,73,1.0],[117,43,74,1.0],[117,43,75,1.0],[117,43,76,1.0],[117,43,77,1.0],[117,43,78,1.0],[117,43,79,1.0],[117,44,64,1.0],[117,44,65,1.0],[117,44,66,1.0],[117,44,67,1.0],[117,44,68,1.0],[117,44,69,1.0],[117,44,70,1.0],[117,44,71,1.0],[117,44,72,1.0],[117,44,73,1.0],[117,44,74,1.0],[117,44,75,1.0],[117,44,76,1.0],[117,44,77,1.0],[117,44,78,1.0],[117,44,79,1.0],[117,45,64,1.0],[117,45,65,1.0],[117,45,66,1.0],[117,45,67,1.0],[117,45,68,1.0],[117,45,69,1.0],[117,45,70,1.0],[117,45,71,1.0],[117,45,72,1.0],[117,45,73,1.0],[117,45,74,1.0],[117,45,75,1.0],[117,45,76,1.0],[117,45,77,1.0],[117,45,78,1.0],[117,45,79,1.0],[117,46,64,1.0],[117,46,65,1.0],[117,46,66,1.0],[117,46,67,1.0],[117,46,68,1.0],[117,46,69,1.0],[117,46,70,1.0],[117,46,71,1.0],[117,46,72,1.0],[117,46,73,1.0],[117,46,74,1.0],[117,46,75,1.0],[117,46,76,1.0],[117,46,77,1.0],[117,46,78,1.0],[117,46,79,1.0],[117,47,64,1.0],[117,47,65,1.0],[117,47,66,1.0],[117,47,67,1.0],[117,47,68,1.0],[117,47,69,1.0],[117,47,70,1.0],[117,47,71,1.0],[117,47,72,1.0],[117,47,73,1.0],[117,47,74,1.0],[117,47,75,1.0],[117,47,76,1.0],[117,47,77,1.0],[117,47,78,1.0],[117,47,79,1.0],[117,48,64,1.0],[117,48,65,1.0],[117,48,66,1.0],[117,48,67,1.0],[117,48,68,1.0],[117,48,69,1.0],[117,48,70,1.0],[117,48,71,1.0],[117,48,72,1.0],[117,48,73,1.0],[117,48,74,1.0],[117,48,75,1.0],[117,48,76,1.0],[117,48,77,1.0],[117,48,78,1.0],[117,48,79,1.0],[117,49,64,1.0],[117,49,65,1.0],[117,49,66,1.0],[117,49,67,1.0],[117,49,68,1.0],[117,49,69,1.0],[117,49,70,1.0],[117,49,71,1.0],[117,49,72,1.0],[117,49,73,1.0],[117,49,74,1.0],[117,49,75,1.0],[117,49,76,1.0],[117,49,77,1.0],[117,49,78,1.0],[117,49,79,1.0],[117,50,64,1.0],[117,50,65,1.0],[117,50,66,1.0],[117,50,67,1.0],[117,50,68,1.0],[117,50,69,1.0],[117,50,70,1.0],[117,50,71,1.0],[117,50,72,1.0],[117,50,73,1.0],[117,50,74,1.0],[117,50,75,1.0],[117,50,76,1.0],[117,50,77,1.0],[117,50,78,1.0],[117,50,79,1.0],[117,51,64,1.0],[117,51,65,1.0],[117,51,66,1.0],[117,51,67,1.0],[117,51,68,1.0],[117,51,69,1.0],[117,51,70,1.0],[117,51,71,1.0],[117,51,72,1.0],[117,51,73,1.0],[117,51,74,1.0],[117,51,75,1.0],[117,51,76,1.0],[117,51,77,1.0],[117,51,78,1.0],[117,51,79,1.0],[117,52,64,1.0],[117,52,65,1.0],[117,52,66,1.0],[117,52,67,1.0],[117,52,68,1.0],[117,52,69,1.0],[117,52,70,1.0],[117,52,71,1.0],[117,52,72,1.0],[117,52,73,1.0],[117,52,74,1.0],[117,52,75,1.0],[117,52,76,1.0],[117,52,77,1.0],[117,52,78,1.0],[117,52,79,1.0],[117,53,64,1.0],[117,53,65,1.0],[117,53,66,1.0],[117,53,67,1.0],[117,53,68,1.0],[117,53,69,1.0],[117,53,70,1.0],[117,53,71,1.0],[117,53,72,1.0],[117,53,73,1.0],[117,53,74,1.0],[117,53,75,1.0],[117,53,76,1.0],[117,53,77,1.0],[117,53,78,1.0],[117,53,79,1.0],[117,54,64,1.0],[117,54,65,1.0],[117,54,66,1.0],[117,54,67,1.0],[117,54,68,1.0],[117,54,69,1.0],[117,54,70,1.0],[117,54,71,1.0],[117,54,72,1.0],[117,54,73,1.0],[117,54,74,1.0],[117,54,75,1.0],[117,54,76,1.0],[117,54,77,1.0],[117,54,78,1.0],[117,54,79,1.0],[117,55,64,1.0],[117,55,65,1.0],[117,55,66,1.0],[117,55,67,1.0],[117,55,68,1.0],[117,55,69,1.0],[117,55,70,1.0],[117,55,71,1.0],[117,55,72,1.0],[117,55,73,1.0],[117,55,74,1.0],[117,55,75,1.0],[117,55,76,1.0],[117,55,77,1.0],[117,55,78,1.0],[117,55,79,1.0],[117,56,64,1.0],[117,56,65,1.0],[117,56,66,1.0],[117,56,67,1.0],[117,56,68,1.0],[117,56,69,1.0],[117,56,70,1.0],[117,56,71,1.0],[117,56,72,1.0],[117,56,73,1.0],[117,56,74,1.0],[117,56,75,1.0],[117,56,76,1.0],[117,56,77,1.0],[117,56,78,1.0],[117,56,79,1.0],[117,57,64,1.0],[117,57,65,1.0],[117,57,66,1.0],[117,57,67,1.0],[117,57,68,1.0],[117,57,69,1.0],[117,57,70,1.0],[117,57,71,1.0],[117,57,72,1.0],[117,57,73,1.0],[117,57,74,1.0],[117,57,75,1.0],[117,57,76,1.0],[117,57,77,1.0],[117,57,78,1.0],[117,57,79,1.0],[117,58,64,1.0],[117,58,65,1.0],[117,58,66,1.0],[117,58,67,1.0],[117,58,68,1.0],[117,58,69,1.0],[117,58,70,1.0],[117,58,71,1.0],[117,58,72,1.0],[117,58,73,1.0],[117,58,74,1.0],[117,58,75,1.0],[117,58,76,1.0],[117,58,77,1.0],[117,58,78,1.0],[117,58,79,1.0],[117,59,64,1.0],[117,59,65,1.0],[117,59,66,1.0],[117,59,67,1.0],[117,59,68,1.0],[117,59,69,1.0],[117,59,70,1.0],[117,59,71,1.0],[117,59,72,1.0],[117,59,73,1.0],[117,59,74,1.0],[117,59,75,1.0],[117,59,76,1.0],[117,59,77,1.0],[117,59,78,1.0],[117,59,79,1.0],[117,60,64,1.0],[117,60,65,1.0],[117,60,66,1.0],[117,60,67,1.0],[117,60,68,1.0],[117,60,69,1.0],[117,60,70,1.0],[117,60,71,1.0],[117,60,72,1.0],[117,60,73,1.0],[117,60,74,1.0],[117,60,75,1.0],[117,60,76,1.0],[117,60,77,1.0],[117,60,78,1.0],[117,60,79,1.0],[117,61,64,1.0],[117,61,65,1.0],[117,61,66,1.0],[117,61,67,1.0],[117,61,68,1.0],[117,61,69,1.0],[117,61,70,1.0],[117,61,71,1.0],[117,61,72,1.0],[117,61,73,1.0],[117,61,74,1.0],[117,61,75,1.0],[117,61,76,1.0],[117,61,77,1.0],[117,61,78,1.0],[117,61,79,1.0],[117,62,64,1.0],[117,62,65,1.0],[117,62,66,1.0],[117,62,67,1.0],[117,62,68,1.0],[117,62,69,1.0],[117,62,70,1.0],[117,62,71,1.0],[117,62,72,1.0],[117,62,73,1.0],[117,62,74,1.0],[117,62,75,1.0],[117,62,76,1.0],[117,62,77,1.0],[117,62,78,1.0],[117,62,79,1.0],[117,63,64,1.0],[117,63,65,1.0],[117,63,66,1.0],[117,63,67,1.0],[117,63,68,1.0],[117,63,69,1.0],[117,63,70,1.0],[117,63,71,1.0],[117,63,72,1.0],[117,63,73,1.0],[117,63,74,1.0],[117,63,75,1.0],[117,63,76,1.0],[117,63,77,1.0],[117,63,78,1.0],[117,63,79,1.0],[117,64,64,1.0],[117,64,65,1.0],[117,64,66,1.0],[117,64,67,1.0],[117,64,68,1.0],[117,64,69,1.0],[117,64,70,1.0],[117,64,71,1.0],[117,64,72,1.0],[117,64,73,1.0],[117,64,74,1.0],[117,64,75,1.0],[117,64,76,1.0],[117,64,77,1.0],[117,64,78,1.0],[117,64,79,1.0],[117,65,64,1.0],[117,65,65,1.0],[117,65,66,1.0],[117,65,67,1.0],[117,65,68,1.0],[117,65,69,1.0],[117,65,70,1.0],[117,65,71,1.0],[117,65,72,1.0],[117,65,73,1.0],[117,65,74,1.0],[117,65,75,1.0],[117,65,76,1.0],[117,65,77,1.0],[117,65,78,1.0],[117,65,79,1.0],[117,66,64,1.0],[117,66,65,1.0],[117,66,66,1.0],[117,66,67,1.0],[117,66,68,1.0],[117,66,69,1.0],[117,66,70,1.0],[117,66,71,1.0],[117,66,72,1.0],[117,66,73,1.0],[117,66,74,1.0],[117,66,75,1.0],[117,66,76,1.0],[117,66,77,1.0],[117,66,78,1.0],[117,66,79,1.0],[117,67,64,1.0],[117,67,65,1.0],[117,67,66,1.0],[117,67,67,1.0],[117,67,68,1.0],[117,67,69,1.0],[117,67,70,1.0],[117,67,71,1.0],[117,67,72,1.0],[117,67,73,1.0],[117,67,74,1.0],[117,67,75,1.0],[117,67,76,1.0],[117,67,77,1.0],[117,67,78,1.0],[117,67,79,1.0],[117,68,64,1.0],[117,68,65,1.0],[117,68,66,1.0],[117,68,67,1.0],[117,68,68,1.0],[117,68,69,1.0],[117,68,70,1.0],[117,68,71,1.0],[117,68,72,1.0],[117,68,73,1.0],[117,68,74,1.0],[117,68,75,1.0],[117,68,76,1.0],[117,68,77,1.0],[117,68,78,1.0],[117,68,79,1.0],[117,69,64,1.0],[117,69,65,1.0],[117,69,66,1.0],[117,69,67,1.0],[117,69,68,1.0],[117,69,69,1.0],[117,69,70,1.0],[117,69,71,1.0],[117,69,72,1.0],[117,69,73,1.0],[117,69,74,1.0],[117,69,75,1.0],[117,69,76,1.0],[117,69,77,1.0],[117,69,78,1.0],[117,69,79,1.0],[117,70,64,1.0],[117,70,65,1.0],[117,70,66,1.0],[117,70,67,1.0],[117,70,68,1.0],[117,70,69,1.0],[117,70,70,1.0],[117,70,71,1.0],[117,70,72,1.0],[117,70,73,1.0],[117,70,74,1.0],[117,70,75,1.0],[117,70,76,1.0],[117,70,77,1.0],[117,70,78,1.0],[117,70,79,1.0],[117,71,64,1.0],[117,71,65,1.0],[117,71,66,1.0],[117,71,67,1.0],[117,71,68,1.0],[117,71,69,1.0],[117,71,70,1.0],[117,71,71,1.0],[117,71,72,1.0],[117,71,73,1.0],[117,71,74,1.0],[117,71,75,1.0],[117,71,76,1.0],[117,71,77,1.0],[117,71,78,1.0],[117,71,79,1.0],[117,72,64,1.0],[117,72,65,1.0],[117,72,66,1.0],[117,72,67,1.0],[117,72,68,1.0],[117,72,69,1.0],[117,72,70,1.0],[117,72,71,1.0],[117,72,72,1.0],[117,72,73,1.0],[117,72,74,1.0],[117,72,75,1.0],[117,72,76,1.0],[117,72,77,1.0],[117,72,78,1.0],[117,72,79,1.0],[117,73,64,1.0],[117,73,65,1.0],[117,73,66,1.0],[117,73,67,1.0],[117,73,68,1.0],[117,73,69,1.0],[117,73,70,1.0],[117,73,71,1.0],[117,73,72,1.0],[117,73,73,1.0],[117,73,74,1.0],[117,73,75,1.0],[117,73,76,1.0],[117,73,77,1.0],[117,73,78,1.0],[117,73,79,1.0],[117,74,64,1.0],[117,74,65,1.0],[117,74,66,1.0],[117,74,67,1.0],[117,74,68,1.0],[117,74,69,1.0],[117,74,70,1.0],[117,74,71,1.0],[117,74,72,1.0],[117,74,73,1.0],[117,74,74,1.0],[117,74,75,1.0],[117,74,76,1.0],[117,74,77,1.0],[117,74,78,1.0],[117,74,79,1.0],[117,75,64,1.0],[117,75,65,1.0],[117,75,66,1.0],[117,75,67,1.0],[117,75,68,1.0],[117,75,69,1.0],[117,75,70,1.0],[117,75,71,1.0],[117,75,72,1.0],[117,75,73,1.0],[117,75,74,1.0],[117,75,75,1.0],[117,75,76,1.0],[117,75,77,1.0],[117,75,78,1.0],[117,75,79,1.0],[117,76,64,1.0],[117,76,65,1.0],[117,76,66,1.0],[117,76,67,1.0],[117,76,68,1.0],[117,76,69,1.0],[117,76,70,1.0],[117,76,71,1.0],[117,76,72,1.0],[117,76,73,1.0],[117,76,74,1.0],[117,76,75,1.0],[117,76,76,1.0],[117,76,77,1.0],[117,76,78,1.0],[117,76,79,1.0],[117,77,64,1.0],[117,77,65,1.0],[117,77,66,1.0],[117,77,67,1.0],[117,77,68,1.0],[117,77,69,1.0],[117,77,70,1.0],[117,77,71,1.0],[117,77,72,1.0],[117,77,73,1.0],[117,77,74,1.0],[117,77,75,1.0],[117,77,76,1.0],[117,77,77,1.0],[117,77,78,1.0],[117,77,79,1.0],[117,78,64,1.0],[117,78,65,1.0],[117,78,66,1.0],[117,78,67,1.0],[117,78,68,1.0],[117,78,69,1.0],[117,78,70,1.0],[117,78,71,1.0],[117,78,72,1.0],[117,78,73,1.0],[117,78,74,1.0],[117,78,75,1.0],[117,78,76,1.0],[117,78,77,1.0],[117,78,78,1.0],[117,78,79,1.0],[117,79,64,1.0],[117,79,65,1.0],[117,79,66,1.0],[117,79,67,1.0],[117,79,68,1.0],[117,79,69,1.0],[117,79,70,1.0],[117,79,71,1.0],[117,79,72,1.0],[117,79,73,1.0],[117,79,74,1.0],[117,79,75,1.0],[117,79,76,1.0],[117,79,77,1.0],[117,79,78,1.0],[117,79,79,1.0],[117,80,64,1.0],[117,80,65,1.0],[117,80,66,1.0],[117,80,67,1.0],[117,80,68,1.0],[117,80,69,1.0],[117,80,70,1.0],[117,80,71,1.0],[117,80,72,1.0],[117,80,73,1.0],[117,80,74,1.0],[117,80,75,1.0],[117,80,76,1.0],[117,80,77,1.0],[117,80,78,1.0],[117,80,79,1.0],[117,81,64,1.0],[117,81,65,1.0],[117,81,66,1.0],[117,81,67,1.0],[117,81,68,1.0],[117,81,69,1.0],[117,81,70,1.0],[117,81,71,1.0],[117,81,72,1.0],[117,81,73,1.0],[117,81,74,1.0],[117,81,75,1.0],[117,81,76,1.0],[117,81,77,1.0],[117,81,78,1.0],[117,81,79,1.0],[117,82,64,1.0],[117,82,65,1.0],[117,82,66,1.0],[117,82,67,1.0],[117,82,68,1.0],[117,82,69,1.0],[117,82,70,1.0],[117,82,71,1.0],[117,82,72,1.0],[117,82,73,1.0],[117,82,74,1.0],[117,82,75,1.0],[117,82,76,1.0],[117,82,77,1.0],[117,82,78,1.0],[117,82,79,1.0],[117,83,64,1.0],[117,83,65,1.0],[117,83,66,1.0],[117,83,67,1.0],[117,83,68,1.0],[117,83,69,1.0],[117,83,70,1.0],[117,83,71,1.0],[117,83,72,1.0],[117,83,73,1.0],[117,83,74,1.0],[117,83,75,1.0],[117,83,76,1.0],[117,83,77,1.0],[117,83,78,1.0],[117,83,79,1.0],[117,84,64,1.0],[117,84,65,1.0],[117,84,66,1.0],[117,84,67,1.0],[117,84,68,1.0],[117,84,69,1.0],[117,84,70,1.0],[117,84,71,1.0],[117,84,72,1.0],[117,84,73,1.0],[117,84,74,1.0],[117,84,75,1.0],[117,84,76,1.0],[117,84,77,1.0],[117,84,78,1.0],[117,84,79,1.0],[117,85,64,1.0],[117,85,65,1.0],[117,85,66,1.0],[117,85,67,1.0],[117,85,68,1.0],[117,85,69,1.0],[117,85,70,1.0],[117,85,71,1.0],[117,85,72,1.0],[117,85,73,1.0],[117,85,74,1.0],[117,85,75,1.0],[117,85,76,1.0],[117,85,77,1.0],[117,85,78,1.0],[117,85,79,1.0],[117,86,64,1.0],[117,86,65,1.0],[117,86,66,1.0],[117,86,67,1.0],[117,86,68,1.0],[117,86,69,1.0],[117,86,70,1.0],[117,86,71,1.0],[117,86,72,1.0],[117,86,73,1.0],[117,86,74,1.0],[117,86,75,1.0],[117,86,76,1.0],[117,86,77,1.0],[117,86,78,1.0],[117,86,79,1.0],[117,87,64,1.0],[117,87,65,1.0],[117,87,66,1.0],[117,87,67,1.0],[117,87,68,1.0],[117,87,69,1.0],[117,87,70,1.0],[117,87,71,1.0],[117,87,72,1.0],[117,87,73,1.0],[117,87,74,1.0],[117,87,75,1.0],[117,87,76,1.0],[117,87,77,1.0],[117,87,78,1.0],[117,87,79,1.0],[117,88,64,1.0],[117,88,65,1.0],[117,88,66,1.0],[117,88,67,1.0],[117,88,68,1.0],[117,88,69,1.0],[117,88,70,1.0],[117,88,71,1.0],[117,88,72,1.0],[117,88,73,1.0],[117,88,74,1.0],[117,88,75,1.0],[117,88,76,1.0],[117,88,77,1.0],[117,88,78,1.0],[117,88,79,1.0],[117,89,64,1.0],[117,89,65,1.0],[117,89,66,1.0],[117,89,67,1.0],[117,89,68,1.0],[117,89,69,1.0],[117,89,70,1.0],[117,89,71,1.0],[117,89,72,1.0],[117,89,73,1.0],[117,89,74,1.0],[117,89,75,1.0],[117,89,76,1.0],[117,89,77,1.0],[117,89,78,1.0],[117,89,79,1.0],[117,90,64,1.0],[117,90,65,1.0],[117,90,66,1.0],[117,90,67,1.0],[117,90,68,1.0],[117,90,69,1.0],[117,90,70,1.0],[117,90,71,1.0],[117,90,72,1.0],[117,90,73,1.0],[117,90,74,1.0],[117,90,75,1.0],[117,90,76,1.0],[117,90,77,1.0],[117,90,78,1.0],[117,90,79,1.0],[117,91,64,1.0],[117,91,65,1.0],[117,91,66,1.0],[117,91,67,1.0],[117,91,68,1.0],[117,91,69,1.0],[117,91,70,1.0],[117,91,71,1.0],[117,91,72,1.0],[117,91,73,1.0],[117,91,74,1.0],[117,91,75,1.0],[117,91,76,1.0],[117,91,77,1.0],[117,91,78,1.0],[117,91,79,1.0],[117,92,64,1.0],[117,92,65,1.0],[117,92,66,1.0],[117,92,67,1.0],[117,92,68,1.0],[117,92,69,1.0],[117,92,70,1.0],[117,92,71,1.0],[117,92,72,1.0],[117,92,73,1.0],[117,92,74,1.0],[117,92,75,1.0],[117,92,76,1.0],[117,92,77,1.0],[117,92,78,1.0],[117,92,79,1.0],[117,93,64,1.0],[117,93,65,1.0],[117,93,66,1.0],[117,93,67,1.0],[117,93,68,1.0],[117,93,69,1.0],[117,93,70,1.0],[117,93,71,1.0],[117,93,72,1.0],[117,93,73,1.0],[117,93,74,1.0],[117,93,75,1.0],[117,93,76,1.0],[117,93,77,1.0],[117,93,78,1.0],[117,93,79,1.0],[117,94,64,1.0],[117,94,65,1.0],[117,94,66,1.0],[117,94,67,1.0],[117,94,68,1.0],[117,94,69,1.0],[117,94,70,1.0],[117,94,71,1.0],[117,94,72,1.0],[117,94,73,1.0],[117,94,74,1.0],[117,94,75,1.0],[117,94,76,1.0],[117,94,77,1.0],[117,94,78,1.0],[117,94,79,1.0],[117,95,64,1.0],[117,95,65,1.0],[117,95,66,1.0],[117,95,67,1.0],[117,95,68,1.0],[117,95,69,1.0],[117,95,70,1.0],[117,95,71,1.0],[117,95,72,1.0],[117,95,73,1.0],[117,95,74,1.0],[117,95,75,1.0],[117,95,76,1.0],[117,95,77,1.0],[117,95,78,1.0],[117,95,79,1.0],[117,96,64,1.0],[117,96,65,1.0],[117,96,66,1.0],[117,96,67,1.0],[117,96,68,1.0],[117,96,69,1.0],[117,96,70,1.0],[117,96,71,1.0],[117,96,72,1.0],[117,96,73,1.0],[117,96,74,1.0],[117,96,75,1.0],[117,96,76,1.0],[117,96,77,1.0],[117,96,78,1.0],[117,96,79,1.0],[117,97,64,1.0],[117,97,65,1.0],[117,97,66,1.0],[117,97,67,1.0],[117,97,68,1.0],[117,97,69,1.0],[117,97,70,1.0],[117,97,71,1.0],[117,97,72,1.0],[117,97,73,1.0],[117,97,74,1.0],[117,97,75,1.0],[117,97,76,1.0],[117,97,77,1.0],[117,97,78,1.0],[117,97,79,1.0],[117,98,64,1.0],[117,98,65,1.0],[117,98,66,1.0],[117,98,67,1.0],[117,98,68,1.0],[117,98,69,1.0],[117,98,70,1.0],[117,98,71,1.0],[117,98,72,1.0],[117,98,73,1.0],[117,98,74,1.0],[117,98,75,1.0],[117,98,76,1.0],[117,98,77,1.0],[117,98,78,1.0],[117,98,79,1.0],[117,99,64,1.0],[117,99,65,1.0],[117,99,66,1.0],[117,99,67,1.0],[117,99,68,1.0],[117,99,69,1.0],[117,99,70,1.0],[117,99,71,1.0],[117,99,72,1.0],[117,99,73,1.0],[117,99,74,1.0],[117,99,75,1.0],[117,99,76,1.0],[117,99,77,1.0],[117,99,78,1.0],[117,99,79,1.0],[117,100,64,1.0],[117,100,65,1.0],[117,100,66,1.0],[117,100,67,1.0],[117,100,68,1.0],[117,100,69,1.0],[117,100,70,1.0],[117,100,71,1.0],[117,100,72,1.0],[117,100,73,1.0],[117,100,74,1.0],[117,100,75,1.0],[117,100,76,1.0],[117,100,77,1.0],[117,100,78,1.0],[117,100,79,1.0],[117,101,64,1.0],[117,101,65,1.0],[117,101,66,1.0],[117,101,67,1.0],[117,101,68,1.0],[117,101,69,1.0],[117,101,70,1.0],[117,101,71,1.0],[117,101,72,1.0],[117,101,73,1.0],[117,101,74,1.0],[117,101,75,1.0],[117,101,76,1.0],[117,101,77,1.0],[117,101,78,1.0],[117,101,79,1.0],[117,102,64,1.0],[117,102,65,1.0],[117,102,66,1.0],[117,102,67,1.0],[117,102,68,1.0],[117,102,69,1.0],[117,102,70,1.0],[117,102,71,1.0],[117,102,72,1.0],[117,102,73,1.0],[117,102,74,1.0],[117,102,75,1.0],[117,102,76,1.0],[117,102,77,1.0],[117,102,78,1.0],[117,102,79,1.0],[117,103,64,1.0],[117,103,65,1.0],[117,103,66,1.0],[117,103,67,1.0],[117,103,68,1.0],[117,103,69,1.0],[117,103,70,1.0],[117,103,71,1.0],[117,103,72,1.0],[117,103,73,1.0],[117,103,74,1.0],[117,103,75,1.0],[117,103,76,1.0],[117,103,77,1.0],[117,103,78,1.0],[117,103,79,1.0],[117,104,64,1.0],[117,104,65,1.0],[117,104,66,1.0],[117,104,67,1.0],[117,104,68,1.0],[117,104,69,1.0],[117,104,70,1.0],[117,104,71,1.0],[117,104,72,1.0],[117,104,73,1.0],[117,104,74,1.0],[117,104,75,1.0],[117,104,76,1.0],[117,104,77,1.0],[117,104,78,1.0],[117,104,79,1.0],[117,105,64,1.0],[117,105,65,1.0],[117,105,66,1.0],[117,105,67,1.0],[117,105,68,1.0],[117,105,69,1.0],[117,105,70,1.0],[117,105,71,1.0],[117,105,72,1.0],[117,105,73,1.0],[117,105,74,1.0],[117,105,75,1.0],[117,105,76,1.0],[117,105,77,1.0],[117,105,78,1.0],[117,105,79,1.0],[117,106,64,1.0],[117,106,65,1.0],[117,106,66,1.0],[117,106,67,1.0],[117,106,68,1.0],[117,106,69,1.0],[117,106,70,1.0],[117,106,71,1.0],[117,106,72,1.0],[117,106,73,1.0],[117,106,74,1.0],[117,106,75,1.0],[117,106,76,1.0],[117,106,77,1.0],[117,106,78,1.0],[117,106,79,1.0],[117,107,64,1.0],[117,107,65,1.0],[117,107,66,1.0],[117,107,67,1.0],[117,107,68,1.0],[117,107,69,1.0],[117,107,70,1.0],[117,107,71,1.0],[117,107,72,1.0],[117,107,73,1.0],[117,107,74,1.0],[117,107,75,1.0],[117,107,76,1.0],[117,107,77,1.0],[117,107,78,1.0],[117,107,79,1.0],[117,108,64,1.0],[117,108,65,1.0],[117,108,66,1.0],[117,108,67,1.0],[117,108,68,1.0],[117,108,69,1.0],[117,108,70,1.0],[117,108,71,1.0],[117,108,72,1.0],[117,108,73,1.0],[117,108,74,1.0],[117,108,75,1.0],[117,108,76,1.0],[117,108,77,1.0],[117,108,78,1.0],[117,108,79,1.0],[117,109,64,1.0],[117,109,65,1.0],[117,109,66,1.0],[117,109,67,1.0],[117,109,68,1.0],[117,109,69,1.0],[117,109,70,1.0],[117,109,71,1.0],[117,109,72,1.0],[117,109,73,1.0],[117,109,74,1.0],[117,109,75,1.0],[117,109,76,1.0],[117,109,77,1.0],[117,109,78,1.0],[117,109,79,1.0],[117,110,64,1.0],[117,110,65,1.0],[117,110,66,1.0],[117,110,67,1.0],[117,110,68,1.0],[117,110,69,1.0],[117,110,70,1.0],[117,110,71,1.0],[117,110,72,1.0],[117,110,73,1.0],[117,110,74,1.0],[117,110,75,1.0],[117,110,76,1.0],[117,110,77,1.0],[117,110,78,1.0],[117,110,79,1.0],[117,111,64,1.0],[117,111,65,1.0],[117,111,66,1.0],[117,111,67,1.0],[117,111,68,1.0],[117,111,69,1.0],[117,111,70,1.0],[117,111,71,1.0],[117,111,72,1.0],[117,111,73,1.0],[117,111,74,1.0],[117,111,75,1.0],[117,111,76,1.0],[117,111,77,1.0],[117,111,78,1.0],[117,111,79,1.0],[117,112,64,1.0],[117,112,65,1.0],[117,112,66,1.0],[117,112,67,1.0],[117,112,68,1.0],[117,112,69,1.0],[117,112,70,1.0],[117,112,71,1.0],[117,112,72,1.0],[117,112,73,1.0],[117,112,74,1.0],[117,112,75,1.0],[117,112,76,1.0],[117,112,77,1.0],[117,112,78,1.0],[117,112,79,1.0],[117,113,64,1.0],[117,113,65,1.0],[117,113,66,1.0],[117,113,67,1.0],[117,113,68,1.0],[117,113,69,1.0],[117,113,70,1.0],[117,113,71,1.0],[117,113,72,1.0],[117,113,73,1.0],[117,113,74,1.0],[117,113,75,1.0],[117,113,76,1.0],[117,113,77,1.0],[117,113,78,1.0],[117,113,79,1.0],[117,114,64,1.0],[117,114,65,1.0],[117,114,66,1.0],[117,114,67,1.0],[117,114,68,1.0],[117,114,69,1.0],[117,114,70,1.0],[117,114,71,1.0],[117,114,72,1.0],[117,114,73,1.0],[117,114,74,1.0],[117,114,75,1.0],[117,114,76,1.0],[117,114,77,1.0],[117,114,78,1.0],[117,114,79,1.0],[117,115,64,1.0],[117,115,65,1.0],[117,115,66,1.0],[117,115,67,1.0],[117,115,68,1.0],[117,115,69,1.0],[117,115,70,1.0],[117,115,71,1.0],[117,115,72,1.0],[117,115,73,1.0],[117,115,74,1.0],[117,115,75,1.0],[117,115,76,1.0],[117,115,77,1.0],[117,115,78,1.0],[117,115,79,1.0],[117,116,64,1.0],[117,116,65,1.0],[117,116,66,1.0],[117,116,67,1.0],[117,116,68,1.0],[117,116,69,1.0],[117,116,70,1.0],[117,116,71,1.0],[117,116,72,1.0],[117,116,73,1.0],[117,116,74,1.0],[117,116,75,1.0],[117,116,76,1.0],[117,116,77,1.0],[117,116,78,1.0],[117,116,79,1.0],[117,117,64,1.0],[117,117,65,1.0],[117,117,66,1.0],[117,117,67,1.0],[117,117,68,1.0],[117,117,69,1.0],[117,117,70,1.0],[117,117,71,1.0],[117,117,72,1.0],[117,117,73,1.0],[117,117,74,1.0],[117,117,75,1.0],[117,117,76,1.0],[117,117,77,1.0],[117,117,78,1.0],[117,117,79,1.0],[117,118,64,1.0],[117,118,65,1.0],[117,118,66,1.0],[117,118,67,1.0],[117,118,68,1.0],[117,118,69,1.0],[117,118,70,1.0],[117,118,71,1.0],[117,118,72,1.0],[117,118,73,1.0],[117,118,74,1.0],[117,118,75,1.0],[117,118,76,1.0],[117,118,77,1.0],[117,118,78,1.0],[117,118,79,1.0],[117,119,64,1.0],[117,119,65,1.0],[117,119,66,1.0],[117,119,67,1.0],[117,119,68,1.0],[117,119,69,1.0],[117,119,70,1.0],[117,119,71,1.0],[117,119,72,1.0],[117,119,73,1.0],[117,119,74,1.0],[117,119,75,1.0],[117,119,76,1.0],[117,119,77,1.0],[117,119,78,1.0],[117,119,79,1.0],[117,120,64,1.0],[117,120,65,1.0],[117,120,66,1.0],[117,120,67,1.0],[117,120,68,1.0],[117,120,69,1.0],[117,120,70,1.0],[117,120,71,1.0],[117,120,72,1.0],[117,120,73,1.0],[117,120,74,1.0],[117,120,75,1.0],[117,120,76,1.0],[117,120,77,1.0],[117,120,78,1.0],[117,120,79,1.0],[117,121,64,1.0],[117,121,65,1.0],[117,121,66,1.0],[117,121,67,1.0],[117,121,68,1.0],[117,121,69,1.0],[117,121,70,1.0],[117,121,71,1.0],[117,121,72,1.0],[117,121,73,1.0],[117,121,74,1.0],[117,121,75,1.0],[117,121,76,1.0],[117,121,77,1.0],[117,121,78,1.0],[117,121,79,1.0],[117,122,64,1.0],[117,122,65,1.0],[117,122,66,1.0],[117,122,67,1.0],[117,122,68,1.0],[117,122,69,1.0],[117,122,70,1.0],[117,122,71,1.0],[117,122,72,1.0],[117,122,73,1.0],[117,122,74,1.0],[117,122,75,1.0],[117,122,76,1.0],[117,122,77,1.0],[117,122,78,1.0],[117,122,79,1.0],[117,123,64,1.0],[117,123,65,1.0],[117,123,66,1.0],[117,123,67,1.0],[117,123,68,1.0],[117,123,69,1.0],[117,123,70,1.0],[117,123,71,1.0],[117,123,72,1.0],[117,123,73,1.0],[117,123,74,1.0],[117,123,75,1.0],[117,123,76,1.0],[117,123,77,1.0],[117,123,78,1.0],[117,123,79,1.0],[117,124,64,1.0],[117,124,65,1.0],[117,124,66,1.0],[117,124,67,1.0],[117,124,68,1.0],[117,124,69,1.0],[117,124,70,1.0],[117,124,71,1.0],[117,124,72,1.0],[117,124,73,1.0],[117,124,74,1.0],[117,124,75,1.0],[117,124,76,1.0],[117,124,77,1.0],[117,124,78,1.0],[117,124,79,1.0],[117,125,64,1.0],[117,125,65,1.0],[117,125,66,1.0],[117,125,67,1.0],[117,125,68,1.0],[117,125,69,1.0],[117,125,70,1.0],[117,125,71,1.0],[117,125,72,1.0],[117,125,73,1.0],[117,125,74,1.0],[117,125,75,1.0],[117,125,76,1.0],[117,125,77,1.0],[117,125,78,1.0],[117,125,79,1.0],[117,126,64,1.0],[117,126,65,1.0],[117,126,66,1.0],[117,126,67,1.0],[117,126,68,1.0],[117,126,69,1.0],[117,126,70,1.0],[117,126,71,1.0],[117,126,72,1.0],[117,126,73,1.0],[117,126,74,1.0],[117,126,75,1.0],[117,126,76,1.0],[117,126,77,1.0],[117,126,78,1.0],[117,126,79,1.0],[117,127,64,1.0],[117,127,65,1.0],[117,127,66,1.0],[117,127,67,1.0],[117,127,68,1.0],[117,127,69,1.0],[117,127,70,1.0],[117,127,71,1.0],[117,127,72,1.0],[117,127,73,1.0],[117,127,74,1.0],[117,127,75,1.0],[117,127,76,1.0],[117,127,77,1.0],[117,127,78,1.0],[117,127,79,1.0],[117,128,64,1.0],[117,128,65,1.0],[117,128,66,1.0],[117,128,67,1.0],[117,128,68,1.0],[117,128,69,1.0],[117,128,70,1.0],[117,128,71,1.0],[117,128,72,1.0],[117,128,73,1.0],[117,128,74,1.0],[117,128,75,1.0],[117,128,76,1.0],[117,128,77,1.0],[117,128,78,1.0],[117,128,79,1.0],[117,129,64,1.0],[117,129,65,1.0],[117,129,66,1.0],[117,129,67,1.0],[117,129,68,1.0],[117,129,69,1.0],[117,129,70,1.0],[117,129,71,1.0],[117,129,72,1.0],[117,129,73,1.0],[117,129,74,1.0],[117,129,75,1.0],[117,129,76,1.0],[117,129,77,1.0],[117,129,78,1.0],[117,129,79,1.0],[117,130,64,1.0],[117,130,65,1.0],[117,130,66,1.0],[117,130,67,1.0],[117,130,68,1.0],[117,130,69,1.0],[117,130,70,1.0],[117,130,71,1.0],[117,130,72,1.0],[117,130,73,1.0],[117,130,74,1.0],[117,130,75,1.0],[117,130,76,1.0],[117,130,77,1.0],[117,130,78,1.0],[117,130,79,1.0],[117,131,64,1.0],[117,131,65,1.0],[117,131,66,1.0],[117,131,67,1.0],[117,131,68,1.0],[117,131,69,1.0],[117,131,70,1.0],[117,131,71,1.0],[117,131,72,1.0],[117,131,73,1.0],[117,131,74,1.0],[117,131,75,1.0],[117,131,76,1.0],[117,131,77,1.0],[117,131,78,1.0],[117,131,79,1.0],[117,132,64,1.0],[117,132,65,1.0],[117,132,66,1.0],[117,132,67,1.0],[117,132,68,1.0],[117,132,69,1.0],[117,132,70,1.0],[117,132,71,1.0],[117,132,72,1.0],[117,132,73,1.0],[117,132,74,1.0],[117,132,75,1.0],[117,132,76,1.0],[117,132,77,1.0],[117,132,78,1.0],[117,132,79,1.0],[117,133,64,1.0],[117,133,65,1.0],[117,133,66,1.0],[117,133,67,1.0],[117,133,68,1.0],[117,133,69,1.0],[117,133,70,1.0],[117,133,71,1.0],[117,133,72,1.0],[117,133,73,1.0],[117,133,74,1.0],[117,133,75,1.0],[117,133,76,1.0],[117,133,77,1.0],[117,133,78,1.0],[117,133,79,1.0],[117,134,64,1.0],[117,134,65,1.0],[117,134,66,1.0],[117,134,67,1.0],[117,134,68,1.0],[117,134,69,1.0],[117,134,70,1.0],[117,134,71,1.0],[117,134,72,1.0],[117,134,73,1.0],[117,134,74,1.0],[117,134,75,1.0],[117,134,76,1.0],[117,134,77,1.0],[117,134,78,1.0],[117,134,79,1.0],[117,135,64,1.0],[117,135,65,1.0],[117,135,66,1.0],[117,135,67,1.0],[117,135,68,1.0],[117,135,69,1.0],[117,135,70,1.0],[117,135,71,1.0],[117,135,72,1.0],[117,135,73,1.0],[117,135,74,1.0],[117,135,75,1.0],[117,135,76,1.0],[117,135,77,1.0],[117,135,78,1.0],[117,135,79,1.0],[117,136,64,1.0],[117,136,65,1.0],[117,136,66,1.0],[117,136,67,1.0],[117,136,68,1.0],[117,136,69,1.0],[117,136,70,1.0],[117,136,71,1.0],[117,136,72,1.0],[117,136,73,1.0],[117,136,74,1.0],[117,136,75,1.0],[117,136,76,1.0],[117,136,77,1.0],[117,136,78,1.0],[117,136,79,1.0],[117,137,64,1.0],[117,137,65,1.0],[117,137,66,1.0],[117,137,67,1.0],[117,137,68,1.0],[117,137,69,1.0],[117,137,70,1.0],[117,137,71,1.0],[117,137,72,1.0],[117,137,73,1.0],[117,137,74,1.0],[117,137,75,1.0],[117,137,76,1.0],[117,137,77,1.0],[117,137,78,1.0],[117,137,79,1.0],[117,138,64,1.0],[117,138,65,1.0],[117,138,66,1.0],[117,138,67,1.0],[117,138,68,1.0],[117,138,69,1.0],[117,138,70,1.0],[117,138,71,1.0],[117,138,72,1.0],[117,138,73,1.0],[117,138,74,1.0],[117,138,75,1.0],[117,138,76,1.0],[117,138,77,1.0],[117,138,78,1.0],[117,138,79,1.0],[117,139,64,1.0],[117,139,65,1.0],[117,139,66,1.0],[117,139,67,1.0],[117,139,68,1.0],[117,139,69,1.0],[117,139,70,1.0],[117,139,71,1.0],[117,139,72,1.0],[117,139,73,1.0],[117,139,74,1.0],[117,139,75,1.0],[117,139,76,1.0],[117,139,77,1.0],[117,139,78,1.0],[117,139,79,1.0],[117,140,64,1.0],[117,140,65,1.0],[117,140,66,1.0],[117,140,67,1.0],[117,140,68,1.0],[117,140,69,1.0],[117,140,70,1.0],[117,140,71,1.0],[117,140,72,1.0],[117,140,73,1.0],[117,140,74,1.0],[117,140,75,1.0],[117,140,76,1.0],[117,140,77,1.0],[117,140,78,1.0],[117,140,79,1.0],[117,141,64,1.0],[117,141,65,1.0],[117,141,66,1.0],[117,141,67,1.0],[117,141,68,1.0],[117,141,69,1.0],[117,141,70,1.0],[117,141,71,1.0],[117,141,72,1.0],[117,141,73,1.0],[117,141,74,1.0],[117,141,75,1.0],[117,141,76,1.0],[117,141,77,1.0],[117,141,78,1.0],[117,141,79,1.0],[117,142,64,1.0],[117,142,65,1.0],[117,142,66,1.0],[117,142,67,1.0],[117,142,68,1.0],[117,142,69,1.0],[117,142,70,1.0],[117,142,71,1.0],[117,142,72,1.0],[117,142,73,1.0],[117,142,74,1.0],[117,142,75,1.0],[117,142,76,1.0],[117,142,77,1.0],[117,142,78,1.0],[117,142,79,1.0],[117,143,64,1.0],[117,143,65,1.0],[117,143,66,1.0],[117,143,67,1.0],[117,143,68,1.0],[117,143,69,1.0],[117,143,70,1.0],[117,143,71,1.0],[117,143,72,1.0],[117,143,73,1.0],[117,143,74,1.0],[117,143,75,1.0],[117,143,76,1.0],[117,143,77,1.0],[117,143,78,1.0],[117,143,79,1.0],[117,144,64,1.0],[117,144,65,1.0],[117,144,66,1.0],[117,144,67,1.0],[117,144,68,1.0],[117,144,69,1.0],[117,144,70,1.0],[117,144,71,1.0],[117,144,72,1.0],[117,144,73,1.0],[117,144,74,1.0],[117,144,75,1.0],[117,144,76,1.0],[117,144,77,1.0],[117,144,78,1.0],[117,144,79,1.0],[117,145,64,1.0],[117,145,65,1.0],[117,145,66,1.0],[117,145,67,1.0],[117,145,68,1.0],[117,145,69,1.0],[117,145,70,1.0],[117,145,71,1.0],[117,145,72,1.0],[117,145,73,1.0],[117,145,74,1.0],[117,145,75,1.0],[117,145,76,1.0],[117,145,77,1.0],[117,145,78,1.0],[117,145,79,1.0],[117,146,64,1.0],[117,146,65,1.0],[117,146,66,1.0],[117,146,67,1.0],[117,146,68,1.0],[117,146,69,1.0],[117,146,70,1.0],[117,146,71,1.0],[117,146,72,1.0],[117,146,73,1.0],[117,146,74,1.0],[117,146,75,1.0],[117,146,76,1.0],[117,146,77,1.0],[117,146,78,1.0],[117,146,79,1.0],[117,147,64,1.0],[117,147,65,1.0],[117,147,66,1.0],[117,147,67,1.0],[117,147,68,1.0],[117,147,69,1.0],[117,147,70,1.0],[117,147,71,1.0],[117,147,72,1.0],[117,147,73,1.0],[117,147,74,1.0],[117,147,75,1.0],[117,147,76,1.0],[117,147,77,1.0],[117,147,78,1.0],[117,147,79,1.0],[117,148,64,1.0],[117,148,65,1.0],[117,148,66,1.0],[117,148,67,1.0],[117,148,68,1.0],[117,148,69,1.0],[117,148,70,1.0],[117,148,71,1.0],[117,148,72,1.0],[117,148,73,1.0],[117,148,74,1.0],[117,148,75,1.0],[117,148,76,1.0],[117,148,77,1.0],[117,148,78,1.0],[117,148,79,1.0],[117,149,64,1.0],[117,149,65,1.0],[117,149,66,1.0],[117,149,67,1.0],[117,149,68,1.0],[117,149,69,1.0],[117,149,70,1.0],[117,149,71,1.0],[117,149,72,1.0],[117,149,73,1.0],[117,149,74,1.0],[117,149,75,1.0],[117,149,76,1.0],[117,149,77,1.0],[117,149,78,1.0],[117,149,79,1.0],[117,150,64,1.0],[117,150,65,1.0],[117,150,66,1.0],[117,150,67,1.0],[117,150,68,1.0],[117,150,69,1.0],[117,150,70,1.0],[117,150,71,1.0],[117,150,72,1.0],[117,150,73,1.0],[117,150,74,1.0],[117,150,75,1.0],[117,150,76,1.0],[117,150,77,1.0],[117,150,78,1.0],[117,150,79,1.0],[117,151,64,1.0],[117,151,65,1.0],[117,151,66,1.0],[117,151,67,1.0],[117,151,68,1.0],[117,151,69,1.0],[117,151,70,1.0],[117,151,71,1.0],[117,151,72,1.0],[117,151,73,1.0],[117,151,74,1.0],[117,151,75,1.0],[117,151,76,1.0],[117,151,77,1.0],[117,151,78,1.0],[117,151,79,1.0],[117,152,64,1.0],[117,152,65,1.0],[117,152,66,1.0],[117,152,67,1.0],[117,152,68,1.0],[117,152,69,1.0],[117,152,70,1.0],[117,152,71,1.0],[117,152,72,1.0],[117,152,73,1.0],[117,152,74,1.0],[117,152,75,1.0],[117,152,76,1.0],[117,152,77,1.0],[117,152,78,1.0],[117,152,79,1.0],[117,153,64,1.0],[117,153,65,1.0],[117,153,66,1.0],[117,153,67,1.0],[117,153,68,1.0],[117,153,69,1.0],[117,153,70,1.0],[117,153,71,1.0],[117,153,72,1.0],[117,153,73,1.0],[117,153,74,1.0],[117,153,75,1.0],[117,153,76,1.0],[117,153,77,1.0],[117,153,78,1.0],[117,153,79,1.0],[117,154,64,1.0],[117,154,65,1.0],[117,154,66,1.0],[117,154,67,1.0],[117,154,68,1.0],[117,154,69,1.0],[117,154,70,1.0],[117,154,71,1.0],[117,154,72,1.0],[117,154,73,1.0],[117,154,74,1.0],[117,154,75,1.0],[117,154,76,1.0],[117,154,77,1.0],[117,154,78,1.0],[117,154,79,1.0],[117,155,64,1.0],[117,155,65,1.0],[117,155,66,1.0],[117,155,67,1.0],[117,155,68,1.0],[117,155,69,1.0],[117,155,70,1.0],[117,155,71,1.0],[117,155,72,1.0],[117,155,73,1.0],[117,155,74,1.0],[117,155,75,1.0],[117,155,76,1.0],[117,155,77,1.0],[117,155,78,1.0],[117,155,79,1.0],[117,156,64,1.0],[117,156,65,1.0],[117,156,66,1.0],[117,156,67,1.0],[117,156,68,1.0],[117,156,69,1.0],[117,156,70,1.0],[117,156,71,1.0],[117,156,72,1.0],[117,156,73,1.0],[117,156,74,1.0],[117,156,75,1.0],[117,156,76,1.0],[117,156,77,1.0],[117,156,78,1.0],[117,156,79,1.0],[117,157,64,1.0],[117,157,65,1.0],[117,157,66,1.0],[117,157,67,1.0],[117,157,68,1.0],[117,157,69,1.0],[117,157,70,1.0],[117,157,71,1.0],[117,157,72,1.0],[117,157,73,1.0],[117,157,74,1.0],[117,157,75,1.0],[117,157,76,1.0],[117,157,77,1.0],[117,157,78,1.0],[117,157,79,1.0],[117,158,64,1.0],[117,158,65,1.0],[117,158,66,1.0],[117,158,67,1.0],[117,158,68,1.0],[117,158,69,1.0],[117,158,70,1.0],[117,158,71,1.0],[117,158,72,1.0],[117,158,73,1.0],[117,158,74,1.0],[117,158,75,1.0],[117,158,76,1.0],[117,158,77,1.0],[117,158,78,1.0],[117,158,79,1.0],[117,159,64,1.0],[117,159,65,1.0],[117,159,66,1.0],[117,159,67,1.0],[117,159,68,1.0],[117,159,69,1.0],[117,159,70,1.0],[117,159,71,1.0],[117,159,72,1.0],[117,159,73,1.0],[117,159,74,1.0],[117,159,75,1.0],[117,159,76,1.0],[117,159,77,1.0],[117,159,78,1.0],[117,159,79,1.0],[117,160,64,1.0],[117,160,65,1.0],[117,160,66,1.0],[117,160,67,1.0],[117,160,68,1.0],[117,160,69,1.0],[117,160,70,1.0],[117,160,71,1.0],[117,160,72,1.0],[117,160,73,1.0],[117,160,74,1.0],[117,160,75,1.0],[117,160,76,1.0],[117,160,77,1.0],[117,160,78,1.0],[117,160,79,1.0],[117,161,64,1.0],[117,161,65,1.0],[117,161,66,1.0],[117,161,67,1.0],[117,161,68,1.0],[117,161,69,1.0],[117,161,70,1.0],[117,161,71,1.0],[117,161,72,1.0],[117,161,73,1.0],[117,161,74,1.0],[117,161,75,1.0],[117,161,76,1.0],[117,161,77,1.0],[117,161,78,1.0],[117,161,79,1.0],[117,162,64,1.0],[117,162,65,1.0],[117,162,66,1.0],[117,162,67,1.0],[117,162,68,1.0],[117,162,69,1.0],[117,162,70,1.0],[117,162,71,1.0],[117,162,72,1.0],[117,162,73,1.0],[117,162,74,1.0],[117,162,75,1.0],[117,162,76,1.0],[117,162,77,1.0],[117,162,78,1.0],[117,162,79,1.0],[117,163,64,1.0],[117,163,65,1.0],[117,163,66,1.0],[117,163,67,1.0],[117,163,68,1.0],[117,163,69,1.0],[117,163,70,1.0],[117,163,71,1.0],[117,163,72,1.0],[117,163,73,1.0],[117,163,74,1.0],[117,163,75,1.0],[117,163,76,1.0],[117,163,77,1.0],[117,163,78,1.0],[117,163,79,1.0],[117,164,64,1.0],[117,164,65,1.0],[117,164,66,1.0],[117,164,67,1.0],[117,164,68,1.0],[117,164,69,1.0],[117,164,70,1.0],[117,164,71,1.0],[117,164,72,1.0],[117,164,73,1.0],[117,164,74,1.0],[117,164,75,1.0],[117,164,76,1.0],[117,164,77,1.0],[117,164,78,1.0],[117,164,79,1.0],[117,165,64,1.0],[117,165,65,1.0],[117,165,66,1.0],[117,165,67,1.0],[117,165,68,1.0],[117,165,69,1.0],[117,165,70,1.0],[117,165,71,1.0],[117,165,72,1.0],[117,165,73,1.0],[117,165,74,1.0],[117,165,75,1.0],[117,165,76,1.0],[117,165,77,1.0],[117,165,78,1.0],[117,165,79,1.0],[117,166,64,1.0],[117,166,65,1.0],[117,166,66,1.0],[117,166,67,1.0],[117,166,68,1.0],[117,166,69,1.0],[117,166,70,1.0],[117,166,71,1.0],[117,166,72,1.0],[117,166,73,1.0],[117,166,74,1.0],[117,166,75,1.0],[117,166,76,1.0],[117,166,77,1.0],[117,166,78,1.0],[117,166,79,1.0],[117,167,64,1.0],[117,167,65,1.0],[117,167,66,1.0],[117,167,67,1.0],[117,167,68,1.0],[117,167,69,1.0],[117,167,70,1.0],[117,167,71,1.0],[117,167,72,1.0],[117,167,73,1.0],[117,167,74,1.0],[117,167,75,1.0],[117,167,76,1.0],[117,167,77,1.0],[117,167,78,1.0],[117,167,79,1.0],[117,168,64,1.0],[117,168,65,1.0],[117,168,66,1.0],[117,168,67,1.0],[117,168,68,1.0],[117,168,69,1.0],[117,168,70,1.0],[117,168,71,1.0],[117,168,72,1.0],[117,168,73,1.0],[117,168,74,1.0],[117,168,75,1.0],[117,168,76,1.0],[117,168,77,1.0],[117,168,78,1.0],[117,168,79,1.0],[117,169,64,1.0],[117,169,65,1.0],[117,169,66,1.0],[117,169,67,1.0],[117,169,68,1.0],[117,169,69,1.0],[117,169,70,1.0],[117,169,71,1.0],[117,169,72,1.0],[117,169,73,1.0],[117,169,74,1.0],[117,169,75,1.0],[117,169,76,1.0],[117,169,77,1.0],[117,169,78,1.0],[117,169,79,1.0],[117,170,64,1.0],[117,170,65,1.0],[117,170,66,1.0],[117,170,67,1.0],[117,170,68,1.0],[117,170,69,1.0],[117,170,70,1.0],[117,170,71,1.0],[117,170,72,1.0],[117,170,73,1.0],[117,170,74,1.0],[117,170,75,1.0],[117,170,76,1.0],[117,170,77,1.0],[117,170,78,1.0],[117,170,79,1.0],[117,171,64,1.0],[117,171,65,1.0],[117,171,66,1.0],[117,171,67,1.0],[117,171,68,1.0],[117,171,69,1.0],[117,171,70,1.0],[117,171,71,1.0],[117,171,72,1.0],[117,171,73,1.0],[117,171,74,1.0],[117,171,75,1.0],[117,171,76,1.0],[117,171,77,1.0],[117,171,78,1.0],[117,171,79,1.0],[117,172,64,1.0],[117,172,65,1.0],[117,172,66,1.0],[117,172,67,1.0],[117,172,68,1.0],[117,172,69,1.0],[117,172,70,1.0],[117,172,71,1.0],[117,172,72,1.0],[117,172,73,1.0],[117,172,74,1.0],[117,172,75,1.0],[117,172,76,1.0],[117,172,77,1.0],[117,172,78,1.0],[117,172,79,1.0],[117,173,64,1.0],[117,173,65,1.0],[117,173,66,1.0],[117,173,67,1.0],[117,173,68,1.0],[117,173,69,1.0],[117,173,70,1.0],[117,173,71,1.0],[117,173,72,1.0],[117,173,73,1.0],[117,173,74,1.0],[117,173,75,1.0],[117,173,76,1.0],[117,173,77,1.0],[117,173,78,1.0],[117,173,79,1.0],[117,174,64,1.0],[117,174,65,1.0],[117,174,66,1.0],[117,174,67,1.0],[117,174,68,1.0],[117,174,69,1.0],[117,174,70,1.0],[117,174,71,1.0],[117,174,72,1.0],[117,174,73,1.0],[117,174,74,1.0],[117,174,75,1.0],[117,174,76,1.0],[117,174,77,1.0],[117,174,78,1.0],[117,174,79,1.0],[117,175,64,1.0],[117,175,65,1.0],[117,175,66,1.0],[117,175,67,1.0],[117,175,68,1.0],[117,175,69,1.0],[117,175,70,1.0],[117,175,71,1.0],[117,175,72,1.0],[117,175,73,1.0],[117,175,74,1.0],[117,175,75,1.0],[117,175,76,1.0],[117,175,77,1.0],[117,175,78,1.0],[117,175,79,1.0],[117,176,64,1.0],[117,176,65,1.0],[117,176,66,1.0],[117,176,67,1.0],[117,176,68,1.0],[117,176,69,1.0],[117,176,70,1.0],[117,176,71,1.0],[117,176,72,1.0],[117,176,73,1.0],[117,176,74,1.0],[117,176,75,1.0],[117,176,76,1.0],[117,176,77,1.0],[117,176,78,1.0],[117,176,79,1.0],[117,177,64,1.0],[117,177,65,1.0],[117,177,66,1.0],[117,177,67,1.0],[117,177,68,1.0],[117,177,69,1.0],[117,177,70,1.0],[117,177,71,1.0],[117,177,72,1.0],[117,177,73,1.0],[117,177,74,1.0],[117,177,75,1.0],[117,177,76,1.0],[117,177,77,1.0],[117,177,78,1.0],[117,177,79,1.0],[117,178,64,1.0],[117,178,65,1.0],[117,178,66,1.0],[117,178,67,1.0],[117,178,68,1.0],[117,178,69,1.0],[117,178,70,1.0],[117,178,71,1.0],[117,178,72,1.0],[117,178,73,1.0],[117,178,74,1.0],[117,178,75,1.0],[117,178,76,1.0],[117,178,77,1.0],[117,178,78,1.0],[117,178,79,1.0],[117,179,64,1.0],[117,179,65,1.0],[117,179,66,1.0],[117,179,67,1.0],[117,179,68,1.0],[117,179,69,1.0],[117,179,70,1.0],[117,179,71,1.0],[117,179,72,1.0],[117,179,73,1.0],[117,179,74,1.0],[117,179,75,1.0],[117,179,76,1.0],[117,179,77,1.0],[117,179,78,1.0],[117,179,79,1.0],[117,180,64,1.0],[117,180,65,1.0],[117,180,66,1.0],[117,180,67,1.0],[117,180,68,1.0],[117,180,69,1.0],[117,180,70,1.0],[117,180,71,1.0],[117,180,72,1.0],[117,180,73,1.0],[117,180,74,1.0],[117,180,75,1.0],[117,180,76,1.0],[117,180,77,1.0],[117,180,78,1.0],[117,180,79,1.0],[117,181,64,1.0],[117,181,65,1.0],[117,181,66,1.0],[117,181,67,1.0],[117,181,68,1.0],[117,181,69,1.0],[117,181,70,1.0],[117,181,71,1.0],[117,181,72,1.0],[117,181,73,1.0],[117,181,74,1.0],[117,181,75,1.0],[117,181,76,1.0],[117,181,77,1.0],[117,181,78,1.0],[117,181,79,1.0],[117,182,64,1.0],[117,182,65,1.0],[117,182,66,1.0],[117,182,67,1.0],[117,182,68,1.0],[117,182,69,1.0],[117,182,70,1.0],[117,182,71,1.0],[117,182,72,1.0],[117,182,73,1.0],[117,182,74,1.0],[117,182,75,1.0],[117,182,76,1.0],[117,182,77,1.0],[117,182,78,1.0],[117,182,79,1.0],[117,183,64,1.0],[117,183,65,1.0],[117,183,66,1.0],[117,183,67,1.0],[117,183,68,1.0],[117,183,69,1.0],[117,183,70,1.0],[117,183,71,1.0],[117,183,72,1.0],[117,183,73,1.0],[117,183,74,1.0],[117,183,75,1.0],[117,183,76,1.0],[117,183,77,1.0],[117,183,78,1.0],[117,183,79,1.0],[117,184,64,1.0],[117,184,65,1.0],[117,184,66,1.0],[117,184,67,1.0],[117,184,68,1.0],[117,184,69,1.0],[117,184,70,1.0],[117,184,71,1.0],[117,184,72,1.0],[117,184,73,1.0],[117,184,74,1.0],[117,184,75,1.0],[117,184,76,1.0],[117,184,77,1.0],[117,184,78,1.0],[117,184,79,1.0],[117,185,64,1.0],[117,185,65,1.0],[117,185,66,1.0],[117,185,67,1.0],[117,185,68,1.0],[117,185,69,1.0],[117,185,70,1.0],[117,185,71,1.0],[117,185,72,1.0],[117,185,73,1.0],[117,185,74,1.0],[117,185,75,1.0],[117,185,76,1.0],[117,185,77,1.0],[117,185,78,1.0],[117,185,79,1.0],[117,186,64,1.0],[117,186,65,1.0],[117,186,66,1.0],[117,186,67,1.0],[117,186,68,1.0],[117,186,69,1.0],[117,186,70,1.0],[117,186,71,1.0],[117,186,72,1.0],[117,186,73,1.0],[117,186,74,1.0],[117,186,75,1.0],[117,186,76,1.0],[117,186,77,1.0],[117,186,78,1.0],[117,186,79,1.0],[117,187,64,1.0],[117,187,65,1.0],[117,187,66,1.0],[117,187,67,1.0],[117,187,68,1.0],[117,187,69,1.0],[117,187,70,1.0],[117,187,71,1.0],[117,187,72,1.0],[117,187,73,1.0],[117,187,74,1.0],[117,187,75,1.0],[117,187,76,1.0],[117,187,77,1.0],[117,187,78,1.0],[117,187,79,1.0],[117,188,64,1.0],[117,188,65,1.0],[117,188,66,1.0],[117,188,67,1.0],[117,188,68,1.0],[117,188,69,1.0],[117,188,70,1.0],[117,188,71,1.0],[117,188,72,1.0],[117,188,73,1.0],[117,188,74,1.0],[117,188,75,1.0],[117,188,76,1.0],[117,188,77,1.0],[117,188,78,1.0],[117,188,79,1.0],[117,189,64,1.0],[117,189,65,1.0],[117,189,66,1.0],[117,189,67,1.0],[117,189,68,1.0],[117,189,69,1.0],[117,189,70,1.0],[117,189,71,1.0],[117,189,72,1.0],[117,189,73,1.0],[117,189,74,1.0],[117,189,75,1.0],[117,189,76,1.0],[117,189,77,1.0],[117,189,78,1.0],[117,189,79,1.0],[117,190,64,1.0],[117,190,65,1.0],[117,190,66,1.0],[117,190,67,1.0],[117,190,68,1.0],[117,190,69,1.0],[117,190,70,1.0],[117,190,71,1.0],[117,190,72,1.0],[117,190,73,1.0],[117,190,74,1.0],[117,190,75,1.0],[117,190,76,1.0],[117,190,77,1.0],[117,190,78,1.0],[117,190,79,1.0],[117,191,64,1.0],[117,191,65,1.0],[117,191,66,1.0],[117,191,67,1.0],[117,191,68,1.0],[117,191,69,1.0],[117,191,70,1.0],[117,191,71,1.0],[117,191,72,1.0],[117,191,73,1.0],[117,191,74,1.0],[117,191,75,1.0],[117,191,76,1.0],[117,191,77,1.0],[117,191,78,1.0],[117,191,79,1.0],[117,192,64,1.0],[117,192,65,1.0],[117,192,66,1.0],[117,192,67,1.0],[117,192,68,1.0],[117,192,69,1.0],[117,192,70,1.0],[117,192,71,1.0],[117,192,72,1.0],[117,192,73,1.0],[117,192,74,1.0],[117,192,75,1.0],[117,192,76,1.0],[117,192,77,1.0],[117,192,78,1.0],[117,192,79,1.0],[117,193,64,1.0],[117,193,65,1.0],[117,193,66,1.0],[117,193,67,1.0],[117,193,68,1.0],[117,193,69,1.0],[117,193,70,1.0],[117,193,71,1.0],[117,193,72,1.0],[117,193,73,1.0],[117,193,74,1.0],[117,193,75,1.0],[117,193,76,1.0],[117,193,77,1.0],[117,193,78,1.0],[117,193,79,1.0],[117,194,64,1.0],[117,194,65,1.0],[117,194,66,1.0],[117,194,67,1.0],[117,194,68,1.0],[117,194,69,1.0],[117,194,70,1.0],[117,194,71,1.0],[117,194,72,1.0],[117,194,73,1.0],[117,194,74,1.0],[117,194,75,1.0],[117,194,76,1.0],[117,194,77,1.0],[117,194,78,1.0],[117,194,79,1.0],[117,195,64,1.0],[117,195,65,1.0],[117,195,66,1.0],[117,195,67,1.0],[117,195,68,1.0],[117,195,69,1.0],[117,195,70,1.0],[117,195,71,1.0],[117,195,72,1.0],[117,195,73,1.0],[117,195,74,1.0],[117,195,75,1.0],[117,195,76,1.0],[117,195,77,1.0],[117,195,78,1.0],[117,195,79,1.0],[117,196,64,1.0],[117,196,65,1.0],[117,196,66,1.0],[117,196,67,1.0],[117,196,68,1.0],[117,196,69,1.0],[117,196,70,1.0],[117,196,71,1.0],[117,196,72,1.0],[117,196,73,1.0],[117,196,74,1.0],[117,196,75,1.0],[117,196,76,1.0],[117,196,77,1.0],[117,196,78,1.0],[117,196,79,1.0],[117,197,64,1.0],[117,197,65,1.0],[117,197,66,1.0],[117,197,67,1.0],[117,197,68,1.0],[117,197,69,1.0],[117,197,70,1.0],[117,197,71,1.0],[117,197,72,1.0],[117,197,73,1.0],[117,197,74,1.0],[117,197,75,1.0],[117,197,76,1.0],[117,197,77,1.0],[117,197,78,1.0],[117,197,79,1.0],[117,198,64,1.0],[117,198,65,1.0],[117,198,66,1.0],[117,198,67,1.0],[117,198,68,1.0],[117,198,69,1.0],[117,198,70,1.0],[117,198,71,1.0],[117,198,72,1.0],[117,198,73,1.0],[117,198,74,1.0],[117,198,75,1.0],[117,198,76,1.0],[117,198,77,1.0],[117,198,78,1.0],[117,198,79,1.0],[117,199,64,1.0],[117,199,65,1.0],[117,199,66,1.0],[117,199,67,1.0],[117,199,68,1.0],[117,199,69,1.0],[117,199,70,1.0],[117,199,71,1.0],[117,199,72,1.0],[117,199,73,1.0],[117,199,74,1.0],[117,199,75,1.0],[117,199,76,1.0],[117,199,77,1.0],[117,199,78,1.0],[117,199,79,1.0],[117,200,64,1.0],[117,200,65,1.0],[117,200,66,1.0],[117,200,67,1.0],[117,200,68,1.0],[117,200,69,1.0],[117,200,70,1.0],[117,200,71,1.0],[117,200,72,1.0],[117,200,73,1.0],[117,200,74,1.0],[117,200,75,1.0],[117,200,76,1.0],[117,200,77,1.0],[117,200,78,1.0],[117,200,79,1.0],[117,201,64,1.0],[117,201,65,1.0],[117,201,66,1.0],[117,201,67,1.0],[117,201,68,1.0],[117,201,69,1.0],[117,201,70,1.0],[117,201,71,1.0],[117,201,72,1.0],[117,201,73,1.0],[117,201,74,1.0],[117,201,75,1.0],[117,201,76,1.0],[117,201,77,1.0],[117,201,78,1.0],[117,201,79,1.0],[117,202,64,1.0],[117,202,65,1.0],[117,202,66,1.0],[117,202,67,1.0],[117,202,68,1.0],[117,202,69,1.0],[117,202,70,1.0],[117,202,71,1.0],[117,202,72,1.0],[117,202,73,1.0],[117,202,74,1.0],[117,202,75,1.0],[117,202,76,1.0],[117,202,77,1.0],[117,202,78,1.0],[117,202,79,1.0],[117,203,64,1.0],[117,203,65,1.0],[117,203,66,1.0],[117,203,67,1.0],[117,203,68,1.0],[117,203,69,1.0],[117,203,70,1.0],[117,203,71,1.0],[117,203,72,1.0],[117,203,73,1.0],[117,203,74,1.0],[117,203,75,1.0],[117,203,76,1.0],[117,203,77,1.0],[117,203,78,1.0],[117,203,79,1.0],[117,204,64,1.0],[117,204,65,1.0],[117,204,66,1.0],[117,204,67,1.0],[117,204,68,1.0],[117,204,69,1.0],[117,204,70,1.0],[117,204,71,1.0],[117,204,72,1.0],[117,204,73,1.0],[117,204,74,1.0],[117,204,75,1.0],[117,204,76,1.0],[117,204,77,1.0],[117,204,78,1.0],[117,204,79,1.0],[117,205,64,1.0],[117,205,65,1.0],[117,205,66,1.0],[117,205,67,1.0],[117,205,68,1.0],[117,205,69,1.0],[117,205,70,1.0],[117,205,71,1.0],[117,205,72,1.0],[117,205,73,1.0],[117,205,74,1.0],[117,205,75,1.0],[117,205,76,1.0],[117,205,77,1.0],[117,205,78,1.0],[117,205,79,1.0],[117,206,64,1.0],[117,206,65,1.0],[117,206,66,1.0],[117,206,67,1.0],[117,206,68,1.0],[117,206,69,1.0],[117,206,70,1.0],[117,206,71,1.0],[117,206,72,1.0],[117,206,73,1.0],[117,206,74,1.0],[117,206,75,1.0],[117,206,76,1.0],[117,206,77,1.0],[117,206,78,1.0],[117,206,79,1.0],[117,207,64,1.0],[117,207,65,1.0],[117,207,66,1.0],[117,207,67,1.0],[117,207,68,1.0],[117,207,69,1.0],[117,207,70,1.0],[117,207,71,1.0],[117,207,72,1.0],[117,207,73,1.0],[117,207,74,1.0],[117,207,75,1.0],[117,207,76,1.0],[117,207,77,1.0],[117,207,78,1.0],[117,207,79,1.0],[117,208,64,1.0],[117,208,65,1.0],[117,208,66,1.0],[117,208,67,1.0],[117,208,68,1.0],[117,208,69,1.0],[117,208,70,1.0],[117,208,71,1.0],[117,208,72,1.0],[117,208,73,1.0],[117,208,74,1.0],[117,208,75,1.0],[117,208,76,1.0],[117,208,77,1.0],[117,208,78,1.0],[117,208,79,1.0],[117,209,64,1.0],[117,209,65,1.0],[117,209,66,1.0],[117,209,67,1.0],[117,209,68,1.0],[117,209,69,1.0],[117,209,70,1.0],[117,209,71,1.0],[117,209,72,1.0],[117,209,73,1.0],[117,209,74,1.0],[117,209,75,1.0],[117,209,76,1.0],[117,209,77,1.0],[117,209,78,1.0],[117,209,79,1.0],[117,210,64,1.0],[117,210,65,1.0],[117,210,66,1.0],[117,210,67,1.0],[117,210,68,1.0],[117,210,69,1.0],[117,210,70,1.0],[117,210,71,1.0],[117,210,72,1.0],[117,210,73,1.0],[117,210,74,1.0],[117,210,75,1.0],[117,210,76,1.0],[117,210,77,1.0],[117,210,78,1.0],[117,210,79,1.0],[117,211,64,1.0],[117,211,65,1.0],[117,211,66,1.0],[117,211,67,1.0],[117,211,68,1.0],[117,211,69,1.0],[117,211,70,1.0],[117,211,71,1.0],[117,211,72,1.0],[117,211,73,1.0],[117,211,74,1.0],[117,211,75,1.0],[117,211,76,1.0],[117,211,77,1.0],[117,211,78,1.0],[117,211,79,1.0],[117,212,64,1.0],[117,212,65,1.0],[117,212,66,1.0],[117,212,67,1.0],[117,212,68,1.0],[117,212,69,1.0],[117,212,70,1.0],[117,212,71,1.0],[117,212,72,1.0],[117,212,73,1.0],[117,212,74,1.0],[117,212,75,1.0],[117,212,76,1.0],[117,212,77,1.0],[117,212,78,1.0],[117,212,79,1.0],[117,213,64,1.0],[117,213,65,1.0],[117,213,66,1.0],[117,213,67,1.0],[117,213,68,1.0],[117,213,69,1.0],[117,213,70,1.0],[117,213,71,1.0],[117,213,72,1.0],[117,213,73,1.0],[117,213,74,1.0],[117,213,75,1.0],[117,213,76,1.0],[117,213,77,1.0],[117,213,78,1.0],[117,213,79,1.0],[117,214,64,1.0],[117,214,65,1.0],[117,214,66,1.0],[117,214,67,1.0],[117,214,68,1.0],[117,214,69,1.0],[117,214,70,1.0],[117,214,71,1.0],[117,214,72,1.0],[117,214,73,1.0],[117,214,74,1.0],[117,214,75,1.0],[117,214,76,1.0],[117,214,77,1.0],[117,214,78,1.0],[117,214,79,1.0],[117,215,64,1.0],[117,215,65,1.0],[117,215,66,1.0],[117,215,67,1.0],[117,215,68,1.0],[117,215,69,1.0],[117,215,70,1.0],[117,215,71,1.0],[117,215,72,1.0],[117,215,73,1.0],[117,215,74,1.0],[117,215,75,1.0],[117,215,76,1.0],[117,215,77,1.0],[117,215,78,1.0],[117,215,79,1.0],[117,216,64,1.0],[117,216,65,1.0],[117,216,66,1.0],[117,216,67,1.0],[117,216,68,1.0],[117,216,69,1.0],[117,216,70,1.0],[117,216,71,1.0],[117,216,72,1.0],[117,216,73,1.0],[117,216,74,1.0],[117,216,75,1.0],[117,216,76,1.0],[117,216,77,1.0],[117,216,78,1.0],[117,216,79,1.0],[117,217,64,1.0],[117,217,65,1.0],[117,217,66,1.0],[117,217,67,1.0],[117,217,68,1.0],[117,217,69,1.0],[117,217,70,1.0],[117,217,71,1.0],[117,217,72,1.0],[117,217,73,1.0],[117,217,74,1.0],[117,217,75,1.0],[117,217,76,1.0],[117,217,77,1.0],[117,217,78,1.0],[117,217,79,1.0],[117,218,64,1.0],[117,218,65,1.0],[117,218,66,1.0],[117,218,67,1.0],[117,218,68,1.0],[117,218,69,1.0],[117,218,70,1.0],[117,218,71,1.0],[117,218,72,1.0],[117,218,73,1.0],[117,218,74,1.0],[117,218,75,1.0],[117,218,76,1.0],[117,218,77,1.0],[117,218,78,1.0],[117,218,79,1.0],[117,219,64,1.0],[117,219,65,1.0],[117,219,66,1.0],[117,219,67,1.0],[117,219,68,1.0],[117,219,69,1.0],[117,219,70,1.0],[117,219,71,1.0],[117,219,72,1.0],[117,219,73,1.0],[117,219,74,1.0],[117,219,75,1.0],[117,219,76,1.0],[117,219,77,1.0],[117,219,78,1.0],[117,219,79,1.0],[117,220,64,1.0],[117,220,65,1.0],[117,220,66,1.0],[117,220,67,1.0],[117,220,68,1.0],[117,220,69,1.0],[117,220,70,1.0],[117,220,71,1.0],[117,220,72,1.0],[117,220,73,1.0],[117,220,74,1.0],[117,220,75,1.0],[117,220,76,1.0],[117,220,77,1.0],[117,220,78,1.0],[117,220,79,1.0],[117,221,64,1.0],[117,221,65,1.0],[117,221,66,1.0],[117,221,67,1.0],[117,221,68,1.0],[117,221,69,1.0],[117,221,70,1.0],[117,221,71,1.0],[117,221,72,1.0],[117,221,73,1.0],[117,221,74,1.0],[117,221,75,1.0],[117,221,76,1.0],[117,221,77,1.0],[117,221,78,1.0],[117,221,79,1.0],[117,222,64,1.0],[117,222,65,1.0],[117,222,66,1.0],[117,222,67,1.0],[117,222,68,1.0],[117,222,69,1.0],[117,222,70,1.0],[117,222,71,1.0],[117,222,72,1.0],[117,222,73,1.0],[117,222,74,1.0],[117,222,75,1.0],[117,222,76,1.0],[117,222,77,1.0],[117,222,78,1.0],[117,222,79,1.0],[117,223,64,1.0],[117,223,65,1.0],[117,223,66,1.0],[117,223,67,1.0],[117,223,68,1.0],[117,223,69,1.0],[117,223,70,1.0],[117,223,71,1.0],[117,223,72,1.0],[117,223,73,1.0],[117,223,74,1.0],[117,223,75,1.0],[117,223,76,1.0],[117,223,77,1.0],[117,223,78,1.0],[117,223,79,1.0],[117,224,64,1.0],[117,224,65,1.0],[117,224,66,1.0],[117,224,67,1.0],[117,224,68,1.0],[117,224,69,1.0],[117,224,70,1.0],[117,224,71,1.0],[117,224,72,1.0],[117,224,73,1.0],[117,224,74,1.0],[117,224,75,1.0],[117,224,76,1.0],[117,224,77,1.0],[117,224,78,1.0],[117,224,79,1.0],[117,225,64,1.0],[117,225,65,1.0],[117,225,66,1.0],[117,225,67,1.0],[117,225,68,1.0],[117,225,69,1.0],[117,225,70,1.0],[117,225,71,1.0],[117,225,72,1.0],[117,225,73,1.0],[117,225,74,1.0],[117,225,75,1.0],[117,225,76,1.0],[117,225,77,1.0],[117,225,78,1.0],[117,225,79,1.0],[117,226,64,1.0],[117,226,65,1.0],[117,226,66,1.0],[117,226,67,1.0],[117,226,68,1.0],[117,226,69,1.0],[117,226,70,1.0],[117,226,71,1.0],[117,226,72,1.0],[117,226,73,1.0],[117,226,74,1.0],[117,226,75,1.0],[117,226,76,1.0],[117,226,77,1.0],[117,226,78,1.0],[117,226,79,1.0],[117,227,64,1.0],[117,227,65,1.0],[117,227,66,1.0],[117,227,67,1.0],[117,227,68,1.0],[117,227,69,1.0],[117,227,70,1.0],[117,227,71,1.0],[117,227,72,1.0],[117,227,73,1.0],[117,227,74,1.0],[117,227,75,1.0],[117,227,76,1.0],[117,227,77,1.0],[117,227,78,1.0],[117,227,79,1.0],[117,228,64,1.0],[117,228,65,1.0],[117,228,66,1.0],[117,228,67,1.0],[117,228,68,1.0],[117,228,69,1.0],[117,228,70,1.0],[117,228,71,1.0],[117,228,72,1.0],[117,228,73,1.0],[117,228,74,1.0],[117,228,75,1.0],[117,228,76,1.0],[117,228,77,1.0],[117,228,78,1.0],[117,228,79,1.0],[117,229,64,1.0],[117,229,65,1.0],[117,229,66,1.0],[117,229,67,1.0],[117,229,68,1.0],[117,229,69,1.0],[117,229,70,1.0],[117,229,71,1.0],[117,229,72,1.0],[117,229,73,1.0],[117,229,74,1.0],[117,229,75,1.0],[117,229,76,1.0],[117,229,77,1.0],[117,229,78,1.0],[117,229,79,1.0],[117,230,64,1.0],[117,230,65,1.0],[117,230,66,1.0],[117,230,67,1.0],[117,230,68,1.0],[117,230,69,1.0],[117,230,70,1.0],[117,230,71,1.0],[117,230,72,1.0],[117,230,73,1.0],[117,230,74,1.0],[117,230,75,1.0],[117,230,76,1.0],[117,230,77,1.0],[117,230,78,1.0],[117,230,79,1.0],[117,231,64,1.0],[117,231,65,1.0],[117,231,66,1.0],[117,231,67,1.0],[117,231,68,1.0],[117,231,69,1.0],[117,231,70,1.0],[117,231,71,1.0],[117,231,72,1.0],[117,231,73,1.0],[117,231,74,1.0],[117,231,75,1.0],[117,231,76,1.0],[117,231,77,1.0],[117,231,78,1.0],[117,231,79,1.0],[117,232,64,1.0],[117,232,65,1.0],[117,232,66,1.0],[117,232,67,1.0],[117,232,68,1.0],[117,232,69,1.0],[117,232,70,1.0],[117,232,71,1.0],[117,232,72,1.0],[117,232,73,1.0],[117,232,74,1.0],[117,232,75,1.0],[117,232,76,1.0],[117,232,77,1.0],[117,232,78,1.0],[117,232,79,1.0],[117,233,64,1.0],[117,233,65,1.0],[117,233,66,1.0],[117,233,67,1.0],[117,233,68,1.0],[117,233,69,1.0],[117,233,70,1.0],[117,233,71,1.0],[117,233,72,1.0],[117,233,73,1.0],[117,233,74,1.0],[117,233,75,1.0],[117,233,76,1.0],[117,233,77,1.0],[117,233,78,1.0],[117,233,79,1.0],[117,234,64,1.0],[117,234,65,1.0],[117,234,66,1.0],[117,234,67,1.0],[117,234,68,1.0],[117,234,69,1.0],[117,234,70,1.0],[117,234,71,1.0],[117,234,72,1.0],[117,234,73,1.0],[117,234,74,1.0],[117,234,75,1.0],[117,234,76,1.0],[117,234,77,1.0],[117,234,78,1.0],[117,234,79,1.0],[117,235,64,1.0],[117,235,65,1.0],[117,235,66,1.0],[117,235,67,1.0],[117,235,68,1.0],[117,235,69,1.0],[117,235,70,1.0],[117,235,71,1.0],[117,235,72,1.0],[117,235,73,1.0],[117,235,74,1.0],[117,235,75,1.0],[117,235,76,1.0],[117,235,77,1.0],[117,235,78,1.0],[117,235,79,1.0],[117,236,64,1.0],[117,236,65,1.0],[117,236,66,1.0],[117,236,67,1.0],[117,236,68,1.0],[117,236,69,1.0],[117,236,70,1.0],[117,236,71,1.0],[117,236,72,1.0],[117,236,73,1.0],[117,236,74,1.0],[117,236,75,1.0],[117,236,76,1.0],[117,236,77,1.0],[117,236,78,1.0],[117,236,79,1.0],[117,237,64,1.0],[117,237,65,1.0],[117,237,66,1.0],[117,237,67,1.0],[117,237,68,1.0],[117,237,69,1.0],[117,237,70,1.0],[117,237,71,1.0],[117,237,72,1.0],[117,237,73,1.0],[117,237,74,1.0],[117,237,75,1.0],[117,237,76,1.0],[117,237,77,1.0],[117,237,78,1.0],[117,237,79,1.0],[117,238,64,1.0],[117,238,65,1.0],[117,238,66,1.0],[117,238,67,1.0],[117,238,68,1.0],[117,238,69,1.0],[117,238,70,1.0],[117,238,71,1.0],[117,238,72,1.0],[117,238,73,1.0],[117,238,74,1.0],[117,238,75,1.0],[117,238,76,1.0],[117,238,77,1.0],[117,238,78,1.0],[117,238,79,1.0],[117,239,64,1.0],[117,239,65,1.0],[117,239,66,1.0],[117,239,67,1.0],[117,239,68,1.0],[117,239,69,1.0],[117,239,70,1.0],[117,239,71,1.0],[117,239,72,1.0],[117,239,73,1.0],[117,239,74,1.0],[117,239,75,1.0],[117,239,76,1.0],[117,239,77,1.0],[117,239,78,1.0],[117,239,79,1.0],[117,240,64,1.0],[117,240,65,1.0],[117,240,66,1.0],[117,240,67,1.0],[117,240,68,1.0],[117,240,69,1.0],[117,240,70,1.0],[117,240,71,1.0],[117,240,72,1.0],[117,240,73,1.0],[117,240,74,1.0],[117,240,75,1.0],[117,240,76,1.0],[117,240,77,1.0],[117,240,78,1.0],[117,240,79,1.0],[117,241,64,1.0],[117,241,65,1.0],[117,241,66,1.0],[117,241,67,1.0],[117,241,68,1.0],[117,241,69,1.0],[117,241,70,1.0],[117,241,71,1.0],[117,241,72,1.0],[117,241,73,1.0],[117,241,74,1.0],[117,241,75,1.0],[117,241,76,1.0],[117,241,77,1.0],[117,241,78,1.0],[117,241,79,1.0],[117,242,64,1.0],[117,242,65,1.0],[117,242,66,1.0],[117,242,67,1.0],[117,242,68,1.0],[117,242,69,1.0],[117,242,70,1.0],[117,242,71,1.0],[117,242,72,1.0],[117,242,73,1.0],[117,242,74,1.0],[117,242,75,1.0],[117,242,76,1.0],[117,242,77,1.0],[117,242,78,1.0],[117,242,79,1.0],[117,243,64,1.0],[117,243,65,1.0],[117,243,66,1.0],[117,243,67,1.0],[117,243,68,1.0],[117,243,69,1.0],[117,243,70,1.0],[117,243,71,1.0],[117,243,72,1.0],[117,243,73,1.0],[117,243,74,1.0],[117,243,75,1.0],[117,243,76,1.0],[117,243,77,1.0],[117,243,78,1.0],[117,243,79,1.0],[117,244,64,1.0],[117,244,65,1.0],[117,244,66,1.0],[117,244,67,1.0],[117,244,68,1.0],[117,244,69,1.0],[117,244,70,1.0],[117,244,71,1.0],[117,244,72,1.0],[117,244,73,1.0],[117,244,74,1.0],[117,244,75,1.0],[117,244,76,1.0],[117,244,77,1.0],[117,244,78,1.0],[117,244,79,1.0],[117,245,64,1.0],[117,245,65,1.0],[117,245,66,1.0],[117,245,67,1.0],[117,245,68,1.0],[117,245,69,1.0],[117,245,70,1.0],[117,245,71,1.0],[117,245,72,1.0],[117,245,73,1.0],[117,245,74,1.0],[117,245,75,1.0],[117,245,76,1.0],[117,245,77,1.0],[117,245,78,1.0],[117,245,79,1.0],[117,246,64,1.0],[117,246,65,1.0],[117,246,66,1.0],[117,246,67,1.0],[117,246,68,1.0],[117,246,69,1.0],[117,246,70,1.0],[117,246,71,1.0],[117,246,72,1.0],[117,246,73,1.0],[117,246,74,1.0],[117,246,75,1.0],[117,246,76,1.0],[117,246,77,1.0],[117,246,78,1.0],[117,246,79,1.0],[117,247,64,1.0],[117,247,65,1.0],[117,247,66,1.0],[117,247,67,1.0],[117,247,68,1.0],[117,247,69,1.0],[117,247,70,1.0],[117,247,71,1.0],[117,247,72,1.0],[117,247,73,1.0],[117,247,74,1.0],[117,247,75,1.0],[117,247,76,1.0],[117,247,77,1.0],[117,247,78,1.0],[117,247,79,1.0],[117,248,64,1.0],[117,248,65,1.0],[117,248,66,1.0],[117,248,67,1.0],[117,248,68,1.0],[117,248,69,1.0],[117,248,70,1.0],[117,248,71,1.0],[117,248,72,1.0],[117,248,73,1.0],[117,248,74,1.0],[117,248,75,1.0],[117,248,76,1.0],[117,248,77,1.0],[117,248,78,1.0],[117,248,79,1.0],[117,249,64,1.0],[117,249,65,1.0],[117,249,66,1.0],[117,249,67,1.0],[117,249,68,1.0],[117,249,69,1.0],[117,249,70,1.0],[117,249,71,1.0],[117,249,72,1.0],[117,249,73,1.0],[117,249,74,1.0],[117,249,75,1.0],[117,249,76,1.0],[117,249,77,1.0],[117,249,78,1.0],[117,249,79,1.0],[117,250,64,1.0],[117,250,65,1.0],[117,250,66,1.0],[117,250,67,1.0],[117,250,68,1.0],[117,250,69,1.0],[117,250,70,1.0],[117,250,71,1.0],[117,250,72,1.0],[117,250,73,1.0],[117,250,74,1.0],[117,250,75,1.0],[117,250,76,1.0],[117,250,77,1.0],[117,250,78,1.0],[117,250,79,1.0],[117,251,64,1.0],[117,251,65,1.0],[117,251,66,1.0],[117,251,67,1.0],[117,251,68,1.0],[117,251,69,1.0],[117,251,70,1.0],[117,251,71,1.0],[117,251,72,1.0],[117,251,73,1.0],[117,251,74,1.0],[117,251,75,1.0],[117,251,76,1.0],[117,251,77,1.0],[117,251,78,1.0],[117,251,79,1.0],[117,252,64,1.0],[117,252,65,1.0],[117,252,66,1.0],[117,252,67,1.0],[117,252,68,1.0],[117,252,69,1.0],[117,252,70,1.0],[117,252,71,1.0],[117,252,72,1.0],[117,252,73,1.0],[117,252,74,1.0],[117,252,75,1.0],[117,252,76,1.0],[117,252,77,1.0],[117,252,78,1.0],[117,252,79,1.0],[117,253,64,1.0],[117,253,65,1.0],[117,253,66,1.0],[117,253,67,1.0],[117,253,68,1.0],[117,253,69,1.0],[117,253,70,1.0],[117,253,71,1.0],[117,253,72,1.0],[117,253,73,1.0],[117,253,74,1.0],[117,253,75,1.0],[117,253,76,1.0],[117,253,77,1.0],[117,253,78,1.0],[117,253,79,1.0],[117,254,64,1.0],[117,254,65,1.0],[117,254,66,1.0],[117,254,67,1.0],[117,254,68,1.0],[117,254,69,1.0],[117,254,70,1.0],[117,254,71,1.0],[117,254,72,1.0],[117,254,73,1.0],[117,254,74,1.0],[117,254,75,1.0],[117,254,76,1.0],[117,254,77,1.0],[117,254,78,1.0],[117,254,79,1.0],[117,255,64,1.0],[117,255,65,1.0],[117,255,66,1.0],[117,255,67,1.0],[117,255,68,1.0],[117,255,69,1.0],[117,255,70,1.0],[117,255,71,1.0],[117,255,72,1.0],[117,255,73,1.0],[117,255,74,1.0],[117,255,75,1.0],[117,255,76,1.0],[117,255,77,1.0],[117,255,78,1.0],[117,255,79,1.0],[117,256,64,1.0],[117,256,65,1.0],[117,256,66,1.0],[117,256,67,1.0],[117,256,68,1.0],[117,256,69,1.0],[117,256,70,1.0],[117,256,71,1.0],[117,256,72,1.0],[117,256,73,1.0],[117,256,74,1.0],[117,256,75,1.0],[117,256,76,1.0],[117,256,77,1.0],[117,256,78,1.0],[117,256,79,1.0],[117,257,64,1.0],[117,257,65,1.0],[117,257,66,1.0],[117,257,67,1.0],[117,257,68,1.0],[117,257,69,1.0],[117,257,70,1.0],[117,257,71,1.0],[117,257,72,1.0],[117,257,73,1.0],[117,257,74,1.0],[117,257,75,1.0],[117,257,76,1.0],[117,257,77,1.0],[117,257,78,1.0],[117,257,79,1.0],[117,258,64,1.0],[117,258,65,1.0],[117,258,66,1.0],[117,258,67,1.0],[117,258,68,1.0],[117,258,69,1.0],[117,258,70,1.0],[117,258,71,1.0],[117,258,72,1.0],[117,258,73,1.0],[117,258,74,1.0],[117,258,75,1.0],[117,258,76,1.0],[117,258,77,1.0],[117,258,78,1.0],[117,258,79,1.0],[117,259,64,1.0],[117,259,65,1.0],[117,259,66,1.0],[117,259,67,1.0],[117,259,68,1.0],[117,259,69,1.0],[117,259,70,1.0],[117,259,71,1.0],[117,259,72,1.0],[117,259,73,1.0],[117,259,74,1.0],[117,259,75,1.0],[117,259,76,1.0],[117,259,77,1.0],[117,259,78,1.0],[117,259,79,1.0],[117,260,64,1.0],[117,260,65,1.0],[117,260,66,1.0],[117,260,67,1.0],[117,260,68,1.0],[117,260,69,1.0],[117,260,70,1.0],[117,260,71,1.0],[117,260,72,1.0],[117,260,73,1.0],[117,260,74,1.0],[117,260,75,1.0],[117,260,76,1.0],[117,260,77,1.0],[117,260,78,1.0],[117,260,79,1.0],[117,261,64,1.0],[117,261,65,1.0],[117,261,66,1.0],[117,261,67,1.0],[117,261,68,1.0],[117,261,69,1.0],[117,261,70,1.0],[117,261,71,1.0],[117,261,72,1.0],[117,261,73,1.0],[117,261,74,1.0],[117,261,75,1.0],[117,261,76,1.0],[117,261,77,1.0],[117,261,78,1.0],[117,261,79,1.0],[117,262,64,1.0],[117,262,65,1.0],[117,262,66,1.0],[117,262,67,1.0],[117,262,68,1.0],[117,262,69,1.0],[117,262,70,1.0],[117,262,71,1.0],[117,262,72,1.0],[117,262,73,1.0],[117,262,74,1.0],[117,262,75,1.0],[117,262,76,1.0],[117,262,77,1.0],[117,262,78,1.0],[117,262,79,1.0],[117,263,64,1.0],[117,263,65,1.0],[117,263,66,1.0],[117,263,67,1.0],[117,263,68,1.0],[117,263,69,1.0],[117,263,70,1.0],[117,263,71,1.0],[117,263,72,1.0],[117,263,73,1.0],[117,263,74,1.0],[117,263,75,1.0],[117,263,76,1.0],[117,263,77,1.0],[117,263,78,1.0],[117,263,79,1.0],[117,264,64,1.0],[117,264,65,1.0],[117,264,66,1.0],[117,264,67,1.0],[117,264,68,1.0],[117,264,69,1.0],[117,264,70,1.0],[117,264,71,1.0],[117,264,72,1.0],[117,264,73,1.0],[117,264,74,1.0],[117,264,75,1.0],[117,264,76,1.0],[117,264,77,1.0],[117,264,78,1.0],[117,264,79,1.0],[117,265,64,1.0],[117,265,65,1.0],[117,265,66,1.0],[117,265,67,1.0],[117,265,68,1.0],[117,265,69,1.0],[117,265,70,1.0],[117,265,71,1.0],[117,265,72,1.0],[117,265,73,1.0],[117,265,74,1.0],[117,265,75,1.0],[117,265,76,1.0],[117,265,77,1.0],[117,265,78,1.0],[117,265,79,1.0],[117,266,64,1.0],[117,266,65,1.0],[117,266,66,1.0],[117,266,67,1.0],[117,266,68,1.0],[117,266,69,1.0],[117,266,70,1.0],[117,266,71,1.0],[117,266,72,1.0],[117,266,73,1.0],[117,266,74,1.0],[117,266,75,1.0],[117,266,76,1.0],[117,266,77,1.0],[117,266,78,1.0],[117,266,79,1.0],[117,267,64,1.0],[117,267,65,1.0],[117,267,66,1.0],[117,267,67,1.0],[117,267,68,1.0],[117,267,69,1.0],[117,267,70,1.0],[117,267,71,1.0],[117,267,72,1.0],[117,267,73,1.0],[117,267,74,1.0],[117,267,75,1.0],[117,267,76,1.0],[117,267,77,1.0],[117,267,78,1.0],[117,267,79,1.0],[117,268,64,1.0],[117,268,65,1.0],[117,268,66,1.0],[117,268,67,1.0],[117,268,68,1.0],[117,268,69,1.0],[117,268,70,1.0],[117,268,71,1.0],[117,268,72,1.0],[117,268,73,1.0],[117,268,74,1.0],[117,268,75,1.0],[117,268,76,1.0],[117,268,77,1.0],[117,268,78,1.0],[117,268,79,1.0],[117,269,64,1.0],[117,269,65,1.0],[117,269,66,1.0],[117,269,67,1.0],[117,269,68,1.0],[117,269,69,1.0],[117,269,70,1.0],[117,269,71,1.0],[117,269,72,1.0],[117,269,73,1.0],[117,269,74,1.0],[117,269,75,1.0],[117,269,76,1.0],[117,269,77,1.0],[117,269,78,1.0],[117,269,79,1.0],[117,270,64,1.0],[117,270,65,1.0],[117,270,66,1.0],[117,270,67,1.0],[117,270,68,1.0],[117,270,69,1.0],[117,270,70,1.0],[117,270,71,1.0],[117,270,72,1.0],[117,270,73,1.0],[117,270,74,1.0],[117,270,75,1.0],[117,270,76,1.0],[117,270,77,1.0],[117,270,78,1.0],[117,270,79,1.0],[117,271,64,1.0],[117,271,65,1.0],[117,271,66,1.0],[117,271,67,1.0],[117,271,68,1.0],[117,271,69,1.0],[117,271,70,1.0],[117,271,71,1.0],[117,271,72,1.0],[117,271,73,1.0],[117,271,74,1.0],[117,271,75,1.0],[117,271,76,1.0],[117,271,77,1.0],[117,271,78,1.0],[117,271,79,1.0],[117,272,64,1.0],[117,272,65,1.0],[117,272,66,1.0],[117,272,67,1.0],[117,272,68,1.0],[117,272,69,1.0],[117,272,70,1.0],[117,272,71,1.0],[117,272,72,1.0],[117,272,73,1.0],[117,272,74,1.0],[117,272,75,1.0],[117,272,76,1.0],[117,272,77,1.0],[117,272,78,1.0],[117,272,79,1.0],[117,273,64,1.0],[117,273,65,1.0],[117,273,66,1.0],[117,273,67,1.0],[117,273,68,1.0],[117,273,69,1.0],[117,273,70,1.0],[117,273,71,1.0],[117,273,72,1.0],[117,273,73,1.0],[117,273,74,1.0],[117,273,75,1.0],[117,273,76,1.0],[117,273,77,1.0],[117,273,78,1.0],[117,273,79,1.0],[117,274,64,1.0],[117,274,65,1.0],[117,274,66,1.0],[117,274,67,1.0],[117,274,68,1.0],[117,274,69,1.0],[117,274,70,1.0],[117,274,71,1.0],[117,274,72,1.0],[117,274,73,1.0],[117,274,74,1.0],[117,274,75,1.0],[117,274,76,1.0],[117,274,77,1.0],[117,274,78,1.0],[117,274,79,1.0],[117,275,64,1.0],[117,275,65,1.0],[117,275,66,1.0],[117,275,67,1.0],[117,275,68,1.0],[117,275,69,1.0],[117,275,70,1.0],[117,275,71,1.0],[117,275,72,1.0],[117,275,73,1.0],[117,275,74,1.0],[117,275,75,1.0],[117,275,76,1.0],[117,275,77,1.0],[117,275,78,1.0],[117,275,79,1.0],[117,276,64,1.0],[117,276,65,1.0],[117,276,66,1.0],[117,276,67,1.0],[117,276,68,1.0],[117,276,69,1.0],[117,276,70,1.0],[117,276,71,1.0],[117,276,72,1.0],[117,276,73,1.0],[117,276,74,1.0],[117,276,75,1.0],[117,276,76,1.0],[117,276,77,1.0],[117,276,78,1.0],[117,276,79,1.0],[117,277,64,1.0],[117,277,65,1.0],[117,277,66,1.0],[117,277,67,1.0],[117,277,68,1.0],[117,277,69,1.0],[117,277,70,1.0],[117,277,71,1.0],[117,277,72,1.0],[117,277,73,1.0],[117,277,74,1.0],[117,277,75,1.0],[117,277,76,1.0],[117,277,77,1.0],[117,277,78,1.0],[117,277,79,1.0],[117,278,64,1.0],[117,278,65,1.0],[117,278,66,1.0],[117,278,67,1.0],[117,278,68,1.0],[117,278,69,1.0],[117,278,70,1.0],[117,278,71,1.0],[117,278,72,1.0],[117,278,73,1.0],[117,278,74,1.0],[117,278,75,1.0],[117,278,76,1.0],[117,278,77,1.0],[117,278,78,1.0],[117,278,79,1.0],[117,279,64,1.0],[117,279,65,1.0],[117,279,66,1.0],[117,279,67,1.0],[117,279,68,1.0],[117,279,69,1.0],[117,279,70,1.0],[117,279,71,1.0],[117,279,72,1.0],[117,279,73,1.0],[117,279,74,1.0],[117,279,75,1.0],[117,279,76,1.0],[117,279,77,1.0],[117,279,78,1.0],[117,279,79,1.0],[117,280,64,1.0],[117,280,65,1.0],[117,280,66,1.0],[117,280,67,1.0],[117,280,68,1.0],[117,280,69,1.0],[117,280,70,1.0],[117,280,71,1.0],[117,280,72,1.0],[117,280,73,1.0],[117,280,74,1.0],[117,280,75,1.0],[117,280,76,1.0],[117,280,77,1.0],[117,280,78,1.0],[117,280,79,1.0],[117,281,64,1.0],[117,281,65,1.0],[117,281,66,1.0],[117,281,67,1.0],[117,281,68,1.0],[117,281,69,1.0],[117,281,70,1.0],[117,281,71,1.0],[117,281,72,1.0],[117,281,73,1.0],[117,281,74,1.0],[117,281,75,1.0],[117,281,76,1.0],[117,281,77,1.0],[117,281,78,1.0],[117,281,79,1.0],[117,282,64,1.0],[117,282,65,1.0],[117,282,66,1.0],[117,282,67,1.0],[117,282,68,1.0],[117,282,69,1.0],[117,282,70,1.0],[117,282,71,1.0],[117,282,72,1.0],[117,282,73,1.0],[117,282,74,1.0],[117,282,75,1.0],[117,282,76,1.0],[117,282,77,1.0],[117,282,78,1.0],[117,282,79,1.0],[117,283,64,1.0],[117,283,65,1.0],[117,283,66,1.0],[117,283,67,1.0],[117,283,68,1.0],[117,283,69,1.0],[117,283,70,1.0],[117,283,71,1.0],[117,283,72,1.0],[117,283,73,1.0],[117,283,74,1.0],[117,283,75,1.0],[117,283,76,1.0],[117,283,77,1.0],[117,283,78,1.0],[117,283,79,1.0],[117,284,64,1.0],[117,284,65,1.0],[117,284,66,1.0],[117,284,67,1.0],[117,284,68,1.0],[117,284,69,1.0],[117,284,70,1.0],[117,284,71,1.0],[117,284,72,1.0],[117,284,73,1.0],[117,284,74,1.0],[117,284,75,1.0],[117,284,76,1.0],[117,284,77,1.0],[117,284,78,1.0],[117,284,79,1.0],[117,285,64,1.0],[117,285,65,1.0],[117,285,66,1.0],[117,285,67,1.0],[117,285,68,1.0],[117,285,69,1.0],[117,285,70,1.0],[117,285,71,1.0],[117,285,72,1.0],[117,285,73,1.0],[117,285,74,1.0],[117,285,75,1.0],[117,285,76,1.0],[117,285,77,1.0],[117,285,78,1.0],[117,285,79,1.0],[117,286,64,1.0],[117,286,65,1.0],[117,286,66,1.0],[117,286,67,1.0],[117,286,68,1.0],[117,286,69,1.0],[117,286,70,1.0],[117,286,71,1.0],[117,286,72,1.0],[117,286,73,1.0],[117,286,74,1.0],[117,286,75,1.0],[117,286,76,1.0],[117,286,77,1.0],[117,286,78,1.0],[117,286,79,1.0],[117,287,64,1.0],[117,287,65,1.0],[117,287,66,1.0],[117,287,67,1.0],[117,287,68,1.0],[117,287,69,1.0],[117,287,70,1.0],[117,287,71,1.0],[117,287,72,1.0],[117,287,73,1.0],[117,287,74,1.0],[117,287,75,1.0],[117,287,76,1.0],[117,287,77,1.0],[117,287,78,1.0],[117,287,79,1.0],[117,288,64,1.0],[117,288,65,1.0],[117,288,66,1.0],[117,288,67,1.0],[117,288,68,1.0],[117,288,69,1.0],[117,288,70,1.0],[117,288,71,1.0],[117,288,72,1.0],[117,288,73,1.0],[117,288,74,1.0],[117,288,75,1.0],[117,288,76,1.0],[117,288,77,1.0],[117,288,78,1.0],[117,288,79,1.0],[117,289,64,1.0],[117,289,65,1.0],[117,289,66,1.0],[117,289,67,1.0],[117,289,68,1.0],[117,289,69,1.0],[117,289,70,1.0],[117,289,71,1.0],[117,289,72,1.0],[117,289,73,1.0],[117,289,74,1.0],[117,289,75,1.0],[117,289,76,1.0],[117,289,77,1.0],[117,289,78,1.0],[117,289,79,1.0],[117,290,64,1.0],[117,290,65,1.0],[117,290,66,1.0],[117,290,67,1.0],[117,290,68,1.0],[117,290,69,1.0],[117,290,70,1.0],[117,290,71,1.0],[117,290,72,1.0],[117,290,73,1.0],[117,290,74,1.0],[117,290,75,1.0],[117,290,76,1.0],[117,290,77,1.0],[117,290,78,1.0],[117,290,79,1.0],[117,291,64,1.0],[117,291,65,1.0],[117,291,66,1.0],[117,291,67,1.0],[117,291,68,1.0],[117,291,69,1.0],[117,291,70,1.0],[117,291,71,1.0],[117,291,72,1.0],[117,291,73,1.0],[117,291,74,1.0],[117,291,75,1.0],[117,291,76,1.0],[117,291,77,1.0],[117,291,78,1.0],[117,291,79,1.0],[117,292,64,1.0],[117,292,65,1.0],[117,292,66,1.0],[117,292,67,1.0],[117,292,68,1.0],[117,292,69,1.0],[117,292,70,1.0],[117,292,71,1.0],[117,292,72,1.0],[117,292,73,1.0],[117,292,74,1.0],[117,292,75,1.0],[117,292,76,1.0],[117,292,77,1.0],[117,292,78,1.0],[117,292,79,1.0],[117,293,64,1.0],[117,293,65,1.0],[117,293,66,1.0],[117,293,67,1.0],[117,293,68,1.0],[117,293,69,1.0],[117,293,70,1.0],[117,293,71,1.0],[117,293,72,1.0],[117,293,73,1.0],[117,293,74,1.0],[117,293,75,1.0],[117,293,76,1.0],[117,293,77,1.0],[117,293,78,1.0],[117,293,79,1.0],[117,294,64,1.0],[117,294,65,1.0],[117,294,66,1.0],[117,294,67,1.0],[117,294,68,1.0],[117,294,69,1.0],[117,294,70,1.0],[117,294,71,1.0],[117,294,72,1.0],[117,294,73,1.0],[117,294,74,1.0],[117,294,75,1.0],[117,294,76,1.0],[117,294,77,1.0],[117,294,78,1.0],[117,294,79,1.0],[117,295,64,1.0],[117,295,65,1.0],[117,295,66,1.0],[117,295,67,1.0],[117,295,68,1.0],[117,295,69,1.0],[117,295,70,1.0],[117,295,71,1.0],[117,295,72,1.0],[117,295,73,1.0],[117,295,74,1.0],[117,295,75,1.0],[117,295,76,1.0],[117,295,77,1.0],[117,295,78,1.0],[117,295,79,1.0],[117,296,64,1.0],[117,296,65,1.0],[117,296,66,1.0],[117,296,67,1.0],[117,296,68,1.0],[117,296,69,1.0],[117,296,70,1.0],[117,296,71,1.0],[117,296,72,1.0],[117,296,73,1.0],[117,296,74,1.0],[117,296,75,1.0],[117,296,76,1.0],[117,296,77,1.0],[117,296,78,1.0],[117,296,79,1.0],[117,297,64,1.0],[117,297,65,1.0],[117,297,66,1.0],[117,297,67,1.0],[117,297,68,1.0],[117,297,69,1.0],[117,297,70,1.0],[117,297,71,1.0],[117,297,72,1.0],[117,297,73,1.0],[117,297,74,1.0],[117,297,75,1.0],[117,297,76,1.0],[117,297,77,1.0],[117,297,78,1.0],[117,297,79,1.0],[117,298,64,1.0],[117,298,65,1.0],[117,298,66,1.0],[117,298,67,1.0],[117,298,68,1.0],[117,298,69,1.0],[117,298,70,1.0],[117,298,71,1.0],[117,298,72,1.0],[117,298,73,1.0],[117,298,74,1.0],[117,298,75,1.0],[117,298,76,1.0],[117,298,77,1.0],[117,298,78,1.0],[117,298,79,1.0],[117,299,64,1.0],[117,299,65,1.0],[117,299,66,1.0],[117,299,67,1.0],[117,299,68,1.0],[117,299,69,1.0],[117,299,70,1.0],[117,299,71,1.0],[117,299,72,1.0],[117,299,73,1.0],[117,299,74,1.0],[117,299,75,1.0],[117,299,76,1.0],[117,299,77,1.0],[117,299,78,1.0],[117,299,79,1.0],[117,300,64,1.0],[117,300,65,1.0],[117,300,66,1.0],[117,300,67,1.0],[117,300,68,1.0],[117,300,69,1.0],[117,300,70,1.0],[117,300,71,1.0],[117,300,72,1.0],[117,300,73,1.0],[117,300,74,1.0],[117,300,75,1.0],[117,300,76,1.0],[117,300,77,1.0],[117,300,78,1.0],[117,300,79,1.0],[117,301,64,1.0],[117,301,65,1.0],[117,301,66,1.0],[117,301,67,1.0],[117,301,68,1.0],[117,301,69,1.0],[117,301,70,1.0],[117,301,71,1.0],[117,301,72,1.0],[117,301,73,1.0],[117,301,74,1.0],[117,301,75,1.0],[117,301,76,1.0],[117,301,77,1.0],[117,301,78,1.0],[117,301,79,1.0],[117,302,64,1.0],[117,302,65,1.0],[117,302,66,1.0],[117,302,67,1.0],[117,302,68,1.0],[117,302,69,1.0],[117,302,70,1.0],[117,302,71,1.0],[117,302,72,1.0],[117,302,73,1.0],[117,302,74,1.0],[117,302,75,1.0],[117,302,76,1.0],[117,302,77,1.0],[117,302,78,1.0],[117,302,79,1.0],[117,303,64,1.0],[117,303,65,1.0],[117,303,66,1.0],[117,303,67,1.0],[117,303,68,1.0],[117,303,69,1.0],[117,303,70,1.0],[117,303,71,1.0],[117,303,72,1.0],[117,303,73,1.0],[117,303,74,1.0],[117,303,75,1.0],[117,303,76,1.0],[117,303,77,1.0],[117,303,78,1.0],[117,303,79,1.0],[117,304,64,1.0],[117,304,65,1.0],[117,304,66,1.0],[117,304,67,1.0],[117,304,68,1.0],[117,304,69,1.0],[117,304,70,1.0],[117,304,71,1.0],[117,304,72,1.0],[117,304,73,1.0],[117,304,74,1.0],[117,304,75,1.0],[117,304,76,1.0],[117,304,77,1.0],[117,304,78,1.0],[117,304,79,1.0],[117,305,64,1.0],[117,305,65,1.0],[117,305,66,1.0],[117,305,67,1.0],[117,305,68,1.0],[117,305,69,1.0],[117,305,70,1.0],[117,305,71,1.0],[117,305,72,1.0],[117,305,73,1.0],[117,305,74,1.0],[117,305,75,1.0],[117,305,76,1.0],[117,305,77,1.0],[117,305,78,1.0],[117,305,79,1.0],[117,306,64,1.0],[117,306,65,1.0],[117,306,66,1.0],[117,306,67,1.0],[117,306,68,1.0],[117,306,69,1.0],[117,306,70,1.0],[117,306,71,1.0],[117,306,72,1.0],[117,306,73,1.0],[117,306,74,1.0],[117,306,75,1.0],[117,306,76,1.0],[117,306,77,1.0],[117,306,78,1.0],[117,306,79,1.0],[117,307,64,1.0],[117,307,65,1.0],[117,307,66,1.0],[117,307,67,1.0],[117,307,68,1.0],[117,307,69,1.0],[117,307,70,1.0],[117,307,71,1.0],[117,307,72,1.0],[117,307,73,1.0],[117,307,74,1.0],[117,307,75,1.0],[117,307,76,1.0],[117,307,77,1.0],[117,307,78,1.0],[117,307,79,1.0],[117,308,64,1.0],[117,308,65,1.0],[117,308,66,1.0],[117,308,67,1.0],[117,308,68,1.0],[117,308,69,1.0],[117,308,70,1.0],[117,308,71,1.0],[117,308,72,1.0],[117,308,73,1.0],[117,308,74,1.0],[117,308,75,1.0],[117,308,76,1.0],[117,308,77,1.0],[117,308,78,1.0],[117,308,79,1.0],[117,309,64,1.0],[117,309,65,1.0],[117,309,66,1.0],[117,309,67,1.0],[117,309,68,1.0],[117,309,69,1.0],[117,309,70,1.0],[117,309,71,1.0],[117,309,72,1.0],[117,309,73,1.0],[117,309,74,1.0],[117,309,75,1.0],[117,309,76,1.0],[117,309,77,1.0],[117,309,78,1.0],[117,309,79,1.0],[117,310,64,1.0],[117,310,65,1.0],[117,310,66,1.0],[117,310,67,1.0],[117,310,68,1.0],[117,310,69,1.0],[117,310,70,1.0],[117,310,71,1.0],[117,310,72,1.0],[117,310,73,1.0],[117,310,74,1.0],[117,310,75,1.0],[117,310,76,1.0],[117,310,77,1.0],[117,310,78,1.0],[117,310,79,1.0],[117,311,64,1.0],[117,311,65,1.0],[117,311,66,1.0],[117,311,67,1.0],[117,311,68,1.0],[117,311,69,1.0],[117,311,70,1.0],[117,311,71,1.0],[117,311,72,1.0],[117,311,73,1.0],[117,311,74,1.0],[117,311,75,1.0],[117,311,76,1.0],[117,311,77,1.0],[117,311,78,1.0],[117,311,79,1.0],[117,312,64,1.0],[117,312,65,1.0],[117,312,66,1.0],[117,312,67,1.0],[117,312,68,1.0],[117,312,69,1.0],[117,312,70,1.0],[117,312,71,1.0],[117,312,72,1.0],[117,312,73,1.0],[117,312,74,1.0],[117,312,75,1.0],[117,312,76,1.0],[117,312,77,1.0],[117,312,78,1.0],[117,312,79,1.0],[117,313,64,1.0],[117,313,65,1.0],[117,313,66,1.0],[117,313,67,1.0],[117,313,68,1.0],[117,313,69,1.0],[117,313,70,1.0],[117,313,71,1.0],[117,313,72,1.0],[117,313,73,1.0],[117,313,74,1.0],[117,313,75,1.0],[117,313,76,1.0],[117,313,77,1.0],[117,313,78,1.0],[117,313,79,1.0],[117,314,64,1.0],[117,314,65,1.0],[117,314,66,1.0],[117,314,67,1.0],[117,314,68,1.0],[117,314,69,1.0],[117,314,70,1.0],[117,314,71,1.0],[117,314,72,1.0],[117,314,73,1.0],[117,314,74,1.0],[117,314,75,1.0],[117,314,76,1.0],[117,314,77,1.0],[117,314,78,1.0],[117,314,79,1.0],[117,315,64,1.0],[117,315,65,1.0],[117,315,66,1.0],[117,315,67,1.0],[117,315,68,1.0],[117,315,69,1.0],[117,315,70,1.0],[117,315,71,1.0],[117,315,72,1.0],[117,315,73,1.0],[117,315,74,1.0],[117,315,75,1.0],[117,315,76,1.0],[117,315,77,1.0],[117,315,78,1.0],[117,315,79,1.0],[117,316,64,1.0],[117,316,65,1.0],[117,316,66,1.0],[117,316,67,1.0],[117,316,68,1.0],[117,316,69,1.0],[117,316,70,1.0],[117,316,71,1.0],[117,316,72,1.0],[117,316,73,1.0],[117,316,74,1.0],[117,316,75,1.0],[117,316,76,1.0],[117,316,77,1.0],[117,316,78,1.0],[117,316,79,1.0],[117,317,64,1.0],[117,317,65,1.0],[117,317,66,1.0],[117,317,67,1.0],[117,317,68,1.0],[117,317,69,1.0],[117,317,70,1.0],[117,317,71,1.0],[117,317,72,1.0],[117,317,73,1.0],[117,317,74,1.0],[117,317,75,1.0],[117,317,76,1.0],[117,317,77,1.0],[117,317,78,1.0],[117,317,79,1.0],[117,318,64,1.0],[117,318,65,1.0],[117,318,66,1.0],[117,318,67,1.0],[117,318,68,1.0],[117,318,69,1.0],[117,318,70,1.0],[117,318,71,1.0],[117,318,72,1.0],[117,318,73,1.0],[117,318,74,1.0],[117,318,75,1.0],[117,318,76,1.0],[117,318,77,1.0],[117,318,78,1.0],[117,318,79,1.0],[117,319,64,1.0],[117,319,65,1.0],[117,319,66,1.0],[117,319,67,1.0],[117,319,68,1.0],[117,319,69,1.0],[117,319,70,1.0],[117,319,71,1.0],[117,319,72,1.0],[117,319,73,1.0],[117,319,74,1.0],[117,319,75,1.0],[117,319,76,1.0],[117,319,77,1.0],[117,319,78,1.0],[117,319,79,1.0],[118,-64,64,1.0],[118,-64,65,1.0],[118,-64,66,1.0],[118,-64,67,1.0],[118,-64,68,1.0],[118,-64,69,1.0],[118,-64,70,1.0],[118,-64,71,1.0],[118,-64,72,1.0],[118,-64,73,1.0],[118,-64,74,1.0],[118,-64,75,1.0],[118,-64,76,1.0],[118,-64,77,1.0],[118,-64,78,1.0],[118,-64,79,1.0],[118,-63,64,1.0],[118,-63,65,1.0],[118,-63,66,1.0],[118,-63,67,1.0],[118,-63,68,1.0],[118,-63,69,1.0],[118,-63,70,1.0],[118,-63,71,1.0],[118,-63,72,1.0],[118,-63,73,1.0],[118,-63,74,1.0],[118,-63,75,1.0],[118,-63,76,1.0],[118,-63,77,1.0],[118,-63,78,1.0],[118,-63,79,1.0],[118,-62,64,1.0],[118,-62,65,1.0],[118,-62,66,1.0],[118,-62,67,1.0],[118,-62,68,1.0],[118,-62,69,1.0],[118,-62,70,1.0],[118,-62,71,1.0],[118,-62,72,1.0],[118,-62,73,1.0],[118,-62,74,1.0],[118,-62,75,1.0],[118,-62,76,1.0],[118,-62,77,1.0],[118,-62,78,1.0],[118,-62,79,1.0],[118,-61,64,1.0],[118,-61,65,1.0],[118,-61,66,1.0],[118,-61,67,1.0],[118,-61,68,1.0],[118,-61,69,1.0],[118,-61,70,1.0],[118,-61,71,1.0],[118,-61,72,1.0],[118,-61,73,1.0],[118,-61,74,1.0],[118,-61,75,1.0],[118,-61,76,1.0],[118,-61,77,1.0],[118,-61,78,1.0],[118,-61,79,1.0],[118,-60,64,1.0],[118,-60,65,1.0],[118,-60,66,1.0],[118,-60,67,1.0],[118,-60,68,1.0],[118,-60,69,1.0],[118,-60,70,1.0],[118,-60,71,1.0],[118,-60,72,1.0],[118,-60,73,1.0],[118,-60,74,1.0],[118,-60,75,1.0],[118,-60,76,1.0],[118,-60,77,1.0],[118,-60,78,1.0],[118,-60,79,1.0],[118,-59,64,1.0],[118,-59,65,1.0],[118,-59,66,1.0],[118,-59,67,1.0],[118,-59,68,1.0],[118,-59,69,1.0],[118,-59,70,1.0],[118,-59,71,1.0],[118,-59,72,1.0],[118,-59,73,1.0],[118,-59,74,1.0],[118,-59,75,1.0],[118,-59,76,1.0],[118,-59,77,1.0],[118,-59,78,1.0],[118,-59,79,1.0],[118,-58,64,1.0],[118,-58,65,1.0],[118,-58,66,1.0],[118,-58,67,1.0],[118,-58,68,1.0],[118,-58,69,1.0],[118,-58,70,1.0],[118,-58,71,1.0],[118,-58,72,1.0],[118,-58,73,1.0],[118,-58,74,1.0],[118,-58,75,1.0],[118,-58,76,1.0],[118,-58,77,1.0],[118,-58,78,1.0],[118,-58,79,1.0],[118,-57,64,1.0],[118,-57,65,1.0],[118,-57,66,1.0],[118,-57,67,1.0],[118,-57,68,1.0],[118,-57,69,1.0],[118,-57,70,1.0],[118,-57,71,1.0],[118,-57,72,1.0],[118,-57,73,1.0],[118,-57,74,1.0],[118,-57,75,1.0],[118,-57,76,1.0],[118,-57,77,1.0],[118,-57,78,1.0],[118,-57,79,1.0],[118,-56,64,1.0],[118,-56,65,1.0],[118,-56,66,1.0],[118,-56,67,1.0],[118,-56,68,1.0],[118,-56,69,1.0],[118,-56,70,1.0],[118,-56,71,1.0],[118,-56,72,1.0],[118,-56,73,1.0],[118,-56,74,1.0],[118,-56,75,1.0],[118,-56,76,1.0],[118,-56,77,1.0],[118,-56,78,1.0],[118,-56,79,1.0],[118,-55,64,1.0],[118,-55,65,1.0],[118,-55,66,1.0],[118,-55,67,1.0],[118,-55,68,1.0],[118,-55,69,1.0],[118,-55,70,1.0],[118,-55,71,1.0],[118,-55,72,1.0],[118,-55,73,1.0],[118,-55,74,1.0],[118,-55,75,1.0],[118,-55,76,1.0],[118,-55,77,1.0],[118,-55,78,1.0],[118,-55,79,1.0],[118,-54,64,1.0],[118,-54,65,1.0],[118,-54,66,1.0],[118,-54,67,1.0],[118,-54,68,1.0],[118,-54,69,1.0],[118,-54,70,1.0],[118,-54,71,1.0],[118,-54,72,1.0],[118,-54,73,1.0],[118,-54,74,1.0],[118,-54,75,1.0],[118,-54,76,1.0],[118,-54,77,1.0],[118,-54,78,1.0],[118,-54,79,1.0],[118,-53,64,1.0],[118,-53,65,1.0],[118,-53,66,1.0],[118,-53,67,1.0],[118,-53,68,1.0],[118,-53,69,1.0],[118,-53,70,1.0],[118,-53,71,1.0],[118,-53,72,1.0],[118,-53,73,1.0],[118,-53,74,1.0],[118,-53,75,1.0],[118,-53,76,1.0],[118,-53,77,1.0],[118,-53,78,1.0],[118,-53,79,1.0],[118,-52,64,1.0],[118,-52,65,1.0],[118,-52,66,1.0],[118,-52,67,1.0],[118,-52,68,1.0],[118,-52,69,1.0],[118,-52,70,1.0],[118,-52,71,1.0],[118,-52,72,1.0],[118,-52,73,1.0],[118,-52,74,1.0],[118,-52,75,1.0],[118,-52,76,1.0],[118,-52,77,1.0],[118,-52,78,1.0],[118,-52,79,1.0],[118,-51,64,1.0],[118,-51,65,1.0],[118,-51,66,1.0],[118,-51,67,1.0],[118,-51,68,1.0],[118,-51,69,1.0],[118,-51,70,1.0],[118,-51,71,1.0],[118,-51,72,1.0],[118,-51,73,1.0],[118,-51,74,1.0],[118,-51,75,1.0],[118,-51,76,1.0],[118,-51,77,1.0],[118,-51,78,1.0],[118,-51,79,1.0],[118,-50,64,1.0],[118,-50,65,1.0],[118,-50,66,1.0],[118,-50,67,1.0],[118,-50,68,1.0],[118,-50,69,1.0],[118,-50,70,1.0],[118,-50,71,1.0],[118,-50,72,1.0],[118,-50,73,1.0],[118,-50,74,1.0],[118,-50,75,1.0],[118,-50,76,1.0],[118,-50,77,1.0],[118,-50,78,1.0],[118,-50,79,1.0],[118,-49,64,1.0],[118,-49,65,1.0],[118,-49,66,1.0],[118,-49,67,1.0],[118,-49,68,1.0],[118,-49,69,1.0],[118,-49,70,1.0],[118,-49,71,1.0],[118,-49,72,1.0],[118,-49,73,1.0],[118,-49,74,1.0],[118,-49,75,1.0],[118,-49,76,1.0],[118,-49,77,1.0],[118,-49,78,1.0],[118,-49,79,1.0],[118,-48,64,1.0],[118,-48,65,1.0],[118,-48,66,1.0],[118,-48,67,1.0],[118,-48,68,1.0],[118,-48,69,1.0],[118,-48,70,1.0],[118,-48,71,1.0],[118,-48,72,1.0],[118,-48,73,1.0],[118,-48,74,1.0],[118,-48,75,1.0],[118,-48,76,1.0],[118,-48,77,1.0],[118,-48,78,1.0],[118,-48,79,1.0],[118,-47,64,1.0],[118,-47,65,1.0],[118,-47,66,1.0],[118,-47,67,1.0],[118,-47,68,1.0],[118,-47,69,1.0],[118,-47,70,1.0],[118,-47,71,1.0],[118,-47,72,1.0],[118,-47,73,1.0],[118,-47,74,1.0],[118,-47,75,1.0],[118,-47,76,1.0],[118,-47,77,1.0],[118,-47,78,1.0],[118,-47,79,1.0],[118,-46,64,1.0],[118,-46,65,1.0],[118,-46,66,1.0],[118,-46,67,1.0],[118,-46,68,1.0],[118,-46,69,1.0],[118,-46,70,1.0],[118,-46,71,1.0],[118,-46,72,1.0],[118,-46,73,1.0],[118,-46,74,1.0],[118,-46,75,1.0],[118,-46,76,1.0],[118,-46,77,1.0],[118,-46,78,1.0],[118,-46,79,1.0],[118,-45,64,1.0],[118,-45,65,1.0],[118,-45,66,1.0],[118,-45,67,1.0],[118,-45,68,1.0],[118,-45,69,1.0],[118,-45,70,1.0],[118,-45,71,1.0],[118,-45,72,1.0],[118,-45,73,1.0],[118,-45,74,1.0],[118,-45,75,1.0],[118,-45,76,1.0],[118,-45,77,1.0],[118,-45,78,1.0],[118,-45,79,1.0],[118,-44,64,1.0],[118,-44,65,1.0],[118,-44,66,1.0],[118,-44,67,1.0],[118,-44,68,1.0],[118,-44,69,1.0],[118,-44,70,1.0],[118,-44,71,1.0],[118,-44,72,1.0],[118,-44,73,1.0],[118,-44,74,1.0],[118,-44,75,1.0],[118,-44,76,1.0],[118,-44,77,1.0],[118,-44,78,1.0],[118,-44,79,1.0],[118,-43,64,1.0],[118,-43,65,1.0],[118,-43,66,1.0],[118,-43,67,1.0],[118,-43,68,1.0],[118,-43,69,1.0],[118,-43,70,1.0],[118,-43,71,1.0],[118,-43,72,1.0],[118,-43,73,1.0],[118,-43,74,1.0],[118,-43,75,1.0],[118,-43,76,1.0],[118,-43,77,1.0],[118,-43,78,1.0],[118,-43,79,1.0],[118,-42,64,1.0],[118,-42,65,1.0],[118,-42,66,1.0],[118,-42,67,1.0],[118,-42,68,1.0],[118,-42,69,1.0],[118,-42,70,1.0],[118,-42,71,1.0],[118,-42,72,1.0],[118,-42,73,1.0],[118,-42,74,1.0],[118,-42,75,1.0],[118,-42,76,1.0],[118,-42,77,1.0],[118,-42,78,1.0],[118,-42,79,1.0],[118,-41,64,1.0],[118,-41,65,1.0],[118,-41,66,1.0],[118,-41,67,1.0],[118,-41,68,1.0],[118,-41,69,1.0],[118,-41,70,1.0],[118,-41,71,1.0],[118,-41,72,1.0],[118,-41,73,1.0],[118,-41,74,1.0],[118,-41,75,1.0],[118,-41,76,1.0],[118,-41,77,1.0],[118,-41,78,1.0],[118,-41,79,1.0],[118,-40,64,1.0],[118,-40,65,1.0],[118,-40,66,1.0],[118,-40,67,1.0],[118,-40,68,1.0],[118,-40,69,1.0],[118,-40,70,1.0],[118,-40,71,1.0],[118,-40,72,1.0],[118,-40,73,1.0],[118,-40,74,1.0],[118,-40,75,1.0],[118,-40,76,1.0],[118,-40,77,1.0],[118,-40,78,1.0],[118,-40,79,1.0],[118,-39,64,1.0],[118,-39,65,1.0],[118,-39,66,1.0],[118,-39,67,1.0],[118,-39,68,1.0],[118,-39,69,1.0],[118,-39,70,1.0],[118,-39,71,1.0],[118,-39,72,1.0],[118,-39,73,1.0],[118,-39,74,1.0],[118,-39,75,1.0],[118,-39,76,1.0],[118,-39,77,1.0],[118,-39,78,1.0],[118,-39,79,1.0],[118,-38,64,1.0],[118,-38,65,1.0],[118,-38,66,1.0],[118,-38,67,1.0],[118,-38,68,1.0],[118,-38,69,1.0],[118,-38,70,1.0],[118,-38,71,1.0],[118,-38,72,1.0],[118,-38,73,1.0],[118,-38,74,1.0],[118,-38,75,1.0],[118,-38,76,1.0],[118,-38,77,1.0],[118,-38,78,1.0],[118,-38,79,1.0],[118,-37,64,1.0],[118,-37,65,1.0],[118,-37,66,1.0],[118,-37,67,1.0],[118,-37,68,1.0],[118,-37,69,1.0],[118,-37,70,1.0],[118,-37,71,1.0],[118,-37,72,1.0],[118,-37,73,1.0],[118,-37,74,1.0],[118,-37,75,1.0],[118,-37,76,1.0],[118,-37,77,1.0],[118,-37,78,1.0],[118,-37,79,1.0],[118,-36,64,1.0],[118,-36,65,1.0],[118,-36,66,1.0],[118,-36,67,1.0],[118,-36,68,1.0],[118,-36,69,1.0],[118,-36,70,1.0],[118,-36,71,1.0],[118,-36,72,1.0],[118,-36,73,1.0],[118,-36,74,1.0],[118,-36,75,1.0],[118,-36,76,1.0],[118,-36,77,1.0],[118,-36,78,1.0],[118,-36,79,1.0],[118,-35,64,1.0],[118,-35,65,1.0],[118,-35,66,1.0],[118,-35,67,1.0],[118,-35,68,1.0],[118,-35,69,1.0],[118,-35,70,1.0],[118,-35,71,1.0],[118,-35,72,1.0],[118,-35,73,1.0],[118,-35,74,1.0],[118,-35,75,1.0],[118,-35,76,1.0],[118,-35,77,1.0],[118,-35,78,1.0],[118,-35,79,1.0],[118,-34,64,1.0],[118,-34,65,1.0],[118,-34,66,1.0],[118,-34,67,1.0],[118,-34,68,1.0],[118,-34,69,1.0],[118,-34,70,1.0],[118,-34,71,1.0],[118,-34,72,1.0],[118,-34,73,1.0],[118,-34,74,1.0],[118,-34,75,1.0],[118,-34,76,1.0],[118,-34,77,1.0],[118,-34,78,1.0],[118,-34,79,1.0],[118,-33,64,1.0],[118,-33,65,1.0],[118,-33,66,1.0],[118,-33,67,1.0],[118,-33,68,1.0],[118,-33,69,1.0],[118,-33,70,1.0],[118,-33,71,1.0],[118,-33,72,1.0],[118,-33,73,1.0],[118,-33,74,1.0],[118,-33,75,1.0],[118,-33,76,1.0],[118,-33,77,1.0],[118,-33,78,1.0],[118,-33,79,1.0],[118,-32,64,1.0],[118,-32,65,1.0],[118,-32,66,1.0],[118,-32,67,1.0],[118,-32,68,1.0],[118,-32,69,1.0],[118,-32,70,1.0],[118,-32,71,1.0],[118,-32,72,1.0],[118,-32,73,1.0],[118,-32,74,1.0],[118,-32,75,1.0],[118,-32,76,1.0],[118,-32,77,1.0],[118,-32,78,1.0],[118,-32,79,1.0],[118,-31,64,1.0],[118,-31,65,1.0],[118,-31,66,1.0],[118,-31,67,1.0],[118,-31,68,1.0],[118,-31,69,1.0],[118,-31,70,1.0],[118,-31,71,1.0],[118,-31,72,1.0],[118,-31,73,1.0],[118,-31,74,1.0],[118,-31,75,1.0],[118,-31,76,1.0],[118,-31,77,1.0],[118,-31,78,1.0],[118,-31,79,1.0],[118,-30,64,1.0],[118,-30,65,1.0],[118,-30,66,1.0],[118,-30,67,1.0],[118,-30,68,1.0],[118,-30,69,1.0],[118,-30,70,1.0],[118,-30,71,1.0],[118,-30,72,1.0],[118,-30,73,1.0],[118,-30,74,1.0],[118,-30,75,1.0],[118,-30,76,1.0],[118,-30,77,1.0],[118,-30,78,1.0],[118,-30,79,1.0],[118,-29,64,1.0],[118,-29,65,1.0],[118,-29,66,1.0],[118,-29,67,1.0],[118,-29,68,1.0],[118,-29,69,1.0],[118,-29,70,1.0],[118,-29,71,1.0],[118,-29,72,1.0],[118,-29,73,1.0],[118,-29,74,1.0],[118,-29,75,1.0],[118,-29,76,1.0],[118,-29,77,1.0],[118,-29,78,1.0],[118,-29,79,1.0],[118,-28,64,1.0],[118,-28,65,1.0],[118,-28,66,1.0],[118,-28,67,1.0],[118,-28,68,1.0],[118,-28,69,1.0],[118,-28,70,1.0],[118,-28,71,1.0],[118,-28,72,1.0],[118,-28,73,1.0],[118,-28,74,1.0],[118,-28,75,1.0],[118,-28,76,1.0],[118,-28,77,1.0],[118,-28,78,1.0],[118,-28,79,1.0],[118,-27,64,1.0],[118,-27,65,1.0],[118,-27,66,1.0],[118,-27,67,1.0],[118,-27,68,1.0],[118,-27,69,1.0],[118,-27,70,1.0],[118,-27,71,1.0],[118,-27,72,1.0],[118,-27,73,1.0],[118,-27,74,1.0],[118,-27,75,1.0],[118,-27,76,1.0],[118,-27,77,1.0],[118,-27,78,1.0],[118,-27,79,1.0],[118,-26,64,1.0],[118,-26,65,1.0],[118,-26,66,1.0],[118,-26,67,1.0],[118,-26,68,1.0],[118,-26,69,1.0],[118,-26,70,1.0],[118,-26,71,1.0],[118,-26,72,1.0],[118,-26,73,1.0],[118,-26,74,1.0],[118,-26,75,1.0],[118,-26,76,1.0],[118,-26,77,1.0],[118,-26,78,1.0],[118,-26,79,1.0],[118,-25,64,1.0],[118,-25,65,1.0],[118,-25,66,1.0],[118,-25,67,1.0],[118,-25,68,1.0],[118,-25,69,1.0],[118,-25,70,1.0],[118,-25,71,1.0],[118,-25,72,1.0],[118,-25,73,1.0],[118,-25,74,1.0],[118,-25,75,1.0],[118,-25,76,1.0],[118,-25,77,1.0],[118,-25,78,1.0],[118,-25,79,1.0],[118,-24,64,1.0],[118,-24,65,1.0],[118,-24,66,1.0],[118,-24,67,1.0],[118,-24,68,1.0],[118,-24,69,1.0],[118,-24,70,1.0],[118,-24,71,1.0],[118,-24,72,1.0],[118,-24,73,1.0],[118,-24,74,1.0],[118,-24,75,1.0],[118,-24,76,1.0],[118,-24,77,1.0],[118,-24,78,1.0],[118,-24,79,1.0],[118,-23,64,1.0],[118,-23,65,1.0],[118,-23,66,1.0],[118,-23,67,1.0],[118,-23,68,1.0],[118,-23,69,1.0],[118,-23,70,1.0],[118,-23,71,1.0],[118,-23,72,1.0],[118,-23,73,1.0],[118,-23,74,1.0],[118,-23,75,1.0],[118,-23,76,1.0],[118,-23,77,1.0],[118,-23,78,1.0],[118,-23,79,1.0],[118,-22,64,1.0],[118,-22,65,1.0],[118,-22,66,1.0],[118,-22,67,1.0],[118,-22,68,1.0],[118,-22,69,1.0],[118,-22,70,1.0],[118,-22,71,1.0],[118,-22,72,1.0],[118,-22,73,1.0],[118,-22,74,1.0],[118,-22,75,1.0],[118,-22,76,1.0],[118,-22,77,1.0],[118,-22,78,1.0],[118,-22,79,1.0],[118,-21,64,1.0],[118,-21,65,1.0],[118,-21,66,1.0],[118,-21,67,1.0],[118,-21,68,1.0],[118,-21,69,1.0],[118,-21,70,1.0],[118,-21,71,1.0],[118,-21,72,1.0],[118,-21,73,1.0],[118,-21,74,1.0],[118,-21,75,1.0],[118,-21,76,1.0],[118,-21,77,1.0],[118,-21,78,1.0],[118,-21,79,1.0],[118,-20,64,1.0],[118,-20,65,1.0],[118,-20,66,1.0],[118,-20,67,1.0],[118,-20,68,1.0],[118,-20,69,1.0],[118,-20,70,1.0],[118,-20,71,1.0],[118,-20,72,1.0],[118,-20,73,1.0],[118,-20,74,1.0],[118,-20,75,1.0],[118,-20,76,1.0],[118,-20,77,1.0],[118,-20,78,1.0],[118,-20,79,1.0],[118,-19,64,1.0],[118,-19,65,1.0],[118,-19,66,1.0],[118,-19,67,1.0],[118,-19,68,1.0],[118,-19,69,1.0],[118,-19,70,1.0],[118,-19,71,1.0],[118,-19,72,1.0],[118,-19,73,1.0],[118,-19,74,1.0],[118,-19,75,1.0],[118,-19,76,1.0],[118,-19,77,1.0],[118,-19,78,1.0],[118,-19,79,1.0],[118,-18,64,1.0],[118,-18,65,1.0],[118,-18,66,1.0],[118,-18,67,1.0],[118,-18,68,1.0],[118,-18,69,1.0],[118,-18,70,1.0],[118,-18,71,1.0],[118,-18,72,1.0],[118,-18,73,1.0],[118,-18,74,1.0],[118,-18,75,1.0],[118,-18,76,1.0],[118,-18,77,1.0],[118,-18,78,1.0],[118,-18,79,1.0],[118,-17,64,1.0],[118,-17,65,1.0],[118,-17,66,1.0],[118,-17,67,1.0],[118,-17,68,1.0],[118,-17,69,1.0],[118,-17,70,1.0],[118,-17,71,1.0],[118,-17,72,1.0],[118,-17,73,1.0],[118,-17,74,1.0],[118,-17,75,1.0],[118,-17,76,1.0],[118,-17,77,1.0],[118,-17,78,1.0],[118,-17,79,1.0],[118,-16,64,1.0],[118,-16,65,1.0],[118,-16,66,1.0],[118,-16,67,1.0],[118,-16,68,1.0],[118,-16,69,1.0],[118,-16,70,1.0],[118,-16,71,1.0],[118,-16,72,1.0],[118,-16,73,1.0],[118,-16,74,1.0],[118,-16,75,1.0],[118,-16,76,1.0],[118,-16,77,1.0],[118,-16,78,1.0],[118,-16,79,1.0],[118,-15,64,0.787820674489512],[118,-15,65,0.8858307749052045],[118,-15,66,0.9890297598478174],[118,-15,67,1.0],[118,-15,68,1.0],[118,-15,69,1.0],[118,-15,70,1.0],[118,-15,71,1.0],[118,-15,72,1.0],[118,-15,73,1.0],[118,-15,74,1.0],[118,-15,75,1.0],[118,-15,76,1.0],[118,-15,77,1.0],[118,-15,78,1.0],[118,-15,79,1.0],[118,-14,64,0.5090450324617792],[118,-14,65,0.5827509447941887],[118,-14,66,0.6612450423751566],[118,-14,67,0.7443215174524292],[118,-14,68,0.831749836442197],[118,-14,69,0.9232782768581367],[118,-14,70,1.0],[118,-14,71,1.0],[118,-14,72,1.0],[118,-14,73,1.0],[118,-14,74,1.0],[118,-14,75,1.0],[118,-14,76,1.0],[118,-14,77,1.0],[118,-14,78,1.0],[118,-14,79,1.0],[118,-13,64,0.3052740445825694],[118,-13,65,0.35813338253087934],[118,-13,66,0.41529757995571814],[118,-13,67,0.4766318012385668],[118,-13,68,0.5419740133442416],[118,-13,69,0.6111383733223352],[118,-13,70,0.6839186117931447],[118,-13,71,0.760091395211923],[118,-13,72,0.8394196504105361],[118,-13,73,0.9216558357326987],[118,-13,74,1.0],[118,-13,75,1.0],[118,-13,76,1.0],[118,-13,77,1.0],[118,-13,78,1.0],[118,-13,79,1.0],[118,-12,64,0.16475408265284372],[118,-12,65,0.2002245911303648],[118,-12,66,0.23943400663052294],[118,-12,67,0.2823184942731519],[118,-12,68,0.32878465004262186],[118,-12,69,0.3787127413931942],[118,-12,70,0.4319599502230983],[118,-12,71,0.4883636012753535],[118,-12,72,0.5477443596930535],[118,-12,73,0.6099093822385211],[118,-12,74,0.6746554075655603],[118,-12,75,0.7417717719515973],[118,-12,76,0.8110433380116049],[118,-12,77,0.8822533251167658],[118,-12,78,0.9551860315694749],[118,-12,79,1.0],[118,-11,64,0.07573142260580742],[118,-11,65,0.09727097736456973],[118,-11,66,0.12190085982380938],[118,-11,67,0.1496282644401147],[118,-11,68,0.18042854468256433],[118,-11,69,0.21424830927353397],[118,-11,70,0.2510085272050325],[118,-11,71,0.2906076248523407],[118,-11,72,0.3329245591415371],[118,-11,73,0.3778218514737632],[118,-11,74,0.42514856795494343],[118,-11,75,0.47474323245223676],[118,-11,76,0.5264366600688253],[118,-11,77,0.5800546997857466],[118,-11,78,0.6354208762927386],[118,-11,79,0.692358922386264],[118,-10,64,0.02645224440008936],[118,-10,65,0.037518851651778685],[118,-10,66,0.05094458022892574],[118,-10,67,0.06680768251702941],[118,-10,68,0.08515239792923263],[118,-10,69,0.10599190731413888],[118,-10,70,0.12931130256853365],[118,-10,71,0.15507055504011094],[118,-10,72,0.18320746690586764],[118,-10,73,0.2136405904226974],[118,-10,74,0.24627210075792563],[118,-10,75,0.28099060903578593],[118,-10,76,0.3176739032613589],[118,-10,77,0.3561916058960112],[118,-10,78,0.39640773807687263],[118,-10,79,0.43818318177320187],[118,-9,64,0.020022154181834714],[118,-9,65,0.02328922476494718],[118,-9,66,0.026462732923922053],[118,-9,67,0.029540566520471587],[118,-9,68,0.03252057568130581],[118,-9,69,0.042190267893012764],[118,-9,70,0.05511513779661755],[118,-9,71,0.06999938221723376],[118,-9,72,0.08684020204686546],[118,-9,73,0.10561284661178938],[118,-9,74,0.1262733817472733],[118,-9,75,0.14876140549981456],[118,-9,76,0.17300269918853142],[118,-9,77,0.1989118026246676],[118,-9,78,0.2263945034525145],[118,-9,79,0.25535023181950117],[118,-8,64,0.01612122071549206],[118,-8,65,0.01935588039513253],[118,-8,66,0.022500569044968555],[118,-8,67,0.025553246378369497],[118,-8,68,0.028511823843961503],[118,-8,69,0.03137418091672985],[118,-8,70,0.034138180874039185],[118,-8,71,0.03680168605638358],[118,-8,72,0.039362572613121566],[118,-8,73,0.04198576797890083],[118,-8,74,0.05339968673661054],[118,-8,75,0.06630302531384914],[118,-8,76,0.08067057875434146],[118,-8,77,0.09646294808781435],[118,-8,78,0.11362895752519302],[118,-8,79,0.13210798439782329],[118,-7,64,0.012187866106459784],[118,-7,65,0.015388121398809365],[118,-7,66,0.01850197565122283],[118,-7,67,0.021527462045840697],[118,-7,68,0.02446255520514657],[118,-7,69,0.027305187708668112],[118,-7,70,0.03005326609508327],[118,-7,71,0.03270468634954531],[118,-7,72,0.03525734887648204],[118,-7,73,0.037709172957563236],[118,-7,74,0.04005811069498143],[118,-7,75,0.04230216044019286],[118,-7,76,0.04443937970780951],[118,-7,77,0.0464678975749009],[118,-7,78,0.04838592656551178],[118,-7,79,0.05670424944624183],[118,-6,64,0.008228858492949076],[118,-6,65,0.011392730163055774],[118,-6,66,0.0144737451338545],[118,-6,67,0.01747001158677993],[118,-6,68,0.020379569095976463],[118,-6,69,0.023200405351859632],[118,-6,70,0.025930472370997236],[118,-6,71,0.028567702192121666],[118,-6,72,0.031110022058531035],[118,-6,73,0.033555369086571495],[118,-6,74,0.035901704420346466],[118,-6,75,0.03814702687279937],[118,-6,76,0.04028938605286096],[118,-6,77,0.04232689497892038],[118,-6,78,0.04425774217842455],[118,-6,79,0.046080203273872085],[118,-5,64,0.004250997746744138],[118,-5,65,0.007376524184857597],[118,-5,66,0.010422708422827491],[118,-5,67,0.013387735082881741],[118,-5,68,0.016269710391613706],[118,-5,69,0.019066679091414684],[118,-5,70,0.02177664083956446],[118,-5,71,0.02439756609478983],[118,-5,72,0.026927411491551916],[118,-5,73,0.02936413470174884],[118,-5,74,0.03170570878398604],[118,-5,75,0.033950136020556534],[118,-5,76,0.03609546124182303],[118,-5,77,0.038139784638262945],[118,-5,78,0.040081274059977044],[118,-5,79,0.041918176803933775],[118,-4,64,2.611047968883867E-4],[118,-4,65,0.00334634535701072],[118,-4,66,0.006355724244054617],[118,-4,67,0.00928750387126829],[118,-4,68,0.012139858738749648],[118,-4,69,0.014910892513540865],[118,-4,70,0.01759865459914324],[118,-4,71,0.020201156194257205],[118,-4,72,0.022716385841014035],[118,-4,73,0.02514232446238225],[118,-4,74,0.027476959888901052],[118,-4,75,0.029718300874886264],[118,-4,76,0.031864390603795464],[118,-4,77,0.03391331968301967],[118,-4,78,0.03586323862789508],[118,-4,79,0.03771236983521458],[118,-3,64,-0.0037339880285682456],[118,-3,65,-6.909497246179869E-4],[118,-3,66,0.002279669401440698],[118,-3,67,0.005176210810770847],[118,-3,68,0.007996918815741383],[118,-3,69,0.010739957809287978],[118,-3,70,0.013403428985876965],[118,-3,71,0.01598538655387382],[118,-3,72,0.01848385343958476],[118,-3,73,0.020896836482652864],[118,-3,74,0.023222341122961385],[118,-3,75,0.025458385579192055],[118,-3,76,0.02760301451872079],[118,-3,77,0.029654312219121584],[118,-3,78,0.03161041522107111],[118,-3,79,0.033469524472933464],[118,-2,64,-0.007727445642736003],[118,-2,65,-0.004728498432446687],[118,-2,66,-0.001798569916161119],[118,-2,67,0.0010607615768925133],[118,-2,68,0.0038478116254348008],[118,-2,69,0.006560807075217556],[118,-2,70,0.009197902892306209],[118,-2,71,0.01175719851036549],[118,-2,72,0.014236753672214837],[118,-2,73,0.01663460376533806],[118,-2,74,0.018948774651495137],[118,-2,75,0.02117729699058938],[118,-2,76,0.02331822005846805],[118,-2,77,0.025369625058929958],[118,-2,78,0.02732963792973038],[118,-2,79,0.029196441642864925],[118,-1,64,-0.01171243782199461],[118,-1,65,-0.00875943975717948],[118,-1,66,-0.005872105803105564],[118,-1,67,-0.003051933014578137],[118,-1,68,-3.0053317936046264E-4],[118,-1,69,0.002380384650966197],[118,-1,70,0.004989031127353875],[118,-1,71,0.007523553066654427],[118,-1,72,0.009982049412265902],[118,-1,73,0.012362586691744962],[118,-1,74,0.01466321397153212],[118,-1,75,0.016881977308944605],[118,-1,76,0.01901693370111262],[118,-1,77,0.021066164531134114],[118,-1,78,0.023027788511238774],[118,-1,79,0.024899974123241436],[118,0,64,-0.01568214581002162],[118,0,65,-0.012776920936430479],[118,0,66,-0.009934055280205953],[118,0,67,-0.007154963655279435],[118,0,68,-0.004441183937718848],[118,0,69,-0.001794359506274143],[118,0,70,7.837778177057705E-4],[118,0,71,0.003291424330793602],[118,0,72,0.005726720508703785],[118,0,73,0.008087766567898468],[118,0,74,0.010372637527726505],[118,0,75,0.012579397773250005],[118,0,76,0.014706115118435545],[118,0,77,0.01675087436998217],[118,0,78,0.018711790391580246],[118,0,79,0.020587020668879005],[118,1,64,-0.019629767903759622],[118,1,65,-0.016774103061987684],[118,1,66,-0.013977545913093005],[118,1,67,-0.011241428163333275],[118,1,68,-0.008567212589787009],[118,1,69,-0.005956475410374938],[118,1,70,-0.0034108891494299895],[118,1,71,-9.322059990055018E-4],[118,1,72,0.001477758324340217],[118,1,73,0.003817140226968163],[118,1,74,0.006084043389941271],[118,1,75,0.008276553425316573],[118,1,76,0.010392752036627796],[118,1,77,0.012430730683827246],[118,1,78,0.01438860375248284],[118,1,79,0.016264521227507975],[118,2,64,-0.020423788042026006],[118,2,65,-0.02074416566570269],[118,2,66,-0.017995720405668644],[118,2,67,-0.015304436073728708],[118,2,68,-0.012671699253297926],[118,2,69,-0.010099017597976205],[118,2,70,-0.007588002642170383],[118,2,71,-0.005140353103234706],[118,2,72,-0.0027578386748629627],[118,2,73,-4.422843120534328E-4],[118,2,74,0.0018044449925084388],[118,2,75,0.003980458940797751],[118,2,76,0.006083856170210039],[118,2,77,0.008112738003002343],[118,2,78,0.010065221704209974],[118,2,79,0.01193945324832077],[118,3,64,-0.003272988825288048],[118,3,65,-0.006298532775299349],[118,3,66,-0.010648976680876696],[118,3,67,-0.01647670489424049],[118,3,68,-0.016747735767418545],[118,3,69,-0.014215048643284003],[118,3,70,-0.011740599758419928],[118,3,71,-0.009326032463849297],[118,3,72,-0.0069730682794331075],[118,3,73,-0.00468349112942671],[118,3,74,-0.0024591320648413573],[118,3,75,-3.018544724609912E-4],[118,3,76,0.0017864602291635528],[118,3,77,0.0038039264070173287],[118,3,78,0.005748667544009385],[118,3,79,0.0076188290827340355],[118,4,64,-1.3145988987087214E-5],[118,4,65,-2.1389588475578158E-4],[118,4,66,-8.610008259815477E-4],[118,4,67,-0.0021762234580339538],[118,4,68,-0.004344425801237553],[118,4,69,-0.007516147090835734],[118,4,70,-0.01181020836955802],[118,4,71,-0.013482262240929535],[118,4,72,-0.011160926844974911],[118,4,73,-0.008899458633500147],[118,4,74,-0.006699652154384929],[118,4,75,-0.004563341108752811],[118,4,76,-0.0024923840007324907],[118,4,77,-4.886502689242858E-4],[118,4,78,0.0014459931002150928],[118,4,79,0.0033096944773570725],[118,5,64,0.0010386163727697415],[118,5,65,2.754863612858988E-4],[118,5,66,2.6301661890161154E-5],[118,5,67,-1.0486597968222999E-7],[118,5,68,-5.6172262442703295E-5],[118,5,69,-3.5805827457931514E-4],[118,5,70,-0.001088119412111594],[118,5,71,-0.002397409011112228],[118,5,72,-0.004408178562871786],[118,5,73,-0.00721636816295342],[118,5,74,-0.010894072629520498],[118,5,75,-0.008796941731506774],[118,5,76,-0.006745606504346524],[118,5,77,-0.004757915148080265],[118,5,78,-0.0028357218379855206],[118,5,79,-9.808718408198178E-4],[118,6,64,0.01156507766208126],[118,6,65,0.00685251907970426],[118,6,66,0.00369596145281832],[118,6,67,0.0017348069370624617],[118,6,68,6.489138146660125E-4],[118,6,69,1.562781911048959E-4],[118,6,70,1.0675925137670719E-5],[118,6,71,-7.202272177732083E-7],[118,6,72,-5.973374008307504E-5],[118,6,73,-3.1957376442456116E-4],[118,6,74,-9.072075985876006E-4],[118,6,75,-0.0019257036332326028],[118,6,76,-0.003456533052424912],[118,6,77,-0.005561819483294138],[118,6,78,-0.007089369005138568],[118,6,79,-0.005245757487036817],[118,7,64,0.043248920721739095],[118,7,65,0.031200010404301586],[118,7,66,0.021830911812109312],[118,7,67,0.014711570181808135],[118,7,68,0.009454015453983349],[118,7,69,0.005710169945397388],[118,7,70,0.003169609713591756],[118,7,71,0.001557294335148835],[118,7,72,6.312793838965633E-4],[118,7,73,1.8042536799272452E-4],[118,7,74,2.211626638976518E-5],[118,7,75,9.977043126985102E-11],[118,7,76,-1.8236815222057794E-5],[118,7,77,-1.4305114258553756E-4],[118,7,78,-4.651694819158878E-4],[118,7,79,-0.0010576521469692476],[118,8,64,0.10777273178343229],[118,8,65,0.08500067143049198],[118,8,66,0.06611398854148809],[118,8,67,0.05061314521226541],[118,8,68,0.03804221737161234],[118,8,69,0.027986825900620387],[118,8,70,0.020072014880721453],[118,8,71,0.013960091432854248],[118,8,72,0.009348441205428139],[118,8,73,0.0059673330766575215],[118,8,74,0.003577726057252658],[118,8,75,0.001969090713973808],[118,8,76,9.572566932562061E-4],[118,8,77,3.8229710947653095E-4],[118,8,78,1.0645967994502199E-4],[118,8,79,1.2153546577503144E-5],[118,9,64,0.21681900041965604],[118,9,65,0.17993711616369998],[118,9,66,0.1482279299240076],[118,9,67,0.12112239442717633],[118,9,68,0.09809650591385934],[118,9,69,0.07866935617680763],[118,9,70,0.062401125141232146],[118,9,71,0.048891028191514425],[118,9,72,0.03777523207310563],[118,9,73,0.02872475274159254],[118,9,74,0.02144334799086209],[118,9,75,0.015665417066042166],[118,9,76,0.011153918770617863],[118,9,77,0.007698318811397589],[118,9,78,0.00511257629282717],[118,9,79,0.0032331783855849045],[118,10,64,0.3820701194993476],[118,10,65,0.3276918614714909],[118,10,66,0.27985537667269483],[118,10,67,0.23792208222519903],[118,10,68,0.20129976899897317],[118,10,69,0.16944077204002236],[118,10,70,0.14184007493198206],[118,10,71,0.11803336203703443],[118,10,72,0.09759503221593889],[118,10,73,0.08013618720533149],[118,10,74,0.0653026073306322],[118,10,75,0.052772726645162554],[118,10,76,0.04225561893486971],[118,10,77,0.03348900531184714],[118,10,78,0.026237293337364933],[118,10,79,0.02028965678409921],[118,11,64,0.6152083851471329],[118,11,65,0.5399473270393272],[118,11,66,0.47267887188283797],[118,11,67,0.41269487495374624],[118,11,68,0.3593347960625559],[118,11,69,0.31198398584435955],[118,11,70,0.270071899350597],[118,11,71,0.23307025063085673],[118,11,72,0.2004911216752561],[118,11,73,0.17188503870149677],[118,11,74,0.14683902831180481],[118,11,75,0.12497466549503583],[118,11,76,0.10594612484314722],[118,11,77,0.0894382456851479],[118,11,78,0.07516462110826262],[118,11,79,0.06286572006052923],[118,12,64,0.9279159967062948],[118,12,65,0.8283858353300494],[118,12,66,0.7383808609879965],[118,12,67,0.6571233408615471],[118,12,68,0.583884278006697],[118,12,69,0.5179818109776749],[118,12,70,0.45877953409781447],[118,12,71,0.4056847518089421],[118,12,72,0.35814668024034235],[118,12,73,0.31565460878711676],[118,12,74,0.2777360340704663],[118,12,75,0.24395477813961583],[118,12,76,0.2139091022141963],[118,12,77,0.18722982665052185],[118,12,78,0.16357846713032625],[118,12,79,0.1426453963504846],[118,13,64,1.0],[118,13,65,1.0],[118,13,66,1.0],[118,13,67,0.9828899500548383],[118,13,68,0.8866308071527492],[118,13,69,0.7991169618109659],[118,13,70,0.7196458154234915],[118,13,71,0.6475598235244227],[118,13,72,0.5822447873877614],[118,13,73,0.5231280982786373],[118,13,74,0.4696769465762685],[118,13,75,0.4213965075125598],[118,13,76,0.3778281147545758],[118,13,77,0.3385474324950648],[118,13,78,0.3031626360782312],[118,13,79,0.271312610523358],[118,14,64,1.0],[118,14,65,1.0],[118,14,66,1.0],[118,14,67,1.0],[118,14,68,1.0],[118,14,69,1.0],[118,14,70,1.0],[118,14,71,0.9703783237940239],[118,14,72,0.8844684222244441],[118,14,73,0.8059886071916983],[118,14,74,0.7343449865689183],[118,14,75,0.6689831948904514],[118,14,76,0.6093866240886332],[118,14,77,0.5550746450004975],[118,14,78,0.505600829700069],[118,14,79,0.46055118410268836],[118,15,64,1.0],[118,15,65,1.0],[118,15,66,1.0],[118,15,67,1.0],[118,15,68,1.0],[118,15,69,1.0],[118,15,70,1.0],[118,15,71,1.0],[118,15,72,1.0],[118,15,73,1.0],[118,15,74,1.0],[118,15,75,0.9983980798296085],[118,15,76,0.9202679896920815],[118,15,77,0.8484949433735312],[118,15,78,0.7825766467445231],[118,15,79,0.7220448351901672],[118,16,64,1.0],[118,16,65,1.0],[118,16,66,1.0],[118,16,67,1.0],[118,16,68,1.0],[118,16,69,1.0],[118,16,70,1.0],[118,16,71,1.0],[118,16,72,1.0],[118,16,73,1.0],[118,16,74,1.0],[118,16,75,1.0],[118,16,76,1.0],[118,16,77,1.0],[118,16,78,1.0],[118,16,79,1.0],[118,17,64,1.0],[118,17,65,1.0],[118,17,66,1.0],[118,17,67,1.0],[118,17,68,1.0],[118,17,69,1.0],[118,17,70,1.0],[118,17,71,1.0],[118,17,72,1.0],[118,17,73,1.0],[118,17,74,1.0],[118,17,75,1.0],[118,17,76,1.0],[118,17,77,1.0],[118,17,78,1.0],[118,17,79,1.0],[118,18,64,1.0],[118,18,65,1.0],[118,18,66,1.0],[118,18,67,1.0],[118,18,68,1.0],[118,18,69,1.0],[118,18,70,1.0],[118,18,71,1.0],[118,18,72,1.0],[118,18,73,1.0],[118,18,74,1.0],[118,18,75,1.0],[118,18,76,1.0],[118,18,77,1.0],[118,18,78,1.0],[118,18,79,1.0],[118,19,64,1.0],[118,19,65,1.0],[118,19,66,1.0],[118,19,67,1.0],[118,19,68,1.0],[118,19,69,1.0],[118,19,70,1.0],[118,19,71,1.0],[118,19,72,1.0],[118,19,73,1.0],[118,19,74,1.0],[118,19,75,1.0],[118,19,76,1.0],[118,19,77,1.0],[118,19,78,1.0],[118,19,79,1.0],[118,20,64,1.0],[118,20,65,1.0],[118,20,66,1.0],[118,20,67,1.0],[118,20,68,1.0],[118,20,69,1.0],[118,20,70,1.0],[118,20,71,1.0],[118,20,72,1.0],[118,20,73,1.0],[118,20,74,1.0],[118,20,75,1.0],[118,20,76,1.0],[118,20,77,1.0],[118,20,78,1.0],[118,20,79,1.0],[118,21,64,1.0],[118,21,65,1.0],[118,21,66,1.0],[118,21,67,1.0],[118,21,68,1.0],[118,21,69,1.0],[118,21,70,1.0],[118,21,71,1.0],[118,21,72,1.0],[118,21,73,1.0],[118,21,74,1.0],[118,21,75,1.0],[118,21,76,1.0],[118,21,77,1.0],[118,21,78,1.0],[118,21,79,1.0],[118,22,64,1.0],[118,22,65,1.0],[118,22,66,1.0],[118,22,67,1.0],[118,22,68,1.0],[118,22,69,1.0],[118,22,70,1.0],[118,22,71,1.0],[118,22,72,1.0],[118,22,73,1.0],[118,22,74,1.0],[118,22,75,1.0],[118,22,76,1.0],[118,22,77,1.0],[118,22,78,1.0],[118,22,79,1.0],[118,23,64,1.0],[118,23,65,1.0],[118,23,66,1.0],[118,23,67,1.0],[118,23,68,1.0],[118,23,69,1.0],[118,23,70,1.0],[118,23,71,1.0],[118,23,72,1.0],[118,23,73,1.0],[118,23,74,1.0],[118,23,75,1.0],[118,23,76,1.0],[118,23,77,1.0],[118,23,78,1.0],[118,23,79,1.0],[118,24,64,1.0],[118,24,65,1.0],[118,24,66,1.0],[118,24,67,1.0],[118,24,68,1.0],[118,24,69,1.0],[118,24,70,1.0],[118,24,71,1.0],[118,24,72,1.0],[118,24,73,1.0],[118,24,74,1.0],[118,24,75,1.0],[118,24,76,1.0],[118,24,77,1.0],[118,24,78,1.0],[118,24,79,1.0],[118,25,64,1.0],[118,25,65,1.0],[118,25,66,1.0],[118,25,67,1.0],[118,25,68,1.0],[118,25,69,1.0],[118,25,70,1.0],[118,25,71,1.0],[118,25,72,1.0],[118,25,73,1.0],[118,25,74,1.0],[118,25,75,1.0],[118,25,76,1.0],[118,25,77,1.0],[118,25,78,1.0],[118,25,79,1.0],[118,26,64,1.0],[118,26,65,1.0],[118,26,66,1.0],[118,26,67,1.0],[118,26,68,1.0],[118,26,69,1.0],[118,26,70,1.0],[118,26,71,1.0],[118,26,72,1.0],[118,26,73,1.0],[118,26,74,1.0],[118,26,75,1.0],[118,26,76,1.0],[118,26,77,1.0],[118,26,78,1.0],[118,26,79,1.0],[118,27,64,1.0],[118,27,65,1.0],[118,27,66,1.0],[118,27,67,1.0],[118,27,68,1.0],[118,27,69,1.0],[118,27,70,1.0],[118,27,71,1.0],[118,27,72,1.0],[118,27,73,1.0],[118,27,74,1.0],[118,27,75,1.0],[118,27,76,1.0],[118,27,77,1.0],[118,27,78,1.0],[118,27,79,1.0],[118,28,64,1.0],[118,28,65,1.0],[118,28,66,1.0],[118,28,67,1.0],[118,28,68,1.0],[118,28,69,1.0],[118,28,70,1.0],[118,28,71,1.0],[118,28,72,1.0],[118,28,73,1.0],[118,28,74,1.0],[118,28,75,1.0],[118,28,76,1.0],[118,28,77,1.0],[118,28,78,1.0],[118,28,79,1.0],[118,29,64,1.0],[118,29,65,1.0],[118,29,66,1.0],[118,29,67,1.0],[118,29,68,1.0],[118,29,69,1.0],[118,29,70,1.0],[118,29,71,1.0],[118,29,72,1.0],[118,29,73,1.0],[118,29,74,1.0],[118,29,75,1.0],[118,29,76,1.0],[118,29,77,1.0],[118,29,78,1.0],[118,29,79,1.0],[118,30,64,1.0],[118,30,65,1.0],[118,30,66,1.0],[118,30,67,1.0],[118,30,68,1.0],[118,30,69,1.0],[118,30,70,1.0],[118,30,71,1.0],[118,30,72,1.0],[118,30,73,1.0],[118,30,74,1.0],[118,30,75,1.0],[118,30,76,1.0],[118,30,77,1.0],[118,30,78,1.0],[118,30,79,1.0],[118,31,64,1.0],[118,31,65,1.0],[118,31,66,1.0],[118,31,67,1.0],[118,31,68,1.0],[118,31,69,1.0],[118,31,70,1.0],[118,31,71,1.0],[118,31,72,1.0],[118,31,73,1.0],[118,31,74,1.0],[118,31,75,1.0],[118,31,76,1.0],[118,31,77,1.0],[118,31,78,1.0],[118,31,79,1.0],[118,32,64,1.0],[118,32,65,1.0],[118,32,66,1.0],[118,32,67,1.0],[118,32,68,1.0],[118,32,69,1.0],[118,32,70,1.0],[118,32,71,1.0],[118,32,72,1.0],[118,32,73,1.0],[118,32,74,1.0],[118,32,75,1.0],[118,32,76,1.0],[118,32,77,1.0],[118,32,78,1.0],[118,32,79,1.0],[118,33,64,1.0],[118,33,65,1.0],[118,33,66,1.0],[118,33,67,1.0],[118,33,68,1.0],[118,33,69,1.0],[118,33,70,1.0],[118,33,71,1.0],[118,33,72,1.0],[118,33,73,1.0],[118,33,74,1.0],[118,33,75,1.0],[118,33,76,1.0],[118,33,77,1.0],[118,33,78,1.0],[118,33,79,1.0],[118,34,64,1.0],[118,34,65,1.0],[118,34,66,1.0],[118,34,67,1.0],[118,34,68,1.0],[118,34,69,1.0],[118,34,70,1.0],[118,34,71,1.0],[118,34,72,1.0],[118,34,73,1.0],[118,34,74,1.0],[118,34,75,1.0],[118,34,76,1.0],[118,34,77,1.0],[118,34,78,1.0],[118,34,79,1.0],[118,35,64,1.0],[118,35,65,1.0],[118,35,66,1.0],[118,35,67,1.0],[118,35,68,1.0],[118,35,69,1.0],[118,35,70,1.0],[118,35,71,1.0],[118,35,72,1.0],[118,35,73,1.0],[118,35,74,1.0],[118,35,75,1.0],[118,35,76,1.0],[118,35,77,1.0],[118,35,78,1.0],[118,35,79,1.0],[118,36,64,1.0],[118,36,65,1.0],[118,36,66,1.0],[118,36,67,1.0],[118,36,68,1.0],[118,36,69,1.0],[118,36,70,1.0],[118,36,71,1.0],[118,36,72,1.0],[118,36,73,1.0],[118,36,74,1.0],[118,36,75,1.0],[118,36,76,1.0],[118,36,77,1.0],[118,36,78,1.0],[118,36,79,1.0],[118,37,64,1.0],[118,37,65,1.0],[118,37,66,1.0],[118,37,67,1.0],[118,37,68,1.0],[118,37,69,1.0],[118,37,70,1.0],[118,37,71,1.0],[118,37,72,1.0],[118,37,73,1.0],[118,37,74,1.0],[118,37,75,1.0],[118,37,76,1.0],[118,37,77,1.0],[118,37,78,1.0],[118,37,79,1.0],[118,38,64,1.0],[118,38,65,1.0],[118,38,66,1.0],[118,38,67,1.0],[118,38,68,1.0],[118,38,69,1.0],[118,38,70,1.0],[118,38,71,1.0],[118,38,72,1.0],[118,38,73,1.0],[118,38,74,1.0],[118,38,75,1.0],[118,38,76,1.0],[118,38,77,1.0],[118,38,78,1.0],[118,38,79,1.0],[118,39,64,1.0],[118,39,65,1.0],[118,39,66,1.0],[118,39,67,1.0],[118,39,68,1.0],[118,39,69,1.0],[118,39,70,1.0],[118,39,71,1.0],[118,39,72,1.0],[118,39,73,1.0],[118,39,74,1.0],[118,39,75,1.0],[118,39,76,1.0],[118,39,77,1.0],[118,39,78,1.0],[118,39,79,1.0],[118,40,64,1.0],[118,40,65,1.0],[118,40,66,1.0],[118,40,67,1.0],[118,40,68,1.0],[118,40,69,1.0],[118,40,70,1.0],[118,40,71,1.0],[118,40,72,1.0],[118,40,73,1.0],[118,40,74,1.0],[118,40,75,1.0],[118,40,76,1.0],[118,40,77,1.0],[118,40,78,1.0],[118,40,79,1.0],[118,41,64,1.0],[118,41,65,1.0],[118,41,66,1.0],[118,41,67,1.0],[118,41,68,1.0],[118,41,69,1.0],[118,41,70,1.0],[118,41,71,1.0],[118,41,72,1.0],[118,41,73,1.0],[118,41,74,1.0],[118,41,75,1.0],[118,41,76,1.0],[118,41,77,1.0],[118,41,78,1.0],[118,41,79,1.0],[118,42,64,1.0],[118,42,65,1.0],[118,42,66,1.0],[118,42,67,1.0],[118,42,68,1.0],[118,42,69,1.0],[118,42,70,1.0],[118,42,71,1.0],[118,42,72,1.0],[118,42,73,1.0],[118,42,74,1.0],[118,42,75,1.0],[118,42,76,1.0],[118,42,77,1.0],[118,42,78,1.0],[118,42,79,1.0],[118,43,64,1.0],[118,43,65,1.0],[118,43,66,1.0],[118,43,67,1.0],[118,43,68,1.0],[118,43,69,1.0],[118,43,70,1.0],[118,43,71,1.0],[118,43,72,1.0],[118,43,73,1.0],[118,43,74,1.0],[118,43,75,1.0],[118,43,76,1.0],[118,43,77,1.0],[118,43,78,1.0],[118,43,79,1.0],[118,44,64,1.0],[118,44,65,1.0],[118,44,66,1.0],[118,44,67,1.0],[118,44,68,1.0],[118,44,69,1.0],[118,44,70,1.0],[118,44,71,1.0],[118,44,72,1.0],[118,44,73,1.0],[118,44,74,1.0],[118,44,75,1.0],[118,44,76,1.0],[118,44,77,1.0],[118,44,78,1.0],[118,44,79,1.0],[118,45,64,1.0],[118,45,65,1.0],[118,45,66,1.0],[118,45,67,1.0],[118,45,68,1.0],[118,45,69,1.0],[118,45,70,1.0],[118,45,71,1.0],[118,45,72,1.0],[118,45,73,1.0],[118,45,74,1.0],[118,45,75,1.0],[118,45,76,1.0],[118,45,77,1.0],[118,45,78,1.0],[118,45,79,1.0],[118,46,64,1.0],[118,46,65,1.0],[118,46,66,1.0],[118,46,67,1.0],[118,46,68,1.0],[118,46,69,1.0],[118,46,70,1.0],[118,46,71,1.0],[118,46,72,1.0],[118,46,73,1.0],[118,46,74,1.0],[118,46,75,1.0],[118,46,76,1.0],[118,46,77,1.0],[118,46,78,1.0],[118,46,79,1.0],[118,47,64,1.0],[118,47,65,1.0],[118,47,66,1.0],[118,47,67,1.0],[118,47,68,1.0],[118,47,69,1.0],[118,47,70,1.0],[118,47,71,1.0],[118,47,72,1.0],[118,47,73,1.0],[118,47,74,1.0],[118,47,75,1.0],[118,47,76,1.0],[118,47,77,1.0],[118,47,78,1.0],[118,47,79,1.0],[118,48,64,1.0],[118,48,65,1.0],[118,48,66,1.0],[118,48,67,1.0],[118,48,68,1.0],[118,48,69,1.0],[118,48,70,1.0],[118,48,71,1.0],[118,48,72,1.0],[118,48,73,1.0],[118,48,74,1.0],[118,48,75,1.0],[118,48,76,1.0],[118,48,77,1.0],[118,48,78,1.0],[118,48,79,1.0],[118,49,64,1.0],[118,49,65,1.0],[118,49,66,1.0],[118,49,67,1.0],[118,49,68,1.0],[118,49,69,1.0],[118,49,70,1.0],[118,49,71,1.0],[118,49,72,1.0],[118,49,73,1.0],[118,49,74,1.0],[118,49,75,1.0],[118,49,76,1.0],[118,49,77,1.0],[118,49,78,1.0],[118,49,79,1.0],[118,50,64,1.0],[118,50,65,1.0],[118,50,66,1.0],[118,50,67,1.0],[118,50,68,1.0],[118,50,69,1.0],[118,50,70,1.0],[118,50,71,1.0],[118,50,72,1.0],[118,50,73,1.0],[118,50,74,1.0],[118,50,75,1.0],[118,50,76,1.0],[118,50,77,1.0],[118,50,78,1.0],[118,50,79,1.0],[118,51,64,1.0],[118,51,65,1.0],[118,51,66,1.0],[118,51,67,1.0],[118,51,68,1.0],[118,51,69,1.0],[118,51,70,1.0],[118,51,71,1.0],[118,51,72,1.0],[118,51,73,1.0],[118,51,74,1.0],[118,51,75,1.0],[118,51,76,1.0],[118,51,77,1.0],[118,51,78,1.0],[118,51,79,1.0],[118,52,64,1.0],[118,52,65,1.0],[118,52,66,1.0],[118,52,67,1.0],[118,52,68,1.0],[118,52,69,1.0],[118,52,70,1.0],[118,52,71,1.0],[118,52,72,1.0],[118,52,73,1.0],[118,52,74,1.0],[118,52,75,1.0],[118,52,76,1.0],[118,52,77,1.0],[118,52,78,1.0],[118,52,79,1.0],[118,53,64,1.0],[118,53,65,1.0],[118,53,66,1.0],[118,53,67,1.0],[118,53,68,1.0],[118,53,69,1.0],[118,53,70,1.0],[118,53,71,1.0],[118,53,72,1.0],[118,53,73,1.0],[118,53,74,1.0],[118,53,75,1.0],[118,53,76,1.0],[118,53,77,1.0],[118,53,78,1.0],[118,53,79,1.0],[118,54,64,1.0],[118,54,65,1.0],[118,54,66,1.0],[118,54,67,1.0],[118,54,68,1.0],[118,54,69,1.0],[118,54,70,1.0],[118,54,71,1.0],[118,54,72,1.0],[118,54,73,1.0],[118,54,74,1.0],[118,54,75,1.0],[118,54,76,1.0],[118,54,77,1.0],[118,54,78,1.0],[118,54,79,1.0],[118,55,64,1.0],[118,55,65,1.0],[118,55,66,1.0],[118,55,67,1.0],[118,55,68,1.0],[118,55,69,1.0],[118,55,70,1.0],[118,55,71,1.0],[118,55,72,1.0],[118,55,73,1.0],[118,55,74,1.0],[118,55,75,1.0],[118,55,76,1.0],[118,55,77,1.0],[118,55,78,1.0],[118,55,79,1.0],[118,56,64,1.0],[118,56,65,1.0],[118,56,66,1.0],[118,56,67,1.0],[118,56,68,1.0],[118,56,69,1.0],[118,56,70,1.0],[118,56,71,1.0],[118,56,72,1.0],[118,56,73,1.0],[118,56,74,1.0],[118,56,75,1.0],[118,56,76,1.0],[118,56,77,1.0],[118,56,78,1.0],[118,56,79,1.0],[118,57,64,1.0],[118,57,65,1.0],[118,57,66,1.0],[118,57,67,1.0],[118,57,68,1.0],[118,57,69,1.0],[118,57,70,1.0],[118,57,71,1.0],[118,57,72,1.0],[118,57,73,1.0],[118,57,74,1.0],[118,57,75,1.0],[118,57,76,1.0],[118,57,77,1.0],[118,57,78,1.0],[118,57,79,1.0],[118,58,64,1.0],[118,58,65,1.0],[118,58,66,1.0],[118,58,67,1.0],[118,58,68,1.0],[118,58,69,1.0],[118,58,70,1.0],[118,58,71,1.0],[118,58,72,1.0],[118,58,73,1.0],[118,58,74,1.0],[118,58,75,1.0],[118,58,76,1.0],[118,58,77,1.0],[118,58,78,1.0],[118,58,79,1.0],[118,59,64,1.0],[118,59,65,1.0],[118,59,66,1.0],[118,59,67,1.0],[118,59,68,1.0],[118,59,69,1.0],[118,59,70,1.0],[118,59,71,1.0],[118,59,72,1.0],[118,59,73,1.0],[118,59,74,1.0],[118,59,75,1.0],[118,59,76,1.0],[118,59,77,1.0],[118,59,78,1.0],[118,59,79,1.0],[118,60,64,1.0],[118,60,65,1.0],[118,60,66,1.0],[118,60,67,1.0],[118,60,68,1.0],[118,60,69,1.0],[118,60,70,1.0],[118,60,71,1.0],[118,60,72,1.0],[118,60,73,1.0],[118,60,74,1.0],[118,60,75,1.0],[118,60,76,1.0],[118,60,77,1.0],[118,60,78,1.0],[118,60,79,1.0],[118,61,64,1.0],[118,61,65,1.0],[118,61,66,1.0],[118,61,67,1.0],[118,61,68,1.0],[118,61,69,1.0],[118,61,70,1.0],[118,61,71,1.0],[118,61,72,1.0],[118,61,73,1.0],[118,61,74,1.0],[118,61,75,1.0],[118,61,76,1.0],[118,61,77,1.0],[118,61,78,1.0],[118,61,79,1.0],[118,62,64,1.0],[118,62,65,1.0],[118,62,66,1.0],[118,62,67,1.0],[118,62,68,1.0],[118,62,69,1.0],[118,62,70,1.0],[118,62,71,1.0],[118,62,72,1.0],[118,62,73,1.0],[118,62,74,1.0],[118,62,75,1.0],[118,62,76,1.0],[118,62,77,1.0],[118,62,78,1.0],[118,62,79,1.0],[118,63,64,1.0],[118,63,65,1.0],[118,63,66,1.0],[118,63,67,1.0],[118,63,68,1.0],[118,63,69,1.0],[118,63,70,1.0],[118,63,71,1.0],[118,63,72,1.0],[118,63,73,1.0],[118,63,74,1.0],[118,63,75,1.0],[118,63,76,1.0],[118,63,77,1.0],[118,63,78,1.0],[118,63,79,1.0],[118,64,64,1.0],[118,64,65,1.0],[118,64,66,1.0],[118,64,67,1.0],[118,64,68,1.0],[118,64,69,1.0],[118,64,70,1.0],[118,64,71,1.0],[118,64,72,1.0],[118,64,73,1.0],[118,64,74,1.0],[118,64,75,1.0],[118,64,76,1.0],[118,64,77,1.0],[118,64,78,1.0],[118,64,79,1.0],[118,65,64,1.0],[118,65,65,1.0],[118,65,66,1.0],[118,65,67,1.0],[118,65,68,1.0],[118,65,69,1.0],[118,65,70,1.0],[118,65,71,1.0],[118,65,72,1.0],[118,65,73,1.0],[118,65,74,1.0],[118,65,75,1.0],[118,65,76,1.0],[118,65,77,1.0],[118,65,78,1.0],[118,65,79,1.0],[118,66,64,1.0],[118,66,65,1.0],[118,66,66,1.0],[118,66,67,1.0],[118,66,68,1.0],[118,66,69,1.0],[118,66,70,1.0],[118,66,71,1.0],[118,66,72,1.0],[118,66,73,1.0],[118,66,74,1.0],[118,66,75,1.0],[118,66,76,1.0],[118,66,77,1.0],[118,66,78,1.0],[118,66,79,1.0],[118,67,64,1.0],[118,67,65,1.0],[118,67,66,1.0],[118,67,67,1.0],[118,67,68,1.0],[118,67,69,1.0],[118,67,70,1.0],[118,67,71,1.0],[118,67,72,1.0],[118,67,73,1.0],[118,67,74,1.0],[118,67,75,1.0],[118,67,76,1.0],[118,67,77,1.0],[118,67,78,1.0],[118,67,79,1.0],[118,68,64,1.0],[118,68,65,1.0],[118,68,66,1.0],[118,68,67,1.0],[118,68,68,1.0],[118,68,69,1.0],[118,68,70,1.0],[118,68,71,1.0],[118,68,72,1.0],[118,68,73,1.0],[118,68,74,1.0],[118,68,75,1.0],[118,68,76,1.0],[118,68,77,1.0],[118,68,78,1.0],[118,68,79,1.0],[118,69,64,1.0],[118,69,65,1.0],[118,69,66,1.0],[118,69,67,1.0],[118,69,68,1.0],[118,69,69,1.0],[118,69,70,1.0],[118,69,71,1.0],[118,69,72,1.0],[118,69,73,1.0],[118,69,74,1.0],[118,69,75,1.0],[118,69,76,1.0],[118,69,77,1.0],[118,69,78,1.0],[118,69,79,1.0],[118,70,64,1.0],[118,70,65,1.0],[118,70,66,1.0],[118,70,67,1.0],[118,70,68,1.0],[118,70,69,1.0],[118,70,70,1.0],[118,70,71,1.0],[118,70,72,1.0],[118,70,73,1.0],[118,70,74,1.0],[118,70,75,1.0],[118,70,76,1.0],[118,70,77,1.0],[118,70,78,1.0],[118,70,79,1.0],[118,71,64,1.0],[118,71,65,1.0],[118,71,66,1.0],[118,71,67,1.0],[118,71,68,1.0],[118,71,69,1.0],[118,71,70,1.0],[118,71,71,1.0],[118,71,72,1.0],[118,71,73,1.0],[118,71,74,1.0],[118,71,75,1.0],[118,71,76,1.0],[118,71,77,1.0],[118,71,78,1.0],[118,71,79,1.0],[118,72,64,1.0],[118,72,65,1.0],[118,72,66,1.0],[118,72,67,1.0],[118,72,68,1.0],[118,72,69,1.0],[118,72,70,1.0],[118,72,71,1.0],[118,72,72,1.0],[118,72,73,1.0],[118,72,74,1.0],[118,72,75,1.0],[118,72,76,1.0],[118,72,77,1.0],[118,72,78,1.0],[118,72,79,1.0],[118,73,64,1.0],[118,73,65,1.0],[118,73,66,1.0],[118,73,67,1.0],[118,73,68,1.0],[118,73,69,1.0],[118,73,70,1.0],[118,73,71,1.0],[118,73,72,1.0],[118,73,73,1.0],[118,73,74,1.0],[118,73,75,1.0],[118,73,76,1.0],[118,73,77,1.0],[118,73,78,1.0],[118,73,79,1.0],[118,74,64,1.0],[118,74,65,1.0],[118,74,66,1.0],[118,74,67,1.0],[118,74,68,1.0],[118,74,69,1.0],[118,74,70,1.0],[118,74,71,1.0],[118,74,72,1.0],[118,74,73,1.0],[118,74,74,1.0],[118,74,75,1.0],[118,74,76,1.0],[118,74,77,1.0],[118,74,78,1.0],[118,74,79,1.0],[118,75,64,1.0],[118,75,65,1.0],[118,75,66,1.0],[118,75,67,1.0],[118,75,68,1.0],[118,75,69,1.0],[118,75,70,1.0],[118,75,71,1.0],[118,75,72,1.0],[118,75,73,1.0],[118,75,74,1.0],[118,75,75,1.0],[118,75,76,1.0],[118,75,77,1.0],[118,75,78,1.0],[118,75,79,1.0],[118,76,64,1.0],[118,76,65,1.0],[118,76,66,1.0],[118,76,67,1.0],[118,76,68,1.0],[118,76,69,1.0],[118,76,70,1.0],[118,76,71,1.0],[118,76,72,1.0],[118,76,73,1.0],[118,76,74,1.0],[118,76,75,1.0],[118,76,76,1.0],[118,76,77,1.0],[118,76,78,1.0],[118,76,79,1.0],[118,77,64,1.0],[118,77,65,1.0],[118,77,66,1.0],[118,77,67,1.0],[118,77,68,1.0],[118,77,69,1.0],[118,77,70,1.0],[118,77,71,1.0],[118,77,72,1.0],[118,77,73,1.0],[118,77,74,1.0],[118,77,75,1.0],[118,77,76,1.0],[118,77,77,1.0],[118,77,78,1.0],[118,77,79,1.0],[118,78,64,1.0],[118,78,65,1.0],[118,78,66,1.0],[118,78,67,1.0],[118,78,68,1.0],[118,78,69,1.0],[118,78,70,1.0],[118,78,71,1.0],[118,78,72,1.0],[118,78,73,1.0],[118,78,74,1.0],[118,78,75,1.0],[118,78,76,1.0],[118,78,77,1.0],[118,78,78,1.0],[118,78,79,1.0],[118,79,64,1.0],[118,79,65,1.0],[118,79,66,1.0],[118,79,67,1.0],[118,79,68,1.0],[118,79,69,1.0],[118,79,70,1.0],[118,79,71,1.0],[118,79,72,1.0],[118,79,73,1.0],[118,79,74,1.0],[118,79,75,1.0],[118,79,76,1.0],[118,79,77,1.0],[118,79,78,1.0],[118,79,79,1.0],[118,80,64,1.0],[118,80,65,1.0],[118,80,66,1.0],[118,80,67,1.0],[118,80,68,1.0],[118,80,69,1.0],[118,80,70,1.0],[118,80,71,1.0],[118,80,72,1.0],[118,80,73,1.0],[118,80,74,1.0],[118,80,75,1.0],[118,80,76,1.0],[118,80,77,1.0],[118,80,78,1.0],[118,80,79,1.0],[118,81,64,1.0],[118,81,65,1.0],[118,81,66,1.0],[118,81,67,1.0],[118,81,68,1.0],[118,81,69,1.0],[118,81,70,1.0],[118,81,71,1.0],[118,81,72,1.0],[118,81,73,1.0],[118,81,74,1.0],[118,81,75,1.0],[118,81,76,1.0],[118,81,77,1.0],[118,81,78,1.0],[118,81,79,1.0],[118,82,64,1.0],[118,82,65,1.0],[118,82,66,1.0],[118,82,67,1.0],[118,82,68,1.0],[118,82,69,1.0],[118,82,70,1.0],[118,82,71,1.0],[118,82,72,1.0],[118,82,73,1.0],[118,82,74,1.0],[118,82,75,1.0],[118,82,76,1.0],[118,82,77,1.0],[118,82,78,1.0],[118,82,79,1.0],[118,83,64,1.0],[118,83,65,1.0],[118,83,66,1.0],[118,83,67,1.0],[118,83,68,1.0],[118,83,69,1.0],[118,83,70,1.0],[118,83,71,1.0],[118,83,72,1.0],[118,83,73,1.0],[118,83,74,1.0],[118,83,75,1.0],[118,83,76,1.0],[118,83,77,1.0],[118,83,78,1.0],[118,83,79,1.0],[118,84,64,1.0],[118,84,65,1.0],[118,84,66,1.0],[118,84,67,1.0],[118,84,68,1.0],[118,84,69,1.0],[118,84,70,1.0],[118,84,71,1.0],[118,84,72,1.0],[118,84,73,1.0],[118,84,74,1.0],[118,84,75,1.0],[118,84,76,1.0],[118,84,77,1.0],[118,84,78,1.0],[118,84,79,1.0],[118,85,64,1.0],[118,85,65,1.0],[118,85,66,1.0],[118,85,67,1.0],[118,85,68,1.0],[118,85,69,1.0],[118,85,70,1.0],[118,85,71,1.0],[118,85,72,1.0],[118,85,73,1.0],[118,85,74,1.0],[118,85,75,1.0],[118,85,76,1.0],[118,85,77,1.0],[118,85,78,1.0],[118,85,79,1.0],[118,86,64,1.0],[118,86,65,1.0],[118,86,66,1.0],[118,86,67,1.0],[118,86,68,1.0],[118,86,69,1.0],[118,86,70,1.0],[118,86,71,1.0],[118,86,72,1.0],[118,86,73,1.0],[118,86,74,1.0],[118,86,75,1.0],[118,86,76,1.0],[118,86,77,1.0],[118,86,78,1.0],[118,86,79,1.0],[118,87,64,1.0],[118,87,65,1.0],[118,87,66,1.0],[118,87,67,1.0],[118,87,68,1.0],[118,87,69,1.0],[118,87,70,1.0],[118,87,71,1.0],[118,87,72,1.0],[118,87,73,1.0],[118,87,74,1.0],[118,87,75,1.0],[118,87,76,1.0],[118,87,77,1.0],[118,87,78,1.0],[118,87,79,1.0],[118,88,64,1.0],[118,88,65,1.0],[118,88,66,1.0],[118,88,67,1.0],[118,88,68,1.0],[118,88,69,1.0],[118,88,70,1.0],[118,88,71,1.0],[118,88,72,1.0],[118,88,73,1.0],[118,88,74,1.0],[118,88,75,1.0],[118,88,76,1.0],[118,88,77,1.0],[118,88,78,1.0],[118,88,79,1.0],[118,89,64,1.0],[118,89,65,1.0],[118,89,66,1.0],[118,89,67,1.0],[118,89,68,1.0],[118,89,69,1.0],[118,89,70,1.0],[118,89,71,1.0],[118,89,72,1.0],[118,89,73,1.0],[118,89,74,1.0],[118,89,75,1.0],[118,89,76,1.0],[118,89,77,1.0],[118,89,78,1.0],[118,89,79,1.0],[118,90,64,1.0],[118,90,65,1.0],[118,90,66,1.0],[118,90,67,1.0],[118,90,68,1.0],[118,90,69,1.0],[118,90,70,1.0],[118,90,71,1.0],[118,90,72,1.0],[118,90,73,1.0],[118,90,74,1.0],[118,90,75,1.0],[118,90,76,1.0],[118,90,77,1.0],[118,90,78,1.0],[118,90,79,1.0],[118,91,64,1.0],[118,91,65,1.0],[118,91,66,1.0],[118,91,67,1.0],[118,91,68,1.0],[118,91,69,1.0],[118,91,70,1.0],[118,91,71,1.0],[118,91,72,1.0],[118,91,73,1.0],[118,91,74,1.0],[118,91,75,1.0],[118,91,76,1.0],[118,91,77,1.0],[118,91,78,1.0],[118,91,79,1.0],[118,92,64,1.0],[118,92,65,1.0],[118,92,66,1.0],[118,92,67,1.0],[118,92,68,1.0],[118,92,69,1.0],[118,92,70,1.0],[118,92,71,1.0],[118,92,72,1.0],[118,92,73,1.0],[118,92,74,1.0],[118,92,75,1.0],[118,92,76,1.0],[118,92,77,1.0],[118,92,78,1.0],[118,92,79,1.0],[118,93,64,1.0],[118,93,65,1.0],[118,93,66,1.0],[118,93,67,1.0],[118,93,68,1.0],[118,93,69,1.0],[118,93,70,1.0],[118,93,71,1.0],[118,93,72,1.0],[118,93,73,1.0],[118,93,74,1.0],[118,93,75,1.0],[118,93,76,1.0],[118,93,77,1.0],[118,93,78,1.0],[118,93,79,1.0],[118,94,64,1.0],[118,94,65,1.0],[118,94,66,1.0],[118,94,67,1.0],[118,94,68,1.0],[118,94,69,1.0],[118,94,70,1.0],[118,94,71,1.0],[118,94,72,1.0],[118,94,73,1.0],[118,94,74,1.0],[118,94,75,1.0],[118,94,76,1.0],[118,94,77,1.0],[118,94,78,1.0],[118,94,79,1.0],[118,95,64,1.0],[118,95,65,1.0],[118,95,66,1.0],[118,95,67,1.0],[118,95,68,1.0],[118,95,69,1.0],[118,95,70,1.0],[118,95,71,1.0],[118,95,72,1.0],[118,95,73,1.0],[118,95,74,1.0],[118,95,75,1.0],[118,95,76,1.0],[118,95,77,1.0],[118,95,78,1.0],[118,95,79,1.0],[118,96,64,1.0],[118,96,65,1.0],[118,96,66,1.0],[118,96,67,1.0],[118,96,68,1.0],[118,96,69,1.0],[118,96,70,1.0],[118,96,71,1.0],[118,96,72,1.0],[118,96,73,1.0],[118,96,74,1.0],[118,96,75,1.0],[118,96,76,1.0],[118,96,77,1.0],[118,96,78,1.0],[118,96,79,1.0],[118,97,64,1.0],[118,97,65,1.0],[118,97,66,1.0],[118,97,67,1.0],[118,97,68,1.0],[118,97,69,1.0],[118,97,70,1.0],[118,97,71,1.0],[118,97,72,1.0],[118,97,73,1.0],[118,97,74,1.0],[118,97,75,1.0],[118,97,76,1.0],[118,97,77,1.0],[118,97,78,1.0],[118,97,79,1.0],[118,98,64,1.0],[118,98,65,1.0],[118,98,66,1.0],[118,98,67,1.0],[118,98,68,1.0],[118,98,69,1.0],[118,98,70,1.0],[118,98,71,1.0],[118,98,72,1.0],[118,98,73,1.0],[118,98,74,1.0],[118,98,75,1.0],[118,98,76,1.0],[118,98,77,1.0],[118,98,78,1.0],[118,98,79,1.0],[118,99,64,1.0],[118,99,65,1.0],[118,99,66,1.0],[118,99,67,1.0],[118,99,68,1.0],[118,99,69,1.0],[118,99,70,1.0],[118,99,71,1.0],[118,99,72,1.0],[118,99,73,1.0],[118,99,74,1.0],[118,99,75,1.0],[118,99,76,1.0],[118,99,77,1.0],[118,99,78,1.0],[118,99,79,1.0],[118,100,64,1.0],[118,100,65,1.0],[118,100,66,1.0],[118,100,67,1.0],[118,100,68,1.0],[118,100,69,1.0],[118,100,70,1.0],[118,100,71,1.0],[118,100,72,1.0],[118,100,73,1.0],[118,100,74,1.0],[118,100,75,1.0],[118,100,76,1.0],[118,100,77,1.0],[118,100,78,1.0],[118,100,79,1.0],[118,101,64,1.0],[118,101,65,1.0],[118,101,66,1.0],[118,101,67,1.0],[118,101,68,1.0],[118,101,69,1.0],[118,101,70,1.0],[118,101,71,1.0],[118,101,72,1.0],[118,101,73,1.0],[118,101,74,1.0],[118,101,75,1.0],[118,101,76,1.0],[118,101,77,1.0],[118,101,78,1.0],[118,101,79,1.0],[118,102,64,1.0],[118,102,65,1.0],[118,102,66,1.0],[118,102,67,1.0],[118,102,68,1.0],[118,102,69,1.0],[118,102,70,1.0],[118,102,71,1.0],[118,102,72,1.0],[118,102,73,1.0],[118,102,74,1.0],[118,102,75,1.0],[118,102,76,1.0],[118,102,77,1.0],[118,102,78,1.0],[118,102,79,1.0],[118,103,64,1.0],[118,103,65,1.0],[118,103,66,1.0],[118,103,67,1.0],[118,103,68,1.0],[118,103,69,1.0],[118,103,70,1.0],[118,103,71,1.0],[118,103,72,1.0],[118,103,73,1.0],[118,103,74,1.0],[118,103,75,1.0],[118,103,76,1.0],[118,103,77,1.0],[118,103,78,1.0],[118,103,79,1.0],[118,104,64,1.0],[118,104,65,1.0],[118,104,66,1.0],[118,104,67,1.0],[118,104,68,1.0],[118,104,69,1.0],[118,104,70,1.0],[118,104,71,1.0],[118,104,72,1.0],[118,104,73,1.0],[118,104,74,1.0],[118,104,75,1.0],[118,104,76,1.0],[118,104,77,1.0],[118,104,78,1.0],[118,104,79,1.0],[118,105,64,1.0],[118,105,65,1.0],[118,105,66,1.0],[118,105,67,1.0],[118,105,68,1.0],[118,105,69,1.0],[118,105,70,1.0],[118,105,71,1.0],[118,105,72,1.0],[118,105,73,1.0],[118,105,74,1.0],[118,105,75,1.0],[118,105,76,1.0],[118,105,77,1.0],[118,105,78,1.0],[118,105,79,1.0],[118,106,64,1.0],[118,106,65,1.0],[118,106,66,1.0],[118,106,67,1.0],[118,106,68,1.0],[118,106,69,1.0],[118,106,70,1.0],[118,106,71,1.0],[118,106,72,1.0],[118,106,73,1.0],[118,106,74,1.0],[118,106,75,1.0],[118,106,76,1.0],[118,106,77,1.0],[118,106,78,1.0],[118,106,79,1.0],[118,107,64,1.0],[118,107,65,1.0],[118,107,66,1.0],[118,107,67,1.0],[118,107,68,1.0],[118,107,69,1.0],[118,107,70,1.0],[118,107,71,1.0],[118,107,72,1.0],[118,107,73,1.0],[118,107,74,1.0],[118,107,75,1.0],[118,107,76,1.0],[118,107,77,1.0],[118,107,78,1.0],[118,107,79,1.0],[118,108,64,1.0],[118,108,65,1.0],[118,108,66,1.0],[118,108,67,1.0],[118,108,68,1.0],[118,108,69,1.0],[118,108,70,1.0],[118,108,71,1.0],[118,108,72,1.0],[118,108,73,1.0],[118,108,74,1.0],[118,108,75,1.0],[118,108,76,1.0],[118,108,77,1.0],[118,108,78,1.0],[118,108,79,1.0],[118,109,64,1.0],[118,109,65,1.0],[118,109,66,1.0],[118,109,67,1.0],[118,109,68,1.0],[118,109,69,1.0],[118,109,70,1.0],[118,109,71,1.0],[118,109,72,1.0],[118,109,73,1.0],[118,109,74,1.0],[118,109,75,1.0],[118,109,76,1.0],[118,109,77,1.0],[118,109,78,1.0],[118,109,79,1.0],[118,110,64,1.0],[118,110,65,1.0],[118,110,66,1.0],[118,110,67,1.0],[118,110,68,1.0],[118,110,69,1.0],[118,110,70,1.0],[118,110,71,1.0],[118,110,72,1.0],[118,110,73,1.0],[118,110,74,1.0],[118,110,75,1.0],[118,110,76,1.0],[118,110,77,1.0],[118,110,78,1.0],[118,110,79,1.0],[118,111,64,1.0],[118,111,65,1.0],[118,111,66,1.0],[118,111,67,1.0],[118,111,68,1.0],[118,111,69,1.0],[118,111,70,1.0],[118,111,71,1.0],[118,111,72,1.0],[118,111,73,1.0],[118,111,74,1.0],[118,111,75,1.0],[118,111,76,1.0],[118,111,77,1.0],[118,111,78,1.0],[118,111,79,1.0],[118,112,64,1.0],[118,112,65,1.0],[118,112,66,1.0],[118,112,67,1.0],[118,112,68,1.0],[118,112,69,1.0],[118,112,70,1.0],[118,112,71,1.0],[118,112,72,1.0],[118,112,73,1.0],[118,112,74,1.0],[118,112,75,1.0],[118,112,76,1.0],[118,112,77,1.0],[118,112,78,1.0],[118,112,79,1.0],[118,113,64,1.0],[118,113,65,1.0],[118,113,66,1.0],[118,113,67,1.0],[118,113,68,1.0],[118,113,69,1.0],[118,113,70,1.0],[118,113,71,1.0],[118,113,72,1.0],[118,113,73,1.0],[118,113,74,1.0],[118,113,75,1.0],[118,113,76,1.0],[118,113,77,1.0],[118,113,78,1.0],[118,113,79,1.0],[118,114,64,1.0],[118,114,65,1.0],[118,114,66,1.0],[118,114,67,1.0],[118,114,68,1.0],[118,114,69,1.0],[118,114,70,1.0],[118,114,71,1.0],[118,114,72,1.0],[118,114,73,1.0],[118,114,74,1.0],[118,114,75,1.0],[118,114,76,1.0],[118,114,77,1.0],[118,114,78,1.0],[118,114,79,1.0],[118,115,64,1.0],[118,115,65,1.0],[118,115,66,1.0],[118,115,67,1.0],[118,115,68,1.0],[118,115,69,1.0],[118,115,70,1.0],[118,115,71,1.0],[118,115,72,1.0],[118,115,73,1.0],[118,115,74,1.0],[118,115,75,1.0],[118,115,76,1.0],[118,115,77,1.0],[118,115,78,1.0],[118,115,79,1.0],[118,116,64,1.0],[118,116,65,1.0],[118,116,66,1.0],[118,116,67,1.0],[118,116,68,1.0],[118,116,69,1.0],[118,116,70,1.0],[118,116,71,1.0],[118,116,72,1.0],[118,116,73,1.0],[118,116,74,1.0],[118,116,75,1.0],[118,116,76,1.0],[118,116,77,1.0],[118,116,78,1.0],[118,116,79,1.0],[118,117,64,1.0],[118,117,65,1.0],[118,117,66,1.0],[118,117,67,1.0],[118,117,68,1.0],[118,117,69,1.0],[118,117,70,1.0],[118,117,71,1.0],[118,117,72,1.0],[118,117,73,1.0],[118,117,74,1.0],[118,117,75,1.0],[118,117,76,1.0],[118,117,77,1.0],[118,117,78,1.0],[118,117,79,1.0],[118,118,64,1.0],[118,118,65,1.0],[118,118,66,1.0],[118,118,67,1.0],[118,118,68,1.0],[118,118,69,1.0],[118,118,70,1.0],[118,118,71,1.0],[118,118,72,1.0],[118,118,73,1.0],[118,118,74,1.0],[118,118,75,1.0],[118,118,76,1.0],[118,118,77,1.0],[118,118,78,1.0],[118,118,79,1.0],[118,119,64,1.0],[118,119,65,1.0],[118,119,66,1.0],[118,119,67,1.0],[118,119,68,1.0],[118,119,69,1.0],[118,119,70,1.0],[118,119,71,1.0],[118,119,72,1.0],[118,119,73,1.0],[118,119,74,1.0],[118,119,75,1.0],[118,119,76,1.0],[118,119,77,1.0],[118,119,78,1.0],[118,119,79,1.0],[118,120,64,1.0],[118,120,65,1.0],[118,120,66,1.0],[118,120,67,1.0],[118,120,68,1.0],[118,120,69,1.0],[118,120,70,1.0],[118,120,71,1.0],[118,120,72,1.0],[118,120,73,1.0],[118,120,74,1.0],[118,120,75,1.0],[118,120,76,1.0],[118,120,77,1.0],[118,120,78,1.0],[118,120,79,1.0],[118,121,64,1.0],[118,121,65,1.0],[118,121,66,1.0],[118,121,67,1.0],[118,121,68,1.0],[118,121,69,1.0],[118,121,70,1.0],[118,121,71,1.0],[118,121,72,1.0],[118,121,73,1.0],[118,121,74,1.0],[118,121,75,1.0],[118,121,76,1.0],[118,121,77,1.0],[118,121,78,1.0],[118,121,79,1.0],[118,122,64,1.0],[118,122,65,1.0],[118,122,66,1.0],[118,122,67,1.0],[118,122,68,1.0],[118,122,69,1.0],[118,122,70,1.0],[118,122,71,1.0],[118,122,72,1.0],[118,122,73,1.0],[118,122,74,1.0],[118,122,75,1.0],[118,122,76,1.0],[118,122,77,1.0],[118,122,78,1.0],[118,122,79,1.0],[118,123,64,1.0],[118,123,65,1.0],[118,123,66,1.0],[118,123,67,1.0],[118,123,68,1.0],[118,123,69,1.0],[118,123,70,1.0],[118,123,71,1.0],[118,123,72,1.0],[118,123,73,1.0],[118,123,74,1.0],[118,123,75,1.0],[118,123,76,1.0],[118,123,77,1.0],[118,123,78,1.0],[118,123,79,1.0],[118,124,64,1.0],[118,124,65,1.0],[118,124,66,1.0],[118,124,67,1.0],[118,124,68,1.0],[118,124,69,1.0],[118,124,70,1.0],[118,124,71,1.0],[118,124,72,1.0],[118,124,73,1.0],[118,124,74,1.0],[118,124,75,1.0],[118,124,76,1.0],[118,124,77,1.0],[118,124,78,1.0],[118,124,79,1.0],[118,125,64,1.0],[118,125,65,1.0],[118,125,66,1.0],[118,125,67,1.0],[118,125,68,1.0],[118,125,69,1.0],[118,125,70,1.0],[118,125,71,1.0],[118,125,72,1.0],[118,125,73,1.0],[118,125,74,1.0],[118,125,75,1.0],[118,125,76,1.0],[118,125,77,1.0],[118,125,78,1.0],[118,125,79,1.0],[118,126,64,1.0],[118,126,65,1.0],[118,126,66,1.0],[118,126,67,1.0],[118,126,68,1.0],[118,126,69,1.0],[118,126,70,1.0],[118,126,71,1.0],[118,126,72,1.0],[118,126,73,1.0],[118,126,74,1.0],[118,126,75,1.0],[118,126,76,1.0],[118,126,77,1.0],[118,126,78,1.0],[118,126,79,1.0],[118,127,64,1.0],[118,127,65,1.0],[118,127,66,1.0],[118,127,67,1.0],[118,127,68,1.0],[118,127,69,1.0],[118,127,70,1.0],[118,127,71,1.0],[118,127,72,1.0],[118,127,73,1.0],[118,127,74,1.0],[118,127,75,1.0],[118,127,76,1.0],[118,127,77,1.0],[118,127,78,1.0],[118,127,79,1.0],[118,128,64,1.0],[118,128,65,1.0],[118,128,66,1.0],[118,128,67,1.0],[118,128,68,1.0],[118,128,69,1.0],[118,128,70,1.0],[118,128,71,1.0],[118,128,72,1.0],[118,128,73,1.0],[118,128,74,1.0],[118,128,75,1.0],[118,128,76,1.0],[118,128,77,1.0],[118,128,78,1.0],[118,128,79,1.0],[118,129,64,1.0],[118,129,65,1.0],[118,129,66,1.0],[118,129,67,1.0],[118,129,68,1.0],[118,129,69,1.0],[118,129,70,1.0],[118,129,71,1.0],[118,129,72,1.0],[118,129,73,1.0],[118,129,74,1.0],[118,129,75,1.0],[118,129,76,1.0],[118,129,77,1.0],[118,129,78,1.0],[118,129,79,1.0],[118,130,64,1.0],[118,130,65,1.0],[118,130,66,1.0],[118,130,67,1.0],[118,130,68,1.0],[118,130,69,1.0],[118,130,70,1.0],[118,130,71,1.0],[118,130,72,1.0],[118,130,73,1.0],[118,130,74,1.0],[118,130,75,1.0],[118,130,76,1.0],[118,130,77,1.0],[118,130,78,1.0],[118,130,79,1.0],[118,131,64,1.0],[118,131,65,1.0],[118,131,66,1.0],[118,131,67,1.0],[118,131,68,1.0],[118,131,69,1.0],[118,131,70,1.0],[118,131,71,1.0],[118,131,72,1.0],[118,131,73,1.0],[118,131,74,1.0],[118,131,75,1.0],[118,131,76,1.0],[118,131,77,1.0],[118,131,78,1.0],[118,131,79,1.0],[118,132,64,1.0],[118,132,65,1.0],[118,132,66,1.0],[118,132,67,1.0],[118,132,68,1.0],[118,132,69,1.0],[118,132,70,1.0],[118,132,71,1.0],[118,132,72,1.0],[118,132,73,1.0],[118,132,74,1.0],[118,132,75,1.0],[118,132,76,1.0],[118,132,77,1.0],[118,132,78,1.0],[118,132,79,1.0],[118,133,64,1.0],[118,133,65,1.0],[118,133,66,1.0],[118,133,67,1.0],[118,133,68,1.0],[118,133,69,1.0],[118,133,70,1.0],[118,133,71,1.0],[118,133,72,1.0],[118,133,73,1.0],[118,133,74,1.0],[118,133,75,1.0],[118,133,76,1.0],[118,133,77,1.0],[118,133,78,1.0],[118,133,79,1.0],[118,134,64,1.0],[118,134,65,1.0],[118,134,66,1.0],[118,134,67,1.0],[118,134,68,1.0],[118,134,69,1.0],[118,134,70,1.0],[118,134,71,1.0],[118,134,72,1.0],[118,134,73,1.0],[118,134,74,1.0],[118,134,75,1.0],[118,134,76,1.0],[118,134,77,1.0],[118,134,78,1.0],[118,134,79,1.0],[118,135,64,1.0],[118,135,65,1.0],[118,135,66,1.0],[118,135,67,1.0],[118,135,68,1.0],[118,135,69,1.0],[118,135,70,1.0],[118,135,71,1.0],[118,135,72,1.0],[118,135,73,1.0],[118,135,74,1.0],[118,135,75,1.0],[118,135,76,1.0],[118,135,77,1.0],[118,135,78,1.0],[118,135,79,1.0],[118,136,64,1.0],[118,136,65,1.0],[118,136,66,1.0],[118,136,67,1.0],[118,136,68,1.0],[118,136,69,1.0],[118,136,70,1.0],[118,136,71,1.0],[118,136,72,1.0],[118,136,73,1.0],[118,136,74,1.0],[118,136,75,1.0],[118,136,76,1.0],[118,136,77,1.0],[118,136,78,1.0],[118,136,79,1.0],[118,137,64,1.0],[118,137,65,1.0],[118,137,66,1.0],[118,137,67,1.0],[118,137,68,1.0],[118,137,69,1.0],[118,137,70,1.0],[118,137,71,1.0],[118,137,72,1.0],[118,137,73,1.0],[118,137,74,1.0],[118,137,75,1.0],[118,137,76,1.0],[118,137,77,1.0],[118,137,78,1.0],[118,137,79,1.0],[118,138,64,1.0],[118,138,65,1.0],[118,138,66,1.0],[118,138,67,1.0],[118,138,68,1.0],[118,138,69,1.0],[118,138,70,1.0],[118,138,71,1.0],[118,138,72,1.0],[118,138,73,1.0],[118,138,74,1.0],[118,138,75,1.0],[118,138,76,1.0],[118,138,77,1.0],[118,138,78,1.0],[118,138,79,1.0],[118,139,64,1.0],[118,139,65,1.0],[118,139,66,1.0],[118,139,67,1.0],[118,139,68,1.0],[118,139,69,1.0],[118,139,70,1.0],[118,139,71,1.0],[118,139,72,1.0],[118,139,73,1.0],[118,139,74,1.0],[118,139,75,1.0],[118,139,76,1.0],[118,139,77,1.0],[118,139,78,1.0],[118,139,79,1.0],[118,140,64,1.0],[118,140,65,1.0],[118,140,66,1.0],[118,140,67,1.0],[118,140,68,1.0],[118,140,69,1.0],[118,140,70,1.0],[118,140,71,1.0],[118,140,72,1.0],[118,140,73,1.0],[118,140,74,1.0],[118,140,75,1.0],[118,140,76,1.0],[118,140,77,1.0],[118,140,78,1.0],[118,140,79,1.0],[118,141,64,1.0],[118,141,65,1.0],[118,141,66,1.0],[118,141,67,1.0],[118,141,68,1.0],[118,141,69,1.0],[118,141,70,1.0],[118,141,71,1.0],[118,141,72,1.0],[118,141,73,1.0],[118,141,74,1.0],[118,141,75,1.0],[118,141,76,1.0],[118,141,77,1.0],[118,141,78,1.0],[118,141,79,1.0],[118,142,64,1.0],[118,142,65,1.0],[118,142,66,1.0],[118,142,67,1.0],[118,142,68,1.0],[118,142,69,1.0],[118,142,70,1.0],[118,142,71,1.0],[118,142,72,1.0],[118,142,73,1.0],[118,142,74,1.0],[118,142,75,1.0],[118,142,76,1.0],[118,142,77,1.0],[118,142,78,1.0],[118,142,79,1.0],[118,143,64,1.0],[118,143,65,1.0],[118,143,66,1.0],[118,143,67,1.0],[118,143,68,1.0],[118,143,69,1.0],[118,143,70,1.0],[118,143,71,1.0],[118,143,72,1.0],[118,143,73,1.0],[118,143,74,1.0],[118,143,75,1.0],[118,143,76,1.0],[118,143,77,1.0],[118,143,78,1.0],[118,143,79,1.0],[118,144,64,1.0],[118,144,65,1.0],[118,144,66,1.0],[118,144,67,1.0],[118,144,68,1.0],[118,144,69,1.0],[118,144,70,1.0],[118,144,71,1.0],[118,144,72,1.0],[118,144,73,1.0],[118,144,74,1.0],[118,144,75,1.0],[118,144,76,1.0],[118,144,77,1.0],[118,144,78,1.0],[118,144,79,1.0],[118,145,64,1.0],[118,145,65,1.0],[118,145,66,1.0],[118,145,67,1.0],[118,145,68,1.0],[118,145,69,1.0],[118,145,70,1.0],[118,145,71,1.0],[118,145,72,1.0],[118,145,73,1.0],[118,145,74,1.0],[118,145,75,1.0],[118,145,76,1.0],[118,145,77,1.0],[118,145,78,1.0],[118,145,79,1.0],[118,146,64,1.0],[118,146,65,1.0],[118,146,66,1.0],[118,146,67,1.0],[118,146,68,1.0],[118,146,69,1.0],[118,146,70,1.0],[118,146,71,1.0],[118,146,72,1.0],[118,146,73,1.0],[118,146,74,1.0],[118,146,75,1.0],[118,146,76,1.0],[118,146,77,1.0],[118,146,78,1.0],[118,146,79,1.0],[118,147,64,1.0],[118,147,65,1.0],[118,147,66,1.0],[118,147,67,1.0],[118,147,68,1.0],[118,147,69,1.0],[118,147,70,1.0],[118,147,71,1.0],[118,147,72,1.0],[118,147,73,1.0],[118,147,74,1.0],[118,147,75,1.0],[118,147,76,1.0],[118,147,77,1.0],[118,147,78,1.0],[118,147,79,1.0],[118,148,64,1.0],[118,148,65,1.0],[118,148,66,1.0],[118,148,67,1.0],[118,148,68,1.0],[118,148,69,1.0],[118,148,70,1.0],[118,148,71,1.0],[118,148,72,1.0],[118,148,73,1.0],[118,148,74,1.0],[118,148,75,1.0],[118,148,76,1.0],[118,148,77,1.0],[118,148,78,1.0],[118,148,79,1.0],[118,149,64,1.0],[118,149,65,1.0],[118,149,66,1.0],[118,149,67,1.0],[118,149,68,1.0],[118,149,69,1.0],[118,149,70,1.0],[118,149,71,1.0],[118,149,72,1.0],[118,149,73,1.0],[118,149,74,1.0],[118,149,75,1.0],[118,149,76,1.0],[118,149,77,1.0],[118,149,78,1.0],[118,149,79,1.0],[118,150,64,1.0],[118,150,65,1.0],[118,150,66,1.0],[118,150,67,1.0],[118,150,68,1.0],[118,150,69,1.0],[118,150,70,1.0],[118,150,71,1.0],[118,150,72,1.0],[118,150,73,1.0],[118,150,74,1.0],[118,150,75,1.0],[118,150,76,1.0],[118,150,77,1.0],[118,150,78,1.0],[118,150,79,1.0],[118,151,64,1.0],[118,151,65,1.0],[118,151,66,1.0],[118,151,67,1.0],[118,151,68,1.0],[118,151,69,1.0],[118,151,70,1.0],[118,151,71,1.0],[118,151,72,1.0],[118,151,73,1.0],[118,151,74,1.0],[118,151,75,1.0],[118,151,76,1.0],[118,151,77,1.0],[118,151,78,1.0],[118,151,79,1.0],[118,152,64,1.0],[118,152,65,1.0],[118,152,66,1.0],[118,152,67,1.0],[118,152,68,1.0],[118,152,69,1.0],[118,152,70,1.0],[118,152,71,1.0],[118,152,72,1.0],[118,152,73,1.0],[118,152,74,1.0],[118,152,75,1.0],[118,152,76,1.0],[118,152,77,1.0],[118,152,78,1.0],[118,152,79,1.0],[118,153,64,1.0],[118,153,65,1.0],[118,153,66,1.0],[118,153,67,1.0],[118,153,68,1.0],[118,153,69,1.0],[118,153,70,1.0],[118,153,71,1.0],[118,153,72,1.0],[118,153,73,1.0],[118,153,74,1.0],[118,153,75,1.0],[118,153,76,1.0],[118,153,77,1.0],[118,153,78,1.0],[118,153,79,1.0],[118,154,64,1.0],[118,154,65,1.0],[118,154,66,1.0],[118,154,67,1.0],[118,154,68,1.0],[118,154,69,1.0],[118,154,70,1.0],[118,154,71,1.0],[118,154,72,1.0],[118,154,73,1.0],[118,154,74,1.0],[118,154,75,1.0],[118,154,76,1.0],[118,154,77,1.0],[118,154,78,1.0],[118,154,79,1.0],[118,155,64,1.0],[118,155,65,1.0],[118,155,66,1.0],[118,155,67,1.0],[118,155,68,1.0],[118,155,69,1.0],[118,155,70,1.0],[118,155,71,1.0],[118,155,72,1.0],[118,155,73,1.0],[118,155,74,1.0],[118,155,75,1.0],[118,155,76,1.0],[118,155,77,1.0],[118,155,78,1.0],[118,155,79,1.0],[118,156,64,1.0],[118,156,65,1.0],[118,156,66,1.0],[118,156,67,1.0],[118,156,68,1.0],[118,156,69,1.0],[118,156,70,1.0],[118,156,71,1.0],[118,156,72,1.0],[118,156,73,1.0],[118,156,74,1.0],[118,156,75,1.0],[118,156,76,1.0],[118,156,77,1.0],[118,156,78,1.0],[118,156,79,1.0],[118,157,64,1.0],[118,157,65,1.0],[118,157,66,1.0],[118,157,67,1.0],[118,157,68,1.0],[118,157,69,1.0],[118,157,70,1.0],[118,157,71,1.0],[118,157,72,1.0],[118,157,73,1.0],[118,157,74,1.0],[118,157,75,1.0],[118,157,76,1.0],[118,157,77,1.0],[118,157,78,1.0],[118,157,79,1.0],[118,158,64,1.0],[118,158,65,1.0],[118,158,66,1.0],[118,158,67,1.0],[118,158,68,1.0],[118,158,69,1.0],[118,158,70,1.0],[118,158,71,1.0],[118,158,72,1.0],[118,158,73,1.0],[118,158,74,1.0],[118,158,75,1.0],[118,158,76,1.0],[118,158,77,1.0],[118,158,78,1.0],[118,158,79,1.0],[118,159,64,1.0],[118,159,65,1.0],[118,159,66,1.0],[118,159,67,1.0],[118,159,68,1.0],[118,159,69,1.0],[118,159,70,1.0],[118,159,71,1.0],[118,159,72,1.0],[118,159,73,1.0],[118,159,74,1.0],[118,159,75,1.0],[118,159,76,1.0],[118,159,77,1.0],[118,159,78,1.0],[118,159,79,1.0],[118,160,64,1.0],[118,160,65,1.0],[118,160,66,1.0],[118,160,67,1.0],[118,160,68,1.0],[118,160,69,1.0],[118,160,70,1.0],[118,160,71,1.0],[118,160,72,1.0],[118,160,73,1.0],[118,160,74,1.0],[118,160,75,1.0],[118,160,76,1.0],[118,160,77,1.0],[118,160,78,1.0],[118,160,79,1.0],[118,161,64,1.0],[118,161,65,1.0],[118,161,66,1.0],[118,161,67,1.0],[118,161,68,1.0],[118,161,69,1.0],[118,161,70,1.0],[118,161,71,1.0],[118,161,72,1.0],[118,161,73,1.0],[118,161,74,1.0],[118,161,75,1.0],[118,161,76,1.0],[118,161,77,1.0],[118,161,78,1.0],[118,161,79,1.0],[118,162,64,1.0],[118,162,65,1.0],[118,162,66,1.0],[118,162,67,1.0],[118,162,68,1.0],[118,162,69,1.0],[118,162,70,1.0],[118,162,71,1.0],[118,162,72,1.0],[118,162,73,1.0],[118,162,74,1.0],[118,162,75,1.0],[118,162,76,1.0],[118,162,77,1.0],[118,162,78,1.0],[118,162,79,1.0],[118,163,64,1.0],[118,163,65,1.0],[118,163,66,1.0],[118,163,67,1.0],[118,163,68,1.0],[118,163,69,1.0],[118,163,70,1.0],[118,163,71,1.0],[118,163,72,1.0],[118,163,73,1.0],[118,163,74,1.0],[118,163,75,1.0],[118,163,76,1.0],[118,163,77,1.0],[118,163,78,1.0],[118,163,79,1.0],[118,164,64,1.0],[118,164,65,1.0],[118,164,66,1.0],[118,164,67,1.0],[118,164,68,1.0],[118,164,69,1.0],[118,164,70,1.0],[118,164,71,1.0],[118,164,72,1.0],[118,164,73,1.0],[118,164,74,1.0],[118,164,75,1.0],[118,164,76,1.0],[118,164,77,1.0],[118,164,78,1.0],[118,164,79,1.0],[118,165,64,1.0],[118,165,65,1.0],[118,165,66,1.0],[118,165,67,1.0],[118,165,68,1.0],[118,165,69,1.0],[118,165,70,1.0],[118,165,71,1.0],[118,165,72,1.0],[118,165,73,1.0],[118,165,74,1.0],[118,165,75,1.0],[118,165,76,1.0],[118,165,77,1.0],[118,165,78,1.0],[118,165,79,1.0],[118,166,64,1.0],[118,166,65,1.0],[118,166,66,1.0],[118,166,67,1.0],[118,166,68,1.0],[118,166,69,1.0],[118,166,70,1.0],[118,166,71,1.0],[118,166,72,1.0],[118,166,73,1.0],[118,166,74,1.0],[118,166,75,1.0],[118,166,76,1.0],[118,166,77,1.0],[118,166,78,1.0],[118,166,79,1.0],[118,167,64,1.0],[118,167,65,1.0],[118,167,66,1.0],[118,167,67,1.0],[118,167,68,1.0],[118,167,69,1.0],[118,167,70,1.0],[118,167,71,1.0],[118,167,72,1.0],[118,167,73,1.0],[118,167,74,1.0],[118,167,75,1.0],[118,167,76,1.0],[118,167,77,1.0],[118,167,78,1.0],[118,167,79,1.0],[118,168,64,1.0],[118,168,65,1.0],[118,168,66,1.0],[118,168,67,1.0],[118,168,68,1.0],[118,168,69,1.0],[118,168,70,1.0],[118,168,71,1.0],[118,168,72,1.0],[118,168,73,1.0],[118,168,74,1.0],[118,168,75,1.0],[118,168,76,1.0],[118,168,77,1.0],[118,168,78,1.0],[118,168,79,1.0],[118,169,64,1.0],[118,169,65,1.0],[118,169,66,1.0],[118,169,67,1.0],[118,169,68,1.0],[118,169,69,1.0],[118,169,70,1.0],[118,169,71,1.0],[118,169,72,1.0],[118,169,73,1.0],[118,169,74,1.0],[118,169,75,1.0],[118,169,76,1.0],[118,169,77,1.0],[118,169,78,1.0],[118,169,79,1.0],[118,170,64,1.0],[118,170,65,1.0],[118,170,66,1.0],[118,170,67,1.0],[118,170,68,1.0],[118,170,69,1.0],[118,170,70,1.0],[118,170,71,1.0],[118,170,72,1.0],[118,170,73,1.0],[118,170,74,1.0],[118,170,75,1.0],[118,170,76,1.0],[118,170,77,1.0],[118,170,78,1.0],[118,170,79,1.0],[118,171,64,1.0],[118,171,65,1.0],[118,171,66,1.0],[118,171,67,1.0],[118,171,68,1.0],[118,171,69,1.0],[118,171,70,1.0],[118,171,71,1.0],[118,171,72,1.0],[118,171,73,1.0],[118,171,74,1.0],[118,171,75,1.0],[118,171,76,1.0],[118,171,77,1.0],[118,171,78,1.0],[118,171,79,1.0],[118,172,64,1.0],[118,172,65,1.0],[118,172,66,1.0],[118,172,67,1.0],[118,172,68,1.0],[118,172,69,1.0],[118,172,70,1.0],[118,172,71,1.0],[118,172,72,1.0],[118,172,73,1.0],[118,172,74,1.0],[118,172,75,1.0],[118,172,76,1.0],[118,172,77,1.0],[118,172,78,1.0],[118,172,79,1.0],[118,173,64,1.0],[118,173,65,1.0],[118,173,66,1.0],[118,173,67,1.0],[118,173,68,1.0],[118,173,69,1.0],[118,173,70,1.0],[118,173,71,1.0],[118,173,72,1.0],[118,173,73,1.0],[118,173,74,1.0],[118,173,75,1.0],[118,173,76,1.0],[118,173,77,1.0],[118,173,78,1.0],[118,173,79,1.0],[118,174,64,1.0],[118,174,65,1.0],[118,174,66,1.0],[118,174,67,1.0],[118,174,68,1.0],[118,174,69,1.0],[118,174,70,1.0],[118,174,71,1.0],[118,174,72,1.0],[118,174,73,1.0],[118,174,74,1.0],[118,174,75,1.0],[118,174,76,1.0],[118,174,77,1.0],[118,174,78,1.0],[118,174,79,1.0],[118,175,64,1.0],[118,175,65,1.0],[118,175,66,1.0],[118,175,67,1.0],[118,175,68,1.0],[118,175,69,1.0],[118,175,70,1.0],[118,175,71,1.0],[118,175,72,1.0],[118,175,73,1.0],[118,175,74,1.0],[118,175,75,1.0],[118,175,76,1.0],[118,175,77,1.0],[118,175,78,1.0],[118,175,79,1.0],[118,176,64,1.0],[118,176,65,1.0],[118,176,66,1.0],[118,176,67,1.0],[118,176,68,1.0],[118,176,69,1.0],[118,176,70,1.0],[118,176,71,1.0],[118,176,72,1.0],[118,176,73,1.0],[118,176,74,1.0],[118,176,75,1.0],[118,176,76,1.0],[118,176,77,1.0],[118,176,78,1.0],[118,176,79,1.0],[118,177,64,1.0],[118,177,65,1.0],[118,177,66,1.0],[118,177,67,1.0],[118,177,68,1.0],[118,177,69,1.0],[118,177,70,1.0],[118,177,71,1.0],[118,177,72,1.0],[118,177,73,1.0],[118,177,74,1.0],[118,177,75,1.0],[118,177,76,1.0],[118,177,77,1.0],[118,177,78,1.0],[118,177,79,1.0],[118,178,64,1.0],[118,178,65,1.0],[118,178,66,1.0],[118,178,67,1.0],[118,178,68,1.0],[118,178,69,1.0],[118,178,70,1.0],[118,178,71,1.0],[118,178,72,1.0],[118,178,73,1.0],[118,178,74,1.0],[118,178,75,1.0],[118,178,76,1.0],[118,178,77,1.0],[118,178,78,1.0],[118,178,79,1.0],[118,179,64,1.0],[118,179,65,1.0],[118,179,66,1.0],[118,179,67,1.0],[118,179,68,1.0],[118,179,69,1.0],[118,179,70,1.0],[118,179,71,1.0],[118,179,72,1.0],[118,179,73,1.0],[118,179,74,1.0],[118,179,75,1.0],[118,179,76,1.0],[118,179,77,1.0],[118,179,78,1.0],[118,179,79,1.0],[118,180,64,1.0],[118,180,65,1.0],[118,180,66,1.0],[118,180,67,1.0],[118,180,68,1.0],[118,180,69,1.0],[118,180,70,1.0],[118,180,71,1.0],[118,180,72,1.0],[118,180,73,1.0],[118,180,74,1.0],[118,180,75,1.0],[118,180,76,1.0],[118,180,77,1.0],[118,180,78,1.0],[118,180,79,1.0],[118,181,64,1.0],[118,181,65,1.0],[118,181,66,1.0],[118,181,67,1.0],[118,181,68,1.0],[118,181,69,1.0],[118,181,70,1.0],[118,181,71,1.0],[118,181,72,1.0],[118,181,73,1.0],[118,181,74,1.0],[118,181,75,1.0],[118,181,76,1.0],[118,181,77,1.0],[118,181,78,1.0],[118,181,79,1.0],[118,182,64,1.0],[118,182,65,1.0],[118,182,66,1.0],[118,182,67,1.0],[118,182,68,1.0],[118,182,69,1.0],[118,182,70,1.0],[118,182,71,1.0],[118,182,72,1.0],[118,182,73,1.0],[118,182,74,1.0],[118,182,75,1.0],[118,182,76,1.0],[118,182,77,1.0],[118,182,78,1.0],[118,182,79,1.0],[118,183,64,1.0],[118,183,65,1.0],[118,183,66,1.0],[118,183,67,1.0],[118,183,68,1.0],[118,183,69,1.0],[118,183,70,1.0],[118,183,71,1.0],[118,183,72,1.0],[118,183,73,1.0],[118,183,74,1.0],[118,183,75,1.0],[118,183,76,1.0],[118,183,77,1.0],[118,183,78,1.0],[118,183,79,1.0],[118,184,64,1.0],[118,184,65,1.0],[118,184,66,1.0],[118,184,67,1.0],[118,184,68,1.0],[118,184,69,1.0],[118,184,70,1.0],[118,184,71,1.0],[118,184,72,1.0],[118,184,73,1.0],[118,184,74,1.0],[118,184,75,1.0],[118,184,76,1.0],[118,184,77,1.0],[118,184,78,1.0],[118,184,79,1.0],[118,185,64,1.0],[118,185,65,1.0],[118,185,66,1.0],[118,185,67,1.0],[118,185,68,1.0],[118,185,69,1.0],[118,185,70,1.0],[118,185,71,1.0],[118,185,72,1.0],[118,185,73,1.0],[118,185,74,1.0],[118,185,75,1.0],[118,185,76,1.0],[118,185,77,1.0],[118,185,78,1.0],[118,185,79,1.0],[118,186,64,1.0],[118,186,65,1.0],[118,186,66,1.0],[118,186,67,1.0],[118,186,68,1.0],[118,186,69,1.0],[118,186,70,1.0],[118,186,71,1.0],[118,186,72,1.0],[118,186,73,1.0],[118,186,74,1.0],[118,186,75,1.0],[118,186,76,1.0],[118,186,77,1.0],[118,186,78,1.0],[118,186,79,1.0],[118,187,64,1.0],[118,187,65,1.0],[118,187,66,1.0],[118,187,67,1.0],[118,187,68,1.0],[118,187,69,1.0],[118,187,70,1.0],[118,187,71,1.0],[118,187,72,1.0],[118,187,73,1.0],[118,187,74,1.0],[118,187,75,1.0],[118,187,76,1.0],[118,187,77,1.0],[118,187,78,1.0],[118,187,79,1.0],[118,188,64,1.0],[118,188,65,1.0],[118,188,66,1.0],[118,188,67,1.0],[118,188,68,1.0],[118,188,69,1.0],[118,188,70,1.0],[118,188,71,1.0],[118,188,72,1.0],[118,188,73,1.0],[118,188,74,1.0],[118,188,75,1.0],[118,188,76,1.0],[118,188,77,1.0],[118,188,78,1.0],[118,188,79,1.0],[118,189,64,1.0],[118,189,65,1.0],[118,189,66,1.0],[118,189,67,1.0],[118,189,68,1.0],[118,189,69,1.0],[118,189,70,1.0],[118,189,71,1.0],[118,189,72,1.0],[118,189,73,1.0],[118,189,74,1.0],[118,189,75,1.0],[118,189,76,1.0],[118,189,77,1.0],[118,189,78,1.0],[118,189,79,1.0],[118,190,64,1.0],[118,190,65,1.0],[118,190,66,1.0],[118,190,67,1.0],[118,190,68,1.0],[118,190,69,1.0],[118,190,70,1.0],[118,190,71,1.0],[118,190,72,1.0],[118,190,73,1.0],[118,190,74,1.0],[118,190,75,1.0],[118,190,76,1.0],[118,190,77,1.0],[118,190,78,1.0],[118,190,79,1.0],[118,191,64,1.0],[118,191,65,1.0],[118,191,66,1.0],[118,191,67,1.0],[118,191,68,1.0],[118,191,69,1.0],[118,191,70,1.0],[118,191,71,1.0],[118,191,72,1.0],[118,191,73,1.0],[118,191,74,1.0],[118,191,75,1.0],[118,191,76,1.0],[118,191,77,1.0],[118,191,78,1.0],[118,191,79,1.0],[118,192,64,1.0],[118,192,65,1.0],[118,192,66,1.0],[118,192,67,1.0],[118,192,68,1.0],[118,192,69,1.0],[118,192,70,1.0],[118,192,71,1.0],[118,192,72,1.0],[118,192,73,1.0],[118,192,74,1.0],[118,192,75,1.0],[118,192,76,1.0],[118,192,77,1.0],[118,192,78,1.0],[118,192,79,1.0],[118,193,64,1.0],[118,193,65,1.0],[118,193,66,1.0],[118,193,67,1.0],[118,193,68,1.0],[118,193,69,1.0],[118,193,70,1.0],[118,193,71,1.0],[118,193,72,1.0],[118,193,73,1.0],[118,193,74,1.0],[118,193,75,1.0],[118,193,76,1.0],[118,193,77,1.0],[118,193,78,1.0],[118,193,79,1.0],[118,194,64,1.0],[118,194,65,1.0],[118,194,66,1.0],[118,194,67,1.0],[118,194,68,1.0],[118,194,69,1.0],[118,194,70,1.0],[118,194,71,1.0],[118,194,72,1.0],[118,194,73,1.0],[118,194,74,1.0],[118,194,75,1.0],[118,194,76,1.0],[118,194,77,1.0],[118,194,78,1.0],[118,194,79,1.0],[118,195,64,1.0],[118,195,65,1.0],[118,195,66,1.0],[118,195,67,1.0],[118,195,68,1.0],[118,195,69,1.0],[118,195,70,1.0],[118,195,71,1.0],[118,195,72,1.0],[118,195,73,1.0],[118,195,74,1.0],[118,195,75,1.0],[118,195,76,1.0],[118,195,77,1.0],[118,195,78,1.0],[118,195,79,1.0],[118,196,64,1.0],[118,196,65,1.0],[118,196,66,1.0],[118,196,67,1.0],[118,196,68,1.0],[118,196,69,1.0],[118,196,70,1.0],[118,196,71,1.0],[118,196,72,1.0],[118,196,73,1.0],[118,196,74,1.0],[118,196,75,1.0],[118,196,76,1.0],[118,196,77,1.0],[118,196,78,1.0],[118,196,79,1.0],[118,197,64,1.0],[118,197,65,1.0],[118,197,66,1.0],[118,197,67,1.0],[118,197,68,1.0],[118,197,69,1.0],[118,197,70,1.0],[118,197,71,1.0],[118,197,72,1.0],[118,197,73,1.0],[118,197,74,1.0],[118,197,75,1.0],[118,197,76,1.0],[118,197,77,1.0],[118,197,78,1.0],[118,197,79,1.0],[118,198,64,1.0],[118,198,65,1.0],[118,198,66,1.0],[118,198,67,1.0],[118,198,68,1.0],[118,198,69,1.0],[118,198,70,1.0],[118,198,71,1.0],[118,198,72,1.0],[118,198,73,1.0],[118,198,74,1.0],[118,198,75,1.0],[118,198,76,1.0],[118,198,77,1.0],[118,198,78,1.0],[118,198,79,1.0],[118,199,64,1.0],[118,199,65,1.0],[118,199,66,1.0],[118,199,67,1.0],[118,199,68,1.0],[118,199,69,1.0],[118,199,70,1.0],[118,199,71,1.0],[118,199,72,1.0],[118,199,73,1.0],[118,199,74,1.0],[118,199,75,1.0],[118,199,76,1.0],[118,199,77,1.0],[118,199,78,1.0],[118,199,79,1.0],[118,200,64,1.0],[118,200,65,1.0],[118,200,66,1.0],[118,200,67,1.0],[118,200,68,1.0],[118,200,69,1.0],[118,200,70,1.0],[118,200,71,1.0],[118,200,72,1.0],[118,200,73,1.0],[118,200,74,1.0],[118,200,75,1.0],[118,200,76,1.0],[118,200,77,1.0],[118,200,78,1.0],[118,200,79,1.0],[118,201,64,1.0],[118,201,65,1.0],[118,201,66,1.0],[118,201,67,1.0],[118,201,68,1.0],[118,201,69,1.0],[118,201,70,1.0],[118,201,71,1.0],[118,201,72,1.0],[118,201,73,1.0],[118,201,74,1.0],[118,201,75,1.0],[118,201,76,1.0],[118,201,77,1.0],[118,201,78,1.0],[118,201,79,1.0],[118,202,64,1.0],[118,202,65,1.0],[118,202,66,1.0],[118,202,67,1.0],[118,202,68,1.0],[118,202,69,1.0],[118,202,70,1.0],[118,202,71,1.0],[118,202,72,1.0],[118,202,73,1.0],[118,202,74,1.0],[118,202,75,1.0],[118,202,76,1.0],[118,202,77,1.0],[118,202,78,1.0],[118,202,79,1.0],[118,203,64,1.0],[118,203,65,1.0],[118,203,66,1.0],[118,203,67,1.0],[118,203,68,1.0],[118,203,69,1.0],[118,203,70,1.0],[118,203,71,1.0],[118,203,72,1.0],[118,203,73,1.0],[118,203,74,1.0],[118,203,75,1.0],[118,203,76,1.0],[118,203,77,1.0],[118,203,78,1.0],[118,203,79,1.0],[118,204,64,1.0],[118,204,65,1.0],[118,204,66,1.0],[118,204,67,1.0],[118,204,68,1.0],[118,204,69,1.0],[118,204,70,1.0],[118,204,71,1.0],[118,204,72,1.0],[118,204,73,1.0],[118,204,74,1.0],[118,204,75,1.0],[118,204,76,1.0],[118,204,77,1.0],[118,204,78,1.0],[118,204,79,1.0],[118,205,64,1.0],[118,205,65,1.0],[118,205,66,1.0],[118,205,67,1.0],[118,205,68,1.0],[118,205,69,1.0],[118,205,70,1.0],[118,205,71,1.0],[118,205,72,1.0],[118,205,73,1.0],[118,205,74,1.0],[118,205,75,1.0],[118,205,76,1.0],[118,205,77,1.0],[118,205,78,1.0],[118,205,79,1.0],[118,206,64,1.0],[118,206,65,1.0],[118,206,66,1.0],[118,206,67,1.0],[118,206,68,1.0],[118,206,69,1.0],[118,206,70,1.0],[118,206,71,1.0],[118,206,72,1.0],[118,206,73,1.0],[118,206,74,1.0],[118,206,75,1.0],[118,206,76,1.0],[118,206,77,1.0],[118,206,78,1.0],[118,206,79,1.0],[118,207,64,1.0],[118,207,65,1.0],[118,207,66,1.0],[118,207,67,1.0],[118,207,68,1.0],[118,207,69,1.0],[118,207,70,1.0],[118,207,71,1.0],[118,207,72,1.0],[118,207,73,1.0],[118,207,74,1.0],[118,207,75,1.0],[118,207,76,1.0],[118,207,77,1.0],[118,207,78,1.0],[118,207,79,1.0],[118,208,64,1.0],[118,208,65,1.0],[118,208,66,1.0],[118,208,67,1.0],[118,208,68,1.0],[118,208,69,1.0],[118,208,70,1.0],[118,208,71,1.0],[118,208,72,1.0],[118,208,73,1.0],[118,208,74,1.0],[118,208,75,1.0],[118,208,76,1.0],[118,208,77,1.0],[118,208,78,1.0],[118,208,79,1.0],[118,209,64,1.0],[118,209,65,1.0],[118,209,66,1.0],[118,209,67,1.0],[118,209,68,1.0],[118,209,69,1.0],[118,209,70,1.0],[118,209,71,1.0],[118,209,72,1.0],[118,209,73,1.0],[118,209,74,1.0],[118,209,75,1.0],[118,209,76,1.0],[118,209,77,1.0],[118,209,78,1.0],[118,209,79,1.0],[118,210,64,1.0],[118,210,65,1.0],[118,210,66,1.0],[118,210,67,1.0],[118,210,68,1.0],[118,210,69,1.0],[118,210,70,1.0],[118,210,71,1.0],[118,210,72,1.0],[118,210,73,1.0],[118,210,74,1.0],[118,210,75,1.0],[118,210,76,1.0],[118,210,77,1.0],[118,210,78,1.0],[118,210,79,1.0],[118,211,64,1.0],[118,211,65,1.0],[118,211,66,1.0],[118,211,67,1.0],[118,211,68,1.0],[118,211,69,1.0],[118,211,70,1.0],[118,211,71,1.0],[118,211,72,1.0],[118,211,73,1.0],[118,211,74,1.0],[118,211,75,1.0],[118,211,76,1.0],[118,211,77,1.0],[118,211,78,1.0],[118,211,79,1.0],[118,212,64,1.0],[118,212,65,1.0],[118,212,66,1.0],[118,212,67,1.0],[118,212,68,1.0],[118,212,69,1.0],[118,212,70,1.0],[118,212,71,1.0],[118,212,72,1.0],[118,212,73,1.0],[118,212,74,1.0],[118,212,75,1.0],[118,212,76,1.0],[118,212,77,1.0],[118,212,78,1.0],[118,212,79,1.0],[118,213,64,1.0],[118,213,65,1.0],[118,213,66,1.0],[118,213,67,1.0],[118,213,68,1.0],[118,213,69,1.0],[118,213,70,1.0],[118,213,71,1.0],[118,213,72,1.0],[118,213,73,1.0],[118,213,74,1.0],[118,213,75,1.0],[118,213,76,1.0],[118,213,77,1.0],[118,213,78,1.0],[118,213,79,1.0],[118,214,64,1.0],[118,214,65,1.0],[118,214,66,1.0],[118,214,67,1.0],[118,214,68,1.0],[118,214,69,1.0],[118,214,70,1.0],[118,214,71,1.0],[118,214,72,1.0],[118,214,73,1.0],[118,214,74,1.0],[118,214,75,1.0],[118,214,76,1.0],[118,214,77,1.0],[118,214,78,1.0],[118,214,79,1.0],[118,215,64,1.0],[118,215,65,1.0],[118,215,66,1.0],[118,215,67,1.0],[118,215,68,1.0],[118,215,69,1.0],[118,215,70,1.0],[118,215,71,1.0],[118,215,72,1.0],[118,215,73,1.0],[118,215,74,1.0],[118,215,75,1.0],[118,215,76,1.0],[118,215,77,1.0],[118,215,78,1.0],[118,215,79,1.0],[118,216,64,1.0],[118,216,65,1.0],[118,216,66,1.0],[118,216,67,1.0],[118,216,68,1.0],[118,216,69,1.0],[118,216,70,1.0],[118,216,71,1.0],[118,216,72,1.0],[118,216,73,1.0],[118,216,74,1.0],[118,216,75,1.0],[118,216,76,1.0],[118,216,77,1.0],[118,216,78,1.0],[118,216,79,1.0],[118,217,64,1.0],[118,217,65,1.0],[118,217,66,1.0],[118,217,67,1.0],[118,217,68,1.0],[118,217,69,1.0],[118,217,70,1.0],[118,217,71,1.0],[118,217,72,1.0],[118,217,73,1.0],[118,217,74,1.0],[118,217,75,1.0],[118,217,76,1.0],[118,217,77,1.0],[118,217,78,1.0],[118,217,79,1.0],[118,218,64,1.0],[118,218,65,1.0],[118,218,66,1.0],[118,218,67,1.0],[118,218,68,1.0],[118,218,69,1.0],[118,218,70,1.0],[118,218,71,1.0],[118,218,72,1.0],[118,218,73,1.0],[118,218,74,1.0],[118,218,75,1.0],[118,218,76,1.0],[118,218,77,1.0],[118,218,78,1.0],[118,218,79,1.0],[118,219,64,1.0],[118,219,65,1.0],[118,219,66,1.0],[118,219,67,1.0],[118,219,68,1.0],[118,219,69,1.0],[118,219,70,1.0],[118,219,71,1.0],[118,219,72,1.0],[118,219,73,1.0],[118,219,74,1.0],[118,219,75,1.0],[118,219,76,1.0],[118,219,77,1.0],[118,219,78,1.0],[118,219,79,1.0],[118,220,64,1.0],[118,220,65,1.0],[118,220,66,1.0],[118,220,67,1.0],[118,220,68,1.0],[118,220,69,1.0],[118,220,70,1.0],[118,220,71,1.0],[118,220,72,1.0],[118,220,73,1.0],[118,220,74,1.0],[118,220,75,1.0],[118,220,76,1.0],[118,220,77,1.0],[118,220,78,1.0],[118,220,79,1.0],[118,221,64,1.0],[118,221,65,1.0],[118,221,66,1.0],[118,221,67,1.0],[118,221,68,1.0],[118,221,69,1.0],[118,221,70,1.0],[118,221,71,1.0],[118,221,72,1.0],[118,221,73,1.0],[118,221,74,1.0],[118,221,75,1.0],[118,221,76,1.0],[118,221,77,1.0],[118,221,78,1.0],[118,221,79,1.0],[118,222,64,1.0],[118,222,65,1.0],[118,222,66,1.0],[118,222,67,1.0],[118,222,68,1.0],[118,222,69,1.0],[118,222,70,1.0],[118,222,71,1.0],[118,222,72,1.0],[118,222,73,1.0],[118,222,74,1.0],[118,222,75,1.0],[118,222,76,1.0],[118,222,77,1.0],[118,222,78,1.0],[118,222,79,1.0],[118,223,64,1.0],[118,223,65,1.0],[118,223,66,1.0],[118,223,67,1.0],[118,223,68,1.0],[118,223,69,1.0],[118,223,70,1.0],[118,223,71,1.0],[118,223,72,1.0],[118,223,73,1.0],[118,223,74,1.0],[118,223,75,1.0],[118,223,76,1.0],[118,223,77,1.0],[118,223,78,1.0],[118,223,79,1.0],[118,224,64,1.0],[118,224,65,1.0],[118,224,66,1.0],[118,224,67,1.0],[118,224,68,1.0],[118,224,69,1.0],[118,224,70,1.0],[118,224,71,1.0],[118,224,72,1.0],[118,224,73,1.0],[118,224,74,1.0],[118,224,75,1.0],[118,224,76,1.0],[118,224,77,1.0],[118,224,78,1.0],[118,224,79,1.0],[118,225,64,1.0],[118,225,65,1.0],[118,225,66,1.0],[118,225,67,1.0],[118,225,68,1.0],[118,225,69,1.0],[118,225,70,1.0],[118,225,71,1.0],[118,225,72,1.0],[118,225,73,1.0],[118,225,74,1.0],[118,225,75,1.0],[118,225,76,1.0],[118,225,77,1.0],[118,225,78,1.0],[118,225,79,1.0],[118,226,64,1.0],[118,226,65,1.0],[118,226,66,1.0],[118,226,67,1.0],[118,226,68,1.0],[118,226,69,1.0],[118,226,70,1.0],[118,226,71,1.0],[118,226,72,1.0],[118,226,73,1.0],[118,226,74,1.0],[118,226,75,1.0],[118,226,76,1.0],[118,226,77,1.0],[118,226,78,1.0],[118,226,79,1.0],[118,227,64,1.0],[118,227,65,1.0],[118,227,66,1.0],[118,227,67,1.0],[118,227,68,1.0],[118,227,69,1.0],[118,227,70,1.0],[118,227,71,1.0],[118,227,72,1.0],[118,227,73,1.0],[118,227,74,1.0],[118,227,75,1.0],[118,227,76,1.0],[118,227,77,1.0],[118,227,78,1.0],[118,227,79,1.0],[118,228,64,1.0],[118,228,65,1.0],[118,228,66,1.0],[118,228,67,1.0],[118,228,68,1.0],[118,228,69,1.0],[118,228,70,1.0],[118,228,71,1.0],[118,228,72,1.0],[118,228,73,1.0],[118,228,74,1.0],[118,228,75,1.0],[118,228,76,1.0],[118,228,77,1.0],[118,228,78,1.0],[118,228,79,1.0],[118,229,64,1.0],[118,229,65,1.0],[118,229,66,1.0],[118,229,67,1.0],[118,229,68,1.0],[118,229,69,1.0],[118,229,70,1.0],[118,229,71,1.0],[118,229,72,1.0],[118,229,73,1.0],[118,229,74,1.0],[118,229,75,1.0],[118,229,76,1.0],[118,229,77,1.0],[118,229,78,1.0],[118,229,79,1.0],[118,230,64,1.0],[118,230,65,1.0],[118,230,66,1.0],[118,230,67,1.0],[118,230,68,1.0],[118,230,69,1.0],[118,230,70,1.0],[118,230,71,1.0],[118,230,72,1.0],[118,230,73,1.0],[118,230,74,1.0],[118,230,75,1.0],[118,230,76,1.0],[118,230,77,1.0],[118,230,78,1.0],[118,230,79,1.0],[118,231,64,1.0],[118,231,65,1.0],[118,231,66,1.0],[118,231,67,1.0],[118,231,68,1.0],[118,231,69,1.0],[118,231,70,1.0],[118,231,71,1.0],[118,231,72,1.0],[118,231,73,1.0],[118,231,74,1.0],[118,231,75,1.0],[118,231,76,1.0],[118,231,77,1.0],[118,231,78,1.0],[118,231,79,1.0],[118,232,64,1.0],[118,232,65,1.0],[118,232,66,1.0],[118,232,67,1.0],[118,232,68,1.0],[118,232,69,1.0],[118,232,70,1.0],[118,232,71,1.0],[118,232,72,1.0],[118,232,73,1.0],[118,232,74,1.0],[118,232,75,1.0],[118,232,76,1.0],[118,232,77,1.0],[118,232,78,1.0],[118,232,79,1.0],[118,233,64,1.0],[118,233,65,1.0],[118,233,66,1.0],[118,233,67,1.0],[118,233,68,1.0],[118,233,69,1.0],[118,233,70,1.0],[118,233,71,1.0],[118,233,72,1.0],[118,233,73,1.0],[118,233,74,1.0],[118,233,75,1.0],[118,233,76,1.0],[118,233,77,1.0],[118,233,78,1.0],[118,233,79,1.0],[118,234,64,1.0],[118,234,65,1.0],[118,234,66,1.0],[118,234,67,1.0],[118,234,68,1.0],[118,234,69,1.0],[118,234,70,1.0],[118,234,71,1.0],[118,234,72,1.0],[118,234,73,1.0],[118,234,74,1.0],[118,234,75,1.0],[118,234,76,1.0],[118,234,77,1.0],[118,234,78,1.0],[118,234,79,1.0],[118,235,64,1.0],[118,235,65,1.0],[118,235,66,1.0],[118,235,67,1.0],[118,235,68,1.0],[118,235,69,1.0],[118,235,70,1.0],[118,235,71,1.0],[118,235,72,1.0],[118,235,73,1.0],[118,235,74,1.0],[118,235,75,1.0],[118,235,76,1.0],[118,235,77,1.0],[118,235,78,1.0],[118,235,79,1.0],[118,236,64,1.0],[118,236,65,1.0],[118,236,66,1.0],[118,236,67,1.0],[118,236,68,1.0],[118,236,69,1.0],[118,236,70,1.0],[118,236,71,1.0],[118,236,72,1.0],[118,236,73,1.0],[118,236,74,1.0],[118,236,75,1.0],[118,236,76,1.0],[118,236,77,1.0],[118,236,78,1.0],[118,236,79,1.0],[118,237,64,1.0],[118,237,65,1.0],[118,237,66,1.0],[118,237,67,1.0],[118,237,68,1.0],[118,237,69,1.0],[118,237,70,1.0],[118,237,71,1.0],[118,237,72,1.0],[118,237,73,1.0],[118,237,74,1.0],[118,237,75,1.0],[118,237,76,1.0],[118,237,77,1.0],[118,237,78,1.0],[118,237,79,1.0],[118,238,64,1.0],[118,238,65,1.0],[118,238,66,1.0],[118,238,67,1.0],[118,238,68,1.0],[118,238,69,1.0],[118,238,70,1.0],[118,238,71,1.0],[118,238,72,1.0],[118,238,73,1.0],[118,238,74,1.0],[118,238,75,1.0],[118,238,76,1.0],[118,238,77,1.0],[118,238,78,1.0],[118,238,79,1.0],[118,239,64,1.0],[118,239,65,1.0],[118,239,66,1.0],[118,239,67,1.0],[118,239,68,1.0],[118,239,69,1.0],[118,239,70,1.0],[118,239,71,1.0],[118,239,72,1.0],[118,239,73,1.0],[118,239,74,1.0],[118,239,75,1.0],[118,239,76,1.0],[118,239,77,1.0],[118,239,78,1.0],[118,239,79,1.0],[118,240,64,1.0],[118,240,65,1.0],[118,240,66,1.0],[118,240,67,1.0],[118,240,68,1.0],[118,240,69,1.0],[118,240,70,1.0],[118,240,71,1.0],[118,240,72,1.0],[118,240,73,1.0],[118,240,74,1.0],[118,240,75,1.0],[118,240,76,1.0],[118,240,77,1.0],[118,240,78,1.0],[118,240,79,1.0],[118,241,64,1.0],[118,241,65,1.0],[118,241,66,1.0],[118,241,67,1.0],[118,241,68,1.0],[118,241,69,1.0],[118,241,70,1.0],[118,241,71,1.0],[118,241,72,1.0],[118,241,73,1.0],[118,241,74,1.0],[118,241,75,1.0],[118,241,76,1.0],[118,241,77,1.0],[118,241,78,1.0],[118,241,79,1.0],[118,242,64,1.0],[118,242,65,1.0],[118,242,66,1.0],[118,242,67,1.0],[118,242,68,1.0],[118,242,69,1.0],[118,242,70,1.0],[118,242,71,1.0],[118,242,72,1.0],[118,242,73,1.0],[118,242,74,1.0],[118,242,75,1.0],[118,242,76,1.0],[118,242,77,1.0],[118,242,78,1.0],[118,242,79,1.0],[118,243,64,1.0],[118,243,65,1.0],[118,243,66,1.0],[118,243,67,1.0],[118,243,68,1.0],[118,243,69,1.0],[118,243,70,1.0],[118,243,71,1.0],[118,243,72,1.0],[118,243,73,1.0],[118,243,74,1.0],[118,243,75,1.0],[118,243,76,1.0],[118,243,77,1.0],[118,243,78,1.0],[118,243,79,1.0],[118,244,64,1.0],[118,244,65,1.0],[118,244,66,1.0],[118,244,67,1.0],[118,244,68,1.0],[118,244,69,1.0],[118,244,70,1.0],[118,244,71,1.0],[118,244,72,1.0],[118,244,73,1.0],[118,244,74,1.0],[118,244,75,1.0],[118,244,76,1.0],[118,244,77,1.0],[118,244,78,1.0],[118,244,79,1.0],[118,245,64,1.0],[118,245,65,1.0],[118,245,66,1.0],[118,245,67,1.0],[118,245,68,1.0],[118,245,69,1.0],[118,245,70,1.0],[118,245,71,1.0],[118,245,72,1.0],[118,245,73,1.0],[118,245,74,1.0],[118,245,75,1.0],[118,245,76,1.0],[118,245,77,1.0],[118,245,78,1.0],[118,245,79,1.0],[118,246,64,1.0],[118,246,65,1.0],[118,246,66,1.0],[118,246,67,1.0],[118,246,68,1.0],[118,246,69,1.0],[118,246,70,1.0],[118,246,71,1.0],[118,246,72,1.0],[118,246,73,1.0],[118,246,74,1.0],[118,246,75,1.0],[118,246,76,1.0],[118,246,77,1.0],[118,246,78,1.0],[118,246,79,1.0],[118,247,64,1.0],[118,247,65,1.0],[118,247,66,1.0],[118,247,67,1.0],[118,247,68,1.0],[118,247,69,1.0],[118,247,70,1.0],[118,247,71,1.0],[118,247,72,1.0],[118,247,73,1.0],[118,247,74,1.0],[118,247,75,1.0],[118,247,76,1.0],[118,247,77,1.0],[118,247,78,1.0],[118,247,79,1.0],[118,248,64,1.0],[118,248,65,1.0],[118,248,66,1.0],[118,248,67,1.0],[118,248,68,1.0],[118,248,69,1.0],[118,248,70,1.0],[118,248,71,1.0],[118,248,72,1.0],[118,248,73,1.0],[118,248,74,1.0],[118,248,75,1.0],[118,248,76,1.0],[118,248,77,1.0],[118,248,78,1.0],[118,248,79,1.0],[118,249,64,1.0],[118,249,65,1.0],[118,249,66,1.0],[118,249,67,1.0],[118,249,68,1.0],[118,249,69,1.0],[118,249,70,1.0],[118,249,71,1.0],[118,249,72,1.0],[118,249,73,1.0],[118,249,74,1.0],[118,249,75,1.0],[118,249,76,1.0],[118,249,77,1.0],[118,249,78,1.0],[118,249,79,1.0],[118,250,64,1.0],[118,250,65,1.0],[118,250,66,1.0],[118,250,67,1.0],[118,250,68,1.0],[118,250,69,1.0],[118,250,70,1.0],[118,250,71,1.0],[118,250,72,1.0],[118,250,73,1.0],[118,250,74,1.0],[118,250,75,1.0],[118,250,76,1.0],[118,250,77,1.0],[118,250,78,1.0],[118,250,79,1.0],[118,251,64,1.0],[118,251,65,1.0],[118,251,66,1.0],[118,251,67,1.0],[118,251,68,1.0],[118,251,69,1.0],[118,251,70,1.0],[118,251,71,1.0],[118,251,72,1.0],[118,251,73,1.0],[118,251,74,1.0],[118,251,75,1.0],[118,251,76,1.0],[118,251,77,1.0],[118,251,78,1.0],[118,251,79,1.0],[118,252,64,1.0],[118,252,65,1.0],[118,252,66,1.0],[118,252,67,1.0],[118,252,68,1.0],[118,252,69,1.0],[118,252,70,1.0],[118,252,71,1.0],[118,252,72,1.0],[118,252,73,1.0],[118,252,74,1.0],[118,252,75,1.0],[118,252,76,1.0],[118,252,77,1.0],[118,252,78,1.0],[118,252,79,1.0],[118,253,64,1.0],[118,253,65,1.0],[118,253,66,1.0],[118,253,67,1.0],[118,253,68,1.0],[118,253,69,1.0],[118,253,70,1.0],[118,253,71,1.0],[118,253,72,1.0],[118,253,73,1.0],[118,253,74,1.0],[118,253,75,1.0],[118,253,76,1.0],[118,253,77,1.0],[118,253,78,1.0],[118,253,79,1.0],[118,254,64,1.0],[118,254,65,1.0],[118,254,66,1.0],[118,254,67,1.0],[118,254,68,1.0],[118,254,69,1.0],[118,254,70,1.0],[118,254,71,1.0],[118,254,72,1.0],[118,254,73,1.0],[118,254,74,1.0],[118,254,75,1.0],[118,254,76,1.0],[118,254,77,1.0],[118,254,78,1.0],[118,254,79,1.0],[118,255,64,1.0],[118,255,65,1.0],[118,255,66,1.0],[118,255,67,1.0],[118,255,68,1.0],[118,255,69,1.0],[118,255,70,1.0],[118,255,71,1.0],[118,255,72,1.0],[118,255,73,1.0],[118,255,74,1.0],[118,255,75,1.0],[118,255,76,1.0],[118,255,77,1.0],[118,255,78,1.0],[118,255,79,1.0],[118,256,64,1.0],[118,256,65,1.0],[118,256,66,1.0],[118,256,67,1.0],[118,256,68,1.0],[118,256,69,1.0],[118,256,70,1.0],[118,256,71,1.0],[118,256,72,1.0],[118,256,73,1.0],[118,256,74,1.0],[118,256,75,1.0],[118,256,76,1.0],[118,256,77,1.0],[118,256,78,1.0],[118,256,79,1.0],[118,257,64,1.0],[118,257,65,1.0],[118,257,66,1.0],[118,257,67,1.0],[118,257,68,1.0],[118,257,69,1.0],[118,257,70,1.0],[118,257,71,1.0],[118,257,72,1.0],[118,257,73,1.0],[118,257,74,1.0],[118,257,75,1.0],[118,257,76,1.0],[118,257,77,1.0],[118,257,78,1.0],[118,257,79,1.0],[118,258,64,1.0],[118,258,65,1.0],[118,258,66,1.0],[118,258,67,1.0],[118,258,68,1.0],[118,258,69,1.0],[118,258,70,1.0],[118,258,71,1.0],[118,258,72,1.0],[118,258,73,1.0],[118,258,74,1.0],[118,258,75,1.0],[118,258,76,1.0],[118,258,77,1.0],[118,258,78,1.0],[118,258,79,1.0],[118,259,64,1.0],[118,259,65,1.0],[118,259,66,1.0],[118,259,67,1.0],[118,259,68,1.0],[118,259,69,1.0],[118,259,70,1.0],[118,259,71,1.0],[118,259,72,1.0],[118,259,73,1.0],[118,259,74,1.0],[118,259,75,1.0],[118,259,76,1.0],[118,259,77,1.0],[118,259,78,1.0],[118,259,79,1.0],[118,260,64,1.0],[118,260,65,1.0],[118,260,66,1.0],[118,260,67,1.0],[118,260,68,1.0],[118,260,69,1.0],[118,260,70,1.0],[118,260,71,1.0],[118,260,72,1.0],[118,260,73,1.0],[118,260,74,1.0],[118,260,75,1.0],[118,260,76,1.0],[118,260,77,1.0],[118,260,78,1.0],[118,260,79,1.0],[118,261,64,1.0],[118,261,65,1.0],[118,261,66,1.0],[118,261,67,1.0],[118,261,68,1.0],[118,261,69,1.0],[118,261,70,1.0],[118,261,71,1.0],[118,261,72,1.0],[118,261,73,1.0],[118,261,74,1.0],[118,261,75,1.0],[118,261,76,1.0],[118,261,77,1.0],[118,261,78,1.0],[118,261,79,1.0],[118,262,64,1.0],[118,262,65,1.0],[118,262,66,1.0],[118,262,67,1.0],[118,262,68,1.0],[118,262,69,1.0],[118,262,70,1.0],[118,262,71,1.0],[118,262,72,1.0],[118,262,73,1.0],[118,262,74,1.0],[118,262,75,1.0],[118,262,76,1.0],[118,262,77,1.0],[118,262,78,1.0],[118,262,79,1.0],[118,263,64,1.0],[118,263,65,1.0],[118,263,66,1.0],[118,263,67,1.0],[118,263,68,1.0],[118,263,69,1.0],[118,263,70,1.0],[118,263,71,1.0],[118,263,72,1.0],[118,263,73,1.0],[118,263,74,1.0],[118,263,75,1.0],[118,263,76,1.0],[118,263,77,1.0],[118,263,78,1.0],[118,263,79,1.0],[118,264,64,1.0],[118,264,65,1.0],[118,264,66,1.0],[118,264,67,1.0],[118,264,68,1.0],[118,264,69,1.0],[118,264,70,1.0],[118,264,71,1.0],[118,264,72,1.0],[118,264,73,1.0],[118,264,74,1.0],[118,264,75,1.0],[118,264,76,1.0],[118,264,77,1.0],[118,264,78,1.0],[118,264,79,1.0],[118,265,64,1.0],[118,265,65,1.0],[118,265,66,1.0],[118,265,67,1.0],[118,265,68,1.0],[118,265,69,1.0],[118,265,70,1.0],[118,265,71,1.0],[118,265,72,1.0],[118,265,73,1.0],[118,265,74,1.0],[118,265,75,1.0],[118,265,76,1.0],[118,265,77,1.0],[118,265,78,1.0],[118,265,79,1.0],[118,266,64,1.0],[118,266,65,1.0],[118,266,66,1.0],[118,266,67,1.0],[118,266,68,1.0],[118,266,69,1.0],[118,266,70,1.0],[118,266,71,1.0],[118,266,72,1.0],[118,266,73,1.0],[118,266,74,1.0],[118,266,75,1.0],[118,266,76,1.0],[118,266,77,1.0],[118,266,78,1.0],[118,266,79,1.0],[118,267,64,1.0],[118,267,65,1.0],[118,267,66,1.0],[118,267,67,1.0],[118,267,68,1.0],[118,267,69,1.0],[118,267,70,1.0],[118,267,71,1.0],[118,267,72,1.0],[118,267,73,1.0],[118,267,74,1.0],[118,267,75,1.0],[118,267,76,1.0],[118,267,77,1.0],[118,267,78,1.0],[118,267,79,1.0],[118,268,64,1.0],[118,268,65,1.0],[118,268,66,1.0],[118,268,67,1.0],[118,268,68,1.0],[118,268,69,1.0],[118,268,70,1.0],[118,268,71,1.0],[118,268,72,1.0],[118,268,73,1.0],[118,268,74,1.0],[118,268,75,1.0],[118,268,76,1.0],[118,268,77,1.0],[118,268,78,1.0],[118,268,79,1.0],[118,269,64,1.0],[118,269,65,1.0],[118,269,66,1.0],[118,269,67,1.0],[118,269,68,1.0],[118,269,69,1.0],[118,269,70,1.0],[118,269,71,1.0],[118,269,72,1.0],[118,269,73,1.0],[118,269,74,1.0],[118,269,75,1.0],[118,269,76,1.0],[118,269,77,1.0],[118,269,78,1.0],[118,269,79,1.0],[118,270,64,1.0],[118,270,65,1.0],[118,270,66,1.0],[118,270,67,1.0],[118,270,68,1.0],[118,270,69,1.0],[118,270,70,1.0],[118,270,71,1.0],[118,270,72,1.0],[118,270,73,1.0],[118,270,74,1.0],[118,270,75,1.0],[118,270,76,1.0],[118,270,77,1.0],[118,270,78,1.0],[118,270,79,1.0],[118,271,64,1.0],[118,271,65,1.0],[118,271,66,1.0],[118,271,67,1.0],[118,271,68,1.0],[118,271,69,1.0],[118,271,70,1.0],[118,271,71,1.0],[118,271,72,1.0],[118,271,73,1.0],[118,271,74,1.0],[118,271,75,1.0],[118,271,76,1.0],[118,271,77,1.0],[118,271,78,1.0],[118,271,79,1.0],[118,272,64,1.0],[118,272,65,1.0],[118,272,66,1.0],[118,272,67,1.0],[118,272,68,1.0],[118,272,69,1.0],[118,272,70,1.0],[118,272,71,1.0],[118,272,72,1.0],[118,272,73,1.0],[118,272,74,1.0],[118,272,75,1.0],[118,272,76,1.0],[118,272,77,1.0],[118,272,78,1.0],[118,272,79,1.0],[118,273,64,1.0],[118,273,65,1.0],[118,273,66,1.0],[118,273,67,1.0],[118,273,68,1.0],[118,273,69,1.0],[118,273,70,1.0],[118,273,71,1.0],[118,273,72,1.0],[118,273,73,1.0],[118,273,74,1.0],[118,273,75,1.0],[118,273,76,1.0],[118,273,77,1.0],[118,273,78,1.0],[118,273,79,1.0],[118,274,64,1.0],[118,274,65,1.0],[118,274,66,1.0],[118,274,67,1.0],[118,274,68,1.0],[118,274,69,1.0],[118,274,70,1.0],[118,274,71,1.0],[118,274,72,1.0],[118,274,73,1.0],[118,274,74,1.0],[118,274,75,1.0],[118,274,76,1.0],[118,274,77,1.0],[118,274,78,1.0],[118,274,79,1.0],[118,275,64,1.0],[118,275,65,1.0],[118,275,66,1.0],[118,275,67,1.0],[118,275,68,1.0],[118,275,69,1.0],[118,275,70,1.0],[118,275,71,1.0],[118,275,72,1.0],[118,275,73,1.0],[118,275,74,1.0],[118,275,75,1.0],[118,275,76,1.0],[118,275,77,1.0],[118,275,78,1.0],[118,275,79,1.0],[118,276,64,1.0],[118,276,65,1.0],[118,276,66,1.0],[118,276,67,1.0],[118,276,68,1.0],[118,276,69,1.0],[118,276,70,1.0],[118,276,71,1.0],[118,276,72,1.0],[118,276,73,1.0],[118,276,74,1.0],[118,276,75,1.0],[118,276,76,1.0],[118,276,77,1.0],[118,276,78,1.0],[118,276,79,1.0],[118,277,64,1.0],[118,277,65,1.0],[118,277,66,1.0],[118,277,67,1.0],[118,277,68,1.0],[118,277,69,1.0],[118,277,70,1.0],[118,277,71,1.0],[118,277,72,1.0],[118,277,73,1.0],[118,277,74,1.0],[118,277,75,1.0],[118,277,76,1.0],[118,277,77,1.0],[118,277,78,1.0],[118,277,79,1.0],[118,278,64,1.0],[118,278,65,1.0],[118,278,66,1.0],[118,278,67,1.0],[118,278,68,1.0],[118,278,69,1.0],[118,278,70,1.0],[118,278,71,1.0],[118,278,72,1.0],[118,278,73,1.0],[118,278,74,1.0],[118,278,75,1.0],[118,278,76,1.0],[118,278,77,1.0],[118,278,78,1.0],[118,278,79,1.0],[118,279,64,1.0],[118,279,65,1.0],[118,279,66,1.0],[118,279,67,1.0],[118,279,68,1.0],[118,279,69,1.0],[118,279,70,1.0],[118,279,71,1.0],[118,279,72,1.0],[118,279,73,1.0],[118,279,74,1.0],[118,279,75,1.0],[118,279,76,1.0],[118,279,77,1.0],[118,279,78,1.0],[118,279,79,1.0],[118,280,64,1.0],[118,280,65,1.0],[118,280,66,1.0],[118,280,67,1.0],[118,280,68,1.0],[118,280,69,1.0],[118,280,70,1.0],[118,280,71,1.0],[118,280,72,1.0],[118,280,73,1.0],[118,280,74,1.0],[118,280,75,1.0],[118,280,76,1.0],[118,280,77,1.0],[118,280,78,1.0],[118,280,79,1.0],[118,281,64,1.0],[118,281,65,1.0],[118,281,66,1.0],[118,281,67,1.0],[118,281,68,1.0],[118,281,69,1.0],[118,281,70,1.0],[118,281,71,1.0],[118,281,72,1.0],[118,281,73,1.0],[118,281,74,1.0],[118,281,75,1.0],[118,281,76,1.0],[118,281,77,1.0],[118,281,78,1.0],[118,281,79,1.0],[118,282,64,1.0],[118,282,65,1.0],[118,282,66,1.0],[118,282,67,1.0],[118,282,68,1.0],[118,282,69,1.0],[118,282,70,1.0],[118,282,71,1.0],[118,282,72,1.0],[118,282,73,1.0],[118,282,74,1.0],[118,282,75,1.0],[118,282,76,1.0],[118,282,77,1.0],[118,282,78,1.0],[118,282,79,1.0],[118,283,64,1.0],[118,283,65,1.0],[118,283,66,1.0],[118,283,67,1.0],[118,283,68,1.0],[118,283,69,1.0],[118,283,70,1.0],[118,283,71,1.0],[118,283,72,1.0],[118,283,73,1.0],[118,283,74,1.0],[118,283,75,1.0],[118,283,76,1.0],[118,283,77,1.0],[118,283,78,1.0],[118,283,79,1.0],[118,284,64,1.0],[118,284,65,1.0],[118,284,66,1.0],[118,284,67,1.0],[118,284,68,1.0],[118,284,69,1.0],[118,284,70,1.0],[118,284,71,1.0],[118,284,72,1.0],[118,284,73,1.0],[118,284,74,1.0],[118,284,75,1.0],[118,284,76,1.0],[118,284,77,1.0],[118,284,78,1.0],[118,284,79,1.0],[118,285,64,1.0],[118,285,65,1.0],[118,285,66,1.0],[118,285,67,1.0],[118,285,68,1.0],[118,285,69,1.0],[118,285,70,1.0],[118,285,71,1.0],[118,285,72,1.0],[118,285,73,1.0],[118,285,74,1.0],[118,285,75,1.0],[118,285,76,1.0],[118,285,77,1.0],[118,285,78,1.0],[118,285,79,1.0],[118,286,64,1.0],[118,286,65,1.0],[118,286,66,1.0],[118,286,67,1.0],[118,286,68,1.0],[118,286,69,1.0],[118,286,70,1.0],[118,286,71,1.0],[118,286,72,1.0],[118,286,73,1.0],[118,286,74,1.0],[118,286,75,1.0],[118,286,76,1.0],[118,286,77,1.0],[118,286,78,1.0],[118,286,79,1.0],[118,287,64,1.0],[118,287,65,1.0],[118,287,66,1.0],[118,287,67,1.0],[118,287,68,1.0],[118,287,69,1.0],[118,287,70,1.0],[118,287,71,1.0],[118,287,72,1.0],[118,287,73,1.0],[118,287,74,1.0],[118,287,75,1.0],[118,287,76,1.0],[118,287,77,1.0],[118,287,78,1.0],[118,287,79,1.0],[118,288,64,1.0],[118,288,65,1.0],[118,288,66,1.0],[118,288,67,1.0],[118,288,68,1.0],[118,288,69,1.0],[118,288,70,1.0],[118,288,71,1.0],[118,288,72,1.0],[118,288,73,1.0],[118,288,74,1.0],[118,288,75,1.0],[118,288,76,1.0],[118,288,77,1.0],[118,288,78,1.0],[118,288,79,1.0],[118,289,64,1.0],[118,289,65,1.0],[118,289,66,1.0],[118,289,67,1.0],[118,289,68,1.0],[118,289,69,1.0],[118,289,70,1.0],[118,289,71,1.0],[118,289,72,1.0],[118,289,73,1.0],[118,289,74,1.0],[118,289,75,1.0],[118,289,76,1.0],[118,289,77,1.0],[118,289,78,1.0],[118,289,79,1.0],[118,290,64,1.0],[118,290,65,1.0],[118,290,66,1.0],[118,290,67,1.0],[118,290,68,1.0],[118,290,69,1.0],[118,290,70,1.0],[118,290,71,1.0],[118,290,72,1.0],[118,290,73,1.0],[118,290,74,1.0],[118,290,75,1.0],[118,290,76,1.0],[118,290,77,1.0],[118,290,78,1.0],[118,290,79,1.0],[118,291,64,1.0],[118,291,65,1.0],[118,291,66,1.0],[118,291,67,1.0],[118,291,68,1.0],[118,291,69,1.0],[118,291,70,1.0],[118,291,71,1.0],[118,291,72,1.0],[118,291,73,1.0],[118,291,74,1.0],[118,291,75,1.0],[118,291,76,1.0],[118,291,77,1.0],[118,291,78,1.0],[118,291,79,1.0],[118,292,64,1.0],[118,292,65,1.0],[118,292,66,1.0],[118,292,67,1.0],[118,292,68,1.0],[118,292,69,1.0],[118,292,70,1.0],[118,292,71,1.0],[118,292,72,1.0],[118,292,73,1.0],[118,292,74,1.0],[118,292,75,1.0],[118,292,76,1.0],[118,292,77,1.0],[118,292,78,1.0],[118,292,79,1.0],[118,293,64,1.0],[118,293,65,1.0],[118,293,66,1.0],[118,293,67,1.0],[118,293,68,1.0],[118,293,69,1.0],[118,293,70,1.0],[118,293,71,1.0],[118,293,72,1.0],[118,293,73,1.0],[118,293,74,1.0],[118,293,75,1.0],[118,293,76,1.0],[118,293,77,1.0],[118,293,78,1.0],[118,293,79,1.0],[118,294,64,1.0],[118,294,65,1.0],[118,294,66,1.0],[118,294,67,1.0],[118,294,68,1.0],[118,294,69,1.0],[118,294,70,1.0],[118,294,71,1.0],[118,294,72,1.0],[118,294,73,1.0],[118,294,74,1.0],[118,294,75,1.0],[118,294,76,1.0],[118,294,77,1.0],[118,294,78,1.0],[118,294,79,1.0],[118,295,64,1.0],[118,295,65,1.0],[118,295,66,1.0],[118,295,67,1.0],[118,295,68,1.0],[118,295,69,1.0],[118,295,70,1.0],[118,295,71,1.0],[118,295,72,1.0],[118,295,73,1.0],[118,295,74,1.0],[118,295,75,1.0],[118,295,76,1.0],[118,295,77,1.0],[118,295,78,1.0],[118,295,79,1.0],[118,296,64,1.0],[118,296,65,1.0],[118,296,66,1.0],[118,296,67,1.0],[118,296,68,1.0],[118,296,69,1.0],[118,296,70,1.0],[118,296,71,1.0],[118,296,72,1.0],[118,296,73,1.0],[118,296,74,1.0],[118,296,75,1.0],[118,296,76,1.0],[118,296,77,1.0],[118,296,78,1.0],[118,296,79,1.0],[118,297,64,1.0],[118,297,65,1.0],[118,297,66,1.0],[118,297,67,1.0],[118,297,68,1.0],[118,297,69,1.0],[118,297,70,1.0],[118,297,71,1.0],[118,297,72,1.0],[118,297,73,1.0],[118,297,74,1.0],[118,297,75,1.0],[118,297,76,1.0],[118,297,77,1.0],[118,297,78,1.0],[118,297,79,1.0],[118,298,64,1.0],[118,298,65,1.0],[118,298,66,1.0],[118,298,67,1.0],[118,298,68,1.0],[118,298,69,1.0],[118,298,70,1.0],[118,298,71,1.0],[118,298,72,1.0],[118,298,73,1.0],[118,298,74,1.0],[118,298,75,1.0],[118,298,76,1.0],[118,298,77,1.0],[118,298,78,1.0],[118,298,79,1.0],[118,299,64,1.0],[118,299,65,1.0],[118,299,66,1.0],[118,299,67,1.0],[118,299,68,1.0],[118,299,69,1.0],[118,299,70,1.0],[118,299,71,1.0],[118,299,72,1.0],[118,299,73,1.0],[118,299,74,1.0],[118,299,75,1.0],[118,299,76,1.0],[118,299,77,1.0],[118,299,78,1.0],[118,299,79,1.0],[118,300,64,1.0],[118,300,65,1.0],[118,300,66,1.0],[118,300,67,1.0],[118,300,68,1.0],[118,300,69,1.0],[118,300,70,1.0],[118,300,71,1.0],[118,300,72,1.0],[118,300,73,1.0],[118,300,74,1.0],[118,300,75,1.0],[118,300,76,1.0],[118,300,77,1.0],[118,300,78,1.0],[118,300,79,1.0],[118,301,64,1.0],[118,301,65,1.0],[118,301,66,1.0],[118,301,67,1.0],[118,301,68,1.0],[118,301,69,1.0],[118,301,70,1.0],[118,301,71,1.0],[118,301,72,1.0],[118,301,73,1.0],[118,301,74,1.0],[118,301,75,1.0],[118,301,76,1.0],[118,301,77,1.0],[118,301,78,1.0],[118,301,79,1.0],[118,302,64,1.0],[118,302,65,1.0],[118,302,66,1.0],[118,302,67,1.0],[118,302,68,1.0],[118,302,69,1.0],[118,302,70,1.0],[118,302,71,1.0],[118,302,72,1.0],[118,302,73,1.0],[118,302,74,1.0],[118,302,75,1.0],[118,302,76,1.0],[118,302,77,1.0],[118,302,78,1.0],[118,302,79,1.0],[118,303,64,1.0],[118,303,65,1.0],[118,303,66,1.0],[118,303,67,1.0],[118,303,68,1.0],[118,303,69,1.0],[118,303,70,1.0],[118,303,71,1.0],[118,303,72,1.0],[118,303,73,1.0],[118,303,74,1.0],[118,303,75,1.0],[118,303,76,1.0],[118,303,77,1.0],[118,303,78,1.0],[118,303,79,1.0],[118,304,64,1.0],[118,304,65,1.0],[118,304,66,1.0],[118,304,67,1.0],[118,304,68,1.0],[118,304,69,1.0],[118,304,70,1.0],[118,304,71,1.0],[118,304,72,1.0],[118,304,73,1.0],[118,304,74,1.0],[118,304,75,1.0],[118,304,76,1.0],[118,304,77,1.0],[118,304,78,1.0],[118,304,79,1.0],[118,305,64,1.0],[118,305,65,1.0],[118,305,66,1.0],[118,305,67,1.0],[118,305,68,1.0],[118,305,69,1.0],[118,305,70,1.0],[118,305,71,1.0],[118,305,72,1.0],[118,305,73,1.0],[118,305,74,1.0],[118,305,75,1.0],[118,305,76,1.0],[118,305,77,1.0],[118,305,78,1.0],[118,305,79,1.0],[118,306,64,1.0],[118,306,65,1.0],[118,306,66,1.0],[118,306,67,1.0],[118,306,68,1.0],[118,306,69,1.0],[118,306,70,1.0],[118,306,71,1.0],[118,306,72,1.0],[118,306,73,1.0],[118,306,74,1.0],[118,306,75,1.0],[118,306,76,1.0],[118,306,77,1.0],[118,306,78,1.0],[118,306,79,1.0],[118,307,64,1.0],[118,307,65,1.0],[118,307,66,1.0],[118,307,67,1.0],[118,307,68,1.0],[118,307,69,1.0],[118,307,70,1.0],[118,307,71,1.0],[118,307,72,1.0],[118,307,73,1.0],[118,307,74,1.0],[118,307,75,1.0],[118,307,76,1.0],[118,307,77,1.0],[118,307,78,1.0],[118,307,79,1.0],[118,308,64,1.0],[118,308,65,1.0],[118,308,66,1.0],[118,308,67,1.0],[118,308,68,1.0],[118,308,69,1.0],[118,308,70,1.0],[118,308,71,1.0],[118,308,72,1.0],[118,308,73,1.0],[118,308,74,1.0],[118,308,75,1.0],[118,308,76,1.0],[118,308,77,1.0],[118,308,78,1.0],[118,308,79,1.0],[118,309,64,1.0],[118,309,65,1.0],[118,309,66,1.0],[118,309,67,1.0],[118,309,68,1.0],[118,309,69,1.0],[118,309,70,1.0],[118,309,71,1.0],[118,309,72,1.0],[118,309,73,1.0],[118,309,74,1.0],[118,309,75,1.0],[118,309,76,1.0],[118,309,77,1.0],[118,309,78,1.0],[118,309,79,1.0],[118,310,64,1.0],[118,310,65,1.0],[118,310,66,1.0],[118,310,67,1.0],[118,310,68,1.0],[118,310,69,1.0],[118,310,70,1.0],[118,310,71,1.0],[118,310,72,1.0],[118,310,73,1.0],[118,310,74,1.0],[118,310,75,1.0],[118,310,76,1.0],[118,310,77,1.0],[118,310,78,1.0],[118,310,79,1.0],[118,311,64,1.0],[118,311,65,1.0],[118,311,66,1.0],[118,311,67,1.0],[118,311,68,1.0],[118,311,69,1.0],[118,311,70,1.0],[118,311,71,1.0],[118,311,72,1.0],[118,311,73,1.0],[118,311,74,1.0],[118,311,75,1.0],[118,311,76,1.0],[118,311,77,1.0],[118,311,78,1.0],[118,311,79,1.0],[118,312,64,1.0],[118,312,65,1.0],[118,312,66,1.0],[118,312,67,1.0],[118,312,68,1.0],[118,312,69,1.0],[118,312,70,1.0],[118,312,71,1.0],[118,312,72,1.0],[118,312,73,1.0],[118,312,74,1.0],[118,312,75,1.0],[118,312,76,1.0],[118,312,77,1.0],[118,312,78,1.0],[118,312,79,1.0],[118,313,64,1.0],[118,313,65,1.0],[118,313,66,1.0],[118,313,67,1.0],[118,313,68,1.0],[118,313,69,1.0],[118,313,70,1.0],[118,313,71,1.0],[118,313,72,1.0],[118,313,73,1.0],[118,313,74,1.0],[118,313,75,1.0],[118,313,76,1.0],[118,313,77,1.0],[118,313,78,1.0],[118,313,79,1.0],[118,314,64,1.0],[118,314,65,1.0],[118,314,66,1.0],[118,314,67,1.0],[118,314,68,1.0],[118,314,69,1.0],[118,314,70,1.0],[118,314,71,1.0],[118,314,72,1.0],[118,314,73,1.0],[118,314,74,1.0],[118,314,75,1.0],[118,314,76,1.0],[118,314,77,1.0],[118,314,78,1.0],[118,314,79,1.0],[118,315,64,1.0],[118,315,65,1.0],[118,315,66,1.0],[118,315,67,1.0],[118,315,68,1.0],[118,315,69,1.0],[118,315,70,1.0],[118,315,71,1.0],[118,315,72,1.0],[118,315,73,1.0],[118,315,74,1.0],[118,315,75,1.0],[118,315,76,1.0],[118,315,77,1.0],[118,315,78,1.0],[118,315,79,1.0],[118,316,64,1.0],[118,316,65,1.0],[118,316,66,1.0],[118,316,67,1.0],[118,316,68,1.0],[118,316,69,1.0],[118,316,70,1.0],[118,316,71,1.0],[118,316,72,1.0],[118,316,73,1.0],[118,316,74,1.0],[118,316,75,1.0],[118,316,76,1.0],[118,316,77,1.0],[118,316,78,1.0],[118,316,79,1.0],[118,317,64,1.0],[118,317,65,1.0],[118,317,66,1.0],[118,317,67,1.0],[118,317,68,1.0],[118,317,69,1.0],[118,317,70,1.0],[118,317,71,1.0],[118,317,72,1.0],[118,317,73,1.0],[118,317,74,1.0],[118,317,75,1.0],[118,317,76,1.0],[118,317,77,1.0],[118,317,78,1.0],[118,317,79,1.0],[118,318,64,1.0],[118,318,65,1.0],[118,318,66,1.0],[118,318,67,1.0],[118,318,68,1.0],[118,318,69,1.0],[118,318,70,1.0],[118,318,71,1.0],[118,318,72,1.0],[118,318,73,1.0],[118,318,74,1.0],[118,318,75,1.0],[118,318,76,1.0],[118,318,77,1.0],[118,318,78,1.0],[118,318,79,1.0],[118,319,64,1.0],[118,319,65,1.0],[118,319,66,1.0],[118,319,67,1.0],[118,319,68,1.0],[118,319,69,1.0],[118,319,70,1.0],[118,319,71,1.0],[118,319,72,1.0],[118,319,73,1.0],[118,319,74,1.0],[118,319,75,1.0],[118,319,76,1.0],[118,319,77,1.0],[118,319,78,1.0],[118,319,79,1.0],[119,-64,64,1.0],[119,-64,65,1.0],[119,-64,66,1.0],[119,-64,67,1.0],[119,-64,68,1.0],[119,-64,69,1.0],[119,-64,70,1.0],[119,-64,71,1.0],[119,-64,72,1.0],[119,-64,73,1.0],[119,-64,74,1.0],[119,-64,75,1.0],[119,-64,76,1.0],[119,-64,77,1.0],[119,-64,78,1.0],[119,-64,79,1.0],[119,-63,64,1.0],[119,-63,65,1.0],[119,-63,66,1.0],[119,-63,67,1.0],[119,-63,68,1.0],[119,-63,69,1.0],[119,-63,70,1.0],[119,-63,71,1.0],[119,-63,72,1.0],[119,-63,73,1.0],[119,-63,74,1.0],[119,-63,75,1.0],[119,-63,76,1.0],[119,-63,77,1.0],[119,-63,78,1.0],[119,-63,79,1.0],[119,-62,64,1.0],[119,-62,65,1.0],[119,-62,66,1.0],[119,-62,67,1.0],[119,-62,68,1.0],[119,-62,69,1.0],[119,-62,70,1.0],[119,-62,71,1.0],[119,-62,72,1.0],[119,-62,73,1.0],[119,-62,74,1.0],[119,-62,75,1.0],[119,-62,76,1.0],[119,-62,77,1.0],[119,-62,78,1.0],[119,-62,79,1.0],[119,-61,64,1.0],[119,-61,65,1.0],[119,-61,66,1.0],[119,-61,67,1.0],[119,-61,68,1.0],[119,-61,69,1.0],[119,-61,70,1.0],[119,-61,71,1.0],[119,-61,72,1.0],[119,-61,73,1.0],[119,-61,74,1.0],[119,-61,75,1.0],[119,-61,76,1.0],[119,-61,77,1.0],[119,-61,78,1.0],[119,-61,79,1.0],[119,-60,64,1.0],[119,-60,65,1.0],[119,-60,66,1.0],[119,-60,67,1.0],[119,-60,68,1.0],[119,-60,69,1.0],[119,-60,70,1.0],[119,-60,71,1.0],[119,-60,72,1.0],[119,-60,73,1.0],[119,-60,74,1.0],[119,-60,75,1.0],[119,-60,76,1.0],[119,-60,77,1.0],[119,-60,78,1.0],[119,-60,79,1.0],[119,-59,64,1.0],[119,-59,65,1.0],[119,-59,66,1.0],[119,-59,67,1.0],[119,-59,68,1.0],[119,-59,69,1.0],[119,-59,70,1.0],[119,-59,71,1.0],[119,-59,72,1.0],[119,-59,73,1.0],[119,-59,74,1.0],[119,-59,75,1.0],[119,-59,76,1.0],[119,-59,77,1.0],[119,-59,78,1.0],[119,-59,79,1.0],[119,-58,64,1.0],[119,-58,65,1.0],[119,-58,66,1.0],[119,-58,67,1.0],[119,-58,68,1.0],[119,-58,69,1.0],[119,-58,70,1.0],[119,-58,71,1.0],[119,-58,72,1.0],[119,-58,73,1.0],[119,-58,74,1.0],[119,-58,75,1.0],[119,-58,76,1.0],[119,-58,77,1.0],[119,-58,78,1.0],[119,-58,79,1.0],[119,-57,64,1.0],[119,-57,65,1.0],[119,-57,66,1.0],[119,-57,67,1.0],[119,-57,68,1.0],[119,-57,69,1.0],[119,-57,70,1.0],[119,-57,71,1.0],[119,-57,72,1.0],[119,-57,73,1.0],[119,-57,74,1.0],[119,-57,75,1.0],[119,-57,76,1.0],[119,-57,77,1.0],[119,-57,78,1.0],[119,-57,79,1.0],[119,-56,64,1.0],[119,-56,65,1.0],[119,-56,66,1.0],[119,-56,67,1.0],[119,-56,68,1.0],[119,-56,69,1.0],[119,-56,70,1.0],[119,-56,71,1.0],[119,-56,72,1.0],[119,-56,73,1.0],[119,-56,74,1.0],[119,-56,75,1.0],[119,-56,76,1.0],[119,-56,77,1.0],[119,-56,78,1.0],[119,-56,79,1.0],[119,-55,64,1.0],[119,-55,65,1.0],[119,-55,66,1.0],[119,-55,67,1.0],[119,-55,68,1.0],[119,-55,69,1.0],[119,-55,70,1.0],[119,-55,71,1.0],[119,-55,72,1.0],[119,-55,73,1.0],[119,-55,74,1.0],[119,-55,75,1.0],[119,-55,76,1.0],[119,-55,77,1.0],[119,-55,78,1.0],[119,-55,79,1.0],[119,-54,64,1.0],[119,-54,65,1.0],[119,-54,66,1.0],[119,-54,67,1.0],[119,-54,68,1.0],[119,-54,69,1.0],[119,-54,70,1.0],[119,-54,71,1.0],[119,-54,72,1.0],[119,-54,73,1.0],[119,-54,74,1.0],[119,-54,75,1.0],[119,-54,76,1.0],[119,-54,77,1.0],[119,-54,78,1.0],[119,-54,79,1.0],[119,-53,64,1.0],[119,-53,65,1.0],[119,-53,66,1.0],[119,-53,67,1.0],[119,-53,68,1.0],[119,-53,69,1.0],[119,-53,70,1.0],[119,-53,71,1.0],[119,-53,72,1.0],[119,-53,73,1.0],[119,-53,74,1.0],[119,-53,75,1.0],[119,-53,76,1.0],[119,-53,77,1.0],[119,-53,78,1.0],[119,-53,79,1.0],[119,-52,64,1.0],[119,-52,65,1.0],[119,-52,66,1.0],[119,-52,67,1.0],[119,-52,68,1.0],[119,-52,69,1.0],[119,-52,70,1.0],[119,-52,71,1.0],[119,-52,72,1.0],[119,-52,73,1.0],[119,-52,74,1.0],[119,-52,75,1.0],[119,-52,76,1.0],[119,-52,77,1.0],[119,-52,78,1.0],[119,-52,79,1.0],[119,-51,64,1.0],[119,-51,65,1.0],[119,-51,66,1.0],[119,-51,67,1.0],[119,-51,68,1.0],[119,-51,69,1.0],[119,-51,70,1.0],[119,-51,71,1.0],[119,-51,72,1.0],[119,-51,73,1.0],[119,-51,74,1.0],[119,-51,75,1.0],[119,-51,76,1.0],[119,-51,77,1.0],[119,-51,78,1.0],[119,-51,79,1.0],[119,-50,64,1.0],[119,-50,65,1.0],[119,-50,66,1.0],[119,-50,67,1.0],[119,-50,68,1.0],[119,-50,69,1.0],[119,-50,70,1.0],[119,-50,71,1.0],[119,-50,72,1.0],[119,-50,73,1.0],[119,-50,74,1.0],[119,-50,75,1.0],[119,-50,76,1.0],[119,-50,77,1.0],[119,-50,78,1.0],[119,-50,79,1.0],[119,-49,64,1.0],[119,-49,65,1.0],[119,-49,66,1.0],[119,-49,67,1.0],[119,-49,68,1.0],[119,-49,69,1.0],[119,-49,70,1.0],[119,-49,71,1.0],[119,-49,72,1.0],[119,-49,73,1.0],[119,-49,74,1.0],[119,-49,75,1.0],[119,-49,76,1.0],[119,-49,77,1.0],[119,-49,78,1.0],[119,-49,79,1.0],[119,-48,64,1.0],[119,-48,65,1.0],[119,-48,66,1.0],[119,-48,67,1.0],[119,-48,68,1.0],[119,-48,69,1.0],[119,-48,70,1.0],[119,-48,71,1.0],[119,-48,72,1.0],[119,-48,73,1.0],[119,-48,74,1.0],[119,-48,75,1.0],[119,-48,76,1.0],[119,-48,77,1.0],[119,-48,78,1.0],[119,-48,79,1.0],[119,-47,64,1.0],[119,-47,65,1.0],[119,-47,66,1.0],[119,-47,67,1.0],[119,-47,68,1.0],[119,-47,69,1.0],[119,-47,70,1.0],[119,-47,71,1.0],[119,-47,72,1.0],[119,-47,73,1.0],[119,-47,74,1.0],[119,-47,75,1.0],[119,-47,76,1.0],[119,-47,77,1.0],[119,-47,78,1.0],[119,-47,79,1.0],[119,-46,64,1.0],[119,-46,65,1.0],[119,-46,66,1.0],[119,-46,67,1.0],[119,-46,68,1.0],[119,-46,69,1.0],[119,-46,70,1.0],[119,-46,71,1.0],[119,-46,72,1.0],[119,-46,73,1.0],[119,-46,74,1.0],[119,-46,75,1.0],[119,-46,76,1.0],[119,-46,77,1.0],[119,-46,78,1.0],[119,-46,79,1.0],[119,-45,64,1.0],[119,-45,65,1.0],[119,-45,66,1.0],[119,-45,67,1.0],[119,-45,68,1.0],[119,-45,69,1.0],[119,-45,70,1.0],[119,-45,71,1.0],[119,-45,72,1.0],[119,-45,73,1.0],[119,-45,74,1.0],[119,-45,75,1.0],[119,-45,76,1.0],[119,-45,77,1.0],[119,-45,78,1.0],[119,-45,79,1.0],[119,-44,64,1.0],[119,-44,65,1.0],[119,-44,66,1.0],[119,-44,67,1.0],[119,-44,68,1.0],[119,-44,69,1.0],[119,-44,70,1.0],[119,-44,71,1.0],[119,-44,72,1.0],[119,-44,73,1.0],[119,-44,74,1.0],[119,-44,75,1.0],[119,-44,76,1.0],[119,-44,77,1.0],[119,-44,78,1.0],[119,-44,79,1.0],[119,-43,64,1.0],[119,-43,65,1.0],[119,-43,66,1.0],[119,-43,67,1.0],[119,-43,68,1.0],[119,-43,69,1.0],[119,-43,70,1.0],[119,-43,71,1.0],[119,-43,72,1.0],[119,-43,73,1.0],[119,-43,74,1.0],[119,-43,75,1.0],[119,-43,76,1.0],[119,-43,77,1.0],[119,-43,78,1.0],[119,-43,79,1.0],[119,-42,64,1.0],[119,-42,65,1.0],[119,-42,66,1.0],[119,-42,67,1.0],[119,-42,68,1.0],[119,-42,69,1.0],[119,-42,70,1.0],[119,-42,71,1.0],[119,-42,72,1.0],[119,-42,73,1.0],[119,-42,74,1.0],[119,-42,75,1.0],[119,-42,76,1.0],[119,-42,77,1.0],[119,-42,78,1.0],[119,-42,79,1.0],[119,-41,64,1.0],[119,-41,65,1.0],[119,-41,66,1.0],[119,-41,67,1.0],[119,-41,68,1.0],[119,-41,69,1.0],[119,-41,70,1.0],[119,-41,71,1.0],[119,-41,72,1.0],[119,-41,73,1.0],[119,-41,74,1.0],[119,-41,75,1.0],[119,-41,76,1.0],[119,-41,77,1.0],[119,-41,78,1.0],[119,-41,79,1.0],[119,-40,64,1.0],[119,-40,65,1.0],[119,-40,66,1.0],[119,-40,67,1.0],[119,-40,68,1.0],[119,-40,69,1.0],[119,-40,70,1.0],[119,-40,71,1.0],[119,-40,72,1.0],[119,-40,73,1.0],[119,-40,74,1.0],[119,-40,75,1.0],[119,-40,76,1.0],[119,-40,77,1.0],[119,-40,78,1.0],[119,-40,79,1.0],[119,-39,64,1.0],[119,-39,65,1.0],[119,-39,66,1.0],[119,-39,67,1.0],[119,-39,68,1.0],[119,-39,69,1.0],[119,-39,70,1.0],[119,-39,71,1.0],[119,-39,72,1.0],[119,-39,73,1.0],[119,-39,74,1.0],[119,-39,75,1.0],[119,-39,76,1.0],[119,-39,77,1.0],[119,-39,78,1.0],[119,-39,79,1.0],[119,-38,64,1.0],[119,-38,65,1.0],[119,-38,66,1.0],[119,-38,67,1.0],[119,-38,68,1.0],[119,-38,69,1.0],[119,-38,70,1.0],[119,-38,71,1.0],[119,-38,72,1.0],[119,-38,73,1.0],[119,-38,74,1.0],[119,-38,75,1.0],[119,-38,76,1.0],[119,-38,77,1.0],[119,-38,78,1.0],[119,-38,79,1.0],[119,-37,64,1.0],[119,-37,65,1.0],[119,-37,66,1.0],[119,-37,67,1.0],[119,-37,68,1.0],[119,-37,69,1.0],[119,-37,70,1.0],[119,-37,71,1.0],[119,-37,72,1.0],[119,-37,73,1.0],[119,-37,74,1.0],[119,-37,75,1.0],[119,-37,76,1.0],[119,-37,77,1.0],[119,-37,78,1.0],[119,-37,79,1.0],[119,-36,64,1.0],[119,-36,65,1.0],[119,-36,66,1.0],[119,-36,67,1.0],[119,-36,68,1.0],[119,-36,69,1.0],[119,-36,70,1.0],[119,-36,71,1.0],[119,-36,72,1.0],[119,-36,73,1.0],[119,-36,74,1.0],[119,-36,75,1.0],[119,-36,76,1.0],[119,-36,77,1.0],[119,-36,78,1.0],[119,-36,79,1.0],[119,-35,64,1.0],[119,-35,65,1.0],[119,-35,66,1.0],[119,-35,67,1.0],[119,-35,68,1.0],[119,-35,69,1.0],[119,-35,70,1.0],[119,-35,71,1.0],[119,-35,72,1.0],[119,-35,73,1.0],[119,-35,74,1.0],[119,-35,75,1.0],[119,-35,76,1.0],[119,-35,77,1.0],[119,-35,78,1.0],[119,-35,79,1.0],[119,-34,64,1.0],[119,-34,65,1.0],[119,-34,66,1.0],[119,-34,67,1.0],[119,-34,68,1.0],[119,-34,69,1.0],[119,-34,70,1.0],[119,-34,71,1.0],[119,-34,72,1.0],[119,-34,73,1.0],[119,-34,74,1.0],[119,-34,75,1.0],[119,-34,76,1.0],[119,-34,77,1.0],[119,-34,78,1.0],[119,-34,79,1.0],[119,-33,64,1.0],[119,-33,65,1.0],[119,-33,66,1.0],[119,-33,67,1.0],[119,-33,68,1.0],[119,-33,69,1.0],[119,-33,70,1.0],[119,-33,71,1.0],[119,-33,72,1.0],[119,-33,73,1.0],[119,-33,74,1.0],[119,-33,75,1.0],[119,-33,76,1.0],[119,-33,77,1.0],[119,-33,78,1.0],[119,-33,79,1.0],[119,-32,64,1.0],[119,-32,65,1.0],[119,-32,66,1.0],[119,-32,67,1.0],[119,-32,68,1.0],[119,-32,69,1.0],[119,-32,70,1.0],[119,-32,71,1.0],[119,-32,72,1.0],[119,-32,73,1.0],[119,-32,74,1.0],[119,-32,75,1.0],[119,-32,76,1.0],[119,-32,77,1.0],[119,-32,78,1.0],[119,-32,79,1.0],[119,-31,64,1.0],[119,-31,65,1.0],[119,-31,66,1.0],[119,-31,67,1.0],[119,-31,68,1.0],[119,-31,69,1.0],[119,-31,70,1.0],[119,-31,71,1.0],[119,-31,72,1.0],[119,-31,73,1.0],[119,-31,74,1.0],[119,-31,75,1.0],[119,-31,76,1.0],[119,-31,77,1.0],[119,-31,78,1.0],[119,-31,79,1.0],[119,-30,64,1.0],[119,-30,65,1.0],[119,-30,66,1.0],[119,-30,67,1.0],[119,-30,68,1.0],[119,-30,69,1.0],[119,-30,70,1.0],[119,-30,71,1.0],[119,-30,72,1.0],[119,-30,73,1.0],[119,-30,74,1.0],[119,-30,75,1.0],[119,-30,76,1.0],[119,-30,77,1.0],[119,-30,78,1.0],[119,-30,79,1.0],[119,-29,64,1.0],[119,-29,65,1.0],[119,-29,66,1.0],[119,-29,67,1.0],[119,-29,68,1.0],[119,-29,69,1.0],[119,-29,70,1.0],[119,-29,71,1.0],[119,-29,72,1.0],[119,-29,73,1.0],[119,-29,74,1.0],[119,-29,75,1.0],[119,-29,76,1.0],[119,-29,77,1.0],[119,-29,78,1.0],[119,-29,79,1.0],[119,-28,64,1.0],[119,-28,65,1.0],[119,-28,66,1.0],[119,-28,67,1.0],[119,-28,68,1.0],[119,-28,69,1.0],[119,-28,70,1.0],[119,-28,71,1.0],[119,-28,72,1.0],[119,-28,73,1.0],[119,-28,74,1.0],[119,-28,75,1.0],[119,-28,76,1.0],[119,-28,77,1.0],[119,-28,78,1.0],[119,-28,79,1.0],[119,-27,64,1.0],[119,-27,65,1.0],[119,-27,66,1.0],[119,-27,67,1.0],[119,-27,68,1.0],[119,-27,69,1.0],[119,-27,70,1.0],[119,-27,71,1.0],[119,-27,72,1.0],[119,-27,73,1.0],[119,-27,74,1.0],[119,-27,75,1.0],[119,-27,76,1.0],[119,-27,77,1.0],[119,-27,78,1.0],[119,-27,79,1.0],[119,-26,64,1.0],[119,-26,65,1.0],[119,-26,66,1.0],[119,-26,67,1.0],[119,-26,68,1.0],[119,-26,69,1.0],[119,-26,70,1.0],[119,-26,71,1.0],[119,-26,72,1.0],[119,-26,73,1.0],[119,-26,74,1.0],[119,-26,75,1.0],[119,-26,76,1.0],[119,-26,77,1.0],[119,-26,78,1.0],[119,-26,79,1.0],[119,-25,64,1.0],[119,-25,65,1.0],[119,-25,66,1.0],[119,-25,67,1.0],[119,-25,68,1.0],[119,-25,69,1.0],[119,-25,70,1.0],[119,-25,71,1.0],[119,-25,72,1.0],[119,-25,73,1.0],[119,-25,74,1.0],[119,-25,75,1.0],[119,-25,76,1.0],[119,-25,77,1.0],[119,-25,78,1.0],[119,-25,79,1.0],[119,-24,64,1.0],[119,-24,65,1.0],[119,-24,66,1.0],[119,-24,67,1.0],[119,-24,68,1.0],[119,-24,69,1.0],[119,-24,70,1.0],[119,-24,71,1.0],[119,-24,72,1.0],[119,-24,73,1.0],[119,-24,74,1.0],[119,-24,75,1.0],[119,-24,76,1.0],[119,-24,77,1.0],[119,-24,78,1.0],[119,-24,79,1.0],[119,-23,64,1.0],[119,-23,65,1.0],[119,-23,66,1.0],[119,-23,67,1.0],[119,-23,68,1.0],[119,-23,69,1.0],[119,-23,70,1.0],[119,-23,71,1.0],[119,-23,72,1.0],[119,-23,73,1.0],[119,-23,74,1.0],[119,-23,75,1.0],[119,-23,76,1.0],[119,-23,77,1.0],[119,-23,78,1.0],[119,-23,79,1.0],[119,-22,64,1.0],[119,-22,65,1.0],[119,-22,66,1.0],[119,-22,67,1.0],[119,-22,68,1.0],[119,-22,69,1.0],[119,-22,70,1.0],[119,-22,71,1.0],[119,-22,72,1.0],[119,-22,73,1.0],[119,-22,74,1.0],[119,-22,75,1.0],[119,-22,76,1.0],[119,-22,77,1.0],[119,-22,78,1.0],[119,-22,79,1.0],[119,-21,64,1.0],[119,-21,65,1.0],[119,-21,66,1.0],[119,-21,67,1.0],[119,-21,68,1.0],[119,-21,69,1.0],[119,-21,70,1.0],[119,-21,71,1.0],[119,-21,72,1.0],[119,-21,73,1.0],[119,-21,74,1.0],[119,-21,75,1.0],[119,-21,76,1.0],[119,-21,77,1.0],[119,-21,78,1.0],[119,-21,79,1.0],[119,-20,64,1.0],[119,-20,65,1.0],[119,-20,66,1.0],[119,-20,67,1.0],[119,-20,68,1.0],[119,-20,69,1.0],[119,-20,70,1.0],[119,-20,71,1.0],[119,-20,72,1.0],[119,-20,73,1.0],[119,-20,74,1.0],[119,-20,75,1.0],[119,-20,76,1.0],[119,-20,77,1.0],[119,-20,78,1.0],[119,-20,79,1.0],[119,-19,64,1.0],[119,-19,65,1.0],[119,-19,66,1.0],[119,-19,67,1.0],[119,-19,68,1.0],[119,-19,69,1.0],[119,-19,70,1.0],[119,-19,71,1.0],[119,-19,72,1.0],[119,-19,73,1.0],[119,-19,74,1.0],[119,-19,75,1.0],[119,-19,76,1.0],[119,-19,77,1.0],[119,-19,78,1.0],[119,-19,79,1.0],[119,-18,64,1.0],[119,-18,65,1.0],[119,-18,66,1.0],[119,-18,67,1.0],[119,-18,68,1.0],[119,-18,69,1.0],[119,-18,70,1.0],[119,-18,71,1.0],[119,-18,72,1.0],[119,-18,73,1.0],[119,-18,74,1.0],[119,-18,75,1.0],[119,-18,76,1.0],[119,-18,77,1.0],[119,-18,78,1.0],[119,-18,79,1.0],[119,-17,64,1.0],[119,-17,65,1.0],[119,-17,66,1.0],[119,-17,67,1.0],[119,-17,68,1.0],[119,-17,69,1.0],[119,-17,70,1.0],[119,-17,71,1.0],[119,-17,72,1.0],[119,-17,73,1.0],[119,-17,74,1.0],[119,-17,75,1.0],[119,-17,76,1.0],[119,-17,77,1.0],[119,-17,78,1.0],[119,-17,79,1.0],[119,-16,64,1.0],[119,-16,65,1.0],[119,-16,66,1.0],[119,-16,67,1.0],[119,-16,68,1.0],[119,-16,69,1.0],[119,-16,70,1.0],[119,-16,71,1.0],[119,-16,72,1.0],[119,-16,73,1.0],[119,-16,74,1.0],[119,-16,75,1.0],[119,-16,76,1.0],[119,-16,77,1.0],[119,-16,78,1.0],[119,-16,79,1.0],[119,-15,64,0.7577836309965642],[119,-15,65,0.8537228522136461],[119,-15,66,0.9548819515058822],[119,-15,67,1.0],[119,-15,68,1.0],[119,-15,69,1.0],[119,-15,70,1.0],[119,-15,71,1.0],[119,-15,72,1.0],[119,-15,73,1.0],[119,-15,74,1.0],[119,-15,75,1.0],[119,-15,76,1.0],[119,-15,77,1.0],[119,-15,78,1.0],[119,-15,79,1.0],[119,-14,64,0.48664009442985545],[119,-14,65,0.5585081755853168],[119,-14,66,0.6351784947847456],[119,-14,67,0.7164542565541063],[119,-14,68,0.8021133745039558],[119,-14,69,0.8919119965138034],[119,-14,70,0.9855880222256819],[119,-14,71,1.0],[119,-14,72,1.0],[119,-14,73,1.0],[119,-14,74,1.0],[119,-14,75,1.0],[119,-14,76,1.0],[119,-14,77,1.0],[119,-14,78,1.0],[119,-14,79,1.0],[119,-13,64,0.2893847228889869],[119,-13,65,0.3406527895894136],[119,-13,66,0.3962230076836671],[119,-13,67,0.45596971873169795],[119,-13,68,0.519739524346851],[119,-13,69,0.587354661463491],[119,-13,70,0.6586163762236376],[119,-13,71,0.7333082792815706],[119,-13,72,0.8111996660163597],[119,-13,73,0.892048785946648],[119,-13,74,0.9756060465414716],[119,-13,75,1.0],[119,-13,76,1.0],[119,-13,77,1.0],[119,-13,78,1.0],[119,-13,79,1.0],[119,-12,64,0.15426377207824127],[119,-12,65,0.18840308122222976],[119,-12,66,0.2262620083047671],[119,-12,67,0.2677860559653332],[119,-12,68,0.3128906375789982],[119,-12,69,0.3614643051380537],[119,-12,70,0.4133719820850322],[119,-12,71,0.4684581841606681],[119,-12,72,0.5265502119861768],[119,-12,73,0.5874612998681353],[119,-12,74,0.6509937061807262],[119,-12,75,0.7169417316846127],[119,-12,76,0.7850946532438825],[119,-12,77,0.8552395615911633],[119,-12,78,0.9271640931073658],[119,-12,79,1.0],[119,-11,64,0.069523401852061],[119,-11,65,0.09000534125394619],[119,-11,66,0.11354191814958889],[119,-11,67,0.1401498202973022],[119,-11,68,0.1698133965870246],[119,-11,69,0.20248774006671735],[119,-11,70,0.23810178227510295],[119,-11,71,0.2765613822084777],[119,-11,72,0.3177523938705939],[119,-11,73,0.36154369708809964],[119,-11,74,0.40779017710680565],[119,-11,75,0.45633563944367406],[119,-11,76,0.5070156475270167],[119,-11,77,0.5596602718022706],[119,-11,78,0.6140967402418702],[119,-11,79,0.6701519815422389],[119,-10,64,0.023409676111957354],[119,-10,65,0.03370576412187844],[119,-10,66,0.04630906200870678],[119,-10,67,0.061307466682625496],[119,-10,68,0.07875438629576341],[119,-10,69,0.0986716809441379],[119,-10,70,0.1210526210534658],[119,-10,71,0.1458648470403419],[119,-10,72,0.17305331442759894],[119,-10,73,0.20254320929078717],[119,-10,74,0.23424281971108152],[119,-10,75,0.2680463498253789],[119,-10,76,0.3038366640773296],[119,-10,77,0.3414879503735097],[119,-10,78,0.3808682920555202],[119,-10,79,0.4218421398876445],[119,-9,64,0.017543858559300386],[119,-9,65,0.020778310104472925],[119,-9,66,0.023920182391035473],[119,-9,67,0.02696748549063789],[119,-9,68,0.029918193731801004],[119,-9,69,0.03826274451335832],[119,-9,70,0.050471244353543575],[119,-9,71,0.06461545357255243],[119,-9,72,0.08069997734496964],[119,-9,73,0.09870696872074908],[119,-9,74,0.11859889457739826],[119,-9,75,0.14032125153320246],[119,-9,76,0.16380521949668203],[119,-9,77,0.18897024158292403],[119,-9,78,0.215726520280031],[119,-9,79,0.24397742098214464],[119,-8,64,0.01375793943019421],[119,-8,65,0.016958444625560516],[119,-8,66,0.02006987087336782],[119,-8,67,0.02309030037273789],[119,-8,68,0.026017769398282133],[119,-8,69,0.02885028404819162],[119,-8,70,0.03158583549286851],[119,-8,71,0.03422241472391156],[119,-8,72,0.036758026803710805],[119,-8,73,0.03919070461534661],[119,-8,74,0.04910556235152399],[119,-8,75,0.061407632962930704],[119,-8,76,0.07516872971126914],[119,-8,77,0.09035468866653418],[119,-8,78,0.10691909524033226],[119,-8,79,0.12480562201900239],[119,-7,64,0.009938933322308961],[119,-7,65,0.013103506918049415],[119,-7,66,0.01618248186089146],[119,-7,67,0.01917401409896847],[119,-7,68,0.022076203704121833],[119,-7,69,0.0248871108288177],[119,-7,70,0.027604771164373834],[119,-7,71,0.030227210900306847],[119,-7,72,0.03275246118505734],[119,-7,73,0.035178572087786956],[119,-7,74,0.03750362606139207],[119,-7,75,0.039725750906880596],[119,-7,76,0.0418431322388019],[119,-7,77,0.04385402545199345],[119,-7,78,0.045756767189441945],[119,-7,79,0.05257443827822091],[119,-6,64,0.006093465027095062],[119,-6,65,0.009220137726309849],[119,-6,66,0.012264667918731896],[119,-6,67,0.015225286836871063],[119,-6,68,0.01810016012682404],[119,-6,69,0.02088740399552832],[119,-6,70,0.023585100860516774],[119,-6,71,0.02619131450198211],[119,-6,72,0.028704104717407697],[119,-6,73,0.03112154147845969],[119,-6,74,0.03344171859028458],[119,-6,75,0.03566276685336017],[119,-6,76,0.03778286672758723],[119,-6,77,0.03980026049888746],[119,-6,78,0.041713263948106295],[119,-6,79,0.0435202775224897],[119,-5,64,0.0022281925379332643],[119,-5,65,0.005315014354529503],[119,-5,66,0.008323121579632498],[119,-5,67,0.011250822176880032],[119,-5,68,0.01409634906665945],[119,-5,69,0.01685787644497653],[119,-5,70,0.019533535606432922],[119,-5,71,0.022121430271122934],[119,-5,72,0.024619651415707232],[119,-5,73,0.02702629160835634],[119,-5,74,0.02933945884770798],[119,-5,75,0.031557289905988745],[119,-5,76,0.03367796317598575],[119,-5,77,0.03569971102213243],[119,-5,78,0.037620831635509125],[119,-5,79,0.03943970039302888],[119,-4,64,-0.0016502032625661175],[119,-4,65,0.0013948403120645075],[119,-4,66,0.004364564956113384],[119,-4,67,0.007257356720224414],[119,-4,68,0.010071517419406803],[119,-4,69,0.012805281104589152],[119,-4,70,0.015456830040311086],[119,-4,71,0.018024310188361002],[119,-4,72,0.020505846197618666],[119,-4,73,0.022899555899795115],[119,-4,74,0.025203564311214767],[119,-4,75,0.027416017140789034],[119,-4,76,0.029535093803866888],[119,-4,77,0.03155901994222978],[119,-4,78,0.03348607945002543],[119,-4,79,0.035314626005917386],[119,-3,64,-0.005535027895087738],[119,-3,65,-0.002533664017762914],[119,-3,66,3.957403795737946E-4],[119,-3,67,0.0032516506975071927],[119,-3,68,0.006032439183737429],[119,-3,69,0.008736401538220619],[119,-3,70,0.011361773026890516],[119,-3,71,0.0139067441037697],[119,-3,72,0.01636947554173089],[119,-3,73,0.018748113071596142],[119,-3,74,0.02104080152972397],[119,-3,75,0.023245698514231354],[119,-3,76,0.025360987549535148],[119,-3,77,0.027384890759481716],[119,-3,78,0.02931568104885987],[119,-3,79,0.031151693793572348],[119,-2,64,-0.009419581555932435],[119,-2,65,-0.006463769685393805],[119,-2,66,-0.003576597933632422],[119,-2,67,-7.595203820120744E-4],[119,-2,68,0.0019859071032709424],[119,-2,69,0.004658043590679471],[119,-2,70,0.007255179314264372],[119,-2,71,0.009775551415837351],[119,-2,72,0.012217359198651613],[119,-2,73,0.014578778892276732],[119,-2,74,0.01685797792881518],[119,-2,75,0.01905312873061263],[119,-2,76,0.02116242200914236],[119,-2,77,0.023184079575333708],[119,-2,78,0.025116366661140428],[119,-2,79,0.026957603752624022],[119,-1,64,-0.013297166369163435],[119,-1,65,-0.010388746459320086],[119,-1,66,-0.007545691189178146],[119,-1,67,-0.004769373050458547],[119,-1,68,-0.002061274656729409],[119,-1,69,5.770280710952411E-4],[119,-1,70,0.003143882233960761],[119,-1,71,0.005637573798386197],[119,-1,72,0.008056342954949905],[119,-1,73,0.010398398991234528],[119,-1,74,0.012661934679378789],[119,-1,75,0.014845140178386958],[119,-1,76,0.016946216450877356],[119,-1,77,0.018963388194540715],[119,-1,78,0.020894916288100467],[119,-1,79,0.022739109752055363],[119,0,64,-0.017161092618557895],[119,0,65,-0.014301869086905818],[119,0,66,-0.011504782294781989],[119,0,67,-0.008771122170688025],[119,0,68,-0.006102296797998202],[119,0,69,-0.0034998155248522275],[119,0,70,-9.652725556785688E-4],[119,0,71,0.0014996689754617765],[119,0,72,0.003893292449971872],[119,0,73,0.006213842727941343],[119,0,74,0.0084595406296459],[119,0,75,0.01062859693547339],[119,0,76,0.012719225903956063],[119,0,77,0.014729658308181938],[119,0,78,0.01665815399037785],[119,0,79,0.01850301393494147],[119,1,64,-0.02100468395937822],[119,1,65,-0.018196422531760736],[119,1,66,-0.01544712111327571],[119,1,67,-0.012757986194952102],[119,1,68,-0.010130350143263224],[119,1,69,-0.007565654253854991],[119,1,70,-0.005065432282836402],[119,1,71,-0.0026312944558252033],[119,1,72,-2.649119544849976E-4],[119,1,73,0.002031998119131538],[119,1,74,0.004257687300581327],[119,1,75,0.006410389843525238],[119,1,76,0.008488336322395242],[119,1,77,0.010489766757507464],[119,1,78,0.012412943262413517],[119,1,79,0.014256162213770365],[119,2,64,-0.01791474179358331],[119,2,65,-0.022065706187650483],[119,2,66,-0.019365968688711863],[119,2,67,-0.01672319139286786],[119,2,68,-0.014138629855580356],[119,2,69,-0.011613655925038706],[119,2,70,-0.009149741232260887],[119,2,71,-0.006748441154490581],[119,2,72,-0.004411379251626858],[119,2,73,-0.002140232176000463],[119,2,74,6.328494465293599E-5],[119,2,75,0.002197432651172608],[119,2,76,0.004260460823586408],[119,2,77,0.006250621878629951],[119,2,78,0.008166183493962559],[119,2,79,0.010005440859362232],[119,3,64,-0.002559419257191966],[119,3,65,-0.005189842464333552],[119,3,66,-0.009078288546722399],[119,3,67,-0.01438658156382964],[119,3,68,-0.01812033862301518],[119,3,69,-0.015636992261171635],[119,3,70,-0.013211343872018291],[119,3,71,-0.01084489211690752],[119,3,72,-0.00853921081425496],[119,3,73,-0.006295933812601934],[119,3,74,-0.004116740332028759],[119,3,75,-0.002003340773768056],[119,3,76,4.253700165838398E-5],[119,3,77,0.002019160928055118],[119,3,78,0.0039248075187102716],[119,3,79,0.005757774183376543],[119,4,64,-1.6919338236062452E-6],[119,4,65,-1.1241800331363786E-4],[119,4,66,-5.871579099983532E-4],[119,4,67,-0.0016572538419438957],[119,4,68,-0.0035167301116079343],[119,4,69,-0.006324856810587434],[119,4,70,-0.01020874254477107],[119,4,71,-0.014913766710082585],[119,4,72,-0.012641502366495527],[119,4,73,-0.010428182658966383],[119,4,74,-0.008275448384205256],[119,4,75,-0.00618497816312006],[119,4,76,-0.004158474684371319],[119,4,77,-0.0021976514109534467],[119,4,78,-3.042197500085428E-4],[119,4,79,0.0015201233144052986],[119,5,64,0.0014412009398508119],[119,5,65,4.4961870201497365E-4],[119,5,66,6.960534148206724E-5],[119,5,67,2.7887285437037594E-7],[119,5,68,-2.0118662733261003E-5],[119,5,69,-2.1665332297604028E-4],[119,5,70,-7.801669139593081E-4],[119,5,71,-0.0018697649300954767],[119,5,72,-0.003615310035693745],[119,5,73,-0.006119906924994932],[119,5,74,-0.009462365079419851],[119,5,75,-0.010340509498198466],[119,5,76,-0.008335591447647034],[119,5,77,-0.006392823441163223],[119,5,78,-0.004513901596377483],[119,5,79,-0.0027005139323371743],[119,6,64,0.013451923688410132],[119,6,65,0.008179057755177148],[119,6,66,0.004574916930872048],[119,6,67,0.002269057757445357],[119,6,68,9.31867659002262E-4],[119,6,69,2.722618181415174E-4],[119,6,70,3.533806162652828E-5],[119,6,71,4.7290532774559494E-9],[119,6,72,-2.3403955602534914E-5],[119,6,73,-1.955110401233323E-4],[119,6,74,-6.502652029983365E-4],[119,6,75,-0.0014972817245126823],[119,6,76,-0.002824144298848379],[119,6,77,-0.004698656815505133],[119,6,78,-0.007171035212395056],[119,6,79,-0.006897102091745745],[119,7,64,0.04771304414589224],[119,7,65,0.03475859234446738],[119,7,66,0.024611595243493815],[119,7,67,0.016832026230340847],[119,7,68,0.011022297135304178],[119,7,69,0.006825081581982135],[119,7,70,0.003921089857836567],[119,7,71,0.002026810018858097],[119,7,72,8.92229519156029E-4],[119,7,73,2.9855114092938533E-4],[119,7,74,5.591639379168314E-5],[119,7,75,1.1488586075929146E-6],[119,7,76,-4.470823788106797E-6],[119,7,77,-7.73874704801013E-5],[119,7,78,-3.139014552311296E-4],[119,7,79,-7.922374499219968E-4],[119,8,64,0.11590703360772045],[119,8,65,0.09187081869135472],[119,8,66,0.07186236127174254],[119,8,67,0.05537202989310798],[119,8,68,0.04193413980897467],[119,8,69,0.031124900278935157],[119,8,70,0.022560306873779523],[119,8,71,0.015893993243571266],[119,8,72,0.01081505641022585],[119,8,73,0.007045869165823305],[119,8,74,0.004339892590201216],[119,8,75,0.002479501047220223],[119,8,76,0.0012738312891213536],[119,8,77,5.566664947148528E-4],[119,8,78,1.843651950336678E-4],[119,8,79,3.3844107940314086E-5],[119,9,64,0.2297162667863345],[119,9,65,0.1911982360025989],[119,9,66,0.15800983856370823],[119,9,67,0.12957181647551802],[119,9,68,0.10535026742560961],[119,9,69,0.08485471349882884],[119,9,70,0.06763610836668013],[119,9,71,0.05328479714624653],[119,9,72,0.04142844276072327],[119,9,73,0.031729932188325635],[119,9,74,0.02388527545816502],[119,9,75,0.017621509636468847],[119,9,76,0.01269461936141532],[119,9,77,0.00888748472996993],[119,9,78,0.006007866518048837],[119,9,79,0.0038864378385767826],[119,10,64,0.4008230217705507],[119,10,65,0.3444232464260989],[119,10,66,0.2947365531755349],[119,10,67,0.25111403578443664],[119,10,68,0.21295345337904142],[119,10,69,0.17969741805294667],[119,10,70,0.15083151439049045],[119,10,71,0.1258823648439668],[119,10,72,0.10441565456710288],[119,10,73,0.08603412889683529],[119,10,74,0.07037557618750732],[119,10,75,0.05711080812458722],[119,10,76,0.04594164900484354],[119,10,77,0.036598944764418676],[119,10,78,0.028840601763623235],[119,10,79,0.022449664515870865],[119,11,64,0.640909479988529],[119,11,65,0.5632281550103665],[119,11,66,0.4937249336274194],[119,11,67,0.4316812396563693],[119,11,68,0.3764263726604503],[119,11,69,0.3273358119197263],[119,11,70,0.2838294457381963],[119,11,71,0.2453697397667789],[119,11,72,0.21145985771474113],[119,11,73,0.1816417474466378],[119,11,74,0.15549420501488742],[119,11,75,0.13263092863855722],[119,11,76,0.11269857404376105],[119,11,77,0.09537482192558325],[119,11,78,0.08036646756764577],[119,11,79,0.06740754188936891],[119,12,64,0.961657726174465],[119,12,65,0.859295169667724],[119,12,66,0.7666573108633348],[119,12,67,0.682955881913731],[119,12,68,0.6074516018112021],[119,12,69,0.5394525941941856],[119,12,70,0.4783127238878535],[119,12,71,0.4234298656003619],[119,12,72,0.37424411791725737],[119,12,73,0.33023597539589905],[119,12,74,0.2909244711564893],[119,12,75,0.25586530186351464],[119,12,76,0.22464894644127248],[119,12,77,0.19689878926227775],[119,12,78,0.1722692578717689],[119,12,79,0.15044398460076505],[119,13,64,1.0],[119,13,65,1.0],[119,13,66,1.0],[119,13,67,1.0],[119,13,68,0.9177116188793271],[119,13,69,0.8277303650410024],[119,13,70,0.7459640709522891],[119,13,71,0.6717455862323684],[119,13,72,0.6044514006595185],[119,13,73,0.5434998996453542],[119,13,74,0.4883495827444135],[119,13,75,0.4384972569758675],[119,13,76,0.3934762162290953],[119,13,77,0.3528544174712389],[119,13,78,0.31623266384682747],[119,13,79,0.2832428041041292],[119,14,64,1.0],[119,14,65,1.0],[119,14,66,1.0],[119,14,67,1.0],[119,14,68,1.0],[119,14,69,1.0],[119,14,70,1.0],[119,14,71,1.0],[119,14,72,0.9137645711444102],[119,14,73,0.833116506381763],[119,14,74,0.7594526467668422],[119,14,75,0.6922100215801852],[119,14,76,0.6308637314411998],[119,14,77,0.5749251748275347],[119,14,78,0.5239402738200383],[119,14,79,0.4774877085899187],[119,15,64,1.0],[119,15,65,1.0],[119,15,66,1.0],[119,15,67,1.0],[119,15,68,1.0],[119,15,69,1.0],[119,15,70,1.0],[119,15,71,1.0],[119,15,72,1.0],[119,15,73,1.0],[119,15,74,1.0],[119,15,75,1.0],[119,15,76,0.9484947380510448],[119,15,77,0.8747944271185853],[119,15,78,0.8070755732058262],[119,15,79,0.7448623029126283],[119,16,64,1.0],[119,16,65,1.0],[119,16,66,1.0],[119,16,67,1.0],[119,16,68,1.0],[119,16,69,1.0],[119,16,70,1.0],[119,16,71,1.0],[119,16,72,1.0],[119,16,73,1.0],[119,16,74,1.0],[119,16,75,1.0],[119,16,76,1.0],[119,16,77,1.0],[119,16,78,1.0],[119,16,79,1.0],[119,17,64,1.0],[119,17,65,1.0],[119,17,66,1.0],[119,17,67,1.0],[119,17,68,1.0],[119,17,69,1.0],[119,17,70,1.0],[119,17,71,1.0],[119,17,72,1.0],[119,17,73,1.0],[119,17,74,1.0],[119,17,75,1.0],[119,17,76,1.0],[119,17,77,1.0],[119,17,78,1.0],[119,17,79,1.0],[119,18,64,1.0],[119,18,65,1.0],[119,18,66,1.0],[119,18,67,1.0],[119,18,68,1.0],[119,18,69,1.0],[119,18,70,1.0],[119,18,71,1.0],[119,18,72,1.0],[119,18,73,1.0],[119,18,74,1.0],[119,18,75,1.0],[119,18,76,1.0],[119,18,77,1.0],[119,18,78,1.0],[119,18,79,1.0],[119,19,64,1.0],[119,19,65,1.0],[119,19,66,1.0],[119,19,67,1.0],[119,19,68,1.0],[119,19,69,1.0],[119,19,70,1.0],[119,19,71,1.0],[119,19,72,1.0],[119,19,73,1.0],[119,19,74,1.0],[119,19,75,1.0],[119,19,76,1.0],[119,19,77,1.0],[119,19,78,1.0],[119,19,79,1.0],[119,20,64,1.0],[119,20,65,1.0],[119,20,66,1.0],[119,20,67,1.0],[119,20,68,1.0],[119,20,69,1.0],[119,20,70,1.0],[119,20,71,1.0],[119,20,72,1.0],[119,20,73,1.0],[119,20,74,1.0],[119,20,75,1.0],[119,20,76,1.0],[119,20,77,1.0],[119,20,78,1.0],[119,20,79,1.0],[119,21,64,1.0],[119,21,65,1.0],[119,21,66,1.0],[119,21,67,1.0],[119,21,68,1.0],[119,21,69,1.0],[119,21,70,1.0],[119,21,71,1.0],[119,21,72,1.0],[119,21,73,1.0],[119,21,74,1.0],[119,21,75,1.0],[119,21,76,1.0],[119,21,77,1.0],[119,21,78,1.0],[119,21,79,1.0],[119,22,64,1.0],[119,22,65,1.0],[119,22,66,1.0],[119,22,67,1.0],[119,22,68,1.0],[119,22,69,1.0],[119,22,70,1.0],[119,22,71,1.0],[119,22,72,1.0],[119,22,73,1.0],[119,22,74,1.0],[119,22,75,1.0],[119,22,76,1.0],[119,22,77,1.0],[119,22,78,1.0],[119,22,79,1.0],[119,23,64,1.0],[119,23,65,1.0],[119,23,66,1.0],[119,23,67,1.0],[119,23,68,1.0],[119,23,69,1.0],[119,23,70,1.0],[119,23,71,1.0],[119,23,72,1.0],[119,23,73,1.0],[119,23,74,1.0],[119,23,75,1.0],[119,23,76,1.0],[119,23,77,1.0],[119,23,78,1.0],[119,23,79,1.0],[119,24,64,1.0],[119,24,65,1.0],[119,24,66,1.0],[119,24,67,1.0],[119,24,68,1.0],[119,24,69,1.0],[119,24,70,1.0],[119,24,71,1.0],[119,24,72,1.0],[119,24,73,1.0],[119,24,74,1.0],[119,24,75,1.0],[119,24,76,1.0],[119,24,77,1.0],[119,24,78,1.0],[119,24,79,1.0],[119,25,64,1.0],[119,25,65,1.0],[119,25,66,1.0],[119,25,67,1.0],[119,25,68,1.0],[119,25,69,1.0],[119,25,70,1.0],[119,25,71,1.0],[119,25,72,1.0],[119,25,73,1.0],[119,25,74,1.0],[119,25,75,1.0],[119,25,76,1.0],[119,25,77,1.0],[119,25,78,1.0],[119,25,79,1.0],[119,26,64,1.0],[119,26,65,1.0],[119,26,66,1.0],[119,26,67,1.0],[119,26,68,1.0],[119,26,69,1.0],[119,26,70,1.0],[119,26,71,1.0],[119,26,72,1.0],[119,26,73,1.0],[119,26,74,1.0],[119,26,75,1.0],[119,26,76,1.0],[119,26,77,1.0],[119,26,78,1.0],[119,26,79,1.0],[119,27,64,1.0],[119,27,65,1.0],[119,27,66,1.0],[119,27,67,1.0],[119,27,68,1.0],[119,27,69,1.0],[119,27,70,1.0],[119,27,71,1.0],[119,27,72,1.0],[119,27,73,1.0],[119,27,74,1.0],[119,27,75,1.0],[119,27,76,1.0],[119,27,77,1.0],[119,27,78,1.0],[119,27,79,1.0],[119,28,64,1.0],[119,28,65,1.0],[119,28,66,1.0],[119,28,67,1.0],[119,28,68,1.0],[119,28,69,1.0],[119,28,70,1.0],[119,28,71,1.0],[119,28,72,1.0],[119,28,73,1.0],[119,28,74,1.0],[119,28,75,1.0],[119,28,76,1.0],[119,28,77,1.0],[119,28,78,1.0],[119,28,79,1.0],[119,29,64,1.0],[119,29,65,1.0],[119,29,66,1.0],[119,29,67,1.0],[119,29,68,1.0],[119,29,69,1.0],[119,29,70,1.0],[119,29,71,1.0],[119,29,72,1.0],[119,29,73,1.0],[119,29,74,1.0],[119,29,75,1.0],[119,29,76,1.0],[119,29,77,1.0],[119,29,78,1.0],[119,29,79,1.0],[119,30,64,1.0],[119,30,65,1.0],[119,30,66,1.0],[119,30,67,1.0],[119,30,68,1.0],[119,30,69,1.0],[119,30,70,1.0],[119,30,71,1.0],[119,30,72,1.0],[119,30,73,1.0],[119,30,74,1.0],[119,30,75,1.0],[119,30,76,1.0],[119,30,77,1.0],[119,30,78,1.0],[119,30,79,1.0],[119,31,64,1.0],[119,31,65,1.0],[119,31,66,1.0],[119,31,67,1.0],[119,31,68,1.0],[119,31,69,1.0],[119,31,70,1.0],[119,31,71,1.0],[119,31,72,1.0],[119,31,73,1.0],[119,31,74,1.0],[119,31,75,1.0],[119,31,76,1.0],[119,31,77,1.0],[119,31,78,1.0],[119,31,79,1.0],[119,32,64,1.0],[119,32,65,1.0],[119,32,66,1.0],[119,32,67,1.0],[119,32,68,1.0],[119,32,69,1.0],[119,32,70,1.0],[119,32,71,1.0],[119,32,72,1.0],[119,32,73,1.0],[119,32,74,1.0],[119,32,75,1.0],[119,32,76,1.0],[119,32,77,1.0],[119,32,78,1.0],[119,32,79,1.0],[119,33,64,1.0],[119,33,65,1.0],[119,33,66,1.0],[119,33,67,1.0],[119,33,68,1.0],[119,33,69,1.0],[119,33,70,1.0],[119,33,71,1.0],[119,33,72,1.0],[119,33,73,1.0],[119,33,74,1.0],[119,33,75,1.0],[119,33,76,1.0],[119,33,77,1.0],[119,33,78,1.0],[119,33,79,1.0],[119,34,64,1.0],[119,34,65,1.0],[119,34,66,1.0],[119,34,67,1.0],[119,34,68,1.0],[119,34,69,1.0],[119,34,70,1.0],[119,34,71,1.0],[119,34,72,1.0],[119,34,73,1.0],[119,34,74,1.0],[119,34,75,1.0],[119,34,76,1.0],[119,34,77,1.0],[119,34,78,1.0],[119,34,79,1.0],[119,35,64,1.0],[119,35,65,1.0],[119,35,66,1.0],[119,35,67,1.0],[119,35,68,1.0],[119,35,69,1.0],[119,35,70,1.0],[119,35,71,1.0],[119,35,72,1.0],[119,35,73,1.0],[119,35,74,1.0],[119,35,75,1.0],[119,35,76,1.0],[119,35,77,1.0],[119,35,78,1.0],[119,35,79,1.0],[119,36,64,1.0],[119,36,65,1.0],[119,36,66,1.0],[119,36,67,1.0],[119,36,68,1.0],[119,36,69,1.0],[119,36,70,1.0],[119,36,71,1.0],[119,36,72,1.0],[119,36,73,1.0],[119,36,74,1.0],[119,36,75,1.0],[119,36,76,1.0],[119,36,77,1.0],[119,36,78,1.0],[119,36,79,1.0],[119,37,64,1.0],[119,37,65,1.0],[119,37,66,1.0],[119,37,67,1.0],[119,37,68,1.0],[119,37,69,1.0],[119,37,70,1.0],[119,37,71,1.0],[119,37,72,1.0],[119,37,73,1.0],[119,37,74,1.0],[119,37,75,1.0],[119,37,76,1.0],[119,37,77,1.0],[119,37,78,1.0],[119,37,79,1.0],[119,38,64,1.0],[119,38,65,1.0],[119,38,66,1.0],[119,38,67,1.0],[119,38,68,1.0],[119,38,69,1.0],[119,38,70,1.0],[119,38,71,1.0],[119,38,72,1.0],[119,38,73,1.0],[119,38,74,1.0],[119,38,75,1.0],[119,38,76,1.0],[119,38,77,1.0],[119,38,78,1.0],[119,38,79,1.0],[119,39,64,1.0],[119,39,65,1.0],[119,39,66,1.0],[119,39,67,1.0],[119,39,68,1.0],[119,39,69,1.0],[119,39,70,1.0],[119,39,71,1.0],[119,39,72,1.0],[119,39,73,1.0],[119,39,74,1.0],[119,39,75,1.0],[119,39,76,1.0],[119,39,77,1.0],[119,39,78,1.0],[119,39,79,1.0],[119,40,64,1.0],[119,40,65,1.0],[119,40,66,1.0],[119,40,67,1.0],[119,40,68,1.0],[119,40,69,1.0],[119,40,70,1.0],[119,40,71,1.0],[119,40,72,1.0],[119,40,73,1.0],[119,40,74,1.0],[119,40,75,1.0],[119,40,76,1.0],[119,40,77,1.0],[119,40,78,1.0],[119,40,79,1.0],[119,41,64,1.0],[119,41,65,1.0],[119,41,66,1.0],[119,41,67,1.0],[119,41,68,1.0],[119,41,69,1.0],[119,41,70,1.0],[119,41,71,1.0],[119,41,72,1.0],[119,41,73,1.0],[119,41,74,1.0],[119,41,75,1.0],[119,41,76,1.0],[119,41,77,1.0],[119,41,78,1.0],[119,41,79,1.0],[119,42,64,1.0],[119,42,65,1.0],[119,42,66,1.0],[119,42,67,1.0],[119,42,68,1.0],[119,42,69,1.0],[119,42,70,1.0],[119,42,71,1.0],[119,42,72,1.0],[119,42,73,1.0],[119,42,74,1.0],[119,42,75,1.0],[119,42,76,1.0],[119,42,77,1.0],[119,42,78,1.0],[119,42,79,1.0],[119,43,64,1.0],[119,43,65,1.0],[119,43,66,1.0],[119,43,67,1.0],[119,43,68,1.0],[119,43,69,1.0],[119,43,70,1.0],[119,43,71,1.0],[119,43,72,1.0],[119,43,73,1.0],[119,43,74,1.0],[119,43,75,1.0],[119,43,76,1.0],[119,43,77,1.0],[119,43,78,1.0],[119,43,79,1.0],[119,44,64,1.0],[119,44,65,1.0],[119,44,66,1.0],[119,44,67,1.0],[119,44,68,1.0],[119,44,69,1.0],[119,44,70,1.0],[119,44,71,1.0],[119,44,72,1.0],[119,44,73,1.0],[119,44,74,1.0],[119,44,75,1.0],[119,44,76,1.0],[119,44,77,1.0],[119,44,78,1.0],[119,44,79,1.0],[119,45,64,1.0],[119,45,65,1.0],[119,45,66,1.0],[119,45,67,1.0],[119,45,68,1.0],[119,45,69,1.0],[119,45,70,1.0],[119,45,71,1.0],[119,45,72,1.0],[119,45,73,1.0],[119,45,74,1.0],[119,45,75,1.0],[119,45,76,1.0],[119,45,77,1.0],[119,45,78,1.0],[119,45,79,1.0],[119,46,64,1.0],[119,46,65,1.0],[119,46,66,1.0],[119,46,67,1.0],[119,46,68,1.0],[119,46,69,1.0],[119,46,70,1.0],[119,46,71,1.0],[119,46,72,1.0],[119,46,73,1.0],[119,46,74,1.0],[119,46,75,1.0],[119,46,76,1.0],[119,46,77,1.0],[119,46,78,1.0],[119,46,79,1.0],[119,47,64,1.0],[119,47,65,1.0],[119,47,66,1.0],[119,47,67,1.0],[119,47,68,1.0],[119,47,69,1.0],[119,47,70,1.0],[119,47,71,1.0],[119,47,72,1.0],[119,47,73,1.0],[119,47,74,1.0],[119,47,75,1.0],[119,47,76,1.0],[119,47,77,1.0],[119,47,78,1.0],[119,47,79,1.0],[119,48,64,1.0],[119,48,65,1.0],[119,48,66,1.0],[119,48,67,1.0],[119,48,68,1.0],[119,48,69,1.0],[119,48,70,1.0],[119,48,71,1.0],[119,48,72,1.0],[119,48,73,1.0],[119,48,74,1.0],[119,48,75,1.0],[119,48,76,1.0],[119,48,77,1.0],[119,48,78,1.0],[119,48,79,1.0],[119,49,64,1.0],[119,49,65,1.0],[119,49,66,1.0],[119,49,67,1.0],[119,49,68,1.0],[119,49,69,1.0],[119,49,70,1.0],[119,49,71,1.0],[119,49,72,1.0],[119,49,73,1.0],[119,49,74,1.0],[119,49,75,1.0],[119,49,76,1.0],[119,49,77,1.0],[119,49,78,1.0],[119,49,79,1.0],[119,50,64,1.0],[119,50,65,1.0],[119,50,66,1.0],[119,50,67,1.0],[119,50,68,1.0],[119,50,69,1.0],[119,50,70,1.0],[119,50,71,1.0],[119,50,72,1.0],[119,50,73,1.0],[119,50,74,1.0],[119,50,75,1.0],[119,50,76,1.0],[119,50,77,1.0],[119,50,78,1.0],[119,50,79,1.0],[119,51,64,1.0],[119,51,65,1.0],[119,51,66,1.0],[119,51,67,1.0],[119,51,68,1.0],[119,51,69,1.0],[119,51,70,1.0],[119,51,71,1.0],[119,51,72,1.0],[119,51,73,1.0],[119,51,74,1.0],[119,51,75,1.0],[119,51,76,1.0],[119,51,77,1.0],[119,51,78,1.0],[119,51,79,1.0],[119,52,64,1.0],[119,52,65,1.0],[119,52,66,1.0],[119,52,67,1.0],[119,52,68,1.0],[119,52,69,1.0],[119,52,70,1.0],[119,52,71,1.0],[119,52,72,1.0],[119,52,73,1.0],[119,52,74,1.0],[119,52,75,1.0],[119,52,76,1.0],[119,52,77,1.0],[119,52,78,1.0],[119,52,79,1.0],[119,53,64,1.0],[119,53,65,1.0],[119,53,66,1.0],[119,53,67,1.0],[119,53,68,1.0],[119,53,69,1.0],[119,53,70,1.0],[119,53,71,1.0],[119,53,72,1.0],[119,53,73,1.0],[119,53,74,1.0],[119,53,75,1.0],[119,53,76,1.0],[119,53,77,1.0],[119,53,78,1.0],[119,53,79,1.0],[119,54,64,1.0],[119,54,65,1.0],[119,54,66,1.0],[119,54,67,1.0],[119,54,68,1.0],[119,54,69,1.0],[119,54,70,1.0],[119,54,71,1.0],[119,54,72,1.0],[119,54,73,1.0],[119,54,74,1.0],[119,54,75,1.0],[119,54,76,1.0],[119,54,77,1.0],[119,54,78,1.0],[119,54,79,1.0],[119,55,64,1.0],[119,55,65,1.0],[119,55,66,1.0],[119,55,67,1.0],[119,55,68,1.0],[119,55,69,1.0],[119,55,70,1.0],[119,55,71,1.0],[119,55,72,1.0],[119,55,73,1.0],[119,55,74,1.0],[119,55,75,1.0],[119,55,76,1.0],[119,55,77,1.0],[119,55,78,1.0],[119,55,79,1.0],[119,56,64,1.0],[119,56,65,1.0],[119,56,66,1.0],[119,56,67,1.0],[119,56,68,1.0],[119,56,69,1.0],[119,56,70,1.0],[119,56,71,1.0],[119,56,72,1.0],[119,56,73,1.0],[119,56,74,1.0],[119,56,75,1.0],[119,56,76,1.0],[119,56,77,1.0],[119,56,78,1.0],[119,56,79,1.0],[119,57,64,1.0],[119,57,65,1.0],[119,57,66,1.0],[119,57,67,1.0],[119,57,68,1.0],[119,57,69,1.0],[119,57,70,1.0],[119,57,71,1.0],[119,57,72,1.0],[119,57,73,1.0],[119,57,74,1.0],[119,57,75,1.0],[119,57,76,1.0],[119,57,77,1.0],[119,57,78,1.0],[119,57,79,1.0],[119,58,64,1.0],[119,58,65,1.0],[119,58,66,1.0],[119,58,67,1.0],[119,58,68,1.0],[119,58,69,1.0],[119,58,70,1.0],[119,58,71,1.0],[119,58,72,1.0],[119,58,73,1.0],[119,58,74,1.0],[119,58,75,1.0],[119,58,76,1.0],[119,58,77,1.0],[119,58,78,1.0],[119,58,79,1.0],[119,59,64,1.0],[119,59,65,1.0],[119,59,66,1.0],[119,59,67,1.0],[119,59,68,1.0],[119,59,69,1.0],[119,59,70,1.0],[119,59,71,1.0],[119,59,72,1.0],[119,59,73,1.0],[119,59,74,1.0],[119,59,75,1.0],[119,59,76,1.0],[119,59,77,1.0],[119,59,78,1.0],[119,59,79,1.0],[119,60,64,1.0],[119,60,65,1.0],[119,60,66,1.0],[119,60,67,1.0],[119,60,68,1.0],[119,60,69,1.0],[119,60,70,1.0],[119,60,71,1.0],[119,60,72,1.0],[119,60,73,1.0],[119,60,74,1.0],[119,60,75,1.0],[119,60,76,1.0],[119,60,77,1.0],[119,60,78,1.0],[119,60,79,1.0],[119,61,64,1.0],[119,61,65,1.0],[119,61,66,1.0],[119,61,67,1.0],[119,61,68,1.0],[119,61,69,1.0],[119,61,70,1.0],[119,61,71,1.0],[119,61,72,1.0],[119,61,73,1.0],[119,61,74,1.0],[119,61,75,1.0],[119,61,76,1.0],[119,61,77,1.0],[119,61,78,1.0],[119,61,79,1.0],[119,62,64,1.0],[119,62,65,1.0],[119,62,66,1.0],[119,62,67,1.0],[119,62,68,1.0],[119,62,69,1.0],[119,62,70,1.0],[119,62,71,1.0],[119,62,72,1.0],[119,62,73,1.0],[119,62,74,1.0],[119,62,75,1.0],[119,62,76,1.0],[119,62,77,1.0],[119,62,78,1.0],[119,62,79,1.0],[119,63,64,1.0],[119,63,65,1.0],[119,63,66,1.0],[119,63,67,1.0],[119,63,68,1.0],[119,63,69,1.0],[119,63,70,1.0],[119,63,71,1.0],[119,63,72,1.0],[119,63,73,1.0],[119,63,74,1.0],[119,63,75,1.0],[119,63,76,1.0],[119,63,77,1.0],[119,63,78,1.0],[119,63,79,1.0],[119,64,64,1.0],[119,64,65,1.0],[119,64,66,1.0],[119,64,67,1.0],[119,64,68,1.0],[119,64,69,1.0],[119,64,70,1.0],[119,64,71,1.0],[119,64,72,1.0],[119,64,73,1.0],[119,64,74,1.0],[119,64,75,1.0],[119,64,76,1.0],[119,64,77,1.0],[119,64,78,1.0],[119,64,79,1.0],[119,65,64,1.0],[119,65,65,1.0],[119,65,66,1.0],[119,65,67,1.0],[119,65,68,1.0],[119,65,69,1.0],[119,65,70,1.0],[119,65,71,1.0],[119,65,72,1.0],[119,65,73,1.0],[119,65,74,1.0],[119,65,75,1.0],[119,65,76,1.0],[119,65,77,1.0],[119,65,78,1.0],[119,65,79,1.0],[119,66,64,1.0],[119,66,65,1.0],[119,66,66,1.0],[119,66,67,1.0],[119,66,68,1.0],[119,66,69,1.0],[119,66,70,1.0],[119,66,71,1.0],[119,66,72,1.0],[119,66,73,1.0],[119,66,74,1.0],[119,66,75,1.0],[119,66,76,1.0],[119,66,77,1.0],[119,66,78,1.0],[119,66,79,1.0],[119,67,64,1.0],[119,67,65,1.0],[119,67,66,1.0],[119,67,67,1.0],[119,67,68,1.0],[119,67,69,1.0],[119,67,70,1.0],[119,67,71,1.0],[119,67,72,1.0],[119,67,73,1.0],[119,67,74,1.0],[119,67,75,1.0],[119,67,76,1.0],[119,67,77,1.0],[119,67,78,1.0],[119,67,79,1.0],[119,68,64,1.0],[119,68,65,1.0],[119,68,66,1.0],[119,68,67,1.0],[119,68,68,1.0],[119,68,69,1.0],[119,68,70,1.0],[119,68,71,1.0],[119,68,72,1.0],[119,68,73,1.0],[119,68,74,1.0],[119,68,75,1.0],[119,68,76,1.0],[119,68,77,1.0],[119,68,78,1.0],[119,68,79,1.0],[119,69,64,1.0],[119,69,65,1.0],[119,69,66,1.0],[119,69,67,1.0],[119,69,68,1.0],[119,69,69,1.0],[119,69,70,1.0],[119,69,71,1.0],[119,69,72,1.0],[119,69,73,1.0],[119,69,74,1.0],[119,69,75,1.0],[119,69,76,1.0],[119,69,77,1.0],[119,69,78,1.0],[119,69,79,1.0],[119,70,64,1.0],[119,70,65,1.0],[119,70,66,1.0],[119,70,67,1.0],[119,70,68,1.0],[119,70,69,1.0],[119,70,70,1.0],[119,70,71,1.0],[119,70,72,1.0],[119,70,73,1.0],[119,70,74,1.0],[119,70,75,1.0],[119,70,76,1.0],[119,70,77,1.0],[119,70,78,1.0],[119,70,79,1.0],[119,71,64,1.0],[119,71,65,1.0],[119,71,66,1.0],[119,71,67,1.0],[119,71,68,1.0],[119,71,69,1.0],[119,71,70,1.0],[119,71,71,1.0],[119,71,72,1.0],[119,71,73,1.0],[119,71,74,1.0],[119,71,75,1.0],[119,71,76,1.0],[119,71,77,1.0],[119,71,78,1.0],[119,71,79,1.0],[119,72,64,1.0],[119,72,65,1.0],[119,72,66,1.0],[119,72,67,1.0],[119,72,68,1.0],[119,72,69,1.0],[119,72,70,1.0],[119,72,71,1.0],[119,72,72,1.0],[119,72,73,1.0],[119,72,74,1.0],[119,72,75,1.0],[119,72,76,1.0],[119,72,77,1.0],[119,72,78,1.0],[119,72,79,1.0],[119,73,64,1.0],[119,73,65,1.0],[119,73,66,1.0],[119,73,67,1.0],[119,73,68,1.0],[119,73,69,1.0],[119,73,70,1.0],[119,73,71,1.0],[119,73,72,1.0],[119,73,73,1.0],[119,73,74,1.0],[119,73,75,1.0],[119,73,76,1.0],[119,73,77,1.0],[119,73,78,1.0],[119,73,79,1.0],[119,74,64,1.0],[119,74,65,1.0],[119,74,66,1.0],[119,74,67,1.0],[119,74,68,1.0],[119,74,69,1.0],[119,74,70,1.0],[119,74,71,1.0],[119,74,72,1.0],[119,74,73,1.0],[119,74,74,1.0],[119,74,75,1.0],[119,74,76,1.0],[119,74,77,1.0],[119,74,78,1.0],[119,74,79,1.0],[119,75,64,1.0],[119,75,65,1.0],[119,75,66,1.0],[119,75,67,1.0],[119,75,68,1.0],[119,75,69,1.0],[119,75,70,1.0],[119,75,71,1.0],[119,75,72,1.0],[119,75,73,1.0],[119,75,74,1.0],[119,75,75,1.0],[119,75,76,1.0],[119,75,77,1.0],[119,75,78,1.0],[119,75,79,1.0],[119,76,64,1.0],[119,76,65,1.0],[119,76,66,1.0],[119,76,67,1.0],[119,76,68,1.0],[119,76,69,1.0],[119,76,70,1.0],[119,76,71,1.0],[119,76,72,1.0],[119,76,73,1.0],[119,76,74,1.0],[119,76,75,1.0],[119,76,76,1.0],[119,76,77,1.0],[119,76,78,1.0],[119,76,79,1.0],[119,77,64,1.0],[119,77,65,1.0],[119,77,66,1.0],[119,77,67,1.0],[119,77,68,1.0],[119,77,69,1.0],[119,77,70,1.0],[119,77,71,1.0],[119,77,72,1.0],[119,77,73,1.0],[119,77,74,1.0],[119,77,75,1.0],[119,77,76,1.0],[119,77,77,1.0],[119,77,78,1.0],[119,77,79,1.0],[119,78,64,1.0],[119,78,65,1.0],[119,78,66,1.0],[119,78,67,1.0],[119,78,68,1.0],[119,78,69,1.0],[119,78,70,1.0],[119,78,71,1.0],[119,78,72,1.0],[119,78,73,1.0],[119,78,74,1.0],[119,78,75,1.0],[119,78,76,1.0],[119,78,77,1.0],[119,78,78,1.0],[119,78,79,1.0],[119,79,64,1.0],[119,79,65,1.0],[119,79,66,1.0],[119,79,67,1.0],[119,79,68,1.0],[119,79,69,1.0],[119,79,70,1.0],[119,79,71,1.0],[119,79,72,1.0],[119,79,73,1.0],[119,79,74,1.0],[119,79,75,1.0],[119,79,76,1.0],[119,79,77,1.0],[119,79,78,1.0],[119,79,79,1.0],[119,80,64,1.0],[119,80,65,1.0],[119,80,66,1.0],[119,80,67,1.0],[119,80,68,1.0],[119,80,69,1.0],[119,80,70,1.0],[119,80,71,1.0],[119,80,72,1.0],[119,80,73,1.0],[119,80,74,1.0],[119,80,75,1.0],[119,80,76,1.0],[119,80,77,1.0],[119,80,78,1.0],[119,80,79,1.0],[119,81,64,1.0],[119,81,65,1.0],[119,81,66,1.0],[119,81,67,1.0],[119,81,68,1.0],[119,81,69,1.0],[119,81,70,1.0],[119,81,71,1.0],[119,81,72,1.0],[119,81,73,1.0],[119,81,74,1.0],[119,81,75,1.0],[119,81,76,1.0],[119,81,77,1.0],[119,81,78,1.0],[119,81,79,1.0],[119,82,64,1.0],[119,82,65,1.0],[119,82,66,1.0],[119,82,67,1.0],[119,82,68,1.0],[119,82,69,1.0],[119,82,70,1.0],[119,82,71,1.0],[119,82,72,1.0],[119,82,73,1.0],[119,82,74,1.0],[119,82,75,1.0],[119,82,76,1.0],[119,82,77,1.0],[119,82,78,1.0],[119,82,79,1.0],[119,83,64,1.0],[119,83,65,1.0],[119,83,66,1.0],[119,83,67,1.0],[119,83,68,1.0],[119,83,69,1.0],[119,83,70,1.0],[119,83,71,1.0],[119,83,72,1.0],[119,83,73,1.0],[119,83,74,1.0],[119,83,75,1.0],[119,83,76,1.0],[119,83,77,1.0],[119,83,78,1.0],[119,83,79,1.0],[119,84,64,1.0],[119,84,65,1.0],[119,84,66,1.0],[119,84,67,1.0],[119,84,68,1.0],[119,84,69,1.0],[119,84,70,1.0],[119,84,71,1.0],[119,84,72,1.0],[119,84,73,1.0],[119,84,74,1.0],[119,84,75,1.0],[119,84,76,1.0],[119,84,77,1.0],[119,84,78,1.0],[119,84,79,1.0],[119,85,64,1.0],[119,85,65,1.0],[119,85,66,1.0],[119,85,67,1.0],[119,85,68,1.0],[119,85,69,1.0],[119,85,70,1.0],[119,85,71,1.0],[119,85,72,1.0],[119,85,73,1.0],[119,85,74,1.0],[119,85,75,1.0],[119,85,76,1.0],[119,85,77,1.0],[119,85,78,1.0],[119,85,79,1.0],[119,86,64,1.0],[119,86,65,1.0],[119,86,66,1.0],[119,86,67,1.0],[119,86,68,1.0],[119,86,69,1.0],[119,86,70,1.0],[119,86,71,1.0],[119,86,72,1.0],[119,86,73,1.0],[119,86,74,1.0],[119,86,75,1.0],[119,86,76,1.0],[119,86,77,1.0],[119,86,78,1.0],[119,86,79,1.0],[119,87,64,1.0],[119,87,65,1.0],[119,87,66,1.0],[119,87,67,1.0],[119,87,68,1.0],[119,87,69,1.0],[119,87,70,1.0],[119,87,71,1.0],[119,87,72,1.0],[119,87,73,1.0],[119,87,74,1.0],[119,87,75,1.0],[119,87,76,1.0],[119,87,77,1.0],[119,87,78,1.0],[119,87,79,1.0],[119,88,64,1.0],[119,88,65,1.0],[119,88,66,1.0],[119,88,67,1.0],[119,88,68,1.0],[119,88,69,1.0],[119,88,70,1.0],[119,88,71,1.0],[119,88,72,1.0],[119,88,73,1.0],[119,88,74,1.0],[119,88,75,1.0],[119,88,76,1.0],[119,88,77,1.0],[119,88,78,1.0],[119,88,79,1.0],[119,89,64,1.0],[119,89,65,1.0],[119,89,66,1.0],[119,89,67,1.0],[119,89,68,1.0],[119,89,69,1.0],[119,89,70,1.0],[119,89,71,1.0],[119,89,72,1.0],[119,89,73,1.0],[119,89,74,1.0],[119,89,75,1.0],[119,89,76,1.0],[119,89,77,1.0],[119,89,78,1.0],[119,89,79,1.0],[119,90,64,1.0],[119,90,65,1.0],[119,90,66,1.0],[119,90,67,1.0],[119,90,68,1.0],[119,90,69,1.0],[119,90,70,1.0],[119,90,71,1.0],[119,90,72,1.0],[119,90,73,1.0],[119,90,74,1.0],[119,90,75,1.0],[119,90,76,1.0],[119,90,77,1.0],[119,90,78,1.0],[119,90,79,1.0],[119,91,64,1.0],[119,91,65,1.0],[119,91,66,1.0],[119,91,67,1.0],[119,91,68,1.0],[119,91,69,1.0],[119,91,70,1.0],[119,91,71,1.0],[119,91,72,1.0],[119,91,73,1.0],[119,91,74,1.0],[119,91,75,1.0],[119,91,76,1.0],[119,91,77,1.0],[119,91,78,1.0],[119,91,79,1.0],[119,92,64,1.0],[119,92,65,1.0],[119,92,66,1.0],[119,92,67,1.0],[119,92,68,1.0],[119,92,69,1.0],[119,92,70,1.0],[119,92,71,1.0],[119,92,72,1.0],[119,92,73,1.0],[119,92,74,1.0],[119,92,75,1.0],[119,92,76,1.0],[119,92,77,1.0],[119,92,78,1.0],[119,92,79,1.0],[119,93,64,1.0],[119,93,65,1.0],[119,93,66,1.0],[119,93,67,1.0],[119,93,68,1.0],[119,93,69,1.0],[119,93,70,1.0],[119,93,71,1.0],[119,93,72,1.0],[119,93,73,1.0],[119,93,74,1.0],[119,93,75,1.0],[119,93,76,1.0],[119,93,77,1.0],[119,93,78,1.0],[119,93,79,1.0],[119,94,64,1.0],[119,94,65,1.0],[119,94,66,1.0],[119,94,67,1.0],[119,94,68,1.0],[119,94,69,1.0],[119,94,70,1.0],[119,94,71,1.0],[119,94,72,1.0],[119,94,73,1.0],[119,94,74,1.0],[119,94,75,1.0],[119,94,76,1.0],[119,94,77,1.0],[119,94,78,1.0],[119,94,79,1.0],[119,95,64,1.0],[119,95,65,1.0],[119,95,66,1.0],[119,95,67,1.0],[119,95,68,1.0],[119,95,69,1.0],[119,95,70,1.0],[119,95,71,1.0],[119,95,72,1.0],[119,95,73,1.0],[119,95,74,1.0],[119,95,75,1.0],[119,95,76,1.0],[119,95,77,1.0],[119,95,78,1.0],[119,95,79,1.0],[119,96,64,1.0],[119,96,65,1.0],[119,96,66,1.0],[119,96,67,1.0],[119,96,68,1.0],[119,96,69,1.0],[119,96,70,1.0],[119,96,71,1.0],[119,96,72,1.0],[119,96,73,1.0],[119,96,74,1.0],[119,96,75,1.0],[119,96,76,1.0],[119,96,77,1.0],[119,96,78,1.0],[119,96,79,1.0],[119,97,64,1.0],[119,97,65,1.0],[119,97,66,1.0],[119,97,67,1.0],[119,97,68,1.0],[119,97,69,1.0],[119,97,70,1.0],[119,97,71,1.0],[119,97,72,1.0],[119,97,73,1.0],[119,97,74,1.0],[119,97,75,1.0],[119,97,76,1.0],[119,97,77,1.0],[119,97,78,1.0],[119,97,79,1.0],[119,98,64,1.0],[119,98,65,1.0],[119,98,66,1.0],[119,98,67,1.0],[119,98,68,1.0],[119,98,69,1.0],[119,98,70,1.0],[119,98,71,1.0],[119,98,72,1.0],[119,98,73,1.0],[119,98,74,1.0],[119,98,75,1.0],[119,98,76,1.0],[119,98,77,1.0],[119,98,78,1.0],[119,98,79,1.0],[119,99,64,1.0],[119,99,65,1.0],[119,99,66,1.0],[119,99,67,1.0],[119,99,68,1.0],[119,99,69,1.0],[119,99,70,1.0],[119,99,71,1.0],[119,99,72,1.0],[119,99,73,1.0],[119,99,74,1.0],[119,99,75,1.0],[119,99,76,1.0],[119,99,77,1.0],[119,99,78,1.0],[119,99,79,1.0],[119,100,64,1.0],[119,100,65,1.0],[119,100,66,1.0],[119,100,67,1.0],[119,100,68,1.0],[119,100,69,1.0],[119,100,70,1.0],[119,100,71,1.0],[119,100,72,1.0],[119,100,73,1.0],[119,100,74,1.0],[119,100,75,1.0],[119,100,76,1.0],[119,100,77,1.0],[119,100,78,1.0],[119,100,79,1.0],[119,101,64,1.0],[119,101,65,1.0],[119,101,66,1.0],[119,101,67,1.0],[119,101,68,1.0],[119,101,69,1.0],[119,101,70,1.0],[119,101,71,1.0],[119,101,72,1.0],[119,101,73,1.0],[119,101,74,1.0],[119,101,75,1.0],[119,101,76,1.0],[119,101,77,1.0],[119,101,78,1.0],[119,101,79,1.0],[119,102,64,1.0],[119,102,65,1.0],[119,102,66,1.0],[119,102,67,1.0],[119,102,68,1.0],[119,102,69,1.0],[119,102,70,1.0],[119,102,71,1.0],[119,102,72,1.0],[119,102,73,1.0],[119,102,74,1.0],[119,102,75,1.0],[119,102,76,1.0],[119,102,77,1.0],[119,102,78,1.0],[119,102,79,1.0],[119,103,64,1.0],[119,103,65,1.0],[119,103,66,1.0],[119,103,67,1.0],[119,103,68,1.0],[119,103,69,1.0],[119,103,70,1.0],[119,103,71,1.0],[119,103,72,1.0],[119,103,73,1.0],[119,103,74,1.0],[119,103,75,1.0],[119,103,76,1.0],[119,103,77,1.0],[119,103,78,1.0],[119,103,79,1.0],[119,104,64,1.0],[119,104,65,1.0],[119,104,66,1.0],[119,104,67,1.0],[119,104,68,1.0],[119,104,69,1.0],[119,104,70,1.0],[119,104,71,1.0],[119,104,72,1.0],[119,104,73,1.0],[119,104,74,1.0],[119,104,75,1.0],[119,104,76,1.0],[119,104,77,1.0],[119,104,78,1.0],[119,104,79,1.0],[119,105,64,1.0],[119,105,65,1.0],[119,105,66,1.0],[119,105,67,1.0],[119,105,68,1.0],[119,105,69,1.0],[119,105,70,1.0],[119,105,71,1.0],[119,105,72,1.0],[119,105,73,1.0],[119,105,74,1.0],[119,105,75,1.0],[119,105,76,1.0],[119,105,77,1.0],[119,105,78,1.0],[119,105,79,1.0],[119,106,64,1.0],[119,106,65,1.0],[119,106,66,1.0],[119,106,67,1.0],[119,106,68,1.0],[119,106,69,1.0],[119,106,70,1.0],[119,106,71,1.0],[119,106,72,1.0],[119,106,73,1.0],[119,106,74,1.0],[119,106,75,1.0],[119,106,76,1.0],[119,106,77,1.0],[119,106,78,1.0],[119,106,79,1.0],[119,107,64,1.0],[119,107,65,1.0],[119,107,66,1.0],[119,107,67,1.0],[119,107,68,1.0],[119,107,69,1.0],[119,107,70,1.0],[119,107,71,1.0],[119,107,72,1.0],[119,107,73,1.0],[119,107,74,1.0],[119,107,75,1.0],[119,107,76,1.0],[119,107,77,1.0],[119,107,78,1.0],[119,107,79,1.0],[119,108,64,1.0],[119,108,65,1.0],[119,108,66,1.0],[119,108,67,1.0],[119,108,68,1.0],[119,108,69,1.0],[119,108,70,1.0],[119,108,71,1.0],[119,108,72,1.0],[119,108,73,1.0],[119,108,74,1.0],[119,108,75,1.0],[119,108,76,1.0],[119,108,77,1.0],[119,108,78,1.0],[119,108,79,1.0],[119,109,64,1.0],[119,109,65,1.0],[119,109,66,1.0],[119,109,67,1.0],[119,109,68,1.0],[119,109,69,1.0],[119,109,70,1.0],[119,109,71,1.0],[119,109,72,1.0],[119,109,73,1.0],[119,109,74,1.0],[119,109,75,1.0],[119,109,76,1.0],[119,109,77,1.0],[119,109,78,1.0],[119,109,79,1.0],[119,110,64,1.0],[119,110,65,1.0],[119,110,66,1.0],[119,110,67,1.0],[119,110,68,1.0],[119,110,69,1.0],[119,110,70,1.0],[119,110,71,1.0],[119,110,72,1.0],[119,110,73,1.0],[119,110,74,1.0],[119,110,75,1.0],[119,110,76,1.0],[119,110,77,1.0],[119,110,78,1.0],[119,110,79,1.0],[119,111,64,1.0],[119,111,65,1.0],[119,111,66,1.0],[119,111,67,1.0],[119,111,68,1.0],[119,111,69,1.0],[119,111,70,1.0],[119,111,71,1.0],[119,111,72,1.0],[119,111,73,1.0],[119,111,74,1.0],[119,111,75,1.0],[119,111,76,1.0],[119,111,77,1.0],[119,111,78,1.0],[119,111,79,1.0],[119,112,64,1.0],[119,112,65,1.0],[119,112,66,1.0],[119,112,67,1.0],[119,112,68,1.0],[119,112,69,1.0],[119,112,70,1.0],[119,112,71,1.0],[119,112,72,1.0],[119,112,73,1.0],[119,112,74,1.0],[119,112,75,1.0],[119,112,76,1.0],[119,112,77,1.0],[119,112,78,1.0],[119,112,79,1.0],[119,113,64,1.0],[119,113,65,1.0],[119,113,66,1.0],[119,113,67,1.0],[119,113,68,1.0],[119,113,69,1.0],[119,113,70,1.0],[119,113,71,1.0],[119,113,72,1.0],[119,113,73,1.0],[119,113,74,1.0],[119,113,75,1.0],[119,113,76,1.0],[119,113,77,1.0],[119,113,78,1.0],[119,113,79,1.0],[119,114,64,1.0],[119,114,65,1.0],[119,114,66,1.0],[119,114,67,1.0],[119,114,68,1.0],[119,114,69,1.0],[119,114,70,1.0],[119,114,71,1.0],[119,114,72,1.0],[119,114,73,1.0],[119,114,74,1.0],[119,114,75,1.0],[119,114,76,1.0],[119,114,77,1.0],[119,114,78,1.0],[119,114,79,1.0],[119,115,64,1.0],[119,115,65,1.0],[119,115,66,1.0],[119,115,67,1.0],[119,115,68,1.0],[119,115,69,1.0],[119,115,70,1.0],[119,115,71,1.0],[119,115,72,1.0],[119,115,73,1.0],[119,115,74,1.0],[119,115,75,1.0],[119,115,76,1.0],[119,115,77,1.0],[119,115,78,1.0],[119,115,79,1.0],[119,116,64,1.0],[119,116,65,1.0],[119,116,66,1.0],[119,116,67,1.0],[119,116,68,1.0],[119,116,69,1.0],[119,116,70,1.0],[119,116,71,1.0],[119,116,72,1.0],[119,116,73,1.0],[119,116,74,1.0],[119,116,75,1.0],[119,116,76,1.0],[119,116,77,1.0],[119,116,78,1.0],[119,116,79,1.0],[119,117,64,1.0],[119,117,65,1.0],[119,117,66,1.0],[119,117,67,1.0],[119,117,68,1.0],[119,117,69,1.0],[119,117,70,1.0],[119,117,71,1.0],[119,117,72,1.0],[119,117,73,1.0],[119,117,74,1.0],[119,117,75,1.0],[119,117,76,1.0],[119,117,77,1.0],[119,117,78,1.0],[119,117,79,1.0],[119,118,64,1.0],[119,118,65,1.0],[119,118,66,1.0],[119,118,67,1.0],[119,118,68,1.0],[119,118,69,1.0],[119,118,70,1.0],[119,118,71,1.0],[119,118,72,1.0],[119,118,73,1.0],[119,118,74,1.0],[119,118,75,1.0],[119,118,76,1.0],[119,118,77,1.0],[119,118,78,1.0],[119,118,79,1.0],[119,119,64,1.0],[119,119,65,1.0],[119,119,66,1.0],[119,119,67,1.0],[119,119,68,1.0],[119,119,69,1.0],[119,119,70,1.0],[119,119,71,1.0],[119,119,72,1.0],[119,119,73,1.0],[119,119,74,1.0],[119,119,75,1.0],[119,119,76,1.0],[119,119,77,1.0],[119,119,78,1.0],[119,119,79,1.0],[119,120,64,1.0],[119,120,65,1.0],[119,120,66,1.0],[119,120,67,1.0],[119,120,68,1.0],[119,120,69,1.0],[119,120,70,1.0],[119,120,71,1.0],[119,120,72,1.0],[119,120,73,1.0],[119,120,74,1.0],[119,120,75,1.0],[119,120,76,1.0],[119,120,77,1.0],[119,120,78,1.0],[119,120,79,1.0],[119,121,64,1.0],[119,121,65,1.0],[119,121,66,1.0],[119,121,67,1.0],[119,121,68,1.0],[119,121,69,1.0],[119,121,70,1.0],[119,121,71,1.0],[119,121,72,1.0],[119,121,73,1.0],[119,121,74,1.0],[119,121,75,1.0],[119,121,76,1.0],[119,121,77,1.0],[119,121,78,1.0],[119,121,79,1.0],[119,122,64,1.0],[119,122,65,1.0],[119,122,66,1.0],[119,122,67,1.0],[119,122,68,1.0],[119,122,69,1.0],[119,122,70,1.0],[119,122,71,1.0],[119,122,72,1.0],[119,122,73,1.0],[119,122,74,1.0],[119,122,75,1.0],[119,122,76,1.0],[119,122,77,1.0],[119,122,78,1.0],[119,122,79,1.0],[119,123,64,1.0],[119,123,65,1.0],[119,123,66,1.0],[119,123,67,1.0],[119,123,68,1.0],[119,123,69,1.0],[119,123,70,1.0],[119,123,71,1.0],[119,123,72,1.0],[119,123,73,1.0],[119,123,74,1.0],[119,123,75,1.0],[119,123,76,1.0],[119,123,77,1.0],[119,123,78,1.0],[119,123,79,1.0],[119,124,64,1.0],[119,124,65,1.0],[119,124,66,1.0],[119,124,67,1.0],[119,124,68,1.0],[119,124,69,1.0],[119,124,70,1.0],[119,124,71,1.0],[119,124,72,1.0],[119,124,73,1.0],[119,124,74,1.0],[119,124,75,1.0],[119,124,76,1.0],[119,124,77,1.0],[119,124,78,1.0],[119,124,79,1.0],[119,125,64,1.0],[119,125,65,1.0],[119,125,66,1.0],[119,125,67,1.0],[119,125,68,1.0],[119,125,69,1.0],[119,125,70,1.0],[119,125,71,1.0],[119,125,72,1.0],[119,125,73,1.0],[119,125,74,1.0],[119,125,75,1.0],[119,125,76,1.0],[119,125,77,1.0],[119,125,78,1.0],[119,125,79,1.0],[119,126,64,1.0],[119,126,65,1.0],[119,126,66,1.0],[119,126,67,1.0],[119,126,68,1.0],[119,126,69,1.0],[119,126,70,1.0],[119,126,71,1.0],[119,126,72,1.0],[119,126,73,1.0],[119,126,74,1.0],[119,126,75,1.0],[119,126,76,1.0],[119,126,77,1.0],[119,126,78,1.0],[119,126,79,1.0],[119,127,64,1.0],[119,127,65,1.0],[119,127,66,1.0],[119,127,67,1.0],[119,127,68,1.0],[119,127,69,1.0],[119,127,70,1.0],[119,127,71,1.0],[119,127,72,1.0],[119,127,73,1.0],[119,127,74,1.0],[119,127,75,1.0],[119,127,76,1.0],[119,127,77,1.0],[119,127,78,1.0],[119,127,79,1.0],[119,128,64,1.0],[119,128,65,1.0],[119,128,66,1.0],[119,128,67,1.0],[119,128,68,1.0],[119,128,69,1.0],[119,128,70,1.0],[119,128,71,1.0],[119,128,72,1.0],[119,128,73,1.0],[119,128,74,1.0],[119,128,75,1.0],[119,128,76,1.0],[119,128,77,1.0],[119,128,78,1.0],[119,128,79,1.0],[119,129,64,1.0],[119,129,65,1.0],[119,129,66,1.0],[119,129,67,1.0],[119,129,68,1.0],[119,129,69,1.0],[119,129,70,1.0],[119,129,71,1.0],[119,129,72,1.0],[119,129,73,1.0],[119,129,74,1.0],[119,129,75,1.0],[119,129,76,1.0],[119,129,77,1.0],[119,129,78,1.0],[119,129,79,1.0],[119,130,64,1.0],[119,130,65,1.0],[119,130,66,1.0],[119,130,67,1.0],[119,130,68,1.0],[119,130,69,1.0],[119,130,70,1.0],[119,130,71,1.0],[119,130,72,1.0],[119,130,73,1.0],[119,130,74,1.0],[119,130,75,1.0],[119,130,76,1.0],[119,130,77,1.0],[119,130,78,1.0],[119,130,79,1.0],[119,131,64,1.0],[119,131,65,1.0],[119,131,66,1.0],[119,131,67,1.0],[119,131,68,1.0],[119,131,69,1.0],[119,131,70,1.0],[119,131,71,1.0],[119,131,72,1.0],[119,131,73,1.0],[119,131,74,1.0],[119,131,75,1.0],[119,131,76,1.0],[119,131,77,1.0],[119,131,78,1.0],[119,131,79,1.0],[119,132,64,1.0],[119,132,65,1.0],[119,132,66,1.0],[119,132,67,1.0],[119,132,68,1.0],[119,132,69,1.0],[119,132,70,1.0],[119,132,71,1.0],[119,132,72,1.0],[119,132,73,1.0],[119,132,74,1.0],[119,132,75,1.0],[119,132,76,1.0],[119,132,77,1.0],[119,132,78,1.0],[119,132,79,1.0],[119,133,64,1.0],[119,133,65,1.0],[119,133,66,1.0],[119,133,67,1.0],[119,133,68,1.0],[119,133,69,1.0],[119,133,70,1.0],[119,133,71,1.0],[119,133,72,1.0],[119,133,73,1.0],[119,133,74,1.0],[119,133,75,1.0],[119,133,76,1.0],[119,133,77,1.0],[119,133,78,1.0],[119,133,79,1.0],[119,134,64,1.0],[119,134,65,1.0],[119,134,66,1.0],[119,134,67,1.0],[119,134,68,1.0],[119,134,69,1.0],[119,134,70,1.0],[119,134,71,1.0],[119,134,72,1.0],[119,134,73,1.0],[119,134,74,1.0],[119,134,75,1.0],[119,134,76,1.0],[119,134,77,1.0],[119,134,78,1.0],[119,134,79,1.0],[119,135,64,1.0],[119,135,65,1.0],[119,135,66,1.0],[119,135,67,1.0],[119,135,68,1.0],[119,135,69,1.0],[119,135,70,1.0],[119,135,71,1.0],[119,135,72,1.0],[119,135,73,1.0],[119,135,74,1.0],[119,135,75,1.0],[119,135,76,1.0],[119,135,77,1.0],[119,135,78,1.0],[119,135,79,1.0],[119,136,64,1.0],[119,136,65,1.0],[119,136,66,1.0],[119,136,67,1.0],[119,136,68,1.0],[119,136,69,1.0],[119,136,70,1.0],[119,136,71,1.0],[119,136,72,1.0],[119,136,73,1.0],[119,136,74,1.0],[119,136,75,1.0],[119,136,76,1.0],[119,136,77,1.0],[119,136,78,1.0],[119,136,79,1.0],[119,137,64,1.0],[119,137,65,1.0],[119,137,66,1.0],[119,137,67,1.0],[119,137,68,1.0],[119,137,69,1.0],[119,137,70,1.0],[119,137,71,1.0],[119,137,72,1.0],[119,137,73,1.0],[119,137,74,1.0],[119,137,75,1.0],[119,137,76,1.0],[119,137,77,1.0],[119,137,78,1.0],[119,137,79,1.0],[119,138,64,1.0],[119,138,65,1.0],[119,138,66,1.0],[119,138,67,1.0],[119,138,68,1.0],[119,138,69,1.0],[119,138,70,1.0],[119,138,71,1.0],[119,138,72,1.0],[119,138,73,1.0],[119,138,74,1.0],[119,138,75,1.0],[119,138,76,1.0],[119,138,77,1.0],[119,138,78,1.0],[119,138,79,1.0],[119,139,64,1.0],[119,139,65,1.0],[119,139,66,1.0],[119,139,67,1.0],[119,139,68,1.0],[119,139,69,1.0],[119,139,70,1.0],[119,139,71,1.0],[119,139,72,1.0],[119,139,73,1.0],[119,139,74,1.0],[119,139,75,1.0],[119,139,76,1.0],[119,139,77,1.0],[119,139,78,1.0],[119,139,79,1.0],[119,140,64,1.0],[119,140,65,1.0],[119,140,66,1.0],[119,140,67,1.0],[119,140,68,1.0],[119,140,69,1.0],[119,140,70,1.0],[119,140,71,1.0],[119,140,72,1.0],[119,140,73,1.0],[119,140,74,1.0],[119,140,75,1.0],[119,140,76,1.0],[119,140,77,1.0],[119,140,78,1.0],[119,140,79,1.0],[119,141,64,1.0],[119,141,65,1.0],[119,141,66,1.0],[119,141,67,1.0],[119,141,68,1.0],[119,141,69,1.0],[119,141,70,1.0],[119,141,71,1.0],[119,141,72,1.0],[119,141,73,1.0],[119,141,74,1.0],[119,141,75,1.0],[119,141,76,1.0],[119,141,77,1.0],[119,141,78,1.0],[119,141,79,1.0],[119,142,64,1.0],[119,142,65,1.0],[119,142,66,1.0],[119,142,67,1.0],[119,142,68,1.0],[119,142,69,1.0],[119,142,70,1.0],[119,142,71,1.0],[119,142,72,1.0],[119,142,73,1.0],[119,142,74,1.0],[119,142,75,1.0],[119,142,76,1.0],[119,142,77,1.0],[119,142,78,1.0],[119,142,79,1.0],[119,143,64,1.0],[119,143,65,1.0],[119,143,66,1.0],[119,143,67,1.0],[119,143,68,1.0],[119,143,69,1.0],[119,143,70,1.0],[119,143,71,1.0],[119,143,72,1.0],[119,143,73,1.0],[119,143,74,1.0],[119,143,75,1.0],[119,143,76,1.0],[119,143,77,1.0],[119,143,78,1.0],[119,143,79,1.0],[119,144,64,1.0],[119,144,65,1.0],[119,144,66,1.0],[119,144,67,1.0],[119,144,68,1.0],[119,144,69,1.0],[119,144,70,1.0],[119,144,71,1.0],[119,144,72,1.0],[119,144,73,1.0],[119,144,74,1.0],[119,144,75,1.0],[119,144,76,1.0],[119,144,77,1.0],[119,144,78,1.0],[119,144,79,1.0],[119,145,64,1.0],[119,145,65,1.0],[119,145,66,1.0],[119,145,67,1.0],[119,145,68,1.0],[119,145,69,1.0],[119,145,70,1.0],[119,145,71,1.0],[119,145,72,1.0],[119,145,73,1.0],[119,145,74,1.0],[119,145,75,1.0],[119,145,76,1.0],[119,145,77,1.0],[119,145,78,1.0],[119,145,79,1.0],[119,146,64,1.0],[119,146,65,1.0],[119,146,66,1.0],[119,146,67,1.0],[119,146,68,1.0],[119,146,69,1.0],[119,146,70,1.0],[119,146,71,1.0],[119,146,72,1.0],[119,146,73,1.0],[119,146,74,1.0],[119,146,75,1.0],[119,146,76,1.0],[119,146,77,1.0],[119,146,78,1.0],[119,146,79,1.0],[119,147,64,1.0],[119,147,65,1.0],[119,147,66,1.0],[119,147,67,1.0],[119,147,68,1.0],[119,147,69,1.0],[119,147,70,1.0],[119,147,71,1.0],[119,147,72,1.0],[119,147,73,1.0],[119,147,74,1.0],[119,147,75,1.0],[119,147,76,1.0],[119,147,77,1.0],[119,147,78,1.0],[119,147,79,1.0],[119,148,64,1.0],[119,148,65,1.0],[119,148,66,1.0],[119,148,67,1.0],[119,148,68,1.0],[119,148,69,1.0],[119,148,70,1.0],[119,148,71,1.0],[119,148,72,1.0],[119,148,73,1.0],[119,148,74,1.0],[119,148,75,1.0],[119,148,76,1.0],[119,148,77,1.0],[119,148,78,1.0],[119,148,79,1.0],[119,149,64,1.0],[119,149,65,1.0],[119,149,66,1.0],[119,149,67,1.0],[119,149,68,1.0],[119,149,69,1.0],[119,149,70,1.0],[119,149,71,1.0],[119,149,72,1.0],[119,149,73,1.0],[119,149,74,1.0],[119,149,75,1.0],[119,149,76,1.0],[119,149,77,1.0],[119,149,78,1.0],[119,149,79,1.0],[119,150,64,1.0],[119,150,65,1.0],[119,150,66,1.0],[119,150,67,1.0],[119,150,68,1.0],[119,150,69,1.0],[119,150,70,1.0],[119,150,71,1.0],[119,150,72,1.0],[119,150,73,1.0],[119,150,74,1.0],[119,150,75,1.0],[119,150,76,1.0],[119,150,77,1.0],[119,150,78,1.0],[119,150,79,1.0],[119,151,64,1.0],[119,151,65,1.0],[119,151,66,1.0],[119,151,67,1.0],[119,151,68,1.0],[119,151,69,1.0],[119,151,70,1.0],[119,151,71,1.0],[119,151,72,1.0],[119,151,73,1.0],[119,151,74,1.0],[119,151,75,1.0],[119,151,76,1.0],[119,151,77,1.0],[119,151,78,1.0],[119,151,79,1.0],[119,152,64,1.0],[119,152,65,1.0],[119,152,66,1.0],[119,152,67,1.0],[119,152,68,1.0],[119,152,69,1.0],[119,152,70,1.0],[119,152,71,1.0],[119,152,72,1.0],[119,152,73,1.0],[119,152,74,1.0],[119,152,75,1.0],[119,152,76,1.0],[119,152,77,1.0],[119,152,78,1.0],[119,152,79,1.0],[119,153,64,1.0],[119,153,65,1.0],[119,153,66,1.0],[119,153,67,1.0],[119,153,68,1.0],[119,153,69,1.0],[119,153,70,1.0],[119,153,71,1.0],[119,153,72,1.0],[119,153,73,1.0],[119,153,74,1.0],[119,153,75,1.0],[119,153,76,1.0],[119,153,77,1.0],[119,153,78,1.0],[119,153,79,1.0],[119,154,64,1.0],[119,154,65,1.0],[119,154,66,1.0],[119,154,67,1.0],[119,154,68,1.0],[119,154,69,1.0],[119,154,70,1.0],[119,154,71,1.0],[119,154,72,1.0],[119,154,73,1.0],[119,154,74,1.0],[119,154,75,1.0],[119,154,76,1.0],[119,154,77,1.0],[119,154,78,1.0],[119,154,79,1.0],[119,155,64,1.0],[119,155,65,1.0],[119,155,66,1.0],[119,155,67,1.0],[119,155,68,1.0],[119,155,69,1.0],[119,155,70,1.0],[119,155,71,1.0],[119,155,72,1.0],[119,155,73,1.0],[119,155,74,1.0],[119,155,75,1.0],[119,155,76,1.0],[119,155,77,1.0],[119,155,78,1.0],[119,155,79,1.0],[119,156,64,1.0],[119,156,65,1.0],[119,156,66,1.0],[119,156,67,1.0],[119,156,68,1.0],[119,156,69,1.0],[119,156,70,1.0],[119,156,71,1.0],[119,156,72,1.0],[119,156,73,1.0],[119,156,74,1.0],[119,156,75,1.0],[119,156,76,1.0],[119,156,77,1.0],[119,156,78,1.0],[119,156,79,1.0],[119,157,64,1.0],[119,157,65,1.0],[119,157,66,1.0],[119,157,67,1.0],[119,157,68,1.0],[119,157,69,1.0],[119,157,70,1.0],[119,157,71,1.0],[119,157,72,1.0],[119,157,73,1.0],[119,157,74,1.0],[119,157,75,1.0],[119,157,76,1.0],[119,157,77,1.0],[119,157,78,1.0],[119,157,79,1.0],[119,158,64,1.0],[119,158,65,1.0],[119,158,66,1.0],[119,158,67,1.0],[119,158,68,1.0],[119,158,69,1.0],[119,158,70,1.0],[119,158,71,1.0],[119,158,72,1.0],[119,158,73,1.0],[119,158,74,1.0],[119,158,75,1.0],[119,158,76,1.0],[119,158,77,1.0],[119,158,78,1.0],[119,158,79,1.0],[119,159,64,1.0],[119,159,65,1.0],[119,159,66,1.0],[119,159,67,1.0],[119,159,68,1.0],[119,159,69,1.0],[119,159,70,1.0],[119,159,71,1.0],[119,159,72,1.0],[119,159,73,1.0],[119,159,74,1.0],[119,159,75,1.0],[119,159,76,1.0],[119,159,77,1.0],[119,159,78,1.0],[119,159,79,1.0],[119,160,64,1.0],[119,160,65,1.0],[119,160,66,1.0],[119,160,67,1.0],[119,160,68,1.0],[119,160,69,1.0],[119,160,70,1.0],[119,160,71,1.0],[119,160,72,1.0],[119,160,73,1.0],[119,160,74,1.0],[119,160,75,1.0],[119,160,76,1.0],[119,160,77,1.0],[119,160,78,1.0],[119,160,79,1.0],[119,161,64,1.0],[119,161,65,1.0],[119,161,66,1.0],[119,161,67,1.0],[119,161,68,1.0],[119,161,69,1.0],[119,161,70,1.0],[119,161,71,1.0],[119,161,72,1.0],[119,161,73,1.0],[119,161,74,1.0],[119,161,75,1.0],[119,161,76,1.0],[119,161,77,1.0],[119,161,78,1.0],[119,161,79,1.0],[119,162,64,1.0],[119,162,65,1.0],[119,162,66,1.0],[119,162,67,1.0],[119,162,68,1.0],[119,162,69,1.0],[119,162,70,1.0],[119,162,71,1.0],[119,162,72,1.0],[119,162,73,1.0],[119,162,74,1.0],[119,162,75,1.0],[119,162,76,1.0],[119,162,77,1.0],[119,162,78,1.0],[119,162,79,1.0],[119,163,64,1.0],[119,163,65,1.0],[119,163,66,1.0],[119,163,67,1.0],[119,163,68,1.0],[119,163,69,1.0],[119,163,70,1.0],[119,163,71,1.0],[119,163,72,1.0],[119,163,73,1.0],[119,163,74,1.0],[119,163,75,1.0],[119,163,76,1.0],[119,163,77,1.0],[119,163,78,1.0],[119,163,79,1.0],[119,164,64,1.0],[119,164,65,1.0],[119,164,66,1.0],[119,164,67,1.0],[119,164,68,1.0],[119,164,69,1.0],[119,164,70,1.0],[119,164,71,1.0],[119,164,72,1.0],[119,164,73,1.0],[119,164,74,1.0],[119,164,75,1.0],[119,164,76,1.0],[119,164,77,1.0],[119,164,78,1.0],[119,164,79,1.0],[119,165,64,1.0],[119,165,65,1.0],[119,165,66,1.0],[119,165,67,1.0],[119,165,68,1.0],[119,165,69,1.0],[119,165,70,1.0],[119,165,71,1.0],[119,165,72,1.0],[119,165,73,1.0],[119,165,74,1.0],[119,165,75,1.0],[119,165,76,1.0],[119,165,77,1.0],[119,165,78,1.0],[119,165,79,1.0],[119,166,64,1.0],[119,166,65,1.0],[119,166,66,1.0],[119,166,67,1.0],[119,166,68,1.0],[119,166,69,1.0],[119,166,70,1.0],[119,166,71,1.0],[119,166,72,1.0],[119,166,73,1.0],[119,166,74,1.0],[119,166,75,1.0],[119,166,76,1.0],[119,166,77,1.0],[119,166,78,1.0],[119,166,79,1.0],[119,167,64,1.0],[119,167,65,1.0],[119,167,66,1.0],[119,167,67,1.0],[119,167,68,1.0],[119,167,69,1.0],[119,167,70,1.0],[119,167,71,1.0],[119,167,72,1.0],[119,167,73,1.0],[119,167,74,1.0],[119,167,75,1.0],[119,167,76,1.0],[119,167,77,1.0],[119,167,78,1.0],[119,167,79,1.0],[119,168,64,1.0],[119,168,65,1.0],[119,168,66,1.0],[119,168,67,1.0],[119,168,68,1.0],[119,168,69,1.0],[119,168,70,1.0],[119,168,71,1.0],[119,168,72,1.0],[119,168,73,1.0],[119,168,74,1.0],[119,168,75,1.0],[119,168,76,1.0],[119,168,77,1.0],[119,168,78,1.0],[119,168,79,1.0],[119,169,64,1.0],[119,169,65,1.0],[119,169,66,1.0],[119,169,67,1.0],[119,169,68,1.0],[119,169,69,1.0],[119,169,70,1.0],[119,169,71,1.0],[119,169,72,1.0],[119,169,73,1.0],[119,169,74,1.0],[119,169,75,1.0],[119,169,76,1.0],[119,169,77,1.0],[119,169,78,1.0],[119,169,79,1.0],[119,170,64,1.0],[119,170,65,1.0],[119,170,66,1.0],[119,170,67,1.0],[119,170,68,1.0],[119,170,69,1.0],[119,170,70,1.0],[119,170,71,1.0],[119,170,72,1.0],[119,170,73,1.0],[119,170,74,1.0],[119,170,75,1.0],[119,170,76,1.0],[119,170,77,1.0],[119,170,78,1.0],[119,170,79,1.0],[119,171,64,1.0],[119,171,65,1.0],[119,171,66,1.0],[119,171,67,1.0],[119,171,68,1.0],[119,171,69,1.0],[119,171,70,1.0],[119,171,71,1.0],[119,171,72,1.0],[119,171,73,1.0],[119,171,74,1.0],[119,171,75,1.0],[119,171,76,1.0],[119,171,77,1.0],[119,171,78,1.0],[119,171,79,1.0],[119,172,64,1.0],[119,172,65,1.0],[119,172,66,1.0],[119,172,67,1.0],[119,172,68,1.0],[119,172,69,1.0],[119,172,70,1.0],[119,172,71,1.0],[119,172,72,1.0],[119,172,73,1.0],[119,172,74,1.0],[119,172,75,1.0],[119,172,76,1.0],[119,172,77,1.0],[119,172,78,1.0],[119,172,79,1.0],[119,173,64,1.0],[119,173,65,1.0],[119,173,66,1.0],[119,173,67,1.0],[119,173,68,1.0],[119,173,69,1.0],[119,173,70,1.0],[119,173,71,1.0],[119,173,72,1.0],[119,173,73,1.0],[119,173,74,1.0],[119,173,75,1.0],[119,173,76,1.0],[119,173,77,1.0],[119,173,78,1.0],[119,173,79,1.0],[119,174,64,1.0],[119,174,65,1.0],[119,174,66,1.0],[119,174,67,1.0],[119,174,68,1.0],[119,174,69,1.0],[119,174,70,1.0],[119,174,71,1.0],[119,174,72,1.0],[119,174,73,1.0],[119,174,74,1.0],[119,174,75,1.0],[119,174,76,1.0],[119,174,77,1.0],[119,174,78,1.0],[119,174,79,1.0],[119,175,64,1.0],[119,175,65,1.0],[119,175,66,1.0],[119,175,67,1.0],[119,175,68,1.0],[119,175,69,1.0],[119,175,70,1.0],[119,175,71,1.0],[119,175,72,1.0],[119,175,73,1.0],[119,175,74,1.0],[119,175,75,1.0],[119,175,76,1.0],[119,175,77,1.0],[119,175,78,1.0],[119,175,79,1.0],[119,176,64,1.0],[119,176,65,1.0],[119,176,66,1.0],[119,176,67,1.0],[119,176,68,1.0],[119,176,69,1.0],[119,176,70,1.0],[119,176,71,1.0],[119,176,72,1.0],[119,176,73,1.0],[119,176,74,1.0],[119,176,75,1.0],[119,176,76,1.0],[119,176,77,1.0],[119,176,78,1.0],[119,176,79,1.0],[119,177,64,1.0],[119,177,65,1.0],[119,177,66,1.0],[119,177,67,1.0],[119,177,68,1.0],[119,177,69,1.0],[119,177,70,1.0],[119,177,71,1.0],[119,177,72,1.0],[119,177,73,1.0],[119,177,74,1.0],[119,177,75,1.0],[119,177,76,1.0],[119,177,77,1.0],[119,177,78,1.0],[119,177,79,1.0],[119,178,64,1.0],[119,178,65,1.0],[119,178,66,1.0],[119,178,67,1.0],[119,178,68,1.0],[119,178,69,1.0],[119,178,70,1.0],[119,178,71,1.0],[119,178,72,1.0],[119,178,73,1.0],[119,178,74,1.0],[119,178,75,1.0],[119,178,76,1.0],[119,178,77,1.0],[119,178,78,1.0],[119,178,79,1.0],[119,179,64,1.0],[119,179,65,1.0],[119,179,66,1.0],[119,179,67,1.0],[119,179,68,1.0],[119,179,69,1.0],[119,179,70,1.0],[119,179,71,1.0],[119,179,72,1.0],[119,179,73,1.0],[119,179,74,1.0],[119,179,75,1.0],[119,179,76,1.0],[119,179,77,1.0],[119,179,78,1.0],[119,179,79,1.0],[119,180,64,1.0],[119,180,65,1.0],[119,180,66,1.0],[119,180,67,1.0],[119,180,68,1.0],[119,180,69,1.0],[119,180,70,1.0],[119,180,71,1.0],[119,180,72,1.0],[119,180,73,1.0],[119,180,74,1.0],[119,180,75,1.0],[119,180,76,1.0],[119,180,77,1.0],[119,180,78,1.0],[119,180,79,1.0],[119,181,64,1.0],[119,181,65,1.0],[119,181,66,1.0],[119,181,67,1.0],[119,181,68,1.0],[119,181,69,1.0],[119,181,70,1.0],[119,181,71,1.0],[119,181,72,1.0],[119,181,73,1.0],[119,181,74,1.0],[119,181,75,1.0],[119,181,76,1.0],[119,181,77,1.0],[119,181,78,1.0],[119,181,79,1.0],[119,182,64,1.0],[119,182,65,1.0],[119,182,66,1.0],[119,182,67,1.0],[119,182,68,1.0],[119,182,69,1.0],[119,182,70,1.0],[119,182,71,1.0],[119,182,72,1.0],[119,182,73,1.0],[119,182,74,1.0],[119,182,75,1.0],[119,182,76,1.0],[119,182,77,1.0],[119,182,78,1.0],[119,182,79,1.0],[119,183,64,1.0],[119,183,65,1.0],[119,183,66,1.0],[119,183,67,1.0],[119,183,68,1.0],[119,183,69,1.0],[119,183,70,1.0],[119,183,71,1.0],[119,183,72,1.0],[119,183,73,1.0],[119,183,74,1.0],[119,183,75,1.0],[119,183,76,1.0],[119,183,77,1.0],[119,183,78,1.0],[119,183,79,1.0],[119,184,64,1.0],[119,184,65,1.0],[119,184,66,1.0],[119,184,67,1.0],[119,184,68,1.0],[119,184,69,1.0],[119,184,70,1.0],[119,184,71,1.0],[119,184,72,1.0],[119,184,73,1.0],[119,184,74,1.0],[119,184,75,1.0],[119,184,76,1.0],[119,184,77,1.0],[119,184,78,1.0],[119,184,79,1.0],[119,185,64,1.0],[119,185,65,1.0],[119,185,66,1.0],[119,185,67,1.0],[119,185,68,1.0],[119,185,69,1.0],[119,185,70,1.0],[119,185,71,1.0],[119,185,72,1.0],[119,185,73,1.0],[119,185,74,1.0],[119,185,75,1.0],[119,185,76,1.0],[119,185,77,1.0],[119,185,78,1.0],[119,185,79,1.0],[119,186,64,1.0],[119,186,65,1.0],[119,186,66,1.0],[119,186,67,1.0],[119,186,68,1.0],[119,186,69,1.0],[119,186,70,1.0],[119,186,71,1.0],[119,186,72,1.0],[119,186,73,1.0],[119,186,74,1.0],[119,186,75,1.0],[119,186,76,1.0],[119,186,77,1.0],[119,186,78,1.0],[119,186,79,1.0],[119,187,64,1.0],[119,187,65,1.0],[119,187,66,1.0],[119,187,67,1.0],[119,187,68,1.0],[119,187,69,1.0],[119,187,70,1.0],[119,187,71,1.0],[119,187,72,1.0],[119,187,73,1.0],[119,187,74,1.0],[119,187,75,1.0],[119,187,76,1.0],[119,187,77,1.0],[119,187,78,1.0],[119,187,79,1.0],[119,188,64,1.0],[119,188,65,1.0],[119,188,66,1.0],[119,188,67,1.0],[119,188,68,1.0],[119,188,69,1.0],[119,188,70,1.0],[119,188,71,1.0],[119,188,72,1.0],[119,188,73,1.0],[119,188,74,1.0],[119,188,75,1.0],[119,188,76,1.0],[119,188,77,1.0],[119,188,78,1.0],[119,188,79,1.0],[119,189,64,1.0],[119,189,65,1.0],[119,189,66,1.0],[119,189,67,1.0],[119,189,68,1.0],[119,189,69,1.0],[119,189,70,1.0],[119,189,71,1.0],[119,189,72,1.0],[119,189,73,1.0],[119,189,74,1.0],[119,189,75,1.0],[119,189,76,1.0],[119,189,77,1.0],[119,189,78,1.0],[119,189,79,1.0],[119,190,64,1.0],[119,190,65,1.0],[119,190,66,1.0],[119,190,67,1.0],[119,190,68,1.0],[119,190,69,1.0],[119,190,70,1.0],[119,190,71,1.0],[119,190,72,1.0],[119,190,73,1.0],[119,190,74,1.0],[119,190,75,1.0],[119,190,76,1.0],[119,190,77,1.0],[119,190,78,1.0],[119,190,79,1.0],[119,191,64,1.0],[119,191,65,1.0],[119,191,66,1.0],[119,191,67,1.0],[119,191,68,1.0],[119,191,69,1.0],[119,191,70,1.0],[119,191,71,1.0],[119,191,72,1.0],[119,191,73,1.0],[119,191,74,1.0],[119,191,75,1.0],[119,191,76,1.0],[119,191,77,1.0],[119,191,78,1.0],[119,191,79,1.0],[119,192,64,1.0],[119,192,65,1.0],[119,192,66,1.0],[119,192,67,1.0],[119,192,68,1.0],[119,192,69,1.0],[119,192,70,1.0],[119,192,71,1.0],[119,192,72,1.0],[119,192,73,1.0],[119,192,74,1.0],[119,192,75,1.0],[119,192,76,1.0],[119,192,77,1.0],[119,192,78,1.0],[119,192,79,1.0],[119,193,64,1.0],[119,193,65,1.0],[119,193,66,1.0],[119,193,67,1.0],[119,193,68,1.0],[119,193,69,1.0],[119,193,70,1.0],[119,193,71,1.0],[119,193,72,1.0],[119,193,73,1.0],[119,193,74,1.0],[119,193,75,1.0],[119,193,76,1.0],[119,193,77,1.0],[119,193,78,1.0],[119,193,79,1.0],[119,194,64,1.0],[119,194,65,1.0],[119,194,66,1.0],[119,194,67,1.0],[119,194,68,1.0],[119,194,69,1.0],[119,194,70,1.0],[119,194,71,1.0],[119,194,72,1.0],[119,194,73,1.0],[119,194,74,1.0],[119,194,75,1.0],[119,194,76,1.0],[119,194,77,1.0],[119,194,78,1.0],[119,194,79,1.0],[119,195,64,1.0],[119,195,65,1.0],[119,195,66,1.0],[119,195,67,1.0],[119,195,68,1.0],[119,195,69,1.0],[119,195,70,1.0],[119,195,71,1.0],[119,195,72,1.0],[119,195,73,1.0],[119,195,74,1.0],[119,195,75,1.0],[119,195,76,1.0],[119,195,77,1.0],[119,195,78,1.0],[119,195,79,1.0],[119,196,64,1.0],[119,196,65,1.0],[119,196,66,1.0],[119,196,67,1.0],[119,196,68,1.0],[119,196,69,1.0],[119,196,70,1.0],[119,196,71,1.0],[119,196,72,1.0],[119,196,73,1.0],[119,196,74,1.0],[119,196,75,1.0],[119,196,76,1.0],[119,196,77,1.0],[119,196,78,1.0],[119,196,79,1.0],[119,197,64,1.0],[119,197,65,1.0],[119,197,66,1.0],[119,197,67,1.0],[119,197,68,1.0],[119,197,69,1.0],[119,197,70,1.0],[119,197,71,1.0],[119,197,72,1.0],[119,197,73,1.0],[119,197,74,1.0],[119,197,75,1.0],[119,197,76,1.0],[119,197,77,1.0],[119,197,78,1.0],[119,197,79,1.0],[119,198,64,1.0],[119,198,65,1.0],[119,198,66,1.0],[119,198,67,1.0],[119,198,68,1.0],[119,198,69,1.0],[119,198,70,1.0],[119,198,71,1.0],[119,198,72,1.0],[119,198,73,1.0],[119,198,74,1.0],[119,198,75,1.0],[119,198,76,1.0],[119,198,77,1.0],[119,198,78,1.0],[119,198,79,1.0],[119,199,64,1.0],[119,199,65,1.0],[119,199,66,1.0],[119,199,67,1.0],[119,199,68,1.0],[119,199,69,1.0],[119,199,70,1.0],[119,199,71,1.0],[119,199,72,1.0],[119,199,73,1.0],[119,199,74,1.0],[119,199,75,1.0],[119,199,76,1.0],[119,199,77,1.0],[119,199,78,1.0],[119,199,79,1.0],[119,200,64,1.0],[119,200,65,1.0],[119,200,66,1.0],[119,200,67,1.0],[119,200,68,1.0],[119,200,69,1.0],[119,200,70,1.0],[119,200,71,1.0],[119,200,72,1.0],[119,200,73,1.0],[119,200,74,1.0],[119,200,75,1.0],[119,200,76,1.0],[119,200,77,1.0],[119,200,78,1.0],[119,200,79,1.0],[119,201,64,1.0],[119,201,65,1.0],[119,201,66,1.0],[119,201,67,1.0],[119,201,68,1.0],[119,201,69,1.0],[119,201,70,1.0],[119,201,71,1.0],[119,201,72,1.0],[119,201,73,1.0],[119,201,74,1.0],[119,201,75,1.0],[119,201,76,1.0],[119,201,77,1.0],[119,201,78,1.0],[119,201,79,1.0],[119,202,64,1.0],[119,202,65,1.0],[119,202,66,1.0],[119,202,67,1.0],[119,202,68,1.0],[119,202,69,1.0],[119,202,70,1.0],[119,202,71,1.0],[119,202,72,1.0],[119,202,73,1.0],[119,202,74,1.0],[119,202,75,1.0],[119,202,76,1.0],[119,202,77,1.0],[119,202,78,1.0],[119,202,79,1.0],[119,203,64,1.0],[119,203,65,1.0],[119,203,66,1.0],[119,203,67,1.0],[119,203,68,1.0],[119,203,69,1.0],[119,203,70,1.0],[119,203,71,1.0],[119,203,72,1.0],[119,203,73,1.0],[119,203,74,1.0],[119,203,75,1.0],[119,203,76,1.0],[119,203,77,1.0],[119,203,78,1.0],[119,203,79,1.0],[119,204,64,1.0],[119,204,65,1.0],[119,204,66,1.0],[119,204,67,1.0],[119,204,68,1.0],[119,204,69,1.0],[119,204,70,1.0],[119,204,71,1.0],[119,204,72,1.0],[119,204,73,1.0],[119,204,74,1.0],[119,204,75,1.0],[119,204,76,1.0],[119,204,77,1.0],[119,204,78,1.0],[119,204,79,1.0],[119,205,64,1.0],[119,205,65,1.0],[119,205,66,1.0],[119,205,67,1.0],[119,205,68,1.0],[119,205,69,1.0],[119,205,70,1.0],[119,205,71,1.0],[119,205,72,1.0],[119,205,73,1.0],[119,205,74,1.0],[119,205,75,1.0],[119,205,76,1.0],[119,205,77,1.0],[119,205,78,1.0],[119,205,79,1.0],[119,206,64,1.0],[119,206,65,1.0],[119,206,66,1.0],[119,206,67,1.0],[119,206,68,1.0],[119,206,69,1.0],[119,206,70,1.0],[119,206,71,1.0],[119,206,72,1.0],[119,206,73,1.0],[119,206,74,1.0],[119,206,75,1.0],[119,206,76,1.0],[119,206,77,1.0],[119,206,78,1.0],[119,206,79,1.0],[119,207,64,1.0],[119,207,65,1.0],[119,207,66,1.0],[119,207,67,1.0],[119,207,68,1.0],[119,207,69,1.0],[119,207,70,1.0],[119,207,71,1.0],[119,207,72,1.0],[119,207,73,1.0],[119,207,74,1.0],[119,207,75,1.0],[119,207,76,1.0],[119,207,77,1.0],[119,207,78,1.0],[119,207,79,1.0],[119,208,64,1.0],[119,208,65,1.0],[119,208,66,1.0],[119,208,67,1.0],[119,208,68,1.0],[119,208,69,1.0],[119,208,70,1.0],[119,208,71,1.0],[119,208,72,1.0],[119,208,73,1.0],[119,208,74,1.0],[119,208,75,1.0],[119,208,76,1.0],[119,208,77,1.0],[119,208,78,1.0],[119,208,79,1.0],[119,209,64,1.0],[119,209,65,1.0],[119,209,66,1.0],[119,209,67,1.0],[119,209,68,1.0],[119,209,69,1.0],[119,209,70,1.0],[119,209,71,1.0],[119,209,72,1.0],[119,209,73,1.0],[119,209,74,1.0],[119,209,75,1.0],[119,209,76,1.0],[119,209,77,1.0],[119,209,78,1.0],[119,209,79,1.0],[119,210,64,1.0],[119,210,65,1.0],[119,210,66,1.0],[119,210,67,1.0],[119,210,68,1.0],[119,210,69,1.0],[119,210,70,1.0],[119,210,71,1.0],[119,210,72,1.0],[119,210,73,1.0],[119,210,74,1.0],[119,210,75,1.0],[119,210,76,1.0],[119,210,77,1.0],[119,210,78,1.0],[119,210,79,1.0],[119,211,64,1.0],[119,211,65,1.0],[119,211,66,1.0],[119,211,67,1.0],[119,211,68,1.0],[119,211,69,1.0],[119,211,70,1.0],[119,211,71,1.0],[119,211,72,1.0],[119,211,73,1.0],[119,211,74,1.0],[119,211,75,1.0],[119,211,76,1.0],[119,211,77,1.0],[119,211,78,1.0],[119,211,79,1.0],[119,212,64,1.0],[119,212,65,1.0],[119,212,66,1.0],[119,212,67,1.0],[119,212,68,1.0],[119,212,69,1.0],[119,212,70,1.0],[119,212,71,1.0],[119,212,72,1.0],[119,212,73,1.0],[119,212,74,1.0],[119,212,75,1.0],[119,212,76,1.0],[119,212,77,1.0],[119,212,78,1.0],[119,212,79,1.0],[119,213,64,1.0],[119,213,65,1.0],[119,213,66,1.0],[119,213,67,1.0],[119,213,68,1.0],[119,213,69,1.0],[119,213,70,1.0],[119,213,71,1.0],[119,213,72,1.0],[119,213,73,1.0],[119,213,74,1.0],[119,213,75,1.0],[119,213,76,1.0],[119,213,77,1.0],[119,213,78,1.0],[119,213,79,1.0],[119,214,64,1.0],[119,214,65,1.0],[119,214,66,1.0],[119,214,67,1.0],[119,214,68,1.0],[119,214,69,1.0],[119,214,70,1.0],[119,214,71,1.0],[119,214,72,1.0],[119,214,73,1.0],[119,214,74,1.0],[119,214,75,1.0],[119,214,76,1.0],[119,214,77,1.0],[119,214,78,1.0],[119,214,79,1.0],[119,215,64,1.0],[119,215,65,1.0],[119,215,66,1.0],[119,215,67,1.0],[119,215,68,1.0],[119,215,69,1.0],[119,215,70,1.0],[119,215,71,1.0],[119,215,72,1.0],[119,215,73,1.0],[119,215,74,1.0],[119,215,75,1.0],[119,215,76,1.0],[119,215,77,1.0],[119,215,78,1.0],[119,215,79,1.0],[119,216,64,1.0],[119,216,65,1.0],[119,216,66,1.0],[119,216,67,1.0],[119,216,68,1.0],[119,216,69,1.0],[119,216,70,1.0],[119,216,71,1.0],[119,216,72,1.0],[119,216,73,1.0],[119,216,74,1.0],[119,216,75,1.0],[119,216,76,1.0],[119,216,77,1.0],[119,216,78,1.0],[119,216,79,1.0],[119,217,64,1.0],[119,217,65,1.0],[119,217,66,1.0],[119,217,67,1.0],[119,217,68,1.0],[119,217,69,1.0],[119,217,70,1.0],[119,217,71,1.0],[119,217,72,1.0],[119,217,73,1.0],[119,217,74,1.0],[119,217,75,1.0],[119,217,76,1.0],[119,217,77,1.0],[119,217,78,1.0],[119,217,79,1.0],[119,218,64,1.0],[119,218,65,1.0],[119,218,66,1.0],[119,218,67,1.0],[119,218,68,1.0],[119,218,69,1.0],[119,218,70,1.0],[119,218,71,1.0],[119,218,72,1.0],[119,218,73,1.0],[119,218,74,1.0],[119,218,75,1.0],[119,218,76,1.0],[119,218,77,1.0],[119,218,78,1.0],[119,218,79,1.0],[119,219,64,1.0],[119,219,65,1.0],[119,219,66,1.0],[119,219,67,1.0],[119,219,68,1.0],[119,219,69,1.0],[119,219,70,1.0],[119,219,71,1.0],[119,219,72,1.0],[119,219,73,1.0],[119,219,74,1.0],[119,219,75,1.0],[119,219,76,1.0],[119,219,77,1.0],[119,219,78,1.0],[119,219,79,1.0],[119,220,64,1.0],[119,220,65,1.0],[119,220,66,1.0],[119,220,67,1.0],[119,220,68,1.0],[119,220,69,1.0],[119,220,70,1.0],[119,220,71,1.0],[119,220,72,1.0],[119,220,73,1.0],[119,220,74,1.0],[119,220,75,1.0],[119,220,76,1.0],[119,220,77,1.0],[119,220,78,1.0],[119,220,79,1.0],[119,221,64,1.0],[119,221,65,1.0],[119,221,66,1.0],[119,221,67,1.0],[119,221,68,1.0],[119,221,69,1.0],[119,221,70,1.0],[119,221,71,1.0],[119,221,72,1.0],[119,221,73,1.0],[119,221,74,1.0],[119,221,75,1.0],[119,221,76,1.0],[119,221,77,1.0],[119,221,78,1.0],[119,221,79,1.0],[119,222,64,1.0],[119,222,65,1.0],[119,222,66,1.0],[119,222,67,1.0],[119,222,68,1.0],[119,222,69,1.0],[119,222,70,1.0],[119,222,71,1.0],[119,222,72,1.0],[119,222,73,1.0],[119,222,74,1.0],[119,222,75,1.0],[119,222,76,1.0],[119,222,77,1.0],[119,222,78,1.0],[119,222,79,1.0],[119,223,64,1.0],[119,223,65,1.0],[119,223,66,1.0],[119,223,67,1.0],[119,223,68,1.0],[119,223,69,1.0],[119,223,70,1.0],[119,223,71,1.0],[119,223,72,1.0],[119,223,73,1.0],[119,223,74,1.0],[119,223,75,1.0],[119,223,76,1.0],[119,223,77,1.0],[119,223,78,1.0],[119,223,79,1.0],[119,224,64,1.0],[119,224,65,1.0],[119,224,66,1.0],[119,224,67,1.0],[119,224,68,1.0],[119,224,69,1.0],[119,224,70,1.0],[119,224,71,1.0],[119,224,72,1.0],[119,224,73,1.0],[119,224,74,1.0],[119,224,75,1.0],[119,224,76,1.0],[119,224,77,1.0],[119,224,78,1.0],[119,224,79,1.0],[119,225,64,1.0],[119,225,65,1.0],[119,225,66,1.0],[119,225,67,1.0],[119,225,68,1.0],[119,225,69,1.0],[119,225,70,1.0],[119,225,71,1.0],[119,225,72,1.0],[119,225,73,1.0],[119,225,74,1.0],[119,225,75,1.0],[119,225,76,1.0],[119,225,77,1.0],[119,225,78,1.0],[119,225,79,1.0],[119,226,64,1.0],[119,226,65,1.0],[119,226,66,1.0],[119,226,67,1.0],[119,226,68,1.0],[119,226,69,1.0],[119,226,70,1.0],[119,226,71,1.0],[119,226,72,1.0],[119,226,73,1.0],[119,226,74,1.0],[119,226,75,1.0],[119,226,76,1.0],[119,226,77,1.0],[119,226,78,1.0],[119,226,79,1.0],[119,227,64,1.0],[119,227,65,1.0],[119,227,66,1.0],[119,227,67,1.0],[119,227,68,1.0],[119,227,69,1.0],[119,227,70,1.0],[119,227,71,1.0],[119,227,72,1.0],[119,227,73,1.0],[119,227,74,1.0],[119,227,75,1.0],[119,227,76,1.0],[119,227,77,1.0],[119,227,78,1.0],[119,227,79,1.0],[119,228,64,1.0],[119,228,65,1.0],[119,228,66,1.0],[119,228,67,1.0],[119,228,68,1.0],[119,228,69,1.0],[119,228,70,1.0],[119,228,71,1.0],[119,228,72,1.0],[119,228,73,1.0],[119,228,74,1.0],[119,228,75,1.0],[119,228,76,1.0],[119,228,77,1.0],[119,228,78,1.0],[119,228,79,1.0],[119,229,64,1.0],[119,229,65,1.0],[119,229,66,1.0],[119,229,67,1.0],[119,229,68,1.0],[119,229,69,1.0],[119,229,70,1.0],[119,229,71,1.0],[119,229,72,1.0],[119,229,73,1.0],[119,229,74,1.0],[119,229,75,1.0],[119,229,76,1.0],[119,229,77,1.0],[119,229,78,1.0],[119,229,79,1.0],[119,230,64,1.0],[119,230,65,1.0],[119,230,66,1.0],[119,230,67,1.0],[119,230,68,1.0],[119,230,69,1.0],[119,230,70,1.0],[119,230,71,1.0],[119,230,72,1.0],[119,230,73,1.0],[119,230,74,1.0],[119,230,75,1.0],[119,230,76,1.0],[119,230,77,1.0],[119,230,78,1.0],[119,230,79,1.0],[119,231,64,1.0],[119,231,65,1.0],[119,231,66,1.0],[119,231,67,1.0],[119,231,68,1.0],[119,231,69,1.0],[119,231,70,1.0],[119,231,71,1.0],[119,231,72,1.0],[119,231,73,1.0],[119,231,74,1.0],[119,231,75,1.0],[119,231,76,1.0],[119,231,77,1.0],[119,231,78,1.0],[119,231,79,1.0],[119,232,64,1.0],[119,232,65,1.0],[119,232,66,1.0],[119,232,67,1.0],[119,232,68,1.0],[119,232,69,1.0],[119,232,70,1.0],[119,232,71,1.0],[119,232,72,1.0],[119,232,73,1.0],[119,232,74,1.0],[119,232,75,1.0],[119,232,76,1.0],[119,232,77,1.0],[119,232,78,1.0],[119,232,79,1.0],[119,233,64,1.0],[119,233,65,1.0],[119,233,66,1.0],[119,233,67,1.0],[119,233,68,1.0],[119,233,69,1.0],[119,233,70,1.0],[119,233,71,1.0],[119,233,72,1.0],[119,233,73,1.0],[119,233,74,1.0],[119,233,75,1.0],[119,233,76,1.0],[119,233,77,1.0],[119,233,78,1.0],[119,233,79,1.0],[119,234,64,1.0],[119,234,65,1.0],[119,234,66,1.0],[119,234,67,1.0],[119,234,68,1.0],[119,234,69,1.0],[119,234,70,1.0],[119,234,71,1.0],[119,234,72,1.0],[119,234,73,1.0],[119,234,74,1.0],[119,234,75,1.0],[119,234,76,1.0],[119,234,77,1.0],[119,234,78,1.0],[119,234,79,1.0],[119,235,64,1.0],[119,235,65,1.0],[119,235,66,1.0],[119,235,67,1.0],[119,235,68,1.0],[119,235,69,1.0],[119,235,70,1.0],[119,235,71,1.0],[119,235,72,1.0],[119,235,73,1.0],[119,235,74,1.0],[119,235,75,1.0],[119,235,76,1.0],[119,235,77,1.0],[119,235,78,1.0],[119,235,79,1.0],[119,236,64,1.0],[119,236,65,1.0],[119,236,66,1.0],[119,236,67,1.0],[119,236,68,1.0],[119,236,69,1.0],[119,236,70,1.0],[119,236,71,1.0],[119,236,72,1.0],[119,236,73,1.0],[119,236,74,1.0],[119,236,75,1.0],[119,236,76,1.0],[119,236,77,1.0],[119,236,78,1.0],[119,236,79,1.0],[119,237,64,1.0],[119,237,65,1.0],[119,237,66,1.0],[119,237,67,1.0],[119,237,68,1.0],[119,237,69,1.0],[119,237,70,1.0],[119,237,71,1.0],[119,237,72,1.0],[119,237,73,1.0],[119,237,74,1.0],[119,237,75,1.0],[119,237,76,1.0],[119,237,77,1.0],[119,237,78,1.0],[119,237,79,1.0],[119,238,64,1.0],[119,238,65,1.0],[119,238,66,1.0],[119,238,67,1.0],[119,238,68,1.0],[119,238,69,1.0],[119,238,70,1.0],[119,238,71,1.0],[119,238,72,1.0],[119,238,73,1.0],[119,238,74,1.0],[119,238,75,1.0],[119,238,76,1.0],[119,238,77,1.0],[119,238,78,1.0],[119,238,79,1.0],[119,239,64,1.0],[119,239,65,1.0],[119,239,66,1.0],[119,239,67,1.0],[119,239,68,1.0],[119,239,69,1.0],[119,239,70,1.0],[119,239,71,1.0],[119,239,72,1.0],[119,239,73,1.0],[119,239,74,1.0],[119,239,75,1.0],[119,239,76,1.0],[119,239,77,1.0],[119,239,78,1.0],[119,239,79,1.0],[119,240,64,1.0],[119,240,65,1.0],[119,240,66,1.0],[119,240,67,1.0],[119,240,68,1.0],[119,240,69,1.0],[119,240,70,1.0],[119,240,71,1.0],[119,240,72,1.0],[119,240,73,1.0],[119,240,74,1.0],[119,240,75,1.0],[119,240,76,1.0],[119,240,77,1.0],[119,240,78,1.0],[119,240,79,1.0],[119,241,64,1.0],[119,241,65,1.0],[119,241,66,1.0],[119,241,67,1.0],[119,241,68,1.0],[119,241,69,1.0],[119,241,70,1.0],[119,241,71,1.0],[119,241,72,1.0],[119,241,73,1.0],[119,241,74,1.0],[119,241,75,1.0],[119,241,76,1.0],[119,241,77,1.0],[119,241,78,1.0],[119,241,79,1.0],[119,242,64,1.0],[119,242,65,1.0],[119,242,66,1.0],[119,242,67,1.0],[119,242,68,1.0],[119,242,69,1.0],[119,242,70,1.0],[119,242,71,1.0],[119,242,72,1.0],[119,242,73,1.0],[119,242,74,1.0],[119,242,75,1.0],[119,242,76,1.0],[119,242,77,1.0],[119,242,78,1.0],[119,242,79,1.0],[119,243,64,1.0],[119,243,65,1.0],[119,243,66,1.0],[119,243,67,1.0],[119,243,68,1.0],[119,243,69,1.0],[119,243,70,1.0],[119,243,71,1.0],[119,243,72,1.0],[119,243,73,1.0],[119,243,74,1.0],[119,243,75,1.0],[119,243,76,1.0],[119,243,77,1.0],[119,243,78,1.0],[119,243,79,1.0],[119,244,64,1.0],[119,244,65,1.0],[119,244,66,1.0],[119,244,67,1.0],[119,244,68,1.0],[119,244,69,1.0],[119,244,70,1.0],[119,244,71,1.0],[119,244,72,1.0],[119,244,73,1.0],[119,244,74,1.0],[119,244,75,1.0],[119,244,76,1.0],[119,244,77,1.0],[119,244,78,1.0],[119,244,79,1.0],[119,245,64,1.0],[119,245,65,1.0],[119,245,66,1.0],[119,245,67,1.0],[119,245,68,1.0],[119,245,69,1.0],[119,245,70,1.0],[119,245,71,1.0],[119,245,72,1.0],[119,245,73,1.0],[119,245,74,1.0],[119,245,75,1.0],[119,245,76,1.0],[119,245,77,1.0],[119,245,78,1.0],[119,245,79,1.0],[119,246,64,1.0],[119,246,65,1.0],[119,246,66,1.0],[119,246,67,1.0],[119,246,68,1.0],[119,246,69,1.0],[119,246,70,1.0],[119,246,71,1.0],[119,246,72,1.0],[119,246,73,1.0],[119,246,74,1.0],[119,246,75,1.0],[119,246,76,1.0],[119,246,77,1.0],[119,246,78,1.0],[119,246,79,1.0],[119,247,64,1.0],[119,247,65,1.0],[119,247,66,1.0],[119,247,67,1.0],[119,247,68,1.0],[119,247,69,1.0],[119,247,70,1.0],[119,247,71,1.0],[119,247,72,1.0],[119,247,73,1.0],[119,247,74,1.0],[119,247,75,1.0],[119,247,76,1.0],[119,247,77,1.0],[119,247,78,1.0],[119,247,79,1.0],[119,248,64,1.0],[119,248,65,1.0],[119,248,66,1.0],[119,248,67,1.0],[119,248,68,1.0],[119,248,69,1.0],[119,248,70,1.0],[119,248,71,1.0],[119,248,72,1.0],[119,248,73,1.0],[119,248,74,1.0],[119,248,75,1.0],[119,248,76,1.0],[119,248,77,1.0],[119,248,78,1.0],[119,248,79,1.0],[119,249,64,1.0],[119,249,65,1.0],[119,249,66,1.0],[119,249,67,1.0],[119,249,68,1.0],[119,249,69,1.0],[119,249,70,1.0],[119,249,71,1.0],[119,249,72,1.0],[119,249,73,1.0],[119,249,74,1.0],[119,249,75,1.0],[119,249,76,1.0],[119,249,77,1.0],[119,249,78,1.0],[119,249,79,1.0],[119,250,64,1.0],[119,250,65,1.0],[119,250,66,1.0],[119,250,67,1.0],[119,250,68,1.0],[119,250,69,1.0],[119,250,70,1.0],[119,250,71,1.0],[119,250,72,1.0],[119,250,73,1.0],[119,250,74,1.0],[119,250,75,1.0],[119,250,76,1.0],[119,250,77,1.0],[119,250,78,1.0],[119,250,79,1.0],[119,251,64,1.0],[119,251,65,1.0],[119,251,66,1.0],[119,251,67,1.0],[119,251,68,1.0],[119,251,69,1.0],[119,251,70,1.0],[119,251,71,1.0],[119,251,72,1.0],[119,251,73,1.0],[119,251,74,1.0],[119,251,75,1.0],[119,251,76,1.0],[119,251,77,1.0],[119,251,78,1.0],[119,251,79,1.0],[119,252,64,1.0],[119,252,65,1.0],[119,252,66,1.0],[119,252,67,1.0],[119,252,68,1.0],[119,252,69,1.0],[119,252,70,1.0],[119,252,71,1.0],[119,252,72,1.0],[119,252,73,1.0],[119,252,74,1.0],[119,252,75,1.0],[119,252,76,1.0],[119,252,77,1.0],[119,252,78,1.0],[119,252,79,1.0],[119,253,64,1.0],[119,253,65,1.0],[119,253,66,1.0],[119,253,67,1.0],[119,253,68,1.0],[119,253,69,1.0],[119,253,70,1.0],[119,253,71,1.0],[119,253,72,1.0],[119,253,73,1.0],[119,253,74,1.0],[119,253,75,1.0],[119,253,76,1.0],[119,253,77,1.0],[119,253,78,1.0],[119,253,79,1.0],[119,254,64,1.0],[119,254,65,1.0],[119,254,66,1.0],[119,254,67,1.0],[119,254,68,1.0],[119,254,69,1.0],[119,254,70,1.0],[119,254,71,1.0],[119,254,72,1.0],[119,254,73,1.0],[119,254,74,1.0],[119,254,75,1.0],[119,254,76,1.0],[119,254,77,1.0],[119,254,78,1.0],[119,254,79,1.0],[119,255,64,1.0],[119,255,65,1.0],[119,255,66,1.0],[119,255,67,1.0],[119,255,68,1.0],[119,255,69,1.0],[119,255,70,1.0],[119,255,71,1.0],[119,255,72,1.0],[119,255,73,1.0],[119,255,74,1.0],[119,255,75,1.0],[119,255,76,1.0],[119,255,77,1.0],[119,255,78,1.0],[119,255,79,1.0],[119,256,64,1.0],[119,256,65,1.0],[119,256,66,1.0],[119,256,67,1.0],[119,256,68,1.0],[119,256,69,1.0],[119,256,70,1.0],[119,256,71,1.0],[119,256,72,1.0],[119,256,73,1.0],[119,256,74,1.0],[119,256,75,1.0],[119,256,76,1.0],[119,256,77,1.0],[119,256,78,1.0],[119,256,79,1.0],[119,257,64,1.0],[119,257,65,1.0],[119,257,66,1.0],[119,257,67,1.0],[119,257,68,1.0],[119,257,69,1.0],[119,257,70,1.0],[119,257,71,1.0],[119,257,72,1.0],[119,257,73,1.0],[119,257,74,1.0],[119,257,75,1.0],[119,257,76,1.0],[119,257,77,1.0],[119,257,78,1.0],[119,257,79,1.0],[119,258,64,1.0],[119,258,65,1.0],[119,258,66,1.0],[119,258,67,1.0],[119,258,68,1.0],[119,258,69,1.0],[119,258,70,1.0],[119,258,71,1.0],[119,258,72,1.0],[119,258,73,1.0],[119,258,74,1.0],[119,258,75,1.0],[119,258,76,1.0],[119,258,77,1.0],[119,258,78,1.0],[119,258,79,1.0],[119,259,64,1.0],[119,259,65,1.0],[119,259,66,1.0],[119,259,67,1.0],[119,259,68,1.0],[119,259,69,1.0],[119,259,70,1.0],[119,259,71,1.0],[119,259,72,1.0],[119,259,73,1.0],[119,259,74,1.0],[119,259,75,1.0],[119,259,76,1.0],[119,259,77,1.0],[119,259,78,1.0],[119,259,79,1.0],[119,260,64,1.0],[119,260,65,1.0],[119,260,66,1.0],[119,260,67,1.0],[119,260,68,1.0],[119,260,69,1.0],[119,260,70,1.0],[119,260,71,1.0],[119,260,72,1.0],[119,260,73,1.0],[119,260,74,1.0],[119,260,75,1.0],[119,260,76,1.0],[119,260,77,1.0],[119,260,78,1.0],[119,260,79,1.0],[119,261,64,1.0],[119,261,65,1.0],[119,261,66,1.0],[119,261,67,1.0],[119,261,68,1.0],[119,261,69,1.0],[119,261,70,1.0],[119,261,71,1.0],[119,261,72,1.0],[119,261,73,1.0],[119,261,74,1.0],[119,261,75,1.0],[119,261,76,1.0],[119,261,77,1.0],[119,261,78,1.0],[119,261,79,1.0],[119,262,64,1.0],[119,262,65,1.0],[119,262,66,1.0],[119,262,67,1.0],[119,262,68,1.0],[119,262,69,1.0],[119,262,70,1.0],[119,262,71,1.0],[119,262,72,1.0],[119,262,73,1.0],[119,262,74,1.0],[119,262,75,1.0],[119,262,76,1.0],[119,262,77,1.0],[119,262,78,1.0],[119,262,79,1.0],[119,263,64,1.0],[119,263,65,1.0],[119,263,66,1.0],[119,263,67,1.0],[119,263,68,1.0],[119,263,69,1.0],[119,263,70,1.0],[119,263,71,1.0],[119,263,72,1.0],[119,263,73,1.0],[119,263,74,1.0],[119,263,75,1.0],[119,263,76,1.0],[119,263,77,1.0],[119,263,78,1.0],[119,263,79,1.0],[119,264,64,1.0],[119,264,65,1.0],[119,264,66,1.0],[119,264,67,1.0],[119,264,68,1.0],[119,264,69,1.0],[119,264,70,1.0],[119,264,71,1.0],[119,264,72,1.0],[119,264,73,1.0],[119,264,74,1.0],[119,264,75,1.0],[119,264,76,1.0],[119,264,77,1.0],[119,264,78,1.0],[119,264,79,1.0],[119,265,64,1.0],[119,265,65,1.0],[119,265,66,1.0],[119,265,67,1.0],[119,265,68,1.0],[119,265,69,1.0],[119,265,70,1.0],[119,265,71,1.0],[119,265,72,1.0],[119,265,73,1.0],[119,265,74,1.0],[119,265,75,1.0],[119,265,76,1.0],[119,265,77,1.0],[119,265,78,1.0],[119,265,79,1.0],[119,266,64,1.0],[119,266,65,1.0],[119,266,66,1.0],[119,266,67,1.0],[119,266,68,1.0],[119,266,69,1.0],[119,266,70,1.0],[119,266,71,1.0],[119,266,72,1.0],[119,266,73,1.0],[119,266,74,1.0],[119,266,75,1.0],[119,266,76,1.0],[119,266,77,1.0],[119,266,78,1.0],[119,266,79,1.0],[119,267,64,1.0],[119,267,65,1.0],[119,267,66,1.0],[119,267,67,1.0],[119,267,68,1.0],[119,267,69,1.0],[119,267,70,1.0],[119,267,71,1.0],[119,267,72,1.0],[119,267,73,1.0],[119,267,74,1.0],[119,267,75,1.0],[119,267,76,1.0],[119,267,77,1.0],[119,267,78,1.0],[119,267,79,1.0],[119,268,64,1.0],[119,268,65,1.0],[119,268,66,1.0],[119,268,67,1.0],[119,268,68,1.0],[119,268,69,1.0],[119,268,70,1.0],[119,268,71,1.0],[119,268,72,1.0],[119,268,73,1.0],[119,268,74,1.0],[119,268,75,1.0],[119,268,76,1.0],[119,268,77,1.0],[119,268,78,1.0],[119,268,79,1.0],[119,269,64,1.0],[119,269,65,1.0],[119,269,66,1.0],[119,269,67,1.0],[119,269,68,1.0],[119,269,69,1.0],[119,269,70,1.0],[119,269,71,1.0],[119,269,72,1.0],[119,269,73,1.0],[119,269,74,1.0],[119,269,75,1.0],[119,269,76,1.0],[119,269,77,1.0],[119,269,78,1.0],[119,269,79,1.0],[119,270,64,1.0],[119,270,65,1.0],[119,270,66,1.0],[119,270,67,1.0],[119,270,68,1.0],[119,270,69,1.0],[119,270,70,1.0],[119,270,71,1.0],[119,270,72,1.0],[119,270,73,1.0],[119,270,74,1.0],[119,270,75,1.0],[119,270,76,1.0],[119,270,77,1.0],[119,270,78,1.0],[119,270,79,1.0],[119,271,64,1.0],[119,271,65,1.0],[119,271,66,1.0],[119,271,67,1.0],[119,271,68,1.0],[119,271,69,1.0],[119,271,70,1.0],[119,271,71,1.0],[119,271,72,1.0],[119,271,73,1.0],[119,271,74,1.0],[119,271,75,1.0],[119,271,76,1.0],[119,271,77,1.0],[119,271,78,1.0],[119,271,79,1.0],[119,272,64,1.0],[119,272,65,1.0],[119,272,66,1.0],[119,272,67,1.0],[119,272,68,1.0],[119,272,69,1.0],[119,272,70,1.0],[119,272,71,1.0],[119,272,72,1.0],[119,272,73,1.0],[119,272,74,1.0],[119,272,75,1.0],[119,272,76,1.0],[119,272,77,1.0],[119,272,78,1.0],[119,272,79,1.0],[119,273,64,1.0],[119,273,65,1.0],[119,273,66,1.0],[119,273,67,1.0],[119,273,68,1.0],[119,273,69,1.0],[119,273,70,1.0],[119,273,71,1.0],[119,273,72,1.0],[119,273,73,1.0],[119,273,74,1.0],[119,273,75,1.0],[119,273,76,1.0],[119,273,77,1.0],[119,273,78,1.0],[119,273,79,1.0],[119,274,64,1.0],[119,274,65,1.0],[119,274,66,1.0],[119,274,67,1.0],[119,274,68,1.0],[119,274,69,1.0],[119,274,70,1.0],[119,274,71,1.0],[119,274,72,1.0],[119,274,73,1.0],[119,274,74,1.0],[119,274,75,1.0],[119,274,76,1.0],[119,274,77,1.0],[119,274,78,1.0],[119,274,79,1.0],[119,275,64,1.0],[119,275,65,1.0],[119,275,66,1.0],[119,275,67,1.0],[119,275,68,1.0],[119,275,69,1.0],[119,275,70,1.0],[119,275,71,1.0],[119,275,72,1.0],[119,275,73,1.0],[119,275,74,1.0],[119,275,75,1.0],[119,275,76,1.0],[119,275,77,1.0],[119,275,78,1.0],[119,275,79,1.0],[119,276,64,1.0],[119,276,65,1.0],[119,276,66,1.0],[119,276,67,1.0],[119,276,68,1.0],[119,276,69,1.0],[119,276,70,1.0],[119,276,71,1.0],[119,276,72,1.0],[119,276,73,1.0],[119,276,74,1.0],[119,276,75,1.0],[119,276,76,1.0],[119,276,77,1.0],[119,276,78,1.0],[119,276,79,1.0],[119,277,64,1.0],[119,277,65,1.0],[119,277,66,1.0],[119,277,67,1.0],[119,277,68,1.0],[119,277,69,1.0],[119,277,70,1.0],[119,277,71,1.0],[119,277,72,1.0],[119,277,73,1.0],[119,277,74,1.0],[119,277,75,1.0],[119,277,76,1.0],[119,277,77,1.0],[119,277,78,1.0],[119,277,79,1.0],[119,278,64,1.0],[119,278,65,1.0],[119,278,66,1.0],[119,278,67,1.0],[119,278,68,1.0],[119,278,69,1.0],[119,278,70,1.0],[119,278,71,1.0],[119,278,72,1.0],[119,278,73,1.0],[119,278,74,1.0],[119,278,75,1.0],[119,278,76,1.0],[119,278,77,1.0],[119,278,78,1.0],[119,278,79,1.0],[119,279,64,1.0],[119,279,65,1.0],[119,279,66,1.0],[119,279,67,1.0],[119,279,68,1.0],[119,279,69,1.0],[119,279,70,1.0],[119,279,71,1.0],[119,279,72,1.0],[119,279,73,1.0],[119,279,74,1.0],[119,279,75,1.0],[119,279,76,1.0],[119,279,77,1.0],[119,279,78,1.0],[119,279,79,1.0],[119,280,64,1.0],[119,280,65,1.0],[119,280,66,1.0],[119,280,67,1.0],[119,280,68,1.0],[119,280,69,1.0],[119,280,70,1.0],[119,280,71,1.0],[119,280,72,1.0],[119,280,73,1.0],[119,280,74,1.0],[119,280,75,1.0],[119,280,76,1.0],[119,280,77,1.0],[119,280,78,1.0],[119,280,79,1.0],[119,281,64,1.0],[119,281,65,1.0],[119,281,66,1.0],[119,281,67,1.0],[119,281,68,1.0],[119,281,69,1.0],[119,281,70,1.0],[119,281,71,1.0],[119,281,72,1.0],[119,281,73,1.0],[119,281,74,1.0],[119,281,75,1.0],[119,281,76,1.0],[119,281,77,1.0],[119,281,78,1.0],[119,281,79,1.0],[119,282,64,1.0],[119,282,65,1.0],[119,282,66,1.0],[119,282,67,1.0],[119,282,68,1.0],[119,282,69,1.0],[119,282,70,1.0],[119,282,71,1.0],[119,282,72,1.0],[119,282,73,1.0],[119,282,74,1.0],[119,282,75,1.0],[119,282,76,1.0],[119,282,77,1.0],[119,282,78,1.0],[119,282,79,1.0],[119,283,64,1.0],[119,283,65,1.0],[119,283,66,1.0],[119,283,67,1.0],[119,283,68,1.0],[119,283,69,1.0],[119,283,70,1.0],[119,283,71,1.0],[119,283,72,1.0],[119,283,73,1.0],[119,283,74,1.0],[119,283,75,1.0],[119,283,76,1.0],[119,283,77,1.0],[119,283,78,1.0],[119,283,79,1.0],[119,284,64,1.0],[119,284,65,1.0],[119,284,66,1.0],[119,284,67,1.0],[119,284,68,1.0],[119,284,69,1.0],[119,284,70,1.0],[119,284,71,1.0],[119,284,72,1.0],[119,284,73,1.0],[119,284,74,1.0],[119,284,75,1.0],[119,284,76,1.0],[119,284,77,1.0],[119,284,78,1.0],[119,284,79,1.0],[119,285,64,1.0],[119,285,65,1.0],[119,285,66,1.0],[119,285,67,1.0],[119,285,68,1.0],[119,285,69,1.0],[119,285,70,1.0],[119,285,71,1.0],[119,285,72,1.0],[119,285,73,1.0],[119,285,74,1.0],[119,285,75,1.0],[119,285,76,1.0],[119,285,77,1.0],[119,285,78,1.0],[119,285,79,1.0],[119,286,64,1.0],[119,286,65,1.0],[119,286,66,1.0],[119,286,67,1.0],[119,286,68,1.0],[119,286,69,1.0],[119,286,70,1.0],[119,286,71,1.0],[119,286,72,1.0],[119,286,73,1.0],[119,286,74,1.0],[119,286,75,1.0],[119,286,76,1.0],[119,286,77,1.0],[119,286,78,1.0],[119,286,79,1.0],[119,287,64,1.0],[119,287,65,1.0],[119,287,66,1.0],[119,287,67,1.0],[119,287,68,1.0],[119,287,69,1.0],[119,287,70,1.0],[119,287,71,1.0],[119,287,72,1.0],[119,287,73,1.0],[119,287,74,1.0],[119,287,75,1.0],[119,287,76,1.0],[119,287,77,1.0],[119,287,78,1.0],[119,287,79,1.0],[119,288,64,1.0],[119,288,65,1.0],[119,288,66,1.0],[119,288,67,1.0],[119,288,68,1.0],[119,288,69,1.0],[119,288,70,1.0],[119,288,71,1.0],[119,288,72,1.0],[119,288,73,1.0],[119,288,74,1.0],[119,288,75,1.0],[119,288,76,1.0],[119,288,77,1.0],[119,288,78,1.0],[119,288,79,1.0],[119,289,64,1.0],[119,289,65,1.0],[119,289,66,1.0],[119,289,67,1.0],[119,289,68,1.0],[119,289,69,1.0],[119,289,70,1.0],[119,289,71,1.0],[119,289,72,1.0],[119,289,73,1.0],[119,289,74,1.0],[119,289,75,1.0],[119,289,76,1.0],[119,289,77,1.0],[119,289,78,1.0],[119,289,79,1.0],[119,290,64,1.0],[119,290,65,1.0],[119,290,66,1.0],[119,290,67,1.0],[119,290,68,1.0],[119,290,69,1.0],[119,290,70,1.0],[119,290,71,1.0],[119,290,72,1.0],[119,290,73,1.0],[119,290,74,1.0],[119,290,75,1.0],[119,290,76,1.0],[119,290,77,1.0],[119,290,78,1.0],[119,290,79,1.0],[119,291,64,1.0],[119,291,65,1.0],[119,291,66,1.0],[119,291,67,1.0],[119,291,68,1.0],[119,291,69,1.0],[119,291,70,1.0],[119,291,71,1.0],[119,291,72,1.0],[119,291,73,1.0],[119,291,74,1.0],[119,291,75,1.0],[119,291,76,1.0],[119,291,77,1.0],[119,291,78,1.0],[119,291,79,1.0],[119,292,64,1.0],[119,292,65,1.0],[119,292,66,1.0],[119,292,67,1.0],[119,292,68,1.0],[119,292,69,1.0],[119,292,70,1.0],[119,292,71,1.0],[119,292,72,1.0],[119,292,73,1.0],[119,292,74,1.0],[119,292,75,1.0],[119,292,76,1.0],[119,292,77,1.0],[119,292,78,1.0],[119,292,79,1.0],[119,293,64,1.0],[119,293,65,1.0],[119,293,66,1.0],[119,293,67,1.0],[119,293,68,1.0],[119,293,69,1.0],[119,293,70,1.0],[119,293,71,1.0],[119,293,72,1.0],[119,293,73,1.0],[119,293,74,1.0],[119,293,75,1.0],[119,293,76,1.0],[119,293,77,1.0],[119,293,78,1.0],[119,293,79,1.0],[119,294,64,1.0],[119,294,65,1.0],[119,294,66,1.0],[119,294,67,1.0],[119,294,68,1.0],[119,294,69,1.0],[119,294,70,1.0],[119,294,71,1.0],[119,294,72,1.0],[119,294,73,1.0],[119,294,74,1.0],[119,294,75,1.0],[119,294,76,1.0],[119,294,77,1.0],[119,294,78,1.0],[119,294,79,1.0],[119,295,64,1.0],[119,295,65,1.0],[119,295,66,1.0],[119,295,67,1.0],[119,295,68,1.0],[119,295,69,1.0],[119,295,70,1.0],[119,295,71,1.0],[119,295,72,1.0],[119,295,73,1.0],[119,295,74,1.0],[119,295,75,1.0],[119,295,76,1.0],[119,295,77,1.0],[119,295,78,1.0],[119,295,79,1.0],[119,296,64,1.0],[119,296,65,1.0],[119,296,66,1.0],[119,296,67,1.0],[119,296,68,1.0],[119,296,69,1.0],[119,296,70,1.0],[119,296,71,1.0],[119,296,72,1.0],[119,296,73,1.0],[119,296,74,1.0],[119,296,75,1.0],[119,296,76,1.0],[119,296,77,1.0],[119,296,78,1.0],[119,296,79,1.0],[119,297,64,1.0],[119,297,65,1.0],[119,297,66,1.0],[119,297,67,1.0],[119,297,68,1.0],[119,297,69,1.0],[119,297,70,1.0],[119,297,71,1.0],[119,297,72,1.0],[119,297,73,1.0],[119,297,74,1.0],[119,297,75,1.0],[119,297,76,1.0],[119,297,77,1.0],[119,297,78,1.0],[119,297,79,1.0],[119,298,64,1.0],[119,298,65,1.0],[119,298,66,1.0],[119,298,67,1.0],[119,298,68,1.0],[119,298,69,1.0],[119,298,70,1.0],[119,298,71,1.0],[119,298,72,1.0],[119,298,73,1.0],[119,298,74,1.0],[119,298,75,1.0],[119,298,76,1.0],[119,298,77,1.0],[119,298,78,1.0],[119,298,79,1.0],[119,299,64,1.0],[119,299,65,1.0],[119,299,66,1.0],[119,299,67,1.0],[119,299,68,1.0],[119,299,69,1.0],[119,299,70,1.0],[119,299,71,1.0],[119,299,72,1.0],[119,299,73,1.0],[119,299,74,1.0],[119,299,75,1.0],[119,299,76,1.0],[119,299,77,1.0],[119,299,78,1.0],[119,299,79,1.0],[119,300,64,1.0],[119,300,65,1.0],[119,300,66,1.0],[119,300,67,1.0],[119,300,68,1.0],[119,300,69,1.0],[119,300,70,1.0],[119,300,71,1.0],[119,300,72,1.0],[119,300,73,1.0],[119,300,74,1.0],[119,300,75,1.0],[119,300,76,1.0],[119,300,77,1.0],[119,300,78,1.0],[119,300,79,1.0],[119,301,64,1.0],[119,301,65,1.0],[119,301,66,1.0],[119,301,67,1.0],[119,301,68,1.0],[119,301,69,1.0],[119,301,70,1.0],[119,301,71,1.0],[119,301,72,1.0],[119,301,73,1.0],[119,301,74,1.0],[119,301,75,1.0],[119,301,76,1.0],[119,301,77,1.0],[119,301,78,1.0],[119,301,79,1.0],[119,302,64,1.0],[119,302,65,1.0],[119,302,66,1.0],[119,302,67,1.0],[119,302,68,1.0],[119,302,69,1.0],[119,302,70,1.0],[119,302,71,1.0],[119,302,72,1.0],[119,302,73,1.0],[119,302,74,1.0],[119,302,75,1.0],[119,302,76,1.0],[119,302,77,1.0],[119,302,78,1.0],[119,302,79,1.0],[119,303,64,1.0],[119,303,65,1.0],[119,303,66,1.0],[119,303,67,1.0],[119,303,68,1.0],[119,303,69,1.0],[119,303,70,1.0],[119,303,71,1.0],[119,303,72,1.0],[119,303,73,1.0],[119,303,74,1.0],[119,303,75,1.0],[119,303,76,1.0],[119,303,77,1.0],[119,303,78,1.0],[119,303,79,1.0],[119,304,64,1.0],[119,304,65,1.0],[119,304,66,1.0],[119,304,67,1.0],[119,304,68,1.0],[119,304,69,1.0],[119,304,70,1.0],[119,304,71,1.0],[119,304,72,1.0],[119,304,73,1.0],[119,304,74,1.0],[119,304,75,1.0],[119,304,76,1.0],[119,304,77,1.0],[119,304,78,1.0],[119,304,79,1.0],[119,305,64,1.0],[119,305,65,1.0],[119,305,66,1.0],[119,305,67,1.0],[119,305,68,1.0],[119,305,69,1.0],[119,305,70,1.0],[119,305,71,1.0],[119,305,72,1.0],[119,305,73,1.0],[119,305,74,1.0],[119,305,75,1.0],[119,305,76,1.0],[119,305,77,1.0],[119,305,78,1.0],[119,305,79,1.0],[119,306,64,1.0],[119,306,65,1.0],[119,306,66,1.0],[119,306,67,1.0],[119,306,68,1.0],[119,306,69,1.0],[119,306,70,1.0],[119,306,71,1.0],[119,306,72,1.0],[119,306,73,1.0],[119,306,74,1.0],[119,306,75,1.0],[119,306,76,1.0],[119,306,77,1.0],[119,306,78,1.0],[119,306,79,1.0],[119,307,64,1.0],[119,307,65,1.0],[119,307,66,1.0],[119,307,67,1.0],[119,307,68,1.0],[119,307,69,1.0],[119,307,70,1.0],[119,307,71,1.0],[119,307,72,1.0],[119,307,73,1.0],[119,307,74,1.0],[119,307,75,1.0],[119,307,76,1.0],[119,307,77,1.0],[119,307,78,1.0],[119,307,79,1.0],[119,308,64,1.0],[119,308,65,1.0],[119,308,66,1.0],[119,308,67,1.0],[119,308,68,1.0],[119,308,69,1.0],[119,308,70,1.0],[119,308,71,1.0],[119,308,72,1.0],[119,308,73,1.0],[119,308,74,1.0],[119,308,75,1.0],[119,308,76,1.0],[119,308,77,1.0],[119,308,78,1.0],[119,308,79,1.0],[119,309,64,1.0],[119,309,65,1.0],[119,309,66,1.0],[119,309,67,1.0],[119,309,68,1.0],[119,309,69,1.0],[119,309,70,1.0],[119,309,71,1.0],[119,309,72,1.0],[119,309,73,1.0],[119,309,74,1.0],[119,309,75,1.0],[119,309,76,1.0],[119,309,77,1.0],[119,309,78,1.0],[119,309,79,1.0],[119,310,64,1.0],[119,310,65,1.0],[119,310,66,1.0],[119,310,67,1.0],[119,310,68,1.0],[119,310,69,1.0],[119,310,70,1.0],[119,310,71,1.0],[119,310,72,1.0],[119,310,73,1.0],[119,310,74,1.0],[119,310,75,1.0],[119,310,76,1.0],[119,310,77,1.0],[119,310,78,1.0],[119,310,79,1.0],[119,311,64,1.0],[119,311,65,1.0],[119,311,66,1.0],[119,311,67,1.0],[119,311,68,1.0],[119,311,69,1.0],[119,311,70,1.0],[119,311,71,1.0],[119,311,72,1.0],[119,311,73,1.0],[119,311,74,1.0],[119,311,75,1.0],[119,311,76,1.0],[119,311,77,1.0],[119,311,78,1.0],[119,311,79,1.0],[119,312,64,1.0],[119,312,65,1.0],[119,312,66,1.0],[119,312,67,1.0],[119,312,68,1.0],[119,312,69,1.0],[119,312,70,1.0],[119,312,71,1.0],[119,312,72,1.0],[119,312,73,1.0],[119,312,74,1.0],[119,312,75,1.0],[119,312,76,1.0],[119,312,77,1.0],[119,312,78,1.0],[119,312,79,1.0],[119,313,64,1.0],[119,313,65,1.0],[119,313,66,1.0],[119,313,67,1.0],[119,313,68,1.0],[119,313,69,1.0],[119,313,70,1.0],[119,313,71,1.0],[119,313,72,1.0],[119,313,73,1.0],[119,313,74,1.0],[119,313,75,1.0],[119,313,76,1.0],[119,313,77,1.0],[119,313,78,1.0],[119,313,79,1.0],[119,314,64,1.0],[119,314,65,1.0],[119,314,66,1.0],[119,314,67,1.0],[119,314,68,1.0],[119,314,69,1.0],[119,314,70,1.0],[119,314,71,1.0],[119,314,72,1.0],[119,314,73,1.0],[119,314,74,1.0],[119,314,75,1.0],[119,314,76,1.0],[119,314,77,1.0],[119,314,78,1.0],[119,314,79,1.0],[119,315,64,1.0],[119,315,65,1.0],[119,315,66,1.0],[119,315,67,1.0],[119,315,68,1.0],[119,315,69,1.0],[119,315,70,1.0],[119,315,71,1.0],[119,315,72,1.0],[119,315,73,1.0],[119,315,74,1.0],[119,315,75,1.0],[119,315,76,1.0],[119,315,77,1.0],[119,315,78,1.0],[119,315,79,1.0],[119,316,64,1.0],[119,316,65,1.0],[119,316,66,1.0],[119,316,67,1.0],[119,316,68,1.0],[119,316,69,1.0],[119,316,70,1.0],[119,316,71,1.0],[119,316,72,1.0],[119,316,73,1.0],[119,316,74,1.0],[119,316,75,1.0],[119,316,76,1.0],[119,316,77,1.0],[119,316,78,1.0],[119,316,79,1.0],[119,317,64,1.0],[119,317,65,1.0],[119,317,66,1.0],[119,317,67,1.0],[119,317,68,1.0],[119,317,69,1.0],[119,317,70,1.0],[119,317,71,1.0],[119,317,72,1.0],[119,317,73,1.0],[119,317,74,1.0],[119,317,75,1.0],[119,317,76,1.0],[119,317,77,1.0],[119,317,78,1.0],[119,317,79,1.0],[119,318,64,1.0],[119,318,65,1.0],[119,318,66,1.0],[119,318,67,1.0],[119,318,68,1.0],[119,318,69,1.0],[119,318,70,1.0],[119,318,71,1.0],[119,318,72,1.0],[119,318,73,1.0],[119,318,74,1.0],[119,318,75,1.0],[119,318,76,1.0],[119,318,77,1.0],[119,318,78,1.0],[119,318,79,1.0],[119,319,64,1.0],[119,319,65,1.0],[119,319,66,1.0],[119,319,67,1.0],[119,319,68,1.0],[119,319,69,1.0],[119,319,70,1.0],[119,319,71,1.0],[119,319,72,1.0],[119,319,73,1.0],[119,319,74,1.0],[119,319,75,1.0],[119,319,76,1.0],[119,319,77,1.0],[119,319,78,1.0],[119,319,79,1.0],[120,-64,64,1.0],[120,-64,65,1.0],[120,-64,66,1.0],[120,-64,67,1.0],[120,-64,68,1.0],[120,-64,69,1.0],[120,-64,70,1.0],[120,-64,71,1.0],[120,-64,72,1.0],[120,-64,73,1.0],[120,-64,74,1.0],[120,-64,75,1.0],[120,-64,76,1.0],[120,-64,77,1.0],[120,-64,78,1.0],[120,-64,79,1.0],[120,-63,64,1.0],[120,-63,65,1.0],[120,-63,66,1.0],[120,-63,67,1.0],[120,-63,68,1.0],[120,-63,69,1.0],[120,-63,70,1.0],[120,-63,71,1.0],[120,-63,72,1.0],[120,-63,73,1.0],[120,-63,74,1.0],[120,-63,75,1.0],[120,-63,76,1.0],[120,-63,77,1.0],[120,-63,78,1.0],[120,-63,79,1.0],[120,-62,64,1.0],[120,-62,65,1.0],[120,-62,66,1.0],[120,-62,67,1.0],[120,-62,68,1.0],[120,-62,69,1.0],[120,-62,70,1.0],[120,-62,71,1.0],[120,-62,72,1.0],[120,-62,73,1.0],[120,-62,74,1.0],[120,-62,75,1.0],[120,-62,76,1.0],[120,-62,77,1.0],[120,-62,78,1.0],[120,-62,79,1.0],[120,-61,64,1.0],[120,-61,65,1.0],[120,-61,66,1.0],[120,-61,67,1.0],[120,-61,68,1.0],[120,-61,69,1.0],[120,-61,70,1.0],[120,-61,71,1.0],[120,-61,72,1.0],[120,-61,73,1.0],[120,-61,74,1.0],[120,-61,75,1.0],[120,-61,76,1.0],[120,-61,77,1.0],[120,-61,78,1.0],[120,-61,79,1.0],[120,-60,64,1.0],[120,-60,65,1.0],[120,-60,66,1.0],[120,-60,67,1.0],[120,-60,68,1.0],[120,-60,69,1.0],[120,-60,70,1.0],[120,-60,71,1.0],[120,-60,72,1.0],[120,-60,73,1.0],[120,-60,74,1.0],[120,-60,75,1.0],[120,-60,76,1.0],[120,-60,77,1.0],[120,-60,78,1.0],[120,-60,79,1.0],[120,-59,64,1.0],[120,-59,65,1.0],[120,-59,66,1.0],[120,-59,67,1.0],[120,-59,68,1.0],[120,-59,69,1.0],[120,-59,70,1.0],[120,-59,71,1.0],[120,-59,72,1.0],[120,-59,73,1.0],[120,-59,74,1.0],[120,-59,75,1.0],[120,-59,76,1.0],[120,-59,77,1.0],[120,-59,78,1.0],[120,-59,79,1.0],[120,-58,64,1.0],[120,-58,65,1.0],[120,-58,66,1.0],[120,-58,67,1.0],[120,-58,68,1.0],[120,-58,69,1.0],[120,-58,70,1.0],[120,-58,71,1.0],[120,-58,72,1.0],[120,-58,73,1.0],[120,-58,74,1.0],[120,-58,75,1.0],[120,-58,76,1.0],[120,-58,77,1.0],[120,-58,78,1.0],[120,-58,79,1.0],[120,-57,64,1.0],[120,-57,65,1.0],[120,-57,66,1.0],[120,-57,67,1.0],[120,-57,68,1.0],[120,-57,69,1.0],[120,-57,70,1.0],[120,-57,71,1.0],[120,-57,72,1.0],[120,-57,73,1.0],[120,-57,74,1.0],[120,-57,75,1.0],[120,-57,76,1.0],[120,-57,77,1.0],[120,-57,78,1.0],[120,-57,79,1.0],[120,-56,64,1.0],[120,-56,65,1.0],[120,-56,66,1.0],[120,-56,67,1.0],[120,-56,68,1.0],[120,-56,69,1.0],[120,-56,70,1.0],[120,-56,71,1.0],[120,-56,72,1.0],[120,-56,73,1.0],[120,-56,74,1.0],[120,-56,75,1.0],[120,-56,76,1.0],[120,-56,77,1.0],[120,-56,78,1.0],[120,-56,79,1.0],[120,-55,64,1.0],[120,-55,65,1.0],[120,-55,66,1.0],[120,-55,67,1.0],[120,-55,68,1.0],[120,-55,69,1.0],[120,-55,70,1.0],[120,-55,71,1.0],[120,-55,72,1.0],[120,-55,73,1.0],[120,-55,74,1.0],[120,-55,75,1.0],[120,-55,76,1.0],[120,-55,77,1.0],[120,-55,78,1.0],[120,-55,79,1.0],[120,-54,64,1.0],[120,-54,65,1.0],[120,-54,66,1.0],[120,-54,67,1.0],[120,-54,68,1.0],[120,-54,69,1.0],[120,-54,70,1.0],[120,-54,71,1.0],[120,-54,72,1.0],[120,-54,73,1.0],[120,-54,74,1.0],[120,-54,75,1.0],[120,-54,76,1.0],[120,-54,77,1.0],[120,-54,78,1.0],[120,-54,79,1.0],[120,-53,64,1.0],[120,-53,65,1.0],[120,-53,66,1.0],[120,-53,67,1.0],[120,-53,68,1.0],[120,-53,69,1.0],[120,-53,70,1.0],[120,-53,71,1.0],[120,-53,72,1.0],[120,-53,73,1.0],[120,-53,74,1.0],[120,-53,75,1.0],[120,-53,76,1.0],[120,-53,77,1.0],[120,-53,78,1.0],[120,-53,79,1.0],[120,-52,64,1.0],[120,-52,65,1.0],[120,-52,66,1.0],[120,-52,67,1.0],[120,-52,68,1.0],[120,-52,69,1.0],[120,-52,70,1.0],[120,-52,71,1.0],[120,-52,72,1.0],[120,-52,73,1.0],[120,-52,74,1.0],[120,-52,75,1.0],[120,-52,76,1.0],[120,-52,77,1.0],[120,-52,78,1.0],[120,-52,79,1.0],[120,-51,64,1.0],[120,-51,65,1.0],[120,-51,66,1.0],[120,-51,67,1.0],[120,-51,68,1.0],[120,-51,69,1.0],[120,-51,70,1.0],[120,-51,71,1.0],[120,-51,72,1.0],[120,-51,73,1.0],[120,-51,74,1.0],[120,-51,75,1.0],[120,-51,76,1.0],[120,-51,77,1.0],[120,-51,78,1.0],[120,-51,79,1.0],[120,-50,64,1.0],[120,-50,65,1.0],[120,-50,66,1.0],[120,-50,67,1.0],[120,-50,68,1.0],[120,-50,69,1.0],[120,-50,70,1.0],[120,-50,71,1.0],[120,-50,72,1.0],[120,-50,73,1.0],[120,-50,74,1.0],[120,-50,75,1.0],[120,-50,76,1.0],[120,-50,77,1.0],[120,-50,78,1.0],[120,-50,79,1.0],[120,-49,64,1.0],[120,-49,65,1.0],[120,-49,66,1.0],[120,-49,67,1.0],[120,-49,68,1.0],[120,-49,69,1.0],[120,-49,70,1.0],[120,-49,71,1.0],[120,-49,72,1.0],[120,-49,73,1.0],[120,-49,74,1.0],[120,-49,75,1.0],[120,-49,76,1.0],[120,-49,77,1.0],[120,-49,78,1.0],[120,-49,79,1.0],[120,-48,64,1.0],[120,-48,65,1.0],[120,-48,66,1.0],[120,-48,67,1.0],[120,-48,68,1.0],[120,-48,69,1.0],[120,-48,70,1.0],[120,-48,71,1.0],[120,-48,72,1.0],[120,-48,73,1.0],[120,-48,74,1.0],[120,-48,75,1.0],[120,-48,76,1.0],[120,-48,77,1.0],[120,-48,78,1.0],[120,-48,79,1.0],[120,-47,64,1.0],[120,-47,65,1.0],[120,-47,66,1.0],[120,-47,67,1.0],[120,-47,68,1.0],[120,-47,69,1.0],[120,-47,70,1.0],[120,-47,71,1.0],[120,-47,72,1.0],[120,-47,73,1.0],[120,-47,74,1.0],[120,-47,75,1.0],[120,-47,76,1.0],[120,-47,77,1.0],[120,-47,78,1.0],[120,-47,79,1.0],[120,-46,64,1.0],[120,-46,65,1.0],[120,-46,66,1.0],[120,-46,67,1.0],[120,-46,68,1.0],[120,-46,69,1.0],[120,-46,70,1.0],[120,-46,71,1.0],[120,-46,72,1.0],[120,-46,73,1.0],[120,-46,74,1.0],[120,-46,75,1.0],[120,-46,76,1.0],[120,-46,77,1.0],[120,-46,78,1.0],[120,-46,79,1.0],[120,-45,64,1.0],[120,-45,65,1.0],[120,-45,66,1.0],[120,-45,67,1.0],[120,-45,68,1.0],[120,-45,69,1.0],[120,-45,70,1.0],[120,-45,71,1.0],[120,-45,72,1.0],[120,-45,73,1.0],[120,-45,74,1.0],[120,-45,75,1.0],[120,-45,76,1.0],[120,-45,77,1.0],[120,-45,78,1.0],[120,-45,79,1.0],[120,-44,64,1.0],[120,-44,65,1.0],[120,-44,66,1.0],[120,-44,67,1.0],[120,-44,68,1.0],[120,-44,69,1.0],[120,-44,70,1.0],[120,-44,71,1.0],[120,-44,72,1.0],[120,-44,73,1.0],[120,-44,74,1.0],[120,-44,75,1.0],[120,-44,76,1.0],[120,-44,77,1.0],[120,-44,78,1.0],[120,-44,79,1.0],[120,-43,64,1.0],[120,-43,65,1.0],[120,-43,66,1.0],[120,-43,67,1.0],[120,-43,68,1.0],[120,-43,69,1.0],[120,-43,70,1.0],[120,-43,71,1.0],[120,-43,72,1.0],[120,-43,73,1.0],[120,-43,74,1.0],[120,-43,75,1.0],[120,-43,76,1.0],[120,-43,77,1.0],[120,-43,78,1.0],[120,-43,79,1.0],[120,-42,64,1.0],[120,-42,65,1.0],[120,-42,66,1.0],[120,-42,67,1.0],[120,-42,68,1.0],[120,-42,69,1.0],[120,-42,70,1.0],[120,-42,71,1.0],[120,-42,72,1.0],[120,-42,73,1.0],[120,-42,74,1.0],[120,-42,75,1.0],[120,-42,76,1.0],[120,-42,77,1.0],[120,-42,78,1.0],[120,-42,79,1.0],[120,-41,64,1.0],[120,-41,65,1.0],[120,-41,66,1.0],[120,-41,67,1.0],[120,-41,68,1.0],[120,-41,69,1.0],[120,-41,70,1.0],[120,-41,71,1.0],[120,-41,72,1.0],[120,-41,73,1.0],[120,-41,74,1.0],[120,-41,75,1.0],[120,-41,76,1.0],[120,-41,77,1.0],[120,-41,78,1.0],[120,-41,79,1.0],[120,-40,64,1.0],[120,-40,65,1.0],[120,-40,66,1.0],[120,-40,67,1.0],[120,-40,68,1.0],[120,-40,69,1.0],[120,-40,70,1.0],[120,-40,71,1.0],[120,-40,72,1.0],[120,-40,73,1.0],[120,-40,74,1.0],[120,-40,75,1.0],[120,-40,76,1.0],[120,-40,77,1.0],[120,-40,78,1.0],[120,-40,79,1.0],[120,-39,64,1.0],[120,-39,65,1.0],[120,-39,66,1.0],[120,-39,67,1.0],[120,-39,68,1.0],[120,-39,69,1.0],[120,-39,70,1.0],[120,-39,71,1.0],[120,-39,72,1.0],[120,-39,73,1.0],[120,-39,74,1.0],[120,-39,75,1.0],[120,-39,76,1.0],[120,-39,77,1.0],[120,-39,78,1.0],[120,-39,79,1.0],[120,-38,64,1.0],[120,-38,65,1.0],[120,-38,66,1.0],[120,-38,67,1.0],[120,-38,68,1.0],[120,-38,69,1.0],[120,-38,70,1.0],[120,-38,71,1.0],[120,-38,72,1.0],[120,-38,73,1.0],[120,-38,74,1.0],[120,-38,75,1.0],[120,-38,76,1.0],[120,-38,77,1.0],[120,-38,78,1.0],[120,-38,79,1.0],[120,-37,64,1.0],[120,-37,65,1.0],[120,-37,66,1.0],[120,-37,67,1.0],[120,-37,68,1.0],[120,-37,69,1.0],[120,-37,70,1.0],[120,-37,71,1.0],[120,-37,72,1.0],[120,-37,73,1.0],[120,-37,74,1.0],[120,-37,75,1.0],[120,-37,76,1.0],[120,-37,77,1.0],[120,-37,78,1.0],[120,-37,79,1.0],[120,-36,64,1.0],[120,-36,65,1.0],[120,-36,66,1.0],[120,-36,67,1.0],[120,-36,68,1.0],[120,-36,69,1.0],[120,-36,70,1.0],[120,-36,71,1.0],[120,-36,72,1.0],[120,-36,73,1.0],[120,-36,74,1.0],[120,-36,75,1.0],[120,-36,76,1.0],[120,-36,77,1.0],[120,-36,78,1.0],[120,-36,79,1.0],[120,-35,64,1.0],[120,-35,65,1.0],[120,-35,66,1.0],[120,-35,67,1.0],[120,-35,68,1.0],[120,-35,69,1.0],[120,-35,70,1.0],[120,-35,71,1.0],[120,-35,72,1.0],[120,-35,73,1.0],[120,-35,74,1.0],[120,-35,75,1.0],[120,-35,76,1.0],[120,-35,77,1.0],[120,-35,78,1.0],[120,-35,79,1.0],[120,-34,64,1.0],[120,-34,65,1.0],[120,-34,66,1.0],[120,-34,67,1.0],[120,-34,68,1.0],[120,-34,69,1.0],[120,-34,70,1.0],[120,-34,71,1.0],[120,-34,72,1.0],[120,-34,73,1.0],[120,-34,74,1.0],[120,-34,75,1.0],[120,-34,76,1.0],[120,-34,77,1.0],[120,-34,78,1.0],[120,-34,79,1.0],[120,-33,64,1.0],[120,-33,65,1.0],[120,-33,66,1.0],[120,-33,67,1.0],[120,-33,68,1.0],[120,-33,69,1.0],[120,-33,70,1.0],[120,-33,71,1.0],[120,-33,72,1.0],[120,-33,73,1.0],[120,-33,74,1.0],[120,-33,75,1.0],[120,-33,76,1.0],[120,-33,77,1.0],[120,-33,78,1.0],[120,-33,79,1.0],[120,-32,64,1.0],[120,-32,65,1.0],[120,-32,66,1.0],[120,-32,67,1.0],[120,-32,68,1.0],[120,-32,69,1.0],[120,-32,70,1.0],[120,-32,71,1.0],[120,-32,72,1.0],[120,-32,73,1.0],[120,-32,74,1.0],[120,-32,75,1.0],[120,-32,76,1.0],[120,-32,77,1.0],[120,-32,78,1.0],[120,-32,79,1.0],[120,-31,64,1.0],[120,-31,65,1.0],[120,-31,66,1.0],[120,-31,67,1.0],[120,-31,68,1.0],[120,-31,69,1.0],[120,-31,70,1.0],[120,-31,71,1.0],[120,-31,72,1.0],[120,-31,73,1.0],[120,-31,74,1.0],[120,-31,75,1.0],[120,-31,76,1.0],[120,-31,77,1.0],[120,-31,78,1.0],[120,-31,79,1.0],[120,-30,64,1.0],[120,-30,65,1.0],[120,-30,66,1.0],[120,-30,67,1.0],[120,-30,68,1.0],[120,-30,69,1.0],[120,-30,70,1.0],[120,-30,71,1.0],[120,-30,72,1.0],[120,-30,73,1.0],[120,-30,74,1.0],[120,-30,75,1.0],[120,-30,76,1.0],[120,-30,77,1.0],[120,-30,78,1.0],[120,-30,79,1.0],[120,-29,64,1.0],[120,-29,65,1.0],[120,-29,66,1.0],[120,-29,67,1.0],[120,-29,68,1.0],[120,-29,69,1.0],[120,-29,70,1.0],[120,-29,71,1.0],[120,-29,72,1.0],[120,-29,73,1.0],[120,-29,74,1.0],[120,-29,75,1.0],[120,-29,76,1.0],[120,-29,77,1.0],[120,-29,78,1.0],[120,-29,79,1.0],[120,-28,64,1.0],[120,-28,65,1.0],[120,-28,66,1.0],[120,-28,67,1.0],[120,-28,68,1.0],[120,-28,69,1.0],[120,-28,70,1.0],[120,-28,71,1.0],[120,-28,72,1.0],[120,-28,73,1.0],[120,-28,74,1.0],[120,-28,75,1.0],[120,-28,76,1.0],[120,-28,77,1.0],[120,-28,78,1.0],[120,-28,79,1.0],[120,-27,64,1.0],[120,-27,65,1.0],[120,-27,66,1.0],[120,-27,67,1.0],[120,-27,68,1.0],[120,-27,69,1.0],[120,-27,70,1.0],[120,-27,71,1.0],[120,-27,72,1.0],[120,-27,73,1.0],[120,-27,74,1.0],[120,-27,75,1.0],[120,-27,76,1.0],[120,-27,77,1.0],[120,-27,78,1.0],[120,-27,79,1.0],[120,-26,64,1.0],[120,-26,65,1.0],[120,-26,66,1.0],[120,-26,67,1.0],[120,-26,68,1.0],[120,-26,69,1.0],[120,-26,70,1.0],[120,-26,71,1.0],[120,-26,72,1.0],[120,-26,73,1.0],[120,-26,74,1.0],[120,-26,75,1.0],[120,-26,76,1.0],[120,-26,77,1.0],[120,-26,78,1.0],[120,-26,79,1.0],[120,-25,64,1.0],[120,-25,65,1.0],[120,-25,66,1.0],[120,-25,67,1.0],[120,-25,68,1.0],[120,-25,69,1.0],[120,-25,70,1.0],[120,-25,71,1.0],[120,-25,72,1.0],[120,-25,73,1.0],[120,-25,74,1.0],[120,-25,75,1.0],[120,-25,76,1.0],[120,-25,77,1.0],[120,-25,78,1.0],[120,-25,79,1.0],[120,-24,64,1.0],[120,-24,65,1.0],[120,-24,66,1.0],[120,-24,67,1.0],[120,-24,68,1.0],[120,-24,69,1.0],[120,-24,70,1.0],[120,-24,71,1.0],[120,-24,72,1.0],[120,-24,73,1.0],[120,-24,74,1.0],[120,-24,75,1.0],[120,-24,76,1.0],[120,-24,77,1.0],[120,-24,78,1.0],[120,-24,79,1.0],[120,-23,64,1.0],[120,-23,65,1.0],[120,-23,66,1.0],[120,-23,67,1.0],[120,-23,68,1.0],[120,-23,69,1.0],[120,-23,70,1.0],[120,-23,71,1.0],[120,-23,72,1.0],[120,-23,73,1.0],[120,-23,74,1.0],[120,-23,75,1.0],[120,-23,76,1.0],[120,-23,77,1.0],[120,-23,78,1.0],[120,-23,79,1.0],[120,-22,64,1.0],[120,-22,65,1.0],[120,-22,66,1.0],[120,-22,67,1.0],[120,-22,68,1.0],[120,-22,69,1.0],[120,-22,70,1.0],[120,-22,71,1.0],[120,-22,72,1.0],[120,-22,73,1.0],[120,-22,74,1.0],[120,-22,75,1.0],[120,-22,76,1.0],[120,-22,77,1.0],[120,-22,78,1.0],[120,-22,79,1.0],[120,-21,64,1.0],[120,-21,65,1.0],[120,-21,66,1.0],[120,-21,67,1.0],[120,-21,68,1.0],[120,-21,69,1.0],[120,-21,70,1.0],[120,-21,71,1.0],[120,-21,72,1.0],[120,-21,73,1.0],[120,-21,74,1.0],[120,-21,75,1.0],[120,-21,76,1.0],[120,-21,77,1.0],[120,-21,78,1.0],[120,-21,79,1.0],[120,-20,64,1.0],[120,-20,65,1.0],[120,-20,66,1.0],[120,-20,67,1.0],[120,-20,68,1.0],[120,-20,69,1.0],[120,-20,70,1.0],[120,-20,71,1.0],[120,-20,72,1.0],[120,-20,73,1.0],[120,-20,74,1.0],[120,-20,75,1.0],[120,-20,76,1.0],[120,-20,77,1.0],[120,-20,78,1.0],[120,-20,79,1.0],[120,-19,64,1.0],[120,-19,65,1.0],[120,-19,66,1.0],[120,-19,67,1.0],[120,-19,68,1.0],[120,-19,69,1.0],[120,-19,70,1.0],[120,-19,71,1.0],[120,-19,72,1.0],[120,-19,73,1.0],[120,-19,74,1.0],[120,-19,75,1.0],[120,-19,76,1.0],[120,-19,77,1.0],[120,-19,78,1.0],[120,-19,79,1.0],[120,-18,64,1.0],[120,-18,65,1.0],[120,-18,66,1.0],[120,-18,67,1.0],[120,-18,68,1.0],[120,-18,69,1.0],[120,-18,70,1.0],[120,-18,71,1.0],[120,-18,72,1.0],[120,-18,73,1.0],[120,-18,74,1.0],[120,-18,75,1.0],[120,-18,76,1.0],[120,-18,77,1.0],[120,-18,78,1.0],[120,-18,79,1.0],[120,-17,64,1.0],[120,-17,65,1.0],[120,-17,66,1.0],[120,-17,67,1.0],[120,-17,68,1.0],[120,-17,69,1.0],[120,-17,70,1.0],[120,-17,71,1.0],[120,-17,72,1.0],[120,-17,73,1.0],[120,-17,74,1.0],[120,-17,75,1.0],[120,-17,76,1.0],[120,-17,77,1.0],[120,-17,78,1.0],[120,-17,79,1.0],[120,-16,64,1.0],[120,-16,65,1.0],[120,-16,66,1.0],[120,-16,67,1.0],[120,-16,68,1.0],[120,-16,69,1.0],[120,-16,70,1.0],[120,-16,71,1.0],[120,-16,72,1.0],[120,-16,73,1.0],[120,-16,74,1.0],[120,-16,75,1.0],[120,-16,76,1.0],[120,-16,77,1.0],[120,-16,78,1.0],[120,-16,79,1.0],[120,-15,64,0.7290980393356573],[120,-15,65,0.8230318414179607],[120,-15,66,0.9222160228712887],[120,-15,67,1.0],[120,-15,68,1.0],[120,-15,69,1.0],[120,-15,70,1.0],[120,-15,71,1.0],[120,-15,72,1.0],[120,-15,73,1.0],[120,-15,74,1.0],[120,-15,75,1.0],[120,-15,76,1.0],[120,-15,77,1.0],[120,-15,78,1.0],[120,-15,79,1.0],[120,-14,64,0.46533093292809674],[120,-14,65,0.5354213755113388],[120,-14,66,0.6103276192167733],[120,-14,67,0.6898618731151344],[120,-14,68,0.7738104944982654],[120,-14,69,0.8619375020067767],[120,-14,70,0.9539880837850937],[120,-14,71,1.0],[120,-14,72,1.0],[120,-14,73,1.0],[120,-14,74,1.0],[120,-14,75,1.0],[120,-14,76,1.0],[120,-14,77,1.0],[120,-14,78,1.0],[120,-14,79,1.0],[120,-13,64,0.27435783890525345],[120,-13,65,0.32408972963054883],[120,-13,66,0.3781205844240591],[120,-13,67,0.43633390975918607],[120,-13,68,0.4985849341556984],[120,-13,69,0.5647039708911832],[120,-13,70,0.6344997819960134],[120,-13,71,0.7077629263374263],[120,-13,72,0.7842690752757076],[120,-13,73,0.8637822801658863],[120,-13,74,0.9460581768648026],[120,-13,75,1.0],[120,-13,76,1.0],[120,-13,77,1.0],[120,-13,78,1.0],[120,-13,79,1.0],[120,-12,64,0.14442489728753685],[120,-12,65,0.17728317516658254],[120,-12,66,0.21384132107058954],[120,-12,67,0.25405415824704697],[120,-12,68,0.2978459053696593],[120,-12,69,0.34511339136350017],[120,-12,70,0.39572927779239836],[120,-12,71,0.44954527187926197],[120,-12,72,0.5063953138723919],[120,-12,73,0.5660987232260236],[120,-12,74,0.6284632889168952],[120,-12,75,0.693288290209572],[120,-12,76,0.7603674352721326],[120,-12,77,0.8294917062204501],[120,-12,78,0.9004521004724239],[120,-12,79,0.9730422596822736],[120,-11,64,0.06377815226535626],[120,-11,65,0.08324788730329462],[120,-11,66,0.10573613515135893],[120,-11,67,0.1312690551962858],[120,-11,68,0.1598399751859093],[120,-11,69,0.19141246069794535],[120,-11,70,0.22592339847231457],[120,-11,71,0.26328607694239586],[120,-11,72,0.30339324790852534],[120,-11,73,0.3461201540170605],[120,-11,74,0.39132750752826456],[120,-11,75,0.43886440680253996],[120,-11,76,0.4885711779790737],[120,-11,77,0.5402821304538364],[120,-11,78,0.5938282160121857],[120,-11,79,0.6490395828044451],[120,-10,64,0.020663552099753422],[120,-10,65,0.030229944914370088],[120,-10,66,0.04205123597223827],[120,-10,67,0.05622494015821328],[120,-10,68,0.07281361320860934],[120,-10,69,0.09184777835356094],[120,-10,70,0.11332887314681885],[120,-10,71,0.13723220008263654],[120,-10,72,0.16350986517353147],[120,-10,73,0.1920936893475638],[120,-10,74,0.2228980783093755],[120,-10,75,0.25582283741156137],[120,-10,76,0.2907559190830907],[120,-10,77,0.32757609145002015],[120,-10,78,0.3661555179778263],[120,-10,79,0.4063622392422336],[120,-9,64,0.01487099564723092],[120,-9,65,0.018069307980069144],[120,-9,66,0.02117603639562595],[120,-9,67,0.024189316928820932],[120,-9,68,0.027107252071432754],[120,-9,69,0.034665845860866705],[120,-9,70,0.046192332623078106],[120,-9,71,0.059630401178274554],[120,-9,72,0.07499205440740239],[120,-9,73,0.09226634660644761],[120,-9,74,0.11142214708248831],[120,-9,75,0.13241085607445272],[120,-9,76,0.1551690606181549],[120,-9,77,0.17962111901873595],[120,-9,78,0.20568166373410737],[120,-9,79,0.23325801369500984],[120,-8,64,0.011209336174564564],[120,-8,65,0.014372162252401524],[120,-8,66,0.017446809281983486],[120,-8,67,0.02043148562872179],[120,-8,68,0.02332435629669149],[120,-8,69,0.026123558108408468],[120,-8,70,0.028827214401423287],[120,-8,71,0.03143344924154436],[120,-8,72,0.03394040115294504],[120,-8,73,0.03634623636485208],[120,-8,74,0.04514675975478136],[120,-8,75,0.05687563654362894],[120,-8,76,0.07005790396416722],[120,-8,77,0.08466464194861245],[120,-8,78,0.10065420925926384],[120,-8,79,0.11797458911179672],[120,-7,64,0.007514016391032316],[120,-7,65,0.010639381501357688],[120,-7,66,0.01367995389737469],[120,-7,67,0.016634015899539785],[120,-7,68,0.019499796872733455],[120,-7,69,0.022275488597642508],[120,-7,70,0.024959260160011265],[120,-7,71,0.027549272357572353],[120,-7,72,0.030043691624913327],[120,-7,73,0.0324407034759747],[120,-7,74,0.03473852546432293],[120,-7,75,0.03693541966134508],[120,-7,76,0.03902970465205639],[120,-7,77,0.041019767048781325],[120,-7,78,0.042904072522510335],[120,-7,79,0.04875954655161752],[120,-6,64,0.003791508104340105],[120,-6,65,0.00687745520405679],[120,-6,66,0.0098819733733796],[120,-6,67,0.012803420426694273],[120,-6,68,0.015640091864175802],[120,-6,69,0.01839023641656235],[120,-6,70,0.02105207110926581],[120,-6,71,0.023623795845630208],[120,-6,72,0.026103607509594264],[120,-6,73,0.02848971358745328],[120,-6,74,0.030780345308863727],[120,-6,75,0.032973770307238776],[120,-6,76,0.035068304799223134],[120,-6,77,0.037062325283510875],[120,-6,78,0.03895427975880615],[120,-6,79,0.0407426984611959],[120,-5,64,4.8317669516392825E-5],[120,-5,65,0.0030929107204353268],[120,-5,66,0.00605941210699671],[120,-5,67,0.0089462565882817],[120,-5,68,0.011751807497359691],[120,-5,69,0.014474372441019394],[120,-5,70,0.017112218520720597],[120,-5,71,0.01966358707457718],[120,-5,72,0.022126707940629375],[120,-5,73,0.024499813241097783],[120,-5,74,0.0267811506877641],[120,-5,75,0.028968996408627268],[120,-5,76,0.03106166729552263],[120,-5,77,0.03305753287296739],[120,-5,78,0.03495502668803259],[120,-5,79,0.03675265722151233],[120,-4,64,-0.0037090239375707004],[120,-4,65,-7.076966793871098E-4],[120,-4,66,0.0022188457503161813],[120,-4,67,0.005069116415699432],[120,-4,68,0.007841548100724294],[120,-4,69,0.010534509145220416],[120,-4,70,0.013146318804470473],[120,-4,71,0.015675262132123127],[120,-4,72,0.018119604386693446],[120,-4,73,0.02047760496134248],[120,-4,74,0.02274753083708013],[120,-4,75,0.024927669559542967],[120,-4,76,0.027016341739029656],[120,-4,77,0.02901191307406302],[120,-4,78,0.030912805898273582],[120,-4,79,0.032717510250880724],[120,-3,64,-0.007473970023647303],[120,-3,65,-0.004517792761457369],[120,-3,66,-0.0016331277700583763],[120,-3,67,0.0011786175877094435],[120,-3,68,0.0039159470825434195],[120,-3,69,0.006577291572302871],[120,-3,70,0.009161024481860548],[120,-3,71,0.011665476808990799],[120,-3,72,0.014088951656553356],[120,-3,73,0.016429738290664485],[120,-3,74,0.018686125725000342],[120,-3,75,0.020856415831382563],[120,-3,76,0.022938935976331495],[120,-3,77,0.024932051183853117],[120,-3,78,0.0268341758242559],[120,-3,79,0.02864378482927398],[120,-2,64,-0.011239966058392066],[120,-2,65,-0.0083307922480262],[120,-2,66,-0.005489896203813245],[120,-2,67,-0.0027186045420290322],[120,-2,68,-1.834105394445118E-5],[120,-2,69,0.0026093893464574497],[120,-2,70,0.005163016204107536],[120,-2,71,0.007640918633628653],[120,-2,72,0.010041439959525833],[120,-2,73,0.012362901885479463],[120,-2,74,0.01460361819288536],[120,-2,75,0.016761907968795703],[120,-2,76,0.018836108362939932],[120,-2,77,0.020824586874097523],[120,-2,78,0.02272575316561594],[120,-2,79,0.024538070410350526],[120,-1,64,-0.015000456531749064],[120,-1,65,-0.012140105711304139],[120,-1,66,-0.00934483989798162],[120,-1,67,-0.006615903883988937],[120,-1,68,-0.003954647658046602],[120,-1,69,-0.0013625102734347097],[120,-1,70,0.0011589958168221892],[120,-1,71,0.0036082999574415797],[120,-1,72,0.005983788021301208],[120,-1,73,0.008283816672478704],[120,-1,74,0.010506727162057299],[120,-1,75,0.012650858656851352],[120,-1,76,0.014714561100732236],[120,-1,77,0.016696207608823413],[120,-1,78,0.018594206394360546],[120,-1,79,0.0204070122284932],[120,0,64,-0.01874889078817217],[120,0,65,-0.01593914544091305],[120,0,66,-0.013191337688233738],[120,0,67,-0.010506629518344697],[120,0,68,-0.00788629584174172],[120,0,69,-0.0053317082986261005],[120,0,70,-0.0028443195295437054],[120,0,71,-4.256479094362914E-4],[120,0,72,0.0019227372551566743],[120,0,73,0.004199230065434843],[120,0,74,0.006402201906358401],[120,0,75,0.008530014859505775],[120,0,76,0.0105810346524495],[120,0,77,0.012553643144919364],[120,0,78,0.014446250351546869],[120,0,79,0.016257306001470392],[120,1,64,-0.022478727837817826],[120,1,65,-0.01972133028504954],[120,1,66,-0.017022771760415292],[120,1,67,-0.014384130567096705],[120,1,68,-0.011806605352438854],[120,1,69,-0.009291498873805093],[120,1,70,-0.006840202223341689],[120,1,71,-0.004454179511843161],[120,1,72,-0.002134953011457698],[120,1,73,1.1591124245622503E-4],[120,1,74,0.0022968173904671513],[120,1,75,0.0044061532293568],[120,1,76,0.006442303233232818],[120,1,77,0.00840366111573998],[120,1,78,0.0102886419331632],[120,1,79,0.01209569372870143],[120,2,64,-0.01566560759963377],[120,2,65,-0.02348008946534732],[120,2,66,-0.02083253148232083],[120,2,67,-0.01824176003273898],[120,2,68,-0.01570889640835426],[120,2,69,-0.013235173098862303],[120,2,70,-0.010821917989450806],[120,2,71,-0.008470539012753457],[120,2,72,-0.0061825092549453176],[120,2,73,-0.003959352516293958],[120,2,74,-0.001802629326018497],[120,2,75,2.8607658869667096E-4],[120,2,76,0.0023051713792116915],[120,2,77,0.004253063697736641],[120,2,78,0.006128176865225758],[120,2,79,0.007928960585139491],[120,3,64,-0.0019693322639417346],[120,3,65,-0.004238718412584981],[120,3,66,-0.007698951315116476],[120,3,67,-0.01252125999181958],[120,3,68,-0.01884102794753385],[120,3,69,-0.01715602180912889],[120,3,70,-0.014782728641085686],[120,3,71,-0.012467962905907896],[120,3,72,-0.010213146418210223],[120,3,73,-0.008019758430421076],[120,3,74,-0.005889321618734969],[120,3,75,-0.003823388518142637],[120,3,76,-0.0018235284068615354],[120,3,77,1.0868536010688601E-4],[120,3,78,0.0019716875680838297],[120,3,79,0.003763932910766238],[120,4,64,-1.0608651009459991E-10],[120,4,65,-5.0510730125515964E-5],[120,4,66,-3.8245018176939446E-4],[120,4,67,-0.0012367004329802344],[120,4,68,-0.002816414235178999],[120,4,69,-0.005289564226851679],[120,4,70,-0.008791523469438267],[120,4,71,-0.013427661924862529],[120,4,72,-0.014220069517927612],[120,4,73,-0.01205848976066979],[120,4,74,-0.009956424762949265],[120,4,75,-0.007915393201156001],[120,4,76,-0.005936936932935885],[120,4,77,-0.0040226083025415305],[120,4,78,-0.0021739578900702994],[120,4,79,-3.925227043066401E-4],[120,5,64,0.0019250349311163897],[120,5,65,6.792977541303935E-4],[120,5,66,1.429336820944166E-4],[120,5,67,5.390770069984506E-6],[120,5,68,-4.369137179658111E-6],[120,5,69,-1.2028747575645354E-4],[120,5,70,-5.416638516372485E-4],[120,5,71,-0.0014356335225170882],[120,5,72,-0.0029396527194772665],[120,5,73,-0.005163977628529234],[120,5,74,-0.008194123521678236],[120,5,75,-0.011983066529731613],[120,5,76,-0.010028168517932791],[120,5,77,-0.008133920654499749],[120,5,78,-0.006301855750475274],[120,5,79,-0.004533499239116841],[120,6,64,0.015488322532997064],[120,6,65,0.00963338256934657],[120,6,66,0.005560001492456883],[120,6,67,0.002887940356510764],[120,6,68,0.001278159439066457],[120,6,69,4.305306807151185E-4],[120,6,70,8.150589344385456E-5],[120,6,71,1.7557026992416572E-6],[120,6,72,-6.206253375877428E-6],[120,6,73,-1.1039988215092927E-4],[120,6,74,-4.51742599130434E-4],[120,6,75,-0.001146388064147247],[120,6,76,-0.002288027868016556],[120,6,77,-0.003950145234594128],[120,6,78,-0.006188210766214882],[120,6,79,-0.008652047965531956],[120,7,64,0.05237231596495845],[120,7,65,0.03849432239915164],[120,7,66,0.027551457196262227],[120,7,67,0.019093777375061783],[120,7,68,0.012714125476334243],[120,7,69,0.00804596898596276],[120,7,70,0.004761189091178578],[120,7,71,0.0025678334747719425],[120,7,72,0.0012078474409932664],[120,7,73,4.5479716371777485E-4],[120,7,74,1.1159825305307976E-4],[120,7,75,8.262154539252715E-6],[120,7,76,-3.2786806370400953E-7],[120,7,77,-3.66002560234798E-5],[120,7,78,-2.0242818654551498E-4],[120,7,79,-5.812030902294947E-4],[120,8,64,0.1242593720281202],[120,8,65,0.09894459903375633],[120,8,66,0.07779990742002844],[120,8,67,0.060305633129108784],[120,8,68,0.045986384789232976],[120,8,69,0.034409007594440155],[120,8,70,0.025180490059241185],[120,8,71,0.01794582809323756],[120,8,72,0.01238586045946711],[120,8,73,0.00821508921199981],[120,8,74,0.005179498152586643],[120,8,75,0.00305438170355903],[120,8,76,0.001642195875672684],[120,8,77,7.704422169983666E-4],[120,8,78,2.895947673922932E-4],[120,8,79,7.107912101322563E-5],[120,9,64,0.24283175101866736],[120,9,65,0.20266659732578204],[120,9,66,0.16798786142217675],[120,9,67,0.13820614112555524],[120,9,68,0.11277769496960077],[120,9,69,0.09120252801361377],[120,9,70,0.07302241404615113],[120,9,71,0.057818868368335524],[120,9,72,0.045211084990445335],[120,9,73,0.034853851642020844],[120,9,74,0.02643545547938596],[120,9,75,0.01967559177057441],[120,9,76,0.014323287163866405],[120,9,77,0.01015484840216741],[120,9,78,0.006971846533732632],[120,9,79,0.004599145802823766],[120,10,64,0.41977161669093005],[120,10,65,0.3613426051498248],[120,10,66,0.30979773104909997],[120,10,67,0.26447783702741634],[120,10,68,0.22477071533564644],[120,10,69,0.19010931304967274],[120,10,70,0.15996986717357298],[120,10,71,0.13386998355991933],[120,10,72,0.11136667325043408],[120,10,73,0.09205435944170708],[120,10,74,0.07556286780444138],[120,10,75,0.06155541231875605],[120,10,76,0.04972658815907316],[120,10,77,0.039800382467355795],[120,10,78,0.03152821309098292],[120,10,79,0.02468700454973369],[120,11,64,0.6667610362240667],[120,11,65,0.586654813365639],[120,11,66,0.5149118306948677],[120,11,67,0.450803158610066],[120,11,68,0.3936480068847571],[120,11,69,0.3428120467569197],[120,11,70,0.29770565638230956],[120,11,71,0.2577821033200725],[120,11,72,0.22253567742330682],[120,11,73,0.19149978714351107],[120,11,74,0.16424503182243022],[120,11,75,0.1403772620161026],[120,11,76,0.1195356393117781],[120,11,77,0.10139070645340861],[120,11,78,0.0856424778775909],[120,11,79,0.07201856000508948],[120,12,64,0.995481980192475],[120,12,65,0.8902853157850482],[120,12,66,0.7950123772646587],[120,12,67,0.7088644457212101],[120,12,68,0.6310920322500354],[120,12,69,0.5609933143908902],[120,12,70,0.49791248938202687],[120,12,71,0.4412380576394609],[120,12,72,0.39040104960330285],[120,12,73,0.34487320876407995],[120,12,74,0.3041651432880744],[120,12,75,0.2678244581685092],[120,12,76,0.23543387929019705],[120,12,77,0.206609380200699],[120,12,78,0.1809983217152749],[120,12,79,0.1582776137811789],[120,13,64,1.0],[120,13,65,1.0],[120,13,66,1.0],[120,13,67,1.0],[120,13,68,0.9487851556604739],[120,13,69,0.8563356023651244],[120,13,70,0.7722729746046415],[120,13,71,0.6959205767973555],[120,13,72,0.6266456417417089],[120,13,73,0.5638575977476139],[120,13,74,0.5070062969561989],[120,13,75,0.45558021665654674],[120,13,76,0.4091046449137974],[120,13,77,0.36713986127941073],[120,13,78,0.32927932273608945],[120,13,79,0.29514786438310087],[120,14,64,1.0],[120,14,65,1.0],[120,14,66,1.0],[120,14,67,1.0],[120,14,68,1.0],[120,14,69,1.0],[120,14,70,1.0],[120,14,71,1.0],[120,14,72,0.9429522055973104],[120,14,73,0.8601358269129978],[120,14,74,0.7844514865255641],[120,14,75,0.7153276518760162],[120,14,76,0.6522311710905944],[120,14,77,0.5946655049235998],[120,14,78,0.5421689563132724],[120,14,79,0.4943129071364185],[120,15,64,1.0],[120,15,65,1.0],[120,15,66,1.0],[120,15,67,1.0],[120,15,68,1.0],[120,15,69,1.0],[120,15,70,1.0],[120,15,71,1.0],[120,15,72,1.0],[120,15,73,1.0],[120,15,74,1.0],[120,15,75,1.0],[120,15,76,0.9764965907580442],[120,15,77,0.9008695639688655],[120,15,78,0.8313505949957158],[120,15,79,0.7674562341184509],[120,16,64,1.0],[120,16,65,1.0],[120,16,66,1.0],[120,16,67,1.0],[120,16,68,1.0],[120,16,69,1.0],[120,16,70,1.0],[120,16,71,1.0],[120,16,72,1.0],[120,16,73,1.0],[120,16,74,1.0],[120,16,75,1.0],[120,16,76,1.0],[120,16,77,1.0],[120,16,78,1.0],[120,16,79,1.0],[120,17,64,1.0],[120,17,65,1.0],[120,17,66,1.0],[120,17,67,1.0],[120,17,68,1.0],[120,17,69,1.0],[120,17,70,1.0],[120,17,71,1.0],[120,17,72,1.0],[120,17,73,1.0],[120,17,74,1.0],[120,17,75,1.0],[120,17,76,1.0],[120,17,77,1.0],[120,17,78,1.0],[120,17,79,1.0],[120,18,64,1.0],[120,18,65,1.0],[120,18,66,1.0],[120,18,67,1.0],[120,18,68,1.0],[120,18,69,1.0],[120,18,70,1.0],[120,18,71,1.0],[120,18,72,1.0],[120,18,73,1.0],[120,18,74,1.0],[120,18,75,1.0],[120,18,76,1.0],[120,18,77,1.0],[120,18,78,1.0],[120,18,79,1.0],[120,19,64,1.0],[120,19,65,1.0],[120,19,66,1.0],[120,19,67,1.0],[120,19,68,1.0],[120,19,69,1.0],[120,19,70,1.0],[120,19,71,1.0],[120,19,72,1.0],[120,19,73,1.0],[120,19,74,1.0],[120,19,75,1.0],[120,19,76,1.0],[120,19,77,1.0],[120,19,78,1.0],[120,19,79,1.0],[120,20,64,1.0],[120,20,65,1.0],[120,20,66,1.0],[120,20,67,1.0],[120,20,68,1.0],[120,20,69,1.0],[120,20,70,1.0],[120,20,71,1.0],[120,20,72,1.0],[120,20,73,1.0],[120,20,74,1.0],[120,20,75,1.0],[120,20,76,1.0],[120,20,77,1.0],[120,20,78,1.0],[120,20,79,1.0],[120,21,64,1.0],[120,21,65,1.0],[120,21,66,1.0],[120,21,67,1.0],[120,21,68,1.0],[120,21,69,1.0],[120,21,70,1.0],[120,21,71,1.0],[120,21,72,1.0],[120,21,73,1.0],[120,21,74,1.0],[120,21,75,1.0],[120,21,76,1.0],[120,21,77,1.0],[120,21,78,1.0],[120,21,79,1.0],[120,22,64,1.0],[120,22,65,1.0],[120,22,66,1.0],[120,22,67,1.0],[120,22,68,1.0],[120,22,69,1.0],[120,22,70,1.0],[120,22,71,1.0],[120,22,72,1.0],[120,22,73,1.0],[120,22,74,1.0],[120,22,75,1.0],[120,22,76,1.0],[120,22,77,1.0],[120,22,78,1.0],[120,22,79,1.0],[120,23,64,1.0],[120,23,65,1.0],[120,23,66,1.0],[120,23,67,1.0],[120,23,68,1.0],[120,23,69,1.0],[120,23,70,1.0],[120,23,71,1.0],[120,23,72,1.0],[120,23,73,1.0],[120,23,74,1.0],[120,23,75,1.0],[120,23,76,1.0],[120,23,77,1.0],[120,23,78,1.0],[120,23,79,1.0],[120,24,64,1.0],[120,24,65,1.0],[120,24,66,1.0],[120,24,67,1.0],[120,24,68,1.0],[120,24,69,1.0],[120,24,70,1.0],[120,24,71,1.0],[120,24,72,1.0],[120,24,73,1.0],[120,24,74,1.0],[120,24,75,1.0],[120,24,76,1.0],[120,24,77,1.0],[120,24,78,1.0],[120,24,79,1.0],[120,25,64,1.0],[120,25,65,1.0],[120,25,66,1.0],[120,25,67,1.0],[120,25,68,1.0],[120,25,69,1.0],[120,25,70,1.0],[120,25,71,1.0],[120,25,72,1.0],[120,25,73,1.0],[120,25,74,1.0],[120,25,75,1.0],[120,25,76,1.0],[120,25,77,1.0],[120,25,78,1.0],[120,25,79,1.0],[120,26,64,1.0],[120,26,65,1.0],[120,26,66,1.0],[120,26,67,1.0],[120,26,68,1.0],[120,26,69,1.0],[120,26,70,1.0],[120,26,71,1.0],[120,26,72,1.0],[120,26,73,1.0],[120,26,74,1.0],[120,26,75,1.0],[120,26,76,1.0],[120,26,77,1.0],[120,26,78,1.0],[120,26,79,1.0],[120,27,64,1.0],[120,27,65,1.0],[120,27,66,1.0],[120,27,67,1.0],[120,27,68,1.0],[120,27,69,1.0],[120,27,70,1.0],[120,27,71,1.0],[120,27,72,1.0],[120,27,73,1.0],[120,27,74,1.0],[120,27,75,1.0],[120,27,76,1.0],[120,27,77,1.0],[120,27,78,1.0],[120,27,79,1.0],[120,28,64,1.0],[120,28,65,1.0],[120,28,66,1.0],[120,28,67,1.0],[120,28,68,1.0],[120,28,69,1.0],[120,28,70,1.0],[120,28,71,1.0],[120,28,72,1.0],[120,28,73,1.0],[120,28,74,1.0],[120,28,75,1.0],[120,28,76,1.0],[120,28,77,1.0],[120,28,78,1.0],[120,28,79,1.0],[120,29,64,1.0],[120,29,65,1.0],[120,29,66,1.0],[120,29,67,1.0],[120,29,68,1.0],[120,29,69,1.0],[120,29,70,1.0],[120,29,71,1.0],[120,29,72,1.0],[120,29,73,1.0],[120,29,74,1.0],[120,29,75,1.0],[120,29,76,1.0],[120,29,77,1.0],[120,29,78,1.0],[120,29,79,1.0],[120,30,64,1.0],[120,30,65,1.0],[120,30,66,1.0],[120,30,67,1.0],[120,30,68,1.0],[120,30,69,1.0],[120,30,70,1.0],[120,30,71,1.0],[120,30,72,1.0],[120,30,73,1.0],[120,30,74,1.0],[120,30,75,1.0],[120,30,76,1.0],[120,30,77,1.0],[120,30,78,1.0],[120,30,79,1.0],[120,31,64,1.0],[120,31,65,1.0],[120,31,66,1.0],[120,31,67,1.0],[120,31,68,1.0],[120,31,69,1.0],[120,31,70,1.0],[120,31,71,1.0],[120,31,72,1.0],[120,31,73,1.0],[120,31,74,1.0],[120,31,75,1.0],[120,31,76,1.0],[120,31,77,1.0],[120,31,78,1.0],[120,31,79,1.0],[120,32,64,1.0],[120,32,65,1.0],[120,32,66,1.0],[120,32,67,1.0],[120,32,68,1.0],[120,32,69,1.0],[120,32,70,1.0],[120,32,71,1.0],[120,32,72,1.0],[120,32,73,1.0],[120,32,74,1.0],[120,32,75,1.0],[120,32,76,1.0],[120,32,77,1.0],[120,32,78,1.0],[120,32,79,1.0],[120,33,64,1.0],[120,33,65,1.0],[120,33,66,1.0],[120,33,67,1.0],[120,33,68,1.0],[120,33,69,1.0],[120,33,70,1.0],[120,33,71,1.0],[120,33,72,1.0],[120,33,73,1.0],[120,33,74,1.0],[120,33,75,1.0],[120,33,76,1.0],[120,33,77,1.0],[120,33,78,1.0],[120,33,79,1.0],[120,34,64,1.0],[120,34,65,1.0],[120,34,66,1.0],[120,34,67,1.0],[120,34,68,1.0],[120,34,69,1.0],[120,34,70,1.0],[120,34,71,1.0],[120,34,72,1.0],[120,34,73,1.0],[120,34,74,1.0],[120,34,75,1.0],[120,34,76,1.0],[120,34,77,1.0],[120,34,78,1.0],[120,34,79,1.0],[120,35,64,1.0],[120,35,65,1.0],[120,35,66,1.0],[120,35,67,1.0],[120,35,68,1.0],[120,35,69,1.0],[120,35,70,1.0],[120,35,71,1.0],[120,35,72,1.0],[120,35,73,1.0],[120,35,74,1.0],[120,35,75,1.0],[120,35,76,1.0],[120,35,77,1.0],[120,35,78,1.0],[120,35,79,1.0],[120,36,64,1.0],[120,36,65,1.0],[120,36,66,1.0],[120,36,67,1.0],[120,36,68,1.0],[120,36,69,1.0],[120,36,70,1.0],[120,36,71,1.0],[120,36,72,1.0],[120,36,73,1.0],[120,36,74,1.0],[120,36,75,1.0],[120,36,76,1.0],[120,36,77,1.0],[120,36,78,1.0],[120,36,79,1.0],[120,37,64,1.0],[120,37,65,1.0],[120,37,66,1.0],[120,37,67,1.0],[120,37,68,1.0],[120,37,69,1.0],[120,37,70,1.0],[120,37,71,1.0],[120,37,72,1.0],[120,37,73,1.0],[120,37,74,1.0],[120,37,75,1.0],[120,37,76,1.0],[120,37,77,1.0],[120,37,78,1.0],[120,37,79,1.0],[120,38,64,1.0],[120,38,65,1.0],[120,38,66,1.0],[120,38,67,1.0],[120,38,68,1.0],[120,38,69,1.0],[120,38,70,1.0],[120,38,71,1.0],[120,38,72,1.0],[120,38,73,1.0],[120,38,74,1.0],[120,38,75,1.0],[120,38,76,1.0],[120,38,77,1.0],[120,38,78,1.0],[120,38,79,1.0],[120,39,64,1.0],[120,39,65,1.0],[120,39,66,1.0],[120,39,67,1.0],[120,39,68,1.0],[120,39,69,1.0],[120,39,70,1.0],[120,39,71,1.0],[120,39,72,1.0],[120,39,73,1.0],[120,39,74,1.0],[120,39,75,1.0],[120,39,76,1.0],[120,39,77,1.0],[120,39,78,1.0],[120,39,79,1.0],[120,40,64,1.0],[120,40,65,1.0],[120,40,66,1.0],[120,40,67,1.0],[120,40,68,1.0],[120,40,69,1.0],[120,40,70,1.0],[120,40,71,1.0],[120,40,72,1.0],[120,40,73,1.0],[120,40,74,1.0],[120,40,75,1.0],[120,40,76,1.0],[120,40,77,1.0],[120,40,78,1.0],[120,40,79,1.0],[120,41,64,1.0],[120,41,65,1.0],[120,41,66,1.0],[120,41,67,1.0],[120,41,68,1.0],[120,41,69,1.0],[120,41,70,1.0],[120,41,71,1.0],[120,41,72,1.0],[120,41,73,1.0],[120,41,74,1.0],[120,41,75,1.0],[120,41,76,1.0],[120,41,77,1.0],[120,41,78,1.0],[120,41,79,1.0],[120,42,64,1.0],[120,42,65,1.0],[120,42,66,1.0],[120,42,67,1.0],[120,42,68,1.0],[120,42,69,1.0],[120,42,70,1.0],[120,42,71,1.0],[120,42,72,1.0],[120,42,73,1.0],[120,42,74,1.0],[120,42,75,1.0],[120,42,76,1.0],[120,42,77,1.0],[120,42,78,1.0],[120,42,79,1.0],[120,43,64,1.0],[120,43,65,1.0],[120,43,66,1.0],[120,43,67,1.0],[120,43,68,1.0],[120,43,69,1.0],[120,43,70,1.0],[120,43,71,1.0],[120,43,72,1.0],[120,43,73,1.0],[120,43,74,1.0],[120,43,75,1.0],[120,43,76,1.0],[120,43,77,1.0],[120,43,78,1.0],[120,43,79,1.0],[120,44,64,1.0],[120,44,65,1.0],[120,44,66,1.0],[120,44,67,1.0],[120,44,68,1.0],[120,44,69,1.0],[120,44,70,1.0],[120,44,71,1.0],[120,44,72,1.0],[120,44,73,1.0],[120,44,74,1.0],[120,44,75,1.0],[120,44,76,1.0],[120,44,77,1.0],[120,44,78,1.0],[120,44,79,1.0],[120,45,64,1.0],[120,45,65,1.0],[120,45,66,1.0],[120,45,67,1.0],[120,45,68,1.0],[120,45,69,1.0],[120,45,70,1.0],[120,45,71,1.0],[120,45,72,1.0],[120,45,73,1.0],[120,45,74,1.0],[120,45,75,1.0],[120,45,76,1.0],[120,45,77,1.0],[120,45,78,1.0],[120,45,79,1.0],[120,46,64,1.0],[120,46,65,1.0],[120,46,66,1.0],[120,46,67,1.0],[120,46,68,1.0],[120,46,69,1.0],[120,46,70,1.0],[120,46,71,1.0],[120,46,72,1.0],[120,46,73,1.0],[120,46,74,1.0],[120,46,75,1.0],[120,46,76,1.0],[120,46,77,1.0],[120,46,78,1.0],[120,46,79,1.0],[120,47,64,1.0],[120,47,65,1.0],[120,47,66,1.0],[120,47,67,1.0],[120,47,68,1.0],[120,47,69,1.0],[120,47,70,1.0],[120,47,71,1.0],[120,47,72,1.0],[120,47,73,1.0],[120,47,74,1.0],[120,47,75,1.0],[120,47,76,1.0],[120,47,77,1.0],[120,47,78,1.0],[120,47,79,1.0],[120,48,64,1.0],[120,48,65,1.0],[120,48,66,1.0],[120,48,67,1.0],[120,48,68,1.0],[120,48,69,1.0],[120,48,70,1.0],[120,48,71,1.0],[120,48,72,1.0],[120,48,73,1.0],[120,48,74,1.0],[120,48,75,1.0],[120,48,76,1.0],[120,48,77,1.0],[120,48,78,1.0],[120,48,79,1.0],[120,49,64,1.0],[120,49,65,1.0],[120,49,66,1.0],[120,49,67,1.0],[120,49,68,1.0],[120,49,69,1.0],[120,49,70,1.0],[120,49,71,1.0],[120,49,72,1.0],[120,49,73,1.0],[120,49,74,1.0],[120,49,75,1.0],[120,49,76,1.0],[120,49,77,1.0],[120,49,78,1.0],[120,49,79,1.0],[120,50,64,1.0],[120,50,65,1.0],[120,50,66,1.0],[120,50,67,1.0],[120,50,68,1.0],[120,50,69,1.0],[120,50,70,1.0],[120,50,71,1.0],[120,50,72,1.0],[120,50,73,1.0],[120,50,74,1.0],[120,50,75,1.0],[120,50,76,1.0],[120,50,77,1.0],[120,50,78,1.0],[120,50,79,1.0],[120,51,64,1.0],[120,51,65,1.0],[120,51,66,1.0],[120,51,67,1.0],[120,51,68,1.0],[120,51,69,1.0],[120,51,70,1.0],[120,51,71,1.0],[120,51,72,1.0],[120,51,73,1.0],[120,51,74,1.0],[120,51,75,1.0],[120,51,76,1.0],[120,51,77,1.0],[120,51,78,1.0],[120,51,79,1.0],[120,52,64,1.0],[120,52,65,1.0],[120,52,66,1.0],[120,52,67,1.0],[120,52,68,1.0],[120,52,69,1.0],[120,52,70,1.0],[120,52,71,1.0],[120,52,72,1.0],[120,52,73,1.0],[120,52,74,1.0],[120,52,75,1.0],[120,52,76,1.0],[120,52,77,1.0],[120,52,78,1.0],[120,52,79,1.0],[120,53,64,1.0],[120,53,65,1.0],[120,53,66,1.0],[120,53,67,1.0],[120,53,68,1.0],[120,53,69,1.0],[120,53,70,1.0],[120,53,71,1.0],[120,53,72,1.0],[120,53,73,1.0],[120,53,74,1.0],[120,53,75,1.0],[120,53,76,1.0],[120,53,77,1.0],[120,53,78,1.0],[120,53,79,1.0],[120,54,64,1.0],[120,54,65,1.0],[120,54,66,1.0],[120,54,67,1.0],[120,54,68,1.0],[120,54,69,1.0],[120,54,70,1.0],[120,54,71,1.0],[120,54,72,1.0],[120,54,73,1.0],[120,54,74,1.0],[120,54,75,1.0],[120,54,76,1.0],[120,54,77,1.0],[120,54,78,1.0],[120,54,79,1.0],[120,55,64,1.0],[120,55,65,1.0],[120,55,66,1.0],[120,55,67,1.0],[120,55,68,1.0],[120,55,69,1.0],[120,55,70,1.0],[120,55,71,1.0],[120,55,72,1.0],[120,55,73,1.0],[120,55,74,1.0],[120,55,75,1.0],[120,55,76,1.0],[120,55,77,1.0],[120,55,78,1.0],[120,55,79,1.0],[120,56,64,1.0],[120,56,65,1.0],[120,56,66,1.0],[120,56,67,1.0],[120,56,68,1.0],[120,56,69,1.0],[120,56,70,1.0],[120,56,71,1.0],[120,56,72,1.0],[120,56,73,1.0],[120,56,74,1.0],[120,56,75,1.0],[120,56,76,1.0],[120,56,77,1.0],[120,56,78,1.0],[120,56,79,1.0],[120,57,64,1.0],[120,57,65,1.0],[120,57,66,1.0],[120,57,67,1.0],[120,57,68,1.0],[120,57,69,1.0],[120,57,70,1.0],[120,57,71,1.0],[120,57,72,1.0],[120,57,73,1.0],[120,57,74,1.0],[120,57,75,1.0],[120,57,76,1.0],[120,57,77,1.0],[120,57,78,1.0],[120,57,79,1.0],[120,58,64,1.0],[120,58,65,1.0],[120,58,66,1.0],[120,58,67,1.0],[120,58,68,1.0],[120,58,69,1.0],[120,58,70,1.0],[120,58,71,1.0],[120,58,72,1.0],[120,58,73,1.0],[120,58,74,1.0],[120,58,75,1.0],[120,58,76,1.0],[120,58,77,1.0],[120,58,78,1.0],[120,58,79,1.0],[120,59,64,1.0],[120,59,65,1.0],[120,59,66,1.0],[120,59,67,1.0],[120,59,68,1.0],[120,59,69,1.0],[120,59,70,1.0],[120,59,71,1.0],[120,59,72,1.0],[120,59,73,1.0],[120,59,74,1.0],[120,59,75,1.0],[120,59,76,1.0],[120,59,77,1.0],[120,59,78,1.0],[120,59,79,1.0],[120,60,64,1.0],[120,60,65,1.0],[120,60,66,1.0],[120,60,67,1.0],[120,60,68,1.0],[120,60,69,1.0],[120,60,70,1.0],[120,60,71,1.0],[120,60,72,1.0],[120,60,73,1.0],[120,60,74,1.0],[120,60,75,1.0],[120,60,76,1.0],[120,60,77,1.0],[120,60,78,1.0],[120,60,79,1.0],[120,61,64,1.0],[120,61,65,1.0],[120,61,66,1.0],[120,61,67,1.0],[120,61,68,1.0],[120,61,69,1.0],[120,61,70,1.0],[120,61,71,1.0],[120,61,72,1.0],[120,61,73,1.0],[120,61,74,1.0],[120,61,75,1.0],[120,61,76,1.0],[120,61,77,1.0],[120,61,78,1.0],[120,61,79,1.0],[120,62,64,1.0],[120,62,65,1.0],[120,62,66,1.0],[120,62,67,1.0],[120,62,68,1.0],[120,62,69,1.0],[120,62,70,1.0],[120,62,71,1.0],[120,62,72,1.0],[120,62,73,1.0],[120,62,74,1.0],[120,62,75,1.0],[120,62,76,1.0],[120,62,77,1.0],[120,62,78,1.0],[120,62,79,1.0],[120,63,64,1.0],[120,63,65,1.0],[120,63,66,1.0],[120,63,67,1.0],[120,63,68,1.0],[120,63,69,1.0],[120,63,70,1.0],[120,63,71,1.0],[120,63,72,1.0],[120,63,73,1.0],[120,63,74,1.0],[120,63,75,1.0],[120,63,76,1.0],[120,63,77,1.0],[120,63,78,1.0],[120,63,79,1.0],[120,64,64,1.0],[120,64,65,1.0],[120,64,66,1.0],[120,64,67,1.0],[120,64,68,1.0],[120,64,69,1.0],[120,64,70,1.0],[120,64,71,1.0],[120,64,72,1.0],[120,64,73,1.0],[120,64,74,1.0],[120,64,75,1.0],[120,64,76,1.0],[120,64,77,1.0],[120,64,78,1.0],[120,64,79,1.0],[120,65,64,1.0],[120,65,65,1.0],[120,65,66,1.0],[120,65,67,1.0],[120,65,68,1.0],[120,65,69,1.0],[120,65,70,1.0],[120,65,71,1.0],[120,65,72,1.0],[120,65,73,1.0],[120,65,74,1.0],[120,65,75,1.0],[120,65,76,1.0],[120,65,77,1.0],[120,65,78,1.0],[120,65,79,1.0],[120,66,64,1.0],[120,66,65,1.0],[120,66,66,1.0],[120,66,67,1.0],[120,66,68,1.0],[120,66,69,1.0],[120,66,70,1.0],[120,66,71,1.0],[120,66,72,1.0],[120,66,73,1.0],[120,66,74,1.0],[120,66,75,1.0],[120,66,76,1.0],[120,66,77,1.0],[120,66,78,1.0],[120,66,79,1.0],[120,67,64,1.0],[120,67,65,1.0],[120,67,66,1.0],[120,67,67,1.0],[120,67,68,1.0],[120,67,69,1.0],[120,67,70,1.0],[120,67,71,1.0],[120,67,72,1.0],[120,67,73,1.0],[120,67,74,1.0],[120,67,75,1.0],[120,67,76,1.0],[120,67,77,1.0],[120,67,78,1.0],[120,67,79,1.0],[120,68,64,1.0],[120,68,65,1.0],[120,68,66,1.0],[120,68,67,1.0],[120,68,68,1.0],[120,68,69,1.0],[120,68,70,1.0],[120,68,71,1.0],[120,68,72,1.0],[120,68,73,1.0],[120,68,74,1.0],[120,68,75,1.0],[120,68,76,1.0],[120,68,77,1.0],[120,68,78,1.0],[120,68,79,1.0],[120,69,64,1.0],[120,69,65,1.0],[120,69,66,1.0],[120,69,67,1.0],[120,69,68,1.0],[120,69,69,1.0],[120,69,70,1.0],[120,69,71,1.0],[120,69,72,1.0],[120,69,73,1.0],[120,69,74,1.0],[120,69,75,1.0],[120,69,76,1.0],[120,69,77,1.0],[120,69,78,1.0],[120,69,79,1.0],[120,70,64,1.0],[120,70,65,1.0],[120,70,66,1.0],[120,70,67,1.0],[120,70,68,1.0],[120,70,69,1.0],[120,70,70,1.0],[120,70,71,1.0],[120,70,72,1.0],[120,70,73,1.0],[120,70,74,1.0],[120,70,75,1.0],[120,70,76,1.0],[120,70,77,1.0],[120,70,78,1.0],[120,70,79,1.0],[120,71,64,1.0],[120,71,65,1.0],[120,71,66,1.0],[120,71,67,1.0],[120,71,68,1.0],[120,71,69,1.0],[120,71,70,1.0],[120,71,71,1.0],[120,71,72,1.0],[120,71,73,1.0],[120,71,74,1.0],[120,71,75,1.0],[120,71,76,1.0],[120,71,77,1.0],[120,71,78,1.0],[120,71,79,1.0],[120,72,64,1.0],[120,72,65,1.0],[120,72,66,1.0],[120,72,67,1.0],[120,72,68,1.0],[120,72,69,1.0],[120,72,70,1.0],[120,72,71,1.0],[120,72,72,1.0],[120,72,73,1.0],[120,72,74,1.0],[120,72,75,1.0],[120,72,76,1.0],[120,72,77,1.0],[120,72,78,1.0],[120,72,79,1.0],[120,73,64,1.0],[120,73,65,1.0],[120,73,66,1.0],[120,73,67,1.0],[120,73,68,1.0],[120,73,69,1.0],[120,73,70,1.0],[120,73,71,1.0],[120,73,72,1.0],[120,73,73,1.0],[120,73,74,1.0],[120,73,75,1.0],[120,73,76,1.0],[120,73,77,1.0],[120,73,78,1.0],[120,73,79,1.0],[120,74,64,1.0],[120,74,65,1.0],[120,74,66,1.0],[120,74,67,1.0],[120,74,68,1.0],[120,74,69,1.0],[120,74,70,1.0],[120,74,71,1.0],[120,74,72,1.0],[120,74,73,1.0],[120,74,74,1.0],[120,74,75,1.0],[120,74,76,1.0],[120,74,77,1.0],[120,74,78,1.0],[120,74,79,1.0],[120,75,64,1.0],[120,75,65,1.0],[120,75,66,1.0],[120,75,67,1.0],[120,75,68,1.0],[120,75,69,1.0],[120,75,70,1.0],[120,75,71,1.0],[120,75,72,1.0],[120,75,73,1.0],[120,75,74,1.0],[120,75,75,1.0],[120,75,76,1.0],[120,75,77,1.0],[120,75,78,1.0],[120,75,79,1.0],[120,76,64,1.0],[120,76,65,1.0],[120,76,66,1.0],[120,76,67,1.0],[120,76,68,1.0],[120,76,69,1.0],[120,76,70,1.0],[120,76,71,1.0],[120,76,72,1.0],[120,76,73,1.0],[120,76,74,1.0],[120,76,75,1.0],[120,76,76,1.0],[120,76,77,1.0],[120,76,78,1.0],[120,76,79,1.0],[120,77,64,1.0],[120,77,65,1.0],[120,77,66,1.0],[120,77,67,1.0],[120,77,68,1.0],[120,77,69,1.0],[120,77,70,1.0],[120,77,71,1.0],[120,77,72,1.0],[120,77,73,1.0],[120,77,74,1.0],[120,77,75,1.0],[120,77,76,1.0],[120,77,77,1.0],[120,77,78,1.0],[120,77,79,1.0],[120,78,64,1.0],[120,78,65,1.0],[120,78,66,1.0],[120,78,67,1.0],[120,78,68,1.0],[120,78,69,1.0],[120,78,70,1.0],[120,78,71,1.0],[120,78,72,1.0],[120,78,73,1.0],[120,78,74,1.0],[120,78,75,1.0],[120,78,76,1.0],[120,78,77,1.0],[120,78,78,1.0],[120,78,79,1.0],[120,79,64,1.0],[120,79,65,1.0],[120,79,66,1.0],[120,79,67,1.0],[120,79,68,1.0],[120,79,69,1.0],[120,79,70,1.0],[120,79,71,1.0],[120,79,72,1.0],[120,79,73,1.0],[120,79,74,1.0],[120,79,75,1.0],[120,79,76,1.0],[120,79,77,1.0],[120,79,78,1.0],[120,79,79,1.0],[120,80,64,1.0],[120,80,65,1.0],[120,80,66,1.0],[120,80,67,1.0],[120,80,68,1.0],[120,80,69,1.0],[120,80,70,1.0],[120,80,71,1.0],[120,80,72,1.0],[120,80,73,1.0],[120,80,74,1.0],[120,80,75,1.0],[120,80,76,1.0],[120,80,77,1.0],[120,80,78,1.0],[120,80,79,1.0],[120,81,64,1.0],[120,81,65,1.0],[120,81,66,1.0],[120,81,67,1.0],[120,81,68,1.0],[120,81,69,1.0],[120,81,70,1.0],[120,81,71,1.0],[120,81,72,1.0],[120,81,73,1.0],[120,81,74,1.0],[120,81,75,1.0],[120,81,76,1.0],[120,81,77,1.0],[120,81,78,1.0],[120,81,79,1.0],[120,82,64,1.0],[120,82,65,1.0],[120,82,66,1.0],[120,82,67,1.0],[120,82,68,1.0],[120,82,69,1.0],[120,82,70,1.0],[120,82,71,1.0],[120,82,72,1.0],[120,82,73,1.0],[120,82,74,1.0],[120,82,75,1.0],[120,82,76,1.0],[120,82,77,1.0],[120,82,78,1.0],[120,82,79,1.0],[120,83,64,1.0],[120,83,65,1.0],[120,83,66,1.0],[120,83,67,1.0],[120,83,68,1.0],[120,83,69,1.0],[120,83,70,1.0],[120,83,71,1.0],[120,83,72,1.0],[120,83,73,1.0],[120,83,74,1.0],[120,83,75,1.0],[120,83,76,1.0],[120,83,77,1.0],[120,83,78,1.0],[120,83,79,1.0],[120,84,64,1.0],[120,84,65,1.0],[120,84,66,1.0],[120,84,67,1.0],[120,84,68,1.0],[120,84,69,1.0],[120,84,70,1.0],[120,84,71,1.0],[120,84,72,1.0],[120,84,73,1.0],[120,84,74,1.0],[120,84,75,1.0],[120,84,76,1.0],[120,84,77,1.0],[120,84,78,1.0],[120,84,79,1.0],[120,85,64,1.0],[120,85,65,1.0],[120,85,66,1.0],[120,85,67,1.0],[120,85,68,1.0],[120,85,69,1.0],[120,85,70,1.0],[120,85,71,1.0],[120,85,72,1.0],[120,85,73,1.0],[120,85,74,1.0],[120,85,75,1.0],[120,85,76,1.0],[120,85,77,1.0],[120,85,78,1.0],[120,85,79,1.0],[120,86,64,1.0],[120,86,65,1.0],[120,86,66,1.0],[120,86,67,1.0],[120,86,68,1.0],[120,86,69,1.0],[120,86,70,1.0],[120,86,71,1.0],[120,86,72,1.0],[120,86,73,1.0],[120,86,74,1.0],[120,86,75,1.0],[120,86,76,1.0],[120,86,77,1.0],[120,86,78,1.0],[120,86,79,1.0],[120,87,64,1.0],[120,87,65,1.0],[120,87,66,1.0],[120,87,67,1.0],[120,87,68,1.0],[120,87,69,1.0],[120,87,70,1.0],[120,87,71,1.0],[120,87,72,1.0],[120,87,73,1.0],[120,87,74,1.0],[120,87,75,1.0],[120,87,76,1.0],[120,87,77,1.0],[120,87,78,1.0],[120,87,79,1.0],[120,88,64,1.0],[120,88,65,1.0],[120,88,66,1.0],[120,88,67,1.0],[120,88,68,1.0],[120,88,69,1.0],[120,88,70,1.0],[120,88,71,1.0],[120,88,72,1.0],[120,88,73,1.0],[120,88,74,1.0],[120,88,75,1.0],[120,88,76,1.0],[120,88,77,1.0],[120,88,78,1.0],[120,88,79,1.0],[120,89,64,1.0],[120,89,65,1.0],[120,89,66,1.0],[120,89,67,1.0],[120,89,68,1.0],[120,89,69,1.0],[120,89,70,1.0],[120,89,71,1.0],[120,89,72,1.0],[120,89,73,1.0],[120,89,74,1.0],[120,89,75,1.0],[120,89,76,1.0],[120,89,77,1.0],[120,89,78,1.0],[120,89,79,1.0],[120,90,64,1.0],[120,90,65,1.0],[120,90,66,1.0],[120,90,67,1.0],[120,90,68,1.0],[120,90,69,1.0],[120,90,70,1.0],[120,90,71,1.0],[120,90,72,1.0],[120,90,73,1.0],[120,90,74,1.0],[120,90,75,1.0],[120,90,76,1.0],[120,90,77,1.0],[120,90,78,1.0],[120,90,79,1.0],[120,91,64,1.0],[120,91,65,1.0],[120,91,66,1.0],[120,91,67,1.0],[120,91,68,1.0],[120,91,69,1.0],[120,91,70,1.0],[120,91,71,1.0],[120,91,72,1.0],[120,91,73,1.0],[120,91,74,1.0],[120,91,75,1.0],[120,91,76,1.0],[120,91,77,1.0],[120,91,78,1.0],[120,91,79,1.0],[120,92,64,1.0],[120,92,65,1.0],[120,92,66,1.0],[120,92,67,1.0],[120,92,68,1.0],[120,92,69,1.0],[120,92,70,1.0],[120,92,71,1.0],[120,92,72,1.0],[120,92,73,1.0],[120,92,74,1.0],[120,92,75,1.0],[120,92,76,1.0],[120,92,77,1.0],[120,92,78,1.0],[120,92,79,1.0],[120,93,64,1.0],[120,93,65,1.0],[120,93,66,1.0],[120,93,67,1.0],[120,93,68,1.0],[120,93,69,1.0],[120,93,70,1.0],[120,93,71,1.0],[120,93,72,1.0],[120,93,73,1.0],[120,93,74,1.0],[120,93,75,1.0],[120,93,76,1.0],[120,93,77,1.0],[120,93,78,1.0],[120,93,79,1.0],[120,94,64,1.0],[120,94,65,1.0],[120,94,66,1.0],[120,94,67,1.0],[120,94,68,1.0],[120,94,69,1.0],[120,94,70,1.0],[120,94,71,1.0],[120,94,72,1.0],[120,94,73,1.0],[120,94,74,1.0],[120,94,75,1.0],[120,94,76,1.0],[120,94,77,1.0],[120,94,78,1.0],[120,94,79,1.0],[120,95,64,1.0],[120,95,65,1.0],[120,95,66,1.0],[120,95,67,1.0],[120,95,68,1.0],[120,95,69,1.0],[120,95,70,1.0],[120,95,71,1.0],[120,95,72,1.0],[120,95,73,1.0],[120,95,74,1.0],[120,95,75,1.0],[120,95,76,1.0],[120,95,77,1.0],[120,95,78,1.0],[120,95,79,1.0],[120,96,64,1.0],[120,96,65,1.0],[120,96,66,1.0],[120,96,67,1.0],[120,96,68,1.0],[120,96,69,1.0],[120,96,70,1.0],[120,96,71,1.0],[120,96,72,1.0],[120,96,73,1.0],[120,96,74,1.0],[120,96,75,1.0],[120,96,76,1.0],[120,96,77,1.0],[120,96,78,1.0],[120,96,79,1.0],[120,97,64,1.0],[120,97,65,1.0],[120,97,66,1.0],[120,97,67,1.0],[120,97,68,1.0],[120,97,69,1.0],[120,97,70,1.0],[120,97,71,1.0],[120,97,72,1.0],[120,97,73,1.0],[120,97,74,1.0],[120,97,75,1.0],[120,97,76,1.0],[120,97,77,1.0],[120,97,78,1.0],[120,97,79,1.0],[120,98,64,1.0],[120,98,65,1.0],[120,98,66,1.0],[120,98,67,1.0],[120,98,68,1.0],[120,98,69,1.0],[120,98,70,1.0],[120,98,71,1.0],[120,98,72,1.0],[120,98,73,1.0],[120,98,74,1.0],[120,98,75,1.0],[120,98,76,1.0],[120,98,77,1.0],[120,98,78,1.0],[120,98,79,1.0],[120,99,64,1.0],[120,99,65,1.0],[120,99,66,1.0],[120,99,67,1.0],[120,99,68,1.0],[120,99,69,1.0],[120,99,70,1.0],[120,99,71,1.0],[120,99,72,1.0],[120,99,73,1.0],[120,99,74,1.0],[120,99,75,1.0],[120,99,76,1.0],[120,99,77,1.0],[120,99,78,1.0],[120,99,79,1.0],[120,100,64,1.0],[120,100,65,1.0],[120,100,66,1.0],[120,100,67,1.0],[120,100,68,1.0],[120,100,69,1.0],[120,100,70,1.0],[120,100,71,1.0],[120,100,72,1.0],[120,100,73,1.0],[120,100,74,1.0],[120,100,75,1.0],[120,100,76,1.0],[120,100,77,1.0],[120,100,78,1.0],[120,100,79,1.0],[120,101,64,1.0],[120,101,65,1.0],[120,101,66,1.0],[120,101,67,1.0],[120,101,68,1.0],[120,101,69,1.0],[120,101,70,1.0],[120,101,71,1.0],[120,101,72,1.0],[120,101,73,1.0],[120,101,74,1.0],[120,101,75,1.0],[120,101,76,1.0],[120,101,77,1.0],[120,101,78,1.0],[120,101,79,1.0],[120,102,64,1.0],[120,102,65,1.0],[120,102,66,1.0],[120,102,67,1.0],[120,102,68,1.0],[120,102,69,1.0],[120,102,70,1.0],[120,102,71,1.0],[120,102,72,1.0],[120,102,73,1.0],[120,102,74,1.0],[120,102,75,1.0],[120,102,76,1.0],[120,102,77,1.0],[120,102,78,1.0],[120,102,79,1.0],[120,103,64,1.0],[120,103,65,1.0],[120,103,66,1.0],[120,103,67,1.0],[120,103,68,1.0],[120,103,69,1.0],[120,103,70,1.0],[120,103,71,1.0],[120,103,72,1.0],[120,103,73,1.0],[120,103,74,1.0],[120,103,75,1.0],[120,103,76,1.0],[120,103,77,1.0],[120,103,78,1.0],[120,103,79,1.0],[120,104,64,1.0],[120,104,65,1.0],[120,104,66,1.0],[120,104,67,1.0],[120,104,68,1.0],[120,104,69,1.0],[120,104,70,1.0],[120,104,71,1.0],[120,104,72,1.0],[120,104,73,1.0],[120,104,74,1.0],[120,104,75,1.0],[120,104,76,1.0],[120,104,77,1.0],[120,104,78,1.0],[120,104,79,1.0],[120,105,64,1.0],[120,105,65,1.0],[120,105,66,1.0],[120,105,67,1.0],[120,105,68,1.0],[120,105,69,1.0],[120,105,70,1.0],[120,105,71,1.0],[120,105,72,1.0],[120,105,73,1.0],[120,105,74,1.0],[120,105,75,1.0],[120,105,76,1.0],[120,105,77,1.0],[120,105,78,1.0],[120,105,79,1.0],[120,106,64,1.0],[120,106,65,1.0],[120,106,66,1.0],[120,106,67,1.0],[120,106,68,1.0],[120,106,69,1.0],[120,106,70,1.0],[120,106,71,1.0],[120,106,72,1.0],[120,106,73,1.0],[120,106,74,1.0],[120,106,75,1.0],[120,106,76,1.0],[120,106,77,1.0],[120,106,78,1.0],[120,106,79,1.0],[120,107,64,1.0],[120,107,65,1.0],[120,107,66,1.0],[120,107,67,1.0],[120,107,68,1.0],[120,107,69,1.0],[120,107,70,1.0],[120,107,71,1.0],[120,107,72,1.0],[120,107,73,1.0],[120,107,74,1.0],[120,107,75,1.0],[120,107,76,1.0],[120,107,77,1.0],[120,107,78,1.0],[120,107,79,1.0],[120,108,64,1.0],[120,108,65,1.0],[120,108,66,1.0],[120,108,67,1.0],[120,108,68,1.0],[120,108,69,1.0],[120,108,70,1.0],[120,108,71,1.0],[120,108,72,1.0],[120,108,73,1.0],[120,108,74,1.0],[120,108,75,1.0],[120,108,76,1.0],[120,108,77,1.0],[120,108,78,1.0],[120,108,79,1.0],[120,109,64,1.0],[120,109,65,1.0],[120,109,66,1.0],[120,109,67,1.0],[120,109,68,1.0],[120,109,69,1.0],[120,109,70,1.0],[120,109,71,1.0],[120,109,72,1.0],[120,109,73,1.0],[120,109,74,1.0],[120,109,75,1.0],[120,109,76,1.0],[120,109,77,1.0],[120,109,78,1.0],[120,109,79,1.0],[120,110,64,1.0],[120,110,65,1.0],[120,110,66,1.0],[120,110,67,1.0],[120,110,68,1.0],[120,110,69,1.0],[120,110,70,1.0],[120,110,71,1.0],[120,110,72,1.0],[120,110,73,1.0],[120,110,74,1.0],[120,110,75,1.0],[120,110,76,1.0],[120,110,77,1.0],[120,110,78,1.0],[120,110,79,1.0],[120,111,64,1.0],[120,111,65,1.0],[120,111,66,1.0],[120,111,67,1.0],[120,111,68,1.0],[120,111,69,1.0],[120,111,70,1.0],[120,111,71,1.0],[120,111,72,1.0],[120,111,73,1.0],[120,111,74,1.0],[120,111,75,1.0],[120,111,76,1.0],[120,111,77,1.0],[120,111,78,1.0],[120,111,79,1.0],[120,112,64,1.0],[120,112,65,1.0],[120,112,66,1.0],[120,112,67,1.0],[120,112,68,1.0],[120,112,69,1.0],[120,112,70,1.0],[120,112,71,1.0],[120,112,72,1.0],[120,112,73,1.0],[120,112,74,1.0],[120,112,75,1.0],[120,112,76,1.0],[120,112,77,1.0],[120,112,78,1.0],[120,112,79,1.0],[120,113,64,1.0],[120,113,65,1.0],[120,113,66,1.0],[120,113,67,1.0],[120,113,68,1.0],[120,113,69,1.0],[120,113,70,1.0],[120,113,71,1.0],[120,113,72,1.0],[120,113,73,1.0],[120,113,74,1.0],[120,113,75,1.0],[120,113,76,1.0],[120,113,77,1.0],[120,113,78,1.0],[120,113,79,1.0],[120,114,64,1.0],[120,114,65,1.0],[120,114,66,1.0],[120,114,67,1.0],[120,114,68,1.0],[120,114,69,1.0],[120,114,70,1.0],[120,114,71,1.0],[120,114,72,1.0],[120,114,73,1.0],[120,114,74,1.0],[120,114,75,1.0],[120,114,76,1.0],[120,114,77,1.0],[120,114,78,1.0],[120,114,79,1.0],[120,115,64,1.0],[120,115,65,1.0],[120,115,66,1.0],[120,115,67,1.0],[120,115,68,1.0],[120,115,69,1.0],[120,115,70,1.0],[120,115,71,1.0],[120,115,72,1.0],[120,115,73,1.0],[120,115,74,1.0],[120,115,75,1.0],[120,115,76,1.0],[120,115,77,1.0],[120,115,78,1.0],[120,115,79,1.0],[120,116,64,1.0],[120,116,65,1.0],[120,116,66,1.0],[120,116,67,1.0],[120,116,68,1.0],[120,116,69,1.0],[120,116,70,1.0],[120,116,71,1.0],[120,116,72,1.0],[120,116,73,1.0],[120,116,74,1.0],[120,116,75,1.0],[120,116,76,1.0],[120,116,77,1.0],[120,116,78,1.0],[120,116,79,1.0],[120,117,64,1.0],[120,117,65,1.0],[120,117,66,1.0],[120,117,67,1.0],[120,117,68,1.0],[120,117,69,1.0],[120,117,70,1.0],[120,117,71,1.0],[120,117,72,1.0],[120,117,73,1.0],[120,117,74,1.0],[120,117,75,1.0],[120,117,76,1.0],[120,117,77,1.0],[120,117,78,1.0],[120,117,79,1.0],[120,118,64,1.0],[120,118,65,1.0],[120,118,66,1.0],[120,118,67,1.0],[120,118,68,1.0],[120,118,69,1.0],[120,118,70,1.0],[120,118,71,1.0],[120,118,72,1.0],[120,118,73,1.0],[120,118,74,1.0],[120,118,75,1.0],[120,118,76,1.0],[120,118,77,1.0],[120,118,78,1.0],[120,118,79,1.0],[120,119,64,1.0],[120,119,65,1.0],[120,119,66,1.0],[120,119,67,1.0],[120,119,68,1.0],[120,119,69,1.0],[120,119,70,1.0],[120,119,71,1.0],[120,119,72,1.0],[120,119,73,1.0],[120,119,74,1.0],[120,119,75,1.0],[120,119,76,1.0],[120,119,77,1.0],[120,119,78,1.0],[120,119,79,1.0],[120,120,64,1.0],[120,120,65,1.0],[120,120,66,1.0],[120,120,67,1.0],[120,120,68,1.0],[120,120,69,1.0],[120,120,70,1.0],[120,120,71,1.0],[120,120,72,1.0],[120,120,73,1.0],[120,120,74,1.0],[120,120,75,1.0],[120,120,76,1.0],[120,120,77,1.0],[120,120,78,1.0],[120,120,79,1.0],[120,121,64,1.0],[120,121,65,1.0],[120,121,66,1.0],[120,121,67,1.0],[120,121,68,1.0],[120,121,69,1.0],[120,121,70,1.0],[120,121,71,1.0],[120,121,72,1.0],[120,121,73,1.0],[120,121,74,1.0],[120,121,75,1.0],[120,121,76,1.0],[120,121,77,1.0],[120,121,78,1.0],[120,121,79,1.0],[120,122,64,1.0],[120,122,65,1.0],[120,122,66,1.0],[120,122,67,1.0],[120,122,68,1.0],[120,122,69,1.0],[120,122,70,1.0],[120,122,71,1.0],[120,122,72,1.0],[120,122,73,1.0],[120,122,74,1.0],[120,122,75,1.0],[120,122,76,1.0],[120,122,77,1.0],[120,122,78,1.0],[120,122,79,1.0],[120,123,64,1.0],[120,123,65,1.0],[120,123,66,1.0],[120,123,67,1.0],[120,123,68,1.0],[120,123,69,1.0],[120,123,70,1.0],[120,123,71,1.0],[120,123,72,1.0],[120,123,73,1.0],[120,123,74,1.0],[120,123,75,1.0],[120,123,76,1.0],[120,123,77,1.0],[120,123,78,1.0],[120,123,79,1.0],[120,124,64,1.0],[120,124,65,1.0],[120,124,66,1.0],[120,124,67,1.0],[120,124,68,1.0],[120,124,69,1.0],[120,124,70,1.0],[120,124,71,1.0],[120,124,72,1.0],[120,124,73,1.0],[120,124,74,1.0],[120,124,75,1.0],[120,124,76,1.0],[120,124,77,1.0],[120,124,78,1.0],[120,124,79,1.0],[120,125,64,1.0],[120,125,65,1.0],[120,125,66,1.0],[120,125,67,1.0],[120,125,68,1.0],[120,125,69,1.0],[120,125,70,1.0],[120,125,71,1.0],[120,125,72,1.0],[120,125,73,1.0],[120,125,74,1.0],[120,125,75,1.0],[120,125,76,1.0],[120,125,77,1.0],[120,125,78,1.0],[120,125,79,1.0],[120,126,64,1.0],[120,126,65,1.0],[120,126,66,1.0],[120,126,67,1.0],[120,126,68,1.0],[120,126,69,1.0],[120,126,70,1.0],[120,126,71,1.0],[120,126,72,1.0],[120,126,73,1.0],[120,126,74,1.0],[120,126,75,1.0],[120,126,76,1.0],[120,126,77,1.0],[120,126,78,1.0],[120,126,79,1.0],[120,127,64,1.0],[120,127,65,1.0],[120,127,66,1.0],[120,127,67,1.0],[120,127,68,1.0],[120,127,69,1.0],[120,127,70,1.0],[120,127,71,1.0],[120,127,72,1.0],[120,127,73,1.0],[120,127,74,1.0],[120,127,75,1.0],[120,127,76,1.0],[120,127,77,1.0],[120,127,78,1.0],[120,127,79,1.0],[120,128,64,1.0],[120,128,65,1.0],[120,128,66,1.0],[120,128,67,1.0],[120,128,68,1.0],[120,128,69,1.0],[120,128,70,1.0],[120,128,71,1.0],[120,128,72,1.0],[120,128,73,1.0],[120,128,74,1.0],[120,128,75,1.0],[120,128,76,1.0],[120,128,77,1.0],[120,128,78,1.0],[120,128,79,1.0],[120,129,64,1.0],[120,129,65,1.0],[120,129,66,1.0],[120,129,67,1.0],[120,129,68,1.0],[120,129,69,1.0],[120,129,70,1.0],[120,129,71,1.0],[120,129,72,1.0],[120,129,73,1.0],[120,129,74,1.0],[120,129,75,1.0],[120,129,76,1.0],[120,129,77,1.0],[120,129,78,1.0],[120,129,79,1.0],[120,130,64,1.0],[120,130,65,1.0],[120,130,66,1.0],[120,130,67,1.0],[120,130,68,1.0],[120,130,69,1.0],[120,130,70,1.0],[120,130,71,1.0],[120,130,72,1.0],[120,130,73,1.0],[120,130,74,1.0],[120,130,75,1.0],[120,130,76,1.0],[120,130,77,1.0],[120,130,78,1.0],[120,130,79,1.0],[120,131,64,1.0],[120,131,65,1.0],[120,131,66,1.0],[120,131,67,1.0],[120,131,68,1.0],[120,131,69,1.0],[120,131,70,1.0],[120,131,71,1.0],[120,131,72,1.0],[120,131,73,1.0],[120,131,74,1.0],[120,131,75,1.0],[120,131,76,1.0],[120,131,77,1.0],[120,131,78,1.0],[120,131,79,1.0],[120,132,64,1.0],[120,132,65,1.0],[120,132,66,1.0],[120,132,67,1.0],[120,132,68,1.0],[120,132,69,1.0],[120,132,70,1.0],[120,132,71,1.0],[120,132,72,1.0],[120,132,73,1.0],[120,132,74,1.0],[120,132,75,1.0],[120,132,76,1.0],[120,132,77,1.0],[120,132,78,1.0],[120,132,79,1.0],[120,133,64,1.0],[120,133,65,1.0],[120,133,66,1.0],[120,133,67,1.0],[120,133,68,1.0],[120,133,69,1.0],[120,133,70,1.0],[120,133,71,1.0],[120,133,72,1.0],[120,133,73,1.0],[120,133,74,1.0],[120,133,75,1.0],[120,133,76,1.0],[120,133,77,1.0],[120,133,78,1.0],[120,133,79,1.0],[120,134,64,1.0],[120,134,65,1.0],[120,134,66,1.0],[120,134,67,1.0],[120,134,68,1.0],[120,134,69,1.0],[120,134,70,1.0],[120,134,71,1.0],[120,134,72,1.0],[120,134,73,1.0],[120,134,74,1.0],[120,134,75,1.0],[120,134,76,1.0],[120,134,77,1.0],[120,134,78,1.0],[120,134,79,1.0],[120,135,64,1.0],[120,135,65,1.0],[120,135,66,1.0],[120,135,67,1.0],[120,135,68,1.0],[120,135,69,1.0],[120,135,70,1.0],[120,135,71,1.0],[120,135,72,1.0],[120,135,73,1.0],[120,135,74,1.0],[120,135,75,1.0],[120,135,76,1.0],[120,135,77,1.0],[120,135,78,1.0],[120,135,79,1.0],[120,136,64,1.0],[120,136,65,1.0],[120,136,66,1.0],[120,136,67,1.0],[120,136,68,1.0],[120,136,69,1.0],[120,136,70,1.0],[120,136,71,1.0],[120,136,72,1.0],[120,136,73,1.0],[120,136,74,1.0],[120,136,75,1.0],[120,136,76,1.0],[120,136,77,1.0],[120,136,78,1.0],[120,136,79,1.0],[120,137,64,1.0],[120,137,65,1.0],[120,137,66,1.0],[120,137,67,1.0],[120,137,68,1.0],[120,137,69,1.0],[120,137,70,1.0],[120,137,71,1.0],[120,137,72,1.0],[120,137,73,1.0],[120,137,74,1.0],[120,137,75,1.0],[120,137,76,1.0],[120,137,77,1.0],[120,137,78,1.0],[120,137,79,1.0],[120,138,64,1.0],[120,138,65,1.0],[120,138,66,1.0],[120,138,67,1.0],[120,138,68,1.0],[120,138,69,1.0],[120,138,70,1.0],[120,138,71,1.0],[120,138,72,1.0],[120,138,73,1.0],[120,138,74,1.0],[120,138,75,1.0],[120,138,76,1.0],[120,138,77,1.0],[120,138,78,1.0],[120,138,79,1.0],[120,139,64,1.0],[120,139,65,1.0],[120,139,66,1.0],[120,139,67,1.0],[120,139,68,1.0],[120,139,69,1.0],[120,139,70,1.0],[120,139,71,1.0],[120,139,72,1.0],[120,139,73,1.0],[120,139,74,1.0],[120,139,75,1.0],[120,139,76,1.0],[120,139,77,1.0],[120,139,78,1.0],[120,139,79,1.0],[120,140,64,1.0],[120,140,65,1.0],[120,140,66,1.0],[120,140,67,1.0],[120,140,68,1.0],[120,140,69,1.0],[120,140,70,1.0],[120,140,71,1.0],[120,140,72,1.0],[120,140,73,1.0],[120,140,74,1.0],[120,140,75,1.0],[120,140,76,1.0],[120,140,77,1.0],[120,140,78,1.0],[120,140,79,1.0],[120,141,64,1.0],[120,141,65,1.0],[120,141,66,1.0],[120,141,67,1.0],[120,141,68,1.0],[120,141,69,1.0],[120,141,70,1.0],[120,141,71,1.0],[120,141,72,1.0],[120,141,73,1.0],[120,141,74,1.0],[120,141,75,1.0],[120,141,76,1.0],[120,141,77,1.0],[120,141,78,1.0],[120,141,79,1.0],[120,142,64,1.0],[120,142,65,1.0],[120,142,66,1.0],[120,142,67,1.0],[120,142,68,1.0],[120,142,69,1.0],[120,142,70,1.0],[120,142,71,1.0],[120,142,72,1.0],[120,142,73,1.0],[120,142,74,1.0],[120,142,75,1.0],[120,142,76,1.0],[120,142,77,1.0],[120,142,78,1.0],[120,142,79,1.0],[120,143,64,1.0],[120,143,65,1.0],[120,143,66,1.0],[120,143,67,1.0],[120,143,68,1.0],[120,143,69,1.0],[120,143,70,1.0],[120,143,71,1.0],[120,143,72,1.0],[120,143,73,1.0],[120,143,74,1.0],[120,143,75,1.0],[120,143,76,1.0],[120,143,77,1.0],[120,143,78,1.0],[120,143,79,1.0],[120,144,64,1.0],[120,144,65,1.0],[120,144,66,1.0],[120,144,67,1.0],[120,144,68,1.0],[120,144,69,1.0],[120,144,70,1.0],[120,144,71,1.0],[120,144,72,1.0],[120,144,73,1.0],[120,144,74,1.0],[120,144,75,1.0],[120,144,76,1.0],[120,144,77,1.0],[120,144,78,1.0],[120,144,79,1.0],[120,145,64,1.0],[120,145,65,1.0],[120,145,66,1.0],[120,145,67,1.0],[120,145,68,1.0],[120,145,69,1.0],[120,145,70,1.0],[120,145,71,1.0],[120,145,72,1.0],[120,145,73,1.0],[120,145,74,1.0],[120,145,75,1.0],[120,145,76,1.0],[120,145,77,1.0],[120,145,78,1.0],[120,145,79,1.0],[120,146,64,1.0],[120,146,65,1.0],[120,146,66,1.0],[120,146,67,1.0],[120,146,68,1.0],[120,146,69,1.0],[120,146,70,1.0],[120,146,71,1.0],[120,146,72,1.0],[120,146,73,1.0],[120,146,74,1.0],[120,146,75,1.0],[120,146,76,1.0],[120,146,77,1.0],[120,146,78,1.0],[120,146,79,1.0],[120,147,64,1.0],[120,147,65,1.0],[120,147,66,1.0],[120,147,67,1.0],[120,147,68,1.0],[120,147,69,1.0],[120,147,70,1.0],[120,147,71,1.0],[120,147,72,1.0],[120,147,73,1.0],[120,147,74,1.0],[120,147,75,1.0],[120,147,76,1.0],[120,147,77,1.0],[120,147,78,1.0],[120,147,79,1.0],[120,148,64,1.0],[120,148,65,1.0],[120,148,66,1.0],[120,148,67,1.0],[120,148,68,1.0],[120,148,69,1.0],[120,148,70,1.0],[120,148,71,1.0],[120,148,72,1.0],[120,148,73,1.0],[120,148,74,1.0],[120,148,75,1.0],[120,148,76,1.0],[120,148,77,1.0],[120,148,78,1.0],[120,148,79,1.0],[120,149,64,1.0],[120,149,65,1.0],[120,149,66,1.0],[120,149,67,1.0],[120,149,68,1.0],[120,149,69,1.0],[120,149,70,1.0],[120,149,71,1.0],[120,149,72,1.0],[120,149,73,1.0],[120,149,74,1.0],[120,149,75,1.0],[120,149,76,1.0],[120,149,77,1.0],[120,149,78,1.0],[120,149,79,1.0],[120,150,64,1.0],[120,150,65,1.0],[120,150,66,1.0],[120,150,67,1.0],[120,150,68,1.0],[120,150,69,1.0],[120,150,70,1.0],[120,150,71,1.0],[120,150,72,1.0],[120,150,73,1.0],[120,150,74,1.0],[120,150,75,1.0],[120,150,76,1.0],[120,150,77,1.0],[120,150,78,1.0],[120,150,79,1.0],[120,151,64,1.0],[120,151,65,1.0],[120,151,66,1.0],[120,151,67,1.0],[120,151,68,1.0],[120,151,69,1.0],[120,151,70,1.0],[120,151,71,1.0],[120,151,72,1.0],[120,151,73,1.0],[120,151,74,1.0],[120,151,75,1.0],[120,151,76,1.0],[120,151,77,1.0],[120,151,78,1.0],[120,151,79,1.0],[120,152,64,1.0],[120,152,65,1.0],[120,152,66,1.0],[120,152,67,1.0],[120,152,68,1.0],[120,152,69,1.0],[120,152,70,1.0],[120,152,71,1.0],[120,152,72,1.0],[120,152,73,1.0],[120,152,74,1.0],[120,152,75,1.0],[120,152,76,1.0],[120,152,77,1.0],[120,152,78,1.0],[120,152,79,1.0],[120,153,64,1.0],[120,153,65,1.0],[120,153,66,1.0],[120,153,67,1.0],[120,153,68,1.0],[120,153,69,1.0],[120,153,70,1.0],[120,153,71,1.0],[120,153,72,1.0],[120,153,73,1.0],[120,153,74,1.0],[120,153,75,1.0],[120,153,76,1.0],[120,153,77,1.0],[120,153,78,1.0],[120,153,79,1.0],[120,154,64,1.0],[120,154,65,1.0],[120,154,66,1.0],[120,154,67,1.0],[120,154,68,1.0],[120,154,69,1.0],[120,154,70,1.0],[120,154,71,1.0],[120,154,72,1.0],[120,154,73,1.0],[120,154,74,1.0],[120,154,75,1.0],[120,154,76,1.0],[120,154,77,1.0],[120,154,78,1.0],[120,154,79,1.0],[120,155,64,1.0],[120,155,65,1.0],[120,155,66,1.0],[120,155,67,1.0],[120,155,68,1.0],[120,155,69,1.0],[120,155,70,1.0],[120,155,71,1.0],[120,155,72,1.0],[120,155,73,1.0],[120,155,74,1.0],[120,155,75,1.0],[120,155,76,1.0],[120,155,77,1.0],[120,155,78,1.0],[120,155,79,1.0],[120,156,64,1.0],[120,156,65,1.0],[120,156,66,1.0],[120,156,67,1.0],[120,156,68,1.0],[120,156,69,1.0],[120,156,70,1.0],[120,156,71,1.0],[120,156,72,1.0],[120,156,73,1.0],[120,156,74,1.0],[120,156,75,1.0],[120,156,76,1.0],[120,156,77,1.0],[120,156,78,1.0],[120,156,79,1.0],[120,157,64,1.0],[120,157,65,1.0],[120,157,66,1.0],[120,157,67,1.0],[120,157,68,1.0],[120,157,69,1.0],[120,157,70,1.0],[120,157,71,1.0],[120,157,72,1.0],[120,157,73,1.0],[120,157,74,1.0],[120,157,75,1.0],[120,157,76,1.0],[120,157,77,1.0],[120,157,78,1.0],[120,157,79,1.0],[120,158,64,1.0],[120,158,65,1.0],[120,158,66,1.0],[120,158,67,1.0],[120,158,68,1.0],[120,158,69,1.0],[120,158,70,1.0],[120,158,71,1.0],[120,158,72,1.0],[120,158,73,1.0],[120,158,74,1.0],[120,158,75,1.0],[120,158,76,1.0],[120,158,77,1.0],[120,158,78,1.0],[120,158,79,1.0],[120,159,64,1.0],[120,159,65,1.0],[120,159,66,1.0],[120,159,67,1.0],[120,159,68,1.0],[120,159,69,1.0],[120,159,70,1.0],[120,159,71,1.0],[120,159,72,1.0],[120,159,73,1.0],[120,159,74,1.0],[120,159,75,1.0],[120,159,76,1.0],[120,159,77,1.0],[120,159,78,1.0],[120,159,79,1.0],[120,160,64,1.0],[120,160,65,1.0],[120,160,66,1.0],[120,160,67,1.0],[120,160,68,1.0],[120,160,69,1.0],[120,160,70,1.0],[120,160,71,1.0],[120,160,72,1.0],[120,160,73,1.0],[120,160,74,1.0],[120,160,75,1.0],[120,160,76,1.0],[120,160,77,1.0],[120,160,78,1.0],[120,160,79,1.0],[120,161,64,1.0],[120,161,65,1.0],[120,161,66,1.0],[120,161,67,1.0],[120,161,68,1.0],[120,161,69,1.0],[120,161,70,1.0],[120,161,71,1.0],[120,161,72,1.0],[120,161,73,1.0],[120,161,74,1.0],[120,161,75,1.0],[120,161,76,1.0],[120,161,77,1.0],[120,161,78,1.0],[120,161,79,1.0],[120,162,64,1.0],[120,162,65,1.0],[120,162,66,1.0],[120,162,67,1.0],[120,162,68,1.0],[120,162,69,1.0],[120,162,70,1.0],[120,162,71,1.0],[120,162,72,1.0],[120,162,73,1.0],[120,162,74,1.0],[120,162,75,1.0],[120,162,76,1.0],[120,162,77,1.0],[120,162,78,1.0],[120,162,79,1.0],[120,163,64,1.0],[120,163,65,1.0],[120,163,66,1.0],[120,163,67,1.0],[120,163,68,1.0],[120,163,69,1.0],[120,163,70,1.0],[120,163,71,1.0],[120,163,72,1.0],[120,163,73,1.0],[120,163,74,1.0],[120,163,75,1.0],[120,163,76,1.0],[120,163,77,1.0],[120,163,78,1.0],[120,163,79,1.0],[120,164,64,1.0],[120,164,65,1.0],[120,164,66,1.0],[120,164,67,1.0],[120,164,68,1.0],[120,164,69,1.0],[120,164,70,1.0],[120,164,71,1.0],[120,164,72,1.0],[120,164,73,1.0],[120,164,74,1.0],[120,164,75,1.0],[120,164,76,1.0],[120,164,77,1.0],[120,164,78,1.0],[120,164,79,1.0],[120,165,64,1.0],[120,165,65,1.0],[120,165,66,1.0],[120,165,67,1.0],[120,165,68,1.0],[120,165,69,1.0],[120,165,70,1.0],[120,165,71,1.0],[120,165,72,1.0],[120,165,73,1.0],[120,165,74,1.0],[120,165,75,1.0],[120,165,76,1.0],[120,165,77,1.0],[120,165,78,1.0],[120,165,79,1.0],[120,166,64,1.0],[120,166,65,1.0],[120,166,66,1.0],[120,166,67,1.0],[120,166,68,1.0],[120,166,69,1.0],[120,166,70,1.0],[120,166,71,1.0],[120,166,72,1.0],[120,166,73,1.0],[120,166,74,1.0],[120,166,75,1.0],[120,166,76,1.0],[120,166,77,1.0],[120,166,78,1.0],[120,166,79,1.0],[120,167,64,1.0],[120,167,65,1.0],[120,167,66,1.0],[120,167,67,1.0],[120,167,68,1.0],[120,167,69,1.0],[120,167,70,1.0],[120,167,71,1.0],[120,167,72,1.0],[120,167,73,1.0],[120,167,74,1.0],[120,167,75,1.0],[120,167,76,1.0],[120,167,77,1.0],[120,167,78,1.0],[120,167,79,1.0],[120,168,64,1.0],[120,168,65,1.0],[120,168,66,1.0],[120,168,67,1.0],[120,168,68,1.0],[120,168,69,1.0],[120,168,70,1.0],[120,168,71,1.0],[120,168,72,1.0],[120,168,73,1.0],[120,168,74,1.0],[120,168,75,1.0],[120,168,76,1.0],[120,168,77,1.0],[120,168,78,1.0],[120,168,79,1.0],[120,169,64,1.0],[120,169,65,1.0],[120,169,66,1.0],[120,169,67,1.0],[120,169,68,1.0],[120,169,69,1.0],[120,169,70,1.0],[120,169,71,1.0],[120,169,72,1.0],[120,169,73,1.0],[120,169,74,1.0],[120,169,75,1.0],[120,169,76,1.0],[120,169,77,1.0],[120,169,78,1.0],[120,169,79,1.0],[120,170,64,1.0],[120,170,65,1.0],[120,170,66,1.0],[120,170,67,1.0],[120,170,68,1.0],[120,170,69,1.0],[120,170,70,1.0],[120,170,71,1.0],[120,170,72,1.0],[120,170,73,1.0],[120,170,74,1.0],[120,170,75,1.0],[120,170,76,1.0],[120,170,77,1.0],[120,170,78,1.0],[120,170,79,1.0],[120,171,64,1.0],[120,171,65,1.0],[120,171,66,1.0],[120,171,67,1.0],[120,171,68,1.0],[120,171,69,1.0],[120,171,70,1.0],[120,171,71,1.0],[120,171,72,1.0],[120,171,73,1.0],[120,171,74,1.0],[120,171,75,1.0],[120,171,76,1.0],[120,171,77,1.0],[120,171,78,1.0],[120,171,79,1.0],[120,172,64,1.0],[120,172,65,1.0],[120,172,66,1.0],[120,172,67,1.0],[120,172,68,1.0],[120,172,69,1.0],[120,172,70,1.0],[120,172,71,1.0],[120,172,72,1.0],[120,172,73,1.0],[120,172,74,1.0],[120,172,75,1.0],[120,172,76,1.0],[120,172,77,1.0],[120,172,78,1.0],[120,172,79,1.0],[120,173,64,1.0],[120,173,65,1.0],[120,173,66,1.0],[120,173,67,1.0],[120,173,68,1.0],[120,173,69,1.0],[120,173,70,1.0],[120,173,71,1.0],[120,173,72,1.0],[120,173,73,1.0],[120,173,74,1.0],[120,173,75,1.0],[120,173,76,1.0],[120,173,77,1.0],[120,173,78,1.0],[120,173,79,1.0],[120,174,64,1.0],[120,174,65,1.0],[120,174,66,1.0],[120,174,67,1.0],[120,174,68,1.0],[120,174,69,1.0],[120,174,70,1.0],[120,174,71,1.0],[120,174,72,1.0],[120,174,73,1.0],[120,174,74,1.0],[120,174,75,1.0],[120,174,76,1.0],[120,174,77,1.0],[120,174,78,1.0],[120,174,79,1.0],[120,175,64,1.0],[120,175,65,1.0],[120,175,66,1.0],[120,175,67,1.0],[120,175,68,1.0],[120,175,69,1.0],[120,175,70,1.0],[120,175,71,1.0],[120,175,72,1.0],[120,175,73,1.0],[120,175,74,1.0],[120,175,75,1.0],[120,175,76,1.0],[120,175,77,1.0],[120,175,78,1.0],[120,175,79,1.0],[120,176,64,1.0],[120,176,65,1.0],[120,176,66,1.0],[120,176,67,1.0],[120,176,68,1.0],[120,176,69,1.0],[120,176,70,1.0],[120,176,71,1.0],[120,176,72,1.0],[120,176,73,1.0],[120,176,74,1.0],[120,176,75,1.0],[120,176,76,1.0],[120,176,77,1.0],[120,176,78,1.0],[120,176,79,1.0],[120,177,64,1.0],[120,177,65,1.0],[120,177,66,1.0],[120,177,67,1.0],[120,177,68,1.0],[120,177,69,1.0],[120,177,70,1.0],[120,177,71,1.0],[120,177,72,1.0],[120,177,73,1.0],[120,177,74,1.0],[120,177,75,1.0],[120,177,76,1.0],[120,177,77,1.0],[120,177,78,1.0],[120,177,79,1.0],[120,178,64,1.0],[120,178,65,1.0],[120,178,66,1.0],[120,178,67,1.0],[120,178,68,1.0],[120,178,69,1.0],[120,178,70,1.0],[120,178,71,1.0],[120,178,72,1.0],[120,178,73,1.0],[120,178,74,1.0],[120,178,75,1.0],[120,178,76,1.0],[120,178,77,1.0],[120,178,78,1.0],[120,178,79,1.0],[120,179,64,1.0],[120,179,65,1.0],[120,179,66,1.0],[120,179,67,1.0],[120,179,68,1.0],[120,179,69,1.0],[120,179,70,1.0],[120,179,71,1.0],[120,179,72,1.0],[120,179,73,1.0],[120,179,74,1.0],[120,179,75,1.0],[120,179,76,1.0],[120,179,77,1.0],[120,179,78,1.0],[120,179,79,1.0],[120,180,64,1.0],[120,180,65,1.0],[120,180,66,1.0],[120,180,67,1.0],[120,180,68,1.0],[120,180,69,1.0],[120,180,70,1.0],[120,180,71,1.0],[120,180,72,1.0],[120,180,73,1.0],[120,180,74,1.0],[120,180,75,1.0],[120,180,76,1.0],[120,180,77,1.0],[120,180,78,1.0],[120,180,79,1.0],[120,181,64,1.0],[120,181,65,1.0],[120,181,66,1.0],[120,181,67,1.0],[120,181,68,1.0],[120,181,69,1.0],[120,181,70,1.0],[120,181,71,1.0],[120,181,72,1.0],[120,181,73,1.0],[120,181,74,1.0],[120,181,75,1.0],[120,181,76,1.0],[120,181,77,1.0],[120,181,78,1.0],[120,181,79,1.0],[120,182,64,1.0],[120,182,65,1.0],[120,182,66,1.0],[120,182,67,1.0],[120,182,68,1.0],[120,182,69,1.0],[120,182,70,1.0],[120,182,71,1.0],[120,182,72,1.0],[120,182,73,1.0],[120,182,74,1.0],[120,182,75,1.0],[120,182,76,1.0],[120,182,77,1.0],[120,182,78,1.0],[120,182,79,1.0],[120,183,64,1.0],[120,183,65,1.0],[120,183,66,1.0],[120,183,67,1.0],[120,183,68,1.0],[120,183,69,1.0],[120,183,70,1.0],[120,183,71,1.0],[120,183,72,1.0],[120,183,73,1.0],[120,183,74,1.0],[120,183,75,1.0],[120,183,76,1.0],[120,183,77,1.0],[120,183,78,1.0],[120,183,79,1.0],[120,184,64,1.0],[120,184,65,1.0],[120,184,66,1.0],[120,184,67,1.0],[120,184,68,1.0],[120,184,69,1.0],[120,184,70,1.0],[120,184,71,1.0],[120,184,72,1.0],[120,184,73,1.0],[120,184,74,1.0],[120,184,75,1.0],[120,184,76,1.0],[120,184,77,1.0],[120,184,78,1.0],[120,184,79,1.0],[120,185,64,1.0],[120,185,65,1.0],[120,185,66,1.0],[120,185,67,1.0],[120,185,68,1.0],[120,185,69,1.0],[120,185,70,1.0],[120,185,71,1.0],[120,185,72,1.0],[120,185,73,1.0],[120,185,74,1.0],[120,185,75,1.0],[120,185,76,1.0],[120,185,77,1.0],[120,185,78,1.0],[120,185,79,1.0],[120,186,64,1.0],[120,186,65,1.0],[120,186,66,1.0],[120,186,67,1.0],[120,186,68,1.0],[120,186,69,1.0],[120,186,70,1.0],[120,186,71,1.0],[120,186,72,1.0],[120,186,73,1.0],[120,186,74,1.0],[120,186,75,1.0],[120,186,76,1.0],[120,186,77,1.0],[120,186,78,1.0],[120,186,79,1.0],[120,187,64,1.0],[120,187,65,1.0],[120,187,66,1.0],[120,187,67,1.0],[120,187,68,1.0],[120,187,69,1.0],[120,187,70,1.0],[120,187,71,1.0],[120,187,72,1.0],[120,187,73,1.0],[120,187,74,1.0],[120,187,75,1.0],[120,187,76,1.0],[120,187,77,1.0],[120,187,78,1.0],[120,187,79,1.0],[120,188,64,1.0],[120,188,65,1.0],[120,188,66,1.0],[120,188,67,1.0],[120,188,68,1.0],[120,188,69,1.0],[120,188,70,1.0],[120,188,71,1.0],[120,188,72,1.0],[120,188,73,1.0],[120,188,74,1.0],[120,188,75,1.0],[120,188,76,1.0],[120,188,77,1.0],[120,188,78,1.0],[120,188,79,1.0],[120,189,64,1.0],[120,189,65,1.0],[120,189,66,1.0],[120,189,67,1.0],[120,189,68,1.0],[120,189,69,1.0],[120,189,70,1.0],[120,189,71,1.0],[120,189,72,1.0],[120,189,73,1.0],[120,189,74,1.0],[120,189,75,1.0],[120,189,76,1.0],[120,189,77,1.0],[120,189,78,1.0],[120,189,79,1.0],[120,190,64,1.0],[120,190,65,1.0],[120,190,66,1.0],[120,190,67,1.0],[120,190,68,1.0],[120,190,69,1.0],[120,190,70,1.0],[120,190,71,1.0],[120,190,72,1.0],[120,190,73,1.0],[120,190,74,1.0],[120,190,75,1.0],[120,190,76,1.0],[120,190,77,1.0],[120,190,78,1.0],[120,190,79,1.0],[120,191,64,1.0],[120,191,65,1.0],[120,191,66,1.0],[120,191,67,1.0],[120,191,68,1.0],[120,191,69,1.0],[120,191,70,1.0],[120,191,71,1.0],[120,191,72,1.0],[120,191,73,1.0],[120,191,74,1.0],[120,191,75,1.0],[120,191,76,1.0],[120,191,77,1.0],[120,191,78,1.0],[120,191,79,1.0],[120,192,64,1.0],[120,192,65,1.0],[120,192,66,1.0],[120,192,67,1.0],[120,192,68,1.0],[120,192,69,1.0],[120,192,70,1.0],[120,192,71,1.0],[120,192,72,1.0],[120,192,73,1.0],[120,192,74,1.0],[120,192,75,1.0],[120,192,76,1.0],[120,192,77,1.0],[120,192,78,1.0],[120,192,79,1.0],[120,193,64,1.0],[120,193,65,1.0],[120,193,66,1.0],[120,193,67,1.0],[120,193,68,1.0],[120,193,69,1.0],[120,193,70,1.0],[120,193,71,1.0],[120,193,72,1.0],[120,193,73,1.0],[120,193,74,1.0],[120,193,75,1.0],[120,193,76,1.0],[120,193,77,1.0],[120,193,78,1.0],[120,193,79,1.0],[120,194,64,1.0],[120,194,65,1.0],[120,194,66,1.0],[120,194,67,1.0],[120,194,68,1.0],[120,194,69,1.0],[120,194,70,1.0],[120,194,71,1.0],[120,194,72,1.0],[120,194,73,1.0],[120,194,74,1.0],[120,194,75,1.0],[120,194,76,1.0],[120,194,77,1.0],[120,194,78,1.0],[120,194,79,1.0],[120,195,64,1.0],[120,195,65,1.0],[120,195,66,1.0],[120,195,67,1.0],[120,195,68,1.0],[120,195,69,1.0],[120,195,70,1.0],[120,195,71,1.0],[120,195,72,1.0],[120,195,73,1.0],[120,195,74,1.0],[120,195,75,1.0],[120,195,76,1.0],[120,195,77,1.0],[120,195,78,1.0],[120,195,79,1.0],[120,196,64,1.0],[120,196,65,1.0],[120,196,66,1.0],[120,196,67,1.0],[120,196,68,1.0],[120,196,69,1.0],[120,196,70,1.0],[120,196,71,1.0],[120,196,72,1.0],[120,196,73,1.0],[120,196,74,1.0],[120,196,75,1.0],[120,196,76,1.0],[120,196,77,1.0],[120,196,78,1.0],[120,196,79,1.0],[120,197,64,1.0],[120,197,65,1.0],[120,197,66,1.0],[120,197,67,1.0],[120,197,68,1.0],[120,197,69,1.0],[120,197,70,1.0],[120,197,71,1.0],[120,197,72,1.0],[120,197,73,1.0],[120,197,74,1.0],[120,197,75,1.0],[120,197,76,1.0],[120,197,77,1.0],[120,197,78,1.0],[120,197,79,1.0],[120,198,64,1.0],[120,198,65,1.0],[120,198,66,1.0],[120,198,67,1.0],[120,198,68,1.0],[120,198,69,1.0],[120,198,70,1.0],[120,198,71,1.0],[120,198,72,1.0],[120,198,73,1.0],[120,198,74,1.0],[120,198,75,1.0],[120,198,76,1.0],[120,198,77,1.0],[120,198,78,1.0],[120,198,79,1.0],[120,199,64,1.0],[120,199,65,1.0],[120,199,66,1.0],[120,199,67,1.0],[120,199,68,1.0],[120,199,69,1.0],[120,199,70,1.0],[120,199,71,1.0],[120,199,72,1.0],[120,199,73,1.0],[120,199,74,1.0],[120,199,75,1.0],[120,199,76,1.0],[120,199,77,1.0],[120,199,78,1.0],[120,199,79,1.0],[120,200,64,1.0],[120,200,65,1.0],[120,200,66,1.0],[120,200,67,1.0],[120,200,68,1.0],[120,200,69,1.0],[120,200,70,1.0],[120,200,71,1.0],[120,200,72,1.0],[120,200,73,1.0],[120,200,74,1.0],[120,200,75,1.0],[120,200,76,1.0],[120,200,77,1.0],[120,200,78,1.0],[120,200,79,1.0],[120,201,64,1.0],[120,201,65,1.0],[120,201,66,1.0],[120,201,67,1.0],[120,201,68,1.0],[120,201,69,1.0],[120,201,70,1.0],[120,201,71,1.0],[120,201,72,1.0],[120,201,73,1.0],[120,201,74,1.0],[120,201,75,1.0],[120,201,76,1.0],[120,201,77,1.0],[120,201,78,1.0],[120,201,79,1.0],[120,202,64,1.0],[120,202,65,1.0],[120,202,66,1.0],[120,202,67,1.0],[120,202,68,1.0],[120,202,69,1.0],[120,202,70,1.0],[120,202,71,1.0],[120,202,72,1.0],[120,202,73,1.0],[120,202,74,1.0],[120,202,75,1.0],[120,202,76,1.0],[120,202,77,1.0],[120,202,78,1.0],[120,202,79,1.0],[120,203,64,1.0],[120,203,65,1.0],[120,203,66,1.0],[120,203,67,1.0],[120,203,68,1.0],[120,203,69,1.0],[120,203,70,1.0],[120,203,71,1.0],[120,203,72,1.0],[120,203,73,1.0],[120,203,74,1.0],[120,203,75,1.0],[120,203,76,1.0],[120,203,77,1.0],[120,203,78,1.0],[120,203,79,1.0],[120,204,64,1.0],[120,204,65,1.0],[120,204,66,1.0],[120,204,67,1.0],[120,204,68,1.0],[120,204,69,1.0],[120,204,70,1.0],[120,204,71,1.0],[120,204,72,1.0],[120,204,73,1.0],[120,204,74,1.0],[120,204,75,1.0],[120,204,76,1.0],[120,204,77,1.0],[120,204,78,1.0],[120,204,79,1.0],[120,205,64,1.0],[120,205,65,1.0],[120,205,66,1.0],[120,205,67,1.0],[120,205,68,1.0],[120,205,69,1.0],[120,205,70,1.0],[120,205,71,1.0],[120,205,72,1.0],[120,205,73,1.0],[120,205,74,1.0],[120,205,75,1.0],[120,205,76,1.0],[120,205,77,1.0],[120,205,78,1.0],[120,205,79,1.0],[120,206,64,1.0],[120,206,65,1.0],[120,206,66,1.0],[120,206,67,1.0],[120,206,68,1.0],[120,206,69,1.0],[120,206,70,1.0],[120,206,71,1.0],[120,206,72,1.0],[120,206,73,1.0],[120,206,74,1.0],[120,206,75,1.0],[120,206,76,1.0],[120,206,77,1.0],[120,206,78,1.0],[120,206,79,1.0],[120,207,64,1.0],[120,207,65,1.0],[120,207,66,1.0],[120,207,67,1.0],[120,207,68,1.0],[120,207,69,1.0],[120,207,70,1.0],[120,207,71,1.0],[120,207,72,1.0],[120,207,73,1.0],[120,207,74,1.0],[120,207,75,1.0],[120,207,76,1.0],[120,207,77,1.0],[120,207,78,1.0],[120,207,79,1.0],[120,208,64,1.0],[120,208,65,1.0],[120,208,66,1.0],[120,208,67,1.0],[120,208,68,1.0],[120,208,69,1.0],[120,208,70,1.0],[120,208,71,1.0],[120,208,72,1.0],[120,208,73,1.0],[120,208,74,1.0],[120,208,75,1.0],[120,208,76,1.0],[120,208,77,1.0],[120,208,78,1.0],[120,208,79,1.0],[120,209,64,1.0],[120,209,65,1.0],[120,209,66,1.0],[120,209,67,1.0],[120,209,68,1.0],[120,209,69,1.0],[120,209,70,1.0],[120,209,71,1.0],[120,209,72,1.0],[120,209,73,1.0],[120,209,74,1.0],[120,209,75,1.0],[120,209,76,1.0],[120,209,77,1.0],[120,209,78,1.0],[120,209,79,1.0],[120,210,64,1.0],[120,210,65,1.0],[120,210,66,1.0],[120,210,67,1.0],[120,210,68,1.0],[120,210,69,1.0],[120,210,70,1.0],[120,210,71,1.0],[120,210,72,1.0],[120,210,73,1.0],[120,210,74,1.0],[120,210,75,1.0],[120,210,76,1.0],[120,210,77,1.0],[120,210,78,1.0],[120,210,79,1.0],[120,211,64,1.0],[120,211,65,1.0],[120,211,66,1.0],[120,211,67,1.0],[120,211,68,1.0],[120,211,69,1.0],[120,211,70,1.0],[120,211,71,1.0],[120,211,72,1.0],[120,211,73,1.0],[120,211,74,1.0],[120,211,75,1.0],[120,211,76,1.0],[120,211,77,1.0],[120,211,78,1.0],[120,211,79,1.0],[120,212,64,1.0],[120,212,65,1.0],[120,212,66,1.0],[120,212,67,1.0],[120,212,68,1.0],[120,212,69,1.0],[120,212,70,1.0],[120,212,71,1.0],[120,212,72,1.0],[120,212,73,1.0],[120,212,74,1.0],[120,212,75,1.0],[120,212,76,1.0],[120,212,77,1.0],[120,212,78,1.0],[120,212,79,1.0],[120,213,64,1.0],[120,213,65,1.0],[120,213,66,1.0],[120,213,67,1.0],[120,213,68,1.0],[120,213,69,1.0],[120,213,70,1.0],[120,213,71,1.0],[120,213,72,1.0],[120,213,73,1.0],[120,213,74,1.0],[120,213,75,1.0],[120,213,76,1.0],[120,213,77,1.0],[120,213,78,1.0],[120,213,79,1.0],[120,214,64,1.0],[120,214,65,1.0],[120,214,66,1.0],[120,214,67,1.0],[120,214,68,1.0],[120,214,69,1.0],[120,214,70,1.0],[120,214,71,1.0],[120,214,72,1.0],[120,214,73,1.0],[120,214,74,1.0],[120,214,75,1.0],[120,214,76,1.0],[120,214,77,1.0],[120,214,78,1.0],[120,214,79,1.0],[120,215,64,1.0],[120,215,65,1.0],[120,215,66,1.0],[120,215,67,1.0],[120,215,68,1.0],[120,215,69,1.0],[120,215,70,1.0],[120,215,71,1.0],[120,215,72,1.0],[120,215,73,1.0],[120,215,74,1.0],[120,215,75,1.0],[120,215,76,1.0],[120,215,77,1.0],[120,215,78,1.0],[120,215,79,1.0],[120,216,64,1.0],[120,216,65,1.0],[120,216,66,1.0],[120,216,67,1.0],[120,216,68,1.0],[120,216,69,1.0],[120,216,70,1.0],[120,216,71,1.0],[120,216,72,1.0],[120,216,73,1.0],[120,216,74,1.0],[120,216,75,1.0],[120,216,76,1.0],[120,216,77,1.0],[120,216,78,1.0],[120,216,79,1.0],[120,217,64,1.0],[120,217,65,1.0],[120,217,66,1.0],[120,217,67,1.0],[120,217,68,1.0],[120,217,69,1.0],[120,217,70,1.0],[120,217,71,1.0],[120,217,72,1.0],[120,217,73,1.0],[120,217,74,1.0],[120,217,75,1.0],[120,217,76,1.0],[120,217,77,1.0],[120,217,78,1.0],[120,217,79,1.0],[120,218,64,1.0],[120,218,65,1.0],[120,218,66,1.0],[120,218,67,1.0],[120,218,68,1.0],[120,218,69,1.0],[120,218,70,1.0],[120,218,71,1.0],[120,218,72,1.0],[120,218,73,1.0],[120,218,74,1.0],[120,218,75,1.0],[120,218,76,1.0],[120,218,77,1.0],[120,218,78,1.0],[120,218,79,1.0],[120,219,64,1.0],[120,219,65,1.0],[120,219,66,1.0],[120,219,67,1.0],[120,219,68,1.0],[120,219,69,1.0],[120,219,70,1.0],[120,219,71,1.0],[120,219,72,1.0],[120,219,73,1.0],[120,219,74,1.0],[120,219,75,1.0],[120,219,76,1.0],[120,219,77,1.0],[120,219,78,1.0],[120,219,79,1.0],[120,220,64,1.0],[120,220,65,1.0],[120,220,66,1.0],[120,220,67,1.0],[120,220,68,1.0],[120,220,69,1.0],[120,220,70,1.0],[120,220,71,1.0],[120,220,72,1.0],[120,220,73,1.0],[120,220,74,1.0],[120,220,75,1.0],[120,220,76,1.0],[120,220,77,1.0],[120,220,78,1.0],[120,220,79,1.0],[120,221,64,1.0],[120,221,65,1.0],[120,221,66,1.0],[120,221,67,1.0],[120,221,68,1.0],[120,221,69,1.0],[120,221,70,1.0],[120,221,71,1.0],[120,221,72,1.0],[120,221,73,1.0],[120,221,74,1.0],[120,221,75,1.0],[120,221,76,1.0],[120,221,77,1.0],[120,221,78,1.0],[120,221,79,1.0],[120,222,64,1.0],[120,222,65,1.0],[120,222,66,1.0],[120,222,67,1.0],[120,222,68,1.0],[120,222,69,1.0],[120,222,70,1.0],[120,222,71,1.0],[120,222,72,1.0],[120,222,73,1.0],[120,222,74,1.0],[120,222,75,1.0],[120,222,76,1.0],[120,222,77,1.0],[120,222,78,1.0],[120,222,79,1.0],[120,223,64,1.0],[120,223,65,1.0],[120,223,66,1.0],[120,223,67,1.0],[120,223,68,1.0],[120,223,69,1.0],[120,223,70,1.0],[120,223,71,1.0],[120,223,72,1.0],[120,223,73,1.0],[120,223,74,1.0],[120,223,75,1.0],[120,223,76,1.0],[120,223,77,1.0],[120,223,78,1.0],[120,223,79,1.0],[120,224,64,1.0],[120,224,65,1.0],[120,224,66,1.0],[120,224,67,1.0],[120,224,68,1.0],[120,224,69,1.0],[120,224,70,1.0],[120,224,71,1.0],[120,224,72,1.0],[120,224,73,1.0],[120,224,74,1.0],[120,224,75,1.0],[120,224,76,1.0],[120,224,77,1.0],[120,224,78,1.0],[120,224,79,1.0],[120,225,64,1.0],[120,225,65,1.0],[120,225,66,1.0],[120,225,67,1.0],[120,225,68,1.0],[120,225,69,1.0],[120,225,70,1.0],[120,225,71,1.0],[120,225,72,1.0],[120,225,73,1.0],[120,225,74,1.0],[120,225,75,1.0],[120,225,76,1.0],[120,225,77,1.0],[120,225,78,1.0],[120,225,79,1.0],[120,226,64,1.0],[120,226,65,1.0],[120,226,66,1.0],[120,226,67,1.0],[120,226,68,1.0],[120,226,69,1.0],[120,226,70,1.0],[120,226,71,1.0],[120,226,72,1.0],[120,226,73,1.0],[120,226,74,1.0],[120,226,75,1.0],[120,226,76,1.0],[120,226,77,1.0],[120,226,78,1.0],[120,226,79,1.0],[120,227,64,1.0],[120,227,65,1.0],[120,227,66,1.0],[120,227,67,1.0],[120,227,68,1.0],[120,227,69,1.0],[120,227,70,1.0],[120,227,71,1.0],[120,227,72,1.0],[120,227,73,1.0],[120,227,74,1.0],[120,227,75,1.0],[120,227,76,1.0],[120,227,77,1.0],[120,227,78,1.0],[120,227,79,1.0],[120,228,64,1.0],[120,228,65,1.0],[120,228,66,1.0],[120,228,67,1.0],[120,228,68,1.0],[120,228,69,1.0],[120,228,70,1.0],[120,228,71,1.0],[120,228,72,1.0],[120,228,73,1.0],[120,228,74,1.0],[120,228,75,1.0],[120,228,76,1.0],[120,228,77,1.0],[120,228,78,1.0],[120,228,79,1.0],[120,229,64,1.0],[120,229,65,1.0],[120,229,66,1.0],[120,229,67,1.0],[120,229,68,1.0],[120,229,69,1.0],[120,229,70,1.0],[120,229,71,1.0],[120,229,72,1.0],[120,229,73,1.0],[120,229,74,1.0],[120,229,75,1.0],[120,229,76,1.0],[120,229,77,1.0],[120,229,78,1.0],[120,229,79,1.0],[120,230,64,1.0],[120,230,65,1.0],[120,230,66,1.0],[120,230,67,1.0],[120,230,68,1.0],[120,230,69,1.0],[120,230,70,1.0],[120,230,71,1.0],[120,230,72,1.0],[120,230,73,1.0],[120,230,74,1.0],[120,230,75,1.0],[120,230,76,1.0],[120,230,77,1.0],[120,230,78,1.0],[120,230,79,1.0],[120,231,64,1.0],[120,231,65,1.0],[120,231,66,1.0],[120,231,67,1.0],[120,231,68,1.0],[120,231,69,1.0],[120,231,70,1.0],[120,231,71,1.0],[120,231,72,1.0],[120,231,73,1.0],[120,231,74,1.0],[120,231,75,1.0],[120,231,76,1.0],[120,231,77,1.0],[120,231,78,1.0],[120,231,79,1.0],[120,232,64,1.0],[120,232,65,1.0],[120,232,66,1.0],[120,232,67,1.0],[120,232,68,1.0],[120,232,69,1.0],[120,232,70,1.0],[120,232,71,1.0],[120,232,72,1.0],[120,232,73,1.0],[120,232,74,1.0],[120,232,75,1.0],[120,232,76,1.0],[120,232,77,1.0],[120,232,78,1.0],[120,232,79,1.0],[120,233,64,1.0],[120,233,65,1.0],[120,233,66,1.0],[120,233,67,1.0],[120,233,68,1.0],[120,233,69,1.0],[120,233,70,1.0],[120,233,71,1.0],[120,233,72,1.0],[120,233,73,1.0],[120,233,74,1.0],[120,233,75,1.0],[120,233,76,1.0],[120,233,77,1.0],[120,233,78,1.0],[120,233,79,1.0],[120,234,64,1.0],[120,234,65,1.0],[120,234,66,1.0],[120,234,67,1.0],[120,234,68,1.0],[120,234,69,1.0],[120,234,70,1.0],[120,234,71,1.0],[120,234,72,1.0],[120,234,73,1.0],[120,234,74,1.0],[120,234,75,1.0],[120,234,76,1.0],[120,234,77,1.0],[120,234,78,1.0],[120,234,79,1.0],[120,235,64,1.0],[120,235,65,1.0],[120,235,66,1.0],[120,235,67,1.0],[120,235,68,1.0],[120,235,69,1.0],[120,235,70,1.0],[120,235,71,1.0],[120,235,72,1.0],[120,235,73,1.0],[120,235,74,1.0],[120,235,75,1.0],[120,235,76,1.0],[120,235,77,1.0],[120,235,78,1.0],[120,235,79,1.0],[120,236,64,1.0],[120,236,65,1.0],[120,236,66,1.0],[120,236,67,1.0],[120,236,68,1.0],[120,236,69,1.0],[120,236,70,1.0],[120,236,71,1.0],[120,236,72,1.0],[120,236,73,1.0],[120,236,74,1.0],[120,236,75,1.0],[120,236,76,1.0],[120,236,77,1.0],[120,236,78,1.0],[120,236,79,1.0],[120,237,64,1.0],[120,237,65,1.0],[120,237,66,1.0],[120,237,67,1.0],[120,237,68,1.0],[120,237,69,1.0],[120,237,70,1.0],[120,237,71,1.0],[120,237,72,1.0],[120,237,73,1.0],[120,237,74,1.0],[120,237,75,1.0],[120,237,76,1.0],[120,237,77,1.0],[120,237,78,1.0],[120,237,79,1.0],[120,238,64,1.0],[120,238,65,1.0],[120,238,66,1.0],[120,238,67,1.0],[120,238,68,1.0],[120,238,69,1.0],[120,238,70,1.0],[120,238,71,1.0],[120,238,72,1.0],[120,238,73,1.0],[120,238,74,1.0],[120,238,75,1.0],[120,238,76,1.0],[120,238,77,1.0],[120,238,78,1.0],[120,238,79,1.0],[120,239,64,1.0],[120,239,65,1.0],[120,239,66,1.0],[120,239,67,1.0],[120,239,68,1.0],[120,239,69,1.0],[120,239,70,1.0],[120,239,71,1.0],[120,239,72,1.0],[120,239,73,1.0],[120,239,74,1.0],[120,239,75,1.0],[120,239,76,1.0],[120,239,77,1.0],[120,239,78,1.0],[120,239,79,1.0],[120,240,64,1.0],[120,240,65,1.0],[120,240,66,1.0],[120,240,67,1.0],[120,240,68,1.0],[120,240,69,1.0],[120,240,70,1.0],[120,240,71,1.0],[120,240,72,1.0],[120,240,73,1.0],[120,240,74,1.0],[120,240,75,1.0],[120,240,76,1.0],[120,240,77,1.0],[120,240,78,1.0],[120,240,79,1.0],[120,241,64,1.0],[120,241,65,1.0],[120,241,66,1.0],[120,241,67,1.0],[120,241,68,1.0],[120,241,69,1.0],[120,241,70,1.0],[120,241,71,1.0],[120,241,72,1.0],[120,241,73,1.0],[120,241,74,1.0],[120,241,75,1.0],[120,241,76,1.0],[120,241,77,1.0],[120,241,78,1.0],[120,241,79,1.0],[120,242,64,1.0],[120,242,65,1.0],[120,242,66,1.0],[120,242,67,1.0],[120,242,68,1.0],[120,242,69,1.0],[120,242,70,1.0],[120,242,71,1.0],[120,242,72,1.0],[120,242,73,1.0],[120,242,74,1.0],[120,242,75,1.0],[120,242,76,1.0],[120,242,77,1.0],[120,242,78,1.0],[120,242,79,1.0],[120,243,64,1.0],[120,243,65,1.0],[120,243,66,1.0],[120,243,67,1.0],[120,243,68,1.0],[120,243,69,1.0],[120,243,70,1.0],[120,243,71,1.0],[120,243,72,1.0],[120,243,73,1.0],[120,243,74,1.0],[120,243,75,1.0],[120,243,76,1.0],[120,243,77,1.0],[120,243,78,1.0],[120,243,79,1.0],[120,244,64,1.0],[120,244,65,1.0],[120,244,66,1.0],[120,244,67,1.0],[120,244,68,1.0],[120,244,69,1.0],[120,244,70,1.0],[120,244,71,1.0],[120,244,72,1.0],[120,244,73,1.0],[120,244,74,1.0],[120,244,75,1.0],[120,244,76,1.0],[120,244,77,1.0],[120,244,78,1.0],[120,244,79,1.0],[120,245,64,1.0],[120,245,65,1.0],[120,245,66,1.0],[120,245,67,1.0],[120,245,68,1.0],[120,245,69,1.0],[120,245,70,1.0],[120,245,71,1.0],[120,245,72,1.0],[120,245,73,1.0],[120,245,74,1.0],[120,245,75,1.0],[120,245,76,1.0],[120,245,77,1.0],[120,245,78,1.0],[120,245,79,1.0],[120,246,64,1.0],[120,246,65,1.0],[120,246,66,1.0],[120,246,67,1.0],[120,246,68,1.0],[120,246,69,1.0],[120,246,70,1.0],[120,246,71,1.0],[120,246,72,1.0],[120,246,73,1.0],[120,246,74,1.0],[120,246,75,1.0],[120,246,76,1.0],[120,246,77,1.0],[120,246,78,1.0],[120,246,79,1.0],[120,247,64,1.0],[120,247,65,1.0],[120,247,66,1.0],[120,247,67,1.0],[120,247,68,1.0],[120,247,69,1.0],[120,247,70,1.0],[120,247,71,1.0],[120,247,72,1.0],[120,247,73,1.0],[120,247,74,1.0],[120,247,75,1.0],[120,247,76,1.0],[120,247,77,1.0],[120,247,78,1.0],[120,247,79,1.0],[120,248,64,1.0],[120,248,65,1.0],[120,248,66,1.0],[120,248,67,1.0],[120,248,68,1.0],[120,248,69,1.0],[120,248,70,1.0],[120,248,71,1.0],[120,248,72,1.0],[120,248,73,1.0],[120,248,74,1.0],[120,248,75,1.0],[120,248,76,1.0],[120,248,77,1.0],[120,248,78,1.0],[120,248,79,1.0],[120,249,64,1.0],[120,249,65,1.0],[120,249,66,1.0],[120,249,67,1.0],[120,249,68,1.0],[120,249,69,1.0],[120,249,70,1.0],[120,249,71,1.0],[120,249,72,1.0],[120,249,73,1.0],[120,249,74,1.0],[120,249,75,1.0],[120,249,76,1.0],[120,249,77,1.0],[120,249,78,1.0],[120,249,79,1.0],[120,250,64,1.0],[120,250,65,1.0],[120,250,66,1.0],[120,250,67,1.0],[120,250,68,1.0],[120,250,69,1.0],[120,250,70,1.0],[120,250,71,1.0],[120,250,72,1.0],[120,250,73,1.0],[120,250,74,1.0],[120,250,75,1.0],[120,250,76,1.0],[120,250,77,1.0],[120,250,78,1.0],[120,250,79,1.0],[120,251,64,1.0],[120,251,65,1.0],[120,251,66,1.0],[120,251,67,1.0],[120,251,68,1.0],[120,251,69,1.0],[120,251,70,1.0],[120,251,71,1.0],[120,251,72,1.0],[120,251,73,1.0],[120,251,74,1.0],[120,251,75,1.0],[120,251,76,1.0],[120,251,77,1.0],[120,251,78,1.0],[120,251,79,1.0],[120,252,64,1.0],[120,252,65,1.0],[120,252,66,1.0],[120,252,67,1.0],[120,252,68,1.0],[120,252,69,1.0],[120,252,70,1.0],[120,252,71,1.0],[120,252,72,1.0],[120,252,73,1.0],[120,252,74,1.0],[120,252,75,1.0],[120,252,76,1.0],[120,252,77,1.0],[120,252,78,1.0],[120,252,79,1.0],[120,253,64,1.0],[120,253,65,1.0],[120,253,66,1.0],[120,253,67,1.0],[120,253,68,1.0],[120,253,69,1.0],[120,253,70,1.0],[120,253,71,1.0],[120,253,72,1.0],[120,253,73,1.0],[120,253,74,1.0],[120,253,75,1.0],[120,253,76,1.0],[120,253,77,1.0],[120,253,78,1.0],[120,253,79,1.0],[120,254,64,1.0],[120,254,65,1.0],[120,254,66,1.0],[120,254,67,1.0],[120,254,68,1.0],[120,254,69,1.0],[120,254,70,1.0],[120,254,71,1.0],[120,254,72,1.0],[120,254,73,1.0],[120,254,74,1.0],[120,254,75,1.0],[120,254,76,1.0],[120,254,77,1.0],[120,254,78,1.0],[120,254,79,1.0],[120,255,64,1.0],[120,255,65,1.0],[120,255,66,1.0],[120,255,67,1.0],[120,255,68,1.0],[120,255,69,1.0],[120,255,70,1.0],[120,255,71,1.0],[120,255,72,1.0],[120,255,73,1.0],[120,255,74,1.0],[120,255,75,1.0],[120,255,76,1.0],[120,255,77,1.0],[120,255,78,1.0],[120,255,79,1.0],[120,256,64,1.0],[120,256,65,1.0],[120,256,66,1.0],[120,256,67,1.0],[120,256,68,1.0],[120,256,69,1.0],[120,256,70,1.0],[120,256,71,1.0],[120,256,72,1.0],[120,256,73,1.0],[120,256,74,1.0],[120,256,75,1.0],[120,256,76,1.0],[120,256,77,1.0],[120,256,78,1.0],[120,256,79,1.0],[120,257,64,1.0],[120,257,65,1.0],[120,257,66,1.0],[120,257,67,1.0],[120,257,68,1.0],[120,257,69,1.0],[120,257,70,1.0],[120,257,71,1.0],[120,257,72,1.0],[120,257,73,1.0],[120,257,74,1.0],[120,257,75,1.0],[120,257,76,1.0],[120,257,77,1.0],[120,257,78,1.0],[120,257,79,1.0],[120,258,64,1.0],[120,258,65,1.0],[120,258,66,1.0],[120,258,67,1.0],[120,258,68,1.0],[120,258,69,1.0],[120,258,70,1.0],[120,258,71,1.0],[120,258,72,1.0],[120,258,73,1.0],[120,258,74,1.0],[120,258,75,1.0],[120,258,76,1.0],[120,258,77,1.0],[120,258,78,1.0],[120,258,79,1.0],[120,259,64,1.0],[120,259,65,1.0],[120,259,66,1.0],[120,259,67,1.0],[120,259,68,1.0],[120,259,69,1.0],[120,259,70,1.0],[120,259,71,1.0],[120,259,72,1.0],[120,259,73,1.0],[120,259,74,1.0],[120,259,75,1.0],[120,259,76,1.0],[120,259,77,1.0],[120,259,78,1.0],[120,259,79,1.0],[120,260,64,1.0],[120,260,65,1.0],[120,260,66,1.0],[120,260,67,1.0],[120,260,68,1.0],[120,260,69,1.0],[120,260,70,1.0],[120,260,71,1.0],[120,260,72,1.0],[120,260,73,1.0],[120,260,74,1.0],[120,260,75,1.0],[120,260,76,1.0],[120,260,77,1.0],[120,260,78,1.0],[120,260,79,1.0],[120,261,64,1.0],[120,261,65,1.0],[120,261,66,1.0],[120,261,67,1.0],[120,261,68,1.0],[120,261,69,1.0],[120,261,70,1.0],[120,261,71,1.0],[120,261,72,1.0],[120,261,73,1.0],[120,261,74,1.0],[120,261,75,1.0],[120,261,76,1.0],[120,261,77,1.0],[120,261,78,1.0],[120,261,79,1.0],[120,262,64,1.0],[120,262,65,1.0],[120,262,66,1.0],[120,262,67,1.0],[120,262,68,1.0],[120,262,69,1.0],[120,262,70,1.0],[120,262,71,1.0],[120,262,72,1.0],[120,262,73,1.0],[120,262,74,1.0],[120,262,75,1.0],[120,262,76,1.0],[120,262,77,1.0],[120,262,78,1.0],[120,262,79,1.0],[120,263,64,1.0],[120,263,65,1.0],[120,263,66,1.0],[120,263,67,1.0],[120,263,68,1.0],[120,263,69,1.0],[120,263,70,1.0],[120,263,71,1.0],[120,263,72,1.0],[120,263,73,1.0],[120,263,74,1.0],[120,263,75,1.0],[120,263,76,1.0],[120,263,77,1.0],[120,263,78,1.0],[120,263,79,1.0],[120,264,64,1.0],[120,264,65,1.0],[120,264,66,1.0],[120,264,67,1.0],[120,264,68,1.0],[120,264,69,1.0],[120,264,70,1.0],[120,264,71,1.0],[120,264,72,1.0],[120,264,73,1.0],[120,264,74,1.0],[120,264,75,1.0],[120,264,76,1.0],[120,264,77,1.0],[120,264,78,1.0],[120,264,79,1.0],[120,265,64,1.0],[120,265,65,1.0],[120,265,66,1.0],[120,265,67,1.0],[120,265,68,1.0],[120,265,69,1.0],[120,265,70,1.0],[120,265,71,1.0],[120,265,72,1.0],[120,265,73,1.0],[120,265,74,1.0],[120,265,75,1.0],[120,265,76,1.0],[120,265,77,1.0],[120,265,78,1.0],[120,265,79,1.0],[120,266,64,1.0],[120,266,65,1.0],[120,266,66,1.0],[120,266,67,1.0],[120,266,68,1.0],[120,266,69,1.0],[120,266,70,1.0],[120,266,71,1.0],[120,266,72,1.0],[120,266,73,1.0],[120,266,74,1.0],[120,266,75,1.0],[120,266,76,1.0],[120,266,77,1.0],[120,266,78,1.0],[120,266,79,1.0],[120,267,64,1.0],[120,267,65,1.0],[120,267,66,1.0],[120,267,67,1.0],[120,267,68,1.0],[120,267,69,1.0],[120,267,70,1.0],[120,267,71,1.0],[120,267,72,1.0],[120,267,73,1.0],[120,267,74,1.0],[120,267,75,1.0],[120,267,76,1.0],[120,267,77,1.0],[120,267,78,1.0],[120,267,79,1.0],[120,268,64,1.0],[120,268,65,1.0],[120,268,66,1.0],[120,268,67,1.0],[120,268,68,1.0],[120,268,69,1.0],[120,268,70,1.0],[120,268,71,1.0],[120,268,72,1.0],[120,268,73,1.0],[120,268,74,1.0],[120,268,75,1.0],[120,268,76,1.0],[120,268,77,1.0],[120,268,78,1.0],[120,268,79,1.0],[120,269,64,1.0],[120,269,65,1.0],[120,269,66,1.0],[120,269,67,1.0],[120,269,68,1.0],[120,269,69,1.0],[120,269,70,1.0],[120,269,71,1.0],[120,269,72,1.0],[120,269,73,1.0],[120,269,74,1.0],[120,269,75,1.0],[120,269,76,1.0],[120,269,77,1.0],[120,269,78,1.0],[120,269,79,1.0],[120,270,64,1.0],[120,270,65,1.0],[120,270,66,1.0],[120,270,67,1.0],[120,270,68,1.0],[120,270,69,1.0],[120,270,70,1.0],[120,270,71,1.0],[120,270,72,1.0],[120,270,73,1.0],[120,270,74,1.0],[120,270,75,1.0],[120,270,76,1.0],[120,270,77,1.0],[120,270,78,1.0],[120,270,79,1.0],[120,271,64,1.0],[120,271,65,1.0],[120,271,66,1.0],[120,271,67,1.0],[120,271,68,1.0],[120,271,69,1.0],[120,271,70,1.0],[120,271,71,1.0],[120,271,72,1.0],[120,271,73,1.0],[120,271,74,1.0],[120,271,75,1.0],[120,271,76,1.0],[120,271,77,1.0],[120,271,78,1.0],[120,271,79,1.0],[120,272,64,1.0],[120,272,65,1.0],[120,272,66,1.0],[120,272,67,1.0],[120,272,68,1.0],[120,272,69,1.0],[120,272,70,1.0],[120,272,71,1.0],[120,272,72,1.0],[120,272,73,1.0],[120,272,74,1.0],[120,272,75,1.0],[120,272,76,1.0],[120,272,77,1.0],[120,272,78,1.0],[120,272,79,1.0],[120,273,64,1.0],[120,273,65,1.0],[120,273,66,1.0],[120,273,67,1.0],[120,273,68,1.0],[120,273,69,1.0],[120,273,70,1.0],[120,273,71,1.0],[120,273,72,1.0],[120,273,73,1.0],[120,273,74,1.0],[120,273,75,1.0],[120,273,76,1.0],[120,273,77,1.0],[120,273,78,1.0],[120,273,79,1.0],[120,274,64,1.0],[120,274,65,1.0],[120,274,66,1.0],[120,274,67,1.0],[120,274,68,1.0],[120,274,69,1.0],[120,274,70,1.0],[120,274,71,1.0],[120,274,72,1.0],[120,274,73,1.0],[120,274,74,1.0],[120,274,75,1.0],[120,274,76,1.0],[120,274,77,1.0],[120,274,78,1.0],[120,274,79,1.0],[120,275,64,1.0],[120,275,65,1.0],[120,275,66,1.0],[120,275,67,1.0],[120,275,68,1.0],[120,275,69,1.0],[120,275,70,1.0],[120,275,71,1.0],[120,275,72,1.0],[120,275,73,1.0],[120,275,74,1.0],[120,275,75,1.0],[120,275,76,1.0],[120,275,77,1.0],[120,275,78,1.0],[120,275,79,1.0],[120,276,64,1.0],[120,276,65,1.0],[120,276,66,1.0],[120,276,67,1.0],[120,276,68,1.0],[120,276,69,1.0],[120,276,70,1.0],[120,276,71,1.0],[120,276,72,1.0],[120,276,73,1.0],[120,276,74,1.0],[120,276,75,1.0],[120,276,76,1.0],[120,276,77,1.0],[120,276,78,1.0],[120,276,79,1.0],[120,277,64,1.0],[120,277,65,1.0],[120,277,66,1.0],[120,277,67,1.0],[120,277,68,1.0],[120,277,69,1.0],[120,277,70,1.0],[120,277,71,1.0],[120,277,72,1.0],[120,277,73,1.0],[120,277,74,1.0],[120,277,75,1.0],[120,277,76,1.0],[120,277,77,1.0],[120,277,78,1.0],[120,277,79,1.0],[120,278,64,1.0],[120,278,65,1.0],[120,278,66,1.0],[120,278,67,1.0],[120,278,68,1.0],[120,278,69,1.0],[120,278,70,1.0],[120,278,71,1.0],[120,278,72,1.0],[120,278,73,1.0],[120,278,74,1.0],[120,278,75,1.0],[120,278,76,1.0],[120,278,77,1.0],[120,278,78,1.0],[120,278,79,1.0],[120,279,64,1.0],[120,279,65,1.0],[120,279,66,1.0],[120,279,67,1.0],[120,279,68,1.0],[120,279,69,1.0],[120,279,70,1.0],[120,279,71,1.0],[120,279,72,1.0],[120,279,73,1.0],[120,279,74,1.0],[120,279,75,1.0],[120,279,76,1.0],[120,279,77,1.0],[120,279,78,1.0],[120,279,79,1.0],[120,280,64,1.0],[120,280,65,1.0],[120,280,66,1.0],[120,280,67,1.0],[120,280,68,1.0],[120,280,69,1.0],[120,280,70,1.0],[120,280,71,1.0],[120,280,72,1.0],[120,280,73,1.0],[120,280,74,1.0],[120,280,75,1.0],[120,280,76,1.0],[120,280,77,1.0],[120,280,78,1.0],[120,280,79,1.0],[120,281,64,1.0],[120,281,65,1.0],[120,281,66,1.0],[120,281,67,1.0],[120,281,68,1.0],[120,281,69,1.0],[120,281,70,1.0],[120,281,71,1.0],[120,281,72,1.0],[120,281,73,1.0],[120,281,74,1.0],[120,281,75,1.0],[120,281,76,1.0],[120,281,77,1.0],[120,281,78,1.0],[120,281,79,1.0],[120,282,64,1.0],[120,282,65,1.0],[120,282,66,1.0],[120,282,67,1.0],[120,282,68,1.0],[120,282,69,1.0],[120,282,70,1.0],[120,282,71,1.0],[120,282,72,1.0],[120,282,73,1.0],[120,282,74,1.0],[120,282,75,1.0],[120,282,76,1.0],[120,282,77,1.0],[120,282,78,1.0],[120,282,79,1.0],[120,283,64,1.0],[120,283,65,1.0],[120,283,66,1.0],[120,283,67,1.0],[120,283,68,1.0],[120,283,69,1.0],[120,283,70,1.0],[120,283,71,1.0],[120,283,72,1.0],[120,283,73,1.0],[120,283,74,1.0],[120,283,75,1.0],[120,283,76,1.0],[120,283,77,1.0],[120,283,78,1.0],[120,283,79,1.0],[120,284,64,1.0],[120,284,65,1.0],[120,284,66,1.0],[120,284,67,1.0],[120,284,68,1.0],[120,284,69,1.0],[120,284,70,1.0],[120,284,71,1.0],[120,284,72,1.0],[120,284,73,1.0],[120,284,74,1.0],[120,284,75,1.0],[120,284,76,1.0],[120,284,77,1.0],[120,284,78,1.0],[120,284,79,1.0],[120,285,64,1.0],[120,285,65,1.0],[120,285,66,1.0],[120,285,67,1.0],[120,285,68,1.0],[120,285,69,1.0],[120,285,70,1.0],[120,285,71,1.0],[120,285,72,1.0],[120,285,73,1.0],[120,285,74,1.0],[120,285,75,1.0],[120,285,76,1.0],[120,285,77,1.0],[120,285,78,1.0],[120,285,79,1.0],[120,286,64,1.0],[120,286,65,1.0],[120,286,66,1.0],[120,286,67,1.0],[120,286,68,1.0],[120,286,69,1.0],[120,286,70,1.0],[120,286,71,1.0],[120,286,72,1.0],[120,286,73,1.0],[120,286,74,1.0],[120,286,75,1.0],[120,286,76,1.0],[120,286,77,1.0],[120,286,78,1.0],[120,286,79,1.0],[120,287,64,1.0],[120,287,65,1.0],[120,287,66,1.0],[120,287,67,1.0],[120,287,68,1.0],[120,287,69,1.0],[120,287,70,1.0],[120,287,71,1.0],[120,287,72,1.0],[120,287,73,1.0],[120,287,74,1.0],[120,287,75,1.0],[120,287,76,1.0],[120,287,77,1.0],[120,287,78,1.0],[120,287,79,1.0],[120,288,64,1.0],[120,288,65,1.0],[120,288,66,1.0],[120,288,67,1.0],[120,288,68,1.0],[120,288,69,1.0],[120,288,70,1.0],[120,288,71,1.0],[120,288,72,1.0],[120,288,73,1.0],[120,288,74,1.0],[120,288,75,1.0],[120,288,76,1.0],[120,288,77,1.0],[120,288,78,1.0],[120,288,79,1.0],[120,289,64,1.0],[120,289,65,1.0],[120,289,66,1.0],[120,289,67,1.0],[120,289,68,1.0],[120,289,69,1.0],[120,289,70,1.0],[120,289,71,1.0],[120,289,72,1.0],[120,289,73,1.0],[120,289,74,1.0],[120,289,75,1.0],[120,289,76,1.0],[120,289,77,1.0],[120,289,78,1.0],[120,289,79,1.0],[120,290,64,1.0],[120,290,65,1.0],[120,290,66,1.0],[120,290,67,1.0],[120,290,68,1.0],[120,290,69,1.0],[120,290,70,1.0],[120,290,71,1.0],[120,290,72,1.0],[120,290,73,1.0],[120,290,74,1.0],[120,290,75,1.0],[120,290,76,1.0],[120,290,77,1.0],[120,290,78,1.0],[120,290,79,1.0],[120,291,64,1.0],[120,291,65,1.0],[120,291,66,1.0],[120,291,67,1.0],[120,291,68,1.0],[120,291,69,1.0],[120,291,70,1.0],[120,291,71,1.0],[120,291,72,1.0],[120,291,73,1.0],[120,291,74,1.0],[120,291,75,1.0],[120,291,76,1.0],[120,291,77,1.0],[120,291,78,1.0],[120,291,79,1.0],[120,292,64,1.0],[120,292,65,1.0],[120,292,66,1.0],[120,292,67,1.0],[120,292,68,1.0],[120,292,69,1.0],[120,292,70,1.0],[120,292,71,1.0],[120,292,72,1.0],[120,292,73,1.0],[120,292,74,1.0],[120,292,75,1.0],[120,292,76,1.0],[120,292,77,1.0],[120,292,78,1.0],[120,292,79,1.0],[120,293,64,1.0],[120,293,65,1.0],[120,293,66,1.0],[120,293,67,1.0],[120,293,68,1.0],[120,293,69,1.0],[120,293,70,1.0],[120,293,71,1.0],[120,293,72,1.0],[120,293,73,1.0],[120,293,74,1.0],[120,293,75,1.0],[120,293,76,1.0],[120,293,77,1.0],[120,293,78,1.0],[120,293,79,1.0],[120,294,64,1.0],[120,294,65,1.0],[120,294,66,1.0],[120,294,67,1.0],[120,294,68,1.0],[120,294,69,1.0],[120,294,70,1.0],[120,294,71,1.0],[120,294,72,1.0],[120,294,73,1.0],[120,294,74,1.0],[120,294,75,1.0],[120,294,76,1.0],[120,294,77,1.0],[120,294,78,1.0],[120,294,79,1.0],[120,295,64,1.0],[120,295,65,1.0],[120,295,66,1.0],[120,295,67,1.0],[120,295,68,1.0],[120,295,69,1.0],[120,295,70,1.0],[120,295,71,1.0],[120,295,72,1.0],[120,295,73,1.0],[120,295,74,1.0],[120,295,75,1.0],[120,295,76,1.0],[120,295,77,1.0],[120,295,78,1.0],[120,295,79,1.0],[120,296,64,1.0],[120,296,65,1.0],[120,296,66,1.0],[120,296,67,1.0],[120,296,68,1.0],[120,296,69,1.0],[120,296,70,1.0],[120,296,71,1.0],[120,296,72,1.0],[120,296,73,1.0],[120,296,74,1.0],[120,296,75,1.0],[120,296,76,1.0],[120,296,77,1.0],[120,296,78,1.0],[120,296,79,1.0],[120,297,64,1.0],[120,297,65,1.0],[120,297,66,1.0],[120,297,67,1.0],[120,297,68,1.0],[120,297,69,1.0],[120,297,70,1.0],[120,297,71,1.0],[120,297,72,1.0],[120,297,73,1.0],[120,297,74,1.0],[120,297,75,1.0],[120,297,76,1.0],[120,297,77,1.0],[120,297,78,1.0],[120,297,79,1.0],[120,298,64,1.0],[120,298,65,1.0],[120,298,66,1.0],[120,298,67,1.0],[120,298,68,1.0],[120,298,69,1.0],[120,298,70,1.0],[120,298,71,1.0],[120,298,72,1.0],[120,298,73,1.0],[120,298,74,1.0],[120,298,75,1.0],[120,298,76,1.0],[120,298,77,1.0],[120,298,78,1.0],[120,298,79,1.0],[120,299,64,1.0],[120,299,65,1.0],[120,299,66,1.0],[120,299,67,1.0],[120,299,68,1.0],[120,299,69,1.0],[120,299,70,1.0],[120,299,71,1.0],[120,299,72,1.0],[120,299,73,1.0],[120,299,74,1.0],[120,299,75,1.0],[120,299,76,1.0],[120,299,77,1.0],[120,299,78,1.0],[120,299,79,1.0],[120,300,64,1.0],[120,300,65,1.0],[120,300,66,1.0],[120,300,67,1.0],[120,300,68,1.0],[120,300,69,1.0],[120,300,70,1.0],[120,300,71,1.0],[120,300,72,1.0],[120,300,73,1.0],[120,300,74,1.0],[120,300,75,1.0],[120,300,76,1.0],[120,300,77,1.0],[120,300,78,1.0],[120,300,79,1.0],[120,301,64,1.0],[120,301,65,1.0],[120,301,66,1.0],[120,301,67,1.0],[120,301,68,1.0],[120,301,69,1.0],[120,301,70,1.0],[120,301,71,1.0],[120,301,72,1.0],[120,301,73,1.0],[120,301,74,1.0],[120,301,75,1.0],[120,301,76,1.0],[120,301,77,1.0],[120,301,78,1.0],[120,301,79,1.0],[120,302,64,1.0],[120,302,65,1.0],[120,302,66,1.0],[120,302,67,1.0],[120,302,68,1.0],[120,302,69,1.0],[120,302,70,1.0],[120,302,71,1.0],[120,302,72,1.0],[120,302,73,1.0],[120,302,74,1.0],[120,302,75,1.0],[120,302,76,1.0],[120,302,77,1.0],[120,302,78,1.0],[120,302,79,1.0],[120,303,64,1.0],[120,303,65,1.0],[120,303,66,1.0],[120,303,67,1.0],[120,303,68,1.0],[120,303,69,1.0],[120,303,70,1.0],[120,303,71,1.0],[120,303,72,1.0],[120,303,73,1.0],[120,303,74,1.0],[120,303,75,1.0],[120,303,76,1.0],[120,303,77,1.0],[120,303,78,1.0],[120,303,79,1.0],[120,304,64,1.0],[120,304,65,1.0],[120,304,66,1.0],[120,304,67,1.0],[120,304,68,1.0],[120,304,69,1.0],[120,304,70,1.0],[120,304,71,1.0],[120,304,72,1.0],[120,304,73,1.0],[120,304,74,1.0],[120,304,75,1.0],[120,304,76,1.0],[120,304,77,1.0],[120,304,78,1.0],[120,304,79,1.0],[120,305,64,1.0],[120,305,65,1.0],[120,305,66,1.0],[120,305,67,1.0],[120,305,68,1.0],[120,305,69,1.0],[120,305,70,1.0],[120,305,71,1.0],[120,305,72,1.0],[120,305,73,1.0],[120,305,74,1.0],[120,305,75,1.0],[120,305,76,1.0],[120,305,77,1.0],[120,305,78,1.0],[120,305,79,1.0],[120,306,64,1.0],[120,306,65,1.0],[120,306,66,1.0],[120,306,67,1.0],[120,306,68,1.0],[120,306,69,1.0],[120,306,70,1.0],[120,306,71,1.0],[120,306,72,1.0],[120,306,73,1.0],[120,306,74,1.0],[120,306,75,1.0],[120,306,76,1.0],[120,306,77,1.0],[120,306,78,1.0],[120,306,79,1.0],[120,307,64,1.0],[120,307,65,1.0],[120,307,66,1.0],[120,307,67,1.0],[120,307,68,1.0],[120,307,69,1.0],[120,307,70,1.0],[120,307,71,1.0],[120,307,72,1.0],[120,307,73,1.0],[120,307,74,1.0],[120,307,75,1.0],[120,307,76,1.0],[120,307,77,1.0],[120,307,78,1.0],[120,307,79,1.0],[120,308,64,1.0],[120,308,65,1.0],[120,308,66,1.0],[120,308,67,1.0],[120,308,68,1.0],[120,308,69,1.0],[120,308,70,1.0],[120,308,71,1.0],[120,308,72,1.0],[120,308,73,1.0],[120,308,74,1.0],[120,308,75,1.0],[120,308,76,1.0],[120,308,77,1.0],[120,308,78,1.0],[120,308,79,1.0],[120,309,64,1.0],[120,309,65,1.0],[120,309,66,1.0],[120,309,67,1.0],[120,309,68,1.0],[120,309,69,1.0],[120,309,70,1.0],[120,309,71,1.0],[120,309,72,1.0],[120,309,73,1.0],[120,309,74,1.0],[120,309,75,1.0],[120,309,76,1.0],[120,309,77,1.0],[120,309,78,1.0],[120,309,79,1.0],[120,310,64,1.0],[120,310,65,1.0],[120,310,66,1.0],[120,310,67,1.0],[120,310,68,1.0],[120,310,69,1.0],[120,310,70,1.0],[120,310,71,1.0],[120,310,72,1.0],[120,310,73,1.0],[120,310,74,1.0],[120,310,75,1.0],[120,310,76,1.0],[120,310,77,1.0],[120,310,78,1.0],[120,310,79,1.0],[120,311,64,1.0],[120,311,65,1.0],[120,311,66,1.0],[120,311,67,1.0],[120,311,68,1.0],[120,311,69,1.0],[120,311,70,1.0],[120,311,71,1.0],[120,311,72,1.0],[120,311,73,1.0],[120,311,74,1.0],[120,311,75,1.0],[120,311,76,1.0],[120,311,77,1.0],[120,311,78,1.0],[120,311,79,1.0],[120,312,64,1.0],[120,312,65,1.0],[120,312,66,1.0],[120,312,67,1.0],[120,312,68,1.0],[120,312,69,1.0],[120,312,70,1.0],[120,312,71,1.0],[120,312,72,1.0],[120,312,73,1.0],[120,312,74,1.0],[120,312,75,1.0],[120,312,76,1.0],[120,312,77,1.0],[120,312,78,1.0],[120,312,79,1.0],[120,313,64,1.0],[120,313,65,1.0],[120,313,66,1.0],[120,313,67,1.0],[120,313,68,1.0],[120,313,69,1.0],[120,313,70,1.0],[120,313,71,1.0],[120,313,72,1.0],[120,313,73,1.0],[120,313,74,1.0],[120,313,75,1.0],[120,313,76,1.0],[120,313,77,1.0],[120,313,78,1.0],[120,313,79,1.0],[120,314,64,1.0],[120,314,65,1.0],[120,314,66,1.0],[120,314,67,1.0],[120,314,68,1.0],[120,314,69,1.0],[120,314,70,1.0],[120,314,71,1.0],[120,314,72,1.0],[120,314,73,1.0],[120,314,74,1.0],[120,314,75,1.0],[120,314,76,1.0],[120,314,77,1.0],[120,314,78,1.0],[120,314,79,1.0],[120,315,64,1.0],[120,315,65,1.0],[120,315,66,1.0],[120,315,67,1.0],[120,315,68,1.0],[120,315,69,1.0],[120,315,70,1.0],[120,315,71,1.0],[120,315,72,1.0],[120,315,73,1.0],[120,315,74,1.0],[120,315,75,1.0],[120,315,76,1.0],[120,315,77,1.0],[120,315,78,1.0],[120,315,79,1.0],[120,316,64,1.0],[120,316,65,1.0],[120,316,66,1.0],[120,316,67,1.0],[120,316,68,1.0],[120,316,69,1.0],[120,316,70,1.0],[120,316,71,1.0],[120,316,72,1.0],[120,316,73,1.0],[120,316,74,1.0],[120,316,75,1.0],[120,316,76,1.0],[120,316,77,1.0],[120,316,78,1.0],[120,316,79,1.0],[120,317,64,1.0],[120,317,65,1.0],[120,317,66,1.0],[120,317,67,1.0],[120,317,68,1.0],[120,317,69,1.0],[120,317,70,1.0],[120,317,71,1.0],[120,317,72,1.0],[120,317,73,1.0],[120,317,74,1.0],[120,317,75,1.0],[120,317,76,1.0],[120,317,77,1.0],[120,317,78,1.0],[120,317,79,1.0],[120,318,64,1.0],[120,318,65,1.0],[120,318,66,1.0],[120,318,67,1.0],[120,318,68,1.0],[120,318,69,1.0],[120,318,70,1.0],[120,318,71,1.0],[120,318,72,1.0],[120,318,73,1.0],[120,318,74,1.0],[120,318,75,1.0],[120,318,76,1.0],[120,318,77,1.0],[120,318,78,1.0],[120,318,79,1.0],[120,319,64,1.0],[120,319,65,1.0],[120,319,66,1.0],[120,319,67,1.0],[120,319,68,1.0],[120,319,69,1.0],[120,319,70,1.0],[120,319,71,1.0],[120,319,72,1.0],[120,319,73,1.0],[120,319,74,1.0],[120,319,75,1.0],[120,319,76,1.0],[120,319,77,1.0],[120,319,78,1.0],[120,319,79,1.0],[121,-64,64,1.0],[121,-64,65,1.0],[121,-64,66,1.0],[121,-64,67,1.0],[121,-64,68,1.0],[121,-64,69,1.0],[121,-64,70,1.0],[121,-64,71,1.0],[121,-64,72,1.0],[121,-64,73,1.0],[121,-64,74,1.0],[121,-64,75,1.0],[121,-64,76,1.0],[121,-64,77,1.0],[121,-64,78,1.0],[121,-64,79,1.0],[121,-63,64,1.0],[121,-63,65,1.0],[121,-63,66,1.0],[121,-63,67,1.0],[121,-63,68,1.0],[121,-63,69,1.0],[121,-63,70,1.0],[121,-63,71,1.0],[121,-63,72,1.0],[121,-63,73,1.0],[121,-63,74,1.0],[121,-63,75,1.0],[121,-63,76,1.0],[121,-63,77,1.0],[121,-63,78,1.0],[121,-63,79,1.0],[121,-62,64,1.0],[121,-62,65,1.0],[121,-62,66,1.0],[121,-62,67,1.0],[121,-62,68,1.0],[121,-62,69,1.0],[121,-62,70,1.0],[121,-62,71,1.0],[121,-62,72,1.0],[121,-62,73,1.0],[121,-62,74,1.0],[121,-62,75,1.0],[121,-62,76,1.0],[121,-62,77,1.0],[121,-62,78,1.0],[121,-62,79,1.0],[121,-61,64,1.0],[121,-61,65,1.0],[121,-61,66,1.0],[121,-61,67,1.0],[121,-61,68,1.0],[121,-61,69,1.0],[121,-61,70,1.0],[121,-61,71,1.0],[121,-61,72,1.0],[121,-61,73,1.0],[121,-61,74,1.0],[121,-61,75,1.0],[121,-61,76,1.0],[121,-61,77,1.0],[121,-61,78,1.0],[121,-61,79,1.0],[121,-60,64,1.0],[121,-60,65,1.0],[121,-60,66,1.0],[121,-60,67,1.0],[121,-60,68,1.0],[121,-60,69,1.0],[121,-60,70,1.0],[121,-60,71,1.0],[121,-60,72,1.0],[121,-60,73,1.0],[121,-60,74,1.0],[121,-60,75,1.0],[121,-60,76,1.0],[121,-60,77,1.0],[121,-60,78,1.0],[121,-60,79,1.0],[121,-59,64,1.0],[121,-59,65,1.0],[121,-59,66,1.0],[121,-59,67,1.0],[121,-59,68,1.0],[121,-59,69,1.0],[121,-59,70,1.0],[121,-59,71,1.0],[121,-59,72,1.0],[121,-59,73,1.0],[121,-59,74,1.0],[121,-59,75,1.0],[121,-59,76,1.0],[121,-59,77,1.0],[121,-59,78,1.0],[121,-59,79,1.0],[121,-58,64,1.0],[121,-58,65,1.0],[121,-58,66,1.0],[121,-58,67,1.0],[121,-58,68,1.0],[121,-58,69,1.0],[121,-58,70,1.0],[121,-58,71,1.0],[121,-58,72,1.0],[121,-58,73,1.0],[121,-58,74,1.0],[121,-58,75,1.0],[121,-58,76,1.0],[121,-58,77,1.0],[121,-58,78,1.0],[121,-58,79,1.0],[121,-57,64,1.0],[121,-57,65,1.0],[121,-57,66,1.0],[121,-57,67,1.0],[121,-57,68,1.0],[121,-57,69,1.0],[121,-57,70,1.0],[121,-57,71,1.0],[121,-57,72,1.0],[121,-57,73,1.0],[121,-57,74,1.0],[121,-57,75,1.0],[121,-57,76,1.0],[121,-57,77,1.0],[121,-57,78,1.0],[121,-57,79,1.0],[121,-56,64,1.0],[121,-56,65,1.0],[121,-56,66,1.0],[121,-56,67,1.0],[121,-56,68,1.0],[121,-56,69,1.0],[121,-56,70,1.0],[121,-56,71,1.0],[121,-56,72,1.0],[121,-56,73,1.0],[121,-56,74,1.0],[121,-56,75,1.0],[121,-56,76,1.0],[121,-56,77,1.0],[121,-56,78,1.0],[121,-56,79,1.0],[121,-55,64,1.0],[121,-55,65,1.0],[121,-55,66,1.0],[121,-55,67,1.0],[121,-55,68,1.0],[121,-55,69,1.0],[121,-55,70,1.0],[121,-55,71,1.0],[121,-55,72,1.0],[121,-55,73,1.0],[121,-55,74,1.0],[121,-55,75,1.0],[121,-55,76,1.0],[121,-55,77,1.0],[121,-55,78,1.0],[121,-55,79,1.0],[121,-54,64,1.0],[121,-54,65,1.0],[121,-54,66,1.0],[121,-54,67,1.0],[121,-54,68,1.0],[121,-54,69,1.0],[121,-54,70,1.0],[121,-54,71,1.0],[121,-54,72,1.0],[121,-54,73,1.0],[121,-54,74,1.0],[121,-54,75,1.0],[121,-54,76,1.0],[121,-54,77,1.0],[121,-54,78,1.0],[121,-54,79,1.0],[121,-53,64,1.0],[121,-53,65,1.0],[121,-53,66,1.0],[121,-53,67,1.0],[121,-53,68,1.0],[121,-53,69,1.0],[121,-53,70,1.0],[121,-53,71,1.0],[121,-53,72,1.0],[121,-53,73,1.0],[121,-53,74,1.0],[121,-53,75,1.0],[121,-53,76,1.0],[121,-53,77,1.0],[121,-53,78,1.0],[121,-53,79,1.0],[121,-52,64,1.0],[121,-52,65,1.0],[121,-52,66,1.0],[121,-52,67,1.0],[121,-52,68,1.0],[121,-52,69,1.0],[121,-52,70,1.0],[121,-52,71,1.0],[121,-52,72,1.0],[121,-52,73,1.0],[121,-52,74,1.0],[121,-52,75,1.0],[121,-52,76,1.0],[121,-52,77,1.0],[121,-52,78,1.0],[121,-52,79,1.0],[121,-51,64,1.0],[121,-51,65,1.0],[121,-51,66,1.0],[121,-51,67,1.0],[121,-51,68,1.0],[121,-51,69,1.0],[121,-51,70,1.0],[121,-51,71,1.0],[121,-51,72,1.0],[121,-51,73,1.0],[121,-51,74,1.0],[121,-51,75,1.0],[121,-51,76,1.0],[121,-51,77,1.0],[121,-51,78,1.0],[121,-51,79,1.0],[121,-50,64,1.0],[121,-50,65,1.0],[121,-50,66,1.0],[121,-50,67,1.0],[121,-50,68,1.0],[121,-50,69,1.0],[121,-50,70,1.0],[121,-50,71,1.0],[121,-50,72,1.0],[121,-50,73,1.0],[121,-50,74,1.0],[121,-50,75,1.0],[121,-50,76,1.0],[121,-50,77,1.0],[121,-50,78,1.0],[121,-50,79,1.0],[121,-49,64,1.0],[121,-49,65,1.0],[121,-49,66,1.0],[121,-49,67,1.0],[121,-49,68,1.0],[121,-49,69,1.0],[121,-49,70,1.0],[121,-49,71,1.0],[121,-49,72,1.0],[121,-49,73,1.0],[121,-49,74,1.0],[121,-49,75,1.0],[121,-49,76,1.0],[121,-49,77,1.0],[121,-49,78,1.0],[121,-49,79,1.0],[121,-48,64,1.0],[121,-48,65,1.0],[121,-48,66,1.0],[121,-48,67,1.0],[121,-48,68,1.0],[121,-48,69,1.0],[121,-48,70,1.0],[121,-48,71,1.0],[121,-48,72,1.0],[121,-48,73,1.0],[121,-48,74,1.0],[121,-48,75,1.0],[121,-48,76,1.0],[121,-48,77,1.0],[121,-48,78,1.0],[121,-48,79,1.0],[121,-47,64,1.0],[121,-47,65,1.0],[121,-47,66,1.0],[121,-47,67,1.0],[121,-47,68,1.0],[121,-47,69,1.0],[121,-47,70,1.0],[121,-47,71,1.0],[121,-47,72,1.0],[121,-47,73,1.0],[121,-47,74,1.0],[121,-47,75,1.0],[121,-47,76,1.0],[121,-47,77,1.0],[121,-47,78,1.0],[121,-47,79,1.0],[121,-46,64,1.0],[121,-46,65,1.0],[121,-46,66,1.0],[121,-46,67,1.0],[121,-46,68,1.0],[121,-46,69,1.0],[121,-46,70,1.0],[121,-46,71,1.0],[121,-46,72,1.0],[121,-46,73,1.0],[121,-46,74,1.0],[121,-46,75,1.0],[121,-46,76,1.0],[121,-46,77,1.0],[121,-46,78,1.0],[121,-46,79,1.0],[121,-45,64,1.0],[121,-45,65,1.0],[121,-45,66,1.0],[121,-45,67,1.0],[121,-45,68,1.0],[121,-45,69,1.0],[121,-45,70,1.0],[121,-45,71,1.0],[121,-45,72,1.0],[121,-45,73,1.0],[121,-45,74,1.0],[121,-45,75,1.0],[121,-45,76,1.0],[121,-45,77,1.0],[121,-45,78,1.0],[121,-45,79,1.0],[121,-44,64,1.0],[121,-44,65,1.0],[121,-44,66,1.0],[121,-44,67,1.0],[121,-44,68,1.0],[121,-44,69,1.0],[121,-44,70,1.0],[121,-44,71,1.0],[121,-44,72,1.0],[121,-44,73,1.0],[121,-44,74,1.0],[121,-44,75,1.0],[121,-44,76,1.0],[121,-44,77,1.0],[121,-44,78,1.0],[121,-44,79,1.0],[121,-43,64,1.0],[121,-43,65,1.0],[121,-43,66,1.0],[121,-43,67,1.0],[121,-43,68,1.0],[121,-43,69,1.0],[121,-43,70,1.0],[121,-43,71,1.0],[121,-43,72,1.0],[121,-43,73,1.0],[121,-43,74,1.0],[121,-43,75,1.0],[121,-43,76,1.0],[121,-43,77,1.0],[121,-43,78,1.0],[121,-43,79,1.0],[121,-42,64,1.0],[121,-42,65,1.0],[121,-42,66,1.0],[121,-42,67,1.0],[121,-42,68,1.0],[121,-42,69,1.0],[121,-42,70,1.0],[121,-42,71,1.0],[121,-42,72,1.0],[121,-42,73,1.0],[121,-42,74,1.0],[121,-42,75,1.0],[121,-42,76,1.0],[121,-42,77,1.0],[121,-42,78,1.0],[121,-42,79,1.0],[121,-41,64,1.0],[121,-41,65,1.0],[121,-41,66,1.0],[121,-41,67,1.0],[121,-41,68,1.0],[121,-41,69,1.0],[121,-41,70,1.0],[121,-41,71,1.0],[121,-41,72,1.0],[121,-41,73,1.0],[121,-41,74,1.0],[121,-41,75,1.0],[121,-41,76,1.0],[121,-41,77,1.0],[121,-41,78,1.0],[121,-41,79,1.0],[121,-40,64,1.0],[121,-40,65,1.0],[121,-40,66,1.0],[121,-40,67,1.0],[121,-40,68,1.0],[121,-40,69,1.0],[121,-40,70,1.0],[121,-40,71,1.0],[121,-40,72,1.0],[121,-40,73,1.0],[121,-40,74,1.0],[121,-40,75,1.0],[121,-40,76,1.0],[121,-40,77,1.0],[121,-40,78,1.0],[121,-40,79,1.0],[121,-39,64,1.0],[121,-39,65,1.0],[121,-39,66,1.0],[121,-39,67,1.0],[121,-39,68,1.0],[121,-39,69,1.0],[121,-39,70,1.0],[121,-39,71,1.0],[121,-39,72,1.0],[121,-39,73,1.0],[121,-39,74,1.0],[121,-39,75,1.0],[121,-39,76,1.0],[121,-39,77,1.0],[121,-39,78,1.0],[121,-39,79,1.0],[121,-38,64,1.0],[121,-38,65,1.0],[121,-38,66,1.0],[121,-38,67,1.0],[121,-38,68,1.0],[121,-38,69,1.0],[121,-38,70,1.0],[121,-38,71,1.0],[121,-38,72,1.0],[121,-38,73,1.0],[121,-38,74,1.0],[121,-38,75,1.0],[121,-38,76,1.0],[121,-38,77,1.0],[121,-38,78,1.0],[121,-38,79,1.0],[121,-37,64,1.0],[121,-37,65,1.0],[121,-37,66,1.0],[121,-37,67,1.0],[121,-37,68,1.0],[121,-37,69,1.0],[121,-37,70,1.0],[121,-37,71,1.0],[121,-37,72,1.0],[121,-37,73,1.0],[121,-37,74,1.0],[121,-37,75,1.0],[121,-37,76,1.0],[121,-37,77,1.0],[121,-37,78,1.0],[121,-37,79,1.0],[121,-36,64,1.0],[121,-36,65,1.0],[121,-36,66,1.0],[121,-36,67,1.0],[121,-36,68,1.0],[121,-36,69,1.0],[121,-36,70,1.0],[121,-36,71,1.0],[121,-36,72,1.0],[121,-36,73,1.0],[121,-36,74,1.0],[121,-36,75,1.0],[121,-36,76,1.0],[121,-36,77,1.0],[121,-36,78,1.0],[121,-36,79,1.0],[121,-35,64,1.0],[121,-35,65,1.0],[121,-35,66,1.0],[121,-35,67,1.0],[121,-35,68,1.0],[121,-35,69,1.0],[121,-35,70,1.0],[121,-35,71,1.0],[121,-35,72,1.0],[121,-35,73,1.0],[121,-35,74,1.0],[121,-35,75,1.0],[121,-35,76,1.0],[121,-35,77,1.0],[121,-35,78,1.0],[121,-35,79,1.0],[121,-34,64,1.0],[121,-34,65,1.0],[121,-34,66,1.0],[121,-34,67,1.0],[121,-34,68,1.0],[121,-34,69,1.0],[121,-34,70,1.0],[121,-34,71,1.0],[121,-34,72,1.0],[121,-34,73,1.0],[121,-34,74,1.0],[121,-34,75,1.0],[121,-34,76,1.0],[121,-34,77,1.0],[121,-34,78,1.0],[121,-34,79,1.0],[121,-33,64,1.0],[121,-33,65,1.0],[121,-33,66,1.0],[121,-33,67,1.0],[121,-33,68,1.0],[121,-33,69,1.0],[121,-33,70,1.0],[121,-33,71,1.0],[121,-33,72,1.0],[121,-33,73,1.0],[121,-33,74,1.0],[121,-33,75,1.0],[121,-33,76,1.0],[121,-33,77,1.0],[121,-33,78,1.0],[121,-33,79,1.0],[121,-32,64,1.0],[121,-32,65,1.0],[121,-32,66,1.0],[121,-32,67,1.0],[121,-32,68,1.0],[121,-32,69,1.0],[121,-32,70,1.0],[121,-32,71,1.0],[121,-32,72,1.0],[121,-32,73,1.0],[121,-32,74,1.0],[121,-32,75,1.0],[121,-32,76,1.0],[121,-32,77,1.0],[121,-32,78,1.0],[121,-32,79,1.0],[121,-31,64,1.0],[121,-31,65,1.0],[121,-31,66,1.0],[121,-31,67,1.0],[121,-31,68,1.0],[121,-31,69,1.0],[121,-31,70,1.0],[121,-31,71,1.0],[121,-31,72,1.0],[121,-31,73,1.0],[121,-31,74,1.0],[121,-31,75,1.0],[121,-31,76,1.0],[121,-31,77,1.0],[121,-31,78,1.0],[121,-31,79,1.0],[121,-30,64,1.0],[121,-30,65,1.0],[121,-30,66,1.0],[121,-30,67,1.0],[121,-30,68,1.0],[121,-30,69,1.0],[121,-30,70,1.0],[121,-30,71,1.0],[121,-30,72,1.0],[121,-30,73,1.0],[121,-30,74,1.0],[121,-30,75,1.0],[121,-30,76,1.0],[121,-30,77,1.0],[121,-30,78,1.0],[121,-30,79,1.0],[121,-29,64,1.0],[121,-29,65,1.0],[121,-29,66,1.0],[121,-29,67,1.0],[121,-29,68,1.0],[121,-29,69,1.0],[121,-29,70,1.0],[121,-29,71,1.0],[121,-29,72,1.0],[121,-29,73,1.0],[121,-29,74,1.0],[121,-29,75,1.0],[121,-29,76,1.0],[121,-29,77,1.0],[121,-29,78,1.0],[121,-29,79,1.0],[121,-28,64,1.0],[121,-28,65,1.0],[121,-28,66,1.0],[121,-28,67,1.0],[121,-28,68,1.0],[121,-28,69,1.0],[121,-28,70,1.0],[121,-28,71,1.0],[121,-28,72,1.0],[121,-28,73,1.0],[121,-28,74,1.0],[121,-28,75,1.0],[121,-28,76,1.0],[121,-28,77,1.0],[121,-28,78,1.0],[121,-28,79,1.0],[121,-27,64,1.0],[121,-27,65,1.0],[121,-27,66,1.0],[121,-27,67,1.0],[121,-27,68,1.0],[121,-27,69,1.0],[121,-27,70,1.0],[121,-27,71,1.0],[121,-27,72,1.0],[121,-27,73,1.0],[121,-27,74,1.0],[121,-27,75,1.0],[121,-27,76,1.0],[121,-27,77,1.0],[121,-27,78,1.0],[121,-27,79,1.0],[121,-26,64,1.0],[121,-26,65,1.0],[121,-26,66,1.0],[121,-26,67,1.0],[121,-26,68,1.0],[121,-26,69,1.0],[121,-26,70,1.0],[121,-26,71,1.0],[121,-26,72,1.0],[121,-26,73,1.0],[121,-26,74,1.0],[121,-26,75,1.0],[121,-26,76,1.0],[121,-26,77,1.0],[121,-26,78,1.0],[121,-26,79,1.0],[121,-25,64,1.0],[121,-25,65,1.0],[121,-25,66,1.0],[121,-25,67,1.0],[121,-25,68,1.0],[121,-25,69,1.0],[121,-25,70,1.0],[121,-25,71,1.0],[121,-25,72,1.0],[121,-25,73,1.0],[121,-25,74,1.0],[121,-25,75,1.0],[121,-25,76,1.0],[121,-25,77,1.0],[121,-25,78,1.0],[121,-25,79,1.0],[121,-24,64,1.0],[121,-24,65,1.0],[121,-24,66,1.0],[121,-24,67,1.0],[121,-24,68,1.0],[121,-24,69,1.0],[121,-24,70,1.0],[121,-24,71,1.0],[121,-24,72,1.0],[121,-24,73,1.0],[121,-24,74,1.0],[121,-24,75,1.0],[121,-24,76,1.0],[121,-24,77,1.0],[121,-24,78,1.0],[121,-24,79,1.0],[121,-23,64,1.0],[121,-23,65,1.0],[121,-23,66,1.0],[121,-23,67,1.0],[121,-23,68,1.0],[121,-23,69,1.0],[121,-23,70,1.0],[121,-23,71,1.0],[121,-23,72,1.0],[121,-23,73,1.0],[121,-23,74,1.0],[121,-23,75,1.0],[121,-23,76,1.0],[121,-23,77,1.0],[121,-23,78,1.0],[121,-23,79,1.0],[121,-22,64,1.0],[121,-22,65,1.0],[121,-22,66,1.0],[121,-22,67,1.0],[121,-22,68,1.0],[121,-22,69,1.0],[121,-22,70,1.0],[121,-22,71,1.0],[121,-22,72,1.0],[121,-22,73,1.0],[121,-22,74,1.0],[121,-22,75,1.0],[121,-22,76,1.0],[121,-22,77,1.0],[121,-22,78,1.0],[121,-22,79,1.0],[121,-21,64,1.0],[121,-21,65,1.0],[121,-21,66,1.0],[121,-21,67,1.0],[121,-21,68,1.0],[121,-21,69,1.0],[121,-21,70,1.0],[121,-21,71,1.0],[121,-21,72,1.0],[121,-21,73,1.0],[121,-21,74,1.0],[121,-21,75,1.0],[121,-21,76,1.0],[121,-21,77,1.0],[121,-21,78,1.0],[121,-21,79,1.0],[121,-20,64,1.0],[121,-20,65,1.0],[121,-20,66,1.0],[121,-20,67,1.0],[121,-20,68,1.0],[121,-20,69,1.0],[121,-20,70,1.0],[121,-20,71,1.0],[121,-20,72,1.0],[121,-20,73,1.0],[121,-20,74,1.0],[121,-20,75,1.0],[121,-20,76,1.0],[121,-20,77,1.0],[121,-20,78,1.0],[121,-20,79,1.0],[121,-19,64,1.0],[121,-19,65,1.0],[121,-19,66,1.0],[121,-19,67,1.0],[121,-19,68,1.0],[121,-19,69,1.0],[121,-19,70,1.0],[121,-19,71,1.0],[121,-19,72,1.0],[121,-19,73,1.0],[121,-19,74,1.0],[121,-19,75,1.0],[121,-19,76,1.0],[121,-19,77,1.0],[121,-19,78,1.0],[121,-19,79,1.0],[121,-18,64,1.0],[121,-18,65,1.0],[121,-18,66,1.0],[121,-18,67,1.0],[121,-18,68,1.0],[121,-18,69,1.0],[121,-18,70,1.0],[121,-18,71,1.0],[121,-18,72,1.0],[121,-18,73,1.0],[121,-18,74,1.0],[121,-18,75,1.0],[121,-18,76,1.0],[121,-18,77,1.0],[121,-18,78,1.0],[121,-18,79,1.0],[121,-17,64,1.0],[121,-17,65,1.0],[121,-17,66,1.0],[121,-17,67,1.0],[121,-17,68,1.0],[121,-17,69,1.0],[121,-17,70,1.0],[121,-17,71,1.0],[121,-17,72,1.0],[121,-17,73,1.0],[121,-17,74,1.0],[121,-17,75,1.0],[121,-17,76,1.0],[121,-17,77,1.0],[121,-17,78,1.0],[121,-17,79,1.0],[121,-16,64,1.0],[121,-16,65,1.0],[121,-16,66,1.0],[121,-16,67,1.0],[121,-16,68,1.0],[121,-16,69,1.0],[121,-16,70,1.0],[121,-16,71,1.0],[121,-16,72,1.0],[121,-16,73,1.0],[121,-16,74,1.0],[121,-16,75,1.0],[121,-16,76,1.0],[121,-16,77,1.0],[121,-16,78,1.0],[121,-16,79,1.0],[121,-15,64,0.7017080256091817],[121,-15,65,0.7937004188289175],[121,-15,66,0.8909732453431857],[121,-15,67,0.9932762727733444],[121,-15,68,1.0],[121,-15,69,1.0],[121,-15,70,1.0],[121,-15,71,1.0],[121,-15,72,1.0],[121,-15,73,1.0],[121,-15,74,1.0],[121,-15,75,1.0],[121,-15,76,1.0],[121,-15,77,1.0],[121,-15,78,1.0],[121,-15,79,1.0],[121,-14,64,0.4450682216587769],[121,-14,65,0.5134397728740114],[121,-14,66,0.5866402443934776],[121,-14,67,0.6644908422642047],[121,-14,68,0.7467863642620851],[121,-14,69,0.8332987006337756],[121,-14,70,0.9237803326153574],[121,-14,71,1.0],[121,-14,72,1.0],[121,-14,73,1.0],[121,-14,74,1.0],[121,-14,75,1.0],[121,-14,76,1.0],[121,-14,77,1.0],[121,-14,78,1.0],[121,-14,79,1.0],[121,-13,64,0.2601505681452347],[121,-13,65,0.30839993402596094],[121,-13,66,0.36094464423022793],[121,-13,67,0.4176773578184418],[121,-13,68,0.4784619225681512],[121,-13,69,0.5431367247903399],[121,-13,70,0.6115180431231713],[121,-13,71,0.6834033891174102],[121,-13,72,0.7585748180912242],[121,-13,73,0.8368021945085878],[121,-13,74,0.917846397008426],[121,-13,75,1.0],[121,-13,76,1.0],[121,-13,77,1.0],[121,-13,78,1.0],[121,-13,79,1.0],[121,-12,64,0.13520108981920603],[121,-12,65,0.16682705848524143],[121,-12,66,0.20213273232169976],[121,-12,67,0.24108223798381892],[121,-12,68,0.2836085872220968],[121,-12,69,0.32961687830200553],[121,-12,70,0.37898750762445194],[121,-12,71,0.4315793746268323],[121,-12,72,0.48723306367309566],[121,-12,73,0.5457739873827123],[121,-12,74,0.6070154766886109],[121,-12,75,0.6707618038914059],[121,-12,76,0.7368111260527229],[121,-12,77,0.8049583372344266],[121,-12,78,0.874997819380925],[121,-12,79,0.9467260830181036],[121,-11,64,0.05846571562308855],[121,-11,65,0.07696720626607707],[121,-11,66,0.09845069957375165],[121,-11,67,0.12295180437135293],[121,-11,68,0.15047281034778376],[121,-11,69,0.18098574360778838],[121,-11,70,0.21443543867078155],[121,-11,71,0.250742610261358],[121,-11,72,0.2898069088308258],[121,-11,73,0.331509944455576],[121,-11,74,0.375718264564803],[121,-11,75,0.42228627188287254],[121,-11,76,0.47105907000300723],[121,-11,77,0.5218752251293416],[121,-11,78,0.5745694337601679],[121,-11,79,0.6289750874062194],[121,-10,64,0.01819027859538196],[121,-10,65,0.027066341097124958],[121,-10,66,0.03814464022686988],[121,-10,67,0.051532281548722185],[121,-10,68,0.0673009466495785],[121,-10,69,0.08548980535283648],[121,-10,70,0.10610845064726031],[121,-10,71,0.1291398399407883],[121,-10,72,0.15454322680976385],[121,-10,73,0.18225706808556155],[121,-10,74,0.21220189189309932],[121,-10,75,0.2442831131447615],[121,-10,76,0.278393783980453],[121,-10,77,0.31441726772068107],[121,-10,78,0.3522298260813158],[121,-10,79,0.39170311066441077],[121,-9,64,0.012008105325143098],[121,-9,65,0.015166727477806383],[121,-9,66,0.018234766521301488],[121,-9,67,0.02121048814420326],[121,-9,68,0.024092126918847268],[121,-9,69,0.03137545027877598],[121,-9,70,0.042253059659312434],[121,-9,71,0.05501770893085102],[121,-9,72,0.06968879182852045],[121,-9,73,0.08626226123335613],[121,-9,74,0.10471339016263227],[121,-9,75,0.12499948747877342],[121,-9,76,0.14706255588180936],[121,-9,77,0.1708318807816989],[121,-9,78,0.1962265397752061],[121,-9,79,0.22315782366246098],[121,-8,64,0.008479738201048102],[121,-8,65,0.011601327622379684],[121,-8,66,0.014635639008804241],[121,-8,67,0.01758101051243728],[121,-8,68,0.020435739729026944],[121,-8,69,0.02319809828353582],[121,-8,70,0.025866345949471285],[121,-8,71,0.02843874430177646],[121,-8,72,0.03091356990353583],[121,-8,73,0.033289127026193785],[121,-8,74,0.04149969097236088],[121,-8,75,0.052682454425408705],[121,-8,76,0.06531257297326558],[121,-8,77,0.07936637908738083],[121,-8,78,0.09480701690832956],[121,-8,79,0.11158679554134221],[121,-7,64,0.004917222844275655],[121,-7,65,0.007999817609081014],[121,-7,66,0.010998422452450689],[121,-7,67,0.013911449616256573],[121,-7,68,0.016737261563770485],[121,-7,69,0.019474185739169605],[121,-7,70,0.02212052886212927],[121,-7,71,0.024674590757314978],[121,-7,72,0.027134677719026425],[121,-7,73,0.02949911541069418],[121,-7,74,0.03176626129936892],[121,-7,75,0.03393451662535015],[121,-7,76,0.036002337906647565],[121,-7,77,0.037968247978534146],[121,-7,78,0.03983084656799334],[121,-7,79,0.045237493577206085],[121,-6,64,0.0013268686058052828],[121,-6,65,0.0043685261893894045],[121,-6,66,0.007329461111106189],[121,-6,67,0.01020816124371731],[121,-6,68,0.013003055688273209],[121,-6,69,0.015712529689626754],[121,-6,70,0.018334939088784995],[121,-6,71,0.020868624311908814],[121,-6,72,0.02331192389621973],[121,-6,73,0.02566318755250535],[121,-6,74,0.02792078876437029],[121,-6,75,0.030083136924377966],[121,-6,76,0.03214868900677401],[121,-6,77,0.03411596077705353],[121,-6,78,0.03598353753817178],[121,-6,79,0.03775008441366965],[121,-5,64,-0.0022849793824191098],[121,-5,65,7.138212049936088E-4],[121,-5,66,0.0036351416872166045],[121,-5,67,0.006477547021499996],[121,-5,68,0.00923953464020915],[121,-5,69,0.011919549504227474],[121,-5,70,0.014515998695358794],[121,-5,71,0.017027265547539402],[121,-5,72,0.019451723317117885],[121,-5,73,0.021787748391896115],[121,-5,74,0.02403373303907632],[121,-5,75,0.026188097692261422],[121,-5,76,0.02824930277719742],[121,-5,77,0.030215860076522168],[121,-5,78,0.032086343633317645],[121,-5,79,0.033859400193739675],[121,-4,64,-0.005911949725477664],[121,-4,65,-0.002957899980598637],[121,-4,66,-7.811628383098262E-5],[121,-4,67,0.002726044770357011],[121,-4,68,0.005453150559757258],[121,-4,69,0.008101707607423368],[121,-4,70,0.010670176296241618],[121,-4,71,0.013156985124882267],[121,-4,72,0.015560544505388421],[121,-4,73,0.017879260102095514],[121,-4,74,0.020111545712026828],[121,-4,75,0.022255835686913694],[121,-4,76,0.024310596896525136],[121,-4,77,0.02627434023357622],[121,-4,78,0.02814563166000842],[121,-4,79,0.029923102794918728],[121,-3,64,-0.009547653256807509],[121,-3,65,-0.006640219020597048],[121,-3,66,-0.003803869011070965],[121,-3,67,-0.001039880102515607],[121,-3,68,0.0016503865604269585],[121,-3,69,0.0042655008369298295],[121,-3,70,0.0068039784086970576],[121,-3,71,0.009264295143034451],[121,-3,72,0.011644901000534336],[121,-3,73,0.013944233487066658],[121,-3,74,0.016160730650220098],[121,-3,75,0.01829284362034448],[121,-3,76,0.02033904869587891],[121,-3,77,0.02229785897323163],[121,-3,78,0.024167835521009803],[121,-3,79,0.025947598098872288],[121,-2,64,-0.013185690502853203],[121,-2,65,-0.010326704093583557],[121,-2,66,-0.007535655992017082],[121,-2,67,-0.004813742174154041],[121,-2,68,-0.0021622508592896023],[121,-2,69,4.1745284678878364E-4],[121,-2,70,0.002923941856526689],[121,-2,71,0.005355741553060622],[121,-2,72,0.007711343790666653],[121,-2,73,0.009989220442892702],[121,-2,74,0.012187836498518831],[121,-2,75,0.0143056627054957],[121,-2,76,0.016341187762545638],[121,-2,77,0.018292930058694395],[121,-2,78,0.02015944896052726],[121,-2,79,0.021939355647448484],[121,-1,64,-0.016819658121063834],[121,-1,65,-0.014010916382316559],[121,-1,66,-0.011267006523448128],[121,-1,67,-0.008589042539580968],[121,-1,68,-0.005978238363468377],[121,-1,69,-0.0034358924446714553],[121,-1,70,-9.633727770382364E-4],[121,-1,71,0.0014378976253242026],[121,-1,72,0.003766454803844771],[121,-1,73,0.006020807482739941],[121,-1,74,0.008199450247868854],[121,-1,75,0.010300876277342053],[121,-1,76,0.012323589623566847],[121,-1,77,0.014266117046997887],[121,-1,78,0.01612701940138822],[121,-1,79,0.017904902570817158],[121,0,64,-0.02044315431121734],[121,0,65,-0.017686415522661765],[121,0,66,-0.014991445178897195],[121,0,67,-0.012359274308616323],[121,0,68,-0.009791041285485622],[121,0,69,-0.007287976361953677],[121,0,70,-0.004851386647193798],[121,0,71,-0.0024826415293736012],[121,0,72,-1.8315854198919929E-4],[121,0,73,0.00204561032542451],[121,0,74,0.004202191872353177],[121,0,75,0.00628510448828417],[121,0,76,0.00829287050929213],[121,0,77,0.010224028130495624],[121,0,78,0.01207714287418269],[121,0,79,0.013850818613879948],[121,1,64,-0.024049783200084322],[121,1,65,-0.02134676402266475],[121,1,66,-0.018702496252859448],[121,1,67,-0.016117927065758583],[121,1,68,-0.013594118093947435],[121,1,69,-0.011132229934605282],[121,1,70,-0.008733507096184277],[121,1,71,-0.006399263384861006],[121,1,72,-0.004130867730499213],[121,1,73,-0.0019297304524345388],[121,1,74,2.027100350650221E-4],[121,1,75,0.0022650000778137794],[121,1,76,0.004255683196881681],[121,1,77,0.006173312064192492],[121,1,78,0.008016460038344525],[121,1,79,0.009783732260930642],[121,2,64,-0.013654513252498954],[121,2,65,-0.020945781217606423],[121,2,66,-0.022393687171709004],[121,2,67,-0.019858490293126564],[121,2,68,-0.017380923817802756],[121,2,69,-0.014962077314512379],[121,2,70,-0.012603131052674507],[121,2,71,-0.010305341370856702],[121,2,72,-0.008070026479855115],[121,2,73,-0.005898552700664077],[121,2,74,-0.003792321137185972],[121,2,75,-0.0017527547835319915],[121,2,76,2.187139337696195E-4],[121,2,77,0.002120655178925554],[121,2,78,0.003951653295185174],[121,2,79,0.0057103179585821714],[121,3,64,-0.00148716326508671],[121,3,65,-0.003428141416173367],[121,3,66,-0.006492543855810362],[121,3,67,-0.010860968841027226],[121,3,68,-0.016677741831550453],[121,3,69,-0.0187709381482817],[121,3,70,-0.016453647381881494],[121,3,71,-0.01419423719043307],[121,3,72,-0.011993973017048042],[121,3,73,-0.00985417491619104],[121,3,74,-0.007776204210341316],[121,3,75,-0.005761450575936626],[121,3,76,-0.0038113195589183912],[121,3,77,-0.0019272205196087869],[121,3,78,-1.1055500712413985E-4],[121,3,79,0.0016372944369522704],[121,4,64,1.2343656563946133E-6],[121,4,65,-1.7397664916935293E-5],[121,4,66,-2.346836218469897E-4],[121,4,67,-9.010042969962697E-4],[121,4,68,-0.0022286059882934187],[121,4,69,-0.004394134684149752],[121,4,70,-0.007541204043730138],[121,4,71,-0.011782981696070902],[121,4,72,-0.015896031293626364],[121,4,73,-0.013789897400109316],[121,4,74,-0.011742219530740401],[121,4,75,-0.009754351437792935],[121,4,76,-0.007827669002996425],[121,4,77,-0.005963558165987842],[121,4,78,-0.004163403276627162],[121,4,79,-0.0024285758708970998],[121,5,64,0.002493211428275817],[121,5,65,9.691081571186788E-4],[121,5,66,2.5230769748934895E-4],[121,5,67,2.263446375278186E-5],[121,5,68,-1.8990936159977683E-7],[121,5,69,-5.894819608922103E-5],[121,5,70,-3.6136933959103417E-4],[121,5,71,-0.001082595127029616],[121,5,72,-0.0023676570241872685],[121,5,73,-0.004333948974414286],[121,5,74,-0.007073682623773376],[121,5,75,-0.010656312184896485],[121,5,76,-0.011823555399886894],[121,5,77,-0.009981565764344169],[121,5,78,-0.008200090288703277],[121,5,79,-0.006480486311252753],[121,6,64,0.017671203408195123],[121,6,65,0.011213937444784581],[121,6,66,0.006651117251805007],[121,6,67,0.003592760184283515],[121,6,68,0.0016904445742906159],[121,6,69,6.350381308020807E-4],[121,6,70,1.5437985144640883E-4],[121,6,71,1.0930400588337594E-5],[121,6,72,-5.94520889331355E-7],[121,6,73,-5.5593814297953815E-5],[121,6,74,-3.0194025049701874E-4],[121,6,75,-8.623166960387283E-4],[121,6,76,-0.0018365174240109919],[121,6,77,-0.003303703511988263],[121,6,78,-0.005324602281384194],[121,6,79,-0.007943641754358445],[121,7,64,0.057217549443356816],[121,7,65,0.04239955481892557],[121,7,66,0.030644334992297302],[121,7,67,0.021492087986944717],[121,7,68,0.01452613759076004],[121,7,69,0.009370789259231748],[121,7,70,0.005689133150317646],[121,7,71,0.0031808089848259814],[121,7,72,0.001579747027243459],[121,7,73,6.518989911703497E-4],[121,7,74,1.929720914123374E-4],[121,7,75,2.6178794686239447E-5],[121,7,76,1.4069542746152742E-8],[121,7,77,-1.392889310856832E-5],[121,7,78,-1.2309441858880617E-4],[121,7,79,-4.160424427066858E-4],[121,8,64,0.1328144922835789],[121,8,65,0.10620832808220527],[121,8,66,0.08391445362406864],[121,8,67,0.06540323532219422],[121,8,68,0.050189631172549314],[121,8,69,0.03783117163467799],[121,8,70,0.02792588124113739],[121,8,71,0.020110155369334796],[121,8,72,0.014056606240067914],[121,8,73,0.009471891751039544],[121,8,74,0.006094540210071707],[121,8,75,0.0036927834018206664],[121,8,76,0.0020624097149239333],[121,8,77,0.0010246482751626396],[121,8,78,4.2409417930773063E-4],[121,8,79,1.2668401246894293E-4],[121,9,64,0.2561441782536168],[121,9,65,0.21432252817864292],[121,9,66,0.17814386856215916],[121,9,67,0.14700872192114856],[121,9,68,0.12036356920565425],[121,9,69,0.09769895313103619],[121,9,70,0.07854751581342702],[121,9,71,0.06248198488220404],[121,9,72,0.04911312190292859],[121,9,73,0.03808764652289319],[121,9,74,0.029086149247154556],[121,9,75,0.021821005160439458],[121,9,76,0.01603430024799495],[121,9,77,0.011495781235571916],[121,9,78,0.008000839067401422],[121,9,79,0.005368535284128104],[121,10,64,0.438888657219958],[121,10,65,0.3784243291568869],[121,10,66,0.3250148778913199],[121,10,67,0.2779909697518763],[121,10,68,0.23673049738239957],[121,10,69,0.20065680300001776],[121,10,70,0.16923682950809793],[121,10,71,0.1419792133785503],[121,10,72,0.11843233290587513],[121,10,73,0.09818232504871538],[121,10,74,0.08085108361042728],[121,10,75,0.06609425095537846],[121,10,76,0.053599214840003205],[121,10,77,0.043083121253811765],[121,10,78,0.034290913413213976],[121,10,79,0.026993406249037642],[121,11,64,0.692729882561217],[121,11,65,0.6101958081371054],[121,11,66,0.5362096823294196],[121,11,67,0.470032302979342],[121,11,68,0.410972863157939],[121,11,69,0.35838729182422785],[121,11,70,0.3116765158671265],[121,11,71,0.27028465718681083],[121,11,72,0.23369717818659458],[121,11,73,0.20143898869448365],[121,11,74,0.17307252691002314],[121,11,75,0.14819582645421087],[121,11,76,0.1264405810272805],[121,11,77,0.10747021754496403],[121,11,78,0.09097798791990135],[121,11,79,0.07668508890776628],[121,12,64,1.0],[121,12,65,0.9213189452816068],[121,12,66,0.8234103851945813],[121,12,67,0.7348149479290791],[121,12,68,0.6547730157104859],[121,12,69,0.582572891473974],[121,12,70,0.5175491692869639],[121,12,71,0.4590810330587742],[121,12,72,0.4065904966770839],[121,12,73,0.35954059839350494],[121,12,74,0.3174335618984629],[121,12,75,0.2798089360439733],[121,12,76,0.24624172464469665],[121,12,77,0.21634051720370237],[121,12,78,0.18974563075322592],[121,12,79,0.166127272308448],[121,13,64,1.0],[121,13,65,1.0],[121,13,66,1.0],[121,13,67,1.0],[121,13,68,0.9798132059051811],[121,13,69,0.8848959750677249],[121,13,70,0.798537284975604],[121,13,71,0.7200509581232795],[121,13,72,0.6487950272540036],[121,13,73,0.5841700145934416],[121,13,74,0.5256171704143752],[121,13,75,0.4726166827716023],[121,13,76,0.4246858697628315],[121,13,77,0.3813773651382213],[121,13,78,0.3422773074722637],[121,13,79,0.3070035424742876],[121,14,64,1.0],[121,14,65,1.0],[121,14,66,1.0],[121,14,67,1.0],[121,14,68,1.0],[121,14,69,1.0],[121,14,70,1.0],[121,14,71,1.0],[121,14,72,0.9719934086928025],[121,14,73,0.8870099972071128],[121,14,74,0.809306233329993],[121,14,75,0.738302068288146],[121,14,76,0.6734561386289265],[121,14,77,0.614264004007946],[121,14,78,0.5602563809638942],[121,14,79,0.5109973823348525],[121,15,64,1.0],[121,15,65,1.0],[121,15,66,1.0],[121,15,67,1.0],[121,15,68,1.0],[121,15,69,1.0],[121,15,70,1.0],[121,15,71,1.0],[121,15,72,1.0],[121,15,73,1.0],[121,15,74,1.0],[121,15,75,1.0],[121,15,76,1.0],[121,15,77,0.9266835741648491],[121,15,78,0.8553661113809117],[121,15,79,0.7897921716609977],[121,16,64,1.0],[121,16,65,1.0],[121,16,66,1.0],[121,16,67,1.0],[121,16,68,1.0],[121,16,69,1.0],[121,16,70,1.0],[121,16,71,1.0],[121,16,72,1.0],[121,16,73,1.0],[121,16,74,1.0],[121,16,75,1.0],[121,16,76,1.0],[121,16,77,1.0],[121,16,78,1.0],[121,16,79,1.0],[121,17,64,1.0],[121,17,65,1.0],[121,17,66,1.0],[121,17,67,1.0],[121,17,68,1.0],[121,17,69,1.0],[121,17,70,1.0],[121,17,71,1.0],[121,17,72,1.0],[121,17,73,1.0],[121,17,74,1.0],[121,17,75,1.0],[121,17,76,1.0],[121,17,77,1.0],[121,17,78,1.0],[121,17,79,1.0],[121,18,64,1.0],[121,18,65,1.0],[121,18,66,1.0],[121,18,67,1.0],[121,18,68,1.0],[121,18,69,1.0],[121,18,70,1.0],[121,18,71,1.0],[121,18,72,1.0],[121,18,73,1.0],[121,18,74,1.0],[121,18,75,1.0],[121,18,76,1.0],[121,18,77,1.0],[121,18,78,1.0],[121,18,79,1.0],[121,19,64,1.0],[121,19,65,1.0],[121,19,66,1.0],[121,19,67,1.0],[121,19,68,1.0],[121,19,69,1.0],[121,19,70,1.0],[121,19,71,1.0],[121,19,72,1.0],[121,19,73,1.0],[121,19,74,1.0],[121,19,75,1.0],[121,19,76,1.0],[121,19,77,1.0],[121,19,78,1.0],[121,19,79,1.0],[121,20,64,1.0],[121,20,65,1.0],[121,20,66,1.0],[121,20,67,1.0],[121,20,68,1.0],[121,20,69,1.0],[121,20,70,1.0],[121,20,71,1.0],[121,20,72,1.0],[121,20,73,1.0],[121,20,74,1.0],[121,20,75,1.0],[121,20,76,1.0],[121,20,77,1.0],[121,20,78,1.0],[121,20,79,1.0],[121,21,64,1.0],[121,21,65,1.0],[121,21,66,1.0],[121,21,67,1.0],[121,21,68,1.0],[121,21,69,1.0],[121,21,70,1.0],[121,21,71,1.0],[121,21,72,1.0],[121,21,73,1.0],[121,21,74,1.0],[121,21,75,1.0],[121,21,76,1.0],[121,21,77,1.0],[121,21,78,1.0],[121,21,79,1.0],[121,22,64,1.0],[121,22,65,1.0],[121,22,66,1.0],[121,22,67,1.0],[121,22,68,1.0],[121,22,69,1.0],[121,22,70,1.0],[121,22,71,1.0],[121,22,72,1.0],[121,22,73,1.0],[121,22,74,1.0],[121,22,75,1.0],[121,22,76,1.0],[121,22,77,1.0],[121,22,78,1.0],[121,22,79,1.0],[121,23,64,1.0],[121,23,65,1.0],[121,23,66,1.0],[121,23,67,1.0],[121,23,68,1.0],[121,23,69,1.0],[121,23,70,1.0],[121,23,71,1.0],[121,23,72,1.0],[121,23,73,1.0],[121,23,74,1.0],[121,23,75,1.0],[121,23,76,1.0],[121,23,77,1.0],[121,23,78,1.0],[121,23,79,1.0],[121,24,64,1.0],[121,24,65,1.0],[121,24,66,1.0],[121,24,67,1.0],[121,24,68,1.0],[121,24,69,1.0],[121,24,70,1.0],[121,24,71,1.0],[121,24,72,1.0],[121,24,73,1.0],[121,24,74,1.0],[121,24,75,1.0],[121,24,76,1.0],[121,24,77,1.0],[121,24,78,1.0],[121,24,79,1.0],[121,25,64,1.0],[121,25,65,1.0],[121,25,66,1.0],[121,25,67,1.0],[121,25,68,1.0],[121,25,69,1.0],[121,25,70,1.0],[121,25,71,1.0],[121,25,72,1.0],[121,25,73,1.0],[121,25,74,1.0],[121,25,75,1.0],[121,25,76,1.0],[121,25,77,1.0],[121,25,78,1.0],[121,25,79,1.0],[121,26,64,1.0],[121,26,65,1.0],[121,26,66,1.0],[121,26,67,1.0],[121,26,68,1.0],[121,26,69,1.0],[121,26,70,1.0],[121,26,71,1.0],[121,26,72,1.0],[121,26,73,1.0],[121,26,74,1.0],[121,26,75,1.0],[121,26,76,1.0],[121,26,77,1.0],[121,26,78,1.0],[121,26,79,1.0],[121,27,64,1.0],[121,27,65,1.0],[121,27,66,1.0],[121,27,67,1.0],[121,27,68,1.0],[121,27,69,1.0],[121,27,70,1.0],[121,27,71,1.0],[121,27,72,1.0],[121,27,73,1.0],[121,27,74,1.0],[121,27,75,1.0],[121,27,76,1.0],[121,27,77,1.0],[121,27,78,1.0],[121,27,79,1.0],[121,28,64,1.0],[121,28,65,1.0],[121,28,66,1.0],[121,28,67,1.0],[121,28,68,1.0],[121,28,69,1.0],[121,28,70,1.0],[121,28,71,1.0],[121,28,72,1.0],[121,28,73,1.0],[121,28,74,1.0],[121,28,75,1.0],[121,28,76,1.0],[121,28,77,1.0],[121,28,78,1.0],[121,28,79,1.0],[121,29,64,1.0],[121,29,65,1.0],[121,29,66,1.0],[121,29,67,1.0],[121,29,68,1.0],[121,29,69,1.0],[121,29,70,1.0],[121,29,71,1.0],[121,29,72,1.0],[121,29,73,1.0],[121,29,74,1.0],[121,29,75,1.0],[121,29,76,1.0],[121,29,77,1.0],[121,29,78,1.0],[121,29,79,1.0],[121,30,64,1.0],[121,30,65,1.0],[121,30,66,1.0],[121,30,67,1.0],[121,30,68,1.0],[121,30,69,1.0],[121,30,70,1.0],[121,30,71,1.0],[121,30,72,1.0],[121,30,73,1.0],[121,30,74,1.0],[121,30,75,1.0],[121,30,76,1.0],[121,30,77,1.0],[121,30,78,1.0],[121,30,79,1.0],[121,31,64,1.0],[121,31,65,1.0],[121,31,66,1.0],[121,31,67,1.0],[121,31,68,1.0],[121,31,69,1.0],[121,31,70,1.0],[121,31,71,1.0],[121,31,72,1.0],[121,31,73,1.0],[121,31,74,1.0],[121,31,75,1.0],[121,31,76,1.0],[121,31,77,1.0],[121,31,78,1.0],[121,31,79,1.0],[121,32,64,1.0],[121,32,65,1.0],[121,32,66,1.0],[121,32,67,1.0],[121,32,68,1.0],[121,32,69,1.0],[121,32,70,1.0],[121,32,71,1.0],[121,32,72,1.0],[121,32,73,1.0],[121,32,74,1.0],[121,32,75,1.0],[121,32,76,1.0],[121,32,77,1.0],[121,32,78,1.0],[121,32,79,1.0],[121,33,64,1.0],[121,33,65,1.0],[121,33,66,1.0],[121,33,67,1.0],[121,33,68,1.0],[121,33,69,1.0],[121,33,70,1.0],[121,33,71,1.0],[121,33,72,1.0],[121,33,73,1.0],[121,33,74,1.0],[121,33,75,1.0],[121,33,76,1.0],[121,33,77,1.0],[121,33,78,1.0],[121,33,79,1.0],[121,34,64,1.0],[121,34,65,1.0],[121,34,66,1.0],[121,34,67,1.0],[121,34,68,1.0],[121,34,69,1.0],[121,34,70,1.0],[121,34,71,1.0],[121,34,72,1.0],[121,34,73,1.0],[121,34,74,1.0],[121,34,75,1.0],[121,34,76,1.0],[121,34,77,1.0],[121,34,78,1.0],[121,34,79,1.0],[121,35,64,1.0],[121,35,65,1.0],[121,35,66,1.0],[121,35,67,1.0],[121,35,68,1.0],[121,35,69,1.0],[121,35,70,1.0],[121,35,71,1.0],[121,35,72,1.0],[121,35,73,1.0],[121,35,74,1.0],[121,35,75,1.0],[121,35,76,1.0],[121,35,77,1.0],[121,35,78,1.0],[121,35,79,1.0],[121,36,64,1.0],[121,36,65,1.0],[121,36,66,1.0],[121,36,67,1.0],[121,36,68,1.0],[121,36,69,1.0],[121,36,70,1.0],[121,36,71,1.0],[121,36,72,1.0],[121,36,73,1.0],[121,36,74,1.0],[121,36,75,1.0],[121,36,76,1.0],[121,36,77,1.0],[121,36,78,1.0],[121,36,79,1.0],[121,37,64,1.0],[121,37,65,1.0],[121,37,66,1.0],[121,37,67,1.0],[121,37,68,1.0],[121,37,69,1.0],[121,37,70,1.0],[121,37,71,1.0],[121,37,72,1.0],[121,37,73,1.0],[121,37,74,1.0],[121,37,75,1.0],[121,37,76,1.0],[121,37,77,1.0],[121,37,78,1.0],[121,37,79,1.0],[121,38,64,1.0],[121,38,65,1.0],[121,38,66,1.0],[121,38,67,1.0],[121,38,68,1.0],[121,38,69,1.0],[121,38,70,1.0],[121,38,71,1.0],[121,38,72,1.0],[121,38,73,1.0],[121,38,74,1.0],[121,38,75,1.0],[121,38,76,1.0],[121,38,77,1.0],[121,38,78,1.0],[121,38,79,1.0],[121,39,64,1.0],[121,39,65,1.0],[121,39,66,1.0],[121,39,67,1.0],[121,39,68,1.0],[121,39,69,1.0],[121,39,70,1.0],[121,39,71,1.0],[121,39,72,1.0],[121,39,73,1.0],[121,39,74,1.0],[121,39,75,1.0],[121,39,76,1.0],[121,39,77,1.0],[121,39,78,1.0],[121,39,79,1.0],[121,40,64,1.0],[121,40,65,1.0],[121,40,66,1.0],[121,40,67,1.0],[121,40,68,1.0],[121,40,69,1.0],[121,40,70,1.0],[121,40,71,1.0],[121,40,72,1.0],[121,40,73,1.0],[121,40,74,1.0],[121,40,75,1.0],[121,40,76,1.0],[121,40,77,1.0],[121,40,78,1.0],[121,40,79,1.0],[121,41,64,1.0],[121,41,65,1.0],[121,41,66,1.0],[121,41,67,1.0],[121,41,68,1.0],[121,41,69,1.0],[121,41,70,1.0],[121,41,71,1.0],[121,41,72,1.0],[121,41,73,1.0],[121,41,74,1.0],[121,41,75,1.0],[121,41,76,1.0],[121,41,77,1.0],[121,41,78,1.0],[121,41,79,1.0],[121,42,64,1.0],[121,42,65,1.0],[121,42,66,1.0],[121,42,67,1.0],[121,42,68,1.0],[121,42,69,1.0],[121,42,70,1.0],[121,42,71,1.0],[121,42,72,1.0],[121,42,73,1.0],[121,42,74,1.0],[121,42,75,1.0],[121,42,76,1.0],[121,42,77,1.0],[121,42,78,1.0],[121,42,79,1.0],[121,43,64,1.0],[121,43,65,1.0],[121,43,66,1.0],[121,43,67,1.0],[121,43,68,1.0],[121,43,69,1.0],[121,43,70,1.0],[121,43,71,1.0],[121,43,72,1.0],[121,43,73,1.0],[121,43,74,1.0],[121,43,75,1.0],[121,43,76,1.0],[121,43,77,1.0],[121,43,78,1.0],[121,43,79,1.0],[121,44,64,1.0],[121,44,65,1.0],[121,44,66,1.0],[121,44,67,1.0],[121,44,68,1.0],[121,44,69,1.0],[121,44,70,1.0],[121,44,71,1.0],[121,44,72,1.0],[121,44,73,1.0],[121,44,74,1.0],[121,44,75,1.0],[121,44,76,1.0],[121,44,77,1.0],[121,44,78,1.0],[121,44,79,1.0],[121,45,64,1.0],[121,45,65,1.0],[121,45,66,1.0],[121,45,67,1.0],[121,45,68,1.0],[121,45,69,1.0],[121,45,70,1.0],[121,45,71,1.0],[121,45,72,1.0],[121,45,73,1.0],[121,45,74,1.0],[121,45,75,1.0],[121,45,76,1.0],[121,45,77,1.0],[121,45,78,1.0],[121,45,79,1.0],[121,46,64,1.0],[121,46,65,1.0],[121,46,66,1.0],[121,46,67,1.0],[121,46,68,1.0],[121,46,69,1.0],[121,46,70,1.0],[121,46,71,1.0],[121,46,72,1.0],[121,46,73,1.0],[121,46,74,1.0],[121,46,75,1.0],[121,46,76,1.0],[121,46,77,1.0],[121,46,78,1.0],[121,46,79,1.0],[121,47,64,1.0],[121,47,65,1.0],[121,47,66,1.0],[121,47,67,1.0],[121,47,68,1.0],[121,47,69,1.0],[121,47,70,1.0],[121,47,71,1.0],[121,47,72,1.0],[121,47,73,1.0],[121,47,74,1.0],[121,47,75,1.0],[121,47,76,1.0],[121,47,77,1.0],[121,47,78,1.0],[121,47,79,1.0],[121,48,64,1.0],[121,48,65,1.0],[121,48,66,1.0],[121,48,67,1.0],[121,48,68,1.0],[121,48,69,1.0],[121,48,70,1.0],[121,48,71,1.0],[121,48,72,1.0],[121,48,73,1.0],[121,48,74,1.0],[121,48,75,1.0],[121,48,76,1.0],[121,48,77,1.0],[121,48,78,1.0],[121,48,79,1.0],[121,49,64,1.0],[121,49,65,1.0],[121,49,66,1.0],[121,49,67,1.0],[121,49,68,1.0],[121,49,69,1.0],[121,49,70,1.0],[121,49,71,1.0],[121,49,72,1.0],[121,49,73,1.0],[121,49,74,1.0],[121,49,75,1.0],[121,49,76,1.0],[121,49,77,1.0],[121,49,78,1.0],[121,49,79,1.0],[121,50,64,1.0],[121,50,65,1.0],[121,50,66,1.0],[121,50,67,1.0],[121,50,68,1.0],[121,50,69,1.0],[121,50,70,1.0],[121,50,71,1.0],[121,50,72,1.0],[121,50,73,1.0],[121,50,74,1.0],[121,50,75,1.0],[121,50,76,1.0],[121,50,77,1.0],[121,50,78,1.0],[121,50,79,1.0],[121,51,64,1.0],[121,51,65,1.0],[121,51,66,1.0],[121,51,67,1.0],[121,51,68,1.0],[121,51,69,1.0],[121,51,70,1.0],[121,51,71,1.0],[121,51,72,1.0],[121,51,73,1.0],[121,51,74,1.0],[121,51,75,1.0],[121,51,76,1.0],[121,51,77,1.0],[121,51,78,1.0],[121,51,79,1.0],[121,52,64,1.0],[121,52,65,1.0],[121,52,66,1.0],[121,52,67,1.0],[121,52,68,1.0],[121,52,69,1.0],[121,52,70,1.0],[121,52,71,1.0],[121,52,72,1.0],[121,52,73,1.0],[121,52,74,1.0],[121,52,75,1.0],[121,52,76,1.0],[121,52,77,1.0],[121,52,78,1.0],[121,52,79,1.0],[121,53,64,1.0],[121,53,65,1.0],[121,53,66,1.0],[121,53,67,1.0],[121,53,68,1.0],[121,53,69,1.0],[121,53,70,1.0],[121,53,71,1.0],[121,53,72,1.0],[121,53,73,1.0],[121,53,74,1.0],[121,53,75,1.0],[121,53,76,1.0],[121,53,77,1.0],[121,53,78,1.0],[121,53,79,1.0],[121,54,64,1.0],[121,54,65,1.0],[121,54,66,1.0],[121,54,67,1.0],[121,54,68,1.0],[121,54,69,1.0],[121,54,70,1.0],[121,54,71,1.0],[121,54,72,1.0],[121,54,73,1.0],[121,54,74,1.0],[121,54,75,1.0],[121,54,76,1.0],[121,54,77,1.0],[121,54,78,1.0],[121,54,79,1.0],[121,55,64,1.0],[121,55,65,1.0],[121,55,66,1.0],[121,55,67,1.0],[121,55,68,1.0],[121,55,69,1.0],[121,55,70,1.0],[121,55,71,1.0],[121,55,72,1.0],[121,55,73,1.0],[121,55,74,1.0],[121,55,75,1.0],[121,55,76,1.0],[121,55,77,1.0],[121,55,78,1.0],[121,55,79,1.0],[121,56,64,1.0],[121,56,65,1.0],[121,56,66,1.0],[121,56,67,1.0],[121,56,68,1.0],[121,56,69,1.0],[121,56,70,1.0],[121,56,71,1.0],[121,56,72,1.0],[121,56,73,1.0],[121,56,74,1.0],[121,56,75,1.0],[121,56,76,1.0],[121,56,77,1.0],[121,56,78,1.0],[121,56,79,1.0],[121,57,64,1.0],[121,57,65,1.0],[121,57,66,1.0],[121,57,67,1.0],[121,57,68,1.0],[121,57,69,1.0],[121,57,70,1.0],[121,57,71,1.0],[121,57,72,1.0],[121,57,73,1.0],[121,57,74,1.0],[121,57,75,1.0],[121,57,76,1.0],[121,57,77,1.0],[121,57,78,1.0],[121,57,79,1.0],[121,58,64,1.0],[121,58,65,1.0],[121,58,66,1.0],[121,58,67,1.0],[121,58,68,1.0],[121,58,69,1.0],[121,58,70,1.0],[121,58,71,1.0],[121,58,72,1.0],[121,58,73,1.0],[121,58,74,1.0],[121,58,75,1.0],[121,58,76,1.0],[121,58,77,1.0],[121,58,78,1.0],[121,58,79,1.0],[121,59,64,1.0],[121,59,65,1.0],[121,59,66,1.0],[121,59,67,1.0],[121,59,68,1.0],[121,59,69,1.0],[121,59,70,1.0],[121,59,71,1.0],[121,59,72,1.0],[121,59,73,1.0],[121,59,74,1.0],[121,59,75,1.0],[121,59,76,1.0],[121,59,77,1.0],[121,59,78,1.0],[121,59,79,1.0],[121,60,64,1.0],[121,60,65,1.0],[121,60,66,1.0],[121,60,67,1.0],[121,60,68,1.0],[121,60,69,1.0],[121,60,70,1.0],[121,60,71,1.0],[121,60,72,1.0],[121,60,73,1.0],[121,60,74,1.0],[121,60,75,1.0],[121,60,76,1.0],[121,60,77,1.0],[121,60,78,1.0],[121,60,79,1.0],[121,61,64,1.0],[121,61,65,1.0],[121,61,66,1.0],[121,61,67,1.0],[121,61,68,1.0],[121,61,69,1.0],[121,61,70,1.0],[121,61,71,1.0],[121,61,72,1.0],[121,61,73,1.0],[121,61,74,1.0],[121,61,75,1.0],[121,61,76,1.0],[121,61,77,1.0],[121,61,78,1.0],[121,61,79,1.0],[121,62,64,1.0],[121,62,65,1.0],[121,62,66,1.0],[121,62,67,1.0],[121,62,68,1.0],[121,62,69,1.0],[121,62,70,1.0],[121,62,71,1.0],[121,62,72,1.0],[121,62,73,1.0],[121,62,74,1.0],[121,62,75,1.0],[121,62,76,1.0],[121,62,77,1.0],[121,62,78,1.0],[121,62,79,1.0],[121,63,64,1.0],[121,63,65,1.0],[121,63,66,1.0],[121,63,67,1.0],[121,63,68,1.0],[121,63,69,1.0],[121,63,70,1.0],[121,63,71,1.0],[121,63,72,1.0],[121,63,73,1.0],[121,63,74,1.0],[121,63,75,1.0],[121,63,76,1.0],[121,63,77,1.0],[121,63,78,1.0],[121,63,79,1.0],[121,64,64,1.0],[121,64,65,1.0],[121,64,66,1.0],[121,64,67,1.0],[121,64,68,1.0],[121,64,69,1.0],[121,64,70,1.0],[121,64,71,1.0],[121,64,72,1.0],[121,64,73,1.0],[121,64,74,1.0],[121,64,75,1.0],[121,64,76,1.0],[121,64,77,1.0],[121,64,78,1.0],[121,64,79,1.0],[121,65,64,1.0],[121,65,65,1.0],[121,65,66,1.0],[121,65,67,1.0],[121,65,68,1.0],[121,65,69,1.0],[121,65,70,1.0],[121,65,71,1.0],[121,65,72,1.0],[121,65,73,1.0],[121,65,74,1.0],[121,65,75,1.0],[121,65,76,1.0],[121,65,77,1.0],[121,65,78,1.0],[121,65,79,1.0],[121,66,64,1.0],[121,66,65,1.0],[121,66,66,1.0],[121,66,67,1.0],[121,66,68,1.0],[121,66,69,1.0],[121,66,70,1.0],[121,66,71,1.0],[121,66,72,1.0],[121,66,73,1.0],[121,66,74,1.0],[121,66,75,1.0],[121,66,76,1.0],[121,66,77,1.0],[121,66,78,1.0],[121,66,79,1.0],[121,67,64,1.0],[121,67,65,1.0],[121,67,66,1.0],[121,67,67,1.0],[121,67,68,1.0],[121,67,69,1.0],[121,67,70,1.0],[121,67,71,1.0],[121,67,72,1.0],[121,67,73,1.0],[121,67,74,1.0],[121,67,75,1.0],[121,67,76,1.0],[121,67,77,1.0],[121,67,78,1.0],[121,67,79,1.0],[121,68,64,1.0],[121,68,65,1.0],[121,68,66,1.0],[121,68,67,1.0],[121,68,68,1.0],[121,68,69,1.0],[121,68,70,1.0],[121,68,71,1.0],[121,68,72,1.0],[121,68,73,1.0],[121,68,74,1.0],[121,68,75,1.0],[121,68,76,1.0],[121,68,77,1.0],[121,68,78,1.0],[121,68,79,1.0],[121,69,64,1.0],[121,69,65,1.0],[121,69,66,1.0],[121,69,67,1.0],[121,69,68,1.0],[121,69,69,1.0],[121,69,70,1.0],[121,69,71,1.0],[121,69,72,1.0],[121,69,73,1.0],[121,69,74,1.0],[121,69,75,1.0],[121,69,76,1.0],[121,69,77,1.0],[121,69,78,1.0],[121,69,79,1.0],[121,70,64,1.0],[121,70,65,1.0],[121,70,66,1.0],[121,70,67,1.0],[121,70,68,1.0],[121,70,69,1.0],[121,70,70,1.0],[121,70,71,1.0],[121,70,72,1.0],[121,70,73,1.0],[121,70,74,1.0],[121,70,75,1.0],[121,70,76,1.0],[121,70,77,1.0],[121,70,78,1.0],[121,70,79,1.0],[121,71,64,1.0],[121,71,65,1.0],[121,71,66,1.0],[121,71,67,1.0],[121,71,68,1.0],[121,71,69,1.0],[121,71,70,1.0],[121,71,71,1.0],[121,71,72,1.0],[121,71,73,1.0],[121,71,74,1.0],[121,71,75,1.0],[121,71,76,1.0],[121,71,77,1.0],[121,71,78,1.0],[121,71,79,1.0],[121,72,64,1.0],[121,72,65,1.0],[121,72,66,1.0],[121,72,67,1.0],[121,72,68,1.0],[121,72,69,1.0],[121,72,70,1.0],[121,72,71,1.0],[121,72,72,1.0],[121,72,73,1.0],[121,72,74,1.0],[121,72,75,1.0],[121,72,76,1.0],[121,72,77,1.0],[121,72,78,1.0],[121,72,79,1.0],[121,73,64,1.0],[121,73,65,1.0],[121,73,66,1.0],[121,73,67,1.0],[121,73,68,1.0],[121,73,69,1.0],[121,73,70,1.0],[121,73,71,1.0],[121,73,72,1.0],[121,73,73,1.0],[121,73,74,1.0],[121,73,75,1.0],[121,73,76,1.0],[121,73,77,1.0],[121,73,78,1.0],[121,73,79,1.0],[121,74,64,1.0],[121,74,65,1.0],[121,74,66,1.0],[121,74,67,1.0],[121,74,68,1.0],[121,74,69,1.0],[121,74,70,1.0],[121,74,71,1.0],[121,74,72,1.0],[121,74,73,1.0],[121,74,74,1.0],[121,74,75,1.0],[121,74,76,1.0],[121,74,77,1.0],[121,74,78,1.0],[121,74,79,1.0],[121,75,64,1.0],[121,75,65,1.0],[121,75,66,1.0],[121,75,67,1.0],[121,75,68,1.0],[121,75,69,1.0],[121,75,70,1.0],[121,75,71,1.0],[121,75,72,1.0],[121,75,73,1.0],[121,75,74,1.0],[121,75,75,1.0],[121,75,76,1.0],[121,75,77,1.0],[121,75,78,1.0],[121,75,79,1.0],[121,76,64,1.0],[121,76,65,1.0],[121,76,66,1.0],[121,76,67,1.0],[121,76,68,1.0],[121,76,69,1.0],[121,76,70,1.0],[121,76,71,1.0],[121,76,72,1.0],[121,76,73,1.0],[121,76,74,1.0],[121,76,75,1.0],[121,76,76,1.0],[121,76,77,1.0],[121,76,78,1.0],[121,76,79,1.0],[121,77,64,1.0],[121,77,65,1.0],[121,77,66,1.0],[121,77,67,1.0],[121,77,68,1.0],[121,77,69,1.0],[121,77,70,1.0],[121,77,71,1.0],[121,77,72,1.0],[121,77,73,1.0],[121,77,74,1.0],[121,77,75,1.0],[121,77,76,1.0],[121,77,77,1.0],[121,77,78,1.0],[121,77,79,1.0],[121,78,64,1.0],[121,78,65,1.0],[121,78,66,1.0],[121,78,67,1.0],[121,78,68,1.0],[121,78,69,1.0],[121,78,70,1.0],[121,78,71,1.0],[121,78,72,1.0],[121,78,73,1.0],[121,78,74,1.0],[121,78,75,1.0],[121,78,76,1.0],[121,78,77,1.0],[121,78,78,1.0],[121,78,79,1.0],[121,79,64,1.0],[121,79,65,1.0],[121,79,66,1.0],[121,79,67,1.0],[121,79,68,1.0],[121,79,69,1.0],[121,79,70,1.0],[121,79,71,1.0],[121,79,72,1.0],[121,79,73,1.0],[121,79,74,1.0],[121,79,75,1.0],[121,79,76,1.0],[121,79,77,1.0],[121,79,78,1.0],[121,79,79,1.0],[121,80,64,1.0],[121,80,65,1.0],[121,80,66,1.0],[121,80,67,1.0],[121,80,68,1.0],[121,80,69,1.0],[121,80,70,1.0],[121,80,71,1.0],[121,80,72,1.0],[121,80,73,1.0],[121,80,74,1.0],[121,80,75,1.0],[121,80,76,1.0],[121,80,77,1.0],[121,80,78,1.0],[121,80,79,1.0],[121,81,64,1.0],[121,81,65,1.0],[121,81,66,1.0],[121,81,67,1.0],[121,81,68,1.0],[121,81,69,1.0],[121,81,70,1.0],[121,81,71,1.0],[121,81,72,1.0],[121,81,73,1.0],[121,81,74,1.0],[121,81,75,1.0],[121,81,76,1.0],[121,81,77,1.0],[121,81,78,1.0],[121,81,79,1.0],[121,82,64,1.0],[121,82,65,1.0],[121,82,66,1.0],[121,82,67,1.0],[121,82,68,1.0],[121,82,69,1.0],[121,82,70,1.0],[121,82,71,1.0],[121,82,72,1.0],[121,82,73,1.0],[121,82,74,1.0],[121,82,75,1.0],[121,82,76,1.0],[121,82,77,1.0],[121,82,78,1.0],[121,82,79,1.0],[121,83,64,1.0],[121,83,65,1.0],[121,83,66,1.0],[121,83,67,1.0],[121,83,68,1.0],[121,83,69,1.0],[121,83,70,1.0],[121,83,71,1.0],[121,83,72,1.0],[121,83,73,1.0],[121,83,74,1.0],[121,83,75,1.0],[121,83,76,1.0],[121,83,77,1.0],[121,83,78,1.0],[121,83,79,1.0],[121,84,64,1.0],[121,84,65,1.0],[121,84,66,1.0],[121,84,67,1.0],[121,84,68,1.0],[121,84,69,1.0],[121,84,70,1.0],[121,84,71,1.0],[121,84,72,1.0],[121,84,73,1.0],[121,84,74,1.0],[121,84,75,1.0],[121,84,76,1.0],[121,84,77,1.0],[121,84,78,1.0],[121,84,79,1.0],[121,85,64,1.0],[121,85,65,1.0],[121,85,66,1.0],[121,85,67,1.0],[121,85,68,1.0],[121,85,69,1.0],[121,85,70,1.0],[121,85,71,1.0],[121,85,72,1.0],[121,85,73,1.0],[121,85,74,1.0],[121,85,75,1.0],[121,85,76,1.0],[121,85,77,1.0],[121,85,78,1.0],[121,85,79,1.0],[121,86,64,1.0],[121,86,65,1.0],[121,86,66,1.0],[121,86,67,1.0],[121,86,68,1.0],[121,86,69,1.0],[121,86,70,1.0],[121,86,71,1.0],[121,86,72,1.0],[121,86,73,1.0],[121,86,74,1.0],[121,86,75,1.0],[121,86,76,1.0],[121,86,77,1.0],[121,86,78,1.0],[121,86,79,1.0],[121,87,64,1.0],[121,87,65,1.0],[121,87,66,1.0],[121,87,67,1.0],[121,87,68,1.0],[121,87,69,1.0],[121,87,70,1.0],[121,87,71,1.0],[121,87,72,1.0],[121,87,73,1.0],[121,87,74,1.0],[121,87,75,1.0],[121,87,76,1.0],[121,87,77,1.0],[121,87,78,1.0],[121,87,79,1.0],[121,88,64,1.0],[121,88,65,1.0],[121,88,66,1.0],[121,88,67,1.0],[121,88,68,1.0],[121,88,69,1.0],[121,88,70,1.0],[121,88,71,1.0],[121,88,72,1.0],[121,88,73,1.0],[121,88,74,1.0],[121,88,75,1.0],[121,88,76,1.0],[121,88,77,1.0],[121,88,78,1.0],[121,88,79,1.0],[121,89,64,1.0],[121,89,65,1.0],[121,89,66,1.0],[121,89,67,1.0],[121,89,68,1.0],[121,89,69,1.0],[121,89,70,1.0],[121,89,71,1.0],[121,89,72,1.0],[121,89,73,1.0],[121,89,74,1.0],[121,89,75,1.0],[121,89,76,1.0],[121,89,77,1.0],[121,89,78,1.0],[121,89,79,1.0],[121,90,64,1.0],[121,90,65,1.0],[121,90,66,1.0],[121,90,67,1.0],[121,90,68,1.0],[121,90,69,1.0],[121,90,70,1.0],[121,90,71,1.0],[121,90,72,1.0],[121,90,73,1.0],[121,90,74,1.0],[121,90,75,1.0],[121,90,76,1.0],[121,90,77,1.0],[121,90,78,1.0],[121,90,79,1.0],[121,91,64,1.0],[121,91,65,1.0],[121,91,66,1.0],[121,91,67,1.0],[121,91,68,1.0],[121,91,69,1.0],[121,91,70,1.0],[121,91,71,1.0],[121,91,72,1.0],[121,91,73,1.0],[121,91,74,1.0],[121,91,75,1.0],[121,91,76,1.0],[121,91,77,1.0],[121,91,78,1.0],[121,91,79,1.0],[121,92,64,1.0],[121,92,65,1.0],[121,92,66,1.0],[121,92,67,1.0],[121,92,68,1.0],[121,92,69,1.0],[121,92,70,1.0],[121,92,71,1.0],[121,92,72,1.0],[121,92,73,1.0],[121,92,74,1.0],[121,92,75,1.0],[121,92,76,1.0],[121,92,77,1.0],[121,92,78,1.0],[121,92,79,1.0],[121,93,64,1.0],[121,93,65,1.0],[121,93,66,1.0],[121,93,67,1.0],[121,93,68,1.0],[121,93,69,1.0],[121,93,70,1.0],[121,93,71,1.0],[121,93,72,1.0],[121,93,73,1.0],[121,93,74,1.0],[121,93,75,1.0],[121,93,76,1.0],[121,93,77,1.0],[121,93,78,1.0],[121,93,79,1.0],[121,94,64,1.0],[121,94,65,1.0],[121,94,66,1.0],[121,94,67,1.0],[121,94,68,1.0],[121,94,69,1.0],[121,94,70,1.0],[121,94,71,1.0],[121,94,72,1.0],[121,94,73,1.0],[121,94,74,1.0],[121,94,75,1.0],[121,94,76,1.0],[121,94,77,1.0],[121,94,78,1.0],[121,94,79,1.0],[121,95,64,1.0],[121,95,65,1.0],[121,95,66,1.0],[121,95,67,1.0],[121,95,68,1.0],[121,95,69,1.0],[121,95,70,1.0],[121,95,71,1.0],[121,95,72,1.0],[121,95,73,1.0],[121,95,74,1.0],[121,95,75,1.0],[121,95,76,1.0],[121,95,77,1.0],[121,95,78,1.0],[121,95,79,1.0],[121,96,64,1.0],[121,96,65,1.0],[121,96,66,1.0],[121,96,67,1.0],[121,96,68,1.0],[121,96,69,1.0],[121,96,70,1.0],[121,96,71,1.0],[121,96,72,1.0],[121,96,73,1.0],[121,96,74,1.0],[121,96,75,1.0],[121,96,76,1.0],[121,96,77,1.0],[121,96,78,1.0],[121,96,79,1.0],[121,97,64,1.0],[121,97,65,1.0],[121,97,66,1.0],[121,97,67,1.0],[121,97,68,1.0],[121,97,69,1.0],[121,97,70,1.0],[121,97,71,1.0],[121,97,72,1.0],[121,97,73,1.0],[121,97,74,1.0],[121,97,75,1.0],[121,97,76,1.0],[121,97,77,1.0],[121,97,78,1.0],[121,97,79,1.0],[121,98,64,1.0],[121,98,65,1.0],[121,98,66,1.0],[121,98,67,1.0],[121,98,68,1.0],[121,98,69,1.0],[121,98,70,1.0],[121,98,71,1.0],[121,98,72,1.0],[121,98,73,1.0],[121,98,74,1.0],[121,98,75,1.0],[121,98,76,1.0],[121,98,77,1.0],[121,98,78,1.0],[121,98,79,1.0],[121,99,64,1.0],[121,99,65,1.0],[121,99,66,1.0],[121,99,67,1.0],[121,99,68,1.0],[121,99,69,1.0],[121,99,70,1.0],[121,99,71,1.0],[121,99,72,1.0],[121,99,73,1.0],[121,99,74,1.0],[121,99,75,1.0],[121,99,76,1.0],[121,99,77,1.0],[121,99,78,1.0],[121,99,79,1.0],[121,100,64,1.0],[121,100,65,1.0],[121,100,66,1.0],[121,100,67,1.0],[121,100,68,1.0],[121,100,69,1.0],[121,100,70,1.0],[121,100,71,1.0],[121,100,72,1.0],[121,100,73,1.0],[121,100,74,1.0],[121,100,75,1.0],[121,100,76,1.0],[121,100,77,1.0],[121,100,78,1.0],[121,100,79,1.0],[121,101,64,1.0],[121,101,65,1.0],[121,101,66,1.0],[121,101,67,1.0],[121,101,68,1.0],[121,101,69,1.0],[121,101,70,1.0],[121,101,71,1.0],[121,101,72,1.0],[121,101,73,1.0],[121,101,74,1.0],[121,101,75,1.0],[121,101,76,1.0],[121,101,77,1.0],[121,101,78,1.0],[121,101,79,1.0],[121,102,64,1.0],[121,102,65,1.0],[121,102,66,1.0],[121,102,67,1.0],[121,102,68,1.0],[121,102,69,1.0],[121,102,70,1.0],[121,102,71,1.0],[121,102,72,1.0],[121,102,73,1.0],[121,102,74,1.0],[121,102,75,1.0],[121,102,76,1.0],[121,102,77,1.0],[121,102,78,1.0],[121,102,79,1.0],[121,103,64,1.0],[121,103,65,1.0],[121,103,66,1.0],[121,103,67,1.0],[121,103,68,1.0],[121,103,69,1.0],[121,103,70,1.0],[121,103,71,1.0],[121,103,72,1.0],[121,103,73,1.0],[121,103,74,1.0],[121,103,75,1.0],[121,103,76,1.0],[121,103,77,1.0],[121,103,78,1.0],[121,103,79,1.0],[121,104,64,1.0],[121,104,65,1.0],[121,104,66,1.0],[121,104,67,1.0],[121,104,68,1.0],[121,104,69,1.0],[121,104,70,1.0],[121,104,71,1.0],[121,104,72,1.0],[121,104,73,1.0],[121,104,74,1.0],[121,104,75,1.0],[121,104,76,1.0],[121,104,77,1.0],[121,104,78,1.0],[121,104,79,1.0],[121,105,64,1.0],[121,105,65,1.0],[121,105,66,1.0],[121,105,67,1.0],[121,105,68,1.0],[121,105,69,1.0],[121,105,70,1.0],[121,105,71,1.0],[121,105,72,1.0],[121,105,73,1.0],[121,105,74,1.0],[121,105,75,1.0],[121,105,76,1.0],[121,105,77,1.0],[121,105,78,1.0],[121,105,79,1.0],[121,106,64,1.0],[121,106,65,1.0],[121,106,66,1.0],[121,106,67,1.0],[121,106,68,1.0],[121,106,69,1.0],[121,106,70,1.0],[121,106,71,1.0],[121,106,72,1.0],[121,106,73,1.0],[121,106,74,1.0],[121,106,75,1.0],[121,106,76,1.0],[121,106,77,1.0],[121,106,78,1.0],[121,106,79,1.0],[121,107,64,1.0],[121,107,65,1.0],[121,107,66,1.0],[121,107,67,1.0],[121,107,68,1.0],[121,107,69,1.0],[121,107,70,1.0],[121,107,71,1.0],[121,107,72,1.0],[121,107,73,1.0],[121,107,74,1.0],[121,107,75,1.0],[121,107,76,1.0],[121,107,77,1.0],[121,107,78,1.0],[121,107,79,1.0],[121,108,64,1.0],[121,108,65,1.0],[121,108,66,1.0],[121,108,67,1.0],[121,108,68,1.0],[121,108,69,1.0],[121,108,70,1.0],[121,108,71,1.0],[121,108,72,1.0],[121,108,73,1.0],[121,108,74,1.0],[121,108,75,1.0],[121,108,76,1.0],[121,108,77,1.0],[121,108,78,1.0],[121,108,79,1.0],[121,109,64,1.0],[121,109,65,1.0],[121,109,66,1.0],[121,109,67,1.0],[121,109,68,1.0],[121,109,69,1.0],[121,109,70,1.0],[121,109,71,1.0],[121,109,72,1.0],[121,109,73,1.0],[121,109,74,1.0],[121,109,75,1.0],[121,109,76,1.0],[121,109,77,1.0],[121,109,78,1.0],[121,109,79,1.0],[121,110,64,1.0],[121,110,65,1.0],[121,110,66,1.0],[121,110,67,1.0],[121,110,68,1.0],[121,110,69,1.0],[121,110,70,1.0],[121,110,71,1.0],[121,110,72,1.0],[121,110,73,1.0],[121,110,74,1.0],[121,110,75,1.0],[121,110,76,1.0],[121,110,77,1.0],[121,110,78,1.0],[121,110,79,1.0],[121,111,64,1.0],[121,111,65,1.0],[121,111,66,1.0],[121,111,67,1.0],[121,111,68,1.0],[121,111,69,1.0],[121,111,70,1.0],[121,111,71,1.0],[121,111,72,1.0],[121,111,73,1.0],[121,111,74,1.0],[121,111,75,1.0],[121,111,76,1.0],[121,111,77,1.0],[121,111,78,1.0],[121,111,79,1.0],[121,112,64,1.0],[121,112,65,1.0],[121,112,66,1.0],[121,112,67,1.0],[121,112,68,1.0],[121,112,69,1.0],[121,112,70,1.0],[121,112,71,1.0],[121,112,72,1.0],[121,112,73,1.0],[121,112,74,1.0],[121,112,75,1.0],[121,112,76,1.0],[121,112,77,1.0],[121,112,78,1.0],[121,112,79,1.0],[121,113,64,1.0],[121,113,65,1.0],[121,113,66,1.0],[121,113,67,1.0],[121,113,68,1.0],[121,113,69,1.0],[121,113,70,1.0],[121,113,71,1.0],[121,113,72,1.0],[121,113,73,1.0],[121,113,74,1.0],[121,113,75,1.0],[121,113,76,1.0],[121,113,77,1.0],[121,113,78,1.0],[121,113,79,1.0],[121,114,64,1.0],[121,114,65,1.0],[121,114,66,1.0],[121,114,67,1.0],[121,114,68,1.0],[121,114,69,1.0],[121,114,70,1.0],[121,114,71,1.0],[121,114,72,1.0],[121,114,73,1.0],[121,114,74,1.0],[121,114,75,1.0],[121,114,76,1.0],[121,114,77,1.0],[121,114,78,1.0],[121,114,79,1.0],[121,115,64,1.0],[121,115,65,1.0],[121,115,66,1.0],[121,115,67,1.0],[121,115,68,1.0],[121,115,69,1.0],[121,115,70,1.0],[121,115,71,1.0],[121,115,72,1.0],[121,115,73,1.0],[121,115,74,1.0],[121,115,75,1.0],[121,115,76,1.0],[121,115,77,1.0],[121,115,78,1.0],[121,115,79,1.0],[121,116,64,1.0],[121,116,65,1.0],[121,116,66,1.0],[121,116,67,1.0],[121,116,68,1.0],[121,116,69,1.0],[121,116,70,1.0],[121,116,71,1.0],[121,116,72,1.0],[121,116,73,1.0],[121,116,74,1.0],[121,116,75,1.0],[121,116,76,1.0],[121,116,77,1.0],[121,116,78,1.0],[121,116,79,1.0],[121,117,64,1.0],[121,117,65,1.0],[121,117,66,1.0],[121,117,67,1.0],[121,117,68,1.0],[121,117,69,1.0],[121,117,70,1.0],[121,117,71,1.0],[121,117,72,1.0],[121,117,73,1.0],[121,117,74,1.0],[121,117,75,1.0],[121,117,76,1.0],[121,117,77,1.0],[121,117,78,1.0],[121,117,79,1.0],[121,118,64,1.0],[121,118,65,1.0],[121,118,66,1.0],[121,118,67,1.0],[121,118,68,1.0],[121,118,69,1.0],[121,118,70,1.0],[121,118,71,1.0],[121,118,72,1.0],[121,118,73,1.0],[121,118,74,1.0],[121,118,75,1.0],[121,118,76,1.0],[121,118,77,1.0],[121,118,78,1.0],[121,118,79,1.0],[121,119,64,1.0],[121,119,65,1.0],[121,119,66,1.0],[121,119,67,1.0],[121,119,68,1.0],[121,119,69,1.0],[121,119,70,1.0],[121,119,71,1.0],[121,119,72,1.0],[121,119,73,1.0],[121,119,74,1.0],[121,119,75,1.0],[121,119,76,1.0],[121,119,77,1.0],[121,119,78,1.0],[121,119,79,1.0],[121,120,64,1.0],[121,120,65,1.0],[121,120,66,1.0],[121,120,67,1.0],[121,120,68,1.0],[121,120,69,1.0],[121,120,70,1.0],[121,120,71,1.0],[121,120,72,1.0],[121,120,73,1.0],[121,120,74,1.0],[121,120,75,1.0],[121,120,76,1.0],[121,120,77,1.0],[121,120,78,1.0],[121,120,79,1.0],[121,121,64,1.0],[121,121,65,1.0],[121,121,66,1.0],[121,121,67,1.0],[121,121,68,1.0],[121,121,69,1.0],[121,121,70,1.0],[121,121,71,1.0],[121,121,72,1.0],[121,121,73,1.0],[121,121,74,1.0],[121,121,75,1.0],[121,121,76,1.0],[121,121,77,1.0],[121,121,78,1.0],[121,121,79,1.0],[121,122,64,1.0],[121,122,65,1.0],[121,122,66,1.0],[121,122,67,1.0],[121,122,68,1.0],[121,122,69,1.0],[121,122,70,1.0],[121,122,71,1.0],[121,122,72,1.0],[121,122,73,1.0],[121,122,74,1.0],[121,122,75,1.0],[121,122,76,1.0],[121,122,77,1.0],[121,122,78,1.0],[121,122,79,1.0],[121,123,64,1.0],[121,123,65,1.0],[121,123,66,1.0],[121,123,67,1.0],[121,123,68,1.0],[121,123,69,1.0],[121,123,70,1.0],[121,123,71,1.0],[121,123,72,1.0],[121,123,73,1.0],[121,123,74,1.0],[121,123,75,1.0],[121,123,76,1.0],[121,123,77,1.0],[121,123,78,1.0],[121,123,79,1.0],[121,124,64,1.0],[121,124,65,1.0],[121,124,66,1.0],[121,124,67,1.0],[121,124,68,1.0],[121,124,69,1.0],[121,124,70,1.0],[121,124,71,1.0],[121,124,72,1.0],[121,124,73,1.0],[121,124,74,1.0],[121,124,75,1.0],[121,124,76,1.0],[121,124,77,1.0],[121,124,78,1.0],[121,124,79,1.0],[121,125,64,1.0],[121,125,65,1.0],[121,125,66,1.0],[121,125,67,1.0],[121,125,68,1.0],[121,125,69,1.0],[121,125,70,1.0],[121,125,71,1.0],[121,125,72,1.0],[121,125,73,1.0],[121,125,74,1.0],[121,125,75,1.0],[121,125,76,1.0],[121,125,77,1.0],[121,125,78,1.0],[121,125,79,1.0],[121,126,64,1.0],[121,126,65,1.0],[121,126,66,1.0],[121,126,67,1.0],[121,126,68,1.0],[121,126,69,1.0],[121,126,70,1.0],[121,126,71,1.0],[121,126,72,1.0],[121,126,73,1.0],[121,126,74,1.0],[121,126,75,1.0],[121,126,76,1.0],[121,126,77,1.0],[121,126,78,1.0],[121,126,79,1.0],[121,127,64,1.0],[121,127,65,1.0],[121,127,66,1.0],[121,127,67,1.0],[121,127,68,1.0],[121,127,69,1.0],[121,127,70,1.0],[121,127,71,1.0],[121,127,72,1.0],[121,127,73,1.0],[121,127,74,1.0],[121,127,75,1.0],[121,127,76,1.0],[121,127,77,1.0],[121,127,78,1.0],[121,127,79,1.0],[121,128,64,1.0],[121,128,65,1.0],[121,128,66,1.0],[121,128,67,1.0],[121,128,68,1.0],[121,128,69,1.0],[121,128,70,1.0],[121,128,71,1.0],[121,128,72,1.0],[121,128,73,1.0],[121,128,74,1.0],[121,128,75,1.0],[121,128,76,1.0],[121,128,77,1.0],[121,128,78,1.0],[121,128,79,1.0],[121,129,64,1.0],[121,129,65,1.0],[121,129,66,1.0],[121,129,67,1.0],[121,129,68,1.0],[121,129,69,1.0],[121,129,70,1.0],[121,129,71,1.0],[121,129,72,1.0],[121,129,73,1.0],[121,129,74,1.0],[121,129,75,1.0],[121,129,76,1.0],[121,129,77,1.0],[121,129,78,1.0],[121,129,79,1.0],[121,130,64,1.0],[121,130,65,1.0],[121,130,66,1.0],[121,130,67,1.0],[121,130,68,1.0],[121,130,69,1.0],[121,130,70,1.0],[121,130,71,1.0],[121,130,72,1.0],[121,130,73,1.0],[121,130,74,1.0],[121,130,75,1.0],[121,130,76,1.0],[121,130,77,1.0],[121,130,78,1.0],[121,130,79,1.0],[121,131,64,1.0],[121,131,65,1.0],[121,131,66,1.0],[121,131,67,1.0],[121,131,68,1.0],[121,131,69,1.0],[121,131,70,1.0],[121,131,71,1.0],[121,131,72,1.0],[121,131,73,1.0],[121,131,74,1.0],[121,131,75,1.0],[121,131,76,1.0],[121,131,77,1.0],[121,131,78,1.0],[121,131,79,1.0],[121,132,64,1.0],[121,132,65,1.0],[121,132,66,1.0],[121,132,67,1.0],[121,132,68,1.0],[121,132,69,1.0],[121,132,70,1.0],[121,132,71,1.0],[121,132,72,1.0],[121,132,73,1.0],[121,132,74,1.0],[121,132,75,1.0],[121,132,76,1.0],[121,132,77,1.0],[121,132,78,1.0],[121,132,79,1.0],[121,133,64,1.0],[121,133,65,1.0],[121,133,66,1.0],[121,133,67,1.0],[121,133,68,1.0],[121,133,69,1.0],[121,133,70,1.0],[121,133,71,1.0],[121,133,72,1.0],[121,133,73,1.0],[121,133,74,1.0],[121,133,75,1.0],[121,133,76,1.0],[121,133,77,1.0],[121,133,78,1.0],[121,133,79,1.0],[121,134,64,1.0],[121,134,65,1.0],[121,134,66,1.0],[121,134,67,1.0],[121,134,68,1.0],[121,134,69,1.0],[121,134,70,1.0],[121,134,71,1.0],[121,134,72,1.0],[121,134,73,1.0],[121,134,74,1.0],[121,134,75,1.0],[121,134,76,1.0],[121,134,77,1.0],[121,134,78,1.0],[121,134,79,1.0],[121,135,64,1.0],[121,135,65,1.0],[121,135,66,1.0],[121,135,67,1.0],[121,135,68,1.0],[121,135,69,1.0],[121,135,70,1.0],[121,135,71,1.0],[121,135,72,1.0],[121,135,73,1.0],[121,135,74,1.0],[121,135,75,1.0],[121,135,76,1.0],[121,135,77,1.0],[121,135,78,1.0],[121,135,79,1.0],[121,136,64,1.0],[121,136,65,1.0],[121,136,66,1.0],[121,136,67,1.0],[121,136,68,1.0],[121,136,69,1.0],[121,136,70,1.0],[121,136,71,1.0],[121,136,72,1.0],[121,136,73,1.0],[121,136,74,1.0],[121,136,75,1.0],[121,136,76,1.0],[121,136,77,1.0],[121,136,78,1.0],[121,136,79,1.0],[121,137,64,1.0],[121,137,65,1.0],[121,137,66,1.0],[121,137,67,1.0],[121,137,68,1.0],[121,137,69,1.0],[121,137,70,1.0],[121,137,71,1.0],[121,137,72,1.0],[121,137,73,1.0],[121,137,74,1.0],[121,137,75,1.0],[121,137,76,1.0],[121,137,77,1.0],[121,137,78,1.0],[121,137,79,1.0],[121,138,64,1.0],[121,138,65,1.0],[121,138,66,1.0],[121,138,67,1.0],[121,138,68,1.0],[121,138,69,1.0],[121,138,70,1.0],[121,138,71,1.0],[121,138,72,1.0],[121,138,73,1.0],[121,138,74,1.0],[121,138,75,1.0],[121,138,76,1.0],[121,138,77,1.0],[121,138,78,1.0],[121,138,79,1.0],[121,139,64,1.0],[121,139,65,1.0],[121,139,66,1.0],[121,139,67,1.0],[121,139,68,1.0],[121,139,69,1.0],[121,139,70,1.0],[121,139,71,1.0],[121,139,72,1.0],[121,139,73,1.0],[121,139,74,1.0],[121,139,75,1.0],[121,139,76,1.0],[121,139,77,1.0],[121,139,78,1.0],[121,139,79,1.0],[121,140,64,1.0],[121,140,65,1.0],[121,140,66,1.0],[121,140,67,1.0],[121,140,68,1.0],[121,140,69,1.0],[121,140,70,1.0],[121,140,71,1.0],[121,140,72,1.0],[121,140,73,1.0],[121,140,74,1.0],[121,140,75,1.0],[121,140,76,1.0],[121,140,77,1.0],[121,140,78,1.0],[121,140,79,1.0],[121,141,64,1.0],[121,141,65,1.0],[121,141,66,1.0],[121,141,67,1.0],[121,141,68,1.0],[121,141,69,1.0],[121,141,70,1.0],[121,141,71,1.0],[121,141,72,1.0],[121,141,73,1.0],[121,141,74,1.0],[121,141,75,1.0],[121,141,76,1.0],[121,141,77,1.0],[121,141,78,1.0],[121,141,79,1.0],[121,142,64,1.0],[121,142,65,1.0],[121,142,66,1.0],[121,142,67,1.0],[121,142,68,1.0],[121,142,69,1.0],[121,142,70,1.0],[121,142,71,1.0],[121,142,72,1.0],[121,142,73,1.0],[121,142,74,1.0],[121,142,75,1.0],[121,142,76,1.0],[121,142,77,1.0],[121,142,78,1.0],[121,142,79,1.0],[121,143,64,1.0],[121,143,65,1.0],[121,143,66,1.0],[121,143,67,1.0],[121,143,68,1.0],[121,143,69,1.0],[121,143,70,1.0],[121,143,71,1.0],[121,143,72,1.0],[121,143,73,1.0],[121,143,74,1.0],[121,143,75,1.0],[121,143,76,1.0],[121,143,77,1.0],[121,143,78,1.0],[121,143,79,1.0],[121,144,64,1.0],[121,144,65,1.0],[121,144,66,1.0],[121,144,67,1.0],[121,144,68,1.0],[121,144,69,1.0],[121,144,70,1.0],[121,144,71,1.0],[121,144,72,1.0],[121,144,73,1.0],[121,144,74,1.0],[121,144,75,1.0],[121,144,76,1.0],[121,144,77,1.0],[121,144,78,1.0],[121,144,79,1.0],[121,145,64,1.0],[121,145,65,1.0],[121,145,66,1.0],[121,145,67,1.0],[121,145,68,1.0],[121,145,69,1.0],[121,145,70,1.0],[121,145,71,1.0],[121,145,72,1.0],[121,145,73,1.0],[121,145,74,1.0],[121,145,75,1.0],[121,145,76,1.0],[121,145,77,1.0],[121,145,78,1.0],[121,145,79,1.0],[121,146,64,1.0],[121,146,65,1.0],[121,146,66,1.0],[121,146,67,1.0],[121,146,68,1.0],[121,146,69,1.0],[121,146,70,1.0],[121,146,71,1.0],[121,146,72,1.0],[121,146,73,1.0],[121,146,74,1.0],[121,146,75,1.0],[121,146,76,1.0],[121,146,77,1.0],[121,146,78,1.0],[121,146,79,1.0],[121,147,64,1.0],[121,147,65,1.0],[121,147,66,1.0],[121,147,67,1.0],[121,147,68,1.0],[121,147,69,1.0],[121,147,70,1.0],[121,147,71,1.0],[121,147,72,1.0],[121,147,73,1.0],[121,147,74,1.0],[121,147,75,1.0],[121,147,76,1.0],[121,147,77,1.0],[121,147,78,1.0],[121,147,79,1.0],[121,148,64,1.0],[121,148,65,1.0],[121,148,66,1.0],[121,148,67,1.0],[121,148,68,1.0],[121,148,69,1.0],[121,148,70,1.0],[121,148,71,1.0],[121,148,72,1.0],[121,148,73,1.0],[121,148,74,1.0],[121,148,75,1.0],[121,148,76,1.0],[121,148,77,1.0],[121,148,78,1.0],[121,148,79,1.0],[121,149,64,1.0],[121,149,65,1.0],[121,149,66,1.0],[121,149,67,1.0],[121,149,68,1.0],[121,149,69,1.0],[121,149,70,1.0],[121,149,71,1.0],[121,149,72,1.0],[121,149,73,1.0],[121,149,74,1.0],[121,149,75,1.0],[121,149,76,1.0],[121,149,77,1.0],[121,149,78,1.0],[121,149,79,1.0],[121,150,64,1.0],[121,150,65,1.0],[121,150,66,1.0],[121,150,67,1.0],[121,150,68,1.0],[121,150,69,1.0],[121,150,70,1.0],[121,150,71,1.0],[121,150,72,1.0],[121,150,73,1.0],[121,150,74,1.0],[121,150,75,1.0],[121,150,76,1.0],[121,150,77,1.0],[121,150,78,1.0],[121,150,79,1.0],[121,151,64,1.0],[121,151,65,1.0],[121,151,66,1.0],[121,151,67,1.0],[121,151,68,1.0],[121,151,69,1.0],[121,151,70,1.0],[121,151,71,1.0],[121,151,72,1.0],[121,151,73,1.0],[121,151,74,1.0],[121,151,75,1.0],[121,151,76,1.0],[121,151,77,1.0],[121,151,78,1.0],[121,151,79,1.0],[121,152,64,1.0],[121,152,65,1.0],[121,152,66,1.0],[121,152,67,1.0],[121,152,68,1.0],[121,152,69,1.0],[121,152,70,1.0],[121,152,71,1.0],[121,152,72,1.0],[121,152,73,1.0],[121,152,74,1.0],[121,152,75,1.0],[121,152,76,1.0],[121,152,77,1.0],[121,152,78,1.0],[121,152,79,1.0],[121,153,64,1.0],[121,153,65,1.0],[121,153,66,1.0],[121,153,67,1.0],[121,153,68,1.0],[121,153,69,1.0],[121,153,70,1.0],[121,153,71,1.0],[121,153,72,1.0],[121,153,73,1.0],[121,153,74,1.0],[121,153,75,1.0],[121,153,76,1.0],[121,153,77,1.0],[121,153,78,1.0],[121,153,79,1.0],[121,154,64,1.0],[121,154,65,1.0],[121,154,66,1.0],[121,154,67,1.0],[121,154,68,1.0],[121,154,69,1.0],[121,154,70,1.0],[121,154,71,1.0],[121,154,72,1.0],[121,154,73,1.0],[121,154,74,1.0],[121,154,75,1.0],[121,154,76,1.0],[121,154,77,1.0],[121,154,78,1.0],[121,154,79,1.0],[121,155,64,1.0],[121,155,65,1.0],[121,155,66,1.0],[121,155,67,1.0],[121,155,68,1.0],[121,155,69,1.0],[121,155,70,1.0],[121,155,71,1.0],[121,155,72,1.0],[121,155,73,1.0],[121,155,74,1.0],[121,155,75,1.0],[121,155,76,1.0],[121,155,77,1.0],[121,155,78,1.0],[121,155,79,1.0],[121,156,64,1.0],[121,156,65,1.0],[121,156,66,1.0],[121,156,67,1.0],[121,156,68,1.0],[121,156,69,1.0],[121,156,70,1.0],[121,156,71,1.0],[121,156,72,1.0],[121,156,73,1.0],[121,156,74,1.0],[121,156,75,1.0],[121,156,76,1.0],[121,156,77,1.0],[121,156,78,1.0],[121,156,79,1.0],[121,157,64,1.0],[121,157,65,1.0],[121,157,66,1.0],[121,157,67,1.0],[121,157,68,1.0],[121,157,69,1.0],[121,157,70,1.0],[121,157,71,1.0],[121,157,72,1.0],[121,157,73,1.0],[121,157,74,1.0],[121,157,75,1.0],[121,157,76,1.0],[121,157,77,1.0],[121,157,78,1.0],[121,157,79,1.0],[121,158,64,1.0],[121,158,65,1.0],[121,158,66,1.0],[121,158,67,1.0],[121,158,68,1.0],[121,158,69,1.0],[121,158,70,1.0],[121,158,71,1.0],[121,158,72,1.0],[121,158,73,1.0],[121,158,74,1.0],[121,158,75,1.0],[121,158,76,1.0],[121,158,77,1.0],[121,158,78,1.0],[121,158,79,1.0],[121,159,64,1.0],[121,159,65,1.0],[121,159,66,1.0],[121,159,67,1.0],[121,159,68,1.0],[121,159,69,1.0],[121,159,70,1.0],[121,159,71,1.0],[121,159,72,1.0],[121,159,73,1.0],[121,159,74,1.0],[121,159,75,1.0],[121,159,76,1.0],[121,159,77,1.0],[121,159,78,1.0],[121,159,79,1.0],[121,160,64,1.0],[121,160,65,1.0],[121,160,66,1.0],[121,160,67,1.0],[121,160,68,1.0],[121,160,69,1.0],[121,160,70,1.0],[121,160,71,1.0],[121,160,72,1.0],[121,160,73,1.0],[121,160,74,1.0],[121,160,75,1.0],[121,160,76,1.0],[121,160,77,1.0],[121,160,78,1.0],[121,160,79,1.0],[121,161,64,1.0],[121,161,65,1.0],[121,161,66,1.0],[121,161,67,1.0],[121,161,68,1.0],[121,161,69,1.0],[121,161,70,1.0],[121,161,71,1.0],[121,161,72,1.0],[121,161,73,1.0],[121,161,74,1.0],[121,161,75,1.0],[121,161,76,1.0],[121,161,77,1.0],[121,161,78,1.0],[121,161,79,1.0],[121,162,64,1.0],[121,162,65,1.0],[121,162,66,1.0],[121,162,67,1.0],[121,162,68,1.0],[121,162,69,1.0],[121,162,70,1.0],[121,162,71,1.0],[121,162,72,1.0],[121,162,73,1.0],[121,162,74,1.0],[121,162,75,1.0],[121,162,76,1.0],[121,162,77,1.0],[121,162,78,1.0],[121,162,79,1.0],[121,163,64,1.0],[121,163,65,1.0],[121,163,66,1.0],[121,163,67,1.0],[121,163,68,1.0],[121,163,69,1.0],[121,163,70,1.0],[121,163,71,1.0],[121,163,72,1.0],[121,163,73,1.0],[121,163,74,1.0],[121,163,75,1.0],[121,163,76,1.0],[121,163,77,1.0],[121,163,78,1.0],[121,163,79,1.0],[121,164,64,1.0],[121,164,65,1.0],[121,164,66,1.0],[121,164,67,1.0],[121,164,68,1.0],[121,164,69,1.0],[121,164,70,1.0],[121,164,71,1.0],[121,164,72,1.0],[121,164,73,1.0],[121,164,74,1.0],[121,164,75,1.0],[121,164,76,1.0],[121,164,77,1.0],[121,164,78,1.0],[121,164,79,1.0],[121,165,64,1.0],[121,165,65,1.0],[121,165,66,1.0],[121,165,67,1.0],[121,165,68,1.0],[121,165,69,1.0],[121,165,70,1.0],[121,165,71,1.0],[121,165,72,1.0],[121,165,73,1.0],[121,165,74,1.0],[121,165,75,1.0],[121,165,76,1.0],[121,165,77,1.0],[121,165,78,1.0],[121,165,79,1.0],[121,166,64,1.0],[121,166,65,1.0],[121,166,66,1.0],[121,166,67,1.0],[121,166,68,1.0],[121,166,69,1.0],[121,166,70,1.0],[121,166,71,1.0],[121,166,72,1.0],[121,166,73,1.0],[121,166,74,1.0],[121,166,75,1.0],[121,166,76,1.0],[121,166,77,1.0],[121,166,78,1.0],[121,166,79,1.0],[121,167,64,1.0],[121,167,65,1.0],[121,167,66,1.0],[121,167,67,1.0],[121,167,68,1.0],[121,167,69,1.0],[121,167,70,1.0],[121,167,71,1.0],[121,167,72,1.0],[121,167,73,1.0],[121,167,74,1.0],[121,167,75,1.0],[121,167,76,1.0],[121,167,77,1.0],[121,167,78,1.0],[121,167,79,1.0],[121,168,64,1.0],[121,168,65,1.0],[121,168,66,1.0],[121,168,67,1.0],[121,168,68,1.0],[121,168,69,1.0],[121,168,70,1.0],[121,168,71,1.0],[121,168,72,1.0],[121,168,73,1.0],[121,168,74,1.0],[121,168,75,1.0],[121,168,76,1.0],[121,168,77,1.0],[121,168,78,1.0],[121,168,79,1.0],[121,169,64,1.0],[121,169,65,1.0],[121,169,66,1.0],[121,169,67,1.0],[121,169,68,1.0],[121,169,69,1.0],[121,169,70,1.0],[121,169,71,1.0],[121,169,72,1.0],[121,169,73,1.0],[121,169,74,1.0],[121,169,75,1.0],[121,169,76,1.0],[121,169,77,1.0],[121,169,78,1.0],[121,169,79,1.0],[121,170,64,1.0],[121,170,65,1.0],[121,170,66,1.0],[121,170,67,1.0],[121,170,68,1.0],[121,170,69,1.0],[121,170,70,1.0],[121,170,71,1.0],[121,170,72,1.0],[121,170,73,1.0],[121,170,74,1.0],[121,170,75,1.0],[121,170,76,1.0],[121,170,77,1.0],[121,170,78,1.0],[121,170,79,1.0],[121,171,64,1.0],[121,171,65,1.0],[121,171,66,1.0],[121,171,67,1.0],[121,171,68,1.0],[121,171,69,1.0],[121,171,70,1.0],[121,171,71,1.0],[121,171,72,1.0],[121,171,73,1.0],[121,171,74,1.0],[121,171,75,1.0],[121,171,76,1.0],[121,171,77,1.0],[121,171,78,1.0],[121,171,79,1.0],[121,172,64,1.0],[121,172,65,1.0],[121,172,66,1.0],[121,172,67,1.0],[121,172,68,1.0],[121,172,69,1.0],[121,172,70,1.0],[121,172,71,1.0],[121,172,72,1.0],[121,172,73,1.0],[121,172,74,1.0],[121,172,75,1.0],[121,172,76,1.0],[121,172,77,1.0],[121,172,78,1.0],[121,172,79,1.0],[121,173,64,1.0],[121,173,65,1.0],[121,173,66,1.0],[121,173,67,1.0],[121,173,68,1.0],[121,173,69,1.0],[121,173,70,1.0],[121,173,71,1.0],[121,173,72,1.0],[121,173,73,1.0],[121,173,74,1.0],[121,173,75,1.0],[121,173,76,1.0],[121,173,77,1.0],[121,173,78,1.0],[121,173,79,1.0],[121,174,64,1.0],[121,174,65,1.0],[121,174,66,1.0],[121,174,67,1.0],[121,174,68,1.0],[121,174,69,1.0],[121,174,70,1.0],[121,174,71,1.0],[121,174,72,1.0],[121,174,73,1.0],[121,174,74,1.0],[121,174,75,1.0],[121,174,76,1.0],[121,174,77,1.0],[121,174,78,1.0],[121,174,79,1.0],[121,175,64,1.0],[121,175,65,1.0],[121,175,66,1.0],[121,175,67,1.0],[121,175,68,1.0],[121,175,69,1.0],[121,175,70,1.0],[121,175,71,1.0],[121,175,72,1.0],[121,175,73,1.0],[121,175,74,1.0],[121,175,75,1.0],[121,175,76,1.0],[121,175,77,1.0],[121,175,78,1.0],[121,175,79,1.0],[121,176,64,1.0],[121,176,65,1.0],[121,176,66,1.0],[121,176,67,1.0],[121,176,68,1.0],[121,176,69,1.0],[121,176,70,1.0],[121,176,71,1.0],[121,176,72,1.0],[121,176,73,1.0],[121,176,74,1.0],[121,176,75,1.0],[121,176,76,1.0],[121,176,77,1.0],[121,176,78,1.0],[121,176,79,1.0],[121,177,64,1.0],[121,177,65,1.0],[121,177,66,1.0],[121,177,67,1.0],[121,177,68,1.0],[121,177,69,1.0],[121,177,70,1.0],[121,177,71,1.0],[121,177,72,1.0],[121,177,73,1.0],[121,177,74,1.0],[121,177,75,1.0],[121,177,76,1.0],[121,177,77,1.0],[121,177,78,1.0],[121,177,79,1.0],[121,178,64,1.0],[121,178,65,1.0],[121,178,66,1.0],[121,178,67,1.0],[121,178,68,1.0],[121,178,69,1.0],[121,178,70,1.0],[121,178,71,1.0],[121,178,72,1.0],[121,178,73,1.0],[121,178,74,1.0],[121,178,75,1.0],[121,178,76,1.0],[121,178,77,1.0],[121,178,78,1.0],[121,178,79,1.0],[121,179,64,1.0],[121,179,65,1.0],[121,179,66,1.0],[121,179,67,1.0],[121,179,68,1.0],[121,179,69,1.0],[121,179,70,1.0],[121,179,71,1.0],[121,179,72,1.0],[121,179,73,1.0],[121,179,74,1.0],[121,179,75,1.0],[121,179,76,1.0],[121,179,77,1.0],[121,179,78,1.0],[121,179,79,1.0],[121,180,64,1.0],[121,180,65,1.0],[121,180,66,1.0],[121,180,67,1.0],[121,180,68,1.0],[121,180,69,1.0],[121,180,70,1.0],[121,180,71,1.0],[121,180,72,1.0],[121,180,73,1.0],[121,180,74,1.0],[121,180,75,1.0],[121,180,76,1.0],[121,180,77,1.0],[121,180,78,1.0],[121,180,79,1.0],[121,181,64,1.0],[121,181,65,1.0],[121,181,66,1.0],[121,181,67,1.0],[121,181,68,1.0],[121,181,69,1.0],[121,181,70,1.0],[121,181,71,1.0],[121,181,72,1.0],[121,181,73,1.0],[121,181,74,1.0],[121,181,75,1.0],[121,181,76,1.0],[121,181,77,1.0],[121,181,78,1.0],[121,181,79,1.0],[121,182,64,1.0],[121,182,65,1.0],[121,182,66,1.0],[121,182,67,1.0],[121,182,68,1.0],[121,182,69,1.0],[121,182,70,1.0],[121,182,71,1.0],[121,182,72,1.0],[121,182,73,1.0],[121,182,74,1.0],[121,182,75,1.0],[121,182,76,1.0],[121,182,77,1.0],[121,182,78,1.0],[121,182,79,1.0],[121,183,64,1.0],[121,183,65,1.0],[121,183,66,1.0],[121,183,67,1.0],[121,183,68,1.0],[121,183,69,1.0],[121,183,70,1.0],[121,183,71,1.0],[121,183,72,1.0],[121,183,73,1.0],[121,183,74,1.0],[121,183,75,1.0],[121,183,76,1.0],[121,183,77,1.0],[121,183,78,1.0],[121,183,79,1.0],[121,184,64,1.0],[121,184,65,1.0],[121,184,66,1.0],[121,184,67,1.0],[121,184,68,1.0],[121,184,69,1.0],[121,184,70,1.0],[121,184,71,1.0],[121,184,72,1.0],[121,184,73,1.0],[121,184,74,1.0],[121,184,75,1.0],[121,184,76,1.0],[121,184,77,1.0],[121,184,78,1.0],[121,184,79,1.0],[121,185,64,1.0],[121,185,65,1.0],[121,185,66,1.0],[121,185,67,1.0],[121,185,68,1.0],[121,185,69,1.0],[121,185,70,1.0],[121,185,71,1.0],[121,185,72,1.0],[121,185,73,1.0],[121,185,74,1.0],[121,185,75,1.0],[121,185,76,1.0],[121,185,77,1.0],[121,185,78,1.0],[121,185,79,1.0],[121,186,64,1.0],[121,186,65,1.0],[121,186,66,1.0],[121,186,67,1.0],[121,186,68,1.0],[121,186,69,1.0],[121,186,70,1.0],[121,186,71,1.0],[121,186,72,1.0],[121,186,73,1.0],[121,186,74,1.0],[121,186,75,1.0],[121,186,76,1.0],[121,186,77,1.0],[121,186,78,1.0],[121,186,79,1.0],[121,187,64,1.0],[121,187,65,1.0],[121,187,66,1.0],[121,187,67,1.0],[121,187,68,1.0],[121,187,69,1.0],[121,187,70,1.0],[121,187,71,1.0],[121,187,72,1.0],[121,187,73,1.0],[121,187,74,1.0],[121,187,75,1.0],[121,187,76,1.0],[121,187,77,1.0],[121,187,78,1.0],[121,187,79,1.0],[121,188,64,1.0],[121,188,65,1.0],[121,188,66,1.0],[121,188,67,1.0],[121,188,68,1.0],[121,188,69,1.0],[121,188,70,1.0],[121,188,71,1.0],[121,188,72,1.0],[121,188,73,1.0],[121,188,74,1.0],[121,188,75,1.0],[121,188,76,1.0],[121,188,77,1.0],[121,188,78,1.0],[121,188,79,1.0],[121,189,64,1.0],[121,189,65,1.0],[121,189,66,1.0],[121,189,67,1.0],[121,189,68,1.0],[121,189,69,1.0],[121,189,70,1.0],[121,189,71,1.0],[121,189,72,1.0],[121,189,73,1.0],[121,189,74,1.0],[121,189,75,1.0],[121,189,76,1.0],[121,189,77,1.0],[121,189,78,1.0],[121,189,79,1.0],[121,190,64,1.0],[121,190,65,1.0],[121,190,66,1.0],[121,190,67,1.0],[121,190,68,1.0],[121,190,69,1.0],[121,190,70,1.0],[121,190,71,1.0],[121,190,72,1.0],[121,190,73,1.0],[121,190,74,1.0],[121,190,75,1.0],[121,190,76,1.0],[121,190,77,1.0],[121,190,78,1.0],[121,190,79,1.0],[121,191,64,1.0],[121,191,65,1.0],[121,191,66,1.0],[121,191,67,1.0],[121,191,68,1.0],[121,191,69,1.0],[121,191,70,1.0],[121,191,71,1.0],[121,191,72,1.0],[121,191,73,1.0],[121,191,74,1.0],[121,191,75,1.0],[121,191,76,1.0],[121,191,77,1.0],[121,191,78,1.0],[121,191,79,1.0],[121,192,64,1.0],[121,192,65,1.0],[121,192,66,1.0],[121,192,67,1.0],[121,192,68,1.0],[121,192,69,1.0],[121,192,70,1.0],[121,192,71,1.0],[121,192,72,1.0],[121,192,73,1.0],[121,192,74,1.0],[121,192,75,1.0],[121,192,76,1.0],[121,192,77,1.0],[121,192,78,1.0],[121,192,79,1.0],[121,193,64,1.0],[121,193,65,1.0],[121,193,66,1.0],[121,193,67,1.0],[121,193,68,1.0],[121,193,69,1.0],[121,193,70,1.0],[121,193,71,1.0],[121,193,72,1.0],[121,193,73,1.0],[121,193,74,1.0],[121,193,75,1.0],[121,193,76,1.0],[121,193,77,1.0],[121,193,78,1.0],[121,193,79,1.0],[121,194,64,1.0],[121,194,65,1.0],[121,194,66,1.0],[121,194,67,1.0],[121,194,68,1.0],[121,194,69,1.0],[121,194,70,1.0],[121,194,71,1.0],[121,194,72,1.0],[121,194,73,1.0],[121,194,74,1.0],[121,194,75,1.0],[121,194,76,1.0],[121,194,77,1.0],[121,194,78,1.0],[121,194,79,1.0],[121,195,64,1.0],[121,195,65,1.0],[121,195,66,1.0],[121,195,67,1.0],[121,195,68,1.0],[121,195,69,1.0],[121,195,70,1.0],[121,195,71,1.0],[121,195,72,1.0],[121,195,73,1.0],[121,195,74,1.0],[121,195,75,1.0],[121,195,76,1.0],[121,195,77,1.0],[121,195,78,1.0],[121,195,79,1.0],[121,196,64,1.0],[121,196,65,1.0],[121,196,66,1.0],[121,196,67,1.0],[121,196,68,1.0],[121,196,69,1.0],[121,196,70,1.0],[121,196,71,1.0],[121,196,72,1.0],[121,196,73,1.0],[121,196,74,1.0],[121,196,75,1.0],[121,196,76,1.0],[121,196,77,1.0],[121,196,78,1.0],[121,196,79,1.0],[121,197,64,1.0],[121,197,65,1.0],[121,197,66,1.0],[121,197,67,1.0],[121,197,68,1.0],[121,197,69,1.0],[121,197,70,1.0],[121,197,71,1.0],[121,197,72,1.0],[121,197,73,1.0],[121,197,74,1.0],[121,197,75,1.0],[121,197,76,1.0],[121,197,77,1.0],[121,197,78,1.0],[121,197,79,1.0],[121,198,64,1.0],[121,198,65,1.0],[121,198,66,1.0],[121,198,67,1.0],[121,198,68,1.0],[121,198,69,1.0],[121,198,70,1.0],[121,198,71,1.0],[121,198,72,1.0],[121,198,73,1.0],[121,198,74,1.0],[121,198,75,1.0],[121,198,76,1.0],[121,198,77,1.0],[121,198,78,1.0],[121,198,79,1.0],[121,199,64,1.0],[121,199,65,1.0],[121,199,66,1.0],[121,199,67,1.0],[121,199,68,1.0],[121,199,69,1.0],[121,199,70,1.0],[121,199,71,1.0],[121,199,72,1.0],[121,199,73,1.0],[121,199,74,1.0],[121,199,75,1.0],[121,199,76,1.0],[121,199,77,1.0],[121,199,78,1.0],[121,199,79,1.0],[121,200,64,1.0],[121,200,65,1.0],[121,200,66,1.0],[121,200,67,1.0],[121,200,68,1.0],[121,200,69,1.0],[121,200,70,1.0],[121,200,71,1.0],[121,200,72,1.0],[121,200,73,1.0],[121,200,74,1.0],[121,200,75,1.0],[121,200,76,1.0],[121,200,77,1.0],[121,200,78,1.0],[121,200,79,1.0],[121,201,64,1.0],[121,201,65,1.0],[121,201,66,1.0],[121,201,67,1.0],[121,201,68,1.0],[121,201,69,1.0],[121,201,70,1.0],[121,201,71,1.0],[121,201,72,1.0],[121,201,73,1.0],[121,201,74,1.0],[121,201,75,1.0],[121,201,76,1.0],[121,201,77,1.0],[121,201,78,1.0],[121,201,79,1.0],[121,202,64,1.0],[121,202,65,1.0],[121,202,66,1.0],[121,202,67,1.0],[121,202,68,1.0],[121,202,69,1.0],[121,202,70,1.0],[121,202,71,1.0],[121,202,72,1.0],[121,202,73,1.0],[121,202,74,1.0],[121,202,75,1.0],[121,202,76,1.0],[121,202,77,1.0],[121,202,78,1.0],[121,202,79,1.0],[121,203,64,1.0],[121,203,65,1.0],[121,203,66,1.0],[121,203,67,1.0],[121,203,68,1.0],[121,203,69,1.0],[121,203,70,1.0],[121,203,71,1.0],[121,203,72,1.0],[121,203,73,1.0],[121,203,74,1.0],[121,203,75,1.0],[121,203,76,1.0],[121,203,77,1.0],[121,203,78,1.0],[121,203,79,1.0],[121,204,64,1.0],[121,204,65,1.0],[121,204,66,1.0],[121,204,67,1.0],[121,204,68,1.0],[121,204,69,1.0],[121,204,70,1.0],[121,204,71,1.0],[121,204,72,1.0],[121,204,73,1.0],[121,204,74,1.0],[121,204,75,1.0],[121,204,76,1.0],[121,204,77,1.0],[121,204,78,1.0],[121,204,79,1.0],[121,205,64,1.0],[121,205,65,1.0],[121,205,66,1.0],[121,205,67,1.0],[121,205,68,1.0],[121,205,69,1.0],[121,205,70,1.0],[121,205,71,1.0],[121,205,72,1.0],[121,205,73,1.0],[121,205,74,1.0],[121,205,75,1.0],[121,205,76,1.0],[121,205,77,1.0],[121,205,78,1.0],[121,205,79,1.0],[121,206,64,1.0],[121,206,65,1.0],[121,206,66,1.0],[121,206,67,1.0],[121,206,68,1.0],[121,206,69,1.0],[121,206,70,1.0],[121,206,71,1.0],[121,206,72,1.0],[121,206,73,1.0],[121,206,74,1.0],[121,206,75,1.0],[121,206,76,1.0],[121,206,77,1.0],[121,206,78,1.0],[121,206,79,1.0],[121,207,64,1.0],[121,207,65,1.0],[121,207,66,1.0],[121,207,67,1.0],[121,207,68,1.0],[121,207,69,1.0],[121,207,70,1.0],[121,207,71,1.0],[121,207,72,1.0],[121,207,73,1.0],[121,207,74,1.0],[121,207,75,1.0],[121,207,76,1.0],[121,207,77,1.0],[121,207,78,1.0],[121,207,79,1.0],[121,208,64,1.0],[121,208,65,1.0],[121,208,66,1.0],[121,208,67,1.0],[121,208,68,1.0],[121,208,69,1.0],[121,208,70,1.0],[121,208,71,1.0],[121,208,72,1.0],[121,208,73,1.0],[121,208,74,1.0],[121,208,75,1.0],[121,208,76,1.0],[121,208,77,1.0],[121,208,78,1.0],[121,208,79,1.0],[121,209,64,1.0],[121,209,65,1.0],[121,209,66,1.0],[121,209,67,1.0],[121,209,68,1.0],[121,209,69,1.0],[121,209,70,1.0],[121,209,71,1.0],[121,209,72,1.0],[121,209,73,1.0],[121,209,74,1.0],[121,209,75,1.0],[121,209,76,1.0],[121,209,77,1.0],[121,209,78,1.0],[121,209,79,1.0],[121,210,64,1.0],[121,210,65,1.0],[121,210,66,1.0],[121,210,67,1.0],[121,210,68,1.0],[121,210,69,1.0],[121,210,70,1.0],[121,210,71,1.0],[121,210,72,1.0],[121,210,73,1.0],[121,210,74,1.0],[121,210,75,1.0],[121,210,76,1.0],[121,210,77,1.0],[121,210,78,1.0],[121,210,79,1.0],[121,211,64,1.0],[121,211,65,1.0],[121,211,66,1.0],[121,211,67,1.0],[121,211,68,1.0],[121,211,69,1.0],[121,211,70,1.0],[121,211,71,1.0],[121,211,72,1.0],[121,211,73,1.0],[121,211,74,1.0],[121,211,75,1.0],[121,211,76,1.0],[121,211,77,1.0],[121,211,78,1.0],[121,211,79,1.0],[121,212,64,1.0],[121,212,65,1.0],[121,212,66,1.0],[121,212,67,1.0],[121,212,68,1.0],[121,212,69,1.0],[121,212,70,1.0],[121,212,71,1.0],[121,212,72,1.0],[121,212,73,1.0],[121,212,74,1.0],[121,212,75,1.0],[121,212,76,1.0],[121,212,77,1.0],[121,212,78,1.0],[121,212,79,1.0],[121,213,64,1.0],[121,213,65,1.0],[121,213,66,1.0],[121,213,67,1.0],[121,213,68,1.0],[121,213,69,1.0],[121,213,70,1.0],[121,213,71,1.0],[121,213,72,1.0],[121,213,73,1.0],[121,213,74,1.0],[121,213,75,1.0],[121,213,76,1.0],[121,213,77,1.0],[121,213,78,1.0],[121,213,79,1.0],[121,214,64,1.0],[121,214,65,1.0],[121,214,66,1.0],[121,214,67,1.0],[121,214,68,1.0],[121,214,69,1.0],[121,214,70,1.0],[121,214,71,1.0],[121,214,72,1.0],[121,214,73,1.0],[121,214,74,1.0],[121,214,75,1.0],[121,214,76,1.0],[121,214,77,1.0],[121,214,78,1.0],[121,214,79,1.0],[121,215,64,1.0],[121,215,65,1.0],[121,215,66,1.0],[121,215,67,1.0],[121,215,68,1.0],[121,215,69,1.0],[121,215,70,1.0],[121,215,71,1.0],[121,215,72,1.0],[121,215,73,1.0],[121,215,74,1.0],[121,215,75,1.0],[121,215,76,1.0],[121,215,77,1.0],[121,215,78,1.0],[121,215,79,1.0],[121,216,64,1.0],[121,216,65,1.0],[121,216,66,1.0],[121,216,67,1.0],[121,216,68,1.0],[121,216,69,1.0],[121,216,70,1.0],[121,216,71,1.0],[121,216,72,1.0],[121,216,73,1.0],[121,216,74,1.0],[121,216,75,1.0],[121,216,76,1.0],[121,216,77,1.0],[121,216,78,1.0],[121,216,79,1.0],[121,217,64,1.0],[121,217,65,1.0],[121,217,66,1.0],[121,217,67,1.0],[121,217,68,1.0],[121,217,69,1.0],[121,217,70,1.0],[121,217,71,1.0],[121,217,72,1.0],[121,217,73,1.0],[121,217,74,1.0],[121,217,75,1.0],[121,217,76,1.0],[121,217,77,1.0],[121,217,78,1.0],[121,217,79,1.0],[121,218,64,1.0],[121,218,65,1.0],[121,218,66,1.0],[121,218,67,1.0],[121,218,68,1.0],[121,218,69,1.0],[121,218,70,1.0],[121,218,71,1.0],[121,218,72,1.0],[121,218,73,1.0],[121,218,74,1.0],[121,218,75,1.0],[121,218,76,1.0],[121,218,77,1.0],[121,218,78,1.0],[121,218,79,1.0],[121,219,64,1.0],[121,219,65,1.0],[121,219,66,1.0],[121,219,67,1.0],[121,219,68,1.0],[121,219,69,1.0],[121,219,70,1.0],[121,219,71,1.0],[121,219,72,1.0],[121,219,73,1.0],[121,219,74,1.0],[121,219,75,1.0],[121,219,76,1.0],[121,219,77,1.0],[121,219,78,1.0],[121,219,79,1.0],[121,220,64,1.0],[121,220,65,1.0],[121,220,66,1.0],[121,220,67,1.0],[121,220,68,1.0],[121,220,69,1.0],[121,220,70,1.0],[121,220,71,1.0],[121,220,72,1.0],[121,220,73,1.0],[121,220,74,1.0],[121,220,75,1.0],[121,220,76,1.0],[121,220,77,1.0],[121,220,78,1.0],[121,220,79,1.0],[121,221,64,1.0],[121,221,65,1.0],[121,221,66,1.0],[121,221,67,1.0],[121,221,68,1.0],[121,221,69,1.0],[121,221,70,1.0],[121,221,71,1.0],[121,221,72,1.0],[121,221,73,1.0],[121,221,74,1.0],[121,221,75,1.0],[121,221,76,1.0],[121,221,77,1.0],[121,221,78,1.0],[121,221,79,1.0],[121,222,64,1.0],[121,222,65,1.0],[121,222,66,1.0],[121,222,67,1.0],[121,222,68,1.0],[121,222,69,1.0],[121,222,70,1.0],[121,222,71,1.0],[121,222,72,1.0],[121,222,73,1.0],[121,222,74,1.0],[121,222,75,1.0],[121,222,76,1.0],[121,222,77,1.0],[121,222,78,1.0],[121,222,79,1.0],[121,223,64,1.0],[121,223,65,1.0],[121,223,66,1.0],[121,223,67,1.0],[121,223,68,1.0],[121,223,69,1.0],[121,223,70,1.0],[121,223,71,1.0],[121,223,72,1.0],[121,223,73,1.0],[121,223,74,1.0],[121,223,75,1.0],[121,223,76,1.0],[121,223,77,1.0],[121,223,78,1.0],[121,223,79,1.0],[121,224,64,1.0],[121,224,65,1.0],[121,224,66,1.0],[121,224,67,1.0],[121,224,68,1.0],[121,224,69,1.0],[121,224,70,1.0],[121,224,71,1.0],[121,224,72,1.0],[121,224,73,1.0],[121,224,74,1.0],[121,224,75,1.0],[121,224,76,1.0],[121,224,77,1.0],[121,224,78,1.0],[121,224,79,1.0],[121,225,64,1.0],[121,225,65,1.0],[121,225,66,1.0],[121,225,67,1.0],[121,225,68,1.0],[121,225,69,1.0],[121,225,70,1.0],[121,225,71,1.0],[121,225,72,1.0],[121,225,73,1.0],[121,225,74,1.0],[121,225,75,1.0],[121,225,76,1.0],[121,225,77,1.0],[121,225,78,1.0],[121,225,79,1.0],[121,226,64,1.0],[121,226,65,1.0],[121,226,66,1.0],[121,226,67,1.0],[121,226,68,1.0],[121,226,69,1.0],[121,226,70,1.0],[121,226,71,1.0],[121,226,72,1.0],[121,226,73,1.0],[121,226,74,1.0],[121,226,75,1.0],[121,226,76,1.0],[121,226,77,1.0],[121,226,78,1.0],[121,226,79,1.0],[121,227,64,1.0],[121,227,65,1.0],[121,227,66,1.0],[121,227,67,1.0],[121,227,68,1.0],[121,227,69,1.0],[121,227,70,1.0],[121,227,71,1.0],[121,227,72,1.0],[121,227,73,1.0],[121,227,74,1.0],[121,227,75,1.0],[121,227,76,1.0],[121,227,77,1.0],[121,227,78,1.0],[121,227,79,1.0],[121,228,64,1.0],[121,228,65,1.0],[121,228,66,1.0],[121,228,67,1.0],[121,228,68,1.0],[121,228,69,1.0],[121,228,70,1.0],[121,228,71,1.0],[121,228,72,1.0],[121,228,73,1.0],[121,228,74,1.0],[121,228,75,1.0],[121,228,76,1.0],[121,228,77,1.0],[121,228,78,1.0],[121,228,79,1.0],[121,229,64,1.0],[121,229,65,1.0],[121,229,66,1.0],[121,229,67,1.0],[121,229,68,1.0],[121,229,69,1.0],[121,229,70,1.0],[121,229,71,1.0],[121,229,72,1.0],[121,229,73,1.0],[121,229,74,1.0],[121,229,75,1.0],[121,229,76,1.0],[121,229,77,1.0],[121,229,78,1.0],[121,229,79,1.0],[121,230,64,1.0],[121,230,65,1.0],[121,230,66,1.0],[121,230,67,1.0],[121,230,68,1.0],[121,230,69,1.0],[121,230,70,1.0],[121,230,71,1.0],[121,230,72,1.0],[121,230,73,1.0],[121,230,74,1.0],[121,230,75,1.0],[121,230,76,1.0],[121,230,77,1.0],[121,230,78,1.0],[121,230,79,1.0],[121,231,64,1.0],[121,231,65,1.0],[121,231,66,1.0],[121,231,67,1.0],[121,231,68,1.0],[121,231,69,1.0],[121,231,70,1.0],[121,231,71,1.0],[121,231,72,1.0],[121,231,73,1.0],[121,231,74,1.0],[121,231,75,1.0],[121,231,76,1.0],[121,231,77,1.0],[121,231,78,1.0],[121,231,79,1.0],[121,232,64,1.0],[121,232,65,1.0],[121,232,66,1.0],[121,232,67,1.0],[121,232,68,1.0],[121,232,69,1.0],[121,232,70,1.0],[121,232,71,1.0],[121,232,72,1.0],[121,232,73,1.0],[121,232,74,1.0],[121,232,75,1.0],[121,232,76,1.0],[121,232,77,1.0],[121,232,78,1.0],[121,232,79,1.0],[121,233,64,1.0],[121,233,65,1.0],[121,233,66,1.0],[121,233,67,1.0],[121,233,68,1.0],[121,233,69,1.0],[121,233,70,1.0],[121,233,71,1.0],[121,233,72,1.0],[121,233,73,1.0],[121,233,74,1.0],[121,233,75,1.0],[121,233,76,1.0],[121,233,77,1.0],[121,233,78,1.0],[121,233,79,1.0],[121,234,64,1.0],[121,234,65,1.0],[121,234,66,1.0],[121,234,67,1.0],[121,234,68,1.0],[121,234,69,1.0],[121,234,70,1.0],[121,234,71,1.0],[121,234,72,1.0],[121,234,73,1.0],[121,234,74,1.0],[121,234,75,1.0],[121,234,76,1.0],[121,234,77,1.0],[121,234,78,1.0],[121,234,79,1.0],[121,235,64,1.0],[121,235,65,1.0],[121,235,66,1.0],[121,235,67,1.0],[121,235,68,1.0],[121,235,69,1.0],[121,235,70,1.0],[121,235,71,1.0],[121,235,72,1.0],[121,235,73,1.0],[121,235,74,1.0],[121,235,75,1.0],[121,235,76,1.0],[121,235,77,1.0],[121,235,78,1.0],[121,235,79,1.0],[121,236,64,1.0],[121,236,65,1.0],[121,236,66,1.0],[121,236,67,1.0],[121,236,68,1.0],[121,236,69,1.0],[121,236,70,1.0],[121,236,71,1.0],[121,236,72,1.0],[121,236,73,1.0],[121,236,74,1.0],[121,236,75,1.0],[121,236,76,1.0],[121,236,77,1.0],[121,236,78,1.0],[121,236,79,1.0],[121,237,64,1.0],[121,237,65,1.0],[121,237,66,1.0],[121,237,67,1.0],[121,237,68,1.0],[121,237,69,1.0],[121,237,70,1.0],[121,237,71,1.0],[121,237,72,1.0],[121,237,73,1.0],[121,237,74,1.0],[121,237,75,1.0],[121,237,76,1.0],[121,237,77,1.0],[121,237,78,1.0],[121,237,79,1.0],[121,238,64,1.0],[121,238,65,1.0],[121,238,66,1.0],[121,238,67,1.0],[121,238,68,1.0],[121,238,69,1.0],[121,238,70,1.0],[121,238,71,1.0],[121,238,72,1.0],[121,238,73,1.0],[121,238,74,1.0],[121,238,75,1.0],[121,238,76,1.0],[121,238,77,1.0],[121,238,78,1.0],[121,238,79,1.0],[121,239,64,1.0],[121,239,65,1.0],[121,239,66,1.0],[121,239,67,1.0],[121,239,68,1.0],[121,239,69,1.0],[121,239,70,1.0],[121,239,71,1.0],[121,239,72,1.0],[121,239,73,1.0],[121,239,74,1.0],[121,239,75,1.0],[121,239,76,1.0],[121,239,77,1.0],[121,239,78,1.0],[121,239,79,1.0],[121,240,64,1.0],[121,240,65,1.0],[121,240,66,1.0],[121,240,67,1.0],[121,240,68,1.0],[121,240,69,1.0],[121,240,70,1.0],[121,240,71,1.0],[121,240,72,1.0],[121,240,73,1.0],[121,240,74,1.0],[121,240,75,1.0],[121,240,76,1.0],[121,240,77,1.0],[121,240,78,1.0],[121,240,79,1.0],[121,241,64,1.0],[121,241,65,1.0],[121,241,66,1.0],[121,241,67,1.0],[121,241,68,1.0],[121,241,69,1.0],[121,241,70,1.0],[121,241,71,1.0],[121,241,72,1.0],[121,241,73,1.0],[121,241,74,1.0],[121,241,75,1.0],[121,241,76,1.0],[121,241,77,1.0],[121,241,78,1.0],[121,241,79,1.0],[121,242,64,1.0],[121,242,65,1.0],[121,242,66,1.0],[121,242,67,1.0],[121,242,68,1.0],[121,242,69,1.0],[121,242,70,1.0],[121,242,71,1.0],[121,242,72,1.0],[121,242,73,1.0],[121,242,74,1.0],[121,242,75,1.0],[121,242,76,1.0],[121,242,77,1.0],[121,242,78,1.0],[121,242,79,1.0],[121,243,64,1.0],[121,243,65,1.0],[121,243,66,1.0],[121,243,67,1.0],[121,243,68,1.0],[121,243,69,1.0],[121,243,70,1.0],[121,243,71,1.0],[121,243,72,1.0],[121,243,73,1.0],[121,243,74,1.0],[121,243,75,1.0],[121,243,76,1.0],[121,243,77,1.0],[121,243,78,1.0],[121,243,79,1.0],[121,244,64,1.0],[121,244,65,1.0],[121,244,66,1.0],[121,244,67,1.0],[121,244,68,1.0],[121,244,69,1.0],[121,244,70,1.0],[121,244,71,1.0],[121,244,72,1.0],[121,244,73,1.0],[121,244,74,1.0],[121,244,75,1.0],[121,244,76,1.0],[121,244,77,1.0],[121,244,78,1.0],[121,244,79,1.0],[121,245,64,1.0],[121,245,65,1.0],[121,245,66,1.0],[121,245,67,1.0],[121,245,68,1.0],[121,245,69,1.0],[121,245,70,1.0],[121,245,71,1.0],[121,245,72,1.0],[121,245,73,1.0],[121,245,74,1.0],[121,245,75,1.0],[121,245,76,1.0],[121,245,77,1.0],[121,245,78,1.0],[121,245,79,1.0],[121,246,64,1.0],[121,246,65,1.0],[121,246,66,1.0],[121,246,67,1.0],[121,246,68,1.0],[121,246,69,1.0],[121,246,70,1.0],[121,246,71,1.0],[121,246,72,1.0],[121,246,73,1.0],[121,246,74,1.0],[121,246,75,1.0],[121,246,76,1.0],[121,246,77,1.0],[121,246,78,1.0],[121,246,79,1.0],[121,247,64,1.0],[121,247,65,1.0],[121,247,66,1.0],[121,247,67,1.0],[121,247,68,1.0],[121,247,69,1.0],[121,247,70,1.0],[121,247,71,1.0],[121,247,72,1.0],[121,247,73,1.0],[121,247,74,1.0],[121,247,75,1.0],[121,247,76,1.0],[121,247,77,1.0],[121,247,78,1.0],[121,247,79,1.0],[121,248,64,1.0],[121,248,65,1.0],[121,248,66,1.0],[121,248,67,1.0],[121,248,68,1.0],[121,248,69,1.0],[121,248,70,1.0],[121,248,71,1.0],[121,248,72,1.0],[121,248,73,1.0],[121,248,74,1.0],[121,248,75,1.0],[121,248,76,1.0],[121,248,77,1.0],[121,248,78,1.0],[121,248,79,1.0],[121,249,64,1.0],[121,249,65,1.0],[121,249,66,1.0],[121,249,67,1.0],[121,249,68,1.0],[121,249,69,1.0],[121,249,70,1.0],[121,249,71,1.0],[121,249,72,1.0],[121,249,73,1.0],[121,249,74,1.0],[121,249,75,1.0],[121,249,76,1.0],[121,249,77,1.0],[121,249,78,1.0],[121,249,79,1.0],[121,250,64,1.0],[121,250,65,1.0],[121,250,66,1.0],[121,250,67,1.0],[121,250,68,1.0],[121,250,69,1.0],[121,250,70,1.0],[121,250,71,1.0],[121,250,72,1.0],[121,250,73,1.0],[121,250,74,1.0],[121,250,75,1.0],[121,250,76,1.0],[121,250,77,1.0],[121,250,78,1.0],[121,250,79,1.0],[121,251,64,1.0],[121,251,65,1.0],[121,251,66,1.0],[121,251,67,1.0],[121,251,68,1.0],[121,251,69,1.0],[121,251,70,1.0],[121,251,71,1.0],[121,251,72,1.0],[121,251,73,1.0],[121,251,74,1.0],[121,251,75,1.0],[121,251,76,1.0],[121,251,77,1.0],[121,251,78,1.0],[121,251,79,1.0],[121,252,64,1.0],[121,252,65,1.0],[121,252,66,1.0],[121,252,67,1.0],[121,252,68,1.0],[121,252,69,1.0],[121,252,70,1.0],[121,252,71,1.0],[121,252,72,1.0],[121,252,73,1.0],[121,252,74,1.0],[121,252,75,1.0],[121,252,76,1.0],[121,252,77,1.0],[121,252,78,1.0],[121,252,79,1.0],[121,253,64,1.0],[121,253,65,1.0],[121,253,66,1.0],[121,253,67,1.0],[121,253,68,1.0],[121,253,69,1.0],[121,253,70,1.0],[121,253,71,1.0],[121,253,72,1.0],[121,253,73,1.0],[121,253,74,1.0],[121,253,75,1.0],[121,253,76,1.0],[121,253,77,1.0],[121,253,78,1.0],[121,253,79,1.0],[121,254,64,1.0],[121,254,65,1.0],[121,254,66,1.0],[121,254,67,1.0],[121,254,68,1.0],[121,254,69,1.0],[121,254,70,1.0],[121,254,71,1.0],[121,254,72,1.0],[121,254,73,1.0],[121,254,74,1.0],[121,254,75,1.0],[121,254,76,1.0],[121,254,77,1.0],[121,254,78,1.0],[121,254,79,1.0],[121,255,64,1.0],[121,255,65,1.0],[121,255,66,1.0],[121,255,67,1.0],[121,255,68,1.0],[121,255,69,1.0],[121,255,70,1.0],[121,255,71,1.0],[121,255,72,1.0],[121,255,73,1.0],[121,255,74,1.0],[121,255,75,1.0],[121,255,76,1.0],[121,255,77,1.0],[121,255,78,1.0],[121,255,79,1.0],[121,256,64,1.0],[121,256,65,1.0],[121,256,66,1.0],[121,256,67,1.0],[121,256,68,1.0],[121,256,69,1.0],[121,256,70,1.0],[121,256,71,1.0],[121,256,72,1.0],[121,256,73,1.0],[121,256,74,1.0],[121,256,75,1.0],[121,256,76,1.0],[121,256,77,1.0],[121,256,78,1.0],[121,256,79,1.0],[121,257,64,1.0],[121,257,65,1.0],[121,257,66,1.0],[121,257,67,1.0],[121,257,68,1.0],[121,257,69,1.0],[121,257,70,1.0],[121,257,71,1.0],[121,257,72,1.0],[121,257,73,1.0],[121,257,74,1.0],[121,257,75,1.0],[121,257,76,1.0],[121,257,77,1.0],[121,257,78,1.0],[121,257,79,1.0],[121,258,64,1.0],[121,258,65,1.0],[121,258,66,1.0],[121,258,67,1.0],[121,258,68,1.0],[121,258,69,1.0],[121,258,70,1.0],[121,258,71,1.0],[121,258,72,1.0],[121,258,73,1.0],[121,258,74,1.0],[121,258,75,1.0],[121,258,76,1.0],[121,258,77,1.0],[121,258,78,1.0],[121,258,79,1.0],[121,259,64,1.0],[121,259,65,1.0],[121,259,66,1.0],[121,259,67,1.0],[121,259,68,1.0],[121,259,69,1.0],[121,259,70,1.0],[121,259,71,1.0],[121,259,72,1.0],[121,259,73,1.0],[121,259,74,1.0],[121,259,75,1.0],[121,259,76,1.0],[121,259,77,1.0],[121,259,78,1.0],[121,259,79,1.0],[121,260,64,1.0],[121,260,65,1.0],[121,260,66,1.0],[121,260,67,1.0],[121,260,68,1.0],[121,260,69,1.0],[121,260,70,1.0],[121,260,71,1.0],[121,260,72,1.0],[121,260,73,1.0],[121,260,74,1.0],[121,260,75,1.0],[121,260,76,1.0],[121,260,77,1.0],[121,260,78,1.0],[121,260,79,1.0],[121,261,64,1.0],[121,261,65,1.0],[121,261,66,1.0],[121,261,67,1.0],[121,261,68,1.0],[121,261,69,1.0],[121,261,70,1.0],[121,261,71,1.0],[121,261,72,1.0],[121,261,73,1.0],[121,261,74,1.0],[121,261,75,1.0],[121,261,76,1.0],[121,261,77,1.0],[121,261,78,1.0],[121,261,79,1.0],[121,262,64,1.0],[121,262,65,1.0],[121,262,66,1.0],[121,262,67,1.0],[121,262,68,1.0],[121,262,69,1.0],[121,262,70,1.0],[121,262,71,1.0],[121,262,72,1.0],[121,262,73,1.0],[121,262,74,1.0],[121,262,75,1.0],[121,262,76,1.0],[121,262,77,1.0],[121,262,78,1.0],[121,262,79,1.0],[121,263,64,1.0],[121,263,65,1.0],[121,263,66,1.0],[121,263,67,1.0],[121,263,68,1.0],[121,263,69,1.0],[121,263,70,1.0],[121,263,71,1.0],[121,263,72,1.0],[121,263,73,1.0],[121,263,74,1.0],[121,263,75,1.0],[121,263,76,1.0],[121,263,77,1.0],[121,263,78,1.0],[121,263,79,1.0],[121,264,64,1.0],[121,264,65,1.0],[121,264,66,1.0],[121,264,67,1.0],[121,264,68,1.0],[121,264,69,1.0],[121,264,70,1.0],[121,264,71,1.0],[121,264,72,1.0],[121,264,73,1.0],[121,264,74,1.0],[121,264,75,1.0],[121,264,76,1.0],[121,264,77,1.0],[121,264,78,1.0],[121,264,79,1.0],[121,265,64,1.0],[121,265,65,1.0],[121,265,66,1.0],[121,265,67,1.0],[121,265,68,1.0],[121,265,69,1.0],[121,265,70,1.0],[121,265,71,1.0],[121,265,72,1.0],[121,265,73,1.0],[121,265,74,1.0],[121,265,75,1.0],[121,265,76,1.0],[121,265,77,1.0],[121,265,78,1.0],[121,265,79,1.0],[121,266,64,1.0],[121,266,65,1.0],[121,266,66,1.0],[121,266,67,1.0],[121,266,68,1.0],[121,266,69,1.0],[121,266,70,1.0],[121,266,71,1.0],[121,266,72,1.0],[121,266,73,1.0],[121,266,74,1.0],[121,266,75,1.0],[121,266,76,1.0],[121,266,77,1.0],[121,266,78,1.0],[121,266,79,1.0],[121,267,64,1.0],[121,267,65,1.0],[121,267,66,1.0],[121,267,67,1.0],[121,267,68,1.0],[121,267,69,1.0],[121,267,70,1.0],[121,267,71,1.0],[121,267,72,1.0],[121,267,73,1.0],[121,267,74,1.0],[121,267,75,1.0],[121,267,76,1.0],[121,267,77,1.0],[121,267,78,1.0],[121,267,79,1.0],[121,268,64,1.0],[121,268,65,1.0],[121,268,66,1.0],[121,268,67,1.0],[121,268,68,1.0],[121,268,69,1.0],[121,268,70,1.0],[121,268,71,1.0],[121,268,72,1.0],[121,268,73,1.0],[121,268,74,1.0],[121,268,75,1.0],[121,268,76,1.0],[121,268,77,1.0],[121,268,78,1.0],[121,268,79,1.0],[121,269,64,1.0],[121,269,65,1.0],[121,269,66,1.0],[121,269,67,1.0],[121,269,68,1.0],[121,269,69,1.0],[121,269,70,1.0],[121,269,71,1.0],[121,269,72,1.0],[121,269,73,1.0],[121,269,74,1.0],[121,269,75,1.0],[121,269,76,1.0],[121,269,77,1.0],[121,269,78,1.0],[121,269,79,1.0],[121,270,64,1.0],[121,270,65,1.0],[121,270,66,1.0],[121,270,67,1.0],[121,270,68,1.0],[121,270,69,1.0],[121,270,70,1.0],[121,270,71,1.0],[121,270,72,1.0],[121,270,73,1.0],[121,270,74,1.0],[121,270,75,1.0],[121,270,76,1.0],[121,270,77,1.0],[121,270,78,1.0],[121,270,79,1.0],[121,271,64,1.0],[121,271,65,1.0],[121,271,66,1.0],[121,271,67,1.0],[121,271,68,1.0],[121,271,69,1.0],[121,271,70,1.0],[121,271,71,1.0],[121,271,72,1.0],[121,271,73,1.0],[121,271,74,1.0],[121,271,75,1.0],[121,271,76,1.0],[121,271,77,1.0],[121,271,78,1.0],[121,271,79,1.0],[121,272,64,1.0],[121,272,65,1.0],[121,272,66,1.0],[121,272,67,1.0],[121,272,68,1.0],[121,272,69,1.0],[121,272,70,1.0],[121,272,71,1.0],[121,272,72,1.0],[121,272,73,1.0],[121,272,74,1.0],[121,272,75,1.0],[121,272,76,1.0],[121,272,77,1.0],[121,272,78,1.0],[121,272,79,1.0],[121,273,64,1.0],[121,273,65,1.0],[121,273,66,1.0],[121,273,67,1.0],[121,273,68,1.0],[121,273,69,1.0],[121,273,70,1.0],[121,273,71,1.0],[121,273,72,1.0],[121,273,73,1.0],[121,273,74,1.0],[121,273,75,1.0],[121,273,76,1.0],[121,273,77,1.0],[121,273,78,1.0],[121,273,79,1.0],[121,274,64,1.0],[121,274,65,1.0],[121,274,66,1.0],[121,274,67,1.0],[121,274,68,1.0],[121,274,69,1.0],[121,274,70,1.0],[121,274,71,1.0],[121,274,72,1.0],[121,274,73,1.0],[121,274,74,1.0],[121,274,75,1.0],[121,274,76,1.0],[121,274,77,1.0],[121,274,78,1.0],[121,274,79,1.0],[121,275,64,1.0],[121,275,65,1.0],[121,275,66,1.0],[121,275,67,1.0],[121,275,68,1.0],[121,275,69,1.0],[121,275,70,1.0],[121,275,71,1.0],[121,275,72,1.0],[121,275,73,1.0],[121,275,74,1.0],[121,275,75,1.0],[121,275,76,1.0],[121,275,77,1.0],[121,275,78,1.0],[121,275,79,1.0],[121,276,64,1.0],[121,276,65,1.0],[121,276,66,1.0],[121,276,67,1.0],[121,276,68,1.0],[121,276,69,1.0],[121,276,70,1.0],[121,276,71,1.0],[121,276,72,1.0],[121,276,73,1.0],[121,276,74,1.0],[121,276,75,1.0],[121,276,76,1.0],[121,276,77,1.0],[121,276,78,1.0],[121,276,79,1.0],[121,277,64,1.0],[121,277,65,1.0],[121,277,66,1.0],[121,277,67,1.0],[121,277,68,1.0],[121,277,69,1.0],[121,277,70,1.0],[121,277,71,1.0],[121,277,72,1.0],[121,277,73,1.0],[121,277,74,1.0],[121,277,75,1.0],[121,277,76,1.0],[121,277,77,1.0],[121,277,78,1.0],[121,277,79,1.0],[121,278,64,1.0],[121,278,65,1.0],[121,278,66,1.0],[121,278,67,1.0],[121,278,68,1.0],[121,278,69,1.0],[121,278,70,1.0],[121,278,71,1.0],[121,278,72,1.0],[121,278,73,1.0],[121,278,74,1.0],[121,278,75,1.0],[121,278,76,1.0],[121,278,77,1.0],[121,278,78,1.0],[121,278,79,1.0],[121,279,64,1.0],[121,279,65,1.0],[121,279,66,1.0],[121,279,67,1.0],[121,279,68,1.0],[121,279,69,1.0],[121,279,70,1.0],[121,279,71,1.0],[121,279,72,1.0],[121,279,73,1.0],[121,279,74,1.0],[121,279,75,1.0],[121,279,76,1.0],[121,279,77,1.0],[121,279,78,1.0],[121,279,79,1.0],[121,280,64,1.0],[121,280,65,1.0],[121,280,66,1.0],[121,280,67,1.0],[121,280,68,1.0],[121,280,69,1.0],[121,280,70,1.0],[121,280,71,1.0],[121,280,72,1.0],[121,280,73,1.0],[121,280,74,1.0],[121,280,75,1.0],[121,280,76,1.0],[121,280,77,1.0],[121,280,78,1.0],[121,280,79,1.0],[121,281,64,1.0],[121,281,65,1.0],[121,281,66,1.0],[121,281,67,1.0],[121,281,68,1.0],[121,281,69,1.0],[121,281,70,1.0],[121,281,71,1.0],[121,281,72,1.0],[121,281,73,1.0],[121,281,74,1.0],[121,281,75,1.0],[121,281,76,1.0],[121,281,77,1.0],[121,281,78,1.0],[121,281,79,1.0],[121,282,64,1.0],[121,282,65,1.0],[121,282,66,1.0],[121,282,67,1.0],[121,282,68,1.0],[121,282,69,1.0],[121,282,70,1.0],[121,282,71,1.0],[121,282,72,1.0],[121,282,73,1.0],[121,282,74,1.0],[121,282,75,1.0],[121,282,76,1.0],[121,282,77,1.0],[121,282,78,1.0],[121,282,79,1.0],[121,283,64,1.0],[121,283,65,1.0],[121,283,66,1.0],[121,283,67,1.0],[121,283,68,1.0],[121,283,69,1.0],[121,283,70,1.0],[121,283,71,1.0],[121,283,72,1.0],[121,283,73,1.0],[121,283,74,1.0],[121,283,75,1.0],[121,283,76,1.0],[121,283,77,1.0],[121,283,78,1.0],[121,283,79,1.0],[121,284,64,1.0],[121,284,65,1.0],[121,284,66,1.0],[121,284,67,1.0],[121,284,68,1.0],[121,284,69,1.0],[121,284,70,1.0],[121,284,71,1.0],[121,284,72,1.0],[121,284,73,1.0],[121,284,74,1.0],[121,284,75,1.0],[121,284,76,1.0],[121,284,77,1.0],[121,284,78,1.0],[121,284,79,1.0],[121,285,64,1.0],[121,285,65,1.0],[121,285,66,1.0],[121,285,67,1.0],[121,285,68,1.0],[121,285,69,1.0],[121,285,70,1.0],[121,285,71,1.0],[121,285,72,1.0],[121,285,73,1.0],[121,285,74,1.0],[121,285,75,1.0],[121,285,76,1.0],[121,285,77,1.0],[121,285,78,1.0],[121,285,79,1.0],[121,286,64,1.0],[121,286,65,1.0],[121,286,66,1.0],[121,286,67,1.0],[121,286,68,1.0],[121,286,69,1.0],[121,286,70,1.0],[121,286,71,1.0],[121,286,72,1.0],[121,286,73,1.0],[121,286,74,1.0],[121,286,75,1.0],[121,286,76,1.0],[121,286,77,1.0],[121,286,78,1.0],[121,286,79,1.0],[121,287,64,1.0],[121,287,65,1.0],[121,287,66,1.0],[121,287,67,1.0],[121,287,68,1.0],[121,287,69,1.0],[121,287,70,1.0],[121,287,71,1.0],[121,287,72,1.0],[121,287,73,1.0],[121,287,74,1.0],[121,287,75,1.0],[121,287,76,1.0],[121,287,77,1.0],[121,287,78,1.0],[121,287,79,1.0],[121,288,64,1.0],[121,288,65,1.0],[121,288,66,1.0],[121,288,67,1.0],[121,288,68,1.0],[121,288,69,1.0],[121,288,70,1.0],[121,288,71,1.0],[121,288,72,1.0],[121,288,73,1.0],[121,288,74,1.0],[121,288,75,1.0],[121,288,76,1.0],[121,288,77,1.0],[121,288,78,1.0],[121,288,79,1.0],[121,289,64,1.0],[121,289,65,1.0],[121,289,66,1.0],[121,289,67,1.0],[121,289,68,1.0],[121,289,69,1.0],[121,289,70,1.0],[121,289,71,1.0],[121,289,72,1.0],[121,289,73,1.0],[121,289,74,1.0],[121,289,75,1.0],[121,289,76,1.0],[121,289,77,1.0],[121,289,78,1.0],[121,289,79,1.0],[121,290,64,1.0],[121,290,65,1.0],[121,290,66,1.0],[121,290,67,1.0],[121,290,68,1.0],[121,290,69,1.0],[121,290,70,1.0],[121,290,71,1.0],[121,290,72,1.0],[121,290,73,1.0],[121,290,74,1.0],[121,290,75,1.0],[121,290,76,1.0],[121,290,77,1.0],[121,290,78,1.0],[121,290,79,1.0],[121,291,64,1.0],[121,291,65,1.0],[121,291,66,1.0],[121,291,67,1.0],[121,291,68,1.0],[121,291,69,1.0],[121,291,70,1.0],[121,291,71,1.0],[121,291,72,1.0],[121,291,73,1.0],[121,291,74,1.0],[121,291,75,1.0],[121,291,76,1.0],[121,291,77,1.0],[121,291,78,1.0],[121,291,79,1.0],[121,292,64,1.0],[121,292,65,1.0],[121,292,66,1.0],[121,292,67,1.0],[121,292,68,1.0],[121,292,69,1.0],[121,292,70,1.0],[121,292,71,1.0],[121,292,72,1.0],[121,292,73,1.0],[121,292,74,1.0],[121,292,75,1.0],[121,292,76,1.0],[121,292,77,1.0],[121,292,78,1.0],[121,292,79,1.0],[121,293,64,1.0],[121,293,65,1.0],[121,293,66,1.0],[121,293,67,1.0],[121,293,68,1.0],[121,293,69,1.0],[121,293,70,1.0],[121,293,71,1.0],[121,293,72,1.0],[121,293,73,1.0],[121,293,74,1.0],[121,293,75,1.0],[121,293,76,1.0],[121,293,77,1.0],[121,293,78,1.0],[121,293,79,1.0],[121,294,64,1.0],[121,294,65,1.0],[121,294,66,1.0],[121,294,67,1.0],[121,294,68,1.0],[121,294,69,1.0],[121,294,70,1.0],[121,294,71,1.0],[121,294,72,1.0],[121,294,73,1.0],[121,294,74,1.0],[121,294,75,1.0],[121,294,76,1.0],[121,294,77,1.0],[121,294,78,1.0],[121,294,79,1.0],[121,295,64,1.0],[121,295,65,1.0],[121,295,66,1.0],[121,295,67,1.0],[121,295,68,1.0],[121,295,69,1.0],[121,295,70,1.0],[121,295,71,1.0],[121,295,72,1.0],[121,295,73,1.0],[121,295,74,1.0],[121,295,75,1.0],[121,295,76,1.0],[121,295,77,1.0],[121,295,78,1.0],[121,295,79,1.0],[121,296,64,1.0],[121,296,65,1.0],[121,296,66,1.0],[121,296,67,1.0],[121,296,68,1.0],[121,296,69,1.0],[121,296,70,1.0],[121,296,71,1.0],[121,296,72,1.0],[121,296,73,1.0],[121,296,74,1.0],[121,296,75,1.0],[121,296,76,1.0],[121,296,77,1.0],[121,296,78,1.0],[121,296,79,1.0],[121,297,64,1.0],[121,297,65,1.0],[121,297,66,1.0],[121,297,67,1.0],[121,297,68,1.0],[121,297,69,1.0],[121,297,70,1.0],[121,297,71,1.0],[121,297,72,1.0],[121,297,73,1.0],[121,297,74,1.0],[121,297,75,1.0],[121,297,76,1.0],[121,297,77,1.0],[121,297,78,1.0],[121,297,79,1.0],[121,298,64,1.0],[121,298,65,1.0],[121,298,66,1.0],[121,298,67,1.0],[121,298,68,1.0],[121,298,69,1.0],[121,298,70,1.0],[121,298,71,1.0],[121,298,72,1.0],[121,298,73,1.0],[121,298,74,1.0],[121,298,75,1.0],[121,298,76,1.0],[121,298,77,1.0],[121,298,78,1.0],[121,298,79,1.0],[121,299,64,1.0],[121,299,65,1.0],[121,299,66,1.0],[121,299,67,1.0],[121,299,68,1.0],[121,299,69,1.0],[121,299,70,1.0],[121,299,71,1.0],[121,299,72,1.0],[121,299,73,1.0],[121,299,74,1.0],[121,299,75,1.0],[121,299,76,1.0],[121,299,77,1.0],[121,299,78,1.0],[121,299,79,1.0],[121,300,64,1.0],[121,300,65,1.0],[121,300,66,1.0],[121,300,67,1.0],[121,300,68,1.0],[121,300,69,1.0],[121,300,70,1.0],[121,300,71,1.0],[121,300,72,1.0],[121,300,73,1.0],[121,300,74,1.0],[121,300,75,1.0],[121,300,76,1.0],[121,300,77,1.0],[121,300,78,1.0],[121,300,79,1.0],[121,301,64,1.0],[121,301,65,1.0],[121,301,66,1.0],[121,301,67,1.0],[121,301,68,1.0],[121,301,69,1.0],[121,301,70,1.0],[121,301,71,1.0],[121,301,72,1.0],[121,301,73,1.0],[121,301,74,1.0],[121,301,75,1.0],[121,301,76,1.0],[121,301,77,1.0],[121,301,78,1.0],[121,301,79,1.0],[121,302,64,1.0],[121,302,65,1.0],[121,302,66,1.0],[121,302,67,1.0],[121,302,68,1.0],[121,302,69,1.0],[121,302,70,1.0],[121,302,71,1.0],[121,302,72,1.0],[121,302,73,1.0],[121,302,74,1.0],[121,302,75,1.0],[121,302,76,1.0],[121,302,77,1.0],[121,302,78,1.0],[121,302,79,1.0],[121,303,64,1.0],[121,303,65,1.0],[121,303,66,1.0],[121,303,67,1.0],[121,303,68,1.0],[121,303,69,1.0],[121,303,70,1.0],[121,303,71,1.0],[121,303,72,1.0],[121,303,73,1.0],[121,303,74,1.0],[121,303,75,1.0],[121,303,76,1.0],[121,303,77,1.0],[121,303,78,1.0],[121,303,79,1.0],[121,304,64,1.0],[121,304,65,1.0],[121,304,66,1.0],[121,304,67,1.0],[121,304,68,1.0],[121,304,69,1.0],[121,304,70,1.0],[121,304,71,1.0],[121,304,72,1.0],[121,304,73,1.0],[121,304,74,1.0],[121,304,75,1.0],[121,304,76,1.0],[121,304,77,1.0],[121,304,78,1.0],[121,304,79,1.0],[121,305,64,1.0],[121,305,65,1.0],[121,305,66,1.0],[121,305,67,1.0],[121,305,68,1.0],[121,305,69,1.0],[121,305,70,1.0],[121,305,71,1.0],[121,305,72,1.0],[121,305,73,1.0],[121,305,74,1.0],[121,305,75,1.0],[121,305,76,1.0],[121,305,77,1.0],[121,305,78,1.0],[121,305,79,1.0],[121,306,64,1.0],[121,306,65,1.0],[121,306,66,1.0],[121,306,67,1.0],[121,306,68,1.0],[121,306,69,1.0],[121,306,70,1.0],[121,306,71,1.0],[121,306,72,1.0],[121,306,73,1.0],[121,306,74,1.0],[121,306,75,1.0],[121,306,76,1.0],[121,306,77,1.0],[121,306,78,1.0],[121,306,79,1.0],[121,307,64,1.0],[121,307,65,1.0],[121,307,66,1.0],[121,307,67,1.0],[121,307,68,1.0],[121,307,69,1.0],[121,307,70,1.0],[121,307,71,1.0],[121,307,72,1.0],[121,307,73,1.0],[121,307,74,1.0],[121,307,75,1.0],[121,307,76,1.0],[121,307,77,1.0],[121,307,78,1.0],[121,307,79,1.0],[121,308,64,1.0],[121,308,65,1.0],[121,308,66,1.0],[121,308,67,1.0],[121,308,68,1.0],[121,308,69,1.0],[121,308,70,1.0],[121,308,71,1.0],[121,308,72,1.0],[121,308,73,1.0],[121,308,74,1.0],[121,308,75,1.0],[121,308,76,1.0],[121,308,77,1.0],[121,308,78,1.0],[121,308,79,1.0],[121,309,64,1.0],[121,309,65,1.0],[121,309,66,1.0],[121,309,67,1.0],[121,309,68,1.0],[121,309,69,1.0],[121,309,70,1.0],[121,309,71,1.0],[121,309,72,1.0],[121,309,73,1.0],[121,309,74,1.0],[121,309,75,1.0],[121,309,76,1.0],[121,309,77,1.0],[121,309,78,1.0],[121,309,79,1.0],[121,310,64,1.0],[121,310,65,1.0],[121,310,66,1.0],[121,310,67,1.0],[121,310,68,1.0],[121,310,69,1.0],[121,310,70,1.0],[121,310,71,1.0],[121,310,72,1.0],[121,310,73,1.0],[121,310,74,1.0],[121,310,75,1.0],[121,310,76,1.0],[121,310,77,1.0],[121,310,78,1.0],[121,310,79,1.0],[121,311,64,1.0],[121,311,65,1.0],[121,311,66,1.0],[121,311,67,1.0],[121,311,68,1.0],[121,311,69,1.0],[121,311,70,1.0],[121,311,71,1.0],[121,311,72,1.0],[121,311,73,1.0],[121,311,74,1.0],[121,311,75,1.0],[121,311,76,1.0],[121,311,77,1.0],[121,311,78,1.0],[121,311,79,1.0],[121,312,64,1.0],[121,312,65,1.0],[121,312,66,1.0],[121,312,67,1.0],[121,312,68,1.0],[121,312,69,1.0],[121,312,70,1.0],[121,312,71,1.0],[121,312,72,1.0],[121,312,73,1.0],[121,312,74,1.0],[121,312,75,1.0],[121,312,76,1.0],[121,312,77,1.0],[121,312,78,1.0],[121,312,79,1.0],[121,313,64,1.0],[121,313,65,1.0],[121,313,66,1.0],[121,313,67,1.0],[121,313,68,1.0],[121,313,69,1.0],[121,313,70,1.0],[121,313,71,1.0],[121,313,72,1.0],[121,313,73,1.0],[121,313,74,1.0],[121,313,75,1.0],[121,313,76,1.0],[121,313,77,1.0],[121,313,78,1.0],[121,313,79,1.0],[121,314,64,1.0],[121,314,65,1.0],[121,314,66,1.0],[121,314,67,1.0],[121,314,68,1.0],[121,314,69,1.0],[121,314,70,1.0],[121,314,71,1.0],[121,314,72,1.0],[121,314,73,1.0],[121,314,74,1.0],[121,314,75,1.0],[121,314,76,1.0],[121,314,77,1.0],[121,314,78,1.0],[121,314,79,1.0],[121,315,64,1.0],[121,315,65,1.0],[121,315,66,1.0],[121,315,67,1.0],[121,315,68,1.0],[121,315,69,1.0],[121,315,70,1.0],[121,315,71,1.0],[121,315,72,1.0],[121,315,73,1.0],[121,315,74,1.0],[121,315,75,1.0],[121,315,76,1.0],[121,315,77,1.0],[121,315,78,1.0],[121,315,79,1.0],[121,316,64,1.0],[121,316,65,1.0],[121,316,66,1.0],[121,316,67,1.0],[121,316,68,1.0],[121,316,69,1.0],[121,316,70,1.0],[121,316,71,1.0],[121,316,72,1.0],[121,316,73,1.0],[121,316,74,1.0],[121,316,75,1.0],[121,316,76,1.0],[121,316,77,1.0],[121,316,78,1.0],[121,316,79,1.0],[121,317,64,1.0],[121,317,65,1.0],[121,317,66,1.0],[121,317,67,1.0],[121,317,68,1.0],[121,317,69,1.0],[121,317,70,1.0],[121,317,71,1.0],[121,317,72,1.0],[121,317,73,1.0],[121,317,74,1.0],[121,317,75,1.0],[121,317,76,1.0],[121,317,77,1.0],[121,317,78,1.0],[121,317,79,1.0],[121,318,64,1.0],[121,318,65,1.0],[121,318,66,1.0],[121,318,67,1.0],[121,318,68,1.0],[121,318,69,1.0],[121,318,70,1.0],[121,318,71,1.0],[121,318,72,1.0],[121,318,73,1.0],[121,318,74,1.0],[121,318,75,1.0],[121,318,76,1.0],[121,318,77,1.0],[121,318,78,1.0],[121,318,79,1.0],[121,319,64,1.0],[121,319,65,1.0],[121,319,66,1.0],[121,319,67,1.0],[121,319,68,1.0],[121,319,69,1.0],[121,319,70,1.0],[121,319,71,1.0],[121,319,72,1.0],[121,319,73,1.0],[121,319,74,1.0],[121,319,75,1.0],[121,319,76,1.0],[121,319,77,1.0],[121,319,78,1.0],[121,319,79,1.0],[122,-64,64,1.0],[122,-64,65,1.0],[122,-64,66,1.0],[122,-64,67,1.0],[122,-64,68,1.0],[122,-64,69,1.0],[122,-64,70,1.0],[122,-64,71,1.0],[122,-64,72,1.0],[122,-64,73,1.0],[122,-64,74,1.0],[122,-64,75,1.0],[122,-64,76,1.0],[122,-64,77,1.0],[122,-64,78,1.0],[122,-64,79,1.0],[122,-63,64,1.0],[122,-63,65,1.0],[122,-63,66,1.0],[122,-63,67,1.0],[122,-63,68,1.0],[122,-63,69,1.0],[122,-63,70,1.0],[122,-63,71,1.0],[122,-63,72,1.0],[122,-63,73,1.0],[122,-63,74,1.0],[122,-63,75,1.0],[122,-63,76,1.0],[122,-63,77,1.0],[122,-63,78,1.0],[122,-63,79,1.0],[122,-62,64,1.0],[122,-62,65,1.0],[122,-62,66,1.0],[122,-62,67,1.0],[122,-62,68,1.0],[122,-62,69,1.0],[122,-62,70,1.0],[122,-62,71,1.0],[122,-62,72,1.0],[122,-62,73,1.0],[122,-62,74,1.0],[122,-62,75,1.0],[122,-62,76,1.0],[122,-62,77,1.0],[122,-62,78,1.0],[122,-62,79,1.0],[122,-61,64,1.0],[122,-61,65,1.0],[122,-61,66,1.0],[122,-61,67,1.0],[122,-61,68,1.0],[122,-61,69,1.0],[122,-61,70,1.0],[122,-61,71,1.0],[122,-61,72,1.0],[122,-61,73,1.0],[122,-61,74,1.0],[122,-61,75,1.0],[122,-61,76,1.0],[122,-61,77,1.0],[122,-61,78,1.0],[122,-61,79,1.0],[122,-60,64,1.0],[122,-60,65,1.0],[122,-60,66,1.0],[122,-60,67,1.0],[122,-60,68,1.0],[122,-60,69,1.0],[122,-60,70,1.0],[122,-60,71,1.0],[122,-60,72,1.0],[122,-60,73,1.0],[122,-60,74,1.0],[122,-60,75,1.0],[122,-60,76,1.0],[122,-60,77,1.0],[122,-60,78,1.0],[122,-60,79,1.0],[122,-59,64,1.0],[122,-59,65,1.0],[122,-59,66,1.0],[122,-59,67,1.0],[122,-59,68,1.0],[122,-59,69,1.0],[122,-59,70,1.0],[122,-59,71,1.0],[122,-59,72,1.0],[122,-59,73,1.0],[122,-59,74,1.0],[122,-59,75,1.0],[122,-59,76,1.0],[122,-59,77,1.0],[122,-59,78,1.0],[122,-59,79,1.0],[122,-58,64,1.0],[122,-58,65,1.0],[122,-58,66,1.0],[122,-58,67,1.0],[122,-58,68,1.0],[122,-58,69,1.0],[122,-58,70,1.0],[122,-58,71,1.0],[122,-58,72,1.0],[122,-58,73,1.0],[122,-58,74,1.0],[122,-58,75,1.0],[122,-58,76,1.0],[122,-58,77,1.0],[122,-58,78,1.0],[122,-58,79,1.0],[122,-57,64,1.0],[122,-57,65,1.0],[122,-57,66,1.0],[122,-57,67,1.0],[122,-57,68,1.0],[122,-57,69,1.0],[122,-57,70,1.0],[122,-57,71,1.0],[122,-57,72,1.0],[122,-57,73,1.0],[122,-57,74,1.0],[122,-57,75,1.0],[122,-57,76,1.0],[122,-57,77,1.0],[122,-57,78,1.0],[122,-57,79,1.0],[122,-56,64,1.0],[122,-56,65,1.0],[122,-56,66,1.0],[122,-56,67,1.0],[122,-56,68,1.0],[122,-56,69,1.0],[122,-56,70,1.0],[122,-56,71,1.0],[122,-56,72,1.0],[122,-56,73,1.0],[122,-56,74,1.0],[122,-56,75,1.0],[122,-56,76,1.0],[122,-56,77,1.0],[122,-56,78,1.0],[122,-56,79,1.0],[122,-55,64,1.0],[122,-55,65,1.0],[122,-55,66,1.0],[122,-55,67,1.0],[122,-55,68,1.0],[122,-55,69,1.0],[122,-55,70,1.0],[122,-55,71,1.0],[122,-55,72,1.0],[122,-55,73,1.0],[122,-55,74,1.0],[122,-55,75,1.0],[122,-55,76,1.0],[122,-55,77,1.0],[122,-55,78,1.0],[122,-55,79,1.0],[122,-54,64,1.0],[122,-54,65,1.0],[122,-54,66,1.0],[122,-54,67,1.0],[122,-54,68,1.0],[122,-54,69,1.0],[122,-54,70,1.0],[122,-54,71,1.0],[122,-54,72,1.0],[122,-54,73,1.0],[122,-54,74,1.0],[122,-54,75,1.0],[122,-54,76,1.0],[122,-54,77,1.0],[122,-54,78,1.0],[122,-54,79,1.0],[122,-53,64,1.0],[122,-53,65,1.0],[122,-53,66,1.0],[122,-53,67,1.0],[122,-53,68,1.0],[122,-53,69,1.0],[122,-53,70,1.0],[122,-53,71,1.0],[122,-53,72,1.0],[122,-53,73,1.0],[122,-53,74,1.0],[122,-53,75,1.0],[122,-53,76,1.0],[122,-53,77,1.0],[122,-53,78,1.0],[122,-53,79,1.0],[122,-52,64,1.0],[122,-52,65,1.0],[122,-52,66,1.0],[122,-52,67,1.0],[122,-52,68,1.0],[122,-52,69,1.0],[122,-52,70,1.0],[122,-52,71,1.0],[122,-52,72,1.0],[122,-52,73,1.0],[122,-52,74,1.0],[122,-52,75,1.0],[122,-52,76,1.0],[122,-52,77,1.0],[122,-52,78,1.0],[122,-52,79,1.0],[122,-51,64,1.0],[122,-51,65,1.0],[122,-51,66,1.0],[122,-51,67,1.0],[122,-51,68,1.0],[122,-51,69,1.0],[122,-51,70,1.0],[122,-51,71,1.0],[122,-51,72,1.0],[122,-51,73,1.0],[122,-51,74,1.0],[122,-51,75,1.0],[122,-51,76,1.0],[122,-51,77,1.0],[122,-51,78,1.0],[122,-51,79,1.0],[122,-50,64,1.0],[122,-50,65,1.0],[122,-50,66,1.0],[122,-50,67,1.0],[122,-50,68,1.0],[122,-50,69,1.0],[122,-50,70,1.0],[122,-50,71,1.0],[122,-50,72,1.0],[122,-50,73,1.0],[122,-50,74,1.0],[122,-50,75,1.0],[122,-50,76,1.0],[122,-50,77,1.0],[122,-50,78,1.0],[122,-50,79,1.0],[122,-49,64,1.0],[122,-49,65,1.0],[122,-49,66,1.0],[122,-49,67,1.0],[122,-49,68,1.0],[122,-49,69,1.0],[122,-49,70,1.0],[122,-49,71,1.0],[122,-49,72,1.0],[122,-49,73,1.0],[122,-49,74,1.0],[122,-49,75,1.0],[122,-49,76,1.0],[122,-49,77,1.0],[122,-49,78,1.0],[122,-49,79,1.0],[122,-48,64,1.0],[122,-48,65,1.0],[122,-48,66,1.0],[122,-48,67,1.0],[122,-48,68,1.0],[122,-48,69,1.0],[122,-48,70,1.0],[122,-48,71,1.0],[122,-48,72,1.0],[122,-48,73,1.0],[122,-48,74,1.0],[122,-48,75,1.0],[122,-48,76,1.0],[122,-48,77,1.0],[122,-48,78,1.0],[122,-48,79,1.0],[122,-47,64,1.0],[122,-47,65,1.0],[122,-47,66,1.0],[122,-47,67,1.0],[122,-47,68,1.0],[122,-47,69,1.0],[122,-47,70,1.0],[122,-47,71,1.0],[122,-47,72,1.0],[122,-47,73,1.0],[122,-47,74,1.0],[122,-47,75,1.0],[122,-47,76,1.0],[122,-47,77,1.0],[122,-47,78,1.0],[122,-47,79,1.0],[122,-46,64,1.0],[122,-46,65,1.0],[122,-46,66,1.0],[122,-46,67,1.0],[122,-46,68,1.0],[122,-46,69,1.0],[122,-46,70,1.0],[122,-46,71,1.0],[122,-46,72,1.0],[122,-46,73,1.0],[122,-46,74,1.0],[122,-46,75,1.0],[122,-46,76,1.0],[122,-46,77,1.0],[122,-46,78,1.0],[122,-46,79,1.0],[122,-45,64,1.0],[122,-45,65,1.0],[122,-45,66,1.0],[122,-45,67,1.0],[122,-45,68,1.0],[122,-45,69,1.0],[122,-45,70,1.0],[122,-45,71,1.0],[122,-45,72,1.0],[122,-45,73,1.0],[122,-45,74,1.0],[122,-45,75,1.0],[122,-45,76,1.0],[122,-45,77,1.0],[122,-45,78,1.0],[122,-45,79,1.0],[122,-44,64,1.0],[122,-44,65,1.0],[122,-44,66,1.0],[122,-44,67,1.0],[122,-44,68,1.0],[122,-44,69,1.0],[122,-44,70,1.0],[122,-44,71,1.0],[122,-44,72,1.0],[122,-44,73,1.0],[122,-44,74,1.0],[122,-44,75,1.0],[122,-44,76,1.0],[122,-44,77,1.0],[122,-44,78,1.0],[122,-44,79,1.0],[122,-43,64,1.0],[122,-43,65,1.0],[122,-43,66,1.0],[122,-43,67,1.0],[122,-43,68,1.0],[122,-43,69,1.0],[122,-43,70,1.0],[122,-43,71,1.0],[122,-43,72,1.0],[122,-43,73,1.0],[122,-43,74,1.0],[122,-43,75,1.0],[122,-43,76,1.0],[122,-43,77,1.0],[122,-43,78,1.0],[122,-43,79,1.0],[122,-42,64,1.0],[122,-42,65,1.0],[122,-42,66,1.0],[122,-42,67,1.0],[122,-42,68,1.0],[122,-42,69,1.0],[122,-42,70,1.0],[122,-42,71,1.0],[122,-42,72,1.0],[122,-42,73,1.0],[122,-42,74,1.0],[122,-42,75,1.0],[122,-42,76,1.0],[122,-42,77,1.0],[122,-42,78,1.0],[122,-42,79,1.0],[122,-41,64,1.0],[122,-41,65,1.0],[122,-41,66,1.0],[122,-41,67,1.0],[122,-41,68,1.0],[122,-41,69,1.0],[122,-41,70,1.0],[122,-41,71,1.0],[122,-41,72,1.0],[122,-41,73,1.0],[122,-41,74,1.0],[122,-41,75,1.0],[122,-41,76,1.0],[122,-41,77,1.0],[122,-41,78,1.0],[122,-41,79,1.0],[122,-40,64,1.0],[122,-40,65,1.0],[122,-40,66,1.0],[122,-40,67,1.0],[122,-40,68,1.0],[122,-40,69,1.0],[122,-40,70,1.0],[122,-40,71,1.0],[122,-40,72,1.0],[122,-40,73,1.0],[122,-40,74,1.0],[122,-40,75,1.0],[122,-40,76,1.0],[122,-40,77,1.0],[122,-40,78,1.0],[122,-40,79,1.0],[122,-39,64,1.0],[122,-39,65,1.0],[122,-39,66,1.0],[122,-39,67,1.0],[122,-39,68,1.0],[122,-39,69,1.0],[122,-39,70,1.0],[122,-39,71,1.0],[122,-39,72,1.0],[122,-39,73,1.0],[122,-39,74,1.0],[122,-39,75,1.0],[122,-39,76,1.0],[122,-39,77,1.0],[122,-39,78,1.0],[122,-39,79,1.0],[122,-38,64,1.0],[122,-38,65,1.0],[122,-38,66,1.0],[122,-38,67,1.0],[122,-38,68,1.0],[122,-38,69,1.0],[122,-38,70,1.0],[122,-38,71,1.0],[122,-38,72,1.0],[122,-38,73,1.0],[122,-38,74,1.0],[122,-38,75,1.0],[122,-38,76,1.0],[122,-38,77,1.0],[122,-38,78,1.0],[122,-38,79,1.0],[122,-37,64,1.0],[122,-37,65,1.0],[122,-37,66,1.0],[122,-37,67,1.0],[122,-37,68,1.0],[122,-37,69,1.0],[122,-37,70,1.0],[122,-37,71,1.0],[122,-37,72,1.0],[122,-37,73,1.0],[122,-37,74,1.0],[122,-37,75,1.0],[122,-37,76,1.0],[122,-37,77,1.0],[122,-37,78,1.0],[122,-37,79,1.0],[122,-36,64,1.0],[122,-36,65,1.0],[122,-36,66,1.0],[122,-36,67,1.0],[122,-36,68,1.0],[122,-36,69,1.0],[122,-36,70,1.0],[122,-36,71,1.0],[122,-36,72,1.0],[122,-36,73,1.0],[122,-36,74,1.0],[122,-36,75,1.0],[122,-36,76,1.0],[122,-36,77,1.0],[122,-36,78,1.0],[122,-36,79,1.0],[122,-35,64,1.0],[122,-35,65,1.0],[122,-35,66,1.0],[122,-35,67,1.0],[122,-35,68,1.0],[122,-35,69,1.0],[122,-35,70,1.0],[122,-35,71,1.0],[122,-35,72,1.0],[122,-35,73,1.0],[122,-35,74,1.0],[122,-35,75,1.0],[122,-35,76,1.0],[122,-35,77,1.0],[122,-35,78,1.0],[122,-35,79,1.0],[122,-34,64,1.0],[122,-34,65,1.0],[122,-34,66,1.0],[122,-34,67,1.0],[122,-34,68,1.0],[122,-34,69,1.0],[122,-34,70,1.0],[122,-34,71,1.0],[122,-34,72,1.0],[122,-34,73,1.0],[122,-34,74,1.0],[122,-34,75,1.0],[122,-34,76,1.0],[122,-34,77,1.0],[122,-34,78,1.0],[122,-34,79,1.0],[122,-33,64,1.0],[122,-33,65,1.0],[122,-33,66,1.0],[122,-33,67,1.0],[122,-33,68,1.0],[122,-33,69,1.0],[122,-33,70,1.0],[122,-33,71,1.0],[122,-33,72,1.0],[122,-33,73,1.0],[122,-33,74,1.0],[122,-33,75,1.0],[122,-33,76,1.0],[122,-33,77,1.0],[122,-33,78,1.0],[122,-33,79,1.0],[122,-32,64,1.0],[122,-32,65,1.0],[122,-32,66,1.0],[122,-32,67,1.0],[122,-32,68,1.0],[122,-32,69,1.0],[122,-32,70,1.0],[122,-32,71,1.0],[122,-32,72,1.0],[122,-32,73,1.0],[122,-32,74,1.0],[122,-32,75,1.0],[122,-32,76,1.0],[122,-32,77,1.0],[122,-32,78,1.0],[122,-32,79,1.0],[122,-31,64,1.0],[122,-31,65,1.0],[122,-31,66,1.0],[122,-31,67,1.0],[122,-31,68,1.0],[122,-31,69,1.0],[122,-31,70,1.0],[122,-31,71,1.0],[122,-31,72,1.0],[122,-31,73,1.0],[122,-31,74,1.0],[122,-31,75,1.0],[122,-31,76,1.0],[122,-31,77,1.0],[122,-31,78,1.0],[122,-31,79,1.0],[122,-30,64,1.0],[122,-30,65,1.0],[122,-30,66,1.0],[122,-30,67,1.0],[122,-30,68,1.0],[122,-30,69,1.0],[122,-30,70,1.0],[122,-30,71,1.0],[122,-30,72,1.0],[122,-30,73,1.0],[122,-30,74,1.0],[122,-30,75,1.0],[122,-30,76,1.0],[122,-30,77,1.0],[122,-30,78,1.0],[122,-30,79,1.0],[122,-29,64,1.0],[122,-29,65,1.0],[122,-29,66,1.0],[122,-29,67,1.0],[122,-29,68,1.0],[122,-29,69,1.0],[122,-29,70,1.0],[122,-29,71,1.0],[122,-29,72,1.0],[122,-29,73,1.0],[122,-29,74,1.0],[122,-29,75,1.0],[122,-29,76,1.0],[122,-29,77,1.0],[122,-29,78,1.0],[122,-29,79,1.0],[122,-28,64,1.0],[122,-28,65,1.0],[122,-28,66,1.0],[122,-28,67,1.0],[122,-28,68,1.0],[122,-28,69,1.0],[122,-28,70,1.0],[122,-28,71,1.0],[122,-28,72,1.0],[122,-28,73,1.0],[122,-28,74,1.0],[122,-28,75,1.0],[122,-28,76,1.0],[122,-28,77,1.0],[122,-28,78,1.0],[122,-28,79,1.0],[122,-27,64,1.0],[122,-27,65,1.0],[122,-27,66,1.0],[122,-27,67,1.0],[122,-27,68,1.0],[122,-27,69,1.0],[122,-27,70,1.0],[122,-27,71,1.0],[122,-27,72,1.0],[122,-27,73,1.0],[122,-27,74,1.0],[122,-27,75,1.0],[122,-27,76,1.0],[122,-27,77,1.0],[122,-27,78,1.0],[122,-27,79,1.0],[122,-26,64,1.0],[122,-26,65,1.0],[122,-26,66,1.0],[122,-26,67,1.0],[122,-26,68,1.0],[122,-26,69,1.0],[122,-26,70,1.0],[122,-26,71,1.0],[122,-26,72,1.0],[122,-26,73,1.0],[122,-26,74,1.0],[122,-26,75,1.0],[122,-26,76,1.0],[122,-26,77,1.0],[122,-26,78,1.0],[122,-26,79,1.0],[122,-25,64,1.0],[122,-25,65,1.0],[122,-25,66,1.0],[122,-25,67,1.0],[122,-25,68,1.0],[122,-25,69,1.0],[122,-25,70,1.0],[122,-25,71,1.0],[122,-25,72,1.0],[122,-25,73,1.0],[122,-25,74,1.0],[122,-25,75,1.0],[122,-25,76,1.0],[122,-25,77,1.0],[122,-25,78,1.0],[122,-25,79,1.0],[122,-24,64,1.0],[122,-24,65,1.0],[122,-24,66,1.0],[122,-24,67,1.0],[122,-24,68,1.0],[122,-24,69,1.0],[122,-24,70,1.0],[122,-24,71,1.0],[122,-24,72,1.0],[122,-24,73,1.0],[122,-24,74,1.0],[122,-24,75,1.0],[122,-24,76,1.0],[122,-24,77,1.0],[122,-24,78,1.0],[122,-24,79,1.0],[122,-23,64,1.0],[122,-23,65,1.0],[122,-23,66,1.0],[122,-23,67,1.0],[122,-23,68,1.0],[122,-23,69,1.0],[122,-23,70,1.0],[122,-23,71,1.0],[122,-23,72,1.0],[122,-23,73,1.0],[122,-23,74,1.0],[122,-23,75,1.0],[122,-23,76,1.0],[122,-23,77,1.0],[122,-23,78,1.0],[122,-23,79,1.0],[122,-22,64,1.0],[122,-22,65,1.0],[122,-22,66,1.0],[122,-22,67,1.0],[122,-22,68,1.0],[122,-22,69,1.0],[122,-22,70,1.0],[122,-22,71,1.0],[122,-22,72,1.0],[122,-22,73,1.0],[122,-22,74,1.0],[122,-22,75,1.0],[122,-22,76,1.0],[122,-22,77,1.0],[122,-22,78,1.0],[122,-22,79,1.0],[122,-21,64,1.0],[122,-21,65,1.0],[122,-21,66,1.0],[122,-21,67,1.0],[122,-21,68,1.0],[122,-21,69,1.0],[122,-21,70,1.0],[122,-21,71,1.0],[122,-21,72,1.0],[122,-21,73,1.0],[122,-21,74,1.0],[122,-21,75,1.0],[122,-21,76,1.0],[122,-21,77,1.0],[122,-21,78,1.0],[122,-21,79,1.0],[122,-20,64,1.0],[122,-20,65,1.0],[122,-20,66,1.0],[122,-20,67,1.0],[122,-20,68,1.0],[122,-20,69,1.0],[122,-20,70,1.0],[122,-20,71,1.0],[122,-20,72,1.0],[122,-20,73,1.0],[122,-20,74,1.0],[122,-20,75,1.0],[122,-20,76,1.0],[122,-20,77,1.0],[122,-20,78,1.0],[122,-20,79,1.0],[122,-19,64,1.0],[122,-19,65,1.0],[122,-19,66,1.0],[122,-19,67,1.0],[122,-19,68,1.0],[122,-19,69,1.0],[122,-19,70,1.0],[122,-19,71,1.0],[122,-19,72,1.0],[122,-19,73,1.0],[122,-19,74,1.0],[122,-19,75,1.0],[122,-19,76,1.0],[122,-19,77,1.0],[122,-19,78,1.0],[122,-19,79,1.0],[122,-18,64,1.0],[122,-18,65,1.0],[122,-18,66,1.0],[122,-18,67,1.0],[122,-18,68,1.0],[122,-18,69,1.0],[122,-18,70,1.0],[122,-18,71,1.0],[122,-18,72,1.0],[122,-18,73,1.0],[122,-18,74,1.0],[122,-18,75,1.0],[122,-18,76,1.0],[122,-18,77,1.0],[122,-18,78,1.0],[122,-18,79,1.0],[122,-17,64,1.0],[122,-17,65,1.0],[122,-17,66,1.0],[122,-17,67,1.0],[122,-17,68,1.0],[122,-17,69,1.0],[122,-17,70,1.0],[122,-17,71,1.0],[122,-17,72,1.0],[122,-17,73,1.0],[122,-17,74,1.0],[122,-17,75,1.0],[122,-17,76,1.0],[122,-17,77,1.0],[122,-17,78,1.0],[122,-17,79,1.0],[122,-16,64,1.0],[122,-16,65,1.0],[122,-16,66,1.0],[122,-16,67,1.0],[122,-16,68,1.0],[122,-16,69,1.0],[122,-16,70,1.0],[122,-16,71,1.0],[122,-16,72,1.0],[122,-16,73,1.0],[122,-16,74,1.0],[122,-16,75,1.0],[122,-16,76,1.0],[122,-16,77,1.0],[122,-16,78,1.0],[122,-16,79,1.0],[122,-15,64,0.6755596301317977],[122,-15,65,0.7656731933984559],[122,-15,66,0.8610968414591665],[122,-15,67,0.961589175996007],[122,-15,68,1.0],[122,-15,69,1.0],[122,-15,70,1.0],[122,-15,71,1.0],[122,-15,72,1.0],[122,-15,73,1.0],[122,-15,74,1.0],[122,-15,75,1.0],[122,-15,76,1.0],[122,-15,77,1.0],[122,-15,78,1.0],[122,-15,79,1.0],[122,-14,64,0.42580447326799276],[122,-14,65,0.4925144543272039],[122,-14,66,0.5640660768197975],[122,-14,67,0.6402895363853683],[122,-14,68,0.720988068424352],[122,-14,69,0.8059414361081066],[122,-14,70,0.8949094189457442],[122,-14,71,0.9876352844663191],[122,-14,72,1.0],[122,-14,73,1.0],[122,-14,74,1.0],[122,-14,75,1.0],[122,-14,76,1.0],[122,-14,77,1.0],[122,-14,78,1.0],[122,-14,79,1.0],[122,-13,64,0.24672183924735494],[122,-13,65,0.2935409075625654],[122,-13,66,0.3446513148344838],[122,-13,67,0.39995486034138894],[122,-13,68,0.4593240035841226],[122,-13,69,0.5226052008516808],[122,-13,70,0.5896222484870872],[122,-13,71,0.660179615678663],[122,-13,72,0.7340657502509187],[122,-13,73,0.8110563416916198],[122,-13,74,0.890917526511173],[122,-13,75,0.9734090220381936],[122,-13,76,1.0],[122,-13,77,1.0],[122,-13,78,1.0],[122,-13,79,1.0],[122,-12,64,0.12655763796613476],[122,-12,65,0.15699859453051396],[122,-12,66,0.19109872827902405],[122,-12,67,0.2288314518035179],[122,-12,68,0.27013855759923],[122,-12,69,0.31493340571397066],[122,-12,70,0.3631041242637555],[122,-12,71,0.41451680590604884],[122,-12,72,0.4690186839762314],[122,-12,73,0.5264412727204042],[122,-12,74,0.5866034568845082],[122,-12,75,0.6493145168826483],[122,-12,76,0.7143770768298682],[122,-12,77,0.7815899638754045],[122,-12,78,0.8507509685501409],[122,-12,79,0.9216594972056142],[122,-11,64,0.05355768353597147],[122,-11,65,0.07113346049355485],[122,-11,66,0.0916543933887509],[122,-11,67,0.11516551779557356],[122,-11,68,0.141678068091773],[122,-11,69,0.17117251871975117],[122,-11,70,0.20360164450267504],[122,-11,71,0.23889358337260438],[122,-11,72,0.2769548854478497],[122,-11,73,0.31767353308945323],[122,-11,74,0.3609219173601645],[122,-11,75,0.4065597572280354],[122,-11,76,0.4544369488751088],[122,-11,77,0.5043963335790819],[122,-11,78,0.5562763738590699],[122,-11,79,0.6099137288852088],[122,-10,64,0.015967694191966607],[122,-10,65,0.02419135445512095],[122,-10,66,0.03456428975927236],[122,-10,67,0.047203168322850424],[122,-10,68,0.062188775288357465],[122,-10,69,0.07956891012313608],[122,-10,70,0.09936130928671622],[122,-10,71,0.12155657778675878],[122,-10,72,0.14612111379263237],[122,-10,73,0.17300001113353905],[122,-10,74,0.20211992526747433],[122,-10,75,0.23339188918264225],[122,-10,76,0.266714066667212],[122,-10,77,0.30197443144673813],[122,-10,78,0.33905336185798],[122,-10,79,0.3778261419814601],[122,-9,64,0.008959826047658284],[122,-9,65,0.012075185307016643],[122,-9,66,0.015100960961058701],[122,-9,67,0.018035551971994725],[122,-9,68,0.020877328858133558],[122,-9,69,0.02836885230161205],[122,-9,70,0.03862952044518396],[122,-9,71,0.05075232022821023],[122,-9,72,0.06476402913529315],[122,-9,73,0.08066749581359697],[122,-9,74,0.09844439819194716],[122,-9,75,0.11805795874262967],[122,-9,76,0.13945560439738927],[122,-9,77,0.1625715596479804],[122,-9,78,0.18732936247780504],[122,-9,79,0.21364429396980572],[122,-8,64,0.005573545166695372],[122,-8,65,0.008650316421655153],[122,-8,66,0.011640705010370053],[122,-8,67,0.014543182424724264],[122,-8,68,0.017356182665551056],[122,-8,69,0.020078116207602387],[122,-8,70,0.02270738351585483],[122,-8,71,0.025242388112967563],[122,-8,72,0.027681549198143397],[122,-8,73,0.030023313817094298],[122,-8,74,0.03814215385572688],[122,-8,75,0.048804911669059196],[122,-8,76,0.06090863565170554],[122,-8,77,0.07443491937888727],[122,-8,78,0.0893517043092143],[122,-8,79,0.10561564062031652],[122,-7,64,0.0021527059303923235],[122,-7,65,0.005188942232242338],[122,-7,66,0.0081419815128961],[122,-7,67,0.011010369420498815],[122,-7,68,0.01379260527642251],[122,-7,69,0.01648715619600473],[122,-7,70,0.019092470762254697],[122,-7,71,0.02160699225234112],[122,-7,72,0.024029171417113866],[122,-7,73,0.026357478813359557],[122,-7,74,0.028590416688931433],[122,-7,75,0.03072653042090126],[122,-7,76,0.03276441950642405],[122,-7,77,0.034702748106577384],[122,-7,78,0.03654025514297703],[122,-7,79,0.041987535865322806],[122,-6,64,-0.0012965540506786888],[122,-6,65,0.0016972214977753058],[122,-6,66,0.004610966609426455],[122,-6,67,0.007443302630854923],[122,-6,68,0.010192795968358391],[122,-6,69,0.012857972346867266],[122,-6,70,0.01543733062386432],[122,-6,71,0.01792935615812309],[122,-6,72,0.020332533733518163],[122,-6,73,0.022645360037606053],[122,-6,74,0.024866355695117186],[122,-6,75,0.026994076856508578],[122,-6,76,0.02902712634126585],[122,-6,77,0.030964164336216488],[122,-6,78,0.03280391864865738],[122,-6,79,0.034545194514561964],[122,-5,64,-0.0047680602510960166],[122,-5,65,-0.001818646828663971],[122,-5,66,0.0010538799550452865],[122,-5,67,0.003848218600352317],[122,-5,68,0.0065630042863878],[122,-5,69,0.009196823250404954],[122,-5,70,0.011748226724539505],[122,-5,71,0.014215744429830111],[122,-5,72,0.01659789762775478],[122,-5,73,0.018893211728978378],[122,-5,74,0.021100228459456888],[122,-5,75,0.023217517584041787],[122,-5,76,0.02524368818727859],[122,-5,77,0.027177399511659102],[122,-5,78,0.02901737135312922],[122,-5,79,0.0307623940141208],[122,-4,64,-0.008255610318193683],[122,-4,65,-0.005352432742217868],[122,-4,66,-0.00252302447004623],[122,-4,67,2.3139151854486423E-4],[122,-4,68,0.002909520784250004],[122,-4,69,0.005510011910010958],[122,-4,70,0.00803147054308554],[122,-4,71,0.010472472997222704],[122,-4,72,0.012831579415200203],[122,-4,73,0.015107346491416832],[122,-4,74,0.017298339754687732],[122,-4,75,0.019403145411386727],[122,-4,76,0.02142038174862669],[122,-4,77,0.02334871009773898],[122,-4,78,0.025186845357855037],[122,-4,79,0.026933566079857342],[122,-3,64,-0.011752982128692954],[122,-3,65,-0.00889788329443255],[122,-3,66,-0.006113466512200252],[122,-3,67,-0.0034008749669432042],[122,-3,68,-7.613311893873501E-4],[122,-3,69,0.0018038775101453797],[122,-3,70,0.004293413171458191],[122,-3,71,0.006705900877551102],[122,-3,72,0.00903994201130024],[122,-3,73,0.011294127075439073],[122,-3,74,0.01346704807598495],[122,-3,75,0.015557310469259768],[122,-3,76,0.017563544672192434],[122,-3,77,0.01948441713616776],[122,-3,78,0.0213186409842197],[122,-3,79,0.023064986211842227],[122,-2,64,-0.01525394081433188],[122,-2,65,-0.012448729667278224],[122,-2,66,-0.009711146958456561],[122,-2,67,-0.007042254896207141],[122,-2,68,-0.004443202659755986],[122,-2,69,-0.0019152117667760107],[122,-2,70,5.404381262336388E-4],[122,-2,71,0.0029224229905588164],[122,-2,72,0.005229387759131308],[122,-2,73,0.007459959227330594],[122,-2,74,0.009612758520873274],[122,-2,75,0.011686413130937982],[122,-2,76,0.01367956851621191],[122,-2,77,0.01559089927212589],[122,-2,78,0.01741911986707316],[122,-2,79,0.019162994945888405],[122,-1,64,-0.01875224475652517],[122,-1,65,-0.0159986932130423],[122,-1,66,-0.013309753613173575],[122,-1,67,-0.010686406101748688],[122,-1,68,-0.008129725149890576],[122,-1,69,-0.005640864874527585],[122,-1,70,-0.0032210447866901706],[122,-1,71,-8.715359687873139E-4],[122,-1,72,0.0014063523194011857],[122,-1,73,0.003611285605704742],[122,-1,74,0.005741916741661503],[122,-1,75,0.007796898009886609],[122,-1,76,0.009774892802392757],[122,-1,77,0.01167458687013246],[122,-1,78,0.01349469914355629],[122,-1,79,0.015233992124463733],[122,0,64,-0.022241650550029815],[122,0,65,-0.019541490460071642],[122,0,66,-0.01690296633713092],[122,0,67,-0.01432697527203914],[122,0,68,-0.011814515759587772],[122,0,69,-0.009366672988227104],[122,0,70,-0.00698460455413033],[122,0,71,-0.004669526599819618],[122,0,72,-0.00242270037708929],[122,0,73,-2.4541923453904463E-4],[122,0,74,0.001861003970430243],[122,0,75,0.0038952490353084124],[122,0,76,0.005856000151538698],[122,0,77,0.007741957219219421],[122,0,78,0.009551846737240091],[122,0,79,0.011284432269128612],[122,1,64,-0.02571591693563295],[122,1,65,-0.02307083708438143],[122,1,66,-0.02048446104912261],[122,1,67,-0.017957601973971206],[122,1,68,-0.015491181199432755],[122,1,69,-0.013086213540516388],[122,1,70,-0.010743792984416939],[122,1,71,-0.00846507880795809],[122,1,72,-0.006251282114536599],[122,1,73,-0.004103652790876627],[122,1,74,-0.002023466883448878],[122,1,75,-1.2014394403243867E-5],[122,1,76,0.0019294125026664138],[122,1,77,0.0037995308273960846],[122,1,78,0.005597077737557958],[122,1,79,0.007320821054476283],[122,2,64,-0.011860984829758987],[122,2,65,-0.018576700770023657],[122,2,66,-0.02404791269002402],[122,2,67,-0.021571921634190187],[122,2,68,-0.0191533207798845],[122,2,69,-0.016793053208753385],[122,2,70,-0.01449214768293313],[122,2,71,-0.012251704758753139],[122,2,72,-0.010072883314768043],[122,2,73,-0.007956887494428272],[122,2,74,-0.005904954063244268],[122,2,75,-0.00391834018029142],[122,2,76,-0.0019983115843755853],[122,2,77,-1.461311945872082E-4],[122,2,78,0.0016369518745465717],[122,2,79,0.0033497128835936335],[122,3,64,-0.0010986109192519563],[122,3,65,-0.0027423790115656157],[122,3,66,-0.005441954990589009],[122,3,67,-0.009387269665188984],[122,3,68,-0.014731559733173803],[122,3,69,-0.020480749853223068],[122,3,70,-0.018223193974408712],[122,3,71,-0.016022900774189275],[122,3,72,-0.013880974897420212],[122,3,73,-0.011798572523839167],[122,3,74,-0.009776888722257265],[122,3,75,-0.007817145213552867],[122,3,76,-0.005920578542788477],[122,3,77,-0.004088428660178063],[122,3,78,-0.002321927911113103],[122,3,79,-6.222904349671987E-4],[122,4,64,1.0198673451042251E-5],[122,4,65,-3.4439070859108733E-6],[122,4,66,-1.328291728444904E-4],[122,4,67,-6.377945823849084E-4],[122,4,68,-0.0017396440655362254],[122,4,69,-0.0036236668946421167],[122,4,70,-0.006441692738520339],[122,4,71,-0.010314667433749397],[122,4,72,-0.015335234486277133],[122,4,73,-0.015622134551778827],[122,4,74,-0.013632675608676294],[122,4,75,-0.011701815988345347],[122,4,76,-0.00983076032921356],[122,4,77,-0.008020722744672172],[122,4,78,-0.0062729158027566775],[122,4,79,-0.004588539908708389],[122,5,64,0.0031478619067854957],[122,5,65,0.0013226489014557508],[122,5,66,4.027391390294483E-4],[122,5,67,5.83811303337353E-5],[122,5,68,9.753410497425185E-8],[122,5,69,-2.370063117929153E-5],[122,5,70,-2.2914223582875978E-4],[122,5,71,-7.993515443830465E-4],[122,5,72,-0.0018869162216301133],[122,5,73,-0.0036163536303383597],[122,5,74,-0.006086561856220931],[122,5,75,-0.009373242633690632],[122,5,76,-0.013531284173731886],[122,5,77,-0.01193633533355868],[122,5,78,-0.01020932234708919],[122,5,79,-0.008542338481187607],[122,6,64,0.019996700506618795],[122,6,65,0.012918347115638227],[122,6,66,0.007847323470035507],[122,6,67,0.004383956662459053],[122,6,68,0.002170489754597231],[122,6,69,8.888265471597023E-4],[122,6,70,2.5822758913631404E-4],[122,6,71,3.297236826338019E-5],[122,6,72,2.2081569487185515E-9],[122,6,73,-2.3442115271738535E-5],[122,6,74,-1.921746328801686E-4],[122,6,75,-6.353976092430167E-4],[122,6,76,-0.001459002213506059],[122,6,77,-0.002747825374950551],[122,6,78,-0.00456785270466519],[122,6,79,-0.006968358375811837],[122,7,64,0.06223893992560004],[122,7,65,0.046466001736381254],[122,7,66,0.03388340021921563],[122,7,67,0.024021533654334685],[122,7,68,0.016454259314540434],[122,7,69,0.010796766268427892],[122,7,70,0.006703393099807112],[122,7,71,0.003865405224163443],[122,7,72,0.0020087460965243385],[122,7,73,8.917761268613791E-4],[122,7,74,3.0301254949413267E-4],[122,7,75,5.8882834992671803E-5],[122,7,76,1.5034936697326256E-6],[122,7,77,-3.504697898263051E-6],[122,7,78,-6.915490594540461E-5],[122,7,79,-2.891766990951256E-4],[122,8,64,0.1415567093062245],[122,8,65,0.11364786702347364],[122,8,66,0.0901933486156635],[122,8,67,0.07065361614967286],[122,8,68,0.0545340349113296],[122,8,69,0.04138287171698489],[122,8,70,0.030789231795494604],[122,8,71,0.02238094866077871],[122,8,72,0.015822441038023785],[122,8,73,0.010812550462931139],[122,8,74,0.00708237264217694],[122,8,75,0.004393095044231274],[122,8,76,0.002533852494545848],[122,8,77,0.0013196117792068436],[122,8,78,5.890954210003049E-4],[122,8,79,2.0275389033887377E-4],[122,9,64,0.269632041447605],[122,9,65,0.22614610045881384],[122,9,66,0.18845945067825542],[122,9,67,0.15596261055179728],[122,9,68,0.12809234717393042],[122,9,69,0.10432979758282644],[122,9,70,0.08419852225729353],[122,9,71,0.06726250497556076],[122,9,72,0.05312411286743867],[122,9,73,0.04142203008229428],[122,9,74,0.03182917800317625],[122,9,75,0.024050634356637873],[122,9,76,0.01782156291699065],[122,9,77,0.01290516478215764],[122,9,78,0.009090661407442047],[122,9,79,0.006191318736800415],[122,10,64,0.4581468727759757],[122,10,65,0.3956427627133881],[122,10,66,0.34036389117912347],[122,10,67,0.2916308255836315],[122,10,68,0.2488116286194049],[122,10,69,0.21132010001466794],[122,10,70,0.17861394409774525],[122,10,71,0.15019287707221451],[122,10,72,0.1255966876026697],[122,10,73,0.1044032639363235],[122,10,74,0.08622660033342784],[122,10,75,0.07071479503620903],[122,10,76,0.05754805139957994],[122,10,77,0.04643669313428338],[122,10,78,0.03711920387095003],[122,10,79,0.029360300461580932],[122,11,64,0.7187830433187944],[122,11,65,0.6338198176178633],[122,11,66,0.5575887576107589],[122,11,67,0.4893404722513346],[122,11,68,0.42837421361309774],[122,11,69,0.3740362365767037],[122,11,70,0.32571807791418966],[122,11,71,0.28285476841066404],[122,11,72,0.24492299139133492],[122,11,73,0.21143920068166236],[122,11,74,0.18195771061672608],[122,11,75,0.156068770209401],[122,11,76,0.13339663302494315],[122,11,77,0.11359763368653492],[122,11,78,0.09635828124223948],[122,11,79,0.08139337888657898],[122,12,64,1.0],[122,12,65,0.9523591321369124],[122,12,66,0.8518160401568493],[122,12,67,0.760773663811668],[122,12,68,0.6784623383325571],[122,12,69,0.6041605662091007],[122,12,70,0.5371934052458535],[122,12,71,0.47693078296075625],[122,12,72,0.42278575046111033],[122,12,73,0.37421268862722484],[122,12,74,0.3307054790634025],[122,12,75,0.29179565180550865],[122,12,76,0.2570505212568646],[122,12,77,0.22607132125132903],[122,12,78,0.19849134949578],[122,12,79,0.17397413096169548],[122,13,64,1.0],[122,13,65,1.0],[122,13,66,1.0],[122,13,67,1.0],[122,13,68,1.0],[122,13,69,0.9133753491921379],[122,13,70,0.8247223085345963],[122,13,71,0.7441034251596336],[122,13,72,0.6708675910737502],[122,13,73,0.6044064756848828],[122,13,74,0.5441527750577037],[122,13,75,0.48957843050075395],[122,13,76,0.44019282788110264],[122,13,77,0.39554098854012004],[122,13,78,0.35520176208413945],[122,13,79,0.3187860306959706],[122,14,64,1.0],[122,14,65,1.0],[122,14,66,1.0],[122,14,67,1.0],[122,14,68,1.0],[122,14,69,1.0],[122,14,70,1.0],[122,14,71,1.0],[122,14,72,1.0],[122,14,73,0.9137032093239319],[122,14,74,0.8339823671089461],[122,14,75,0.7610999956661517],[122,14,76,0.6945065629499882],[122,14,77,0.6336897661047515],[122,14,78,0.5781727698761109],[122,14,79,0.5275124490925083],[122,15,64,1.0],[122,15,65,1.0],[122,15,66,1.0],[122,15,67,1.0],[122,15,68,1.0],[122,15,69,1.0],[122,15,70,1.0],[122,15,71,1.0],[122,15,72,1.0],[122,15,73,1.0],[122,15,74,1.0],[122,15,75,1.0],[122,15,76,1.0],[122,15,77,0.9522006822824134],[122,15,78,0.8790875210984599],[122,15,79,0.8118366540870305],[122,16,64,1.0],[122,16,65,1.0],[122,16,66,1.0],[122,16,67,1.0],[122,16,68,1.0],[122,16,69,1.0],[122,16,70,1.0],[122,16,71,1.0],[122,16,72,1.0],[122,16,73,1.0],[122,16,74,1.0],[122,16,75,1.0],[122,16,76,1.0],[122,16,77,1.0],[122,16,78,1.0],[122,16,79,1.0],[122,17,64,1.0],[122,17,65,1.0],[122,17,66,1.0],[122,17,67,1.0],[122,17,68,1.0],[122,17,69,1.0],[122,17,70,1.0],[122,17,71,1.0],[122,17,72,1.0],[122,17,73,1.0],[122,17,74,1.0],[122,17,75,1.0],[122,17,76,1.0],[122,17,77,1.0],[122,17,78,1.0],[122,17,79,1.0],[122,18,64,1.0],[122,18,65,1.0],[122,18,66,1.0],[122,18,67,1.0],[122,18,68,1.0],[122,18,69,1.0],[122,18,70,1.0],[122,18,71,1.0],[122,18,72,1.0],[122,18,73,1.0],[122,18,74,1.0],[122,18,75,1.0],[122,18,76,1.0],[122,18,77,1.0],[122,18,78,1.0],[122,18,79,1.0],[122,19,64,1.0],[122,19,65,1.0],[122,19,66,1.0],[122,19,67,1.0],[122,19,68,1.0],[122,19,69,1.0],[122,19,70,1.0],[122,19,71,1.0],[122,19,72,1.0],[122,19,73,1.0],[122,19,74,1.0],[122,19,75,1.0],[122,19,76,1.0],[122,19,77,1.0],[122,19,78,1.0],[122,19,79,1.0],[122,20,64,1.0],[122,20,65,1.0],[122,20,66,1.0],[122,20,67,1.0],[122,20,68,1.0],[122,20,69,1.0],[122,20,70,1.0],[122,20,71,1.0],[122,20,72,1.0],[122,20,73,1.0],[122,20,74,1.0],[122,20,75,1.0],[122,20,76,1.0],[122,20,77,1.0],[122,20,78,1.0],[122,20,79,1.0],[122,21,64,1.0],[122,21,65,1.0],[122,21,66,1.0],[122,21,67,1.0],[122,21,68,1.0],[122,21,69,1.0],[122,21,70,1.0],[122,21,71,1.0],[122,21,72,1.0],[122,21,73,1.0],[122,21,74,1.0],[122,21,75,1.0],[122,21,76,1.0],[122,21,77,1.0],[122,21,78,1.0],[122,21,79,1.0],[122,22,64,1.0],[122,22,65,1.0],[122,22,66,1.0],[122,22,67,1.0],[122,22,68,1.0],[122,22,69,1.0],[122,22,70,1.0],[122,22,71,1.0],[122,22,72,1.0],[122,22,73,1.0],[122,22,74,1.0],[122,22,75,1.0],[122,22,76,1.0],[122,22,77,1.0],[122,22,78,1.0],[122,22,79,1.0],[122,23,64,1.0],[122,23,65,1.0],[122,23,66,1.0],[122,23,67,1.0],[122,23,68,1.0],[122,23,69,1.0],[122,23,70,1.0],[122,23,71,1.0],[122,23,72,1.0],[122,23,73,1.0],[122,23,74,1.0],[122,23,75,1.0],[122,23,76,1.0],[122,23,77,1.0],[122,23,78,1.0],[122,23,79,1.0],[122,24,64,1.0],[122,24,65,1.0],[122,24,66,1.0],[122,24,67,1.0],[122,24,68,1.0],[122,24,69,1.0],[122,24,70,1.0],[122,24,71,1.0],[122,24,72,1.0],[122,24,73,1.0],[122,24,74,1.0],[122,24,75,1.0],[122,24,76,1.0],[122,24,77,1.0],[122,24,78,1.0],[122,24,79,1.0],[122,25,64,1.0],[122,25,65,1.0],[122,25,66,1.0],[122,25,67,1.0],[122,25,68,1.0],[122,25,69,1.0],[122,25,70,1.0],[122,25,71,1.0],[122,25,72,1.0],[122,25,73,1.0],[122,25,74,1.0],[122,25,75,1.0],[122,25,76,1.0],[122,25,77,1.0],[122,25,78,1.0],[122,25,79,1.0],[122,26,64,1.0],[122,26,65,1.0],[122,26,66,1.0],[122,26,67,1.0],[122,26,68,1.0],[122,26,69,1.0],[122,26,70,1.0],[122,26,71,1.0],[122,26,72,1.0],[122,26,73,1.0],[122,26,74,1.0],[122,26,75,1.0],[122,26,76,1.0],[122,26,77,1.0],[122,26,78,1.0],[122,26,79,1.0],[122,27,64,1.0],[122,27,65,1.0],[122,27,66,1.0],[122,27,67,1.0],[122,27,68,1.0],[122,27,69,1.0],[122,27,70,1.0],[122,27,71,1.0],[122,27,72,1.0],[122,27,73,1.0],[122,27,74,1.0],[122,27,75,1.0],[122,27,76,1.0],[122,27,77,1.0],[122,27,78,1.0],[122,27,79,1.0],[122,28,64,1.0],[122,28,65,1.0],[122,28,66,1.0],[122,28,67,1.0],[122,28,68,1.0],[122,28,69,1.0],[122,28,70,1.0],[122,28,71,1.0],[122,28,72,1.0],[122,28,73,1.0],[122,28,74,1.0],[122,28,75,1.0],[122,28,76,1.0],[122,28,77,1.0],[122,28,78,1.0],[122,28,79,1.0],[122,29,64,1.0],[122,29,65,1.0],[122,29,66,1.0],[122,29,67,1.0],[122,29,68,1.0],[122,29,69,1.0],[122,29,70,1.0],[122,29,71,1.0],[122,29,72,1.0],[122,29,73,1.0],[122,29,74,1.0],[122,29,75,1.0],[122,29,76,1.0],[122,29,77,1.0],[122,29,78,1.0],[122,29,79,1.0],[122,30,64,1.0],[122,30,65,1.0],[122,30,66,1.0],[122,30,67,1.0],[122,30,68,1.0],[122,30,69,1.0],[122,30,70,1.0],[122,30,71,1.0],[122,30,72,1.0],[122,30,73,1.0],[122,30,74,1.0],[122,30,75,1.0],[122,30,76,1.0],[122,30,77,1.0],[122,30,78,1.0],[122,30,79,1.0],[122,31,64,1.0],[122,31,65,1.0],[122,31,66,1.0],[122,31,67,1.0],[122,31,68,1.0],[122,31,69,1.0],[122,31,70,1.0],[122,31,71,1.0],[122,31,72,1.0],[122,31,73,1.0],[122,31,74,1.0],[122,31,75,1.0],[122,31,76,1.0],[122,31,77,1.0],[122,31,78,1.0],[122,31,79,1.0],[122,32,64,1.0],[122,32,65,1.0],[122,32,66,1.0],[122,32,67,1.0],[122,32,68,1.0],[122,32,69,1.0],[122,32,70,1.0],[122,32,71,1.0],[122,32,72,1.0],[122,32,73,1.0],[122,32,74,1.0],[122,32,75,1.0],[122,32,76,1.0],[122,32,77,1.0],[122,32,78,1.0],[122,32,79,1.0],[122,33,64,1.0],[122,33,65,1.0],[122,33,66,1.0],[122,33,67,1.0],[122,33,68,1.0],[122,33,69,1.0],[122,33,70,1.0],[122,33,71,1.0],[122,33,72,1.0],[122,33,73,1.0],[122,33,74,1.0],[122,33,75,1.0],[122,33,76,1.0],[122,33,77,1.0],[122,33,78,1.0],[122,33,79,1.0],[122,34,64,1.0],[122,34,65,1.0],[122,34,66,1.0],[122,34,67,1.0],[122,34,68,1.0],[122,34,69,1.0],[122,34,70,1.0],[122,34,71,1.0],[122,34,72,1.0],[122,34,73,1.0],[122,34,74,1.0],[122,34,75,1.0],[122,34,76,1.0],[122,34,77,1.0],[122,34,78,1.0],[122,34,79,1.0],[122,35,64,1.0],[122,35,65,1.0],[122,35,66,1.0],[122,35,67,1.0],[122,35,68,1.0],[122,35,69,1.0],[122,35,70,1.0],[122,35,71,1.0],[122,35,72,1.0],[122,35,73,1.0],[122,35,74,1.0],[122,35,75,1.0],[122,35,76,1.0],[122,35,77,1.0],[122,35,78,1.0],[122,35,79,1.0],[122,36,64,1.0],[122,36,65,1.0],[122,36,66,1.0],[122,36,67,1.0],[122,36,68,1.0],[122,36,69,1.0],[122,36,70,1.0],[122,36,71,1.0],[122,36,72,1.0],[122,36,73,1.0],[122,36,74,1.0],[122,36,75,1.0],[122,36,76,1.0],[122,36,77,1.0],[122,36,78,1.0],[122,36,79,1.0],[122,37,64,1.0],[122,37,65,1.0],[122,37,66,1.0],[122,37,67,1.0],[122,37,68,1.0],[122,37,69,1.0],[122,37,70,1.0],[122,37,71,1.0],[122,37,72,1.0],[122,37,73,1.0],[122,37,74,1.0],[122,37,75,1.0],[122,37,76,1.0],[122,37,77,1.0],[122,37,78,1.0],[122,37,79,1.0],[122,38,64,1.0],[122,38,65,1.0],[122,38,66,1.0],[122,38,67,1.0],[122,38,68,1.0],[122,38,69,1.0],[122,38,70,1.0],[122,38,71,1.0],[122,38,72,1.0],[122,38,73,1.0],[122,38,74,1.0],[122,38,75,1.0],[122,38,76,1.0],[122,38,77,1.0],[122,38,78,1.0],[122,38,79,1.0],[122,39,64,1.0],[122,39,65,1.0],[122,39,66,1.0],[122,39,67,1.0],[122,39,68,1.0],[122,39,69,1.0],[122,39,70,1.0],[122,39,71,1.0],[122,39,72,1.0],[122,39,73,1.0],[122,39,74,1.0],[122,39,75,1.0],[122,39,76,1.0],[122,39,77,1.0],[122,39,78,1.0],[122,39,79,1.0],[122,40,64,1.0],[122,40,65,1.0],[122,40,66,1.0],[122,40,67,1.0],[122,40,68,1.0],[122,40,69,1.0],[122,40,70,1.0],[122,40,71,1.0],[122,40,72,1.0],[122,40,73,1.0],[122,40,74,1.0],[122,40,75,1.0],[122,40,76,1.0],[122,40,77,1.0],[122,40,78,1.0],[122,40,79,1.0],[122,41,64,1.0],[122,41,65,1.0],[122,41,66,1.0],[122,41,67,1.0],[122,41,68,1.0],[122,41,69,1.0],[122,41,70,1.0],[122,41,71,1.0],[122,41,72,1.0],[122,41,73,1.0],[122,41,74,1.0],[122,41,75,1.0],[122,41,76,1.0],[122,41,77,1.0],[122,41,78,1.0],[122,41,79,1.0],[122,42,64,1.0],[122,42,65,1.0],[122,42,66,1.0],[122,42,67,1.0],[122,42,68,1.0],[122,42,69,1.0],[122,42,70,1.0],[122,42,71,1.0],[122,42,72,1.0],[122,42,73,1.0],[122,42,74,1.0],[122,42,75,1.0],[122,42,76,1.0],[122,42,77,1.0],[122,42,78,1.0],[122,42,79,1.0],[122,43,64,1.0],[122,43,65,1.0],[122,43,66,1.0],[122,43,67,1.0],[122,43,68,1.0],[122,43,69,1.0],[122,43,70,1.0],[122,43,71,1.0],[122,43,72,1.0],[122,43,73,1.0],[122,43,74,1.0],[122,43,75,1.0],[122,43,76,1.0],[122,43,77,1.0],[122,43,78,1.0],[122,43,79,1.0],[122,44,64,1.0],[122,44,65,1.0],[122,44,66,1.0],[122,44,67,1.0],[122,44,68,1.0],[122,44,69,1.0],[122,44,70,1.0],[122,44,71,1.0],[122,44,72,1.0],[122,44,73,1.0],[122,44,74,1.0],[122,44,75,1.0],[122,44,76,1.0],[122,44,77,1.0],[122,44,78,1.0],[122,44,79,1.0],[122,45,64,1.0],[122,45,65,1.0],[122,45,66,1.0],[122,45,67,1.0],[122,45,68,1.0],[122,45,69,1.0],[122,45,70,1.0],[122,45,71,1.0],[122,45,72,1.0],[122,45,73,1.0],[122,45,74,1.0],[122,45,75,1.0],[122,45,76,1.0],[122,45,77,1.0],[122,45,78,1.0],[122,45,79,1.0],[122,46,64,1.0],[122,46,65,1.0],[122,46,66,1.0],[122,46,67,1.0],[122,46,68,1.0],[122,46,69,1.0],[122,46,70,1.0],[122,46,71,1.0],[122,46,72,1.0],[122,46,73,1.0],[122,46,74,1.0],[122,46,75,1.0],[122,46,76,1.0],[122,46,77,1.0],[122,46,78,1.0],[122,46,79,1.0],[122,47,64,1.0],[122,47,65,1.0],[122,47,66,1.0],[122,47,67,1.0],[122,47,68,1.0],[122,47,69,1.0],[122,47,70,1.0],[122,47,71,1.0],[122,47,72,1.0],[122,47,73,1.0],[122,47,74,1.0],[122,47,75,1.0],[122,47,76,1.0],[122,47,77,1.0],[122,47,78,1.0],[122,47,79,1.0],[122,48,64,1.0],[122,48,65,1.0],[122,48,66,1.0],[122,48,67,1.0],[122,48,68,1.0],[122,48,69,1.0],[122,48,70,1.0],[122,48,71,1.0],[122,48,72,1.0],[122,48,73,1.0],[122,48,74,1.0],[122,48,75,1.0],[122,48,76,1.0],[122,48,77,1.0],[122,48,78,1.0],[122,48,79,1.0],[122,49,64,1.0],[122,49,65,1.0],[122,49,66,1.0],[122,49,67,1.0],[122,49,68,1.0],[122,49,69,1.0],[122,49,70,1.0],[122,49,71,1.0],[122,49,72,1.0],[122,49,73,1.0],[122,49,74,1.0],[122,49,75,1.0],[122,49,76,1.0],[122,49,77,1.0],[122,49,78,1.0],[122,49,79,1.0],[122,50,64,1.0],[122,50,65,1.0],[122,50,66,1.0],[122,50,67,1.0],[122,50,68,1.0],[122,50,69,1.0],[122,50,70,1.0],[122,50,71,1.0],[122,50,72,1.0],[122,50,73,1.0],[122,50,74,1.0],[122,50,75,1.0],[122,50,76,1.0],[122,50,77,1.0],[122,50,78,1.0],[122,50,79,1.0],[122,51,64,1.0],[122,51,65,1.0],[122,51,66,1.0],[122,51,67,1.0],[122,51,68,1.0],[122,51,69,1.0],[122,51,70,1.0],[122,51,71,1.0],[122,51,72,1.0],[122,51,73,1.0],[122,51,74,1.0],[122,51,75,1.0],[122,51,76,1.0],[122,51,77,1.0],[122,51,78,1.0],[122,51,79,1.0],[122,52,64,1.0],[122,52,65,1.0],[122,52,66,1.0],[122,52,67,1.0],[122,52,68,1.0],[122,52,69,1.0],[122,52,70,1.0],[122,52,71,1.0],[122,52,72,1.0],[122,52,73,1.0],[122,52,74,1.0],[122,52,75,1.0],[122,52,76,1.0],[122,52,77,1.0],[122,52,78,1.0],[122,52,79,1.0],[122,53,64,1.0],[122,53,65,1.0],[122,53,66,1.0],[122,53,67,1.0],[122,53,68,1.0],[122,53,69,1.0],[122,53,70,1.0],[122,53,71,1.0],[122,53,72,1.0],[122,53,73,1.0],[122,53,74,1.0],[122,53,75,1.0],[122,53,76,1.0],[122,53,77,1.0],[122,53,78,1.0],[122,53,79,1.0],[122,54,64,1.0],[122,54,65,1.0],[122,54,66,1.0],[122,54,67,1.0],[122,54,68,1.0],[122,54,69,1.0],[122,54,70,1.0],[122,54,71,1.0],[122,54,72,1.0],[122,54,73,1.0],[122,54,74,1.0],[122,54,75,1.0],[122,54,76,1.0],[122,54,77,1.0],[122,54,78,1.0],[122,54,79,1.0],[122,55,64,1.0],[122,55,65,1.0],[122,55,66,1.0],[122,55,67,1.0],[122,55,68,1.0],[122,55,69,1.0],[122,55,70,1.0],[122,55,71,1.0],[122,55,72,1.0],[122,55,73,1.0],[122,55,74,1.0],[122,55,75,1.0],[122,55,76,1.0],[122,55,77,1.0],[122,55,78,1.0],[122,55,79,1.0],[122,56,64,1.0],[122,56,65,1.0],[122,56,66,1.0],[122,56,67,1.0],[122,56,68,1.0],[122,56,69,1.0],[122,56,70,1.0],[122,56,71,1.0],[122,56,72,1.0],[122,56,73,1.0],[122,56,74,1.0],[122,56,75,1.0],[122,56,76,1.0],[122,56,77,1.0],[122,56,78,1.0],[122,56,79,1.0],[122,57,64,1.0],[122,57,65,1.0],[122,57,66,1.0],[122,57,67,1.0],[122,57,68,1.0],[122,57,69,1.0],[122,57,70,1.0],[122,57,71,1.0],[122,57,72,1.0],[122,57,73,1.0],[122,57,74,1.0],[122,57,75,1.0],[122,57,76,1.0],[122,57,77,1.0],[122,57,78,1.0],[122,57,79,1.0],[122,58,64,1.0],[122,58,65,1.0],[122,58,66,1.0],[122,58,67,1.0],[122,58,68,1.0],[122,58,69,1.0],[122,58,70,1.0],[122,58,71,1.0],[122,58,72,1.0],[122,58,73,1.0],[122,58,74,1.0],[122,58,75,1.0],[122,58,76,1.0],[122,58,77,1.0],[122,58,78,1.0],[122,58,79,1.0],[122,59,64,1.0],[122,59,65,1.0],[122,59,66,1.0],[122,59,67,1.0],[122,59,68,1.0],[122,59,69,1.0],[122,59,70,1.0],[122,59,71,1.0],[122,59,72,1.0],[122,59,73,1.0],[122,59,74,1.0],[122,59,75,1.0],[122,59,76,1.0],[122,59,77,1.0],[122,59,78,1.0],[122,59,79,1.0],[122,60,64,1.0],[122,60,65,1.0],[122,60,66,1.0],[122,60,67,1.0],[122,60,68,1.0],[122,60,69,1.0],[122,60,70,1.0],[122,60,71,1.0],[122,60,72,1.0],[122,60,73,1.0],[122,60,74,1.0],[122,60,75,1.0],[122,60,76,1.0],[122,60,77,1.0],[122,60,78,1.0],[122,60,79,1.0],[122,61,64,1.0],[122,61,65,1.0],[122,61,66,1.0],[122,61,67,1.0],[122,61,68,1.0],[122,61,69,1.0],[122,61,70,1.0],[122,61,71,1.0],[122,61,72,1.0],[122,61,73,1.0],[122,61,74,1.0],[122,61,75,1.0],[122,61,76,1.0],[122,61,77,1.0],[122,61,78,1.0],[122,61,79,1.0],[122,62,64,1.0],[122,62,65,1.0],[122,62,66,1.0],[122,62,67,1.0],[122,62,68,1.0],[122,62,69,1.0],[122,62,70,1.0],[122,62,71,1.0],[122,62,72,1.0],[122,62,73,1.0],[122,62,74,1.0],[122,62,75,1.0],[122,62,76,1.0],[122,62,77,1.0],[122,62,78,1.0],[122,62,79,1.0],[122,63,64,1.0],[122,63,65,1.0],[122,63,66,1.0],[122,63,67,1.0],[122,63,68,1.0],[122,63,69,1.0],[122,63,70,1.0],[122,63,71,1.0],[122,63,72,1.0],[122,63,73,1.0],[122,63,74,1.0],[122,63,75,1.0],[122,63,76,1.0],[122,63,77,1.0],[122,63,78,1.0],[122,63,79,1.0],[122,64,64,1.0],[122,64,65,1.0],[122,64,66,1.0],[122,64,67,1.0],[122,64,68,1.0],[122,64,69,1.0],[122,64,70,1.0],[122,64,71,1.0],[122,64,72,1.0],[122,64,73,1.0],[122,64,74,1.0],[122,64,75,1.0],[122,64,76,1.0],[122,64,77,1.0],[122,64,78,1.0],[122,64,79,1.0],[122,65,64,1.0],[122,65,65,1.0],[122,65,66,1.0],[122,65,67,1.0],[122,65,68,1.0],[122,65,69,1.0],[122,65,70,1.0],[122,65,71,1.0],[122,65,72,1.0],[122,65,73,1.0],[122,65,74,1.0],[122,65,75,1.0],[122,65,76,1.0],[122,65,77,1.0],[122,65,78,1.0],[122,65,79,1.0],[122,66,64,1.0],[122,66,65,1.0],[122,66,66,1.0],[122,66,67,1.0],[122,66,68,1.0],[122,66,69,1.0],[122,66,70,1.0],[122,66,71,1.0],[122,66,72,1.0],[122,66,73,1.0],[122,66,74,1.0],[122,66,75,1.0],[122,66,76,1.0],[122,66,77,1.0],[122,66,78,1.0],[122,66,79,1.0],[122,67,64,1.0],[122,67,65,1.0],[122,67,66,1.0],[122,67,67,1.0],[122,67,68,1.0],[122,67,69,1.0],[122,67,70,1.0],[122,67,71,1.0],[122,67,72,1.0],[122,67,73,1.0],[122,67,74,1.0],[122,67,75,1.0],[122,67,76,1.0],[122,67,77,1.0],[122,67,78,1.0],[122,67,79,1.0],[122,68,64,1.0],[122,68,65,1.0],[122,68,66,1.0],[122,68,67,1.0],[122,68,68,1.0],[122,68,69,1.0],[122,68,70,1.0],[122,68,71,1.0],[122,68,72,1.0],[122,68,73,1.0],[122,68,74,1.0],[122,68,75,1.0],[122,68,76,1.0],[122,68,77,1.0],[122,68,78,1.0],[122,68,79,1.0],[122,69,64,1.0],[122,69,65,1.0],[122,69,66,1.0],[122,69,67,1.0],[122,69,68,1.0],[122,69,69,1.0],[122,69,70,1.0],[122,69,71,1.0],[122,69,72,1.0],[122,69,73,1.0],[122,69,74,1.0],[122,69,75,1.0],[122,69,76,1.0],[122,69,77,1.0],[122,69,78,1.0],[122,69,79,1.0],[122,70,64,1.0],[122,70,65,1.0],[122,70,66,1.0],[122,70,67,1.0],[122,70,68,1.0],[122,70,69,1.0],[122,70,70,1.0],[122,70,71,1.0],[122,70,72,1.0],[122,70,73,1.0],[122,70,74,1.0],[122,70,75,1.0],[122,70,76,1.0],[122,70,77,1.0],[122,70,78,1.0],[122,70,79,1.0],[122,71,64,1.0],[122,71,65,1.0],[122,71,66,1.0],[122,71,67,1.0],[122,71,68,1.0],[122,71,69,1.0],[122,71,70,1.0],[122,71,71,1.0],[122,71,72,1.0],[122,71,73,1.0],[122,71,74,1.0],[122,71,75,1.0],[122,71,76,1.0],[122,71,77,1.0],[122,71,78,1.0],[122,71,79,1.0],[122,72,64,1.0],[122,72,65,1.0],[122,72,66,1.0],[122,72,67,1.0],[122,72,68,1.0],[122,72,69,1.0],[122,72,70,1.0],[122,72,71,1.0],[122,72,72,1.0],[122,72,73,1.0],[122,72,74,1.0],[122,72,75,1.0],[122,72,76,1.0],[122,72,77,1.0],[122,72,78,1.0],[122,72,79,1.0],[122,73,64,1.0],[122,73,65,1.0],[122,73,66,1.0],[122,73,67,1.0],[122,73,68,1.0],[122,73,69,1.0],[122,73,70,1.0],[122,73,71,1.0],[122,73,72,1.0],[122,73,73,1.0],[122,73,74,1.0],[122,73,75,1.0],[122,73,76,1.0],[122,73,77,1.0],[122,73,78,1.0],[122,73,79,1.0],[122,74,64,1.0],[122,74,65,1.0],[122,74,66,1.0],[122,74,67,1.0],[122,74,68,1.0],[122,74,69,1.0],[122,74,70,1.0],[122,74,71,1.0],[122,74,72,1.0],[122,74,73,1.0],[122,74,74,1.0],[122,74,75,1.0],[122,74,76,1.0],[122,74,77,1.0],[122,74,78,1.0],[122,74,79,1.0],[122,75,64,1.0],[122,75,65,1.0],[122,75,66,1.0],[122,75,67,1.0],[122,75,68,1.0],[122,75,69,1.0],[122,75,70,1.0],[122,75,71,1.0],[122,75,72,1.0],[122,75,73,1.0],[122,75,74,1.0],[122,75,75,1.0],[122,75,76,1.0],[122,75,77,1.0],[122,75,78,1.0],[122,75,79,1.0],[122,76,64,1.0],[122,76,65,1.0],[122,76,66,1.0],[122,76,67,1.0],[122,76,68,1.0],[122,76,69,1.0],[122,76,70,1.0],[122,76,71,1.0],[122,76,72,1.0],[122,76,73,1.0],[122,76,74,1.0],[122,76,75,1.0],[122,76,76,1.0],[122,76,77,1.0],[122,76,78,1.0],[122,76,79,1.0],[122,77,64,1.0],[122,77,65,1.0],[122,77,66,1.0],[122,77,67,1.0],[122,77,68,1.0],[122,77,69,1.0],[122,77,70,1.0],[122,77,71,1.0],[122,77,72,1.0],[122,77,73,1.0],[122,77,74,1.0],[122,77,75,1.0],[122,77,76,1.0],[122,77,77,1.0],[122,77,78,1.0],[122,77,79,1.0],[122,78,64,1.0],[122,78,65,1.0],[122,78,66,1.0],[122,78,67,1.0],[122,78,68,1.0],[122,78,69,1.0],[122,78,70,1.0],[122,78,71,1.0],[122,78,72,1.0],[122,78,73,1.0],[122,78,74,1.0],[122,78,75,1.0],[122,78,76,1.0],[122,78,77,1.0],[122,78,78,1.0],[122,78,79,1.0],[122,79,64,1.0],[122,79,65,1.0],[122,79,66,1.0],[122,79,67,1.0],[122,79,68,1.0],[122,79,69,1.0],[122,79,70,1.0],[122,79,71,1.0],[122,79,72,1.0],[122,79,73,1.0],[122,79,74,1.0],[122,79,75,1.0],[122,79,76,1.0],[122,79,77,1.0],[122,79,78,1.0],[122,79,79,1.0],[122,80,64,1.0],[122,80,65,1.0],[122,80,66,1.0],[122,80,67,1.0],[122,80,68,1.0],[122,80,69,1.0],[122,80,70,1.0],[122,80,71,1.0],[122,80,72,1.0],[122,80,73,1.0],[122,80,74,1.0],[122,80,75,1.0],[122,80,76,1.0],[122,80,77,1.0],[122,80,78,1.0],[122,80,79,1.0],[122,81,64,1.0],[122,81,65,1.0],[122,81,66,1.0],[122,81,67,1.0],[122,81,68,1.0],[122,81,69,1.0],[122,81,70,1.0],[122,81,71,1.0],[122,81,72,1.0],[122,81,73,1.0],[122,81,74,1.0],[122,81,75,1.0],[122,81,76,1.0],[122,81,77,1.0],[122,81,78,1.0],[122,81,79,1.0],[122,82,64,1.0],[122,82,65,1.0],[122,82,66,1.0],[122,82,67,1.0],[122,82,68,1.0],[122,82,69,1.0],[122,82,70,1.0],[122,82,71,1.0],[122,82,72,1.0],[122,82,73,1.0],[122,82,74,1.0],[122,82,75,1.0],[122,82,76,1.0],[122,82,77,1.0],[122,82,78,1.0],[122,82,79,1.0],[122,83,64,1.0],[122,83,65,1.0],[122,83,66,1.0],[122,83,67,1.0],[122,83,68,1.0],[122,83,69,1.0],[122,83,70,1.0],[122,83,71,1.0],[122,83,72,1.0],[122,83,73,1.0],[122,83,74,1.0],[122,83,75,1.0],[122,83,76,1.0],[122,83,77,1.0],[122,83,78,1.0],[122,83,79,1.0],[122,84,64,1.0],[122,84,65,1.0],[122,84,66,1.0],[122,84,67,1.0],[122,84,68,1.0],[122,84,69,1.0],[122,84,70,1.0],[122,84,71,1.0],[122,84,72,1.0],[122,84,73,1.0],[122,84,74,1.0],[122,84,75,1.0],[122,84,76,1.0],[122,84,77,1.0],[122,84,78,1.0],[122,84,79,1.0],[122,85,64,1.0],[122,85,65,1.0],[122,85,66,1.0],[122,85,67,1.0],[122,85,68,1.0],[122,85,69,1.0],[122,85,70,1.0],[122,85,71,1.0],[122,85,72,1.0],[122,85,73,1.0],[122,85,74,1.0],[122,85,75,1.0],[122,85,76,1.0],[122,85,77,1.0],[122,85,78,1.0],[122,85,79,1.0],[122,86,64,1.0],[122,86,65,1.0],[122,86,66,1.0],[122,86,67,1.0],[122,86,68,1.0],[122,86,69,1.0],[122,86,70,1.0],[122,86,71,1.0],[122,86,72,1.0],[122,86,73,1.0],[122,86,74,1.0],[122,86,75,1.0],[122,86,76,1.0],[122,86,77,1.0],[122,86,78,1.0],[122,86,79,1.0],[122,87,64,1.0],[122,87,65,1.0],[122,87,66,1.0],[122,87,67,1.0],[122,87,68,1.0],[122,87,69,1.0],[122,87,70,1.0],[122,87,71,1.0],[122,87,72,1.0],[122,87,73,1.0],[122,87,74,1.0],[122,87,75,1.0],[122,87,76,1.0],[122,87,77,1.0],[122,87,78,1.0],[122,87,79,1.0],[122,88,64,1.0],[122,88,65,1.0],[122,88,66,1.0],[122,88,67,1.0],[122,88,68,1.0],[122,88,69,1.0],[122,88,70,1.0],[122,88,71,1.0],[122,88,72,1.0],[122,88,73,1.0],[122,88,74,1.0],[122,88,75,1.0],[122,88,76,1.0],[122,88,77,1.0],[122,88,78,1.0],[122,88,79,1.0],[122,89,64,1.0],[122,89,65,1.0],[122,89,66,1.0],[122,89,67,1.0],[122,89,68,1.0],[122,89,69,1.0],[122,89,70,1.0],[122,89,71,1.0],[122,89,72,1.0],[122,89,73,1.0],[122,89,74,1.0],[122,89,75,1.0],[122,89,76,1.0],[122,89,77,1.0],[122,89,78,1.0],[122,89,79,1.0],[122,90,64,1.0],[122,90,65,1.0],[122,90,66,1.0],[122,90,67,1.0],[122,90,68,1.0],[122,90,69,1.0],[122,90,70,1.0],[122,90,71,1.0],[122,90,72,1.0],[122,90,73,1.0],[122,90,74,1.0],[122,90,75,1.0],[122,90,76,1.0],[122,90,77,1.0],[122,90,78,1.0],[122,90,79,1.0],[122,91,64,1.0],[122,91,65,1.0],[122,91,66,1.0],[122,91,67,1.0],[122,91,68,1.0],[122,91,69,1.0],[122,91,70,1.0],[122,91,71,1.0],[122,91,72,1.0],[122,91,73,1.0],[122,91,74,1.0],[122,91,75,1.0],[122,91,76,1.0],[122,91,77,1.0],[122,91,78,1.0],[122,91,79,1.0],[122,92,64,1.0],[122,92,65,1.0],[122,92,66,1.0],[122,92,67,1.0],[122,92,68,1.0],[122,92,69,1.0],[122,92,70,1.0],[122,92,71,1.0],[122,92,72,1.0],[122,92,73,1.0],[122,92,74,1.0],[122,92,75,1.0],[122,92,76,1.0],[122,92,77,1.0],[122,92,78,1.0],[122,92,79,1.0],[122,93,64,1.0],[122,93,65,1.0],[122,93,66,1.0],[122,93,67,1.0],[122,93,68,1.0],[122,93,69,1.0],[122,93,70,1.0],[122,93,71,1.0],[122,93,72,1.0],[122,93,73,1.0],[122,93,74,1.0],[122,93,75,1.0],[122,93,76,1.0],[122,93,77,1.0],[122,93,78,1.0],[122,93,79,1.0],[122,94,64,1.0],[122,94,65,1.0],[122,94,66,1.0],[122,94,67,1.0],[122,94,68,1.0],[122,94,69,1.0],[122,94,70,1.0],[122,94,71,1.0],[122,94,72,1.0],[122,94,73,1.0],[122,94,74,1.0],[122,94,75,1.0],[122,94,76,1.0],[122,94,77,1.0],[122,94,78,1.0],[122,94,79,1.0],[122,95,64,1.0],[122,95,65,1.0],[122,95,66,1.0],[122,95,67,1.0],[122,95,68,1.0],[122,95,69,1.0],[122,95,70,1.0],[122,95,71,1.0],[122,95,72,1.0],[122,95,73,1.0],[122,95,74,1.0],[122,95,75,1.0],[122,95,76,1.0],[122,95,77,1.0],[122,95,78,1.0],[122,95,79,1.0],[122,96,64,1.0],[122,96,65,1.0],[122,96,66,1.0],[122,96,67,1.0],[122,96,68,1.0],[122,96,69,1.0],[122,96,70,1.0],[122,96,71,1.0],[122,96,72,1.0],[122,96,73,1.0],[122,96,74,1.0],[122,96,75,1.0],[122,96,76,1.0],[122,96,77,1.0],[122,96,78,1.0],[122,96,79,1.0],[122,97,64,1.0],[122,97,65,1.0],[122,97,66,1.0],[122,97,67,1.0],[122,97,68,1.0],[122,97,69,1.0],[122,97,70,1.0],[122,97,71,1.0],[122,97,72,1.0],[122,97,73,1.0],[122,97,74,1.0],[122,97,75,1.0],[122,97,76,1.0],[122,97,77,1.0],[122,97,78,1.0],[122,97,79,1.0],[122,98,64,1.0],[122,98,65,1.0],[122,98,66,1.0],[122,98,67,1.0],[122,98,68,1.0],[122,98,69,1.0],[122,98,70,1.0],[122,98,71,1.0],[122,98,72,1.0],[122,98,73,1.0],[122,98,74,1.0],[122,98,75,1.0],[122,98,76,1.0],[122,98,77,1.0],[122,98,78,1.0],[122,98,79,1.0],[122,99,64,1.0],[122,99,65,1.0],[122,99,66,1.0],[122,99,67,1.0],[122,99,68,1.0],[122,99,69,1.0],[122,99,70,1.0],[122,99,71,1.0],[122,99,72,1.0],[122,99,73,1.0],[122,99,74,1.0],[122,99,75,1.0],[122,99,76,1.0],[122,99,77,1.0],[122,99,78,1.0],[122,99,79,1.0],[122,100,64,1.0],[122,100,65,1.0],[122,100,66,1.0],[122,100,67,1.0],[122,100,68,1.0],[122,100,69,1.0],[122,100,70,1.0],[122,100,71,1.0],[122,100,72,1.0],[122,100,73,1.0],[122,100,74,1.0],[122,100,75,1.0],[122,100,76,1.0],[122,100,77,1.0],[122,100,78,1.0],[122,100,79,1.0],[122,101,64,1.0],[122,101,65,1.0],[122,101,66,1.0],[122,101,67,1.0],[122,101,68,1.0],[122,101,69,1.0],[122,101,70,1.0],[122,101,71,1.0],[122,101,72,1.0],[122,101,73,1.0],[122,101,74,1.0],[122,101,75,1.0],[122,101,76,1.0],[122,101,77,1.0],[122,101,78,1.0],[122,101,79,1.0],[122,102,64,1.0],[122,102,65,1.0],[122,102,66,1.0],[122,102,67,1.0],[122,102,68,1.0],[122,102,69,1.0],[122,102,70,1.0],[122,102,71,1.0],[122,102,72,1.0],[122,102,73,1.0],[122,102,74,1.0],[122,102,75,1.0],[122,102,76,1.0],[122,102,77,1.0],[122,102,78,1.0],[122,102,79,1.0],[122,103,64,1.0],[122,103,65,1.0],[122,103,66,1.0],[122,103,67,1.0],[122,103,68,1.0],[122,103,69,1.0],[122,103,70,1.0],[122,103,71,1.0],[122,103,72,1.0],[122,103,73,1.0],[122,103,74,1.0],[122,103,75,1.0],[122,103,76,1.0],[122,103,77,1.0],[122,103,78,1.0],[122,103,79,1.0],[122,104,64,1.0],[122,104,65,1.0],[122,104,66,1.0],[122,104,67,1.0],[122,104,68,1.0],[122,104,69,1.0],[122,104,70,1.0],[122,104,71,1.0],[122,104,72,1.0],[122,104,73,1.0],[122,104,74,1.0],[122,104,75,1.0],[122,104,76,1.0],[122,104,77,1.0],[122,104,78,1.0],[122,104,79,1.0],[122,105,64,1.0],[122,105,65,1.0],[122,105,66,1.0],[122,105,67,1.0],[122,105,68,1.0],[122,105,69,1.0],[122,105,70,1.0],[122,105,71,1.0],[122,105,72,1.0],[122,105,73,1.0],[122,105,74,1.0],[122,105,75,1.0],[122,105,76,1.0],[122,105,77,1.0],[122,105,78,1.0],[122,105,79,1.0],[122,106,64,1.0],[122,106,65,1.0],[122,106,66,1.0],[122,106,67,1.0],[122,106,68,1.0],[122,106,69,1.0],[122,106,70,1.0],[122,106,71,1.0],[122,106,72,1.0],[122,106,73,1.0],[122,106,74,1.0],[122,106,75,1.0],[122,106,76,1.0],[122,106,77,1.0],[122,106,78,1.0],[122,106,79,1.0],[122,107,64,1.0],[122,107,65,1.0],[122,107,66,1.0],[122,107,67,1.0],[122,107,68,1.0],[122,107,69,1.0],[122,107,70,1.0],[122,107,71,1.0],[122,107,72,1.0],[122,107,73,1.0],[122,107,74,1.0],[122,107,75,1.0],[122,107,76,1.0],[122,107,77,1.0],[122,107,78,1.0],[122,107,79,1.0],[122,108,64,1.0],[122,108,65,1.0],[122,108,66,1.0],[122,108,67,1.0],[122,108,68,1.0],[122,108,69,1.0],[122,108,70,1.0],[122,108,71,1.0],[122,108,72,1.0],[122,108,73,1.0],[122,108,74,1.0],[122,108,75,1.0],[122,108,76,1.0],[122,108,77,1.0],[122,108,78,1.0],[122,108,79,1.0],[122,109,64,1.0],[122,109,65,1.0],[122,109,66,1.0],[122,109,67,1.0],[122,109,68,1.0],[122,109,69,1.0],[122,109,70,1.0],[122,109,71,1.0],[122,109,72,1.0],[122,109,73,1.0],[122,109,74,1.0],[122,109,75,1.0],[122,109,76,1.0],[122,109,77,1.0],[122,109,78,1.0],[122,109,79,1.0],[122,110,64,1.0],[122,110,65,1.0],[122,110,66,1.0],[122,110,67,1.0],[122,110,68,1.0],[122,110,69,1.0],[122,110,70,1.0],[122,110,71,1.0],[122,110,72,1.0],[122,110,73,1.0],[122,110,74,1.0],[122,110,75,1.0],[122,110,76,1.0],[122,110,77,1.0],[122,110,78,1.0],[122,110,79,1.0],[122,111,64,1.0],[122,111,65,1.0],[122,111,66,1.0],[122,111,67,1.0],[122,111,68,1.0],[122,111,69,1.0],[122,111,70,1.0],[122,111,71,1.0],[122,111,72,1.0],[122,111,73,1.0],[122,111,74,1.0],[122,111,75,1.0],[122,111,76,1.0],[122,111,77,1.0],[122,111,78,1.0],[122,111,79,1.0],[122,112,64,1.0],[122,112,65,1.0],[122,112,66,1.0],[122,112,67,1.0],[122,112,68,1.0],[122,112,69,1.0],[122,112,70,1.0],[122,112,71,1.0],[122,112,72,1.0],[122,112,73,1.0],[122,112,74,1.0],[122,112,75,1.0],[122,112,76,1.0],[122,112,77,1.0],[122,112,78,1.0],[122,112,79,1.0],[122,113,64,1.0],[122,113,65,1.0],[122,113,66,1.0],[122,113,67,1.0],[122,113,68,1.0],[122,113,69,1.0],[122,113,70,1.0],[122,113,71,1.0],[122,113,72,1.0],[122,113,73,1.0],[122,113,74,1.0],[122,113,75,1.0],[122,113,76,1.0],[122,113,77,1.0],[122,113,78,1.0],[122,113,79,1.0],[122,114,64,1.0],[122,114,65,1.0],[122,114,66,1.0],[122,114,67,1.0],[122,114,68,1.0],[122,114,69,1.0],[122,114,70,1.0],[122,114,71,1.0],[122,114,72,1.0],[122,114,73,1.0],[122,114,74,1.0],[122,114,75,1.0],[122,114,76,1.0],[122,114,77,1.0],[122,114,78,1.0],[122,114,79,1.0],[122,115,64,1.0],[122,115,65,1.0],[122,115,66,1.0],[122,115,67,1.0],[122,115,68,1.0],[122,115,69,1.0],[122,115,70,1.0],[122,115,71,1.0],[122,115,72,1.0],[122,115,73,1.0],[122,115,74,1.0],[122,115,75,1.0],[122,115,76,1.0],[122,115,77,1.0],[122,115,78,1.0],[122,115,79,1.0],[122,116,64,1.0],[122,116,65,1.0],[122,116,66,1.0],[122,116,67,1.0],[122,116,68,1.0],[122,116,69,1.0],[122,116,70,1.0],[122,116,71,1.0],[122,116,72,1.0],[122,116,73,1.0],[122,116,74,1.0],[122,116,75,1.0],[122,116,76,1.0],[122,116,77,1.0],[122,116,78,1.0],[122,116,79,1.0],[122,117,64,1.0],[122,117,65,1.0],[122,117,66,1.0],[122,117,67,1.0],[122,117,68,1.0],[122,117,69,1.0],[122,117,70,1.0],[122,117,71,1.0],[122,117,72,1.0],[122,117,73,1.0],[122,117,74,1.0],[122,117,75,1.0],[122,117,76,1.0],[122,117,77,1.0],[122,117,78,1.0],[122,117,79,1.0],[122,118,64,1.0],[122,118,65,1.0],[122,118,66,1.0],[122,118,67,1.0],[122,118,68,1.0],[122,118,69,1.0],[122,118,70,1.0],[122,118,71,1.0],[122,118,72,1.0],[122,118,73,1.0],[122,118,74,1.0],[122,118,75,1.0],[122,118,76,1.0],[122,118,77,1.0],[122,118,78,1.0],[122,118,79,1.0],[122,119,64,1.0],[122,119,65,1.0],[122,119,66,1.0],[122,119,67,1.0],[122,119,68,1.0],[122,119,69,1.0],[122,119,70,1.0],[122,119,71,1.0],[122,119,72,1.0],[122,119,73,1.0],[122,119,74,1.0],[122,119,75,1.0],[122,119,76,1.0],[122,119,77,1.0],[122,119,78,1.0],[122,119,79,1.0],[122,120,64,1.0],[122,120,65,1.0],[122,120,66,1.0],[122,120,67,1.0],[122,120,68,1.0],[122,120,69,1.0],[122,120,70,1.0],[122,120,71,1.0],[122,120,72,1.0],[122,120,73,1.0],[122,120,74,1.0],[122,120,75,1.0],[122,120,76,1.0],[122,120,77,1.0],[122,120,78,1.0],[122,120,79,1.0],[122,121,64,1.0],[122,121,65,1.0],[122,121,66,1.0],[122,121,67,1.0],[122,121,68,1.0],[122,121,69,1.0],[122,121,70,1.0],[122,121,71,1.0],[122,121,72,1.0],[122,121,73,1.0],[122,121,74,1.0],[122,121,75,1.0],[122,121,76,1.0],[122,121,77,1.0],[122,121,78,1.0],[122,121,79,1.0],[122,122,64,1.0],[122,122,65,1.0],[122,122,66,1.0],[122,122,67,1.0],[122,122,68,1.0],[122,122,69,1.0],[122,122,70,1.0],[122,122,71,1.0],[122,122,72,1.0],[122,122,73,1.0],[122,122,74,1.0],[122,122,75,1.0],[122,122,76,1.0],[122,122,77,1.0],[122,122,78,1.0],[122,122,79,1.0],[122,123,64,1.0],[122,123,65,1.0],[122,123,66,1.0],[122,123,67,1.0],[122,123,68,1.0],[122,123,69,1.0],[122,123,70,1.0],[122,123,71,1.0],[122,123,72,1.0],[122,123,73,1.0],[122,123,74,1.0],[122,123,75,1.0],[122,123,76,1.0],[122,123,77,1.0],[122,123,78,1.0],[122,123,79,1.0],[122,124,64,1.0],[122,124,65,1.0],[122,124,66,1.0],[122,124,67,1.0],[122,124,68,1.0],[122,124,69,1.0],[122,124,70,1.0],[122,124,71,1.0],[122,124,72,1.0],[122,124,73,1.0],[122,124,74,1.0],[122,124,75,1.0],[122,124,76,1.0],[122,124,77,1.0],[122,124,78,1.0],[122,124,79,1.0],[122,125,64,1.0],[122,125,65,1.0],[122,125,66,1.0],[122,125,67,1.0],[122,125,68,1.0],[122,125,69,1.0],[122,125,70,1.0],[122,125,71,1.0],[122,125,72,1.0],[122,125,73,1.0],[122,125,74,1.0],[122,125,75,1.0],[122,125,76,1.0],[122,125,77,1.0],[122,125,78,1.0],[122,125,79,1.0],[122,126,64,1.0],[122,126,65,1.0],[122,126,66,1.0],[122,126,67,1.0],[122,126,68,1.0],[122,126,69,1.0],[122,126,70,1.0],[122,126,71,1.0],[122,126,72,1.0],[122,126,73,1.0],[122,126,74,1.0],[122,126,75,1.0],[122,126,76,1.0],[122,126,77,1.0],[122,126,78,1.0],[122,126,79,1.0],[122,127,64,1.0],[122,127,65,1.0],[122,127,66,1.0],[122,127,67,1.0],[122,127,68,1.0],[122,127,69,1.0],[122,127,70,1.0],[122,127,71,1.0],[122,127,72,1.0],[122,127,73,1.0],[122,127,74,1.0],[122,127,75,1.0],[122,127,76,1.0],[122,127,77,1.0],[122,127,78,1.0],[122,127,79,1.0],[122,128,64,1.0],[122,128,65,1.0],[122,128,66,1.0],[122,128,67,1.0],[122,128,68,1.0],[122,128,69,1.0],[122,128,70,1.0],[122,128,71,1.0],[122,128,72,1.0],[122,128,73,1.0],[122,128,74,1.0],[122,128,75,1.0],[122,128,76,1.0],[122,128,77,1.0],[122,128,78,1.0],[122,128,79,1.0],[122,129,64,1.0],[122,129,65,1.0],[122,129,66,1.0],[122,129,67,1.0],[122,129,68,1.0],[122,129,69,1.0],[122,129,70,1.0],[122,129,71,1.0],[122,129,72,1.0],[122,129,73,1.0],[122,129,74,1.0],[122,129,75,1.0],[122,129,76,1.0],[122,129,77,1.0],[122,129,78,1.0],[122,129,79,1.0],[122,130,64,1.0],[122,130,65,1.0],[122,130,66,1.0],[122,130,67,1.0],[122,130,68,1.0],[122,130,69,1.0],[122,130,70,1.0],[122,130,71,1.0],[122,130,72,1.0],[122,130,73,1.0],[122,130,74,1.0],[122,130,75,1.0],[122,130,76,1.0],[122,130,77,1.0],[122,130,78,1.0],[122,130,79,1.0],[122,131,64,1.0],[122,131,65,1.0],[122,131,66,1.0],[122,131,67,1.0],[122,131,68,1.0],[122,131,69,1.0],[122,131,70,1.0],[122,131,71,1.0],[122,131,72,1.0],[122,131,73,1.0],[122,131,74,1.0],[122,131,75,1.0],[122,131,76,1.0],[122,131,77,1.0],[122,131,78,1.0],[122,131,79,1.0],[122,132,64,1.0],[122,132,65,1.0],[122,132,66,1.0],[122,132,67,1.0],[122,132,68,1.0],[122,132,69,1.0],[122,132,70,1.0],[122,132,71,1.0],[122,132,72,1.0],[122,132,73,1.0],[122,132,74,1.0],[122,132,75,1.0],[122,132,76,1.0],[122,132,77,1.0],[122,132,78,1.0],[122,132,79,1.0],[122,133,64,1.0],[122,133,65,1.0],[122,133,66,1.0],[122,133,67,1.0],[122,133,68,1.0],[122,133,69,1.0],[122,133,70,1.0],[122,133,71,1.0],[122,133,72,1.0],[122,133,73,1.0],[122,133,74,1.0],[122,133,75,1.0],[122,133,76,1.0],[122,133,77,1.0],[122,133,78,1.0],[122,133,79,1.0],[122,134,64,1.0],[122,134,65,1.0],[122,134,66,1.0],[122,134,67,1.0],[122,134,68,1.0],[122,134,69,1.0],[122,134,70,1.0],[122,134,71,1.0],[122,134,72,1.0],[122,134,73,1.0],[122,134,74,1.0],[122,134,75,1.0],[122,134,76,1.0],[122,134,77,1.0],[122,134,78,1.0],[122,134,79,1.0],[122,135,64,1.0],[122,135,65,1.0],[122,135,66,1.0],[122,135,67,1.0],[122,135,68,1.0],[122,135,69,1.0],[122,135,70,1.0],[122,135,71,1.0],[122,135,72,1.0],[122,135,73,1.0],[122,135,74,1.0],[122,135,75,1.0],[122,135,76,1.0],[122,135,77,1.0],[122,135,78,1.0],[122,135,79,1.0],[122,136,64,1.0],[122,136,65,1.0],[122,136,66,1.0],[122,136,67,1.0],[122,136,68,1.0],[122,136,69,1.0],[122,136,70,1.0],[122,136,71,1.0],[122,136,72,1.0],[122,136,73,1.0],[122,136,74,1.0],[122,136,75,1.0],[122,136,76,1.0],[122,136,77,1.0],[122,136,78,1.0],[122,136,79,1.0],[122,137,64,1.0],[122,137,65,1.0],[122,137,66,1.0],[122,137,67,1.0],[122,137,68,1.0],[122,137,69,1.0],[122,137,70,1.0],[122,137,71,1.0],[122,137,72,1.0],[122,137,73,1.0],[122,137,74,1.0],[122,137,75,1.0],[122,137,76,1.0],[122,137,77,1.0],[122,137,78,1.0],[122,137,79,1.0],[122,138,64,1.0],[122,138,65,1.0],[122,138,66,1.0],[122,138,67,1.0],[122,138,68,1.0],[122,138,69,1.0],[122,138,70,1.0],[122,138,71,1.0],[122,138,72,1.0],[122,138,73,1.0],[122,138,74,1.0],[122,138,75,1.0],[122,138,76,1.0],[122,138,77,1.0],[122,138,78,1.0],[122,138,79,1.0],[122,139,64,1.0],[122,139,65,1.0],[122,139,66,1.0],[122,139,67,1.0],[122,139,68,1.0],[122,139,69,1.0],[122,139,70,1.0],[122,139,71,1.0],[122,139,72,1.0],[122,139,73,1.0],[122,139,74,1.0],[122,139,75,1.0],[122,139,76,1.0],[122,139,77,1.0],[122,139,78,1.0],[122,139,79,1.0],[122,140,64,1.0],[122,140,65,1.0],[122,140,66,1.0],[122,140,67,1.0],[122,140,68,1.0],[122,140,69,1.0],[122,140,70,1.0],[122,140,71,1.0],[122,140,72,1.0],[122,140,73,1.0],[122,140,74,1.0],[122,140,75,1.0],[122,140,76,1.0],[122,140,77,1.0],[122,140,78,1.0],[122,140,79,1.0],[122,141,64,1.0],[122,141,65,1.0],[122,141,66,1.0],[122,141,67,1.0],[122,141,68,1.0],[122,141,69,1.0],[122,141,70,1.0],[122,141,71,1.0],[122,141,72,1.0],[122,141,73,1.0],[122,141,74,1.0],[122,141,75,1.0],[122,141,76,1.0],[122,141,77,1.0],[122,141,78,1.0],[122,141,79,1.0],[122,142,64,1.0],[122,142,65,1.0],[122,142,66,1.0],[122,142,67,1.0],[122,142,68,1.0],[122,142,69,1.0],[122,142,70,1.0],[122,142,71,1.0],[122,142,72,1.0],[122,142,73,1.0],[122,142,74,1.0],[122,142,75,1.0],[122,142,76,1.0],[122,142,77,1.0],[122,142,78,1.0],[122,142,79,1.0],[122,143,64,1.0],[122,143,65,1.0],[122,143,66,1.0],[122,143,67,1.0],[122,143,68,1.0],[122,143,69,1.0],[122,143,70,1.0],[122,143,71,1.0],[122,143,72,1.0],[122,143,73,1.0],[122,143,74,1.0],[122,143,75,1.0],[122,143,76,1.0],[122,143,77,1.0],[122,143,78,1.0],[122,143,79,1.0],[122,144,64,1.0],[122,144,65,1.0],[122,144,66,1.0],[122,144,67,1.0],[122,144,68,1.0],[122,144,69,1.0],[122,144,70,1.0],[122,144,71,1.0],[122,144,72,1.0],[122,144,73,1.0],[122,144,74,1.0],[122,144,75,1.0],[122,144,76,1.0],[122,144,77,1.0],[122,144,78,1.0],[122,144,79,1.0],[122,145,64,1.0],[122,145,65,1.0],[122,145,66,1.0],[122,145,67,1.0],[122,145,68,1.0],[122,145,69,1.0],[122,145,70,1.0],[122,145,71,1.0],[122,145,72,1.0],[122,145,73,1.0],[122,145,74,1.0],[122,145,75,1.0],[122,145,76,1.0],[122,145,77,1.0],[122,145,78,1.0],[122,145,79,1.0],[122,146,64,1.0],[122,146,65,1.0],[122,146,66,1.0],[122,146,67,1.0],[122,146,68,1.0],[122,146,69,1.0],[122,146,70,1.0],[122,146,71,1.0],[122,146,72,1.0],[122,146,73,1.0],[122,146,74,1.0],[122,146,75,1.0],[122,146,76,1.0],[122,146,77,1.0],[122,146,78,1.0],[122,146,79,1.0],[122,147,64,1.0],[122,147,65,1.0],[122,147,66,1.0],[122,147,67,1.0],[122,147,68,1.0],[122,147,69,1.0],[122,147,70,1.0],[122,147,71,1.0],[122,147,72,1.0],[122,147,73,1.0],[122,147,74,1.0],[122,147,75,1.0],[122,147,76,1.0],[122,147,77,1.0],[122,147,78,1.0],[122,147,79,1.0],[122,148,64,1.0],[122,148,65,1.0],[122,148,66,1.0],[122,148,67,1.0],[122,148,68,1.0],[122,148,69,1.0],[122,148,70,1.0],[122,148,71,1.0],[122,148,72,1.0],[122,148,73,1.0],[122,148,74,1.0],[122,148,75,1.0],[122,148,76,1.0],[122,148,77,1.0],[122,148,78,1.0],[122,148,79,1.0],[122,149,64,1.0],[122,149,65,1.0],[122,149,66,1.0],[122,149,67,1.0],[122,149,68,1.0],[122,149,69,1.0],[122,149,70,1.0],[122,149,71,1.0],[122,149,72,1.0],[122,149,73,1.0],[122,149,74,1.0],[122,149,75,1.0],[122,149,76,1.0],[122,149,77,1.0],[122,149,78,1.0],[122,149,79,1.0],[122,150,64,1.0],[122,150,65,1.0],[122,150,66,1.0],[122,150,67,1.0],[122,150,68,1.0],[122,150,69,1.0],[122,150,70,1.0],[122,150,71,1.0],[122,150,72,1.0],[122,150,73,1.0],[122,150,74,1.0],[122,150,75,1.0],[122,150,76,1.0],[122,150,77,1.0],[122,150,78,1.0],[122,150,79,1.0],[122,151,64,1.0],[122,151,65,1.0],[122,151,66,1.0],[122,151,67,1.0],[122,151,68,1.0],[122,151,69,1.0],[122,151,70,1.0],[122,151,71,1.0],[122,151,72,1.0],[122,151,73,1.0],[122,151,74,1.0],[122,151,75,1.0],[122,151,76,1.0],[122,151,77,1.0],[122,151,78,1.0],[122,151,79,1.0],[122,152,64,1.0],[122,152,65,1.0],[122,152,66,1.0],[122,152,67,1.0],[122,152,68,1.0],[122,152,69,1.0],[122,152,70,1.0],[122,152,71,1.0],[122,152,72,1.0],[122,152,73,1.0],[122,152,74,1.0],[122,152,75,1.0],[122,152,76,1.0],[122,152,77,1.0],[122,152,78,1.0],[122,152,79,1.0],[122,153,64,1.0],[122,153,65,1.0],[122,153,66,1.0],[122,153,67,1.0],[122,153,68,1.0],[122,153,69,1.0],[122,153,70,1.0],[122,153,71,1.0],[122,153,72,1.0],[122,153,73,1.0],[122,153,74,1.0],[122,153,75,1.0],[122,153,76,1.0],[122,153,77,1.0],[122,153,78,1.0],[122,153,79,1.0],[122,154,64,1.0],[122,154,65,1.0],[122,154,66,1.0],[122,154,67,1.0],[122,154,68,1.0],[122,154,69,1.0],[122,154,70,1.0],[122,154,71,1.0],[122,154,72,1.0],[122,154,73,1.0],[122,154,74,1.0],[122,154,75,1.0],[122,154,76,1.0],[122,154,77,1.0],[122,154,78,1.0],[122,154,79,1.0],[122,155,64,1.0],[122,155,65,1.0],[122,155,66,1.0],[122,155,67,1.0],[122,155,68,1.0],[122,155,69,1.0],[122,155,70,1.0],[122,155,71,1.0],[122,155,72,1.0],[122,155,73,1.0],[122,155,74,1.0],[122,155,75,1.0],[122,155,76,1.0],[122,155,77,1.0],[122,155,78,1.0],[122,155,79,1.0],[122,156,64,1.0],[122,156,65,1.0],[122,156,66,1.0],[122,156,67,1.0],[122,156,68,1.0],[122,156,69,1.0],[122,156,70,1.0],[122,156,71,1.0],[122,156,72,1.0],[122,156,73,1.0],[122,156,74,1.0],[122,156,75,1.0],[122,156,76,1.0],[122,156,77,1.0],[122,156,78,1.0],[122,156,79,1.0],[122,157,64,1.0],[122,157,65,1.0],[122,157,66,1.0],[122,157,67,1.0],[122,157,68,1.0],[122,157,69,1.0],[122,157,70,1.0],[122,157,71,1.0],[122,157,72,1.0],[122,157,73,1.0],[122,157,74,1.0],[122,157,75,1.0],[122,157,76,1.0],[122,157,77,1.0],[122,157,78,1.0],[122,157,79,1.0],[122,158,64,1.0],[122,158,65,1.0],[122,158,66,1.0],[122,158,67,1.0],[122,158,68,1.0],[122,158,69,1.0],[122,158,70,1.0],[122,158,71,1.0],[122,158,72,1.0],[122,158,73,1.0],[122,158,74,1.0],[122,158,75,1.0],[122,158,76,1.0],[122,158,77,1.0],[122,158,78,1.0],[122,158,79,1.0],[122,159,64,1.0],[122,159,65,1.0],[122,159,66,1.0],[122,159,67,1.0],[122,159,68,1.0],[122,159,69,1.0],[122,159,70,1.0],[122,159,71,1.0],[122,159,72,1.0],[122,159,73,1.0],[122,159,74,1.0],[122,159,75,1.0],[122,159,76,1.0],[122,159,77,1.0],[122,159,78,1.0],[122,159,79,1.0],[122,160,64,1.0],[122,160,65,1.0],[122,160,66,1.0],[122,160,67,1.0],[122,160,68,1.0],[122,160,69,1.0],[122,160,70,1.0],[122,160,71,1.0],[122,160,72,1.0],[122,160,73,1.0],[122,160,74,1.0],[122,160,75,1.0],[122,160,76,1.0],[122,160,77,1.0],[122,160,78,1.0],[122,160,79,1.0],[122,161,64,1.0],[122,161,65,1.0],[122,161,66,1.0],[122,161,67,1.0],[122,161,68,1.0],[122,161,69,1.0],[122,161,70,1.0],[122,161,71,1.0],[122,161,72,1.0],[122,161,73,1.0],[122,161,74,1.0],[122,161,75,1.0],[122,161,76,1.0],[122,161,77,1.0],[122,161,78,1.0],[122,161,79,1.0],[122,162,64,1.0],[122,162,65,1.0],[122,162,66,1.0],[122,162,67,1.0],[122,162,68,1.0],[122,162,69,1.0],[122,162,70,1.0],[122,162,71,1.0],[122,162,72,1.0],[122,162,73,1.0],[122,162,74,1.0],[122,162,75,1.0],[122,162,76,1.0],[122,162,77,1.0],[122,162,78,1.0],[122,162,79,1.0],[122,163,64,1.0],[122,163,65,1.0],[122,163,66,1.0],[122,163,67,1.0],[122,163,68,1.0],[122,163,69,1.0],[122,163,70,1.0],[122,163,71,1.0],[122,163,72,1.0],[122,163,73,1.0],[122,163,74,1.0],[122,163,75,1.0],[122,163,76,1.0],[122,163,77,1.0],[122,163,78,1.0],[122,163,79,1.0],[122,164,64,1.0],[122,164,65,1.0],[122,164,66,1.0],[122,164,67,1.0],[122,164,68,1.0],[122,164,69,1.0],[122,164,70,1.0],[122,164,71,1.0],[122,164,72,1.0],[122,164,73,1.0],[122,164,74,1.0],[122,164,75,1.0],[122,164,76,1.0],[122,164,77,1.0],[122,164,78,1.0],[122,164,79,1.0],[122,165,64,1.0],[122,165,65,1.0],[122,165,66,1.0],[122,165,67,1.0],[122,165,68,1.0],[122,165,69,1.0],[122,165,70,1.0],[122,165,71,1.0],[122,165,72,1.0],[122,165,73,1.0],[122,165,74,1.0],[122,165,75,1.0],[122,165,76,1.0],[122,165,77,1.0],[122,165,78,1.0],[122,165,79,1.0],[122,166,64,1.0],[122,166,65,1.0],[122,166,66,1.0],[122,166,67,1.0],[122,166,68,1.0],[122,166,69,1.0],[122,166,70,1.0],[122,166,71,1.0],[122,166,72,1.0],[122,166,73,1.0],[122,166,74,1.0],[122,166,75,1.0],[122,166,76,1.0],[122,166,77,1.0],[122,166,78,1.0],[122,166,79,1.0],[122,167,64,1.0],[122,167,65,1.0],[122,167,66,1.0],[122,167,67,1.0],[122,167,68,1.0],[122,167,69,1.0],[122,167,70,1.0],[122,167,71,1.0],[122,167,72,1.0],[122,167,73,1.0],[122,167,74,1.0],[122,167,75,1.0],[122,167,76,1.0],[122,167,77,1.0],[122,167,78,1.0],[122,167,79,1.0],[122,168,64,1.0],[122,168,65,1.0],[122,168,66,1.0],[122,168,67,1.0],[122,168,68,1.0],[122,168,69,1.0],[122,168,70,1.0],[122,168,71,1.0],[122,168,72,1.0],[122,168,73,1.0],[122,168,74,1.0],[122,168,75,1.0],[122,168,76,1.0],[122,168,77,1.0],[122,168,78,1.0],[122,168,79,1.0],[122,169,64,1.0],[122,169,65,1.0],[122,169,66,1.0],[122,169,67,1.0],[122,169,68,1.0],[122,169,69,1.0],[122,169,70,1.0],[122,169,71,1.0],[122,169,72,1.0],[122,169,73,1.0],[122,169,74,1.0],[122,169,75,1.0],[122,169,76,1.0],[122,169,77,1.0],[122,169,78,1.0],[122,169,79,1.0],[122,170,64,1.0],[122,170,65,1.0],[122,170,66,1.0],[122,170,67,1.0],[122,170,68,1.0],[122,170,69,1.0],[122,170,70,1.0],[122,170,71,1.0],[122,170,72,1.0],[122,170,73,1.0],[122,170,74,1.0],[122,170,75,1.0],[122,170,76,1.0],[122,170,77,1.0],[122,170,78,1.0],[122,170,79,1.0],[122,171,64,1.0],[122,171,65,1.0],[122,171,66,1.0],[122,171,67,1.0],[122,171,68,1.0],[122,171,69,1.0],[122,171,70,1.0],[122,171,71,1.0],[122,171,72,1.0],[122,171,73,1.0],[122,171,74,1.0],[122,171,75,1.0],[122,171,76,1.0],[122,171,77,1.0],[122,171,78,1.0],[122,171,79,1.0],[122,172,64,1.0],[122,172,65,1.0],[122,172,66,1.0],[122,172,67,1.0],[122,172,68,1.0],[122,172,69,1.0],[122,172,70,1.0],[122,172,71,1.0],[122,172,72,1.0],[122,172,73,1.0],[122,172,74,1.0],[122,172,75,1.0],[122,172,76,1.0],[122,172,77,1.0],[122,172,78,1.0],[122,172,79,1.0],[122,173,64,1.0],[122,173,65,1.0],[122,173,66,1.0],[122,173,67,1.0],[122,173,68,1.0],[122,173,69,1.0],[122,173,70,1.0],[122,173,71,1.0],[122,173,72,1.0],[122,173,73,1.0],[122,173,74,1.0],[122,173,75,1.0],[122,173,76,1.0],[122,173,77,1.0],[122,173,78,1.0],[122,173,79,1.0],[122,174,64,1.0],[122,174,65,1.0],[122,174,66,1.0],[122,174,67,1.0],[122,174,68,1.0],[122,174,69,1.0],[122,174,70,1.0],[122,174,71,1.0],[122,174,72,1.0],[122,174,73,1.0],[122,174,74,1.0],[122,174,75,1.0],[122,174,76,1.0],[122,174,77,1.0],[122,174,78,1.0],[122,174,79,1.0],[122,175,64,1.0],[122,175,65,1.0],[122,175,66,1.0],[122,175,67,1.0],[122,175,68,1.0],[122,175,69,1.0],[122,175,70,1.0],[122,175,71,1.0],[122,175,72,1.0],[122,175,73,1.0],[122,175,74,1.0],[122,175,75,1.0],[122,175,76,1.0],[122,175,77,1.0],[122,175,78,1.0],[122,175,79,1.0],[122,176,64,1.0],[122,176,65,1.0],[122,176,66,1.0],[122,176,67,1.0],[122,176,68,1.0],[122,176,69,1.0],[122,176,70,1.0],[122,176,71,1.0],[122,176,72,1.0],[122,176,73,1.0],[122,176,74,1.0],[122,176,75,1.0],[122,176,76,1.0],[122,176,77,1.0],[122,176,78,1.0],[122,176,79,1.0],[122,177,64,1.0],[122,177,65,1.0],[122,177,66,1.0],[122,177,67,1.0],[122,177,68,1.0],[122,177,69,1.0],[122,177,70,1.0],[122,177,71,1.0],[122,177,72,1.0],[122,177,73,1.0],[122,177,74,1.0],[122,177,75,1.0],[122,177,76,1.0],[122,177,77,1.0],[122,177,78,1.0],[122,177,79,1.0],[122,178,64,1.0],[122,178,65,1.0],[122,178,66,1.0],[122,178,67,1.0],[122,178,68,1.0],[122,178,69,1.0],[122,178,70,1.0],[122,178,71,1.0],[122,178,72,1.0],[122,178,73,1.0],[122,178,74,1.0],[122,178,75,1.0],[122,178,76,1.0],[122,178,77,1.0],[122,178,78,1.0],[122,178,79,1.0],[122,179,64,1.0],[122,179,65,1.0],[122,179,66,1.0],[122,179,67,1.0],[122,179,68,1.0],[122,179,69,1.0],[122,179,70,1.0],[122,179,71,1.0],[122,179,72,1.0],[122,179,73,1.0],[122,179,74,1.0],[122,179,75,1.0],[122,179,76,1.0],[122,179,77,1.0],[122,179,78,1.0],[122,179,79,1.0],[122,180,64,1.0],[122,180,65,1.0],[122,180,66,1.0],[122,180,67,1.0],[122,180,68,1.0],[122,180,69,1.0],[122,180,70,1.0],[122,180,71,1.0],[122,180,72,1.0],[122,180,73,1.0],[122,180,74,1.0],[122,180,75,1.0],[122,180,76,1.0],[122,180,77,1.0],[122,180,78,1.0],[122,180,79,1.0],[122,181,64,1.0],[122,181,65,1.0],[122,181,66,1.0],[122,181,67,1.0],[122,181,68,1.0],[122,181,69,1.0],[122,181,70,1.0],[122,181,71,1.0],[122,181,72,1.0],[122,181,73,1.0],[122,181,74,1.0],[122,181,75,1.0],[122,181,76,1.0],[122,181,77,1.0],[122,181,78,1.0],[122,181,79,1.0],[122,182,64,1.0],[122,182,65,1.0],[122,182,66,1.0],[122,182,67,1.0],[122,182,68,1.0],[122,182,69,1.0],[122,182,70,1.0],[122,182,71,1.0],[122,182,72,1.0],[122,182,73,1.0],[122,182,74,1.0],[122,182,75,1.0],[122,182,76,1.0],[122,182,77,1.0],[122,182,78,1.0],[122,182,79,1.0],[122,183,64,1.0],[122,183,65,1.0],[122,183,66,1.0],[122,183,67,1.0],[122,183,68,1.0],[122,183,69,1.0],[122,183,70,1.0],[122,183,71,1.0],[122,183,72,1.0],[122,183,73,1.0],[122,183,74,1.0],[122,183,75,1.0],[122,183,76,1.0],[122,183,77,1.0],[122,183,78,1.0],[122,183,79,1.0],[122,184,64,1.0],[122,184,65,1.0],[122,184,66,1.0],[122,184,67,1.0],[122,184,68,1.0],[122,184,69,1.0],[122,184,70,1.0],[122,184,71,1.0],[122,184,72,1.0],[122,184,73,1.0],[122,184,74,1.0],[122,184,75,1.0],[122,184,76,1.0],[122,184,77,1.0],[122,184,78,1.0],[122,184,79,1.0],[122,185,64,1.0],[122,185,65,1.0],[122,185,66,1.0],[122,185,67,1.0],[122,185,68,1.0],[122,185,69,1.0],[122,185,70,1.0],[122,185,71,1.0],[122,185,72,1.0],[122,185,73,1.0],[122,185,74,1.0],[122,185,75,1.0],[122,185,76,1.0],[122,185,77,1.0],[122,185,78,1.0],[122,185,79,1.0],[122,186,64,1.0],[122,186,65,1.0],[122,186,66,1.0],[122,186,67,1.0],[122,186,68,1.0],[122,186,69,1.0],[122,186,70,1.0],[122,186,71,1.0],[122,186,72,1.0],[122,186,73,1.0],[122,186,74,1.0],[122,186,75,1.0],[122,186,76,1.0],[122,186,77,1.0],[122,186,78,1.0],[122,186,79,1.0],[122,187,64,1.0],[122,187,65,1.0],[122,187,66,1.0],[122,187,67,1.0],[122,187,68,1.0],[122,187,69,1.0],[122,187,70,1.0],[122,187,71,1.0],[122,187,72,1.0],[122,187,73,1.0],[122,187,74,1.0],[122,187,75,1.0],[122,187,76,1.0],[122,187,77,1.0],[122,187,78,1.0],[122,187,79,1.0],[122,188,64,1.0],[122,188,65,1.0],[122,188,66,1.0],[122,188,67,1.0],[122,188,68,1.0],[122,188,69,1.0],[122,188,70,1.0],[122,188,71,1.0],[122,188,72,1.0],[122,188,73,1.0],[122,188,74,1.0],[122,188,75,1.0],[122,188,76,1.0],[122,188,77,1.0],[122,188,78,1.0],[122,188,79,1.0],[122,189,64,1.0],[122,189,65,1.0],[122,189,66,1.0],[122,189,67,1.0],[122,189,68,1.0],[122,189,69,1.0],[122,189,70,1.0],[122,189,71,1.0],[122,189,72,1.0],[122,189,73,1.0],[122,189,74,1.0],[122,189,75,1.0],[122,189,76,1.0],[122,189,77,1.0],[122,189,78,1.0],[122,189,79,1.0],[122,190,64,1.0],[122,190,65,1.0],[122,190,66,1.0],[122,190,67,1.0],[122,190,68,1.0],[122,190,69,1.0],[122,190,70,1.0],[122,190,71,1.0],[122,190,72,1.0],[122,190,73,1.0],[122,190,74,1.0],[122,190,75,1.0],[122,190,76,1.0],[122,190,77,1.0],[122,190,78,1.0],[122,190,79,1.0],[122,191,64,1.0],[122,191,65,1.0],[122,191,66,1.0],[122,191,67,1.0],[122,191,68,1.0],[122,191,69,1.0],[122,191,70,1.0],[122,191,71,1.0],[122,191,72,1.0],[122,191,73,1.0],[122,191,74,1.0],[122,191,75,1.0],[122,191,76,1.0],[122,191,77,1.0],[122,191,78,1.0],[122,191,79,1.0],[122,192,64,1.0],[122,192,65,1.0],[122,192,66,1.0],[122,192,67,1.0],[122,192,68,1.0],[122,192,69,1.0],[122,192,70,1.0],[122,192,71,1.0],[122,192,72,1.0],[122,192,73,1.0],[122,192,74,1.0],[122,192,75,1.0],[122,192,76,1.0],[122,192,77,1.0],[122,192,78,1.0],[122,192,79,1.0],[122,193,64,1.0],[122,193,65,1.0],[122,193,66,1.0],[122,193,67,1.0],[122,193,68,1.0],[122,193,69,1.0],[122,193,70,1.0],[122,193,71,1.0],[122,193,72,1.0],[122,193,73,1.0],[122,193,74,1.0],[122,193,75,1.0],[122,193,76,1.0],[122,193,77,1.0],[122,193,78,1.0],[122,193,79,1.0],[122,194,64,1.0],[122,194,65,1.0],[122,194,66,1.0],[122,194,67,1.0],[122,194,68,1.0],[122,194,69,1.0],[122,194,70,1.0],[122,194,71,1.0],[122,194,72,1.0],[122,194,73,1.0],[122,194,74,1.0],[122,194,75,1.0],[122,194,76,1.0],[122,194,77,1.0],[122,194,78,1.0],[122,194,79,1.0],[122,195,64,1.0],[122,195,65,1.0],[122,195,66,1.0],[122,195,67,1.0],[122,195,68,1.0],[122,195,69,1.0],[122,195,70,1.0],[122,195,71,1.0],[122,195,72,1.0],[122,195,73,1.0],[122,195,74,1.0],[122,195,75,1.0],[122,195,76,1.0],[122,195,77,1.0],[122,195,78,1.0],[122,195,79,1.0],[122,196,64,1.0],[122,196,65,1.0],[122,196,66,1.0],[122,196,67,1.0],[122,196,68,1.0],[122,196,69,1.0],[122,196,70,1.0],[122,196,71,1.0],[122,196,72,1.0],[122,196,73,1.0],[122,196,74,1.0],[122,196,75,1.0],[122,196,76,1.0],[122,196,77,1.0],[122,196,78,1.0],[122,196,79,1.0],[122,197,64,1.0],[122,197,65,1.0],[122,197,66,1.0],[122,197,67,1.0],[122,197,68,1.0],[122,197,69,1.0],[122,197,70,1.0],[122,197,71,1.0],[122,197,72,1.0],[122,197,73,1.0],[122,197,74,1.0],[122,197,75,1.0],[122,197,76,1.0],[122,197,77,1.0],[122,197,78,1.0],[122,197,79,1.0],[122,198,64,1.0],[122,198,65,1.0],[122,198,66,1.0],[122,198,67,1.0],[122,198,68,1.0],[122,198,69,1.0],[122,198,70,1.0],[122,198,71,1.0],[122,198,72,1.0],[122,198,73,1.0],[122,198,74,1.0],[122,198,75,1.0],[122,198,76,1.0],[122,198,77,1.0],[122,198,78,1.0],[122,198,79,1.0],[122,199,64,1.0],[122,199,65,1.0],[122,199,66,1.0],[122,199,67,1.0],[122,199,68,1.0],[122,199,69,1.0],[122,199,70,1.0],[122,199,71,1.0],[122,199,72,1.0],[122,199,73,1.0],[122,199,74,1.0],[122,199,75,1.0],[122,199,76,1.0],[122,199,77,1.0],[122,199,78,1.0],[122,199,79,1.0],[122,200,64,1.0],[122,200,65,1.0],[122,200,66,1.0],[122,200,67,1.0],[122,200,68,1.0],[122,200,69,1.0],[122,200,70,1.0],[122,200,71,1.0],[122,200,72,1.0],[122,200,73,1.0],[122,200,74,1.0],[122,200,75,1.0],[122,200,76,1.0],[122,200,77,1.0],[122,200,78,1.0],[122,200,79,1.0],[122,201,64,1.0],[122,201,65,1.0],[122,201,66,1.0],[122,201,67,1.0],[122,201,68,1.0],[122,201,69,1.0],[122,201,70,1.0],[122,201,71,1.0],[122,201,72,1.0],[122,201,73,1.0],[122,201,74,1.0],[122,201,75,1.0],[122,201,76,1.0],[122,201,77,1.0],[122,201,78,1.0],[122,201,79,1.0],[122,202,64,1.0],[122,202,65,1.0],[122,202,66,1.0],[122,202,67,1.0],[122,202,68,1.0],[122,202,69,1.0],[122,202,70,1.0],[122,202,71,1.0],[122,202,72,1.0],[122,202,73,1.0],[122,202,74,1.0],[122,202,75,1.0],[122,202,76,1.0],[122,202,77,1.0],[122,202,78,1.0],[122,202,79,1.0],[122,203,64,1.0],[122,203,65,1.0],[122,203,66,1.0],[122,203,67,1.0],[122,203,68,1.0],[122,203,69,1.0],[122,203,70,1.0],[122,203,71,1.0],[122,203,72,1.0],[122,203,73,1.0],[122,203,74,1.0],[122,203,75,1.0],[122,203,76,1.0],[122,203,77,1.0],[122,203,78,1.0],[122,203,79,1.0],[122,204,64,1.0],[122,204,65,1.0],[122,204,66,1.0],[122,204,67,1.0],[122,204,68,1.0],[122,204,69,1.0],[122,204,70,1.0],[122,204,71,1.0],[122,204,72,1.0],[122,204,73,1.0],[122,204,74,1.0],[122,204,75,1.0],[122,204,76,1.0],[122,204,77,1.0],[122,204,78,1.0],[122,204,79,1.0],[122,205,64,1.0],[122,205,65,1.0],[122,205,66,1.0],[122,205,67,1.0],[122,205,68,1.0],[122,205,69,1.0],[122,205,70,1.0],[122,205,71,1.0],[122,205,72,1.0],[122,205,73,1.0],[122,205,74,1.0],[122,205,75,1.0],[122,205,76,1.0],[122,205,77,1.0],[122,205,78,1.0],[122,205,79,1.0],[122,206,64,1.0],[122,206,65,1.0],[122,206,66,1.0],[122,206,67,1.0],[122,206,68,1.0],[122,206,69,1.0],[122,206,70,1.0],[122,206,71,1.0],[122,206,72,1.0],[122,206,73,1.0],[122,206,74,1.0],[122,206,75,1.0],[122,206,76,1.0],[122,206,77,1.0],[122,206,78,1.0],[122,206,79,1.0],[122,207,64,1.0],[122,207,65,1.0],[122,207,66,1.0],[122,207,67,1.0],[122,207,68,1.0],[122,207,69,1.0],[122,207,70,1.0],[122,207,71,1.0],[122,207,72,1.0],[122,207,73,1.0],[122,207,74,1.0],[122,207,75,1.0],[122,207,76,1.0],[122,207,77,1.0],[122,207,78,1.0],[122,207,79,1.0],[122,208,64,1.0],[122,208,65,1.0],[122,208,66,1.0],[122,208,67,1.0],[122,208,68,1.0],[122,208,69,1.0],[122,208,70,1.0],[122,208,71,1.0],[122,208,72,1.0],[122,208,73,1.0],[122,208,74,1.0],[122,208,75,1.0],[122,208,76,1.0],[122,208,77,1.0],[122,208,78,1.0],[122,208,79,1.0],[122,209,64,1.0],[122,209,65,1.0],[122,209,66,1.0],[122,209,67,1.0],[122,209,68,1.0],[122,209,69,1.0],[122,209,70,1.0],[122,209,71,1.0],[122,209,72,1.0],[122,209,73,1.0],[122,209,74,1.0],[122,209,75,1.0],[122,209,76,1.0],[122,209,77,1.0],[122,209,78,1.0],[122,209,79,1.0],[122,210,64,1.0],[122,210,65,1.0],[122,210,66,1.0],[122,210,67,1.0],[122,210,68,1.0],[122,210,69,1.0],[122,210,70,1.0],[122,210,71,1.0],[122,210,72,1.0],[122,210,73,1.0],[122,210,74,1.0],[122,210,75,1.0],[122,210,76,1.0],[122,210,77,1.0],[122,210,78,1.0],[122,210,79,1.0],[122,211,64,1.0],[122,211,65,1.0],[122,211,66,1.0],[122,211,67,1.0],[122,211,68,1.0],[122,211,69,1.0],[122,211,70,1.0],[122,211,71,1.0],[122,211,72,1.0],[122,211,73,1.0],[122,211,74,1.0],[122,211,75,1.0],[122,211,76,1.0],[122,211,77,1.0],[122,211,78,1.0],[122,211,79,1.0],[122,212,64,1.0],[122,212,65,1.0],[122,212,66,1.0],[122,212,67,1.0],[122,212,68,1.0],[122,212,69,1.0],[122,212,70,1.0],[122,212,71,1.0],[122,212,72,1.0],[122,212,73,1.0],[122,212,74,1.0],[122,212,75,1.0],[122,212,76,1.0],[122,212,77,1.0],[122,212,78,1.0],[122,212,79,1.0],[122,213,64,1.0],[122,213,65,1.0],[122,213,66,1.0],[122,213,67,1.0],[122,213,68,1.0],[122,213,69,1.0],[122,213,70,1.0],[122,213,71,1.0],[122,213,72,1.0],[122,213,73,1.0],[122,213,74,1.0],[122,213,75,1.0],[122,213,76,1.0],[122,213,77,1.0],[122,213,78,1.0],[122,213,79,1.0],[122,214,64,1.0],[122,214,65,1.0],[122,214,66,1.0],[122,214,67,1.0],[122,214,68,1.0],[122,214,69,1.0],[122,214,70,1.0],[122,214,71,1.0],[122,214,72,1.0],[122,214,73,1.0],[122,214,74,1.0],[122,214,75,1.0],[122,214,76,1.0],[122,214,77,1.0],[122,214,78,1.0],[122,214,79,1.0],[122,215,64,1.0],[122,215,65,1.0],[122,215,66,1.0],[122,215,67,1.0],[122,215,68,1.0],[122,215,69,1.0],[122,215,70,1.0],[122,215,71,1.0],[122,215,72,1.0],[122,215,73,1.0],[122,215,74,1.0],[122,215,75,1.0],[122,215,76,1.0],[122,215,77,1.0],[122,215,78,1.0],[122,215,79,1.0],[122,216,64,1.0],[122,216,65,1.0],[122,216,66,1.0],[122,216,67,1.0],[122,216,68,1.0],[122,216,69,1.0],[122,216,70,1.0],[122,216,71,1.0],[122,216,72,1.0],[122,216,73,1.0],[122,216,74,1.0],[122,216,75,1.0],[122,216,76,1.0],[122,216,77,1.0],[122,216,78,1.0],[122,216,79,1.0],[122,217,64,1.0],[122,217,65,1.0],[122,217,66,1.0],[122,217,67,1.0],[122,217,68,1.0],[122,217,69,1.0],[122,217,70,1.0],[122,217,71,1.0],[122,217,72,1.0],[122,217,73,1.0],[122,217,74,1.0],[122,217,75,1.0],[122,217,76,1.0],[122,217,77,1.0],[122,217,78,1.0],[122,217,79,1.0],[122,218,64,1.0],[122,218,65,1.0],[122,218,66,1.0],[122,218,67,1.0],[122,218,68,1.0],[122,218,69,1.0],[122,218,70,1.0],[122,218,71,1.0],[122,218,72,1.0],[122,218,73,1.0],[122,218,74,1.0],[122,218,75,1.0],[122,218,76,1.0],[122,218,77,1.0],[122,218,78,1.0],[122,218,79,1.0],[122,219,64,1.0],[122,219,65,1.0],[122,219,66,1.0],[122,219,67,1.0],[122,219,68,1.0],[122,219,69,1.0],[122,219,70,1.0],[122,219,71,1.0],[122,219,72,1.0],[122,219,73,1.0],[122,219,74,1.0],[122,219,75,1.0],[122,219,76,1.0],[122,219,77,1.0],[122,219,78,1.0],[122,219,79,1.0],[122,220,64,1.0],[122,220,65,1.0],[122,220,66,1.0],[122,220,67,1.0],[122,220,68,1.0],[122,220,69,1.0],[122,220,70,1.0],[122,220,71,1.0],[122,220,72,1.0],[122,220,73,1.0],[122,220,74,1.0],[122,220,75,1.0],[122,220,76,1.0],[122,220,77,1.0],[122,220,78,1.0],[122,220,79,1.0],[122,221,64,1.0],[122,221,65,1.0],[122,221,66,1.0],[122,221,67,1.0],[122,221,68,1.0],[122,221,69,1.0],[122,221,70,1.0],[122,221,71,1.0],[122,221,72,1.0],[122,221,73,1.0],[122,221,74,1.0],[122,221,75,1.0],[122,221,76,1.0],[122,221,77,1.0],[122,221,78,1.0],[122,221,79,1.0],[122,222,64,1.0],[122,222,65,1.0],[122,222,66,1.0],[122,222,67,1.0],[122,222,68,1.0],[122,222,69,1.0],[122,222,70,1.0],[122,222,71,1.0],[122,222,72,1.0],[122,222,73,1.0],[122,222,74,1.0],[122,222,75,1.0],[122,222,76,1.0],[122,222,77,1.0],[122,222,78,1.0],[122,222,79,1.0],[122,223,64,1.0],[122,223,65,1.0],[122,223,66,1.0],[122,223,67,1.0],[122,223,68,1.0],[122,223,69,1.0],[122,223,70,1.0],[122,223,71,1.0],[122,223,72,1.0],[122,223,73,1.0],[122,223,74,1.0],[122,223,75,1.0],[122,223,76,1.0],[122,223,77,1.0],[122,223,78,1.0],[122,223,79,1.0],[122,224,64,1.0],[122,224,65,1.0],[122,224,66,1.0],[122,224,67,1.0],[122,224,68,1.0],[122,224,69,1.0],[122,224,70,1.0],[122,224,71,1.0],[122,224,72,1.0],[122,224,73,1.0],[122,224,74,1.0],[122,224,75,1.0],[122,224,76,1.0],[122,224,77,1.0],[122,224,78,1.0],[122,224,79,1.0],[122,225,64,1.0],[122,225,65,1.0],[122,225,66,1.0],[122,225,67,1.0],[122,225,68,1.0],[122,225,69,1.0],[122,225,70,1.0],[122,225,71,1.0],[122,225,72,1.0],[122,225,73,1.0],[122,225,74,1.0],[122,225,75,1.0],[122,225,76,1.0],[122,225,77,1.0],[122,225,78,1.0],[122,225,79,1.0],[122,226,64,1.0],[122,226,65,1.0],[122,226,66,1.0],[122,226,67,1.0],[122,226,68,1.0],[122,226,69,1.0],[122,226,70,1.0],[122,226,71,1.0],[122,226,72,1.0],[122,226,73,1.0],[122,226,74,1.0],[122,226,75,1.0],[122,226,76,1.0],[122,226,77,1.0],[122,226,78,1.0],[122,226,79,1.0],[122,227,64,1.0],[122,227,65,1.0],[122,227,66,1.0],[122,227,67,1.0],[122,227,68,1.0],[122,227,69,1.0],[122,227,70,1.0],[122,227,71,1.0],[122,227,72,1.0],[122,227,73,1.0],[122,227,74,1.0],[122,227,75,1.0],[122,227,76,1.0],[122,227,77,1.0],[122,227,78,1.0],[122,227,79,1.0],[122,228,64,1.0],[122,228,65,1.0],[122,228,66,1.0],[122,228,67,1.0],[122,228,68,1.0],[122,228,69,1.0],[122,228,70,1.0],[122,228,71,1.0],[122,228,72,1.0],[122,228,73,1.0],[122,228,74,1.0],[122,228,75,1.0],[122,228,76,1.0],[122,228,77,1.0],[122,228,78,1.0],[122,228,79,1.0],[122,229,64,1.0],[122,229,65,1.0],[122,229,66,1.0],[122,229,67,1.0],[122,229,68,1.0],[122,229,69,1.0],[122,229,70,1.0],[122,229,71,1.0],[122,229,72,1.0],[122,229,73,1.0],[122,229,74,1.0],[122,229,75,1.0],[122,229,76,1.0],[122,229,77,1.0],[122,229,78,1.0],[122,229,79,1.0],[122,230,64,1.0],[122,230,65,1.0],[122,230,66,1.0],[122,230,67,1.0],[122,230,68,1.0],[122,230,69,1.0],[122,230,70,1.0],[122,230,71,1.0],[122,230,72,1.0],[122,230,73,1.0],[122,230,74,1.0],[122,230,75,1.0],[122,230,76,1.0],[122,230,77,1.0],[122,230,78,1.0],[122,230,79,1.0],[122,231,64,1.0],[122,231,65,1.0],[122,231,66,1.0],[122,231,67,1.0],[122,231,68,1.0],[122,231,69,1.0],[122,231,70,1.0],[122,231,71,1.0],[122,231,72,1.0],[122,231,73,1.0],[122,231,74,1.0],[122,231,75,1.0],[122,231,76,1.0],[122,231,77,1.0],[122,231,78,1.0],[122,231,79,1.0],[122,232,64,1.0],[122,232,65,1.0],[122,232,66,1.0],[122,232,67,1.0],[122,232,68,1.0],[122,232,69,1.0],[122,232,70,1.0],[122,232,71,1.0],[122,232,72,1.0],[122,232,73,1.0],[122,232,74,1.0],[122,232,75,1.0],[122,232,76,1.0],[122,232,77,1.0],[122,232,78,1.0],[122,232,79,1.0],[122,233,64,1.0],[122,233,65,1.0],[122,233,66,1.0],[122,233,67,1.0],[122,233,68,1.0],[122,233,69,1.0],[122,233,70,1.0],[122,233,71,1.0],[122,233,72,1.0],[122,233,73,1.0],[122,233,74,1.0],[122,233,75,1.0],[122,233,76,1.0],[122,233,77,1.0],[122,233,78,1.0],[122,233,79,1.0],[122,234,64,1.0],[122,234,65,1.0],[122,234,66,1.0],[122,234,67,1.0],[122,234,68,1.0],[122,234,69,1.0],[122,234,70,1.0],[122,234,71,1.0],[122,234,72,1.0],[122,234,73,1.0],[122,234,74,1.0],[122,234,75,1.0],[122,234,76,1.0],[122,234,77,1.0],[122,234,78,1.0],[122,234,79,1.0],[122,235,64,1.0],[122,235,65,1.0],[122,235,66,1.0],[122,235,67,1.0],[122,235,68,1.0],[122,235,69,1.0],[122,235,70,1.0],[122,235,71,1.0],[122,235,72,1.0],[122,235,73,1.0],[122,235,74,1.0],[122,235,75,1.0],[122,235,76,1.0],[122,235,77,1.0],[122,235,78,1.0],[122,235,79,1.0],[122,236,64,1.0],[122,236,65,1.0],[122,236,66,1.0],[122,236,67,1.0],[122,236,68,1.0],[122,236,69,1.0],[122,236,70,1.0],[122,236,71,1.0],[122,236,72,1.0],[122,236,73,1.0],[122,236,74,1.0],[122,236,75,1.0],[122,236,76,1.0],[122,236,77,1.0],[122,236,78,1.0],[122,236,79,1.0],[122,237,64,1.0],[122,237,65,1.0],[122,237,66,1.0],[122,237,67,1.0],[122,237,68,1.0],[122,237,69,1.0],[122,237,70,1.0],[122,237,71,1.0],[122,237,72,1.0],[122,237,73,1.0],[122,237,74,1.0],[122,237,75,1.0],[122,237,76,1.0],[122,237,77,1.0],[122,237,78,1.0],[122,237,79,1.0],[122,238,64,1.0],[122,238,65,1.0],[122,238,66,1.0],[122,238,67,1.0],[122,238,68,1.0],[122,238,69,1.0],[122,238,70,1.0],[122,238,71,1.0],[122,238,72,1.0],[122,238,73,1.0],[122,238,74,1.0],[122,238,75,1.0],[122,238,76,1.0],[122,238,77,1.0],[122,238,78,1.0],[122,238,79,1.0],[122,239,64,1.0],[122,239,65,1.0],[122,239,66,1.0],[122,239,67,1.0],[122,239,68,1.0],[122,239,69,1.0],[122,239,70,1.0],[122,239,71,1.0],[122,239,72,1.0],[122,239,73,1.0],[122,239,74,1.0],[122,239,75,1.0],[122,239,76,1.0],[122,239,77,1.0],[122,239,78,1.0],[122,239,79,1.0],[122,240,64,1.0],[122,240,65,1.0],[122,240,66,1.0],[122,240,67,1.0],[122,240,68,1.0],[122,240,69,1.0],[122,240,70,1.0],[122,240,71,1.0],[122,240,72,1.0],[122,240,73,1.0],[122,240,74,1.0],[122,240,75,1.0],[122,240,76,1.0],[122,240,77,1.0],[122,240,78,1.0],[122,240,79,1.0],[122,241,64,1.0],[122,241,65,1.0],[122,241,66,1.0],[122,241,67,1.0],[122,241,68,1.0],[122,241,69,1.0],[122,241,70,1.0],[122,241,71,1.0],[122,241,72,1.0],[122,241,73,1.0],[122,241,74,1.0],[122,241,75,1.0],[122,241,76,1.0],[122,241,77,1.0],[122,241,78,1.0],[122,241,79,1.0],[122,242,64,1.0],[122,242,65,1.0],[122,242,66,1.0],[122,242,67,1.0],[122,242,68,1.0],[122,242,69,1.0],[122,242,70,1.0],[122,242,71,1.0],[122,242,72,1.0],[122,242,73,1.0],[122,242,74,1.0],[122,242,75,1.0],[122,242,76,1.0],[122,242,77,1.0],[122,242,78,1.0],[122,242,79,1.0],[122,243,64,1.0],[122,243,65,1.0],[122,243,66,1.0],[122,243,67,1.0],[122,243,68,1.0],[122,243,69,1.0],[122,243,70,1.0],[122,243,71,1.0],[122,243,72,1.0],[122,243,73,1.0],[122,243,74,1.0],[122,243,75,1.0],[122,243,76,1.0],[122,243,77,1.0],[122,243,78,1.0],[122,243,79,1.0],[122,244,64,1.0],[122,244,65,1.0],[122,244,66,1.0],[122,244,67,1.0],[122,244,68,1.0],[122,244,69,1.0],[122,244,70,1.0],[122,244,71,1.0],[122,244,72,1.0],[122,244,73,1.0],[122,244,74,1.0],[122,244,75,1.0],[122,244,76,1.0],[122,244,77,1.0],[122,244,78,1.0],[122,244,79,1.0],[122,245,64,1.0],[122,245,65,1.0],[122,245,66,1.0],[122,245,67,1.0],[122,245,68,1.0],[122,245,69,1.0],[122,245,70,1.0],[122,245,71,1.0],[122,245,72,1.0],[122,245,73,1.0],[122,245,74,1.0],[122,245,75,1.0],[122,245,76,1.0],[122,245,77,1.0],[122,245,78,1.0],[122,245,79,1.0],[122,246,64,1.0],[122,246,65,1.0],[122,246,66,1.0],[122,246,67,1.0],[122,246,68,1.0],[122,246,69,1.0],[122,246,70,1.0],[122,246,71,1.0],[122,246,72,1.0],[122,246,73,1.0],[122,246,74,1.0],[122,246,75,1.0],[122,246,76,1.0],[122,246,77,1.0],[122,246,78,1.0],[122,246,79,1.0],[122,247,64,1.0],[122,247,65,1.0],[122,247,66,1.0],[122,247,67,1.0],[122,247,68,1.0],[122,247,69,1.0],[122,247,70,1.0],[122,247,71,1.0],[122,247,72,1.0],[122,247,73,1.0],[122,247,74,1.0],[122,247,75,1.0],[122,247,76,1.0],[122,247,77,1.0],[122,247,78,1.0],[122,247,79,1.0],[122,248,64,1.0],[122,248,65,1.0],[122,248,66,1.0],[122,248,67,1.0],[122,248,68,1.0],[122,248,69,1.0],[122,248,70,1.0],[122,248,71,1.0],[122,248,72,1.0],[122,248,73,1.0],[122,248,74,1.0],[122,248,75,1.0],[122,248,76,1.0],[122,248,77,1.0],[122,248,78,1.0],[122,248,79,1.0],[122,249,64,1.0],[122,249,65,1.0],[122,249,66,1.0],[122,249,67,1.0],[122,249,68,1.0],[122,249,69,1.0],[122,249,70,1.0],[122,249,71,1.0],[122,249,72,1.0],[122,249,73,1.0],[122,249,74,1.0],[122,249,75,1.0],[122,249,76,1.0],[122,249,77,1.0],[122,249,78,1.0],[122,249,79,1.0],[122,250,64,1.0],[122,250,65,1.0],[122,250,66,1.0],[122,250,67,1.0],[122,250,68,1.0],[122,250,69,1.0],[122,250,70,1.0],[122,250,71,1.0],[122,250,72,1.0],[122,250,73,1.0],[122,250,74,1.0],[122,250,75,1.0],[122,250,76,1.0],[122,250,77,1.0],[122,250,78,1.0],[122,250,79,1.0],[122,251,64,1.0],[122,251,65,1.0],[122,251,66,1.0],[122,251,67,1.0],[122,251,68,1.0],[122,251,69,1.0],[122,251,70,1.0],[122,251,71,1.0],[122,251,72,1.0],[122,251,73,1.0],[122,251,74,1.0],[122,251,75,1.0],[122,251,76,1.0],[122,251,77,1.0],[122,251,78,1.0],[122,251,79,1.0],[122,252,64,1.0],[122,252,65,1.0],[122,252,66,1.0],[122,252,67,1.0],[122,252,68,1.0],[122,252,69,1.0],[122,252,70,1.0],[122,252,71,1.0],[122,252,72,1.0],[122,252,73,1.0],[122,252,74,1.0],[122,252,75,1.0],[122,252,76,1.0],[122,252,77,1.0],[122,252,78,1.0],[122,252,79,1.0],[122,253,64,1.0],[122,253,65,1.0],[122,253,66,1.0],[122,253,67,1.0],[122,253,68,1.0],[122,253,69,1.0],[122,253,70,1.0],[122,253,71,1.0],[122,253,72,1.0],[122,253,73,1.0],[122,253,74,1.0],[122,253,75,1.0],[122,253,76,1.0],[122,253,77,1.0],[122,253,78,1.0],[122,253,79,1.0],[122,254,64,1.0],[122,254,65,1.0],[122,254,66,1.0],[122,254,67,1.0],[122,254,68,1.0],[122,254,69,1.0],[122,254,70,1.0],[122,254,71,1.0],[122,254,72,1.0],[122,254,73,1.0],[122,254,74,1.0],[122,254,75,1.0],[122,254,76,1.0],[122,254,77,1.0],[122,254,78,1.0],[122,254,79,1.0],[122,255,64,1.0],[122,255,65,1.0],[122,255,66,1.0],[122,255,67,1.0],[122,255,68,1.0],[122,255,69,1.0],[122,255,70,1.0],[122,255,71,1.0],[122,255,72,1.0],[122,255,73,1.0],[122,255,74,1.0],[122,255,75,1.0],[122,255,76,1.0],[122,255,77,1.0],[122,255,78,1.0],[122,255,79,1.0],[122,256,64,1.0],[122,256,65,1.0],[122,256,66,1.0],[122,256,67,1.0],[122,256,68,1.0],[122,256,69,1.0],[122,256,70,1.0],[122,256,71,1.0],[122,256,72,1.0],[122,256,73,1.0],[122,256,74,1.0],[122,256,75,1.0],[122,256,76,1.0],[122,256,77,1.0],[122,256,78,1.0],[122,256,79,1.0],[122,257,64,1.0],[122,257,65,1.0],[122,257,66,1.0],[122,257,67,1.0],[122,257,68,1.0],[122,257,69,1.0],[122,257,70,1.0],[122,257,71,1.0],[122,257,72,1.0],[122,257,73,1.0],[122,257,74,1.0],[122,257,75,1.0],[122,257,76,1.0],[122,257,77,1.0],[122,257,78,1.0],[122,257,79,1.0],[122,258,64,1.0],[122,258,65,1.0],[122,258,66,1.0],[122,258,67,1.0],[122,258,68,1.0],[122,258,69,1.0],[122,258,70,1.0],[122,258,71,1.0],[122,258,72,1.0],[122,258,73,1.0],[122,258,74,1.0],[122,258,75,1.0],[122,258,76,1.0],[122,258,77,1.0],[122,258,78,1.0],[122,258,79,1.0],[122,259,64,1.0],[122,259,65,1.0],[122,259,66,1.0],[122,259,67,1.0],[122,259,68,1.0],[122,259,69,1.0],[122,259,70,1.0],[122,259,71,1.0],[122,259,72,1.0],[122,259,73,1.0],[122,259,74,1.0],[122,259,75,1.0],[122,259,76,1.0],[122,259,77,1.0],[122,259,78,1.0],[122,259,79,1.0],[122,260,64,1.0],[122,260,65,1.0],[122,260,66,1.0],[122,260,67,1.0],[122,260,68,1.0],[122,260,69,1.0],[122,260,70,1.0],[122,260,71,1.0],[122,260,72,1.0],[122,260,73,1.0],[122,260,74,1.0],[122,260,75,1.0],[122,260,76,1.0],[122,260,77,1.0],[122,260,78,1.0],[122,260,79,1.0],[122,261,64,1.0],[122,261,65,1.0],[122,261,66,1.0],[122,261,67,1.0],[122,261,68,1.0],[122,261,69,1.0],[122,261,70,1.0],[122,261,71,1.0],[122,261,72,1.0],[122,261,73,1.0],[122,261,74,1.0],[122,261,75,1.0],[122,261,76,1.0],[122,261,77,1.0],[122,261,78,1.0],[122,261,79,1.0],[122,262,64,1.0],[122,262,65,1.0],[122,262,66,1.0],[122,262,67,1.0],[122,262,68,1.0],[122,262,69,1.0],[122,262,70,1.0],[122,262,71,1.0],[122,262,72,1.0],[122,262,73,1.0],[122,262,74,1.0],[122,262,75,1.0],[122,262,76,1.0],[122,262,77,1.0],[122,262,78,1.0],[122,262,79,1.0],[122,263,64,1.0],[122,263,65,1.0],[122,263,66,1.0],[122,263,67,1.0],[122,263,68,1.0],[122,263,69,1.0],[122,263,70,1.0],[122,263,71,1.0],[122,263,72,1.0],[122,263,73,1.0],[122,263,74,1.0],[122,263,75,1.0],[122,263,76,1.0],[122,263,77,1.0],[122,263,78,1.0],[122,263,79,1.0],[122,264,64,1.0],[122,264,65,1.0],[122,264,66,1.0],[122,264,67,1.0],[122,264,68,1.0],[122,264,69,1.0],[122,264,70,1.0],[122,264,71,1.0],[122,264,72,1.0],[122,264,73,1.0],[122,264,74,1.0],[122,264,75,1.0],[122,264,76,1.0],[122,264,77,1.0],[122,264,78,1.0],[122,264,79,1.0],[122,265,64,1.0],[122,265,65,1.0],[122,265,66,1.0],[122,265,67,1.0],[122,265,68,1.0],[122,265,69,1.0],[122,265,70,1.0],[122,265,71,1.0],[122,265,72,1.0],[122,265,73,1.0],[122,265,74,1.0],[122,265,75,1.0],[122,265,76,1.0],[122,265,77,1.0],[122,265,78,1.0],[122,265,79,1.0],[122,266,64,1.0],[122,266,65,1.0],[122,266,66,1.0],[122,266,67,1.0],[122,266,68,1.0],[122,266,69,1.0],[122,266,70,1.0],[122,266,71,1.0],[122,266,72,1.0],[122,266,73,1.0],[122,266,74,1.0],[122,266,75,1.0],[122,266,76,1.0],[122,266,77,1.0],[122,266,78,1.0],[122,266,79,1.0],[122,267,64,1.0],[122,267,65,1.0],[122,267,66,1.0],[122,267,67,1.0],[122,267,68,1.0],[122,267,69,1.0],[122,267,70,1.0],[122,267,71,1.0],[122,267,72,1.0],[122,267,73,1.0],[122,267,74,1.0],[122,267,75,1.0],[122,267,76,1.0],[122,267,77,1.0],[122,267,78,1.0],[122,267,79,1.0],[122,268,64,1.0],[122,268,65,1.0],[122,268,66,1.0],[122,268,67,1.0],[122,268,68,1.0],[122,268,69,1.0],[122,268,70,1.0],[122,268,71,1.0],[122,268,72,1.0],[122,268,73,1.0],[122,268,74,1.0],[122,268,75,1.0],[122,268,76,1.0],[122,268,77,1.0],[122,268,78,1.0],[122,268,79,1.0],[122,269,64,1.0],[122,269,65,1.0],[122,269,66,1.0],[122,269,67,1.0],[122,269,68,1.0],[122,269,69,1.0],[122,269,70,1.0],[122,269,71,1.0],[122,269,72,1.0],[122,269,73,1.0],[122,269,74,1.0],[122,269,75,1.0],[122,269,76,1.0],[122,269,77,1.0],[122,269,78,1.0],[122,269,79,1.0],[122,270,64,1.0],[122,270,65,1.0],[122,270,66,1.0],[122,270,67,1.0],[122,270,68,1.0],[122,270,69,1.0],[122,270,70,1.0],[122,270,71,1.0],[122,270,72,1.0],[122,270,73,1.0],[122,270,74,1.0],[122,270,75,1.0],[122,270,76,1.0],[122,270,77,1.0],[122,270,78,1.0],[122,270,79,1.0],[122,271,64,1.0],[122,271,65,1.0],[122,271,66,1.0],[122,271,67,1.0],[122,271,68,1.0],[122,271,69,1.0],[122,271,70,1.0],[122,271,71,1.0],[122,271,72,1.0],[122,271,73,1.0],[122,271,74,1.0],[122,271,75,1.0],[122,271,76,1.0],[122,271,77,1.0],[122,271,78,1.0],[122,271,79,1.0],[122,272,64,1.0],[122,272,65,1.0],[122,272,66,1.0],[122,272,67,1.0],[122,272,68,1.0],[122,272,69,1.0],[122,272,70,1.0],[122,272,71,1.0],[122,272,72,1.0],[122,272,73,1.0],[122,272,74,1.0],[122,272,75,1.0],[122,272,76,1.0],[122,272,77,1.0],[122,272,78,1.0],[122,272,79,1.0],[122,273,64,1.0],[122,273,65,1.0],[122,273,66,1.0],[122,273,67,1.0],[122,273,68,1.0],[122,273,69,1.0],[122,273,70,1.0],[122,273,71,1.0],[122,273,72,1.0],[122,273,73,1.0],[122,273,74,1.0],[122,273,75,1.0],[122,273,76,1.0],[122,273,77,1.0],[122,273,78,1.0],[122,273,79,1.0],[122,274,64,1.0],[122,274,65,1.0],[122,274,66,1.0],[122,274,67,1.0],[122,274,68,1.0],[122,274,69,1.0],[122,274,70,1.0],[122,274,71,1.0],[122,274,72,1.0],[122,274,73,1.0],[122,274,74,1.0],[122,274,75,1.0],[122,274,76,1.0],[122,274,77,1.0],[122,274,78,1.0],[122,274,79,1.0],[122,275,64,1.0],[122,275,65,1.0],[122,275,66,1.0],[122,275,67,1.0],[122,275,68,1.0],[122,275,69,1.0],[122,275,70,1.0],[122,275,71,1.0],[122,275,72,1.0],[122,275,73,1.0],[122,275,74,1.0],[122,275,75,1.0],[122,275,76,1.0],[122,275,77,1.0],[122,275,78,1.0],[122,275,79,1.0],[122,276,64,1.0],[122,276,65,1.0],[122,276,66,1.0],[122,276,67,1.0],[122,276,68,1.0],[122,276,69,1.0],[122,276,70,1.0],[122,276,71,1.0],[122,276,72,1.0],[122,276,73,1.0],[122,276,74,1.0],[122,276,75,1.0],[122,276,76,1.0],[122,276,77,1.0],[122,276,78,1.0],[122,276,79,1.0],[122,277,64,1.0],[122,277,65,1.0],[122,277,66,1.0],[122,277,67,1.0],[122,277,68,1.0],[122,277,69,1.0],[122,277,70,1.0],[122,277,71,1.0],[122,277,72,1.0],[122,277,73,1.0],[122,277,74,1.0],[122,277,75,1.0],[122,277,76,1.0],[122,277,77,1.0],[122,277,78,1.0],[122,277,79,1.0],[122,278,64,1.0],[122,278,65,1.0],[122,278,66,1.0],[122,278,67,1.0],[122,278,68,1.0],[122,278,69,1.0],[122,278,70,1.0],[122,278,71,1.0],[122,278,72,1.0],[122,278,73,1.0],[122,278,74,1.0],[122,278,75,1.0],[122,278,76,1.0],[122,278,77,1.0],[122,278,78,1.0],[122,278,79,1.0],[122,279,64,1.0],[122,279,65,1.0],[122,279,66,1.0],[122,279,67,1.0],[122,279,68,1.0],[122,279,69,1.0],[122,279,70,1.0],[122,279,71,1.0],[122,279,72,1.0],[122,279,73,1.0],[122,279,74,1.0],[122,279,75,1.0],[122,279,76,1.0],[122,279,77,1.0],[122,279,78,1.0],[122,279,79,1.0],[122,280,64,1.0],[122,280,65,1.0],[122,280,66,1.0],[122,280,67,1.0],[122,280,68,1.0],[122,280,69,1.0],[122,280,70,1.0],[122,280,71,1.0],[122,280,72,1.0],[122,280,73,1.0],[122,280,74,1.0],[122,280,75,1.0],[122,280,76,1.0],[122,280,77,1.0],[122,280,78,1.0],[122,280,79,1.0],[122,281,64,1.0],[122,281,65,1.0],[122,281,66,1.0],[122,281,67,1.0],[122,281,68,1.0],[122,281,69,1.0],[122,281,70,1.0],[122,281,71,1.0],[122,281,72,1.0],[122,281,73,1.0],[122,281,74,1.0],[122,281,75,1.0],[122,281,76,1.0],[122,281,77,1.0],[122,281,78,1.0],[122,281,79,1.0],[122,282,64,1.0],[122,282,65,1.0],[122,282,66,1.0],[122,282,67,1.0],[122,282,68,1.0],[122,282,69,1.0],[122,282,70,1.0],[122,282,71,1.0],[122,282,72,1.0],[122,282,73,1.0],[122,282,74,1.0],[122,282,75,1.0],[122,282,76,1.0],[122,282,77,1.0],[122,282,78,1.0],[122,282,79,1.0],[122,283,64,1.0],[122,283,65,1.0],[122,283,66,1.0],[122,283,67,1.0],[122,283,68,1.0],[122,283,69,1.0],[122,283,70,1.0],[122,283,71,1.0],[122,283,72,1.0],[122,283,73,1.0],[122,283,74,1.0],[122,283,75,1.0],[122,283,76,1.0],[122,283,77,1.0],[122,283,78,1.0],[122,283,79,1.0],[122,284,64,1.0],[122,284,65,1.0],[122,284,66,1.0],[122,284,67,1.0],[122,284,68,1.0],[122,284,69,1.0],[122,284,70,1.0],[122,284,71,1.0],[122,284,72,1.0],[122,284,73,1.0],[122,284,74,1.0],[122,284,75,1.0],[122,284,76,1.0],[122,284,77,1.0],[122,284,78,1.0],[122,284,79,1.0],[122,285,64,1.0],[122,285,65,1.0],[122,285,66,1.0],[122,285,67,1.0],[122,285,68,1.0],[122,285,69,1.0],[122,285,70,1.0],[122,285,71,1.0],[122,285,72,1.0],[122,285,73,1.0],[122,285,74,1.0],[122,285,75,1.0],[122,285,76,1.0],[122,285,77,1.0],[122,285,78,1.0],[122,285,79,1.0],[122,286,64,1.0],[122,286,65,1.0],[122,286,66,1.0],[122,286,67,1.0],[122,286,68,1.0],[122,286,69,1.0],[122,286,70,1.0],[122,286,71,1.0],[122,286,72,1.0],[122,286,73,1.0],[122,286,74,1.0],[122,286,75,1.0],[122,286,76,1.0],[122,286,77,1.0],[122,286,78,1.0],[122,286,79,1.0],[122,287,64,1.0],[122,287,65,1.0],[122,287,66,1.0],[122,287,67,1.0],[122,287,68,1.0],[122,287,69,1.0],[122,287,70,1.0],[122,287,71,1.0],[122,287,72,1.0],[122,287,73,1.0],[122,287,74,1.0],[122,287,75,1.0],[122,287,76,1.0],[122,287,77,1.0],[122,287,78,1.0],[122,287,79,1.0],[122,288,64,1.0],[122,288,65,1.0],[122,288,66,1.0],[122,288,67,1.0],[122,288,68,1.0],[122,288,69,1.0],[122,288,70,1.0],[122,288,71,1.0],[122,288,72,1.0],[122,288,73,1.0],[122,288,74,1.0],[122,288,75,1.0],[122,288,76,1.0],[122,288,77,1.0],[122,288,78,1.0],[122,288,79,1.0],[122,289,64,1.0],[122,289,65,1.0],[122,289,66,1.0],[122,289,67,1.0],[122,289,68,1.0],[122,289,69,1.0],[122,289,70,1.0],[122,289,71,1.0],[122,289,72,1.0],[122,289,73,1.0],[122,289,74,1.0],[122,289,75,1.0],[122,289,76,1.0],[122,289,77,1.0],[122,289,78,1.0],[122,289,79,1.0],[122,290,64,1.0],[122,290,65,1.0],[122,290,66,1.0],[122,290,67,1.0],[122,290,68,1.0],[122,290,69,1.0],[122,290,70,1.0],[122,290,71,1.0],[122,290,72,1.0],[122,290,73,1.0],[122,290,74,1.0],[122,290,75,1.0],[122,290,76,1.0],[122,290,77,1.0],[122,290,78,1.0],[122,290,79,1.0],[122,291,64,1.0],[122,291,65,1.0],[122,291,66,1.0],[122,291,67,1.0],[122,291,68,1.0],[122,291,69,1.0],[122,291,70,1.0],[122,291,71,1.0],[122,291,72,1.0],[122,291,73,1.0],[122,291,74,1.0],[122,291,75,1.0],[122,291,76,1.0],[122,291,77,1.0],[122,291,78,1.0],[122,291,79,1.0],[122,292,64,1.0],[122,292,65,1.0],[122,292,66,1.0],[122,292,67,1.0],[122,292,68,1.0],[122,292,69,1.0],[122,292,70,1.0],[122,292,71,1.0],[122,292,72,1.0],[122,292,73,1.0],[122,292,74,1.0],[122,292,75,1.0],[122,292,76,1.0],[122,292,77,1.0],[122,292,78,1.0],[122,292,79,1.0],[122,293,64,1.0],[122,293,65,1.0],[122,293,66,1.0],[122,293,67,1.0],[122,293,68,1.0],[122,293,69,1.0],[122,293,70,1.0],[122,293,71,1.0],[122,293,72,1.0],[122,293,73,1.0],[122,293,74,1.0],[122,293,75,1.0],[122,293,76,1.0],[122,293,77,1.0],[122,293,78,1.0],[122,293,79,1.0],[122,294,64,1.0],[122,294,65,1.0],[122,294,66,1.0],[122,294,67,1.0],[122,294,68,1.0],[122,294,69,1.0],[122,294,70,1.0],[122,294,71,1.0],[122,294,72,1.0],[122,294,73,1.0],[122,294,74,1.0],[122,294,75,1.0],[122,294,76,1.0],[122,294,77,1.0],[122,294,78,1.0],[122,294,79,1.0],[122,295,64,1.0],[122,295,65,1.0],[122,295,66,1.0],[122,295,67,1.0],[122,295,68,1.0],[122,295,69,1.0],[122,295,70,1.0],[122,295,71,1.0],[122,295,72,1.0],[122,295,73,1.0],[122,295,74,1.0],[122,295,75,1.0],[122,295,76,1.0],[122,295,77,1.0],[122,295,78,1.0],[122,295,79,1.0],[122,296,64,1.0],[122,296,65,1.0],[122,296,66,1.0],[122,296,67,1.0],[122,296,68,1.0],[122,296,69,1.0],[122,296,70,1.0],[122,296,71,1.0],[122,296,72,1.0],[122,296,73,1.0],[122,296,74,1.0],[122,296,75,1.0],[122,296,76,1.0],[122,296,77,1.0],[122,296,78,1.0],[122,296,79,1.0],[122,297,64,1.0],[122,297,65,1.0],[122,297,66,1.0],[122,297,67,1.0],[122,297,68,1.0],[122,297,69,1.0],[122,297,70,1.0],[122,297,71,1.0],[122,297,72,1.0],[122,297,73,1.0],[122,297,74,1.0],[122,297,75,1.0],[122,297,76,1.0],[122,297,77,1.0],[122,297,78,1.0],[122,297,79,1.0],[122,298,64,1.0],[122,298,65,1.0],[122,298,66,1.0],[122,298,67,1.0],[122,298,68,1.0],[122,298,69,1.0],[122,298,70,1.0],[122,298,71,1.0],[122,298,72,1.0],[122,298,73,1.0],[122,298,74,1.0],[122,298,75,1.0],[122,298,76,1.0],[122,298,77,1.0],[122,298,78,1.0],[122,298,79,1.0],[122,299,64,1.0],[122,299,65,1.0],[122,299,66,1.0],[122,299,67,1.0],[122,299,68,1.0],[122,299,69,1.0],[122,299,70,1.0],[122,299,71,1.0],[122,299,72,1.0],[122,299,73,1.0],[122,299,74,1.0],[122,299,75,1.0],[122,299,76,1.0],[122,299,77,1.0],[122,299,78,1.0],[122,299,79,1.0],[122,300,64,1.0],[122,300,65,1.0],[122,300,66,1.0],[122,300,67,1.0],[122,300,68,1.0],[122,300,69,1.0],[122,300,70,1.0],[122,300,71,1.0],[122,300,72,1.0],[122,300,73,1.0],[122,300,74,1.0],[122,300,75,1.0],[122,300,76,1.0],[122,300,77,1.0],[122,300,78,1.0],[122,300,79,1.0],[122,301,64,1.0],[122,301,65,1.0],[122,301,66,1.0],[122,301,67,1.0],[122,301,68,1.0],[122,301,69,1.0],[122,301,70,1.0],[122,301,71,1.0],[122,301,72,1.0],[122,301,73,1.0],[122,301,74,1.0],[122,301,75,1.0],[122,301,76,1.0],[122,301,77,1.0],[122,301,78,1.0],[122,301,79,1.0],[122,302,64,1.0],[122,302,65,1.0],[122,302,66,1.0],[122,302,67,1.0],[122,302,68,1.0],[122,302,69,1.0],[122,302,70,1.0],[122,302,71,1.0],[122,302,72,1.0],[122,302,73,1.0],[122,302,74,1.0],[122,302,75,1.0],[122,302,76,1.0],[122,302,77,1.0],[122,302,78,1.0],[122,302,79,1.0],[122,303,64,1.0],[122,303,65,1.0],[122,303,66,1.0],[122,303,67,1.0],[122,303,68,1.0],[122,303,69,1.0],[122,303,70,1.0],[122,303,71,1.0],[122,303,72,1.0],[122,303,73,1.0],[122,303,74,1.0],[122,303,75,1.0],[122,303,76,1.0],[122,303,77,1.0],[122,303,78,1.0],[122,303,79,1.0],[122,304,64,1.0],[122,304,65,1.0],[122,304,66,1.0],[122,304,67,1.0],[122,304,68,1.0],[122,304,69,1.0],[122,304,70,1.0],[122,304,71,1.0],[122,304,72,1.0],[122,304,73,1.0],[122,304,74,1.0],[122,304,75,1.0],[122,304,76,1.0],[122,304,77,1.0],[122,304,78,1.0],[122,304,79,1.0],[122,305,64,1.0],[122,305,65,1.0],[122,305,66,1.0],[122,305,67,1.0],[122,305,68,1.0],[122,305,69,1.0],[122,305,70,1.0],[122,305,71,1.0],[122,305,72,1.0],[122,305,73,1.0],[122,305,74,1.0],[122,305,75,1.0],[122,305,76,1.0],[122,305,77,1.0],[122,305,78,1.0],[122,305,79,1.0],[122,306,64,1.0],[122,306,65,1.0],[122,306,66,1.0],[122,306,67,1.0],[122,306,68,1.0],[122,306,69,1.0],[122,306,70,1.0],[122,306,71,1.0],[122,306,72,1.0],[122,306,73,1.0],[122,306,74,1.0],[122,306,75,1.0],[122,306,76,1.0],[122,306,77,1.0],[122,306,78,1.0],[122,306,79,1.0],[122,307,64,1.0],[122,307,65,1.0],[122,307,66,1.0],[122,307,67,1.0],[122,307,68,1.0],[122,307,69,1.0],[122,307,70,1.0],[122,307,71,1.0],[122,307,72,1.0],[122,307,73,1.0],[122,307,74,1.0],[122,307,75,1.0],[122,307,76,1.0],[122,307,77,1.0],[122,307,78,1.0],[122,307,79,1.0],[122,308,64,1.0],[122,308,65,1.0],[122,308,66,1.0],[122,308,67,1.0],[122,308,68,1.0],[122,308,69,1.0],[122,308,70,1.0],[122,308,71,1.0],[122,308,72,1.0],[122,308,73,1.0],[122,308,74,1.0],[122,308,75,1.0],[122,308,76,1.0],[122,308,77,1.0],[122,308,78,1.0],[122,308,79,1.0],[122,309,64,1.0],[122,309,65,1.0],[122,309,66,1.0],[122,309,67,1.0],[122,309,68,1.0],[122,309,69,1.0],[122,309,70,1.0],[122,309,71,1.0],[122,309,72,1.0],[122,309,73,1.0],[122,309,74,1.0],[122,309,75,1.0],[122,309,76,1.0],[122,309,77,1.0],[122,309,78,1.0],[122,309,79,1.0],[122,310,64,1.0],[122,310,65,1.0],[122,310,66,1.0],[122,310,67,1.0],[122,310,68,1.0],[122,310,69,1.0],[122,310,70,1.0],[122,310,71,1.0],[122,310,72,1.0],[122,310,73,1.0],[122,310,74,1.0],[122,310,75,1.0],[122,310,76,1.0],[122,310,77,1.0],[122,310,78,1.0],[122,310,79,1.0],[122,311,64,1.0],[122,311,65,1.0],[122,311,66,1.0],[122,311,67,1.0],[122,311,68,1.0],[122,311,69,1.0],[122,311,70,1.0],[122,311,71,1.0],[122,311,72,1.0],[122,311,73,1.0],[122,311,74,1.0],[122,311,75,1.0],[122,311,76,1.0],[122,311,77,1.0],[122,311,78,1.0],[122,311,79,1.0],[122,312,64,1.0],[122,312,65,1.0],[122,312,66,1.0],[122,312,67,1.0],[122,312,68,1.0],[122,312,69,1.0],[122,312,70,1.0],[122,312,71,1.0],[122,312,72,1.0],[122,312,73,1.0],[122,312,74,1.0],[122,312,75,1.0],[122,312,76,1.0],[122,312,77,1.0],[122,312,78,1.0],[122,312,79,1.0],[122,313,64,1.0],[122,313,65,1.0],[122,313,66,1.0],[122,313,67,1.0],[122,313,68,1.0],[122,313,69,1.0],[122,313,70,1.0],[122,313,71,1.0],[122,313,72,1.0],[122,313,73,1.0],[122,313,74,1.0],[122,313,75,1.0],[122,313,76,1.0],[122,313,77,1.0],[122,313,78,1.0],[122,313,79,1.0],[122,314,64,1.0],[122,314,65,1.0],[122,314,66,1.0],[122,314,67,1.0],[122,314,68,1.0],[122,314,69,1.0],[122,314,70,1.0],[122,314,71,1.0],[122,314,72,1.0],[122,314,73,1.0],[122,314,74,1.0],[122,314,75,1.0],[122,314,76,1.0],[122,314,77,1.0],[122,314,78,1.0],[122,314,79,1.0],[122,315,64,1.0],[122,315,65,1.0],[122,315,66,1.0],[122,315,67,1.0],[122,315,68,1.0],[122,315,69,1.0],[122,315,70,1.0],[122,315,71,1.0],[122,315,72,1.0],[122,315,73,1.0],[122,315,74,1.0],[122,315,75,1.0],[122,315,76,1.0],[122,315,77,1.0],[122,315,78,1.0],[122,315,79,1.0],[122,316,64,1.0],[122,316,65,1.0],[122,316,66,1.0],[122,316,67,1.0],[122,316,68,1.0],[122,316,69,1.0],[122,316,70,1.0],[122,316,71,1.0],[122,316,72,1.0],[122,316,73,1.0],[122,316,74,1.0],[122,316,75,1.0],[122,316,76,1.0],[122,316,77,1.0],[122,316,78,1.0],[122,316,79,1.0],[122,317,64,1.0],[122,317,65,1.0],[122,317,66,1.0],[122,317,67,1.0],[122,317,68,1.0],[122,317,69,1.0],[122,317,70,1.0],[122,317,71,1.0],[122,317,72,1.0],[122,317,73,1.0],[122,317,74,1.0],[122,317,75,1.0],[122,317,76,1.0],[122,317,77,1.0],[122,317,78,1.0],[122,317,79,1.0],[122,318,64,1.0],[122,318,65,1.0],[122,318,66,1.0],[122,318,67,1.0],[122,318,68,1.0],[122,318,69,1.0],[122,318,70,1.0],[122,318,71,1.0],[122,318,72,1.0],[122,318,73,1.0],[122,318,74,1.0],[122,318,75,1.0],[122,318,76,1.0],[122,318,77,1.0],[122,318,78,1.0],[122,318,79,1.0],[122,319,64,1.0],[122,319,65,1.0],[122,319,66,1.0],[122,319,67,1.0],[122,319,68,1.0],[122,319,69,1.0],[122,319,70,1.0],[122,319,71,1.0],[122,319,72,1.0],[122,319,73,1.0],[122,319,74,1.0],[122,319,75,1.0],[122,319,76,1.0],[122,319,77,1.0],[122,319,78,1.0],[122,319,79,1.0],[123,-64,64,1.0],[123,-64,65,1.0],[123,-64,66,1.0],[123,-64,67,1.0],[123,-64,68,1.0],[123,-64,69,1.0],[123,-64,70,1.0],[123,-64,71,1.0],[123,-64,72,1.0],[123,-64,73,1.0],[123,-64,74,1.0],[123,-64,75,1.0],[123,-64,76,1.0],[123,-64,77,1.0],[123,-64,78,1.0],[123,-64,79,1.0],[123,-63,64,1.0],[123,-63,65,1.0],[123,-63,66,1.0],[123,-63,67,1.0],[123,-63,68,1.0],[123,-63,69,1.0],[123,-63,70,1.0],[123,-63,71,1.0],[123,-63,72,1.0],[123,-63,73,1.0],[123,-63,74,1.0],[123,-63,75,1.0],[123,-63,76,1.0],[123,-63,77,1.0],[123,-63,78,1.0],[123,-63,79,1.0],[123,-62,64,1.0],[123,-62,65,1.0],[123,-62,66,1.0],[123,-62,67,1.0],[123,-62,68,1.0],[123,-62,69,1.0],[123,-62,70,1.0],[123,-62,71,1.0],[123,-62,72,1.0],[123,-62,73,1.0],[123,-62,74,1.0],[123,-62,75,1.0],[123,-62,76,1.0],[123,-62,77,1.0],[123,-62,78,1.0],[123,-62,79,1.0],[123,-61,64,1.0],[123,-61,65,1.0],[123,-61,66,1.0],[123,-61,67,1.0],[123,-61,68,1.0],[123,-61,69,1.0],[123,-61,70,1.0],[123,-61,71,1.0],[123,-61,72,1.0],[123,-61,73,1.0],[123,-61,74,1.0],[123,-61,75,1.0],[123,-61,76,1.0],[123,-61,77,1.0],[123,-61,78,1.0],[123,-61,79,1.0],[123,-60,64,1.0],[123,-60,65,1.0],[123,-60,66,1.0],[123,-60,67,1.0],[123,-60,68,1.0],[123,-60,69,1.0],[123,-60,70,1.0],[123,-60,71,1.0],[123,-60,72,1.0],[123,-60,73,1.0],[123,-60,74,1.0],[123,-60,75,1.0],[123,-60,76,1.0],[123,-60,77,1.0],[123,-60,78,1.0],[123,-60,79,1.0],[123,-59,64,1.0],[123,-59,65,1.0],[123,-59,66,1.0],[123,-59,67,1.0],[123,-59,68,1.0],[123,-59,69,1.0],[123,-59,70,1.0],[123,-59,71,1.0],[123,-59,72,1.0],[123,-59,73,1.0],[123,-59,74,1.0],[123,-59,75,1.0],[123,-59,76,1.0],[123,-59,77,1.0],[123,-59,78,1.0],[123,-59,79,1.0],[123,-58,64,1.0],[123,-58,65,1.0],[123,-58,66,1.0],[123,-58,67,1.0],[123,-58,68,1.0],[123,-58,69,1.0],[123,-58,70,1.0],[123,-58,71,1.0],[123,-58,72,1.0],[123,-58,73,1.0],[123,-58,74,1.0],[123,-58,75,1.0],[123,-58,76,1.0],[123,-58,77,1.0],[123,-58,78,1.0],[123,-58,79,1.0],[123,-57,64,1.0],[123,-57,65,1.0],[123,-57,66,1.0],[123,-57,67,1.0],[123,-57,68,1.0],[123,-57,69,1.0],[123,-57,70,1.0],[123,-57,71,1.0],[123,-57,72,1.0],[123,-57,73,1.0],[123,-57,74,1.0],[123,-57,75,1.0],[123,-57,76,1.0],[123,-57,77,1.0],[123,-57,78,1.0],[123,-57,79,1.0],[123,-56,64,1.0],[123,-56,65,1.0],[123,-56,66,1.0],[123,-56,67,1.0],[123,-56,68,1.0],[123,-56,69,1.0],[123,-56,70,1.0],[123,-56,71,1.0],[123,-56,72,1.0],[123,-56,73,1.0],[123,-56,74,1.0],[123,-56,75,1.0],[123,-56,76,1.0],[123,-56,77,1.0],[123,-56,78,1.0],[123,-56,79,1.0],[123,-55,64,1.0],[123,-55,65,1.0],[123,-55,66,1.0],[123,-55,67,1.0],[123,-55,68,1.0],[123,-55,69,1.0],[123,-55,70,1.0],[123,-55,71,1.0],[123,-55,72,1.0],[123,-55,73,1.0],[123,-55,74,1.0],[123,-55,75,1.0],[123,-55,76,1.0],[123,-55,77,1.0],[123,-55,78,1.0],[123,-55,79,1.0],[123,-54,64,1.0],[123,-54,65,1.0],[123,-54,66,1.0],[123,-54,67,1.0],[123,-54,68,1.0],[123,-54,69,1.0],[123,-54,70,1.0],[123,-54,71,1.0],[123,-54,72,1.0],[123,-54,73,1.0],[123,-54,74,1.0],[123,-54,75,1.0],[123,-54,76,1.0],[123,-54,77,1.0],[123,-54,78,1.0],[123,-54,79,1.0],[123,-53,64,1.0],[123,-53,65,1.0],[123,-53,66,1.0],[123,-53,67,1.0],[123,-53,68,1.0],[123,-53,69,1.0],[123,-53,70,1.0],[123,-53,71,1.0],[123,-53,72,1.0],[123,-53,73,1.0],[123,-53,74,1.0],[123,-53,75,1.0],[123,-53,76,1.0],[123,-53,77,1.0],[123,-53,78,1.0],[123,-53,79,1.0],[123,-52,64,1.0],[123,-52,65,1.0],[123,-52,66,1.0],[123,-52,67,1.0],[123,-52,68,1.0],[123,-52,69,1.0],[123,-52,70,1.0],[123,-52,71,1.0],[123,-52,72,1.0],[123,-52,73,1.0],[123,-52,74,1.0],[123,-52,75,1.0],[123,-52,76,1.0],[123,-52,77,1.0],[123,-52,78,1.0],[123,-52,79,1.0],[123,-51,64,1.0],[123,-51,65,1.0],[123,-51,66,1.0],[123,-51,67,1.0],[123,-51,68,1.0],[123,-51,69,1.0],[123,-51,70,1.0],[123,-51,71,1.0],[123,-51,72,1.0],[123,-51,73,1.0],[123,-51,74,1.0],[123,-51,75,1.0],[123,-51,76,1.0],[123,-51,77,1.0],[123,-51,78,1.0],[123,-51,79,1.0],[123,-50,64,1.0],[123,-50,65,1.0],[123,-50,66,1.0],[123,-50,67,1.0],[123,-50,68,1.0],[123,-50,69,1.0],[123,-50,70,1.0],[123,-50,71,1.0],[123,-50,72,1.0],[123,-50,73,1.0],[123,-50,74,1.0],[123,-50,75,1.0],[123,-50,76,1.0],[123,-50,77,1.0],[123,-50,78,1.0],[123,-50,79,1.0],[123,-49,64,1.0],[123,-49,65,1.0],[123,-49,66,1.0],[123,-49,67,1.0],[123,-49,68,1.0],[123,-49,69,1.0],[123,-49,70,1.0],[123,-49,71,1.0],[123,-49,72,1.0],[123,-49,73,1.0],[123,-49,74,1.0],[123,-49,75,1.0],[123,-49,76,1.0],[123,-49,77,1.0],[123,-49,78,1.0],[123,-49,79,1.0],[123,-48,64,1.0],[123,-48,65,1.0],[123,-48,66,1.0],[123,-48,67,1.0],[123,-48,68,1.0],[123,-48,69,1.0],[123,-48,70,1.0],[123,-48,71,1.0],[123,-48,72,1.0],[123,-48,73,1.0],[123,-48,74,1.0],[123,-48,75,1.0],[123,-48,76,1.0],[123,-48,77,1.0],[123,-48,78,1.0],[123,-48,79,1.0],[123,-47,64,1.0],[123,-47,65,1.0],[123,-47,66,1.0],[123,-47,67,1.0],[123,-47,68,1.0],[123,-47,69,1.0],[123,-47,70,1.0],[123,-47,71,1.0],[123,-47,72,1.0],[123,-47,73,1.0],[123,-47,74,1.0],[123,-47,75,1.0],[123,-47,76,1.0],[123,-47,77,1.0],[123,-47,78,1.0],[123,-47,79,1.0],[123,-46,64,1.0],[123,-46,65,1.0],[123,-46,66,1.0],[123,-46,67,1.0],[123,-46,68,1.0],[123,-46,69,1.0],[123,-46,70,1.0],[123,-46,71,1.0],[123,-46,72,1.0],[123,-46,73,1.0],[123,-46,74,1.0],[123,-46,75,1.0],[123,-46,76,1.0],[123,-46,77,1.0],[123,-46,78,1.0],[123,-46,79,1.0],[123,-45,64,1.0],[123,-45,65,1.0],[123,-45,66,1.0],[123,-45,67,1.0],[123,-45,68,1.0],[123,-45,69,1.0],[123,-45,70,1.0],[123,-45,71,1.0],[123,-45,72,1.0],[123,-45,73,1.0],[123,-45,74,1.0],[123,-45,75,1.0],[123,-45,76,1.0],[123,-45,77,1.0],[123,-45,78,1.0],[123,-45,79,1.0],[123,-44,64,1.0],[123,-44,65,1.0],[123,-44,66,1.0],[123,-44,67,1.0],[123,-44,68,1.0],[123,-44,69,1.0],[123,-44,70,1.0],[123,-44,71,1.0],[123,-44,72,1.0],[123,-44,73,1.0],[123,-44,74,1.0],[123,-44,75,1.0],[123,-44,76,1.0],[123,-44,77,1.0],[123,-44,78,1.0],[123,-44,79,1.0],[123,-43,64,1.0],[123,-43,65,1.0],[123,-43,66,1.0],[123,-43,67,1.0],[123,-43,68,1.0],[123,-43,69,1.0],[123,-43,70,1.0],[123,-43,71,1.0],[123,-43,72,1.0],[123,-43,73,1.0],[123,-43,74,1.0],[123,-43,75,1.0],[123,-43,76,1.0],[123,-43,77,1.0],[123,-43,78,1.0],[123,-43,79,1.0],[123,-42,64,1.0],[123,-42,65,1.0],[123,-42,66,1.0],[123,-42,67,1.0],[123,-42,68,1.0],[123,-42,69,1.0],[123,-42,70,1.0],[123,-42,71,1.0],[123,-42,72,1.0],[123,-42,73,1.0],[123,-42,74,1.0],[123,-42,75,1.0],[123,-42,76,1.0],[123,-42,77,1.0],[123,-42,78,1.0],[123,-42,79,1.0],[123,-41,64,1.0],[123,-41,65,1.0],[123,-41,66,1.0],[123,-41,67,1.0],[123,-41,68,1.0],[123,-41,69,1.0],[123,-41,70,1.0],[123,-41,71,1.0],[123,-41,72,1.0],[123,-41,73,1.0],[123,-41,74,1.0],[123,-41,75,1.0],[123,-41,76,1.0],[123,-41,77,1.0],[123,-41,78,1.0],[123,-41,79,1.0],[123,-40,64,1.0],[123,-40,65,1.0],[123,-40,66,1.0],[123,-40,67,1.0],[123,-40,68,1.0],[123,-40,69,1.0],[123,-40,70,1.0],[123,-40,71,1.0],[123,-40,72,1.0],[123,-40,73,1.0],[123,-40,74,1.0],[123,-40,75,1.0],[123,-40,76,1.0],[123,-40,77,1.0],[123,-40,78,1.0],[123,-40,79,1.0],[123,-39,64,1.0],[123,-39,65,1.0],[123,-39,66,1.0],[123,-39,67,1.0],[123,-39,68,1.0],[123,-39,69,1.0],[123,-39,70,1.0],[123,-39,71,1.0],[123,-39,72,1.0],[123,-39,73,1.0],[123,-39,74,1.0],[123,-39,75,1.0],[123,-39,76,1.0],[123,-39,77,1.0],[123,-39,78,1.0],[123,-39,79,1.0],[123,-38,64,1.0],[123,-38,65,1.0],[123,-38,66,1.0],[123,-38,67,1.0],[123,-38,68,1.0],[123,-38,69,1.0],[123,-38,70,1.0],[123,-38,71,1.0],[123,-38,72,1.0],[123,-38,73,1.0],[123,-38,74,1.0],[123,-38,75,1.0],[123,-38,76,1.0],[123,-38,77,1.0],[123,-38,78,1.0],[123,-38,79,1.0],[123,-37,64,1.0],[123,-37,65,1.0],[123,-37,66,1.0],[123,-37,67,1.0],[123,-37,68,1.0],[123,-37,69,1.0],[123,-37,70,1.0],[123,-37,71,1.0],[123,-37,72,1.0],[123,-37,73,1.0],[123,-37,74,1.0],[123,-37,75,1.0],[123,-37,76,1.0],[123,-37,77,1.0],[123,-37,78,1.0],[123,-37,79,1.0],[123,-36,64,1.0],[123,-36,65,1.0],[123,-36,66,1.0],[123,-36,67,1.0],[123,-36,68,1.0],[123,-36,69,1.0],[123,-36,70,1.0],[123,-36,71,1.0],[123,-36,72,1.0],[123,-36,73,1.0],[123,-36,74,1.0],[123,-36,75,1.0],[123,-36,76,1.0],[123,-36,77,1.0],[123,-36,78,1.0],[123,-36,79,1.0],[123,-35,64,1.0],[123,-35,65,1.0],[123,-35,66,1.0],[123,-35,67,1.0],[123,-35,68,1.0],[123,-35,69,1.0],[123,-35,70,1.0],[123,-35,71,1.0],[123,-35,72,1.0],[123,-35,73,1.0],[123,-35,74,1.0],[123,-35,75,1.0],[123,-35,76,1.0],[123,-35,77,1.0],[123,-35,78,1.0],[123,-35,79,1.0],[123,-34,64,1.0],[123,-34,65,1.0],[123,-34,66,1.0],[123,-34,67,1.0],[123,-34,68,1.0],[123,-34,69,1.0],[123,-34,70,1.0],[123,-34,71,1.0],[123,-34,72,1.0],[123,-34,73,1.0],[123,-34,74,1.0],[123,-34,75,1.0],[123,-34,76,1.0],[123,-34,77,1.0],[123,-34,78,1.0],[123,-34,79,1.0],[123,-33,64,1.0],[123,-33,65,1.0],[123,-33,66,1.0],[123,-33,67,1.0],[123,-33,68,1.0],[123,-33,69,1.0],[123,-33,70,1.0],[123,-33,71,1.0],[123,-33,72,1.0],[123,-33,73,1.0],[123,-33,74,1.0],[123,-33,75,1.0],[123,-33,76,1.0],[123,-33,77,1.0],[123,-33,78,1.0],[123,-33,79,1.0],[123,-32,64,1.0],[123,-32,65,1.0],[123,-32,66,1.0],[123,-32,67,1.0],[123,-32,68,1.0],[123,-32,69,1.0],[123,-32,70,1.0],[123,-32,71,1.0],[123,-32,72,1.0],[123,-32,73,1.0],[123,-32,74,1.0],[123,-32,75,1.0],[123,-32,76,1.0],[123,-32,77,1.0],[123,-32,78,1.0],[123,-32,79,1.0],[123,-31,64,1.0],[123,-31,65,1.0],[123,-31,66,1.0],[123,-31,67,1.0],[123,-31,68,1.0],[123,-31,69,1.0],[123,-31,70,1.0],[123,-31,71,1.0],[123,-31,72,1.0],[123,-31,73,1.0],[123,-31,74,1.0],[123,-31,75,1.0],[123,-31,76,1.0],[123,-31,77,1.0],[123,-31,78,1.0],[123,-31,79,1.0],[123,-30,64,1.0],[123,-30,65,1.0],[123,-30,66,1.0],[123,-30,67,1.0],[123,-30,68,1.0],[123,-30,69,1.0],[123,-30,70,1.0],[123,-30,71,1.0],[123,-30,72,1.0],[123,-30,73,1.0],[123,-30,74,1.0],[123,-30,75,1.0],[123,-30,76,1.0],[123,-30,77,1.0],[123,-30,78,1.0],[123,-30,79,1.0],[123,-29,64,1.0],[123,-29,65,1.0],[123,-29,66,1.0],[123,-29,67,1.0],[123,-29,68,1.0],[123,-29,69,1.0],[123,-29,70,1.0],[123,-29,71,1.0],[123,-29,72,1.0],[123,-29,73,1.0],[123,-29,74,1.0],[123,-29,75,1.0],[123,-29,76,1.0],[123,-29,77,1.0],[123,-29,78,1.0],[123,-29,79,1.0],[123,-28,64,1.0],[123,-28,65,1.0],[123,-28,66,1.0],[123,-28,67,1.0],[123,-28,68,1.0],[123,-28,69,1.0],[123,-28,70,1.0],[123,-28,71,1.0],[123,-28,72,1.0],[123,-28,73,1.0],[123,-28,74,1.0],[123,-28,75,1.0],[123,-28,76,1.0],[123,-28,77,1.0],[123,-28,78,1.0],[123,-28,79,1.0],[123,-27,64,1.0],[123,-27,65,1.0],[123,-27,66,1.0],[123,-27,67,1.0],[123,-27,68,1.0],[123,-27,69,1.0],[123,-27,70,1.0],[123,-27,71,1.0],[123,-27,72,1.0],[123,-27,73,1.0],[123,-27,74,1.0],[123,-27,75,1.0],[123,-27,76,1.0],[123,-27,77,1.0],[123,-27,78,1.0],[123,-27,79,1.0],[123,-26,64,1.0],[123,-26,65,1.0],[123,-26,66,1.0],[123,-26,67,1.0],[123,-26,68,1.0],[123,-26,69,1.0],[123,-26,70,1.0],[123,-26,71,1.0],[123,-26,72,1.0],[123,-26,73,1.0],[123,-26,74,1.0],[123,-26,75,1.0],[123,-26,76,1.0],[123,-26,77,1.0],[123,-26,78,1.0],[123,-26,79,1.0],[123,-25,64,1.0],[123,-25,65,1.0],[123,-25,66,1.0],[123,-25,67,1.0],[123,-25,68,1.0],[123,-25,69,1.0],[123,-25,70,1.0],[123,-25,71,1.0],[123,-25,72,1.0],[123,-25,73,1.0],[123,-25,74,1.0],[123,-25,75,1.0],[123,-25,76,1.0],[123,-25,77,1.0],[123,-25,78,1.0],[123,-25,79,1.0],[123,-24,64,1.0],[123,-24,65,1.0],[123,-24,66,1.0],[123,-24,67,1.0],[123,-24,68,1.0],[123,-24,69,1.0],[123,-24,70,1.0],[123,-24,71,1.0],[123,-24,72,1.0],[123,-24,73,1.0],[123,-24,74,1.0],[123,-24,75,1.0],[123,-24,76,1.0],[123,-24,77,1.0],[123,-24,78,1.0],[123,-24,79,1.0],[123,-23,64,1.0],[123,-23,65,1.0],[123,-23,66,1.0],[123,-23,67,1.0],[123,-23,68,1.0],[123,-23,69,1.0],[123,-23,70,1.0],[123,-23,71,1.0],[123,-23,72,1.0],[123,-23,73,1.0],[123,-23,74,1.0],[123,-23,75,1.0],[123,-23,76,1.0],[123,-23,77,1.0],[123,-23,78,1.0],[123,-23,79,1.0],[123,-22,64,1.0],[123,-22,65,1.0],[123,-22,66,1.0],[123,-22,67,1.0],[123,-22,68,1.0],[123,-22,69,1.0],[123,-22,70,1.0],[123,-22,71,1.0],[123,-22,72,1.0],[123,-22,73,1.0],[123,-22,74,1.0],[123,-22,75,1.0],[123,-22,76,1.0],[123,-22,77,1.0],[123,-22,78,1.0],[123,-22,79,1.0],[123,-21,64,1.0],[123,-21,65,1.0],[123,-21,66,1.0],[123,-21,67,1.0],[123,-21,68,1.0],[123,-21,69,1.0],[123,-21,70,1.0],[123,-21,71,1.0],[123,-21,72,1.0],[123,-21,73,1.0],[123,-21,74,1.0],[123,-21,75,1.0],[123,-21,76,1.0],[123,-21,77,1.0],[123,-21,78,1.0],[123,-21,79,1.0],[123,-20,64,1.0],[123,-20,65,1.0],[123,-20,66,1.0],[123,-20,67,1.0],[123,-20,68,1.0],[123,-20,69,1.0],[123,-20,70,1.0],[123,-20,71,1.0],[123,-20,72,1.0],[123,-20,73,1.0],[123,-20,74,1.0],[123,-20,75,1.0],[123,-20,76,1.0],[123,-20,77,1.0],[123,-20,78,1.0],[123,-20,79,1.0],[123,-19,64,1.0],[123,-19,65,1.0],[123,-19,66,1.0],[123,-19,67,1.0],[123,-19,68,1.0],[123,-19,69,1.0],[123,-19,70,1.0],[123,-19,71,1.0],[123,-19,72,1.0],[123,-19,73,1.0],[123,-19,74,1.0],[123,-19,75,1.0],[123,-19,76,1.0],[123,-19,77,1.0],[123,-19,78,1.0],[123,-19,79,1.0],[123,-18,64,1.0],[123,-18,65,1.0],[123,-18,66,1.0],[123,-18,67,1.0],[123,-18,68,1.0],[123,-18,69,1.0],[123,-18,70,1.0],[123,-18,71,1.0],[123,-18,72,1.0],[123,-18,73,1.0],[123,-18,74,1.0],[123,-18,75,1.0],[123,-18,76,1.0],[123,-18,77,1.0],[123,-18,78,1.0],[123,-18,79,1.0],[123,-17,64,1.0],[123,-17,65,1.0],[123,-17,66,1.0],[123,-17,67,1.0],[123,-17,68,1.0],[123,-17,69,1.0],[123,-17,70,1.0],[123,-17,71,1.0],[123,-17,72,1.0],[123,-17,73,1.0],[123,-17,74,1.0],[123,-17,75,1.0],[123,-17,76,1.0],[123,-17,77,1.0],[123,-17,78,1.0],[123,-17,79,1.0],[123,-16,64,0.9751067184272327],[123,-16,65,1.0],[123,-16,66,1.0],[123,-16,67,1.0],[123,-16,68,1.0],[123,-16,69,1.0],[123,-16,70,1.0],[123,-16,71,1.0],[123,-16,72,1.0],[123,-16,73,1.0],[123,-16,74,1.0],[123,-16,75,1.0],[123,-16,76,1.0],[123,-16,77,1.0],[123,-16,78,1.0],[123,-16,79,1.0],[123,-15,64,0.650600774219166],[123,-15,65,0.7388966740348398],[123,-15,66,0.8325319526753718],[123,-15,67,0.9312740438017951],[123,-15,68,1.0],[123,-15,69,1.0],[123,-15,70,1.0],[123,-15,71,1.0],[123,-15,72,1.0],[123,-15,73,1.0],[123,-15,74,1.0],[123,-15,75,1.0],[123,-15,76,1.0],[123,-15,77,1.0],[123,-15,78,1.0],[123,-15,79,1.0],[123,-14,64,0.4074940017067574],[123,-14,65,0.4725983277968563],[123,-14,66,0.5425566642005448],[123,-14,67,0.6172081889718675],[123,-14,68,0.6963645726368632],[123,-14,69,0.7798134531087875],[123,-14,70,0.8673219139703136],[123,-14,71,0.9586399486940055],[123,-14,72,1.0],[123,-14,73,1.0],[123,-14,74,1.0],[123,-14,75,1.0],[123,-14,76,1.0],[123,-14,77,1.0],[123,-14,78,1.0],[123,-14,79,1.0],[123,-13,64,0.23403229201533715],[123,-13,65,0.2794718870780328],[123,-13,66,0.32919847681654407],[123,-13,67,0.3831229883352493],[123,-13,68,0.4411264854598259],[123,-13,69,0.5030634916800946],[123,-13,70,0.5687653225444806],[123,-13,71,0.6380434103443055],[123,-13,72,0.7106926045606589],[123,-13,73,0.7864944322944775],[123,-13,74,0.8652203037463925],[123,-13,75,0.9466346488060421],[123,-13,76,1.0],[123,-13,77,1.0],[123,-13,78,1.0],[123,-13,79,1.0],[123,-12,64,0.11846144060329682],[123,-12,65,0.14776327894702446],[123,-12,66,0.18070344902456903],[123,-12,67,0.217264631641666],[123,-12,68,0.25739738761696423],[123,-12,69,0.3010233312796066],[123,-12,70,0.3480383195256884],[123,-12,71,0.39831563953829774],[123,-12,72,0.4517091788759494],[123,-12,73,0.508056562347466],[123,-12,74,0.5671822409046778],[123,-12,75,0.6289005187328813],[123,-12,76,0.6930185057676725],[123,-12,77,0.7593389840045548],[123,-12,78,0.8276631772320168],[123,-12,79,0.8977934151700223],[123,-11,64,0.049027147169940034],[123,-11,65,0.06571833433368252],[123,-11,66,0.08531754280917545],[123,-11,67,0.1078792117482102],[123,-11,68,0.13342350264985572],[123,-11,69,0.1619393259399094],[123,-11,70,0.19338738923910662],[123,-11,71,0.22770325069086467],[123,-11,72,0.2648003612856349],[123,-11,73,0.30457308079759454],[123,-11,74,0.3468996527293805],[123,-11,75,0.39164512456530404],[123,-11,76,0.4386642006382967],[123,-11,77,0.48780401601042844],[123,-11,78,0.5389068209769561],[123,-11,79,0.5918125671002981],[123,-10,64,0.013975015567269032],[123,-10,65,0.021582787937158305],[123,-10,66,0.031286623542720625],[123,-10,67,0.04321272452014918],[123,-10,68,0.057450956730470314],[123,-10,69,0.07405773194801628],[123,-10,70,0.09305891789016252],[123,-10,71,0.11445275972474135],[123,-10,72,0.1382127972246971],[123,-10,73,0.16429076238360882],[123,-10,74,0.192619443051667],[123,-10,75,0.22311549901326724],[123,-10,76,0.25568221788832046],[123,-10,77,0.2902121992901327],[123,-10,78,0.32658995682928754],[123,-10,79,0.36469442879458525],[123,-9,64,0.00573089178992342],[123,-9,65,0.008799402844358442],[123,-9,66,0.011779321676241586],[123,-9,67,0.014669184064173828],[123,-9,68,0.017725778562462508],[123,-9,69,0.025624707743088945],[123,-9,70,0.035299193458709105],[123,-9,71,0.04681058396115797],[123,-9,72,0.06019303315244746],[123,-9,73,0.07545628249616348],[123,-9,74,0.09258841598391063],[123,-9,75,0.11155857469893196],[123,-9,76,0.13231961843605178],[123,-9,77,0.15481072284339434],[123,-9,78,0.17895990165497633],[123,-9,79,0.2046864447701192],[123,-8,64,0.0024952266753655167],[123,-8,65,0.005523583304274618],[123,-8,66,0.008466440192008998],[123,-8,67,0.011322405649341151],[123,-8,68,0.014090053839891467],[123,-8,69,0.016767938097570934],[123,-8,70,0.019354603813610885],[123,-8,71,0.021848600892994702],[123,-8,72,0.024248495780543],[123,-8,73,0.026552883056353747],[123,-8,74,0.035053275803808716],[123,-8,75,0.04522118403734646],[123,-8,76,0.05682336262195167],[123,-8,77,0.06984667472303857],[123,-8,78,0.0842638710056967],[123,-8,79,0.1000359578641032],[123,-7,64,-7.753372789344529E-4],[123,-7,65,0.0022109350729989374],[123,-7,66,0.005114786629610832],[123,-7,67,0.007934899859580964],[123,-7,68,0.010669914649746932],[123,-7,69,0.013318441759679153],[123,-7,70,0.01587907584776941],[123,-7,71,0.018350408068648398],[123,-7,72,0.020731038242183454],[123,-7,73,0.02301958659375679],[123,-7,74,0.025214705065966736],[123,-7,75,0.027315088201895328],[123,-7,76,0.02931948359963764],[123,-7,77,0.031226701938351836],[123,-7,78,0.03303562657563174],[123,-7,79,0.03899020910496717],[123,-6,64,-0.004074843272565],[123,-6,65,-0.001132562133516958],[123,-6,66,0.001730359985040085],[123,-6,67,0.004512681251762386],[123,-6,68,0.007213109033660826],[123,-6,69,0.009830313470559966],[123,-6,70,0.01236294062340016],[123,-6,71,0.014809625196195116],[123,-6,72,0.01716900283190039],[123,-6,73,0.019439721981888883],[123,-6,74,0.021620455349176865],[123,-6,75,0.023709910905546965],[123,-6,76,0.025706842482259094],[123,-6,77,0.027610059934610992],[123,-6,78,0.029418438880149257],[123,-6,79,0.031130930010798946],[123,-5,64,-0.007397296543308368],[123,-5,65,-0.004500887391939677],[123,-5,66,-0.0016807962551011121],[123,-5,67,0.0010618121917894754],[123,-5,68,0.0037257144766974226],[123,-5,69,0.006309642007899428],[123,-5,70,0.008812294327483407],[123,-5,71,0.01123235194123147],[123,-5,72,0.01356848872514077],[123,-5,73,0.01581938390828002],[123,-5,74,0.017983733632123834],[123,-5,75,0.020060262086511467],[123,-5,76,0.022047732221921912],[123,-5,77,0.0239449560383252],[123,-5,78,0.02575080445041311],[123,-5,79,0.027464216729476285],[123,-4,64,-0.010736673002916836],[123,-4,65,-0.007887987266394801],[123,-4,66,-0.005112602859996665],[123,-4,67,-0.0024116059356633565],[123,-4,68,2.1385079744586782E-4],[123,-4,69,0.002762561834798588],[123,-4,70,0.005233282218030648],[123,-4,71,0.007624740455995205],[123,-4,72,0.00993565102557497],[123,-4,73,0.012164726451953413],[123,-4,74,0.014310688968488541],[123,-4,75,0.016372281756336225],[123,-4,76,0.018348279763513935],[123,-4,77,0.02023750010366522],[123,-4,78,0.022038812034327726],[123,-4,79,0.023751146514972635],[123,-3,64,-0.014086926836911637],[123,-3,65,-0.011287783464216834],[123,-3,66,-0.008558952558596018],[123,-3,67,-0.005901440471458047],[123,-3,68,-0.0033163276285544108],[123,-3,69,-8.047547008756054E-4],[123,-3,70,0.0016320908076655274],[123,-3,71,0.003992987555576373],[123,-3,72,0.006276692942408242],[123,-3,73,0.008481955270356403],[123,-3,74,0.010607525488981133],[123,-3,75,0.01265216852319636],[123,-3,76,0.014614674184215179],[123,-3,77,0.016493867663715897],[123,-3,78,0.018288619611027464],[123,-3,79,0.01999785579360607],[123,-2,64,-0.017441997068373134],[123,-2,65,-0.014694179452582154],[123,-2,66,-0.012013716701148987],[123,-2,67,-0.00940153418031086],[123,-2,68,-0.006858638595638206],[123,-2,69,-0.004386104113409242],[123,-2,70,-0.001985058894863466],[123,-2,71,3.4332795647656206E-4],[123,-2,72,0.00259785903467364],[123,-2,73,0.004777320858126606],[123,-2,74,0.006880495683348566],[123,-2,75,0.008906172905921238],[123,-2,76,0.010853160048312618],[123,-2,77,0.012720293334822205],[123,-2,78,0.014506447853452578],[123,-2,79,0.01621054730498058],[123,-1,64,-0.020795813085756627],[123,-1,65,-0.018101066036055262],[123,-1,66,-0.01547075087832906],[123,-1,67,-0.012905710903155121],[123,-1,68,-0.010406877745122119],[123,-1,69,-0.007975257472463651],[123,-1,70,-0.005611917085276995],[123,-1,71,-0.0033179714225199247],[123,-1,72,-0.0010945704775251613],[123,-1,73,0.0010571128776590208],[123,-1,74,0.0031358947592476094],[123,-1,75,0.005140591730165643],[123,-1,76,0.007070031849648897],[123,-1,77,0.008923065314265712],[123,-1,78,0.010698574690154929],[123,-1,79,0.012395484736756224],[123,0,64,-0.024142299134709194],[123,0,65,-0.0215023258950255],[123,0,66,-0.018923899497919644],[123,0,67,-0.016407780163524607],[123,0,68,-0.013954823192672099],[123,0,69,-0.011565965042576773],[123,0,70,-0.009242209806435753],[123,0,71,-0.006984616097134168],[123,0,72,-0.004794284334797984],[123,0,73,-0.002672344438502096],[123,0,74,-6.199439219891079E-4],[123,0,75,0.0013617636067524141],[123,0,76,0.003271629541733434],[123,0,77,0.0051085209713011975],[123,0,78,0.006871330966363977],[123,0,79,0.008558988464778816],[123,1,64,-0.0274753777739037],[123,1,65,-0.024891837085050605],[123,1,66,-0.022366999319082065],[123,1,67,-0.019901540727974565],[123,1,68,-0.017496239105944944],[123,1,69,-0.015151959868958634],[123,1,70,-0.01286964253310939],[123,1,71,-0.010650287592061387],[123,1,72,-0.008494943793294879],[123,1,73,-0.006404695813462258],[123,1,74,-0.0043806523327122315],[123,1,75,-0.002423934507828747],[123,1,76,-5.356648445028062E-4],[123,1,77,0.0012830435315314484],[123,1,78,0.0030310972042918993],[123,1,79,0.0047074323985507385],[123,2,64,-0.01026589033797451],[123,2,65,-0.016440330318337727],[123,2,66,-0.024477354114979873],[123,2,67,-0.023380783120525148],[123,2,68,-0.021024878232493466],[123,2,69,-0.018726960309569503],[123,2,70,-0.01648790269882685],[123,2,71,-0.01430864595310375],[123,2,72,-0.012190185112562944],[123,2,73,-0.010133557379952786],[123,2,74,-0.008139830189424692],[123,2,75,-0.006210089668755948],[123,2,76,-0.004345429495295358],[123,2,77,-0.002546940145362671],[123,2,78,-8.156985373061615E-4],[123,2,79,8.47241932056611E-4],[123,3,64,-7.905770419193904E-4],[123,3,65,-0.002166926154651618],[123,3,66,-0.004531324871357232],[123,3,67,-0.008082998926078175],[123,3,68,-0.012984064760751845],[123,3,69,-0.019362168824046674],[123,3,70,-0.02009066116481726],[123,3,71,-0.017953331196974294],[123,3,72,-0.01587362097643865],[123,3,73,-0.01385251806249213],[123,3,74,-0.011891046286369736],[123,3,75,-0.00999025421804766],[123,3,76,-0.008151204020984112],[123,3,77,-0.006374960694545788],[123,3,78,-0.0046625817043237094],[123,3,79,-0.003015107000061419],[123,4,64,3.4026030533430835E-5],[123,4,65,-9.317285579681255E-8],[123,4,66,-6.69606116770449E-5],[123,4,67,-4.3582708729722507E-4],[123,4,68,-0.0013370172442313565],[123,4,69,-0.0029644327245084852],[123,4,70,-0.005478093910472406],[123,4,71,-0.009006704804330311],[123,4,72,-0.013650226057913615],[123,4,73,-0.01755513988773514],[123,4,74,-0.015627838752241018],[123,4,75,-0.01375794597757813],[123,4,76,-0.011946489575302699],[123,4,77,-0.010194506281607264],[123,4,78,-0.00850303118925165],[123,4,79,-0.006873087760985282],[123,5,64,0.0038902234471999485],[123,5,65,0.0017425996623370384],[123,5,66,5.982960148227514E-4],[123,5,67,1.1803424942475868E-4],[123,5,68,3.1805117364569845E-6],[123,5,69,-6.624185648354647E-6],[123,5,70,-1.3587830416384277E-4],[123,5,71,-5.756637382004889E-4],[123,5,72,-0.0014861046367259181],[123,5,73,-0.0029988268668019406],[123,5,74,-0.005219404529691539],[123,5,75,-0.008229780665512764],[123,5,76,-0.012090650097657165],[123,5,77,-0.013999021544785932],[123,5,78,-0.012330478173870792],[123,5,79,-0.010720121744846572],[123,6,64,0.02246022361568763],[123,6,65,0.01474348680120343],[123,6,66,0.009146905351225976],[123,6,67,0.005261171163449207],[123,6,68,0.002719240160038917],[123,6,69,0.0011940938504383409],[123,6,70,3.9644984547936734E-4],[123,6,71,7.243625013857887E-5],[123,6,72,1.2444586035834818E-6],[123,6,73,-7.225624643700138E-6],[123,6,74,-1.1471450863821663E-4],[123,6,75,-4.5693344066224614E-4],[123,6,76,-0.001145864159222841],[123,6,77,-0.0022720169555070888],[123,6,78,-0.003906636852693399],[123,6,79,-0.006103848712684909],[123,7,64,0.06742613874644968],[123,7,65,0.0506848060685106],[123,7,66,0.03726123068890815],[123,7,67,0.02667607225836097],[123,7,68,0.018493775455823955],[123,7,69,0.012320460124034732],[123,7,70,0.00780175409215153],[123,7,71,0.004620583351277532],[123,7,72,0.002494933874782093],[123,7,73,0.001175598909801384],[123,7,74,4.439250092558285E-4],[123,7,75,1.0956942804216053E-4],[123,7,76,8.280779769109797E-6],[123,7,77,-2.8595552672988006E-7],[123,7,78,-3.470986112740071E-5],[123,7,79,-1.938906848903812E-4],[123,8,64,0.15046998481955295],[123,8,65,0.12124869862674316],[123,8,66,0.09662353822724236],[123,8,67,0.07604512861817385],[123,8,68,0.05900930220922615],[123,8,69,0.04505511500707003],[123,8,70,0.033762799199929874],[123,8,71,0.024751666546980737],[123,8,72,0.017677976632512107],[123,8,73,0.012232783613683771],[123,8,74,0.008139774571925655],[123,8,75,0.005153111971072576],[123,8,76,0.0030552920421064935],[123,8,77,0.0016550301560218578],[123,8,78,7.851834171077193E-4],[123,8,79,3.007198178972535E-4],[123,9,64,0.28327368155515276],[123,9,65,0.2381172089430425],[123,9,66,0.19891599703702423],[123,9,67,0.16505063376726228],[123,9,68,0.13594823824182609],[123,9,69,0.11108060045612755],[123,9,70,0.0899622510928531],[123,9,71,0.07214847555635626],[123,9,72,0.05723328606927433],[123,9,73,0.0448473652623964],[123,9,74,0.03465599420902136],[123,9,75,0.02635697728607545],[123,9,76,0.019678575605177696],[123,9,77,0.014377460046653263],[123,9,78,0.010236694149330866],[123,9,79,0.0070637562724502456],[123,10,64,0.4775190523877035],[123,10,65,0.41297228475988534],[123,10,66,0.3558206790276397],[123,10,67,0.305374783634039],[123,10,68,0.2609929033468596],[123,10,69,0.22207935996920758],[123,10,70,0.18808267680825783],[123,10,71,0.15849370078578828],[123,10,72,0.13284367578587714],[123,10,73,0.11070228047276298],[123,10,74,0.09167564337175571],[123,10,75,0.07540434747440103],[123,10,76,0.0615614360342039],[123,10,77,0.0498504305578131],[123,10,78,0.04000337126484076],[123,10,79,0.031778889507502656],[123,11,64,0.744887824443761],[123,11,65,0.6574957770693735],[123,11,66,0.5790195589178609],[123,11,67,0.5086996765182784],[123,11,68,0.4458255192530884],[123,11,69,0.3897337385461641],[123,11,70,0.33980654445380337],[123,11,71,0.2954699332825701],[123,11,72,0.2561918595967188],[123,11,73,0.22148036564994958],[123,11,74,0.19088168087648755],[123,11,75,0.16397830358137816],[123,11,76,0.14038707641922718],[123,11,77,0.11975726663859988],[123,11,78,0.10176866138539248],[123,11,79,0.08612968763100248],[123,12,64,1.0],[123,12,65,0.9833694400912587],[123,12,66,0.880194514210378],[123,12,67,0.7867073130621741],[123,12,68,0.7021282095924033],[123,12,69,0.6257259826528766],[123,12,70,0.5568162231682341],[123,12,71,0.4947596646922761],[123,12,72,0.43896045148379137],[123,12,73,0.3888643569381223],[123,12,74,0.34395696485205324],[123,12,75,0.30376182554034137],[123,12,76,0.26783859831585416],[123,12,77,0.2357811912832465],[123,12,78,0.20721590875943877],[123,12,79,0.18179961596113398],[123,13,64,1.0],[123,13,65,1.0],[123,13,66,1.0],[123,13,67,1.0],[123,13,68,1.0],[123,13,69,0.9417382401890696],[123,13,70,0.850793983085797],[123,13,71,0.7680452872198035],[123,13,72,0.6928319655543643],[123,13,73,0.6245368901747932],[123,13,74,0.5625842526907964],[123,13,75,0.5064377921203661],[123,13,76,0.4555990016897165],[123,13,77,0.4096053254723284],[123,13,78,0.3680283552001051],[123,13,79,0.3304720369610804],[123,14,64,1.0],[123,14,65,1.0],[123,14,66,1.0],[123,14,67,1.0],[123,14,68,1.0],[123,14,69,1.0],[123,14,70,1.0],[123,14,71,1.0],[123,14,72,1.0],[123,14,73,0.9401805008489434],[123,14,74,0.858446201003377],[123,14,75,0.7836889808777829],[123,14,76,0.7153511848647145],[123,14,77,0.6529126881177543],[123,14,78,0.5958891400269503],[123,14,79,0.5438302101775759],[123,15,64,1.0],[123,15,65,1.0],[123,15,66,1.0],[123,15,67,1.0],[123,15,68,1.0],[123,15,69,1.0],[123,15,70,1.0],[123,15,71,1.0],[123,15,72,1.0],[123,15,73,1.0],[123,15,74,1.0],[123,15,75,1.0],[123,15,76,1.0],[123,15,77,0.9773861960113565],[123,15,78,0.9024813000113419],[123,15,79,0.8335572921830856],[123,16,64,1.0],[123,16,65,1.0],[123,16,66,1.0],[123,16,67,1.0],[123,16,68,1.0],[123,16,69,1.0],[123,16,70,1.0],[123,16,71,1.0],[123,16,72,1.0],[123,16,73,1.0],[123,16,74,1.0],[123,16,75,1.0],[123,16,76,1.0],[123,16,77,1.0],[123,16,78,1.0],[123,16,79,1.0],[123,17,64,1.0],[123,17,65,1.0],[123,17,66,1.0],[123,17,67,1.0],[123,17,68,1.0],[123,17,69,1.0],[123,17,70,1.0],[123,17,71,1.0],[123,17,72,1.0],[123,17,73,1.0],[123,17,74,1.0],[123,17,75,1.0],[123,17,76,1.0],[123,17,77,1.0],[123,17,78,1.0],[123,17,79,1.0],[123,18,64,1.0],[123,18,65,1.0],[123,18,66,1.0],[123,18,67,1.0],[123,18,68,1.0],[123,18,69,1.0],[123,18,70,1.0],[123,18,71,1.0],[123,18,72,1.0],[123,18,73,1.0],[123,18,74,1.0],[123,18,75,1.0],[123,18,76,1.0],[123,18,77,1.0],[123,18,78,1.0],[123,18,79,1.0],[123,19,64,1.0],[123,19,65,1.0],[123,19,66,1.0],[123,19,67,1.0],[123,19,68,1.0],[123,19,69,1.0],[123,19,70,1.0],[123,19,71,1.0],[123,19,72,1.0],[123,19,73,1.0],[123,19,74,1.0],[123,19,75,1.0],[123,19,76,1.0],[123,19,77,1.0],[123,19,78,1.0],[123,19,79,1.0],[123,20,64,1.0],[123,20,65,1.0],[123,20,66,1.0],[123,20,67,1.0],[123,20,68,1.0],[123,20,69,1.0],[123,20,70,1.0],[123,20,71,1.0],[123,20,72,1.0],[123,20,73,1.0],[123,20,74,1.0],[123,20,75,1.0],[123,20,76,1.0],[123,20,77,1.0],[123,20,78,1.0],[123,20,79,1.0],[123,21,64,1.0],[123,21,65,1.0],[123,21,66,1.0],[123,21,67,1.0],[123,21,68,1.0],[123,21,69,1.0],[123,21,70,1.0],[123,21,71,1.0],[123,21,72,1.0],[123,21,73,1.0],[123,21,74,1.0],[123,21,75,1.0],[123,21,76,1.0],[123,21,77,1.0],[123,21,78,1.0],[123,21,79,1.0],[123,22,64,1.0],[123,22,65,1.0],[123,22,66,1.0],[123,22,67,1.0],[123,22,68,1.0],[123,22,69,1.0],[123,22,70,1.0],[123,22,71,1.0],[123,22,72,1.0],[123,22,73,1.0],[123,22,74,1.0],[123,22,75,1.0],[123,22,76,1.0],[123,22,77,1.0],[123,22,78,1.0],[123,22,79,1.0],[123,23,64,1.0],[123,23,65,1.0],[123,23,66,1.0],[123,23,67,1.0],[123,23,68,1.0],[123,23,69,1.0],[123,23,70,1.0],[123,23,71,1.0],[123,23,72,1.0],[123,23,73,1.0],[123,23,74,1.0],[123,23,75,1.0],[123,23,76,1.0],[123,23,77,1.0],[123,23,78,1.0],[123,23,79,1.0],[123,24,64,1.0],[123,24,65,1.0],[123,24,66,1.0],[123,24,67,1.0],[123,24,68,1.0],[123,24,69,1.0],[123,24,70,1.0],[123,24,71,1.0],[123,24,72,1.0],[123,24,73,1.0],[123,24,74,1.0],[123,24,75,1.0],[123,24,76,1.0],[123,24,77,1.0],[123,24,78,1.0],[123,24,79,1.0],[123,25,64,1.0],[123,25,65,1.0],[123,25,66,1.0],[123,25,67,1.0],[123,25,68,1.0],[123,25,69,1.0],[123,25,70,1.0],[123,25,71,1.0],[123,25,72,1.0],[123,25,73,1.0],[123,25,74,1.0],[123,25,75,1.0],[123,25,76,1.0],[123,25,77,1.0],[123,25,78,1.0],[123,25,79,1.0],[123,26,64,1.0],[123,26,65,1.0],[123,26,66,1.0],[123,26,67,1.0],[123,26,68,1.0],[123,26,69,1.0],[123,26,70,1.0],[123,26,71,1.0],[123,26,72,1.0],[123,26,73,1.0],[123,26,74,1.0],[123,26,75,1.0],[123,26,76,1.0],[123,26,77,1.0],[123,26,78,1.0],[123,26,79,1.0],[123,27,64,1.0],[123,27,65,1.0],[123,27,66,1.0],[123,27,67,1.0],[123,27,68,1.0],[123,27,69,1.0],[123,27,70,1.0],[123,27,71,1.0],[123,27,72,1.0],[123,27,73,1.0],[123,27,74,1.0],[123,27,75,1.0],[123,27,76,1.0],[123,27,77,1.0],[123,27,78,1.0],[123,27,79,1.0],[123,28,64,1.0],[123,28,65,1.0],[123,28,66,1.0],[123,28,67,1.0],[123,28,68,1.0],[123,28,69,1.0],[123,28,70,1.0],[123,28,71,1.0],[123,28,72,1.0],[123,28,73,1.0],[123,28,74,1.0],[123,28,75,1.0],[123,28,76,1.0],[123,28,77,1.0],[123,28,78,1.0],[123,28,79,1.0],[123,29,64,1.0],[123,29,65,1.0],[123,29,66,1.0],[123,29,67,1.0],[123,29,68,1.0],[123,29,69,1.0],[123,29,70,1.0],[123,29,71,1.0],[123,29,72,1.0],[123,29,73,1.0],[123,29,74,1.0],[123,29,75,1.0],[123,29,76,1.0],[123,29,77,1.0],[123,29,78,1.0],[123,29,79,1.0],[123,30,64,1.0],[123,30,65,1.0],[123,30,66,1.0],[123,30,67,1.0],[123,30,68,1.0],[123,30,69,1.0],[123,30,70,1.0],[123,30,71,1.0],[123,30,72,1.0],[123,30,73,1.0],[123,30,74,1.0],[123,30,75,1.0],[123,30,76,1.0],[123,30,77,1.0],[123,30,78,1.0],[123,30,79,1.0],[123,31,64,1.0],[123,31,65,1.0],[123,31,66,1.0],[123,31,67,1.0],[123,31,68,1.0],[123,31,69,1.0],[123,31,70,1.0],[123,31,71,1.0],[123,31,72,1.0],[123,31,73,1.0],[123,31,74,1.0],[123,31,75,1.0],[123,31,76,1.0],[123,31,77,1.0],[123,31,78,1.0],[123,31,79,1.0],[123,32,64,1.0],[123,32,65,1.0],[123,32,66,1.0],[123,32,67,1.0],[123,32,68,1.0],[123,32,69,1.0],[123,32,70,1.0],[123,32,71,1.0],[123,32,72,1.0],[123,32,73,1.0],[123,32,74,1.0],[123,32,75,1.0],[123,32,76,1.0],[123,32,77,1.0],[123,32,78,1.0],[123,32,79,1.0],[123,33,64,1.0],[123,33,65,1.0],[123,33,66,1.0],[123,33,67,1.0],[123,33,68,1.0],[123,33,69,1.0],[123,33,70,1.0],[123,33,71,1.0],[123,33,72,1.0],[123,33,73,1.0],[123,33,74,1.0],[123,33,75,1.0],[123,33,76,1.0],[123,33,77,1.0],[123,33,78,1.0],[123,33,79,1.0],[123,34,64,1.0],[123,34,65,1.0],[123,34,66,1.0],[123,34,67,1.0],[123,34,68,1.0],[123,34,69,1.0],[123,34,70,1.0],[123,34,71,1.0],[123,34,72,1.0],[123,34,73,1.0],[123,34,74,1.0],[123,34,75,1.0],[123,34,76,1.0],[123,34,77,1.0],[123,34,78,1.0],[123,34,79,1.0],[123,35,64,1.0],[123,35,65,1.0],[123,35,66,1.0],[123,35,67,1.0],[123,35,68,1.0],[123,35,69,1.0],[123,35,70,1.0],[123,35,71,1.0],[123,35,72,1.0],[123,35,73,1.0],[123,35,74,1.0],[123,35,75,1.0],[123,35,76,1.0],[123,35,77,1.0],[123,35,78,1.0],[123,35,79,1.0],[123,36,64,1.0],[123,36,65,1.0],[123,36,66,1.0],[123,36,67,1.0],[123,36,68,1.0],[123,36,69,1.0],[123,36,70,1.0],[123,36,71,1.0],[123,36,72,1.0],[123,36,73,1.0],[123,36,74,1.0],[123,36,75,1.0],[123,36,76,1.0],[123,36,77,1.0],[123,36,78,1.0],[123,36,79,1.0],[123,37,64,1.0],[123,37,65,1.0],[123,37,66,1.0],[123,37,67,1.0],[123,37,68,1.0],[123,37,69,1.0],[123,37,70,1.0],[123,37,71,1.0],[123,37,72,1.0],[123,37,73,1.0],[123,37,74,1.0],[123,37,75,1.0],[123,37,76,1.0],[123,37,77,1.0],[123,37,78,1.0],[123,37,79,1.0],[123,38,64,1.0],[123,38,65,1.0],[123,38,66,1.0],[123,38,67,1.0],[123,38,68,1.0],[123,38,69,1.0],[123,38,70,1.0],[123,38,71,1.0],[123,38,72,1.0],[123,38,73,1.0],[123,38,74,1.0],[123,38,75,1.0],[123,38,76,1.0],[123,38,77,1.0],[123,38,78,1.0],[123,38,79,1.0],[123,39,64,1.0],[123,39,65,1.0],[123,39,66,1.0],[123,39,67,1.0],[123,39,68,1.0],[123,39,69,1.0],[123,39,70,1.0],[123,39,71,1.0],[123,39,72,1.0],[123,39,73,1.0],[123,39,74,1.0],[123,39,75,1.0],[123,39,76,1.0],[123,39,77,1.0],[123,39,78,1.0],[123,39,79,1.0],[123,40,64,1.0],[123,40,65,1.0],[123,40,66,1.0],[123,40,67,1.0],[123,40,68,1.0],[123,40,69,1.0],[123,40,70,1.0],[123,40,71,1.0],[123,40,72,1.0],[123,40,73,1.0],[123,40,74,1.0],[123,40,75,1.0],[123,40,76,1.0],[123,40,77,1.0],[123,40,78,1.0],[123,40,79,1.0],[123,41,64,1.0],[123,41,65,1.0],[123,41,66,1.0],[123,41,67,1.0],[123,41,68,1.0],[123,41,69,1.0],[123,41,70,1.0],[123,41,71,1.0],[123,41,72,1.0],[123,41,73,1.0],[123,41,74,1.0],[123,41,75,1.0],[123,41,76,1.0],[123,41,77,1.0],[123,41,78,1.0],[123,41,79,1.0],[123,42,64,1.0],[123,42,65,1.0],[123,42,66,1.0],[123,42,67,1.0],[123,42,68,1.0],[123,42,69,1.0],[123,42,70,1.0],[123,42,71,1.0],[123,42,72,1.0],[123,42,73,1.0],[123,42,74,1.0],[123,42,75,1.0],[123,42,76,1.0],[123,42,77,1.0],[123,42,78,1.0],[123,42,79,1.0],[123,43,64,1.0],[123,43,65,1.0],[123,43,66,1.0],[123,43,67,1.0],[123,43,68,1.0],[123,43,69,1.0],[123,43,70,1.0],[123,43,71,1.0],[123,43,72,1.0],[123,43,73,1.0],[123,43,74,1.0],[123,43,75,1.0],[123,43,76,1.0],[123,43,77,1.0],[123,43,78,1.0],[123,43,79,1.0],[123,44,64,1.0],[123,44,65,1.0],[123,44,66,1.0],[123,44,67,1.0],[123,44,68,1.0],[123,44,69,1.0],[123,44,70,1.0],[123,44,71,1.0],[123,44,72,1.0],[123,44,73,1.0],[123,44,74,1.0],[123,44,75,1.0],[123,44,76,1.0],[123,44,77,1.0],[123,44,78,1.0],[123,44,79,1.0],[123,45,64,1.0],[123,45,65,1.0],[123,45,66,1.0],[123,45,67,1.0],[123,45,68,1.0],[123,45,69,1.0],[123,45,70,1.0],[123,45,71,1.0],[123,45,72,1.0],[123,45,73,1.0],[123,45,74,1.0],[123,45,75,1.0],[123,45,76,1.0],[123,45,77,1.0],[123,45,78,1.0],[123,45,79,1.0],[123,46,64,1.0],[123,46,65,1.0],[123,46,66,1.0],[123,46,67,1.0],[123,46,68,1.0],[123,46,69,1.0],[123,46,70,1.0],[123,46,71,1.0],[123,46,72,1.0],[123,46,73,1.0],[123,46,74,1.0],[123,46,75,1.0],[123,46,76,1.0],[123,46,77,1.0],[123,46,78,1.0],[123,46,79,1.0],[123,47,64,1.0],[123,47,65,1.0],[123,47,66,1.0],[123,47,67,1.0],[123,47,68,1.0],[123,47,69,1.0],[123,47,70,1.0],[123,47,71,1.0],[123,47,72,1.0],[123,47,73,1.0],[123,47,74,1.0],[123,47,75,1.0],[123,47,76,1.0],[123,47,77,1.0],[123,47,78,1.0],[123,47,79,1.0],[123,48,64,1.0],[123,48,65,1.0],[123,48,66,1.0],[123,48,67,1.0],[123,48,68,1.0],[123,48,69,1.0],[123,48,70,1.0],[123,48,71,1.0],[123,48,72,1.0],[123,48,73,1.0],[123,48,74,1.0],[123,48,75,1.0],[123,48,76,1.0],[123,48,77,1.0],[123,48,78,1.0],[123,48,79,1.0],[123,49,64,1.0],[123,49,65,1.0],[123,49,66,1.0],[123,49,67,1.0],[123,49,68,1.0],[123,49,69,1.0],[123,49,70,1.0],[123,49,71,1.0],[123,49,72,1.0],[123,49,73,1.0],[123,49,74,1.0],[123,49,75,1.0],[123,49,76,1.0],[123,49,77,1.0],[123,49,78,1.0],[123,49,79,1.0],[123,50,64,1.0],[123,50,65,1.0],[123,50,66,1.0],[123,50,67,1.0],[123,50,68,1.0],[123,50,69,1.0],[123,50,70,1.0],[123,50,71,1.0],[123,50,72,1.0],[123,50,73,1.0],[123,50,74,1.0],[123,50,75,1.0],[123,50,76,1.0],[123,50,77,1.0],[123,50,78,1.0],[123,50,79,1.0],[123,51,64,1.0],[123,51,65,1.0],[123,51,66,1.0],[123,51,67,1.0],[123,51,68,1.0],[123,51,69,1.0],[123,51,70,1.0],[123,51,71,1.0],[123,51,72,1.0],[123,51,73,1.0],[123,51,74,1.0],[123,51,75,1.0],[123,51,76,1.0],[123,51,77,1.0],[123,51,78,1.0],[123,51,79,1.0],[123,52,64,1.0],[123,52,65,1.0],[123,52,66,1.0],[123,52,67,1.0],[123,52,68,1.0],[123,52,69,1.0],[123,52,70,1.0],[123,52,71,1.0],[123,52,72,1.0],[123,52,73,1.0],[123,52,74,1.0],[123,52,75,1.0],[123,52,76,1.0],[123,52,77,1.0],[123,52,78,1.0],[123,52,79,1.0],[123,53,64,1.0],[123,53,65,1.0],[123,53,66,1.0],[123,53,67,1.0],[123,53,68,1.0],[123,53,69,1.0],[123,53,70,1.0],[123,53,71,1.0],[123,53,72,1.0],[123,53,73,1.0],[123,53,74,1.0],[123,53,75,1.0],[123,53,76,1.0],[123,53,77,1.0],[123,53,78,1.0],[123,53,79,1.0],[123,54,64,1.0],[123,54,65,1.0],[123,54,66,1.0],[123,54,67,1.0],[123,54,68,1.0],[123,54,69,1.0],[123,54,70,1.0],[123,54,71,1.0],[123,54,72,1.0],[123,54,73,1.0],[123,54,74,1.0],[123,54,75,1.0],[123,54,76,1.0],[123,54,77,1.0],[123,54,78,1.0],[123,54,79,1.0],[123,55,64,1.0],[123,55,65,1.0],[123,55,66,1.0],[123,55,67,1.0],[123,55,68,1.0],[123,55,69,1.0],[123,55,70,1.0],[123,55,71,1.0],[123,55,72,1.0],[123,55,73,1.0],[123,55,74,1.0],[123,55,75,1.0],[123,55,76,1.0],[123,55,77,1.0],[123,55,78,1.0],[123,55,79,1.0],[123,56,64,1.0],[123,56,65,1.0],[123,56,66,1.0],[123,56,67,1.0],[123,56,68,1.0],[123,56,69,1.0],[123,56,70,1.0],[123,56,71,1.0],[123,56,72,1.0],[123,56,73,1.0],[123,56,74,1.0],[123,56,75,1.0],[123,56,76,1.0],[123,56,77,1.0],[123,56,78,1.0],[123,56,79,1.0],[123,57,64,1.0],[123,57,65,1.0],[123,57,66,1.0],[123,57,67,1.0],[123,57,68,1.0],[123,57,69,1.0],[123,57,70,1.0],[123,57,71,1.0],[123,57,72,1.0],[123,57,73,1.0],[123,57,74,1.0],[123,57,75,1.0],[123,57,76,1.0],[123,57,77,1.0],[123,57,78,1.0],[123,57,79,1.0],[123,58,64,1.0],[123,58,65,1.0],[123,58,66,1.0],[123,58,67,1.0],[123,58,68,1.0],[123,58,69,1.0],[123,58,70,1.0],[123,58,71,1.0],[123,58,72,1.0],[123,58,73,1.0],[123,58,74,1.0],[123,58,75,1.0],[123,58,76,1.0],[123,58,77,1.0],[123,58,78,1.0],[123,58,79,1.0],[123,59,64,1.0],[123,59,65,1.0],[123,59,66,1.0],[123,59,67,1.0],[123,59,68,1.0],[123,59,69,1.0],[123,59,70,1.0],[123,59,71,1.0],[123,59,72,1.0],[123,59,73,1.0],[123,59,74,1.0],[123,59,75,1.0],[123,59,76,1.0],[123,59,77,1.0],[123,59,78,1.0],[123,59,79,1.0],[123,60,64,1.0],[123,60,65,1.0],[123,60,66,1.0],[123,60,67,1.0],[123,60,68,1.0],[123,60,69,1.0],[123,60,70,1.0],[123,60,71,1.0],[123,60,72,1.0],[123,60,73,1.0],[123,60,74,1.0],[123,60,75,1.0],[123,60,76,1.0],[123,60,77,1.0],[123,60,78,1.0],[123,60,79,1.0],[123,61,64,1.0],[123,61,65,1.0],[123,61,66,1.0],[123,61,67,1.0],[123,61,68,1.0],[123,61,69,1.0],[123,61,70,1.0],[123,61,71,1.0],[123,61,72,1.0],[123,61,73,1.0],[123,61,74,1.0],[123,61,75,1.0],[123,61,76,1.0],[123,61,77,1.0],[123,61,78,1.0],[123,61,79,1.0],[123,62,64,1.0],[123,62,65,1.0],[123,62,66,1.0],[123,62,67,1.0],[123,62,68,1.0],[123,62,69,1.0],[123,62,70,1.0],[123,62,71,1.0],[123,62,72,1.0],[123,62,73,1.0],[123,62,74,1.0],[123,62,75,1.0],[123,62,76,1.0],[123,62,77,1.0],[123,62,78,1.0],[123,62,79,1.0],[123,63,64,1.0],[123,63,65,1.0],[123,63,66,1.0],[123,63,67,1.0],[123,63,68,1.0],[123,63,69,1.0],[123,63,70,1.0],[123,63,71,1.0],[123,63,72,1.0],[123,63,73,1.0],[123,63,74,1.0],[123,63,75,1.0],[123,63,76,1.0],[123,63,77,1.0],[123,63,78,1.0],[123,63,79,1.0],[123,64,64,1.0],[123,64,65,1.0],[123,64,66,1.0],[123,64,67,1.0],[123,64,68,1.0],[123,64,69,1.0],[123,64,70,1.0],[123,64,71,1.0],[123,64,72,1.0],[123,64,73,1.0],[123,64,74,1.0],[123,64,75,1.0],[123,64,76,1.0],[123,64,77,1.0],[123,64,78,1.0],[123,64,79,1.0],[123,65,64,1.0],[123,65,65,1.0],[123,65,66,1.0],[123,65,67,1.0],[123,65,68,1.0],[123,65,69,1.0],[123,65,70,1.0],[123,65,71,1.0],[123,65,72,1.0],[123,65,73,1.0],[123,65,74,1.0],[123,65,75,1.0],[123,65,76,1.0],[123,65,77,1.0],[123,65,78,1.0],[123,65,79,1.0],[123,66,64,1.0],[123,66,65,1.0],[123,66,66,1.0],[123,66,67,1.0],[123,66,68,1.0],[123,66,69,1.0],[123,66,70,1.0],[123,66,71,1.0],[123,66,72,1.0],[123,66,73,1.0],[123,66,74,1.0],[123,66,75,1.0],[123,66,76,1.0],[123,66,77,1.0],[123,66,78,1.0],[123,66,79,1.0],[123,67,64,1.0],[123,67,65,1.0],[123,67,66,1.0],[123,67,67,1.0],[123,67,68,1.0],[123,67,69,1.0],[123,67,70,1.0],[123,67,71,1.0],[123,67,72,1.0],[123,67,73,1.0],[123,67,74,1.0],[123,67,75,1.0],[123,67,76,1.0],[123,67,77,1.0],[123,67,78,1.0],[123,67,79,1.0],[123,68,64,1.0],[123,68,65,1.0],[123,68,66,1.0],[123,68,67,1.0],[123,68,68,1.0],[123,68,69,1.0],[123,68,70,1.0],[123,68,71,1.0],[123,68,72,1.0],[123,68,73,1.0],[123,68,74,1.0],[123,68,75,1.0],[123,68,76,1.0],[123,68,77,1.0],[123,68,78,1.0],[123,68,79,1.0],[123,69,64,1.0],[123,69,65,1.0],[123,69,66,1.0],[123,69,67,1.0],[123,69,68,1.0],[123,69,69,1.0],[123,69,70,1.0],[123,69,71,1.0],[123,69,72,1.0],[123,69,73,1.0],[123,69,74,1.0],[123,69,75,1.0],[123,69,76,1.0],[123,69,77,1.0],[123,69,78,1.0],[123,69,79,1.0],[123,70,64,1.0],[123,70,65,1.0],[123,70,66,1.0],[123,70,67,1.0],[123,70,68,1.0],[123,70,69,1.0],[123,70,70,1.0],[123,70,71,1.0],[123,70,72,1.0],[123,70,73,1.0],[123,70,74,1.0],[123,70,75,1.0],[123,70,76,1.0],[123,70,77,1.0],[123,70,78,1.0],[123,70,79,1.0],[123,71,64,1.0],[123,71,65,1.0],[123,71,66,1.0],[123,71,67,1.0],[123,71,68,1.0],[123,71,69,1.0],[123,71,70,1.0],[123,71,71,1.0],[123,71,72,1.0],[123,71,73,1.0],[123,71,74,1.0],[123,71,75,1.0],[123,71,76,1.0],[123,71,77,1.0],[123,71,78,1.0],[123,71,79,1.0],[123,72,64,1.0],[123,72,65,1.0],[123,72,66,1.0],[123,72,67,1.0],[123,72,68,1.0],[123,72,69,1.0],[123,72,70,1.0],[123,72,71,1.0],[123,72,72,1.0],[123,72,73,1.0],[123,72,74,1.0],[123,72,75,1.0],[123,72,76,1.0],[123,72,77,1.0],[123,72,78,1.0],[123,72,79,1.0],[123,73,64,1.0],[123,73,65,1.0],[123,73,66,1.0],[123,73,67,1.0],[123,73,68,1.0],[123,73,69,1.0],[123,73,70,1.0],[123,73,71,1.0],[123,73,72,1.0],[123,73,73,1.0],[123,73,74,1.0],[123,73,75,1.0],[123,73,76,1.0],[123,73,77,1.0],[123,73,78,1.0],[123,73,79,1.0],[123,74,64,1.0],[123,74,65,1.0],[123,74,66,1.0],[123,74,67,1.0],[123,74,68,1.0],[123,74,69,1.0],[123,74,70,1.0],[123,74,71,1.0],[123,74,72,1.0],[123,74,73,1.0],[123,74,74,1.0],[123,74,75,1.0],[123,74,76,1.0],[123,74,77,1.0],[123,74,78,1.0],[123,74,79,1.0],[123,75,64,1.0],[123,75,65,1.0],[123,75,66,1.0],[123,75,67,1.0],[123,75,68,1.0],[123,75,69,1.0],[123,75,70,1.0],[123,75,71,1.0],[123,75,72,1.0],[123,75,73,1.0],[123,75,74,1.0],[123,75,75,1.0],[123,75,76,1.0],[123,75,77,1.0],[123,75,78,1.0],[123,75,79,1.0],[123,76,64,1.0],[123,76,65,1.0],[123,76,66,1.0],[123,76,67,1.0],[123,76,68,1.0],[123,76,69,1.0],[123,76,70,1.0],[123,76,71,1.0],[123,76,72,1.0],[123,76,73,1.0],[123,76,74,1.0],[123,76,75,1.0],[123,76,76,1.0],[123,76,77,1.0],[123,76,78,1.0],[123,76,79,1.0],[123,77,64,1.0],[123,77,65,1.0],[123,77,66,1.0],[123,77,67,1.0],[123,77,68,1.0],[123,77,69,1.0],[123,77,70,1.0],[123,77,71,1.0],[123,77,72,1.0],[123,77,73,1.0],[123,77,74,1.0],[123,77,75,1.0],[123,77,76,1.0],[123,77,77,1.0],[123,77,78,1.0],[123,77,79,1.0],[123,78,64,1.0],[123,78,65,1.0],[123,78,66,1.0],[123,78,67,1.0],[123,78,68,1.0],[123,78,69,1.0],[123,78,70,1.0],[123,78,71,1.0],[123,78,72,1.0],[123,78,73,1.0],[123,78,74,1.0],[123,78,75,1.0],[123,78,76,1.0],[123,78,77,1.0],[123,78,78,1.0],[123,78,79,1.0],[123,79,64,1.0],[123,79,65,1.0],[123,79,66,1.0],[123,79,67,1.0],[123,79,68,1.0],[123,79,69,1.0],[123,79,70,1.0],[123,79,71,1.0],[123,79,72,1.0],[123,79,73,1.0],[123,79,74,1.0],[123,79,75,1.0],[123,79,76,1.0],[123,79,77,1.0],[123,79,78,1.0],[123,79,79,1.0],[123,80,64,1.0],[123,80,65,1.0],[123,80,66,1.0],[123,80,67,1.0],[123,80,68,1.0],[123,80,69,1.0],[123,80,70,1.0],[123,80,71,1.0],[123,80,72,1.0],[123,80,73,1.0],[123,80,74,1.0],[123,80,75,1.0],[123,80,76,1.0],[123,80,77,1.0],[123,80,78,1.0],[123,80,79,1.0],[123,81,64,1.0],[123,81,65,1.0],[123,81,66,1.0],[123,81,67,1.0],[123,81,68,1.0],[123,81,69,1.0],[123,81,70,1.0],[123,81,71,1.0],[123,81,72,1.0],[123,81,73,1.0],[123,81,74,1.0],[123,81,75,1.0],[123,81,76,1.0],[123,81,77,1.0],[123,81,78,1.0],[123,81,79,1.0],[123,82,64,1.0],[123,82,65,1.0],[123,82,66,1.0],[123,82,67,1.0],[123,82,68,1.0],[123,82,69,1.0],[123,82,70,1.0],[123,82,71,1.0],[123,82,72,1.0],[123,82,73,1.0],[123,82,74,1.0],[123,82,75,1.0],[123,82,76,1.0],[123,82,77,1.0],[123,82,78,1.0],[123,82,79,1.0],[123,83,64,1.0],[123,83,65,1.0],[123,83,66,1.0],[123,83,67,1.0],[123,83,68,1.0],[123,83,69,1.0],[123,83,70,1.0],[123,83,71,1.0],[123,83,72,1.0],[123,83,73,1.0],[123,83,74,1.0],[123,83,75,1.0],[123,83,76,1.0],[123,83,77,1.0],[123,83,78,1.0],[123,83,79,1.0],[123,84,64,1.0],[123,84,65,1.0],[123,84,66,1.0],[123,84,67,1.0],[123,84,68,1.0],[123,84,69,1.0],[123,84,70,1.0],[123,84,71,1.0],[123,84,72,1.0],[123,84,73,1.0],[123,84,74,1.0],[123,84,75,1.0],[123,84,76,1.0],[123,84,77,1.0],[123,84,78,1.0],[123,84,79,1.0],[123,85,64,1.0],[123,85,65,1.0],[123,85,66,1.0],[123,85,67,1.0],[123,85,68,1.0],[123,85,69,1.0],[123,85,70,1.0],[123,85,71,1.0],[123,85,72,1.0],[123,85,73,1.0],[123,85,74,1.0],[123,85,75,1.0],[123,85,76,1.0],[123,85,77,1.0],[123,85,78,1.0],[123,85,79,1.0],[123,86,64,1.0],[123,86,65,1.0],[123,86,66,1.0],[123,86,67,1.0],[123,86,68,1.0],[123,86,69,1.0],[123,86,70,1.0],[123,86,71,1.0],[123,86,72,1.0],[123,86,73,1.0],[123,86,74,1.0],[123,86,75,1.0],[123,86,76,1.0],[123,86,77,1.0],[123,86,78,1.0],[123,86,79,1.0],[123,87,64,1.0],[123,87,65,1.0],[123,87,66,1.0],[123,87,67,1.0],[123,87,68,1.0],[123,87,69,1.0],[123,87,70,1.0],[123,87,71,1.0],[123,87,72,1.0],[123,87,73,1.0],[123,87,74,1.0],[123,87,75,1.0],[123,87,76,1.0],[123,87,77,1.0],[123,87,78,1.0],[123,87,79,1.0],[123,88,64,1.0],[123,88,65,1.0],[123,88,66,1.0],[123,88,67,1.0],[123,88,68,1.0],[123,88,69,1.0],[123,88,70,1.0],[123,88,71,1.0],[123,88,72,1.0],[123,88,73,1.0],[123,88,74,1.0],[123,88,75,1.0],[123,88,76,1.0],[123,88,77,1.0],[123,88,78,1.0],[123,88,79,1.0],[123,89,64,1.0],[123,89,65,1.0],[123,89,66,1.0],[123,89,67,1.0],[123,89,68,1.0],[123,89,69,1.0],[123,89,70,1.0],[123,89,71,1.0],[123,89,72,1.0],[123,89,73,1.0],[123,89,74,1.0],[123,89,75,1.0],[123,89,76,1.0],[123,89,77,1.0],[123,89,78,1.0],[123,89,79,1.0],[123,90,64,1.0],[123,90,65,1.0],[123,90,66,1.0],[123,90,67,1.0],[123,90,68,1.0],[123,90,69,1.0],[123,90,70,1.0],[123,90,71,1.0],[123,90,72,1.0],[123,90,73,1.0],[123,90,74,1.0],[123,90,75,1.0],[123,90,76,1.0],[123,90,77,1.0],[123,90,78,1.0],[123,90,79,1.0],[123,91,64,1.0],[123,91,65,1.0],[123,91,66,1.0],[123,91,67,1.0],[123,91,68,1.0],[123,91,69,1.0],[123,91,70,1.0],[123,91,71,1.0],[123,91,72,1.0],[123,91,73,1.0],[123,91,74,1.0],[123,91,75,1.0],[123,91,76,1.0],[123,91,77,1.0],[123,91,78,1.0],[123,91,79,1.0],[123,92,64,1.0],[123,92,65,1.0],[123,92,66,1.0],[123,92,67,1.0],[123,92,68,1.0],[123,92,69,1.0],[123,92,70,1.0],[123,92,71,1.0],[123,92,72,1.0],[123,92,73,1.0],[123,92,74,1.0],[123,92,75,1.0],[123,92,76,1.0],[123,92,77,1.0],[123,92,78,1.0],[123,92,79,1.0],[123,93,64,1.0],[123,93,65,1.0],[123,93,66,1.0],[123,93,67,1.0],[123,93,68,1.0],[123,93,69,1.0],[123,93,70,1.0],[123,93,71,1.0],[123,93,72,1.0],[123,93,73,1.0],[123,93,74,1.0],[123,93,75,1.0],[123,93,76,1.0],[123,93,77,1.0],[123,93,78,1.0],[123,93,79,1.0],[123,94,64,1.0],[123,94,65,1.0],[123,94,66,1.0],[123,94,67,1.0],[123,94,68,1.0],[123,94,69,1.0],[123,94,70,1.0],[123,94,71,1.0],[123,94,72,1.0],[123,94,73,1.0],[123,94,74,1.0],[123,94,75,1.0],[123,94,76,1.0],[123,94,77,1.0],[123,94,78,1.0],[123,94,79,1.0],[123,95,64,1.0],[123,95,65,1.0],[123,95,66,1.0],[123,95,67,1.0],[123,95,68,1.0],[123,95,69,1.0],[123,95,70,1.0],[123,95,71,1.0],[123,95,72,1.0],[123,95,73,1.0],[123,95,74,1.0],[123,95,75,1.0],[123,95,76,1.0],[123,95,77,1.0],[123,95,78,1.0],[123,95,79,1.0],[123,96,64,1.0],[123,96,65,1.0],[123,96,66,1.0],[123,96,67,1.0],[123,96,68,1.0],[123,96,69,1.0],[123,96,70,1.0],[123,96,71,1.0],[123,96,72,1.0],[123,96,73,1.0],[123,96,74,1.0],[123,96,75,1.0],[123,96,76,1.0],[123,96,77,1.0],[123,96,78,1.0],[123,96,79,1.0],[123,97,64,1.0],[123,97,65,1.0],[123,97,66,1.0],[123,97,67,1.0],[123,97,68,1.0],[123,97,69,1.0],[123,97,70,1.0],[123,97,71,1.0],[123,97,72,1.0],[123,97,73,1.0],[123,97,74,1.0],[123,97,75,1.0],[123,97,76,1.0],[123,97,77,1.0],[123,97,78,1.0],[123,97,79,1.0],[123,98,64,1.0],[123,98,65,1.0],[123,98,66,1.0],[123,98,67,1.0],[123,98,68,1.0],[123,98,69,1.0],[123,98,70,1.0],[123,98,71,1.0],[123,98,72,1.0],[123,98,73,1.0],[123,98,74,1.0],[123,98,75,1.0],[123,98,76,1.0],[123,98,77,1.0],[123,98,78,1.0],[123,98,79,1.0],[123,99,64,1.0],[123,99,65,1.0],[123,99,66,1.0],[123,99,67,1.0],[123,99,68,1.0],[123,99,69,1.0],[123,99,70,1.0],[123,99,71,1.0],[123,99,72,1.0],[123,99,73,1.0],[123,99,74,1.0],[123,99,75,1.0],[123,99,76,1.0],[123,99,77,1.0],[123,99,78,1.0],[123,99,79,1.0],[123,100,64,1.0],[123,100,65,1.0],[123,100,66,1.0],[123,100,67,1.0],[123,100,68,1.0],[123,100,69,1.0],[123,100,70,1.0],[123,100,71,1.0],[123,100,72,1.0],[123,100,73,1.0],[123,100,74,1.0],[123,100,75,1.0],[123,100,76,1.0],[123,100,77,1.0],[123,100,78,1.0],[123,100,79,1.0],[123,101,64,1.0],[123,101,65,1.0],[123,101,66,1.0],[123,101,67,1.0],[123,101,68,1.0],[123,101,69,1.0],[123,101,70,1.0],[123,101,71,1.0],[123,101,72,1.0],[123,101,73,1.0],[123,101,74,1.0],[123,101,75,1.0],[123,101,76,1.0],[123,101,77,1.0],[123,101,78,1.0],[123,101,79,1.0],[123,102,64,1.0],[123,102,65,1.0],[123,102,66,1.0],[123,102,67,1.0],[123,102,68,1.0],[123,102,69,1.0],[123,102,70,1.0],[123,102,71,1.0],[123,102,72,1.0],[123,102,73,1.0],[123,102,74,1.0],[123,102,75,1.0],[123,102,76,1.0],[123,102,77,1.0],[123,102,78,1.0],[123,102,79,1.0],[123,103,64,1.0],[123,103,65,1.0],[123,103,66,1.0],[123,103,67,1.0],[123,103,68,1.0],[123,103,69,1.0],[123,103,70,1.0],[123,103,71,1.0],[123,103,72,1.0],[123,103,73,1.0],[123,103,74,1.0],[123,103,75,1.0],[123,103,76,1.0],[123,103,77,1.0],[123,103,78,1.0],[123,103,79,1.0],[123,104,64,1.0],[123,104,65,1.0],[123,104,66,1.0],[123,104,67,1.0],[123,104,68,1.0],[123,104,69,1.0],[123,104,70,1.0],[123,104,71,1.0],[123,104,72,1.0],[123,104,73,1.0],[123,104,74,1.0],[123,104,75,1.0],[123,104,76,1.0],[123,104,77,1.0],[123,104,78,1.0],[123,104,79,1.0],[123,105,64,1.0],[123,105,65,1.0],[123,105,66,1.0],[123,105,67,1.0],[123,105,68,1.0],[123,105,69,1.0],[123,105,70,1.0],[123,105,71,1.0],[123,105,72,1.0],[123,105,73,1.0],[123,105,74,1.0],[123,105,75,1.0],[123,105,76,1.0],[123,105,77,1.0],[123,105,78,1.0],[123,105,79,1.0],[123,106,64,1.0],[123,106,65,1.0],[123,106,66,1.0],[123,106,67,1.0],[123,106,68,1.0],[123,106,69,1.0],[123,106,70,1.0],[123,106,71,1.0],[123,106,72,1.0],[123,106,73,1.0],[123,106,74,1.0],[123,106,75,1.0],[123,106,76,1.0],[123,106,77,1.0],[123,106,78,1.0],[123,106,79,1.0],[123,107,64,1.0],[123,107,65,1.0],[123,107,66,1.0],[123,107,67,1.0],[123,107,68,1.0],[123,107,69,1.0],[123,107,70,1.0],[123,107,71,1.0],[123,107,72,1.0],[123,107,73,1.0],[123,107,74,1.0],[123,107,75,1.0],[123,107,76,1.0],[123,107,77,1.0],[123,107,78,1.0],[123,107,79,1.0],[123,108,64,1.0],[123,108,65,1.0],[123,108,66,1.0],[123,108,67,1.0],[123,108,68,1.0],[123,108,69,1.0],[123,108,70,1.0],[123,108,71,1.0],[123,108,72,1.0],[123,108,73,1.0],[123,108,74,1.0],[123,108,75,1.0],[123,108,76,1.0],[123,108,77,1.0],[123,108,78,1.0],[123,108,79,1.0],[123,109,64,1.0],[123,109,65,1.0],[123,109,66,1.0],[123,109,67,1.0],[123,109,68,1.0],[123,109,69,1.0],[123,109,70,1.0],[123,109,71,1.0],[123,109,72,1.0],[123,109,73,1.0],[123,109,74,1.0],[123,109,75,1.0],[123,109,76,1.0],[123,109,77,1.0],[123,109,78,1.0],[123,109,79,1.0],[123,110,64,1.0],[123,110,65,1.0],[123,110,66,1.0],[123,110,67,1.0],[123,110,68,1.0],[123,110,69,1.0],[123,110,70,1.0],[123,110,71,1.0],[123,110,72,1.0],[123,110,73,1.0],[123,110,74,1.0],[123,110,75,1.0],[123,110,76,1.0],[123,110,77,1.0],[123,110,78,1.0],[123,110,79,1.0],[123,111,64,1.0],[123,111,65,1.0],[123,111,66,1.0],[123,111,67,1.0],[123,111,68,1.0],[123,111,69,1.0],[123,111,70,1.0],[123,111,71,1.0],[123,111,72,1.0],[123,111,73,1.0],[123,111,74,1.0],[123,111,75,1.0],[123,111,76,1.0],[123,111,77,1.0],[123,111,78,1.0],[123,111,79,1.0],[123,112,64,1.0],[123,112,65,1.0],[123,112,66,1.0],[123,112,67,1.0],[123,112,68,1.0],[123,112,69,1.0],[123,112,70,1.0],[123,112,71,1.0],[123,112,72,1.0],[123,112,73,1.0],[123,112,74,1.0],[123,112,75,1.0],[123,112,76,1.0],[123,112,77,1.0],[123,112,78,1.0],[123,112,79,1.0],[123,113,64,1.0],[123,113,65,1.0],[123,113,66,1.0],[123,113,67,1.0],[123,113,68,1.0],[123,113,69,1.0],[123,113,70,1.0],[123,113,71,1.0],[123,113,72,1.0],[123,113,73,1.0],[123,113,74,1.0],[123,113,75,1.0],[123,113,76,1.0],[123,113,77,1.0],[123,113,78,1.0],[123,113,79,1.0],[123,114,64,1.0],[123,114,65,1.0],[123,114,66,1.0],[123,114,67,1.0],[123,114,68,1.0],[123,114,69,1.0],[123,114,70,1.0],[123,114,71,1.0],[123,114,72,1.0],[123,114,73,1.0],[123,114,74,1.0],[123,114,75,1.0],[123,114,76,1.0],[123,114,77,1.0],[123,114,78,1.0],[123,114,79,1.0],[123,115,64,1.0],[123,115,65,1.0],[123,115,66,1.0],[123,115,67,1.0],[123,115,68,1.0],[123,115,69,1.0],[123,115,70,1.0],[123,115,71,1.0],[123,115,72,1.0],[123,115,73,1.0],[123,115,74,1.0],[123,115,75,1.0],[123,115,76,1.0],[123,115,77,1.0],[123,115,78,1.0],[123,115,79,1.0],[123,116,64,1.0],[123,116,65,1.0],[123,116,66,1.0],[123,116,67,1.0],[123,116,68,1.0],[123,116,69,1.0],[123,116,70,1.0],[123,116,71,1.0],[123,116,72,1.0],[123,116,73,1.0],[123,116,74,1.0],[123,116,75,1.0],[123,116,76,1.0],[123,116,77,1.0],[123,116,78,1.0],[123,116,79,1.0],[123,117,64,1.0],[123,117,65,1.0],[123,117,66,1.0],[123,117,67,1.0],[123,117,68,1.0],[123,117,69,1.0],[123,117,70,1.0],[123,117,71,1.0],[123,117,72,1.0],[123,117,73,1.0],[123,117,74,1.0],[123,117,75,1.0],[123,117,76,1.0],[123,117,77,1.0],[123,117,78,1.0],[123,117,79,1.0],[123,118,64,1.0],[123,118,65,1.0],[123,118,66,1.0],[123,118,67,1.0],[123,118,68,1.0],[123,118,69,1.0],[123,118,70,1.0],[123,118,71,1.0],[123,118,72,1.0],[123,118,73,1.0],[123,118,74,1.0],[123,118,75,1.0],[123,118,76,1.0],[123,118,77,1.0],[123,118,78,1.0],[123,118,79,1.0],[123,119,64,1.0],[123,119,65,1.0],[123,119,66,1.0],[123,119,67,1.0],[123,119,68,1.0],[123,119,69,1.0],[123,119,70,1.0],[123,119,71,1.0],[123,119,72,1.0],[123,119,73,1.0],[123,119,74,1.0],[123,119,75,1.0],[123,119,76,1.0],[123,119,77,1.0],[123,119,78,1.0],[123,119,79,1.0],[123,120,64,1.0],[123,120,65,1.0],[123,120,66,1.0],[123,120,67,1.0],[123,120,68,1.0],[123,120,69,1.0],[123,120,70,1.0],[123,120,71,1.0],[123,120,72,1.0],[123,120,73,1.0],[123,120,74,1.0],[123,120,75,1.0],[123,120,76,1.0],[123,120,77,1.0],[123,120,78,1.0],[123,120,79,1.0],[123,121,64,1.0],[123,121,65,1.0],[123,121,66,1.0],[123,121,67,1.0],[123,121,68,1.0],[123,121,69,1.0],[123,121,70,1.0],[123,121,71,1.0],[123,121,72,1.0],[123,121,73,1.0],[123,121,74,1.0],[123,121,75,1.0],[123,121,76,1.0],[123,121,77,1.0],[123,121,78,1.0],[123,121,79,1.0],[123,122,64,1.0],[123,122,65,1.0],[123,122,66,1.0],[123,122,67,1.0],[123,122,68,1.0],[123,122,69,1.0],[123,122,70,1.0],[123,122,71,1.0],[123,122,72,1.0],[123,122,73,1.0],[123,122,74,1.0],[123,122,75,1.0],[123,122,76,1.0],[123,122,77,1.0],[123,122,78,1.0],[123,122,79,1.0],[123,123,64,1.0],[123,123,65,1.0],[123,123,66,1.0],[123,123,67,1.0],[123,123,68,1.0],[123,123,69,1.0],[123,123,70,1.0],[123,123,71,1.0],[123,123,72,1.0],[123,123,73,1.0],[123,123,74,1.0],[123,123,75,1.0],[123,123,76,1.0],[123,123,77,1.0],[123,123,78,1.0],[123,123,79,1.0],[123,124,64,1.0],[123,124,65,1.0],[123,124,66,1.0],[123,124,67,1.0],[123,124,68,1.0],[123,124,69,1.0],[123,124,70,1.0],[123,124,71,1.0],[123,124,72,1.0],[123,124,73,1.0],[123,124,74,1.0],[123,124,75,1.0],[123,124,76,1.0],[123,124,77,1.0],[123,124,78,1.0],[123,124,79,1.0],[123,125,64,1.0],[123,125,65,1.0],[123,125,66,1.0],[123,125,67,1.0],[123,125,68,1.0],[123,125,69,1.0],[123,125,70,1.0],[123,125,71,1.0],[123,125,72,1.0],[123,125,73,1.0],[123,125,74,1.0],[123,125,75,1.0],[123,125,76,1.0],[123,125,77,1.0],[123,125,78,1.0],[123,125,79,1.0],[123,126,64,1.0],[123,126,65,1.0],[123,126,66,1.0],[123,126,67,1.0],[123,126,68,1.0],[123,126,69,1.0],[123,126,70,1.0],[123,126,71,1.0],[123,126,72,1.0],[123,126,73,1.0],[123,126,74,1.0],[123,126,75,1.0],[123,126,76,1.0],[123,126,77,1.0],[123,126,78,1.0],[123,126,79,1.0],[123,127,64,1.0],[123,127,65,1.0],[123,127,66,1.0],[123,127,67,1.0],[123,127,68,1.0],[123,127,69,1.0],[123,127,70,1.0],[123,127,71,1.0],[123,127,72,1.0],[123,127,73,1.0],[123,127,74,1.0],[123,127,75,1.0],[123,127,76,1.0],[123,127,77,1.0],[123,127,78,1.0],[123,127,79,1.0],[123,128,64,1.0],[123,128,65,1.0],[123,128,66,1.0],[123,128,67,1.0],[123,128,68,1.0],[123,128,69,1.0],[123,128,70,1.0],[123,128,71,1.0],[123,128,72,1.0],[123,128,73,1.0],[123,128,74,1.0],[123,128,75,1.0],[123,128,76,1.0],[123,128,77,1.0],[123,128,78,1.0],[123,128,79,1.0],[123,129,64,1.0],[123,129,65,1.0],[123,129,66,1.0],[123,129,67,1.0],[123,129,68,1.0],[123,129,69,1.0],[123,129,70,1.0],[123,129,71,1.0],[123,129,72,1.0],[123,129,73,1.0],[123,129,74,1.0],[123,129,75,1.0],[123,129,76,1.0],[123,129,77,1.0],[123,129,78,1.0],[123,129,79,1.0],[123,130,64,1.0],[123,130,65,1.0],[123,130,66,1.0],[123,130,67,1.0],[123,130,68,1.0],[123,130,69,1.0],[123,130,70,1.0],[123,130,71,1.0],[123,130,72,1.0],[123,130,73,1.0],[123,130,74,1.0],[123,130,75,1.0],[123,130,76,1.0],[123,130,77,1.0],[123,130,78,1.0],[123,130,79,1.0],[123,131,64,1.0],[123,131,65,1.0],[123,131,66,1.0],[123,131,67,1.0],[123,131,68,1.0],[123,131,69,1.0],[123,131,70,1.0],[123,131,71,1.0],[123,131,72,1.0],[123,131,73,1.0],[123,131,74,1.0],[123,131,75,1.0],[123,131,76,1.0],[123,131,77,1.0],[123,131,78,1.0],[123,131,79,1.0],[123,132,64,1.0],[123,132,65,1.0],[123,132,66,1.0],[123,132,67,1.0],[123,132,68,1.0],[123,132,69,1.0],[123,132,70,1.0],[123,132,71,1.0],[123,132,72,1.0],[123,132,73,1.0],[123,132,74,1.0],[123,132,75,1.0],[123,132,76,1.0],[123,132,77,1.0],[123,132,78,1.0],[123,132,79,1.0],[123,133,64,1.0],[123,133,65,1.0],[123,133,66,1.0],[123,133,67,1.0],[123,133,68,1.0],[123,133,69,1.0],[123,133,70,1.0],[123,133,71,1.0],[123,133,72,1.0],[123,133,73,1.0],[123,133,74,1.0],[123,133,75,1.0],[123,133,76,1.0],[123,133,77,1.0],[123,133,78,1.0],[123,133,79,1.0],[123,134,64,1.0],[123,134,65,1.0],[123,134,66,1.0],[123,134,67,1.0],[123,134,68,1.0],[123,134,69,1.0],[123,134,70,1.0],[123,134,71,1.0],[123,134,72,1.0],[123,134,73,1.0],[123,134,74,1.0],[123,134,75,1.0],[123,134,76,1.0],[123,134,77,1.0],[123,134,78,1.0],[123,134,79,1.0],[123,135,64,1.0],[123,135,65,1.0],[123,135,66,1.0],[123,135,67,1.0],[123,135,68,1.0],[123,135,69,1.0],[123,135,70,1.0],[123,135,71,1.0],[123,135,72,1.0],[123,135,73,1.0],[123,135,74,1.0],[123,135,75,1.0],[123,135,76,1.0],[123,135,77,1.0],[123,135,78,1.0],[123,135,79,1.0],[123,136,64,1.0],[123,136,65,1.0],[123,136,66,1.0],[123,136,67,1.0],[123,136,68,1.0],[123,136,69,1.0],[123,136,70,1.0],[123,136,71,1.0],[123,136,72,1.0],[123,136,73,1.0],[123,136,74,1.0],[123,136,75,1.0],[123,136,76,1.0],[123,136,77,1.0],[123,136,78,1.0],[123,136,79,1.0],[123,137,64,1.0],[123,137,65,1.0],[123,137,66,1.0],[123,137,67,1.0],[123,137,68,1.0],[123,137,69,1.0],[123,137,70,1.0],[123,137,71,1.0],[123,137,72,1.0],[123,137,73,1.0],[123,137,74,1.0],[123,137,75,1.0],[123,137,76,1.0],[123,137,77,1.0],[123,137,78,1.0],[123,137,79,1.0],[123,138,64,1.0],[123,138,65,1.0],[123,138,66,1.0],[123,138,67,1.0],[123,138,68,1.0],[123,138,69,1.0],[123,138,70,1.0],[123,138,71,1.0],[123,138,72,1.0],[123,138,73,1.0],[123,138,74,1.0],[123,138,75,1.0],[123,138,76,1.0],[123,138,77,1.0],[123,138,78,1.0],[123,138,79,1.0],[123,139,64,1.0],[123,139,65,1.0],[123,139,66,1.0],[123,139,67,1.0],[123,139,68,1.0],[123,139,69,1.0],[123,139,70,1.0],[123,139,71,1.0],[123,139,72,1.0],[123,139,73,1.0],[123,139,74,1.0],[123,139,75,1.0],[123,139,76,1.0],[123,139,77,1.0],[123,139,78,1.0],[123,139,79,1.0],[123,140,64,1.0],[123,140,65,1.0],[123,140,66,1.0],[123,140,67,1.0],[123,140,68,1.0],[123,140,69,1.0],[123,140,70,1.0],[123,140,71,1.0],[123,140,72,1.0],[123,140,73,1.0],[123,140,74,1.0],[123,140,75,1.0],[123,140,76,1.0],[123,140,77,1.0],[123,140,78,1.0],[123,140,79,1.0],[123,141,64,1.0],[123,141,65,1.0],[123,141,66,1.0],[123,141,67,1.0],[123,141,68,1.0],[123,141,69,1.0],[123,141,70,1.0],[123,141,71,1.0],[123,141,72,1.0],[123,141,73,1.0],[123,141,74,1.0],[123,141,75,1.0],[123,141,76,1.0],[123,141,77,1.0],[123,141,78,1.0],[123,141,79,1.0],[123,142,64,1.0],[123,142,65,1.0],[123,142,66,1.0],[123,142,67,1.0],[123,142,68,1.0],[123,142,69,1.0],[123,142,70,1.0],[123,142,71,1.0],[123,142,72,1.0],[123,142,73,1.0],[123,142,74,1.0],[123,142,75,1.0],[123,142,76,1.0],[123,142,77,1.0],[123,142,78,1.0],[123,142,79,1.0],[123,143,64,1.0],[123,143,65,1.0],[123,143,66,1.0],[123,143,67,1.0],[123,143,68,1.0],[123,143,69,1.0],[123,143,70,1.0],[123,143,71,1.0],[123,143,72,1.0],[123,143,73,1.0],[123,143,74,1.0],[123,143,75,1.0],[123,143,76,1.0],[123,143,77,1.0],[123,143,78,1.0],[123,143,79,1.0],[123,144,64,1.0],[123,144,65,1.0],[123,144,66,1.0],[123,144,67,1.0],[123,144,68,1.0],[123,144,69,1.0],[123,144,70,1.0],[123,144,71,1.0],[123,144,72,1.0],[123,144,73,1.0],[123,144,74,1.0],[123,144,75,1.0],[123,144,76,1.0],[123,144,77,1.0],[123,144,78,1.0],[123,144,79,1.0],[123,145,64,1.0],[123,145,65,1.0],[123,145,66,1.0],[123,145,67,1.0],[123,145,68,1.0],[123,145,69,1.0],[123,145,70,1.0],[123,145,71,1.0],[123,145,72,1.0],[123,145,73,1.0],[123,145,74,1.0],[123,145,75,1.0],[123,145,76,1.0],[123,145,77,1.0],[123,145,78,1.0],[123,145,79,1.0],[123,146,64,1.0],[123,146,65,1.0],[123,146,66,1.0],[123,146,67,1.0],[123,146,68,1.0],[123,146,69,1.0],[123,146,70,1.0],[123,146,71,1.0],[123,146,72,1.0],[123,146,73,1.0],[123,146,74,1.0],[123,146,75,1.0],[123,146,76,1.0],[123,146,77,1.0],[123,146,78,1.0],[123,146,79,1.0],[123,147,64,1.0],[123,147,65,1.0],[123,147,66,1.0],[123,147,67,1.0],[123,147,68,1.0],[123,147,69,1.0],[123,147,70,1.0],[123,147,71,1.0],[123,147,72,1.0],[123,147,73,1.0],[123,147,74,1.0],[123,147,75,1.0],[123,147,76,1.0],[123,147,77,1.0],[123,147,78,1.0],[123,147,79,1.0],[123,148,64,1.0],[123,148,65,1.0],[123,148,66,1.0],[123,148,67,1.0],[123,148,68,1.0],[123,148,69,1.0],[123,148,70,1.0],[123,148,71,1.0],[123,148,72,1.0],[123,148,73,1.0],[123,148,74,1.0],[123,148,75,1.0],[123,148,76,1.0],[123,148,77,1.0],[123,148,78,1.0],[123,148,79,1.0],[123,149,64,1.0],[123,149,65,1.0],[123,149,66,1.0],[123,149,67,1.0],[123,149,68,1.0],[123,149,69,1.0],[123,149,70,1.0],[123,149,71,1.0],[123,149,72,1.0],[123,149,73,1.0],[123,149,74,1.0],[123,149,75,1.0],[123,149,76,1.0],[123,149,77,1.0],[123,149,78,1.0],[123,149,79,1.0],[123,150,64,1.0],[123,150,65,1.0],[123,150,66,1.0],[123,150,67,1.0],[123,150,68,1.0],[123,150,69,1.0],[123,150,70,1.0],[123,150,71,1.0],[123,150,72,1.0],[123,150,73,1.0],[123,150,74,1.0],[123,150,75,1.0],[123,150,76,1.0],[123,150,77,1.0],[123,150,78,1.0],[123,150,79,1.0],[123,151,64,1.0],[123,151,65,1.0],[123,151,66,1.0],[123,151,67,1.0],[123,151,68,1.0],[123,151,69,1.0],[123,151,70,1.0],[123,151,71,1.0],[123,151,72,1.0],[123,151,73,1.0],[123,151,74,1.0],[123,151,75,1.0],[123,151,76,1.0],[123,151,77,1.0],[123,151,78,1.0],[123,151,79,1.0],[123,152,64,1.0],[123,152,65,1.0],[123,152,66,1.0],[123,152,67,1.0],[123,152,68,1.0],[123,152,69,1.0],[123,152,70,1.0],[123,152,71,1.0],[123,152,72,1.0],[123,152,73,1.0],[123,152,74,1.0],[123,152,75,1.0],[123,152,76,1.0],[123,152,77,1.0],[123,152,78,1.0],[123,152,79,1.0],[123,153,64,1.0],[123,153,65,1.0],[123,153,66,1.0],[123,153,67,1.0],[123,153,68,1.0],[123,153,69,1.0],[123,153,70,1.0],[123,153,71,1.0],[123,153,72,1.0],[123,153,73,1.0],[123,153,74,1.0],[123,153,75,1.0],[123,153,76,1.0],[123,153,77,1.0],[123,153,78,1.0],[123,153,79,1.0],[123,154,64,1.0],[123,154,65,1.0],[123,154,66,1.0],[123,154,67,1.0],[123,154,68,1.0],[123,154,69,1.0],[123,154,70,1.0],[123,154,71,1.0],[123,154,72,1.0],[123,154,73,1.0],[123,154,74,1.0],[123,154,75,1.0],[123,154,76,1.0],[123,154,77,1.0],[123,154,78,1.0],[123,154,79,1.0],[123,155,64,1.0],[123,155,65,1.0],[123,155,66,1.0],[123,155,67,1.0],[123,155,68,1.0],[123,155,69,1.0],[123,155,70,1.0],[123,155,71,1.0],[123,155,72,1.0],[123,155,73,1.0],[123,155,74,1.0],[123,155,75,1.0],[123,155,76,1.0],[123,155,77,1.0],[123,155,78,1.0],[123,155,79,1.0],[123,156,64,1.0],[123,156,65,1.0],[123,156,66,1.0],[123,156,67,1.0],[123,156,68,1.0],[123,156,69,1.0],[123,156,70,1.0],[123,156,71,1.0],[123,156,72,1.0],[123,156,73,1.0],[123,156,74,1.0],[123,156,75,1.0],[123,156,76,1.0],[123,156,77,1.0],[123,156,78,1.0],[123,156,79,1.0],[123,157,64,1.0],[123,157,65,1.0],[123,157,66,1.0],[123,157,67,1.0],[123,157,68,1.0],[123,157,69,1.0],[123,157,70,1.0],[123,157,71,1.0],[123,157,72,1.0],[123,157,73,1.0],[123,157,74,1.0],[123,157,75,1.0],[123,157,76,1.0],[123,157,77,1.0],[123,157,78,1.0],[123,157,79,1.0],[123,158,64,1.0],[123,158,65,1.0],[123,158,66,1.0],[123,158,67,1.0],[123,158,68,1.0],[123,158,69,1.0],[123,158,70,1.0],[123,158,71,1.0],[123,158,72,1.0],[123,158,73,1.0],[123,158,74,1.0],[123,158,75,1.0],[123,158,76,1.0],[123,158,77,1.0],[123,158,78,1.0],[123,158,79,1.0],[123,159,64,1.0],[123,159,65,1.0],[123,159,66,1.0],[123,159,67,1.0],[123,159,68,1.0],[123,159,69,1.0],[123,159,70,1.0],[123,159,71,1.0],[123,159,72,1.0],[123,159,73,1.0],[123,159,74,1.0],[123,159,75,1.0],[123,159,76,1.0],[123,159,77,1.0],[123,159,78,1.0],[123,159,79,1.0],[123,160,64,1.0],[123,160,65,1.0],[123,160,66,1.0],[123,160,67,1.0],[123,160,68,1.0],[123,160,69,1.0],[123,160,70,1.0],[123,160,71,1.0],[123,160,72,1.0],[123,160,73,1.0],[123,160,74,1.0],[123,160,75,1.0],[123,160,76,1.0],[123,160,77,1.0],[123,160,78,1.0],[123,160,79,1.0],[123,161,64,1.0],[123,161,65,1.0],[123,161,66,1.0],[123,161,67,1.0],[123,161,68,1.0],[123,161,69,1.0],[123,161,70,1.0],[123,161,71,1.0],[123,161,72,1.0],[123,161,73,1.0],[123,161,74,1.0],[123,161,75,1.0],[123,161,76,1.0],[123,161,77,1.0],[123,161,78,1.0],[123,161,79,1.0],[123,162,64,1.0],[123,162,65,1.0],[123,162,66,1.0],[123,162,67,1.0],[123,162,68,1.0],[123,162,69,1.0],[123,162,70,1.0],[123,162,71,1.0],[123,162,72,1.0],[123,162,73,1.0],[123,162,74,1.0],[123,162,75,1.0],[123,162,76,1.0],[123,162,77,1.0],[123,162,78,1.0],[123,162,79,1.0],[123,163,64,1.0],[123,163,65,1.0],[123,163,66,1.0],[123,163,67,1.0],[123,163,68,1.0],[123,163,69,1.0],[123,163,70,1.0],[123,163,71,1.0],[123,163,72,1.0],[123,163,73,1.0],[123,163,74,1.0],[123,163,75,1.0],[123,163,76,1.0],[123,163,77,1.0],[123,163,78,1.0],[123,163,79,1.0],[123,164,64,1.0],[123,164,65,1.0],[123,164,66,1.0],[123,164,67,1.0],[123,164,68,1.0],[123,164,69,1.0],[123,164,70,1.0],[123,164,71,1.0],[123,164,72,1.0],[123,164,73,1.0],[123,164,74,1.0],[123,164,75,1.0],[123,164,76,1.0],[123,164,77,1.0],[123,164,78,1.0],[123,164,79,1.0],[123,165,64,1.0],[123,165,65,1.0],[123,165,66,1.0],[123,165,67,1.0],[123,165,68,1.0],[123,165,69,1.0],[123,165,70,1.0],[123,165,71,1.0],[123,165,72,1.0],[123,165,73,1.0],[123,165,74,1.0],[123,165,75,1.0],[123,165,76,1.0],[123,165,77,1.0],[123,165,78,1.0],[123,165,79,1.0],[123,166,64,1.0],[123,166,65,1.0],[123,166,66,1.0],[123,166,67,1.0],[123,166,68,1.0],[123,166,69,1.0],[123,166,70,1.0],[123,166,71,1.0],[123,166,72,1.0],[123,166,73,1.0],[123,166,74,1.0],[123,166,75,1.0],[123,166,76,1.0],[123,166,77,1.0],[123,166,78,1.0],[123,166,79,1.0],[123,167,64,1.0],[123,167,65,1.0],[123,167,66,1.0],[123,167,67,1.0],[123,167,68,1.0],[123,167,69,1.0],[123,167,70,1.0],[123,167,71,1.0],[123,167,72,1.0],[123,167,73,1.0],[123,167,74,1.0],[123,167,75,1.0],[123,167,76,1.0],[123,167,77,1.0],[123,167,78,1.0],[123,167,79,1.0],[123,168,64,1.0],[123,168,65,1.0],[123,168,66,1.0],[123,168,67,1.0],[123,168,68,1.0],[123,168,69,1.0],[123,168,70,1.0],[123,168,71,1.0],[123,168,72,1.0],[123,168,73,1.0],[123,168,74,1.0],[123,168,75,1.0],[123,168,76,1.0],[123,168,77,1.0],[123,168,78,1.0],[123,168,79,1.0],[123,169,64,1.0],[123,169,65,1.0],[123,169,66,1.0],[123,169,67,1.0],[123,169,68,1.0],[123,169,69,1.0],[123,169,70,1.0],[123,169,71,1.0],[123,169,72,1.0],[123,169,73,1.0],[123,169,74,1.0],[123,169,75,1.0],[123,169,76,1.0],[123,169,77,1.0],[123,169,78,1.0],[123,169,79,1.0],[123,170,64,1.0],[123,170,65,1.0],[123,170,66,1.0],[123,170,67,1.0],[123,170,68,1.0],[123,170,69,1.0],[123,170,70,1.0],[123,170,71,1.0],[123,170,72,1.0],[123,170,73,1.0],[123,170,74,1.0],[123,170,75,1.0],[123,170,76,1.0],[123,170,77,1.0],[123,170,78,1.0],[123,170,79,1.0],[123,171,64,1.0],[123,171,65,1.0],[123,171,66,1.0],[123,171,67,1.0],[123,171,68,1.0],[123,171,69,1.0],[123,171,70,1.0],[123,171,71,1.0],[123,171,72,1.0],[123,171,73,1.0],[123,171,74,1.0],[123,171,75,1.0],[123,171,76,1.0],[123,171,77,1.0],[123,171,78,1.0],[123,171,79,1.0],[123,172,64,1.0],[123,172,65,1.0],[123,172,66,1.0],[123,172,67,1.0],[123,172,68,1.0],[123,172,69,1.0],[123,172,70,1.0],[123,172,71,1.0],[123,172,72,1.0],[123,172,73,1.0],[123,172,74,1.0],[123,172,75,1.0],[123,172,76,1.0],[123,172,77,1.0],[123,172,78,1.0],[123,172,79,1.0],[123,173,64,1.0],[123,173,65,1.0],[123,173,66,1.0],[123,173,67,1.0],[123,173,68,1.0],[123,173,69,1.0],[123,173,70,1.0],[123,173,71,1.0],[123,173,72,1.0],[123,173,73,1.0],[123,173,74,1.0],[123,173,75,1.0],[123,173,76,1.0],[123,173,77,1.0],[123,173,78,1.0],[123,173,79,1.0],[123,174,64,1.0],[123,174,65,1.0],[123,174,66,1.0],[123,174,67,1.0],[123,174,68,1.0],[123,174,69,1.0],[123,174,70,1.0],[123,174,71,1.0],[123,174,72,1.0],[123,174,73,1.0],[123,174,74,1.0],[123,174,75,1.0],[123,174,76,1.0],[123,174,77,1.0],[123,174,78,1.0],[123,174,79,1.0],[123,175,64,1.0],[123,175,65,1.0],[123,175,66,1.0],[123,175,67,1.0],[123,175,68,1.0],[123,175,69,1.0],[123,175,70,1.0],[123,175,71,1.0],[123,175,72,1.0],[123,175,73,1.0],[123,175,74,1.0],[123,175,75,1.0],[123,175,76,1.0],[123,175,77,1.0],[123,175,78,1.0],[123,175,79,1.0],[123,176,64,1.0],[123,176,65,1.0],[123,176,66,1.0],[123,176,67,1.0],[123,176,68,1.0],[123,176,69,1.0],[123,176,70,1.0],[123,176,71,1.0],[123,176,72,1.0],[123,176,73,1.0],[123,176,74,1.0],[123,176,75,1.0],[123,176,76,1.0],[123,176,77,1.0],[123,176,78,1.0],[123,176,79,1.0],[123,177,64,1.0],[123,177,65,1.0],[123,177,66,1.0],[123,177,67,1.0],[123,177,68,1.0],[123,177,69,1.0],[123,177,70,1.0],[123,177,71,1.0],[123,177,72,1.0],[123,177,73,1.0],[123,177,74,1.0],[123,177,75,1.0],[123,177,76,1.0],[123,177,77,1.0],[123,177,78,1.0],[123,177,79,1.0],[123,178,64,1.0],[123,178,65,1.0],[123,178,66,1.0],[123,178,67,1.0],[123,178,68,1.0],[123,178,69,1.0],[123,178,70,1.0],[123,178,71,1.0],[123,178,72,1.0],[123,178,73,1.0],[123,178,74,1.0],[123,178,75,1.0],[123,178,76,1.0],[123,178,77,1.0],[123,178,78,1.0],[123,178,79,1.0],[123,179,64,1.0],[123,179,65,1.0],[123,179,66,1.0],[123,179,67,1.0],[123,179,68,1.0],[123,179,69,1.0],[123,179,70,1.0],[123,179,71,1.0],[123,179,72,1.0],[123,179,73,1.0],[123,179,74,1.0],[123,179,75,1.0],[123,179,76,1.0],[123,179,77,1.0],[123,179,78,1.0],[123,179,79,1.0],[123,180,64,1.0],[123,180,65,1.0],[123,180,66,1.0],[123,180,67,1.0],[123,180,68,1.0],[123,180,69,1.0],[123,180,70,1.0],[123,180,71,1.0],[123,180,72,1.0],[123,180,73,1.0],[123,180,74,1.0],[123,180,75,1.0],[123,180,76,1.0],[123,180,77,1.0],[123,180,78,1.0],[123,180,79,1.0],[123,181,64,1.0],[123,181,65,1.0],[123,181,66,1.0],[123,181,67,1.0],[123,181,68,1.0],[123,181,69,1.0],[123,181,70,1.0],[123,181,71,1.0],[123,181,72,1.0],[123,181,73,1.0],[123,181,74,1.0],[123,181,75,1.0],[123,181,76,1.0],[123,181,77,1.0],[123,181,78,1.0],[123,181,79,1.0],[123,182,64,1.0],[123,182,65,1.0],[123,182,66,1.0],[123,182,67,1.0],[123,182,68,1.0],[123,182,69,1.0],[123,182,70,1.0],[123,182,71,1.0],[123,182,72,1.0],[123,182,73,1.0],[123,182,74,1.0],[123,182,75,1.0],[123,182,76,1.0],[123,182,77,1.0],[123,182,78,1.0],[123,182,79,1.0],[123,183,64,1.0],[123,183,65,1.0],[123,183,66,1.0],[123,183,67,1.0],[123,183,68,1.0],[123,183,69,1.0],[123,183,70,1.0],[123,183,71,1.0],[123,183,72,1.0],[123,183,73,1.0],[123,183,74,1.0],[123,183,75,1.0],[123,183,76,1.0],[123,183,77,1.0],[123,183,78,1.0],[123,183,79,1.0],[123,184,64,1.0],[123,184,65,1.0],[123,184,66,1.0],[123,184,67,1.0],[123,184,68,1.0],[123,184,69,1.0],[123,184,70,1.0],[123,184,71,1.0],[123,184,72,1.0],[123,184,73,1.0],[123,184,74,1.0],[123,184,75,1.0],[123,184,76,1.0],[123,184,77,1.0],[123,184,78,1.0],[123,184,79,1.0],[123,185,64,1.0],[123,185,65,1.0],[123,185,66,1.0],[123,185,67,1.0],[123,185,68,1.0],[123,185,69,1.0],[123,185,70,1.0],[123,185,71,1.0],[123,185,72,1.0],[123,185,73,1.0],[123,185,74,1.0],[123,185,75,1.0],[123,185,76,1.0],[123,185,77,1.0],[123,185,78,1.0],[123,185,79,1.0],[123,186,64,1.0],[123,186,65,1.0],[123,186,66,1.0],[123,186,67,1.0],[123,186,68,1.0],[123,186,69,1.0],[123,186,70,1.0],[123,186,71,1.0],[123,186,72,1.0],[123,186,73,1.0],[123,186,74,1.0],[123,186,75,1.0],[123,186,76,1.0],[123,186,77,1.0],[123,186,78,1.0],[123,186,79,1.0],[123,187,64,1.0],[123,187,65,1.0],[123,187,66,1.0],[123,187,67,1.0],[123,187,68,1.0],[123,187,69,1.0],[123,187,70,1.0],[123,187,71,1.0],[123,187,72,1.0],[123,187,73,1.0],[123,187,74,1.0],[123,187,75,1.0],[123,187,76,1.0],[123,187,77,1.0],[123,187,78,1.0],[123,187,79,1.0],[123,188,64,1.0],[123,188,65,1.0],[123,188,66,1.0],[123,188,67,1.0],[123,188,68,1.0],[123,188,69,1.0],[123,188,70,1.0],[123,188,71,1.0],[123,188,72,1.0],[123,188,73,1.0],[123,188,74,1.0],[123,188,75,1.0],[123,188,76,1.0],[123,188,77,1.0],[123,188,78,1.0],[123,188,79,1.0],[123,189,64,1.0],[123,189,65,1.0],[123,189,66,1.0],[123,189,67,1.0],[123,189,68,1.0],[123,189,69,1.0],[123,189,70,1.0],[123,189,71,1.0],[123,189,72,1.0],[123,189,73,1.0],[123,189,74,1.0],[123,189,75,1.0],[123,189,76,1.0],[123,189,77,1.0],[123,189,78,1.0],[123,189,79,1.0],[123,190,64,1.0],[123,190,65,1.0],[123,190,66,1.0],[123,190,67,1.0],[123,190,68,1.0],[123,190,69,1.0],[123,190,70,1.0],[123,190,71,1.0],[123,190,72,1.0],[123,190,73,1.0],[123,190,74,1.0],[123,190,75,1.0],[123,190,76,1.0],[123,190,77,1.0],[123,190,78,1.0],[123,190,79,1.0],[123,191,64,1.0],[123,191,65,1.0],[123,191,66,1.0],[123,191,67,1.0],[123,191,68,1.0],[123,191,69,1.0],[123,191,70,1.0],[123,191,71,1.0],[123,191,72,1.0],[123,191,73,1.0],[123,191,74,1.0],[123,191,75,1.0],[123,191,76,1.0],[123,191,77,1.0],[123,191,78,1.0],[123,191,79,1.0],[123,192,64,1.0],[123,192,65,1.0],[123,192,66,1.0],[123,192,67,1.0],[123,192,68,1.0],[123,192,69,1.0],[123,192,70,1.0],[123,192,71,1.0],[123,192,72,1.0],[123,192,73,1.0],[123,192,74,1.0],[123,192,75,1.0],[123,192,76,1.0],[123,192,77,1.0],[123,192,78,1.0],[123,192,79,1.0],[123,193,64,1.0],[123,193,65,1.0],[123,193,66,1.0],[123,193,67,1.0],[123,193,68,1.0],[123,193,69,1.0],[123,193,70,1.0],[123,193,71,1.0],[123,193,72,1.0],[123,193,73,1.0],[123,193,74,1.0],[123,193,75,1.0],[123,193,76,1.0],[123,193,77,1.0],[123,193,78,1.0],[123,193,79,1.0],[123,194,64,1.0],[123,194,65,1.0],[123,194,66,1.0],[123,194,67,1.0],[123,194,68,1.0],[123,194,69,1.0],[123,194,70,1.0],[123,194,71,1.0],[123,194,72,1.0],[123,194,73,1.0],[123,194,74,1.0],[123,194,75,1.0],[123,194,76,1.0],[123,194,77,1.0],[123,194,78,1.0],[123,194,79,1.0],[123,195,64,1.0],[123,195,65,1.0],[123,195,66,1.0],[123,195,67,1.0],[123,195,68,1.0],[123,195,69,1.0],[123,195,70,1.0],[123,195,71,1.0],[123,195,72,1.0],[123,195,73,1.0],[123,195,74,1.0],[123,195,75,1.0],[123,195,76,1.0],[123,195,77,1.0],[123,195,78,1.0],[123,195,79,1.0],[123,196,64,1.0],[123,196,65,1.0],[123,196,66,1.0],[123,196,67,1.0],[123,196,68,1.0],[123,196,69,1.0],[123,196,70,1.0],[123,196,71,1.0],[123,196,72,1.0],[123,196,73,1.0],[123,196,74,1.0],[123,196,75,1.0],[123,196,76,1.0],[123,196,77,1.0],[123,196,78,1.0],[123,196,79,1.0],[123,197,64,1.0],[123,197,65,1.0],[123,197,66,1.0],[123,197,67,1.0],[123,197,68,1.0],[123,197,69,1.0],[123,197,70,1.0],[123,197,71,1.0],[123,197,72,1.0],[123,197,73,1.0],[123,197,74,1.0],[123,197,75,1.0],[123,197,76,1.0],[123,197,77,1.0],[123,197,78,1.0],[123,197,79,1.0],[123,198,64,1.0],[123,198,65,1.0],[123,198,66,1.0],[123,198,67,1.0],[123,198,68,1.0],[123,198,69,1.0],[123,198,70,1.0],[123,198,71,1.0],[123,198,72,1.0],[123,198,73,1.0],[123,198,74,1.0],[123,198,75,1.0],[123,198,76,1.0],[123,198,77,1.0],[123,198,78,1.0],[123,198,79,1.0],[123,199,64,1.0],[123,199,65,1.0],[123,199,66,1.0],[123,199,67,1.0],[123,199,68,1.0],[123,199,69,1.0],[123,199,70,1.0],[123,199,71,1.0],[123,199,72,1.0],[123,199,73,1.0],[123,199,74,1.0],[123,199,75,1.0],[123,199,76,1.0],[123,199,77,1.0],[123,199,78,1.0],[123,199,79,1.0],[123,200,64,1.0],[123,200,65,1.0],[123,200,66,1.0],[123,200,67,1.0],[123,200,68,1.0],[123,200,69,1.0],[123,200,70,1.0],[123,200,71,1.0],[123,200,72,1.0],[123,200,73,1.0],[123,200,74,1.0],[123,200,75,1.0],[123,200,76,1.0],[123,200,77,1.0],[123,200,78,1.0],[123,200,79,1.0],[123,201,64,1.0],[123,201,65,1.0],[123,201,66,1.0],[123,201,67,1.0],[123,201,68,1.0],[123,201,69,1.0],[123,201,70,1.0],[123,201,71,1.0],[123,201,72,1.0],[123,201,73,1.0],[123,201,74,1.0],[123,201,75,1.0],[123,201,76,1.0],[123,201,77,1.0],[123,201,78,1.0],[123,201,79,1.0],[123,202,64,1.0],[123,202,65,1.0],[123,202,66,1.0],[123,202,67,1.0],[123,202,68,1.0],[123,202,69,1.0],[123,202,70,1.0],[123,202,71,1.0],[123,202,72,1.0],[123,202,73,1.0],[123,202,74,1.0],[123,202,75,1.0],[123,202,76,1.0],[123,202,77,1.0],[123,202,78,1.0],[123,202,79,1.0],[123,203,64,1.0],[123,203,65,1.0],[123,203,66,1.0],[123,203,67,1.0],[123,203,68,1.0],[123,203,69,1.0],[123,203,70,1.0],[123,203,71,1.0],[123,203,72,1.0],[123,203,73,1.0],[123,203,74,1.0],[123,203,75,1.0],[123,203,76,1.0],[123,203,77,1.0],[123,203,78,1.0],[123,203,79,1.0],[123,204,64,1.0],[123,204,65,1.0],[123,204,66,1.0],[123,204,67,1.0],[123,204,68,1.0],[123,204,69,1.0],[123,204,70,1.0],[123,204,71,1.0],[123,204,72,1.0],[123,204,73,1.0],[123,204,74,1.0],[123,204,75,1.0],[123,204,76,1.0],[123,204,77,1.0],[123,204,78,1.0],[123,204,79,1.0],[123,205,64,1.0],[123,205,65,1.0],[123,205,66,1.0],[123,205,67,1.0],[123,205,68,1.0],[123,205,69,1.0],[123,205,70,1.0],[123,205,71,1.0],[123,205,72,1.0],[123,205,73,1.0],[123,205,74,1.0],[123,205,75,1.0],[123,205,76,1.0],[123,205,77,1.0],[123,205,78,1.0],[123,205,79,1.0],[123,206,64,1.0],[123,206,65,1.0],[123,206,66,1.0],[123,206,67,1.0],[123,206,68,1.0],[123,206,69,1.0],[123,206,70,1.0],[123,206,71,1.0],[123,206,72,1.0],[123,206,73,1.0],[123,206,74,1.0],[123,206,75,1.0],[123,206,76,1.0],[123,206,77,1.0],[123,206,78,1.0],[123,206,79,1.0],[123,207,64,1.0],[123,207,65,1.0],[123,207,66,1.0],[123,207,67,1.0],[123,207,68,1.0],[123,207,69,1.0],[123,207,70,1.0],[123,207,71,1.0],[123,207,72,1.0],[123,207,73,1.0],[123,207,74,1.0],[123,207,75,1.0],[123,207,76,1.0],[123,207,77,1.0],[123,207,78,1.0],[123,207,79,1.0],[123,208,64,1.0],[123,208,65,1.0],[123,208,66,1.0],[123,208,67,1.0],[123,208,68,1.0],[123,208,69,1.0],[123,208,70,1.0],[123,208,71,1.0],[123,208,72,1.0],[123,208,73,1.0],[123,208,74,1.0],[123,208,75,1.0],[123,208,76,1.0],[123,208,77,1.0],[123,208,78,1.0],[123,208,79,1.0],[123,209,64,1.0],[123,209,65,1.0],[123,209,66,1.0],[123,209,67,1.0],[123,209,68,1.0],[123,209,69,1.0],[123,209,70,1.0],[123,209,71,1.0],[123,209,72,1.0],[123,209,73,1.0],[123,209,74,1.0],[123,209,75,1.0],[123,209,76,1.0],[123,209,77,1.0],[123,209,78,1.0],[123,209,79,1.0],[123,210,64,1.0],[123,210,65,1.0],[123,210,66,1.0],[123,210,67,1.0],[123,210,68,1.0],[123,210,69,1.0],[123,210,70,1.0],[123,210,71,1.0],[123,210,72,1.0],[123,210,73,1.0],[123,210,74,1.0],[123,210,75,1.0],[123,210,76,1.0],[123,210,77,1.0],[123,210,78,1.0],[123,210,79,1.0],[123,211,64,1.0],[123,211,65,1.0],[123,211,66,1.0],[123,211,67,1.0],[123,211,68,1.0],[123,211,69,1.0],[123,211,70,1.0],[123,211,71,1.0],[123,211,72,1.0],[123,211,73,1.0],[123,211,74,1.0],[123,211,75,1.0],[123,211,76,1.0],[123,211,77,1.0],[123,211,78,1.0],[123,211,79,1.0],[123,212,64,1.0],[123,212,65,1.0],[123,212,66,1.0],[123,212,67,1.0],[123,212,68,1.0],[123,212,69,1.0],[123,212,70,1.0],[123,212,71,1.0],[123,212,72,1.0],[123,212,73,1.0],[123,212,74,1.0],[123,212,75,1.0],[123,212,76,1.0],[123,212,77,1.0],[123,212,78,1.0],[123,212,79,1.0],[123,213,64,1.0],[123,213,65,1.0],[123,213,66,1.0],[123,213,67,1.0],[123,213,68,1.0],[123,213,69,1.0],[123,213,70,1.0],[123,213,71,1.0],[123,213,72,1.0],[123,213,73,1.0],[123,213,74,1.0],[123,213,75,1.0],[123,213,76,1.0],[123,213,77,1.0],[123,213,78,1.0],[123,213,79,1.0],[123,214,64,1.0],[123,214,65,1.0],[123,214,66,1.0],[123,214,67,1.0],[123,214,68,1.0],[123,214,69,1.0],[123,214,70,1.0],[123,214,71,1.0],[123,214,72,1.0],[123,214,73,1.0],[123,214,74,1.0],[123,214,75,1.0],[123,214,76,1.0],[123,214,77,1.0],[123,214,78,1.0],[123,214,79,1.0],[123,215,64,1.0],[123,215,65,1.0],[123,215,66,1.0],[123,215,67,1.0],[123,215,68,1.0],[123,215,69,1.0],[123,215,70,1.0],[123,215,71,1.0],[123,215,72,1.0],[123,215,73,1.0],[123,215,74,1.0],[123,215,75,1.0],[123,215,76,1.0],[123,215,77,1.0],[123,215,78,1.0],[123,215,79,1.0],[123,216,64,1.0],[123,216,65,1.0],[123,216,66,1.0],[123,216,67,1.0],[123,216,68,1.0],[123,216,69,1.0],[123,216,70,1.0],[123,216,71,1.0],[123,216,72,1.0],[123,216,73,1.0],[123,216,74,1.0],[123,216,75,1.0],[123,216,76,1.0],[123,216,77,1.0],[123,216,78,1.0],[123,216,79,1.0],[123,217,64,1.0],[123,217,65,1.0],[123,217,66,1.0],[123,217,67,1.0],[123,217,68,1.0],[123,217,69,1.0],[123,217,70,1.0],[123,217,71,1.0],[123,217,72,1.0],[123,217,73,1.0],[123,217,74,1.0],[123,217,75,1.0],[123,217,76,1.0],[123,217,77,1.0],[123,217,78,1.0],[123,217,79,1.0],[123,218,64,1.0],[123,218,65,1.0],[123,218,66,1.0],[123,218,67,1.0],[123,218,68,1.0],[123,218,69,1.0],[123,218,70,1.0],[123,218,71,1.0],[123,218,72,1.0],[123,218,73,1.0],[123,218,74,1.0],[123,218,75,1.0],[123,218,76,1.0],[123,218,77,1.0],[123,218,78,1.0],[123,218,79,1.0],[123,219,64,1.0],[123,219,65,1.0],[123,219,66,1.0],[123,219,67,1.0],[123,219,68,1.0],[123,219,69,1.0],[123,219,70,1.0],[123,219,71,1.0],[123,219,72,1.0],[123,219,73,1.0],[123,219,74,1.0],[123,219,75,1.0],[123,219,76,1.0],[123,219,77,1.0],[123,219,78,1.0],[123,219,79,1.0],[123,220,64,1.0],[123,220,65,1.0],[123,220,66,1.0],[123,220,67,1.0],[123,220,68,1.0],[123,220,69,1.0],[123,220,70,1.0],[123,220,71,1.0],[123,220,72,1.0],[123,220,73,1.0],[123,220,74,1.0],[123,220,75,1.0],[123,220,76,1.0],[123,220,77,1.0],[123,220,78,1.0],[123,220,79,1.0],[123,221,64,1.0],[123,221,65,1.0],[123,221,66,1.0],[123,221,67,1.0],[123,221,68,1.0],[123,221,69,1.0],[123,221,70,1.0],[123,221,71,1.0],[123,221,72,1.0],[123,221,73,1.0],[123,221,74,1.0],[123,221,75,1.0],[123,221,76,1.0],[123,221,77,1.0],[123,221,78,1.0],[123,221,79,1.0],[123,222,64,1.0],[123,222,65,1.0],[123,222,66,1.0],[123,222,67,1.0],[123,222,68,1.0],[123,222,69,1.0],[123,222,70,1.0],[123,222,71,1.0],[123,222,72,1.0],[123,222,73,1.0],[123,222,74,1.0],[123,222,75,1.0],[123,222,76,1.0],[123,222,77,1.0],[123,222,78,1.0],[123,222,79,1.0],[123,223,64,1.0],[123,223,65,1.0],[123,223,66,1.0],[123,223,67,1.0],[123,223,68,1.0],[123,223,69,1.0],[123,223,70,1.0],[123,223,71,1.0],[123,223,72,1.0],[123,223,73,1.0],[123,223,74,1.0],[123,223,75,1.0],[123,223,76,1.0],[123,223,77,1.0],[123,223,78,1.0],[123,223,79,1.0],[123,224,64,1.0],[123,224,65,1.0],[123,224,66,1.0],[123,224,67,1.0],[123,224,68,1.0],[123,224,69,1.0],[123,224,70,1.0],[123,224,71,1.0],[123,224,72,1.0],[123,224,73,1.0],[123,224,74,1.0],[123,224,75,1.0],[123,224,76,1.0],[123,224,77,1.0],[123,224,78,1.0],[123,224,79,1.0],[123,225,64,1.0],[123,225,65,1.0],[123,225,66,1.0],[123,225,67,1.0],[123,225,68,1.0],[123,225,69,1.0],[123,225,70,1.0],[123,225,71,1.0],[123,225,72,1.0],[123,225,73,1.0],[123,225,74,1.0],[123,225,75,1.0],[123,225,76,1.0],[123,225,77,1.0],[123,225,78,1.0],[123,225,79,1.0],[123,226,64,1.0],[123,226,65,1.0],[123,226,66,1.0],[123,226,67,1.0],[123,226,68,1.0],[123,226,69,1.0],[123,226,70,1.0],[123,226,71,1.0],[123,226,72,1.0],[123,226,73,1.0],[123,226,74,1.0],[123,226,75,1.0],[123,226,76,1.0],[123,226,77,1.0],[123,226,78,1.0],[123,226,79,1.0],[123,227,64,1.0],[123,227,65,1.0],[123,227,66,1.0],[123,227,67,1.0],[123,227,68,1.0],[123,227,69,1.0],[123,227,70,1.0],[123,227,71,1.0],[123,227,72,1.0],[123,227,73,1.0],[123,227,74,1.0],[123,227,75,1.0],[123,227,76,1.0],[123,227,77,1.0],[123,227,78,1.0],[123,227,79,1.0],[123,228,64,1.0],[123,228,65,1.0],[123,228,66,1.0],[123,228,67,1.0],[123,228,68,1.0],[123,228,69,1.0],[123,228,70,1.0],[123,228,71,1.0],[123,228,72,1.0],[123,228,73,1.0],[123,228,74,1.0],[123,228,75,1.0],[123,228,76,1.0],[123,228,77,1.0],[123,228,78,1.0],[123,228,79,1.0],[123,229,64,1.0],[123,229,65,1.0],[123,229,66,1.0],[123,229,67,1.0],[123,229,68,1.0],[123,229,69,1.0],[123,229,70,1.0],[123,229,71,1.0],[123,229,72,1.0],[123,229,73,1.0],[123,229,74,1.0],[123,229,75,1.0],[123,229,76,1.0],[123,229,77,1.0],[123,229,78,1.0],[123,229,79,1.0],[123,230,64,1.0],[123,230,65,1.0],[123,230,66,1.0],[123,230,67,1.0],[123,230,68,1.0],[123,230,69,1.0],[123,230,70,1.0],[123,230,71,1.0],[123,230,72,1.0],[123,230,73,1.0],[123,230,74,1.0],[123,230,75,1.0],[123,230,76,1.0],[123,230,77,1.0],[123,230,78,1.0],[123,230,79,1.0],[123,231,64,1.0],[123,231,65,1.0],[123,231,66,1.0],[123,231,67,1.0],[123,231,68,1.0],[123,231,69,1.0],[123,231,70,1.0],[123,231,71,1.0],[123,231,72,1.0],[123,231,73,1.0],[123,231,74,1.0],[123,231,75,1.0],[123,231,76,1.0],[123,231,77,1.0],[123,231,78,1.0],[123,231,79,1.0],[123,232,64,1.0],[123,232,65,1.0],[123,232,66,1.0],[123,232,67,1.0],[123,232,68,1.0],[123,232,69,1.0],[123,232,70,1.0],[123,232,71,1.0],[123,232,72,1.0],[123,232,73,1.0],[123,232,74,1.0],[123,232,75,1.0],[123,232,76,1.0],[123,232,77,1.0],[123,232,78,1.0],[123,232,79,1.0],[123,233,64,1.0],[123,233,65,1.0],[123,233,66,1.0],[123,233,67,1.0],[123,233,68,1.0],[123,233,69,1.0],[123,233,70,1.0],[123,233,71,1.0],[123,233,72,1.0],[123,233,73,1.0],[123,233,74,1.0],[123,233,75,1.0],[123,233,76,1.0],[123,233,77,1.0],[123,233,78,1.0],[123,233,79,1.0],[123,234,64,1.0],[123,234,65,1.0],[123,234,66,1.0],[123,234,67,1.0],[123,234,68,1.0],[123,234,69,1.0],[123,234,70,1.0],[123,234,71,1.0],[123,234,72,1.0],[123,234,73,1.0],[123,234,74,1.0],[123,234,75,1.0],[123,234,76,1.0],[123,234,77,1.0],[123,234,78,1.0],[123,234,79,1.0],[123,235,64,1.0],[123,235,65,1.0],[123,235,66,1.0],[123,235,67,1.0],[123,235,68,1.0],[123,235,69,1.0],[123,235,70,1.0],[123,235,71,1.0],[123,235,72,1.0],[123,235,73,1.0],[123,235,74,1.0],[123,235,75,1.0],[123,235,76,1.0],[123,235,77,1.0],[123,235,78,1.0],[123,235,79,1.0],[123,236,64,1.0],[123,236,65,1.0],[123,236,66,1.0],[123,236,67,1.0],[123,236,68,1.0],[123,236,69,1.0],[123,236,70,1.0],[123,236,71,1.0],[123,236,72,1.0],[123,236,73,1.0],[123,236,74,1.0],[123,236,75,1.0],[123,236,76,1.0],[123,236,77,1.0],[123,236,78,1.0],[123,236,79,1.0],[123,237,64,1.0],[123,237,65,1.0],[123,237,66,1.0],[123,237,67,1.0],[123,237,68,1.0],[123,237,69,1.0],[123,237,70,1.0],[123,237,71,1.0],[123,237,72,1.0],[123,237,73,1.0],[123,237,74,1.0],[123,237,75,1.0],[123,237,76,1.0],[123,237,77,1.0],[123,237,78,1.0],[123,237,79,1.0],[123,238,64,1.0],[123,238,65,1.0],[123,238,66,1.0],[123,238,67,1.0],[123,238,68,1.0],[123,238,69,1.0],[123,238,70,1.0],[123,238,71,1.0],[123,238,72,1.0],[123,238,73,1.0],[123,238,74,1.0],[123,238,75,1.0],[123,238,76,1.0],[123,238,77,1.0],[123,238,78,1.0],[123,238,79,1.0],[123,239,64,1.0],[123,239,65,1.0],[123,239,66,1.0],[123,239,67,1.0],[123,239,68,1.0],[123,239,69,1.0],[123,239,70,1.0],[123,239,71,1.0],[123,239,72,1.0],[123,239,73,1.0],[123,239,74,1.0],[123,239,75,1.0],[123,239,76,1.0],[123,239,77,1.0],[123,239,78,1.0],[123,239,79,1.0],[123,240,64,1.0],[123,240,65,1.0],[123,240,66,1.0],[123,240,67,1.0],[123,240,68,1.0],[123,240,69,1.0],[123,240,70,1.0],[123,240,71,1.0],[123,240,72,1.0],[123,240,73,1.0],[123,240,74,1.0],[123,240,75,1.0],[123,240,76,1.0],[123,240,77,1.0],[123,240,78,1.0],[123,240,79,1.0],[123,241,64,1.0],[123,241,65,1.0],[123,241,66,1.0],[123,241,67,1.0],[123,241,68,1.0],[123,241,69,1.0],[123,241,70,1.0],[123,241,71,1.0],[123,241,72,1.0],[123,241,73,1.0],[123,241,74,1.0],[123,241,75,1.0],[123,241,76,1.0],[123,241,77,1.0],[123,241,78,1.0],[123,241,79,1.0],[123,242,64,1.0],[123,242,65,1.0],[123,242,66,1.0],[123,242,67,1.0],[123,242,68,1.0],[123,242,69,1.0],[123,242,70,1.0],[123,242,71,1.0],[123,242,72,1.0],[123,242,73,1.0],[123,242,74,1.0],[123,242,75,1.0],[123,242,76,1.0],[123,242,77,1.0],[123,242,78,1.0],[123,242,79,1.0],[123,243,64,1.0],[123,243,65,1.0],[123,243,66,1.0],[123,243,67,1.0],[123,243,68,1.0],[123,243,69,1.0],[123,243,70,1.0],[123,243,71,1.0],[123,243,72,1.0],[123,243,73,1.0],[123,243,74,1.0],[123,243,75,1.0],[123,243,76,1.0],[123,243,77,1.0],[123,243,78,1.0],[123,243,79,1.0],[123,244,64,1.0],[123,244,65,1.0],[123,244,66,1.0],[123,244,67,1.0],[123,244,68,1.0],[123,244,69,1.0],[123,244,70,1.0],[123,244,71,1.0],[123,244,72,1.0],[123,244,73,1.0],[123,244,74,1.0],[123,244,75,1.0],[123,244,76,1.0],[123,244,77,1.0],[123,244,78,1.0],[123,244,79,1.0],[123,245,64,1.0],[123,245,65,1.0],[123,245,66,1.0],[123,245,67,1.0],[123,245,68,1.0],[123,245,69,1.0],[123,245,70,1.0],[123,245,71,1.0],[123,245,72,1.0],[123,245,73,1.0],[123,245,74,1.0],[123,245,75,1.0],[123,245,76,1.0],[123,245,77,1.0],[123,245,78,1.0],[123,245,79,1.0],[123,246,64,1.0],[123,246,65,1.0],[123,246,66,1.0],[123,246,67,1.0],[123,246,68,1.0],[123,246,69,1.0],[123,246,70,1.0],[123,246,71,1.0],[123,246,72,1.0],[123,246,73,1.0],[123,246,74,1.0],[123,246,75,1.0],[123,246,76,1.0],[123,246,77,1.0],[123,246,78,1.0],[123,246,79,1.0],[123,247,64,1.0],[123,247,65,1.0],[123,247,66,1.0],[123,247,67,1.0],[123,247,68,1.0],[123,247,69,1.0],[123,247,70,1.0],[123,247,71,1.0],[123,247,72,1.0],[123,247,73,1.0],[123,247,74,1.0],[123,247,75,1.0],[123,247,76,1.0],[123,247,77,1.0],[123,247,78,1.0],[123,247,79,1.0],[123,248,64,1.0],[123,248,65,1.0],[123,248,66,1.0],[123,248,67,1.0],[123,248,68,1.0],[123,248,69,1.0],[123,248,70,1.0],[123,248,71,1.0],[123,248,72,1.0],[123,248,73,1.0],[123,248,74,1.0],[123,248,75,1.0],[123,248,76,1.0],[123,248,77,1.0],[123,248,78,1.0],[123,248,79,1.0],[123,249,64,1.0],[123,249,65,1.0],[123,249,66,1.0],[123,249,67,1.0],[123,249,68,1.0],[123,249,69,1.0],[123,249,70,1.0],[123,249,71,1.0],[123,249,72,1.0],[123,249,73,1.0],[123,249,74,1.0],[123,249,75,1.0],[123,249,76,1.0],[123,249,77,1.0],[123,249,78,1.0],[123,249,79,1.0],[123,250,64,1.0],[123,250,65,1.0],[123,250,66,1.0],[123,250,67,1.0],[123,250,68,1.0],[123,250,69,1.0],[123,250,70,1.0],[123,250,71,1.0],[123,250,72,1.0],[123,250,73,1.0],[123,250,74,1.0],[123,250,75,1.0],[123,250,76,1.0],[123,250,77,1.0],[123,250,78,1.0],[123,250,79,1.0],[123,251,64,1.0],[123,251,65,1.0],[123,251,66,1.0],[123,251,67,1.0],[123,251,68,1.0],[123,251,69,1.0],[123,251,70,1.0],[123,251,71,1.0],[123,251,72,1.0],[123,251,73,1.0],[123,251,74,1.0],[123,251,75,1.0],[123,251,76,1.0],[123,251,77,1.0],[123,251,78,1.0],[123,251,79,1.0],[123,252,64,1.0],[123,252,65,1.0],[123,252,66,1.0],[123,252,67,1.0],[123,252,68,1.0],[123,252,69,1.0],[123,252,70,1.0],[123,252,71,1.0],[123,252,72,1.0],[123,252,73,1.0],[123,252,74,1.0],[123,252,75,1.0],[123,252,76,1.0],[123,252,77,1.0],[123,252,78,1.0],[123,252,79,1.0],[123,253,64,1.0],[123,253,65,1.0],[123,253,66,1.0],[123,253,67,1.0],[123,253,68,1.0],[123,253,69,1.0],[123,253,70,1.0],[123,253,71,1.0],[123,253,72,1.0],[123,253,73,1.0],[123,253,74,1.0],[123,253,75,1.0],[123,253,76,1.0],[123,253,77,1.0],[123,253,78,1.0],[123,253,79,1.0],[123,254,64,1.0],[123,254,65,1.0],[123,254,66,1.0],[123,254,67,1.0],[123,254,68,1.0],[123,254,69,1.0],[123,254,70,1.0],[123,254,71,1.0],[123,254,72,1.0],[123,254,73,1.0],[123,254,74,1.0],[123,254,75,1.0],[123,254,76,1.0],[123,254,77,1.0],[123,254,78,1.0],[123,254,79,1.0],[123,255,64,1.0],[123,255,65,1.0],[123,255,66,1.0],[123,255,67,1.0],[123,255,68,1.0],[123,255,69,1.0],[123,255,70,1.0],[123,255,71,1.0],[123,255,72,1.0],[123,255,73,1.0],[123,255,74,1.0],[123,255,75,1.0],[123,255,76,1.0],[123,255,77,1.0],[123,255,78,1.0],[123,255,79,1.0],[123,256,64,1.0],[123,256,65,1.0],[123,256,66,1.0],[123,256,67,1.0],[123,256,68,1.0],[123,256,69,1.0],[123,256,70,1.0],[123,256,71,1.0],[123,256,72,1.0],[123,256,73,1.0],[123,256,74,1.0],[123,256,75,1.0],[123,256,76,1.0],[123,256,77,1.0],[123,256,78,1.0],[123,256,79,1.0],[123,257,64,1.0],[123,257,65,1.0],[123,257,66,1.0],[123,257,67,1.0],[123,257,68,1.0],[123,257,69,1.0],[123,257,70,1.0],[123,257,71,1.0],[123,257,72,1.0],[123,257,73,1.0],[123,257,74,1.0],[123,257,75,1.0],[123,257,76,1.0],[123,257,77,1.0],[123,257,78,1.0],[123,257,79,1.0],[123,258,64,1.0],[123,258,65,1.0],[123,258,66,1.0],[123,258,67,1.0],[123,258,68,1.0],[123,258,69,1.0],[123,258,70,1.0],[123,258,71,1.0],[123,258,72,1.0],[123,258,73,1.0],[123,258,74,1.0],[123,258,75,1.0],[123,258,76,1.0],[123,258,77,1.0],[123,258,78,1.0],[123,258,79,1.0],[123,259,64,1.0],[123,259,65,1.0],[123,259,66,1.0],[123,259,67,1.0],[123,259,68,1.0],[123,259,69,1.0],[123,259,70,1.0],[123,259,71,1.0],[123,259,72,1.0],[123,259,73,1.0],[123,259,74,1.0],[123,259,75,1.0],[123,259,76,1.0],[123,259,77,1.0],[123,259,78,1.0],[123,259,79,1.0],[123,260,64,1.0],[123,260,65,1.0],[123,260,66,1.0],[123,260,67,1.0],[123,260,68,1.0],[123,260,69,1.0],[123,260,70,1.0],[123,260,71,1.0],[123,260,72,1.0],[123,260,73,1.0],[123,260,74,1.0],[123,260,75,1.0],[123,260,76,1.0],[123,260,77,1.0],[123,260,78,1.0],[123,260,79,1.0],[123,261,64,1.0],[123,261,65,1.0],[123,261,66,1.0],[123,261,67,1.0],[123,261,68,1.0],[123,261,69,1.0],[123,261,70,1.0],[123,261,71,1.0],[123,261,72,1.0],[123,261,73,1.0],[123,261,74,1.0],[123,261,75,1.0],[123,261,76,1.0],[123,261,77,1.0],[123,261,78,1.0],[123,261,79,1.0],[123,262,64,1.0],[123,262,65,1.0],[123,262,66,1.0],[123,262,67,1.0],[123,262,68,1.0],[123,262,69,1.0],[123,262,70,1.0],[123,262,71,1.0],[123,262,72,1.0],[123,262,73,1.0],[123,262,74,1.0],[123,262,75,1.0],[123,262,76,1.0],[123,262,77,1.0],[123,262,78,1.0],[123,262,79,1.0],[123,263,64,1.0],[123,263,65,1.0],[123,263,66,1.0],[123,263,67,1.0],[123,263,68,1.0],[123,263,69,1.0],[123,263,70,1.0],[123,263,71,1.0],[123,263,72,1.0],[123,263,73,1.0],[123,263,74,1.0],[123,263,75,1.0],[123,263,76,1.0],[123,263,77,1.0],[123,263,78,1.0],[123,263,79,1.0],[123,264,64,1.0],[123,264,65,1.0],[123,264,66,1.0],[123,264,67,1.0],[123,264,68,1.0],[123,264,69,1.0],[123,264,70,1.0],[123,264,71,1.0],[123,264,72,1.0],[123,264,73,1.0],[123,264,74,1.0],[123,264,75,1.0],[123,264,76,1.0],[123,264,77,1.0],[123,264,78,1.0],[123,264,79,1.0],[123,265,64,1.0],[123,265,65,1.0],[123,265,66,1.0],[123,265,67,1.0],[123,265,68,1.0],[123,265,69,1.0],[123,265,70,1.0],[123,265,71,1.0],[123,265,72,1.0],[123,265,73,1.0],[123,265,74,1.0],[123,265,75,1.0],[123,265,76,1.0],[123,265,77,1.0],[123,265,78,1.0],[123,265,79,1.0],[123,266,64,1.0],[123,266,65,1.0],[123,266,66,1.0],[123,266,67,1.0],[123,266,68,1.0],[123,266,69,1.0],[123,266,70,1.0],[123,266,71,1.0],[123,266,72,1.0],[123,266,73,1.0],[123,266,74,1.0],[123,266,75,1.0],[123,266,76,1.0],[123,266,77,1.0],[123,266,78,1.0],[123,266,79,1.0],[123,267,64,1.0],[123,267,65,1.0],[123,267,66,1.0],[123,267,67,1.0],[123,267,68,1.0],[123,267,69,1.0],[123,267,70,1.0],[123,267,71,1.0],[123,267,72,1.0],[123,267,73,1.0],[123,267,74,1.0],[123,267,75,1.0],[123,267,76,1.0],[123,267,77,1.0],[123,267,78,1.0],[123,267,79,1.0],[123,268,64,1.0],[123,268,65,1.0],[123,268,66,1.0],[123,268,67,1.0],[123,268,68,1.0],[123,268,69,1.0],[123,268,70,1.0],[123,268,71,1.0],[123,268,72,1.0],[123,268,73,1.0],[123,268,74,1.0],[123,268,75,1.0],[123,268,76,1.0],[123,268,77,1.0],[123,268,78,1.0],[123,268,79,1.0],[123,269,64,1.0],[123,269,65,1.0],[123,269,66,1.0],[123,269,67,1.0],[123,269,68,1.0],[123,269,69,1.0],[123,269,70,1.0],[123,269,71,1.0],[123,269,72,1.0],[123,269,73,1.0],[123,269,74,1.0],[123,269,75,1.0],[123,269,76,1.0],[123,269,77,1.0],[123,269,78,1.0],[123,269,79,1.0],[123,270,64,1.0],[123,270,65,1.0],[123,270,66,1.0],[123,270,67,1.0],[123,270,68,1.0],[123,270,69,1.0],[123,270,70,1.0],[123,270,71,1.0],[123,270,72,1.0],[123,270,73,1.0],[123,270,74,1.0],[123,270,75,1.0],[123,270,76,1.0],[123,270,77,1.0],[123,270,78,1.0],[123,270,79,1.0],[123,271,64,1.0],[123,271,65,1.0],[123,271,66,1.0],[123,271,67,1.0],[123,271,68,1.0],[123,271,69,1.0],[123,271,70,1.0],[123,271,71,1.0],[123,271,72,1.0],[123,271,73,1.0],[123,271,74,1.0],[123,271,75,1.0],[123,271,76,1.0],[123,271,77,1.0],[123,271,78,1.0],[123,271,79,1.0],[123,272,64,1.0],[123,272,65,1.0],[123,272,66,1.0],[123,272,67,1.0],[123,272,68,1.0],[123,272,69,1.0],[123,272,70,1.0],[123,272,71,1.0],[123,272,72,1.0],[123,272,73,1.0],[123,272,74,1.0],[123,272,75,1.0],[123,272,76,1.0],[123,272,77,1.0],[123,272,78,1.0],[123,272,79,1.0],[123,273,64,1.0],[123,273,65,1.0],[123,273,66,1.0],[123,273,67,1.0],[123,273,68,1.0],[123,273,69,1.0],[123,273,70,1.0],[123,273,71,1.0],[123,273,72,1.0],[123,273,73,1.0],[123,273,74,1.0],[123,273,75,1.0],[123,273,76,1.0],[123,273,77,1.0],[123,273,78,1.0],[123,273,79,1.0],[123,274,64,1.0],[123,274,65,1.0],[123,274,66,1.0],[123,274,67,1.0],[123,274,68,1.0],[123,274,69,1.0],[123,274,70,1.0],[123,274,71,1.0],[123,274,72,1.0],[123,274,73,1.0],[123,274,74,1.0],[123,274,75,1.0],[123,274,76,1.0],[123,274,77,1.0],[123,274,78,1.0],[123,274,79,1.0],[123,275,64,1.0],[123,275,65,1.0],[123,275,66,1.0],[123,275,67,1.0],[123,275,68,1.0],[123,275,69,1.0],[123,275,70,1.0],[123,275,71,1.0],[123,275,72,1.0],[123,275,73,1.0],[123,275,74,1.0],[123,275,75,1.0],[123,275,76,1.0],[123,275,77,1.0],[123,275,78,1.0],[123,275,79,1.0],[123,276,64,1.0],[123,276,65,1.0],[123,276,66,1.0],[123,276,67,1.0],[123,276,68,1.0],[123,276,69,1.0],[123,276,70,1.0],[123,276,71,1.0],[123,276,72,1.0],[123,276,73,1.0],[123,276,74,1.0],[123,276,75,1.0],[123,276,76,1.0],[123,276,77,1.0],[123,276,78,1.0],[123,276,79,1.0],[123,277,64,1.0],[123,277,65,1.0],[123,277,66,1.0],[123,277,67,1.0],[123,277,68,1.0],[123,277,69,1.0],[123,277,70,1.0],[123,277,71,1.0],[123,277,72,1.0],[123,277,73,1.0],[123,277,74,1.0],[123,277,75,1.0],[123,277,76,1.0],[123,277,77,1.0],[123,277,78,1.0],[123,277,79,1.0],[123,278,64,1.0],[123,278,65,1.0],[123,278,66,1.0],[123,278,67,1.0],[123,278,68,1.0],[123,278,69,1.0],[123,278,70,1.0],[123,278,71,1.0],[123,278,72,1.0],[123,278,73,1.0],[123,278,74,1.0],[123,278,75,1.0],[123,278,76,1.0],[123,278,77,1.0],[123,278,78,1.0],[123,278,79,1.0],[123,279,64,1.0],[123,279,65,1.0],[123,279,66,1.0],[123,279,67,1.0],[123,279,68,1.0],[123,279,69,1.0],[123,279,70,1.0],[123,279,71,1.0],[123,279,72,1.0],[123,279,73,1.0],[123,279,74,1.0],[123,279,75,1.0],[123,279,76,1.0],[123,279,77,1.0],[123,279,78,1.0],[123,279,79,1.0],[123,280,64,1.0],[123,280,65,1.0],[123,280,66,1.0],[123,280,67,1.0],[123,280,68,1.0],[123,280,69,1.0],[123,280,70,1.0],[123,280,71,1.0],[123,280,72,1.0],[123,280,73,1.0],[123,280,74,1.0],[123,280,75,1.0],[123,280,76,1.0],[123,280,77,1.0],[123,280,78,1.0],[123,280,79,1.0],[123,281,64,1.0],[123,281,65,1.0],[123,281,66,1.0],[123,281,67,1.0],[123,281,68,1.0],[123,281,69,1.0],[123,281,70,1.0],[123,281,71,1.0],[123,281,72,1.0],[123,281,73,1.0],[123,281,74,1.0],[123,281,75,1.0],[123,281,76,1.0],[123,281,77,1.0],[123,281,78,1.0],[123,281,79,1.0],[123,282,64,1.0],[123,282,65,1.0],[123,282,66,1.0],[123,282,67,1.0],[123,282,68,1.0],[123,282,69,1.0],[123,282,70,1.0],[123,282,71,1.0],[123,282,72,1.0],[123,282,73,1.0],[123,282,74,1.0],[123,282,75,1.0],[123,282,76,1.0],[123,282,77,1.0],[123,282,78,1.0],[123,282,79,1.0],[123,283,64,1.0],[123,283,65,1.0],[123,283,66,1.0],[123,283,67,1.0],[123,283,68,1.0],[123,283,69,1.0],[123,283,70,1.0],[123,283,71,1.0],[123,283,72,1.0],[123,283,73,1.0],[123,283,74,1.0],[123,283,75,1.0],[123,283,76,1.0],[123,283,77,1.0],[123,283,78,1.0],[123,283,79,1.0],[123,284,64,1.0],[123,284,65,1.0],[123,284,66,1.0],[123,284,67,1.0],[123,284,68,1.0],[123,284,69,1.0],[123,284,70,1.0],[123,284,71,1.0],[123,284,72,1.0],[123,284,73,1.0],[123,284,74,1.0],[123,284,75,1.0],[123,284,76,1.0],[123,284,77,1.0],[123,284,78,1.0],[123,284,79,1.0],[123,285,64,1.0],[123,285,65,1.0],[123,285,66,1.0],[123,285,67,1.0],[123,285,68,1.0],[123,285,69,1.0],[123,285,70,1.0],[123,285,71,1.0],[123,285,72,1.0],[123,285,73,1.0],[123,285,74,1.0],[123,285,75,1.0],[123,285,76,1.0],[123,285,77,1.0],[123,285,78,1.0],[123,285,79,1.0],[123,286,64,1.0],[123,286,65,1.0],[123,286,66,1.0],[123,286,67,1.0],[123,286,68,1.0],[123,286,69,1.0],[123,286,70,1.0],[123,286,71,1.0],[123,286,72,1.0],[123,286,73,1.0],[123,286,74,1.0],[123,286,75,1.0],[123,286,76,1.0],[123,286,77,1.0],[123,286,78,1.0],[123,286,79,1.0],[123,287,64,1.0],[123,287,65,1.0],[123,287,66,1.0],[123,287,67,1.0],[123,287,68,1.0],[123,287,69,1.0],[123,287,70,1.0],[123,287,71,1.0],[123,287,72,1.0],[123,287,73,1.0],[123,287,74,1.0],[123,287,75,1.0],[123,287,76,1.0],[123,287,77,1.0],[123,287,78,1.0],[123,287,79,1.0],[123,288,64,1.0],[123,288,65,1.0],[123,288,66,1.0],[123,288,67,1.0],[123,288,68,1.0],[123,288,69,1.0],[123,288,70,1.0],[123,288,71,1.0],[123,288,72,1.0],[123,288,73,1.0],[123,288,74,1.0],[123,288,75,1.0],[123,288,76,1.0],[123,288,77,1.0],[123,288,78,1.0],[123,288,79,1.0],[123,289,64,1.0],[123,289,65,1.0],[123,289,66,1.0],[123,289,67,1.0],[123,289,68,1.0],[123,289,69,1.0],[123,289,70,1.0],[123,289,71,1.0],[123,289,72,1.0],[123,289,73,1.0],[123,289,74,1.0],[123,289,75,1.0],[123,289,76,1.0],[123,289,77,1.0],[123,289,78,1.0],[123,289,79,1.0],[123,290,64,1.0],[123,290,65,1.0],[123,290,66,1.0],[123,290,67,1.0],[123,290,68,1.0],[123,290,69,1.0],[123,290,70,1.0],[123,290,71,1.0],[123,290,72,1.0],[123,290,73,1.0],[123,290,74,1.0],[123,290,75,1.0],[123,290,76,1.0],[123,290,77,1.0],[123,290,78,1.0],[123,290,79,1.0],[123,291,64,1.0],[123,291,65,1.0],[123,291,66,1.0],[123,291,67,1.0],[123,291,68,1.0],[123,291,69,1.0],[123,291,70,1.0],[123,291,71,1.0],[123,291,72,1.0],[123,291,73,1.0],[123,291,74,1.0],[123,291,75,1.0],[123,291,76,1.0],[123,291,77,1.0],[123,291,78,1.0],[123,291,79,1.0],[123,292,64,1.0],[123,292,65,1.0],[123,292,66,1.0],[123,292,67,1.0],[123,292,68,1.0],[123,292,69,1.0],[123,292,70,1.0],[123,292,71,1.0],[123,292,72,1.0],[123,292,73,1.0],[123,292,74,1.0],[123,292,75,1.0],[123,292,76,1.0],[123,292,77,1.0],[123,292,78,1.0],[123,292,79,1.0],[123,293,64,1.0],[123,293,65,1.0],[123,293,66,1.0],[123,293,67,1.0],[123,293,68,1.0],[123,293,69,1.0],[123,293,70,1.0],[123,293,71,1.0],[123,293,72,1.0],[123,293,73,1.0],[123,293,74,1.0],[123,293,75,1.0],[123,293,76,1.0],[123,293,77,1.0],[123,293,78,1.0],[123,293,79,1.0],[123,294,64,1.0],[123,294,65,1.0],[123,294,66,1.0],[123,294,67,1.0],[123,294,68,1.0],[123,294,69,1.0],[123,294,70,1.0],[123,294,71,1.0],[123,294,72,1.0],[123,294,73,1.0],[123,294,74,1.0],[123,294,75,1.0],[123,294,76,1.0],[123,294,77,1.0],[123,294,78,1.0],[123,294,79,1.0],[123,295,64,1.0],[123,295,65,1.0],[123,295,66,1.0],[123,295,67,1.0],[123,295,68,1.0],[123,295,69,1.0],[123,295,70,1.0],[123,295,71,1.0],[123,295,72,1.0],[123,295,73,1.0],[123,295,74,1.0],[123,295,75,1.0],[123,295,76,1.0],[123,295,77,1.0],[123,295,78,1.0],[123,295,79,1.0],[123,296,64,1.0],[123,296,65,1.0],[123,296,66,1.0],[123,296,67,1.0],[123,296,68,1.0],[123,296,69,1.0],[123,296,70,1.0],[123,296,71,1.0],[123,296,72,1.0],[123,296,73,1.0],[123,296,74,1.0],[123,296,75,1.0],[123,296,76,1.0],[123,296,77,1.0],[123,296,78,1.0],[123,296,79,1.0],[123,297,64,1.0],[123,297,65,1.0],[123,297,66,1.0],[123,297,67,1.0],[123,297,68,1.0],[123,297,69,1.0],[123,297,70,1.0],[123,297,71,1.0],[123,297,72,1.0],[123,297,73,1.0],[123,297,74,1.0],[123,297,75,1.0],[123,297,76,1.0],[123,297,77,1.0],[123,297,78,1.0],[123,297,79,1.0],[123,298,64,1.0],[123,298,65,1.0],[123,298,66,1.0],[123,298,67,1.0],[123,298,68,1.0],[123,298,69,1.0],[123,298,70,1.0],[123,298,71,1.0],[123,298,72,1.0],[123,298,73,1.0],[123,298,74,1.0],[123,298,75,1.0],[123,298,76,1.0],[123,298,77,1.0],[123,298,78,1.0],[123,298,79,1.0],[123,299,64,1.0],[123,299,65,1.0],[123,299,66,1.0],[123,299,67,1.0],[123,299,68,1.0],[123,299,69,1.0],[123,299,70,1.0],[123,299,71,1.0],[123,299,72,1.0],[123,299,73,1.0],[123,299,74,1.0],[123,299,75,1.0],[123,299,76,1.0],[123,299,77,1.0],[123,299,78,1.0],[123,299,79,1.0],[123,300,64,1.0],[123,300,65,1.0],[123,300,66,1.0],[123,300,67,1.0],[123,300,68,1.0],[123,300,69,1.0],[123,300,70,1.0],[123,300,71,1.0],[123,300,72,1.0],[123,300,73,1.0],[123,300,74,1.0],[123,300,75,1.0],[123,300,76,1.0],[123,300,77,1.0],[123,300,78,1.0],[123,300,79,1.0],[123,301,64,1.0],[123,301,65,1.0],[123,301,66,1.0],[123,301,67,1.0],[123,301,68,1.0],[123,301,69,1.0],[123,301,70,1.0],[123,301,71,1.0],[123,301,72,1.0],[123,301,73,1.0],[123,301,74,1.0],[123,301,75,1.0],[123,301,76,1.0],[123,301,77,1.0],[123,301,78,1.0],[123,301,79,1.0],[123,302,64,1.0],[123,302,65,1.0],[123,302,66,1.0],[123,302,67,1.0],[123,302,68,1.0],[123,302,69,1.0],[123,302,70,1.0],[123,302,71,1.0],[123,302,72,1.0],[123,302,73,1.0],[123,302,74,1.0],[123,302,75,1.0],[123,302,76,1.0],[123,302,77,1.0],[123,302,78,1.0],[123,302,79,1.0],[123,303,64,1.0],[123,303,65,1.0],[123,303,66,1.0],[123,303,67,1.0],[123,303,68,1.0],[123,303,69,1.0],[123,303,70,1.0],[123,303,71,1.0],[123,303,72,1.0],[123,303,73,1.0],[123,303,74,1.0],[123,303,75,1.0],[123,303,76,1.0],[123,303,77,1.0],[123,303,78,1.0],[123,303,79,1.0],[123,304,64,1.0],[123,304,65,1.0],[123,304,66,1.0],[123,304,67,1.0],[123,304,68,1.0],[123,304,69,1.0],[123,304,70,1.0],[123,304,71,1.0],[123,304,72,1.0],[123,304,73,1.0],[123,304,74,1.0],[123,304,75,1.0],[123,304,76,1.0],[123,304,77,1.0],[123,304,78,1.0],[123,304,79,1.0],[123,305,64,1.0],[123,305,65,1.0],[123,305,66,1.0],[123,305,67,1.0],[123,305,68,1.0],[123,305,69,1.0],[123,305,70,1.0],[123,305,71,1.0],[123,305,72,1.0],[123,305,73,1.0],[123,305,74,1.0],[123,305,75,1.0],[123,305,76,1.0],[123,305,77,1.0],[123,305,78,1.0],[123,305,79,1.0],[123,306,64,1.0],[123,306,65,1.0],[123,306,66,1.0],[123,306,67,1.0],[123,306,68,1.0],[123,306,69,1.0],[123,306,70,1.0],[123,306,71,1.0],[123,306,72,1.0],[123,306,73,1.0],[123,306,74,1.0],[123,306,75,1.0],[123,306,76,1.0],[123,306,77,1.0],[123,306,78,1.0],[123,306,79,1.0],[123,307,64,1.0],[123,307,65,1.0],[123,307,66,1.0],[123,307,67,1.0],[123,307,68,1.0],[123,307,69,1.0],[123,307,70,1.0],[123,307,71,1.0],[123,307,72,1.0],[123,307,73,1.0],[123,307,74,1.0],[123,307,75,1.0],[123,307,76,1.0],[123,307,77,1.0],[123,307,78,1.0],[123,307,79,1.0],[123,308,64,1.0],[123,308,65,1.0],[123,308,66,1.0],[123,308,67,1.0],[123,308,68,1.0],[123,308,69,1.0],[123,308,70,1.0],[123,308,71,1.0],[123,308,72,1.0],[123,308,73,1.0],[123,308,74,1.0],[123,308,75,1.0],[123,308,76,1.0],[123,308,77,1.0],[123,308,78,1.0],[123,308,79,1.0],[123,309,64,1.0],[123,309,65,1.0],[123,309,66,1.0],[123,309,67,1.0],[123,309,68,1.0],[123,309,69,1.0],[123,309,70,1.0],[123,309,71,1.0],[123,309,72,1.0],[123,309,73,1.0],[123,309,74,1.0],[123,309,75,1.0],[123,309,76,1.0],[123,309,77,1.0],[123,309,78,1.0],[123,309,79,1.0],[123,310,64,1.0],[123,310,65,1.0],[123,310,66,1.0],[123,310,67,1.0],[123,310,68,1.0],[123,310,69,1.0],[123,310,70,1.0],[123,310,71,1.0],[123,310,72,1.0],[123,310,73,1.0],[123,310,74,1.0],[123,310,75,1.0],[123,310,76,1.0],[123,310,77,1.0],[123,310,78,1.0],[123,310,79,1.0],[123,311,64,1.0],[123,311,65,1.0],[123,311,66,1.0],[123,311,67,1.0],[123,311,68,1.0],[123,311,69,1.0],[123,311,70,1.0],[123,311,71,1.0],[123,311,72,1.0],[123,311,73,1.0],[123,311,74,1.0],[123,311,75,1.0],[123,311,76,1.0],[123,311,77,1.0],[123,311,78,1.0],[123,311,79,1.0],[123,312,64,1.0],[123,312,65,1.0],[123,312,66,1.0],[123,312,67,1.0],[123,312,68,1.0],[123,312,69,1.0],[123,312,70,1.0],[123,312,71,1.0],[123,312,72,1.0],[123,312,73,1.0],[123,312,74,1.0],[123,312,75,1.0],[123,312,76,1.0],[123,312,77,1.0],[123,312,78,1.0],[123,312,79,1.0],[123,313,64,1.0],[123,313,65,1.0],[123,313,66,1.0],[123,313,67,1.0],[123,313,68,1.0],[123,313,69,1.0],[123,313,70,1.0],[123,313,71,1.0],[123,313,72,1.0],[123,313,73,1.0],[123,313,74,1.0],[123,313,75,1.0],[123,313,76,1.0],[123,313,77,1.0],[123,313,78,1.0],[123,313,79,1.0],[123,314,64,1.0],[123,314,65,1.0],[123,314,66,1.0],[123,314,67,1.0],[123,314,68,1.0],[123,314,69,1.0],[123,314,70,1.0],[123,314,71,1.0],[123,314,72,1.0],[123,314,73,1.0],[123,314,74,1.0],[123,314,75,1.0],[123,314,76,1.0],[123,314,77,1.0],[123,314,78,1.0],[123,314,79,1.0],[123,315,64,1.0],[123,315,65,1.0],[123,315,66,1.0],[123,315,67,1.0],[123,315,68,1.0],[123,315,69,1.0],[123,315,70,1.0],[123,315,71,1.0],[123,315,72,1.0],[123,315,73,1.0],[123,315,74,1.0],[123,315,75,1.0],[123,315,76,1.0],[123,315,77,1.0],[123,315,78,1.0],[123,315,79,1.0],[123,316,64,1.0],[123,316,65,1.0],[123,316,66,1.0],[123,316,67,1.0],[123,316,68,1.0],[123,316,69,1.0],[123,316,70,1.0],[123,316,71,1.0],[123,316,72,1.0],[123,316,73,1.0],[123,316,74,1.0],[123,316,75,1.0],[123,316,76,1.0],[123,316,77,1.0],[123,316,78,1.0],[123,316,79,1.0],[123,317,64,1.0],[123,317,65,1.0],[123,317,66,1.0],[123,317,67,1.0],[123,317,68,1.0],[123,317,69,1.0],[123,317,70,1.0],[123,317,71,1.0],[123,317,72,1.0],[123,317,73,1.0],[123,317,74,1.0],[123,317,75,1.0],[123,317,76,1.0],[123,317,77,1.0],[123,317,78,1.0],[123,317,79,1.0],[123,318,64,1.0],[123,318,65,1.0],[123,318,66,1.0],[123,318,67,1.0],[123,318,68,1.0],[123,318,69,1.0],[123,318,70,1.0],[123,318,71,1.0],[123,318,72,1.0],[123,318,73,1.0],[123,318,74,1.0],[123,318,75,1.0],[123,318,76,1.0],[123,318,77,1.0],[123,318,78,1.0],[123,318,79,1.0],[123,319,64,1.0],[123,319,65,1.0],[123,319,66,1.0],[123,319,67,1.0],[123,319,68,1.0],[123,319,69,1.0],[123,319,70,1.0],[123,319,71,1.0],[123,319,72,1.0],[123,319,73,1.0],[123,319,74,1.0],[123,319,75,1.0],[123,319,76,1.0],[123,319,77,1.0],[123,319,78,1.0],[123,319,79,1.0],[124,-64,64,1.0],[124,-64,65,1.0],[124,-64,66,1.0],[124,-64,67,1.0],[124,-64,68,1.0],[124,-64,69,1.0],[124,-64,70,1.0],[124,-64,71,1.0],[124,-64,72,1.0],[124,-64,73,1.0],[124,-64,74,1.0],[124,-64,75,1.0],[124,-64,76,1.0],[124,-64,77,1.0],[124,-64,78,1.0],[124,-64,79,1.0],[124,-63,64,1.0],[124,-63,65,1.0],[124,-63,66,1.0],[124,-63,67,1.0],[124,-63,68,1.0],[124,-63,69,1.0],[124,-63,70,1.0],[124,-63,71,1.0],[124,-63,72,1.0],[124,-63,73,1.0],[124,-63,74,1.0],[124,-63,75,1.0],[124,-63,76,1.0],[124,-63,77,1.0],[124,-63,78,1.0],[124,-63,79,1.0],[124,-62,64,1.0],[124,-62,65,1.0],[124,-62,66,1.0],[124,-62,67,1.0],[124,-62,68,1.0],[124,-62,69,1.0],[124,-62,70,1.0],[124,-62,71,1.0],[124,-62,72,1.0],[124,-62,73,1.0],[124,-62,74,1.0],[124,-62,75,1.0],[124,-62,76,1.0],[124,-62,77,1.0],[124,-62,78,1.0],[124,-62,79,1.0],[124,-61,64,1.0],[124,-61,65,1.0],[124,-61,66,1.0],[124,-61,67,1.0],[124,-61,68,1.0],[124,-61,69,1.0],[124,-61,70,1.0],[124,-61,71,1.0],[124,-61,72,1.0],[124,-61,73,1.0],[124,-61,74,1.0],[124,-61,75,1.0],[124,-61,76,1.0],[124,-61,77,1.0],[124,-61,78,1.0],[124,-61,79,1.0],[124,-60,64,1.0],[124,-60,65,1.0],[124,-60,66,1.0],[124,-60,67,1.0],[124,-60,68,1.0],[124,-60,69,1.0],[124,-60,70,1.0],[124,-60,71,1.0],[124,-60,72,1.0],[124,-60,73,1.0],[124,-60,74,1.0],[124,-60,75,1.0],[124,-60,76,1.0],[124,-60,77,1.0],[124,-60,78,1.0],[124,-60,79,1.0],[124,-59,64,1.0],[124,-59,65,1.0],[124,-59,66,1.0],[124,-59,67,1.0],[124,-59,68,1.0],[124,-59,69,1.0],[124,-59,70,1.0],[124,-59,71,1.0],[124,-59,72,1.0],[124,-59,73,1.0],[124,-59,74,1.0],[124,-59,75,1.0],[124,-59,76,1.0],[124,-59,77,1.0],[124,-59,78,1.0],[124,-59,79,1.0],[124,-58,64,1.0],[124,-58,65,1.0],[124,-58,66,1.0],[124,-58,67,1.0],[124,-58,68,1.0],[124,-58,69,1.0],[124,-58,70,1.0],[124,-58,71,1.0],[124,-58,72,1.0],[124,-58,73,1.0],[124,-58,74,1.0],[124,-58,75,1.0],[124,-58,76,1.0],[124,-58,77,1.0],[124,-58,78,1.0],[124,-58,79,1.0],[124,-57,64,1.0],[124,-57,65,1.0],[124,-57,66,1.0],[124,-57,67,1.0],[124,-57,68,1.0],[124,-57,69,1.0],[124,-57,70,1.0],[124,-57,71,1.0],[124,-57,72,1.0],[124,-57,73,1.0],[124,-57,74,1.0],[124,-57,75,1.0],[124,-57,76,1.0],[124,-57,77,1.0],[124,-57,78,1.0],[124,-57,79,1.0],[124,-56,64,1.0],[124,-56,65,1.0],[124,-56,66,1.0],[124,-56,67,1.0],[124,-56,68,1.0],[124,-56,69,1.0],[124,-56,70,1.0],[124,-56,71,1.0],[124,-56,72,1.0],[124,-56,73,1.0],[124,-56,74,1.0],[124,-56,75,1.0],[124,-56,76,1.0],[124,-56,77,1.0],[124,-56,78,1.0],[124,-56,79,1.0],[124,-55,64,1.0],[124,-55,65,1.0],[124,-55,66,1.0],[124,-55,67,1.0],[124,-55,68,1.0],[124,-55,69,1.0],[124,-55,70,1.0],[124,-55,71,1.0],[124,-55,72,1.0],[124,-55,73,1.0],[124,-55,74,1.0],[124,-55,75,1.0],[124,-55,76,1.0],[124,-55,77,1.0],[124,-55,78,1.0],[124,-55,79,1.0],[124,-54,64,1.0],[124,-54,65,1.0],[124,-54,66,1.0],[124,-54,67,1.0],[124,-54,68,1.0],[124,-54,69,1.0],[124,-54,70,1.0],[124,-54,71,1.0],[124,-54,72,1.0],[124,-54,73,1.0],[124,-54,74,1.0],[124,-54,75,1.0],[124,-54,76,1.0],[124,-54,77,1.0],[124,-54,78,1.0],[124,-54,79,1.0],[124,-53,64,1.0],[124,-53,65,1.0],[124,-53,66,1.0],[124,-53,67,1.0],[124,-53,68,1.0],[124,-53,69,1.0],[124,-53,70,1.0],[124,-53,71,1.0],[124,-53,72,1.0],[124,-53,73,1.0],[124,-53,74,1.0],[124,-53,75,1.0],[124,-53,76,1.0],[124,-53,77,1.0],[124,-53,78,1.0],[124,-53,79,1.0],[124,-52,64,1.0],[124,-52,65,1.0],[124,-52,66,1.0],[124,-52,67,1.0],[124,-52,68,1.0],[124,-52,69,1.0],[124,-52,70,1.0],[124,-52,71,1.0],[124,-52,72,1.0],[124,-52,73,1.0],[124,-52,74,1.0],[124,-52,75,1.0],[124,-52,76,1.0],[124,-52,77,1.0],[124,-52,78,1.0],[124,-52,79,1.0],[124,-51,64,1.0],[124,-51,65,1.0],[124,-51,66,1.0],[124,-51,67,1.0],[124,-51,68,1.0],[124,-51,69,1.0],[124,-51,70,1.0],[124,-51,71,1.0],[124,-51,72,1.0],[124,-51,73,1.0],[124,-51,74,1.0],[124,-51,75,1.0],[124,-51,76,1.0],[124,-51,77,1.0],[124,-51,78,1.0],[124,-51,79,1.0],[124,-50,64,1.0],[124,-50,65,1.0],[124,-50,66,1.0],[124,-50,67,1.0],[124,-50,68,1.0],[124,-50,69,1.0],[124,-50,70,1.0],[124,-50,71,1.0],[124,-50,72,1.0],[124,-50,73,1.0],[124,-50,74,1.0],[124,-50,75,1.0],[124,-50,76,1.0],[124,-50,77,1.0],[124,-50,78,1.0],[124,-50,79,1.0],[124,-49,64,1.0],[124,-49,65,1.0],[124,-49,66,1.0],[124,-49,67,1.0],[124,-49,68,1.0],[124,-49,69,1.0],[124,-49,70,1.0],[124,-49,71,1.0],[124,-49,72,1.0],[124,-49,73,1.0],[124,-49,74,1.0],[124,-49,75,1.0],[124,-49,76,1.0],[124,-49,77,1.0],[124,-49,78,1.0],[124,-49,79,1.0],[124,-48,64,1.0],[124,-48,65,1.0],[124,-48,66,1.0],[124,-48,67,1.0],[124,-48,68,1.0],[124,-48,69,1.0],[124,-48,70,1.0],[124,-48,71,1.0],[124,-48,72,1.0],[124,-48,73,1.0],[124,-48,74,1.0],[124,-48,75,1.0],[124,-48,76,1.0],[124,-48,77,1.0],[124,-48,78,1.0],[124,-48,79,1.0],[124,-47,64,1.0],[124,-47,65,1.0],[124,-47,66,1.0],[124,-47,67,1.0],[124,-47,68,1.0],[124,-47,69,1.0],[124,-47,70,1.0],[124,-47,71,1.0],[124,-47,72,1.0],[124,-47,73,1.0],[124,-47,74,1.0],[124,-47,75,1.0],[124,-47,76,1.0],[124,-47,77,1.0],[124,-47,78,1.0],[124,-47,79,1.0],[124,-46,64,1.0],[124,-46,65,1.0],[124,-46,66,1.0],[124,-46,67,1.0],[124,-46,68,1.0],[124,-46,69,1.0],[124,-46,70,1.0],[124,-46,71,1.0],[124,-46,72,1.0],[124,-46,73,1.0],[124,-46,74,1.0],[124,-46,75,1.0],[124,-46,76,1.0],[124,-46,77,1.0],[124,-46,78,1.0],[124,-46,79,1.0],[124,-45,64,1.0],[124,-45,65,1.0],[124,-45,66,1.0],[124,-45,67,1.0],[124,-45,68,1.0],[124,-45,69,1.0],[124,-45,70,1.0],[124,-45,71,1.0],[124,-45,72,1.0],[124,-45,73,1.0],[124,-45,74,1.0],[124,-45,75,1.0],[124,-45,76,1.0],[124,-45,77,1.0],[124,-45,78,1.0],[124,-45,79,1.0],[124,-44,64,1.0],[124,-44,65,1.0],[124,-44,66,1.0],[124,-44,67,1.0],[124,-44,68,1.0],[124,-44,69,1.0],[124,-44,70,1.0],[124,-44,71,1.0],[124,-44,72,1.0],[124,-44,73,1.0],[124,-44,74,1.0],[124,-44,75,1.0],[124,-44,76,1.0],[124,-44,77,1.0],[124,-44,78,1.0],[124,-44,79,1.0],[124,-43,64,1.0],[124,-43,65,1.0],[124,-43,66,1.0],[124,-43,67,1.0],[124,-43,68,1.0],[124,-43,69,1.0],[124,-43,70,1.0],[124,-43,71,1.0],[124,-43,72,1.0],[124,-43,73,1.0],[124,-43,74,1.0],[124,-43,75,1.0],[124,-43,76,1.0],[124,-43,77,1.0],[124,-43,78,1.0],[124,-43,79,1.0],[124,-42,64,1.0],[124,-42,65,1.0],[124,-42,66,1.0],[124,-42,67,1.0],[124,-42,68,1.0],[124,-42,69,1.0],[124,-42,70,1.0],[124,-42,71,1.0],[124,-42,72,1.0],[124,-42,73,1.0],[124,-42,74,1.0],[124,-42,75,1.0],[124,-42,76,1.0],[124,-42,77,1.0],[124,-42,78,1.0],[124,-42,79,1.0],[124,-41,64,1.0],[124,-41,65,1.0],[124,-41,66,1.0],[124,-41,67,1.0],[124,-41,68,1.0],[124,-41,69,1.0],[124,-41,70,1.0],[124,-41,71,1.0],[124,-41,72,1.0],[124,-41,73,1.0],[124,-41,74,1.0],[124,-41,75,1.0],[124,-41,76,1.0],[124,-41,77,1.0],[124,-41,78,1.0],[124,-41,79,1.0],[124,-40,64,1.0],[124,-40,65,1.0],[124,-40,66,1.0],[124,-40,67,1.0],[124,-40,68,1.0],[124,-40,69,1.0],[124,-40,70,1.0],[124,-40,71,1.0],[124,-40,72,1.0],[124,-40,73,1.0],[124,-40,74,1.0],[124,-40,75,1.0],[124,-40,76,1.0],[124,-40,77,1.0],[124,-40,78,1.0],[124,-40,79,1.0],[124,-39,64,1.0],[124,-39,65,1.0],[124,-39,66,1.0],[124,-39,67,1.0],[124,-39,68,1.0],[124,-39,69,1.0],[124,-39,70,1.0],[124,-39,71,1.0],[124,-39,72,1.0],[124,-39,73,1.0],[124,-39,74,1.0],[124,-39,75,1.0],[124,-39,76,1.0],[124,-39,77,1.0],[124,-39,78,1.0],[124,-39,79,1.0],[124,-38,64,1.0],[124,-38,65,1.0],[124,-38,66,1.0],[124,-38,67,1.0],[124,-38,68,1.0],[124,-38,69,1.0],[124,-38,70,1.0],[124,-38,71,1.0],[124,-38,72,1.0],[124,-38,73,1.0],[124,-38,74,1.0],[124,-38,75,1.0],[124,-38,76,1.0],[124,-38,77,1.0],[124,-38,78,1.0],[124,-38,79,1.0],[124,-37,64,1.0],[124,-37,65,1.0],[124,-37,66,1.0],[124,-37,67,1.0],[124,-37,68,1.0],[124,-37,69,1.0],[124,-37,70,1.0],[124,-37,71,1.0],[124,-37,72,1.0],[124,-37,73,1.0],[124,-37,74,1.0],[124,-37,75,1.0],[124,-37,76,1.0],[124,-37,77,1.0],[124,-37,78,1.0],[124,-37,79,1.0],[124,-36,64,1.0],[124,-36,65,1.0],[124,-36,66,1.0],[124,-36,67,1.0],[124,-36,68,1.0],[124,-36,69,1.0],[124,-36,70,1.0],[124,-36,71,1.0],[124,-36,72,1.0],[124,-36,73,1.0],[124,-36,74,1.0],[124,-36,75,1.0],[124,-36,76,1.0],[124,-36,77,1.0],[124,-36,78,1.0],[124,-36,79,1.0],[124,-35,64,1.0],[124,-35,65,1.0],[124,-35,66,1.0],[124,-35,67,1.0],[124,-35,68,1.0],[124,-35,69,1.0],[124,-35,70,1.0],[124,-35,71,1.0],[124,-35,72,1.0],[124,-35,73,1.0],[124,-35,74,1.0],[124,-35,75,1.0],[124,-35,76,1.0],[124,-35,77,1.0],[124,-35,78,1.0],[124,-35,79,1.0],[124,-34,64,1.0],[124,-34,65,1.0],[124,-34,66,1.0],[124,-34,67,1.0],[124,-34,68,1.0],[124,-34,69,1.0],[124,-34,70,1.0],[124,-34,71,1.0],[124,-34,72,1.0],[124,-34,73,1.0],[124,-34,74,1.0],[124,-34,75,1.0],[124,-34,76,1.0],[124,-34,77,1.0],[124,-34,78,1.0],[124,-34,79,1.0],[124,-33,64,1.0],[124,-33,65,1.0],[124,-33,66,1.0],[124,-33,67,1.0],[124,-33,68,1.0],[124,-33,69,1.0],[124,-33,70,1.0],[124,-33,71,1.0],[124,-33,72,1.0],[124,-33,73,1.0],[124,-33,74,1.0],[124,-33,75,1.0],[124,-33,76,1.0],[124,-33,77,1.0],[124,-33,78,1.0],[124,-33,79,1.0],[124,-32,64,1.0],[124,-32,65,1.0],[124,-32,66,1.0],[124,-32,67,1.0],[124,-32,68,1.0],[124,-32,69,1.0],[124,-32,70,1.0],[124,-32,71,1.0],[124,-32,72,1.0],[124,-32,73,1.0],[124,-32,74,1.0],[124,-32,75,1.0],[124,-32,76,1.0],[124,-32,77,1.0],[124,-32,78,1.0],[124,-32,79,1.0],[124,-31,64,1.0],[124,-31,65,1.0],[124,-31,66,1.0],[124,-31,67,1.0],[124,-31,68,1.0],[124,-31,69,1.0],[124,-31,70,1.0],[124,-31,71,1.0],[124,-31,72,1.0],[124,-31,73,1.0],[124,-31,74,1.0],[124,-31,75,1.0],[124,-31,76,1.0],[124,-31,77,1.0],[124,-31,78,1.0],[124,-31,79,1.0],[124,-30,64,1.0],[124,-30,65,1.0],[124,-30,66,1.0],[124,-30,67,1.0],[124,-30,68,1.0],[124,-30,69,1.0],[124,-30,70,1.0],[124,-30,71,1.0],[124,-30,72,1.0],[124,-30,73,1.0],[124,-30,74,1.0],[124,-30,75,1.0],[124,-30,76,1.0],[124,-30,77,1.0],[124,-30,78,1.0],[124,-30,79,1.0],[124,-29,64,1.0],[124,-29,65,1.0],[124,-29,66,1.0],[124,-29,67,1.0],[124,-29,68,1.0],[124,-29,69,1.0],[124,-29,70,1.0],[124,-29,71,1.0],[124,-29,72,1.0],[124,-29,73,1.0],[124,-29,74,1.0],[124,-29,75,1.0],[124,-29,76,1.0],[124,-29,77,1.0],[124,-29,78,1.0],[124,-29,79,1.0],[124,-28,64,1.0],[124,-28,65,1.0],[124,-28,66,1.0],[124,-28,67,1.0],[124,-28,68,1.0],[124,-28,69,1.0],[124,-28,70,1.0],[124,-28,71,1.0],[124,-28,72,1.0],[124,-28,73,1.0],[124,-28,74,1.0],[124,-28,75,1.0],[124,-28,76,1.0],[124,-28,77,1.0],[124,-28,78,1.0],[124,-28,79,1.0],[124,-27,64,1.0],[124,-27,65,1.0],[124,-27,66,1.0],[124,-27,67,1.0],[124,-27,68,1.0],[124,-27,69,1.0],[124,-27,70,1.0],[124,-27,71,1.0],[124,-27,72,1.0],[124,-27,73,1.0],[124,-27,74,1.0],[124,-27,75,1.0],[124,-27,76,1.0],[124,-27,77,1.0],[124,-27,78,1.0],[124,-27,79,1.0],[124,-26,64,1.0],[124,-26,65,1.0],[124,-26,66,1.0],[124,-26,67,1.0],[124,-26,68,1.0],[124,-26,69,1.0],[124,-26,70,1.0],[124,-26,71,1.0],[124,-26,72,1.0],[124,-26,73,1.0],[124,-26,74,1.0],[124,-26,75,1.0],[124,-26,76,1.0],[124,-26,77,1.0],[124,-26,78,1.0],[124,-26,79,1.0],[124,-25,64,1.0],[124,-25,65,1.0],[124,-25,66,1.0],[124,-25,67,1.0],[124,-25,68,1.0],[124,-25,69,1.0],[124,-25,70,1.0],[124,-25,71,1.0],[124,-25,72,1.0],[124,-25,73,1.0],[124,-25,74,1.0],[124,-25,75,1.0],[124,-25,76,1.0],[124,-25,77,1.0],[124,-25,78,1.0],[124,-25,79,1.0],[124,-24,64,1.0],[124,-24,65,1.0],[124,-24,66,1.0],[124,-24,67,1.0],[124,-24,68,1.0],[124,-24,69,1.0],[124,-24,70,1.0],[124,-24,71,1.0],[124,-24,72,1.0],[124,-24,73,1.0],[124,-24,74,1.0],[124,-24,75,1.0],[124,-24,76,1.0],[124,-24,77,1.0],[124,-24,78,1.0],[124,-24,79,1.0],[124,-23,64,1.0],[124,-23,65,1.0],[124,-23,66,1.0],[124,-23,67,1.0],[124,-23,68,1.0],[124,-23,69,1.0],[124,-23,70,1.0],[124,-23,71,1.0],[124,-23,72,1.0],[124,-23,73,1.0],[124,-23,74,1.0],[124,-23,75,1.0],[124,-23,76,1.0],[124,-23,77,1.0],[124,-23,78,1.0],[124,-23,79,1.0],[124,-22,64,1.0],[124,-22,65,1.0],[124,-22,66,1.0],[124,-22,67,1.0],[124,-22,68,1.0],[124,-22,69,1.0],[124,-22,70,1.0],[124,-22,71,1.0],[124,-22,72,1.0],[124,-22,73,1.0],[124,-22,74,1.0],[124,-22,75,1.0],[124,-22,76,1.0],[124,-22,77,1.0],[124,-22,78,1.0],[124,-22,79,1.0],[124,-21,64,1.0],[124,-21,65,1.0],[124,-21,66,1.0],[124,-21,67,1.0],[124,-21,68,1.0],[124,-21,69,1.0],[124,-21,70,1.0],[124,-21,71,1.0],[124,-21,72,1.0],[124,-21,73,1.0],[124,-21,74,1.0],[124,-21,75,1.0],[124,-21,76,1.0],[124,-21,77,1.0],[124,-21,78,1.0],[124,-21,79,1.0],[124,-20,64,1.0],[124,-20,65,1.0],[124,-20,66,1.0],[124,-20,67,1.0],[124,-20,68,1.0],[124,-20,69,1.0],[124,-20,70,1.0],[124,-20,71,1.0],[124,-20,72,1.0],[124,-20,73,1.0],[124,-20,74,1.0],[124,-20,75,1.0],[124,-20,76,1.0],[124,-20,77,1.0],[124,-20,78,1.0],[124,-20,79,1.0],[124,-19,64,1.0],[124,-19,65,1.0],[124,-19,66,1.0],[124,-19,67,1.0],[124,-19,68,1.0],[124,-19,69,1.0],[124,-19,70,1.0],[124,-19,71,1.0],[124,-19,72,1.0],[124,-19,73,1.0],[124,-19,74,1.0],[124,-19,75,1.0],[124,-19,76,1.0],[124,-19,77,1.0],[124,-19,78,1.0],[124,-19,79,1.0],[124,-18,64,1.0],[124,-18,65,1.0],[124,-18,66,1.0],[124,-18,67,1.0],[124,-18,68,1.0],[124,-18,69,1.0],[124,-18,70,1.0],[124,-18,71,1.0],[124,-18,72,1.0],[124,-18,73,1.0],[124,-18,74,1.0],[124,-18,75,1.0],[124,-18,76,1.0],[124,-18,77,1.0],[124,-18,78,1.0],[124,-18,79,1.0],[124,-17,64,1.0],[124,-17,65,1.0],[124,-17,66,1.0],[124,-17,67,1.0],[124,-17,68,1.0],[124,-17,69,1.0],[124,-17,70,1.0],[124,-17,71,1.0],[124,-17,72,1.0],[124,-17,73,1.0],[124,-17,74,1.0],[124,-17,75,1.0],[124,-17,76,1.0],[124,-17,77,1.0],[124,-17,78,1.0],[124,-17,79,1.0],[124,-16,64,0.9438634832692154],[124,-16,65,1.0],[124,-16,66,1.0],[124,-16,67,1.0],[124,-16,68,1.0],[124,-16,69,1.0],[124,-16,70,1.0],[124,-16,71,1.0],[124,-16,72,1.0],[124,-16,73,1.0],[124,-16,74,1.0],[124,-16,75,1.0],[124,-16,76,1.0],[124,-16,77,1.0],[124,-16,78,1.0],[124,-16,79,1.0],[124,-15,64,0.6267812250583665],[124,-15,65,0.7133192349331918],[124,-15,66,0.8052256050946897],[124,-15,67,0.9022765995567523],[124,-15,68,1.0],[124,-15,69,1.0],[124,-15,70,1.0],[124,-15,71,1.0],[124,-15,72,1.0],[124,-15,73,1.0],[124,-15,74,1.0],[124,-15,75,1.0],[124,-15,76,1.0],[124,-15,77,1.0],[124,-15,78,1.0],[124,-15,79,1.0],[124,-14,64,0.3900928830185439],[124,-14,65,0.4536460837665811],[124,-14,66,0.5220653571616021],[124,-14,67,0.5951988567214782],[124,-14,68,0.6728666859832827],[124,-14,69,0.7548643599436585],[124,-14,70,0.8409662727063645],[124,-14,71,0.9309291539230524],[124,-14,72,1.0],[124,-14,73,1.0],[124,-14,74,1.0],[124,-14,75,1.0],[124,-14,76,1.0],[124,-14,77,1.0],[124,-14,78,1.0],[124,-14,79,1.0],[124,-13,64,0.2220442342312003],[124,-13,65,0.26615379881322143],[124,-13,66,0.31454572143288106],[124,-13,67,0.36714004462754496],[124,-13,68,0.423826429308354],[124,-13,69,0.4844674636918542],[124,-13,70,0.5489019844627419],[124,-13,71,0.6169483930211697],[124,-13,72,0.6884079502878829],[124,-13,73,0.76306803427398],[124,-13,74,0.840705345453721],[124,-13,75,0.9210890459574038],[124,-13,76,1.0],[124,-13,77,1.0],[124,-13,78,1.0],[124,-13,79,1.0],[124,-12,64,0.11088096013453298],[124,-12,65,0.13908819320273755],[124,-12,66,0.17091264255408056],[124,-12,67,0.20634623925461584],[124,-12,68,0.2453482999581865],[124,-12,69,0.2878486858553902],[124,-12,70,0.3337509799002379],[124,-12,71,0.3829356654349114],[124,-12,72,0.4352632899186263],[124,-12,73,0.49057759816565705],[124,-12,74,0.5487086202967587],[124,-12,75,0.6094757005424923],[124,-12,76,0.6726904540716439],[124,-12,77,0.738159640142497],[124,-12,78,0.8056879411254476],[124,-12,79,0.8750806382842554],[124,-11,64,0.04484864643504068],[124,-11,65,0.0606949839524833],[124,-11,66,0.07941196867980373],[124,-11,67,0.10106341971459218],[124,-11,68,0.1256784078161201],[124,-11,69,0.1532542668977374],[124,-11,70,0.18375962986617628],[124,-11,71,0.21713747219469712],[124,-11,72,0.2533081471690394],[124,-11,73,0.2921723974097193],[124,-11,74,0.33361432804027535],[124,-11,75,0.37750432776167997],[124,-11,76,0.42370192508420684],[124,-11,77,0.47205856804955354],[124,-11,78,0.5224203169728712],[124,-11,79,0.5746304410185117],[124,-10,64,0.012192783023018575],[124,-10,65,0.019219791879348185],[124,-10,66,0.028289451381846256],[124,-10,67,0.039537468156112775],[124,-10,68,0.05306276542364011],[124,-10,69,0.06893034956375527],[124,-10,70,0.08717420711432028],[124,-10,71,0.10780021586422407],[124,-10,72,0.13078905420979664],[124,-10,73,0.15609909357741583],[124,-10,74,0.183669259446798],[124,-10,75,0.21342184735715555],[124,-10,76,0.24526528122580563],[124,-10,77,0.27909680234664785],[124,-10,78,0.3148050785795318],[124,-10,79,0.35227272447106245],[124,-9,64,0.002326127462345791],[124,-9,65,0.005344201646094948],[124,-9,66,0.008274660022461633],[124,-9,67,0.011116178645783445],[124,-9,68,0.015747287885355545],[124,-9,69,0.023122978781090802],[124,-9,70,0.03224088620271799],[124,-9,71,0.04317020043477848],[124,-9,72,0.05595244426425089],[124,-9,73,0.07060424891952051],[124,-9,74,0.08712010558696136],[124,-9,75,0.10547507900951657],[124,-9,76,0.12562747057535867],[124,-9,77,0.14752141929825355],[124,-9,78,0.17108943018220796],[124,-9,79,0.19625482063791433],[124,-8,64,-8.112937390770811E-6],[124,-8,65,0.0022256579778908783],[124,-8,66,0.005117361594088647],[124,-8,67,0.007923177655767999],[124,-8,68,0.01064182418502145],[124,-8,69,0.013272001339708094],[124,-8,70,0.015812403644500685],[124,-8,71,0.018261731810246783],[124,-8,72,0.020618704141893582],[124,-8,73,0.023934326257567463],[124,-8,74,0.03221345772728341],[124,-8,75,0.041910742222103704],[124,-8,76,0.053035340663106424],[124,-8,77,0.06557939425044408],[124,-8,78,0.0795204747312344],[124,-8,79,0.09482395986225046],[124,-7,64,-0.0030626454909065226],[124,-7,65,-9.299748283352477E-4],[124,-7,66,0.0019210516320517582],[124,-7,67,0.004689232673906474],[124,-7,68,0.007373352398461923],[124,-7,69,0.009972169141587696],[124,-7,70,0.012484427825065439],[124,-7,71,0.014908871898407124],[124,-7,72,0.017244254871465754],[124,-7,73,0.01948935143754066],[124,-7,74,0.021642968187117695],[124,-7,75,0.02370395391239015],[124,-7,76,0.025671209502253933],[124,-7,77,0.027543697428035994],[124,-7,78,0.029320450819760382],[124,-7,79,0.036227270709319394],[124,-6,64,-0.007004068217363726],[124,-6,65,-0.004116904909880759],[124,-6,66,-0.001308456796341978],[124,-6,67,0.0014201743895602206],[124,-6,68,0.004067840576237651],[124,-6,69,0.006633360215876884],[124,-6,70,0.009115530739461059],[124,-6,71,0.011513140604957145],[124,-6,72,0.013824980938919852],[124,-6,73,0.016049856771214975],[124,-6,74,0.01818659786300019],[124,-6,75,0.020234069128109954],[124,-6,76,0.022191180647540658],[124,-6,77,0.024056897277290677],[124,-6,78,0.02583024784936236],[124,-6,79,0.027510333966188953],[124,-5,64,-0.010169072276649718],[124,-5,65,-0.007329298260104769],[124,-5,66,-0.004565305237296521],[124,-5,67,-0.0018781178471588417],[124,-5,68,7.311853381299707E-4],[124,-5,69,0.0032614847589122545],[124,-5,70,0.005711632410183777],[124,-5,71,0.008080463979909566],[124,-5,72,0.010366810583773936],[124,-5,73,0.012569510096064912],[124,-5,74,0.01468741807683524],[124,-5,75,0.016719418295483977],[124,-5,76,0.018664432850454722],[124,-5,77,0.02052143188530659],[124,-5,78,0.02228944290096252],[124,-5,79,0.023967559664402983],[124,-4,64,-0.013351844645763042],[124,-4,65,-0.010561286954911597],[124,-4,66,-0.007843598133326794],[124,-4,67,-0.005199724357161831],[124,-4,68,-0.002630673105432496],[124,-4,69,-1.3750014730518068E-4],[124,-4,70,0.0022787030703899577],[124,-4,71,0.004616821635235607],[124,-4,72,0.006875728981146856],[124,-4,73,0.009054298299831169],[124,-4,74,0.011151413551932554],[124,-4,75,0.013165980078003924],[124,-4,76,0.015096934809002378],[124,-4,77,0.016943256076566417],[124,-4,78,0.0187039730228755],[124,-4,79,0.02037817461036389],[124,-3,64,-0.01654652480701395],[124,-3,65,-0.01380697633453156],[124,-3,66,-0.011137410058085155],[124,-3,67,-0.0085386924127005],[124,-3,68,-0.006011758271472031],[124,-3,69,-0.0035575978831435123],[124,-3,70,-0.0011772442061157365],[124,-3,71,0.0011282393609253136],[124,-3,72,0.0033577708520199784],[124,-3,73,0.005510261210279567],[124,-3,74,0.007584625367708188],[124,-3,75,0.009579792928649772],[124,-3,76,0.011494718456548009],[124,-3,77,0.013328391364285187],[124,-3,78,0.015079845407895226],[124,-3,79,0.016748167783926203],[124,-2,64,-0.019747234671201847],[124,-2,65,-0.017060451140569734],[124,-2,66,-0.014440791903183578],[124,-2,67,-0.011889042466195057],[124,-2,68,-0.009406063667374252],[124,-2,69,-0.006992778580278372],[124,-2,70,-0.004650159811671772],[124,-2,71,-0.0023792171913903093],[124,-2,72,-1.8098585438920678E-4],[124,-2,73,0.0019434852847187017],[124,-2,74,0.003993144664776932],[124,-2,75,0.005966948819001762],[124,-2,76,0.007863872723387767],[124,-2,77,0.009682919752867482],[124,-2,78,0.01142313124502324],[124,-2,79,0.013083595671623142],[124,-1,64,-0.022948083615663188],[124,-1,65,-0.020315780608355385],[124,-1,66,-0.017747776017046038],[124,-1,67,-0.015244773327611198],[124,-1,68,-0.012807557998650146],[124,-1,69,-0.010436984351569478],[124,-1,70,-0.008133962848365602],[124,-1,71,-0.005899447757295541],[124,-1,72,-0.0037344252061806416],[124,-1,73,-0.001639901623644538],[124,-1,74,3.831074318529498E-4],[124,-1,75,0.0023335880553389463],[124,-1,76,0.0042105383906940325],[124,-1,77,0.006012978638324583],[124,-1,78,0.007739960674942231],[124,-1,79,0.009390577285721909],[124,0,64,-0.026143172480654432],[124,0,65,-0.02356702251456784],[124,0,66,-0.021052380295765352],[124,0,67,-0.018599866290355246],[124,0,68,-0.016210189321522288],[124,0,69,-0.013884133461851765],[124,0,70,-0.011622545308428024],[124,0,71,-0.009426321640894686],[124,0,72,-0.007296397462222617],[124,0,73,-0.005233734422486903],[124,0,74,-0.0032393096255137546],[124,0,75,-0.0013141048182456344],[124,0,76,5.409040368623483E-4],[124,0,77,0.0023247568066790264],[124,0,78,0.004036518849263253],[124,0,79,0.005675290293036907],[124,1,64,-0.02932659652408911],[124,1,65,-0.026808226180155312],[124,1,66,-0.024348611225982565],[124,1,67,-0.021948288205710507],[124,1,68,-0.0196078881403531],[124,1,69,-0.01732812343965523],[124,1,70,-0.015109775191432917],[124,1,71,-0.012953680828585327],[124,1,72,-0.010860722173520701],[124,1,73,-0.008831813860304356],[124,1,74,-0.00686789213438245],[124,1,75,-0.004969904029733206],[124,1,76,-0.003138796923760359],[124,1,77,-0.0013755084696609882],[124,1,78,3.1904309352760035E-4],[124,1,79,0.001943968253477174],[124,2,64,-0.008851383362017417],[124,2,65,-0.014517453950612822],[124,2,66,-0.02199365817130081],[124,2,67,-0.025283993505795695],[124,2,68,-0.02299456944989975],[124,2,69,-0.020762833129843346],[124,2,70,-0.01858949855829014],[124,2,71,-0.016475342035284522],[124,2,72,-0.014421190212488208],[124,2,73,-0.012427908529488593],[124,2,74,-0.010496390022035715],[124,2,75,-0.00862754450205501],[124,2,76,-0.006822288109752175],[124,2,77,-0.0050815332375446845],[124,2,78,-0.003406178826021268],[124,2,79,-0.0017971010316551114],[124,3,64,-5.511068832140038E-4],[124,3,65,-0.0016884462278114925],[124,3,66,-0.003745986654326661],[124,3,67,-0.006932210274972422],[124,3,68,-0.011418081027165357],[124,3,69,-0.017339668383643484],[124,3,70,-0.022055540522035476],[124,3,71,-0.01998509768311696],[124,3,72,-0.017971564730126788],[124,3,73,-0.016015755792549803],[124,3,74,-0.014118518401769066],[124,3,75,-0.012280722688964463],[124,3,76,-0.010503250949101615],[124,3,77,-0.008786987570745593],[124,3,78,-0.007132809331904293],[124,3,79,-0.0055415760616216655],[124,4,64,7.885865646795227E-5],[124,4,65,1.9439885017433728E-7],[124,4,66,-2.8193084105470577E-5],[124,4,67,-2.8492346306554204E-4],[124,4,68,-0.0010093041993847211],[124,4,69,-0.002403817565379865],[124,4,70,-0.004636648677168494],[124,4,71,-0.007844239104263621],[124,4,72,-0.012133851071848972],[124,4,73,-0.01758612782712467],[124,4,74,-0.017727957376858422],[124,4,75,-0.015923096323908655],[124,4,76,-0.01417532436330856],[124,4,77,-0.012485495179655068],[124,4,78,-0.01085446056111436],[124,4,79,-0.009283061068466616],[124,5,64,0.00472070487461528],[124,5,65,0.00223078608295196],[124,5,66,8.421670793891484E-4],[124,5,67,2.0609335965386457E-4],[124,5,68,1.4818226305289683E-5],[124,5,69,-7.500645489456501E-7],[124,5,70,-7.344832724603429E-5],[124,5,71,-4.022904682792204E-4],[124,5,72,-0.0011549167536460344],[124,5,73,-0.0024700460909180036],[124,5,74,-0.004459917713528639],[124,5,75,-0.007212709367087692],[124,5,76,-0.010794919900107532],[124,5,77,-0.015253705048579825],[124,5,78,-0.0145646927870546],[124,5,79,-0.013015104339482636],[124,6,64,0.025056527302756308],[124,6,65,0.01668555046630534],[124,6,66,0.010547441440857034],[124,6,67,0.006223313606690314],[124,6,68,0.0033368853118855937],[124,6,69,0.001552258663197418],[124,6,70,5.716449653340801E-4],[124,6,71,1.3305171924386263E-4],[124,6,72,7.945699282793833E-6],[124,6,73,-1.0938577557788298E-6],[124,6,74,-6.271850044439554E-5],[124,6,75,-3.1913746846835503E-4],[124,6,76,-8.88416236245678E-4],[124,6,77,-0.0018667355152048035],[124,6,78,-0.003330600453056845],[124,6,79,-0.005338990757549009],[124,7,64,0.0727683253531148],[124,7,65,0.055046612642149495],[124,7,66,0.04076988062933077],[124,7,67,0.02944911329093361],[124,7,68,0.02063939829589712],[124,7,69,0.013937834918039717],[124,7,70,0.008981382393058575],[124,7,71,0.005444663368947518],[124,7,72,0.0030377367372900295],[124,7,73,0.0015038536802319572],[124,7,74,6.172102237135145E-4],[124,7,75,1.8070895429439475E-4],[124,7,76,2.3741841907436933E-5],[124,7,77,5.316819684202184E-9],[124,7,78,-1.4642118469327797E-5],[124,7,79,-1.2427039645428845E-4],[124,8,64,0.15953800228907636],[124,8,65,0.1289960011220714],[124,8,66,0.10319163826157013],[124,8,67,0.08156577098454793],[124,8,68,0.06360476054984551],[124,8,69,0.04883850670893182],[124,8,70,0.03683841643509049],[124,8,71,0.027215321258123468],[124,8,72,0.01961735725939888],[124,8,73,0.013727821363631465],[124,8,74,0.009263017057721182],[124,8,75,0.0059701020721756835],[124,8,76,0.0036249498895265637],[124,8,77,0.0020300361974903173],[124,8,78,0.0010123605864751526],[124,8,79,4.214129105698898E-4],[124,9,64,0.29704736519936314],[124,9,65,0.25021564780663996],[124,9,66,0.20949477090917615],[124,9,67,0.17425546778258724],[124,9,68,0.14391527753833888],[124,9,69,0.11793670371028253],[124,9,70,0.09582530081051575],[124,9,71,0.0771277029805461],[124,9,72,0.06142960855974387],[124,9,73,0.0483537340088155],[124,9,74,0.037557750158840664],[124,9,75,0.02873221319933942],[124,9,76,0.02159850219166111],[124,9,77,0.015906774195327853],[124,9,78,0.011433947325610181],[124,9,79,0.00798172123444237],[124,10,64,0.49697812497594307],[124,10,65,0.43038738795977916],[124,10,66,0.37136123806944893],[124,10,67,0.3192002872703583],[124,10,68,0.27325315678297746],[124,10,69,0.23291475722239274],[124,10,70,0.19762449043534921],[124,10,71,0.16686438690006908],[124,10,72,0.14015719227777948],[124,10,73,0.11706441635478469],[124,10,74,0.09718435718631606],[124,10,75,0.08015011273331066],[124,10,76,0.06562759170010517],[124,10,77,0.05331353463096632],[124,10,78,0.04293355560221768],[124,10,79,0.03424021407481441],[124,11,64,0.7710118962955325],[124,11,65,0.6811929601867507],[124,11,66,0.600472902139871],[124,11,67,0.5280822154944265],[124,11,68,0.46330050782990073],[124,11,69,0.405454900135565],[124,11,70,0.3539183413832272],[124,11,71,0.30810785210792097],[124,11,72,0.26748271035219906],[124,11,73,0.2315425930137321],[124,11,74,0.19982568524860386],[124,11,75,0.17190677009889266],[124,11,76,0.14739530997402212],[124,11,77,0.12593353101450647],[124,11,78,0.10719452069313103],[124,11,79,0.0908803482909431],[124,12,64,1.0],[124,12,65,1.0],[124,12,66,0.908511528396329],[124,12,67,0.8125831409373564],[124,12,68,0.725739342221071],[124,12,69,0.6472392668979496],[124,12,70,0.5763891108498377],[124,12,71,0.5125404783837408],[124,12,72,0.4550886649785982],[124,12,73,0.40347088842535345],[124,12,74,0.35716448085435265],[124,12,75,0.3156850536958363],[124,12,76,0.27858464712432646],[124,12,77,0.24544987498662982],[124,12,78,0.21590007558660318],[124,12,79,0.18958547803633516],[124,13,64,1.0],[124,13,65,1.0],[124,13,66,1.0],[124,13,67,1.0],[124,13,68,1.0],[124,13,69,0.9699498934870361],[124,13,70,0.876718957121007],[124,13,71,0.7918445461602818],[124,13,72,0.7146574585708144],[124,13,73,0.644531826814846],[124,13,74,0.5808833898670792],[124,13,75,0.5231677308502177],[124,13,76,0.4708784917617801],[124,13,77,0.42354557626343786],[124,13,78,0.380733350923908],[124,13,79,0.3420388546971311],[124,14,64,1.0],[124,14,65,1.0],[124,14,66,1.0],[124,14,67,1.0],[124,14,68,1.0],[124,14,69,1.0],[124,14,70,1.0],[124,14,71,1.0],[124,14,72,1.0],[124,14,73,0.9664078321546847],[124,14,74,0.8826649574636274],[124,14,75,0.8060374677695955],[124,14,76,0.7359596309488748],[124,14,77,0.6719035425850756],[124,14,78,0.6133773749447289],[124,14,79,0.5599236268342792],[124,15,64,1.0],[124,15,65,1.0],[124,15,66,1.0],[124,15,67,1.0],[124,15,68,1.0],[124,15,69,1.0],[124,15,70,1.0],[124,15,71,1.0],[124,15,72,1.0],[124,15,73,1.0],[124,15,74,1.0],[124,15,75,1.0],[124,15,76,1.0],[124,15,77,1.0],[124,15,78,0.9255150734361577],[124,15,79,0.8549228401293343],[124,16,64,1.0],[124,16,65,1.0],[124,16,66,1.0],[124,16,67,1.0],[124,16,68,1.0],[124,16,69,1.0],[124,16,70,1.0],[124,16,71,1.0],[124,16,72,1.0],[124,16,73,1.0],[124,16,74,1.0],[124,16,75,1.0],[124,16,76,1.0],[124,16,77,1.0],[124,16,78,1.0],[124,16,79,1.0],[124,17,64,1.0],[124,17,65,1.0],[124,17,66,1.0],[124,17,67,1.0],[124,17,68,1.0],[124,17,69,1.0],[124,17,70,1.0],[124,17,71,1.0],[124,17,72,1.0],[124,17,73,1.0],[124,17,74,1.0],[124,17,75,1.0],[124,17,76,1.0],[124,17,77,1.0],[124,17,78,1.0],[124,17,79,1.0],[124,18,64,1.0],[124,18,65,1.0],[124,18,66,1.0],[124,18,67,1.0],[124,18,68,1.0],[124,18,69,1.0],[124,18,70,1.0],[124,18,71,1.0],[124,18,72,1.0],[124,18,73,1.0],[124,18,74,1.0],[124,18,75,1.0],[124,18,76,1.0],[124,18,77,1.0],[124,18,78,1.0],[124,18,79,1.0],[124,19,64,1.0],[124,19,65,1.0],[124,19,66,1.0],[124,19,67,1.0],[124,19,68,1.0],[124,19,69,1.0],[124,19,70,1.0],[124,19,71,1.0],[124,19,72,1.0],[124,19,73,1.0],[124,19,74,1.0],[124,19,75,1.0],[124,19,76,1.0],[124,19,77,1.0],[124,19,78,1.0],[124,19,79,1.0],[124,20,64,1.0],[124,20,65,1.0],[124,20,66,1.0],[124,20,67,1.0],[124,20,68,1.0],[124,20,69,1.0],[124,20,70,1.0],[124,20,71,1.0],[124,20,72,1.0],[124,20,73,1.0],[124,20,74,1.0],[124,20,75,1.0],[124,20,76,1.0],[124,20,77,1.0],[124,20,78,1.0],[124,20,79,1.0],[124,21,64,1.0],[124,21,65,1.0],[124,21,66,1.0],[124,21,67,1.0],[124,21,68,1.0],[124,21,69,1.0],[124,21,70,1.0],[124,21,71,1.0],[124,21,72,1.0],[124,21,73,1.0],[124,21,74,1.0],[124,21,75,1.0],[124,21,76,1.0],[124,21,77,1.0],[124,21,78,1.0],[124,21,79,1.0],[124,22,64,1.0],[124,22,65,1.0],[124,22,66,1.0],[124,22,67,1.0],[124,22,68,1.0],[124,22,69,1.0],[124,22,70,1.0],[124,22,71,1.0],[124,22,72,1.0],[124,22,73,1.0],[124,22,74,1.0],[124,22,75,1.0],[124,22,76,1.0],[124,22,77,1.0],[124,22,78,1.0],[124,22,79,1.0],[124,23,64,1.0],[124,23,65,1.0],[124,23,66,1.0],[124,23,67,1.0],[124,23,68,1.0],[124,23,69,1.0],[124,23,70,1.0],[124,23,71,1.0],[124,23,72,1.0],[124,23,73,1.0],[124,23,74,1.0],[124,23,75,1.0],[124,23,76,1.0],[124,23,77,1.0],[124,23,78,1.0],[124,23,79,1.0],[124,24,64,1.0],[124,24,65,1.0],[124,24,66,1.0],[124,24,67,1.0],[124,24,68,1.0],[124,24,69,1.0],[124,24,70,1.0],[124,24,71,1.0],[124,24,72,1.0],[124,24,73,1.0],[124,24,74,1.0],[124,24,75,1.0],[124,24,76,1.0],[124,24,77,1.0],[124,24,78,1.0],[124,24,79,1.0],[124,25,64,1.0],[124,25,65,1.0],[124,25,66,1.0],[124,25,67,1.0],[124,25,68,1.0],[124,25,69,1.0],[124,25,70,1.0],[124,25,71,1.0],[124,25,72,1.0],[124,25,73,1.0],[124,25,74,1.0],[124,25,75,1.0],[124,25,76,1.0],[124,25,77,1.0],[124,25,78,1.0],[124,25,79,1.0],[124,26,64,1.0],[124,26,65,1.0],[124,26,66,1.0],[124,26,67,1.0],[124,26,68,1.0],[124,26,69,1.0],[124,26,70,1.0],[124,26,71,1.0],[124,26,72,1.0],[124,26,73,1.0],[124,26,74,1.0],[124,26,75,1.0],[124,26,76,1.0],[124,26,77,1.0],[124,26,78,1.0],[124,26,79,1.0],[124,27,64,1.0],[124,27,65,1.0],[124,27,66,1.0],[124,27,67,1.0],[124,27,68,1.0],[124,27,69,1.0],[124,27,70,1.0],[124,27,71,1.0],[124,27,72,1.0],[124,27,73,1.0],[124,27,74,1.0],[124,27,75,1.0],[124,27,76,1.0],[124,27,77,1.0],[124,27,78,1.0],[124,27,79,1.0],[124,28,64,1.0],[124,28,65,1.0],[124,28,66,1.0],[124,28,67,1.0],[124,28,68,1.0],[124,28,69,1.0],[124,28,70,1.0],[124,28,71,1.0],[124,28,72,1.0],[124,28,73,1.0],[124,28,74,1.0],[124,28,75,1.0],[124,28,76,1.0],[124,28,77,1.0],[124,28,78,1.0],[124,28,79,1.0],[124,29,64,1.0],[124,29,65,1.0],[124,29,66,1.0],[124,29,67,1.0],[124,29,68,1.0],[124,29,69,1.0],[124,29,70,1.0],[124,29,71,1.0],[124,29,72,1.0],[124,29,73,1.0],[124,29,74,1.0],[124,29,75,1.0],[124,29,76,1.0],[124,29,77,1.0],[124,29,78,1.0],[124,29,79,1.0],[124,30,64,1.0],[124,30,65,1.0],[124,30,66,1.0],[124,30,67,1.0],[124,30,68,1.0],[124,30,69,1.0],[124,30,70,1.0],[124,30,71,1.0],[124,30,72,1.0],[124,30,73,1.0],[124,30,74,1.0],[124,30,75,1.0],[124,30,76,1.0],[124,30,77,1.0],[124,30,78,1.0],[124,30,79,1.0],[124,31,64,1.0],[124,31,65,1.0],[124,31,66,1.0],[124,31,67,1.0],[124,31,68,1.0],[124,31,69,1.0],[124,31,70,1.0],[124,31,71,1.0],[124,31,72,1.0],[124,31,73,1.0],[124,31,74,1.0],[124,31,75,1.0],[124,31,76,1.0],[124,31,77,1.0],[124,31,78,1.0],[124,31,79,1.0],[124,32,64,1.0],[124,32,65,1.0],[124,32,66,1.0],[124,32,67,1.0],[124,32,68,1.0],[124,32,69,1.0],[124,32,70,1.0],[124,32,71,1.0],[124,32,72,1.0],[124,32,73,1.0],[124,32,74,1.0],[124,32,75,1.0],[124,32,76,1.0],[124,32,77,1.0],[124,32,78,1.0],[124,32,79,1.0],[124,33,64,1.0],[124,33,65,1.0],[124,33,66,1.0],[124,33,67,1.0],[124,33,68,1.0],[124,33,69,1.0],[124,33,70,1.0],[124,33,71,1.0],[124,33,72,1.0],[124,33,73,1.0],[124,33,74,1.0],[124,33,75,1.0],[124,33,76,1.0],[124,33,77,1.0],[124,33,78,1.0],[124,33,79,1.0],[124,34,64,1.0],[124,34,65,1.0],[124,34,66,1.0],[124,34,67,1.0],[124,34,68,1.0],[124,34,69,1.0],[124,34,70,1.0],[124,34,71,1.0],[124,34,72,1.0],[124,34,73,1.0],[124,34,74,1.0],[124,34,75,1.0],[124,34,76,1.0],[124,34,77,1.0],[124,34,78,1.0],[124,34,79,1.0],[124,35,64,1.0],[124,35,65,1.0],[124,35,66,1.0],[124,35,67,1.0],[124,35,68,1.0],[124,35,69,1.0],[124,35,70,1.0],[124,35,71,1.0],[124,35,72,1.0],[124,35,73,1.0],[124,35,74,1.0],[124,35,75,1.0],[124,35,76,1.0],[124,35,77,1.0],[124,35,78,1.0],[124,35,79,1.0],[124,36,64,1.0],[124,36,65,1.0],[124,36,66,1.0],[124,36,67,1.0],[124,36,68,1.0],[124,36,69,1.0],[124,36,70,1.0],[124,36,71,1.0],[124,36,72,1.0],[124,36,73,1.0],[124,36,74,1.0],[124,36,75,1.0],[124,36,76,1.0],[124,36,77,1.0],[124,36,78,1.0],[124,36,79,1.0],[124,37,64,1.0],[124,37,65,1.0],[124,37,66,1.0],[124,37,67,1.0],[124,37,68,1.0],[124,37,69,1.0],[124,37,70,1.0],[124,37,71,1.0],[124,37,72,1.0],[124,37,73,1.0],[124,37,74,1.0],[124,37,75,1.0],[124,37,76,1.0],[124,37,77,1.0],[124,37,78,1.0],[124,37,79,1.0],[124,38,64,1.0],[124,38,65,1.0],[124,38,66,1.0],[124,38,67,1.0],[124,38,68,1.0],[124,38,69,1.0],[124,38,70,1.0],[124,38,71,1.0],[124,38,72,1.0],[124,38,73,1.0],[124,38,74,1.0],[124,38,75,1.0],[124,38,76,1.0],[124,38,77,1.0],[124,38,78,1.0],[124,38,79,1.0],[124,39,64,1.0],[124,39,65,1.0],[124,39,66,1.0],[124,39,67,1.0],[124,39,68,1.0],[124,39,69,1.0],[124,39,70,1.0],[124,39,71,1.0],[124,39,72,1.0],[124,39,73,1.0],[124,39,74,1.0],[124,39,75,1.0],[124,39,76,1.0],[124,39,77,1.0],[124,39,78,1.0],[124,39,79,1.0],[124,40,64,1.0],[124,40,65,1.0],[124,40,66,1.0],[124,40,67,1.0],[124,40,68,1.0],[124,40,69,1.0],[124,40,70,1.0],[124,40,71,1.0],[124,40,72,1.0],[124,40,73,1.0],[124,40,74,1.0],[124,40,75,1.0],[124,40,76,1.0],[124,40,77,1.0],[124,40,78,1.0],[124,40,79,1.0],[124,41,64,1.0],[124,41,65,1.0],[124,41,66,1.0],[124,41,67,1.0],[124,41,68,1.0],[124,41,69,1.0],[124,41,70,1.0],[124,41,71,1.0],[124,41,72,1.0],[124,41,73,1.0],[124,41,74,1.0],[124,41,75,1.0],[124,41,76,1.0],[124,41,77,1.0],[124,41,78,1.0],[124,41,79,1.0],[124,42,64,1.0],[124,42,65,1.0],[124,42,66,1.0],[124,42,67,1.0],[124,42,68,1.0],[124,42,69,1.0],[124,42,70,1.0],[124,42,71,1.0],[124,42,72,1.0],[124,42,73,1.0],[124,42,74,1.0],[124,42,75,1.0],[124,42,76,1.0],[124,42,77,1.0],[124,42,78,1.0],[124,42,79,1.0],[124,43,64,1.0],[124,43,65,1.0],[124,43,66,1.0],[124,43,67,1.0],[124,43,68,1.0],[124,43,69,1.0],[124,43,70,1.0],[124,43,71,1.0],[124,43,72,1.0],[124,43,73,1.0],[124,43,74,1.0],[124,43,75,1.0],[124,43,76,1.0],[124,43,77,1.0],[124,43,78,1.0],[124,43,79,1.0],[124,44,64,1.0],[124,44,65,1.0],[124,44,66,1.0],[124,44,67,1.0],[124,44,68,1.0],[124,44,69,1.0],[124,44,70,1.0],[124,44,71,1.0],[124,44,72,1.0],[124,44,73,1.0],[124,44,74,1.0],[124,44,75,1.0],[124,44,76,1.0],[124,44,77,1.0],[124,44,78,1.0],[124,44,79,1.0],[124,45,64,1.0],[124,45,65,1.0],[124,45,66,1.0],[124,45,67,1.0],[124,45,68,1.0],[124,45,69,1.0],[124,45,70,1.0],[124,45,71,1.0],[124,45,72,1.0],[124,45,73,1.0],[124,45,74,1.0],[124,45,75,1.0],[124,45,76,1.0],[124,45,77,1.0],[124,45,78,1.0],[124,45,79,1.0],[124,46,64,1.0],[124,46,65,1.0],[124,46,66,1.0],[124,46,67,1.0],[124,46,68,1.0],[124,46,69,1.0],[124,46,70,1.0],[124,46,71,1.0],[124,46,72,1.0],[124,46,73,1.0],[124,46,74,1.0],[124,46,75,1.0],[124,46,76,1.0],[124,46,77,1.0],[124,46,78,1.0],[124,46,79,1.0],[124,47,64,1.0],[124,47,65,1.0],[124,47,66,1.0],[124,47,67,1.0],[124,47,68,1.0],[124,47,69,1.0],[124,47,70,1.0],[124,47,71,1.0],[124,47,72,1.0],[124,47,73,1.0],[124,47,74,1.0],[124,47,75,1.0],[124,47,76,1.0],[124,47,77,1.0],[124,47,78,1.0],[124,47,79,1.0],[124,48,64,1.0],[124,48,65,1.0],[124,48,66,1.0],[124,48,67,1.0],[124,48,68,1.0],[124,48,69,1.0],[124,48,70,1.0],[124,48,71,1.0],[124,48,72,1.0],[124,48,73,1.0],[124,48,74,1.0],[124,48,75,1.0],[124,48,76,1.0],[124,48,77,1.0],[124,48,78,1.0],[124,48,79,1.0],[124,49,64,1.0],[124,49,65,1.0],[124,49,66,1.0],[124,49,67,1.0],[124,49,68,1.0],[124,49,69,1.0],[124,49,70,1.0],[124,49,71,1.0],[124,49,72,1.0],[124,49,73,1.0],[124,49,74,1.0],[124,49,75,1.0],[124,49,76,1.0],[124,49,77,1.0],[124,49,78,1.0],[124,49,79,1.0],[124,50,64,1.0],[124,50,65,1.0],[124,50,66,1.0],[124,50,67,1.0],[124,50,68,1.0],[124,50,69,1.0],[124,50,70,1.0],[124,50,71,1.0],[124,50,72,1.0],[124,50,73,1.0],[124,50,74,1.0],[124,50,75,1.0],[124,50,76,1.0],[124,50,77,1.0],[124,50,78,1.0],[124,50,79,1.0],[124,51,64,1.0],[124,51,65,1.0],[124,51,66,1.0],[124,51,67,1.0],[124,51,68,1.0],[124,51,69,1.0],[124,51,70,1.0],[124,51,71,1.0],[124,51,72,1.0],[124,51,73,1.0],[124,51,74,1.0],[124,51,75,1.0],[124,51,76,1.0],[124,51,77,1.0],[124,51,78,1.0],[124,51,79,1.0],[124,52,64,1.0],[124,52,65,1.0],[124,52,66,1.0],[124,52,67,1.0],[124,52,68,1.0],[124,52,69,1.0],[124,52,70,1.0],[124,52,71,1.0],[124,52,72,1.0],[124,52,73,1.0],[124,52,74,1.0],[124,52,75,1.0],[124,52,76,1.0],[124,52,77,1.0],[124,52,78,1.0],[124,52,79,1.0],[124,53,64,1.0],[124,53,65,1.0],[124,53,66,1.0],[124,53,67,1.0],[124,53,68,1.0],[124,53,69,1.0],[124,53,70,1.0],[124,53,71,1.0],[124,53,72,1.0],[124,53,73,1.0],[124,53,74,1.0],[124,53,75,1.0],[124,53,76,1.0],[124,53,77,1.0],[124,53,78,1.0],[124,53,79,1.0],[124,54,64,1.0],[124,54,65,1.0],[124,54,66,1.0],[124,54,67,1.0],[124,54,68,1.0],[124,54,69,1.0],[124,54,70,1.0],[124,54,71,1.0],[124,54,72,1.0],[124,54,73,1.0],[124,54,74,1.0],[124,54,75,1.0],[124,54,76,1.0],[124,54,77,1.0],[124,54,78,1.0],[124,54,79,1.0],[124,55,64,1.0],[124,55,65,1.0],[124,55,66,1.0],[124,55,67,1.0],[124,55,68,1.0],[124,55,69,1.0],[124,55,70,1.0],[124,55,71,1.0],[124,55,72,1.0],[124,55,73,1.0],[124,55,74,1.0],[124,55,75,1.0],[124,55,76,1.0],[124,55,77,1.0],[124,55,78,1.0],[124,55,79,1.0],[124,56,64,1.0],[124,56,65,1.0],[124,56,66,1.0],[124,56,67,1.0],[124,56,68,1.0],[124,56,69,1.0],[124,56,70,1.0],[124,56,71,1.0],[124,56,72,1.0],[124,56,73,1.0],[124,56,74,1.0],[124,56,75,1.0],[124,56,76,1.0],[124,56,77,1.0],[124,56,78,1.0],[124,56,79,1.0],[124,57,64,1.0],[124,57,65,1.0],[124,57,66,1.0],[124,57,67,1.0],[124,57,68,1.0],[124,57,69,1.0],[124,57,70,1.0],[124,57,71,1.0],[124,57,72,1.0],[124,57,73,1.0],[124,57,74,1.0],[124,57,75,1.0],[124,57,76,1.0],[124,57,77,1.0],[124,57,78,1.0],[124,57,79,1.0],[124,58,64,1.0],[124,58,65,1.0],[124,58,66,1.0],[124,58,67,1.0],[124,58,68,1.0],[124,58,69,1.0],[124,58,70,1.0],[124,58,71,1.0],[124,58,72,1.0],[124,58,73,1.0],[124,58,74,1.0],[124,58,75,1.0],[124,58,76,1.0],[124,58,77,1.0],[124,58,78,1.0],[124,58,79,1.0],[124,59,64,1.0],[124,59,65,1.0],[124,59,66,1.0],[124,59,67,1.0],[124,59,68,1.0],[124,59,69,1.0],[124,59,70,1.0],[124,59,71,1.0],[124,59,72,1.0],[124,59,73,1.0],[124,59,74,1.0],[124,59,75,1.0],[124,59,76,1.0],[124,59,77,1.0],[124,59,78,1.0],[124,59,79,1.0],[124,60,64,1.0],[124,60,65,1.0],[124,60,66,1.0],[124,60,67,1.0],[124,60,68,1.0],[124,60,69,1.0],[124,60,70,1.0],[124,60,71,1.0],[124,60,72,1.0],[124,60,73,1.0],[124,60,74,1.0],[124,60,75,1.0],[124,60,76,1.0],[124,60,77,1.0],[124,60,78,1.0],[124,60,79,1.0],[124,61,64,1.0],[124,61,65,1.0],[124,61,66,1.0],[124,61,67,1.0],[124,61,68,1.0],[124,61,69,1.0],[124,61,70,1.0],[124,61,71,1.0],[124,61,72,1.0],[124,61,73,1.0],[124,61,74,1.0],[124,61,75,1.0],[124,61,76,1.0],[124,61,77,1.0],[124,61,78,1.0],[124,61,79,1.0],[124,62,64,1.0],[124,62,65,1.0],[124,62,66,1.0],[124,62,67,1.0],[124,62,68,1.0],[124,62,69,1.0],[124,62,70,1.0],[124,62,71,1.0],[124,62,72,1.0],[124,62,73,1.0],[124,62,74,1.0],[124,62,75,1.0],[124,62,76,1.0],[124,62,77,1.0],[124,62,78,1.0],[124,62,79,1.0],[124,63,64,1.0],[124,63,65,1.0],[124,63,66,1.0],[124,63,67,1.0],[124,63,68,1.0],[124,63,69,1.0],[124,63,70,1.0],[124,63,71,1.0],[124,63,72,1.0],[124,63,73,1.0],[124,63,74,1.0],[124,63,75,1.0],[124,63,76,1.0],[124,63,77,1.0],[124,63,78,1.0],[124,63,79,1.0],[124,64,64,1.0],[124,64,65,1.0],[124,64,66,1.0],[124,64,67,1.0],[124,64,68,1.0],[124,64,69,1.0],[124,64,70,1.0],[124,64,71,1.0],[124,64,72,1.0],[124,64,73,1.0],[124,64,74,1.0],[124,64,75,1.0],[124,64,76,1.0],[124,64,77,1.0],[124,64,78,1.0],[124,64,79,1.0],[124,65,64,1.0],[124,65,65,1.0],[124,65,66,1.0],[124,65,67,1.0],[124,65,68,1.0],[124,65,69,1.0],[124,65,70,1.0],[124,65,71,1.0],[124,65,72,1.0],[124,65,73,1.0],[124,65,74,1.0],[124,65,75,1.0],[124,65,76,1.0],[124,65,77,1.0],[124,65,78,1.0],[124,65,79,1.0],[124,66,64,1.0],[124,66,65,1.0],[124,66,66,1.0],[124,66,67,1.0],[124,66,68,1.0],[124,66,69,1.0],[124,66,70,1.0],[124,66,71,1.0],[124,66,72,1.0],[124,66,73,1.0],[124,66,74,1.0],[124,66,75,1.0],[124,66,76,1.0],[124,66,77,1.0],[124,66,78,1.0],[124,66,79,1.0],[124,67,64,1.0],[124,67,65,1.0],[124,67,66,1.0],[124,67,67,1.0],[124,67,68,1.0],[124,67,69,1.0],[124,67,70,1.0],[124,67,71,1.0],[124,67,72,1.0],[124,67,73,1.0],[124,67,74,1.0],[124,67,75,1.0],[124,67,76,1.0],[124,67,77,1.0],[124,67,78,1.0],[124,67,79,1.0],[124,68,64,1.0],[124,68,65,1.0],[124,68,66,1.0],[124,68,67,1.0],[124,68,68,1.0],[124,68,69,1.0],[124,68,70,1.0],[124,68,71,1.0],[124,68,72,1.0],[124,68,73,1.0],[124,68,74,1.0],[124,68,75,1.0],[124,68,76,1.0],[124,68,77,1.0],[124,68,78,1.0],[124,68,79,1.0],[124,69,64,1.0],[124,69,65,1.0],[124,69,66,1.0],[124,69,67,1.0],[124,69,68,1.0],[124,69,69,1.0],[124,69,70,1.0],[124,69,71,1.0],[124,69,72,1.0],[124,69,73,1.0],[124,69,74,1.0],[124,69,75,1.0],[124,69,76,1.0],[124,69,77,1.0],[124,69,78,1.0],[124,69,79,1.0],[124,70,64,1.0],[124,70,65,1.0],[124,70,66,1.0],[124,70,67,1.0],[124,70,68,1.0],[124,70,69,1.0],[124,70,70,1.0],[124,70,71,1.0],[124,70,72,1.0],[124,70,73,1.0],[124,70,74,1.0],[124,70,75,1.0],[124,70,76,1.0],[124,70,77,1.0],[124,70,78,1.0],[124,70,79,1.0],[124,71,64,1.0],[124,71,65,1.0],[124,71,66,1.0],[124,71,67,1.0],[124,71,68,1.0],[124,71,69,1.0],[124,71,70,1.0],[124,71,71,1.0],[124,71,72,1.0],[124,71,73,1.0],[124,71,74,1.0],[124,71,75,1.0],[124,71,76,1.0],[124,71,77,1.0],[124,71,78,1.0],[124,71,79,1.0],[124,72,64,1.0],[124,72,65,1.0],[124,72,66,1.0],[124,72,67,1.0],[124,72,68,1.0],[124,72,69,1.0],[124,72,70,1.0],[124,72,71,1.0],[124,72,72,1.0],[124,72,73,1.0],[124,72,74,1.0],[124,72,75,1.0],[124,72,76,1.0],[124,72,77,1.0],[124,72,78,1.0],[124,72,79,1.0],[124,73,64,1.0],[124,73,65,1.0],[124,73,66,1.0],[124,73,67,1.0],[124,73,68,1.0],[124,73,69,1.0],[124,73,70,1.0],[124,73,71,1.0],[124,73,72,1.0],[124,73,73,1.0],[124,73,74,1.0],[124,73,75,1.0],[124,73,76,1.0],[124,73,77,1.0],[124,73,78,1.0],[124,73,79,1.0],[124,74,64,1.0],[124,74,65,1.0],[124,74,66,1.0],[124,74,67,1.0],[124,74,68,1.0],[124,74,69,1.0],[124,74,70,1.0],[124,74,71,1.0],[124,74,72,1.0],[124,74,73,1.0],[124,74,74,1.0],[124,74,75,1.0],[124,74,76,1.0],[124,74,77,1.0],[124,74,78,1.0],[124,74,79,1.0],[124,75,64,1.0],[124,75,65,1.0],[124,75,66,1.0],[124,75,67,1.0],[124,75,68,1.0],[124,75,69,1.0],[124,75,70,1.0],[124,75,71,1.0],[124,75,72,1.0],[124,75,73,1.0],[124,75,74,1.0],[124,75,75,1.0],[124,75,76,1.0],[124,75,77,1.0],[124,75,78,1.0],[124,75,79,1.0],[124,76,64,1.0],[124,76,65,1.0],[124,76,66,1.0],[124,76,67,1.0],[124,76,68,1.0],[124,76,69,1.0],[124,76,70,1.0],[124,76,71,1.0],[124,76,72,1.0],[124,76,73,1.0],[124,76,74,1.0],[124,76,75,1.0],[124,76,76,1.0],[124,76,77,1.0],[124,76,78,1.0],[124,76,79,1.0],[124,77,64,1.0],[124,77,65,1.0],[124,77,66,1.0],[124,77,67,1.0],[124,77,68,1.0],[124,77,69,1.0],[124,77,70,1.0],[124,77,71,1.0],[124,77,72,1.0],[124,77,73,1.0],[124,77,74,1.0],[124,77,75,1.0],[124,77,76,1.0],[124,77,77,1.0],[124,77,78,1.0],[124,77,79,1.0],[124,78,64,1.0],[124,78,65,1.0],[124,78,66,1.0],[124,78,67,1.0],[124,78,68,1.0],[124,78,69,1.0],[124,78,70,1.0],[124,78,71,1.0],[124,78,72,1.0],[124,78,73,1.0],[124,78,74,1.0],[124,78,75,1.0],[124,78,76,1.0],[124,78,77,1.0],[124,78,78,1.0],[124,78,79,1.0],[124,79,64,1.0],[124,79,65,1.0],[124,79,66,1.0],[124,79,67,1.0],[124,79,68,1.0],[124,79,69,1.0],[124,79,70,1.0],[124,79,71,1.0],[124,79,72,1.0],[124,79,73,1.0],[124,79,74,1.0],[124,79,75,1.0],[124,79,76,1.0],[124,79,77,1.0],[124,79,78,1.0],[124,79,79,1.0],[124,80,64,1.0],[124,80,65,1.0],[124,80,66,1.0],[124,80,67,1.0],[124,80,68,1.0],[124,80,69,1.0],[124,80,70,1.0],[124,80,71,1.0],[124,80,72,1.0],[124,80,73,1.0],[124,80,74,1.0],[124,80,75,1.0],[124,80,76,1.0],[124,80,77,1.0],[124,80,78,1.0],[124,80,79,1.0],[124,81,64,1.0],[124,81,65,1.0],[124,81,66,1.0],[124,81,67,1.0],[124,81,68,1.0],[124,81,69,1.0],[124,81,70,1.0],[124,81,71,1.0],[124,81,72,1.0],[124,81,73,1.0],[124,81,74,1.0],[124,81,75,1.0],[124,81,76,1.0],[124,81,77,1.0],[124,81,78,1.0],[124,81,79,1.0],[124,82,64,1.0],[124,82,65,1.0],[124,82,66,1.0],[124,82,67,1.0],[124,82,68,1.0],[124,82,69,1.0],[124,82,70,1.0],[124,82,71,1.0],[124,82,72,1.0],[124,82,73,1.0],[124,82,74,1.0],[124,82,75,1.0],[124,82,76,1.0],[124,82,77,1.0],[124,82,78,1.0],[124,82,79,1.0],[124,83,64,1.0],[124,83,65,1.0],[124,83,66,1.0],[124,83,67,1.0],[124,83,68,1.0],[124,83,69,1.0],[124,83,70,1.0],[124,83,71,1.0],[124,83,72,1.0],[124,83,73,1.0],[124,83,74,1.0],[124,83,75,1.0],[124,83,76,1.0],[124,83,77,1.0],[124,83,78,1.0],[124,83,79,1.0],[124,84,64,1.0],[124,84,65,1.0],[124,84,66,1.0],[124,84,67,1.0],[124,84,68,1.0],[124,84,69,1.0],[124,84,70,1.0],[124,84,71,1.0],[124,84,72,1.0],[124,84,73,1.0],[124,84,74,1.0],[124,84,75,1.0],[124,84,76,1.0],[124,84,77,1.0],[124,84,78,1.0],[124,84,79,1.0],[124,85,64,1.0],[124,85,65,1.0],[124,85,66,1.0],[124,85,67,1.0],[124,85,68,1.0],[124,85,69,1.0],[124,85,70,1.0],[124,85,71,1.0],[124,85,72,1.0],[124,85,73,1.0],[124,85,74,1.0],[124,85,75,1.0],[124,85,76,1.0],[124,85,77,1.0],[124,85,78,1.0],[124,85,79,1.0],[124,86,64,1.0],[124,86,65,1.0],[124,86,66,1.0],[124,86,67,1.0],[124,86,68,1.0],[124,86,69,1.0],[124,86,70,1.0],[124,86,71,1.0],[124,86,72,1.0],[124,86,73,1.0],[124,86,74,1.0],[124,86,75,1.0],[124,86,76,1.0],[124,86,77,1.0],[124,86,78,1.0],[124,86,79,1.0],[124,87,64,1.0],[124,87,65,1.0],[124,87,66,1.0],[124,87,67,1.0],[124,87,68,1.0],[124,87,69,1.0],[124,87,70,1.0],[124,87,71,1.0],[124,87,72,1.0],[124,87,73,1.0],[124,87,74,1.0],[124,87,75,1.0],[124,87,76,1.0],[124,87,77,1.0],[124,87,78,1.0],[124,87,79,1.0],[124,88,64,1.0],[124,88,65,1.0],[124,88,66,1.0],[124,88,67,1.0],[124,88,68,1.0],[124,88,69,1.0],[124,88,70,1.0],[124,88,71,1.0],[124,88,72,1.0],[124,88,73,1.0],[124,88,74,1.0],[124,88,75,1.0],[124,88,76,1.0],[124,88,77,1.0],[124,88,78,1.0],[124,88,79,1.0],[124,89,64,1.0],[124,89,65,1.0],[124,89,66,1.0],[124,89,67,1.0],[124,89,68,1.0],[124,89,69,1.0],[124,89,70,1.0],[124,89,71,1.0],[124,89,72,1.0],[124,89,73,1.0],[124,89,74,1.0],[124,89,75,1.0],[124,89,76,1.0],[124,89,77,1.0],[124,89,78,1.0],[124,89,79,1.0],[124,90,64,1.0],[124,90,65,1.0],[124,90,66,1.0],[124,90,67,1.0],[124,90,68,1.0],[124,90,69,1.0],[124,90,70,1.0],[124,90,71,1.0],[124,90,72,1.0],[124,90,73,1.0],[124,90,74,1.0],[124,90,75,1.0],[124,90,76,1.0],[124,90,77,1.0],[124,90,78,1.0],[124,90,79,1.0],[124,91,64,1.0],[124,91,65,1.0],[124,91,66,1.0],[124,91,67,1.0],[124,91,68,1.0],[124,91,69,1.0],[124,91,70,1.0],[124,91,71,1.0],[124,91,72,1.0],[124,91,73,1.0],[124,91,74,1.0],[124,91,75,1.0],[124,91,76,1.0],[124,91,77,1.0],[124,91,78,1.0],[124,91,79,1.0],[124,92,64,1.0],[124,92,65,1.0],[124,92,66,1.0],[124,92,67,1.0],[124,92,68,1.0],[124,92,69,1.0],[124,92,70,1.0],[124,92,71,1.0],[124,92,72,1.0],[124,92,73,1.0],[124,92,74,1.0],[124,92,75,1.0],[124,92,76,1.0],[124,92,77,1.0],[124,92,78,1.0],[124,92,79,1.0],[124,93,64,1.0],[124,93,65,1.0],[124,93,66,1.0],[124,93,67,1.0],[124,93,68,1.0],[124,93,69,1.0],[124,93,70,1.0],[124,93,71,1.0],[124,93,72,1.0],[124,93,73,1.0],[124,93,74,1.0],[124,93,75,1.0],[124,93,76,1.0],[124,93,77,1.0],[124,93,78,1.0],[124,93,79,1.0],[124,94,64,1.0],[124,94,65,1.0],[124,94,66,1.0],[124,94,67,1.0],[124,94,68,1.0],[124,94,69,1.0],[124,94,70,1.0],[124,94,71,1.0],[124,94,72,1.0],[124,94,73,1.0],[124,94,74,1.0],[124,94,75,1.0],[124,94,76,1.0],[124,94,77,1.0],[124,94,78,1.0],[124,94,79,1.0],[124,95,64,1.0],[124,95,65,1.0],[124,95,66,1.0],[124,95,67,1.0],[124,95,68,1.0],[124,95,69,1.0],[124,95,70,1.0],[124,95,71,1.0],[124,95,72,1.0],[124,95,73,1.0],[124,95,74,1.0],[124,95,75,1.0],[124,95,76,1.0],[124,95,77,1.0],[124,95,78,1.0],[124,95,79,1.0],[124,96,64,1.0],[124,96,65,1.0],[124,96,66,1.0],[124,96,67,1.0],[124,96,68,1.0],[124,96,69,1.0],[124,96,70,1.0],[124,96,71,1.0],[124,96,72,1.0],[124,96,73,1.0],[124,96,74,1.0],[124,96,75,1.0],[124,96,76,1.0],[124,96,77,1.0],[124,96,78,1.0],[124,96,79,1.0],[124,97,64,1.0],[124,97,65,1.0],[124,97,66,1.0],[124,97,67,1.0],[124,97,68,1.0],[124,97,69,1.0],[124,97,70,1.0],[124,97,71,1.0],[124,97,72,1.0],[124,97,73,1.0],[124,97,74,1.0],[124,97,75,1.0],[124,97,76,1.0],[124,97,77,1.0],[124,97,78,1.0],[124,97,79,1.0],[124,98,64,1.0],[124,98,65,1.0],[124,98,66,1.0],[124,98,67,1.0],[124,98,68,1.0],[124,98,69,1.0],[124,98,70,1.0],[124,98,71,1.0],[124,98,72,1.0],[124,98,73,1.0],[124,98,74,1.0],[124,98,75,1.0],[124,98,76,1.0],[124,98,77,1.0],[124,98,78,1.0],[124,98,79,1.0],[124,99,64,1.0],[124,99,65,1.0],[124,99,66,1.0],[124,99,67,1.0],[124,99,68,1.0],[124,99,69,1.0],[124,99,70,1.0],[124,99,71,1.0],[124,99,72,1.0],[124,99,73,1.0],[124,99,74,1.0],[124,99,75,1.0],[124,99,76,1.0],[124,99,77,1.0],[124,99,78,1.0],[124,99,79,1.0],[124,100,64,1.0],[124,100,65,1.0],[124,100,66,1.0],[124,100,67,1.0],[124,100,68,1.0],[124,100,69,1.0],[124,100,70,1.0],[124,100,71,1.0],[124,100,72,1.0],[124,100,73,1.0],[124,100,74,1.0],[124,100,75,1.0],[124,100,76,1.0],[124,100,77,1.0],[124,100,78,1.0],[124,100,79,1.0],[124,101,64,1.0],[124,101,65,1.0],[124,101,66,1.0],[124,101,67,1.0],[124,101,68,1.0],[124,101,69,1.0],[124,101,70,1.0],[124,101,71,1.0],[124,101,72,1.0],[124,101,73,1.0],[124,101,74,1.0],[124,101,75,1.0],[124,101,76,1.0],[124,101,77,1.0],[124,101,78,1.0],[124,101,79,1.0],[124,102,64,1.0],[124,102,65,1.0],[124,102,66,1.0],[124,102,67,1.0],[124,102,68,1.0],[124,102,69,1.0],[124,102,70,1.0],[124,102,71,1.0],[124,102,72,1.0],[124,102,73,1.0],[124,102,74,1.0],[124,102,75,1.0],[124,102,76,1.0],[124,102,77,1.0],[124,102,78,1.0],[124,102,79,1.0],[124,103,64,1.0],[124,103,65,1.0],[124,103,66,1.0],[124,103,67,1.0],[124,103,68,1.0],[124,103,69,1.0],[124,103,70,1.0],[124,103,71,1.0],[124,103,72,1.0],[124,103,73,1.0],[124,103,74,1.0],[124,103,75,1.0],[124,103,76,1.0],[124,103,77,1.0],[124,103,78,1.0],[124,103,79,1.0],[124,104,64,1.0],[124,104,65,1.0],[124,104,66,1.0],[124,104,67,1.0],[124,104,68,1.0],[124,104,69,1.0],[124,104,70,1.0],[124,104,71,1.0],[124,104,72,1.0],[124,104,73,1.0],[124,104,74,1.0],[124,104,75,1.0],[124,104,76,1.0],[124,104,77,1.0],[124,104,78,1.0],[124,104,79,1.0],[124,105,64,1.0],[124,105,65,1.0],[124,105,66,1.0],[124,105,67,1.0],[124,105,68,1.0],[124,105,69,1.0],[124,105,70,1.0],[124,105,71,1.0],[124,105,72,1.0],[124,105,73,1.0],[124,105,74,1.0],[124,105,75,1.0],[124,105,76,1.0],[124,105,77,1.0],[124,105,78,1.0],[124,105,79,1.0],[124,106,64,1.0],[124,106,65,1.0],[124,106,66,1.0],[124,106,67,1.0],[124,106,68,1.0],[124,106,69,1.0],[124,106,70,1.0],[124,106,71,1.0],[124,106,72,1.0],[124,106,73,1.0],[124,106,74,1.0],[124,106,75,1.0],[124,106,76,1.0],[124,106,77,1.0],[124,106,78,1.0],[124,106,79,1.0],[124,107,64,1.0],[124,107,65,1.0],[124,107,66,1.0],[124,107,67,1.0],[124,107,68,1.0],[124,107,69,1.0],[124,107,70,1.0],[124,107,71,1.0],[124,107,72,1.0],[124,107,73,1.0],[124,107,74,1.0],[124,107,75,1.0],[124,107,76,1.0],[124,107,77,1.0],[124,107,78,1.0],[124,107,79,1.0],[124,108,64,1.0],[124,108,65,1.0],[124,108,66,1.0],[124,108,67,1.0],[124,108,68,1.0],[124,108,69,1.0],[124,108,70,1.0],[124,108,71,1.0],[124,108,72,1.0],[124,108,73,1.0],[124,108,74,1.0],[124,108,75,1.0],[124,108,76,1.0],[124,108,77,1.0],[124,108,78,1.0],[124,108,79,1.0],[124,109,64,1.0],[124,109,65,1.0],[124,109,66,1.0],[124,109,67,1.0],[124,109,68,1.0],[124,109,69,1.0],[124,109,70,1.0],[124,109,71,1.0],[124,109,72,1.0],[124,109,73,1.0],[124,109,74,1.0],[124,109,75,1.0],[124,109,76,1.0],[124,109,77,1.0],[124,109,78,1.0],[124,109,79,1.0],[124,110,64,1.0],[124,110,65,1.0],[124,110,66,1.0],[124,110,67,1.0],[124,110,68,1.0],[124,110,69,1.0],[124,110,70,1.0],[124,110,71,1.0],[124,110,72,1.0],[124,110,73,1.0],[124,110,74,1.0],[124,110,75,1.0],[124,110,76,1.0],[124,110,77,1.0],[124,110,78,1.0],[124,110,79,1.0],[124,111,64,1.0],[124,111,65,1.0],[124,111,66,1.0],[124,111,67,1.0],[124,111,68,1.0],[124,111,69,1.0],[124,111,70,1.0],[124,111,71,1.0],[124,111,72,1.0],[124,111,73,1.0],[124,111,74,1.0],[124,111,75,1.0],[124,111,76,1.0],[124,111,77,1.0],[124,111,78,1.0],[124,111,79,1.0],[124,112,64,1.0],[124,112,65,1.0],[124,112,66,1.0],[124,112,67,1.0],[124,112,68,1.0],[124,112,69,1.0],[124,112,70,1.0],[124,112,71,1.0],[124,112,72,1.0],[124,112,73,1.0],[124,112,74,1.0],[124,112,75,1.0],[124,112,76,1.0],[124,112,77,1.0],[124,112,78,1.0],[124,112,79,1.0],[124,113,64,1.0],[124,113,65,1.0],[124,113,66,1.0],[124,113,67,1.0],[124,113,68,1.0],[124,113,69,1.0],[124,113,70,1.0],[124,113,71,1.0],[124,113,72,1.0],[124,113,73,1.0],[124,113,74,1.0],[124,113,75,1.0],[124,113,76,1.0],[124,113,77,1.0],[124,113,78,1.0],[124,113,79,1.0],[124,114,64,1.0],[124,114,65,1.0],[124,114,66,1.0],[124,114,67,1.0],[124,114,68,1.0],[124,114,69,1.0],[124,114,70,1.0],[124,114,71,1.0],[124,114,72,1.0],[124,114,73,1.0],[124,114,74,1.0],[124,114,75,1.0],[124,114,76,1.0],[124,114,77,1.0],[124,114,78,1.0],[124,114,79,1.0],[124,115,64,1.0],[124,115,65,1.0],[124,115,66,1.0],[124,115,67,1.0],[124,115,68,1.0],[124,115,69,1.0],[124,115,70,1.0],[124,115,71,1.0],[124,115,72,1.0],[124,115,73,1.0],[124,115,74,1.0],[124,115,75,1.0],[124,115,76,1.0],[124,115,77,1.0],[124,115,78,1.0],[124,115,79,1.0],[124,116,64,1.0],[124,116,65,1.0],[124,116,66,1.0],[124,116,67,1.0],[124,116,68,1.0],[124,116,69,1.0],[124,116,70,1.0],[124,116,71,1.0],[124,116,72,1.0],[124,116,73,1.0],[124,116,74,1.0],[124,116,75,1.0],[124,116,76,1.0],[124,116,77,1.0],[124,116,78,1.0],[124,116,79,1.0],[124,117,64,1.0],[124,117,65,1.0],[124,117,66,1.0],[124,117,67,1.0],[124,117,68,1.0],[124,117,69,1.0],[124,117,70,1.0],[124,117,71,1.0],[124,117,72,1.0],[124,117,73,1.0],[124,117,74,1.0],[124,117,75,1.0],[124,117,76,1.0],[124,117,77,1.0],[124,117,78,1.0],[124,117,79,1.0],[124,118,64,1.0],[124,118,65,1.0],[124,118,66,1.0],[124,118,67,1.0],[124,118,68,1.0],[124,118,69,1.0],[124,118,70,1.0],[124,118,71,1.0],[124,118,72,1.0],[124,118,73,1.0],[124,118,74,1.0],[124,118,75,1.0],[124,118,76,1.0],[124,118,77,1.0],[124,118,78,1.0],[124,118,79,1.0],[124,119,64,1.0],[124,119,65,1.0],[124,119,66,1.0],[124,119,67,1.0],[124,119,68,1.0],[124,119,69,1.0],[124,119,70,1.0],[124,119,71,1.0],[124,119,72,1.0],[124,119,73,1.0],[124,119,74,1.0],[124,119,75,1.0],[124,119,76,1.0],[124,119,77,1.0],[124,119,78,1.0],[124,119,79,1.0],[124,120,64,1.0],[124,120,65,1.0],[124,120,66,1.0],[124,120,67,1.0],[124,120,68,1.0],[124,120,69,1.0],[124,120,70,1.0],[124,120,71,1.0],[124,120,72,1.0],[124,120,73,1.0],[124,120,74,1.0],[124,120,75,1.0],[124,120,76,1.0],[124,120,77,1.0],[124,120,78,1.0],[124,120,79,1.0],[124,121,64,1.0],[124,121,65,1.0],[124,121,66,1.0],[124,121,67,1.0],[124,121,68,1.0],[124,121,69,1.0],[124,121,70,1.0],[124,121,71,1.0],[124,121,72,1.0],[124,121,73,1.0],[124,121,74,1.0],[124,121,75,1.0],[124,121,76,1.0],[124,121,77,1.0],[124,121,78,1.0],[124,121,79,1.0],[124,122,64,1.0],[124,122,65,1.0],[124,122,66,1.0],[124,122,67,1.0],[124,122,68,1.0],[124,122,69,1.0],[124,122,70,1.0],[124,122,71,1.0],[124,122,72,1.0],[124,122,73,1.0],[124,122,74,1.0],[124,122,75,1.0],[124,122,76,1.0],[124,122,77,1.0],[124,122,78,1.0],[124,122,79,1.0],[124,123,64,1.0],[124,123,65,1.0],[124,123,66,1.0],[124,123,67,1.0],[124,123,68,1.0],[124,123,69,1.0],[124,123,70,1.0],[124,123,71,1.0],[124,123,72,1.0],[124,123,73,1.0],[124,123,74,1.0],[124,123,75,1.0],[124,123,76,1.0],[124,123,77,1.0],[124,123,78,1.0],[124,123,79,1.0],[124,124,64,1.0],[124,124,65,1.0],[124,124,66,1.0],[124,124,67,1.0],[124,124,68,1.0],[124,124,69,1.0],[124,124,70,1.0],[124,124,71,1.0],[124,124,72,1.0],[124,124,73,1.0],[124,124,74,1.0],[124,124,75,1.0],[124,124,76,1.0],[124,124,77,1.0],[124,124,78,1.0],[124,124,79,1.0],[124,125,64,1.0],[124,125,65,1.0],[124,125,66,1.0],[124,125,67,1.0],[124,125,68,1.0],[124,125,69,1.0],[124,125,70,1.0],[124,125,71,1.0],[124,125,72,1.0],[124,125,73,1.0],[124,125,74,1.0],[124,125,75,1.0],[124,125,76,1.0],[124,125,77,1.0],[124,125,78,1.0],[124,125,79,1.0],[124,126,64,1.0],[124,126,65,1.0],[124,126,66,1.0],[124,126,67,1.0],[124,126,68,1.0],[124,126,69,1.0],[124,126,70,1.0],[124,126,71,1.0],[124,126,72,1.0],[124,126,73,1.0],[124,126,74,1.0],[124,126,75,1.0],[124,126,76,1.0],[124,126,77,1.0],[124,126,78,1.0],[124,126,79,1.0],[124,127,64,1.0],[124,127,65,1.0],[124,127,66,1.0],[124,127,67,1.0],[124,127,68,1.0],[124,127,69,1.0],[124,127,70,1.0],[124,127,71,1.0],[124,127,72,1.0],[124,127,73,1.0],[124,127,74,1.0],[124,127,75,1.0],[124,127,76,1.0],[124,127,77,1.0],[124,127,78,1.0],[124,127,79,1.0],[124,128,64,1.0],[124,128,65,1.0],[124,128,66,1.0],[124,128,67,1.0],[124,128,68,1.0],[124,128,69,1.0],[124,128,70,1.0],[124,128,71,1.0],[124,128,72,1.0],[124,128,73,1.0],[124,128,74,1.0],[124,128,75,1.0],[124,128,76,1.0],[124,128,77,1.0],[124,128,78,1.0],[124,128,79,1.0],[124,129,64,1.0],[124,129,65,1.0],[124,129,66,1.0],[124,129,67,1.0],[124,129,68,1.0],[124,129,69,1.0],[124,129,70,1.0],[124,129,71,1.0],[124,129,72,1.0],[124,129,73,1.0],[124,129,74,1.0],[124,129,75,1.0],[124,129,76,1.0],[124,129,77,1.0],[124,129,78,1.0],[124,129,79,1.0],[124,130,64,1.0],[124,130,65,1.0],[124,130,66,1.0],[124,130,67,1.0],[124,130,68,1.0],[124,130,69,1.0],[124,130,70,1.0],[124,130,71,1.0],[124,130,72,1.0],[124,130,73,1.0],[124,130,74,1.0],[124,130,75,1.0],[124,130,76,1.0],[124,130,77,1.0],[124,130,78,1.0],[124,130,79,1.0],[124,131,64,1.0],[124,131,65,1.0],[124,131,66,1.0],[124,131,67,1.0],[124,131,68,1.0],[124,131,69,1.0],[124,131,70,1.0],[124,131,71,1.0],[124,131,72,1.0],[124,131,73,1.0],[124,131,74,1.0],[124,131,75,1.0],[124,131,76,1.0],[124,131,77,1.0],[124,131,78,1.0],[124,131,79,1.0],[124,132,64,1.0],[124,132,65,1.0],[124,132,66,1.0],[124,132,67,1.0],[124,132,68,1.0],[124,132,69,1.0],[124,132,70,1.0],[124,132,71,1.0],[124,132,72,1.0],[124,132,73,1.0],[124,132,74,1.0],[124,132,75,1.0],[124,132,76,1.0],[124,132,77,1.0],[124,132,78,1.0],[124,132,79,1.0],[124,133,64,1.0],[124,133,65,1.0],[124,133,66,1.0],[124,133,67,1.0],[124,133,68,1.0],[124,133,69,1.0],[124,133,70,1.0],[124,133,71,1.0],[124,133,72,1.0],[124,133,73,1.0],[124,133,74,1.0],[124,133,75,1.0],[124,133,76,1.0],[124,133,77,1.0],[124,133,78,1.0],[124,133,79,1.0],[124,134,64,1.0],[124,134,65,1.0],[124,134,66,1.0],[124,134,67,1.0],[124,134,68,1.0],[124,134,69,1.0],[124,134,70,1.0],[124,134,71,1.0],[124,134,72,1.0],[124,134,73,1.0],[124,134,74,1.0],[124,134,75,1.0],[124,134,76,1.0],[124,134,77,1.0],[124,134,78,1.0],[124,134,79,1.0],[124,135,64,1.0],[124,135,65,1.0],[124,135,66,1.0],[124,135,67,1.0],[124,135,68,1.0],[124,135,69,1.0],[124,135,70,1.0],[124,135,71,1.0],[124,135,72,1.0],[124,135,73,1.0],[124,135,74,1.0],[124,135,75,1.0],[124,135,76,1.0],[124,135,77,1.0],[124,135,78,1.0],[124,135,79,1.0],[124,136,64,1.0],[124,136,65,1.0],[124,136,66,1.0],[124,136,67,1.0],[124,136,68,1.0],[124,136,69,1.0],[124,136,70,1.0],[124,136,71,1.0],[124,136,72,1.0],[124,136,73,1.0],[124,136,74,1.0],[124,136,75,1.0],[124,136,76,1.0],[124,136,77,1.0],[124,136,78,1.0],[124,136,79,1.0],[124,137,64,1.0],[124,137,65,1.0],[124,137,66,1.0],[124,137,67,1.0],[124,137,68,1.0],[124,137,69,1.0],[124,137,70,1.0],[124,137,71,1.0],[124,137,72,1.0],[124,137,73,1.0],[124,137,74,1.0],[124,137,75,1.0],[124,137,76,1.0],[124,137,77,1.0],[124,137,78,1.0],[124,137,79,1.0],[124,138,64,1.0],[124,138,65,1.0],[124,138,66,1.0],[124,138,67,1.0],[124,138,68,1.0],[124,138,69,1.0],[124,138,70,1.0],[124,138,71,1.0],[124,138,72,1.0],[124,138,73,1.0],[124,138,74,1.0],[124,138,75,1.0],[124,138,76,1.0],[124,138,77,1.0],[124,138,78,1.0],[124,138,79,1.0],[124,139,64,1.0],[124,139,65,1.0],[124,139,66,1.0],[124,139,67,1.0],[124,139,68,1.0],[124,139,69,1.0],[124,139,70,1.0],[124,139,71,1.0],[124,139,72,1.0],[124,139,73,1.0],[124,139,74,1.0],[124,139,75,1.0],[124,139,76,1.0],[124,139,77,1.0],[124,139,78,1.0],[124,139,79,1.0],[124,140,64,1.0],[124,140,65,1.0],[124,140,66,1.0],[124,140,67,1.0],[124,140,68,1.0],[124,140,69,1.0],[124,140,70,1.0],[124,140,71,1.0],[124,140,72,1.0],[124,140,73,1.0],[124,140,74,1.0],[124,140,75,1.0],[124,140,76,1.0],[124,140,77,1.0],[124,140,78,1.0],[124,140,79,1.0],[124,141,64,1.0],[124,141,65,1.0],[124,141,66,1.0],[124,141,67,1.0],[124,141,68,1.0],[124,141,69,1.0],[124,141,70,1.0],[124,141,71,1.0],[124,141,72,1.0],[124,141,73,1.0],[124,141,74,1.0],[124,141,75,1.0],[124,141,76,1.0],[124,141,77,1.0],[124,141,78,1.0],[124,141,79,1.0],[124,142,64,1.0],[124,142,65,1.0],[124,142,66,1.0],[124,142,67,1.0],[124,142,68,1.0],[124,142,69,1.0],[124,142,70,1.0],[124,142,71,1.0],[124,142,72,1.0],[124,142,73,1.0],[124,142,74,1.0],[124,142,75,1.0],[124,142,76,1.0],[124,142,77,1.0],[124,142,78,1.0],[124,142,79,1.0],[124,143,64,1.0],[124,143,65,1.0],[124,143,66,1.0],[124,143,67,1.0],[124,143,68,1.0],[124,143,69,1.0],[124,143,70,1.0],[124,143,71,1.0],[124,143,72,1.0],[124,143,73,1.0],[124,143,74,1.0],[124,143,75,1.0],[124,143,76,1.0],[124,143,77,1.0],[124,143,78,1.0],[124,143,79,1.0],[124,144,64,1.0],[124,144,65,1.0],[124,144,66,1.0],[124,144,67,1.0],[124,144,68,1.0],[124,144,69,1.0],[124,144,70,1.0],[124,144,71,1.0],[124,144,72,1.0],[124,144,73,1.0],[124,144,74,1.0],[124,144,75,1.0],[124,144,76,1.0],[124,144,77,1.0],[124,144,78,1.0],[124,144,79,1.0],[124,145,64,1.0],[124,145,65,1.0],[124,145,66,1.0],[124,145,67,1.0],[124,145,68,1.0],[124,145,69,1.0],[124,145,70,1.0],[124,145,71,1.0],[124,145,72,1.0],[124,145,73,1.0],[124,145,74,1.0],[124,145,75,1.0],[124,145,76,1.0],[124,145,77,1.0],[124,145,78,1.0],[124,145,79,1.0],[124,146,64,1.0],[124,146,65,1.0],[124,146,66,1.0],[124,146,67,1.0],[124,146,68,1.0],[124,146,69,1.0],[124,146,70,1.0],[124,146,71,1.0],[124,146,72,1.0],[124,146,73,1.0],[124,146,74,1.0],[124,146,75,1.0],[124,146,76,1.0],[124,146,77,1.0],[124,146,78,1.0],[124,146,79,1.0],[124,147,64,1.0],[124,147,65,1.0],[124,147,66,1.0],[124,147,67,1.0],[124,147,68,1.0],[124,147,69,1.0],[124,147,70,1.0],[124,147,71,1.0],[124,147,72,1.0],[124,147,73,1.0],[124,147,74,1.0],[124,147,75,1.0],[124,147,76,1.0],[124,147,77,1.0],[124,147,78,1.0],[124,147,79,1.0],[124,148,64,1.0],[124,148,65,1.0],[124,148,66,1.0],[124,148,67,1.0],[124,148,68,1.0],[124,148,69,1.0],[124,148,70,1.0],[124,148,71,1.0],[124,148,72,1.0],[124,148,73,1.0],[124,148,74,1.0],[124,148,75,1.0],[124,148,76,1.0],[124,148,77,1.0],[124,148,78,1.0],[124,148,79,1.0],[124,149,64,1.0],[124,149,65,1.0],[124,149,66,1.0],[124,149,67,1.0],[124,149,68,1.0],[124,149,69,1.0],[124,149,70,1.0],[124,149,71,1.0],[124,149,72,1.0],[124,149,73,1.0],[124,149,74,1.0],[124,149,75,1.0],[124,149,76,1.0],[124,149,77,1.0],[124,149,78,1.0],[124,149,79,1.0],[124,150,64,1.0],[124,150,65,1.0],[124,150,66,1.0],[124,150,67,1.0],[124,150,68,1.0],[124,150,69,1.0],[124,150,70,1.0],[124,150,71,1.0],[124,150,72,1.0],[124,150,73,1.0],[124,150,74,1.0],[124,150,75,1.0],[124,150,76,1.0],[124,150,77,1.0],[124,150,78,1.0],[124,150,79,1.0],[124,151,64,1.0],[124,151,65,1.0],[124,151,66,1.0],[124,151,67,1.0],[124,151,68,1.0],[124,151,69,1.0],[124,151,70,1.0],[124,151,71,1.0],[124,151,72,1.0],[124,151,73,1.0],[124,151,74,1.0],[124,151,75,1.0],[124,151,76,1.0],[124,151,77,1.0],[124,151,78,1.0],[124,151,79,1.0],[124,152,64,1.0],[124,152,65,1.0],[124,152,66,1.0],[124,152,67,1.0],[124,152,68,1.0],[124,152,69,1.0],[124,152,70,1.0],[124,152,71,1.0],[124,152,72,1.0],[124,152,73,1.0],[124,152,74,1.0],[124,152,75,1.0],[124,152,76,1.0],[124,152,77,1.0],[124,152,78,1.0],[124,152,79,1.0],[124,153,64,1.0],[124,153,65,1.0],[124,153,66,1.0],[124,153,67,1.0],[124,153,68,1.0],[124,153,69,1.0],[124,153,70,1.0],[124,153,71,1.0],[124,153,72,1.0],[124,153,73,1.0],[124,153,74,1.0],[124,153,75,1.0],[124,153,76,1.0],[124,153,77,1.0],[124,153,78,1.0],[124,153,79,1.0],[124,154,64,1.0],[124,154,65,1.0],[124,154,66,1.0],[124,154,67,1.0],[124,154,68,1.0],[124,154,69,1.0],[124,154,70,1.0],[124,154,71,1.0],[124,154,72,1.0],[124,154,73,1.0],[124,154,74,1.0],[124,154,75,1.0],[124,154,76,1.0],[124,154,77,1.0],[124,154,78,1.0],[124,154,79,1.0],[124,155,64,1.0],[124,155,65,1.0],[124,155,66,1.0],[124,155,67,1.0],[124,155,68,1.0],[124,155,69,1.0],[124,155,70,1.0],[124,155,71,1.0],[124,155,72,1.0],[124,155,73,1.0],[124,155,74,1.0],[124,155,75,1.0],[124,155,76,1.0],[124,155,77,1.0],[124,155,78,1.0],[124,155,79,1.0],[124,156,64,1.0],[124,156,65,1.0],[124,156,66,1.0],[124,156,67,1.0],[124,156,68,1.0],[124,156,69,1.0],[124,156,70,1.0],[124,156,71,1.0],[124,156,72,1.0],[124,156,73,1.0],[124,156,74,1.0],[124,156,75,1.0],[124,156,76,1.0],[124,156,77,1.0],[124,156,78,1.0],[124,156,79,1.0],[124,157,64,1.0],[124,157,65,1.0],[124,157,66,1.0],[124,157,67,1.0],[124,157,68,1.0],[124,157,69,1.0],[124,157,70,1.0],[124,157,71,1.0],[124,157,72,1.0],[124,157,73,1.0],[124,157,74,1.0],[124,157,75,1.0],[124,157,76,1.0],[124,157,77,1.0],[124,157,78,1.0],[124,157,79,1.0],[124,158,64,1.0],[124,158,65,1.0],[124,158,66,1.0],[124,158,67,1.0],[124,158,68,1.0],[124,158,69,1.0],[124,158,70,1.0],[124,158,71,1.0],[124,158,72,1.0],[124,158,73,1.0],[124,158,74,1.0],[124,158,75,1.0],[124,158,76,1.0],[124,158,77,1.0],[124,158,78,1.0],[124,158,79,1.0],[124,159,64,1.0],[124,159,65,1.0],[124,159,66,1.0],[124,159,67,1.0],[124,159,68,1.0],[124,159,69,1.0],[124,159,70,1.0],[124,159,71,1.0],[124,159,72,1.0],[124,159,73,1.0],[124,159,74,1.0],[124,159,75,1.0],[124,159,76,1.0],[124,159,77,1.0],[124,159,78,1.0],[124,159,79,1.0],[124,160,64,1.0],[124,160,65,1.0],[124,160,66,1.0],[124,160,67,1.0],[124,160,68,1.0],[124,160,69,1.0],[124,160,70,1.0],[124,160,71,1.0],[124,160,72,1.0],[124,160,73,1.0],[124,160,74,1.0],[124,160,75,1.0],[124,160,76,1.0],[124,160,77,1.0],[124,160,78,1.0],[124,160,79,1.0],[124,161,64,1.0],[124,161,65,1.0],[124,161,66,1.0],[124,161,67,1.0],[124,161,68,1.0],[124,161,69,1.0],[124,161,70,1.0],[124,161,71,1.0],[124,161,72,1.0],[124,161,73,1.0],[124,161,74,1.0],[124,161,75,1.0],[124,161,76,1.0],[124,161,77,1.0],[124,161,78,1.0],[124,161,79,1.0],[124,162,64,1.0],[124,162,65,1.0],[124,162,66,1.0],[124,162,67,1.0],[124,162,68,1.0],[124,162,69,1.0],[124,162,70,1.0],[124,162,71,1.0],[124,162,72,1.0],[124,162,73,1.0],[124,162,74,1.0],[124,162,75,1.0],[124,162,76,1.0],[124,162,77,1.0],[124,162,78,1.0],[124,162,79,1.0],[124,163,64,1.0],[124,163,65,1.0],[124,163,66,1.0],[124,163,67,1.0],[124,163,68,1.0],[124,163,69,1.0],[124,163,70,1.0],[124,163,71,1.0],[124,163,72,1.0],[124,163,73,1.0],[124,163,74,1.0],[124,163,75,1.0],[124,163,76,1.0],[124,163,77,1.0],[124,163,78,1.0],[124,163,79,1.0],[124,164,64,1.0],[124,164,65,1.0],[124,164,66,1.0],[124,164,67,1.0],[124,164,68,1.0],[124,164,69,1.0],[124,164,70,1.0],[124,164,71,1.0],[124,164,72,1.0],[124,164,73,1.0],[124,164,74,1.0],[124,164,75,1.0],[124,164,76,1.0],[124,164,77,1.0],[124,164,78,1.0],[124,164,79,1.0],[124,165,64,1.0],[124,165,65,1.0],[124,165,66,1.0],[124,165,67,1.0],[124,165,68,1.0],[124,165,69,1.0],[124,165,70,1.0],[124,165,71,1.0],[124,165,72,1.0],[124,165,73,1.0],[124,165,74,1.0],[124,165,75,1.0],[124,165,76,1.0],[124,165,77,1.0],[124,165,78,1.0],[124,165,79,1.0],[124,166,64,1.0],[124,166,65,1.0],[124,166,66,1.0],[124,166,67,1.0],[124,166,68,1.0],[124,166,69,1.0],[124,166,70,1.0],[124,166,71,1.0],[124,166,72,1.0],[124,166,73,1.0],[124,166,74,1.0],[124,166,75,1.0],[124,166,76,1.0],[124,166,77,1.0],[124,166,78,1.0],[124,166,79,1.0],[124,167,64,1.0],[124,167,65,1.0],[124,167,66,1.0],[124,167,67,1.0],[124,167,68,1.0],[124,167,69,1.0],[124,167,70,1.0],[124,167,71,1.0],[124,167,72,1.0],[124,167,73,1.0],[124,167,74,1.0],[124,167,75,1.0],[124,167,76,1.0],[124,167,77,1.0],[124,167,78,1.0],[124,167,79,1.0],[124,168,64,1.0],[124,168,65,1.0],[124,168,66,1.0],[124,168,67,1.0],[124,168,68,1.0],[124,168,69,1.0],[124,168,70,1.0],[124,168,71,1.0],[124,168,72,1.0],[124,168,73,1.0],[124,168,74,1.0],[124,168,75,1.0],[124,168,76,1.0],[124,168,77,1.0],[124,168,78,1.0],[124,168,79,1.0],[124,169,64,1.0],[124,169,65,1.0],[124,169,66,1.0],[124,169,67,1.0],[124,169,68,1.0],[124,169,69,1.0],[124,169,70,1.0],[124,169,71,1.0],[124,169,72,1.0],[124,169,73,1.0],[124,169,74,1.0],[124,169,75,1.0],[124,169,76,1.0],[124,169,77,1.0],[124,169,78,1.0],[124,169,79,1.0],[124,170,64,1.0],[124,170,65,1.0],[124,170,66,1.0],[124,170,67,1.0],[124,170,68,1.0],[124,170,69,1.0],[124,170,70,1.0],[124,170,71,1.0],[124,170,72,1.0],[124,170,73,1.0],[124,170,74,1.0],[124,170,75,1.0],[124,170,76,1.0],[124,170,77,1.0],[124,170,78,1.0],[124,170,79,1.0],[124,171,64,1.0],[124,171,65,1.0],[124,171,66,1.0],[124,171,67,1.0],[124,171,68,1.0],[124,171,69,1.0],[124,171,70,1.0],[124,171,71,1.0],[124,171,72,1.0],[124,171,73,1.0],[124,171,74,1.0],[124,171,75,1.0],[124,171,76,1.0],[124,171,77,1.0],[124,171,78,1.0],[124,171,79,1.0],[124,172,64,1.0],[124,172,65,1.0],[124,172,66,1.0],[124,172,67,1.0],[124,172,68,1.0],[124,172,69,1.0],[124,172,70,1.0],[124,172,71,1.0],[124,172,72,1.0],[124,172,73,1.0],[124,172,74,1.0],[124,172,75,1.0],[124,172,76,1.0],[124,172,77,1.0],[124,172,78,1.0],[124,172,79,1.0],[124,173,64,1.0],[124,173,65,1.0],[124,173,66,1.0],[124,173,67,1.0],[124,173,68,1.0],[124,173,69,1.0],[124,173,70,1.0],[124,173,71,1.0],[124,173,72,1.0],[124,173,73,1.0],[124,173,74,1.0],[124,173,75,1.0],[124,173,76,1.0],[124,173,77,1.0],[124,173,78,1.0],[124,173,79,1.0],[124,174,64,1.0],[124,174,65,1.0],[124,174,66,1.0],[124,174,67,1.0],[124,174,68,1.0],[124,174,69,1.0],[124,174,70,1.0],[124,174,71,1.0],[124,174,72,1.0],[124,174,73,1.0],[124,174,74,1.0],[124,174,75,1.0],[124,174,76,1.0],[124,174,77,1.0],[124,174,78,1.0],[124,174,79,1.0],[124,175,64,1.0],[124,175,65,1.0],[124,175,66,1.0],[124,175,67,1.0],[124,175,68,1.0],[124,175,69,1.0],[124,175,70,1.0],[124,175,71,1.0],[124,175,72,1.0],[124,175,73,1.0],[124,175,74,1.0],[124,175,75,1.0],[124,175,76,1.0],[124,175,77,1.0],[124,175,78,1.0],[124,175,79,1.0],[124,176,64,1.0],[124,176,65,1.0],[124,176,66,1.0],[124,176,67,1.0],[124,176,68,1.0],[124,176,69,1.0],[124,176,70,1.0],[124,176,71,1.0],[124,176,72,1.0],[124,176,73,1.0],[124,176,74,1.0],[124,176,75,1.0],[124,176,76,1.0],[124,176,77,1.0],[124,176,78,1.0],[124,176,79,1.0],[124,177,64,1.0],[124,177,65,1.0],[124,177,66,1.0],[124,177,67,1.0],[124,177,68,1.0],[124,177,69,1.0],[124,177,70,1.0],[124,177,71,1.0],[124,177,72,1.0],[124,177,73,1.0],[124,177,74,1.0],[124,177,75,1.0],[124,177,76,1.0],[124,177,77,1.0],[124,177,78,1.0],[124,177,79,1.0],[124,178,64,1.0],[124,178,65,1.0],[124,178,66,1.0],[124,178,67,1.0],[124,178,68,1.0],[124,178,69,1.0],[124,178,70,1.0],[124,178,71,1.0],[124,178,72,1.0],[124,178,73,1.0],[124,178,74,1.0],[124,178,75,1.0],[124,178,76,1.0],[124,178,77,1.0],[124,178,78,1.0],[124,178,79,1.0],[124,179,64,1.0],[124,179,65,1.0],[124,179,66,1.0],[124,179,67,1.0],[124,179,68,1.0],[124,179,69,1.0],[124,179,70,1.0],[124,179,71,1.0],[124,179,72,1.0],[124,179,73,1.0],[124,179,74,1.0],[124,179,75,1.0],[124,179,76,1.0],[124,179,77,1.0],[124,179,78,1.0],[124,179,79,1.0],[124,180,64,1.0],[124,180,65,1.0],[124,180,66,1.0],[124,180,67,1.0],[124,180,68,1.0],[124,180,69,1.0],[124,180,70,1.0],[124,180,71,1.0],[124,180,72,1.0],[124,180,73,1.0],[124,180,74,1.0],[124,180,75,1.0],[124,180,76,1.0],[124,180,77,1.0],[124,180,78,1.0],[124,180,79,1.0],[124,181,64,1.0],[124,181,65,1.0],[124,181,66,1.0],[124,181,67,1.0],[124,181,68,1.0],[124,181,69,1.0],[124,181,70,1.0],[124,181,71,1.0],[124,181,72,1.0],[124,181,73,1.0],[124,181,74,1.0],[124,181,75,1.0],[124,181,76,1.0],[124,181,77,1.0],[124,181,78,1.0],[124,181,79,1.0],[124,182,64,1.0],[124,182,65,1.0],[124,182,66,1.0],[124,182,67,1.0],[124,182,68,1.0],[124,182,69,1.0],[124,182,70,1.0],[124,182,71,1.0],[124,182,72,1.0],[124,182,73,1.0],[124,182,74,1.0],[124,182,75,1.0],[124,182,76,1.0],[124,182,77,1.0],[124,182,78,1.0],[124,182,79,1.0],[124,183,64,1.0],[124,183,65,1.0],[124,183,66,1.0],[124,183,67,1.0],[124,183,68,1.0],[124,183,69,1.0],[124,183,70,1.0],[124,183,71,1.0],[124,183,72,1.0],[124,183,73,1.0],[124,183,74,1.0],[124,183,75,1.0],[124,183,76,1.0],[124,183,77,1.0],[124,183,78,1.0],[124,183,79,1.0],[124,184,64,1.0],[124,184,65,1.0],[124,184,66,1.0],[124,184,67,1.0],[124,184,68,1.0],[124,184,69,1.0],[124,184,70,1.0],[124,184,71,1.0],[124,184,72,1.0],[124,184,73,1.0],[124,184,74,1.0],[124,184,75,1.0],[124,184,76,1.0],[124,184,77,1.0],[124,184,78,1.0],[124,184,79,1.0],[124,185,64,1.0],[124,185,65,1.0],[124,185,66,1.0],[124,185,67,1.0],[124,185,68,1.0],[124,185,69,1.0],[124,185,70,1.0],[124,185,71,1.0],[124,185,72,1.0],[124,185,73,1.0],[124,185,74,1.0],[124,185,75,1.0],[124,185,76,1.0],[124,185,77,1.0],[124,185,78,1.0],[124,185,79,1.0],[124,186,64,1.0],[124,186,65,1.0],[124,186,66,1.0],[124,186,67,1.0],[124,186,68,1.0],[124,186,69,1.0],[124,186,70,1.0],[124,186,71,1.0],[124,186,72,1.0],[124,186,73,1.0],[124,186,74,1.0],[124,186,75,1.0],[124,186,76,1.0],[124,186,77,1.0],[124,186,78,1.0],[124,186,79,1.0],[124,187,64,1.0],[124,187,65,1.0],[124,187,66,1.0],[124,187,67,1.0],[124,187,68,1.0],[124,187,69,1.0],[124,187,70,1.0],[124,187,71,1.0],[124,187,72,1.0],[124,187,73,1.0],[124,187,74,1.0],[124,187,75,1.0],[124,187,76,1.0],[124,187,77,1.0],[124,187,78,1.0],[124,187,79,1.0],[124,188,64,1.0],[124,188,65,1.0],[124,188,66,1.0],[124,188,67,1.0],[124,188,68,1.0],[124,188,69,1.0],[124,188,70,1.0],[124,188,71,1.0],[124,188,72,1.0],[124,188,73,1.0],[124,188,74,1.0],[124,188,75,1.0],[124,188,76,1.0],[124,188,77,1.0],[124,188,78,1.0],[124,188,79,1.0],[124,189,64,1.0],[124,189,65,1.0],[124,189,66,1.0],[124,189,67,1.0],[124,189,68,1.0],[124,189,69,1.0],[124,189,70,1.0],[124,189,71,1.0],[124,189,72,1.0],[124,189,73,1.0],[124,189,74,1.0],[124,189,75,1.0],[124,189,76,1.0],[124,189,77,1.0],[124,189,78,1.0],[124,189,79,1.0],[124,190,64,1.0],[124,190,65,1.0],[124,190,66,1.0],[124,190,67,1.0],[124,190,68,1.0],[124,190,69,1.0],[124,190,70,1.0],[124,190,71,1.0],[124,190,72,1.0],[124,190,73,1.0],[124,190,74,1.0],[124,190,75,1.0],[124,190,76,1.0],[124,190,77,1.0],[124,190,78,1.0],[124,190,79,1.0],[124,191,64,1.0],[124,191,65,1.0],[124,191,66,1.0],[124,191,67,1.0],[124,191,68,1.0],[124,191,69,1.0],[124,191,70,1.0],[124,191,71,1.0],[124,191,72,1.0],[124,191,73,1.0],[124,191,74,1.0],[124,191,75,1.0],[124,191,76,1.0],[124,191,77,1.0],[124,191,78,1.0],[124,191,79,1.0],[124,192,64,1.0],[124,192,65,1.0],[124,192,66,1.0],[124,192,67,1.0],[124,192,68,1.0],[124,192,69,1.0],[124,192,70,1.0],[124,192,71,1.0],[124,192,72,1.0],[124,192,73,1.0],[124,192,74,1.0],[124,192,75,1.0],[124,192,76,1.0],[124,192,77,1.0],[124,192,78,1.0],[124,192,79,1.0],[124,193,64,1.0],[124,193,65,1.0],[124,193,66,1.0],[124,193,67,1.0],[124,193,68,1.0],[124,193,69,1.0],[124,193,70,1.0],[124,193,71,1.0],[124,193,72,1.0],[124,193,73,1.0],[124,193,74,1.0],[124,193,75,1.0],[124,193,76,1.0],[124,193,77,1.0],[124,193,78,1.0],[124,193,79,1.0],[124,194,64,1.0],[124,194,65,1.0],[124,194,66,1.0],[124,194,67,1.0],[124,194,68,1.0],[124,194,69,1.0],[124,194,70,1.0],[124,194,71,1.0],[124,194,72,1.0],[124,194,73,1.0],[124,194,74,1.0],[124,194,75,1.0],[124,194,76,1.0],[124,194,77,1.0],[124,194,78,1.0],[124,194,79,1.0],[124,195,64,1.0],[124,195,65,1.0],[124,195,66,1.0],[124,195,67,1.0],[124,195,68,1.0],[124,195,69,1.0],[124,195,70,1.0],[124,195,71,1.0],[124,195,72,1.0],[124,195,73,1.0],[124,195,74,1.0],[124,195,75,1.0],[124,195,76,1.0],[124,195,77,1.0],[124,195,78,1.0],[124,195,79,1.0],[124,196,64,1.0],[124,196,65,1.0],[124,196,66,1.0],[124,196,67,1.0],[124,196,68,1.0],[124,196,69,1.0],[124,196,70,1.0],[124,196,71,1.0],[124,196,72,1.0],[124,196,73,1.0],[124,196,74,1.0],[124,196,75,1.0],[124,196,76,1.0],[124,196,77,1.0],[124,196,78,1.0],[124,196,79,1.0],[124,197,64,1.0],[124,197,65,1.0],[124,197,66,1.0],[124,197,67,1.0],[124,197,68,1.0],[124,197,69,1.0],[124,197,70,1.0],[124,197,71,1.0],[124,197,72,1.0],[124,197,73,1.0],[124,197,74,1.0],[124,197,75,1.0],[124,197,76,1.0],[124,197,77,1.0],[124,197,78,1.0],[124,197,79,1.0],[124,198,64,1.0],[124,198,65,1.0],[124,198,66,1.0],[124,198,67,1.0],[124,198,68,1.0],[124,198,69,1.0],[124,198,70,1.0],[124,198,71,1.0],[124,198,72,1.0],[124,198,73,1.0],[124,198,74,1.0],[124,198,75,1.0],[124,198,76,1.0],[124,198,77,1.0],[124,198,78,1.0],[124,198,79,1.0],[124,199,64,1.0],[124,199,65,1.0],[124,199,66,1.0],[124,199,67,1.0],[124,199,68,1.0],[124,199,69,1.0],[124,199,70,1.0],[124,199,71,1.0],[124,199,72,1.0],[124,199,73,1.0],[124,199,74,1.0],[124,199,75,1.0],[124,199,76,1.0],[124,199,77,1.0],[124,199,78,1.0],[124,199,79,1.0],[124,200,64,1.0],[124,200,65,1.0],[124,200,66,1.0],[124,200,67,1.0],[124,200,68,1.0],[124,200,69,1.0],[124,200,70,1.0],[124,200,71,1.0],[124,200,72,1.0],[124,200,73,1.0],[124,200,74,1.0],[124,200,75,1.0],[124,200,76,1.0],[124,200,77,1.0],[124,200,78,1.0],[124,200,79,1.0],[124,201,64,1.0],[124,201,65,1.0],[124,201,66,1.0],[124,201,67,1.0],[124,201,68,1.0],[124,201,69,1.0],[124,201,70,1.0],[124,201,71,1.0],[124,201,72,1.0],[124,201,73,1.0],[124,201,74,1.0],[124,201,75,1.0],[124,201,76,1.0],[124,201,77,1.0],[124,201,78,1.0],[124,201,79,1.0],[124,202,64,1.0],[124,202,65,1.0],[124,202,66,1.0],[124,202,67,1.0],[124,202,68,1.0],[124,202,69,1.0],[124,202,70,1.0],[124,202,71,1.0],[124,202,72,1.0],[124,202,73,1.0],[124,202,74,1.0],[124,202,75,1.0],[124,202,76,1.0],[124,202,77,1.0],[124,202,78,1.0],[124,202,79,1.0],[124,203,64,1.0],[124,203,65,1.0],[124,203,66,1.0],[124,203,67,1.0],[124,203,68,1.0],[124,203,69,1.0],[124,203,70,1.0],[124,203,71,1.0],[124,203,72,1.0],[124,203,73,1.0],[124,203,74,1.0],[124,203,75,1.0],[124,203,76,1.0],[124,203,77,1.0],[124,203,78,1.0],[124,203,79,1.0],[124,204,64,1.0],[124,204,65,1.0],[124,204,66,1.0],[124,204,67,1.0],[124,204,68,1.0],[124,204,69,1.0],[124,204,70,1.0],[124,204,71,1.0],[124,204,72,1.0],[124,204,73,1.0],[124,204,74,1.0],[124,204,75,1.0],[124,204,76,1.0],[124,204,77,1.0],[124,204,78,1.0],[124,204,79,1.0],[124,205,64,1.0],[124,205,65,1.0],[124,205,66,1.0],[124,205,67,1.0],[124,205,68,1.0],[124,205,69,1.0],[124,205,70,1.0],[124,205,71,1.0],[124,205,72,1.0],[124,205,73,1.0],[124,205,74,1.0],[124,205,75,1.0],[124,205,76,1.0],[124,205,77,1.0],[124,205,78,1.0],[124,205,79,1.0],[124,206,64,1.0],[124,206,65,1.0],[124,206,66,1.0],[124,206,67,1.0],[124,206,68,1.0],[124,206,69,1.0],[124,206,70,1.0],[124,206,71,1.0],[124,206,72,1.0],[124,206,73,1.0],[124,206,74,1.0],[124,206,75,1.0],[124,206,76,1.0],[124,206,77,1.0],[124,206,78,1.0],[124,206,79,1.0],[124,207,64,1.0],[124,207,65,1.0],[124,207,66,1.0],[124,207,67,1.0],[124,207,68,1.0],[124,207,69,1.0],[124,207,70,1.0],[124,207,71,1.0],[124,207,72,1.0],[124,207,73,1.0],[124,207,74,1.0],[124,207,75,1.0],[124,207,76,1.0],[124,207,77,1.0],[124,207,78,1.0],[124,207,79,1.0],[124,208,64,1.0],[124,208,65,1.0],[124,208,66,1.0],[124,208,67,1.0],[124,208,68,1.0],[124,208,69,1.0],[124,208,70,1.0],[124,208,71,1.0],[124,208,72,1.0],[124,208,73,1.0],[124,208,74,1.0],[124,208,75,1.0],[124,208,76,1.0],[124,208,77,1.0],[124,208,78,1.0],[124,208,79,1.0],[124,209,64,1.0],[124,209,65,1.0],[124,209,66,1.0],[124,209,67,1.0],[124,209,68,1.0],[124,209,69,1.0],[124,209,70,1.0],[124,209,71,1.0],[124,209,72,1.0],[124,209,73,1.0],[124,209,74,1.0],[124,209,75,1.0],[124,209,76,1.0],[124,209,77,1.0],[124,209,78,1.0],[124,209,79,1.0],[124,210,64,1.0],[124,210,65,1.0],[124,210,66,1.0],[124,210,67,1.0],[124,210,68,1.0],[124,210,69,1.0],[124,210,70,1.0],[124,210,71,1.0],[124,210,72,1.0],[124,210,73,1.0],[124,210,74,1.0],[124,210,75,1.0],[124,210,76,1.0],[124,210,77,1.0],[124,210,78,1.0],[124,210,79,1.0],[124,211,64,1.0],[124,211,65,1.0],[124,211,66,1.0],[124,211,67,1.0],[124,211,68,1.0],[124,211,69,1.0],[124,211,70,1.0],[124,211,71,1.0],[124,211,72,1.0],[124,211,73,1.0],[124,211,74,1.0],[124,211,75,1.0],[124,211,76,1.0],[124,211,77,1.0],[124,211,78,1.0],[124,211,79,1.0],[124,212,64,1.0],[124,212,65,1.0],[124,212,66,1.0],[124,212,67,1.0],[124,212,68,1.0],[124,212,69,1.0],[124,212,70,1.0],[124,212,71,1.0],[124,212,72,1.0],[124,212,73,1.0],[124,212,74,1.0],[124,212,75,1.0],[124,212,76,1.0],[124,212,77,1.0],[124,212,78,1.0],[124,212,79,1.0],[124,213,64,1.0],[124,213,65,1.0],[124,213,66,1.0],[124,213,67,1.0],[124,213,68,1.0],[124,213,69,1.0],[124,213,70,1.0],[124,213,71,1.0],[124,213,72,1.0],[124,213,73,1.0],[124,213,74,1.0],[124,213,75,1.0],[124,213,76,1.0],[124,213,77,1.0],[124,213,78,1.0],[124,213,79,1.0],[124,214,64,1.0],[124,214,65,1.0],[124,214,66,1.0],[124,214,67,1.0],[124,214,68,1.0],[124,214,69,1.0],[124,214,70,1.0],[124,214,71,1.0],[124,214,72,1.0],[124,214,73,1.0],[124,214,74,1.0],[124,214,75,1.0],[124,214,76,1.0],[124,214,77,1.0],[124,214,78,1.0],[124,214,79,1.0],[124,215,64,1.0],[124,215,65,1.0],[124,215,66,1.0],[124,215,67,1.0],[124,215,68,1.0],[124,215,69,1.0],[124,215,70,1.0],[124,215,71,1.0],[124,215,72,1.0],[124,215,73,1.0],[124,215,74,1.0],[124,215,75,1.0],[124,215,76,1.0],[124,215,77,1.0],[124,215,78,1.0],[124,215,79,1.0],[124,216,64,1.0],[124,216,65,1.0],[124,216,66,1.0],[124,216,67,1.0],[124,216,68,1.0],[124,216,69,1.0],[124,216,70,1.0],[124,216,71,1.0],[124,216,72,1.0],[124,216,73,1.0],[124,216,74,1.0],[124,216,75,1.0],[124,216,76,1.0],[124,216,77,1.0],[124,216,78,1.0],[124,216,79,1.0],[124,217,64,1.0],[124,217,65,1.0],[124,217,66,1.0],[124,217,67,1.0],[124,217,68,1.0],[124,217,69,1.0],[124,217,70,1.0],[124,217,71,1.0],[124,217,72,1.0],[124,217,73,1.0],[124,217,74,1.0],[124,217,75,1.0],[124,217,76,1.0],[124,217,77,1.0],[124,217,78,1.0],[124,217,79,1.0],[124,218,64,1.0],[124,218,65,1.0],[124,218,66,1.0],[124,218,67,1.0],[124,218,68,1.0],[124,218,69,1.0],[124,218,70,1.0],[124,218,71,1.0],[124,218,72,1.0],[124,218,73,1.0],[124,218,74,1.0],[124,218,75,1.0],[124,218,76,1.0],[124,218,77,1.0],[124,218,78,1.0],[124,218,79,1.0],[124,219,64,1.0],[124,219,65,1.0],[124,219,66,1.0],[124,219,67,1.0],[124,219,68,1.0],[124,219,69,1.0],[124,219,70,1.0],[124,219,71,1.0],[124,219,72,1.0],[124,219,73,1.0],[124,219,74,1.0],[124,219,75,1.0],[124,219,76,1.0],[124,219,77,1.0],[124,219,78,1.0],[124,219,79,1.0],[124,220,64,1.0],[124,220,65,1.0],[124,220,66,1.0],[124,220,67,1.0],[124,220,68,1.0],[124,220,69,1.0],[124,220,70,1.0],[124,220,71,1.0],[124,220,72,1.0],[124,220,73,1.0],[124,220,74,1.0],[124,220,75,1.0],[124,220,76,1.0],[124,220,77,1.0],[124,220,78,1.0],[124,220,79,1.0],[124,221,64,1.0],[124,221,65,1.0],[124,221,66,1.0],[124,221,67,1.0],[124,221,68,1.0],[124,221,69,1.0],[124,221,70,1.0],[124,221,71,1.0],[124,221,72,1.0],[124,221,73,1.0],[124,221,74,1.0],[124,221,75,1.0],[124,221,76,1.0],[124,221,77,1.0],[124,221,78,1.0],[124,221,79,1.0],[124,222,64,1.0],[124,222,65,1.0],[124,222,66,1.0],[124,222,67,1.0],[124,222,68,1.0],[124,222,69,1.0],[124,222,70,1.0],[124,222,71,1.0],[124,222,72,1.0],[124,222,73,1.0],[124,222,74,1.0],[124,222,75,1.0],[124,222,76,1.0],[124,222,77,1.0],[124,222,78,1.0],[124,222,79,1.0],[124,223,64,1.0],[124,223,65,1.0],[124,223,66,1.0],[124,223,67,1.0],[124,223,68,1.0],[124,223,69,1.0],[124,223,70,1.0],[124,223,71,1.0],[124,223,72,1.0],[124,223,73,1.0],[124,223,74,1.0],[124,223,75,1.0],[124,223,76,1.0],[124,223,77,1.0],[124,223,78,1.0],[124,223,79,1.0],[124,224,64,1.0],[124,224,65,1.0],[124,224,66,1.0],[124,224,67,1.0],[124,224,68,1.0],[124,224,69,1.0],[124,224,70,1.0],[124,224,71,1.0],[124,224,72,1.0],[124,224,73,1.0],[124,224,74,1.0],[124,224,75,1.0],[124,224,76,1.0],[124,224,77,1.0],[124,224,78,1.0],[124,224,79,1.0],[124,225,64,1.0],[124,225,65,1.0],[124,225,66,1.0],[124,225,67,1.0],[124,225,68,1.0],[124,225,69,1.0],[124,225,70,1.0],[124,225,71,1.0],[124,225,72,1.0],[124,225,73,1.0],[124,225,74,1.0],[124,225,75,1.0],[124,225,76,1.0],[124,225,77,1.0],[124,225,78,1.0],[124,225,79,1.0],[124,226,64,1.0],[124,226,65,1.0],[124,226,66,1.0],[124,226,67,1.0],[124,226,68,1.0],[124,226,69,1.0],[124,226,70,1.0],[124,226,71,1.0],[124,226,72,1.0],[124,226,73,1.0],[124,226,74,1.0],[124,226,75,1.0],[124,226,76,1.0],[124,226,77,1.0],[124,226,78,1.0],[124,226,79,1.0],[124,227,64,1.0],[124,227,65,1.0],[124,227,66,1.0],[124,227,67,1.0],[124,227,68,1.0],[124,227,69,1.0],[124,227,70,1.0],[124,227,71,1.0],[124,227,72,1.0],[124,227,73,1.0],[124,227,74,1.0],[124,227,75,1.0],[124,227,76,1.0],[124,227,77,1.0],[124,227,78,1.0],[124,227,79,1.0],[124,228,64,1.0],[124,228,65,1.0],[124,228,66,1.0],[124,228,67,1.0],[124,228,68,1.0],[124,228,69,1.0],[124,228,70,1.0],[124,228,71,1.0],[124,228,72,1.0],[124,228,73,1.0],[124,228,74,1.0],[124,228,75,1.0],[124,228,76,1.0],[124,228,77,1.0],[124,228,78,1.0],[124,228,79,1.0],[124,229,64,1.0],[124,229,65,1.0],[124,229,66,1.0],[124,229,67,1.0],[124,229,68,1.0],[124,229,69,1.0],[124,229,70,1.0],[124,229,71,1.0],[124,229,72,1.0],[124,229,73,1.0],[124,229,74,1.0],[124,229,75,1.0],[124,229,76,1.0],[124,229,77,1.0],[124,229,78,1.0],[124,229,79,1.0],[124,230,64,1.0],[124,230,65,1.0],[124,230,66,1.0],[124,230,67,1.0],[124,230,68,1.0],[124,230,69,1.0],[124,230,70,1.0],[124,230,71,1.0],[124,230,72,1.0],[124,230,73,1.0],[124,230,74,1.0],[124,230,75,1.0],[124,230,76,1.0],[124,230,77,1.0],[124,230,78,1.0],[124,230,79,1.0],[124,231,64,1.0],[124,231,65,1.0],[124,231,66,1.0],[124,231,67,1.0],[124,231,68,1.0],[124,231,69,1.0],[124,231,70,1.0],[124,231,71,1.0],[124,231,72,1.0],[124,231,73,1.0],[124,231,74,1.0],[124,231,75,1.0],[124,231,76,1.0],[124,231,77,1.0],[124,231,78,1.0],[124,231,79,1.0],[124,232,64,1.0],[124,232,65,1.0],[124,232,66,1.0],[124,232,67,1.0],[124,232,68,1.0],[124,232,69,1.0],[124,232,70,1.0],[124,232,71,1.0],[124,232,72,1.0],[124,232,73,1.0],[124,232,74,1.0],[124,232,75,1.0],[124,232,76,1.0],[124,232,77,1.0],[124,232,78,1.0],[124,232,79,1.0],[124,233,64,1.0],[124,233,65,1.0],[124,233,66,1.0],[124,233,67,1.0],[124,233,68,1.0],[124,233,69,1.0],[124,233,70,1.0],[124,233,71,1.0],[124,233,72,1.0],[124,233,73,1.0],[124,233,74,1.0],[124,233,75,1.0],[124,233,76,1.0],[124,233,77,1.0],[124,233,78,1.0],[124,233,79,1.0],[124,234,64,1.0],[124,234,65,1.0],[124,234,66,1.0],[124,234,67,1.0],[124,234,68,1.0],[124,234,69,1.0],[124,234,70,1.0],[124,234,71,1.0],[124,234,72,1.0],[124,234,73,1.0],[124,234,74,1.0],[124,234,75,1.0],[124,234,76,1.0],[124,234,77,1.0],[124,234,78,1.0],[124,234,79,1.0],[124,235,64,1.0],[124,235,65,1.0],[124,235,66,1.0],[124,235,67,1.0],[124,235,68,1.0],[124,235,69,1.0],[124,235,70,1.0],[124,235,71,1.0],[124,235,72,1.0],[124,235,73,1.0],[124,235,74,1.0],[124,235,75,1.0],[124,235,76,1.0],[124,235,77,1.0],[124,235,78,1.0],[124,235,79,1.0],[124,236,64,1.0],[124,236,65,1.0],[124,236,66,1.0],[124,236,67,1.0],[124,236,68,1.0],[124,236,69,1.0],[124,236,70,1.0],[124,236,71,1.0],[124,236,72,1.0],[124,236,73,1.0],[124,236,74,1.0],[124,236,75,1.0],[124,236,76,1.0],[124,236,77,1.0],[124,236,78,1.0],[124,236,79,1.0],[124,237,64,1.0],[124,237,65,1.0],[124,237,66,1.0],[124,237,67,1.0],[124,237,68,1.0],[124,237,69,1.0],[124,237,70,1.0],[124,237,71,1.0],[124,237,72,1.0],[124,237,73,1.0],[124,237,74,1.0],[124,237,75,1.0],[124,237,76,1.0],[124,237,77,1.0],[124,237,78,1.0],[124,237,79,1.0],[124,238,64,1.0],[124,238,65,1.0],[124,238,66,1.0],[124,238,67,1.0],[124,238,68,1.0],[124,238,69,1.0],[124,238,70,1.0],[124,238,71,1.0],[124,238,72,1.0],[124,238,73,1.0],[124,238,74,1.0],[124,238,75,1.0],[124,238,76,1.0],[124,238,77,1.0],[124,238,78,1.0],[124,238,79,1.0],[124,239,64,1.0],[124,239,65,1.0],[124,239,66,1.0],[124,239,67,1.0],[124,239,68,1.0],[124,239,69,1.0],[124,239,70,1.0],[124,239,71,1.0],[124,239,72,1.0],[124,239,73,1.0],[124,239,74,1.0],[124,239,75,1.0],[124,239,76,1.0],[124,239,77,1.0],[124,239,78,1.0],[124,239,79,1.0],[124,240,64,1.0],[124,240,65,1.0],[124,240,66,1.0],[124,240,67,1.0],[124,240,68,1.0],[124,240,69,1.0],[124,240,70,1.0],[124,240,71,1.0],[124,240,72,1.0],[124,240,73,1.0],[124,240,74,1.0],[124,240,75,1.0],[124,240,76,1.0],[124,240,77,1.0],[124,240,78,1.0],[124,240,79,1.0],[124,241,64,1.0],[124,241,65,1.0],[124,241,66,1.0],[124,241,67,1.0],[124,241,68,1.0],[124,241,69,1.0],[124,241,70,1.0],[124,241,71,1.0],[124,241,72,1.0],[124,241,73,1.0],[124,241,74,1.0],[124,241,75,1.0],[124,241,76,1.0],[124,241,77,1.0],[124,241,78,1.0],[124,241,79,1.0],[124,242,64,1.0],[124,242,65,1.0],[124,242,66,1.0],[124,242,67,1.0],[124,242,68,1.0],[124,242,69,1.0],[124,242,70,1.0],[124,242,71,1.0],[124,242,72,1.0],[124,242,73,1.0],[124,242,74,1.0],[124,242,75,1.0],[124,242,76,1.0],[124,242,77,1.0],[124,242,78,1.0],[124,242,79,1.0],[124,243,64,1.0],[124,243,65,1.0],[124,243,66,1.0],[124,243,67,1.0],[124,243,68,1.0],[124,243,69,1.0],[124,243,70,1.0],[124,243,71,1.0],[124,243,72,1.0],[124,243,73,1.0],[124,243,74,1.0],[124,243,75,1.0],[124,243,76,1.0],[124,243,77,1.0],[124,243,78,1.0],[124,243,79,1.0],[124,244,64,1.0],[124,244,65,1.0],[124,244,66,1.0],[124,244,67,1.0],[124,244,68,1.0],[124,244,69,1.0],[124,244,70,1.0],[124,244,71,1.0],[124,244,72,1.0],[124,244,73,1.0],[124,244,74,1.0],[124,244,75,1.0],[124,244,76,1.0],[124,244,77,1.0],[124,244,78,1.0],[124,244,79,1.0],[124,245,64,1.0],[124,245,65,1.0],[124,245,66,1.0],[124,245,67,1.0],[124,245,68,1.0],[124,245,69,1.0],[124,245,70,1.0],[124,245,71,1.0],[124,245,72,1.0],[124,245,73,1.0],[124,245,74,1.0],[124,245,75,1.0],[124,245,76,1.0],[124,245,77,1.0],[124,245,78,1.0],[124,245,79,1.0],[124,246,64,1.0],[124,246,65,1.0],[124,246,66,1.0],[124,246,67,1.0],[124,246,68,1.0],[124,246,69,1.0],[124,246,70,1.0],[124,246,71,1.0],[124,246,72,1.0],[124,246,73,1.0],[124,246,74,1.0],[124,246,75,1.0],[124,246,76,1.0],[124,246,77,1.0],[124,246,78,1.0],[124,246,79,1.0],[124,247,64,1.0],[124,247,65,1.0],[124,247,66,1.0],[124,247,67,1.0],[124,247,68,1.0],[124,247,69,1.0],[124,247,70,1.0],[124,247,71,1.0],[124,247,72,1.0],[124,247,73,1.0],[124,247,74,1.0],[124,247,75,1.0],[124,247,76,1.0],[124,247,77,1.0],[124,247,78,1.0],[124,247,79,1.0],[124,248,64,1.0],[124,248,65,1.0],[124,248,66,1.0],[124,248,67,1.0],[124,248,68,1.0],[124,248,69,1.0],[124,248,70,1.0],[124,248,71,1.0],[124,248,72,1.0],[124,248,73,1.0],[124,248,74,1.0],[124,248,75,1.0],[124,248,76,1.0],[124,248,77,1.0],[124,248,78,1.0],[124,248,79,1.0],[124,249,64,1.0],[124,249,65,1.0],[124,249,66,1.0],[124,249,67,1.0],[124,249,68,1.0],[124,249,69,1.0],[124,249,70,1.0],[124,249,71,1.0],[124,249,72,1.0],[124,249,73,1.0],[124,249,74,1.0],[124,249,75,1.0],[124,249,76,1.0],[124,249,77,1.0],[124,249,78,1.0],[124,249,79,1.0],[124,250,64,1.0],[124,250,65,1.0],[124,250,66,1.0],[124,250,67,1.0],[124,250,68,1.0],[124,250,69,1.0],[124,250,70,1.0],[124,250,71,1.0],[124,250,72,1.0],[124,250,73,1.0],[124,250,74,1.0],[124,250,75,1.0],[124,250,76,1.0],[124,250,77,1.0],[124,250,78,1.0],[124,250,79,1.0],[124,251,64,1.0],[124,251,65,1.0],[124,251,66,1.0],[124,251,67,1.0],[124,251,68,1.0],[124,251,69,1.0],[124,251,70,1.0],[124,251,71,1.0],[124,251,72,1.0],[124,251,73,1.0],[124,251,74,1.0],[124,251,75,1.0],[124,251,76,1.0],[124,251,77,1.0],[124,251,78,1.0],[124,251,79,1.0],[124,252,64,1.0],[124,252,65,1.0],[124,252,66,1.0],[124,252,67,1.0],[124,252,68,1.0],[124,252,69,1.0],[124,252,70,1.0],[124,252,71,1.0],[124,252,72,1.0],[124,252,73,1.0],[124,252,74,1.0],[124,252,75,1.0],[124,252,76,1.0],[124,252,77,1.0],[124,252,78,1.0],[124,252,79,1.0],[124,253,64,1.0],[124,253,65,1.0],[124,253,66,1.0],[124,253,67,1.0],[124,253,68,1.0],[124,253,69,1.0],[124,253,70,1.0],[124,253,71,1.0],[124,253,72,1.0],[124,253,73,1.0],[124,253,74,1.0],[124,253,75,1.0],[124,253,76,1.0],[124,253,77,1.0],[124,253,78,1.0],[124,253,79,1.0],[124,254,64,1.0],[124,254,65,1.0],[124,254,66,1.0],[124,254,67,1.0],[124,254,68,1.0],[124,254,69,1.0],[124,254,70,1.0],[124,254,71,1.0],[124,254,72,1.0],[124,254,73,1.0],[124,254,74,1.0],[124,254,75,1.0],[124,254,76,1.0],[124,254,77,1.0],[124,254,78,1.0],[124,254,79,1.0],[124,255,64,1.0],[124,255,65,1.0],[124,255,66,1.0],[124,255,67,1.0],[124,255,68,1.0],[124,255,69,1.0],[124,255,70,1.0],[124,255,71,1.0],[124,255,72,1.0],[124,255,73,1.0],[124,255,74,1.0],[124,255,75,1.0],[124,255,76,1.0],[124,255,77,1.0],[124,255,78,1.0],[124,255,79,1.0],[124,256,64,1.0],[124,256,65,1.0],[124,256,66,1.0],[124,256,67,1.0],[124,256,68,1.0],[124,256,69,1.0],[124,256,70,1.0],[124,256,71,1.0],[124,256,72,1.0],[124,256,73,1.0],[124,256,74,1.0],[124,256,75,1.0],[124,256,76,1.0],[124,256,77,1.0],[124,256,78,1.0],[124,256,79,1.0],[124,257,64,1.0],[124,257,65,1.0],[124,257,66,1.0],[124,257,67,1.0],[124,257,68,1.0],[124,257,69,1.0],[124,257,70,1.0],[124,257,71,1.0],[124,257,72,1.0],[124,257,73,1.0],[124,257,74,1.0],[124,257,75,1.0],[124,257,76,1.0],[124,257,77,1.0],[124,257,78,1.0],[124,257,79,1.0],[124,258,64,1.0],[124,258,65,1.0],[124,258,66,1.0],[124,258,67,1.0],[124,258,68,1.0],[124,258,69,1.0],[124,258,70,1.0],[124,258,71,1.0],[124,258,72,1.0],[124,258,73,1.0],[124,258,74,1.0],[124,258,75,1.0],[124,258,76,1.0],[124,258,77,1.0],[124,258,78,1.0],[124,258,79,1.0],[124,259,64,1.0],[124,259,65,1.0],[124,259,66,1.0],[124,259,67,1.0],[124,259,68,1.0],[124,259,69,1.0],[124,259,70,1.0],[124,259,71,1.0],[124,259,72,1.0],[124,259,73,1.0],[124,259,74,1.0],[124,259,75,1.0],[124,259,76,1.0],[124,259,77,1.0],[124,259,78,1.0],[124,259,79,1.0],[124,260,64,1.0],[124,260,65,1.0],[124,260,66,1.0],[124,260,67,1.0],[124,260,68,1.0],[124,260,69,1.0],[124,260,70,1.0],[124,260,71,1.0],[124,260,72,1.0],[124,260,73,1.0],[124,260,74,1.0],[124,260,75,1.0],[124,260,76,1.0],[124,260,77,1.0],[124,260,78,1.0],[124,260,79,1.0],[124,261,64,1.0],[124,261,65,1.0],[124,261,66,1.0],[124,261,67,1.0],[124,261,68,1.0],[124,261,69,1.0],[124,261,70,1.0],[124,261,71,1.0],[124,261,72,1.0],[124,261,73,1.0],[124,261,74,1.0],[124,261,75,1.0],[124,261,76,1.0],[124,261,77,1.0],[124,261,78,1.0],[124,261,79,1.0],[124,262,64,1.0],[124,262,65,1.0],[124,262,66,1.0],[124,262,67,1.0],[124,262,68,1.0],[124,262,69,1.0],[124,262,70,1.0],[124,262,71,1.0],[124,262,72,1.0],[124,262,73,1.0],[124,262,74,1.0],[124,262,75,1.0],[124,262,76,1.0],[124,262,77,1.0],[124,262,78,1.0],[124,262,79,1.0],[124,263,64,1.0],[124,263,65,1.0],[124,263,66,1.0],[124,263,67,1.0],[124,263,68,1.0],[124,263,69,1.0],[124,263,70,1.0],[124,263,71,1.0],[124,263,72,1.0],[124,263,73,1.0],[124,263,74,1.0],[124,263,75,1.0],[124,263,76,1.0],[124,263,77,1.0],[124,263,78,1.0],[124,263,79,1.0],[124,264,64,1.0],[124,264,65,1.0],[124,264,66,1.0],[124,264,67,1.0],[124,264,68,1.0],[124,264,69,1.0],[124,264,70,1.0],[124,264,71,1.0],[124,264,72,1.0],[124,264,73,1.0],[124,264,74,1.0],[124,264,75,1.0],[124,264,76,1.0],[124,264,77,1.0],[124,264,78,1.0],[124,264,79,1.0],[124,265,64,1.0],[124,265,65,1.0],[124,265,66,1.0],[124,265,67,1.0],[124,265,68,1.0],[124,265,69,1.0],[124,265,70,1.0],[124,265,71,1.0],[124,265,72,1.0],[124,265,73,1.0],[124,265,74,1.0],[124,265,75,1.0],[124,265,76,1.0],[124,265,77,1.0],[124,265,78,1.0],[124,265,79,1.0],[124,266,64,1.0],[124,266,65,1.0],[124,266,66,1.0],[124,266,67,1.0],[124,266,68,1.0],[124,266,69,1.0],[124,266,70,1.0],[124,266,71,1.0],[124,266,72,1.0],[124,266,73,1.0],[124,266,74,1.0],[124,266,75,1.0],[124,266,76,1.0],[124,266,77,1.0],[124,266,78,1.0],[124,266,79,1.0],[124,267,64,1.0],[124,267,65,1.0],[124,267,66,1.0],[124,267,67,1.0],[124,267,68,1.0],[124,267,69,1.0],[124,267,70,1.0],[124,267,71,1.0],[124,267,72,1.0],[124,267,73,1.0],[124,267,74,1.0],[124,267,75,1.0],[124,267,76,1.0],[124,267,77,1.0],[124,267,78,1.0],[124,267,79,1.0],[124,268,64,1.0],[124,268,65,1.0],[124,268,66,1.0],[124,268,67,1.0],[124,268,68,1.0],[124,268,69,1.0],[124,268,70,1.0],[124,268,71,1.0],[124,268,72,1.0],[124,268,73,1.0],[124,268,74,1.0],[124,268,75,1.0],[124,268,76,1.0],[124,268,77,1.0],[124,268,78,1.0],[124,268,79,1.0],[124,269,64,1.0],[124,269,65,1.0],[124,269,66,1.0],[124,269,67,1.0],[124,269,68,1.0],[124,269,69,1.0],[124,269,70,1.0],[124,269,71,1.0],[124,269,72,1.0],[124,269,73,1.0],[124,269,74,1.0],[124,269,75,1.0],[124,269,76,1.0],[124,269,77,1.0],[124,269,78,1.0],[124,269,79,1.0],[124,270,64,1.0],[124,270,65,1.0],[124,270,66,1.0],[124,270,67,1.0],[124,270,68,1.0],[124,270,69,1.0],[124,270,70,1.0],[124,270,71,1.0],[124,270,72,1.0],[124,270,73,1.0],[124,270,74,1.0],[124,270,75,1.0],[124,270,76,1.0],[124,270,77,1.0],[124,270,78,1.0],[124,270,79,1.0],[124,271,64,1.0],[124,271,65,1.0],[124,271,66,1.0],[124,271,67,1.0],[124,271,68,1.0],[124,271,69,1.0],[124,271,70,1.0],[124,271,71,1.0],[124,271,72,1.0],[124,271,73,1.0],[124,271,74,1.0],[124,271,75,1.0],[124,271,76,1.0],[124,271,77,1.0],[124,271,78,1.0],[124,271,79,1.0],[124,272,64,1.0],[124,272,65,1.0],[124,272,66,1.0],[124,272,67,1.0],[124,272,68,1.0],[124,272,69,1.0],[124,272,70,1.0],[124,272,71,1.0],[124,272,72,1.0],[124,272,73,1.0],[124,272,74,1.0],[124,272,75,1.0],[124,272,76,1.0],[124,272,77,1.0],[124,272,78,1.0],[124,272,79,1.0],[124,273,64,1.0],[124,273,65,1.0],[124,273,66,1.0],[124,273,67,1.0],[124,273,68,1.0],[124,273,69,1.0],[124,273,70,1.0],[124,273,71,1.0],[124,273,72,1.0],[124,273,73,1.0],[124,273,74,1.0],[124,273,75,1.0],[124,273,76,1.0],[124,273,77,1.0],[124,273,78,1.0],[124,273,79,1.0],[124,274,64,1.0],[124,274,65,1.0],[124,274,66,1.0],[124,274,67,1.0],[124,274,68,1.0],[124,274,69,1.0],[124,274,70,1.0],[124,274,71,1.0],[124,274,72,1.0],[124,274,73,1.0],[124,274,74,1.0],[124,274,75,1.0],[124,274,76,1.0],[124,274,77,1.0],[124,274,78,1.0],[124,274,79,1.0],[124,275,64,1.0],[124,275,65,1.0],[124,275,66,1.0],[124,275,67,1.0],[124,275,68,1.0],[124,275,69,1.0],[124,275,70,1.0],[124,275,71,1.0],[124,275,72,1.0],[124,275,73,1.0],[124,275,74,1.0],[124,275,75,1.0],[124,275,76,1.0],[124,275,77,1.0],[124,275,78,1.0],[124,275,79,1.0],[124,276,64,1.0],[124,276,65,1.0],[124,276,66,1.0],[124,276,67,1.0],[124,276,68,1.0],[124,276,69,1.0],[124,276,70,1.0],[124,276,71,1.0],[124,276,72,1.0],[124,276,73,1.0],[124,276,74,1.0],[124,276,75,1.0],[124,276,76,1.0],[124,276,77,1.0],[124,276,78,1.0],[124,276,79,1.0],[124,277,64,1.0],[124,277,65,1.0],[124,277,66,1.0],[124,277,67,1.0],[124,277,68,1.0],[124,277,69,1.0],[124,277,70,1.0],[124,277,71,1.0],[124,277,72,1.0],[124,277,73,1.0],[124,277,74,1.0],[124,277,75,1.0],[124,277,76,1.0],[124,277,77,1.0],[124,277,78,1.0],[124,277,79,1.0],[124,278,64,1.0],[124,278,65,1.0],[124,278,66,1.0],[124,278,67,1.0],[124,278,68,1.0],[124,278,69,1.0],[124,278,70,1.0],[124,278,71,1.0],[124,278,72,1.0],[124,278,73,1.0],[124,278,74,1.0],[124,278,75,1.0],[124,278,76,1.0],[124,278,77,1.0],[124,278,78,1.0],[124,278,79,1.0],[124,279,64,1.0],[124,279,65,1.0],[124,279,66,1.0],[124,279,67,1.0],[124,279,68,1.0],[124,279,69,1.0],[124,279,70,1.0],[124,279,71,1.0],[124,279,72,1.0],[124,279,73,1.0],[124,279,74,1.0],[124,279,75,1.0],[124,279,76,1.0],[124,279,77,1.0],[124,279,78,1.0],[124,279,79,1.0],[124,280,64,1.0],[124,280,65,1.0],[124,280,66,1.0],[124,280,67,1.0],[124,280,68,1.0],[124,280,69,1.0],[124,280,70,1.0],[124,280,71,1.0],[124,280,72,1.0],[124,280,73,1.0],[124,280,74,1.0],[124,280,75,1.0],[124,280,76,1.0],[124,280,77,1.0],[124,280,78,1.0],[124,280,79,1.0],[124,281,64,1.0],[124,281,65,1.0],[124,281,66,1.0],[124,281,67,1.0],[124,281,68,1.0],[124,281,69,1.0],[124,281,70,1.0],[124,281,71,1.0],[124,281,72,1.0],[124,281,73,1.0],[124,281,74,1.0],[124,281,75,1.0],[124,281,76,1.0],[124,281,77,1.0],[124,281,78,1.0],[124,281,79,1.0],[124,282,64,1.0],[124,282,65,1.0],[124,282,66,1.0],[124,282,67,1.0],[124,282,68,1.0],[124,282,69,1.0],[124,282,70,1.0],[124,282,71,1.0],[124,282,72,1.0],[124,282,73,1.0],[124,282,74,1.0],[124,282,75,1.0],[124,282,76,1.0],[124,282,77,1.0],[124,282,78,1.0],[124,282,79,1.0],[124,283,64,1.0],[124,283,65,1.0],[124,283,66,1.0],[124,283,67,1.0],[124,283,68,1.0],[124,283,69,1.0],[124,283,70,1.0],[124,283,71,1.0],[124,283,72,1.0],[124,283,73,1.0],[124,283,74,1.0],[124,283,75,1.0],[124,283,76,1.0],[124,283,77,1.0],[124,283,78,1.0],[124,283,79,1.0],[124,284,64,1.0],[124,284,65,1.0],[124,284,66,1.0],[124,284,67,1.0],[124,284,68,1.0],[124,284,69,1.0],[124,284,70,1.0],[124,284,71,1.0],[124,284,72,1.0],[124,284,73,1.0],[124,284,74,1.0],[124,284,75,1.0],[124,284,76,1.0],[124,284,77,1.0],[124,284,78,1.0],[124,284,79,1.0],[124,285,64,1.0],[124,285,65,1.0],[124,285,66,1.0],[124,285,67,1.0],[124,285,68,1.0],[124,285,69,1.0],[124,285,70,1.0],[124,285,71,1.0],[124,285,72,1.0],[124,285,73,1.0],[124,285,74,1.0],[124,285,75,1.0],[124,285,76,1.0],[124,285,77,1.0],[124,285,78,1.0],[124,285,79,1.0],[124,286,64,1.0],[124,286,65,1.0],[124,286,66,1.0],[124,286,67,1.0],[124,286,68,1.0],[124,286,69,1.0],[124,286,70,1.0],[124,286,71,1.0],[124,286,72,1.0],[124,286,73,1.0],[124,286,74,1.0],[124,286,75,1.0],[124,286,76,1.0],[124,286,77,1.0],[124,286,78,1.0],[124,286,79,1.0],[124,287,64,1.0],[124,287,65,1.0],[124,287,66,1.0],[124,287,67,1.0],[124,287,68,1.0],[124,287,69,1.0],[124,287,70,1.0],[124,287,71,1.0],[124,287,72,1.0],[124,287,73,1.0],[124,287,74,1.0],[124,287,75,1.0],[124,287,76,1.0],[124,287,77,1.0],[124,287,78,1.0],[124,287,79,1.0],[124,288,64,1.0],[124,288,65,1.0],[124,288,66,1.0],[124,288,67,1.0],[124,288,68,1.0],[124,288,69,1.0],[124,288,70,1.0],[124,288,71,1.0],[124,288,72,1.0],[124,288,73,1.0],[124,288,74,1.0],[124,288,75,1.0],[124,288,76,1.0],[124,288,77,1.0],[124,288,78,1.0],[124,288,79,1.0],[124,289,64,1.0],[124,289,65,1.0],[124,289,66,1.0],[124,289,67,1.0],[124,289,68,1.0],[124,289,69,1.0],[124,289,70,1.0],[124,289,71,1.0],[124,289,72,1.0],[124,289,73,1.0],[124,289,74,1.0],[124,289,75,1.0],[124,289,76,1.0],[124,289,77,1.0],[124,289,78,1.0],[124,289,79,1.0],[124,290,64,1.0],[124,290,65,1.0],[124,290,66,1.0],[124,290,67,1.0],[124,290,68,1.0],[124,290,69,1.0],[124,290,70,1.0],[124,290,71,1.0],[124,290,72,1.0],[124,290,73,1.0],[124,290,74,1.0],[124,290,75,1.0],[124,290,76,1.0],[124,290,77,1.0],[124,290,78,1.0],[124,290,79,1.0],[124,291,64,1.0],[124,291,65,1.0],[124,291,66,1.0],[124,291,67,1.0],[124,291,68,1.0],[124,291,69,1.0],[124,291,70,1.0],[124,291,71,1.0],[124,291,72,1.0],[124,291,73,1.0],[124,291,74,1.0],[124,291,75,1.0],[124,291,76,1.0],[124,291,77,1.0],[124,291,78,1.0],[124,291,79,1.0],[124,292,64,1.0],[124,292,65,1.0],[124,292,66,1.0],[124,292,67,1.0],[124,292,68,1.0],[124,292,69,1.0],[124,292,70,1.0],[124,292,71,1.0],[124,292,72,1.0],[124,292,73,1.0],[124,292,74,1.0],[124,292,75,1.0],[124,292,76,1.0],[124,292,77,1.0],[124,292,78,1.0],[124,292,79,1.0],[124,293,64,1.0],[124,293,65,1.0],[124,293,66,1.0],[124,293,67,1.0],[124,293,68,1.0],[124,293,69,1.0],[124,293,70,1.0],[124,293,71,1.0],[124,293,72,1.0],[124,293,73,1.0],[124,293,74,1.0],[124,293,75,1.0],[124,293,76,1.0],[124,293,77,1.0],[124,293,78,1.0],[124,293,79,1.0],[124,294,64,1.0],[124,294,65,1.0],[124,294,66,1.0],[124,294,67,1.0],[124,294,68,1.0],[124,294,69,1.0],[124,294,70,1.0],[124,294,71,1.0],[124,294,72,1.0],[124,294,73,1.0],[124,294,74,1.0],[124,294,75,1.0],[124,294,76,1.0],[124,294,77,1.0],[124,294,78,1.0],[124,294,79,1.0],[124,295,64,1.0],[124,295,65,1.0],[124,295,66,1.0],[124,295,67,1.0],[124,295,68,1.0],[124,295,69,1.0],[124,295,70,1.0],[124,295,71,1.0],[124,295,72,1.0],[124,295,73,1.0],[124,295,74,1.0],[124,295,75,1.0],[124,295,76,1.0],[124,295,77,1.0],[124,295,78,1.0],[124,295,79,1.0],[124,296,64,1.0],[124,296,65,1.0],[124,296,66,1.0],[124,296,67,1.0],[124,296,68,1.0],[124,296,69,1.0],[124,296,70,1.0],[124,296,71,1.0],[124,296,72,1.0],[124,296,73,1.0],[124,296,74,1.0],[124,296,75,1.0],[124,296,76,1.0],[124,296,77,1.0],[124,296,78,1.0],[124,296,79,1.0],[124,297,64,1.0],[124,297,65,1.0],[124,297,66,1.0],[124,297,67,1.0],[124,297,68,1.0],[124,297,69,1.0],[124,297,70,1.0],[124,297,71,1.0],[124,297,72,1.0],[124,297,73,1.0],[124,297,74,1.0],[124,297,75,1.0],[124,297,76,1.0],[124,297,77,1.0],[124,297,78,1.0],[124,297,79,1.0],[124,298,64,1.0],[124,298,65,1.0],[124,298,66,1.0],[124,298,67,1.0],[124,298,68,1.0],[124,298,69,1.0],[124,298,70,1.0],[124,298,71,1.0],[124,298,72,1.0],[124,298,73,1.0],[124,298,74,1.0],[124,298,75,1.0],[124,298,76,1.0],[124,298,77,1.0],[124,298,78,1.0],[124,298,79,1.0],[124,299,64,1.0],[124,299,65,1.0],[124,299,66,1.0],[124,299,67,1.0],[124,299,68,1.0],[124,299,69,1.0],[124,299,70,1.0],[124,299,71,1.0],[124,299,72,1.0],[124,299,73,1.0],[124,299,74,1.0],[124,299,75,1.0],[124,299,76,1.0],[124,299,77,1.0],[124,299,78,1.0],[124,299,79,1.0],[124,300,64,1.0],[124,300,65,1.0],[124,300,66,1.0],[124,300,67,1.0],[124,300,68,1.0],[124,300,69,1.0],[124,300,70,1.0],[124,300,71,1.0],[124,300,72,1.0],[124,300,73,1.0],[124,300,74,1.0],[124,300,75,1.0],[124,300,76,1.0],[124,300,77,1.0],[124,300,78,1.0],[124,300,79,1.0],[124,301,64,1.0],[124,301,65,1.0],[124,301,66,1.0],[124,301,67,1.0],[124,301,68,1.0],[124,301,69,1.0],[124,301,70,1.0],[124,301,71,1.0],[124,301,72,1.0],[124,301,73,1.0],[124,301,74,1.0],[124,301,75,1.0],[124,301,76,1.0],[124,301,77,1.0],[124,301,78,1.0],[124,301,79,1.0],[124,302,64,1.0],[124,302,65,1.0],[124,302,66,1.0],[124,302,67,1.0],[124,302,68,1.0],[124,302,69,1.0],[124,302,70,1.0],[124,302,71,1.0],[124,302,72,1.0],[124,302,73,1.0],[124,302,74,1.0],[124,302,75,1.0],[124,302,76,1.0],[124,302,77,1.0],[124,302,78,1.0],[124,302,79,1.0],[124,303,64,1.0],[124,303,65,1.0],[124,303,66,1.0],[124,303,67,1.0],[124,303,68,1.0],[124,303,69,1.0],[124,303,70,1.0],[124,303,71,1.0],[124,303,72,1.0],[124,303,73,1.0],[124,303,74,1.0],[124,303,75,1.0],[124,303,76,1.0],[124,303,77,1.0],[124,303,78,1.0],[124,303,79,1.0],[124,304,64,1.0],[124,304,65,1.0],[124,304,66,1.0],[124,304,67,1.0],[124,304,68,1.0],[124,304,69,1.0],[124,304,70,1.0],[124,304,71,1.0],[124,304,72,1.0],[124,304,73,1.0],[124,304,74,1.0],[124,304,75,1.0],[124,304,76,1.0],[124,304,77,1.0],[124,304,78,1.0],[124,304,79,1.0],[124,305,64,1.0],[124,305,65,1.0],[124,305,66,1.0],[124,305,67,1.0],[124,305,68,1.0],[124,305,69,1.0],[124,305,70,1.0],[124,305,71,1.0],[124,305,72,1.0],[124,305,73,1.0],[124,305,74,1.0],[124,305,75,1.0],[124,305,76,1.0],[124,305,77,1.0],[124,305,78,1.0],[124,305,79,1.0],[124,306,64,1.0],[124,306,65,1.0],[124,306,66,1.0],[124,306,67,1.0],[124,306,68,1.0],[124,306,69,1.0],[124,306,70,1.0],[124,306,71,1.0],[124,306,72,1.0],[124,306,73,1.0],[124,306,74,1.0],[124,306,75,1.0],[124,306,76,1.0],[124,306,77,1.0],[124,306,78,1.0],[124,306,79,1.0],[124,307,64,1.0],[124,307,65,1.0],[124,307,66,1.0],[124,307,67,1.0],[124,307,68,1.0],[124,307,69,1.0],[124,307,70,1.0],[124,307,71,1.0],[124,307,72,1.0],[124,307,73,1.0],[124,307,74,1.0],[124,307,75,1.0],[124,307,76,1.0],[124,307,77,1.0],[124,307,78,1.0],[124,307,79,1.0],[124,308,64,1.0],[124,308,65,1.0],[124,308,66,1.0],[124,308,67,1.0],[124,308,68,1.0],[124,308,69,1.0],[124,308,70,1.0],[124,308,71,1.0],[124,308,72,1.0],[124,308,73,1.0],[124,308,74,1.0],[124,308,75,1.0],[124,308,76,1.0],[124,308,77,1.0],[124,308,78,1.0],[124,308,79,1.0],[124,309,64,1.0],[124,309,65,1.0],[124,309,66,1.0],[124,309,67,1.0],[124,309,68,1.0],[124,309,69,1.0],[124,309,70,1.0],[124,309,71,1.0],[124,309,72,1.0],[124,309,73,1.0],[124,309,74,1.0],[124,309,75,1.0],[124,309,76,1.0],[124,309,77,1.0],[124,309,78,1.0],[124,309,79,1.0],[124,310,64,1.0],[124,310,65,1.0],[124,310,66,1.0],[124,310,67,1.0],[124,310,68,1.0],[124,310,69,1.0],[124,310,70,1.0],[124,310,71,1.0],[124,310,72,1.0],[124,310,73,1.0],[124,310,74,1.0],[124,310,75,1.0],[124,310,76,1.0],[124,310,77,1.0],[124,310,78,1.0],[124,310,79,1.0],[124,311,64,1.0],[124,311,65,1.0],[124,311,66,1.0],[124,311,67,1.0],[124,311,68,1.0],[124,311,69,1.0],[124,311,70,1.0],[124,311,71,1.0],[124,311,72,1.0],[124,311,73,1.0],[124,311,74,1.0],[124,311,75,1.0],[124,311,76,1.0],[124,311,77,1.0],[124,311,78,1.0],[124,311,79,1.0],[124,312,64,1.0],[124,312,65,1.0],[124,312,66,1.0],[124,312,67,1.0],[124,312,68,1.0],[124,312,69,1.0],[124,312,70,1.0],[124,312,71,1.0],[124,312,72,1.0],[124,312,73,1.0],[124,312,74,1.0],[124,312,75,1.0],[124,312,76,1.0],[124,312,77,1.0],[124,312,78,1.0],[124,312,79,1.0],[124,313,64,1.0],[124,313,65,1.0],[124,313,66,1.0],[124,313,67,1.0],[124,313,68,1.0],[124,313,69,1.0],[124,313,70,1.0],[124,313,71,1.0],[124,313,72,1.0],[124,313,73,1.0],[124,313,74,1.0],[124,313,75,1.0],[124,313,76,1.0],[124,313,77,1.0],[124,313,78,1.0],[124,313,79,1.0],[124,314,64,1.0],[124,314,65,1.0],[124,314,66,1.0],[124,314,67,1.0],[124,314,68,1.0],[124,314,69,1.0],[124,314,70,1.0],[124,314,71,1.0],[124,314,72,1.0],[124,314,73,1.0],[124,314,74,1.0],[124,314,75,1.0],[124,314,76,1.0],[124,314,77,1.0],[124,314,78,1.0],[124,314,79,1.0],[124,315,64,1.0],[124,315,65,1.0],[124,315,66,1.0],[124,315,67,1.0],[124,315,68,1.0],[124,315,69,1.0],[124,315,70,1.0],[124,315,71,1.0],[124,315,72,1.0],[124,315,73,1.0],[124,315,74,1.0],[124,315,75,1.0],[124,315,76,1.0],[124,315,77,1.0],[124,315,78,1.0],[124,315,79,1.0],[124,316,64,1.0],[124,316,65,1.0],[124,316,66,1.0],[124,316,67,1.0],[124,316,68,1.0],[124,316,69,1.0],[124,316,70,1.0],[124,316,71,1.0],[124,316,72,1.0],[124,316,73,1.0],[124,316,74,1.0],[124,316,75,1.0],[124,316,76,1.0],[124,316,77,1.0],[124,316,78,1.0],[124,316,79,1.0],[124,317,64,1.0],[124,317,65,1.0],[124,317,66,1.0],[124,317,67,1.0],[124,317,68,1.0],[124,317,69,1.0],[124,317,70,1.0],[124,317,71,1.0],[124,317,72,1.0],[124,317,73,1.0],[124,317,74,1.0],[124,317,75,1.0],[124,317,76,1.0],[124,317,77,1.0],[124,317,78,1.0],[124,317,79,1.0],[124,318,64,1.0],[124,318,65,1.0],[124,318,66,1.0],[124,318,67,1.0],[124,318,68,1.0],[124,318,69,1.0],[124,318,70,1.0],[124,318,71,1.0],[124,318,72,1.0],[124,318,73,1.0],[124,318,74,1.0],[124,318,75,1.0],[124,318,76,1.0],[124,318,77,1.0],[124,318,78,1.0],[124,318,79,1.0],[124,319,64,1.0],[124,319,65,1.0],[124,319,66,1.0],[124,319,67,1.0],[124,319,68,1.0],[124,319,69,1.0],[124,319,70,1.0],[124,319,71,1.0],[124,319,72,1.0],[124,319,73,1.0],[124,319,74,1.0],[124,319,75,1.0],[124,319,76,1.0],[124,319,77,1.0],[124,319,78,1.0],[124,319,79,1.0],[125,-64,64,1.0],[125,-64,65,1.0],[125,-64,66,1.0],[125,-64,67,1.0],[125,-64,68,1.0],[125,-64,69,1.0],[125,-64,70,1.0],[125,-64,71,1.0],[125,-64,72,1.0],[125,-64,73,1.0],[125,-64,74,1.0],[125,-64,75,1.0],[125,-64,76,1.0],[125,-64,77,1.0],[125,-64,78,1.0],[125,-64,79,1.0],[125,-63,64,1.0],[125,-63,65,1.0],[125,-63,66,1.0],[125,-63,67,1.0],[125,-63,68,1.0],[125,-63,69,1.0],[125,-63,70,1.0],[125,-63,71,1.0],[125,-63,72,1.0],[125,-63,73,1.0],[125,-63,74,1.0],[125,-63,75,1.0],[125,-63,76,1.0],[125,-63,77,1.0],[125,-63,78,1.0],[125,-63,79,1.0],[125,-62,64,1.0],[125,-62,65,1.0],[125,-62,66,1.0],[125,-62,67,1.0],[125,-62,68,1.0],[125,-62,69,1.0],[125,-62,70,1.0],[125,-62,71,1.0],[125,-62,72,1.0],[125,-62,73,1.0],[125,-62,74,1.0],[125,-62,75,1.0],[125,-62,76,1.0],[125,-62,77,1.0],[125,-62,78,1.0],[125,-62,79,1.0],[125,-61,64,1.0],[125,-61,65,1.0],[125,-61,66,1.0],[125,-61,67,1.0],[125,-61,68,1.0],[125,-61,69,1.0],[125,-61,70,1.0],[125,-61,71,1.0],[125,-61,72,1.0],[125,-61,73,1.0],[125,-61,74,1.0],[125,-61,75,1.0],[125,-61,76,1.0],[125,-61,77,1.0],[125,-61,78,1.0],[125,-61,79,1.0],[125,-60,64,1.0],[125,-60,65,1.0],[125,-60,66,1.0],[125,-60,67,1.0],[125,-60,68,1.0],[125,-60,69,1.0],[125,-60,70,1.0],[125,-60,71,1.0],[125,-60,72,1.0],[125,-60,73,1.0],[125,-60,74,1.0],[125,-60,75,1.0],[125,-60,76,1.0],[125,-60,77,1.0],[125,-60,78,1.0],[125,-60,79,1.0],[125,-59,64,1.0],[125,-59,65,1.0],[125,-59,66,1.0],[125,-59,67,1.0],[125,-59,68,1.0],[125,-59,69,1.0],[125,-59,70,1.0],[125,-59,71,1.0],[125,-59,72,1.0],[125,-59,73,1.0],[125,-59,74,1.0],[125,-59,75,1.0],[125,-59,76,1.0],[125,-59,77,1.0],[125,-59,78,1.0],[125,-59,79,1.0],[125,-58,64,1.0],[125,-58,65,1.0],[125,-58,66,1.0],[125,-58,67,1.0],[125,-58,68,1.0],[125,-58,69,1.0],[125,-58,70,1.0],[125,-58,71,1.0],[125,-58,72,1.0],[125,-58,73,1.0],[125,-58,74,1.0],[125,-58,75,1.0],[125,-58,76,1.0],[125,-58,77,1.0],[125,-58,78,1.0],[125,-58,79,1.0],[125,-57,64,1.0],[125,-57,65,1.0],[125,-57,66,1.0],[125,-57,67,1.0],[125,-57,68,1.0],[125,-57,69,1.0],[125,-57,70,1.0],[125,-57,71,1.0],[125,-57,72,1.0],[125,-57,73,1.0],[125,-57,74,1.0],[125,-57,75,1.0],[125,-57,76,1.0],[125,-57,77,1.0],[125,-57,78,1.0],[125,-57,79,1.0],[125,-56,64,1.0],[125,-56,65,1.0],[125,-56,66,1.0],[125,-56,67,1.0],[125,-56,68,1.0],[125,-56,69,1.0],[125,-56,70,1.0],[125,-56,71,1.0],[125,-56,72,1.0],[125,-56,73,1.0],[125,-56,74,1.0],[125,-56,75,1.0],[125,-56,76,1.0],[125,-56,77,1.0],[125,-56,78,1.0],[125,-56,79,1.0],[125,-55,64,1.0],[125,-55,65,1.0],[125,-55,66,1.0],[125,-55,67,1.0],[125,-55,68,1.0],[125,-55,69,1.0],[125,-55,70,1.0],[125,-55,71,1.0],[125,-55,72,1.0],[125,-55,73,1.0],[125,-55,74,1.0],[125,-55,75,1.0],[125,-55,76,1.0],[125,-55,77,1.0],[125,-55,78,1.0],[125,-55,79,1.0],[125,-54,64,1.0],[125,-54,65,1.0],[125,-54,66,1.0],[125,-54,67,1.0],[125,-54,68,1.0],[125,-54,69,1.0],[125,-54,70,1.0],[125,-54,71,1.0],[125,-54,72,1.0],[125,-54,73,1.0],[125,-54,74,1.0],[125,-54,75,1.0],[125,-54,76,1.0],[125,-54,77,1.0],[125,-54,78,1.0],[125,-54,79,1.0],[125,-53,64,1.0],[125,-53,65,1.0],[125,-53,66,1.0],[125,-53,67,1.0],[125,-53,68,1.0],[125,-53,69,1.0],[125,-53,70,1.0],[125,-53,71,1.0],[125,-53,72,1.0],[125,-53,73,1.0],[125,-53,74,1.0],[125,-53,75,1.0],[125,-53,76,1.0],[125,-53,77,1.0],[125,-53,78,1.0],[125,-53,79,1.0],[125,-52,64,1.0],[125,-52,65,1.0],[125,-52,66,1.0],[125,-52,67,1.0],[125,-52,68,1.0],[125,-52,69,1.0],[125,-52,70,1.0],[125,-52,71,1.0],[125,-52,72,1.0],[125,-52,73,1.0],[125,-52,74,1.0],[125,-52,75,1.0],[125,-52,76,1.0],[125,-52,77,1.0],[125,-52,78,1.0],[125,-52,79,1.0],[125,-51,64,1.0],[125,-51,65,1.0],[125,-51,66,1.0],[125,-51,67,1.0],[125,-51,68,1.0],[125,-51,69,1.0],[125,-51,70,1.0],[125,-51,71,1.0],[125,-51,72,1.0],[125,-51,73,1.0],[125,-51,74,1.0],[125,-51,75,1.0],[125,-51,76,1.0],[125,-51,77,1.0],[125,-51,78,1.0],[125,-51,79,1.0],[125,-50,64,1.0],[125,-50,65,1.0],[125,-50,66,1.0],[125,-50,67,1.0],[125,-50,68,1.0],[125,-50,69,1.0],[125,-50,70,1.0],[125,-50,71,1.0],[125,-50,72,1.0],[125,-50,73,1.0],[125,-50,74,1.0],[125,-50,75,1.0],[125,-50,76,1.0],[125,-50,77,1.0],[125,-50,78,1.0],[125,-50,79,1.0],[125,-49,64,1.0],[125,-49,65,1.0],[125,-49,66,1.0],[125,-49,67,1.0],[125,-49,68,1.0],[125,-49,69,1.0],[125,-49,70,1.0],[125,-49,71,1.0],[125,-49,72,1.0],[125,-49,73,1.0],[125,-49,74,1.0],[125,-49,75,1.0],[125,-49,76,1.0],[125,-49,77,1.0],[125,-49,78,1.0],[125,-49,79,1.0],[125,-48,64,1.0],[125,-48,65,1.0],[125,-48,66,1.0],[125,-48,67,1.0],[125,-48,68,1.0],[125,-48,69,1.0],[125,-48,70,1.0],[125,-48,71,1.0],[125,-48,72,1.0],[125,-48,73,1.0],[125,-48,74,1.0],[125,-48,75,1.0],[125,-48,76,1.0],[125,-48,77,1.0],[125,-48,78,1.0],[125,-48,79,1.0],[125,-47,64,1.0],[125,-47,65,1.0],[125,-47,66,1.0],[125,-47,67,1.0],[125,-47,68,1.0],[125,-47,69,1.0],[125,-47,70,1.0],[125,-47,71,1.0],[125,-47,72,1.0],[125,-47,73,1.0],[125,-47,74,1.0],[125,-47,75,1.0],[125,-47,76,1.0],[125,-47,77,1.0],[125,-47,78,1.0],[125,-47,79,1.0],[125,-46,64,1.0],[125,-46,65,1.0],[125,-46,66,1.0],[125,-46,67,1.0],[125,-46,68,1.0],[125,-46,69,1.0],[125,-46,70,1.0],[125,-46,71,1.0],[125,-46,72,1.0],[125,-46,73,1.0],[125,-46,74,1.0],[125,-46,75,1.0],[125,-46,76,1.0],[125,-46,77,1.0],[125,-46,78,1.0],[125,-46,79,1.0],[125,-45,64,1.0],[125,-45,65,1.0],[125,-45,66,1.0],[125,-45,67,1.0],[125,-45,68,1.0],[125,-45,69,1.0],[125,-45,70,1.0],[125,-45,71,1.0],[125,-45,72,1.0],[125,-45,73,1.0],[125,-45,74,1.0],[125,-45,75,1.0],[125,-45,76,1.0],[125,-45,77,1.0],[125,-45,78,1.0],[125,-45,79,1.0],[125,-44,64,1.0],[125,-44,65,1.0],[125,-44,66,1.0],[125,-44,67,1.0],[125,-44,68,1.0],[125,-44,69,1.0],[125,-44,70,1.0],[125,-44,71,1.0],[125,-44,72,1.0],[125,-44,73,1.0],[125,-44,74,1.0],[125,-44,75,1.0],[125,-44,76,1.0],[125,-44,77,1.0],[125,-44,78,1.0],[125,-44,79,1.0],[125,-43,64,1.0],[125,-43,65,1.0],[125,-43,66,1.0],[125,-43,67,1.0],[125,-43,68,1.0],[125,-43,69,1.0],[125,-43,70,1.0],[125,-43,71,1.0],[125,-43,72,1.0],[125,-43,73,1.0],[125,-43,74,1.0],[125,-43,75,1.0],[125,-43,76,1.0],[125,-43,77,1.0],[125,-43,78,1.0],[125,-43,79,1.0],[125,-42,64,1.0],[125,-42,65,1.0],[125,-42,66,1.0],[125,-42,67,1.0],[125,-42,68,1.0],[125,-42,69,1.0],[125,-42,70,1.0],[125,-42,71,1.0],[125,-42,72,1.0],[125,-42,73,1.0],[125,-42,74,1.0],[125,-42,75,1.0],[125,-42,76,1.0],[125,-42,77,1.0],[125,-42,78,1.0],[125,-42,79,1.0],[125,-41,64,1.0],[125,-41,65,1.0],[125,-41,66,1.0],[125,-41,67,1.0],[125,-41,68,1.0],[125,-41,69,1.0],[125,-41,70,1.0],[125,-41,71,1.0],[125,-41,72,1.0],[125,-41,73,1.0],[125,-41,74,1.0],[125,-41,75,1.0],[125,-41,76,1.0],[125,-41,77,1.0],[125,-41,78,1.0],[125,-41,79,1.0],[125,-40,64,1.0],[125,-40,65,1.0],[125,-40,66,1.0],[125,-40,67,1.0],[125,-40,68,1.0],[125,-40,69,1.0],[125,-40,70,1.0],[125,-40,71,1.0],[125,-40,72,1.0],[125,-40,73,1.0],[125,-40,74,1.0],[125,-40,75,1.0],[125,-40,76,1.0],[125,-40,77,1.0],[125,-40,78,1.0],[125,-40,79,1.0],[125,-39,64,1.0],[125,-39,65,1.0],[125,-39,66,1.0],[125,-39,67,1.0],[125,-39,68,1.0],[125,-39,69,1.0],[125,-39,70,1.0],[125,-39,71,1.0],[125,-39,72,1.0],[125,-39,73,1.0],[125,-39,74,1.0],[125,-39,75,1.0],[125,-39,76,1.0],[125,-39,77,1.0],[125,-39,78,1.0],[125,-39,79,1.0],[125,-38,64,1.0],[125,-38,65,1.0],[125,-38,66,1.0],[125,-38,67,1.0],[125,-38,68,1.0],[125,-38,69,1.0],[125,-38,70,1.0],[125,-38,71,1.0],[125,-38,72,1.0],[125,-38,73,1.0],[125,-38,74,1.0],[125,-38,75,1.0],[125,-38,76,1.0],[125,-38,77,1.0],[125,-38,78,1.0],[125,-38,79,1.0],[125,-37,64,1.0],[125,-37,65,1.0],[125,-37,66,1.0],[125,-37,67,1.0],[125,-37,68,1.0],[125,-37,69,1.0],[125,-37,70,1.0],[125,-37,71,1.0],[125,-37,72,1.0],[125,-37,73,1.0],[125,-37,74,1.0],[125,-37,75,1.0],[125,-37,76,1.0],[125,-37,77,1.0],[125,-37,78,1.0],[125,-37,79,1.0],[125,-36,64,1.0],[125,-36,65,1.0],[125,-36,66,1.0],[125,-36,67,1.0],[125,-36,68,1.0],[125,-36,69,1.0],[125,-36,70,1.0],[125,-36,71,1.0],[125,-36,72,1.0],[125,-36,73,1.0],[125,-36,74,1.0],[125,-36,75,1.0],[125,-36,76,1.0],[125,-36,77,1.0],[125,-36,78,1.0],[125,-36,79,1.0],[125,-35,64,1.0],[125,-35,65,1.0],[125,-35,66,1.0],[125,-35,67,1.0],[125,-35,68,1.0],[125,-35,69,1.0],[125,-35,70,1.0],[125,-35,71,1.0],[125,-35,72,1.0],[125,-35,73,1.0],[125,-35,74,1.0],[125,-35,75,1.0],[125,-35,76,1.0],[125,-35,77,1.0],[125,-35,78,1.0],[125,-35,79,1.0],[125,-34,64,1.0],[125,-34,65,1.0],[125,-34,66,1.0],[125,-34,67,1.0],[125,-34,68,1.0],[125,-34,69,1.0],[125,-34,70,1.0],[125,-34,71,1.0],[125,-34,72,1.0],[125,-34,73,1.0],[125,-34,74,1.0],[125,-34,75,1.0],[125,-34,76,1.0],[125,-34,77,1.0],[125,-34,78,1.0],[125,-34,79,1.0],[125,-33,64,1.0],[125,-33,65,1.0],[125,-33,66,1.0],[125,-33,67,1.0],[125,-33,68,1.0],[125,-33,69,1.0],[125,-33,70,1.0],[125,-33,71,1.0],[125,-33,72,1.0],[125,-33,73,1.0],[125,-33,74,1.0],[125,-33,75,1.0],[125,-33,76,1.0],[125,-33,77,1.0],[125,-33,78,1.0],[125,-33,79,1.0],[125,-32,64,1.0],[125,-32,65,1.0],[125,-32,66,1.0],[125,-32,67,1.0],[125,-32,68,1.0],[125,-32,69,1.0],[125,-32,70,1.0],[125,-32,71,1.0],[125,-32,72,1.0],[125,-32,73,1.0],[125,-32,74,1.0],[125,-32,75,1.0],[125,-32,76,1.0],[125,-32,77,1.0],[125,-32,78,1.0],[125,-32,79,1.0],[125,-31,64,1.0],[125,-31,65,1.0],[125,-31,66,1.0],[125,-31,67,1.0],[125,-31,68,1.0],[125,-31,69,1.0],[125,-31,70,1.0],[125,-31,71,1.0],[125,-31,72,1.0],[125,-31,73,1.0],[125,-31,74,1.0],[125,-31,75,1.0],[125,-31,76,1.0],[125,-31,77,1.0],[125,-31,78,1.0],[125,-31,79,1.0],[125,-30,64,1.0],[125,-30,65,1.0],[125,-30,66,1.0],[125,-30,67,1.0],[125,-30,68,1.0],[125,-30,69,1.0],[125,-30,70,1.0],[125,-30,71,1.0],[125,-30,72,1.0],[125,-30,73,1.0],[125,-30,74,1.0],[125,-30,75,1.0],[125,-30,76,1.0],[125,-30,77,1.0],[125,-30,78,1.0],[125,-30,79,1.0],[125,-29,64,1.0],[125,-29,65,1.0],[125,-29,66,1.0],[125,-29,67,1.0],[125,-29,68,1.0],[125,-29,69,1.0],[125,-29,70,1.0],[125,-29,71,1.0],[125,-29,72,1.0],[125,-29,73,1.0],[125,-29,74,1.0],[125,-29,75,1.0],[125,-29,76,1.0],[125,-29,77,1.0],[125,-29,78,1.0],[125,-29,79,1.0],[125,-28,64,1.0],[125,-28,65,1.0],[125,-28,66,1.0],[125,-28,67,1.0],[125,-28,68,1.0],[125,-28,69,1.0],[125,-28,70,1.0],[125,-28,71,1.0],[125,-28,72,1.0],[125,-28,73,1.0],[125,-28,74,1.0],[125,-28,75,1.0],[125,-28,76,1.0],[125,-28,77,1.0],[125,-28,78,1.0],[125,-28,79,1.0],[125,-27,64,1.0],[125,-27,65,1.0],[125,-27,66,1.0],[125,-27,67,1.0],[125,-27,68,1.0],[125,-27,69,1.0],[125,-27,70,1.0],[125,-27,71,1.0],[125,-27,72,1.0],[125,-27,73,1.0],[125,-27,74,1.0],[125,-27,75,1.0],[125,-27,76,1.0],[125,-27,77,1.0],[125,-27,78,1.0],[125,-27,79,1.0],[125,-26,64,1.0],[125,-26,65,1.0],[125,-26,66,1.0],[125,-26,67,1.0],[125,-26,68,1.0],[125,-26,69,1.0],[125,-26,70,1.0],[125,-26,71,1.0],[125,-26,72,1.0],[125,-26,73,1.0],[125,-26,74,1.0],[125,-26,75,1.0],[125,-26,76,1.0],[125,-26,77,1.0],[125,-26,78,1.0],[125,-26,79,1.0],[125,-25,64,1.0],[125,-25,65,1.0],[125,-25,66,1.0],[125,-25,67,1.0],[125,-25,68,1.0],[125,-25,69,1.0],[125,-25,70,1.0],[125,-25,71,1.0],[125,-25,72,1.0],[125,-25,73,1.0],[125,-25,74,1.0],[125,-25,75,1.0],[125,-25,76,1.0],[125,-25,77,1.0],[125,-25,78,1.0],[125,-25,79,1.0],[125,-24,64,1.0],[125,-24,65,1.0],[125,-24,66,1.0],[125,-24,67,1.0],[125,-24,68,1.0],[125,-24,69,1.0],[125,-24,70,1.0],[125,-24,71,1.0],[125,-24,72,1.0],[125,-24,73,1.0],[125,-24,74,1.0],[125,-24,75,1.0],[125,-24,76,1.0],[125,-24,77,1.0],[125,-24,78,1.0],[125,-24,79,1.0],[125,-23,64,1.0],[125,-23,65,1.0],[125,-23,66,1.0],[125,-23,67,1.0],[125,-23,68,1.0],[125,-23,69,1.0],[125,-23,70,1.0],[125,-23,71,1.0],[125,-23,72,1.0],[125,-23,73,1.0],[125,-23,74,1.0],[125,-23,75,1.0],[125,-23,76,1.0],[125,-23,77,1.0],[125,-23,78,1.0],[125,-23,79,1.0],[125,-22,64,1.0],[125,-22,65,1.0],[125,-22,66,1.0],[125,-22,67,1.0],[125,-22,68,1.0],[125,-22,69,1.0],[125,-22,70,1.0],[125,-22,71,1.0],[125,-22,72,1.0],[125,-22,73,1.0],[125,-22,74,1.0],[125,-22,75,1.0],[125,-22,76,1.0],[125,-22,77,1.0],[125,-22,78,1.0],[125,-22,79,1.0],[125,-21,64,1.0],[125,-21,65,1.0],[125,-21,66,1.0],[125,-21,67,1.0],[125,-21,68,1.0],[125,-21,69,1.0],[125,-21,70,1.0],[125,-21,71,1.0],[125,-21,72,1.0],[125,-21,73,1.0],[125,-21,74,1.0],[125,-21,75,1.0],[125,-21,76,1.0],[125,-21,77,1.0],[125,-21,78,1.0],[125,-21,79,1.0],[125,-20,64,1.0],[125,-20,65,1.0],[125,-20,66,1.0],[125,-20,67,1.0],[125,-20,68,1.0],[125,-20,69,1.0],[125,-20,70,1.0],[125,-20,71,1.0],[125,-20,72,1.0],[125,-20,73,1.0],[125,-20,74,1.0],[125,-20,75,1.0],[125,-20,76,1.0],[125,-20,77,1.0],[125,-20,78,1.0],[125,-20,79,1.0],[125,-19,64,1.0],[125,-19,65,1.0],[125,-19,66,1.0],[125,-19,67,1.0],[125,-19,68,1.0],[125,-19,69,1.0],[125,-19,70,1.0],[125,-19,71,1.0],[125,-19,72,1.0],[125,-19,73,1.0],[125,-19,74,1.0],[125,-19,75,1.0],[125,-19,76,1.0],[125,-19,77,1.0],[125,-19,78,1.0],[125,-19,79,1.0],[125,-18,64,1.0],[125,-18,65,1.0],[125,-18,66,1.0],[125,-18,67,1.0],[125,-18,68,1.0],[125,-18,69,1.0],[125,-18,70,1.0],[125,-18,71,1.0],[125,-18,72,1.0],[125,-18,73,1.0],[125,-18,74,1.0],[125,-18,75,1.0],[125,-18,76,1.0],[125,-18,77,1.0],[125,-18,78,1.0],[125,-18,79,1.0],[125,-17,64,1.0],[125,-17,65,1.0],[125,-17,66,1.0],[125,-17,67,1.0],[125,-17,68,1.0],[125,-17,69,1.0],[125,-17,70,1.0],[125,-17,71,1.0],[125,-17,72,1.0],[125,-17,73,1.0],[125,-17,74,1.0],[125,-17,75,1.0],[125,-17,76,1.0],[125,-17,77,1.0],[125,-17,78,1.0],[125,-17,79,1.0],[125,-16,64,0.9139568663276937],[125,-16,65,1.0],[125,-16,66,1.0],[125,-16,67,1.0],[125,-16,68,1.0],[125,-16,69,1.0],[125,-16,70,1.0],[125,-16,71,1.0],[125,-16,72,1.0],[125,-16,73,1.0],[125,-16,74,1.0],[125,-16,75,1.0],[125,-16,76,1.0],[125,-16,77,1.0],[125,-16,78,1.0],[125,-16,79,1.0],[125,-15,64,0.6040525588756134],[125,-15,65,0.6888910791397852],[125,-15,66,0.779126673364236],[125,-15,67,0.8745444347687188],[125,-15,68,0.9749032750230024],[125,-15,69,1.0],[125,-15,70,1.0],[125,-15,71,1.0],[125,-15,72,1.0],[125,-15,73,1.0],[125,-15,74,1.0],[125,-15,75,1.0],[125,-15,76,1.0],[125,-15,77,1.0],[125,-15,78,1.0],[125,-15,79,1.0],[125,-14,64,0.37355891476305725],[125,-14,65,0.4356141551411497],[125,-14,66,0.5025472694898849],[125,-14,67,0.5742153800908442],[125,-14,68,0.650447021786586],[125,-14,69,0.7310455895496757],[125,-14,70,0.8157927951282008],[125,-14,71,0.9044521153712155],[125,-14,72,0.9967722154767966],[125,-14,73,1.0],[125,-14,74,1.0],[125,-14,75,1.0],[125,-14,76,1.0],[125,-14,77,1.0],[125,-14,78,1.0],[125,-14,79,1.0],[125,-13,64,0.2107215974444716],[125,-13,65,0.2535492146876338],[125,-13,66,0.3006543073153078],[125,-13,67,0.3519660209260368],[125,-13,68,0.4073826064603043],[125,-13,69,0.46677471471644294],[125,-13,70,0.5299887059045614],[125,-13,71,0.596849957109726],[125,-13,72,0.6671661511403005],[125,-13,73,0.740730530956325],[125,-13,74,0.8173251046900103],[125,-13,75,0.8967237872341919],[125,-13,76,0.9786954654385067],[125,-13,77,1.0],[125,-13,78,1.0],[125,-13,79,1.0],[125,-12,64,0.10378617475658597],[125,-12,65,0.1309419573891661],[125,-12,66,0.16169361805039517],[125,-12,67,0.1960423199045717],[125,-12,68,0.23395612290933557],[125,-12,69,0.27537312780344586],[125,-12,70,0.320204641116756],[125,-12,71,0.3683383443409799],[125,-12,72,0.419641450970607],[125,-12,73,0.473963835807924],[125,-12,74,0.5311411217110575],[125,-12,75,0.5909977098836114],[125,-12,76,0.6533497408250207],[125,-12,77,0.7180079741718566],[125,-12,78,0.7847805768972935],[125,-12,79,0.8534758106620278],[125,-11,64,0.040998118833672076],[125,-11,65,0.056037986771789366],[125,-11,66,0.07391093644163532],[125,-11,67,0.09469014281568763],[125,-11,68,0.11841356778204508],[125,-11,69,0.1450869561290807],[125,-11,70,0.17468685855911495],[125,-11,71,0.2071636651366464],[125,-11,72,0.24244463311413897],[125,-11,73,0.28043689372865904],[125,-11,74,0.32103042331464027],[125,-11,75,0.3641009649543206],[125,-11,76,0.40951288786453527],[125,-11,77,0.45712197278676575],[125,-11,78,0.5067781128307525],[125,-11,79,0.5583279204936001],[125,-10,64,0.01060280602674432],[125,-10,65,0.017082810193167864],[125,-10,66,0.025551900683949996],[125,-10,67,0.03615525851577647],[125,-10,68,0.04900084041454994],[125,-10,69,0.06416222932194403],[125,-10,70,0.08168151796044833],[125,-10,71,0.10157220912895344],[125,-10,72,0.12382211690573364],[125,-10,73,0.14839625355169042],[125,-10,74,0.17523968762503161],[125,-10,75,0.20428035965214525],[125,-10,76,0.23543184263311417],[125,-10,77,0.268596035685019],[125,-10,78,0.30366578025663243],[125,-10,79,0.340527389565296],[125,-9,64,8.455168267889247E-4],[125,-9,65,0.002321838762139804],[125,-9,66,0.004862052336594201],[125,-9,67,0.008683338840651346],[125,-9,68,0.013963742739378763],[125,-9,69,0.020844879225911928],[125,-9,70,0.02943468088556132],[125,-9,71,0.03981016740866477],[125,-9,72,0.05202022276310617],[125,-9,73,0.06608836481917482],[125,-9,74,0.08201549310337305],[125,-9,75,0.09978260114938428],[125,-9,76,0.11935344080460993],[125,-9,77,0.14067712683126027],[125,-9,78,0.16369067121908287],[125,-9,79,0.18832143778962301],[125,-8,64,-2.856420809614255E-5],[125,-8,65,3.8726218313259837E-7],[125,-8,66,0.0015980650343178984],[125,-8,67,0.0043500838566504635],[125,-8,68,0.007016061722313428],[125,-8,69,0.009594849527295009],[125,-8,70,0.01208529510298273],[125,-8,71,0.014486254371994078],[125,-8,72,0.01679660211214236],[125,-8,73,0.021759577677157846],[125,-8,74,0.02960431843909973],[125,-8,75,0.038854296472789644],[125,-8,76,0.049524417535222534],[125,-8,77,0.06161210930208909],[125,-8,78,0.07509977650551568],[125,-8,79,0.08995718345533571],[125,-7,64,-0.0037743485216233407],[125,-7,65,-0.001636325921172365],[125,-7,66,-5.283995456042582E-4],[125,-7,67,0.0012776220580498765],[125,-7,68,0.0039071526910977525],[125,-7,69,0.0064525454845520205],[125,-7,70,0.008912699781423478],[125,-7,71,0.011286515729595985],[125,-7,72,0.013572905151761669],[125,-7,73,0.0157708020257308],[125,-7,74,0.017879172575257694],[125,-7,75,0.019897024971522778],[125,-7,76,0.021823418644971823],[125,-7,77,0.023657473207766712],[125,-7,78,0.026139985528458642],[125,-7,79,0.03368164310594655],[125,-6,64,-0.010080288280162046],[125,-6,65,-0.0072518684076955595],[125,-6,66,-0.00450155427529373],[125,-6,67,-0.0018303043209808578],[125,-6,68,7.608814856991941E-4],[125,-6,69,0.0032709737637963976],[125,-6,70,0.005698925454596722],[125,-6,71,0.008043683168610954],[125,-6,72,0.010304198146160834],[125,-6,73,0.012479436831262604],[125,-6,74,0.014568391058949873],[125,-6,75,0.01657008785618063],[125,-6,76,0.018483598856022743],[125,-6,77,0.02030804932537618],[125,-6,78,0.022042626806037045],[125,-6,79,0.023686589369365137],[125,-5,64,-0.013079787889680887],[125,-5,65,-0.010300284935693085],[125,-5,66,-0.007596064317584826],[125,-5,67,-0.004968007499192344],[125,-5,68,-0.002417044657901546],[125,-5,69,5.5857500723163755E-5],[125,-5,70,0.002449707545152037],[125,-5,71,0.0047635007367589285],[125,-5,72,0.0069962300655987825],[125,-5,73,0.009146896902794625],[125,-5,74,0.011214521269673663],[125,-5,75,0.013198151723798603],[125,-5,76,0.015096874861589296],[125,-5,77,0.016909824437791175],[125,-5,78,0.01863619010159593],[125,-5,79,0.02027522574967941],[125,-4,64,-0.016097875258253784],[125,-4,65,-0.013369089841303264],[125,-4,66,-0.010712783082955361],[125,-4,67,-0.00812975810521372],[125,-4,68,-0.005620873709004763],[125,-4,69,-0.0031870321402667143],[125,-4,70,-8.291672355036153E-4],[125,-4,71,0.0014517670530126148],[125,-4,72,0.0036548077526425624],[125,-4,73,0.0057789935860816585],[125,-4,74,0.007823375307508498],[125,-4,75,0.00978702565932079],[125,-4,76,0.011669048949156414],[125,-4,77,0.013468590247456592],[125,-4,78,0.015184844205373457],[125,-4,79,0.016817063493290395],[125,-3,64,-0.019128883849455935],[125,-3,65,-0.016452580768263204],[125,-3,66,-0.01384597564237812],[125,-3,67,-0.011309791973104298],[125,-3,68,-0.008844815681143765],[125,-3,69,-0.0064518828409380335],[125,-3,70,-0.004131867790400173],[125,-3,71,-0.0018856716162233347],[125,-3,72,2.8578898549008747E-4],[125,-3,73,0.0023815924729722604],[125,-3,74,0.004400822847054224],[125,-3,75,0.00634257966409342],[125,-3,76,0.0082059876732564],[125,-3,77,0.009990206078420612],[125,-3,78,0.011694437424492991],[125,-3,79,0.013317936108415265],[125,-2,64,-0.022167127141745575],[125,-2,65,-0.01954503240228956],[125,-2,66,-0.01698988108432685],[125,-2,67,-0.014502315880301118],[125,-2,68,-0.012083048409808402],[125,-2,69,-0.00973284693902661],[125,-2,70,-0.007452524471086269],[125,-2,71,-0.00524292720756981],[125,-2,72,-0.0031049233808834314],[125,-2,73,-0.0010393924578048636],[125,-2,74,9.527852859351343E-4],[125,-2,75,0.0028707388201842515],[125,-2,76,0.004713616043705932],[125,-2,77,0.006480593096580986],[125,-2,78,0.008170883301476625],[125,-2,79,0.009783745734051996],[125,-1,64,-0.02520690315445511],[125,-1,65,-0.022640701056025024],[125,-1,66,-0.020138717151245253],[125,-1,67,-0.017701512227999622],[125,-1,68,-0.015329722268972036],[125,-1,69,-0.013024046173014371],[125,-1,70,-0.01078523384263596],[125,-1,71,-0.008614074637802734],[125,-1,72,-0.006511386195791148],[125,-1,73,-0.004478003617399522],[125,-1,74,-0.0025147690193738498],[125,-1,75,-6.225214529024942E-4],[125,-1,76,0.0011979128115124776],[125,-1,77,0.002945729633069119],[125,-1,78,0.00462015598336276],[125,-1,79,0.006220458563039523],[125,0,64,-0.028242497925826747],[125,0,65,-0.02573382820302219],[125,0,66,-0.023286683821840716],[125,0,67,-0.02090154266394051],[125,0,68,-0.018578963826398356],[125,0,69,-0.01631957536184711],[125,0,70,-0.014124062379554304],[125,0,71,-0.011993155507626606],[125,0,72,-0.00992761971608519],[125,0,73,-0.007928243501118565],[125,0,74,-0.005995828430366196],[125,0,75,-0.00413117904908665],[125,0,76,-0.002335093147522893],[125,0,77,-6.08352389198312E-4],[125,0,78,0.001048286699654205],[125,0,79,0.0026341013798001287],[125,1,64,-0.03126818794310973],[125,1,65,-0.028818642960783285],[125,1,66,-0.026427965839221246],[125,1,67,-0.02409655064762095],[125,1,68,-0.021824878437744277],[125,1,69,-0.019613505019612107],[125,1,70,-0.017463049092598493],[125,1,71,-0.015374180732112469],[125,1,72,-0.013347610231609942],[125,1,73,-0.011384077300241241],[125,1,74,-0.009484340615991627],[125,1,75,-0.007649167734165109],[125,1,76,-0.00587932535152387],[125,1,77,-0.00417556992582032],[125,1,78,-0.0025386386509214723],[125,1,79,-9.692407872543274E-4],[125,2,64,-0.007600846903548394],[125,2,65,-0.012790110271326515],[125,2,66,-0.019736965569759016],[125,2,67,-0.027280662957914564],[125,2,68,-0.025061551779446398],[125,2,69,-0.02289988290516342],[125,2,70,-0.02079620708650027],[125,2,71,-0.01875113209778506],[125,2,72,-0.01676531161284492],[125,2,73,-0.014839434431356366],[125,2,74,-0.012974214054796075],[125,2,75,-0.011170378611846263],[125,2,76,-0.009428661133564144],[125,2,77,-0.007749790178051483],[125,2,78,-0.006134480804828722],[125,2,79,-0.0045834258986368615],[125,3,64,-3.6932994337655136E-4],[125,3,65,-0.0012947125533343434],[125,3,66,-0.0030724086494349546],[125,3,67,-0.0059201172784629375],[125,3,68,-0.010017616894628276],[125,3,69,-0.015509373058930423],[125,3,70,-0.02250718352011094],[125,3,71,-0.022117962746364773],[125,3,72,-0.020174645780743704],[125,3,73,-0.018288208983230615],[125,3,74,-0.016459318449719672],[125,3,75,-0.014688660497370408],[125,3,76,-0.012976931965007363],[125,3,77,-0.011324830856785019],[125,3,78,-0.009733047329321613],[125,3,79,-0.008202255022030085],[125,4,64,1.4990987503997165E-4],[125,4,65,4.003579642096498E-6],[125,4,66,-8.62247421091968E-6],[125,4,67,-1.759112269988379E-4],[125,4,68,-7.461141028544245E-4],[125,4,69,-0.0019302614652745094],[125,4,70,-0.003904676527452514],[125,4,71,-0.006813517299578242],[125,4,72,-0.010771331593590826],[125,4,73,-0.015865610647727103],[125,4,74,-0.01993348405555935],[125,4,75,-0.018197819198719822],[125,4,76,-0.01651792268116562],[125,4,77,-0.014894459343385659],[125,4,78,-0.013328091709226907],[125,4,79,-0.011819471335863488],[125,5,64,0.0056389516602884104],[125,5,65,0.002788243841342013],[125,5,66,0.0011367251277492922],[125,5,67,3.262166391802688E-4],[125,5,68,3.990368830968159E-5],[125,5,69,4.7031397646012255E-11],[125,5,70,-3.463733772951448E-5],[125,5,71,-2.7092802419480385E-4],[125,5,72,-8.8400740504106E-4],[125,5,73,-0.0020196714467192725],[125,5,74,-0.0037968132048161324],[125,5,75,-0.006309838180670807],[125,5,76,-0.009631046374180637],[125,5,77,-0.013812969762390933],[125,5,78,-0.016913311324902043],[125,5,79,-0.015428758018209976],[125,6,64,0.02777977851082245],[125,6,65,0.018740117508755164],[125,6,66,0.012045869467084804],[125,6,67,0.00726862751276624],[125,6,68,0.0040229233957448235],[125,6,69,0.00196402395538826],[125,6,70,7.856719179874065E-4],[125,6,71,2.1778591691554343E-4],[125,6,72,2.4134249447033623E-5],[125,6,73,-3.589429883270875E-9],[125,6,74,-3.0174124422841445E-5],[125,6,75,-2.1507305633137083E-4],[125,6,76,-6.788422913574656E-4],[125,6,77,-0.0015233296058990878],[125,6,78,-0.002830300615200772],[125,6,79,-0.004663593692201209],[125,7,64,0.07825427748541106],[125,7,65,0.059541637389007494],[125,7,66,0.044400948956581435],[125,7,67,0.03233358526277228],[125,7,68,0.02288533418896678],[125,7,69,0.01564432456826],[125,7,70,0.010238890520208474],[125,7,71,0.006335388604562648],[125,7,72,0.0036359820749139885],[125,7,73,0.001876406073564371],[125,7,74,8.237270776876107E-4],[125,7,75,2.741092862166199E-4],[125,7,76,5.059993434183687E-5],[125,7,77,9.44740487539357E-7],[125,7,78,-4.5561654405558845E-6],[125,7,79,-7.514240758598641E-5],[125,8,64,0.1687442395772986],[125,8,65,0.1368747197899702],[125,8,66,0.10988400507824991],[125,8,67,0.0872032563981008],[125,8,68,0.06830942745020464],[125,8,69,0.0527233179817831],[125,8,70,0.040007559114186665],[125,8,71,0.029764545063456542],[125,8,72,0.021634325301521897],[125,8,73,0.015292470800071045],[125,8,74,0.01044792750592477],[125,8,75,0.00684086961429011],[125,8,76,0.004240564547403013],[125,8,77,0.00244326081126973],[125,8,78,0.0012701090962750035],[125,8,79,5.651261176693133E-4],[125,9,64,0.3109313596920739],[125,9,65,0.262421184494583],[125,9,66,0.2201769823541241],[125,9,67,0.1835597100348378],[125,9,68,0.15197739673821253],[125,9,69,0.12488332204011669],[125,9,70,0.10177411966682767],[125,9,71,0.08218782121569852],[125,9,72,0.06570185363464802],[125,9,73,0.05193100390299968],[125,9,74,0.040525363901728],[125,9,75,0.031168267916183198],[125,9,76,0.023574234599235643],[125,9,77,0.017486924535798396],[125,9,78,0.012677123791280814],[125,9,79,0.008940763010816779],[125,10,64,0.5164972366292759],[125,10,65,0.44786275473891723],[125,10,66,0.38696172832080383],[125,10,67,0.3330849178672962],[125,10,68,0.28557133775583393],[125,10,69,0.24380655629954956],[125,10,70,0.20722091542736057],[125,10,71,0.1752876838380368],[125,10,72,0.14752115720874717],[125,10,73,0.12347471870085214],[125,10,74,0.1027388725907059],[125,10,75,0.08493926334497763],[125,10,76,0.0697346918886759],[125,10,77,0.056815140175491136],[125,10,78,0.04589981445960104],[125,10,79,0.036735216906384864],[125,11,64,0.7971233730675864],[125,11,65,0.7048810571938467],[125,11,66,0.6219199935076214],[125,11,67,0.5474607541426979],[125,11,68,0.4807732483212211],[125,11,69,0.421175141996277],[125,11,70,0.3680301908916921],[125,11,71,0.320746500522819],[125,11,72,0.27877472654492297],[125,11,73,0.2416062284719338],[125,11,74,0.20877118943350845],[125,11,75,0.17983671416609648],[125,11,76,0.15440491690624292],[125,11,77,0.1321110102648122],[125,11,78,0.11262140549767326],[125,11,79,0.09563183388066797],[125,12,64,1.0],[125,12,65,1.0],[125,12,66,0.9367334314185465],[125,12,67,0.8383689956395962],[125,12,68,0.7492650283427938],[125,12,69,0.6686711020179159],[125,12,70,0.5958840917705013],[125,12,71,0.530246539642688],[125,12,72,0.4711449525122448],[125,12,73,0.4180080464123126],[125,12,74,0.3703049497804499],[125,12,75,0.32754337770861164],[125,12,76,0.28926778878215265],[125,12,77,0.25505753555601374],[125,12,78,0.22452501909983877],[125,12,79,0.1973138573899866],[125,13,64,1.0],[125,13,65,1.0],[125,13,66,1.0],[125,13,67,1.0],[125,13,68,1.0],[125,13,69,0.9979763608786643],[125,13,70,0.902464664960989],[125,13,71,0.8154699703189409],[125,13,72,0.7363141262927397],[125,13,73,0.6643625855974642],[125,13,74,0.5990226884298274],[125,13,75,0.5397419103202579],[125,13,76,0.48600608523804645],[125,13,77,0.4373376149676009],[125,13,78,0.3932936752035649],[125,13,79,0.3534644282126876],[125,14,64,1.0],[125,14,65,1.0],[125,14,66,1.0],[125,14,67,1.0],[125,14,68,1.0],[125,14,69,1.0],[125,14,70,1.0],[125,14,71,1.0],[125,14,72,1.0],[125,14,73,0.9923521589476977],[125,14,74,0.9066068395900219],[125,14,75,0.8281148673262283],[125,14,76,0.7563024825425056],[125,14,77,0.6906340455365836],[125,14,78,0.6306102914384554],[125,14,79,0.5757665843949347],[125,15,64,1.0],[125,15,65,1.0],[125,15,66,1.0],[125,15,67,1.0],[125,15,68,1.0],[125,15,69,1.0],[125,15,70,1.0],[125,15,71,1.0],[125,15,72,1.0],[125,15,73,1.0],[125,15,74,1.0],[125,15,75,1.0],[125,15,76,1.0],[125,15,77,1.0],[125,15,78,0.9481576830788693],[125,15,79,0.8759032612001221],[125,16,64,1.0],[125,16,65,1.0],[125,16,66,1.0],[125,16,67,1.0],[125,16,68,1.0],[125,16,69,1.0],[125,16,70,1.0],[125,16,71,1.0],[125,16,72,1.0],[125,16,73,1.0],[125,16,74,1.0],[125,16,75,1.0],[125,16,76,1.0],[125,16,77,1.0],[125,16,78,1.0],[125,16,79,1.0],[125,17,64,1.0],[125,17,65,1.0],[125,17,66,1.0],[125,17,67,1.0],[125,17,68,1.0],[125,17,69,1.0],[125,17,70,1.0],[125,17,71,1.0],[125,17,72,1.0],[125,17,73,1.0],[125,17,74,1.0],[125,17,75,1.0],[125,17,76,1.0],[125,17,77,1.0],[125,17,78,1.0],[125,17,79,1.0],[125,18,64,1.0],[125,18,65,1.0],[125,18,66,1.0],[125,18,67,1.0],[125,18,68,1.0],[125,18,69,1.0],[125,18,70,1.0],[125,18,71,1.0],[125,18,72,1.0],[125,18,73,1.0],[125,18,74,1.0],[125,18,75,1.0],[125,18,76,1.0],[125,18,77,1.0],[125,18,78,1.0],[125,18,79,1.0],[125,19,64,1.0],[125,19,65,1.0],[125,19,66,1.0],[125,19,67,1.0],[125,19,68,1.0],[125,19,69,1.0],[125,19,70,1.0],[125,19,71,1.0],[125,19,72,1.0],[125,19,73,1.0],[125,19,74,1.0],[125,19,75,1.0],[125,19,76,1.0],[125,19,77,1.0],[125,19,78,1.0],[125,19,79,1.0],[125,20,64,1.0],[125,20,65,1.0],[125,20,66,1.0],[125,20,67,1.0],[125,20,68,1.0],[125,20,69,1.0],[125,20,70,1.0],[125,20,71,1.0],[125,20,72,1.0],[125,20,73,1.0],[125,20,74,1.0],[125,20,75,1.0],[125,20,76,1.0],[125,20,77,1.0],[125,20,78,1.0],[125,20,79,1.0],[125,21,64,1.0],[125,21,65,1.0],[125,21,66,1.0],[125,21,67,1.0],[125,21,68,1.0],[125,21,69,1.0],[125,21,70,1.0],[125,21,71,1.0],[125,21,72,1.0],[125,21,73,1.0],[125,21,74,1.0],[125,21,75,1.0],[125,21,76,1.0],[125,21,77,1.0],[125,21,78,1.0],[125,21,79,1.0],[125,22,64,1.0],[125,22,65,1.0],[125,22,66,1.0],[125,22,67,1.0],[125,22,68,1.0],[125,22,69,1.0],[125,22,70,1.0],[125,22,71,1.0],[125,22,72,1.0],[125,22,73,1.0],[125,22,74,1.0],[125,22,75,1.0],[125,22,76,1.0],[125,22,77,1.0],[125,22,78,1.0],[125,22,79,1.0],[125,23,64,1.0],[125,23,65,1.0],[125,23,66,1.0],[125,23,67,1.0],[125,23,68,1.0],[125,23,69,1.0],[125,23,70,1.0],[125,23,71,1.0],[125,23,72,1.0],[125,23,73,1.0],[125,23,74,1.0],[125,23,75,1.0],[125,23,76,1.0],[125,23,77,1.0],[125,23,78,1.0],[125,23,79,1.0],[125,24,64,1.0],[125,24,65,1.0],[125,24,66,1.0],[125,24,67,1.0],[125,24,68,1.0],[125,24,69,1.0],[125,24,70,1.0],[125,24,71,1.0],[125,24,72,1.0],[125,24,73,1.0],[125,24,74,1.0],[125,24,75,1.0],[125,24,76,1.0],[125,24,77,1.0],[125,24,78,1.0],[125,24,79,1.0],[125,25,64,1.0],[125,25,65,1.0],[125,25,66,1.0],[125,25,67,1.0],[125,25,68,1.0],[125,25,69,1.0],[125,25,70,1.0],[125,25,71,1.0],[125,25,72,1.0],[125,25,73,1.0],[125,25,74,1.0],[125,25,75,1.0],[125,25,76,1.0],[125,25,77,1.0],[125,25,78,1.0],[125,25,79,1.0],[125,26,64,1.0],[125,26,65,1.0],[125,26,66,1.0],[125,26,67,1.0],[125,26,68,1.0],[125,26,69,1.0],[125,26,70,1.0],[125,26,71,1.0],[125,26,72,1.0],[125,26,73,1.0],[125,26,74,1.0],[125,26,75,1.0],[125,26,76,1.0],[125,26,77,1.0],[125,26,78,1.0],[125,26,79,1.0],[125,27,64,1.0],[125,27,65,1.0],[125,27,66,1.0],[125,27,67,1.0],[125,27,68,1.0],[125,27,69,1.0],[125,27,70,1.0],[125,27,71,1.0],[125,27,72,1.0],[125,27,73,1.0],[125,27,74,1.0],[125,27,75,1.0],[125,27,76,1.0],[125,27,77,1.0],[125,27,78,1.0],[125,27,79,1.0],[125,28,64,1.0],[125,28,65,1.0],[125,28,66,1.0],[125,28,67,1.0],[125,28,68,1.0],[125,28,69,1.0],[125,28,70,1.0],[125,28,71,1.0],[125,28,72,1.0],[125,28,73,1.0],[125,28,74,1.0],[125,28,75,1.0],[125,28,76,1.0],[125,28,77,1.0],[125,28,78,1.0],[125,28,79,1.0],[125,29,64,1.0],[125,29,65,1.0],[125,29,66,1.0],[125,29,67,1.0],[125,29,68,1.0],[125,29,69,1.0],[125,29,70,1.0],[125,29,71,1.0],[125,29,72,1.0],[125,29,73,1.0],[125,29,74,1.0],[125,29,75,1.0],[125,29,76,1.0],[125,29,77,1.0],[125,29,78,1.0],[125,29,79,1.0],[125,30,64,1.0],[125,30,65,1.0],[125,30,66,1.0],[125,30,67,1.0],[125,30,68,1.0],[125,30,69,1.0],[125,30,70,1.0],[125,30,71,1.0],[125,30,72,1.0],[125,30,73,1.0],[125,30,74,1.0],[125,30,75,1.0],[125,30,76,1.0],[125,30,77,1.0],[125,30,78,1.0],[125,30,79,1.0],[125,31,64,1.0],[125,31,65,1.0],[125,31,66,1.0],[125,31,67,1.0],[125,31,68,1.0],[125,31,69,1.0],[125,31,70,1.0],[125,31,71,1.0],[125,31,72,1.0],[125,31,73,1.0],[125,31,74,1.0],[125,31,75,1.0],[125,31,76,1.0],[125,31,77,1.0],[125,31,78,1.0],[125,31,79,1.0],[125,32,64,1.0],[125,32,65,1.0],[125,32,66,1.0],[125,32,67,1.0],[125,32,68,1.0],[125,32,69,1.0],[125,32,70,1.0],[125,32,71,1.0],[125,32,72,1.0],[125,32,73,1.0],[125,32,74,1.0],[125,32,75,1.0],[125,32,76,1.0],[125,32,77,1.0],[125,32,78,1.0],[125,32,79,1.0],[125,33,64,1.0],[125,33,65,1.0],[125,33,66,1.0],[125,33,67,1.0],[125,33,68,1.0],[125,33,69,1.0],[125,33,70,1.0],[125,33,71,1.0],[125,33,72,1.0],[125,33,73,1.0],[125,33,74,1.0],[125,33,75,1.0],[125,33,76,1.0],[125,33,77,1.0],[125,33,78,1.0],[125,33,79,1.0],[125,34,64,1.0],[125,34,65,1.0],[125,34,66,1.0],[125,34,67,1.0],[125,34,68,1.0],[125,34,69,1.0],[125,34,70,1.0],[125,34,71,1.0],[125,34,72,1.0],[125,34,73,1.0],[125,34,74,1.0],[125,34,75,1.0],[125,34,76,1.0],[125,34,77,1.0],[125,34,78,1.0],[125,34,79,1.0],[125,35,64,1.0],[125,35,65,1.0],[125,35,66,1.0],[125,35,67,1.0],[125,35,68,1.0],[125,35,69,1.0],[125,35,70,1.0],[125,35,71,1.0],[125,35,72,1.0],[125,35,73,1.0],[125,35,74,1.0],[125,35,75,1.0],[125,35,76,1.0],[125,35,77,1.0],[125,35,78,1.0],[125,35,79,1.0],[125,36,64,1.0],[125,36,65,1.0],[125,36,66,1.0],[125,36,67,1.0],[125,36,68,1.0],[125,36,69,1.0],[125,36,70,1.0],[125,36,71,1.0],[125,36,72,1.0],[125,36,73,1.0],[125,36,74,1.0],[125,36,75,1.0],[125,36,76,1.0],[125,36,77,1.0],[125,36,78,1.0],[125,36,79,1.0],[125,37,64,1.0],[125,37,65,1.0],[125,37,66,1.0],[125,37,67,1.0],[125,37,68,1.0],[125,37,69,1.0],[125,37,70,1.0],[125,37,71,1.0],[125,37,72,1.0],[125,37,73,1.0],[125,37,74,1.0],[125,37,75,1.0],[125,37,76,1.0],[125,37,77,1.0],[125,37,78,1.0],[125,37,79,1.0],[125,38,64,1.0],[125,38,65,1.0],[125,38,66,1.0],[125,38,67,1.0],[125,38,68,1.0],[125,38,69,1.0],[125,38,70,1.0],[125,38,71,1.0],[125,38,72,1.0],[125,38,73,1.0],[125,38,74,1.0],[125,38,75,1.0],[125,38,76,1.0],[125,38,77,1.0],[125,38,78,1.0],[125,38,79,1.0],[125,39,64,1.0],[125,39,65,1.0],[125,39,66,1.0],[125,39,67,1.0],[125,39,68,1.0],[125,39,69,1.0],[125,39,70,1.0],[125,39,71,1.0],[125,39,72,1.0],[125,39,73,1.0],[125,39,74,1.0],[125,39,75,1.0],[125,39,76,1.0],[125,39,77,1.0],[125,39,78,1.0],[125,39,79,1.0],[125,40,64,1.0],[125,40,65,1.0],[125,40,66,1.0],[125,40,67,1.0],[125,40,68,1.0],[125,40,69,1.0],[125,40,70,1.0],[125,40,71,1.0],[125,40,72,1.0],[125,40,73,1.0],[125,40,74,1.0],[125,40,75,1.0],[125,40,76,1.0],[125,40,77,1.0],[125,40,78,1.0],[125,40,79,1.0],[125,41,64,1.0],[125,41,65,1.0],[125,41,66,1.0],[125,41,67,1.0],[125,41,68,1.0],[125,41,69,1.0],[125,41,70,1.0],[125,41,71,1.0],[125,41,72,1.0],[125,41,73,1.0],[125,41,74,1.0],[125,41,75,1.0],[125,41,76,1.0],[125,41,77,1.0],[125,41,78,1.0],[125,41,79,1.0],[125,42,64,1.0],[125,42,65,1.0],[125,42,66,1.0],[125,42,67,1.0],[125,42,68,1.0],[125,42,69,1.0],[125,42,70,1.0],[125,42,71,1.0],[125,42,72,1.0],[125,42,73,1.0],[125,42,74,1.0],[125,42,75,1.0],[125,42,76,1.0],[125,42,77,1.0],[125,42,78,1.0],[125,42,79,1.0],[125,43,64,1.0],[125,43,65,1.0],[125,43,66,1.0],[125,43,67,1.0],[125,43,68,1.0],[125,43,69,1.0],[125,43,70,1.0],[125,43,71,1.0],[125,43,72,1.0],[125,43,73,1.0],[125,43,74,1.0],[125,43,75,1.0],[125,43,76,1.0],[125,43,77,1.0],[125,43,78,1.0],[125,43,79,1.0],[125,44,64,1.0],[125,44,65,1.0],[125,44,66,1.0],[125,44,67,1.0],[125,44,68,1.0],[125,44,69,1.0],[125,44,70,1.0],[125,44,71,1.0],[125,44,72,1.0],[125,44,73,1.0],[125,44,74,1.0],[125,44,75,1.0],[125,44,76,1.0],[125,44,77,1.0],[125,44,78,1.0],[125,44,79,1.0],[125,45,64,1.0],[125,45,65,1.0],[125,45,66,1.0],[125,45,67,1.0],[125,45,68,1.0],[125,45,69,1.0],[125,45,70,1.0],[125,45,71,1.0],[125,45,72,1.0],[125,45,73,1.0],[125,45,74,1.0],[125,45,75,1.0],[125,45,76,1.0],[125,45,77,1.0],[125,45,78,1.0],[125,45,79,1.0],[125,46,64,1.0],[125,46,65,1.0],[125,46,66,1.0],[125,46,67,1.0],[125,46,68,1.0],[125,46,69,1.0],[125,46,70,1.0],[125,46,71,1.0],[125,46,72,1.0],[125,46,73,1.0],[125,46,74,1.0],[125,46,75,1.0],[125,46,76,1.0],[125,46,77,1.0],[125,46,78,1.0],[125,46,79,1.0],[125,47,64,1.0],[125,47,65,1.0],[125,47,66,1.0],[125,47,67,1.0],[125,47,68,1.0],[125,47,69,1.0],[125,47,70,1.0],[125,47,71,1.0],[125,47,72,1.0],[125,47,73,1.0],[125,47,74,1.0],[125,47,75,1.0],[125,47,76,1.0],[125,47,77,1.0],[125,47,78,1.0],[125,47,79,1.0],[125,48,64,1.0],[125,48,65,1.0],[125,48,66,1.0],[125,48,67,1.0],[125,48,68,1.0],[125,48,69,1.0],[125,48,70,1.0],[125,48,71,1.0],[125,48,72,1.0],[125,48,73,1.0],[125,48,74,1.0],[125,48,75,1.0],[125,48,76,1.0],[125,48,77,1.0],[125,48,78,1.0],[125,48,79,1.0],[125,49,64,1.0],[125,49,65,1.0],[125,49,66,1.0],[125,49,67,1.0],[125,49,68,1.0],[125,49,69,1.0],[125,49,70,1.0],[125,49,71,1.0],[125,49,72,1.0],[125,49,73,1.0],[125,49,74,1.0],[125,49,75,1.0],[125,49,76,1.0],[125,49,77,1.0],[125,49,78,1.0],[125,49,79,1.0],[125,50,64,1.0],[125,50,65,1.0],[125,50,66,1.0],[125,50,67,1.0],[125,50,68,1.0],[125,50,69,1.0],[125,50,70,1.0],[125,50,71,1.0],[125,50,72,1.0],[125,50,73,1.0],[125,50,74,1.0],[125,50,75,1.0],[125,50,76,1.0],[125,50,77,1.0],[125,50,78,1.0],[125,50,79,1.0],[125,51,64,1.0],[125,51,65,1.0],[125,51,66,1.0],[125,51,67,1.0],[125,51,68,1.0],[125,51,69,1.0],[125,51,70,1.0],[125,51,71,1.0],[125,51,72,1.0],[125,51,73,1.0],[125,51,74,1.0],[125,51,75,1.0],[125,51,76,1.0],[125,51,77,1.0],[125,51,78,1.0],[125,51,79,1.0],[125,52,64,1.0],[125,52,65,1.0],[125,52,66,1.0],[125,52,67,1.0],[125,52,68,1.0],[125,52,69,1.0],[125,52,70,1.0],[125,52,71,1.0],[125,52,72,1.0],[125,52,73,1.0],[125,52,74,1.0],[125,52,75,1.0],[125,52,76,1.0],[125,52,77,1.0],[125,52,78,1.0],[125,52,79,1.0],[125,53,64,1.0],[125,53,65,1.0],[125,53,66,1.0],[125,53,67,1.0],[125,53,68,1.0],[125,53,69,1.0],[125,53,70,1.0],[125,53,71,1.0],[125,53,72,1.0],[125,53,73,1.0],[125,53,74,1.0],[125,53,75,1.0],[125,53,76,1.0],[125,53,77,1.0],[125,53,78,1.0],[125,53,79,1.0],[125,54,64,1.0],[125,54,65,1.0],[125,54,66,1.0],[125,54,67,1.0],[125,54,68,1.0],[125,54,69,1.0],[125,54,70,1.0],[125,54,71,1.0],[125,54,72,1.0],[125,54,73,1.0],[125,54,74,1.0],[125,54,75,1.0],[125,54,76,1.0],[125,54,77,1.0],[125,54,78,1.0],[125,54,79,1.0],[125,55,64,1.0],[125,55,65,1.0],[125,55,66,1.0],[125,55,67,1.0],[125,55,68,1.0],[125,55,69,1.0],[125,55,70,1.0],[125,55,71,1.0],[125,55,72,1.0],[125,55,73,1.0],[125,55,74,1.0],[125,55,75,1.0],[125,55,76,1.0],[125,55,77,1.0],[125,55,78,1.0],[125,55,79,1.0],[125,56,64,1.0],[125,56,65,1.0],[125,56,66,1.0],[125,56,67,1.0],[125,56,68,1.0],[125,56,69,1.0],[125,56,70,1.0],[125,56,71,1.0],[125,56,72,1.0],[125,56,73,1.0],[125,56,74,1.0],[125,56,75,1.0],[125,56,76,1.0],[125,56,77,1.0],[125,56,78,1.0],[125,56,79,1.0],[125,57,64,1.0],[125,57,65,1.0],[125,57,66,1.0],[125,57,67,1.0],[125,57,68,1.0],[125,57,69,1.0],[125,57,70,1.0],[125,57,71,1.0],[125,57,72,1.0],[125,57,73,1.0],[125,57,74,1.0],[125,57,75,1.0],[125,57,76,1.0],[125,57,77,1.0],[125,57,78,1.0],[125,57,79,1.0],[125,58,64,1.0],[125,58,65,1.0],[125,58,66,1.0],[125,58,67,1.0],[125,58,68,1.0],[125,58,69,1.0],[125,58,70,1.0],[125,58,71,1.0],[125,58,72,1.0],[125,58,73,1.0],[125,58,74,1.0],[125,58,75,1.0],[125,58,76,1.0],[125,58,77,1.0],[125,58,78,1.0],[125,58,79,1.0],[125,59,64,1.0],[125,59,65,1.0],[125,59,66,1.0],[125,59,67,1.0],[125,59,68,1.0],[125,59,69,1.0],[125,59,70,1.0],[125,59,71,1.0],[125,59,72,1.0],[125,59,73,1.0],[125,59,74,1.0],[125,59,75,1.0],[125,59,76,1.0],[125,59,77,1.0],[125,59,78,1.0],[125,59,79,1.0],[125,60,64,1.0],[125,60,65,1.0],[125,60,66,1.0],[125,60,67,1.0],[125,60,68,1.0],[125,60,69,1.0],[125,60,70,1.0],[125,60,71,1.0],[125,60,72,1.0],[125,60,73,1.0],[125,60,74,1.0],[125,60,75,1.0],[125,60,76,1.0],[125,60,77,1.0],[125,60,78,1.0],[125,60,79,1.0],[125,61,64,1.0],[125,61,65,1.0],[125,61,66,1.0],[125,61,67,1.0],[125,61,68,1.0],[125,61,69,1.0],[125,61,70,1.0],[125,61,71,1.0],[125,61,72,1.0],[125,61,73,1.0],[125,61,74,1.0],[125,61,75,1.0],[125,61,76,1.0],[125,61,77,1.0],[125,61,78,1.0],[125,61,79,1.0],[125,62,64,1.0],[125,62,65,1.0],[125,62,66,1.0],[125,62,67,1.0],[125,62,68,1.0],[125,62,69,1.0],[125,62,70,1.0],[125,62,71,1.0],[125,62,72,1.0],[125,62,73,1.0],[125,62,74,1.0],[125,62,75,1.0],[125,62,76,1.0],[125,62,77,1.0],[125,62,78,1.0],[125,62,79,1.0],[125,63,64,1.0],[125,63,65,1.0],[125,63,66,1.0],[125,63,67,1.0],[125,63,68,1.0],[125,63,69,1.0],[125,63,70,1.0],[125,63,71,1.0],[125,63,72,1.0],[125,63,73,1.0],[125,63,74,1.0],[125,63,75,1.0],[125,63,76,1.0],[125,63,77,1.0],[125,63,78,1.0],[125,63,79,1.0],[125,64,64,1.0],[125,64,65,1.0],[125,64,66,1.0],[125,64,67,1.0],[125,64,68,1.0],[125,64,69,1.0],[125,64,70,1.0],[125,64,71,1.0],[125,64,72,1.0],[125,64,73,1.0],[125,64,74,1.0],[125,64,75,1.0],[125,64,76,1.0],[125,64,77,1.0],[125,64,78,1.0],[125,64,79,1.0],[125,65,64,1.0],[125,65,65,1.0],[125,65,66,1.0],[125,65,67,1.0],[125,65,68,1.0],[125,65,69,1.0],[125,65,70,1.0],[125,65,71,1.0],[125,65,72,1.0],[125,65,73,1.0],[125,65,74,1.0],[125,65,75,1.0],[125,65,76,1.0],[125,65,77,1.0],[125,65,78,1.0],[125,65,79,1.0],[125,66,64,1.0],[125,66,65,1.0],[125,66,66,1.0],[125,66,67,1.0],[125,66,68,1.0],[125,66,69,1.0],[125,66,70,1.0],[125,66,71,1.0],[125,66,72,1.0],[125,66,73,1.0],[125,66,74,1.0],[125,66,75,1.0],[125,66,76,1.0],[125,66,77,1.0],[125,66,78,1.0],[125,66,79,1.0],[125,67,64,1.0],[125,67,65,1.0],[125,67,66,1.0],[125,67,67,1.0],[125,67,68,1.0],[125,67,69,1.0],[125,67,70,1.0],[125,67,71,1.0],[125,67,72,1.0],[125,67,73,1.0],[125,67,74,1.0],[125,67,75,1.0],[125,67,76,1.0],[125,67,77,1.0],[125,67,78,1.0],[125,67,79,1.0],[125,68,64,1.0],[125,68,65,1.0],[125,68,66,1.0],[125,68,67,1.0],[125,68,68,1.0],[125,68,69,1.0],[125,68,70,1.0],[125,68,71,1.0],[125,68,72,1.0],[125,68,73,1.0],[125,68,74,1.0],[125,68,75,1.0],[125,68,76,1.0],[125,68,77,1.0],[125,68,78,1.0],[125,68,79,1.0],[125,69,64,1.0],[125,69,65,1.0],[125,69,66,1.0],[125,69,67,1.0],[125,69,68,1.0],[125,69,69,1.0],[125,69,70,1.0],[125,69,71,1.0],[125,69,72,1.0],[125,69,73,1.0],[125,69,74,1.0],[125,69,75,1.0],[125,69,76,1.0],[125,69,77,1.0],[125,69,78,1.0],[125,69,79,1.0],[125,70,64,1.0],[125,70,65,1.0],[125,70,66,1.0],[125,70,67,1.0],[125,70,68,1.0],[125,70,69,1.0],[125,70,70,1.0],[125,70,71,1.0],[125,70,72,1.0],[125,70,73,1.0],[125,70,74,1.0],[125,70,75,1.0],[125,70,76,1.0],[125,70,77,1.0],[125,70,78,1.0],[125,70,79,1.0],[125,71,64,1.0],[125,71,65,1.0],[125,71,66,1.0],[125,71,67,1.0],[125,71,68,1.0],[125,71,69,1.0],[125,71,70,1.0],[125,71,71,1.0],[125,71,72,1.0],[125,71,73,1.0],[125,71,74,1.0],[125,71,75,1.0],[125,71,76,1.0],[125,71,77,1.0],[125,71,78,1.0],[125,71,79,1.0],[125,72,64,1.0],[125,72,65,1.0],[125,72,66,1.0],[125,72,67,1.0],[125,72,68,1.0],[125,72,69,1.0],[125,72,70,1.0],[125,72,71,1.0],[125,72,72,1.0],[125,72,73,1.0],[125,72,74,1.0],[125,72,75,1.0],[125,72,76,1.0],[125,72,77,1.0],[125,72,78,1.0],[125,72,79,1.0],[125,73,64,1.0],[125,73,65,1.0],[125,73,66,1.0],[125,73,67,1.0],[125,73,68,1.0],[125,73,69,1.0],[125,73,70,1.0],[125,73,71,1.0],[125,73,72,1.0],[125,73,73,1.0],[125,73,74,1.0],[125,73,75,1.0],[125,73,76,1.0],[125,73,77,1.0],[125,73,78,1.0],[125,73,79,1.0],[125,74,64,1.0],[125,74,65,1.0],[125,74,66,1.0],[125,74,67,1.0],[125,74,68,1.0],[125,74,69,1.0],[125,74,70,1.0],[125,74,71,1.0],[125,74,72,1.0],[125,74,73,1.0],[125,74,74,1.0],[125,74,75,1.0],[125,74,76,1.0],[125,74,77,1.0],[125,74,78,1.0],[125,74,79,1.0],[125,75,64,1.0],[125,75,65,1.0],[125,75,66,1.0],[125,75,67,1.0],[125,75,68,1.0],[125,75,69,1.0],[125,75,70,1.0],[125,75,71,1.0],[125,75,72,1.0],[125,75,73,1.0],[125,75,74,1.0],[125,75,75,1.0],[125,75,76,1.0],[125,75,77,1.0],[125,75,78,1.0],[125,75,79,1.0],[125,76,64,1.0],[125,76,65,1.0],[125,76,66,1.0],[125,76,67,1.0],[125,76,68,1.0],[125,76,69,1.0],[125,76,70,1.0],[125,76,71,1.0],[125,76,72,1.0],[125,76,73,1.0],[125,76,74,1.0],[125,76,75,1.0],[125,76,76,1.0],[125,76,77,1.0],[125,76,78,1.0],[125,76,79,1.0],[125,77,64,1.0],[125,77,65,1.0],[125,77,66,1.0],[125,77,67,1.0],[125,77,68,1.0],[125,77,69,1.0],[125,77,70,1.0],[125,77,71,1.0],[125,77,72,1.0],[125,77,73,1.0],[125,77,74,1.0],[125,77,75,1.0],[125,77,76,1.0],[125,77,77,1.0],[125,77,78,1.0],[125,77,79,1.0],[125,78,64,1.0],[125,78,65,1.0],[125,78,66,1.0],[125,78,67,1.0],[125,78,68,1.0],[125,78,69,1.0],[125,78,70,1.0],[125,78,71,1.0],[125,78,72,1.0],[125,78,73,1.0],[125,78,74,1.0],[125,78,75,1.0],[125,78,76,1.0],[125,78,77,1.0],[125,78,78,1.0],[125,78,79,1.0],[125,79,64,1.0],[125,79,65,1.0],[125,79,66,1.0],[125,79,67,1.0],[125,79,68,1.0],[125,79,69,1.0],[125,79,70,1.0],[125,79,71,1.0],[125,79,72,1.0],[125,79,73,1.0],[125,79,74,1.0],[125,79,75,1.0],[125,79,76,1.0],[125,79,77,1.0],[125,79,78,1.0],[125,79,79,1.0],[125,80,64,1.0],[125,80,65,1.0],[125,80,66,1.0],[125,80,67,1.0],[125,80,68,1.0],[125,80,69,1.0],[125,80,70,1.0],[125,80,71,1.0],[125,80,72,1.0],[125,80,73,1.0],[125,80,74,1.0],[125,80,75,1.0],[125,80,76,1.0],[125,80,77,1.0],[125,80,78,1.0],[125,80,79,1.0],[125,81,64,1.0],[125,81,65,1.0],[125,81,66,1.0],[125,81,67,1.0],[125,81,68,1.0],[125,81,69,1.0],[125,81,70,1.0],[125,81,71,1.0],[125,81,72,1.0],[125,81,73,1.0],[125,81,74,1.0],[125,81,75,1.0],[125,81,76,1.0],[125,81,77,1.0],[125,81,78,1.0],[125,81,79,1.0],[125,82,64,1.0],[125,82,65,1.0],[125,82,66,1.0],[125,82,67,1.0],[125,82,68,1.0],[125,82,69,1.0],[125,82,70,1.0],[125,82,71,1.0],[125,82,72,1.0],[125,82,73,1.0],[125,82,74,1.0],[125,82,75,1.0],[125,82,76,1.0],[125,82,77,1.0],[125,82,78,1.0],[125,82,79,1.0],[125,83,64,1.0],[125,83,65,1.0],[125,83,66,1.0],[125,83,67,1.0],[125,83,68,1.0],[125,83,69,1.0],[125,83,70,1.0],[125,83,71,1.0],[125,83,72,1.0],[125,83,73,1.0],[125,83,74,1.0],[125,83,75,1.0],[125,83,76,1.0],[125,83,77,1.0],[125,83,78,1.0],[125,83,79,1.0],[125,84,64,1.0],[125,84,65,1.0],[125,84,66,1.0],[125,84,67,1.0],[125,84,68,1.0],[125,84,69,1.0],[125,84,70,1.0],[125,84,71,1.0],[125,84,72,1.0],[125,84,73,1.0],[125,84,74,1.0],[125,84,75,1.0],[125,84,76,1.0],[125,84,77,1.0],[125,84,78,1.0],[125,84,79,1.0],[125,85,64,1.0],[125,85,65,1.0],[125,85,66,1.0],[125,85,67,1.0],[125,85,68,1.0],[125,85,69,1.0],[125,85,70,1.0],[125,85,71,1.0],[125,85,72,1.0],[125,85,73,1.0],[125,85,74,1.0],[125,85,75,1.0],[125,85,76,1.0],[125,85,77,1.0],[125,85,78,1.0],[125,85,79,1.0],[125,86,64,1.0],[125,86,65,1.0],[125,86,66,1.0],[125,86,67,1.0],[125,86,68,1.0],[125,86,69,1.0],[125,86,70,1.0],[125,86,71,1.0],[125,86,72,1.0],[125,86,73,1.0],[125,86,74,1.0],[125,86,75,1.0],[125,86,76,1.0],[125,86,77,1.0],[125,86,78,1.0],[125,86,79,1.0],[125,87,64,1.0],[125,87,65,1.0],[125,87,66,1.0],[125,87,67,1.0],[125,87,68,1.0],[125,87,69,1.0],[125,87,70,1.0],[125,87,71,1.0],[125,87,72,1.0],[125,87,73,1.0],[125,87,74,1.0],[125,87,75,1.0],[125,87,76,1.0],[125,87,77,1.0],[125,87,78,1.0],[125,87,79,1.0],[125,88,64,1.0],[125,88,65,1.0],[125,88,66,1.0],[125,88,67,1.0],[125,88,68,1.0],[125,88,69,1.0],[125,88,70,1.0],[125,88,71,1.0],[125,88,72,1.0],[125,88,73,1.0],[125,88,74,1.0],[125,88,75,1.0],[125,88,76,1.0],[125,88,77,1.0],[125,88,78,1.0],[125,88,79,1.0],[125,89,64,1.0],[125,89,65,1.0],[125,89,66,1.0],[125,89,67,1.0],[125,89,68,1.0],[125,89,69,1.0],[125,89,70,1.0],[125,89,71,1.0],[125,89,72,1.0],[125,89,73,1.0],[125,89,74,1.0],[125,89,75,1.0],[125,89,76,1.0],[125,89,77,1.0],[125,89,78,1.0],[125,89,79,1.0],[125,90,64,1.0],[125,90,65,1.0],[125,90,66,1.0],[125,90,67,1.0],[125,90,68,1.0],[125,90,69,1.0],[125,90,70,1.0],[125,90,71,1.0],[125,90,72,1.0],[125,90,73,1.0],[125,90,74,1.0],[125,90,75,1.0],[125,90,76,1.0],[125,90,77,1.0],[125,90,78,1.0],[125,90,79,1.0],[125,91,64,1.0],[125,91,65,1.0],[125,91,66,1.0],[125,91,67,1.0],[125,91,68,1.0],[125,91,69,1.0],[125,91,70,1.0],[125,91,71,1.0],[125,91,72,1.0],[125,91,73,1.0],[125,91,74,1.0],[125,91,75,1.0],[125,91,76,1.0],[125,91,77,1.0],[125,91,78,1.0],[125,91,79,1.0],[125,92,64,1.0],[125,92,65,1.0],[125,92,66,1.0],[125,92,67,1.0],[125,92,68,1.0],[125,92,69,1.0],[125,92,70,1.0],[125,92,71,1.0],[125,92,72,1.0],[125,92,73,1.0],[125,92,74,1.0],[125,92,75,1.0],[125,92,76,1.0],[125,92,77,1.0],[125,92,78,1.0],[125,92,79,1.0],[125,93,64,1.0],[125,93,65,1.0],[125,93,66,1.0],[125,93,67,1.0],[125,93,68,1.0],[125,93,69,1.0],[125,93,70,1.0],[125,93,71,1.0],[125,93,72,1.0],[125,93,73,1.0],[125,93,74,1.0],[125,93,75,1.0],[125,93,76,1.0],[125,93,77,1.0],[125,93,78,1.0],[125,93,79,1.0],[125,94,64,1.0],[125,94,65,1.0],[125,94,66,1.0],[125,94,67,1.0],[125,94,68,1.0],[125,94,69,1.0],[125,94,70,1.0],[125,94,71,1.0],[125,94,72,1.0],[125,94,73,1.0],[125,94,74,1.0],[125,94,75,1.0],[125,94,76,1.0],[125,94,77,1.0],[125,94,78,1.0],[125,94,79,1.0],[125,95,64,1.0],[125,95,65,1.0],[125,95,66,1.0],[125,95,67,1.0],[125,95,68,1.0],[125,95,69,1.0],[125,95,70,1.0],[125,95,71,1.0],[125,95,72,1.0],[125,95,73,1.0],[125,95,74,1.0],[125,95,75,1.0],[125,95,76,1.0],[125,95,77,1.0],[125,95,78,1.0],[125,95,79,1.0],[125,96,64,1.0],[125,96,65,1.0],[125,96,66,1.0],[125,96,67,1.0],[125,96,68,1.0],[125,96,69,1.0],[125,96,70,1.0],[125,96,71,1.0],[125,96,72,1.0],[125,96,73,1.0],[125,96,74,1.0],[125,96,75,1.0],[125,96,76,1.0],[125,96,77,1.0],[125,96,78,1.0],[125,96,79,1.0],[125,97,64,1.0],[125,97,65,1.0],[125,97,66,1.0],[125,97,67,1.0],[125,97,68,1.0],[125,97,69,1.0],[125,97,70,1.0],[125,97,71,1.0],[125,97,72,1.0],[125,97,73,1.0],[125,97,74,1.0],[125,97,75,1.0],[125,97,76,1.0],[125,97,77,1.0],[125,97,78,1.0],[125,97,79,1.0],[125,98,64,1.0],[125,98,65,1.0],[125,98,66,1.0],[125,98,67,1.0],[125,98,68,1.0],[125,98,69,1.0],[125,98,70,1.0],[125,98,71,1.0],[125,98,72,1.0],[125,98,73,1.0],[125,98,74,1.0],[125,98,75,1.0],[125,98,76,1.0],[125,98,77,1.0],[125,98,78,1.0],[125,98,79,1.0],[125,99,64,1.0],[125,99,65,1.0],[125,99,66,1.0],[125,99,67,1.0],[125,99,68,1.0],[125,99,69,1.0],[125,99,70,1.0],[125,99,71,1.0],[125,99,72,1.0],[125,99,73,1.0],[125,99,74,1.0],[125,99,75,1.0],[125,99,76,1.0],[125,99,77,1.0],[125,99,78,1.0],[125,99,79,1.0],[125,100,64,1.0],[125,100,65,1.0],[125,100,66,1.0],[125,100,67,1.0],[125,100,68,1.0],[125,100,69,1.0],[125,100,70,1.0],[125,100,71,1.0],[125,100,72,1.0],[125,100,73,1.0],[125,100,74,1.0],[125,100,75,1.0],[125,100,76,1.0],[125,100,77,1.0],[125,100,78,1.0],[125,100,79,1.0],[125,101,64,1.0],[125,101,65,1.0],[125,101,66,1.0],[125,101,67,1.0],[125,101,68,1.0],[125,101,69,1.0],[125,101,70,1.0],[125,101,71,1.0],[125,101,72,1.0],[125,101,73,1.0],[125,101,74,1.0],[125,101,75,1.0],[125,101,76,1.0],[125,101,77,1.0],[125,101,78,1.0],[125,101,79,1.0],[125,102,64,1.0],[125,102,65,1.0],[125,102,66,1.0],[125,102,67,1.0],[125,102,68,1.0],[125,102,69,1.0],[125,102,70,1.0],[125,102,71,1.0],[125,102,72,1.0],[125,102,73,1.0],[125,102,74,1.0],[125,102,75,1.0],[125,102,76,1.0],[125,102,77,1.0],[125,102,78,1.0],[125,102,79,1.0],[125,103,64,1.0],[125,103,65,1.0],[125,103,66,1.0],[125,103,67,1.0],[125,103,68,1.0],[125,103,69,1.0],[125,103,70,1.0],[125,103,71,1.0],[125,103,72,1.0],[125,103,73,1.0],[125,103,74,1.0],[125,103,75,1.0],[125,103,76,1.0],[125,103,77,1.0],[125,103,78,1.0],[125,103,79,1.0],[125,104,64,1.0],[125,104,65,1.0],[125,104,66,1.0],[125,104,67,1.0],[125,104,68,1.0],[125,104,69,1.0],[125,104,70,1.0],[125,104,71,1.0],[125,104,72,1.0],[125,104,73,1.0],[125,104,74,1.0],[125,104,75,1.0],[125,104,76,1.0],[125,104,77,1.0],[125,104,78,1.0],[125,104,79,1.0],[125,105,64,1.0],[125,105,65,1.0],[125,105,66,1.0],[125,105,67,1.0],[125,105,68,1.0],[125,105,69,1.0],[125,105,70,1.0],[125,105,71,1.0],[125,105,72,1.0],[125,105,73,1.0],[125,105,74,1.0],[125,105,75,1.0],[125,105,76,1.0],[125,105,77,1.0],[125,105,78,1.0],[125,105,79,1.0],[125,106,64,1.0],[125,106,65,1.0],[125,106,66,1.0],[125,106,67,1.0],[125,106,68,1.0],[125,106,69,1.0],[125,106,70,1.0],[125,106,71,1.0],[125,106,72,1.0],[125,106,73,1.0],[125,106,74,1.0],[125,106,75,1.0],[125,106,76,1.0],[125,106,77,1.0],[125,106,78,1.0],[125,106,79,1.0],[125,107,64,1.0],[125,107,65,1.0],[125,107,66,1.0],[125,107,67,1.0],[125,107,68,1.0],[125,107,69,1.0],[125,107,70,1.0],[125,107,71,1.0],[125,107,72,1.0],[125,107,73,1.0],[125,107,74,1.0],[125,107,75,1.0],[125,107,76,1.0],[125,107,77,1.0],[125,107,78,1.0],[125,107,79,1.0],[125,108,64,1.0],[125,108,65,1.0],[125,108,66,1.0],[125,108,67,1.0],[125,108,68,1.0],[125,108,69,1.0],[125,108,70,1.0],[125,108,71,1.0],[125,108,72,1.0],[125,108,73,1.0],[125,108,74,1.0],[125,108,75,1.0],[125,108,76,1.0],[125,108,77,1.0],[125,108,78,1.0],[125,108,79,1.0],[125,109,64,1.0],[125,109,65,1.0],[125,109,66,1.0],[125,109,67,1.0],[125,109,68,1.0],[125,109,69,1.0],[125,109,70,1.0],[125,109,71,1.0],[125,109,72,1.0],[125,109,73,1.0],[125,109,74,1.0],[125,109,75,1.0],[125,109,76,1.0],[125,109,77,1.0],[125,109,78,1.0],[125,109,79,1.0],[125,110,64,1.0],[125,110,65,1.0],[125,110,66,1.0],[125,110,67,1.0],[125,110,68,1.0],[125,110,69,1.0],[125,110,70,1.0],[125,110,71,1.0],[125,110,72,1.0],[125,110,73,1.0],[125,110,74,1.0],[125,110,75,1.0],[125,110,76,1.0],[125,110,77,1.0],[125,110,78,1.0],[125,110,79,1.0],[125,111,64,1.0],[125,111,65,1.0],[125,111,66,1.0],[125,111,67,1.0],[125,111,68,1.0],[125,111,69,1.0],[125,111,70,1.0],[125,111,71,1.0],[125,111,72,1.0],[125,111,73,1.0],[125,111,74,1.0],[125,111,75,1.0],[125,111,76,1.0],[125,111,77,1.0],[125,111,78,1.0],[125,111,79,1.0],[125,112,64,1.0],[125,112,65,1.0],[125,112,66,1.0],[125,112,67,1.0],[125,112,68,1.0],[125,112,69,1.0],[125,112,70,1.0],[125,112,71,1.0],[125,112,72,1.0],[125,112,73,1.0],[125,112,74,1.0],[125,112,75,1.0],[125,112,76,1.0],[125,112,77,1.0],[125,112,78,1.0],[125,112,79,1.0],[125,113,64,1.0],[125,113,65,1.0],[125,113,66,1.0],[125,113,67,1.0],[125,113,68,1.0],[125,113,69,1.0],[125,113,70,1.0],[125,113,71,1.0],[125,113,72,1.0],[125,113,73,1.0],[125,113,74,1.0],[125,113,75,1.0],[125,113,76,1.0],[125,113,77,1.0],[125,113,78,1.0],[125,113,79,1.0],[125,114,64,1.0],[125,114,65,1.0],[125,114,66,1.0],[125,114,67,1.0],[125,114,68,1.0],[125,114,69,1.0],[125,114,70,1.0],[125,114,71,1.0],[125,114,72,1.0],[125,114,73,1.0],[125,114,74,1.0],[125,114,75,1.0],[125,114,76,1.0],[125,114,77,1.0],[125,114,78,1.0],[125,114,79,1.0],[125,115,64,1.0],[125,115,65,1.0],[125,115,66,1.0],[125,115,67,1.0],[125,115,68,1.0],[125,115,69,1.0],[125,115,70,1.0],[125,115,71,1.0],[125,115,72,1.0],[125,115,73,1.0],[125,115,74,1.0],[125,115,75,1.0],[125,115,76,1.0],[125,115,77,1.0],[125,115,78,1.0],[125,115,79,1.0],[125,116,64,1.0],[125,116,65,1.0],[125,116,66,1.0],[125,116,67,1.0],[125,116,68,1.0],[125,116,69,1.0],[125,116,70,1.0],[125,116,71,1.0],[125,116,72,1.0],[125,116,73,1.0],[125,116,74,1.0],[125,116,75,1.0],[125,116,76,1.0],[125,116,77,1.0],[125,116,78,1.0],[125,116,79,1.0],[125,117,64,1.0],[125,117,65,1.0],[125,117,66,1.0],[125,117,67,1.0],[125,117,68,1.0],[125,117,69,1.0],[125,117,70,1.0],[125,117,71,1.0],[125,117,72,1.0],[125,117,73,1.0],[125,117,74,1.0],[125,117,75,1.0],[125,117,76,1.0],[125,117,77,1.0],[125,117,78,1.0],[125,117,79,1.0],[125,118,64,1.0],[125,118,65,1.0],[125,118,66,1.0],[125,118,67,1.0],[125,118,68,1.0],[125,118,69,1.0],[125,118,70,1.0],[125,118,71,1.0],[125,118,72,1.0],[125,118,73,1.0],[125,118,74,1.0],[125,118,75,1.0],[125,118,76,1.0],[125,118,77,1.0],[125,118,78,1.0],[125,118,79,1.0],[125,119,64,1.0],[125,119,65,1.0],[125,119,66,1.0],[125,119,67,1.0],[125,119,68,1.0],[125,119,69,1.0],[125,119,70,1.0],[125,119,71,1.0],[125,119,72,1.0],[125,119,73,1.0],[125,119,74,1.0],[125,119,75,1.0],[125,119,76,1.0],[125,119,77,1.0],[125,119,78,1.0],[125,119,79,1.0],[125,120,64,1.0],[125,120,65,1.0],[125,120,66,1.0],[125,120,67,1.0],[125,120,68,1.0],[125,120,69,1.0],[125,120,70,1.0],[125,120,71,1.0],[125,120,72,1.0],[125,120,73,1.0],[125,120,74,1.0],[125,120,75,1.0],[125,120,76,1.0],[125,120,77,1.0],[125,120,78,1.0],[125,120,79,1.0],[125,121,64,1.0],[125,121,65,1.0],[125,121,66,1.0],[125,121,67,1.0],[125,121,68,1.0],[125,121,69,1.0],[125,121,70,1.0],[125,121,71,1.0],[125,121,72,1.0],[125,121,73,1.0],[125,121,74,1.0],[125,121,75,1.0],[125,121,76,1.0],[125,121,77,1.0],[125,121,78,1.0],[125,121,79,1.0],[125,122,64,1.0],[125,122,65,1.0],[125,122,66,1.0],[125,122,67,1.0],[125,122,68,1.0],[125,122,69,1.0],[125,122,70,1.0],[125,122,71,1.0],[125,122,72,1.0],[125,122,73,1.0],[125,122,74,1.0],[125,122,75,1.0],[125,122,76,1.0],[125,122,77,1.0],[125,122,78,1.0],[125,122,79,1.0],[125,123,64,1.0],[125,123,65,1.0],[125,123,66,1.0],[125,123,67,1.0],[125,123,68,1.0],[125,123,69,1.0],[125,123,70,1.0],[125,123,71,1.0],[125,123,72,1.0],[125,123,73,1.0],[125,123,74,1.0],[125,123,75,1.0],[125,123,76,1.0],[125,123,77,1.0],[125,123,78,1.0],[125,123,79,1.0],[125,124,64,1.0],[125,124,65,1.0],[125,124,66,1.0],[125,124,67,1.0],[125,124,68,1.0],[125,124,69,1.0],[125,124,70,1.0],[125,124,71,1.0],[125,124,72,1.0],[125,124,73,1.0],[125,124,74,1.0],[125,124,75,1.0],[125,124,76,1.0],[125,124,77,1.0],[125,124,78,1.0],[125,124,79,1.0],[125,125,64,1.0],[125,125,65,1.0],[125,125,66,1.0],[125,125,67,1.0],[125,125,68,1.0],[125,125,69,1.0],[125,125,70,1.0],[125,125,71,1.0],[125,125,72,1.0],[125,125,73,1.0],[125,125,74,1.0],[125,125,75,1.0],[125,125,76,1.0],[125,125,77,1.0],[125,125,78,1.0],[125,125,79,1.0],[125,126,64,1.0],[125,126,65,1.0],[125,126,66,1.0],[125,126,67,1.0],[125,126,68,1.0],[125,126,69,1.0],[125,126,70,1.0],[125,126,71,1.0],[125,126,72,1.0],[125,126,73,1.0],[125,126,74,1.0],[125,126,75,1.0],[125,126,76,1.0],[125,126,77,1.0],[125,126,78,1.0],[125,126,79,1.0],[125,127,64,1.0],[125,127,65,1.0],[125,127,66,1.0],[125,127,67,1.0],[125,127,68,1.0],[125,127,69,1.0],[125,127,70,1.0],[125,127,71,1.0],[125,127,72,1.0],[125,127,73,1.0],[125,127,74,1.0],[125,127,75,1.0],[125,127,76,1.0],[125,127,77,1.0],[125,127,78,1.0],[125,127,79,1.0],[125,128,64,1.0],[125,128,65,1.0],[125,128,66,1.0],[125,128,67,1.0],[125,128,68,1.0],[125,128,69,1.0],[125,128,70,1.0],[125,128,71,1.0],[125,128,72,1.0],[125,128,73,1.0],[125,128,74,1.0],[125,128,75,1.0],[125,128,76,1.0],[125,128,77,1.0],[125,128,78,1.0],[125,128,79,1.0],[125,129,64,1.0],[125,129,65,1.0],[125,129,66,1.0],[125,129,67,1.0],[125,129,68,1.0],[125,129,69,1.0],[125,129,70,1.0],[125,129,71,1.0],[125,129,72,1.0],[125,129,73,1.0],[125,129,74,1.0],[125,129,75,1.0],[125,129,76,1.0],[125,129,77,1.0],[125,129,78,1.0],[125,129,79,1.0],[125,130,64,1.0],[125,130,65,1.0],[125,130,66,1.0],[125,130,67,1.0],[125,130,68,1.0],[125,130,69,1.0],[125,130,70,1.0],[125,130,71,1.0],[125,130,72,1.0],[125,130,73,1.0],[125,130,74,1.0],[125,130,75,1.0],[125,130,76,1.0],[125,130,77,1.0],[125,130,78,1.0],[125,130,79,1.0],[125,131,64,1.0],[125,131,65,1.0],[125,131,66,1.0],[125,131,67,1.0],[125,131,68,1.0],[125,131,69,1.0],[125,131,70,1.0],[125,131,71,1.0],[125,131,72,1.0],[125,131,73,1.0],[125,131,74,1.0],[125,131,75,1.0],[125,131,76,1.0],[125,131,77,1.0],[125,131,78,1.0],[125,131,79,1.0],[125,132,64,1.0],[125,132,65,1.0],[125,132,66,1.0],[125,132,67,1.0],[125,132,68,1.0],[125,132,69,1.0],[125,132,70,1.0],[125,132,71,1.0],[125,132,72,1.0],[125,132,73,1.0],[125,132,74,1.0],[125,132,75,1.0],[125,132,76,1.0],[125,132,77,1.0],[125,132,78,1.0],[125,132,79,1.0],[125,133,64,1.0],[125,133,65,1.0],[125,133,66,1.0],[125,133,67,1.0],[125,133,68,1.0],[125,133,69,1.0],[125,133,70,1.0],[125,133,71,1.0],[125,133,72,1.0],[125,133,73,1.0],[125,133,74,1.0],[125,133,75,1.0],[125,133,76,1.0],[125,133,77,1.0],[125,133,78,1.0],[125,133,79,1.0],[125,134,64,1.0],[125,134,65,1.0],[125,134,66,1.0],[125,134,67,1.0],[125,134,68,1.0],[125,134,69,1.0],[125,134,70,1.0],[125,134,71,1.0],[125,134,72,1.0],[125,134,73,1.0],[125,134,74,1.0],[125,134,75,1.0],[125,134,76,1.0],[125,134,77,1.0],[125,134,78,1.0],[125,134,79,1.0],[125,135,64,1.0],[125,135,65,1.0],[125,135,66,1.0],[125,135,67,1.0],[125,135,68,1.0],[125,135,69,1.0],[125,135,70,1.0],[125,135,71,1.0],[125,135,72,1.0],[125,135,73,1.0],[125,135,74,1.0],[125,135,75,1.0],[125,135,76,1.0],[125,135,77,1.0],[125,135,78,1.0],[125,135,79,1.0],[125,136,64,1.0],[125,136,65,1.0],[125,136,66,1.0],[125,136,67,1.0],[125,136,68,1.0],[125,136,69,1.0],[125,136,70,1.0],[125,136,71,1.0],[125,136,72,1.0],[125,136,73,1.0],[125,136,74,1.0],[125,136,75,1.0],[125,136,76,1.0],[125,136,77,1.0],[125,136,78,1.0],[125,136,79,1.0],[125,137,64,1.0],[125,137,65,1.0],[125,137,66,1.0],[125,137,67,1.0],[125,137,68,1.0],[125,137,69,1.0],[125,137,70,1.0],[125,137,71,1.0],[125,137,72,1.0],[125,137,73,1.0],[125,137,74,1.0],[125,137,75,1.0],[125,137,76,1.0],[125,137,77,1.0],[125,137,78,1.0],[125,137,79,1.0],[125,138,64,1.0],[125,138,65,1.0],[125,138,66,1.0],[125,138,67,1.0],[125,138,68,1.0],[125,138,69,1.0],[125,138,70,1.0],[125,138,71,1.0],[125,138,72,1.0],[125,138,73,1.0],[125,138,74,1.0],[125,138,75,1.0],[125,138,76,1.0],[125,138,77,1.0],[125,138,78,1.0],[125,138,79,1.0],[125,139,64,1.0],[125,139,65,1.0],[125,139,66,1.0],[125,139,67,1.0],[125,139,68,1.0],[125,139,69,1.0],[125,139,70,1.0],[125,139,71,1.0],[125,139,72,1.0],[125,139,73,1.0],[125,139,74,1.0],[125,139,75,1.0],[125,139,76,1.0],[125,139,77,1.0],[125,139,78,1.0],[125,139,79,1.0],[125,140,64,1.0],[125,140,65,1.0],[125,140,66,1.0],[125,140,67,1.0],[125,140,68,1.0],[125,140,69,1.0],[125,140,70,1.0],[125,140,71,1.0],[125,140,72,1.0],[125,140,73,1.0],[125,140,74,1.0],[125,140,75,1.0],[125,140,76,1.0],[125,140,77,1.0],[125,140,78,1.0],[125,140,79,1.0],[125,141,64,1.0],[125,141,65,1.0],[125,141,66,1.0],[125,141,67,1.0],[125,141,68,1.0],[125,141,69,1.0],[125,141,70,1.0],[125,141,71,1.0],[125,141,72,1.0],[125,141,73,1.0],[125,141,74,1.0],[125,141,75,1.0],[125,141,76,1.0],[125,141,77,1.0],[125,141,78,1.0],[125,141,79,1.0],[125,142,64,1.0],[125,142,65,1.0],[125,142,66,1.0],[125,142,67,1.0],[125,142,68,1.0],[125,142,69,1.0],[125,142,70,1.0],[125,142,71,1.0],[125,142,72,1.0],[125,142,73,1.0],[125,142,74,1.0],[125,142,75,1.0],[125,142,76,1.0],[125,142,77,1.0],[125,142,78,1.0],[125,142,79,1.0],[125,143,64,1.0],[125,143,65,1.0],[125,143,66,1.0],[125,143,67,1.0],[125,143,68,1.0],[125,143,69,1.0],[125,143,70,1.0],[125,143,71,1.0],[125,143,72,1.0],[125,143,73,1.0],[125,143,74,1.0],[125,143,75,1.0],[125,143,76,1.0],[125,143,77,1.0],[125,143,78,1.0],[125,143,79,1.0],[125,144,64,1.0],[125,144,65,1.0],[125,144,66,1.0],[125,144,67,1.0],[125,144,68,1.0],[125,144,69,1.0],[125,144,70,1.0],[125,144,71,1.0],[125,144,72,1.0],[125,144,73,1.0],[125,144,74,1.0],[125,144,75,1.0],[125,144,76,1.0],[125,144,77,1.0],[125,144,78,1.0],[125,144,79,1.0],[125,145,64,1.0],[125,145,65,1.0],[125,145,66,1.0],[125,145,67,1.0],[125,145,68,1.0],[125,145,69,1.0],[125,145,70,1.0],[125,145,71,1.0],[125,145,72,1.0],[125,145,73,1.0],[125,145,74,1.0],[125,145,75,1.0],[125,145,76,1.0],[125,145,77,1.0],[125,145,78,1.0],[125,145,79,1.0],[125,146,64,1.0],[125,146,65,1.0],[125,146,66,1.0],[125,146,67,1.0],[125,146,68,1.0],[125,146,69,1.0],[125,146,70,1.0],[125,146,71,1.0],[125,146,72,1.0],[125,146,73,1.0],[125,146,74,1.0],[125,146,75,1.0],[125,146,76,1.0],[125,146,77,1.0],[125,146,78,1.0],[125,146,79,1.0],[125,147,64,1.0],[125,147,65,1.0],[125,147,66,1.0],[125,147,67,1.0],[125,147,68,1.0],[125,147,69,1.0],[125,147,70,1.0],[125,147,71,1.0],[125,147,72,1.0],[125,147,73,1.0],[125,147,74,1.0],[125,147,75,1.0],[125,147,76,1.0],[125,147,77,1.0],[125,147,78,1.0],[125,147,79,1.0],[125,148,64,1.0],[125,148,65,1.0],[125,148,66,1.0],[125,148,67,1.0],[125,148,68,1.0],[125,148,69,1.0],[125,148,70,1.0],[125,148,71,1.0],[125,148,72,1.0],[125,148,73,1.0],[125,148,74,1.0],[125,148,75,1.0],[125,148,76,1.0],[125,148,77,1.0],[125,148,78,1.0],[125,148,79,1.0],[125,149,64,1.0],[125,149,65,1.0],[125,149,66,1.0],[125,149,67,1.0],[125,149,68,1.0],[125,149,69,1.0],[125,149,70,1.0],[125,149,71,1.0],[125,149,72,1.0],[125,149,73,1.0],[125,149,74,1.0],[125,149,75,1.0],[125,149,76,1.0],[125,149,77,1.0],[125,149,78,1.0],[125,149,79,1.0],[125,150,64,1.0],[125,150,65,1.0],[125,150,66,1.0],[125,150,67,1.0],[125,150,68,1.0],[125,150,69,1.0],[125,150,70,1.0],[125,150,71,1.0],[125,150,72,1.0],[125,150,73,1.0],[125,150,74,1.0],[125,150,75,1.0],[125,150,76,1.0],[125,150,77,1.0],[125,150,78,1.0],[125,150,79,1.0],[125,151,64,1.0],[125,151,65,1.0],[125,151,66,1.0],[125,151,67,1.0],[125,151,68,1.0],[125,151,69,1.0],[125,151,70,1.0],[125,151,71,1.0],[125,151,72,1.0],[125,151,73,1.0],[125,151,74,1.0],[125,151,75,1.0],[125,151,76,1.0],[125,151,77,1.0],[125,151,78,1.0],[125,151,79,1.0],[125,152,64,1.0],[125,152,65,1.0],[125,152,66,1.0],[125,152,67,1.0],[125,152,68,1.0],[125,152,69,1.0],[125,152,70,1.0],[125,152,71,1.0],[125,152,72,1.0],[125,152,73,1.0],[125,152,74,1.0],[125,152,75,1.0],[125,152,76,1.0],[125,152,77,1.0],[125,152,78,1.0],[125,152,79,1.0],[125,153,64,1.0],[125,153,65,1.0],[125,153,66,1.0],[125,153,67,1.0],[125,153,68,1.0],[125,153,69,1.0],[125,153,70,1.0],[125,153,71,1.0],[125,153,72,1.0],[125,153,73,1.0],[125,153,74,1.0],[125,153,75,1.0],[125,153,76,1.0],[125,153,77,1.0],[125,153,78,1.0],[125,153,79,1.0],[125,154,64,1.0],[125,154,65,1.0],[125,154,66,1.0],[125,154,67,1.0],[125,154,68,1.0],[125,154,69,1.0],[125,154,70,1.0],[125,154,71,1.0],[125,154,72,1.0],[125,154,73,1.0],[125,154,74,1.0],[125,154,75,1.0],[125,154,76,1.0],[125,154,77,1.0],[125,154,78,1.0],[125,154,79,1.0],[125,155,64,1.0],[125,155,65,1.0],[125,155,66,1.0],[125,155,67,1.0],[125,155,68,1.0],[125,155,69,1.0],[125,155,70,1.0],[125,155,71,1.0],[125,155,72,1.0],[125,155,73,1.0],[125,155,74,1.0],[125,155,75,1.0],[125,155,76,1.0],[125,155,77,1.0],[125,155,78,1.0],[125,155,79,1.0],[125,156,64,1.0],[125,156,65,1.0],[125,156,66,1.0],[125,156,67,1.0],[125,156,68,1.0],[125,156,69,1.0],[125,156,70,1.0],[125,156,71,1.0],[125,156,72,1.0],[125,156,73,1.0],[125,156,74,1.0],[125,156,75,1.0],[125,156,76,1.0],[125,156,77,1.0],[125,156,78,1.0],[125,156,79,1.0],[125,157,64,1.0],[125,157,65,1.0],[125,157,66,1.0],[125,157,67,1.0],[125,157,68,1.0],[125,157,69,1.0],[125,157,70,1.0],[125,157,71,1.0],[125,157,72,1.0],[125,157,73,1.0],[125,157,74,1.0],[125,157,75,1.0],[125,157,76,1.0],[125,157,77,1.0],[125,157,78,1.0],[125,157,79,1.0],[125,158,64,1.0],[125,158,65,1.0],[125,158,66,1.0],[125,158,67,1.0],[125,158,68,1.0],[125,158,69,1.0],[125,158,70,1.0],[125,158,71,1.0],[125,158,72,1.0],[125,158,73,1.0],[125,158,74,1.0],[125,158,75,1.0],[125,158,76,1.0],[125,158,77,1.0],[125,158,78,1.0],[125,158,79,1.0],[125,159,64,1.0],[125,159,65,1.0],[125,159,66,1.0],[125,159,67,1.0],[125,159,68,1.0],[125,159,69,1.0],[125,159,70,1.0],[125,159,71,1.0],[125,159,72,1.0],[125,159,73,1.0],[125,159,74,1.0],[125,159,75,1.0],[125,159,76,1.0],[125,159,77,1.0],[125,159,78,1.0],[125,159,79,1.0],[125,160,64,1.0],[125,160,65,1.0],[125,160,66,1.0],[125,160,67,1.0],[125,160,68,1.0],[125,160,69,1.0],[125,160,70,1.0],[125,160,71,1.0],[125,160,72,1.0],[125,160,73,1.0],[125,160,74,1.0],[125,160,75,1.0],[125,160,76,1.0],[125,160,77,1.0],[125,160,78,1.0],[125,160,79,1.0],[125,161,64,1.0],[125,161,65,1.0],[125,161,66,1.0],[125,161,67,1.0],[125,161,68,1.0],[125,161,69,1.0],[125,161,70,1.0],[125,161,71,1.0],[125,161,72,1.0],[125,161,73,1.0],[125,161,74,1.0],[125,161,75,1.0],[125,161,76,1.0],[125,161,77,1.0],[125,161,78,1.0],[125,161,79,1.0],[125,162,64,1.0],[125,162,65,1.0],[125,162,66,1.0],[125,162,67,1.0],[125,162,68,1.0],[125,162,69,1.0],[125,162,70,1.0],[125,162,71,1.0],[125,162,72,1.0],[125,162,73,1.0],[125,162,74,1.0],[125,162,75,1.0],[125,162,76,1.0],[125,162,77,1.0],[125,162,78,1.0],[125,162,79,1.0],[125,163,64,1.0],[125,163,65,1.0],[125,163,66,1.0],[125,163,67,1.0],[125,163,68,1.0],[125,163,69,1.0],[125,163,70,1.0],[125,163,71,1.0],[125,163,72,1.0],[125,163,73,1.0],[125,163,74,1.0],[125,163,75,1.0],[125,163,76,1.0],[125,163,77,1.0],[125,163,78,1.0],[125,163,79,1.0],[125,164,64,1.0],[125,164,65,1.0],[125,164,66,1.0],[125,164,67,1.0],[125,164,68,1.0],[125,164,69,1.0],[125,164,70,1.0],[125,164,71,1.0],[125,164,72,1.0],[125,164,73,1.0],[125,164,74,1.0],[125,164,75,1.0],[125,164,76,1.0],[125,164,77,1.0],[125,164,78,1.0],[125,164,79,1.0],[125,165,64,1.0],[125,165,65,1.0],[125,165,66,1.0],[125,165,67,1.0],[125,165,68,1.0],[125,165,69,1.0],[125,165,70,1.0],[125,165,71,1.0],[125,165,72,1.0],[125,165,73,1.0],[125,165,74,1.0],[125,165,75,1.0],[125,165,76,1.0],[125,165,77,1.0],[125,165,78,1.0],[125,165,79,1.0],[125,166,64,1.0],[125,166,65,1.0],[125,166,66,1.0],[125,166,67,1.0],[125,166,68,1.0],[125,166,69,1.0],[125,166,70,1.0],[125,166,71,1.0],[125,166,72,1.0],[125,166,73,1.0],[125,166,74,1.0],[125,166,75,1.0],[125,166,76,1.0],[125,166,77,1.0],[125,166,78,1.0],[125,166,79,1.0],[125,167,64,1.0],[125,167,65,1.0],[125,167,66,1.0],[125,167,67,1.0],[125,167,68,1.0],[125,167,69,1.0],[125,167,70,1.0],[125,167,71,1.0],[125,167,72,1.0],[125,167,73,1.0],[125,167,74,1.0],[125,167,75,1.0],[125,167,76,1.0],[125,167,77,1.0],[125,167,78,1.0],[125,167,79,1.0],[125,168,64,1.0],[125,168,65,1.0],[125,168,66,1.0],[125,168,67,1.0],[125,168,68,1.0],[125,168,69,1.0],[125,168,70,1.0],[125,168,71,1.0],[125,168,72,1.0],[125,168,73,1.0],[125,168,74,1.0],[125,168,75,1.0],[125,168,76,1.0],[125,168,77,1.0],[125,168,78,1.0],[125,168,79,1.0],[125,169,64,1.0],[125,169,65,1.0],[125,169,66,1.0],[125,169,67,1.0],[125,169,68,1.0],[125,169,69,1.0],[125,169,70,1.0],[125,169,71,1.0],[125,169,72,1.0],[125,169,73,1.0],[125,169,74,1.0],[125,169,75,1.0],[125,169,76,1.0],[125,169,77,1.0],[125,169,78,1.0],[125,169,79,1.0],[125,170,64,1.0],[125,170,65,1.0],[125,170,66,1.0],[125,170,67,1.0],[125,170,68,1.0],[125,170,69,1.0],[125,170,70,1.0],[125,170,71,1.0],[125,170,72,1.0],[125,170,73,1.0],[125,170,74,1.0],[125,170,75,1.0],[125,170,76,1.0],[125,170,77,1.0],[125,170,78,1.0],[125,170,79,1.0],[125,171,64,1.0],[125,171,65,1.0],[125,171,66,1.0],[125,171,67,1.0],[125,171,68,1.0],[125,171,69,1.0],[125,171,70,1.0],[125,171,71,1.0],[125,171,72,1.0],[125,171,73,1.0],[125,171,74,1.0],[125,171,75,1.0],[125,171,76,1.0],[125,171,77,1.0],[125,171,78,1.0],[125,171,79,1.0],[125,172,64,1.0],[125,172,65,1.0],[125,172,66,1.0],[125,172,67,1.0],[125,172,68,1.0],[125,172,69,1.0],[125,172,70,1.0],[125,172,71,1.0],[125,172,72,1.0],[125,172,73,1.0],[125,172,74,1.0],[125,172,75,1.0],[125,172,76,1.0],[125,172,77,1.0],[125,172,78,1.0],[125,172,79,1.0],[125,173,64,1.0],[125,173,65,1.0],[125,173,66,1.0],[125,173,67,1.0],[125,173,68,1.0],[125,173,69,1.0],[125,173,70,1.0],[125,173,71,1.0],[125,173,72,1.0],[125,173,73,1.0],[125,173,74,1.0],[125,173,75,1.0],[125,173,76,1.0],[125,173,77,1.0],[125,173,78,1.0],[125,173,79,1.0],[125,174,64,1.0],[125,174,65,1.0],[125,174,66,1.0],[125,174,67,1.0],[125,174,68,1.0],[125,174,69,1.0],[125,174,70,1.0],[125,174,71,1.0],[125,174,72,1.0],[125,174,73,1.0],[125,174,74,1.0],[125,174,75,1.0],[125,174,76,1.0],[125,174,77,1.0],[125,174,78,1.0],[125,174,79,1.0],[125,175,64,1.0],[125,175,65,1.0],[125,175,66,1.0],[125,175,67,1.0],[125,175,68,1.0],[125,175,69,1.0],[125,175,70,1.0],[125,175,71,1.0],[125,175,72,1.0],[125,175,73,1.0],[125,175,74,1.0],[125,175,75,1.0],[125,175,76,1.0],[125,175,77,1.0],[125,175,78,1.0],[125,175,79,1.0],[125,176,64,1.0],[125,176,65,1.0],[125,176,66,1.0],[125,176,67,1.0],[125,176,68,1.0],[125,176,69,1.0],[125,176,70,1.0],[125,176,71,1.0],[125,176,72,1.0],[125,176,73,1.0],[125,176,74,1.0],[125,176,75,1.0],[125,176,76,1.0],[125,176,77,1.0],[125,176,78,1.0],[125,176,79,1.0],[125,177,64,1.0],[125,177,65,1.0],[125,177,66,1.0],[125,177,67,1.0],[125,177,68,1.0],[125,177,69,1.0],[125,177,70,1.0],[125,177,71,1.0],[125,177,72,1.0],[125,177,73,1.0],[125,177,74,1.0],[125,177,75,1.0],[125,177,76,1.0],[125,177,77,1.0],[125,177,78,1.0],[125,177,79,1.0],[125,178,64,1.0],[125,178,65,1.0],[125,178,66,1.0],[125,178,67,1.0],[125,178,68,1.0],[125,178,69,1.0],[125,178,70,1.0],[125,178,71,1.0],[125,178,72,1.0],[125,178,73,1.0],[125,178,74,1.0],[125,178,75,1.0],[125,178,76,1.0],[125,178,77,1.0],[125,178,78,1.0],[125,178,79,1.0],[125,179,64,1.0],[125,179,65,1.0],[125,179,66,1.0],[125,179,67,1.0],[125,179,68,1.0],[125,179,69,1.0],[125,179,70,1.0],[125,179,71,1.0],[125,179,72,1.0],[125,179,73,1.0],[125,179,74,1.0],[125,179,75,1.0],[125,179,76,1.0],[125,179,77,1.0],[125,179,78,1.0],[125,179,79,1.0],[125,180,64,1.0],[125,180,65,1.0],[125,180,66,1.0],[125,180,67,1.0],[125,180,68,1.0],[125,180,69,1.0],[125,180,70,1.0],[125,180,71,1.0],[125,180,72,1.0],[125,180,73,1.0],[125,180,74,1.0],[125,180,75,1.0],[125,180,76,1.0],[125,180,77,1.0],[125,180,78,1.0],[125,180,79,1.0],[125,181,64,1.0],[125,181,65,1.0],[125,181,66,1.0],[125,181,67,1.0],[125,181,68,1.0],[125,181,69,1.0],[125,181,70,1.0],[125,181,71,1.0],[125,181,72,1.0],[125,181,73,1.0],[125,181,74,1.0],[125,181,75,1.0],[125,181,76,1.0],[125,181,77,1.0],[125,181,78,1.0],[125,181,79,1.0],[125,182,64,1.0],[125,182,65,1.0],[125,182,66,1.0],[125,182,67,1.0],[125,182,68,1.0],[125,182,69,1.0],[125,182,70,1.0],[125,182,71,1.0],[125,182,72,1.0],[125,182,73,1.0],[125,182,74,1.0],[125,182,75,1.0],[125,182,76,1.0],[125,182,77,1.0],[125,182,78,1.0],[125,182,79,1.0],[125,183,64,1.0],[125,183,65,1.0],[125,183,66,1.0],[125,183,67,1.0],[125,183,68,1.0],[125,183,69,1.0],[125,183,70,1.0],[125,183,71,1.0],[125,183,72,1.0],[125,183,73,1.0],[125,183,74,1.0],[125,183,75,1.0],[125,183,76,1.0],[125,183,77,1.0],[125,183,78,1.0],[125,183,79,1.0],[125,184,64,1.0],[125,184,65,1.0],[125,184,66,1.0],[125,184,67,1.0],[125,184,68,1.0],[125,184,69,1.0],[125,184,70,1.0],[125,184,71,1.0],[125,184,72,1.0],[125,184,73,1.0],[125,184,74,1.0],[125,184,75,1.0],[125,184,76,1.0],[125,184,77,1.0],[125,184,78,1.0],[125,184,79,1.0],[125,185,64,1.0],[125,185,65,1.0],[125,185,66,1.0],[125,185,67,1.0],[125,185,68,1.0],[125,185,69,1.0],[125,185,70,1.0],[125,185,71,1.0],[125,185,72,1.0],[125,185,73,1.0],[125,185,74,1.0],[125,185,75,1.0],[125,185,76,1.0],[125,185,77,1.0],[125,185,78,1.0],[125,185,79,1.0],[125,186,64,1.0],[125,186,65,1.0],[125,186,66,1.0],[125,186,67,1.0],[125,186,68,1.0],[125,186,69,1.0],[125,186,70,1.0],[125,186,71,1.0],[125,186,72,1.0],[125,186,73,1.0],[125,186,74,1.0],[125,186,75,1.0],[125,186,76,1.0],[125,186,77,1.0],[125,186,78,1.0],[125,186,79,1.0],[125,187,64,1.0],[125,187,65,1.0],[125,187,66,1.0],[125,187,67,1.0],[125,187,68,1.0],[125,187,69,1.0],[125,187,70,1.0],[125,187,71,1.0],[125,187,72,1.0],[125,187,73,1.0],[125,187,74,1.0],[125,187,75,1.0],[125,187,76,1.0],[125,187,77,1.0],[125,187,78,1.0],[125,187,79,1.0],[125,188,64,1.0],[125,188,65,1.0],[125,188,66,1.0],[125,188,67,1.0],[125,188,68,1.0],[125,188,69,1.0],[125,188,70,1.0],[125,188,71,1.0],[125,188,72,1.0],[125,188,73,1.0],[125,188,74,1.0],[125,188,75,1.0],[125,188,76,1.0],[125,188,77,1.0],[125,188,78,1.0],[125,188,79,1.0],[125,189,64,1.0],[125,189,65,1.0],[125,189,66,1.0],[125,189,67,1.0],[125,189,68,1.0],[125,189,69,1.0],[125,189,70,1.0],[125,189,71,1.0],[125,189,72,1.0],[125,189,73,1.0],[125,189,74,1.0],[125,189,75,1.0],[125,189,76,1.0],[125,189,77,1.0],[125,189,78,1.0],[125,189,79,1.0],[125,190,64,1.0],[125,190,65,1.0],[125,190,66,1.0],[125,190,67,1.0],[125,190,68,1.0],[125,190,69,1.0],[125,190,70,1.0],[125,190,71,1.0],[125,190,72,1.0],[125,190,73,1.0],[125,190,74,1.0],[125,190,75,1.0],[125,190,76,1.0],[125,190,77,1.0],[125,190,78,1.0],[125,190,79,1.0],[125,191,64,1.0],[125,191,65,1.0],[125,191,66,1.0],[125,191,67,1.0],[125,191,68,1.0],[125,191,69,1.0],[125,191,70,1.0],[125,191,71,1.0],[125,191,72,1.0],[125,191,73,1.0],[125,191,74,1.0],[125,191,75,1.0],[125,191,76,1.0],[125,191,77,1.0],[125,191,78,1.0],[125,191,79,1.0],[125,192,64,1.0],[125,192,65,1.0],[125,192,66,1.0],[125,192,67,1.0],[125,192,68,1.0],[125,192,69,1.0],[125,192,70,1.0],[125,192,71,1.0],[125,192,72,1.0],[125,192,73,1.0],[125,192,74,1.0],[125,192,75,1.0],[125,192,76,1.0],[125,192,77,1.0],[125,192,78,1.0],[125,192,79,1.0],[125,193,64,1.0],[125,193,65,1.0],[125,193,66,1.0],[125,193,67,1.0],[125,193,68,1.0],[125,193,69,1.0],[125,193,70,1.0],[125,193,71,1.0],[125,193,72,1.0],[125,193,73,1.0],[125,193,74,1.0],[125,193,75,1.0],[125,193,76,1.0],[125,193,77,1.0],[125,193,78,1.0],[125,193,79,1.0],[125,194,64,1.0],[125,194,65,1.0],[125,194,66,1.0],[125,194,67,1.0],[125,194,68,1.0],[125,194,69,1.0],[125,194,70,1.0],[125,194,71,1.0],[125,194,72,1.0],[125,194,73,1.0],[125,194,74,1.0],[125,194,75,1.0],[125,194,76,1.0],[125,194,77,1.0],[125,194,78,1.0],[125,194,79,1.0],[125,195,64,1.0],[125,195,65,1.0],[125,195,66,1.0],[125,195,67,1.0],[125,195,68,1.0],[125,195,69,1.0],[125,195,70,1.0],[125,195,71,1.0],[125,195,72,1.0],[125,195,73,1.0],[125,195,74,1.0],[125,195,75,1.0],[125,195,76,1.0],[125,195,77,1.0],[125,195,78,1.0],[125,195,79,1.0],[125,196,64,1.0],[125,196,65,1.0],[125,196,66,1.0],[125,196,67,1.0],[125,196,68,1.0],[125,196,69,1.0],[125,196,70,1.0],[125,196,71,1.0],[125,196,72,1.0],[125,196,73,1.0],[125,196,74,1.0],[125,196,75,1.0],[125,196,76,1.0],[125,196,77,1.0],[125,196,78,1.0],[125,196,79,1.0],[125,197,64,1.0],[125,197,65,1.0],[125,197,66,1.0],[125,197,67,1.0],[125,197,68,1.0],[125,197,69,1.0],[125,197,70,1.0],[125,197,71,1.0],[125,197,72,1.0],[125,197,73,1.0],[125,197,74,1.0],[125,197,75,1.0],[125,197,76,1.0],[125,197,77,1.0],[125,197,78,1.0],[125,197,79,1.0],[125,198,64,1.0],[125,198,65,1.0],[125,198,66,1.0],[125,198,67,1.0],[125,198,68,1.0],[125,198,69,1.0],[125,198,70,1.0],[125,198,71,1.0],[125,198,72,1.0],[125,198,73,1.0],[125,198,74,1.0],[125,198,75,1.0],[125,198,76,1.0],[125,198,77,1.0],[125,198,78,1.0],[125,198,79,1.0],[125,199,64,1.0],[125,199,65,1.0],[125,199,66,1.0],[125,199,67,1.0],[125,199,68,1.0],[125,199,69,1.0],[125,199,70,1.0],[125,199,71,1.0],[125,199,72,1.0],[125,199,73,1.0],[125,199,74,1.0],[125,199,75,1.0],[125,199,76,1.0],[125,199,77,1.0],[125,199,78,1.0],[125,199,79,1.0],[125,200,64,1.0],[125,200,65,1.0],[125,200,66,1.0],[125,200,67,1.0],[125,200,68,1.0],[125,200,69,1.0],[125,200,70,1.0],[125,200,71,1.0],[125,200,72,1.0],[125,200,73,1.0],[125,200,74,1.0],[125,200,75,1.0],[125,200,76,1.0],[125,200,77,1.0],[125,200,78,1.0],[125,200,79,1.0],[125,201,64,1.0],[125,201,65,1.0],[125,201,66,1.0],[125,201,67,1.0],[125,201,68,1.0],[125,201,69,1.0],[125,201,70,1.0],[125,201,71,1.0],[125,201,72,1.0],[125,201,73,1.0],[125,201,74,1.0],[125,201,75,1.0],[125,201,76,1.0],[125,201,77,1.0],[125,201,78,1.0],[125,201,79,1.0],[125,202,64,1.0],[125,202,65,1.0],[125,202,66,1.0],[125,202,67,1.0],[125,202,68,1.0],[125,202,69,1.0],[125,202,70,1.0],[125,202,71,1.0],[125,202,72,1.0],[125,202,73,1.0],[125,202,74,1.0],[125,202,75,1.0],[125,202,76,1.0],[125,202,77,1.0],[125,202,78,1.0],[125,202,79,1.0],[125,203,64,1.0],[125,203,65,1.0],[125,203,66,1.0],[125,203,67,1.0],[125,203,68,1.0],[125,203,69,1.0],[125,203,70,1.0],[125,203,71,1.0],[125,203,72,1.0],[125,203,73,1.0],[125,203,74,1.0],[125,203,75,1.0],[125,203,76,1.0],[125,203,77,1.0],[125,203,78,1.0],[125,203,79,1.0],[125,204,64,1.0],[125,204,65,1.0],[125,204,66,1.0],[125,204,67,1.0],[125,204,68,1.0],[125,204,69,1.0],[125,204,70,1.0],[125,204,71,1.0],[125,204,72,1.0],[125,204,73,1.0],[125,204,74,1.0],[125,204,75,1.0],[125,204,76,1.0],[125,204,77,1.0],[125,204,78,1.0],[125,204,79,1.0],[125,205,64,1.0],[125,205,65,1.0],[125,205,66,1.0],[125,205,67,1.0],[125,205,68,1.0],[125,205,69,1.0],[125,205,70,1.0],[125,205,71,1.0],[125,205,72,1.0],[125,205,73,1.0],[125,205,74,1.0],[125,205,75,1.0],[125,205,76,1.0],[125,205,77,1.0],[125,205,78,1.0],[125,205,79,1.0],[125,206,64,1.0],[125,206,65,1.0],[125,206,66,1.0],[125,206,67,1.0],[125,206,68,1.0],[125,206,69,1.0],[125,206,70,1.0],[125,206,71,1.0],[125,206,72,1.0],[125,206,73,1.0],[125,206,74,1.0],[125,206,75,1.0],[125,206,76,1.0],[125,206,77,1.0],[125,206,78,1.0],[125,206,79,1.0],[125,207,64,1.0],[125,207,65,1.0],[125,207,66,1.0],[125,207,67,1.0],[125,207,68,1.0],[125,207,69,1.0],[125,207,70,1.0],[125,207,71,1.0],[125,207,72,1.0],[125,207,73,1.0],[125,207,74,1.0],[125,207,75,1.0],[125,207,76,1.0],[125,207,77,1.0],[125,207,78,1.0],[125,207,79,1.0],[125,208,64,1.0],[125,208,65,1.0],[125,208,66,1.0],[125,208,67,1.0],[125,208,68,1.0],[125,208,69,1.0],[125,208,70,1.0],[125,208,71,1.0],[125,208,72,1.0],[125,208,73,1.0],[125,208,74,1.0],[125,208,75,1.0],[125,208,76,1.0],[125,208,77,1.0],[125,208,78,1.0],[125,208,79,1.0],[125,209,64,1.0],[125,209,65,1.0],[125,209,66,1.0],[125,209,67,1.0],[125,209,68,1.0],[125,209,69,1.0],[125,209,70,1.0],[125,209,71,1.0],[125,209,72,1.0],[125,209,73,1.0],[125,209,74,1.0],[125,209,75,1.0],[125,209,76,1.0],[125,209,77,1.0],[125,209,78,1.0],[125,209,79,1.0],[125,210,64,1.0],[125,210,65,1.0],[125,210,66,1.0],[125,210,67,1.0],[125,210,68,1.0],[125,210,69,1.0],[125,210,70,1.0],[125,210,71,1.0],[125,210,72,1.0],[125,210,73,1.0],[125,210,74,1.0],[125,210,75,1.0],[125,210,76,1.0],[125,210,77,1.0],[125,210,78,1.0],[125,210,79,1.0],[125,211,64,1.0],[125,211,65,1.0],[125,211,66,1.0],[125,211,67,1.0],[125,211,68,1.0],[125,211,69,1.0],[125,211,70,1.0],[125,211,71,1.0],[125,211,72,1.0],[125,211,73,1.0],[125,211,74,1.0],[125,211,75,1.0],[125,211,76,1.0],[125,211,77,1.0],[125,211,78,1.0],[125,211,79,1.0],[125,212,64,1.0],[125,212,65,1.0],[125,212,66,1.0],[125,212,67,1.0],[125,212,68,1.0],[125,212,69,1.0],[125,212,70,1.0],[125,212,71,1.0],[125,212,72,1.0],[125,212,73,1.0],[125,212,74,1.0],[125,212,75,1.0],[125,212,76,1.0],[125,212,77,1.0],[125,212,78,1.0],[125,212,79,1.0],[125,213,64,1.0],[125,213,65,1.0],[125,213,66,1.0],[125,213,67,1.0],[125,213,68,1.0],[125,213,69,1.0],[125,213,70,1.0],[125,213,71,1.0],[125,213,72,1.0],[125,213,73,1.0],[125,213,74,1.0],[125,213,75,1.0],[125,213,76,1.0],[125,213,77,1.0],[125,213,78,1.0],[125,213,79,1.0],[125,214,64,1.0],[125,214,65,1.0],[125,214,66,1.0],[125,214,67,1.0],[125,214,68,1.0],[125,214,69,1.0],[125,214,70,1.0],[125,214,71,1.0],[125,214,72,1.0],[125,214,73,1.0],[125,214,74,1.0],[125,214,75,1.0],[125,214,76,1.0],[125,214,77,1.0],[125,214,78,1.0],[125,214,79,1.0],[125,215,64,1.0],[125,215,65,1.0],[125,215,66,1.0],[125,215,67,1.0],[125,215,68,1.0],[125,215,69,1.0],[125,215,70,1.0],[125,215,71,1.0],[125,215,72,1.0],[125,215,73,1.0],[125,215,74,1.0],[125,215,75,1.0],[125,215,76,1.0],[125,215,77,1.0],[125,215,78,1.0],[125,215,79,1.0],[125,216,64,1.0],[125,216,65,1.0],[125,216,66,1.0],[125,216,67,1.0],[125,216,68,1.0],[125,216,69,1.0],[125,216,70,1.0],[125,216,71,1.0],[125,216,72,1.0],[125,216,73,1.0],[125,216,74,1.0],[125,216,75,1.0],[125,216,76,1.0],[125,216,77,1.0],[125,216,78,1.0],[125,216,79,1.0],[125,217,64,1.0],[125,217,65,1.0],[125,217,66,1.0],[125,217,67,1.0],[125,217,68,1.0],[125,217,69,1.0],[125,217,70,1.0],[125,217,71,1.0],[125,217,72,1.0],[125,217,73,1.0],[125,217,74,1.0],[125,217,75,1.0],[125,217,76,1.0],[125,217,77,1.0],[125,217,78,1.0],[125,217,79,1.0],[125,218,64,1.0],[125,218,65,1.0],[125,218,66,1.0],[125,218,67,1.0],[125,218,68,1.0],[125,218,69,1.0],[125,218,70,1.0],[125,218,71,1.0],[125,218,72,1.0],[125,218,73,1.0],[125,218,74,1.0],[125,218,75,1.0],[125,218,76,1.0],[125,218,77,1.0],[125,218,78,1.0],[125,218,79,1.0],[125,219,64,1.0],[125,219,65,1.0],[125,219,66,1.0],[125,219,67,1.0],[125,219,68,1.0],[125,219,69,1.0],[125,219,70,1.0],[125,219,71,1.0],[125,219,72,1.0],[125,219,73,1.0],[125,219,74,1.0],[125,219,75,1.0],[125,219,76,1.0],[125,219,77,1.0],[125,219,78,1.0],[125,219,79,1.0],[125,220,64,1.0],[125,220,65,1.0],[125,220,66,1.0],[125,220,67,1.0],[125,220,68,1.0],[125,220,69,1.0],[125,220,70,1.0],[125,220,71,1.0],[125,220,72,1.0],[125,220,73,1.0],[125,220,74,1.0],[125,220,75,1.0],[125,220,76,1.0],[125,220,77,1.0],[125,220,78,1.0],[125,220,79,1.0],[125,221,64,1.0],[125,221,65,1.0],[125,221,66,1.0],[125,221,67,1.0],[125,221,68,1.0],[125,221,69,1.0],[125,221,70,1.0],[125,221,71,1.0],[125,221,72,1.0],[125,221,73,1.0],[125,221,74,1.0],[125,221,75,1.0],[125,221,76,1.0],[125,221,77,1.0],[125,221,78,1.0],[125,221,79,1.0],[125,222,64,1.0],[125,222,65,1.0],[125,222,66,1.0],[125,222,67,1.0],[125,222,68,1.0],[125,222,69,1.0],[125,222,70,1.0],[125,222,71,1.0],[125,222,72,1.0],[125,222,73,1.0],[125,222,74,1.0],[125,222,75,1.0],[125,222,76,1.0],[125,222,77,1.0],[125,222,78,1.0],[125,222,79,1.0],[125,223,64,1.0],[125,223,65,1.0],[125,223,66,1.0],[125,223,67,1.0],[125,223,68,1.0],[125,223,69,1.0],[125,223,70,1.0],[125,223,71,1.0],[125,223,72,1.0],[125,223,73,1.0],[125,223,74,1.0],[125,223,75,1.0],[125,223,76,1.0],[125,223,77,1.0],[125,223,78,1.0],[125,223,79,1.0],[125,224,64,1.0],[125,224,65,1.0],[125,224,66,1.0],[125,224,67,1.0],[125,224,68,1.0],[125,224,69,1.0],[125,224,70,1.0],[125,224,71,1.0],[125,224,72,1.0],[125,224,73,1.0],[125,224,74,1.0],[125,224,75,1.0],[125,224,76,1.0],[125,224,77,1.0],[125,224,78,1.0],[125,224,79,1.0],[125,225,64,1.0],[125,225,65,1.0],[125,225,66,1.0],[125,225,67,1.0],[125,225,68,1.0],[125,225,69,1.0],[125,225,70,1.0],[125,225,71,1.0],[125,225,72,1.0],[125,225,73,1.0],[125,225,74,1.0],[125,225,75,1.0],[125,225,76,1.0],[125,225,77,1.0],[125,225,78,1.0],[125,225,79,1.0],[125,226,64,1.0],[125,226,65,1.0],[125,226,66,1.0],[125,226,67,1.0],[125,226,68,1.0],[125,226,69,1.0],[125,226,70,1.0],[125,226,71,1.0],[125,226,72,1.0],[125,226,73,1.0],[125,226,74,1.0],[125,226,75,1.0],[125,226,76,1.0],[125,226,77,1.0],[125,226,78,1.0],[125,226,79,1.0],[125,227,64,1.0],[125,227,65,1.0],[125,227,66,1.0],[125,227,67,1.0],[125,227,68,1.0],[125,227,69,1.0],[125,227,70,1.0],[125,227,71,1.0],[125,227,72,1.0],[125,227,73,1.0],[125,227,74,1.0],[125,227,75,1.0],[125,227,76,1.0],[125,227,77,1.0],[125,227,78,1.0],[125,227,79,1.0],[125,228,64,1.0],[125,228,65,1.0],[125,228,66,1.0],[125,228,67,1.0],[125,228,68,1.0],[125,228,69,1.0],[125,228,70,1.0],[125,228,71,1.0],[125,228,72,1.0],[125,228,73,1.0],[125,228,74,1.0],[125,228,75,1.0],[125,228,76,1.0],[125,228,77,1.0],[125,228,78,1.0],[125,228,79,1.0],[125,229,64,1.0],[125,229,65,1.0],[125,229,66,1.0],[125,229,67,1.0],[125,229,68,1.0],[125,229,69,1.0],[125,229,70,1.0],[125,229,71,1.0],[125,229,72,1.0],[125,229,73,1.0],[125,229,74,1.0],[125,229,75,1.0],[125,229,76,1.0],[125,229,77,1.0],[125,229,78,1.0],[125,229,79,1.0],[125,230,64,1.0],[125,230,65,1.0],[125,230,66,1.0],[125,230,67,1.0],[125,230,68,1.0],[125,230,69,1.0],[125,230,70,1.0],[125,230,71,1.0],[125,230,72,1.0],[125,230,73,1.0],[125,230,74,1.0],[125,230,75,1.0],[125,230,76,1.0],[125,230,77,1.0],[125,230,78,1.0],[125,230,79,1.0],[125,231,64,1.0],[125,231,65,1.0],[125,231,66,1.0],[125,231,67,1.0],[125,231,68,1.0],[125,231,69,1.0],[125,231,70,1.0],[125,231,71,1.0],[125,231,72,1.0],[125,231,73,1.0],[125,231,74,1.0],[125,231,75,1.0],[125,231,76,1.0],[125,231,77,1.0],[125,231,78,1.0],[125,231,79,1.0],[125,232,64,1.0],[125,232,65,1.0],[125,232,66,1.0],[125,232,67,1.0],[125,232,68,1.0],[125,232,69,1.0],[125,232,70,1.0],[125,232,71,1.0],[125,232,72,1.0],[125,232,73,1.0],[125,232,74,1.0],[125,232,75,1.0],[125,232,76,1.0],[125,232,77,1.0],[125,232,78,1.0],[125,232,79,1.0],[125,233,64,1.0],[125,233,65,1.0],[125,233,66,1.0],[125,233,67,1.0],[125,233,68,1.0],[125,233,69,1.0],[125,233,70,1.0],[125,233,71,1.0],[125,233,72,1.0],[125,233,73,1.0],[125,233,74,1.0],[125,233,75,1.0],[125,233,76,1.0],[125,233,77,1.0],[125,233,78,1.0],[125,233,79,1.0],[125,234,64,1.0],[125,234,65,1.0],[125,234,66,1.0],[125,234,67,1.0],[125,234,68,1.0],[125,234,69,1.0],[125,234,70,1.0],[125,234,71,1.0],[125,234,72,1.0],[125,234,73,1.0],[125,234,74,1.0],[125,234,75,1.0],[125,234,76,1.0],[125,234,77,1.0],[125,234,78,1.0],[125,234,79,1.0],[125,235,64,1.0],[125,235,65,1.0],[125,235,66,1.0],[125,235,67,1.0],[125,235,68,1.0],[125,235,69,1.0],[125,235,70,1.0],[125,235,71,1.0],[125,235,72,1.0],[125,235,73,1.0],[125,235,74,1.0],[125,235,75,1.0],[125,235,76,1.0],[125,235,77,1.0],[125,235,78,1.0],[125,235,79,1.0],[125,236,64,1.0],[125,236,65,1.0],[125,236,66,1.0],[125,236,67,1.0],[125,236,68,1.0],[125,236,69,1.0],[125,236,70,1.0],[125,236,71,1.0],[125,236,72,1.0],[125,236,73,1.0],[125,236,74,1.0],[125,236,75,1.0],[125,236,76,1.0],[125,236,77,1.0],[125,236,78,1.0],[125,236,79,1.0],[125,237,64,1.0],[125,237,65,1.0],[125,237,66,1.0],[125,237,67,1.0],[125,237,68,1.0],[125,237,69,1.0],[125,237,70,1.0],[125,237,71,1.0],[125,237,72,1.0],[125,237,73,1.0],[125,237,74,1.0],[125,237,75,1.0],[125,237,76,1.0],[125,237,77,1.0],[125,237,78,1.0],[125,237,79,1.0],[125,238,64,1.0],[125,238,65,1.0],[125,238,66,1.0],[125,238,67,1.0],[125,238,68,1.0],[125,238,69,1.0],[125,238,70,1.0],[125,238,71,1.0],[125,238,72,1.0],[125,238,73,1.0],[125,238,74,1.0],[125,238,75,1.0],[125,238,76,1.0],[125,238,77,1.0],[125,238,78,1.0],[125,238,79,1.0],[125,239,64,1.0],[125,239,65,1.0],[125,239,66,1.0],[125,239,67,1.0],[125,239,68,1.0],[125,239,69,1.0],[125,239,70,1.0],[125,239,71,1.0],[125,239,72,1.0],[125,239,73,1.0],[125,239,74,1.0],[125,239,75,1.0],[125,239,76,1.0],[125,239,77,1.0],[125,239,78,1.0],[125,239,79,1.0],[125,240,64,1.0],[125,240,65,1.0],[125,240,66,1.0],[125,240,67,1.0],[125,240,68,1.0],[125,240,69,1.0],[125,240,70,1.0],[125,240,71,1.0],[125,240,72,1.0],[125,240,73,1.0],[125,240,74,1.0],[125,240,75,1.0],[125,240,76,1.0],[125,240,77,1.0],[125,240,78,1.0],[125,240,79,1.0],[125,241,64,1.0],[125,241,65,1.0],[125,241,66,1.0],[125,241,67,1.0],[125,241,68,1.0],[125,241,69,1.0],[125,241,70,1.0],[125,241,71,1.0],[125,241,72,1.0],[125,241,73,1.0],[125,241,74,1.0],[125,241,75,1.0],[125,241,76,1.0],[125,241,77,1.0],[125,241,78,1.0],[125,241,79,1.0],[125,242,64,1.0],[125,242,65,1.0],[125,242,66,1.0],[125,242,67,1.0],[125,242,68,1.0],[125,242,69,1.0],[125,242,70,1.0],[125,242,71,1.0],[125,242,72,1.0],[125,242,73,1.0],[125,242,74,1.0],[125,242,75,1.0],[125,242,76,1.0],[125,242,77,1.0],[125,242,78,1.0],[125,242,79,1.0],[125,243,64,1.0],[125,243,65,1.0],[125,243,66,1.0],[125,243,67,1.0],[125,243,68,1.0],[125,243,69,1.0],[125,243,70,1.0],[125,243,71,1.0],[125,243,72,1.0],[125,243,73,1.0],[125,243,74,1.0],[125,243,75,1.0],[125,243,76,1.0],[125,243,77,1.0],[125,243,78,1.0],[125,243,79,1.0],[125,244,64,1.0],[125,244,65,1.0],[125,244,66,1.0],[125,244,67,1.0],[125,244,68,1.0],[125,244,69,1.0],[125,244,70,1.0],[125,244,71,1.0],[125,244,72,1.0],[125,244,73,1.0],[125,244,74,1.0],[125,244,75,1.0],[125,244,76,1.0],[125,244,77,1.0],[125,244,78,1.0],[125,244,79,1.0],[125,245,64,1.0],[125,245,65,1.0],[125,245,66,1.0],[125,245,67,1.0],[125,245,68,1.0],[125,245,69,1.0],[125,245,70,1.0],[125,245,71,1.0],[125,245,72,1.0],[125,245,73,1.0],[125,245,74,1.0],[125,245,75,1.0],[125,245,76,1.0],[125,245,77,1.0],[125,245,78,1.0],[125,245,79,1.0],[125,246,64,1.0],[125,246,65,1.0],[125,246,66,1.0],[125,246,67,1.0],[125,246,68,1.0],[125,246,69,1.0],[125,246,70,1.0],[125,246,71,1.0],[125,246,72,1.0],[125,246,73,1.0],[125,246,74,1.0],[125,246,75,1.0],[125,246,76,1.0],[125,246,77,1.0],[125,246,78,1.0],[125,246,79,1.0],[125,247,64,1.0],[125,247,65,1.0],[125,247,66,1.0],[125,247,67,1.0],[125,247,68,1.0],[125,247,69,1.0],[125,247,70,1.0],[125,247,71,1.0],[125,247,72,1.0],[125,247,73,1.0],[125,247,74,1.0],[125,247,75,1.0],[125,247,76,1.0],[125,247,77,1.0],[125,247,78,1.0],[125,247,79,1.0],[125,248,64,1.0],[125,248,65,1.0],[125,248,66,1.0],[125,248,67,1.0],[125,248,68,1.0],[125,248,69,1.0],[125,248,70,1.0],[125,248,71,1.0],[125,248,72,1.0],[125,248,73,1.0],[125,248,74,1.0],[125,248,75,1.0],[125,248,76,1.0],[125,248,77,1.0],[125,248,78,1.0],[125,248,79,1.0],[125,249,64,1.0],[125,249,65,1.0],[125,249,66,1.0],[125,249,67,1.0],[125,249,68,1.0],[125,249,69,1.0],[125,249,70,1.0],[125,249,71,1.0],[125,249,72,1.0],[125,249,73,1.0],[125,249,74,1.0],[125,249,75,1.0],[125,249,76,1.0],[125,249,77,1.0],[125,249,78,1.0],[125,249,79,1.0],[125,250,64,1.0],[125,250,65,1.0],[125,250,66,1.0],[125,250,67,1.0],[125,250,68,1.0],[125,250,69,1.0],[125,250,70,1.0],[125,250,71,1.0],[125,250,72,1.0],[125,250,73,1.0],[125,250,74,1.0],[125,250,75,1.0],[125,250,76,1.0],[125,250,77,1.0],[125,250,78,1.0],[125,250,79,1.0],[125,251,64,1.0],[125,251,65,1.0],[125,251,66,1.0],[125,251,67,1.0],[125,251,68,1.0],[125,251,69,1.0],[125,251,70,1.0],[125,251,71,1.0],[125,251,72,1.0],[125,251,73,1.0],[125,251,74,1.0],[125,251,75,1.0],[125,251,76,1.0],[125,251,77,1.0],[125,251,78,1.0],[125,251,79,1.0],[125,252,64,1.0],[125,252,65,1.0],[125,252,66,1.0],[125,252,67,1.0],[125,252,68,1.0],[125,252,69,1.0],[125,252,70,1.0],[125,252,71,1.0],[125,252,72,1.0],[125,252,73,1.0],[125,252,74,1.0],[125,252,75,1.0],[125,252,76,1.0],[125,252,77,1.0],[125,252,78,1.0],[125,252,79,1.0],[125,253,64,1.0],[125,253,65,1.0],[125,253,66,1.0],[125,253,67,1.0],[125,253,68,1.0],[125,253,69,1.0],[125,253,70,1.0],[125,253,71,1.0],[125,253,72,1.0],[125,253,73,1.0],[125,253,74,1.0],[125,253,75,1.0],[125,253,76,1.0],[125,253,77,1.0],[125,253,78,1.0],[125,253,79,1.0],[125,254,64,1.0],[125,254,65,1.0],[125,254,66,1.0],[125,254,67,1.0],[125,254,68,1.0],[125,254,69,1.0],[125,254,70,1.0],[125,254,71,1.0],[125,254,72,1.0],[125,254,73,1.0],[125,254,74,1.0],[125,254,75,1.0],[125,254,76,1.0],[125,254,77,1.0],[125,254,78,1.0],[125,254,79,1.0],[125,255,64,1.0],[125,255,65,1.0],[125,255,66,1.0],[125,255,67,1.0],[125,255,68,1.0],[125,255,69,1.0],[125,255,70,1.0],[125,255,71,1.0],[125,255,72,1.0],[125,255,73,1.0],[125,255,74,1.0],[125,255,75,1.0],[125,255,76,1.0],[125,255,77,1.0],[125,255,78,1.0],[125,255,79,1.0],[125,256,64,1.0],[125,256,65,1.0],[125,256,66,1.0],[125,256,67,1.0],[125,256,68,1.0],[125,256,69,1.0],[125,256,70,1.0],[125,256,71,1.0],[125,256,72,1.0],[125,256,73,1.0],[125,256,74,1.0],[125,256,75,1.0],[125,256,76,1.0],[125,256,77,1.0],[125,256,78,1.0],[125,256,79,1.0],[125,257,64,1.0],[125,257,65,1.0],[125,257,66,1.0],[125,257,67,1.0],[125,257,68,1.0],[125,257,69,1.0],[125,257,70,1.0],[125,257,71,1.0],[125,257,72,1.0],[125,257,73,1.0],[125,257,74,1.0],[125,257,75,1.0],[125,257,76,1.0],[125,257,77,1.0],[125,257,78,1.0],[125,257,79,1.0],[125,258,64,1.0],[125,258,65,1.0],[125,258,66,1.0],[125,258,67,1.0],[125,258,68,1.0],[125,258,69,1.0],[125,258,70,1.0],[125,258,71,1.0],[125,258,72,1.0],[125,258,73,1.0],[125,258,74,1.0],[125,258,75,1.0],[125,258,76,1.0],[125,258,77,1.0],[125,258,78,1.0],[125,258,79,1.0],[125,259,64,1.0],[125,259,65,1.0],[125,259,66,1.0],[125,259,67,1.0],[125,259,68,1.0],[125,259,69,1.0],[125,259,70,1.0],[125,259,71,1.0],[125,259,72,1.0],[125,259,73,1.0],[125,259,74,1.0],[125,259,75,1.0],[125,259,76,1.0],[125,259,77,1.0],[125,259,78,1.0],[125,259,79,1.0],[125,260,64,1.0],[125,260,65,1.0],[125,260,66,1.0],[125,260,67,1.0],[125,260,68,1.0],[125,260,69,1.0],[125,260,70,1.0],[125,260,71,1.0],[125,260,72,1.0],[125,260,73,1.0],[125,260,74,1.0],[125,260,75,1.0],[125,260,76,1.0],[125,260,77,1.0],[125,260,78,1.0],[125,260,79,1.0],[125,261,64,1.0],[125,261,65,1.0],[125,261,66,1.0],[125,261,67,1.0],[125,261,68,1.0],[125,261,69,1.0],[125,261,70,1.0],[125,261,71,1.0],[125,261,72,1.0],[125,261,73,1.0],[125,261,74,1.0],[125,261,75,1.0],[125,261,76,1.0],[125,261,77,1.0],[125,261,78,1.0],[125,261,79,1.0],[125,262,64,1.0],[125,262,65,1.0],[125,262,66,1.0],[125,262,67,1.0],[125,262,68,1.0],[125,262,69,1.0],[125,262,70,1.0],[125,262,71,1.0],[125,262,72,1.0],[125,262,73,1.0],[125,262,74,1.0],[125,262,75,1.0],[125,262,76,1.0],[125,262,77,1.0],[125,262,78,1.0],[125,262,79,1.0],[125,263,64,1.0],[125,263,65,1.0],[125,263,66,1.0],[125,263,67,1.0],[125,263,68,1.0],[125,263,69,1.0],[125,263,70,1.0],[125,263,71,1.0],[125,263,72,1.0],[125,263,73,1.0],[125,263,74,1.0],[125,263,75,1.0],[125,263,76,1.0],[125,263,77,1.0],[125,263,78,1.0],[125,263,79,1.0],[125,264,64,1.0],[125,264,65,1.0],[125,264,66,1.0],[125,264,67,1.0],[125,264,68,1.0],[125,264,69,1.0],[125,264,70,1.0],[125,264,71,1.0],[125,264,72,1.0],[125,264,73,1.0],[125,264,74,1.0],[125,264,75,1.0],[125,264,76,1.0],[125,264,77,1.0],[125,264,78,1.0],[125,264,79,1.0],[125,265,64,1.0],[125,265,65,1.0],[125,265,66,1.0],[125,265,67,1.0],[125,265,68,1.0],[125,265,69,1.0],[125,265,70,1.0],[125,265,71,1.0],[125,265,72,1.0],[125,265,73,1.0],[125,265,74,1.0],[125,265,75,1.0],[125,265,76,1.0],[125,265,77,1.0],[125,265,78,1.0],[125,265,79,1.0],[125,266,64,1.0],[125,266,65,1.0],[125,266,66,1.0],[125,266,67,1.0],[125,266,68,1.0],[125,266,69,1.0],[125,266,70,1.0],[125,266,71,1.0],[125,266,72,1.0],[125,266,73,1.0],[125,266,74,1.0],[125,266,75,1.0],[125,266,76,1.0],[125,266,77,1.0],[125,266,78,1.0],[125,266,79,1.0],[125,267,64,1.0],[125,267,65,1.0],[125,267,66,1.0],[125,267,67,1.0],[125,267,68,1.0],[125,267,69,1.0],[125,267,70,1.0],[125,267,71,1.0],[125,267,72,1.0],[125,267,73,1.0],[125,267,74,1.0],[125,267,75,1.0],[125,267,76,1.0],[125,267,77,1.0],[125,267,78,1.0],[125,267,79,1.0],[125,268,64,1.0],[125,268,65,1.0],[125,268,66,1.0],[125,268,67,1.0],[125,268,68,1.0],[125,268,69,1.0],[125,268,70,1.0],[125,268,71,1.0],[125,268,72,1.0],[125,268,73,1.0],[125,268,74,1.0],[125,268,75,1.0],[125,268,76,1.0],[125,268,77,1.0],[125,268,78,1.0],[125,268,79,1.0],[125,269,64,1.0],[125,269,65,1.0],[125,269,66,1.0],[125,269,67,1.0],[125,269,68,1.0],[125,269,69,1.0],[125,269,70,1.0],[125,269,71,1.0],[125,269,72,1.0],[125,269,73,1.0],[125,269,74,1.0],[125,269,75,1.0],[125,269,76,1.0],[125,269,77,1.0],[125,269,78,1.0],[125,269,79,1.0],[125,270,64,1.0],[125,270,65,1.0],[125,270,66,1.0],[125,270,67,1.0],[125,270,68,1.0],[125,270,69,1.0],[125,270,70,1.0],[125,270,71,1.0],[125,270,72,1.0],[125,270,73,1.0],[125,270,74,1.0],[125,270,75,1.0],[125,270,76,1.0],[125,270,77,1.0],[125,270,78,1.0],[125,270,79,1.0],[125,271,64,1.0],[125,271,65,1.0],[125,271,66,1.0],[125,271,67,1.0],[125,271,68,1.0],[125,271,69,1.0],[125,271,70,1.0],[125,271,71,1.0],[125,271,72,1.0],[125,271,73,1.0],[125,271,74,1.0],[125,271,75,1.0],[125,271,76,1.0],[125,271,77,1.0],[125,271,78,1.0],[125,271,79,1.0],[125,272,64,1.0],[125,272,65,1.0],[125,272,66,1.0],[125,272,67,1.0],[125,272,68,1.0],[125,272,69,1.0],[125,272,70,1.0],[125,272,71,1.0],[125,272,72,1.0],[125,272,73,1.0],[125,272,74,1.0],[125,272,75,1.0],[125,272,76,1.0],[125,272,77,1.0],[125,272,78,1.0],[125,272,79,1.0],[125,273,64,1.0],[125,273,65,1.0],[125,273,66,1.0],[125,273,67,1.0],[125,273,68,1.0],[125,273,69,1.0],[125,273,70,1.0],[125,273,71,1.0],[125,273,72,1.0],[125,273,73,1.0],[125,273,74,1.0],[125,273,75,1.0],[125,273,76,1.0],[125,273,77,1.0],[125,273,78,1.0],[125,273,79,1.0],[125,274,64,1.0],[125,274,65,1.0],[125,274,66,1.0],[125,274,67,1.0],[125,274,68,1.0],[125,274,69,1.0],[125,274,70,1.0],[125,274,71,1.0],[125,274,72,1.0],[125,274,73,1.0],[125,274,74,1.0],[125,274,75,1.0],[125,274,76,1.0],[125,274,77,1.0],[125,274,78,1.0],[125,274,79,1.0],[125,275,64,1.0],[125,275,65,1.0],[125,275,66,1.0],[125,275,67,1.0],[125,275,68,1.0],[125,275,69,1.0],[125,275,70,1.0],[125,275,71,1.0],[125,275,72,1.0],[125,275,73,1.0],[125,275,74,1.0],[125,275,75,1.0],[125,275,76,1.0],[125,275,77,1.0],[125,275,78,1.0],[125,275,79,1.0],[125,276,64,1.0],[125,276,65,1.0],[125,276,66,1.0],[125,276,67,1.0],[125,276,68,1.0],[125,276,69,1.0],[125,276,70,1.0],[125,276,71,1.0],[125,276,72,1.0],[125,276,73,1.0],[125,276,74,1.0],[125,276,75,1.0],[125,276,76,1.0],[125,276,77,1.0],[125,276,78,1.0],[125,276,79,1.0],[125,277,64,1.0],[125,277,65,1.0],[125,277,66,1.0],[125,277,67,1.0],[125,277,68,1.0],[125,277,69,1.0],[125,277,70,1.0],[125,277,71,1.0],[125,277,72,1.0],[125,277,73,1.0],[125,277,74,1.0],[125,277,75,1.0],[125,277,76,1.0],[125,277,77,1.0],[125,277,78,1.0],[125,277,79,1.0],[125,278,64,1.0],[125,278,65,1.0],[125,278,66,1.0],[125,278,67,1.0],[125,278,68,1.0],[125,278,69,1.0],[125,278,70,1.0],[125,278,71,1.0],[125,278,72,1.0],[125,278,73,1.0],[125,278,74,1.0],[125,278,75,1.0],[125,278,76,1.0],[125,278,77,1.0],[125,278,78,1.0],[125,278,79,1.0],[125,279,64,1.0],[125,279,65,1.0],[125,279,66,1.0],[125,279,67,1.0],[125,279,68,1.0],[125,279,69,1.0],[125,279,70,1.0],[125,279,71,1.0],[125,279,72,1.0],[125,279,73,1.0],[125,279,74,1.0],[125,279,75,1.0],[125,279,76,1.0],[125,279,77,1.0],[125,279,78,1.0],[125,279,79,1.0],[125,280,64,1.0],[125,280,65,1.0],[125,280,66,1.0],[125,280,67,1.0],[125,280,68,1.0],[125,280,69,1.0],[125,280,70,1.0],[125,280,71,1.0],[125,280,72,1.0],[125,280,73,1.0],[125,280,74,1.0],[125,280,75,1.0],[125,280,76,1.0],[125,280,77,1.0],[125,280,78,1.0],[125,280,79,1.0],[125,281,64,1.0],[125,281,65,1.0],[125,281,66,1.0],[125,281,67,1.0],[125,281,68,1.0],[125,281,69,1.0],[125,281,70,1.0],[125,281,71,1.0],[125,281,72,1.0],[125,281,73,1.0],[125,281,74,1.0],[125,281,75,1.0],[125,281,76,1.0],[125,281,77,1.0],[125,281,78,1.0],[125,281,79,1.0],[125,282,64,1.0],[125,282,65,1.0],[125,282,66,1.0],[125,282,67,1.0],[125,282,68,1.0],[125,282,69,1.0],[125,282,70,1.0],[125,282,71,1.0],[125,282,72,1.0],[125,282,73,1.0],[125,282,74,1.0],[125,282,75,1.0],[125,282,76,1.0],[125,282,77,1.0],[125,282,78,1.0],[125,282,79,1.0],[125,283,64,1.0],[125,283,65,1.0],[125,283,66,1.0],[125,283,67,1.0],[125,283,68,1.0],[125,283,69,1.0],[125,283,70,1.0],[125,283,71,1.0],[125,283,72,1.0],[125,283,73,1.0],[125,283,74,1.0],[125,283,75,1.0],[125,283,76,1.0],[125,283,77,1.0],[125,283,78,1.0],[125,283,79,1.0],[125,284,64,1.0],[125,284,65,1.0],[125,284,66,1.0],[125,284,67,1.0],[125,284,68,1.0],[125,284,69,1.0],[125,284,70,1.0],[125,284,71,1.0],[125,284,72,1.0],[125,284,73,1.0],[125,284,74,1.0],[125,284,75,1.0],[125,284,76,1.0],[125,284,77,1.0],[125,284,78,1.0],[125,284,79,1.0],[125,285,64,1.0],[125,285,65,1.0],[125,285,66,1.0],[125,285,67,1.0],[125,285,68,1.0],[125,285,69,1.0],[125,285,70,1.0],[125,285,71,1.0],[125,285,72,1.0],[125,285,73,1.0],[125,285,74,1.0],[125,285,75,1.0],[125,285,76,1.0],[125,285,77,1.0],[125,285,78,1.0],[125,285,79,1.0],[125,286,64,1.0],[125,286,65,1.0],[125,286,66,1.0],[125,286,67,1.0],[125,286,68,1.0],[125,286,69,1.0],[125,286,70,1.0],[125,286,71,1.0],[125,286,72,1.0],[125,286,73,1.0],[125,286,74,1.0],[125,286,75,1.0],[125,286,76,1.0],[125,286,77,1.0],[125,286,78,1.0],[125,286,79,1.0],[125,287,64,1.0],[125,287,65,1.0],[125,287,66,1.0],[125,287,67,1.0],[125,287,68,1.0],[125,287,69,1.0],[125,287,70,1.0],[125,287,71,1.0],[125,287,72,1.0],[125,287,73,1.0],[125,287,74,1.0],[125,287,75,1.0],[125,287,76,1.0],[125,287,77,1.0],[125,287,78,1.0],[125,287,79,1.0],[125,288,64,1.0],[125,288,65,1.0],[125,288,66,1.0],[125,288,67,1.0],[125,288,68,1.0],[125,288,69,1.0],[125,288,70,1.0],[125,288,71,1.0],[125,288,72,1.0],[125,288,73,1.0],[125,288,74,1.0],[125,288,75,1.0],[125,288,76,1.0],[125,288,77,1.0],[125,288,78,1.0],[125,288,79,1.0],[125,289,64,1.0],[125,289,65,1.0],[125,289,66,1.0],[125,289,67,1.0],[125,289,68,1.0],[125,289,69,1.0],[125,289,70,1.0],[125,289,71,1.0],[125,289,72,1.0],[125,289,73,1.0],[125,289,74,1.0],[125,289,75,1.0],[125,289,76,1.0],[125,289,77,1.0],[125,289,78,1.0],[125,289,79,1.0],[125,290,64,1.0],[125,290,65,1.0],[125,290,66,1.0],[125,290,67,1.0],[125,290,68,1.0],[125,290,69,1.0],[125,290,70,1.0],[125,290,71,1.0],[125,290,72,1.0],[125,290,73,1.0],[125,290,74,1.0],[125,290,75,1.0],[125,290,76,1.0],[125,290,77,1.0],[125,290,78,1.0],[125,290,79,1.0],[125,291,64,1.0],[125,291,65,1.0],[125,291,66,1.0],[125,291,67,1.0],[125,291,68,1.0],[125,291,69,1.0],[125,291,70,1.0],[125,291,71,1.0],[125,291,72,1.0],[125,291,73,1.0],[125,291,74,1.0],[125,291,75,1.0],[125,291,76,1.0],[125,291,77,1.0],[125,291,78,1.0],[125,291,79,1.0],[125,292,64,1.0],[125,292,65,1.0],[125,292,66,1.0],[125,292,67,1.0],[125,292,68,1.0],[125,292,69,1.0],[125,292,70,1.0],[125,292,71,1.0],[125,292,72,1.0],[125,292,73,1.0],[125,292,74,1.0],[125,292,75,1.0],[125,292,76,1.0],[125,292,77,1.0],[125,292,78,1.0],[125,292,79,1.0],[125,293,64,1.0],[125,293,65,1.0],[125,293,66,1.0],[125,293,67,1.0],[125,293,68,1.0],[125,293,69,1.0],[125,293,70,1.0],[125,293,71,1.0],[125,293,72,1.0],[125,293,73,1.0],[125,293,74,1.0],[125,293,75,1.0],[125,293,76,1.0],[125,293,77,1.0],[125,293,78,1.0],[125,293,79,1.0],[125,294,64,1.0],[125,294,65,1.0],[125,294,66,1.0],[125,294,67,1.0],[125,294,68,1.0],[125,294,69,1.0],[125,294,70,1.0],[125,294,71,1.0],[125,294,72,1.0],[125,294,73,1.0],[125,294,74,1.0],[125,294,75,1.0],[125,294,76,1.0],[125,294,77,1.0],[125,294,78,1.0],[125,294,79,1.0],[125,295,64,1.0],[125,295,65,1.0],[125,295,66,1.0],[125,295,67,1.0],[125,295,68,1.0],[125,295,69,1.0],[125,295,70,1.0],[125,295,71,1.0],[125,295,72,1.0],[125,295,73,1.0],[125,295,74,1.0],[125,295,75,1.0],[125,295,76,1.0],[125,295,77,1.0],[125,295,78,1.0],[125,295,79,1.0],[125,296,64,1.0],[125,296,65,1.0],[125,296,66,1.0],[125,296,67,1.0],[125,296,68,1.0],[125,296,69,1.0],[125,296,70,1.0],[125,296,71,1.0],[125,296,72,1.0],[125,296,73,1.0],[125,296,74,1.0],[125,296,75,1.0],[125,296,76,1.0],[125,296,77,1.0],[125,296,78,1.0],[125,296,79,1.0],[125,297,64,1.0],[125,297,65,1.0],[125,297,66,1.0],[125,297,67,1.0],[125,297,68,1.0],[125,297,69,1.0],[125,297,70,1.0],[125,297,71,1.0],[125,297,72,1.0],[125,297,73,1.0],[125,297,74,1.0],[125,297,75,1.0],[125,297,76,1.0],[125,297,77,1.0],[125,297,78,1.0],[125,297,79,1.0],[125,298,64,1.0],[125,298,65,1.0],[125,298,66,1.0],[125,298,67,1.0],[125,298,68,1.0],[125,298,69,1.0],[125,298,70,1.0],[125,298,71,1.0],[125,298,72,1.0],[125,298,73,1.0],[125,298,74,1.0],[125,298,75,1.0],[125,298,76,1.0],[125,298,77,1.0],[125,298,78,1.0],[125,298,79,1.0],[125,299,64,1.0],[125,299,65,1.0],[125,299,66,1.0],[125,299,67,1.0],[125,299,68,1.0],[125,299,69,1.0],[125,299,70,1.0],[125,299,71,1.0],[125,299,72,1.0],[125,299,73,1.0],[125,299,74,1.0],[125,299,75,1.0],[125,299,76,1.0],[125,299,77,1.0],[125,299,78,1.0],[125,299,79,1.0],[125,300,64,1.0],[125,300,65,1.0],[125,300,66,1.0],[125,300,67,1.0],[125,300,68,1.0],[125,300,69,1.0],[125,300,70,1.0],[125,300,71,1.0],[125,300,72,1.0],[125,300,73,1.0],[125,300,74,1.0],[125,300,75,1.0],[125,300,76,1.0],[125,300,77,1.0],[125,300,78,1.0],[125,300,79,1.0],[125,301,64,1.0],[125,301,65,1.0],[125,301,66,1.0],[125,301,67,1.0],[125,301,68,1.0],[125,301,69,1.0],[125,301,70,1.0],[125,301,71,1.0],[125,301,72,1.0],[125,301,73,1.0],[125,301,74,1.0],[125,301,75,1.0],[125,301,76,1.0],[125,301,77,1.0],[125,301,78,1.0],[125,301,79,1.0],[125,302,64,1.0],[125,302,65,1.0],[125,302,66,1.0],[125,302,67,1.0],[125,302,68,1.0],[125,302,69,1.0],[125,302,70,1.0],[125,302,71,1.0],[125,302,72,1.0],[125,302,73,1.0],[125,302,74,1.0],[125,302,75,1.0],[125,302,76,1.0],[125,302,77,1.0],[125,302,78,1.0],[125,302,79,1.0],[125,303,64,1.0],[125,303,65,1.0],[125,303,66,1.0],[125,303,67,1.0],[125,303,68,1.0],[125,303,69,1.0],[125,303,70,1.0],[125,303,71,1.0],[125,303,72,1.0],[125,303,73,1.0],[125,303,74,1.0],[125,303,75,1.0],[125,303,76,1.0],[125,303,77,1.0],[125,303,78,1.0],[125,303,79,1.0],[125,304,64,1.0],[125,304,65,1.0],[125,304,66,1.0],[125,304,67,1.0],[125,304,68,1.0],[125,304,69,1.0],[125,304,70,1.0],[125,304,71,1.0],[125,304,72,1.0],[125,304,73,1.0],[125,304,74,1.0],[125,304,75,1.0],[125,304,76,1.0],[125,304,77,1.0],[125,304,78,1.0],[125,304,79,1.0],[125,305,64,1.0],[125,305,65,1.0],[125,305,66,1.0],[125,305,67,1.0],[125,305,68,1.0],[125,305,69,1.0],[125,305,70,1.0],[125,305,71,1.0],[125,305,72,1.0],[125,305,73,1.0],[125,305,74,1.0],[125,305,75,1.0],[125,305,76,1.0],[125,305,77,1.0],[125,305,78,1.0],[125,305,79,1.0],[125,306,64,1.0],[125,306,65,1.0],[125,306,66,1.0],[125,306,67,1.0],[125,306,68,1.0],[125,306,69,1.0],[125,306,70,1.0],[125,306,71,1.0],[125,306,72,1.0],[125,306,73,1.0],[125,306,74,1.0],[125,306,75,1.0],[125,306,76,1.0],[125,306,77,1.0],[125,306,78,1.0],[125,306,79,1.0],[125,307,64,1.0],[125,307,65,1.0],[125,307,66,1.0],[125,307,67,1.0],[125,307,68,1.0],[125,307,69,1.0],[125,307,70,1.0],[125,307,71,1.0],[125,307,72,1.0],[125,307,73,1.0],[125,307,74,1.0],[125,307,75,1.0],[125,307,76,1.0],[125,307,77,1.0],[125,307,78,1.0],[125,307,79,1.0],[125,308,64,1.0],[125,308,65,1.0],[125,308,66,1.0],[125,308,67,1.0],[125,308,68,1.0],[125,308,69,1.0],[125,308,70,1.0],[125,308,71,1.0],[125,308,72,1.0],[125,308,73,1.0],[125,308,74,1.0],[125,308,75,1.0],[125,308,76,1.0],[125,308,77,1.0],[125,308,78,1.0],[125,308,79,1.0],[125,309,64,1.0],[125,309,65,1.0],[125,309,66,1.0],[125,309,67,1.0],[125,309,68,1.0],[125,309,69,1.0],[125,309,70,1.0],[125,309,71,1.0],[125,309,72,1.0],[125,309,73,1.0],[125,309,74,1.0],[125,309,75,1.0],[125,309,76,1.0],[125,309,77,1.0],[125,309,78,1.0],[125,309,79,1.0],[125,310,64,1.0],[125,310,65,1.0],[125,310,66,1.0],[125,310,67,1.0],[125,310,68,1.0],[125,310,69,1.0],[125,310,70,1.0],[125,310,71,1.0],[125,310,72,1.0],[125,310,73,1.0],[125,310,74,1.0],[125,310,75,1.0],[125,310,76,1.0],[125,310,77,1.0],[125,310,78,1.0],[125,310,79,1.0],[125,311,64,1.0],[125,311,65,1.0],[125,311,66,1.0],[125,311,67,1.0],[125,311,68,1.0],[125,311,69,1.0],[125,311,70,1.0],[125,311,71,1.0],[125,311,72,1.0],[125,311,73,1.0],[125,311,74,1.0],[125,311,75,1.0],[125,311,76,1.0],[125,311,77,1.0],[125,311,78,1.0],[125,311,79,1.0],[125,312,64,1.0],[125,312,65,1.0],[125,312,66,1.0],[125,312,67,1.0],[125,312,68,1.0],[125,312,69,1.0],[125,312,70,1.0],[125,312,71,1.0],[125,312,72,1.0],[125,312,73,1.0],[125,312,74,1.0],[125,312,75,1.0],[125,312,76,1.0],[125,312,77,1.0],[125,312,78,1.0],[125,312,79,1.0],[125,313,64,1.0],[125,313,65,1.0],[125,313,66,1.0],[125,313,67,1.0],[125,313,68,1.0],[125,313,69,1.0],[125,313,70,1.0],[125,313,71,1.0],[125,313,72,1.0],[125,313,73,1.0],[125,313,74,1.0],[125,313,75,1.0],[125,313,76,1.0],[125,313,77,1.0],[125,313,78,1.0],[125,313,79,1.0],[125,314,64,1.0],[125,314,65,1.0],[125,314,66,1.0],[125,314,67,1.0],[125,314,68,1.0],[125,314,69,1.0],[125,314,70,1.0],[125,314,71,1.0],[125,314,72,1.0],[125,314,73,1.0],[125,314,74,1.0],[125,314,75,1.0],[125,314,76,1.0],[125,314,77,1.0],[125,314,78,1.0],[125,314,79,1.0],[125,315,64,1.0],[125,315,65,1.0],[125,315,66,1.0],[125,315,67,1.0],[125,315,68,1.0],[125,315,69,1.0],[125,315,70,1.0],[125,315,71,1.0],[125,315,72,1.0],[125,315,73,1.0],[125,315,74,1.0],[125,315,75,1.0],[125,315,76,1.0],[125,315,77,1.0],[125,315,78,1.0],[125,315,79,1.0],[125,316,64,1.0],[125,316,65,1.0],[125,316,66,1.0],[125,316,67,1.0],[125,316,68,1.0],[125,316,69,1.0],[125,316,70,1.0],[125,316,71,1.0],[125,316,72,1.0],[125,316,73,1.0],[125,316,74,1.0],[125,316,75,1.0],[125,316,76,1.0],[125,316,77,1.0],[125,316,78,1.0],[125,316,79,1.0],[125,317,64,1.0],[125,317,65,1.0],[125,317,66,1.0],[125,317,67,1.0],[125,317,68,1.0],[125,317,69,1.0],[125,317,70,1.0],[125,317,71,1.0],[125,317,72,1.0],[125,317,73,1.0],[125,317,74,1.0],[125,317,75,1.0],[125,317,76,1.0],[125,317,77,1.0],[125,317,78,1.0],[125,317,79,1.0],[125,318,64,1.0],[125,318,65,1.0],[125,318,66,1.0],[125,318,67,1.0],[125,318,68,1.0],[125,318,69,1.0],[125,318,70,1.0],[125,318,71,1.0],[125,318,72,1.0],[125,318,73,1.0],[125,318,74,1.0],[125,318,75,1.0],[125,318,76,1.0],[125,318,77,1.0],[125,318,78,1.0],[125,318,79,1.0],[125,319,64,1.0],[125,319,65,1.0],[125,319,66,1.0],[125,319,67,1.0],[125,319,68,1.0],[125,319,69,1.0],[125,319,70,1.0],[125,319,71,1.0],[125,319,72,1.0],[125,319,73,1.0],[125,319,74,1.0],[125,319,75,1.0],[125,319,76,1.0],[125,319,77,1.0],[125,319,78,1.0],[125,319,79,1.0],[126,-64,64,1.0],[126,-64,65,1.0],[126,-64,66,1.0],[126,-64,67,1.0],[126,-64,68,1.0],[126,-64,69,1.0],[126,-64,70,1.0],[126,-64,71,1.0],[126,-64,72,1.0],[126,-64,73,1.0],[126,-64,74,1.0],[126,-64,75,1.0],[126,-64,76,1.0],[126,-64,77,1.0],[126,-64,78,1.0],[126,-64,79,1.0],[126,-63,64,1.0],[126,-63,65,1.0],[126,-63,66,1.0],[126,-63,67,1.0],[126,-63,68,1.0],[126,-63,69,1.0],[126,-63,70,1.0],[126,-63,71,1.0],[126,-63,72,1.0],[126,-63,73,1.0],[126,-63,74,1.0],[126,-63,75,1.0],[126,-63,76,1.0],[126,-63,77,1.0],[126,-63,78,1.0],[126,-63,79,1.0],[126,-62,64,1.0],[126,-62,65,1.0],[126,-62,66,1.0],[126,-62,67,1.0],[126,-62,68,1.0],[126,-62,69,1.0],[126,-62,70,1.0],[126,-62,71,1.0],[126,-62,72,1.0],[126,-62,73,1.0],[126,-62,74,1.0],[126,-62,75,1.0],[126,-62,76,1.0],[126,-62,77,1.0],[126,-62,78,1.0],[126,-62,79,1.0],[126,-61,64,1.0],[126,-61,65,1.0],[126,-61,66,1.0],[126,-61,67,1.0],[126,-61,68,1.0],[126,-61,69,1.0],[126,-61,70,1.0],[126,-61,71,1.0],[126,-61,72,1.0],[126,-61,73,1.0],[126,-61,74,1.0],[126,-61,75,1.0],[126,-61,76,1.0],[126,-61,77,1.0],[126,-61,78,1.0],[126,-61,79,1.0],[126,-60,64,1.0],[126,-60,65,1.0],[126,-60,66,1.0],[126,-60,67,1.0],[126,-60,68,1.0],[126,-60,69,1.0],[126,-60,70,1.0],[126,-60,71,1.0],[126,-60,72,1.0],[126,-60,73,1.0],[126,-60,74,1.0],[126,-60,75,1.0],[126,-60,76,1.0],[126,-60,77,1.0],[126,-60,78,1.0],[126,-60,79,1.0],[126,-59,64,1.0],[126,-59,65,1.0],[126,-59,66,1.0],[126,-59,67,1.0],[126,-59,68,1.0],[126,-59,69,1.0],[126,-59,70,1.0],[126,-59,71,1.0],[126,-59,72,1.0],[126,-59,73,1.0],[126,-59,74,1.0],[126,-59,75,1.0],[126,-59,76,1.0],[126,-59,77,1.0],[126,-59,78,1.0],[126,-59,79,1.0],[126,-58,64,1.0],[126,-58,65,1.0],[126,-58,66,1.0],[126,-58,67,1.0],[126,-58,68,1.0],[126,-58,69,1.0],[126,-58,70,1.0],[126,-58,71,1.0],[126,-58,72,1.0],[126,-58,73,1.0],[126,-58,74,1.0],[126,-58,75,1.0],[126,-58,76,1.0],[126,-58,77,1.0],[126,-58,78,1.0],[126,-58,79,1.0],[126,-57,64,1.0],[126,-57,65,1.0],[126,-57,66,1.0],[126,-57,67,1.0],[126,-57,68,1.0],[126,-57,69,1.0],[126,-57,70,1.0],[126,-57,71,1.0],[126,-57,72,1.0],[126,-57,73,1.0],[126,-57,74,1.0],[126,-57,75,1.0],[126,-57,76,1.0],[126,-57,77,1.0],[126,-57,78,1.0],[126,-57,79,1.0],[126,-56,64,1.0],[126,-56,65,1.0],[126,-56,66,1.0],[126,-56,67,1.0],[126,-56,68,1.0],[126,-56,69,1.0],[126,-56,70,1.0],[126,-56,71,1.0],[126,-56,72,1.0],[126,-56,73,1.0],[126,-56,74,1.0],[126,-56,75,1.0],[126,-56,76,1.0],[126,-56,77,1.0],[126,-56,78,1.0],[126,-56,79,1.0],[126,-55,64,1.0],[126,-55,65,1.0],[126,-55,66,1.0],[126,-55,67,1.0],[126,-55,68,1.0],[126,-55,69,1.0],[126,-55,70,1.0],[126,-55,71,1.0],[126,-55,72,1.0],[126,-55,73,1.0],[126,-55,74,1.0],[126,-55,75,1.0],[126,-55,76,1.0],[126,-55,77,1.0],[126,-55,78,1.0],[126,-55,79,1.0],[126,-54,64,1.0],[126,-54,65,1.0],[126,-54,66,1.0],[126,-54,67,1.0],[126,-54,68,1.0],[126,-54,69,1.0],[126,-54,70,1.0],[126,-54,71,1.0],[126,-54,72,1.0],[126,-54,73,1.0],[126,-54,74,1.0],[126,-54,75,1.0],[126,-54,76,1.0],[126,-54,77,1.0],[126,-54,78,1.0],[126,-54,79,1.0],[126,-53,64,1.0],[126,-53,65,1.0],[126,-53,66,1.0],[126,-53,67,1.0],[126,-53,68,1.0],[126,-53,69,1.0],[126,-53,70,1.0],[126,-53,71,1.0],[126,-53,72,1.0],[126,-53,73,1.0],[126,-53,74,1.0],[126,-53,75,1.0],[126,-53,76,1.0],[126,-53,77,1.0],[126,-53,78,1.0],[126,-53,79,1.0],[126,-52,64,1.0],[126,-52,65,1.0],[126,-52,66,1.0],[126,-52,67,1.0],[126,-52,68,1.0],[126,-52,69,1.0],[126,-52,70,1.0],[126,-52,71,1.0],[126,-52,72,1.0],[126,-52,73,1.0],[126,-52,74,1.0],[126,-52,75,1.0],[126,-52,76,1.0],[126,-52,77,1.0],[126,-52,78,1.0],[126,-52,79,1.0],[126,-51,64,1.0],[126,-51,65,1.0],[126,-51,66,1.0],[126,-51,67,1.0],[126,-51,68,1.0],[126,-51,69,1.0],[126,-51,70,1.0],[126,-51,71,1.0],[126,-51,72,1.0],[126,-51,73,1.0],[126,-51,74,1.0],[126,-51,75,1.0],[126,-51,76,1.0],[126,-51,77,1.0],[126,-51,78,1.0],[126,-51,79,1.0],[126,-50,64,1.0],[126,-50,65,1.0],[126,-50,66,1.0],[126,-50,67,1.0],[126,-50,68,1.0],[126,-50,69,1.0],[126,-50,70,1.0],[126,-50,71,1.0],[126,-50,72,1.0],[126,-50,73,1.0],[126,-50,74,1.0],[126,-50,75,1.0],[126,-50,76,1.0],[126,-50,77,1.0],[126,-50,78,1.0],[126,-50,79,1.0],[126,-49,64,1.0],[126,-49,65,1.0],[126,-49,66,1.0],[126,-49,67,1.0],[126,-49,68,1.0],[126,-49,69,1.0],[126,-49,70,1.0],[126,-49,71,1.0],[126,-49,72,1.0],[126,-49,73,1.0],[126,-49,74,1.0],[126,-49,75,1.0],[126,-49,76,1.0],[126,-49,77,1.0],[126,-49,78,1.0],[126,-49,79,1.0],[126,-48,64,1.0],[126,-48,65,1.0],[126,-48,66,1.0],[126,-48,67,1.0],[126,-48,68,1.0],[126,-48,69,1.0],[126,-48,70,1.0],[126,-48,71,1.0],[126,-48,72,1.0],[126,-48,73,1.0],[126,-48,74,1.0],[126,-48,75,1.0],[126,-48,76,1.0],[126,-48,77,1.0],[126,-48,78,1.0],[126,-48,79,1.0],[126,-47,64,1.0],[126,-47,65,1.0],[126,-47,66,1.0],[126,-47,67,1.0],[126,-47,68,1.0],[126,-47,69,1.0],[126,-47,70,1.0],[126,-47,71,1.0],[126,-47,72,1.0],[126,-47,73,1.0],[126,-47,74,1.0],[126,-47,75,1.0],[126,-47,76,1.0],[126,-47,77,1.0],[126,-47,78,1.0],[126,-47,79,1.0],[126,-46,64,1.0],[126,-46,65,1.0],[126,-46,66,1.0],[126,-46,67,1.0],[126,-46,68,1.0],[126,-46,69,1.0],[126,-46,70,1.0],[126,-46,71,1.0],[126,-46,72,1.0],[126,-46,73,1.0],[126,-46,74,1.0],[126,-46,75,1.0],[126,-46,76,1.0],[126,-46,77,1.0],[126,-46,78,1.0],[126,-46,79,1.0],[126,-45,64,1.0],[126,-45,65,1.0],[126,-45,66,1.0],[126,-45,67,1.0],[126,-45,68,1.0],[126,-45,69,1.0],[126,-45,70,1.0],[126,-45,71,1.0],[126,-45,72,1.0],[126,-45,73,1.0],[126,-45,74,1.0],[126,-45,75,1.0],[126,-45,76,1.0],[126,-45,77,1.0],[126,-45,78,1.0],[126,-45,79,1.0],[126,-44,64,1.0],[126,-44,65,1.0],[126,-44,66,1.0],[126,-44,67,1.0],[126,-44,68,1.0],[126,-44,69,1.0],[126,-44,70,1.0],[126,-44,71,1.0],[126,-44,72,1.0],[126,-44,73,1.0],[126,-44,74,1.0],[126,-44,75,1.0],[126,-44,76,1.0],[126,-44,77,1.0],[126,-44,78,1.0],[126,-44,79,1.0],[126,-43,64,1.0],[126,-43,65,1.0],[126,-43,66,1.0],[126,-43,67,1.0],[126,-43,68,1.0],[126,-43,69,1.0],[126,-43,70,1.0],[126,-43,71,1.0],[126,-43,72,1.0],[126,-43,73,1.0],[126,-43,74,1.0],[126,-43,75,1.0],[126,-43,76,1.0],[126,-43,77,1.0],[126,-43,78,1.0],[126,-43,79,1.0],[126,-42,64,1.0],[126,-42,65,1.0],[126,-42,66,1.0],[126,-42,67,1.0],[126,-42,68,1.0],[126,-42,69,1.0],[126,-42,70,1.0],[126,-42,71,1.0],[126,-42,72,1.0],[126,-42,73,1.0],[126,-42,74,1.0],[126,-42,75,1.0],[126,-42,76,1.0],[126,-42,77,1.0],[126,-42,78,1.0],[126,-42,79,1.0],[126,-41,64,1.0],[126,-41,65,1.0],[126,-41,66,1.0],[126,-41,67,1.0],[126,-41,68,1.0],[126,-41,69,1.0],[126,-41,70,1.0],[126,-41,71,1.0],[126,-41,72,1.0],[126,-41,73,1.0],[126,-41,74,1.0],[126,-41,75,1.0],[126,-41,76,1.0],[126,-41,77,1.0],[126,-41,78,1.0],[126,-41,79,1.0],[126,-40,64,1.0],[126,-40,65,1.0],[126,-40,66,1.0],[126,-40,67,1.0],[126,-40,68,1.0],[126,-40,69,1.0],[126,-40,70,1.0],[126,-40,71,1.0],[126,-40,72,1.0],[126,-40,73,1.0],[126,-40,74,1.0],[126,-40,75,1.0],[126,-40,76,1.0],[126,-40,77,1.0],[126,-40,78,1.0],[126,-40,79,1.0],[126,-39,64,1.0],[126,-39,65,1.0],[126,-39,66,1.0],[126,-39,67,1.0],[126,-39,68,1.0],[126,-39,69,1.0],[126,-39,70,1.0],[126,-39,71,1.0],[126,-39,72,1.0],[126,-39,73,1.0],[126,-39,74,1.0],[126,-39,75,1.0],[126,-39,76,1.0],[126,-39,77,1.0],[126,-39,78,1.0],[126,-39,79,1.0],[126,-38,64,1.0],[126,-38,65,1.0],[126,-38,66,1.0],[126,-38,67,1.0],[126,-38,68,1.0],[126,-38,69,1.0],[126,-38,70,1.0],[126,-38,71,1.0],[126,-38,72,1.0],[126,-38,73,1.0],[126,-38,74,1.0],[126,-38,75,1.0],[126,-38,76,1.0],[126,-38,77,1.0],[126,-38,78,1.0],[126,-38,79,1.0],[126,-37,64,1.0],[126,-37,65,1.0],[126,-37,66,1.0],[126,-37,67,1.0],[126,-37,68,1.0],[126,-37,69,1.0],[126,-37,70,1.0],[126,-37,71,1.0],[126,-37,72,1.0],[126,-37,73,1.0],[126,-37,74,1.0],[126,-37,75,1.0],[126,-37,76,1.0],[126,-37,77,1.0],[126,-37,78,1.0],[126,-37,79,1.0],[126,-36,64,1.0],[126,-36,65,1.0],[126,-36,66,1.0],[126,-36,67,1.0],[126,-36,68,1.0],[126,-36,69,1.0],[126,-36,70,1.0],[126,-36,71,1.0],[126,-36,72,1.0],[126,-36,73,1.0],[126,-36,74,1.0],[126,-36,75,1.0],[126,-36,76,1.0],[126,-36,77,1.0],[126,-36,78,1.0],[126,-36,79,1.0],[126,-35,64,1.0],[126,-35,65,1.0],[126,-35,66,1.0],[126,-35,67,1.0],[126,-35,68,1.0],[126,-35,69,1.0],[126,-35,70,1.0],[126,-35,71,1.0],[126,-35,72,1.0],[126,-35,73,1.0],[126,-35,74,1.0],[126,-35,75,1.0],[126,-35,76,1.0],[126,-35,77,1.0],[126,-35,78,1.0],[126,-35,79,1.0],[126,-34,64,1.0],[126,-34,65,1.0],[126,-34,66,1.0],[126,-34,67,1.0],[126,-34,68,1.0],[126,-34,69,1.0],[126,-34,70,1.0],[126,-34,71,1.0],[126,-34,72,1.0],[126,-34,73,1.0],[126,-34,74,1.0],[126,-34,75,1.0],[126,-34,76,1.0],[126,-34,77,1.0],[126,-34,78,1.0],[126,-34,79,1.0],[126,-33,64,1.0],[126,-33,65,1.0],[126,-33,66,1.0],[126,-33,67,1.0],[126,-33,68,1.0],[126,-33,69,1.0],[126,-33,70,1.0],[126,-33,71,1.0],[126,-33,72,1.0],[126,-33,73,1.0],[126,-33,74,1.0],[126,-33,75,1.0],[126,-33,76,1.0],[126,-33,77,1.0],[126,-33,78,1.0],[126,-33,79,1.0],[126,-32,64,1.0],[126,-32,65,1.0],[126,-32,66,1.0],[126,-32,67,1.0],[126,-32,68,1.0],[126,-32,69,1.0],[126,-32,70,1.0],[126,-32,71,1.0],[126,-32,72,1.0],[126,-32,73,1.0],[126,-32,74,1.0],[126,-32,75,1.0],[126,-32,76,1.0],[126,-32,77,1.0],[126,-32,78,1.0],[126,-32,79,1.0],[126,-31,64,1.0],[126,-31,65,1.0],[126,-31,66,1.0],[126,-31,67,1.0],[126,-31,68,1.0],[126,-31,69,1.0],[126,-31,70,1.0],[126,-31,71,1.0],[126,-31,72,1.0],[126,-31,73,1.0],[126,-31,74,1.0],[126,-31,75,1.0],[126,-31,76,1.0],[126,-31,77,1.0],[126,-31,78,1.0],[126,-31,79,1.0],[126,-30,64,1.0],[126,-30,65,1.0],[126,-30,66,1.0],[126,-30,67,1.0],[126,-30,68,1.0],[126,-30,69,1.0],[126,-30,70,1.0],[126,-30,71,1.0],[126,-30,72,1.0],[126,-30,73,1.0],[126,-30,74,1.0],[126,-30,75,1.0],[126,-30,76,1.0],[126,-30,77,1.0],[126,-30,78,1.0],[126,-30,79,1.0],[126,-29,64,1.0],[126,-29,65,1.0],[126,-29,66,1.0],[126,-29,67,1.0],[126,-29,68,1.0],[126,-29,69,1.0],[126,-29,70,1.0],[126,-29,71,1.0],[126,-29,72,1.0],[126,-29,73,1.0],[126,-29,74,1.0],[126,-29,75,1.0],[126,-29,76,1.0],[126,-29,77,1.0],[126,-29,78,1.0],[126,-29,79,1.0],[126,-28,64,1.0],[126,-28,65,1.0],[126,-28,66,1.0],[126,-28,67,1.0],[126,-28,68,1.0],[126,-28,69,1.0],[126,-28,70,1.0],[126,-28,71,1.0],[126,-28,72,1.0],[126,-28,73,1.0],[126,-28,74,1.0],[126,-28,75,1.0],[126,-28,76,1.0],[126,-28,77,1.0],[126,-28,78,1.0],[126,-28,79,1.0],[126,-27,64,1.0],[126,-27,65,1.0],[126,-27,66,1.0],[126,-27,67,1.0],[126,-27,68,1.0],[126,-27,69,1.0],[126,-27,70,1.0],[126,-27,71,1.0],[126,-27,72,1.0],[126,-27,73,1.0],[126,-27,74,1.0],[126,-27,75,1.0],[126,-27,76,1.0],[126,-27,77,1.0],[126,-27,78,1.0],[126,-27,79,1.0],[126,-26,64,1.0],[126,-26,65,1.0],[126,-26,66,1.0],[126,-26,67,1.0],[126,-26,68,1.0],[126,-26,69,1.0],[126,-26,70,1.0],[126,-26,71,1.0],[126,-26,72,1.0],[126,-26,73,1.0],[126,-26,74,1.0],[126,-26,75,1.0],[126,-26,76,1.0],[126,-26,77,1.0],[126,-26,78,1.0],[126,-26,79,1.0],[126,-25,64,1.0],[126,-25,65,1.0],[126,-25,66,1.0],[126,-25,67,1.0],[126,-25,68,1.0],[126,-25,69,1.0],[126,-25,70,1.0],[126,-25,71,1.0],[126,-25,72,1.0],[126,-25,73,1.0],[126,-25,74,1.0],[126,-25,75,1.0],[126,-25,76,1.0],[126,-25,77,1.0],[126,-25,78,1.0],[126,-25,79,1.0],[126,-24,64,1.0],[126,-24,65,1.0],[126,-24,66,1.0],[126,-24,67,1.0],[126,-24,68,1.0],[126,-24,69,1.0],[126,-24,70,1.0],[126,-24,71,1.0],[126,-24,72,1.0],[126,-24,73,1.0],[126,-24,74,1.0],[126,-24,75,1.0],[126,-24,76,1.0],[126,-24,77,1.0],[126,-24,78,1.0],[126,-24,79,1.0],[126,-23,64,1.0],[126,-23,65,1.0],[126,-23,66,1.0],[126,-23,67,1.0],[126,-23,68,1.0],[126,-23,69,1.0],[126,-23,70,1.0],[126,-23,71,1.0],[126,-23,72,1.0],[126,-23,73,1.0],[126,-23,74,1.0],[126,-23,75,1.0],[126,-23,76,1.0],[126,-23,77,1.0],[126,-23,78,1.0],[126,-23,79,1.0],[126,-22,64,1.0],[126,-22,65,1.0],[126,-22,66,1.0],[126,-22,67,1.0],[126,-22,68,1.0],[126,-22,69,1.0],[126,-22,70,1.0],[126,-22,71,1.0],[126,-22,72,1.0],[126,-22,73,1.0],[126,-22,74,1.0],[126,-22,75,1.0],[126,-22,76,1.0],[126,-22,77,1.0],[126,-22,78,1.0],[126,-22,79,1.0],[126,-21,64,1.0],[126,-21,65,1.0],[126,-21,66,1.0],[126,-21,67,1.0],[126,-21,68,1.0],[126,-21,69,1.0],[126,-21,70,1.0],[126,-21,71,1.0],[126,-21,72,1.0],[126,-21,73,1.0],[126,-21,74,1.0],[126,-21,75,1.0],[126,-21,76,1.0],[126,-21,77,1.0],[126,-21,78,1.0],[126,-21,79,1.0],[126,-20,64,1.0],[126,-20,65,1.0],[126,-20,66,1.0],[126,-20,67,1.0],[126,-20,68,1.0],[126,-20,69,1.0],[126,-20,70,1.0],[126,-20,71,1.0],[126,-20,72,1.0],[126,-20,73,1.0],[126,-20,74,1.0],[126,-20,75,1.0],[126,-20,76,1.0],[126,-20,77,1.0],[126,-20,78,1.0],[126,-20,79,1.0],[126,-19,64,1.0],[126,-19,65,1.0],[126,-19,66,1.0],[126,-19,67,1.0],[126,-19,68,1.0],[126,-19,69,1.0],[126,-19,70,1.0],[126,-19,71,1.0],[126,-19,72,1.0],[126,-19,73,1.0],[126,-19,74,1.0],[126,-19,75,1.0],[126,-19,76,1.0],[126,-19,77,1.0],[126,-19,78,1.0],[126,-19,79,1.0],[126,-18,64,1.0],[126,-18,65,1.0],[126,-18,66,1.0],[126,-18,67,1.0],[126,-18,68,1.0],[126,-18,69,1.0],[126,-18,70,1.0],[126,-18,71,1.0],[126,-18,72,1.0],[126,-18,73,1.0],[126,-18,74,1.0],[126,-18,75,1.0],[126,-18,76,1.0],[126,-18,77,1.0],[126,-18,78,1.0],[126,-18,79,1.0],[126,-17,64,1.0],[126,-17,65,1.0],[126,-17,66,1.0],[126,-17,67,1.0],[126,-17,68,1.0],[126,-17,69,1.0],[126,-17,70,1.0],[126,-17,71,1.0],[126,-17,72,1.0],[126,-17,73,1.0],[126,-17,74,1.0],[126,-17,75,1.0],[126,-17,76,1.0],[126,-17,77,1.0],[126,-17,78,1.0],[126,-17,79,1.0],[126,-16,64,0.8853339866787417],[126,-16,65,0.9946871992194498],[126,-16,66,1.0],[126,-16,67,1.0],[126,-16,68,1.0],[126,-16,69,1.0],[126,-16,70,1.0],[126,-16,71,1.0],[126,-16,72,1.0],[126,-16,73,1.0],[126,-16,74,1.0],[126,-16,75,1.0],[126,-16,76,1.0],[126,-16,77,1.0],[126,-16,78,1.0],[126,-16,79,1.0],[126,-15,64,0.582368122606648],[126,-15,65,0.6655642005580946],[126,-15,66,0.7541858429529097],[126,-15,67,0.8480269715729793],[126,-15,68,0.9468547694009216],[126,-15,69,1.0],[126,-15,70,1.0],[126,-15,71,1.0],[126,-15,72,1.0],[126,-15,73,1.0],[126,-15,74,1.0],[126,-15,75,1.0],[126,-15,76,1.0],[126,-15,77,1.0],[126,-15,78,1.0],[126,-15,79,1.0],[126,-14,64,0.35785157427562575],[126,-14,65,0.4184606758895374],[126,-14,66,0.48395923709619976],[126,-14,67,0.5542133425152966],[126,-14,68,0.6290599570241232],[126,-14,69,0.7083103590421879],[126,-14,70,0.7917535857904356],[126,-14,71,0.8791598731480545],[126,-14,72,0.9702840733542135],[126,-14,73,1.0],[126,-14,74,1.0],[126,-14,75,1.0],[126,-14,76,1.0],[126,-14,77,1.0],[126,-14,78,1.0],[126,-14,79,1.0],[126,-13,64,0.2000298919310019],[126,-13,65,0.24162230769324775],[126,-13,66,0.2874871162362589],[126,-13,67,0.3375625538931334],[126,-13,68,0.39175545478629636],[126,-13,69,0.4499445305071298],[126,-13,70,0.5119836676675705],[126,-13,71,0.5777052262149116],[126,-13,72,0.646923321990971],[126,-13,73,0.7194370777203695],[126,-13,74,0.7950338274157321],[126,-13,75,0.8734922601358965],[126,-13,76,0.9545854900829985],[126,-13,77,1.0],[126,-13,78,1.0],[126,-13,79,1.0],[126,-12,64,0.09714853022776636],[126,-12,65,0.12329468247977679],[126,-12,66,0.15301519856826423],[126,-12,67,0.18632045540899805],[126,-12,68,0.22318724371405924],[126,-12,69,0.2635618965903451],[126,-12,70,0.3073634419300498],[126,-12,71,0.3544867617521901],[126,-12,72,0.4048057422103844],[126,-12,73,0.4581763986516311],[126,-12,74,0.5144399608816841],[126,-12,75,0.5734259046971629],[126,-12,76,0.6349549167510523],[126,-12,77,0.6988417809153198],[126,-12,78,0.7648981755278451],[126,-12,79,0.8329353722236262],[126,-11,64,0.03745284814953053],[126,-11,65,0.05172329070601345],[126,-11,66,0.06878910585337832],[126,-11,67,0.08873279995293133],[126,-11,68,0.11160120764498242],[126,-11,69,0.13740847189008998],[126,-11,70,0.16613905374494622],[126,-11,71,0.19775075529938224],[126,-11,72,0.23217773972395203],[126,-11,73,0.2693335330130846],[126,-11,74,0.30911399274672624],[126,-11,75,0.3514002300548933],[126,-11,76,0.39606147193278696],[126,-11,77,0.44295785210857536],[126,-11,78,0.4919431198360255],[126,-11,79,0.5428672572427995],[126,-10,64,0.009188108931427108],[126,-10,65,0.015153526694388257],[126,-10,66,0.023054363334275168],[126,-10,67,0.03304524351437947],[126,-10,68,0.04524313313583302],[126,-10,69,0.05973017334547627],[126,-10,70,0.07655655024369301],[126,-10,71,0.09574338398566329],[126,-10,72,0.1172856214599708],[126,-10,73,0.14115491733002114],[126,-10,74,0.16730248892806],[126,-10,75,0.19566193131073303],[126,-10,76,0.22615197970503803],[126,-10,77,0.2586792075847285],[126,-10,78,0.29314064973454795],[126,-10,79,0.32942634086417694],[126,-9,64,5.994799870397432E-4],[126,-9,65,0.001830688556119687],[126,-9,66,0.004056399654728306],[126,-9,67,0.007503345098145916],[126,-9,68,0.012358709374912562],[126,-9,69,0.018772820145221518],[126,-9,70,0.026861880427266113],[126,-9,71,0.036710726431530706],[126,-9,72,0.048375595461656956],[126,-9,73,0.06188688886804032],[126,-9,74,0.07725191571035638],[126,-9,75,0.09445760356270806],[126,-9,76,0.11347316377165871],[126,-9,77,0.13425269944473833],[126,-9,78,0.1567377455121975],[126,-9,79,0.18085973135518743],[126,-8,64,-6.796716075533883E-5],[126,-8,65,-2.1881623272994384E-8],[126,-8,66,4.0546783115949164E-5],[126,-8,67,6.077908198531684E-4],[126,-8,68,0.0032174249036343583],[126,-8,69,0.005741125949649414],[126,-8,70,0.00817789922959826],[126,-8,71,0.010526760260102665],[126,-8,72,0.013693770789187125],[126,-8,73,0.019775685531596976],[126,-8,74,0.027208639640828924],[126,-8,75,0.03603374179684596],[126,-8,76,0.04627164735171526],[126,-8,77,0.057925078933719606],[126,-8,78,0.07098128623256929],[126,-8,79,0.08541443539041862],[126,-7,64,-0.004569256945008549],[126,-7,65,-0.0020934991446116876],[126,-7,66,-7.479600601179525E-4],[126,-7,67,-1.6172704817600232E-4],[126,-7,68,2.756149704760888E-4],[126,-7,69,0.002763852314977784],[126,-7,70,0.005168148285586344],[126,-7,71,0.007487564112263728],[126,-7,72,0.009721174549172776],[126,-7,73,0.011868077686180173],[126,-7,74,0.013927404391418076],[126,-7,75,0.015898327385047838],[126,-7,76,0.017780069943925753],[126,-7,77,0.01957191423742425],[126,-7,78,0.024118049619548155],[126,-7,79,0.03133735793375094],[126,-6,64,-0.013299559143920475],[126,-6,65,-0.010533501566538324],[126,-6,66,-0.007844981419119969],[126,-6,67,-0.005234810727821865],[126,-6,68,-0.0027038378842086652],[126,-6,69,-2.529362958674994E-4],[126,-6,70,0.0021170065973573696],[126,-6,71,0.004405099941327935],[126,-6,72,0.00661045972002202],[126,-6,73,0.00873221864209349],[126,-6,74,0.010769535661721563],[126,-6,75,0.012721605133894455],[126,-6,76,0.0145876656038232],[126,-6,77,0.016367008230742927],[126,-6,78,0.01805898484590649],[126,-6,79,0.019663015645032957],[126,-5,64,-0.01612586582506221],[126,-5,65,-0.013410266185980499],[126,-5,66,-0.010769495332817625],[126,-5,67,-0.008204288493329097],[126,-5,68,-0.005715424015697301],[126,-5,69,-0.003303711973195206],[126,-5,70,-9.699831308598722E-4],[126,-5,71,0.0012849217256406809],[126,-5,72,0.0034601620991982635],[126,-5,73,0.005554907728215021],[126,-5,74,0.007568348171452431],[126,-5,75,0.009499702030925622],[126,-5,76,0.011348225812537499],[126,-5,77,0.01311322242470999],[126,-5,78,0.014794049314816787],[126,-5,79,0.01639012624368274],[126,-4,64,-0.0189715631466906],[126,-4,65,-0.01630819370699628],[126,-4,66,-0.013716961685673233],[126,-4,67,-0.01119852414558533],[126,-4,68,-0.008753587817881887],[126,-4,69,-0.006382897676980033],[126,-4,70,-0.004087225873569425],[126,-4,71,-0.0018673610258248124],[126,-4,72,2.75902131424928E-4],[126,-4,73,0.0023417727392725587],[126,-4,74,0.004329473449194467],[126,-4,75,0.006238249699541794],[126,-4,76,0.008067378633758317],[126,-4,77,0.00981617766058155],[126,-4,78,0.011484012656030336],[126,-4,79,0.013070305807445788],[126,-3,64,-0.021831186909100186],[126,-3,65,-0.01922178241525674],[126,-3,66,-0.01668184436324545],[126,-3,67,-0.014211950372353073],[126,-3,68,-0.011812734063064864],[126,-3,69,-0.00948487361868739],[126,-3,70,-0.007229080700636999],[126,-3,71,-0.005046089717577806],[126,-3,72,-0.0029366474481579558],[126,-3,73,-9.015030176439259E-4],[126,-3,74,0.0010586017716884208],[126,-3,75,0.002942941756551805],[126,-3,76,0.004750817374728128],[126,-3,77,0.006481563273490573],[126,-3,78,0.008134556564169955],[126,-3,79,0.009709224723132896],[126,-2,64,-0.02469925049555658],[126,-2,65,-0.02214550526419213],[126,-2,66,-0.019658578956989213],[126,-2,67,-0.017238968560711707],[126,-2,68,-0.014887233173900297],[126,-2,69,-0.012603982571487024],[126,-2,70,-0.010389866118349092],[126,-2,71,-0.00824556203198891],[126,-2,72,-0.0061717669940865305],[126,-2,73,-0.004169186111224868],[126,-2,74,-0.0022385232246477232],[126,-2,75,-3.8047156890316097E-4],[126,-2,76,0.0014042952203204145],[126,-2,77,0.003115131749424911],[126,-2,78,0.004751429161001526],[126,-2,79,0.0063126230790677695],[126,-1,64,-0.027570248864643654],[126,-1,65,-0.025073813931031842],[126,-1,66,-0.02264157687693552],[126,-1,67,-0.020273952959148904],[126,-1,68,-0.0179714254275177],[126,-1,69,-0.015734534108893257],[126,-1,70,-0.013563864334938835],[126,-1,71,-0.011460036213975101],[126,-1,72,-0.009423694246611332],[126,-1,73,-0.0074554972854631515],[126,-1,74,-0.005556108838815882],[126,-1,75,-0.0037261877180862282],[126,-1,76,-0.001966379029390397],[126,-1,77,-2.7730550895858214E-4],[126,-1,78,0.0013404407974058827],[126,-1,79,0.002886306511092257],[126,0,64,-0.03043866148776516],[126,0,65,-0.02800114181505111],[126,0,66,-0.02562522840342868],[126,0,67,-0.023311253775360037],[126,0,68,-0.02105962409179963],[126,0,69,-0.018870807771804096],[126,0,70,-0.016745324450552324],[126,0,71,-0.014683734275961889],[126,0,72,-0.012686627543648014],[126,0,73,-0.010754614670527345],[126,0,74,-0.008888316506923871],[126,0,75,-0.007088354987030858],[126,0,76,-0.0053553441180365854],[126,0,77,-0.003689881307653353],[126,0,78,-0.0020925390302496127],[126,0,79,-5.638568313134917E-4],[126,1,64,-0.030220846045947856],[126,1,65,-0.030921905978042816],[126,1,66,-0.028603904677940148],[126,1,67,-0.026345199209774177],[126,1,68,-0.02414611749383362],[126,1,69,-0.02200705516395681],[126,1,70,-0.019928464571672105],[126,1,71,-0.01791084412314286],[126,1,72,-0.0159547279486631],[126,1,73,-0.014060675905005413],[126,1,74,-0.0122292639104803],[126,1,75,-0.010461074612557388],[126,1,76,-0.008756688388361127],[126,1,77,-0.007116674677775971],[126,1,78,-0.005541583649363031],[126,1,79,-0.00403193819881624],[126,2,64,-0.006498837580653428],[126,2,65,-0.011241537200088626],[126,2,66,-0.01768924533532878],[126,2,67,-0.025998480502108862],[126,2,68,-0.027225170020522167],[126,2,69,-0.02513750097578693],[126,2,70,-0.023107472849984885],[126,2,71,-0.02113552059902119],[126,2,72,-0.01922212029447786],[126,2,73,-0.017367779169503723],[126,2,74,-0.01557302599128163],[126,2,75,-0.013838401759923687],[126,2,76,-0.012164450734105658],[126,2,77,-0.01055171178317816],[126,2,78,-0.009000710065954758],[126,2,79,-0.00751194903590513],[126,3,64,-2.3540149169926913E-4],[126,3,65,-9.745505794460656E-4],[126,3,66,-0.002498137111831495],[126,3,67,-0.005033036756092367],[126,3,68,-0.008767808801393757],[126,3,69,-0.01385528741187745],[126,3,70,-0.02041521278489791],[126,3,71,-0.024351885451240327],[126,3,72,-0.022482893142998686],[126,3,73,-0.02066998313160842],[126,3,74,-0.01891363487290197],[126,3,75,-0.017214345412119227],[126,3,76,-0.015572620448386573],[126,3,77,-0.013988965719203807],[126,3,78,-0.012463878705139791],[126,3,79,-0.010997840654464505],[126,4,64,2.515251653465234E-4],[126,4,65,1.7024364297285848E-5],[126,4,66,-1.2657687500584296E-6],[126,4,67,-1.0056474482224681E-4],[126,4,68,-5.380281674109552E-4],[126,4,69,-0.0015332011801474964],[126,4,70,-0.0032705178285792726],[126,4,71,-0.0059018309389161205],[126,4,72,-0.00954895754099977],[126,4,73,-0.014306225390801112],[126,4,74,-0.02024300677519352],[126,4,75,-0.02058286716080429],[126,4,76,-0.018975135968565753],[126,4,77,-0.017422355202596315],[126,4,78,-0.01592499203721697],[126,4,79,-0.014483502787248977],[126,5,64,0.006643909432080328],[126,5,65,0.0034152813476680806],[126,5,66,0.0014835889408498432],[126,5,67,4.8128215781536514E-4],[126,5,68,8.252433066060756E-5],[126,5,69,8.740145393530708E-7],[126,5,70,-1.3085120963824268E-5],[126,5,71,-1.7415121277219523E-4],[126,5,72,-6.649331981233933E-4],[126,5,73,-0.0016382876359396835],[126,5,74,-0.003219749702160687],[126,5,75,-0.00550994539131583],[126,5,76,-0.008586972733303371],[126,5,77,-0.012508740696428685],[126,5,78,-0.017315255391728727],[126,5,79,-0.01796276102124718],[126,6,64,0.030623622417649366],[126,6,65,0.0209022177272232],[126,6,66,0.01363855047859707],[126,6,67,0.008394753369452695],[126,6,68,0.004776223911098126],[126,6,69,0.0024294390299177833],[126,6,70,0.001039711668604352],[126,6,71,3.289042574035793E-4],[126,6,72,5.3113561294291785E-5],[126,6,73,3.4094878427257126E-7],[126,6,74,-1.1838427263032264E-5],[126,6,75,-1.385946928567373E-4],[126,6,76,-5.101384495902147E-4],[126,6,77,-0.0012339808105201113],[126,6,78,-0.002397147874803605],[126,6,79,-0.004068340207321289],[126,7,64,0.0838724392728906],[126,7,65,0.0641597344701202],[126,7,66,0.048145645487838444],[126,7,67,0.03532200106273796],[126,7,68,0.025225348122648598],[126,7,69,0.017434896631777077],[126,7,70,0.011570400358527248],[126,7,71,0.007289988173324056],[126,7,72,0.004287960148623949],[126,7,73,0.002292562306936593],[126,7,74,0.0010637533445505868],[126,7,75,3.9097605082377294E-4],[126,7,76,9.094545294968671E-5],[126,7,77,5.464946300074431E-6],[126,7,78,-7.191740104628986E-7],[126,7,79,-4.20152774438294E-5],[126,8,64,0.17807203916817985],[126,8,65,0.14486963612841036],[126,8,66,0.11668680376439576],[126,8,67,0.09294508013257709],[126,8,68,0.07311207680827589],[126,8,69,0.0566995514542344],[126,8,70,0.04326141021177339],[126,8,71,0.03239165425961105],[126,8,72,0.023722284578568224],[126,8,73,0.01692117856789598],[126,8,74,0.011689951678660864],[126,8,75,0.007761816659749225],[126,8,76,0.004899452365543843],[126,8,77,0.0028928933515718685],[126,8,78,0.0015574506888080721],[126,8,79,7.316735684230654E-4],[126,9,64,0.32490400527498997],[126,9,65,0.274713630817046],[126,9,66,0.23094385823104313],[126,9,67,0.19294594816710212],[126,9,68,0.16011849207264126],[126,9,69,0.13190560996374848],[126,9,70,0.10779507189644603],[126,9,71,0.08731635722093953],[126,9,72,0.07003866542290325],[126,9,73,0.05556889199721437],[126,9,74,0.04354958235777876],[126,9,75,0.03365687625446651],[126,9,76,0.02559845456515153],[126,9,77,0.019111499655771275],[126,9,78,0.013960679753926371],[126,9,79,0.009936166976483285],[126,10,64,0.536049824751187],[126,10,65,0.46537333019562943],[126,10,66,0.40259854491573044],[126,10,67,0.3470064654223894],[126,10,68,0.2979265782533375],[126,10,69,0.2547351804268913],[126,10,70,0.21685361745011333],[126,10,71,0.18374645270294748],[126,10,72,0.1549195817679898],[126,10,73,0.12991830495075066],[126,10,74,0.10832537083272337],[126,10,75,0.0897590032034892],[126,10,76,0.07387092315859436],[126,10,77,0.060344377523149126],[126,10,78,0.04889218406130461],[126,10,79,0.0392548031805178],[126,11,64,0.823190888729911],[126,11,65,0.7285302494537655],[126,11,66,0.6433325029334264],[126,11,67,0.5668083948008145],[126,11,68,0.4982182218957758],[126,11,69,0.4368702728817868],[126,11,70,0.3821191802478196],[126,11,71,0.3333641972568407],[126,11,72,0.29004741317599186],[126,11,73,0.25165191983252394],[126,11,74,0.21769994217693076],[126,11,75,0.18775094507448273],[126,11,76,0.16139972803043873],[126,11,77,0.1382745189763322],[126,11,78,0.11803507759192904],[126,11,79,0.10037081793998517],[126,12,64,1.0],[126,12,65,1.0],[126,12,66,0.964827274471704],[126,12,67,0.8640334018331483],[126,12,68,0.7726752117318133],[126,12,69,0.6899927991132914],[126,12,70,0.6152737949738397],[126,12,71,0.5478517483077414],[126,12,72,0.4871044396498417],[126,12,73,0.4324521390563159],[126,12,74,0.38335582104471455],[126,12,75,0.33931534858920537],[126,12,76,0.29986763779463727],[126,12,77,0.26458481434468667],[126,12,78,0.23307237221291888],[126,12,79,0.20496734448189274],[126,13,64,1.0],[126,13,65,1.0],[126,13,66,1.0],[126,13,67,1.0],[126,13,68,1.0],[126,13,69,1.0],[126,13,70,0.9279993975970846],[126,13,71,0.8388911641267007],[126,13,72,0.7577728416018786],[126,13,73,0.6840012650109573],[126,13,74,0.6169754316332215],[126,13,75,0.5561347595821517],[126,13,76,0.5009573197498838],[126,13,77,0.4509580522164042],[126,13,78,0.40568697762636424],[126,13,79,0.36472741344640747],[126,14,64,1.0],[126,14,65,1.0],[126,14,66,1.0],[126,14,67,1.0],[126,14,68,1.0],[126,14,69,1.0],[126,14,70,1.0],[126,14,71,1.0],[126,14,72,1.0],[126,14,73,1.0],[126,14,74,0.9302410976481702],[126,14,75,0.8498916229629845],[126,14,76,0.7763513398387546],[126,14,77,0.7090769193943757],[126,14,78,0.6475617013219537],[126,14,79,0.5913339528362584],[126,15,64,1.0],[126,15,65,1.0],[126,15,66,1.0],[126,15,67,1.0],[126,15,68,1.0],[126,15,69,1.0],[126,15,70,1.0],[126,15,71,1.0],[126,15,72,1.0],[126,15,73,1.0],[126,15,74,1.0],[126,15,75,1.0],[126,15,76,1.0],[126,15,77,1.0],[126,15,78,0.9703792485332083],[126,15,79,0.8964697879697591],[126,16,64,1.0],[126,16,65,1.0],[126,16,66,1.0],[126,16,67,1.0],[126,16,68,1.0],[126,16,69,1.0],[126,16,70,1.0],[126,16,71,1.0],[126,16,72,1.0],[126,16,73,1.0],[126,16,74,1.0],[126,16,75,1.0],[126,16,76,1.0],[126,16,77,1.0],[126,16,78,1.0],[126,16,79,1.0],[126,17,64,1.0],[126,17,65,1.0],[126,17,66,1.0],[126,17,67,1.0],[126,17,68,1.0],[126,17,69,1.0],[126,17,70,1.0],[126,17,71,1.0],[126,17,72,1.0],[126,17,73,1.0],[126,17,74,1.0],[126,17,75,1.0],[126,17,76,1.0],[126,17,77,1.0],[126,17,78,1.0],[126,17,79,1.0],[126,18,64,1.0],[126,18,65,1.0],[126,18,66,1.0],[126,18,67,1.0],[126,18,68,1.0],[126,18,69,1.0],[126,18,70,1.0],[126,18,71,1.0],[126,18,72,1.0],[126,18,73,1.0],[126,18,74,1.0],[126,18,75,1.0],[126,18,76,1.0],[126,18,77,1.0],[126,18,78,1.0],[126,18,79,1.0],[126,19,64,1.0],[126,19,65,1.0],[126,19,66,1.0],[126,19,67,1.0],[126,19,68,1.0],[126,19,69,1.0],[126,19,70,1.0],[126,19,71,1.0],[126,19,72,1.0],[126,19,73,1.0],[126,19,74,1.0],[126,19,75,1.0],[126,19,76,1.0],[126,19,77,1.0],[126,19,78,1.0],[126,19,79,1.0],[126,20,64,1.0],[126,20,65,1.0],[126,20,66,1.0],[126,20,67,1.0],[126,20,68,1.0],[126,20,69,1.0],[126,20,70,1.0],[126,20,71,1.0],[126,20,72,1.0],[126,20,73,1.0],[126,20,74,1.0],[126,20,75,1.0],[126,20,76,1.0],[126,20,77,1.0],[126,20,78,1.0],[126,20,79,1.0],[126,21,64,1.0],[126,21,65,1.0],[126,21,66,1.0],[126,21,67,1.0],[126,21,68,1.0],[126,21,69,1.0],[126,21,70,1.0],[126,21,71,1.0],[126,21,72,1.0],[126,21,73,1.0],[126,21,74,1.0],[126,21,75,1.0],[126,21,76,1.0],[126,21,77,1.0],[126,21,78,1.0],[126,21,79,1.0],[126,22,64,1.0],[126,22,65,1.0],[126,22,66,1.0],[126,22,67,1.0],[126,22,68,1.0],[126,22,69,1.0],[126,22,70,1.0],[126,22,71,1.0],[126,22,72,1.0],[126,22,73,1.0],[126,22,74,1.0],[126,22,75,1.0],[126,22,76,1.0],[126,22,77,1.0],[126,22,78,1.0],[126,22,79,1.0],[126,23,64,1.0],[126,23,65,1.0],[126,23,66,1.0],[126,23,67,1.0],[126,23,68,1.0],[126,23,69,1.0],[126,23,70,1.0],[126,23,71,1.0],[126,23,72,1.0],[126,23,73,1.0],[126,23,74,1.0],[126,23,75,1.0],[126,23,76,1.0],[126,23,77,1.0],[126,23,78,1.0],[126,23,79,1.0],[126,24,64,1.0],[126,24,65,1.0],[126,24,66,1.0],[126,24,67,1.0],[126,24,68,1.0],[126,24,69,1.0],[126,24,70,1.0],[126,24,71,1.0],[126,24,72,1.0],[126,24,73,1.0],[126,24,74,1.0],[126,24,75,1.0],[126,24,76,1.0],[126,24,77,1.0],[126,24,78,1.0],[126,24,79,1.0],[126,25,64,1.0],[126,25,65,1.0],[126,25,66,1.0],[126,25,67,1.0],[126,25,68,1.0],[126,25,69,1.0],[126,25,70,1.0],[126,25,71,1.0],[126,25,72,1.0],[126,25,73,1.0],[126,25,74,1.0],[126,25,75,1.0],[126,25,76,1.0],[126,25,77,1.0],[126,25,78,1.0],[126,25,79,1.0],[126,26,64,1.0],[126,26,65,1.0],[126,26,66,1.0],[126,26,67,1.0],[126,26,68,1.0],[126,26,69,1.0],[126,26,70,1.0],[126,26,71,1.0],[126,26,72,1.0],[126,26,73,1.0],[126,26,74,1.0],[126,26,75,1.0],[126,26,76,1.0],[126,26,77,1.0],[126,26,78,1.0],[126,26,79,1.0],[126,27,64,1.0],[126,27,65,1.0],[126,27,66,1.0],[126,27,67,1.0],[126,27,68,1.0],[126,27,69,1.0],[126,27,70,1.0],[126,27,71,1.0],[126,27,72,1.0],[126,27,73,1.0],[126,27,74,1.0],[126,27,75,1.0],[126,27,76,1.0],[126,27,77,1.0],[126,27,78,1.0],[126,27,79,1.0],[126,28,64,1.0],[126,28,65,1.0],[126,28,66,1.0],[126,28,67,1.0],[126,28,68,1.0],[126,28,69,1.0],[126,28,70,1.0],[126,28,71,1.0],[126,28,72,1.0],[126,28,73,1.0],[126,28,74,1.0],[126,28,75,1.0],[126,28,76,1.0],[126,28,77,1.0],[126,28,78,1.0],[126,28,79,1.0],[126,29,64,1.0],[126,29,65,1.0],[126,29,66,1.0],[126,29,67,1.0],[126,29,68,1.0],[126,29,69,1.0],[126,29,70,1.0],[126,29,71,1.0],[126,29,72,1.0],[126,29,73,1.0],[126,29,74,1.0],[126,29,75,1.0],[126,29,76,1.0],[126,29,77,1.0],[126,29,78,1.0],[126,29,79,1.0],[126,30,64,1.0],[126,30,65,1.0],[126,30,66,1.0],[126,30,67,1.0],[126,30,68,1.0],[126,30,69,1.0],[126,30,70,1.0],[126,30,71,1.0],[126,30,72,1.0],[126,30,73,1.0],[126,30,74,1.0],[126,30,75,1.0],[126,30,76,1.0],[126,30,77,1.0],[126,30,78,1.0],[126,30,79,1.0],[126,31,64,1.0],[126,31,65,1.0],[126,31,66,1.0],[126,31,67,1.0],[126,31,68,1.0],[126,31,69,1.0],[126,31,70,1.0],[126,31,71,1.0],[126,31,72,1.0],[126,31,73,1.0],[126,31,74,1.0],[126,31,75,1.0],[126,31,76,1.0],[126,31,77,1.0],[126,31,78,1.0],[126,31,79,1.0],[126,32,64,1.0],[126,32,65,1.0],[126,32,66,1.0],[126,32,67,1.0],[126,32,68,1.0],[126,32,69,1.0],[126,32,70,1.0],[126,32,71,1.0],[126,32,72,1.0],[126,32,73,1.0],[126,32,74,1.0],[126,32,75,1.0],[126,32,76,1.0],[126,32,77,1.0],[126,32,78,1.0],[126,32,79,1.0],[126,33,64,1.0],[126,33,65,1.0],[126,33,66,1.0],[126,33,67,1.0],[126,33,68,1.0],[126,33,69,1.0],[126,33,70,1.0],[126,33,71,1.0],[126,33,72,1.0],[126,33,73,1.0],[126,33,74,1.0],[126,33,75,1.0],[126,33,76,1.0],[126,33,77,1.0],[126,33,78,1.0],[126,33,79,1.0],[126,34,64,1.0],[126,34,65,1.0],[126,34,66,1.0],[126,34,67,1.0],[126,34,68,1.0],[126,34,69,1.0],[126,34,70,1.0],[126,34,71,1.0],[126,34,72,1.0],[126,34,73,1.0],[126,34,74,1.0],[126,34,75,1.0],[126,34,76,1.0],[126,34,77,1.0],[126,34,78,1.0],[126,34,79,1.0],[126,35,64,1.0],[126,35,65,1.0],[126,35,66,1.0],[126,35,67,1.0],[126,35,68,1.0],[126,35,69,1.0],[126,35,70,1.0],[126,35,71,1.0],[126,35,72,1.0],[126,35,73,1.0],[126,35,74,1.0],[126,35,75,1.0],[126,35,76,1.0],[126,35,77,1.0],[126,35,78,1.0],[126,35,79,1.0],[126,36,64,1.0],[126,36,65,1.0],[126,36,66,1.0],[126,36,67,1.0],[126,36,68,1.0],[126,36,69,1.0],[126,36,70,1.0],[126,36,71,1.0],[126,36,72,1.0],[126,36,73,1.0],[126,36,74,1.0],[126,36,75,1.0],[126,36,76,1.0],[126,36,77,1.0],[126,36,78,1.0],[126,36,79,1.0],[126,37,64,1.0],[126,37,65,1.0],[126,37,66,1.0],[126,37,67,1.0],[126,37,68,1.0],[126,37,69,1.0],[126,37,70,1.0],[126,37,71,1.0],[126,37,72,1.0],[126,37,73,1.0],[126,37,74,1.0],[126,37,75,1.0],[126,37,76,1.0],[126,37,77,1.0],[126,37,78,1.0],[126,37,79,1.0],[126,38,64,1.0],[126,38,65,1.0],[126,38,66,1.0],[126,38,67,1.0],[126,38,68,1.0],[126,38,69,1.0],[126,38,70,1.0],[126,38,71,1.0],[126,38,72,1.0],[126,38,73,1.0],[126,38,74,1.0],[126,38,75,1.0],[126,38,76,1.0],[126,38,77,1.0],[126,38,78,1.0],[126,38,79,1.0],[126,39,64,1.0],[126,39,65,1.0],[126,39,66,1.0],[126,39,67,1.0],[126,39,68,1.0],[126,39,69,1.0],[126,39,70,1.0],[126,39,71,1.0],[126,39,72,1.0],[126,39,73,1.0],[126,39,74,1.0],[126,39,75,1.0],[126,39,76,1.0],[126,39,77,1.0],[126,39,78,1.0],[126,39,79,1.0],[126,40,64,1.0],[126,40,65,1.0],[126,40,66,1.0],[126,40,67,1.0],[126,40,68,1.0],[126,40,69,1.0],[126,40,70,1.0],[126,40,71,1.0],[126,40,72,1.0],[126,40,73,1.0],[126,40,74,1.0],[126,40,75,1.0],[126,40,76,1.0],[126,40,77,1.0],[126,40,78,1.0],[126,40,79,1.0],[126,41,64,1.0],[126,41,65,1.0],[126,41,66,1.0],[126,41,67,1.0],[126,41,68,1.0],[126,41,69,1.0],[126,41,70,1.0],[126,41,71,1.0],[126,41,72,1.0],[126,41,73,1.0],[126,41,74,1.0],[126,41,75,1.0],[126,41,76,1.0],[126,41,77,1.0],[126,41,78,1.0],[126,41,79,1.0],[126,42,64,1.0],[126,42,65,1.0],[126,42,66,1.0],[126,42,67,1.0],[126,42,68,1.0],[126,42,69,1.0],[126,42,70,1.0],[126,42,71,1.0],[126,42,72,1.0],[126,42,73,1.0],[126,42,74,1.0],[126,42,75,1.0],[126,42,76,1.0],[126,42,77,1.0],[126,42,78,1.0],[126,42,79,1.0],[126,43,64,1.0],[126,43,65,1.0],[126,43,66,1.0],[126,43,67,1.0],[126,43,68,1.0],[126,43,69,1.0],[126,43,70,1.0],[126,43,71,1.0],[126,43,72,1.0],[126,43,73,1.0],[126,43,74,1.0],[126,43,75,1.0],[126,43,76,1.0],[126,43,77,1.0],[126,43,78,1.0],[126,43,79,1.0],[126,44,64,1.0],[126,44,65,1.0],[126,44,66,1.0],[126,44,67,1.0],[126,44,68,1.0],[126,44,69,1.0],[126,44,70,1.0],[126,44,71,1.0],[126,44,72,1.0],[126,44,73,1.0],[126,44,74,1.0],[126,44,75,1.0],[126,44,76,1.0],[126,44,77,1.0],[126,44,78,1.0],[126,44,79,1.0],[126,45,64,1.0],[126,45,65,1.0],[126,45,66,1.0],[126,45,67,1.0],[126,45,68,1.0],[126,45,69,1.0],[126,45,70,1.0],[126,45,71,1.0],[126,45,72,1.0],[126,45,73,1.0],[126,45,74,1.0],[126,45,75,1.0],[126,45,76,1.0],[126,45,77,1.0],[126,45,78,1.0],[126,45,79,1.0],[126,46,64,1.0],[126,46,65,1.0],[126,46,66,1.0],[126,46,67,1.0],[126,46,68,1.0],[126,46,69,1.0],[126,46,70,1.0],[126,46,71,1.0],[126,46,72,1.0],[126,46,73,1.0],[126,46,74,1.0],[126,46,75,1.0],[126,46,76,1.0],[126,46,77,1.0],[126,46,78,1.0],[126,46,79,1.0],[126,47,64,1.0],[126,47,65,1.0],[126,47,66,1.0],[126,47,67,1.0],[126,47,68,1.0],[126,47,69,1.0],[126,47,70,1.0],[126,47,71,1.0],[126,47,72,1.0],[126,47,73,1.0],[126,47,74,1.0],[126,47,75,1.0],[126,47,76,1.0],[126,47,77,1.0],[126,47,78,1.0],[126,47,79,1.0],[126,48,64,1.0],[126,48,65,1.0],[126,48,66,1.0],[126,48,67,1.0],[126,48,68,1.0],[126,48,69,1.0],[126,48,70,1.0],[126,48,71,1.0],[126,48,72,1.0],[126,48,73,1.0],[126,48,74,1.0],[126,48,75,1.0],[126,48,76,1.0],[126,48,77,1.0],[126,48,78,1.0],[126,48,79,1.0],[126,49,64,1.0],[126,49,65,1.0],[126,49,66,1.0],[126,49,67,1.0],[126,49,68,1.0],[126,49,69,1.0],[126,49,70,1.0],[126,49,71,1.0],[126,49,72,1.0],[126,49,73,1.0],[126,49,74,1.0],[126,49,75,1.0],[126,49,76,1.0],[126,49,77,1.0],[126,49,78,1.0],[126,49,79,1.0],[126,50,64,1.0],[126,50,65,1.0],[126,50,66,1.0],[126,50,67,1.0],[126,50,68,1.0],[126,50,69,1.0],[126,50,70,1.0],[126,50,71,1.0],[126,50,72,1.0],[126,50,73,1.0],[126,50,74,1.0],[126,50,75,1.0],[126,50,76,1.0],[126,50,77,1.0],[126,50,78,1.0],[126,50,79,1.0],[126,51,64,1.0],[126,51,65,1.0],[126,51,66,1.0],[126,51,67,1.0],[126,51,68,1.0],[126,51,69,1.0],[126,51,70,1.0],[126,51,71,1.0],[126,51,72,1.0],[126,51,73,1.0],[126,51,74,1.0],[126,51,75,1.0],[126,51,76,1.0],[126,51,77,1.0],[126,51,78,1.0],[126,51,79,1.0],[126,52,64,1.0],[126,52,65,1.0],[126,52,66,1.0],[126,52,67,1.0],[126,52,68,1.0],[126,52,69,1.0],[126,52,70,1.0],[126,52,71,1.0],[126,52,72,1.0],[126,52,73,1.0],[126,52,74,1.0],[126,52,75,1.0],[126,52,76,1.0],[126,52,77,1.0],[126,52,78,1.0],[126,52,79,1.0],[126,53,64,1.0],[126,53,65,1.0],[126,53,66,1.0],[126,53,67,1.0],[126,53,68,1.0],[126,53,69,1.0],[126,53,70,1.0],[126,53,71,1.0],[126,53,72,1.0],[126,53,73,1.0],[126,53,74,1.0],[126,53,75,1.0],[126,53,76,1.0],[126,53,77,1.0],[126,53,78,1.0],[126,53,79,1.0],[126,54,64,1.0],[126,54,65,1.0],[126,54,66,1.0],[126,54,67,1.0],[126,54,68,1.0],[126,54,69,1.0],[126,54,70,1.0],[126,54,71,1.0],[126,54,72,1.0],[126,54,73,1.0],[126,54,74,1.0],[126,54,75,1.0],[126,54,76,1.0],[126,54,77,1.0],[126,54,78,1.0],[126,54,79,1.0],[126,55,64,1.0],[126,55,65,1.0],[126,55,66,1.0],[126,55,67,1.0],[126,55,68,1.0],[126,55,69,1.0],[126,55,70,1.0],[126,55,71,1.0],[126,55,72,1.0],[126,55,73,1.0],[126,55,74,1.0],[126,55,75,1.0],[126,55,76,1.0],[126,55,77,1.0],[126,55,78,1.0],[126,55,79,1.0],[126,56,64,1.0],[126,56,65,1.0],[126,56,66,1.0],[126,56,67,1.0],[126,56,68,1.0],[126,56,69,1.0],[126,56,70,1.0],[126,56,71,1.0],[126,56,72,1.0],[126,56,73,1.0],[126,56,74,1.0],[126,56,75,1.0],[126,56,76,1.0],[126,56,77,1.0],[126,56,78,1.0],[126,56,79,1.0],[126,57,64,1.0],[126,57,65,1.0],[126,57,66,1.0],[126,57,67,1.0],[126,57,68,1.0],[126,57,69,1.0],[126,57,70,1.0],[126,57,71,1.0],[126,57,72,1.0],[126,57,73,1.0],[126,57,74,1.0],[126,57,75,1.0],[126,57,76,1.0],[126,57,77,1.0],[126,57,78,1.0],[126,57,79,1.0],[126,58,64,1.0],[126,58,65,1.0],[126,58,66,1.0],[126,58,67,1.0],[126,58,68,1.0],[126,58,69,1.0],[126,58,70,1.0],[126,58,71,1.0],[126,58,72,1.0],[126,58,73,1.0],[126,58,74,1.0],[126,58,75,1.0],[126,58,76,1.0],[126,58,77,1.0],[126,58,78,1.0],[126,58,79,1.0],[126,59,64,1.0],[126,59,65,1.0],[126,59,66,1.0],[126,59,67,1.0],[126,59,68,1.0],[126,59,69,1.0],[126,59,70,1.0],[126,59,71,1.0],[126,59,72,1.0],[126,59,73,1.0],[126,59,74,1.0],[126,59,75,1.0],[126,59,76,1.0],[126,59,77,1.0],[126,59,78,1.0],[126,59,79,1.0],[126,60,64,1.0],[126,60,65,1.0],[126,60,66,1.0],[126,60,67,1.0],[126,60,68,1.0],[126,60,69,1.0],[126,60,70,1.0],[126,60,71,1.0],[126,60,72,1.0],[126,60,73,1.0],[126,60,74,1.0],[126,60,75,1.0],[126,60,76,1.0],[126,60,77,1.0],[126,60,78,1.0],[126,60,79,1.0],[126,61,64,1.0],[126,61,65,1.0],[126,61,66,1.0],[126,61,67,1.0],[126,61,68,1.0],[126,61,69,1.0],[126,61,70,1.0],[126,61,71,1.0],[126,61,72,1.0],[126,61,73,1.0],[126,61,74,1.0],[126,61,75,1.0],[126,61,76,1.0],[126,61,77,1.0],[126,61,78,1.0],[126,61,79,1.0],[126,62,64,1.0],[126,62,65,1.0],[126,62,66,1.0],[126,62,67,1.0],[126,62,68,1.0],[126,62,69,1.0],[126,62,70,1.0],[126,62,71,1.0],[126,62,72,1.0],[126,62,73,1.0],[126,62,74,1.0],[126,62,75,1.0],[126,62,76,1.0],[126,62,77,1.0],[126,62,78,1.0],[126,62,79,1.0],[126,63,64,1.0],[126,63,65,1.0],[126,63,66,1.0],[126,63,67,1.0],[126,63,68,1.0],[126,63,69,1.0],[126,63,70,1.0],[126,63,71,1.0],[126,63,72,1.0],[126,63,73,1.0],[126,63,74,1.0],[126,63,75,1.0],[126,63,76,1.0],[126,63,77,1.0],[126,63,78,1.0],[126,63,79,1.0],[126,64,64,1.0],[126,64,65,1.0],[126,64,66,1.0],[126,64,67,1.0],[126,64,68,1.0],[126,64,69,1.0],[126,64,70,1.0],[126,64,71,1.0],[126,64,72,1.0],[126,64,73,1.0],[126,64,74,1.0],[126,64,75,1.0],[126,64,76,1.0],[126,64,77,1.0],[126,64,78,1.0],[126,64,79,1.0],[126,65,64,1.0],[126,65,65,1.0],[126,65,66,1.0],[126,65,67,1.0],[126,65,68,1.0],[126,65,69,1.0],[126,65,70,1.0],[126,65,71,1.0],[126,65,72,1.0],[126,65,73,1.0],[126,65,74,1.0],[126,65,75,1.0],[126,65,76,1.0],[126,65,77,1.0],[126,65,78,1.0],[126,65,79,1.0],[126,66,64,1.0],[126,66,65,1.0],[126,66,66,1.0],[126,66,67,1.0],[126,66,68,1.0],[126,66,69,1.0],[126,66,70,1.0],[126,66,71,1.0],[126,66,72,1.0],[126,66,73,1.0],[126,66,74,1.0],[126,66,75,1.0],[126,66,76,1.0],[126,66,77,1.0],[126,66,78,1.0],[126,66,79,1.0],[126,67,64,1.0],[126,67,65,1.0],[126,67,66,1.0],[126,67,67,1.0],[126,67,68,1.0],[126,67,69,1.0],[126,67,70,1.0],[126,67,71,1.0],[126,67,72,1.0],[126,67,73,1.0],[126,67,74,1.0],[126,67,75,1.0],[126,67,76,1.0],[126,67,77,1.0],[126,67,78,1.0],[126,67,79,1.0],[126,68,64,1.0],[126,68,65,1.0],[126,68,66,1.0],[126,68,67,1.0],[126,68,68,1.0],[126,68,69,1.0],[126,68,70,1.0],[126,68,71,1.0],[126,68,72,1.0],[126,68,73,1.0],[126,68,74,1.0],[126,68,75,1.0],[126,68,76,1.0],[126,68,77,1.0],[126,68,78,1.0],[126,68,79,1.0],[126,69,64,1.0],[126,69,65,1.0],[126,69,66,1.0],[126,69,67,1.0],[126,69,68,1.0],[126,69,69,1.0],[126,69,70,1.0],[126,69,71,1.0],[126,69,72,1.0],[126,69,73,1.0],[126,69,74,1.0],[126,69,75,1.0],[126,69,76,1.0],[126,69,77,1.0],[126,69,78,1.0],[126,69,79,1.0],[126,70,64,1.0],[126,70,65,1.0],[126,70,66,1.0],[126,70,67,1.0],[126,70,68,1.0],[126,70,69,1.0],[126,70,70,1.0],[126,70,71,1.0],[126,70,72,1.0],[126,70,73,1.0],[126,70,74,1.0],[126,70,75,1.0],[126,70,76,1.0],[126,70,77,1.0],[126,70,78,1.0],[126,70,79,1.0],[126,71,64,1.0],[126,71,65,1.0],[126,71,66,1.0],[126,71,67,1.0],[126,71,68,1.0],[126,71,69,1.0],[126,71,70,1.0],[126,71,71,1.0],[126,71,72,1.0],[126,71,73,1.0],[126,71,74,1.0],[126,71,75,1.0],[126,71,76,1.0],[126,71,77,1.0],[126,71,78,1.0],[126,71,79,1.0],[126,72,64,1.0],[126,72,65,1.0],[126,72,66,1.0],[126,72,67,1.0],[126,72,68,1.0],[126,72,69,1.0],[126,72,70,1.0],[126,72,71,1.0],[126,72,72,1.0],[126,72,73,1.0],[126,72,74,1.0],[126,72,75,1.0],[126,72,76,1.0],[126,72,77,1.0],[126,72,78,1.0],[126,72,79,1.0],[126,73,64,1.0],[126,73,65,1.0],[126,73,66,1.0],[126,73,67,1.0],[126,73,68,1.0],[126,73,69,1.0],[126,73,70,1.0],[126,73,71,1.0],[126,73,72,1.0],[126,73,73,1.0],[126,73,74,1.0],[126,73,75,1.0],[126,73,76,1.0],[126,73,77,1.0],[126,73,78,1.0],[126,73,79,1.0],[126,74,64,1.0],[126,74,65,1.0],[126,74,66,1.0],[126,74,67,1.0],[126,74,68,1.0],[126,74,69,1.0],[126,74,70,1.0],[126,74,71,1.0],[126,74,72,1.0],[126,74,73,1.0],[126,74,74,1.0],[126,74,75,1.0],[126,74,76,1.0],[126,74,77,1.0],[126,74,78,1.0],[126,74,79,1.0],[126,75,64,1.0],[126,75,65,1.0],[126,75,66,1.0],[126,75,67,1.0],[126,75,68,1.0],[126,75,69,1.0],[126,75,70,1.0],[126,75,71,1.0],[126,75,72,1.0],[126,75,73,1.0],[126,75,74,1.0],[126,75,75,1.0],[126,75,76,1.0],[126,75,77,1.0],[126,75,78,1.0],[126,75,79,1.0],[126,76,64,1.0],[126,76,65,1.0],[126,76,66,1.0],[126,76,67,1.0],[126,76,68,1.0],[126,76,69,1.0],[126,76,70,1.0],[126,76,71,1.0],[126,76,72,1.0],[126,76,73,1.0],[126,76,74,1.0],[126,76,75,1.0],[126,76,76,1.0],[126,76,77,1.0],[126,76,78,1.0],[126,76,79,1.0],[126,77,64,1.0],[126,77,65,1.0],[126,77,66,1.0],[126,77,67,1.0],[126,77,68,1.0],[126,77,69,1.0],[126,77,70,1.0],[126,77,71,1.0],[126,77,72,1.0],[126,77,73,1.0],[126,77,74,1.0],[126,77,75,1.0],[126,77,76,1.0],[126,77,77,1.0],[126,77,78,1.0],[126,77,79,1.0],[126,78,64,1.0],[126,78,65,1.0],[126,78,66,1.0],[126,78,67,1.0],[126,78,68,1.0],[126,78,69,1.0],[126,78,70,1.0],[126,78,71,1.0],[126,78,72,1.0],[126,78,73,1.0],[126,78,74,1.0],[126,78,75,1.0],[126,78,76,1.0],[126,78,77,1.0],[126,78,78,1.0],[126,78,79,1.0],[126,79,64,1.0],[126,79,65,1.0],[126,79,66,1.0],[126,79,67,1.0],[126,79,68,1.0],[126,79,69,1.0],[126,79,70,1.0],[126,79,71,1.0],[126,79,72,1.0],[126,79,73,1.0],[126,79,74,1.0],[126,79,75,1.0],[126,79,76,1.0],[126,79,77,1.0],[126,79,78,1.0],[126,79,79,1.0],[126,80,64,1.0],[126,80,65,1.0],[126,80,66,1.0],[126,80,67,1.0],[126,80,68,1.0],[126,80,69,1.0],[126,80,70,1.0],[126,80,71,1.0],[126,80,72,1.0],[126,80,73,1.0],[126,80,74,1.0],[126,80,75,1.0],[126,80,76,1.0],[126,80,77,1.0],[126,80,78,1.0],[126,80,79,1.0],[126,81,64,1.0],[126,81,65,1.0],[126,81,66,1.0],[126,81,67,1.0],[126,81,68,1.0],[126,81,69,1.0],[126,81,70,1.0],[126,81,71,1.0],[126,81,72,1.0],[126,81,73,1.0],[126,81,74,1.0],[126,81,75,1.0],[126,81,76,1.0],[126,81,77,1.0],[126,81,78,1.0],[126,81,79,1.0],[126,82,64,1.0],[126,82,65,1.0],[126,82,66,1.0],[126,82,67,1.0],[126,82,68,1.0],[126,82,69,1.0],[126,82,70,1.0],[126,82,71,1.0],[126,82,72,1.0],[126,82,73,1.0],[126,82,74,1.0],[126,82,75,1.0],[126,82,76,1.0],[126,82,77,1.0],[126,82,78,1.0],[126,82,79,1.0],[126,83,64,1.0],[126,83,65,1.0],[126,83,66,1.0],[126,83,67,1.0],[126,83,68,1.0],[126,83,69,1.0],[126,83,70,1.0],[126,83,71,1.0],[126,83,72,1.0],[126,83,73,1.0],[126,83,74,1.0],[126,83,75,1.0],[126,83,76,1.0],[126,83,77,1.0],[126,83,78,1.0],[126,83,79,1.0],[126,84,64,1.0],[126,84,65,1.0],[126,84,66,1.0],[126,84,67,1.0],[126,84,68,1.0],[126,84,69,1.0],[126,84,70,1.0],[126,84,71,1.0],[126,84,72,1.0],[126,84,73,1.0],[126,84,74,1.0],[126,84,75,1.0],[126,84,76,1.0],[126,84,77,1.0],[126,84,78,1.0],[126,84,79,1.0],[126,85,64,1.0],[126,85,65,1.0],[126,85,66,1.0],[126,85,67,1.0],[126,85,68,1.0],[126,85,69,1.0],[126,85,70,1.0],[126,85,71,1.0],[126,85,72,1.0],[126,85,73,1.0],[126,85,74,1.0],[126,85,75,1.0],[126,85,76,1.0],[126,85,77,1.0],[126,85,78,1.0],[126,85,79,1.0],[126,86,64,1.0],[126,86,65,1.0],[126,86,66,1.0],[126,86,67,1.0],[126,86,68,1.0],[126,86,69,1.0],[126,86,70,1.0],[126,86,71,1.0],[126,86,72,1.0],[126,86,73,1.0],[126,86,74,1.0],[126,86,75,1.0],[126,86,76,1.0],[126,86,77,1.0],[126,86,78,1.0],[126,86,79,1.0],[126,87,64,1.0],[126,87,65,1.0],[126,87,66,1.0],[126,87,67,1.0],[126,87,68,1.0],[126,87,69,1.0],[126,87,70,1.0],[126,87,71,1.0],[126,87,72,1.0],[126,87,73,1.0],[126,87,74,1.0],[126,87,75,1.0],[126,87,76,1.0],[126,87,77,1.0],[126,87,78,1.0],[126,87,79,1.0],[126,88,64,1.0],[126,88,65,1.0],[126,88,66,1.0],[126,88,67,1.0],[126,88,68,1.0],[126,88,69,1.0],[126,88,70,1.0],[126,88,71,1.0],[126,88,72,1.0],[126,88,73,1.0],[126,88,74,1.0],[126,88,75,1.0],[126,88,76,1.0],[126,88,77,1.0],[126,88,78,1.0],[126,88,79,1.0],[126,89,64,1.0],[126,89,65,1.0],[126,89,66,1.0],[126,89,67,1.0],[126,89,68,1.0],[126,89,69,1.0],[126,89,70,1.0],[126,89,71,1.0],[126,89,72,1.0],[126,89,73,1.0],[126,89,74,1.0],[126,89,75,1.0],[126,89,76,1.0],[126,89,77,1.0],[126,89,78,1.0],[126,89,79,1.0],[126,90,64,1.0],[126,90,65,1.0],[126,90,66,1.0],[126,90,67,1.0],[126,90,68,1.0],[126,90,69,1.0],[126,90,70,1.0],[126,90,71,1.0],[126,90,72,1.0],[126,90,73,1.0],[126,90,74,1.0],[126,90,75,1.0],[126,90,76,1.0],[126,90,77,1.0],[126,90,78,1.0],[126,90,79,1.0],[126,91,64,1.0],[126,91,65,1.0],[126,91,66,1.0],[126,91,67,1.0],[126,91,68,1.0],[126,91,69,1.0],[126,91,70,1.0],[126,91,71,1.0],[126,91,72,1.0],[126,91,73,1.0],[126,91,74,1.0],[126,91,75,1.0],[126,91,76,1.0],[126,91,77,1.0],[126,91,78,1.0],[126,91,79,1.0],[126,92,64,1.0],[126,92,65,1.0],[126,92,66,1.0],[126,92,67,1.0],[126,92,68,1.0],[126,92,69,1.0],[126,92,70,1.0],[126,92,71,1.0],[126,92,72,1.0],[126,92,73,1.0],[126,92,74,1.0],[126,92,75,1.0],[126,92,76,1.0],[126,92,77,1.0],[126,92,78,1.0],[126,92,79,1.0],[126,93,64,1.0],[126,93,65,1.0],[126,93,66,1.0],[126,93,67,1.0],[126,93,68,1.0],[126,93,69,1.0],[126,93,70,1.0],[126,93,71,1.0],[126,93,72,1.0],[126,93,73,1.0],[126,93,74,1.0],[126,93,75,1.0],[126,93,76,1.0],[126,93,77,1.0],[126,93,78,1.0],[126,93,79,1.0],[126,94,64,1.0],[126,94,65,1.0],[126,94,66,1.0],[126,94,67,1.0],[126,94,68,1.0],[126,94,69,1.0],[126,94,70,1.0],[126,94,71,1.0],[126,94,72,1.0],[126,94,73,1.0],[126,94,74,1.0],[126,94,75,1.0],[126,94,76,1.0],[126,94,77,1.0],[126,94,78,1.0],[126,94,79,1.0],[126,95,64,1.0],[126,95,65,1.0],[126,95,66,1.0],[126,95,67,1.0],[126,95,68,1.0],[126,95,69,1.0],[126,95,70,1.0],[126,95,71,1.0],[126,95,72,1.0],[126,95,73,1.0],[126,95,74,1.0],[126,95,75,1.0],[126,95,76,1.0],[126,95,77,1.0],[126,95,78,1.0],[126,95,79,1.0],[126,96,64,1.0],[126,96,65,1.0],[126,96,66,1.0],[126,96,67,1.0],[126,96,68,1.0],[126,96,69,1.0],[126,96,70,1.0],[126,96,71,1.0],[126,96,72,1.0],[126,96,73,1.0],[126,96,74,1.0],[126,96,75,1.0],[126,96,76,1.0],[126,96,77,1.0],[126,96,78,1.0],[126,96,79,1.0],[126,97,64,1.0],[126,97,65,1.0],[126,97,66,1.0],[126,97,67,1.0],[126,97,68,1.0],[126,97,69,1.0],[126,97,70,1.0],[126,97,71,1.0],[126,97,72,1.0],[126,97,73,1.0],[126,97,74,1.0],[126,97,75,1.0],[126,97,76,1.0],[126,97,77,1.0],[126,97,78,1.0],[126,97,79,1.0],[126,98,64,1.0],[126,98,65,1.0],[126,98,66,1.0],[126,98,67,1.0],[126,98,68,1.0],[126,98,69,1.0],[126,98,70,1.0],[126,98,71,1.0],[126,98,72,1.0],[126,98,73,1.0],[126,98,74,1.0],[126,98,75,1.0],[126,98,76,1.0],[126,98,77,1.0],[126,98,78,1.0],[126,98,79,1.0],[126,99,64,1.0],[126,99,65,1.0],[126,99,66,1.0],[126,99,67,1.0],[126,99,68,1.0],[126,99,69,1.0],[126,99,70,1.0],[126,99,71,1.0],[126,99,72,1.0],[126,99,73,1.0],[126,99,74,1.0],[126,99,75,1.0],[126,99,76,1.0],[126,99,77,1.0],[126,99,78,1.0],[126,99,79,1.0],[126,100,64,1.0],[126,100,65,1.0],[126,100,66,1.0],[126,100,67,1.0],[126,100,68,1.0],[126,100,69,1.0],[126,100,70,1.0],[126,100,71,1.0],[126,100,72,1.0],[126,100,73,1.0],[126,100,74,1.0],[126,100,75,1.0],[126,100,76,1.0],[126,100,77,1.0],[126,100,78,1.0],[126,100,79,1.0],[126,101,64,1.0],[126,101,65,1.0],[126,101,66,1.0],[126,101,67,1.0],[126,101,68,1.0],[126,101,69,1.0],[126,101,70,1.0],[126,101,71,1.0],[126,101,72,1.0],[126,101,73,1.0],[126,101,74,1.0],[126,101,75,1.0],[126,101,76,1.0],[126,101,77,1.0],[126,101,78,1.0],[126,101,79,1.0],[126,102,64,1.0],[126,102,65,1.0],[126,102,66,1.0],[126,102,67,1.0],[126,102,68,1.0],[126,102,69,1.0],[126,102,70,1.0],[126,102,71,1.0],[126,102,72,1.0],[126,102,73,1.0],[126,102,74,1.0],[126,102,75,1.0],[126,102,76,1.0],[126,102,77,1.0],[126,102,78,1.0],[126,102,79,1.0],[126,103,64,1.0],[126,103,65,1.0],[126,103,66,1.0],[126,103,67,1.0],[126,103,68,1.0],[126,103,69,1.0],[126,103,70,1.0],[126,103,71,1.0],[126,103,72,1.0],[126,103,73,1.0],[126,103,74,1.0],[126,103,75,1.0],[126,103,76,1.0],[126,103,77,1.0],[126,103,78,1.0],[126,103,79,1.0],[126,104,64,1.0],[126,104,65,1.0],[126,104,66,1.0],[126,104,67,1.0],[126,104,68,1.0],[126,104,69,1.0],[126,104,70,1.0],[126,104,71,1.0],[126,104,72,1.0],[126,104,73,1.0],[126,104,74,1.0],[126,104,75,1.0],[126,104,76,1.0],[126,104,77,1.0],[126,104,78,1.0],[126,104,79,1.0],[126,105,64,1.0],[126,105,65,1.0],[126,105,66,1.0],[126,105,67,1.0],[126,105,68,1.0],[126,105,69,1.0],[126,105,70,1.0],[126,105,71,1.0],[126,105,72,1.0],[126,105,73,1.0],[126,105,74,1.0],[126,105,75,1.0],[126,105,76,1.0],[126,105,77,1.0],[126,105,78,1.0],[126,105,79,1.0],[126,106,64,1.0],[126,106,65,1.0],[126,106,66,1.0],[126,106,67,1.0],[126,106,68,1.0],[126,106,69,1.0],[126,106,70,1.0],[126,106,71,1.0],[126,106,72,1.0],[126,106,73,1.0],[126,106,74,1.0],[126,106,75,1.0],[126,106,76,1.0],[126,106,77,1.0],[126,106,78,1.0],[126,106,79,1.0],[126,107,64,1.0],[126,107,65,1.0],[126,107,66,1.0],[126,107,67,1.0],[126,107,68,1.0],[126,107,69,1.0],[126,107,70,1.0],[126,107,71,1.0],[126,107,72,1.0],[126,107,73,1.0],[126,107,74,1.0],[126,107,75,1.0],[126,107,76,1.0],[126,107,77,1.0],[126,107,78,1.0],[126,107,79,1.0],[126,108,64,1.0],[126,108,65,1.0],[126,108,66,1.0],[126,108,67,1.0],[126,108,68,1.0],[126,108,69,1.0],[126,108,70,1.0],[126,108,71,1.0],[126,108,72,1.0],[126,108,73,1.0],[126,108,74,1.0],[126,108,75,1.0],[126,108,76,1.0],[126,108,77,1.0],[126,108,78,1.0],[126,108,79,1.0],[126,109,64,1.0],[126,109,65,1.0],[126,109,66,1.0],[126,109,67,1.0],[126,109,68,1.0],[126,109,69,1.0],[126,109,70,1.0],[126,109,71,1.0],[126,109,72,1.0],[126,109,73,1.0],[126,109,74,1.0],[126,109,75,1.0],[126,109,76,1.0],[126,109,77,1.0],[126,109,78,1.0],[126,109,79,1.0],[126,110,64,1.0],[126,110,65,1.0],[126,110,66,1.0],[126,110,67,1.0],[126,110,68,1.0],[126,110,69,1.0],[126,110,70,1.0],[126,110,71,1.0],[126,110,72,1.0],[126,110,73,1.0],[126,110,74,1.0],[126,110,75,1.0],[126,110,76,1.0],[126,110,77,1.0],[126,110,78,1.0],[126,110,79,1.0],[126,111,64,1.0],[126,111,65,1.0],[126,111,66,1.0],[126,111,67,1.0],[126,111,68,1.0],[126,111,69,1.0],[126,111,70,1.0],[126,111,71,1.0],[126,111,72,1.0],[126,111,73,1.0],[126,111,74,1.0],[126,111,75,1.0],[126,111,76,1.0],[126,111,77,1.0],[126,111,78,1.0],[126,111,79,1.0],[126,112,64,1.0],[126,112,65,1.0],[126,112,66,1.0],[126,112,67,1.0],[126,112,68,1.0],[126,112,69,1.0],[126,112,70,1.0],[126,112,71,1.0],[126,112,72,1.0],[126,112,73,1.0],[126,112,74,1.0],[126,112,75,1.0],[126,112,76,1.0],[126,112,77,1.0],[126,112,78,1.0],[126,112,79,1.0],[126,113,64,1.0],[126,113,65,1.0],[126,113,66,1.0],[126,113,67,1.0],[126,113,68,1.0],[126,113,69,1.0],[126,113,70,1.0],[126,113,71,1.0],[126,113,72,1.0],[126,113,73,1.0],[126,113,74,1.0],[126,113,75,1.0],[126,113,76,1.0],[126,113,77,1.0],[126,113,78,1.0],[126,113,79,1.0],[126,114,64,1.0],[126,114,65,1.0],[126,114,66,1.0],[126,114,67,1.0],[126,114,68,1.0],[126,114,69,1.0],[126,114,70,1.0],[126,114,71,1.0],[126,114,72,1.0],[126,114,73,1.0],[126,114,74,1.0],[126,114,75,1.0],[126,114,76,1.0],[126,114,77,1.0],[126,114,78,1.0],[126,114,79,1.0],[126,115,64,1.0],[126,115,65,1.0],[126,115,66,1.0],[126,115,67,1.0],[126,115,68,1.0],[126,115,69,1.0],[126,115,70,1.0],[126,115,71,1.0],[126,115,72,1.0],[126,115,73,1.0],[126,115,74,1.0],[126,115,75,1.0],[126,115,76,1.0],[126,115,77,1.0],[126,115,78,1.0],[126,115,79,1.0],[126,116,64,1.0],[126,116,65,1.0],[126,116,66,1.0],[126,116,67,1.0],[126,116,68,1.0],[126,116,69,1.0],[126,116,70,1.0],[126,116,71,1.0],[126,116,72,1.0],[126,116,73,1.0],[126,116,74,1.0],[126,116,75,1.0],[126,116,76,1.0],[126,116,77,1.0],[126,116,78,1.0],[126,116,79,1.0],[126,117,64,1.0],[126,117,65,1.0],[126,117,66,1.0],[126,117,67,1.0],[126,117,68,1.0],[126,117,69,1.0],[126,117,70,1.0],[126,117,71,1.0],[126,117,72,1.0],[126,117,73,1.0],[126,117,74,1.0],[126,117,75,1.0],[126,117,76,1.0],[126,117,77,1.0],[126,117,78,1.0],[126,117,79,1.0],[126,118,64,1.0],[126,118,65,1.0],[126,118,66,1.0],[126,118,67,1.0],[126,118,68,1.0],[126,118,69,1.0],[126,118,70,1.0],[126,118,71,1.0],[126,118,72,1.0],[126,118,73,1.0],[126,118,74,1.0],[126,118,75,1.0],[126,118,76,1.0],[126,118,77,1.0],[126,118,78,1.0],[126,118,79,1.0],[126,119,64,1.0],[126,119,65,1.0],[126,119,66,1.0],[126,119,67,1.0],[126,119,68,1.0],[126,119,69,1.0],[126,119,70,1.0],[126,119,71,1.0],[126,119,72,1.0],[126,119,73,1.0],[126,119,74,1.0],[126,119,75,1.0],[126,119,76,1.0],[126,119,77,1.0],[126,119,78,1.0],[126,119,79,1.0],[126,120,64,1.0],[126,120,65,1.0],[126,120,66,1.0],[126,120,67,1.0],[126,120,68,1.0],[126,120,69,1.0],[126,120,70,1.0],[126,120,71,1.0],[126,120,72,1.0],[126,120,73,1.0],[126,120,74,1.0],[126,120,75,1.0],[126,120,76,1.0],[126,120,77,1.0],[126,120,78,1.0],[126,120,79,1.0],[126,121,64,1.0],[126,121,65,1.0],[126,121,66,1.0],[126,121,67,1.0],[126,121,68,1.0],[126,121,69,1.0],[126,121,70,1.0],[126,121,71,1.0],[126,121,72,1.0],[126,121,73,1.0],[126,121,74,1.0],[126,121,75,1.0],[126,121,76,1.0],[126,121,77,1.0],[126,121,78,1.0],[126,121,79,1.0],[126,122,64,1.0],[126,122,65,1.0],[126,122,66,1.0],[126,122,67,1.0],[126,122,68,1.0],[126,122,69,1.0],[126,122,70,1.0],[126,122,71,1.0],[126,122,72,1.0],[126,122,73,1.0],[126,122,74,1.0],[126,122,75,1.0],[126,122,76,1.0],[126,122,77,1.0],[126,122,78,1.0],[126,122,79,1.0],[126,123,64,1.0],[126,123,65,1.0],[126,123,66,1.0],[126,123,67,1.0],[126,123,68,1.0],[126,123,69,1.0],[126,123,70,1.0],[126,123,71,1.0],[126,123,72,1.0],[126,123,73,1.0],[126,123,74,1.0],[126,123,75,1.0],[126,123,76,1.0],[126,123,77,1.0],[126,123,78,1.0],[126,123,79,1.0],[126,124,64,1.0],[126,124,65,1.0],[126,124,66,1.0],[126,124,67,1.0],[126,124,68,1.0],[126,124,69,1.0],[126,124,70,1.0],[126,124,71,1.0],[126,124,72,1.0],[126,124,73,1.0],[126,124,74,1.0],[126,124,75,1.0],[126,124,76,1.0],[126,124,77,1.0],[126,124,78,1.0],[126,124,79,1.0],[126,125,64,1.0],[126,125,65,1.0],[126,125,66,1.0],[126,125,67,1.0],[126,125,68,1.0],[126,125,69,1.0],[126,125,70,1.0],[126,125,71,1.0],[126,125,72,1.0],[126,125,73,1.0],[126,125,74,1.0],[126,125,75,1.0],[126,125,76,1.0],[126,125,77,1.0],[126,125,78,1.0],[126,125,79,1.0],[126,126,64,1.0],[126,126,65,1.0],[126,126,66,1.0],[126,126,67,1.0],[126,126,68,1.0],[126,126,69,1.0],[126,126,70,1.0],[126,126,71,1.0],[126,126,72,1.0],[126,126,73,1.0],[126,126,74,1.0],[126,126,75,1.0],[126,126,76,1.0],[126,126,77,1.0],[126,126,78,1.0],[126,126,79,1.0],[126,127,64,1.0],[126,127,65,1.0],[126,127,66,1.0],[126,127,67,1.0],[126,127,68,1.0],[126,127,69,1.0],[126,127,70,1.0],[126,127,71,1.0],[126,127,72,1.0],[126,127,73,1.0],[126,127,74,1.0],[126,127,75,1.0],[126,127,76,1.0],[126,127,77,1.0],[126,127,78,1.0],[126,127,79,1.0],[126,128,64,1.0],[126,128,65,1.0],[126,128,66,1.0],[126,128,67,1.0],[126,128,68,1.0],[126,128,69,1.0],[126,128,70,1.0],[126,128,71,1.0],[126,128,72,1.0],[126,128,73,1.0],[126,128,74,1.0],[126,128,75,1.0],[126,128,76,1.0],[126,128,77,1.0],[126,128,78,1.0],[126,128,79,1.0],[126,129,64,1.0],[126,129,65,1.0],[126,129,66,1.0],[126,129,67,1.0],[126,129,68,1.0],[126,129,69,1.0],[126,129,70,1.0],[126,129,71,1.0],[126,129,72,1.0],[126,129,73,1.0],[126,129,74,1.0],[126,129,75,1.0],[126,129,76,1.0],[126,129,77,1.0],[126,129,78,1.0],[126,129,79,1.0],[126,130,64,1.0],[126,130,65,1.0],[126,130,66,1.0],[126,130,67,1.0],[126,130,68,1.0],[126,130,69,1.0],[126,130,70,1.0],[126,130,71,1.0],[126,130,72,1.0],[126,130,73,1.0],[126,130,74,1.0],[126,130,75,1.0],[126,130,76,1.0],[126,130,77,1.0],[126,130,78,1.0],[126,130,79,1.0],[126,131,64,1.0],[126,131,65,1.0],[126,131,66,1.0],[126,131,67,1.0],[126,131,68,1.0],[126,131,69,1.0],[126,131,70,1.0],[126,131,71,1.0],[126,131,72,1.0],[126,131,73,1.0],[126,131,74,1.0],[126,131,75,1.0],[126,131,76,1.0],[126,131,77,1.0],[126,131,78,1.0],[126,131,79,1.0],[126,132,64,1.0],[126,132,65,1.0],[126,132,66,1.0],[126,132,67,1.0],[126,132,68,1.0],[126,132,69,1.0],[126,132,70,1.0],[126,132,71,1.0],[126,132,72,1.0],[126,132,73,1.0],[126,132,74,1.0],[126,132,75,1.0],[126,132,76,1.0],[126,132,77,1.0],[126,132,78,1.0],[126,132,79,1.0],[126,133,64,1.0],[126,133,65,1.0],[126,133,66,1.0],[126,133,67,1.0],[126,133,68,1.0],[126,133,69,1.0],[126,133,70,1.0],[126,133,71,1.0],[126,133,72,1.0],[126,133,73,1.0],[126,133,74,1.0],[126,133,75,1.0],[126,133,76,1.0],[126,133,77,1.0],[126,133,78,1.0],[126,133,79,1.0],[126,134,64,1.0],[126,134,65,1.0],[126,134,66,1.0],[126,134,67,1.0],[126,134,68,1.0],[126,134,69,1.0],[126,134,70,1.0],[126,134,71,1.0],[126,134,72,1.0],[126,134,73,1.0],[126,134,74,1.0],[126,134,75,1.0],[126,134,76,1.0],[126,134,77,1.0],[126,134,78,1.0],[126,134,79,1.0],[126,135,64,1.0],[126,135,65,1.0],[126,135,66,1.0],[126,135,67,1.0],[126,135,68,1.0],[126,135,69,1.0],[126,135,70,1.0],[126,135,71,1.0],[126,135,72,1.0],[126,135,73,1.0],[126,135,74,1.0],[126,135,75,1.0],[126,135,76,1.0],[126,135,77,1.0],[126,135,78,1.0],[126,135,79,1.0],[126,136,64,1.0],[126,136,65,1.0],[126,136,66,1.0],[126,136,67,1.0],[126,136,68,1.0],[126,136,69,1.0],[126,136,70,1.0],[126,136,71,1.0],[126,136,72,1.0],[126,136,73,1.0],[126,136,74,1.0],[126,136,75,1.0],[126,136,76,1.0],[126,136,77,1.0],[126,136,78,1.0],[126,136,79,1.0],[126,137,64,1.0],[126,137,65,1.0],[126,137,66,1.0],[126,137,67,1.0],[126,137,68,1.0],[126,137,69,1.0],[126,137,70,1.0],[126,137,71,1.0],[126,137,72,1.0],[126,137,73,1.0],[126,137,74,1.0],[126,137,75,1.0],[126,137,76,1.0],[126,137,77,1.0],[126,137,78,1.0],[126,137,79,1.0],[126,138,64,1.0],[126,138,65,1.0],[126,138,66,1.0],[126,138,67,1.0],[126,138,68,1.0],[126,138,69,1.0],[126,138,70,1.0],[126,138,71,1.0],[126,138,72,1.0],[126,138,73,1.0],[126,138,74,1.0],[126,138,75,1.0],[126,138,76,1.0],[126,138,77,1.0],[126,138,78,1.0],[126,138,79,1.0],[126,139,64,1.0],[126,139,65,1.0],[126,139,66,1.0],[126,139,67,1.0],[126,139,68,1.0],[126,139,69,1.0],[126,139,70,1.0],[126,139,71,1.0],[126,139,72,1.0],[126,139,73,1.0],[126,139,74,1.0],[126,139,75,1.0],[126,139,76,1.0],[126,139,77,1.0],[126,139,78,1.0],[126,139,79,1.0],[126,140,64,1.0],[126,140,65,1.0],[126,140,66,1.0],[126,140,67,1.0],[126,140,68,1.0],[126,140,69,1.0],[126,140,70,1.0],[126,140,71,1.0],[126,140,72,1.0],[126,140,73,1.0],[126,140,74,1.0],[126,140,75,1.0],[126,140,76,1.0],[126,140,77,1.0],[126,140,78,1.0],[126,140,79,1.0],[126,141,64,1.0],[126,141,65,1.0],[126,141,66,1.0],[126,141,67,1.0],[126,141,68,1.0],[126,141,69,1.0],[126,141,70,1.0],[126,141,71,1.0],[126,141,72,1.0],[126,141,73,1.0],[126,141,74,1.0],[126,141,75,1.0],[126,141,76,1.0],[126,141,77,1.0],[126,141,78,1.0],[126,141,79,1.0],[126,142,64,1.0],[126,142,65,1.0],[126,142,66,1.0],[126,142,67,1.0],[126,142,68,1.0],[126,142,69,1.0],[126,142,70,1.0],[126,142,71,1.0],[126,142,72,1.0],[126,142,73,1.0],[126,142,74,1.0],[126,142,75,1.0],[126,142,76,1.0],[126,142,77,1.0],[126,142,78,1.0],[126,142,79,1.0],[126,143,64,1.0],[126,143,65,1.0],[126,143,66,1.0],[126,143,67,1.0],[126,143,68,1.0],[126,143,69,1.0],[126,143,70,1.0],[126,143,71,1.0],[126,143,72,1.0],[126,143,73,1.0],[126,143,74,1.0],[126,143,75,1.0],[126,143,76,1.0],[126,143,77,1.0],[126,143,78,1.0],[126,143,79,1.0],[126,144,64,1.0],[126,144,65,1.0],[126,144,66,1.0],[126,144,67,1.0],[126,144,68,1.0],[126,144,69,1.0],[126,144,70,1.0],[126,144,71,1.0],[126,144,72,1.0],[126,144,73,1.0],[126,144,74,1.0],[126,144,75,1.0],[126,144,76,1.0],[126,144,77,1.0],[126,144,78,1.0],[126,144,79,1.0],[126,145,64,1.0],[126,145,65,1.0],[126,145,66,1.0],[126,145,67,1.0],[126,145,68,1.0],[126,145,69,1.0],[126,145,70,1.0],[126,145,71,1.0],[126,145,72,1.0],[126,145,73,1.0],[126,145,74,1.0],[126,145,75,1.0],[126,145,76,1.0],[126,145,77,1.0],[126,145,78,1.0],[126,145,79,1.0],[126,146,64,1.0],[126,146,65,1.0],[126,146,66,1.0],[126,146,67,1.0],[126,146,68,1.0],[126,146,69,1.0],[126,146,70,1.0],[126,146,71,1.0],[126,146,72,1.0],[126,146,73,1.0],[126,146,74,1.0],[126,146,75,1.0],[126,146,76,1.0],[126,146,77,1.0],[126,146,78,1.0],[126,146,79,1.0],[126,147,64,1.0],[126,147,65,1.0],[126,147,66,1.0],[126,147,67,1.0],[126,147,68,1.0],[126,147,69,1.0],[126,147,70,1.0],[126,147,71,1.0],[126,147,72,1.0],[126,147,73,1.0],[126,147,74,1.0],[126,147,75,1.0],[126,147,76,1.0],[126,147,77,1.0],[126,147,78,1.0],[126,147,79,1.0],[126,148,64,1.0],[126,148,65,1.0],[126,148,66,1.0],[126,148,67,1.0],[126,148,68,1.0],[126,148,69,1.0],[126,148,70,1.0],[126,148,71,1.0],[126,148,72,1.0],[126,148,73,1.0],[126,148,74,1.0],[126,148,75,1.0],[126,148,76,1.0],[126,148,77,1.0],[126,148,78,1.0],[126,148,79,1.0],[126,149,64,1.0],[126,149,65,1.0],[126,149,66,1.0],[126,149,67,1.0],[126,149,68,1.0],[126,149,69,1.0],[126,149,70,1.0],[126,149,71,1.0],[126,149,72,1.0],[126,149,73,1.0],[126,149,74,1.0],[126,149,75,1.0],[126,149,76,1.0],[126,149,77,1.0],[126,149,78,1.0],[126,149,79,1.0],[126,150,64,1.0],[126,150,65,1.0],[126,150,66,1.0],[126,150,67,1.0],[126,150,68,1.0],[126,150,69,1.0],[126,150,70,1.0],[126,150,71,1.0],[126,150,72,1.0],[126,150,73,1.0],[126,150,74,1.0],[126,150,75,1.0],[126,150,76,1.0],[126,150,77,1.0],[126,150,78,1.0],[126,150,79,1.0],[126,151,64,1.0],[126,151,65,1.0],[126,151,66,1.0],[126,151,67,1.0],[126,151,68,1.0],[126,151,69,1.0],[126,151,70,1.0],[126,151,71,1.0],[126,151,72,1.0],[126,151,73,1.0],[126,151,74,1.0],[126,151,75,1.0],[126,151,76,1.0],[126,151,77,1.0],[126,151,78,1.0],[126,151,79,1.0],[126,152,64,1.0],[126,152,65,1.0],[126,152,66,1.0],[126,152,67,1.0],[126,152,68,1.0],[126,152,69,1.0],[126,152,70,1.0],[126,152,71,1.0],[126,152,72,1.0],[126,152,73,1.0],[126,152,74,1.0],[126,152,75,1.0],[126,152,76,1.0],[126,152,77,1.0],[126,152,78,1.0],[126,152,79,1.0],[126,153,64,1.0],[126,153,65,1.0],[126,153,66,1.0],[126,153,67,1.0],[126,153,68,1.0],[126,153,69,1.0],[126,153,70,1.0],[126,153,71,1.0],[126,153,72,1.0],[126,153,73,1.0],[126,153,74,1.0],[126,153,75,1.0],[126,153,76,1.0],[126,153,77,1.0],[126,153,78,1.0],[126,153,79,1.0],[126,154,64,1.0],[126,154,65,1.0],[126,154,66,1.0],[126,154,67,1.0],[126,154,68,1.0],[126,154,69,1.0],[126,154,70,1.0],[126,154,71,1.0],[126,154,72,1.0],[126,154,73,1.0],[126,154,74,1.0],[126,154,75,1.0],[126,154,76,1.0],[126,154,77,1.0],[126,154,78,1.0],[126,154,79,1.0],[126,155,64,1.0],[126,155,65,1.0],[126,155,66,1.0],[126,155,67,1.0],[126,155,68,1.0],[126,155,69,1.0],[126,155,70,1.0],[126,155,71,1.0],[126,155,72,1.0],[126,155,73,1.0],[126,155,74,1.0],[126,155,75,1.0],[126,155,76,1.0],[126,155,77,1.0],[126,155,78,1.0],[126,155,79,1.0],[126,156,64,1.0],[126,156,65,1.0],[126,156,66,1.0],[126,156,67,1.0],[126,156,68,1.0],[126,156,69,1.0],[126,156,70,1.0],[126,156,71,1.0],[126,156,72,1.0],[126,156,73,1.0],[126,156,74,1.0],[126,156,75,1.0],[126,156,76,1.0],[126,156,77,1.0],[126,156,78,1.0],[126,156,79,1.0],[126,157,64,1.0],[126,157,65,1.0],[126,157,66,1.0],[126,157,67,1.0],[126,157,68,1.0],[126,157,69,1.0],[126,157,70,1.0],[126,157,71,1.0],[126,157,72,1.0],[126,157,73,1.0],[126,157,74,1.0],[126,157,75,1.0],[126,157,76,1.0],[126,157,77,1.0],[126,157,78,1.0],[126,157,79,1.0],[126,158,64,1.0],[126,158,65,1.0],[126,158,66,1.0],[126,158,67,1.0],[126,158,68,1.0],[126,158,69,1.0],[126,158,70,1.0],[126,158,71,1.0],[126,158,72,1.0],[126,158,73,1.0],[126,158,74,1.0],[126,158,75,1.0],[126,158,76,1.0],[126,158,77,1.0],[126,158,78,1.0],[126,158,79,1.0],[126,159,64,1.0],[126,159,65,1.0],[126,159,66,1.0],[126,159,67,1.0],[126,159,68,1.0],[126,159,69,1.0],[126,159,70,1.0],[126,159,71,1.0],[126,159,72,1.0],[126,159,73,1.0],[126,159,74,1.0],[126,159,75,1.0],[126,159,76,1.0],[126,159,77,1.0],[126,159,78,1.0],[126,159,79,1.0],[126,160,64,1.0],[126,160,65,1.0],[126,160,66,1.0],[126,160,67,1.0],[126,160,68,1.0],[126,160,69,1.0],[126,160,70,1.0],[126,160,71,1.0],[126,160,72,1.0],[126,160,73,1.0],[126,160,74,1.0],[126,160,75,1.0],[126,160,76,1.0],[126,160,77,1.0],[126,160,78,1.0],[126,160,79,1.0],[126,161,64,1.0],[126,161,65,1.0],[126,161,66,1.0],[126,161,67,1.0],[126,161,68,1.0],[126,161,69,1.0],[126,161,70,1.0],[126,161,71,1.0],[126,161,72,1.0],[126,161,73,1.0],[126,161,74,1.0],[126,161,75,1.0],[126,161,76,1.0],[126,161,77,1.0],[126,161,78,1.0],[126,161,79,1.0],[126,162,64,1.0],[126,162,65,1.0],[126,162,66,1.0],[126,162,67,1.0],[126,162,68,1.0],[126,162,69,1.0],[126,162,70,1.0],[126,162,71,1.0],[126,162,72,1.0],[126,162,73,1.0],[126,162,74,1.0],[126,162,75,1.0],[126,162,76,1.0],[126,162,77,1.0],[126,162,78,1.0],[126,162,79,1.0],[126,163,64,1.0],[126,163,65,1.0],[126,163,66,1.0],[126,163,67,1.0],[126,163,68,1.0],[126,163,69,1.0],[126,163,70,1.0],[126,163,71,1.0],[126,163,72,1.0],[126,163,73,1.0],[126,163,74,1.0],[126,163,75,1.0],[126,163,76,1.0],[126,163,77,1.0],[126,163,78,1.0],[126,163,79,1.0],[126,164,64,1.0],[126,164,65,1.0],[126,164,66,1.0],[126,164,67,1.0],[126,164,68,1.0],[126,164,69,1.0],[126,164,70,1.0],[126,164,71,1.0],[126,164,72,1.0],[126,164,73,1.0],[126,164,74,1.0],[126,164,75,1.0],[126,164,76,1.0],[126,164,77,1.0],[126,164,78,1.0],[126,164,79,1.0],[126,165,64,1.0],[126,165,65,1.0],[126,165,66,1.0],[126,165,67,1.0],[126,165,68,1.0],[126,165,69,1.0],[126,165,70,1.0],[126,165,71,1.0],[126,165,72,1.0],[126,165,73,1.0],[126,165,74,1.0],[126,165,75,1.0],[126,165,76,1.0],[126,165,77,1.0],[126,165,78,1.0],[126,165,79,1.0],[126,166,64,1.0],[126,166,65,1.0],[126,166,66,1.0],[126,166,67,1.0],[126,166,68,1.0],[126,166,69,1.0],[126,166,70,1.0],[126,166,71,1.0],[126,166,72,1.0],[126,166,73,1.0],[126,166,74,1.0],[126,166,75,1.0],[126,166,76,1.0],[126,166,77,1.0],[126,166,78,1.0],[126,166,79,1.0],[126,167,64,1.0],[126,167,65,1.0],[126,167,66,1.0],[126,167,67,1.0],[126,167,68,1.0],[126,167,69,1.0],[126,167,70,1.0],[126,167,71,1.0],[126,167,72,1.0],[126,167,73,1.0],[126,167,74,1.0],[126,167,75,1.0],[126,167,76,1.0],[126,167,77,1.0],[126,167,78,1.0],[126,167,79,1.0],[126,168,64,1.0],[126,168,65,1.0],[126,168,66,1.0],[126,168,67,1.0],[126,168,68,1.0],[126,168,69,1.0],[126,168,70,1.0],[126,168,71,1.0],[126,168,72,1.0],[126,168,73,1.0],[126,168,74,1.0],[126,168,75,1.0],[126,168,76,1.0],[126,168,77,1.0],[126,168,78,1.0],[126,168,79,1.0],[126,169,64,1.0],[126,169,65,1.0],[126,169,66,1.0],[126,169,67,1.0],[126,169,68,1.0],[126,169,69,1.0],[126,169,70,1.0],[126,169,71,1.0],[126,169,72,1.0],[126,169,73,1.0],[126,169,74,1.0],[126,169,75,1.0],[126,169,76,1.0],[126,169,77,1.0],[126,169,78,1.0],[126,169,79,1.0],[126,170,64,1.0],[126,170,65,1.0],[126,170,66,1.0],[126,170,67,1.0],[126,170,68,1.0],[126,170,69,1.0],[126,170,70,1.0],[126,170,71,1.0],[126,170,72,1.0],[126,170,73,1.0],[126,170,74,1.0],[126,170,75,1.0],[126,170,76,1.0],[126,170,77,1.0],[126,170,78,1.0],[126,170,79,1.0],[126,171,64,1.0],[126,171,65,1.0],[126,171,66,1.0],[126,171,67,1.0],[126,171,68,1.0],[126,171,69,1.0],[126,171,70,1.0],[126,171,71,1.0],[126,171,72,1.0],[126,171,73,1.0],[126,171,74,1.0],[126,171,75,1.0],[126,171,76,1.0],[126,171,77,1.0],[126,171,78,1.0],[126,171,79,1.0],[126,172,64,1.0],[126,172,65,1.0],[126,172,66,1.0],[126,172,67,1.0],[126,172,68,1.0],[126,172,69,1.0],[126,172,70,1.0],[126,172,71,1.0],[126,172,72,1.0],[126,172,73,1.0],[126,172,74,1.0],[126,172,75,1.0],[126,172,76,1.0],[126,172,77,1.0],[126,172,78,1.0],[126,172,79,1.0],[126,173,64,1.0],[126,173,65,1.0],[126,173,66,1.0],[126,173,67,1.0],[126,173,68,1.0],[126,173,69,1.0],[126,173,70,1.0],[126,173,71,1.0],[126,173,72,1.0],[126,173,73,1.0],[126,173,74,1.0],[126,173,75,1.0],[126,173,76,1.0],[126,173,77,1.0],[126,173,78,1.0],[126,173,79,1.0],[126,174,64,1.0],[126,174,65,1.0],[126,174,66,1.0],[126,174,67,1.0],[126,174,68,1.0],[126,174,69,1.0],[126,174,70,1.0],[126,174,71,1.0],[126,174,72,1.0],[126,174,73,1.0],[126,174,74,1.0],[126,174,75,1.0],[126,174,76,1.0],[126,174,77,1.0],[126,174,78,1.0],[126,174,79,1.0],[126,175,64,1.0],[126,175,65,1.0],[126,175,66,1.0],[126,175,67,1.0],[126,175,68,1.0],[126,175,69,1.0],[126,175,70,1.0],[126,175,71,1.0],[126,175,72,1.0],[126,175,73,1.0],[126,175,74,1.0],[126,175,75,1.0],[126,175,76,1.0],[126,175,77,1.0],[126,175,78,1.0],[126,175,79,1.0],[126,176,64,1.0],[126,176,65,1.0],[126,176,66,1.0],[126,176,67,1.0],[126,176,68,1.0],[126,176,69,1.0],[126,176,70,1.0],[126,176,71,1.0],[126,176,72,1.0],[126,176,73,1.0],[126,176,74,1.0],[126,176,75,1.0],[126,176,76,1.0],[126,176,77,1.0],[126,176,78,1.0],[126,176,79,1.0],[126,177,64,1.0],[126,177,65,1.0],[126,177,66,1.0],[126,177,67,1.0],[126,177,68,1.0],[126,177,69,1.0],[126,177,70,1.0],[126,177,71,1.0],[126,177,72,1.0],[126,177,73,1.0],[126,177,74,1.0],[126,177,75,1.0],[126,177,76,1.0],[126,177,77,1.0],[126,177,78,1.0],[126,177,79,1.0],[126,178,64,1.0],[126,178,65,1.0],[126,178,66,1.0],[126,178,67,1.0],[126,178,68,1.0],[126,178,69,1.0],[126,178,70,1.0],[126,178,71,1.0],[126,178,72,1.0],[126,178,73,1.0],[126,178,74,1.0],[126,178,75,1.0],[126,178,76,1.0],[126,178,77,1.0],[126,178,78,1.0],[126,178,79,1.0],[126,179,64,1.0],[126,179,65,1.0],[126,179,66,1.0],[126,179,67,1.0],[126,179,68,1.0],[126,179,69,1.0],[126,179,70,1.0],[126,179,71,1.0],[126,179,72,1.0],[126,179,73,1.0],[126,179,74,1.0],[126,179,75,1.0],[126,179,76,1.0],[126,179,77,1.0],[126,179,78,1.0],[126,179,79,1.0],[126,180,64,1.0],[126,180,65,1.0],[126,180,66,1.0],[126,180,67,1.0],[126,180,68,1.0],[126,180,69,1.0],[126,180,70,1.0],[126,180,71,1.0],[126,180,72,1.0],[126,180,73,1.0],[126,180,74,1.0],[126,180,75,1.0],[126,180,76,1.0],[126,180,77,1.0],[126,180,78,1.0],[126,180,79,1.0],[126,181,64,1.0],[126,181,65,1.0],[126,181,66,1.0],[126,181,67,1.0],[126,181,68,1.0],[126,181,69,1.0],[126,181,70,1.0],[126,181,71,1.0],[126,181,72,1.0],[126,181,73,1.0],[126,181,74,1.0],[126,181,75,1.0],[126,181,76,1.0],[126,181,77,1.0],[126,181,78,1.0],[126,181,79,1.0],[126,182,64,1.0],[126,182,65,1.0],[126,182,66,1.0],[126,182,67,1.0],[126,182,68,1.0],[126,182,69,1.0],[126,182,70,1.0],[126,182,71,1.0],[126,182,72,1.0],[126,182,73,1.0],[126,182,74,1.0],[126,182,75,1.0],[126,182,76,1.0],[126,182,77,1.0],[126,182,78,1.0],[126,182,79,1.0],[126,183,64,1.0],[126,183,65,1.0],[126,183,66,1.0],[126,183,67,1.0],[126,183,68,1.0],[126,183,69,1.0],[126,183,70,1.0],[126,183,71,1.0],[126,183,72,1.0],[126,183,73,1.0],[126,183,74,1.0],[126,183,75,1.0],[126,183,76,1.0],[126,183,77,1.0],[126,183,78,1.0],[126,183,79,1.0],[126,184,64,1.0],[126,184,65,1.0],[126,184,66,1.0],[126,184,67,1.0],[126,184,68,1.0],[126,184,69,1.0],[126,184,70,1.0],[126,184,71,1.0],[126,184,72,1.0],[126,184,73,1.0],[126,184,74,1.0],[126,184,75,1.0],[126,184,76,1.0],[126,184,77,1.0],[126,184,78,1.0],[126,184,79,1.0],[126,185,64,1.0],[126,185,65,1.0],[126,185,66,1.0],[126,185,67,1.0],[126,185,68,1.0],[126,185,69,1.0],[126,185,70,1.0],[126,185,71,1.0],[126,185,72,1.0],[126,185,73,1.0],[126,185,74,1.0],[126,185,75,1.0],[126,185,76,1.0],[126,185,77,1.0],[126,185,78,1.0],[126,185,79,1.0],[126,186,64,1.0],[126,186,65,1.0],[126,186,66,1.0],[126,186,67,1.0],[126,186,68,1.0],[126,186,69,1.0],[126,186,70,1.0],[126,186,71,1.0],[126,186,72,1.0],[126,186,73,1.0],[126,186,74,1.0],[126,186,75,1.0],[126,186,76,1.0],[126,186,77,1.0],[126,186,78,1.0],[126,186,79,1.0],[126,187,64,1.0],[126,187,65,1.0],[126,187,66,1.0],[126,187,67,1.0],[126,187,68,1.0],[126,187,69,1.0],[126,187,70,1.0],[126,187,71,1.0],[126,187,72,1.0],[126,187,73,1.0],[126,187,74,1.0],[126,187,75,1.0],[126,187,76,1.0],[126,187,77,1.0],[126,187,78,1.0],[126,187,79,1.0],[126,188,64,1.0],[126,188,65,1.0],[126,188,66,1.0],[126,188,67,1.0],[126,188,68,1.0],[126,188,69,1.0],[126,188,70,1.0],[126,188,71,1.0],[126,188,72,1.0],[126,188,73,1.0],[126,188,74,1.0],[126,188,75,1.0],[126,188,76,1.0],[126,188,77,1.0],[126,188,78,1.0],[126,188,79,1.0],[126,189,64,1.0],[126,189,65,1.0],[126,189,66,1.0],[126,189,67,1.0],[126,189,68,1.0],[126,189,69,1.0],[126,189,70,1.0],[126,189,71,1.0],[126,189,72,1.0],[126,189,73,1.0],[126,189,74,1.0],[126,189,75,1.0],[126,189,76,1.0],[126,189,77,1.0],[126,189,78,1.0],[126,189,79,1.0],[126,190,64,1.0],[126,190,65,1.0],[126,190,66,1.0],[126,190,67,1.0],[126,190,68,1.0],[126,190,69,1.0],[126,190,70,1.0],[126,190,71,1.0],[126,190,72,1.0],[126,190,73,1.0],[126,190,74,1.0],[126,190,75,1.0],[126,190,76,1.0],[126,190,77,1.0],[126,190,78,1.0],[126,190,79,1.0],[126,191,64,1.0],[126,191,65,1.0],[126,191,66,1.0],[126,191,67,1.0],[126,191,68,1.0],[126,191,69,1.0],[126,191,70,1.0],[126,191,71,1.0],[126,191,72,1.0],[126,191,73,1.0],[126,191,74,1.0],[126,191,75,1.0],[126,191,76,1.0],[126,191,77,1.0],[126,191,78,1.0],[126,191,79,1.0],[126,192,64,1.0],[126,192,65,1.0],[126,192,66,1.0],[126,192,67,1.0],[126,192,68,1.0],[126,192,69,1.0],[126,192,70,1.0],[126,192,71,1.0],[126,192,72,1.0],[126,192,73,1.0],[126,192,74,1.0],[126,192,75,1.0],[126,192,76,1.0],[126,192,77,1.0],[126,192,78,1.0],[126,192,79,1.0],[126,193,64,1.0],[126,193,65,1.0],[126,193,66,1.0],[126,193,67,1.0],[126,193,68,1.0],[126,193,69,1.0],[126,193,70,1.0],[126,193,71,1.0],[126,193,72,1.0],[126,193,73,1.0],[126,193,74,1.0],[126,193,75,1.0],[126,193,76,1.0],[126,193,77,1.0],[126,193,78,1.0],[126,193,79,1.0],[126,194,64,1.0],[126,194,65,1.0],[126,194,66,1.0],[126,194,67,1.0],[126,194,68,1.0],[126,194,69,1.0],[126,194,70,1.0],[126,194,71,1.0],[126,194,72,1.0],[126,194,73,1.0],[126,194,74,1.0],[126,194,75,1.0],[126,194,76,1.0],[126,194,77,1.0],[126,194,78,1.0],[126,194,79,1.0],[126,195,64,1.0],[126,195,65,1.0],[126,195,66,1.0],[126,195,67,1.0],[126,195,68,1.0],[126,195,69,1.0],[126,195,70,1.0],[126,195,71,1.0],[126,195,72,1.0],[126,195,73,1.0],[126,195,74,1.0],[126,195,75,1.0],[126,195,76,1.0],[126,195,77,1.0],[126,195,78,1.0],[126,195,79,1.0],[126,196,64,1.0],[126,196,65,1.0],[126,196,66,1.0],[126,196,67,1.0],[126,196,68,1.0],[126,196,69,1.0],[126,196,70,1.0],[126,196,71,1.0],[126,196,72,1.0],[126,196,73,1.0],[126,196,74,1.0],[126,196,75,1.0],[126,196,76,1.0],[126,196,77,1.0],[126,196,78,1.0],[126,196,79,1.0],[126,197,64,1.0],[126,197,65,1.0],[126,197,66,1.0],[126,197,67,1.0],[126,197,68,1.0],[126,197,69,1.0],[126,197,70,1.0],[126,197,71,1.0],[126,197,72,1.0],[126,197,73,1.0],[126,197,74,1.0],[126,197,75,1.0],[126,197,76,1.0],[126,197,77,1.0],[126,197,78,1.0],[126,197,79,1.0],[126,198,64,1.0],[126,198,65,1.0],[126,198,66,1.0],[126,198,67,1.0],[126,198,68,1.0],[126,198,69,1.0],[126,198,70,1.0],[126,198,71,1.0],[126,198,72,1.0],[126,198,73,1.0],[126,198,74,1.0],[126,198,75,1.0],[126,198,76,1.0],[126,198,77,1.0],[126,198,78,1.0],[126,198,79,1.0],[126,199,64,1.0],[126,199,65,1.0],[126,199,66,1.0],[126,199,67,1.0],[126,199,68,1.0],[126,199,69,1.0],[126,199,70,1.0],[126,199,71,1.0],[126,199,72,1.0],[126,199,73,1.0],[126,199,74,1.0],[126,199,75,1.0],[126,199,76,1.0],[126,199,77,1.0],[126,199,78,1.0],[126,199,79,1.0],[126,200,64,1.0],[126,200,65,1.0],[126,200,66,1.0],[126,200,67,1.0],[126,200,68,1.0],[126,200,69,1.0],[126,200,70,1.0],[126,200,71,1.0],[126,200,72,1.0],[126,200,73,1.0],[126,200,74,1.0],[126,200,75,1.0],[126,200,76,1.0],[126,200,77,1.0],[126,200,78,1.0],[126,200,79,1.0],[126,201,64,1.0],[126,201,65,1.0],[126,201,66,1.0],[126,201,67,1.0],[126,201,68,1.0],[126,201,69,1.0],[126,201,70,1.0],[126,201,71,1.0],[126,201,72,1.0],[126,201,73,1.0],[126,201,74,1.0],[126,201,75,1.0],[126,201,76,1.0],[126,201,77,1.0],[126,201,78,1.0],[126,201,79,1.0],[126,202,64,1.0],[126,202,65,1.0],[126,202,66,1.0],[126,202,67,1.0],[126,202,68,1.0],[126,202,69,1.0],[126,202,70,1.0],[126,202,71,1.0],[126,202,72,1.0],[126,202,73,1.0],[126,202,74,1.0],[126,202,75,1.0],[126,202,76,1.0],[126,202,77,1.0],[126,202,78,1.0],[126,202,79,1.0],[126,203,64,1.0],[126,203,65,1.0],[126,203,66,1.0],[126,203,67,1.0],[126,203,68,1.0],[126,203,69,1.0],[126,203,70,1.0],[126,203,71,1.0],[126,203,72,1.0],[126,203,73,1.0],[126,203,74,1.0],[126,203,75,1.0],[126,203,76,1.0],[126,203,77,1.0],[126,203,78,1.0],[126,203,79,1.0],[126,204,64,1.0],[126,204,65,1.0],[126,204,66,1.0],[126,204,67,1.0],[126,204,68,1.0],[126,204,69,1.0],[126,204,70,1.0],[126,204,71,1.0],[126,204,72,1.0],[126,204,73,1.0],[126,204,74,1.0],[126,204,75,1.0],[126,204,76,1.0],[126,204,77,1.0],[126,204,78,1.0],[126,204,79,1.0],[126,205,64,1.0],[126,205,65,1.0],[126,205,66,1.0],[126,205,67,1.0],[126,205,68,1.0],[126,205,69,1.0],[126,205,70,1.0],[126,205,71,1.0],[126,205,72,1.0],[126,205,73,1.0],[126,205,74,1.0],[126,205,75,1.0],[126,205,76,1.0],[126,205,77,1.0],[126,205,78,1.0],[126,205,79,1.0],[126,206,64,1.0],[126,206,65,1.0],[126,206,66,1.0],[126,206,67,1.0],[126,206,68,1.0],[126,206,69,1.0],[126,206,70,1.0],[126,206,71,1.0],[126,206,72,1.0],[126,206,73,1.0],[126,206,74,1.0],[126,206,75,1.0],[126,206,76,1.0],[126,206,77,1.0],[126,206,78,1.0],[126,206,79,1.0],[126,207,64,1.0],[126,207,65,1.0],[126,207,66,1.0],[126,207,67,1.0],[126,207,68,1.0],[126,207,69,1.0],[126,207,70,1.0],[126,207,71,1.0],[126,207,72,1.0],[126,207,73,1.0],[126,207,74,1.0],[126,207,75,1.0],[126,207,76,1.0],[126,207,77,1.0],[126,207,78,1.0],[126,207,79,1.0],[126,208,64,1.0],[126,208,65,1.0],[126,208,66,1.0],[126,208,67,1.0],[126,208,68,1.0],[126,208,69,1.0],[126,208,70,1.0],[126,208,71,1.0],[126,208,72,1.0],[126,208,73,1.0],[126,208,74,1.0],[126,208,75,1.0],[126,208,76,1.0],[126,208,77,1.0],[126,208,78,1.0],[126,208,79,1.0],[126,209,64,1.0],[126,209,65,1.0],[126,209,66,1.0],[126,209,67,1.0],[126,209,68,1.0],[126,209,69,1.0],[126,209,70,1.0],[126,209,71,1.0],[126,209,72,1.0],[126,209,73,1.0],[126,209,74,1.0],[126,209,75,1.0],[126,209,76,1.0],[126,209,77,1.0],[126,209,78,1.0],[126,209,79,1.0],[126,210,64,1.0],[126,210,65,1.0],[126,210,66,1.0],[126,210,67,1.0],[126,210,68,1.0],[126,210,69,1.0],[126,210,70,1.0],[126,210,71,1.0],[126,210,72,1.0],[126,210,73,1.0],[126,210,74,1.0],[126,210,75,1.0],[126,210,76,1.0],[126,210,77,1.0],[126,210,78,1.0],[126,210,79,1.0],[126,211,64,1.0],[126,211,65,1.0],[126,211,66,1.0],[126,211,67,1.0],[126,211,68,1.0],[126,211,69,1.0],[126,211,70,1.0],[126,211,71,1.0],[126,211,72,1.0],[126,211,73,1.0],[126,211,74,1.0],[126,211,75,1.0],[126,211,76,1.0],[126,211,77,1.0],[126,211,78,1.0],[126,211,79,1.0],[126,212,64,1.0],[126,212,65,1.0],[126,212,66,1.0],[126,212,67,1.0],[126,212,68,1.0],[126,212,69,1.0],[126,212,70,1.0],[126,212,71,1.0],[126,212,72,1.0],[126,212,73,1.0],[126,212,74,1.0],[126,212,75,1.0],[126,212,76,1.0],[126,212,77,1.0],[126,212,78,1.0],[126,212,79,1.0],[126,213,64,1.0],[126,213,65,1.0],[126,213,66,1.0],[126,213,67,1.0],[126,213,68,1.0],[126,213,69,1.0],[126,213,70,1.0],[126,213,71,1.0],[126,213,72,1.0],[126,213,73,1.0],[126,213,74,1.0],[126,213,75,1.0],[126,213,76,1.0],[126,213,77,1.0],[126,213,78,1.0],[126,213,79,1.0],[126,214,64,1.0],[126,214,65,1.0],[126,214,66,1.0],[126,214,67,1.0],[126,214,68,1.0],[126,214,69,1.0],[126,214,70,1.0],[126,214,71,1.0],[126,214,72,1.0],[126,214,73,1.0],[126,214,74,1.0],[126,214,75,1.0],[126,214,76,1.0],[126,214,77,1.0],[126,214,78,1.0],[126,214,79,1.0],[126,215,64,1.0],[126,215,65,1.0],[126,215,66,1.0],[126,215,67,1.0],[126,215,68,1.0],[126,215,69,1.0],[126,215,70,1.0],[126,215,71,1.0],[126,215,72,1.0],[126,215,73,1.0],[126,215,74,1.0],[126,215,75,1.0],[126,215,76,1.0],[126,215,77,1.0],[126,215,78,1.0],[126,215,79,1.0],[126,216,64,1.0],[126,216,65,1.0],[126,216,66,1.0],[126,216,67,1.0],[126,216,68,1.0],[126,216,69,1.0],[126,216,70,1.0],[126,216,71,1.0],[126,216,72,1.0],[126,216,73,1.0],[126,216,74,1.0],[126,216,75,1.0],[126,216,76,1.0],[126,216,77,1.0],[126,216,78,1.0],[126,216,79,1.0],[126,217,64,1.0],[126,217,65,1.0],[126,217,66,1.0],[126,217,67,1.0],[126,217,68,1.0],[126,217,69,1.0],[126,217,70,1.0],[126,217,71,1.0],[126,217,72,1.0],[126,217,73,1.0],[126,217,74,1.0],[126,217,75,1.0],[126,217,76,1.0],[126,217,77,1.0],[126,217,78,1.0],[126,217,79,1.0],[126,218,64,1.0],[126,218,65,1.0],[126,218,66,1.0],[126,218,67,1.0],[126,218,68,1.0],[126,218,69,1.0],[126,218,70,1.0],[126,218,71,1.0],[126,218,72,1.0],[126,218,73,1.0],[126,218,74,1.0],[126,218,75,1.0],[126,218,76,1.0],[126,218,77,1.0],[126,218,78,1.0],[126,218,79,1.0],[126,219,64,1.0],[126,219,65,1.0],[126,219,66,1.0],[126,219,67,1.0],[126,219,68,1.0],[126,219,69,1.0],[126,219,70,1.0],[126,219,71,1.0],[126,219,72,1.0],[126,219,73,1.0],[126,219,74,1.0],[126,219,75,1.0],[126,219,76,1.0],[126,219,77,1.0],[126,219,78,1.0],[126,219,79,1.0],[126,220,64,1.0],[126,220,65,1.0],[126,220,66,1.0],[126,220,67,1.0],[126,220,68,1.0],[126,220,69,1.0],[126,220,70,1.0],[126,220,71,1.0],[126,220,72,1.0],[126,220,73,1.0],[126,220,74,1.0],[126,220,75,1.0],[126,220,76,1.0],[126,220,77,1.0],[126,220,78,1.0],[126,220,79,1.0],[126,221,64,1.0],[126,221,65,1.0],[126,221,66,1.0],[126,221,67,1.0],[126,221,68,1.0],[126,221,69,1.0],[126,221,70,1.0],[126,221,71,1.0],[126,221,72,1.0],[126,221,73,1.0],[126,221,74,1.0],[126,221,75,1.0],[126,221,76,1.0],[126,221,77,1.0],[126,221,78,1.0],[126,221,79,1.0],[126,222,64,1.0],[126,222,65,1.0],[126,222,66,1.0],[126,222,67,1.0],[126,222,68,1.0],[126,222,69,1.0],[126,222,70,1.0],[126,222,71,1.0],[126,222,72,1.0],[126,222,73,1.0],[126,222,74,1.0],[126,222,75,1.0],[126,222,76,1.0],[126,222,77,1.0],[126,222,78,1.0],[126,222,79,1.0],[126,223,64,1.0],[126,223,65,1.0],[126,223,66,1.0],[126,223,67,1.0],[126,223,68,1.0],[126,223,69,1.0],[126,223,70,1.0],[126,223,71,1.0],[126,223,72,1.0],[126,223,73,1.0],[126,223,74,1.0],[126,223,75,1.0],[126,223,76,1.0],[126,223,77,1.0],[126,223,78,1.0],[126,223,79,1.0],[126,224,64,1.0],[126,224,65,1.0],[126,224,66,1.0],[126,224,67,1.0],[126,224,68,1.0],[126,224,69,1.0],[126,224,70,1.0],[126,224,71,1.0],[126,224,72,1.0],[126,224,73,1.0],[126,224,74,1.0],[126,224,75,1.0],[126,224,76,1.0],[126,224,77,1.0],[126,224,78,1.0],[126,224,79,1.0],[126,225,64,1.0],[126,225,65,1.0],[126,225,66,1.0],[126,225,67,1.0],[126,225,68,1.0],[126,225,69,1.0],[126,225,70,1.0],[126,225,71,1.0],[126,225,72,1.0],[126,225,73,1.0],[126,225,74,1.0],[126,225,75,1.0],[126,225,76,1.0],[126,225,77,1.0],[126,225,78,1.0],[126,225,79,1.0],[126,226,64,1.0],[126,226,65,1.0],[126,226,66,1.0],[126,226,67,1.0],[126,226,68,1.0],[126,226,69,1.0],[126,226,70,1.0],[126,226,71,1.0],[126,226,72,1.0],[126,226,73,1.0],[126,226,74,1.0],[126,226,75,1.0],[126,226,76,1.0],[126,226,77,1.0],[126,226,78,1.0],[126,226,79,1.0],[126,227,64,1.0],[126,227,65,1.0],[126,227,66,1.0],[126,227,67,1.0],[126,227,68,1.0],[126,227,69,1.0],[126,227,70,1.0],[126,227,71,1.0],[126,227,72,1.0],[126,227,73,1.0],[126,227,74,1.0],[126,227,75,1.0],[126,227,76,1.0],[126,227,77,1.0],[126,227,78,1.0],[126,227,79,1.0],[126,228,64,1.0],[126,228,65,1.0],[126,228,66,1.0],[126,228,67,1.0],[126,228,68,1.0],[126,228,69,1.0],[126,228,70,1.0],[126,228,71,1.0],[126,228,72,1.0],[126,228,73,1.0],[126,228,74,1.0],[126,228,75,1.0],[126,228,76,1.0],[126,228,77,1.0],[126,228,78,1.0],[126,228,79,1.0],[126,229,64,1.0],[126,229,65,1.0],[126,229,66,1.0],[126,229,67,1.0],[126,229,68,1.0],[126,229,69,1.0],[126,229,70,1.0],[126,229,71,1.0],[126,229,72,1.0],[126,229,73,1.0],[126,229,74,1.0],[126,229,75,1.0],[126,229,76,1.0],[126,229,77,1.0],[126,229,78,1.0],[126,229,79,1.0],[126,230,64,1.0],[126,230,65,1.0],[126,230,66,1.0],[126,230,67,1.0],[126,230,68,1.0],[126,230,69,1.0],[126,230,70,1.0],[126,230,71,1.0],[126,230,72,1.0],[126,230,73,1.0],[126,230,74,1.0],[126,230,75,1.0],[126,230,76,1.0],[126,230,77,1.0],[126,230,78,1.0],[126,230,79,1.0],[126,231,64,1.0],[126,231,65,1.0],[126,231,66,1.0],[126,231,67,1.0],[126,231,68,1.0],[126,231,69,1.0],[126,231,70,1.0],[126,231,71,1.0],[126,231,72,1.0],[126,231,73,1.0],[126,231,74,1.0],[126,231,75,1.0],[126,231,76,1.0],[126,231,77,1.0],[126,231,78,1.0],[126,231,79,1.0],[126,232,64,1.0],[126,232,65,1.0],[126,232,66,1.0],[126,232,67,1.0],[126,232,68,1.0],[126,232,69,1.0],[126,232,70,1.0],[126,232,71,1.0],[126,232,72,1.0],[126,232,73,1.0],[126,232,74,1.0],[126,232,75,1.0],[126,232,76,1.0],[126,232,77,1.0],[126,232,78,1.0],[126,232,79,1.0],[126,233,64,1.0],[126,233,65,1.0],[126,233,66,1.0],[126,233,67,1.0],[126,233,68,1.0],[126,233,69,1.0],[126,233,70,1.0],[126,233,71,1.0],[126,233,72,1.0],[126,233,73,1.0],[126,233,74,1.0],[126,233,75,1.0],[126,233,76,1.0],[126,233,77,1.0],[126,233,78,1.0],[126,233,79,1.0],[126,234,64,1.0],[126,234,65,1.0],[126,234,66,1.0],[126,234,67,1.0],[126,234,68,1.0],[126,234,69,1.0],[126,234,70,1.0],[126,234,71,1.0],[126,234,72,1.0],[126,234,73,1.0],[126,234,74,1.0],[126,234,75,1.0],[126,234,76,1.0],[126,234,77,1.0],[126,234,78,1.0],[126,234,79,1.0],[126,235,64,1.0],[126,235,65,1.0],[126,235,66,1.0],[126,235,67,1.0],[126,235,68,1.0],[126,235,69,1.0],[126,235,70,1.0],[126,235,71,1.0],[126,235,72,1.0],[126,235,73,1.0],[126,235,74,1.0],[126,235,75,1.0],[126,235,76,1.0],[126,235,77,1.0],[126,235,78,1.0],[126,235,79,1.0],[126,236,64,1.0],[126,236,65,1.0],[126,236,66,1.0],[126,236,67,1.0],[126,236,68,1.0],[126,236,69,1.0],[126,236,70,1.0],[126,236,71,1.0],[126,236,72,1.0],[126,236,73,1.0],[126,236,74,1.0],[126,236,75,1.0],[126,236,76,1.0],[126,236,77,1.0],[126,236,78,1.0],[126,236,79,1.0],[126,237,64,1.0],[126,237,65,1.0],[126,237,66,1.0],[126,237,67,1.0],[126,237,68,1.0],[126,237,69,1.0],[126,237,70,1.0],[126,237,71,1.0],[126,237,72,1.0],[126,237,73,1.0],[126,237,74,1.0],[126,237,75,1.0],[126,237,76,1.0],[126,237,77,1.0],[126,237,78,1.0],[126,237,79,1.0],[126,238,64,1.0],[126,238,65,1.0],[126,238,66,1.0],[126,238,67,1.0],[126,238,68,1.0],[126,238,69,1.0],[126,238,70,1.0],[126,238,71,1.0],[126,238,72,1.0],[126,238,73,1.0],[126,238,74,1.0],[126,238,75,1.0],[126,238,76,1.0],[126,238,77,1.0],[126,238,78,1.0],[126,238,79,1.0],[126,239,64,1.0],[126,239,65,1.0],[126,239,66,1.0],[126,239,67,1.0],[126,239,68,1.0],[126,239,69,1.0],[126,239,70,1.0],[126,239,71,1.0],[126,239,72,1.0],[126,239,73,1.0],[126,239,74,1.0],[126,239,75,1.0],[126,239,76,1.0],[126,239,77,1.0],[126,239,78,1.0],[126,239,79,1.0],[126,240,64,1.0],[126,240,65,1.0],[126,240,66,1.0],[126,240,67,1.0],[126,240,68,1.0],[126,240,69,1.0],[126,240,70,1.0],[126,240,71,1.0],[126,240,72,1.0],[126,240,73,1.0],[126,240,74,1.0],[126,240,75,1.0],[126,240,76,1.0],[126,240,77,1.0],[126,240,78,1.0],[126,240,79,1.0],[126,241,64,1.0],[126,241,65,1.0],[126,241,66,1.0],[126,241,67,1.0],[126,241,68,1.0],[126,241,69,1.0],[126,241,70,1.0],[126,241,71,1.0],[126,241,72,1.0],[126,241,73,1.0],[126,241,74,1.0],[126,241,75,1.0],[126,241,76,1.0],[126,241,77,1.0],[126,241,78,1.0],[126,241,79,1.0],[126,242,64,1.0],[126,242,65,1.0],[126,242,66,1.0],[126,242,67,1.0],[126,242,68,1.0],[126,242,69,1.0],[126,242,70,1.0],[126,242,71,1.0],[126,242,72,1.0],[126,242,73,1.0],[126,242,74,1.0],[126,242,75,1.0],[126,242,76,1.0],[126,242,77,1.0],[126,242,78,1.0],[126,242,79,1.0],[126,243,64,1.0],[126,243,65,1.0],[126,243,66,1.0],[126,243,67,1.0],[126,243,68,1.0],[126,243,69,1.0],[126,243,70,1.0],[126,243,71,1.0],[126,243,72,1.0],[126,243,73,1.0],[126,243,74,1.0],[126,243,75,1.0],[126,243,76,1.0],[126,243,77,1.0],[126,243,78,1.0],[126,243,79,1.0],[126,244,64,1.0],[126,244,65,1.0],[126,244,66,1.0],[126,244,67,1.0],[126,244,68,1.0],[126,244,69,1.0],[126,244,70,1.0],[126,244,71,1.0],[126,244,72,1.0],[126,244,73,1.0],[126,244,74,1.0],[126,244,75,1.0],[126,244,76,1.0],[126,244,77,1.0],[126,244,78,1.0],[126,244,79,1.0],[126,245,64,1.0],[126,245,65,1.0],[126,245,66,1.0],[126,245,67,1.0],[126,245,68,1.0],[126,245,69,1.0],[126,245,70,1.0],[126,245,71,1.0],[126,245,72,1.0],[126,245,73,1.0],[126,245,74,1.0],[126,245,75,1.0],[126,245,76,1.0],[126,245,77,1.0],[126,245,78,1.0],[126,245,79,1.0],[126,246,64,1.0],[126,246,65,1.0],[126,246,66,1.0],[126,246,67,1.0],[126,246,68,1.0],[126,246,69,1.0],[126,246,70,1.0],[126,246,71,1.0],[126,246,72,1.0],[126,246,73,1.0],[126,246,74,1.0],[126,246,75,1.0],[126,246,76,1.0],[126,246,77,1.0],[126,246,78,1.0],[126,246,79,1.0],[126,247,64,1.0],[126,247,65,1.0],[126,247,66,1.0],[126,247,67,1.0],[126,247,68,1.0],[126,247,69,1.0],[126,247,70,1.0],[126,247,71,1.0],[126,247,72,1.0],[126,247,73,1.0],[126,247,74,1.0],[126,247,75,1.0],[126,247,76,1.0],[126,247,77,1.0],[126,247,78,1.0],[126,247,79,1.0],[126,248,64,1.0],[126,248,65,1.0],[126,248,66,1.0],[126,248,67,1.0],[126,248,68,1.0],[126,248,69,1.0],[126,248,70,1.0],[126,248,71,1.0],[126,248,72,1.0],[126,248,73,1.0],[126,248,74,1.0],[126,248,75,1.0],[126,248,76,1.0],[126,248,77,1.0],[126,248,78,1.0],[126,248,79,1.0],[126,249,64,1.0],[126,249,65,1.0],[126,249,66,1.0],[126,249,67,1.0],[126,249,68,1.0],[126,249,69,1.0],[126,249,70,1.0],[126,249,71,1.0],[126,249,72,1.0],[126,249,73,1.0],[126,249,74,1.0],[126,249,75,1.0],[126,249,76,1.0],[126,249,77,1.0],[126,249,78,1.0],[126,249,79,1.0],[126,250,64,1.0],[126,250,65,1.0],[126,250,66,1.0],[126,250,67,1.0],[126,250,68,1.0],[126,250,69,1.0],[126,250,70,1.0],[126,250,71,1.0],[126,250,72,1.0],[126,250,73,1.0],[126,250,74,1.0],[126,250,75,1.0],[126,250,76,1.0],[126,250,77,1.0],[126,250,78,1.0],[126,250,79,1.0],[126,251,64,1.0],[126,251,65,1.0],[126,251,66,1.0],[126,251,67,1.0],[126,251,68,1.0],[126,251,69,1.0],[126,251,70,1.0],[126,251,71,1.0],[126,251,72,1.0],[126,251,73,1.0],[126,251,74,1.0],[126,251,75,1.0],[126,251,76,1.0],[126,251,77,1.0],[126,251,78,1.0],[126,251,79,1.0],[126,252,64,1.0],[126,252,65,1.0],[126,252,66,1.0],[126,252,67,1.0],[126,252,68,1.0],[126,252,69,1.0],[126,252,70,1.0],[126,252,71,1.0],[126,252,72,1.0],[126,252,73,1.0],[126,252,74,1.0],[126,252,75,1.0],[126,252,76,1.0],[126,252,77,1.0],[126,252,78,1.0],[126,252,79,1.0],[126,253,64,1.0],[126,253,65,1.0],[126,253,66,1.0],[126,253,67,1.0],[126,253,68,1.0],[126,253,69,1.0],[126,253,70,1.0],[126,253,71,1.0],[126,253,72,1.0],[126,253,73,1.0],[126,253,74,1.0],[126,253,75,1.0],[126,253,76,1.0],[126,253,77,1.0],[126,253,78,1.0],[126,253,79,1.0],[126,254,64,1.0],[126,254,65,1.0],[126,254,66,1.0],[126,254,67,1.0],[126,254,68,1.0],[126,254,69,1.0],[126,254,70,1.0],[126,254,71,1.0],[126,254,72,1.0],[126,254,73,1.0],[126,254,74,1.0],[126,254,75,1.0],[126,254,76,1.0],[126,254,77,1.0],[126,254,78,1.0],[126,254,79,1.0],[126,255,64,1.0],[126,255,65,1.0],[126,255,66,1.0],[126,255,67,1.0],[126,255,68,1.0],[126,255,69,1.0],[126,255,70,1.0],[126,255,71,1.0],[126,255,72,1.0],[126,255,73,1.0],[126,255,74,1.0],[126,255,75,1.0],[126,255,76,1.0],[126,255,77,1.0],[126,255,78,1.0],[126,255,79,1.0],[126,256,64,1.0],[126,256,65,1.0],[126,256,66,1.0],[126,256,67,1.0],[126,256,68,1.0],[126,256,69,1.0],[126,256,70,1.0],[126,256,71,1.0],[126,256,72,1.0],[126,256,73,1.0],[126,256,74,1.0],[126,256,75,1.0],[126,256,76,1.0],[126,256,77,1.0],[126,256,78,1.0],[126,256,79,1.0],[126,257,64,1.0],[126,257,65,1.0],[126,257,66,1.0],[126,257,67,1.0],[126,257,68,1.0],[126,257,69,1.0],[126,257,70,1.0],[126,257,71,1.0],[126,257,72,1.0],[126,257,73,1.0],[126,257,74,1.0],[126,257,75,1.0],[126,257,76,1.0],[126,257,77,1.0],[126,257,78,1.0],[126,257,79,1.0],[126,258,64,1.0],[126,258,65,1.0],[126,258,66,1.0],[126,258,67,1.0],[126,258,68,1.0],[126,258,69,1.0],[126,258,70,1.0],[126,258,71,1.0],[126,258,72,1.0],[126,258,73,1.0],[126,258,74,1.0],[126,258,75,1.0],[126,258,76,1.0],[126,258,77,1.0],[126,258,78,1.0],[126,258,79,1.0],[126,259,64,1.0],[126,259,65,1.0],[126,259,66,1.0],[126,259,67,1.0],[126,259,68,1.0],[126,259,69,1.0],[126,259,70,1.0],[126,259,71,1.0],[126,259,72,1.0],[126,259,73,1.0],[126,259,74,1.0],[126,259,75,1.0],[126,259,76,1.0],[126,259,77,1.0],[126,259,78,1.0],[126,259,79,1.0],[126,260,64,1.0],[126,260,65,1.0],[126,260,66,1.0],[126,260,67,1.0],[126,260,68,1.0],[126,260,69,1.0],[126,260,70,1.0],[126,260,71,1.0],[126,260,72,1.0],[126,260,73,1.0],[126,260,74,1.0],[126,260,75,1.0],[126,260,76,1.0],[126,260,77,1.0],[126,260,78,1.0],[126,260,79,1.0],[126,261,64,1.0],[126,261,65,1.0],[126,261,66,1.0],[126,261,67,1.0],[126,261,68,1.0],[126,261,69,1.0],[126,261,70,1.0],[126,261,71,1.0],[126,261,72,1.0],[126,261,73,1.0],[126,261,74,1.0],[126,261,75,1.0],[126,261,76,1.0],[126,261,77,1.0],[126,261,78,1.0],[126,261,79,1.0],[126,262,64,1.0],[126,262,65,1.0],[126,262,66,1.0],[126,262,67,1.0],[126,262,68,1.0],[126,262,69,1.0],[126,262,70,1.0],[126,262,71,1.0],[126,262,72,1.0],[126,262,73,1.0],[126,262,74,1.0],[126,262,75,1.0],[126,262,76,1.0],[126,262,77,1.0],[126,262,78,1.0],[126,262,79,1.0],[126,263,64,1.0],[126,263,65,1.0],[126,263,66,1.0],[126,263,67,1.0],[126,263,68,1.0],[126,263,69,1.0],[126,263,70,1.0],[126,263,71,1.0],[126,263,72,1.0],[126,263,73,1.0],[126,263,74,1.0],[126,263,75,1.0],[126,263,76,1.0],[126,263,77,1.0],[126,263,78,1.0],[126,263,79,1.0],[126,264,64,1.0],[126,264,65,1.0],[126,264,66,1.0],[126,264,67,1.0],[126,264,68,1.0],[126,264,69,1.0],[126,264,70,1.0],[126,264,71,1.0],[126,264,72,1.0],[126,264,73,1.0],[126,264,74,1.0],[126,264,75,1.0],[126,264,76,1.0],[126,264,77,1.0],[126,264,78,1.0],[126,264,79,1.0],[126,265,64,1.0],[126,265,65,1.0],[126,265,66,1.0],[126,265,67,1.0],[126,265,68,1.0],[126,265,69,1.0],[126,265,70,1.0],[126,265,71,1.0],[126,265,72,1.0],[126,265,73,1.0],[126,265,74,1.0],[126,265,75,1.0],[126,265,76,1.0],[126,265,77,1.0],[126,265,78,1.0],[126,265,79,1.0],[126,266,64,1.0],[126,266,65,1.0],[126,266,66,1.0],[126,266,67,1.0],[126,266,68,1.0],[126,266,69,1.0],[126,266,70,1.0],[126,266,71,1.0],[126,266,72,1.0],[126,266,73,1.0],[126,266,74,1.0],[126,266,75,1.0],[126,266,76,1.0],[126,266,77,1.0],[126,266,78,1.0],[126,266,79,1.0],[126,267,64,1.0],[126,267,65,1.0],[126,267,66,1.0],[126,267,67,1.0],[126,267,68,1.0],[126,267,69,1.0],[126,267,70,1.0],[126,267,71,1.0],[126,267,72,1.0],[126,267,73,1.0],[126,267,74,1.0],[126,267,75,1.0],[126,267,76,1.0],[126,267,77,1.0],[126,267,78,1.0],[126,267,79,1.0],[126,268,64,1.0],[126,268,65,1.0],[126,268,66,1.0],[126,268,67,1.0],[126,268,68,1.0],[126,268,69,1.0],[126,268,70,1.0],[126,268,71,1.0],[126,268,72,1.0],[126,268,73,1.0],[126,268,74,1.0],[126,268,75,1.0],[126,268,76,1.0],[126,268,77,1.0],[126,268,78,1.0],[126,268,79,1.0],[126,269,64,1.0],[126,269,65,1.0],[126,269,66,1.0],[126,269,67,1.0],[126,269,68,1.0],[126,269,69,1.0],[126,269,70,1.0],[126,269,71,1.0],[126,269,72,1.0],[126,269,73,1.0],[126,269,74,1.0],[126,269,75,1.0],[126,269,76,1.0],[126,269,77,1.0],[126,269,78,1.0],[126,269,79,1.0],[126,270,64,1.0],[126,270,65,1.0],[126,270,66,1.0],[126,270,67,1.0],[126,270,68,1.0],[126,270,69,1.0],[126,270,70,1.0],[126,270,71,1.0],[126,270,72,1.0],[126,270,73,1.0],[126,270,74,1.0],[126,270,75,1.0],[126,270,76,1.0],[126,270,77,1.0],[126,270,78,1.0],[126,270,79,1.0],[126,271,64,1.0],[126,271,65,1.0],[126,271,66,1.0],[126,271,67,1.0],[126,271,68,1.0],[126,271,69,1.0],[126,271,70,1.0],[126,271,71,1.0],[126,271,72,1.0],[126,271,73,1.0],[126,271,74,1.0],[126,271,75,1.0],[126,271,76,1.0],[126,271,77,1.0],[126,271,78,1.0],[126,271,79,1.0],[126,272,64,1.0],[126,272,65,1.0],[126,272,66,1.0],[126,272,67,1.0],[126,272,68,1.0],[126,272,69,1.0],[126,272,70,1.0],[126,272,71,1.0],[126,272,72,1.0],[126,272,73,1.0],[126,272,74,1.0],[126,272,75,1.0],[126,272,76,1.0],[126,272,77,1.0],[126,272,78,1.0],[126,272,79,1.0],[126,273,64,1.0],[126,273,65,1.0],[126,273,66,1.0],[126,273,67,1.0],[126,273,68,1.0],[126,273,69,1.0],[126,273,70,1.0],[126,273,71,1.0],[126,273,72,1.0],[126,273,73,1.0],[126,273,74,1.0],[126,273,75,1.0],[126,273,76,1.0],[126,273,77,1.0],[126,273,78,1.0],[126,273,79,1.0],[126,274,64,1.0],[126,274,65,1.0],[126,274,66,1.0],[126,274,67,1.0],[126,274,68,1.0],[126,274,69,1.0],[126,274,70,1.0],[126,274,71,1.0],[126,274,72,1.0],[126,274,73,1.0],[126,274,74,1.0],[126,274,75,1.0],[126,274,76,1.0],[126,274,77,1.0],[126,274,78,1.0],[126,274,79,1.0],[126,275,64,1.0],[126,275,65,1.0],[126,275,66,1.0],[126,275,67,1.0],[126,275,68,1.0],[126,275,69,1.0],[126,275,70,1.0],[126,275,71,1.0],[126,275,72,1.0],[126,275,73,1.0],[126,275,74,1.0],[126,275,75,1.0],[126,275,76,1.0],[126,275,77,1.0],[126,275,78,1.0],[126,275,79,1.0],[126,276,64,1.0],[126,276,65,1.0],[126,276,66,1.0],[126,276,67,1.0],[126,276,68,1.0],[126,276,69,1.0],[126,276,70,1.0],[126,276,71,1.0],[126,276,72,1.0],[126,276,73,1.0],[126,276,74,1.0],[126,276,75,1.0],[126,276,76,1.0],[126,276,77,1.0],[126,276,78,1.0],[126,276,79,1.0],[126,277,64,1.0],[126,277,65,1.0],[126,277,66,1.0],[126,277,67,1.0],[126,277,68,1.0],[126,277,69,1.0],[126,277,70,1.0],[126,277,71,1.0],[126,277,72,1.0],[126,277,73,1.0],[126,277,74,1.0],[126,277,75,1.0],[126,277,76,1.0],[126,277,77,1.0],[126,277,78,1.0],[126,277,79,1.0],[126,278,64,1.0],[126,278,65,1.0],[126,278,66,1.0],[126,278,67,1.0],[126,278,68,1.0],[126,278,69,1.0],[126,278,70,1.0],[126,278,71,1.0],[126,278,72,1.0],[126,278,73,1.0],[126,278,74,1.0],[126,278,75,1.0],[126,278,76,1.0],[126,278,77,1.0],[126,278,78,1.0],[126,278,79,1.0],[126,279,64,1.0],[126,279,65,1.0],[126,279,66,1.0],[126,279,67,1.0],[126,279,68,1.0],[126,279,69,1.0],[126,279,70,1.0],[126,279,71,1.0],[126,279,72,1.0],[126,279,73,1.0],[126,279,74,1.0],[126,279,75,1.0],[126,279,76,1.0],[126,279,77,1.0],[126,279,78,1.0],[126,279,79,1.0],[126,280,64,1.0],[126,280,65,1.0],[126,280,66,1.0],[126,280,67,1.0],[126,280,68,1.0],[126,280,69,1.0],[126,280,70,1.0],[126,280,71,1.0],[126,280,72,1.0],[126,280,73,1.0],[126,280,74,1.0],[126,280,75,1.0],[126,280,76,1.0],[126,280,77,1.0],[126,280,78,1.0],[126,280,79,1.0],[126,281,64,1.0],[126,281,65,1.0],[126,281,66,1.0],[126,281,67,1.0],[126,281,68,1.0],[126,281,69,1.0],[126,281,70,1.0],[126,281,71,1.0],[126,281,72,1.0],[126,281,73,1.0],[126,281,74,1.0],[126,281,75,1.0],[126,281,76,1.0],[126,281,77,1.0],[126,281,78,1.0],[126,281,79,1.0],[126,282,64,1.0],[126,282,65,1.0],[126,282,66,1.0],[126,282,67,1.0],[126,282,68,1.0],[126,282,69,1.0],[126,282,70,1.0],[126,282,71,1.0],[126,282,72,1.0],[126,282,73,1.0],[126,282,74,1.0],[126,282,75,1.0],[126,282,76,1.0],[126,282,77,1.0],[126,282,78,1.0],[126,282,79,1.0],[126,283,64,1.0],[126,283,65,1.0],[126,283,66,1.0],[126,283,67,1.0],[126,283,68,1.0],[126,283,69,1.0],[126,283,70,1.0],[126,283,71,1.0],[126,283,72,1.0],[126,283,73,1.0],[126,283,74,1.0],[126,283,75,1.0],[126,283,76,1.0],[126,283,77,1.0],[126,283,78,1.0],[126,283,79,1.0],[126,284,64,1.0],[126,284,65,1.0],[126,284,66,1.0],[126,284,67,1.0],[126,284,68,1.0],[126,284,69,1.0],[126,284,70,1.0],[126,284,71,1.0],[126,284,72,1.0],[126,284,73,1.0],[126,284,74,1.0],[126,284,75,1.0],[126,284,76,1.0],[126,284,77,1.0],[126,284,78,1.0],[126,284,79,1.0],[126,285,64,1.0],[126,285,65,1.0],[126,285,66,1.0],[126,285,67,1.0],[126,285,68,1.0],[126,285,69,1.0],[126,285,70,1.0],[126,285,71,1.0],[126,285,72,1.0],[126,285,73,1.0],[126,285,74,1.0],[126,285,75,1.0],[126,285,76,1.0],[126,285,77,1.0],[126,285,78,1.0],[126,285,79,1.0],[126,286,64,1.0],[126,286,65,1.0],[126,286,66,1.0],[126,286,67,1.0],[126,286,68,1.0],[126,286,69,1.0],[126,286,70,1.0],[126,286,71,1.0],[126,286,72,1.0],[126,286,73,1.0],[126,286,74,1.0],[126,286,75,1.0],[126,286,76,1.0],[126,286,77,1.0],[126,286,78,1.0],[126,286,79,1.0],[126,287,64,1.0],[126,287,65,1.0],[126,287,66,1.0],[126,287,67,1.0],[126,287,68,1.0],[126,287,69,1.0],[126,287,70,1.0],[126,287,71,1.0],[126,287,72,1.0],[126,287,73,1.0],[126,287,74,1.0],[126,287,75,1.0],[126,287,76,1.0],[126,287,77,1.0],[126,287,78,1.0],[126,287,79,1.0],[126,288,64,1.0],[126,288,65,1.0],[126,288,66,1.0],[126,288,67,1.0],[126,288,68,1.0],[126,288,69,1.0],[126,288,70,1.0],[126,288,71,1.0],[126,288,72,1.0],[126,288,73,1.0],[126,288,74,1.0],[126,288,75,1.0],[126,288,76,1.0],[126,288,77,1.0],[126,288,78,1.0],[126,288,79,1.0],[126,289,64,1.0],[126,289,65,1.0],[126,289,66,1.0],[126,289,67,1.0],[126,289,68,1.0],[126,289,69,1.0],[126,289,70,1.0],[126,289,71,1.0],[126,289,72,1.0],[126,289,73,1.0],[126,289,74,1.0],[126,289,75,1.0],[126,289,76,1.0],[126,289,77,1.0],[126,289,78,1.0],[126,289,79,1.0],[126,290,64,1.0],[126,290,65,1.0],[126,290,66,1.0],[126,290,67,1.0],[126,290,68,1.0],[126,290,69,1.0],[126,290,70,1.0],[126,290,71,1.0],[126,290,72,1.0],[126,290,73,1.0],[126,290,74,1.0],[126,290,75,1.0],[126,290,76,1.0],[126,290,77,1.0],[126,290,78,1.0],[126,290,79,1.0],[126,291,64,1.0],[126,291,65,1.0],[126,291,66,1.0],[126,291,67,1.0],[126,291,68,1.0],[126,291,69,1.0],[126,291,70,1.0],[126,291,71,1.0],[126,291,72,1.0],[126,291,73,1.0],[126,291,74,1.0],[126,291,75,1.0],[126,291,76,1.0],[126,291,77,1.0],[126,291,78,1.0],[126,291,79,1.0],[126,292,64,1.0],[126,292,65,1.0],[126,292,66,1.0],[126,292,67,1.0],[126,292,68,1.0],[126,292,69,1.0],[126,292,70,1.0],[126,292,71,1.0],[126,292,72,1.0],[126,292,73,1.0],[126,292,74,1.0],[126,292,75,1.0],[126,292,76,1.0],[126,292,77,1.0],[126,292,78,1.0],[126,292,79,1.0],[126,293,64,1.0],[126,293,65,1.0],[126,293,66,1.0],[126,293,67,1.0],[126,293,68,1.0],[126,293,69,1.0],[126,293,70,1.0],[126,293,71,1.0],[126,293,72,1.0],[126,293,73,1.0],[126,293,74,1.0],[126,293,75,1.0],[126,293,76,1.0],[126,293,77,1.0],[126,293,78,1.0],[126,293,79,1.0],[126,294,64,1.0],[126,294,65,1.0],[126,294,66,1.0],[126,294,67,1.0],[126,294,68,1.0],[126,294,69,1.0],[126,294,70,1.0],[126,294,71,1.0],[126,294,72,1.0],[126,294,73,1.0],[126,294,74,1.0],[126,294,75,1.0],[126,294,76,1.0],[126,294,77,1.0],[126,294,78,1.0],[126,294,79,1.0],[126,295,64,1.0],[126,295,65,1.0],[126,295,66,1.0],[126,295,67,1.0],[126,295,68,1.0],[126,295,69,1.0],[126,295,70,1.0],[126,295,71,1.0],[126,295,72,1.0],[126,295,73,1.0],[126,295,74,1.0],[126,295,75,1.0],[126,295,76,1.0],[126,295,77,1.0],[126,295,78,1.0],[126,295,79,1.0],[126,296,64,1.0],[126,296,65,1.0],[126,296,66,1.0],[126,296,67,1.0],[126,296,68,1.0],[126,296,69,1.0],[126,296,70,1.0],[126,296,71,1.0],[126,296,72,1.0],[126,296,73,1.0],[126,296,74,1.0],[126,296,75,1.0],[126,296,76,1.0],[126,296,77,1.0],[126,296,78,1.0],[126,296,79,1.0],[126,297,64,1.0],[126,297,65,1.0],[126,297,66,1.0],[126,297,67,1.0],[126,297,68,1.0],[126,297,69,1.0],[126,297,70,1.0],[126,297,71,1.0],[126,297,72,1.0],[126,297,73,1.0],[126,297,74,1.0],[126,297,75,1.0],[126,297,76,1.0],[126,297,77,1.0],[126,297,78,1.0],[126,297,79,1.0],[126,298,64,1.0],[126,298,65,1.0],[126,298,66,1.0],[126,298,67,1.0],[126,298,68,1.0],[126,298,69,1.0],[126,298,70,1.0],[126,298,71,1.0],[126,298,72,1.0],[126,298,73,1.0],[126,298,74,1.0],[126,298,75,1.0],[126,298,76,1.0],[126,298,77,1.0],[126,298,78,1.0],[126,298,79,1.0],[126,299,64,1.0],[126,299,65,1.0],[126,299,66,1.0],[126,299,67,1.0],[126,299,68,1.0],[126,299,69,1.0],[126,299,70,1.0],[126,299,71,1.0],[126,299,72,1.0],[126,299,73,1.0],[126,299,74,1.0],[126,299,75,1.0],[126,299,76,1.0],[126,299,77,1.0],[126,299,78,1.0],[126,299,79,1.0],[126,300,64,1.0],[126,300,65,1.0],[126,300,66,1.0],[126,300,67,1.0],[126,300,68,1.0],[126,300,69,1.0],[126,300,70,1.0],[126,300,71,1.0],[126,300,72,1.0],[126,300,73,1.0],[126,300,74,1.0],[126,300,75,1.0],[126,300,76,1.0],[126,300,77,1.0],[126,300,78,1.0],[126,300,79,1.0],[126,301,64,1.0],[126,301,65,1.0],[126,301,66,1.0],[126,301,67,1.0],[126,301,68,1.0],[126,301,69,1.0],[126,301,70,1.0],[126,301,71,1.0],[126,301,72,1.0],[126,301,73,1.0],[126,301,74,1.0],[126,301,75,1.0],[126,301,76,1.0],[126,301,77,1.0],[126,301,78,1.0],[126,301,79,1.0],[126,302,64,1.0],[126,302,65,1.0],[126,302,66,1.0],[126,302,67,1.0],[126,302,68,1.0],[126,302,69,1.0],[126,302,70,1.0],[126,302,71,1.0],[126,302,72,1.0],[126,302,73,1.0],[126,302,74,1.0],[126,302,75,1.0],[126,302,76,1.0],[126,302,77,1.0],[126,302,78,1.0],[126,302,79,1.0],[126,303,64,1.0],[126,303,65,1.0],[126,303,66,1.0],[126,303,67,1.0],[126,303,68,1.0],[126,303,69,1.0],[126,303,70,1.0],[126,303,71,1.0],[126,303,72,1.0],[126,303,73,1.0],[126,303,74,1.0],[126,303,75,1.0],[126,303,76,1.0],[126,303,77,1.0],[126,303,78,1.0],[126,303,79,1.0],[126,304,64,1.0],[126,304,65,1.0],[126,304,66,1.0],[126,304,67,1.0],[126,304,68,1.0],[126,304,69,1.0],[126,304,70,1.0],[126,304,71,1.0],[126,304,72,1.0],[126,304,73,1.0],[126,304,74,1.0],[126,304,75,1.0],[126,304,76,1.0],[126,304,77,1.0],[126,304,78,1.0],[126,304,79,1.0],[126,305,64,1.0],[126,305,65,1.0],[126,305,66,1.0],[126,305,67,1.0],[126,305,68,1.0],[126,305,69,1.0],[126,305,70,1.0],[126,305,71,1.0],[126,305,72,1.0],[126,305,73,1.0],[126,305,74,1.0],[126,305,75,1.0],[126,305,76,1.0],[126,305,77,1.0],[126,305,78,1.0],[126,305,79,1.0],[126,306,64,1.0],[126,306,65,1.0],[126,306,66,1.0],[126,306,67,1.0],[126,306,68,1.0],[126,306,69,1.0],[126,306,70,1.0],[126,306,71,1.0],[126,306,72,1.0],[126,306,73,1.0],[126,306,74,1.0],[126,306,75,1.0],[126,306,76,1.0],[126,306,77,1.0],[126,306,78,1.0],[126,306,79,1.0],[126,307,64,1.0],[126,307,65,1.0],[126,307,66,1.0],[126,307,67,1.0],[126,307,68,1.0],[126,307,69,1.0],[126,307,70,1.0],[126,307,71,1.0],[126,307,72,1.0],[126,307,73,1.0],[126,307,74,1.0],[126,307,75,1.0],[126,307,76,1.0],[126,307,77,1.0],[126,307,78,1.0],[126,307,79,1.0],[126,308,64,1.0],[126,308,65,1.0],[126,308,66,1.0],[126,308,67,1.0],[126,308,68,1.0],[126,308,69,1.0],[126,308,70,1.0],[126,308,71,1.0],[126,308,72,1.0],[126,308,73,1.0],[126,308,74,1.0],[126,308,75,1.0],[126,308,76,1.0],[126,308,77,1.0],[126,308,78,1.0],[126,308,79,1.0],[126,309,64,1.0],[126,309,65,1.0],[126,309,66,1.0],[126,309,67,1.0],[126,309,68,1.0],[126,309,69,1.0],[126,309,70,1.0],[126,309,71,1.0],[126,309,72,1.0],[126,309,73,1.0],[126,309,74,1.0],[126,309,75,1.0],[126,309,76,1.0],[126,309,77,1.0],[126,309,78,1.0],[126,309,79,1.0],[126,310,64,1.0],[126,310,65,1.0],[126,310,66,1.0],[126,310,67,1.0],[126,310,68,1.0],[126,310,69,1.0],[126,310,70,1.0],[126,310,71,1.0],[126,310,72,1.0],[126,310,73,1.0],[126,310,74,1.0],[126,310,75,1.0],[126,310,76,1.0],[126,310,77,1.0],[126,310,78,1.0],[126,310,79,1.0],[126,311,64,1.0],[126,311,65,1.0],[126,311,66,1.0],[126,311,67,1.0],[126,311,68,1.0],[126,311,69,1.0],[126,311,70,1.0],[126,311,71,1.0],[126,311,72,1.0],[126,311,73,1.0],[126,311,74,1.0],[126,311,75,1.0],[126,311,76,1.0],[126,311,77,1.0],[126,311,78,1.0],[126,311,79,1.0],[126,312,64,1.0],[126,312,65,1.0],[126,312,66,1.0],[126,312,67,1.0],[126,312,68,1.0],[126,312,69,1.0],[126,312,70,1.0],[126,312,71,1.0],[126,312,72,1.0],[126,312,73,1.0],[126,312,74,1.0],[126,312,75,1.0],[126,312,76,1.0],[126,312,77,1.0],[126,312,78,1.0],[126,312,79,1.0],[126,313,64,1.0],[126,313,65,1.0],[126,313,66,1.0],[126,313,67,1.0],[126,313,68,1.0],[126,313,69,1.0],[126,313,70,1.0],[126,313,71,1.0],[126,313,72,1.0],[126,313,73,1.0],[126,313,74,1.0],[126,313,75,1.0],[126,313,76,1.0],[126,313,77,1.0],[126,313,78,1.0],[126,313,79,1.0],[126,314,64,1.0],[126,314,65,1.0],[126,314,66,1.0],[126,314,67,1.0],[126,314,68,1.0],[126,314,69,1.0],[126,314,70,1.0],[126,314,71,1.0],[126,314,72,1.0],[126,314,73,1.0],[126,314,74,1.0],[126,314,75,1.0],[126,314,76,1.0],[126,314,77,1.0],[126,314,78,1.0],[126,314,79,1.0],[126,315,64,1.0],[126,315,65,1.0],[126,315,66,1.0],[126,315,67,1.0],[126,315,68,1.0],[126,315,69,1.0],[126,315,70,1.0],[126,315,71,1.0],[126,315,72,1.0],[126,315,73,1.0],[126,315,74,1.0],[126,315,75,1.0],[126,315,76,1.0],[126,315,77,1.0],[126,315,78,1.0],[126,315,79,1.0],[126,316,64,1.0],[126,316,65,1.0],[126,316,66,1.0],[126,316,67,1.0],[126,316,68,1.0],[126,316,69,1.0],[126,316,70,1.0],[126,316,71,1.0],[126,316,72,1.0],[126,316,73,1.0],[126,316,74,1.0],[126,316,75,1.0],[126,316,76,1.0],[126,316,77,1.0],[126,316,78,1.0],[126,316,79,1.0],[126,317,64,1.0],[126,317,65,1.0],[126,317,66,1.0],[126,317,67,1.0],[126,317,68,1.0],[126,317,69,1.0],[126,317,70,1.0],[126,317,71,1.0],[126,317,72,1.0],[126,317,73,1.0],[126,317,74,1.0],[126,317,75,1.0],[126,317,76,1.0],[126,317,77,1.0],[126,317,78,1.0],[126,317,79,1.0],[126,318,64,1.0],[126,318,65,1.0],[126,318,66,1.0],[126,318,67,1.0],[126,318,68,1.0],[126,318,69,1.0],[126,318,70,1.0],[126,318,71,1.0],[126,318,72,1.0],[126,318,73,1.0],[126,318,74,1.0],[126,318,75,1.0],[126,318,76,1.0],[126,318,77,1.0],[126,318,78,1.0],[126,318,79,1.0],[126,319,64,1.0],[126,319,65,1.0],[126,319,66,1.0],[126,319,67,1.0],[126,319,68,1.0],[126,319,69,1.0],[126,319,70,1.0],[126,319,71,1.0],[126,319,72,1.0],[126,319,73,1.0],[126,319,74,1.0],[126,319,75,1.0],[126,319,76,1.0],[126,319,77,1.0],[126,319,78,1.0],[126,319,79,1.0],[127,-64,64,1.0],[127,-64,65,1.0],[127,-64,66,1.0],[127,-64,67,1.0],[127,-64,68,1.0],[127,-64,69,1.0],[127,-64,70,1.0],[127,-64,71,1.0],[127,-64,72,1.0],[127,-64,73,1.0],[127,-64,74,1.0],[127,-64,75,1.0],[127,-64,76,1.0],[127,-64,77,1.0],[127,-64,78,1.0],[127,-64,79,1.0],[127,-63,64,1.0],[127,-63,65,1.0],[127,-63,66,1.0],[127,-63,67,1.0],[127,-63,68,1.0],[127,-63,69,1.0],[127,-63,70,1.0],[127,-63,71,1.0],[127,-63,72,1.0],[127,-63,73,1.0],[127,-63,74,1.0],[127,-63,75,1.0],[127,-63,76,1.0],[127,-63,77,1.0],[127,-63,78,1.0],[127,-63,79,1.0],[127,-62,64,1.0],[127,-62,65,1.0],[127,-62,66,1.0],[127,-62,67,1.0],[127,-62,68,1.0],[127,-62,69,1.0],[127,-62,70,1.0],[127,-62,71,1.0],[127,-62,72,1.0],[127,-62,73,1.0],[127,-62,74,1.0],[127,-62,75,1.0],[127,-62,76,1.0],[127,-62,77,1.0],[127,-62,78,1.0],[127,-62,79,1.0],[127,-61,64,1.0],[127,-61,65,1.0],[127,-61,66,1.0],[127,-61,67,1.0],[127,-61,68,1.0],[127,-61,69,1.0],[127,-61,70,1.0],[127,-61,71,1.0],[127,-61,72,1.0],[127,-61,73,1.0],[127,-61,74,1.0],[127,-61,75,1.0],[127,-61,76,1.0],[127,-61,77,1.0],[127,-61,78,1.0],[127,-61,79,1.0],[127,-60,64,1.0],[127,-60,65,1.0],[127,-60,66,1.0],[127,-60,67,1.0],[127,-60,68,1.0],[127,-60,69,1.0],[127,-60,70,1.0],[127,-60,71,1.0],[127,-60,72,1.0],[127,-60,73,1.0],[127,-60,74,1.0],[127,-60,75,1.0],[127,-60,76,1.0],[127,-60,77,1.0],[127,-60,78,1.0],[127,-60,79,1.0],[127,-59,64,1.0],[127,-59,65,1.0],[127,-59,66,1.0],[127,-59,67,1.0],[127,-59,68,1.0],[127,-59,69,1.0],[127,-59,70,1.0],[127,-59,71,1.0],[127,-59,72,1.0],[127,-59,73,1.0],[127,-59,74,1.0],[127,-59,75,1.0],[127,-59,76,1.0],[127,-59,77,1.0],[127,-59,78,1.0],[127,-59,79,1.0],[127,-58,64,1.0],[127,-58,65,1.0],[127,-58,66,1.0],[127,-58,67,1.0],[127,-58,68,1.0],[127,-58,69,1.0],[127,-58,70,1.0],[127,-58,71,1.0],[127,-58,72,1.0],[127,-58,73,1.0],[127,-58,74,1.0],[127,-58,75,1.0],[127,-58,76,1.0],[127,-58,77,1.0],[127,-58,78,1.0],[127,-58,79,1.0],[127,-57,64,1.0],[127,-57,65,1.0],[127,-57,66,1.0],[127,-57,67,1.0],[127,-57,68,1.0],[127,-57,69,1.0],[127,-57,70,1.0],[127,-57,71,1.0],[127,-57,72,1.0],[127,-57,73,1.0],[127,-57,74,1.0],[127,-57,75,1.0],[127,-57,76,1.0],[127,-57,77,1.0],[127,-57,78,1.0],[127,-57,79,1.0],[127,-56,64,1.0],[127,-56,65,1.0],[127,-56,66,1.0],[127,-56,67,1.0],[127,-56,68,1.0],[127,-56,69,1.0],[127,-56,70,1.0],[127,-56,71,1.0],[127,-56,72,1.0],[127,-56,73,1.0],[127,-56,74,1.0],[127,-56,75,1.0],[127,-56,76,1.0],[127,-56,77,1.0],[127,-56,78,1.0],[127,-56,79,1.0],[127,-55,64,1.0],[127,-55,65,1.0],[127,-55,66,1.0],[127,-55,67,1.0],[127,-55,68,1.0],[127,-55,69,1.0],[127,-55,70,1.0],[127,-55,71,1.0],[127,-55,72,1.0],[127,-55,73,1.0],[127,-55,74,1.0],[127,-55,75,1.0],[127,-55,76,1.0],[127,-55,77,1.0],[127,-55,78,1.0],[127,-55,79,1.0],[127,-54,64,1.0],[127,-54,65,1.0],[127,-54,66,1.0],[127,-54,67,1.0],[127,-54,68,1.0],[127,-54,69,1.0],[127,-54,70,1.0],[127,-54,71,1.0],[127,-54,72,1.0],[127,-54,73,1.0],[127,-54,74,1.0],[127,-54,75,1.0],[127,-54,76,1.0],[127,-54,77,1.0],[127,-54,78,1.0],[127,-54,79,1.0],[127,-53,64,1.0],[127,-53,65,1.0],[127,-53,66,1.0],[127,-53,67,1.0],[127,-53,68,1.0],[127,-53,69,1.0],[127,-53,70,1.0],[127,-53,71,1.0],[127,-53,72,1.0],[127,-53,73,1.0],[127,-53,74,1.0],[127,-53,75,1.0],[127,-53,76,1.0],[127,-53,77,1.0],[127,-53,78,1.0],[127,-53,79,1.0],[127,-52,64,1.0],[127,-52,65,1.0],[127,-52,66,1.0],[127,-52,67,1.0],[127,-52,68,1.0],[127,-52,69,1.0],[127,-52,70,1.0],[127,-52,71,1.0],[127,-52,72,1.0],[127,-52,73,1.0],[127,-52,74,1.0],[127,-52,75,1.0],[127,-52,76,1.0],[127,-52,77,1.0],[127,-52,78,1.0],[127,-52,79,1.0],[127,-51,64,1.0],[127,-51,65,1.0],[127,-51,66,1.0],[127,-51,67,1.0],[127,-51,68,1.0],[127,-51,69,1.0],[127,-51,70,1.0],[127,-51,71,1.0],[127,-51,72,1.0],[127,-51,73,1.0],[127,-51,74,1.0],[127,-51,75,1.0],[127,-51,76,1.0],[127,-51,77,1.0],[127,-51,78,1.0],[127,-51,79,1.0],[127,-50,64,1.0],[127,-50,65,1.0],[127,-50,66,1.0],[127,-50,67,1.0],[127,-50,68,1.0],[127,-50,69,1.0],[127,-50,70,1.0],[127,-50,71,1.0],[127,-50,72,1.0],[127,-50,73,1.0],[127,-50,74,1.0],[127,-50,75,1.0],[127,-50,76,1.0],[127,-50,77,1.0],[127,-50,78,1.0],[127,-50,79,1.0],[127,-49,64,1.0],[127,-49,65,1.0],[127,-49,66,1.0],[127,-49,67,1.0],[127,-49,68,1.0],[127,-49,69,1.0],[127,-49,70,1.0],[127,-49,71,1.0],[127,-49,72,1.0],[127,-49,73,1.0],[127,-49,74,1.0],[127,-49,75,1.0],[127,-49,76,1.0],[127,-49,77,1.0],[127,-49,78,1.0],[127,-49,79,1.0],[127,-48,64,1.0],[127,-48,65,1.0],[127,-48,66,1.0],[127,-48,67,1.0],[127,-48,68,1.0],[127,-48,69,1.0],[127,-48,70,1.0],[127,-48,71,1.0],[127,-48,72,1.0],[127,-48,73,1.0],[127,-48,74,1.0],[127,-48,75,1.0],[127,-48,76,1.0],[127,-48,77,1.0],[127,-48,78,1.0],[127,-48,79,1.0],[127,-47,64,1.0],[127,-47,65,1.0],[127,-47,66,1.0],[127,-47,67,1.0],[127,-47,68,1.0],[127,-47,69,1.0],[127,-47,70,1.0],[127,-47,71,1.0],[127,-47,72,1.0],[127,-47,73,1.0],[127,-47,74,1.0],[127,-47,75,1.0],[127,-47,76,1.0],[127,-47,77,1.0],[127,-47,78,1.0],[127,-47,79,1.0],[127,-46,64,1.0],[127,-46,65,1.0],[127,-46,66,1.0],[127,-46,67,1.0],[127,-46,68,1.0],[127,-46,69,1.0],[127,-46,70,1.0],[127,-46,71,1.0],[127,-46,72,1.0],[127,-46,73,1.0],[127,-46,74,1.0],[127,-46,75,1.0],[127,-46,76,1.0],[127,-46,77,1.0],[127,-46,78,1.0],[127,-46,79,1.0],[127,-45,64,1.0],[127,-45,65,1.0],[127,-45,66,1.0],[127,-45,67,1.0],[127,-45,68,1.0],[127,-45,69,1.0],[127,-45,70,1.0],[127,-45,71,1.0],[127,-45,72,1.0],[127,-45,73,1.0],[127,-45,74,1.0],[127,-45,75,1.0],[127,-45,76,1.0],[127,-45,77,1.0],[127,-45,78,1.0],[127,-45,79,1.0],[127,-44,64,1.0],[127,-44,65,1.0],[127,-44,66,1.0],[127,-44,67,1.0],[127,-44,68,1.0],[127,-44,69,1.0],[127,-44,70,1.0],[127,-44,71,1.0],[127,-44,72,1.0],[127,-44,73,1.0],[127,-44,74,1.0],[127,-44,75,1.0],[127,-44,76,1.0],[127,-44,77,1.0],[127,-44,78,1.0],[127,-44,79,1.0],[127,-43,64,1.0],[127,-43,65,1.0],[127,-43,66,1.0],[127,-43,67,1.0],[127,-43,68,1.0],[127,-43,69,1.0],[127,-43,70,1.0],[127,-43,71,1.0],[127,-43,72,1.0],[127,-43,73,1.0],[127,-43,74,1.0],[127,-43,75,1.0],[127,-43,76,1.0],[127,-43,77,1.0],[127,-43,78,1.0],[127,-43,79,1.0],[127,-42,64,1.0],[127,-42,65,1.0],[127,-42,66,1.0],[127,-42,67,1.0],[127,-42,68,1.0],[127,-42,69,1.0],[127,-42,70,1.0],[127,-42,71,1.0],[127,-42,72,1.0],[127,-42,73,1.0],[127,-42,74,1.0],[127,-42,75,1.0],[127,-42,76,1.0],[127,-42,77,1.0],[127,-42,78,1.0],[127,-42,79,1.0],[127,-41,64,1.0],[127,-41,65,1.0],[127,-41,66,1.0],[127,-41,67,1.0],[127,-41,68,1.0],[127,-41,69,1.0],[127,-41,70,1.0],[127,-41,71,1.0],[127,-41,72,1.0],[127,-41,73,1.0],[127,-41,74,1.0],[127,-41,75,1.0],[127,-41,76,1.0],[127,-41,77,1.0],[127,-41,78,1.0],[127,-41,79,1.0],[127,-40,64,1.0],[127,-40,65,1.0],[127,-40,66,1.0],[127,-40,67,1.0],[127,-40,68,1.0],[127,-40,69,1.0],[127,-40,70,1.0],[127,-40,71,1.0],[127,-40,72,1.0],[127,-40,73,1.0],[127,-40,74,1.0],[127,-40,75,1.0],[127,-40,76,1.0],[127,-40,77,1.0],[127,-40,78,1.0],[127,-40,79,1.0],[127,-39,64,1.0],[127,-39,65,1.0],[127,-39,66,1.0],[127,-39,67,1.0],[127,-39,68,1.0],[127,-39,69,1.0],[127,-39,70,1.0],[127,-39,71,1.0],[127,-39,72,1.0],[127,-39,73,1.0],[127,-39,74,1.0],[127,-39,75,1.0],[127,-39,76,1.0],[127,-39,77,1.0],[127,-39,78,1.0],[127,-39,79,1.0],[127,-38,64,1.0],[127,-38,65,1.0],[127,-38,66,1.0],[127,-38,67,1.0],[127,-38,68,1.0],[127,-38,69,1.0],[127,-38,70,1.0],[127,-38,71,1.0],[127,-38,72,1.0],[127,-38,73,1.0],[127,-38,74,1.0],[127,-38,75,1.0],[127,-38,76,1.0],[127,-38,77,1.0],[127,-38,78,1.0],[127,-38,79,1.0],[127,-37,64,1.0],[127,-37,65,1.0],[127,-37,66,1.0],[127,-37,67,1.0],[127,-37,68,1.0],[127,-37,69,1.0],[127,-37,70,1.0],[127,-37,71,1.0],[127,-37,72,1.0],[127,-37,73,1.0],[127,-37,74,1.0],[127,-37,75,1.0],[127,-37,76,1.0],[127,-37,77,1.0],[127,-37,78,1.0],[127,-37,79,1.0],[127,-36,64,1.0],[127,-36,65,1.0],[127,-36,66,1.0],[127,-36,67,1.0],[127,-36,68,1.0],[127,-36,69,1.0],[127,-36,70,1.0],[127,-36,71,1.0],[127,-36,72,1.0],[127,-36,73,1.0],[127,-36,74,1.0],[127,-36,75,1.0],[127,-36,76,1.0],[127,-36,77,1.0],[127,-36,78,1.0],[127,-36,79,1.0],[127,-35,64,1.0],[127,-35,65,1.0],[127,-35,66,1.0],[127,-35,67,1.0],[127,-35,68,1.0],[127,-35,69,1.0],[127,-35,70,1.0],[127,-35,71,1.0],[127,-35,72,1.0],[127,-35,73,1.0],[127,-35,74,1.0],[127,-35,75,1.0],[127,-35,76,1.0],[127,-35,77,1.0],[127,-35,78,1.0],[127,-35,79,1.0],[127,-34,64,1.0],[127,-34,65,1.0],[127,-34,66,1.0],[127,-34,67,1.0],[127,-34,68,1.0],[127,-34,69,1.0],[127,-34,70,1.0],[127,-34,71,1.0],[127,-34,72,1.0],[127,-34,73,1.0],[127,-34,74,1.0],[127,-34,75,1.0],[127,-34,76,1.0],[127,-34,77,1.0],[127,-34,78,1.0],[127,-34,79,1.0],[127,-33,64,1.0],[127,-33,65,1.0],[127,-33,66,1.0],[127,-33,67,1.0],[127,-33,68,1.0],[127,-33,69,1.0],[127,-33,70,1.0],[127,-33,71,1.0],[127,-33,72,1.0],[127,-33,73,1.0],[127,-33,74,1.0],[127,-33,75,1.0],[127,-33,76,1.0],[127,-33,77,1.0],[127,-33,78,1.0],[127,-33,79,1.0],[127,-32,64,1.0],[127,-32,65,1.0],[127,-32,66,1.0],[127,-32,67,1.0],[127,-32,68,1.0],[127,-32,69,1.0],[127,-32,70,1.0],[127,-32,71,1.0],[127,-32,72,1.0],[127,-32,73,1.0],[127,-32,74,1.0],[127,-32,75,1.0],[127,-32,76,1.0],[127,-32,77,1.0],[127,-32,78,1.0],[127,-32,79,1.0],[127,-31,64,1.0],[127,-31,65,1.0],[127,-31,66,1.0],[127,-31,67,1.0],[127,-31,68,1.0],[127,-31,69,1.0],[127,-31,70,1.0],[127,-31,71,1.0],[127,-31,72,1.0],[127,-31,73,1.0],[127,-31,74,1.0],[127,-31,75,1.0],[127,-31,76,1.0],[127,-31,77,1.0],[127,-31,78,1.0],[127,-31,79,1.0],[127,-30,64,1.0],[127,-30,65,1.0],[127,-30,66,1.0],[127,-30,67,1.0],[127,-30,68,1.0],[127,-30,69,1.0],[127,-30,70,1.0],[127,-30,71,1.0],[127,-30,72,1.0],[127,-30,73,1.0],[127,-30,74,1.0],[127,-30,75,1.0],[127,-30,76,1.0],[127,-30,77,1.0],[127,-30,78,1.0],[127,-30,79,1.0],[127,-29,64,1.0],[127,-29,65,1.0],[127,-29,66,1.0],[127,-29,67,1.0],[127,-29,68,1.0],[127,-29,69,1.0],[127,-29,70,1.0],[127,-29,71,1.0],[127,-29,72,1.0],[127,-29,73,1.0],[127,-29,74,1.0],[127,-29,75,1.0],[127,-29,76,1.0],[127,-29,77,1.0],[127,-29,78,1.0],[127,-29,79,1.0],[127,-28,64,1.0],[127,-28,65,1.0],[127,-28,66,1.0],[127,-28,67,1.0],[127,-28,68,1.0],[127,-28,69,1.0],[127,-28,70,1.0],[127,-28,71,1.0],[127,-28,72,1.0],[127,-28,73,1.0],[127,-28,74,1.0],[127,-28,75,1.0],[127,-28,76,1.0],[127,-28,77,1.0],[127,-28,78,1.0],[127,-28,79,1.0],[127,-27,64,1.0],[127,-27,65,1.0],[127,-27,66,1.0],[127,-27,67,1.0],[127,-27,68,1.0],[127,-27,69,1.0],[127,-27,70,1.0],[127,-27,71,1.0],[127,-27,72,1.0],[127,-27,73,1.0],[127,-27,74,1.0],[127,-27,75,1.0],[127,-27,76,1.0],[127,-27,77,1.0],[127,-27,78,1.0],[127,-27,79,1.0],[127,-26,64,1.0],[127,-26,65,1.0],[127,-26,66,1.0],[127,-26,67,1.0],[127,-26,68,1.0],[127,-26,69,1.0],[127,-26,70,1.0],[127,-26,71,1.0],[127,-26,72,1.0],[127,-26,73,1.0],[127,-26,74,1.0],[127,-26,75,1.0],[127,-26,76,1.0],[127,-26,77,1.0],[127,-26,78,1.0],[127,-26,79,1.0],[127,-25,64,1.0],[127,-25,65,1.0],[127,-25,66,1.0],[127,-25,67,1.0],[127,-25,68,1.0],[127,-25,69,1.0],[127,-25,70,1.0],[127,-25,71,1.0],[127,-25,72,1.0],[127,-25,73,1.0],[127,-25,74,1.0],[127,-25,75,1.0],[127,-25,76,1.0],[127,-25,77,1.0],[127,-25,78,1.0],[127,-25,79,1.0],[127,-24,64,1.0],[127,-24,65,1.0],[127,-24,66,1.0],[127,-24,67,1.0],[127,-24,68,1.0],[127,-24,69,1.0],[127,-24,70,1.0],[127,-24,71,1.0],[127,-24,72,1.0],[127,-24,73,1.0],[127,-24,74,1.0],[127,-24,75,1.0],[127,-24,76,1.0],[127,-24,77,1.0],[127,-24,78,1.0],[127,-24,79,1.0],[127,-23,64,1.0],[127,-23,65,1.0],[127,-23,66,1.0],[127,-23,67,1.0],[127,-23,68,1.0],[127,-23,69,1.0],[127,-23,70,1.0],[127,-23,71,1.0],[127,-23,72,1.0],[127,-23,73,1.0],[127,-23,74,1.0],[127,-23,75,1.0],[127,-23,76,1.0],[127,-23,77,1.0],[127,-23,78,1.0],[127,-23,79,1.0],[127,-22,64,1.0],[127,-22,65,1.0],[127,-22,66,1.0],[127,-22,67,1.0],[127,-22,68,1.0],[127,-22,69,1.0],[127,-22,70,1.0],[127,-22,71,1.0],[127,-22,72,1.0],[127,-22,73,1.0],[127,-22,74,1.0],[127,-22,75,1.0],[127,-22,76,1.0],[127,-22,77,1.0],[127,-22,78,1.0],[127,-22,79,1.0],[127,-21,64,1.0],[127,-21,65,1.0],[127,-21,66,1.0],[127,-21,67,1.0],[127,-21,68,1.0],[127,-21,69,1.0],[127,-21,70,1.0],[127,-21,71,1.0],[127,-21,72,1.0],[127,-21,73,1.0],[127,-21,74,1.0],[127,-21,75,1.0],[127,-21,76,1.0],[127,-21,77,1.0],[127,-21,78,1.0],[127,-21,79,1.0],[127,-20,64,1.0],[127,-20,65,1.0],[127,-20,66,1.0],[127,-20,67,1.0],[127,-20,68,1.0],[127,-20,69,1.0],[127,-20,70,1.0],[127,-20,71,1.0],[127,-20,72,1.0],[127,-20,73,1.0],[127,-20,74,1.0],[127,-20,75,1.0],[127,-20,76,1.0],[127,-20,77,1.0],[127,-20,78,1.0],[127,-20,79,1.0],[127,-19,64,1.0],[127,-19,65,1.0],[127,-19,66,1.0],[127,-19,67,1.0],[127,-19,68,1.0],[127,-19,69,1.0],[127,-19,70,1.0],[127,-19,71,1.0],[127,-19,72,1.0],[127,-19,73,1.0],[127,-19,74,1.0],[127,-19,75,1.0],[127,-19,76,1.0],[127,-19,77,1.0],[127,-19,78,1.0],[127,-19,79,1.0],[127,-18,64,1.0],[127,-18,65,1.0],[127,-18,66,1.0],[127,-18,67,1.0],[127,-18,68,1.0],[127,-18,69,1.0],[127,-18,70,1.0],[127,-18,71,1.0],[127,-18,72,1.0],[127,-18,73,1.0],[127,-18,74,1.0],[127,-18,75,1.0],[127,-18,76,1.0],[127,-18,77,1.0],[127,-18,78,1.0],[127,-18,79,1.0],[127,-17,64,1.0],[127,-17,65,1.0],[127,-17,66,1.0],[127,-17,67,1.0],[127,-17,68,1.0],[127,-17,69,1.0],[127,-17,70,1.0],[127,-17,71,1.0],[127,-17,72,1.0],[127,-17,73,1.0],[127,-17,74,1.0],[127,-17,75,1.0],[127,-17,76,1.0],[127,-17,77,1.0],[127,-17,78,1.0],[127,-17,79,1.0],[127,-16,64,0.8579437784917407],[127,-16,65,0.965533954626263],[127,-16,66,1.0],[127,-16,67,1.0],[127,-16,68,1.0],[127,-16,69,1.0],[127,-16,70,1.0],[127,-16,71,1.0],[127,-16,72,1.0],[127,-16,73,1.0],[127,-16,74,1.0],[127,-16,75,1.0],[127,-16,76,1.0],[127,-16,77,1.0],[127,-16,78,1.0],[127,-16,79,1.0],[127,-15,64,0.5616829942660045],[127,-15,65,0.6432923445951718],[127,-15,66,0.7303555710100921],[127,-15,67,0.8226754237392513],[127,-15,68,0.9200273619457021],[127,-15,69,1.0],[127,-15,70,1.0],[127,-15,71,1.0],[127,-15,72,1.0],[127,-15,73,1.0],[127,-15,74,1.0],[127,-15,75,1.0],[127,-15,76,1.0],[127,-15,77,1.0],[127,-15,78,1.0],[127,-15,79,1.0],[127,-14,64,0.34293197595199215],[127,-14,65,0.4021454386593725],[127,-14,66,0.46625977589502193],[127,-14,67,0.535150028490628],[127,-14,68,0.6086615905488861],[127,-14,69,0.6866136280142849],[127,-14,70,0.7688025121446909],[127,-14,71,0.8550052505290013],[127,-14,72,0.9449828989049396],[127,-14,73,1.0],[127,-14,74,1.0],[127,-14,75,1.0],[127,-14,76,1.0],[127,-14,77,1.0],[127,-14,78,1.0],[127,-14,79,1.0],[127,-13,64,0.1899361610047549],[127,-13,65,0.23033880659184003],[127,-13,66,0.27500860812774597],[127,-13,67,0.3238928804238139],[127,-13,68,0.376907034172293],[127,-13,69,0.43393784035336763],[127,-13,70,0.49484671537441505],[127,-13,71,0.5594730098554629],[127,-13,72,0.6276372845494025],[127,-13,73,0.699144557574049],[127,-13,74,0.7737875079211665],[127,-13,75,0.8513496211409726],[127,-13,76,0.9316082641352337],[127,-13,77,1.0],[127,-13,78,1.0],[127,-13,79,1.0],[127,-12,64,0.09094089131821585],[127,-12,65,0.11611792222499008],[127,-12,66,0.14484767331058462],[127,-12,67,0.17714971673606156],[127,-12,68,0.21300956142718722],[127,-12,69,0.2523817658403505],[127,-12,70,0.29519307731481476],[127,-12,71,0.34134558119354164],[127,-12,72,0.39071984343583815],[127,-12,73,0.44317803109976217],[127,-12,74,0.49856699582825365],[127,-12,75,0.5567213063627662],[127,-12,76,0.6174662170998458],[127,-12,77,0.6806205607893907],[127,-12,78,0.7459995546828185],[127,-12,79,0.8134175107387138],[127,-11,64,0.034191413147819934],[127,-11,65,0.04772816336962554],[127,-11,66,0.0640224806430568],[127,-11,67,0.08316617784255134],[127,-11,68,0.10521494376538043],[127,-11,69,0.13019130677912358],[127,-11,70,0.15808763093225892],[127,-11,71,0.18886912797792818],[127,-11,72,0.2224768692690547],[127,-11,73,0.25883078210382243],[127,-11,74,0.29783261582386117],[127,-11,75,0.3393688638144235],[127,-11,76,0.38331362850453893],[127,-11,77,0.42953141750592244],[127,-11,78,0.4778798601858223],[127,-11,79,0.5282123352144568],[127,-10,64,0.007932877037132111],[127,-10,65,0.013414811737831002],[127,-10,66,0.020778442841092096],[127,-10,67,0.03018780729194476],[127,-10,68,0.041768855391148975],[127,-10,69,0.055612267846913824],[127,-10,70,0.07177631118918451],[127,-10,71,0.09028971526394741],[127,-10,72,0.11115455700087448],[127,-10,73,0.13434913523461933],[127,-10,74,0.15983082205002824],[127,-10,75,0.18753887692630294],[127,-10,76,0.21739721086083325],[127,-10,77,0.2493170886511177],[127,-10,78,0.2831997586170931],[127,-10,79,0.31893900023784716],[127,-9,64,4.103377484612159E-4],[127,-9,65,0.0014230528699087472],[127,-9,66,0.0033608760603031367],[127,-9,67,0.006460051686014788],[127,-9,68,0.010916873177246362],[127,-9,69,0.01689035600670039],[127,-9,70,0.024504954952940774],[127,-9,71,0.03385330963285616],[127,-9,72,0.04499900273190395],[127,-9,73,0.057979315913989485],[127,-9,74,0.07280796904869297],[127,-9,75,0.08947782915687681],[127,-9,76,0.1079635763383259],[127,-9,77,0.12822431489905525],[127,-9,78,0.15020611894795385],[127,-9,79,0.17384450287027203],[127,-8,64,-1.312458026002253E-4],[127,-8,65,-2.0239347662423276E-6],[127,-8,66,1.4999823177754443E-5],[127,-8,67,2.2826060319846466E-4],[127,-8,68,9.044765848382814E-4],[127,-8,69,0.002271180423555604],[127,-8,70,0.004519300908558546],[127,-8,71,0.007805779101062832],[127,-8,72,0.012256203617229322],[127,-8,73,0.017967450239411355],[127,-8,74,0.0250103116604075],[127,-8,75,0.033432103887993274],[127,-8,76,0.043259236656517486],[127,-8,77,0.0544997361019947],[127,-8,78,0.06714570895791265],[127,-8,79,0.08117573861301984],[127,-7,64,-0.005447010608696889],[127,-7,65,-0.002615425682943912],[127,-7,66,-0.0010140630497726616],[127,-7,67,-2.6231347388600793E-4],[127,-7,68,-2.2952412588473884E-5],[127,-7,69,2.523849690636481E-7],[127,-7,70,0.0012551059270459533],[127,-7,71,0.003516326861435236],[127,-7,72,0.005693343033239193],[127,-7,73,0.007785421477034066],[127,-7,74,0.009791862736119004],[127,-7,75,0.011712009283517184],[127,-7,76,0.01354525359508852],[127,-7,77,0.016389891182852296],[127,-7,78,0.022265195123764025],[127,-7,79,0.029179501293028546],[127,-6,64,-0.016657940392527847],[127,-6,65,-0.013957848245265421],[127,-6,66,-0.01133477310743538],[127,-6,67,-0.006766515226986125],[127,-6,68,-0.0036201294013762913],[127,-6,69,-0.0016770147748838586],[127,-6,70,-6.124372715705434E-4],[127,-6,71,6.012973380057213E-4],[127,-6,72,0.0027476393564133117],[127,-6,73,0.004812036174218083],[127,-6,74,0.006793818933670037],[127,-6,75,0.008692354570465334],[127,-6,76,0.010507053953543621],[127,-6,77,0.012237379680791013],[127,-6,78,0.01388285353045661],[127,-6,79,0.01544306356854376],[127,-5,64,-0.019303757685635504],[127,-5,65,-0.016655681154533142],[127,-5,66,-0.014082031684829951],[127,-5,67,-0.011583395288258892],[127,-5,68,-0.009160395113752141],[127,-5,69,-0.006813680872158397],[127,-5,70,-0.004543918601144316],[127,-5,71,-0.0023517807704646274],[127,-5,72,-2.3793672735158283E-4],[127,-5,73,0.0017969565176816499],[127,-5,74,0.003752263164760773],[127,-5,75,0.005627377158438203],[127,-5,76,0.007421730381047209],[127,-5,77,0.009134800505877068],[127,-5,78,0.010766118509974616],[127,-5,79,0.012315275846836261],[127,-4,64,-0.02196976164440282],[127,-4,65,-0.01937544278144908],[127,-4,66,-0.01685297575802202],[127,-4,67,-0.014402868649398451],[127,-4,68,-0.01202567278512811],[127,-4,69,-0.009721972163388617],[127,-4,70,-0.0074923732012430605],[127,-4,71,-0.005337494820983148],[127,-4,72,-0.0032579588723087513],[127,-4,73,-0.0012543808906402831],[127,-4,74,6.726388085756194E-4],[127,-4,75,0.0025225236997113987],[127,-4,76,0.004294729280651437],[127,-4,77,0.005988750970589207],[127,-4,78,0.007604131671733065],[127,-4,79,0.009140468995186092],[127,-3,64,-0.024650698407233163],[127,-3,65,-0.02211184003462971],[127,-3,66,-0.01964227598364899],[127,-3,67,-0.01724243511523694],[127,-3,68,-0.014912795457119404],[127,-3,69,-0.012653873623627687],[127,-3,70,-0.010466214566780575],[127,-3,71,-0.008350381658805583],[127,-3,72,-0.006306947105849621],[127,-3,73,-0.004336482693176567],[127,-3,74,-0.0024395508617116035],[127,-3,75,-6.166961157880735E-4],[127,-3,76,0.0011315632375994908],[127,-3,77,0.002804743018293712],[127,-3,78,0.004402400771026348],[127,-3,79,0.005924143032291704],[127,-2,64,-0.02734128923061698],[127,-2,65,-0.024859552086596307],[127,-2,66,-0.02244457238654085],[127,-2,67,-0.020096698587891627],[127,-2,68,-0.01781633401586983],[127,-2,69,-0.015603926304616197],[127,-2,70,-0.013459957164579511],[127,-2,71,-0.011384932476340398],[127,-2,72,-0.009379372710618304],[127,-2,73,-0.007443803674759997],[127,-2,74,-0.005578747585570372],[127,-2,75,-0.003784714468338675],[127,-2,76,-0.0020621938823672317],[127,-2,77,-4.1164697274254786E-4],[127,-2,78,0.001166501151452802],[127,-2,79,0.0026718687127548976],[127,-1,64,-0.030036233926997606],[127,-1,65,-0.027613233880163852],[127,-1,66,-0.025254477927969587],[127,-1,67,-0.02296023302564388],[127,-1,68,-0.020730826479148687],[127,-1,69,-0.018566635423454],[127,-1,70,-0.01646807662170481],[127,-1,71,-0.01443559658546343],[127,-1,72,-0.012469662015776525],[127,-1,73,-0.010570750565364405],[127,-1,74,-0.008739341921794673],[127,-1,75,-0.0069759092114918195],[127,-1,76,-0.0052809107248898216],[127,-1,77,-0.0036547819624695096],[127,-1,78,-0.0020979280018773652],[127,-1,79,-6.107161858581109E-4],[127,0,64,-0.03273021324034238],[127,0,65,-0.030367518569647624],[127,0,66,-0.028066581005635693],[127,0,67,-0.025827584994679464],[127,0,68,-0.0236507805926629],[127,0,69,-0.021536472996170355],[127,0,70,-0.019485012388861474],[127,0,71,-0.017496784103214667],[127,0,72,-0.015572199097390008],[127,0,73,-0.013711684747508002],[127,0,74,-0.011915675955205728],[127,0,75,-0.010184606570323565],[127,0,76,-0.008518901129028533],[127,0,77,-0.006918966907116318],[127,0,78,-0.0053851862886884275],[127,0,79,-0.0039179094499365505],[127,1,64,-0.027466465444438634],[127,1,65,-0.03311701889690795],[127,1,66,-0.030875446885412154],[127,1,67,-0.028693275149306634],[127,1,68,-0.0265706753513738],[127,1,69,-0.024507879392627323],[127,1,70,-0.02250516932125691],[127,1,71,-0.020562867550895175],[127,1,72,-0.01868132738795618],[127,1,73,-0.016860923868344126],[127,1,74,-0.015102044903392453],[127,1,75,-0.013405082734886338],[127,1,76,-0.011770425699475673],[127,1,77,-0.010198450302218755],[127,1,78,-0.008689513599456494],[127,1,79,-0.007243945890744979],[127,2,64,-0.005531030349072508],[127,2,65,-0.0098561172570081],[127,2,66,-0.015833636822508677],[127,2,67,-0.023629144223614264],[127,2,68,-0.02948496144580419],[127,2,69,-0.027475263812742762],[127,2,70,-0.025522918176916494],[127,2,71,-0.02362818236655246],[127,2,72,-0.0217913501950575],[127,2,73,-0.020012742356422523],[127,2,74,-0.018292697623477495],[127,2,75,-0.01663156434884909],[127,2,76,-0.01502969226892991],[127,2,77,-0.013487424610598195],[127,2,78,-0.01200509050088669],[127,2,79,-0.010582997679331595],[127,3,64,-1.4044494283019593E-4],[127,3,65,-7.177808931282237E-4],[127,3,66,-0.002011739829973025],[127,3,67,-0.004258332884806879],[127,3,68,-0.007654865825834882],[127,3,69,-0.01236251341594113],[127,3,70,-0.01850893621800404],[127,3,71,-0.0261909242089724],[127,3,72,-0.02489653012914881],[127,3,73,-0.02316137084313047],[127,3,74,-0.021481836018914326],[127,3,75,-0.01985822789333025],[127,3,76,-0.018290855250640357],[127,3,77,-0.01678002557529839],[127,3,78,-0.015326037500953432],[127,3,79,-0.013929173555427526],[127,4,64,3.87242018714002E-4],[127,4,65,4.4111115468905574E-5],[127,4,66,-2.563754298448301E-9],[127,4,67,-5.154733023361184E-5],[127,4,68,-3.765422833259603E-4],[127,4,69,-0.0012030132939078407],[127,4,70,-0.002723477378283733],[127,4,71,-0.005097460088428105],[127,4,72,-0.00845403095487555],[127,4,73,-0.012894342532656955],[127,4,74,-0.01849415921432353],[127,4,75,-0.023079197965930963],[127,4,76,-0.021548013881122048],[127,4,77,-0.02007033041748397],[127,4,78,-0.018646413193511006],[127,4,79,-0.017276516910345034],[127,5,64,0.007733885952894241],[127,5,65,0.004111540931426569],[127,5,66,0.0018836837421505942],[127,5,67,6.734476607925587E-4],[127,5,68,1.460211747912553E-4],[127,5,69,6.347855020071129E-6],[127,5,70,-3.2281288029561466E-6],[127,5,71,-1.0535573895738236E-4],[127,5,72,-4.900953170826523E-4],[127,5,73,-0.0013173470986923609],[127,5,74,-0.0027192763235442726],[127,5,75,-0.004802721942974144],[127,5,76,-0.007651576688778492],[127,5,77,-0.011329127117571008],[127,5,78,-0.015880343176182032],[127,5,79,-0.02061900274385972],[127,6,64,0.033581246424023936],[127,6,65,0.023166394435943323],[127,6,66,0.015321331146077548],[127,6,67,0.00959879017724513],[127,6,68,0.005595088515315726],[127,6,69,0.0029479597168015396],[127,6,70,0.0013343267715170803],[127,6,71,4.6802946672248066E-4],[127,6,72,9.752074831181043E-5],[127,6,73,3.546127944665431E-6],[127,6,74,-3.1803567735037956E-6],[127,6,75,-8.429075524792791E-5],[127,6,76,-3.7605623652074753E-4],[127,6,77,-9.916471918036368E-4],[127,6,78,-0.002023349939005497],[127,6,79,-0.0035447305165021807],[127,7,64,0.08961098712121984],[127,7,65,0.06889046120302333],[127,7,66,0.05199485496939332],[127,7,67,0.03840652114355121],[127,7,68,0.027652826115095223],[127,7,69,0.019304113964187058],[127,7,70,0.012971604129412896],[127,7,71,0.008305237302517428],[127,7,72,0.004991483811186233],[127,7,73,0.002751128338067496],[127,7,74,0.0013370443194198685],[127,7,75,5.31970771868563E-4],[127,7,76,1.463036185977988E-4],[127,7,77,1.5912828845089455E-5],[127,7,78,-4.148113561278545E-9],[127,7,79,-2.1023074820058347E-5],[127,8,64,0.18750467583993466],[127,8,65,0.15296543447744806],[127,8,66,0.12358607377092644],[127,8,67,0.09877858429050199],[127,8,68,0.07800130272843689],[127,8,69,0.060757004220650536],[127,8,70,0.04659092227775258],[127,8,71,0.03508871064599359],[127,8,72,0.025874361124704943],[127,8,73,0.01860809098747552],[127,8,74,0.012984213187205272],[127,8,75,0.008729001967930241],[127,8,76,0.005598565872417144],[127,8,77,0.0033767394239093773],[127,8,78,0.0018730039762878757],[127,8,79,9.204473790091429E-4],[127,9,64,0.33894378446720014],[127,9,65,0.2870729111564633],[127,9,66,0.24177670932511858],[127,9,67,0.20239682612989005],[127,9,68,0.1683224894582518],[127,9,69,0.13898872602806175],[127,9,70,0.11387450103975749],[127,9,71,0.09250079343916955],[127,9,72,0.07442862058270253],[127,9,73,0.05925702575095197],[127,9,74,0.04662104152812344],[127,9,75,0.036189641544302986],[127,9,76,0.027663692487059577],[127,9,77,0.020773917625688674],[127,9,78,0.01527888235523395],[127,9,79,0.010963011473122525],[127,10,64,0.5556096889706088],[127,10,65,0.4828943917752083],[127,10,66,0.4182483866039236],[127,10,67,0.3609429959328977],[127,10,68,0.3102982597309536],[127,10,69,0.2656812768181168],[127,10,70,0.22650446169698635],[127,10,71,0.1922237306530752],[127,10,72,0.16233663068083853],[127,10,73,0.13638042448003623],[127,10,74,0.11393014437749704],[127,10,75,0.09459662754523467],[127,10,76,0.07802454433868233],[127,10,77,0.06389043096370363],[127,10,78,0.05190073699218129],[127,10,79,0.04178989750527504],[127,11,64,0.8491836693908761],[127,11,65,0.7521112804957458],[127,11,66,0.6646826337623222],[127,11,67,0.5860987457121195],[127,11,68,0.5156103892750081],[127,11,69,0.45251655588743545],[127,11,70,0.3961628269609993],[127,11,71,0.34593966825600375],[127,11,72,0.30128066048145846],[127,11,73,0.26166067916451385],[127,11,74,0.22659403648257198],[127,11,75,0.1956325973026671],[127,11,76,0.16836388116898168],[127,11,77,0.1444091614129133],[127,11,78,0.12342157191795927],[127,11,79,0.10508423138454563],[127,12,64,1.0],[127,12,65,1.0],[127,12,66,0.9927608821275822],[127,12,67,0.8895456302073262],[127,12,68,0.7959405561032245],[127,12,69,0.711176364376399],[127,12,70,0.6345315209487652],[127,12,71,0.5653306531855087],[127,12,72,0.5029428795822011],[127,12,73,0.44678008189765644],[127,12,74,0.3962951322644098],[127,12,75,0.3509800873948035],[127,12,76,0.31036436154045627],[127,12,77,0.27401288934569473],[127,12,78,0.24152428913948784],[127,12,79,0.21252903657681416],[127,13,64,1.0],[127,13,65,1.0],[127,13,66,1.0],[127,13,67,1.0],[127,13,68,1.0],[127,13,69,1.0],[127,13,70,0.9532923691617193],[127,13,71,0.8620786333240632],[127,13,72,0.7790053580882805],[127,13,73,0.7034208248451458],[127,13,74,0.6347157457834742],[127,13,75,0.57232153360838],[127,13,76,0.515708542795383],[127,13,77,0.46438429348754584],[127,13,78,0.4178916885922264],[127,13,79,0.375807234053978],[127,14,64,1.0],[127,14,65,1.0],[127,14,66,1.0],[127,14,67,1.0],[127,14,68,1.0],[127,14,69,1.0],[127,14,70,1.0],[127,14,71,1.0],[127,14,72,1.0],[127,14,73,1.0],[127,14,74,0.9535380907090049],[127,14,75,0.871339270904722],[127,14,76,0.7960788810185804],[127,14,77,0.7272059508765752],[127,14,78,0.6642064680964124],[127,14,79,0.6066016422469601],[127,15,64,1.0],[127,15,65,1.0],[127,15,66,1.0],[127,15,67,1.0],[127,15,68,1.0],[127,15,69,1.0],[127,15,70,1.0],[127,15,71,1.0],[127,15,72,1.0],[127,15,73,1.0],[127,15,74,1.0],[127,15,75,1.0],[127,15,76,1.0],[127,15,77,1.0],[127,15,78,0.9921512233169041],[127,15,79,0.9165949770023353],[127,16,64,1.0],[127,16,65,1.0],[127,16,66,1.0],[127,16,67,1.0],[127,16,68,1.0],[127,16,69,1.0],[127,16,70,1.0],[127,16,71,1.0],[127,16,72,1.0],[127,16,73,1.0],[127,16,74,1.0],[127,16,75,1.0],[127,16,76,1.0],[127,16,77,1.0],[127,16,78,1.0],[127,16,79,1.0],[127,17,64,1.0],[127,17,65,1.0],[127,17,66,1.0],[127,17,67,1.0],[127,17,68,1.0],[127,17,69,1.0],[127,17,70,1.0],[127,17,71,1.0],[127,17,72,1.0],[127,17,73,1.0],[127,17,74,1.0],[127,17,75,1.0],[127,17,76,1.0],[127,17,77,1.0],[127,17,78,1.0],[127,17,79,1.0],[127,18,64,1.0],[127,18,65,1.0],[127,18,66,1.0],[127,18,67,1.0],[127,18,68,1.0],[127,18,69,1.0],[127,18,70,1.0],[127,18,71,1.0],[127,18,72,1.0],[127,18,73,1.0],[127,18,74,1.0],[127,18,75,1.0],[127,18,76,1.0],[127,18,77,1.0],[127,18,78,1.0],[127,18,79,1.0],[127,19,64,1.0],[127,19,65,1.0],[127,19,66,1.0],[127,19,67,1.0],[127,19,68,1.0],[127,19,69,1.0],[127,19,70,1.0],[127,19,71,1.0],[127,19,72,1.0],[127,19,73,1.0],[127,19,74,1.0],[127,19,75,1.0],[127,19,76,1.0],[127,19,77,1.0],[127,19,78,1.0],[127,19,79,1.0],[127,20,64,1.0],[127,20,65,1.0],[127,20,66,1.0],[127,20,67,1.0],[127,20,68,1.0],[127,20,69,1.0],[127,20,70,1.0],[127,20,71,1.0],[127,20,72,1.0],[127,20,73,1.0],[127,20,74,1.0],[127,20,75,1.0],[127,20,76,1.0],[127,20,77,1.0],[127,20,78,1.0],[127,20,79,1.0],[127,21,64,1.0],[127,21,65,1.0],[127,21,66,1.0],[127,21,67,1.0],[127,21,68,1.0],[127,21,69,1.0],[127,21,70,1.0],[127,21,71,1.0],[127,21,72,1.0],[127,21,73,1.0],[127,21,74,1.0],[127,21,75,1.0],[127,21,76,1.0],[127,21,77,1.0],[127,21,78,1.0],[127,21,79,1.0],[127,22,64,1.0],[127,22,65,1.0],[127,22,66,1.0],[127,22,67,1.0],[127,22,68,1.0],[127,22,69,1.0],[127,22,70,1.0],[127,22,71,1.0],[127,22,72,1.0],[127,22,73,1.0],[127,22,74,1.0],[127,22,75,1.0],[127,22,76,1.0],[127,22,77,1.0],[127,22,78,1.0],[127,22,79,1.0],[127,23,64,1.0],[127,23,65,1.0],[127,23,66,1.0],[127,23,67,1.0],[127,23,68,1.0],[127,23,69,1.0],[127,23,70,1.0],[127,23,71,1.0],[127,23,72,1.0],[127,23,73,1.0],[127,23,74,1.0],[127,23,75,1.0],[127,23,76,1.0],[127,23,77,1.0],[127,23,78,1.0],[127,23,79,1.0],[127,24,64,1.0],[127,24,65,1.0],[127,24,66,1.0],[127,24,67,1.0],[127,24,68,1.0],[127,24,69,1.0],[127,24,70,1.0],[127,24,71,1.0],[127,24,72,1.0],[127,24,73,1.0],[127,24,74,1.0],[127,24,75,1.0],[127,24,76,1.0],[127,24,77,1.0],[127,24,78,1.0],[127,24,79,1.0],[127,25,64,1.0],[127,25,65,1.0],[127,25,66,1.0],[127,25,67,1.0],[127,25,68,1.0],[127,25,69,1.0],[127,25,70,1.0],[127,25,71,1.0],[127,25,72,1.0],[127,25,73,1.0],[127,25,74,1.0],[127,25,75,1.0],[127,25,76,1.0],[127,25,77,1.0],[127,25,78,1.0],[127,25,79,1.0],[127,26,64,1.0],[127,26,65,1.0],[127,26,66,1.0],[127,26,67,1.0],[127,26,68,1.0],[127,26,69,1.0],[127,26,70,1.0],[127,26,71,1.0],[127,26,72,1.0],[127,26,73,1.0],[127,26,74,1.0],[127,26,75,1.0],[127,26,76,1.0],[127,26,77,1.0],[127,26,78,1.0],[127,26,79,1.0],[127,27,64,1.0],[127,27,65,1.0],[127,27,66,1.0],[127,27,67,1.0],[127,27,68,1.0],[127,27,69,1.0],[127,27,70,1.0],[127,27,71,1.0],[127,27,72,1.0],[127,27,73,1.0],[127,27,74,1.0],[127,27,75,1.0],[127,27,76,1.0],[127,27,77,1.0],[127,27,78,1.0],[127,27,79,1.0],[127,28,64,1.0],[127,28,65,1.0],[127,28,66,1.0],[127,28,67,1.0],[127,28,68,1.0],[127,28,69,1.0],[127,28,70,1.0],[127,28,71,1.0],[127,28,72,1.0],[127,28,73,1.0],[127,28,74,1.0],[127,28,75,1.0],[127,28,76,1.0],[127,28,77,1.0],[127,28,78,1.0],[127,28,79,1.0],[127,29,64,1.0],[127,29,65,1.0],[127,29,66,1.0],[127,29,67,1.0],[127,29,68,1.0],[127,29,69,1.0],[127,29,70,1.0],[127,29,71,1.0],[127,29,72,1.0],[127,29,73,1.0],[127,29,74,1.0],[127,29,75,1.0],[127,29,76,1.0],[127,29,77,1.0],[127,29,78,1.0],[127,29,79,1.0],[127,30,64,1.0],[127,30,65,1.0],[127,30,66,1.0],[127,30,67,1.0],[127,30,68,1.0],[127,30,69,1.0],[127,30,70,1.0],[127,30,71,1.0],[127,30,72,1.0],[127,30,73,1.0],[127,30,74,1.0],[127,30,75,1.0],[127,30,76,1.0],[127,30,77,1.0],[127,30,78,1.0],[127,30,79,1.0],[127,31,64,1.0],[127,31,65,1.0],[127,31,66,1.0],[127,31,67,1.0],[127,31,68,1.0],[127,31,69,1.0],[127,31,70,1.0],[127,31,71,1.0],[127,31,72,1.0],[127,31,73,1.0],[127,31,74,1.0],[127,31,75,1.0],[127,31,76,1.0],[127,31,77,1.0],[127,31,78,1.0],[127,31,79,1.0],[127,32,64,1.0],[127,32,65,1.0],[127,32,66,1.0],[127,32,67,1.0],[127,32,68,1.0],[127,32,69,1.0],[127,32,70,1.0],[127,32,71,1.0],[127,32,72,1.0],[127,32,73,1.0],[127,32,74,1.0],[127,32,75,1.0],[127,32,76,1.0],[127,32,77,1.0],[127,32,78,1.0],[127,32,79,1.0],[127,33,64,1.0],[127,33,65,1.0],[127,33,66,1.0],[127,33,67,1.0],[127,33,68,1.0],[127,33,69,1.0],[127,33,70,1.0],[127,33,71,1.0],[127,33,72,1.0],[127,33,73,1.0],[127,33,74,1.0],[127,33,75,1.0],[127,33,76,1.0],[127,33,77,1.0],[127,33,78,1.0],[127,33,79,1.0],[127,34,64,1.0],[127,34,65,1.0],[127,34,66,1.0],[127,34,67,1.0],[127,34,68,1.0],[127,34,69,1.0],[127,34,70,1.0],[127,34,71,1.0],[127,34,72,1.0],[127,34,73,1.0],[127,34,74,1.0],[127,34,75,1.0],[127,34,76,1.0],[127,34,77,1.0],[127,34,78,1.0],[127,34,79,1.0],[127,35,64,1.0],[127,35,65,1.0],[127,35,66,1.0],[127,35,67,1.0],[127,35,68,1.0],[127,35,69,1.0],[127,35,70,1.0],[127,35,71,1.0],[127,35,72,1.0],[127,35,73,1.0],[127,35,74,1.0],[127,35,75,1.0],[127,35,76,1.0],[127,35,77,1.0],[127,35,78,1.0],[127,35,79,1.0],[127,36,64,1.0],[127,36,65,1.0],[127,36,66,1.0],[127,36,67,1.0],[127,36,68,1.0],[127,36,69,1.0],[127,36,70,1.0],[127,36,71,1.0],[127,36,72,1.0],[127,36,73,1.0],[127,36,74,1.0],[127,36,75,1.0],[127,36,76,1.0],[127,36,77,1.0],[127,36,78,1.0],[127,36,79,1.0],[127,37,64,1.0],[127,37,65,1.0],[127,37,66,1.0],[127,37,67,1.0],[127,37,68,1.0],[127,37,69,1.0],[127,37,70,1.0],[127,37,71,1.0],[127,37,72,1.0],[127,37,73,1.0],[127,37,74,1.0],[127,37,75,1.0],[127,37,76,1.0],[127,37,77,1.0],[127,37,78,1.0],[127,37,79,1.0],[127,38,64,1.0],[127,38,65,1.0],[127,38,66,1.0],[127,38,67,1.0],[127,38,68,1.0],[127,38,69,1.0],[127,38,70,1.0],[127,38,71,1.0],[127,38,72,1.0],[127,38,73,1.0],[127,38,74,1.0],[127,38,75,1.0],[127,38,76,1.0],[127,38,77,1.0],[127,38,78,1.0],[127,38,79,1.0],[127,39,64,1.0],[127,39,65,1.0],[127,39,66,1.0],[127,39,67,1.0],[127,39,68,1.0],[127,39,69,1.0],[127,39,70,1.0],[127,39,71,1.0],[127,39,72,1.0],[127,39,73,1.0],[127,39,74,1.0],[127,39,75,1.0],[127,39,76,1.0],[127,39,77,1.0],[127,39,78,1.0],[127,39,79,1.0],[127,40,64,1.0],[127,40,65,1.0],[127,40,66,1.0],[127,40,67,1.0],[127,40,68,1.0],[127,40,69,1.0],[127,40,70,1.0],[127,40,71,1.0],[127,40,72,1.0],[127,40,73,1.0],[127,40,74,1.0],[127,40,75,1.0],[127,40,76,1.0],[127,40,77,1.0],[127,40,78,1.0],[127,40,79,1.0],[127,41,64,1.0],[127,41,65,1.0],[127,41,66,1.0],[127,41,67,1.0],[127,41,68,1.0],[127,41,69,1.0],[127,41,70,1.0],[127,41,71,1.0],[127,41,72,1.0],[127,41,73,1.0],[127,41,74,1.0],[127,41,75,1.0],[127,41,76,1.0],[127,41,77,1.0],[127,41,78,1.0],[127,41,79,1.0],[127,42,64,1.0],[127,42,65,1.0],[127,42,66,1.0],[127,42,67,1.0],[127,42,68,1.0],[127,42,69,1.0],[127,42,70,1.0],[127,42,71,1.0],[127,42,72,1.0],[127,42,73,1.0],[127,42,74,1.0],[127,42,75,1.0],[127,42,76,1.0],[127,42,77,1.0],[127,42,78,1.0],[127,42,79,1.0],[127,43,64,1.0],[127,43,65,1.0],[127,43,66,1.0],[127,43,67,1.0],[127,43,68,1.0],[127,43,69,1.0],[127,43,70,1.0],[127,43,71,1.0],[127,43,72,1.0],[127,43,73,1.0],[127,43,74,1.0],[127,43,75,1.0],[127,43,76,1.0],[127,43,77,1.0],[127,43,78,1.0],[127,43,79,1.0],[127,44,64,1.0],[127,44,65,1.0],[127,44,66,1.0],[127,44,67,1.0],[127,44,68,1.0],[127,44,69,1.0],[127,44,70,1.0],[127,44,71,1.0],[127,44,72,1.0],[127,44,73,1.0],[127,44,74,1.0],[127,44,75,1.0],[127,44,76,1.0],[127,44,77,1.0],[127,44,78,1.0],[127,44,79,1.0],[127,45,64,1.0],[127,45,65,1.0],[127,45,66,1.0],[127,45,67,1.0],[127,45,68,1.0],[127,45,69,1.0],[127,45,70,1.0],[127,45,71,1.0],[127,45,72,1.0],[127,45,73,1.0],[127,45,74,1.0],[127,45,75,1.0],[127,45,76,1.0],[127,45,77,1.0],[127,45,78,1.0],[127,45,79,1.0],[127,46,64,1.0],[127,46,65,1.0],[127,46,66,1.0],[127,46,67,1.0],[127,46,68,1.0],[127,46,69,1.0],[127,46,70,1.0],[127,46,71,1.0],[127,46,72,1.0],[127,46,73,1.0],[127,46,74,1.0],[127,46,75,1.0],[127,46,76,1.0],[127,46,77,1.0],[127,46,78,1.0],[127,46,79,1.0],[127,47,64,1.0],[127,47,65,1.0],[127,47,66,1.0],[127,47,67,1.0],[127,47,68,1.0],[127,47,69,1.0],[127,47,70,1.0],[127,47,71,1.0],[127,47,72,1.0],[127,47,73,1.0],[127,47,74,1.0],[127,47,75,1.0],[127,47,76,1.0],[127,47,77,1.0],[127,47,78,1.0],[127,47,79,1.0],[127,48,64,1.0],[127,48,65,1.0],[127,48,66,1.0],[127,48,67,1.0],[127,48,68,1.0],[127,48,69,1.0],[127,48,70,1.0],[127,48,71,1.0],[127,48,72,1.0],[127,48,73,1.0],[127,48,74,1.0],[127,48,75,1.0],[127,48,76,1.0],[127,48,77,1.0],[127,48,78,1.0],[127,48,79,1.0],[127,49,64,1.0],[127,49,65,1.0],[127,49,66,1.0],[127,49,67,1.0],[127,49,68,1.0],[127,49,69,1.0],[127,49,70,1.0],[127,49,71,1.0],[127,49,72,1.0],[127,49,73,1.0],[127,49,74,1.0],[127,49,75,1.0],[127,49,76,1.0],[127,49,77,1.0],[127,49,78,1.0],[127,49,79,1.0],[127,50,64,1.0],[127,50,65,1.0],[127,50,66,1.0],[127,50,67,1.0],[127,50,68,1.0],[127,50,69,1.0],[127,50,70,1.0],[127,50,71,1.0],[127,50,72,1.0],[127,50,73,1.0],[127,50,74,1.0],[127,50,75,1.0],[127,50,76,1.0],[127,50,77,1.0],[127,50,78,1.0],[127,50,79,1.0],[127,51,64,1.0],[127,51,65,1.0],[127,51,66,1.0],[127,51,67,1.0],[127,51,68,1.0],[127,51,69,1.0],[127,51,70,1.0],[127,51,71,1.0],[127,51,72,1.0],[127,51,73,1.0],[127,51,74,1.0],[127,51,75,1.0],[127,51,76,1.0],[127,51,77,1.0],[127,51,78,1.0],[127,51,79,1.0],[127,52,64,1.0],[127,52,65,1.0],[127,52,66,1.0],[127,52,67,1.0],[127,52,68,1.0],[127,52,69,1.0],[127,52,70,1.0],[127,52,71,1.0],[127,52,72,1.0],[127,52,73,1.0],[127,52,74,1.0],[127,52,75,1.0],[127,52,76,1.0],[127,52,77,1.0],[127,52,78,1.0],[127,52,79,1.0],[127,53,64,1.0],[127,53,65,1.0],[127,53,66,1.0],[127,53,67,1.0],[127,53,68,1.0],[127,53,69,1.0],[127,53,70,1.0],[127,53,71,1.0],[127,53,72,1.0],[127,53,73,1.0],[127,53,74,1.0],[127,53,75,1.0],[127,53,76,1.0],[127,53,77,1.0],[127,53,78,1.0],[127,53,79,1.0],[127,54,64,1.0],[127,54,65,1.0],[127,54,66,1.0],[127,54,67,1.0],[127,54,68,1.0],[127,54,69,1.0],[127,54,70,1.0],[127,54,71,1.0],[127,54,72,1.0],[127,54,73,1.0],[127,54,74,1.0],[127,54,75,1.0],[127,54,76,1.0],[127,54,77,1.0],[127,54,78,1.0],[127,54,79,1.0],[127,55,64,1.0],[127,55,65,1.0],[127,55,66,1.0],[127,55,67,1.0],[127,55,68,1.0],[127,55,69,1.0],[127,55,70,1.0],[127,55,71,1.0],[127,55,72,1.0],[127,55,73,1.0],[127,55,74,1.0],[127,55,75,1.0],[127,55,76,1.0],[127,55,77,1.0],[127,55,78,1.0],[127,55,79,1.0],[127,56,64,1.0],[127,56,65,1.0],[127,56,66,1.0],[127,56,67,1.0],[127,56,68,1.0],[127,56,69,1.0],[127,56,70,1.0],[127,56,71,1.0],[127,56,72,1.0],[127,56,73,1.0],[127,56,74,1.0],[127,56,75,1.0],[127,56,76,1.0],[127,56,77,1.0],[127,56,78,1.0],[127,56,79,1.0],[127,57,64,1.0],[127,57,65,1.0],[127,57,66,1.0],[127,57,67,1.0],[127,57,68,1.0],[127,57,69,1.0],[127,57,70,1.0],[127,57,71,1.0],[127,57,72,1.0],[127,57,73,1.0],[127,57,74,1.0],[127,57,75,1.0],[127,57,76,1.0],[127,57,77,1.0],[127,57,78,1.0],[127,57,79,1.0],[127,58,64,1.0],[127,58,65,1.0],[127,58,66,1.0],[127,58,67,1.0],[127,58,68,1.0],[127,58,69,1.0],[127,58,70,1.0],[127,58,71,1.0],[127,58,72,1.0],[127,58,73,1.0],[127,58,74,1.0],[127,58,75,1.0],[127,58,76,1.0],[127,58,77,1.0],[127,58,78,1.0],[127,58,79,1.0],[127,59,64,1.0],[127,59,65,1.0],[127,59,66,1.0],[127,59,67,1.0],[127,59,68,1.0],[127,59,69,1.0],[127,59,70,1.0],[127,59,71,1.0],[127,59,72,1.0],[127,59,73,1.0],[127,59,74,1.0],[127,59,75,1.0],[127,59,76,1.0],[127,59,77,1.0],[127,59,78,1.0],[127,59,79,1.0],[127,60,64,1.0],[127,60,65,1.0],[127,60,66,1.0],[127,60,67,1.0],[127,60,68,1.0],[127,60,69,1.0],[127,60,70,1.0],[127,60,71,1.0],[127,60,72,1.0],[127,60,73,1.0],[127,60,74,1.0],[127,60,75,1.0],[127,60,76,1.0],[127,60,77,1.0],[127,60,78,1.0],[127,60,79,1.0],[127,61,64,1.0],[127,61,65,1.0],[127,61,66,1.0],[127,61,67,1.0],[127,61,68,1.0],[127,61,69,1.0],[127,61,70,1.0],[127,61,71,1.0],[127,61,72,1.0],[127,61,73,1.0],[127,61,74,1.0],[127,61,75,1.0],[127,61,76,1.0],[127,61,77,1.0],[127,61,78,1.0],[127,61,79,1.0],[127,62,64,1.0],[127,62,65,1.0],[127,62,66,1.0],[127,62,67,1.0],[127,62,68,1.0],[127,62,69,1.0],[127,62,70,1.0],[127,62,71,1.0],[127,62,72,1.0],[127,62,73,1.0],[127,62,74,1.0],[127,62,75,1.0],[127,62,76,1.0],[127,62,77,1.0],[127,62,78,1.0],[127,62,79,1.0],[127,63,64,1.0],[127,63,65,1.0],[127,63,66,1.0],[127,63,67,1.0],[127,63,68,1.0],[127,63,69,1.0],[127,63,70,1.0],[127,63,71,1.0],[127,63,72,1.0],[127,63,73,1.0],[127,63,74,1.0],[127,63,75,1.0],[127,63,76,1.0],[127,63,77,1.0],[127,63,78,1.0],[127,63,79,1.0],[127,64,64,1.0],[127,64,65,1.0],[127,64,66,1.0],[127,64,67,1.0],[127,64,68,1.0],[127,64,69,1.0],[127,64,70,1.0],[127,64,71,1.0],[127,64,72,1.0],[127,64,73,1.0],[127,64,74,1.0],[127,64,75,1.0],[127,64,76,1.0],[127,64,77,1.0],[127,64,78,1.0],[127,64,79,1.0],[127,65,64,1.0],[127,65,65,1.0],[127,65,66,1.0],[127,65,67,1.0],[127,65,68,1.0],[127,65,69,1.0],[127,65,70,1.0],[127,65,71,1.0],[127,65,72,1.0],[127,65,73,1.0],[127,65,74,1.0],[127,65,75,1.0],[127,65,76,1.0],[127,65,77,1.0],[127,65,78,1.0],[127,65,79,1.0],[127,66,64,1.0],[127,66,65,1.0],[127,66,66,1.0],[127,66,67,1.0],[127,66,68,1.0],[127,66,69,1.0],[127,66,70,1.0],[127,66,71,1.0],[127,66,72,1.0],[127,66,73,1.0],[127,66,74,1.0],[127,66,75,1.0],[127,66,76,1.0],[127,66,77,1.0],[127,66,78,1.0],[127,66,79,1.0],[127,67,64,1.0],[127,67,65,1.0],[127,67,66,1.0],[127,67,67,1.0],[127,67,68,1.0],[127,67,69,1.0],[127,67,70,1.0],[127,67,71,1.0],[127,67,72,1.0],[127,67,73,1.0],[127,67,74,1.0],[127,67,75,1.0],[127,67,76,1.0],[127,67,77,1.0],[127,67,78,1.0],[127,67,79,1.0],[127,68,64,1.0],[127,68,65,1.0],[127,68,66,1.0],[127,68,67,1.0],[127,68,68,1.0],[127,68,69,1.0],[127,68,70,1.0],[127,68,71,1.0],[127,68,72,1.0],[127,68,73,1.0],[127,68,74,1.0],[127,68,75,1.0],[127,68,76,1.0],[127,68,77,1.0],[127,68,78,1.0],[127,68,79,1.0],[127,69,64,1.0],[127,69,65,1.0],[127,69,66,1.0],[127,69,67,1.0],[127,69,68,1.0],[127,69,69,1.0],[127,69,70,1.0],[127,69,71,1.0],[127,69,72,1.0],[127,69,73,1.0],[127,69,74,1.0],[127,69,75,1.0],[127,69,76,1.0],[127,69,77,1.0],[127,69,78,1.0],[127,69,79,1.0],[127,70,64,1.0],[127,70,65,1.0],[127,70,66,1.0],[127,70,67,1.0],[127,70,68,1.0],[127,70,69,1.0],[127,70,70,1.0],[127,70,71,1.0],[127,70,72,1.0],[127,70,73,1.0],[127,70,74,1.0],[127,70,75,1.0],[127,70,76,1.0],[127,70,77,1.0],[127,70,78,1.0],[127,70,79,1.0],[127,71,64,1.0],[127,71,65,1.0],[127,71,66,1.0],[127,71,67,1.0],[127,71,68,1.0],[127,71,69,1.0],[127,71,70,1.0],[127,71,71,1.0],[127,71,72,1.0],[127,71,73,1.0],[127,71,74,1.0],[127,71,75,1.0],[127,71,76,1.0],[127,71,77,1.0],[127,71,78,1.0],[127,71,79,1.0],[127,72,64,1.0],[127,72,65,1.0],[127,72,66,1.0],[127,72,67,1.0],[127,72,68,1.0],[127,72,69,1.0],[127,72,70,1.0],[127,72,71,1.0],[127,72,72,1.0],[127,72,73,1.0],[127,72,74,1.0],[127,72,75,1.0],[127,72,76,1.0],[127,72,77,1.0],[127,72,78,1.0],[127,72,79,1.0],[127,73,64,1.0],[127,73,65,1.0],[127,73,66,1.0],[127,73,67,1.0],[127,73,68,1.0],[127,73,69,1.0],[127,73,70,1.0],[127,73,71,1.0],[127,73,72,1.0],[127,73,73,1.0],[127,73,74,1.0],[127,73,75,1.0],[127,73,76,1.0],[127,73,77,1.0],[127,73,78,1.0],[127,73,79,1.0],[127,74,64,1.0],[127,74,65,1.0],[127,74,66,1.0],[127,74,67,1.0],[127,74,68,1.0],[127,74,69,1.0],[127,74,70,1.0],[127,74,71,1.0],[127,74,72,1.0],[127,74,73,1.0],[127,74,74,1.0],[127,74,75,1.0],[127,74,76,1.0],[127,74,77,1.0],[127,74,78,1.0],[127,74,79,1.0],[127,75,64,1.0],[127,75,65,1.0],[127,75,66,1.0],[127,75,67,1.0],[127,75,68,1.0],[127,75,69,1.0],[127,75,70,1.0],[127,75,71,1.0],[127,75,72,1.0],[127,75,73,1.0],[127,75,74,1.0],[127,75,75,1.0],[127,75,76,1.0],[127,75,77,1.0],[127,75,78,1.0],[127,75,79,1.0],[127,76,64,1.0],[127,76,65,1.0],[127,76,66,1.0],[127,76,67,1.0],[127,76,68,1.0],[127,76,69,1.0],[127,76,70,1.0],[127,76,71,1.0],[127,76,72,1.0],[127,76,73,1.0],[127,76,74,1.0],[127,76,75,1.0],[127,76,76,1.0],[127,76,77,1.0],[127,76,78,1.0],[127,76,79,1.0],[127,77,64,1.0],[127,77,65,1.0],[127,77,66,1.0],[127,77,67,1.0],[127,77,68,1.0],[127,77,69,1.0],[127,77,70,1.0],[127,77,71,1.0],[127,77,72,1.0],[127,77,73,1.0],[127,77,74,1.0],[127,77,75,1.0],[127,77,76,1.0],[127,77,77,1.0],[127,77,78,1.0],[127,77,79,1.0],[127,78,64,1.0],[127,78,65,1.0],[127,78,66,1.0],[127,78,67,1.0],[127,78,68,1.0],[127,78,69,1.0],[127,78,70,1.0],[127,78,71,1.0],[127,78,72,1.0],[127,78,73,1.0],[127,78,74,1.0],[127,78,75,1.0],[127,78,76,1.0],[127,78,77,1.0],[127,78,78,1.0],[127,78,79,1.0],[127,79,64,1.0],[127,79,65,1.0],[127,79,66,1.0],[127,79,67,1.0],[127,79,68,1.0],[127,79,69,1.0],[127,79,70,1.0],[127,79,71,1.0],[127,79,72,1.0],[127,79,73,1.0],[127,79,74,1.0],[127,79,75,1.0],[127,79,76,1.0],[127,79,77,1.0],[127,79,78,1.0],[127,79,79,1.0],[127,80,64,1.0],[127,80,65,1.0],[127,80,66,1.0],[127,80,67,1.0],[127,80,68,1.0],[127,80,69,1.0],[127,80,70,1.0],[127,80,71,1.0],[127,80,72,1.0],[127,80,73,1.0],[127,80,74,1.0],[127,80,75,1.0],[127,80,76,1.0],[127,80,77,1.0],[127,80,78,1.0],[127,80,79,1.0],[127,81,64,1.0],[127,81,65,1.0],[127,81,66,1.0],[127,81,67,1.0],[127,81,68,1.0],[127,81,69,1.0],[127,81,70,1.0],[127,81,71,1.0],[127,81,72,1.0],[127,81,73,1.0],[127,81,74,1.0],[127,81,75,1.0],[127,81,76,1.0],[127,81,77,1.0],[127,81,78,1.0],[127,81,79,1.0],[127,82,64,1.0],[127,82,65,1.0],[127,82,66,1.0],[127,82,67,1.0],[127,82,68,1.0],[127,82,69,1.0],[127,82,70,1.0],[127,82,71,1.0],[127,82,72,1.0],[127,82,73,1.0],[127,82,74,1.0],[127,82,75,1.0],[127,82,76,1.0],[127,82,77,1.0],[127,82,78,1.0],[127,82,79,1.0],[127,83,64,1.0],[127,83,65,1.0],[127,83,66,1.0],[127,83,67,1.0],[127,83,68,1.0],[127,83,69,1.0],[127,83,70,1.0],[127,83,71,1.0],[127,83,72,1.0],[127,83,73,1.0],[127,83,74,1.0],[127,83,75,1.0],[127,83,76,1.0],[127,83,77,1.0],[127,83,78,1.0],[127,83,79,1.0],[127,84,64,1.0],[127,84,65,1.0],[127,84,66,1.0],[127,84,67,1.0],[127,84,68,1.0],[127,84,69,1.0],[127,84,70,1.0],[127,84,71,1.0],[127,84,72,1.0],[127,84,73,1.0],[127,84,74,1.0],[127,84,75,1.0],[127,84,76,1.0],[127,84,77,1.0],[127,84,78,1.0],[127,84,79,1.0],[127,85,64,1.0],[127,85,65,1.0],[127,85,66,1.0],[127,85,67,1.0],[127,85,68,1.0],[127,85,69,1.0],[127,85,70,1.0],[127,85,71,1.0],[127,85,72,1.0],[127,85,73,1.0],[127,85,74,1.0],[127,85,75,1.0],[127,85,76,1.0],[127,85,77,1.0],[127,85,78,1.0],[127,85,79,1.0],[127,86,64,1.0],[127,86,65,1.0],[127,86,66,1.0],[127,86,67,1.0],[127,86,68,1.0],[127,86,69,1.0],[127,86,70,1.0],[127,86,71,1.0],[127,86,72,1.0],[127,86,73,1.0],[127,86,74,1.0],[127,86,75,1.0],[127,86,76,1.0],[127,86,77,1.0],[127,86,78,1.0],[127,86,79,1.0],[127,87,64,1.0],[127,87,65,1.0],[127,87,66,1.0],[127,87,67,1.0],[127,87,68,1.0],[127,87,69,1.0],[127,87,70,1.0],[127,87,71,1.0],[127,87,72,1.0],[127,87,73,1.0],[127,87,74,1.0],[127,87,75,1.0],[127,87,76,1.0],[127,87,77,1.0],[127,87,78,1.0],[127,87,79,1.0],[127,88,64,1.0],[127,88,65,1.0],[127,88,66,1.0],[127,88,67,1.0],[127,88,68,1.0],[127,88,69,1.0],[127,88,70,1.0],[127,88,71,1.0],[127,88,72,1.0],[127,88,73,1.0],[127,88,74,1.0],[127,88,75,1.0],[127,88,76,1.0],[127,88,77,1.0],[127,88,78,1.0],[127,88,79,1.0],[127,89,64,1.0],[127,89,65,1.0],[127,89,66,1.0],[127,89,67,1.0],[127,89,68,1.0],[127,89,69,1.0],[127,89,70,1.0],[127,89,71,1.0],[127,89,72,1.0],[127,89,73,1.0],[127,89,74,1.0],[127,89,75,1.0],[127,89,76,1.0],[127,89,77,1.0],[127,89,78,1.0],[127,89,79,1.0],[127,90,64,1.0],[127,90,65,1.0],[127,90,66,1.0],[127,90,67,1.0],[127,90,68,1.0],[127,90,69,1.0],[127,90,70,1.0],[127,90,71,1.0],[127,90,72,1.0],[127,90,73,1.0],[127,90,74,1.0],[127,90,75,1.0],[127,90,76,1.0],[127,90,77,1.0],[127,90,78,1.0],[127,90,79,1.0],[127,91,64,1.0],[127,91,65,1.0],[127,91,66,1.0],[127,91,67,1.0],[127,91,68,1.0],[127,91,69,1.0],[127,91,70,1.0],[127,91,71,1.0],[127,91,72,1.0],[127,91,73,1.0],[127,91,74,1.0],[127,91,75,1.0],[127,91,76,1.0],[127,91,77,1.0],[127,91,78,1.0],[127,91,79,1.0],[127,92,64,1.0],[127,92,65,1.0],[127,92,66,1.0],[127,92,67,1.0],[127,92,68,1.0],[127,92,69,1.0],[127,92,70,1.0],[127,92,71,1.0],[127,92,72,1.0],[127,92,73,1.0],[127,92,74,1.0],[127,92,75,1.0],[127,92,76,1.0],[127,92,77,1.0],[127,92,78,1.0],[127,92,79,1.0],[127,93,64,1.0],[127,93,65,1.0],[127,93,66,1.0],[127,93,67,1.0],[127,93,68,1.0],[127,93,69,1.0],[127,93,70,1.0],[127,93,71,1.0],[127,93,72,1.0],[127,93,73,1.0],[127,93,74,1.0],[127,93,75,1.0],[127,93,76,1.0],[127,93,77,1.0],[127,93,78,1.0],[127,93,79,1.0],[127,94,64,1.0],[127,94,65,1.0],[127,94,66,1.0],[127,94,67,1.0],[127,94,68,1.0],[127,94,69,1.0],[127,94,70,1.0],[127,94,71,1.0],[127,94,72,1.0],[127,94,73,1.0],[127,94,74,1.0],[127,94,75,1.0],[127,94,76,1.0],[127,94,77,1.0],[127,94,78,1.0],[127,94,79,1.0],[127,95,64,1.0],[127,95,65,1.0],[127,95,66,1.0],[127,95,67,1.0],[127,95,68,1.0],[127,95,69,1.0],[127,95,70,1.0],[127,95,71,1.0],[127,95,72,1.0],[127,95,73,1.0],[127,95,74,1.0],[127,95,75,1.0],[127,95,76,1.0],[127,95,77,1.0],[127,95,78,1.0],[127,95,79,1.0],[127,96,64,1.0],[127,96,65,1.0],[127,96,66,1.0],[127,96,67,1.0],[127,96,68,1.0],[127,96,69,1.0],[127,96,70,1.0],[127,96,71,1.0],[127,96,72,1.0],[127,96,73,1.0],[127,96,74,1.0],[127,96,75,1.0],[127,96,76,1.0],[127,96,77,1.0],[127,96,78,1.0],[127,96,79,1.0],[127,97,64,1.0],[127,97,65,1.0],[127,97,66,1.0],[127,97,67,1.0],[127,97,68,1.0],[127,97,69,1.0],[127,97,70,1.0],[127,97,71,1.0],[127,97,72,1.0],[127,97,73,1.0],[127,97,74,1.0],[127,97,75,1.0],[127,97,76,1.0],[127,97,77,1.0],[127,97,78,1.0],[127,97,79,1.0],[127,98,64,1.0],[127,98,65,1.0],[127,98,66,1.0],[127,98,67,1.0],[127,98,68,1.0],[127,98,69,1.0],[127,98,70,1.0],[127,98,71,1.0],[127,98,72,1.0],[127,98,73,1.0],[127,98,74,1.0],[127,98,75,1.0],[127,98,76,1.0],[127,98,77,1.0],[127,98,78,1.0],[127,98,79,1.0],[127,99,64,1.0],[127,99,65,1.0],[127,99,66,1.0],[127,99,67,1.0],[127,99,68,1.0],[127,99,69,1.0],[127,99,70,1.0],[127,99,71,1.0],[127,99,72,1.0],[127,99,73,1.0],[127,99,74,1.0],[127,99,75,1.0],[127,99,76,1.0],[127,99,77,1.0],[127,99,78,1.0],[127,99,79,1.0],[127,100,64,1.0],[127,100,65,1.0],[127,100,66,1.0],[127,100,67,1.0],[127,100,68,1.0],[127,100,69,1.0],[127,100,70,1.0],[127,100,71,1.0],[127,100,72,1.0],[127,100,73,1.0],[127,100,74,1.0],[127,100,75,1.0],[127,100,76,1.0],[127,100,77,1.0],[127,100,78,1.0],[127,100,79,1.0],[127,101,64,1.0],[127,101,65,1.0],[127,101,66,1.0],[127,101,67,1.0],[127,101,68,1.0],[127,101,69,1.0],[127,101,70,1.0],[127,101,71,1.0],[127,101,72,1.0],[127,101,73,1.0],[127,101,74,1.0],[127,101,75,1.0],[127,101,76,1.0],[127,101,77,1.0],[127,101,78,1.0],[127,101,79,1.0],[127,102,64,1.0],[127,102,65,1.0],[127,102,66,1.0],[127,102,67,1.0],[127,102,68,1.0],[127,102,69,1.0],[127,102,70,1.0],[127,102,71,1.0],[127,102,72,1.0],[127,102,73,1.0],[127,102,74,1.0],[127,102,75,1.0],[127,102,76,1.0],[127,102,77,1.0],[127,102,78,1.0],[127,102,79,1.0],[127,103,64,1.0],[127,103,65,1.0],[127,103,66,1.0],[127,103,67,1.0],[127,103,68,1.0],[127,103,69,1.0],[127,103,70,1.0],[127,103,71,1.0],[127,103,72,1.0],[127,103,73,1.0],[127,103,74,1.0],[127,103,75,1.0],[127,103,76,1.0],[127,103,77,1.0],[127,103,78,1.0],[127,103,79,1.0],[127,104,64,1.0],[127,104,65,1.0],[127,104,66,1.0],[127,104,67,1.0],[127,104,68,1.0],[127,104,69,1.0],[127,104,70,1.0],[127,104,71,1.0],[127,104,72,1.0],[127,104,73,1.0],[127,104,74,1.0],[127,104,75,1.0],[127,104,76,1.0],[127,104,77,1.0],[127,104,78,1.0],[127,104,79,1.0],[127,105,64,1.0],[127,105,65,1.0],[127,105,66,1.0],[127,105,67,1.0],[127,105,68,1.0],[127,105,69,1.0],[127,105,70,1.0],[127,105,71,1.0],[127,105,72,1.0],[127,105,73,1.0],[127,105,74,1.0],[127,105,75,1.0],[127,105,76,1.0],[127,105,77,1.0],[127,105,78,1.0],[127,105,79,1.0],[127,106,64,1.0],[127,106,65,1.0],[127,106,66,1.0],[127,106,67,1.0],[127,106,68,1.0],[127,106,69,1.0],[127,106,70,1.0],[127,106,71,1.0],[127,106,72,1.0],[127,106,73,1.0],[127,106,74,1.0],[127,106,75,1.0],[127,106,76,1.0],[127,106,77,1.0],[127,106,78,1.0],[127,106,79,1.0],[127,107,64,1.0],[127,107,65,1.0],[127,107,66,1.0],[127,107,67,1.0],[127,107,68,1.0],[127,107,69,1.0],[127,107,70,1.0],[127,107,71,1.0],[127,107,72,1.0],[127,107,73,1.0],[127,107,74,1.0],[127,107,75,1.0],[127,107,76,1.0],[127,107,77,1.0],[127,107,78,1.0],[127,107,79,1.0],[127,108,64,1.0],[127,108,65,1.0],[127,108,66,1.0],[127,108,67,1.0],[127,108,68,1.0],[127,108,69,1.0],[127,108,70,1.0],[127,108,71,1.0],[127,108,72,1.0],[127,108,73,1.0],[127,108,74,1.0],[127,108,75,1.0],[127,108,76,1.0],[127,108,77,1.0],[127,108,78,1.0],[127,108,79,1.0],[127,109,64,1.0],[127,109,65,1.0],[127,109,66,1.0],[127,109,67,1.0],[127,109,68,1.0],[127,109,69,1.0],[127,109,70,1.0],[127,109,71,1.0],[127,109,72,1.0],[127,109,73,1.0],[127,109,74,1.0],[127,109,75,1.0],[127,109,76,1.0],[127,109,77,1.0],[127,109,78,1.0],[127,109,79,1.0],[127,110,64,1.0],[127,110,65,1.0],[127,110,66,1.0],[127,110,67,1.0],[127,110,68,1.0],[127,110,69,1.0],[127,110,70,1.0],[127,110,71,1.0],[127,110,72,1.0],[127,110,73,1.0],[127,110,74,1.0],[127,110,75,1.0],[127,110,76,1.0],[127,110,77,1.0],[127,110,78,1.0],[127,110,79,1.0],[127,111,64,1.0],[127,111,65,1.0],[127,111,66,1.0],[127,111,67,1.0],[127,111,68,1.0],[127,111,69,1.0],[127,111,70,1.0],[127,111,71,1.0],[127,111,72,1.0],[127,111,73,1.0],[127,111,74,1.0],[127,111,75,1.0],[127,111,76,1.0],[127,111,77,1.0],[127,111,78,1.0],[127,111,79,1.0],[127,112,64,1.0],[127,112,65,1.0],[127,112,66,1.0],[127,112,67,1.0],[127,112,68,1.0],[127,112,69,1.0],[127,112,70,1.0],[127,112,71,1.0],[127,112,72,1.0],[127,112,73,1.0],[127,112,74,1.0],[127,112,75,1.0],[127,112,76,1.0],[127,112,77,1.0],[127,112,78,1.0],[127,112,79,1.0],[127,113,64,1.0],[127,113,65,1.0],[127,113,66,1.0],[127,113,67,1.0],[127,113,68,1.0],[127,113,69,1.0],[127,113,70,1.0],[127,113,71,1.0],[127,113,72,1.0],[127,113,73,1.0],[127,113,74,1.0],[127,113,75,1.0],[127,113,76,1.0],[127,113,77,1.0],[127,113,78,1.0],[127,113,79,1.0],[127,114,64,1.0],[127,114,65,1.0],[127,114,66,1.0],[127,114,67,1.0],[127,114,68,1.0],[127,114,69,1.0],[127,114,70,1.0],[127,114,71,1.0],[127,114,72,1.0],[127,114,73,1.0],[127,114,74,1.0],[127,114,75,1.0],[127,114,76,1.0],[127,114,77,1.0],[127,114,78,1.0],[127,114,79,1.0],[127,115,64,1.0],[127,115,65,1.0],[127,115,66,1.0],[127,115,67,1.0],[127,115,68,1.0],[127,115,69,1.0],[127,115,70,1.0],[127,115,71,1.0],[127,115,72,1.0],[127,115,73,1.0],[127,115,74,1.0],[127,115,75,1.0],[127,115,76,1.0],[127,115,77,1.0],[127,115,78,1.0],[127,115,79,1.0],[127,116,64,1.0],[127,116,65,1.0],[127,116,66,1.0],[127,116,67,1.0],[127,116,68,1.0],[127,116,69,1.0],[127,116,70,1.0],[127,116,71,1.0],[127,116,72,1.0],[127,116,73,1.0],[127,116,74,1.0],[127,116,75,1.0],[127,116,76,1.0],[127,116,77,1.0],[127,116,78,1.0],[127,116,79,1.0],[127,117,64,1.0],[127,117,65,1.0],[127,117,66,1.0],[127,117,67,1.0],[127,117,68,1.0],[127,117,69,1.0],[127,117,70,1.0],[127,117,71,1.0],[127,117,72,1.0],[127,117,73,1.0],[127,117,74,1.0],[127,117,75,1.0],[127,117,76,1.0],[127,117,77,1.0],[127,117,78,1.0],[127,117,79,1.0],[127,118,64,1.0],[127,118,65,1.0],[127,118,66,1.0],[127,118,67,1.0],[127,118,68,1.0],[127,118,69,1.0],[127,118,70,1.0],[127,118,71,1.0],[127,118,72,1.0],[127,118,73,1.0],[127,118,74,1.0],[127,118,75,1.0],[127,118,76,1.0],[127,118,77,1.0],[127,118,78,1.0],[127,118,79,1.0],[127,119,64,1.0],[127,119,65,1.0],[127,119,66,1.0],[127,119,67,1.0],[127,119,68,1.0],[127,119,69,1.0],[127,119,70,1.0],[127,119,71,1.0],[127,119,72,1.0],[127,119,73,1.0],[127,119,74,1.0],[127,119,75,1.0],[127,119,76,1.0],[127,119,77,1.0],[127,119,78,1.0],[127,119,79,1.0],[127,120,64,1.0],[127,120,65,1.0],[127,120,66,1.0],[127,120,67,1.0],[127,120,68,1.0],[127,120,69,1.0],[127,120,70,1.0],[127,120,71,1.0],[127,120,72,1.0],[127,120,73,1.0],[127,120,74,1.0],[127,120,75,1.0],[127,120,76,1.0],[127,120,77,1.0],[127,120,78,1.0],[127,120,79,1.0],[127,121,64,1.0],[127,121,65,1.0],[127,121,66,1.0],[127,121,67,1.0],[127,121,68,1.0],[127,121,69,1.0],[127,121,70,1.0],[127,121,71,1.0],[127,121,72,1.0],[127,121,73,1.0],[127,121,74,1.0],[127,121,75,1.0],[127,121,76,1.0],[127,121,77,1.0],[127,121,78,1.0],[127,121,79,1.0],[127,122,64,1.0],[127,122,65,1.0],[127,122,66,1.0],[127,122,67,1.0],[127,122,68,1.0],[127,122,69,1.0],[127,122,70,1.0],[127,122,71,1.0],[127,122,72,1.0],[127,122,73,1.0],[127,122,74,1.0],[127,122,75,1.0],[127,122,76,1.0],[127,122,77,1.0],[127,122,78,1.0],[127,122,79,1.0],[127,123,64,1.0],[127,123,65,1.0],[127,123,66,1.0],[127,123,67,1.0],[127,123,68,1.0],[127,123,69,1.0],[127,123,70,1.0],[127,123,71,1.0],[127,123,72,1.0],[127,123,73,1.0],[127,123,74,1.0],[127,123,75,1.0],[127,123,76,1.0],[127,123,77,1.0],[127,123,78,1.0],[127,123,79,1.0],[127,124,64,1.0],[127,124,65,1.0],[127,124,66,1.0],[127,124,67,1.0],[127,124,68,1.0],[127,124,69,1.0],[127,124,70,1.0],[127,124,71,1.0],[127,124,72,1.0],[127,124,73,1.0],[127,124,74,1.0],[127,124,75,1.0],[127,124,76,1.0],[127,124,77,1.0],[127,124,78,1.0],[127,124,79,1.0],[127,125,64,1.0],[127,125,65,1.0],[127,125,66,1.0],[127,125,67,1.0],[127,125,68,1.0],[127,125,69,1.0],[127,125,70,1.0],[127,125,71,1.0],[127,125,72,1.0],[127,125,73,1.0],[127,125,74,1.0],[127,125,75,1.0],[127,125,76,1.0],[127,125,77,1.0],[127,125,78,1.0],[127,125,79,1.0],[127,126,64,1.0],[127,126,65,1.0],[127,126,66,1.0],[127,126,67,1.0],[127,126,68,1.0],[127,126,69,1.0],[127,126,70,1.0],[127,126,71,1.0],[127,126,72,1.0],[127,126,73,1.0],[127,126,74,1.0],[127,126,75,1.0],[127,126,76,1.0],[127,126,77,1.0],[127,126,78,1.0],[127,126,79,1.0],[127,127,64,1.0],[127,127,65,1.0],[127,127,66,1.0],[127,127,67,1.0],[127,127,68,1.0],[127,127,69,1.0],[127,127,70,1.0],[127,127,71,1.0],[127,127,72,1.0],[127,127,73,1.0],[127,127,74,1.0],[127,127,75,1.0],[127,127,76,1.0],[127,127,77,1.0],[127,127,78,1.0],[127,127,79,1.0],[127,128,64,1.0],[127,128,65,1.0],[127,128,66,1.0],[127,128,67,1.0],[127,128,68,1.0],[127,128,69,1.0],[127,128,70,1.0],[127,128,71,1.0],[127,128,72,1.0],[127,128,73,1.0],[127,128,74,1.0],[127,128,75,1.0],[127,128,76,1.0],[127,128,77,1.0],[127,128,78,1.0],[127,128,79,1.0],[127,129,64,1.0],[127,129,65,1.0],[127,129,66,1.0],[127,129,67,1.0],[127,129,68,1.0],[127,129,69,1.0],[127,129,70,1.0],[127,129,71,1.0],[127,129,72,1.0],[127,129,73,1.0],[127,129,74,1.0],[127,129,75,1.0],[127,129,76,1.0],[127,129,77,1.0],[127,129,78,1.0],[127,129,79,1.0],[127,130,64,1.0],[127,130,65,1.0],[127,130,66,1.0],[127,130,67,1.0],[127,130,68,1.0],[127,130,69,1.0],[127,130,70,1.0],[127,130,71,1.0],[127,130,72,1.0],[127,130,73,1.0],[127,130,74,1.0],[127,130,75,1.0],[127,130,76,1.0],[127,130,77,1.0],[127,130,78,1.0],[127,130,79,1.0],[127,131,64,1.0],[127,131,65,1.0],[127,131,66,1.0],[127,131,67,1.0],[127,131,68,1.0],[127,131,69,1.0],[127,131,70,1.0],[127,131,71,1.0],[127,131,72,1.0],[127,131,73,1.0],[127,131,74,1.0],[127,131,75,1.0],[127,131,76,1.0],[127,131,77,1.0],[127,131,78,1.0],[127,131,79,1.0],[127,132,64,1.0],[127,132,65,1.0],[127,132,66,1.0],[127,132,67,1.0],[127,132,68,1.0],[127,132,69,1.0],[127,132,70,1.0],[127,132,71,1.0],[127,132,72,1.0],[127,132,73,1.0],[127,132,74,1.0],[127,132,75,1.0],[127,132,76,1.0],[127,132,77,1.0],[127,132,78,1.0],[127,132,79,1.0],[127,133,64,1.0],[127,133,65,1.0],[127,133,66,1.0],[127,133,67,1.0],[127,133,68,1.0],[127,133,69,1.0],[127,133,70,1.0],[127,133,71,1.0],[127,133,72,1.0],[127,133,73,1.0],[127,133,74,1.0],[127,133,75,1.0],[127,133,76,1.0],[127,133,77,1.0],[127,133,78,1.0],[127,133,79,1.0],[127,134,64,1.0],[127,134,65,1.0],[127,134,66,1.0],[127,134,67,1.0],[127,134,68,1.0],[127,134,69,1.0],[127,134,70,1.0],[127,134,71,1.0],[127,134,72,1.0],[127,134,73,1.0],[127,134,74,1.0],[127,134,75,1.0],[127,134,76,1.0],[127,134,77,1.0],[127,134,78,1.0],[127,134,79,1.0],[127,135,64,1.0],[127,135,65,1.0],[127,135,66,1.0],[127,135,67,1.0],[127,135,68,1.0],[127,135,69,1.0],[127,135,70,1.0],[127,135,71,1.0],[127,135,72,1.0],[127,135,73,1.0],[127,135,74,1.0],[127,135,75,1.0],[127,135,76,1.0],[127,135,77,1.0],[127,135,78,1.0],[127,135,79,1.0],[127,136,64,1.0],[127,136,65,1.0],[127,136,66,1.0],[127,136,67,1.0],[127,136,68,1.0],[127,136,69,1.0],[127,136,70,1.0],[127,136,71,1.0],[127,136,72,1.0],[127,136,73,1.0],[127,136,74,1.0],[127,136,75,1.0],[127,136,76,1.0],[127,136,77,1.0],[127,136,78,1.0],[127,136,79,1.0],[127,137,64,1.0],[127,137,65,1.0],[127,137,66,1.0],[127,137,67,1.0],[127,137,68,1.0],[127,137,69,1.0],[127,137,70,1.0],[127,137,71,1.0],[127,137,72,1.0],[127,137,73,1.0],[127,137,74,1.0],[127,137,75,1.0],[127,137,76,1.0],[127,137,77,1.0],[127,137,78,1.0],[127,137,79,1.0],[127,138,64,1.0],[127,138,65,1.0],[127,138,66,1.0],[127,138,67,1.0],[127,138,68,1.0],[127,138,69,1.0],[127,138,70,1.0],[127,138,71,1.0],[127,138,72,1.0],[127,138,73,1.0],[127,138,74,1.0],[127,138,75,1.0],[127,138,76,1.0],[127,138,77,1.0],[127,138,78,1.0],[127,138,79,1.0],[127,139,64,1.0],[127,139,65,1.0],[127,139,66,1.0],[127,139,67,1.0],[127,139,68,1.0],[127,139,69,1.0],[127,139,70,1.0],[127,139,71,1.0],[127,139,72,1.0],[127,139,73,1.0],[127,139,74,1.0],[127,139,75,1.0],[127,139,76,1.0],[127,139,77,1.0],[127,139,78,1.0],[127,139,79,1.0],[127,140,64,1.0],[127,140,65,1.0],[127,140,66,1.0],[127,140,67,1.0],[127,140,68,1.0],[127,140,69,1.0],[127,140,70,1.0],[127,140,71,1.0],[127,140,72,1.0],[127,140,73,1.0],[127,140,74,1.0],[127,140,75,1.0],[127,140,76,1.0],[127,140,77,1.0],[127,140,78,1.0],[127,140,79,1.0],[127,141,64,1.0],[127,141,65,1.0],[127,141,66,1.0],[127,141,67,1.0],[127,141,68,1.0],[127,141,69,1.0],[127,141,70,1.0],[127,141,71,1.0],[127,141,72,1.0],[127,141,73,1.0],[127,141,74,1.0],[127,141,75,1.0],[127,141,76,1.0],[127,141,77,1.0],[127,141,78,1.0],[127,141,79,1.0],[127,142,64,1.0],[127,142,65,1.0],[127,142,66,1.0],[127,142,67,1.0],[127,142,68,1.0],[127,142,69,1.0],[127,142,70,1.0],[127,142,71,1.0],[127,142,72,1.0],[127,142,73,1.0],[127,142,74,1.0],[127,142,75,1.0],[127,142,76,1.0],[127,142,77,1.0],[127,142,78,1.0],[127,142,79,1.0],[127,143,64,1.0],[127,143,65,1.0],[127,143,66,1.0],[127,143,67,1.0],[127,143,68,1.0],[127,143,69,1.0],[127,143,70,1.0],[127,143,71,1.0],[127,143,72,1.0],[127,143,73,1.0],[127,143,74,1.0],[127,143,75,1.0],[127,143,76,1.0],[127,143,77,1.0],[127,143,78,1.0],[127,143,79,1.0],[127,144,64,1.0],[127,144,65,1.0],[127,144,66,1.0],[127,144,67,1.0],[127,144,68,1.0],[127,144,69,1.0],[127,144,70,1.0],[127,144,71,1.0],[127,144,72,1.0],[127,144,73,1.0],[127,144,74,1.0],[127,144,75,1.0],[127,144,76,1.0],[127,144,77,1.0],[127,144,78,1.0],[127,144,79,1.0],[127,145,64,1.0],[127,145,65,1.0],[127,145,66,1.0],[127,145,67,1.0],[127,145,68,1.0],[127,145,69,1.0],[127,145,70,1.0],[127,145,71,1.0],[127,145,72,1.0],[127,145,73,1.0],[127,145,74,1.0],[127,145,75,1.0],[127,145,76,1.0],[127,145,77,1.0],[127,145,78,1.0],[127,145,79,1.0],[127,146,64,1.0],[127,146,65,1.0],[127,146,66,1.0],[127,146,67,1.0],[127,146,68,1.0],[127,146,69,1.0],[127,146,70,1.0],[127,146,71,1.0],[127,146,72,1.0],[127,146,73,1.0],[127,146,74,1.0],[127,146,75,1.0],[127,146,76,1.0],[127,146,77,1.0],[127,146,78,1.0],[127,146,79,1.0],[127,147,64,1.0],[127,147,65,1.0],[127,147,66,1.0],[127,147,67,1.0],[127,147,68,1.0],[127,147,69,1.0],[127,147,70,1.0],[127,147,71,1.0],[127,147,72,1.0],[127,147,73,1.0],[127,147,74,1.0],[127,147,75,1.0],[127,147,76,1.0],[127,147,77,1.0],[127,147,78,1.0],[127,147,79,1.0],[127,148,64,1.0],[127,148,65,1.0],[127,148,66,1.0],[127,148,67,1.0],[127,148,68,1.0],[127,148,69,1.0],[127,148,70,1.0],[127,148,71,1.0],[127,148,72,1.0],[127,148,73,1.0],[127,148,74,1.0],[127,148,75,1.0],[127,148,76,1.0],[127,148,77,1.0],[127,148,78,1.0],[127,148,79,1.0],[127,149,64,1.0],[127,149,65,1.0],[127,149,66,1.0],[127,149,67,1.0],[127,149,68,1.0],[127,149,69,1.0],[127,149,70,1.0],[127,149,71,1.0],[127,149,72,1.0],[127,149,73,1.0],[127,149,74,1.0],[127,149,75,1.0],[127,149,76,1.0],[127,149,77,1.0],[127,149,78,1.0],[127,149,79,1.0],[127,150,64,1.0],[127,150,65,1.0],[127,150,66,1.0],[127,150,67,1.0],[127,150,68,1.0],[127,150,69,1.0],[127,150,70,1.0],[127,150,71,1.0],[127,150,72,1.0],[127,150,73,1.0],[127,150,74,1.0],[127,150,75,1.0],[127,150,76,1.0],[127,150,77,1.0],[127,150,78,1.0],[127,150,79,1.0],[127,151,64,1.0],[127,151,65,1.0],[127,151,66,1.0],[127,151,67,1.0],[127,151,68,1.0],[127,151,69,1.0],[127,151,70,1.0],[127,151,71,1.0],[127,151,72,1.0],[127,151,73,1.0],[127,151,74,1.0],[127,151,75,1.0],[127,151,76,1.0],[127,151,77,1.0],[127,151,78,1.0],[127,151,79,1.0],[127,152,64,1.0],[127,152,65,1.0],[127,152,66,1.0],[127,152,67,1.0],[127,152,68,1.0],[127,152,69,1.0],[127,152,70,1.0],[127,152,71,1.0],[127,152,72,1.0],[127,152,73,1.0],[127,152,74,1.0],[127,152,75,1.0],[127,152,76,1.0],[127,152,77,1.0],[127,152,78,1.0],[127,152,79,1.0],[127,153,64,1.0],[127,153,65,1.0],[127,153,66,1.0],[127,153,67,1.0],[127,153,68,1.0],[127,153,69,1.0],[127,153,70,1.0],[127,153,71,1.0],[127,153,72,1.0],[127,153,73,1.0],[127,153,74,1.0],[127,153,75,1.0],[127,153,76,1.0],[127,153,77,1.0],[127,153,78,1.0],[127,153,79,1.0],[127,154,64,1.0],[127,154,65,1.0],[127,154,66,1.0],[127,154,67,1.0],[127,154,68,1.0],[127,154,69,1.0],[127,154,70,1.0],[127,154,71,1.0],[127,154,72,1.0],[127,154,73,1.0],[127,154,74,1.0],[127,154,75,1.0],[127,154,76,1.0],[127,154,77,1.0],[127,154,78,1.0],[127,154,79,1.0],[127,155,64,1.0],[127,155,65,1.0],[127,155,66,1.0],[127,155,67,1.0],[127,155,68,1.0],[127,155,69,1.0],[127,155,70,1.0],[127,155,71,1.0],[127,155,72,1.0],[127,155,73,1.0],[127,155,74,1.0],[127,155,75,1.0],[127,155,76,1.0],[127,155,77,1.0],[127,155,78,1.0],[127,155,79,1.0],[127,156,64,1.0],[127,156,65,1.0],[127,156,66,1.0],[127,156,67,1.0],[127,156,68,1.0],[127,156,69,1.0],[127,156,70,1.0],[127,156,71,1.0],[127,156,72,1.0],[127,156,73,1.0],[127,156,74,1.0],[127,156,75,1.0],[127,156,76,1.0],[127,156,77,1.0],[127,156,78,1.0],[127,156,79,1.0],[127,157,64,1.0],[127,157,65,1.0],[127,157,66,1.0],[127,157,67,1.0],[127,157,68,1.0],[127,157,69,1.0],[127,157,70,1.0],[127,157,71,1.0],[127,157,72,1.0],[127,157,73,1.0],[127,157,74,1.0],[127,157,75,1.0],[127,157,76,1.0],[127,157,77,1.0],[127,157,78,1.0],[127,157,79,1.0],[127,158,64,1.0],[127,158,65,1.0],[127,158,66,1.0],[127,158,67,1.0],[127,158,68,1.0],[127,158,69,1.0],[127,158,70,1.0],[127,158,71,1.0],[127,158,72,1.0],[127,158,73,1.0],[127,158,74,1.0],[127,158,75,1.0],[127,158,76,1.0],[127,158,77,1.0],[127,158,78,1.0],[127,158,79,1.0],[127,159,64,1.0],[127,159,65,1.0],[127,159,66,1.0],[127,159,67,1.0],[127,159,68,1.0],[127,159,69,1.0],[127,159,70,1.0],[127,159,71,1.0],[127,159,72,1.0],[127,159,73,1.0],[127,159,74,1.0],[127,159,75,1.0],[127,159,76,1.0],[127,159,77,1.0],[127,159,78,1.0],[127,159,79,1.0],[127,160,64,1.0],[127,160,65,1.0],[127,160,66,1.0],[127,160,67,1.0],[127,160,68,1.0],[127,160,69,1.0],[127,160,70,1.0],[127,160,71,1.0],[127,160,72,1.0],[127,160,73,1.0],[127,160,74,1.0],[127,160,75,1.0],[127,160,76,1.0],[127,160,77,1.0],[127,160,78,1.0],[127,160,79,1.0],[127,161,64,1.0],[127,161,65,1.0],[127,161,66,1.0],[127,161,67,1.0],[127,161,68,1.0],[127,161,69,1.0],[127,161,70,1.0],[127,161,71,1.0],[127,161,72,1.0],[127,161,73,1.0],[127,161,74,1.0],[127,161,75,1.0],[127,161,76,1.0],[127,161,77,1.0],[127,161,78,1.0],[127,161,79,1.0],[127,162,64,1.0],[127,162,65,1.0],[127,162,66,1.0],[127,162,67,1.0],[127,162,68,1.0],[127,162,69,1.0],[127,162,70,1.0],[127,162,71,1.0],[127,162,72,1.0],[127,162,73,1.0],[127,162,74,1.0],[127,162,75,1.0],[127,162,76,1.0],[127,162,77,1.0],[127,162,78,1.0],[127,162,79,1.0],[127,163,64,1.0],[127,163,65,1.0],[127,163,66,1.0],[127,163,67,1.0],[127,163,68,1.0],[127,163,69,1.0],[127,163,70,1.0],[127,163,71,1.0],[127,163,72,1.0],[127,163,73,1.0],[127,163,74,1.0],[127,163,75,1.0],[127,163,76,1.0],[127,163,77,1.0],[127,163,78,1.0],[127,163,79,1.0],[127,164,64,1.0],[127,164,65,1.0],[127,164,66,1.0],[127,164,67,1.0],[127,164,68,1.0],[127,164,69,1.0],[127,164,70,1.0],[127,164,71,1.0],[127,164,72,1.0],[127,164,73,1.0],[127,164,74,1.0],[127,164,75,1.0],[127,164,76,1.0],[127,164,77,1.0],[127,164,78,1.0],[127,164,79,1.0],[127,165,64,1.0],[127,165,65,1.0],[127,165,66,1.0],[127,165,67,1.0],[127,165,68,1.0],[127,165,69,1.0],[127,165,70,1.0],[127,165,71,1.0],[127,165,72,1.0],[127,165,73,1.0],[127,165,74,1.0],[127,165,75,1.0],[127,165,76,1.0],[127,165,77,1.0],[127,165,78,1.0],[127,165,79,1.0],[127,166,64,1.0],[127,166,65,1.0],[127,166,66,1.0],[127,166,67,1.0],[127,166,68,1.0],[127,166,69,1.0],[127,166,70,1.0],[127,166,71,1.0],[127,166,72,1.0],[127,166,73,1.0],[127,166,74,1.0],[127,166,75,1.0],[127,166,76,1.0],[127,166,77,1.0],[127,166,78,1.0],[127,166,79,1.0],[127,167,64,1.0],[127,167,65,1.0],[127,167,66,1.0],[127,167,67,1.0],[127,167,68,1.0],[127,167,69,1.0],[127,167,70,1.0],[127,167,71,1.0],[127,167,72,1.0],[127,167,73,1.0],[127,167,74,1.0],[127,167,75,1.0],[127,167,76,1.0],[127,167,77,1.0],[127,167,78,1.0],[127,167,79,1.0],[127,168,64,1.0],[127,168,65,1.0],[127,168,66,1.0],[127,168,67,1.0],[127,168,68,1.0],[127,168,69,1.0],[127,168,70,1.0],[127,168,71,1.0],[127,168,72,1.0],[127,168,73,1.0],[127,168,74,1.0],[127,168,75,1.0],[127,168,76,1.0],[127,168,77,1.0],[127,168,78,1.0],[127,168,79,1.0],[127,169,64,1.0],[127,169,65,1.0],[127,169,66,1.0],[127,169,67,1.0],[127,169,68,1.0],[127,169,69,1.0],[127,169,70,1.0],[127,169,71,1.0],[127,169,72,1.0],[127,169,73,1.0],[127,169,74,1.0],[127,169,75,1.0],[127,169,76,1.0],[127,169,77,1.0],[127,169,78,1.0],[127,169,79,1.0],[127,170,64,1.0],[127,170,65,1.0],[127,170,66,1.0],[127,170,67,1.0],[127,170,68,1.0],[127,170,69,1.0],[127,170,70,1.0],[127,170,71,1.0],[127,170,72,1.0],[127,170,73,1.0],[127,170,74,1.0],[127,170,75,1.0],[127,170,76,1.0],[127,170,77,1.0],[127,170,78,1.0],[127,170,79,1.0],[127,171,64,1.0],[127,171,65,1.0],[127,171,66,1.0],[127,171,67,1.0],[127,171,68,1.0],[127,171,69,1.0],[127,171,70,1.0],[127,171,71,1.0],[127,171,72,1.0],[127,171,73,1.0],[127,171,74,1.0],[127,171,75,1.0],[127,171,76,1.0],[127,171,77,1.0],[127,171,78,1.0],[127,171,79,1.0],[127,172,64,1.0],[127,172,65,1.0],[127,172,66,1.0],[127,172,67,1.0],[127,172,68,1.0],[127,172,69,1.0],[127,172,70,1.0],[127,172,71,1.0],[127,172,72,1.0],[127,172,73,1.0],[127,172,74,1.0],[127,172,75,1.0],[127,172,76,1.0],[127,172,77,1.0],[127,172,78,1.0],[127,172,79,1.0],[127,173,64,1.0],[127,173,65,1.0],[127,173,66,1.0],[127,173,67,1.0],[127,173,68,1.0],[127,173,69,1.0],[127,173,70,1.0],[127,173,71,1.0],[127,173,72,1.0],[127,173,73,1.0],[127,173,74,1.0],[127,173,75,1.0],[127,173,76,1.0],[127,173,77,1.0],[127,173,78,1.0],[127,173,79,1.0],[127,174,64,1.0],[127,174,65,1.0],[127,174,66,1.0],[127,174,67,1.0],[127,174,68,1.0],[127,174,69,1.0],[127,174,70,1.0],[127,174,71,1.0],[127,174,72,1.0],[127,174,73,1.0],[127,174,74,1.0],[127,174,75,1.0],[127,174,76,1.0],[127,174,77,1.0],[127,174,78,1.0],[127,174,79,1.0],[127,175,64,1.0],[127,175,65,1.0],[127,175,66,1.0],[127,175,67,1.0],[127,175,68,1.0],[127,175,69,1.0],[127,175,70,1.0],[127,175,71,1.0],[127,175,72,1.0],[127,175,73,1.0],[127,175,74,1.0],[127,175,75,1.0],[127,175,76,1.0],[127,175,77,1.0],[127,175,78,1.0],[127,175,79,1.0],[127,176,64,1.0],[127,176,65,1.0],[127,176,66,1.0],[127,176,67,1.0],[127,176,68,1.0],[127,176,69,1.0],[127,176,70,1.0],[127,176,71,1.0],[127,176,72,1.0],[127,176,73,1.0],[127,176,74,1.0],[127,176,75,1.0],[127,176,76,1.0],[127,176,77,1.0],[127,176,78,1.0],[127,176,79,1.0],[127,177,64,1.0],[127,177,65,1.0],[127,177,66,1.0],[127,177,67,1.0],[127,177,68,1.0],[127,177,69,1.0],[127,177,70,1.0],[127,177,71,1.0],[127,177,72,1.0],[127,177,73,1.0],[127,177,74,1.0],[127,177,75,1.0],[127,177,76,1.0],[127,177,77,1.0],[127,177,78,1.0],[127,177,79,1.0],[127,178,64,1.0],[127,178,65,1.0],[127,178,66,1.0],[127,178,67,1.0],[127,178,68,1.0],[127,178,69,1.0],[127,178,70,1.0],[127,178,71,1.0],[127,178,72,1.0],[127,178,73,1.0],[127,178,74,1.0],[127,178,75,1.0],[127,178,76,1.0],[127,178,77,1.0],[127,178,78,1.0],[127,178,79,1.0],[127,179,64,1.0],[127,179,65,1.0],[127,179,66,1.0],[127,179,67,1.0],[127,179,68,1.0],[127,179,69,1.0],[127,179,70,1.0],[127,179,71,1.0],[127,179,72,1.0],[127,179,73,1.0],[127,179,74,1.0],[127,179,75,1.0],[127,179,76,1.0],[127,179,77,1.0],[127,179,78,1.0],[127,179,79,1.0],[127,180,64,1.0],[127,180,65,1.0],[127,180,66,1.0],[127,180,67,1.0],[127,180,68,1.0],[127,180,69,1.0],[127,180,70,1.0],[127,180,71,1.0],[127,180,72,1.0],[127,180,73,1.0],[127,180,74,1.0],[127,180,75,1.0],[127,180,76,1.0],[127,180,77,1.0],[127,180,78,1.0],[127,180,79,1.0],[127,181,64,1.0],[127,181,65,1.0],[127,181,66,1.0],[127,181,67,1.0],[127,181,68,1.0],[127,181,69,1.0],[127,181,70,1.0],[127,181,71,1.0],[127,181,72,1.0],[127,181,73,1.0],[127,181,74,1.0],[127,181,75,1.0],[127,181,76,1.0],[127,181,77,1.0],[127,181,78,1.0],[127,181,79,1.0],[127,182,64,1.0],[127,182,65,1.0],[127,182,66,1.0],[127,182,67,1.0],[127,182,68,1.0],[127,182,69,1.0],[127,182,70,1.0],[127,182,71,1.0],[127,182,72,1.0],[127,182,73,1.0],[127,182,74,1.0],[127,182,75,1.0],[127,182,76,1.0],[127,182,77,1.0],[127,182,78,1.0],[127,182,79,1.0],[127,183,64,1.0],[127,183,65,1.0],[127,183,66,1.0],[127,183,67,1.0],[127,183,68,1.0],[127,183,69,1.0],[127,183,70,1.0],[127,183,71,1.0],[127,183,72,1.0],[127,183,73,1.0],[127,183,74,1.0],[127,183,75,1.0],[127,183,76,1.0],[127,183,77,1.0],[127,183,78,1.0],[127,183,79,1.0],[127,184,64,1.0],[127,184,65,1.0],[127,184,66,1.0],[127,184,67,1.0],[127,184,68,1.0],[127,184,69,1.0],[127,184,70,1.0],[127,184,71,1.0],[127,184,72,1.0],[127,184,73,1.0],[127,184,74,1.0],[127,184,75,1.0],[127,184,76,1.0],[127,184,77,1.0],[127,184,78,1.0],[127,184,79,1.0],[127,185,64,1.0],[127,185,65,1.0],[127,185,66,1.0],[127,185,67,1.0],[127,185,68,1.0],[127,185,69,1.0],[127,185,70,1.0],[127,185,71,1.0],[127,185,72,1.0],[127,185,73,1.0],[127,185,74,1.0],[127,185,75,1.0],[127,185,76,1.0],[127,185,77,1.0],[127,185,78,1.0],[127,185,79,1.0],[127,186,64,1.0],[127,186,65,1.0],[127,186,66,1.0],[127,186,67,1.0],[127,186,68,1.0],[127,186,69,1.0],[127,186,70,1.0],[127,186,71,1.0],[127,186,72,1.0],[127,186,73,1.0],[127,186,74,1.0],[127,186,75,1.0],[127,186,76,1.0],[127,186,77,1.0],[127,186,78,1.0],[127,186,79,1.0],[127,187,64,1.0],[127,187,65,1.0],[127,187,66,1.0],[127,187,67,1.0],[127,187,68,1.0],[127,187,69,1.0],[127,187,70,1.0],[127,187,71,1.0],[127,187,72,1.0],[127,187,73,1.0],[127,187,74,1.0],[127,187,75,1.0],[127,187,76,1.0],[127,187,77,1.0],[127,187,78,1.0],[127,187,79,1.0],[127,188,64,1.0],[127,188,65,1.0],[127,188,66,1.0],[127,188,67,1.0],[127,188,68,1.0],[127,188,69,1.0],[127,188,70,1.0],[127,188,71,1.0],[127,188,72,1.0],[127,188,73,1.0],[127,188,74,1.0],[127,188,75,1.0],[127,188,76,1.0],[127,188,77,1.0],[127,188,78,1.0],[127,188,79,1.0],[127,189,64,1.0],[127,189,65,1.0],[127,189,66,1.0],[127,189,67,1.0],[127,189,68,1.0],[127,189,69,1.0],[127,189,70,1.0],[127,189,71,1.0],[127,189,72,1.0],[127,189,73,1.0],[127,189,74,1.0],[127,189,75,1.0],[127,189,76,1.0],[127,189,77,1.0],[127,189,78,1.0],[127,189,79,1.0],[127,190,64,1.0],[127,190,65,1.0],[127,190,66,1.0],[127,190,67,1.0],[127,190,68,1.0],[127,190,69,1.0],[127,190,70,1.0],[127,190,71,1.0],[127,190,72,1.0],[127,190,73,1.0],[127,190,74,1.0],[127,190,75,1.0],[127,190,76,1.0],[127,190,77,1.0],[127,190,78,1.0],[127,190,79,1.0],[127,191,64,1.0],[127,191,65,1.0],[127,191,66,1.0],[127,191,67,1.0],[127,191,68,1.0],[127,191,69,1.0],[127,191,70,1.0],[127,191,71,1.0],[127,191,72,1.0],[127,191,73,1.0],[127,191,74,1.0],[127,191,75,1.0],[127,191,76,1.0],[127,191,77,1.0],[127,191,78,1.0],[127,191,79,1.0],[127,192,64,1.0],[127,192,65,1.0],[127,192,66,1.0],[127,192,67,1.0],[127,192,68,1.0],[127,192,69,1.0],[127,192,70,1.0],[127,192,71,1.0],[127,192,72,1.0],[127,192,73,1.0],[127,192,74,1.0],[127,192,75,1.0],[127,192,76,1.0],[127,192,77,1.0],[127,192,78,1.0],[127,192,79,1.0],[127,193,64,1.0],[127,193,65,1.0],[127,193,66,1.0],[127,193,67,1.0],[127,193,68,1.0],[127,193,69,1.0],[127,193,70,1.0],[127,193,71,1.0],[127,193,72,1.0],[127,193,73,1.0],[127,193,74,1.0],[127,193,75,1.0],[127,193,76,1.0],[127,193,77,1.0],[127,193,78,1.0],[127,193,79,1.0],[127,194,64,1.0],[127,194,65,1.0],[127,194,66,1.0],[127,194,67,1.0],[127,194,68,1.0],[127,194,69,1.0],[127,194,70,1.0],[127,194,71,1.0],[127,194,72,1.0],[127,194,73,1.0],[127,194,74,1.0],[127,194,75,1.0],[127,194,76,1.0],[127,194,77,1.0],[127,194,78,1.0],[127,194,79,1.0],[127,195,64,1.0],[127,195,65,1.0],[127,195,66,1.0],[127,195,67,1.0],[127,195,68,1.0],[127,195,69,1.0],[127,195,70,1.0],[127,195,71,1.0],[127,195,72,1.0],[127,195,73,1.0],[127,195,74,1.0],[127,195,75,1.0],[127,195,76,1.0],[127,195,77,1.0],[127,195,78,1.0],[127,195,79,1.0],[127,196,64,1.0],[127,196,65,1.0],[127,196,66,1.0],[127,196,67,1.0],[127,196,68,1.0],[127,196,69,1.0],[127,196,70,1.0],[127,196,71,1.0],[127,196,72,1.0],[127,196,73,1.0],[127,196,74,1.0],[127,196,75,1.0],[127,196,76,1.0],[127,196,77,1.0],[127,196,78,1.0],[127,196,79,1.0],[127,197,64,1.0],[127,197,65,1.0],[127,197,66,1.0],[127,197,67,1.0],[127,197,68,1.0],[127,197,69,1.0],[127,197,70,1.0],[127,197,71,1.0],[127,197,72,1.0],[127,197,73,1.0],[127,197,74,1.0],[127,197,75,1.0],[127,197,76,1.0],[127,197,77,1.0],[127,197,78,1.0],[127,197,79,1.0],[127,198,64,1.0],[127,198,65,1.0],[127,198,66,1.0],[127,198,67,1.0],[127,198,68,1.0],[127,198,69,1.0],[127,198,70,1.0],[127,198,71,1.0],[127,198,72,1.0],[127,198,73,1.0],[127,198,74,1.0],[127,198,75,1.0],[127,198,76,1.0],[127,198,77,1.0],[127,198,78,1.0],[127,198,79,1.0],[127,199,64,1.0],[127,199,65,1.0],[127,199,66,1.0],[127,199,67,1.0],[127,199,68,1.0],[127,199,69,1.0],[127,199,70,1.0],[127,199,71,1.0],[127,199,72,1.0],[127,199,73,1.0],[127,199,74,1.0],[127,199,75,1.0],[127,199,76,1.0],[127,199,77,1.0],[127,199,78,1.0],[127,199,79,1.0],[127,200,64,1.0],[127,200,65,1.0],[127,200,66,1.0],[127,200,67,1.0],[127,200,68,1.0],[127,200,69,1.0],[127,200,70,1.0],[127,200,71,1.0],[127,200,72,1.0],[127,200,73,1.0],[127,200,74,1.0],[127,200,75,1.0],[127,200,76,1.0],[127,200,77,1.0],[127,200,78,1.0],[127,200,79,1.0],[127,201,64,1.0],[127,201,65,1.0],[127,201,66,1.0],[127,201,67,1.0],[127,201,68,1.0],[127,201,69,1.0],[127,201,70,1.0],[127,201,71,1.0],[127,201,72,1.0],[127,201,73,1.0],[127,201,74,1.0],[127,201,75,1.0],[127,201,76,1.0],[127,201,77,1.0],[127,201,78,1.0],[127,201,79,1.0],[127,202,64,1.0],[127,202,65,1.0],[127,202,66,1.0],[127,202,67,1.0],[127,202,68,1.0],[127,202,69,1.0],[127,202,70,1.0],[127,202,71,1.0],[127,202,72,1.0],[127,202,73,1.0],[127,202,74,1.0],[127,202,75,1.0],[127,202,76,1.0],[127,202,77,1.0],[127,202,78,1.0],[127,202,79,1.0],[127,203,64,1.0],[127,203,65,1.0],[127,203,66,1.0],[127,203,67,1.0],[127,203,68,1.0],[127,203,69,1.0],[127,203,70,1.0],[127,203,71,1.0],[127,203,72,1.0],[127,203,73,1.0],[127,203,74,1.0],[127,203,75,1.0],[127,203,76,1.0],[127,203,77,1.0],[127,203,78,1.0],[127,203,79,1.0],[127,204,64,1.0],[127,204,65,1.0],[127,204,66,1.0],[127,204,67,1.0],[127,204,68,1.0],[127,204,69,1.0],[127,204,70,1.0],[127,204,71,1.0],[127,204,72,1.0],[127,204,73,1.0],[127,204,74,1.0],[127,204,75,1.0],[127,204,76,1.0],[127,204,77,1.0],[127,204,78,1.0],[127,204,79,1.0],[127,205,64,1.0],[127,205,65,1.0],[127,205,66,1.0],[127,205,67,1.0],[127,205,68,1.0],[127,205,69,1.0],[127,205,70,1.0],[127,205,71,1.0],[127,205,72,1.0],[127,205,73,1.0],[127,205,74,1.0],[127,205,75,1.0],[127,205,76,1.0],[127,205,77,1.0],[127,205,78,1.0],[127,205,79,1.0],[127,206,64,1.0],[127,206,65,1.0],[127,206,66,1.0],[127,206,67,1.0],[127,206,68,1.0],[127,206,69,1.0],[127,206,70,1.0],[127,206,71,1.0],[127,206,72,1.0],[127,206,73,1.0],[127,206,74,1.0],[127,206,75,1.0],[127,206,76,1.0],[127,206,77,1.0],[127,206,78,1.0],[127,206,79,1.0],[127,207,64,1.0],[127,207,65,1.0],[127,207,66,1.0],[127,207,67,1.0],[127,207,68,1.0],[127,207,69,1.0],[127,207,70,1.0],[127,207,71,1.0],[127,207,72,1.0],[127,207,73,1.0],[127,207,74,1.0],[127,207,75,1.0],[127,207,76,1.0],[127,207,77,1.0],[127,207,78,1.0],[127,207,79,1.0],[127,208,64,1.0],[127,208,65,1.0],[127,208,66,1.0],[127,208,67,1.0],[127,208,68,1.0],[127,208,69,1.0],[127,208,70,1.0],[127,208,71,1.0],[127,208,72,1.0],[127,208,73,1.0],[127,208,74,1.0],[127,208,75,1.0],[127,208,76,1.0],[127,208,77,1.0],[127,208,78,1.0],[127,208,79,1.0],[127,209,64,1.0],[127,209,65,1.0],[127,209,66,1.0],[127,209,67,1.0],[127,209,68,1.0],[127,209,69,1.0],[127,209,70,1.0],[127,209,71,1.0],[127,209,72,1.0],[127,209,73,1.0],[127,209,74,1.0],[127,209,75,1.0],[127,209,76,1.0],[127,209,77,1.0],[127,209,78,1.0],[127,209,79,1.0],[127,210,64,1.0],[127,210,65,1.0],[127,210,66,1.0],[127,210,67,1.0],[127,210,68,1.0],[127,210,69,1.0],[127,210,70,1.0],[127,210,71,1.0],[127,210,72,1.0],[127,210,73,1.0],[127,210,74,1.0],[127,210,75,1.0],[127,210,76,1.0],[127,210,77,1.0],[127,210,78,1.0],[127,210,79,1.0],[127,211,64,1.0],[127,211,65,1.0],[127,211,66,1.0],[127,211,67,1.0],[127,211,68,1.0],[127,211,69,1.0],[127,211,70,1.0],[127,211,71,1.0],[127,211,72,1.0],[127,211,73,1.0],[127,211,74,1.0],[127,211,75,1.0],[127,211,76,1.0],[127,211,77,1.0],[127,211,78,1.0],[127,211,79,1.0],[127,212,64,1.0],[127,212,65,1.0],[127,212,66,1.0],[127,212,67,1.0],[127,212,68,1.0],[127,212,69,1.0],[127,212,70,1.0],[127,212,71,1.0],[127,212,72,1.0],[127,212,73,1.0],[127,212,74,1.0],[127,212,75,1.0],[127,212,76,1.0],[127,212,77,1.0],[127,212,78,1.0],[127,212,79,1.0],[127,213,64,1.0],[127,213,65,1.0],[127,213,66,1.0],[127,213,67,1.0],[127,213,68,1.0],[127,213,69,1.0],[127,213,70,1.0],[127,213,71,1.0],[127,213,72,1.0],[127,213,73,1.0],[127,213,74,1.0],[127,213,75,1.0],[127,213,76,1.0],[127,213,77,1.0],[127,213,78,1.0],[127,213,79,1.0],[127,214,64,1.0],[127,214,65,1.0],[127,214,66,1.0],[127,214,67,1.0],[127,214,68,1.0],[127,214,69,1.0],[127,214,70,1.0],[127,214,71,1.0],[127,214,72,1.0],[127,214,73,1.0],[127,214,74,1.0],[127,214,75,1.0],[127,214,76,1.0],[127,214,77,1.0],[127,214,78,1.0],[127,214,79,1.0],[127,215,64,1.0],[127,215,65,1.0],[127,215,66,1.0],[127,215,67,1.0],[127,215,68,1.0],[127,215,69,1.0],[127,215,70,1.0],[127,215,71,1.0],[127,215,72,1.0],[127,215,73,1.0],[127,215,74,1.0],[127,215,75,1.0],[127,215,76,1.0],[127,215,77,1.0],[127,215,78,1.0],[127,215,79,1.0],[127,216,64,1.0],[127,216,65,1.0],[127,216,66,1.0],[127,216,67,1.0],[127,216,68,1.0],[127,216,69,1.0],[127,216,70,1.0],[127,216,71,1.0],[127,216,72,1.0],[127,216,73,1.0],[127,216,74,1.0],[127,216,75,1.0],[127,216,76,1.0],[127,216,77,1.0],[127,216,78,1.0],[127,216,79,1.0],[127,217,64,1.0],[127,217,65,1.0],[127,217,66,1.0],[127,217,67,1.0],[127,217,68,1.0],[127,217,69,1.0],[127,217,70,1.0],[127,217,71,1.0],[127,217,72,1.0],[127,217,73,1.0],[127,217,74,1.0],[127,217,75,1.0],[127,217,76,1.0],[127,217,77,1.0],[127,217,78,1.0],[127,217,79,1.0],[127,218,64,1.0],[127,218,65,1.0],[127,218,66,1.0],[127,218,67,1.0],[127,218,68,1.0],[127,218,69,1.0],[127,218,70,1.0],[127,218,71,1.0],[127,218,72,1.0],[127,218,73,1.0],[127,218,74,1.0],[127,218,75,1.0],[127,218,76,1.0],[127,218,77,1.0],[127,218,78,1.0],[127,218,79,1.0],[127,219,64,1.0],[127,219,65,1.0],[127,219,66,1.0],[127,219,67,1.0],[127,219,68,1.0],[127,219,69,1.0],[127,219,70,1.0],[127,219,71,1.0],[127,219,72,1.0],[127,219,73,1.0],[127,219,74,1.0],[127,219,75,1.0],[127,219,76,1.0],[127,219,77,1.0],[127,219,78,1.0],[127,219,79,1.0],[127,220,64,1.0],[127,220,65,1.0],[127,220,66,1.0],[127,220,67,1.0],[127,220,68,1.0],[127,220,69,1.0],[127,220,70,1.0],[127,220,71,1.0],[127,220,72,1.0],[127,220,73,1.0],[127,220,74,1.0],[127,220,75,1.0],[127,220,76,1.0],[127,220,77,1.0],[127,220,78,1.0],[127,220,79,1.0],[127,221,64,1.0],[127,221,65,1.0],[127,221,66,1.0],[127,221,67,1.0],[127,221,68,1.0],[127,221,69,1.0],[127,221,70,1.0],[127,221,71,1.0],[127,221,72,1.0],[127,221,73,1.0],[127,221,74,1.0],[127,221,75,1.0],[127,221,76,1.0],[127,221,77,1.0],[127,221,78,1.0],[127,221,79,1.0],[127,222,64,1.0],[127,222,65,1.0],[127,222,66,1.0],[127,222,67,1.0],[127,222,68,1.0],[127,222,69,1.0],[127,222,70,1.0],[127,222,71,1.0],[127,222,72,1.0],[127,222,73,1.0],[127,222,74,1.0],[127,222,75,1.0],[127,222,76,1.0],[127,222,77,1.0],[127,222,78,1.0],[127,222,79,1.0],[127,223,64,1.0],[127,223,65,1.0],[127,223,66,1.0],[127,223,67,1.0],[127,223,68,1.0],[127,223,69,1.0],[127,223,70,1.0],[127,223,71,1.0],[127,223,72,1.0],[127,223,73,1.0],[127,223,74,1.0],[127,223,75,1.0],[127,223,76,1.0],[127,223,77,1.0],[127,223,78,1.0],[127,223,79,1.0],[127,224,64,1.0],[127,224,65,1.0],[127,224,66,1.0],[127,224,67,1.0],[127,224,68,1.0],[127,224,69,1.0],[127,224,70,1.0],[127,224,71,1.0],[127,224,72,1.0],[127,224,73,1.0],[127,224,74,1.0],[127,224,75,1.0],[127,224,76,1.0],[127,224,77,1.0],[127,224,78,1.0],[127,224,79,1.0],[127,225,64,1.0],[127,225,65,1.0],[127,225,66,1.0],[127,225,67,1.0],[127,225,68,1.0],[127,225,69,1.0],[127,225,70,1.0],[127,225,71,1.0],[127,225,72,1.0],[127,225,73,1.0],[127,225,74,1.0],[127,225,75,1.0],[127,225,76,1.0],[127,225,77,1.0],[127,225,78,1.0],[127,225,79,1.0],[127,226,64,1.0],[127,226,65,1.0],[127,226,66,1.0],[127,226,67,1.0],[127,226,68,1.0],[127,226,69,1.0],[127,226,70,1.0],[127,226,71,1.0],[127,226,72,1.0],[127,226,73,1.0],[127,226,74,1.0],[127,226,75,1.0],[127,226,76,1.0],[127,226,77,1.0],[127,226,78,1.0],[127,226,79,1.0],[127,227,64,1.0],[127,227,65,1.0],[127,227,66,1.0],[127,227,67,1.0],[127,227,68,1.0],[127,227,69,1.0],[127,227,70,1.0],[127,227,71,1.0],[127,227,72,1.0],[127,227,73,1.0],[127,227,74,1.0],[127,227,75,1.0],[127,227,76,1.0],[127,227,77,1.0],[127,227,78,1.0],[127,227,79,1.0],[127,228,64,1.0],[127,228,65,1.0],[127,228,66,1.0],[127,228,67,1.0],[127,228,68,1.0],[127,228,69,1.0],[127,228,70,1.0],[127,228,71,1.0],[127,228,72,1.0],[127,228,73,1.0],[127,228,74,1.0],[127,228,75,1.0],[127,228,76,1.0],[127,228,77,1.0],[127,228,78,1.0],[127,228,79,1.0],[127,229,64,1.0],[127,229,65,1.0],[127,229,66,1.0],[127,229,67,1.0],[127,229,68,1.0],[127,229,69,1.0],[127,229,70,1.0],[127,229,71,1.0],[127,229,72,1.0],[127,229,73,1.0],[127,229,74,1.0],[127,229,75,1.0],[127,229,76,1.0],[127,229,77,1.0],[127,229,78,1.0],[127,229,79,1.0],[127,230,64,1.0],[127,230,65,1.0],[127,230,66,1.0],[127,230,67,1.0],[127,230,68,1.0],[127,230,69,1.0],[127,230,70,1.0],[127,230,71,1.0],[127,230,72,1.0],[127,230,73,1.0],[127,230,74,1.0],[127,230,75,1.0],[127,230,76,1.0],[127,230,77,1.0],[127,230,78,1.0],[127,230,79,1.0],[127,231,64,1.0],[127,231,65,1.0],[127,231,66,1.0],[127,231,67,1.0],[127,231,68,1.0],[127,231,69,1.0],[127,231,70,1.0],[127,231,71,1.0],[127,231,72,1.0],[127,231,73,1.0],[127,231,74,1.0],[127,231,75,1.0],[127,231,76,1.0],[127,231,77,1.0],[127,231,78,1.0],[127,231,79,1.0],[127,232,64,1.0],[127,232,65,1.0],[127,232,66,1.0],[127,232,67,1.0],[127,232,68,1.0],[127,232,69,1.0],[127,232,70,1.0],[127,232,71,1.0],[127,232,72,1.0],[127,232,73,1.0],[127,232,74,1.0],[127,232,75,1.0],[127,232,76,1.0],[127,232,77,1.0],[127,232,78,1.0],[127,232,79,1.0],[127,233,64,1.0],[127,233,65,1.0],[127,233,66,1.0],[127,233,67,1.0],[127,233,68,1.0],[127,233,69,1.0],[127,233,70,1.0],[127,233,71,1.0],[127,233,72,1.0],[127,233,73,1.0],[127,233,74,1.0],[127,233,75,1.0],[127,233,76,1.0],[127,233,77,1.0],[127,233,78,1.0],[127,233,79,1.0],[127,234,64,1.0],[127,234,65,1.0],[127,234,66,1.0],[127,234,67,1.0],[127,234,68,1.0],[127,234,69,1.0],[127,234,70,1.0],[127,234,71,1.0],[127,234,72,1.0],[127,234,73,1.0],[127,234,74,1.0],[127,234,75,1.0],[127,234,76,1.0],[127,234,77,1.0],[127,234,78,1.0],[127,234,79,1.0],[127,235,64,1.0],[127,235,65,1.0],[127,235,66,1.0],[127,235,67,1.0],[127,235,68,1.0],[127,235,69,1.0],[127,235,70,1.0],[127,235,71,1.0],[127,235,72,1.0],[127,235,73,1.0],[127,235,74,1.0],[127,235,75,1.0],[127,235,76,1.0],[127,235,77,1.0],[127,235,78,1.0],[127,235,79,1.0],[127,236,64,1.0],[127,236,65,1.0],[127,236,66,1.0],[127,236,67,1.0],[127,236,68,1.0],[127,236,69,1.0],[127,236,70,1.0],[127,236,71,1.0],[127,236,72,1.0],[127,236,73,1.0],[127,236,74,1.0],[127,236,75,1.0],[127,236,76,1.0],[127,236,77,1.0],[127,236,78,1.0],[127,236,79,1.0],[127,237,64,1.0],[127,237,65,1.0],[127,237,66,1.0],[127,237,67,1.0],[127,237,68,1.0],[127,237,69,1.0],[127,237,70,1.0],[127,237,71,1.0],[127,237,72,1.0],[127,237,73,1.0],[127,237,74,1.0],[127,237,75,1.0],[127,237,76,1.0],[127,237,77,1.0],[127,237,78,1.0],[127,237,79,1.0],[127,238,64,1.0],[127,238,65,1.0],[127,238,66,1.0],[127,238,67,1.0],[127,238,68,1.0],[127,238,69,1.0],[127,238,70,1.0],[127,238,71,1.0],[127,238,72,1.0],[127,238,73,1.0],[127,238,74,1.0],[127,238,75,1.0],[127,238,76,1.0],[127,238,77,1.0],[127,238,78,1.0],[127,238,79,1.0],[127,239,64,1.0],[127,239,65,1.0],[127,239,66,1.0],[127,239,67,1.0],[127,239,68,1.0],[127,239,69,1.0],[127,239,70,1.0],[127,239,71,1.0],[127,239,72,1.0],[127,239,73,1.0],[127,239,74,1.0],[127,239,75,1.0],[127,239,76,1.0],[127,239,77,1.0],[127,239,78,1.0],[127,239,79,1.0],[127,240,64,1.0],[127,240,65,1.0],[127,240,66,1.0],[127,240,67,1.0],[127,240,68,1.0],[127,240,69,1.0],[127,240,70,1.0],[127,240,71,1.0],[127,240,72,1.0],[127,240,73,1.0],[127,240,74,1.0],[127,240,75,1.0],[127,240,76,1.0],[127,240,77,1.0],[127,240,78,1.0],[127,240,79,1.0],[127,241,64,1.0],[127,241,65,1.0],[127,241,66,1.0],[127,241,67,1.0],[127,241,68,1.0],[127,241,69,1.0],[127,241,70,1.0],[127,241,71,1.0],[127,241,72,1.0],[127,241,73,1.0],[127,241,74,1.0],[127,241,75,1.0],[127,241,76,1.0],[127,241,77,1.0],[127,241,78,1.0],[127,241,79,1.0],[127,242,64,1.0],[127,242,65,1.0],[127,242,66,1.0],[127,242,67,1.0],[127,242,68,1.0],[127,242,69,1.0],[127,242,70,1.0],[127,242,71,1.0],[127,242,72,1.0],[127,242,73,1.0],[127,242,74,1.0],[127,242,75,1.0],[127,242,76,1.0],[127,242,77,1.0],[127,242,78,1.0],[127,242,79,1.0],[127,243,64,1.0],[127,243,65,1.0],[127,243,66,1.0],[127,243,67,1.0],[127,243,68,1.0],[127,243,69,1.0],[127,243,70,1.0],[127,243,71,1.0],[127,243,72,1.0],[127,243,73,1.0],[127,243,74,1.0],[127,243,75,1.0],[127,243,76,1.0],[127,243,77,1.0],[127,243,78,1.0],[127,243,79,1.0],[127,244,64,1.0],[127,244,65,1.0],[127,244,66,1.0],[127,244,67,1.0],[127,244,68,1.0],[127,244,69,1.0],[127,244,70,1.0],[127,244,71,1.0],[127,244,72,1.0],[127,244,73,1.0],[127,244,74,1.0],[127,244,75,1.0],[127,244,76,1.0],[127,244,77,1.0],[127,244,78,1.0],[127,244,79,1.0],[127,245,64,1.0],[127,245,65,1.0],[127,245,66,1.0],[127,245,67,1.0],[127,245,68,1.0],[127,245,69,1.0],[127,245,70,1.0],[127,245,71,1.0],[127,245,72,1.0],[127,245,73,1.0],[127,245,74,1.0],[127,245,75,1.0],[127,245,76,1.0],[127,245,77,1.0],[127,245,78,1.0],[127,245,79,1.0],[127,246,64,1.0],[127,246,65,1.0],[127,246,66,1.0],[127,246,67,1.0],[127,246,68,1.0],[127,246,69,1.0],[127,246,70,1.0],[127,246,71,1.0],[127,246,72,1.0],[127,246,73,1.0],[127,246,74,1.0],[127,246,75,1.0],[127,246,76,1.0],[127,246,77,1.0],[127,246,78,1.0],[127,246,79,1.0],[127,247,64,1.0],[127,247,65,1.0],[127,247,66,1.0],[127,247,67,1.0],[127,247,68,1.0],[127,247,69,1.0],[127,247,70,1.0],[127,247,71,1.0],[127,247,72,1.0],[127,247,73,1.0],[127,247,74,1.0],[127,247,75,1.0],[127,247,76,1.0],[127,247,77,1.0],[127,247,78,1.0],[127,247,79,1.0],[127,248,64,1.0],[127,248,65,1.0],[127,248,66,1.0],[127,248,67,1.0],[127,248,68,1.0],[127,248,69,1.0],[127,248,70,1.0],[127,248,71,1.0],[127,248,72,1.0],[127,248,73,1.0],[127,248,74,1.0],[127,248,75,1.0],[127,248,76,1.0],[127,248,77,1.0],[127,248,78,1.0],[127,248,79,1.0],[127,249,64,1.0],[127,249,65,1.0],[127,249,66,1.0],[127,249,67,1.0],[127,249,68,1.0],[127,249,69,1.0],[127,249,70,1.0],[127,249,71,1.0],[127,249,72,1.0],[127,249,73,1.0],[127,249,74,1.0],[127,249,75,1.0],[127,249,76,1.0],[127,249,77,1.0],[127,249,78,1.0],[127,249,79,1.0],[127,250,64,1.0],[127,250,65,1.0],[127,250,66,1.0],[127,250,67,1.0],[127,250,68,1.0],[127,250,69,1.0],[127,250,70,1.0],[127,250,71,1.0],[127,250,72,1.0],[127,250,73,1.0],[127,250,74,1.0],[127,250,75,1.0],[127,250,76,1.0],[127,250,77,1.0],[127,250,78,1.0],[127,250,79,1.0],[127,251,64,1.0],[127,251,65,1.0],[127,251,66,1.0],[127,251,67,1.0],[127,251,68,1.0],[127,251,69,1.0],[127,251,70,1.0],[127,251,71,1.0],[127,251,72,1.0],[127,251,73,1.0],[127,251,74,1.0],[127,251,75,1.0],[127,251,76,1.0],[127,251,77,1.0],[127,251,78,1.0],[127,251,79,1.0],[127,252,64,1.0],[127,252,65,1.0],[127,252,66,1.0],[127,252,67,1.0],[127,252,68,1.0],[127,252,69,1.0],[127,252,70,1.0],[127,252,71,1.0],[127,252,72,1.0],[127,252,73,1.0],[127,252,74,1.0],[127,252,75,1.0],[127,252,76,1.0],[127,252,77,1.0],[127,252,78,1.0],[127,252,79,1.0],[127,253,64,1.0],[127,253,65,1.0],[127,253,66,1.0],[127,253,67,1.0],[127,253,68,1.0],[127,253,69,1.0],[127,253,70,1.0],[127,253,71,1.0],[127,253,72,1.0],[127,253,73,1.0],[127,253,74,1.0],[127,253,75,1.0],[127,253,76,1.0],[127,253,77,1.0],[127,253,78,1.0],[127,253,79,1.0],[127,254,64,1.0],[127,254,65,1.0],[127,254,66,1.0],[127,254,67,1.0],[127,254,68,1.0],[127,254,69,1.0],[127,254,70,1.0],[127,254,71,1.0],[127,254,72,1.0],[127,254,73,1.0],[127,254,74,1.0],[127,254,75,1.0],[127,254,76,1.0],[127,254,77,1.0],[127,254,78,1.0],[127,254,79,1.0],[127,255,64,1.0],[127,255,65,1.0],[127,255,66,1.0],[127,255,67,1.0],[127,255,68,1.0],[127,255,69,1.0],[127,255,70,1.0],[127,255,71,1.0],[127,255,72,1.0],[127,255,73,1.0],[127,255,74,1.0],[127,255,75,1.0],[127,255,76,1.0],[127,255,77,1.0],[127,255,78,1.0],[127,255,79,1.0],[127,256,64,1.0],[127,256,65,1.0],[127,256,66,1.0],[127,256,67,1.0],[127,256,68,1.0],[127,256,69,1.0],[127,256,70,1.0],[127,256,71,1.0],[127,256,72,1.0],[127,256,73,1.0],[127,256,74,1.0],[127,256,75,1.0],[127,256,76,1.0],[127,256,77,1.0],[127,256,78,1.0],[127,256,79,1.0],[127,257,64,1.0],[127,257,65,1.0],[127,257,66,1.0],[127,257,67,1.0],[127,257,68,1.0],[127,257,69,1.0],[127,257,70,1.0],[127,257,71,1.0],[127,257,72,1.0],[127,257,73,1.0],[127,257,74,1.0],[127,257,75,1.0],[127,257,76,1.0],[127,257,77,1.0],[127,257,78,1.0],[127,257,79,1.0],[127,258,64,1.0],[127,258,65,1.0],[127,258,66,1.0],[127,258,67,1.0],[127,258,68,1.0],[127,258,69,1.0],[127,258,70,1.0],[127,258,71,1.0],[127,258,72,1.0],[127,258,73,1.0],[127,258,74,1.0],[127,258,75,1.0],[127,258,76,1.0],[127,258,77,1.0],[127,258,78,1.0],[127,258,79,1.0],[127,259,64,1.0],[127,259,65,1.0],[127,259,66,1.0],[127,259,67,1.0],[127,259,68,1.0],[127,259,69,1.0],[127,259,70,1.0],[127,259,71,1.0],[127,259,72,1.0],[127,259,73,1.0],[127,259,74,1.0],[127,259,75,1.0],[127,259,76,1.0],[127,259,77,1.0],[127,259,78,1.0],[127,259,79,1.0],[127,260,64,1.0],[127,260,65,1.0],[127,260,66,1.0],[127,260,67,1.0],[127,260,68,1.0],[127,260,69,1.0],[127,260,70,1.0],[127,260,71,1.0],[127,260,72,1.0],[127,260,73,1.0],[127,260,74,1.0],[127,260,75,1.0],[127,260,76,1.0],[127,260,77,1.0],[127,260,78,1.0],[127,260,79,1.0],[127,261,64,1.0],[127,261,65,1.0],[127,261,66,1.0],[127,261,67,1.0],[127,261,68,1.0],[127,261,69,1.0],[127,261,70,1.0],[127,261,71,1.0],[127,261,72,1.0],[127,261,73,1.0],[127,261,74,1.0],[127,261,75,1.0],[127,261,76,1.0],[127,261,77,1.0],[127,261,78,1.0],[127,261,79,1.0],[127,262,64,1.0],[127,262,65,1.0],[127,262,66,1.0],[127,262,67,1.0],[127,262,68,1.0],[127,262,69,1.0],[127,262,70,1.0],[127,262,71,1.0],[127,262,72,1.0],[127,262,73,1.0],[127,262,74,1.0],[127,262,75,1.0],[127,262,76,1.0],[127,262,77,1.0],[127,262,78,1.0],[127,262,79,1.0],[127,263,64,1.0],[127,263,65,1.0],[127,263,66,1.0],[127,263,67,1.0],[127,263,68,1.0],[127,263,69,1.0],[127,263,70,1.0],[127,263,71,1.0],[127,263,72,1.0],[127,263,73,1.0],[127,263,74,1.0],[127,263,75,1.0],[127,263,76,1.0],[127,263,77,1.0],[127,263,78,1.0],[127,263,79,1.0],[127,264,64,1.0],[127,264,65,1.0],[127,264,66,1.0],[127,264,67,1.0],[127,264,68,1.0],[127,264,69,1.0],[127,264,70,1.0],[127,264,71,1.0],[127,264,72,1.0],[127,264,73,1.0],[127,264,74,1.0],[127,264,75,1.0],[127,264,76,1.0],[127,264,77,1.0],[127,264,78,1.0],[127,264,79,1.0],[127,265,64,1.0],[127,265,65,1.0],[127,265,66,1.0],[127,265,67,1.0],[127,265,68,1.0],[127,265,69,1.0],[127,265,70,1.0],[127,265,71,1.0],[127,265,72,1.0],[127,265,73,1.0],[127,265,74,1.0],[127,265,75,1.0],[127,265,76,1.0],[127,265,77,1.0],[127,265,78,1.0],[127,265,79,1.0],[127,266,64,1.0],[127,266,65,1.0],[127,266,66,1.0],[127,266,67,1.0],[127,266,68,1.0],[127,266,69,1.0],[127,266,70,1.0],[127,266,71,1.0],[127,266,72,1.0],[127,266,73,1.0],[127,266,74,1.0],[127,266,75,1.0],[127,266,76,1.0],[127,266,77,1.0],[127,266,78,1.0],[127,266,79,1.0],[127,267,64,1.0],[127,267,65,1.0],[127,267,66,1.0],[127,267,67,1.0],[127,267,68,1.0],[127,267,69,1.0],[127,267,70,1.0],[127,267,71,1.0],[127,267,72,1.0],[127,267,73,1.0],[127,267,74,1.0],[127,267,75,1.0],[127,267,76,1.0],[127,267,77,1.0],[127,267,78,1.0],[127,267,79,1.0],[127,268,64,1.0],[127,268,65,1.0],[127,268,66,1.0],[127,268,67,1.0],[127,268,68,1.0],[127,268,69,1.0],[127,268,70,1.0],[127,268,71,1.0],[127,268,72,1.0],[127,268,73,1.0],[127,268,74,1.0],[127,268,75,1.0],[127,268,76,1.0],[127,268,77,1.0],[127,268,78,1.0],[127,268,79,1.0],[127,269,64,1.0],[127,269,65,1.0],[127,269,66,1.0],[127,269,67,1.0],[127,269,68,1.0],[127,269,69,1.0],[127,269,70,1.0],[127,269,71,1.0],[127,269,72,1.0],[127,269,73,1.0],[127,269,74,1.0],[127,269,75,1.0],[127,269,76,1.0],[127,269,77,1.0],[127,269,78,1.0],[127,269,79,1.0],[127,270,64,1.0],[127,270,65,1.0],[127,270,66,1.0],[127,270,67,1.0],[127,270,68,1.0],[127,270,69,1.0],[127,270,70,1.0],[127,270,71,1.0],[127,270,72,1.0],[127,270,73,1.0],[127,270,74,1.0],[127,270,75,1.0],[127,270,76,1.0],[127,270,77,1.0],[127,270,78,1.0],[127,270,79,1.0],[127,271,64,1.0],[127,271,65,1.0],[127,271,66,1.0],[127,271,67,1.0],[127,271,68,1.0],[127,271,69,1.0],[127,271,70,1.0],[127,271,71,1.0],[127,271,72,1.0],[127,271,73,1.0],[127,271,74,1.0],[127,271,75,1.0],[127,271,76,1.0],[127,271,77,1.0],[127,271,78,1.0],[127,271,79,1.0],[127,272,64,1.0],[127,272,65,1.0],[127,272,66,1.0],[127,272,67,1.0],[127,272,68,1.0],[127,272,69,1.0],[127,272,70,1.0],[127,272,71,1.0],[127,272,72,1.0],[127,272,73,1.0],[127,272,74,1.0],[127,272,75,1.0],[127,272,76,1.0],[127,272,77,1.0],[127,272,78,1.0],[127,272,79,1.0],[127,273,64,1.0],[127,273,65,1.0],[127,273,66,1.0],[127,273,67,1.0],[127,273,68,1.0],[127,273,69,1.0],[127,273,70,1.0],[127,273,71,1.0],[127,273,72,1.0],[127,273,73,1.0],[127,273,74,1.0],[127,273,75,1.0],[127,273,76,1.0],[127,273,77,1.0],[127,273,78,1.0],[127,273,79,1.0],[127,274,64,1.0],[127,274,65,1.0],[127,274,66,1.0],[127,274,67,1.0],[127,274,68,1.0],[127,274,69,1.0],[127,274,70,1.0],[127,274,71,1.0],[127,274,72,1.0],[127,274,73,1.0],[127,274,74,1.0],[127,274,75,1.0],[127,274,76,1.0],[127,274,77,1.0],[127,274,78,1.0],[127,274,79,1.0],[127,275,64,1.0],[127,275,65,1.0],[127,275,66,1.0],[127,275,67,1.0],[127,275,68,1.0],[127,275,69,1.0],[127,275,70,1.0],[127,275,71,1.0],[127,275,72,1.0],[127,275,73,1.0],[127,275,74,1.0],[127,275,75,1.0],[127,275,76,1.0],[127,275,77,1.0],[127,275,78,1.0],[127,275,79,1.0],[127,276,64,1.0],[127,276,65,1.0],[127,276,66,1.0],[127,276,67,1.0],[127,276,68,1.0],[127,276,69,1.0],[127,276,70,1.0],[127,276,71,1.0],[127,276,72,1.0],[127,276,73,1.0],[127,276,74,1.0],[127,276,75,1.0],[127,276,76,1.0],[127,276,77,1.0],[127,276,78,1.0],[127,276,79,1.0],[127,277,64,1.0],[127,277,65,1.0],[127,277,66,1.0],[127,277,67,1.0],[127,277,68,1.0],[127,277,69,1.0],[127,277,70,1.0],[127,277,71,1.0],[127,277,72,1.0],[127,277,73,1.0],[127,277,74,1.0],[127,277,75,1.0],[127,277,76,1.0],[127,277,77,1.0],[127,277,78,1.0],[127,277,79,1.0],[127,278,64,1.0],[127,278,65,1.0],[127,278,66,1.0],[127,278,67,1.0],[127,278,68,1.0],[127,278,69,1.0],[127,278,70,1.0],[127,278,71,1.0],[127,278,72,1.0],[127,278,73,1.0],[127,278,74,1.0],[127,278,75,1.0],[127,278,76,1.0],[127,278,77,1.0],[127,278,78,1.0],[127,278,79,1.0],[127,279,64,1.0],[127,279,65,1.0],[127,279,66,1.0],[127,279,67,1.0],[127,279,68,1.0],[127,279,69,1.0],[127,279,70,1.0],[127,279,71,1.0],[127,279,72,1.0],[127,279,73,1.0],[127,279,74,1.0],[127,279,75,1.0],[127,279,76,1.0],[127,279,77,1.0],[127,279,78,1.0],[127,279,79,1.0],[127,280,64,1.0],[127,280,65,1.0],[127,280,66,1.0],[127,280,67,1.0],[127,280,68,1.0],[127,280,69,1.0],[127,280,70,1.0],[127,280,71,1.0],[127,280,72,1.0],[127,280,73,1.0],[127,280,74,1.0],[127,280,75,1.0],[127,280,76,1.0],[127,280,77,1.0],[127,280,78,1.0],[127,280,79,1.0],[127,281,64,1.0],[127,281,65,1.0],[127,281,66,1.0],[127,281,67,1.0],[127,281,68,1.0],[127,281,69,1.0],[127,281,70,1.0],[127,281,71,1.0],[127,281,72,1.0],[127,281,73,1.0],[127,281,74,1.0],[127,281,75,1.0],[127,281,76,1.0],[127,281,77,1.0],[127,281,78,1.0],[127,281,79,1.0],[127,282,64,1.0],[127,282,65,1.0],[127,282,66,1.0],[127,282,67,1.0],[127,282,68,1.0],[127,282,69,1.0],[127,282,70,1.0],[127,282,71,1.0],[127,282,72,1.0],[127,282,73,1.0],[127,282,74,1.0],[127,282,75,1.0],[127,282,76,1.0],[127,282,77,1.0],[127,282,78,1.0],[127,282,79,1.0],[127,283,64,1.0],[127,283,65,1.0],[127,283,66,1.0],[127,283,67,1.0],[127,283,68,1.0],[127,283,69,1.0],[127,283,70,1.0],[127,283,71,1.0],[127,283,72,1.0],[127,283,73,1.0],[127,283,74,1.0],[127,283,75,1.0],[127,283,76,1.0],[127,283,77,1.0],[127,283,78,1.0],[127,283,79,1.0],[127,284,64,1.0],[127,284,65,1.0],[127,284,66,1.0],[127,284,67,1.0],[127,284,68,1.0],[127,284,69,1.0],[127,284,70,1.0],[127,284,71,1.0],[127,284,72,1.0],[127,284,73,1.0],[127,284,74,1.0],[127,284,75,1.0],[127,284,76,1.0],[127,284,77,1.0],[127,284,78,1.0],[127,284,79,1.0],[127,285,64,1.0],[127,285,65,1.0],[127,285,66,1.0],[127,285,67,1.0],[127,285,68,1.0],[127,285,69,1.0],[127,285,70,1.0],[127,285,71,1.0],[127,285,72,1.0],[127,285,73,1.0],[127,285,74,1.0],[127,285,75,1.0],[127,285,76,1.0],[127,285,77,1.0],[127,285,78,1.0],[127,285,79,1.0],[127,286,64,1.0],[127,286,65,1.0],[127,286,66,1.0],[127,286,67,1.0],[127,286,68,1.0],[127,286,69,1.0],[127,286,70,1.0],[127,286,71,1.0],[127,286,72,1.0],[127,286,73,1.0],[127,286,74,1.0],[127,286,75,1.0],[127,286,76,1.0],[127,286,77,1.0],[127,286,78,1.0],[127,286,79,1.0],[127,287,64,1.0],[127,287,65,1.0],[127,287,66,1.0],[127,287,67,1.0],[127,287,68,1.0],[127,287,69,1.0],[127,287,70,1.0],[127,287,71,1.0],[127,287,72,1.0],[127,287,73,1.0],[127,287,74,1.0],[127,287,75,1.0],[127,287,76,1.0],[127,287,77,1.0],[127,287,78,1.0],[127,287,79,1.0],[127,288,64,1.0],[127,288,65,1.0],[127,288,66,1.0],[127,288,67,1.0],[127,288,68,1.0],[127,288,69,1.0],[127,288,70,1.0],[127,288,71,1.0],[127,288,72,1.0],[127,288,73,1.0],[127,288,74,1.0],[127,288,75,1.0],[127,288,76,1.0],[127,288,77,1.0],[127,288,78,1.0],[127,288,79,1.0],[127,289,64,1.0],[127,289,65,1.0],[127,289,66,1.0],[127,289,67,1.0],[127,289,68,1.0],[127,289,69,1.0],[127,289,70,1.0],[127,289,71,1.0],[127,289,72,1.0],[127,289,73,1.0],[127,289,74,1.0],[127,289,75,1.0],[127,289,76,1.0],[127,289,77,1.0],[127,289,78,1.0],[127,289,79,1.0],[127,290,64,1.0],[127,290,65,1.0],[127,290,66,1.0],[127,290,67,1.0],[127,290,68,1.0],[127,290,69,1.0],[127,290,70,1.0],[127,290,71,1.0],[127,290,72,1.0],[127,290,73,1.0],[127,290,74,1.0],[127,290,75,1.0],[127,290,76,1.0],[127,290,77,1.0],[127,290,78,1.0],[127,290,79,1.0],[127,291,64,1.0],[127,291,65,1.0],[127,291,66,1.0],[127,291,67,1.0],[127,291,68,1.0],[127,291,69,1.0],[127,291,70,1.0],[127,291,71,1.0],[127,291,72,1.0],[127,291,73,1.0],[127,291,74,1.0],[127,291,75,1.0],[127,291,76,1.0],[127,291,77,1.0],[127,291,78,1.0],[127,291,79,1.0],[127,292,64,1.0],[127,292,65,1.0],[127,292,66,1.0],[127,292,67,1.0],[127,292,68,1.0],[127,292,69,1.0],[127,292,70,1.0],[127,292,71,1.0],[127,292,72,1.0],[127,292,73,1.0],[127,292,74,1.0],[127,292,75,1.0],[127,292,76,1.0],[127,292,77,1.0],[127,292,78,1.0],[127,292,79,1.0],[127,293,64,1.0],[127,293,65,1.0],[127,293,66,1.0],[127,293,67,1.0],[127,293,68,1.0],[127,293,69,1.0],[127,293,70,1.0],[127,293,71,1.0],[127,293,72,1.0],[127,293,73,1.0],[127,293,74,1.0],[127,293,75,1.0],[127,293,76,1.0],[127,293,77,1.0],[127,293,78,1.0],[127,293,79,1.0],[127,294,64,1.0],[127,294,65,1.0],[127,294,66,1.0],[127,294,67,1.0],[127,294,68,1.0],[127,294,69,1.0],[127,294,70,1.0],[127,294,71,1.0],[127,294,72,1.0],[127,294,73,1.0],[127,294,74,1.0],[127,294,75,1.0],[127,294,76,1.0],[127,294,77,1.0],[127,294,78,1.0],[127,294,79,1.0],[127,295,64,1.0],[127,295,65,1.0],[127,295,66,1.0],[127,295,67,1.0],[127,295,68,1.0],[127,295,69,1.0],[127,295,70,1.0],[127,295,71,1.0],[127,295,72,1.0],[127,295,73,1.0],[127,295,74,1.0],[127,295,75,1.0],[127,295,76,1.0],[127,295,77,1.0],[127,295,78,1.0],[127,295,79,1.0],[127,296,64,1.0],[127,296,65,1.0],[127,296,66,1.0],[127,296,67,1.0],[127,296,68,1.0],[127,296,69,1.0],[127,296,70,1.0],[127,296,71,1.0],[127,296,72,1.0],[127,296,73,1.0],[127,296,74,1.0],[127,296,75,1.0],[127,296,76,1.0],[127,296,77,1.0],[127,296,78,1.0],[127,296,79,1.0],[127,297,64,1.0],[127,297,65,1.0],[127,297,66,1.0],[127,297,67,1.0],[127,297,68,1.0],[127,297,69,1.0],[127,297,70,1.0],[127,297,71,1.0],[127,297,72,1.0],[127,297,73,1.0],[127,297,74,1.0],[127,297,75,1.0],[127,297,76,1.0],[127,297,77,1.0],[127,297,78,1.0],[127,297,79,1.0],[127,298,64,1.0],[127,298,65,1.0],[127,298,66,1.0],[127,298,67,1.0],[127,298,68,1.0],[127,298,69,1.0],[127,298,70,1.0],[127,298,71,1.0],[127,298,72,1.0],[127,298,73,1.0],[127,298,74,1.0],[127,298,75,1.0],[127,298,76,1.0],[127,298,77,1.0],[127,298,78,1.0],[127,298,79,1.0],[127,299,64,1.0],[127,299,65,1.0],[127,299,66,1.0],[127,299,67,1.0],[127,299,68,1.0],[127,299,69,1.0],[127,299,70,1.0],[127,299,71,1.0],[127,299,72,1.0],[127,299,73,1.0],[127,299,74,1.0],[127,299,75,1.0],[127,299,76,1.0],[127,299,77,1.0],[127,299,78,1.0],[127,299,79,1.0],[127,300,64,1.0],[127,300,65,1.0],[127,300,66,1.0],[127,300,67,1.0],[127,300,68,1.0],[127,300,69,1.0],[127,300,70,1.0],[127,300,71,1.0],[127,300,72,1.0],[127,300,73,1.0],[127,300,74,1.0],[127,300,75,1.0],[127,300,76,1.0],[127,300,77,1.0],[127,300,78,1.0],[127,300,79,1.0],[127,301,64,1.0],[127,301,65,1.0],[127,301,66,1.0],[127,301,67,1.0],[127,301,68,1.0],[127,301,69,1.0],[127,301,70,1.0],[127,301,71,1.0],[127,301,72,1.0],[127,301,73,1.0],[127,301,74,1.0],[127,301,75,1.0],[127,301,76,1.0],[127,301,77,1.0],[127,301,78,1.0],[127,301,79,1.0],[127,302,64,1.0],[127,302,65,1.0],[127,302,66,1.0],[127,302,67,1.0],[127,302,68,1.0],[127,302,69,1.0],[127,302,70,1.0],[127,302,71,1.0],[127,302,72,1.0],[127,302,73,1.0],[127,302,74,1.0],[127,302,75,1.0],[127,302,76,1.0],[127,302,77,1.0],[127,302,78,1.0],[127,302,79,1.0],[127,303,64,1.0],[127,303,65,1.0],[127,303,66,1.0],[127,303,67,1.0],[127,303,68,1.0],[127,303,69,1.0],[127,303,70,1.0],[127,303,71,1.0],[127,303,72,1.0],[127,303,73,1.0],[127,303,74,1.0],[127,303,75,1.0],[127,303,76,1.0],[127,303,77,1.0],[127,303,78,1.0],[127,303,79,1.0],[127,304,64,1.0],[127,304,65,1.0],[127,304,66,1.0],[127,304,67,1.0],[127,304,68,1.0],[127,304,69,1.0],[127,304,70,1.0],[127,304,71,1.0],[127,304,72,1.0],[127,304,73,1.0],[127,304,74,1.0],[127,304,75,1.0],[127,304,76,1.0],[127,304,77,1.0],[127,304,78,1.0],[127,304,79,1.0],[127,305,64,1.0],[127,305,65,1.0],[127,305,66,1.0],[127,305,67,1.0],[127,305,68,1.0],[127,305,69,1.0],[127,305,70,1.0],[127,305,71,1.0],[127,305,72,1.0],[127,305,73,1.0],[127,305,74,1.0],[127,305,75,1.0],[127,305,76,1.0],[127,305,77,1.0],[127,305,78,1.0],[127,305,79,1.0],[127,306,64,1.0],[127,306,65,1.0],[127,306,66,1.0],[127,306,67,1.0],[127,306,68,1.0],[127,306,69,1.0],[127,306,70,1.0],[127,306,71,1.0],[127,306,72,1.0],[127,306,73,1.0],[127,306,74,1.0],[127,306,75,1.0],[127,306,76,1.0],[127,306,77,1.0],[127,306,78,1.0],[127,306,79,1.0],[127,307,64,1.0],[127,307,65,1.0],[127,307,66,1.0],[127,307,67,1.0],[127,307,68,1.0],[127,307,69,1.0],[127,307,70,1.0],[127,307,71,1.0],[127,307,72,1.0],[127,307,73,1.0],[127,307,74,1.0],[127,307,75,1.0],[127,307,76,1.0],[127,307,77,1.0],[127,307,78,1.0],[127,307,79,1.0],[127,308,64,1.0],[127,308,65,1.0],[127,308,66,1.0],[127,308,67,1.0],[127,308,68,1.0],[127,308,69,1.0],[127,308,70,1.0],[127,308,71,1.0],[127,308,72,1.0],[127,308,73,1.0],[127,308,74,1.0],[127,308,75,1.0],[127,308,76,1.0],[127,308,77,1.0],[127,308,78,1.0],[127,308,79,1.0],[127,309,64,1.0],[127,309,65,1.0],[127,309,66,1.0],[127,309,67,1.0],[127,309,68,1.0],[127,309,69,1.0],[127,309,70,1.0],[127,309,71,1.0],[127,309,72,1.0],[127,309,73,1.0],[127,309,74,1.0],[127,309,75,1.0],[127,309,76,1.0],[127,309,77,1.0],[127,309,78,1.0],[127,309,79,1.0],[127,310,64,1.0],[127,310,65,1.0],[127,310,66,1.0],[127,310,67,1.0],[127,310,68,1.0],[127,310,69,1.0],[127,310,70,1.0],[127,310,71,1.0],[127,310,72,1.0],[127,310,73,1.0],[127,310,74,1.0],[127,310,75,1.0],[127,310,76,1.0],[127,310,77,1.0],[127,310,78,1.0],[127,310,79,1.0],[127,311,64,1.0],[127,311,65,1.0],[127,311,66,1.0],[127,311,67,1.0],[127,311,68,1.0],[127,311,69,1.0],[127,311,70,1.0],[127,311,71,1.0],[127,311,72,1.0],[127,311,73,1.0],[127,311,74,1.0],[127,311,75,1.0],[127,311,76,1.0],[127,311,77,1.0],[127,311,78,1.0],[127,311,79,1.0],[127,312,64,1.0],[127,312,65,1.0],[127,312,66,1.0],[127,312,67,1.0],[127,312,68,1.0],[127,312,69,1.0],[127,312,70,1.0],[127,312,71,1.0],[127,312,72,1.0],[127,312,73,1.0],[127,312,74,1.0],[127,312,75,1.0],[127,312,76,1.0],[127,312,77,1.0],[127,312,78,1.0],[127,312,79,1.0],[127,313,64,1.0],[127,313,65,1.0],[127,313,66,1.0],[127,313,67,1.0],[127,313,68,1.0],[127,313,69,1.0],[127,313,70,1.0],[127,313,71,1.0],[127,313,72,1.0],[127,313,73,1.0],[127,313,74,1.0],[127,313,75,1.0],[127,313,76,1.0],[127,313,77,1.0],[127,313,78,1.0],[127,313,79,1.0],[127,314,64,1.0],[127,314,65,1.0],[127,314,66,1.0],[127,314,67,1.0],[127,314,68,1.0],[127,314,69,1.0],[127,314,70,1.0],[127,314,71,1.0],[127,314,72,1.0],[127,314,73,1.0],[127,314,74,1.0],[127,314,75,1.0],[127,314,76,1.0],[127,314,77,1.0],[127,314,78,1.0],[127,314,79,1.0],[127,315,64,1.0],[127,315,65,1.0],[127,315,66,1.0],[127,315,67,1.0],[127,315,68,1.0],[127,315,69,1.0],[127,315,70,1.0],[127,315,71,1.0],[127,315,72,1.0],[127,315,73,1.0],[127,315,74,1.0],[127,315,75,1.0],[127,315,76,1.0],[127,315,77,1.0],[127,315,78,1.0],[127,315,79,1.0],[127,316,64,1.0],[127,316,65,1.0],[127,316,66,1.0],[127,316,67,1.0],[127,316,68,1.0],[127,316,69,1.0],[127,316,70,1.0],[127,316,71,1.0],[127,316,72,1.0],[127,316,73,1.0],[127,316,74,1.0],[127,316,75,1.0],[127,316,76,1.0],[127,316,77,1.0],[127,316,78,1.0],[127,316,79,1.0],[127,317,64,1.0],[127,317,65,1.0],[127,317,66,1.0],[127,317,67,1.0],[127,317,68,1.0],[127,317,69,1.0],[127,317,70,1.0],[127,317,71,1.0],[127,317,72,1.0],[127,317,73,1.0],[127,317,74,1.0],[127,317,75,1.0],[127,317,76,1.0],[127,317,77,1.0],[127,317,78,1.0],[127,317,79,1.0],[127,318,64,1.0],[127,318,65,1.0],[127,318,66,1.0],[127,318,67,1.0],[127,318,68,1.0],[127,318,69,1.0],[127,318,70,1.0],[127,318,71,1.0],[127,318,72,1.0],[127,318,73,1.0],[127,318,74,1.0],[127,318,75,1.0],[127,318,76,1.0],[127,318,77,1.0],[127,318,78,1.0],[127,318,79,1.0],[127,319,64,1.0],[127,319,65,1.0],[127,319,66,1.0],[127,319,67,1.0],[127,319,68,1.0],[127,319,69,1.0],[127,319,70,1.0],[127,319,71,1.0],[127,319,72,1.0],[127,319,73,1.0],[127,319,74,1.0],[127,319,75,1.0],[127,319,76,1.0],[127,319,77,1.0],[127,319,78,1.0],[127,319,79,1.0]] diff --git a/pumpkin-world/assets/converted_cave_spaghetti_2d_thicc_7_4.json b/pumpkin-world/assets/converted_cave_spaghetti_2d_thicc_7_4.json new file mode 100644 index 000000000..9406bd0e9 --- /dev/null +++ b/pumpkin-world/assets/converted_cave_spaghetti_2d_thicc_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.7299780185247988],[112,-64,65,-0.729698639369959],[112,-64,66,-0.7294216267836906],[112,-64,67,-0.7291469858608839],[112,-64,68,-0.7288747216042333],[112,-64,69,-0.7286048389238287],[112,-64,70,-0.7283373426367299],[112,-64,71,-0.7280722374665463],[112,-64,72,-0.7278095280430142],[112,-64,73,-0.7275492189015914],[112,-64,74,-0.7272913144830182],[112,-64,75,-0.727035819132914],[112,-64,76,-0.7267827371013579],[112,-64,77,-0.7265320725424718],[112,-64,78,-0.726283829514007],[112,-64,79,-0.7260380119769262],[112,-63,64,-0.7300922033439446],[112,-63,65,-0.7298123834202809],[112,-63,66,-0.7295349300227956],[112,-63,67,-0.7292598482524716],[112,-63,68,-0.7289871431180975],[112,-63,69,-0.7287168195358573],[112,-63,70,-0.7284488823289056],[112,-63,71,-0.7281833362269469],[112,-63,72,-0.7279201858658131],[112,-63,73,-0.7276594357870568],[112,-63,74,-0.7274010904375143],[112,-63,75,-0.7271451541688998],[112,-63,76,-0.7268916312373872],[112,-63,77,-0.7266405258031929],[112,-63,78,-0.7263918419301623],[112,-63,79,-0.7261455835853503],[112,-62,64,-0.7302065487091658],[112,-62,65,-0.729926288538447],[112,-62,66,-0.729648394850001],[112,-62,67,-0.729372872750896],[112,-62,68,-0.7290997272560067],[112,-62,69,-0.7288289632876039],[112,-62,70,-0.7285605856749295],[112,-62,71,-0.7282945991537759],[112,-62,72,-0.7280310083660632],[112,-62,73,-0.7277698178594323],[112,-62,74,-0.7275110320868075],[112,-62,75,-0.7272546554059913],[112,-62,76,-0.7270006920792458],[112,-62,77,-0.7267491462728746],[112,-62,78,-0.72650002205681],[112,-62,79,-0.7262533234041939],[112,-61,64,-0.7303210548994076],[112,-61,65,-0.7300403550070154],[112,-61,66,-0.7297620215514589],[112,-61,67,-0.7294860596458843],[112,-61,68,-0.7292124743112445],[112,-61,69,-0.7289412704758895],[112,-61,70,-0.7286724529751417],[112,-61,71,-0.7284060265508734],[112,-61,72,-0.7281419958510857],[112,-61,73,-0.7278803654295005],[112,-61,74,-0.7276211397451234],[112,-61,75,-0.7273643231618379],[112,-61,76,-0.7271099199479868],[112,-61,77,-0.7268579342759549],[112,-61,78,-0.7266083702217544],[112,-61,79,-0.726361231764607],[112,-60,64,-0.7304357221904281],[112,-60,65,-0.7301545831053535],[112,-60,66,-0.729875810410128],[112,-60,67,-0.7295994092239674],[112,-60,68,-0.7293253845738956],[112,-60,69,-0.7290537413943345],[112,-60,70,-0.7287844845266784],[112,-60,71,-0.728517618718873],[112,-60,72,-0.7282531486249927],[112,-60,73,-0.727991078804833],[112,-60,74,-0.7277314137234737],[112,-60,75,-0.7274741577508722],[112,-60,76,-0.7272193151614453],[112,-60,77,-0.7269668901336515],[112,-60,78,-0.7267168867495765],[112,-60,79,-0.7264693089945148],[112,-59,64,-0.7305505508547856],[112,-59,65,-0.7302689731096264],[112,-59,66,-0.7299897617057614],[112,-59,67,-0.7297129217684681],[112,-59,68,-0.7294384583308341],[112,-59,69,-0.7291663763333447],[112,-59,70,-0.7288966806234594],[112,-59,71,-0.7286293759551891],[112,-59,72,-0.7283644669886744],[112,-59,73,-0.7281019582897772],[112,-59,74,-0.7278418543296438],[112,-59,75,-0.7275841594842986],[112,-59,76,-0.7273288780342253],[112,-59,77,-0.7270760141639491],[112,-59,78,-0.7268255719616221],[112,-59,79,-0.7265775554186052],[112,-58,64,-0.7306655411618875],[112,-58,65,-0.7303835252928451],[112,-58,66,-0.7301038757149553],[112,-58,67,-0.7298265975595498],[112,-58,68,-0.7295516958657712],[112,-58,69,-0.7292791755801613],[112,-58,70,-0.7290090415562365],[112,-58,71,-0.7287412985540659],[112,-58,72,-0.7284759512398483],[112,-58,73,-0.7282130041855049],[112,-58,74,-0.7279524618682413],[112,-58,75,-0.7276943286701413],[112,-58,76,-0.7274386088777485],[112,-58,77,-0.7271853066816476],[112,-58,78,-0.7269344261760506],[112,-58,79,-0.7266859713583773],[112,-57,64,-0.7307806933779721],[112,-57,65,-0.7304982399248485],[112,-57,66,-0.7302181527111309],[112,-57,67,-0.7299404368741973],[112,-57,68,-0.7296650974592374],[112,-57,69,-0.7293921394188414],[112,-57,70,-0.7291215676125754],[112,-57,71,-0.7288533868065584],[112,-57,72,-0.7285876016730405],[112,-57,73,-0.7283242167899941],[112,-57,74,-0.728063236640677],[112,-57,75,-0.7278046656132254],[112,-57,76,-0.7275485080002352],[112,-57,77,-0.7272947679983436],[112,-57,78,-0.7270434497078153],[112,-57,79,-0.7267945571321223],[112,-56,64,-0.7308960077661294],[112,-56,65,-0.7306131172723245],[112,-56,66,-0.7303325929645554],[112,-56,67,-0.7300544399862388],[112,-56,68,-0.7297786633886033],[112,-56,69,-0.72950526813028],[112,-56,70,-0.7292342590768763],[112,-56,71,-0.728965641000554],[112,-56,72,-0.7286994185796064],[112,-56,73,-0.72843559639805],[112,-56,74,-0.7281741789451868],[112,-56,75,-0.7279151706151983],[112,-56,76,-0.7276585757067255],[112,-56,77,-0.7274043984224511],[112,-56,78,-0.727152642868685],[112,-56,79,-0.7269033130549445],[112,-55,64,-0.7310114845862832],[112,-55,65,-0.7307281575987911],[112,-55,66,-0.7304471967423236],[112,-55,67,-0.7301686071663269],[112,-55,68,-0.7298923939280615],[112,-55,69,-0.7296185619921907],[112,-55,70,-0.7293471162303559],[112,-55,71,-0.7290780614207534],[112,-55,72,-0.7288114022477122],[112,-55,73,-0.7285471433012854],[112,-55,74,-0.7282852890768119],[112,-55,75,-0.7280258439745106],[112,-55,76,-0.7277688122990607],[112,-55,77,-0.7275141982591826],[112,-55,78,-0.7272620059672248],[112,-55,79,-0.7270122394387427],[112,-54,64,-0.7311271240952393],[112,-54,65,-0.7308433611646459],[112,-54,66,-0.7305619643084059],[112,-54,67,-0.7302829386819876],[112,-54,68,-0.7300062893486745],[112,-54,69,-0.7297320212791546],[112,-54,70,-0.729460139351095],[112,-54,71,-0.729190648348719],[112,-54,72,-0.7289235529623836],[112,-54,73,-0.7286588577881704],[112,-54,74,-0.728396567327448],[112,-54,75,-0.7281366859864651],[112,-54,76,-0.7278792180759313],[112,-54,77,-0.727624167810598],[112,-54,78,-0.7273715393088448],[112,-54,79,-0.7271213365922582],[112,-53,64,-0.731242926546674],[112,-53,65,-0.7309587282271532],[112,-53,66,-0.7306768959236374],[112,-53,67,-0.7303974347976077],[112,-53,68,-0.730120349918363],[112,-53,69,-0.7298456462626081],[112,-53,70,-0.7295733287140274],[112,-53,71,-0.7293034020628635],[112,-53,72,-0.7290358710054934],[112,-53,73,-0.7287707401440195],[112,-53,74,-0.7285080139858324],[112,-53,75,-0.7282476969432032],[112,-53,76,-0.7279897933328647],[112,-53,77,-0.7277343073755919],[112,-53,78,-0.7274812431957874],[112,-53,79,-0.7272306048210624],[112,-52,64,-0.7313588921911213],[112,-52,65,-0.7310742590404327],[112,-52,66,-0.7307919918457043],[112,-52,67,-0.7305120957744231],[112,-52,68,-0.7302345759018939],[112,-52,69,-0.7299594372108305],[112,-52,70,-0.7296866845909268],[112,-52,71,-0.7294163228384365],[112,-52,72,-0.7291483566557487],[112,-52,73,-0.7288827906509792],[112,-52,74,-0.7286196293375322],[112,-52,75,-0.7283588771336944],[112,-52,76,-0.7281005383622133],[112,-52,77,-0.7278446172498805],[112,-52,78,-0.7275911179271148],[112,-52,79,-0.7273400444275442],[112,-51,64,-0.7314750212760222],[112,-51,65,-0.7311899538555073],[112,-51,66,-0.7309072523291943],[112,-51,67,-0.7306269218705668],[112,-51,68,-0.7303489675609286],[112,-51,69,-0.7300733943889929],[112,-51,70,-0.7298002072504559],[112,-51,71,-0.7295294109475741],[112,-51,72,-0.7292610101887405],[112,-51,73,-0.7289950095880765],[112,-51,74,-0.7287314136649927],[112,-51,75,-0.7284702268437827],[112,-51,76,-0.7282114534532025],[112,-51,77,-0.7279550977260513],[112,-51,78,-0.7277011637987578],[112,-51,79,-0.727449655710959],[112,-50,64,-0.7315913140457059],[112,-50,65,-0.7313058129202851],[112,-50,66,-0.7310226776255763],[112,-50,67,-0.7307419133410511],[112,-50,68,-0.7304635251540038],[112,-50,69,-0.7301875180591393],[112,-50,70,-0.7299138969581473],[112,-50,71,-0.7296426666592789],[112,-50,72,-0.7293738318769238],[112,-50,73,-0.7291073972312004],[112,-50,74,-0.728843367247518],[112,-50,75,-0.7285817463561695],[112,-50,76,-0.728322538891911],[112,-50,77,-0.7280657490935433],[112,-50,78,-0.7278113811034961],[112,-50,79,-0.7275594389674085],[112,-49,64,-0.7317077707414114],[112,-49,65,-0.7314218364795808],[112,-49,66,-0.7311382679832226],[112,-49,67,-0.7308570704377885],[112,-49,68,-0.7305782489365541],[112,-49,69,-0.7303018084802081],[112,-49,70,-0.730027753976425],[112,-49,71,-0.7297560902394431],[112,-49,72,-0.7294868219896398],[112,-49,73,-0.7292199538531231],[112,-49,74,-0.7289554903612928],[112,-49,75,-0.7286934359504336],[112,-49,76,-0.728433794961294],[112,-49,77,-0.7281765716386681],[112,-49,78,-0.7279217701309801],[112,-49,79,-0.7276693944898631],[112,-48,64,-0.7318243916012682],[112,-48,65,-0.7315380247750963],[112,-48,66,-0.7312540236473902],[112,-48,67,-0.7309723934095724],[112,-48,68,-0.7306931391608918],[112,-48,69,-0.7304162659080123],[112,-48,70,-0.7301417785645854],[112,-48,71,-0.7298696819508272],[112,-48,72,-0.7295999807930957],[112,-48,73,-0.7293326797234801],[112,-48,74,-0.729067783279363],[112,-48,75,-0.7288052959030122],[112,-48,76,-0.7285452219411618],[112,-48,77,-0.7282875656445913],[112,-48,78,-0.728032331167711],[112,-48,79,-0.7277795225681416],[112,-47,64,-0.7319411768603459],[112,-47,65,-0.7316543780454705],[112,-47,66,-0.7313699448602691],[112,-47,67,-0.7310878825021266],[112,-47,68,-0.7308081960762568],[112,-47,69,-0.7305308905952899],[112,-47,70,-0.7302559709788456],[112,-47,71,-0.7299834420531108],[112,-47,72,-0.7297133085504148],[112,-47,73,-0.7294455751088202],[112,-47,74,-0.7291802462716841],[112,-47,75,-0.7289173264872505],[112,-47,76,-0.7286568201082299],[112,-47,77,-0.72839873139138],[112,-47,78,-0.7281430644970901],[112,-47,79,-0.7278898234889604],[112,-46,64,-0.7320581267506412],[112,-46,65,-0.7317708965262661],[112,-46,66,-0.7314860318609704],[112,-46,67,-0.731203537958093],[112,-46,68,-0.7309234199288033],[112,-46,69,-0.7306456827916897],[112,-46,70,-0.7303703314723321],[112,-46,71,-0.730097370802879],[112,-46,72,-0.729826805521623],[112,-46,73,-0.7295586402725921],[112,-46,74,-0.7292928796051097],[112,-46,75,-0.7290295279733878],[112,-46,76,-0.7287685897361058],[112,-46,77,-0.7285100691559917],[112,-46,78,-0.728253970399406],[112,-46,79,-0.7280002975359205],[112,-45,64,-0.7321752415010665],[112,-45,65,-0.731887580449958],[112,-45,66,-0.7316022848855139],[112,-45,67,-0.7313193600170182],[112,-45,68,-0.731038810961588],[112,-45,69,-0.7307606427437604],[112,-45,70,-0.7304848602950671],[112,-45,71,-0.73021146845361],[112,-45,72,-0.7299404719636367],[112,-45,73,-0.729671875475132],[112,-45,74,-0.7294056835433778],[112,-45,75,-0.7291419006285458],[112,-45,76,-0.7288805310952766],[112,-45,77,-0.7286215792122606],[112,-45,78,-0.7283650491518213],[112,-45,79,-0.7281109449894952],[112,-44,64,-0.7322925213374981],[112,-44,65,-0.7320044300459818],[112,-44,66,-0.7317187041668771],[112,-44,67,-0.7314353489154044],[112,-44,68,-0.7311543694146188],[112,-44,69,-0.7308757706949986],[112,-44,70,-0.7305995576940183],[112,-44,71,-0.7303257352557244],[112,-44,72,-0.7300543081303115],[112,-44,73,-0.7297852809737128],[112,-44,74,-0.7295186583471602],[112,-44,75,-0.7292544447167774],[112,-44,76,-0.728992644453158],[112,-44,77,-0.7287332618309464],[112,-44,78,-0.7284763010284222],[112,-44,79,-0.7282217661270782],[112,-43,64,-0.7324099664827646],[112,-43,65,-0.7321214455407219],[112,-43,66,-0.7318352899349828],[112,-43,67,-0.7315515048866948],[112,-43,68,-0.7312700955248428],[112,-43,69,-0.7309910668858373],[112,-43,70,-0.7307144239130862],[112,-43,71,-0.7304401714565728],[112,-43,72,-0.73016831427243],[112,-43,73,-0.7298988570225312],[112,-43,74,-0.7296318042740502],[112,-43,75,-0.7293671604990538],[112,-43,76,-0.729104930074081],[112,-43,77,-0.7288451172797226],[112,-43,78,-0.7285877263002054],[112,-43,79,-0.7283327612229715],[112,-42,64,-0.732527577156634],[112,-42,65,-0.7322386271574988],[112,-42,66,-0.7319520424166865],[112,-42,67,-0.731667828161263],[112,-42,68,-0.7313859895261332],[112,-42,69,-0.7311065315536314],[112,-42,70,-0.7308294591930908],[112,-42,71,-0.7305547773004225],[112,-42,72,-0.730282490637689],[112,-42,73,-0.7300126038726953],[112,-42,74,-0.7297451215785488],[112,-42,75,-0.7294800482332517],[112,-42,76,-0.7292173882192796],[112,-42,77,-0.728957145823162],[112,-42,78,-0.7286993252350653],[112,-42,79,-0.7284439305483723],[112,-41,64,-0.7326453535758628],[112,-41,65,-0.7323559751166183],[112,-41,66,-0.7320689618358259],[112,-41,67,-0.7317843189664603],[112,-41,68,-0.7315020516493389],[112,-41,69,-0.7312221649327095],[112,-41,70,-0.7309446637718224],[112,-41,71,-0.7306695530285074],[112,-41,72,-0.7303968374707485],[112,-41,73,-0.7301265217722734],[112,-41,74,-0.7298586105121151],[112,-41,75,-0.7295931081742026],[112,-41,76,-0.7293300191469402],[112,-41,77,-0.7290693477227874],[112,-41,78,-0.7288110980978426],[112,-41,79,-0.7285552743714219],[112,-40,64,-0.7327632959541777],[112,-40,65,-0.7324734896353525],[112,-40,66,-0.7321860484132015],[112,-40,67,-0.7319009775265988],[112,-40,68,-0.7316182821222648],[112,-40,69,-0.7313379672543525],[112,-40,70,-0.7310600378840203],[112,-40,71,-0.730784498879008],[112,-40,72,-0.7305113550132118],[112,-40,73,-0.7302406109662747],[112,-40,74,-0.7299722713231458],[112,-40,75,-0.729706340573673],[112,-40,76,-0.729442823112181],[112,-40,77,-0.7291817232370512],[112,-40,78,-0.7289230451503059],[112,-40,79,-0.728666792957186],[112,-39,64,-0.7328814045022961],[112,-39,65,-0.7325911709279613],[112,-39,66,-0.7323033023665977],[112,-39,67,-0.7320178040629706],[112,-39,68,-0.7317346811696936],[112,-39,69,-0.7314539387468162],[112,-39,70,-0.7311755817613955],[112,-39,71,-0.7308996150870728],[112,-39,72,-0.7306260435036483],[112,-39,73,-0.7303548716966707],[112,-39,74,-0.7300861042569973],[112,-39,75,-0.7298197456803862],[112,-39,76,-0.7295558003670743],[112,-39,77,-0.7292942726213567],[112,-39,78,-0.7290351666511712],[112,-39,79,-0.728778486567676],[112,-38,64,-0.7329996794279074],[112,-38,65,-0.7327090192056727],[112,-38,66,-0.7324207239107645],[112,-38,67,-0.7321347987938297],[112,-38,68,-0.7318512490133663],[112,-38,69,-0.731570079635311],[112,-38,70,-0.7312912956326107],[112,-38,71,-0.7310149018847996],[112,-38,72,-0.7307409031775725],[112,-38,73,-0.7304693042023753],[112,-38,74,-0.7302001095559654],[112,-38,75,-0.7299333237400022],[112,-38,76,-0.7296689511606262],[112,-38,77,-0.7294069961280384],[112,-38,78,-0.7291474628560839],[112,-38,79,-0.7288903554618296],[112,-37,64,-0.7331181209357227],[112,-37,65,-0.7328270346767327],[112,-37,66,-0.7325383132574659],[112,-37,67,-0.7322519619344411],[112,-37,68,-0.7319679858720315],[112,-37,69,-0.7316863901420518],[112,-37,70,-0.7314071797233302],[112,-37,71,-0.7311303595012838],[112,-37,72,-0.7308559342674937],[112,-37,73,-0.7305839087192949],[112,-37,74,-0.7303142874593351],[112,-37,75,-0.730047074995167],[112,-37,76,-0.7297822757388265],[112,-37,77,-0.7295198940064116],[112,-37,78,-0.7292599340176665],[112,-37,79,-0.7290023998955594],[112,-36,64,-0.7332367292274615],[112,-36,65,-0.7329452175463929],[112,-36,66,-0.7326560706154679],[112,-36,67,-0.7323692936970683],[112,-36,68,-0.7320848919614331],[112,-36,69,-0.7318028704862458],[112,-36,70,-0.7315232342562064],[112,-36,71,-0.7312459881626063],[112,-36,72,-0.7309711370029044],[112,-36,73,-0.7306986854803147],[112,-36,74,-0.7304286382033676],[112,-36,75,-0.7301609996855001],[112,-36,76,-0.7298957743446348],[112,-36,77,-0.729632966502759],[112,-36,78,-0.7293725803855071],[112,-36,79,-0.7291146201217402],[112,-35,64,-0.7333555045018392],[112,-35,65,-0.7330635680168964],[112,-35,66,-0.7327739961905251],[112,-35,67,-0.7324867942909601],[112,-35,68,-0.7322019674942967],[112,-35,69,-0.7319195208840782],[112,-35,70,-0.7316394594508671],[112,-35,71,-0.7313617880918204],[112,-35,72,-0.7310865116102648],[112,-35,73,-0.7308136347152858],[112,-35,74,-0.7305431620212867],[112,-35,75,-0.7302750980475808],[112,-35,76,-0.7300094472179686],[112,-35,77,-0.7297462138603175],[112,-35,78,-0.7294854022061449],[112,-35,79,-0.7292270163901959],[112,-34,64,-0.7334744469546172],[112,-34,65,-0.7331820862875295],[112,-34,66,-0.732892090185431],[112,-34,67,-0.7326044639224002],[112,-34,68,-0.7323192126803797],[112,-34,69,-0.732036341548763],[112,-34,70,-0.7317558555239654],[112,-34,71,-0.731477759509001],[112,-34,72,-0.7312020583130552],[112,-34,73,-0.7309287566510753],[112,-34,74,-0.7306578591433296],[112,-34,75,-0.7303893703149982],[112,-34,76,-0.7301232945957514],[112,-34,77,-0.7298596363193283],[112,-34,78,-0.7295983997231203],[112,-34,79,-0.7293395889477486],[112,-33,64,-0.7335935567785827],[112,-33,65,-0.7333007725546],[112,-33,66,-0.7330103527999976],[112,-33,67,-0.7327223027946881],[112,-33,68,-0.7324366277264516],[112,-33,69,-0.7321533326905223],[112,-33,70,-0.7318724226891598],[112,-33,71,-0.7315939026312249],[112,-33,72,-0.7313177773317536],[112,-33,73,-0.7310440515115458],[112,-33,74,-0.7307727297967255],[112,-33,75,-0.7305038167183311],[112,-33,76,-0.7302373167118938],[112,-33,77,-0.729973234117016],[112,-33,78,-0.7297115731769547],[112,-33,79,-0.7294523380381988],[112,-32,64,-0.7337128341635711],[112,-32,65,-0.7334196270114607],[112,-32,66,-0.733128784231078],[112,-32,67,-0.7328403111081603],[112,-32,68,-0.7325542128363154],[112,-32,69,-0.7322704945166092],[112,-32,70,-0.7319891611571355],[112,-32,71,-0.7317102176725934],[112,-32,72,-0.7314336688838593],[112,-32,73,-0.7311595195175773],[112,-32,74,-0.7308877742057182],[112,-32,75,-0.7306184374851696],[112,-32,76,-0.7303515137973149],[112,-32,77,-0.7300870074876111],[112,-32,78,-0.7298249228051723],[112,-32,79,-0.7295652639023464],[112,-31,64,-0.7338322792964455],[112,-31,65,-0.733538649848488],[112,-31,66,-0.7332473846725458],[112,-31,67,-0.7329584890601705],[112,-31,68,-0.7326719682107883],[112,-31,69,-0.7323878272312865],[112,-31,70,-0.7321060711355849],[112,-31,71,-0.7318267048442105],[112,-31,72,-0.7315497331838716],[112,-31,73,-0.7312751608870472],[112,-31,74,-0.7310029925915453],[112,-31,75,-0.7307332328400946],[112,-31,76,-0.7304658860799214],[112,-31,77,-0.7302009566623288],[112,-31,78,-0.7299384488422791],[112,-31,79,-0.7296783667779715],[112,-30,64,-0.7339518923611472],[112,-30,65,-0.7336578412531335],[112,-30,66,-0.7333661543153455],[112,-30,67,-0.7330768368451395],[112,-30,68,-0.7327898940477504],[112,-30,69,-0.7325053310358779],[112,-30,70,-0.7322231528292572],[112,-30,71,-0.7319433643542343],[112,-30,72,-0.7316659704433405],[112,-30,73,-0.7313909758348797],[112,-30,74,-0.731118385172489],[112,-30,75,-0.7308482030047281],[112,-30,76,-0.7305804337846582],[112,-30,77,-0.7303150818694194],[112,-30,78,-0.7300521515198138],[112,-30,79,-0.7297916468998827],[112,-29,64,-0.7340716735386827],[112,-29,65,-0.7337772014099098],[112,-29,66,-0.733485093347479],[112,-29,67,-0.7331953546545423],[112,-29,68,-0.7329079905421331],[112,-29,69,-0.7326230061287535],[112,-29,70,-0.732340406439945],[112,-29,71,-0.7320601964078635],[112,-29,72,-0.7317823808708527],[112,-29,73,-0.7315069645730332],[112,-29,74,-0.7312339521638613],[112,-29,75,-0.7309633481977198],[112,-29,76,-0.7306951571334949],[112,-29,77,-0.7304293833341549],[112,-29,78,-0.7301660310663333],[112,-29,79,-0.729905104499905],[112,-28,64,-0.7341916230071104],[112,-28,65,-0.7338967305003774],[112,-28,66,-0.7336042019539935],[112,-28,67,-0.7333140426768952],[112,-28,68,-0.733026257885905],[112,-28,69,-0.7327408527053181],[112,-28,70,-0.7324578321664721],[112,-28,71,-0.7321772012073232],[112,-28,72,-0.7318989646720189],[112,-28,73,-0.7316231273104863],[112,-28,74,-0.7313496937779925],[112,-28,75,-0.7310786686347334],[112,-28,76,-0.7308100563454116],[112,-28,77,-0.7305438612788153],[112,-28,78,-0.7302800877073998],[112,-28,79,-0.7300187398068652],[112,-27,64,-0.7343117409415907],[112,-27,65,-0.7340164287031959],[112,-27,66,-0.73372348031703],[112,-27,67,-0.7334329010978049],[112,-27,68,-0.7331446962681221],[112,-27,69,-0.7328588709580596],[112,-27,70,-0.7325754302047421],[112,-27,71,-0.7322943789519162],[112,-27,72,-0.7320157220495234],[112,-27,73,-0.7317394642532885],[112,-27,74,-0.7314656102242797],[112,-27,75,-0.731194164528497],[112,-27,76,-0.7309251316364505],[112,-27,77,-0.7306585159227388],[112,-27,78,-0.7303943216656308],[112,-27,79,-0.7301325530466427],[112,-26,64,-0.7344320275143665],[112,-26,65,-0.7341362961941028],[112,-26,66,-0.7338429286158049],[112,-26,67,-0.7335519300999497],[112,-26,68,-0.7332633058749078],[112,-26,69,-0.7329770610765304],[112,-26,70,-0.7326932007477194],[112,-26,71,-0.7324117298380018],[112,-26,72,-0.7321326532031041],[112,-26,73,-0.7318559756045393],[112,-26,74,-0.7315817017091669],[112,-26,75,-0.7313098360887822],[112,-26,76,-0.7310403832196936],[112,-26,77,-0.730773347482301],[112,-26,78,-0.7305087331606782],[112,-26,79,-0.7302465444421486],[112,-25,64,-0.7345524828947847],[112,-25,65,-0.734256333145936],[112,-25,66,-0.7339625470266307],[112,-25,67,-0.7336711298631003],[112,-25,68,-0.7333820868894748],[112,-25,69,-0.7330954232473684],[112,-25,70,-0.7328111439854501],[112,-25,71,-0.7325292540590186],[112,-25,72,-0.7322497583295745],[112,-25,73,-0.7319726615644103],[112,-25,74,-0.7316979684361672],[112,-25,75,-0.7314256835224265],[112,-25,76,-0.7311558113052858],[112,-25,77,-0.7308883561709374],[112,-25,78,-0.7306233224092504],[112,-25,79,-0.7303607142133475],[112,-24,64,-0.7346731072492758],[112,-24,65,-0.7343765397286135],[112,-24,66,-0.7340823357228963],[112,-24,67,-0.7337905005641003],[112,-24,68,-0.7335010394921047],[112,-24,69,-0.7332139576542767],[112,-24,70,-0.7329292601050428],[112,-24,71,-0.7326469518054627],[112,-24,72,-0.7323670376228029],[112,-24,73,-0.7320895223301245],[112,-24,74,-0.7318144106058418],[112,-24,75,-0.7315417070333123],[112,-24,76,-0.7312714161004137],[112,-24,77,-0.7310035421991216],[112,-24,78,-0.7307380896250916],[112,-24,79,-0.730475062577236],[112,-23,64,-0.7347939007414047],[112,-23,65,-0.7344969161091834],[112,-23,66,-0.7342022948751171],[112,-23,67,-0.733910042376916],[112,-23,68,-0.733620163860198],[112,-23,69,-0.7333326644780739],[112,-23,70,-0.7330475492907172],[112,-23,71,-0.7327648232649394],[112,-23,72,-0.7324844912737624],[112,-23,73,-0.7322065580960068],[112,-23,74,-0.7319310284158501],[112,-23,75,-0.7316579068224172],[112,-23,76,-0.731387197809356],[112,-23,77,-0.7311189057744163],[112,-23,78,-0.7308530350190314],[112,-23,79,-0.7305895897478942],[112,-22,64,-0.7349148635318578],[112,-22,65,-0.7346174624518118],[112,-22,66,-0.7343224246509221],[112,-22,67,-0.7340297554726233],[112,-22,68,-0.7337394601682617],[112,-22,69,-0.7334515438966811],[112,-22,70,-0.7331660117237925],[112,-22,71,-0.7328828686221488],[112,-22,72,-0.732602119470518],[112,-22,73,-0.7323237690534703],[112,-22,74,-0.732047822060937],[112,-22,75,-0.7317742830878002],[112,-22,76,-0.7315031566334695],[112,-22,77,-0.7312344471014596],[112,-22,78,-0.7309681587989719],[112,-22,79,-0.7307042959364715],[112,-21,64,-0.7350359957784283],[112,-21,65,-0.7347381789177674],[112,-21,66,-0.7344427252150398],[112,-21,67,-0.7341496400193941],[112,-21,68,-0.7338589285878945],[112,-21,69,-0.7335705960851078],[112,-21,70,-0.7332846475826723],[112,-21,71,-0.7330010880588728],[112,-21,72,-0.7327199223982127],[112,-21,73,-0.7324411553910026],[112,-21,74,-0.7321647917329179],[112,-21,75,-0.7318908360245888],[112,-21,76,-0.7316192927711764],[112,-21,77,-0.731350166381951],[112,-21,78,-0.7310834611698738],[112,-21,79,-0.7308191813511719],[112,-20,64,-0.7351572976360683],[112,-20,65,-0.734859065665474],[112,-20,66,-0.7345631967293497],[112,-20,67,-0.734269696182547],[112,-20,68,-0.7339785692878383],[112,-20,69,-0.733689821215503],[112,-20,70,-0.7334034570428964],[112,-20,71,-0.733119481754025],[112,-20,72,-0.7328379002391182],[112,-20,73,-0.7325587172942168],[112,-20,74,-0.7322819376207307],[112,-20,75,-0.7320075658250282],[112,-20,76,-0.7317356064180133],[112,-20,77,-0.7314660638147022],[112,-20,78,-0.731198942333806],[112,-20,79,-0.7309342461973057],[112,-19,64,-0.7352787692568675],[112,-19,65,-0.7349801228504889],[112,-19,66,-0.7346838393528607],[112,-19,67,-0.7343899241245269],[112,-19,68,-0.7340983824339575],[112,-19,69,-0.733809219457134],[112,-19,70,-0.733522440277119],[112,-19,71,-0.7332380498836304],[112,-19,72,-0.7329560531726137],[112,-19,73,-0.7326764549458299],[112,-19,74,-0.7323992599104134],[112,-19,75,-0.7321244726784617],[112,-19,76,-0.7318520977666114],[112,-19,77,-0.7315821395956156],[112,-19,78,-0.7313146024899259],[112,-19,79,-0.731049490677268],[112,-18,64,-0.7354004107900755],[112,-18,65,-0.7351013506255256],[112,-18,66,-0.7348046532417339],[112,-18,67,-0.7345103240049264],[112,-18,68,-0.7342183681892605],[112,-18,69,-0.733928790976409],[112,-18,70,-0.7336415974551318],[112,-18,71,-0.7333567926208476],[112,-18,72,-0.7330743813752083],[112,-18,73,-0.7327943685256852],[112,-18,74,-0.7325167587851276],[112,-18,75,-0.7322415567713519],[112,-18,76,-0.7319687670067181],[112,-18,77,-0.7316983939177065],[112,-18,78,-0.7314304418345002],[112,-18,79,-0.7311649149905601],[112,-17,64,-0.735522222382081],[112,-17,65,-0.7352227491404326],[112,-17,66,-0.7349256385492617],[112,-17,67,-0.7346308959804662],[112,-17,68,-0.7343385267138792],[112,-17,69,-0.7340485359368558],[112,-17,70,-0.7337609287438419],[112,-17,71,-0.7334757101359475],[112,-17,72,-0.73319288502052],[112,-17,73,-0.7329124582107317],[112,-17,74,-0.7326344344251363],[112,-17,75,-0.7323588182872598],[112,-17,76,-0.7320856143251757],[112,-17,77,-0.7318148269710825],[112,-17,78,-0.7315464605608846],[112,-17,79,-0.7312805193337691],[112,-16,64,-0.7356442041764633],[112,-16,65,-0.7353443185422445],[112,-16,66,-0.7350467954259188],[112,-16,67,-0.7347516402050442],[112,-16,68,-0.7344588581651205],[112,-16,69,-0.7341684544991731],[112,-16,70,-0.733880434307324],[112,-16,71,-0.7335948025963641],[112,-16,72,-0.7333115642793266],[112,-16,73,-0.733030724175074],[112,-16,74,-0.7327522870078552],[112,-16,75,-0.7324762574068958],[112,-16,76,-0.7322026399059728],[112,-16,77,-0.7319314389429932],[112,-16,78,-0.7316626588595737],[112,-16,79,-0.7313963039006182],[112,-15,64,-0.7357663563139776],[112,-15,65,-0.7354660589751686],[112,-15,66,-0.7351681240193482],[112,-15,67,-0.7348725568297243],[112,-15,68,-0.7345793626974515],[112,-15,69,-0.7342885468212161],[112,-15,70,-0.7340001143068053],[112,-15,71,-0.733714070166681],[112,-15,72,-0.7334304193195514],[112,-15,73,-0.7331491665899594],[112,-15,74,-0.7328703167078391],[112,-15,75,-0.7325938743081053],[112,-15,76,-0.7323198439302295],[112,-15,77,-0.732048230017817],[112,-15,78,-0.7317790369181879],[112,-15,79,-0.7315122688819525],[112,-14,64,-0.7358886789325424],[112,-14,65,-0.7355879705805708],[112,-14,66,-0.7352896244743476],[112,-14,67,-0.7349936460027197],[112,-14,68,-0.7347000404624863],[112,-14,69,-0.7344088130579833],[112,-14,70,-0.734119968900653],[112,-14,71,-0.7338335130086173],[112,-14,72,-0.7335494503062499],[112,-14,73,-0.7332677856237634],[112,-14,74,-0.7329885236967669],[112,-14,75,-0.7327116691658553],[112,-14,76,-0.7324372265761838],[112,-14,77,-0.732165200377047],[112,-14,78,-0.7318955949214582],[112,-14,79,-0.7316284144657254],[112,-13,64,-0.7360111721672901],[112,-13,65,-0.735710053497027],[112,-13,66,-0.7354112969329208],[112,-13,67,-0.7351149078694466],[112,-13,68,-0.734820891609037],[112,-13,69,-0.7345292533616672],[112,-13,70,-0.734239998244424],[112,-13,71,-0.7339531312810788],[112,-13,72,-0.73366865740166],[112,-13,73,-0.7333865814420404],[112,-13,74,-0.7331069081434939],[112,-13,75,-0.7328296421522845],[112,-13,76,-0.7325547880192427],[112,-13,77,-0.7322823501993416],[112,-13,78,-0.7320123330512782],[112,-13,79,-0.7317447408370488],[112,-12,64,-0.7361338361505532],[112,-12,65,-0.7358323078603091],[112,-12,66,-0.7355331415342634],[112,-12,67,-0.7352363425725084],[112,-12,68,-0.7349419162830997],[112,-12,69,-0.7346498678816406],[112,-12,70,-0.7343602024908517],[112,-12,71,-0.7340729251401434],[112,-12,72,-0.7337880407651891],[112,-12,73,-0.7335055542075106],[112,-12,74,-0.7332254702140364],[112,-12,75,-0.7329477934366906],[112,-12,76,-0.7326725284319677],[112,-12,77,-0.7323996796605103],[112,-12,78,-0.7321292514866893],[112,-12,79,-0.7318612481781795],[112,-11,64,-0.7362566710118505],[112,-11,65,-0.7359547338033712],[112,-11,66,-0.7356551584147493],[112,-11,67,-0.7353579502516833],[112,-11,68,-0.7350631146278407],[112,-11,69,-0.7347706567644423],[112,-11,70,-0.7344805817898319],[112,-11,71,-0.7341928947390486],[112,-11,72,-0.7339076005533991],[112,-11,73,-0.7336247040800449],[112,-11,74,-0.7333442100715589],[112,-11,75,-0.7330661231855146],[112,-11,76,-0.732790447984061],[112,-11,77,-0.7325171889334999],[112,-11,78,-0.7322463504038667],[112,-11,79,-0.731977936668505],[112,-10,64,-0.736379676877939],[112,-10,65,-0.736077331456401],[112,-10,66,-0.7357773477079815],[112,-10,67,-0.7354797310439743],[112,-10,68,-0.7351844867836477],[112,-10,69,-0.7348916201538289],[112,-10,70,-0.7346011362884741],[112,-10,71,-0.7343130402282404],[112,-10,72,-0.734027336920058],[112,-10,73,-0.7337440312167168],[112,-10,74,-0.7334631278764243],[112,-10,75,-0.7331846315623928],[112,-10,76,-0.7329085468424161],[112,-10,77,-0.7326348781884453],[112,-10,78,-0.7323636299761702],[112,-10,79,-0.7320948064845936],[112,-9,64,-0.7365028538727918],[112,-9,65,-0.7362001009467984],[112,-9,66,-0.7358997095447718],[112,-9,67,-0.735601685083589],[112,-9,68,-0.7353060328881083],[112,-9,69,-0.735012758190753],[112,-9,70,-0.7347218661310801],[112,-9,71,-0.7344333617553542],[112,-9,72,-0.7341472500161184],[112,-9,73,-0.7338635357717809],[112,-9,74,-0.7335822237861727],[112,-9,75,-0.7333033187281355],[112,-9,76,-0.733026825171097],[112,-9,77,-0.7327527475926483],[112,-9,78,-0.7324810903741231],[112,-9,79,-0.7322118578001741],[112,-8,64,-0.7366262021176206],[112,-8,65,-0.7363230423991983],[112,-8,66,-0.7360222440531619],[112,-8,67,-0.7357238125019612],[112,-8,68,-0.7354277530760329],[112,-8,69,-0.7351340710133852],[112,-8,70,-0.7348427714591659],[112,-8,71,-0.7345538594652358],[112,-8,72,-0.7342673399897398],[112,-8,73,-0.7339832178966945],[112,-8,74,-0.7337014979555438],[112,-8,75,-0.7334221848407484],[112,-8,76,-0.7331452831313601],[112,-8,77,-0.7328707973105991],[112,-8,78,-0.732598731765434],[112,-8,79,-0.732329090786157],[112,-7,64,-0.7367497217308557],[112,-7,65,-0.7364461559354488],[112,-7,66,-0.7361449513584032],[112,-7,67,-0.7358461134277299],[112,-7,68,-0.7355496474794329],[112,-7,69,-0.7352555587570941],[112,-7,70,-0.734963852411441],[112,-7,71,-0.7346745334999198],[112,-7,72,-0.7343876069862674],[112,-7,73,-0.7341030777400969],[112,-7,74,-0.7338209505364555],[112,-7,75,-0.7335412300554118],[112,-7,76,-0.7332639208816321],[112,-7,77,-0.7329890275039554],[112,-7,78,-0.7327165543149753],[112,-7,79,-0.7324465056106133],[112,-6,64,-0.7368734128281959],[112,-6,65,-0.7365694416746631],[112,-6,66,-0.7362678315830077],[112,-6,67,-0.7359685879867903],[112,-6,68,-0.7356717162275717],[112,-6,69,-0.7353772215544959],[112,-6,70,-0.735085109123859],[112,-6,71,-0.7347953839986822],[112,-6,72,-0.7345080511482825],[112,-6,73,-0.7342231154478602],[112,-6,74,-0.7339405816780542],[112,-6,75,-0.7336604545245315],[112,-6,76,-0.7333827385775618],[112,-6,77,-0.7331074383315934],[112,-6,78,-0.732834558184834],[112,-6,79,-0.7325641024388254],[112,-5,64,-0.7369972755225951],[112,-5,65,-0.7366928997332052],[112,-5,66,-0.7363908848467339],[112,-5,67,-0.7360912363022809],[112,-5,68,-0.7357939594469517],[112,-5,69,-0.7354990595354416],[112,-5,70,-0.7352065417296043],[112,-5,71,-0.7349164110980246],[112,-5,72,-0.7346286726155897],[112,-5,73,-0.7343433311630752],[112,-5,74,-0.734060391526702],[112,-5,75,-0.7337798583977246],[112,-5,76,-0.7335017363720057],[112,-5,77,-0.7332260299495929],[112,-5,78,-0.7329527435342981],[112,-5,79,-0.7326818814332728],[112,-4,64,-0.7371213099242488],[112,-4,65,-0.7368165302246754],[112,-4,66,-0.736514111266573],[112,-4,67,-0.7362140584945678],[112,-4,68,-0.735916377261299],[112,-4,69,-0.735621072827002],[112,-4,70,-0.735328150359077],[112,-4,71,-0.7350376149316613],[112,-4,72,-0.7347494715252011],[112,-4,73,-0.7344637250260371],[112,-4,74,-0.7341803802259611],[112,-4,75,-0.7338994418218049],[112,-4,76,-0.7336209144150136],[112,-4,77,-0.7333448025112237],[112,-4,78,-0.7330711105198413],[112,-4,79,-0.7327998427536179],[112,-3,64,-0.7372455161406448],[112,-3,65,-0.7369403332599633],[112,-3,66,-0.7366375109568001],[112,-3,67,-0.7363370546812971],[112,-3,68,-0.7360389697916156],[112,-3,69,-0.7357432615535197],[112,-3,70,-0.7354499351399447],[112,-3,71,-0.7351589956305697],[112,-3,72,-0.7348704480113889],[112,-3,73,-0.7345842971742969],[112,-3,74,-0.7343005479166462],[112,-3,75,-0.7340192049408346],[112,-3,76,-0.73374027285388],[112,-3,77,-0.7334637561669967],[112,-3,78,-0.7331896592951751],[112,-3,79,-0.7329179865567564],[112,-2,64,-0.7373698942765423],[112,-2,65,-0.7370643089472245],[112,-2,66,-0.736761084028953],[112,-2,67,-0.7364602249773735],[112,-2,68,-0.7361617371561577],[112,-2,69,-0.7358656258365873],[112,-2,70,-0.7355718961971215],[112,-2,71,-0.7352805533229698],[112,-2,72,-0.7349916022056632],[112,-2,73,-0.73470504774264],[112,-2,74,-0.7344208947368018],[112,-2,75,-0.7341391478961026],[112,-2,76,-0.7338598118331219],[112,-2,77,-0.7335828910646418],[112,-2,78,-0.7333083900112265],[112,-2,79,-0.733036312996797],[112,-1,64,-0.737494444433994],[112,-1,65,-0.7371884573919045],[112,-1,66,-0.7368848305918547],[112,-1,67,-0.7365835694949823],[112,-1,68,-0.7362846794704583],[112,-1,69,-0.7359881657950699],[112,-1,70,-0.7356940336527893],[112,-1,71,-0.7354022881343453],[112,-1,72,-0.7351129342367946],[112,-1,73,-0.7348259768631078],[112,-1,74,-0.7345414208217256],[112,-1,75,-0.7342592708261465],[112,-1,76,-0.7339795314945017],[112,-1,77,-0.7337022073491304],[112,-1,78,-0.7334273028161603],[112,-1,79,-0.7331548222250818],[112,0,64,-0.7376191667123251],[112,0,65,-0.7373127786967164],[112,0,66,-0.7370087507515912],[112,0,67,-0.7367070883435677],[112,0,68,-0.7364077968473044],[112,0,69,-0.7361108815450831],[112,0,70,-0.7358163476263768],[112,0,71,-0.7355242001874227],[112,0,72,-0.7352344442307921],[112,0,73,-0.7349470846649768],[112,0,74,-0.7346621263039455],[112,0,75,-0.7343795738667309],[112,0,76,-0.7340994319770047],[112,0,77,-0.7338217051626532],[112,0,78,-0.7335463978553572],[112,0,79,-0.7332735143901659],[112,1,64,-0.7377440612081845],[112,1,65,-0.7374372729616926],[112,1,66,-0.7371328446115638],[112,1,67,-0.7368307816298851],[112,1,68,-0.7365310893967907],[112,1,69,-0.736233773200045],[112,1,70,-0.7359388382346111],[112,1,71,-0.7356462896022228],[112,1,72,-0.7353561323109548],[112,1,73,-0.7350683712748094],[112,1,74,-0.7347830113132721],[112,1,75,-0.7345000571508988],[112,1,76,-0.7342195134168914],[112,1,77,-0.7339413846446724],[112,1,78,-0.7336656752714652],[112,1,79,-0.7333923896378677],[112,2,64,-0.7378691280155307],[112,2,65,-0.737561940284171],[112,2,66,-0.7372571122724749],[112,2,67,-0.7369546494579864],[112,2,68,-0.7366545572263034],[112,2,69,-0.7363568408706619],[112,2,70,-0.7360615055915031],[112,2,71,-0.7357685564960459],[112,2,72,-0.7354779985978578],[112,2,73,-0.7351898368164399],[112,2,74,-0.7349040759767834],[112,2,75,-0.7346207208089572],[112,2,76,-0.7343397759476822],[112,2,77,-0.7340612459319062],[112,2,78,-0.733785135204385],[112,2,79,-0.7335114481112552],[112,3,64,-0.737994367225618],[112,3,65,-0.7376867807587801],[112,3,66,-0.737381553832313],[112,3,67,-0.7370786919292052],[112,3,68,-0.7367782004405067],[112,3,69,-0.7364800846649132],[112,3,70,-0.7361843498083327],[112,3,71,-0.7358910009834579],[112,3,72,-0.7356000432093373],[112,3,73,-0.7353114814109597],[112,3,74,-0.7350253204188113],[112,3,75,-0.7347415649684628],[112,3,76,-0.7344602197001426],[112,3,77,-0.7341812891583148],[112,3,78,-0.7339047777912558],[112,3,79,-0.7336306899506304],[112,4,64,-0.7381197789270473],[112,4,65,-0.7378117944774916],[112,4,66,-0.7375061693864051],[112,4,67,-0.7372029091422092],[112,4,68,-0.7369020191413945],[112,4,69,-0.7366035046881043],[112,4,70,-0.7363073709937016],[112,4,71,-0.7360136231763417],[112,4,72,-0.7357222662605423],[112,4,73,-0.7354333051767692],[112,4,74,-0.7351467447609923],[112,4,75,-0.7348625897542725],[112,4,76,-0.7345808448023365],[112,4,77,-0.7343015144551518],[112,4,78,-0.7340246031665061],[112,4,79,-0.7337501152935818],[112,5,64,-0.7382453632057456],[112,5,65,-0.7379369815295979],[112,5,66,-0.7376309590273948],[112,5,67,-0.7373273011929788],[112,5,68,-0.7370260134282687],[112,5,69,-0.7367271010428438],[112,5,70,-0.7364305692535105],[112,5,71,-0.7361364231838748],[112,5,72,-0.735844667863913],[112,5,73,-0.7355553082295558],[112,5,74,-0.7352683491222458],[112,5,75,-0.7349837952885235],[112,5,76,-0.734701651379602],[112,5,77,-0.7344219219509422],[112,5,78,-0.7341446114618323],[112,5,79,-0.7338697242749614],[112,6,64,-0.7383711201449878],[112,6,65,-0.7380623420017349],[112,6,66,-0.7377559228452649],[112,6,67,-0.7374518681748284],[112,6,68,-0.7371501833977612],[112,6,69,-0.7368508738290661],[112,6,70,-0.7365539446909817],[112,6,71,-0.7362594011125532],[112,6,72,-0.735967248129203],[112,6,73,-0.7356774906823165],[112,6,74,-0.7353901336187969],[112,6,75,-0.7351051816906535],[112,6,76,-0.734822639554575],[112,6,77,-0.7345425117715049],[112,6,78,-0.7342648028062206],[112,6,79,-0.733989517026908],[112,7,64,-0.7384970498253753],[112,7,65,-0.7381878759778606],[112,7,66,-0.737881060927315],[112,7,67,-0.7375766101783854],[112,7,68,-0.737274529143812],[112,7,69,-0.7369748231440099],[112,7,70,-0.7366774974066375],[112,7,71,-0.7363825570661674],[112,7,72,-0.7360900071634573],[112,7,73,-0.7357998526453349],[112,7,74,-0.7355120983641535],[112,7,75,-0.7352267490773798],[112,7,76,-0.7349438094471668],[112,7,77,-0.7346632840399296],[112,7,78,-0.7343851773259247],[112,7,79,-0.7341094936788236],[112,8,64,-0.7386231523248872],[112,8,65,-0.7383135835393062],[112,8,66,-0.738006373358214],[112,8,67,-0.7377015272916418],[112,8,68,-0.7373990507577218],[112,8,69,-0.7370989490822697],[112,8,70,-0.7368012274983515],[112,8,71,-0.736505891145856],[112,8,72,-0.7362129450710638],[112,8,73,-0.7359223942262342],[112,8,74,-0.735634243469159],[112,8,75,-0.7353484975627504],[112,8,76,-0.7350651611746155],[112,8,77,-0.7347842388766299],[112,8,78,-0.734505735144518],[112,8,79,-0.7342296543574262],[112,9,64,-0.7387494277188666],[112,9,65,-0.7384394647647623],[112,9,66,-0.7381318602199854],[112,9,67,-0.7378266195999397],[112,9,68,-0.737523748328137],[112,9,69,-0.7372232517357813],[112,9,70,-0.7369251350613348],[112,9,71,-0.7366294034500899],[112,9,72,-0.7363360619537396],[112,9,73,-0.736045115529962],[112,9,74,-0.7357565690419765],[112,9,75,-0.7354704272581303],[112,9,76,-0.735186694851472],[112,9,77,-0.7349053763993277],[112,9,78,-0.7346264763828783],[112,9,79,-0.7343499991867347],[112,10,64,-0.7388758760800063],[112,10,65,-0.7385655197302639],[112,10,66,-0.7382575215919931],[112,10,67,-0.7379518871859567],[112,10,68,-0.737648621941035],[112,10,69,-0.7373477311938073],[112,10,70,-0.7370492201881202],[112,10,71,-0.7367530940746583],[112,10,72,-0.7364593579105145],[112,10,73,-0.7361680166587752],[112,10,74,-0.7358790751880752],[112,10,75,-0.735592538272185],[112,10,76,-0.7353084105895846],[112,10,77,-0.7350266967230382],[112,10,78,-0.7347474011591731],[112,10,79,-0.7344705282880539],[112,11,64,-0.7390024974784],[112,11,65,-0.7386917485092432],[112,11,66,-0.7383833575509927],[112,11,67,-0.7380773301297584],[112,11,68,-0.7377736716797759],[112,11,69,-0.7374723875429888],[112,11,70,-0.7371734829686154],[112,11,71,-0.7368769631127206],[112,11,72,-0.7365828330377857],[112,11,73,-0.736291097712293],[112,11,74,-0.7360017620102817],[112,11,75,-0.7357148307109344],[112,11,76,-0.7354303084981507],[112,11,77,-0.7351481999601225],[112,11,78,-0.734868509588912],[112,11,79,-0.7345912417800264],[112,12,64,-0.7391292919815211],[112,12,65,-0.7388181511725069],[112,12,66,-0.7385093681711102],[112,12,67,-0.7382029485087755],[112,12,68,-0.7378988976250817],[112,12,69,-0.7375972208673238],[112,12,70,-0.7372979234900802],[112,12,71,-0.7370010106547839],[112,12,72,-0.7367064874292926],[112,12,73,-0.7364143587874734],[112,12,74,-0.7361246296087578],[112,12,75,-0.7358373046777291],[112,12,76,-0.7355523886836953],[112,12,77,-0.7352698862202646],[112,12,78,-0.7349898017849233],[112,12,79,-0.73471213977861],[112,13,64,-0.7392562596542451],[112,13,65,-0.7389447277882594],[112,13,66,-0.7386355535238645],[112,13,67,-0.7383287423978273],[112,13,68,-0.7380242998550575],[112,13,69,-0.7377222312481894],[112,13,70,-0.737422541837149],[112,13,71,-0.7371252367887255],[112,13,72,-0.7368303211761416],[112,13,73,-0.7365377999786366],[112,13,74,-0.736247678081023],[112,13,75,-0.7359599602732735],[112,13,76,-0.7356746512500929],[112,13,77,-0.7353917556104942],[112,13,78,-0.7351112778573772],[112,13,79,-0.7348332223971008],[112,14,64,-0.7393834005588271],[112,14,65,-0.7390714784220793],[112,14,66,-0.7387619136781444],[112,14,67,-0.7384547118690985],[112,14,68,-0.7381498784451697],[112,14,69,-0.7378474187643191],[112,14,70,-0.7375473380918086],[112,14,71,-0.7372496415997714],[112,14,72,-0.7369543343667823],[112,14,73,-0.736661421377442],[112,14,74,-0.7363709075219322],[112,14,75,-0.7360827975956027],[112,14,76,-0.7357970962985445],[112,14,77,-0.735513808235164],[112,14,78,-0.7352329379137625],[112,14,79,-0.7349544897461091],[112,15,64,-0.7395107147549547],[112,15,65,-0.7391984031369737],[112,15,66,-0.7388884487002618],[112,15,67,-0.7385808569921921],[112,15,68,-0.7382756334682982],[112,15,69,-0.737972783491856],[112,15,70,-0.7376723123334505],[112,15,71,-0.7373742251705468],[112,15,72,-0.7370785270870603],[112,15,73,-0.7367852230729408],[112,15,74,-0.7364943180237273],[112,15,75,-0.7362058167401357],[112,15,76,-0.7359197239276307],[112,15,77,-0.7356360441960015],[112,15,78,-0.7353547820589399],[112,15,79,-0.7350759419336133],[112,16,64,-0.7396382022997329],[112,16,65,-0.739325501993362],[112,16,66,-0.7390151586539369],[112,16,67,-0.7387071778341147],[112,16,68,-0.7384015649947222],[112,16,69,-0.7380983255043373],[112,16,70,-0.7377974646388561],[112,16,71,-0.7374989875810631],[112,16,72,-0.7372028994202026],[112,16,73,-0.736909205151561],[112,16,74,-0.7366179096760233],[112,16,75,-0.7363290177996592],[112,16,76,-0.7360425342332965],[112,16,77,-0.7357584635920948],[112,16,78,-0.7354768103951255],[112,16,79,-0.7351975790649432],[112,17,64,-0.7397658632476692],[112,17,65,-0.7394527750490615],[112,17,66,-0.7391420436002826],[112,17,67,-0.7388336744592611],[112,17,68,-0.7385276730921042],[112,17,69,-0.7382240448726795],[112,17,70,-0.7379227950821813],[112,17,71,-0.7376239289087019],[112,17,72,-0.7373274514468016],[112,17,73,-0.7370333676970919],[112,17,74,-0.7367416825657918],[112,17,75,-0.7364524008643134],[112,17,76,-0.7361655273088351],[112,17,77,-0.7358810665198765],[112,17,78,-0.7355990230218765],[112,17,79,-0.7353194012427664],[112,18,64,-0.7398936976507269],[112,18,65,-0.7395802223593401],[112,18,66,-0.7392691035978578],[112,18,67,-0.7389603469294673],[112,18,68,-0.7386539578255436],[112,18,69,-0.7383499416652307],[112,18,70,-0.7380483037350095],[112,18,71,-0.7377490492282673],[112,18,72,-0.7374521832448683],[112,18,73,-0.7371577107907372],[112,18,74,-0.7368656367774148],[112,18,75,-0.7365759660216438],[112,18,76,-0.7362887032449419],[112,18,77,-0.7360038530731768],[112,18,78,-0.7357214200361437],[112,18,79,-0.7354414085671389],[112,19,64,-0.7400217055583092],[112,19,65,-0.739707843976901],[112,19,66,-0.7393963387026523],[112,19,67,-0.7390871953039955],[112,19,68,-0.7387804192575605],[112,19,69,-0.7384760159477562],[112,19,70,-0.7381739906663365],[112,19,71,-0.7378743486119715],[112,19,72,-0.7375770948898174],[112,19,73,-0.7372822345110996],[112,19,74,-0.7369897723926689],[112,19,75,-0.7366997133565867],[112,19,76,-0.7364120621296983],[112,19,77,-0.7361268233432078],[112,19,78,-0.7358440015322554],[112,19,79,-0.7355636011354912],[112,20,64,-0.7401498870172448],[112,20,65,-0.7398356399518685],[112,20,66,-0.7395237489680713],[112,20,67,-0.7392142196395186],[112,20,68,-0.7389070574480824],[112,20,69,-0.7386022677834228],[112,20,70,-0.738299855942555],[112,20,71,-0.7379998271294193],[112,20,72,-0.7377021864544513],[112,20,73,-0.7374069389341654],[112,20,74,-0.73711408949071],[112,20,75,-0.7368236429514532],[112,20,76,-0.7365356040485566],[112,20,77,-0.7362499774185485],[112,20,78,-0.735966767601903],[112,20,79,-0.7356859790426125],[112,21,64,-0.740278242071841],[112,21,65,-0.7399636103318398],[112,21,66,-0.739651334444989],[112,21,67,-0.7393414199901736],[112,21,68,-0.7390338724544949],[112,21,69,-0.7387286972328517],[112,21,70,-0.7384258996275075],[112,21,71,-0.7381254848476607],[112,21,72,-0.7378274580090137],[112,21,73,-0.7375318241333575],[112,21,74,-0.737238588148126],[112,21,75,-0.7369477548859825],[112,21,76,-0.7366593290843924],[112,21,77,-0.7363733153851971],[112,21,78,-0.7360897183341929],[112,21,79,-0.7358085423807029],[112,22,64,-0.7404067707638606],[112,22,65,-0.740091755161863],[112,22,66,-0.7397790951817251],[112,22,67,-0.7394687964075385],[112,22,68,-0.7391608643316203],[112,22,69,-0.738855304354096],[112,22,70,-0.7385521217824641],[112,22,71,-0.7382513218311685],[112,22,72,-0.7379529096211661],[112,22,73,-0.7376568901795122],[112,22,74,-0.7373632684389143],[112,22,75,-0.7370720492373186],[112,22,76,-0.7367832373174824],[112,22,77,-0.7364968373265488],[112,22,78,-0.736212853815624],[112,22,79,-0.7359312912393509],[112,23,64,-0.7405354731325445],[112,23,65,-0.7402200744844598],[112,23,66,-0.7399070312240682],[112,23,67,-0.739596348940655],[112,23,68,-0.7392880331317405],[112,23,69,-0.738982089202663],[112,23,70,-0.7386785224661442],[112,23,71,-0.7383773381418602],[112,23,72,-0.7380785413560106],[112,23,73,-0.7377821371409022],[112,23,74,-0.7374881304345041],[112,23,75,-0.7371965260800329],[112,23,76,-0.7369073288255266],[112,23,77,-0.736620543323417],[112,23,78,-0.7363361741301099],[112,23,79,-0.7360542257055558],[112,24,64,-0.7406643492145899],[112,24,65,-0.7403485683396023],[112,24,66,-0.7400351426152527],[112,24,67,-0.7397240776360059],[112,24,68,-0.7394153789045728],[112,24,69,-0.7391090518314916],[112,24,70,-0.7388051017346939],[112,24,71,-0.7385035338390761],[112,24,72,-0.7382043532760671],[112,24,73,-0.7379075650832135],[112,24,74,-0.7376131742037331],[112,24,75,-0.7373211854861015],[112,24,76,-0.7370316036836242],[112,24,77,-0.7367444334540116],[112,24,78,-0.736459679358956],[112,24,79,-0.7361773458637042],[112,25,64,-0.7407933990442019],[112,25,65,-0.740477236764767],[112,25,66,-0.7401634293960118],[112,25,67,-0.7398519825375682],[112,25,68,-0.7395429016973242],[112,25,69,-0.739236192291005],[112,25,70,-0.7389318596417396],[112,25,71,-0.7386299089796313],[112,25,72,-0.7383303454413264],[112,25,73,-0.738033174069598],[112,25,74,-0.7377383998129009],[112,25,75,-0.737446027524957],[112,25,76,-0.7371560619643286],[112,25,77,-0.7368685077939909],[112,25,78,-0.7365833695809119],[112,25,79,-0.7363006517956232],[112,26,64,-0.7409226226530798],[112,26,65,-0.740606079794918],[112,26,66,-0.7402918916045622],[112,26,67,-0.7399800636867974],[112,26,68,-0.7396706015546756],[112,26,69,-0.7393635106290959],[112,26,70,-0.7390587962383719],[112,26,71,-0.738756463617801],[112,26,72,-0.738456517909234],[112,26,73,-0.7381589641606583],[112,26,74,-0.7378638073257533],[112,26,75,-0.7375710522634751],[112,26,76,-0.7372807037376297],[112,26,77,-0.7369927664164464],[112,26,78,-0.7367072448721566],[112,26,79,-0.7364241435805647],[112,27,64,-0.7410520200704012],[112,27,65,-0.7407350974624936],[112,27,66,-0.7404205292765889],[112,27,67,-0.7401083211226123],[112,27,68,-0.7397984785187661],[112,27,69,-0.7394910068911106],[112,27,70,-0.7391859115731303],[112,27,71,-0.7388831978053044],[112,27,72,-0.7385828707346753],[112,27,73,-0.7382849354144325],[112,27,74,-0.7379893968034669],[112,27,75,-0.7376962597659567],[112,27,76,-0.7374055290709397],[112,27,77,-0.7371172093918872],[112,27,78,-0.7368313053062818],[112,27,79,-0.7365478212951897],[112,28,64,-0.7411815913228743],[112,28,65,-0.740864289797458],[112,28,66,-0.7405493424452987],[112,28,67,-0.7402367548814486],[112,28,68,-0.7399265326292469],[112,28,69,-0.7396186811199021],[112,28,70,-0.7393132056920568],[112,28,71,-0.7390101115913587],[112,28,72,-0.738709403970029],[112,28,73,-0.7384110878864466],[112,28,74,-0.7381151683047018],[112,28,75,-0.7378216500941824],[112,28,76,-0.7375305380291458],[112,28,77,-0.737241836788293],[112,28,78,-0.7369555509543462],[112,28,79,-0.7366716850136212],[112,29,64,-0.741311336434717],[112,29,65,-0.7409936568272789],[112,29,66,-0.7406783311413965],[112,29,67,-0.740365364997235],[112,29,68,-0.7400547639232579],[112,29,69,-0.7397465333558075],[112,29,70,-0.7394406786386721],[112,29,71,-0.7391372050226548],[112,29,72,-0.738836117665143],[112,29,73,-0.738537421629692],[112,29,74,-0.7382411218855791],[112,29,75,-0.7379472233073892],[112,29,76,-0.7376557306745868],[112,29,77,-0.7373666486710908],[112,29,78,-0.7370799818848511],[112,29,79,-0.7367957348074212],[112,30,64,-0.7414412554276778],[112,30,65,-0.7411231985769505],[112,30,66,-0.7408074953931088],[112,30,67,-0.7404941515014174],[112,30,68,-0.7401831724354501],[112,30,69,-0.7398745636366707],[112,30,70,-0.7395683304539992],[112,30,71,-0.7392644781433814],[112,30,72,-0.7389630118673579],[112,30,73,-0.7386639366946478],[112,30,74,-0.7383672575997027],[112,30,75,-0.7380729794622921],[112,30,76,-0.7377811070670759],[112,30,77,-0.7374916451031778],[112,30,78,-0.7372045981637636],[112,30,79,-0.7369199707456127],[112,31,64,-0.7415713483210138],[112,31,65,-0.7412529150689702],[112,31,66,-0.7409368352261599],[112,31,67,-0.7406231144229339],[112,31,68,-0.7403117581979628],[112,31,69,-0.7400027719978184],[112,31,70,-0.7396961611765389],[112,31,71,-0.7393919309952002],[112,31,72,-0.7390900866214831],[112,31,73,-0.7387906331292575],[112,31,74,-0.7384935754981367],[112,31,75,-0.7381989186130622],[112,31,76,-0.7379066672638767],[112,31,77,-0.7376168261448972],[112,31,78,-0.7373293998544928],[112,31,79,-0.7370443928946567],[112,32,64,-0.7417016151315436],[112,32,65,-0.7413828063233916],[112,32,66,-0.741066350663826],[112,32,67,-0.7407522537882698],[112,32,68,-0.740440521240477],[112,32,69,-0.740131158472114],[112,32,70,-0.7398241708423245],[112,32,71,-0.7395195636173006],[112,32,72,-0.7392173419698507],[112,32,73,-0.7389175109789824],[112,32,74,-0.738620075629458],[112,32,75,-0.7383250408113787],[112,32,76,-0.7380324113197574],[112,32,77,-0.7377421918540921],[112,32,78,-0.737454387017943],[112,32,79,-0.7371690013185053],[112,33,64,-0.7418320558736322],[112,33,65,-0.7415128723578099],[112,33,66,-0.741196041726919],[112,33,67,-0.740881569621441],[112,33,68,-0.7405694615901998],[112,33,69,-0.7402597230899425],[112,33,70,-0.7399523594849053],[112,33,71,-0.7396473760463834],[112,33,72,-0.739344777952299],[112,33,73,-0.7390445702867856],[112,33,74,-0.7387467580397411],[112,33,75,-0.7384513461064139],[112,33,76,-0.7381583392869745],[112,33,77,-0.7378677422860894],[112,33,78,-0.7375795597124981],[112,33,79,-0.7372937960785857],[112,34,64,-0.7419626705591754],[112,34,65,-0.7416431131873455],[112,34,66,-0.7413259084337713],[112,34,67,-0.7410110619439789],[112,34,68,-0.7406985792718483],[112,34,69,-0.7403884658791942],[112,34,70,-0.7400807271353314],[112,34,71,-0.7397753683166448],[112,34,72,-0.7394723946061581],[112,34,73,-0.7391718110931169],[112,34,74,-0.7388736227725423],[112,34,75,-0.7385778345448171],[112,34,76,-0.7382844512152568],[112,34,77,-0.7379934774936842],[112,34,78,-0.7377049179940058],[112,34,79,-0.7374187772337842],[112,35,64,-0.7420934591976531],[112,35,65,-0.7417735288246983],[112,35,66,-0.7414559508002896],[112,35,67,-0.741140730774984],[112,35,68,-0.7408278743077039],[112,35,69,-0.7405173868653181],[112,35,70,-0.7402092738222064],[112,35,71,-0.7399035404598303],[112,35,72,-0.7396001919663019],[112,35,73,-0.7392992334359653],[112,35,74,-0.7390006698689525],[112,35,75,-0.7387045061707677],[112,35,76,-0.7384107471518591],[112,35,77,-0.7381193975271929],[112,35,78,-0.7378304619158305],[112,35,79,-0.7375439448405],[112,36,64,-0.7422244217961061],[112,36,65,-0.7419041192801235],[112,36,66,-0.7415861688399307],[112,36,67,-0.741270576131102],[112,36,68,-0.7409573467175885],[112,36,69,-0.7406464860712989],[112,36,70,-0.740337999571665],[112,36,71,-0.7400318925052116],[112,36,72,-0.7397281700651253],[112,36,73,-0.7394268373508366],[112,36,74,-0.7391278993675747],[112,36,75,-0.7388313610259525],[112,36,76,-0.7385372271415385],[112,36,77,-0.7382455024344299],[112,36,78,-0.7379561915288302],[112,36,79,-0.737669298952621],[112,37,64,-0.7423555583591596],[112,37,65,-0.742034884561455],[112,37,66,-0.7417165625637254],[112,37,67,-0.7414005980265475],[112,37,68,-0.7410869965188873],[112,37,69,-0.7407757635176798],[112,37,70,-0.7404669044073954],[112,37,71,-0.7401604244796086],[112,37,72,-0.7398563289325673],[112,37,73,-0.739554622870775],[112,37,74,-0.7392553113045457],[112,37,75,-0.7389583991495878],[112,37,76,-0.7386638912265772],[112,37,77,-0.7383717922607296],[112,37,78,-0.7380821068813787],[112,37,79,-0.7377948396215469],[112,38,64,-0.7424868688889986],[112,38,65,-0.7421658246740828],[112,38,66,-0.7418471319802544],[112,38,67,-0.7415307964730795],[112,38,68,-0.741216823726525],[112,38,69,-0.7409052192225387],[112,38,70,-0.7405959883506154],[112,38,71,-0.740289136407366],[112,38,72,-0.7399846685960866],[112,38,73,-0.7396825900263404],[112,38,74,-0.739382905713513],[112,38,75,-0.7390856205783956],[112,38,76,-0.7387907394467584],[112,38,77,-0.7384982670489236],[112,38,78,-0.738208208019342],[112,38,79,-0.7379205668961648],[112,39,64,-0.7426183533854231],[112,39,65,-0.7422969396210046],[112,39,66,-0.741977877095702],[112,39,67,-0.7416611714800561],[112,39,68,-0.7413468283530203],[112,39,69,-0.7410348532015418],[112,39,70,-0.7407252514201261],[112,39,71,-0.7404180283104074],[112,39,72,-0.7401131890807158],[112,39,73,-0.7398107388456615],[112,39,74,-0.7395106826256881],[112,39,75,-0.7392130253466571],[112,39,76,-0.7389177718394205],[112,39,77,-0.7386249268393935],[112,39,78,-0.7383344949861319],[112,39,79,-0.7380464808229035],[112,40,64,-0.7427500118458311],[112,40,65,-0.7424282294028125],[112,40,66,-0.7421087979138408],[112,40,67,-0.7417917230544178],[112,40,68,-0.7414770104084696],[112,40,69,-0.7411646654679285],[112,40,70,-0.7408546936322972],[112,40,71,-0.7405471002082189],[112,40,72,-0.7402418904090453],[112,40,73,-0.7399390693544199],[112,40,74,-0.7396386420698311],[112,40,75,-0.7393406134861977],[112,40,76,-0.7390449884394404],[112,40,77,-0.7387517716700552],[112,40,78,-0.7384609678226899],[112,40,79,-0.7381725814457165],[112,41,64,-0.7428818442652037],[112,41,65,-0.7425596940176753],[112,41,66,-0.7422398944360156],[112,41,67,-0.7419224512006722],[112,41,68,-0.7416073699005308],[112,41,69,-0.7412946560324942],[112,41,70,-0.7409843150010489],[112,41,71,-0.7406763521178333],[112,41,72,-0.7403707726012074],[112,41,73,-0.7400675815758341],[112,41,74,-0.7397667840722341],[112,41,75,-0.7394683850263698],[112,41,76,-0.7391723892792181],[112,41,77,-0.7388788015763427],[112,41,78,-0.7385876265674711],[112,41,79,-0.7382988688060669],[112,42,64,-0.7430138506361582],[112,42,65,-0.7426913334613936],[112,42,66,-0.7423711666611968],[112,42,67,-0.7420533559209482],[112,42,68,-0.7417379068344777],[112,42,69,-0.7414248249036456],[112,42,70,-0.7411141155379075],[112,42,71,-0.7408057840538844],[112,42,72,-0.7404998356749299],[112,42,73,-0.7401962755307137],[112,42,74,-0.7398951086567748],[112,42,75,-0.739596339994107],[112,42,76,-0.7392999743887297],[112,42,77,-0.7390060165912617],[112,42,78,-0.7387144712564977],[112,42,79,-0.7384253429429801],[112,43,64,-0.7431460309489257],[112,43,65,-0.7428231477273755],[112,43,66,-0.742502614585958],[112,43,67,-0.7421844372149714],[112,43,68,-0.7418686212131763],[112,43,69,-0.7415551720873759],[112,43,70,-0.7412440952519815],[112,43,71,-0.7409353960285824],[112,43,72,-0.7406290796455126],[112,43,73,-0.7403251512374348],[112,43,74,-0.7400236158448936],[112,43,75,-0.7397244784139002],[112,43,76,-0.7394277437955041],[112,43,77,-0.7391334167453661],[112,43,78,-0.7388415019233353],[112,43,79,-0.7385520038930204],[112,44,64,-0.7432783851913727],[112,44,65,-0.7429551368066596],[112,44,66,-0.7426342382044975],[112,44,67,-0.7423156950800877],[112,44,68,-0.741999513037107],[112,44,69,-0.7416856975872879],[112,44,70,-0.7413742541499836],[112,44,71,-0.741065188051737],[112,44,72,-0.7407585045258497],[112,44,73,-0.7404542087119637],[112,44,74,-0.7401523056556154],[112,44,75,-0.7398528003078206],[112,44,76,-0.7395556975246456],[112,44,77,-0.7392610020667802],[112,44,78,-0.7389687185991156],[112,44,79,-0.7386788516903138],[112,45,64,-0.7434109133489782],[112,45,65,-0.743087300687892],[112,45,66,-0.7427660375086154],[112,45,67,-0.742447129511239],[112,45,68,-0.7421305823043418],[112,45,69,-0.741816401404571],[112,45,70,-0.7415045922362071],[112,45,71,-0.7411951601307342],[112,45,72,-0.7408881103264064],[112,45,73,-0.740583447967832],[112,45,74,-0.740281178105526],[112,45,75,-0.7399813056954951],[112,45,76,-0.7396838355988093],[112,45,77,-0.7393887725811752],[112,45,78,-0.7390961213125118],[112,45,79,-0.738805886366523],[112,46,64,-0.743543615404888],[112,46,65,-0.7432196393573791],[112,46,66,-0.7428980124877673],[112,46,67,-0.742578740501018],[112,46,68,-0.7422618290105975],[112,46,69,-0.7419472835380535],[112,46,70,-0.7416351095125806],[112,46,71,-0.741325312270589],[112,46,72,-0.7410178970552723],[112,46,73,-0.7407128690161914],[112,46,74,-0.7404102332088259],[112,46,75,-0.7401099945941607],[112,46,76,-0.7398121580382563],[112,46,77,-0.7395167283118222],[112,46,78,-0.7392237100897934],[112,46,79,-0.7389331079509023],[112,47,64,-0.7436764913398977],[112,47,65,-0.7433521527990727],[112,47,66,-0.743030163129049],[112,47,67,-0.7427105280396514],[112,47,68,-0.7423932531492198],[112,47,69,-0.7420783439841883],[112,47,70,-0.7417658059786509],[112,47,71,-0.7414556444739302],[112,47,72,-0.741147864718146],[112,47,73,-0.7408424718657969],[112,47,74,-0.7405394709773147],[112,47,75,-0.7402388670186484],[112,47,76,-0.7399406648608359],[112,47,77,-0.7396448692795768],[112,47,78,-0.7393514849548093],[112,47,79,-0.7390605164702808],[112,48,64,-0.7438095411324375],[112,48,65,-0.7434848409945536],[112,48,66,-0.7431624894171789],[112,48,67,-0.7428424921149842],[112,48,68,-0.7425248547111677],[112,48,69,-0.7422095827370357],[112,48,70,-0.7418966816315676],[112,48,71,-0.7415861567409845],[112,48,72,-0.7412780133183177],[112,48,73,-0.7409722565229909],[112,48,74,-0.7406688914203737],[112,48,75,-0.7403679229813662],[112,48,76,-0.7400693560819704],[112,48,77,-0.7397731955028627],[112,48,78,-0.7394794459289711],[112,48,79,-0.739188111949046],[112,49,64,-0.7439427647586266],[112,49,65,-0.7436177039230853],[112,49,66,-0.743294991334554],[112,49,67,-0.7429746327125336],[112,49,68,-0.742656633685067],[112,49,69,-0.7423409997883179],[112,49,70,-0.7420277364661367],[112,49,71,-0.7417168490696293],[112,49,72,-0.7414083428567246],[112,49,73,-0.7411022229917572],[112,49,74,-0.7407984945450212],[112,49,75,-0.7404971624923542],[112,49,76,-0.7401982317147087],[112,49,77,-0.739901706997725],[112,49,78,-0.7396075930313079],[112,49,79,-0.739315894409198],[112,50,64,-0.7440761621922565],[112,50,65,-0.7437507415615991],[112,50,66,-0.7434276688612325],[112,50,67,-0.7431069498154734],[112,50,68,-0.7427885900571944],[112,50,69,-0.7424725951274025],[112,50,70,-0.7421589704748051],[112,50,71,-0.7418477214553778],[112,50,72,-0.7415388533319337],[112,50,73,-0.7412323712737048],[112,50,74,-0.7409282803558954],[112,50,75,-0.7406265855592672],[112,50,76,-0.7403272917697099],[112,50,77,-0.7400304037778145],[112,50,78,-0.7397359262784495],[112,50,79,-0.7394438638703326],[112,51,64,-0.7442097334047749],[112,51,65,-0.7438839538846767],[112,51,66,-0.7435605219749178],[112,51,67,-0.743239443404617],[112,51,68,-0.7429207238114612],[112,51,69,-0.7426043687412868],[112,51,70,-0.7422903836476429],[112,51,71,-0.7419787738913619],[112,51,72,-0.7416695447401261],[112,51,73,-0.741362701368051],[112,51,74,-0.741058248855238],[112,51,75,-0.7407561921873588],[112,51,76,-0.7404565362552271],[112,51,77,-0.7401592858543711],[112,51,78,-0.73986444568461],[112,51,79,-0.7395720203496253],[112,52,64,-0.7443434783653408],[112,52,65,-0.7440173408646048],[112,52,66,-0.7436935506510137],[112,52,67,-0.7433721134584723],[112,52,68,-0.7430530349294682],[112,52,69,-0.7427363206146513],[112,52,70,-0.7424219759723996],[112,52,71,-0.7421100063683866],[112,52,72,-0.7418004170751509],[112,52,73,-0.7414932132716768],[112,52,74,-0.741188400042949],[112,52,75,-0.7408859823795358],[112,52,76,-0.7405859651771614],[112,52,77,-0.7402883532362778],[112,52,78,-0.7399931512616416],[112,52,79,-0.7397003638618854],[112,53,64,-0.7444773970407992],[112,53,65,-0.7441509024713518],[112,53,66,-0.7438267548625992],[112,53,67,-0.7435049599532175],[112,53,68,-0.74318552339048],[112,53,69,-0.7428684507298365],[112,53,70,-0.7425537474344781],[112,53,71,-0.7422414188749062],[112,53,72,-0.7419314703285006],[112,53,73,-0.7416239069791013],[112,53,74,-0.7413187339165617],[112,53,75,-0.7410159561363335],[112,53,76,-0.7407155785390376],[112,53,77,-0.7404176059300364],[112,53,78,-0.7401220430190107],[112,53,79,-0.7398288944195313],[112,54,64,-0.7446114893957057],[112,54,65,-0.7442846386725901],[112,54,66,-0.743960134580452],[112,54,67,-0.7436379828627241],[112,54,68,-0.7433181891714502],[112,54,69,-0.7430007590668651],[112,54,70,-0.7426856980169592],[112,54,71,-0.7423730113970468],[112,54,72,-0.7420627044893351],[112,54,73,-0.7417547824825053],[112,54,74,-0.7414492504712663],[112,54,75,-0.7411461134559388],[112,54,76,-0.7408453763420271],[112,54,77,-0.7405470439397903],[112,54,78,-0.7402511209638207],[112,54,79,-0.7399576120326132],[112,55,64,-0.7447457553923009],[112,55,65,-0.7444185494336721],[112,55,66,-0.7440936897730246],[112,55,67,-0.7437711821585322],[112,55,68,-0.743451032246995],[112,55,69,-0.7431332456034181],[112,55,70,-0.7428178277005758],[112,55,71,-0.7425047839185818],[112,55,72,-0.7421941195444561],[112,55,73,-0.741885839771707],[112,55,74,-0.7415799496998847],[112,55,75,-0.7412764543341657],[112,55,76,-0.7409753585849232],[112,55,77,-0.7406766672673004],[112,55,78,-0.7403803851007869],[112,55,79,-0.7400865167087891],[112,56,64,-0.744880194990566],[112,56,65,-0.744552634717685],[112,56,66,-0.744227420406498],[112,56,67,-0.7439045578099058],[112,56,68,-0.7435840525894493],[112,56,69,-0.7432659103148888],[112,56,70,-0.7429501364637687],[112,56,71,-0.7426367364209872],[112,56,72,-0.7423257154783625],[112,56,73,-0.7420170788342163],[112,56,74,-0.741710831592926],[112,56,75,-0.7414069787645095],[112,56,76,-0.741105525264196],[112,56,77,-0.7408064759119988],[112,56,78,-0.7405098354322914],[112,56,79,-0.7402156084533789],[112,57,64,-0.7450148081482058],[112,57,65,-0.7446868944854338],[112,57,66,-0.7443613264447664],[112,57,67,-0.7440381097838159],[112,57,68,-0.7437172501688492],[112,57,69,-0.743398753174367],[112,57,70,-0.7430826242826694],[112,57,71,-0.7427688688834237],[112,57,72,-0.7424574922732332],[112,57,73,-0.7421484996552178],[112,57,74,-0.7418418961385683],[112,57,75,-0.7415376867381304],[112,57,76,-0.7412358763739753],[112,57,77,-0.7409364698709725],[112,57,78,-0.7406394719583665],[112,57,79,-0.7403448872693472],[112,58,64,-0.7451495948206327],[112,58,65,-0.7448213286954255],[112,58,66,-0.7444954078494198],[112,58,67,-0.744171838044924],[112,58,68,-0.743850624952916],[112,58,69,-0.7435317741526223],[112,58,70,-0.7432152911310834],[112,58,71,-0.7429011812827221],[112,58,72,-0.742589449908911],[112,58,73,-0.742280102217555],[112,58,74,-0.741973143322644],[112,58,75,-0.741668578243837],[112,58,76,-0.7413664119060338],[112,58,77,-0.7410666491389468],[112,58,78,-0.7407692946766773],[112,58,79,-0.7404743531572873],[112,59,64,-0.7452845549610212],[112,59,65,-0.7449559373039237],[112,59,66,-0.7446296645797993],[112,59,67,-0.7443057425556372],[112,59,68,-0.7439841769071109],[112,59,69,-0.7436649732181585],[112,59,70,-0.7433481369805456],[112,59,71,-0.7430336735934356],[112,59,72,-0.742721588362957],[112,59,73,-0.7424118865017844],[112,59,74,-0.7421045731286926],[112,59,75,-0.7417996532681407],[112,59,76,-0.7414971318498425],[112,59,77,-0.7411970137083397],[112,59,78,-0.7408993035825772],[112,59,79,-0.7406040061154752],[112,60,64,-0.7454196885202835],[112,60,65,-0.7450907202649241],[112,60,66,-0.7447640965929722],[112,60,67,-0.7444398232760829],[112,60,68,-0.7441179059946108],[112,60,69,-0.7437983503371891],[112,60,70,-0.7434811618002949],[112,60,71,-0.7431663457878175],[112,60,72,-0.7428539076106259],[112,60,73,-0.7425438524861505],[112,60,74,-0.7422361855379374],[112,60,75,-0.7419309117952307],[112,60,76,-0.741628036192545],[112,60,77,-0.741327563569237],[112,60,78,-0.7410294986690822],[112,60,79,-0.740733846139845],[112,61,64,-0.7455549954470931],[112,61,65,-0.7452256775301773],[112,61,66,-0.7448987038437554],[112,61,67,-0.7445740801641331],[112,61,68,-0.7442518121763301],[112,61,69,-0.7439319054736607],[112,61,70,-0.743614365557298],[112,61,71,-0.7432991978358424],[112,61,72,-0.7429864076248891],[112,61,73,-0.7426760001466102],[112,61,74,-0.7423679805293077],[112,61,75,-0.7420623538069977],[112,61,76,-0.741759124918981],[112,61,77,-0.741458298709416],[112,61,78,-0.7411598799268944],[112,61,79,-0.7408638732240124],[112,62,64,-0.7456904756878597],[112,62,65,-0.745360809049165],[112,62,66,-0.7450334862846912],[112,62,67,-0.7447085131753786],[112,62,68,-0.7443858954108976],[112,62,69,-0.7440656385892281],[112,62,70,-0.7437477482162242],[112,62,71,-0.7434322297051826],[112,62,72,-0.7431190883764103],[112,62,73,-0.7428083294568061],[112,62,74,-0.7424999580794143],[112,62,75,-0.7421939792830081],[112,62,76,-0.7418903980116612],[112,62,77,-0.7415892191143193],[112,62,78,-0.7412904473443769],[112,62,79,-0.7409940873592481],[112,63,64,-0.7458261291867841],[112,63,65,-0.7454961147691542],[112,63,66,-0.7451684438661011],[112,63,67,-0.7448431222631848],[112,63,68,-0.7445201556547107],[112,63,69,-0.7441995496433093],[112,63,70,-0.7438813097395005],[112,63,71,-0.7435654413612627],[112,63,72,-0.7432519498335998],[112,63,73,-0.7429408403881229],[112,63,74,-0.7426321181626043],[112,63,75,-0.7423257882005603],[112,63,76,-0.7420218554508227],[112,63,77,-0.741720324767111],[112,63,78,-0.7414212009076089],[112,63,79,-0.7411244885345346],[112,64,64,-0.7459619558858424],[112,64,65,-0.7456315946351811],[112,64,66,-0.7453035765360706],[112,64,67,-0.7449779073786749],[112,64,68,-0.7446545928619187],[112,64,69,-0.7443336385930683],[112,64,70,-0.7440150500872945],[112,64,71,-0.7436988327672425],[112,64,72,-0.7433849919625979],[112,64,73,-0.7430735329096702],[112,64,74,-0.7427644607509445],[112,64,75,-0.742457780534666],[112,64,76,-0.742153497214411],[112,64,77,-0.7418516156486589],[112,64,78,-0.7415521406003681],[112,64,79,-0.7412550767365479],[112,65,64,-0.7460979557247682],[112,65,65,-0.745767248590034],[112,65,66,-0.7454388842404311],[112,65,67,-0.745112868470712],[112,65,68,-0.7447892069844061],[112,65,69,-0.7444679053933992],[112,65,70,-0.7441489692174985],[112,65,71,-0.7438324038840003],[112,65,72,-0.7435182147272583],[112,65,73,-0.7432064069882648],[112,65,74,-0.7428969858142036],[112,65,75,-0.7425899562580347],[112,65,76,-0.7422853232780642],[112,65,77,-0.7419830917375173],[112,65,78,-0.7416832664041142],[112,65,79,-0.7413858519496406],[112,66,64,-0.7462341286411087],[112,66,65,-0.7459030765743084],[112,66,66,-0.7455743669228158],[112,66,67,-0.745248005485956],[112,66,68,-0.7449239979718475],[112,66,69,-0.7446023499969805],[112,66,70,-0.7442830670857832],[112,66,71,-0.7439661546701887],[112,66,72,-0.743651618089203],[112,66,73,-0.7433394625884867],[112,66,74,-0.7430296933199084],[112,66,75,-0.7427223153411278],[112,66,76,-0.7424173336151672],[112,66,77,-0.7421147530099832],[112,66,78,-0.7418145782980436],[112,66,79,-0.7415168141558975],[112,67,64,-0.7463704745701994],[112,67,65,-0.7460390785263828],[112,67,66,-0.7457100245246349],[112,67,67,-0.7453833183688378],[112,67,68,-0.745058965771683],[112,67,69,-0.7447369723542505],[112,67,70,-0.7444173436455741],[112,67,71,-0.7441000850822082],[112,67,72,-0.7437852020077966],[112,67,73,-0.7434726996726537],[112,67,74,-0.7431625832333177],[112,67,75,-0.742854857752134],[112,67,76,-0.7425495281968266],[112,67,77,-0.7422465994400698],[112,67,78,-0.7419460762590647],[112,67,79,-0.7416479633351098],[112,68,64,-0.7465069934451876],[112,68,65,-0.7461752543824415],[112,68,66,-0.7458458569850983],[112,68,67,-0.7455188070615818],[112,68,68,-0.7451941103291412],[112,68,69,-0.7448717724134306],[112,68,70,-0.7445517988480735],[112,68,71,-0.7442341950742315],[112,68,72,-0.7439189664401707],[112,68,73,-0.7436061182008447],[112,68,74,-0.7432956555174464],[112,68,75,-0.7429875834569927],[112,68,76,-0.7426819069918946],[112,68,77,-0.7423786309995304],[112,68,78,-0.7420777602618203],[112,68,79,-0.7417792994647984],[112,69,64,-0.7466436851970069],[112,69,65,-0.7463116040764491],[112,69,66,-0.7459818642411913],[112,69,67,-0.7456544715041826],[112,69,68,-0.7453294315872145],[112,69,69,-0.7450067501204997],[112,69,70,-0.7446864326422366],[112,69,71,-0.744368484598178],[112,69,72,-0.7440529113411979],[112,69,73,-0.7437397181308739],[112,69,74,-0.7434289101330394],[112,69,75,-0.7431204924193676],[112,69,76,-0.742814469966943],[112,69,77,-0.7425108476578327],[112,69,78,-0.7422096302786625],[112,69,79,-0.7419108225201883],[112,70,64,-0.7467805497544336],[112,70,65,-0.7464481275402073],[112,70,66,-0.7461180462277295],[112,70,67,-0.7457903116344591],[112,70,68,-0.7454649294867141],[112,70,69,-0.7451419054192503],[112,70,70,-0.7448212449748257],[112,70,71,-0.7445029536037691],[112,70,72,-0.7441870366635475],[112,70,73,-0.7438734994183471],[112,70,74,-0.7435623470386273],[112,70,75,-0.7432535846007035],[112,70,76,-0.7429472170863185],[112,70,77,-0.7426432493822143],[112,70,78,-0.7423416862797083],[112,70,79,-0.7420425324742642],[112,71,64,-0.7469175870440691],[112,71,65,-0.7465848247033364],[112,71,66,-0.7462544028773416],[112,71,67,-0.7459263273880374],[112,71,68,-0.7456006039662528],[112,71,69,-0.7452772382512709],[112,71,70,-0.7449562357903938],[112,71,71,-0.7446376020385114],[112,71,72,-0.7443213423576678],[112,71,73,-0.7440074620166437],[112,71,74,-0.7436959661905095],[112,71,75,-0.7433868599602078],[112,71,76,-0.7430801483121255],[112,71,77,-0.7427758361376655],[112,71,78,-0.7424739282328221],[112,71,79,-0.742174429297753],[112,72,64,-0.7470547969903231],[112,72,65,-0.7467216954932595],[112,72,66,-0.7463909341204531],[112,72,67,-0.7460625186983351],[112,72,68,-0.7457364549622287],[112,72,69,-0.7454127485559292],[112,72,70,-0.7450914050312675],[112,72,71,-0.7447724298476788],[112,72,72,-0.7444558283717697],[112,72,73,-0.7441416058769001],[112,72,74,-0.7438297675427364],[112,72,75,-0.743520318454834],[112,72,76,-0.7432132636042095],[112,72,77,-0.7429086078869117],[112,72,78,-0.7426063561035985],[112,72,79,-0.7423065129591067],[112,73,64,-0.7471921795154688],[112,73,65,-0.7468587398352573],[112,73,66,-0.7465276398853415],[112,73,67,-0.746198885496615],[112,73,68,-0.7458724824088798],[112,73,69,-0.7455484362704276],[112,73,70,-0.745226752637602],[112,73,71,-0.7449074369743688],[112,73,72,-0.7445904946518818],[112,73,73,-0.7442759309480649],[112,73,74,-0.7439637510471654],[112,73,75,-0.743653960039337],[112,73,76,-0.7433465629202113],[112,73,77,-0.7430415645904691],[112,73,78,-0.7427389698554167],[112,73,79,-0.742438783424557],[112,74,64,-0.7473297345396182],[112,74,65,-0.746995957652443],[112,74,66,-0.746664520098111],[112,74,67,-0.7463354277119612],[112,74,68,-0.7460086862382594],[112,74,69,-0.7456843013297771],[112,74,70,-0.7453622785473563],[112,74,71,-0.7450426233594769],[112,74,72,-0.7447253411418248],[112,74,73,-0.7444104371768729],[112,74,74,-0.7440979166534348],[112,74,75,-0.7437877846662476],[112,74,76,-0.7434800462155429],[112,74,77,-0.743174706206619],[112,74,78,-0.742871769449417],[112,74,79,-0.7425712406580911],[112,75,64,-0.7474674619807454],[112,75,65,-0.7471333488657863],[112,75,66,-0.7468015746827155],[112,75,67,-0.746472145271302],[112,75,68,-0.7461450663802589],[112,75,69,-0.7458203436668224],[112,75,70,-0.7454979826963161],[112,75,71,-0.7451779889417196],[112,75,72,-0.7448603677832351],[112,75,73,-0.7445451245078698],[112,75,74,-0.744232264308988],[112,75,75,-0.7439217922858954],[112,75,76,-0.7436137134434094],[112,75,77,-0.7433080326914312],[112,75,78,-0.743004754844522],[112,75,79,-0.7427038846214734],[112,76,64,-0.7476053617546614],[112,76,65,-0.7472709133940874],[112,76,66,-0.7469388035609341],[112,76,67,-0.7466090380993846],[112,76,68,-0.746281622762583],[112,76,69,-0.7459565632122145],[112,76,70,-0.7456338650180687],[112,76,71,-0.7453135336576092],[112,76,72,-0.7449955745155394],[112,76,73,-0.7446799928833852],[112,76,74,-0.7443667939590468],[112,76,75,-0.7440559828463839],[112,76,76,-0.7437475645547844],[112,76,77,-0.7434415439987382],[112,76,78,-0.7431379259974121],[112,76,79,-0.742836715274221],[112,77,64,-0.7477434337750696],[112,77,65,-0.7474086511540328],[112,77,66,-0.7470762066524264],[112,77,67,-0.7467461061188305],[112,77,68,-0.746418355310805],[112,77,69,-0.7460929598944676],[112,77,70,-0.7457699254440586],[112,77,71,-0.7454492574415097],[112,77,72,-0.7451309612760101],[112,77,73,-0.7448150422435891],[112,77,74,-0.7445015055466683],[112,77,75,-0.7441903562936454],[112,77,76,-0.7438815994984651],[112,77,77,-0.7435752400801908],[112,77,78,-0.7432712828625806],[112,77,79,-0.7429697325736584],[112,78,64,-0.7478816779535481],[112,78,65,-0.7475465620601782],[112,78,66,-0.7472137838747146],[112,78,67,-0.7468833492501189],[112,78,68,-0.7465552639483495],[112,78,69,-0.7462295336399414],[112,78,70,-0.7459061639035697],[112,78,71,-0.7455851602256185],[112,78,72,-0.7452665279997477],[112,78,73,-0.7449502725264743],[112,78,74,-0.744636399012726],[112,78,75,-0.7443249125714243],[112,78,76,-0.7440158182210549],[112,78,77,-0.7437091208852407],[112,78,78,-0.7434048253923164],[112,78,79,-0.7431029364749006],[112,79,64,-0.7480200941995341],[112,79,65,-0.747684646024932],[112,79,66,-0.7473515351431679],[112,79,67,-0.7470207674115684],[112,79,68,-0.7466923485964752],[112,79,69,-0.7463662843728238],[112,79,70,-0.7460425803237087],[112,79,71,-0.7457212419399505],[112,79,72,-0.7454022746196639],[112,79,73,-0.745085683667839],[112,79,74,-0.744771474295894],[112,79,75,-0.7444596516212588],[112,79,76,-0.7441502206669461],[112,79,77,-0.7438431863611228],[112,79,78,-0.7435385535366863],[112,79,79,-0.7432363269308349],[112,80,64,-0.748158682420378],[112,80,65,-0.7478229029586095],[112,80,66,-0.7474894603710565],[112,80,67,-0.7471583605193942],[112,80,68,-0.7468296091743308],[112,80,69,-0.7465032120151871],[112,80,70,-0.7461791746294604],[112,80,71,-0.7458575025123924],[112,80,72,-0.7455382010665372],[112,80,73,-0.7452212756013423],[112,80,74,-0.7449067313327012],[112,80,75,-0.7445945733825374],[112,80,76,-0.7442848067783754],[112,80,77,-0.7439774364529114],[112,80,78,-0.7436724672435907],[112,80,79,-0.7433699038921774],[112,81,64,-0.7482974425213189],[112,81,65,-0.747961332769409],[112,81,66,-0.7476275594695273],[112,81,67,-0.7472961284876811],[112,81,68,-0.7469670455989295],[112,81,69,-0.7466403164869617],[112,81,70,-0.7463159467436621],[112,81,71,-0.7459939418686781],[112,81,72,-0.7456743072689872],[112,81,73,-0.7453570482584788],[112,81,74,-0.7450421700575067],[112,81,75,-0.7447296777924728],[112,81,76,-0.7444195764953979],[112,81,77,-0.7441118711034935],[112,81,78,-0.743806566458738],[112,81,79,-0.7435036673074464],[112,82,64,-0.7484363744055079],[112,82,65,-0.7480999353634343],[112,82,66,-0.7477658323476268],[112,82,67,-0.7474340712284082],[112,82,68,-0.7471046577851719],[112,82,69,-0.7467775977059598],[112,82,70,-0.7464528965870272],[112,82,71,-0.7461305599324114],[112,82,72,-0.7458105931534977],[112,82,73,-0.7454930015686019],[112,82,74,-0.7451777904025226],[112,82,75,-0.7448649647861249],[112,82,76,-0.7445545297559113],[112,82,77,-0.7442464902535932],[112,82,78,-0.7439408511256675],[112,82,79,-0.7436376171229863],[112,83,64,-0.7485754779739826],[112,83,65,-0.7482387106446697],[112,83,66,-0.7479042789122755],[112,83,67,-0.7475721886514222],[112,83,68,-0.7472424456458207],[112,83,69,-0.7469150555878497],[112,83,70,-0.7465900240781195],[112,83,71,-0.7462673566250408],[112,83,72,-0.7459470586443914],[112,83,73,-0.7456291354588978],[112,83,74,-0.745313592297788],[112,83,75,-0.7450004342963754],[112,83,76,-0.7446896664956287],[112,83,77,-0.7443812938417448],[112,83,78,-0.744075321185724],[112,83,79,-0.7437717532829404],[112,84,64,-0.7487147531257226],[112,84,65,-0.7483776585150355],[112,84,66,-0.7480428990683242],[112,84,67,-0.747710480664494],[112,84,68,-0.747380409091557],[112,84,69,-0.747052690046212],[112,84,70,-0.7467273291334086],[112,84,71,-0.7464043318659149],[112,84,72,-0.7460837036638852],[112,84,73,-0.7457654498544415],[112,84,74,-0.7454495756712256],[112,84,75,-0.7451360862539836],[112,84,76,-0.7448249866481359],[112,84,77,-0.7445162818043491],[112,84,78,-0.7442099765781127],[112,84,79,-0.7439060757293086],[112,85,64,-0.7488541997576325],[112,85,65,-0.7485167788743704],[112,85,66,-0.7481816927185363],[112,85,67,-0.7478489471733011],[112,85,68,-0.7475185480309621],[112,85,69,-0.7471905009925219],[112,85,70,-0.7468648116672529],[112,85,71,-0.7465414855722651],[112,85,72,-0.7462205281320735],[112,85,73,-0.7459019446781795],[112,85,74,-0.7455857404486235],[112,85,75,-0.7452719205875687],[112,85,76,-0.7449604901448722],[112,85,77,-0.7446514540756557],[112,85,78,-0.7443448172398827],[112,85,79,-0.7440405844019281],[112,86,64,-0.7489938177645248],[112,86,65,-0.7486560716204154],[112,86,66,-0.7483206597635703],[112,86,67,-0.7479875880814101],[112,86,68,-0.7476568623705002],[112,86,69,-0.7473284883361314],[112,86,70,-0.7470024715918822],[112,86,71,-0.7466788176591883],[112,86,72,-0.7463575319669097],[112,86,73,-0.7460386198509116],[112,86,74,-0.7457220865536172],[112,86,75,-0.7454079372235922],[112,86,76,-0.7450961769151141],[112,86,77,-0.7447868105877453],[112,86,78,-0.7444798431059083],[112,86,79,-0.7441752792384562],[112,87,64,-0.7491336070391754],[112,87,65,-0.7487955366488679],[112,87,66,-0.7484598001020359],[112,87,67,-0.7481264032903325],[112,87,68,-0.7477953520145754],[112,87,69,-0.7474666519843256],[112,87,70,-0.7471403088174529],[112,87,71,-0.7468163280397023],[112,87,72,-0.7464947150842627],[112,87,73,-0.7461754752913472],[112,87,74,-0.7458586139077468],[112,87,75,-0.7455441360864133],[112,87,76,-0.7452320468860305],[112,87,77,-0.7449223512705856],[112,87,78,-0.7446150541089454],[112,87,79,-0.7443101601744265],[112,88,64,-0.7492735674723064],[112,88,65,-0.7489351738533658],[112,88,66,-0.7485991136304767],[112,88,67,-0.7482653926995079],[112,88,68,-0.747934016865512],[112,88,69,-0.7476049918423053],[112,88,70,-0.7472783232520313],[112,88,71,-0.7469540166247285],[112,88,72,-0.7466320773978987],[112,88,73,-0.7463125109160877],[112,88,74,-0.7459953224304379],[112,88,75,-0.7456805170982721],[112,88,76,-0.7453680999826648],[112,88,77,-0.7450580760520132],[112,88,78,-0.7447504501796132],[112,88,79,-0.7444452271432305],[112,89,64,-0.7494136989525684],[112,89,65,-0.7490749831254694],[112,89,66,-0.7487386002433524],[112,89,67,-0.748404556206285],[112,89,68,-0.7480728568235391],[112,89,69,-0.7477435078131687],[112,89,70,-0.747416514801575],[112,89,71,-0.7470918833230742],[112,89,72,-0.7467696188194648],[112,89,73,-0.7464497266396086],[112,89,74,-0.7461322120389846],[112,89,75,-0.7458170801792712],[112,89,76,-0.7455043361279178],[112,89,77,-0.7451939848577163],[112,89,78,-0.7448860312463772],[112,89,79,-0.7445804800761],[112,90,64,-0.7495540013665968],[112,90,65,-0.7492149643547168],[112,90,66,-0.7488782598330944],[112,90,67,-0.7485438937059795],[112,90,68,-0.7482118717868455],[112,90,69,-0.7478821997979682],[112,90,70,-0.7475548833699901],[112,90,71,-0.7472299280414887],[112,90,72,-0.7469073392585429],[112,90,73,-0.7465871223743157],[112,90,74,-0.7462692826486057],[112,90,75,-0.7459538252474317],[112,90,76,-0.7456407552426029],[112,90,77,-0.7453300776112906],[112,90,78,-0.7450217972356044],[112,90,79,-0.7447159189021632],[112,91,64,-0.7496944745989861],[112,91,65,-0.7493551174285996],[112,91,66,-0.7490180922900814],[112,91,67,-0.7486834050918467],[112,91,68,-0.748351061651554],[112,91,69,-0.7480210676956842],[112,91,70,-0.7476934288591045],[112,91,71,-0.7473681506846372],[112,91,72,-0.7470452386226262],[112,91,73,-0.7467246980305187],[112,91,74,-0.7464065341724182],[112,91,75,-0.7460907522186676],[112,91,76,-0.7457773572454205],[112,91,77,-0.7454663542342126],[112,91,78,-0.7451577480715376],[112,91,79,-0.7448515435484182],[112,92,64,-0.7498351185323131],[112,92,65,-0.7494954422325851],[112,92,66,-0.7491580975026617],[112,92,67,-0.7488230902551061],[112,92,68,-0.7484904263117453],[112,92,69,-0.7481601114032485],[112,92,70,-0.7478321511686914],[112,92,71,-0.7475065511551245],[112,92,72,-0.7471833168171406],[112,92,73,-0.7468624535164553],[112,92,74,-0.7465439665214607],[112,92,75,-0.7462278610068087],[112,92,76,-0.7459141420529816],[112,92,77,-0.7456028146458639],[112,92,78,-0.7452938836763184],[112,92,79,-0.744987353939757],[112,93,64,-0.7499759330471114],[112,93,65,-0.749635938650091],[112,93,66,-0.7492982753571271],[112,93,67,-0.7489629490849143],[112,93,68,-0.7486299656594311],[112,93,69,-0.7482993308155181],[112,93,70,-0.747971050196443],[112,93,71,-0.7476451293534686],[112,93,72,-0.7473215737454195],[112,93,73,-0.7470003887382642],[112,93,74,-0.7466815796046677],[112,93,75,-0.7463651515235746],[112,93,76,-0.7460511095797807],[112,93,77,-0.745739458763504],[112,93,78,-0.7454302039699613],[112,93,79,-0.745123349998938],[112,94,64,-0.7501169180219274],[112,94,65,-0.7497766065625414],[112,94,66,-0.7494386257377702],[112,94,67,-0.7491029814684227],[112,94,68,-0.7487696795846115],[112,94,69,-0.7484387258253322],[112,94,70,-0.7481101258380278],[112,94,71,-0.7477838851781569],[112,94,72,-0.7474600093087601],[112,94,73,-0.7471385036000423],[112,94,74,-0.7468193733289252],[112,94,75,-0.746502623678631],[112,94,76,-0.746188259738253],[112,94,77,-0.7458762865023273],[112,94,78,-0.7455667088704093],[112,94,79,-0.7452595316466436],[112,95,64,-0.7502580733333026],[112,95,65,-0.7499174458493494],[112,95,66,-0.749579148526866],[112,95,67,-0.7492431872907581],[112,95,68,-0.748909567975256],[112,95,69,-0.7485782963234933],[112,95,70,-0.7482493779870718],[112,95,71,-0.7479228185256288],[112,95,72,-0.747598623406405],[112,95,73,-0.7472767980038256],[112,95,74,-0.7469573475990532],[112,95,75,-0.7466402773795715],[112,95,76,-0.7463255924387555],[112,95,77,-0.7460132977754446],[112,95,78,-0.7457033982935168],[112,95,79,-0.7453958988014608],[112,96,64,-0.7503993988557562],[112,96,65,-0.7500584563878993],[112,96,66,-0.7497198436046542],[112,96,67,-0.7493835664350064],[112,96,68,-0.7490496307172867],[112,96,69,-0.7487180421987503],[112,96,70,-0.7483888065351403],[112,96,71,-0.7480619292902572],[112,96,72,-0.7477374159355248],[112,96,73,-0.7474152718495725],[112,96,74,-0.7470955023177877],[112,96,75,-0.7467781125318996],[112,96,76,-0.74646310758955],[112,96,77,-0.7461504924938649],[112,96,78,-0.7458402721530306],[112,96,79,-0.7455324513798643],[112,97,64,-0.750540894461841],[112,97,65,-0.7501996380536023],[112,97,66,-0.7498607108493952],[112,97,67,-0.7495241187822679],[112,97,68,-0.7491898676946344],[112,97,69,-0.748857963337854],[112,97,70,-0.7485284113717956],[112,97,71,-0.7482012173644054],[112,97,72,-0.7478763867912742],[112,97,73,-0.7475539250352191],[112,97,74,-0.7472338373858366],[112,97,75,-0.7469161290390856],[112,97,76,-0.7466008050968583],[112,97,77,-0.7462878705665523],[112,97,78,-0.7459773303606467],[112,97,79,-0.745669189296272],[112,98,64,-0.7506825600221181],[112,98,65,-0.7503409907198718],[112,98,66,-0.7500017501373454],[112,98,67,-0.7496648442116319],[112,98,68,-0.749330278789212],[112,98,69,-0.7489980596255323],[112,98,70,-0.7486681923845699],[112,98,71,-0.7483406826384007],[112,98,72,-0.7480155358667657],[112,98,73,-0.7476927574566539],[112,98,74,-0.7473723527018542],[112,98,75,-0.7470543268025395],[112,98,76,-0.7467386848648367],[112,98,77,-0.7464254319003994],[112,98,78,-0.7461145728259837],[112,98,79,-0.7458061124630186],[112,99,64,-0.7508243954051793],[112,99,65,-0.7504825142581457],[112,99,66,-0.7501429613427788],[112,99,67,-0.7498057426001998],[112,99,68,-0.7494708638809386],[112,99,69,-0.7491383309445121],[112,99,70,-0.7488081494589889],[112,99,71,-0.7484803250005575],[112,99,72,-0.7481548630530933],[112,99,73,-0.7478317690077403],[112,99,74,-0.747511048162464],[112,99,75,-0.747192705721635],[112,99,76,-0.7468767467955991],[112,99,77,-0.7465631764002505],[112,99,78,-0.7462519994566068],[112,99,79,-0.7459432207903798],[112,100,64,-0.7509664004776223],[112,100,65,-0.7506242085378605],[112,100,66,-0.7502843443379621],[112,100,67,-0.749946813823059],[112,100,68,-0.7496116228477128],[112,100,69,-0.7492787771754938],[112,100,70,-0.7489482824785452],[112,100,71,-0.7486201443371516],[112,100,72,-0.7482943682393058],[112,100,73,-0.7479709595802908],[112,100,74,-0.7476499236622323],[112,100,75,-0.7473312656936824],[112,100,76,-0.7470149907891903],[112,100,77,-0.7467011039688749],[112,100,78,-0.7463896101579997],[112,100,79,-0.7460805141865441],[112,101,64,-0.7511085751041061],[112,101,65,-0.7507660734265083],[112,101,66,-0.750425898993211],[112,101,67,-0.7500880577533393],[112,101,68,-0.7497525555654693],[112,101,69,-0.7494193981972077],[112,101,70,-0.7490885913247554],[112,101,71,-0.748760140532476],[112,101,72,-0.7484340513124634],[112,101,73,-0.7481103290641231],[112,101,74,-0.7477889790937244],[112,101,75,-0.7474700066139857],[112,101,76,-0.747153416743643],[112,101,77,-0.746839214507024],[112,101,78,-0.7465274048336227],[112,101,79,-0.7462179925576709],[112,102,64,-0.7512509191473339],[112,102,65,-0.7509081087896186],[112,102,66,-0.750567625176872],[112,102,67,-0.750229474262195],[112,102,68,-0.7498936619081612],[112,102,69,-0.7495601938863962],[112,102,70,-0.7492290758771414],[112,102,71,-0.7489003134688232],[112,102,72,-0.7485739121576198],[112,102,73,-0.7482498773470423],[112,102,74,-0.7479282143474879],[112,102,75,-0.7476089283758242],[112,102,76,-0.7472920245549587],[112,102,77,-0.7469775079134122],[112,102,78,-0.7466653833848937],[112,102,79,-0.7463556558078716],[112,103,64,-0.7513934324680345],[112,103,65,-0.7510503144907397],[112,103,66,-0.7507095227553043],[112,103,67,-0.7503710632187871],[112,103,68,-0.7500349417477417],[112,103,69,-0.7497011641177953],[112,103,70,-0.7493697360132132],[112,103,71,-0.7490406630264677],[112,103,72,-0.7487139506578039],[112,103,73,-0.7483896043148225],[112,103,74,-0.7480676293120323],[112,103,75,-0.747748030870434],[112,103,76,-0.7474308141170906],[112,103,77,-0.7471159840846998],[112,103,78,-0.7468035457111699],[112,103,79,-0.7464935038391907],[112,104,64,-0.7515361149250195],[112,104,65,-0.7511926903914969],[112,104,66,-0.7508515915929371],[112,104,67,-0.7505128244903396],[112,104,68,-0.7501763949542204],[112,104,69,-0.7498423087641914],[112,104,70,-0.7495105716085247],[112,104,71,-0.7491811890837209],[112,104,72,-0.748854166694076],[112,104,73,-0.7485295098512637],[112,104,74,-0.7482072238738876],[112,104,75,-0.7478873139870653],[112,104,76,-0.7475697853219992],[112,104,77,-0.7472546429155484],[112,104,78,-0.7469418917098047],[112,104,79,-0.7466315365516636],[112,105,64,-0.7516789663751569],[112,105,65,-0.7513352363515646],[112,105,66,-0.7509938315522428],[112,105,67,-0.7506547579421134],[112,105,68,-0.750318021395638],[112,105,69,-0.7499836276963956],[112,105,70,-0.7496515825366477],[112,105,71,-0.7493218915169066],[112,105,72,-0.7489945601455025],[112,105,73,-0.7486695938381651],[112,105,74,-0.7483469979175764],[112,105,75,-0.7480267776129552],[112,105,76,-0.7477089380596267],[112,105,77,-0.7473934842985953],[112,105,78,-0.7470804212761208],[112,105,79,-0.7467697538432887],[112,106,64,-0.7518219866733943],[112,106,65,-0.7514779522286907],[112,106,66,-0.75113624249376],[112,106,67,-0.7507968634374297],[112,106,68,-0.7504598209380885],[112,106,69,-0.7501251207832655],[112,106,70,-0.749792768669195],[112,106,71,-0.7494627702003833],[112,106,72,-0.749135130889178],[112,106,73,-0.7488098561553483],[112,106,74,-0.7484869513256385],[112,106,75,-0.7481664216333512],[112,106,76,-0.7478482722179192],[112,106,77,-0.7475325081244759],[112,106,78,-0.7472191343034335],[112,106,79,-0.7469081556100515],[112,107,64,-0.7519651756727328],[112,107,65,-0.7516208378786697],[112,107,66,-0.7512788242760682],[112,107,67,-0.7509391408376432],[112,107,68,-0.7506017934456936],[112,107,69,-0.7502667878916809],[112,107,70,-0.749934129875794],[112,107,71,-0.7496038250065177],[112,107,72,-0.7492758788001994],[112,107,73,-0.7489502966806311],[112,107,74,-0.7486270839786024],[112,107,75,-0.7483062459314846],[112,107,76,-0.7479877876828005],[112,107,77,-0.7476717142817977],[112,107,78,-0.7473580306830238],[112,107,79,-0.7470467417458976],[112,108,64,-0.752108533224284],[112,108,65,-0.7517638931554003],[112,108,66,-0.7514215767558439],[112,108,67,-0.7510815900021997],[112,108,68,-0.7507439387806587],[112,108,69,-0.7504086288865979],[112,108,70,-0.7500756660241439],[112,108,71,-0.7497450558057417],[112,108,72,-0.7494168037517224],[112,108,73,-0.7490909152898837],[112,108,74,-0.7487673957550446],[112,108,75,-0.7484462503886273],[112,108,76,-0.7481274843382297],[112,108,77,-0.7478111026571965],[112,108,78,-0.7474971103041956],[112,108,79,-0.7471855121427893],[112,109,64,-0.752252059177251],[112,109,65,-0.7519071179108657],[112,109,66,-0.7515644997878421],[112,109,67,-0.7512242107886169],[112,109,68,-0.7508862568032558],[112,109,69,-0.7505506436310334],[112,109,70,-0.7502173769799967],[112,109,71,-0.7498864624665343],[112,109,72,-0.7495579056149434],[112,109,73,-0.7492317118570113],[112,109,74,-0.7489078865315686],[112,109,75,-0.7485864348840734],[112,109,76,-0.7482673620661814],[112,109,77,-0.7479506731353186],[112,109,78,-0.7476363730542572],[112,109,79,-0.747324466690687],[112,110,64,-0.7523957533789118],[112,110,65,-0.7520505119951177],[112,110,66,-0.7517075932248792],[112,110,67,-0.7513670030524671],[112,110,68,-0.751028747371804],[112,110,69,-0.7506928319860448],[112,110,70,-0.7503592626071394],[112,110,71,-0.7500280448554028],[112,110,72,-0.7496991842590811],[112,110,73,-0.7493726862539343],[112,110,74,-0.7490485561827885],[112,110,75,-0.7487267992951204],[112,110,76,-0.7484074207466277],[112,110,77,-0.7480904255988015],[112,110,78,-0.7477758188185023],[112,110,79,-0.7474636052775312],[112,111,64,-0.7525396156746745],[112,111,65,-0.7521940752563314],[112,111,66,-0.7518508569178888],[112,111,67,-0.7515099666474333],[112,111,68,-0.7511714103427274],[112,111,69,-0.750835193810788],[112,111,70,-0.7505013227674509],[112,111,71,-0.7501698028369397],[112,111,72,-0.7498406395514332],[112,111,73,-0.7495138383506467],[112,111,74,-0.7491894045813849],[112,111,75,-0.7488673434971269],[112,111,76,-0.7485476602575958],[112,111,77,-0.7482303599283314],[112,111,78,-0.747915447480267],[112,111,79,-0.7476029277892992],[112,112,64,-0.7526836459080519],[112,112,65,-0.7523378075407797],[112,112,66,-0.7519942907158953],[112,112,67,-0.7516531014252834],[112,112,68,-0.7513142455705278],[112,112,69,-0.7509777289624902],[112,112,70,-0.7506435573208747],[112,112,71,-0.7503117362737968],[112,112,72,-0.7499822713573501],[112,112,73,-0.7496551680151882],[112,112,74,-0.7493304315980782],[112,112,75,-0.7490080673634848],[112,112,76,-0.7486880804751399],[112,112,77,-0.7483704760026163],[112,112,78,-0.7480552589209032],[112,112,79,-0.7477424341099771],[112,113,64,-0.7528278439206845],[112,113,65,-0.7524817086928571],[112,113,66,-0.7521378944660384],[112,113,67,-0.751796407235893],[112,113,68,-0.7514572529078085],[112,113,69,-0.7511204372964736],[112,113,70,-0.7507859661254435],[112,113,71,-0.7504538450267074],[112,113,72,-0.7501240795402573],[112,113,73,-0.7497966751136682],[112,113,74,-0.7494716371016525],[112,113,75,-0.7491489707656435],[112,113,76,-0.748828681273366],[112,113,77,-0.748510773698409],[112,113,78,-0.7481952530198018],[112,113,79,-0.7478821241215851],[112,114,64,-0.7529722095523141],[112,114,65,-0.7526257785550523],[112,114,66,-0.7522816680135449],[112,114,67,-0.7519398839272189],[112,114,68,-0.7516004322052474],[112,114,69,-0.7512633186661287],[112,114,70,-0.750928549037251],[112,114,71,-0.7505961289544606],[112,114,72,-0.7502660639616299],[112,114,73,-0.7499383595102388],[112,114,74,-0.7496130209589277],[112,114,75,-0.7492900535730823],[112,114,76,-0.7489694625244034],[112,114,77,-0.7486512528904801],[112,114,78,-0.7483354296543657],[112,114,79,-0.7480219977041486],[112,115,64,-0.7531167426408412],[112,115,65,-0.7527700169680056],[112,115,66,-0.7524256112017869],[112,115,67,-0.7520835313453562],[112,115,68,-0.7517437833116543],[112,115,69,-0.751406372922971],[112,115,70,-0.75107130591051],[112,115,71,-0.7507385879139574],[112,115,72,-0.7504082244810488],[112,115,73,-0.7500802210671516],[112,115,74,-0.7497545830348176],[112,115,75,-0.749431315653368],[112,115,76,-0.749110424098463],[112,115,77,-0.7487919134516756],[112,115,78,-0.7484757887000664],[112,115,79,-0.7481620547357564],[112,116,64,-0.7532614430223057],[112,116,65,-0.7529144237704906],[112,116,66,-0.7525697238722632],[112,116,67,-0.7522273493345201],[112,116,68,-0.751887306073952],[112,116,69,-0.7515495999166227],[112,116,70,-0.7512142365975337],[112,116,71,-0.750881221760193],[112,116,72,-0.7505505609561824],[112,116,73,-0.7502222596447394],[112,116,74,-0.7498963231923107],[112,116,75,-0.7495727568721358],[112,116,76,-0.7492515658638179],[112,116,77,-0.7489327552528974],[112,116,78,-0.7486163300304264],[112,116,79,-0.7483022950925413],[112,117,64,-0.7534063105308694],[112,117,65,-0.7530589987993958],[112,117,66,-0.7527140058645803],[112,117,67,-0.752371337737027],[112,117,68,-0.7520310003371586],[112,117,69,-0.7516929994947946],[112,117,70,-0.7513573409487169],[112,117,71,-0.7510240303462377],[112,117,72,-0.7506930732427679],[112,117,73,-0.7503644751013978],[112,117,74,-0.7500382412924518],[112,117,75,-0.7497143770930709],[112,117,76,-0.7493928876867852],[112,117,77,-0.7490737781630853],[112,117,78,-0.7487570535169988],[112,117,79,-0.7484427186486619],[112,118,64,-0.7535513449988728],[112,118,65,-0.7532037418897813],[112,118,66,-0.75285845701651],[112,118,67,-0.7525154963933521],[112,118,68,-0.7521748659444438],[112,118,69,-0.7518365715033426],[112,118,70,-0.751500618812593],[112,118,71,-0.7511670135232943],[112,118,72,-0.7508357611946683],[112,118,73,-0.7505068672936417],[112,118,74,-0.7501803371943987],[112,118,75,-0.749856176177966],[112,118,76,-0.7495343894317827],[112,118,77,-0.749214982049274],[112,118,78,-0.7488979590294262],[112,118,79,-0.7485833252763592],[112,119,64,-0.7536965462568166],[112,119,65,-0.7533486528748616],[112,119,66,-0.7530030771639714],[112,119,67,-0.7526598251421106],[112,119,68,-0.7523189027371109],[112,119,69,-0.7519803157862499],[112,119,70,-0.7516440700358166],[112,119,71,-0.7513101711406794],[112,119,72,-0.7509786246638546],[112,119,73,-0.7506494360760871],[112,119,74,-0.7503226107554046],[112,119,75,-0.7499981539867018],[112,119,76,-0.7496760709613108],[112,119,77,-0.7493563667765741],[112,119,78,-0.7490390464354209],[112,119,79,-0.7487241148459383],[112,120,64,-0.753841914133344],[112,120,65,-0.7534937315859854],[112,120,66,-0.7531478661410114],[112,120,67,-0.7528043238200394],[112,120,68,-0.7524631105545779],[112,120,69,-0.7521242321856073],[112,120,70,-0.7517876944631429],[112,120,71,-0.751453503045805],[112,120,72,-0.7511216635003861],[112,120,73,-0.7507921813014327],[112,120,74,-0.7504650618307983],[112,120,75,-0.750140310377229],[112,120,76,-0.7498179321359327],[112,120,77,-0.7494979322081534],[112,120,78,-0.749180315600746],[112,120,79,-0.748865087225749],[112,121,64,-0.7539874484552967],[112,121,65,-0.7536389778526942],[112,121,66,-0.7532928237798627],[112,121,67,-0.7529489922620539],[112,121,68,-0.7526074892344355],[112,121,69,-0.7522683205416717],[112,121,70,-0.751931491937487],[112,121,71,-0.7515970090842354],[112,121,72,-0.7512648775524684],[112,121,73,-0.7509351028205162],[112,121,74,-0.7506076902740417],[112,121,75,-0.7502826452056248],[112,121,76,-0.7499599728143329],[112,121,77,-0.7496396782052942],[112,121,78,-0.7493217663892735],[112,121,79,-0.7490062422822437],[112,122,64,-0.754133149047689],[112,122,65,-0.7537843915026947],[112,122,66,-0.7534379499109166],[112,122,67,-0.7530938303012218],[112,122,68,-0.7527520386124191],[112,122,69,-0.7524125806928386],[112,122,70,-0.7520754622998955],[112,122,71,-0.7517406890996604],[112,122,72,-0.7514082666664257],[112,122,73,-0.7510782004822883],[112,122,74,-0.7507504959367032],[112,122,75,-0.7504251583260668],[112,122,76,-0.7501021928532892],[112,122,77,-0.7497816046273662],[112,122,78,-0.7494633986629559],[112,122,79,-0.7491475798799496],[112,123,64,-0.7542790157337307],[112,123,65,-0.7539299723618829],[112,123,66,-0.7535832443627464],[112,123,67,-0.753238837768786],[112,123,68,-0.752896758522433],[112,123,69,-0.752557012475665],[112,123,70,-0.7522196053895706],[112,123,71,-0.7518845429339184],[112,123,72,-0.7515518306867248],[112,123,73,-0.7512214741338357],[112,123,74,-0.7508934786684802],[112,123,75,-0.7505678495908552],[112,123,76,-0.7502445921076961],[112,123,77,-0.7499237113318498],[112,123,78,-0.7496052122818506],[112,123,79,-0.7492890998814925],[112,124,64,-0.754425048334801],[112,124,65,-0.7540757202543162],[112,124,66,-0.7537287069620807],[112,124,67,-0.7533840144941377],[112,124,68,-0.7530416487965228],[112,124,69,-0.7527016157248432],[112,124,70,-0.7523639210438425],[112,124,71,-0.7520285704269698],[112,124,72,-0.7516955694559475],[112,124,73,-0.7513649236203529],[112,124,74,-0.7510366383171727],[112,124,75,-0.7507107188503864],[112,124,76,-0.7503871704305379],[112,124,77,-0.7500659981743082],[112,124,78,-0.7497472071040918],[112,124,79,-0.7494308021475684],[112,125,64,-0.7545712466705048],[112,125,65,-0.7542216350022719],[112,125,66,-0.7538743375338605],[112,125,67,-0.7535293603048738],[112,125,68,-0.7531867092649335],[112,125,69,-0.7528463902732578],[112,125,70,-0.7525084090982275],[112,125,71,-0.7521727714169539],[112,125,72,-0.7518394828148481],[112,125,73,-0.7515085487852016],[112,125,74,-0.7511799747287404],[112,125,75,-0.75085376595321],[112,125,76,-0.7505299276729456],[112,125,77,-0.7502084650084457],[112,125,78,-0.7498893829859483],[112,125,79,-0.7495726865370023],[112,126,64,-0.754717610558655],[112,126,65,-0.7543677164262278],[112,126,66,-0.7540201359012205],[112,126,67,-0.7536748750267784],[112,126,68,-0.75333193975609],[112,126,69,-0.7529913359519668],[112,126,70,-0.7526530693864082],[112,126,71,-0.7523171457401705],[112,126,72,-0.7519835706023351],[112,126,73,-0.7516523494698899],[112,126,74,-0.7513234877472835],[112,126,75,-0.7509969907460098],[112,126,76,-0.7506728636841785],[112,126,77,-0.7503511116860885],[112,126,78,-0.7500317397818045],[112,126,79,-0.7497147529067282],[112,127,64,-0.7548641398152531],[112,127,65,-0.7545139643448435],[112,127,66,-0.754166101885471],[112,127,67,-0.7538205584838037],[112,127,68,-0.753477340096579],[112,127,69,-0.7531364525901829],[112,127,70,-0.7527979017402158],[112,127,71,-0.7524616932310606],[112,127,72,-0.7521278326554512],[112,127,73,-0.7517963255140545],[112,127,74,-0.7514671772150243],[112,127,75,-0.7511403930735852],[112,127,76,-0.7508159783116046],[112,127,77,-0.750493938057165],[112,127,78,-0.7501742773441409],[112,127,79,-0.7498570011117704],[112,128,64,-0.7550108342545475],[112,128,65,-0.7546603785750183],[112,128,66,-0.7543122353061544],[112,128,67,-0.7539664104981276],[112,128,68,-0.7536229101112057],[112,128,69,-0.7532817400153313],[112,128,70,-0.7529429059896868],[112,128,71,-0.752606413722264],[112,128,72,-0.7522722688094318],[112,128,73,-0.7519404767555181],[112,128,74,-0.7516110429723641],[112,128,75,-0.7512839727789086],[112,128,76,-0.7509592714007588],[112,128,77,-0.7506369439697642],[112,128,78,-0.7503169955235924],[112,128,79,-0.7499994310053012],[112,129,64,-0.7551576936890054],[112,129,65,-0.754806958931864],[112,129,66,-0.7544585359810186],[112,129,67,-0.7541124308901267],[112,129,68,-0.7537686496229676],[112,129,69,-0.7534271980530218],[112,129,70,-0.7530880819630359],[112,129,71,-0.7527513070445924],[112,129,72,-0.7524168788976772],[112,129,73,-0.7520848030302614],[112,129,74,-0.7517550848578566],[112,129,75,-0.7514277297030975],[112,129,76,-0.751102742795315],[112,129,77,-0.7507801292701077],[112,129,78,-0.75045989416892],[112,129,79,-0.7501420424386126],[112,130,64,-0.7553047179293374],[112,130,65,-0.7549537052287281],[112,130,66,-0.7546050037260408],[112,130,67,-0.7542586194783998],[112,130,68,-0.7539145584530773],[112,130,69,-0.7535728265270731],[112,130,70,-0.7532334294866799],[112,130,71,-0.7528963730270527],[112,130,72,-0.7525616627517762],[112,130,73,-0.7522293041724476],[112,130,74,-0.7518993027082305],[112,130,75,-0.7515716636854389],[112,130,76,-0.7512463923371093],[112,130,77,-0.7509234938025735],[112,130,78,-0.7506029731270347],[112,130,79,-0.7502848352611405],[112,131,64,-0.7554519067844692],[112,131,65,-0.7551006172771665],[112,131,66,-0.7547516383553996],[112,131,67,-0.7544049760797402],[112,131,68,-0.7540606364209349],[112,131,69,-0.7537186252594846],[112,131,70,-0.7533789483852096],[112,131,71,-0.7530416114968189],[112,131,72,-0.7527066202014786],[112,131,73,-0.7523739800143938],[112,131,74,-0.7520436963583624],[112,131,75,-0.7517157745633607],[112,131,76,-0.7513902198661132],[112,131,77,-0.7510670374096675],[112,131,78,-0.7507462322429697],[112,131,79,-0.7504278093204366],[112,132,64,-0.7555992600616004],[112,132,65,-0.7552476948870019],[112,132,66,-0.7548984396815329],[112,132,67,-0.7545515005091938],[112,132,68,-0.7542068833441867],[112,132,69,-0.7538645940704949],[112,132,70,-0.7535246384814479],[112,132,71,-0.7531870222792909],[112,132,72,-0.752851751074753],[112,132,73,-0.7525188303866291],[112,132,74,-0.7521882656413348],[112,132,75,-0.7518600621724898],[112,132,76,-0.7515342252204904],[112,132,77,-0.7512107599320825],[112,132,78,-0.7508896713599379],[112,132,79,-0.7505709644622265],[112,133,64,-0.7557467775661846],[112,133,65,-0.7553949378663044],[112,133,66,-0.7550454075151194],[112,133,67,-0.7546981925800402],[112,133,68,-0.7543532990387054],[112,133,69,-0.7540107327785623],[112,133,70,-0.7536704995964311],[112,133,71,-0.7533326051980747],[112,133,72,-0.7529970551977674],[112,133,73,-0.7526638551178764],[112,133,74,-0.7523330103884162],[112,133,75,-0.7520045263466335],[112,133,76,-0.7516784082365785],[112,133,77,-0.7513546612086782],[112,133,78,-0.7510332903193132],[112,133,79,-0.7507143005303898],[112,134,64,-0.7558944591019111],[112,134,65,-0.7555423460213722],[112,134,66,-0.755192541665059],[112,134,67,-0.7548450521037731],[112,134,68,-0.7544998833185712],[112,134,69,-0.7541570412003455],[112,134,70,-0.7538165315493888],[112,134,71,-0.7534783600749635],[112,134,72,-0.7531425323948706],[112,134,73,-0.7528090540350315],[112,134,74,-0.7524779304290425],[112,134,75,-0.7521491669177593],[112,134,76,-0.7518227687488688],[112,134,77,-0.7514987410764618],[112,134,78,-0.7511770889606106],[112,134,79,-0.7508578173669411],[112,135,64,-0.7560423044707627],[112,135,65,-0.7556899191567898],[112,135,66,-0.7553398419385309],[112,135,67,-0.754992078890159],[112,135,68,-0.7546466359961299],[112,135,69,-0.7543035191507623],[112,135,70,-0.7539627341578028],[112,135,71,-0.7536242867299954],[112,135,72,-0.7532881824886494],[112,135,73,-0.7529544269632225],[112,135,74,-0.7526230255908749],[112,135,75,-0.7522939837160538],[112,135,76,-0.7519673065900648],[112,135,77,-0.7516429993706463],[112,135,78,-0.7513210671215447],[112,135,79,-0.7510015148120883],[112,136,64,-0.756190313472988],[112,136,65,-0.7558376570754013],[112,136,66,-0.7554873081409662],[112,136,67,-0.7551392727472087],[112,136,68,-0.754793556881965],[112,136,69,-0.7544501664429613],[112,136,70,-0.7541091072373795],[112,136,71,-0.7537703849814261],[112,136,72,-0.7534340052999015],[112,136,73,-0.7530999737257813],[112,136,74,-0.7527682956997718],[112,136,75,-0.7524389765698938],[112,136,76,-0.7521120215910548],[112,136,77,-0.7517874359246224],[112,136,78,-0.7514652246380009],[112,136,79,-0.751145392704204],[112,137,64,-0.7563384859071254],[112,137,65,-0.7559855595783325],[112,137,66,-0.7556349400760713],[112,137,67,-0.7552866334812021],[112,137,68,-0.7549406457849217],[112,137,69,-0.7545969828883455],[112,137,70,-0.7542556506020721],[112,137,71,-0.7539166546457523],[112,137,72,-0.7535800006476587],[112,137,73,-0.7532456941442673],[112,137,74,-0.7529137405798124],[112,137,75,-0.7525841453058708],[112,137,76,-0.7522569135809343],[112,137,77,-0.7519320505699825],[112,137,78,-0.7516095613440602],[112,137,79,-0.7512894508798498],[112,138,64,-0.7564868215699747],[112,138,65,-0.7561336264649641],[112,138,66,-0.7557827375458008],[112,138,67,-0.7554341608966594],[112,138,68,-0.755087902512079],[112,138,69,-0.7547439682965453],[112,138,70,-0.7544023640640545],[112,138,71,-0.7540630955376838],[112,138,72,-0.7537261683491596],[112,138,73,-0.75339158803844],[112,138,74,-0.7530593600532692],[112,138,75,-0.7527294897487626],[112,138,76,-0.7524019823869786],[112,138,77,-0.7520768431364917],[112,138,78,-0.75175407707197],[112,138,79,-0.7514336891737469],[112,139,64,-0.7566353202566565],[112,139,65,-0.7562818575329902],[112,139,66,-0.7559307003504147],[112,139,67,-0.7555818547963996],[112,139,68,-0.7552353268688076],[112,139,69,-0.7548911224754753],[112,139,70,-0.7545492474337784],[112,139,71,-0.7542097074702014],[112,139,72,-0.7538725082199067],[112,139,73,-0.7535376552263159],[112,139,74,-0.7532051539406656],[112,139,75,-0.7528750097215917],[112,139,76,-0.7525472278347016],[112,139,77,-0.7522218134521472],[112,139,78,-0.7518987716522025],[112,139,79,-0.7515781074188358],[112,140,64,-0.7567839817605917],[112,140,65,-0.7564302525783982],[112,140,66,-0.7560788282884597],[112,140,67,-0.7557297149815216],[112,140,68,-0.755382918658751],[112,140,69,-0.7550384452313164],[112,140,70,-0.7546963005199544],[112,140,71,-0.7543564902545385],[112,140,72,-0.754019020073648],[112,140,73,-0.7536838955241505],[112,140,74,-0.7533511220607567],[112,140,75,-0.7530207050456055],[112,140,76,-0.7526926497478351],[112,140,77,-0.7523669613431578],[112,140,78,-0.7520436449134362],[112,140,79,-0.7517227054462561],[112,141,64,-0.7569328058734833],[112,141,65,-0.7565788113954504],[112,141,66,-0.7562271211567502],[112,141,67,-0.7558777412513846],[112,141,68,-0.7555306776838057],[112,141,69,-0.7551859363684955],[112,141,70,-0.7548435231295325],[112,141,71,-0.7545034437001603],[112,141,72,-0.7541657037223571],[112,141,73,-0.7538303087464181],[112,141,74,-0.7534972642305102],[112,141,75,-0.7531665755402567],[112,141,76,-0.75283824794831],[112,141,77,-0.7525122866339247],[112,141,78,-0.7521886966825347],[112,141,79,-0.7518674830853262],[112,142,64,-0.757081792385374],[112,142,65,-0.7567275337767416],[112,142,66,-0.7563755787504259],[112,142,67,-0.7560259334036661],[112,142,68,-0.75567860374418],[112,142,69,-0.7553335956897445],[112,142,70,-0.7549909150677604],[112,142,71,-0.7546505676148233],[112,142,72,-0.7543125589762919],[112,142,73,-0.7539768947058704],[112,142,74,-0.7536435802651638],[112,142,75,-0.7533126210232625],[112,142,76,-0.7529840222563148],[112,142,77,-0.7526577891470999],[112,142,78,-0.7523339267846063],[112,142,79,-0.752012440163603],[112,143,64,-0.7572309410846186],[112,143,65,-0.7568764195131716],[112,143,66,-0.7565242008629245],[112,143,67,-0.7561742912343344],[112,143,68,-0.7558266966383661],[112,143,69,-0.7554814229960712],[112,143,70,-0.7551384761381552],[112,143,71,-0.7547978618045466],[112,143,72,-0.7544595856439656],[112,143,73,-0.7541236532135078],[112,143,74,-0.7537900699781979],[112,143,75,-0.7534588413105754],[112,143,76,-0.7531299724902664],[112,143,77,-0.752803468703558],[112,143,78,-0.7524793350429748],[112,143,79,-0.7521575765068524],[112,144,64,-0.7573802517579079],[112,144,65,-0.7570254683939688],[112,144,66,-0.756672987286005],[112,144,67,-0.7563228145376725],[112,144,68,-0.7559749561631629],[112,144,69,-0.7556294180867845],[112,144,70,-0.7552862061425278],[112,144,71,-0.7549453260736356],[112,144,72,-0.7546067835321719],[112,144,73,-0.7542705840786041],[112,144,74,-0.7539367331813591],[112,144,75,-0.7536052362164072],[112,144,76,-0.7532760984668351],[112,144,77,-0.7529493251224194],[112,144,78,-0.7526249212792042],[112,144,79,-0.7523028919390735],[112,145,64,-0.7575297241902407],[112,145,65,-0.7571746802066622],[112,145,66,-0.7568219378097201],[112,145,67,-0.7564715031062491],[112,145,68,-0.7561233821136489],[112,145,69,-0.7557775807594649],[112,145,70,-0.7554341048809541],[112,145,71,-0.7550929602246546],[112,145,72,-0.754754152445955],[112,145,73,-0.7544176871086773],[112,145,74,-0.7540835696846314],[112,145,75,-0.753751805553201],[112,145,76,-0.7534224000009151],[112,145,77,-0.7530953582210225],[112,145,78,-0.752770685313069],[112,145,79,-0.75244838628247],[112,146,64,-0.7576793581649817],[112,146,65,-0.7573240547371403],[112,146,66,-0.7569710522224743],[112,146,67,-0.7566203567309782],[112,146,68,-0.7562719742832403],[112,146,69,-0.7559259108100241],[112,146,70,-0.7555821721518337],[112,146,71,-0.755240764058484],[112,146,72,-0.7549016921886695],[112,146,73,-0.7545649621095484],[112,146,74,-0.7542305792962954],[112,146,75,-0.7538985491316894],[112,146,76,-0.7535688769056839],[112,146,77,-0.753241567814982],[112,146,78,-0.7529166269626137],[112,146,79,-0.7525940593575089],[112,147,64,-0.7578291534638429],[112,147,65,-0.7574735917696306],[112,147,66,-0.7571203303110046],[112,147,67,-0.7567693752010991],[112,147,68,-0.7564207324636716],[112,147,69,-0.7560744080326847],[112,147,70,-0.7557304077518703],[112,147,71,-0.7553887373743016],[112,147,72,-0.7550494025619605],[112,147,73,-0.7547124088853221],[112,147,74,-0.7543777618229085],[112,147,75,-0.7540454667608748],[112,147,76,-0.7537155289925818],[112,147,77,-0.7533879537181689],[112,147,78,-0.753062746044133],[112,147,79,-0.7527399109829007],[112,148,64,-0.7579791098668638],[112,148,65,-0.7576232910866815],[112,148,66,-0.7572697718603609],[112,148,67,-0.7569185583041564],[112,148,68,-0.7565696564449758],[112,148,69,-0.7562230722199605],[112,148,70,-0.7558788114760523],[112,148,71,-0.7555368799695629],[112,148,72,-0.7551972833657432],[112,148,73,-0.7548600272383666],[112,148,74,-0.7545251170692844],[112,148,75,-0.7541925582480099],[112,148,76,-0.7538623560712926],[112,148,77,-0.7535345157426911],[112,148,78,-0.7532090423721512],[112,148,79,-0.7528859409755788],[112,149,64,-0.7581292271524697],[112,149,65,-0.7577731524692197],[112,149,66,-0.7574193766539647],[112,149,67,-0.7570679058260598],[112,149,68,-0.7567187460155429],[112,149,69,-0.7563719031627162],[112,149,70,-0.756027383117711],[112,149,71,-0.7556851916400593],[112,149,72,-0.755345334398262],[112,149,73,-0.7550078169693728],[112,149,74,-0.7546726448385526],[112,149,75,-0.7543398233986558],[112,149,76,-0.7540093579498024],[112,149,77,-0.7536812536989519],[112,149,78,-0.7533555157594817],[112,149,79,-0.7530321491507596],[112,150,64,-0.7582795050974527],[112,150,65,-0.7579231756965314],[112,150,66,-0.7575691444735895],[112,150,67,-0.7572174175510631],[112,150,68,-0.7568680009621012],[112,150,69,-0.7565209006501463],[112,150,70,-0.7561761224685013],[112,150,71,-0.7558336721798989],[112,150,72,-0.7554935554560713],[112,150,73,-0.7551557778773336],[112,150,74,-0.7548203449321386],[112,150,75,-0.7544872620166629],[112,150,76,-0.754156534434379],[112,150,77,-0.75382816739563],[112,150,78,-0.7535021660172065],[112,150,79,-0.7531785353219211],[112,151,64,-0.7584299434769515],[112,151,65,-0.7580733605462422],[112,151,66,-0.7577190750993411],[112,151,67,-0.7573670932617457],[112,151,68,-0.7570174210696962],[112,151,69,-0.7566700644697568],[112,151,70,-0.756325029318382],[112,151,71,-0.7559823213814864],[112,151,72,-0.7556419463340149],[112,151,73,-0.7553039097595252],[112,151,74,-0.7549682171497436],[112,151,75,-0.7546348739041505],[112,151,76,-0.754303885329553],[112,151,77,-0.7539752566396594],[112,151,78,-0.7536489929546567],[112,151,79,-0.7533250993007841],[112,152,64,-0.7585805420645111],[112,152,65,-0.7582237067943762],[112,152,66,-0.7578691683097163],[112,152,67,-0.7575169327390704],[112,152,68,-0.7571670061217504],[112,152,69,-0.7568193944074226],[112,152,70,-0.7564741034556738],[112,152,71,-0.7561311390355819],[112,152,72,-0.755790506825285],[112,152,73,-0.755452212411565],[112,152,74,-0.7551162612894033],[112,152,75,-0.7547826588615656],[112,152,76,-0.7544514104381757],[112,152,77,-0.754122521236289],[112,152,78,-0.7537959963794708],[112,152,79,-0.7534718408973698],[112,153,64,-0.7587313006320531],[112,153,65,-0.7583742142153274],[112,153,66,-0.7580194238815747],[112,153,67,-0.7576669357623558],[112,153,68,-0.7573167559000346],[112,153,69,-0.7569688902473599],[112,153,70,-0.7566233446670321],[112,153,71,-0.7562801249312724],[112,153,72,-0.755939236721394],[112,153,73,-0.7556006856273838],[112,153,74,-0.7552644771474597],[112,153,75,-0.7549306166876548],[112,153,76,-0.7545991095613909],[112,153,77,-0.7542699609890529],[112,153,78,-0.7539431760975667],[112,153,79,-0.7536187599199724],[112,154,64,-0.7588822189499008],[112,154,65,-0.7585248825818838],[112,154,66,-0.7581698415901627],[112,154,67,-0.7578171021092998],[112,154,68,-0.7574666701846915],[112,154,69,-0.7571185517721502],[112,154,70,-0.7567727527374695],[112,154,71,-0.7564292788559958],[112,154,72,-0.7560881358121976],[112,154,73,-0.7557493291992489],[112,154,74,-0.7554128645185848],[112,154,75,-0.7550787471794875],[112,154,76,-0.7547469824986588],[112,154,77,-0.754417575699795],[112,154,78,-0.7540905319131646],[112,154,79,-0.7537658561751821],[112,155,64,-0.7590332967867506],[112,155,65,-0.7586757116651988],[112,155,66,-0.7583204212090842],[112,155,67,-0.7579674315559508],[112,155,68,-0.7576167487542077],[112,155,69,-0.7572683787627108],[112,155,70,-0.7569223274503281],[112,155,71,-0.7565786005955119],[112,155,72,-0.756237203885867],[112,155,73,-0.7558981429177355],[112,155,74,-0.7555614231957515],[112,155,75,-0.7552270501324273],[112,155,76,-0.7548950290477269],[112,155,77,-0.7545653651686396],[112,155,78,-0.7542380636287589],[112,155,79,-0.7539131294678556],[112,156,64,-0.75918453390973],[112,156,65,-0.7588267012348503],[112,156,66,-0.7584711625103607],[112,156,67,-0.7581179238767672],[112,156,68,-0.7577669913854721],[112,156,69,-0.7574183709983546],[112,156,70,-0.7570720685873384],[112,156,71,-0.7567280899339618],[112,156,72,-0.7563864407289475],[112,156,73,-0.7560471265717863],[112,156,74,-0.7557101529702926],[112,156,75,-0.7553755253401911],[112,156,76,-0.755043249004689],[112,156,77,-0.7547133291940507],[112,156,78,-0.7543857710451767],[112,156,79,-0.7540605796011766],[112,157,64,-0.7593359300843787],[112,157,65,-0.7589778510588205],[112,157,66,-0.7586220652644108],[112,157,67,-0.7582685788445974],[112,157,68,-0.757917397853756],[112,157,69,-0.75756852825677],[112,157,70,-0.7572219759285989],[112,157,71,-0.7568777466538478],[112,157,72,-0.7565358461263381],[112,157,73,-0.7561962799486905],[112,157,74,-0.7558590536318817],[112,157,75,-0.7555241725948291],[112,157,76,-0.7551916421639652],[112,157,77,-0.7548614675728117],[112,157,78,-0.7545336539615579],[112,157,79,-0.7542082063766347],[112,158,64,-0.759487485074629],[112,158,65,-0.7591291609034765],[112,158,66,-0.7587731292400302],[112,158,67,-0.7584193962306597],[112,158,68,-0.7580679679326938],[112,158,69,-0.7577188503140008],[112,158,70,-0.7573720492525562],[112,158,71,-0.757027570536013],[112,158,72,-0.756685419861272],[112,158,73,-0.7563456028340652],[112,158,74,-0.7560081249685117],[112,158,75,-0.7556729916867042],[112,158,76,-0.755340208318282],[112,158,77,-0.7550097801000055],[112,158,78,-0.7546817121753352],[112,158,79,-0.7543560095940046],[112,159,64,-0.759639198642864],[112,159,65,-0.7592806305336292],[112,159,66,-0.758924354204451],[112,159,67,-0.7585703758046012],[112,159,68,-0.7582187013943413],[112,159,69,-0.7578693369445051],[112,159,70,-0.7575222883360645],[112,159,71,-0.7571775613597012],[112,159,72,-0.7568351617153757],[112,159,73,-0.7564950950119125],[112,159,74,-0.756157366766555],[112,159,75,-0.7558219824045519],[112,159,76,-0.755488947258731],[112,159,77,-0.7551582665690735],[112,159,78,-0.7548299454822924],[112,159,79,-0.7545039890514071],[112,160,64,-0.7597910705498891],[112,160,65,-0.7594322597125044],[112,160,66,-0.7590757399233132],[112,160,67,-0.7587215173344692],[112,160,68,-0.7583695980091476],[112,160,69,-0.758019987921127],[112,160,70,-0.7576726929543565],[112,160,71,-0.7573277189025267],[112,160,72,-0.7569850714686397],[112,160,73,-0.7566447562645924],[112,160,74,-0.7563067788107339],[112,160,75,-0.7559711445354508],[112,160,76,-0.7556378587747402],[112,160,77,-0.7553069267717861],[112,160,78,-0.7549783536765365],[112,160,79,-0.754652144545278],[112,161,64,-0.7599431005549567],[112,161,65,-0.759584048201767],[112,161,66,-0.7592272861606886],[112,161,67,-0.7588728205867361],[112,161,68,-0.7585206575459786],[112,161,69,-0.7581708030151202],[112,161,70,-0.7578232628810673],[112,161,71,-0.7574780429405001],[112,161,72,-0.7571351488994427],[112,161,73,-0.7567945863728458],[112,161,74,-0.7564563608841453],[112,161,75,-0.7561204778648463],[112,161,76,-0.7557869426540978],[112,161,77,-0.7554557604982677],[112,161,78,-0.7551269365505207],[112,161,79,-0.754800475870393],[112,162,64,-0.7600952884157369],[112,162,65,-0.7597359957614925],[112,162,66,-0.7593789926790512],[112,162,67,-0.759024285326269],[112,162,68,-0.7586718797720885],[112,162,69,-0.7583217819961193],[112,162,70,-0.7579739978882056],[112,162,71,-0.757628533247998],[112,162,72,-0.7572853937845225],[112,162,73,-0.7569445851157657],[112,162,74,-0.7566061127682304],[112,162,75,-0.7562699821765222],[112,162,76,-0.755936198682923],[112,162,77,-0.7556047675369664],[112,162,78,-0.7552756938950156],[112,162,79,-0.7549489828198386],[112,163,64,-0.7602476338883768],[112,163,65,-0.7598881021502256],[112,163,66,-0.7595308592393375],[112,163,67,-0.75917591131639],[112,163,68,-0.7588232644531785],[112,163,69,-0.7584729246321986],[112,163,70,-0.758124897746213],[112,163,71,-0.7577791895978222],[112,163,72,-0.757435805899036],[112,163,73,-0.7570947522708565],[112,163,74,-0.7567560342428353],[112,163,75,-0.7564196572526596],[112,163,76,-0.7560856266457254],[112,163,77,-0.7557539476747136],[112,163,78,-0.7554246254991683],[112,163,79,-0.7550976651850708],[112,164,64,-0.7604001367274803],[112,164,65,-0.7600403671249606],[112,164,66,-0.7596828856009262],[112,164,67,-0.7593276983188555],[112,164,68,-0.7589748113533772],[112,164,69,-0.758624230689853],[112,164,70,-0.7582759622239432],[112,164,71,-0.7579300117611802],[112,164,72,-0.7575863850165374],[112,164,73,-0.7572450876140135],[112,164,74,-0.7569061250861899],[112,164,75,-0.7565695028738162],[112,164,76,-0.7562352263253845],[112,164,77,-0.7559033006967045],[112,164,78,-0.7555737311504825],[112,164,79,-0.7552465227558953],[112,165,64,-0.7605527966860886],[112,165,65,-0.7601927904411212],[112,165,66,-0.7598350715216176],[112,165,67,-0.7594796460938368],[112,165,68,-0.7591265202352205],[112,165,69,-0.7587756999339761],[112,165,70,-0.7584271910886432],[112,165,71,-0.758080999507665],[112,165,72,-0.7577371309089596],[112,165,73,-0.7573955909195034],[112,165,74,-0.757056385074888],[112,165,75,-0.7567195188189071],[112,165,76,-0.7563849975031299],[112,165,77,-0.7560528263864765],[112,165,78,-0.7557230106347974],[112,165,79,-0.7553955553204469],[112,166,64,-0.7607056135157388],[112,166,65,-0.76034537185262],[112,166,66,-0.7599874167576934],[112,166,67,-0.7596317543999787],[112,166,68,-0.7592783908597104],[112,166,69,-0.7589273321279217],[112,166,70,-0.7585785841060111],[112,166,71,-0.7582321526053137],[112,166,72,-0.7578880433466726],[112,166,73,-0.7575462619600223],[112,166,74,-0.7572068139839463],[112,166,75,-0.756869704865263],[112,166,76,-0.7565349399585999],[112,166,77,-0.7562025245259696],[112,166,78,-0.7558724637363476],[112,166,79,-0.7555447626652483],[112,167,64,-0.7608585869664358],[112,167,65,-0.7604981111118289],[112,167,66,-0.7601399210638876],[112,167,67,-0.7597840229943709],[112,167,68,-0.7594304229862863],[112,167,69,-0.7590791270334729],[112,167,70,-0.7587301410401679],[112,167,71,-0.758383470820579],[112,167,72,-0.7580391220984545],[112,167,73,-0.757697100506668],[112,167,74,-0.7573574115867754],[112,167,75,-0.7570200607886013],[112,167,76,-0.7566850534698129],[112,167,77,-0.756352394895496],[112,167,78,-0.7560220902377339],[112,167,79,-0.7556941445751817],[112,168,64,-0.7610117167866755],[112,168,65,-0.760651007969604],[112,168,66,-0.7602925841934102],[112,168,67,-0.7599364516325718],[112,168,68,-0.7595826163728492],[112,168,69,-0.759231084410867],[112,168,70,-0.7588818616536814],[112,168,71,-0.7585349539183529],[112,168,72,-0.7581903669315158],[112,168,73,-0.757848106328963],[112,168,74,-0.7575081776552042],[112,168,75,-0.7571705863630506],[112,168,76,-0.7568353378131908],[112,168,77,-0.7565024372737652],[112,168,78,-0.7561718899199463],[112,168,79,-0.7558437008335124],[112,169,64,-0.7611650027234161],[112,169,65,-0.7608040621752568],[112,169,66,-0.760445405897919],[112,169,67,-0.7600890400685799],[112,169,68,-0.7597349707757322],[112,169,69,-0.759383204018766],[112,169,70,-0.7590337457075369],[112,169,71,-0.7586866016619378],[112,169,72,-0.7583417776114696],[112,169,73,-0.7579992791948257],[112,169,74,-0.7576591119594495],[112,169,75,-0.7573212813611208],[112,169,76,-0.75698579276353],[112,169,77,-0.756652651437854],[112,169,78,-0.7563218625623358],[112,169,79,-0.7559934312218585],[112,170,64,-0.7613184445221384],[112,170,65,-0.7609572734766116],[112,170,66,-0.7605983859275778],[112,170,67,-0.7602417880548926],[112,170,68,-0.7598874859497604],[112,170,69,-0.7595354856143167],[112,170,70,-0.7591857929611965],[112,170,71,-0.7588384138131057],[112,170,72,-0.7584933539023919],[112,170,73,-0.7581506188706295],[112,170,74,-0.7578102142681769],[112,170,75,-0.7574721455537627],[112,170,76,-0.757136418094061],[112,170,77,-0.756803037163266],[112,170,78,-0.7564720079426732],[112,170,79,-0.7561433355202521],[112,171,64,-0.7614720419268238],[112,171,65,-0.7611106416199878],[112,171,66,-0.7607515240310374],[112,171,67,-0.7603946953424863],[112,171,68,-0.76004016164823],[112,171,69,-0.7596879289531295],[112,171,70,-0.7593380031725792],[112,171,71,-0.7589903901320778],[112,171,72,-0.7586450955668005],[112,171,73,-0.758302125121183],[112,171,74,-0.7579614843484791],[112,171,75,-0.7576231787103478],[112,171,76,-0.7572872135764274],[112,171,77,-0.7569535942239115],[112,171,78,-0.7566223258371286],[112,171,79,-0.7562934135071172],[112,172,64,-0.7616257946799359],[112,172,65,-0.7612641663501782],[112,172,66,-0.7609048199554147],[112,172,67,-0.7605477616807957],[112,172,68,-0.7601929976228884],[112,172,69,-0.7598405337892588],[112,172,70,-0.75949037609804],[112,172,71,-0.7591425303775046],[112,172,72,-0.7587970023656347],[112,172,73,-0.7584537977097086],[112,172,74,-0.7581129219658562],[112,172,75,-0.7577743805986474],[112,172,76,-0.757438178980666],[112,172,77,-0.7571043223920861],[112,172,78,-0.7567728160202513],[112,172,79,-0.7564436649592499],[112,173,64,-0.7617797025224787],[112,173,65,-0.761417847410509],[112,173,66,-0.7610582734463518],[112,173,67,-0.7607009868177742],[112,173,68,-0.7603459936239939],[112,173,69,-0.7599932998752618],[112,173,70,-0.7596429114924299],[112,173,71,-0.7592948343065243],[112,173,72,-0.7589490740583154],[112,173,73,-0.7586056363979031],[112,173,74,-0.758264526884275],[112,173,75,-0.7579257509848925],[112,173,76,-0.7575893140752661],[112,173,77,-0.7572552214385313],[112,173,78,-0.7569234782650285],[112,173,79,-0.7565940896518775],[112,174,64,-0.7619337651939683],[112,174,65,-0.7615716845428103],[112,174,66,-0.7612118842479878],[112,174,67,-0.7608543704998637],[112,174,68,-0.7604991494002858],[112,174,69,-0.7601462269621696],[112,174,70,-0.7597956091090662],[112,174,71,-0.759447301674735],[112,174,72,-0.7591013104027144],[112,174,73,-0.7587576409459076],[112,174,74,-0.7584162988661393],[112,174,75,-0.758077289633744],[112,174,76,-0.7577406186271395],[112,174,77,-0.7574062911324042],[112,174,78,-0.7570743123428565],[112,174,79,-0.7567446873586294],[112,175,64,-0.7620879824324562],[112,175,65,-0.7617256774874404],[112,175,66,-0.7613656521029819],[112,175,67,-0.761007912472019],[112,175,68,-0.760652464699009],[112,175,69,-0.7602993147995118],[112,175,70,-0.759948468699757],[112,175,71,-0.7595999322362175],[112,175,72,-0.7592537111551803],[112,175,73,-0.7589098111123315],[112,175,74,-0.7585682376723145],[112,175,75,-0.7582289963083169],[112,175,76,-0.7578920924016452],[112,175,77,-0.7575575312413021],[112,175,78,-0.7572253180235645],[112,175,79,-0.756895457851561],[112,176,64,-0.7622423539745011],[112,176,65,-0.7618798259832567],[112,176,66,-0.7615195767524852],[112,176,67,-0.761161612477679],[112,176,68,-0.7608059392658848],[112,176,69,-0.760452563135286],[112,176,70,-0.7601014900147711],[112,176,71,-0.7597527257435064],[112,176,72,-0.7594062760705073],[112,176,73,-0.7590621466542238],[112,176,74,-0.7587203430620977],[112,176,75,-0.7583808707701511],[112,176,76,-0.7580437351625601],[112,176,77,-0.7577089415312319],[112,176,78,-0.757376495075385],[112,176,79,-0.7570464009011235],[112,177,64,-0.7623968795552274],[112,177,65,-0.7620341297676748],[112,177,66,-0.7616736579361987],[112,177,67,-0.7613154702588252],[112,177,68,-0.7609595728451695],[112,177,69,-0.7606059717160183],[112,177,70,-0.7602546728028984],[112,177,71,-0.7599056819476495],[112,177,72,-0.759559004901996],[112,177,73,-0.7592146473271314],[112,177,74,-0.7588726147932774],[112,177,75,-0.7585329127792704],[112,177,76,-0.7581955466721373],[112,177,77,-0.7578605217666713],[112,177,78,-0.757527843265013],[112,177,79,-0.7571975162762243],[112,178,64,-0.7625515589083055],[112,178,65,-0.7621885885766486],[112,178,66,-0.7618278953923545],[112,178,67,-0.7614694855559625],[112,178,68,-0.7611133651796351],[112,178,69,-0.7607595402867423],[112,178,70,-0.7604080168114288],[112,178,71,-0.7600588005981879],[112,178,72,-0.7597118974014323],[112,178,73,-0.7593673128850802],[112,178,74,-0.7590250526221127],[112,178,75,-0.7586851220941623],[112,178,76,-0.7583475266910867],[112,178,77,-0.7580122717105469],[112,178,78,-0.757679362357586],[112,178,79,-0.7573488037442059],[112,179,64,-0.7627063917659314],[112,179,65,-0.7623432021446497],[112,179,66,-0.7619822888576948],[112,179,67,-0.7616236581080978],[112,179,68,-0.7612673160105486],[112,179,69,-0.7609132685909792],[112,179,70,-0.7605615217861322],[112,179,71,-0.7602120814431342],[112,179,72,-0.7598649533190669],[112,179,73,-0.7595201430805527],[112,179,74,-0.7591776563033132],[112,179,75,-0.7588374984717571],[112,179,76,-0.7584996749785541],[112,179,77,-0.7581641911242135],[112,179,78,-0.7578310521166629],[112,179,79,-0.757500263070825],[112,180,64,-0.762861377858886],[112,180,65,-0.7624979702047271],[112,180,66,-0.7621368380675313],[112,180,67,-0.7617779876528004],[112,180,68,-0.7614214250777309],[112,180,69,-0.7610671563707966],[112,180,70,-0.7607151874713176],[112,180,71,-0.7603655242290337],[112,180,72,-0.760018172403675],[112,180,73,-0.7596731376645492],[112,180,74,-0.7593304255900986],[112,180,75,-0.7589900416674878],[112,180,76,-0.7586519912921805],[112,180,77,-0.7583162797675147],[112,180,78,-0.7579829123042837],[112,180,79,-0.7576518940203124],[112,181,64,-0.7630165169165057],[112,181,65,-0.7626528924884776],[112,181,66,-0.7622915427557155],[112,181,67,-0.7619324739261717],[112,181,68,-0.761575692119528],[112,181,69,-0.7612212033667797],[112,181,70,-0.7608690136098041],[112,181,71,-0.7605191287009334],[112,181,72,-0.7601715544025273],[112,181,73,-0.7598262963865575],[112,181,74,-0.759483360234168],[112,181,75,-0.7591427514352606],[112,181,76,-0.7588044753880726],[112,181,77,-0.7584685373987523],[112,181,78,-0.7581349426809401],[112,181,79,-0.7578036963553436],[112,182,64,-0.7631718086667074],[112,182,65,-0.7628079687260702],[112,182,66,-0.7624464026546639],[112,182,67,-0.76208711666287],[112,182,68,-0.7617301168728352],[112,182,69,-0.7613754093180554],[112,182,70,-0.7610229999429444],[112,182,71,-0.7606728946024074],[112,182,72,-0.7603250990614124],[112,182,73,-0.7599796189945769],[112,182,74,-0.7596364599857254],[112,182,75,-0.7592956275274784],[112,182,76,-0.7589571270208271],[112,182,77,-0.7586209637747111],[112,182,78,-0.7582871430055986],[112,182,79,-0.7579556698370623],[112,183,64,-0.7633272528359579],[112,183,65,-0.7629631986462165],[112,183,66,-0.7626014174953277],[112,183,67,-0.7622419155960809],[112,183,68,-0.761884699073067],[112,183,69,-0.7615297739622621],[112,183,70,-0.761177146210596],[112,183,71,-0.7608268216755261],[112,183,72,-0.7604788061246095],[112,183,73,-0.7601331052350884],[112,183,74,-0.7597897245934495],[112,183,75,-0.7594486696950113],[112,183,76,-0.7591099459435005],[112,183,77,-0.7587735586506282],[112,183,78,-0.7584395130356719],[112,183,79,-0.7581078142250505],[112,184,64,-0.7634828491493346],[112,184,65,-0.7631185819762305],[112,184,66,-0.7627565870072524],[112,184,67,-0.7623968704575768],[112,184,68,-0.7620394384542175],[112,184,69,-0.76168429703561],[112,184,70,-0.76133145215118],[112,184,71,-0.7609809096609168],[112,184,72,-0.760632675334946],[112,184,73,-0.7602867548531154],[112,184,74,-0.7599431538045531],[112,184,75,-0.7596018776872568],[112,184,76,-0.7592629319076689],[112,184,77,-0.7589263217802535],[112,184,78,-0.7585920525270781],[112,184,79,-0.7582601292773885],[112,185,64,-0.7636385973305039],[112,185,65,-0.763274118442008],[112,185,66,-0.762911910918558],[112,185,67,-0.7625519809776964],[112,185,68,-0.7621943347488392],[112,185,69,-0.7618389782728606],[112,185,70,-0.7614859175016614],[112,185,71,-0.7611351582977427],[112,185,72,-0.7607867064337784],[112,185,73,-0.7604405675922016],[112,185,74,-0.7600967473647627],[112,185,75,-0.7597552512521187],[112,185,76,-0.7594160846634082],[112,185,77,-0.759079252915829],[112,185,78,-0.7587447612342195],[112,185,79,-0.7584126147506344],[112,186,64,-0.7637944971017018],[112,186,65,-0.763429807768006],[112,186,66,-0.7630673889559176],[112,186,67,-0.762707246885324],[112,186,68,-0.7623493876880227],[112,186,69,-0.7619938174073055],[112,186,70,-0.7616405419975277],[112,186,71,-0.761289567323682],[112,186,72,-0.7609408991609705],[112,186,73,-0.7605945431943913],[112,186,74,-0.7602505050182977],[112,186,75,-0.7599087901359858],[112,186,76,-0.7595694039592713],[112,186,77,-0.7592323518080668],[112,186,78,-0.7588976389099624],[112,186,79,-0.7585652703998025],[112,187,64,-0.763950548183793],[112,187,65,-0.7635856496773026],[112,187,66,-0.7632230208446178],[112,187,67,-0.7628626679079498],[112,187,68,-0.7625045970014563],[112,187,69,-0.7621488141708264],[112,187,70,-0.7617953253728492],[112,187,71,-0.7614441364749882],[112,187,72,-0.7610952532549536],[112,187,73,-0.7607486814002891],[112,187,74,-0.7604044265079299],[112,187,75,-0.7600624940837926],[112,187,76,-0.7597228895423502],[112,187,77,-0.7593856182062105],[112,187,78,-0.7590506853056966],[112,187,79,-0.7587180959784237],[112,188,64,-0.7641067502962505],[112,188,65,-0.7637416438915763],[112,188,66,-0.7633788063085377],[112,188,67,-0.7630182437716484],[112,188,68,-0.7626599624174057],[112,188,69,-0.7623039682938746],[112,188,70,-0.7619502673602576],[112,188,71,-0.7615988654864689],[112,188,72,-0.7612497684527063],[112,188,73,-0.7609029819490383],[112,188,74,-0.7605585115749633],[112,188,75,-0.7602163628389981],[112,188,76,-0.7598765411582535],[112,188,77,-0.7595390518580133],[112,188,78,-0.7592039001713144],[112,188,79,-0.7588710912385241],[112,189,64,-0.7642631031571351],[112,189,65,-0.7638977901310853],[112,189,66,-0.7635347450701283],[112,189,67,-0.7631739742010589],[112,189,68,-0.7628154836626928],[112,189,69,-0.7624592795054501],[112,189,70,-0.7621053676909263],[112,189,71,-0.7617537540914652],[112,189,72,-0.7614044444897323],[112,189,73,-0.7610574445783012],[112,189,74,-0.7607127599592128],[112,189,75,-0.7603703961435645],[112,189,76,-0.760030358551086],[112,189,77,-0.7596926525097172],[112,189,78,-0.75935728325519],[112,189,79,-0.7590242559306045],[112,190,64,-0.7644196064831548],[112,190,65,-0.7640540881147275],[112,190,66,-0.7636908368504725],[112,190,67,-0.7633298589194443],[112,190,68,-0.7629711604627557],[112,190,69,-0.7626147475331616],[112,190,70,-0.7622606260946291],[112,190,71,-0.7619088020219116],[112,190,72,-0.7615592811001217],[112,190,73,-0.7612120690243179],[112,190,74,-0.7608671713990641],[112,190,75,-0.7605245937380182],[112,190,76,-0.7601843414635089],[112,190,77,-0.7598464199061133],[112,190,78,-0.7595108343042389],[112,190,79,-0.7591775898037],[112,191,64,-0.7645762599896357],[112,191,65,-0.7642105375600109],[112,191,66,-0.7638470813692552],[112,191,67,-0.7634858976486617],[112,191,68,-0.7631269925416194],[112,191,69,-0.7627703721031965],[112,191,70,-0.7624160422997113],[112,191,71,-0.7620640090083063],[112,191,72,-0.7617142780165206],[112,191,73,-0.7613668550218776],[112,191,74,-0.7610217456314438],[112,191,75,-0.7606789553614184],[112,191,76,-0.7603384896367092],[112,191,77,-0.7600003537905115],[112,191,78,-0.7596645530638886],[112,191,79,-0.75933109260535],[112,192,64,-0.764733063390546],[112,192,65,-0.7643671381830776],[112,192,66,-0.7640034783447878],[112,192,67,-0.7636420901091872],[112,192,68,-0.7632829796219192],[112,192,69,-0.762926152940345],[112,192,70,-0.7625716160331135],[112,192,71,-0.7622193747797349],[112,192,72,-0.7618694349701549],[112,192,73,-0.7615218023043415],[112,192,74,-0.761176482391844],[112,192,75,-0.7608334807513825],[112,192,76,-0.7604928028104248],[112,192,77,-0.7601544539047643],[112,192,78,-0.7598184392781019],[112,192,79,-0.7594847640816225],[112,193,64,-0.764890016398466],[112,193,65,-0.7645238896986737],[112,193,66,-0.7641600274939777],[112,193,67,-0.7637984360200846],[112,193,68,-0.7634391214248715],[112,193,69,-0.7630820897679711],[112,193,70,-0.7627273470203415],[112,193,71,-0.7623748990638408],[112,193,72,-0.762024751690801],[112,193,73,-0.7616769106036136],[112,193,74,-0.7613313814142912],[112,193,75,-0.760988169644055],[112,193,76,-0.7606472807229132],[112,193,77,-0.7603087199892377],[112,193,78,-0.7599724926893471],[112,193,79,-0.7596386039770837],[112,194,64,-0.7650471187246484],[112,194,65,-0.76468079182021],[112,194,66,-0.7643167285323893],[112,194,67,-0.7639549350990673],[112,194,68,-0.7635954176703333],[112,194,69,-0.763238182308071],[112,194,70,-0.7628832349855263],[112,194,71,-0.7625305815868855],[112,194,72,-0.7621802279068449],[112,194,73,-0.7618321796502006],[112,194,74,-0.7614864424314076],[112,194,75,-0.7611430217741688],[112,194,76,-0.7608019231110124],[112,194,77,-0.7604631517828697],[112,194,78,-0.7601267130386583],[112,194,79,-0.7597926120348579],[112,195,64,-0.765204370078997],[112,195,65,-0.7648378442597408],[112,195,66,-0.7644735811742224],[112,195,67,-0.7641115870624758],[112,195,68,-0.7637518680767821],[112,195,69,-0.7633944302812532],[112,195,70,-0.7630392796514043],[112,195,71,-0.7626864220737266],[112,195,72,-0.7623358633452623],[112,195,73,-0.7619876091731907],[112,195,74,-0.7616416651743894],[112,195,75,-0.7612980368750226],[112,195,76,-0.7609567297101194],[112,195,77,-0.7606177490231512],[112,195,78,-0.760281100065614],[112,195,79,-0.7599467879966069],[112,196,64,-0.7653617701700471],[112,196,65,-0.7649950467279429],[112,196,66,-0.7646305851322915],[112,196,67,-0.7642683916252581],[112,196,68,-0.7639084723612934],[112,196,69,-0.7635508334067185],[112,196,70,-0.7631954807392942],[112,196,71,-0.7628424202477984],[112,196,72,-0.7624916577315969],[112,196,73,-0.7621431989002327],[112,196,74,-0.7617970493729854],[112,196,75,-0.7614532146784614],[112,196,76,-0.7611117002541699],[112,196,77,-0.7607725114461027],[112,196,78,-0.7604356535083161],[112,196,79,-0.7601011316025081],[112,197,64,-0.765519318705024],[112,197,65,-0.7651523989341763],[112,197,66,-0.764787740118086],[112,197,67,-0.7644253485010286],[112,197,68,-0.7640652302396032],[112,197,69,-0.7637073914023176],[112,197,70,-0.7633518379691594],[112,197,71,-0.7629985758311704],[112,197,72,-0.7626476107900206],[112,197,73,-0.762298948557596],[112,197,74,-0.7619525947555582],[112,197,75,-0.761608554914935],[112,197,76,-0.7612668344756968],[112,197,77,-0.7609274387863362],[112,197,78,-0.7605903731034498],[112,197,79,-0.7602556425913158],[112,198,64,-0.7656770153898143],[112,198,65,-0.7653099005864534],[112,198,66,-0.7649450458417403],[112,198,67,-0.7645824574020389],[112,198,68,-0.7642221414260754],[112,198,69,-0.7638641039845238],[112,198,70,-0.763508351059576],[112,198,71,-0.7631548885445184],[112,198,72,-0.762803722243304],[112,198,73,-0.7624548578701409],[112,198,74,-0.762108301049053],[112,198,75,-0.7617640573134695],[112,198,76,-0.7614221321058021],[112,198,77,-0.7610825307770244],[112,198,78,-0.7607452585862537],[112,198,79,-0.7604103207003297],[112,199,64,-0.7658348599289891],[112,199,65,-0.7654675513914637],[112,199,66,-0.7651025020120578],[112,199,67,-0.7647397180392018],[112,199,68,-0.7643792056337281],[112,199,69,-0.764020970868455],[112,199,70,-0.7636650197277587],[112,199,71,-0.7633113581071482],[112,199,72,-0.7629599918128394],[112,199,73,-0.7626109265613422],[112,199,74,-0.7622641679790224],[112,199,75,-0.7619197216016904],[112,199,76,-0.7615775928741794],[112,199,77,-0.7612377871499242],[112,199,78,-0.7609003096905438],[112,199,79,-0.7605651656654195],[112,200,64,-0.7659928520257755],[112,200,65,-0.7656253510545443],[112,200,66,-0.765260108336481],[112,200,67,-0.7648971301220616],[112,200,68,-0.7645364225742023],[112,200,69,-0.7641779917678452],[112,200,70,-0.7638218436895291],[112,200,71,-0.7634679842369654],[112,200,72,-0.7631164192186115],[112,200,73,-0.7627671543532594],[112,200,74,-0.7624201952695957],[112,200,75,-0.7620755475057924],[112,200,76,-0.7617332165090841],[112,200,77,-0.7613932076353471],[112,200,78,-0.7610555261486829],[112,200,79,-0.7607201772209947],[112,201,64,-0.7661509913821148],[112,201,65,-0.7657832992797386],[112,201,66,-0.7654178645211518],[112,201,67,-0.7650546933588532],[112,201,68,-0.7646937919578225],[112,201,69,-0.7643351663951035],[112,201,70,-0.7639788226593771],[112,201,71,-0.7636247666505356],[112,201,72,-0.7632730041792578],[112,201,73,-0.7629235409665964],[112,201,74,-0.7625763826435394],[112,201,75,-0.7622315347506],[112,201,76,-0.7618890027373939],[112,201,77,-0.7615487919622198],[112,201,78,-0.761210907691641],[112,201,79,-0.7608753551000645],[112,202,64,-0.7663092776986434],[112,202,65,-0.7659413957697773],[112,202,66,-0.7655757702708899],[112,202,67,-0.7652124074564826],[112,202,68,-0.7648513134935755],[112,202,69,-0.764492494461294],[112,202,70,-0.764135956350439],[112,202,71,-0.7637817050630634],[112,202,72,-0.7634297464120464],[112,202,73,-0.7630800861206812],[112,202,74,-0.7627327298222364],[112,202,75,-0.762387683059546],[112,202,76,-0.7620449512845875],[112,202,77,-0.7617045398580615],[112,202,78,-0.7613664540489744],[112,202,79,-0.7610306990342169],[112,203,64,-0.7664677106746708],[112,203,65,-0.7660996402260555],[112,203,66,-0.7657338252891729],[112,203,67,-0.7653702721205042],[112,203,68,-0.7650089868890897],[112,203,69,-0.7646499756761137],[112,203,70,-0.7642932444744769],[112,203,71,-0.7639387991883714],[112,203,72,-0.7635866456328562],[112,203,73,-0.7632367895334439],[112,203,74,-0.7628892365256635],[112,203,75,-0.7625439921546502],[112,203,76,-0.7622010618747227],[112,203,77,-0.7618604510489639],[112,203,78,-0.7615221649488038],[112,203,79,-0.761186208753597],[112,204,64,-0.7666262900082397],[112,204,65,-0.766258032348694],[112,204,66,-0.7658920292781952],[112,204,67,-0.7655282870551827],[112,204,68,-0.7651668118506947],[112,204,69,-0.7648076097479537],[112,204,70,-0.7644506867419387],[112,204,71,-0.7640960487389601],[112,204,72,-0.7637437015562355],[112,204,73,-0.763393650921477],[112,204,74,-0.7630459024724533],[112,204,75,-0.76270046175658],[112,204,76,-0.7623573342304977],[112,204,77,-0.7620165252596514],[112,204,78,-0.7616780401178747],[112,204,79,-0.7613418839869676],[112,205,64,-0.7667850153960967],[112,205,65,-0.7664165718365096],[112,205,66,-0.7660503819388392],[112,205,67,-0.7656864519634617],[112,205,68,-0.7653247880833918],[112,205,69,-0.7649653963838687],[112,205,70,-0.7646082828619281],[112,205,71,-0.7642534534259781],[112,205,72,-0.7639009138953737],[112,205,73,-0.7635506700000059],[112,205,74,-0.7632027273798628],[112,205,75,-0.7628570915846202],[112,205,76,-0.7625137680732199],[112,205,77,-0.76217276221345],[112,205,78,-0.7618340792815277],[112,205,79,-0.7614977244616784],[112,206,64,-0.7669438865337158],[112,206,65,-0.7665752583870377],[112,206,66,-0.7662088829706982],[112,206,67,-0.7658447665469884],[112,206,68,-0.7654829152908778],[112,206,69,-0.7651233352896006],[112,206,70,-0.7647660325422284],[112,206,71,-0.7644110129592455],[112,206,72,-0.7640582823621238],[112,206,73,-0.7637078464829123],[112,206,74,-0.763359710963798],[112,206,75,-0.7630138813566962],[112,206,76,-0.7626703631228307],[112,206,77,-0.7623291616323119],[112,206,78,-0.7619902821637214],[112,206,79,-0.7616537299036905],[112,207,64,-0.7671029031152687],[112,207,65,-0.7667340916965035],[112,207,66,-0.7663675320720472],[112,207,67,-0.7660032305060833],[112,207,68,-0.7656411931755146],[112,207,69,-0.7652814261695492],[112,207,70,-0.7649239354892726],[112,207,71,-0.7645687270472245],[112,207,72,-0.764215806666973],[112,207,73,-0.763865180082704],[112,207,74,-0.7635168529387827],[112,207,75,-0.7631708307893447],[112,207,76,-0.7628271190978744],[112,207,77,-0.762485723236785],[112,207,78,-0.7621466484870028],[112,207,79,-0.7618099000375456],[112,208,64,-0.7672620648336845],[112,208,65,-0.7668930714598821],[112,208,66,-0.7665263289399026],[112,208,67,-0.7661618435398005],[112,208,68,-0.76579962143839],[112,208,69,-0.7654396687268313],[112,208,70,-0.7650819914082032],[112,208,71,-0.7647265953970791],[112,208,72,-0.7643734865191023],[112,208,73,-0.764022670510575],[112,208,74,-0.7636741530180203],[112,208,75,-0.7633279395977731],[112,208,76,-0.7629840357155586],[112,208,77,-0.7626424467460732],[112,208,78,-0.7623031779725675],[112,208,79,-0.7619662345864262],[112,209,64,-0.7674213713806295],[112,209,65,-0.7670521973708767],[112,209,66,-0.7666852732700014],[112,209,67,-0.7663206053459064],[112,209,68,-0.765958199779296],[112,209,69,-0.765598062663261],[112,209,70,-0.7652402000028516],[112,209,71,-0.7648846177146541],[112,209,72,-0.7645313216263661],[112,209,73,-0.764180317476385],[112,209,74,-0.7638316109133715],[112,209,75,-0.7634852074958389],[112,209,76,-0.7631411126917337],[112,209,77,-0.7627993318780147],[112,209,78,-0.7624598703402379],[112,209,79,-0.762122733272135],[112,210,64,-0.7675808224464852],[112,210,65,-0.7672114691218985],[112,210,66,-0.7668443647567796],[112,210,67,-0.7664795156208589],[112,210,68,-0.7661169278967082],[112,210,69,-0.7657566076793271],[112,210,70,-0.7653985609757163],[112,210,71,-0.7650427937044537],[112,210,72,-0.7646893116952698],[112,210,73,-0.764338120688637],[112,210,74,-0.7639892263353324],[112,210,75,-0.763642634196028],[112,210,76,-0.7632983497408703],[112,210,77,-0.7629563783490615],[112,210,78,-0.7626167253084423],[112,210,79,-0.762279395815072],[112,211,64,-0.7677404177204091],[112,211,65,-0.7673708864041259],[112,211,66,-0.7670036030934335],[112,211,67,-0.7666385740598674],[112,211,68,-0.7662758054878451],[112,211,69,-0.7659153034742542],[112,211,70,-0.7655570740280236],[112,211,71,-0.7652011230697018],[112,211,72,-0.7648474564310315],[112,211,73,-0.7644960798545387],[112,211,74,-0.7641469989930965],[112,211,75,-0.7638002194095147],[112,211,76,-0.7634557465761206],[112,211,77,-0.7631135858743385],[112,211,78,-0.7627737425942747],[112,211,79,-0.7624362219342963],[112,212,64,-0.7679001568903044],[112,212,65,-0.7675304489074749],[112,212,66,-0.7671629879718882],[112,212,67,-0.7667977803568622],[112,212,68,-0.7664348322486392],[112,212,69,-0.7660741497459721],[112,212,70,-0.7657157388596972],[112,212,71,-0.7653596055123122],[112,212,72,-0.7650057555375503],[112,212,73,-0.7646541946799712],[112,212,74,-0.7643049285945225],[112,212,75,-0.7639579628461322],[112,212,76,-0.763613302909287],[112,212,77,-0.763270954167614],[112,212,78,-0.7629309219134648],[112,212,79,-0.762593211347495],[112,213,64,-0.7680600396428441],[112,213,65,-0.7676901563206234],[112,213,66,-0.7673225190828223],[112,213,67,-0.7669571342045197],[112,213,68,-0.7665940078737599],[112,213,69,-0.7662331461911399],[112,213,70,-0.7658745551693822],[112,213,71,-0.7655182407329115],[112,213,72,-0.7651642087174315],[112,213,73,-0.7648124648695136],[112,213,74,-0.7644630148461601],[112,213,75,-0.7641158642143957],[112,213,76,-0.7637710184508469],[112,213,77,-0.7634284829413235],[112,213,78,-0.7630882629804021],[112,213,79,-0.762750363771007],[112,214,64,-0.7682200656634408],[112,214,65,-0.7678500083309805],[112,214,66,-0.767482196115638],[112,214,67,-0.7671166352942308],[112,214,68,-0.7667533320565837],[112,214,69,-0.766392292505116],[112,214,70,-0.7660335226544143],[112,214,71,-0.7656770284308099],[112,214,72,-0.765322815671955],[112,214,73,-0.7649708901264123],[112,214,74,-0.7646212574532176],[112,214,75,-0.7642739232214721],[112,214,76,-0.7639288929099218],[112,214,77,-0.7635861719065384],[112,214,78,-0.7632457655081043],[112,214,79,-0.7629076789197924],[112,215,64,-0.7683802346363067],[112,215,65,-0.7680100046247468],[112,215,66,-0.7676420187585206],[112,215,67,-0.7672762833161619],[112,215,68,-0.7669128044892546],[112,215,69,-0.7665515883820178],[112,215,70,-0.766192641010881],[112,215,71,-0.7658359683040609],[112,215,72,-0.7654815761011367],[112,215,73,-0.7651294701526414],[112,215,74,-0.764779656119624],[112,215,75,-0.7644321395732412],[112,215,76,-0.7640869259943378],[112,215,77,-0.7637440207730277],[112,215,78,-0.763403429208279],[112,215,79,-0.7630651565074933],[112,216,64,-0.768540546244433],[112,216,65,-0.7681701448868936],[112,216,66,-0.7678019866984178],[112,216,67,-0.7674360779592341],[112,216,68,-0.7670724248626622],[112,216,69,-0.7667110335147007],[112,216,70,-0.7663519099336],[112,216,71,-0.7659950600494401],[112,216,72,-0.7656404897037067],[112,216,73,-0.7652882046488818],[112,216,74,-0.7649382105480065],[112,216,75,-0.7645905129742727],[112,216,76,-0.7642451174106039],[112,216,77,-0.7639020292492357],[112,216,78,-0.7635612537913014],[112,216,79,-0.763222796246412],[112,217,64,-0.7687010001695682],[112,217,65,-0.7683304288011412],[112,217,66,-0.7679620996210184],[112,217,67,-0.7675960189111004],[112,217,68,-0.7672321928664216],[112,217,69,-0.7668706275947373],[112,217,70,-0.7665113291160972],[112,217,71,-0.7661543033624236],[112,217,72,-0.7657995561770875],[112,217,73,-0.7654470933144988],[112,217,74,-0.7650969204396695],[112,217,75,-0.7647490431278064],[112,217,76,-0.7644034668638908],[112,217,77,-0.76406019704226],[112,217,78,-0.7637192389661928],[112,217,79,-0.7633805978474894],[112,218,64,-0.7688615960922787],[112,218,65,-0.7684908560500197],[112,218,66,-0.7681223572108126],[112,218,67,-0.767756105858208],[112,218,68,-0.7673921081889326],[112,218,69,-0.7670303703124768],[112,218,70,-0.766670898250668],[112,218,71,-0.7663136979372492],[112,218,72,-0.7659587752174553],[112,218,73,-0.765606135847603],[112,218,74,-0.7652557854946548],[112,218,75,-0.7649077297358112],[112,218,76,-0.7645619740580912],[112,218,77,-0.7642185238579133],[112,218,78,-0.7638773844406814],[112,218,79,-0.7635385610203654],[112,219,64,-0.7690223336919273],[112,219,65,-0.7686514263148472],[112,219,66,-0.7682827591510705],[112,219,67,-0.7679163384857752],[112,219,68,-0.7675521705173587],[112,219,69,-0.7671902613570241],[112,219,70,-0.7668306170283551],[112,219,71,-0.7664732434668939],[112,219,72,-0.7661181465197179],[112,219,73,-0.7657653319450294],[112,219,74,-0.7654148054117206],[112,219,75,-0.7650665724989649],[112,219,76,-0.7647206386957984],[112,219,77,-0.7643770094007007],[112,219,78,-0.7640356899211809],[112,219,79,-0.7636966854733581],[112,220,64,-0.769183212646652],[112,220,65,-0.768812139275709],[112,220,66,-0.7684433051238211],[112,220,67,-0.7680767164777715],[112,220,68,-0.7677123795376058],[112,220,69,-0.7673503004162185],[112,220,70,-0.7669904851389278],[112,220,71,-0.7666329396430532],[112,220,72,-0.7662776697774931],[112,220,73,-0.765924681302315],[112,220,74,-0.765573979888319],[112,220,75,-0.7652255711166315],[112,220,76,-0.7648794604782846],[112,220,77,-0.7645356533737986],[112,220,78,-0.7641941551127677],[112,220,79,-0.7638549709134406],[112,221,64,-0.7693442326334268],[112,221,65,-0.7689729946115178],[112,221,66,-0.7686039948099124],[112,221,67,-0.7682372395169771],[112,221,68,-0.7678727349343831],[112,221,69,-0.7675104871766946],[112,221,70,-0.767150502270942],[112,221,71,-0.7667927861562011],[112,221,72,-0.7664373446831699],[112,221,73,-0.7660841836137596],[112,221,74,-0.7657333086206578],[112,221,75,-0.7653847252869224],[112,221,76,-0.7650384391055611],[112,221,77,-0.764694455479115],[112,221,78,-0.7643527797192428],[112,221,79,-0.764013417046303],[112,222,64,-0.7695053933280307],[112,222,65,-0.7691339919999832],[112,222,66,-0.7687648278889813],[112,222,67,-0.7683979072849524],[112,222,68,-0.7680332363911717],[112,222,69,-0.7676708213238502],[112,222,70,-0.7673106681117094],[112,222,71,-0.7669527826955598],[112,222,72,-0.7665971709278774],[112,222,73,-0.7662438385723955],[112,222,74,-0.7658927913036687],[112,222,75,-0.7655440347066653],[112,222,76,-0.7651975742763486],[112,222,77,-0.764853415417259],[112,222,78,-0.7645115634431005],[112,222,79,-0.7641720235763207],[112,223,64,-0.7696666944050717],[112,223,65,-0.7692951311176355],[112,223,66,-0.7689258040394774],[112,223,67,-0.768558719462063],[112,223,68,-0.7681938835902492],[112,223,69,-0.7678313025418723],[112,223,70,-0.7674709823473228],[112,223,71,-0.7671129289491238],[112,223,72,-0.7667571482015085],[112,223,73,-0.7664036458700113],[112,223,74,-0.766052427631032],[112,223,75,-0.7657034990714289],[112,223,76,-0.7653568656880999],[112,223,77,-0.7650125328875651],[112,223,78,-0.7646705059855524],[112,223,79,-0.7643307902065792],[112,224,64,-0.7698281355379576],[112,224,65,-0.7694564116397962],[112,224,66,-0.7690869229386325],[112,224,67,-0.768719675727448],[112,224,68,-0.7683546762126591],[112,224,69,-0.7679919305137052],[112,224,70,-0.7676314446626238],[112,224,71,-0.7672732246036291],[112,224,72,-0.7669172761926902],[112,224,73,-0.766563605197121],[112,224,74,-0.7662122172951454],[112,224,75,-0.7658631180754912],[112,224,76,-0.7655163130369702],[112,224,77,-0.7651718075880611],[112,224,78,-0.7648296070464962],[112,224,79,-0.7644897166388425],[112,225,64,-0.7699897163989544],[112,225,65,-0.7696178332406372],[112,225,66,-0.7692481842625213],[112,225,67,-0.7688807757590814],[112,225,68,-0.7685156139382712],[112,225,69,-0.7681527049211112],[112,225,70,-0.7677920547412642],[112,225,71,-0.767433669344614],[112,225,72,-0.7670775545888433],[112,225,73,-0.7667237162430245],[112,225,74,-0.7663721599871852],[112,225,75,-0.766022891411901],[112,225,76,-0.765675916017877],[112,225,77,-0.7653312392155303],[112,225,78,-0.7649888663245771],[112,225,79,-0.7646488025736137],[112,226,64,-0.770151436659167],[112,226,65,-0.7697793955931603],[112,226,66,-0.7694095876860394],[112,226,67,-0.76904201923375],[112,226,68,-0.7686766964457601],[112,226,69,-0.7683136254446498],[112,226,70,-0.7679528122656848],[112,226,71,-0.7675942628563969],[112,226,72,-0.767237983076161],[112,226,73,-0.7668839786957868],[112,226,74,-0.7665322553970841],[112,226,75,-0.7661828187724555],[112,226,76,-0.7658356743244786],[112,226,77,-0.7654908274654888],[112,226,78,-0.7651482835171655],[112,226,79,-0.7648080477101142],[112,227,64,-0.7703132959885162],[112,227,65,-0.7699410983691757],[112,227,66,-0.7695711328828829],[112,227,67,-0.7692034058270322],[112,227,68,-0.7688379234125841],[112,227,69,-0.7684746917636552],[112,227,70,-0.7681137169170931],[112,227,71,-0.7677550048220552],[112,227,72,-0.7673985613395874],[112,227,73,-0.7670443922422153],[112,227,74,-0.7666925032135095],[112,227,75,-0.7663428998476789],[112,227,76,-0.7659955876491529],[112,227,77,-0.765650572032164],[112,227,78,-0.765307858320335],[112,227,79,-0.7649674517462606],[112,228,64,-0.7704752940558001],[112,228,65,-0.7701029412393615],[112,228,66,-0.7697328195256078],[112,228,67,-0.7693649352133585],[112,228,68,-0.7689992945150446],[112,228,69,-0.7686359035562976],[112,228,70,-0.768274768375524],[112,228,71,-0.767915894923486],[112,228,72,-0.7675592890628783],[112,228,73,-0.7672049565679211],[112,228,74,-0.7668529031239246],[112,228,75,-0.7665031343268832],[112,228,76,-0.7661556556830571],[112,228,77,-0.7658104726085556],[112,228,78,-0.7654675904289242],[112,228,79,-0.7651270143787263],[112,229,64,-0.7706374305286631],[112,229,65,-0.7702649238732348],[112,229,66,-0.7698946472855996],[112,229,67,-0.7695266070659809],[112,229,68,-0.769160809428257],[112,229,69,-0.7687972604995521],[112,229,70,-0.7684359663198099],[112,229,71,-0.7680769328413749],[112,229,72,-0.76772016592857],[112,229,73,-0.7673656713572877],[112,229,74,-0.7670134548145573],[112,229,75,-0.766663521898137],[112,229,76,-0.7663158781160975],[112,229,77,-0.7659705288864039],[112,229,78,-0.7656274795365042],[112,229,79,-0.7652867353029106],[112,230,64,-0.7707997050736202],[112,230,65,-0.770427045939174],[112,230,66,-0.7700566158330984],[112,230,67,-0.7696884210569969],[112,230,68,-0.7693224678261736],[112,230,69,-0.7689587622692227],[112,230,70,-0.7685973104276035],[112,230,71,-0.7682381182552209],[112,230,72,-0.7678811916180035],[112,230,73,-0.7675265362934959],[112,230,74,-0.7671741579704243],[112,230,75,-0.7668240622482903],[112,230,76,-0.7664762546369535],[112,230,77,-0.7661307405562149],[112,230,78,-0.7657875253354041],[112,230,79,-0.7654466142129618],[112,231,64,-0.7709621173560263],[112,231,65,-0.7705893071043896],[112,231,66,-0.7702187248371666],[112,231,67,-0.7698503768573187],[112,231,68,-0.7694842693815532],[112,231,69,-0.7691204085399119],[112,231,70,-0.7687588003753477],[112,231,71,-0.768399450843304],[112,231,72,-0.7680423658112937],[112,231,73,-0.7676875510584916],[112,231,74,-0.7673350122752998],[112,231,75,-0.7669847550629418],[112,231,76,-0.766636784933046],[112,231,77,-0.7662911073072279],[112,231,78,-0.7659477275166786],[112,231,79,-0.7656066508017471],[112,232,64,-0.7711246670401367],[112,232,65,-0.7707517070349837],[112,232,66,-0.7703809739657506],[112,232,67,-0.7700124741367341],[112,232,68,-0.7696462137660218],[112,232,69,-0.7692821989850813],[112,232,70,-0.7689204358383364],[112,232,71,-0.7685609302827476],[112,232,72,-0.7682036881873903],[112,232,73,-0.7678487153330477],[112,232,74,-0.7674960174117766],[112,232,75,-0.767145600026502],[112,232,76,-0.7667974686905991],[112,232,77,-0.7664516288274779],[112,232,78,-0.7661080857701701],[112,232,79,-0.7657668447609125],[112,233,64,-0.7712873537890858],[112,233,65,-0.7709142453959295],[112,233,66,-0.7705433628856593],[112,233,67,-0.7701747125638847],[112,233,68,-0.7698083006500511],[112,233,69,-0.7694441332770293],[112,233,70,-0.7690822164906925],[112,233,71,-0.7687225562494957],[112,233,72,-0.7683651584240554],[112,233,73,-0.7680100287967419],[112,233,74,-0.7676571730612449],[112,233,75,-0.7673065968221695],[112,233,76,-0.7669583055946175],[112,233,77,-0.7666123048037722],[112,233,78,-0.7662685997844856],[112,233,79,-0.7659271957808621],[112,234,64,-0.771450177264865],[112,234,65,-0.7710769218510483],[112,234,66,-0.7707058912625415],[112,234,67,-0.770337091806244],[112,234,68,-0.7699705297029362],[112,234,69,-0.7696062110868702],[112,234,70,-0.7692441420053461],[112,234,71,-0.7688843284182917],[112,234,72,-0.7685267761978425],[112,234,73,-0.7681714911279343],[112,234,74,-0.767818478903869],[112,234,75,-0.7674677451319101],[112,234,76,-0.767119295328865],[112,234,77,-0.7667731349216694],[112,234,78,-0.7664292692469756],[112,234,79,-0.7660877035507349],[112,235,64,-0.771613137128384],[112,235,65,-0.7712397360630716],[112,235,66,-0.7708685587609476],[112,235,67,-0.7704996115301783],[112,235,68,-0.7701329005928571],[112,235,69,-0.7697684320845946],[112,235,70,-0.7694062120540954],[112,235,71,-0.7690462464627386],[112,235,72,-0.7686885411841567],[112,235,73,-0.7683331020038293],[112,235,74,-0.7679799346186492],[112,235,75,-0.7676290446365172],[112,235,76,-0.767280437575925],[112,235,77,-0.7669341188655404],[112,235,78,-0.7665900938437946],[112,235,79,-0.766248367758466],[112,236,64,-0.7717762330394395],[112,236,65,-0.7714026876936095],[112,236,66,-0.7710313650442981],[112,236,67,-0.7706622714009163],[112,236,68,-0.7702954129868472],[112,236,69,-0.7699307959390382],[112,236,70,-0.7695684263075759],[112,236,71,-0.7692083100552685],[112,236,72,-0.7688504530572239],[112,236,73,-0.7684948611004441],[112,236,74,-0.7681415398833905],[112,236,75,-0.7677904950155806],[112,236,76,-0.7674417320171696],[112,236,77,-0.7670952563185363],[112,236,78,-0.7667510732598702],[112,236,79,-0.7664091880907563],[112,237,64,-0.7719394646567397],[112,237,65,-0.7715657764031747],[112,237,66,-0.7711943097749081],[112,237,67,-0.7708250710825724],[112,237,68,-0.770458066550818],[112,237,69,-0.7700933023179064],[112,237,70,-0.7697307844352843],[112,237,71,-0.7693705188671666],[112,237,72,-0.7690125114901151],[112,237,73,-0.768656768092632],[112,237,74,-0.7683032943747268],[112,237,75,-0.7679520959475115],[112,237,76,-0.767603178332784],[112,237,77,-0.7672565469626134],[112,237,78,-0.7669122071789269],[112,237,79,-0.7665701642330952],[112,238,64,-0.7721028316378732],[112,238,65,-0.7717290018511521],[112,238,66,-0.7713573926139562],[112,238,67,-0.770988010238116],[112,238,68,-0.7706208609495275],[112,238,69,-0.7702559508877429],[112,238,70,-0.7698932861055473],[112,238,71,-0.76953287256854],[112,238,72,-0.7691747161547148],[112,238,73,-0.7688188226540524],[112,238,74,-0.768465197768089],[112,238,75,-0.7681138471095099],[112,238,76,-0.7677647762017347],[112,238,77,-0.7674179904785011],[112,238,78,-0.7670734952834543],[112,238,79,-0.7667312958697301],[112,239,64,-0.7722663336393697],[112,239,65,-0.7718923636958595],[112,239,66,-0.7715206132215451],[112,239,67,-0.7711510885294329],[112,239,68,-0.7707837958466414],[112,239,69,-0.7704187413139911],[112,239,70,-0.7700559309855828],[112,239,71,-0.7696953708283787],[112,239,72,-0.7693370667217823],[112,239,73,-0.7689810244572315],[112,239,74,-0.7686272497377671],[112,239,75,-0.7682757481776268],[112,239,76,-0.7679265253018304],[112,239,77,-0.7675795865457642],[112,239,78,-0.7672349372547694],[112,239,79,-0.7668925826837274],[112,240,64,-0.7724299703166784],[112,240,65,-0.7720558615945252],[112,240,66,-0.7716839712566803],[112,240,67,-0.7713143056173031],[112,240,68,-0.7709468709047108],[112,240,69,-0.7705816732609712],[112,240,70,-0.7702187187414778],[112,240,71,-0.7698580133145336],[112,240,72,-0.7694995628609297],[112,240,73,-0.7691433731735398],[112,240,74,-0.7687894499568872],[112,240,75,-0.7684377988267415],[112,240,76,-0.7680884253097009],[112,240,77,-0.7677413348427793],[112,240,78,-0.7673965327729938],[112,240,79,-0.76705402435695],[112,241,64,-0.7725937413241466],[112,241,65,-0.7722194952032673],[112,241,66,-0.771847466377248],[112,241,67,-0.7714776611613778],[112,241,68,-0.7711100857851514],[112,241,69,-0.7707447463918593],[112,241,70,-0.7703816490381667],[112,241,71,-0.7700207996936946],[112,241,72,-0.7696622042406001],[112,241,73,-0.7693058684731702],[112,241,74,-0.7689517980973904],[112,241,75,-0.7685999987305394],[112,241,76,-0.7682504759007738],[112,241,77,-0.7679032350467134],[112,241,78,-0.767558281517031],[112,241,79,-0.7672156205700355],[112,242,64,-0.7727576463150796],[112,242,65,-0.7723832641771533],[112,242,66,-0.7720110982400759],[112,242,67,-0.771641154820243],[112,242,68,-0.771273440148303],[112,242,69,-0.7709079603687481],[112,242,70,-0.7705447215394919],[112,242,71,-0.7701837296314514],[112,242,72,-0.7698249905281276],[112,242,73,-0.7694685100251998],[112,242,74,-0.7691142938300929],[112,242,75,-0.7687623475615739],[112,242,76,-0.7684126767493364],[112,242,77,-0.7680652868335855],[112,242,78,-0.7677201831646283],[112,242,79,-0.767377371002457],[112,243,64,-0.7729216849417107],[112,243,65,-0.7725471681701706],[112,243,66,-0.7721748665009021],[112,243,67,-0.7718047862513854],[112,243,68,-0.7714369336533996],[112,243,69,-0.7710713148526156],[112,243,70,-0.7707079359081729],[112,243,71,-0.7703468027922628],[112,243,72,-0.7699879213897078],[112,243,73,-0.7696312974975575],[112,243,74,-0.7692769368246549],[112,243,75,-0.7689248449912341],[112,243,76,-0.7685750275285042],[112,243,77,-0.7682274898782345],[112,243,78,-0.7678822373923455],[112,243,79,-0.7675392753324921],[112,244,64,-0.7730858568552247],[112,244,65,-0.7727112068352487],[112,244,66,-0.7723387708143998],[112,244,67,-0.7719685551112185],[112,244,68,-0.7716005659585928],[112,244,69,-0.771234809503349],[112,244,70,-0.7708712918058305],[112,244,71,-0.7705100188394801],[112,244,72,-0.7701509964904205],[112,244,73,-0.769794230557049],[112,244,74,-0.7694397267496057],[112,244,75,-0.7690874906897698],[112,244,76,-0.7687375279102446],[112,244,77,-0.7683898438543432],[112,244,78,-0.7680444438755781],[112,244,79,-0.7677013332372467],[112,245,64,-0.773250161705727],[112,245,65,-0.7728753798242302],[112,245,66,-0.7725028108341455],[112,245,67,-0.7721324610550513],[112,245,68,-0.7717643367209208],[112,245,69,-0.7713984439797139],[112,245,70,-0.7710347888929551],[112,245,71,-0.7706733774353165],[112,245,72,-0.7703142154941987],[112,245,73,-0.769957308869325],[112,245,74,-0.7696026632723107],[112,245,75,-0.769250284326259],[112,245,76,-0.768900177565346],[112,245,77,-0.7685523484344071],[112,245,78,-0.7682068022885266],[112,245,79,-0.7678635443926232],[112,246,64,-0.7734145991423047],[112,246,65,-0.7730396867879299],[112,246,66,-0.77266698621268],[112,246,67,-0.772296503737148],[112,246,68,-0.7719282455963695],[112,246,69,-0.7715622179394152],[112,246,70,-0.7711984268289681],[112,246,71,-0.7708368782409076],[112,246,72,-0.7704775780638897],[112,246,73,-0.7701205320989424],[112,246,74,-0.7697657460590339],[112,246,75,-0.7694132255686701],[112,246,76,-0.7690629761634786],[112,246,77,-0.768715003289796],[112,246,78,-0.7683693123042574],[112,246,79,-0.7680259084733821],[112,247,64,-0.7735791688130044],[112,247,65,-0.7732041273761143],[112,247,66,-0.772831296601487],[112,247,67,-0.7724606828107072],[112,247,68,-0.7720922922398505],[112,247,69,-0.7717261310390748],[112,247,70,-0.7713622052722],[112,247,71,-0.7710005209162898],[112,247,72,-0.7706410838612336],[112,247,73,-0.7702838999093422],[112,247,74,-0.7699289747749153],[112,247,75,-0.7695763140838392],[112,247,76,-0.7692259233731723],[112,247,77,-0.768877808090731],[112,247,78,-0.7685319735946805],[112,247,79,-0.76818842515312],[112,248,64,-0.7737438703648106],[112,248,65,-0.7733687012374786],[112,248,66,-0.7729957416509705],[112,248,67,-0.77262499792784],[112,248,68,-0.7722564763051788],[112,248,69,-0.7718901829342104],[112,248,70,-0.771526123879868],[112,248,71,-0.7711643051203776],[112,248,72,-0.7708047325468406],[112,248,73,-0.7704474119628273],[112,248,74,-0.7700923490839479],[112,248,75,-0.7697395495374478],[112,248,76,-0.7693890188617944],[112,248,77,-0.769040762506263],[112,248,78,-0.7686947858305275],[112,248,79,-0.7683510941042464],[112,249,64,-0.7739087034437065],[112,249,65,-0.7735334080197083],[112,249,66,-0.7731603210105165],[112,249,67,-0.7727894487396298],[112,249,68,-0.7724207974451341],[112,249,69,-0.772054373279295],[112,249,70,-0.7716901823081368],[112,249,71,-0.7713282305110254],[112,249,72,-0.7709685237802515],[112,249,73,-0.7706110679206238],[112,249,74,-0.7702558686490404],[112,249,75,-0.7699029315940844],[112,249,76,-0.7695522622956109],[112,249,77,-0.7692038662043329],[112,249,78,-0.7688577486814121],[112,249,79,-0.7685139149980456],[112,250,64,-0.7740736676946518],[112,250,65,-0.7736982473694568],[112,250,66,-0.7733250343284699],[112,250,67,-0.7729540348961118],[112,250,68,-0.772585255311439],[112,250,69,-0.7722187017277367],[112,250,70,-0.7718543802120975],[112,250,71,-0.7714922967450052],[112,250,72,-0.771132457219917],[112,250,73,-0.7707748674428585],[112,250,74,-0.7704195331319937],[112,250,75,-0.770066459917222],[112,250,76,-0.7697156533397643],[112,250,77,-0.7693671188517504],[112,250,78,-0.769020861815809],[112,250,79,-0.7686768875046543],[112,251,64,-0.7742387627615613],[112,251,65,-0.7738632189323242],[112,251,66,-0.7734898812521138],[112,251,67,-0.7731187560462496],[112,251,68,-0.7727498495547361],[112,251,69,-0.7723831679318548],[112,251,70,-0.7720187172457443],[112,251,71,-0.7716565034779836],[112,251,72,-0.7712965325231744],[112,251,73,-0.7709388101885369],[112,251,74,-0.7705833421934792],[112,251,75,-0.7702301341691955],[112,251,76,-0.769879191658251],[112,251,77,-0.769530520114171],[112,251,78,-0.7691841249010298],[112,251,79,-0.768840011293039],[112,252,64,-0.7744039882873652],[112,252,65,-0.7740283223529172],[112,252,66,-0.7736548614277294],[112,252,67,-0.7732836118379973],[112,252,68,-0.77291457982465],[112,252,69,-0.7725477715429424],[112,252,70,-0.7721831930620366],[112,252,71,-0.7718208503645843],[112,252,72,-0.7714607493463094],[112,252,73,-0.7711028958156045],[112,252,74,-0.7707472954931003],[112,252,75,-0.7703939540112635],[112,252,76,-0.770042876913983],[112,252,77,-0.7696940696561575],[112,252,78,-0.7693475376032867],[112,252,79,-0.7690032860310576],[112,253,64,-0.7745693439139785],[112,253,65,-0.7741935572748186],[112,253,66,-0.7738199745005658],[112,253,67,-0.7734486019182678],[112,253,68,-0.7730794457697551],[112,253,69,-0.772712512211234],[112,253,70,-0.7723478073128669],[112,253,71,-0.7719853370583554],[112,253,72,-0.7716251073445238],[112,253,73,-0.7712671239809149],[112,253,74,-0.7709113926893599],[112,253,75,-0.7705579191035766],[112,253,76,-0.7702067087687555],[112,253,77,-0.7698577671411483],[112,253,78,-0.7695110995876582],[112,253,79,-0.7691667113854275],[112,254,64,-0.7747348292823248],[112,254,65,-0.7743589233406113],[112,254,66,-0.7739852201148628],[112,254,67,-0.7736137259329563],[112,254,68,-0.7732444470376006],[112,254,69,-0.7728773895859302],[112,254,70,-0.7725125596490849],[112,254,71,-0.7721499632117945],[112,254,72,-0.7717896061719607],[112,254,73,-0.7714314943402544],[112,254,74,-0.7710756334396855],[112,254,75,-0.7707220291052012],[112,254,76,-0.7703706868832724],[112,254,77,-0.7700216122314817],[112,254,78,-0.7696748105181153],[112,254,79,-0.7693302870217494],[112,255,64,-0.7749004440323051],[112,255,65,-0.7745244201918468],[112,255,66,-0.7741505979138208],[112,255,67,-0.77377898352691],[112,255,68,-0.7734095832746786],[112,255,69,-0.7730424033151659],[112,255,70,-0.772677449720467],[112,255,71,-0.7723147284763165],[112,255,72,-0.7719542454816719],[112,255,73,-0.77159600654831],[112,255,74,-0.7712400174003972],[112,255,75,-0.7708862836740882],[112,255,76,-0.7705348109171128],[112,255,77,-0.7701856045883636],[112,255,78,-0.7698386700574883],[112,255,79,-0.7694940126044764],[112,256,64,-0.7750661878028587],[112,256,65,-0.7746900474691061],[112,256,66,-0.774316107539661],[112,256,67,-0.7739443743439883],[112,256,68,-0.7735748541264847],[112,256,69,-0.7732075530460716],[112,256,70,-0.772842477175776],[112,256,71,-0.7724796325023153],[112,256,72,-0.7721190249256801],[112,256,73,-0.7717606602587307],[112,256,74,-0.7714045442267685],[112,256,75,-0.7710506824671339],[112,256,76,-0.770699080528794],[112,256,77,-0.7703497438719298],[112,256,78,-0.7700026778675293],[112,256,79,-0.7696578877969744],[112,257,64,-0.7752320602319411],[112,257,65,-0.7748558048119782],[112,257,66,-0.7744817486336038],[112,257,67,-0.7741098980270414],[112,257,68,-0.773740259237497],[112,257,69,-0.773372838424751],[112,257,70,-0.77300764166274],[112,257,71,-0.7726446749391411],[112,257,72,-0.7722839441549556],[112,257,73,-0.7719254551241056],[112,257,74,-0.771569213573005],[112,257,75,-0.7712152251401584],[112,257,76,-0.770863495375748],[112,257,77,-0.7705140297412225],[112,257,78,-0.7701668336088889],[112,257,79,-0.7698219122615004],[112,258,64,-0.7753980609565024],[112,258,65,-0.7750216918590378],[112,258,66,-0.7746475208358463],[112,258,67,-0.7742755542178876],[112,258,68,-0.773905798251153],[112,258,69,-0.7735382590962594],[112,258,70,-0.7731729428280296],[112,258,71,-0.7728098554350784],[112,258,72,-0.7724490028193951],[112,258,73,-0.7720903907959411],[112,258,74,-0.7717340250922211],[112,258,75,-0.7713799113478819],[112,258,76,-0.7710280551142996],[112,258,77,-0.7706784618541687],[112,258,78,-0.7703311369410941],[112,258,79,-0.7699860856591791],[112,259,64,-0.7755641896125477],[112,259,65,-0.7751877082479056],[112,259,66,-0.7748134237856239],[112,259,67,-0.7744413425573744],[112,259,68,-0.7740714708099112],[112,259,69,-0.773703814704664],[112,259,70,-0.7733383803173194],[112,259,71,-0.7729751736374069],[112,259,72,-0.7726142005678817],[112,259,73,-0.7722554669247222],[112,259,74,-0.7718989784365018],[112,259,75,-0.7715447407439874],[112,259,76,-0.7711927593997275],[112,259,77,-0.7708430398676411],[112,259,78,-0.7704955875226096],[112,259,79,-0.7701504076500658],[112,260,64,-0.775730445835106],[112,260,65,-0.7753538536152179],[112,260,66,-0.7749794571211781],[112,260,67,-0.7746072626853474],[112,260,68,-0.774237276555219],[112,260,69,-0.7738695048930126],[112,260,70,-0.7735039537752562],[112,260,71,-0.7731406291923705],[112,260,72,-0.7727795370482544],[112,260,73,-0.7724206831598811],[112,260,74,-0.7720640732568705],[112,260,75,-0.7717097129810881],[112,260,76,-0.7713576078862328],[112,260,77,-0.7710077634374265],[112,260,78,-0.7706601850108061],[112,260,79,-0.7703148778931126],[112,261,64,-0.7758968292582545],[112,261,65,-0.7755201275966501],[112,261,66,-0.7751456204797812],[112,261,67,-0.7747733142406741],[112,261,68,-0.7744032151275378],[112,261,69,-0.7740353293033588],[112,261,70,-0.7736696628454831],[112,261,71,-0.7733062217452008],[112,261,72,-0.7729450119073316],[112,261,73,-0.7725860391498213],[112,261,74,-0.772229309203314],[112,261,75,-0.7718748277107519],[112,261,76,-0.7715226002269627],[112,261,77,-0.7711726322182498],[112,261,78,-0.7708249290619844],[112,261,79,-0.770479496046194],[112,262,64,-0.7760633395150869],[112,262,65,-0.7756865298268858],[112,262,66,-0.775311913497705],[112,262,67,-0.7749394968612127],[112,262,68,-0.7745692861663103],[112,262,69,-0.7742012875767285],[112,262,70,-0.7738355071706079],[112,262,71,-0.7734719509400857],[112,262,72,-0.7731106247908794],[112,262,73,-0.7727515345418854],[112,262,74,-0.7723946859247497],[112,262,75,-0.7720400845834693],[112,262,76,-0.7716877360739791],[112,262,77,-0.7713376458637423],[112,262,78,-0.7709898193313428],[112,262,79,-0.7706442617660745],[112,263,64,-0.7762299762377743],[112,263,65,-0.775853059939677],[112,263,66,-0.775478335810281],[112,263,67,-0.7751058101838725],[112,263,68,-0.7747354893100227],[112,263,69,-0.7743673793531825],[112,263,70,-0.7740014863922648],[112,263,71,-0.7736378164202307],[112,263,72,-0.7732763753436734],[112,263,73,-0.7729171689824168],[112,263,74,-0.7725602030690876],[112,263,75,-0.7722054832487151],[112,263,76,-0.7718530150783196],[112,263,77,-0.7715028040265027],[112,263,78,-0.7711548554730399],[112,263,79,-0.7708091747084698],[112,264,64,-0.7763967390575439],[112,264,65,-0.776019717567823],[112,264,66,-0.7756448870518791],[112,264,67,-0.7752722538445929],[112,264,68,-0.7749018241961816],[112,264,69,-0.7745336042717939],[112,264,70,-0.7741676001510915],[112,264,71,-0.7738038178278365],[112,264,72,-0.7734422632094755],[112,264,73,-0.7730829421167377],[112,264,74,-0.7727258602832077],[112,264,75,-0.7723710233549255],[112,264,76,-0.7720184368899754],[112,264,77,-0.7716681063580753],[112,264,78,-0.7713200371401709],[112,264,79,-0.7709742345280246],[112,265,64,-0.7765636276046557],[112,265,65,-0.7761865023431473],[112,265,66,-0.7758115668558847],[112,265,67,-0.7754388274783199],[112,265,68,-0.7750682904612926],[112,265,69,-0.7746999619706254],[112,265,70,-0.7743338480867066],[112,265,71,-0.7739699548040765],[112,265,72,-0.773608288031012],[112,265,73,-0.7732488535891255],[112,265,74,-0.7728916572129373],[112,265,75,-0.7725367045494762],[112,265,76,-0.7721840011578681],[112,265,77,-0.7718335525089264],[112,265,78,-0.7714853639847454],[112,265,79,-0.7711394408782898],[112,266,64,-0.7767306415084642],[112,266,65,-0.7763534138965591],[112,266,66,-0.7759783748547606],[112,266,67,-0.7756055307190679],[112,266,68,-0.7752348877409201],[112,266,69,-0.774866452086791],[112,266,70,-0.7745002298377717],[112,266,71,-0.7741362269891581],[112,266,72,-0.7737744494500349],[112,266,73,-0.7734149030428752],[112,266,74,-0.7730575935031128],[112,266,75,-0.7727025264787433],[112,266,76,-0.7723497075299124],[112,266,77,-0.7719991421285071],[112,266,78,-0.771650835657749],[112,266,79,-0.7713047934117839],[112,267,64,-0.7768977803973867],[112,267,65,-0.7765204518580218],[112,267,66,-0.7761453106800145],[112,267,67,-0.7757723631998881],[112,267,68,-0.7754016156696574],[112,267,69,-0.7750330742564239],[112,267,70,-0.7746667450419591],[112,267,71,-0.774302634022291],[112,267,72,-0.77394074710729],[112,267,73,-0.7735810901202671],[112,267,74,-0.7732236687975474],[112,267,75,-0.7728684887880711],[112,267,76,-0.7725155556529824],[112,267,77,-0.7721648748652197],[112,267,78,-0.7718164518091106],[112,267,79,-0.7714702917799613],[112,268,64,-0.7770650438989277],[112,268,65,-0.7766876158565768],[112,268,66,-0.7763123739622236],[112,268,67,-0.7759393245528923],[112,268,68,-0.7755684738811492],[112,268,69,-0.775199828114701],[112,268,70,-0.7748333933359759],[112,268,71,-0.7744691755417116],[112,268,72,-0.774107180642541],[112,268,73,-0.773747414462591],[112,268,74,-0.7733898827390557],[112,268,75,-0.7730345911217976],[112,268,76,-0.7726815451729372],[112,268,77,-0.7723307503664432],[112,268,78,-0.7719822120877279],[112,268,79,-0.771635935633236],[112,269,64,-0.7772324316396471],[112,269,65,-0.7768549055203121],[112,269,66,-0.7764795643310034],[112,269,67,-0.7761064144092211],[112,269,68,-0.7757354620080612],[112,269,69,-0.7753667132958109],[112,269,70,-0.7750001743555324],[112,269,71,-0.7746358511846504],[112,269,72,-0.7742737496945378],[112,269,73,-0.7739138757101143],[112,269,74,-0.7735562349694208],[112,269,75,-0.7732008331232205],[112,269,76,-0.772847675734588],[112,269,77,-0.7724967682785009],[112,269,78,-0.772148116141434],[112,269,79,-0.7718017246209495],[112,270,64,-0.7773999432452209],[112,270,65,-0.7770223204764237],[112,270,66,-0.7766468814150678],[112,270,67,-0.7762736323991063],[112,270,68,-0.7759025796821403],[112,270,69,-0.7755337294330149],[112,270,70,-0.7751670877354035],[112,270,71,-0.7748026605873943],[112,270,72,-0.7744404539010775],[112,270,73,-0.7740804735021433],[112,270,74,-0.7737227251294572],[112,270,75,-0.7733672144346606],[112,270,76,-0.7730139469817605],[112,270,77,-0.7726629282467212],[112,270,78,-0.7723141636170594],[112,270,79,-0.7719676583914331],[112,271,64,-0.7775675783404199],[112,271,65,-0.7771898603511929],[112,271,66,-0.7768143248422077],[112,271,67,-0.7764409781518468],[112,271,68,-0.7760698265341928],[112,271,69,-0.7757008761586256],[112,271,70,-0.775334133109406],[112,271,71,-0.7749696033852636],[112,271,72,-0.7746072928989823],[112,271,73,-0.774247207477001],[112,271,74,-0.7738893528589871],[112,271,75,-0.7735337346974379],[112,271,76,-0.7731803585572712],[112,271,77,-0.7728292299154162],[112,271,78,-0.7724803541604095],[112,271,79,-0.7721337365919844],[112,272,64,-0.7777353365490864],[112,272,65,-0.7773575247699639],[112,272,66,-0.7769818942392682],[112,272,67,-0.7766084512957873],[112,272,68,-0.7762372021940618],[112,272,69,-0.7758681531039832],[112,272,70,-0.7755013101103765],[112,272,71,-0.7751366792125891],[112,272,72,-0.7747742663240769],[112,272,73,-0.7744140772720042],[112,272,74,-0.7740561177968179],[112,272,75,-0.7737003935518495],[112,272,76,-0.7733469101029052],[112,272,77,-0.772995672927858],[112,272,78,-0.772646687416242],[112,272,79,-0.7722999588688444],[112,273,64,-0.7779032174941963],[112,273,65,-0.7775253133572055],[112,273,66,-0.7771495892322101],[112,273,67,-0.7767760514583792],[112,273,68,-0.7764047062906887],[112,273,69,-0.7760355598995173],[112,273,70,-0.7756686183702317],[112,273,71,-0.7753038877027743],[112,273,72,-0.7749413738112495],[112,273,73,-0.7745810825235248],[112,273,74,-0.7742230195808042],[112,273,75,-0.7738671906372311],[112,273,76,-0.7735136012594782],[112,273,77,-0.77316225692634],[112,273,78,-0.7728131630283276],[112,273,79,-0.7724663248672601],[112,274,64,-0.7780712207978264],[112,274,65,-0.7776932257364789],[112,274,66,-0.7773174094460775],[112,274,67,-0.7769437782661492],[112,274,68,-0.7765723384520808],[112,274,69,-0.7762030961747155],[112,274,70,-0.7758360575199381],[112,274,71,-0.7754712284882628],[112,274,72,-0.7751086149944203],[112,274,73,-0.774748222866958],[112,274,74,-0.7743900578478153],[112,274,75,-0.7740341255919246],[112,274,76,-0.7736804316668037],[112,274,77,-0.7733289815521462],[112,274,78,-0.7729797806394187],[112,274,79,-0.7726328342314511],[112,275,64,-0.7782393460811792],[112,275,65,-0.777861261530462],[112,275,66,-0.7774853545050229],[112,275,67,-0.7771116313447229],[112,275,68,-0.7767400983053361],[112,275,69,-0.7763707615581469],[112,275,70,-0.776003627189535],[112,275,71,-0.7756387012005631],[112,275,72,-0.7752759895065655],[112,275,73,-0.774915497936747],[112,275,74,-0.7745572322337595],[112,275,75,-0.7742011980533029],[112,275,76,-0.7738474009637172],[112,275,77,-0.7734958464455741],[112,275,78,-0.7731465398912737],[112,275,79,-0.772799486604635],[112,276,64,-0.7784075929645511],[112,276,65,-0.7780294203609176],[112,276,66,-0.7776534240322744],[112,276,67,-0.777279610318793],[112,276,68,-0.776907985476611],[112,276,69,-0.7765385556774305],[112,276,70,-0.7761713270081025],[112,276,71,-0.7758063054702158],[112,276,72,-0.775443496979685],[112,276,73,-0.7750829073663499],[112,276,74,-0.774724542373552],[112,276,75,-0.7743684076577368],[112,276,76,-0.7740145087880443],[112,276,77,-0.7736628512459026],[112,276,78,-0.7733134404246235],[112,276,79,-0.772966281628994],[112,277,64,-0.7785759610673935],[112,277,65,-0.7781977018487547],[112,277,66,-0.777821617650198],[112,277,67,-0.7774477148121812],[112,277,68,-0.7770759995911818],[112,277,69,-0.7767064781592963],[112,277,70,-0.7763391566038237],[112,277,71,-0.7759740409268557],[112,277,72,-0.7756111370448642],[112,277,73,-0.7752504507883016],[112,277,74,-0.7748919879011766],[112,277,75,-0.7745357540406574],[112,277,76,-0.7741817547766626],[112,277,77,-0.7738299955914544],[112,277,78,-0.7734804818792346],[112,277,79,-0.7731332189457367],[112,278,64,-0.7787444500082902],[112,278,65,-0.7783661056140059],[112,278,66,-0.7779899349802741],[112,278,67,-0.7776159444478149],[112,278,68,-0.7772441402734224],[112,278,69,-0.7768745286295631],[112,278,70,-0.7765071156039616],[112,278,71,-0.776141907199189],[112,278,72,-0.7757789093322516],[112,278,73,-0.7754181278341916],[112,278,74,-0.7750595684496626],[112,278,75,-0.7747032368365331],[112,278,76,-0.7743491385654783],[112,278,77,-0.7739972791195722],[112,278,78,-0.7736476638938854],[112,278,79,-0.7733002981950764],[112,279,64,-0.7789130594049355],[112,279,65,-0.7785346312758055],[112,279,66,-0.7781583756430759],[112,279,67,-0.7777842988477054],[112,279,68,-0.7774124071467807],[112,279,69,-0.7770427067131157],[112,279,70,-0.7766752036348362],[112,279,71,-0.7763099039149701],[112,279,72,-0.7759468134710352],[112,279,73,-0.7755859381346405],[112,279,74,-0.7752272836510621],[112,279,75,-0.7748708556788466],[112,279,76,-0.7745166597894033],[112,279,77,-0.7741647014665967],[112,279,78,-0.7738149861063438],[112,279,79,-0.7734675190162068],[112,280,64,-0.7790817888741947],[112,280,65,-0.7787032784524495],[112,280,66,-0.7783269392583297],[112,280,67,-0.7779527776330086],[112,280,68,-0.7775807998338418],[112,280,69,-0.7772110120339664],[112,280,70,-0.7768434203218868],[112,280,71,-0.7764780307010641],[112,280,72,-0.776114849089505],[112,280,73,-0.7757538813193623],[112,280,74,-0.7753951331365121],[112,280,75,-0.7750386102001569],[112,280,76,-0.7746843180824177],[112,280,77,-0.7743322622679274],[112,280,78,-0.7739824481534284],[112,280,79,-0.7736348810473644],[112,281,64,-0.7792506380320728],[112,281,65,-0.7788720467613652],[112,281,66,-0.7784956254448843],[112,281,67,-0.7781213804239935],[112,281,68,-0.7777493179562939],[112,281,69,-0.7773794442152225],[112,281,70,-0.7770117652896388],[112,281,71,-0.7766462871834139],[112,281,72,-0.77628301581502],[112,281,73,-0.7759219570171315],[112,281,74,-0.7755631165362017],[112,281,75,-0.7752065000320664],[112,281,76,-0.7748521130775365],[112,281,77,-0.7744999611579915],[112,281,78,-0.7741500496709767],[112,281,79,-0.7738023839257963],[112,282,64,-0.7794196064937388],[112,282,65,-0.7790409358191346],[112,282,66,-0.7786644338207337],[112,282,67,-0.778290106840066],[112,282,68,-0.7779179611349543],[112,282,69,-0.7775480028791116],[112,282,70,-0.777180238161729],[112,282,71,-0.7768146729870646],[112,282,72,-0.7764513132740334],[112,282,73,-0.7760901648558081],[112,282,74,-0.7757312334793967],[112,282,75,-0.7753745248052462],[112,282,76,-0.7750200444068348],[112,282,77,-0.7746677977702667],[112,282,78,-0.7743177902938687],[112,282,79,-0.7739700272877835],[112,283,64,-0.7795886938734928],[112,283,65,-0.7792099452414624],[112,283,66,-0.7788333640029863],[112,283,67,-0.7784589564997376],[112,283,68,-0.7780867289897362],[112,283,69,-0.7777166876469482],[112,283,70,-0.7773488385608726],[112,283,71,-0.7769831877361315],[112,283,72,-0.7766197410920591],[112,283,73,-0.7762585044623043],[112,283,74,-0.7758994835944067],[112,283,75,-0.7755426841494023],[112,283,76,-0.7751881117014146],[112,283,77,-0.7748357717372498],[112,283,78,-0.774485669655995],[112,283,79,-0.7741378107686097],[112,284,64,-0.7797578997848288],[112,284,65,-0.7793790746432372],[112,284,66,-0.7790024156079257],[112,284,67,-0.7786279290206857],[112,284,68,-0.7782556211397106],[112,284,69,-0.7778854981391959],[112,284,70,-0.7775175661089252],[112,284,71,-0.7771518310538611],[112,284,72,-0.7767882988937345],[112,284,73,-0.7764269754626469],[112,284,74,-0.7760678665086478],[112,284,75,-0.7757109776933386],[112,284,76,-0.7753563145914666],[112,284,77,-0.7750038826905183],[112,284,78,-0.7746536873903183],[112,284,79,-0.7743057340026217],[112,285,64,-0.7799272238404105],[112,285,65,-0.7795483236385098],[112,285,66,-0.7791715882509881],[112,285,67,-0.7787970240197315],[112,285,68,-0.7784246372030833],[112,285,69,-0.7780544339754445],[112,285,70,-0.7776864204268599],[112,285,71,-0.7773206025626092],[112,285,72,-0.776956986302797],[112,285,73,-0.7765955774819546],[112,285,74,-0.7762363818486183],[112,285,75,-0.7758794050649336],[112,285,76,-0.775524652706248],[112,285,77,-0.7751721302607067],[112,285,78,-0.7748218431288503],[112,285,79,-0.7744737966232078],[112,286,64,-0.7800966656520503],[112,286,65,-0.7797176918404695],[112,286,66,-0.7793408815467399],[112,286,67,-0.7789662411128178],[112,286,68,-0.7785937767971728],[112,286,69,-0.7782234947743875],[112,286,70,-0.7778554011347443],[112,286,71,-0.7774895018838172],[112,286,72,-0.777125802942061],[112,286,73,-0.7767643101444144],[112,286,74,-0.7764050292398774],[112,286,75,-0.7760479658911167],[112,286,76,-0.7756931256740587],[112,286,77,-0.7753405140774847],[112,286,78,-0.7749901365026293],[112,286,79,-0.7746419982627738],[112,287,64,-0.7802662248307692],[112,287,65,-0.779887178861506],[112,287,66,-0.7795102951089387],[112,287,67,-0.7791355799150697],[112,287,68,-0.778763039538471],[112,287,69,-0.778392680153883],[112,287,70,-0.7780245078518027],[112,287,71,-0.7776585286380744],[112,287,72,-0.7772947484334806],[112,287,73,-0.7769331730733438],[112,287,74,-0.7765738083071054],[112,287,75,-0.7762166597979312],[112,287,76,-0.7758617331223034],[112,287,77,-0.7755090337696179],[112,287,78,-0.775158567141781],[112,287,79,-0.774810338552805],[112,288,64,-0.7804359009867753],[112,288,65,-0.780056784313187],[112,288,66,-0.779679828550511],[112,288,67,-0.7793050400407724],[112,288,68,-0.7789324250426211],[112,288,69,-0.7785619897309318],[112,288,70,-0.7781937401963925],[112,288,71,-0.7778276824450949],[112,288,72,-0.7774638223981253],[112,288,73,-0.7771021658911677],[112,288,74,-0.7767427186740822],[112,288,75,-0.7763854864105104],[112,288,76,-0.776030474677469],[112,288,77,-0.7756776889649455],[112,288,78,-0.7753271346754966],[112,288,79,-0.7749788171238436],[112,289,64,-0.7806056937294408],[112,289,65,-0.7802265078062349],[112,289,66,-0.7798494814835295],[112,289,67,-0.7794746211033479],[112,289,68,-0.7791019329243942],[112,289,69,-0.7787314231216541],[112,289,70,-0.7783630977859822],[112,289,71,-0.7779969629236944],[112,289,72,-0.777633024456158],[112,289,73,-0.7772712882193955],[112,289,74,-0.7769117599636628],[112,289,75,-0.7765544453530551],[112,289,76,-0.7761993499651006],[112,289,77,-0.7758464792903568],[112,289,78,-0.7754958387320088],[112,289,79,-0.7751474336054649],[112,290,64,-0.7807756026673628],[112,290,65,-0.7803963489505886],[112,290,66,-0.7800192535192743],[112,290,67,-0.7796443227154173],[112,290,68,-0.7792715627977519],[112,290,69,-0.7789009799413508],[112,290,70,-0.7785325802372121],[112,290,71,-0.7781663696918524],[112,290,72,-0.7778023542268968],[112,290,73,-0.7774405396786832],[112,290,74,-0.7770809317978405],[112,290,75,-0.7767235362488951],[112,290,76,-0.7763683586098644],[112,290,77,-0.7760154043718535],[112,290,78,-0.775664678938654],[112,290,79,-0.7753161876263396],[112,291,64,-0.7809456274083324],[112,291,65,-0.7805663073553715],[112,291,66,-0.7801891442682007],[112,291,67,-0.7798141444887676],[112,291,68,-0.7794413142758128],[112,291,69,-0.7790706598044717],[112,291,70,-0.7787021871658626],[112,291,71,-0.7783359023666793],[112,291,72,-0.7779718113287818],[112,291,73,-0.7776099198888001],[112,291,74,-0.7772502337977135],[112,291,75,-0.7768927587204568],[112,291,76,-0.7765375002355143],[112,291,77,-0.7761844638345167],[112,291,78,-0.77583365492184],[112,291,79,-0.7754850788142013],[112,292,64,-0.7811157675593573],[112,292,65,-0.7807363826289151],[112,292,66,-0.780359153339964],[112,292,67,-0.779984086034377],[112,292,68,-0.7796111869708772],[112,292,69,-0.7792404623246394],[112,292,70,-0.7788719181868783],[112,292,71,-0.7785055605644413],[112,292,72,-0.7781413953794001],[112,292,73,-0.7777794284686539],[112,292,74,-0.7774196655835095],[112,292,75,-0.7770621123892875],[112,292,76,-0.7767067744649168],[112,292,77,-0.7763536573025313],[112,292,78,-0.7760027663070695],[112,292,79,-0.7756541067958703],[112,293,64,-0.7812860227266314],[112,293,65,-0.7809065743787277],[112,293,66,-0.7805292803433862],[112,293,67,-0.7801541469623816],[112,293,68,-0.7797811804943953],[112,293,69,-0.7794103871146174],[112,293,70,-0.7790417729143355],[112,293,71,-0.7786753439005274],[112,293,72,-0.7783111059954528],[112,293,73,-0.7779490650362575],[112,293,74,-0.7775892267745529],[112,293,75,-0.7772315968760226],[112,293,76,-0.7768761809200179],[112,293,77,-0.7765229843991533],[112,293,78,-0.7761720127189082],[112,293,79,-0.7758232711972214],[112,294,64,-0.7814563925155948],[112,294,65,-0.7810768822115549],[112,294,66,-0.7806995248865186],[112,294,67,-0.7803243268821376],[112,294,68,-0.7799512944570279],[112,294,69,-0.7795804337863711],[112,294,70,-0.7792117509615039],[112,294,71,-0.778845251989511],[112,294,72,-0.7784809427928173],[112,294,73,-0.7781188292087915],[112,294,74,-0.777758916989327],[112,294,75,-0.777401211800448],[112,294,76,-0.777045719221905],[112,294,77,-0.7766924447467721],[112,294,78,-0.7763413937810465],[112,294,79,-0.7759925716432451],[112,295,64,-0.7816268765309119],[112,295,65,-0.7812473057333575],[112,295,66,-0.780869886576618],[112,295,67,-0.7804946254021983],[112,295,68,-0.7801215284686243],[112,295,69,-0.7797506019510453],[112,295,70,-0.7793818519408237],[112,295,71,-0.7790152844451276],[112,295,72,-0.7786509053865234],[112,295,73,-0.7782887206025804],[112,295,74,-0.7779287358454504],[112,295,75,-0.7775709567814759],[112,295,76,-0.7772153889907845],[112,295,77,-0.7768620379668866],[112,295,78,-0.7765109091162758],[112,295,79,-0.7761620077580255],[112,296,64,-0.7817974743764481],[112,296,65,-0.7814178445492885],[112,296,66,-0.7810403650201251],[112,296,67,-0.780665042130291],[112,296,68,-0.7802918821381987],[112,296,69,-0.7799208912189411],[112,296,70,-0.7795520754638825],[112,296,71,-0.779185440880251],[112,296,72,-0.7788209933907314],[112,296,73,-0.7784587388330698],[112,296,74,-0.7780986829596546],[112,296,75,-0.7777408314371229],[112,296,76,-0.7773851898459573],[112,296,77,-0.7770317636800823],[112,296,78,-0.776680558346466],[112,296,79,-0.7763315791647158],[112,297,64,-0.7819681856553315],[112,297,65,-0.7815884982637546],[112,297,66,-0.7812109598227245],[112,297,67,-0.780835576673379],[112,297,68,-0.7804623550739923],[112,297,69,-0.7800913011995778],[112,297,70,-0.7797224211414774],[112,297,71,-0.7793557209069559],[112,297,72,-0.7789912064187929],[112,297,73,-0.7786288835148889],[112,297,74,-0.7782687579478451],[112,297,75,-0.7779108353845713],[112,297,76,-0.777555121405882],[112,297,77,-0.7772016215060938],[112,297,78,-0.776850341092627],[112,297,79,-0.7765012854856015],[112,298,64,-0.7821390099699211],[112,298,65,-0.7817592664803839],[112,298,66,-0.7813816705893137],[112,298,67,-0.7810062286376288],[112,298,68,-0.7806329468834411],[112,298,69,-0.7802618315016601],[112,298,70,-0.7798928885835819],[112,298,71,-0.7795261241364844],[112,298,72,-0.7791615440832191],[112,298,73,-0.7787991542618169],[112,298,74,-0.7784389604250694],[112,298,75,-0.7780809682401364],[112,298,76,-0.7777251832881416],[112,298,77,-0.7773716110637715],[112,298,78,-0.7770202569748763],[112,298,79,-0.7766711263420666],[112,299,64,-0.78230994692183],[112,299,65,-0.7819301488020496],[112,299,66,-0.7815524969240266],[112,299,67,-0.7811769976284346],[112,299,68,-0.7808036571731993],[112,299,69,-0.7804324817331023],[112,299,70,-0.7800634773993707],[112,299,71,-0.7796966501792711],[112,299,72,-0.779332005995704],[112,299,73,-0.7789695506868077],[112,299,74,-0.778609290005541],[112,299,75,-0.7782512296192907],[112,299,76,-0.7778953751094677],[112,299,77,-0.7775417319711059],[112,299,78,-0.777190305612463],[112,299,79,-0.7768411013546185],[112,300,64,-0.7824809961118937],[112,300,65,-0.782101144830839],[112,300,66,-0.7817234384302013],[112,300,67,-0.7813478832503857],[112,300,68,-0.7809744855491076],[112,300,69,-0.7806032515009966],[112,300,70,-0.7802341871971865],[112,300,71,-0.7798672986449102],[112,300,72,-0.7795025917670926],[112,300,73,-0.779140072401957],[112,300,74,-0.7787797463026064],[112,300,75,-0.7784216191366315],[112,300,76,-0.7780656964857081],[112,300,77,-0.7777119838451947],[112,300,78,-0.7773604866237349],[112,300,79,-0.7770112101428549],[112,301,64,-0.7826521571402317],[112,301,65,-0.7822722541681136],[112,301,66,-0.7818944947104418],[112,301,67,-0.7815188851073283],[112,301,68,-0.7811454316162543],[112,301,69,-0.7807741404116735],[112,301,70,-0.7804050175846027],[112,301,71,-0.7800380691422168],[112,301,72,-0.7796733010074427],[112,301,73,-0.7793107190185647],[112,301,74,-0.7789503289288073],[112,301,75,-0.7785921364059426],[112,301,76,-0.7782361470318881],[112,301,77,-0.7778823663023051],[112,301,78,-0.7775307996262006],[112,301,79,-0.7771814523255258],[112,302,64,-0.7828234296062244],[112,302,65,-0.7824434764144866],[112,302,66,-0.7820656653665944],[112,302,67,-0.7816900028023424],[112,302,68,-0.7813164949789528],[112,302,69,-0.7809451480706797],[112,302,70,-0.780575968168399],[112,302,71,-0.7802089612792045],[112,302,72,-0.7798441333260011],[112,302,73,-0.7794814901471112],[112,302,74,-0.7791210374958575],[112,302,75,-0.7787627810401709],[112,302,76,-0.778406726362188],[112,302,77,-0.7780528789578505],[112,302,78,-0.7777012442365066],[112,302,79,-0.77735182752051],[112,303,64,-0.7829948131084902],[112,303,65,-0.7826148111698008],[112,303,66,-0.7822369499997259],[112,303,67,-0.7818612359377186],[112,303,68,-0.7814876752407184],[112,303,69,-0.781116274082755],[112,303,70,-0.7807470385545401],[112,303,71,-0.7803799746630622],[112,303,72,-0.780015088331181],[112,303,73,-0.7796523853972342],[112,303,74,-0.7792918716146195],[112,303,75,-0.7789335526514034],[112,303,76,-0.7785774340899194],[112,303,77,-0.7782235214263669],[112,303,78,-0.7778718200704131],[112,303,79,-0.7775223353447925],[112,304,64,-0.7831663072449471],[112,304,65,-0.7827862580331889],[112,304,66,-0.7824083482101845],[112,304,67,-0.7820325841150205],[112,304,68,-0.7816589720043295],[112,304,69,-0.7812875180518934],[112,304,70,-0.7809182283482353],[112,304,71,-0.7805511089002153],[112,304,72,-0.7801861656306242],[112,304,73,-0.7798234043777913],[112,304,74,-0.7794628308951664],[112,304,75,-0.7791044508509294],[112,304,76,-0.7787482698275873],[112,304,77,-0.7783942933215748],[112,304,78,-0.7780425267428567],[112,304,79,-0.7776929754145256],[112,305,64,-0.7833379116127801],[112,305,65,-0.7829578166030419],[112,305,66,-0.7825798595975668],[112,305,67,-0.7822040469350513],[112,305,68,-0.7818303848717961],[112,305,69,-0.7814588795813114],[112,305,70,-0.7810895371539082],[112,305,71,-0.7807223635962938],[112,305,72,-0.7803573648311672],[112,305,73,-0.7799945466968261],[112,305,74,-0.7796339149467495],[112,305,75,-0.7792754752492068],[112,305,76,-0.7789192331868571],[112,305,77,-0.7785651942563476],[112,305,78,-0.7782133638679176],[112,305,79,-0.7778637473449965],[112,306,64,-0.7835096258084661],[112,306,65,-0.7831294864770331],[112,306,66,-0.7827514837607433],[112,306,67,-0.7823756239978782],[112,306,68,-0.782001913444383],[112,306,69,-0.7816303582734715],[112,306,70,-0.7812609645752187],[112,306,71,-0.7808937383561558],[112,306,72,-0.7805286855388667],[112,306,73,-0.7801658119615936],[112,306,74,-0.7798051233778216],[112,306,75,-0.7794466254558876],[112,306,76,-0.7790903237785791],[112,306,77,-0.7787362238427338],[112,306,78,-0.7783843310588432],[112,306,79,-0.7780346507506517],[112,307,64,-0.7836814494277403],[112,307,65,-0.7833012672520854],[112,307,66,-0.7829232202978249],[112,307,67,-0.7825473149028004],[112,307,68,-0.7821735573225774],[112,307,69,-0.7818019537300498],[112,307,70,-0.7814325102150319],[112,307,71,-0.7810652327838559],[112,307,72,-0.780700127358966],[112,307,73,-0.7803371997785267],[112,307,74,-0.7799764557960055],[112,307,75,-0.7796179010797841],[112,307,76,-0.7792615412127555],[112,307,77,-0.7789073816919256],[112,307,78,-0.7785554279280158],[112,307,79,-0.7782056852450631],[112,308,64,-0.7838533820656587],[112,308,65,-0.7834731585244332],[112,308,66,-0.7830950688062246],[112,308,67,-0.7827191192484102],[112,308,68,-0.7823453161061513],[112,308,69,-0.7819736655519975],[112,308,70,-0.7816041736754794],[112,308,71,-0.7812368464827054],[112,308,72,-0.7808716898959573],[112,308,73,-0.7805087097532979],[112,308,74,-0.7801479118081549],[112,308,75,-0.7797893017289308],[112,308,76,-0.7794328850986022],[112,308,77,-0.7790786674143202],[112,308,78,-0.7787266540870142],[112,308,79,-0.7783768504409914],[112,309,64,-0.7840254233165745],[112,309,65,-0.7836451598895993],[112,309,66,-0.7832670288826348],[112,309,67,-0.78289103663257],[112,309,68,-0.7825171893941375],[112,309,69,-0.7821454933395184],[112,309,70,-0.7817759545579357],[112,309,71,-0.7814085790552503],[112,309,72,-0.7810433727535582],[112,309,73,-0.780680341490797],[112,309,74,-0.7803194910203312],[112,309,75,-0.7799608270105617],[112,309,76,-0.7796043550445257],[112,309,77,-0.7792500806194971],[112,309,78,-0.7788980091465906],[112,309,79,-0.7785481459503616],[112,310,64,-0.7841975727741157],[112,310,65,-0.7838172709423716],[112,310,66,-0.7834391001230042],[112,310,67,-0.7830630666523895],[112,310,68,-0.7826891767848069],[112,310,69,-0.7823174366920452],[112,310,70,-0.7819478524629955],[112,310,71,-0.7815804301032481],[112,310,72,-0.7812151755346886],[112,310,73,-0.780852094595107],[112,310,74,-0.7804911930377808],[112,310,75,-0.7801324765310867],[112,310,76,-0.7797759506580997],[112,310,77,-0.7794216209161937],[112,310,78,-0.7790694927166467],[112,310,79,-0.7787195713842402],[112,311,64,-0.7843698300312463],[112,311,65,-0.7839894912768651],[112,311,66,-0.7836112821225991],[112,311,67,-0.7832352089042868],[112,311,68,-0.7828612778757301],[112,311,69,-0.7824894952083015],[112,311,70,-0.7821198669905356],[112,311,71,-0.7817523992277285],[112,311,72,-0.7813870978415326],[112,311,73,-0.7810239686695659],[112,311,74,-0.7806630174649966],[112,311,75,-0.7803042498961537],[112,311,76,-0.779947671546127],[112,311,77,-0.7795932879123684],[112,311,78,-0.7792411044062965],[112,311,79,-0.7788911263528968],[112,312,64,-0.7845421946802333],[112,312,65,-0.7841618204864891],[112,312,66,-0.7837835744759715],[112,312,67,-0.7834074629839567],[112,312,68,-0.7830334922637453],[112,312,69,-0.7826616684862686],[112,312,70,-0.7822919977396819],[112,312,71,-0.7819244860289623],[112,312,72,-0.7815591392755057],[112,312,73,-0.7811959633167348],[112,312,74,-0.7808349639056851],[112,312,75,-0.7804761467106149],[112,312,76,-0.7801195173146065],[112,312,77,-0.7797650812151669],[112,312,78,-0.7794128438238327],[112,312,79,-0.7790628104657715],[112,313,64,-0.7847146663126722],[112,313,65,-0.7843342581639713],[112,313,66,-0.7839559767769819],[112,313,67,-0.7835798284863937],[112,313,68,-0.7832058195449813],[112,313,69,-0.7828339561232107],[112,313,70,-0.7824642443088333],[112,313,71,-0.7820966901064843],[112,313,72,-0.7817312994372787],[112,313,73,-0.7813680781384211],[112,313,74,-0.7810070319627906],[112,313,75,-0.7806481665785525],[112,313,76,-0.780291487568758],[112,313,77,-0.7799370004309467],[112,313,78,-0.7795847105767513],[112,313,79,-0.779234623331499],[112,314,64,-0.784887244519453],[112,314,65,-0.7845068039013254],[112,314,66,-0.7841284886187686],[112,314,67,-0.7837523050058608],[112,314,68,-0.7833782593148259],[112,314,69,-0.783006357715641],[112,314,70,-0.7826366062956297],[112,314,71,-0.7822690110590607],[112,314,72,-0.7819035779267454],[112,314,73,-0.781540312735646],[112,314,74,-0.7811792212384628],[112,314,75,-0.7808203091032442],[112,314,76,-0.7804635819129881],[112,314,77,-0.7801090451652439],[112,314,78,-0.7797567042717182],[112,314,79,-0.779406564557875],[112,315,64,-0.7850599288908224],[112,315,65,-0.7846794572899127],[112,315,66,-0.7843011095938075],[112,315,67,-0.7839248921359492],[112,315,68,-0.783550811167987],[112,315,69,-0.7831788728593843],[112,315,70,-0.7828090832970127],[112,315,71,-0.7824414484847515],[112,315,72,-0.7820759743430836],[112,315,73,-0.7817126667087065],[112,315,74,-0.7813515313341177],[112,315,75,-0.780992573887226],[112,315,76,-0.7806357999509531],[112,315,77,-0.7802812150228357],[112,315,78,-0.7799288245146312],[112,315,79,-0.779578633751919],[112,316,64,-0.785232719016361],[112,316,65,-0.7848522179204187],[112,316,66,-0.7844738392938901],[112,316,67,-0.7840975894695571],[112,316,68,-0.7837234746984696],[112,316,69,-0.7833515011495531],[112,316,70,-0.7829816749092037],[112,316,71,-0.7826140019808863],[112,316,72,-0.7822484882847328],[112,316,73,-0.781885139657152],[112,316,74,-0.7815239618504152],[112,316,75,-0.7811649605322688],[112,316,76,-0.7808081412855353],[112,316,77,-0.7804535096077161],[112,316,78,-0.780101070910597],[112,316,79,-0.7797508305198508],[112,317,64,-0.7854056144849598],[112,317,65,-0.7850250853828303],[112,317,66,-0.7846466773101],[112,317,67,-0.7842703965988653],[112,317,68,-0.7838962494995527],[112,317,69,-0.7835242421805253],[112,317,70,-0.7831543807276793],[112,317,71,-0.7827866711440421],[112,317,72,-0.7824211193493704],[112,317,73,-0.7820577311797606],[112,317,74,-0.7816965123872351],[112,317,75,-0.7813374686393546],[112,317,76,-0.7809806055188195],[112,317,77,-0.780625928523073],[112,317,78,-0.7802734430639074],[112,317,79,-0.779923154467066],[112,318,64,-0.7855786148848817],[112,318,65,-0.7851980592664973],[112,318,66,-0.7848196232328745],[112,318,67,-0.7844433131153996],[112,318,68,-0.7840691351638507],[112,318,69,-0.7836970955460049],[112,318,70,-0.783327200347234],[112,318,71,-0.7829594555701042],[112,318,72,-0.7825938671339732],[112,318,73,-0.7822304408746017],[112,318,74,-0.7818691825437396],[112,318,75,-0.7815100978087389],[112,318,76,-0.7811531922521551],[112,318,77,-0.7807984713713507],[112,318,78,-0.7804459405781015],[112,318,79,-0.7800956051981992],[112,319,64,-0.7857517198037385],[112,319,65,-0.7853711391601093],[112,319,66,-0.7849926766519815],[112,319,67,-0.7846163386100067],[112,319,68,-0.7842421312832903],[112,319,69,-0.7838700608389991],[112,319,70,-0.7835001333619567],[112,319,71,-0.7831323548542433],[112,319,72,-0.7827667312347945],[112,319,73,-0.7824032683390117],[112,319,74,-0.7820419719183492],[112,319,75,-0.7816828476399269],[112,319,76,-0.7813259010861325],[112,319,77,-0.7809711377542251],[112,319,78,-0.7806185630559417],[112,319,79,-0.7802681823170999],[113,-64,64,-0.7300430039878767],[113,-64,65,-0.7297635231758827],[113,-64,66,-0.7294864154511587],[113,-64,67,-0.729211685911578],[113,-64,68,-0.7289393395625647],[113,-64,69,-0.7286693813166825],[113,-64,70,-0.7284018159932086],[113,-64,71,-0.7281366483177136],[113,-64,72,-0.7278738829216365],[113,-64,73,-0.7276135243418778],[113,-64,74,-0.7273555770203621],[113,-64,75,-0.7271000453036308],[113,-64,76,-0.7268469334424239],[113,-64,77,-0.7265962455912609],[113,-64,78,-0.7263479858080273],[113,-64,79,-0.7261021580535543],[113,-63,64,-0.7301575881031085],[113,-63,65,-0.7298776663416447],[113,-63,66,-0.7296001176232395],[113,-63,67,-0.7293249470518651],[113,-63,68,-0.7290521596390444],[113,-63,69,-0.728781760303441],[113,-63,70,-0.7285137538704332],[113,-63,71,-0.7282481450716919],[113,-63,72,-0.7279849385447574],[113,-63,73,-0.7277241388326319],[113,-63,74,-0.7274657503833408],[113,-63,75,-0.7272097775495272],[113,-63,76,-0.7269562245880318],[113,-63,77,-0.7267050956594746],[113,-63,78,-0.7264563948278413],[113,-63,79,-0.7262101260600626],[113,-62,64,-0.730272332917276],[113,-62,65,-0.7299919707285715],[113,-62,66,-0.7297139815371991],[113,-62,67,-0.7294383704532221],[113,-62,68,-0.729165142494255],[113,-62,69,-0.728894302585054],[113,-62,70,-0.7286258555570904],[113,-62,71,-0.7283598061481282],[113,-62,72,-0.7280961590018027],[113,-62,73,-0.7278349186672093],[113,-62,74,-0.7275760895984681],[113,-62,75,-0.7273196761543163],[113,-62,76,-0.7270656825976886],[113,-62,77,-0.726814113095299],[113,-62,78,-0.7265649717172263],[113,-62,79,-0.7263182624364941],[113,-61,64,-0.7303872387056088],[113,-61,65,-0.730106436615509],[113,-61,66,-0.7298280074754815],[113,-61,67,-0.7295519564016724],[113,-61,68,-0.7292782884177805],[113,-61,69,-0.7290070084546469],[113,-61,70,-0.7287381213498284],[113,-61,71,-0.7284716318471756],[113,-61,72,-0.7282075445964094],[113,-61,73,-0.7279458641527131],[113,-61,74,-0.7276865949762936],[113,-61,75,-0.7274297414319751],[113,-61,76,-0.7271753077887797],[113,-61,77,-0.7269232982195081],[113,-61,78,-0.7266737168003256],[113,-61,79,-0.7264265675103417],[113,-60,64,-0.7305023057401452],[113,-60,65,-0.7302210642781093],[113,-60,66,-0.7299421957173337],[113,-60,67,-0.7296657051800397],[113,-60,68,-0.7293915976960025],[113,-60,69,-0.7291198782021404],[113,-60,70,-0.7288505515420882],[113,-60,71,-0.7285836224657755],[113,-60,72,-0.7283190956290021],[113,-60,73,-0.7280569755930312],[113,-60,74,-0.7277972668241494],[113,-60,75,-0.7275399736932611],[113,-60,76,-0.7272851004754681],[113,-60,77,-0.7270326513496514],[113,-60,78,-0.7267826303980558],[113,-60,79,-0.7265350416058705],[113,-59,64,-0.7306175342897202],[113,-59,65,-0.7303358539888182],[113,-59,66,-0.7300565465387937],[113,-59,67,-0.7297796170679356],[113,-59,68,-0.7295050706120876],[113,-59,69,-0.7292329121142376],[113,-59,70,-0.7289631464240907],[113,-59,71,-0.7286957782976474],[113,-59,72,-0.7284308123967802],[113,-59,73,-0.7281682532888236],[113,-59,74,-0.7279081054461374],[113,-59,75,-0.7276503732456987],[113,-59,76,-0.7273950609686823],[113,-59,77,-0.7271421728000419],[113,-59,78,-0.7268917128280953],[113,-59,79,-0.7266436850441036],[113,-58,64,-0.7307329246200143],[113,-58,65,-0.7304508060169239],[113,-58,66,-0.7301710602127394],[113,-58,67,-0.7298936923418088],[113,-58,68,-0.7296187074460367],[113,-58,69,-0.7293461104744727],[113,-58,70,-0.7290759062828849],[113,-58,71,-0.7288080996333373],[113,-58,72,-0.7285426951937664],[113,-58,73,-0.7282796975375718],[113,-58,74,-0.7280191111431786],[113,-58,75,-0.7277609403936294],[113,-58,76,-0.7275051895761647],[113,-58,77,-0.7272518628818043],[113,-58,78,-0.7270009644049314],[113,-58,79,-0.726752498142873],[113,-57,64,-0.730848476993535],[113,-57,65,-0.7305659206285389],[113,-57,66,-0.7302857370088692],[113,-57,67,-0.7300079312749259],[113,-57,68,-0.729732508474666],[113,-57,69,-0.7294594735631931],[113,-57,70,-0.7291888314023303],[113,-57,71,-0.7289205867601977],[113,-57,72,-0.7286547443107882],[113,-57,73,-0.7283913086335593],[113,-57,74,-0.7281302842129933],[113,-57,75,-0.7278716754381915],[113,-57,76,-0.7276154866024531],[113,-57,77,-0.7273617219028562],[113,-57,78,-0.7271103854398429],[113,-57,79,-0.7268614812167986],[113,-56,64,-0.7309641916696388],[113,-56,65,-0.7306811980866212],[113,-56,66,-0.730400577193725],[113,-56,67,-0.7301223341373935],[113,-56,68,-0.7298464739716284],[113,-56,69,-0.7295730016575798],[113,-56,70,-0.7293019220631176],[113,-56,71,-0.7290332399624102],[113,-56,72,-0.7287669600354997],[113,-56,73,-0.7285030868678931],[113,-56,74,-0.7282416249501236],[113,-56,75,-0.7279825786773431],[113,-56,76,-0.7277259523489017],[113,-56,77,-0.7274717501679294],[113,-56,78,-0.7272199762409199],[113,-56,79,-0.7269706345773101],[113,-55,64,-0.7310800689045116],[113,-55,65,-0.7307966386509556],[113,-55,66,-0.7305155810306717],[113,-55,67,-0.7302369011961387],[113,-55,68,-0.7299606042073952],[113,-55,69,-0.7296866950316292],[113,-55,70,-0.7294151785427501],[113,-55,71,-0.7291460595209664],[113,-55,72,-0.7288793426523619],[113,-55,73,-0.7286150325284855],[113,-55,74,-0.7283531336459133],[113,-55,75,-0.7280936504058405],[113,-55,76,-0.7278365871136618],[113,-55,77,-0.7275819479785509],[113,-55,78,-0.7273297371130458],[113,-55,79,-0.7270799585326283],[113,-54,64,-0.7311961089512188],[113,-54,65,-0.7309122425782026],[113,-54,66,-0.7306307487799476],[113,-54,67,-0.7303516327149591],[113,-54,68,-0.7300748994493046],[113,-54,69,-0.729800553956202],[113,-54,70,-0.7295286011155921],[113,-54,71,-0.7292590457137164],[113,-54,72,-0.7289918924426915],[113,-54,73,-0.7287271459001013],[113,-54,74,-0.7284648105885572],[113,-54,75,-0.7282048909152901],[113,-54,76,-0.7279473911917312],[113,-54,77,-0.7276923156330912],[113,-54,78,-0.7274396683579455],[113,-54,79,-0.7271894533878127],[113,-53,64,-0.731312312059692],[113,-53,65,-0.7310280101218869],[113,-53,66,-0.7307460806986513],[113,-53,67,-0.7304665289545095],[113,-53,68,-0.7301893599615494],[113,-53,69,-0.7299145786990108],[113,-53,70,-0.7296421900528579],[113,-53,71,-0.7293721988153565],[113,-53,72,-0.7291046096846496],[113,-53,73,-0.7288394272643474],[113,-53,74,-0.7285766560630886],[113,-53,75,-0.7283163004941334],[113,-53,76,-0.7280583648749412],[113,-53,77,-0.7278028534267525],[113,-53,78,-0.7275497702741726],[113,-53,79,-0.7272991194447502],[113,-52,64,-0.7314286784767178],[113,-52,65,-0.7311439415323842],[113,-52,66,-0.7308615770407301],[113,-52,67,-0.7305815901722903],[113,-52,68,-0.7303039860051649],[113,-52,69,-0.7300287695246075],[113,-52,70,-0.7297559456225977],[113,-52,71,-0.7294855190974177],[113,-52,72,-0.7292174946532282],[113,-52,73,-0.7289518768996586],[113,-52,74,-0.7286886703513675],[113,-52,75,-0.7284278794276358],[113,-52,76,-0.7281695084519443],[113,-52,77,-0.7279135616515556],[113,-52,78,-0.7276600431570974],[113,-52,79,-0.7274089570021416],[113,-51,64,-0.7315452084459863],[113,-51,65,-0.7312600370569707],[113,-51,66,-0.7309772380570285],[113,-51,67,-0.7306968166226961],[113,-51,68,-0.730418777838078],[113,-51,69,-0.7301431266944328],[113,-51,70,-0.7298698680897475],[113,-51,71,-0.7295990068283129],[113,-51,72,-0.7293305476202994],[113,-51,73,-0.7290644950813476],[113,-51,74,-0.7288008537321282],[113,-51,75,-0.7285396279979349],[113,-51,76,-0.7282808222082628],[113,-51,77,-0.7280244405963887],[113,-51,78,-0.7277704872989555],[113,-51,79,-0.7275189663555508],[113,-50,64,-0.7316619022080726],[113,-50,65,-0.7313762969398048],[113,-50,66,-0.7310930639952696],[113,-50,67,-0.7308122085569975],[113,-50,68,-0.7305337357150878],[113,-50,69,-0.730257650466797],[113,-50,70,-0.7299839577161105],[113,-50,71,-0.7297126622733197],[113,-50,72,-0.7294437688545969],[113,-50,73,-0.7291772820815857],[113,-50,74,-0.7289132064809611],[113,-50,75,-0.7286515464840221],[113,-50,76,-0.72839230642627],[113,-50,77,-0.7281354905469887],[113,-50,78,-0.7278811029888286],[113,-50,79,-0.7276291477973853],[113,-49,64,-0.7317787600004583],[113,-49,65,-0.7314927214219478],[113,-49,66,-0.731209055100077],[113,-49,67,-0.7309277662233616],[113,-49,68,-0.730648859887888],[113,-49,69,-0.7303723410969012],[113,-49,70,-0.7300982147603776],[113,-49,71,-0.7298264856946007],[113,-49,72,-0.7295571586217365],[113,-49,73,-0.7292902381694237],[113,-49,74,-0.7290257288703339],[113,-49,75,-0.7287636351617631],[113,-49,76,-0.7285039613852113],[113,-49,77,-0.7282467117859617],[113,-49,78,-0.727991890512665],[113,-49,79,-0.7277395016169176],[113,-48,64,-0.7318957820575124],[113,-48,65,-0.7316093107413452],[113,-48,66,-0.731325211612955],[113,-48,67,-0.7310434898668339],[113,-48,68,-0.7307641506050466],[113,-48,69,-0.7304871988368189],[113,-48,70,-0.7302126394781091],[113,-48,71,-0.7299404773511848],[113,-48,72,-0.7296707171841978],[113,-48,73,-0.7294033636107735],[113,-48,74,-0.729138421169572],[113,-48,75,-0.7288758943038789],[113,-48,76,-0.7286157873611848],[113,-48,77,-0.7283581045927648],[113,-48,78,-0.7281028501532618],[113,-48,79,-0.7278500281002656],[113,-47,64,-0.732012968610541],[113,-47,65,-0.7317260651328765],[113,-47,66,-0.7314415337723386],[113,-47,67,-0.7311593797293868],[113,-47,68,-0.7308796081120563],[113,-47,69,-0.7306022239355444],[113,-47,70,-0.7303272321217833],[113,-47,71,-0.7300546374990163],[113,-47,72,-0.7297844448013726],[113,-47,73,-0.7295166586684564],[113,-47,74,-0.729251283644908],[113,-47,75,-0.728988324179995],[113,-47,76,-0.7287277846271907],[113,-47,77,-0.7284696692437539],[113,-47,78,-0.7282139821903125],[113,-47,79,-0.7279607275304419],[113,-46,64,-0.7321303198877744],[113,-46,65,-0.731842984828342],[113,-46,66,-0.7315580218135803],[113,-46,67,-0.7312754360499081],[113,-46,68,-0.7309952326513212],[113,-46,69,-0.7307174166389807],[113,-46,70,-0.7304419929407842],[113,-46,71,-0.7301689663909422],[113,-46,72,-0.7298983417295527],[113,-46,73,-0.7296301236021909],[113,-46,74,-0.7293643165594692],[113,-46,75,-0.7291009250566288],[113,-46,76,-0.728839953453118],[113,-46,77,-0.7285814060121716],[113,-46,78,-0.7283252869003948],[113,-46,79,-0.728071600187341],[113,-45,64,-0.7322478361143551],[113,-45,65,-0.7319600700564508],[113,-45,66,-0.7316746759689385],[113,-45,67,-0.7313916590641869],[113,-45,68,-0.7311110244621446],[113,-45,69,-0.7308327771899271],[113,-45,70,-0.7305569221813889],[113,-45,71,-0.7302834642766993],[113,-45,72,-0.7300124082219172],[113,-45,73,-0.72974375866858],[113,-45,74,-0.7294775201732642],[113,-45,75,-0.7292136971971765],[113,-45,76,-0.7289522941057323],[113,-45,77,-0.7286933151681345],[113,-45,78,-0.7284367645569576],[113,-45,79,-0.7281826463477256],[113,-44,64,-0.7323655175123869],[113,-44,65,-0.7320773210428704],[113,-44,66,-0.7317914964676264],[113,-44,67,-0.731508049004965],[113,-44,68,-0.7312269837807783],[113,-44,69,-0.7309483058281281],[113,-44,70,-0.7306720200868171],[113,-44,71,-0.7303981314029645],[113,-44,72,-0.7301266445285817],[113,-44,73,-0.7298575641211602],[113,-44,74,-0.7295908947432326],[113,-44,75,-0.7293266408619626],[113,-44,76,-0.7290648068487247],[113,-44,77,-0.728805396978682],[113,-44,78,-0.7285484154303706],[113,-44,79,-0.7282938662852771],[113,-43,64,-0.7324833643009229],[113,-43,65,-0.7321947380102136],[113,-43,66,-0.7319084835357995],[113,-43,67,-0.7316246061019228],[113,-43,68,-0.7313431108404105],[113,-43,69,-0.7310640027902614],[113,-43,70,-0.7307872868972178],[113,-43,71,-0.7305129680133411],[113,-43,72,-0.7302410508965859],[113,-43,73,-0.7299715402103897],[113,-43,74,-0.7297044405232324],[113,-43,75,-0.7294397563082271],[113,-43,76,-0.7291774919426991],[113,-43,77,-0.7289176517077639],[113,-43,78,-0.7286602397879111],[113,-43,79,-0.7284052602705818],[113,-42,64,-0.7326013766959525],[113,-42,65,-0.7323123211780267],[113,-42,66,-0.7320256373965432],[113,-42,67,-0.7317413305816672],[113,-42,68,-0.7314594058711519],[113,-42,69,-0.7311798683099244],[113,-42,70,-0.7309027228496578],[113,-42,71,-0.7306279743483465],[113,-42,72,-0.7303556275698804],[113,-42,73,-0.7300856871836342],[113,-42,74,-0.7298181577640268],[113,-42,75,-0.7295530437901128],[113,-42,76,-0.7292903496451596],[113,-42,77,-0.7290300796162271],[113,-42,78,-0.7287722378937507],[113,-42,79,-0.7285168285711183],[113,-41,64,-0.7327195549104513],[113,-41,65,-0.7324300707628385],[113,-41,66,-0.7321429582699222],[113,-41,67,-0.7318582226677816],[113,-41,68,-0.7315758691000869],[113,-41,69,-0.7312959026176847],[113,-41,70,-0.7310183281781701],[113,-41,71,-0.7307431506454618],[113,-41,72,-0.7304703747893764],[113,-41,73,-0.7302000052852173],[113,-41,74,-0.7299320467133342],[113,-41,75,-0.7296665035587142],[113,-41,76,-0.7294033802105592],[113,-41,77,-0.7291426809618653],[113,-41,78,-0.7288844100090053],[113,-41,79,-0.7286285714513066],[113,-40,64,-0.7328378991543616],[113,-40,65,-0.732547986978141],[113,-40,66,-0.7322604463729607],[113,-40,67,-0.7319752825808054],[113,-40,68,-0.7316925007512525],[113,-40,69,-0.7314121059410597],[113,-40,70,-0.7311341031137346],[113,-40,71,-0.730858497139112],[113,-40,72,-0.7305852927929262],[113,-40,73,-0.7303144947564008],[113,-40,74,-0.7300461076158076],[113,-40,75,-0.7297801358620583],[113,-40,76,-0.7295165838902807],[113,-40,77,-0.7292554559993989],[113,-40,78,-0.7289967563917151],[113,-40,79,-0.7287404891724881],[113,-39,64,-0.7329564096346144],[113,-39,65,-0.7326660700344116],[113,-39,66,-0.7323781019196656],[113,-39,67,-0.7320925105382567],[113,-39,68,-0.7318093010456614],[113,-39,69,-0.7315284785045386],[113,-39,70,-0.7312500478843003],[113,-39,71,-0.7309740140606877],[113,-39,72,-0.7307003818153446],[113,-39,73,-0.7304291558354058],[113,-39,74,-0.7301603407130571],[113,-39,75,-0.7298939409451259],[113,-39,76,-0.7296299609326579],[113,-39,77,-0.7293684049804967],[113,-39,78,-0.7291092772968661],[113,-39,79,-0.7288525819929479],[113,-38,64,-0.7330750865551097],[113,-38,65,-0.732784320139093],[113,-38,66,-0.732495925121005],[113,-38,67,-0.7322099067546126],[113,-38,68,-0.7319262702012815],[113,-38,69,-0.7316450205295632],[113,-38,70,-0.7313661627147648],[113,-38,71,-0.7310897016385254],[113,-38,72,-0.730815642088389],[113,-38,73,-0.7305439887573935],[113,-38,74,-0.7302747462436296],[113,-38,75,-0.730007919049832],[113,-38,76,-0.7297435115829558],[113,-38,77,-0.7294815281537561],[113,-38,78,-0.72922197297637],[113,-38,79,-0.7289648501678938],[113,-37,64,-0.733193930116766],[113,-37,65,-0.7329027374966433],[113,-37,66,-0.7326139161849593],[113,-37,67,-0.7323274714413581],[113,-37,68,-0.7320434084330858],[113,-37,69,-0.7317617322345769],[113,-37,70,-0.7314824478270247],[113,-37,71,-0.7312055600979572],[113,-37,72,-0.7309310738408098],[113,-37,73,-0.7306589937545144],[113,-37,74,-0.7303893244430584],[113,-37,75,-0.7301220704150749],[113,-37,76,-0.7298572360834203],[113,-37,77,-0.7295948257647525],[113,-37,78,-0.7293348436791135],[113,-37,79,-0.7290772939495065],[113,-36,64,-0.7333129405175086],[113,-36,65,-0.7330213223085231],[113,-36,66,-0.7327320753165079],[113,-36,67,-0.7324452048069744],[113,-36,68,-0.7321607159530397],[113,-36,69,-0.7318786138350122],[113,-36,70,-0.7315989034399624],[113,-36,71,-0.7313215896612978],[113,-36,72,-0.7310466772983365],[113,-36,73,-0.7307741710558958],[113,-36,74,-0.7305040755438506],[113,-36,75,-0.7302363952767241],[113,-36,76,-0.7299711346732651],[113,-36,77,-0.7297082980560262],[113,-36,78,-0.729447889650946],[113,-36,79,-0.7291899135869263],[113,-35,64,-0.7334321179522554],[113,-35,65,-0.7331400747731832],[113,-35,66,-0.7328504027176165],[113,-35,67,-0.7325631070569254],[113,-35,68,-0.732278192970088],[113,-35,69,-0.7319956655432779],[113,-35,70,-0.7317155297694329],[113,-35,71,-0.7314377905478315],[113,-35,72,-0.7311624526836655],[113,-35,73,-0.7308895208876282],[113,-35,74,-0.7306189997754734],[113,-35,75,-0.730350893867606],[113,-35,76,-0.7300852075886584],[113,-35,77,-0.7298219452670693],[113,-35,78,-0.7295611111346657],[113,-35,79,-0.7293027093262396],[113,-34,64,-0.7335514626129682],[113,-34,65,-0.7332589950861135],[113,-34,66,-0.7329688985872871],[113,-34,67,-0.7326811783937074],[113,-34,68,-0.732395839690205],[113,-34,69,-0.7321128875688084],[113,-34,70,-0.7318323270283142],[113,-34,71,-0.7315541629738624],[113,-34,72,-0.7312784002165091],[113,-34,73,-0.7310050434728153],[113,-34,74,-0.7307340973644044],[113,-34,75,-0.7304655664175543],[113,-34,76,-0.7301994550627726],[113,-34,77,-0.7299357676343754],[113,-34,78,-0.7296745083700694],[113,-34,79,-0.729415681410529],[113,-33,64,-0.7336709746886318],[113,-33,65,-0.733378083439824],[113,-33,66,-0.7330875631215376],[113,-33,67,-0.7327994190168299],[113,-33,68,-0.7325136563163741],[113,-33,69,-0.7322302801180446],[113,-33,70,-0.731949295426487],[113,-33,71,-0.7316707071526938],[113,-33,72,-0.7313945201135763],[113,-33,73,-0.731120739031554],[113,-33,74,-0.7308493685341113],[113,-33,75,-0.7305804131533902],[113,-33,76,-0.7303138773257645],[113,-33,77,-0.7300497653914193],[113,-33,78,-0.7297880815939327],[113,-33,79,-0.7295288300798527],[113,-32,64,-0.7337906543652769],[113,-32,65,-0.7334973400238669],[113,-32,66,-0.7332063965134248],[113,-32,67,-0.7329178291228373],[113,-32,68,-0.7326316430486104],[113,-32,69,-0.732347843394455],[113,-32,70,-0.7320664351708565],[113,-32,71,-0.7317874232946503],[113,-32,72,-0.7315108125885941],[113,-32,73,-0.7312366077809562],[113,-32,74,-0.7309648135050739],[113,-32,75,-0.7306954342989435],[113,-32,76,-0.7304284746047967],[113,-32,77,-0.7301639387686789],[113,-32,78,-0.7299018310400313],[113,-32,79,-0.7296421555712664],[113,-31,64,-0.7339105018259596],[113,-31,65,-0.7336167650248159],[113,-31,66,-0.7333253989530233],[113,-31,67,-0.7330364089052883],[113,-31,68,-0.73274980008394],[113,-31,69,-0.732465577598516],[113,-31,70,-0.7321837464653325],[113,-31,71,-0.7319043116070578],[113,-31,72,-0.7316272778522873],[113,-31,73,-0.7313526499351289],[113,-31,74,-0.7310804324947633],[113,-31,75,-0.7308106300750327],[113,-31,76,-0.7305432471240176],[113,-31,77,-0.7302782879936152],[113,-31,78,-0.7300157569391206],[113,-31,79,-0.7297556581188032],[113,-30,64,-0.7340305172508119],[113,-30,65,-0.733736358626317],[113,-30,66,-0.7334445706274766],[113,-30,67,-0.733155158554807],[113,-30,68,-0.7328681276164505],[113,-30,69,-0.7325834829277623],[113,-30,70,-0.7323012295108791],[113,-30,71,-0.7320213722942939],[113,-30,72,-0.731743916112429],[113,-30,73,-0.7314688657052237],[113,-30,74,-0.7311962257176925],[113,-30,75,-0.7309260006995149],[113,-30,76,-0.7306581951046112],[113,-30,77,-0.7303928132907213],[113,-30,78,-0.7301298595189858],[113,-30,79,-0.7298693379535223],[113,-29,64,-0.7341507008170285],[113,-29,65,-0.7338561210090753],[113,-29,66,-0.7335639117209835],[113,-29,67,-0.7332740782590689],[113,-29,68,-0.732986625837278],[113,-29,69,-0.7327015595767732],[113,-29,70,-0.7324188845055023],[113,-29,71,-0.7321386055577733],[113,-29,72,-0.7318607275738269],[113,-29,73,-0.7315852552994238],[113,-29,74,-0.7313121933854032],[113,-29,75,-0.7310415463872726],[113,-29,76,-0.7307733187647836],[113,-29,77,-0.7305075148815099],[113,-29,78,-0.7302441390044287],[113,-29,79,-0.7299831953034973],[113,-28,64,-0.7342710526988536],[113,-28,65,-0.7339760523508417],[113,-28,66,-0.7336834224147848],[113,-28,67,-0.7333931682027885],[113,-28,68,-0.7331052949345934],[113,-28,69,-0.7328198077371595],[113,-28,70,-0.7325367116442362],[113,-28,71,-0.7322560115959367],[113,-28,72,-0.7319777124383104],[113,-28,73,-0.7317018189229305],[113,-28,74,-0.7314283357064517],[113,-28,75,-0.7311572673502004],[113,-28,76,-0.73088861831975],[113,-28,77,-0.7306223929844995],[113,-28,78,-0.730358595617254],[113,-28,79,-0.7300972303938016],[113,-27,64,-0.734391573067632],[113,-27,65,-0.7340961528264637],[113,-27,66,-0.7338031028872142],[113,-27,67,-0.7335124285677693],[113,-27,68,-0.7332241350936533],[113,-27,69,-0.732938227597614],[113,-27,70,-0.732654711119193],[113,-27,71,-0.732373590604299],[113,-27,72,-0.7320948709047804],[113,-27,73,-0.7318185567780137],[113,-27,74,-0.7315446528864598],[113,-27,75,-0.7312731637972545],[113,-27,76,-0.7310040939817846],[113,-27,77,-0.7307374478152646],[113,-27,78,-0.7304732295763194],[113,-27,79,-0.7302114434465585],[113,-26,64,-0.734512262091788],[113,-26,65,-0.7342164226078645],[113,-26,66,-0.7339229533136777],[113,-26,67,-0.7336318595328832],[113,-26,68,-0.733343146496779],[113,-26,69,-0.7330568193438911],[113,-26,70,-0.7327728831195433],[113,-26,71,-0.7324913427754298],[113,-26,72,-0.7322122031691893],[113,-26,73,-0.7319354690639913],[113,-26,74,-0.7316611451280938],[113,-26,75,-0.7313892359344331],[113,-26,76,-0.7311197459601997],[113,-26,77,-0.7308526795864154],[113,-26,78,-0.7305880410975147],[113,-26,79,-0.730325834680921],[113,-25,64,-0.7346331199368479],[113,-25,65,-0.7343368618640659],[113,-25,66,-0.7340429738666759],[113,-25,67,-0.7337514612740931],[113,-25,68,-0.7334623293233794],[113,-25,69,-0.733175583158829],[113,-25,70,-0.7328912278315375],[113,-25,71,-0.732609268298976],[113,-25,72,-0.7323297094245628],[113,-25,73,-0.7320525559772513],[113,-25,74,-0.7317778126310871],[113,-25,75,-0.7315054839647979],[113,-25,76,-0.7312355744613684],[113,-25,77,-0.7309680885076189],[113,-25,78,-0.7307030303937847],[113,-25,79,-0.7304404043130935],[113,-24,64,-0.73475414676542],[113,-24,65,-0.7344574707611674],[113,-24,66,-0.7341631647157834],[113,-24,67,-0.7338712339644323],[113,-24,68,-0.7335816837499299],[113,-24,69,-0.7332945192223286],[113,-24,70,-0.7330097454384861],[113,-24,71,-0.7327273673616399],[113,-24,72,-0.7324473898609789],[113,-24,73,-0.7321698177112306],[113,-24,74,-0.731894655592219],[113,-24,75,-0.7316219080884532],[113,-24,76,-0.7313515796887036],[113,-24,77,-0.7310836747855789],[113,-24,78,-0.7308181976751069],[113,-24,79,-0.7305551525563109],[113,-23,64,-0.7348753427372445],[113,-23,65,-0.734578249462397],[113,-23,66,-0.7342835260276994],[113,-23,67,-0.7339911777740551],[113,-23,68,-0.7337012099500233],[113,-23,69,-0.7334136277114046],[113,-23,70,-0.733128436120809],[113,-23,71,-0.7328456401472307],[113,-23,72,-0.7325652446656191],[113,-23,73,-0.7322872544564665],[113,-23,74,-0.7320116742053651],[113,-23,75,-0.7317385085025967],[113,-23,76,-0.7314677618427077],[113,-23,77,-0.7311994386240862],[113,-23,78,-0.7309335431485433],[113,-23,79,-0.7306700796208889],[113,-22,64,-0.734996708009181],[113,-22,65,-0.7346991981280979],[113,-22,66,-0.7344040579662345],[113,-22,67,-0.734111292870223],[113,-22,68,-0.7338209080943562],[113,-22,69,-0.7335329088001721],[113,-22,70,-0.7332473000560236],[113,-22,71,-0.732964086836651],[113,-22,72,-0.7326832740227549],[113,-22,73,-0.7324048664005822],[113,-22,74,-0.7321288686614843],[113,-22,75,-0.7318552854015059],[113,-22,76,-0.7315841211209598],[113,-22,77,-0.7313153802240049],[113,-22,78,-0.7310490670182261],[113,-22,79,-0.7307851857142103],[113,-21,64,-0.7351182427351949],[113,-21,65,-0.7348203169157149],[113,-21,66,-0.7345247606922972],[113,-21,67,-0.734231579417292],[113,-21,68,-0.7339407783507154],[113,-21,69,-0.733652362659833],[113,-21,70,-0.7333663374187297],[113,-21,71,-0.7330827076078826],[113,-21,72,-0.7328014781137331],[113,-21,73,-0.7325226537282735],[113,-21,74,-0.7322462391486046],[113,-21,75,-0.7319722389765241],[113,-21,76,-0.7317006577181021],[113,-21,77,-0.7314314997832587],[113,-21,78,-0.7311647694853434],[113,-21,79,-0.7309004710407117],[113,-20,64,-0.7352399470664075],[113,-20,65,-0.7349416059798456],[113,-20,66,-0.7346456343639447],[113,-20,67,-0.7343520375767629],[113,-20,68,-0.734060820884029],[113,-20,69,-0.7337719894587261],[113,-20,70,-0.733485548380661],[113,-20,71,-0.7332015026360374],[113,-20,72,-0.7329198571170278],[113,-20,73,-0.7326406166213599],[113,-20,74,-0.7323637858518738],[113,-20,75,-0.732089369416111],[113,-20,76,-0.7318173718258898],[113,-20,77,-0.7315477974968813],[113,-20,78,-0.7312806507481908],[113,-20,79,-0.7310159358019332],[113,-19,64,-0.7353618211510764],[113,-19,65,-0.735063065472219],[113,-19,66,-0.7347666791363618],[113,-19,67,-0.7344726675072605],[113,-19,68,-0.7341810358563455],[113,-19,69,-0.7338917893623073],[113,-19,70,-0.7336049331106644],[113,-19,71,-0.7333204720933372],[113,-19,72,-0.7330384112082189],[113,-19,73,-0.7327587552587627],[113,-19,74,-0.7324815089535387],[113,-19,75,-0.7322066769058224],[113,-19,76,-0.7319342636331702],[113,-19,77,-0.7316642735569954],[113,-19,78,-0.7313967110021499],[113,-19,79,-0.7311315801964979],[113,-18,64,-0.735483865134617],[113,-18,65,-0.7351846955417188],[113,-18,66,-0.7348878951618845],[113,-18,67,-0.7345934693645559],[113,-18,68,-0.7343014234268559],[113,-18,69,-0.7340117625331712],[113,-18,70,-0.7337244917747221],[113,-18,71,-0.7334396161491349],[113,-18,72,-0.7331571405600141],[113,-18,73,-0.7328770698165282],[113,-18,74,-0.7325994086329675],[113,-18,75,-0.7323241616283316],[113,-18,76,-0.7320513333259054],[113,-18,77,-0.7317809281528354],[113,-18,78,-0.7315129504397098],[113,-18,79,-0.7312474044201338],[113,-17,64,-0.7356060791595825],[113,-17,65,-0.7353064963343618],[113,-17,66,-0.7350092825899771],[113,-17,67,-0.7347144433015462],[113,-17,68,-0.7344219837518731],[113,-17,69,-0.7341319091310305],[113,-17,70,-0.7338442245359301],[113,-17,71,-0.7335589349698943],[113,-17,72,-0.7332760453422282],[113,-17,73,-0.7329955604678061],[113,-17,74,-0.7327174850666281],[113,-17,75,-0.7324418237634085],[113,-17,76,-0.7321685810871509],[113,-17,77,-0.731897761470725],[113,-17,78,-0.7316293692504467],[113,-17,79,-0.7313634086656525],[113,-16,64,-0.7357284633657144],[113,-16,65,-0.7354284679933495],[113,-16,66,-0.7351308415672851],[113,-16,67,-0.7348355894683049],[113,-16,68,-0.7345427169848824],[113,-16,69,-0.7342522293127669],[113,-16,70,-0.7339641315545502],[113,-16,71,-0.7336784287192408],[113,-16,72,-0.7333951257218343],[113,-16,73,-0.7331142273829006],[113,-16,74,-0.7328357384281395],[113,-16,75,-0.7325596634879704],[113,-16,76,-0.732286007097106],[113,-16,77,-0.7320147736941296],[113,-16,78,-0.7317459676210747],[113,-16,79,-0.731479593123],[113,-15,64,-0.7358510178899288],[113,-15,65,-0.7355506106590538],[113,-15,66,-0.735252572237621],[113,-15,67,-0.7349569080120679],[113,-15,68,-0.7346636232765285],[113,-15,69,-0.7343727232324169],[113,-15,70,-0.7340842129879952],[113,-15,71,-0.7337980975579472],[113,-15,72,-0.7335143818629493],[113,-15,73,-0.733233070729256],[113,-15,74,-0.7329541688882578],[113,-15,75,-0.7326776809760686],[113,-15,76,-0.7324036115331005],[113,-15,77,-0.7321319650036408],[113,-15,78,-0.7318627457354311],[113,-15,79,-0.7315959579792431],[113,-14,64,-0.7359737428663035],[113,-14,65,-0.7356729244690041],[113,-14,66,-0.7353744747419495],[113,-14,67,-0.7350783990772207],[113,-14,68,-0.7347847027746011],[113,-14,69,-0.7344933910411587],[113,-14,70,-0.7342044689908157],[113,-14,71,-0.7339179416439208],[113,-14,72,-0.7336338139268203],[113,-14,73,-0.7333520906714439],[113,-14,74,-0.7330727766148621],[113,-14,75,-0.7327958763988737],[113,-14,76,-0.7325213945695803],[113,-14,77,-0.7322493355769633],[113,-14,78,-0.7319797037744631],[113,-14,79,-0.7317125034185545],[113,-13,64,-0.7360966384261282],[113,-13,65,-0.7357954095579378],[113,-13,66,-0.7354965492184402],[113,-13,67,-0.7352000628053494],[113,-13,68,-0.7349059556240862],[113,-13,69,-0.734614232887363],[113,-13,70,-0.734324899714751],[113,-13,71,-0.7340379611322534],[113,-13,72,-0.7337534220718758],[113,-13,73,-0.7334712873712133],[113,-13,74,-0.7331915617730058],[113,-13,75,-0.732914249924727],[113,-13,76,-0.7326393563781585],[113,-13,77,-0.7323668855889656],[113,-13,78,-0.7320968419162782],[113,-13,79,-0.7318292296222644],[113,-12,64,-0.7362197046978916],[113,-12,65,-0.7359180660577871],[113,-12,66,-0.7356187958024534],[113,-12,67,-0.7353218993352258],[113,-12,68,-0.7350273819671528],[113,-12,69,-0.7347352489165794],[113,-12,70,-0.7344455053087153],[113,-12,71,-0.7341581561752077],[113,-12,72,-0.7338732064537117],[113,-12,73,-0.7335906609874766],[113,-12,74,-0.7333105245249022],[113,-12,75,-0.7330328017191268],[113,-12,76,-0.7327574971276014],[113,-12,77,-0.7324846152116663],[113,-12,78,-0.7322141603361304],[113,-12,79,-0.731946136768846],[113,-11,64,-0.7363429418072669],[113,-11,65,-0.7360408940976648],[113,-11,66,-0.7357412146265254],[113,-11,67,-0.7354439088027949],[113,-11,68,-0.7351489819431377],[113,-11,69,-0.7348564392715214],[113,-11,70,-0.7345662859187835],[113,-11,71,-0.7342785269222041],[113,-11,72,-0.7339931672250773],[113,-11,73,-0.7337102116762964],[113,-11,74,-0.7334296650299108],[113,-11,75,-0.7331515319447132],[113,-11,76,-0.7328758169838143],[113,-11,77,-0.7326025246142192],[113,-11,78,-0.732331659206406],[113,-11,79,-0.7320632250339016],[113,-10,64,-0.7364663498771642],[113,-10,65,-0.7361638938039156],[113,-10,66,-0.7358638058204208],[113,-10,67,-0.735566091341225],[113,-10,68,-0.7352707556885985],[113,-10,69,-0.7349778040921195],[113,-10,70,-0.7346872416882426],[113,-10,71,-0.7343990735198709],[113,-10,72,-0.7341133045359263],[113,-10,73,-0.733829939590936],[113,-10,74,-0.7335489834445883],[113,-10,75,-0.7332704407613204],[113,-10,76,-0.7329943161098929],[113,-10,77,-0.7327206139629648],[113,-10,78,-0.7324493386966746],[113,-10,79,-0.7321804945902135],[113,-9,64,-0.7365899290277079],[113,-9,65,-0.7362870653000955],[113,-9,66,-0.735986569511111],[113,-9,67,-0.7356884470808879],[113,-9,68,-0.7353927033372908],[113,-9,69,-0.7350993435154982],[113,-9,70,-0.7348083727575707],[113,-9,71,-0.7345197961120233],[113,-9,72,-0.7342336185333956],[113,-9,73,-0.733949844881838],[113,-9,74,-0.7336684799226675],[113,-9,75,-0.7333895283259552],[113,-9,76,-0.7331129946661011],[113,-9,77,-0.7328388834214093],[113,-9,78,-0.7325671989736677],[113,-9,79,-0.7322979456077224],[113,-8,64,-0.7367136793762605],[113,-8,65,-0.7364104087069934],[113,-8,66,-0.7361095058227962],[113,-8,67,-0.73581097614938],[113,-8,68,-0.7355148250201917],[113,-8,69,-0.7352210576759994],[113,-8,70,-0.7349296792644588],[113,-8,71,-0.7346406948396862],[113,-8,72,-0.734354109361828],[113,-8,73,-0.734069927696647],[113,-8,74,-0.7337881546150788],[113,-8,75,-0.7335087947928182],[113,-8,76,-0.7332318528098943],[113,-8,77,-0.7329573331502459],[113,-8,78,-0.7326852402013007],[113,-8,79,-0.7324155782535497],[113,-7,64,-0.7368376010374007],[113,-7,65,-0.7365339241426105],[113,-7,66,-0.7362326148768854],[113,-7,67,-0.7359336786715013],[113,-7,68,-0.7356371208654777],[113,-7,69,-0.7353429467051606],[113,-7,70,-0.7350511613437899],[113,-7,71,-0.7347617698410721],[113,-7,72,-0.7344747771627498],[113,-7,73,-0.734190188180188],[113,-7,74,-0.7339080076699297],[113,-7,75,-0.7336282403132833],[113,-7,76,-0.733350890695897],[113,-7,77,-0.7330759633073337],[113,-7,78,-0.7328034625406514],[113,-7,79,-0.7325333926919759],[113,-6,64,-0.7369616941229751],[113,-6,65,-0.7366576117222119],[113,-6,66,-0.7363558967920459],[113,-6,67,-0.7360565547693074],[113,-6,68,-0.7357595909985767],[113,-6,69,-0.7354650107317664],[113,-6,70,-0.7351728191276898],[113,-6,71,-0.7348830212516327],[113,-6,72,-0.734595622074923],[113,-6,73,-0.7343106264745172],[113,-6,74,-0.7340280392325551],[113,-6,75,-0.7337478650359486],[113,-6,76,-0.7334701084759543],[113,-6,77,-0.7331947740477492],[113,-6,78,-0.7329218661500114],[113,-6,79,-0.7326513890844915],[113,-5,64,-0.7370859587420839],[113,-5,65,-0.7367814715583118],[113,-5,66,-0.7364793516841912],[113,-5,67,-0.7361796045620954],[113,-5,68,-0.7358822355421537],[113,-5,69,-0.7355872498818348],[113,-5,70,-0.735294652745514],[113,-5,71,-0.7350044492040452],[113,-5,72,-0.734716644234331],[113,-5,73,-0.7344312427189085],[113,-5,74,-0.7341482494455043],[113,-5,75,-0.7338676691066224],[113,-5,76,-0.7335895062991177],[113,-5,77,-0.7333137655237716],[113,-5,78,-0.7330404511848713],[113,-5,79,-0.732769567589783],[113,-4,64,-0.7372103950010678],[113,-4,65,-0.7369055037606602],[113,-4,66,-0.7366029796664657],[113,-4,67,-0.7363028281663887],[113,-4,68,-0.7360050546160966],[113,-4,69,-0.7357096642786023],[113,-4,70,-0.7354166623238321],[113,-4,71,-0.7351260538281973],[113,-4,72,-0.7348378437741641],[113,-4,73,-0.7345520370498393],[113,-4,74,-0.7342686384485255],[113,-4,75,-0.7339876526683085],[113,-4,76,-0.733709084311631],[113,-4,77,-0.7334329378848683],[113,-4,78,-0.7331592177979067],[113,-4,79,-0.732887928363718],[113,-3,64,-0.7373350030035584],[113,-3,65,-0.7370297084362943],[113,-3,66,-0.7367267808492969],[113,-3,67,-0.73642622569599],[113,-3,68,-0.7361280483375676],[113,-3,69,-0.7358322540425758],[113,-3,70,-0.7355388479864806],[113,-3,71,-0.7352478352512394],[113,-3,72,-0.734959220824871],[113,-3,73,-0.7346730096010411],[113,-3,74,-0.7343892063786177],[113,-3,75,-0.7341078158612575],[113,-3,76,-0.733828842656981],[113,-3,77,-0.7335522912777466],[113,-3,78,-0.73327816613903],[113,-3,79,-0.7330064715593975],[113,-2,64,-0.7374597828504578],[113,-2,65,-0.7371540856895171],[113,-2,66,-0.7368507553403736],[113,-2,67,-0.7365497972619591],[113,-2,68,-0.7362512168209825],[113,-2,69,-0.7359550192915116],[113,-2,70,-0.7356612098545409],[113,-2,71,-0.7353697935975627],[113,-2,72,-0.7350807755141375],[113,-2,73,-0.734794160503479],[113,-2,74,-0.7345099533700095],[113,-2,75,-0.7342281588229463],[113,-2,76,-0.7339487814758769],[113,-2,77,-0.7336718258463323],[113,-2,78,-0.7333972963553672],[113,-2,79,-0.7331251973271331],[113,-1,64,-0.7375847346399604],[113,-1,65,-0.7372786356219199],[113,-1,66,-0.7369749032446687],[113,-1,67,-0.7366735429726354],[113,-1,68,-0.7363745601780322],[113,-1,69,-0.7360779601404369],[113,-1,70,-0.7357837480463614],[113,-1,71,-0.7354919289888215],[113,-1,72,-0.7352025079669087],[113,-1,73,-0.734915489885373],[113,-1,74,-0.7346308795541806],[113,-1,75,-0.734348681688099],[113,-1,76,-0.7340689009062712],[113,-1,77,-0.7337915417317912],[113,-1,78,-0.733516608591282],[113,-1,79,-0.7332441058144696],[113,0,64,-0.7377098584675321],[113,0,65,-0.7374033583323603],[113,0,66,-0.7370992246644175],[113,0,67,-0.7367974629336165],[113,0,68,-0.7364980785176614],[113,0,69,-0.7362010767016288],[113,0,70,-0.7359064626775361],[113,0,71,-0.735614241543912],[113,0,72,-0.7353244183053668],[113,0,73,-0.7350369978721769],[113,0,74,-0.7347519850598409],[113,0,75,-0.7344693845886653],[113,0,76,-0.7341892010833388],[113,0,77,-0.7339114390725074],[113,0,78,-0.7336361029883521],[113,0,79,-0.7333631971661633],[113,1,64,-0.7378351544259616],[113,1,65,-0.7375282539170148],[113,1,66,-0.7372237196991689],[113,1,67,-0.7369215572478094],[113,1,68,-0.7366217719461203],[113,1,69,-0.7363243690846655],[113,1,70,-0.7360293538609564],[113,1,71,-0.735736731379023],[113,1,72,-0.7354465066489835],[113,1,73,-0.7351586845866296],[113,1,74,-0.734873270012981],[113,1,75,-0.7345902676538729],[113,1,76,-0.7343096821395287],[113,1,77,-0.7340315180041356],[113,1,78,-0.7337557796854222],[113,1,79,-0.733482471524233],[113,2,64,-0.7379606226053461],[113,2,65,-0.7376533224693642],[113,2,66,-0.7373483884457724],[113,2,67,-0.7370458260154173],[113,2,68,-0.7367456405669508],[113,2,69,-0.7364478373964125],[113,2,70,-0.7361524217067965],[113,2,71,-0.7358593986076224],[113,2,72,-0.7355687731145055],[113,2,73,-0.7352805501487408],[113,2,74,-0.734994734536859],[113,2,75,-0.7347113310102125],[113,2,76,-0.7344303442045487],[113,2,77,-0.7341517786595853],[113,2,78,-0.7338756388185883],[113,2,79,-0.7336019290279457],[113,3,64,-0.7380862630930776],[113,3,65,-0.7377785640801792],[113,3,66,-0.7374732309983628],[113,3,67,-0.7371702693339242],[113,3,68,-0.7368696844809715],[113,3,69,-0.7365714817410081],[113,3,70,-0.7362756663224991],[113,3,71,-0.7359822433404426],[113,3,72,-0.7356912178159393],[113,3,73,-0.7354025946757767],[113,3,74,-0.735116378751985],[113,3,75,-0.7348325747814229],[113,3,76,-0.7345511874053512],[113,3,77,-0.7342722211690074],[113,3,78,-0.733995680521184],[113,3,79,-0.7337215698138024],[113,4,64,-0.7382120759738942],[113,4,65,-0.7379039788375721],[113,4,66,-0.7375982474484122],[113,4,67,-0.7372948872981471],[113,4,68,-0.7369939037863293],[113,4,69,-0.7366953022199145],[113,4,70,-0.7363990878128271],[113,4,71,-0.736105265685532],[113,4,72,-0.7358138408646038],[113,4,73,-0.7355248182823114],[113,4,74,-0.7352382027761732],[113,4,75,-0.7349539990885435],[113,4,76,-0.7346722118661853],[113,4,77,-0.7343928456598451],[113,4,78,-0.7341159049238316],[113,4,79,-0.7338413940155886],[113,5,64,-0.7383380613298589],[113,5,65,-0.7380295668269757],[113,5,66,-0.7377234378847086],[113,5,67,-0.7374196800002146],[113,5,68,-0.737118298578479],[113,5,69,-0.7368192989318976],[113,5,70,-0.7365226862798423],[113,5,71,-0.7362284657482333],[113,5,72,-0.735936642369108],[113,5,73,-0.7356472210802052],[113,5,74,-0.7353602067245203],[113,5,75,-0.7350756040498918],[113,5,76,-0.7347934177085742],[113,5,77,-0.7345136522568123],[113,5,78,-0.7342363121544202],[113,5,79,-0.7339614017643535],[113,6,64,-0.7384642192403819],[113,6,65,-0.7381553281311659],[113,6,66,-0.7378488023933782],[113,6,67,-0.7375446475295891],[113,6,68,-0.7372428689502042],[113,6,69,-0.7369434719730473],[113,6,70,-0.7366464618229268],[113,6,71,-0.7363518436312062],[113,6,72,-0.7360596224353737],[113,6,73,-0.735769803178627],[113,6,74,-0.7354823907094271],[113,6,75,-0.735197389781086],[113,6,76,-0.734914805051338],[113,6,77,-0.7346346410819159],[113,6,78,-0.734356902338128],[113,6,79,-0.7340815931884316],[113,7,64,-0.738590549782199],[113,7,65,-0.7382812628302386],[113,7,66,-0.7379743410578639],[113,7,67,-0.7376697899730449],[113,7,68,-0.7373676149915962],[113,7,69,-0.7370678214367578],[113,7,70,-0.736770414538762],[113,7,71,-0.7364753994344044],[113,7,72,-0.736182781166613],[113,7,73,-0.7358925646840319],[113,7,74,-0.735604754840577],[113,7,75,-0.7353193563950222],[113,7,76,-0.7350363740105711],[113,7,77,-0.7347558122544331],[113,7,78,-0.7344776755974],[113,7,79,-0.7342019684134201],[113,8,64,-0.7387170530294234],[113,8,65,-0.7384073710016634],[113,8,66,-0.7381000539589762],[113,8,67,-0.73779510741472],[113,8,68,-0.7374925367901057],[113,8,69,-0.7371923474137776],[113,8,70,-0.7368945445213803],[113,8,71,-0.7365991332551294],[113,8,72,-0.7363061186633805],[113,8,73,-0.7360155057002136],[113,8,74,-0.7357272992249878],[113,8,75,-0.7354415040019274],[113,8,76,-0.7351581246996947],[113,8,77,-0.7348771658909639],[113,8,78,-0.7345986320520002],[113,8,79,-0.7343225275622316],[113,9,64,-0.7388437290535315],[113,9,65,-0.7385336527202684],[113,9,66,-0.7382259411748805],[113,9,67,-0.7379205999361025],[113,9,68,-0.737617634430529],[113,9,69,-0.7373170499921966],[113,9,70,-0.7370188518621502],[113,9,71,-0.7367230451880138],[113,9,72,-0.7364296350235588],[113,9,73,-0.7361386263282897],[113,9,74,-0.7358500239669971],[113,9,75,-0.7355638327093444],[113,9,76,-0.7352800572294411],[113,9,77,-0.7349987021054161],[113,9,78,-0.7347197718189963],[113,9,79,-0.7344432707550789],[113,10,64,-0.7389705779233484],[113,10,65,-0.7386601080582251],[113,10,66,-0.7383520027810813],[113,10,67,-0.7380462676160148],[113,10,68,-0.7377429079949922],[113,10,69,-0.7374419292574302],[113,10,70,-0.7371433366497622],[113,10,71,-0.736847135325008],[113,10,72,-0.736553330342344],[113,10,73,-0.7362619266666867],[113,10,74,-0.735972929168247],[113,10,75,-0.7356863426221165],[113,10,76,-0.7354021717078401],[113,10,77,-0.7351204210089903],[113,10,78,-0.734841095012745],[113,10,79,-0.7345641981094597],[113,11,64,-0.7390975997051],[113,11,65,-0.7387867370851019],[113,11,66,-0.7384782388504745],[113,11,67,-0.7381721105306666],[113,11,68,-0.7378683575630043],[113,11,69,-0.7375669852922724],[113,11,70,-0.7372679989702801],[113,11,71,-0.736971403755432],[113,11,72,-0.736677204712297],[113,11,73,-0.7363854068111921],[113,11,74,-0.7360960149277369],[113,11,75,-0.7358090338424397],[113,11,76,-0.73552446824027],[113,11,77,-0.7352423227102323],[113,11,78,-0.7349626017449444],[113,11,79,-0.7346853097402095],[113,12,64,-0.7392247944623911],[113,12,65,-0.738913539867841],[113,12,66,-0.7386046494533258],[113,12,67,-0.7382981287536328],[113,12,68,-0.7379939832114351],[113,12,69,-0.737692218176873],[113,12,70,-0.73739283890712],[113,12,71,-0.7370958505659532],[113,12,72,-0.7368012582233219],[113,12,73,-0.7365090668549322],[113,12,74,-0.7362192813418009],[113,12,75,-0.7359319064698413],[113,12,76,-0.7356469469294359],[113,12,77,-0.7353644073150103],[113,12,78,-0.735084292124611],[113,12,79,-0.7348066057594782],[113,13,64,-0.739352162256228],[113,13,65,-0.739040516470782],[113,13,66,-0.7387312346572932],[113,13,67,-0.7384243223558756],[113,13,68,-0.7381197850145368],[113,13,69,-0.7378176279887605],[113,13,70,-0.7375178565410719],[113,13,71,-0.7372204758406086],[113,13,72,-0.7369254909626886],[113,13,73,-0.7366329068883951],[113,13,74,-0.7363427285041304],[113,13,75,-0.7360549606012012],[113,13,76,-0.7357696078753918],[113,13,77,-0.7354866749265375],[113,13,78,-0.7352061662581029],[113,13,79,-0.7349280862767531],[113,14,64,-0.7394797031449966],[113,14,65,-0.739167666955638],[113,14,66,-0.7388579945274045],[113,14,67,-0.7385506914057228],[113,14,68,-0.7382457630439231],[113,14,69,-0.7379432148028198],[113,14,70,-0.7376430519502777],[113,14,71,-0.7373452796607827],[113,14,72,-0.7370499030150097],[113,14,73,-0.7367569269994073],[113,14,74,-0.7364663565057511],[113,14,75,-0.7361781963307299],[113,14,76,-0.7358924511755183],[113,14,77,-0.7356091256453499],[113,14,78,-0.7353282242490957],[113,14,79,-0.7350497513988359],[113,15,64,-0.7396074171845143],[113,15,65,-0.7392949913815503],[113,15,66,-0.7389849291261098],[113,15,67,-0.7386772359689199],[113,15,68,-0.7383719173686204],[113,15,69,-0.7380689786913441],[113,15,70,-0.7377684252102835],[113,15,71,-0.7374702621052602],[113,15,72,-0.7371744944622941],[113,15,73,-0.7368811272731868],[113,15,74,-0.7365901654350759],[113,15,75,-0.7363016137500208],[113,15,76,-0.7360154769245745],[113,15,77,-0.7357317595693579],[113,15,78,-0.735450466198637],[113,15,79,-0.7351716012298954],[113,16,64,-0.7397353044280158],[113,16,65,-0.7394224898050724],[113,16,66,-0.7391120385132671],[113,16,67,-0.7388039561086154],[113,16,68,-0.7384982480550537],[113,16,69,-0.7381949197240212],[113,16,70,-0.7378939763940251],[113,16,71,-0.7375954232502107],[113,16,72,-0.7372992653839306],[113,16,73,-0.7370055077923279],[113,16,74,-0.7367141553778902],[113,16,75,-0.7364252129480353],[113,16,76,-0.7361386852146836],[113,16,77,-0.7358545767938316],[113,16,78,-0.7355728922051291],[113,16,79,-0.7352936358714522],[113,17,64,-0.7398633649261382],[113,17,65,-0.7395501622801548],[113,17,66,-0.7392393227461271],[113,17,67,-0.7389308518853459],[113,17,68,-0.7386247551670317],[113,17,69,-0.7383210379679173],[113,17,70,-0.7380197055718122],[113,17,71,-0.7377207631691733],[113,17,72,-0.737424215856674],[113,17,73,-0.7371300686367861],[113,17,74,-0.7368383264173357],[113,17,75,-0.7365489940110876],[113,17,76,-0.7362620761353176],[113,17,77,-0.7359775774113859],[113,17,78,-0.7356955023643155],[113,17,79,-0.7354158554223631],[113,18,64,-0.7399915987269736],[113,18,65,-0.7396780088581985],[113,18,66,-0.7393667818793861],[113,18,67,-0.7390579233570889],[113,18,68,-0.7387514387657991],[113,18,69,-0.7384473334875301],[113,18,70,-0.7381456128113818],[113,18,71,-0.7378462819331103],[113,18,72,-0.7375493459546967],[113,18,73,-0.7372548098839308],[113,18,74,-0.7369626786339644],[113,18,75,-0.7366729570228971],[113,18,76,-0.736385649773349],[113,18,77,-0.7361007615120326],[113,18,78,-0.7358182967693323],[113,18,79,-0.7355382599788743],[113,19,64,-0.7401200058760541],[113,19,65,-0.7398060295880401],[113,19,66,-0.7394944159651705],[113,19,67,-0.7391851705792473],[113,19,68,-0.7388782989100214],[113,19,69,-0.7385738063447743],[113,19,70,-0.7382716981778832],[113,19,71,-0.7379719796103912],[113,19,72,-0.7376746557495752],[113,19,73,-0.7373797316085301],[113,19,74,-0.7370872121057219],[113,19,75,-0.7367971020645736],[113,19,76,-0.7365094062130367],[113,19,77,-0.7362241291831655],[113,19,78,-0.7359412755106934],[113,19,79,-0.7356608496346057],[113,20,64,-0.7402485864163372],[113,20,65,-0.7399342245159362],[113,20,66,-0.7396222250530229],[113,20,67,-0.7393125936046354],[113,20,68,-0.7390053356557706],[113,20,69,-0.7387004565989657],[113,20,70,-0.7383979617338623],[113,20,71,-0.7380978562667778],[113,20,72,-0.737800145310273],[113,20,73,-0.7375048338827356],[113,20,74,-0.7372119269079336],[113,20,75,-0.7369214292146014],[113,20,76,-0.7366333455360105],[113,20,77,-0.7363476805095446],[113,20,78,-0.7360644386762754],[113,20,79,-0.735783624480535],[113,21,64,-0.7403773403882582],[113,21,65,-0.7400625936856164],[113,21,66,-0.7397502091899535],[113,21,67,-0.7394401924835307],[113,21,68,-0.7391325490565778],[113,21,69,-0.7388272843068743],[113,21,70,-0.7385244035393145],[113,21,71,-0.7382239119654773],[113,21,72,-0.7379258147031948],[113,21,73,-0.7376301167761353],[113,21,74,-0.7373368231133568],[113,21,75,-0.7370459385488926],[113,21,76,-0.7367574678213231],[113,21,77,-0.7364714155733494],[113,21,78,-0.7361877863513697],[113,21,79,-0.7359065846050519],[113,22,64,-0.7405062678297084],[113,22,65,-0.7401911371382617],[113,22,66,-0.7398783684204191],[113,22,67,-0.7395679672636518],[113,22,68,-0.7392599391634098],[113,22,69,-0.7389542895227021],[113,22,70,-0.7386510236516626],[113,22,71,-0.7383501467671193],[113,22,72,-0.7380516639921632],[113,22,73,-0.7377555803557305],[113,22,74,-0.7374619007921575],[113,22,75,-0.7371706301407643],[113,22,76,-0.7368817731454282],[113,22,77,-0.7365953344541556],[113,22,78,-0.7363113186186601],[113,22,79,-0.7360297300939336],[113,23,64,-0.740635368776057],[113,23,65,-0.7403198549125258],[113,23,66,-0.7400067027863444],[113,23,67,-0.7396959179901812],[113,23,68,-0.7393875060246927],[113,23,69,-0.7390814722981052],[113,23,70,-0.7387778221257788],[113,23,71,-0.7384765607297783],[113,23,72,-0.738177693238441],[113,23,73,-0.737881224685959],[113,23,74,-0.7375871600119337],[113,23,75,-0.737295504060961],[113,23,76,-0.7370062615822022],[113,23,77,-0.7367194372289579],[113,23,78,-0.736435035558245],[113,23,79,-0.7361530610303679],[113,24,64,-0.7407646432601289],[113,24,65,-0.7404487470445132],[113,24,66,-0.7401352123271003],[113,24,67,-0.7398240447057419],[113,24,68,-0.7395152496862889],[113,24,69,-0.7392088326821707],[113,24,70,-0.738904799013962],[113,24,71,-0.7386031539089513],[113,24,72,-0.7383039025007089],[113,24,73,-0.7380070498286709],[113,24,74,-0.7377126008376923],[113,24,75,-0.7374205603776312],[113,24,76,-0.7371309332029217],[113,24,77,-0.7368437239721467],[113,24,78,-0.7365589372476143],[113,24,79,-0.7362765774949304],[113,25,64,-0.740894091312258],[113,25,65,-0.7405778135678324],[113,25,66,-0.7402638970795561],[113,25,67,-0.7399523474504514],[113,25,68,-0.7396431701915495],[113,25,69,-0.7393363707214711],[113,25,70,-0.7390319543659912],[113,25,71,-0.7387299263576097],[113,25,72,-0.7384302918351181],[113,25,73,-0.7381330558431834],[113,25,74,-0.7378382233319012],[113,25,75,-0.7375457991563806],[113,25,76,-0.7372557880763162],[113,25,77,-0.7369681947555609],[113,25,78,-0.7366830237617026],[113,25,79,-0.7364002795656365],[113,26,64,-0.7410237129602713],[113,26,65,-0.7407070545135801],[113,26,66,-0.7403927570780652],[113,26,67,-0.7400808262619056],[113,26,68,-0.7397712675813001],[113,26,69,-0.739464086460047],[113,26,70,-0.7391592882291096],[113,26,71,-0.7388568781261857],[113,26,72,-0.7385568612952753],[113,26,73,-0.7382592427862638],[113,26,74,-0.7379640275544753],[113,26,75,-0.7376712204602573],[113,26,76,-0.7373808262685528],[113,26,77,-0.7370928496484728],[113,26,78,-0.7368072951728732],[113,26,79,-0.7365241673179268],[113,27,64,-0.7411535082294743],[113,27,65,-0.7408364699103266],[113,27,66,-0.7405217923544488],[113,27,67,-0.7402094811751639],[113,27,68,-0.7398995418938246],[113,27,69,-0.7395919799393936],[113,27,70,-0.7392868006480096],[113,27,71,-0.7389840092625554],[113,27,72,-0.7386836109322267],[113,27,73,-0.7383856107121148],[113,27,74,-0.7380900135627599],[113,27,75,-0.7377968243497355],[113,27,76,-0.7375060478432205],[113,27,77,-0.7372176887175723],[113,27,78,-0.7369317515509031],[113,27,79,-0.7366482408246511],[113,28,64,-0.7412834771427044],[113,28,65,-0.7409660597841686],[113,28,66,-0.7406510029380504],[113,28,67,-0.7403383122228027],[113,28,68,-0.7400279931649186],[113,28,69,-0.7397200511985129],[113,28,70,-0.7394144916648857],[113,28,71,-0.7391113198120924],[113,28,72,-0.7388105407945117],[113,28,73,-0.7385121596724276],[113,28,74,-0.7382161814115841],[113,28,75,-0.7379226108827683],[113,28,76,-0.7376314528613833],[113,28,77,-0.7373427120270202],[113,28,78,-0.7370563929630352],[113,28,79,-0.736772500156121],[113,29,64,-0.7414136197203072],[113,29,65,-0.7410958241587067],[113,29,66,-0.7407803888557115],[113,29,67,-0.7404673194348913],[113,29,68,-0.740156621427867],[113,29,69,-0.7398483002738908],[113,29,70,-0.739542361319412],[113,29,71,-0.7392388098176453],[113,29,72,-0.7389376509281392],[113,29,73,-0.7386388897163586],[113,29,74,-0.7383425311532379],[113,29,75,-0.7380485801147658],[113,29,76,-0.7377570413815571],[113,29,77,-0.7374679196384244],[113,29,78,-0.7371812194739562],[113,29,79,-0.7368969453800874],[113,30,64,-0.7415439359801601],[113,30,65,-0.7412257630550674],[113,30,66,-0.7409099501317955],[113,30,67,-0.7405965028390166],[113,30,68,-0.7402854267134658],[113,30,69,-0.73997672719952],[113,30,70,-0.7396704096487642],[113,30,71,-0.7393664793195593],[113,30,72,-0.739064941376611],[113,30,73,-0.738765800890552],[113,30,74,-0.7384690628374946],[113,30,75,-0.7381747320986167],[113,30,76,-0.737882813459732],[113,30,77,-0.7375933116108631],[113,30,78,-0.7373062311458183],[113,30,79,-0.7370215765617627],[113,31,64,-0.7416744259376492],[113,31,65,-0.7413558764918813],[113,31,66,-0.7410396867881637],[113,31,67,-0.740725862460258],[113,31,68,-0.7404144090499996],[113,31,69,-0.7401053320068768],[113,31,70,-0.7397986366875968],[113,31,71,-0.7394943283556541],[113,31,72,-0.7391924121808984],[113,31,73,-0.7388928932391168],[113,31,74,-0.7385957765115878],[113,31,75,-0.7383010668846651],[113,31,76,-0.7380087691493495],[113,31,77,-0.7377188880008609],[113,31,78,-0.7374314280382157],[113,31,79,-0.7371463937637972],[113,32,64,-0.7418050896057223],[113,32,65,-0.7414861644853354],[113,32,66,-0.7411695988442295],[113,32,67,-0.740855398321242],[113,32,68,-0.7405435684632946],[113,32,69,-0.7402341147249742],[113,32,70,-0.7399270424680966],[113,32,71,-0.7396223569612765],[113,32,72,-0.7393200633794944],[113,32,73,-0.7390201668036799],[113,32,74,-0.738722672220264],[113,32,75,-0.7384275845207641],[113,32,76,-0.7381349085013553],[113,32,77,-0.7378446488624428],[113,32,78,-0.7375568102082385],[113,32,79,-0.7372713970463322],[113,33,64,-0.7419359269948737],[113,33,65,-0.7416166270491583],[113,33,66,-0.7412996863169429],[113,33,67,-0.7409851104421263],[113,33,68,-0.7406729049767041],[113,33,69,-0.740363075380347],[113,33,70,-0.7400556270199669],[113,33,71,-0.7397505651692851],[113,33,72,-0.7394478950084001],[113,33,73,-0.7391476216233707],[113,33,74,-0.7388497500057678],[113,33,75,-0.7385542850522598],[113,33,76,-0.7382612315641839],[113,33,77,-0.7379705942471175],[113,33,78,-0.7376823777104566],[113,33,79,-0.7373965864669849],[113,34,64,-0.7420669381131288],[113,34,65,-0.7417472641946045],[113,34,66,-0.741429949220774],[113,34,67,-0.7411149988405847],[113,34,68,-0.7408024186110913],[113,34,69,-0.7404922139970357],[113,34,70,-0.7401843903704117],[113,34,71,-0.7398789530100344],[113,34,72,-0.7395759071011073],[113,34,73,-0.739275257734805],[113,34,74,-0.7389770099078254],[113,34,75,-0.7386811685219759],[113,34,76,-0.7383877383837422],[113,34,77,-0.7380967242038625],[113,34,78,-0.7378081305969038],[113,34,79,-0.7375219620808319],[113,35,64,-0.7421981229660981],[113,35,65,-0.7418780759305076],[113,35,66,-0.7415603875677678],[113,35,67,-0.7412450635318599],[113,35,68,-0.7409321093848842],[113,35,69,-0.7406215305966398],[113,35,70,-0.7403133325441897],[113,35,71,-0.7400075205114289],[113,35,72,-0.7397040996886528],[113,35,73,-0.7394030751721388],[113,35,74,-0.7391044519636992],[113,35,75,-0.7388082349702667],[113,35,76,-0.7385144290034638],[113,35,77,-0.7382230387791768],[113,35,78,-0.7379340689171311],[113,35,79,-0.7376475239404627],[113,36,64,-0.742329481556953],[113,36,65,-0.7420090622632581],[113,36,66,-0.7416910013675202],[113,36,67,-0.7413753045287405],[113,36,68,-0.7410619773140512],[113,36,69,-0.7407510251982953],[113,36,70,-0.7404424535635905],[113,36,71,-0.7401362676988992],[113,36,72,-0.739832472799595],[113,36,73,-0.7395310739670448],[113,36,74,-0.7392320762081628],[113,36,75,-0.7389354844349939],[113,36,76,-0.738641303464285],[113,36,77,-0.7383495380170576],[113,36,78,-0.7380601927181835],[113,36,79,-0.7377732720959564],[113,37,64,-0.7424610138864493],[113,37,65,-0.7421402231968253],[113,37,66,-0.7418217906272011],[113,37,67,-0.7415057218415843],[113,37,68,-0.7411920224121251],[113,37,69,-0.7408806978186965],[113,37,70,-0.7405717534484577],[113,37,71,-0.7402651945954246],[113,37,72,-0.7399610264600357],[113,37,73,-0.739659254148735],[113,37,74,-0.7393598826735246],[113,37,75,-0.7390629169515495],[113,37,76,-0.7387683618046675],[113,37,77,-0.7384762219590231],[113,37,78,-0.7381865020446222],[113,37,79,-0.7378992065949039],[113,38,64,-0.7425927199529041],[113,38,65,-0.742271558732734],[113,38,66,-0.7419527553515308],[113,38,67,-0.7416363154782945],[113,38,68,-0.7413222446901789],[113,38,69,-0.7410105484720733],[113,38,70,-0.7407012322161652],[113,38,71,-0.7403943012215101],[113,38,72,-0.7400897606935981],[113,38,73,-0.739787615743937],[113,38,74,-0.739487871389604],[113,38,75,-0.7391905325528311],[113,38,76,-0.7388956040605745],[113,38,77,-0.7386030906440888],[113,38,78,-0.7383129969385013],[113,38,79,-0.7380253274823844],[113,39,64,-0.7427245997522491],[113,39,65,-0.7424030688701189],[113,39,66,-0.7420838955428343],[113,39,67,-0.7417670854443729],[113,39,68,-0.7414526441568794],[113,39,69,-0.7411405771702446],[113,39,70,-0.7408308898816707],[113,39,71,-0.7405235875952394],[113,39,72,-0.7402186755214794],[113,39,73,-0.7399161587769484],[113,39,74,-0.7396160423837856],[113,39,75,-0.7393183312692971],[113,39,76,-0.739023030265525],[113,39,77,-0.7387301441088205],[113,39,78,-0.7384396774394208],[113,39,79,-0.7381516348010188],[113,40,64,-0.7428566532780155],[113,40,65,-0.7425347536057085],[113,40,66,-0.7422152112010247],[113,40,67,-0.7418980317429057],[113,40,68,-0.7415832208184718],[113,40,69,-0.7412707839226026],[113,40,70,-0.7409607264575007],[113,40,71,-0.7406530537322603],[113,40,72,-0.7403477709624351],[113,40,73,-0.7400448832696197],[113,40,74,-0.7397443956810024],[113,40,75,-0.7394463131289497],[113,40,76,-0.7391506404505768],[113,40,77,-0.7388573823873197],[113,40,78,-0.7385665435845116],[113,40,79,-0.7382781285909538],[113,41,64,-0.7429888805213174],[113,41,65,-0.7426666129338093],[113,41,66,-0.7423467023235885],[113,41,67,-0.7420291543745459],[113,41,68,-0.741713974678764],[113,41,69,-0.7414011687360966],[113,41,70,-0.7410907419537331],[113,41,71,-0.7407826996457672],[113,41,72,-0.7404770470327632],[113,41,73,-0.7401737892413394],[113,41,74,-0.73987293130372],[113,41,75,-0.739574478157319],[113,41,76,-0.7392784346443116],[113,41,77,-0.7389848055112056],[113,41,78,-0.7386935954084181],[113,41,79,-0.7384048088898459],[113,42,64,-0.7431212814709062],[113,42,65,-0.7427986468463597],[113,42,66,-0.7424783689056383],[113,42,67,-0.7421604533375683],[113,42,68,-0.74184490573918],[113,42,69,-0.7415317316152876],[113,42,70,-0.7412209363780532],[113,42,71,-0.7409125253465558],[113,42,72,-0.7406065037463578],[113,42,73,-0.7403028767090873],[113,42,74,-0.7400016492719909],[113,42,75,-0.7397028263775172],[113,42,76,-0.7394064128728881],[113,42,77,-0.7391124135096706],[113,42,78,-0.7388208329433528],[113,42,79,-0.7385316757329148],[113,43,64,-0.7432538561131476],[113,43,65,-0.7429308553329067],[113,43,66,-0.7426102109398903],[113,43,67,-0.7422919286278457],[113,43,68,-0.7419760139987366],[113,43,69,-0.7416624725623236],[113,43,70,-0.7413513097357279],[113,43,71,-0.7410425308429999],[113,43,72,-0.740736141114686],[113,43,73,-0.7404321456874108],[113,43,74,-0.7401305496034302],[113,43,75,-0.739831357810214],[113,43,76,-0.7395345751600181],[113,43,77,-0.7392402064094554],[113,43,78,-0.7389482562190723],[113,43,79,-0.7386587291529197],[113,44,64,-0.7433866044320436],[113,44,65,-0.7430632383806286],[113,44,66,-0.7427422284166866],[113,44,67,-0.7424235802388713],[113,44,68,-0.7421072994540661],[113,44,69,-0.7417933915769636],[113,44,70,-0.7414818620296297],[113,44,71,-0.7411727161410728],[113,44,72,-0.7408659591468096],[113,44,73,-0.7405615961884477],[113,44,74,-0.7402596323132387],[113,44,75,-0.7399600724736605],[113,44,76,-0.7396629215269895],[113,44,77,-0.739368184234872],[113,44,78,-0.7390758652629],[113,44,79,-0.738785969180182],[113,45,64,-0.7435195264092096],[113,45,65,-0.7431957959743113],[113,45,66,-0.7428744213239716],[113,45,67,-0.7425554081617359],[113,45,68,-0.7422387620993928],[113,45,69,-0.7419244886565528],[113,45,70,-0.7416125932602129],[113,45,71,-0.7413030812443249],[113,45,72,-0.7409959578493625],[113,45,73,-0.7406912282219026],[113,45,74,-0.7403888974141788],[113,45,75,-0.7400889703836641],[113,45,76,-0.7397914519926423],[113,45,77,-0.7394963470077799],[113,45,78,-0.7392036600997015],[113,45,79,-0.738913395842561],[113,46,64,-0.7436526220239279],[113,46,65,-0.7433285280964027],[113,46,66,-0.7430067896473461],[113,46,67,-0.7426874123851812],[113,46,68,-0.7423704019265868],[113,46,69,-0.7420557637960775],[113,46,70,-0.7417435034255668],[113,46,71,-0.7414336261539368],[113,46,72,-0.7411261372266036],[113,46,73,-0.7408210417951001],[113,46,74,-0.7405183449166284],[113,46,75,-0.7402180515536432],[113,46,76,-0.7399201665734225],[113,46,77,-0.7396246947476396],[113,46,78,-0.7393316407519395],[113,46,79,-0.739041009165508],[113,47,64,-0.7437858912531323],[113,47,65,-0.7434614347269966],[113,47,66,-0.7431393333700518],[113,47,67,-0.7428195928955839],[113,47,68,-0.7425022189251481],[113,47,69,-0.7421872169881484],[113,47,70,-0.7418745925214011],[113,47,71,-0.7415643508687036],[113,47,72,-0.7412564972804015],[113,47,73,-0.7409510369129698],[113,47,74,-0.7406479748285653],[113,47,75,-0.7403473159946108],[113,47,76,-0.7400490652833657],[113,47,77,-0.7397532274714971],[113,47,78,-0.7394598072396565],[113,47,79,-0.73916880917205],[113,48,64,-0.7439193340713921],[113,48,65,-0.7435945158438163],[113,48,66,-0.7432720524729542],[113,48,67,-0.74295194967694],[113,48,68,-0.7426342130821906],[113,48,69,-0.7423188482229849],[113,48,70,-0.7420058605410279],[113,48,71,-0.7416952553850188],[113,48,72,-0.7413870380102181],[113,48,73,-0.7410812135780289],[113,48,74,-0.7407777871555499],[113,48,75,-0.7404767637151584],[113,48,76,-0.7401781481340811],[113,48,77,-0.7398819451939666],[113,48,78,-0.7395881595804598],[113,48,79,-0.7392967958827733],[113,49,64,-0.7440529504509658],[113,49,65,-0.7437277714222695],[113,49,66,-0.743404946934598],[113,49,67,-0.7430844827109186],[113,49,68,-0.7427663843824959],[113,49,69,-0.7424506574884691],[113,49,70,-0.7421373074754174],[113,49,71,-0.7418263396969279],[113,49,72,-0.741517759413162],[113,49,73,-0.7412115717904373],[113,49,74,-0.7409077819007802],[113,49,75,-0.7406063947215094],[113,49,76,-0.7403074151348057],[113,49,77,-0.7400108479272851],[113,49,78,-0.7397166977895737],[113,49,79,-0.7394249693158779],[113,50,64,-0.7441867403617854],[113,50,65,-0.7438612014354319],[113,50,66,-0.74353801673119],[113,50,67,-0.7432171919768463],[113,50,68,-0.7428987328084976],[113,50,69,-0.7425826447701296],[113,50,70,-0.7422689333131812],[113,50,71,-0.7419576037961131],[113,50,72,-0.7416486614839735],[113,50,73,-0.7413421115479809],[113,50,74,-0.7410379590650755],[113,50,75,-0.7407362090175036],[113,50,76,-0.7404368662923873],[113,50,77,-0.7401399356812965],[113,50,78,-0.739845421879825],[113,50,79,-0.7395533294871602],[113,51,64,-0.744320703771441],[113,51,65,-0.7439948058540309],[113,51,66,-0.7436712618365839],[113,51,67,-0.7433500774516907],[113,51,68,-0.7430312583402653],[113,51,69,-0.7427148100511255],[113,51,70,-0.7424007380405558],[113,51,71,-0.742089047671876],[113,51,72,-0.7417797442150074],[113,51,73,-0.7414728328460551],[113,51,74,-0.7411683186468596],[113,51,75,-0.740866206604581],[113,51,76,-0.7405665016112689],[113,51,77,-0.7402692084634342],[113,51,78,-0.7399743318616254],[113,51,79,-0.7396818764099976],[113,52,64,-0.7444548406452334],[113,52,65,-0.7441285846465004],[113,52,66,-0.743804682222334],[113,52,67,-0.743483139110114],[113,52,68,-0.7431639609555579],[113,52,69,-0.7428471533123004],[113,52,70,-0.7425327216414572],[113,52,71,-0.742220671311193],[113,52,72,-0.7419110075962878],[113,52,73,-0.7416037356777195],[113,52,74,-0.7412988606422151],[113,52,75,-0.7409963874818349],[113,52,76,-0.7406963210935424],[113,52,77,-0.7403986662787763],[113,52,78,-0.740103427743026],[113,52,79,-0.7398106100954016],[113,53,64,-0.7445891509461522],[113,53,65,-0.7442625377789563],[113,53,66,-0.7439382778576713],[113,53,67,-0.7436163769244508],[113,53,68,-0.7432968406298011],[113,53,69,-0.742979674532159],[113,53,70,-0.7426648840974568],[113,53,71,-0.74235247469869],[113,53,72,-0.7420424516154834],[113,53,73,-0.7417348200336733],[113,53,74,-0.7414295850448596],[113,53,75,-0.7411267516459887],[113,53,76,-0.7408263247389245],[113,53,77,-0.7405283091300201],[113,53,78,-0.7402327095296928],[113,53,79,-0.7399395305519946],[113,54,64,-0.7447236346348974],[113,54,65,-0.7443966652152203],[113,54,66,-0.7440720487095266],[113,54,67,-0.7437497908647295],[113,54,68,-0.7434298973361084],[113,54,69,-0.7431123736868888],[113,54,70,-0.7427972253878041],[113,54,71,-0.7424844578166665],[113,54,72,-0.7421740762579312],[113,54,73,-0.741866085902279],[113,54,74,-0.7415604918461682],[113,54,75,-0.7412572990914182],[113,54,76,-0.7409565125447799],[113,54,77,-0.7406581370175065],[113,54,78,-0.7403621772249303],[113,54,79,-0.7400686377860317],[113,55,64,-0.7448582916698562],[113,55,65,-0.7445309669167947],[113,55,66,-0.7442059947425064],[113,55,67,-0.7438833808986486],[113,55,68,-0.7435631310452594],[113,55,69,-0.7432452507503369],[113,55,70,-0.7429297454894027],[113,55,71,-0.7426166206450703],[113,55,72,-0.7423058815066111],[113,55,73,-0.7419975332695364],[113,55,74,-0.7416915810351492],[113,55,75,-0.7413880298101277],[113,55,76,-0.7410868845060957],[113,55,77,-0.740788149939194],[113,55,78,-0.7404918308296555],[113,55,79,-0.7401979318013768],[113,56,64,-0.7449931220071567],[113,56,65,-0.744665442842918],[113,56,66,-0.7443401159189474],[113,56,67,-0.7440171469916314],[113,56,68,-0.7436965417257515],[113,56,69,-0.7433783056940645],[113,56,70,-0.7430624443768645],[113,56,71,-0.7427489631615525],[113,56,72,-0.7424378673422015],[113,56,73,-0.742129162119139],[113,56,74,-0.7418228525984988],[113,56,75,-0.7415189437918039],[113,56,76,-0.7412174406155375],[113,56,77,-0.7409183478907139],[113,56,78,-0.7406216703424542],[113,56,79,-0.7403274125995568],[113,57,64,-0.7451281256006523],[113,57,65,-0.744800092950548],[113,57,66,-0.7444744121989002],[113,57,67,-0.7441510891068095],[113,57,68,-0.7438301293437861],[113,57,69,-0.7435115384873301],[113,57,70,-0.7431953220224939],[113,57,71,-0.7428814853414509],[113,57,72,-0.742570033743062],[113,57,73,-0.7422609724324564],[113,57,74,-0.7419543065205841],[113,57,75,-0.7416500410237997],[113,57,76,-0.7413481808634316],[113,57,77,-0.7410487308653542],[113,57,78,-0.7407516957595629],[113,57,79,-0.7404570801797448],[113,58,64,-0.7452633024019055],[113,58,65,-0.7449349171943456],[113,58,66,-0.7446088835401129],[113,58,67,-0.7442852072050065],[113,58,68,-0.7439638938632505],[113,58,69,-0.7436449490970731],[113,58,70,-0.7433283783962704],[113,58,71,-0.7430141871577739],[113,58,72,-0.7427023806852173],[113,58,73,-0.7423929641885175],[113,58,74,-0.7420859427834272],[113,58,75,-0.7417813214911175],[113,58,76,-0.7414791052377487],[113,58,77,-0.7411792988540414],[113,58,78,-0.7408819070748522],[113,58,79,-0.7405869345387436],[113,59,64,-0.7453986523602416],[113,59,65,-0.7450699155267295],[113,59,66,-0.7447435298980856],[113,59,67,-0.7444195012447924],[113,59,68,-0.7440978352457728],[113,59,69,-0.7437785374879684],[113,59,70,-0.743461613465904],[113,59,71,-0.7431470685812543],[113,59,72,-0.7428349081424117],[113,59,73,-0.7425251373640663],[113,59,74,-0.7422177613667588],[113,59,75,-0.7419127851764635],[113,59,76,-0.7416102137241585],[113,59,77,-0.7413100518453969],[113,59,78,-0.7410123042798826],[113,59,79,-0.74071697567104],[113,60,64,-0.7455341754227256],[113,60,65,-0.7452050878978517],[113,60,66,-0.7448783512260462],[113,60,67,-0.7445539711824596],[113,60,68,-0.7442319534506983],[113,60,69,-0.7439123036224025],[113,60,70,-0.7435950271968104],[113,60,71,-0.7432801295803257],[113,60,72,-0.7429676160860845],[113,60,73,-0.742657491933536],[113,60,74,-0.7423497622479946],[113,60,75,-0.7420444320602237],[113,60,76,-0.7417415063060051],[113,60,77,-0.7414409898257108],[113,60,78,-0.7411428873638782],[113,60,79,-0.7408472035687805],[113,61,64,-0.7456698715341845],[113,61,65,-0.745340434255621],[113,61,66,-0.7450133474749736],[113,61,67,-0.7446886169720458],[113,61,68,-0.7443662484351118],[113,61,69,-0.7440462474604956],[113,61,70,-0.743728619552134],[113,61,71,-0.7434133701211448],[113,61,72,-0.7431005044853932],[113,61,73,-0.7427900278690729],[113,61,74,-0.7424819454022581],[113,61,75,-0.7421762621204866],[113,61,76,-0.7418729829643301],[113,61,77,-0.7415721127789658],[113,61,78,-0.7412736563137512],[113,61,79,-0.740977618221794],[113,62,64,-0.7458057406371834],[113,62,65,-0.7454759545456783],[113,62,66,-0.7451485185935733],[113,62,67,-0.7448234385653093],[113,62,68,-0.7445007201538134],[113,62,69,-0.744180368960078],[113,62,70,-0.7438623904927236],[113,62,71,-0.7435467901675673],[113,62,72,-0.7432335733071888],[113,62,73,-0.7429227451405114],[113,62,74,-0.742614310802355],[113,62,75,-0.7423082753330178],[113,62,76,-0.7420046436778475],[113,62,77,-0.7417034206868119],[113,62,78,-0.7414046111140751],[113,62,79,-0.7411082196175665],[113,63,64,-0.74594178267208],[113,63,65,-0.7456116487114515],[113,63,66,-0.745283864528332],[113,63,67,-0.7449584359117843],[113,63,68,-0.7446353685593734],[113,63,69,-0.7443146680767445],[113,63,70,-0.743996339977187],[113,63,71,-0.7436803896812023],[113,63,72,-0.74336682251607],[113,63,73,-0.7430556437154289],[113,63,74,-0.7427468584188293],[113,63,75,-0.742440471671316],[113,63,76,-0.7421364884229984],[113,63,77,-0.7418349135286215],[113,63,78,-0.7415357517471418],[113,63,79,-0.7412390077412964],[113,64,64,-0.7460779975770087],[113,64,65,-0.7457475166941387],[113,64,66,-0.7454193852235008],[113,64,67,-0.745093608958764],[113,64,68,-0.7447701936021152],[113,64,69,-0.7444491447638376],[113,64,70,-0.7441304679618743],[113,64,71,-0.7438141686213963],[113,64,72,-0.7435002520743678],[113,64,73,-0.7431887235591287],[113,64,74,-0.7428795882199457],[113,64,75,-0.7425728511065954],[113,64,76,-0.742268517173935],[113,64,77,-0.7419665912814725],[113,64,78,-0.7416670781929429],[113,64,79,-0.7413699825758777],[113,65,64,-0.7462143852878627],[113,65,65,-0.7458835584326924],[113,65,66,-0.7455550806210796],[113,65,67,-0.7452289576512839],[113,65,68,-0.7449051952300991],[113,65,69,-0.7445837989724311],[113,65,70,-0.7442647744008614],[113,65,71,-0.7439481269452153],[113,65,72,-0.7436338619421274],[113,65,73,-0.7433219846346238],[113,65,74,-0.7430125001716729],[113,65,75,-0.7427054136077691],[113,65,76,-0.7424007299025026],[113,65,77,-0.7420984539201307],[113,65,78,-0.7417985904291535],[113,65,79,-0.7415011441018827],[113,66,64,-0.7463509457383506],[113,66,65,-0.7460197738638736],[113,66,66,-0.7456909506608708],[113,66,67,-0.7453644819321771],[113,66,68,-0.7450403733891774],[113,66,69,-0.7447186306513848],[113,66,70,-0.7443992592460045],[113,66,71,-0.7440822646075008],[113,66,72,-0.7437676520771641],[113,66,73,-0.7434554269026915],[113,66,74,-0.7431455942377387],[113,66,75,-0.7428381591415035],[113,66,76,-0.7425331265782952],[113,66,77,-0.7422305014171062],[113,66,78,-0.741930288431187],[113,66,79,-0.7416324922976166],[113,67,64,-0.7464876788599709],[113,67,65,-0.7461561629222276],[113,67,66,-0.7458269952804555],[113,67,67,-0.7455001817420491],[113,67,68,-0.7451757280229689],[113,67,69,-0.7448536397473202],[113,67,70,-0.744533922446916],[113,67,71,-0.7442165815608449],[113,67,72,-0.7439016224350378],[113,67,73,-0.7435890503218484],[113,67,74,-0.7432788703796052],[113,67,75,-0.7429710876721944],[113,67,76,-0.7426657071686305],[113,67,77,-0.7423627337426265],[113,67,78,-0.7420621721721702],[113,67,79,-0.7417640271390932],[113,68,64,-0.7466245845820354],[113,68,65,-0.7462927255401071],[113,68,66,-0.7459632144152165],[113,68,67,-0.7456360570193017],[113,68,68,-0.7453112590728834],[113,68,69,-0.7449888262046431],[113,68,70,-0.7446687639509868],[113,68,71,-0.7443510777556126],[113,68,72,-0.7440357729690764],[113,68,73,-0.7437228548483736],[113,68,74,-0.743412328556491],[113,68,75,-0.7431041991619891],[113,68,76,-0.7427984716385725],[113,68,77,-0.7424951508646614],[113,68,78,-0.7421942416229661],[113,68,79,-0.7418957486000572],[113,69,64,-0.7467616628316445],[113,69,65,-0.7464294616476476],[113,69,66,-0.7460996079983131],[113,69,67,-0.7457721077001073],[113,69,68,-0.7454469664780949],[113,69,69,-0.745124189965519],[113,69,70,-0.7448037837033625],[113,69,71,-0.7444857531399175],[113,69,72,-0.7441701036303505],[113,69,73,-0.743856840436284],[113,69,74,-0.7435459687253476],[113,69,75,-0.7432374935707617],[113,69,76,-0.7429314199509072],[113,69,77,-0.7426277527488965],[113,69,78,-0.7423264967521487],[113,69,79,-0.7420276566519597],[113,70,64,-0.7468989135337422],[113,70,65,-0.7465663711728223],[113,70,66,-0.7462361759607371],[113,70,67,-0.7459083337184649],[113,70,68,-0.7455828501755992],[113,70,69,-0.7452597309699283],[113,70,70,-0.7449389816469973],[113,70,71,-0.7446206076596771],[113,70,72,-0.7443046143677295],[113,70,73,-0.7439910070373889],[113,70,74,-0.7436797908409134],[113,70,75,-0.7433709708561685],[113,70,76,-0.7430645520661968],[113,70,77,-0.7427605393587888],[113,70,78,-0.7424589375260584],[113,70,79,-0.7421597512640125],[113,71,64,-0.7470363366110997],[113,71,65,-0.7467034540414256],[113,71,66,-0.7463729182312951],[113,71,67,-0.7460447350061826],[113,71,68,-0.7457189101001948],[113,71,69,-0.7453954491556491],[113,71,70,-0.7450743577226381],[113,71,71,-0.7447556412585955],[113,71,72,-0.7444393051278635],[113,71,73,-0.7441253546012734],[113,71,74,-0.743813794855697],[113,71,75,-0.7435046309736305],[113,71,76,-0.7431978679427634],[113,71,77,-0.74289351065555],[113,71,78,-0.7425915639087848],[113,71,79,-0.7422920324031718],[113,72,64,-0.7471739319842983],[113,72,65,-0.7468407101770562],[113,72,66,-0.7465098347365924],[113,72,67,-0.7461813114928615],[113,72,68,-0.7458551461844669],[113,72,69,-0.745531344458241],[113,72,70,-0.7452099118688067],[113,72,71,-0.7448908538781461],[113,72,72,-0.7445741758551667],[113,72,73,-0.7442598830752811],[113,72,74,-0.7439479807199605],[113,72,75,-0.7436384738763167],[113,72,76,-0.7433313675366713],[113,72,77,-0.7430266665981287],[113,72,78,-0.7427243758621491],[113,72,79,-0.7424245000341201],[113,73,64,-0.7473116995717846],[113,73,65,-0.7469781395011721],[113,73,66,-0.7466469254010876],[113,73,67,-0.7463180631059497],[113,73,68,-0.7459915583588435],[113,73,69,-0.7456674168110992],[113,73,70,-0.7453456440218559],[113,73,71,-0.7450262454576281],[113,73,72,-0.7447092264918727],[113,73,73,-0.7443945924045698],[113,73,74,-0.7440823483817741],[113,73,75,-0.7437724995151983],[113,73,76,-0.7434650508017825],[113,73,77,-0.7431600071432656],[113,73,78,-0.7428573733457601],[113,73,79,-0.7425571541193222],[113,74,64,-0.7474496392898461],[113,74,65,-0.7471157419330661],[113,74,66,-0.7467841901470681],[113,74,67,-0.7464549897707188],[113,74,68,-0.7461281465515686],[113,74,69,-0.7458036661454307],[113,74,70,-0.7454815541159436],[113,74,71,-0.7451618159341394],[113,74,72,-0.7448444569780095],[113,74,73,-0.7445294825320856],[113,74,74,-0.7442168977869914],[113,74,75,-0.7439067078390256],[113,74,76,-0.7435989176897316],[113,74,77,-0.743293532245469],[113,74,78,-0.742990556316988],[113,74,79,-0.7426899946189995],[113,75,64,-0.7475877510526341],[113,75,65,-0.7472535173898887],[113,75,66,-0.7469216288946733],[113,75,67,-0.7465920914102862],[113,75,68,-0.7462649106887274],[113,75,69,-0.7459400923902766],[113,75,70,-0.7456176420830569],[113,75,71,-0.745297565242602],[113,75,72,-0.7449798672514227],[113,75,73,-0.7446645533985868],[113,75,74,-0.7443516288792721],[113,75,75,-0.7440410987943487],[113,75,76,-0.7437329681499485],[113,75,77,-0.7434272418570371],[113,75,78,-0.7431239247309881],[113,75,79,-0.7428230214911529],[113,76,64,-0.7477260347721386],[113,76,65,-0.7473914657866235],[113,76,66,-0.7470592415618693],[113,76,67,-0.74672936794559],[113,76,68,-0.7464018506942189],[113,76,69,-0.7460766954724871],[113,76,70,-0.7457539078529859],[113,76,71,-0.7454334933157353],[113,76,72,-0.7451154572477495],[113,76,73,-0.7447998049426179],[113,76,74,-0.7444865416000572],[113,76,75,-0.7441756723254938],[113,76,76,-0.7438672021296333],[113,76,77,-0.743561135928033],[113,76,78,-0.743257478540675],[113,76,79,-0.7429562346915376],[113,77,64,-0.7478644903582441],[113,77,65,-0.7475295870361421],[113,77,66,-0.7471970280645046],[113,77,67,-0.7468668192954451],[113,77,68,-0.7465389664898141],[113,77,69,-0.7462134753167776],[113,77,70,-0.7458903513533799],[113,77,71,-0.7455696000841116],[113,77,72,-0.7452512269004751],[113,77,73,-0.7449352371005659],[113,77,74,-0.7446216358886242],[113,77,75,-0.7443104283746177],[113,77,76,-0.7440016195738117],[113,77,77,-0.7436952144063397],[113,77,78,-0.7433912176967784],[113,77,79,-0.7430896341737183],[113,78,64,-0.7480031177187121],[113,78,65,-0.7476678810491876],[113,78,66,-0.747334988316293],[113,78,67,-0.7470044453765253],[113,78,68,-0.7466762579951363],[113,78,69,-0.7463504318457108],[113,78,70,-0.7460269725097302],[113,78,71,-0.7457058854761398],[113,78,72,-0.745387176140915],[113,78,73,-0.7450708498066421],[113,78,74,-0.7447569116820694],[113,78,75,-0.7444453668816916],[113,78,76,-0.7441362204253177],[113,78,77,-0.7438294772376435],[113,78,78,-0.7435251421478257],[113,78,79,-0.7432232198890522],[113,79,64,-0.7481419167591649],[113,79,65,-0.7478063477343571],[113,79,66,-0.7474731222287965],[113,79,67,-0.747142246103347],[113,79,68,-0.7468137251276454],[113,79,69,-0.7464875649796796],[113,79,70,-0.746163771245352],[113,79,71,-0.7458423494180473],[113,79,72,-0.7455233048981978],[113,79,73,-0.7452066429928652],[113,79,74,-0.7448923689152915],[113,79,75,-0.7445804877844822],[113,79,76,-0.7442710046247758],[113,79,77,-0.7439639243654156],[113,79,78,-0.7436592518401235],[113,79,79,-0.7433569917866707],[113,80,64,-0.7482808873831401],[113,80,65,-0.7479449869981574],[113,80,66,-0.7476114297114806],[113,80,67,-0.7472802213883242],[113,80,68,-0.7469513678026933],[113,80,69,-0.7466248746369631],[113,80,70,-0.7463007474814414],[113,80,71,-0.7459789918339359],[113,80,72,-0.7456596130993209],[113,80,73,-0.7453426165891177],[113,80,74,-0.7450280075210463],[113,80,75,-0.7447157910186086],[113,80,76,-0.7444059721106575],[113,80,77,-0.7440985557309686],[113,80,78,-0.743793546717815],[113,80,79,-0.7434909498135364],[113,81,64,-0.7484200294920664],[113,81,65,-0.7480837987449802],[113,81,66,-0.7477499106716896],[113,81,67,-0.747418371141743],[113,81,68,-0.7470891859334984],[113,81,69,-0.7467623607337013],[113,81,70,-0.746437901137049],[113,81,71,-0.7461158126457565],[113,81,72,-0.7457961006691247],[113,81,73,-0.7454787705231187],[113,81,74,-0.7451638274299216],[113,81,75,-0.7448512765175161],[113,81,76,-0.7445411228192547],[113,81,77,-0.7442333712734305],[113,81,78,-0.7439280267228526],[113,81,79,-0.7436250939144156],[113,82,64,-0.7485593429852866],[113,82,65,-0.7482227828771248],[113,82,66,-0.7478885650146695],[113,82,67,-0.747556695271786],[113,82,68,-0.7472271794311687],[113,82,69,-0.7469000231839176],[113,82,70,-0.7465752321291032],[113,82,71,-0.7462528117733327],[113,82,72,-0.7459327675303165],[113,82,73,-0.745615104720449],[113,82,74,-0.7452998285703606],[113,82,75,-0.7449869442124998],[113,82,76,-0.7446764566847034],[113,82,77,-0.7443683709297675],[113,82,78,-0.7440626917950226],[113,82,79,-0.7437594240319029],[113,83,64,-0.7486988277600315],[113,83,65,-0.7483619392947733],[113,83,66,-0.7480273926435426],[113,83,67,-0.7476951936845058],[113,83,68,-0.7473653482046766],[113,83,69,-0.747037861899494],[113,83,70,-0.7467127403723852],[113,83,71,-0.7463899891343335],[113,83,72,-0.7460696136034439],[113,83,73,-0.7457516191045238],[113,83,74,-0.7454360108686355],[113,83,75,-0.7451227940326783],[113,83,76,-0.7448119736389581],[113,83,77,-0.744503554634759],[113,83,78,-0.744197541871918],[113,83,79,-0.7438939401063946],[113,84,64,-0.7488384837114772],[113,84,65,-0.7485012678960461],[113,84,66,-0.7481663934593635],[113,84,67,-0.7478338662838808],[113,84,68,-0.7475036921609148],[113,84,69,-0.7471758767902268],[113,84,70,-0.7468504257795847],[113,84,71,-0.7465273446443317],[113,84,72,-0.7462066388069517],[113,84,73,-0.7458883135966496],[113,84,74,-0.7455723742489043],[113,84,75,-0.7452588259050501],[113,84,76,-0.7449476736118472],[113,84,77,-0.7446389223210528],[113,84,78,-0.7443325768889955],[113,84,79,-0.7440286420761453],[113,85,64,-0.7489783107327268],[113,85,65,-0.7486407685769841],[113,85,66,-0.7483055673611019],[113,85,67,-0.7479727129717988],[113,85,68,-0.747642211204679],[113,85,69,-0.7473140677638089],[113,85,70,-0.7469882882612819],[113,85,71,-0.7466648782167846],[113,85,72,-0.7463438430571638],[113,85,73,-0.7460251881160067],[113,85,74,-0.7457089186331926],[113,85,75,-0.745395039754476],[113,85,76,-0.7450835565310561],[113,85,77,-0.7447744739191478],[113,85,78,-0.7444677967795568],[113,85,79,-0.7441635298772491],[113,86,64,-0.749118308714793],[113,86,65,-0.7487804412315325],[113,86,66,-0.7484449142456246],[113,86,67,-0.7481117336480391],[113,86,68,-0.7477809052386498],[113,86,69,-0.747452434725813],[113,86,70,-0.7471263277259306],[113,86,71,-0.7468025897630168],[113,86,72,-0.7464812262682657],[113,86,73,-0.7461622425796306],[113,86,74,-0.745845643941376],[113,86,75,-0.745531435503661],[113,86,76,-0.7452196223221083],[113,86,77,-0.744910209357376],[113,86,78,-0.7446032014747315],[113,86,79,-0.7442986034436223],[113,87,64,-0.7492584775466548],[113,87,65,-0.7489202857515962],[113,87,66,-0.7485844340077524],[113,87,67,-0.7482509282103277],[113,87,68,-0.7479197741634493],[113,87,69,-0.7475909775797467],[113,87,70,-0.7472645440799137],[113,87,71,-0.7469404791922769],[113,87,72,-0.7466187883523608],[113,87,73,-0.7462994769024691],[113,87,74,-0.7459825500912363],[113,87,75,-0.7456680130732105],[113,87,76,-0.7453558709084227],[113,87,77,-0.7450461285619587],[113,87,78,-0.7447387909035335],[113,87,79,-0.7444338627070604],[113,88,64,-0.7493988171152393],[113,88,65,-0.7490603020270219],[113,88,66,-0.748724126540242],[113,88,67,-0.7483902965543211],[113,88,68,-0.7480588178776237],[113,88,69,-0.7477296962270356],[113,88,70,-0.7474029372275267],[113,88,71,-0.747078546411719],[113,88,72,-0.7467565292194521],[113,88,73,-0.7464368909973642],[113,88,74,-0.7461196369984441],[113,88,75,-0.7458047723816129],[113,88,76,-0.7454923022112953],[113,88,77,-0.7451822314569894],[113,88,78,-0.7448745649928419],[113,88,79,-0.7445693075972184],[113,89,64,-0.7495393273054053],[113,89,65,-0.7492004899455816],[113,89,66,-0.7488639917337685],[113,89,67,-0.7485298385735881],[113,89,68,-0.7481980362776253],[113,89,69,-0.7478685905670054],[113,89,70,-0.7475415070709586],[113,89,71,-0.7472167913263856],[113,89,72,-0.7468944487774252],[113,89,73,-0.7465744847750344],[113,89,74,-0.74625690457654],[113,89,75,-0.7459417133452215],[113,89,76,-0.745628916149881],[113,89,77,-0.7453185179644141],[113,89,78,-0.7450105236673845],[113,89,79,-0.7447049380415944],[113,90,64,-0.7496800079999981],[113,90,65,-0.7493408493930278],[113,90,66,-0.7490040294769817],[113,90,67,-0.7486695541596659],[113,90,68,-0.7483374292578684],[113,90,69,-0.7480076604969385],[113,90,70,-0.7476802535103487],[113,90,71,-0.7473552138392636],[113,90,72,-0.7470325469321043],[113,90,73,-0.7467122581441308],[113,90,74,-0.7463943527369923],[113,90,75,-0.7460788358783108],[113,90,76,-0.7457657126412507],[113,90,77,-0.7454549880040895],[113,90,78,-0.7451466668497929],[113,90,79,-0.7448407539655852],[113,91,64,-0.7498208590798249],[113,91,65,-0.7494813802530683],[113,91,66,-0.7491442396564807],[113,91,67,-0.7488094432020345],[113,91,68,-0.7484769967107048],[113,91,69,-0.7481469059120471],[113,91,70,-0.7478191764437614],[113,91,71,-0.7474938138512583],[113,91,72,-0.7471708235872261],[113,91,73,-0.7468502110112112],[113,91,74,-0.7465319813891695],[113,91,75,-0.7462161398930501],[113,91,76,-0.745902691600364],[113,91,77,-0.7455916414937556],[113,91,78,-0.7452829944605773],[113,91,79,-0.7449767552924602],[113,92,64,-0.7499618804236778],[113,92,65,-0.7496220824073899],[113,92,66,-0.7492846221568366],[113,92,67,-0.7489495055881401],[113,92,68,-0.7486167385264455],[113,92,69,-0.7482863267054983],[113,92,70,-0.7479582757672084],[113,92,71,-0.7476325912612171],[113,92,72,-0.747309278644463],[113,92,73,-0.7469883432807632],[113,92,74,-0.7466697904403649],[113,92,75,-0.7463536252995278],[113,92,76,-0.746039852940094],[113,92,77,-0.7457284783490598],[113,92,78,-0.7454195064181491],[113,92,79,-0.7451129419433847],[113,93,64,-0.750103071908308],[113,93,65,-0.7497629557356316],[113,93,66,-0.749425176860567],[113,93,67,-0.7490897412033692],[113,93,68,-0.748756654593336],[113,93,69,-0.7484259227683863],[113,93,70,-0.7480975513746235],[113,93,71,-0.7477715459659028],[113,93,72,-0.7474479120033974],[113,93,73,-0.7471266548551788],[113,93,74,-0.7468077797957691],[113,93,75,-0.7464912920057234],[113,93,76,-0.7461771965711997],[113,93,77,-0.7458654984835299],[113,93,78,-0.7455562026387945],[113,93,79,-0.7452493138373932],[113,94,64,-0.7502444334084823],[113,94,65,-0.7499040001154421],[113,94,66,-0.7495659036481928],[113,94,67,-0.7492301499311047],[113,94,68,-0.7488967447976118],[113,94,69,-0.7485656939897896],[113,94,70,-0.7482370031579184],[113,94,71,-0.7479106778600508],[113,94,72,-0.747586723561578],[113,94,73,-0.74726514563481],[113,94,74,-0.7469459493585278],[113,94,75,-0.7466291399175662],[113,94,76,-0.7463147224023831],[113,94,77,-0.746002701808631],[113,94,78,-0.7456930830367318],[113,94,79,-0.7453858708914464],[113,95,64,-0.7503859647969652],[113,95,65,-0.750045215422461],[113,95,66,-0.7497068023982194],[113,95,67,-0.7493707316527085],[113,95,68,-0.7490370090234817],[113,95,69,-0.7487056402567538],[113,95,70,-0.7483766310069655],[113,95,71,-0.7480499868363506],[113,95,72,-0.7477257132145017],[113,95,73,-0.747403815517951],[113,95,74,-0.7470842990297227],[113,95,75,-0.7467671689389153],[113,95,76,-0.746452430340271],[113,95,77,-0.7461400882337474],[113,95,78,-0.7458301475240922],[113,95,79,-0.7455226130204128],[113,96,64,-0.7505276659445013],[113,96,65,-0.7501866015303024],[113,96,66,-0.74984787298712],[113,96,67,-0.7495114862475037],[113,96,68,-0.7491774471531087],[113,96,69,-0.7488457614542726],[113,96,70,-0.7485164348095797],[113,96,71,-0.748189472785428],[113,96,72,-0.7478648808555955],[113,96,73,-0.7475426644008206],[113,96,74,-0.7472228287083543],[113,96,75,-0.7469053789715429],[113,96,76,-0.7465903202893971],[113,96,77,-0.7462776576661643],[113,96,78,-0.7459673960109025],[113,96,79,-0.7456595401370505],[113,97,64,-0.7506695367198718],[113,97,65,-0.7503281583106096],[113,97,66,-0.7499891152893914],[113,97,67,-0.7496524135928307],[113,97,68,-0.7493180590666674],[113,97,69,-0.748986057465345],[113,97,70,-0.7486564144515746],[113,97,71,-0.7483291355959019],[113,97,72,-0.7480042263762738],[113,97,73,-0.7476816921776185],[113,97,74,-0.7473615382913978],[113,97,75,-0.7470437699151898],[113,97,76,-0.7467283921522583],[113,97,77,-0.7464154100111244],[113,97,78,-0.7461048284051413],[113,97,79,-0.7457966521520636],[113,98,64,-0.7508115769898687],[113,98,65,-0.750469885633031],[113,98,66,-0.7501305291775284],[113,98,67,-0.7497935135640216],[113,98,68,-0.7494588446423175],[113,98,69,-0.7491265281709488],[113,98,70,-0.7487965698167366],[113,98,71,-0.7484689751543577],[113,98,72,-0.7481437496659112],[113,98,73,-0.747820898740499],[113,98,74,-0.7475004276737772],[113,98,75,-0.74718234166754],[113,98,76,-0.7468666458292884],[113,98,77,-0.7465533451718016],[113,98,78,-0.7462424446127124],[113,98,79,-0.7459339489740764],[113,99,64,-0.7509537866193181],[113,99,65,-0.7506117833652419],[113,99,66,-0.750272114522047],[113,99,67,-0.7499347860344229],[113,99,68,-0.7495998037562273],[113,99,69,-0.7492671734500644],[113,99,70,-0.7489369007868487],[113,99,71,-0.7486089913453711],[113,99,72,-0.7482834506118666],[113,99,73,-0.7479602839795941],[113,99,74,-0.7476394967483886],[113,99,75,-0.7473210941242436],[113,99,76,-0.7470050812188817],[113,99,77,-0.7466914630493244],[113,99,78,-0.7463802445374689],[113,99,79,-0.7460714305096559],[113,100,64,-0.7510961654710537],[113,100,65,-0.7507538513729196],[113,100,66,-0.7504138711914581],[113,100,67,-0.7500762308753706],[113,100,68,-0.7497409362825476],[113,100,69,-0.7494079931796483],[113,100,70,-0.7490774072416633],[113,100,71,-0.7487491840514813],[113,100,72,-0.7484233290994563],[113,100,73,-0.7480998477829879],[113,100,74,-0.7477787454060734],[113,100,75,-0.74746002717889],[113,100,76,-0.7471436982173656],[113,100,77,-0.7468297635427489],[113,100,78,-0.7465182280811851],[113,100,79,-0.7462090966632853],[113,101,64,-0.7512387134059741],[113,101,65,-0.7508960895197995],[113,101,66,-0.7505557990523246],[113,101,67,-0.7502178479562451],[113,101,68,-0.749882242093468],[113,101,69,-0.7495489872346897],[113,101,70,-0.7492180890589597],[113,101,71,-0.7488895531532479],[113,101,72,-0.7485633850120108],[113,101,73,-0.7482395900367723],[113,101,74,-0.7479181735356755],[113,101,75,-0.7475991407230652],[113,101,76,-0.7472824967190588],[113,101,77,-0.746968246549116],[113,101,78,-0.7466563951436148],[113,101,79,-0.7463469473374214],[113,102,64,-0.7513814302830251],[113,102,65,-0.751038497667657],[113,102,66,-0.750697897969243],[113,102,67,-0.7503596371444554],[113,102,68,-0.7500237210591996],[113,102,69,-0.7496901554881925],[113,102,70,-0.7493589461145256],[113,102,71,-0.7490300985292332],[113,102,72,-0.7487036182308574],[113,102,73,-0.7483795106250296],[113,102,74,-0.7480577810240228],[113,102,75,-0.7477384346463334],[113,102,76,-0.7474214766162516],[113,102,77,-0.7471069119634328],[113,102,78,-0.7467947456224724],[113,102,79,-0.7464849824324751],[113,103,64,-0.7515243159591802],[113,103,65,-0.7511810756762899],[113,103,66,-0.7508401678048257],[113,103,67,-0.7505015983054188],[113,103,68,-0.7501653730479559],[113,103,69,-0.7498314978111572],[113,103,70,-0.7494999782821393],[113,103,71,-0.7491708200559833],[113,103,72,-0.7488440286353006],[113,103,73,-0.7485196094298139],[113,103,74,-0.7481975677559092],[113,103,75,-0.7478779088362181],[113,103,76,-0.7475606377991884],[113,103,77,-0.7472457596786548],[113,103,78,-0.7469332794134139],[113,103,79,-0.7466232018467946],[113,104,64,-0.7516673702894995],[113,104,65,-0.7513238234035753],[113,104,66,-0.7509826084197574],[113,104,67,-0.7506437313026192],[113,104,68,-0.7503071979260107],[113,104,69,-0.7499730140726381],[113,104,70,-0.7496411854336259],[113,104,71,-0.7493117176080853],[113,104,72,-0.7489846161026803],[113,104,73,-0.748659886331208],[113,104,74,-0.7483375336141509],[113,104,75,-0.7480175631782602],[113,104,76,-0.7476999801561244],[113,104,77,-0.7473847895857416],[113,104,78,-0.7470719964100947],[113,104,79,-0.7467616054767204],[113,105,64,-0.751810593127102],[113,105,65,-0.7514667407054424],[113,105,66,-0.7511252196727696],[113,105,67,-0.7507860359975801],[113,105,68,-0.7504491955576709],[113,105,69,-0.750114704139716],[113,105,70,-0.7497825674388314],[113,105,71,-0.7494527910581411],[113,105,72,-0.7491253805083445],[113,105,73,-0.7488003412072968],[113,105,74,-0.7484776784795608],[113,105,75,-0.74815739755599],[113,105,76,-0.7478395035732984],[113,105,77,-0.7475240015736317],[113,105,78,-0.7472108965041426],[113,105,79,-0.7469001932165601],[113,106,64,-0.7519539843231894],[113,106,65,-0.7516098274358974],[113,106,66,-0.7512680014206627],[113,106,67,-0.7509285122498885],[113,106,68,-0.7505913658053001],[113,106,69,-0.7502565678775228],[113,106,70,-0.7499241241656459],[113,106,71,-0.74959404027679],[113,106,72,-0.749266321725673],[113,106,73,-0.7489409739341909],[113,106,74,-0.7486180022309705],[113,106,75,-0.7482974118509518],[113,106,76,-0.7479792079349574],[113,106,77,-0.7476633955292648],[113,106,78,-0.7473499795851806],[113,106,79,-0.7470389649586108],[113,107,64,-0.75209754372702],[113,107,65,-0.7517530834469957],[113,107,66,-0.7514109535182811],[113,107,67,-0.751071159917168],[113,107,68,-0.7507337085292924],[113,107,69,-0.7503986051492137],[113,107,70,-0.7500658554799774],[113,107,71,-0.7497354651326831],[113,107,72,-0.7494074396260502],[113,107,73,-0.7490817843859995],[113,107,74,-0.7487585047452048],[113,107,75,-0.7484376059426759],[113,107,76,-0.7481190931233285],[113,107,77,-0.7478029713375549],[113,107,78,-0.7474892455408005],[113,107,79,-0.7471779205931324],[113,108,64,-0.7522412711859654],[113,108,65,-0.7518965085888998],[113,108,66,-0.7515540758185693],[113,108,67,-0.7512139788551359],[113,108,68,-0.7508762235881293],[113,108,69,-0.7505408158160253],[113,108,70,-0.7502077612458081],[113,108,71,-0.7498770654925393],[113,108,72,-0.7495487340789231],[113,108,73,-0.749222772434888],[113,108,74,-0.7488991858971382],[113,108,75,-0.7485779797087371],[113,108,76,-0.7482591590186765],[113,108,77,-0.7479427288814484],[113,108,78,-0.7476286942566204],[113,108,79,-0.7473170600084051],[113,109,64,-0.7523851665454927],[113,109,65,-0.7520401027098609],[113,109,66,-0.7516973681725533],[113,109,67,-0.751356968917585],[113,109,68,-0.7510189108383613],[113,109,69,-0.7506831997372564],[113,109,70,-0.7503498413251766],[113,109,71,-0.7500188412211277],[113,109,72,-0.7496902049517823],[113,109,73,-0.7493639379510592],[113,109,74,-0.7490400455596765],[113,109,75,-0.7487185330247346],[113,109,76,-0.7483994054992854],[113,109,77,-0.7480826680419045],[113,109,78,-0.7477683256162653],[113,109,79,-0.7474563830907102],[113,110,64,-0.7525292296491454],[113,110,65,-0.7521838656562001],[113,110,66,-0.7518408304293234],[113,110,67,-0.7515001299563653],[113,110,68,-0.7511617701345892],[113,110,69,-0.7508257567702503],[113,110,70,-0.7504920955781591],[113,110,71,-0.7501607921812492],[113,110,72,-0.7498318521101434],[113,110,73,-0.7495052808027346],[113,110,74,-0.7491810836037381],[113,110,75,-0.7488592657642748],[113,110,76,-0.7485398324414402],[113,110,77,-0.7482227886978767],[113,110,78,-0.7479081395013486],[113,110,79,-0.7475958897243117],[113,111,64,-0.7526734603386019],[113,111,65,-0.7523277972723665],[113,111,66,-0.7519844624360907],[113,111,67,-0.7516434618214415],[113,111,68,-0.7513048013295223],[113,111,69,-0.7509684867704517],[113,111,70,-0.7506345238629274],[113,111,71,-0.7503029182337928],[113,111,72,-0.7499736754176045],[113,111,73,-0.7496468008562123],[113,111,74,-0.7493222998983119],[113,111,75,-0.7490001777990278],[113,111,76,-0.7486804397194831],[113,111,77,-0.748363090726371],[113,111,78,-0.7480481357915298],[113,111,79,-0.7477355797915137],[113,112,64,-0.7528178584536477],[113,112,65,-0.7524718974009099],[113,112,66,-0.7521282640381605],[113,112,67,-0.7517869643608653],[113,112,68,-0.7514480042739503],[113,112,69,-0.7511113895913799],[113,112,70,-0.7507771260357208],[113,112,71,-0.7504452192377097],[113,112,72,-0.7501156747358192],[113,112,73,-0.7497884979758392],[113,112,74,-0.7494636943104291],[113,112,75,-0.7491412689987005],[113,112,76,-0.7488212272057874],[113,112,77,-0.7485035740024174],[113,112,78,-0.7481883143644872],[113,112,79,-0.7478754531726328],[113,113,64,-0.7529624238321995],[113,113,65,-0.7526161658825044],[113,113,66,-0.7522722350789558],[113,113,67,-0.7519306374208004],[113,113,68,-0.7515913788167683],[113,113,69,-0.7512544650846524],[113,113,70,-0.7509199019508711],[113,113,71,-0.7505876950500364],[113,113,72,-0.7502578499245203],[113,113,73,-0.7499303720240355],[113,113,74,-0.7496052667051882],[113,113,75,-0.7492825392310605],[113,113,76,-0.7489621947707805],[113,113,77,-0.7486442383990946],[113,113,78,-0.748328675095941],[113,113,79,-0.748015509746022],[113,114,64,-0.7531071563102785],[113,114,65,-0.7527606025559219],[113,114,66,-0.7524163753999906],[113,114,67,-0.752074480845494],[113,114,68,-0.7517349248049487],[113,114,69,-0.751397713099958],[113,114,70,-0.7510628514607742],[113,114,71,-0.7507303455258678],[113,114,72,-0.7504002008414924],[113,114,73,-0.7500724228612667],[113,114,74,-0.7497470169457268],[113,114,75,-0.7494239883619082],[113,114,76,-0.7491033422829174],[113,114,77,-0.7487850837875021],[113,114,78,-0.7484692178596268],[113,114,79,-0.7481557493880434],[113,115,64,-0.7532520557220677],[113,115,65,-0.7529052072580895],[113,115,66,-0.7525606848409276],[113,115,67,-0.7522184944773357],[113,115,68,-0.7518786420835994],[113,115,69,-0.7515411334851141],[113,115,70,-0.7512059744159488],[113,115,71,-0.7508731705184145],[113,115,72,-0.7505427273426296],[113,115,73,-0.7502146503461016],[113,115,74,-0.7498889448932791],[113,115,75,-0.749565616255135],[113,115,76,-0.7492446696087369],[113,115,77,-0.7489261100368177],[113,115,78,-0.748609942527352],[113,115,79,-0.7482961719731254],[113,116,64,-0.753397121899893],[113,116,65,-0.7530499798240706],[113,116,66,-0.7527051632395588],[113,116,67,-0.7523626781568382],[113,116,68,-0.7520225304959445],[113,116,69,-0.7516847260860481],[113,116,70,-0.7513492706650168],[113,116,71,-0.7510161698789845],[113,116,72,-0.750685429281917],[113,116,73,-0.7503570543351933],[113,116,74,-0.7500310504071579],[113,116,75,-0.7497074227727043],[113,116,76,-0.749386176612844],[113,116,77,-0.7490673170142794],[113,116,78,-0.7487508489689781],[113,116,79,-0.7484367773737438],[113,117,64,-0.7535423546742059],[113,117,65,-0.7531949200870467],[113,117,66,-0.7528498104317881],[113,117,67,-0.7525070317226187],[113,117,68,-0.7521665898833066],[113,117,69,-0.7518284907467789],[113,117,70,-0.751492740054685],[113,117,71,-0.7511593434569639],[113,117,72,-0.7508283065114113],[113,117,73,-0.7504996346832608],[113,117,74,-0.7501733333447356],[113,117,75,-0.7498494077746323],[113,117,76,-0.7495278631578906],[113,117,77,-0.7492087045851653],[113,117,78,-0.7488919370524012],[113,117,79,-0.7485775654604034],[113,118,64,-0.7536877538736397],[113,118,65,-0.753340027878375],[113,118,66,-0.7529946262516878],[113,118,67,-0.7526515550114564],[113,118,68,-0.7523108200851635],[113,118,69,-0.751972427309475],[113,118,70,-0.751636382429803],[113,118,71,-0.751302691099875],[113,118,72,-0.7509713588812993],[113,118,73,-0.7506423912431461],[113,118,74,-0.7503157935615007],[113,118,75,-0.749991571119046],[113,118,76,-0.7496697291046331],[113,118,77,-0.7493502726128524],[113,118,78,-0.7490332066436094],[113,118,79,-0.7487185361016949],[113,119,64,-0.7538333193249914],[113,119,65,-0.7534853030275694],[113,119,66,-0.7531396105314807],[113,119,67,-0.7527962478582746],[113,119,68,-0.7524552209391301],[113,119,69,-0.7521165356144339],[113,119,70,-0.751780197633344],[113,119,71,-0.7514462126533576],[113,119,72,-0.7511145862398783],[113,119,73,-0.7507853238657959],[113,119,74,-0.7504584309110405],[113,119,75,-0.7501339126621644],[113,119,76,-0.7498117743119133],[113,119,77,-0.7494920209587966],[113,119,78,-0.7491746576066645],[113,119,79,-0.7488596891642765],[113,120,64,-0.7539790508532036],[113,120,65,-0.7536307453622829],[113,120,66,-0.753284763101521],[113,120,67,-0.7529411100961209],[113,120,68,-0.7525997922809394],[113,120,69,-0.752260815500066],[113,120,70,-0.7519241855063861],[113,120,71,-0.7515899079611497],[113,120,72,-0.7512579884335375],[113,120,73,-0.7509284324002423],[113,120,74,-0.7506012452450213],[113,120,75,-0.7502764322582796],[113,120,76,-0.7499539986366399],[113,120,77,-0.7496339494825147],[113,120,78,-0.7493162898036819],[113,120,79,-0.7490010245128544],[113,121,64,-0.7541249482814217],[113,121,65,-0.7537763547083636],[113,121,66,-0.7534300837903524],[113,121,67,-0.7530861415562259],[113,121,68,-0.7527445339445004],[113,121,69,-0.7524052668029501],[113,121,70,-0.7520683458881701],[113,121,71,-0.7517337768651453],[113,121,72,-0.7514015653068163],[113,121,73,-0.7510717166936608],[113,121,74,-0.7507442364132464],[113,121,75,-0.7504191297598135],[113,121,76,-0.7500964019338457],[113,121,77,-0.7497760580416415],[113,121,78,-0.74945810309489],[113,121,79,-0.7491425420102407],[113,122,64,-0.7542710114309665],[113,122,65,-0.753922130889829],[113,122,66,-0.7535755724246805],[113,122,67,-0.753231342067975],[113,122,68,-0.7528894457618704],[113,122,69,-0.7525498893578071],[113,122,70,-0.7522126786160723],[113,122,71,-0.7518778192053676],[113,122,72,-0.751545316702376],[113,122,73,-0.7512151765913427],[113,122,74,-0.7508874042636284],[113,122,75,-0.7505620050172921],[113,122,76,-0.7502389840566608],[113,122,77,-0.7499183464919025],[113,122,78,-0.7496000973386008],[113,122,79,-0.7492842415173262],[113,123,64,-0.7544172401213586],[113,123,65,-0.7540680737288891],[113,123,66,-0.7537212288293967],[113,123,67,-0.7533767114589333],[113,123,68,-0.7530345275632793],[113,123,69,-0.7526946829975238],[113,123,70,-0.7523571835256279],[113,123,71,-0.752022034819992],[113,123,72,-0.7516892424610238],[113,123,73,-0.7513588119367189],[113,123,74,-0.7510307486422134],[113,123,75,-0.7507050578793675],[113,123,76,-0.7503817448563354],[113,123,77,-0.7500608146871373],[113,123,78,-0.7497422723912351],[113,123,79,-0.7494261228931032],[113,124,64,-0.7545636341702907],[113,124,65,-0.7542141830459193],[113,124,66,-0.7538670528275512],[113,124,67,-0.7535222495548168],[113,124,68,-0.7531797791771019],[113,124,69,-0.7528396475531254],[113,124,70,-0.7525018604505036],[113,124,71,-0.7521664235453189],[113,124,72,-0.7518333424216858],[113,124,73,-0.7515026225713323],[113,124,74,-0.7511742693931528],[113,124,75,-0.7508482881927915],[113,124,76,-0.7505246841822126],[113,124,77,-0.750203462479272],[113,124,78,-0.7498846281072935],[113,124,79,-0.7495681859946384],[113,125,64,-0.7547101933936857],[113,125,65,-0.7543604586595181],[113,125,66,-0.7540130442404098],[113,125,67,-0.7536679561795518],[113,125,68,-0.7533252004299158],[113,125,69,-0.7529847828538325],[113,125,70,-0.7526467092225562],[113,125,71,-0.7523109852158321],[113,125,72,-0.7519776164214642],[113,125,73,-0.7516466083348955],[113,125,74,-0.7513179663587612],[113,125,75,-0.7509916958024727],[113,125,76,-0.7506678018817866],[113,125,77,-0.7503462897183779],[113,125,78,-0.7500271643394151],[113,125,79,-0.7497104306771307],[113,126,64,-0.7548569176056777],[113,126,65,-0.7545069003864886],[113,126,66,-0.7541592028874367],[113,126,67,-0.7538138311552548],[113,126,68,-0.7534707911464824],[113,126,69,-0.7531300887270437],[113,126,70,-0.7527917296718121],[113,126,71,-0.7524557196641788],[113,126,72,-0.7521220642956186],[113,126,73,-0.7517907690652721],[113,126,74,-0.7514618393794983],[113,126,75,-0.7511352805514576],[113,126,76,-0.7508110978006828],[113,126,77,-0.7504892962526508],[113,126,78,-0.7501698809383581],[113,126,79,-0.7498528567938918],[113,127,64,-0.7550038066185933],[113,127,65,-0.7546535080418191],[113,127,66,-0.7543055285862741],[113,127,67,-0.7539598743022145],[113,127,68,-0.7536165511497283],[113,127,69,-0.7532755649983153],[113,127,70,-0.7529369216264501],[113,127,71,-0.7526006267211512],[113,127,72,-0.7522666858775471],[113,127,73,-0.7519351045984578],[113,127,74,-0.7516058882939486],[113,127,75,-0.751279042280912],[113,127,76,-0.7509545717826396],[113,127,77,-0.750632481928393],[113,127,78,-0.7503127777529807],[113,127,79,-0.7499954641963272],[113,128,64,-0.7551508602430097],[113,128,65,-0.7548002814387416],[113,128,66,-0.7544520211528012],[113,128,67,-0.7541060854389486],[113,128,68,-0.7537624802608027],[113,128,69,-0.75342121149142],[113,128,70,-0.753082284912858],[113,128,71,-0.7527457062157445],[113,128,72,-0.7524114809988436],[113,128,73,-0.7520796147686375],[113,128,74,-0.7517501129388797],[113,128,75,-0.751422980830178],[113,128,76,-0.7510982236695652],[113,128,77,-0.7507758465900711],[113,128,78,-0.7504558546302986],[113,128,79,-0.7501382527339937],[113,129,64,-0.7552980782877265],[113,129,65,-0.7549472203887039],[113,129,66,-0.7545986804011057],[113,129,67,-0.7542524643821777],[113,129,68,-0.7539085782990507],[113,129,69,-0.7535670280283192],[113,129,70,-0.7532278193556058],[113,129,71,-0.7528909579751291],[113,129,72,-0.752556449489271],[113,129,73,-0.7522242994081585],[113,129,74,-0.7518945131492154],[113,129,75,-0.7515670960367472],[113,129,76,-0.751242053301511],[113,129,77,-0.7509193900802879],[113,129,78,-0.750599111415458],[113,129,79,-0.7502812222545723],[113,130,64,-0.7554454605597907],[113,130,65,-0.7550943247013937],[113,130,66,-0.7547455061435088],[113,130,67,-0.7543990109468481],[113,130,68,-0.7540548450820359],[113,130,69,-0.7537130144291865],[113,130,70,-0.7533735247774687],[113,130,71,-0.7530363818246741],[113,130,72,-0.7527015911767848],[113,130,73,-0.7523691583475536],[113,130,74,-0.7520390887580581],[113,130,75,-0.7517113877362838],[113,130,76,-0.7513860605166948],[113,130,77,-0.7510631122398059],[113,130,78,-0.7507425479517584],[113,130,79,-0.7504243726038913],[113,131,64,-0.7555930068644684],[113,131,65,-0.7552415941847113],[113,131,66,-0.7548924981905366],[113,131,67,-0.7545457249461047],[113,131,68,-0.754201280425514],[113,131,69,-0.7538591705123803],[113,131,70,-0.7535194009994002],[113,131,71,-0.7531819775879203],[113,131,72,-0.7528469058875045],[113,131,73,-0.7525141914155139],[113,131,74,-0.752183839596662],[113,131,75,-0.751855855762597],[113,131,76,-0.7515302451514725],[113,131,77,-0.7512070129075202],[113,131,78,-0.7508861640806255],[113,131,79,-0.7505677036258984],[113,132,64,-0.7557407170053029],[113,132,65,-0.7553890286448266],[113,132,66,-0.7550396563509789],[113,132,67,-0.7546926061913486],[113,132,68,-0.7543478841434901],[113,132,69,-0.7540054960945017],[113,132,70,-0.7536654478405898],[113,132,71,-0.7533277450866376],[113,132,72,-0.7529923934457723],[113,132,73,-0.7526593984389464],[113,132,74,-0.7523287654944907],[113,132,75,-0.7520004999476989],[113,132,76,-0.7516746070403968],[113,132,77,-0.7513510919205157],[113,132,78,-0.7510299596416683],[113,132,79,-0.7507112151627187],[113,133,64,-0.7558885907840962],[113,133,65,-0.7555366278861617],[113,133,66,-0.7551869804318694],[113,133,67,-0.7548396544922185],[113,133,68,-0.7544946560481998],[113,133,69,-0.7541519909903758],[113,133,70,-0.753811665118444],[113,133,71,-0.7534736841408062],[113,133,72,-0.7531380536741347],[113,133,73,-0.752804779242955],[113,133,74,-0.7524738662791983],[113,133,75,-0.7521453201217855],[113,133,76,-0.7518191460161978],[113,133,77,-0.7514953491140487],[113,133,78,-0.7511739344726609],[113,133,79,-0.7508549070546361],[113,134,64,-0.7560366280008893],[113,134,65,-0.7556843917113703],[113,134,66,-0.7553344702384676],[113,134,67,-0.7549868696565711],[113,134,68,-0.7546415959500901],[113,134,69,-0.754298655013032],[113,134,70,-0.7539580526485671],[113,134,71,-0.753619794568597],[113,134,72,-0.7532838863933216],[113,134,73,-0.7529503336508213],[113,134,74,-0.7526191417766097],[113,134,75,-0.7522903161132175],[113,134,76,-0.7519638619097634],[113,134,77,-0.7516397843215263],[113,134,78,-0.7513180884095219],[113,134,79,-0.7509987791400725],[113,135,64,-0.756184828454021],[113,135,65,-0.7558323199213969],[113,135,66,-0.755482125574316],[113,135,67,-0.7551342514905401],[113,135,68,-0.7547887036578774],[113,135,69,-0.7544454879737622],[113,135,70,-0.7541046102448187],[113,135,71,-0.7537660761864301],[113,135,72,-0.7534298914223057],[113,135,73,-0.7530960614840625],[113,135,74,-0.7527645918107788],[113,135,75,-0.7524354877485776],[113,135,76,-0.7521087545501977],[113,135,77,-0.751784397374566],[113,135,78,-0.7514624212863737],[113,135,79,-0.7511428312556475],[113,136,64,-0.7563331919400997],[113,136,65,-0.7559804123154485],[113,136,66,-0.755629946241213],[113,136,67,-0.7552817997985075],[113,136,68,-0.7549359789785204],[113,136,69,-0.7545924896820937],[113,136,70,-0.7542513377192872],[113,136,71,-0.7539125288089472],[113,136,72,-0.7535760685782742],[113,136,73,-0.7532419625624039],[113,136,74,-0.7529102162039613],[113,136,75,-0.7525808348526437],[113,136,76,-0.752253823764793],[113,136,77,-0.7519291881029664],[113,136,78,-0.751606932935514],[113,136,79,-0.751287063236149],[113,137,64,-0.7564817182540275],[113,137,65,-0.7561286686910191],[113,137,66,-0.7557779320392366],[113,137,67,-0.755429514383128],[113,137,68,-0.7550834217172427],[113,137,69,-0.7547396599458119],[113,137,70,-0.7543982348823123],[113,137,71,-0.7540591522490349],[113,137,72,-0.7537224176766527],[113,137,73,-0.7533880367038022],[113,137,74,-0.7530560147766372],[113,137,75,-0.7527263572484121],[113,137,76,-0.7523990693790534],[113,137,77,-0.7520741563347318],[113,137,78,-0.7517516231874388],[113,137,79,-0.7514314749145578],[113,138,64,-0.7566304071889727],[113,138,65,-0.756277088843861],[113,138,66,-0.7559260827667165],[113,138,67,-0.7555773950453009],[113,138,68,-0.7552310316775062],[113,138,69,-0.7548869985709337],[113,138,70,-0.7545453015424579],[113,138,71,-0.7542059463177966],[113,138,72,-0.7538689385310768],[113,138,73,-0.7535342837244178],[113,138,74,-0.7532019873474839],[113,138,75,-0.7528720547570689],[113,138,76,-0.7525444912166666],[113,138,77,-0.7522193018960435],[113,138,78,-0.7518964918708155],[113,138,79,-0.7515760661220188],[113,139,64,-0.7567792585364276],[113,139,65,-0.756425672568044],[113,139,66,-0.756074398220292],[113,139,67,-0.7557254415842285],[113,139,68,-0.7553788086610684],[113,139,69,-0.7550345053617642],[113,139,70,-0.7546925375065702],[113,139,71,-0.7543529108246113],[113,139,72,-0.7540156309534511],[113,139,73,-0.7536807034386729],[113,139,74,-0.753348133733434],[113,139,75,-0.7530179271980493],[113,139,76,-0.7526900890995624],[113,139,77,-0.7523646246113185],[113,139,78,-0.7520415388125403],[113,139,79,-0.7517208366878998],[113,140,64,-0.7569282720861894],[113,140,65,-0.7565744196559355],[113,140,66,-0.7562228781948938],[113,140,67,-0.7558736537973969],[113,140,68,-0.7555267524679637],[113,140,69,-0.7551821801208791],[113,140,70,-0.754839942579758],[113,140,71,-0.7545000455771143],[113,140,72,-0.7541624947539293],[113,140,73,-0.7538272956592325],[113,140,74,-0.7534944537496556],[113,140,75,-0.7531639743890174],[113,140,76,-0.7528358628478935],[113,140,77,-0.7525101243031899],[113,140,78,-0.7521867638377191],[113,140,79,-0.7518657864397716],[113,141,64,-0.7570774476263413],[113,141,65,-0.7567233298981817],[113,141,66,-0.7563715224837237],[113,141,67,-0.7560220314805567],[113,141,68,-0.7556748628964842],[113,141,69,-0.7553300226491042],[113,141,70,-0.7549875165653736],[113,141,71,-0.754647350381177],[113,141,72,-0.7543095297408947],[113,141,73,-0.7539740601969839],[113,141,74,-0.7536409472095335],[113,141,75,-0.7533101961458472],[113,141,76,-0.7529818122800152],[113,141,77,-0.752655800792487],[113,141,78,-0.7523321667696474],[113,141,79,-0.7520109152033886],[113,142,64,-0.757226784943311],[113,142,65,-0.7568724030837657],[113,142,66,-0.7565203308783138],[113,142,67,-0.756170574427781],[113,142,68,-0.755823139743237],[113,142,69,-0.7554780327455739],[113,142,70,-0.7551352592650715],[113,142,71,-0.7547948250409664],[113,142,72,-0.7544567357210191],[113,142,73,-0.7541209968610969],[113,142,74,-0.7537876139247268],[113,142,75,-0.7534565922826804],[113,142,76,-0.7531279372125445],[113,142,77,-0.7528016538982942],[113,142,78,-0.7524777474298695],[113,142,79,-0.7521562228027467],[113,143,64,-0.7573762838218417],[113,143,65,-0.7570216389999799],[113,143,66,-0.7566693031684975],[113,143,67,-0.7563192824314382],[113,143,68,-0.7559715828031177],[113,143,69,-0.7556262102077037],[113,143,70,-0.7552831704787797],[113,143,71,-0.7549424693589156],[113,143,72,-0.7546041124992342],[113,143,73,-0.7542681054589936],[113,143,74,-0.7539344537051414],[113,143,75,-0.7536031626118987],[113,143,76,-0.7532742374603313],[113,143,77,-0.7529476834379223],[113,143,78,-0.7526235056381495],[113,143,79,-0.7523017090600562],[113,144,64,-0.7575259440450175],[113,144,65,-0.7571710374324492],[113,144,66,-0.7568184391424344],[113,144,67,-0.7564681552822149],[113,144,68,-0.7561201918693334],[113,144,69,-0.7557745548312136],[113,144,70,-0.7554312500047242],[113,144,71,-0.7550902831357496],[113,144,72,-0.7547516598787556],[113,144,73,-0.7544153857963739],[113,144,74,-0.7540814663589537],[113,144,75,-0.7537499069441478],[113,144,76,-0.7534207128364828],[113,144,77,-0.7530938892269328],[113,144,78,-0.7527694412124954],[113,144,79,-0.7524473737957638],[113,145,64,-0.7576757653942343],[113,145,65,-0.7573205981651039],[113,145,66,-0.7569677385865818],[113,145,67,-0.7566171927690886],[113,145,68,-0.7562689667333744],[113,145,69,-0.7559230664100998],[113,145,70,-0.7555794976394],[113,145,71,-0.7552382661704545],[113,145,72,-0.7548993776610546],[113,145,73,-0.7545628376771858],[113,145,74,-0.7542286516925815],[113,145,75,-0.7538968250883078],[113,145,76,-0.7535673631523346],[113,145,77,-0.7532402710791088],[113,145,78,-0.7529155539691306],[113,145,79,-0.7525932168285253],[113,146,64,-0.7578257476492586],[113,146,65,-0.7574703209802374],[113,146,66,-0.7571172012857532],[113,146,67,-0.7567663946793854],[113,146,68,-0.756417907185073],[113,146,69,-0.7560717447366938],[113,146,70,-0.7557279131776304],[113,146,71,-0.7553864182603388],[113,146,72,-0.7550472656459166],[113,146,73,-0.7547104609036851],[113,146,74,-0.7543760095107435],[113,146,75,-0.7540439168515534],[113,146,76,-0.7537141882175095],[113,146,77,-0.753386828806514],[113,146,78,-0.7530618437225521],[113,146,79,-0.7527392379752645],[113,147,64,-0.7579758905882084],[113,147,65,-0.7576202056584872],[113,147,66,-0.7572668270230989],[113,147,67,-0.756915760798762],[113,147,68,-0.7565670130125844],[113,147,69,-0.7562205896016425],[113,147,70,-0.7558764964125471],[113,147,71,-0.7555347392010117],[113,147,72,-0.7551953236314215],[113,147,73,-0.7548582552764154],[113,147,74,-0.7545235396164397],[113,147,75,-0.754191182039333],[113,147,76,-0.7538611878398978],[113,147,77,-0.753533562219473],[113,147,78,-0.7532083102855117],[113,147,79,-0.7528854370511522],[113,148,64,-0.7581261939875334],[113,148,65,-0.7577702519788156],[113,148,66,-0.7574166155800864],[113,148,67,-0.7570652909111845],[113,148,68,-0.7567162840023666],[113,148,69,-0.7563696007938888],[113,148,70,-0.7560252471355705],[113,148,71,-0.7556832287863644],[113,148,72,-0.7553435514139244],[113,148,73,-0.755006220594188],[113,148,74,-0.7546712418109306],[113,148,75,-0.7543386204553498],[113,148,76,-0.7540083618256371],[113,148,77,-0.7536804711265515],[113,148,78,-0.7533549534689952],[113,148,79,-0.7530318138695872],[113,149,64,-0.7582766576220741],[113,149,65,-0.7579204597185678],[113,149,66,-0.7575665667365594],[113,149,67,-0.7572149847989875],[113,149,68,-0.7568657199392391],[113,149,69,-0.7565187781007298],[113,149,70,-0.7561741651364687],[113,149,71,-0.7558318868086288],[113,149,72,-0.7554919487881137],[113,149,73,-0.7551543566541411],[113,149,74,-0.7548191158937971],[113,149,75,-0.7544862319016198],[113,149,76,-0.754155709979172],[113,149,77,-0.7538275553346143],[113,149,78,-0.7535017730822815],[113,149,79,-0.7531783682422547],[113,150,64,-0.7584272812650413],[113,150,65,-0.7580708286534527],[113,150,66,-0.7577166802707178],[113,150,67,-0.7573648422428557],[113,150,68,-0.7570153206063637],[113,150,69,-0.7566681213077977],[113,150,70,-0.7563232502033378],[113,150,71,-0.7559807130583576],[113,150,72,-0.7556405155469919],[113,150,73,-0.75530266325172],[113,150,74,-0.7549671616629199],[113,150,75,-0.7546340161784524],[113,150,76,-0.7543032321032335],[113,150,77,-0.7539748146488071],[113,150,78,-0.7536487689329228],[113,150,79,-0.7533250999791068],[113,151,64,-0.758578064687998],[113,151,65,-0.7582213585575234],[113,151,66,-0.7578669559590985],[113,151,67,-0.7575148630218027],[113,151,68,-0.7571650857852241],[113,151,69,-0.75681763019904],[113,151,70,-0.7564725021225817],[113,151,71,-0.7561297073244043],[113,151,72,-0.7557892514818554],[113,151,73,-0.755451140180657],[113,151,74,-0.7551153789144603],[113,151,75,-0.7547819730844306],[113,151,76,-0.7544509279988189],[113,151,77,-0.7541222488725347],[113,151,78,-0.7537959408267243],[113,151,79,-0.753472008888342],[113,152,64,-0.7587290076609169],[113,152,65,-0.7583720492032358],[113,152,66,-0.7580173935766337],[113,152,67,-0.7576650469132307],[113,152,68,-0.757315015255686],[113,152,69,-0.7569673045567784],[113,152,70,-0.7566219206789715],[113,152,71,-0.756278869393983],[113,152,72,-0.7559381563823538],[113,152,73,-0.7555997872330302],[113,152,74,-0.7552637674429186],[113,152,75,-0.7549301024164696],[113,152,76,-0.7545987974652513],[113,152,77,-0.7542698578075209],[113,152,78,-0.7539432885678039],[113,152,79,-0.7536190947764645],[113,153,64,-0.7588801099521527],[113,153,65,-0.7585229003614202],[113,153,66,-0.758167992896623],[113,153,67,-0.7578153936929015],[113,153,68,-0.757465108795967],[113,153,69,-0.75711714416168],[113,153,70,-0.7567715056556166],[113,153,71,-0.7564281990526385],[113,153,72,-0.756087230036461],[113,153,73,-0.7557486041992358],[113,153,74,-0.7554123270411055],[113,153,75,-0.7550784039697883],[113,153,76,-0.7547468403001506],[113,153,77,-0.75441764125378],[113,153,78,-0.7540908119585623],[113,153,79,-0.753766357448255],[113,154,64,-0.7590313713284659],[113,154,65,-0.7586739118013057],[113,154,66,-0.7583187536907571],[113,154,67,-0.7579659031349615],[113,154,68,-0.7576153661826617],[113,154,69,-0.7572671487927809],[113,154,70,-0.7569212568339888],[113,154,71,-0.7565776960842714],[113,154,72,-0.7562364722304994],[113,154,73,-0.7558975908680109],[113,154,74,-0.7555610575001663],[113,154,75,-0.7552268775379332],[113,154,76,-0.7548950562994579],[113,154,77,-0.7545655990096397],[113,154,78,-0.7542385107997083],[113,154,79,-0.7539137967067949],[113,155,64,-0.7591827915549947],[113,155,65,-0.7588250832904913],[113,155,66,-0.7584696757290893],[113,155,67,-0.7581165750119118],[113,155,68,-0.7577657871907129],[113,155,69,-0.7574173182274591],[113,155,70,-0.757071173993894],[113,155,71,-0.7567273602711088],[113,155,72,-0.7563858827491106],[113,155,73,-0.7560467470264051],[113,155,74,-0.755709958609552],[113,155,75,-0.7553755229127492],[113,155,76,-0.7550434452574053],[113,155,77,-0.7547137308717133],[113,155,78,-0.7543863848902278],[113,155,79,-0.7540614123534376],[113,156,64,-0.7593343703953133],[113,156,65,-0.7589764145950046],[113,156,66,-0.7586207587800949],[113,156,67,-0.758267409094668],[113,156,68,-0.7579163715934704],[113,156,69,-0.7575676522414918],[113,156,70,-0.7572212569135304],[113,156,71,-0.7568771913937632],[113,156,72,-0.7565354613753148],[113,156,73,-0.7561960724598398],[113,156,74,-0.7558590301570782],[113,156,75,-0.7555243398844397],[113,156,76,-0.7551920069665767],[113,156,77,-0.754862036634958],[113,156,78,-0.7545344340274452],[113,156,79,-0.7542092041878667],[113,157,64,-0.7594861076114126],[113,157,65,-0.759127905479283],[113,157,66,-0.7587720026106507],[113,157,67,-0.7584184051525406],[113,157,68,-0.7580671191626713],[113,157,69,-0.7577181506090365],[113,157,70,-0.7573715053694693],[113,157,71,-0.7570271892312134],[113,157,72,-0.7566852078904917],[113,157,73,-0.7563455669520883],[113,157,74,-0.7560082719289052],[113,157,75,-0.7556733282415453],[113,157,76,-0.7553407412178867],[113,157,77,-0.7550105160926552],[113,157,78,-0.7546826580070021],[113,157,79,-0.754357172008077],[113,158,64,-0.7596380029636807],[113,158,65,-0.7592795557061529],[113,158,66,-0.7589234069860156],[113,158,67,-0.7585695629532142],[113,158,68,-0.7582180296684202],[113,158,69,-0.7578688131026109],[113,158,70,-0.757521919136635],[113,158,71,-0.7571773535607836],[113,158,72,-0.7568351220743585],[113,158,73,-0.7564952302852551],[113,158,74,-0.7561576837095177],[113,158,75,-0.7558224877709245],[113,158,76,-0.7554896478005604],[113,158,77,-0.7551591690363901],[113,158,78,-0.7548310566228366],[113,158,79,-0.7545053156103532],[113,159,64,-0.7597900562109612],[113,159,65,-0.7594313650368896],[113,159,66,-0.7590749716698895],[113,159,67,-0.7587208822628076],[113,159,68,-0.7583691028792479],[113,159,69,-0.7580196394931515],[113,159,70,-0.7576724979883638],[113,159,71,-0.7573276841582031],[113,159,72,-0.7569852037050313],[113,159,73,-0.7566450622398357],[113,159,74,-0.7563072652817847],[113,159,75,-0.7559718182578128],[113,159,76,-0.7556387265021931],[113,159,77,-0.7553079952561114],[113,159,78,-0.7549796296672439],[113,159,79,-0.7546536347893297],[113,160,64,-0.7599422671105253],[113,160,65,-0.7595833332311874],[113,160,66,-0.7592266964243848],[113,160,67,-0.7588723628458445],[113,160,68,-0.758520338562083],[113,160,69,-0.7581706295499859],[113,160,70,-0.7578232416963748],[113,160,71,-0.7574781807975768],[113,160,72,-0.7571354525589944],[113,160,73,-0.7567950625946874],[113,160,74,-0.7564570164269296],[113,160,75,-0.7561213194857931],[113,160,76,-0.7557879771087208],[113,160,77,-0.7554569945401013],[113,160,78,-0.7551283769308459],[113,160,79,-0.7548021293379616],[113,161,64,-0.7600946354180951],[113,161,65,-0.7597354600471855],[113,161,66,-0.7593785810100503],[113,161,67,-0.7590240044652775],[113,161,68,-0.7586717364822758],[113,161,69,-0.7583217830408555],[113,161,70,-0.757974150030795],[113,161,71,-0.7576288432514103],[113,161,72,-0.7572858684111252],[113,161,73,-0.7569452311270535],[113,161,74,-0.7566069369245549],[113,161,75,-0.7562709912368205],[113,161,76,-0.7559373994044449],[113,161,77,-0.7556061666750006],[113,161,78,-0.7552772982026161],[113,161,79,-0.7549507990475486],[113,162,64,-0.7602471608878159],[113,162,65,-0.7598877452414374],[113,162,66,-0.7595306251858427],[113,162,67,-0.7591758068824597],[113,162,68,-0.7588232964035697],[113,162,69,-0.7584730997318878],[113,162,70,-0.7581252227601294],[113,162,71,-0.75777967129058],[113,162,72,-0.7574364510346652],[113,162,73,-0.7570955676125338],[113,162,74,-0.7567570265526127],[113,162,75,-0.756420833291193],[113,162,76,-0.7560869931720021],[113,162,77,-0.7557555114457788],[113,162,78,-0.75542639326985],[113,162,79,-0.755099643707705],[113,163,64,-0.7603998432723145],[113,163,65,-0.7600401885689714],[113,163,66,-0.7596828287091851],[113,163,67,-0.7593277698572035],[113,163,68,-0.7589750180881601],[113,163,69,-0.7586245793876548],[113,163,70,-0.7582764596513204],[113,163,71,-0.7579306646843924],[113,163,72,-0.7575872002012791],[113,163,73,-0.7572460718251446],[113,163,74,-0.7569072850874643],[113,163,75,-0.7565708454276103],[113,163,76,-0.7562367581924246],[113,163,77,-0.7559050286357933],[113,163,78,-0.7555756619182241],[113,163,79,-0.7552486631064204],[113,164,64,-0.7605526823226795],[113,164,65,-0.76019278978327],[113,164,66,-0.7598351913359479],[113,164,67,-0.7594798931477607],[113,164,68,-0.7591269012966744],[113,164,69,-0.7587762217711534],[113,164,70,-0.7584278604697282],[113,164,71,-0.7580818232005647],[113,164,72,-0.7577381156810347],[113,164,73,-0.757396743537298],[113,164,74,-0.7570577123038597],[113,164,75,-0.7567210274231542],[113,164,76,-0.7563866942451194],[113,164,77,-0.7560547180267702],[113,164,78,-0.7557251039317767],[113,164,79,-0.755397857030038],[113,165,64,-0.7607056777884416],[113,165,65,-0.76034554863625],[113,165,66,-0.7599877128204281],[113,165,67,-0.7596321765108028],[113,165,68,-0.7592789457881519],[113,165,69,-0.7589280266437851],[113,165,70,-0.7585794249791102],[113,165,71,-0.7582331466052041],[113,165,72,-0.7578891972423822],[113,165,73,-0.7575475825197817],[113,165,74,-0.7572083079749174],[113,165,75,-0.756871379053268],[113,165,76,-0.7565368011078478],[113,165,77,-0.7562045793987823],[113,165,78,-0.7558747190928858],[113,165,79,-0.7555472252632355],[113,166,64,-0.7608588294176326],[113,166,65,-0.760498464878322],[113,166,66,-0.760140392915409],[113,166,67,-0.7597846197014797],[113,166,68,-0.7594311513201037],[113,166,69,-0.7590799937654154],[113,166,70,-0.7587311529416805],[113,166,71,-0.7583846346628671],[113,166,72,-0.7580404446522148],[113,166,73,-0.7576985885418186],[113,166,74,-0.7573590718721847],[113,166,75,-0.7570219000918159],[113,166,76,-0.7566870785567852],[113,166,77,-0.7563546125303099],[113,166,78,-0.7560245071823306],[113,166,79,-0.7556967675890832],[113,167,64,-0.7610121369567564],[113,167,65,-0.760651538258361],[113,167,66,-0.760293231372131],[113,167,67,-0.7599372224733912],[113,167,68,-0.7595835176484826],[113,167,69,-0.7592321228943445],[113,167,70,-0.7588830441180805],[113,167,71,-0.7585362871365302],[113,167,72,-0.7581918576758382],[113,167,73,-0.7578497613710375],[113,167,74,-0.7575100037656065],[113,167,75,-0.7571725903110538],[113,167,76,-0.7568375263664917],[113,167,77,-0.7565048171982112],[113,167,78,-0.75617446797926],[113,167,79,-0.7558464837890159],[113,168,64,-0.7611656001508138],[113,168,65,-0.760804768523731],[113,168,66,-0.7604462279403158],[113,168,67,-0.7600899845786107],[113,168,68,-0.7597360445277082],[113,168,69,-0.7593844137873319],[113,168,70,-0.7590350982674039],[113,168,71,-0.7586881037876151],[113,168,72,-0.7583434360769955],[113,168,73,-0.7580011007734972],[113,168,74,-0.7576611034235513],[113,168,75,-0.7573234494816533],[113,168,76,-0.7569881443099361],[113,168,77,-0.7566551931777457],[113,168,78,-0.7563246012612185],[113,168,79,-0.7559963736428557],[113,169,64,-0.7613192187432725],[113,169,65,-0.760958155420256],[113,169,66,-0.7605993823681375],[113,169,67,-0.7602429057676567],[113,169,68,-0.7598887317106371],[113,169,69,-0.7595368661995668],[113,169,70,-0.7591873151471662],[113,169,71,-0.758840084375958],[113,169,72,-0.7584951796178376],[113,169,73,-0.7581526065136571],[113,169,74,-0.7578123706127811],[113,169,75,-0.7574744773726725],[113,169,76,-0.7571389321584666],[113,169,77,-0.7568057402425452],[113,169,78,-0.7564749068041154],[113,169,79,-0.7561464369287837],[113,170,64,-0.7614729924761274],[113,170,65,-0.7611116986922792],[113,170,66,-0.7607526944022817],[113,170,67,-0.7603959857895516],[113,170,68,-0.7600415789486228],[113,170,69,-0.759689479884728],[113,170,70,-0.7593396945133654],[113,170,71,-0.7589922286598698],[113,170,72,-0.7586470880589831],[113,170,73,-0.7583042783544369],[113,170,74,-0.7579638050985106],[113,170,75,-0.7576256737516156],[113,170,76,-0.7572898896818703],[113,170,77,-0.7569564581646738],[113,170,78,-0.7566253843822857],[113,170,79,-0.7562966734233986],[113,171,64,-0.7616269210898798],[113,171,65,-0.7612653980826425],[113,171,66,-0.7609061637879255],[113,171,67,-0.7605492243918017],[113,171,68,-0.7601945859914954],[113,171,69,-0.7598422545949629],[113,171,70,-0.7594922361204608],[113,171,71,-0.7591445363961162],[113,171,72,-0.7587991611594971],[113,171,73,-0.7584561160571961],[113,171,74,-0.7581154066443874],[113,171,75,-0.757777038384412],[113,171,76,-0.7574410166483524],[113,171,77,-0.7571073467146067],[113,171,78,-0.7567760337684677],[113,171,79,-0.7564470829016968],[113,172,64,-0.761781004323518],[113,172,65,-0.7614192533326674],[113,172,66,-0.7610597902687176],[113,172,67,-0.7607026213203775],[113,172,68,-0.7603477525875407],[113,172,69,-0.759995190080868],[113,172,70,-0.7596449397213535],[113,172,71,-0.7592970073398967],[113,172,72,-0.758951398676872],[113,172,73,-0.7586081193817136],[113,172,74,-0.7582671750124711],[113,172,75,-0.7579285710353962],[113,172,76,-0.7575923128245166],[113,172,77,-0.7572584056612099],[113,172,78,-0.7569268547337846],[113,172,79,-0.7565976651370516],[113,173,64,-0.7619352419145757],[113,173,65,-0.7615732641822128],[113,173,66,-0.7612135735868371],[113,173,67,-0.7608561763197721],[113,173,68,-0.7605010784835611],[113,173,69,-0.760148286091548],[113,173,70,-0.759797805067445],[113,173,71,-0.7594496412449039],[113,173,72,-0.7591038003670861],[113,173,73,-0.7587602880862473],[113,173,74,-0.7584191099632935],[113,173,75,-0.7580802714673676],[113,173,76,-0.7577437779754234],[113,173,77,-0.7574096347718001],[113,173,78,-0.7570778470478023],[113,173,79,-0.7567484199012727],[113,174,64,-0.7620896335991041],[113,174,65,-0.7617274303696477],[113,174,66,-0.7613675134829647],[113,174,67,-0.7610098891329731],[113,174,68,-0.7606545634248447],[113,174,69,-0.7603015423745867],[113,174,70,-0.7599508319086088],[113,174,71,-0.7596024378632951],[113,174,72,-0.7592563659845746],[113,174,73,-0.7589126219275046],[113,174,74,-0.7585712112558283],[113,174,75,-0.7582321394415605],[113,174,76,-0.7578954118645622],[113,174,77,-0.757561033812115],[113,174,78,-0.7572290104785012],[113,174,79,-0.7568993469645768],[113,175,64,-0.762244179111695],[113,175,65,-0.761881751631874],[113,175,66,-0.7615216096963071],[113,175,67,-0.7611637595014861],[113,175,68,-0.7608082071551907],[113,175,69,-0.7604549586760707],[113,175,70,-0.7601040199932135],[113,175,71,-0.7597553969457159],[113,175,72,-0.7594090952822536],[113,175,73,-0.7590651206606668],[113,175,74,-0.7587234786475158],[113,175,75,-0.7583841747176684],[113,175,76,-0.7580472142538737],[113,175,77,-0.7577126025463369],[113,175,78,-0.7573803447922993],[113,175,79,-0.7570504460956117],[113,176,64,-0.7623988781854523],[113,176,65,-0.7620362277042979],[113,176,66,-0.7616758619645676],[113,176,67,-0.7613177871653055],[113,176,68,-0.7609620094168791],[113,176,69,-0.7606085347405607],[113,176,70,-0.7602573690680949],[113,176,71,-0.7599085182412705],[113,176,72,-0.759561988011491],[113,176,73,-0.759217784039359],[113,176,74,-0.7588759118942332],[113,176,75,-0.7585363770538147],[113,176,76,-0.7581991849037216],[113,176,77,-0.7578643407370639],[113,176,78,-0.757531849754023],[113,176,79,-0.7572017170614261],[113,177,64,-0.7625537305520511],[113,177,65,-0.7621908583208893],[113,177,66,-0.7618302700240049],[113,177,67,-0.7614719718629742],[113,177,68,-0.7611159699507315],[113,177,69,-0.7607622703111508],[113,177,70,-0.7604108788786139],[113,177,71,-0.7600618014975817],[113,177,72,-0.7597150439221656],[113,177,73,-0.7593706118157106],[113,177,74,-0.7590285107503545],[113,177,75,-0.7586887462066123],[113,177,76,-0.7583513235729518],[113,177,77,-0.7580162481453689],[113,177,78,-0.7576835251269668],[113,177,79,-0.7573531596275304],[113,178,64,-0.7627087359417181],[113,178,65,-0.7623456432141614],[113,178,66,-0.7619848336094142],[113,178,67,-0.7616263133315633],[113,178,68,-0.7612700884960895],[113,178,69,-0.760916165129448],[113,178,70,-0.7605645491686375],[113,178,71,-0.7602152464607708],[113,178,72,-0.7598682627626467],[113,178,73,-0.7595236037403343],[113,178,74,-0.7591812749687296],[113,178,75,-0.7588412819311424],[113,178,76,-0.7585036300188717],[113,178,77,-0.7581683245307798],[113,178,78,-0.7578353706728727],[113,178,79,-0.7575047735578746],[113,179,64,-0.76286389408321],[113,179,65,-0.7625005821151507],[113,179,66,-0.7621395524541054],[113,179,67,-0.7617808113066514],[113,179,68,-0.7614243647907948],[113,179,69,-0.7610702189355518],[113,179,70,-0.760718379680517],[113,179,71,-0.7603688528754359],[113,179,72,-0.7600216442797745],[113,179,73,-0.7596767595623052],[113,179,74,-0.7593342043006635],[113,179,75,-0.758993983980935],[113,179,76,-0.7586561039972295],[113,179,77,-0.7583205696512576],[113,179,78,-0.7579873861519091],[113,179,79,-0.7576565586148287],[113,180,64,-0.7630192047038749],[113,180,65,-0.7626556747534761],[113,180,66,-0.7622944262899637],[113,180,67,-0.7619354655223844],[113,180,68,-0.761578798571249],[113,180,69,-0.7612244314681137],[113,180,70,-0.7608723701551494],[113,180,71,-0.7605226204847129],[113,180,72,-0.7601751882189182],[113,180,73,-0.7598300790292211],[113,180,74,-0.7594872984959771],[113,180,75,-0.7591468521080273],[113,180,76,-0.7588087452622745],[113,180,77,-0.7584729832632573],[113,180,78,-0.7581395713227311],[113,180,79,-0.7578085145592423],[113,181,64,-0.763174667529621],[113,181,65,-0.7628109208573097],[113,181,66,-0.76244945484742],[113,181,67,-0.7620902757114466],[113,181,68,-0.7617333895723839],[113,181,69,-0.7613788024643083],[113,181,70,-0.7610265203319458],[113,181,71,-0.760676549030245],[113,181,72,-0.7603288943239475],[113,181,73,-0.7599835618871725],[113,181,74,-0.759640557302976],[113,181,75,-0.7592998860629356],[113,181,76,-0.7589615535667266],[113,181,77,-0.7586255651216977],[113,181,78,-0.7582919259424503],[113,181,79,-0.7579606411504141],[113,182,64,-0.7633302822849425],[113,182,65,-0.7629663201534018],[113,182,66,-0.7626046378554747],[113,182,67,-0.7622452416050836],[113,182,68,-0.7618881375276858],[113,182,69,-0.7615333316598567],[113,182,70,-0.7611808299488574],[113,182,71,-0.7608306382522076],[113,182,72,-0.7604827623372564],[113,182,73,-0.7601372078807673],[113,182,74,-0.7597939804684761],[113,182,75,-0.7594530855946778],[113,182,76,-0.7591145286618011],[113,182,77,-0.7587783149799853],[113,182,78,-0.7584444497666591],[113,182,79,-0.7581129381461168],[113,183,64,-0.7634860486928892],[113,183,65,-0.7631218723670498],[113,183,66,-0.7627599750416686],[113,183,67,-0.7624003629330742],[113,183,68,-0.762043042169166],[113,183,69,-0.7616880187889975],[113,183,70,-0.7613352987423447],[113,183,71,-0.7609848878892781],[113,183,72,-0.7606367919997342],[113,183,73,-0.7602910167531004],[113,183,74,-0.7599475677377732],[113,183,75,-0.7596064504507447],[113,183,76,-0.7592676702971785],[113,183,77,-0.7589312325899848],[113,183,78,-0.758597142549401],[113,183,79,-0.7582654053025668],[113,184,64,-0.7636419664751264],[113,184,65,-0.7632775772221594],[113,184,66,-0.7629154661321427],[113,184,67,-0.7625556394237892],[113,184,68,-0.7621981032274201],[113,184,69,-0.7618428635845463],[113,184,70,-0.761489926447438],[113,184,71,-0.7611392976786959],[113,184,72,-0.760790983050824],[113,184,73,-0.7604449882458137],[113,184,74,-0.7601013188547022],[113,184,75,-0.7597599803771597],[113,184,76,-0.7594209782210645],[113,184,77,-0.759084317702079],[113,184,78,-0.75875000404323],[113,184,79,-0.7584180423744842],[113,185,64,-0.7637980353519146],[113,185,65,-0.7634334344412238],[113,185,66,-0.763071110851617],[113,185,67,-0.7627110708041714],[113,185,68,-0.7623533204316082],[113,185,69,-0.7619978657778753],[113,185,70,-0.7616447127977161],[113,185,71,-0.7612938673562418],[113,185,72,-0.7609453352285033],[113,185,73,-0.7605991220990759],[113,185,74,-0.760255233561618],[113,185,75,-0.7599136751184579],[113,185,76,-0.7595744521801693],[113,185,77,-0.7592375700651477],[113,185,78,-0.7589030339991905],[113,185,79,-0.7585708491150719],[113,186,64,-0.763954255042089],[113,186,65,-0.7635894437453026],[113,186,66,-0.7632269089233712],[113,186,67,-0.7628666567997148],[113,186,68,-0.7625086935094337],[113,186,69,-0.7621530250988924],[113,186,70,-0.7617996575252864],[113,186,71,-0.7614485966562172],[113,186,72,-0.7610998482692624],[113,186,73,-0.760753418051561],[113,186,74,-0.7604093115993729],[113,186,75,-0.7600675344176648],[113,186,76,-0.7597280919196865],[113,186,77,-0.7593909894265471],[113,186,78,-0.7590562321667953],[113,186,79,-0.7587238252759947],[113,187,64,-0.7641106252631191],[113,187,65,-0.763745604854082],[113,187,66,-0.7633828600693032],[113,187,67,-0.7630223971345241],[113,187,68,-0.7626642221872036],[113,187,69,-0.7623083412761009],[113,187,70,-0.7619547603608443],[113,187,71,-0.7616034853115043],[113,187,72,-0.7612545219081648],[113,187,73,-0.760907875840509],[113,187,74,-0.760563552707378],[113,187,75,-0.7602215580163573],[113,187,76,-0.7598818971833534],[113,187,77,-0.7595445755321697],[113,187,78,-0.7592095982940871],[113,187,79,-0.7588769706074394],[113,188,64,-0.7642671457310883],[113,188,65,-0.7639019174858543],[113,188,66,-0.7635389640099093],[113,188,67,-0.7631782915312948],[113,188,68,-0.7628199061898072],[113,188,69,-0.7624638140365798],[113,188,70,-0.7621100210336526],[113,188,71,-0.7617585330535446],[113,188,72,-0.7614093558788262],[113,188,73,-0.7610624952017043],[113,188,74,-0.7607179566235812],[113,188,75,-0.7603757456546419],[113,188,76,-0.7600358677134298],[113,188,77,-0.7596983281264231],[113,188,78,-0.7593631321276161],[113,188,79,-0.7590302848580938],[113,189,64,-0.7644238161606732],[113,189,65,-0.7640583813574972],[113,189,66,-0.7636952204642632],[113,189,67,-0.763334339711292],[113,189,68,-0.762975745240696],[113,189,69,-0.7626194431059619],[113,189,70,-0.7622654392715204],[113,189,71,-0.761913739612319],[113,189,72,-0.7615643499133938],[113,189,73,-0.7612172758694554],[113,189,74,-0.7608725230844475],[113,189,75,-0.7605300970711346],[113,189,76,-0.7601900032506772],[113,189,77,-0.7598522469522095],[113,189,78,-0.7595168334124196],[113,189,79,-0.759183767775125],[113,190,64,-0.7645806362652038],[113,190,65,-0.7642149961845335],[113,190,66,-0.7638516291500763],[113,190,67,-0.7634905413944105],[113,190,68,-0.7631317390619433],[113,190,69,-0.7627752282084943],[113,190,70,-0.7624210148008639],[113,190,71,-0.7620691047164072],[113,190,72,-0.7617195037426063],[113,190,73,-0.7613722175766547],[113,190,74,-0.7610272518250181],[113,190,75,-0.7606846120030198],[113,190,76,-0.7603443035344188],[113,190,77,-0.7600063317509856],[113,190,78,-0.7596707018920826],[113,190,79,-0.7593374191042408],[113,191,64,-0.7647376057566331],[113,191,65,-0.7643717616811018],[113,191,66,-0.7640081897836675],[113,191,67,-0.7636468962991447],[113,191,68,-0.7632878873742148],[113,191,69,-0.7629311690670084],[113,191,70,-0.7625767473466756],[113,191,71,-0.7622246280929583],[113,191,72,-0.7618748170957639],[113,191,73,-0.761527320054749],[113,191,74,-0.7611821425788803],[113,191,75,-0.7608392901860217],[113,191,76,-0.7604987683025101],[113,191,77,-0.7601605822627323],[113,191,78,-0.7598247373087068],[113,191,79,-0.7594912385896586],[113,192,64,-0.7648947243455623],[113,192,65,-0.7645286775599804],[113,192,66,-0.7641649020799877],[113,192,67,-0.7638034041426136],[113,192,68,-0.7634441898967921],[113,192,69,-0.7630872654029446],[113,192,70,-0.7627326366325492],[113,192,71,-0.7623803094677146],[113,192,72,-0.7620302897007524],[113,192,73,-0.7616825830337626],[113,192,74,-0.7613371950781931],[113,192,75,-0.7609941313544276],[113,192,76,-0.7606533972913615],[113,192,77,-0.7603149982259793],[113,192,78,-0.7599789394029353],[113,192,79,-0.7596452259741299],[113,193,64,-0.7650519917412104],[113,193,65,-0.7646857435325576],[113,193,66,-0.7643217657525898],[113,193,67,-0.7639600646405302],[113,193,68,-0.7636006463475439],[113,193,69,-0.7632435169363218],[113,193,70,-0.7628886823806494],[113,193,71,-0.7625361485649814],[113,193,72,-0.7621859212840136],[113,193,73,-0.7618380062422685],[113,193,74,-0.7614924090536552],[113,193,75,-0.7611491352410577],[113,193,76,-0.76080819023591],[113,193,77,-0.7604695793777743],[113,193,78,-0.760133307913922],[113,193,79,-0.7597993809989098],[113,194,64,-0.7652094076514744],[113,194,65,-0.7648429593088919],[113,194,66,-0.7644787805136893],[113,194,67,-0.7641168775072619],[113,194,68,-0.7637572564429849],[113,194,69,-0.7633999233857974],[113,194,70,-0.7630448843117719],[113,194,71,-0.762692145107688],[113,194,72,-0.762341711570605],[113,194,73,-0.7619935894074478],[113,194,74,-0.7616477842345668],[113,194,75,-0.7613043015773258],[113,194,76,-0.760963146869678],[113,194,77,-0.7606243254537439],[113,194,78,-0.7602878425793926],[113,194,79,-0.7599537034038175],[113,195,64,-0.7653669717829088],[113,195,65,-0.765000324597691],[113,195,66,-0.7646359460741426],[113,195,67,-0.7642738424558095],[113,195,68,-0.7639140198982557],[113,195,69,-0.7635564844686474],[113,195,70,-0.7632012421453228],[113,195,71,-0.7628482988173659],[113,195,72,-0.7624976602841791],[113,195,73,-0.7621493322550692],[113,195,74,-0.7618033203488075],[113,195,75,-0.7614596300932179],[113,195,76,-0.7611182669247533],[113,195,77,-0.7607792361880724],[113,195,78,-0.7604425431356227],[113,195,79,-0.7601081929272154],[113,196,64,-0.765524683840704],[113,196,65,-0.7651578391062911],[113,196,66,-0.7647932621434271],[113,196,67,-0.7644309591977868],[113,196,68,-0.7640709364271018],[113,196,69,-0.7637131999007444],[113,196,70,-0.7633577555992973],[113,196,71,-0.7630046094141283],[113,196,72,-0.762653767146962],[113,196,73,-0.7623052345094672],[113,196,74,-0.7619590171228157],[113,196,75,-0.7616151205172714],[113,196,76,-0.7612735501317668],[113,196,77,-0.7609343113134799],[113,196,78,-0.7605974093174167],[113,196,79,-0.7602628493059871],[113,197,64,-0.7656825435287477],[113,197,65,-0.765315502540717],[113,197,66,-0.7649507284297004],[113,197,67,-0.76458822744348],[113,197,68,-0.7642280057419335],[113,197,69,-0.763870069396618],[113,197,70,-0.7635144243903401],[113,197,71,-0.7631610766167299],[113,197,72,-0.7628100318798144],[113,197,73,-0.7624612958936032],[113,197,74,-0.7621148742816488],[113,197,75,-0.7617707725766352],[113,197,76,-0.7614289962199541],[113,197,77,-0.7610895505612836],[113,197,78,-0.7607524408581684],[113,197,79,-0.7604176722755983],[113,198,64,-0.7658405505495938],[113,198,65,-0.7654733146056523],[113,198,66,-0.7651083446397713],[113,198,67,-0.7647456469018186],[113,198,68,-0.7643852275537963],[113,198,69,-0.7640270926694255],[113,198,70,-0.7636712482337151],[113,198,71,-0.7633177001425376],[113,198,72,-0.7629664542022008],[113,198,73,-0.7626175161290351],[113,198,74,-0.7622708915489531],[113,198,75,-0.7619265859970391],[113,198,76,-0.7615846049171243],[113,198,77,-0.7612449536613666],[113,198,78,-0.7609076374898308],[113,198,79,-0.7605726615700665],[113,199,64,-0.765998704604487],[113,199,65,-0.7656312750044634],[113,199,66,-0.7652661104791231],[113,199,67,-0.7649032172803985],[113,199,68,-0.7645426015723946],[113,199,69,-0.7641842694309751],[113,199,70,-0.7638282268433303],[113,199,71,-0.7634744797075538],[113,199,72,-0.7631230338322138],[113,199,73,-0.7627738949359409],[113,199,74,-0.762427068646988],[113,199,75,-0.7620825605028186],[113,199,76,-0.7617403759496845],[113,199,77,-0.7614005203422032],[113,199,78,-0.7610629989429398],[113,199,79,-0.7607278169219849],[113,200,64,-0.7661570053933338],[113,200,65,-0.7657893834391697],[113,200,66,-0.7654240256518846],[113,200,67,-0.7650609382854531],[113,200,68,-0.7647001275060622],[113,200,69,-0.7643415993916963],[113,200,70,-0.7639853599317066],[113,200,71,-0.7636314150263863],[113,200,72,-0.7632797704865438],[113,200,73,-0.7629304320330892],[113,200,74,-0.762583405296595],[113,200,75,-0.7622386958168843],[113,200,76,-0.7618963090426091],[113,200,77,-0.761556250330827],[113,200,78,-0.761218524946584],[113,200,79,-0.760883138062492],[113,201,64,-0.7663154526147609],[113,201,65,-0.7659476396105038],[113,201,66,-0.7655820898608893],[113,201,67,-0.765218809621913],[113,201,68,-0.7648578050618221],[113,201,69,-0.7644990822607005],[113,201,70,-0.7641426472100388],[113,201,71,-0.7637885058123095],[113,201,72,-0.76343666388054],[113,201,73,-0.7630871271378994],[113,201,74,-0.7627399012172591],[113,201,75,-0.7623949916607825],[113,201,76,-0.7620524039195009],[113,201,77,-0.7617121433528927],[113,201,78,-0.7613742152284653],[113,201,79,-0.7610386247213321],[113,202,64,-0.7664740459660958],[113,202,65,-0.7661060432178903],[113,202,66,-0.7657403028076551],[113,202,67,-0.7653768309933849],[113,202,68,-0.7650156339453655],[113,202,69,-0.764656717745759],[113,202,70,-0.7643000883881745],[113,202,71,-0.7639457517772424],[113,202,72,-0.7635937137281884],[113,202,73,-0.7632439799664199],[113,202,74,-0.7628965561270875],[113,202,75,-0.7625514477546735],[113,202,76,-0.7622086603025695],[113,202,77,-0.7618681991326542],[113,202,78,-0.761530069514877],[113,202,79,-0.761194276626834],[113,203,64,-0.7666327851433453],[113,203,65,-0.7662645939594254],[113,203,66,-0.7658986641923633],[113,203,67,-0.7655350021021308],[113,203,68,-0.765173613861031],[113,203,69,-0.764814505553283],[113,203,70,-0.7644576831745927],[113,203,71,-0.7641031526317277],[113,203,72,-0.7637509197420909],[113,203,73,-0.7634009902333078],[113,203,74,-0.7630533697427871],[113,203,75,-0.7627080638173107],[113,203,76,-0.7623650779126093],[113,203,77,-0.7620244173929434],[113,203,78,-0.7616860875306836],[113,203,79,-0.7613500935058892],[113,204,64,-0.7667916698412556],[113,204,65,-0.7664232915319363],[113,204,66,-0.766057173713918],[113,204,67,-0.7656933226491281],[113,204,68,-0.765331744511865],[113,204,69,-0.7649724453883832],[113,204,70,-0.7646154312764644],[113,204,71,-0.7642607080849921],[113,204,72,-0.763908281633526],[113,204,73,-0.7635581576518885],[113,204,74,-0.7632103417797268],[113,204,75,-0.7628648395661006],[113,204,76,-0.7625216564690614],[113,204,77,-0.7621807978552302],[113,204,78,-0.7618422689993798],[113,204,79,-0.7615060750840136],[113,205,64,-0.7669506997532826],[113,205,65,-0.766582135630952],[113,205,66,-0.7662158310699174],[113,205,67,-0.7658517923340397],[113,205,68,-0.7654900255995909],[113,205,69,-0.7651305369548396],[113,205,70,-0.7647733323996219],[113,205,71,-0.7644184178449164],[113,205,72,-0.7640657991124182],[113,205,73,-0.7637154819341264],[113,205,74,-0.7633674719519054],[113,205,75,-0.7630217747170736],[113,205,76,-0.7626783956899821],[113,205,77,-0.7623373402395928],[113,205,78,-0.7619986136430614],[113,205,79,-0.7616622210853152],[113,206,64,-0.7671098745716154],[113,206,65,-0.766741125950727],[113,206,66,-0.766374635956677],[113,206,67,-0.7660104108552378],[113,206,68,-0.7656484568246338],[113,206,69,-0.7652887799551261],[113,206,70,-0.7649313862485838],[113,206,71,-0.7645762816180591],[113,206,72,-0.7642234718873622],[113,206,73,-0.7638729627906478],[113,206,74,-0.763524759971977],[113,206,75,-0.7631788689849065],[113,206,76,-0.7628352952920671],[113,206,77,-0.7624940442647414],[113,206,78,-0.7621551211824484],[113,206,79,-0.7618185312325199],[113,207,64,-0.7672691939871473],[113,207,65,-0.7669002621842111],[113,207,66,-0.7665335880691995],[113,207,67,-0.7661691779097743],[113,207,68,-0.7658070378860905],[113,207,69,-0.7654471740903801],[113,207,70,-0.7650895925265236],[113,207,71,-0.7647342991096266],[113,207,72,-0.7643812996655925],[113,207,73,-0.7640305999307111],[113,207,74,-0.7636822055512198],[113,207,75,-0.7633361220828931],[113,207,76,-0.7629923549906211],[113,207,77,-0.7626509096479879],[113,207,78,-0.7623117913368549],[113,207,79,-0.7619750052469394],[113,208,64,-0.7674286576895353],[113,208,65,-0.7670595440231103],[113,208,66,-0.7666926871012354],[113,208,67,-0.7663280931934406],[113,208,68,-0.7659657684817891],[113,208,69,-0.7656057190604624],[113,208,70,-0.7652479509353315],[113,208,71,-0.7648924700235333],[113,208,72,-0.7645392821530439],[113,208,73,-0.7641883930622675],[113,208,74,-0.763839808399597],[113,208,75,-0.7634935337230045],[113,208,76,-0.763149574499619],[113,208,77,-0.7628079361053057],[113,208,78,-0.7624686238242496],[113,208,79,-0.7621316428485332],[113,209,64,-0.7675882653671791],[113,209,65,-0.7672189711578649],[113,209,66,-0.7668519327452621],[113,209,67,-0.7664871564007466],[113,209,68,-0.7661246483082685],[113,209,69,-0.7657644145639368],[113,209,70,-0.7654064611755917],[113,209,71,-0.7650507940623803],[113,209,72,-0.7646974190543304],[113,209,73,-0.7643463418919395],[113,209,74,-0.7639975682257356],[113,209,75,-0.7636511036158676],[113,209,76,-0.7633069535316835],[113,209,77,-0.7629651233513097],[113,209,78,-0.7626256183612345],[113,209,79,-0.7622884437558861],[113,210,64,-0.7677480167072002],[113,210,65,-0.7673785432776287],[113,210,66,-0.7670113246924619],[113,210,67,-0.7666463672248998],[113,210,68,-0.7662836770607567],[113,210,69,-0.7659232602980484],[113,210,70,-0.7655651229465622],[113,210,71,-0.7652092709274343],[113,210,72,-0.7648557100727235],[113,210,73,-0.7645044461249992],[113,210,74,-0.7641554847369042],[113,210,75,-0.7638088314707436],[113,210,76,-0.7634644917980642],[113,210,77,-0.7631224710992334],[113,210,78,-0.7627827746630229],[113,210,79,-0.762445407686187],[113,211,64,-0.7679079113955022],[113,211,65,-0.7675382600703299],[113,211,66,-0.7671708626327837],[113,211,67,-0.7668057253578651],[113,211,68,-0.7664428544332318],[113,211,69,-0.7660822559587838],[113,211,70,-0.7657239359462347],[113,211,71,-0.7653679003186883],[113,211,72,-0.7650141549102127],[113,211,73,-0.7646627054654294],[113,211,74,-0.7643135576390743],[113,211,75,-0.7639667169955889],[113,211,76,-0.763622189008698],[113,211,77,-0.7632799790609901],[113,211,78,-0.7629400924435004],[113,211,79,-0.7626025343552896],[113,212,64,-0.7680679491167406],[113,212,65,-0.7676981212226401],[113,212,66,-0.767330546254911],[113,212,67,-0.7669652304903352],[113,212,68,-0.7666021801183909],[113,212,69,-0.7662414012408414],[113,212,70,-0.7658828998713045],[113,212,71,-0.7655266819348304],[113,212,72,-0.7651727532674758],[113,212,73,-0.7648211196158926],[113,212,74,-0.7644717866368897],[113,212,75,-0.7641247598970242],[113,212,76,-0.7637800448721787],[113,212,77,-0.7634376469471423],[113,212,78,-0.7630975714151942],[113,212,79,-0.7627598234776819],[113,213,64,-0.7682281295543474],[113,213,65,-0.7678581264199987],[113,213,66,-0.767490375246288],[113,213,67,-0.7671248823117542],[113,213,68,-0.7667616538076754],[113,213,69,-0.766400695837655],[113,213,70,-0.7660420144171946],[113,213,71,-0.7656856154732687],[113,213,72,-0.765331504843902],[113,213,73,-0.7649796882777554],[113,213,74,-0.7646301714336906],[113,213,75,-0.7642829598803588],[113,213,76,-0.7639380590957808],[113,213,77,-0.7635954744669262],[113,213,78,-0.7632552112892976],[113,213,79,-0.7629172747665096],[113,214,64,-0.7683884523904995],[113,214,65,-0.7680182753465831],[113,214,66,-0.7676503492930878],[113,214,67,-0.767284680510288],[113,214,68,-0.766921275191239],[113,214,69,-0.7665601394413637],[113,214,70,-0.7662012792780247],[113,214,71,-0.7658447006301008],[113,214,72,-0.7654904093375617],[113,214,73,-0.7651384111510581],[113,214,74,-0.7647887117314822],[113,214,75,-0.76444131664956],[113,214,76,-0.7640962313854291],[113,214,77,-0.7637534613282198],[113,214,78,-0.7634130117756383],[113,214,79,-0.7630748879335463],[113,215,64,-0.7685489173061806],[113,215,65,-0.7681785676853681],[113,215,66,-0.7678104680802733],[113,215,67,-0.7674446247728836],[113,215,68,-0.7670810439580098],[113,215,69,-0.7667197317428721],[113,215,70,-0.766360694146673],[113,215,71,-0.7660039371001732],[113,215,72,-0.765649466445268],[113,215,73,-0.7652972879345747],[113,215,74,-0.7649474072309969],[113,215,75,-0.7645998299073136],[113,215,76,-0.7642545614457594],[113,215,77,-0.7639116072376048],[113,215,78,-0.7635709725827395],[113,215,79,-0.7632326626892528],[113,216,64,-0.7687095239811594],[113,216,65,-0.7683390031181059],[113,216,66,-0.7679707312915761],[113,216,67,-0.7676047147852487],[113,216,68,-0.767240959795668],[113,216,69,-0.7668794724318293],[113,216,70,-0.7665202587147534],[113,216,71,-0.7661633245770619],[113,216,72,-0.7658086758625535],[113,216,73,-0.7654563183257923],[113,216,74,-0.7651062576316711],[113,216,75,-0.7647584993550023],[113,216,76,-0.7644130489800967],[113,216,77,-0.7640699119003446],[113,216,78,-0.7637290934177994],[113,216,79,-0.7633905987427576],[113,217,64,-0.7688702720939683],[113,217,65,-0.7684995813253036],[113,217,66,-0.7681311386094752],[113,217,67,-0.7677649502318306],[113,217,68,-0.7674010223906247],[113,217,69,-0.7670393611966071],[113,217,70,-0.766679972672595],[113,217,71,-0.7663228627530492],[113,217,72,-0.7659680372836504],[113,217,73,-0.7656155020208885],[113,217,74,-0.7652652626316251],[113,217,75,-0.7649173246926846],[113,217,76,-0.7645716936904338],[113,217,77,-0.7642283750203624],[113,217,78,-0.7638873739866675],[113,217,79,-0.7635486958018329],[113,218,64,-0.7690311613219638],[113,218,65,-0.7686603019862848],[113,218,66,-0.7682916897152574],[113,218,67,-0.7679253307958753],[113,218,68,-0.7675612314280829],[113,218,69,-0.7671993977243613],[113,218,70,-0.7668398357093023],[113,218,71,-0.7664825513191846],[113,218,72,-0.7661275504015502],[113,218,73,-0.7657748387147932],[113,218,74,-0.7654244219277226],[113,218,75,-0.765076305619155],[113,218,76,-0.7647304952774918],[113,218,77,-0.7643869963003023],[113,218,78,-0.7640458139939069],[113,218,79,-0.7637069535729573],[113,219,64,-0.7691921913413056],[113,219,65,-0.7688211647791676],[113,219,66,-0.7684523842889959],[113,219,67,-0.768085856159408],[113,219,68,-0.7677215865920153],[113,219,69,-0.767359581701009],[113,219,70,-0.7669998475127339],[113,219,71,-0.7666423899652648],[113,219,72,-0.7662872149079831],[113,219,73,-0.7659343281011664],[113,219,74,-0.7655837352155505],[113,219,75,-0.7652354418319224],[113,219,76,-0.7648894534406987],[113,219,77,-0.7645457754415076],[113,219,78,-0.7642044131427723],[113,219,79,-0.7638653717612923],[113,220,64,-0.7693533618269346],[113,220,65,-0.7689821693808434],[113,220,66,-0.7686132220095288],[113,220,67,-0.7682465260032103],[113,220,68,-0.7678820875651439],[113,220,69,-0.7675199128112087],[113,220,70,-0.7671600077694808],[113,220,71,-0.7668023783798097],[113,220,72,-0.7664470304933951],[113,220,73,-0.7660939698723763],[113,220,74,-0.7657432021893953],[113,220,75,-0.7653947330271889],[113,220,76,-0.7650485678781678],[113,220,77,-0.7647047121439986],[113,220,78,-0.7643631711351877],[113,220,79,-0.7640239500706624],[113,221,64,-0.7695146724526345],[113,221,65,-0.7691433154670376],[113,221,66,-0.7687742025545202],[113,221,67,-0.7684073400068814],[113,221,68,-0.7680427340289995],[113,221,69,-0.7676803907384199],[113,221,70,-0.7673203161649276],[113,221,71,-0.7669625162501255],[113,221,72,-0.7666069968470101],[113,221,73,-0.7662537637195612],[113,221,74,-0.765902822542306],[113,221,75,-0.7655541788999102],[113,221,76,-0.7652078382867582],[113,221,77,-0.7648638061065344],[113,221,78,-0.7645220876718083],[113,221,79,-0.7641826882036145],[113,222,64,-0.7696761228910001],[113,222,65,-0.769304602712279],[113,222,66,-0.7689353256004293],[113,222,67,-0.7685682978488074],[113,222,68,-0.7682035256638919],[113,222,69,-0.7678410151648724],[113,222,70,-0.7674807723832211],[113,222,71,-0.7671228032622723],[113,222,72,-0.766767113656798],[113,222,73,-0.7664137093325976],[113,222,74,-0.7660625959660619],[113,222,75,-0.7657137791437648],[113,222,76,-0.7653672643620438],[113,222,77,-0.7650230570265809],[113,222,78,-0.764681162451988],[113,222,79,-0.7643415858613875],[113,223,64,-0.7698377128134624],[113,223,65,-0.7694660307899235],[113,223,66,-0.7690965908225345],[113,223,67,-0.7687293992061855],[113,223,68,-0.7683644621489343],[113,223,69,-0.7680017857715912],[113,223,70,-0.7676413761072949],[113,223,71,-0.7672832391010893],[113,223,72,-0.7669273806094999],[113,223,73,-0.7665738064001247],[113,223,74,-0.7662225221511971],[113,223,75,-0.7658735334511786],[113,223,76,-0.7655268457983384],[113,223,77,-0.765182464600336],[113,223,78,-0.7648403951738055],[113,223,79,-0.7645006427439366],[113,224,64,-0.7699994418902577],[113,224,65,-0.7696275993721249],[113,224,66,-0.7692579978949027],[113,224,67,-0.7688906437549937],[113,224,68,-0.768525543162011],[113,224,69,-0.7681627022383654],[113,224,70,-0.7678021270188388],[113,224,71,-0.7674438234501632],[113,224,72,-0.7670877973905966],[113,224,73,-0.7667340546095138],[113,224,74,-0.7663826007869701],[113,224,75,-0.766033441513293],[113,224,76,-0.7656865822886636],[113,224,77,-0.7653420285226976],[113,224,78,-0.7649997855340314],[113,224,79,-0.764659858549902],[113,225,64,-0.7701613097904882],[113,225,65,-0.7697893081298939],[113,225,66,-0.7694195464904506],[113,225,67,-0.7690520311700506],[113,225,68,-0.7686867683798405],[113,225,69,-0.7683237642438087],[113,225,70,-0.7679630247983589],[113,225,71,-0.7676045559918895],[113,225,72,-0.7672483636843694],[113,225,73,-0.766894453646929],[113,225,74,-0.7665428315614237],[113,225,75,-0.7661935030200266],[113,225,76,-0.76584647352481],[113,225,77,-0.7655017484873252],[113,225,78,-0.7651593332281902],[113,225,79,-0.7648192329766695],[113,226,64,-0.770323316182101],[113,226,65,-0.7699511567330777],[113,226,66,-0.7695812362809226],[113,226,67,-0.7692135611249948],[113,226,68,-0.7688481374779521],[113,226,69,-0.7684849714653381],[113,226,70,-0.768124069125157],[113,226,71,-0.7677654364074511],[113,226,72,-0.767409079173879],[113,226,73,-0.7670550031973051],[113,226,74,-0.766703214161364],[113,226,75,-0.7663537176600538],[113,226,76,-0.7660065191973159],[113,226,77,-0.7656616241866179],[113,226,78,-0.7653190379505386],[113,226,79,-0.7649787657203498],[113,227,64,-0.7704854607318654],[113,227,65,-0.7701131448503382],[113,227,66,-0.7697430669368693],[113,227,67,-0.7693752332922627],[113,227,68,-0.7690096501306647],[113,227,69,-0.7686463235791524],[113,227,70,-0.7682852596773078],[113,227,71,-0.767926464376796],[113,227,72,-0.7675699435409432],[113,227,73,-0.7672157029443264],[113,227,74,-0.7668637482723386],[113,227,75,-0.7665140851207812],[113,227,76,-0.7661667189954451],[113,227,77,-0.7658216553116923],[113,227,78,-0.7654788993940428],[113,227,79,-0.7651384564757551],[113,228,64,-0.7706477431054355],[113,228,65,-0.7702752721492125],[113,228,66,-0.7699050381277086],[113,228,67,-0.7695370473431498],[113,228,68,-0.7691713060111482],[113,228,69,-0.7688078202602927],[113,228,70,-0.7684465961317206],[113,228,71,-0.7680876395786983],[113,228,72,-0.7677309564661978],[113,228,73,-0.7673765525704874],[113,228,74,-0.7670244335786973],[113,228,75,-0.766674605088411],[113,228,76,-0.7663270726072478],[113,228,77,-0.7659818415524439],[113,228,78,-0.7656389172504399],[113,228,79,-0.7652983049364609],[113,229,64,-0.7708101629673175],[113,229,65,-0.7704375382960826],[113,229,66,-0.7700671495216947],[113,229,67,-0.7696990029477792],[113,229,68,-0.7693331047913924],[113,229,69,-0.7689694611826116],[113,229,70,-0.7686080781641083],[113,229,71,-0.7682489616907275],[113,229,72,-0.7678921176290661],[113,229,73,-0.767537551757062],[113,229,74,-0.7671852697635608],[113,229,75,-0.7668352772479078],[113,229,76,-0.7664875797195294],[113,229,77,-0.7661421825975158],[113,229,78,-0.7657990912102072],[113,229,79,-0.7654583107947751],[113,230,64,-0.7709727199808956],[113,230,65,-0.770599942956199],[113,230,66,-0.7702294007859423],[113,230,67,-0.7698610997751266],[113,230,68,-0.7694950461422305],[113,230,69,-0.7691312460187975],[113,230,70,-0.7687697054490108],[113,230,71,-0.7684104303892728],[113,230,72,-0.7680534267077826],[113,230,73,-0.7676987001841271],[113,230,74,-0.7673462565088457],[113,230,75,-0.7669961012830242],[113,230,76,-0.7666482400178756],[113,230,77,-0.7663026781343227],[113,230,78,-0.7659594209625855],[113,230,79,-0.7656184737417616],[113,231,64,-0.7711354138083999],[113,231,65,-0.7707624857936508],[113,231,66,-0.7703917915863954],[113,231,67,-0.7700233374929891],[113,231,68,-0.7696571297333094],[113,231,69,-0.7692931744403437],[113,231,70,-0.7689314776597652],[113,231,71,-0.7685720453495115],[113,231,72,-0.7682148833793625],[113,231,73,-0.767859997530532],[113,231,74,-0.7675073934952326],[113,231,75,-0.7671570768762688],[113,231,76,-0.7668090531866195],[113,231,77,-0.7664633278490199],[113,231,78,-0.7661199061955486],[113,231,79,-0.7657787934672092],[113,232,64,-0.7712982441109683],[113,232,65,-0.7709251664714255],[113,232,66,-0.7705543215878892],[113,232,67,-0.770185715768046],[113,232,68,-0.7698193552331494],[113,232,69,-0.7694552461176093],[113,232,70,-0.7690933944685661],[113,232,71,-0.7687338062454706],[113,232,72,-0.7683764873196621],[113,232,73,-0.7680214434739596],[113,232,74,-0.7676686804022272],[113,232,75,-0.7673182037089679],[113,232,76,-0.7669700189089047],[113,232,77,-0.7666241314265643],[113,232,78,-0.766280546595864],[113,232,79,-0.7659392696596926],[113,233,64,-0.771461210548624],[113,233,65,-0.7710879846513883],[113,233,66,-0.7707169904541274],[113,233,67,-0.7703482342658367],[113,233,68,-0.7699817223091235],[113,233,69,-0.7696174607197973],[113,233,70,-0.7692554555464437],[113,233,71,-0.7688957127500048],[113,233,72,-0.7685382382033574],[113,233,73,-0.7681830376909042],[113,233,74,-0.7678301169081394],[113,233,75,-0.767479481461243],[113,233,76,-0.7671311368666616],[113,233,77,-0.7667850885506926],[113,233,78,-0.7664413418490711],[113,233,79,-0.7660999020065511],[113,234,64,-0.7716243127802547],[113,234,65,-0.7712509399942596],[113,234,66,-0.7708797978476611],[113,234,67,-0.77051089265074],[113,234,68,-0.7701442306274352],[113,234,69,-0.7697798179149329],[113,234,70,-0.7694176605632421],[113,234,71,-0.7690577645347744],[113,234,72,-0.7687001357039218],[113,234,73,-0.7683447798566492],[113,234,74,-0.76799170269006],[113,234,75,-0.7676409098119892],[113,234,76,-0.7672924067405865],[113,234,77,-0.7669461989038991],[113,234,78,-0.766602291639459],[113,234,79,-0.7662606901938652],[113,235,64,-0.7717875504636724],[113,235,65,-0.7714140321596766],[113,235,66,-0.7710427434299493],[113,235,67,-0.7706736905860342],[113,235,68,-0.7703068798531789],[113,235,69,-0.7699423173699245],[113,235,70,-0.7695800091876809],[113,235,71,-0.7692199612703065],[113,235,72,-0.7688621794936875],[113,235,73,-0.7685066696453293],[113,235,74,-0.7681534374239223],[113,235,75,-0.7678024884389362],[113,235,76,-0.7674538282102022],[113,235,77,-0.7671074621674965],[113,235,78,-0.7667633956501277],[113,235,79,-0.7664216339065192],[113,236,64,-0.7719509232555838],[113,236,65,-0.7715772608061617],[113,236,66,-0.771205826861328],[113,236,67,-0.7708366277338662],[113,236,68,-0.77046966965031],[113,236,69,-0.7701049587505328],[113,236,70,-0.7697425010873228],[113,236,71,-0.7693823026259641],[113,236,72,-0.7690243692438143],[113,236,73,-0.7686687067298981],[113,236,74,-0.7683153207844713],[113,236,75,-0.7679642170186171],[113,236,76,-0.767615400953827],[113,236,77,-0.7672688780215854],[113,236,78,-0.7669246535629568],[113,236,79,-0.7665827328281685],[113,237,64,-0.772114430811613],[113,237,65,-0.7717406255911474],[113,237,66,-0.7713690478010347],[113,237,67,-0.770999703755276],[113,237,68,-0.7706325996816682],[113,237,69,-0.7702677417213943],[113,237,70,-0.7699051359285991],[113,237,71,-0.7695447882699696],[113,237,72,-0.7691867046243138],[113,237,73,-0.7688308907821528],[113,237,74,-0.7684773524452875],[113,237,75,-0.7681260952263924],[113,237,76,-0.7677771246485987],[113,237,77,-0.7674304461450779],[113,237,78,-0.7670860650586299],[113,237,79,-0.766743986641265],[113,238,64,-0.7722780727862721],[113,238,65,-0.7719041261709446],[113,238,66,-0.7715324059071774],[113,238,67,-0.7711629183101656],[113,238,68,-0.7707956696089467],[113,238,69,-0.7704306659459914],[113,238,70,-0.770067913376778],[113,238,71,-0.7697074178693749],[113,238,72,-0.7693491853040179],[113,238,73,-0.7689932214727034],[113,238,74,-0.7686395320787555],[113,238,75,-0.7682881227364188],[113,238,76,-0.7679389989704432],[113,238,77,-0.7675921662156662],[113,238,78,-0.7672476298166022],[113,238,79,-0.7669053950270246],[113,239,64,-0.7724418488330211],[113,239,65,-0.7720677622008043],[113,239,66,-0.771695900836795],[113,239,67,-0.7713262710573595],[113,239,68,-0.7709588790927536],[113,239,69,-0.7705937310867121],[113,239,70,-0.7702308330960257],[113,239,71,-0.769870191090121],[113,239,72,-0.76951181095064],[113,239,73,-0.7691556984710333],[113,239,74,-0.7688018593561253],[113,239,75,-0.7684502992217107],[113,239,76,-0.7681010235941359],[113,239,77,-0.7677540379098842],[113,239,78,-0.7674093475151634],[113,239,79,-0.7670669576654894],[113,240,64,-0.7726057586042464],[113,240,65,-0.7722315333348952],[113,240,66,-0.7718595322458361],[113,240,67,-0.7714897616545837],[113,240,68,-0.7711222277925892],[113,240,69,-0.7707569368048295],[113,240,70,-0.7703938947493841],[113,240,71,-0.7700331075970168],[113,240,72,-0.7696745812307537],[113,240,73,-0.7693183214454768],[113,240,74,-0.7689643339474908],[113,240,75,-0.7686126243541175],[113,240,76,-0.7682631981932798],[113,240,77,-0.7679160609030851],[113,240,78,-0.7675712178314142],[113,240,79,-0.7672286742355046],[113,241,64,-0.7727698017512391],[113,241,65,-0.7723954392262822],[113,241,66,-0.7720232997891369],[113,241,67,-0.7716533897584434],[113,241,68,-0.7712857153668249],[113,241,69,-0.7709202827604782],[113,241,70,-0.7705570979987497],[113,241,71,-0.7701961670537174],[113,241,72,-0.7698374958097696],[113,241,73,-0.7694810900631983],[113,241,74,-0.7691269555217664],[113,241,75,-0.768775097804302],[113,241,76,-0.7684255224402825],[113,241,77,-0.768078234869419],[113,241,78,-0.7677332404412444],[113,241,79,-0.7673905444146971],[113,242,64,-0.7729339779242559],[113,242,65,-0.7725594795269871],[113,242,66,-0.7721872031204821],[113,242,67,-0.7718171550244834],[113,242,68,-0.7714493414727639],[113,242,69,-0.771083768612717],[113,242,70,-0.770720442504934],[113,242,71,-0.7703593691227846],[113,242,72,-0.7700005543519974],[113,242,73,-0.7696440039902527],[113,242,74,-0.7692897237467495],[113,242,75,-0.7689377192418012],[113,242,76,-0.7685879960064185],[113,242,77,-0.7682405594818948],[113,242,78,-0.7678954150193944],[113,242,79,-0.7675525678795362],[113,243,64,-0.7730982867724879],[113,243,65,-0.7727236538879579],[113,243,66,-0.772351241892574],[113,243,67,-0.7719810571071583],[113,243,68,-0.7716131057666099],[113,243,69,-0.7712473940194968],[113,243,70,-0.7708839279276322],[113,243,71,-0.7705227134656557],[113,243,72,-0.7701637565206141],[113,243,73,-0.7698070628915538],[113,243,74,-0.7694526382890886],[113,243,75,-0.7691004883349953],[113,243,76,-0.768750618561797],[113,243,77,-0.7684030344123483],[113,243,78,-0.7680577412394237],[113,243,79,-0.7677147443053024],[113,244,64,-0.7732627279440853],[113,244,65,-0.7728879619590928],[113,244,66,-0.7725154157570568],[113,244,67,-0.7721450956598552],[113,244,68,-0.7717770079034915],[113,244,69,-0.7714111586376848],[113,244,70,-0.7710475539254479],[113,244,71,-0.7706861997426684],[113,244,72,-0.7703271019776885],[113,244,73,-0.7699702664308992],[113,244,74,-0.7696156988143075],[113,244,75,-0.7692634047511319],[113,244,76,-0.7689133897753866],[113,244,77,-0.7685656593314661],[113,244,78,-0.768220218773735],[113,244,79,-0.7678770733661113],[113,245,64,-0.7734273010861257],[113,245,65,-0.7730524033892091],[113,245,66,-0.7726797243644848],[113,245,67,-0.772309270334864],[113,245,68,-0.7719410475374309],[113,245,69,-0.7715750621230335],[113,245,70,-0.7712113201558617],[113,245,71,-0.7708498276130283],[113,245,72,-0.7704905903841494],[113,245,73,-0.7701336142709383],[113,245,74,-0.7697789049867735],[113,245,75,-0.7694264681562939],[113,245,76,-0.769076309314983],[113,245,77,-0.768728433908755],[113,245,78,-0.7683828472935426],[113,245,79,-0.7680395547348823],[113,246,64,-0.7735920058446754],[113,246,65,-0.7732169778261042],[113,246,66,-0.7728441673643843],[113,246,67,-0.7724735807834372],[113,246,68,-0.7721052243214049],[113,246,69,-0.7717391041302418],[113,246,70,-0.771375226275292],[113,246,71,-0.7710135967348711],[113,246,72,-0.7706542213998472],[113,246,73,-0.770297106073234],[113,246,74,-0.7699422564697594],[113,246,75,-0.7695896782154613],[113,246,76,-0.7692393768472717],[113,246,77,-0.7688913578126022],[113,246,78,-0.7685456264689334],[113,246,79,-0.7682021880833998],[113,247,64,-0.7737568418647673],[113,247,65,-0.7733816849165334],[113,247,66,-0.7730087444052312],[113,247,67,-0.7726380266557688],[113,247,68,-0.7722695379073234],[113,247,69,-0.771903284312933],[113,247,70,-0.7715392719390731],[113,247,71,-0.7711775067652402],[113,247,72,-0.7708179946835318],[113,247,73,-0.7704607414982401],[113,247,74,-0.7701057529254209],[113,247,75,-0.7697530345924892],[113,247,76,-0.769402592037804],[113,247,77,-0.7690544307102537],[113,247,78,-0.7687085559688456],[113,247,79,-0.7683649730822909],[113,248,64,-0.7739218087903798],[113,248,65,-0.7735465243061888],[113,248,66,-0.7731734551344287],[113,248,67,-0.7728026076009716],[113,248,68,-0.7724339879460067],[113,248,69,-0.7720676023236321],[113,248,70,-0.7717034568014332],[113,248,71,-0.7713415573600644],[113,248,72,-0.7709819098928301],[113,248,73,-0.7706245202052795],[113,248,74,-0.7702693940147743],[113,248,75,-0.7699165369500851],[113,248,76,-0.7695659545509763],[113,248,77,-0.7692176522677918],[113,248,78,-0.768871635461045],[113,248,79,-0.7685279094010029],[113,249,64,-0.7740869062644963],[113,249,65,-0.773711495639759],[113,249,66,-0.7733382991983692],[113,249,67,-0.772967323267139],[113,249,68,-0.7725985740872466],[113,249,69,-0.7722320578138282],[113,249,70,-0.7718677805155556],[113,249,71,-0.7715057481742187],[113,249,72,-0.7711459666843075],[113,249,73,-0.7707884418526053],[113,249,74,-0.7704331793977579],[113,249,75,-0.7700801849498702],[113,249,76,-0.7697294640500905],[113,249,77,-0.769381022150197],[113,249,78,-0.7690348646121876],[113,249,79,-0.7686909967078652],[113,250,64,-0.7742521339290844],[113,250,65,-0.7738765985609088],[113,250,66,-0.7735032762424116],[113,250,67,-0.7731321733013223],[113,250,68,-0.7727632959797852],[113,250,69,-0.7723966504339512],[113,250,70,-0.7720322427335562],[113,250,71,-0.7716700788615035],[113,250,72,-0.7713101647134457],[113,250,73,-0.7709525060973784],[113,250,74,-0.77059710873321],[113,250,75,-0.7702439782523575],[113,250,76,-0.7698931201973318],[113,250,77,-0.7695445400213244],[113,250,78,-0.7691982430877968],[113,250,79,-0.7688542346700662],[113,251,64,-0.7744174914250743],[113,251,65,-0.7740418327122558],[113,251,66,-0.7736683859108595],[113,251,67,-0.7732971573495092],[113,251,68,-0.7729281532712919],[113,251,69,-0.7725613798333505],[113,251,70,-0.7721968431064622],[113,251,71,-0.771834549074621],[113,251,72,-0.7714745036346202],[113,251,73,-0.7711167125956455],[113,251,74,-0.770761181678846],[113,251,75,-0.7704079165169291],[113,251,76,-0.770056922653747],[113,251,77,-0.7697082055438829],[113,251,78,-0.7693617705522406],[113,251,79,-0.7690176229536313],[113,252,64,-0.7745829783924184],[113,252,65,-0.774207197735432],[113,252,66,-0.7738336278470227],[113,252,67,-0.7734622750566846],[113,252,68,-0.773093145608425],[113,252,69,-0.7727262456603555],[113,252,70,-0.7723615812842721],[113,252,71,-0.7719991584652373],[113,252,72,-0.771638983101162],[113,252,73,-0.7712810610024006],[113,252,74,-0.7709253978913204],[113,252,75,-0.7705719994018979],[113,252,76,-0.7702208710793049],[113,252,77,-0.7698720183794949],[113,252,78,-0.7695254466687937],[113,252,79,-0.7691811612234845],[113,253,64,-0.7747485944700612],[113,253,65,-0.7743726932710526],[113,253,66,-0.7739990016931848],[113,253,67,-0.7736275260667994],[113,253,68,-0.7732582726368],[113,253,69,-0.7728912475622449],[113,253,70,-0.7725264569159256],[113,253,71,-0.7721639066839503],[113,253,72,-0.7718036027653259],[113,253,73,-0.7714455509715529],[113,253,74,-0.7710897570261949],[113,253,75,-0.7707362265644758],[113,253,76,-0.7703849651328656],[113,253,77,-0.7700359781886668],[113,253,78,-0.7696892710996052],[113,253,79,-0.7693448491434163],[113,254,64,-0.774914339295963],[113,254,65,-0.77453831895874],[113,254,66,-0.7741645070906287],[113,254,67,-0.7737929100227945],[113,254,68,-0.7734235340010145],[113,254,69,-0.7730563851852703],[113,254,70,-0.7726914696493266],[113,254,71,-0.7723287933803145],[113,254,72,-0.7719683622783147],[113,254,73,-0.7716101821559512],[113,254,74,-0.7712542587379626],[113,254,75,-0.7709005976607981],[113,254,76,-0.770549204472204],[113,254,77,-0.7702000846308106],[113,254,78,-0.7698532435057233],[113,254,79,-0.7695086863761079],[113,255,64,-0.7750802125070689],[113,255,65,-0.7747040744370929],[113,255,66,-0.7743301436796044],[113,255,67,-0.7739584265665694],[113,255,68,-0.7735889293446159],[113,255,69,-0.7732216581746252],[113,255,70,-0.7728566191313122],[113,255,71,-0.772493818202809],[113,255,72,-0.7721332612902473],[113,255,73,-0.7717749542073526],[113,255,74,-0.7714189026800163],[113,255,75,-0.771065112345891],[113,255,76,-0.7707135887539782],[113,255,77,-0.7703643373642144],[113,255,78,-0.7700173635470628],[113,255,79,-0.7696726725830997],[113,256,64,-0.7752462137393696],[113,256,65,-0.7748699593437467],[113,256,66,-0.7744959110993902],[113,256,67,-0.774124075339044],[113,256,68,-0.7737544583101629],[113,256,69,-0.7733870661745055],[113,256,70,-0.7730219050077143],[113,256,71,-0.7726589807988994],[113,256,72,-0.7722982994502205],[113,256,73,-0.7719398667764837],[113,256,74,-0.77158368850471],[113,256,75,-0.7712297702737343],[113,256,76,-0.7708781176337913],[113,256,77,-0.7705287360461023],[113,256,78,-0.7701816308824677],[113,256,79,-0.7698368074248523],[113,257,64,-0.7754123426278797],[113,257,65,-0.7750359733153516],[113,257,66,-0.7746618089882711],[113,257,67,-0.7742898559801354],[113,257,68,-0.7739201205392036],[113,257,69,-0.7735526088280882],[113,257,70,-0.7731873269233367],[113,257,71,-0.7728242808150141],[113,257,72,-0.7724634764062869],[113,257,73,-0.7721049195130176],[113,257,74,-0.7717486158633364],[113,257,75,-0.7713945710972381],[113,257,76,-0.7710427907661686],[113,257,77,-0.7706932803326132],[113,257,78,-0.7703460451696875],[113,257,79,-0.7700010905607245],[113,258,64,-0.7755785988066152],[113,258,65,-0.7752021159875514],[113,258,66,-0.774827836983516],[113,258,67,-0.7744557681287367],[113,258,68,-0.7740859156722529],[113,258,69,-0.7737182857775088],[113,258,70,-0.7733528845219332],[113,258,71,-0.7729897178965239],[113,258,72,-0.7726287918054312],[113,258,73,-0.7722701120655526],[113,258,74,-0.7719136844061046],[113,258,75,-0.7715595144682201],[113,258,76,-0.7712076078045351],[113,258,77,-0.770857969878777],[113,258,78,-0.7705106060653557],[113,258,79,-0.7701655216489507],[113,259,64,-0.7757449819086546],[113,259,65,-0.7753683869950432],[113,259,66,-0.7749939947214392],[113,259,67,-0.7746218114227772],[113,259,68,-0.7742518433488542],[113,259,69,-0.7738840966639221],[113,259,70,-0.7735185774462688],[113,259,71,-0.7731552916878023],[113,259,72,-0.7727942452936335],[113,259,73,-0.772435444081673],[113,259,74,-0.7720788937822015],[113,259,75,-0.7717246000374682],[113,259,76,-0.7713725684012774],[113,259,77,-0.7710228043385772],[113,259,78,-0.77067531322505],[113,259,79,-0.7703301003467016],[113,260,64,-0.7759114915661082],[113,260,65,-0.775534785971547],[113,260,66,-0.775160281837369],[113,260,67,-0.7747879854991921],[113,260,68,-0.7744179032075472],[113,260,69,-0.7740500411274713],[113,260,70,-0.7736844053380884],[113,260,71,-0.7733210018321932],[113,260,72,-0.772959836515836],[113,260,73,-0.7726009152079173],[113,260,74,-0.7722442436397601],[113,260,75,-0.7718898274547079],[113,260,76,-0.7715376722077117],[113,260,77,-0.7711877833649182],[113,260,78,-0.7708401663032624],[113,260,79,-0.7704948263100538],[113,261,64,-0.7760781274101411],[113,261,65,-0.7757013125498295],[113,261,66,-0.7753266979656717],[113,261,67,-0.7749542899939456],[113,261,68,-0.7745840948858926],[113,261,69,-0.774216118807312],[113,261,70,-0.7738503678381401],[113,261,71,-0.7734868479720368],[113,261,72,-0.773125565115968],[113,261,73,-0.7727665250898026],[113,261,74,-0.7724097336258835],[113,261,75,-0.7720551963686264],[113,261,76,-0.7717029188741074],[113,261,77,-0.7713529066096507],[113,261,78,-0.7710051649534212],[113,261,79,-0.7706596991940126],[113,262,64,-0.7762448890709431],[113,262,65,-0.7758679663616728],[113,262,66,-0.7754932427397203],[113,262,67,-0.7751207245419999],[113,262,68,-0.7747504180204406],[113,262,69,-0.7743823293415799],[113,262,70,-0.7740164645861447],[113,262,71,-0.7736528297486363],[113,262,72,-0.7732914307369141],[113,262,73,-0.7729322733717927],[113,262,74,-0.772575363386613],[113,262,75,-0.7722207064268412],[113,262,76,-0.7718683080496561],[113,262,77,-0.7715181737235379],[113,262,78,-0.7711703088278609],[113,262,79,-0.7708247186524806],[113,263,64,-0.7764117761777888],[113,263,65,-0.7760347470379352],[113,263,66,-0.7756599157919553],[113,263,67,-0.7752872887773764],[113,263,68,-0.7749168722467915],[113,263,69,-0.7745486723674535],[113,263,70,-0.7741826952208563],[113,263,71,-0.77381894680232],[113,263,72,-0.7734574330205753],[113,263,73,-0.77309815969736],[113,263,74,-0.7727411325669904],[113,263,75,-0.7723863572759613],[113,263,76,-0.7720338393825324],[113,263,77,-0.771683584356319],[113,263,78,-0.7713355975778822],[113,263,79,-0.7709898843383193],[113,264,64,-0.7765787883590158],[113,264,65,-0.7762016542085292],[113,264,66,-0.7758267167538628],[113,264,67,-0.7754539823331333],[113,264,68,-0.7750834571995742],[113,264,69,-0.7747151475211302],[113,264,70,-0.77434905938004],[113,264,71,-0.7739851987724191],[113,264,72,-0.7736235716078471],[113,264,73,-0.7732641837089621],[113,264,74,-0.7729070408110342],[113,264,75,-0.7725521485615645],[113,264,76,-0.7721995125198723],[113,264,77,-0.7718491381566851],[113,264,78,-0.7715010308537309],[113,264,79,-0.7711551959033265],[113,265,64,-0.7767459252420027],[113,265,65,-0.7763686875023996],[113,265,66,-0.7759936452559526],[113,265,67,-0.7756208048413434],[113,265,68,-0.775250172512423],[113,265,69,-0.7748817544378054],[113,265,70,-0.7745155567004494],[113,265,71,-0.7741515852972448],[113,265,72,-0.7737898461385961],[113,265,73,-0.7734303450480201],[113,265,74,-0.7730730877617182],[113,265,75,-0.7727180799281755],[113,265,76,-0.7723653271077493],[113,265,77,-0.7720148347722577],[113,265,78,-0.771666608304574],[113,265,79,-0.7713206529982135],[113,266,64,-0.7769131864532298],[113,266,65,-0.7765358465475843],[113,266,66,-0.7761607009278182],[113,266,67,-0.7757877559331554],[113,266,68,-0.7754170178180402],[113,266,69,-0.7750484927517324],[113,266,70,-0.7746821868178888],[113,266,71,-0.7743181060141497],[113,266,72,-0.7739562562517226],[113,266,73,-0.77359664335498],[113,266,74,-0.7732392730610324],[113,266,75,-0.7728841510193271],[113,266,76,-0.7725312827912368],[113,266,77,-0.7721806738496497],[113,266,78,-0.7718323295785621],[113,266,79,-0.7714862552726666],[113,267,64,-0.7770805716182481],[113,267,65,-0.7767031309711827],[113,267,66,-0.7763278833981068],[113,267,67,-0.7759548352387619],[113,267,68,-0.7755839927481628],[113,267,69,-0.7752153620961917],[113,267,70,-0.7748489493671805],[113,267,71,-0.7744847605594966],[113,267,72,-0.7741228015851278],[113,267,73,-0.7737630782692804],[113,267,74,-0.773405596349951],[113,267,75,-0.7730503614775276],[113,267,76,-0.7726973792143764],[113,267,77,-0.7723466550344334],[113,267,78,-0.7719981943227967],[113,267,79,-0.7716520023753153],[113,268,64,-0.7772480803617028],[113,268,65,-0.7768705403993803],[113,268,66,-0.7764951922945419],[113,268,67,-0.776122042387424],[113,268,68,-0.7757510969335881],[113,268,69,-0.7753823621035152],[113,268,70,-0.7750158439821891],[113,268,71,-0.7746515485686818],[113,268,72,-0.7742894817757386],[113,268,73,-0.7739296494293768],[113,268,74,-0.7735720572684573],[113,268,75,-0.773216710944286],[113,268,76,-0.7728636160202014],[113,268,77,-0.772512777971165],[113,268,78,-0.7721642021833554],[113,268,79,-0.7718178939537566],[113,269,64,-0.7774157123073024],[113,269,65,-0.7770380744574165],[113,269,66,-0.776662627243893],[113,269,67,-0.7762893770074397],[113,269,68,-0.7759183300041409],[113,269,69,-0.7755494924050537],[113,269,70,-0.7751828702957901],[113,269,71,-0.774818469676104],[113,269,72,-0.7744562964594757],[113,269,73,-0.7740963564727102],[113,269,74,-0.7737386554555112],[113,269,75,-0.7733831990600798],[113,269,76,-0.7730299928507047],[113,269,77,-0.7726790423033518],[113,269,78,-0.7723303528052585],[113,269,79,-0.7719839296545223],[113,270,64,-0.7775834670778796],[113,270,65,-0.7772057327696459],[113,270,66,-0.7768301878720361],[113,270,67,-0.7764568387262045],[113,270,68,-0.7760856915887355],[113,270,69,-0.7757167526312385],[113,270,70,-0.775350027939931],[113,270,71,-0.7749855235152254],[113,270,72,-0.7746232452713141],[113,270,73,-0.7742631990357681],[113,270,74,-0.7739053905491102],[113,270,75,-0.7735498254644158],[113,270,76,-0.7731965093469011],[113,270,77,-0.7728454476735149],[113,270,78,-0.7724966458325317],[113,270,79,-0.7721501091231413],[113,271,64,-0.777751344295369],[113,271,65,-0.7773735149595167],[113,271,66,-0.7769978738039311],[113,271,67,-0.7766244271701899],[113,271,68,-0.7762531813153533],[113,271,69,-0.7758841424115597],[113,271,70,-0.7755173165456092],[113,271,71,-0.7751527097185493],[113,271,72,-0.7747903278452621],[113,271,73,-0.7744301767540618],[113,271,74,-0.7740722621862682],[113,271,75,-0.7737165897958083],[113,271,76,-0.7733631651488043],[113,271,77,-0.7730119937231659],[113,271,78,-0.7726630809081829],[113,271,79,-0.7723164320041164],[113,272,64,-0.7779193435807845],[113,272,65,-0.7775414206495477],[113,272,66,-0.7771656846636004],[113,272,67,-0.7767921419649202],[113,272,68,-0.7764207988110197],[113,272,69,-0.7760516613745427],[113,272,70,-0.7756847357428486],[113,272,71,-0.7753200279175975],[113,272,72,-0.7749575438143378],[113,272,73,-0.7745972892621042],[113,272,74,-0.7742392700029916],[113,272,75,-0.7738834916917561],[113,272,76,-0.773529959895404],[113,272,77,-0.7731786800927838],[113,272,78,-0.7728296576741795],[113,272,79,-0.7724828979409016],[113,273,64,-0.7780874645542813],[113,273,65,-0.7777094494613893],[113,273,66,-0.7773336200741893],[113,273,67,-0.7769599827350344],[113,273,68,-0.7765885437018659],[113,273,69,-0.7762193091478102],[113,273,70,-0.7758522851607621],[113,273,71,-0.7754874777429714],[113,273,72,-0.7751248928106304],[113,273,73,-0.7747645361934712],[113,273,74,-0.7744064136343415],[113,273,75,-0.7740505307888041],[113,273,76,-0.7736968932247276],[113,273,77,-0.7733455064218774],[113,273,78,-0.7729963757715101],[113,273,79,-0.7726495065759642],[113,274,64,-0.7782557068351235],[113,274,65,-0.7778776010157927],[113,274,66,-0.7775016796579347],[113,274,67,-0.7771279491042541],[113,274,68,-0.7767564156130976],[113,274,69,-0.7763870853580502],[113,274,70,-0.7760199644275192],[113,274,71,-0.7756550588243211],[113,274,72,-0.7752923744652687],[113,274,73,-0.7749319171807697],[113,274,74,-0.7745736927144012],[113,274,75,-0.7742177067225113],[113,274,76,-0.7738639647738084],[113,274,77,-0.7735124723489528],[113,274,78,-0.7731632348401525],[113,274,79,-0.7728162575507519],[113,275,64,-0.7784240700417082],[113,275,65,-0.7780458749326333],[113,275,66,-0.7776698630361889],[113,275,67,-0.7772960406954078],[113,275,68,-0.776924414169018],[113,275,69,-0.77655498963104],[113,275,70,-0.77618777317037],[113,275,71,-0.7758227707903682],[113,275,72,-0.7754599884084453],[113,275,73,-0.7750994318556614],[113,275,74,-0.7747411068763013],[113,275,75,-0.774385019127475],[113,275,76,-0.7740311741787093],[113,275,77,-0.7736795775115377],[113,275,78,-0.7733302345190972],[113,275,79,-0.7729831505057176],[113,276,64,-0.7785925537915346],[113,276,65,-0.778214270830879],[113,276,66,-0.7778381698293884],[113,276,67,-0.7774642571303991],[113,276,68,-0.777092538992997],[113,276,69,-0.7767230215916145],[113,276,70,-0.7763557110156136],[113,276,71,-0.7759906132688751],[113,276,72,-0.7756277342693844],[113,276,73,-0.7752670798488315],[113,276,74,-0.774908655752186],[113,276,75,-0.7745524676372983],[113,276,76,-0.7741985210744908],[113,276,77,-0.7738468215461487],[113,276,78,-0.7734973744463162],[113,276,79,-0.7731501850802869],[113,277,64,-0.7787611577012641],[113,277,65,-0.7783827883286522],[113,277,66,-0.7780065996571144],[113,277,67,-0.7776325980302676],[113,277,68,-0.7772607897075319],[113,277,69,-0.7768911808637275],[113,277,70,-0.7765237775886594],[113,277,71,-0.7761585858867055],[113,277,72,-0.7757956116764031],[113,277,73,-0.7754348607900494],[113,277,74,-0.7750763389732764],[113,277,75,-0.7747200518846525],[113,277,76,-0.7743660050952733],[113,277,77,-0.7740142040883538],[113,277,78,-0.7736646542588239],[113,277,79,-0.7733173609129194],[113,278,64,-0.7789298813866992],[113,278,65,-0.778551427043206],[113,278,66,-0.778175152138071],[113,278,67,-0.7778010630151673],[113,278,68,-0.7774291659342251],[113,278,69,-0.7770594670704294],[113,278,70,-0.7766919725140046],[113,278,71,-0.7763266882698023],[113,278,72,-0.7759636202568893],[113,278,73,-0.7756027743081468],[113,278,74,-0.775244156169847],[113,278,75,-0.7748877715012533],[113,278,76,-0.7745336258742131],[113,278,77,-0.774181724772749],[113,278,78,-0.7738320735926548],[113,278,79,-0.773484677641087],[113,279,64,-0.7790987244627597],[113,279,65,-0.7787201865909033],[113,279,66,-0.7783438268900627],[113,279,67,-0.7779696517043431],[113,279,68,-0.7775976672937616],[113,279,69,-0.7772278798338441],[113,279,70,-0.7768602954152111],[113,279,71,-0.7764949200431649],[113,279,72,-0.7761317596372783],[113,279,73,-0.7757708200309945],[113,279,74,-0.7754121069712023],[113,279,75,-0.775055626117839],[113,279,76,-0.7747013830434806],[113,279,77,-0.7743493832329356],[113,279,78,-0.7739996320828401],[113,279,79,-0.7736521349012493],[113,280,64,-0.7792676865435453],[113,280,65,-0.778889066587277],[113,280,66,-0.7785126235300549],[113,280,67,-0.7781383637161928],[113,280,68,-0.7777662934059703],[113,280,69,-0.777396418775231],[113,280,70,-0.7770287459149676],[113,280,71,-0.7766632808309104],[113,280,72,-0.7763000294431153],[113,280,73,-0.7759389975855641],[113,280,74,-0.77558019100574],[113,280,75,-0.7752236153642313],[113,280,76,-0.7748692762343213],[113,280,77,-0.7745171791015819],[113,280,78,-0.7741673293634694],[113,280,79,-0.7738197323289172],[113,281,64,-0.7794367672423026],[113,281,65,-0.7790580666469985],[113,281,66,-0.7786815416741434],[113,281,67,-0.7783071986682351],[113,281,68,-0.7779350438897923],[113,281,69,-0.7775650835149527],[113,281,70,-0.7771973236350578],[113,281,71,-0.7768317702562423],[113,281,72,-0.7764684292990223],[113,281,73,-0.7761073065978955],[113,281,74,-0.7757484079009175],[113,281,75,-0.7753917388693043],[113,281,76,-0.7750373050770243],[113,281,77,-0.7746851120103911],[113,281,78,-0.7743351650676598],[113,281,79,-0.7739874695586191],[113,282,64,-0.77960596617145],[113,282,65,-0.7792271863839021],[113,282,66,-0.7788505809375772],[113,282,67,-0.7784761561771335],[113,282,68,-0.7781039183633048],[113,282,69,-0.7777338736724989],[113,282,70,-0.7773660281963831],[113,282,71,-0.7770003879414735],[113,282,72,-0.7766369588287229],[113,282,73,-0.7762757466931222],[113,282,74,-0.7759167572832762],[113,282,75,-0.7755599962610071],[113,282,76,-0.7752054692009458],[113,282,77,-0.7748531815901254],[113,282,78,-0.7745031388275776],[113,282,79,-0.7741553462239259],[113,283,64,-0.7797752829425455],[113,283,65,-0.7793964254109526],[113,283,66,-0.7790197409347275],[113,283,67,-0.7786452358586645],[113,283,68,-0.778272916443689],[113,283,69,-0.7779027888664551],[113,283,70,-0.7775348592189326],[113,283,71,-0.7771691335079952],[113,283,72,-0.7768056176550098],[113,283,73,-0.7764443174954376],[113,283,74,-0.7760852387784101],[113,283,75,-0.7757283871663327],[113,283,76,-0.7753737682344769],[113,283,77,-0.7750213874705731],[113,283,78,-0.7746712502744083],[113,283,79,-0.7743233619574182],[113,284,64,-0.7799447171663485],[113,284,65,-0.779565783340307],[113,284,66,-0.7791890212791484],[113,284,67,-0.7788144373277791],[113,284,68,-0.7784420377472916],[113,284,69,-0.7780718287145635],[113,284,70,-0.7777038163218427],[113,284,71,-0.7773380065763378],[113,284,72,-0.7769744053998067],[113,284,73,-0.7766130186281577],[113,284,74,-0.7762538520110265],[113,284,75,-0.7758969112113793],[113,284,76,-0.7755422018051056],[113,284,77,-0.7751897292806115],[113,284,78,-0.7748394990384168],[113,284,79,-0.7744915163907483],[113,285,64,-0.7801142684527962],[113,285,65,-0.7797352597832918],[113,285,66,-0.7793584215835548],[113,285,67,-0.7789837601985798],[113,285,68,-0.7786112818896027],[113,285,69,-0.7782409928337002],[113,285,70,-0.7778728991233755],[113,285,71,-0.7775070067661487],[113,285,72,-0.7771433216841452],[113,285,73,-0.776781849713698],[113,285,74,-0.7764225966049237],[113,285,75,-0.7760655680213273],[113,285,76,-0.7757107695393939],[113,285,77,-0.7753582066481828],[113,285,78,-0.7750078847489252],[113,285,79,-0.7746598091546172],[113,286,64,-0.7802839364109824],[113,286,65,-0.7799048543503807],[113,286,66,-0.7795279414597999],[113,286,67,-0.7791532040842986],[113,286,68,-0.7787806484852322],[113,286,69,-0.7784102808398531],[113,286,70,-0.7780421072408961],[113,286,71,-0.7776761336961691],[113,286,72,-0.7773123661281425],[113,286,73,-0.7769508103735503],[113,286,74,-0.7765914721829681],[113,286,75,-0.7762343572204167],[113,286,76,-0.7758794710629543],[113,286,77,-0.7755268192002719],[113,286,78,-0.7751764070342898],[113,286,79,-0.7748282398787514],[113,287,64,-0.7804537206492178],[113,287,65,-0.7800745666512552],[113,287,66,-0.7796975805189357],[113,287,67,-0.7793227685973575],[113,287,68,-0.7789501371479719],[113,287,69,-0.7785796923481827],[113,287,70,-0.7782114402909333],[113,287,71,-0.7778453869842957],[113,287,72,-0.777481538351062],[113,287,73,-0.777119900228345],[113,287,74,-0.7767604783671558],[113,287,75,-0.7764032784320084],[113,287,76,-0.7760483060005124],[113,287,77,-0.7756955665629679],[113,287,78,-0.7753450655219623],[113,287,79,-0.7749968081919648],[113,288,64,-0.7806236207750079],[113,288,65,-0.7802443962947831],[113,288,66,-0.7798673383711916],[113,288,67,-0.779492453349347],[113,288,68,-0.7791197474907726],[113,288,69,-0.7787492269730002],[113,288,70,-0.7783808978891573],[113,288,71,-0.7780147662475579],[113,288,72,-0.777650837971292],[113,288,73,-0.7772891188978276],[113,288,74,-0.7769296147785894],[113,288,75,-0.776572331278562],[113,288,76,-0.7762172739758836],[113,288,77,-0.7758644483614411],[113,288,78,-0.7755138598384675],[113,288,79,-0.7751655137221363],[113,289,64,-0.7807936363950303],[113,289,65,-0.7804143428889949],[113,289,66,-0.7800372146259505],[113,289,67,-0.7796622579510025],[113,289,68,-0.7792894791257217],[113,289,69,-0.7789188843277438],[113,289,70,-0.7785504796503577],[113,289,71,-0.7781842711020952],[113,289,72,-0.7778202646063211],[113,289,73,-0.7774584660008365],[113,289,74,-0.7770988810374557],[113,289,75,-0.7767415153816118],[113,289,76,-0.7763863746119495],[113,289,77,-0.77603346421992],[113,289,78,-0.7756827896093801],[113,289,79,-0.7753343560961852],[113,290,64,-0.7809637671151959],[113,290,65,-0.7805844060411457],[113,290,66,-0.7802072088918115],[113,290,67,-0.779832182012266],[113,290,68,-0.7794593316641036],[113,290,69,-0.779088664025041],[113,290,70,-0.7787201851885037],[113,290,71,-0.7783539011632183],[113,290,72,-0.7779898178728015],[113,290,73,-0.7776279411553637],[113,290,74,-0.7772682767630871],[113,290,75,-0.7769108303618297],[113,290,76,-0.7765556075307205],[113,290,77,-0.7762026137617535],[113,290,78,-0.7758518544593862],[113,290,79,-0.775503334940135],[113,291,64,-0.7811340125406172],[113,291,65,-0.7807545853576829],[113,291,66,-0.7803773207765566],[113,291,67,-0.7800022251422541],[113,291,68,-0.7796293047163695],[113,291,69,-0.779258565676676],[113,291,70,-0.7788900141167128],[113,291,71,-0.7785236560453774],[113,291,72,-0.7781594973865155],[113,291,73,-0.7777975439785237],[113,291,74,-0.7774378015739288],[113,291,75,-0.777080275838992],[113,291,76,-0.7767249723533034],[113,291,77,-0.7763718966093774],[113,291,78,-0.7760210540122512],[113,291,79,-0.7756724498790794],[113,292,64,-0.7813043722756321],[113,292,65,-0.7809248804442706],[113,292,66,-0.7805475498871758],[113,292,67,-0.7801723869492821],[113,292,68,-0.7797993978921595],[113,292,69,-0.7794285888936137],[113,292,70,-0.7790599660472742],[113,292,71,-0.7786935353621861],[113,292,72,-0.7783293027624001],[113,292,73,-0.7779672740865767],[113,292,74,-0.777607455087564],[113,292,75,-0.7772498514320038],[113,292,76,-0.776894468699925],[113,292,77,-0.7765413123843401],[113,292,78,-0.7761903878908436],[113,292,79,-0.7758417005372069],[113,293,64,-0.7814748459237724],[113,293,65,-0.7810952909057574],[113,293,66,-0.7807178958298342],[113,293,67,-0.7803426670408318],[113,293,68,-0.7799696108002716],[113,293,69,-0.7795987332859683],[113,293,70,-0.7792300405916177],[113,293,71,-0.7788635387263889],[113,293,72,-0.7784992336145149],[113,293,73,-0.7781371310948964],[113,293,74,-0.7777772369206803],[113,293,75,-0.7774195567588662],[113,293,76,-0.7770640961898996],[113,293,77,-0.7767108607072684],[113,293,78,-0.7763598557171025],[113,293,79,-0.7760110865377686],[113,294,64,-0.7816454330878241],[113,294,65,-0.7812658163462376],[113,294,66,-0.780888358209934],[113,294,67,-0.7805130650236127],[113,294,68,-0.7801399430487228],[113,294,69,-0.7797689984630636],[113,294,70,-0.7794002373603738],[113,294,71,-0.7790336657499229],[113,294,72,-0.7786692895561032],[113,294,73,-0.7783071146180319],[113,294,74,-0.7779471466891326],[113,294,75,-0.7775893914367391],[113,294,76,-0.7772338544416912],[113,294,77,-0.7768805411979306],[113,294,78,-0.7765294571121001],[113,294,79,-0.7761806075031394],[113,295,64,-0.7818161333698057],[113,295,65,-0.7814364563690286],[113,295,66,-0.7810589366320915],[113,295,67,-0.78068358050354],[113,295,68,-0.7803103942447264],[113,295,69,-0.7799393840334112],[113,295,70,-0.7795705559633521],[113,295,71,-0.7792039160438955],[113,295,72,-0.7788394701995692],[113,295,73,-0.7784772242696848],[113,295,74,-0.7781171840079186],[113,295,75,-0.7777593550819167],[113,295,76,-0.7774037430728905],[113,295,77,-0.7770503534752128],[113,295,78,-0.7766991916960174],[113,295,79,-0.7763502630547954],[113,296,64,-0.7819869463709455],[113,296,65,-0.7816072105766483],[113,296,66,-0.7812296307001145],[113,296,67,-0.7808542130857109],[113,296,68,-0.7804809639946694],[113,296,69,-0.7801098896046873],[113,296,70,-0.7797409960095176],[113,296,71,-0.7793742892185606],[113,296,72,-0.7790097751564558],[113,296,73,-0.7786474596626859],[113,296,74,-0.7782873484911574],[113,296,75,-0.7779294473098058],[113,296,76,-0.7775737617001914],[113,296,77,-0.7772202971570958],[113,296,78,-0.7768690590881221],[113,296,79,-0.7765200528132903],[113,297,64,-0.782157871691742],[113,297,65,-0.7817780785708767],[113,297,66,-0.7814004400170634],[113,297,67,-0.7810249623744667],[113,297,68,-0.7806516519041733],[113,297,69,-0.7802805147837939],[113,297,70,-0.779911557107053],[113,297,71,-0.7795447848833805],[113,297,72,-0.7791802040375049],[113,297,73,-0.7788178204090571],[113,297,74,-0.7784576397521502],[113,297,75,-0.7780996677349866],[113,297,76,-0.777743909939453],[113,297,77,-0.7773903718607176],[113,297,78,-0.7770390589068301],[113,297,79,-0.7766899763983179],[113,298,64,-0.782328908931933],[113,298,65,-0.7819490599527229],[113,298,66,-0.7815713641852196],[113,298,67,-0.7811958279733602],[113,298,68,-0.7808224575780627],[113,298,69,-0.7804512591768271],[113,298,70,-0.7800822388633253],[113,298,71,-0.7797154026469939],[113,298,72,-0.7793507564526266],[113,298,73,-0.7789883061199789],[113,298,74,-0.7786280574033483],[113,298,75,-0.7782700159711808],[113,298,76,-0.7779141874056672],[113,298,77,-0.7775605772023397],[113,298,78,-0.7772091907696725],[113,298,79,-0.7768600334286788],[113,299,64,-0.7825000576905188],[113,299,65,-0.7821201543224502],[113,299,66,-0.7817424028061086],[113,299,67,-0.7813668094851801],[113,299,68,-0.780993380620389],[113,299,69,-0.7806221223891009],[113,299,70,-0.7802530408849112],[113,299,71,-0.7798861421172396],[113,299,72,-0.7795214320109218],[113,299,73,-0.7791589164058148],[113,299,74,-0.7787986010563769],[113,299,75,-0.7784404916312755],[113,299,76,-0.7780845937129827],[113,299,77,-0.7777309127973722],[113,299,78,-0.7773794542933209],[113,299,79,-0.777030223522305],[113,300,64,-0.7826713175657305],[113,300,65,-0.7822913612795432],[113,300,66,-0.7819135554804693],[113,300,67,-0.7815379065119185],[113,300,68,-0.7811644206343982],[113,300,69,-0.7807931040251146],[113,300,70,-0.7804239627775638],[113,300,71,-0.7800570029011245],[113,300,72,-0.7796922303206508],[113,300,73,-0.779329650876078],[113,300,74,-0.7789692703220027],[113,300,75,-0.7786110943272905],[113,300,76,-0.7782551284746719],[113,300,77,-0.7779013782603403],[113,300,78,-0.7775498490935528],[113,300,79,-0.7772005462962269],[113,301,64,-0.7828426881550913],[113,301,65,-0.7824626804227699],[113,301,66,-0.7820848218083137],[113,301,67,-0.7817091186548324],[113,301,68,-0.7813355772225917],[113,301,69,-0.780964203688615],[113,301,70,-0.7805950041462745],[113,301,71,-0.7802279846048843],[113,301,72,-0.7798631509892943],[113,301,73,-0.7795005091394942],[113,301,74,-0.7791400648101958],[113,301,75,-0.7787818236704401],[113,301,76,-0.778425791303194],[113,301,77,-0.7780719732049475],[113,301,78,-0.7777203747853156],[113,301,79,-0.7773710013666353],[113,302,64,-0.7830141690553932],[113,302,65,-0.7826341113501579],[113,302,66,-0.7822562013889055],[113,302,67,-0.7818804455144213],[113,302,68,-0.7815068499867048],[113,302,69,-0.7811354209825728],[113,302,70,-0.78076616459525],[113,302,71,-0.7803990868339622],[113,302,72,-0.7800341936235308],[113,302,73,-0.7796714908039776],[113,302,74,-0.7793109841301065],[113,302,75,-0.7789526792711107],[113,302,76,-0.7785965818101706],[113,302,77,-0.7782426972440506],[113,302,78,-0.7778910309827018],[113,302,79,-0.7775415883488583],[113,303,64,-0.7831857598626754],[113,303,65,-0.7828056536589725],[113,303,66,-0.7824276938207364],[113,303,67,-0.7820518866904033],[113,303,68,-0.7816782385276826],[113,303,69,-0.7813067555091603],[113,303,70,-0.7809374437278892],[113,303,71,-0.7805703091929838],[113,303,72,-0.7802053578292135],[113,303,73,-0.7798425954766086],[113,303,74,-0.7794820278900417],[113,303,75,-0.7791236607388363],[113,303,76,-0.7787674996063628],[113,303,77,-0.7784135499896382],[113,303,78,-0.7780618172989267],[113,303,79,-0.7777123068573377],[113,304,64,-0.7833574601722842],[113,304,65,-0.7829773069457775],[113,304,66,-0.7825992987015878],[113,304,67,-0.7822234417817777],[113,304,68,-0.7818497424457422],[113,304,69,-0.7814782068698123],[113,304,70,-0.7811088411468454],[113,304,71,-0.7807416512858205],[113,304,72,-0.7803766432114319],[113,304,73,-0.7800138227636948],[113,304,74,-0.7796531956975279],[113,304,75,-0.7792947676823614],[113,304,76,-0.7789385443017338],[113,304,77,-0.7785845310528914],[113,304,78,-0.7782327333463898],[113,304,79,-0.7778831565056916],[113,305,64,-0.7835292695788423],[113,305,65,-0.7831490708064037],[113,305,66,-0.7827710156284988],[113,305,67,-0.7823951103867921],[113,305,68,-0.7820213613403401],[113,305,69,-0.7816497746651943],[113,305,70,-0.781280356453993],[113,305,71,-0.7809131127155562],[113,305,72,-0.7805480493744792],[113,305,73,-0.7801851722707391],[113,305,74,-0.7798244871592774],[113,305,75,-0.7794659997096081],[113,305,76,-0.7791097155054152],[113,305,77,-0.7787556400441517],[113,305,78,-0.7784037787366422],[113,305,79,-0.7780541369066807],[113,306,64,-0.7837011876762712],[113,306,65,-0.7833209448359718],[113,306,66,-0.7829428441977895],[113,306,67,-0.7825668921029664],[113,306,68,-0.7821930948101957],[113,306,69,-0.7818214584952259],[113,306,70,-0.7814519892504521],[113,306,71,-0.7810846930845113],[113,306,72,-0.7807195759218765],[113,306,73,-0.7803566436024634],[113,306,74,-0.7799959018812129],[113,306,75,-0.7796373564277002],[113,306,76,-0.7792810128257316],[113,306,77,-0.7789268765729449],[113,306,78,-0.7785749530804111],[113,306,79,-0.7782252476722334],[113,307,64,-0.7838732140577606],[113,307,65,-0.7834929286288612],[113,307,66,-0.7831147840050297],[113,307,67,-0.7827387865270607],[113,307,68,-0.7823649424532602],[113,307,69,-0.7819932579590494],[113,307,70,-0.781623739136556],[113,307,71,-0.7812563919942106],[113,307,72,-0.7808912224563402],[113,307,73,-0.7805282363627758],[113,307,74,-0.7801674394684347],[113,307,75,-0.77980883744293],[113,307,76,-0.779452435870168],[113,307,77,-0.7790982402479483],[113,307,78,-0.7787462559875664],[113,307,79,-0.778396488413412],[113,308,64,-0.7840453483158285],[113,308,65,-0.7836650217787711],[113,308,66,-0.7832868346450993],[113,308,67,-0.7829107932551366],[113,308,68,-0.7825369038667769],[113,308,69,-0.78216517265509],[113,308,70,-0.7817956057119126],[113,308,71,-0.7814282090454446],[113,308,72,-0.7810629885798439],[113,308,73,-0.7806999501548331],[113,308,74,-0.7803390995252827],[113,308,75,-0.779980442360821],[113,308,76,-0.7796239842454314],[113,308,77,-0.7792697306770529],[113,308,78,-0.7789176870671827],[113,308,79,-0.7785678587404754],[113,309,64,-0.7842175900422989],[113,309,65,-0.7838372238786968],[113,309,66,-0.7834589957121663],[113,309,67,-0.7830829118825342],[113,309,68,-0.7827089786472587],[113,309,69,-0.782337202181034],[113,309,70,-0.7819675885753814],[113,309,71,-0.7816001438382467],[113,309,72,-0.7812348738935948],[113,309,73,-0.7808717845810167],[113,309,74,-0.7805108816553131],[113,309,75,-0.7801521707861042],[113,309,76,-0.7797956575574279],[113,309,77,-0.7794413474673396],[113,309,78,-0.7790892459275165],[113,309,79,-0.7787393582628555],[113,310,64,-0.7843899388282789],[113,310,65,-0.7840095345209082],[113,310,66,-0.783631266799663],[113,310,67,-0.7832551420038495],[113,310,68,-0.7828811663904656],[113,310,69,-0.782509346133805],[113,310,70,-0.7821396873250506],[113,310,71,-0.7817721959718699],[113,310,72,-0.781406877998011],[113,310,73,-0.7810437392429103],[113,310,74,-0.7806827854612751],[113,310,75,-0.7803240223226948],[113,310,76,-0.7799674554112386],[113,310,77,-0.7796130902250564],[113,310,78,-0.7792609321759822],[113,310,79,-0.7789109865891337],[113,311,64,-0.7845623942642203],[113,311,65,-0.7841819532970101],[113,311,66,-0.7838036475003483],[113,311,67,-0.7834274832129955],[113,311,68,-0.7830534666914648],[113,311,69,-0.782681604109626],[113,311,70,-0.7823119015582984],[113,311,71,-0.7819443650448482],[113,311,72,-0.7815790004927832],[113,311,73,-0.781215813741361],[113,311,74,-0.7808548105451728],[113,311,75,-0.7804959965737541],[113,311,76,-0.7801393774111827],[113,311,77,-0.7797849585556801],[113,311,78,-0.779432745419215],[113,311,79,-0.7790827433271033],[113,312,64,-0.7847349559398864],[113,312,65,-0.7843544797979104],[113,312,66,-0.7839761374062745],[113,312,67,-0.7835999351031699],[113,312,68,-0.7832258791446001],[113,312,69,-0.7828539757039863],[113,312,70,-0.7824842308717612],[113,312,71,-0.7821166506549649],[113,312,72,-0.7817512409768416],[113,312,73,-0.7813880076764468],[113,312,74,-0.7810269565082325],[113,312,75,-0.7806680931416569],[113,312,76,-0.7803114231607837],[113,312,77,-0.7799569520638833],[113,312,78,-0.7796046852630368],[113,312,79,-0.7792546280837359],[113,313,64,-0.7849076234443771],[113,313,65,-0.7845271136138436],[113,313,66,-0.7841487361088122],[113,313,67,-0.7837724972668791],[113,313,68,-0.7833984033435142],[113,313,69,-0.7830264605116661],[113,313,70,-0.7826566748613564],[113,313,71,-0.7822890523992758],[113,313,72,-0.7819235990483806],[113,313,73,-0.7815603206475012],[113,313,74,-0.7811992229509268],[113,313,75,-0.7808403116280154],[113,313,76,-0.7804835922627938],[113,313,77,-0.7801290703535588],[113,313,78,-0.7797767513124813],[113,313,79,-0.7794266404652065],[113,314,64,-0.7850803963660961],[113,314,65,-0.7846998543343395],[113,314,66,-0.784321443198617],[113,314,67,-0.7839451692959059],[113,314,68,-0.7835710388811175],[113,314,69,-0.7831990581267039],[113,314,70,-0.7828292331222512],[113,314,71,-0.7824615698740767],[113,314,72,-0.7820960743048255],[113,314,73,-0.7817327522530796],[113,314,74,-0.7813716094729416],[113,314,75,-0.7810126516336465],[113,314,76,-0.7806558843191616],[113,314,77,-0.7803013130277866],[113,314,78,-0.7799489431717603],[113,314,79,-0.7795987800768593],[113,315,64,-0.7852532742928117],[113,315,65,-0.7848727015482829],[113,315,66,-0.7844942582656915],[113,315,67,-0.7841179507813705],[113,315,68,-0.7837437853496488],[113,315,69,-0.7833717681424573],[113,315,70,-0.7830019052489228],[113,315,71,-0.7826342026749652],[113,315,72,-0.782268666342895],[113,315,73,-0.7819053020910215],[113,315,74,-0.7815441156732381],[113,315,75,-0.7811851127586339],[113,315,76,-0.7808282989310927],[113,315,77,-0.7804736796888958],[113,315,78,-0.7801212604443266],[113,315,79,-0.779771046523271],[113,316,64,-0.7854262568116346],[113,316,65,-0.7850456548438923],[113,316,66,-0.7846671808993619],[113,316,67,-0.7842908413137082],[113,316,68,-0.7839166423406527],[113,316,69,-0.7835445901515812],[113,316,70,-0.7831746908351366],[113,316,71,-0.782806950396818],[113,316,72,-0.7824413747585771],[113,316,73,-0.7820779697584275],[113,316,74,-0.7817167411500299],[113,316,75,-0.7813576946023039],[113,316,76,-0.7810008356990279],[113,316,77,-0.7806461699384413],[113,316,78,-0.7802937027328498],[113,316,79,-0.7799434394082263],[113,317,64,-0.7855993435089952],[113,317,65,-0.7852187138086959],[113,317,66,-0.7848402106882556],[113,317,67,-0.7844638404826457],[113,317,68,-0.7840896094449564],[113,317,69,-0.7837175237460033],[113,317,70,-0.7833475894739221],[113,317,71,-0.7829798126337667],[113,317,72,-0.7826141991471064],[113,317,73,-0.7822507548516354],[113,317,74,-0.7818894855007588],[113,317,75,-0.7815303967632032],[113,317,76,-0.7811734942226186],[113,317,77,-0.78081878337718],[113,317,78,-0.7804662696391931],[113,317,79,-0.780115958334695],[113,318,64,-0.7857725339707037],[113,318,65,-0.7853918780295931],[113,318,66,-0.7850133472203619],[113,318,67,-0.7846369478772631],[113,318,68,-0.784262686252731],[113,318,69,-0.783890568516987],[113,318,70,-0.7835206007576352],[113,318,71,-0.7831527889792602],[113,318,72,-0.7827871391030258],[113,318,73,-0.7824236569662829],[113,318,74,-0.7820623483221573],[113,318,75,-0.78170321883916],[113,318,76,-0.7813462741007896],[113,318,77,-0.7809915196051337],[113,318,78,-0.7806389607644753],[113,318,79,-0.7802886029048941],[113,319,64,-0.7859458277819285],[113,319,65,-0.7855651470928322],[113,319,66,-0.7851865900830093],[113,319,67,-0.7848101630859702],[113,319,68,-0.7844358723534685],[113,319,69,-0.7840637240551069],[113,319,70,-0.783693724277934],[113,319,71,-0.7833258790260416],[113,319,72,-0.782960194220163],[113,319,73,-0.7825966756972833],[113,319,74,-0.7822353292102251],[113,319,75,-0.7818761604272609],[113,319,76,-0.781519174931715],[113,319,77,-0.7811643782215645],[113,319,78,-0.7808117757090476],[113,319,79,-0.7804613727202641],[114,-64,64,-0.7301104089581243],[114,-64,65,-0.7298308270251532],[114,-64,66,-0.7295536246726861],[114,-64,67,-0.7292788070016051],[114,-64,68,-0.7290063790200892],[114,-64,69,-0.7287363456432031],[114,-64,70,-0.72846871169247],[114,-64,71,-0.7282034818954494],[114,-64,72,-0.7279406608853128],[114,-64,73,-0.7276802532004353],[114,-64,74,-0.727422263283956],[114,-64,75,-0.7271666954833721],[114,-64,76,-0.7269135540501173],[114,-64,77,-0.7266628431391435],[114,-64,78,-0.7264145668085057],[114,-64,79,-0.7261687290189408],[114,-63,64,-0.730225391388895],[114,-63,65,-0.7299453683261503],[114,-63,66,-0.7296677247978849],[114,-63,67,-0.7293924659110851],[114,-63,68,-0.7291195966800347],[114,-63,69,-0.7288491220259037],[114,-63,70,-0.7285810467763216],[114,-63,71,-0.7283153756649546],[114,-63,72,-0.7280521133310813],[114,-63,73,-0.7277912643191838],[114,-63,74,-0.7275328330785089],[114,-63,75,-0.7272768239626606],[114,-63,76,-0.7270232412291802],[114,-63,77,-0.7267720890391259],[114,-63,78,-0.7265233714566595],[114,-63,79,-0.7262770924486233],[114,-62,64,-0.7303405346686181],[114,-62,65,-0.7300600709987858],[114,-62,66,-0.7297819868158908],[114,-62,67,-0.7295062872330158],[114,-62,68,-0.7292329772705417],[114,-62,69,-0.7289620618557368],[114,-62,70,-0.728693545822329],[114,-62,71,-0.728427433910084],[114,-62,72,-0.7281637307643802],[114,-62,73,-0.7279024409357997],[114,-62,74,-0.7276435688796895],[114,-62,75,-0.7273871189557539],[114,-62,76,-0.7271330954276343],[114,-62,77,-0.7268815024624892],[114,-62,78,-0.7266323441305793],[114,-62,79,-0.7263856244048466],[114,-61,64,-0.7304558390688066],[114,-61,65,-0.7301749353181932],[114,-61,66,-0.7298964110054393],[114,-61,67,-0.7296202712497161],[114,-61,68,-0.7293465210774938],[114,-61,69,-0.7290751654221314],[114,-61,70,-0.7288062091234481],[114,-61,71,-0.7285396569273015],[114,-61,72,-0.7282755134851622],[114,-61,73,-0.7280137833537053],[114,-61,74,-0.7277544709943707],[114,-61,75,-0.7274975807729561],[114,-61,76,-0.727243116959196],[114,-61,77,-0.7269910837263418],[114,-61,78,-0.7267414851507471],[114,-61,79,-0.7264943252114462],[114,-60,64,-0.730571304857778],[114,-60,65,-0.7302899615563081],[114,-60,66,-0.7300109976420652],[114,-60,67,-0.7297344182403012],[114,-60,68,-0.7294602283835682],[114,-60,69,-0.7291884330113079],[114,-60,70,-0.7289190369694234],[114,-60,71,-0.7286520450098566],[114,-60,72,-0.7283874617901632],[114,-60,73,-0.7281252918731037],[114,-60,74,-0.727865539726204],[114,-60,75,-0.7276082097213477],[114,-60,76,-0.7273533061343551],[114,-60,77,-0.7271008331445643],[114,-60,78,-0.7268507948344145],[114,-60,79,-0.7266031951890255],[114,-59,64,-0.7306869323006435],[114,-59,65,-0.7304051499818562],[114,-59,66,-0.7301257469980905],[114,-59,67,-0.7298487284806708],[114,-59,68,-0.7295740994682236],[114,-59,69,-0.7293018649062656],[114,-59,70,-0.7290320296467758],[114,-59,71,-0.7287645984477731],[114,-59,72,-0.7284995759728907],[114,-59,73,-0.7282369667909673],[114,-59,74,-0.7279767753756072],[114,-59,75,-0.7277190061047729],[114,-59,76,-0.7274636632603639],[114,-59,77,-0.7272107510277971],[114,-59,78,-0.7269602734955907],[114,-59,79,-0.7267122346549433],[114,-58,64,-0.7308027216593559],[114,-58,65,-0.7305205008604024],[114,-58,66,-0.7302406593426733],[114,-58,67,-0.7299632022435584],[114,-58,68,-0.7296881346077497],[114,-58,69,-0.7294154613868316],[114,-58,70,-0.7291451874388513],[114,-58,71,-0.7288773175278969],[114,-58,72,-0.728611856323672],[114,-58,73,-0.7283488084010856],[114,-58,74,-0.7280881782398134],[114,-58,75,-0.7278299702238895],[114,-58,76,-0.727574188641285],[114,-58,77,-0.7273208376834889],[114,-58,78,-0.7270699214450912],[114,-58,79,-0.7268214439233625],[114,-57,64,-0.7309186731926918],[114,-57,65,-0.730636014454332],[114,-57,66,-0.7303557349417897],[114,-57,67,-0.7300778397985114],[114,-57,68,-0.7298023340752475],[114,-57,69,-0.7295292227296417],[114,-57,70,-0.729258510625802],[114,-57,71,-0.7289902025338781],[114,-57,72,-0.7287243031296358],[114,-57,73,-0.7284608169940474],[114,-57,74,-0.7281997486128522],[114,-57,75,-0.7279411023761486],[114,-57,76,-0.7276848825779726],[114,-57,77,-0.7274310934158775],[114,-57,78,-0.7271797389905186],[114,-57,79,-0.726930823305231],[114,-56,64,-0.7310347871562726],[114,-56,65,-0.7307516910228724],[114,-56,66,-0.7304709740582547],[114,-56,67,-0.7301926414119142],[114,-56,68,-0.7299166981406521],[114,-56,69,-0.7296431492081632],[114,-56,70,-0.7293719994846088],[114,-56,71,-0.7291032537461919],[114,-56,72,-0.7288369166747334],[114,-56,73,-0.7285729928572611],[114,-56,74,-0.7283114867855707],[114,-56,75,-0.7280524028558173],[114,-56,76,-0.727795745368094],[114,-56,77,-0.7275415185260119],[114,-56,78,-0.7272897264362841],[114,-56,79,-0.7270403731083034],[114,-55,64,-0.7311510638025465],[114,-55,65,-0.7308675308220746],[114,-55,66,-0.7305863769517034],[114,-55,67,-0.7303076073469681],[114,-55,68,-0.7300312270707124],[114,-55,69,-0.7297572410926747],[114,-55,70,-0.7294856542890608],[114,-55,71,-0.7292164714421199],[114,-55,72,-0.7289496972397199],[114,-55,73,-0.7286853362749367],[114,-55,74,-0.7284233930456147],[114,-55,75,-0.7281638719539582],[114,-55,76,-0.7279067773061103],[114,-55,77,-0.7276521133117325],[114,-55,78,-0.7273998840835882],[114,-55,79,-0.7271500936371214],[114,-54,64,-0.731267503380837],[114,-54,65,-0.7309835341048616],[114,-54,66,-0.7307019438786404],[114,-54,67,-0.7304227378637413],[114,-54,68,-0.7301459211290416],[114,-54,69,-0.7298714986503154],[114,-54,70,-0.7295994753098054],[114,-54,71,-0.729329855895799],[114,-54,72,-0.7290626451022032],[114,-54,73,-0.7287978475281343],[114,-54,74,-0.7285354676774777],[114,-54,75,-0.7282755099584796],[114,-54,76,-0.7280179786833256],[114,-54,77,-0.7277628780677202],[114,-54,78,-0.7275102122304701],[114,-54,79,-0.7272599851930626],[114,-53,64,-0.7313841061373314],[114,-53,65,-0.7310997011210174],[114,-53,66,-0.7308176750924283],[114,-53,67,-0.7305380332191562],[114,-53,68,-0.7302607805761041],[114,-53,69,-0.7299859221450735],[114,-53,70,-0.729713462814336],[114,-53,71,-0.7294434073782092],[114,-53,72,-0.7291757605366316],[114,-53,73,-0.7289105268947517],[114,-53,74,-0.7286477109624885],[114,-53,75,-0.7283873171541226],[114,-53,76,-0.7281293497878745],[114,-53,77,-0.727873813085484],[114,-53,78,-0.727620711171794],[114,-53,79,-0.7273700480743283],[114,-52,64,-0.731500872315068],[114,-52,65,-0.7312160321171738],[114,-52,66,-0.7309335708432743],[114,-52,67,-0.7306534936669773],[114,-52,68,-0.7303758056692033],[114,-52,69,-0.7301005118377734],[114,-52,70,-0.7298276170669793],[114,-52,71,-0.7295571261571612],[114,-52,72,-0.729289043814281],[114,-52,73,-0.7290233746495121],[114,-52,74,-0.7287601231787987],[114,-52,75,-0.7284992938224483],[114,-52,76,-0.7282408909047088],[114,-52,77,-0.7279849186533482],[114,-52,78,-0.7277313811992379],[114,-52,79,-0.7274802825759306],[114,-51,64,-0.7316178021539855],[114,-51,65,-0.7313325273368598],[114,-51,66,-0.7310496313782797],[114,-51,67,-0.7307691194578603],[114,-51,68,-0.7304909966625313],[114,-51,69,-0.7302152679861244],[114,-51,70,-0.7299419383289445],[114,-51,71,-0.7296710124973456],[114,-51,72,-0.729402495203305],[114,-51,73,-0.729136391064013],[114,-51,74,-0.7288727046014317],[114,-51,75,-0.7286114402418875],[114,-51,76,-0.7283526023156479],[114,-51,77,-0.7280961950565018],[114,-51,78,-0.7278422226013415],[114,-51,79,-0.7275906889897414],[114,-50,64,-0.7317348958909048],[114,-50,65,-0.7314491870204833],[114,-50,66,-0.7311658569414214],[114,-50,67,-0.7308849108393329],[114,-50,68,-0.7306063538071487],[114,-50,69,-0.7303301908447026],[114,-50,70,-0.7300564268583042],[114,-50,71,-0.7297850666603133],[114,-50,72,-0.7295161149687146],[114,-50,73,-0.7292495764067072],[114,-50,74,-0.7289854555022633],[114,-50,75,-0.7287237566877205],[114,-50,76,-0.7284644842993584],[114,-50,77,-0.7282076425769786],[114,-50,78,-0.7279532356634874],[114,-50,79,-0.7277012676044734],[114,-49,64,-0.7318521537595494],[114,-49,65,-0.7315660114053519],[114,-49,66,-0.7312822477735734],[114,-49,67,-0.7310008680558177],[114,-49,68,-0.7307218773510078],[114,-49,69,-0.7304452806649722],[114,-49,70,-0.7301710829100163],[114,-49,71,-0.7298992889044977],[114,-49,72,-0.7296299033724005],[114,-49,73,-0.7293629309429244],[114,-49,74,-0.729098376150044],[114,-49,75,-0.7288362434320997],[114,-49,76,-0.7285765371313758],[114,-49,77,-0.7283192614936792],[114,-49,78,-0.7280644206679223],[114,-49,79,-0.7278120187057007],[114,-48,64,-0.7319695759905278],[114,-48,65,-0.7316830007256548],[114,-48,66,-0.7313988041124874],[114,-48,67,-0.731116991348611],[114,-48,68,-0.7308375675389324],[114,-48,69,-0.7305605376952659],[114,-48,70,-0.7302859067359044],[114,-48,71,-0.7300136794851954],[114,-48,72,-0.7297438606731136],[114,-48,73,-0.7294764549348518],[114,-48,74,-0.7292114668103783],[114,-48,75,-0.7289489007440294],[114,-48,76,-0.7286887610840856],[114,-48,77,-0.7284310520823515],[114,-48,78,-0.728175777893738],[114,-48,79,-0.7279229425758401],[114,-47,64,-0.732087162811382],[114,-47,65,-0.7318001552125114],[114,-47,66,-0.7315155261928425],[114,-47,67,-0.7312332809559339],[114,-47,68,-0.7309534246126674],[114,-47,69,-0.7306759621808345],[114,-47,70,-0.7304008985847076],[114,-47,71,-0.7301282386546147],[114,-47,72,-0.7298579871265143],[114,-47,73,-0.729590148641583],[114,-47,74,-0.7293247277457756],[114,-47,75,-0.7290617288894155],[114,-47,76,-0.728801156426772],[114,-47,77,-0.7285430146156395],[114,-47,78,-0.7282873076169198],[114,-47,79,-0.7280340394941999],[114,-46,64,-0.7322049144465756],[114,-46,65,-0.7319174750939594],[114,-46,66,-0.7316324142462332],[114,-46,67,-0.7313497371129194],[114,-46,68,-0.7310694488108666],[114,-46,69,-0.7307915543638348],[114,-46,70,-0.7305160587020672],[114,-46,71,-0.7302429666618646],[114,-46,72,-0.7299722829851599],[114,-46,73,-0.7297040123191062],[114,-46,74,-0.7294381592156362],[114,-46,75,-0.7291747281310523],[114,-46,76,-0.7289137234256051],[114,-46,77,-0.728655149363071],[114,-46,78,-0.7283990101103346],[114,-46,79,-0.7281453097369669],[114,-45,64,-0.7323228311174812],[114,-45,65,-0.7320349605949421],[114,-45,66,-0.7317494685011556],[114,-45,67,-0.7314663600515994],[114,-45,68,-0.7311856403690795],[114,-45,69,-0.7309073144833164],[114,-45,70,-0.7306313873305148],[114,-45,71,-0.7303578637529404],[114,-45,72,-0.730086748498492],[114,-45,73,-0.7298180462202908],[114,-45,74,-0.729551761476239],[114,-45,75,-0.7292878987286108],[114,-45,76,-0.7290264623436291],[114,-45,77,-0.7287674565910444],[114,-45,78,-0.728510885643717],[114,-45,79,-0.7282567535771942],[114,-44,64,-0.7324409130424296],[114,-44,65,-0.7321526119373584],[114,-44,66,-0.7318666891830586],[114,-44,67,-0.7315831500009549],[114,-44,68,-0.7313019995198019],[114,-44,69,-0.7310232427752713],[114,-44,70,-0.7307468847095218],[114,-44,71,-0.7304729301707744],[114,-44,72,-0.7302013839128858],[114,-44,73,-0.7299322505949368],[114,-44,74,-0.7296655347807913],[114,-44,75,-0.7294012409386865],[114,-44,76,-0.72913937344081],[114,-44,77,-0.7288799365628785],[114,-44,78,-0.7286229344837197],[114,-44,79,-0.7283683712848498],[114,-43,64,-0.7325591604366988],[114,-43,65,-0.7322704293400495],[114,-43,66,-0.7319840765143303],[114,-43,67,-0.7317001071869029],[114,-43,68,-0.7314185264924622],[114,-43,69,-0.731139339472622],[114,-43,70,-0.7308625510754863],[114,-43,71,-0.7305881661552228],[114,-43,72,-0.7303161894716378],[114,-43,73,-0.7300466256897632],[114,-43,74,-0.7297794793794159],[114,-43,75,-0.7295147550147882],[114,-43,76,-0.7292524569740245],[114,-43,77,-0.7289925895387995],[114,-43,78,-0.7287351568939004],[114,-43,79,-0.7284801631268041],[114,-42,64,-0.7326775735124991],[114,-42,65,-0.7323884130187872],[114,-42,66,-0.7321016307142856],[114,-42,67,-0.7318172318322843],[114,-42,68,-0.7315352215134092],[114,-42,69,-0.731255604805208],[114,-42,70,-0.7309783866617204],[114,-42,71,-0.730703571943053],[114,-42,72,-0.7304311654149522],[114,-42,73,-0.7301611717483933],[114,-42,74,-0.7298935955191377],[114,-42,75,-0.7296284412073245],[114,-42,76,-0.7293657131970461],[114,-42,77,-0.7291054157759276],[114,-42,78,-0.728847553134708],[114,-42,79,-0.7285921293668168],[114,-41,64,-0.7327961524790251],[114,-41,65,-0.7325065631863233],[114,-41,66,-0.7322193519992163],[114,-41,67,-0.7319345241569134],[114,-41,68,-0.7316520848059624],[114,-41,69,-0.7313720389998358],[114,-41,70,-0.7310943916985007],[114,-41,71,-0.7308191477679931],[114,-41,72,-0.7305463119799918],[114,-41,73,-0.730275889011406],[114,-41,74,-0.730007883443934],[114,-41,75,-0.7297422997636526],[114,-41,76,-0.7294791423605949],[114,-41,77,-0.7292184155283276],[114,-41,78,-0.7289601234635331],[114,-41,79,-0.7287042702655864],[114,-40,64,-0.7329148975424351],[114,-40,65,-0.7326248800523699],[114,-40,66,-0.7323372405823709],[114,-40,67,-0.7320519843775578],[114,-40,68,-0.7317691165903912],[114,-40,69,-0.7314886422802592],[114,-40,70,-0.7312105664130472],[114,-40,71,-0.7309348938607125],[114,-40,72,-0.730661629400857],[114,-40,73,-0.7303907777163157],[114,-40,74,-0.7301223433947142],[114,-40,75,-0.7298563309280599],[114,-40,76,-0.7295927447123176],[114,-40,77,-0.7293315890469875],[114,-40,78,-0.7290728681346879],[114,-40,79,-0.7288165860807303],[114,-39,64,-0.7330338089058732],[114,-39,65,-0.7327433638236216],[114,-39,66,-0.7324552966739777],[114,-39,67,-0.7321696127079614],[114,-39,68,-0.7318863170839377],[114,-39,69,-0.7316054148672012],[114,-39,70,-0.7313269110295467],[114,-39,71,-0.7310508104488436],[114,-39,72,-0.7307771179086083],[114,-39,73,-0.7305058380975927],[114,-39,74,-0.7302369756093421],[114,-39,75,-0.729970534941785],[114,-39,76,-0.7297065204968096],[114,-39,77,-0.729444936579842],[114,-39,78,-0.7291857873994273],[114,-39,79,-0.7289290770668064],[114,-38,64,-0.73315288676945],[114,-38,65,-0.7328620147037359],[114,-38,66,-0.7325735204812234],[114,-38,67,-0.7322874093588239],[114,-38,68,-0.7320036865007968],[114,-38,69,-0.7317223569783345],[114,-38,70,-0.731443425769132],[114,-38,71,-0.7311668977569619],[114,-38,72,-0.7308927777312464],[114,-38,73,-0.7306210703866456],[114,-38,74,-0.7303517803226154],[114,-38,75,-0.7300849120429974],[114,-38,76,-0.7298204699555948],[114,-38,77,-0.7295584583717508],[114,-38,78,-0.7292988815059296],[114,-38,79,-0.7290417434752932],[114,-37,64,-0.7332721313302922],[114,-37,65,-0.7329808328933831],[114,-37,66,-0.7326919122083047],[114,-37,67,-0.7324053745378509],[114,-37,68,-0.732121225052166],[114,-37,69,-0.731839468828331],[114,-37,70,-0.7315601108499321],[114,-37,71,-0.731283156006636],[114,-37,72,-0.7310086090937619],[114,-37,73,-0.7307364748118692],[114,-37,74,-0.730466757766316],[114,-37,75,-0.730199462466848],[114,-37,76,-0.7299345933271753],[114,-37,77,-0.7296721546645495],[114,-37,78,-0.729412150699346],[114,-37,79,-0.7291545855546391],[114,-36,64,-0.7333915427825302],[114,-36,65,-0.7330998185902334],[114,-36,66,-0.7328104720564149],[114,-36,67,-0.7325235084497411],[114,-36,68,-0.7322389329462327],[114,-36,69,-0.7319567506288491],[114,-36,70,-0.7316769664870592],[114,-36,71,-0.7313995854164145],[114,-36,72,-0.7311246122181223],[114,-36,73,-0.7308520515986326],[114,-36,74,-0.7305819081691967],[114,-36,75,-0.7303141864454559],[114,-36,76,-0.7300488908470184],[114,-36,77,-0.7297860256970362],[114,-36,78,-0.7295255952217871],[114,-36,79,-0.7292676035502498],[114,-35,64,-0.733511121317285],[114,-35,65,-0.7332189719889443],[114,-35,66,-0.7329292002237306],[114,-35,67,-0.7326418112961737],[114,-35,68,-0.7323568103881606],[114,-35,69,-0.7320742025885206],[114,-35,70,-0.7317939928925957],[114,-35,71,-0.7315161862018132],[114,-35,72,-0.7312407873232594],[114,-35,73,-0.7309678009692657],[114,-35,74,-0.730697231756968],[114,-35,75,-0.7304290842078949],[114,-35,76,-0.7301633627475435],[114,-35,77,-0.7299000717049579],[114,-35,78,-0.7296392153123099],[114,-35,79,-0.7293807977044745],[114,-34,64,-0.7336308671227187],[114,-34,65,-0.7333382932812104],[114,-34,66,-0.7330480969054624],[114,-34,67,-0.7327602832758578],[114,-34,68,-0.7324748575801409],[114,-34,69,-0.7321918249130015],[114,-34,70,-0.7319111902756447],[114,-34,71,-0.731632958575365],[114,-34,72,-0.7313571346251184],[114,-34,73,-0.7310837231431093],[114,-34,74,-0.7308127287523487],[114,-34,75,-0.7305441559802434],[114,-34,76,-0.7302780092581718],[114,-34,77,-0.7300142929210609],[114,-34,78,-0.729753011206968],[114,-34,79,-0.7294941682566564],[114,-33,64,-0.7337507803840143],[114,-33,65,-0.733457782655744],[114,-33,66,-0.7331671622938346],[114,-33,67,-0.7328789245845133],[114,-33,68,-0.7325930747213716],[114,-33,69,-0.7323096178049503],[114,-33,70,-0.732028558842309],[114,-33,71,-0.7317499027465997],[114,-33,72,-0.7314736543366387],[114,-33,73,-0.7311998183364945],[114,-33,74,-0.7309283993750446],[114,-33,75,-0.7306594019855651],[114,-33,76,-0.7303928306053064],[114,-33,77,-0.7301286895750703],[114,-33,78,-0.729866983138791],[114,-33,79,-0.7296077154431113],[114,-32,64,-0.733870861283398],[114,-32,65,-0.7335774402982966],[114,-32,66,-0.7332863965781077],[114,-32,67,-0.7329977354148922],[114,-32,68,-0.7327114620080796],[114,-32,69,-0.7324275814640522],[114,-32,70,-0.7321460987957142],[114,-32,71,-0.7318670189220661],[114,-32,72,-0.7315903466677756],[114,-32,73,-0.7313160867627656],[114,-32,74,-0.7310442438417715],[114,-32,75,-0.7307748224439297],[114,-32,76,-0.7305078270123538],[114,-32,77,-0.7302432618937118],[114,-32,78,-0.7299811313378063],[114,-32,79,-0.7297214394971508],[114,-31,64,-0.7339911100001189],[114,-31,65,-0.7336972663916398],[114,-31,66,-0.7334057999445579],[114,-31,67,-0.7331167159567591],[114,-31,68,-0.7328300196335007],[114,-31,69,-0.7325457160869969],[114,-31,70,-0.7322638103359878],[114,-31,71,-0.7319843073053118],[114,-31,72,-0.7317072118254796],[114,-31,73,-0.7314325286322593],[114,-31,74,-0.7311602623662344],[114,-31,75,-0.7308904175723935],[114,-31,76,-0.7306229986997042],[114,-31,77,-0.7303580101006917],[114,-31,78,-0.7300954560310187],[114,-31,79,-0.7298353406490611],[114,-30,64,-0.7341115267104998],[114,-30,65,-0.7338172611156142],[114,-30,66,-0.7335253725765278],[114,-30,67,-0.733235866396941],[114,-30,68,-0.73294874778793],[114,-30,69,-0.7326640218675307],[114,-30,70,-0.7323816936603091],[114,-30,71,-0.7321017680969337],[114,-30,72,-0.7318242500137473],[114,-30,73,-0.7315491441523543],[114,-30,74,-0.7312764551591779],[114,-30,75,-0.731006187585049],[114,-30,76,-0.7307383458847807],[114,-30,77,-0.7304729344167467],[114,-30,78,-0.7302099574424605],[114,-30,79,-0.7299494191261526],[114,-29,64,-0.7342321115879248],[114,-29,65,-0.7339374246471179],[114,-29,66,-0.7336451146544131],[114,-29,67,-0.7333551869193149],[114,-29,68,-0.7330676466587084],[114,-29,69,-0.732782498996442],[114,-29,70,-0.7324997489628978],[114,-29,71,-0.7322194014945643],[114,-29,72,-0.7319414614336077],[114,-29,73,-0.7316659335274593],[114,-29,74,-0.7313928224283728],[114,-29,75,-0.7311221326930117],[114,-29,76,-0.7308538687820266],[114,-29,77,-0.7305880350596302],[114,-29,78,-0.7303246357931789],[114,-29,79,-0.7300636751527476],[114,-28,64,-0.7343528648028241],[114,-28,65,-0.7340577571600924],[114,-28,66,-0.7337650263556492],[114,-28,67,-0.733474677704794],[114,-28,68,-0.7331867164302099],[114,-28,69,-0.7329011476615486],[114,-28,70,-0.7326179764349987],[114,-28,71,-0.7323372076928587],[114,-28,72,-0.7320588462831091],[114,-28,73,-0.7317828969589989],[114,-28,74,-0.7315093643786021],[114,-28,75,-0.7312382531044073],[114,-28,76,-0.730969567602892],[114,-28,77,-0.7307033122440997],[114,-28,78,-0.7304394913012207],[114,-28,79,-0.730178108950166],[114,-27,64,-0.7344737865227267],[114,-27,65,-0.7341782588255736],[114,-27,66,-0.7338851078547628],[114,-27,67,-0.7335943389313779],[114,-27,68,-0.7333059572838916],[114,-27,69,-0.7330199680477482],[114,-27,70,-0.7327363762649327],[114,-27,71,-0.7324551868835449],[114,-27,72,-0.7321764047573694],[114,-27,73,-0.7319000346454634],[114,-27,74,-0.7316260812117127],[114,-27,75,-0.7313545490244209],[114,-27,76,-0.7310854425558837],[114,-27,77,-0.7308187661819665],[114,-27,78,-0.7305545241816841],[114,-27,79,-0.7302927207367756],[114,-26,64,-0.7345948769122392],[114,-26,65,-0.7342989298116711],[114,-26,66,-0.7340053593233499],[114,-26,67,-0.7337141707741337],[114,-26,68,-0.7334253693982739],[114,-26,69,-0.7331389603369975],[114,-26,70,-0.7328549486380773],[114,-26,71,-0.7325733392554035],[114,-26,72,-0.7322941370485557],[114,-26,73,-0.7320173467823897],[114,-26,74,-0.7317429731265938],[114,-26,75,-0.731471020655277],[114,-26,76,-0.7312014938465448],[114,-26,77,-0.7309343970820749],[114,-26,78,-0.7306697346466978],[114,-26,79,-0.7304075107279719],[114,-25,64,-0.7347161361330681],[114,-25,65,-0.734419770283591],[114,-25,66,-0.7341257809300994],[114,-25,67,-0.7338341734052165],[114,-25,68,-0.7335449529489618],[114,-25,69,-0.7332581247083356],[114,-25,70,-0.7329736937368877],[114,-25,71,-0.7326916649942896],[114,-25,72,-0.7324120433459063],[114,-25,73,-0.7321348335623824],[114,-25,74,-0.7318600403191992],[114,-25,75,-0.7315876681962622],[114,-25,76,-0.7313177216774769],[114,-25,77,-0.7310502051503246],[114,-25,78,-0.7307851229054426],[114,-25,79,-0.7305224791361994],[114,-24,64,-0.7348375643439995],[114,-24,65,-0.7345407804036146],[114,-24,66,-0.7342463728407724],[114,-24,67,-0.73395434699385],[114,-24,68,-0.7336647081086253],[114,-24,69,-0.733377461337862],[114,-24,70,-0.7330926117408767],[114,-24,71,-0.7328101642831124],[114,-24,72,-0.7325301238357099],[114,-24,73,-0.7322524951750933],[114,-24,74,-0.7319772829825267],[114,-24,75,-0.7317044918437033],[114,-24,76,-0.7314341262483193],[114,-24,77,-0.73116619058965],[114,-24,78,-0.7309006891641308],[114,-24,79,-0.7306376261709311],[114,-23,64,-0.7349591617009499],[114,-23,65,-0.7346619603311504],[114,-23,66,-0.7343671352182524],[114,-23,67,-0.7340746917063766],[114,-23,68,-0.7337846350470496],[114,-23,69,-0.7334969703987877],[114,-23,70,-0.7332117028266649],[114,-23,71,-0.7329288373018858],[114,-23,72,-0.7326483787013568],[114,-23,73,-0.7323703318072718],[114,-23,74,-0.732094701306669],[114,-23,75,-0.7318214917910189],[114,-23,76,-0.7315507077557991],[114,-23,77,-0.7312823536000703],[114,-23,78,-0.7310164336260565],[114,-23,79,-0.7307529520387192],[114,-22,64,-0.735080928356953],[114,-22,65,-0.7347833102227197],[114,-22,66,-0.7344880682225323],[114,-22,67,-0.7341952077062448],[114,-22,68,-0.733904733931122],[114,-22,69,-0.7336166520614228],[114,-22,70,-0.7333309671679684],[114,-22,71,-0.7330476842277152],[114,-22,72,-0.7327668081233251],[114,-22,73,-0.7324883436427523],[114,-22,74,-0.7322122954787993],[114,-22,75,-0.7319386682287048],[114,-22,76,-0.7316674663937182],[114,-22,77,-0.7313986943786762],[114,-22,78,-0.7311323564915823],[114,-22,79,-0.7308684569431809],[114,-21,64,-0.7352028644621461],[114,-21,65,-0.7349048302319438],[114,-21,66,-0.7346091720107011],[114,-21,67,-0.734315895153995],[114,-21,68,-0.7340250049248179],[114,-21,69,-0.7337365064931614],[114,-21,70,-0.7334504049355837],[114,-21,71,-0.7331667052347827],[114,-21,72,-0.7328854122791665],[114,-21,73,-0.7326065308624394],[114,-21,74,-0.7323300656831585],[114,-21,75,-0.732056021344321],[114,-21,76,-0.7317844023529391],[114,-21,77,-0.7315152131196159],[114,-21,78,-0.731248457958125],[114,-21,79,-0.7309841410849851],[114,-20,64,-0.7353249701638211],[114,-20,65,-0.7350265205095945],[114,-20,66,-0.7347304467369944],[114,-20,67,-0.7344367542073104],[114,-20,68,-0.7341454481892522],[114,-20,69,-0.7338565338585336],[114,-20,70,-0.7335700162974396],[114,-20,71,-0.7332859004943997],[114,-20,72,-0.7330041913435579],[114,-20,73,-0.7327248936443592],[114,-20,74,-0.7324480121011054],[114,-20,75,-0.7321735513225425],[114,-20,76,-0.7319015158214359],[114,-20,77,-0.7316319100141457],[114,-20,78,-0.7313647382202069],[114,-20,79,-0.7311000046619027],[114,-19,64,-0.7354472456064042],[114,-19,65,-0.7351483812035737],[114,-19,66,-0.7348518925527742],[114,-19,67,-0.7345577850209969],[114,-19,68,-0.7342660638826584],[114,-19,69,-0.7339767343191841],[114,-19,70,-0.7336898014185759],[114,-19,71,-0.7334052701749847],[114,-19,72,-0.7331231454882805],[114,-19,73,-0.7328434321636387],[114,-19,74,-0.7325661349110959],[114,-19,75,-0.7322912583451379],[114,-19,76,-0.7320188069842734],[114,-19,77,-0.7317487852506099],[114,-19,78,-0.7314811974694343],[114,-19,79,-0.7312160478687854],[114,-18,64,-0.7355696909314773],[114,-18,65,-0.735270412458936],[114,-18,66,-0.734973509606551],[114,-18,67,-0.7346789877470048],[114,-18,68,-0.7343868521604104],[114,-18,69,-0.7340971080338948],[114,-18,70,-0.7338097604611662],[114,-18,71,-0.7335248144420862],[114,-18,72,-0.7332422748822413],[114,-18,73,-0.7329621465925271],[114,-18,74,-0.7326844342887057],[114,-18,75,-0.7324091425909919],[114,-18,76,-0.7321362760236285],[114,-18,77,-0.7318658390144617],[114,-18,78,-0.7315978358945198],[114,-18,79,-0.7313322708975882],[114,-17,64,-0.7356923062777586],[114,-17,65,-0.7353926144178671],[114,-17,66,-0.7350952980439627],[114,-17,67,-0.7348003625344083],[114,-17,68,-0.7345078131750029],[114,-17,69,-0.734217655158564],[114,-17,70,-0.733929893584496],[114,-17,71,-0.7336445334583617],[114,-17,72,-0.7333615796914528],[114,-17,73,-0.733081037100376],[114,-17,74,-0.7328029104066082],[114,-17,75,-0.7325272042360841],[114,-17,76,-0.7322539231187707],[114,-17,77,-0.7319830714882425],[114,-17,78,-0.7317146536812609],[114,-17,79,-0.7314486739373482],[114,-16,64,-0.735815091781153],[114,-16,65,-0.7355149872197361],[114,-16,66,-0.7352172580078263],[114,-16,67,-0.7349219095294566],[114,-16,68,-0.7346289470761008],[114,-16,69,-0.734338375846257],[114,-16,70,-0.7340502009450149],[114,-16,71,-0.7337644273836281],[114,-16,72,-0.733481060079084],[114,-16,73,-0.7332001038536894],[114,-16,74,-0.7329215634346263],[114,-16,75,-0.7326454434535397],[114,-16,76,-0.7323717484461109],[114,-16,77,-0.7321004828516332],[114,-16,78,-0.7318316510125913],[114,-16,79,-0.7315652571742353],[114,-15,64,-0.7359380475747384],[114,-15,65,-0.7356375310010806],[114,-15,66,-0.735339389638124],[114,-15,67,-0.73504362887556],[114,-15,68,-0.734750254010527],[114,-15,69,-0.7344592702471928],[114,-15,70,-0.7341706826963224],[114,-15,71,-0.7338844963748492],[114,-15,72,-0.733600716205446],[114,-15,73,-0.73331934701611],[114,-15,74,-0.7330403935397185],[114,-15,75,-0.7327638604136164],[114,-15,76,-0.7324897521791891],[114,-15,77,-0.7322180732814398],[114,-15,78,-0.7319488280685666],[114,-15,79,-0.7316820207915378],[114,-14,64,-0.7360611737887524],[114,-14,65,-0.7357602458955944],[114,-14,66,-0.7354616930719892],[114,-14,67,-0.7351655207132762],[114,-14,68,-0.7348717341222476],[114,-14,69,-0.7345803385087302],[114,-14,70,-0.7342913389891532],[114,-14,71,-0.7340047405861203],[114,-14,72,-0.7337205482279788],[114,-14,73,-0.7334387667484062],[114,-14,74,-0.7331594008859648],[114,-14,75,-0.7328824552836892],[114,-14,76,-0.7326079344886601],[114,-14,77,-0.7323358429515796],[114,-14,78,-0.7320661850263506],[114,-14,79,-0.7317989649696491],[114,-13,64,-0.7361844705506433],[114,-13,65,-0.7358831320341774],[114,-13,66,-0.7355841684437581],[114,-13,67,-0.735287585180362],[114,-13,68,-0.7349933875524237],[114,-13,69,-0.7347015807754187],[114,-13,70,-0.7344121699714301],[114,-13,71,-0.7341251601687205],[114,-13,72,-0.7338405563013022],[114,-13,73,-0.7335583632085221],[114,-13,74,-0.7332785856346175],[114,-13,75,-0.7330012282283029],[114,-13,76,-0.732726295542344],[114,-13,77,-0.7324537920331324],[114,-13,78,-0.7321837220602654],[114,-13,79,-0.7319160898861182],[114,-12,64,-0.7363079379850568],[114,-12,65,-0.736006189544923],[114,-12,66,-0.7357068158849559],[114,-12,67,-0.7354098224117587],[114,-12,68,-0.7351152144393975],[114,-12,69,-0.7348229971889855],[114,-12,70,-0.7345331757882487],[114,-12,71,-0.7342457552710986],[114,-12,72,-0.7339607405772015],[114,-12,73,-0.7336781365515639],[114,-12,74,-0.7333979479440875],[114,-12,75,-0.7331201794091571],[114,-12,76,-0.7328448355052126],[114,-12,77,-0.732571920694326],[114,-12,78,-0.7323014393417787],[114,-12,79,-0.7320333957156357],[114,-11,64,-0.7364315762138219],[114,-11,65,-0.7361294185531034],[114,-11,66,-0.7358296355242833],[114,-11,67,-0.735532232539579],[114,-11,68,-0.7352372149186782],[114,-11,69,-0.7349445878883203],[114,-11,70,-0.734654356581864],[114,-11,71,-0.7343665260388587],[114,-11,72,-0.7340811012046142],[114,-11,73,-0.7337980869297862],[114,-11,74,-0.7335174879699309],[114,-11,75,-0.7332393089850922],[114,-11,76,-0.7329635545393756],[114,-11,77,-0.7326902291005223],[114,-11,78,-0.7324193370394888],[114,-11,79,-0.73215088263002],[114,-10,64,-0.7365553853560022],[114,-10,65,-0.7362528191812219],[114,-10,66,-0.7359526274876667],[114,-10,67,-0.7356548156931582],[114,-10,68,-0.7353593891229935],[114,-10,69,-0.7350663530095279],[114,-10,70,-0.7347757124917418],[114,-10,71,-0.7344874726148117],[114,-10,72,-0.7342016383296808],[114,-10,73,-0.7339182144926429],[114,-10,74,-0.7336372058648987],[114,-10,75,-0.7333586171121413],[114,-10,76,-0.7330824528041309],[114,-10,77,-0.7328087174142686],[114,-10,78,-0.7325374153191758],[114,-10,79,-0.7322685507982677],[114,-9,64,-0.7366793655278752],[114,-9,65,-0.7363763915489908],[114,-9,66,-0.7360757918982386],[114,-9,67,-0.7357775719990325],[114,-9,68,-0.7354817371822684],[114,-9,69,-0.7351882926859062],[114,-9,70,-0.7348972436545372],[114,-9,71,-0.7346085951389545],[114,-9,72,-0.7343223520957235],[114,-9,73,-0.7340385193867665],[114,-9,74,-0.7337571017789173],[114,-9,75,-0.7334781039435082],[114,-9,76,-0.733201530455944],[114,-9,77,-0.732927385795276],[114,-9,78,-0.7326556743437805],[114,-9,79,-0.7323864003865327],[114,-8,64,-0.7368035168429545],[114,-8,65,-0.7365001357733552],[114,-8,66,-0.7361991288763592],[114,-8,67,-0.7359005015809622],[114,-8,68,-0.7356042592236476],[114,-8,69,-0.735310407047969],[114,-8,70,-0.7350189502041173],[114,-8,71,-0.7347298937484918],[114,-8,72,-0.7344432426432692],[114,-8,73,-0.7341590017559892],[114,-8,74,-0.7338771758591089],[114,-8,75,-0.7335977696295898],[114,-8,76,-0.7333207876484705],[114,-8,77,-0.733046234400442],[114,-8,78,-0.7327741142734261],[114,-8,79,-0.732504431558148],[114,-7,64,-0.736927839411969],[114,-7,65,-0.7366240519684699],[114,-7,66,-0.736322638539595],[114,-7,67,-0.73602360455991],[114,-7,68,-0.7357269553714743],[114,-7,69,-0.7354326962234243],[114,-7,70,-0.7351408322715398],[114,-7,71,-0.7348513685778146],[114,-7,72,-0.7345643101100268],[114,-7,73,-0.7342796617413226],[114,-7,74,-0.733997428249772],[114,-7,75,-0.7337176143179545],[114,-7,76,-0.7334402245325332],[114,-7,77,-0.7331652633838285],[114,-7,78,-0.732892735265397],[114,-7,79,-0.7326226444736046],[114,-6,64,-0.7370523333429139],[114,-6,65,-0.7367481402457529],[114,-6,66,-0.7364463210027711],[114,-6,67,-0.7361468810540923],[114,-6,68,-0.7358498257473415],[114,-6,69,-0.7355551603372261],[114,-6,70,-0.7352628899851039],[114,-6,71,-0.7349730197585524],[114,-6,72,-0.73468555463094],[114,-6,73,-0.7344004994810088],[114,-6,74,-0.734117859092431],[114,-6,75,-0.7338376381533941],[114,-6,76,-0.7335598412561747],[114,-6,77,-0.7332844728967127],[114,-6,78,-0.7330115374741899],[114,-6,79,-0.7327410392906024],[114,-5,64,-0.7371769987410373],[114,-5,65,-0.7368724007138703],[114,-5,66,-0.7365701763779563],[114,-5,67,-0.7362703311789661],[114,-5,68,-0.7359728704700782],[114,-5,69,-0.7356777995115604],[114,-5,70,-0.7353851234703368],[114,-5,71,-0.7350948474195583],[114,-5,72,-0.7348069763381719],[114,-5,73,-0.7345215151105059],[114,-5,74,-0.7342384685258231],[114,-5,75,-0.7339578412779089],[114,-5,76,-0.7336796379646429],[114,-5,77,-0.7334038630875744],[114,-5,78,-0.7331305210514998],[114,-5,79,-0.7328596161640357],[114,-4,64,-0.7373018357088257],[114,-4,65,-0.7369968334787227],[114,-4,66,-0.7366942047744498],[114,-4,67,-0.7363939550472138],[114,-4,68,-0.7360960896557351],[114,-4,69,-0.7358006138658306],[114,-4,70,-0.7355075328499797],[114,-4,71,-0.7352168516868951],[114,-4,72,-0.7349285753610925],[114,-4,73,-0.734642708762474],[114,-4,74,-0.7343592566858836],[114,-4,75,-0.7340782238306935],[114,-4,76,-0.7337996148003764],[114,-4,77,-0.7335234341020799],[114,-4,78,-0.7332496861462051],[114,-4,79,-0.7329783752459793],[114,-3,64,-0.7374268443460564],[114,-3,65,-0.7371214386434963],[114,-3,66,-0.7368184062988327],[114,-3,67,-0.7365177527687955],[114,-3,68,-0.7362194834176363],[114,-3,69,-0.7359236035167095],[114,-3,70,-0.7356301182440386],[114,-3,71,-0.7353390326838871],[114,-3,72,-0.7350503518263278],[114,-3,73,-0.7347640805668267],[114,-3,74,-0.7344802237057978],[114,-3,75,-0.7341987859481893],[114,-3,76,-0.733919771903056],[114,-3,77,-0.7336431860831344],[114,-3,78,-0.7333690329044198],[114,-3,79,-0.7330973166857394],[114,-2,64,-0.7375520247497754],[114,-2,65,-0.7372462163086428],[114,-2,66,-0.7369427810549459],[114,-2,67,-0.7366417244509275],[114,-2,68,-0.736343051866358],[114,-2,69,-0.7360467685781179],[114,-2,70,-0.7357528797697636],[114,-2,71,-0.7354613905310983],[114,-2,72,-0.7351723058577408],[114,-2,73,-0.7348856306507099],[114,-2,74,-0.7346013697159788],[114,-2,75,-0.7343195277640612],[114,-2,76,-0.7340401094095836],[114,-2,77,-0.7337631191708603],[114,-2,78,-0.7334885614694708],[114,-2,79,-0.7332164406298326],[114,-1,64,-0.7376773770143206],[114,-1,65,-0.7373711665719004],[114,-1,66,-0.737067329143914],[114,-1,67,-0.7367658701981047],[114,-1,68,-0.7364667951097505],[114,-1,69,-0.7361701091612467],[114,-1,70,-0.735875817541671],[114,-1,71,-0.7355839253463549],[114,-1,72,-0.7352944375764522],[114,-1,73,-0.7350073591385237],[114,-1,74,-0.7347226948440906],[114,-1,75,-0.7344404494092212],[114,-1,76,-0.7341606274541035],[114,-1,77,-0.7338832335026193],[114,-1,78,-0.7336082719819215],[114,-1,79,-0.7333357472220072],[114,0,64,-0.7378029012312995],[114,0,65,-0.7374962895282731],[114,0,66,-0.7371920506641223],[114,0,67,-0.736890190112079],[114,0,68,-0.7365907132529175],[114,0,69,-0.7362936253745355],[114,0,70,-0.7359989316715213],[114,0,71,-0.7357066372447232],[114,0,72,-0.7354167471008192],[114,0,73,-0.7351292661519002],[114,0,74,-0.734844199215025],[114,0,75,-0.7345615510118061],[114,0,76,-0.7342813261679817],[114,0,77,-0.7340035292129902],[114,0,78,-0.733728164579548],[114,0,79,-0.7334552366032221],[114,1,64,-0.737928597489642],[114,1,65,-0.7376215852700827],[114,1,66,-0.7373169457112695],[114,1,67,-0.7370146842919114],[114,1,68,-0.7367148063982665],[114,1,69,-0.7364173173237243],[114,1,70,-0.7361222222683717],[114,1,71,-0.7358295263385624],[114,1,72,-0.7355392345464871],[114,1,73,-0.7352513518097563],[114,1,74,-0.7349658829509552],[114,1,75,-0.7346828326972291],[114,1,76,-0.7344022056798563],[114,1,77,-0.734124006433821],[114,1,78,-0.7338482393973929],[114,1,79,-0.7335749089116974],[114,2,64,-0.7380544658755857],[114,2,65,-0.7377470538869542],[114,2,66,-0.7374420143783533],[114,2,67,-0.737139352833957],[114,2,68,-0.736839074645496],[114,2,69,-0.7365411851118394],[114,2,70,-0.7362456894385611],[114,2,71,-0.735952592737509],[114,2,72,-0.7356619000263753],[114,2,73,-0.7353736162282789],[114,2,74,-0.7350877461713199],[114,2,75,-0.734804294588166],[114,2,76,-0.7345232661156242],[114,2,77,-0.7342446652942146],[114,2,78,-0.7339684965677489],[114,2,79,-0.7336947642829013],[114,3,64,-0.7381805064726618],[114,3,65,-0.7378726954658014],[114,3,66,-0.7375672567556559],[114,3,67,-0.7372641958318518],[114,3,68,-0.7369635180915802],[114,3,69,-0.7366652288391786],[114,3,70,-0.736369333285696],[114,3,71,-0.7360758365484634],[114,3,72,-0.7357847436506626],[114,3,73,-0.7354960595209097],[114,3,74,-0.7352097889928091],[114,3,75,-0.7349259368045394],[114,3,76,-0.7346445075984259],[114,3,77,-0.7343655059205136],[114,3,78,-0.7340889362201453],[114,3,79,-0.7338148028495339],[114,4,64,-0.7383067193617467],[114,4,65,-0.7379985100908799],[114,4,66,-0.7376926729307963],[114,4,67,-0.7373892133765636],[114,4,68,-0.7370881368308214],[114,4,69,-0.7367894486033636],[114,4,70,-0.7364931539107027],[114,4,71,-0.7361992578756411],[114,4,72,-0.7359077655268389],[114,4,73,-0.7356186817983982],[114,4,74,-0.7353320115294163],[114,4,75,-0.735047759463572],[114,4,76,-0.7347659302486976],[114,4,77,-0.7344865284363522],[114,4,78,-0.7342095584813996],[114,4,79,-0.7339350247415805],[114,5,64,-0.7384331046210413],[114,5,65,-0.738124497843764],[114,5,66,-0.7378182629887085],[114,5,67,-0.7375144055563709],[114,5,68,-0.7372129309548281],[114,5,69,-0.7369138444993177],[114,5,70,-0.7366171514118047],[114,5,71,-0.736322856820551],[114,5,72,-0.7360309657596835],[114,5,73,-0.735741483168779],[114,5,74,-0.7354544138924164],[114,5,75,-0.7351697626797635],[114,5,76,-0.7348875341841489],[114,5,77,-0.7346077329626347],[114,5,78,-0.7343303634755951],[114,5,79,-0.7340554300862878],[114,6,64,-0.7385596623260927],[114,6,65,-0.7382506588033704],[114,6,66,-0.7379440270116636],[114,6,67,-0.7376397724568856],[114,6,68,-0.7373379005525373],[114,6,69,-0.7370384166192893],[114,6,70,-0.7367413258845463],[114,6,71,-0.7364466334820183],[114,6,72,-0.7361543444512879],[114,6,73,-0.7358644637373946],[114,6,74,-0.735576996190388],[114,6,75,-0.7352919465649137],[114,6,76,-0.7350093195197853],[114,6,77,-0.7347291196175574],[114,6,78,-0.7344513513241036],[114,6,79,-0.7341760190081881],[114,7,64,-0.7386863925497728],[114,7,65,-0.7383769930459356],[114,7,66,-0.738069965079249],[114,7,67,-0.7377653141610302],[114,7,68,-0.7374630457101929],[114,7,69,-0.7371631650528283],[114,7,70,-0.7368656774217692],[114,7,71,-0.7365705879561618],[114,7,72,-0.7362779017010328],[114,7,73,-0.735987623606873],[114,7,74,-0.7356997585291912],[114,7,75,-0.7354143112280999],[114,7,76,-0.7351312863678862],[114,7,77,-0.7348506885165864],[114,7,78,-0.7345725221455627],[114,7,79,-0.7342967916290749],[114,8,64,-0.7388132953623302],[114,8,65,-0.7385035006450689],[114,8,66,-0.7381960772684192],[114,8,67,-0.7378910307490909],[114,8,68,-0.737588366511398],[114,8,69,-0.7372880898868397],[114,8,70,-0.736990206113666],[114,8,71,-0.7366947203364467],[114,8,72,-0.7364016376056411],[114,8,73,-0.7361109628771801],[114,8,74,-0.7358227010120202],[114,8,75,-0.7355368567757289],[114,8,76,-0.7352534348380566],[114,8,77,-0.7349724397725098],[114,8,78,-0.7346938760559284],[114,8,79,-0.7344177480680573],[114,9,64,-0.7389403708313764],[114,9,65,-0.738630181671737],[114,9,66,-0.7383223636534826],[114,9,67,-0.7380169222987027],[114,9,68,-0.7377138630370996],[114,9,69,-0.7374131912055689],[114,9,70,-0.7371149120477645],[114,9,71,-0.7368190307136695],[114,9,72,-0.7365255522591633],[114,9,73,-0.7362344816456051],[114,9,74,-0.7359458237393879],[114,9,75,-0.7356595833115231],[114,9,76,-0.7353757650372129],[114,9,77,-0.735094373495423],[114,9,78,-0.7348154131684599],[114,9,79,-0.7345388884415431],[114,10,64,-0.7390676190218708],[114,10,65,-0.7387570361942503],[114,10,66,-0.7384488243060859],[114,10,67,-0.738142988884835],[114,10,68,-0.7378395353655749],[114,10,69,-0.7375384690905858],[114,10,70,-0.7372397953089141],[114,10,71,-0.7369435191759435],[114,10,72,-0.7366496457529618],[114,10,73,-0.7363581800067454],[114,10,74,-0.7360691268091117],[114,10,75,-0.7357824909365049],[114,10,76,-0.7354982770695674],[114,10,77,-0.7352164897927134],[114,10,78,-0.7349371335937049],[114,10,79,-0.734660212863225],[114,11,64,-0.7391950399961728],[114,11,65,-0.7388840642783148],[114,11,66,-0.7385754592952676],[114,11,67,-0.7382692305798433],[114,11,68,-0.7379653835724831],[114,11,69,-0.7376639236208388],[114,11,70,-0.7373648559793373],[114,11,71,-0.7370681858087507],[114,11,72,-0.7367739181757642],[114,11,73,-0.7364820580525587],[114,11,74,-0.7361926103163652],[114,11,75,-0.7359055797490486],[114,11,76,-0.735620971036681],[114,11,77,-0.7353387887691128],[114,11,78,-0.7350590374395517],[114,11,79,-0.7347817214441326],[114,12,64,-0.7393226338140206],[114,12,65,-0.7390112659870101],[114,12,66,-0.7387022686874345],[114,12,67,-0.7383956474534481],[114,12,68,-0.7380914077308433],[114,12,69,-0.7377895548726313],[114,12,70,-0.7374900941386076],[114,12,71,-0.7371930306949206],[114,12,72,-0.7368983696136404],[114,12,73,-0.7366061158723416],[114,12,74,-0.7363162743536562],[114,12,75,-0.7360288498448595],[114,12,76,-0.7357438470374404],[114,12,77,-0.7354612705266759],[114,12,78,-0.7351811248112067],[114,12,79,-0.7349034142926094],[114,13,64,-0.7394504005325534],[114,13,65,-0.7391386413808123],[114,13,66,-0.7388292525463855],[114,13,67,-0.7385222395727569],[114,13,68,-0.7382176079110572],[114,13,69,-0.7379153629196453],[114,13,70,-0.7376155098636723],[114,13,71,-0.7373180539146515],[114,13,72,-0.7370230001500258],[114,13,73,-0.7367303535527512],[114,13,74,-0.7364401190108498],[114,13,75,-0.7361523013169947],[114,13,76,-0.7358669051680814],[114,13,77,-0.7355839351648009],[114,13,78,-0.7353033958112168],[114,13,79,-0.7350252915143362],[114,14,64,-0.7395783402062891],[114,14,65,-0.7392661905175719],[114,14,66,-0.7389564109332891],[114,14,67,-0.7386490070022418],[114,14,68,-0.738343984180887],[114,14,69,-0.7380413478329182],[114,14,70,-0.7377411032288302],[114,14,71,-0.737443255545489],[114,14,72,-0.7371478098656981],[114,14,73,-0.7368547711777833],[114,14,74,-0.7365641443751447],[114,14,75,-0.7362759342558418],[114,14,76,-0.7359901455221651],[114,14,77,-0.7357067827802087],[114,14,78,-0.7354258505394473],[114,14,79,-0.7351473532123074],[114,15,64,-0.7397064528871772],[114,15,65,-0.7393939134525657],[114,15,66,-0.7390837439067357],[114,15,67,-0.7387759498037929],[114,15,68,-0.7384705366055077],[114,15,69,-0.7381675096808961],[114,15,70,-0.7378668743057842],[114,15,71,-0.7375686356623778],[114,15,72,-0.7372727988388301],[114,15,73,-0.7369793688288242],[114,15,74,-0.7366883505311264],[114,15,75,-0.7363997487491709],[114,15,76,-0.7361135681906316],[114,15,77,-0.7358298134669942],[114,15,78,-0.7355484890931334],[114,15,79,-0.7352695994868841],[114,16,64,-0.739834738624584],[114,16,65,-0.7395218102384826],[114,16,66,-0.7392112515227229],[114,16,67,-0.7389030680367025],[114,16,68,-0.7385972652474924],[114,16,69,-0.7382938485294184],[114,16,70,-0.7379928231636257],[114,16,71,-0.7376941943376482],[114,16,72,-0.7373979671449755],[114,16,73,-0.7371041465846366],[114,16,74,-0.7368127375607522],[114,16,75,-0.7365237448821195],[114,16,76,-0.7362371732617841],[114,16,77,-0.7359530273166118],[114,16,78,-0.7356713115668663],[114,16,79,-0.7353920304357792],[114,17,64,-0.739963197465278],[114,17,65,-0.739649880925409],[114,17,66,-0.7393389338346412],[114,17,67,-0.7390303617576508],[114,17,68,-0.7387241701667969],[114,17,69,-0.7384203644417031],[114,17,70,-0.7381189498688207],[114,17,71,-0.737819931640999],[114,17,72,-0.7375233148570527],[114,17,73,-0.7372291045213439],[114,17,74,-0.736937305543336],[114,17,75,-0.7366479227371776],[114,17,76,-0.7363609608212741],[114,17,77,-0.7360764244178601],[114,17,78,-0.7357943180525767],[114,17,79,-0.735514646154041],[114,18,64,-0.7400918294534821],[114,18,65,-0.7397781255608809],[114,18,66,-0.7394667908933257],[114,18,67,-0.7391578310207585],[114,18,68,-0.7388512514208138],[114,18,69,-0.7385470574783997],[114,18,70,-0.7382452544852616],[114,18,71,-0.737945847639552],[114,18,72,-0.737648842045398],[114,18,73,-0.7373542427124832],[114,18,74,-0.7370620545556013],[114,18,75,-0.7367722823942404],[114,18,76,-0.7364849309521544],[114,18,77,-0.7362000048569348],[114,18,78,-0.7359175086395884],[114,18,79,-0.7356374467341074],[114,19,64,-0.7402206346308593],[114,19,65,-0.7399065441898697],[114,19,66,-0.7395948227470422],[114,19,67,-0.739285475877572],[114,19,68,-0.7389785090643559],[114,19,69,-0.7386739276975738],[114,19,70,-0.7383717370742529],[114,19,71,-0.7380719423978362],[114,19,72,-0.737774548777751],[114,19,73,-0.7374795612289899],[114,19,74,-0.7371869846716654],[114,19,75,-0.7368968239305931],[114,19,76,-0.7366090837348629],[114,19,77,-0.7363237687174127],[114,19,78,-0.7360408834146028],[114,19,79,-0.7357604322657891],[114,20,64,-0.7403496130364977],[114,20,65,-0.7400351368547666],[114,20,66,-0.739723029441472],[114,20,67,-0.7394132963770481],[114,20,68,-0.739105943149642],[114,20,69,-0.7388009751546925],[114,20,70,-0.7384983976944957],[114,20,71,-0.7381982159777727],[114,20,72,-0.7379004351192384],[114,20,73,-0.737605060139183],[114,20,74,-0.7373120959630248],[114,20,75,-0.7370215474208951],[114,20,76,-0.7367334192472087],[114,20,77,-0.736447716080237],[114,20,78,-0.7361644424616836],[114,20,79,-0.7358836028362556],[114,21,64,-0.7404787647069632],[114,21,65,-0.7401639035954365],[114,21,66,-0.739851411019764],[114,21,67,-0.7395412925656075],[114,21,68,-0.7392335537263499],[114,21,69,-0.7389281999026769],[114,21,70,-0.7386252364021403],[114,21,71,-0.7383246684387275],[114,21,72,-0.7380265011324282],[114,21,73,-0.7377307395088174],[114,21,74,-0.7374373884986076],[114,21,75,-0.7371464529372338],[114,21,76,-0.7368579375644236],[114,21,77,-0.7365718470237703],[114,21,78,-0.7362881858623089],[114,21,79,-0.736006958530087],[114,22,64,-0.7406080896762772],[114,22,65,-0.7402928444491941],[114,22,66,-0.7399799675225137],[114,22,67,-0.7396694644871111],[114,22,68,-0.7393613408415934],[114,22,69,-0.7390556019918795],[114,22,70,-0.7387522532507645],[114,22,71,-0.738451299837489],[114,22,72,-0.7381527468773055],[114,22,73,-0.7378565994010613],[114,22,74,-0.7375628623447511],[114,22,75,-0.737271540549101],[114,22,76,-0.73698263875914],[114,22,77,-0.7366961616237714],[114,22,78,-0.7364121136953496],[114,22,79,-0.7361304994292511],[114,23,64,-0.7407375879759396],[114,23,65,-0.7404219594508279],[114,23,66,-0.7401086989877843],[114,23,67,-0.7397978121828842],[114,23,68,-0.7394893045399453],[114,23,69,-0.7391831814701072],[114,23,70,-0.7388794482913954],[114,23,71,-0.7385781102282909],[114,23,72,-0.7382791724112965],[114,23,73,-0.7379826398765195],[114,23,74,-0.7376885175652242],[114,23,75,-0.7373968103234163],[114,23,76,-0.7371075229014135],[114,23,77,-0.7368206599534174],[114,23,78,-0.7365362260370907],[114,23,79,-0.736254225613127],[114,24,64,-0.7408672596349053],[114,24,65,-0.7405512486325767],[114,24,66,-0.7402376054510849],[114,24,67,-0.7399263356916925],[114,24,68,-0.7396174448634146],[114,24,69,-0.7393109383825981],[114,24,70,-0.7390068215724866],[114,24,71,-0.7387050996627886],[114,24,72,-0.7384057777892443],[114,24,73,-0.738108860993209],[114,24,74,-0.7378143542212043],[114,24,75,-0.7375222623245028],[114,24,76,-0.7372325900586991],[114,24,77,-0.7369453420832817],[114,24,78,-0.7366605229612091],[114,24,79,-0.7363781371584804],[114,25,64,-0.7409971046796384],[114,25,65,-0.7406807120241834],[114,25,66,-0.7403666869454236],[114,25,67,-0.7400550350497959],[114,25,68,-0.7397457618514991],[114,25,69,-0.739438872772075],[114,25,70,-0.7391343731399718],[114,25,71,-0.7388322681901127],[114,25,72,-0.7385325630634634],[114,25,73,-0.7382352628066138],[114,25,74,-0.7379403723713305],[114,25,75,-0.7376478966141413],[114,25,76,-0.7373578402959056],[114,25,77,-0.737070208081386],[114,25,78,-0.7367850045388258],[114,25,79,-0.7365022341395178],[114,26,64,-0.7411271231340967],[114,26,65,-0.7408103496528793],[114,26,66,-0.7404959435012923],[114,26,67,-0.7401839102909329],[114,26,68,-0.739874255541171],[114,26,69,-0.7395669846787297],[114,26,70,-0.7392621030372489],[114,26,71,-0.7389596158568541],[114,26,72,-0.738659528283723],[114,26,73,-0.7383618453696681],[114,26,74,-0.7380665720716886],[114,26,75,-0.7377737132515547],[114,26,76,-0.7374832736753787],[114,26,77,-0.7371952580131858],[114,26,78,-0.736909670838491],[114,26,79,-0.7366265166278703],[114,27,64,-0.7412573150197158],[114,27,65,-0.7409401615433691],[114,27,66,-0.7406253751466509],[114,27,67,-0.7403129614463058],[114,27,68,-0.740002925966861],[114,27,69,-0.7396952741402081],[114,27,70,-0.7393900113051656],[114,27,71,-0.7390871427070478],[114,27,72,-0.7387866734972325],[114,27,73,-0.7384886087327416],[114,27,74,-0.7381929533757946],[114,27,75,-0.7378997122933921],[114,27,76,-0.7376088902568863],[114,27,77,-0.7373204919415532],[114,27,78,-0.7370345219261687],[114,27,79,-0.7367509846925784],[114,28,64,-0.7413876803554637],[114,28,65,-0.7410701477178843],[114,28,66,-0.7407549819069817],[114,28,67,-0.7404421885446335],[114,28,68,-0.740131773160512],[114,28,69,-0.7398237411916632],[114,28,70,-0.7395180979820711],[114,28,71,-0.7392148487822268],[114,28,72,-0.7389139987486941],[114,28,73,-0.7386155529436926],[114,28,74,-0.7383195163346491],[114,28,75,-0.7380258937937818],[114,28,76,-0.7377346900976716],[114,28,77,-0.7374459099268325],[114,28,78,-0.7371595578652889],[114,28,79,-0.736875638400145],[114,29,64,-0.741518219157817],[114,29,65,-0.7412003081961602],[114,29,66,-0.7408847638052651],[114,29,67,-0.7405715916121293],[114,29,68,-0.7402607971515556],[114,29,69,-0.739952385865732],[114,29,70,-0.739646363103795],[114,29,71,-0.7393427341213985],[114,29,72,-0.7390415040802806],[114,29,73,-0.7387426780478448],[114,29,74,-0.7384462609967131],[114,29,75,-0.7381522578043093],[114,29,76,-0.7378606732524295],[114,29,77,-0.7375715120268147],[114,29,78,-0.7372847787167252],[114,29,79,-0.7370004778145121],[114,30,64,-0.741648931440784],[114,30,65,-0.7413306429954588],[114,30,66,-0.7410147208620036],[114,30,67,-0.7407011706725224],[114,30,68,-0.7403899979669353],[114,30,69,-0.7400812081925586],[114,30,70,-0.7397748067036682],[114,30,71,-0.739470798761068],[114,30,72,-0.7391691895316568],[114,30,73,-0.73886998408801],[114,30,74,-0.7385731874079317],[114,30,75,-0.7382788043740385],[114,30,76,-0.7379868397733302],[114,30,77,-0.7376972982967616],[114,30,78,-0.737410184538817],[114,30,79,-0.737125502997083],[114,31,64,-0.7417798172158819],[114,31,65,-0.7414611521305456],[114,31,66,-0.7411448530951982],[114,31,67,-0.740830925747036],[114,31,68,-0.7405193756310833],[114,31,69,-0.740210208199771],[114,31,70,-0.739903428812501],[114,31,71,-0.7395990427352144],[114,31,72,-0.7392970551399576],[114,31,73,-0.7389974711044649],[114,31,74,-0.7387002956117098],[114,31,75,-0.7384055335494895],[114,31,76,-0.7381131897099945],[114,31,77,-0.7378232687893811],[114,31,78,-0.7375357753873466],[114,31,79,-0.7372507140066998],[114,32,64,-0.7419108764921901],[114,32,65,-0.7415918356137436],[114,32,66,-0.741275160520402],[114,32,67,-0.7409608568544406],[114,32,68,-0.7406489301659738],[114,32,69,-0.7403393859125342],[114,32,70,-0.7400322294586362],[114,32,71,-0.7397274660753446],[114,32,72,-0.7394251009398407],[114,32,73,-0.7391251391350044],[114,32,74,-0.7388275856489663],[114,32,75,-0.7385324453746911],[114,32,76,-0.738239723109548],[114,32,77,-0.7379494235548825],[114,32,78,-0.7376615513155919],[114,32,79,-0.7373761108996957],[114,33,64,-0.742042109276335],[114,33,65,-0.7417226934549173],[114,33,66,-0.7414056431507047],[114,33,67,-0.7410909640110379],[114,33,68,-0.7407786615911081],[114,33,69,-0.7404687413535352],[114,33,70,-0.7401612086679333],[114,33,71,-0.7398560688104775],[114,33,72,-0.7395533269634709],[114,33,73,-0.7392529882149261],[114,33,74,-0.7389550575581181],[114,33,75,-0.7386595398911661],[114,33,76,-0.7383664400166055],[114,33,77,-0.7380757626409586],[114,33,78,-0.7377875123743107],[114,33,79,-0.7375016937298798],[114,34,64,-0.7421735155724742],[114,34,65,-0.7418537256614571],[114,34,66,-0.7415363009967172],[114,34,67,-0.7412212472306463],[114,34,68,-0.740908569923498],[114,34,69,-0.7405982745429671],[114,34,70,-0.7402903664637531],[114,34,71,-0.7399848509671285],[114,34,72,-0.7396817332405049],[114,34,73,-0.739381018377015],[114,34,74,-0.7390827113750641],[114,34,75,-0.7387868171379146],[114,34,76,-0.7384933404732548],[114,34,77,-0.7382022860927715],[114,34,78,-0.7379136586117256],[114,34,79,-0.7376274625485215],[114,35,64,-0.7423050953823507],[114,35,65,-0.7419849322383342],[114,35,66,-0.7416671340666252],[114,35,67,-0.7413517065246531],[114,35,68,-0.7410386551777203],[114,35,69,-0.7407279854985824],[114,35,70,-0.7404197028670112],[114,35,71,-0.7401138125693629],[114,35,72,-0.7398103197981447],[114,35,73,-0.7395092296515956],[114,35,74,-0.7392105471332396],[114,35,75,-0.7389142771514681],[114,35,76,-0.7386204245191103],[114,35,77,-0.7383289939530052],[114,35,78,-0.7380399900735766],[114,35,79,-0.7377534174044031],[114,36,64,-0.7424368487052689],[114,36,65,-0.7421163131880757],[114,36,66,-0.7417981423661661],[114,36,67,-0.7414823419019927],[114,36,68,-0.7411689173658933],[114,36,69,-0.7408578742356706],[114,36,70,-0.740549217896155],[114,36,71,-0.740242953638773],[114,36,72,-0.739939086661114],[114,36,73,-0.7396376220665105],[114,36,74,-0.7393385648635918],[114,36,75,-0.7390419199658659],[114,36,76,-0.73874769219129],[114,36,77,-0.7384558862618424],[114,36,78,-0.7381665068030979],[114,36,79,-0.737879558343797],[114,37,64,-0.7425687755381188],[114,37,65,-0.7422478685107887],[114,37,66,-0.7419293258986513],[114,37,67,-0.7416131533691684],[114,37,68,-0.7412993564976995],[114,37,69,-0.7409879407670801],[114,37,70,-0.7406789115671857],[114,37,71,-0.7403722741945001],[114,37,72,-0.740068033851681],[114,37,73,-0.7397661956471417],[114,37,74,-0.7394667645946035],[114,37,75,-0.7391697456126778],[114,37,76,-0.7388751435244375],[114,37,77,-0.7385829630569876],[114,37,78,-0.7382932088410409],[114,37,79,-0.738005885410488],[114,38,64,-0.7427008758753513],[114,38,65,-0.7423795982041365],[114,38,66,-0.7420606846649437],[114,38,67,-0.7417441409302301],[114,38,68,-0.7414299725803623],[114,38,69,-0.7411181851031952],[114,38,70,-0.7408087838936359],[114,38,71,-0.7405017742532116],[114,38,72,-0.7401971613896353],[114,38,73,-0.7398949504163875],[114,38,74,-0.7395951463522683],[114,38,75,-0.7392977541209802],[114,38,76,-0.7390027785506984],[114,38,77,-0.7387102243736421],[114,38,78,-0.7384200962256497],[114,38,79,-0.7381323986457493],[114,39,64,-0.7428331497090329],[114,39,65,-0.7425115022633924],[114,39,66,-0.7421922186635109],[114,39,67,-0.7418753045868265],[114,39,68,-0.7415607656186993],[114,39,69,-0.7412486072519897],[114,39,70,-0.7409388348866226],[114,39,71,-0.7406314538291547],[114,39,72,-0.7403264692923411],[114,39,73,-0.7400238863947163],[114,39,74,-0.739723710160146],[114,39,75,-0.7394259455174106],[114,39,76,-0.7391305972997748],[114,39,77,-0.7388376702445593],[114,39,78,-0.7385471689927159],[114,39,79,-0.7382590980883971],[114,40,64,-0.7429655970288299],[114,40,65,-0.7426435806814243],[114,40,66,-0.7423239278904099],[114,40,67,-0.7420066443381912],[114,40,68,-0.7416917356151077],[114,40,69,-0.7413792072190115],[114,40,70,-0.7410690645548315],[114,40,71,-0.7407613129341405],[114,40,72,-0.7404559575747218],[114,40,73,-0.7401530036001506],[114,40,74,-0.7398524560393451],[114,40,75,-0.7395543198261506],[114,40,76,-0.7392585997989083],[114,40,77,-0.7389653007000277],[114,40,78,-0.7386744271755611],[114,40,79,-0.7383859837747736],[114,41,64,-0.7430982178219926],[114,41,65,-0.742775833448679],[114,41,66,-0.7424558123392708],[114,41,67,-0.7421381601811256],[114,41,68,-0.7418228825695474],[114,41,69,-0.7415099850073665],[114,41,70,-0.7411994729045015],[114,41,71,-0.7408913515775278],[114,41,72,-0.7405856262492436],[114,41,73,-0.7402823020482511],[114,41,74,-0.7399813840085079],[114,41,75,-0.7396828770689108],[114,41,76,-0.7393867860728649],[114,41,77,-0.7390931157678554],[114,41,78,-0.7388018708050224],[114,41,79,-0.7385130557387309],[114,42,64,-0.7432310120734092],[114,42,65,-0.7429082605532356],[114,42,66,-0.7425878720013516],[114,42,67,-0.7422698521100531],[114,42,68,-0.7419542064795955],[114,42,69,-0.7416409406177723],[114,42,70,-0.7413300599394783],[114,42,71,-0.7410215697662776],[114,42,72,-0.7407154753259698],[114,42,73,-0.7404117817521706],[114,42,74,-0.7401104940838636],[114,42,75,-0.7398116172649842],[114,42,76,-0.7395151561439879],[114,42,77,-0.7392211154734232],[114,42,78,-0.7389294999095051],[114,42,79,-0.7386403140116862],[114,43,64,-0.7433639797655828],[114,43,65,-0.7430408619807823],[114,43,66,-0.7427201068655137],[114,43,67,-0.7424017201169963],[114,43,68,-0.7420857073404223],[114,43,69,-0.7417720740485348],[114,43,70,-0.7414608256611908],[114,43,71,-0.7411519675049292],[114,43,72,-0.7408455048125371],[114,43,73,-0.7405414427226302],[114,43,74,-0.7402397862792054],[114,43,75,-0.7399405404312225],[114,43,76,-0.7396437100321751],[114,43,77,-0.7393492998396615],[114,43,78,-0.7390573145149593],[114,43,79,-0.7387677586225955],[114,44,64,-0.7434971208786535],[114,44,65,-0.7431736377146401],[114,44,66,-0.7428525169182456],[114,44,67,-0.742533764191599],[114,44,68,-0.742217385144815],[114,44,69,-0.7419033852955714],[114,44,70,-0.7415917700686738],[114,44,71,-0.7412825447956225],[114,44,72,-0.7409757147141779],[114,44,73,-0.7406712849679425],[114,44,74,-0.7403692606059121],[114,44,75,-0.7400696465820589],[114,44,76,-0.7397724477549007],[114,44,77,-0.7394776688870728],[114,44,78,-0.7391853146449024],[114,44,79,-0.7388953895979788],[114,45,64,-0.7436304353903755],[114,45,65,-0.7433065877357377],[114,45,66,-0.7429851021436389],[114,45,67,-0.742665984321103],[114,45,68,-0.7423492398831524],[114,45,69,-0.7420348743523866],[114,45,70,-0.7417228931585451],[114,45,71,-0.7414133016380751],[114,45,72,-0.7411061050336973],[114,45,73,-0.740801308493987],[114,45,74,-0.7404989170729258],[114,45,75,-0.7401989357294843],[114,45,76,-0.7399013693271919],[114,45,77,-0.7396062226337076],[114,45,78,-0.7393135003203957],[114,45,79,-0.7390232069618943],[114,46,64,-0.7437639232761712],[114,46,65,-0.743439712022667],[114,46,66,-0.7431178625234423],[114,46,67,-0.7427983804904016],[114,46,68,-0.742481271543461],[114,46,69,-0.7421665412101266],[114,46,70,-0.7418541949250581],[114,46,71,-0.7415442380296356],[114,46,72,-0.7412366757715263],[114,46,73,-0.7409315133042645],[114,46,74,-0.7406287556868042],[114,46,75,-0.7403284078831011],[114,46,76,-0.7400304747616824],[114,46,77,-0.7397349610952185],[114,46,78,-0.739441871560097],[114,46,79,-0.739151210735993],[114,47,64,-0.7438975845091153],[114,47,65,-0.7435730105516665],[114,47,66,-0.7432507980370463],[114,47,67,-0.742930952682025],[114,47,68,-0.7426134801113977],[114,47,69,-0.7422983858575634],[114,47,70,-0.7419856753600871],[114,47,71,-0.7416753539652685],[114,47,72,-0.7413674269257067],[114,47,73,-0.7410618993998818],[114,47,74,-0.7407587764517061],[114,47,75,-0.7404580630501072],[114,47,76,-0.7401597640685972],[114,47,77,-0.7398638842848442],[114,47,78,-0.7395704283802466],[114,47,79,-0.739279400939503],[114,48,64,-0.7440314190599182],[114,48,65,-0.7437064832966053],[114,48,66,-0.7433839086614663],[114,48,67,-0.7430637008761227],[114,48,68,-0.7427458655702343],[114,48,69,-0.7424304082810779],[114,48,70,-0.7421173344531106],[114,48,71,-0.7418066494375366],[114,48,72,-0.7414983584918736],[114,48,73,-0.7411924667795335],[114,48,74,-0.7408889793693736],[114,48,75,-0.7405879012352796],[114,48,76,-0.740289237255735],[114,48,77,-0.7399929922133925],[114,48,78,-0.7396991707946483],[114,48,79,-0.7394077775892118],[114,49,64,-0.7441654268969813],[114,49,65,-0.7438401302290376],[114,49,66,-0.7435171943713976],[114,49,67,-0.7431966250505188],[114,49,68,-0.742878427900911],[114,49,69,-0.7425626084647152],[114,49,70,-0.7422491721912653],[114,49,71,-0.7419381244366566],[114,49,72,-0.7416294704633113],[114,49,73,-0.7413232154395589],[114,49,74,-0.7410193644391879],[114,49,75,-0.740717922441029],[114,49,76,-0.7404188943285235],[114,49,77,-0.7401222848892955],[114,49,78,-0.7398280988147259],[114,49,79,-0.7395363406995219],[114,50,64,-0.7442996079863806],[114,50,65,-0.7439739513181871],[114,50,66,-0.7436506551391988],[114,50,67,-0.7433297251806952],[114,50,68,-0.7430111670820216],[114,50,69,-0.7426949863901677],[114,50,70,-0.7423811885593308],[114,50,71,-0.7420697789504825],[114,50,72,-0.7417607628309355],[114,50,73,-0.7414541453739233],[114,50,74,-0.7411499316581518],[114,50,75,-0.7408481266673828],[114,50,76,-0.7405487352900023],[114,50,77,-0.7402517623185925],[114,50,78,-0.7399572124495054],[114,50,79,-0.7396650902824335],[114,51,64,-0.7444339622918499],[114,51,65,-0.7441079465309295],[114,51,66,-0.7437842909348764],[114,51,67,-0.7434630012397765],[114,51,68,-0.743144083089796],[114,51,69,-0.7428275420367593],[114,51,70,-0.7425133835397121],[114,51,71,-0.7422016129644888],[114,51,72,-0.741892235583278],[114,51,73,-0.7415852565742029],[114,51,74,-0.7412806810208737],[114,51,75,-0.7409785139119693],[114,51,76,-0.7406787601408069],[114,51,77,-0.7403814245049133],[114,51,78,-0.740086511705599],[114,51,79,-0.739794026347528],[114,52,64,-0.7445684897748366],[114,52,65,-0.7442421158318486],[114,52,66,-0.7439181017261381],[114,52,67,-0.743596453198583],[114,52,68,-0.7432771758981553],[114,52,69,-0.7429602753814996],[114,52,70,-0.7426457571124956],[114,52,71,-0.7423336264618257],[114,52,72,-0.7420238887065405],[114,52,73,-0.7417165490296395],[114,52,74,-0.7414116125196225],[114,52,75,-0.741109084170072],[114,52,76,-0.7408089688792232],[114,52,77,-0.7405112714495337],[114,52,78,-0.7402159965872595],[114,52,79,-0.739923148902023],[114,53,64,-0.7447031903944767],[114,53,65,-0.7443764591832115],[114,53,66,-0.7440520874783703],[114,53,67,-0.743730081025608],[114,53,68,-0.743410445478688],[114,53,69,-0.74309318639906],[114,53,70,-0.7427783092554232],[114,53,71,-0.742465819423294],[114,53,72,-0.7421557221845709],[114,53,73,-0.741848022727115],[114,53,74,-0.7415427261443023],[114,53,75,-0.7412398374346052],[114,53,76,-0.7409393615011626],[114,53,77,-0.7406413031513502],[114,53,78,-0.7403456670963556],[114,53,79,-0.7400524579507473],[114,54,64,-0.7448380641076184],[114,54,65,-0.7445109765449913],[114,54,66,-0.7441862481546597],[114,54,67,-0.7438638846870401],[114,54,68,-0.7435438918006722],[114,54,69,-0.7432262750617963],[114,54,70,-0.7429110399439169],[114,54,71,-0.7425981918273696],[114,54,72,-0.7422877359988862],[114,54,73,-0.7419796776511759],[114,54,74,-0.7416740218824766],[114,54,75,-0.7413707736961368],[114,54,76,-0.7410699380001855],[114,54,77,-0.7407715196069032],[114,54,78,-0.7404755232323956],[114,54,79,-0.7401819534961636],[114,55,64,-0.7449731108687978],[114,55,65,-0.7446456678748441],[114,55,66,-0.7443205837157701],[114,55,67,-0.743997864146739],[114,55,68,-0.7436775148310518],[114,55,69,-0.7433595413397251],[114,55,70,-0.7430439491510535],[114,55,71,-0.7427307436501773],[114,55,72,-0.7424199301286476],[114,55,73,-0.7421115137840075],[114,55,74,-0.7418054997193426],[114,55,75,-0.7415018929428638],[114,55,76,-0.7412006983674768],[114,55,77,-0.7409019208103526],[114,55,78,-0.7406055649925019],[114,55,79,-0.7403116355383449],[114,56,64,-0.7451083306302935],[114,56,65,-0.7447805331281625],[114,56,66,-0.7444550941201966],[114,56,67,-0.7441320193662906],[114,56,68,-0.7438113145344918],[114,56,69,-0.7434929852005779],[114,56,70,-0.7431770368476195],[114,56,71,-0.7428634748655468],[114,56,72,-0.7425523045507162],[114,56,73,-0.7422435311054898],[114,56,74,-0.7419371596377871],[114,56,75,-0.7416331951606677],[114,56,76,-0.7413316425918999],[114,56,77,-0.7410325067535318],[114,56,78,-0.7407357923714659],[114,56,79,-0.7404415040750281],[114,57,64,-0.7452437233421109],[114,57,65,-0.7449155722580604],[114,57,66,-0.7445897793241496],[114,57,67,-0.74426635030499],[114,57,68,-0.7439452908733607],[114,57,69,-0.7436266066097852],[114,57,70,-0.7433103030020949],[114,57,71,-0.742996385444996],[114,57,72,-0.7426848592396351],[114,57,73,-0.7423757295931799],[114,57,74,-0.7420690016183691],[114,57,75,-0.7417646803330971],[114,57,76,-0.7414627706599808],[114,57,77,-0.7411632774259321],[114,57,78,-0.7408662053617316],[114,57,79,-0.7405715591015977],[114,58,64,-0.7453792889519647],[114,58,65,-0.7450507852153551],[114,58,66,-0.744724639281538],[114,58,67,-0.7444008569198263],[114,58,68,-0.744079443807715],[114,58,69,-0.7437604055304591],[114,58,70,-0.7434437475806362],[114,58,71,-0.7431294753577138],[114,58,72,-0.7428175941676143],[114,58,73,-0.7425081092222958],[114,58,74,-0.7422010256393032],[114,58,75,-0.7418963484413508],[114,58,76,-0.741594082555891],[114,58,77,-0.7412942328146852],[114,58,78,-0.7409968039533787],[114,58,79,-0.7407018006110688],[114,59,64,-0.7455150274053353],[114,59,65,-0.745186171948624],[114,59,66,-0.7448596739440244],[114,59,67,-0.7445355391655355],[114,59,68,-0.7442137732953533],[114,59,69,-0.7438943819234491],[114,59,70,-0.7435773705471321],[114,59,71,-0.7432627445706158],[114,59,72,-0.7429505093045841],[114,59,73,-0.7426406699657717],[114,59,74,-0.7423332316765148],[114,59,75,-0.7420281994643337],[114,59,76,-0.7417255782615023],[114,59,77,-0.7414253729046183],[114,59,78,-0.7411275881341773],[114,59,79,-0.7408322285941429],[114,60,64,-0.7456509386454429],[114,60,65,-0.7453217324041789],[114,60,66,-0.7449948832610007],[114,60,67,-0.7446703969945779],[114,60,68,-0.7443482792917927],[114,60,69,-0.7440285357473175],[114,60,70,-0.7437111718631779],[114,60,71,-0.743396193048319],[114,60,72,-0.7430836046181718],[114,60,73,-0.7427734117942326],[114,60,74,-0.7424656197036149],[114,60,75,-0.7421602333786312],[114,60,76,-0.7418572577563627],[114,60,77,-0.741556697678229],[114,60,78,-0.7412585578895632],[114,60,79,-0.7409628430391809],[114,61,64,-0.7457870226132719],[114,61,65,-0.7454574665260896],[114,61,66,-0.7451302671796107],[114,61,67,-0.7448054303571604],[114,61,68,-0.7444829617502912],[114,61,69,-0.7441628669583619],[114,61,70,-0.7438451514880993],[114,61,71,-0.7435298207531655],[114,61,72,-0.7432168800737239],[114,61,73,-0.742906334676018],[114,61,74,-0.742598189691924],[114,61,75,-0.7422924501585328],[114,61,76,-0.7419891210177183],[114,61,77,-0.7416882071157088],[114,61,78,-0.7413897132026609],[114,61,79,-0.7410936439322289],[114,62,64,-0.7459232792475459],[114,62,65,-0.7455933742561595],[114,62,66,-0.7452658256447267],[114,62,67,-0.7449406392012118],[114,62,68,-0.7446178206218234],[114,62,69,-0.7442973755105907],[114,62,70,-0.7439793093789273],[114,62,71,-0.7436636276451976],[114,62,72,-0.7433503356342817],[114,62,73,-0.7430394385771564],[114,62,74,-0.7427309416104466],[114,62,75,-0.7424248497760066],[114,62,76,-0.7421211680204894],[114,62,77,-0.741819901194918],[114,62,78,-0.7415210540542585],[114,62,79,-0.7412246312569907],[114,63,64,-0.7460597084847824],[114,63,65,-0.7457294555339806],[114,63,66,-0.745401558599003],[114,63,67,-0.7450760234724385],[114,63,68,-0.7447528558551354],[114,63,69,-0.7444320613557791],[114,63,70,-0.7441136454904541],[114,63,71,-0.7437976136822121],[114,63,72,-0.7434839712606361],[114,63,73,-0.7431727234614214],[114,63,74,-0.7428638754259265],[114,63,75,-0.7425574322007549],[114,63,76,-0.7422533987373252],[114,63,77,-0.7419517798914406],[114,63,78,-0.7416525804228633],[114,63,79,-0.7413558049948844],[114,64,64,-0.7461963102592774],[114,64,65,-0.745865710296917],[114,64,66,-0.745537465982861],[114,64,67,-0.7452115831143074],[114,64,68,-0.7448880673967286],[114,64,69,-0.744566924443451],[114,64,70,-0.7442481597752153],[114,64,71,-0.7439317788197453],[114,64,72,-0.7436177869113119],[114,64,73,-0.743306189290314],[114,64,74,-0.7429969911028296],[114,64,75,-0.7426901974001975],[114,64,76,-0.742385813138587],[114,64,77,-0.7420838431785677],[114,64,78,-0.7417842922846841],[114,64,79,-0.741487165125025],[114,65,64,-0.7463330845030876],[114,65,65,-0.7460021384800878],[114,65,66,-0.7456735477344713],[114,65,67,-0.7453473180680288],[114,65,68,-0.7450234551908426],[114,65,69,-0.7447019647208635],[114,65,70,-0.7443828521834739],[114,65,71,-0.7440661230110542],[114,65,72,-0.743751782542549],[114,65,73,-0.7434398360230459],[114,65,74,-0.7431302886033276],[114,65,75,-0.742823145339454],[114,65,76,-0.7425184111923308],[114,65,77,-0.7422160910272801],[114,65,78,-0.7419161896136146],[114,65,79,-0.741618711624207],[114,66,64,-0.7464700311460861],[114,66,65,-0.7461387400164229],[114,66,66,-0.745809803789809],[114,66,67,-0.7454832282726128],[114,66,68,-0.7451590191795099],[114,66,69,-0.7448371821330612],[114,66,70,-0.7445177226632748],[114,66,71,-0.7442006462071733],[114,66,72,-0.7438859581083592],[114,66,73,-0.7435736636165948],[114,66,74,-0.7432637678873529],[114,66,75,-0.7429562759813997],[114,66,76,-0.7426511928643631],[114,66,77,-0.7423485234063036],[114,66,78,-0.7420482723812885],[114,66,79,-0.7417504444669601],[114,67,64,-0.7466071501159378],[114,67,65,-0.746275514836638],[114,67,66,-0.7459462340826299],[114,67,67,-0.7456193136648434],[114,67,68,-0.7452947593025323],[114,67,69,-0.7449725766228517],[114,67,70,-0.7446527711604206],[114,67,71,-0.7443353483568885],[114,67,72,-0.7440203135605011],[114,67,73,-0.7437076720256799],[114,67,74,-0.7433974289125737],[114,67,75,-0.7430895892866403],[114,67,76,-0.7427841581182156],[114,67,77,-0.7424811402820846],[114,67,78,-0.7421805405570541],[114,67,79,-0.7418823636255236],[114,68,64,-0.7467444413381227],[114,68,65,-0.7464124628692581],[114,68,66,-0.7460828385444926],[114,68,67,-0.7457555741793023],[114,68,68,-0.7454306754975031],[114,68,69,-0.745108148130829],[114,68,70,-0.7447879976184946],[114,68,71,-0.744470229406761],[114,68,72,-0.7441548488485021],[114,68,73,-0.7438418612027842],[114,68,74,-0.7435312716344165],[114,68,75,-0.7432230852135346],[114,68,76,-0.7429173069151682],[114,68,77,-0.7426139416188114],[114,68,78,-0.7423129941079982],[114,68,79,-0.74201446906987],[114,69,64,-0.7468819047359107],[114,69,65,-0.7465495840405922],[114,69,66,-0.7462196171047346],[114,69,67,-0.7458920097483437],[114,69,68,-0.7455667676997826],[114,69,69,-0.7452438965953483],[114,69,70,-0.7449234019788356],[114,69,71,-0.7446052893011021],[114,69,72,-0.7442895639196347],[114,69,73,-0.7439762310981296],[114,69,74,-0.7436652960060423],[114,69,75,-0.7433567637181706],[114,69,76,-0.7430506392142237],[114,69,77,-0.7427469273783914],[114,69,78,-0.7424456329989197],[114,69,79,-0.7421467607676787],[114,70,64,-0.7470195402304175],[114,70,65,-0.7466868782747892],[114,70,66,-0.7463565696905267],[114,70,67,-0.7460286203021501],[114,70,68,-0.7457030358425532],[114,70,69,-0.7453798219525815],[114,70,70,-0.7450589841805935],[114,70,71,-0.7447405279820285],[114,70,72,-0.7444244587189716],[114,70,73,-0.744110781659733],[114,70,74,-0.7437995019784004],[114,70,75,-0.7434906247544193],[114,70,76,-0.7431841549721636],[114,70,77,-0.7428800975205047],[114,70,78,-0.7425784571923861],[114,70,79,-0.7422792386843928],[114,71,64,-0.7471573477405875],[114,71,65,-0.7468243454938208],[114,71,66,-0.7464936962268571],[114,71,67,-0.746165405768715],[114,71,68,-0.7458394798568035],[114,71,69,-0.7455159241364999],[114,71,70,-0.7451947441607123],[114,71,71,-0.7448759453894456],[114,71,72,-0.7445595331893676],[114,71,73,-0.7442455128333888],[114,71,74,-0.7439338895002127],[114,71,75,-0.7436246682739187],[114,71,76,-0.7433178541435308],[114,71,77,-0.7430134520025873],[114,71,78,-0.7427114666487156],[114,71,79,-0.7424119027832008],[114,72,64,-0.7472953271831773],[114,72,65,-0.7469619856174646],[114,72,66,-0.7466309966365141],[114,72,67,-0.7463023660738263],[114,72,68,-0.7459760996713096],[114,72,69,-0.745652203078858],[114,72,70,-0.7453306818539128],[114,72,71,-0.7450115414610297],[114,72,72,-0.7446947872714442],[114,72,73,-0.7443804245626511],[114,72,74,-0.7440684585179558],[114,72,75,-0.7437588942260565],[114,72,76,-0.7434517366806123],[114,72,77,-0.7431469907798143],[114,72,78,-0.7428446613259595],[114,72,79,-0.7425447530250194],[114,73,64,-0.7474334784728104],[114,73,65,-0.7470997985633598],[114,73,66,-0.7467684708401413],[114,73,67,-0.7464395011411213],[114,73,68,-0.7461128952126922],[114,73,69,-0.7457886587092482],[114,73,70,-0.7454667971927486],[114,73,71,-0.7451473161322846],[114,73,72,-0.7448302209036436],[114,73,73,-0.7445155167888903],[114,73,74,-0.7442032089759166],[114,73,75,-0.7438933025580245],[114,73,76,-0.7435858025334943],[114,73,77,-0.7432807138051549],[114,73,78,-0.7429780411799588],[114,73,79,-0.7426777893685498],[114,74,64,-0.7475718015219532],[114,74,65,-0.7472377842469822],[114,74,66,-0.7469061187562129],[114,74,67,-0.7465768108920625],[114,74,68,-0.7462498664053903],[114,74,69,-0.7459252909550758],[114,74,70,-0.7456030901075805],[114,74,71,-0.7452832693365152],[114,74,72,-0.7449658340222045],[114,74,73,-0.7446507894512672],[114,74,74,-0.744338140816167],[114,74,75,-0.744027893214795],[114,74,76,-0.7437200516500376],[114,74,77,-0.7434146210293477],[114,74,78,-0.743111606164318],[114,74,79,-0.7428110117702509],[114,75,64,-0.747710296240938],[114,75,65,-0.7473759425816668],[114,75,66,-0.7470439403010571],[114,75,67,-0.7467142952459598],[114,75,68,-0.7463870131716855],[114,75,69,-0.7460620997415829],[114,75,70,-0.7457395605266002],[114,75,71,-0.745419401004852],[114,75,72,-0.7451016265611847],[114,75,73,-0.7447862424867564],[114,75,74,-0.7444732539785874],[114,75,75,-0.7441626661391428],[114,75,76,-0.7438544839759007],[114,75,77,-0.7435487124009228],[114,75,78,-0.7432453562304284],[114,75,79,-0.7429444201843637],[114,76,64,-0.7478489625379372],[114,76,65,-0.7475142734785842],[114,76,66,-0.747181935388831],[114,76,67,-0.7468519541199462],[114,76,68,-0.7465243354316762],[114,76,69,-0.7461990849918224],[114,76,70,-0.7458762083758042],[114,76,71,-0.7455557110662245],[114,76,72,-0.7452375984524362],[114,76,73,-0.744921875830121],[114,76,74,-0.744608548400841],[114,76,75,-0.7442976212716201],[114,76,76,-0.7439890994545134],[114,76,77,-0.743682987866177],[114,76,78,-0.7433792913274424],[114,76,79,-0.743078014562885],[114,77,64,-0.7479878003190202],[114,77,65,-0.7476527768467948],[114,77,66,-0.7473201039315758],[114,77,67,-0.7469897874290332],[114,77,68,-0.7466618331033331],[114,77,69,-0.746336246626714],[114,77,70,-0.7460130335790504],[114,77,71,-0.745692199447418],[114,77,72,-0.7453737496256604],[114,77,73,-0.745057689413968],[114,77,74,-0.7447440240184291],[114,77,75,-0.7444327585506121],[114,77,76,-0.7441238980271336],[114,77,77,-0.7438174473692298],[114,77,78,-0.7435134114023295],[114,77,79,-0.7432117948556235],[114,78,64,-0.7481268094881359],[114,78,65,-0.7477914525932322],[114,78,66,-0.7474584458391997],[114,78,67,-0.7471277950860937],[114,78,68,-0.7467995061024829],[114,78,69,-0.7464735845650274],[114,78,70,-0.7461500360580404],[114,78,71,-0.7458288660730557],[114,78,72,-0.7455100800083915],[114,78,73,-0.7451936831687314],[114,78,74,-0.7448796807646749],[114,78,75,-0.7445680779123196],[114,78,76,-0.7442588796328294],[114,78,77,-0.7439520908520052],[114,78,78,-0.7436477163998588],[114,78,79,-0.7433457610101819],[114,79,64,-0.7482659899470948],[114,79,65,-0.7479303006226867],[114,79,66,-0.7475969610194619],[114,79,67,-0.7472659770018444],[114,79,68,-0.7469373543427901],[114,79,69,-0.7466110987233641],[114,79,70,-0.7462872157323028],[114,79,71,-0.7459657108655815],[114,79,72,-0.7456465895259783],[114,79,73,-0.7453298570226543],[114,79,74,-0.7450155185707051],[114,79,75,-0.7447035792907422],[114,79,76,-0.7443940442084616],[114,79,77,-0.7440869182542145],[114,79,78,-0.7437822062625812],[114,79,79,-0.7434799129719398],[114,80,64,-0.748405341595626],[114,80,65,-0.74806932083786],[114,80,66,-0.7477356493780268],[114,80,67,-0.7474043330849024],[114,80,68,-0.7470753777358135],[114,80,69,-0.7467487890162139],[114,80,70,-0.746424572519248],[114,80,71,-0.7461027337453163],[114,80,72,-0.7457832781016408],[114,80,73,-0.7454662109018454],[114,80,74,-0.745151537365506],[114,80,75,-0.7448392626177329],[114,80,76,-0.7445293916887394],[114,80,77,-0.7442219295134124],[114,80,78,-0.7439168809308854],[114,80,79,-0.7436142506841089],[114,81,64,-0.7485448643313511],[114,81,65,-0.7482085131393411],[114,81,66,-0.7478745108184397],[114,81,67,-0.7475428632417591],[114,81,68,-0.7472135761909801],[114,81,69,-0.7468866553559297],[114,81,70,-0.7465621063341433],[114,81,71,-0.7462399346304314],[114,81,72,-0.7459201456564444],[114,81,73,-0.7456027447302528],[114,81,74,-0.7452877370758979],[114,81,75,-0.7449751278229736],[114,81,76,-0.7446649220061955],[114,81,77,-0.7443571245649708],[114,81,78,-0.7440517403429725],[114,81,79,-0.743748774087708],[114,82,64,-0.7486845580498085],[114,82,65,-0.7483478774256287],[114,82,66,-0.7480135452421501],[114,82,67,-0.7476815673768041],[114,82,68,-0.7473519496156096],[114,82,69,-0.7470246976527503],[114,82,70,-0.7466998170901366],[114,82,71,-0.7463773134369732],[114,82,72,-0.7460571921093231],[114,82,73,-0.7457394584296878],[114,82,74,-0.7454241176265586],[114,82,75,-0.745111174833998],[114,82,76,-0.7448006350912084],[114,82,77,-0.7444925033421029],[114,82,78,-0.7441867844348785],[114,82,79,-0.7438834831215857],[114,83,64,-0.7488244226444266],[114,83,65,-0.7484874135931061],[114,83,66,-0.7481527525484857],[114,83,67,-0.7478204453922994],[114,83,68,-0.7474904979148875],[114,83,69,-0.7471629158147746],[114,83,70,-0.7468377046982301],[114,83,71,-0.7465148700788364],[114,83,72,-0.7461944173770536],[114,83,73,-0.7458763519197988],[114,83,74,-0.7455606789399974],[114,83,75,-0.7452474035761654],[114,83,76,-0.744936530871977],[114,83,77,-0.7446280657758358],[114,83,78,-0.7443220131404489],[114,83,79,-0.7440183777223945],[114,84,64,-0.7489644580065813],[114,84,65,-0.7486271215360976],[114,84,66,-0.7482921326347087],[114,84,67,-0.7479594971884354],[114,84,68,-0.7476292209919226],[114,84,69,-0.7473013097480188],[114,84,70,-0.7469757690673368],[114,84,71,-0.7466526044678209],[114,84,72,-0.746331821374312],[114,84,73,-0.7460134251181274],[114,84,74,-0.7456974209366113],[114,84,75,-0.7453838139727172],[114,84,76,-0.7450726092745766],[114,84,77,-0.7447638117950688],[114,84,78,-0.7444574263913948],[114,84,79,-0.7441534578246474],[114,85,64,-0.7491046640255778],[114,85,65,-0.7487670011468505],[114,85,66,-0.7484316853959991],[114,85,67,-0.7480987226633137],[114,85,68,-0.7477681187477279],[114,85,69,-0.7474398793563977],[114,85,70,-0.7471140101042628],[114,85,71,-0.7467905165136136],[114,85,72,-0.7464694040136559],[114,85,73,-0.7461506779400912],[114,85,74,-0.7458343435346672],[114,85,75,-0.7455204059447598],[114,85,76,-0.7452088702229418],[114,85,77,-0.7448997413265532],[114,85,78,-0.7445930241172753],[114,85,79,-0.7442887233606992],[114,86,64,-0.7492450405886333],[114,86,65,-0.7489070523155182],[114,86,66,-0.7485714107254362],[114,86,67,-0.7482381217129297],[114,86,68,-0.7479071910812045],[114,86,69,-0.7475786245417078],[114,86,70,-0.74725242771369],[114,86,71,-0.7469286061237712],[114,86,72,-0.7466071652055066],[114,86,73,-0.7462881102989658],[114,86,74,-0.7459714466502844],[114,86,75,-0.7456571794112452],[114,86,76,-0.7453453136388475],[114,86,77,-0.7450358542948767],[114,86,78,-0.7447288062454791],[114,86,79,-0.7444241742607296],[114,87,64,-0.7493855875809338],[114,87,65,-0.7490472749302164],[114,87,66,-0.7487113085140552],[114,87,67,-0.7483776942312284],[114,87,68,-0.7480464378891971],[114,87,69,-0.7477175452036835],[114,87,70,-0.747391021798232],[114,87,71,-0.7470668732037766],[114,87,72,-0.7467451048582054],[114,87,73,-0.7464257221059409],[114,87,74,-0.7461087301974907],[114,87,75,-0.7457941342890291],[114,87,76,-0.7454819394419664],[114,87,77,-0.7451721506225184],[114,87,78,-0.7448647727012809],[114,87,79,-0.7445598104527987],[114,88,64,-0.7495263048856157],[114,88,65,-0.7491876688770052],[114,88,66,-0.74885137865083],[114,88,67,-0.7485174401100871],[114,88,68,-0.7481858590664768],[114,88,69,-0.7478566412399792],[114,88,70,-0.7475297922584166],[114,88,71,-0.7472053176570205],[114,88,72,-0.7468832228779962],[114,88,73,-0.7465635132701032],[114,88,74,-0.746246194088205],[114,88,75,-0.7459312704928522],[114,88,76,-0.7456187475498504],[114,88,77,-0.745308630229831],[114,88,78,-0.7450009234078244],[114,88,79,-0.7446956318628299],[114,89,64,-0.749667192383749],[114,89,65,-0.7493282340398719],[114,89,66,-0.7489916210226552],[114,89,67,-0.7486573592392983],[114,89,68,-0.7483254545057233],[114,89,69,-0.7479959125461519],[114,89,70,-0.7476687389926682],[114,89,71,-0.7473439393847846],[114,89,72,-0.7470215191690078],[114,89,73,-0.7467014836984177],[114,89,74,-0.7463838382322189],[114,89,75,-0.7460685879353222],[114,89,76,-0.7457557378779132],[114,89,77,-0.7454452930350235],[114,89,78,-0.7451372582861032],[114,89,79,-0.7448316384145912],[114,90,64,-0.7498082499543937],[114,90,65,-0.7494689703007873],[114,90,66,-0.7491320355144029],[114,90,67,-0.748797451506625],[114,90,68,-0.748465224097581],[114,90,69,-0.7481353590157176],[114,90,70,-0.7478078618973638],[114,90,71,-0.7474827382862974],[114,90,72,-0.7471599936333095],[114,90,73,-0.7468396332957852],[114,90,74,-0.7465216625372536],[114,90,75,-0.7462060865269704],[114,90,76,-0.7458929103394863],[114,90,77,-0.7455821389542171],[114,90,78,-0.7452737772550178],[114,90,79,-0.7449678300297516],[114,91,64,-0.7499494774745736],[114,91,65,-0.7496098775396799],[114,91,66,-0.7492726220088963],[114,91,67,-0.7489377167977758],[114,91,68,-0.7486051677306336],[114,91,69,-0.7482749805401252],[114,91,70,-0.7479471608668078],[114,91,71,-0.7476217142587082],[114,91,72,-0.7472986461708859],[114,91,73,-0.746977961965015],[114,91,74,-0.7466596669089336],[114,91,75,-0.7463437661762263],[114,91,76,-0.7460302648457932],[114,91,77,-0.7457191679014193],[114,91,78,-0.7454104802313493],[114,91,79,-0.7451042066278557],[114,92,64,-0.7500908748192999],[114,92,65,-0.7497509556344593],[114,92,66,-0.7494133803869338],[114,92,67,-0.7490781549964276],[114,92,68,-0.7487452852914274],[114,92,69,-0.7484147770087799],[114,92,70,-0.7480866357932549],[114,92,71,-0.7477608671971108],[114,92,72,-0.7474374766796601],[114,92,73,-0.7471164696068493],[114,92,74,-0.7467978512508099],[114,92,75,-0.7464816267894397],[114,92,76,-0.7461678013059725],[114,92,77,-0.7458563797885471],[114,92,78,-0.7455473671297825],[114,92,79,-0.7452407681263461],[114,93,64,-0.7502324418615456],[114,93,65,-0.7498922044609906],[114,93,66,-0.749554310527263],[114,93,67,-0.7492187659842006],[114,93,68,-0.7488855766644449],[114,93,69,-0.7485547483090176],[114,93,70,-0.7482262865668836],[114,93,71,-0.7479001969945173],[114,93,72,-0.7475764850554673],[114,93,73,-0.7472551561199368],[114,93,74,-0.7469362154643342],[114,93,75,-0.7466196682708552],[114,93,76,-0.7463055196270516],[114,93,77,-0.7459937745254006],[114,93,78,-0.7456844378628802],[114,93,79,-0.7453775144405371],[114,94,64,-0.7503741784723019],[114,94,65,-0.7500336238931505],[114,94,66,-0.7496954123066362],[114,94,67,-0.7493595496407138],[114,94,68,-0.749026041732162],[114,94,69,-0.748694894326161],[114,94,70,-0.748366113075854],[114,94,71,-0.7480397035419146],[114,94,72,-0.7477156711921117],[114,94,73,-0.7473940214008887],[114,94,74,-0.7470747594489153],[114,94,75,-0.746757890522669],[114,94,76,-0.7464434197140036],[114,94,77,-0.7461313520197197],[114,94,78,-0.7458216923411389],[114,94,79,-0.7455144454836724],[114,95,64,-0.7505160845205603],[114,95,65,-0.75017521380281],[114,95,66,-0.7498366855997943],[114,95,67,-0.749500505843568],[114,95,68,-0.7491666803750301],[114,95,69,-0.7488352149435017],[114,95,70,-0.7485061152062886],[114,95,71,-0.7481793867282467],[114,95,72,-0.7478550349813484],[114,95,73,-0.7475330653442617],[114,95,74,-0.7472134831019012],[114,95,75,-0.7468962934450101],[114,95,76,-0.746581501469729],[114,95,77,-0.7462691121771663],[114,95,78,-0.7459591304729716],[114,95,79,-0.7456515611669052],[114,96,64,-0.7506581598732954],[114,96,65,-0.7503169740598162],[114,96,66,-0.7499781302794479],[114,96,67,-0.7496416344683274],[114,96,68,-0.7493074924714572],[114,96,69,-0.7489757100422829],[114,96,70,-0.7486462928422551],[114,96,71,-0.7483192464403963],[114,96,72,-0.7479945763128656],[114,96,73,-0.747672287842539],[114,96,74,-0.7473523863185604],[114,96,75,-0.7470348769359227],[114,96,76,-0.7467197647950379],[114,96,77,-0.7464070549013055],[114,96,78,-0.7460967521646887],[114,96,79,-0.7457888613992816],[114,97,64,-0.7508004043955208],[114,97,65,-0.7504589045320496],[114,97,66,-0.7501197462163341],[114,97,67,-0.7497829353885768],[114,97,68,-0.7494484778978664],[114,97,69,-0.7491163795017556],[114,97,70,-0.7487866458658234],[114,97,71,-0.7484592825632419],[114,97,72,-0.7481342950743408],[114,97,73,-0.7478116887861879],[114,97,74,-0.7474914689921396],[114,97,75,-0.7471736408914234],[114,97,76,-0.7468582095887056],[114,97,77,-0.746545180093663],[114,97,78,-0.7462345573205555],[114,97,79,-0.7459263460877962],[114,98,64,-0.7509428179502635],[114,98,65,-0.7506010050853967],[114,98,66,-0.7502615332791907],[114,98,67,-0.749924408475895],[114,98,68,-0.7495896365286678],[114,98,69,-0.7492572231991521],[114,98,70,-0.7489271741570385],[114,98,71,-0.7485994949796314],[114,98,72,-0.748274191151415],[114,98,73,-0.7479512680636324],[114,98,74,-0.7476307310138368],[114,98,75,-0.7473125852054734],[114,98,76,-0.746996835747448],[114,98,77,-0.746683487653698],[114,98,78,-0.7463725458427652],[114,98,79,-0.746064015137366],[114,99,64,-0.7510854003985876],[114,99,65,-0.7507432755837756],[114,99,66,-0.7504034913347792],[114,99,67,-0.7500660535998787],[114,99,68,-0.7497309682362836],[114,99,69,-0.7493982410097104],[114,99,70,-0.749067877593944],[114,99,71,-0.7487398835704054],[114,99,72,-0.7484142644277161],[114,99,73,-0.7480910255612779],[114,99,74,-0.7477701722728247],[114,99,75,-0.7474517097700035],[114,99,76,-0.7471356431659437],[114,99,77,-0.7468219774788272],[114,99,78,-0.7465107176314626],[114,99,79,-0.7462018684508542],[114,100,64,-0.751228151599568],[114,100,65,-0.7508857158891079],[114,100,66,-0.7505456202478595],[114,100,67,-0.7502078706281157],[114,100,68,-0.7498724728911206],[114,100,69,-0.7495394328066468],[114,100,70,-0.7492087560525571],[114,100,71,-0.7488804482143713],[114,100,72,-0.7485545147848319],[114,100,73,-0.7482309611634836],[114,100,74,-0.7479097926562241],[114,100,75,-0.7475910144748864],[114,100,76,-0.7472746317368073],[114,100,77,-0.7469606494643977],[114,100,78,-0.7466490725847172],[114,100,79,-0.7463399059290425],[114,101,64,-0.7513710714103468],[114,101,65,-0.7510283258613767],[114,101,66,-0.7506879198812456],[114,101,67,-0.7503498594262423],[114,101,68,-0.7500141503616279],[114,101,69,-0.7496807984612138],[114,101,70,-0.7493498094069235],[114,101,71,-0.7490211887883595],[114,101,72,-0.7486949421023682],[114,101,73,-0.7483710747526204],[114,101,74,-0.7480495920491615],[114,101,75,-0.7477304992079944],[114,101,76,-0.7474138013506471],[114,101,77,-0.7470995035037441],[114,101,78,-0.7467876105985801],[114,101,79,-0.746478127470689],[114,102,64,-0.7515141596861159],[114,102,65,-0.7511711053586076],[114,102,66,-0.7508303900957886],[114,102,67,-0.7504920198579251],[114,102,68,-0.7501560005142784],[114,102,69,-0.7498223378426814],[114,102,70,-0.7494910375291011],[114,102,71,-0.7491621051672056],[114,102,72,-0.7488355462579291],[114,102,73,-0.7485113662090516],[114,102,74,-0.74818957033475],[114,102,75,-0.7478701638551803],[114,102,76,-0.7475531518960465],[114,102,77,-0.7472385394881705],[114,102,78,-0.7469263315670662],[114,102,79,-0.7466165329725094],[114,103,64,-0.7516574162800991],[114,103,65,-0.7513140542368523],[114,103,66,-0.7509730307503579],[114,103,67,-0.7506343517848431],[114,103,68,-0.7502980232135508],[114,103,69,-0.7499640508183187],[114,103,70,-0.7496324402891406],[114,103,71,-0.7493031972237325],[114,103,72,-0.7489763271270999],[114,103,73,-0.7486518354111154],[114,103,74,-0.748329727394071],[114,103,75,-0.7480100083002601],[114,103,76,-0.7476926832595456],[114,103,77,-0.7473777573069313],[114,103,78,-0.747065235382135],[114,103,79,-0.7467551223291582],[114,104,64,-0.7518008410436086],[114,104,65,-0.7514571723502436],[114,104,66,-0.7511158417018987],[114,104,67,-0.7507768550667436],[114,104,68,-0.7504402183219865],[114,104,69,-0.7501059372534519],[114,104,70,-0.7497740175551425],[114,104,71,-0.7494444648288069],[114,104,72,-0.7491172845835037],[114,104,73,-0.7487924822351818],[114,104,74,-0.7484700631062322],[114,104,75,-0.7481500324250688],[114,104,76,-0.7478323953256982],[114,104,77,-0.7475171568472893],[114,104,78,-0.7472043219337481],[114,104,79,-0.7468938954332865],[114,105,64,-0.7519444338260186],[114,105,65,-0.7516004595509705],[114,105,66,-0.7512588228054055],[114,105,67,-0.7509195295614179],[114,105,68,-0.7505825857001636],[114,105,69,-0.7502479970114365],[114,105,70,-0.749915769193232],[114,105,71,-0.7495859078513126],[114,105,72,-0.7492584184987745],[114,105,73,-0.7489333065556261],[114,105,74,-0.74861057734834],[114,105,75,-0.748290236109435],[114,105,76,-0.7479722879770446],[114,105,77,-0.7476567379944875],[114,105,78,-0.747343591109842],[114,105,79,-0.7470328521755146],[114,106,64,-0.7520881944747898],[114,106,65,-0.7517439156893012],[114,106,66,-0.7514019739139449],[114,106,67,-0.7510623751247226],[114,106,68,-0.7507251252067195],[114,106,69,-0.7503902299536821],[114,106,70,-0.7500576950675804],[114,106,71,-0.7497275261581748],[114,106,72,-0.7493997287425815],[114,106,73,-0.7490743082448515],[114,106,74,-0.7487512699955232],[114,106,75,-0.7484306192312034],[114,106,76,-0.7481123610941364],[114,106,77,-0.7477965006317745],[114,106,78,-0.7474830427963524],[114,106,79,-0.7471719924444558],[114,107,64,-0.7522321228354418],[114,107,65,-0.7518875406135568],[114,107,66,-0.7515452948786308],[114,107,67,-0.7512053916105543],[114,107,68,-0.7508678366983252],[114,107,69,-0.7505326359396247],[114,107,70,-0.7501997950403805],[114,107,71,-0.749869319614333],[114,107,72,-0.7495412151826016],[114,107,73,-0.7492154871732638],[114,107,74,-0.7488921409209065],[114,107,75,-0.7485711816662083],[114,107,76,-0.748252614555508],[114,107,77,-0.7479364446403756],[114,107,78,-0.7476226768771861],[114,107,79,-0.7473113161266887],[114,108,64,-0.7523762187516108],[114,108,65,-0.7520313341701682],[114,108,66,-0.7516887855486794],[114,108,67,-0.7513485788709069],[114,108,68,-0.7510107200297425],[114,108,69,-0.7506752148267848],[114,108,70,-0.7503420689719018],[114,108,71,-0.7500112880827974],[114,108,72,-0.749682877684577],[114,108,73,-0.7493568432093272],[114,108,74,-0.7490331899956673],[114,108,75,-0.7487119232883307],[114,108,76,-0.748393048237735],[114,108,77,-0.7480765698995514],[114,108,78,-0.7477624932342792],[114,108,79,-0.7474508231068155],[114,109,64,-0.7525204820650316],[114,109,65,-0.7521752962036581],[114,109,66,-0.751832445771393],[114,109,67,-0.7514919367558521],[114,109,68,-0.7511537750538044],[114,109,69,-0.7508179664707482],[114,109,70,-0.7504845167204741],[114,109,71,-0.7501534314246321],[114,109,72,-0.7498247161122967],[114,109,73,-0.7494983762195468],[114,109,74,-0.7491744170890172],[114,109,75,-0.7488528439694804],[114,109,76,-0.7485336620154153],[114,109,77,-0.7482168762865786],[114,109,78,-0.7479024917475782],[114,109,79,-0.7475905132674426],[114,110,64,-0.752664912615519],[114,110,65,-0.7523194265566227],[114,110,66,-0.75197627539214],[114,110,67,-0.7516354651135229],[114,110,68,-0.7512970016213988],[114,110,69,-0.7509608907251483],[114,110,70,-0.7506271381424675],[114,110,71,-0.7502957494989352],[114,110,72,-0.7499667303275779],[114,110,73,-0.7496400860684498],[114,110,74,-0.7493158220681844],[114,110,75,-0.7489939435795763],[114,110,76,-0.7486744557611501],[114,110,77,-0.7483573636767316],[114,110,78,-0.7480426722950206],[114,110,79,-0.7477303864891622],[114,111,64,-0.7528095102410253],[114,111,65,-0.7524637250697888],[114,111,66,-0.7521202742544135],[114,111,67,-0.7517791637901691],[114,111,68,-0.7514403995815239],[114,111,69,-0.7511039874417231],[114,111,70,-0.7507699330923507],[114,111,71,-0.7504382421628971],[114,111,72,-0.7501089201903234],[114,111,73,-0.7497819726186423],[114,111,74,-0.7494574047984695],[114,111,75,-0.7491352219866048],[114,111,76,-0.7488154293456021],[114,111,77,-0.7484980319433395],[114,111,78,-0.7481830347525938],[114,111,79,-0.7478704426506094],[114,112,64,-0.7529542747776132],[114,112,65,-0.7526081915819874],[114,112,66,-0.7522644421998038],[114,112,67,-0.7519230326301316],[114,112,68,-0.7515839687812624],[114,112,69,-0.7512472564702883],[114,112,70,-0.7509129014226639],[114,112,71,-0.750580909271773],[114,112,72,-0.7502512855584949],[114,112,73,-0.7499240357307836],[114,112,74,-0.7495991651432198],[114,112,75,-0.7492766790565921],[114,112,76,-0.7489565826374673],[114,112,77,-0.7486388809577598],[114,112,78,-0.7483235789943063],[114,112,79,-0.7480106816284358],[114,113,64,-0.7530992060594804],[114,113,65,-0.7527528259301773],[114,113,66,-0.7524087790680223],[114,113,67,-0.7520670714758658],[114,113,68,-0.7517277090658053],[114,113,69,-0.7513906976587614],[114,113,70,-0.7510560429840417],[114,113,71,-0.7507237506789066],[114,113,72,-0.7503938262881361],[114,113,73,-0.7500662752636084],[114,113,74,-0.7497411029638521],[114,113,75,-0.7494183146536285],[114,113,76,-0.7490979155034999],[114,113,77,-0.748779910589401],[114,113,78,-0.7484643048922127],[114,113,79,-0.7481511032973317],[114,114,64,-0.753244303918932],[114,114,65,-0.7528976279494182],[114,114,66,-0.7525532846968745],[114,114,67,-0.752211280167915],[114,114,68,-0.7518716202784241],[114,114,69,-0.751534310853134],[114,114,70,-0.7511993576251873],[114,114,71,-0.7508667662357038],[114,114,72,-0.7505365422333463],[114,114,73,-0.7502086910739005],[114,114,74,-0.7498832181198263],[114,114,75,-0.7495601286398401],[114,114,76,-0.749239427808484],[114,114,77,-0.748921120705696],[114,114,78,-0.7486052123163853],[114,114,79,-0.7482917075300001],[114,115,64,-0.7533895681864381],[114,115,65,-0.753042597472928],[114,115,66,-0.7526979589223178],[114,115,67,-0.752355658544967],[114,115,68,-0.7520157022605292],[114,115,69,-0.7516780958975299],[114,115,70,-0.7513428451929293],[114,115,71,-0.7510099557916887],[114,115,72,-0.7506794332463372],[114,115,73,-0.7503512830165502],[114,115,74,-0.7500255104687019],[114,115,75,-0.7497021208754474],[114,115,76,-0.7493811194152915],[114,115,77,-0.7490625111721596],[114,115,78,-0.7487463011349721],[114,115,79,-0.7484324941972136],[114,116,64,-0.7535349986906156],[114,116,65,-0.7531877343320648],[114,116,66,-0.7528428015784431],[114,116,67,-0.7525002064438366],[114,116,68,-0.7521599548516508],[114,116,69,-0.7518220526341863],[114,116,70,-0.7514865055322031],[114,116,71,-0.751153319194487],[114,116,72,-0.7508224991774151],[114,116,73,-0.7504940509445356],[114,116,74,-0.7501679798661203],[114,116,75,-0.749844291218746],[114,116,76,-0.7495229901848636],[114,116,77,-0.7492040818523692],[114,116,78,-0.7488875712141784],[114,116,79,-0.7485734631677956],[114,117,64,-0.7536805952582095],[114,117,65,-0.7533330383563078],[114,117,66,-0.7529878124974552],[114,117,67,-0.7526449236994467],[114,117,68,-0.7523043778894205],[114,117,69,-0.7519661809034351],[114,117,70,-0.7516303384860328],[114,117,71,-0.7512968562898052],[114,117,72,-0.7509657398749608],[114,117,73,-0.7506369947089038],[114,117,74,-0.7503106261657857],[114,117,75,-0.7499866395260881],[114,117,76,-0.7496650399761917],[114,117,77,-0.7493458326079465],[114,117,78,-0.7490290224182471],[114,117,79,-0.7487146143086016],[114,118,64,-0.753826357714151],[114,118,65,-0.7534785093733156],[114,118,66,-0.7531329915097319],[114,118,67,-0.7527898101448853],[114,118,68,-0.7524489712096291],[114,118,69,-0.7521104805437611],[114,118,70,-0.7517743438955876],[114,118,71,-0.7514405669214899],[114,118,72,-0.7511091551854893],[114,118,73,-0.7507801141588284],[114,118,74,-0.7504534492195223],[114,118,75,-0.75012916565194],[114,118,76,-0.749807268646375],[114,118,77,-0.749487763298615],[114,118,78,-0.749170654609517],[114,118,79,-0.7488559474845764],[114,119,64,-0.753972285881538],[114,119,65,-0.753624147208907],[114,119,66,-0.7532783384438044],[114,119,67,-0.7529348656113881],[114,119,68,-0.7525937346462073],[114,119,69,-0.7522549513917821],[114,119,70,-0.7519185216001648],[114,119,71,-0.7515844509315078],[114,119,72,-0.7512527449536288],[114,119,73,-0.7509234091415913],[114,119,74,-0.750596448877256],[114,119,75,-0.750271869448863],[114,119,76,-0.7499496760506019],[114,119,77,-0.749629873782181],[114,119,78,-0.7493124676484035],[114,119,79,-0.7489974625587359],[114,120,64,-0.7541183795816175],[114,120,65,-0.7537699516870429],[114,120,66,-0.7534238531263394],[114,120,67,-0.7530800899283183],[114,120,68,-0.752738668031208],[114,120,69,-0.7523995932822314],[114,120,70,-0.7520628714371695],[114,120,71,-0.7517285081599282],[114,120,72,-0.7513965090221036],[114,120,73,-0.7510668795025629],[114,120,74,-0.7507396249869953],[114,120,75,-0.7504147507674951],[114,120,76,-0.7500922620421304],[114,120,77,-0.7497721639145145],[114,120,78,-0.7494544613933798],[114,120,79,-0.7491391593921474],[114,121,64,-0.7542646386338427],[114,121,65,-0.7539159226298833],[114,121,66,-0.7535695353821956],[114,121,67,-0.7532254829232261],[114,121,68,-0.752883771194863],[114,121,69,-0.7525444060480151],[114,121,70,-0.7522073932421736],[114,121,71,-0.7518727384449798],[114,121,72,-0.7515404472317911],[114,121,73,-0.7512105250852606],[114,121,74,-0.7508829773948893],[114,121,75,-0.7505578094566081],[114,121,76,-0.7502350264723472],[114,121,77,-0.7499146335496074],[114,121,78,-0.7495966357010342],[114,121,79,-0.7492810378439875],[114,122,64,-0.7544110628558464],[114,122,65,-0.7540620598577611],[114,122,66,-0.753715385034398],[114,122,67,-0.7533710444218197],[114,122,68,-0.7530290439655566],[114,122,69,-0.7526893895201844],[114,122,70,-0.7523520868488869],[114,122,71,-0.7520171416230235],[114,122,72,-0.7516845594216943],[114,122,73,-0.7513543457313215],[114,122,74,-0.7510265059452],[114,122,75,-0.7507010453630806],[114,122,76,-0.7503779691907386],[114,122,77,-0.7500572825395457],[114,122,78,-0.7497389904260436],[114,122,79,-0.7494230977715146],[114,123,64,-0.7545576520634639],[114,123,65,-0.7542083631892054],[114,123,66,-0.7538614019041606],[114,123,67,-0.7535167742479906],[114,123,68,-0.7531744861698488],[114,123,69,-0.7528345435279602],[114,123,70,-0.7524969520891829],[114,123,71,-0.7521617175285761],[114,123,72,-0.751828845428966],[114,123,73,-0.7514983412805253],[114,123,74,-0.7511702104803261],[114,123,75,-0.7508444583319215],[114,123,76,-0.7505210900449153],[114,123,77,-0.750200110734533],[114,123,78,-0.7498815254211963],[114,123,79,-0.7495653390300929],[114,124,64,-0.7547044060707071],[114,124,65,-0.754354832440914],[114,124,66,-0.7540075858108599],[114,124,67,-0.753662672223785],[114,124,68,-0.7533200976324483],[114,124,69,-0.752979867898705],[114,124,70,-0.7526419887930696],[114,124,71,-0.7523064659942837],[114,124,72,-0.7519733050888808],[114,124,73,-0.7516425115707676],[114,124,74,-0.7513140908407754],[114,124,75,-0.7509880482062428],[114,124,76,-0.7506643888805844],[114,124,77,-0.7503431179828634],[114,124,78,-0.7500242405373643],[114,124,79,-0.7497077614731642],[114,125,64,-0.754851324689821],[114,125,65,-0.7545014674278115],[114,125,66,-0.754153936572092],[114,125,67,-0.7538087381694629],[114,125,68,-0.7534658781762701],[114,125,69,-0.753125362457981],[114,125,70,-0.7527871967887487],[114,125,71,-0.7524513868509782],[114,125,72,-0.7521179382348936],[114,125,73,-0.7517868564381174],[114,125,74,-0.7514581468652227],[114,125,75,-0.7511318148273164],[114,125,76,-0.7508078655416074],[114,125,77,-0.7504863041309787],[114,125,78,-0.7501671356235617],[114,125,79,-0.7498503649523058],[114,126,64,-0.754998407731266],[114,126,65,-0.7546482679630311],[114,126,66,-0.7543004540036542],[114,126,67,-0.7539549719034784],[114,126,68,-0.7536118276224171],[114,126,69,-0.7532710270295319],[114,126,70,-0.7529325759025955],[114,126,71,-0.7525964799276598],[114,126,72,-0.7522627446986203],[114,126,73,-0.7519313757167982],[114,126,74,-0.7516023783904914],[114,126,75,-0.7512757580345568],[114,126,76,-0.7509515198699811],[114,126,77,-0.7506296690234502],[114,126,78,-0.7503102105269253],[114,126,79,-0.7499931493172122],[114,127,64,-0.7551456550036988],[114,127,65,-0.7547952338578947],[114,127,66,-0.7544471379195268],[114,127,67,-0.754101373242461],[114,127,68,-0.7537579457901604],[114,127,69,-0.7534168614352622],[114,127,70,-0.753078125959141],[114,127,71,-0.7527417450514764],[114,127,72,-0.7524077243098186],[114,127,73,-0.752076069239169],[114,127,74,-0.7517467852515329],[114,127,75,-0.7514198776655006],[114,127,76,-0.7510953517058182],[114,127,77,-0.7507732125029585],[114,127,78,-0.7504534650926955],[114,127,79,-0.7501361144156741],[114,128,64,-0.7552930663140296],[114,128,65,-0.7549423649219718],[114,128,66,-0.7545939881319293],[114,128,67,-0.7542479420012737],[114,128,68,-0.7539042324969982],[114,128,69,-0.7535628654952974],[114,128,70,-0.7532238467811293],[114,128,71,-0.7528871820477834],[114,128,72,-0.7525528768964463],[114,128,73,-0.7522209368357825],[114,128,74,-0.7518913672814864],[114,128,75,-0.7515641735558647],[114,128,76,-0.7512393608874061],[114,128,77,-0.7509169344103525],[114,128,78,-0.750596899164274],[114,128,79,-0.7502792600936388],[114,129,64,-0.7554406414673962],[114,129,65,-0.7550896609630511],[114,129,66,-0.7547410044512953],[114,129,67,-0.7543946779929857],[114,129,68,-0.7540506875586277],[114,129,69,-0.7537090390279547],[114,129,70,-0.7533697381894899],[114,129,71,-0.7530327907401145],[114,129,72,-0.7526982022846337],[114,129,73,-0.7523659783353569],[114,129,74,-0.7520361243116502],[114,129,75,-0.7517086455395192],[114,129,76,-0.7513835472511781],[114,129,77,-0.7510608345846206],[114,129,78,-0.7507405125831966],[114,129,79,-0.7504225861951801],[114,130,64,-0.7555883802671866],[114,130,65,-0.7552371217871656],[114,130,66,-0.754888186686294],[114,130,67,-0.7545415810288956],[114,130,68,-0.7541973107889691],[114,130,69,-0.753855381849768],[114,130,70,-0.7535158000033622],[114,130,71,-0.7531785709502067],[114,130,72,-0.752843700298707],[114,130,73,-0.7525111935647998],[114,130,74,-0.7521810561715055],[114,130,75,-0.7518532934485107],[114,130,76,-0.7515279106317376],[114,130,77,-0.7512049128629157],[114,130,78,-0.7508843051891565],[114,130,79,-0.7505660925625236],[114,131,64,-0.7557362825150119],[114,131,65,-0.7553847471985642],[114,131,66,-0.7550355346438047],[114,131,67,-0.7546886509185047],[114,131,68,-0.7543441020001379],[114,131,69,-0.7540018937754592],[114,131,70,-0.7536620320400671],[114,131,71,-0.7533245224979717],[114,131,72,-0.7529893707611609],[114,131,73,-0.752656582349181],[114,131,74,-0.7523261626886888],[114,131,75,-0.7519981171130344],[114,131,76,-0.7516724508618309],[114,131,77,-0.7513491690805258],[114,131,78,-0.7510282768199761],[114,131,79,-0.750709779036018],[114,132,64,-0.7558843480107647],[114,132,65,-0.75553253699977],[114,132,66,-0.7551830481289731],[114,132,67,-0.7548358874695742],[114,132,68,-0.7544910610025032],[114,132,69,-0.7541485746179973],[114,132,70,-0.7538084341151654],[114,132,71,-0.7534706452015545],[114,132,72,-0.7531352134927167],[114,132,73,-0.7528021445117901],[114,132,74,-0.75247144368905],[114,132,75,-0.7521431163614924],[114,132,76,-0.7518171677724044],[114,132,77,-0.7514936030709337],[114,132,78,-0.7511724273116661],[114,132,79,-0.7508536454541933],[114,133,64,-0.7560325765525995],[114,133,65,-0.7556804909915612],[114,133,66,-0.7553307269451938],[114,133,67,-0.7549832904881073],[114,133,68,-0.7546381876046684],[114,133,69,-0.7542954241885789],[114,133,70,-0.7539550060424388],[114,133,71,-0.7536169388773142],[114,133,72,-0.7532812283123034],[114,133,73,-0.7529478798741174],[114,133,74,-0.7526168989966331],[114,133,75,-0.7522882910204749],[114,133,76,-0.7519620611925854],[114,133,77,-0.7516382146657965],[114,133,78,-0.7513167564984051],[114,133,79,-0.7509976916537416],[114,134,64,-0.7561809679369147],[114,134,65,-0.7558286089729526],[114,134,66,-0.7554785708940903],[114,134,67,-0.7551308597783286],[114,134,68,-0.7547854816134523],[114,134,69,-0.7544424422966087],[114,134,70,-0.7541017476338708],[114,134,71,-0.753763403339805],[114,134,72,-0.7534274150370374],[114,134,73,-0.7530937882558348],[114,134,74,-0.7527625284336571],[114,134,75,-0.7524336409147396],[114,134,76,-0.7521071309496634],[114,134,77,-0.7517830036949268],[114,134,78,-0.7514612642125207],[114,134,79,-0.751141917469498],[114,135,64,-0.7563295219584097],[114,135,65,-0.7559768907412532],[114,135,66,-0.7556265797755737],[114,135,67,-0.7552785951427436],[114,135,68,-0.7549329428339473],[114,135,69,-0.7545896287497584],[114,135,70,-0.7542486586997044],[114,135,71,-0.7539100384018337],[114,135,72,-0.7535737734822822],[114,135,73,-0.7532398694748539],[114,135,74,-0.7529083318205743],[114,135,75,-0.7525791658672714],[114,135,76,-0.7522523768691478],[114,135,77,-0.7519279699863507],[114,135,78,-0.7516059502845479],[114,135,79,-0.7512863227344977],[114,136,64,-0.756478238410058],[114,136,65,-0.7561253360920387],[114,136,66,-0.7557747533878146],[114,136,67,-0.7554264963821108],[114,136,68,-0.7550805710694914],[114,136,69,-0.7547369833539385],[114,136,70,-0.754395739048415],[114,136,71,-0.7540568438744327],[114,136,72,-0.7537203034616192],[114,136,73,-0.753386123347298],[114,136,74,-0.7530543089760415],[114,136,75,-0.7527248656992537],[114,136,76,-0.7523977987747402],[114,136,77,-0.7520731133662801],[114,136,78,-0.751750814543201],[114,136,79,-0.7514309072799494],[114,137,64,-0.7566271170831307],[114,137,65,-0.7562739448191755],[114,137,66,-0.7559230915272673],[114,137,67,-0.7555745632954646],[114,137,68,-0.7552283661216925],[114,137,69,-0.7548845059133221],[114,137,70,-0.7545429884867334],[114,137,71,-0.7542038195668836],[114,137,72,-0.753867004786873],[114,137,73,-0.7535325496875264],[114,137,74,-0.7532004597169455],[114,137,75,-0.7528707402300923],[114,137,76,-0.752543396488358],[114,137,77,-0.7522184336591362],[114,137,78,-0.7518958568153971],[114,137,79,-0.7515756709352581],[114,138,64,-0.7567761577671689],[114,138,65,-0.756422716714793],[114,138,66,-0.7560715939886421],[114,138,67,-0.7557227956800885],[114,138,68,-0.7553763277904],[114,138,69,-0.7550321962303173],[114,138,70,-0.754690406819619],[114,138,71,-0.7543509652866887],[114,138,72,-0.7540138772680816],[114,138,73,-0.7536791483081053],[114,138,74,-0.7533467838583733],[114,138,75,-0.7530167892773869],[114,138,76,-0.7526891698301063],[114,138,77,-0.7523639306875213],[114,138,78,-0.7520410769262278],[114,138,79,-0.7517206135279972],[114,139,64,-0.7569253602500423],[114,139,65,-0.7565716515693416],[114,139,66,-0.7562202605649629],[114,139,67,-0.7558711933315734],[114,139,68,-0.7555244558737633],[114,139,69,-0.7551800541056253],[114,139,70,-0.7548379938503171],[114,139,71,-0.7544982808396301],[114,139,72,-0.7541609207135561],[114,139,73,-0.7538259190198676],[114,139,74,-0.7534932812136714],[114,139,75,-0.7531630126569907],[114,139,76,-0.7528351186183362],[114,139,77,-0.7525096042722774],[114,139,78,-0.7521864746990181],[114,139,79,-0.7518657348839668],[114,140,64,-0.7570747243179294],[114,140,65,-0.756720749171574],[114,140,66,-0.756369091047549],[114,140,67,-0.7560197560437973],[114,140,68,-0.7556727501682132],[114,140,69,-0.7553280793382211],[114,140,70,-0.7549857493803398],[114,140,71,-0.75464576602975],[114,140,72,-0.7543081349298613],[114,140,73,-0.7539728616318927],[114,140,74,-0.7536399515944263],[114,140,75,-0.7533094101829896],[114,140,76,-0.7529812426696261],[114,140,77,-0.7526554542324669],[114,140,78,-0.752332049955307],[114,140,79,-0.7520110348271742],[114,141,64,-0.7572242497552991],[114,141,65,-0.7568700093085253],[114,141,66,-0.7565180852259954],[114,141,67,-0.7561684836089079],[114,141,68,-0.7558212104684416],[114,141,69,-0.7554762717253346],[114,141,70,-0.7551336732094475],[114,141,71,-0.7547934206593313],[114,141,72,-0.7544555197217953],[114,141,73,-0.7541199759514867],[114,141,74,-0.7537867948104447],[114,141,75,-0.7534559816676831],[114,141,76,-0.7531275417987605],[114,141,77,-0.7528014803853524],[114,141,78,-0.7524778025148267],[114,141,79,-0.7521565131798144],[114,142,64,-0.7573739363449684],[114,142,65,-0.7570194317655723],[114,142,66,-0.7566672428882306],[114,142,67,-0.7563173758173787],[114,142,68,-0.7559698365674605],[114,142,69,-0.7556246310625085],[114,142,70,-0.7552817651357059],[114,142,71,-0.7549412445289561],[114,142,72,-0.7546030748924489],[114,142,73,-0.7542672617842417],[114,142,74,-0.7539338106698127],[114,142,75,-0.7536027269216435],[114,142,76,-0.7532740158187904],[114,142,77,-0.7529476825464554],[114,142,78,-0.7526237321955624],[114,142,79,-0.752302169762328],[114,143,64,-0.7575237838680748],[114,143,65,-0.7571690163264048],[114,143,66,-0.7568165638204899],[114,143,67,-0.7564664324579828],[114,143,68,-0.7561186282565739],[114,143,69,-0.7557731571435703],[114,143,70,-0.7554300249554593],[114,143,71,-0.7550892374374777],[114,143,72,-0.7547508002431773],[114,143,73,-0.7544147189340074],[114,143,74,-0.7540809989788664],[114,143,75,-0.7537496457536866],[114,143,76,-0.7534206645410036],[114,143,77,-0.7530940605295285],[114,143,78,-0.7527698388137238],[114,143,79,-0.7524480043933738],[114,144,64,-0.7576737921041006],[114,144,65,-0.7573187627730498],[114,144,66,-0.7569660478073383],[114,144,67,-0.7566156533178168],[114,144,68,-0.7562675853254017],[114,144,69,-0.7559218497606566],[114,144,70,-0.7555784524633538],[114,144,71,-0.7552373991820442],[114,144,72,-0.7548986955736235],[114,144,73,-0.7545623472029142],[114,144,74,-0.754228359542217],[114,144,75,-0.7538967379708965],[114,144,76,-0.7535674877749496],[114,144,77,-0.7532406141465791],[114,144,78,-0.7529161221837681],[114,144,79,-0.7525940168898522],[114,145,64,-0.7578239608308441],[114,145,65,-0.7574686708858435],[114,145,66,-0.7571156946316431],[114,145,67,-0.7567650381822708],[114,145,68,-0.7564167075618515],[114,145,69,-0.7560707087041847],[114,145,70,-0.7557270474523089],[114,145,71,-0.7553857295580706],[114,145,72,-0.7550467606816907],[114,145,73,-0.7547101463913458],[114,145,74,-0.7543758921627215],[114,145,75,-0.754044003378596],[114,145,76,-0.7537144853284101],[114,145,77,-0.7533873432078398],[114,145,78,-0.7530625821183724],[114,145,79,-0.7527402070668759],[114,146,64,-0.757974289824479],[114,146,65,-0.7576187404434902],[114,146,66,-0.7572655040746317],[114,146,67,-0.7569145868350899],[114,146,68,-0.7565659947521773],[114,146,69,-0.7562197337629111],[114,146,70,-0.7558758097135767],[114,146,71,-0.7555342283592974],[114,146,72,-0.7551949953636002],[114,146,73,-0.7548581162979979],[114,146,74,-0.7545235966415422],[114,146,75,-0.7541914417804069],[114,146,76,-0.7538616570074586],[114,146,77,-0.7535342475218292],[114,146,78,-0.7532092184284915],[114,146,79,-0.7528865747378303],[114,147,64,-0.7581247788595343],[114,147,65,-0.7577689712230423],[114,147,66,-0.7574154759158731],[114,147,67,-0.757064299058352],[114,147,68,-0.7567154466809598],[114,147,69,-0.756368924723912],[114,147,70,-0.756024739036722],[114,147,71,-0.7556828953777706],[114,147,72,-0.7553433994138725],[114,147,73,-0.7550062567198581],[114,147,74,-0.7546714727781264],[114,147,75,-0.754339052978229],[114,147,76,-0.7540090026164403],[114,147,77,-0.7536813268953302],[114,147,78,-0.7533560309233398],[114,147,79,-0.7530331197143522],[114,148,64,-0.7582754277088756],[114,148,65,-0.7579193629998813],[114,148,66,-0.7575656099332578],[114,148,67,-0.7572141746324499],[114,148,68,-0.7568650631310874],[114,148,69,-0.7565182813725643],[114,148,70,-0.7561738352096028],[114,148,71,-0.7558317304038227],[114,148,72,-0.7554919726253073],[114,148,73,-0.7551545674521859],[114,148,74,-0.7548195203701868],[114,148,75,-0.754486836772221],[114,148,76,-0.7541565219579525],[114,148,77,-0.7538285811333713],[114,148,78,-0.753503019410369],[114,148,79,-0.7531798418063103],[114,149,64,-0.758426236143763],[114,149,65,-0.7580699155477759],[114,149,66,-0.7577159059030568],[114,149,67,-0.7573642133361499],[114,149,68,-0.7570148438838142],[114,149,69,-0.7566678034926033],[114,149,70,-0.7563230980184291],[114,149,71,-0.755980733226131],[114,149,72,-0.7556407147890423],[114,149,73,-0.7553030482885725],[114,149,74,-0.7549677392137607],[114,149,75,-0.7546347929608589],[114,149,76,-0.7543042148329029],[114,149,77,-0.7539760100392849],[114,149,78,-0.7536501836953294],[114,149,79,-0.7533267408218646],[114,150,64,-0.7585772039338325],[114,150,65,-0.7582206286388635],[114,150,66,-0.7578663635999019],[114,150,67,-0.7575144149465713],[114,150,68,-0.7571647887187409],[114,150,69,-0.7568174908661041],[114,150,70,-0.7564725272477433],[114,150,71,-0.7561299036316981],[114,150,72,-0.7557896256945333],[114,150,73,-0.7554516990209202],[114,150,74,-0.7551161291031898],[114,150,75,-0.7547829213409167],[114,150,76,-0.7544520810404907],[114,150,77,-0.754123613414688],[114,150,78,-0.7537975235822484],[114,150,79,-0.7534738165674459],[114,151,64,-0.7587283308470757],[114,151,65,-0.7583715020436299],[114,151,66,-0.7580169827967662],[114,151,67,-0.7576647792391682],[114,151,68,-0.7573148974137953],[114,151,69,-0.7569673432734614],[114,151,70,-0.7566221226803999],[114,151,71,-0.7562792414058321],[114,151,72,-0.7559387051295352],[114,151,73,-0.7556005194394231],[114,151,74,-0.7552646898311003],[114,151,75,-0.7549312217074463],[114,151,76,-0.7546001203781859],[114,151,77,-0.7542713910594617],[114,151,78,-0.753945038873411],[114,151,79,-0.7536210688477362],[114,152,64,-0.758879616649899],[114,152,65,-0.7585225355309679],[114,152,66,-0.7581677632650228],[114,152,67,-0.757815305987787],[114,152,68,-0.7574651697452903],[114,152,69,-0.7571173604934481],[114,152,70,-0.7567718840976253],[114,152,71,-0.7564287463322059],[114,152,72,-0.7560879528801598],[114,152,73,-0.7557495093326254],[114,152,74,-0.7554134211884624],[114,152,75,-0.7550796938538361],[114,152,76,-0.7547483326417884],[114,152,77,-0.7544193427718106],[114,152,78,-0.7540927293694191],[114,152,79,-0.7537684974657272],[114,153,64,-0.7590310611070954],[114,153,65,-0.7586737288681499],[114,153,66,-0.7583187047744164],[114,153,67,-0.7579659949646386],[114,153,68,-0.7576156054878967],[114,153,69,-0.7572675423031877],[114,153,70,-0.7569218112789889],[114,153,71,-0.7565784181928276],[114,153,72,-0.7562373687308481],[114,153,73,-0.7558986684873938],[114,153,74,-0.755562322964561],[114,153,75,-0.7552283375717828],[114,153,76,-0.7548967176253998],[114,153,77,-0.7545674683482334],[114,153,78,-0.7542405948691621],[114,153,79,-0.753916102222692],[114,154,64,-0.759182663981868],[114,154,65,-0.7588250818208511],[114,154,66,-0.7584698070930881],[114,154,67,-0.7581168459403227],[114,154,68,-0.7577662044146662],[114,154,69,-0.7574178884781776],[114,154,70,-0.757071904002427],[114,154,71,-0.7567282567680658],[114,154,72,-0.7563869524643938],[114,154,73,-0.7560479966889406],[114,154,74,-0.7557113949470203],[114,154,75,-0.7553771526513151],[114,154,76,-0.7550452751214465],[114,154,77,-0.754715767583548],[114,154,78,-0.7543886351698414],[114,154,79,-0.7540638829182089],[114,155,64,-0.7593344250358021],[114,155,65,-0.7589765941531214],[114,155,66,-0.7586210699875455],[114,155,67,-0.7582678586837985],[114,155,68,-0.7579169662970031],[114,155,69,-0.7575683987922602],[114,155,70,-0.7572221620442139],[114,155,71,-0.7568782618366201],[114,155,72,-0.7565367038619147],[114,155,73,-0.7561974937207951],[114,155,74,-0.7558606369217744],[114,155,75,-0.7555261388807655],[114,155,76,-0.7551940049206518],[114,155,77,-0.7548642402708613],[114,155,78,-0.7545368500669416],[114,155,79,-0.7542118393501321],[114,156,64,-0.7594863440289241],[114,156,65,-0.7591282656274441],[114,156,66,-0.758772493222723],[114,156,67,-0.7584190329624448],[114,156,68,-0.7580678909047238],[114,156,69,-0.7577190730176834],[114,156,70,-0.7573725851790217],[114,156,71,-0.7570284331755803],[114,156,72,-0.7566866227029121],[114,156,73,-0.7563471593648632],[114,156,74,-0.7560100486731268],[114,156,75,-0.7556752960468279],[114,156,76,-0.7553429068120944],[114,156,77,-0.7550128862016293],[114,156,78,-0.7546852393542886],[114,156,79,-0.7543599713146516],[114,157,64,-0.7596384207196818],[114,157,65,-0.7592800960047168],[114,157,66,-0.7589240765619613],[114,157,67,-0.7585703685420392],[114,157,68,-0.7582189780060362],[114,157,69,-0.7578699109250789],[114,157,70,-0.7575231731798999],[114,157,71,-0.7571787705604068],[114,157,72,-0.7568367087652506],[114,157,73,-0.7564969934014067],[114,157,74,-0.7561596299837303],[114,157,75,-0.7558246239345399],[114,157,76,-0.7554919805831882],[114,157,77,-0.7551617051656367],[114,157,78,-0.7548338028240308],[114,157,79,-0.754508278606272],[114,158,64,-0.7597906548649243],[114,158,65,-0.7594320850442309],[114,158,66,-0.7590758197669876],[114,158,67,-0.7587218651867385],[114,158,68,-0.7583702273675205],[114,158,69,-0.7580209122834436],[114,158,70,-0.7576739258182554],[114,158,71,-0.7573292737649103],[114,158,72,-0.7569869618251377],[114,158,73,-0.756646995609024],[114,158,74,-0.7563093806345671],[114,158,75,-0.75597412232726],[114,158,76,-0.7556412260196631],[114,158,77,-0.7553106969509767],[114,158,78,-0.7549825402666182],[114,158,79,-0.7546567610177932],[114,159,64,-0.7599430462199614],[114,159,65,-0.7595842325037311],[114,159,66,-0.7592277225979754],[114,159,67,-0.7588735226591381],[114,159,68,-0.758521638754188],[114,159,69,-0.7581720768601984],[114,159,70,-0.757824842863912],[114,159,71,-0.7574799425613109],[114,159,72,-0.7571373816571839],[114,159,73,-0.7567971657647089],[114,159,74,-0.7564593004050076],[114,159,75,-0.7561237910067294],[114,159,76,-0.7557906429056233],[114,159,77,-0.7554598613441104],[114,159,78,-0.7551314514708619],[114,159,79,-0.7548054183403698],[114,160,64,-0.7600955945385351],[114,160,65,-0.7597365381393867],[114,160,66,-0.759379784813515],[114,160,67,-0.7590253407202436],[114,160,68,-0.7586732119294526],[114,160,69,-0.7583234044211592],[114,160,70,-0.7579759240850817],[114,160,71,-0.7576307767202101],[114,160,72,-0.7572879680343731],[114,160,73,-0.7569475036438217],[114,160,74,-0.7566093890727821],[114,160,75,-0.7562736297530414],[114,160,76,-0.7559402310235184],[114,160,77,-0.7556091981298374],[114,160,78,-0.7552805362239047],[114,160,79,-0.7549542503634808],[114,161,64,-0.7602482995728436],[114,161,65,-0.7598890017058156],[114,161,66,-0.759532006170638],[114,161,67,-0.7591773191294937],[114,161,68,-0.7588249466551545],[114,161,69,-0.7584748947305611],[114,161,70,-0.758127169248388],[114,161,71,-0.7577817760106134],[114,161,72,-0.757438720728087],[114,161,73,-0.7570980090201131],[114,161,74,-0.7567596464140042],[114,161,75,-0.7564236383446656],[114,161,76,-0.7560899901541681],[114,161,77,-0.7557587070913202],[114,161,78,-0.7554297943112456],[114,161,79,-0.7551032568749552],[114,162,64,-0.7604011610735122],[114,162,65,-0.7600416229560557],[114,162,66,-0.7596843864247885],[114,162,67,-0.7593294576447328],[114,162,68,-0.7589768426915318],[114,162,69,-0.7586265475510297],[114,162,70,-0.7582785781188377],[114,162,71,-0.7579329401999026],[114,162,72,-0.757589639508076],[114,162,73,-0.7572486816656959],[114,162,74,-0.756910072203142],[114,162,75,-0.7565738165584197],[114,162,76,-0.7562399200767326],[114,162,77,-0.7559083880100552],[114,162,78,-0.7555792255167102],[114,162,79,-0.7552524376609409],[114,163,64,-0.7605541787896533],[114,163,65,-0.760194401641624],[114,163,66,-0.7598369253298825],[114,163,67,-0.7594817560222693],[114,163,68,-0.7591288997972792],[114,163,69,-0.7587783626436403],[114,163,70,-0.7584301504598802],[114,163,71,-0.7580842690538949],[114,163,72,-0.7577407241425183],[114,163,73,-0.7573995213511033],[114,163,74,-0.7570606662130777],[114,163,75,-0.7567241641695279],[114,163,76,-0.7563900205687718],[114,163,77,-0.7560582406659314],[114,163,78,-0.7557288296225104],[114,163,79,-0.7554017925059662],[114,164,64,-0.7607073524688456],[114,164,65,-0.760347337512497],[114,164,66,-0.7599896226382873],[114,164,67,-0.759634214016856],[114,164,68,-0.7592811177295288],[114,164,69,-0.7589303397678977],[114,164,70,-0.7585818860333869],[114,164,71,-0.7582357623368224],[114,164,72,-0.7578919743980004],[114,164,73,-0.7575505278452697],[114,164,74,-0.757211428215087],[114,164,75,-0.7568746809516012],[114,164,76,-0.7565402914062255],[114,164,77,-0.7562082648372109],[114,164,78,-0.7558786064092239],[114,164,79,-0.755551321192918],[114,165,64,-0.7608606818571151],[114,165,65,-0.7605004303170899],[114,165,66,-0.7601424781008025],[114,165,67,-0.75978683138167],[114,165,68,-0.7594334962438293],[114,165,69,-0.7590824786817162],[114,165,70,-0.7587337845996318],[114,165,71,-0.7583874198113121],[114,165,72,-0.7580433900394962],[114,165,73,-0.7577017009155098],[114,165,74,-0.7573623579788193],[114,165,75,-0.7570253666766169],[114,165,76,-0.7566907323633926],[114,165,77,-0.756358460300508],[114,165,78,-0.7560285556557739],[114,165,79,-0.7557010235030217],[114,166,64,-0.7610141666989937],[114,166,65,-0.7606536798023171],[114,166,66,-0.7602954914667183],[114,166,67,-0.759939607868372],[114,166,68,-0.7595860350942057],[114,166,69,-0.7592347791414791],[114,166,70,-0.7588858459173501],[114,166,71,-0.7585392412384451],[114,166,72,-0.7581949708304271],[114,166,73,-0.7578530403275785],[114,166,74,-0.7575134552723568],[114,166,75,-0.7571762211149782],[114,166,76,-0.7568413432129911],[114,166,77,-0.7565088268308491],[114,166,78,-0.7561786771394886],[114,166,79,-0.7558508992159012],[114,167,64,-0.7611678067374905],[114,167,65,-0.7608070857135624],[114,167,66,-0.7604486624837873],[114,167,67,-0.7600925432270774],[114,167,68,-0.7597387340331303],[114,167,69,-0.7593872409020095],[114,167,70,-0.7590380697437098],[114,167,71,-0.7586912263777283],[114,167,72,-0.7583467165326321],[114,167,73,-0.7580045458456413],[114,167,74,-0.757664719862185],[114,167,75,-0.7573272440354849],[114,167,76,-0.7569921237261286],[114,167,77,-0.756659364201643],[114,167,78,-0.756328970636072],[114,167,79,-0.7560009481095489],[114,168,64,-0.7613216017141162],[114,168,65,-0.7609606477947034],[114,168,66,-0.7606019908982485],[114,168,67,-0.7602456372063805],[114,168,68,-0.7598915928115467],[114,168,69,-0.7595398637165943],[114,168,70,-0.7591904558343354],[114,168,71,-0.7588433749871176],[114,168,72,-0.7584986269063925],[114,168,73,-0.7581562172322989],[114,168,74,-0.7578161515132178],[114,168,75,-0.7574784352053574],[114,168,76,-0.757143073672326],[114,168,77,-0.7568100721847051],[114,168,78,-0.7564794359196275],[114,168,79,-0.75615116996035],[114,169,64,-0.7614755513688538],[114,169,65,-0.7611143657880826],[114,169,66,-0.760755476454798],[114,169,67,-0.760398889553325],[114,169,68,-0.7600446111788408],[114,169,69,-0.7596926473369557],[114,169,70,-0.759343003943279],[114,169,71,-0.7589956868229891],[114,169,72,-0.7586507017104026],[114,169,73,-0.7583080542485572],[114,169,74,-0.7579677499887671],[114,169,75,-0.7576297943902077],[114,169,76,-0.757294192819489],[114,169,77,-0.7569609505502283],[114,169,78,-0.7566300727626292],[114,169,79,-0.7563015645430533],[114,170,64,-0.7616296554402183],[114,170,65,-0.7612682394345667],[114,170,66,-0.7609091188966487],[114,170,67,-0.7605523000134644],[114,170,68,-0.7601977888829005],[114,170,69,-0.75984559151331],[114,170,70,-0.7594957138230796],[114,170,71,-0.7591481616401986],[114,170,72,-0.7588029407018291],[114,170,73,-0.7584600566538879],[114,170,74,-0.7581195150506033],[114,170,75,-0.7577813213540987],[114,170,76,-0.7574454809339667],[114,170,77,-0.7571119990668422],[114,170,78,-0.7567808809359806],[114,170,79,-0.7564521316308306],[114,171,64,-0.7617839136652365],[114,171,65,-0.761422268473527],[114,171,66,-0.7610629179655101],[114,171,67,-0.7607058683308409],[114,171,68,-0.7603511256700947],[114,171,69,-0.7599986959943476],[114,171,70,-0.759648585224743],[114,171,71,-0.7593007991920615],[114,171,72,-0.7589553436362907],[114,171,73,-0.7586122242062074],[114,171,74,-0.7582714464589341],[114,171,75,-0.7579330158595237],[114,171,76,-0.757596937780532],[114,171,77,-0.757263217501593],[114,171,78,-0.7569318602089952],[114,171,79,-0.7566028709952559],[114,172,64,-0.7619383257794268],[114,172,65,-0.7615764526428181],[114,172,66,-0.761216873401568],[114,172,67,-0.7608595942479655],[114,172,68,-0.7605046212852542],[114,172,69,-0.7601519605272127],[114,172,70,-0.7598016178977214],[114,172,71,-0.759453599230332],[114,172,72,-0.7591079102678379],[114,172,73,-0.7587645566618562],[114,172,74,-0.7584235439723847],[114,172,75,-0.7580848776673859],[114,172,76,-0.7577485631223607],[114,172,77,-0.7574146056199227],[114,172,78,-0.7570830103493751],[114,172,79,-0.7567537824062853],[114,173,64,-0.7620928915168588],[114,173,65,-0.7617307916788388],[114,173,66,-0.7613709849435443],[114,173,67,-0.7610134775058776],[114,173,68,-0.7606582754717304],[114,173,69,-0.7603053848575632],[114,173,70,-0.7599548115899729],[114,173,71,-0.759606561505263],[114,173,72,-0.7592606403490124],[114,173,73,-0.7589170537756593],[114,173,74,-0.758575807348057],[114,173,75,-0.7582369065370587],[114,173,76,-0.7579003567210911],[114,173,77,-0.7575661631857286],[114,173,78,-0.7572343311232708],[114,173,79,-0.7569048656323167],[114,174,64,-0.7622476106101242],[114,174,65,-0.7618852853165019],[114,174,66,-0.7615252523286675],[114,174,67,-0.7611675178441162],[114,174,68,-0.7608120879713662],[114,174,69,-0.7604589687295407],[114,174,70,-0.7601081660479327],[114,174,71,-0.7597596857655768],[114,174,72,-0.7594135336308181],[114,174,73,-0.7590697153008963],[114,174,74,-0.7587282363415004],[114,174,75,-0.7583891022263555],[114,174,76,-0.7580523183367947],[114,174,77,-0.7577178899613344],[114,174,78,-0.7573858222952521],[114,174,79,-0.7570561204401597],[114,175,64,-0.762402482790361],[114,175,65,-0.7620399332892589],[114,175,66,-0.7616796752926972],[114,175,67,-0.7613217150007427],[114,175,68,-0.760966058524521],[114,175,69,-0.7606127118857957],[114,175,70,-0.7602616810165366],[114,175,71,-0.7599129717584893],[114,175,72,-0.7595665898627453],[114,175,73,-0.7592225409893256],[114,175,74,-0.7588808307067363],[114,175,75,-0.7585414644915541],[114,175,76,-0.7582044477280002],[114,175,77,-0.757869785707514],[114,175,78,-0.7575374836283317],[114,175,79,-0.7572075465950601],[114,176,64,-0.7625575077872244],[114,176,65,-0.7621947353290708],[114,176,66,-0.7618342535698945],[114,176,67,-0.7614760687123138],[114,176,68,-0.7611201868700398],[114,176,69,-0.7607666140674573],[114,176,70,-0.7604153562391917],[114,176,71,-0.7600664192296801],[114,176,72,-0.7597198087927404],[114,176,73,-0.759375530591155],[114,176,74,-0.7590335901962274],[114,176,75,-0.7586939930873673],[114,176,76,-0.7583567446516641],[114,176,77,-0.7580218501834616],[114,176,78,-0.757689314883936],[114,176,79,-0.75735914386067],[114,177,64,-0.762712685328946],[114,177,65,-0.7623496911664671],[114,177,66,-0.761988986893082],[114,177,67,-0.7616305787139389],[114,177,68,-0.7612744727453142],[114,177,69,-0.7609206750141931],[114,177,70,-0.7605691914578367],[114,177,71,-0.7602200279233531],[114,177,72,-0.7598731901672664],[114,177,73,-0.7595286838551014],[114,177,74,-0.759186514560939],[114,177,75,-0.7588466877670024],[114,177,76,-0.7585092088632304],[114,177,77,-0.7581740831468518],[114,177,78,-0.7578413158219642],[114,177,79,-0.7575109119991081],[114,178,64,-0.7628680151423138],[114,178,65,-0.7625048005305267],[114,178,66,-0.7621438749936233],[114,178,67,-0.7617852447392613],[114,178,68,-0.7614289158862617],[114,178,69,-0.7610748944641894],[114,178,70,-0.7607231864129209],[114,178,71,-0.760373797582215],[114,178,72,-0.7600267337312825],[114,178,73,-0.7596820005283702],[114,178,74,-0.7593396035503173],[114,178,75,-0.7589995482821408],[114,178,76,-0.7586618401166095],[114,178,77,-0.7583264843538189],[114,178,78,-0.7579934862007689],[114,178,79,-0.7576628507709385],[114,179,64,-0.7630234969526525],[114,179,65,-0.7626600631488563],[114,179,66,-0.7622989176014026],[114,179,67,-0.7619400665204372],[114,179,68,-0.7615835160273049],[114,179,69,-0.76122927215413],[114,179,70,-0.7608773408433838],[114,179,71,-0.7605277279474557],[114,179,72,-0.760180439228223],[114,179,73,-0.759835480356635],[114,179,74,-0.759492856912269],[114,179,75,-0.7591525743829171],[114,179,76,-0.7588146381641585],[114,179,77,-0.7584790535589362],[114,179,78,-0.7581458257771335],[114,179,79,-0.75781495993515],[114,180,64,-0.7631791304838818],[114,180,65,-0.7628154787476508],[114,180,66,-0.7624541144448842],[114,180,67,-0.7620950437881953],[114,180,68,-0.7617382729014316],[114,180,69,-0.7613838078192562],[114,180,70,-0.7610316544867148],[114,180,71,-0.7606818187588074],[114,180,72,-0.7603343064000574],[114,180,73,-0.7599891230840967],[114,180,74,-0.7596462743932217],[114,180,75,-0.7593057658179792],[114,180,76,-0.7589676027567404],[114,180,77,-0.7586317905152757],[114,180,78,-0.7582983343063341],[114,180,79,-0.7579672392492158],[114,181,64,-0.7633349154584883],[114,181,65,-0.762971047051664],[114,181,66,-0.7626094652510838],[114,181,67,-0.7622501762718077],[114,181,68,-0.7618931862401652],[114,181,69,-0.7615385011933375],[114,181,70,-0.7611861270789242],[114,181,71,-0.7608360697545153],[114,181,72,-0.7604883349872609],[114,181,73,-0.7601429284534552],[114,181,74,-0.7597998557380937],[114,181,75,-0.7594591223344589],[114,181,76,-0.7591207336436943],[114,181,77,-0.7587846949743792],[114,181,78,-0.7584510115421083],[114,181,79,-0.7581196884690649],[114,182,64,-0.7634908515975495],[114,182,65,-0.7631267677842322],[114,182,66,-0.762764969745592],[114,182,67,-0.7624054636991141],[114,182,68,-0.7620482557735891],[114,182,69,-0.7616933520086956],[114,182,70,-0.7613407583545667],[114,182,71,-0.7609904806713621],[114,182,72,-0.7606425247288382],[114,182,73,-0.760296896205932],[114,182,74,-0.7599536006903181],[114,182,75,-0.7596126436779953],[114,182,76,-0.7592740305728598],[114,182,77,-0.7589377666862808],[114,182,78,-0.7586038572366798],[114,182,79,-0.7582723073491042],[114,183,64,-0.7636469386207037],[114,183,65,-0.7632826406672454],[114,183,66,-0.7629206276525452],[114,183,67,-0.7625609057964919],[114,183,68,-0.7622034812303168],[114,183,69,-0.7618483599961747],[114,183,70,-0.7614955480467122],[114,183,71,-0.7611450512446379],[114,183,72,-0.7607968753622945],[114,183,73,-0.7604510260812416],[114,183,74,-0.7601075089918137],[114,183,75,-0.7597663295927056],[114,183,76,-0.7594274932905473],[114,183,77,-0.7590910053994784],[114,183,78,-0.7587568711407287],[114,183,79,-0.7584250956421904],[114,184,64,-0.7638031762462105],[114,184,65,-0.7634386654212072],[114,184,66,-0.7630764386946852],[114,184,67,-0.7627165022889166],[114,184,68,-0.762358862337552],[114,184,69,-0.762003524885202],[114,184,70,-0.7616504958870053],[114,184,71,-0.7612997812082001],[114,184,72,-0.7609513866236947],[114,184,73,-0.7606053178176512],[114,184,74,-0.760261580383044],[114,184,75,-0.7599201798212449],[114,184,76,-0.7595811215415976],[114,184,77,-0.7592444108609937],[114,184,78,-0.758910053003451],[114,184,79,-0.7585780530996891],[114,185,64,-0.7639595641909303],[114,185,65,-0.7635948417652134],[114,185,66,-0.763232402593339],[114,185,67,-0.7628722528999409],[114,185,68,-0.762514398821068],[114,185,69,-0.7621588464037661],[114,185,70,-0.7618056016056456],[114,185,71,-0.7614546702944531],[114,185,72,-0.7611060582476428],[114,185,73,-0.7607597711519596],[114,185,74,-0.7604158146029975],[114,185,75,-0.7600741941047854],[114,185,76,-0.7597349150693619],[114,185,77,-0.7593979828163504],[114,185,78,-0.7590634025725389],[114,185,79,-0.7587311794714542],[114,186,64,-0.7641161021703032],[114,186,65,-0.7637511694169324],[114,186,66,-0.7633885190683978],[114,186,67,-0.763028157351674],[114,186,68,-0.7626700904051871],[114,186,69,-0.7623143242783972],[114,186,70,-0.7619608649313657],[114,186,71,-0.7616097182343277],[114,186,72,-0.761260889967262],[114,186,73,-0.7609143858194769],[114,186,74,-0.7605702113891658],[114,186,75,-0.7602283721829955],[114,186,76,-0.7598888736156796],[114,186,77,-0.7595517210095544],[114,186,78,-0.7592169195941583],[114,186,79,-0.7588844745058068],[114,187,64,-0.7642727898984097],[114,187,65,-0.7639076480926648],[114,187,66,-0.7635447878383774],[114,187,67,-0.7631842153648418],[114,187,68,-0.7628259368128404],[114,187,69,-0.7624699582342267],[114,187,70,-0.7621162855914922],[114,187,71,-0.7617649247573399],[114,187,72,-0.7614158815142538],[114,187,73,-0.7610691615540841],[114,187,74,-0.7607247704776048],[114,187,75,-0.7603827137941003],[114,187,76,-0.7600429969209396],[114,187,77,-0.7597056251831527],[114,187,78,-0.7593706038130096],[114,187,79,-0.7590379379495953],[114,188,64,-0.7644296270879497],[114,188,65,-0.7640642775073223],[114,188,66,-0.7637012086203971],[114,188,67,-0.7633404266587663],[114,188,68,-0.7629819377655476],[114,188,69,-0.7626257479949665],[114,188,70,-0.7622718633119248],[114,188,71,-0.761920289591572],[114,188,72,-0.7615710326188772],[114,188,73,-0.7612240980882128],[114,188,74,-0.7608794916029129],[114,188,75,-0.7605372186748599],[114,188,76,-0.7601972847240589],[114,188,77,-0.7598596950782139],[114,188,78,-0.7595244549723073],[114,188,79,-0.7591915695481748],[114,189,64,-0.7645866134502217],[114,189,65,-0.7642210573744082],[114,189,66,-0.7638577811301596],[114,189,67,-0.7634967909513447],[114,189,68,-0.7631380929833953],[114,189,69,-0.7627816932828885],[114,189,70,-0.7624275978171147],[114,189,71,-0.7620758124636503],[114,189,72,-0.7617263430099284],[114,189,73,-0.7613791951528237],[114,189,74,-0.7610343744982107],[114,189,75,-0.7606918865605493],[114,189,76,-0.7603517367624616],[114,189,77,-0.760013930434306],[114,189,78,-0.7596784728137582],[114,189,79,-0.7593453690453857],[114,190,64,-0.7647437486951831],[114,190,65,-0.7643779874060763],[114,190,66,-0.7640145050820104],[114,190,67,-0.7636533079591095],[114,190,68,-0.7632944021850981],[114,190,69,-0.7629377938188842],[114,190,70,-0.7625834888301258],[114,190,71,-0.7622314930988058],[114,190,72,-0.7618818124148008],[114,190,73,-0.7615344524774676],[114,190,74,-0.7611894188952004],[114,190,75,-0.7608467171850182],[114,190,76,-0.7605063527721391],[114,190,77,-0.7601683309895573],[114,190,78,-0.759832657077622],[114,190,79,-0.7594993361836136],[114,191,64,-0.7649010325314206],[114,191,65,-0.7645350673131018],[114,191,66,-0.7641713801889084],[114,191,67,-0.7638099773971986],[114,191,68,-0.7634508650879684],[114,191,69,-0.7630940493224352],[114,191,70,-0.7627395360726046],[114,191,71,-0.7623873312208445],[114,191,72,-0.7620374405594549],[114,191,73,-0.7616898697902543],[114,191,74,-0.7613446245241372],[114,191,75,-0.7610017102806607],[114,191,76,-0.7606611324876202],[114,191,77,-0.7603228964806257],[114,191,78,-0.7599870075026811],[114,191,79,-0.7596534707037601],[114,192,64,-0.7650584646661742],[114,192,65,-0.7646922968049055],[114,192,66,-0.7643284061624505],[114,192,67,-0.7639667989793799],[114,192,68,-0.7636074814079405],[114,192,69,-0.7632504595116376],[114,192,70,-0.7628957392648037],[114,192,71,-0.7625433265521708],[114,192,72,-0.7621932271684424],[114,192,73,-0.761845446817878],[114,192,74,-0.761499991113852],[114,192,75,-0.7611568655784402],[114,192,76,-0.7608160756419955],[114,192,77,-0.7604776266427238],[114,192,78,-0.7601415238262647],[114,192,79,-0.7598077723452661],[114,193,64,-0.7652160448053078],[114,193,65,-0.7648496755895237],[114,193,66,-0.764485582712841],[114,193,67,-0.7641237724180214],[114,193,68,-0.7637642508595408],[114,193,69,-0.763407024103172],[114,193,70,-0.7630520981255526],[114,193,71,-0.7626994788137589],[114,193,72,-0.7623491719648765],[114,193,73,-0.7620011832855864],[114,193,74,-0.7616555183917222],[114,193,75,-0.7613121828078588],[114,193,76,-0.7609711819668864],[114,193,77,-0.7606325212095878],[114,193,78,-0.7602962057842185],[114,193,79,-0.7599622408460819],[114,194,64,-0.7653737726533687],[114,194,65,-0.7650072033736686],[114,194,66,-0.7646429095489522],[114,194,67,-0.7642808974241508],[114,194,68,-0.7639211731559482],[114,194,69,-0.7635637428123629],[114,194,70,-0.7632086123723176],[114,194,71,-0.7628557877252116],[114,194,72,-0.7625052746704922],[114,194,73,-0.7621570789172412],[114,194,74,-0.7618112060837318],[114,194,75,-0.7614676616970173],[114,194,76,-0.7611264511925062],[114,194,77,-0.7607875799135383],[114,194,78,-0.7604510531109655],[114,194,79,-0.7601168759427275],[114,195,64,-0.7655316479135676],[114,195,65,-0.7651648798627078],[114,195,66,-0.7648003863783038],[114,195,67,-0.7644381737074355],[114,195,68,-0.7640782480089727],[114,195,69,-0.7637206153531593],[114,195,70,-0.7633652817211811],[114,195,71,-0.7630122530047401],[114,195,72,-0.7626615350056248],[114,195,73,-0.7623131334352972],[114,195,74,-0.76196705391445],[114,195,75,-0.7616233019725952],[114,195,76,-0.7612818830476391],[114,195,77,-0.7609428024854592],[114,195,78,-0.7606060655394844],[114,195,79,-0.7602716773702716],[114,196,64,-0.7656896702877574],[114,196,65,-0.7653227047606426],[114,196,66,-0.7649580129070418],[114,196,67,-0.764595600976161],[114,196,68,-0.7642354751290352],[114,196,69,-0.7638776414381122],[114,196,70,-0.7635221058868203],[114,196,71,-0.7631688743691429],[114,196,72,-0.7628179526891894],[114,196,73,-0.7624693465607812],[114,196,74,-0.7621230616070108],[114,196,75,-0.7617791033598282],[114,196,76,-0.7614374772596182],[114,196,77,-0.7610981886547761],[114,196,78,-0.7607612428012887],[114,196,79,-0.76042664486231],[114,197,64,-0.7658478394764932],[114,197,65,-0.7654806777701691],[114,197,66,-0.7651157888399984],[114,197,67,-0.7647531789372916],[114,197,68,-0.7643928542252275],[114,197,69,-0.7640348207784362],[114,197,70,-0.7636790845825677],[114,197,71,-0.7633256515338662],[114,197,72,-0.762974527438741],[114,197,73,-0.7626257180133528],[114,197,74,-0.7622792288831728],[114,197,75,-0.7619350655825698],[114,197,76,-0.7615932335543869],[114,197,77,-0.7612537381495175],[114,197,78,-0.7609165846264865],[114,197,79,-0.7605817781510267],[114,198,64,-0.7660061551790028],[114,198,65,-0.7656387985926483],[114,198,66,-0.7652737138806627],[114,198,67,-0.7649109072964402],[114,198,68,-0.7645503850052817],[114,198,69,-0.7641921530839785],[114,198,70,-0.7638362175203812],[114,198,71,-0.7634825842129735],[114,198,72,-0.7631312589704442],[114,198,73,-0.7627822475112729],[114,198,74,-0.7624355554632891],[114,198,75,-0.7620911883632604],[114,198,76,-0.7617491516564678],[114,198,77,-0.7614094506962835],[114,198,78,-0.7610720907437512],[114,198,79,-0.7607370769671624],[114,199,64,-0.766164617093211],[114,199,65,-0.7657970669281291],[114,199,66,-0.7654317877312045],[114,199,67,-0.7650687857578928],[114,199,68,-0.7647080671755955],[114,199,69,-0.7643496380632439],[114,199,70,-0.763993504410868],[114,199,71,-0.7636396721191703],[114,199,72,-0.7632881469990982],[114,199,73,-0.7629389347714295],[114,199,74,-0.762592041066332],[114,199,75,-0.7622474714229516],[114,199,76,-0.7619052312889877],[114,199,77,-0.761565326020271],[114,199,78,-0.7612277608803447],[114,199,79,-0.76089254104004],[114,200,64,-0.7663232249157095],[114,200,65,-0.7659554824753202],[114,200,66,-0.7655900100924447],[114,200,67,-0.7652268140245779],[114,200,68,-0.7648659004412012],[114,200,69,-0.7645072754233638],[114,200,70,-0.7641509449632544],[114,200,71,-0.7637969149637731],[114,200,72,-0.7634451912381052],[114,200,73,-0.7630957795093062],[114,200,74,-0.7627486854098617],[114,200,75,-0.7624039144812758],[114,200,76,-0.7620614721736462],[114,200,77,-0.7617213638452427],[114,200,78,-0.7613835947620877],[114,200,79,-0.7610481700975331],[114,201,64,-0.7664819783418166],[114,201,65,-0.7661140449316488],[114,201,66,-0.7657483806639147],[114,201,67,-0.7653849917981277],[114,201,68,-0.7650238845058264],[114,201,69,-0.7646650648701576],[114,201,70,-0.7643085388854467],[114,201,71,-0.7639543124567709],[114,201,72,-0.7636023913995323],[114,201,73,-0.7632527814390436],[114,201,74,-0.762905488210088],[114,201,75,-0.762560517256507],[114,201,76,-0.7622178740307772],[114,201,77,-0.7618775638935873],[114,201,78,-0.7615395921134197],[114,201,79,-0.7612039638661273],[114,202,64,-0.7666408770655575],[114,202,65,-0.7662727539932404],[114,202,66,-0.7659068991438367],[114,202,67,-0.7655433187788562],[114,202,68,-0.7651820190718733],[114,202,69,-0.7648230061081108],[114,202,70,-0.7644662858840097],[114,202,71,-0.7641118643068032],[114,202,72,-0.7637597471940893],[114,202,73,-0.7634099402734176],[114,202,74,-0.7630624491818478],[114,202,75,-0.7627172794655395],[114,202,76,-0.7623744365793272],[114,202,77,-0.7620339258862993],[114,202,78,-0.7616957526573782],[114,202,79,-0.7613599220708982],[114,203,64,-0.7667999207796422],[114,203,65,-0.7664316093548976],[114,203,66,-0.7660655652291017],[114,203,67,-0.7657017946657386],[114,203,68,-0.765340303840397],[114,203,69,-0.7649810988403541],[114,203,70,-0.7646241856641454],[114,203,71,-0.764269570221139],[114,203,72,-0.7639172583311082],[114,203,73,-0.763567255723818],[114,203,74,-0.7632195680385851],[114,203,75,-0.7628742008238661],[114,203,76,-0.762531159536834],[114,203,77,-0.7621904495429564],[114,203,78,-0.7618520761155766],[114,203,79,-0.7615160444354905],[114,204,64,-0.7669591091755266],[114,204,65,-0.766590610710161],[114,204,66,-0.7662243786153304],[114,204,67,-0.7658604191564718],[114,204,68,-0.7654987385111663],[114,204,69,-0.7651393427687242],[114,204,70,-0.764782237929754],[114,204,71,-0.7644274299057376],[114,204,72,-0.7640749245186028],[114,204,73,-0.7637247275003096],[114,204,74,-0.7633768444924107],[114,204,75,-0.7630312810456394],[114,204,76,-0.7626880426194874],[114,204,77,-0.7623471345817814],[114,204,78,-0.7620085622082655],[114,204,79,-0.7616723306821785],[114,205,64,-0.7671184419433821],[114,205,65,-0.7667497577512781],[114,205,66,-0.7663833389968429],[114,205,67,-0.7660191919474441],[114,205,68,-0.7656573227826335],[114,205,69,-0.7652977375937331],[114,205,70,-0.7649404423834032],[114,205,71,-0.7645854430652184],[114,205,72,-0.7642327454632396],[114,205,73,-0.7638823553116014],[114,205,74,-0.7635342782540717],[114,205,75,-0.763188519843641],[114,205,76,-0.7628450855420983],[114,205,77,-0.7625039807196102],[114,205,78,-0.7621652106543021],[114,205,79,-0.7618287805318352],[114,206,64,-0.7672779187721197],[114,206,65,-0.7669090501692284],[114,206,66,-0.7665424460666828],[114,206,67,-0.766178112733759],[114,206,68,-0.7658160563519585],[114,206,69,-0.7654562830145927],[114,206,70,-0.7650987987263527],[114,206,71,-0.7647436094028842],[114,206,72,-0.7643907208703609],[114,206,73,-0.7640401388650708],[114,206,74,-0.7636918690329768],[114,206,75,-0.7633459169293053],[114,206,76,-0.7630022880181235],[114,206,77,-0.7626609876719175],[114,206,78,-0.7623220211711736],[114,206,79,-0.761985393703957],[114,207,64,-0.7674375393493603],[114,207,65,-0.7670684876536928],[114,207,66,-0.7667016995165872],[114,207,67,-0.766337181209206],[114,207,68,-0.7659749389149786],[114,207,69,-0.7656149787291842],[114,207,70,-0.7652573066585233],[114,207,71,-0.764901928620692],[114,207,72,-0.764548850443955],[114,207,73,-0.7641980778667334],[114,207,74,-0.7638496165371642],[114,207,75,-0.7635034720126899],[114,207,76,-0.7631596497596348],[114,207,77,-0.7628181551527847],[114,207,78,-0.7624789934749678],[114,207,79,-0.7621421699166326],[114,208,64,-0.7675973033614948],[114,208,65,-0.7672280698931142],[114,208,66,-0.7668610990370468],[114,208,67,-0.7664963970663201],[114,208,68,-0.7661339701662687],[114,208,69,-0.7657738244341188],[114,208,70,-0.7654159658785584],[114,208,71,-0.7650604004193127],[114,208,72,-0.7647071338867168],[114,208,73,-0.7643561720213037],[114,208,74,-0.7640075204733638],[114,208,75,-0.7636611848025352],[114,208,76,-0.7633171704773796],[114,208,77,-0.7629754828749622],[114,208,78,-0.7626361272804328],[114,208,79,-0.762299108886604],[114,209,64,-0.767757210493663],[114,209,65,-0.7673877965746765],[114,209,66,-0.7670206443172857],[114,209,67,-0.7666557599963609],[114,209,68,-0.7662931497991209],[114,209,69,-0.7659328198247164],[114,209,70,-0.765574776083802],[114,209,71,-0.7652190244981104],[114,209,72,-0.7648655709000262],[114,209,73,-0.764514421032173],[114,209,74,-0.7641655805469749],[114,209,75,-0.763819055006244],[114,209,76,-0.76347484988076],[114,209,77,-0.7631329705498466],[114,209,78,-0.7627934223009561],[114,209,79,-0.7624562103292449],[114,210,64,-0.7679172604297327],[114,210,65,-0.7675476673842829],[114,210,66,-0.7671803350452389],[114,210,67,-0.7668152696892919],[114,210,68,-0.7664524775055223],[114,210,69,-0.7660919645949844],[114,210,70,-0.7657337369702775],[114,210,71,-0.7653778005551205],[114,210,72,-0.7650241611839265],[114,210,73,-0.7646728246013892],[114,210,74,-0.7643237964620446],[114,210,75,-0.7639770823298596],[114,210,76,-0.7636326876778102],[114,210,77,-0.76329061788746],[114,210,78,-0.7629508782485426],[114,210,79,-0.7626134739585392],[114,211,64,-0.7680774528523602],[114,211,65,-0.7677076820066172],[114,211,66,-0.7673401709076139],[114,211,67,-0.7669749258338401],[114,211,68,-0.7666119529762162],[114,211,69,-0.7662512584376782],[114,211,70,-0.7658928482327483],[114,211,71,-0.765536728287111],[114,211,72,-0.7651829044371858],[114,211,73,-0.7648313824297164],[114,211,74,-0.7644821679213294],[114,211,75,-0.7641352664781261],[114,211,76,-0.7637906835752588],[114,211,77,-0.7634484245965102],[114,211,78,-0.7631084948338756],[114,211,79,-0.7627708994871415],[114,212,64,-0.7682377874429595],[114,212,65,-0.7678678401251129],[114,212,66,-0.7675001515898598],[114,212,67,-0.7671347281174667],[114,212,68,-0.7667715759006718],[114,212,69,-0.7664107010442708],[114,212,70,-0.7660521095646879],[114,212,71,-0.7656958073895512],[114,212,72,-0.7653418003572663],[114,212,73,-0.7649900942166045],[114,212,74,-0.7646406946262638],[114,212,75,-0.7642936071544586],[114,212,76,-0.7639488372784968],[114,212,77,-0.7636063903843603],[114,212,78,-0.7632662717662864],[114,212,79,-0.7629284866263468],[114,213,64,-0.7683982638817273],[114,213,65,-0.7680281414219778],[114,213,66,-0.767660276776192],[114,213,67,-0.7672946762263904],[114,213,68,-0.7669313459671075],[114,213,69,-0.7665702921049771],[114,213,70,-0.7662115206583034],[114,213,71,-0.7658550375566369],[114,213,72,-0.7655008486403477],[114,213,73,-0.7651489596602146],[114,213,74,-0.7647993762769851],[114,213,75,-0.7644521040609664],[114,213,76,-0.7641071484916023],[114,213,77,-0.7637645149570531],[114,213,78,-0.7634242087537781],[114,213,79,-0.7630862350861143],[114,214,64,-0.7685588818476121],[114,214,65,-0.7681885855781635],[114,214,66,-0.7678205461495611],[114,214,67,-0.7674547698455576],[114,214,68,-0.7670912628624618],[114,214,69,-0.7667300313087234],[114,214,70,-0.7663710812045054],[114,214,71,-0.7660144184812587],[114,214,72,-0.7656600489812976],[114,214,73,-0.7653079784573864],[114,214,74,-0.7649582125723021],[114,214,75,-0.7646107568984236],[114,214,76,-0.7642656169173099],[114,214,77,-0.7639227980192798],[114,214,78,-0.7635823055029944],[114,214,79,-0.7632441445750365],[114,215,64,-0.7687196410183754],[114,215,65,-0.7683491722734257],[114,215,66,-0.767980959391714],[114,215,67,-0.7676150086587027],[114,215,68,-0.7672513262724525],[114,215,69,-0.7668899183432077],[114,215,70,-0.7665307908929682],[114,215,71,-0.766173949855064],[114,215,72,-0.7658194010737317],[114,215,73,-0.7654671503037008],[114,215,74,-0.7651172032097564],[114,215,75,-0.7647695653663286],[114,215,76,-0.7644242422570713],[114,215,77,-0.7640812392744413],[114,215,78,-0.7637405617192818],[114,215,79,-0.7634022148004008],[114,216,64,-0.7688805410705695],[114,216,65,-0.7685099011863037],[114,216,66,-0.7681415161831728],[114,216,67,-0.7677753923483269],[114,216,68,-0.7674115358815569],[114,216,69,-0.7670499528948792],[114,216,70,-0.766690649412109],[114,216,71,-0.7663336313684344],[114,216,72,-0.7659789046099925],[114,216,73,-0.7656264748934573],[114,216,74,-0.7652763478856006],[114,216,75,-0.7649285291628833],[114,216,76,-0.7645830242110337],[114,216,77,-0.7642398384246264],[114,216,78,-0.7638989771066662],[114,216,79,-0.7635604454681668],[114,217,64,-0.7690415816795172],[114,217,65,-0.7686707719940983],[114,217,66,-0.768302216203213],[114,217,67,-0.7679359205956771],[114,217,68,-0.7675718913729889],[114,217,69,-0.7672101346489159],[114,217,70,-0.7668506564490661],[114,217,71,-0.7664934627104646],[114,217,72,-0.7661385592811278],[114,217,73,-0.7657859519196524],[114,217,74,-0.7654356462947767],[114,217,75,-0.7650876479849715],[114,217,76,-0.7647419624780185],[114,217,77,-0.7643985951705901],[114,217,78,-0.7640575513678325],[114,217,79,-0.7637188362829452],[114,218,64,-0.7692027625193718],[114,218,65,-0.7688317843729326],[114,218,66,-0.7684630591299245],[114,218,67,-0.7680965930808058],[114,218,68,-0.7677323924287609],[114,218,69,-0.7673704632892857],[114,218,70,-0.76701081168976],[114,218,71,-0.7666534435690237],[114,218,72,-0.7662983647769512],[114,218,73,-0.7659455810740413],[114,218,74,-0.7655950981309774],[114,218,75,-0.7652469215282193],[114,218,76,-0.7649010567555818],[114,218,77,-0.7645575092118144],[114,218,78,-0.7642162842041851],[114,218,79,-0.763877386948059],[114,219,64,-0.769364083263096],[114,219,65,-0.7689929379977314],[114,219,66,-0.76862404464019],[114,219,67,-0.7682574094825507],[114,219,68,-0.7678930387296615],[114,219,69,-0.7675309384987252],[114,219,70,-0.7671711148188713],[114,219,71,-0.7668135736307328],[114,219,72,-0.7664583207860214],[114,219,73,-0.7661053620471154],[114,219,74,-0.7657547030866236],[114,219,75,-0.7654063494869736],[114,219,76,-0.7650603067399927],[114,219,77,-0.7647165802464871],[114,219,78,-0.7643751753158261],[114,219,79,-0.7640360971655206],[114,220,64,-0.7695255435824406],[114,220,65,-0.7691542325421985],[114,220,66,-0.7687851724096633],[114,220,67,-0.7684183694785122],[114,220,68,-0.7680538299552346],[114,220,69,-0.7676915599587179],[114,220,70,-0.7673315655198194],[114,220,71,-0.7669738525809442],[114,220,72,-0.766618426995619],[114,220,73,-0.7662652945280817],[114,220,74,-0.7659144608528436],[114,220,75,-0.7655659315542808],[114,220,76,-0.7652197121262119],[114,220,77,-0.7648758079714794],[114,220,78,-0.7645342244015335],[114,220,79,-0.7641949666360112],[114,221,64,-0.7696871431480048],[114,221,65,-0.7693156676788785],[114,221,66,-0.7689464421128309],[114,221,67,-0.7685794727451152],[114,221,68,-0.76821476578384],[114,221,69,-0.7678523273495549],[114,221,70,-0.767492163474824],[114,221,71,-0.7671342801038017],[114,221,72,-0.7667786830918091],[114,221,73,-0.766425378204922],[114,221,74,-0.766074371119534],[114,221,75,-0.7657256674219475],[114,221,76,-0.7653792726079522],[114,221,77,-0.765035192082407],[114,221,78,-0.7646934311588226],[114,221,79,-0.7643539950589415],[114,222,64,-0.7698488816292065],[114,222,65,-0.7694772430791259],[114,222,66,-0.7691078534229807],[114,222,67,-0.7687407189575779],[114,222,68,-0.7683758458926223],[114,222,69,-0.7680132403503046],[114,222,70,-0.767652908364873],[114,222,71,-0.7672948558822102],[114,222,72,-0.7669390887594097],[114,222,73,-0.766585612764364],[114,222,74,-0.7662344335753277],[114,222,75,-0.7658855567805091],[114,222,76,-0.7655389878776485],[114,222,77,-0.7651947322735999],[114,222,78,-0.7648527952839144],[114,222,79,-0.7645131821324203],[114,223,64,-0.7700107586943057],[114,223,65,-0.7696389584131291],[114,223,66,-0.7692694060122267],[114,223,67,-0.7689021077899357],[114,223,68,-0.7685370699575361],[114,223,69,-0.7681742986388367],[114,223,70,-0.7678137998697481],[114,223,71,-0.7674555795978597],[114,223,72,-0.7670996436820158],[114,223,73,-0.7667459978919042],[114,223,74,-0.7663946479076198],[114,223,75,-0.7660455993192552],[114,223,76,-0.7656988576264809],[114,223,77,-0.7653544282381254],[114,223,78,-0.76501231647176],[114,223,79,-0.7646725275532787],[114,224,64,-0.7701727740103741],[114,224,65,-0.7698008133498804],[114,224,66,-0.7694310995514776],[114,224,67,-0.7690636389150116],[114,224,68,-0.7686984376533145],[114,224,69,-0.7683355018917912],[114,224,70,-0.7679748376679932],[114,224,71,-0.7676164509311946],[114,224,72,-0.7672603475419687],[114,224,73,-0.7669065332717776],[114,224,74,-0.766555013802535],[114,224,75,-0.7662057947261973],[114,224,76,-0.7658588815443441],[114,224,77,-0.765514279667758],[114,224,78,-0.7651719944160101],[114,224,79,-0.76483203101704],[114,225,64,-0.7703349272433565],[114,225,65,-0.7699628075572358],[114,225,66,-0.7695929337104984],[114,225,67,-0.7692253120044757],[114,225,68,-0.7688599486535299],[114,225,69,-0.7684968497846401],[114,225,70,-0.7681360214369757],[114,225,71,-0.7677774695614743],[114,225,72,-0.767421200020417],[114,225,73,-0.7670672185870185],[114,225,74,-0.76671553094499],[114,225,75,-0.7663661426881309],[114,225,76,-0.7660190593199087],[114,225,77,-0.7656742862530399],[114,225,78,-0.7653318288090752],[114,225,79,-0.764991692217979],[114,226,64,-0.7704972180580483],[114,226,65,-0.7701249407018946],[114,226,66,-0.7697549081578886],[114,226,67,-0.7693871267288249],[114,226,68,-0.7690216026305732],[114,226,69,-0.7686583419916643],[114,226,70,-0.7682973508528643],[114,226,71,-0.7679386351667522],[114,226,72,-0.7675822007972951],[114,226,73,-0.7672280535194387],[114,226,74,-0.7668761990186708],[114,226,75,-0.7665266428906127],[114,226,76,-0.7661793906405991],[114,226,77,-0.7658344476832598],[114,226,78,-0.7654918193421043],[114,226,79,-0.7651515108491018],[114,227,64,-0.7706596461180748],[114,227,65,-0.7702872124493771],[114,227,66,-0.7699170225610604],[114,227,67,-0.7695490827573602],[114,227,68,-0.769183399255631],[114,227,69,-0.7688199781859335],[114,227,70,-0.7684588255906084],[114,227,71,-0.7680999474238535],[114,227,72,-0.7677433495513009],[114,227,73,-0.7673890377496058],[114,227,74,-0.7670370177060115],[114,227,75,-0.7666872950179396],[114,227,76,-0.7663398751925717],[114,227,77,-0.7659947636464302],[114,227,78,-0.7656519657049624],[114,227,79,-0.7653114866021231],[114,228,64,-0.7708222110859516],[114,228,65,-0.7704496224640857],[114,228,66,-0.7700792765863],[114,228,67,-0.7697111797582483],[114,228,68,-0.7693453381987478],[114,228,69,-0.7689817580393665],[114,228,70,-0.7686204453239973],[114,228,71,-0.7682614060084361],[114,228,72,-0.7679046459599571],[114,228,73,-0.7675501709569044],[114,228,74,-0.7671979866882546],[114,228,75,-0.7668480987532096],[114,228,76,-0.7665005126607763],[114,228,77,-0.7661552338293487],[114,228,78,-0.7658122675862927],[114,228,79,-0.765471619167527],[114,229,64,-0.7709849126230544],[114,229,65,-0.7706121704092739],[114,229,66,-0.7702416698987364],[114,229,67,-0.7698734173984908],[114,229,68,-0.7695074191287942],[114,229,69,-0.7691436812226999],[114,229,70,-0.7687822097256315],[114,229,71,-0.7684230105949598],[114,229,72,-0.7680660896995806],[114,229,73,-0.7677114528195045],[114,229,74,-0.767359105645421],[114,229,75,-0.7670090537782903],[114,229,76,-0.7666613027289242],[114,229,77,-0.7663158579175677],[114,229,78,-0.7659727246734842],[114,229,79,-0.7656319082345366],[114,230,64,-0.7711477503896422],[114,230,65,-0.7707748559470713],[114,230,66,-0.7704042021623659],[114,230,67,-0.7700357953439477],[114,230,68,-0.7696696417134915],[114,230,69,-0.7693057474055134],[114,230,70,-0.7689441184669448],[114,230,71,-0.7685847608567106],[114,230,72,-0.768227680445306],[114,230,73,-0.7678728830143866],[114,230,74,-0.7675203742563332],[114,230,75,-0.7671701597738436],[114,230,76,-0.7668222450795132],[114,230,77,-0.7664766355954175],[114,230,78,-0.7661333366526967],[114,230,79,-0.7657923534911377],[114,231,64,-0.7713107240448278],[114,231,65,-0.7709376787384518],[114,231,66,-0.7705668730400212],[114,231,67,-0.7701983132593075],[114,231,68,-0.7698320056193807],[114,231,69,-0.7694679562561975],[114,231,70,-0.7691061712181749],[114,231,71,-0.7687466564657699],[114,231,72,-0.768389417871055],[114,231,73,-0.7680344612173099],[114,231,74,-0.7676817921985849],[114,231,75,-0.7673314164192941],[114,231,76,-0.766983339393796],[114,231,77,-0.7666375665459754],[114,231,78,-0.7662941032088291],[114,231,79,-0.7659529546240476],[114,232,64,-0.771473833246638],[114,232,65,-0.7711006384432951],[114,232,66,-0.7707296821934322],[114,232,67,-0.7703609708081476],[114,232,68,-0.7699945105118837],[114,232,69,-0.7696303074420153],[114,232,70,-0.7692683676484235],[114,232,71,-0.7689086970930747],[114,232,72,-0.7685513016495976],[114,232,73,-0.7681961871028735],[114,232,74,-0.7678433591486017],[114,232,75,-0.7674928233928909],[114,232,76,-0.7671445853518417],[114,232,77,-0.7667986504511275],[114,232,78,-0.7664550240255811],[114,232,79,-0.766113711318776],[114,233,64,-0.7716370776519916],[114,233,65,-0.7712637347203652],[114,233,66,-0.7708926292832047],[114,233,67,-0.7705237676529124],[114,233,68,-0.7701571560552811],[114,233,69,-0.7697928006290811],[114,233,70,-0.769430707425635],[114,233,71,-0.769070882408397],[114,233,72,-0.7687133314525298],[114,233,73,-0.7683580603444952],[114,233,74,-0.7680050747816192],[114,233,75,-0.7676543803716849],[114,233,76,-0.7673059826325134],[114,233,77,-0.7669598869915459],[114,233,78,-0.7666160987854308],[114,233,79,-0.766274623259604],[114,234,64,-0.771800456916679],[114,234,65,-0.7714269672272882],[114,234,66,-0.771055713968798],[114,234,67,-0.7706867034548924],[114,234,68,-0.7703199419126912],[114,234,69,-0.7699554354823377],[114,234,70,-0.7695931902165745],[114,234,71,-0.7692332120803209],[114,234,72,-0.768875506950252],[114,234,73,-0.7685200806143884],[114,234,74,-0.7681669387716615],[114,234,75,-0.7678160870315073],[114,234,76,-0.7674675309134462],[114,234,77,-0.767121275846667],[114,234,78,-0.7667773271696124],[114,234,79,-0.7664356901295607],[114,235,64,-0.7719639706954216],[114,235,65,-0.7715903356206135],[114,235,66,-0.7712189359085868],[114,235,67,-0.7708497778742842],[114,235,68,-0.7704828677461298],[114,235,69,-0.7701182116656182],[114,235,70,-0.7697558156868887],[114,235,71,-0.7693956857763042],[114,235,72,-0.7690378278120301],[114,235,73,-0.7686822475836241],[114,235,74,-0.768328950791602],[114,235,75,-0.7679779430470306],[114,235,76,-0.7676292298711093],[114,235,77,-0.7672828166947528],[114,235,78,-0.7669387088581782],[114,235,79,-0.7665969116104852],[114,236,64,-0.772127618641842],[114,236,65,-0.7717538395557828],[114,236,66,-0.7713822947598294],[114,236,67,-0.7710129905701599],[114,236,68,-0.7706459332164808],[114,236,69,-0.7702811288416144],[114,236,70,-0.7699185835010749],[114,236,71,-0.7695583031626472],[114,236,72,-0.7692002937059643],[114,236,73,-0.7688445609220999],[114,236,74,-0.7684911105131319],[114,236,75,-0.7681399480917374],[114,236,76,-0.7677910791807733],[114,236,77,-0.7674445092128597],[114,236,78,-0.7671002435299665],[114,236,79,-0.766758287382995],[114,237,64,-0.7722914004084878],[114,237,65,-0.7719174786871549],[114,237,66,-0.7715457901786924],[114,237,67,-0.7711763412004919],[114,237,68,-0.7708091379835187],[114,237,69,-0.7704441866719012],[114,237,70,-0.7700814933225058],[114,237,71,-0.7697210639045167],[114,237,72,-0.7693629042990136],[114,237,73,-0.7690070202985632],[114,237,74,-0.7686534176067852],[114,237,75,-0.7683021018379448],[114,237,76,-0.7679530785165356],[114,237,77,-0.767606353076862],[114,237,78,-0.7672619308626263],[114,237,79,-0.7669198171265108],[114,238,64,-0.7724553156468009],[114,238,65,-0.7720812526679734],[114,238,66,-0.7717094218202196],[114,238,67,-0.771339829422121],[114,238,68,-0.7709724817058792],[114,238,69,-0.7706073848169057],[114,238,70,-0.7702445448133974],[114,238,71,-0.7698839676659153],[114,238,72,-0.7695256592569636],[114,238,73,-0.769169625380581],[114,238,74,-0.7688158717419065],[114,238,75,-0.7684644039567726],[114,238,76,-0.7681152275512884],[114,238,77,-0.7677683479614213],[114,238,78,-0.7674237705325857],[114,238,79,-0.7670815005192236],[114,239,64,-0.7726193640071785],[114,239,65,-0.7722451611504294],[114,239,66,-0.7718731893383932],[114,239,67,-0.7715034548908178],[114,239,68,-0.7711359640411188],[114,239,69,-0.7707707229359684],[114,239,70,-0.7704077376348708],[114,239,71,-0.7700470141097422],[114,239,72,-0.7696885582444892],[114,239,73,-0.7693323758346005],[114,239,74,-0.768978472586713],[114,239,75,-0.7686268541182054],[114,239,76,-0.7682775259567802],[114,239,77,-0.7679304935400478],[114,239,78,-0.767585762215113],[114,239,79,-0.767243337238158],[114,240,64,-0.7727835451389504],[114,240,65,-0.7724092037856385],[114,240,66,-0.7720370923861113],[114,240,67,-0.7716672172612612],[114,240,68,-0.771299584645694],[114,240,69,-0.7709342006873205],[114,240,70,-0.7705710714469299],[114,240,71,-0.7702102028977712],[114,240,72,-0.7698516009251314],[114,240,73,-0.7694952713259274],[114,240,74,-0.7691412198082724],[114,240,75,-0.7687894519910695],[114,240,76,-0.768439973403594],[114,240,77,-0.7680927894850775],[114,240,78,-0.7677479055842953],[114,240,79,-0.7674053269591482],[114,241,64,-0.7729478586903591],[114,241,65,-0.7725733802236192],[114,241,66,-0.7722011306151672],[114,241,67,-0.7718311161870156],[114,241,68,-0.7714633431749391],[114,241,69,-0.7710978177280631],[114,241,70,-0.7707345459084399],[114,241,71,-0.7703735336906291],[114,241,72,-0.7700147869612759],[114,241,73,-0.7696583115187037],[114,241,74,-0.76930411307248],[114,241,75,-0.7689521972430112],[114,241,76,-0.768602569561124],[114,241,77,-0.7682552354676506],[114,241,78,-0.767910200313015],[114,241,79,-0.767567469356817],[114,242,64,-0.7731123043086189],[114,242,65,-0.7727376901133546],[114,242,66,-0.7723653036763091],[114,242,67,-0.7719951513205933],[114,242,68,-0.7716272392831266],[114,242,69,-0.7712615737142273],[114,242,70,-0.770898160677188],[114,242,71,-0.7705370061478563],[114,242,72,-0.7701781160142138],[114,242,73,-0.7698214960759686],[114,242,74,-0.769467152044121],[114,242,75,-0.7691150895405585],[114,242,76,-0.7687653140976387],[114,242,77,-0.7684178311577725],[114,242,78,-0.7680726460730126],[114,242,79,-0.7677297641046363],[114,243,64,-0.7732768816398858],[114,243,65,-0.7729021331027601],[114,243,66,-0.7725296112192104],[114,243,67,-0.7721593223134221],[114,243,68,-0.7717912726234372],[114,243,69,-0.7714254683007437],[114,243,70,-0.771061915409852],[114,243,71,-0.7707006199278759],[114,243,72,-0.7703415877441111],[114,243,73,-0.7699848246596279],[114,243,74,-0.7696303363868382],[114,243,75,-0.7692781285490893],[114,243,76,-0.7689282066802477],[114,243,77,-0.7685805762242827],[114,243,78,-0.7682352425348542],[114,243,79,-0.7678922108748966],[114,244,64,-0.7734415903292821],[114,244,65,-0.7730667088387091],[114,244,66,-0.7726940528924927],[114,244,67,-0.7723236288158704],[114,244,68,-0.7719554428479831],[114,244,69,-0.7715895011414662],[114,244,70,-0.7712258097620255],[114,244,71,-0.7708643746880182],[114,244,72,-0.7705052018100319],[114,244,73,-0.7701482969304778],[114,244,74,-0.769793665763157],[114,244,75,-0.7694413139328555],[114,244,76,-0.7690912469749274],[114,244,77,-0.7687434703348786],[114,244,78,-0.768397989367956],[114,244,79,-0.7680548093387299],[114,245,64,-0.7736064300208643],[114,245,65,-0.7732314169670005],[114,245,66,-0.7728586283436958],[114,245,67,-0.7724880704772155],[114,245,68,-0.7721197496077774],[114,245,69,-0.7717536718891411],[114,245,70,-0.7713898433881854],[114,245,71,-0.7710282700844884],[114,245,72,-0.7706689578699077],[114,245,73,-0.7703119125481732],[114,245,74,-0.7699571398344536],[114,245,75,-0.7696046453549518],[114,245,76,-0.769254434646488],[114,245,77,-0.7689065131560842],[114,245,78,-0.7685608862405526],[114,245,79,-0.7682175591660795],[114,246,64,-0.7737714003576845],[114,246,65,-0.7733962571324209],[114,246,66,-0.7730233372193374],[114,246,67,-0.7726526469457051],[114,246,68,-0.7722841925527949],[114,246,69,-0.7719179801954683],[114,246,70,-0.771554015941754],[114,246,71,-0.7711923057724291],[114,246,72,-0.770832855580599],[114,246,73,-0.7704756711712898],[114,246,74,-0.7701207582610163],[114,246,75,-0.7697681224773769],[114,246,76,-0.7694177693586364],[114,246,77,-0.7690697043533115],[114,246,78,-0.7687239328197591],[114,246,79,-0.76838046002576],[114,247,64,-0.7739365009817696],[114,247,65,-0.7735612289787219],[114,247,66,-0.7731881791648927],[114,247,67,-0.772817357868535],[114,247,68,-0.7724487713319501],[114,247,69,-0.7720824257110785],[114,247,70,-0.7717183270750765],[114,247,71,-0.7713564814058973],[114,247,72,-0.7709968945978718],[114,247,73,-0.770639572457301],[114,247,74,-0.7702845207020235],[114,247,75,-0.7699317449610112],[114,247,76,-0.7695812507739528],[114,247,77,-0.7692330435908381],[114,247,78,-0.7688871287715476],[114,247,79,-0.7685435115854362],[114,248,64,-0.7741017315340974],[114,248,65,-0.7737263321485985],[114,248,66,-0.7733531538247711],[114,248,67,-0.7729822028918272],[114,248,68,-0.7726134855930755],[114,248,69,-0.7722470080855123],[114,248,70,-0.7718827764393987],[114,248,71,-0.7715207966378425],[114,248,72,-0.7711610745763771],[114,248,73,-0.7708036160625563],[114,248,74,-0.7704484268155211],[114,248,75,-0.770095512465595],[114,248,76,-0.769744878553869],[114,248,77,-0.7693965305317849],[114,248,78,-0.769050473760726],[114,248,79,-0.7687067135115999],[114,249,64,-0.7742670916546597],[114,249,65,-0.7738915662837503],[114,249,66,-0.7735182608423784],[114,249,67,-0.7731471816606913],[114,249,68,-0.7727783349829821],[114,249,69,-0.7724117269672803],[114,249,70,-0.7720473636849292],[114,249,71,-0.771685251120168],[114,249,72,-0.7713253951697111],[114,249,73,-0.7709678016423427],[114,249,74,-0.7706124762584841],[114,249,75,-0.7702594246497894],[114,249,76,-0.7699086523587295],[114,249,77,-0.7695601648381778],[114,249,78,-0.7692139674509987],[114,249,79,-0.7688700654696321],[114,250,64,-0.7744325809824385],[114,250,65,-0.7740569310248593],[114,250,66,-0.7736834998600939],[114,250,67,-0.7733122938192021],[114,250,68,-0.7729433191474382],[114,250,69,-0.7725765820038419],[114,250,70,-0.7722120884608163],[114,250,71,-0.7718498445037091],[114,250,72,-0.7714898560303936],[114,250,73,-0.7711321288508621],[114,250,74,-0.7707766686867947],[114,250,75,-0.7704234811711539],[114,250,76,-0.7700725718477698],[114,250,77,-0.7697239461709251],[114,250,78,-0.7693776095049447],[114,250,79,-0.7690335671237801],[114,251,64,-0.7745981991553857],[114,251,65,-0.774222426011568],[114,251,66,-0.773848870519249],[114,251,67,-0.7734775390103779],[114,251,68,-0.7731084377311468],[114,251,69,-0.772741572841583],[114,251,70,-0.7723769504151259],[114,251,71,-0.7720145764382101],[114,251,72,-0.7716544568098451],[114,251,73,-0.7712965973412095],[114,251,74,-0.7709410037552196],[114,251,75,-0.7705876816861248],[114,251,76,-0.7702366366790929],[114,251,77,-0.769887874189795],[114,251,78,-0.7695413995839949],[114,251,79,-0.7691972181371347],[114,252,64,-0.774763945810483],[114,252,65,-0.7743880508825404],[114,252,66,-0.7740143724601882],[114,252,67,-0.7736429168762413],[114,252,68,-0.7732736903778068],[114,252,69,-0.7729066991258763],[114,252,70,-0.7725419491949036],[114,252,71,-0.7721794465723868],[114,252,72,-0.7718191971584492],[114,252,73,-0.7714612067654336],[114,252,74,-0.7711054811174711],[114,252,75,-0.7707520258500762],[114,252,76,-0.7704008465097323],[114,252,77,-0.7700519485534776],[114,252,78,-0.7697053373484939],[114,252,79,-0.769361018171693],[114,253,64,-0.7749298205837116],[114,253,65,-0.7745538052754312],[114,253,66,-0.7741800053222377],[114,253,67,-0.7738084270577883],[114,253,68,-0.7734390767300819],[114,253,69,-0.7730719605010516],[114,253,70,-0.7727070844461423],[114,253,71,-0.7723444545538934],[114,253,72,-0.7719840767255199],[114,253,73,-0.7716259567745065],[114,253,74,-0.7712701004261766],[114,253,75,-0.770916513317288],[114,253,76,-0.7705652009956189],[114,253,77,-0.7702161689195525],[114,253,78,-0.769869422457668],[114,253,79,-0.7695249668883254],[114,254,64,-0.7750958231100753],[114,254,65,-0.7747196888269092],[114,254,66,-0.7743457687437295],[114,254,67,-0.7739740691950121],[114,254,68,-0.7736045964296248],[114,254,69,-0.7732373566104186],[114,254,70,-0.7728723558138073],[114,254,71,-0.7725096000293488],[114,254,72,-0.7721490951593271],[114,254,73,-0.7717908470183468],[114,254,74,-0.7714348613329016],[114,254,75,-0.7710811437409711],[114,254,76,-0.770729699791606],[114,254,77,-0.7703805349445138],[114,254,78,-0.7700336545696495],[114,254,79,-0.7696890639468004],[114,255,64,-0.7752619530235703],[114,255,65,-0.774885701172627],[114,255,66,-0.7745116623619706],[114,255,67,-0.774139842926872],[114,255,68,-0.773770249117045],[114,255,69,-0.7734028870962357],[114,255,70,-0.7730377629418037],[114,255,71,-0.7726748826443026],[114,255,72,-0.7723142521070634],[114,255,73,-0.771955877145788],[114,255,74,-0.7715997634881187],[114,255,75,-0.7712459167732346],[114,255,76,-0.7708943425514374],[114,255,77,-0.7705450462837378],[114,255,78,-0.7701980333414448],[114,255,79,-0.7698533090057527],[114,256,64,-0.7754282099572456],[114,256,65,-0.7750518419472812],[114,256,66,-0.774677685813303],[114,256,67,-0.7743057478913546],[114,256,68,-0.7739360344319712],[114,256,69,-0.7735685515997721],[114,256,70,-0.7732033054730387],[114,256,71,-0.7728403020432988],[114,256,72,-0.7724795472149072],[114,256,73,-0.7721210468046409],[114,256,74,-0.7717648065412687],[114,256,75,-0.7714108320651477],[114,256,76,-0.771059128927809],[114,256,77,-0.7707097025915443],[114,256,78,-0.7703625584289963],[114,256,79,-0.7700177017227443],[114,257,64,-0.7755945935431816],[114,257,65,-0.7752181107845908],[114,257,66,-0.7748438387330834],[114,257,67,-0.7744717837254513],[114,257,68,-0.7741019520130289],[114,257,69,-0.7737343497612843],[114,257,70,-0.7733689830493993],[114,257,71,-0.773005857869852],[114,257,72,-0.772644980127999],[114,257,73,-0.7722863556416703],[114,257,74,-0.7719299901407388],[114,257,75,-0.7715758892667179],[114,257,76,-0.7712240585723462],[114,257,77,-0.7708745035211751],[114,257,78,-0.7705272294871596],[114,257,79,-0.7701822417542432],[114,258,64,-0.7757611034124673],[114,258,65,-0.7753845073172752],[114,258,66,-0.7750101207556591],[114,258,67,-0.7746379500651366],[114,258,68,-0.774268001497817],[114,258,69,-0.7739002812199951],[114,258,70,-0.7735347953117291],[114,258,71,-0.7731715497664254],[114,258,72,-0.7728105504904199],[114,258,73,-0.7724518033025729],[114,258,74,-0.7720953139338398],[114,258,75,-0.7717410880268677],[114,258,76,-0.7713891311355814],[114,258,77,-0.7710394487247706],[114,258,78,-0.7706920461696809],[114,258,79,-0.7703469287555992],[114,259,64,-0.7759277391952618],[114,259,65,-0.7755510311771149],[114,259,66,-0.775176531514431],[114,259,67,-0.774804246545429],[114,259,68,-0.7744341825229708],[114,259,69,-0.7740663456141539],[114,259,70,-0.7737007418998908],[114,259,71,-0.7733373773744929],[114,259,72,-0.7729762579452527],[114,259,73,-0.7726173894320391],[114,259,74,-0.7722607775668673],[114,259,75,-0.7719064279934963],[114,259,76,-0.7715543462670156],[114,259,77,-0.7712045378534316],[114,259,78,-0.7708570081292588],[114,259,79,-0.7705117623811069],[114,260,64,-0.7760945005207631],[114,260,65,-0.7757176819949206],[114,260,66,-0.7753430706418205],[114,260,67,-0.7749706728003598],[114,260,68,-0.7746004947241292],[114,260,69,-0.7742325425810059],[114,260,70,-0.7738668224527337],[114,260,71,-0.7735033403345064],[114,260,72,-0.7731421021345506],[114,260,73,-0.7727831136737209],[114,260,74,-0.7724263806850703],[114,260,75,-0.7720719088134484],[114,260,76,-0.771719703615087],[114,260,77,-0.7713697705571875],[114,260,78,-0.7710221150175127],[114,260,79,-0.7706767422839731],[114,261,64,-0.776261387017232],[114,261,65,-0.7758844594005573],[114,261,66,-0.7755097377692952],[114,261,67,-0.7751372284629972],[114,261,68,-0.7747669377359595],[114,261,69,-0.7743988717568161],[114,261,70,-0.7740330366081187],[114,261,71,-0.7736694382859208],[114,261,72,-0.7733080826993606],[114,261,73,-0.7729489756702559],[114,261,74,-0.772592122932676],[114,261,75,-0.7722375301325379],[114,261,76,-0.7718852028271945],[114,261,77,-0.7715351464850209],[114,261,78,-0.7711873664850063],[114,261,79,-0.7708418681163411],[114,262,64,-0.7764283983119609],[114,262,65,-0.7760513630229124],[114,262,66,-0.7756765325273363],[114,262,67,-0.7753039131654145],[114,262,68,-0.7749335111921257],[114,262,69,-0.7745653327768371],[114,262,70,-0.7741993840028859],[114,262,71,-0.773835670867162],[114,262,72,-0.7734741992796924],[114,262,73,-0.7731149750632365],[114,262,74,-0.7727580039528563],[114,262,75,-0.7724032915955158],[114,262,76,-0.7720508435496662],[114,262,77,-0.7717006652848347],[114,262,78,-0.771352762181216],[114,262,79,-0.771007139529259],[114,263,64,-0.7765955340313349],[114,263,65,-0.7762183924899576],[114,263,66,-0.7758434545455001],[114,263,67,-0.7754707265387518],[114,263,68,-0.7751002147253498],[114,263,69,-0.7747319252753717],[114,263,70,-0.7743658642729163],[114,263,71,-0.7740020377156882],[114,263,72,-0.77364045151458],[114,263,73,-0.77328111149327],[114,263,74,-0.7729240233877915],[114,263,75,-0.7725691928461323],[114,263,76,-0.772216625427821],[114,263,77,-0.771866326603515],[114,263,78,-0.7715183017545927],[114,263,79,-0.7711725561727406],[114,264,64,-0.7767627938008091],[114,264,65,-0.776385547428726],[114,264,66,-0.7760105034523963],[114,264,67,-0.7756376682131935],[114,264,68,-0.7752670479673894],[114,264,69,-0.774898648885749],[114,264,70,-0.7745324770531099],[114,264,71,-0.7741685384679676],[114,264,72,-0.7738068390420587],[114,264,73,-0.7734473845999573],[114,264,74,-0.7730901808786459],[114,264,75,-0.7727352335271142],[114,264,76,-0.7723825481059459],[114,264,77,-0.7720321300869073],[114,264,78,-0.7716839848525391],[114,264,79,-0.771338117695744],[114,265,64,-0.7769301772448878],[114,265,65,-0.7765528274652904],[114,265,66,-0.7761776788756654],[114,265,67,-0.7758047378179459],[114,265,68,-0.7754340105490158],[114,265,69,-0.7750655032403034],[114,265,70,-0.7746992219773624],[114,265,71,-0.7743351727594565],[114,265,72,-0.7739733614991432],[114,265,73,-0.7736137940218701],[114,265,74,-0.7732564760655465],[114,265,75,-0.772901413280142],[114,265,76,-0.7725486112272736],[114,265,77,-0.7721980753797946],[114,265,78,-0.7718498111213867],[114,265,79,-0.7715038237461476],[114,266,64,-0.777097683987184],[114,266,65,-0.7767202322248244],[114,266,66,-0.7763449804420396],[114,266,67,-0.7759719349812989],[114,266,68,-0.7756011021000746],[114,266,69,-0.7752324879704352],[114,266,70,-0.7748660986786273],[114,266,71,-0.7745019402246599],[114,266,72,-0.7741400185218885],[114,266,73,-0.773780339396612],[114,266,74,-0.773422908587644],[114,266,75,-0.7730677317459117],[114,266,76,-0.7727148144340439],[114,266,77,-0.772364162125959],[114,266,78,-0.7720157802064582],[114,266,79,-0.7716696739708127],[114,267,64,-0.7772653136503893],[114,267,65,-0.7768877613315708],[114,267,66,-0.7765124077773117],[114,267,67,-0.776139259330594],[114,267,68,-0.7757683222494547],[114,267,69,-0.7753996027065794],[114,267,70,-0.7750331067888839],[114,267,71,-0.7746688404971],[114,267,72,-0.7743068097453586],[114,267,73,-0.773947020360787],[114,267,74,-0.7735894780830809],[114,267,75,-0.7732341885641032],[114,267,76,-0.7728811573674721],[114,267,77,-0.7725303899681497],[114,267,78,-0.7721818917520348],[114,267,79,-0.7718356680155511],[114,268,64,-0.7774330658562972],[114,268,65,-0.7770554144088656],[114,268,66,-0.7766799605063592],[114,268,67,-0.7763067104922489],[114,268,68,-0.7759356706251123],[114,268,69,-0.7755668470782291],[114,268,70,-0.7752002459391617],[114,268,71,-0.774835873209341],[114,268,72,-0.7744737348036507],[114,268,73,-0.7741138365500239],[114,268,74,-0.7737561841890161],[114,268,75,-0.7734007833734038],[114,268,76,-0.7730476396677728],[114,268,77,-0.7726967585481066],[114,268,78,-0.7723481454013807],[114,268,79,-0.7720018055251496],[114,269,64,-0.7776009402257718],[114,269,65,-0.7772231910791069],[114,269,66,-0.7768476382531126],[114,269,67,-0.7764742880917248],[114,269,68,-0.776103146854039],[114,269,69,-0.7757342207139049],[114,269,70,-0.7753675157595082],[114,269,71,-0.7750030379929563],[114,269,72,-0.7746407933298627],[114,269,73,-0.7742807875989438],[114,269,74,-0.7739230265415927],[114,269,75,-0.773567515811477],[114,269,76,-0.7732142609741277],[114,269,77,-0.772863267506529],[114,269,78,-0.7725145407967108],[114,269,79,-0.7721680861433371],[114,270,64,-0.7777689363788092],[114,270,65,-0.7773910909638155],[114,270,66,-0.7770154406406166],[114,270,67,-0.7766419917535894],[114,270,68,-0.7762707505623234],[114,270,69,-0.7759017232412153],[114,270,70,-0.7755349158790508],[114,270,71,-0.7751703344785906],[114,270,72,-0.7748079849561553],[114,270,73,-0.7744478731412224],[114,270,74,-0.7740900047759993],[114,270,75,-0.773734385515023],[114,270,76,-0.7733810209247483],[114,270,77,-0.7730299164831371],[114,270,78,-0.7726810775792528],[114,270,79,-0.7723345095128473],[114,271,64,-0.7779370539345148],[114,271,65,-0.7775591136836133],[114,271,66,-0.7771833672910078],[114,271,67,-0.7768098211014931],[114,271,68,-0.7764384813751287],[114,271,69,-0.7760693542868349],[114,271,70,-0.775702445925974],[114,271,71,-0.7753377622959374],[114,271,72,-0.7749753093137297],[114,271,73,-0.7746150928095666],[114,271,74,-0.7742571185264481],[114,271,75,-0.7739013921197577],[114,271,76,-0.773547919156852],[114,271,77,-0.7731967051166491],[114,271,78,-0.7728477553892239],[114,271,79,-0.7725010752753955],[114,272,64,-0.7781052925110817],[114,272,65,-0.7777272588582003],[114,272,66,-0.7773514178254927],[114,272,67,-0.7769777757581471],[114,272,68,-0.7766063389166697],[114,272,69,-0.7762371134764812],[114,272,70,-0.7758701055274971],[114,272,71,-0.7755053210737162],[114,272,72,-0.7751427660328042],[114,272,73,-0.7747824462356927],[114,272,74,-0.7744243674261513],[114,272,75,-0.7740685352603884],[114,272,76,-0.7737149553066398],[114,272,77,-0.7733636330447584],[114,272,78,-0.7730145738658087],[114,272,79,-0.7726677830716554],[114,273,64,-0.7782736517258513],[114,273,65,-0.7778955261064164],[114,273,66,-0.7775195918644083],[114,273,67,-0.7771458553453849],[114,273,68,-0.7767743228102755],[114,273,69,-0.776405000434977],[114,273,70,-0.7760378943099354],[114,273,71,-0.7756730104397338],[114,273,72,-0.7753103547426763],[114,273,73,-0.7749499330503872],[114,273,74,-0.7745917511073837],[114,273,75,-0.7742358145706765],[114,273,76,-0.7738821290093585],[114,273,77,-0.7735306999041958],[114,273,78,-0.7731815326472206],[114,273,79,-0.7728346325413216],[114,274,64,-0.7784421311952818],[114,274,65,-0.7780639150462094],[114,274,66,-0.7776878890271912],[114,274,67,-0.7773140594841305],[114,274,68,-0.776942432678356],[114,274,69,-0.7765730147862178],[114,274,70,-0.7762058118986689],[114,274,71,-0.7758408300208532],[114,274,72,-0.7754780750716908],[114,274,73,-0.7751175528834756],[114,274,74,-0.7747592692014501],[114,274,75,-0.7744032296834048],[114,274,76,-0.7740494398992681],[114,274,77,-0.7736979053306967],[114,274,78,-0.7733486313706693],[114,274,79,-0.7730016233230772],[114,275,64,-0.7786107305349724],[114,275,65,-0.7782324252946595],[114,275,66,-0.7778563089324009],[114,275,67,-0.7774823877944222],[114,275,68,-0.7771106681424277],[114,275,69,-0.7767411561531965],[114,275,70,-0.7763738579181658],[114,275,71,-0.7760087794430174],[114,275,72,-0.7756459266472636],[114,275,73,-0.7752853053638462],[114,275,74,-0.7749269213387097],[114,275,75,-0.7745707802304025],[114,275,76,-0.7742168876096661],[114,275,77,-0.773865248959026],[114,275,78,-0.7735158696723858],[114,275,79,-0.7731687550546176],[114,276,64,-0.7787794493596321],[114,276,65,-0.778401056467947],[114,276,66,-0.7780248511976889],[114,276,67,-0.7776508398953814],[114,276,68,-0.7772790288230804],[114,276,69,-0.776909424157971],[114,276,70,-0.7765420319919509],[114,276,71,-0.7761768583312165],[114,276,72,-0.77581390909585],[114,276,73,-0.7754531901194175],[114,276,74,-0.7750947071485437],[114,276,75,-0.7747384658425119],[114,276,76,-0.7743844717728551],[114,276,77,-0.7740327304229453],[114,276,78,-0.7736832471875894],[114,276,79,-0.7733360273726185],[114,277,64,-0.7789482872831398],[114,277,65,-0.7785698081814143],[114,277,66,-0.7781935154398596],[114,277,67,-0.7778194154052733],[114,277,68,-0.7774475143400397],[114,277,69,-0.7770778184217262],[114,277,70,-0.7767103337426672],[114,277,71,-0.7763450663095509],[114,277,72,-0.775982022043006],[114,277,73,-0.7756212067772009],[114,277,74,-0.7752626262594172],[114,277,75,-0.7749062861496514],[114,277,76,-0.7745521920202049],[114,277,77,-0.7742003493552749],[114,277,78,-0.7738507635505496],[114,277,79,-0.773503439912798],[114,278,64,-0.7791172439185233],[114,278,65,-0.7787386800495427],[114,278,66,-0.7783623012748474],[114,278,67,-0.777988113941485],[114,278,68,-0.777616124312144],[114,278,69,-0.7772463385647508],[114,278,70,-0.7768787627920529],[114,278,71,-0.7765134030012074],[114,278,72,-0.7761502651133666],[114,278,73,-0.7757893549632775],[114,278,74,-0.7754306782988568],[114,278,75,-0.7750742407807916],[114,278,76,-0.7747200479821295],[114,278,77,-0.7743681053878712],[114,278,78,-0.774018418394564],[114,278,79,-0.7736709923098932],[114,279,64,-0.7792863188779358],[114,279,65,-0.7789076716859308],[114,279,66,-0.7785312083176953],[114,279,67,-0.7781569351205028],[114,279,68,-0.7777848583573221],[114,279,69,-0.7774149842064151],[114,279,70,-0.7770473187609194],[114,279,71,-0.7766818680284371],[114,279,72,-0.7763186379306212],[114,279,73,-0.775957634302775],[114,279,74,-0.7755988628934272],[114,279,75,-0.7752423293639329],[114,279,76,-0.7748880392880646],[114,279,77,-0.7745359981516032],[114,279,78,-0.7741862113519341],[114,279,79,-0.7738386841976375],[114,280,64,-0.7794555117727177],[114,280,65,-0.7790767827033552],[114,280,66,-0.7787002361826153],[114,280,67,-0.7783258785579732],[114,280,68,-0.7779537160926547],[114,280,69,-0.7775837549652329],[114,280,70,-0.7772160012692123],[114,280,71,-0.7768504610126168],[114,280,72,-0.7764871401175771],[114,280,73,-0.7761260444199299],[114,280,74,-0.7757671796687933],[114,280,75,-0.775410551526168],[114,280,76,-0.7750561655665287],[114,280,77,-0.7747040272764152],[114,280,78,-0.7743541420540287],[114,280,79,-0.7740065152088225],[114,281,64,-0.7796248222133648],[114,281,65,-0.7792460127137391],[114,281,66,-0.7788693844829571],[114,281,67,-0.7784949438686718],[114,281,68,-0.7781226971343421],[114,281,69,-0.7777526504588288],[114,281,70,-0.7773848099359796],[114,281,71,-0.7770191815742172],[114,281,72,-0.7766557712961266],[114,281,73,-0.7762945849380554],[114,281,74,-0.7759356282496879],[114,281,75,-0.7755789068936484],[114,281,76,-0.7752244264450914],[114,281,77,-0.7748721923912936],[114,281,78,-0.7745222101312502],[114,281,79,-0.7741744849752656],[114,282,64,-0.7797942498095523],[114,282,65,-0.779415361328176],[114,282,66,-0.7790386528312317],[114,282,67,-0.778664130666527],[114,282,68,-0.7782918010977288],[114,282,69,-0.7779216703039626],[114,282,70,-0.7775537443793958],[114,282,71,-0.7771880293328265],[114,282,72,-0.7768245310872712],[114,282,73,-0.7764632554795647],[114,282,74,-0.7761042082599359],[114,282,75,-0.7757473950916095],[114,282,76,-0.7753928215503976],[114,282,77,-0.7750404931242918],[114,282,78,-0.7746904152130595],[114,282,79,-0.7743425931278347],[114,283,64,-0.7799637941701032],[114,283,65,-0.7795848281568981],[114,283,66,-0.7792080408390805],[114,283,67,-0.7788334385645874],[114,283,68,-0.7784610275972712],[114,283,69,-0.7780908141164976],[114,283,70,-0.7777228042167301],[114,283,71,-0.777357003907119],[114,283,72,-0.7769934191110892],[114,283,73,-0.7766320556659401],[114,283,74,-0.776272919322422],[114,283,75,-0.7759160157443379],[114,283,76,-0.7755613505081349],[114,283,77,-0.7752089291024976],[114,283,78,-0.7748587569279433],[114,283,79,-0.7745108392964144],[114,284,64,-0.7801334549030492],[114,284,65,-0.7797544128093379],[114,284,66,-0.7793775481173355],[114,284,67,-0.7790028671750848],[114,284,68,-0.7786303762465994],[114,284,69,-0.7782600815114614],[114,284,70,-0.7778919890644074],[114,284,71,-0.7775261049149162],[114,284,72,-0.7771624349867979],[114,284,73,-0.7768009851177938],[114,284,74,-0.7764417610591526],[114,284,75,-0.7760847684752331],[114,284,76,-0.7757300129430955],[114,284,77,-0.7753774999520947],[114,284,78,-0.7750272349034764],[114,284,79,-0.7746792231099693],[114,285,64,-0.7803032316156087],[114,285,65,-0.7799241148941051],[114,285,66,-0.7795471742759976],[114,285,67,-0.7791724161094102],[114,285,68,-0.7787998466584941],[114,285,69,-0.7784294721030243],[114,285,70,-0.7780612985379861],[114,285,71,-0.7776953319731643],[114,285,72,-0.7773315783327306],[114,285,73,-0.7769700434548453],[114,285,74,-0.776610733091233],[114,285,75,-0.7762536529067853],[114,285,76,-0.7758988084791534],[114,285,77,-0.7755462052983404],[114,285,78,-0.7751958487662984],[114,285,79,-0.7748477441965207],[114,286,64,-0.7804731239141638],[114,286,65,-0.7800939340189645],[114,286,66,-0.7797169189242134],[114,286,67,-0.7793420849780921],[114,286,68,-0.7789694384448645],[114,286,69,-0.7785989855044753],[114,286,70,-0.7782307322521353],[114,286,71,-0.7778646846979111],[114,286,72,-0.7775008487663136],[114,286,73,-0.7771392302958986],[114,286,74,-0.7767798350388438],[114,286,75,-0.7764226686605515],[114,286,76,-0.7760677367392411],[114,286,77,-0.7757150447655419],[114,286,78,-0.7753645981420905],[114,286,79,-0.7750164021831227],[114,287,64,-0.7806431314043223],[114,287,65,-0.7802638697908971],[114,287,66,-0.7798867816703371],[114,287,67,-0.7795118733908568],[114,287,68,-0.7791391512168094],[114,287,69,-0.778768621328285],[114,287,70,-0.7784002898206962],[114,287,71,-0.7780341627043684],[114,287,72,-0.7776702459041281],[114,287,73,-0.7773085452589039],[114,287,74,-0.7769490665213039],[114,287,75,-0.7765918153572182],[114,287,76,-0.7762367973454121],[114,287,77,-0.7758840179771189],[114,287,78,-0.7755334826556377],[114,287,79,-0.7751851966959253],[114,288,64,-0.780813253690894],[114,288,65,-0.780433921816078],[114,288,66,-0.7800567621219078],[114,288,67,-0.7796817809566072],[114,288,68,-0.7793089845845946],[114,288,69,-0.7789383791860816],[114,288,70,-0.7785699708566594],[114,288,71,-0.7782037656068883],[114,288,72,-0.7778397693618874],[114,288,73,-0.777477987960935],[114,288,74,-0.7771184271570466],[114,288,75,-0.7767610926165779],[114,288,76,-0.7764059899188174],[114,288,77,-0.7760531245555804],[114,288,78,-0.775702501930806],[114,288,79,-0.775354127360151],[114,289,64,-0.7809834903778697],[114,289,65,-0.780604089699853],[114,289,66,-0.7802268598856266],[114,289,67,-0.7798518072833991],[114,289,68,-0.7794789381576301],[114,289,69,-0.7791082586886291],[114,289,70,-0.7787397749721419],[114,289,71,-0.7783734930189408],[114,289,72,-0.7780094187544135],[114,289,73,-0.7776475580181657],[114,289,74,-0.7772879165635971],[114,289,75,-0.7769305000575062],[114,289,76,-0.7765753140796825],[114,289,77,-0.7762223641225009],[114,289,78,-0.7758716555905191],[114,289,79,-0.775523193800071],[114,290,64,-0.7811538410684811],[114,290,65,-0.7807743730468003],[114,290,66,-0.780397074567418],[114,290,67,-0.780021951978503],[114,290,68,-0.7796490115445321],[114,290,69,-0.7792782594458887],[114,290,70,-0.7789097017784495],[114,290,71,-0.7785433445531753],[114,290,72,-0.7781791936956999],[114,290,73,-0.7778172550459322],[114,290,74,-0.7774575343576341],[114,290,75,-0.7771000372980239],[114,290,76,-0.7767447694473696],[114,290,77,-0.7763917362985836],[114,290,78,-0.7760409432568198],[114,290,79,-0.7756923956390678],[114,291,64,-0.7813243053651695],[114,291,65,-0.7809447714606993],[114,291,66,-0.7805674057723984],[114,291,67,-0.7801922146483722],[114,291,68,-0.7798192043530902],[114,291,69,-0.779448381066986],[114,291,70,-0.7790797508860438],[114,291,71,-0.778713319821389],[114,291,72,-0.7783490937988782],[114,291,73,-0.7779870786587009],[114,291,74,-0.7776272801549577],[114,291,75,-0.7772697039552643],[114,291,76,-0.776914355640345],[114,291,77,-0.7765612407036269],[114,291,78,-0.7762103645508385],[114,291,79,-0.775861732499603],[114,292,64,-0.7814948828696103],[114,292,65,-0.7811152845445536],[114,292,66,-0.7807378531048998],[114,292,67,-0.7803625948986664],[114,292,68,-0.7799895161902919],[114,292,69,-0.779618623160236],[114,292,70,-0.7792499219045665],[114,292,71,-0.7788834184345502],[114,292,72,-0.778519118676243],[114,292,73,-0.7781570284700918],[114,292,74,-0.7777971535705133],[114,292,75,-0.7774394996454979],[114,292,76,-0.7770840722762031],[114,292,77,-0.7767308769565492],[114,292,78,-0.7763799190928168],[114,292,79,-0.7760312040032407],[114,293,64,-0.78166557318268],[114,293,65,-0.7812859119005592],[114,293,66,-0.7809084161684376],[114,293,67,-0.7805330923342203],[114,293,68,-0.7801599466622905],[114,293,69,-0.7797889853331104],[114,293,70,-0.7794202144428073],[114,293,71,-0.7790536400027663],[114,293,72,-0.7786892679392189],[114,293,73,-0.7783271040928468],[114,293,74,-0.7779671542183593],[114,293,75,-0.7776094239840988],[114,293,76,-0.7772539189716341],[114,293,77,-0.7769006446753558],[114,293,78,-0.7765496065020744],[114,293,79,-0.776200809770615],[114,294,64,-0.7818363759045184],[114,294,65,-0.7814566531301665],[114,294,66,-0.7810790945657724],[114,294,67,-0.7807037065591044],[114,294,68,-0.7803304953744664],[114,294,69,-0.7799594671922989],[114,294,70,-0.7795906281087657],[114,294,71,-0.7792239841353455],[114,294,72,-0.778859541198423],[114,294,73,-0.7784973051388908],[114,294,74,-0.7781372817117287],[114,294,75,-0.7777794765856079],[114,294,76,-0.7774238953424858],[114,294,77,-0.7770705434772012],[114,294,78,-0.7767194263970725],[114,294,79,-0.7763705494214928],[114,295,64,-0.7820072906345054],[114,295,65,-0.7816275078340571],[114,295,66,-0.7812498878988872],[114,295,67,-0.7808744371766027],[114,295,68,-0.7805011619314046],[114,295,69,-0.7801300683436874],[114,295,70,-0.7797611625096272],[114,295,71,-0.7793944504407739],[114,295,72,-0.7790299380636413],[114,295,73,-0.7786676312193098],[114,295,74,-0.7783075356630065],[114,295,75,-0.777949657063709],[114,295,76,-0.7775940010037408],[114,295,77,-0.777240572978366],[114,295,78,-0.7768893783953892],[114,295,79,-0.7765404225747495],[114,296,64,-0.782178316971239],[114,296,65,-0.781798475612121],[114,296,66,-0.7814207957689641],[114,296,67,-0.7810452837891897],[114,296,68,-0.7806719459368713],[114,296,69,-0.7803007883923339],[114,296,70,-0.7799318172517421],[114,296,71,-0.779565038526693],[114,296,72,-0.779200458143806],[114,296,73,-0.7788380819443268],[114,296,74,-0.7784779156837063],[114,296,75,-0.7781199650312058],[114,296,76,-0.7777642355694924],[114,296,77,-0.7774107327942334],[114,296,78,-0.7770594621136973],[114,296,79,-0.7767104288483466],[114,297,64,-0.782349454512596],[114,297,65,-0.7819695560635185],[114,297,66,-0.7815918177764465],[114,297,67,-0.7812162459985921],[114,297,68,-0.7808428469938764],[114,297,69,-0.7804716269425309],[114,297,70,-0.7801025919406854],[114,297,71,-0.7797357479999603],[114,297,72,-0.7793711010470573],[114,297,73,-0.779008656923364],[114,297,74,-0.7786484213845323],[114,297,75,-0.7782904001000845],[114,297,76,-0.7779345986530082],[114,297,77,-0.7775810225393519],[114,297,78,-0.7772296771678252],[114,297,79,-0.7768805678593935],[114,298,64,-0.7825207028557],[114,298,65,-0.7821407487866476],[114,298,66,-0.7817629535210071],[114,298,67,-0.7813873234057562],[114,298,68,-0.7810138647046404],[114,298,69,-0.7806425835977733],[114,298,70,-0.7802734861812258],[114,298,71,-0.7799065784666179],[114,298,72,-0.779541866380711],[114,298,73,-0.7791793557650105],[114,298,74,-0.7788190523753468],[114,298,75,-0.77846096188148],[114,298,76,-0.7781050898666959],[114,298,77,-0.7777514418274016],[114,298,78,-0.777400023172726],[114,298,79,-0.7770508392241147],[114,299,64,-0.7826920615969462],[114,299,65,-0.7823120533791685],[114,299,66,-0.7819342026015709],[114,299,67,-0.7815585156108726],[114,299,68,-0.7811849986706189],[114,299,69,-0.7808136579607816],[114,299,70,-0.7804444995773487],[114,299,71,-0.7800775295319168],[114,299,72,-0.7797127537512824],[114,299,73,-0.7793501780770465],[114,299,74,-0.7789898082651944],[114,299,75,-0.7786316499857013],[114,299,76,-0.7782757088221287],[114,299,77,-0.7779219902712198],[114,299,78,-0.7775704997425003],[114,299,79,-0.7772212425578738],[114,300,64,-0.7828635303319681],[114,300,65,-0.782483469437971],[114,300,66,-0.782105564616284],[114,300,67,-0.7817298222133435],[114,300,68,-0.7813562484924702],[114,300,69,-0.7809848496334701],[114,300,70,-0.7806156317322248],[114,300,71,-0.7802486008002831],[114,300,72,-0.779883762764454],[114,300,73,-0.7795211234664103],[114,300,74,-0.7791606886622691],[114,300,75,-0.7788024640221981],[114,300,76,-0.7784464551300116],[114,300,77,-0.7780926674827664],[114,300,78,-0.7777411064903632],[114,300,79,-0.7773917774751414],[114,301,64,-0.7830351086557],[114,301,65,-0.7826549965592363],[114,301,66,-0.7822770391625748],[114,301,67,-0.7819012428118445],[114,301,68,-0.781527613770117],[114,301,69,-0.781156158217009],[114,301,70,-0.7807868822482713],[114,301,71,-0.7804197918753816],[114,301,72,-0.7800548930251374],[114,301,73,-0.7796921915392604],[114,301,74,-0.7793316931739765],[114,301,75,-0.7789734035996231],[114,301,76,-0.7786173284002441],[114,301,77,-0.7782634730731879],[114,301,78,-0.7779118430287075],[114,301,79,-0.7775624435895566],[114,302,64,-0.7832067961623537],[114,302,65,-0.782826634338414],[114,302,66,-0.7824486258371308],[114,302,67,-0.7820727770043011],[114,302,68,-0.7816990941027234],[114,302,69,-0.7813275833118006],[114,302,70,-0.7809582507271287],[114,302,71,-0.780591102360091],[114,302,72,-0.7802261441374501],[114,302,73,-0.7798633819009527],[114,302,74,-0.779502821406911],[114,302,75,-0.7791444683258083],[114,302,76,-0.7787883282418967],[114,302,77,-0.7784344066527928],[114,302,78,-0.7780827089690799],[114,302,79,-0.7777332405139038],[114,303,64,-0.7833785924453955],[114,303,65,-0.7829983823701996],[114,303,66,-0.7826203242358765],[114,303,67,-0.7822444243878668],[114,303,68,-0.781870689088672],[114,303,69,-0.7814991245174566],[114,303,70,-0.7811297367696385],[114,303,71,-0.7807625318564821],[114,303,72,-0.7803975157046921],[114,303,73,-0.780034694156017],[114,303,74,-0.7796740729668316],[114,303,75,-0.7793156578077429],[114,303,76,-0.7789594542631877],[114,303,77,-0.7786054678310289],[114,303,78,-0.7782537039221575],[114,303,79,-0.7779041678600893],[114,304,64,-0.7835504970976084],[114,304,65,-0.7831702402485953],[114,304,66,-0.782792133954034],[114,304,67,-0.7824161845589842],[114,304,68,-0.7820423983256255],[114,304,69,-0.7816707814328602],[114,304,70,-0.781301339975904],[114,304,71,-0.7809340799658793],[114,304,72,-0.7805690073294085],[114,304,73,-0.780206127908219],[114,304,74,-0.7798454474587249],[114,304,75,-0.7794869716516342],[114,304,76,-0.7791307060715453],[114,304,77,-0.7787766562165452],[114,304,78,-0.7784248274978103],[114,304,79,-0.778075225239204],[114,305,64,-0.783722509711059],[114,305,65,-0.7833422075668786],[114,305,66,-0.7829640545860916],[114,305,67,-0.7825880571133523],[114,305,68,-0.782214221410494],[114,305,69,-0.7818425536561332],[114,305,70,-0.781473059945259],[114,305,71,-0.7811057462888276],[114,305,72,-0.7807406186133563],[114,305,73,-0.7803776827605275],[114,305,74,-0.780016944486772],[114,305,75,-0.7796584094628752],[114,305,76,-0.779302083273575],[114,305,77,-0.7789479714171593],[114,305,78,-0.7785960793050679],[114,305,79,-0.7782464122614896],[114,306,64,-0.783894629877122],[114,306,65,-0.7835142839176256],[114,306,66,-0.7831360857258273],[114,306,67,-0.782760041645951],[114,306,68,-0.7823861579394601],[114,306,69,-0.7820144407846602],[114,306,70,-0.7816448962762904],[114,306,71,-0.7812775304251172],[114,306,72,-0.7809123491575285],[114,306,73,-0.7805493583151389],[114,306,74,-0.7801885636543724],[114,306,75,-0.7798299708460691],[114,306,76,-0.7794735854750832],[114,306,77,-0.7791194130398813],[114,306,78,-0.7787674589521442],[114,306,79,-0.7784177285363638],[114,307,64,-0.7840668571864482],[114,307,65,-0.7836864688926793],[114,307,66,-0.7833082269662764],[114,307,67,-0.782932137751009],[114,307,68,-0.7825582075079451],[114,307,69,-0.7821864424150564],[114,307,70,-0.7818168485668072],[114,307,71,-0.7814494319737506],[114,307,72,-0.781084198562122],[114,307,73,-0.7807211541734445],[114,307,74,-0.7803603045641117],[114,307,75,-0.7800016554049959],[114,307,76,-0.7796452122810449],[114,307,77,-0.7792909806908812],[114,307,78,-0.7789389660464039],[114,307,79,-0.7785891736723864],[114,308,64,-0.7842391912290254],[114,308,65,-0.7838587620832107],[114,308,66,-0.7834804778997938],[114,308,67,-0.7831043450220644],[114,308,68,-0.782730369710672],[114,308,69,-0.7823585581432286],[114,308,70,-0.7819889164139011],[114,308,71,-0.7816214505330049],[114,308,72,-0.7812561664265989],[114,308,73,-0.7808930699360916],[114,308,74,-0.7805321668178234],[114,308,75,-0.7801734627426752],[114,308,76,-0.7798169632956656],[114,308,77,-0.7794626739755506],[114,308,78,-0.7791106001944252],[114,308,79,-0.7787607472773224],[114,309,64,-0.7844116315941556],[114,309,65,-0.7840311630796961],[114,309,66,-0.7836528381180297],[114,309,67,-0.7832766630519428],[114,309,68,-0.7829026441416408],[114,309,69,-0.7825307875643532],[114,309,70,-0.7821610994139242],[114,309,71,-0.7817935857004081],[114,309,72,-0.7814282523496638],[114,309,73,-0.7810651052029618],[114,309,74,-0.7807041500165658],[114,309,75,-0.7803453924613423],[114,309,76,-0.7799888381223581],[114,309,77,-0.7796344924984799],[114,309,78,-0.7792823610019766],[114,309,79,-0.7789324489581174],[114,310,64,-0.7845841778704329],[114,310,65,-0.7842036714718938],[114,310,66,-0.7838253072119081],[114,310,67,-0.7834490914327334],[114,310,68,-0.7830750303941075],[114,310,69,-0.7827031302728522],[114,310,70,-0.7823333971624653],[114,310,71,-0.7819658370727162],[114,310,72,-0.7816004559292404],[114,310,73,-0.7812372595731463],[114,310,74,-0.7808762537605981],[114,310,75,-0.780517444162425],[114,310,76,-0.7801608363637189],[114,310,77,-0.7798064358634347],[114,310,78,-0.7794542480739922],[114,310,79,-0.7791042783208756],[114,311,64,-0.7847568296458036],[114,311,65,-0.7843762868489065],[114,311,66,-0.7839978847716876],[114,311,67,-0.7836216297558519],[114,311,68,-0.7832475280606441],[114,311,69,-0.7828755858624551],[114,311,70,-0.7825058092544118],[114,311,71,-0.782138204245975],[114,311,72,-0.7817727767625329],[114,311,73,-0.7814095326450086],[114,311,74,-0.7810484776494433],[114,311,75,-0.7806896174466058],[114,311,76,-0.7803329576215905],[114,311,77,-0.7799785036734175],[114,311,78,-0.7796262610146354],[114,311,79,-0.7792762349709209],[114,312,64,-0.7849295865075352],[114,312,65,-0.7845490087991477],[114,312,66,-0.7841705703869291],[114,312,67,-0.7837942776120062],[114,312,68,-0.7834201367331072],[114,312,69,-0.7830481539261667],[114,312,70,-0.7826783352839176],[114,312,71,-0.7823106868154878],[114,312,72,-0.7819452144459942],[114,312,73,-0.7815819240161516],[114,312,74,-0.7812208212818549],[114,312,75,-0.7808619119137892],[114,312,76,-0.7805052014970284],[114,312,77,-0.7801506955306354],[114,312,78,-0.7797983994272653],[114,312,79,-0.7794483185127643],[114,313,64,-0.7851024480422396],[114,313,65,-0.7847218369103667],[114,313,66,-0.7843433636465194],[114,313,67,-0.7839670345912217],[114,313,68,-0.7835928560026608],[114,313,69,-0.783220834056291],[114,313,70,-0.7828509748444266],[114,313,71,-0.7824832843758385],[114,313,72,-0.7821177685753495],[114,313,73,-0.7817544332834417],[114,313,74,-0.7813932842558409],[114,313,75,-0.7810343271631252],[114,313,76,-0.7806775675903254],[114,313,77,-0.780323011036524],[114,313,78,-0.7799706629144603],[114,313,79,-0.7796205285501282],[114,314,64,-0.7852754138358409],[114,314,65,-0.7848947707696159],[114,314,66,-0.7845162641386395],[114,314,67,-0.7841399002828091],[114,314,68,-0.7837656854597453],[114,314,69,-0.7833936258443984],[114,314,70,-0.7830237275286399],[114,314,71,-0.78265599652086],[114,314,72,-0.7822904387455634],[114,314,73,-0.7819270600429762],[114,314,74,-0.7815658661686311],[114,314,75,-0.7812068627929771],[114,314,76,-0.7808500555009782],[114,314,77,-0.7804954497917145],[114,314,78,-0.7801430510779861],[114,314,79,-0.7797928646859129],[114,315,64,-0.785448483473637],[114,315,65,-0.7850678099633119],[114,315,66,-0.784689271450826],[114,315,67,-0.7843128742754246],[114,315,68,-0.7839386246941382],[114,315,69,-0.7835665288813878],[114,315,70,-0.7831965929285784],[114,315,71,-0.7828288228436956],[114,315,72,-0.782463224550902],[114,315,73,-0.7820998038901446],[114,315,74,-0.7817385666167397],[114,315,75,-0.7813795184009833],[114,315,76,-0.7810226648277503],[114,315,77,-0.7806680113960953],[114,315,78,-0.7803155635188573],[114,315,79,-0.7799653265222593],[114,316,64,-0.7856216565402767],[114,316,65,-0.7852409540772134],[114,316,66,-0.7848623851699477],[114,316,67,-0.7844859561570484],[114,316,68,-0.7841116732949307],[114,316,69,-0.7837395427574629],[114,316,70,-0.7833695706355588],[114,316,71,-0.7830017629367756],[114,316,72,-0.7826361255849099],[114,316,73,-0.7822726644196061],[114,316,74,-0.7819113851959407],[114,316,75,-0.7815522935840338],[114,316,76,-0.7811953951686479],[114,316,77,-0.7808406954487896],[114,316,78,-0.7804881998373141],[114,316,79,-0.7801379136605252],[114,317,64,-0.7857949326197362],[114,317,65,-0.7854142026963972],[114,317,66,-0.7850356048821827],[114,317,67,-0.7846591455149603],[114,317,68,-0.7842848308505057],[114,317,69,-0.7839126670621097],[114,317,70,-0.783542660240171],[114,317,71,-0.7831748163917944],[114,317,72,-0.7828091414403866],[114,317,73,-0.7824456412252657],[114,317,74,-0.7820843215012456],[114,317,75,-0.7817251879382467],[114,317,76,-0.7813682461208966],[114,317,77,-0.781013501548131],[114,317,78,-0.7806609596327985],[114,317,79,-0.7803106257012615],[114,318,64,-0.7859683112953816],[114,318,65,-0.7855875554053202],[114,318,66,-0.78520893017308],[114,318,67,-0.7848324419358021],[114,318,68,-0.7844580969485986],[114,318,69,-0.7840859013841578],[114,318,70,-0.7837158613323394],[114,318,71,-0.7833479827997717],[114,318,72,-0.7829822717094481],[114,318,73,-0.7826187339003368],[114,318,74,-0.7822573751269649],[114,318,75,-0.7818982010590309],[114,318,76,-0.7815412172810039],[114,318,77,-0.781186429291726],[114,318,78,-0.7808338425040169],[114,318,79,-0.7804834622442751],[114,319,64,-0.7861417921499443],[114,319,65,-0.7857610117877964],[114,319,66,-0.7853823606275364],[114,319,67,-0.7850058450055546],[114,319,68,-0.784631471176274],[114,319,69,-0.7842592453117571],[114,319,70,-0.7838891735012998],[114,319,71,-0.7835212617510302],[114,319,72,-0.7831555159835044],[114,319,73,-0.7827919420373166],[114,319,74,-0.7824305456666849],[114,319,75,-0.7820713325410618],[114,319,76,-0.7817143082447351],[114,319,77,-0.7813594782764304],[114,319,78,-0.7810068480489162],[114,319,79,-0.7806564228886045],[115,-64,64,-0.7301802270182004],[115,-64,65,-0.7299005445068935],[115,-64,66,-0.7296232480437881],[115,-64,67,-0.7293483427327997],[115,-64,68,-0.7290758335848884],[115,-64,69,-0.7288057255176461],[115,-64,70,-0.7285380233548696],[115,-64,71,-0.7282727318261364],[115,-64,72,-0.7280098555663801],[115,-64,73,-0.7277493991154803],[115,-64,74,-0.727491366917823],[115,-64,75,-0.7272357633218929],[115,-64,76,-0.7269825925798514],[115,-64,77,-0.7267318588471172],[115,-64,78,-0.7264835661819499],[115,-64,79,-0.7262377185450285],[115,-63,64,-0.730295606778752],[115,-63,65,-0.730015482957712],[115,-63,66,-0.7297377451370406],[115,-63,67,-0.7294623984267626],[115,-63,68,-0.7291894478439483],[115,-63,69,-0.7289188983123012],[115,-63,70,-0.7286507546617296],[115,-63,71,-0.7283850216279236],[115,-63,72,-0.7281217038519294],[115,-63,73,-0.7278608058797399],[115,-63,74,-0.7276023321618544],[115,-63,75,-0.7273462870528709],[115,-63,76,-0.7270926748110639],[115,-63,77,-0.7268414995979652],[115,-63,78,-0.7265927654779469],[115,-63,79,-0.7263464764178003],[115,-62,64,-0.7304111475354342],[115,-62,65,-0.7301305829278011],[115,-62,66,-0.7298524042711838],[115,-62,67,-0.7295766166817093],[115,-62,68,-0.7293032251825502],[115,-62,69,-0.7290322347035136],[115,-62,70,-0.7287636500806125],[115,-62,71,-0.7284974760556419],[115,-62,72,-0.7282337172757534],[115,-62,73,-0.7279723782930462],[115,-62,74,-0.7277134635641254],[115,-62,75,-0.7274569774496955],[115,-62,76,-0.7272029242141372],[115,-62,77,-0.7269513080250884],[115,-62,78,-0.7267021329530272],[115,-62,79,-0.7264554029708499],[115,-61,64,-0.730526849556042],[115,-61,65,-0.7302458446885806],[115,-61,66,-0.7299672257212442],[115,-61,67,-0.7296909977762531],[115,-61,68,-0.7294171658828759],[115,-61,69,-0.7291457349770151],[115,-61,70,-0.7288767099007808],[115,-61,71,-0.7286100954020653],[115,-61,72,-0.7283458961341193],[115,-61,73,-0.7280841166551397],[115,-61,74,-0.7278247614278311],[115,-61,75,-0.7275678348189969],[115,-61,76,-0.7273133410991174],[115,-61,77,-0.7270612844419294],[115,-61,78,-0.7268116689240101],[115,-61,79,-0.7265644985243546],[115,-60,64,-0.7306427131051723],[115,-60,65,-0.7303612685082691],[115,-60,66,-0.730082209759043],[115,-60,67,-0.7298055419858007],[115,-60,68,-0.7295312702238976],[115,-60,69,-0.7292593994153249],[115,-60,70,-0.728989934408282],[115,-60,71,-0.7287228799567513],[115,-60,72,-0.7284582407200739],[115,-60,73,-0.7281960212625387],[115,-60,74,-0.7279362260529417],[115,-60,75,-0.7276788594641783],[115,-60,76,-0.727423925772821],[115,-60,77,-0.727171429158699],[115,-60,78,-0.7269213737044813],[115,-60,79,-0.7266737633952549],[115,-59,64,-0.730758738444211],[115,-59,65,-0.7304768546518716],[115,-59,66,-0.7301973566531861],[115,-59,67,-0.7299202495825392],[115,-59,68,-0.7296455384813657],[115,-59,69,-0.7293732282977378],[115,-59,70,-0.7291033238859361],[115,-59,71,-0.7288358300060261],[115,-59,72,-0.7285707513234321],[115,-59,73,-0.7283080924085265],[115,-59,74,-0.7280478577361901],[115,-59,75,-0.727790051685403],[115,-59,76,-0.7275346785388228],[115,-59,77,-0.7272817424823639],[115,-59,78,-0.7270312476047803],[115,-59,79,-0.7267831978972442],[115,-58,64,-0.730874925831383],[115,-58,65,-0.7305926033812291],[115,-58,66,-0.7303126666691115],[115,-58,67,-0.7300351208354855],[115,-58,68,-0.7297599709278576],[115,-58,69,-0.7294872219003727],[115,-58,70,-0.7292168786133855],[115,-58,71,-0.7289489458330362],[115,-58,72,-0.7286834282308248],[115,-58,73,-0.7284203303832005],[115,-58,74,-0.728159656771121],[115,-58,75,-0.7279014117796441],[115,-58,76,-0.727645599697505],[115,-58,77,-0.727392224716696],[115,-58,78,-0.7271412909320496],[115,-58,79,-0.7268928023408161],[115,-57,64,-0.730991275521733],[115,-57,65,-0.7307085149549988],[115,-57,66,-0.7304281400690713],[115,-57,67,-0.7301501560104681],[115,-57,68,-0.7298745678327591],[115,-57,69,-0.7296013804961543],[115,-57,70,-0.7293305988670746],[115,-57,71,-0.7290622277177276],[115,-57,72,-0.7287962717256812],[115,-57,73,-0.7285327354734535],[115,-57,74,-0.7282716234480721],[115,-57,75,-0.7280129400406647],[115,-57,76,-0.7277566895460372],[115,-57,77,-0.7275028761622531],[115,-57,78,-0.7272515039902154],[115,-57,79,-0.7270025770332458],[115,-56,64,-0.7311077877671474],[115,-56,65,-0.7308245896286772],[115,-56,66,-0.7305437771121536],[115,-56,67,-0.7302653553701478],[115,-56,68,-0.7299893294622859],[115,-56,69,-0.7297157043548346],[115,-56,70,-0.7294444849202731],[115,-56,71,-0.7291756759368686],[115,-56,72,-0.7289092820882493],[115,-56,73,-0.7286453079629951],[115,-56,74,-0.7283837580541952],[115,-56,75,-0.7281246367590404],[115,-56,76,-0.7278679483783997],[115,-56,77,-0.7276136971164002],[115,-56,78,-0.7273618870800092],[115,-56,79,-0.7271125222786117],[115,-55,64,-0.7312244628163357],[115,-55,65,-0.7309408276545808],[115,-55,66,-0.7306595780542631],[115,-55,67,-0.7303807191739999],[115,-55,68,-0.7301042560794648],[115,-55,69,-0.7298301937429736],[115,-55,70,-0.729558537043056],[115,-55,71,-0.7292892907640303],[115,-55,72,-0.7290224595955782],[115,-55,73,-0.7287580481323326],[115,-55,74,-0.7284960608734377],[115,-55,75,-0.7282365022221393],[115,-55,76,-0.7279793764853626],[115,-55,77,-0.7277246878732908],[115,-55,78,-0.7274724404989479],[115,-55,79,-0.727222638377776],[115,-54,64,-0.7313413009148795],[115,-54,65,-0.7310572292818948],[115,-54,66,-0.730775543148171],[115,-54,67,-0.7304962476783629],[115,-54,68,-0.7302193479441833],[115,-54,69,-0.7299448489239895],[115,-54,70,-0.7296727555023529],[115,-54,71,-0.7294030724696361],[115,-54,72,-0.7291358045215655],[115,-54,73,-0.7288709562588201],[115,-54,74,-0.7286085321865909],[115,-54,75,-0.7283485367141715],[115,-54,76,-0.7280909741545357],[115,-54,77,-0.7278358487239154],[115,-54,78,-0.7275831645413842],[115,-54,79,-0.7273329256284338],[115,-53,64,-0.7314583023052208],[115,-53,65,-0.7311737947566621],[115,-53,66,-0.7308916726435023],[115,-53,67,-0.730611941136426],[115,-53,68,-0.730334605313177],[115,-53,69,-0.7300596701581449],[115,-53,70,-0.7297871405619363],[115,-53,71,-0.7295170213209491],[115,-53,72,-0.7292493171369467],[115,-53,73,-0.7289840326166465],[115,-53,74,-0.7287211722712786],[115,-53,75,-0.7284607405161769],[115,-53,76,-0.7282027416703559],[115,-53,77,-0.7279471799560893],[115,-53,78,-0.7276940594984926],[115,-53,79,-0.7274433843251003],[115,-52,64,-0.7315754672266493],[115,-52,65,-0.7312905243217699],[115,-52,66,-0.7310079667867241],[115,-52,67,-0.7307277997982173],[115,-52,68,-0.7304500284400166],[115,-52,69,-0.7301746577025361],[115,-52,70,-0.7299016924824084],[115,-52,71,-0.7296311375820594],[115,-52,72,-0.7293629977092815],[115,-52,73,-0.7290972774768224],[115,-52,74,-0.7288339814019439],[115,-52,75,-0.728573113906012],[115,-52,76,-0.7283146793140749],[115,-52,77,-0.7280586818544401],[115,-52,78,-0.727805125658258],[115,-52,79,-0.7275540147590982],[115,-51,64,-0.7316927959153525],[115,-51,65,-0.731407418217],[115,-51,66,-0.7311244258211943],[115,-51,67,-0.7308438239106536],[115,-51,68,-0.730565617575159],[115,-51,69,-0.7302898118111414],[115,-51,70,-0.7300164115212514],[115,-51,71,-0.7297454215139343],[115,-51,72,-0.7294768465030037],[115,-51,73,-0.72921069110723],[115,-51,74,-0.7289469598498983],[115,-51,75,-0.7286856571583997],[115,-51,76,-0.7284267873638076],[115,-51,77,-0.7281703547004565],[115,-51,78,-0.7279163633055239],[115,-51,79,-0.7276648172186073],[115,-50,64,-0.7318102886043958],[115,-50,65,-0.731524476679009],[115,-50,66,-0.731241049987143],[115,-50,67,-0.7309600137175197],[115,-50,68,-0.7306813729659265],[115,-50,69,-0.7304051327348021],[115,-50,70,-0.7301312979328071],[115,-50,71,-0.7298598733743982],[115,-50,72,-0.7295908637794021],[115,-50,73,-0.7293242737726033],[115,-50,74,-0.7290601078833032],[115,-50,75,-0.7287983705449095],[115,-50,76,-0.7285390660945137],[115,-50,77,-0.7282821987724694],[115,-50,78,-0.7280277727219736],[115,-50,79,-0.7277757919886444],[115,-49,64,-0.7319279455237454],[115,-49,65,-0.7316416999413513],[115,-49,66,-0.7313578395216944],[115,-49,67,-0.7310763694594922],[115,-49,68,-0.7307972948565294],[115,-49,69,-0.7305206207212447],[115,-49,70,-0.7302463519682998],[115,-49,71,-0.7299744934181548],[115,-49,72,-0.7297050497966413],[115,-49,73,-0.7294380257345503],[115,-49,74,-0.7291734257671908],[115,-49,75,-0.7289112543339797],[115,-49,76,-0.728651515778019],[115,-49,77,-0.7283942143456732],[115,-49,78,-0.7281393541861516],[115,-49,79,-0.7278869393510854],[115,-48,64,-0.7320457669002483],[115,-48,65,-0.7317590882344586],[115,-48,66,-0.7314747946588473],[115,-48,67,-0.7311928913741188],[115,-48,68,-0.7309133834880469],[115,-48,69,-0.7306362760150611],[115,-48,70,-0.7303615738758162],[115,-48,71,-0.7300892818967677],[115,-48,72,-0.7298194048097435],[115,-48,73,-0.729551947251533],[115,-48,74,-0.7292869137634451],[115,-48,75,-0.7290243087908979],[115,-48,76,-0.7287641366829956],[115,-48,77,-0.7285064016921061],[115,-48,78,-0.728251107973444],[115,-48,79,-0.727998259584645],[115,-47,64,-0.7321637529576825],[115,-47,65,-0.7318766417856906],[115,-47,66,-0.7315919156295253],[115,-47,67,-0.7313095796958691],[115,-47,68,-0.7310296390984761],[115,-47,69,-0.7307520988577585],[115,-47,70,-0.7304769639003559],[115,-47,71,-0.7302042390587099],[115,-47,72,-0.7299339290706374],[115,-47,73,-0.7296660385789177],[115,-47,74,-0.7294005721308512],[115,-47,75,-0.7291375341778495],[115,-47,76,-0.7288769290750112],[115,-47,77,-0.7286187610807002],[115,-47,78,-0.7283630343561276],[115,-47,79,-0.7281097529649272],[115,-46,64,-0.7322819039167449],[115,-46,65,-0.731994360819322],[115,-46,66,-0.7317092026615635],[115,-46,67,-0.7314264346561208],[115,-46,68,-0.7311460619227199],[115,-46,69,-0.7308680894877468],[115,-46,70,-0.7305925222838172],[115,-46,71,-0.7303193651493513],[115,-46,72,-0.7300486228281455],[115,-46,73,-0.7297802999689613],[115,-46,74,-0.7295144011250827],[115,-46,75,-0.7292509307539063],[115,-46,76,-0.7289898932165175],[115,-46,77,-0.728731292777268],[115,-46,78,-0.7284751336033579],[115,-46,79,-0.7282214197644115],[115,-45,64,-0.7324002199950376],[115,-45,65,-0.7321122455565303],[115,-45,66,-0.7318266559796966],[115,-45,67,-0.7315434564831483],[115,-45,68,-0.7312626521925745],[115,-45,69,-0.730984248140326],[115,-45,70,-0.7307082492649867],[115,-45,71,-0.7304346604109456],[115,-45,72,-0.7301634863279717],[115,-45,73,-0.7298947316707995],[115,-45,74,-0.7296284009986888],[115,-45,75,-0.729364498775013],[115,-45,76,-0.729103029366836],[115,-45,77,-0.7288439970444897],[115,-45,78,-0.7285874059811553],[115,-45,79,-0.7283332602524398],[115,-44,64,-0.7325187014071188],[115,-44,65,-0.7322302962154454],[115,-44,66,-0.7319442758056087],[115,-44,67,-0.7316606454021721],[115,-44,68,-0.7313794101367785],[115,-44,69,-0.731100575047736],[115,-44,70,-0.7308241450795864],[115,-44,71,-0.7305501250826807],[115,-44,72,-0.7302785198127505],[115,-44,73,-0.7300093339304962],[115,-44,74,-0.729742572001144],[115,-44,75,-0.7294782384940366],[115,-44,76,-0.7292163377822083],[115,-44,77,-0.7289568741419631],[115,-44,78,-0.7286998517524556],[115,-44,79,-0.7284452746952672],[115,-43,64,-0.7326373483644907],[115,-43,65,-0.7323485130111373],[115,-43,66,-0.7320620623579204],[115,-43,67,-0.7317780016353457],[115,-43,68,-0.7314963359810015],[115,-43,69,-0.7312170704391432],[115,-43,70,-0.7309402099602634],[115,-43,71,-0.7306657594006654],[115,-43,72,-0.7303937235220351],[115,-43,73,-0.7301241069910301],[115,-43,74,-0.7298569143788356],[115,-43,75,-0.7295921501607543],[115,-43,76,-0.7293298187157833],[115,-43,77,-0.7290699243261906],[115,-43,78,-0.728812471177096],[115,-43,79,-0.7285574633560481],[115,-42,64,-0.7327561610755853],[115,-42,65,-0.7324668961556031],[115,-42,66,-0.7321800158521761],[115,-42,67,-0.7318955254017436],[115,-42,68,-0.7316134299478299],[115,-42,69,-0.7313337345406294],[115,-42,70,-0.731056444136576],[115,-42,71,-0.7307815635979167],[115,-42,72,-0.7305090976922839],[115,-42,73,-0.7302390510922832],[115,-42,74,-0.72997142837505],[115,-42,75,-0.72970623402184],[115,-42,76,-0.729443472417604],[115,-42,77,-0.7291831478505657],[115,-42,78,-0.728925264511803],[115,-42,79,-0.728669826494823],[115,-41,64,-0.7328751397458158],[115,-41,65,-0.7325854458578175],[115,-41,66,-0.7322981365008947],[115,-41,67,-0.7320132169174111],[115,-41,68,-0.7317306922568181],[115,-41,69,-0.7314505675752401],[115,-41,70,-0.7311728478350433],[115,-41,71,-0.7308975379044101],[115,-41,72,-0.7306246425569103],[115,-41,73,-0.7303541664710889],[115,-41,74,-0.7300861142300237],[115,-41,75,-0.7298204903209141],[115,-41,76,-0.7295572991346571],[115,-41,77,-0.7292965449654238],[115,-41,78,-0.7290382320102416],[115,-41,79,-0.7287823643685689],[115,-40,64,-0.7329942845775564],[115,-40,65,-0.7327041623237125],[115,-40,66,-0.732416424513549],[115,-40,67,-0.7321310763953444],[115,-40,68,-0.7318481231244681],[115,-40,69,-0.7315675697629654],[115,-40,70,-0.7312894212791263],[115,-40,71,-0.7310136825470593],[115,-40,72,-0.730740358346263],[115,-40,73,-0.7304694533612137],[115,-40,74,-0.7302009721809225],[115,-40,75,-0.7299349192985243],[115,-40,76,-0.7296712991108536],[115,-40,77,-0.7294101159180213],[115,-40,78,-0.729151373922996],[115,-40,79,-0.728895077231179],[115,-39,64,-0.7331135957701648],[115,-39,65,-0.7328230457562008],[115,-39,66,-0.7325348800965886],[115,-39,67,-0.7322491040455128],[115,-39,68,-0.7319657227642515],[115,-39,69,-0.7316847413207622],[115,-39,70,-0.7314061646892493],[115,-39,71,-0.7311299977497386],[115,-39,72,-0.7308562452876487],[115,-39,73,-0.7305849119933785],[115,-39,74,-0.7303160024618637],[115,-39,75,-0.7300495211921664],[115,-39,76,-0.7297854725870503],[115,-39,77,-0.7295238609525578],[115,-39,78,-0.7292646904975902],[115,-39,79,-0.729007965333484],[115,-38,64,-0.733233073519962],[115,-38,65,-0.7329420963551541],[115,-38,66,-0.7326535034534194],[115,-38,67,-0.7323673000748389],[115,-38,68,-0.7320834913865906],[115,-38,69,-0.7318020824625343],[115,-38,70,-0.7315230782827801],[115,-38,71,-0.7312464837332624],[115,-38,72,-0.7309723036053108],[115,-38,73,-0.730700542595238],[115,-38,74,-0.7304312053038959],[115,-38,75,-0.7301642962362651],[115,-38,76,-0.72989981980103],[115,-38,77,-0.7296377803101559],[115,-38,78,-0.729378181978469],[115,-38,79,-0.7291210289232328],[115,-37,64,-0.7333527180202831],[115,-37,65,-0.7330613143174551],[115,-37,66,-0.7327722947844545],[115,-37,67,-0.732485664687249],[115,-37,68,-0.7322014291989071],[115,-37,69,-0.7319195933991819],[115,-37,70,-0.7316401622740804],[115,-37,71,-0.731363140715436],[115,-37,72,-0.7310885335204808],[115,-37,73,-0.7308163453914321],[115,-37,74,-0.7305465809350496],[115,-37,75,-0.7302792446622237],[115,-37,76,-0.7300143409875511],[115,-37,77,-0.7297518742289115],[115,-37,78,-0.7294918486070479],[115,-37,79,-0.7292342682451423],[115,-36,64,-0.7334725294614641],[115,-36,65,-0.7331806998369841],[115,-36,66,-0.7328912542871008],[115,-36,67,-0.7326041980836597],[115,-36,68,-0.7323195364056102],[115,-36,69,-0.7320372743385898],[115,-36,70,-0.7317574168744924],[115,-36,71,-0.7314799689110421],[115,-36,72,-0.7312049352513641],[115,-36,73,-0.7309323206035719],[115,-36,74,-0.7306621295803236],[115,-36,75,-0.7303943666984112],[115,-36,76,-0.7301290363783347],[115,-36,77,-0.7298661429438802],[115,-36,78,-0.7296056906216989],[115,-36,79,-0.7293476835408829],[115,-35,64,-0.7335925080308292],[115,-35,65,-0.7333002531046054],[115,-35,66,-0.7330103821557463],[115,-35,67,-0.7327229004619654],[115,-35,68,-0.7324378132080835],[115,-35,69,-0.7321551254856131],[115,-35,70,-0.7318748422923261],[115,-35,71,-0.731596968531828],[115,-35,72,-0.731321509013128],[115,-35,73,-0.7310484684502265],[115,-35,74,-0.730777851461672],[115,-35,75,-0.7305096625701485],[115,-35,76,-0.7302439062020515],[115,-35,77,-0.7299805866870643],[115,-35,78,-0.7297197082577381],[115,-35,79,-0.7294612750490672],[115,-34,64,-0.7337126539127409],[115,-34,65,-0.7334199743082188],[115,-34,66,-0.7331296785818106],[115,-34,67,-0.7328417720170884],[115,-34,68,-0.7325562598047353],[115,-34,69,-0.7322731470421286],[115,-34,70,-0.7319924387329098],[115,-34,71,-0.7317141397865556],[115,-34,72,-0.7314382550179509],[115,-34,73,-0.731164789146974],[115,-34,74,-0.7308937467980542],[115,-34,75,-0.7306251324997595],[115,-34,76,-0.7303589506843716],[115,-34,77,-0.730095205687463],[115,-34,78,-0.729833901747476],[115,-34,79,-0.7295750430052985],[115,-33,64,-0.7338329672885808],[115,-33,65,-0.7335398636327388],[115,-33,66,-0.7332491437537246],[115,-33,67,-0.7329608129409592],[115,-33,68,-0.7326748763909778],[115,-33,69,-0.7323913392070143],[115,-33,70,-0.7321102063985689],[115,-33,71,-0.7318314828809815],[115,-33,72,-0.7315551734750029],[115,-33,73,-0.7312812829063804],[115,-33,74,-0.7310098158054151],[115,-33,75,-0.73074077670655],[115,-33,76,-0.7304741700479447],[115,-33,77,-0.7302100001710516],[115,-33,78,-0.7299482713201961],[115,-33,79,-0.7296889876421515],[115,-32,64,-0.7339534483367707],[115,-32,65,-0.733659921260117],[115,-32,66,-0.7333687778569528],[115,-32,67,-0.7330800234225379],[115,-32,68,-0.7327936631592507],[115,-32,69,-0.732509702176171],[115,-32,70,-0.7322281454886495],[115,-32,71,-0.7319489980178793],[115,-32,72,-0.7316722645904676],[115,-32,73,-0.7313979499380221],[115,-32,74,-0.7311260586967068],[115,-32,75,-0.7308565954068305],[115,-32,76,-0.7305895645124216],[115,-32,77,-0.7303249703608042],[115,-32,78,-0.730062817202178],[115,-32,79,-0.729803109189193],[115,-31,64,-0.7340740972327537],[115,-31,65,-0.7337801473693226],[115,-31,66,-0.7334885810739733],[115,-31,67,-0.7331994036477951],[115,-31,68,-0.7329126202989994],[115,-31,69,-0.7326282361425029],[115,-31,70,-0.7323462561994969],[115,-31,71,-0.7320666853970182],[115,-31,72,-0.7317895285675218],[115,-31,73,-0.7315147904484658],[115,-31,74,-0.7312424756818681],[115,-31,75,-0.7309725888138947],[115,-31,76,-0.730705134294434],[115,-31,77,-0.7304401164766727],[115,-31,78,-0.7301775396166763],[115,-31,79,-0.7299174078729628],[115,-30,64,-0.7341949141490441],[115,-30,65,-0.733900542136392],[115,-30,66,-0.7336085535843282],[115,-30,67,-0.7333189537997618],[115,-30,68,-0.733031747996727],[115,-30,69,-0.7327469412959681],[115,-30,70,-0.7324645387245069],[115,-30,71,-0.7321845452152153],[115,-30,72,-0.7319069656063859],[115,-30,73,-0.7316318046413184],[115,-30,74,-0.7313590669678756],[115,-30,75,-0.7310887571380713],[115,-30,76,-0.7308208796076449],[115,-30,77,-0.7305554387356372],[115,-30,78,-0.7302924387839707],[115,-30,79,-0.7300318839170228],[115,-29,64,-0.7343158992552146],[115,-29,65,-0.7340211057344163],[115,-29,66,-0.7337286955646107],[115,-29,67,-0.7334386740585159],[115,-29,68,-0.7331510464359798],[115,-29,69,-0.7328658178235643],[115,-29,70,-0.7325829932541122],[115,-29,71,-0.7323025776663205],[115,-29,72,-0.7320245759043105],[115,-29,73,-0.7317489927172139],[115,-29,74,-0.7314758327587293],[115,-29,75,-0.7312051005867092],[115,-29,76,-0.7309368006627351],[115,-29,77,-0.7306709373516931],[115,-29,78,-0.7304075149213533],[115,-29,79,-0.7301465375419445],[115,-28,64,-0.7344370527178826],[115,-28,65,-0.7341418383335283],[115,-28,66,-0.7338490071884516],[115,-28,67,-0.7335585646011701],[115,-28,68,-0.7332705157973354],[115,-28,69,-0.7329848659093169],[115,-28,70,-0.7327016199757691],[115,-28,71,-0.7324207829412044],[115,-28,72,-0.7321423596555633],[115,-28,73,-0.7318663548738003],[115,-28,74,-0.7315927732554401],[115,-28,75,-0.7313216193641652],[115,-28,76,-0.7310528976673899],[115,-28,77,-0.7307866125358364],[115,-28,78,-0.7305227682431141],[115,-28,79,-0.7302613689652944],[115,-27,64,-0.7345583747007621],[115,-27,65,-0.7342627401009526],[115,-27,66,-0.7339694886265701],[115,-27,67,-0.7336786256019214],[115,-27,68,-0.7333901562584519],[115,-27,69,-0.7331040857343287],[115,-27,70,-0.7328204190740082],[115,-27,71,-0.7325391612278085],[115,-27,72,-0.7322603170514795],[115,-27,73,-0.7319838913057896],[115,-27,74,-0.73170988865608],[115,-27,75,-0.7314383136718537],[115,-27,76,-0.7311691708263491],[115,-27,77,-0.7309024644961155],[115,-27,78,-0.7306381989605928],[115,-27,79,-0.7303763784016856],[115,-26,64,-0.7346798653646422],[115,-26,65,-0.734383811200986],[115,-26,66,-0.7340901400467535],[115,-26,67,-0.7337988572320316],[115,-26,68,-0.7335099679940489],[115,-26,69,-0.7332234774767601],[115,-26,70,-0.7329393907304138],[115,-26,71,-0.7326577127111243],[115,-26,72,-0.7323784482804416],[115,-26,73,-0.7321016022049376],[115,-26,74,-0.7318271791557613],[115,-26,75,-0.7315551837082269],[115,-26,76,-0.7312856203413873],[115,-26,77,-0.73101849343761],[115,-26,78,-0.7307538072821566],[115,-26,79,-0.7304915660627559],[115,-25,64,-0.7348015248674102],[115,-25,65,-0.7345050517950188],[115,-25,66,-0.73421096161388],[115,-25,67,-0.7339192596598492],[115,-25,68,-0.7336299511759283],[115,-25,69,-0.7333430413118507],[115,-25,70,-0.7330585351236466],[115,-25,71,-0.7327764375732166],[115,-25,72,-0.732496753527901],[115,-25,73,-0.7322194877600662],[115,-25,74,-0.7319446449466591],[115,-25,75,-0.7316722296687959],[115,-25,76,-0.731402246411335],[115,-25,77,-0.7311346995624528],[115,-25,78,-0.7308695934132231],[115,-25,79,-0.7306069321571909],[115,-24,64,-0.734923353364031],[115,-24,65,-0.7346264620415158],[115,-24,66,-0.734331953489897],[115,-24,67,-0.7340398330507883],[115,-24,68,-0.7337501059729555],[115,-24,69,-0.7334627774118994],[115,-24,70,-0.7331778524294222],[115,-24,71,-0.7328953359932014],[115,-24,72,-0.7326152329763579],[115,-24,73,-0.7323375481570423],[115,-24,74,-0.7320622862179905],[115,-24,75,-0.7317894517461109],[115,-24,76,-0.7315190492320581],[115,-24,77,-0.7312510830698087],[115,-24,78,-0.7309855575562395],[115,-24,79,-0.7307224768907021],[115,-23,64,-0.7350453510065977],[115,-23,65,-0.7347480420960661],[115,-23,66,-0.7344531158338732],[115,-23,67,-0.7341605775673812],[115,-23,68,-0.7338704325511087],[115,-23,69,-0.7335826859463145],[115,-23,70,-0.7332973428205631],[115,-23,71,-0.7330144081472982],[115,-23,72,-0.7327338868054116],[115,-23,73,-0.7324557835788289],[115,-23,74,-0.7321801031560651],[115,-23,75,-0.7319068501298114],[115,-23,76,-0.7316360289965095],[115,-23,77,-0.7313676441559261],[115,-23,78,-0.7311016999107329],[115,-23,79,-0.730838200466079],[115,-22,64,-0.7351675179443189],[115,-22,65,-0.73486979211137],[115,-22,66,-0.7345744488019847],[115,-22,67,-0.734281493369263],[115,-22,68,-0.7339909310734665],[115,-22,69,-0.7337027670816012],[115,-22,70,-0.7334170064669842],[115,-22,71,-0.7331336542088154],[115,-22,72,-0.7328527151917474],[115,-22,73,-0.7325741942054714],[115,-22,74,-0.7322980959442716],[115,-22,75,-0.7320244250066128],[115,-22,76,-0.7317531858947139],[115,-22,77,-0.7314843830141231],[115,-22,78,-0.7312180206732968],[115,-22,79,-0.7309541030831732],[115,-21,64,-0.7352898543235048],[115,-21,65,-0.7349917122372259],[115,-21,66,-0.7346959525475014],[115,-21,67,-0.7344025806131592],[115,-21,68,-0.7341116017001935],[115,-21,69,-0.7338230209813472],[115,-21,70,-0.7335368435356795],[115,-21,71,-0.7332530743481368],[115,-21,72,-0.7329717183091229],[115,-21,73,-0.732692780214084],[115,-21,74,-0.7324162647630643],[115,-21,75,-0.7321421765602926],[115,-21,76,-0.7318705201137554],[115,-21,77,-0.731601299834773],[115,-21,78,-0.7313345200375776],[115,-21,79,-0.7310701849388869],[115,-20,64,-0.7354123602876184],[115,-20,65,-0.7351138026205806],[115,-20,66,-0.7348176272208385],[115,-20,67,-0.734523839452937],[115,-20,68,-0.7342324445885922],[115,-20,69,-0.7339434478062742],[115,-20,70,-0.7336568541907735],[115,-20,71,-0.7333726687327733],[115,-20,72,-0.7330908963284184],[115,-20,73,-0.7328115417789006],[115,-20,74,-0.732534609790014],[115,-20,75,-0.7322601049717411],[115,-20,76,-0.7319880318378276],[115,-20,77,-0.7317183948053558],[115,-20,78,-0.7314511981943246],[115,-20,79,-0.7311864462272221],[115,-19,64,-0.7355350359772549],[115,-19,65,-0.7352360634055098],[115,-19,66,-0.7349394729695357],[115,-19,67,-0.7346452700395837],[115,-19,68,-0.7343534598930818],[115,-19,69,-0.7340640477142165],[115,-19,70,-0.7337770385935001],[115,-19,71,-0.7334924375273415],[115,-19,72,-0.7332102494176169],[115,-19,73,-0.7329304790712539],[115,-19,74,-0.7326531311997859],[115,-19,75,-0.7323782104189409],[115,-19,76,-0.7321057212482127],[115,-19,77,-0.7318356681104372],[115,-19,78,-0.7315680553313698],[115,-19,79,-0.7313028871392602],[115,-18,64,-0.7356578815301645],[115,-18,65,-0.7353584947332396],[115,-18,66,-0.7350614899382788],[115,-18,67,-0.7347668725212295],[115,-18,68,-0.7344746477652205],[115,-18,69,-0.7341848208601444],[115,-18,70,-0.7338973969022244],[115,-18,71,-0.733612380893586],[115,-18,72,-0.7333297777418261],[115,-18,73,-0.7330495922595973],[115,-18,74,-0.7327718291641642],[115,-18,75,-0.7324964930769888],[115,-18,76,-0.7322235885233045],[115,-18,77,-0.7319531199316902],[115,-18,78,-0.7316850916336498],[115,-18,79,-0.7314195078631842],[115,-17,64,-0.735780897081231],[115,-17,65,-0.7354810967421257],[115,-17,66,-0.7351836782688803],[115,-17,67,-0.7348886470431271],[115,-17,68,-0.7345960083536849],[115,-17,69,-0.7343057673961422],[115,-17,70,-0.7340179292724232],[115,-17,71,-0.7337324989903586],[115,-17,72,-0.7334494814632564],[115,-17,73,-0.7331688815094849],[115,-17,74,-0.7328907038520286],[115,-17,75,-0.7326149531180747],[115,-17,76,-0.7323416338385857],[115,-17,77,-0.7320707504478751],[115,-17,78,-0.7318023072831843],[115,-17,79,-0.7315363085842568],[115,-16,64,-0.7359040827625232],[115,-16,65,-0.7356038695677056],[115,-16,66,-0.7353060381003296],[115,-16,67,-0.7350105937477016],[115,-16,68,-0.7347175418043208],[115,-16,69,-0.7344268874714601],[115,-16,70,-0.7341386358567341],[115,-16,71,-0.7338527919736694],[115,-16,72,-0.7335693607412738],[115,-16,73,-0.7332883469836213],[115,-16,74,-0.7330097554294069],[115,-16,75,-0.7327335907115327],[115,-16,76,-0.7324598573666808],[115,-16,77,-0.732188559834889],[115,-16,78,-0.7319197024591273],[115,-16,79,-0.7316532894848725],[115,-15,64,-0.7360274387032821],[115,-15,65,-0.7357268133426839],[115,-15,66,-0.7354285695687794],[115,-15,67,-0.735132712774539],[115,-15,68,-0.7348392482601299],[115,-15,69,-0.7345481812325002],[115,-15,70,-0.734259516804944],[115,-15,71,-0.7339732599966728],[115,-15,72,-0.7336894157323848],[115,-15,73,-0.7334079888418491],[115,-15,74,-0.7331289840594609],[115,-15,75,-0.7328524060238274],[115,-15,76,-0.7325782592773409],[115,-15,77,-0.732306548265753],[115,-15,78,-0.7320372773377535],[115,-15,79,-0.7317704507445426],[115,-14,64,-0.7361509650299061],[115,-14,65,-0.7358499281969191],[115,-14,66,-0.735551272807533],[115,-14,67,-0.73525500426037],[115,-14,68,-0.7349611278612562],[115,-14,69,-0.7346696488228028],[115,-14,70,-0.7343805722639735],[115,-14,71,-0.7340939032096541],[115,-14,72,-0.7338096465902226],[115,-14,73,-0.7335278072411335],[115,-14,74,-0.7332483899024718],[115,-14,75,-0.7329713992185398],[115,-14,76,-0.7326968397374296],[115,-14,77,-0.7324247159105981],[115,-14,78,-0.732155032092444],[115,-14,79,-0.7318877925398818],[115,-13,64,-0.7362746618660031],[115,-13,65,-0.7359732142574752],[115,-13,66,-0.735674147947094],[115,-13,67,-0.7353774683391233],[115,-13,68,-0.7350831807450364],[115,-13,69,-0.7347912903830977],[115,-13,70,-0.734501802377929],[115,-13,71,-0.7342147217600804],[115,-13,72,-0.7339300534655995],[115,-13,73,-0.7336478023356151],[115,-13,74,-0.7333679731158923],[115,-13,75,-0.7330905704564183],[115,-13,76,-0.7328155989109756],[115,-13,77,-0.7325430629367156],[115,-13,78,-0.732272966893737],[115,-13,79,-0.7320053150446586],[115,-12,64,-0.7363985293323768],[115,-12,65,-0.7360966716486075],[115,-12,66,-0.7357971951151541],[115,-12,67,-0.7355001051419108],[115,-12,68,-0.7352054070459872],[115,-12,69,-0.73491310605129],[115,-12,70,-0.7346232072880888],[115,-12,71,-0.7343357157925872],[115,-12,72,-0.7340506365064914],[115,-12,73,-0.7337679742765948],[115,-12,74,-0.7334877338543321],[115,-12,75,-0.7332099198953654],[115,-12,76,-0.7329345369591573],[115,-12,77,-0.732661589508544],[115,-12,78,-0.7323910819093146],[115,-12,79,-0.7321230184297823],[115,-11,64,-0.7365225675470128],[115,-11,65,-0.7362203004917491],[115,-11,66,-0.7359204144365784],[115,-11,67,-0.7356229147970139],[115,-11,68,-0.735327806895791],[115,-11,69,-0.7350350959624471],[115,-11,70,-0.7347447871328892],[115,-11,71,-0.7344568854489635],[115,-11,72,-0.7341713958580247],[115,-11,73,-0.7338883232125202],[115,-11,74,-0.7336076722695439],[115,-11,75,-0.7333294476904229],[115,-11,76,-0.7330536540402892],[115,-11,77,-0.7327802957876545],[115,-11,78,-0.7325093773039879],[115,-11,79,-0.7322409028632878],[115,-10,64,-0.7366467766251299],[115,-10,65,-0.7363441009055626],[115,-10,66,-0.7360438060334572],[115,-10,67,-0.7357458974299356],[115,-10,68,-0.7354503804233469],[115,-10,69,-0.7351572602488492],[115,-10,70,-0.7348665420479756],[115,-10,71,-0.7345782308682043],[115,-10,72,-0.734292331662528],[115,-10,73,-0.7340088492890373],[115,-10,74,-0.7337277885104752],[115,-10,75,-0.7334491539938232],[115,-10,76,-0.7331729503098731],[115,-10,77,-0.7328991819328018],[115,-10,78,-0.7326278532397485],[115,-10,79,-0.7323589685103874],[115,-9,64,-0.7367711566791595],[115,-9,65,-0.7364680730059183],[115,-9,66,-0.736167370025085],[115,-9,67,-0.7358690531633783],[115,-9,68,-0.7355731277547504],[115,-9,69,-0.7352795990399688],[115,-9,70,-0.7349884721661817],[115,-9,71,-0.7346997521864889],[115,-9,72,-0.73441344405951],[115,-9,73,-0.7341295526489686],[115,-9,74,-0.7338480827232463],[115,-9,75,-0.7335690389549685],[115,-9,76,-0.7332924259205771],[115,-9,77,-0.7330182480999036],[115,-9,78,-0.7327465098757476],[115,-9,79,-0.732477215533449],[115,-8,64,-0.7368957078187679],[115,-8,65,-0.7365922169059176],[115,-8,66,-0.7362911065279826],[115,-8,67,-0.7359923821172669],[115,-8,68,-0.735696049013315],[115,-8,69,-0.7354021124624923],[115,-8,70,-0.7351105776175516],[115,-8,71,-0.734821449537203],[115,-8,72,-0.7345347331856824],[115,-8,73,-0.7342504334323359],[115,-8,74,-0.733968555051173],[115,-8,75,-0.7336891027204531],[115,-8,76,-0.7334120810222572],[115,-8,77,-0.7331374944420621],[115,-8,78,-0.7328653473683175],[115,-8,79,-0.7325956440920188],[115,-7,64,-0.7370204301508348],[115,-7,65,-0.7367165327158713],[115,-7,66,-0.7364150156558762],[115,-7,67,-0.736115884408728],[115,-7,68,-0.7358191443195516],[115,-7,69,-0.7355248006402998],[115,-7,70,-0.7352328585293185],[115,-7,71,-0.7349433230509175],[115,-7,72,-0.7346561991749383],[115,-7,73,-0.7343714917763384],[115,-7,74,-0.7340892056347452],[115,-7,75,-0.7338093454340412],[115,-7,76,-0.7335319157619367],[115,-7,77,-0.7332569211095428],[115,-7,78,-0.73298436587095],[115,-7,79,-0.7327142543427991],[115,-6,64,-0.7371453237795059],[115,-6,65,-0.7368410205433513],[115,-6,66,-0.736539097519749],[115,-6,67,-0.7362395601521403],[115,-6,68,-0.7359424137912198],[115,-6,69,-0.7356476636945157],[115,-6,70,-0.7353553150259566],[115,-6,71,-0.7350653728554404],[115,-6,72,-0.7347778421584037],[115,-6,73,-0.734492727815405],[115,-6,74,-0.7342100346116782],[115,-6,75,-0.733929767236719],[115,-6,76,-0.7336519302838562],[115,-6,77,-0.7333765282498259],[115,-6,78,-0.7331035655343483],[115,-6,79,-0.7328330464397],[115,-5,64,-0.737270388806178],[115,-5,65,-0.7369656804931767],[115,-5,66,-0.7366633522278271],[115,-5,67,-0.736363409459122],[115,-5,68,-0.7360658575433137],[115,-5,69,-0.7357707017434953],[115,-5,70,-0.7354779472291664],[115,-5,71,-0.7351875990758023],[115,-5,72,-0.7348996622644237],[115,-5,73,-0.734614141681179],[115,-5,74,-0.7343310421168987],[115,-5,75,-0.7340503682666805],[115,-5,76,-0.7337721247294616],[115,-5,77,-0.7334963160075922],[115,-5,78,-0.7332229465064126],[115,-5,79,-0.7329520205338254],[115,-4,64,-0.7373956253294853],[115,-4,65,-0.7370905126673996],[115,-4,66,-0.7367877798855655],[115,-4,67,-0.7364874324385154],[115,-4,68,-0.7361894756880483],[115,-4,69,-0.7358939149028103],[115,-4,70,-0.735600755257861],[115,-4,71,-0.7353100018342424],[115,-4,72,-0.7350216596185479],[115,-4,73,-0.7347357335025051],[115,-4,74,-0.7344522282825302],[115,-4,75,-0.7341711486593125],[115,-4,76,-0.7338924992373872],[115,-4,77,-0.7336162845247083],[115,-4,78,-0.7333425089322257],[115,-4,79,-0.7330711767734577],[115,-3,64,-0.7375210334453515],[115,-3,65,-0.7372155171653575],[115,-3,66,-0.7369123805957001],[115,-3,67,-0.7366116291964397],[115,-3,68,-0.7363132683349105],[115,-3,69,-0.7360173032853006],[115,-3,70,-0.735723739228218],[115,-3,71,-0.7354325812502602],[115,-3,72,-0.7351438343435822],[115,-3,73,-0.7348575034054803],[115,-3,74,-0.7345735932379451],[115,-3,75,-0.7342921085472474],[115,-3,76,-0.7340130539435095],[115,-3,77,-0.7337364339402784],[115,-3,78,-0.7334622529541044],[115,-3,79,-0.7331905153041105],[115,-2,64,-0.7376466132469686],[115,-2,65,-0.7373406940836513],[115,-2,66,-0.7370371544582259],[115,-2,67,-0.7367359998362691],[115,-2,68,-0.7364372355906386],[115,-2,69,-0.736140867001053],[115,-2,70,-0.7358468992536574],[115,-2,71,-0.7355553374405936],[115,-2,72,-0.7352661865595673],[115,-2,73,-0.7349794515134322],[115,-2,74,-0.734695137109743],[115,-2,75,-0.7344132480603405],[115,-2,76,-0.7341337889809237],[115,-2,77,-0.7338567643906233],[115,-2,78,-0.7335821787115777],[115,-2,79,-0.7333100362685059],[115,-1,64,-0.7377723648248184],[115,-1,65,-0.7374660435161681],[115,-1,66,-0.7371621015704198],[115,-1,67,-0.7368605444586553],[115,-1,68,-0.736561377559244],[115,-1,69,-0.7362646061574234],[115,-1,70,-0.7359702354448645],[115,-1,71,-0.7356782705192421],[115,-1,72,-0.7353887163838012],[115,-1,73,-0.7351015779469422],[115,-1,74,-0.7348168600217726],[115,-1,75,-0.7345345673256928],[115,-1,76,-0.7342547044799681],[115,-1,77,-0.7339772760093013],[115,-1,78,-0.7337022863414098],[115,-1,79,-0.7334297398065973],[115,0,64,-0.7378982882666526],[115,0,65,-0.7375915655540595],[115,0,66,-0.7372872220268193],[115,0,67,-0.7369852631615063],[115,0,68,-0.7366856943419899],[115,0,69,-0.7363885208590154],[115,0,70,-0.7360937479097681],[115,0,71,-0.735801380597444],[115,0,72,-0.7355114239308171],[115,0,73,-0.7352238828238227],[115,0,74,-0.7349387620951102],[115,0,75,-0.7346560664676293],[115,0,76,-0.7343758005682001],[115,0,77,-0.7340979689270875],[115,0,78,-0.7338225759775769],[115,0,79,-0.7335496260555473],[115,1,64,-0.7380243836575433],[115,1,65,-0.7377172602857941],[115,1,66,-0.7374125159192736],[115,1,67,-0.7371101560400375],[115,1,68,-0.7368101860374433],[115,1,69,-0.7365126112077321],[115,1,70,-0.7362174367535923],[115,1,71,-0.7359246677837299],[115,1,72,-0.735634309312436],[115,1,73,-0.7353463662591697],[115,1,74,-0.7350608434481122],[115,1,75,-0.7347777456077503],[115,1,76,-0.7344970773704493],[115,1,77,-0.7342188432720248],[115,1,78,-0.7339430477513207],[115,1,79,-0.7336696951497793],[115,2,64,-0.7381506510798701],[115,2,65,-0.7378431277971427],[115,2,66,-0.7375379833369307],[115,2,67,-0.7372352231867585],[115,2,68,-0.7369348527414608],[115,2,69,-0.7366368773027622],[115,2,70,-0.7363413020788425],[115,2,71,-0.7360481321839065],[115,2,72,-0.7357573726377511],[115,2,73,-0.7354690283653484],[115,2,74,-0.7351831041963994],[115,2,75,-0.7348996048649179],[115,2,76,-0.7346185350088029],[115,2,77,-0.7343398991694107],[115,2,78,-0.734063701791132],[115,2,79,-0.7337899472209632],[115,3,64,-0.7382770906133047],[115,3,65,-0.7379691681711642],[115,3,66,-0.7376636243662216],[115,3,67,-0.7373604646914584],[115,3,68,-0.7370596945471737],[115,3,69,-0.7367613192405646],[115,3,70,-0.7364653439852906],[115,3,71,-0.7361717739010435],[115,3,72,-0.7358806140131148],[115,3,73,-0.7355918692519783],[115,3,74,-0.7353055444528436],[115,3,75,-0.7350216443552404],[115,3,76,-0.7347401736025908],[115,3,77,-0.7344611367417807],[115,3,78,-0.7341845382227374],[115,3,79,-0.7339103823980011],[115,4,64,-0.738403702334864],[115,4,65,-0.7380953814882583],[115,4,66,-0.7377894390909139],[115,4,67,-0.7374858806412574],[115,4,68,-0.737184711545041],[115,4,69,-0.7368859371149216],[115,4,70,-0.7365895625700273],[115,4,71,-0.7362955930355252],[115,4,72,-0.7360040335421896],[115,4,73,-0.7357148890259851],[115,4,74,-0.7354281643276186],[115,4,75,-0.735143864192125],[115,4,76,-0.7348619932684377],[115,4,77,-0.7345825561089621],[115,4,78,-0.734305557169151],[115,4,79,-0.7340310008070776],[115,5,64,-0.738530486318888],[115,5,65,-0.7382217678261427],[115,5,66,-0.7379154275920887],[115,5,67,-0.7376114711205859],[115,5,68,-0.7373099038228265],[115,5,69,-0.7370107310169165],[115,5,70,-0.7367139579274401],[115,5,71,-0.7364195896850283],[115,5,72,-0.7361276313259271],[115,5,73,-0.7358380877915797],[115,5,74,-0.7355509639281795],[115,5,75,-0.7352662644862551],[115,5,76,-0.7349839941202411],[115,5,77,-0.7347041573880505],[115,5,78,-0.7344267587506519],[115,5,79,-0.7341518025716399],[115,6,64,-0.7386574426370623],[115,6,65,-0.7383483272598768],[115,6,66,-0.7380415899481646],[115,6,67,-0.7377372362112062],[115,6,68,-0.7374352714656225],[115,6,69,-0.7371357010349564],[115,6,70,-0.7368385301492362],[115,6,71,-0.7365437639445452],[115,6,72,-0.7362514074625894],[115,6,73,-0.7359614656502795],[115,6,74,-0.735673943359284],[115,6,75,-0.735388845345614],[115,6,76,-0.7351061762691937],[115,6,77,-0.7348259406934337],[115,6,78,-0.7345481430848066],[115,6,79,-0.734272787812419],[115,7,64,-0.7387845713583967],[115,7,65,-0.7384750598618391],[115,7,66,-0.7381679262348744],[115,7,67,-0.7378631759921912],[115,7,68,-0.7375608145558273],[115,7,69,-0.7372608472547499],[115,7,70,-0.73696327932442],[115,7,71,-0.7366681159063613],[115,7,72,-0.7363753620477281],[115,7,73,-0.7360850227008873],[115,7,74,-0.7357971027229708],[115,7,75,-0.7355116068754612],[115,7,76,-0.7352285398237612],[115,7,77,-0.7349479061367679],[115,7,78,-0.7346697102864475],[115,7,79,-0.7343939566474068],[115,8,64,-0.7389118725492774],[115,8,65,-0.7386019657017802],[115,8,66,-0.7382944365253186],[115,8,67,-0.7379892905399767],[115,8,68,-0.7376865331731973],[115,8,69,-0.7373861697593596],[115,8,70,-0.7370882055393454],[115,8,71,-0.7367926456601073],[115,8,72,-0.736499495174236],[115,8,73,-0.7362087590395425],[115,8,74,-0.7359204421186116],[115,8,75,-0.7356345491783856],[115,8,76,-0.7353510848897348],[115,8,77,-0.7350700538270312],[115,8,78,-0.7347914604677239],[115,8,79,-0.7345153091919098],[115,9,64,-0.739039346273452],[115,9,65,-0.7387290448468079],[115,9,66,-0.73842112088995],[115,9,67,-0.738115579928347],[115,9,68,-0.7378124273948328],[115,9,69,-0.7375116686291877],[115,9,70,-0.7372133088777021],[115,9,71,-0.7369173532927451],[115,9,72,-0.7366238069323323],[115,9,73,-0.7363326747597079],[115,9,74,-0.736043961642897],[115,9,75,-0.7357576723542906],[115,9,76,-0.7354738115702156],[115,9,77,-0.735192383870508],[115,9,78,-0.7349133937380883],[115,9,79,-0.7346368455585329],[115,10,64,-0.7391669925920162],[115,10,65,-0.7388562973613724],[115,10,66,-0.7385479793965601],[115,10,67,-0.7382420442284191],[115,10,68,-0.7379384972951634],[115,10,69,-0.7376373439419612],[115,10,70,-0.7373385894204996],[115,10,71,-0.7370422388885524],[115,10,72,-0.7367482974095485],[115,10,73,-0.736456769952153],[115,10,74,-0.7361676613898206],[115,10,75,-0.7358809765003791],[115,10,76,-0.7355967199656007],[115,10,77,-0.7353148963707742],[115,10,78,-0.7350355102042808],[115,10,79,-0.7347585658571653],[115,11,64,-0.7392948115634652],[115,11,65,-0.7389837233073195],[115,11,66,-0.7386750121103307],[115,11,67,-0.7383686835086971],[115,11,68,-0.7380647429460001],[115,11,69,-0.737763195772784],[115,11,70,-0.7374640472461202],[115,11,71,-0.7371673025291756],[115,11,72,-0.7368729666907802],[115,11,73,-0.7365810447050083],[115,11,74,-0.7362915414507324],[115,11,75,-0.736004461711206],[115,11,76,-0.7357198101736351],[115,11,77,-0.73543759142875],[115,11,78,-0.7351578099703817],[115,11,79,-0.7348804701950322],[115,12,64,-0.739422803243672],[115,12,65,-0.7391113227438684],[115,12,66,-0.7388022190938124],[115,12,67,-0.7384954978350486],[115,12,68,-0.7381911644165138],[115,12,69,-0.7378892241941155],[115,12,70,-0.7375896824302977],[115,12,71,-0.7372925442936078],[115,12,72,-0.736997814858265],[115,12,73,-0.7367054991037418],[115,12,74,-0.7364156019143161],[115,12,75,-0.7361281280786558],[115,12,76,-0.7358430822893892],[115,12,77,-0.7355604691426771],[115,12,78,-0.735280293137789],[115,12,79,-0.7350025586766731],[115,13,64,-0.7395509676859107],[115,13,65,-0.7392390957276336],[115,13,66,-0.7389296004069467],[115,13,67,-0.7386224872707282],[115,13,68,-0.7383177617732571],[115,13,69,-0.7380154292757926],[115,13,70,-0.7377154950461381],[115,13,71,-0.7374179642582104],[115,13,72,-0.7371228419916056],[115,13,73,-0.7368301332311818],[115,13,74,-0.7365398428666116],[115,13,75,-0.7362519756919652],[115,13,76,-0.7359665364052819],[115,13,77,-0.7356835296081414],[115,13,78,-0.7354029598052408],[115,13,79,-0.7351248314039635],[115,14,64,-0.739679304940833],[115,14,65,-0.7393670423126036],[115,14,66,-0.7390571561070445],[115,14,67,-0.7387496518763546],[115,14,68,-0.7384445350801427],[115,14,69,-0.7381418110850071],[115,14,70,-0.7378414851640991],[115,14,71,-0.7375435624966916],[115,14,72,-0.7372480481677463],[115,14,73,-0.7369549471674949],[115,14,74,-0.7366642643909924],[115,14,75,-0.7363760046377004],[115,14,76,-0.736090172611057],[115,14,77,-0.7358067729180502],[115,14,78,-0.7355258100687927],[115,14,79,-0.7352472884760923],[115,15,64,-0.7398078150565228],[115,15,65,-0.7394951625501938],[115,15,66,-0.7391848862488384],[115,15,67,-0.7388769917099637],[115,15,68,-0.7385714843984961],[115,15,69,-0.7382683696863599],[115,15,70,-0.7379676528520418],[115,15,71,-0.7376693390801591],[115,15,72,-0.7373734334610266],[115,15,73,-0.737079940990238],[115,15,74,-0.7367888665682187],[115,15,75,-0.7365002149998097],[115,15,76,-0.736213990993837],[115,15,77,-0.735930199162685],[115,15,78,-0.7356488440218706],[115,15,79,-0.7353699299896151],[115,16,64,-0.7399364980784799],[115,16,65,-0.7396234564892307],[115,16,66,-0.7393127908844679],[115,16,67,-0.7390045068269941],[115,16,68,-0.73869860978704],[115,16,69,-0.7383951051418441],[115,16,70,-0.7380939981752159],[115,16,71,-0.7377952940771046],[115,16,72,-0.737498997943166],[115,16,73,-0.7372051147743437],[115,16,74,-0.7369136494764221],[115,16,75,-0.7366246068596092],[115,16,76,-0.7363379916381075],[115,16,77,-0.736053808429686],[115,16,78,-0.7357720617552554],[115,16,79,-0.7354927560384386],[115,17,64,-0.7400653540496058],[115,17,65,-0.7397519241759378],[115,17,66,-0.7394408700634647],[115,17,67,-0.7391321972802714],[115,17,68,-0.7388259113018806],[115,17,69,-0.7385220175108318],[115,17,70,-0.7382205211962449],[115,17,71,-0.7379214275533892],[115,17,72,-0.7376247416832489],[115,17,73,-0.7373304685921056],[115,17,74,-0.7370386131910901],[115,17,75,-0.7367491802957665],[115,17,76,-0.7364621746257016],[115,17,77,-0.7361776008040378],[115,17,78,-0.7358954633570676],[115,17,79,-0.7356157667138047],[115,18,64,-0.7401943830102566],[115,18,65,-0.7398805656539887],[115,18,66,-0.7395691238328055],[115,18,67,-0.7392600631200618],[115,18,68,-0.738953388996559],[115,18,69,-0.7386491068501255],[115,18,70,-0.7383472219751792],[115,18,71,-0.7380477395722962],[115,18,72,-0.7377506647477774],[115,18,73,-0.73745600251323],[115,18,74,-0.7371637577851198],[115,18,75,-0.7368739353843543],[115,18,76,-0.7365865400358536],[115,18,77,-0.7363015763681213],[115,18,78,-0.7360190489128207],[115,18,79,-0.7357389621043446],[115,19,64,-0.7403235849982285],[115,19,65,-0.7400093809644916],[115,19,66,-0.7396975522368973],[115,19,67,-0.7393881043940568],[115,19,68,-0.739081042922038],[115,19,69,-0.7387763732139447],[115,19,70,-0.7384741005694804],[115,19,71,-0.7381742301945158],[115,19,72,-0.7378767672006562],[115,19,73,-0.7375817166048221],[115,19,74,-0.7372890833288019],[115,19,75,-0.7369988721988353],[115,19,76,-0.736711087945183],[115,19,77,-0.7364257352016989],[115,19,78,-0.7361428185054052],[115,19,79,-0.7358623422960626],[115,20,64,-0.7404529600487418],[115,20,65,-0.7401383701459746],[115,20,66,-0.7398261553175618],[115,20,67,-0.7395163211473583],[115,20,68,-0.7392088731266852],[115,20,69,-0.7389038166539093],[115,20,70,-0.7386011570340066],[115,20,71,-0.7383008994781305],[115,20,72,-0.7380030491031776],[115,20,73,-0.7377076109313698],[115,20,74,-0.7374145898898062],[115,20,75,-0.7371239908100462],[115,20,76,-0.7368358184276798],[115,20,77,-0.7365500773818989],[115,20,78,-0.7362667722150736],[115,20,79,-0.7359859073723208],[115,21,64,-0.7405825081944957],[115,21,65,-0.7402675332344392],[115,21,66,-0.7399549331140894],[115,21,67,-0.7396447134225317],[115,21,68,-0.7393368796563272],[115,21,69,-0.7390314372190933],[115,21,70,-0.7387283914210657],[115,21,71,-0.7384277474786674],[115,21,72,-0.7381295105140744],[115,21,73,-0.7378336855547974],[115,21,74,-0.737540277533234],[115,21,75,-0.7372492912862514],[115,21,76,-0.7369607315547569],[115,21,77,-0.7366746029832691],[115,21,78,-0.7363909101194935],[115,21,79,-0.7361096574138923],[115,22,64,-0.7407122294656435],[115,22,65,-0.7403968702633368],[115,22,66,-0.7400838856632157],[115,22,67,-0.739773281259583],[115,22,68,-0.7394650625542271],[115,22,69,-0.7391592349560023],[115,22,70,-0.7388558037803921],[115,22,71,-0.7385547742490759],[115,22,72,-0.7382561514894969],[115,22,73,-0.7379599405344422],[115,22,74,-0.7376661463215957],[115,22,75,-0.73737477369312],[115,22,76,-0.737085827395228],[115,22,77,-0.7367993120777528],[115,22,78,-0.7365152322937244],[115,22,79,-0.736233592498938],[115,23,64,-0.7408421238898178],[115,23,65,-0.7405263812635925],[115,23,66,-0.7402130129991451],[115,23,67,-0.739902024695982],[115,23,68,-0.7395934218611062],[115,23,69,-0.7392872099085963],[115,23,70,-0.7389833941591697],[115,23,71,-0.7386819798397506],[115,23,72,-0.7383829720830362],[115,23,73,-0.7380863759270778],[115,23,74,-0.737792196314833],[115,23,75,-0.7375004380937482],[115,23,76,-0.7372111060153294],[115,23,77,-0.7369242047347128],[115,23,78,-0.7366397388102403],[115,23,79,-0.7363577127030295],[115,24,64,-0.7409721914921064],[115,24,65,-0.7406560662635817],[115,24,66,-0.7403423151535271],[115,24,67,-0.7400309437666394],[115,24,68,-0.7397219576151224],[115,24,69,-0.7394153621182661],[115,24,70,-0.7391111626020095],[115,24,71,-0.7388093642985081],[115,24,72,-0.7385099723457007],[115,24,73,-0.7382129917868906],[115,24,74,-0.7379184275702964],[115,24,75,-0.7376262845486363],[115,24,76,-0.7373365674786974],[115,24,77,-0.7370492810209066],[115,24,78,-0.7367644297389068],[115,24,79,-0.7364820180991255],[115,25,64,-0.7411024322951054],[115,25,65,-0.7407859252891842],[115,25,66,-0.7404717921555108],[115,25,67,-0.7401600385039596],[115,25,68,-0.7398506698519225],[115,25,69,-0.7395436916238874],[115,25,70,-0.7392391091510018],[115,25,71,-0.7389369276706399],[115,25,72,-0.7386371523259696],[115,25,73,-0.738339788165533],[115,25,74,-0.7380448401427981],[115,25,75,-0.7377523131157422],[115,25,76,-0.7374622118464211],[115,25,77,-0.7371745410005413],[115,25,78,-0.7368893051470339],[115,25,79,-0.7366065087576251],[115,26,64,-0.7412328463189055],[115,26,65,-0.7409159583637678],[115,26,66,-0.7406014440317287],[115,26,67,-0.7402893089378266],[115,26,68,-0.7399795586046278],[115,26,69,-0.7396721984618052],[115,26,70,-0.7393672338457018],[115,26,71,-0.739064669998898],[115,26,72,-0.7387645120697774],[115,26,73,-0.7384667651121088],[115,26,74,-0.7381714340845971],[115,26,75,-0.7378785238504657],[115,26,76,-0.7375880391770281],[115,26,77,-0.737299984735257],[115,26,78,-0.7370143650993608],[115,26,79,-0.7367311847463527],[115,27,64,-0.7413634335810753],[115,27,65,-0.7410461655081741],[115,27,66,-0.740731270806282],[115,27,67,-0.7404187550955874],[115,27,68,-0.7401086239038179],[115,27,69,-0.7398008826658186],[115,27,70,-0.7394955367231144],[115,27,71,-0.7391925913234787],[115,27,72,-0.7388920516204988],[115,27,73,-0.738593922673157],[115,27,74,-0.7382982094453824],[115,27,75,-0.7380049168056332],[115,27,76,-0.7377140495264669],[115,27,77,-0.7374256122841117],[115,27,78,-0.7371396096580406],[115,27,79,-0.7368560461305413],[115,28,64,-0.7414941940967155],[115,28,65,-0.7411765467407719],[115,28,66,-0.7408612725007937],[115,28,67,-0.7405483770021064],[115,28,68,-0.7402378657775852],[115,28,69,-0.7399297442672337],[115,28,70,-0.7396240178177462],[115,28,71,-0.7393206916820761],[115,28,72,-0.7390197710190013],[115,28,73,-0.7387212608927052],[115,28,74,-0.7384251662723281],[115,28,75,-0.7381314920315505],[115,28,76,-0.7378402429481625],[115,28,77,-0.7375514237036344],[115,28,78,-0.7372650388826923],[115,28,79,-0.7369810929728874],[115,29,64,-0.7416251278784358],[115,29,65,-0.7413071020774336],[115,29,66,-0.7409914491343859],[115,29,67,-0.7406781746797416],[115,29,68,-0.7403672842515105],[115,29,69,-0.7400587832948411],[115,29,70,-0.7397526771615841],[115,29,71,-0.7394489711098596],[115,29,72,-0.7391476703036232],[115,29,73,-0.7388487798122465],[115,29,74,-0.738552304610069],[115,29,75,-0.7382582495759805],[115,29,76,-0.737966619492991],[115,29,77,-0.7376774190478017],[115,29,78,-0.7373906528303792],[115,29,79,-0.737106325333526],[115,30,64,-0.7417562349363783],[115,30,65,-0.7414378315315587],[115,30,66,-0.7411218007237026],[115,30,67,-0.7408081481483686],[115,30,68,-0.7404968793486872],[115,30,69,-0.740187999774939],[115,30,70,-0.7398815147841172],[115,30,71,-0.739577429639496],[115,30,72,-0.7392757495101955],[115,30,73,-0.7389764794707628],[115,30,74,-0.7386796245007238],[115,30,75,-0.7383851894841651],[115,30,76,-0.7380931792093045],[115,30,77,-0.7378035983680611],[115,30,78,-0.7375164515556306],[115,30,79,-0.7372317432700545],[115,31,64,-0.7418875152781936],[115,31,65,-0.7415687351140505],[115,31,66,-0.7412523272828866],[115,31,67,-0.7409382974253563],[115,31,68,-0.7406266510896975],[115,31,69,-0.7403173937313089],[115,31,70,-0.7400105307123137],[115,31,71,-0.7397060673011264],[115,31,72,-0.7394040086720188],[115,31,73,-0.7391043599047007],[115,31,74,-0.7388071259838715],[115,31,75,-0.7385123117988023],[115,31,76,-0.7382199221429057],[115,31,77,-0.7379299617133069],[115,31,78,-0.7376424351104183],[115,31,79,-0.7373573468375083],[115,32,64,-0.7420189689090952],[115,32,65,-0.74169981283337],[115,32,66,-0.7413830288236332],[115,32,67,-0.7410686225256213],[115,32,68,-0.7407565994926659],[115,32,69,-0.7404469651852705],[115,32,70,-0.7401397249706746],[115,32,71,-0.7398348841224202],[115,32,72,-0.7395324478199174],[115,32,73,-0.7392324211480259],[115,32,74,-0.7389348090966055],[115,32,75,-0.7386396165600994],[115,32,76,-0.7383468483371027],[115,32,77,-0.7380565091299343],[115,32,78,-0.7377686035442105],[115,32,79,-0.7374831360884151],[115,33,64,-0.7421505958318438],[115,33,65,-0.7418310646955204],[115,33,66,-0.7415139053551748],[115,33,67,-0.7411991234616124],[115,33,68,-0.7408867245732443],[115,33,69,-0.7405767141556656],[115,33,70,-0.7402690975812185],[115,33,71,-0.7399638801285591],[115,33,72,-0.739661066982223],[115,33,73,-0.7393606632322066],[115,33,74,-0.7390626738735175],[115,33,75,-0.7387671038057579],[115,33,76,-0.7384739578326931],[115,33,77,-0.738183240661823],[115,33,78,-0.7378949569039559],[115,33,79,-0.7376091110727788],[115,34,64,-0.742282396046732],[115,34,65,-0.7419624907040311],[115,34,66,-0.7416449568842652],[115,34,67,-0.7413298002432943],[115,34,68,-0.7410170263445955],[115,34,69,-0.7407066406588421],[115,34,70,-0.7403986485634652],[115,34,71,-0.7400930553422216],[115,34,72,-0.7397898661847593],[115,34,73,-0.7394890861861986],[115,34,74,-0.7391907203466818],[115,34,75,-0.7388947735709571],[115,34,76,-0.7386012506679477],[115,34,77,-0.7383101563503218],[115,34,78,-0.7380214952340677],[115,34,79,-0.7377352718380632],[115,35,64,-0.7424143695516379],[115,35,65,-0.7420940908600121],[115,35,66,-0.7417761834152334],[115,35,67,-0.7414606528782024],[115,35,68,-0.7411475048174483],[115,35,69,-0.7408367447087084],[115,35,70,-0.7405283779344898],[115,35,71,-0.7402224097836366],[115,35,72,-0.7399188454508961],[115,35,73,-0.7396176900364986],[115,35,74,-0.7393189485457088],[115,35,75,-0.7390226258884082],[115,35,76,-0.7387287268786646],[115,35,77,-0.7384372562343025],[115,35,78,-0.7381482185764776],[115,35,79,-0.7378616184292461],[115,36,64,-0.7425465163420018],[115,36,65,-0.7422258651621307],[115,36,66,-0.7419075849499608],[115,36,67,-0.7415916813714187],[115,36,68,-0.7412781600000726],[115,36,69,-0.7409670263167099],[115,36,70,-0.7406582857088997],[115,36,71,-0.7403519434705605],[115,36,72,-0.7400480048015251],[115,36,73,-0.739746474807121],[115,36,74,-0.739447358497722],[115,36,75,-0.7391506607883302],[115,36,76,-0.7388563864981456],[115,36,77,-0.7385645403501359],[115,36,78,-0.7382751269706118],[115,36,79,-0.737988150888796],[115,37,64,-0.7426788364108498],[115,37,65,-0.7423578136066346],[115,37,66,-0.7420391614879033],[115,37,67,-0.7417228857255953],[115,37,68,-0.7414089918983033],[115,37,69,-0.7410974854918513],[115,37,70,-0.740788371898857],[115,37,71,-0.7404816564182994],[115,37,72,-0.7401773442550832],[115,37,73,-0.7398754405196204],[115,37,74,-0.7395759502273808],[115,37,75,-0.7392788782984738],[115,37,76,-0.7389842295572187],[115,37,77,-0.7386920087317144],[115,37,78,-0.7384022204534139],[115,37,79,-0.7381148692566937],[115,38,64,-0.7428113297487696],[115,38,65,-0.7424899361873273],[115,38,66,-0.7421709130260685],[115,38,67,-0.7418542659409306],[115,38,68,-0.741540000515517],[115,38,69,-0.7412281222406744],[115,38,70,-0.7409186365140553],[115,38,71,-0.7406115486396856],[115,38,72,-0.740306863827529],[115,38,73,-0.7400045871930683],[115,38,74,-0.7397047237568559],[115,38,75,-0.7394072784440964],[115,38,76,-0.7391122560842149],[115,38,77,-0.7388196614104288],[115,38,78,-0.738529499059321],[115,38,79,-0.7382417735704094],[115,39,64,-0.7429439963439652],[115,39,65,-0.7426222328956242],[115,39,66,-0.7423028395590697],[115,39,67,-0.7419858220152235],[115,39,68,-0.7416711858526852],[115,39,69,-0.7413589365673106],[115,39,70,-0.7410490795617731],[115,39,71,-0.740741620145132],[115,39,72,-0.7404365635323964],[115,39,73,-0.7401339148441067],[115,39,74,-0.7398336791058848],[115,39,75,-0.7395358612480168],[115,39,76,-0.7392404661050217],[115,39,77,-0.7389474984152219],[115,39,78,-0.7386569628203179],[115,39,79,-0.7383688638649568],[115,40,64,-0.7430768361822411],[115,40,65,-0.7427547037205353],[115,40,66,-0.7424349410791101],[115,40,67,-0.7421175539438574],[115,40,68,-0.7418025479083592],[115,40,69,-0.7414899284734661],[115,40,70,-0.7411797010468588],[115,40,71,-0.7408718709426162],[115,40,72,-0.7405664433807793],[115,40,73,-0.7402634234869326],[115,40,74,-0.7399628162917545],[115,40,75,-0.7396646267305995],[115,40,76,-0.7393688596430672],[115,40,77,-0.7390755197725727],[115,40,78,-0.738784611765921],[115,40,79,-0.738496140172876],[115,41,64,-0.7432098492469861],[115,41,65,-0.7428873486486498],[115,41,66,-0.7425672175759669],[115,41,67,-0.7422494617197848],[115,41,68,-0.7419340866786539],[115,41,69,-0.7416210979584056],[115,41,70,-0.7413105009717141],[115,41,71,-0.7410023010376641],[115,41,72,-0.7406965033813149],[115,41,73,-0.7403931131332818],[115,41,74,-0.7400921353292861],[115,41,75,-0.7397935749097376],[115,41,76,-0.7394974367193039],[115,41,77,-0.7392037255064795],[115,41,78,-0.7389124459231617],[115,41,79,-0.7386236025242183],[115,42,64,-0.7433430355192281],[115,42,65,-0.7430201676641905],[115,42,66,-0.7426996690370452],[115,42,67,-0.7423815453335809],[115,42,68,-0.742065802157302],[115,42,69,-0.7417524450190065],[115,42,70,-0.7414414793363485],[115,42,71,-0.7411329104334043],[115,42,72,-0.7408267435402383],[115,42,73,-0.7405229837924826],[115,42,74,-0.7402216362308885],[115,42,75,-0.7399227058009081],[115,42,76,-0.7396261973522631],[115,42,77,-0.7393321156385153],[115,42,78,-0.739040465316641],[115,42,79,-0.7387512509465995],[115,43,64,-0.7434763949776102],[115,43,65,-0.7431531607489903],[115,43,66,-0.7428322954473552],[115,43,67,-0.7425138047734204],[115,43,68,-0.7421976943356303],[115,43,69,-0.7418839696497355],[115,43,70,-0.7415726361383552],[115,43,71,-0.7412636991305445],[115,43,72,-0.7409571638613583],[115,43,73,-0.7406530354714328],[115,43,74,-0.7403513190065354],[115,43,75,-0.7400520194171469],[115,43,76,-0.7397551415580307],[115,43,77,-0.7394606901878026],[115,43,78,-0.7391686699685052],[115,43,79,-0.7388790854651766],[115,44,64,-0.7436099275984136],[115,44,65,-0.7432863278825146],[115,44,66,-0.7429650967895344],[115,44,67,-0.7426462400251006],[115,44,68,-0.742329763202583],[115,44,69,-0.7420156718426709],[115,44,70,-0.7417039713729349],[115,44,71,-0.7413946671273941],[115,44,72,-0.7410877643460811],[115,44,73,-0.740783268174622],[115,44,74,-0.740481183663787],[115,44,75,-0.7401815157690727],[115,44,76,-0.7398842693502704],[115,44,77,-0.7395894491710371],[115,44,78,-0.7392970598984688],[115,44,79,-0.7390071061026701],[115,45,64,-0.7437436333555344],[115,45,65,-0.7434196690418386],[115,45,66,-0.7430980730438242],[115,45,67,-0.7427788510720168],[115,45,68,-0.7424620087446975],[115,45,69,-0.7421475515874792],[115,45,70,-0.7418354850328706],[115,45,71,-0.7415258144198407],[115,45,72,-0.7412185449933856],[115,45,73,-0.7409136819041078],[115,45,74,-0.7406112302077671],[115,45,75,-0.7403111948648619],[115,45,76,-0.740013580740199],[115,45,77,-0.739718392602463],[115,45,78,-0.7394256351237907],[115,45,79,-0.7391353128793399],[115,46,64,-0.7438775122205379],[115,46,65,-0.7435531842017008],[115,46,66,-0.7432312241881244],[115,46,67,-0.7429116378952179],[115,46,68,-0.7425944309461587],[115,46,69,-0.7422796088714699],[115,46,70,-0.741967177108583],[115,46,71,-0.7416571410014038],[115,46,72,-0.7413495057998779],[115,46,73,-0.7410442766595703],[115,46,74,-0.7407414586412165],[115,46,75,-0.7404410567103039],[115,46,76,-0.7401430757366412],[115,46,77,-0.7398475204939277],[115,46,78,-0.7395543956593278],[115,46,79,-0.7392637058130399],[115,47,64,-0.744011564162642],[115,47,65,-0.7436868733344872],[115,47,66,-0.7433645501979771],[115,47,67,-0.7430446004733895],[115,47,68,-0.7427270297887836],[115,47,69,-0.7424118436795786],[115,47,70,-0.7420990475881145],[115,47,71,-0.7417886468632198],[115,47,72,-0.7414806467597754],[115,47,73,-0.7411750524382955],[115,47,74,-0.7408718689644777],[115,47,75,-0.7405711013087848],[115,47,76,-0.7402727543460137],[115,47,77,-0.7399768328548655],[115,47,78,-0.7396833415175195],[115,47,79,-0.7393922849192014],[115,48,64,-0.744145789148702],[115,48,65,-0.7438207364102158],[115,48,66,-0.7434980510465505],[115,48,67,-0.7431777387828377],[115,48,68,-0.7428598052520045],[115,48,69,-0.7425442559943509],[115,48,70,-0.742231096457112],[115,48,71,-0.7419203319940242],[115,48,72,-0.7416119678648903],[115,48,73,-0.7413060092351594],[115,48,74,-0.7410024611754777],[115,48,75,-0.7407013286612698],[115,48,76,-0.7404026165723078],[115,48,77,-0.740106329692281],[115,48,78,-0.7398124727083704],[115,48,79,-0.7395210502108165],[115,49,64,-0.744280187143265],[115,49,65,-0.7439547733965906],[115,49,66,-0.7436317267046934],[115,49,67,-0.7433110527975444],[115,49,68,-0.7429927573129236],[115,49,69,-0.7426768457959978],[115,49,70,-0.7423633236988822],[115,49,71,-0.7420521963802076],[115,49,72,-0.7417434691046841],[115,49,73,-0.7414371470426824],[115,49,74,-0.7411332352697831],[115,49,75,-0.7408317387663592],[115,49,76,-0.7405326624171445],[115,49,77,-0.7402360110108035],[115,49,78,-0.7399417892395055],[115,49,79,-0.7396500016984929],[115,50,64,-0.7444147581085532],[115,50,65,-0.7440889842589853],[115,50,66,-0.7437655771409193],[115,50,67,-0.7434445424891505],[115,50,68,-0.7431258859462972],[115,50,69,-0.7428096130623785],[115,50,70,-0.7424957292943755],[115,50,71,-0.7421842400057986],[115,50,72,-0.741875150466252],[115,50,73,-0.7415684658510131],[115,50,74,-0.7412641912405836],[115,50,75,-0.7409623316202715],[115,50,76,-0.7406628918797584],[115,50,77,-0.7403658768126709],[115,50,78,-0.7400712911161534],[115,50,79,-0.7397791393904373],[115,51,64,-0.7445495020044486],[115,51,65,-0.744223368960428],[115,51,66,-0.7438996023213902],[115,51,67,-0.74357820782694],[115,51,68,-0.7432591911245193],[115,51,69,-0.7429425577689845],[115,51,70,-0.7426283132221687],[115,51,71,-0.7423164628524477],[115,51,72,-0.7420070119343047],[115,51,73,-0.7416999656479111],[115,51,74,-0.7413953290786754],[115,51,75,-0.7410931072168264],[115,51,76,-0.7407933049569806],[115,51,77,-0.7404959270977128],[115,51,78,-0.7402009783411297],[115,51,79,-0.7399084632924385],[115,52,64,-0.744684418788547],[115,52,65,-0.744357927461655],[115,52,66,-0.7440338022099711],[115,52,67,-0.7437120487778944],[115,52,68,-0.7433926728176758],[115,52,69,-0.7430756798889946],[115,52,70,-0.7427610754585209],[115,52,71,-0.7424488648994817],[115,52,72,-0.7421390534912256],[115,52,73,-0.741831646418803],[115,52,74,-0.741526648772516],[115,52,75,-0.7412240655475002],[115,52,76,-0.7409239016432935],[115,52,77,-0.7406261618634056],[115,52,78,-0.740330850914892],[115,52,79,-0.7400379734079225],[115,53,64,-0.7448195084161343],[115,53,65,-0.7444926597210872],[115,53,66,-0.7441681767682059],[115,53,67,-0.743846065306669],[115,53,68,-0.7435263309935211],[115,53,69,-0.74320897939325],[115,53,70,-0.7428940159773484],[115,53,71,-0.7425814461238799],[115,53,72,-0.7422712751170443],[115,53,73,-0.741963508146757],[115,53,74,-0.7416581503081995],[115,53,75,-0.7413552066014009],[115,53,76,-0.7410546819308064],[115,53,77,-0.7407565811048473],[115,53,78,-0.7404609088355147],[115,53,79,-0.7401676697379277],[115,54,64,-0.74495477084021],[115,54,65,-0.7446275656948536],[115,54,66,-0.7443027259553407],[115,54,67,-0.7439802573756152],[115,54,68,-0.7436601656175006],[115,54,69,-0.743342456250278],[115,54,70,-0.743027134750248],[115,54,71,-0.7427142065002968],[115,54,72,-0.7424036767894608],[115,54,73,-0.7420955508125066],[115,54,74,-0.7417898336694805],[115,54,75,-0.7414865303652917],[115,54,76,-0.7411856458092788],[115,54,77,-0.7408871848147816],[115,54,78,-0.7405911520987126],[115,54,79,-0.7402975522811277],[115,55,64,-0.7450902060114624],[115,55,65,-0.7447626453367657],[115,55,66,-0.7444374497282998],[115,55,67,-0.7441146249447576],[115,55,68,-0.7437941766527267],[115,55,69,-0.7434761104262673],[115,55,70,-0.7431604317464732],[115,55,71,-0.7428471460010382],[115,55,72,-0.7425362584838211],[115,55,73,-0.7422277743944253],[115,55,74,-0.7419216988377487],[115,55,75,-0.7416180368235659],[115,55,76,-0.7413167932660957],[115,55,77,-0.7410179729835719],[115,55,78,-0.7407215806978162],[115,55,79,-0.7404276210338073],[115,56,64,-0.7452258138783239],[115,56,65,-0.7448978985983743],[115,56,66,-0.7445723480417398],[115,56,67,-0.7442491679718474],[115,56,68,-0.7439283640600338],[115,56,69,-0.7436099418851233],[115,56,70,-0.7432939069329879],[115,56,71,-0.742980264596115],[115,56,72,-0.7426690201731714],[115,56,73,-0.7423601788685827],[115,56,74,-0.7420537457920844],[115,56,75,-0.7417497259583022],[115,56,76,-0.7414481242863219],[115,56,77,-0.7411489455992576],[115,56,78,-0.7408521946238265],[115,56,79,-0.7405578759899166],[115,57,64,-0.7453615943869543],[115,57,65,-0.7450333254289518],[115,57,66,-0.744707420848034],[115,57,67,-0.744383886412347],[115,57,68,-0.7440627277979618],[115,57,69,-0.7437439505884511],[115,57,70,-0.7434275602744513],[115,57,71,-0.7431135622532282],[115,57,72,-0.742801961828242],[115,57,73,-0.7424927642087269],[115,57,74,-0.742185974509241],[115,57,75,-0.7418815977492481],[115,57,76,-0.7415796388526861],[115,57,77,-0.7412801026475364],[115,57,78,-0.7409829938653978],[115,57,79,-0.7406883171410545],[115,58,64,-0.745497547481225],[115,58,65,-0.7451689257754761],[115,58,66,-0.7448426680972556],[115,58,67,-0.7445187802194132],[115,58,68,-0.744197267822739],[115,58,69,-0.7438781364955396],[115,58,70,-0.7435613917332002],[115,58,71,-0.743247038937751],[115,58,72,-0.742935083417431],[115,58,73,-0.7426255303862681],[115,58,74,-0.7423183849636295],[115,58,75,-0.7420136521738026],[115,58,76,-0.7417113369455638],[115,58,77,-0.7414114441117478],[115,58,78,-0.7411139784088214],[115,58,79,-0.7408189444764521],[115,59,64,-0.7456336731027737],[115,59,65,-0.7453046995826863],[115,59,66,-0.7449780897372329],[115,59,67,-0.7446538493439522],[115,59,68,-0.7443319840883379],[115,59,69,-0.7440124995634156],[115,59,70,-0.7436954012693047],[115,59,71,-0.7433806946127843],[115,59,72,-0.7430683849068582],[115,59,73,-0.7427584773703338],[115,59,74,-0.7424509771273726],[115,59,75,-0.7421458892070718],[115,59,76,-0.7418432185430321],[115,59,77,-0.7415429699729281],[115,59,78,-0.7412451482380809],[115,59,79,-0.7409497579830273],[115,60,64,-0.7457699711909795],[115,60,65,-0.7454406467930565],[115,60,66,-0.7451136857135245],[115,60,67,-0.744789093734595],[115,60,68,-0.7444668765464504],[115,60,69,-0.7441470397468203],[115,60,70,-0.743829588840543],[115,60,71,-0.7435145292391324],[115,60,72,-0.7432018662603419],[115,60,73,-0.742891605127744],[115,60,74,-0.7425837509702806],[115,60,75,-0.7422783088218439],[115,60,76,-0.7419752836208456],[115,60,77,-0.7416746802097858],[115,60,78,-0.7413765033348264],[115,60,79,-0.7410807576453602],[115,61,64,-0.7459064416829876],[115,61,65,-0.7455767673468217],[115,61,66,-0.745249455969443],[115,61,67,-0.744924513337721],[115,61,68,-0.7446019451465111],[115,61,69,-0.7442817569982316],[115,61,70,-0.7439639544024254],[115,61,71,-0.7436485427753255],[115,61,72,-0.743335527439421],[115,61,73,-0.7430249136230344],[115,61,74,-0.7427167064598736],[115,61,75,-0.7424109109886124],[115,61,76,-0.7421075321524587],[115,61,77,-0.7418065747987244],[115,61,78,-0.7415080436783985],[115,61,79,-0.7412119434457162],[115,62,64,-0.746043084513683],[115,62,65,-0.7457130611819508],[115,62,66,-0.7453854004460303],[115,62,67,-0.7450601080974332],[115,62,68,-0.7447371898356725],[115,62,69,-0.7444166512678404],[115,62,70,-0.7440984979081687],[115,62,71,-0.7437827351775957],[115,62,72,-0.7434693684033303],[115,62,73,-0.7431584028184315],[115,62,74,-0.7428498435613582],[115,62,75,-0.7425436956755513],[115,62,76,-0.7422399641090011],[115,62,77,-0.7419386537138174],[115,62,78,-0.7416397692458027],[115,62,79,-0.7413433153640205],[115,63,64,-0.7461798996157469],[115,63,65,-0.7458495282342034],[115,63,66,-0.7455215190821126],[115,63,67,-0.7451958779556129],[115,63,68,-0.7448726105588602],[115,63,69,-0.7445517225036048],[115,63,70,-0.7442332193087525],[115,63,71,-0.7439171063999317],[115,63,72,-0.7436033891090567],[115,63,73,-0.7432920726739078],[115,63,74,-0.7429831622376812],[115,63,75,-0.7426766628485701],[115,63,76,-0.7423725794593332],[115,63,77,-0.7420709169268642],[115,63,78,-0.7417716800117651],[115,63,79,-0.7414748733779142],[115,64,64,-0.7463168869196403],[115,64,65,-0.7459861684371123],[115,64,66,-0.7456578118142838],[115,64,67,-0.7453318228519042],[115,64,68,-0.7450082072587566],[115,64,69,-0.7446869706512339],[115,64,70,-0.7443681185529014],[115,64,71,-0.744051656394062],[115,64,72,-0.7437375895113211],[115,64,73,-0.7434259231471654],[115,64,74,-0.7431166624495134],[115,64,75,-0.742809812471297],[115,64,76,-0.7425053781700288],[115,64,77,-0.7422033644073721],[115,64,78,-0.7419037759487147],[115,64,79,-0.7416066174627364],[115,65,64,-0.7464540463535863],[115,65,65,-0.7461229817219674],[115,65,66,-0.7457942785768892],[115,65,67,-0.7454679427236964],[115,65,68,-0.7451439798757834],[115,65,69,-0.7448223956541712],[115,65,70,-0.7445031955870687],[115,65,71,-0.7441863851094386],[115,65,72,-0.7438719695625622],[115,65,73,-0.743559954193618],[115,65,74,-0.7432503441552328],[115,65,75,-0.7429431445050619],[115,65,76,-0.7426383602053579],[115,65,77,-0.74233599612254],[115,65,78,-0.7420360570267674],[115,65,79,-0.7417385475915075],[115,66,64,-0.7465913778436262],[115,66,65,-0.746259968017871],[115,66,66,-0.7459309193020804],[115,66,67,-0.7456042375061792],[115,66,68,-0.7452799283481579],[115,66,69,-0.7449579974536495],[115,66,70,-0.7446384503554916],[115,66,71,-0.7443212924932916],[115,66,72,-0.7440065292129918],[115,66,73,-0.7436941657664478],[115,66,74,-0.7433842073109796],[115,66,75,-0.743076658908952],[115,66,76,-0.742771525527343],[115,66,77,-0.7424688120373135],[115,66,78,-0.7421685232137804],[115,66,79,-0.7418706637349846],[115,67,64,-0.7467288813135949],[115,67,65,-0.7463971272517123],[115,67,66,-0.7460677339197908],[115,67,67,-0.7457407071323188],[115,67,68,-0.7454160526118672],[115,67,69,-0.7450937759886662],[115,67,70,-0.7447738828001664],[115,67,71,-0.7444563784906049],[115,67,72,-0.7441412684105698],[115,67,73,-0.7438285578165791],[115,67,74,-0.7435182518706314],[115,67,75,-0.7432103556397862],[115,67,76,-0.7429048740957331],[115,67,77,-0.7426018121143599],[115,67,78,-0.7423011744753273],[115,67,79,-0.742002965861636],[115,68,64,-0.746866556685144],[115,68,65,-0.7465344593481921],[115,68,66,-0.7462047223577585],[115,68,67,-0.74587735153288],[115,68,68,-0.7455523526006924],[115,68,69,-0.7452297311960068],[115,68,70,-0.7449094928608719],[115,68,71,-0.744591643044139],[115,68,72,-0.7442761871010274],[115,68,73,-0.7439631302927023],[115,68,74,-0.7436524777858262],[115,68,75,-0.7433442346521391],[115,68,76,-0.7430384058680269],[115,68,77,-0.7427349963140911],[115,68,78,-0.7424340107747216],[115,68,79,-0.742135453937665],[115,69,64,-0.7470044038777164],[115,69,65,-0.7466719642297964],[115,69,66,-0.7463418845415023],[115,69,67,-0.7460141706364029],[115,69,68,-0.745688828246183],[115,69,69,-0.7453658630102197],[115,69,70,-0.745045280475144],[115,69,71,-0.7447270860944064],[115,69,72,-0.744411285227842],[115,69,73,-0.7440978831412486],[115,69,74,-0.7437868850059377],[115,69,75,-0.7434782958983148],[115,69,76,-0.7431721207994484],[115,69,77,-0.7428683645946386],[115,69,78,-0.7425670320729907],[115,69,79,-0.7422681279269837],[115,70,64,-0.7471424228086032],[115,70,65,-0.7468096418168534],[115,70,66,-0.7464792203943761],[115,70,67,-0.7461511643692564],[115,70,68,-0.7458254794777125],[115,70,69,-0.7455021713636715],[115,70,70,-0.7451812455783313],[115,70,71,-0.7448627075797267],[115,70,72,-0.7445465627322929],[115,70,73,-0.7442328163064454],[115,70,74,-0.7439214734781299],[115,70,75,-0.7436125393284032],[115,70,76,-0.7433060188430013],[115,70,77,-0.7430019169119089],[115,70,78,-0.7427002383289325],[115,70,79,-0.742400987791269],[115,71,64,-0.7472806133929256],[115,71,65,-0.7469474920275158],[115,71,66,-0.746616729837553],[115,71,67,-0.7462883326556233],[115,71,68,-0.7459623062224621],[115,71,69,-0.7456386561865308],[115,71,70,-0.745317388103579],[115,71,71,-0.7449985074362098],[115,71,72,-0.7446820195534439],[115,71,73,-0.7443679297302995],[115,71,74,-0.7440562431473414],[115,71,75,-0.7437469648902628],[115,71,76,-0.7434400999494528],[115,71,77,-0.7431356532195665],[115,71,78,-0.7428336294990971],[115,71,79,-0.7425340334899455],[115,72,64,-0.7474189755436188],[115,72,65,-0.7470855147777437],[115,72,66,-0.7467544127900081],[115,72,67,-0.7464256754174821],[115,72,68,-0.7460993084054026],[115,72,69,-0.7457753174067502],[115,72,70,-0.7454537079818102],[115,72,71,-0.7451344855977385],[115,72,72,-0.7448176556281267],[115,72,73,-0.7445032233525797],[115,72,74,-0.7441911939562669],[115,72,75,-0.743881572529503],[115,72,76,-0.743574364067316],[115,72,77,-0.7432695734690162],[115,72,78,-0.7429672055377701],[115,72,79,-0.7426672649801678],[115,73,64,-0.7475575091714871],[115,73,65,-0.747223709981361],[115,73,66,-0.7468922691685733],[115,73,67,-0.7465631925746625],[115,73,68,-0.7462364859493512],[115,73,69,-0.7459121549501228],[115,73,70,-0.7455902051417829],[115,73,71,-0.7452706419960252],[115,73,72,-0.7449534708909958],[115,73,73,-0.7446386971108723],[115,73,74,-0.7443263258454134],[115,73,75,-0.7440163621895404],[115,73,76,-0.7437088111429052],[115,73,77,-0.7434036776094596],[115,73,78,-0.743100966397028],[115,73,79,-0.7428006822168763],[115,74,64,-0.7476962141851795],[115,74,65,-0.7473620775500298],[115,74,66,-0.7470302988879136],[115,74,67,-0.7467008840448215],[115,74,68,-0.7463738387749455],[115,74,69,-0.7460491687402563],[115,74,70,-0.7457268795100642],[115,74,71,-0.7454069765605849],[115,74,72,-0.7450894652745041],[115,74,73,-0.7447743509405563],[115,74,74,-0.7444616387530748],[115,74,75,-0.7441513338115726],[115,74,76,-0.743843441120311],[115,74,77,-0.7435379655878681],[115,74,78,-0.7432349120267127],[115,74,79,-0.7429342851527718],[115,75,64,-0.7478350904912124],[115,75,65,-0.7475006173932741],[115,75,66,-0.7471685018605496],[115,75,67,-0.7468387497434655],[115,75,68,-0.7465113668006674],[115,75,69,-0.7461863586985971],[115,75,70,-0.745863731011054],[115,75,71,-0.7455434892187602],[115,75,72,-0.7452256387089258],[115,75,73,-0.7449101847748266],[115,75,74,-0.7445971326153555],[115,75,75,-0.7442864873346027],[115,75,76,-0.7439782539414235],[115,75,77,-0.7436724373490082],[115,75,78,-0.7433690423744552],[115,75,79,-0.7430680737383388],[115,76,64,-0.7479741379939453],[115,76,65,-0.7476393294184546],[115,76,66,-0.7473068779968328],[115,76,67,-0.7469767895839259],[115,76,68,-0.7466490699428174],[115,76,69,-0.7463237247444043],[115,76,70,-0.7460007595669592],[115,76,71,-0.7456801798956951],[115,76,72,-0.7453619911223305],[115,76,73,-0.745046198544668],[115,76,74,-0.7447328073661447],[115,76,75,-0.7444218226954122],[115,76,76,-0.7441132495459063],[115,76,77,-0.7438070928354141],[115,76,78,-0.7435033573856495],[115,76,79,-0.7432020479218191],[115,77,64,-0.7481133565956359],[115,77,65,-0.7477782135308241],[115,77,66,-0.7474454272050006],[115,77,67,-0.7471150034774147],[115,77,68,-0.7467869481155711],[115,77,69,-0.7464612667948063],[115,77,70,-0.7461379650978501],[115,77,71,-0.7458170485143908],[115,77,72,-0.7454985224406401],[115,77,73,-0.7451823921789117],[115,77,74,-0.7448686629371716],[115,77,75,-0.7445573398286187],[115,77,76,-0.744248427871253],[115,77,77,-0.743941931987445],[115,77,78,-0.7436378570035084],[115,77,79,-0.7433362076492689],[115,78,64,-0.7482527461964235],[115,78,65,-0.7479172696335112],[115,78,66,-0.7475841493911604],[115,78,67,-0.747253391333007],[115,78,68,-0.7469250012309612],[115,78,69,-0.7465989847647827],[115,78,70,-0.7462753475216425],[115,78,71,-0.7459540949956888],[115,78,72,-0.7456352325876107],[115,78,73,-0.7453187656042177],[115,78,74,-0.7450046992579894],[115,78,75,-0.7446930386666568],[115,78,76,-0.7443837888527696],[115,78,77,-0.7440769547432663],[115,78,78,-0.7437725411690468],[115,78,79,-0.7434705528645402],[115,79,64,-0.7483923066943116],[115,79,65,-0.7480564976275027],[115,79,66,-0.7477230444592713],[115,79,67,-0.7473919530576244],[115,79,68,-0.7470632291988608],[115,79,69,-0.7467368785671477],[115,79,70,-0.7464129067540812],[115,79,71,-0.7460913192582533],[115,79,72,-0.7457721214848154],[115,79,73,-0.7454553187450572],[115,79,74,-0.7451409162559567],[115,79,75,-0.7448289191397615],[115,79,76,-0.7445193324235565],[115,79,77,-0.7442121610388331],[115,79,78,-0.7439074098210627],[115,79,79,-0.7436050835092642],[115,80,64,-0.7485320379852239],[115,80,65,-0.7481958974116991],[115,80,66,-0.7478621123112009],[115,80,67,-0.7475306885560906],[115,80,68,-0.7472016319270395],[115,80,69,-0.7468749481126056],[115,80,70,-0.7465506427087951],[115,80,71,-0.7462287212186276],[115,80,72,-0.7459091890517009],[115,80,73,-0.7455920515237693],[115,80,74,-0.7452773138562941],[115,80,75,-0.7449649811760245],[115,80,76,-0.7446550585145653],[115,80,77,-0.744347550807946],[115,80,78,-0.744042462896195],[115,80,79,-0.743739799522906],[115,81,64,-0.7486719399629794],[115,81,65,-0.7483354688828903],[115,81,66,-0.7480013528466996],[115,81,67,-0.7476695977311059],[115,81,68,-0.7473402093211371],[115,81,69,-0.7470131933097262],[115,81,70,-0.7466885552972725],[115,81,71,-0.7463663007912078],[115,81,72,-0.7460464352055607],[115,81,73,-0.7457289638605344],[115,81,74,-0.7454138919820582],[115,81,75,-0.7451012247013675],[115,81,76,-0.744790967054572],[115,81,77,-0.7444831239822249],[115,81,78,-0.7441777003288962],[115,81,79,-0.7438747008427402],[115,82,64,-0.7488120125193154],[115,82,65,-0.7484752119357783],[115,82,66,-0.7481407659634235],[115,82,67,-0.7478086804832709],[115,82,68,-0.7474789612846882],[115,82,69,-0.7471516140649669],[115,82,70,-0.7468266444288838],[115,82,71,-0.7465040578882669],[115,82,72,-0.7461838598615593],[115,82,73,-0.7458660556733984],[115,82,74,-0.7455506505541653],[115,82,75,-0.7452376496395666],[115,82,76,-0.7449270579702019],[115,82,77,-0.7446188804911329],[115,82,78,-0.7443131220514565],[115,82,79,-0.7440097874038732],[115,83,64,-0.748952255543862],[115,83,65,-0.7486151264629518],[115,83,66,-0.7482803515569099],[115,83,67,-0.747947936711061],[115,83,68,-0.7476178877190958],[115,83,69,-0.7472902102826483],[115,83,70,-0.7469649100108566],[115,83,71,-0.7466419924199287],[115,83,72,-0.7463214629327068],[115,83,73,-0.7460033268782463],[115,83,74,-0.7456875894913652],[115,83,75,-0.7453742559122258],[115,83,76,-0.7450633311859023],[115,83,77,-0.7447548202619496],[115,83,78,-0.7444487279939775],[115,83,79,-0.7441450591392176],[115,84,64,-0.7490926689241988],[115,84,65,-0.7487552123549427],[115,84,66,-0.7484201095206331],[115,84,67,-0.7480873663108821],[115,84,68,-0.7477569885236877],[115,84,69,-0.7474289818650096],[115,84,70,-0.747103351948331],[115,84,71,-0.7467801042942241],[115,84,72,-0.7464592443299144],[115,84,73,-0.7461407773888591],[115,84,74,-0.7458247087102978],[115,84,75,-0.7455110434388335],[115,84,76,-0.7451997866239991],[115,84,77,-0.7448909432198286],[115,84,78,-0.744584518084429],[115,84,79,-0.7442805159795485],[115,85,64,-0.7492332525458371],[115,85,65,-0.7488954695002087],[115,85,66,-0.7485600397459865],[115,85,67,-0.748226969177054],[115,85,68,-0.7478962635956992],[115,85,69,-0.7475679287121915],[115,85,70,-0.747241970144343],[115,85,71,-0.7469183934170739],[115,85,72,-0.7465972039619767],[115,85,73,-0.7462784071168955],[115,85,74,-0.7459620081254756],[115,85,75,-0.7456480121367445],[115,85,76,-0.7453364242046798],[115,85,77,-0.7450272492877785],[115,85,78,-0.7447204922486304],[115,85,79,-0.7444161578534854],[115,86,64,-0.7493740062922025],[115,86,65,-0.7490358977851154],[115,86,66,-0.7487001421222659],[115,86,67,-0.7483667452017919],[115,86,68,-0.7480357128302553],[115,86,69,-0.7477070507222185],[115,86,70,-0.7473807644998064],[115,86,71,-0.7470568596922705],[115,86,72,-0.7467353417355552],[115,86,73,-0.7464162159718749],[115,86,74,-0.7460994876492653],[115,86,75,-0.745785161921163],[115,86,76,-0.7454732438459748],[115,86,77,-0.7451637383866458],[115,86,78,-0.7448566504102334],[115,86,79,-0.7445519846874746],[115,87,64,-0.7495149300446919],[115,87,65,-0.749176497093993],[115,87,66,-0.7488404165367253],[115,87,67,-0.7485066942752638],[115,87,68,-0.7481753361204275],[115,87,69,-0.7478463477910557],[115,87,70,-0.7475197349135689],[115,87,71,-0.747195503021535],[115,87,72,-0.7468736575552333],[115,87,73,-0.7465542038612332],[115,87,74,-0.7462371471919444],[115,87,75,-0.7459224927051982],[115,87,76,-0.7456102454638142],[115,87,77,-0.745300410435171],[115,87,78,-0.7449929924907787],[115,87,79,-0.7446879964058459],[115,88,64,-0.7496560236826552],[115,88,65,-0.7493172673091193],[115,88,66,-0.7489808628745596],[115,88,67,-0.7486468162855721],[115,88,68,-0.7483151333572159],[115,88,69,-0.7479858198125902],[115,88,70,-0.7476588812823953],[115,88,71,-0.747334323304499],[115,88,72,-0.7470121513234993],[115,88,73,-0.746692370690305],[115,88,74,-0.7463749866616843],[115,88,75,-0.7460600043998467],[115,88,76,-0.7457474289720103],[115,88,77,-0.7454372653499711],[115,88,78,-0.7451295184096769],[115,88,79,-0.7448241929307939],[115,89,64,-0.7497972870833779],[115,89,65,-0.7494582083107009],[115,89,66,-0.7491214810188872],[115,89,67,-0.7487871111187363],[115,89,68,-0.748455104429531],[115,89,69,-0.7481254666786141],[115,89,70,-0.7477982035009493],[115,89,71,-0.747473320438687],[115,89,72,-0.7471508229407291],[115,89,73,-0.7468307163623067],[115,89,74,-0.7465130059645313],[115,89,75,-0.7461976969139751],[115,89,76,-0.7458847942822389],[115,89,77,-0.7455743030455213],[115,89,78,-0.7452662280841923],[115,89,79,-0.7449605741823606],[115,90,64,-0.7499387201221382],[115,90,65,-0.7495993199769309],[115,90,66,-0.749262270850806],[115,90,67,-0.7489275786587498],[115,90,68,-0.7485952492242518],[115,90,69,-0.7482652882788815],[115,90,70,-0.7479377014618495],[115,90,71,-0.7476124943195732],[115,90,72,-0.7472896723052412],[115,90,73,-0.746969240778392],[115,90,74,-0.7466512050044637],[115,90,75,-0.746335570154376],[115,90,76,-0.7460223413040965],[115,90,77,-0.7457115234342113],[115,90,78,-0.7454031214294976],[115,90,79,-0.7450971400784918],[115,91,64,-0.7500803226721807],[115,91,65,-0.7497406021839623],[115,91,66,-0.749403232249368],[115,91,67,-0.7490682187875535],[115,91,68,-0.7487355676261981],[115,91,69,-0.7484052845010813],[115,91,70,-0.7480773750556443],[115,91,71,-0.7477518448405549],[115,91,72,-0.7474286993132725],[115,91,73,-0.7471079438376262],[115,91,74,-0.7467895836833658],[115,91,75,-0.7464736240257419],[115,91,76,-0.7461600699450739],[115,91,77,-0.7458489264263201],[115,91,78,-0.7455401983586493],[115,91,79,-0.7452338905350104],[115,92,64,-0.75022209460474],[115,92,65,-0.7498820548059325],[115,92,66,-0.7495443650916029],[115,92,67,-0.7492090313850595],[115,92,68,-0.748876059518155],[115,92,69,-0.7485454552308619],[115,92,70,-0.7482172241708352],[115,92,71,-0.7478913718929767],[115,92,72,-0.7475679038590003],[115,92,73,-0.74724682543701],[115,92,74,-0.7469281419010508],[115,92,75,-0.7466118584306889],[115,92,76,-0.7462979801105799],[115,92,77,-0.7459865119300382],[115,92,78,-0.7456774587826099],[115,92,79,-0.7453708254656409],[115,93,64,-0.7503640357890151],[115,93,65,-0.7500236777149358],[115,93,66,-0.7496856692524914],[115,93,67,-0.7493500163291256],[115,93,68,-0.7490167247808468],[115,93,69,-0.7486858003518045],[115,93,70,-0.7483572486938503],[115,93,71,-0.7480310753661039],[115,93,72,-0.7477072858345171],[115,93,73,-0.7473858854714528],[115,93,74,-0.7470668795552352],[115,93,75,-0.7467502732697303],[115,93,76,-0.7464360717039142],[115,93,77,-0.7461242798514423],[115,93,78,-0.7458149026102221],[115,93,79,-0.7455079447819817],[115,94,64,-0.7505061460922255],[115,94,65,-0.7501654707810818],[115,94,66,-0.7498271446050229],[115,94,67,-0.749491173495611],[115,94,68,-0.7491575632929937],[115,94,69,-0.7488263197454796],[115,94,70,-0.7484974485091012],[115,94,71,-0.7481709551471789],[115,94,72,-0.7478468451298865],[115,94,73,-0.7475251238338295],[115,94,74,-0.7472057965415951],[115,94,75,-0.7468888684413335],[115,94,76,-0.7465743446263252],[115,94,77,-0.7462622300945512],[115,94,78,-0.7459525297482654],[115,94,79,-0.7456452483935626],[115,95,64,-0.7506484253795945],[115,95,65,-0.7503074338724763],[115,95,66,-0.7499687910201771],[115,95,67,-0.7496325027583596],[115,95,68,-0.7492985749312933],[115,95,69,-0.7489670132914299],[115,95,70,-0.7486378234989652],[115,95,71,-0.7483110111214044],[115,95,72,-0.7479865816331264],[115,95,73,-0.7476645404149629],[115,95,74,-0.7473448927537485],[115,95,75,-0.7470276438419012],[115,95,76,-0.746712798776991],[115,95,77,-0.7464003625613083],[115,95,78,-0.7460903401014378],[115,95,79,-0.7457827362078265],[115,96,64,-0.75079087351433],[115,96,65,-0.7504495668552046],[115,96,66,-0.750110608366906],[115,96,67,-0.7497740039891811],[115,96,68,-0.7494397595704039],[115,96,69,-0.7491078808671517],[115,96,70,-0.7487783735437675],[115,96,71,-0.748451243171924],[115,96,72,-0.7481264952301894],[115,96,73,-0.7478041351036051],[115,96,74,-0.7474841680832368],[115,96,75,-0.7471665993657546],[115,96,76,-0.7468514340530017],[115,96,77,-0.7465386771515627],[115,96,78,-0.7462283335723381],[115,96,79,-0.745920408130111],[115,97,64,-0.7509334903576826],[115,97,65,-0.7505918695933874],[115,97,66,-0.7502525965121917],[115,97,67,-0.7499156770579086],[115,97,68,-0.749581117083],[115,97,69,-0.7492489223481522],[115,97,70,-0.7489190985218375],[115,97,71,-0.7485916511798802],[115,97,72,-0.7482665858050209],[115,97,73,-0.7479439077864947],[115,97,74,-0.7476236224195818],[115,97,75,-0.7473057349051889],[115,97,76,-0.7469902503494162],[115,97,77,-0.7466771737631273],[115,97,78,-0.7463665100615222],[115,97,79,-0.7460582640637055],[115,98,64,-0.7510762757689189],[115,98,65,-0.7507343419491552],[115,98,66,-0.7503947553210188],[115,98,67,-0.7500575218323724],[115,98,68,-0.7497226473397476],[115,98,69,-0.7493901376079225],[115,98,70,-0.749059998309483],[115,98,71,-0.7487322350243877],[115,98,72,-0.7484068532395326],[115,98,73,-0.7480838583483302],[115,98,74,-0.7477632556502599],[115,98,75,-0.7474450503504478],[115,98,76,-0.7471292475592359],[115,98,77,-0.7468158522917507],[115,98,78,-0.7465048694674766],[115,98,79,-0.746196303909824],[115,99,64,-0.7512192296053453],[115,99,65,-0.7508769837826716],[115,99,66,-0.7505370846563995],[115,99,67,-0.7501995381784226],[115,99,68,-0.7498643502093258],[115,99,69,-0.7495315265179624],[115,99,70,-0.7492010727810137],[115,99,71,-0.7488729945825561],[115,99,72,-0.7485472974136251],[115,99,73,-0.7482239866717942],[115,99,74,-0.7479030676607246],[115,99,75,-0.7475845455897467],[115,99,76,-0.7472684255734281],[115,99,77,-0.7469547126311422],[115,99,78,-0.7466434116866425],[115,99,79,-0.7463345275676299],[115,100,64,-0.7513623517222814],[115,100,65,-0.7510197949521077],[115,100,66,-0.7506795843793459],[115,100,67,-0.7503417259599039],[115,100,68,-0.7500062255584028],[115,100,69,-0.7496730889477528],[115,100,70,-0.7493423218087143],[115,100,71,-0.7490139297294651],[115,100,72,-0.7486879182051631],[115,100,73,-0.7483642926375256],[115,100,74,-0.7480430583343805],[115,100,75,-0.7477242205092458],[115,100,76,-0.7474077842808986],[115,100,77,-0.7470937546729439],[115,100,78,-0.7467821366133883],[115,100,79,-0.7464729349342076],[115,101,64,-0.7515056419731178],[115,101,65,-0.751162775313698],[115,101,66,-0.750822254348928],[115,101,67,-0.7504840850387126],[115,101,68,-0.7501482732516908],[115,101,69,-0.7498148247648131],[115,101,70,-0.7494837452629025],[115,101,71,-0.7491550403382202],[115,101,72,-0.7488287154900303],[115,101,73,-0.7485047761241779],[115,101,74,-0.7481832275526406],[115,101,75,-0.7478640749931076],[115,101,76,-0.7475473235685502],[115,101,77,-0.7472329783067887],[115,101,78,-0.7469210441400672],[115,101,79,-0.746611525904621],[115,102,64,-0.7516491002092972],[115,102,65,-0.7513059247217235],[115,102,66,-0.7509650944222557],[115,102,67,-0.7506266152747775],[115,102,68,-0.7502904931519291],[115,102,69,-0.7499567338346839],[115,102,70,-0.7496253430119098],[115,102,71,-0.7492963262799351],[115,102,72,-0.7489696891421131],[115,102,73,-0.7486454370084002],[115,102,74,-0.748323575194907],[115,102,75,-0.7480041089234786],[115,102,76,-0.7476870433212632],[115,102,77,-0.7473723834202813],[115,102,78,-0.7470601341569985],[115,102,79,-0.746750300371894],[115,103,64,-0.7517927262802973],[115,103,65,-0.751449243028493],[115,103,66,-0.75110810445446],[115,103,67,-0.750769316526043],[115,103,68,-0.7504328851198657],[115,103,69,-0.7500988160209073],[115,103,70,-0.7497671149220637],[115,103,71,-0.7494377874237134],[115,103,72,-0.7491108390332815],[115,103,73,-0.7487862751648193],[115,103,74,-0.7484641011385542],[115,103,75,-0.7481443221804706],[115,103,76,-0.7478269434218778],[115,103,77,-0.74751196989898],[115,103,78,-0.7471994065524492],[115,103,79,-0.746889258226993],[115,104,64,-0.7519365200336869],[115,104,65,-0.7515927300844005],[115,104,66,-0.7512512842987505],[115,104,67,-0.7509121886485253],[115,104,68,-0.7505754490143146],[115,104,69,-0.7502410711850858],[115,104,70,-0.7499090608577456],[115,104,71,-0.7495794236367054],[115,104,72,-0.7492521650334459],[115,104,73,-0.7489272904660965],[115,104,74,-0.7486048052589848],[115,104,75,-0.7482847146422178],[115,104,76,-0.7479670237512503],[115,104,77,-0.7476517376264543],[115,104,78,-0.7473388612126917],[115,104,79,-0.7470283993588831],[115,105,64,-0.7520804813151005],[115,105,65,-0.7517363857378988],[115,105,66,-0.7513946338063894],[115,105,67,-0.7510552314962866],[115,105,68,-0.7507181846921287],[115,105,69,-0.7503834991868541],[115,105,70,-0.7500511806813626],[115,105,71,-0.7497212347840819],[115,105,72,-0.7493936670105315],[115,105,73,-0.7490684827829015],[115,105,74,-0.7487456874296035],[115,105,75,-0.7484252861848508],[115,105,76,-0.7481072841882276],[115,105,77,-0.7477916864842571],[115,105,78,-0.747478498021976],[115,105,79,-0.7471677236545018],[115,106,64,-0.7522246099682613],[115,106,65,-0.7518802098355227],[115,106,66,-0.7515381528267141],[115,106,67,-0.7511984449214583],[115,106,68,-0.7508610920082242],[115,106,69,-0.7505260998839036],[115,106,70,-0.7501934742533727],[115,106,71,-0.7498632207290581],[115,106,72,-0.7495353448305008],[115,106,73,-0.7492098519839353],[115,106,74,-0.7488867475218404],[115,106,75,-0.7485660366825195],[115,106,76,-0.7482477246096695],[115,106,77,-0.7479318163519493],[115,106,78,-0.7476183168625541],[115,106,79,-0.7473072309987827],[115,107,64,-0.7523689058349554],[115,107,65,-0.7520242022218631],[115,107,66,-0.7516818412071119],[115,107,67,-0.7513418287742146],[115,107,68,-0.7510041708155533],[115,107,69,-0.7506688731319558],[115,107,70,-0.7503359414322573],[115,107,71,-0.7500053813328659],[115,107,72,-0.7496771983573273],[115,107,73,-0.7493513979359037],[115,107,74,-0.7490279854051244],[115,107,75,-0.7487069660073663],[115,107,76,-0.7483883448904227],[115,107,77,-0.7480721271070722],[115,107,78,-0.7477583176146524],[115,107,79,-0.7474469212746279],[115,108,64,-0.7525133687550878],[115,108,65,-0.752168362739624],[115,108,66,-0.7518256987930761],[115,108,67,-0.7514853829028296],[115,108,68,-0.751147420965162],[115,108,69,-0.7508118187848194],[115,108,70,-0.7504785820745785],[115,108,71,-0.750147716454812],[115,108,72,-0.7498192274530532],[115,108,73,-0.7494931205035749],[115,108,74,-0.7491694009469403],[115,108,75,-0.7488480740295835],[115,108,76,-0.7485291449033777],[115,108,77,-0.748212618625205],[115,108,78,-0.7478985001565296],[115,108,79,-0.7475867943629657],[115,109,64,-0.7526579985666657],[115,109,65,-0.7523126912296041],[115,109,66,-0.7519697254281887],[115,109,67,-0.7516291071536595],[115,109,68,-0.7512908423061715],[115,109,69,-0.7509549366943719],[115,109,70,-0.750621396034961],[115,109,71,-0.7502902259522592],[115,109,72,-0.7499614319777702],[115,109,73,-0.7496350195497606],[115,109,74,-0.7493109940128108],[115,109,75,-0.7489893606173951],[115,109,76,-0.7486701245194506],[115,109,77,-0.7483532907799465],[115,109,78,-0.7480388643644575],[115,109,79,-0.7477268501427322],[115,110,64,-0.7528027951057795],[115,110,65,-0.7524571875306791],[115,110,66,-0.7521139209541017],[115,110,67,-0.7517730013711237],[115,110,68,-0.75143443468576],[115,110,69,-0.751098226710541],[115,110,70,-0.7507643831660737],[115,110,71,-0.7504329096806082],[115,110,72,-0.7501038117896017],[115,110,73,-0.7497770949352978],[115,110,74,-0.749452764466277],[115,110,75,-0.7491308256370374],[115,110,76,-0.7488112836075639],[115,110,77,-0.748494143442896],[115,110,78,-0.7481794101127033],[115,110,79,-0.747867088490852],[115,111,64,-0.75294775820666],[115,111,65,-0.7526018514798584],[115,111,66,-0.7522582852105941],[115,111,67,-0.7519170653977625],[115,111,68,-0.75157819794922],[115,111,69,-0.7512416886813628],[115,111,70,-0.7509075433186867],[115,111,71,-0.7505757674933545],[115,111,72,-0.7502463667447598],[115,111,73,-0.7499193465191059],[115,111,74,-0.7495947121689566],[115,111,75,-0.7492724689528176],[115,111,76,-0.7489526220347043],[115,111,77,-0.748635176483711],[115,111,78,-0.7483201372735855],[115,111,79,-0.7480075092822962],[115,112,64,-0.7530928877016523],[115,112,65,-0.7527466829122585],[115,112,66,-0.7524028180355462],[115,112,67,-0.7520612990742102],[115,112,68,-0.7517221319399315],[115,112,69,-0.7513853224529539],[115,112,70,-0.7510508763416448],[115,112,71,-0.7507187992420622],[115,112,72,-0.7503890966975184],[115,112,73,-0.7500617741581599],[115,112,74,-0.7497368369805171],[115,112,75,-0.7494142904270857],[115,112,76,-0.7490941396658958],[115,112,77,-0.7487763897700801],[115,112,78,-0.7484610457174483],[115,112,79,-0.748148112390055],[115,113,64,-0.7532381834212387],[115,113,65,-0.7528916816611276],[115,113,66,-0.7525475192649619],[115,113,67,-0.7522057022392189],[115,113,68,-0.7518662364993858],[115,113,69,-0.751529127869536],[115,113,70,-0.7511943820818913],[115,113,71,-0.750862004776387],[115,113,72,-0.7505320015002375],[115,113,73,-0.7502043777075145],[115,113,74,-0.7498791387586984],[115,113,75,-0.749556289920259],[115,113,76,-0.7492358363642234],[115,113,77,-0.7489177831677467],[115,113,78,-0.7486021353126843],[115,113,79,-0.7482888976851612],[115,114,64,-0.7533836451940134],[115,114,65,-0.7530368475578176],[115,114,66,-0.7526923887329433],[115,114,67,-0.7523502747296317],[115,114,68,-0.7520105114671582],[115,114,69,-0.7516731047734087],[115,114,70,-0.7513380603844404],[115,114,71,-0.7510053839440496],[115,114,72,-0.7506750810033346],[115,114,73,-0.7503471570202761],[115,114,74,-0.750021617359287],[115,114,75,-0.7496984672907938],[115,114,76,-0.7493777119908053],[115,114,77,-0.7490593565404813],[115,114,78,-0.7487434059257077],[115,114,79,-0.7484298650366629],[115,115,64,-0.7535292728467381],[115,115,65,-0.7531821804318422],[115,115,66,-0.7528374262717471],[115,115,67,-0.7524950163804401],[115,115,68,-0.7521549566809665],[115,115,69,-0.7518172530050063],[115,115,70,-0.7514819110924357],[115,115,71,-0.7511489365908931],[115,115,72,-0.7508183350553443],[115,115,73,-0.7504901119476612],[115,115,74,-0.7501642726361725],[115,115,75,-0.7498408223952446],[115,115,76,-0.7495197664048507],[115,115,77,-0.7492011097501401],[115,115,78,-0.7488848574210114],[115,115,79,-0.7485710143116816],[115,116,64,-0.7536750662043253],[115,116,65,-0.7533276801108586],[115,116,66,-0.7529826317117672],[115,116,67,-0.7526399270247655],[115,116,68,-0.7522995719766514],[115,116,69,-0.7519615724028808],[115,116,70,-0.7516259340471306],[115,116,71,-0.7512926625608647],[115,116,72,-0.7509617635028983],[115,116,73,-0.7506332423389774],[115,116,74,-0.7503071044413293],[115,116,75,-0.7499833550882438],[115,116,76,-0.7496619994636419],[115,116,77,-0.7493430426566451],[115,116,78,-0.7490264896611492],[115,116,79,-0.7487123453753928],[115,117,64,-0.7538210250898186],[115,117,65,-0.7534733464206487],[115,117,66,-0.7531280048815147],[115,117,67,-0.7527850064938408],[115,117,68,-0.7524443571881583],[115,117,69,-0.7521060628036815],[115,117,70,-0.7517701290878707],[115,117,71,-0.7514365616959965],[115,117,72,-0.751105366190707],[115,117,73,-0.7507765480416045],[115,117,74,-0.7504501126247982],[115,117,75,-0.7501260652224842],[115,117,76,-0.7498044110225142],[115,117,77,-0.7494851551179658],[115,117,78,-0.7491683025067154],[115,117,79,-0.7488538580910071],[115,118,64,-0.7539671493244515],[115,118,65,-0.753619179185177],[115,118,66,-0.7532735456076773],[115,118,67,-0.752930254617068],[115,118,68,-0.7525893121475953],[115,118,69,-0.7522507240422145],[115,118,70,-0.7519144960521501],[115,118,71,-0.7515806338364637],[115,118,72,-0.751249142961617],[115,118,73,-0.7509200289010526],[115,118,74,-0.7505932970347435],[115,118,75,-0.7502689526487754],[115,118,76,-0.7499470009349143],[115,118,77,-0.7496274469901769],[115,118,78,-0.749310295816404],[115,118,79,-0.7489955523198286],[115,119,64,-0.7541134387276276],[115,119,65,-0.7537651782265716],[115,119,66,-0.7534192537150997],[115,119,67,-0.7530756712219991],[115,119,68,-0.7527344366852142],[115,119,69,-0.7523955559514219],[115,119,70,-0.7520590347755947],[115,119,71,-0.7517248788205653],[115,119,72,-0.7513930936565932],[115,119,73,-0.751063684760943],[115,119,74,-0.7507366575174348],[115,119,75,-0.7504120172160265],[115,119,76,-0.7500897690523817],[115,119,77,-0.7497699181274395],[115,119,78,-0.7494524694469886],[115,119,79,-0.7491374279212353],[115,120,64,-0.7542598931169029],[115,120,65,-0.7539113433651067],[115,120,66,-0.7535651290267646],[115,120,67,-0.7532212561343188],[115,120,68,-0.7528797306293921],[115,120,69,-0.7525405583623658],[115,120,70,-0.7522037450919412],[115,120,71,-0.7518692964847061],[115,120,72,-0.7515372181146991],[115,120,73,-0.7512075154629894],[115,120,74,-0.7508801939172272],[115,120,75,-0.7505552587712259],[115,120,76,-0.750232715224529],[115,120,77,-0.749912568381982],[115,120,78,-0.7495948232533045],[115,120,79,-0.7492794847526596],[115,121,64,-0.7544065123080438],[115,121,65,-0.7540576744192587],[115,121,66,-0.753711171363852],[115,121,67,-0.7533670091779007],[115,121,68,-0.7530251938066888],[115,121,69,-0.7526857311042832],[115,121,70,-0.752348626833097],[115,121,71,-0.752013886663454],[115,121,72,-0.7516815161731548],[115,121,73,-0.751351520847056],[115,121,74,-0.7510239060766205],[115,121,75,-0.7506986771594995],[115,121,76,-0.7503758392991005],[115,121,77,-0.7500553976041577],[115,121,78,-0.7497373570883057],[115,121,79,-0.7494217226696478],[115,122,64,-0.7545532961149989],[115,122,65,-0.7542041712056808],[115,122,66,-0.75385738054571],[115,122,67,-0.7535129301747809],[115,122,68,-0.7531708260418197],[115,122,69,-0.7528310740045612],[115,122,70,-0.7524936798291111],[115,122,71,-0.7521586491895126],[115,122,72,-0.7518259876673101],[115,122,73,-0.75149570075113],[115,122,74,-0.7511677938362304],[115,122,75,-0.7508422722240837],[115,122,76,-0.7505191411219441],[115,122,77,-0.750198405642418],[115,122,78,-0.7498800708030378],[115,122,79,-0.749564141525831],[115,123,64,-0.754700244349924],[115,123,65,-0.7543508335392257],[115,123,66,-0.7540037563898809],[115,123,67,-0.7536590189451824],[115,123,68,-0.7533166271576803],[115,123,69,-0.752976586888759],[115,123,70,-0.7526389039081995],[115,123,71,-0.7523035838937453],[115,123,72,-0.7519706324306678],[115,123,73,-0.751640055011345],[115,123,74,-0.7513118570348135],[115,123,75,-0.7509860438063491],[115,123,76,-0.7506626205370357],[115,123,77,-0.7503415923433352],[115,123,78,-0.7500229642466616],[115,123,79,-0.7497067411729497],[115,124,64,-0.7548473568231544],[115,124,65,-0.7544976612329186],[115,124,66,-0.7541502987120718],[115,124,67,-0.7538052753074863],[115,124,68,-0.7534625969753177],[115,124,69,-0.7531222695805818],[115,124,70,-0.7527842988967164],[115,124,71,-0.7524486906051479],[115,124,72,-0.752115450294856],[115,124,73,-0.7517845834619541],[115,124,74,-0.7514560955092386],[115,124,75,-0.7511299917457721],[115,124,76,-0.750806277386451],[115,124,77,-0.7504849575515758],[115,124,78,-0.7501660372664254],[115,124,79,-0.749849521460825],[115,125,64,-0.7549946333432624],[115,125,65,-0.7546446540980154],[115,125,66,-0.7542970073262137],[115,125,67,-0.753951699078291],[115,125,68,-0.7536087353139895],[115,125,69,-0.7532681219019379],[115,125,70,-0.7529298646192131],[115,125,71,-0.7525939691509058],[115,125,72,-0.7522604410896874],[115,125,73,-0.7519292859353872],[115,125,74,-0.7516005090945455],[115,125,75,-0.7512741158799937],[115,125,76,-0.7509501115104237],[115,125,77,-0.7506285011099578],[115,125,78,-0.7503092897077227],[115,125,79,-0.7499924822374183],[115,126,64,-0.7551420737170398],[115,126,65,-0.7547918119439838],[115,126,66,-0.754443882044443],[115,126,67,-0.7540982900723928],[115,126,68,-0.7537550419911444],[115,126,69,-0.7534141436729206],[115,126,70,-0.7530756008984187],[115,126,71,-0.7527394193563768],[115,126,72,-0.7524056046431384],[115,126,73,-0.7520741622622329],[115,126,74,-0.7517450976239257],[115,126,75,-0.7514184160448001],[115,126,76,-0.7510941227473266],[115,126,77,-0.7507722228594319],[115,126,78,-0.7504527214140742],[115,126,79,-0.7501356233488106],[115,127,64,-0.7552896777494775],[115,127,65,-0.7549391345784845],[115,127,66,-0.7545909226770815],[115,127,67,-0.7542450481027676],[115,127,68,-0.7539015168224035],[115,127,69,-0.7535603347117883],[115,127,70,-0.7532215075552214],[115,127,71,-0.7528850410450696],[115,127,72,-0.7525509407813318],[115,127,73,-0.7522192122712186],[115,127,74,-0.7518898609287032],[115,127,75,-0.751562892074104],[115,127,76,-0.7512383109336521],[115,127,77,-0.7509161226390622],[115,127,78,-0.7505963322271068],[115,127,79,-0.750278944639184],[115,128,64,-0.7554374452438248],[115,128,65,-0.755086621807429],[115,128,66,-0.7547381290326954],[115,128,67,-0.754391972980628],[115,128,68,-0.7540481596216184],[115,128,69,-0.7537066948350234],[115,128,70,-0.7533675844087262],[115,128,71,-0.7530308340387044],[115,128,72,-0.7526964493285938],[115,128,73,-0.7523644357892686],[115,128,74,-0.7520347988383931],[115,128,75,-0.751707543800002],[115,128,76,-0.7513826759040707],[115,128,77,-0.7510602002860844],[115,128,78,-0.7507401219866132],[115,128,79,-0.7504224459508798],[115,129,64,-0.7555853760015617],[115,129,65,-0.7552342734349526],[115,129,66,-0.7548855009180677],[115,129,67,-0.7545390645153968],[115,129,68,-0.7541949702008439],[115,129,69,-0.7538532238573045],[115,129,70,-0.7535138312762277],[115,129,71,-0.7531767981571835],[115,129,72,-0.7528421301074268],[115,129,73,-0.7525098326414777],[115,129,74,-0.7521799111806731],[115,129,75,-0.7518523710527476],[115,129,76,-0.751527217491403],[115,129,77,-0.7512044556358783],[115,129,78,-0.7508840905305239],[115,129,79,-0.7505661271243703],[115,130,64,-0.7557334698224224],[115,130,65,-0.7553820892634382],[115,130,66,-0.7550330381382219],[115,130,67,-0.7546863225147302],[115,130,68,-0.7543419483703611],[115,130,69,-0.7539999215915301],[115,130,70,-0.7536602479732338],[115,130,71,-0.7533229332186162],[115,130,72,-0.7529879829385333],[115,130,73,-0.7526554026511333],[115,130,74,-0.7523251977814082],[115,130,75,-0.7519973736607747],[115,130,76,-0.7516719355266438],[115,130,77,-0.751348888521991],[115,130,78,-0.7510282376949303],[115,130,79,-0.7507099879982833],[115,131,64,-0.7558817265043684],[115,131,65,-0.7555300690934883],[115,131,66,-0.7551807404963943],[115,131,67,-0.7548337467844909],[115,131,68,-0.7544890939386505],[115,131,69,-0.7541467878487911],[115,131,70,-0.7538068343134378],[115,131,71,-0.7534692390392903],[115,131,72,-0.7531340076407878],[115,131,73,-0.7528011456396886],[115,131,74,-0.7524706584646219],[115,131,75,-0.7521425514506692],[115,131,76,-0.7518168298389335],[115,131,77,-0.7514934987761092],[115,131,78,-0.751172563314057],[115,131,79,-0.7508540284093728],[115,132,64,-0.7560301458436458],[115,132,65,-0.7556782127239838],[115,132,66,-0.7553286077940925],[115,132,67,-0.7549813371288051],[115,132,68,-0.7546364067124504],[115,132,69,-0.754293822438429],[115,132,70,-0.7539535901087769],[115,132,71,-0.7536157154337311],[115,132,72,-0.7532802040312955],[115,132,73,-0.7529470614268208],[115,132,74,-0.7526162930525556],[115,132,75,-0.7522879042472286],[115,132,76,-0.751961900255617],[115,132,77,-0.7516382862281177],[115,132,78,-0.7513170672203205],[115,132,79,-0.7509982481925789],[115,133,64,-0.7561787276347678],[115,133,65,-0.7558265199520651],[115,133,66,-0.7554766398310764],[115,133,67,-0.7551290933500451],[115,133,68,-0.754783886496737],[115,133,69,-0.7544410251680173],[115,133,70,-0.7541005151694133],[115,133,71,-0.7537623622146816],[115,133,72,-0.7534265719253728],[115,133,73,-0.7530931498304116],[115,133,74,-0.7527621013656485],[115,133,75,-0.7524334318734414],[115,133,76,-0.7521071466022247],[115,133,77,-0.7517832507060798],[115,133,78,-0.7514617492443095],[115,133,79,-0.7511426471810073],[115,134,64,-0.7563274716704944],[115,134,65,-0.755974990573112],[115,134,66,-0.7556248364053388],[115,134,67,-0.7552770152488089],[115,134,68,-0.7549315330947058],[115,134,69,-0.7545883958433408],[115,134,70,-0.7542476093037144],[115,134,71,-0.7539091791930838],[115,134,72,-0.753573111136528],[115,134,73,-0.7532394106665281],[115,134,74,-0.7529080832225183],[115,134,75,-0.7525791341504683],[115,134,76,-0.7522525687024522],[115,134,77,-0.7519283920362183],[115,134,78,-0.7516066092147655],[115,134,79,-0.75128722520591],[115,135,64,-0.756476377741891],[115,135,65,-0.7561236243808036],[115,135,66,-0.7557731973131644],[115,135,67,-0.7554251026239789],[115,135,68,-0.7550793463078302],[115,135,69,-0.754735934268456],[115,135,70,-0.7543948723183116],[115,135,71,-0.7540561661781365],[115,135,72,-0.7537198214765202],[115,135,73,-0.7533858437494814],[115,135,74,-0.7530542384400203],[115,135,75,-0.7527250108977009],[115,135,76,-0.752398166378219],[115,135,77,-0.7520737100429735],[115,135,78,-0.7517516469586409],[115,135,79,-0.7514319820967443],[115,136,64,-0.756625445638301],[115,136,65,-0.7562724211670893],[115,136,66,-0.7559217223491012],[115,136,67,-0.7555733552726946],[115,136,68,-0.7552273259358329],[115,136,69,-0.7548836402456618],[115,136,70,-0.7545423040180723],[115,136,71,-0.7542033229772682],[115,136,72,-0.7538667027553303],[115,136,73,-0.7535324488917978],[115,136,74,-0.7532005668332188],[115,136,75,-0.7528710619327332],[115,136,76,-0.7525439394496414],[115,136,77,-0.7522192045489752],[115,136,78,-0.7518968623010718],[115,136,79,-0.7515769176811439],[115,137,64,-0.75677467514737],[115,137,65,-0.7564213807222133],[115,137,66,-0.756070411305985],[115,137,67,-0.7557217729903759],[115,137,68,-0.7553754717767106],[115,137,69,-0.7550315135755239],[115,137,70,-0.7546899042061241],[115,137,71,-0.7543506493961601],[115,137,72,-0.7540137547811865],[115,137,73,-0.753679225904244],[115,137,74,-0.7533470682154111],[115,137,75,-0.7530172870713856],[115,137,76,-0.7526898877350552],[115,137,77,-0.7523648753750665],[115,137,78,-0.7520422550654009],[115,137,79,-0.7517220317849433],[115,138,64,-0.7569240660550169],[115,138,65,-0.7565705028346869],[115,138,66,-0.7562192639749113],[115,138,67,-0.7558703555706956],[115,138,68,-0.7555237836267057],[115,138,69,-0.755179554056847],[115,138,70,-0.7548376726838262],[115,138,71,-0.7544981452387188],[115,138,72,-0.7541609773605347],[115,138,73,-0.7538261745957979],[115,138,74,-0.7534937423980991],[115,138,75,-0.7531636861276768],[115,138,76,-0.7528360110509875],[115,138,77,-0.7525107223402759],[115,138,78,-0.7521878250731497],[115,138,79,-0.7518673242321492],[115,139,64,-0.757073618145494],[115,139,65,-0.7567197872913464],[115,139,66,-0.7563682801452943],[115,139,67,-0.7560191028056376],[115,139,68,-0.755672261280365],[115,139,69,-0.7553277614867332],[115,139,70,-0.7549856092508285],[115,139,71,-0.7546458103071344],[115,139,72,-0.7543083702980977],[115,139,73,-0.7539732947737077],[115,139,74,-0.7536405891910487],[115,139,75,-0.7533102589138824],[115,139,76,-0.7529823092122163],[115,139,77,-0.7526567452618756],[115,139,78,-0.7523335721440771],[115,139,79,-0.752012794844999],[115,140,64,-0.7572233312013664],[115,140,65,-0.7568692338773347],[115,140,66,-0.7565174596048471],[115,140,67,-0.756168014485478],[115,140,68,-0.7558209045305202],[115,140,69,-0.7554761356605624],[115,140,70,-0.7551337137050518],[115,140,71,-0.7547936444018615],[115,140,72,-0.754455933396856],[115,140,73,-0.7541205862434721],[115,140,74,-0.7537876084022699],[115,140,75,-0.7534570052405154],[115,140,76,-0.7531287820317503],[115,140,77,-0.7528029439553621],[115,140,78,-0.7524794960961596],[115,140,79,-0.7521584434439419],[115,141,64,-0.7573732050034935],[115,141,65,-0.7570188423760816],[115,141,66,-0.7566668021395623],[115,141,67,-0.7563170903987655],[115,141,68,-0.7559697131682688],[115,141,69,-0.7556246763719734],[115,141,70,-0.7552819858426689],[115,141,71,-0.754941647321599],[115,141,72,-0.7546036664580281],[115,141,73,-0.7542680488088214],[115,141,74,-0.7539347998379965],[115,141,75,-0.7536039249163066],[115,141,76,-0.7532754293208088],[115,141,77,-0.7529493182344362],[115,141,78,-0.7526255967455717],[115,141,79,-0.7523042698476183],[115,142,64,-0.7575232393310872],[115,142,65,-0.7571686125693623],[115,142,66,-0.7568163075337713],[115,142,67,-0.7564663303323804],[115,142,68,-0.7561186869830321],[115,142,69,-0.7557733834129223],[115,142,70,-0.755430425458163],[115,142,71,-0.75508981886335],[115,142,72,-0.7547515692811291],[115,142,73,-0.7544156822717752],[115,142,74,-0.754082163302746],[115,142,75,-0.753751017748263],[115,142,76,-0.7534222508888818],[115,142,77,-0.7530958679110624],[115,142,78,-0.752771873906745],[115,142,79,-0.7524502738729189],[115,143,64,-0.7576734339616845],[115,143,65,-0.7573185442372694],[115,143,66,-0.7569659755701154],[115,143,67,-0.7566157340715056],[115,143,68,-0.7562678257625284],[115,143,69,-0.7559222565736542],[115,143,70,-0.7555790323442992],[115,143,71,-0.7552381588223926],[115,143,72,-0.7548996416639422],[115,143,73,-0.7545634864326154],[115,143,74,-0.7542296985992907],[115,143,75,-0.7538982835416403],[115,143,76,-0.7535692465437],[115,143,77,-0.7532425927954398],[115,143,78,-0.7529183273923391],[115,143,79,-0.7525964553349562],[115,144,64,-0.757823788671171],[115,144,65,-0.7574686371582373],[115,144,66,-0.7571158060295708],[115,144,67,-0.756765301399652],[115,144,68,-0.7564171292927955],[115,144,69,-0.7560712956427273],[115,144,70,-0.7557278062921491],[115,144,71,-0.755386666992304],[115,144,72,-0.7550478834025438],[115,144,73,-0.7547114610899093],[115,144,74,-0.7543774055286817],[115,144,75,-0.7540457220999661],[115,144,76,-0.7537164160912604],[115,144,77,-0.7533894926960265],[115,144,78,-0.753064957013266],[115,144,79,-0.752742814047089],[115,145,64,-0.7579743032337529],[115,145,65,-0.7576188911090137],[115,145,66,-0.7572657986914196],[115,145,67,-0.7569150320986291],[115,145,68,-0.7565665973581633],[115,145,69,-0.7562205004069854],[115,145,70,-0.755876747091062],[115,145,71,-0.7555353431649324],[115,145,72,-0.7551962942912736],[115,145,73,-0.7548596060404809],[115,145,74,-0.7545252838902203],[115,145,75,-0.7541933332250113],[115,145,76,-0.753863759335796],[115,145,77,-0.753536567419511],[115,145,78,-0.7532117625786616],[115,145,79,-0.7528893498208926],[115,146,64,-0.7581249774220161],[115,146,65,-0.7577693058647185],[115,146,66,-0.7574159533333091],[115,146,67,-0.7570649259486043],[115,146,68,-0.7567162297413129],[115,146,69,-0.7563698706516148],[115,146,70,-0.7560258545287241],[115,146,71,-0.755684187130456],[115,146,72,-0.7553448741227944],[115,146,73,-0.7550079210794707],[115,146,74,-0.7546733334815173],[115,146,75,-0.7543411167168497],[115,146,76,-0.7540112760798365],[115,146,77,-0.7536838167708706],[115,146,78,-0.7533587438959444],[115,146,79,-0.7530360624662191],[115,147,64,-0.7582758110069063],[115,147,65,-0.7579198811988245],[115,147,66,-0.7575662697312321],[115,147,67,-0.7572149827280836],[115,147,68,-0.756866026223256],[115,147,69,-0.7565194061601271],[115,147,70,-0.7561751283911384],[115,147,71,-0.7558331986773632],[115,147,72,-0.7554936226880726],[115,147,73,-0.7551564060003157],[115,147,74,-0.7548215540984731],[115,147,75,-0.7544890723738379],[115,147,76,-0.7541589661241872],[115,147,77,-0.7538312405533526],[115,147,78,-0.7535059007707953],[115,147,79,-0.7531829517911761],[115,148,64,-0.7584268037577099],[115,148,65,-0.7580706168831376],[115,148,66,-0.7577167476595073],[115,148,67,-0.7573652022138917],[115,148,68,-0.7570159865833166],[115,148,69,-0.756669106714338],[115,148,70,-0.7563245684626061],[115,148,71,-0.7559823775924326],[115,148,72,-0.7556425397763578],[115,148,73,-0.7553050605947295],[115,148,74,-0.7549699455352575],[115,148,75,-0.7546371999925954],[115,148,76,-0.7543068292679098],[115,148,77,-0.7539788385684534],[115,148,78,-0.7536532330071385],[115,148,79,-0.7533300176021082],[115,149,64,-0.7585779554421126],[115,149,65,-0.758221512687856],[115,149,66,-0.7578673868908382],[115,149,67,-0.7575155841812309],[115,149,68,-0.7571661105991886],[115,149,69,-0.7568189720944265],[115,149,70,-0.7564741745257839],[115,149,71,-0.7561317236607925],[115,149,72,-0.7557916251752419],[115,149,73,-0.7554538846527608],[115,149,74,-0.7551185075843698],[115,149,75,-0.7547854993680636],[115,149,76,-0.7544548653083814],[115,149,77,-0.7541266106159782],[115,149,78,-0.7538007404072001],[115,149,79,-0.7534772597036548],[115,150,64,-0.7587292658261804],[115,150,65,-0.7583725683815505],[115,150,66,-0.7580181871962941],[115,150,67,-0.7576661284036618],[115,150,68,-0.7573163980469174],[115,150,69,-0.7569690020789157],[115,150,70,-0.7566239463616662],[115,150,71,-0.7562812366659007],[115,150,72,-0.7559408786706402],[115,150,73,-0.7556028779627748],[115,150,74,-0.7552672400366176],[115,150,75,-0.7549339702934863],[115,150,76,-0.7546030740412741],[115,150,77,-0.7542745564940208],[115,150,78,-0.7539484227714883],[115,150,79,-0.753624677898731],[115,151,64,-0.7588807346743391],[115,151,65,-0.7585237837311447],[115,151,66,-0.7581691483452895],[115,151,67,-0.7578168346530832],[115,151,68,-0.7574668487008794],[115,151,69,-0.7571191964446529],[115,151,70,-0.7567738837495637],[115,151,71,-0.7564309163895253],[115,151,72,-0.7560903000467704],[115,151,73,-0.7557520403114324],[115,151,74,-0.7554161426810979],[115,151,75,-0.7550826125603893],[115,151,76,-0.7547514552605357],[115,151,77,-0.7544226759989436],[115,151,78,-0.754096279898773],[115,151,79,-0.7537722719885074],[115,152,64,-0.7590323617494344],[115,152,65,-0.7586751585019744],[115,152,66,-0.7583202701056437],[115,152,67,-0.7579677026997917],[115,152,68,-0.7576174623338413],[115,152,69,-0.757269554966868],[115,152,70,-0.7569239864671634],[115,152,71,-0.756580762611803],[115,152,72,-0.7562398890862124],[115,152,73,-0.7559013714837495],[115,152,74,-0.7555652153052557],[115,152,75,-0.75523142595864],[115,152,76,-0.7549000087584488],[115,152,77,-0.7545709689254373],[115,152,78,-0.7542443115861456],[115,152,79,-0.753920041772469],[115,153,64,-0.7591841468127027],[115,153,65,-0.758826692457759],[115,153,66,-0.7584715522435529],[115,153,67,-0.7581187323124526],[115,153,68,-0.7577682387169316],[115,153,69,-0.7574200774191462],[115,153,70,-0.7570742542904998],[115,153,71,-0.756730775111211],[115,153,72,-0.7563896455698798],[115,153,73,-0.7560508712630686],[115,153,74,-0.7557144576948559],[115,153,75,-0.7553804102764183],[115,153,76,-0.7550487343256012],[115,153,77,-0.7547194350664909],[115,153,78,-0.7543925176289896],[115,153,79,-0.7540679870483861],[115,154,64,-0.7593360896237953],[115,154,65,-0.7589783853606256],[115,154,66,-0.7586229945236127],[115,154,67,-0.7582699232581245],[115,154,68,-0.7579191776196645],[115,154,69,-0.7575707635734508],[115,154,70,-0.7572246869939789],[115,154,71,-0.7568809536645912],[115,154,72,-0.7565395692770428],[115,154,73,-0.7562005394310825],[115,154,74,-0.7558638696340064],[115,154,75,-0.7555295653002406],[115,154,76,-0.7551976317509113],[115,154,77,-0.7548680742134172],[115,154,78,-0.7545408978210049],[115,154,79,-0.7542161076123393],[115,155,64,-0.7594881899407504],[115,155,65,-0.7591302369710802],[115,155,66,-0.7587745967087911],[115,155,67,-0.7584212753022304],[115,155,68,-0.758070278809912],[115,155,69,-0.7577216132000953],[115,155,70,-0.7573752843503495],[115,155,71,-0.7570312980471212],[115,155,72,-0.7566896599853011],[115,155,73,-0.7563503757678058],[115,155,74,-0.7560134509051303],[115,155,75,-0.7556788908149313],[115,155,76,-0.7553467008215977],[115,155,77,-0.7550168861558226],[115,155,78,-0.7546894519541787],[115,155,79,-0.7543644032586896],[115,156,64,-0.759640447520052],[115,156,65,-0.7592822470480676],[115,156,66,-0.7589263585604871],[115,156,67,-0.758572788208617],[115,156,68,-0.7582215420539616],[115,156,69,-0.7578726260678028],[115,156,70,-0.7575260461307629],[115,156,71,-0.7571818080323733],[115,156,72,-0.7568399174706422],[115,156,73,-0.756500380051634],[115,156,74,-0.7561632012890244],[115,156,75,-0.7558283866036819],[115,156,76,-0.7554959413232398],[115,156,77,-0.7551658706816672],[115,156,78,-0.7548381798188453],[115,156,79,-0.7545128737801376],[115,157,64,-0.7597928621166097],[115,157,65,-0.7594344153489507],[115,157,66,-0.7590782798385106],[115,157,67,-0.7587244617395347],[115,157,68,-0.7583729671164983],[115,157,69,-0.7580238019436852],[115,157,70,-0.7576769721047517],[115,157,71,-0.7573324833922953],[115,157,72,-0.7569903415074213],[115,157,73,-0.7566505520593236],[115,157,74,-0.7563131205648393],[115,157,75,-0.7559780524480308],[115,157,76,-0.7556453530397569],[115,157,77,-0.7553150275772444],[115,157,78,-0.754987081203665],[115,157,79,-0.7546615189677046],[115,158,64,-0.7599454334837397],[115,158,65,-0.7595867416294917],[115,158,66,-0.7592303603010633],[115,158,67,-0.7588762956556184],[115,158,68,-0.7585245537605833],[115,158,69,-0.7581751405932242],[115,158,70,-0.7578280620402117],[115,158,71,-0.7574833238971896],[115,158,72,-0.7571409318683413],[115,158,73,-0.7568008915659717],[115,158,74,-0.7564632085100601],[115,158,75,-0.7561278881278436],[115,158,76,-0.7557949357533882],[115,158,77,-0.7554643566271608],[115,158,78,-0.7551361558956046],[115,158,79,-0.7548103386107108],[115,159,64,-0.7600981613732235],[115,159,65,-0.7597392256439106],[115,159,66,-0.7593825997047969],[115,159,67,-0.7590282897159458],[115,159,68,-0.7586763017477138],[115,159,69,-0.7583266417803299],[115,159,70,-0.7579793157034596],[115,159,71,-0.7576343293157731],[115,159,72,-0.7572916883245133],[115,159,73,-0.756951398345076],[115,159,74,-0.7566134649005644],[115,159,75,-0.7562778934213716],[115,159,76,-0.7559446892447527],[115,159,77,-0.7556138576143953],[115,159,78,-0.7552854036799967],[115,159,79,-0.7549593324968353],[115,160,64,-0.7602510455352796],[115,160,65,-0.7598918671448563],[115,160,66,-0.7595349978047856],[115,160,67,-0.7591804436780093],[115,160,68,-0.7588282108377944],[115,160,69,-0.7584783052673129],[115,160,70,-0.758130732859205],[115,160,71,-0.7577854994151485],[115,160,72,-0.7574426106454258],[115,160,73,-0.7571020721685051],[115,160,74,-0.7567638895105944],[115,160,75,-0.756428068105224],[115,160,76,-0.756094613292819],[115,160,77,-0.7557635303202703],[115,160,78,-0.7554348243405109],[115,160,79,-0.7551085004120875],[115,161,64,-0.7604040857185873],[115,161,65,-0.760044665883432],[115,161,66,-0.7596875543545496],[115,161,67,-0.7593327572977399],[115,161,68,-0.7589802807891608],[115,161,69,-0.758630130814907],[115,161,70,-0.7582823132705742],[115,161,71,-0.7579368339608277],[115,161,72,-0.7575936985989705],[115,161,73,-0.7572529128065236],[115,161,74,-0.7569144821127807],[115,161,75,-0.7565784119543911],[115,161,76,-0.7562447076749311],[115,161,77,-0.755913374524476],[115,161,78,-0.7555844176591768],[115,161,79,-0.7552578421408308],[115,162,64,-0.7605572816702582],[115,162,65,-0.7601976216091649],[115,162,66,-0.7598402691060256],[115,162,67,-0.7594852303294785],[115,162,68,-0.7591325113585514],[115,162,69,-0.7587821181822418],[115,162,70,-0.7584340566990813],[115,162,71,-0.7580883327167035],[115,162,72,-0.7577449519514119],[115,162,73,-0.7574039200277616],[115,162,74,-0.757065242478113],[115,162,75,-0.7567289247422153],[115,162,76,-0.7563949721667774],[115,162,77,-0.756063390005041],[115,162,78,-0.755734183416356],[115,162,79,-0.7554073574657527],[115,163,64,-0.7607106331358954],[115,163,65,-0.7603507340700668],[115,163,66,-0.7599931418096282],[115,163,67,-0.7596378625260352],[115,163,68,-0.7592849023011661],[115,163,69,-0.7589342671269015],[115,163,70,-0.7585859629046882],[115,163,71,-0.7582399954451086],[115,163,72,-0.757896370467448],[115,163,73,-0.7575550935992756],[115,163,74,-0.757216170376],[115,163,75,-0.7568796062404508],[115,163,76,-0.7565454065424516],[115,163,77,-0.7562135765383912],[115,163,78,-0.755884121390801],[115,163,79,-0.7555570461679255],[115,164,64,-0.7608641398595739],[115,164,65,-0.7605040030126133],[115,164,66,-0.7601461722142275],[115,164,67,-0.7597906536386693],[115,164,68,-0.7594374533706469],[115,164,69,-0.759086577404904],[115,164,70,-0.7587380316457834],[115,164,71,-0.7583918219067959],[115,164,72,-0.7580479539101892],[115,164,73,-0.7577064332865279],[115,164,74,-0.7573672655742487],[115,164,75,-0.7570304562192438],[115,164,76,-0.7566960105744317],[115,164,77,-0.7563639338993308],[115,164,78,-0.7560342313596348],[115,164,79,-0.7557069080267849],[115,165,64,-0.7610178015838203],[115,165,65,-0.7606574281817244],[115,165,66,-0.760299360067131],[115,165,67,-0.7599436034170693],[115,165,68,-0.7595901643190578],[115,165,69,-0.7592390487706826],[115,165,70,-0.7588902626791625],[115,165,71,-0.7585438118609179],[115,165,72,-0.7581997020411386],[115,165,73,-0.7578579388533654],[115,165,74,-0.7575185278390444],[115,165,75,-0.7571814744471108],[115,165,76,-0.75684678403356],[115,165,77,-0.7565144618610207],[115,165,78,-0.7561845130983309],[115,165,79,-0.7558569428201103],[115,166,64,-0.7611716180496723],[115,166,65,-0.7608110093208236],[115,166,66,-0.7604527051141416],[115,166,67,-0.7600967116094124],[115,166,68,-0.7597430348969435],[115,166,69,-0.7593916809771438],[115,166,70,-0.7590426557600881],[115,166,71,-0.7586959650650864],[115,166,72,-0.7583516146202515],[115,166,73,-0.7580096100620806],[115,166,74,-0.7576699569350105],[115,166,75,-0.757332660691],[115,166,76,-0.7569977266891026],[115,166,77,-0.7566651601950387],[115,166,78,-0.7563349663807728],[115,166,79,-0.7560071503240842],[115,167,64,-0.7613255889966498],[115,167,65,-0.760964746171809],[115,167,66,-0.7606062070995301],[115,167,67,-0.7602499779623353],[115,167,68,-0.759896064853301],[115,167,69,-0.7595444737756389],[115,167,70,-0.7591952106422599],[115,167,71,-0.7588482812753434],[115,167,72,-0.7585036914059059],[115,167,73,-0.7581614466733818],[115,167,74,-0.7578215526251786],[115,167,75,-0.7574840147162604],[115,167,76,-0.7571488383087198],[115,167,77,-0.7568160286713506],[115,167,78,-0.7564855909792243],[115,167,79,-0.7561575303132624],[115,168,64,-0.7614797141627795],[115,168,65,-0.7611186384750773],[115,168,66,-0.7607598657660581],[115,168,67,-0.7604034022209585],[115,168,68,-0.7600492539356041],[115,168,69,-0.7596974269159886],[115,168,70,-0.7593479270778394],[115,168,71,-0.7590007602461856],[115,168,72,-0.7586559321549272],[115,168,73,-0.7583134484464167],[115,168,74,-0.7579733146710134],[115,168,75,-0.7576355362866671],[115,168,76,-0.757300118658491],[115,168,77,-0.7569670670583332],[115,168,78,-0.7566363866643543],[115,168,79,-0.7563080825605992],[115,169,64,-0.7616339932845649],[115,169,65,-0.7612726859694959],[115,169,66,-0.7609136808549496],[115,169,67,-0.7605569841288574],[115,169,68,-0.7602026018897733],[115,169,69,-0.7598505401464533],[115,169,70,-0.7595008048174204],[115,169,71,-0.7591534017305341],[115,169,72,-0.7588083366225585],[115,169,73,-0.7584656151387441],[115,169,74,-0.7581252428323828],[115,169,75,-0.7577872251643916],[115,169,76,-0.7574515675028843],[115,169,77,-0.7571182751227455],[115,169,78,-0.7567873532052062],[115,169,79,-0.7564588068374164],[115,170,64,-0.7617884260970473],[115,170,65,-0.7614268883924609],[115,170,66,-0.7610676521059505],[115,170,67,-0.7607107234281216],[115,170,68,-0.7603561084602365],[115,170,69,-0.7600038132137926],[115,170,70,-0.7596538436100891],[115,170,71,-0.7593062054797954],[115,170,72,-0.7589609045625203],[115,170,73,-0.7586179465063929],[115,170,74,-0.7582773368676181],[115,170,75,-0.7579390811100608],[115,170,76,-0.7576031846048175],[115,170,77,-0.7572696526297891],[115,170,78,-0.7569384903692591],[115,170,79,-0.7566097029134643],[115,171,64,-0.7619430123337846],[115,171,65,-0.7615812454798776],[115,171,66,-0.7612217792573082],[115,171,67,-0.7608646198593352],[115,171,68,-0.760509773389908],[115,171,69,-0.7601572458632456],[115,171,70,-0.7598070432034032],[115,171,71,-0.7594591712438405],[115,171,72,-0.7591136357269908],[115,171,73,-0.7587704423038419],[115,171,74,-0.7584295965334933],[115,171,75,-0.7580911038827379],[115,171,76,-0.7577549697256358],[115,171,77,-0.7574211993430865],[115,171,78,-0.7570897979224063],[115,171,79,-0.7567607705569006],[115,172,64,-0.7620977517268311],[115,172,65,-0.7617357569661409],[115,172,66,-0.7613760620457519],[115,172,67,-0.7610186731615557],[115,172,68,-0.7606635964201683],[115,172,69,-0.7603108378385104],[115,172,70,-0.7599604033433722],[115,172,71,-0.7596122987709841],[115,172,72,-0.7592665298665838],[115,172,73,-0.7589231022839995],[115,172,74,-0.7585820215852044],[115,172,75,-0.7582432932399009],[115,172,76,-0.7579069226250934],[115,172,77,-0.757572915024661],[115,172,78,-0.7572412756289348],[115,172,79,-0.7569120095342701],[115,173,64,-0.7622526440067983],[115,173,65,-0.7618904225841943],[115,173,66,-0.7615305002065519],[115,173,67,-0.7611728830723745],[115,173,68,-0.7608175772909245],[115,173,69,-0.7604645888818031],[115,173,70,-0.7601139237745166],[115,173,71,-0.759765587808045],[115,173,72,-0.7594195867304112],[115,173,73,-0.7590759261982634],[115,173,74,-0.7587346117764295],[115,173,75,-0.7583956489375026],[115,173,76,-0.7580590430614118],[115,173,77,-0.757724799434997],[115,173,78,-0.7573929232515855],[115,173,79,-0.7570634196105639],[115,174,64,-0.762407688902824],[115,174,65,-0.7620452420655005],[115,174,66,-0.7616850934734901],[115,174,67,-0.7613272493278872],[115,174,68,-0.7609717157405799],[115,174,69,-0.76061849873383],[115,174,70,-0.7602676042398386],[115,174,71,-0.7599190381003162],[115,174,72,-0.7595728060660509],[115,174,73,-0.7592289137964908],[115,174,74,-0.7588873668592997],[115,174,75,-0.7585481707299412],[115,174,76,-0.7582113307912508],[115,174,77,-0.7578768523330099],[115,174,78,-0.7575447405515233],[115,174,79,-0.7572150005491907],[115,175,64,-0.7625628861425984],[115,175,65,-0.7622002151400664],[115,175,66,-0.7618398415788848],[115,175,67,-0.7614817716627181],[115,175,68,-0.7611260115060593],[115,175,69,-0.7607725671338103],[115,175,70,-0.7604214444808469],[115,175,71,-0.7600726493915899],[115,175,72,-0.7597261876195724],[115,175,73,-0.7593820648270235],[115,175,74,-0.7590402865844226],[115,175,75,-0.7587008583700847],[115,175,76,-0.7583637855697327],[115,175,77,-0.7580290734760705],[115,175,78,-0.7576967272883616],[115,175,79,-0.757366752112],[115,176,64,-0.7627182354523334],[115,176,65,-0.7623553415364136],[115,176,66,-0.7619947442535614],[115,176,67,-0.7616364498099907],[115,176,68,-0.7612804643227788],[115,176,69,-0.7609267938194473],[115,176,70,-0.7605754442375265],[115,176,71,-0.7602264214241271],[115,176,72,-0.7598797311355074],[115,176,73,-0.7595353790366574],[115,176,74,-0.7591933707008528],[115,176,75,-0.7588537116092409],[115,176,76,-0.7585164071504124],[115,176,77,-0.758181462619975],[115,176,78,-0.7578488832201319],[115,176,79,-0.7575186740592533],[115,177,64,-0.7628737365568232],[115,177,65,-0.7625106209816376],[115,177,66,-0.7621498012269114],[115,177,67,-0.7617912835013874],[115,177,68,-0.7614350739247064],[115,177,69,-0.7610811785269888],[115,177,70,-0.7607296032483992],[115,177,71,-0.7603803539387178],[115,177,72,-0.7600334363569089],[115,177,73,-0.7596888561707027],[115,177,74,-0.7593466189561524],[115,177,75,-0.7590067301972175],[115,177,76,-0.7586691952853377],[115,177,77,-0.7583340195190055],[115,177,78,-0.7580012081033448],[115,177,79,-0.7576707661496832],[115,178,64,-0.7630293891794238],[115,178,65,-0.762666053201388],[115,178,66,-0.7623050122268733],[115,178,67,-0.7619462724671298],[115,178,68,-0.761589840044341],[115,178,69,-0.7612357209912056],[115,178,70,-0.7608839212505025],[115,178,71,-0.7605344466746612],[115,178,72,-0.7601873030253311],[115,178,73,-0.7598424959729639],[115,178,74,-0.7595000310963698],[115,178,75,-0.7591599138823018],[115,178,76,-0.7588221497250286],[115,178,77,-0.7584867439259088],[115,178,78,-0.7581537016929683],[115,178,79,-0.7578230281404734],[115,179,64,-0.7631851930420323],[115,179,65,-0.7628216379198482],[115,179,66,-0.7624603769799111],[115,179,67,-0.762101416435957],[115,179,68,-0.7617447624126918],[115,179,69,-0.7613904209453719],[115,179,70,-0.7610383979793697],[115,179,71,-0.7606886993697438],[115,179,72,-0.7603413308808089],[115,179,73,-0.7599962981857183],[115,179,74,-0.7596536068660193],[115,179,75,-0.7593132624112391],[115,179,76,-0.7589752702184562],[115,179,77,-0.758639635591876],[115,179,78,-0.7583063637424076],[115,179,79,-0.7579754597872372],[115,180,64,-0.7633411478651473],[115,180,65,-0.7629773748597952],[115,180,66,-0.7626158952110743],[115,180,67,-0.7622567151351864],[115,180,68,-0.7618998407593389],[115,180,69,-0.7615452781213248],[115,180,70,-0.7611930331690893],[115,180,71,-0.7608431117603004],[115,180,72,-0.760495519661918],[115,180,73,-0.7601502625497765],[115,180,74,-0.7598073460081414],[115,180,75,-0.7594667755292936],[115,180,76,-0.7591285565131031],[115,180,77,-0.7587926942666023],[115,180,78,-0.758459194003565],[115,180,79,-0.7581280608440784],[115,181,64,-0.7634972533678392],[115,181,65,-0.7631332637425696],[115,181,66,-0.7627715666439695],[115,181,67,-0.7624121682906849],[115,181,68,-0.7620550748124033],[115,181,69,-0.7617002922494344],[115,181,70,-0.7613478265522757],[115,181,71,-0.7609976835811844],[115,181,72,-0.7606498691057446],[115,181,73,-0.7603043888044527],[115,181,74,-0.7599612482642721],[115,181,75,-0.7596204529802186],[115,181,76,-0.7592820083549335],[115,181,77,-0.7589459196982578],[115,181,78,-0.7586121922268102],[115,181,79,-0.7582808310635606],[115,182,64,-0.7636535092677745],[115,182,65,-0.7632893042881008],[115,182,66,-0.7629273910007832],[115,182,67,-0.7625677756268909],[115,182,68,-0.7622104642985712],[115,182,69,-0.761855463058629],[115,182,70,-0.761502777860094],[115,182,71,-0.7611524145657911],[115,182,72,-0.7608043789479102],[115,182,73,-0.7604586766875888],[115,182,74,-0.7601153133744686],[115,182,75,-0.7597742945062804],[115,182,76,-0.7594356254884177],[115,182,77,-0.7590993116335105],[115,182,78,-0.7587653581610041],[115,182,79,-0.758433770196732],[115,183,64,-0.7638099152811864],[115,183,65,-0.7634454962148769],[115,183,66,-0.7630833680022533],[115,183,67,-0.7627235368667874],[115,183,68,-0.7623660089430644],[115,183,69,-0.7620107902763645],[115,183,70,-0.7616578868222286],[115,183,71,-0.7613073044460296],[115,183,72,-0.760959048922542],[115,183,73,-0.7606131259355247],[115,183,74,-0.760269541077278],[115,183,75,-0.7599282998482282],[115,183,76,-0.7595894076565013],[115,183,77,-0.7592528698174975],[115,183,78,-0.7589186915534692],[115,183,79,-0.7585868779930949],[115,184,64,-0.7639664711229347],[115,184,65,-0.7636018392400046],[115,184,66,-0.7632394973677288],[115,184,67,-0.7628794517319598],[115,184,68,-0.7625217084697007],[115,184,69,-0.7621662736286852],[115,184,70,-0.7618131531669452],[115,184,71,-0.7614623529523812],[115,184,72,-0.761113878762332],[115,184,73,-0.7607677362831582],[115,184,74,-0.7604239311097984],[115,184,75,-0.7600824687453548],[115,184,76,-0.7597433546006667],[115,184,77,-0.7594065939938849],[115,184,78,-0.7590721921500501],[115,184,79,-0.7587401542006664],[115,185,64,-0.7641231765064854],[115,185,65,-0.7637583330791893],[115,185,66,-0.763395778815149],[115,185,67,-0.7630355199425769],[115,185,68,-0.7626775626008724],[115,185,69,-0.7623219128402026],[115,185,70,-0.7619685766210693],[115,185,71,-0.7616175598138801],[115,185,72,-0.761268868198518],[115,185,73,-0.7609225074639248],[115,185,74,-0.7605784832076579],[115,185,75,-0.7602368009354757],[115,185,76,-0.7598974660609114],[115,185,77,-0.7595604839048467],[115,185,78,-0.7592258596950916],[115,185,79,-0.7588935985659574],[115,186,64,-0.7642800311438901],[115,186,65,-0.7639149774467138],[115,186,66,-0.7635522120610233],[115,186,67,-0.7631917412173694],[115,186,68,-0.7628335710575269],[115,186,69,-0.7624777076340752],[115,186,70,-0.7621241569099654],[115,186,71,-0.7617729247580917],[115,186,72,-0.7614240169608608],[115,186,73,-0.7610774392097761],[115,186,74,-0.7607331971049937],[115,186,75,-0.7603912961549082],[115,186,76,-0.7600517417757269],[115,186,77,-0.7597145392910437],[115,186,78,-0.7593796939314188],[115,186,79,-0.759047210833951],[115,187,64,-0.764437034745846],[115,187,65,-0.764071772055499],[115,187,66,-0.7637087968204911],[115,187,67,-0.7633481152736904],[115,187,68,-0.7629897335592257],[115,187,69,-0.762633657732068],[115,187,70,-0.7622798937575971],[115,187,71,-0.761928447511173],[115,187,72,-0.7615793247777062],[115,187,73,-0.7612325312512408],[115,187,74,-0.760888072534512],[115,187,75,-0.7605459541385311],[115,187,76,-0.7602061814821597],[115,187,77,-0.7598687598916847],[115,187,78,-0.7595336946003964],[115,187,79,-0.7592009907481637],[115,188,64,-0.7645941870216754],[115,188,65,-0.7642287166170827],[115,188,66,-0.763865532807301],[115,188,67,-0.7635046418274941],[115,188,68,-0.763146049824124],[115,188,69,-0.7627897628545324],[115,188,70,-0.7624357868865066],[115,188,71,-0.7620841277978521],[115,188,72,-0.7617347913759627],[115,188,73,-0.7613877833174033],[115,188,74,-0.7610431092274679],[115,188,75,-0.7607007746197645],[115,188,76,-0.7603607849157898],[115,188,77,-0.7600231454445041],[115,188,78,-0.7596878614419093],[115,188,79,-0.7593549380506237],[115,189,64,-0.7647514876793048],[115,189,65,-0.7643858108415993],[115,189,66,-0.7640224197337901],[115,189,67,-0.763661320593316],[115,189,68,-0.7633025195689507],[115,189,69,-0.762946022720385],[115,189,70,-0.7625918360177937],[115,189,71,-0.7622399653414071],[115,189,72,-0.7618904164810816],[115,189,73,-0.7615431951358829],[115,189,74,-0.7611983069136433],[115,189,75,-0.7608557573305484],[115,189,76,-0.7605155518107101],[115,189,77,-0.760177695685742],[115,189,78,-0.7598421941943388],[115,189,79,-0.7595090524818501],[115,190,64,-0.7649089364253255],[115,190,65,-0.7645430544378398],[115,190,66,-0.7641794573109448],[115,190,67,-0.7638181512843325],[115,190,68,-0.7634591425090671],[115,190,69,-0.7631024370471681],[115,190,70,-0.7627480408711764],[115,190,71,-0.7623959598637267],[115,190,72,-0.762046199817117],[115,190,73,-0.7616987664328939],[115,190,74,-0.7613536653214086],[115,190,75,-0.7610109020014035],[115,190,76,-0.7606704818995861],[115,190,77,-0.7603324103502045],[115,190,78,-0.7599966925946263],[115,190,79,-0.759663333780913],[115,191,64,-0.7650665329649636],[115,191,65,-0.7647004471132223],[115,191,66,-0.7643366452483701],[115,191,67,-0.7639751336123309],[115,191,68,-0.7636159183584386],[115,191,69,-0.7632590055510196],[115,191,70,-0.7629044011649603],[115,191,71,-0.762552111085279],[115,191,72,-0.7622021411066955],[115,191,73,-0.7618544969332164],[115,191,74,-0.7615091841776914],[115,191,75,-0.7611662083614004],[115,191,76,-0.7608255749136263],[115,191,77,-0.7604872891712326],[115,191,78,-0.7601513563782403],[115,191,79,-0.7598177816854038],[115,192,64,-0.7652242770021044],[115,192,65,-0.7648579885738157],[115,192,66,-0.7644939832543145],[115,192,67,-0.7641322672877344],[115,192,68,-0.7637728468296578],[115,192,69,-0.7634157279466972],[115,192,70,-0.7630609166160636],[115,192,71,-0.7627084187251378],[115,192,72,-0.7623582400710411],[115,192,73,-0.7620103863602197],[115,192,74,-0.7616648632080018],[115,192,75,-0.7613216761381842],[115,192,76,-0.7609808305826069],[115,192,77,-0.7606423318807276],[115,192,78,-0.7603061852792025],[115,192,79,-0.759972395931459],[115,193,64,-0.7653821682392622],[115,193,65,-0.7650156785243108],[115,193,66,-0.76465147103564],[115,193,67,-0.7642895520195718],[115,193,68,-0.7639299276339155],[115,193,69,-0.7635726039475491],[115,193,70,-0.7632175869399866],[115,193,71,-0.7628648825009512],[115,193,72,-0.7625144964299445],[115,193,73,-0.7621664344358323],[115,193,74,-0.7618207021364011],[115,193,75,-0.7614773050579451],[115,193,76,-0.7611362486348403],[115,193,77,-0.7607975382091203],[115,193,78,-0.7604611790300562],[115,193,79,-0.7601271762537302],[115,194,64,-0.7655402063776414],[115,194,65,-0.76517351666808],[115,194,66,-0.7648091082978823],[115,194,67,-0.7644469875155376],[115,194,68,-0.7640871604810608],[115,194,69,-0.7637296332655734],[115,194,70,-0.7633744118508725],[115,194,71,-0.763021502129002],[115,194,72,-0.762670909901824],[115,194,73,-0.7623226408806029],[115,194,74,-0.7619767006855636],[115,194,75,-0.7616330948454773],[115,194,76,-0.7612918287972367],[115,194,77,-0.7609529078854314],[115,194,78,-0.760616337361928],[115,194,79,-0.7602821223854441],[115,195,64,-0.765698391117115],[115,195,65,-0.7653315027071562],[115,195,66,-0.7649668947452299],[115,195,67,-0.7646045734819715],[115,195,68,-0.7642445450795794],[115,195,69,-0.763886815611398],[115,195,70,-0.7635313910614858],[115,195,71,-0.7631782773241874],[115,195,72,-0.7628274802037041],[115,195,73,-0.762479005413679],[115,195,74,-0.7621328585767544],[115,195,75,-0.7617890452241591],[115,195,76,-0.7614475707952826],[115,195,77,-0.7611084406372506],[115,195,78,-0.760771660004506],[115,195,79,-0.7604372340583821],[115,196,64,-0.7658567221562042],[115,196,65,-0.7654896363422127],[115,196,66,-0.765124830080504],[115,196,67,-0.7647623096238372],[115,196,68,-0.7644020811365735],[115,196,69,-0.7640441506942588],[115,196,70,-0.7636885242831922],[115,196,71,-0.7633352077999974],[115,196,72,-0.7629842070511946],[115,196,73,-0.7626355277527852],[115,196,74,-0.7622891755298089],[115,196,75,-0.7619451559159316],[115,196,76,-0.7616034743530194],[115,196,77,-0.7612641361907153],[115,196,78,-0.760927146686018],[115,196,79,-0.7605925110028583],[115,197,64,-0.7660151991921379],[115,197,65,-0.7656479172726228],[115,197,66,-0.7652829140052175],[115,197,67,-0.7649201956447832],[115,197,68,-0.7645597683578224],[115,197,69,-0.7642016382220613],[115,197,70,-0.763845811226018],[115,197,71,-0.7634922932685754],[115,197,72,-0.7631410901585514],[115,197,73,-0.7627922076142849],[115,197,74,-0.7624456512631931],[115,197,75,-0.7621014266413586],[115,197,76,-0.7617595391931047],[115,197,77,-0.7614199942705708],[115,197,78,-0.7610827971332935],[115,197,79,-0.7607479529477804],[115,198,64,-0.7661738219208245],[115,198,65,-0.7658063451964306],[115,198,66,-0.765441146219546],[115,198,67,-0.7650782312471122],[115,198,68,-0.7647176064477516],[115,198,69,-0.7643592779013489],[115,198,70,-0.7640032515986211],[115,198,71,-0.7636495334406883],[115,198,72,-0.7632981292386458],[115,198,73,-0.7629490447131494],[115,198,74,-0.7626022854939732],[115,198,75,-0.762257857119597],[115,198,76,-0.7619157650367806],[115,198,77,-0.7615760146001411],[115,198,78,-0.761238611071732],[115,198,79,-0.7609035596206194],[115,199,64,-0.7663325900368743],[115,199,65,-0.7659649198103748],[115,199,66,-0.7655995264223519],[115,199,67,-0.7652364161318059],[115,199,68,-0.7648755951094575],[115,199,69,-0.7645170694373291],[115,199,70,-0.7641608451083144],[115,199,71,-0.7638069280257502],[115,199,72,-0.7634553240029888],[115,199,73,-0.763106038762982],[115,199,74,-0.7627590779378406],[115,199,75,-0.7624144470684209],[115,199,76,-0.7620721516038997],[115,199,77,-0.7617321969013515],[115,199,78,-0.7613945882253279],[115,199,79,-0.7610593307474335],[115,200,64,-0.7664915032335707],[115,200,65,-0.7661236408098586],[115,200,66,-0.7657580543111542],[115,200,67,-0.765394749998495],[115,200,68,-0.7650337340446778],[115,200,69,-0.7646750125338417],[115,200,70,-0.7643185914610359],[115,200,71,-0.7639644767317931],[115,200,72,-0.7636126741617012],[115,200,73,-0.763263189475988],[115,200,74,-0.7629160283090803],[115,200,75,-0.7625711962041908],[115,200,76,-0.7622286986128931],[115,200,77,-0.7618885408946995],[115,200,78,-0.7615507283166398],[115,200,79,-0.7612152660528377],[115,201,64,-0.7666505612029302],[115,201,65,-0.7662825078890108],[115,201,66,-0.7659167295821891],[115,201,67,-0.7655532325455187],[115,201,68,-0.7651920229538511],[115,201,69,-0.7648331068934199],[115,201,70,-0.7644764903614092],[115,201,71,-0.7641221792655265],[115,201,72,-0.7637701794235742],[115,201,73,-0.7634204965630355],[115,201,74,-0.7630731363206327],[115,201,75,-0.7627281042419147],[115,201,76,-0.7623854057808321],[115,201,77,-0.7620450462993148],[115,201,78,-0.7617070310668512],[115,201,79,-0.7613713652600651],[115,202,64,-0.7668097636356815],[115,202,65,-0.7664415207406634],[115,202,66,-0.766075551930389],[115,202,67,-0.7657118634699049],[115,202,68,-0.7653504615360962],[115,202,69,-0.7649913522172697],[115,202,70,-0.7646345415127227],[115,202,71,-0.7642800353323165],[115,202,72,-0.7639278394960476],[115,202,73,-0.7635779597336335],[115,202,74,-0.7632304016840716],[115,202,75,-0.7628851708952269],[115,202,76,-0.7625422728234066],[115,202,77,-0.7622017128329382],[115,202,78,-0.7618634961957496],[115,202,79,-0.7615276280909444],[115,203,64,-0.7669691102212446],[115,203,65,-0.7666006790563328],[115,203,66,-0.7662345210493614],[115,203,67,-0.7658706424673486],[115,203,68,-0.7655090494891912],[115,203,69,-0.7651497482052478],[115,203,70,-0.764792744616908],[115,203,71,-0.7644380446361653],[115,203,72,-0.7640856540851892],[115,203,73,-0.7637355786959114],[115,203,74,-0.7633878241095835],[115,203,75,-0.763042395876366],[115,203,76,-0.7626992994549032],[115,203,77,-0.7623585402119002],[115,203,78,-0.7620201234217041],[115,203,79,-0.7616840542658793],[115,204,64,-0.7671286006477912],[115,204,65,-0.7667599825262781],[115,204,66,-0.7663936366314491],[115,204,67,-0.7660295692322722],[115,204,68,-0.765667786509634],[115,204,69,-0.7653082945559233],[115,204,70,-0.7649510993746005],[115,204,71,-0.7645962068797707],[115,204,72,-0.7642436228957552],[115,204,73,-0.763893353156679],[115,204,74,-0.7635454033060275],[115,204,75,-0.7631997788962366],[115,204,76,-0.7628564853882669],[115,204,77,-0.7625155281511815],[115,204,78,-0.7621769124617271],[115,204,79,-0.7618406435039092],[115,205,64,-0.7672882346022144],[115,205,65,-0.7669194308394722],[115,205,66,-0.7665528983677006],[115,205,67,-0.7661886434577954],[115,205,68,-0.7658266722926115],[115,205,69,-0.7654669909665464],[115,205,70,-0.7651096054851096],[115,205,71,-0.7647545217644964],[115,205,72,-0.76440174563116],[115,205,73,-0.7640512828213966],[115,205,74,-0.7637031389809058],[115,205,75,-0.7633573196643778],[115,205,76,-0.7630138303350699],[115,205,77,-0.762672676364383],[115,205,78,-0.7623338630314432],[115,205,79,-0.7619973955226781],[115,206,64,-0.7674480117701535],[115,206,65,-0.7670790236836258],[115,206,66,-0.7667123059478941],[115,206,67,-0.76634786483576],[115,206,68,-0.7659857065320247],[115,206,69,-0.765625837133073],[115,206,70,-0.7652682626464422],[115,206,71,-0.764912988990397],[115,206,72,-0.7645600219934998],[115,206,73,-0.7642093673941992],[115,206,74,-0.7638610308403871],[115,206,75,-0.7635150178889885],[115,206,76,-0.7631713340055362],[115,206,77,-0.7628299845637493],[115,206,78,-0.7624909748451139],[115,206,79,-0.7621543100384593],[115,207,64,-0.7676079318359634],[115,207,65,-0.7672387607451572],[115,207,66,-0.7668718590605073],[115,207,67,-0.7665072330566989],[115,207,68,-0.766144888920458],[115,207,69,-0.7657848327501346],[115,207,70,-0.7654270705552733],[115,207,71,-0.7650716082561854],[115,207,72,-0.7647184516835234],[115,207,73,-0.7643676065778656],[115,207,74,-0.7640190785892769],[115,207,75,-0.7636728732768954],[115,207,76,-0.7633289961085105],[115,207,77,-0.7629874524601387],[115,207,78,-0.7626482476156062],[115,207,79,-0.7623113867661246],[115,208,64,-0.7677679944827754],[115,208,65,-0.7673986417092529],[115,208,66,-0.7670315573927777],[115,208,67,-0.7666667478098973],[115,208,68,-0.7663042191492397],[115,208,69,-0.7659439775110993],[115,208,70,-0.7655860289070052],[115,208,71,-0.7652303792592958],[115,208,72,-0.7648770344006912],[115,208,73,-0.7645260000738797],[115,208,74,-0.7641772819310771],[115,208,75,-0.7638308855336157],[115,208,76,-0.7634868163515196],[115,208,77,-0.7631450797630837],[115,208,78,-0.7628056810544541],[115,208,79,-0.762468625419205],[115,209,64,-0.7679281993924756],[115,209,65,-0.7675586662598461],[115,209,66,-0.7671914006306824],[115,209,67,-0.7668264087833709],[115,209,68,-0.7664636969084212],[115,209,69,-0.7661032711080494],[115,209,70,-0.7657451373957482],[115,209,71,-0.7653893016958615],[115,209,72,-0.7650357698431559],[115,209,73,-0.7646845475824086],[115,209,74,-0.7643356405679662],[115,209,75,-0.7639890543633338],[115,209,76,-0.763644794440751],[115,209,77,-0.7633028661807698],[115,209,78,-0.7629632748718369],[115,209,79,-0.7626260257098694],[115,210,64,-0.7680885462456846],[115,210,65,-0.7677188340795964],[115,210,66,-0.7673513884589154],[115,210,67,-0.7669862156638454],[115,210,68,-0.7666233218867551],[115,210,69,-0.766262713231761],[115,210,70,-0.7659043957142978],[115,210,71,-0.765548375260693],[115,210,72,-0.7651946577077393],[115,210,73,-0.7648432488022815],[115,210,74,-0.7644941542007764],[115,210,75,-0.7641473794688811],[115,210,76,-0.7638029300810303],[115,210,77,-0.7634608114200135],[115,210,78,-0.7631210287765575],[115,210,79,-0.7627835873489026],[115,211,64,-0.7682490347218173],[115,211,65,-0.7678791448499495],[115,211,66,-0.7675115205609493],[115,211,67,-0.7671461681368166],[115,211,68,-0.7667830937717565],[115,211,69,-0.7664223035717643],[115,211,70,-0.7660638035541953],[115,211,71,-0.7657075996473396],[115,211,72,-0.7653536976899942],[115,211,73,-0.7650021034310506],[115,211,74,-0.764652822529055],[115,211,75,-0.7643058605517963],[115,211,76,-0.7639612229758835],[115,211,77,-0.7636189151863237],[115,211,78,-0.7632789424761035],[115,211,79,-0.7629413100457668],[115,212,64,-0.7684096644990531],[115,212,65,-0.768039598251107],[115,212,66,-0.767671796619005],[115,212,67,-0.7673062658865201],[115,212,68,-0.7669430122496722],[115,212,69,-0.7665820418163137],[115,212,70,-0.766223360605699],[115,212,71,-0.7658669745480584],[115,212,72,-0.7655128894841731],[115,212,73,-0.7651611111649601],[115,212,74,-0.764811645251034],[115,212,75,-0.7644644973122948],[115,212,76,-0.7641196728275056],[115,212,77,-0.7637771771838703],[115,212,78,-0.7634370156766161],[115,212,79,-0.7630991935085704],[115,213,64,-0.7685704352543602],[115,213,65,-0.7682001939620517],[115,213,66,-0.7678322163140756],[115,213,67,-0.7674665085959558],[115,213,68,-0.7671030770055054],[115,213,69,-0.7667419276524117],[115,213,70,-0.7663830665578061],[115,213,71,-0.766026499653839],[115,213,72,-0.7656722327832532],[115,213,73,-0.765320271698971],[115,213,74,-0.764970622063654],[115,213,75,-0.7646232894492929],[115,213,76,-0.7642782793367845],[115,213,77,-0.7639355971155093],[115,213,78,-0.7635952480829149],[115,213,79,-0.7632572374440921],[115,214,64,-0.7687313466634648],[115,214,65,-0.7683609316605159],[115,214,66,-0.7679927793258958],[115,214,67,-0.7676268959468573],[115,214,68,-0.7672632877229846],[115,214,69,-0.7669019607657778],[115,214,70,-0.7665429210982241],[115,214,71,-0.7661861746543721],[115,214,72,-0.7658317272789054],[115,214,73,-0.7654795847267297],[115,214,74,-0.7651297526625336],[115,214,75,-0.7647822366603774],[115,214,76,-0.7644370422032709],[115,214,77,-0.7640941746827514],[115,214,78,-0.7637536393984663],[115,214,79,-0.7634154415577505],[115,215,64,-0.7688923984009122],[115,215,65,-0.7685218110230427],[115,215,66,-0.768153485333003],[115,215,67,-0.7677874276197527],[115,215,68,-0.7674236440846246],[115,215,69,-0.7670621408409104],[115,215,70,-0.7667029239134309],[115,215,71,-0.7663459992381113],[115,215,72,-0.7659913726615548],[115,215,73,-0.7656390499406297],[115,215,74,-0.7652890367420302],[115,215,75,-0.7649413386418659],[115,215,76,-0.7645959611252391],[115,215,77,-0.764252909585823],[115,215,78,-0.7639121893254454],[115,215,79,-0.7635738055536648],[115,216,64,-0.7690535901400455],[115,216,65,-0.7686828317249647],[115,216,66,-0.7683143340127161],[115,216,67,-0.7679481032939433],[115,216,68,-0.7675841457717059],[115,216,69,-0.7672224675610647],[115,216,70,-0.7668630746886531],[115,216,71,-0.766505973092251],[115,216,72,-0.76615116862036],[115,216,73,-0.7657986670317897],[115,216,74,-0.765448473995219],[115,216,75,-0.765100595088786],[115,216,76,-0.7647550357996649],[115,216,77,-0.764411801523645],[115,216,78,-0.7640708975647134],[115,216,79,-0.7637323291346331],[115,217,64,-0.769214921552984],[115,217,65,-0.7688439934403828],[115,217,66,-0.7684753250411137],[115,217,67,-0.7681089226474819],[115,217,68,-0.7677447924642518],[115,217,69,-0.7673829406082314],[115,217,70,-0.7670233731078446],[115,217,71,-0.7666660959027051],[115,217,72,-0.7663111148431907],[115,217,73,-0.7659584356900315],[115,217,74,-0.7656080641138705],[115,217,75,-0.7652600056948529],[115,217,76,-0.7649142659222045],[115,217,77,-0.76457085019381],[115,217,78,-0.7642297638157964],[115,217,79,-0.7638910120021106],[115,218,64,-0.7693763923106843],[115,218,65,-0.7690052958422269],[115,218,66,-0.7686364580930951],[115,218,67,-0.768269885357234],[115,218,68,-0.7679055838410903],[115,218,69,-0.7675435596631976],[115,218,70,-0.7671838188537483],[115,218,71,-0.7668263673541676],[115,218,72,-0.7664712110166894],[115,218,73,-0.7661183556039423],[115,218,74,-0.7657678067885121],[115,218,75,-0.7654195701525309],[115,218,76,-0.7650736511872553],[115,218,77,-0.7647300552926453],[115,218,78,-0.7643887877769467],[115,218,79,-0.764049853856271],[115,219,64,-0.769538002082919],[115,219,65,-0.7691667386022338],[115,219,66,-0.7687977328423589],[115,219,67,-0.7684309910988563],[115,219,68,-0.7680665195798326],[115,219,69,-0.7677043244055254],[115,219,70,-0.7673444116078731],[115,219,71,-0.7669867871300919],[115,219,72,-0.7666314568262491],[115,219,73,-0.7662784264608514],[115,219,74,-0.7659277017084063],[115,219,75,-0.7655792881530117],[115,219,76,-0.7652331912879343],[115,219,77,-0.7648894165151887],[115,219,78,-0.7645479691451205],[115,219,79,-0.7642088543959842],[115,220,64,-0.7696997505382546],[115,220,65,-0.7693283213909271],[115,220,66,-0.7689591489613816],[115,220,67,-0.7685922395467747],[115,220,68,-0.7682275993568513],[115,220,69,-0.7678652345135297],[115,220,70,-0.7675051510504738],[115,220,71,-0.7671473549126681],[115,220,72,-0.7667918519559924],[115,220,73,-0.7664386479468099],[115,220,74,-0.7660877485615288],[115,220,75,-0.7657391593861922],[115,220,76,-0.765392885916056],[115,220,77,-0.7650489335551691],[115,220,78,-0.7647073076159558],[115,220,79,-0.7643680133187949],[115,221,64,-0.7698616373441134],[115,221,65,-0.7694900438776772],[115,221,66,-0.7691207061214785],[115,221,67,-0.7687536303742463],[115,221,68,-0.768388822847341],[115,221,69,-0.7680262896643404],[115,221,70,-0.7676660368606111],[115,221,71,-0.7673080703828847],[115,221,72,-0.7669523960888319],[115,221,73,-0.7665990197466512],[115,221,74,-0.7662479470346302],[115,221,75,-0.7658991835407362],[115,221,76,-0.7655527347621939],[115,221,77,-0.7652086061050657],[115,221,78,-0.7648668028838348],[115,221,79,-0.7645273303209836],[115,222,64,-0.7700236621667421],[115,222,65,-0.7696519057306705],[115,222,66,-0.7692824039927728],[115,222,67,-0.7689151632533274],[115,222,68,-0.7685501897252883],[115,222,69,-0.7681874895338703],[115,222,70,-0.7678270687161213],[115,222,71,-0.7674689332204976],[115,222,72,-0.7671130889064397],[115,222,73,-0.7667595415439599],[115,222,74,-0.7664082968132042],[115,222,75,-0.766059360304043],[115,222,76,-0.7657127375156493],[115,222,77,-0.7653684338560783],[115,222,78,-0.7650264546418518],[115,222,79,-0.7646868050975356],[115,223,64,-0.7701858246712363],[115,223,65,-0.7698139066169346],[115,223,66,-0.7694442422442203],[115,223,67,-0.769076837854899],[115,223,68,-0.7687116996634958],[115,223,69,-0.7683488337968406],[115,223,70,-0.76798824629364],[115,223,71,-0.7676299431040543],[115,223,72,-0.7672739300892715],[115,223,73,-0.7669202130210965],[115,223,74,-0.7665687975815125],[115,223,75,-0.7662196893622721],[115,223,76,-0.7658728938644757],[115,223,77,-0.765528416498151],[115,223,78,-0.7651862625818375],[115,223,79,-0.7648464373421648],[115,224,64,-0.7703481245215105],[115,224,65,-0.7699760462023068],[115,224,66,-0.7696062205435782],[115,224,67,-0.7692386538486352],[115,224,68,-0.7688733523335513],[115,224,69,-0.768510322126749],[115,224,70,-0.7681495692685725],[115,224,71,-0.7677910997108632],[115,224,72,-0.7674349193165358],[115,224,73,-0.7670810338591662],[115,224,74,-0.7667294490225536],[115,224,75,-0.7663801704003119],[115,224,76,-0.7660332034954476],[115,224,77,-0.7656885537199408],[115,224,78,-0.7653462263943285],[115,224,79,-0.7650062267472834],[115,225,64,-0.7705105613803576],[115,225,65,-0.7701383241514952],[115,225,66,-0.7697683385574667],[115,225,67,-0.7694006109030646],[115,225,68,-0.7690351474058884],[115,225,69,-0.7686719541959316],[115,225,70,-0.7683110373151532],[115,225,71,-0.7679524027170547],[115,225,72,-0.7675960562662552],[115,225,73,-0.7672420037380802],[115,225,74,-0.7668902508181241],[115,225,75,-0.7665408031018406],[115,225,76,-0.766193666094122],[115,225,77,-0.7658488452088797],[115,225,78,-0.7655063457686277],[115,225,79,-0.7651661730040621],[115,226,64,-0.7706731349094287],[115,226,65,-0.7703007401280574],[115,226,66,-0.7699305959513466],[115,226,67,-0.7695627086855483],[115,226,68,-0.7691970845497658],[115,226,69,-0.7688337296755406],[115,226,70,-0.7684726501064253],[115,226,71,-0.768113851797559],[115,226,72,-0.767757340615244],[115,226,73,-0.7674031223365338],[115,226,74,-0.7670512026487963],[115,226,75,-0.7667015871493048],[115,226,76,-0.766354281344816],[115,226,77,-0.766009290651152],[115,226,78,-0.7656666203927834],[115,226,79,-0.7653262758024093],[115,227,64,-0.7708358447692114],[115,227,65,-0.7704632937943792],[115,227,66,-0.7700929923894988],[115,227,67,-0.7697249468622591],[115,227,68,-0.7693591634332446],[115,227,69,-0.7689956482355234],[115,227,70,-0.7686344073142183],[115,227,71,-0.768275446626085],[115,227,72,-0.767918772039087],[115,227,73,-0.7675643893319845],[115,227,74,-0.7672123041938976],[115,227,75,-0.7668625222238976],[115,227,76,-0.7665150489305853],[115,227,77,-0.7661698897316725],[115,227,78,-0.7658270499535663],[115,227,79,-0.7654865348309481],[115,228,64,-0.7709986906190899],[115,228,65,-0.7706259848117343],[115,228,66,-0.770255527535084],[115,228,67,-0.7698873250982414],[115,228,68,-0.7695213837232504],[115,228,69,-0.7691577095446823],[115,228,70,-0.7687963086092093],[115,228,71,-0.768437186875181],[115,228,72,-0.7680803502122004],[115,228,73,-0.7677258044007133],[115,228,74,-0.7673735551315704],[115,228,75,-0.7670236080056196],[115,228,76,-0.7666759685332855],[115,228,77,-0.7663306421341485],[115,228,78,-0.7659876341365315],[115,228,79,-0.7656469497770781],[115,229,64,-0.7711616721173152],[115,229,65,-0.7707888128402555],[115,229,66,-0.7704182010501128],[115,229,67,-0.7700498430573817],[115,229,68,-0.7696837450855414],[115,229,69,-0.7693199132706454],[115,229,70,-0.7689583536608923],[115,229,71,-0.7685990722162039],[115,229,72,-0.7682420748078013],[115,229,73,-0.7678873672177935],[115,229,74,-0.7675349551387413],[115,229,75,-0.7671848441732482],[115,229,76,-0.7668370398335402],[115,229,77,-0.7664915475410472],[115,229,78,-0.7661483726259868],[115,229,79,-0.7658075203269444],[115,230,64,-0.7713247889210287],[115,230,65,-0.7709517775389569],[115,230,66,-0.7705810125954701],[115,230,67,-0.770212500402431],[115,230,68,-0.7698462471847334],[115,230,69,-0.7694822590798892],[115,230,70,-0.769120542137602],[115,230,71,-0.7687611023193435],[115,230,72,-0.7684039454979309],[115,230,73,-0.7680490774571154],[115,230,74,-0.7676965038911461],[115,230,75,-0.7673462304043608],[115,230,76,-0.766998262510767],[115,230,77,-0.7666526056336216],[115,230,78,-0.7663092651050172],[115,230,79,-0.765968246165461],[115,231,64,-0.7714880406862321],[115,231,65,-0.7711148785657047],[115,231,66,-0.7707439618308832],[115,231,67,-0.7703752967949763],[115,231,68,-0.7700088896842685],[115,231,69,-0.7696447466377088],[115,231,70,-0.7692828737064827],[115,231,71,-0.7689232768535909],[115,231,72,-0.7685659619534243],[115,231,73,-0.7682109347913546],[115,231,74,-0.7678582010632977],[115,231,75,-0.7675077663753049],[115,231,76,-0.7671596362431436],[115,231,77,-0.7668138160918778],[115,231,78,-0.766470311255454],[115,231,79,-0.7661291269762802],[115,232,64,-0.7716514270678476],[115,232,65,-0.7712781155772773],[115,232,66,-0.7709070484149841],[115,232,67,-0.7705382318954993],[115,232,68,-0.7701716722464764],[115,232,69,-0.7698073756082783],[115,232,70,-0.7694453480335509],[115,232,71,-0.7690855954868008],[115,232,72,-0.7687281238439716],[115,232,73,-0.7683729388920337],[115,232,74,-0.7680200463285484],[115,232,75,-0.767669451761259],[115,232,76,-0.767321160707672],[115,232,77,-0.7669751785946375],[115,232,78,-0.766631510757935],[115,232,79,-0.7662901624418538],[115,233,64,-0.7718149477196967],[115,233,65,-0.7714414882293441],[115,233,66,-0.7710702720052868],[115,233,67,-0.7707013053633565],[115,233,68,-0.7703345945325524],[115,233,69,-0.7699701456546294],[115,233,70,-0.7696079647836713],[115,233,71,-0.7692480578856686],[115,233,72,-0.7688904308380957],[115,233,73,-0.7685350894295],[115,233,74,-0.7681820393590666],[115,233,75,-0.76783128623621],[115,233,76,-0.7674828355801542],[115,233,77,-0.7671366928195148],[115,233,78,-0.7667928632918838],[115,233,79,-0.7664513522434109],[115,234,64,-0.7719786022944789],[115,234,65,-0.7716049961764433],[115,234,66,-0.7712336322581663],[115,234,67,-0.7708645168567563],[115,234,68,-0.770497656202536],[115,234,69,-0.7701330564386295],[115,234,70,-0.7697707236205363],[115,234,71,-0.7694106637157091],[115,234,72,-0.7690528826031305],[115,234,73,-0.7686973860729037],[115,234,74,-0.7683441798258163],[115,234,75,-0.7679932694729318],[115,234,76,-0.7676446605351714],[115,234,77,-0.7672983584428951],[115,234,78,-0.7669543685354868],[115,234,79,-0.7666126960609357],[115,235,64,-0.7721423904438318],[115,235,65,-0.7717686390720438],[115,235,66,-0.7713971288289191],[115,235,67,-0.7710278660328205],[115,235,68,-0.7706608569153715],[115,235,69,-0.7702961076210428],[115,235,70,-0.7699336242067272],[115,235,71,-0.7695734126413172],[115,235,72,-0.7692154788052824],[115,235,73,-0.7688598284902596],[115,235,74,-0.7685064673986168],[115,235,75,-0.7681554011430465],[115,235,76,-0.7678066352461452],[115,235,77,-0.7674601751399961],[115,235,78,-0.7671160261657548],[115,235,79,-0.7667741935732295],[115,236,64,-0.7723063118183011],[115,236,65,-0.7719324165685133],[115,236,66,-0.7715607613717326],[115,236,67,-0.7711913525475537],[115,236,68,-0.7708241963288776],[115,236,69,-0.7704592988614992],[115,236,70,-0.7700966662036826],[115,236,71,-0.7697363043257376],[115,236,72,-0.7693782191095987],[115,236,73,-0.7690224163484147],[115,236,74,-0.7686689017461132],[115,236,75,-0.7683176809169932],[115,236,76,-0.7679687593853057],[115,236,77,-0.7676221425848365],[115,236,78,-0.7672778358584915],[115,236,79,-0.7669358444578781],[115,237,64,-0.7724703660673642],[115,237,65,-0.7720963283171429],[115,237,66,-0.7717245295397093],[115,237,67,-0.7713549760558667],[115,237,68,-0.7709876740997709],[115,237,69,-0.7706226298185187],[115,237,70,-0.7702598492717224],[115,237,71,-0.7698993384310878],[115,237,72,-0.7695411031799921],[115,237,73,-0.7691851493130742],[115,237,74,-0.7688314825357992],[115,237,75,-0.7684801084640518],[115,237,76,-0.7681310326237163],[115,237,77,-0.76778426045026],[115,237,78,-0.7674397972883187],[115,237,79,-0.7670976483912774],[115,238,64,-0.7726345528393997],[115,238,65,-0.7722603739681166],[115,238,66,-0.7718884329848359],[115,238,67,-0.7715187362115461],[115,238,68,-0.7711512898836355],[115,238,69,-0.7707861001494801],[115,238,70,-0.770423173070018],[115,238,71,-0.7700625146183285],[115,238,72,-0.7697041306792096],[115,238,73,-0.7693480270487685],[115,238,74,-0.7689942094339866],[115,238,75,-0.7686426834523121],[115,238,76,-0.7682934546312423],[115,238,77,-0.7679465284079043],[115,238,78,-0.7676019101286429],[115,238,79,-0.767259605048601],[115,239,64,-0.7727988717817484],[115,239,65,-0.772424553170572],[115,239,66,-0.772052471358044],[115,239,67,-0.7716826326673154],[115,239,68,-0.771315043334984],[115,239,69,-0.7709497095106822],[115,239,70,-0.7705866372566519],[115,239,71,-0.7702258325473235],[115,239,72,-0.7698673012688936],[115,239,73,-0.7695110492189158],[115,239,74,-0.7691570821058662],[115,239,75,-0.7688054055487357],[115,239,76,-0.7684560250766121],[115,239,77,-0.7681089461282623],[115,239,78,-0.7677641740517189],[115,239,79,-0.767421714103862],[115,240,64,-0.7729633225406913],[115,240,65,-0.7725888655725781],[115,240,66,-0.7722166443091886],[115,240,67,-0.7718466650748129],[115,240,68,-0.7714789341072354],[115,240,69,-0.7711134575573224],[115,240,70,-0.7707502414885969],[115,240,71,-0.7703892918768181],[115,240,72,-0.7700306146095596],[115,240,73,-0.7696742154857993],[115,240,74,-0.7693201002154861],[115,240,75,-0.7689682744191322],[115,240,76,-0.768618743627395],[115,240,77,-0.7682715132806597],[115,240,78,-0.7679265887286261],[115,240,79,-0.7675839752298905],[115,241,64,-0.7731279047614279],[115,241,65,-0.7727533108211146],[115,241,66,-0.7723809514870263],[115,241,67,-0.7720108330845699],[115,241,68,-0.7716429618526933],[115,241,69,-0.7712773439434739],[115,241,70,-0.7709139854216933],[115,241,71,-0.7705528922644177],[115,241,72,-0.7701940703605747],[115,241,73,-0.7698375255105453],[115,241,74,-0.7694832634257295],[115,241,75,-0.7691312897281389],[115,241,76,-0.7687816099499792],[115,241,77,-0.7684342295332331],[115,241,78,-0.7680891538292468],[115,241,79,-0.767746388098312],[115,242,64,-0.7732926180881377],[115,242,65,-0.7729178885621317],[115,242,66,-0.7725453925392763],[115,242,67,-0.772175136346072],[115,242,68,-0.7718071262226072],[115,242,69,-0.7714413683221475],[115,242,70,-0.771077868710711],[115,242,71,-0.7707166333666481],[115,242,72,-0.7703576681802188],[115,242,73,-0.770000978953185],[115,242,74,-0.7696465713983757],[115,242,75,-0.769294451139281],[115,242,76,-0.7689446237096335],[115,242,77,-0.7685970945529919],[115,242,78,-0.7682518690223279],[115,242,79,-0.767908952379608],[115,243,64,-0.7734574621639483],[115,243,65,-0.7730825984405199],[115,243,66,-0.7727099671125894],[115,243,67,-0.7723395745077277],[115,243,68,-0.7719714268671408],[115,243,69,-0.7716055303452601],[115,243,70,-0.7712418910093176],[115,243,71,-0.7708805148389251],[115,243,72,-0.770521407725653],[115,243,73,-0.7701645754726222],[115,243,74,-0.7698100237940694],[115,243,75,-0.7694577583149408],[115,243,76,-0.769107784570475],[115,243,77,-0.7687601080057858],[115,243,78,-0.7684147339754488],[115,243,79,-0.7680716677430852],[115,244,64,-0.7736224366309605],[115,244,65,-0.7732474401001339],[115,244,66,-0.7728746748525721],[115,244,67,-0.7725041472168929],[115,244,68,-0.7721358634353973],[115,244,69,-0.7717698296636597],[115,244,70,-0.7714060519701027],[115,244,71,-0.7710445363355781],[115,244,72,-0.7706852886529443],[115,244,73,-0.7703283147266587],[115,244,74,-0.7699736202723442],[115,244,75,-0.7696212109163818],[115,244,76,-0.7692710921954944],[115,244,77,-0.7689232695563295],[115,244,78,-0.7685777483550464],[115,244,79,-0.7682345338568995],[115,245,64,-0.7737875411302171],[115,245,65,-0.7734124131837616],[115,245,66,-0.7730395154037555],[115,245,67,-0.7726688541198397],[115,245,68,-0.7723004355753873],[115,245,69,-0.7719342659270927],[115,245,70,-0.7715703512445471],[115,245,71,-0.7712086975098191],[115,245,72,-0.7708493106170333],[115,245,73,-0.7704921963719619],[115,245,74,-0.7701373604915915],[115,245,75,-0.7697848086037168],[115,245,76,-0.7694345462465234],[115,245,77,-0.7690865788681713],[115,245,78,-0.7687409118263826],[115,245,79,-0.768397550388024],[115,246,64,-0.773952775301763],[115,246,65,-0.7735775173331857],[115,246,66,-0.7732044884096565],[115,246,67,-0.7728336948618174],[115,246,68,-0.7724651429340902],[115,246,69,-0.7720988387842664],[115,246,70,-0.7717347884830834],[115,246,71,-0.7713729980138042],[115,246,72,-0.7710134732717969],[115,246,73,-0.7706562200641267],[115,246,74,-0.7703012441091222],[115,246,75,-0.76994855103597],[115,246,76,-0.7695981463842971],[115,246,77,-0.7692500356037548],[115,246,78,-0.7689042240536067],[115,246,79,-0.7685607170023112],[115,247,64,-0.774118138784625],[115,247,65,-0.7737427521891604],[115,247,66,-0.773369593512756],[115,247,67,-0.7729986690870307],[115,247,68,-0.7726299851574324],[115,247,69,-0.7722635478828268],[115,247,70,-0.7718993633350746],[115,247,71,-0.7715374374986108],[115,247,72,-0.771177776270025],[115,247,73,-0.7708203854576532],[115,247,74,-0.7704652707811442],[115,247,75,-0.7701124378710547],[115,247,76,-0.7697618922684314],[115,247,77,-0.769413639424396],[115,247,78,-0.7690676846997323],[115,247,79,-0.7687240333644699],[115,248,64,-0.7742836312167884],[115,248,65,-0.7739081173913912],[115,248,66,-0.7735348303544767],[115,248,67,-0.7731637764386179],[115,248,68,-0.7727949618902652],[115,248,69,-0.7724283928693361],[115,248,70,-0.7720640754487913],[115,248,71,-0.7717020156142163],[115,248,72,-0.7713422192633991],[115,248,73,-0.7709846922059246],[115,248,74,-0.7706294401627398],[115,248,75,-0.77027646876575],[115,248,76,-0.7699257835574002],[115,248,77,-0.769577389990261],[115,248,78,-0.7692312934266156],[115,248,79,-0.7688874991380434],[115,249,64,-0.7744492522352592],[115,249,65,-0.774073612578595],[115,249,66,-0.7737001985752443],[115,249,67,-0.7733290165587112],[115,249,68,-0.7729600727764258],[115,249,69,-0.7725933733893338],[115,249,70,-0.772228924471474],[115,249,71,-0.7718667320095587],[115,249,72,-0.7715068019025532],[115,249,73,-0.7711491399612683],[115,249,74,-0.770793751907928],[115,249,75,-0.7704406433757638],[115,249,76,-0.7700898199085979],[115,249,77,-0.7697412869604284],[115,249,78,-0.7693950498950165],[115,249,79,-0.7690511139854711],[115,250,64,-0.7746150014760413],[115,250,65,-0.774239237388478],[115,250,66,-0.7738656978144658],[115,250,67,-0.7734943890884162],[115,250,68,-0.7731253174587156],[115,250,69,-0.7727584890873155],[115,250,70,-0.7723939100493098],[115,250,71,-0.7720315863325153],[115,250,72,-0.7716715238370517],[115,250,73,-0.7713137283749344],[115,250,74,-0.7709582056696416],[115,250,75,-0.7706049613557096],[115,250,76,-0.7702540009783164],[115,250,77,-0.769905329992866],[115,250,78,-0.7695589537645767],[115,250,79,-0.7692148775680656],[115,251,64,-0.7747808785741155],[115,251,65,-0.7744049914577147],[115,251,66,-0.7740313277105072],[115,251,67,-0.7736598936677883],[115,251,68,-0.773290695578878],[115,251,69,-0.7729237396067101],[115,251,70,-0.7725590318274113],[115,251,71,-0.7721965782298799],[115,251,72,-0.7718363847153678],[115,251,73,-0.7714784570970724],[115,251,74,-0.7711228010997048],[115,251,75,-0.7707694223590844],[115,251,76,-0.7704183264217228],[115,251,77,-0.7700695187444087],[115,251,78,-0.7697230046937966],[115,251,79,-0.7693787895459908],[115,252,64,-0.7749468831634994],[115,252,65,-0.7745708744220081],[115,252,66,-0.7741970879007547],[115,252,67,-0.7738255299358953],[115,252,68,-0.7734562067776596],[115,252,69,-0.7730891245899416],[115,252,70,-0.7727242894498769],[115,252,71,-0.7723617073474238],[115,252,72,-0.7720013841849436],[115,252,73,-0.7716433257767936],[115,252,74,-0.7712875378488957],[115,252,75,-0.7709340260383302],[115,252,76,-0.770582795892921],[115,252,77,-0.7702338528708204],[115,252,78,-0.7698872023400978],[115,252,79,-0.7695428495783232],[115,253,64,-0.7751130148772174],[115,253,65,-0.774736885916059],[115,253,66,-0.7743629780215837],[115,253,67,-0.7739912975307848],[115,253,68,-0.773621850694779],[115,253,69,-0.7732546436783969],[115,253,70,-0.7728896825597609],[115,253,71,-0.7725269733298658],[115,253,72,-0.7721665218921601],[115,253,73,-0.7718083340621393],[115,253,74,-0.7714524155669131],[115,253,75,-0.771098772044802],[115,253,76,-0.7707474090449203],[115,253,77,-0.7703983320267621],[115,253,78,-0.7700515463597902],[115,253,79,-0.7697070573230201],[115,254,64,-0.7752792733473244],[115,254,65,-0.7749030255735903],[115,254,66,-0.7745289977083828],[115,254,67,-0.7741571960895095],[115,254,68,-0.7737876269689508],[115,254,69,-0.7734202965124508],[115,254,70,-0.7730552107990956],[115,254,71,-0.7726923758208945],[115,254,72,-0.7723317974823605],[115,254,73,-0.7719734816001044],[115,254,74,-0.7716174339024027],[115,254,75,-0.7712636600287932],[115,254,76,-0.7709121655296594],[115,254,77,-0.7705629558658158],[115,254,78,-0.7702160364080974],[115,254,79,-0.7698714124369443],[115,255,64,-0.7754456582048745],[115,255,65,-0.7750692930273145],[115,255,66,-0.7746951465955221],[115,255,67,-0.774323225248095],[115,255,68,-0.7739535352378542],[115,255,69,-0.7735860827314343],[115,255,70,-0.773220873808862],[115,255,71,-0.7728579144631382],[115,255,72,-0.7724972105998185],[115,255,73,-0.7721387680366066],[115,255,74,-0.7717825925029234],[115,255,75,-0.7714286896395024],[115,255,76,-0.7710770649979745],[115,255,77,-0.7707277240404531],[115,255,78,-0.7703806721391244],[115,255,79,-0.7700359145758315],[115,256,64,-0.775612169079982],[115,256,65,-0.775235687908997],[115,256,66,-0.7748614243164154],[115,256,67,-0.774489384641602],[115,256,68,-0.7741195751381946],[115,256,69,-0.7737520019736955],[115,256,70,-0.7733866712290495],[115,256,71,-0.773023588898226],[115,256,72,-0.7726627608878005],[115,256,73,-0.7723041930165475],[115,256,74,-0.7719478910150102],[115,256,75,-0.7715938605250959],[115,256,76,-0.771242107099661],[115,256,77,-0.7708926362020968],[115,256,78,-0.7705454532059189],[115,256,79,-0.7702005633943525],[115,257,64,-0.7757788056017999],[115,257,65,-0.7754022098494322],[115,257,66,-0.7750278305034972],[115,257,67,-0.7746556739041031],[115,257,68,-0.7742857463056813],[115,257,69,-0.7739180538765784],[115,257,70,-0.7735526026986346],[115,257,71,-0.7731893987667652],[115,257,72,-0.7728284479885428],[115,257,73,-0.7724697561837903],[115,257,74,-0.7721133290841514],[115,257,75,-0.7717591723326852],[115,257,76,-0.7714072914834518],[115,257,77,-0.7710576920010984],[115,257,78,-0.7707103792604493],[115,257,79,-0.7703653585460906],[115,258,64,-0.7759455673984973],[115,258,65,-0.7755688584784223],[115,258,66,-0.7751943647882008],[115,258,67,-0.774822092668661],[115,258,68,-0.7744520483750048],[115,258,69,-0.7740842380763998],[115,258,70,-0.7737186678555583],[115,258,71,-0.7733553437083189],[115,258,72,-0.7729942715432289],[115,258,73,-0.7726354571811376],[115,258,74,-0.7722789063547663],[115,258,75,-0.7719246247083039],[115,258,76,-0.771572617796993],[115,258,77,-0.7712228910867154],[115,258,78,-0.7708754499535819],[115,258,79,-0.7705302996835188],[115,259,64,-0.776112454097321],[115,259,65,-0.7757356334248382],[115,259,66,-0.77536102680102],[115,259,67,-0.7749886405673906],[115,259,68,-0.7746184809798989],[115,259,69,-0.7742505542085109],[115,259,70,-0.7738848663367875],[115,259,71,-0.7735214233614682],[115,259,72,-0.7731602311920521],[115,259,73,-0.7728012956503925],[115,259,74,-0.7724446224702662],[115,259,75,-0.7720902172969705],[115,259,76,-0.7717380856869079],[115,259,77,-0.7713882331071731],[115,259,78,-0.7710406649351429],[115,259,79,-0.7706953864580619],[115,260,64,-0.7762794653245637],[115,260,65,-0.7759025343165886],[115,260,66,-0.7755278161714771],[115,260,67,-0.7751553172314264],[115,260,68,-0.7747850437531091],[115,260,69,-0.7744170019072658],[115,260,70,-0.7740511977782837],[115,260,71,-0.7736876373637799],[115,260,72,-0.7733263265741829],[115,260,73,-0.7729672712323272],[115,260,74,-0.7726104770730238],[115,260,75,-0.7722559497426553],[115,260,76,-0.771903694798763],[115,260,77,-0.7715537177096328],[115,260,78,-0.7712060238538858],[115,260,79,-0.7708606185200643],[115,261,64,-0.7764466007055888],[115,261,65,-0.7760695607806432],[115,261,66,-0.7756947325281474],[115,261,67,-0.7753221222909473],[115,261,68,-0.774951736326416],[115,261,69,-0.7745835808060457],[115,261,70,-0.7742176618150267],[115,261,71,-0.7738539853518307],[115,261,72,-0.7734925573277932],[115,261,73,-0.7731333835667078],[115,261,74,-0.7727764698043964],[115,261,75,-0.7724218216883058],[115,261,76,-0.7720694447770939],[115,261,77,-0.7717193445402162],[115,261,78,-0.7713715263575169],[115,261,79,-0.7710259955188142],[115,262,64,-0.7766138598647985],[115,262,65,-0.7762367124430023],[115,262,66,-0.7758617754986273],[115,262,67,-0.7754890553751449],[115,262,68,-0.7751185583306048],[115,262,69,-0.7747502905372274],[115,262,70,-0.7743842580809833],[115,262,71,-0.774020466961176],[115,262,72,-0.7736589230900252],[115,262,73,-0.773299632292261],[115,262,74,-0.7729426003046942],[115,262,75,-0.7725878327758137],[115,262,76,-0.772235335265372],[115,262,77,-0.7718851132439729],[115,262,78,-0.7715371720926617],[115,262,79,-0.7711915171025118],[115,263,64,-0.776781242425695],[115,263,65,-0.7764039889287577],[115,263,66,-0.7760289447095966],[115,263,67,-0.775656116112285],[115,263,68,-0.7752855093955259],[115,263,69,-0.7749171307322447],[115,263,70,-0.7745509862091687],[115,263,71,-0.774187081826411],[115,263,72,-0.7738254234970524],[115,263,73,-0.773466017046737],[115,263,74,-0.7731088682132425],[115,263,75,-0.7727539826460775],[115,263,76,-0.7724013659060676],[115,263,77,-0.7720510234649426],[115,263,78,-0.7717029607049278],[115,263,79,-0.7713571829183307],[115,264,64,-0.7769487480108588],[115,264,65,-0.7765713898620702],[115,264,66,-0.7761962397867952],[115,264,67,-0.7758233041296853],[115,264,68,-0.775452589150073],[115,264,69,-0.7750841010215657],[115,264,70,-0.7747178458316245],[115,264,71,-0.7743538295811485],[115,264,72,-0.7739920581840575],[115,264,73,-0.7736325374668869],[115,264,74,-0.7732752731683589],[115,264,75,-0.7729202709389797],[115,264,76,-0.772567536340626],[115,264,77,-0.7722170748461322],[115,264,78,-0.7718688918388823],[115,264,79,-0.7715229926123958],[115,265,64,-0.7771163762419263],[115,265,65,-0.7767389148661479],[115,265,66,-0.7763636603550015],[115,265,67,-0.7759906190536926],[115,265,68,-0.7756197972221607],[115,265,69,-0.7752512010346708],[115,265,70,-0.7748848365793953],[115,265,71,-0.7745207098579963],[115,265,72,-0.7741588267852095],[115,265,73,-0.7737991931884394],[115,265,74,-0.7734418148073303],[115,265,75,-0.7730866972933639],[115,265,76,-0.7727338462094459],[115,265,77,-0.7723832670294937],[115,265,78,-0.772034965138028],[115,265,79,-0.77168894582976],[115,266,64,-0.7772841267396506],[115,266,65,-0.776906563563307],[115,266,66,-0.776531206038093],[115,266,67,-0.7761580605097453],[115,266,68,-0.7757871332387857],[115,266,69,-0.7754184304001146],[115,266,70,-0.7750519580825914],[115,266,71,-0.7746877222886188],[115,266,72,-0.7743257289337259],[115,266,73,-0.7739659838461632],[115,266,74,-0.7736084927664753],[115,266,75,-0.7732532613470966],[115,266,76,-0.7729002951519404],[115,266,77,-0.7725495996559851],[115,266,78,-0.772201180244867],[115,266,79,-0.7718550422144665],[115,267,64,-0.777451999123871],[115,267,65,-0.7770743355749405],[115,267,66,-0.7766988764590161],[115,267,67,-0.7763256281223408],[115,267,68,-0.7759545968259955],[115,267,69,-0.7755857887454928],[115,267,70,-0.7752192099703561],[115,267,71,-0.7748548665037055],[115,267,72,-0.7744927642618402],[115,267,73,-0.7741329090738351],[115,267,74,-0.7737753066811116],[115,267,75,-0.7734199627370357],[115,267,76,-0.7730668828065057],[115,267,77,-0.7727160723655393],[115,267,78,-0.7723675368008667],[115,267,79,-0.7720212814095166],[115,268,64,-0.777619993013536],[115,268,65,-0.7772422305215427],[115,268,66,-0.7768666712398086],[115,268,67,-0.7764933215150598],[115,268,68,-0.7761221876089128],[115,268,69,-0.775753275697468],[115,268,70,-0.7753865918708907],[115,268,71,-0.7750221421329946],[115,268,72,-0.774659932400827],[115,268,73,-0.7742999685042637],[115,268,74,-0.7739422561855811],[115,268,75,-0.7735868010990544],[115,268,76,-0.7732336088105447],[115,268,77,-0.7728826847970875],[115,268,78,-0.7725340344464852],[115,268,79,-0.7721876630568937],[115,269,64,-0.7777881080266728],[115,269,65,-0.7774102480226771],[115,269,66,-0.7770345900015694],[115,269,67,-0.776661140310535],[115,269,68,-0.7762899052117025],[115,269,69,-0.7759208908817371],[115,269,70,-0.7755541034114216],[115,269,71,-0.7751895488052416],[115,269,72,-0.7748272329809688],[115,269,73,-0.7744671617692576],[115,269,74,-0.7741093409132169],[115,269,75,-0.7737537760680088],[115,269,76,-0.7734004728004352],[115,269,77,-0.7730494365885278],[115,269,78,-0.7727006728211391],[115,269,79,-0.772354186797531],[115,270,64,-0.7779563437804476],[115,270,65,-0.7775783876970377],[115,270,66,-0.777202632364519],[115,270,67,-0.7768290841305125],[115,270,68,-0.7764577492576348],[115,270,69,-0.7760886339230926],[115,270,70,-0.7757217442182635],[115,270,71,-0.775357086148281],[115,270,72,-0.7749946656316189],[115,270,73,-0.7746344884996875],[115,270,74,-0.7742765604964059],[115,270,75,-0.7739208872778003],[115,270,76,-0.773567474411592],[115,270,77,-0.7732163273767864],[115,270,78,-0.7728674515632651],[115,270,79,-0.7725208522713741],[115,271,64,-0.7781246998911446],[115,271,65,-0.7777466491624274],[115,271,66,-0.7773707979479779],[115,271,67,-0.776997152595829],[115,271,68,-0.7766257193690618],[115,271,69,-0.7762565044454008],[115,271,70,-0.7758895139167951],[115,271,71,-0.7755247537890034],[115,271,72,-0.7751622299811782],[115,271,73,-0.7748019483254636],[115,271,74,-0.7744439145665654],[115,271,75,-0.7740881343613526],[115,271,76,-0.7737346132784435],[115,271,77,-0.7733833567977954],[115,271,78,-0.7730343703102971],[115,271,79,-0.7726876591173576],[115,272,64,-0.7782931759741425],[115,272,65,-0.7779150320357346],[115,272,66,-0.7775390863703436],[115,272,67,-0.7771653453263899],[115,272,68,-0.7767938151673954],[115,272,69,-0.7764245020715791],[115,272,70,-0.7760574121314381],[115,272,71,-0.775692551353333],[115,272,72,-0.7753299256570729],[115,272,73,-0.7749695408755117],[115,272,74,-0.7746114027541209],[115,272,75,-0.7742555169505893],[115,272,76,-0.7739018890344096],[115,272,77,-0.7735505244864695],[115,272,78,-0.7732014286986437],[115,272,79,-0.7728546069733823],[115,273,64,-0.7784617716439761],[115,273,65,-0.7780835359329956],[115,273,66,-0.7777074972491524],[115,273,67,-0.7773336619412302],[115,273,68,-0.7769620362731685],[115,273,69,-0.776592626423657],[115,273,70,-0.7762254384857175],[115,273,71,-0.7758604784662897],[115,273,72,-0.7754977522858155],[115,273,73,-0.7751372657778369],[115,273,74,-0.7747790246885681],[115,273,75,-0.7744230346764948],[115,273,76,-0.7740693013119632],[115,273,77,-0.7737178300767688],[115,273,78,-0.7733686263637501],[115,273,79,-0.7730216954763772],[115,274,64,-0.7786304865143051],[115,274,65,-0.7782521604693624],[115,274,66,-0.7778760302010472],[115,274,67,-0.7775021020584834],[115,274,68,-0.7771303823060036],[115,274,69,-0.776760877122745],[115,274,70,-0.7763935926022307],[115,274,71,-0.7760285347519563],[115,274,72,-0.775665709492974],[115,274,73,-0.7753051226594904],[115,274,74,-0.7749467799984399],[115,274,75,-0.7745906871690835],[115,274,76,-0.774236849742598],[115,274,77,-0.7738852732016652],[115,274,78,-0.7735359629400658],[115,274,79,-0.7731889242622676],[115,275,64,-0.7787993201979381],[115,275,65,-0.7784209052591267],[115,275,66,-0.7780446848418023],[115,275,67,-0.7776706652954049],[115,275,68,-0.7772988528846365],[115,275,69,-0.7769292537890583],[115,275,70,-0.7765618741026714],[115,275,71,-0.7761967198335036],[115,275,72,-0.7758337969031947],[115,275,73,-0.7754731111465935],[115,275,74,-0.7751146683113317],[115,275,75,-0.7747584740574232],[115,275,76,-0.7744045339568532],[115,275,77,-0.7740528534931678],[115,275,78,-0.7737034380610681],[115,275,79,-0.7733562929659988],[115,276,64,-0.7789682723068005],[115,276,65,-0.7785897699156885],[115,276,66,-0.7782134607862914],[115,276,67,-0.7778393512683408],[115,276,68,-0.7774674476268851],[115,276,69,-0.7770977560418852],[115,276,70,-0.7767302826077971],[115,276,71,-0.7763650333331578],[115,276,72,-0.7760020141401712],[115,276,73,-0.7756412308643059],[115,276,74,-0.7752826892538683],[115,276,75,-0.7749263949696028],[115,276,76,-0.7745723535842804],[115,276,77,-0.7742205705822901],[115,276,78,-0.7738710513592313],[115,276,79,-0.773523801221504],[115,277,64,-0.7791373424519965],[115,277,65,-0.7787587540516174],[115,277,66,-0.7783823576485487],[115,277,67,-0.7780081595927894],[115,277,68,-0.7776361661497101],[115,277,69,-0.7772663834996484],[115,277,70,-0.7768988177374914],[115,277,71,-0.7765334748722621],[115,277,72,-0.7761703608267061],[115,277,73,-0.7758094814368881],[115,277,74,-0.7754508424517668],[115,277,75,-0.7750944495327946],[115,277,76,-0.7747403082535068],[115,277,77,-0.7743884240991123],[115,277,78,-0.7740388024660876],[115,277,79,-0.7736914486617661],[115,278,64,-0.7793065302437859],[115,278,65,-0.7789278572786302],[115,278,66,-0.7785513750417465],[115,278,67,-0.778177089883378],[115,278,68,-0.7778050080691932],[115,278,69,-0.7774351357798827],[115,278,70,-0.7770674791107413],[115,278,71,-0.7767020440712551],[115,278,72,-0.7763388365846875],[115,278,73,-0.7759778624876772],[115,278,74,-0.7756191275298127],[115,278,75,-0.7752626373732314],[115,278,76,-0.7749083975922109],[115,278,77,-0.7745564136727581],[115,278,78,-0.7742066910122043],[115,278,79,-0.7738592349187952],[115,279,64,-0.7794758352915628],[115,279,65,-0.7790970792075685],[115,279,66,-0.7787205125781738],[115,279,67,-0.7783461417538412],[115,279,68,-0.777973973000514],[115,279,69,-0.777604012499212],[115,279,70,-0.7772362663456142],[115,279,71,-0.7768707405496462],[115,279,72,-0.7765074410350669],[115,279,73,-0.7761463736390656],[115,279,74,-0.7757875441118374],[115,279,75,-0.7754309581161835],[115,279,76,-0.7750766212271003],[115,279,77,-0.7747245389313714],[115,279,78,-0.7743747166271612],[115,279,79,-0.7740271596236052],[115,280,64,-0.7796452572039156],[115,280,65,-0.7792664194484598],[115,280,66,-0.7788897698692957],[115,280,67,-0.7785153148170818],[115,280,68,-0.7781430605580121],[115,280,69,-0.7777730132734114],[115,280,70,-0.7774051790593199],[115,280,71,-0.7770395639260796],[115,280,72,-0.776676173797921],[115,280,73,-0.7763150145125617],[115,280,74,-0.7759560918207811],[115,280,75,-0.7755994113860205],[115,280,76,-0.7752449787839741],[115,280,77,-0.7748927995021795],[115,280,78,-0.774542878939612],[115,280,79,-0.7741952224062763],[115,281,64,-0.7798147955885963],[115,281,65,-0.7794358776104857],[115,281,66,-0.7790591465257234],[115,281,67,-0.7786846086851394],[115,281,68,-0.7783122703551543],[115,281,69,-0.7779421377173749],[115,281,70,-0.7775742168681784],[115,281,71,-0.7772085138183],[115,281,72,-0.7768450344924192],[115,281,73,-0.7764837847287586],[115,281,74,-0.7761247702786588],[115,281,75,-0.7757679968061797],[115,281,76,-0.77541346988769],[115,281,77,-0.7750611950114594],[115,281,78,-0.7747111775772529],[115,281,79,-0.7743634228959216],[115,282,64,-0.7799844500525445],[115,282,65,-0.7796054533020068],[115,282,66,-0.7792286421572375],[115,282,67,-0.7788540229692142],[115,282,68,-0.7784816020045597],[115,282,69,-0.7781113854451394],[115,282,70,-0.777743379387644],[115,282,71,-0.7773775898431786],[115,282,72,-0.7770140227368482],[115,282,73,-0.7766526839073575],[115,282,74,-0.7762935791065861],[115,282,75,-0.7759367139991893],[115,282,76,-0.7755820941621885],[115,282,77,-0.7752297250845632],[115,282,78,-0.7748796121668459],[115,282,79,-0.7745317607207128],[115,283,64,-0.7801542202018548],[115,283,65,-0.77977514613053],[115,283,66,-0.7793982563727564],[115,283,67,-0.7790235572796349],[115,283,68,-0.7786510551179674],[115,283,69,-0.7782807560698531],[115,283,70,-0.7779126662322736],[115,283,71,-0.7775467916166796],[115,283,72,-0.7771831381485791],[115,283,73,-0.7768217116671361],[115,283,74,-0.7764625179247459],[115,283,75,-0.7761055625866368],[115,283,76,-0.7757508512304605],[115,283,77,-0.7753983893458845],[115,283,78,-0.7750481823341864],[115,283,79,-0.7747002355078463],[115,284,64,-0.7803241056418391],[115,284,65,-0.77994495570277],[115,284,66,-0.7795679887803972],[115,284,67,-0.7791932112259208],[115,284,68,-0.7788206293062975],[115,284,69,-0.778450249203837],[115,284,70,-0.7780820770157876],[115,284,71,-0.7777161187539229],[115,284,72,-0.7773523803441302],[115,284,73,-0.77699086762601],[115,284,74,-0.7766315863524506],[115,284,75,-0.7762745421892305],[115,284,76,-0.77591974071461],[115,284,77,-0.7755671874189214],[115,284,78,-0.7752168877041663],[115,284,79,-0.7748688468836062],[115,285,64,-0.7804941059770037],[115,285,65,-0.7801148816246273],[115,285,66,-0.779737838987454],[115,285,67,-0.7793629844167589],[115,285,68,-0.7789903241796292],[115,285,69,-0.778619864458562],[115,285,70,-0.778251611351048],[115,285,71,-0.7778855708691608],[115,285,72,-0.7775217489391436],[115,285,73,-0.7771601514010102],[115,285,74,-0.7768007840081194],[115,285,75,-0.7764436524267776],[115,285,76,-0.7760887622358301],[115,285,77,-0.775736118926253],[115,285,78,-0.7753857279007494],[115,285,79,-0.7750375944733408],[115,286,64,-0.780664220811027],[115,286,65,-0.7802849235011653],[115,286,66,-0.7799078066003745],[115,286,67,-0.7795328764599807],[115,286,68,-0.779160139347178],[115,286,69,-0.7787896014446261],[115,286,70,-0.7784212688500352],[115,286,71,-0.7780551475757551],[115,286,72,-0.7776912435483622],[115,286,73,-0.7773295626082599],[115,286,74,-0.7769701105092551],[115,286,75,-0.7766128929181593],[115,286,76,-0.7762579154143805],[115,286,77,-0.7759051834895165],[115,286,78,-0.7755547025469497],[115,286,79,-0.7752064779014397],[115,287,64,-0.7808344497468203],[115,287,65,-0.7804550809366714],[115,287,66,-0.7800778912248221],[115,287,67,-0.779702886962625],[115,287,68,-0.7793300744173568],[115,287,69,-0.7789594597718164],[115,287,70,-0.7785910491239099],[115,287,71,-0.7782248484862395],[115,287,72,-0.7778608637856916],[115,287,73,-0.7774991008630369],[115,287,74,-0.7771395654725064],[115,287,75,-0.7767822632813944],[115,287,76,-0.7764271998696501],[115,287,77,-0.7760743807294694],[115,287,78,-0.7757238112648928],[115,287,79,-0.7753754967913958],[115,288,64,-0.7810047923865058],[115,288,65,-0.7806253535346351],[115,288,66,-0.7802480924656529],[115,288,67,-0.7798730155309139],[115,288,68,-0.7795001289977537],[115,288,69,-0.7791294390490864],[115,288,70,-0.7787609517829901],[115,288,71,-0.7783946732122964],[115,288,72,-0.778030609264178],[115,288,73,-0.7776687657797496],[115,288,74,-0.7773091485136443],[115,288,75,-0.7769517631336162],[115,288,76,-0.7765966152201325],[115,288,77,-0.7762437102659662],[115,288,78,-0.7758930536757926],[115,288,79,-0.7755446507657824],[115,289,64,-0.7811752483313942],[115,289,65,-0.7807957408977251],[115,289,66,-0.7804184099268932],[115,289,67,-0.7800432617702311],[115,289,68,-0.7796703026951091],[115,289,69,-0.7792995388845326],[115,289,70,-0.7789309764367285],[115,289,71,-0.7785646213647336],[115,289,72,-0.778200479595984],[115,289,73,-0.7778385569719153],[115,289,74,-0.7774788592475397],[115,289,75,-0.7771213920910485],[115,289,76,-0.7767661610834045],[115,289,77,-0.776413171717935],[115,289,78,-0.7760624293999291],[115,289,79,-0.7757139394462296],[115,290,64,-0.7813458171820455],[115,290,65,-0.7809662426278505],[115,290,66,-0.7805888432118008],[115,290,67,-0.7802136252851828],[115,290,68,-0.7798405951153774],[115,290,69,-0.7794697588854573],[115,290,70,-0.779101122693774],[115,290,71,-0.7787346925535468],[115,290,72,-0.7783704743924514],[115,290,73,-0.7780084740522215],[115,290,74,-0.7776486972882253],[115,290,75,-0.7772911497690685],[115,290,76,-0.7769358370761872],[115,290,77,-0.7765827647034407],[115,290,78,-0.7762319380567094],[115,290,79,-0.7758833624534871],[115,291,64,-0.7815164985382373],[115,291,65,-0.7811368583261292],[115,291,66,-0.7807593919228335],[115,291,67,-0.7803841056795663],[115,291,68,-0.7800110058636945],[115,291,69,-0.779640098658335],[115,291,70,-0.7792713901619397],[115,291,71,-0.7789048863878868],[115,291,72,-0.7785405932640688],[115,291,73,-0.7781785166324936],[115,291,74,-0.7778186622488629],[115,291,75,-0.777461035782174],[115,291,76,-0.7771056428143137],[115,291,77,-0.7767524888396512],[115,291,78,-0.7764015792646362],[115,291,79,-0.7760529194073909],[115,292,64,-0.7816872919989895],[115,292,65,-0.7813075875929117],[115,292,66,-0.7809300556616726],[115,292,67,-0.7805547025563933],[115,292,68,-0.7801815345444028],[115,292,69,-0.7798105578088376],[115,292,70,-0.779441778448227],[115,292,71,-0.7790752024760843],[115,292,72,-0.7787108358204949],[115,292,73,-0.7783486843237188],[115,292,74,-0.7779887537417676],[115,292,75,-0.7776310497440075],[115,292,76,-0.7772755779127536],[115,292,77,-0.7769223437428625],[115,292,78,-0.7765713526413308],[115,292,79,-0.7762226099268879],[115,293,64,-0.7818581971625308],[115,293,65,-0.7814784300277493],[115,293,66,-0.7811008340291912],[115,293,67,-0.7807254155178582],[115,293,68,-0.7803521807610178],[115,293,69,-0.7799811359418017],[115,293,70,-0.7796122871587933],[115,293,71,-0.7792456404256167],[115,293,72,-0.7788812016705277],[115,293,73,-0.7785189767360143],[115,293,74,-0.7781589713783755],[115,293,75,-0.7778011912673239],[115,293,76,-0.7774456419855799],[115,293,77,-0.7770923290284654],[115,293,78,-0.7767412578035017],[115,293,79,-0.7763924336300032],[115,294,64,-0.782029213626362],[115,294,65,-0.7816493852294555],[115,294,66,-0.7812717266255154],[115,294,67,-0.7808962441654],[115,294,68,-0.7805229441162906],[115,294,69,-0.780151832661291],[115,294,70,-0.7797829158990134],[115,294,71,-0.7794161998431707],[115,294,72,-0.7790516904221647],[115,294,73,-0.7786893934786887],[115,294,74,-0.7783293147693059],[115,294,75,-0.7779714599640524],[115,294,76,-0.7776158346460316],[115,294,77,-0.777262444311008],[115,294,78,-0.7769112943670059],[115,294,79,-0.7765623901339024],[115,295,64,-0.7822003409872322],[115,295,65,-0.7818204527960833],[115,295,66,-0.7814427330500021],[115,295,67,-0.7810671880996791],[115,295,68,-0.7806938242121854],[115,295,69,-0.780322647570572],[115,295,70,-0.7799536642734575],[115,295,71,-0.7795868803346189],[115,295,72,-0.7792223016825808],[115,295,73,-0.7788599341602191],[115,295,74,-0.7784997835243377],[115,295,75,-0.7781418554452735],[115,295,76,-0.7777861555064902],[115,295,77,-0.7774326892041727],[115,295,78,-0.7770814619468258],[115,295,79,-0.7767324790548678],[115,296,64,-0.7823715788411161],[115,296,65,-0.7819916323249021],[115,296,66,-0.7816138529012157],[115,296,67,-0.7812382469205545],[115,296,68,-0.7808648206498552],[115,296,69,-0.7804935802720925],[115,296,70,-0.7801245318858672],[115,296,71,-0.7797576815049967],[115,296,72,-0.7793930350581056],[115,296,73,-0.7790305983882281],[115,296,74,-0.7786703772523864],[115,296,75,-0.7783123773211955],[115,296,76,-0.7779566041784567],[115,296,77,-0.7776030633207527],[115,296,78,-0.7772517601570466],[115,296,79,-0.7769027000082755],[115,297,64,-0.7825429267832757],[115,297,65,-0.7821629234124602],[115,297,66,-0.7817850857769897],[115,297,67,-0.7814094202271454],[115,297,68,-0.7810359330297051],[115,297,69,-0.7806646303675431],[115,297,70,-0.7802955183392182],[115,297,71,-0.7799286029585649],[115,297,72,-0.7795638901542843],[115,297,73,-0.7792013857695459],[115,297,74,-0.7788410955615668],[115,297,75,-0.7784830252012173],[115,297,76,-0.7781271802726135],[115,297,77,-0.7777735662727139],[115,297,78,-0.7774221886109174],[115,297,79,-0.7770730526086582],[115,298,64,-0.7827143844082289],[115,298,65,-0.7823343256545516],[115,298,66,-0.7819564312743953],[115,298,67,-0.7815807076177995],[115,298,68,-0.7812071609513591],[115,298,69,-0.7808357974578238],[115,298,70,-0.780466623235687],[115,298,71,-0.7800996442987767],[115,298,72,-0.779734866575846],[115,298,73,-0.7793722959101772],[115,298,74,-0.7790119380591596],[115,298,75,-0.778653798693895],[115,298,76,-0.7782978833987922],[115,298,77,-0.7779441976711629],[115,298,78,-0.7775927469208196],[115,298,79,-0.7772435364696715],[115,299,64,-0.782885951309772],[115,299,65,-0.7825058386462409],[115,299,66,-0.7821278889897644],[115,299,67,-0.7817521086901164],[115,299,68,-0.7813785040136844],[115,299,69,-0.7810070811430698],[115,299,70,-0.7806378461766763],[115,299,71,-0.7802708051283015],[115,299,72,-0.779905963926728],[115,299,73,-0.7795433284153265],[115,299,74,-0.7791829043516356],[115,299,75,-0.7788246974069664],[115,299,76,-0.7784687131659974],[115,299,77,-0.7781149571263706],[115,299,78,-0.7777634346982902],[115,299,79,-0.7774141512041183],[115,300,64,-0.7830576270809493],[115,300,65,-0.7826774619818303],[115,300,66,-0.7822994585186578],[115,300,67,-0.7819236230409157],[115,300,68,-0.7815499618147592],[115,300,69,-0.7811784810226178],[115,300,70,-0.7808091867627813],[115,300,71,-0.7804420850489933],[115,300,72,-0.780077181810042],[115,300,73,-0.7797144828893643],[115,300,74,-0.7793539940446239],[115,300,75,-0.7789957209473186],[115,300,76,-0.7786396691823739],[115,300,77,-0.7782858442477397],[115,300,78,-0.7779342515539897],[115,300,79,-0.7775848964239165],[115,301,64,-0.7832294113141129],[115,301,65,-0.7828491952549219],[115,301,66,-0.7824711394559274],[115,301,67,-0.7820952502662983],[115,301,68,-0.7817215339519347],[115,301,69,-0.7813499966950683],[115,301,70,-0.7809806445938521],[115,301,71,-0.7806134836619519],[115,301,72,-0.7802485198281381],[115,301,73,-0.7798857589358895],[115,301,74,-0.7795252067429731],[115,301,75,-0.7791668689210497],[115,301,76,-0.7788107510552692],[115,301,77,-0.7784568586438669],[115,301,78,-0.7781051970977636],[115,301,79,-0.7777557717401604],[115,302,64,-0.7834013036009019],[115,302,65,-0.7830210380583947],[115,302,66,-0.7826429313956924],[115,302,67,-0.7822669899616246],[115,302,68,-0.7818932200218109],[115,302,69,-0.7815216277582625],[115,302,70,-0.7811522192689708],[115,302,71,-0.7807850005675003],[115,302,72,-0.7804199775825797],[115,302,73,-0.780057156157707],[115,302,74,-0.7796965420507286],[115,302,75,-0.7793381409334458],[115,302,76,-0.7789819583912101],[115,302,77,-0.7786279999225197],[115,302,78,-0.7782762709386201],[115,302,79,-0.7779267767630986],[115,303,64,-0.7835733035322175],[115,303,65,-0.7831929899843815],[115,303,66,-0.782814833931317],[115,303,67,-0.7824388417214899],[115,303,68,-0.7820650196202155],[115,303,69,-0.7816933738092596],[115,303,70,-0.7813239103864286],[115,303,71,-0.7809566353651611],[115,303,72,-0.7805915546741217],[115,303,73,-0.7802286741568034],[115,303,74,-0.7798679995711091],[115,303,75,-0.7795095365889576],[115,303,76,-0.7791532907958791],[115,303,77,-0.7787992676906126],[115,303,78,-0.7784474726847053],[115,303,79,-0.7780979111021094],[115,304,64,-0.7837454106982862],[115,304,65,-0.7833650506243304],[115,304,66,-0.7829868466554717],[115,304,67,-0.7826108051397875],[115,304,68,-0.7822369323422641],[115,304,69,-0.7818652344443981],[115,304,70,-0.7814957175437865],[115,304,71,-0.7811283876537192],[115,304,72,-0.7807632507027717],[115,304,73,-0.7804003125344096],[115,304,74,-0.7800395789065687],[115,304,75,-0.7796810554912625],[115,304,76,-0.7793247478741774],[115,304,77,-0.7789706615542699],[115,304,78,-0.7786188019433671],[115,304,79,-0.7782691743657634],[115,305,64,-0.7839176246886266],[115,305,65,-0.7835372195689732],[115,305,66,-0.7831589691601014],[115,305,67,-0.7827828798096756],[115,305,68,-0.7824089577823287],[115,305,69,-0.7820372092592638],[115,305,70,-0.7816676403378446],[115,305,71,-0.7813002570311882],[115,305,72,-0.7809350652677579],[115,305,73,-0.780572070890968],[115,305,74,-0.7802112796587647],[115,305,75,-0.7798526972432326],[115,305,76,-0.7794963292301912],[115,305,77,-0.7791421811187924],[115,305,78,-0.7787902583211208],[115,305,79,-0.7784405661617911],[115,306,64,-0.7840899450920734],[115,306,65,-0.7837094964083486],[115,306,66,-0.783331201036449],[115,306,67,-0.7829550653236015],[115,306,68,-0.7825810955340612],[115,306,69,-0.7822092978487134],[115,306,70,-0.7818396783646646],[115,306,71,-0.7814722430948353],[115,306,72,-0.781106997967553],[115,306,73,-0.7807439488261572],[115,306,74,-0.7803831014285809],[115,306,75,-0.7800244614469573],[115,306,76,-0.7796680344672162],[115,306,77,-0.779313825988682],[115,306,78,-0.7789618414236749],[115,306,79,-0.7786120860971066],[115,307,64,-0.7842623714967464],[115,307,65,-0.7838818807317708],[115,307,66,-0.7835035418750236],[115,307,67,-0.7831273612732695],[115,307,68,-0.7827533451903613],[115,307,69,-0.7823814998068426],[115,307,70,-0.7820118312195384],[115,307,71,-0.7816443454411486],[115,307,72,-0.7812790483998414],[115,307,73,-0.7809159459388583],[115,307,74,-0.7805550438160956],[115,307,75,-0.7801963477037119],[115,307,76,-0.7798398631877249],[115,307,77,-0.7794855957676088],[115,307,78,-0.7791335508558961],[115,307,79,-0.7787837337777748],[115,308,64,-0.7844349034901102],[115,308,65,-0.7840543721278901],[115,308,66,-0.7836759912656615],[115,308,67,-0.7832997672497022],[115,308,68,-0.7829257063434383],[115,308,69,-0.7825538147270474],[115,308,70,-0.782184098497049],[115,308,71,-0.7818165636658988],[115,308,72,-0.7814512161615816],[115,308,73,-0.7810880618272176],[115,308,74,-0.7807271064206431],[115,308,75,-0.7803683556140195],[115,308,76,-0.7800118149934289],[115,308,77,-0.7796574900584727],[115,308,78,-0.7793053862218738],[115,308,79,-0.7789555088090736],[115,309,64,-0.784607540658953],[115,309,65,-0.7842269701846708],[115,309,66,-0.7838485487975035],[115,309,67,-0.7834722828432176],[115,309,68,-0.7830981785847877],[115,309,69,-0.7827262422020013],[115,309,70,-0.7823564797910483],[115,309,71,-0.781988897364116],[115,309,72,-0.7816235008489827],[115,309,73,-0.7812602960886232],[115,309,74,-0.7808992888407913],[115,309,75,-0.7805404847776272],[115,309,76,-0.7801838894852549],[115,309,77,-0.7798295084633808],[115,309,78,-0.7794773471248952],[115,309,79,-0.7791274107954707],[115,310,64,-0.7847802825893623],[115,310,65,-0.7843996744893679],[115,310,66,-0.7840212140589724],[115,310,67,-0.7836449076434062],[115,310,68,-0.7832707615051686],[115,310,69,-0.7828987818236322],[115,310,70,-0.7825289746946331],[115,310,71,-0.7821613461300668],[115,310,72,-0.781795902057481],[115,310,73,-0.781432648319682],[115,310,74,-0.7810715906743171],[115,310,75,-0.7807127347934828],[115,310,76,-0.7803560862633221],[115,310,77,-0.7800016505836234],[115,310,78,-0.7796494331674222],[115,310,79,-0.7792994393405998],[115,311,64,-0.7849531288667875],[115,311,65,-0.7845724846285884],[115,311,66,-0.7841939866378338],[115,311,67,-0.783817641239193],[115,311,68,-0.7834434546946651],[115,311,69,-0.7830714331831838],[115,311,70,-0.7827015828002079],[115,311,71,-0.7823339095573162],[115,311,72,-0.7819684193818024],[115,311,73,-0.781605118116281],[115,311,74,-0.7812440115182695],[115,311,75,-0.7808851052597976],[115,311,76,-0.7805284049270041],[115,311,77,-0.7801739160197367],[115,311,78,-0.7798216439511538],[115,311,79,-0.779471594047323],[115,312,64,-0.7851260790760068],[115,312,65,-0.7847454001882597],[115,312,66,-0.7843668661211642],[115,312,67,-0.783990483218804],[115,312,68,-0.783616257742654],[115,312,69,-0.783244195871184],[115,312,70,-0.7828743036994512],[115,312,71,-0.7825065872386945],[115,312,72,-0.7821410524159297],[115,312,73,-0.7817777050735555],[115,312,74,-0.7814165509689367],[115,312,75,-0.7810575957740127],[115,312,76,-0.7807008450748956],[115,312,77,-0.7803463043714696],[115,312,78,-0.7799939790769932],[115,312,79,-0.7796438745176983],[115,313,64,-0.785299132801152],[115,313,65,-0.784918420753653],[115,313,66,-0.784539852095375],[115,313,67,-0.7841634331697918],[115,313,68,-0.7837891702378283],[115,313,69,-0.7834170694774677],[115,313,70,-0.7830471369833405],[115,313,71,-0.782679378766322],[115,313,72,-0.7823138007531261],[115,313,73,-0.7819504087859126],[115,313,74,-0.7815892086218698],[115,313,75,-0.7812302059328239],[115,313,76,-0.7808734063048373],[115,313,77,-0.7805188152378076],[115,313,78,-0.7801664381450716],[115,313,79,-0.7798162803530028],[115,314,64,-0.7854722896256755],[115,314,65,-0.785091545909351],[115,314,66,-0.7847129441461801],[115,314,67,-0.7843364906790011],[115,314,68,-0.7839621917681661],[115,314,69,-0.7835900535911451],[115,314,70,-0.7832200822421193],[115,314,71,-0.7828522837315758],[115,314,72,-0.7824866639859032],[115,314,73,-0.7821232288469983],[115,314,74,-0.7817619840718499],[115,314,75,-0.7814029353321481],[115,314,76,-0.781046088213882],[115,314,77,-0.7806914482169407],[115,314,78,-0.7803390207547157],[115,314,79,-0.7799888111537003],[115,315,64,-0.7856455491324117],[115,315,65,-0.7852647752393096],[115,315,66,-0.7848861418586571],[115,315,67,-0.7845096553326327],[115,315,68,-0.7841353219209901],[115,315,69,-0.7837631478006633],[115,315,70,-0.7833931390653588],[115,315,71,-0.7830253017251521],[115,315,72,-0.7826596417060823],[115,315,73,-0.7822961648497601],[115,315,74,-0.7819348769129513],[115,315,75,-0.7815757835671859],[115,315,76,-0.7812188903983581],[115,315,77,-0.7808642029063245],[115,315,78,-0.7805117265045095],[115,315,79,-0.7801614665195036],[115,316,64,-0.7858189109035548],[115,316,65,-0.7854381083268347],[115,316,66,-0.7850594448172248],[115,316,67,-0.7846829267162183],[115,316,68,-0.7843085602829467],[115,316,69,-0.783936351693783],[115,316,70,-0.7835663070419351],[115,316,71,-0.7831984323370426],[115,316,72,-0.7828327335047717],[115,316,73,-0.7824692163864231],[115,316,74,-0.7821078867385162],[115,316,75,-0.7817487502323985],[115,316,76,-0.7813918124538447],[115,316,77,-0.7810370789026575],[115,316,78,-0.7806845549922712],[115,316,79,-0.7803342460493508],[115,317,64,-0.7859923745206354],[115,317,65,-0.7856115447545599],[115,317,66,-0.7852328526056197],[115,317,67,-0.7848563044145991],[115,317,68,-0.7844819064399816],[115,317,69,-0.7841096648575553],[115,317,70,-0.7837395857600055],[115,317,71,-0.7833716751565116],[115,317,72,-0.783005938972343],[115,317,73,-0.7826423830484671],[115,317,74,-0.7822810131411333],[115,317,75,-0.781921834921483],[115,317,76,-0.7815648539751494],[115,317,77,-0.7812100758018574],[115,317,78,-0.7808575058150289],[115,317,79,-0.7805071493413814],[115,318,64,-0.7861659395645815],[115,318,65,-0.7857850841045065],[115,318,66,-0.785406364806958],[115,318,67,-0.7850297880119861],[115,318,68,-0.7846553599774018],[115,318,69,-0.7842830868783839],[115,318,70,-0.7839129748070706],[115,318,71,-0.7835450297721576],[115,318,72,-0.7831792576984935],[115,318,73,-0.7828156644266885],[115,318,74,-0.7824542557126986],[115,318,75,-0.7820950372274362],[115,318,76,-0.7817380145563694],[115,318,77,-0.7813831931991233],[115,318,78,-0.7810305785690842],[115,318,79,-0.7806801759929997],[115,319,64,-0.7863396056156963],[115,319,65,-0.7859587259580625],[115,319,66,-0.7855799810037125],[115,319,67,-0.7852033770919375],[115,319,68,-0.7848289204798523],[115,319,69,-0.7844566173420011],[115,319,70,-0.7840864737699512],[115,319,71,-0.7837184957718901],[115,319,72,-0.7833526892722221],[115,319,73,-0.7829890601111764],[115,319,74,-0.7826276140443924],[115,319,75,-0.7822683567425298],[115,319,76,-0.781911293790869],[115,319,77,-0.781556430688912],[115,319,78,-0.7812037728499872],[115,319,79,-0.7808533256008499],[116,-64,64,-0.7302524516789709],[116,-64,65,-0.7299726691384171],[116,-64,66,-0.7296952790881539],[116,-64,67,-0.7294202866351549],[116,-64,68,-0.7291476967931866],[116,-64,69,-0.7288775144823952],[116,-64,70,-0.7286097445288782],[116,-64,71,-0.7283443916642598],[116,-64,72,-0.7280814605252648],[116,-64,73,-0.7278209556533081],[116,-64,74,-0.7275628814940537],[116,-64,75,-0.7273072423970062],[116,-64,76,-0.727054042615088],[116,-64,77,-0.7268032863042188],[116,-64,78,-0.7265549775228981],[116,-64,79,-0.7263091202317833],[116,-63,64,-0.7303682277783606],[116,-63,65,-0.730088003748461],[116,-63,66,-0.7298101721592154],[116,-63,67,-0.7295347381237125],[116,-63,68,-0.7292617066618344],[116,-63,69,-0.7289910826998443],[116,-63,70,-0.728722871069957],[116,-63,71,-0.7284570765099152],[116,-63,72,-0.728193703662562],[116,-63,73,-0.7279327570754314],[116,-63,74,-0.7276742412003068],[116,-63,75,-0.7274181603928118],[116,-63,76,-0.7271645189119884],[116,-63,77,-0.7269133209198753],[116,-63,78,-0.7266645704810909],[116,-63,79,-0.726418271562411],[116,-62,64,-0.7304841650182253],[116,-62,65,-0.7302035000225706],[116,-62,66,-0.7299252274164119],[116,-62,67,-0.7296493523189442],[116,-62,68,-0.7293758797561585],[116,-62,69,-0.729104814660427],[116,-62,70,-0.7288361618700745],[116,-62,71,-0.7285699261289543],[116,-62,72,-0.7283061120860214],[116,-62,73,-0.728044724294921],[116,-62,74,-0.7277857672135488],[116,-62,75,-0.7275292452036408],[116,-62,76,-0.7272751625303513],[116,-62,77,-0.7270235233618311],[116,-62,78,-0.7267743317688109],[116,-62,79,-0.726527591724178],[116,-61,64,-0.7306002636626417],[116,-61,65,-0.7303191582284521],[116,-61,66,-0.7300404451310591],[116,-61,67,-0.7297641294957578],[116,-61,68,-0.7294902163546392],[116,-61,69,-0.729218710646177],[116,-61,70,-0.7289496172147991],[116,-61,71,-0.7286829408104618],[116,-61,72,-0.7284186860882237],[116,-61,73,-0.7281568576078351],[116,-61,74,-0.7278974598332965],[116,-61,75,-0.7276404971324488],[116,-61,76,-0.7273859737765518],[116,-61,77,-0.7271338939398616],[116,-61,78,-0.726884261699214],[116,-61,79,-0.7266370810336016],[116,-60,64,-0.7307165239724849],[116,-60,65,-0.7304349786306059],[116,-60,66,-0.7301558255712656],[116,-60,67,-0.7298790699258499],[116,-60,68,-0.7296047167325428],[116,-60,69,-0.7293327709359122],[116,-60,70,-0.7290632373864807],[116,-60,71,-0.7287961208403002],[116,-60,72,-0.7285314259585263],[116,-60,73,-0.7282691573070061],[116,-60,74,-0.7280093193558379],[116,-60,75,-0.7277519164789605],[116,-60,76,-0.7274969529537321],[116,-60,77,-0.727244432960507],[116,-60,78,-0.7269943605822194],[116,-60,79,-0.7267467398039598],[116,-59,64,-0.7308329462054155],[116,-59,65,-0.7305509614903162],[116,-59,66,-0.7302713690019192],[116,-59,67,-0.7299941738776944],[116,-59,68,-0.7297193811619107],[116,-59,69,-0.7294469958052221],[116,-59,70,-0.7291770226642381],[116,-59,71,-0.7289094665010994],[116,-59,72,-0.7286443319830503],[116,-59,73,-0.7283816236820279],[116,-59,74,-0.7281213460742204],[116,-59,75,-0.7278635035396579],[116,-59,76,-0.7276081003617891],[116,-59,77,-0.7273551407270602],[116,-59,78,-0.7271046287244962],[116,-59,79,-0.7268565683452792],[116,-58,64,-0.7309495306159297],[116,-58,65,-0.7306671070656988],[116,-58,66,-0.7303870756847377],[116,-58,67,-0.7301094416165921],[116,-58,68,-0.7298342099116075],[116,-58,69,-0.7295613855265168],[116,-58,70,-0.7292909733240088],[116,-58,71,-0.7290229780723047],[116,-58,72,-0.7287574044447303],[116,-58,73,-0.7284942570193049],[116,-58,74,-0.7282335402782998],[116,-58,75,-0.7279752586078286],[116,-58,76,-0.7277194162974239],[116,-58,77,-0.7274660175396155],[116,-58,78,-0.7272150664295134],[116,-58,79,-0.7269665669643834],[116,-57,64,-0.7310662774553399],[116,-57,65,-0.730783415611683],[116,-57,66,-0.730502945878249],[116,-57,67,-0.7302248734046507],[116,-57,68,-0.7299492032473032],[116,-57,69,-0.729675940369009],[116,-57,70,-0.7294050896385293],[116,-57,71,-0.729136655830158],[116,-57,72,-0.7288706436232948],[116,-57,73,-0.7286070576020336],[116,-57,74,-0.7283459022547213],[116,-57,75,-0.7280871819735474],[116,-57,76,-0.7278309010541211],[116,-57,77,-0.7275770636950496],[116,-57,78,-0.7273256739975196],[116,-57,79,-0.7270767359648744],[116,-56,64,-0.7311831869717969],[116,-56,65,-0.7308998873800341],[116,-56,66,-0.7306189798378137],[116,-56,67,-0.7303404695008082],[116,-56,68,-0.7300643614314937],[116,-56,69,-0.7297906605987352],[116,-56,70,-0.7295193718773578],[116,-56,71,-0.7292505000477203],[116,-56,72,-0.7289840497952886],[116,-56,73,-0.7287200257102239],[116,-56,74,-0.7284584322869408],[116,-56,75,-0.7281992739236978],[116,-56,76,-0.7279425549221731],[116,-56,77,-0.7276882794870436],[116,-56,78,-0.727436451725566],[116,-56,79,-0.7271870756471542],[116,-55,64,-0.7313002594102709],[116,-55,65,-0.7310165226193329],[116,-55,66,-0.7307351778156057],[116,-55,67,-0.7304562301608127],[116,-55,68,-0.7301796847234832],[116,-55,69,-0.7299055464785369],[116,-55,70,-0.7296338203068542],[116,-55,71,-0.7293645109948517],[116,-55,72,-0.7290976232340534],[116,-55,73,-0.72883316162068],[116,-55,74,-0.7285711306552066],[116,-55,75,-0.7283115347419526],[116,-55,76,-0.7280543781886584],[116,-55,77,-0.727799665206063],[116,-55,78,-0.7275473999074862],[116,-55,79,-0.7272975863084046],[116,-54,64,-0.7314174950126016],[116,-54,65,-0.731133321575027],[116,-54,66,-0.7308515400606618],[116,-54,67,-0.7305721556372726],[116,-54,68,-0.7302951733794332],[116,-54,69,-0.7300205982681095],[116,-54,70,-0.7297484351902304],[116,-54,71,-0.7294786889382613],[116,-54,72,-0.729211364209777],[116,-54,73,-0.7289464656070499],[116,-54,74,-0.7286839976366077],[116,-54,75,-0.7284239647088235],[116,-54,76,-0.7281663711374923],[116,-54,77,-0.7279112211394076],[116,-54,78,-0.7276585188339453],[116,-54,79,-0.7274082682426375],[116,-53,64,-0.7315348940174852],[116,-53,65,-0.7312502844894175],[116,-53,66,-0.7309680668188699],[116,-53,67,-0.7306882461796439],[116,-53,68,-0.7304108276523494],[116,-53,69,-0.730135816223991],[116,-53,70,-0.7298632167875373],[116,-53,71,-0.7295930341414948],[116,-53,72,-0.7293252729894811],[116,-53,73,-0.7290599379398126],[116,-53,74,-0.7287970335050622],[116,-53,75,-0.7285365641016486],[116,-53,76,-0.7282785340494137],[116,-53,77,-0.7280229475711989],[116,-53,78,-0.7277698087924278],[116,-53,79,-0.7275191217406817],[116,-52,64,-0.7316524566604629],[116,-52,65,-0.7313674116016471],[116,-52,66,-0.7310847583329563],[116,-52,67,-0.7308045020342182],[116,-52,68,-0.7305266477920709],[116,-52,69,-0.730251200599549],[116,-52,70,-0.7299781653556525],[116,-52,71,-0.7297075468649219],[116,-52,72,-0.7294393498370091],[116,-52,73,-0.7291735788862663],[116,-52,74,-0.728910238531304],[116,-52,75,-0.7286493331945793],[116,-52,76,-0.7283908672019729],[116,-52,77,-0.7281348447823668],[116,-52,78,-0.727881270067225],[116,-52,79,-0.7276301470901702],[116,-51,64,-0.7317701831739698],[116,-51,65,-0.7314847031477495],[116,-51,66,-0.7312016148425351],[116,-51,67,-0.7309209234441718],[116,-51,68,-0.730642634045318],[116,-51,69,-0.7303667516450296],[116,-51,70,-0.7300932811483305],[116,-51,71,-0.7298222273657858],[116,-51,72,-0.7295535950130746],[116,-51,73,-0.7292873887105773],[116,-51,74,-0.7290236129829332],[116,-51,75,-0.7287622722586302],[116,-51,76,-0.7285033708695811],[116,-51,77,-0.7282469130506997],[116,-51,78,-0.7279929029394838],[116,-51,79,-0.7277413445755899],[116,-50,64,-0.7318880737873166],[116,-50,65,-0.7316021593606306],[116,-50,66,-0.7313186365840894],[116,-50,67,-0.7310375106495475],[116,-50,68,-0.7307587866556744],[116,-50,69,-0.7304824696075397],[116,-50,70,-0.7302085644161822],[116,-50,71,-0.7299370758981844],[116,-50,72,-0.7296680087752435],[116,-50,73,-0.7294013676737603],[116,-50,74,-0.7291371571243956],[116,-50,75,-0.7288753815616601],[116,-50,76,-0.7286160453234902],[116,-50,77,-0.7283591526508251],[116,-50,78,-0.7281047076871879],[116,-50,79,-0.727852714478262],[116,-49,64,-0.7320061287267111],[116,-49,65,-0.7317197804700906],[116,-49,66,-0.7314358237909936],[116,-49,67,-0.7311542638872756],[116,-49,68,-0.7308751058636088],[116,-49,69,-0.7305983547310677],[116,-49,70,-0.7303240154066982],[116,-49,71,-0.7300520927130911],[116,-49,72,-0.7297825913779548],[116,-49,73,-0.7295155160337014],[116,-49,74,-0.7292508712170055],[116,-49,75,-0.7289886613683929],[116,-49,76,-0.7287288908318158],[116,-49,77,-0.7284715638542307],[116,-49,78,-0.7282166845851791],[116,-49,79,-0.727964257076363],[116,-48,64,-0.7321243482152395],[116,-48,65,-0.731837566702804],[116,-48,66,-0.7315531766934935],[116,-48,67,-0.7312711833911549],[116,-48,68,-0.730991591906455],[116,-48,69,-0.7307144072564646],[116,-48,70,-0.7304396343642283],[116,-48,71,-0.7301672780583369],[116,-48,72,-0.7298973430725012],[116,-48,73,-0.7296298340451375],[116,-48,74,-0.7293647555189258],[116,-48,75,-0.7291021119403985],[116,-48,76,-0.7288419076595164],[116,-48,77,-0.7285841469292454],[116,-48,78,-0.7283288339051375],[116,-48,79,-0.7280759726449064],[116,-47,64,-0.7322427324729154],[116,-47,65,-0.7319555182823706],[116,-47,66,-0.7316706955187563],[116,-47,67,-0.7313882693919028],[116,-47,68,-0.7311082450184625],[116,-47,69,-0.730830627421494],[116,-47,70,-0.7305554215300315],[116,-47,71,-0.7302826321786586],[116,-47,72,-0.7300122641070796],[116,-47,73,-0.7297443219597066],[116,-47,74,-0.7294788102852172],[116,-47,75,-0.7292157335361426],[116,-47,76,-0.7289550960684438],[116,-47,77,-0.7286969021410885],[116,-47,78,-0.7284411559156316],[116,-47,79,-0.7281878614557906],[116,-46,64,-0.7323612817166683],[116,-46,65,-0.732073635429302],[116,-46,66,-0.7317883804908586],[116,-46,67,-0.7315055221171426],[116,-46,68,-0.7312250654307832],[116,-46,69,-0.7309470154608185],[116,-46,70,-0.7306713771422642],[116,-46,71,-0.7303981553156873],[116,-46,72,-0.7301273547267777],[116,-46,73,-0.7298589800259352],[116,-46,74,-0.7295930357678264],[116,-46,75,-0.7293295264109735],[116,-46,76,-0.72906845631733],[116,-46,77,-0.7288098297518573],[116,-46,78,-0.7285536508821051],[116,-46,79,-0.7282999237777876],[116,-45,64,-0.7324799961603305],[116,-45,65,-0.7321919183610097],[116,-45,66,-0.7319062318307731],[116,-45,67,-0.7316229417913905],[116,-45,68,-0.7313420533714596],[116,-45,69,-0.7310635716059887],[116,-45,70,-0.7307875014359664],[116,-45,71,-0.7305138477079349],[116,-45,72,-0.7302426151735615],[116,-45,73,-0.7299738084892249],[116,-45,74,-0.7297074322155725],[116,-45,75,-0.7294434908171098],[116,-45,76,-0.7291819886617743],[116,-45,77,-0.7289229300205133],[116,-45,78,-0.7286663190668641],[116,-45,79,-0.7284121598765287],[116,-44,64,-0.7325988760146878],[116,-44,65,-0.7323103672918552],[116,-44,66,-0.7320242497564191],[116,-44,67,-0.7317405286361065],[116,-44,68,-0.7314592090654738],[116,-44,69,-0.7311802960854914],[116,-44,70,-0.7309037946431123],[116,-44,71,-0.7306297095908448],[116,-44,72,-0.730358045686325],[116,-44,73,-0.7300888075919025],[116,-44,74,-0.7298219998741976],[116,-44,75,-0.7295576270036899],[116,-44,76,-0.7292956933542936],[116,-44,77,-0.7290362032029337],[116,-44,78,-0.7287791607291267],[116,-44,79,-0.7285245700145557],[116,-43,64,-0.732717921487466],[116,-43,65,-0.7324289824331363],[116,-43,66,-0.7321424344826497],[116,-43,67,-0.7318582828696806],[116,-43,68,-0.7315765327347358],[116,-43,69,-0.7312971891247385],[116,-43,70,-0.7310202569925972],[116,-43,71,-0.7307457411967784],[116,-43,72,-0.7304736465008779],[116,-43,73,-0.7302039775732079],[116,-43,74,-0.729936738986353],[116,-43,75,-0.7296719352167593],[116,-43,76,-0.7294095706443089],[116,-43,77,-0.7291496495518967],[116,-43,78,-0.7288921761250106],[116,-43,79,-0.7286371544513065],[116,-42,64,-0.732837132783319],[116,-42,65,-0.7325477639930762],[116,-42,66,-0.7322607862212394],[116,-42,67,-0.7319762047074212],[116,-42,68,-0.73169402459807],[116,-42,69,-0.731414250946053],[116,-42,70,-0.7311368887102253],[116,-42,71,-0.7308619427550025],[116,-42,72,-0.7305894178499323],[116,-42,73,-0.7303193186692802],[116,-42,74,-0.7300516497915872],[116,-42,75,-0.7297864156992573],[116,-42,76,-0.7295236207781324],[116,-42,77,-0.7292632693170693],[116,-42,78,-0.729005365507519],[116,-42,79,-0.7287499134431028],[116,-41,64,-0.7329565101038789],[116,-41,65,-0.7326667121768724],[116,-41,66,-0.7323793051809336],[116,-41,67,-0.7320942943616047],[116,-41,68,-0.7318116848712659],[116,-41,69,-0.7315314817687197],[116,-41,70,-0.731253690018759],[116,-41,71,-0.7309783144917398],[116,-41,72,-0.7307053599631526],[116,-41,73,-0.7304348311132084],[116,-41,74,-0.7301667325263956],[116,-41,75,-0.7299010686910675],[116,-41,76,-0.7296378439990181],[116,-41,77,-0.7293770627450573],[116,-41,78,-0.7291187291265919],[116,-41,79,-0.7288628472431997],[116,-40,64,-0.7330760536477359],[116,-40,65,-0.7327858271866775],[116,-40,66,-0.73249799156743],[116,-40,67,-0.7322125520414556],[116,-40,68,-0.7319295137670578],[116,-40,69,-0.7316488818089653],[116,-40,70,-0.7313706611378996],[116,-40,71,-0.7310948566301485],[116,-40,72,-0.7308214730671365],[116,-40,73,-0.7305505151350112],[116,-40,74,-0.7302819874242],[116,-40,75,-0.7300158944289975],[116,-40,76,-0.7297522405471408],[116,-40,77,-0.7294910300793853],[116,-40,78,-0.729232267229085],[116,-40,79,-0.7289759561017661],[116,-39,64,-0.7331957636104613],[116,-39,65,-0.7329051092216212],[116,-39,66,-0.7326168455833995],[116,-39,67,-0.7323309779531691],[116,-39,68,-0.7320475114951477],[116,-39,69,-0.7317664512799805],[116,-39,70,-0.7314878022843094],[116,-39,71,-0.7312115693903446],[116,-39,72,-0.7309377573854361],[116,-39,73,-0.7306663709616592],[116,-39,74,-0.7303974147153718],[116,-39,75,-0.7301308931468011],[116,-39,76,-0.7298668106596191],[116,-39,77,-0.7296051715605184],[116,-39,78,-0.7293459800587916],[116,-39,79,-0.7290892402659064],[116,-38,64,-0.7333156401845871],[116,-38,65,-0.7330245584777908],[116,-38,66,-0.7327358674284673],[116,-38,67,-0.7324495722998912],[116,-38,68,-0.7321656782621844],[116,-38,69,-0.7318841903919003],[116,-38,70,-0.7316051136715915],[116,-38,71,-0.7313284529893821],[116,-38,72,-0.7310542131385381],[116,-38,73,-0.7307823988170546],[116,-38,74,-0.7305130146272107],[116,-38,75,-0.7302460650751579],[116,-38,76,-0.7299815545704946],[116,-38,77,-0.729719487425842],[116,-38,78,-0.7294598678564235],[116,-38,79,-0.7292026999796395],[116,-37,64,-0.7334356835596569],[116,-37,65,-0.7331441751482815],[116,-37,66,-0.732855057299263],[116,-37,67,-0.7325683352817682],[116,-37,68,-0.7322840142718147],[116,-37,69,-0.7320020993518539],[116,-37,70,-0.7317225955103404],[116,-37,71,-0.7314455076413027],[116,-37,72,-0.7311708405439149],[116,-37,73,-0.7308985989220818],[116,-37,74,-0.7306287873839957],[116,-37,75,-0.7303614104417238],[116,-37,76,-0.7300964725107822],[116,-37,77,-0.7298339779097123],[116,-37,78,-0.72957393085966],[116,-37,79,-0.7293163354839503],[116,-36,64,-0.7335558939222124],[116,-36,65,-0.7332639594231831],[116,-36,66,-0.7329744153894079],[116,-36,67,-0.7326872670959357],[116,-36,68,-0.7324025197246702],[116,-36,69,-0.7321201783639523],[116,-36,70,-0.7318402480081287],[116,-36,71,-0.7315627335571239],[116,-36,72,-0.7312876398160102],[116,-36,73,-0.731014971494594],[116,-36,74,-0.730744733206972],[116,-36,75,-0.7304769294711178],[116,-36,76,-0.730211564708457],[116,-36,77,-0.7299486432434428],[116,-36,78,-0.7296881693031352],[116,-36,79,-0.729430147016775],[116,-35,64,-0.7336762714557815],[116,-35,65,-0.7333839114895682],[116,-35,66,-0.7330939418895015],[116,-35,67,-0.7328063679365034],[116,-35,68,-0.7325211948183541],[116,-35,69,-0.7322384276292744],[116,-35,70,-0.7319580713694941],[116,-35,71,-0.7316801309448243],[116,-35,72,-0.7314046111662268],[116,-35,73,-0.7311315167494006],[116,-35,74,-0.7308608523143372],[116,-35,75,-0.7305926223849086],[116,-35,76,-0.7303268313884412],[116,-35,77,-0.7300634836552913],[116,-35,78,-0.7298025834184244],[116,-35,79,-0.7295441348129893],[116,-34,64,-0.7337968163409279],[116,-34,65,-0.7335040315315413],[116,-34,66,-0.7332136369871726],[116,-34,67,-0.7329256379946072],[116,-34,68,-0.7326400397474918],[116,-34,69,-0.7323568473459182],[116,-34,70,-0.7320760657959903],[116,-34,71,-0.7317977000093956],[116,-34,72,-0.7315217548029769],[116,-34,73,-0.7312482348983163],[116,-34,74,-0.7309771449212921],[116,-34,75,-0.7307084894016652],[116,-34,76,-0.7304422727726542],[116,-34,77,-0.7301784993705098],[116,-34,78,-0.7299171734340947],[116,-34,79,-0.7296582991044573],[116,-33,64,-0.7339175287552312],[116,-33,65,-0.7336243197302198],[116,-33,66,-0.733333500867059],[116,-33,67,-0.7330450774583881],[116,-33,68,-0.7327590547037113],[116,-33,69,-0.732475437708981],[116,-33,70,-0.7321942314861658],[116,-33,71,-0.7319154409528215],[116,-33,72,-0.7316390709316615],[116,-33,73,-0.7313651261501427],[116,-33,74,-0.7310936112400206],[116,-33,75,-0.7308245307369365],[116,-33,76,-0.7305578890799923],[116,-33,77,-0.7302936906113245],[116,-33,78,-0.7300319395756848],[116,-33,79,-0.7297726401200121],[116,-32,64,-0.7340384088733104],[116,-32,65,-0.733744776263756],[116,-32,66,-0.73345353371083],[116,-32,67,-0.7331646865130154],[116,-32,68,-0.7328782398756643],[116,-32,69,-0.7325941989105804],[116,-32,70,-0.7323125686355876],[116,-32,71,-0.7320333539741],[116,-32,72,-0.7317565597546931],[116,-32,73,-0.731482190710689],[116,-32,74,-0.7312102514797114],[116,-32,75,-0.7309407466032735],[116,-32,76,-0.730673680526351],[116,-32,77,-0.7304090575969582],[116,-32,78,-0.7301468820657261],[116,-32,79,-0.7298871580854767],[116,-31,64,-0.7341594568668023],[116,-31,65,-0.7338654013073169],[116,-31,66,-0.7335737356971659],[116,-31,67,-0.7332844653406658],[116,-31,68,-0.732997595449007],[116,-31,69,-0.7327131311398353],[116,-31,70,-0.7324310774368195],[116,-31,71,-0.7321514392692233],[116,-31,72,-0.7318742214714749],[116,-31,73,-0.731599428782752],[116,-31,74,-0.7313270658465381],[116,-31,75,-0.7310571372102083],[116,-31,76,-0.7307896473246043],[116,-31,77,-0.7305246005436083],[116,-31,78,-0.7302620011237232],[116,-31,79,-0.7300018532236447],[116,-30,64,-0.7342806729044131],[116,-30,65,-0.7339861950331354],[116,-30,66,-0.7336941070018087],[116,-30,67,-0.7334044141205744],[116,-30,68,-0.7331171216064505],[116,-30,69,-0.7328322345829154],[116,-30,70,-0.7325497580794735],[116,-30,71,-0.7322696970312284],[116,-30,72,-0.7319920562784514],[116,-30,73,-0.7317168405661671],[116,-30,74,-0.7314440545437089],[116,-30,75,-0.7311737027643056],[116,-30,76,-0.7309057896846551],[116,-30,77,-0.7306403196644996],[116,-30,78,-0.7303772969662041],[116,-30,79,-0.73011672575433],[116,-29,64,-0.7344020571519051],[116,-29,65,-0.7341071576104962],[116,-29,66,-0.7338146477975498],[116,-29,67,-0.7335245330290214],[116,-29,68,-0.7332368185277477],[116,-29,69,-0.732951509423029],[116,-29,70,-0.7326686107501966],[116,-29,71,-0.7323881274501838],[116,-29,72,-0.7321100643690956],[116,-29,73,-0.7318344262577945],[116,-29,74,-0.7315612177714543],[116,-29,75,-0.7312904434691485],[116,-29,76,-0.7310221078134223],[116,-29,77,-0.7307562151698686],[116,-29,78,-0.7304927698067061],[116,-29,79,-0.7302317758943531],[116,-28,64,-0.7345236097720838],[116,-28,65,-0.7342282892057237],[116,-28,66,-0.7339353582542156],[116,-28,67,-0.7336448222393191],[116,-28,68,-0.7333566863896794],[116,-28,69,-0.7330709558404094],[116,-28,70,-0.7327876356326568],[116,-28,71,-0.7325067307131756],[116,-28,72,-0.7322282459338951],[116,-28,73,-0.7319521860515058],[116,-28,74,-0.7316785557270131],[116,-28,75,-0.7314073595253254],[116,-28,76,-0.7311386019148267],[116,-28,77,-0.7308722872669514],[116,-28,78,-0.7306084198557632],[116,-28,79,-0.7303470038575283],[116,-27,64,-0.7346453309248481],[116,-27,65,-0.7343495899822321],[116,-27,66,-0.734056238538719],[116,-27,67,-0.7337652819218625],[116,-27,68,-0.7334767253661059],[116,-27,69,-0.7331905740123652],[116,-27,70,-0.7329068329075947],[116,-27,71,-0.7326255070043594],[116,-27,72,-0.7323466011604032],[116,-27,73,-0.732070120138235],[116,-27,74,-0.7317960686046829],[116,-27,75,-0.7315244511304808],[116,-27,76,-0.7312552721898421],[116,-27,77,-0.730988536160034],[116,-27,78,-0.7307242473209561],[116,-27,79,-0.7304624098547138],[116,-26,64,-0.7347672207671706],[116,-26,65,-0.7344710601005057],[116,-26,66,-0.7341772888150391],[116,-26,67,-0.7338859122441087],[116,-26,68,-0.7335969356279464],[116,-26,69,-0.7333103641132606],[116,-26,70,-0.7330262027528027],[116,-26,71,-0.7327444565049387],[116,-26,72,-0.7324651302332179],[116,-26,73,-0.7321882287059579],[116,-26,74,-0.7319137565957998],[116,-26,75,-0.7316417184792943],[116,-26,76,-0.7313721188364745],[116,-26,77,-0.7311049620504314],[116,-26,78,-0.7308402524068917],[116,-26,79,-0.730577994093791],[116,-25,64,-0.7348892794531202],[116,-25,65,-0.7345926997181206],[116,-25,66,-0.7342985092442433],[116,-25,67,-0.7340067133706001],[116,-25,68,-0.7337173173432008],[116,-25,69,-0.733430326314537],[116,-25,70,-0.7331457453431469],[116,-25,71,-0.7328635793931878],[116,-25,72,-0.7325838333340045],[116,-25,73,-0.7323065119397141],[116,-25,74,-0.732031619888761],[116,-25,75,-0.7317591617635026],[116,-25,76,-0.731489142049784],[116,-25,77,-0.7312215651365098],[116,-25,78,-0.7309564353152249],[116,-25,79,-0.7306937567796865],[116,-24,64,-0.735011507133841],[116,-24,65,-0.7347145089897248],[116,-24,66,-0.734419899984467],[116,-24,67,-0.7341276854629427],[116,-24,68,-0.7338378706769301],[116,-24,69,-0.733550460784693],[116,-24,70,-0.7332654608505471],[116,-24,71,-0.732982875844431],[116,-24,72,-0.732702710641475],[116,-24,73,-0.7324249700215864],[116,-24,74,-0.7321496586690028],[116,-24,75,-0.7318767811718803],[116,-24,76,-0.7316063420218645],[116,-24,77,-0.7313383456136661],[116,-24,78,-0.7310727962446386],[116,-24,79,-0.7308096981143515],[116,-23,64,-0.7351339039576037],[116,-23,65,-0.734836488067089],[116,-23,66,-0.7345414611909644],[116,-23,67,-0.7342488286798582],[116,-23,68,-0.7339585957913063],[116,-23,69,-0.7336707676893353],[116,-23,70,-0.7333853494440274],[116,-23,71,-0.7331023460310933],[116,-23,72,-0.732821762331439],[116,-23,73,-0.7325436031307515],[116,-23,74,-0.7322678731190533],[116,-23,75,-0.7319945768902882],[116,-23,76,-0.7317237189418944],[116,-23,77,-0.7314553036743783],[116,-23,78,-0.7311893353908934],[116,-23,79,-0.7309258182968125],[116,-22,64,-0.7352564700697926],[116,-22,65,-0.7349586370990935],[116,-22,66,-0.7346631930160956],[116,-22,67,-0.73437014317717],[116,-22,68,-0.7340794928456],[116,-22,69,-0.7337912471911645],[116,-22,70,-0.7335054112897033],[116,-22,71,-0.7332219901226874],[116,-22,72,-0.7329409885767897],[116,-22,73,-0.7326624114434672],[116,-22,74,-0.7323862634185172],[116,-22,75,-0.7321125491016619],[116,-22,76,-0.7318412729961223],[116,-22,77,-0.731572439508192],[116,-22,78,-0.7313060529468145],[116,-22,79,-0.7310421175231572],[116,-21,64,-0.7353792056128916],[116,-21,65,-0.7350809562317142],[116,-21,66,-0.7347850956093125],[116,-21,67,-0.7344916291077896],[116,-21,68,-0.7342005619961663],[116,-21,69,-0.733911899449963],[116,-21,70,-0.7336256465507665],[116,-21,71,-0.7333418082857996],[116,-21,72,-0.7330603895474908],[116,-21,73,-0.7327813951330578],[116,-21,74,-0.7325048297440627],[116,-21,75,-0.7322306979859969],[116,-21,76,-0.7319590043678545],[116,-21,77,-0.7316897533017066],[116,-21,78,-0.7314229491022781],[116,-21,79,-0.7311585959865213],[116,-20,64,-0.7355021107265358],[116,-20,65,-0.7352034456080745],[116,-20,66,-0.7349071691172105],[116,-20,67,-0.7346132866217684],[116,-20,68,-0.7343218033964957],[116,-20,69,-0.7340327246226446],[116,-20,70,-0.7337460553875383],[116,-20,71,-0.7334618006841411],[116,-20,72,-0.7331799654106275],[116,-20,73,-0.7329005543699658],[116,-20,74,-0.732623572269473],[116,-20,75,-0.7323490237204],[116,-20,76,-0.7320769132375051],[116,-20,77,-0.7318072452386266],[116,-20,78,-0.7315400240442619],[116,-20,79,-0.7312752538771389],[116,-19,64,-0.7356251855474905],[116,-19,65,-0.7353261053684241],[116,-19,66,-0.7350294136835076],[116,-19,67,-0.7347351158662763],[116,-19,68,-0.7344432171971941],[116,-19,69,-0.7341537228632345],[116,-19,70,-0.7338666379574471],[116,-19,71,-0.7335819674785271],[116,-19,72,-0.7332997163303852],[116,-19,73,-0.7330198893217301],[116,-19,74,-0.7327424911656244],[116,-19,75,-0.7324675264790685],[116,-19,76,-0.7321949997825749],[116,-19,77,-0.73192491549974],[116,-19,78,-0.731657277956824],[116,-19,79,-0.7313920913823216],[116,-18,64,-0.7357484302096744],[116,-18,65,-0.7354489356501619],[116,-18,66,-0.7351518294490667],[116,-18,67,-0.7348571169856244],[116,-18,68,-0.7345648035460047],[116,-18,69,-0.7342748943228918],[116,-18,70,-0.7339873944150513],[116,-18,71,-0.7337023088268995],[116,-18,72,-0.7334196424680723],[116,-18,73,-0.73313940015301],[116,-18,74,-0.7328615866005097],[116,-18,75,-0.7325862064333122],[116,-18,76,-0.732313264177674],[116,-18,77,-0.7320427642629408],[116,-18,78,-0.7317747110211258],[116,-18,79,-0.7315091086864811],[116,-17,64,-0.7358718448441384],[116,-17,65,-0.7355719365878147],[116,-17,66,-0.7352744165518749],[116,-17,67,-0.7349792901212442],[116,-17,68,-0.7346865625877872],[116,-17,69,-0.7343962391498884],[116,-17,70,-0.7341083249120186],[116,-17,71,-0.7338228248843051],[116,-17,72,-0.7335397439820994],[116,-17,73,-0.7332590870255622],[116,-17,74,-0.732980858739216],[116,-17,75,-0.7327050637515319],[116,-17,76,-0.7324317065945009],[116,-17,77,-0.732160791703208],[116,-17,78,-0.73189232341541],[116,-17,79,-0.731626305971107],[116,-16,64,-0.7359954295791163],[116,-16,65,-0.7356951083130892],[116,-16,66,-0.7353971751270953],[116,-16,67,-0.7351016354117392],[116,-16,68,-0.7348084944645692],[116,-16,69,-0.7345177574896598],[116,-16,70,-0.7342294295971769],[116,-16,71,-0.7339435158029478],[116,-16,72,-0.7336600210280297],[116,-16,73,-0.7333789500982935],[116,-16,74,-0.733100307743977],[116,-16,75,-0.7328240985992717],[116,-16,76,-0.7325503272018934],[116,-16,77,-0.7322789979926566],[116,-16,78,-0.7320101153150522],[116,-16,79,-0.731743683414819],[116,-15,64,-0.7361191845400129],[116,-15,65,-0.7358184509548578],[116,-15,66,-0.735520105307053],[116,-15,67,-0.7352241529928704],[116,-15,68,-0.7349305993155324],[116,-15,69,-0.7346394494847924],[116,-15,70,-0.7343507086165006],[116,-15,71,-0.7340643817321745],[116,-15,72,-0.733780473758566],[116,-15,73,-0.7334989895272462],[116,-15,74,-0.7332199337741586],[116,-15,75,-0.7329433111392043],[116,-15,76,-0.7326691261658146],[116,-15,77,-0.7323973833005237],[116,-15,78,-0.732128086892547],[116,-15,79,-0.7318612411933523],[116,-14,64,-0.7362431098493888],[116,-14,65,-0.7359419646391453],[116,-14,66,-0.7356432072212207],[116,-14,67,-0.7353468429975437],[116,-14,68,-0.7350528772769992],[116,-14,69,-0.734761315275009],[116,-14,70,-0.7344721621130974],[116,-14,71,-0.7341854228184608],[116,-14,72,-0.7339011023235362],[116,-14,73,-0.7336192054655847],[116,-14,74,-0.7333397369862444],[116,-14,75,-0.7330627015311172],[116,-14,76,-0.7327881036493389],[116,-14,77,-0.7325159477931544],[116,-14,78,-0.7322462383174937],[116,-14,79,-0.7319789794795437],[116,-13,64,-0.7363672056270124],[116,-13,65,-0.7360656494891806],[116,-13,66,-0.7357664809962716],[116,-13,67,-0.7354697055558603],[116,-13,68,-0.7351753284824836],[116,-13,69,-0.7348833549972206],[116,-13,70,-0.7345937902272588],[116,-13,71,-0.7343066392054634],[116,-13,72,-0.7340219068699456],[116,-13,73,-0.7337395980636463],[116,-13,74,-0.7334597175338885],[116,-13,75,-0.7331822699319639],[116,-13,76,-0.7329072598127041],[116,-13,77,-0.7326346916340535],[116,-13,78,-0.7323645697566473],[116,-13,79,-0.7320968984433828],[116,-12,64,-0.7364914719898468],[116,-12,65,-0.7361895056253821],[116,-12,66,-0.7358899267560646],[116,-12,67,-0.7355927407951038],[116,-12,68,-0.7352979530626776],[116,-12,69,-0.7350055687855119],[116,-12,70,-0.7347155930964464],[116,-12,71,-0.7344280310340049],[116,-12,72,-0.734142887541962],[116,-12,73,-0.7338601674689278],[116,-12,74,-0.7335798755679002],[116,-12,75,-0.7333020164958506],[116,-12,76,-0.7330265948132957],[116,-12,77,-0.7327536149838707],[116,-12,78,-0.7324830813739055],[116,-12,79,-0.7322149982519978],[116,-11,64,-0.7366159090520352],[116,-11,65,-0.736313533165345],[116,-11,66,-0.7360135446216307],[116,-11,67,-0.735715948839726],[116,-11,68,-0.7354207511454378],[116,-11,69,-0.7351279567711284],[116,-11,70,-0.7348375708552792],[116,-11,71,-0.7345495984420611],[116,-11,72,-0.7342640444809022],[116,-11,73,-0.7339809138260712],[116,-11,74,-0.7337002112362304],[116,-11,75,-0.7334219413740211],[116,-11,76,-0.7331461088056348],[116,-11,77,-0.732872718000387],[116,-11,78,-0.7326017733302934],[116,-11,79,-0.7323332790696417],[116,-10,64,-0.7367405169249529],[116,-10,65,-0.7364377322238921],[116,-10,66,-0.7361373347112251],[116,-10,67,-0.7358393298113979],[116,-10,68,-0.7355437228558364],[116,-10,69,-0.7352505190825275],[116,-10,70,-0.7349597236355833],[116,-10,71,-0.7346713415648117],[116,-10,72,-0.7343853778252835],[116,-10,73,-0.7341018372769152],[116,-10,74,-0.7338207246840235],[116,-10,75,-0.7335420447149089],[116,-10,76,-0.733265801941428],[116,-10,77,-0.7329920008385664],[116,-10,78,-0.7327206457840154],[116,-10,79,-0.7324517410577436],[116,-9,64,-0.7368652957171864],[116,-9,65,-0.7365621029130534],[116,-9,66,-0.7362612971403054],[116,-9,67,-0.7359628838289898],[116,-9,68,-0.73566686831614],[116,-9,69,-0.7353732558453566],[116,-9,70,-0.7350820515663721],[116,-9,71,-0.7347932605346197],[116,-9,72,-0.7345068877108022],[116,-9,73,-0.7342229379604742],[116,-9,74,-0.7339414160535955],[116,-9,75,-0.733662326664116],[116,-9,76,-0.7333856743695468],[116,-9,77,-0.7331114636505338],[116,-9,78,-0.7328396988904339],[116,-9,79,-0.7325703843748864],[116,-8,64,-0.7369902455345558],[116,-8,65,-0.7366866453420879],[116,-8,66,-0.7363854320215546],[116,-8,67,-0.7360866110085929],[116,-8,68,-0.7357901876458328],[116,-8,69,-0.7354961671824773],[116,-8,70,-0.7352045547738678],[116,-8,71,-0.734915355481053],[116,-8,72,-0.7346285742703565],[116,-8,73,-0.7343442160129602],[116,-8,74,-0.7340622854844567],[116,-8,75,-0.7337827873644345],[116,-8,76,-0.7335057262360496],[116,-8,77,-0.7332311065855976],[116,-8,78,-0.7329589328020911],[116,-8,79,-0.7326892091768304],[116,-7,64,-0.7371153664800936],[116,-7,65,-0.7368113596174632],[116,-7,66,-0.7365097394648596],[116,-7,67,-0.7362105114634983],[116,-7,68,-0.7359136809615942],[116,-7,69,-0.7356192532139421],[116,-7,70,-0.735327233381481],[116,-7,71,-0.7350376265308638],[116,-7,72,-0.7347504376340247],[116,-7,73,-0.7344656715677615],[116,-7,74,-0.7341833331132898],[116,-7,75,-0.7339034269558261],[116,-7,76,-0.7336259576841604],[116,-7,77,-0.7333509297902284],[116,-7,78,-0.733078347668688],[116,-7,79,-0.7328082156164906],[116,-6,64,-0.7372406586540965],[116,-6,65,-0.7369362458429067],[116,-6,66,-0.7366342195773633],[116,-6,67,-0.7363345853042487],[116,-6,68,-0.7360373483773517],[116,-6,69,-0.7357425140570473],[116,-6,70,-0.7354500875098614],[116,-6,71,-0.73516007380804],[116,-6,72,-0.7348724779291166],[116,-6,73,-0.7345873047554949],[116,-6,74,-0.7343045590740022],[116,-6,75,-0.7340242455754726],[116,-6,76,-0.7337463688543202],[116,-6,77,-0.73347093340811],[116,-6,78,-0.7331979436371354],[116,-6,79,-0.7329274038439888],[116,-5,64,-0.7373661221541117],[116,-5,65,-0.737061304119392],[116,-5,66,-0.7367588724634502],[116,-5,67,-0.7364588326386245],[116,-5,68,-0.7361611900042662],[116,-5,69,-0.7358659498263189],[116,-5,70,-0.7355731172768845],[116,-5,71,-0.7352826974337908],[116,-5,72,-0.73499469528016],[116,-5,73,-0.7347091157039909],[116,-5,74,-0.734425963497711],[116,-5,75,-0.7341452433577628],[116,-5,76,-0.7338669598841729],[116,-5,77,-0.7335911175801257],[116,-5,78,-0.7333177208515401],[116,-5,79,-0.7330467740066391],[116,-4,64,-0.7374917570749226],[116,-4,65,-0.7371865345451243],[116,-4,66,-0.7368836982247327],[116,-4,67,-0.7365832535716299],[116,-4,68,-0.7362852059507179],[116,-4,69,-0.7359895606334983],[116,-4,70,-0.7356963227976371],[116,-4,71,-0.7354054975265332],[116,-4,72,-0.7351170898088865],[116,-4,73,-0.7348311045382792],[116,-4,74,-0.7345475465127299],[116,-4,75,-0.7342664204342773],[116,-4,76,-0.7339877309085507],[116,-4,77,-0.7337114824443439],[116,-4,78,-0.7334376794531903],[116,-4,79,-0.7331663262489336],[116,-3,64,-0.7376175635086012],[116,-3,65,-0.7373119372155934],[116,-3,66,-0.737008696960103],[116,-3,67,-0.7367078482055442],[116,-3,68,-0.7364093963223586],[116,-3,69,-0.7361133465875938],[116,-3,70,-0.735819704184469],[116,-3,71,-0.7355284742019431],[116,-3,72,-0.7352396616342821],[116,-3,73,-0.7349532713806416],[116,-3,74,-0.7346693082446196],[116,-3,75,-0.7343877769338406],[116,-3,76,-0.7341086820595266],[116,-3,77,-0.7338320281360693],[116,-3,78,-0.7335578195806068],[116,-3,79,-0.733286060712594],[116,-2,64,-0.737743541544486],[116,-2,65,-0.7374375122235513],[116,-2,66,-0.7371338687657112],[116,-2,67,-0.7368326166399009],[116,-2,68,-0.7365337612220895],[116,-2,69,-0.7362373077948596],[116,-2,70,-0.7359432615469721],[116,-2,71,-0.7356516275729341],[116,-2,72,-0.7353624108725675],[116,-2,73,-0.7350756163505895],[116,-2,74,-0.7347912488161672],[116,-2,75,-0.7345093129825],[116,-2,76,-0.7342298134663914],[116,-2,77,-0.7339527547878216],[116,-2,78,-0.7336781413695225],[116,-2,79,-0.7334059775365496],[116,-1,64,-0.7378696912692053],[116,-1,65,-0.737563259659035],[116,-1,66,-0.7372592137349887],[116,-1,67,-0.7369575589715103],[116,-1,68,-0.7366583007500849],[116,-1,69,-0.7363614443588185],[116,-1,70,-0.736066994992002],[116,-1,71,-0.7357749577496803],[116,-1,72,-0.7354853376372189],[116,-1,73,-0.7351981395648868],[116,-1,74,-0.7349133683474081],[116,-1,75,-0.7346310287035468],[116,-1,76,-0.7343511252556777],[116,-1,77,-0.7340736625293579],[116,-1,78,-0.7337986449529036],[116,-1,79,-0.7335260768569601],[116,0,64,-0.7379960127666556],[116,0,65,-0.7376891796093458],[116,0,66,-0.737384731958626],[116,0,67,-0.7370826752944374],[116,0,68,-0.7367830150037692],[116,0,69,-0.7364857563802392],[116,0,70,-0.7361909046236571],[116,0,71,-0.7358984648395936],[116,0,72,-0.7356084420389475],[116,0,73,-0.7353208411375273],[116,0,74,-0.7350356669556041],[116,0,75,-0.7347529242174955],[116,0,76,-0.7344726175511365],[116,0,77,-0.7341947514876508],[116,0,78,-0.7339193304609279],[116,0,79,-0.7336463588071935],[116,1,64,-0.7381225061180535],[116,1,65,-0.7378152721591003],[116,1,66,-0.7375104235246251],[116,1,67,-0.7372079657000545],[116,1,68,-0.7369079040778701],[116,1,69,-0.7366102439571898],[116,1,70,-0.7363149905433304],[116,1,71,-0.7360221489473772],[116,1,72,-0.7357317241857507],[116,1,73,-0.7354437211797881],[116,1,74,-0.7351581447552963],[116,1,75,-0.7348749996421354],[116,1,76,-0.73459429047379],[116,1,77,-0.7343160217869399],[116,1,78,-0.7340401980210376],[116,1,79,-0.7337668235178776],[116,2,64,-0.7382491714019217],[116,2,65,-0.7379415373902167],[116,2,66,-0.7376362885182854],[116,2,67,-0.7373334302770269],[116,2,68,-0.7370329680644039],[116,2,69,-0.7367349071850222],[116,2,70,-0.7364392528496948],[116,2,71,-0.7361460101750098],[116,2,72,-0.735855184182898],[116,2,73,-0.735566779800214],[116,2,74,-0.7352808018582896],[116,2,75,-0.7349972550925163],[116,2,76,-0.7347161441419173],[116,2,77,-0.7344374735487181],[116,2,78,-0.7341612477579231],[116,2,79,-0.7338874711168859],[116,3,64,-0.7383760086940746],[116,3,65,-0.7380679753819009],[116,3,66,-0.7377623270221887],[116,3,67,-0.7374590691112981],[116,3,68,-0.7371582070526608],[116,3,69,-0.736859746156359],[116,3,70,-0.7365636916386895],[116,3,71,-0.7362700486217321],[116,3,72,-0.7359788221329164],[116,3,73,-0.7356900171046037],[116,3,74,-0.7354036383736385],[116,3,75,-0.7351196906809336],[116,3,76,-0.7348381786710394],[116,3,77,-0.7345591068917162],[116,3,78,-0.7342824797935101],[116,3,79,-0.7340083017293229],[116,4,64,-0.7385030180676707],[116,4,65,-0.7381945862106982],[116,4,66,-0.7378885391162524],[116,4,67,-0.7375848822861428],[116,4,68,-0.7372836211292577],[116,4,69,-0.7369847609611442],[116,4,70,-0.7366883070035712],[116,4,71,-0.7363942643840986],[116,4,72,-0.7361026381356433],[116,4,73,-0.7358134331960612],[116,4,74,-0.7355266544076996],[116,4,75,-0.7352423065169804],[116,4,76,-0.7349603941739709],[116,4,77,-0.7346809219319552],[116,4,78,-0.7344038942470104],[116,4,79,-0.7341293154775759],[116,5,64,-0.7386301995931911],[116,5,65,-0.7383213699504715],[116,5,66,-0.7380149248777073],[116,5,67,-0.7377108698821444],[116,5,68,-0.7374092103781164],[116,5,69,-0.7371099516866229],[116,5,70,-0.7368130990348932],[116,5,71,-0.7365186575559557],[116,5,72,-0.736226632288203],[116,5,73,-0.7359370281749747],[116,5,74,-0.7356498500641091],[116,5,75,-0.7353651027075262],[116,5,76,-0.7350827907607991],[116,5,77,-0.7348029187827249],[116,5,78,-0.7345254912349004],[116,5,79,-0.7342505124812929],[116,6,64,-0.7387575533384618],[116,6,65,-0.7384483266724247],[116,6,66,-0.7381414843811198],[116,6,67,-0.7378370319772181],[116,6,68,-0.7375349748804856],[116,6,69,-0.7372353184173625],[116,6,70,-0.7369380678205272],[116,6,71,-0.7366432282284644],[116,6,72,-0.7363508046850312],[116,6,73,-0.7360608021390389],[116,6,74,-0.7357732254438056],[116,6,75,-0.7354880793567384],[116,6,76,-0.7352053685389053],[116,6,77,-0.7349250975546049],[116,6,78,-0.7346472708709438],[116,6,79,-0.7343718928574055],[116,7,64,-0.7388850793686322],[116,7,65,-0.7385754564450799],[116,7,66,-0.7382682176983711],[116,7,67,-0.7379633686465886],[116,7,68,-0.7376609147149192],[116,7,69,-0.7373608612352319],[116,7,70,-0.7370632134456419],[116,7,71,-0.7367679764900783],[116,7,72,-0.7364751554178512],[116,7,73,-0.7361847551832325],[116,7,74,-0.735896780645008],[116,7,75,-0.7356112365660612],[116,7,76,-0.7353281276129432],[116,7,77,-0.735047458355444],[116,7,78,-0.7347692332661684],[116,7,79,-0.7344934567201056],[116,8,64,-0.7390127777462275],[116,8,65,-0.7387027593343313],[116,8,66,-0.7383951248987088],[116,8,67,-0.7380898799628433],[116,8,68,-0.7377870299573295],[116,8,69,-0.7374865802194533],[116,8,70,-0.7371885359927548],[116,8,71,-0.7368929024265959],[116,8,72,-0.7365996845757276],[116,8,73,-0.7363088873998705],[116,8,74,-0.7360205157632677],[116,8,75,-0.7357345744342669],[116,8,76,-0.7354510680848916],[116,8,77,-0.7351700012904117],[116,8,78,-0.7348913785289193],[116,8,79,-0.7346152041808989],[116,9,64,-0.739140648531134],[116,9,65,-0.7388302354034287],[116,9,66,-0.7385222060487326],[116,9,67,-0.7382165659959166],[116,9,68,-0.7379133206809716],[116,9,69,-0.7376124754465879],[116,9,70,-0.7373140355417183],[116,9,71,-0.7370180061211459],[116,9,72,-0.7367243922450506],[116,9,73,-0.7364331988785906],[116,9,74,-0.7361444308914541],[116,9,75,-0.7358580930574419],[116,9,76,-0.7355741900540387],[116,9,77,-0.735292726461983],[116,9,78,-0.7350137067648437],[116,9,79,-0.7347371353485892],[116,10,64,-0.7392686917805853],[116,10,65,-0.738957884712965],[116,10,66,-0.73864946121238],[116,10,67,-0.7383434268130766],[116,10,68,-0.7380397869564295],[116,10,69,-0.7377385469905209],[116,10,70,-0.7374397121697045],[116,10,71,-0.7371432876541725],[116,10,72,-0.7368492785095222],[116,10,73,-0.7365576897063373],[116,10,74,-0.7362685261197394],[116,10,75,-0.7359817925289716],[116,10,76,-0.7356974936169677],[116,10,77,-0.7354156339699245],[116,10,78,-0.7351362180768759],[116,10,79,-0.7348592503292637],[116,11,64,-0.7393969075492139],[116,11,65,-0.7390857073209272],[116,11,66,-0.7387768904509785],[116,11,67,-0.7384704624789767],[116,11,68,-0.7381664288516678],[116,11,69,-0.7378647949225141],[116,11,70,-0.7375655659512579],[116,11,71,-0.7372687471034881],[116,11,72,-0.7369743434502078],[116,11,73,-0.7366823599674144],[116,11,74,-0.7363928015356516],[116,11,75,-0.7361056729395926],[116,11,76,-0.7358209788676098],[116,11,77,-0.7355387239113461],[116,11,78,-0.7352589125652901],[116,11,79,-0.7349815492263456],[116,12,64,-0.7395252958890299],[116,12,65,-0.7392137032826753],[116,12,66,-0.7389044938232239],[116,12,67,-0.738597673055634],[116,12,68,-0.7382932464320109],[116,12,69,-0.7379912193111844],[116,12,70,-0.7376915969582731],[116,12,71,-0.7373943845442511],[116,12,72,-0.7370995871455148],[116,12,73,-0.7368072097434637],[116,12,74,-0.7365172572240518],[116,12,75,-0.736229734377371],[116,12,76,-0.7359446458972208],[116,12,77,-0.735661996380679],[116,12,78,-0.7353817903276774],[116,12,79,-0.7351040321405714],[116,13,64,-0.7396538568494442],[116,13,65,-0.7393418726509654],[116,13,66,-0.7390322713852026],[116,13,67,-0.7387250586024519],[116,13,68,-0.7384202397601642],[116,13,69,-0.7381178202225256],[116,13,70,-0.737817805260018],[116,13,71,-0.7375202000489884],[116,13,72,-0.7372250096712148],[116,13,73,-0.7369322391134869],[116,13,74,-0.7366418932671572],[116,13,75,-0.7363539769277248],[116,13,76,-0.7360684947944043],[116,13,77,-0.7357854514696979],[116,13,78,-0.7355048514589692],[116,13,79,-0.7352266991700134],[116,14,64,-0.7397825904772447],[116,14,65,-0.739470215475926],[116,14,66,-0.73916022319037],[116,14,67,-0.7388526191761975],[116,14,68,-0.7385474088961936],[116,14,69,-0.7382445977198866],[116,14,70,-0.7379441909231103],[116,14,71,-0.7376461936875727],[116,14,72,-0.737350611100421],[116,14,73,-0.7370574481538229],[116,14,74,-0.7367667097445179],[116,14,75,-0.7364784006734005],[116,14,76,-0.7361925256450894],[116,14,77,-0.7359090892674989],[116,14,78,-0.7356280960514133],[116,14,79,-0.7353495504100573],[116,15,64,-0.739911496816651],[116,15,65,-0.739598731805112],[116,15,66,-0.7392883492896027],[116,15,67,-0.7389803548310553],[116,15,68,-0.7386747538975762],[116,15,69,-0.7383715518640239],[116,15,70,-0.7380707540115717],[116,15,71,-0.7377723655272761],[116,15,72,-0.7374763915036413],[116,15,73,-0.7371828369382012],[116,15,74,-0.7368917067330706],[116,15,75,-0.7366030056945273],[116,15,76,-0.7363167385325826],[116,15,77,-0.7360329098605516],[116,15,78,-0.7357515241946282],[116,15,79,-0.7354725859534547],[116,16,64,-0.7400405759092988],[116,16,65,-0.7397274216834906],[116,16,66,-0.7394166497311842],[116,16,67,-0.7391082656186115],[116,16,68,-0.7388022748191871],[116,16,69,-0.7384986827130873],[116,16,70,-0.7381974945868123],[116,16,71,-0.7378987156327544],[116,16,72,-0.7376023509487633],[116,16,73,-0.7373084055377268],[116,16,74,-0.7370168843071228],[116,16,75,-0.7367277920686011],[116,16,76,-0.7364411335375534],[116,16,77,-0.7361569133326845],[116,16,78,-0.7358751359755864],[116,16,79,-0.7355958058903079],[116,17,64,-0.740169827794225],[116,17,65,-0.739856285153424],[116,17,66,-0.7395451245607897],[116,17,67,-0.7392363515878396],[116,17,68,-0.738929971713284],[116,17,69,-0.7386259903226043],[116,17,70,-0.7383244127076152],[116,17,71,-0.7380252440660326],[116,17,72,-0.7377284895010392],[116,17,73,-0.7374341540208647],[116,17,74,-0.737142242538338],[116,17,75,-0.7368527598704693],[116,17,76,-0.736565710738019],[116,17,77,-0.73628109976507],[116,17,78,-0.7359989314786004],[116,17,79,-0.7357192103080549],[116,18,64,-0.740299252507921],[116,18,65,-0.7399853222547257],[116,18,66,-0.7396737738215394],[116,18,67,-0.7393646127851532],[116,18,68,-0.7390578446295599],[116,18,69,-0.7387534747455334],[116,18,70,-0.7384515084301904],[116,18,71,-0.7381519508865577],[116,18,72,-0.7378548072231388],[116,18,73,-0.7375600824534932],[116,18,74,-0.7372677814957891],[116,18,75,-0.7369779091723844],[116,18,76,-0.736690470209397],[116,18,77,-0.736405469236276],[116,18,78,-0.7361229107853748],[116,18,79,-0.735842799291522],[116,19,64,-0.7404288500843177],[116,19,65,-0.7401145330246428],[116,19,66,-0.7398025975539835],[116,19,67,-0.739493049254391],[116,19,68,-0.7391858936151285],[116,19,69,-0.7388811360322491],[116,19,70,-0.7385787818081588],[116,19,71,-0.7382788361511835],[116,19,72,-0.7379813041751344],[116,19,73,-0.7376861908988891],[116,19,74,-0.7373935012459423],[116,19,75,-0.7371032400439883],[116,19,76,-0.7368154120244909],[116,19,77,-0.7365300218222528],[116,19,78,-0.7362470739749919],[116,19,79,-0.7359665729229088],[116,20,64,-0.7405586205547708],[116,20,65,-0.7402439174978424],[116,20,66,-0.7399315957960868],[116,20,67,-0.7396216610368023],[116,20,68,-0.7393141187145089],[116,20,69,-0.7390089742305268],[116,20,70,-0.7387062328925382],[116,20,71,-0.7384058999141555],[116,20,72,-0.7381079804144857],[116,20,73,-0.7378124794177114],[116,20,74,-0.7375194018526424],[116,20,75,-0.7372287525522975],[116,20,76,-0.7369405362534733],[116,20,77,-0.7366547575963159],[116,20,78,-0.736371421123895],[116,20,79,-0.7360905312817724],[116,21,64,-0.7406885639481138],[116,21,65,-0.740373475706465],[116,21,66,-0.7400607685832826],[116,21,67,-0.7397504481710993],[116,21,68,-0.739442519969679],[116,21,69,-0.7391369893855957],[116,21,70,-0.7388338617317955],[116,21,71,-0.7385331422271644],[116,21,72,-0.7382348359960925],[116,21,73,-0.7379389480680558],[116,21,74,-0.7376454833771665],[116,21,75,-0.7373544467617552],[116,21,76,-0.7370658429639408],[116,21,77,-0.7367796766292001],[116,21,78,-0.7364959523059429],[116,21,79,-0.736214674445081],[116,22,64,-0.7408186802906355],[116,22,65,-0.7405032076801008],[116,22,66,-0.7401901159484497],[116,22,67,-0.7398794106934354],[116,22,68,-0.7395710974200527],[116,22,69,-0.7392651815401167],[116,22,70,-0.7389616683718245],[116,22,71,-0.7386605631393228],[116,22,72,-0.7383618709722728],[116,22,73,-0.7380655969054309],[116,22,74,-0.7377717458781997],[116,22,75,-0.73748032273421],[116,22,76,-0.73719133222089],[116,22,77,-0.736904778989036],[116,22,78,-0.7366206675923863],[116,22,79,-0.7363390024871908],[116,23,64,-0.7409489696061027],[116,23,65,-0.740633113445814],[116,23,66,-0.7403196379219352],[116,23,67,-0.7400085486374273],[116,23,68,-0.7396998511025028],[116,23,69,-0.7393935507342045],[116,23,70,-0.7390896528559683],[116,23,71,-0.7387881626971884],[116,23,72,-0.7384890853927846],[116,23,73,-0.7381924259827815],[116,23,74,-0.7378981894118594],[116,23,75,-0.737606380528937],[116,23,76,-0.7373170040867404],[116,23,77,-0.737030064741373],[116,23,78,-0.73674556705189],[116,23,79,-0.7364635154798678],[116,24,64,-0.7410794319157381],[116,24,65,-0.7407631930281189],[116,24,66,-0.7404493345315322],[116,24,67,-0.7401378620341327],[116,24,68,-0.739828781051338],[116,24,69,-0.7395220970054057],[116,24,70,-0.7392178152249967],[116,24,71,-0.738915940944741],[116,24,72,-0.7386164793048036],[116,24,73,-0.7383194353504648],[116,24,74,-0.738024814031671],[116,24,75,-0.7377326202026161],[116,24,76,-0.7374428586213115],[116,24,77,-0.7371555339491563],[116,24,78,-0.7368706507505107],[116,24,79,-0.7365882134922659],[116,25,64,-0.7412100672382732],[116,25,65,-0.740893446449034],[116,25,66,-0.7405792058025322],[116,25,67,-0.7402673509121035],[116,25,68,-0.7399578872983565],[116,25,69,-0.739650820388751],[116,25,70,-0.7393461555171598],[116,25,71,-0.7390438979234355],[116,25,72,-0.7387440527529764],[116,25,73,-0.7384466250563054],[116,25,74,-0.7381516197886221],[116,25,75,-0.7378590418093841],[116,25,76,-0.737568895881876],[116,25,77,-0.73728118667278],[116,25,78,-0.7369959187517497],[116,25,79,-0.7367130965909793],[116,26,64,-0.7413408755899333],[116,26,65,-0.7410238737280667],[116,26,66,-0.7407092517577114],[116,26,67,-0.7403970152973706],[116,26,68,-0.7400871698728309],[116,26,69,-0.7397797209167408],[116,26,70,-0.7394746737681721],[116,26,71,-0.7391720336721875],[116,26,72,-0.738871805779405],[116,26,73,-0.7385739951455781],[116,26,74,-0.7382786067311471],[116,26,75,-0.7379856454008206],[116,26,76,-0.7376951159231442],[116,26,77,-0.7374070229700715],[116,26,78,-0.7371213711165375],[116,26,79,-0.7368381648400275],[116,27,64,-0.7414718569844223],[116,27,65,-0.7411544748821977],[116,27,66,-0.7408394724173141],[116,27,67,-0.7405268552134285],[116,27,68,-0.7402166288014923],[116,27,69,-0.7399087986193295],[116,27,70,-0.7396033700111979],[116,27,71,-0.7393003482273567],[116,27,72,-0.7389997384236313],[116,27,73,-0.7387015456609933],[116,27,74,-0.7384057749051108],[116,27,75,-0.7381124310259309],[116,27,76,-0.7378215187972486],[116,27,77,-0.7375330428962763],[116,27,78,-0.7372470079032181],[116,27,79,-0.7369634183008391],[116,28,64,-0.7416030114329765],[116,28,65,-0.7412852499259351],[116,28,66,-0.7409698677991069],[116,28,67,-0.7406568706812893],[116,28,68,-0.7403462641085846],[116,28,69,-0.7400380535239791],[116,28,70,-0.7397322442769036],[116,28,71,-0.7394288416228011],[116,28,72,-0.7391278507226913],[116,28,73,-0.7388292766427504],[116,28,74,-0.7385331243538628],[116,28,75,-0.7382393987312014],[116,28,76,-0.7379481045537974],[116,28,77,-0.7376592465041107],[116,28,78,-0.7373728291676026],[116,28,79,-0.7370888570323056],[116,29,64,-0.741734338944341],[116,29,65,-0.7414161988712913],[116,29,66,-0.7411004379183559],[116,29,67,-0.740787061719459],[116,29,68,-0.7404760758158409],[116,29,69,-0.7401674856556364],[116,29,70,-0.7398612965934362],[116,29,71,-0.7395575138898539],[116,29,72,-0.7392561427110906],[116,29,73,-0.738957188128515],[116,29,74,-0.7386606551182139],[116,29,75,-0.7383665485605742],[116,29,76,-0.7380748732398514],[116,29,77,-0.7377856338437396],[116,29,78,-0.7374988349629459],[116,29,79,-0.7372144810907582],[116,30,64,-0.7418658395247939],[116,30,65,-0.7415473217278057],[116,30,66,-0.741231182787849],[116,30,67,-0.740917428343961],[116,30,68,-0.7406060639425065],[116,30,69,-0.7402970950367553],[116,30,70,-0.7399905269864451],[116,30,71,-0.7396863650573463],[116,30,72,-0.7393846144208288],[116,30,73,-0.7390852801534407],[116,30,74,-0.7387883672364591],[116,30,75,-0.7384938805554717],[116,30,76,-0.738201824899946],[116,30,77,-0.7379122049627986],[116,30,78,-0.7376250253399693],[116,30,79,-0.7373402905299897],[116,31,64,-0.7419975131781221],[116,31,65,-0.7416786185025219],[116,31,66,-0.7413621024178734],[116,31,67,-0.7410479705683131],[116,31,68,-0.7407362285053161],[116,31,69,-0.7404268816872746],[116,31,70,-0.7401199354790586],[116,31,71,-0.7398153951515839],[116,31,72,-0.7395132658813752],[116,31,73,-0.7392135527501471],[116,31,74,-0.7389162607443541],[116,31,75,-0.7386213947547726],[116,31,76,-0.738328959576069],[116,31,77,-0.7380389599063703],[116,31,78,-0.7377514003468368],[116,31,79,-0.7374662854012324],[116,32,64,-0.7421293599056755],[116,32,65,-0.7418100892000417],[116,32,66,-0.7414931968162692],[116,32,67,-0.7411786884035804],[116,32,68,-0.7408665695185472],[116,32,69,-0.7405568456246702],[116,32,70,-0.7402495220919394],[116,32,71,-0.7399446041964011],[116,32,72,-0.7396420971197227],[116,32,73,-0.7393420059487723],[116,32,74,-0.739044335675169],[116,32,75,-0.7387490911948649],[116,32,76,-0.7384562773077131],[116,32,77,-0.7381658987170382],[116,32,78,-0.7378779600292097],[116,32,79,-0.7375924657532104],[116,33,64,-0.7422613797063523],[116,33,65,-0.741941733822509],[116,33,66,-0.741624465988414],[116,33,67,-0.7413095818583607],[116,33,68,-0.7409970869940048],[116,33,69,-0.7406869868639412],[116,33,70,-0.7403792868432666],[116,33,71,-0.740073992213145],[116,33,72,-0.7397711081603726],[116,33,73,-0.7394706397769583],[116,33,74,-0.7391725920596729],[116,33,75,-0.7388769699096314],[116,33,76,-0.7385837781318612],[116,33,77,-0.738293021434872],[116,33,78,-0.7380047044302296],[116,33,79,-0.7377188316321244],[116,34,64,-0.7423935725765819],[116,34,65,-0.742073552369595],[116,34,66,-0.741755909937207],[116,34,67,-0.7414406509387688],[116,34,68,-0.7411277809410055],[116,34,69,-0.7408173054175936],[116,34,70,-0.7405092297487221],[116,34,71,-0.7402035592206596],[116,34,72,-0.7399002990253183],[116,34,73,-0.7395994542598344],[116,34,74,-0.7393010299261176],[116,34,75,-0.7390050309304329],[116,34,76,-0.7387114620829693],[116,34,77,-0.7384203280974097],[116,34,78,-0.7381316335905033],[116,34,79,-0.7378453830816356],[116,35,64,-0.7425259385103805],[116,35,65,-0.742205544838552],[116,35,66,-0.7418875286631235],[116,35,67,-0.7415718956484899],[116,35,68,-0.7412586513664321],[116,35,69,-0.7409478012956938],[116,35,70,-0.7406393508215433],[116,35,71,-0.7403333052353402],[116,35,72,-0.7400296697340997],[116,35,73,-0.7397284494200717],[116,35,74,-0.7394296493002919],[116,35,75,-0.7391332742861628],[116,35,76,-0.7388393291930223],[116,35,77,-0.7385478187397129],[116,35,78,-0.7382587475481561],[116,35,79,-0.7379721201429202],[116,36,64,-0.742658477499327],[116,36,65,-0.7423377112241892],[116,36,66,-0.7420193221641909],[116,36,67,-0.7417033159887567],[116,36,68,-0.7413896982747091],[116,36,69,-0.7410784745058456],[116,36,70,-0.7407696500725003],[116,36,71,-0.7404632302711099],[116,36,72,-0.7401592203037791],[116,36,73,-0.739857625277859],[116,36,74,-0.7395584502054979],[116,36,75,-0.739261700003223],[116,36,76,-0.7389673794915079],[116,36,77,-0.7386754933943431],[116,36,78,-0.7383860463388091],[116,36,79,-0.7380990428546446],[116,37,64,-0.7427911895325864],[116,37,65,-0.7424700515188974],[116,37,66,-0.7421512904360127],[116,37,67,-0.7418349119583725],[116,37,68,-0.741520921667827],[116,37,69,-0.7412093250532136],[116,37,70,-0.7409001275099182],[116,37,71,-0.7405933343394419],[116,37,72,-0.740288950748965],[116,37,73,-0.7399869818509263],[116,37,74,-0.7396874326625742],[116,37,75,-0.7393903081055471],[116,37,76,-0.7390956130054418],[116,37,77,-0.738803352091384],[116,37,78,-0.7385135299956006],[116,37,79,-0.7382261512529885],[116,38,64,-0.7429240745968859],[116,38,65,-0.7426025657126243],[116,38,66,-0.7422834334717442],[116,38,67,-0.7419666835536873],[116,38,68,-0.7416523215453177],[116,38,69,-0.7413403529404987],[116,38,70,-0.7410307831396544],[116,38,71,-0.7407236174493365],[116,38,72,-0.7404188610817873],[116,38,73,-0.7401165191545208],[116,38,74,-0.7398165966898714],[116,38,75,-0.7395190986145761],[116,38,76,-0.7392240297593424],[116,38,77,-0.7389313948584179],[116,38,78,-0.7386411985491634],[116,38,79,-0.738353445371622],[116,39,64,-0.7430571326765698],[116,39,65,-0.742735253792929],[116,39,66,-0.7424157512621469],[116,39,67,-0.7420986307686525],[116,39,68,-0.7417838979043093],[116,39,69,-0.7414715581679929],[116,39,70,-0.7411616169651521],[116,39,71,-0.7408540796073748],[116,39,72,-0.7405489513119529],[116,39,73,-0.7402462372014611],[116,39,74,-0.7399459423033071],[116,39,75,-0.7396480715493137],[116,39,76,-0.7393526297752855],[116,39,77,-0.7390596217205796],[116,39,78,-0.7387690520276786],[116,39,79,-0.7384809252417585],[116,40,64,-0.7431903637535833],[116,40,65,-0.7428681157449666],[116,40,66,-0.742548243795573],[116,40,67,-0.7422307535948044],[116,40,68,-0.7419156507395102],[116,40,69,-0.7416029407335638],[116,40,70,-0.7412926289874248],[116,40,71,-0.7409847208177038],[116,40,72,-0.7406792214467285],[116,40,73,-0.740376136002121],[116,40,74,-0.7400754695163496],[116,40,75,-0.7397772269263089],[116,40,76,-0.7394814130728882],[116,40,77,-0.7391880327005412],[116,40,78,-0.7388970904568593],[116,40,79,-0.738608590892139],[116,41,64,-0.7433237678074569],[116,41,65,-0.743001151551472],[116,41,66,-0.7426809110579492],[116,41,67,-0.7423630520212493],[116,41,68,-0.7420475800431929],[116,41,69,-0.7417345006326377],[116,41,70,-0.7414238192050396],[116,41,71,-0.7411155410820192],[116,41,72,-0.7408096714909251],[116,41,73,-0.7405062155644143],[116,41,74,-0.7402051783400017],[116,41,75,-0.7399065647596408],[116,41,76,-0.7396103796692927],[116,41,77,-0.7393166278184947],[116,41,78,-0.7390253138599342],[116,41,79,-0.7387364423490161],[116,42,64,-0.7434573448153607],[116,42,65,-0.7431343611928143],[116,42,66,-0.7428137530328314],[116,42,67,-0.7424955260347169],[116,42,68,-0.7421796858052487],[116,42,69,-0.7418662378582546],[116,42,70,-0.7415551876141729],[116,42,71,-0.7412465403996198],[116,42,72,-0.7409403014469522],[116,42,73,-0.740636475893848],[116,42,74,-0.7403350687828547],[116,42,75,-0.7400360850609725],[116,42,76,-0.7397395295792206],[116,42,77,-0.7394454070922072],[116,42,78,-0.7391537222577027],[116,42,79,-0.7388644796362082],[116,43,64,-0.7435910947520812],[116,43,65,-0.7432677446469735],[116,43,66,-0.7429467697013807],[116,43,67,-0.7426281756195373],[116,43,68,-0.7423119680131639],[116,43,69,-0.7419981524010442],[116,43,70,-0.7416867342085853],[116,43,71,-0.7413777187673849],[116,43,72,-0.7410711113147944],[116,43,73,-0.7407669169934987],[116,43,74,-0.7404651408510656],[116,43,75,-0.7401657878395276],[116,43,76,-0.7398688628149491],[116,43,77,-0.7395743705369964],[116,43,78,-0.7392823156685103],[116,43,79,-0.7389927027750747],[116,44,64,-0.7437250175900433],[116,44,65,-0.7434013018895633],[116,44,66,-0.7430799610423868],[116,44,67,-0.7427610007576634],[116,44,68,-0.7424444266520425],[116,44,69,-0.7421302442492491],[116,44,70,-0.7418184589796453],[116,44,71,-0.741509076179796],[116,44,72,-0.7412021010920337],[116,44,73,-0.7408975388640364],[116,44,74,-0.7405953945483787],[116,44,75,-0.7402956731021123],[116,44,76,-0.7399983793863337],[116,44,77,-0.739703518165754],[116,44,78,-0.7394110941082713],[116,44,79,-0.7391211117845399],[116,45,64,-0.743859113299288],[116,45,65,-0.7435350328938075],[116,45,66,-0.743213327032244],[116,45,67,-0.742894001428648],[116,45,68,-0.7425770617045829],[116,45,69,-0.7422625133887011],[116,45,70,-0.741950361916305],[116,45,71,-0.7416406126289136],[116,45,72,-0.7413332707738256],[116,45,73,-0.7410283415036996],[116,45,74,-0.7407258298761026],[116,45,75,-0.7404257408530922],[116,45,76,-0.7401280793007841],[116,45,77,-0.7398328499889205],[116,45,78,-0.7395400575904449],[116,45,79,-0.7392497066810685],[116,46,64,-0.7439933818475261],[116,46,65,-0.7436689376305944],[116,46,66,-0.7433468676450059],[116,46,67,-0.7430271776096975],[116,46,68,-0.7427098731511321],[116,46,69,-0.742394959802875],[116,46,70,-0.7420824430051551],[116,46,71,-0.7417723281044311],[116,46,72,-0.7414646203529546],[116,46,73,-0.7411593249083499],[116,46,74,-0.7408564468331639],[116,46,75,-0.7405559910944465],[116,46,76,-0.7402579625633186],[116,46,77,-0.7399623660145416],[116,46,78,-0.73966920612609],[116,46,79,-0.7393784874787197],[116,47,64,-0.7441278232001224],[116,47,65,-0.7438030160684608],[116,47,66,-0.7434805828523692],[116,47,67,-0.7431605292756562],[116,47,68,-0.7428428609696697],[116,47,69,-0.7425275834728735],[116,47,70,-0.7422147022304088],[116,47,71,-0.7419042225936595],[116,47,72,-0.7415961498198165],[116,47,73,-0.7412904890714564],[116,47,74,-0.740987245416092],[116,47,75,-0.7406864238257514],[116,47,76,-0.7403880291765486],[116,47,77,-0.7400920662482495],[116,47,78,-0.739798539723848],[116,47,79,-0.7395074541891313],[116,48,64,-0.7442624373200799],[116,48,65,-0.7439372681735762],[116,48,66,-0.7436144726236579],[116,48,67,-0.7432940563989903],[116,48,68,-0.7429760251357915],[116,48,69,-0.74266038437741],[116,48,70,-0.7423471395738845],[116,48,71,-0.7420362960815103],[116,48,72,-0.7417278591624035],[116,48,73,-0.741421833984079],[116,48,74,-0.7411182256190013],[116,48,75,-0.7408170390441644],[116,48,76,-0.7405182791406607],[116,48,77,-0.7402219506932487],[116,48,78,-0.7399280583899273],[116,48,79,-0.7396366068215026],[116,49,64,-0.744397224168094],[116,49,65,-0.7440716939097972],[116,49,66,-0.7437485369258775],[116,49,67,-0.743427758949842],[116,49,68,-0.743109365622765],[116,49,69,-0.7427933624928642],[116,49,70,-0.742479755015062],[116,49,71,-0.7421685485505509],[116,49,72,-0.7418597483663578],[116,49,73,-0.7415533596349224],[116,49,74,-0.7412493874336472],[116,49,75,-0.7409478367444782],[116,49,76,-0.7406487124534727],[116,49,77,-0.7403520193503688],[116,49,78,-0.740057762128157],[116,49,79,-0.7397659453826497],[116,50,64,-0.7445321837025367],[116,50,65,-0.7442062932386516],[116,50,66,-0.7438827757236994],[116,50,67,-0.7435616368960144],[116,50,68,-0.743242882401512],[116,50,69,-0.7429265177932651],[116,50,70,-0.7426125485310652],[116,50,71,-0.7423009799809877],[116,50,72,-0.741991817414956],[116,50,73,-0.7416850660103208],[116,50,74,-0.7413807308494089],[116,50,75,-0.7410788169191045],[116,50,76,-0.7407793291104169],[116,50,77,-0.7404822722180491],[116,50,78,-0.7401876509399714],[116,50,79,-0.7398954698769885],[116,51,64,-0.7446673158794409],[116,51,65,-0.7443410661193222],[116,51,66,-0.7440171889794444],[116,51,67,-0.7436956902029541],[116,51,68,-0.7433765754405933],[116,51,69,-0.7430598502502752],[116,51,70,-0.742745520096646],[116,51,71,-0.7424335903506496],[116,51,72,-0.7421240662890923],[116,51,73,-0.7418169530942211],[116,51,74,-0.7415122558532736],[116,51,75,-0.7412099795580583],[116,51,76,-0.7409101291045226],[116,51,77,-0.740612709292322],[116,51,78,-0.7403177248243924],[116,51,79,-0.7400251803065183],[116,52,64,-0.7448026206525543],[116,52,65,-0.7444760125087011],[116,52,66,-0.7441517766531374],[116,52,67,-0.7438299188338069],[116,52,68,-0.743510444706263],[116,52,69,-0.7431933598332452],[116,52,70,-0.7428786696842393],[116,52,71,-0.7425663796350439],[116,52,72,-0.7422564949673335],[116,52,73,-0.7419490208682378],[116,52,74,-0.7416439624298906],[116,52,75,-0.7413413246490114],[116,52,76,-0.7410411124264724],[116,52,77,-0.7407433305668674],[116,52,78,-0.7404479837780852],[116,52,79,-0.7401550766708765],[116,53,64,-0.744938097973316],[116,53,65,-0.7446111323613664],[116,53,66,-0.7442865387024833],[116,53,67,-0.7439643227493926],[116,53,68,-0.7436444901624446],[116,53,69,-0.7433270465091895],[116,53,70,-0.7430119972639387],[116,53,71,-0.7426993478073309],[116,53,72,-0.7423891034258945],[116,53,73,-0.7420812693116278],[116,53,74,-0.7417758505615472],[116,53,75,-0.741472852177269],[116,53,76,-0.7411722790645764],[116,53,77,-0.7408741360329885],[116,53,78,-0.7405784277953329],[116,53,79,-0.7402851589673143],[116,54,64,-0.7450737477908796],[116,54,65,-0.7447464256296055],[116,54,66,-0.7444214750828911],[116,54,67,-0.7440989019082299],[116,54,68,-0.7437787117707538],[116,54,69,-0.7434609102428096],[116,54,70,-0.7431455028035197],[116,54,71,-0.7428324948383475],[116,54,72,-0.7425218916386618],[116,54,73,-0.7422136984013149],[116,54,74,-0.741907920228192],[116,54,75,-0.7416045621257923],[116,54,76,-0.7413036290047961],[116,54,77,-0.7410051256796344],[116,54,78,-0.7407090568680605],[116,54,79,-0.7404154271907191],[116,55,64,-0.7452095700520891],[116,55,65,-0.7448818922633894],[116,55,66,-0.744556585747448],[116,55,67,-0.7442336562665104],[116,55,68,-0.743913109490475],[116,55,69,-0.7435949509964701],[116,55,70,-0.7432791862684146],[116,55,71,-0.7429658206965828],[116,55,72,-0.7426548595771687],[116,55,73,-0.7423463081118644],[116,55,74,-0.7420401714074102],[116,55,75,-0.7417364544751739],[116,55,76,-0.7414351622307198],[116,55,77,-0.7411362994933762],[116,55,78,-0.7408398709858095],[116,55,79,-0.7405458813335906],[116,56,64,-0.7453455647015335],[116,56,65,-0.7450175322104299],[116,56,66,-0.744691870646976],[116,56,67,-0.7443685857781542],[116,56,68,-0.7440476832786149],[116,56,69,-0.7437291687302532],[116,56,70,-0.7434130476217689],[116,56,71,-0.7430993253482329],[116,56,72,-0.7427880072106501],[116,56,73,-0.7424790984155386],[116,56,74,-0.7421726040744786],[116,56,75,-0.7418685292036935],[116,56,76,-0.7415668787236168],[116,56,77,-0.7412676574584618],[116,56,78,-0.7409708701357931],[116,56,79,-0.7406765213860953],[116,57,64,-0.745481731681531],[116,57,65,-0.7451533454161613],[116,57,66,-0.7448273297300143],[116,57,67,-0.7445036903947942],[116,57,68,-0.7441824330898879],[116,57,69,-0.7438635634019422],[116,57,70,-0.7435470868244236],[116,57,71,-0.7432330087571846],[116,57,72,-0.7429213345060268],[116,57,73,-0.7426120692822794],[116,57,74,-0.7423052182023491],[116,57,75,-0.7420007862872999],[116,57,76,-0.7416987784624218],[116,57,77,-0.7413991995567983],[116,57,78,-0.7411020543028795],[116,57,79,-0.7408073473360497],[116,58,64,-0.7456180709321125],[116,58,65,-0.7452893318237253],[116,58,66,-0.7449629629428038],[116,58,67,-0.7446389700657585],[116,58,68,-0.7443173588766978],[116,58,69,-0.7439981349670052],[116,58,70,-0.743681303834899],[116,58,71,-0.7433668708849988],[116,58,72,-0.7430548414278878],[116,58,73,-0.7427452206796925],[116,58,74,-0.7424380137616314],[116,58,75,-0.742133225699596],[116,58,76,-0.7418308614237176],[116,58,77,-0.7415309257679366],[116,58,78,-0.741233423469575],[116,58,79,-0.7409383591689037],[116,59,64,-0.7457545823910764],[116,59,65,-0.7454254913740256],[116,59,66,-0.7450987702293418],[116,59,67,-0.7447744247381263],[116,59,68,-0.7444524605891941],[116,59,69,-0.7441328833786502],[116,59,70,-0.7438156986094501],[116,59,71,-0.7435009116909652],[116,59,72,-0.7431885279385463],[116,59,73,-0.7428785525731022],[116,59,74,-0.7425709907206496],[116,59,75,-0.7422658474118922],[116,59,76,-0.7419631275817897],[116,59,77,-0.7416628360691254],[116,59,78,-0.7413649776160793],[116,59,79,-0.7410695568677956],[116,60,64,-0.7458912659939645],[116,60,65,-0.7455618240057031],[116,60,66,-0.7452347515313571],[116,60,67,-0.744910054356703],[116,60,68,-0.744587738175247],[116,60,69,-0.7442678085878007],[116,60,70,-0.7439502711020416],[116,60,71,-0.7436351311320781],[116,60,72,-0.7433223939980143],[116,60,73,-0.7430120649255267],[116,60,74,-0.7427041490454154],[116,60,75,-0.7423986513931828],[116,60,76,-0.7420955769086026],[116,60,77,-0.7417949304352872],[116,60,78,-0.7414967167202609],[116,60,79,-0.7412009404135272],[116,61,64,-0.7460281216740852],[116,61,65,-0.7456983296551603],[116,61,66,-0.7453709067883342],[116,61,67,-0.7450458588640437],[116,61,68,-0.7447231915804711],[116,61,69,-0.7444029105431187],[116,61,70,-0.7440850212643713],[116,61,71,-0.74376952916306],[116,61,72,-0.7434564395640265],[116,61,73,-0.7431457576977013],[116,61,74,-0.7428374886996532],[116,61,75,-0.7425316376101689],[116,61,76,-0.7422282093738222],[116,61,77,-0.7419272088390405],[116,61,78,-0.741628640757679],[116,61,79,-0.7413325097845869],[116,62,64,-0.7461651493624892],[116,62,65,-0.7458350082565355],[116,62,66,-0.745507235937488],[116,62,67,-0.7451818382004287],[116,62,68,-0.7448588207481996],[116,62,69,-0.7445381891909798],[116,62,70,-0.7442199490458455],[116,62,71,-0.7439041057363358],[116,62,72,-0.7435906645920153],[116,62,73,-0.7432796308480536],[116,62,74,-0.7429710096447738],[116,62,75,-0.7426648060272334],[116,62,76,-0.7423610249447912],[116,62,77,-0.7420596712506762],[116,62,78,-0.74176074970156],[116,62,79,-0.7414642649571246],[116,63,64,-0.7463023489880247],[116,63,65,-0.7459718597417591],[116,63,66,-0.7456437389138201],[116,63,67,-0.7453179923039185],[116,63,68,-0.7449946256195416],[116,63,69,-0.7446736444755291],[116,63,70,-0.7443550543936345],[116,63,71,-0.7440388608020888],[116,63,72,-0.7437250690351658],[116,63,73,-0.7434136843327588],[116,63,74,-0.7431047118399312],[116,63,75,-0.7427981566064962],[116,63,76,-0.742494023586584],[116,63,77,-0.7421923176382113],[116,63,78,-0.7418930435228522],[116,63,79,-0.7415962059050073],[116,64,64,-0.746439720477321],[116,64,65,-0.7461088840405365],[116,64,66,-0.7457804156501006],[116,64,67,-0.7454543211103372],[116,64,68,-0.7451306061333633],[116,64,69,-0.7448092763386643],[116,64,70,-0.744490337252655],[116,64,71,-0.7441737943082443],[116,64,72,-0.743859652844399],[116,64,73,-0.7435479181057228],[116,64,74,-0.7432385952420041],[116,64,75,-0.7429316893077975],[116,64,76,-0.7426272052619908],[116,64,77,-0.7423251479673734],[116,64,78,-0.7420255221902086],[116,64,79,-0.7417283325998019],[116,65,64,-0.7465772637547713],[116,65,65,-0.7462460810803316],[116,65,66,-0.7459172660768527],[116,65,67,-0.7455908245532563],[116,65,68,-0.7452667622262731],[116,65,69,-0.7449450847200187],[116,65,70,-0.7446257975655545],[116,65,71,-0.7443089062004516],[116,65,72,-0.7439944159683561],[116,65,73,-0.7436823321185657],[116,65,74,-0.7433726598055802],[116,65,75,-0.743065404088681],[116,65,76,-0.7427605699314991],[116,65,77,-0.7424581622015826],[116,65,78,-0.7421581856699702],[116,65,79,-0.7418606450107581],[116,66,64,-0.7467149787425885],[116,66,65,-0.7463834507864222],[116,66,66,-0.7460542901224079],[116,66,67,-0.7457275025640493],[116,66,68,-0.7454030938326754],[116,66,69,-0.7450810695570169],[116,66,70,-0.7447614352727656],[116,66,71,-0.7444441964221409],[116,66,72,-0.7441293583534518],[116,66,73,-0.7438169263206768],[116,66,74,-0.7435069054830111],[116,66,75,-0.7431993009044493],[116,66,76,-0.7428941175533503],[116,66,77,-0.7425913603020077],[116,66,78,-0.742291033926221],[116,66,79,-0.7419931431048636],[116,67,64,-0.746852865360781],[116,67,65,-0.7465209930818754],[116,67,66,-0.7461914877128808],[116,67,67,-0.7458643550718674],[116,67,68,-0.745539600884747],[116,67,69,-0.7452172307848492],[116,67,70,-0.7448972503124822],[116,67,71,-0.7445796649144969],[116,67,72,-0.7442644799438516],[116,67,73,-0.7439517006591893],[116,67,74,-0.7436413322243874],[116,67,75,-0.7433333797081378],[116,67,76,-0.7430278480835143],[116,67,77,-0.7427247422275407],[116,67,78,-0.7424240669207636],[116,67,79,-0.7421258268468196],[116,68,64,-0.7469909235271754],[116,68,65,-0.7466587078875705],[116,68,66,-0.746328858772193],[116,68,67,-0.7460013820036632],[116,68,68,-0.7456762833124598],[116,68,69,-0.7453535683364967],[116,68,70,-0.7450332426206817],[116,68,71,-0.7447153116164834],[116,68,72,-0.7443997806814933],[116,68,73,-0.7440866550790047],[116,68,74,-0.7437759399775619],[116,68,75,-0.74346764045054],[116,68,76,-0.7431617614757127],[116,68,77,-0.74285830793482],[116,68,78,-0.7425572846131415],[116,68,79,-0.7422586961990632],[116,69,64,-0.7471291531573918],[116,69,65,-0.746796595122175],[116,69,66,-0.7464664032220477],[116,69,67,-0.7461385832841647],[116,69,68,-0.7458131410435564],[116,69,69,-0.745490082142704],[116,69,70,-0.745169412131101],[116,69,71,-0.7448511364648172],[116,69,72,-0.7445352605060629],[116,69,73,-0.7442217895227665],[116,69,74,-0.7439107286881244],[116,69,75,-0.7436020830801803],[116,69,76,-0.7432958576813932],[116,69,77,-0.7429920573782052],[116,69,78,-0.7426906869606146],[116,69,79,-0.7423917511217425],[116,70,64,-0.7472675541648997],[116,70,65,-0.7469346547021996],[116,70,66,-0.7466041209819859],[116,70,67,-0.7462759588359325],[116,70,68,-0.7459501740036046],[116,70,69,-0.7456267721320367],[116,70,70,-0.745305758775291],[116,70,71,-0.7449871393940244],[116,70,72,-0.74467091935505],[116,70,73,-0.7443571039309167],[116,70,74,-0.7440456982994577],[116,70,75,-0.7437367075433708],[116,70,76,-0.7434301366497859],[116,70,77,-0.7431259905098326],[116,70,78,-0.742824273918214],[116,70,79,-0.7425249915727723],[116,71,64,-0.7474061264610011],[116,71,65,-0.747072886541981],[116,71,66,-0.7467420119693691],[116,71,67,-0.7464135085793411],[116,71,68,-0.7460873821159822],[116,71,69,-0.7457636382308634],[116,71,70,-0.7454422824826014],[116,71,71,-0.7451233203364233],[116,71,72,-0.7448067571637309],[116,71,73,-0.7444925982416779],[116,71,74,-0.7441808487527198],[116,71,75,-0.7438715137841938],[116,71,76,-0.7435645983278858],[116,71,77,-0.7432601072795988],[116,71,78,-0.7429580454387258],[116,71,79,-0.7426584175078165],[116,72,64,-0.7475448699548134],[116,72,65,-0.7472112905536665],[116,72,66,-0.7468800760993624],[116,72,67,-0.7465512324325634],[116,72,68,-0.7462247653018584],[116,72,69,-0.7459006803633395],[116,72,70,-0.7455789831801614],[116,72,71,-0.7452596792221071],[116,72,72,-0.744942773865151],[116,72,73,-0.7446282723910369],[116,72,74,-0.7443161799868276],[116,72,75,-0.7440065017444847],[116,72,76,-0.7436992426604354],[116,72,77,-0.743394407635142],[116,72,78,-0.743092001472673],[116,72,79,-0.7427920288802711],[116,73,64,-0.7476837845533255],[116,73,65,-0.747349866647268],[116,73,66,-0.7470183132849906],[116,73,67,-0.7466891303116256],[116,73,68,-0.7463623234802503],[116,73,69,-0.7460378984514616],[116,73,70,-0.745715860792937],[116,73,71,-0.7453962159789995],[116,73,72,-0.745078969390181],[116,73,73,-0.7447641263128002],[116,73,74,-0.744451691938512],[116,73,75,-0.7441416713638874],[116,73,76,-0.743834069589981],[116,73,77,-0.7435288915218988],[116,73,78,-0.7432261419683712],[116,73,79,-0.7429258256413198],[116,74,64,-0.7478228701613724],[116,74,65,-0.7474886147306378],[116,74,66,-0.7471567234371124],[116,74,67,-0.7468272021303828],[116,74,68,-0.7465000565679979],[116,74,69,-0.746175292415044],[116,74,70,-0.7458529152437056],[116,74,71,-0.7455329305328301],[116,74,72,-0.7452153436674916],[116,74,73,-0.7449001599385683],[116,74,74,-0.7445873845422923],[116,74,75,-0.7442770225798296],[116,74,76,-0.7439690790568464],[116,74,77,-0.7436635588830787],[116,74,78,-0.743360466871904],[116,74,79,-0.7430598077399083],[116,75,64,-0.7479621266816591],[116,75,65,-0.7476275347094922],[116,75,66,-0.7472953064644449],[116,75,67,-0.7469654478005417],[116,75,68,-0.7466379644797871],[116,75,69,-0.7463128621717409],[116,75,70,-0.7459901464530788],[116,75,71,-0.7456698228071572],[116,75,72,-0.7453518966235766],[116,75,73,-0.7450363731977598],[116,75,74,-0.7447232577305011],[116,75,75,-0.7444125553275456],[116,75,76,-0.7441042709991572],[116,75,77,-0.743798409659687],[116,75,78,-0.7434949761271453],[116,75,79,-0.7431939751227682],[116,76,64,-0.7481015540147351],[116,76,65,-0.747766626487386],[116,76,66,-0.7474340622735375],[116,76,67,-0.7471038672316357],[116,76,68,-0.7467760471281246],[116,76,69,-0.7464506076370214],[116,76,70,-0.7461275543394775],[116,76,71,-0.7458068927233424],[116,76,72,-0.7454886281827279],[116,76,73,-0.7451727660175855],[116,76,74,-0.7448593114332563],[116,76,75,-0.7445482695400505],[116,76,76,-0.7442396453528146],[116,76,77,-0.7439334437904997],[116,76,78,-0.7436296696757342],[116,76,79,-0.7433283277343904],[116,77,64,-0.7482411520590506],[116,77,65,-0.7479058899657687],[116,77,66,-0.7475729907688282],[116,77,67,-0.7472424603310809],[116,77,68,-0.7469143044233939],[116,77,69,-0.7465885287242261],[116,77,70,-0.7462651388191881],[116,77,71,-0.7459441402006073],[116,77,72,-0.7456255382670908],[116,77,73,-0.745309338323104],[116,77,74,-0.7449955455785195],[116,77,75,-0.7446841651481974],[116,77,76,-0.7443752020515514],[116,77,77,-0.7440686612121187],[116,77,78,-0.743764547457131],[116,77,79,-0.7434628655170823],[116,78,64,-0.7483809207109394],[116,78,65,-0.748045325043967],[116,78,66,-0.7477120918526268],[116,78,67,-0.747381227004159],[116,78,68,-0.7470527362738383],[116,78,69,-0.7467266253445488],[116,78,70,-0.7464028998063447],[116,78,71,-0.7460815651560152],[116,78,72,-0.7457626267966475],[116,78,73,-0.7454460900372053],[116,78,74,-0.7451319600920776],[116,78,75,-0.7448202420806586],[116,78,76,-0.7445109410269152],[116,78,77,-0.7442040618589552],[116,78,78,-0.7438996094085993],[116,78,79,-0.7435975884109489],[116,79,64,-0.7485208598646015],[116,79,65,-0.7481849316191682],[116,79,66,-0.7478513654250967],[116,79,67,-0.7475201671539998],[116,79,68,-0.7471913425855431],[116,79,69,-0.7468648974070199],[116,79,70,-0.746540837212912],[116,79,71,-0.7462191675044547],[116,79,72,-0.7458998936891995],[116,79,73,-0.7455830210805928],[116,79,74,-0.7452685548975247],[116,79,75,-0.7449565002639089],[116,79,76,-0.7446468622082499],[116,79,77,-0.7443396456632116],[116,79,78,-0.7440348554651892],[116,79,79,-0.7437324963538763],[116,80,64,-0.7486609694121594],[116,80,65,-0.7483247095864758],[116,80,66,-0.7479908113843122],[116,80,67,-0.7476592806816378],[116,80,68,-0.7473301232624923],[116,80,69,-0.7470033448185623],[116,80,70,-0.7466789509487414],[116,80,71,-0.7463569471586948],[116,80,72,-0.746037338860423],[116,80,73,-0.7457201313718392],[116,80,74,-0.7454053299163195],[116,80,75,-0.7450929396222816],[116,80,76,-0.7447829655227529],[116,80,77,-0.7444754125549382],[116,80,78,-0.7441702855597925],[116,80,79,-0.7438675892815875],[116,81,64,-0.7488012492436331],[116,81,65,-0.7484646588388842],[116,81,66,-0.7481304296262324],[116,81,67,-0.7477985674859857],[116,81,68,-0.7474690782065425],[116,81,69,-0.7471419674839661],[116,81,70,-0.7468172409215457],[116,81,71,-0.7464949040293606],[116,81,72,-0.7461749622238442],[116,81,73,-0.7458574208273616],[116,81,74,-0.7455422850677588],[116,81,75,-0.7452295600779427],[116,81,76,-0.7449192508954483],[116,81,77,-0.7446113624620065],[116,81,78,-0.7443058996231173],[116,81,79,-0.744002867127616],[116,82,64,-0.748941699246963],[116,82,65,-0.748604779267303],[116,82,66,-0.7482702200447248],[116,82,67,-0.7479380274638596],[116,82,68,-0.7476082073174474],[116,82,69,-0.7472807653059119],[116,82,70,-0.746955707036922],[116,82,71,-0.7466330380249553],[116,82,72,-0.7463127636908622],[116,82,73,-0.745994889361444],[116,82,74,-0.7456794202690011],[116,82,75,-0.7453663615509144],[116,82,76,-0.7450557182492111],[116,82,77,-0.7447474953101336],[116,82,78,-0.7444416975837119],[116,82,79,-0.7441383298233302],[116,83,64,-0.7490823193079846],[116,83,65,-0.7487450707605299],[116,83,66,-0.7484101825315398],[116,83,67,-0.7480776605099517],[116,83,68,-0.7477475104928308],[116,83,69,-0.7474197381849454],[116,83,70,-0.747094349198327],[116,83,71,-0.746771349051836],[116,83,72,-0.7464507431707239],[116,83,73,-0.7461325368862122],[116,83,74,-0.7458167354350409],[116,83,75,-0.745503343959049],[116,83,76,-0.745192367504741],[116,83,77,-0.7448838110228556],[116,83,78,-0.744577679367938],[116,83,79,-0.7442739772979063],[116,84,64,-0.7492231093104853],[116,84,65,-0.7488855332053087],[116,84,66,-0.7485503169763672],[116,84,67,-0.7482174665168879],[116,84,68,-0.7478869876282443],[116,84,69,-0.7475588860195328],[116,84,70,-0.7472331673071321],[116,84,71,-0.7469098370142686],[116,84,72,-0.7465889005705794],[116,84,73,-0.7462703633116902],[116,84,74,-0.7459542304787652],[116,84,75,-0.7456405072180858],[116,84,76,-0.7453291985806189],[116,84,77,-0.7450203095215842],[116,84,78,-0.7447138449000271],[116,84,79,-0.7444098094783858],[116,85,64,-0.7493640691361867],[116,85,65,-0.749026166486311],[116,85,66,-0.7486906232668187],[116,85,67,-0.7483574453752094],[116,85,68,-0.748026638617149],[116,85,69,-0.747698208706045],[116,85,70,-0.747372161262607],[116,85,71,-0.7470485018144114],[116,85,72,-0.746727235795465],[116,85,73,-0.7464083685457822],[116,85,74,-0.746091905310935],[116,85,75,-0.7457778512416328],[116,85,76,-0.7454662113932887],[116,85,77,-0.7451569907255888],[116,85,78,-0.7448501941020639],[116,85,79,-0.7445458262896567],[116,86,64,-0.7495051986647269],[116,86,65,-0.749166970486119],[116,86,66,-0.7488311012884102],[116,86,67,-0.7484975969733562],[116,86,68,-0.748166463350898],[116,86,69,-0.7478377061387382],[116,86,70,-0.7475113309619011],[116,86,71,-0.7471873433522969],[116,86,72,-0.7468657487482856],[116,86,73,-0.7465465524942548],[116,86,74,-0.746229759840169],[116,86,75,-0.7459153759411492],[116,86,76,-0.7456034058570402],[116,86,77,-0.745293854551979],[116,86,78,-0.7449867268939668],[116,86,79,-0.744682027654436],[116,87,64,-0.7496464977737174],[116,87,65,-0.7493079450852819],[116,87,66,-0.7489717509246188],[116,87,67,-0.7486379211977224],[116,87,68,-0.7483064617187933],[116,87,69,-0.7479773782098121],[116,87,70,-0.747650676300101],[116,87,71,-0.7473263615258882],[116,87,72,-0.7470044393298709],[116,87,73,-0.746684915060794],[116,87,74,-0.7463677939729987],[116,87,75,-0.7460530812260022],[116,87,76,-0.7457407818840655],[116,87,77,-0.745430900915761],[116,87,78,-0.7451234431935456],[116,87,79,-0.7448184134933267],[116,88,64,-0.7497879663387256],[116,88,65,-0.7494490901622983],[116,88,66,-0.7491125720568641],[116,88,67,-0.74877841793264],[116,88,68,-0.748446633608068],[116,88,69,-0.7481172248093908],[116,88,70,-0.7477901971702121],[116,88,71,-0.7474655562310617],[116,88,72,-0.7471433074389582],[116,88,73,-0.7468234561469874],[116,88,74,-0.7465060076138514],[116,88,75,-0.7461909670034486],[116,88,76,-0.7458783393844401],[116,88,77,-0.7455681297298195],[116,88,78,-0.745260342916483],[116,88,79,-0.7449549837247987],[116,89,64,-0.749929604233257],[116,89,65,-0.7495904055935989],[116,89,66,-0.7492535645644925],[116,89,67,-0.7489190870603599],[116,89,68,-0.7485869789038684],[116,89,69,-0.7482572458255057],[116,89,70,-0.7479298934631411],[116,89,71,-0.7476049273615891],[116,89,72,-0.7472823529721737],[116,89,73,-0.7469621756523057],[116,89,74,-0.7466444006650326],[116,89,75,-0.7463290331786175],[116,89,76,-0.7460160782661072],[116,89,77,-0.7457055409048997],[116,89,78,-0.7453974259763171],[116,89,79,-0.7450917382651723],[116,90,64,-0.7500714113288122],[116,90,65,-0.7497318912536031],[116,90,66,-0.7493947283248321],[116,90,67,-0.7490599284611096],[116,90,68,-0.748727497489311],[116,90,69,-0.7483974411441529],[116,90,70,-0.7480697650677526],[116,90,71,-0.7477444748091941],[116,90,72,-0.7474215758240899],[116,90,73,-0.7471010734741602],[116,90,74,-0.7467829730267815],[116,90,75,-0.7464672796545666],[116,90,76,-0.7461539984349317],[116,90,77,-0.7458431343496648],[116,90,78,-0.7455346922844976],[116,90,79,-0.7452286770286735],[116,91,64,-0.7502133874948604],[116,91,65,-0.7498735470146928],[116,91,66,-0.7495360632131676],[116,91,67,-0.7492009420130665],[116,91,68,-0.7488681892454564],[116,91,69,-0.7485378106492655],[116,91,70,-0.7482098118708436],[116,91,71,-0.7478841984635264],[116,91,72,-0.7475609758871996],[116,91,73,-0.7472401495078762],[116,91,74,-0.7469217245972464],[116,91,75,-0.7466057063322562],[116,91,76,-0.746292099794676],[116,91,77,-0.7459809099706685],[116,91,78,-0.74567214175036],[116,91,79,-0.7453657999274086],[116,92,64,-0.7503555325988641],[116,92,65,-0.7500153727472363],[116,92,66,-0.749677569102764],[116,92,67,-0.7493421275923823],[116,92,68,-0.749009054051333],[116,92,69,-0.7486783542227392],[116,92,70,-0.748350033757166],[116,92,71,-0.7480240982121851],[116,92,72,-0.7477005530519388],[116,92,73,-0.7473794036467168],[116,92,74,-0.7470606552725065],[116,92,75,-0.7467443131105724],[116,92,76,-0.7464303822470231],[116,92,77,-0.7461188676723796],[116,92,78,-0.7458097742811483],[116,92,79,-0.7455031068713871],[116,93,64,-0.7504978465062522],[116,93,65,-0.7501573683195627],[116,93,66,-0.7498192458648398],[116,93,67,-0.7494834850731562],[116,93,68,-0.7491500917839107],[116,93,69,-0.7488190717444044],[116,93,70,-0.7484904306094015],[116,93,71,-0.748164173940693],[116,93,72,-0.7478403072066611],[116,93,73,-0.7475188357818565],[116,93,74,-0.7471997649465477],[116,93,75,-0.7468830998863014],[116,93,76,-0.7465688456915489],[116,93,77,-0.746257007357155],[116,93,78,-0.7459475897819896],[116,93,79,-0.7456405977684959],[116,94,64,-0.7506403290804773],[116,94,65,-0.7502995335980177],[116,94,66,-0.7499610933686254],[116,94,67,-0.7496250143274923],[116,94,68,-0.7492913023181577],[116,94,69,-0.7489599630920842],[116,94,70,-0.7486310023082178],[116,94,71,-0.7483044255325526],[116,94,72,-0.7479802382376941],[116,94,73,-0.7476584458024378],[116,94,74,-0.7473390535113174],[116,94,75,-0.7470220665541858],[116,94,76,-0.7467074900257813],[116,94,77,-0.7463953289252965],[116,94,78,-0.7460855881559504],[116,94,79,-0.7457782725245554],[116,95,64,-0.7507829801829978],[116,95,65,-0.7504418684469469],[116,95,66,-0.7501031114813435],[116,95,67,-0.7497667152254812],[116,95,68,-0.7494326855270232],[116,95,69,-0.7491010281415762],[116,95,70,-0.7487717487322513],[116,95,71,-0.7484448528692289],[116,95,72,-0.748120346029322],[116,95,73,-0.7477982335955538],[116,95,74,-0.7474785208567079],[116,95,75,-0.7471612130069066],[116,95,76,-0.7468463151451803],[116,95,77,-0.7465338322750332],[116,95,78,-0.7462237693040181],[116,95,79,-0.7459161310433017],[116,96,64,-0.7509257996732601],[116,96,65,-0.7505843727286777],[116,96,66,-0.7502453000681921],[116,96,67,-0.749908587635183],[116,96,68,-0.7495742412814189],[116,96,69,-0.7492422667666342],[116,96,70,-0.7489126697580883],[116,96,71,-0.7485854558301313],[116,96,72,-0.7482606304637667],[116,96,73,-0.7479381990462298],[116,96,74,-0.7476181668705371],[116,96,75,-0.7473005391350656],[116,96,76,-0.7469853209431204],[116,96,77,-0.7466725173025031],[116,96,78,-0.7463621331250838],[116,96,79,-0.7460541732263685],[116,97,64,-0.751068787408756],[116,97,65,-0.7507270463035755],[116,97,66,-0.7503876589924021],[116,97,67,-0.7500506314226831],[116,97,68,-0.7497159694502762],[116,97,69,-0.7493836788390257],[116,97,70,-0.7490537652603226],[116,97,71,-0.74872623429267],[116,97,72,-0.7484010914212456],[116,97,73,-0.7480783420374802],[116,97,74,-0.7477579914386071],[116,97,75,-0.7474400448272414],[116,97,76,-0.747124507310948],[116,97,77,-0.7468113839018095],[116,97,78,-0.7465006795159981],[116,97,79,-0.7461923989733438],[116,98,64,-0.7512119432449955],[116,98,65,-0.7508698890300185],[116,98,66,-0.75053018811521],[116,98,67,-0.7501928464520672],[116,98,68,-0.7498578699005198],[116,98,69,-0.7495252642285052],[116,98,70,-0.7491950351115292],[116,98,71,-0.7488671881322306],[116,98,72,-0.748541728779945],[116,98,73,-0.7482186624502822],[116,98,74,-0.7478979944446761],[116,98,75,-0.747579729969964],[116,98,76,-0.7472638741379546],[116,98,77,-0.7469504319649953],[116,98,78,-0.7466394083715456],[116,98,79,-0.7463308081817435],[116,99,64,-0.7513552670355318],[116,99,65,-0.7510129007644211],[116,99,66,-0.7506728872958818],[116,99,67,-0.750335232585444],[116,99,68,-0.7499999424970917],[116,99,69,-0.7496670228028383],[116,99,70,-0.7493364791822873],[116,99,71,-0.7490083172221967],[116,99,72,-0.7486825424160433],[116,99,73,-0.7483591601635994],[116,99,74,-0.748038175770483],[116,99,75,-0.747719594447738],[116,99,76,-0.7474034213114],[116,99,77,-0.7470896613820663],[116,99,78,-0.7467783195844677],[116,99,79,-0.7464694007470349],[116,100,64,-0.7514987586319342],[116,100,65,-0.7511560813612073],[116,100,66,-0.7508157563916873],[116,100,67,-0.7504777896829192],[116,100,68,-0.7501421871029242],[116,100,69,-0.7498089544277746],[116,100,70,-0.7494780973411546],[116,100,71,-0.7491496214339244],[116,100,72,-0.7488235322036851],[116,100,73,-0.7484998350543551],[116,100,74,-0.7481785352957206],[116,100,75,-0.7478596381430149],[116,100,76,-0.7475431487164859],[116,100,77,-0.7472290720409642],[116,100,78,-0.746917413045436],[116,100,79,-0.7466081765626098],[116,101,64,-0.7516424178838454],[116,101,65,-0.7512994306728684],[116,101,66,-0.7509587952579565],[116,101,67,-0.7506205176026529],[116,101,68,-0.7502846035789981],[116,101,69,-0.7499510589671059],[116,101,70,-0.7496198894547239],[116,101,71,-0.7492911006367985],[116,101,72,-0.7489646980150377],[116,101,73,-0.74864068699749],[116,101,74,-0.7483190728980925],[116,101,75,-0.7479998609362526],[116,101,76,-0.7476830562364136],[116,101,77,-0.7473686638276241],[116,101,78,-0.74705668864311],[116,101,79,-0.7467471355198416],[116,102,64,-0.7517862446389639],[116,102,65,-0.7514429485499444],[116,102,66,-0.7511020037480625],[116,102,67,-0.7507634162008411],[116,102,68,-0.750427191784323],[116,102,69,-0.7500933362826465],[116,102,70,-0.7497618553876056],[116,102,71,-0.7494327546982151],[116,102,72,-0.7491060397202738],[116,102,73,-0.7487817158659428],[116,102,74,-0.748459788453295],[116,102,75,-0.7481402627058946],[116,102,76,-0.7478231437523649],[116,102,77,-0.747508436625956],[116,102,78,-0.7471961462641179],[116,102,79,-0.7468862775080674],[116,103,64,-0.7519302387430252],[116,103,65,-0.7515866348410063],[116,103,66,-0.7512453817134022],[116,103,67,-0.7509064853316978],[116,103,68,-0.7505699515759211],[116,103,69,-0.7502357862342169],[116,103,70,-0.7499039950024088],[116,103,71,-0.7495745834835628],[116,103,72,-0.7492475571875519],[116,103,73,-0.7489229215306334],[116,103,74,-0.7486006818349988],[116,103,75,-0.7482808433283537],[116,103,76,-0.747963411143484],[116,103,77,-0.7476483903178264],[116,103,78,-0.7473357857930387],[116,103,79,-0.747025602414569],[116,104,64,-0.75207440003986],[116,104,65,-0.7517304893927134],[116,104,66,-0.7513889290034541],[116,104,67,-0.7510497248475124],[116,104,68,-0.7507128828088827],[116,104,69,-0.7503784086796996],[116,104,70,-0.7500463081597986],[116,104,71,-0.7497165868562803],[116,104,72,-0.7493892502830748],[116,104,73,-0.7490643038605191],[116,104,74,-0.7487417529149066],[116,104,75,-0.7484216026780672],[116,104,76,-0.7481038582869348],[116,104,77,-0.7477885247831154],[116,104,78,-0.7474756071124598],[116,104,79,-0.7471651101246304],[116,105,64,-0.7522187283713666],[116,105,65,-0.7518745120497864],[116,105,66,-0.7515326454657527],[116,105,67,-0.7511931345986229],[116,105,68,-0.7508559853363407],[116,105,69,-0.750521203475013],[116,105,70,-0.75018879471847],[116,105,71,-0.7498587646778299],[116,105,72,-0.7495311188710628],[116,105,73,-0.7492058627225683],[116,105,74,-0.7488830015627255],[116,105,75,-0.7485625406274726],[116,105,76,-0.7482444850578744],[116,105,77,-0.7479288398996907],[116,105,78,-0.7476156101029487],[116,105,79,-0.7473048005215107],[116,106,64,-0.7523632235775364],[116,106,65,-0.7520187026550318],[116,106,66,-0.7516765309459108],[116,106,67,-0.7513367144334395],[116,106,68,-0.7509992590094939],[116,106,69,-0.7506641704741355],[116,106,70,-0.7503314545351716],[116,106,71,-0.7500011168077207],[116,106,72,-0.7496731628137764],[116,106,73,-0.749347597981784],[116,106,74,-0.7490244276461915],[116,106,75,-0.7487036570470291],[116,106,76,-0.7483852913294761],[116,106,77,-0.74806933554343],[116,106,78,-0.7477557946430788],[116,106,79,-0.7474446734864683],[116,107,64,-0.7525078854964251],[116,107,65,-0.7521630610493146],[116,107,66,-0.7518205852875934],[116,107,67,-0.7514804641984187],[116,107,68,-0.7511427036775807],[116,107,69,-0.7508073095290779],[116,107,70,-0.7504742874646778],[116,107,71,-0.7501436431034822],[116,107,72,-0.7498153819714903],[116,107,73,-0.749489509501177],[116,107,74,-0.7491660310310423],[116,107,75,-0.7488449518051916],[116,107,76,-0.7485262769729027],[116,107,77,-0.7482100115881948],[116,107,78,-0.7478961606094003],[116,107,79,-0.7475847288987327],[116,108,64,-0.7526527139642123],[116,108,65,-0.7523075870716166],[116,108,66,-0.7519648083325756],[116,108,67,-0.7516243837381199],[116,108,68,-0.751286319187936],[116,108,69,-0.7509506204899419],[116,108,70,-0.750617293359848],[116,108,71,-0.7502863434207216],[116,108,72,-0.7499577762025511],[116,108,73,-0.7496315971418236],[116,108,74,-0.7493078115810745],[116,108,75,-0.7489864247684682],[116,108,76,-0.7486674418573644],[116,108,77,-0.7483508679058876],[116,108,78,-0.7480367078764987],[116,108,79,-0.7477249666355636],[116,109,64,-0.7527977088151817],[116,109,65,-0.7524522805590173],[116,109,66,-0.7521091999207239],[116,109,67,-0.7517684728951876],[116,109,68,-0.7514301053859733],[116,109,69,-0.7510941032049011],[116,109,70,-0.7507604720716063],[116,109,71,-0.7504292176131052],[116,109,72,-0.7501003453633579],[116,109,73,-0.7497738607628467],[116,109,74,-0.7494497691581258],[116,109,75,-0.7491280758014017],[116,109,76,-0.7488087858500997],[116,109,77,-0.7484919043664333],[116,109,78,-0.7481774363169764],[116,109,79,-0.7478653865722307],[116,110,64,-0.7529428698817038],[116,110,65,-0.7525971413466759],[116,110,66,-0.7522537598899777],[116,110,67,-0.7519127315103324],[116,110,68,-0.751574062115166],[116,110,69,-0.7512377575201823],[116,110,70,-0.7509038234489247],[116,110,71,-0.7505722655323405],[116,110,72,-0.7502430893083445],[116,110,73,-0.7499163002213974],[116,110,74,-0.7495919036220555],[116,110,75,-0.7492699047665505],[116,110,76,-0.7489503088163569],[116,110,77,-0.7486331208377611],[116,110,78,-0.7483183458014333],[116,110,79,-0.7480059885819955],[116,111,64,-0.7530881969942927],[116,111,65,-0.7527421692678892],[116,111,66,-0.7523984880764074],[116,111,67,-0.7520571594223899],[116,111,68,-0.7517181892171052],[116,111,69,-0.751381583280124],[116,111,70,-0.7510473473388797],[116,111,71,-0.7507154870282331],[116,111,72,-0.7503860078900371],[116,111,73,-0.7500589153727133],[116,111,74,-0.7497342148308029],[116,111,75,-0.7494119115245468],[116,111,76,-0.749092010619452],[116,111,77,-0.7487745171858611],[116,111,78,-0.7484594361985248],[116,111,79,-0.7481467725361695],[116,112,64,-0.7532336899815801],[116,112,65,-0.7528873641540643],[116,112,66,-0.7525433843141872],[116,112,67,-0.7522017564682922],[116,112,68,-0.7518624865314729],[116,112,69,-0.7515255803271487],[116,112,70,-0.7511910435866254],[116,112,71,-0.7508588819486604],[116,112,72,-0.7505291009590265],[116,112,73,-0.75020170607009],[116,112,74,-0.74987670264036],[116,112,75,-0.7495540959340692],[116,112,76,-0.7492338911207408],[116,112,77,-0.7489160932747579],[116,112,78,-0.748600707374935],[116,112,79,-0.7482877383040865],[116,113,64,-0.7533793486703387],[116,113,65,-0.7530327258347431],[116,113,66,-0.752688448435619],[116,113,67,-0.752346522483093],[116,113,68,-0.7520069538960655],[116,113,69,-0.7516697485017868],[116,113,70,-0.7513349120354177],[116,113,71,-0.7510024501395944],[116,113,72,-0.7506723683639929],[116,113,73,-0.7503446721649061],[116,113,74,-0.7500193669047946],[116,113,75,-0.7496964578518663],[116,113,76,-0.7493759501796439],[116,113,77,-0.749057848966534],[116,113,78,-0.7487421591953992],[116,113,79,-0.7484288857531258],[116,114,64,-0.7535251728854554],[116,114,65,-0.7531782541375743],[116,114,66,-0.7528336802711054],[116,114,67,-0.7524914572999398],[116,114,68,-0.752151591146767],[116,114,69,-0.7518140876426502],[116,114,70,-0.7514789525265873],[116,114,71,-0.7511461914450761],[116,114,72,-0.750815809951678],[116,114,73,-0.7504878135065958],[116,114,74,-0.7501622074762243],[116,114,75,-0.74983899713273],[116,114,76,-0.7495181876536182],[116,114,77,-0.7491997841213027],[116,114,78,-0.7488837915226778],[116,114,79,-0.7485702147486859],[116,115,64,-0.753671162449989],[116,115,65,-0.7533239488883723],[116,115,66,-0.7529790796492076],[116,115,67,-0.7526365607501324],[116,115,68,-0.7522963981176066],[116,115,69,-0.7519585975864891],[116,115,70,-0.7516231648995968],[116,115,71,-0.7512901057072716],[116,115,72,-0.7509594255669427],[116,115,73,-0.7506311299427061],[116,115,74,-0.7503052242048733],[116,115,75,-0.7499817136295523],[116,115,76,-0.7496606033982152],[116,115,77,-0.7493418985972657],[116,115,78,-0.7490256042176137],[116,115,79,-0.7487117251542414],[116,116,64,-0.7538173171851517],[116,116,65,-0.7534698099110984],[116,116,66,-0.7531246463966269],[116,116,67,-0.7527818326631035],[116,116,68,-0.7524413746407408],[116,116,69,-0.7521032781681742],[116,116,70,-0.751767548992023],[116,116,71,-0.7514341927664546],[116,116,72,-0.7511032150527497],[116,116,73,-0.750774621318879],[116,116,74,-0.7504484169390542],[116,116,75,-0.7501246071933082],[116,116,76,-0.7498031972670621],[116,116,77,-0.7494841922506943],[116,116,78,-0.7491675971391131],[116,116,79,-0.7488534168313244],[116,117,64,-0.7539636369102909],[116,117,65,-0.7536158370278413],[116,117,66,-0.7532703803381859],[116,117,67,-0.7529272728664009],[116,117,68,-0.7525865205464333],[116,117,69,-0.7522481292206777],[116,117,70,-0.7519121046395371],[116,117,71,-0.7515784524609874],[116,117,72,-0.7512471782501425],[116,117,73,-0.7509182874788314],[116,117,74,-0.7505917855251487],[116,117,75,-0.7502676776730348],[116,117,76,-0.7499459691118435],[116,117,77,-0.7496266649359106],[116,117,78,-0.7493097701441269],[116,117,79,-0.748995289639506],[116,118,64,-0.7541101214429468],[116,118,65,-0.7537620300588764],[116,118,66,-0.7534162812968868],[116,118,67,-0.7530728811857449],[116,118,68,-0.7527318356631144],[116,118,69,-0.7523931505751309],[116,118,70,-0.7520568316759633],[116,118,71,-0.7517228846273784],[116,118,72,-0.7513913149983056],[116,118,73,-0.7510621282644148],[116,118,74,-0.7507353298076661],[116,118,75,-0.7504109249158908],[116,118,76,-0.7500889187823583],[116,118,77,-0.7497693165053452],[116,118,78,-0.7494521230877087],[116,118,79,-0.7491373434364532],[116,119,64,-0.7542567705988337],[116,119,65,-0.7539083888226465],[116,119,66,-0.7535623490938919],[116,119,67,-0.7532186574450098],[116,119,68,-0.7528773198173617],[116,119,69,-0.7525383420608064],[116,119,70,-0.7522017299332604],[116,119,71,-0.7518674891002638],[116,119,72,-0.7515356251345442],[116,119,73,-0.7512061435155947],[116,119,74,-0.7508790496292239],[116,119,75,-0.7505543487671367],[116,119,76,-0.7502320461265013],[116,119,77,-0.7499121468095189],[116,119,78,-0.7495946558229956],[116,119,79,-0.749279578077911],[116,120,64,-0.7544035841918219],[116,120,65,-0.7540549131357434],[116,120,66,-0.7537085835485061],[116,120,67,-0.7533646014662051],[116,120,68,-0.7530229728338812],[116,120,69,-0.752683703505098],[116,120,70,-0.752346799241502],[116,120,71,-0.7520122657123888],[116,120,72,-0.751680108494266],[116,120,73,-0.751350333070433],[116,120,74,-0.7510229448305294],[116,120,75,-0.7506979490701166],[116,120,76,-0.7503753509902449],[116,120,77,-0.7500551556970227],[116,120,78,-0.7497373682011893],[116,120,79,-0.7494219934176827],[116,121,64,-0.7545505620339948],[116,121,65,-0.7542016028129648],[116,121,66,-0.7538549844782342],[116,121,67,-0.7535107130695335],[116,121,68,-0.7531687945355655],[116,121,69,-0.7528292347335799],[116,121,70,-0.7524920394289355],[116,121,71,-0.752157214294665],[116,121,72,-0.7518247649110391],[116,121,73,-0.7514946967651452],[116,121,74,-0.7511670152504372],[116,121,75,-0.7508417256663156],[116,121,76,-0.7505188332176957],[116,121,77,-0.7501983430145767],[116,121,78,-0.7498802600716141],[116,121,79,-0.7495645893076881],[116,122,64,-0.754697703935623],[116,122,65,-0.754348457667289],[116,122,66,-0.7540015516987534],[116,122,67,-0.7536569920733641],[116,122,68,-0.7533147847434666],[116,122,69,-0.7529749355699791],[116,122,70,-0.752637450321954],[116,122,71,-0.7523023346761438],[116,122,72,-0.7519695942165643],[116,122,73,-0.7516392344340737],[116,122,74,-0.751311260725922],[116,122,75,-0.7509856783953324],[116,122,76,-0.7506624926510681],[116,122,77,-0.7503417086070019],[116,122,78,-0.7500233312816894],[116,122,79,-0.7497073655979358],[116,123,64,-0.7548450097051866],[116,123,65,-0.7544954775098972],[116,123,66,-0.7541482850239378],[116,123,67,-0.7538034382942554],[116,123,68,-0.7534609432768196],[116,123,69,-0.7531208058361984],[116,123,70,-0.7527830317451207],[116,123,71,-0.75244762668404],[116,123,72,-0.7521145962406995],[116,123,73,-0.7517839459097108],[116,123,74,-0.7514556810921027],[116,123,75,-0.7511298070949036],[116,123,76,-0.7508063291307077],[116,123,77,-0.7504852523172447],[116,123,78,-0.7501665816769532],[116,123,79,-0.7498503221365475],[116,124,64,-0.7549924791493497],[116,124,65,-0.7546426621501471],[116,124,66,-0.7542951842658312],[116,124,67,-0.7539500515469286],[116,124,68,-0.7536072699530151],[116,124,69,-0.7532668453522905],[116,124,70,-0.7529287835211409],[116,124,71,-0.7525930901437037],[116,124,72,-0.7522597708114316],[116,124,73,-0.7519288310226715],[116,124,74,-0.7516002761822143],[116,124,75,-0.7512741116008756],[116,124,76,-0.7509503424950638],[116,124,77,-0.7506289739863485],[116,124,78,-0.7503100111010346],[116,124,79,-0.7499934587697288],[116,125,64,-0.755140112073017],[116,125,65,-0.7547900113956306],[116,125,66,-0.7544422492347043],[116,125,67,-0.7540968316443258],[116,125,68,-0.7537537645876582],[116,125,69,-0.7534130539365147],[116,125,70,-0.7530747054709208],[116,125,71,-0.7527387248786793],[116,125,72,-0.752405117754935],[116,125,73,-0.7520738896017521],[116,125,74,-0.751745045827666],[116,125,75,-0.7514185917472627],[116,125,76,-0.7510945325807471],[116,125,77,-0.7507728734535121],[116,125,78,-0.7504536193957119],[116,125,79,-0.7501367753418295],[116,126,64,-0.7552879082793159],[116,126,65,-0.7549375250521553],[116,126,66,-0.7545894797390367],[116,126,67,-0.7542437783975905],[116,126,68,-0.7539004269945484],[116,126,69,-0.7535594314053187],[116,126,70,-0.7532207974135479],[116,126,71,-0.7528845307106864],[116,126,72,-0.7525506368955523],[116,126,73,-0.7522191214739107],[116,126,74,-0.751889989858023],[116,126,75,-0.7515632473662285],[116,126,76,-0.7512388992225113],[116,126,77,-0.7509169505560709],[116,126,78,-0.7505974064008938],[116,126,79,-0.7502802716953225],[116,127,64,-0.7554358675695776],[116,127,65,-0.7550852029237252],[116,127,66,-0.7547368755854976],[116,127,67,-0.7543908916160494],[116,127,68,-0.7540472569856618],[116,127,69,-0.7537059775733198],[116,127,70,-0.7533670591662727],[116,127,71,-0.7530305074596],[116,127,72,-0.7526963280557761],[116,127,73,-0.752364526464248],[116,127,74,-0.7520351081009864],[116,127,75,-0.7517080782880659],[116,127,76,-0.7513834422532335],[116,127,77,-0.7510612051294772],[116,127,78,-0.7507413719545994],[116,127,79,-0.7504239476707855],[116,128,64,-0.7555839897433946],[116,128,65,-0.7552330448125991],[116,128,66,-0.7548844365790046],[116,128,67,-0.7545381711072701],[116,128,68,-0.7541942543712085],[116,128,69,-0.7538526922533625],[116,128,70,-0.753513490544566],[116,128,71,-0.7531766549435097],[116,128,72,-0.7528421910563058],[116,128,73,-0.7525101043960658],[116,128,74,-0.7521804003824518],[116,128,75,-0.7518530843412567],[116,128,76,-0.7515281615039723],[116,128,77,-0.7512056370073588],[116,128,78,-0.7508855158930173],[116,128,79,-0.7505678031069593],[116,129,64,-0.7557322745985945],[116,129,65,-0.7553810505192637],[116,129,66,-0.7550321625226951],[116,129,67,-0.7546856166770339],[116,129,68,-0.7543414189596052],[116,129,69,-0.7539995752564914],[116,129,70,-0.7536600913620923],[116,129,71,-0.7533229729786917],[116,129,72,-0.7529882257160212],[116,129,73,-0.7526558550908393],[116,129,74,-0.752325866526482],[116,129,75,-0.7519982653524424],[116,129,76,-0.7516730568039405],[116,129,77,-0.7513502460214909],[116,129,78,-0.7510298380504771],[116,129,79,-0.7507118378407194],[116,130,64,-0.7558807219312628],[116,130,65,-0.7555292198424567],[116,130,66,-0.7551800532179517],[116,130,67,-0.7548332281293595],[116,130,68,-0.7544887505574998],[116,130,69,-0.754146626391975],[116,130,70,-0.7538068614307329],[116,130,71,-0.753469461379632],[116,130,72,-0.7531344318520057],[116,130,73,-0.7528017783682412],[116,130,74,-0.7524715063553301],[116,130,75,-0.7521436211464492],[116,130,76,-0.7518181279805285],[116,130,77,-0.7514950320018204],[116,130,78,-0.7511743382594736],[116,130,79,-0.7508560517071001],[116,131,64,-0.7560293315357159],[116,131,65,-0.7556775525791397],[116,131,66,-0.755328108464373],[116,131,67,-0.7549810052664759],[116,131,68,-0.7546362489697427],[116,131,69,-0.7542938454672781],[116,131,70,-0.753953800560559],[116,131,71,-0.7536161199590002],[116,131,72,-0.7532808092795189],[116,131,73,-0.752947874046113],[116,131,74,-0.7526173196894124],[116,131,75,-0.7522891515462593],[116,131,76,-0.7519633748592768],[116,131,77,-0.7516399947764376],[116,131,78,-0.7513190163506385],[116,131,79,-0.7510004445392671],[116,132,64,-0.7561781032045598],[116,132,65,-0.7558260485245564],[116,132,66,-0.7554763280598334],[116,132,67,-0.7551289478888799],[116,132,68,-0.7547839139994459],[116,132,69,-0.7544412322881198],[116,132,70,-0.7541009085598891],[116,132,71,-0.7537629485277066],[116,132,72,-0.7534273578120547],[116,132,73,-0.7530941419405244],[116,132,74,-0.752763306347366],[116,132,75,-0.7524348563730696],[116,132,76,-0.7521087972639338],[116,132,77,-0.7517851341716344],[116,132,78,-0.7514638721527991],[116,132,79,-0.7511450161685744],[116,133,64,-0.7563270367286701],[116,133,65,-0.7559747074722138],[116,133,66,-0.7556247118004635],[116,133,67,-0.7552770557953177],[116,133,68,-0.7549317454479639],[116,133,69,-0.7545887866584551],[116,133,70,-0.7542481852352707],[116,133,71,-0.7539099468948831],[116,133,72,-0.7535740772613223],[116,133,73,-0.7532405818657538],[116,133,74,-0.7529094661460305],[116,133,75,-0.7525807354462728],[116,133,76,-0.7522543950164371],[116,133,77,-0.7519304500118856],[116,133,78,-0.7516089054929593],[116,133,79,-0.7512897664245466],[116,134,64,-0.756476131897174],[116,134,65,-0.756123529213863],[116,134,66,-0.7557732594806306],[116,134,67,-0.7554253287827657],[116,134,68,-0.7550797431148741],[116,134,69,-0.7547365083804547],[116,134,70,-0.7543956303914604],[116,134,71,-0.7540571148678649],[116,134,72,-0.7537209674372267],[116,134,73,-0.7533871936342685],[116,134,74,-0.7530557989004278],[116,134,75,-0.7527267885834373],[116,134,76,-0.7524001679368941],[116,134,77,-0.7520759421198288],[116,134,78,-0.7517541161962791],[116,134,79,-0.751434695134858],[116,135,64,-0.7566253884975083],[116,135,65,-0.7562725135395576],[116,135,66,-0.7559219708929974],[116,135,67,-0.7555737666464883],[116,135,68,-0.7552279067980356],[116,135,69,-0.7548843972545645],[116,135,70,-0.7545432438314831],[116,135,71,-0.7542044522522477],[116,135,72,-0.7538680281479276],[116,135,73,-0.753533977056784],[116,135,74,-0.753202304423821],[116,135,75,-0.7528730156003662],[116,135,76,-0.7525461158436398],[116,135,77,-0.7522216103163233],[116,135,78,-0.751899504086134],[116,135,79,-0.7515798021253925],[116,136,64,-0.7567748063153916],[116,136,65,-0.7564216602376259],[116,136,66,-0.7560708458284949],[116,136,67,-0.7557223691800117],[116,136,68,-0.7553762362935612],[116,136,69,-0.7550324530794772],[116,136,70,-0.7546910253566036],[116,136,71,-0.754351958851861],[116,136,72,-0.7540152591998109],[116,136,73,-0.7536809319422353],[116,136,74,-0.7533489825276865],[116,136,75,-0.7530194163110696],[116,136,76,-0.7526922385532098],[116,136,77,-0.7523674544204223],[116,136,78,-0.7520450689840866],[116,136,79,-0.7517250872202142],[116,137,64,-0.7569243851348484],[116,137,65,-0.7565709690946952],[116,137,66,-0.7562198840763458],[116,137,67,-0.7558711361751458],[116,137,68,-0.7555247313958416],[116,137,69,-0.7551806756521562],[116,137,70,-0.7548389747663506],[116,137,71,-0.7544996344687912],[116,137,72,-0.7541626603975133],[116,137,73,-0.7538280580978011],[116,137,74,-0.7534958330217378],[116,137,75,-0.7531659905277874],[116,137,76,-0.752838535880363],[116,137,77,-0.752513474249396],[116,137,78,-0.7521908107099107],[116,137,79,-0.7518705502415921],[116,138,64,-0.7570741247381816],[116,138,65,-0.7567204398956638],[116,138,66,-0.7563690854240361],[116,138,67,-0.756020067421958],[116,138,68,-0.7556733918975176],[116,138,69,-0.7553290647678079],[116,138,70,-0.7549870918584891],[116,138,71,-0.7546474789033539],[116,138,72,-0.7543102315438937],[116,138,73,-0.753975355328876],[116,138,74,-0.7536428557138972],[116,138,75,-0.7533127380609623],[116,138,76,-0.7529850076380544],[116,138,77,-0.7526596696187039],[116,138,78,-0.7523367290815623],[116,138,79,-0.7520161910099713],[116,139,64,-0.7572240249060306],[116,139,65,-0.7568700724237595],[116,139,66,-0.7565184496573749],[116,139,67,-0.7561691627088309],[116,139,68,-0.755822217589538],[116,139,69,-0.7554776202199406],[116,139,70,-0.7551353764290784],[116,139,71,-0.7547954919541527],[116,139,72,-0.7544579724400916],[116,139,73,-0.7541228234391287],[116,139,74,-0.7537900504103547],[116,139,75,-0.7534596587192981],[116,139,76,-0.7531316536374938],[116,139,77,-0.7528060403420536],[116,139,78,-0.7524828239152394],[116,139,79,-0.7521620093440319],[116,140,64,-0.7573740854173525],[116,140,65,-0.7570198664605204],[116,140,66,-0.7566679765604745],[116,140,67,-0.7563184218224432],[116,140,68,-0.7559712082611412],[116,140,69,-0.7556263418003443],[116,140,70,-0.7552838282724534],[116,140,71,-0.7549436734180595],[116,140,72,-0.754605882885509],[116,140,73,-0.7542704622304832],[116,140,74,-0.7539374169155486],[116,140,75,-0.7536067523097395],[116,140,76,-0.7532784736881252],[116,140,77,-0.752952586231381],[116,140,78,-0.7526290950253615],[116,140,79,-0.7523080050606696],[116,141,64,-0.7575243060494026],[116,141,65,-0.757169821785776],[116,141,66,-0.7568176659157309],[116,141,67,-0.756467844547751],[116,141,68,-0.7561203636998348],[116,141,69,-0.7557752292990719],[116,141,70,-0.7554324471812047],[116,141,71,-0.7550920230901952],[116,141,72,-0.7547539626777895],[116,141,73,-0.7544182715030981],[116,141,74,-0.7540849550321457],[116,141,75,-0.7537540186374536],[116,141,76,-0.7534254675976082],[116,141,77,-0.7530993070968305],[116,141,78,-0.7527755422245503],[116,141,79,-0.7524541779749757],[116,142,64,-0.7576746865777932],[116,142,65,-0.7573199381777054],[116,142,66,-0.7569675175038827],[116,142,67,-0.7566174306680452],[116,142,68,-0.756269683691456],[116,142,69,-0.7559242825044983],[116,142,70,-0.7555812329462377],[116,142,71,-0.7552405407639883],[116,142,72,-0.7549022116128777],[116,142,73,-0.7545662510554267],[116,142,74,-0.7542326645610999],[116,142,75,-0.7539014575058883],[116,142,76,-0.7535726351718766],[116,142,77,-0.7532462027468142],[116,142,78,-0.7529221653236889],[116,142,79,-0.7526005279002961],[116,143,64,-0.7578252267764657],[116,143,65,-0.7574702154128095],[116,143,66,-0.7571175311039837],[116,143,67,-0.7567671799649246],[116,143,68,-0.7564191680201411],[116,143,69,-0.7560735012032911],[116,143,70,-0.7557301853567441],[116,143,71,-0.7553892262311471],[116,143,72,-0.7550506294849908],[116,143,73,-0.7547144006841879],[116,143,74,-0.7543805453016249],[116,143,75,-0.7540490687167435],[116,143,76,-0.7537199762151097],[116,143,77,-0.7533932729879833],[116,143,78,-0.7530689641318924],[116,143,79,-0.7527470546482026],[116,144,64,-0.7579759264177146],[116,144,65,-0.7576206532659351],[116,144,66,-0.7572677064934258],[116,144,67,-0.7569170922183198],[116,144,68,-0.7565688164683522],[116,144,69,-0.7562228851804361],[116,144,70,-0.7558793042002259],[116,144,71,-0.7555380792816833],[116,144,72,-0.7551992160866428],[116,144,73,-0.7548627201843906],[116,144,74,-0.7545285970512167],[116,144,75,-0.7541968520699958],[116,144,76,-0.7538674905297568],[116,144,77,-0.7535405176252521],[116,144,78,-0.7532159384565329],[116,144,79,-0.7528937580285171],[116,145,64,-0.7581267852721593],[116,145,65,-0.7577712515102466],[116,145,66,-0.7574180434479116],[116,145,67,-0.7570671672064646],[116,145,68,-0.7567186288168467],[116,145,69,-0.7563724342192076],[116,145,70,-0.7560285892624677],[116,145,71,-0.7556870997038839],[116,145,72,-0.755347971208616],[116,145,73,-0.7550112093493051],[116,145,74,-0.7546768196056265],[116,145,75,-0.7543448073638694],[116,145,76,-0.7540151779165079],[116,145,77,-0.7536879364617693],[116,145,78,-0.7533630881032101],[116,145,79,-0.753040637849283],[116,146,64,-0.7582778031088031],[116,146,65,-0.7579220099172854],[116,146,66,-0.7575685417415134],[116,146,67,-0.7572174047059547],[116,146,68,-0.7568686048447376],[116,146,69,-0.7565221481012288],[116,146,70,-0.7561780403275951],[116,146,71,-0.7558362872843699],[116,146,72,-0.7554968946400198],[116,146,73,-0.7551598679705223],[116,146,74,-0.7548252127589189],[116,146,75,-0.7544929343948958],[116,146,76,-0.7541630381743538],[116,146,77,-0.7538355292989776],[116,146,78,-0.7535104128758107],[116,146,79,-0.753187693916824],[116,147,64,-0.7584289796950139],[116,147,65,-0.7580729282569498],[116,147,66,-0.7577192011466531],[116,147,67,-0.7573678044917289],[116,147,68,-0.7570187443294735],[116,147,69,-0.7566720266064506],[116,147,70,-0.7563276571780548],[116,147,71,-0.7559856418080771],[116,147,72,-0.7556459861682715],[116,147,73,-0.7553086958379335],[116,147,74,-0.7549737763034525],[116,147,75,-0.7546412329578934],[116,147,76,-0.7543110711005656],[116,147,77,-0.7539832959365929],[116,147,78,-0.7536579125764887],[116,147,79,-0.7533349260357247],[116,148,64,-0.7585803147965043],[116,148,65,-0.7582240062974758],[116,148,66,-0.7578700214340831],[116,148,67,-0.7575183663370493],[116,148,68,-0.7571690470468189],[116,148,69,-0.7568220695131336],[116,148,70,-0.7564774395945961],[116,148,71,-0.756135163058236],[116,148,72,-0.7557952455790762],[116,148,73,-0.7554576927397111],[116,148,74,-0.7551225100298601],[116,148,75,-0.7547897028459478],[116,148,76,-0.7544592764906745],[116,148,77,-0.7541312361725853],[116,148,78,-0.7538055870056456],[116,148,79,-0.7534823340088097],[116,149,64,-0.7587318081773913],[116,149,65,-0.758375243805496],[116,149,66,-0.7580210023729451],[116,149,67,-0.7576690900135601],[116,149,68,-0.7573195127709134],[116,149,69,-0.7569722765979057],[116,149,70,-0.7566273873563285],[116,149,71,-0.7562848508164312],[116,149,72,-0.7559446726564858],[116,149,73,-0.7556068584623679],[116,149,74,-0.7552714137271075],[116,149,75,-0.7549383438504714],[116,149,76,-0.7546076541385319],[116,149,77,-0.7542793498032379],[116,149,78,-0.7539534359619887],[116,149,79,-0.7536299176372041],[116,150,64,-0.7588834596001759],[116,150,65,-0.7585266405460203],[116,150,66,-0.758172143730751],[116,150,67,-0.757819975291268],[116,150,68,-0.7574701412742522],[116,150,69,-0.7571226476357436],[116,150,70,-0.7567775002407033],[116,150,71,-0.756434704862581],[116,150,72,-0.7560942671828798],[116,150,73,-0.7557561927907367],[116,150,74,-0.7554204871824743],[116,150,75,-0.7550871557611829],[116,150,76,-0.7547562038362889],[116,150,77,-0.7544276366231266],[116,150,78,-0.7541014592425122],[116,150,79,-0.7537776767203125],[116,151,64,-0.759035268825724],[116,151,65,-0.7586781962824157],[116,151,66,-0.7583234452733625],[116,151,67,-0.7579710219385225],[116,151,68,-0.7576209323276659],[116,151,69,-0.7572731823999522],[116,151,70,-0.7569277780234929],[116,151,71,-0.7565847249749186],[116,151,72,-0.7562440289389445],[116,151,73,-0.7559056955079506],[116,151,74,-0.7555697301815333],[116,151,75,-0.7552361383660877],[116,151,76,-0.7549049253743765],[116,151,77,-0.7545760964251012],[116,151,78,-0.7542496566424763],[116,151,79,-0.753925611055799],[116,152,64,-0.7591872356133257],[116,152,65,-0.7588299107764662],[116,152,66,-0.7584749067650507],[116,152,67,-0.7581222297220755],[116,152,68,-0.7577718857003802],[116,152,69,-0.7574238806622244],[116,152,70,-0.7570782204788503],[116,152,71,-0.7567349109300506],[116,152,72,-0.7563939577037334],[116,152,73,-0.7560553663955027],[116,152,74,-0.7557191425082102],[116,152,75,-0.7553852914515372],[116,152,76,-0.7550538185415645],[116,152,77,-0.7547247290003428],[116,152,78,-0.7543980279554673],[116,152,79,-0.7540737204396474],[116,153,64,-0.7593393597206664],[116,153,65,-0.7589817837883439],[116,153,66,-0.7586265279684675],[116,153,67,-0.7582735984070523],[116,153,68,-0.7579230011599872],[116,153,69,-0.757574742192612],[116,153,70,-0.7572288273792808],[116,153,71,-0.7568852625029285],[116,153,72,-0.7565440532546376],[116,153,73,-0.7562052052332168],[116,153,74,-0.7558687239447545],[116,153,75,-0.7555346148022],[116,153,76,-0.7552028831249337],[116,153,77,-0.754873534138337],[116,153,78,-0.7545465729733682],[116,153,79,-0.7542220046661311],[116,154,64,-0.7594916409038512],[116,154,65,-0.759133815076633],[116,154,66,-0.75877830864467],[116,154,67,-0.7584251277569759],[116,154,68,-0.7580742784724691],[116,154,69,-0.7577257667595503],[116,154,70,-0.7573795984956655],[116,154,71,-0.7570357794668732],[116,154,72,-0.7566943153674102],[116,154,73,-0.7563552117992718],[116,154,74,-0.756018474271764],[116,154,75,-0.7556841082010859],[116,154,76,-0.7553521189098986],[116,154,77,-0.7550225116268966],[116,154,78,-0.7546952914863829],[116,154,79,-0.7543704635278381],[116,155,64,-0.7596440789173768],[116,155,65,-0.7592860043983017],[116,155,66,-0.7589302485530915],[116,155,67,-0.7585768175337384],[116,155,68,-0.7582257174021703],[116,155,69,-0.757876954129829],[116,155,70,-0.7575305335972332],[116,155,71,-0.7571864615935452],[116,155,72,-0.7568447438161375],[116,155,73,-0.7565053858701728],[116,155,74,-0.756168393268156],[116,155,75,-0.7558337714295169],[116,155,76,-0.7555015256801795],[116,155,77,-0.7551716612521331],[116,155,78,-0.7548441832830071],[116,155,79,-0.7545190968156412],[116,156,64,-0.75979667351419],[116,156,65,-0.7594383515087613],[116,156,66,-0.7590823474516012],[116,156,67,-0.7587286674976602],[116,156,68,-0.7583773177118561],[116,156,69,-0.7580283040686521],[116,156,70,-0.7576816324516193],[116,156,71,-0.7573373086530053],[116,156,72,-0.7569953383732988],[116,156,73,-0.7566557272208106],[116,156,74,-0.7563184807112261],[116,156,75,-0.755983604267187],[116,156,76,-0.7556511032178617],[116,156,77,-0.7553209827985159],[116,156,78,-0.754993248150088],[116,156,79,-0.7546679043187583],[116,157,64,-0.7599494244456684],[116,157,65,-0.7595908561618462],[116,157,66,-0.7592346050964841],[116,157,67,-0.7588806774074706],[116,157,68,-0.7585290791626933],[116,157,69,-0.7581798163396171],[116,157,70,-0.7578328948248465],[116,157,71,-0.7574883204136941],[116,157,72,-0.7571460988097458],[116,157,73,-0.7568062356244417],[116,157,74,-0.7564687363766285],[116,157,75,-0.7561336064921416],[116,157,76,-0.755800851303375],[116,157,77,-0.7554704760488528],[116,157,78,-0.7551424858728037],[116,157,79,-0.7548168858247315],[116,158,64,-0.7601023314616006],[116,158,65,-0.7597435181097945],[116,158,66,-0.7593870212424212],[116,158,67,-0.7590328470202871],[116,158,68,-0.7586810015142299],[116,158,69,-0.758331490704696],[116,158,70,-0.7579843204813037],[116,158,71,-0.7576394966424111],[116,158,72,-0.7572970248946824],[116,158,73,-0.7569569108526678],[116,158,74,-0.756619160038356],[116,158,75,-0.7562837778807577],[116,158,76,-0.7559507697154741],[116,158,77,-0.7556201407842691],[116,158,78,-0.7552918962346438],[116,158,79,-0.754966041119407],[116,159,64,-0.7602553943102452],[116,159,65,-0.7598963371033067],[116,159,66,-0.7595395956425488],[116,159,67,-0.7591851760916757],[116,159,68,-0.7588330845244547],[116,159,69,-0.7584833269242941],[116,159,70,-0.7581359091838064],[116,159,71,-0.7577908371043759],[116,159,72,-0.7574481163957252],[116,159,73,-0.7571077526754957],[116,159,74,-0.7567697514687997],[116,159,75,-0.7564341182078037],[116,159,76,-0.7561008582312978],[116,159,77,-0.7557699767842673],[116,159,78,-0.7554414790174677],[116,159,79,-0.755115369986995],[116,160,64,-0.7604086127383032],[116,160,65,-0.7600493128915182],[116,160,66,-0.7596923280484303],[116,160,67,-0.7593376643756216],[116,160,68,-0.7589853279497686],[116,160,69,-0.7586353247572217],[116,160,70,-0.7582876606935678],[116,160,71,-0.7579423415631977],[116,160,72,-0.7575993730788737],[116,160,73,-0.7572587608613084],[116,160,74,-0.7569205104387192],[116,160,75,-0.7565846272464095],[116,160,76,-0.7562511166263397],[116,160,77,-0.7559199838266983],[116,160,78,-0.7555912340014767],[116,160,79,-0.7552648722100401],[116,161,64,-0.7605619864909403],[116,161,65,-0.7602024452220218],[116,161,66,-0.7598452182100797],[116,161,67,-0.759490311624553],[116,161,68,-0.7591377315450083],[116,161,69,-0.7587874839607176],[116,161,70,-0.7584395747702224],[116,161,71,-0.7580940097809006],[116,161,72,-0.7577507947085343],[116,161,73,-0.757409935176889],[116,161,74,-0.7570714367172675],[116,161,75,-0.7567353047680916],[116,161,76,-0.7564015446744732],[116,161,77,-0.7560701616877852],[116,161,78,-0.7557411609652374],[116,161,79,-0.7554145475694456],[116,162,64,-0.7607155153117602],[116,162,65,-0.7603557338408407],[116,162,66,-0.7599982658759332],[116,162,67,-0.7596431175893137],[116,162,68,-0.7592902950634183],[116,162,69,-0.7589398042904207],[116,162,70,-0.7585916511717973],[116,162,71,-0.7582458415178938],[116,162,72,-0.7579023810474922],[116,162,73,-0.7575612753873917],[116,162,74,-0.7572225300719614],[116,162,75,-0.7568861505427229],[116,162,76,-0.7565521421479208],[116,162,77,-0.7562205101420942],[116,162,78,-0.7558912596856524],[116,162,79,-0.7555643958444443],[116,163,64,-0.7608691989428628],[116,163,65,-0.7605091784924862],[116,163,66,-0.7601514707929082],[116,163,67,-0.759796082019221],[116,163,68,-0.7594430182567092],[116,163,69,-0.7590922855004293],[116,163,70,-0.758743889654772],[116,163,71,-0.7583978365330313],[116,163,72,-0.75805413185697],[116,163,73,-0.7577127812564013],[116,163,74,-0.7573737902687416],[116,163,75,-0.7570371643385936],[116,163,76,-0.7567029088173156],[116,163,77,-0.7563710289625944],[116,163,78,-0.7560415299380204],[116,163,79,-0.7557144168126578],[116,164,64,-0.7610230371248243],[116,164,65,-0.7606627789199398],[116,164,66,-0.7603048327063844],[116,164,67,-0.7599492046620462],[116,164,68,-0.759595900875039],[116,164,69,-0.7592449273432811],[116,164,70,-0.7588962899740583],[116,164,71,-0.7585499945835925],[116,164,72,-0.7582060468966082],[116,164,73,-0.7578644525459133],[116,164,74,-0.7575252170719524],[116,164,75,-0.7571883459223898],[116,164,76,-0.7568538444516795],[116,164,77,-0.7565217179206372],[116,164,78,-0.7561919714960159],[116,164,79,-0.7558646102500768],[116,165,64,-0.7611770295966783],[116,165,65,-0.7608165348646312],[116,165,66,-0.7604583513601822],[116,165,67,-0.7601024852639949],[116,165,68,-0.7597489426669919],[116,165,69,-0.7593977295699331],[116,165,70,-0.7590488518829794],[116,165,71,-0.7587023154252611],[116,165,72,-0.7583581259244446],[116,165,73,-0.7580162890163132],[116,165,74,-0.7576768102443208],[116,165,75,-0.757339695059174],[116,165,76,-0.7570049488184036],[116,165,77,-0.7566725767859358],[116,165,78,-0.7563425841316681],[116,165,79,-0.75601497593104],[116,166,64,-0.7613311760959738],[116,166,65,-0.7609704460664989],[116,166,66,-0.7606120264966236],[116,166,67,-0.7602559235697666],[116,166,68,-0.7599021433796386],[116,166,69,-0.7595506919298212],[116,166,70,-0.7592015751333303],[116,166,71,-0.758854798812185],[116,166,72,-0.7585103686969741],[116,166,73,-0.7581682904264367],[116,166,74,-0.7578285695470166],[116,166,75,-0.757491211512444],[116,166,76,-0.7571562216833077],[116,166,77,-0.7568236053266255],[116,166,78,-0.7564933676154211],[116,166,79,-0.756165513628294],[116,167,64,-0.7614854763587472],[116,167,65,-0.7611245122639612],[116,167,66,-0.7607658578565026],[116,167,67,-0.7604095193225249],[116,167,68,-0.7600555027585066],[116,167,69,-0.7597038141708308],[116,167,70,-0.7593544594753485],[116,167,71,-0.7590074444969476],[116,167,72,-0.7586627749691195],[116,167,73,-0.75832045653354],[116,167,74,-0.7579804947396233],[116,167,75,-0.7576428950441045],[116,167,76,-0.7573076628106111],[116,167,77,-0.7569748033092342],[116,167,78,-0.7566443217161046],[116,167,79,-0.7563162231129643],[116,168,64,-0.7616399301195469],[116,168,65,-0.7612787331939401],[116,168,66,-0.7609198451791097],[116,168,67,-0.7605632722639226],[116,168,68,-0.7602090205476053],[116,168,69,-0.7598570960393216],[116,168,70,-0.7595075046577382],[116,168,71,-0.7591602522305914],[116,168,72,-0.7588153444942558],[116,168,73,-0.7584727870933243],[116,168,74,-0.7581325855801624],[116,168,75,-0.7577947454144908],[116,168,76,-0.7574592719629567],[116,168,77,-0.7571261704987058],[116,168,78,-0.7567954462009582],[116,168,79,-0.7564671041545791],[116,169,64,-0.7617945371114032],[116,169,65,-0.7614331085918327],[116,169,66,-0.7610739882022023],[116,169,67,-0.7607171821340722],[116,169,68,-0.7603626964893959],[116,169,69,-0.7600105372800984],[116,169,70,-0.7596607104276408],[116,169,71,-0.759313221762589],[116,169,72,-0.7589680770241807],[116,169,73,-0.7586252818599063],[116,169,74,-0.7582848418250633],[116,169,75,-0.7579467623823389],[116,169,76,-0.7576110489013814],[116,169,77,-0.757277706658372],[116,169,78,-0.7569467408356011],[116,169,79,-0.7566181565210394],[116,170,64,-0.7619492970658891],[116,170,65,-0.7615876381915705],[116,170,66,-0.7612282866620652],[116,170,67,-0.7608712486716058],[116,170,68,-0.760516530324852],[116,170,69,-0.7601641376364698],[116,170,70,-0.7598140765306951],[116,170,71,-0.759466352840903],[116,170,72,-0.7591209723091745],[116,170,73,-0.7587779405858783],[116,170,74,-0.7584372632292242],[116,170,75,-0.7580989457048468],[116,170,76,-0.7577629933853764],[116,170,77,-0.757429411550011],[116,170,78,-0.7570982053840929],[116,170,79,-0.7567693799786798],[116,171,64,-0.7621042097130992],[116,171,65,-0.7617423217255996],[116,171,66,-0.7613827402934898],[116,171,67,-0.7610254716136543],[116,171,68,-0.7606705217934389],[116,171,69,-0.7603178968502295],[116,171,70,-0.759967602711017],[116,171,71,-0.7596196452119656],[116,171,72,-0.7592740300979801],[116,171,73,-0.7589307630222873],[116,171,74,-0.7585898495459906],[116,171,75,-0.7582512951376525],[116,171,76,-0.7579151051728662],[116,171,77,-0.7575812849338278],[116,171,78,-0.7572498396089129],[116,171,79,-0.7569207742922474],[116,172,64,-0.7622592747816304],[116,172,65,-0.7618971589248603],[116,172,66,-0.7615373488297543],[116,172,67,-0.7611798506958282],[116,172,68,-0.7608246706330929],[116,172,69,-0.7604718146616347],[116,172,70,-0.7601212887111786],[116,172,71,-0.7597730986206581],[116,172,72,-0.7594272501377817],[116,172,73,-0.7590837489186153],[116,172,74,-0.7587426005271358],[116,172,75,-0.7584038104348144],[116,172,76,-0.7580673840201885],[116,172,77,-0.7577333265684333],[116,172,78,-0.7574016432709387],[116,172,79,-0.7570723392248808],[116,173,64,-0.7624144919986406],[116,173,65,-0.7620521495188464],[116,173,66,-0.761692112002683],[116,173,67,-0.7613343856522763],[116,173,68,-0.7609789765802824],[116,173,69,-0.7606258908094666],[116,173,70,-0.7602751342722686],[116,173,71,-0.7599267128103706],[116,173,72,-0.7595806321742655],[116,173,73,-0.7592368980228382],[116,173,74,-0.7588955159229197],[116,173,75,-0.7585564913488709],[116,173,76,-0.7582198296821537],[116,173,77,-0.7578855362109039],[116,173,78,-0.7575536161295073],[116,173,79,-0.7572240745381711],[116,174,64,-0.762569861089821],[116,174,65,-0.762207293235577],[116,174,66,-0.7618470295426174],[116,174,67,-0.7614890762156573],[116,174,68,-0.7611334393699769],[116,174,69,-0.7607801250310009],[116,174,70,-0.7604291391338627],[116,174,71,-0.7600804875229734],[116,174,72,-0.7597341759515902],[116,174,73,-0.7593902100813974],[116,174,74,-0.7590485954820606],[116,174,75,-0.7587093376308109],[116,174,76,-0.758372441912016],[116,174,77,-0.758037913616753],[116,174,78,-0.7577057579423846],[116,174,79,-0.7573759799921314],[116,175,64,-0.7627253817794191],[116,175,65,-0.7623625898016202],[116,175,66,-0.7620021011784405],[116,175,67,-0.7616439221171634],[116,175,68,-0.761288058735673],[116,175,69,-0.7609345170620321],[116,175,70,-0.7605833030340478],[116,175,71,-0.7602344224988402],[116,175,72,-0.7598878812124108],[116,175,73,-0.7595436848392232],[116,175,74,-0.7592018389517583],[116,175,75,-0.7588623490300983],[116,175,76,-0.758525220461497],[116,175,77,-0.7581904585399539],[116,175,78,-0.7578580684657903],[116,175,79,-0.7575280553452207],[116,176,64,-0.7628810537902098],[116,176,65,-0.7625180389420637],[116,176,66,-0.7621573266375472],[116,176,67,-0.7617989230864917],[116,176,68,-0.7614428344093636],[116,176,69,-0.7610890666368437],[116,176,70,-0.7607376257093927],[116,176,71,-0.7603885174768193],[116,176,72,-0.7600417476978492],[116,176,73,-0.7596973220397055],[116,176,74,-0.7593552460776654],[116,176,75,-0.7590155252946416],[116,176,76,-0.7586781650807558],[116,176,77,-0.7583431707329109],[116,176,78,-0.7580105474543672],[116,176,79,-0.7576803003543156],[116,177,64,-0.7630368768435555],[116,177,65,-0.762673640380575],[116,177,66,-0.7623127056459048],[116,177,67,-0.7619540788519031],[116,177,68,-0.7615977661215985],[116,177,69,-0.7612437734882691],[116,177,70,-0.7608921068950083],[116,177,71,-0.7605427721942936],[116,177,72,-0.7601957751475543],[116,177,73,-0.7598511214247543],[116,177,74,-0.7595088166039462],[116,177,75,-0.759168866170855],[116,177,76,-0.7588312755184503],[116,177,77,-0.7584960499465191],[116,177,78,-0.7581631946612427],[116,177,79,-0.7578327147747687],[116,178,64,-0.763192850659386],[116,178,65,-0.7628293938393809],[116,178,66,-0.7624682379280319],[116,178,67,-0.7621093891402031],[116,178,68,-0.7617528536014642],[116,178,69,-0.7613986373476701],[116,178,70,-0.7610467463245265],[116,178,71,-0.7606971863871592],[116,178,72,-0.760349963299682],[116,178,73,-0.7600050827347786],[116,178,74,-0.7596625502732578],[116,178,75,-0.7593223714036372],[116,178,76,-0.7589845515217153],[116,178,77,-0.7586490959301441],[116,178,78,-0.7583160098380066],[116,178,79,-0.757985298360389],[116,179,64,-0.7633489749561776],[116,179,65,-0.7629852990392471],[116,179,66,-0.7626239232069785],[116,179,67,-0.7622648536767204],[116,179,68,-0.7619080965765627],[116,179,69,-0.7615536579449167],[116,179,70,-0.7612015437300801],[116,179,71,-0.7608517597898063],[116,179,72,-0.7605043118908735],[116,179,73,-0.7601592057086655],[116,179,74,-0.7598164468267277],[116,179,75,-0.7594760407363506],[116,179,76,-0.759137992836142],[116,179,77,-0.7588023084316003],[116,179,78,-0.7584689927346915],[116,179,79,-0.7581380508634205],[116,180,64,-0.7635052494510131],[116,180,65,-0.7631413556995381],[116,180,66,-0.7627797612043855],[116,180,67,-0.762420472185367],[116,180,68,-0.7620634947730722],[116,180,69,-0.7617088350084475],[116,180,70,-0.7613564988423625],[116,180,71,-0.761006492135178],[116,180,72,-0.7606588206563161],[116,180,73,-0.760313490083841],[116,180,74,-0.7599705060040147],[116,180,75,-0.7596298739108813],[116,180,76,-0.7592915992058389],[116,180,77,-0.7589556871972124],[116,180,78,-0.7586221430998317],[116,180,79,-0.7582909720346028],[116,181,64,-0.7636616738595526],[116,181,65,-0.7632975635381885],[116,181,66,-0.7629357516404559],[116,181,67,-0.7625762443886094],[116,181,68,-0.7622190479157172],[116,181,69,-0.7618641682652402],[116,181,70,-0.7615116113905986],[116,181,71,-0.7611613831547412],[116,181,72,-0.7608134893297134],[116,181,73,-0.7604679355962397],[116,181,74,-0.7601247275432795],[116,181,75,-0.7597838706676103],[116,181,76,-0.759445370373401],[116,181,77,-0.7591092319717843],[116,181,78,-0.7587754606804349],[116,181,79,-0.7584440616231409],[116,182,64,-0.7638182478960581],[116,182,65,-0.7634539222717257],[116,182,66,-0.7630918942339785],[116,182,67,-0.7627321700074923],[116,182,68,-0.7623747557277926],[116,182,69,-0.7620196574408348],[116,182,70,-0.7616668811025691],[116,182,71,-0.761316432578511],[116,182,72,-0.7609683176433095],[116,182,73,-0.7606225419803299],[116,182,74,-0.7602791111812083],[116,182,75,-0.7599380307454365],[116,182,76,-0.7595993060799348],[116,182,77,-0.7592629424986242],[116,182,78,-0.7589289452220054],[116,182,79,-0.7585973193767295],[116,183,64,-0.7639749712733634],[116,183,65,-0.7636104316152421],[116,183,66,-0.7632481887022987],[116,183,67,-0.7628882487616089],[116,183,68,-0.7625306179311351],[116,183,69,-0.7621753022593052],[116,183,70,-0.7618223077045797],[116,183,71,-0.7614716401350203],[116,183,72,-0.7611233053278595],[116,183,73,-0.7607773089690826],[116,183,74,-0.7604336566529832],[116,183,75,-0.7600923538817477],[116,183,76,-0.7597534060650278],[116,183,77,-0.7594168185195143],[116,183,78,-0.759082596468514],[116,183,79,-0.7587507450415228],[116,184,64,-0.7641318437029347],[116,184,65,-0.7637670912824545],[116,184,66,-0.7634046347613784],[116,184,67,-0.7630444803691616],[116,184,68,-0.7626866342461815],[116,184,69,-0.762331102443319],[116,184,70,-0.7619778909215229],[116,184,71,-0.7616270055513812],[116,184,72,-0.7612784521126894],[116,184,73,-0.7609322362940328],[116,184,74,-0.7605883636923427],[116,184,75,-0.7602468398124802],[116,184,76,-0.7599076700668094],[116,184,77,-0.7595708597747709],[116,184,78,-0.7592364141624591],[116,184,79,-0.7589043383621955],[116,185,64,-0.7642888648948497],[116,185,65,-0.7639239009856829],[116,185,66,-0.7635612321257759],[116,185,67,-0.763200864546941],[116,185,68,-0.7628428043919506],[116,185,69,-0.7624870577141165],[116,185,70,-0.7621336304768562],[116,185,71,-0.761782528553263],[116,185,72,-0.7614337577256752],[116,185,73,-0.7610873236852582],[116,185,74,-0.7607432320315607],[116,185,75,-0.7604014882720989],[116,185,76,-0.7600620978219297],[116,185,77,-0.7597250660032242],[116,185,78,-0.7593903980448453],[116,185,79,-0.759058099081921],[116,186,64,-0.7644460345577774],[116,186,65,-0.7640808604358313],[116,186,66,-0.7637179805086243],[116,186,67,-0.7633574010103054],[116,186,68,-0.7629991280860199],[116,186,69,-0.7626431677914903],[116,186,70,-0.7622895260925817],[116,186,71,-0.7619382088648723],[116,186,72,-0.7615892218932228],[116,186,73,-0.7612425708713584],[116,186,74,-0.7608982614014255],[116,186,75,-0.7605562989935755],[116,186,76,-0.7602166890655384],[116,186,77,-0.7598794369421966],[116,186,78,-0.7595445478551623],[116,186,79,-0.759212026942351],[116,187,64,-0.7646033523990378],[116,187,65,-0.7642379693424466],[116,187,66,-0.7638748796216929],[116,187,67,-0.7635140894732406],[116,187,68,-0.7631556050445876],[116,187,69,-0.7627994323938454],[116,187,70,-0.7624455774893063],[116,187,71,-0.7620940462090128],[116,187,72,-0.7617448443403275],[116,187,73,-0.7613979775795154],[116,187,74,-0.7610534515313002],[116,187,75,-0.760711271708449],[116,187,76,-0.7603714435313454],[116,187,77,-0.7600339723275635],[116,187,78,-0.7596988633314457],[116,187,79,-0.7593661216836756],[116,188,64,-0.7647608181245819],[116,188,65,-0.7643952274136986],[116,188,66,-0.7640319291753654],[116,188,67,-0.7636709296483399],[116,188,68,-0.7633122349824509],[116,188,69,-0.7629558512381787],[116,188,70,-0.7626017843862212],[116,188,71,-0.7622500403070649],[116,188,72,-0.7619006247905539],[116,188,73,-0.7615535435354726],[116,188,74,-0.7612088021491021],[116,188,75,-0.7608664061468055],[116,188,76,-0.7605263609516001],[116,188,77,-0.7601886718937322],[116,188,78,-0.7598533442102552],[116,188,79,-0.7595203830446021],[116,189,64,-0.7649184314389703],[116,189,65,-0.7645526343563593],[116,189,66,-0.7641891288786201],[116,189,67,-0.763827921246783],[116,189,68,-0.7634690176129862],[116,189,69,-0.7631124240400576],[116,189,70,-0.7627581465010804],[116,189,71,-0.7624061908789642],[116,189,72,-0.762056562966014],[116,189,73,-0.7617092684635134],[116,189,74,-0.7613643129812814],[116,189,75,-0.7610217020372562],[116,189,76,-0.7606814410570696],[116,189,77,-0.7603435353736209],[116,189,78,-0.7600079902266548],[116,189,79,-0.7596748107623347],[116,190,64,-0.7650761920454344],[116,190,65,-0.7647101898758629],[116,190,66,-0.7643464784390899],[116,190,67,-0.763985063978396],[116,190,68,-0.7636259526482085],[116,190,69,-0.7632691505136813],[116,190,70,-0.762914663550262],[116,190,71,-0.7625624976432627],[116,190,72,-0.7622126585874288],[116,190,73,-0.7618651520865231],[116,190,74,-0.7615199837528814],[116,190,75,-0.7611771591069985],[116,190,76,-0.7608366835771001],[116,190,77,-0.7604985624987188],[116,190,78,-0.7601628011142718],[116,190,79,-0.7598294045726339],[116,191,64,-0.7652340996458457],[116,191,65,-0.7648678936762764],[116,191,66,-0.7645039775630319],[116,191,67,-0.7641423575516223],[116,191,68,-0.7637830397987418],[116,191,69,-0.7634260303718499],[116,191,70,-0.7630713352487374],[116,191,71,-0.7627189603170981],[116,191,72,-0.7623689113740976],[116,191,73,-0.762021194125957],[116,191,74,-0.7616758141875095],[116,191,75,-0.7613327770817855],[116,191,76,-0.7609920882395859],[116,191,77,-0.7606537529990569],[116,191,78,-0.7603177766052683],[116,191,79,-0.759984164209787],[116,192,64,-0.7653921539407407],[116,192,65,-0.7650257454603238],[116,192,66,-0.7646616259553529],[116,192,67,-0.7642998016735463],[116,192,68,-0.7639402787738439],[116,192,69,-0.7635830633259894],[116,192,70,-0.7632281613100962],[116,192,71,-0.7628755786162187],[116,192,72,-0.7625253210439222],[116,192,73,-0.7621773943018659],[116,192,74,-0.7618318040073602],[116,192,75,-0.7614885556859511],[116,192,76,-0.7611476547709946],[116,192,77,-0.760809106603231],[116,192,78,-0.7604729164303636],[116,192,79,-0.7601390894066323],[116,193,64,-0.7655503546292911],[116,193,65,-0.7651837449293558],[116,193,66,-0.7648194233195784],[116,193,67,-0.7644573960498635],[116,193,68,-0.7640976692813757],[116,193,69,-0.7637402490861214],[116,193,70,-0.7633851414465156],[116,193,71,-0.7630323522549528],[116,193,72,-0.7626818873133772],[116,193,73,-0.7623337523328658],[116,193,74,-0.7619879529331854],[116,193,75,-0.7616444946423784],[116,193,76,-0.7613033828963358],[116,193,77,-0.7609646230383724],[116,193,78,-0.7606282203188055],[116,193,79,-0.7602941798945286],[116,194,64,-0.765708701409364],[116,194,65,-0.7653418917834108],[116,194,66,-0.7649773693579138],[116,194,67,-0.7646151403849415],[116,194,68,-0.7642552110278621],[116,194,69,-0.7638975873609237],[116,194,70,-0.7635422753688217],[116,194,71,-0.7631892809462698],[116,194,72,-0.7628386098975704],[116,194,73,-0.762490267936198],[116,194,74,-0.7621442606843558],[116,194,75,-0.7618005936725619],[116,194,76,-0.761459272339223],[116,194,77,-0.7611203020302082],[116,194,78,-0.7607836879984299],[116,194,79,-0.7604494354034156],[116,195,64,-0.7658671939775009],[116,195,65,-0.7655001857211944],[116,195,66,-0.765135463771223],[116,195,67,-0.7647730343817988],[116,195,68,-0.7644129037184714],[116,195,69,-0.7640550778577094],[116,195,70,-0.7636995627864678],[116,195,71,-0.7633463644017586],[116,195,72,-0.7629954885102218],[116,195,73,-0.7626469408277086],[116,195,74,-0.7623007269788384],[116,195,75,-0.7619568524965854],[116,195,76,-0.761615322821851],[116,195,77,-0.7612761433030403],[116,195,78,-0.7609393191956402],[116,195,79,-0.7606048556617935],[116,196,64,-0.7660258320288976],[116,196,65,-0.765658626440057],[116,196,66,-0.7652937062590078],[116,196,67,-0.7649310777420834],[116,196,68,-0.7645707470569933],[116,196,69,-0.7642127202824058],[116,196,70,-0.7638570034075138],[116,196,71,-0.763503602331607],[116,196,72,-0.7631525228636421],[116,196,73,-0.7628037707218267],[116,196,74,-0.7624573515331763],[116,196,75,-0.7621132708331002],[116,196,76,-0.7617715340649758],[116,196,77,-0.7614321465797235],[116,196,78,-0.7610951136353854],[116,196,79,-0.7607604403967005],[116,197,64,-0.7661846152574637],[116,197,65,-0.7658172136360563],[116,197,66,-0.7654520965194686],[116,197,67,-0.7650892701661339],[116,197,68,-0.7647287407459008],[116,197,69,-0.7643705143396149],[116,197,70,-0.7640145969386866],[116,197,71,-0.7636609944446621],[116,197,72,-0.7633097126687941],[116,197,73,-0.762960757331626],[116,197,74,-0.762614134062549],[116,197,75,-0.7622698483993877],[116,197,76,-0.7619279057879751],[116,197,77,-0.761588311581727],[116,197,78,-0.7612510710412219],[116,197,79,-0.760916189333775],[116,198,64,-0.7663435433557935],[116,198,65,-0.7659759470039252],[116,198,66,-0.7656106342494737],[116,198,67,-0.7652476113529496],[116,198,68,-0.7648868844863187],[116,198,69,-0.7645284597325834],[116,198,70,-0.7641723430853499],[116,198,71,-0.7638185404483998],[116,198,72,-0.7634670576352617],[116,198,73,-0.7631179003687938],[116,198,74,-0.7627710742807422],[116,198,75,-0.7624265849113272],[116,198,76,-0.7620844377088172],[116,198,77,-0.7617446380291037],[116,198,78,-0.7614071911352818],[116,198,79,-0.7610721021972235],[116,199,64,-0.7665026160151895],[116,199,65,-0.7661348262370985],[116,199,66,-0.7657693191445842],[116,199,67,-0.765406101000214],[116,199,68,-0.7650451779780492],[116,199,69,-0.764686556163227],[116,199,70,-0.7643302415515285],[116,199,71,-0.7639762400489503],[116,199,72,-0.7636245574712748],[116,199,73,-0.7632751995436552],[116,199,74,-0.7629281719001724],[116,199,75,-0.7625834800834215],[116,199,76,-0.7622411295440862],[116,199,77,-0.7619011256405145],[116,199,78,-0.761563473638298],[116,199,79,-0.7612281787098464],[116,200,64,-0.7666618329256334],[116,200,65,-0.7662938510276806],[116,200,66,-0.7659281508990242],[116,200,67,-0.7655647388042657],[116,200,68,-0.7652036209195408],[116,200,69,-0.7648448033321001],[116,200,70,-0.7644882920398784],[116,200,71,-0.7641340929510658],[116,200,72,-0.7637822118836786],[116,200,73,-0.7634326545651434],[116,200,74,-0.7630854266318556],[116,200,75,-0.7627405336287651],[116,200,76,-0.7623979810089511],[116,200,77,-0.7620577741331976],[116,200,78,-0.7617199182695735],[116,200,79,-0.7613844185930063],[116,201,64,-0.7668211937758458],[116,201,65,-0.7664530210665074],[116,201,66,-0.7660871292057401],[116,201,67,-0.7657235244601582],[116,201,68,-0.7653622130079494],[116,201,69,-0.7650032009384568],[116,201,70,-0.7646464942517474],[116,201,71,-0.7642920988581835],[116,201,72,-0.7639400205779944],[116,201,73,-0.76359026514086],[116,201,74,-0.7632428381854693],[116,201,75,-0.7628977452591068],[116,201,76,-0.7625549918172269],[116,201,77,-0.7622145832230299],[116,201,78,-0.761876524747042],[116,201,79,-0.7615408215666895],[116,202,64,-0.7669806982532654],[116,202,65,-0.766612336043125],[116,202,66,-0.7662462537563812],[116,202,67,-0.7658824576616392],[116,202,68,-0.7655209539391172],[116,202,69,-0.7651617486802292],[116,202,70,-0.764804847887153],[116,202,71,-0.7644502574724026],[116,202,72,-0.7640979832583987],[116,202,73,-0.7637480309770539],[116,202,74,-0.7634004062693304],[116,202,75,-0.7630551146848269],[116,202,76,-0.7627121616813527],[116,202,77,-0.762371552624505],[116,202,78,-0.7620332927872471],[116,202,79,-0.7616973873494846],[116,203,64,-0.7671403460440286],[116,203,65,-0.7667717956457684],[116,203,66,-0.7664055242412775],[116,203,67,-0.7660415381011295],[116,203,68,-0.7656798434075515],[116,203,69,-0.7653204462540069],[116,203,70,-0.764963352644763],[116,203,71,-0.7646085684944639],[116,203,72,-0.7642560996277015],[116,203,73,-0.7639059517785999],[116,203,74,-0.763558130590374],[116,203,75,-0.7632126416149161],[116,203,76,-0.762869490312371],[116,203,77,-0.7625286820507118],[116,203,78,-0.7621902221053198],[116,203,79,-0.7618541156585603],[116,204,64,-0.7673001368330289],[116,204,65,-0.7669313995614226],[116,204,66,-0.7665649403495007],[116,204,67,-0.7662007654697836],[116,204,68,-0.7658388811064852],[116,204,69,-0.765479293355097],[116,204,70,-0.7651220082219545],[116,204,71,-0.7647670316238108],[116,204,72,-0.7644143693874074],[116,204,73,-0.7640640272490595],[116,204,74,-0.7637160108542143],[116,204,75,-0.7633703257570373],[116,204,76,-0.763026977419988],[116,204,77,-0.762685971213396],[116,204,78,-0.7623473124150408],[116,204,79,-0.7620110062097274],[116,205,64,-0.7674600703038881],[116,205,65,-0.7670911474757922],[116,205,66,-0.7667245017688341],[116,205,67,-0.7663601394574591],[116,205,68,-0.765998066727847],[116,205,69,-0.7656382896774946],[116,205,70,-0.7652808143147847],[116,205,71,-0.7649256465585579],[116,205,72,-0.7645727922376848],[116,205,73,-0.7642222570906508],[116,205,74,-0.7638740467651142],[116,205,75,-0.7635281668174938],[116,205,76,-0.7631846227125435],[116,205,77,-0.7628434198229291],[116,205,78,-0.7625045634288087],[116,205,79,-0.7621680587174072],[116,206,64,-0.7676201461389797],[116,206,65,-0.7672510390733253],[116,206,66,-0.7668842081857966],[116,206,67,-0.766519659752742],[116,206,68,-0.7661573999622848],[116,206,69,-0.7657974349139063],[116,206,70,-0.7654397706180143],[116,206,71,-0.7650844129955163],[116,206,72,-0.7647313678773908],[116,206,73,-0.7643806410042722],[116,206,74,-0.7640322380260096],[116,206,75,-0.7636861645012545],[116,206,76,-0.7633424258970347],[116,206,77,-0.7630010275883328],[116,206,78,-0.7626619748576646],[116,206,79,-0.7623252728946566],[116,207,64,-0.7677803640193991],[116,207,65,-0.7674110740371838],[116,207,66,-0.7670440592856131],[116,207,67,-0.7666793260429157],[116,207,68,-0.7663168804991367],[116,207,69,-0.7659567287557203],[116,207,70,-0.7655988768250782],[116,207,71,-0.765243330630163],[116,207,72,-0.7648900960040402],[116,207,73,-0.7645391786894723],[116,207,74,-0.7641905843384786],[116,207,75,-0.7638443185119225],[116,207,76,-0.763500386679086],[116,207,77,-0.7631587942172477],[116,207,78,-0.7628195464112622],[116,207,79,-0.7624826484531361],[116,208,64,-0.7679407236250244],[116,208,65,-0.7675712520493044],[116,208,66,-0.7672040547522743],[116,208,67,-0.7668391380140214],[116,208,68,-0.7664765080264906],[116,208,69,-0.766116170893067],[116,208,70,-0.7657581326281452],[116,208,71,-0.7654023991567014],[116,208,72,-0.7650489763138665],[116,208,73,-0.7646978698445108],[116,208,74,-0.7643490854028028],[116,208,75,-0.7640026285517971],[116,208,76,-0.7636585047630099],[116,208,77,-0.7633167194159954],[116,208,78,-0.7629772777979269],[116,208,79,-0.7626401851031723],[116,209,64,-0.7681012246344945],[116,209,65,-0.7677315727903765],[116,209,66,-0.7673641942685162],[116,209,67,-0.7669990953508375],[116,209,68,-0.7666362822311635],[116,209,69,-0.7662757610147984],[116,209,70,-0.7659175377180975],[116,209,71,-0.7655616182680399],[116,209,72,-0.7652080085018007],[116,209,73,-0.7648567141663367],[116,209,74,-0.7645077409179453],[116,209,75,-0.7641610943218516],[116,209,76,-0.7638167798517853],[116,209,77,-0.7634748028895564],[116,209,78,-0.7631351687246368],[116,209,79,-0.762797882553736],[116,210,64,-0.7682618667251893],[116,210,65,-0.7678920359398216],[116,210,66,-0.7675244775157986],[116,210,67,-0.7671591977368586],[116,210,68,-0.7667962027986802],[116,210,69,-0.7664354988084654],[116,210,70,-0.7660770917845088],[116,210,71,-0.7657209876557707],[116,210,72,-0.7653671922614496],[116,210,73,-0.7650157113505675],[116,210,74,-0.7646665505815297],[116,210,75,-0.7643197155217116],[116,210,76,-0.7639752116470357],[116,210,77,-0.763633044341548],[116,210,78,-0.7632932188969987],[116,210,79,-0.7629557405124191],[116,211,64,-0.7684226495732888],[116,211,65,-0.7680526411758543],[116,211,66,-0.7676849041743661],[116,211,67,-0.7673194448543552],[116,211,68,-0.7669562694133338],[116,211,69,-0.76659538396038],[116,211,70,-0.7662367945157057],[116,211,71,-0.7658805070102312],[116,211,72,-0.765526527285157],[116,211,73,-0.7651748610915494],[116,211,74,-0.764825514089901],[116,211,75,-0.7644784918497167],[116,211,76,-0.7641337998490914],[116,211,77,-0.7637914434742865],[116,211,78,-0.7634514280193109],[116,211,79,-0.7631137586854976],[116,212,64,-0.7685835728537442],[116,212,65,-0.7682133881754509],[116,212,66,-0.7678454739232174],[116,212,67,-0.7674798363843441],[116,212,68,-0.7671164817581557],[116,212,69,-0.7667554161555838],[116,212,70,-0.7663966455987365],[116,212,71,-0.7660401760204725],[116,212,72,-0.7656860132639729],[116,212,73,-0.7653341630823276],[116,212,74,-0.7649846311380949],[116,212,75,-0.7646374230028892],[116,212,76,-0.7642925441569571],[116,212,77,-0.7639499999887552],[116,212,78,-0.7636097957945311],[116,212,79,-0.7632719367778996],[116,213,64,-0.7687446362403016],[116,213,65,-0.7683742766143755],[116,213,66,-0.7680061864401297],[116,213,67,-0.7676403720066131],[116,213,68,-0.7672768395149396],[116,213,69,-0.7669155950778732],[116,213,70,-0.7665566447193962],[116,213,71,-0.7661999943742841],[116,213,72,-0.7658456498876777],[116,213,73,-0.7654936170146691],[116,213,74,-0.7651439014198619],[116,213,75,-0.7647965086769586],[116,213,76,-0.7644514442683374],[116,213,77,-0.7641087135846298],[116,213,78,-0.7637683219243019],[116,213,79,-0.7634302744932303],[116,214,64,-0.7689058394054713],[116,214,65,-0.7685353061671474],[116,214,66,-0.7681670414016286],[116,214,67,-0.7678010513996892],[116,214,68,-0.7674373423642111],[116,214,69,-0.767075920409768],[116,214,70,-0.7667167915621953],[116,214,71,-0.7663599617581638],[116,214,72,-0.7660054368447521],[116,214,73,-0.7656532225790339],[116,214,74,-0.7653033246276367],[116,214,75,-0.7649557485663308],[116,214,76,-0.7646104998796054],[116,214,77,-0.7642675839602466],[116,214,78,-0.7639270061089185],[116,214,79,-0.7635887715337403],[116,215,64,-0.7690671820205894],[116,215,65,-0.7686964765071037],[116,215,66,-0.7683280384830484],[116,215,67,-0.7679618742409007],[116,215,68,-0.7675979899852884],[116,215,69,-0.7672363918325732],[116,215,70,-0.7668770858104214],[116,215,71,-0.7665200778573775],[116,215,72,-0.7661653738224374],[116,215,73,-0.7658129794646343],[116,215,74,-0.7654629004525993],[116,215,75,-0.7651151423641495],[116,215,76,-0.7647697106858643],[116,215,77,-0.764426610812664],[116,215,78,-0.7640858480473913],[116,215,79,-0.7637474276003872],[116,216,64,-0.7692286637557958],[116,216,65,-0.7688577873063773],[116,216,66,-0.7684891773585112],[116,216,67,-0.7681228402063554],[116,216,68,-0.7677587820562611],[116,216,69,-0.7673970090263567],[116,216,70,-0.7670375271461171],[116,216,71,-0.7666803423559393],[116,216,72,-0.7663254605067145],[116,216,73,-0.7659728873594147],[116,216,74,-0.7656226285846536],[116,216,75,-0.7652746897622739],[116,216,76,-0.7649290763809251],[116,216,77,-0.7645857938376415],[116,216,78,-0.7642448474374233],[116,216,79,-0.763906242392814],[116,217,64,-0.7693902842800132],[116,217,65,-0.7690192382358754],[116,217,66,-0.768650457700905],[116,217,67,-0.7682839489709189],[116,217,68,-0.7679197182539691],[116,217,69,-0.7675577716699282],[116,217,70,-0.7671981152500588],[116,217,71,-0.7668407549365882],[116,217,72,-0.7664856965822817],[116,217,73,-0.7661329459500291],[116,217,74,-0.7657825087124049],[116,217,75,-0.7654343904512575],[116,217,76,-0.7650885966572856],[116,217,77,-0.7647451327296164],[116,217,78,-0.7644040039753883],[116,217,79,-0.7640652156093268],[116,218,64,-0.7695520432610081],[116,218,65,-0.7691808289653406],[116,218,66,-0.7688118791819457],[116,218,67,-0.7684452002082758],[116,218,68,-0.7680807982540626],[116,218,69,-0.7677186794409006],[116,218,70,-0.7673588498018178],[116,218,71,-0.7670013152808505],[116,218,72,-0.7666460817326166],[116,218,73,-0.7662931549219023],[116,218,74,-0.7659425405232224],[116,218,75,-0.7655942441204096],[116,218,76,-0.7652482712061908],[116,218,77,-0.7649046271817667],[116,218,78,-0.7645633173563928],[116,218,79,-0.7642243469469568],[116,219,64,-0.769713940365369],[116,219,65,-0.7693425591633295],[116,219,66,-0.7689734414721541],[116,219,67,-0.7686065935909087],[116,219,68,-0.7682420217309817],[116,219,69,-0.7678797320156676],[116,219,70,-0.7675197304797384],[116,219,71,-0.7671620230690175],[116,219,72,-0.766806615639954],[116,219,73,-0.7664535139592088],[116,219,74,-0.7661027237032162],[116,219,75,-0.7657542504577721],[116,219,76,-0.7654080997176117],[116,219,77,-0.7650642768859879],[116,219,78,-0.7647227872742532],[116,219,79,-0.7643836361014378],[116,220,64,-0.7698759752584855],[116,220,65,-0.7695044284971915],[116,220,66,-0.7691351442408357],[116,220,67,-0.7687681287900756],[116,220,68,-0.7684033883579338],[116,220,69,-0.768040929069383],[116,220,70,-0.7676807569609168],[116,220,71,-0.7673228779801242],[116,220,72,-0.7669672979852638],[116,220,73,-0.7666140227448505],[116,220,74,-0.7662630579372163],[116,220,75,-0.7659144091500999],[116,220,76,-0.7655680818802235],[116,220,77,-0.765224081532872],[116,220,78,-0.7648824134214749],[116,220,79,-0.7645430827671842],[116,221,64,-0.7700381476046089],[116,221,65,-0.769666436633129],[116,221,66,-0.7692969871561414],[116,221,67,-0.768929805475872],[116,221,68,-0.7685648978069557],[116,221,69,-0.7682022702760212],[116,221,70,-0.7678419289212617],[116,221,71,-0.7674838796920103],[116,221,72,-0.7671281284483132],[116,221,73,-0.766774680960518],[116,221,74,-0.7664235429088337],[116,221,75,-0.7660747198829203],[116,221,76,-0.7657282173814668],[116,221,77,-0.7653840408117689],[116,221,78,-0.7650421954893132],[116,221,79,-0.7647026866373532],[116,222,64,-0.7702004570668217],[116,222,65,-0.7698285832361675],[116,222,66,-0.7694589698850363],[116,222,67,-0.7690916233171995],[116,222,68,-0.7687265497488822],[116,222,69,-0.7683637553083467],[116,222,70,-0.768003246035464],[116,222,71,-0.7676450278812891],[116,222,72,-0.7672891067076352],[116,222,73,-0.7669354882866602],[116,222,74,-0.7665841783004295],[116,222,75,-0.7662351823405031],[116,222,76,-0.7658885059075159],[116,222,77,-0.7655441544107546],[116,222,78,-0.7652021331677418],[116,222,79,-0.7648624474038126],[116,223,64,-0.7703629033070618],[116,223,65,-0.76999086797018],[116,223,66,-0.7696210920933245],[116,223,67,-0.7692535819817907],[116,223,68,-0.7688883438533706],[116,223,69,-0.7685253838379382],[116,223,70,-0.7681647079770204],[116,223,71,-0.7678063222233726],[116,223,72,-0.7674502324405525],[116,223,73,-0.7670964444025081],[116,223,74,-0.7667449637931387],[116,223,75,-0.7663957962058844],[116,223,76,-0.7660489471433046],[116,223,77,-0.7657044220166564],[116,223,78,-0.765362226145478],[116,223,79,-0.7650223647571662],[116,224,64,-0.7705254859860924],[116,224,65,-0.7701532904978556],[116,224,66,-0.7697833534456187],[116,224,67,-0.7694156811361776],[116,224,68,-0.7690502797888696],[116,224,69,-0.768687155535158],[116,224,70,-0.7683263144182034],[116,224,71,-0.7679677623924396],[116,224,72,-0.7676115053231476],[116,224,73,-0.7672575489860435],[116,224,74,-0.7669058990668398],[116,224,75,-0.7665565611608355],[116,224,76,-0.7662095407724936],[116,224,77,-0.7658648433150208],[116,224,78,-0.7655224741099507],[116,224,79,-0.7651824383867214],[116,225,64,-0.7706882047635621],[116,225,65,-0.7703158504807613],[116,225,66,-0.7699457536054004],[116,225,67,-0.7695779204457538],[116,225,68,-0.7692123572226813],[116,225,69,-0.7688490700692132],[116,225,70,-0.7684880650301219],[116,225,71,-0.7681293480614977],[116,225,72,-0.7677729250303232],[116,225,73,-0.7674188017140612],[116,225,74,-0.7670669838002162],[116,225,75,-0.7667174768859244],[116,225,76,-0.7663702864775324],[116,225,77,-0.7660254179901755],[116,225,78,-0.7656828767473624],[116,225,79,-0.7653426679805517],[116,226,64,-0.7708510592979844],[116,226,65,-0.7704785475793198],[116,226,66,-0.770108292234999],[116,226,67,-0.769740299574752],[116,226,68,-0.7693745758209385],[116,226,69,-0.7690111271081336],[116,226,70,-0.7686499594826994],[116,226,71,-0.7682910789023609],[116,226,72,-0.7679344912357806],[116,226,73,-0.7675802022621463],[116,226,74,-0.7672282176707333],[116,226,75,-0.7668785430604944],[116,226,76,-0.7665311839396378],[116,226,77,-0.7661861457252077],[116,226,78,-0.7658434337426664],[116,226,79,-0.7655030532254741],[116,227,64,-0.7710140492467148],[116,227,65,-0.7706413814527884],[116,227,66,-0.77027096899557],[116,227,67,-0.7699028181862226],[116,227,68,-0.7695369352485836],[116,227,69,-0.7691733263187505],[116,227,70,-0.768811997444653],[116,227,71,-0.7684529545856287],[116,227,72,-0.7680962036119983],[116,227,73,-0.7677417503046531],[116,227,74,-0.7673896003546181],[116,227,75,-0.7670397593626409],[116,227,76,-0.7666922328387715],[116,227,77,-0.766347026201941],[116,227,78,-0.766004144779546],[116,227,79,-0.7656635938070268],[116,228,64,-0.7711771742660138],[116,228,65,-0.7708043517593197],[116,228,66,-0.7704337835471559],[116,228,67,-0.770065475942095],[116,228,68,-0.7696994351694295],[116,228,69,-0.7693356673667574],[116,228,70,-0.7689741785835534],[116,228,71,-0.7686149747807461],[116,228,72,-0.7682580618302923],[116,228,73,-0.7679034455147657],[116,228,74,-0.7675511315269191],[116,228,75,-0.7672011254692742],[116,228,76,-0.7668534328537013],[116,228,77,-0.7665080591009983],[116,228,78,-0.7661650095404748],[116,228,79,-0.7658242894095315],[116,229,64,-0.771340434011014],[116,229,65,-0.7709674581559314],[116,229,66,-0.7705967355486555],[116,229,67,-0.7702282725031464],[116,229,68,-0.7698620752461294],[116,229,69,-0.7694981499166795],[116,229,70,-0.7691365025657952],[116,229,71,-0.7687771391559738],[116,229,72,-0.7684200655607865],[116,229,73,-0.7680652875644676],[116,229,74,-0.7677128108614762],[116,229,75,-0.7673626410560874],[116,229,76,-0.7670147836619704],[116,229,77,-0.7666692441017693],[116,229,78,-0.7663260277066863],[116,229,79,-0.7659851397160617],[116,230,64,-0.771503828135746],[116,230,65,-0.7711307002985298],[116,230,66,-0.7707598246578484],[116,230,67,-0.7703912075290268],[116,230,68,-0.7700248551401997],[116,230,69,-0.7696607736318979],[116,230,70,-0.7692989690566205],[116,230,71,-0.7689394473784117],[116,230,72,-0.7685822144724355],[116,230,73,-0.7682272761245651],[116,230,74,-0.7678746380309447],[116,230,75,-0.767524305797581],[116,230,76,-0.7671762849399216],[116,230,77,-0.7668305808824356],[116,230,78,-0.7664871989581976],[116,230,79,-0.7661461444084665],[116,231,64,-0.7716673562931069],[116,231,65,-0.7712940778418796],[116,231,66,-0.7709230505313642],[116,231,67,-0.7705542806782272],[116,231,68,-0.7701877745119906],[116,231,69,-0.7698235381746183],[116,231,70,-0.7694615777200879],[116,231,71,-0.7691018991139684],[116,231,72,-0.7687445082329948],[116,231,73,-0.7683894108646572],[116,231,74,-0.7680366127067639],[116,231,75,-0.7676861193670318],[116,231,76,-0.7673379363626658],[116,231,77,-0.7669920691199391],[116,231,78,-0.7666485229737778],[116,231,79,-0.7663073031673401],[116,232,64,-0.7718310181349213],[116,232,65,-0.7714575904396648],[116,232,66,-0.7710864128247429],[116,232,67,-0.7707174916081412],[116,232,68,-0.7703508330207464],[116,232,69,-0.7699864432059325],[116,232,70,-0.769624328219134],[116,232,71,-0.7692644940274219],[116,232,72,-0.7689069465090809],[116,232,73,-0.7685516914531962],[116,232,74,-0.7681987345592186],[116,232,75,-0.7678480814365539],[116,232,76,-0.7674997376041433],[116,232,77,-0.7671537084900434],[116,232,78,-0.7668099994310109],[116,232,79,-0.7664686156720824],[116,233,64,-0.7719948133119203],[116,233,65,-0.7716212377444669],[116,233,66,-0.771249911192414],[116,233,67,-0.7708808399750434],[116,233,68,-0.7705140303245837],[116,233,69,-0.7701494883857967],[116,233,70,-0.7697872202155509],[116,233,71,-0.7694272317823985],[116,233,72,-0.7690695289661504],[116,233,73,-0.7687141175574663],[116,233,74,-0.7683610032574174],[116,233,75,-0.7680101916770774],[116,233,76,-0.7676616883371024],[116,233,77,-0.7673154986673117],[116,233,78,-0.7669716280062722],[116,233,79,-0.7666300816008778],[116,234,64,-0.772158741473719],[116,234,65,-0.7717850194077431],[116,234,66,-0.7714135452876745],[116,234,67,-0.7710443254340674],[116,234,68,-0.7706773660804699],[116,234,69,-0.7703126733730092],[116,234,70,-0.7699502533699658],[116,234,71,-0.7695901120413497],[116,234,72,-0.7692322552684776],[116,234,73,-0.768876688843561],[116,234,74,-0.7685234184692702],[116,234,75,-0.7681724497583254],[116,234,76,-0.767823788233077],[116,234,77,-0.7674774393250852],[116,234,78,-0.7671334083747064],[116,234,79,-0.7667917006306723],[116,235,64,-0.772322802268878],[116,235,65,-0.7719489350798883],[116,235,66,-0.7715773147627498],[116,235,67,-0.7712079476392671],[116,235,68,-0.7708408399442847],[116,235,69,-0.7704759978252724],[116,235,70,-0.7701134273419005],[116,235,71,-0.7697531344656151],[116,235,72,-0.7693951250792159],[116,235,73,-0.769039404976445],[116,235,74,-0.76868597986155],[116,235,75,-0.7683348553488766],[116,235,76,-0.7679860369624474],[116,235,77,-0.7676395301355438],[116,235,78,-0.7672953402102903],[116,235,79,-0.7669534724372353],[116,236,64,-0.7724869953448728],[116,236,65,-0.7721129844102028],[116,236,66,-0.7717412192687632],[116,236,67,-0.7713717062435856],[116,236,68,-0.7710044515707881],[116,236,69,-0.7706394613991611],[116,236,70,-0.7702767417897414],[116,236,71,-0.7699162987153897],[116,236,72,-0.7695581380603665],[116,236,73,-0.7692022656199226],[116,236,74,-0.7688486870998615],[116,236,75,-0.7684974081161328],[116,236,76,-0.7681484341944103],[116,236,77,-0.7678017707696752],[116,236,78,-0.7674574231857998],[116,236,79,-0.7671153966951285],[116,237,64,-0.7726513203481176],[116,237,65,-0.7722771670469178],[116,237,66,-0.7719052584557599],[116,237,67,-0.7715356008988796],[116,237,68,-0.7711682006136459],[116,237,69,-0.7708030637501468],[116,237,70,-0.7704401963707638],[116,237,71,-0.7700796044497493],[116,237,72,-0.7697212938728032],[116,237,73,-0.7693652704366625],[116,237,74,-0.7690115398486657],[116,237,75,-0.768660107726344],[116,237,76,-0.768310979597002],[116,237,77,-0.7679641608972994],[116,237,78,-0.7676196569728353],[116,237,79,-0.7672774730777298],[116,238,64,-0.7728157769239345],[116,238,65,-0.7724414826371636],[116,238,66,-0.7720694319726757],[116,238,67,-0.7716996312558883],[116,238,68,-0.7713320867253975],[116,238,69,-0.7709668045325668],[116,238,70,-0.7706037907411001],[116,238,71,-0.7702430513266187],[116,238,72,-0.7698845921762401],[116,238,73,-0.7695284190881659],[116,238,74,-0.7691745377712476],[116,238,75,-0.7688229538445768],[116,238,76,-0.7684736728370675],[116,238,77,-0.7681267001870364],[116,238,78,-0.7677820412417894],[116,238,79,-0.7674397012572011],[116,239,64,-0.7729803647166147],[116,239,65,-0.7726059308270313],[116,239,66,-0.7722337394673994],[116,239,67,-0.7718637969642943],[116,239,68,-0.771496109557518],[116,239,69,-0.7711306833996859],[116,239,70,-0.7707675245558013],[116,239,71,-0.7704066390028335],[116,239,72,-0.7700480326292942],[116,239,73,-0.7696917112348286],[116,239,74,-0.7693376805297787],[116,239,75,-0.7689859461347758],[116,239,76,-0.7686365135803216],[116,239,77,-0.7682893883063693],[116,239,78,-0.7679445756619095],[116,239,79,-0.7676020809045516],[116,240,64,-0.773145083369397],[116,240,65,-0.7727705112615506],[116,240,66,-0.772398180586749],[116,240,67,-0.7720280976727028],[116,240,68,-0.7716602687603958],[116,240,69,-0.7712947000036734],[116,240,70,-0.7709313974688158],[116,240,71,-0.7705703671341173],[116,240,72,-0.7702116148894628],[116,240,73,-0.7698551465359181],[116,240,74,-0.7695009677852946],[116,240,75,-0.7691490842597417],[116,240,76,-0.7687995014913273],[116,240,77,-0.7684522249216199],[116,240,78,-0.7681072599012746],[116,240,79,-0.7677646116896142],[116,241,64,-0.7733099325244455],[116,241,65,-0.7729352235846683],[116,241,66,-0.7725627549764518],[116,241,67,-0.7721925330286183],[116,241,68,-0.771824563983311],[116,241,69,-0.771458853995582],[116,241,70,-0.7710954091329663],[116,241,71,-0.7707342353750608],[116,241,72,-0.770375338613101],[116,241,73,-0.7700187246495521],[116,241,74,-0.7696643991976728],[116,241,75,-0.7693123678811088],[116,241,76,-0.768962636233473],[116,241,77,-0.7686152096979284],[116,241,78,-0.7682700936267735],[116,241,79,-0.7679272932810235],[116,242,64,-0.7734749118229107],[116,242,65,-0.7731000674393093],[116,242,66,-0.7727274622812044],[116,242,67,-0.7723571026785068],[116,242,68,-0.7719889948744962],[116,242,69,-0.7716231450254087],[116,242,70,-0.7712595592000118],[116,242,71,-0.7708982433791822],[116,242,72,-0.7705392034554842],[116,242,73,-0.7701824452327599],[116,242,74,-0.7698279744256941],[116,242,75,-0.7694757966594068],[116,242,76,-0.7691259174690349],[116,242,77,-0.7687783422993143],[116,242,78,-0.768433076504166],[116,242,79,-0.7680901253462774],[116,243,64,-0.7736400209048993],[116,243,65,-0.7732650424673456],[116,243,66,-0.7728923021446419],[116,243,67,-0.7725218062677643],[116,243,68,-0.772153561081106],[116,243,69,-0.7717875727420644],[116,243,70,-0.7714238473206163],[116,243,71,-0.7710623907988965],[116,243,72,-0.7707032090707757],[116,243,73,-0.770346307941451],[116,243,74,-0.769991693127011],[116,243,75,-0.769639370254029],[116,243,76,-0.7692893448591445],[116,243,77,-0.7689416223886447],[116,243,78,-0.7685962081980523],[116,243,79,-0.768253107551706],[116,244,64,-0.7738052594094976],[116,244,65,-0.7734301483096209],[116,244,66,-0.7730572742093624],[116,244,67,-0.7726866434407413],[116,244,68,-0.7723182622492407],[116,244,69,-0.7719521367933967],[116,244,70,-0.7715882731443731],[116,244,71,-0.7712266772855397],[116,244,72,-0.7708673551120516],[116,244,73,-0.770510312430439],[116,244,74,-0.7701555549581727],[116,244,75,-0.7698030883232574],[116,244,76,-0.7694529180638133],[116,244,77,-0.7691050496276586],[116,244,78,-0.7687594883718962],[116,244,79,-0.7684162395624953],[116,245,64,-0.773970626974741],[116,245,65,-0.7735953846059184],[116,245,66,-0.7732223781168956],[116,245,67,-0.7728516138407113],[116,245,68,-0.7724830980239155],[116,245,69,-0.77211683682616],[116,245,70,-0.7717528363197728],[116,245,71,-0.771391102489337],[116,245,72,-0.7710316412312692],[116,245,73,-0.7706744583534108],[116,245,74,-0.7703195595745929],[116,245,75,-0.7699669505242299],[116,245,76,-0.7696166367419016],[116,245,77,-0.7692686236769355],[116,245,78,-0.7689229166879938],[116,245,79,-0.7685795210426556],[116,246,64,-0.7741361232376747],[116,246,65,-0.7737607509950233],[116,246,66,-0.7733876135077645],[116,246,67,-0.7730167171099322],[116,246,68,-0.7726480680491212],[116,246,69,-0.772281672486076],[116,246,70,-0.7719175364942659],[116,246,71,-0.7715556660594647],[116,246,72,-0.7711960670793285],[116,246,73,-0.7708387453629875],[116,246,74,-0.7704837066306115],[116,246,75,-0.770130956513003],[116,246,76,-0.7697805005511796],[116,246,77,-0.769432344195957],[116,246,78,-0.7690864928075357],[116,246,79,-0.7687429516550834],[116,247,64,-0.7743017478343321],[116,247,65,-0.7739262471147004],[116,247,66,-0.7735529800214624],[116,247,67,-0.7731819528896248],[116,247,68,-0.7728131719678032],[116,247,69,-0.7724466434178121],[116,247,70,-0.7720823733142398],[116,247,71,-0.7717203676440278],[116,247,72,-0.77136063230605],[116,247,73,-0.771003173110703],[116,247,74,-0.770647995779473],[116,247,75,-0.7702951059445291],[116,247,76,-0.7699445091483055],[116,247,77,-0.7695962108430845],[116,247,78,-0.7692502163905838],[116,247,79,-0.7689065310615391],[116,248,64,-0.7744675003997131],[116,248,65,-0.7740918726016719],[116,248,66,-0.7737184772964323],[116,248,67,-0.7733473208199497],[116,248,68,-0.7729784094218384],[116,248,69,-0.7726117492649593],[116,248,70,-0.772247346424997],[116,248,71,-0.7718852068900386],[116,248,72,-0.7715253365601525],[116,248,73,-0.7711677412469804],[116,248,74,-0.7708124266733031],[116,248,75,-0.7704593984726341],[116,248,76,-0.7701086621888026],[116,248,77,-0.7697602232755364],[116,248,78,-0.7694140870960493],[116,248,79,-0.7690702589226242],[116,249,64,-0.7746333805678447],[116,249,65,-0.774257627091679],[116,249,66,-0.7738841049701268],[116,249,67,-0.7735128205400699],[116,249,68,-0.7731437800520969],[116,249,69,-0.7727769896700932],[116,249,70,-0.7724124554708165],[116,249,71,-0.7720501834434766],[116,249,72,-0.771690179489315],[116,249,73,-0.7713324494211953],[116,249,74,-0.7709769989631711],[116,249,75,-0.770623833750079],[116,249,76,-0.7702729593271216],[116,249,77,-0.7699243811494506],[116,249,78,-0.7695781045817549],[116,249,79,-0.7692341348978431],[116,250,64,-0.7747993879717596],[116,250,65,-0.7744235102194595],[116,250,66,-0.7740498626789875],[116,250,67,-0.7736784516881277],[116,250,68,-0.7733092834984205],[116,250,69,-0.7729423642747524],[116,250,70,-0.7725777000949314],[116,250,71,-0.7722152969492682],[116,250,72,-0.7718551607401535],[116,250,73,-0.7714972972816521],[116,250,74,-0.7711417122990677],[116,250,75,-0.7707884114285384],[116,250,76,-0.7704374002166181],[116,250,77,-0.7700886841198615],[116,250,78,-0.7697422685044113],[116,250,79,-0.7693981586455811],[116,251,64,-0.7749655222434741],[116,251,65,-0.7745895216187265],[116,251,66,-0.7742157500584218],[116,251,67,-0.7738442139012233],[116,251,68,-0.7734749193996],[116,251,69,-0.7731078727194161],[116,251,70,-0.7727430799395077],[116,251,71,-0.7723805470512626],[116,251,72,-0.7720202799582001],[116,251,73,-0.7716622844755623],[116,251,74,-0.7713065663298821],[116,251,75,-0.7709531311585764],[116,251,76,-0.7706019845095297],[116,251,77,-0.7702531318406777],[116,251,78,-0.7699065785195958],[116,251,79,-0.7695623298230816],[116,252,64,-0.7751317830140494],[116,252,65,-0.774755660922229],[116,252,66,-0.7743817667428649],[116,252,67,-0.7740101068154759],[116,252,68,-0.7736406873934363],[116,252,69,-0.7732735146435654],[116,252,70,-0.7729085946457042],[116,252,71,-0.7725459333922953],[116,252,72,-0.7721855367879633],[116,252,73,-0.7718274106491065],[116,252,74,-0.771471560703464],[116,252,75,-0.7711179925897103],[116,252,76,-0.7707667118570383],[116,252,77,-0.7704177239647438],[116,252,78,-0.7700710342818133],[116,252,79,-0.7697266480865076],[116,253,64,-0.7752981699135599],[116,253,65,-0.7749219277617211],[116,253,66,-0.774547912365748],[116,253,67,-0.7741761300659924],[116,253,68,-0.77380658711671],[116,253,69,-0.7734392896856523],[116,253,70,-0.7730742438536422],[116,253,71,-0.7727114556141548],[116,253,72,-0.7723509308728974],[116,253,73,-0.771992675447402],[116,253,74,-0.7716366950665918],[116,253,75,-0.7712829953703774],[116,253,76,-0.7709315819092383],[116,253,77,-0.7705824601438087],[116,253,78,-0.770235635444465],[116,253,79,-0.7698911130909104],[116,254,64,-0.7754646825711184],[116,254,65,-0.7750883217679857],[116,254,66,-0.7747141865595234],[116,254,67,-0.7743422832868914],[116,254,68,-0.7739726182052049],[116,254,69,-0.7736051974831235],[116,254,70,-0.7732400272024297],[116,254,71,-0.772877113357608],[116,254,72,-0.7725164618554262],[116,254,73,-0.7721580785145272],[116,254,74,-0.7718019690649973],[116,254,75,-0.7714481391479601],[116,254,76,-0.7710965943151605],[116,254,77,-0.7707473400285496],[116,254,78,-0.7704003816598728],[116,254,79,-0.7700557244902537],[116,255,64,-0.775631320614844],[116,255,65,-0.775254842570804],[116,255,66,-0.7748805889556318],[116,255,67,-0.7745085661112725],[116,255,68,-0.7741387802936763],[116,255,69,-0.7737712376723892],[116,255,70,-0.7734059443301291],[116,255,71,-0.773042906262368],[116,255,72,-0.7726821293769113],[116,255,73,-0.772323619493491],[116,255,74,-0.7719673823433332],[116,255,75,-0.7716134235687536],[116,255,76,-0.7712617487227406],[116,255,77,-0.7709123632685405],[116,255,78,-0.7705652725792462],[116,255,79,-0.7702204819373812],[116,256,64,-0.775798083671923],[116,256,65,-0.775421489799016],[116,256,66,-0.7750471191845649],[116,256,67,-0.7746749781712767],[116,256,68,-0.7743050730159138],[116,256,69,-0.7739374098888843],[116,256,70,-0.7735719948738198],[116,256,71,-0.7732088339671562],[116,256,72,-0.7728479330777143],[116,256,73,-0.7724892980262925],[116,256,74,-0.7721329345452355],[116,256,75,-0.7717788482780281],[116,256,76,-0.7714270447788808],[116,256,77,-0.7710775295123138],[116,256,78,-0.770730307852746],[116,256,79,-0.7703853850840794],[116,257,64,-0.7759649713685887],[116,257,65,-0.7755882630804989],[116,257,66,-0.7752137768758427],[116,257,67,-0.7748415190980651],[116,257,68,-0.7744714960047172],[116,257,69,-0.7741037137670465],[116,257,70,-0.7737381784695748],[116,257,71,-0.7733748961096795],[116,257,72,-0.7730138725971738],[116,257,73,-0.7726551137539008],[116,257,74,-0.7722986253133006],[116,257,75,-0.7719444129200062],[116,257,76,-0.7715924821294278],[116,257,77,-0.7712428384073378],[116,257,78,-0.7708954871294602],[116,257,79,-0.7705504335810545],[116,258,64,-0.7761319833300968],[116,258,65,-0.7757551620421448],[116,258,66,-0.7753805616579914],[116,258,67,-0.7750081885217962],[116,258,68,-0.7746380488918758],[116,258,69,-0.7742701489402938],[116,258,70,-0.7739044947524392],[116,258,71,-0.7735410923266081],[116,258,72,-0.7731799475735837],[116,258,73,-0.7728210663162308],[116,258,74,-0.7724644542890632],[116,258,75,-0.77211011713784],[116,258,76,-0.7717580604191492],[116,258,77,-0.7714082895999943],[116,258,78,-0.7710608100573821],[116,258,79,-0.7707156270779089],[116,259,64,-0.7762991191807889],[116,259,65,-0.7759221863099219],[116,259,66,-0.7755474731586046],[116,259,67,-0.7751749860716877],[116,259,68,-0.7748047313082292],[116,259,69,-0.774436715041086],[116,259,70,-0.7740709433564914],[116,259,71,-0.7737074222536371],[116,259,72,-0.7733461576442539],[116,259,73,-0.7729871553522056],[116,259,74,-0.7726304211130579],[116,259,75,-0.7722759605736734],[116,259,76,-0.7719237792917966],[116,259,77,-0.77157388273564],[116,259,78,-0.7712262762834723],[116,259,79,-0.7708809652232049],[116,260,64,-0.7764663785440598],[116,260,65,-0.7760893355088436],[116,260,66,-0.7757145110043124],[116,260,67,-0.7753419113759844],[116,260,68,-0.7749715428836359],[116,260,69,-0.7746034117008935],[116,260,70,-0.7742375239148117],[116,260,71,-0.7738738855254551],[116,260,72,-0.7735125024454792],[116,260,73,-0.773153380499725],[116,260,74,-0.7727965254247873],[116,260,75,-0.7724419428686101],[116,260,76,-0.7720896383900728],[116,260,77,-0.771739617458575],[116,260,78,-0.7713918854536264],[116,260,79,-0.7710464476644315],[116,261,64,-0.7766337610423821],[116,261,65,-0.7762566092629922],[116,261,66,-0.7758816748208052],[116,261,67,-0.7755089640619831],[116,261,68,-0.7751384832469974],[116,261,69,-0.774770238550221],[116,261,70,-0.7744042360595064],[116,261,71,-0.7740404817757681],[116,261,72,-0.7736789816125642],[116,261,73,-0.7733197413956897],[116,261,74,-0.7729627668627462],[116,261,75,-0.772608063662738],[116,261,76,-0.7722556373556566],[116,261,77,-0.7719054934120673],[116,261,78,-0.7715576372126989],[116,261,79,-0.7712120740480289],[116,262,64,-0.7768012662972752],[116,262,65,-0.7764240071954874],[116,262,66,-0.7760489642328021],[116,262,67,-0.7756761437560008],[116,262,68,-0.7753055520262268],[116,262,69,-0.7749371952185758],[116,262,70,-0.7745710794216757],[116,262,71,-0.7742072106372679],[116,262,72,-0.77384559477979],[116,262,73,-0.7734862376759686],[116,262,74,-0.7731291450643903],[116,262,75,-0.7727743225950967],[116,262,76,-0.77242177582917],[116,262,77,-0.7720715102383198],[116,262,78,-0.7717235312044722],[116,262,79,-0.7713778440193564],[116,263,64,-0.7769688939293657],[116,263,65,-0.7765915289285483],[116,263,66,-0.7762163788641124],[116,263,67,-0.775843450083436],[116,263,68,-0.7754727488483101],[116,263,69,-0.7751042813345304],[116,263,70,-0.7747380536314763],[116,263,71,-0.7743740717416938],[116,263,72,-0.7740123415804767],[116,263,73,-0.7736528689754616],[116,263,74,-0.773295659666197],[116,263,75,-0.7729407193037399],[116,263,76,-0.7725880534502414],[116,263,77,-0.7722376675785332],[116,263,78,-0.7718895670717179],[116,263,79,-0.7715437572227541],[116,264,64,-0.7771366435583661],[116,264,65,-0.7767591740834707],[116,264,66,-0.776383918337614],[116,264,67,-0.7760108826687467],[116,264,68,-0.7756400733392842],[116,264,69,-0.7752714965256986],[116,264,70,-0.7749051583180981],[116,264,71,-0.7745410647198099],[116,264,72,-0.7741792216469616],[116,264,73,-0.7738196349280768],[116,264,74,-0.7734623103036437],[116,264,75,-0.7731072534257127],[116,264,76,-0.7727544698574818],[116,264,77,-0.7724039650728831],[116,264,78,-0.7720557444561738],[116,264,79,-0.7717098133015213],[116,265,64,-0.7773045148030522],[116,265,65,-0.7769269422806045],[116,265,66,-0.77655158227523],[116,265,67,-0.7761784411354278],[116,265,68,-0.7758075251242141],[116,265,69,-0.7754388404187144],[116,265,70,-0.7750723931097423],[116,265,71,-0.774708189201383],[116,265,72,-0.7743462346105756],[116,265,73,-0.7739865351667075],[116,265,74,-0.7736290966111847],[116,265,75,-0.7732739245970289],[116,265,76,-0.7729210246884626],[116,265,77,-0.7725704023604969],[116,265,78,-0.7722220629985218],[116,265,79,-0.7718760118978922],[116,266,64,-0.7774725072813246],[116,266,65,-0.7770948331394163],[116,266,66,-0.7767193702979909],[116,266,67,-0.7763461251060727],[116,266,68,-0.775975103827255],[116,266,69,-0.7756063126392929],[116,266,70,-0.7752397576336825],[116,266,71,-0.774875444815244],[116,266,72,-0.7745133801017049],[116,266,73,-0.7741535693232944],[116,266,74,-0.7737960182223136],[116,266,75,-0.7734407324527328],[116,266,76,-0.7730877175797778],[116,266,77,-0.7727369790795162],[116,266,78,-0.7723885223384497],[116,266,79,-0.772042352653099],[116,267,64,-0.7776406206101767],[116,267,65,-0.7772628462784563],[116,267,66,-0.7768872820260029],[116,267,67,-0.7765139342023418],[116,267,68,-0.77614280907162],[116,267,69,-0.7757739128121988],[116,267,70,-0.7754072515162332],[116,267,71,-0.7750428311892562],[116,267,72,-0.7746806577497604],[116,267,73,-0.7743207370287939],[116,267,74,-0.7739630747695305],[116,267,75,-0.7736076766268675],[116,267,76,-0.773254548167011],[116,267,77,-0.7729036948670643],[116,267,78,-0.7725551221146185],[116,267,79,-0.7722088352073392],[116,268,64,-0.77780885440572],[116,268,65,-0.7774309813153841],[116,268,66,-0.7770553170784721],[116,268,67,-0.7766818680449865],[116,268,68,-0.7763106404796047],[116,268,69,-0.7759416405612704],[116,268,70,-0.7755748743827748],[116,268,71,-0.7752103479503396],[116,268,72,-0.7748480671832004],[116,268,73,-0.7744880379132015],[116,268,74,-0.7741302658843671],[116,268,75,-0.7737747567524985],[116,268,76,-0.7734215160847611],[116,268,77,-0.7730705493592711],[116,268,78,-0.7727218619646878],[116,268,79,-0.7723754591998002],[116,269,64,-0.7779772082831513],[116,269,65,-0.7775992378669356],[116,269,66,-0.7772234750736723],[116,269,67,-0.7768499262538178],[116,269,68,-0.7764785976725553],[116,269,69,-0.7761094955093881],[116,269,70,-0.7757426258577201],[116,269,71,-0.775377994724439],[116,269,72,-0.7750156080294999],[116,269,73,-0.7746554716055208],[116,269,74,-0.7742975911973539],[116,269,75,-0.7739419724616825],[116,269,76,-0.7735886209666085],[116,269,77,-0.7732375421912401],[116,269,78,-0.7728887415252826],[116,269,79,-0.7725422242686267],[116,270,64,-0.7781456818568149],[116,270,65,-0.7777676155489853],[116,270,66,-0.7773917556290075],[116,270,67,-0.7770181084477673],[116,270,68,-0.7766466802709304],[116,270,69,-0.7762774772785362],[116,270,70,-0.7759105055645776],[116,270,71,-0.7755457711365853],[116,270,72,-0.7751832799152112],[116,270,73,-0.7748230377338247],[116,270,74,-0.7744650503380826],[116,270,75,-0.7741093233855285],[116,270,76,-0.7737558624451788],[116,270,77,-0.7734046729971109],[116,270,78,-0.7730557604320556],[116,270,79,-0.7727091300509832],[116,271,64,-0.7783142747401799],[116,271,65,-0.7779361139765242],[116,271,66,-0.7775601583609888],[116,271,67,-0.7771864142448653],[116,271,68,-0.7768148878942784],[116,271,69,-0.7764455854897797],[116,271,70,-0.7760785131259278],[116,271,71,-0.7757136768108736],[116,271,72,-0.7753510824659429],[116,271,73,-0.7749907359252328],[116,271,74,-0.7746326429351835],[116,271,75,-0.7742768091541758],[116,271,76,-0.7739232401521186],[116,271,77,-0.773571941410037],[116,271,78,-0.7732229183196646],[116,271,79,-0.7728761761830307],[116,272,64,-0.7784829865458183],[116,272,65,-0.7781047327636366],[116,272,66,-0.7777286828852122],[116,272,67,-0.7773548432622184],[116,272,68,-0.776983220161215],[116,272,69,-0.7766138197632422],[116,272,70,-0.7762466481634016],[116,272,71,-0.7758817113704403],[116,272,72,-0.7755190153063353],[116,272,73,-0.7751585658058893],[116,272,74,-0.7748003686163024],[116,272,75,-0.7744444293967707],[116,272,76,-0.7740907537180733],[116,272,77,-0.7737393470621613],[116,272,78,-0.7733902148217494],[116,272,79,-0.7730433622999041],[116,273,64,-0.7786518168854656],[116,273,65,-0.7782734715235621],[116,273,66,-0.7778973288164202],[116,273,67,-0.7775233951160705],[116,273,68,-0.7771516766894846],[116,273,69,-0.7767821797181679],[116,273,70,-0.7764149102977409],[116,273,71,-0.7760498744375246],[116,273,72,-0.7756870780601238],[116,273,73,-0.7753265270010239],[116,273,74,-0.7749682270081625],[116,273,75,-0.7746121837415286],[116,273,76,-0.7742584027727495],[116,273,77,-0.7739068895846798],[116,273,78,-0.773557649570994],[116,273,79,-0.7732106880357743],[116,274,64,-0.7788207653699902],[116,274,65,-0.7784423298686639],[116,274,66,-0.7780660957684694],[116,274,67,-0.7776920694217715],[116,274,68,-0.777320257095929],[116,274,69,-0.776950664972889],[116,274,70,-0.776583299148768],[116,274,71,-0.7762181656334372],[116,274,72,-0.7758552703501063],[116,274,73,-0.7754946191349203],[116,274,74,-0.7751362177365326],[116,274,75,-0.7747800718157019],[116,274,76,-0.7744261869448817],[116,274,77,-0.7740745686078085],[116,274,78,-0.7737252221990945],[116,274,79,-0.7733781530238157],[116,275,64,-0.778989831609417],[116,275,65,-0.7786113074104528],[116,275,66,-0.778234983354356],[116,275,67,-0.7778608657938013],[116,275,68,-0.7774889609965112],[116,275,69,-0.7771192751448508],[116,275,70,-0.7767518143354089],[116,275,71,-0.7763865845785836],[116,275,72,-0.7760235917981669],[116,275,73,-0.775662841830941],[116,275,74,-0.7753043404262512],[116,275,75,-0.7749480932456045],[116,275,76,-0.7745941058622581],[116,275,77,-0.774242383760808],[116,275,78,-0.7738929323367827],[116,275,79,-0.7735457568962305],[116,276,64,-0.7791590152128955],[116,276,65,-0.7787804037595556],[116,276,66,-0.7784039911861831],[116,276,67,-0.7780297838457382],[116,276,68,-0.7776577880062836],[116,276,69,-0.7772880098505786],[116,276,70,-0.776920455475661],[116,276,71,-0.776555130892433],[116,276,72,-0.776192042025245],[116,276,73,-0.7758311947114938],[116,276,74,-0.7754725947011942],[116,276,75,-0.7751162476565789],[116,276,76,-0.7747621591516864],[116,276,77,-0.7744103346719509],[116,276,78,-0.7740607796137944],[116,276,79,-0.7737134992842166],[116,277,64,-0.7793283157887618],[116,277,65,-0.7789496185257765],[116,277,66,-0.778573118875222],[116,277,67,-0.7781988231903202],[116,277,68,-0.7778267377394497],[116,277,69,-0.7774568687057406],[116,277,70,-0.7770892221866563],[116,277,71,-0.7767238041935793],[116,277,72,-0.7763606206513962],[116,277,73,-0.7759996773980948],[116,277,74,-0.7756409801843371],[116,277,75,-0.7752845346730589],[116,277,76,-0.774930346439058],[116,277,77,-0.774578420968584],[116,277,78,-0.7742287636589315],[116,277,79,-0.7738813798180293],[116,278,64,-0.7794977329445156],[116,278,65,-0.7791189513180747],[116,278,66,-0.7787423660318904],[116,278,67,-0.7783679834394224],[116,278,68,-0.7779958098093415],[116,278,69,-0.7776258513251246],[116,278,70,-0.7772581140846373],[116,278,71,-0.7768926040997192],[116,278,72,-0.7765293272957697],[116,278,73,-0.7761682895113452],[116,278,74,-0.775809496497732],[116,278,75,-0.7754529539185464],[116,278,76,-0.7750986673493232],[116,278,77,-0.7747466422771055],[116,278,78,-0.7743968841000386],[116,278,79,-0.7740493981269586],[116,279,64,-0.7796672662867985],[116,279,65,-0.779288401744542],[116,279,66,-0.7789117322657296],[116,279,67,-0.7785372642040349],[116,279,68,-0.7781650038283967],[116,279,69,-0.7777949573226153],[116,279,70,-0.7774271307849348],[116,279,71,-0.7770615302276287],[116,279,72,-0.776698161576586],[116,279,73,-0.7763370306709088],[116,279,74,-0.7759781432624848],[116,279,75,-0.7756215050155886],[116,279,76,-0.7752671215064695],[116,279,77,-0.7749149982229422],[116,279,78,-0.7745651405639804],[116,279,79,-0.7742175538393061],[116,280,64,-0.7798369154214546],[116,280,65,-0.7794579694124639],[116,280,66,-0.7790812171854662],[116,280,67,-0.778706665094324],[116,280,68,-0.7783343194082208],[116,280,69,-0.7779641863112565],[116,280,70,-0.77759627190203],[116,280,71,-0.7772305821932254],[116,280,72,-0.7768671231111984],[116,280,73,-0.7765059004955732],[116,280,74,-0.7761469200988171],[116,280,75,-0.7757901875858398],[116,280,76,-0.775435708533583],[116,280,77,-0.7750834884306108],[116,280,78,-0.7747335326767036],[116,280,79,-0.7743858465824475],[116,281,64,-0.7800066799534994],[116,281,65,-0.7796276539282886],[116,281,66,-0.7792508203989796],[116,281,67,-0.7788761857196005],[116,281,68,-0.7785037561595549],[116,281,69,-0.7781335379032187],[116,281,70,-0.777765537049522],[116,281,71,-0.7773997596115364],[116,281,72,-0.7770362115160606],[116,281,73,-0.7766748986032188],[116,281,74,-0.7763158266260344],[116,281,75,-0.7759590012500297],[116,281,76,-0.7756044280528168],[116,281,77,-0.7752521125236869],[116,281,78,-0.7749020600632047],[116,281,79,-0.7745542759827992],[116,282,64,-0.7801765594871436],[116,282,65,-0.7797974548976502],[116,282,66,-0.7794205415133273],[116,282,67,-0.7790458256883437],[116,282,68,-0.7786733136922999],[116,282,69,-0.7783030117098233],[116,282,70,-0.7779349258401522],[116,282,71,-0.7775690620967222],[116,282,72,-0.7772054264067517],[116,282,73,-0.7768440246108419],[116,282,74,-0.7764848624625492],[116,282,75,-0.7761279456279869],[116,282,76,-0.7757732796854142],[116,282,77,-0.7754208701248274],[116,282,78,-0.7750707223475543],[116,282,79,-0.774722841665844],[116,283,64,-0.7803465536257612],[116,283,65,-0.7799673719253375],[116,283,66,-0.7795903801347117],[116,283,67,-0.7792155846081696],[116,283,68,-0.778842991615484],[116,283,69,-0.7784726073415109],[116,283,70,-0.7781044378857725],[116,283,71,-0.7777384892620447],[116,283,72,-0.7773747673979434],[116,283,73,-0.7770132781345229],[116,283,74,-0.7766540272258504],[116,283,75,-0.776297020338607],[116,283,76,-0.7759422630516771],[116,283,77,-0.7755897608557398],[116,283,78,-0.7752395191528638],[116,283,79,-0.774891543256097],[116,284,64,-0.7805166619719517],[116,284,65,-0.7801374046153553],[116,284,66,-0.7797603358685428],[116,284,67,-0.7793854620858924],[116,284,68,-0.7790127895373256],[116,284,69,-0.7786423244079025],[116,284,70,-0.778274072797406],[116,284,71,-0.7779080407199293],[116,284,72,-0.7775442341034616],[116,284,73,-0.7771826587894881],[116,284,74,-0.7768233205325636],[116,284,75,-0.7764662249999146],[116,284,76,-0.776111377771028],[116,284,77,-0.7757587843372438],[116,284,78,-0.775408450101349],[116,284,79,-0.775060380377169],[116,285,64,-0.7806868841275163],[116,285,65,-0.7803075525709019],[116,285,66,-0.7799304083194148],[116,285,67,-0.7795554577275021],[116,285,68,-0.7791827070652093],[116,285,69,-0.7788121625177773],[116,285,70,-0.7784438301852259],[116,285,71,-0.7780777160819417],[116,285,72,-0.7777138261362646],[116,285,73,-0.7773521661900873],[116,285,74,-0.7769927419984296],[116,285,75,-0.7766355592290403],[116,285,76,-0.7762806234619868],[116,285,77,-0.7759279401892474],[116,285,78,-0.775577514814306],[116,285,79,-0.775229352651743],[116,286,64,-0.7808572196934368],[116,286,65,-0.7804778153943464],[116,286,66,-0.7801005970910841],[116,286,67,-0.7797255711381414],[116,286,68,-0.779352743805664],[116,286,69,-0.7789821212790494],[116,286,70,-0.7786137096585309],[116,286,71,-0.7782475149587651],[116,286,72,-0.7778835431084192],[116,286,73,-0.7775217999497701],[116,286,74,-0.7771622912382801],[116,286,75,-0.7768050226421974],[116,286,76,-0.7764499997421476],[116,286,77,-0.776097228030725],[116,286,78,-0.7757467129120882],[116,286,79,-0.7753984597015509],[116,287,64,-0.7810276682699357],[116,287,65,-0.7806481926872901],[116,287,66,-0.7802709017865305],[116,287,67,-0.7798958019221678],[116,287,68,-0.7795228993644242],[116,287,69,-0.7791522002988303],[116,287,70,-0.7787837108258086],[116,287,71,-0.7784174369602626],[116,287,72,-0.778053384631163],[116,287,73,-0.7776915596811488],[116,287,74,-0.7773319678661008],[116,287,75,-0.7769746148547447],[116,287,76,-0.7766195062282413],[116,287,77,-0.776266647479779],[116,287,78,-0.7759160440141688],[116,287,79,-0.775567701147436],[116,288,64,-0.781198229456455],[116,288,65,-0.7808186840505447],[116,288,66,-0.7804413220079343],[116,288,67,-0.7800661496831305],[116,288,68,-0.7796931733464078],[116,288,69,-0.7793223991834053],[116,288,70,-0.7789538332947117],[116,288,71,-0.7785874816954533],[116,288,72,-0.7782233503148821],[116,288,73,-0.7778614449959744],[116,288,74,-0.777501771495008],[116,288,75,-0.7771443354811628],[116,288,76,-0.7767891425361124],[116,288,77,-0.7764361981536169],[116,288,78,-0.7760855077391176],[116,288,79,-0.7757370766093297],[116,289,64,-0.7813689028516324],[116,289,65,-0.7809892890841085],[116,289,66,-0.7806118573566543],[116,289,67,-0.7802366140237482],[116,289,68,-0.7798635653556925],[116,289,69,-0.7794927175382114],[116,289,70,-0.7791240766720355],[116,289,71,-0.778757648772491],[116,289,72,-0.7783934397690868],[116,289,73,-0.7780314555051149],[116,289,74,-0.7776717017372258],[116,289,75,-0.7773141841350313],[116,289,76,-0.7769589082806957],[116,289,77,-0.7766058796685278],[116,289,78,-0.7762551037045778],[116,289,79,-0.7759065857062284],[116,290,64,-0.7815396880533636],[116,290,65,-0.7811600073872287],[116,290,66,-0.7807825074332893],[116,290,67,-0.7804071945459705],[116,290,68,-0.7800340749955785],[116,290,69,-0.7796631549678985],[116,290,70,-0.7792944405637798],[116,290,71,-0.7789279377987245],[116,290,72,-0.7785636526024752],[116,290,73,-0.7782015908186158],[116,290,74,-0.7778417582041476],[116,290,75,-0.7774841604290912],[116,290,76,-0.7771288030760785],[116,290,77,-0.7767756916399454],[116,290,78,-0.7764248315273283],[116,290,79,-0.7760762280562556],[116,291,64,-0.7817105846587699],[116,291,65,-0.7813308385583694],[116,291,66,-0.7809532718376453],[116,291,67,-0.7805778908509454],[116,291,68,-0.7802047018685555],[116,291,69,-0.7798337110762981],[116,291,70,-0.7794649245751166],[116,291,71,-0.779098348380666],[116,291,72,-0.7787339884228993],[116,291,73,-0.7783718505456694],[116,291,74,-0.7780119405063044],[116,291,75,-0.7776542639752118],[116,291,76,-0.7772988265354683],[116,291,77,-0.7769456336824146],[116,291,78,-0.7765946908232509],[116,291,79,-0.7762460032766297],[116,292,64,-0.7818815922642225],[116,292,65,-0.7815017821952355],[116,292,66,-0.7811241501687607],[116,292,67,-0.7807487025390443],[116,292,68,-0.7803754455763275],[116,292,69,-0.780004385466446],[116,292,70,-0.7796355283104142],[116,292,71,-0.7792688801240155],[116,292,72,-0.7789044468373905],[116,292,73,-0.7785422342946372],[116,292,74,-0.7781822482533888],[116,292,75,-0.7778244943844155],[116,292,76,-0.777468978271217],[116,292,77,-0.777115705409616],[116,292,78,-0.7767646812073549],[116,292,79,-0.7764159109836878],[116,293,64,-0.7820527104653108],[116,293,65,-0.7816728378947405],[116,293,66,-0.7812951420248734],[116,293,67,-0.7809196292098289],[116,293,68,-0.7805463057197801],[116,293,69,-0.7801751777405516],[116,293,70,-0.7798062513732047],[116,293,71,-0.7794395326336282],[116,293,72,-0.7790750274521261],[116,293,73,-0.7787127416730192],[116,293,74,-0.7783526810542217],[116,293,75,-0.7779948512668446],[116,293,76,-0.7776392578947878],[116,293,77,-0.7772859064343336],[116,293,78,-0.7769348022937439],[116,293,79,-0.7765859507928528],[116,294,64,-0.7822239388569031],[116,294,65,-0.7818440052530686],[116,294,66,-0.7814662470034824],[116,294,67,-0.7810906704621139],[116,294,68,-0.7807172818990428],[116,294,69,-0.7803460875000586],[116,294,70,-0.7799770933662463],[116,294,71,-0.7796103055135761],[116,294,72,-0.7792457298724922],[116,294,73,-0.7788833722875146],[116,294,74,-0.7785232385168158],[116,294,75,-0.7781653342318247],[116,294,76,-0.7778096650168183],[116,294,77,-0.7774562363685164],[116,294,78,-0.7771050536956784],[116,294,79,-0.7767561223186964],[116,295,64,-0.7823952770331251],[116,295,65,-0.7820152838656516],[116,295,66,-0.7816374647013261],[116,295,67,-0.7812618258939431],[116,295,68,-0.7808883737134652],[116,295,69,-0.780517114345623],[116,295,70,-0.7801480538915004],[116,295,71,-0.7797811983671257],[116,295,72,-0.7794165537030601],[116,295,73,-0.7790541257439993],[116,295,74,-0.7786939202483513],[116,295,75,-0.7783359428878396],[116,295,76,-0.7779801992470963],[116,295,77,-0.7776266948232557],[116,295,78,-0.7772754350255527],[116,295,79,-0.7769264251749153],[116,296,64,-0.7825667245873357],[116,296,65,-0.7821866733271459],[116,296,66,-0.7818087947143583],[116,296,67,-0.7814330951025676],[116,296,68,-0.7810595807615954],[116,296,69,-0.7806882578770891],[116,296,70,-0.780319132550108],[116,296,71,-0.7799522107967145],[116,296,72,-0.7795874985475635],[116,296,73,-0.779225001647503],[116,296,74,-0.7788647258551534],[116,296,75,-0.7785066768425101],[116,296,76,-0.7781508601945373],[116,296,77,-0.7777972814087618],[116,296,78,-0.7774459458948714],[116,296,79,-0.7770968589743078],[116,297,64,-0.7827382811121901],[116,297,65,-0.7823581732314948],[116,297,66,-0.7819802366378101],[116,297,67,-0.7816044776845069],[116,297,68,-0.781230902641241],[116,297,69,-0.7808595176935522],[116,297,70,-0.7804903289424521],[116,297,71,-0.7801233424040134],[116,297,72,-0.7797585640089604],[116,297,73,-0.7793959996022709],[116,297,74,-0.7790356549427542],[116,297,75,-0.778677535702655],[116,297,76,-0.7783216474672465],[116,297,77,-0.7779679957344261],[116,297,78,-0.7776165859143116],[116,297,79,-0.7772674233288369],[116,298,64,-0.7829099461996067],[116,298,65,-0.782529783171896],[116,298,66,-0.7821517900661585],[116,298,67,-0.7817759732355168],[116,298,68,-0.7814023389494366],[116,298,69,-0.7810308933933265],[116,298,70,-0.7806616426681255],[116,298,71,-0.7802945927898933],[116,298,72,-0.7799297496894007],[116,298,73,-0.7795671192117312],[116,298,74,-0.7792067071158603],[116,298,75,-0.7788485190742586],[116,298,76,-0.7784925606724865],[116,298,77,-0.7781388374087883],[116,298,78,-0.7777873546936905],[116,298,79,-0.7774381178495966],[116,299,64,-0.7830817194407915],[116,299,65,-0.7827015027408255],[116,299,66,-0.7823234545931498],[116,299,67,-0.7819475813506136],[116,299,68,-0.7815738892824686],[116,299,69,-0.7812023845739681],[116,299,70,-0.7808330733259545],[116,299,71,-0.7804659615544507],[116,299,72,-0.7801010551902503],[116,299,73,-0.7797383600785195],[116,299,74,-0.7793778819783765],[116,299,75,-0.7790196265624956],[116,299,76,-0.7786635994167006],[116,299,77,-0.778309806039561],[116,299,78,-0.7779582518419894],[116,299,79,-0.7776089421468366],[116,300,64,-0.7832536004262061],[116,300,65,-0.7828733315300058],[116,300,66,-0.7824952298117671],[116,300,67,-0.7821193016240418],[116,300,68,-0.7817455532358427],[116,300,69,-0.7813739908322435],[116,300,70,-0.7810046205139666],[116,300,71,-0.780637448296974],[116,300,72,-0.7802724801120586],[116,300,73,-0.7799097218044462],[116,300,74,-0.7795491791333743],[116,300,75,-0.7791908577716975],[116,300,76,-0.7788347633054811],[116,300,77,-0.7784809012335966],[116,300,78,-0.7781292769673207],[116,300,79,-0.7777798958299292],[116,301,64,-0.7834255887456287],[116,301,65,-0.7830452691304672],[116,301,66,-0.7826671153142929],[116,301,67,-0.7822911336493357],[116,301,68,-0.7819173304043451],[116,301,69,-0.7815457117641914],[116,301,70,-0.7811762838294525],[116,301,71,-0.7808090526160062],[116,301,72,-0.7804440240546209],[116,301,73,-0.7800812039905582],[116,301,74,-0.7797205981831523],[116,301,75,-0.7793622123054151],[116,301,76,-0.7790060519436306],[116,301,77,-0.7786521225969496],[116,301,78,-0.7783004296769904],[116,301,79,-0.7779509785074323],[116,302,64,-0.7835976839881322],[116,302,65,-0.7832173151325252],[116,302,66,-0.7828391106922856],[116,302,67,-0.7824630770192965],[116,302,68,-0.7820892203820204],[116,302,69,-0.7817175469650993],[116,302,70,-0.7813480628689431],[116,302,71,-0.7809807741093213],[116,302,72,-0.7806156866169542],[116,302,73,-0.7802528062371162],[116,302,74,-0.7798921387292148],[116,302,75,-0.779533689766396],[116,302,76,-0.7791774649351395],[116,302,77,-0.7788234697348536],[116,302,78,-0.7784717095774752],[116,302,79,-0.778122189787065],[116,303,64,-0.783769885742061],[116,303,65,-0.7833894691257577],[116,303,66,-0.7830112155365566],[116,303,67,-0.7826351313259698],[116,303,68,-0.7822612227621479],[116,303,69,-0.7818894960294809],[116,303,70,-0.7815199572281862],[116,303,71,-0.7811526123739015],[116,303,72,-0.7807874673972754],[116,303,73,-0.7804245281435714],[116,303,74,-0.7800638003722471],[116,303,75,-0.7797052897565601],[116,303,76,-0.7793490018831625],[116,303,77,-0.7789949422516974],[116,303,78,-0.7786431162743984],[116,303,79,-0.778293529275685],[116,304,64,-0.7839421935950919],[116,304,65,-0.783561730699066],[116,304,66,-0.7831834294372322],[116,304,67,-0.7828072961607069],[116,304,68,-0.7824333371373042],[116,304,69,-0.7820615585511378],[116,304,70,-0.781691966502209],[116,304,71,-0.7813245670059993],[116,304,72,-0.7809593659930625],[116,304,73,-0.7805963693086274],[116,304,74,-0.7802355827121789],[116,304,75,-0.7798770118770624],[116,304,76,-0.7795206623900803],[116,304,77,-0.7791665397510878],[116,304,78,-0.7788146493725927],[116,304,79,-0.7784649965793506],[116,305,64,-0.7841146071342031],[116,305,65,-0.7837340994406437],[116,305,66,-0.7833557519837214],[116,305,67,-0.7829795711141324],[116,305,68,-0.7826055630993298],[116,305,69,-0.7822337341231269],[116,305,70,-0.7818640902852845],[116,305,71,-0.7814966376011045],[116,305,72,-0.781131382001022],[116,305,73,-0.7807683293302078],[116,305,74,-0.7804074853481504],[116,305,75,-0.7800488557282605],[116,305,76,-0.779692446057468],[116,305,77,-0.7793382618358169],[116,305,78,-0.7789863084760669],[116,305,79,-0.7786365913032881],[116,306,64,-0.7842871259456972],[116,306,65,-0.7839065749379996],[116,306,66,-0.7835281827647398],[116,306,67,-0.7831519557761685],[116,306,68,-0.7827779002393541],[116,306,69,-0.7824060223377847],[116,306,70,-0.7820363281709569],[116,306,71,-0.7816688237539692],[116,306,72,-0.7813035150171136],[116,306,73,-0.7809404078054802],[116,306,74,-0.7805795078785376],[116,306,75,-0.7802208209097388],[116,306,76,-0.7798643524861177],[116,306,77,-0.7795101081078853],[116,306,78,-0.7791580931880305],[116,306,79,-0.7788083130519158],[116,307,64,-0.7844597496151698],[116,307,65,-0.7840791567779263],[116,307,66,-0.783700721368277],[116,307,67,-0.7833244497360026],[116,307,68,-0.7829503481477623],[116,307,69,-0.7825784227866949],[116,307,70,-0.7822086797520083],[116,307,71,-0.7818411250585737],[116,307,72,-0.781475764636517],[116,307,73,-0.7811126043308234],[116,307,74,-0.7807516499009185],[116,307,75,-0.7803929070202746],[116,307,76,-0.780036381276007],[116,307,77,-0.7796820781684706],[116,307,78,-0.779330003110861],[116,307,79,-0.7789801614288107],[116,308,64,-0.7846324777275706],[116,308,65,-0.7842518445465612],[116,308,66,-0.7838733673816586],[116,308,67,-0.7834970525821492],[116,308,68,-0.7831229064142579],[116,308,69,-0.7827509350607498],[116,308,70,-0.7823811446205208],[116,308,71,-0.7820135411081903],[116,308,72,-0.7816481304536943],[116,308,73,-0.78128491850189],[116,308,74,-0.7809239110121364],[116,308,75,-0.7805651136579022],[116,308,76,-0.7802085320263608],[116,308,77,-0.7798541716179884],[116,308,78,-0.7795020378461653],[116,308,79,-0.7791521360367715],[116,309,64,-0.7848053098671803],[116,309,65,-0.7844246378293639],[116,309,66,-0.7840461203915234],[116,309,67,-0.7836697639024264],[116,309,68,-0.7832955746278387],[116,309,69,-0.782923558750128],[116,309,70,-0.7825537223678533],[116,309,71,-0.7821860714953586],[116,309,72,-0.7818206120623665],[116,309,73,-0.7814573499135823],[116,309,74,-0.7810962908082755],[116,309,75,-0.7807374404198875],[116,309,76,-0.7803808043356273],[116,309,77,-0.78002638805607],[116,309,78,-0.7796741969947574],[116,309,79,-0.7793242364777949],[116,310,64,-0.7849782456175884],[116,310,65,-0.7845975362110933],[116,310,66,-0.7842189799838006],[116,310,67,-0.7838425832839334],[116,310,68,-0.7834683523767749],[116,310,69,-0.7830962934442705],[116,310,70,-0.7827264125846183],[116,310,71,-0.7823587158118634],[116,310,72,-0.7819932090554906],[116,310,73,-0.7816298981600299],[116,310,74,-0.7812687888846381],[116,310,75,-0.7809098869027062],[116,310,76,-0.780553197801456],[116,310,77,-0.7801987270815383],[116,310,78,-0.779846480156634],[116,310,79,-0.7794964623530519],[116,311,64,-0.7851512845617543],[116,311,65,-0.784770539275869],[116,311,66,-0.78439194574377],[116,311,67,-0.7840155103131119],[116,311,68,-0.7836412392486699],[116,311,69,-0.783269138731943],[116,311,70,-0.7828992148607444],[116,311,71,-0.7825314736487959],[116,311,72,-0.7821659210253211],[116,311,73,-0.7818025628346513],[116,311,74,-0.781441404835807],[116,311,75,-0.7810824527021056],[116,311,76,-0.7807257120207587],[116,311,77,-0.7803711882924701],[116,311,78,-0.7800188869310376],[116,311,79,-0.7796688132629505],[116,312,64,-0.785324426281975],[116,312,65,-0.7849436466071393],[116,312,66,-0.7845650172560319],[116,312,67,-0.7841885445757139],[116,312,68,-0.7838142348304282],[116,312,69,-0.7834420942012033],[116,312,70,-0.7830721287854427],[116,312,71,-0.7827043445965215],[116,312,72,-0.7823387475633782],[116,312,73,-0.7819753435301214],[116,312,74,-0.7816141382556122],[116,312,75,-0.7812551374130714],[116,312,76,-0.780898346589677],[116,312,77,-0.7805437712861636],[116,312,78,-0.7801914169164228],[116,312,79,-0.7798412888071024],[116,313,64,-0.7854976703599089],[116,313,65,-0.7851168577877046],[116,313,66,-0.784738194104529],[116,313,67,-0.7843616856568254],[116,313,68,-0.7839873387082797],[116,313,69,-0.7836151594394251],[116,313,70,-0.7832451539472319],[116,313,71,-0.7828773282447039],[116,313,72,-0.7825116882604708],[116,313,73,-0.7821482398383953],[116,313,74,-0.7817869887371554],[116,313,75,-0.7814279406298519],[116,313,76,-0.781071101103607],[116,313,77,-0.7807164756591621],[116,313,78,-0.7803640697104812],[116,313,79,-0.7800138885843474],[116,314,64,-0.7856710163765444],[116,314,65,-0.7852901723996857],[116,314,66,-0.7849114758725158],[116,314,67,-0.7845349331408344],[116,314,68,-0.7841605504677468],[116,314,69,-0.7837883340332659],[116,314,70,-0.7834182899339048],[116,314,71,-0.783050424182272],[116,314,72,-0.7826847427066647],[116,314,73,-0.7823212513506759],[116,314,74,-0.7819599558727768],[116,314,75,-0.7816008619459257],[116,314,76,-0.7812439751571651],[116,314,77,-0.7808893010072216],[116,314,78,-0.7805368449101076],[116,314,79,-0.7801866121927203],[116,315,64,-0.7858444639122604],[116,315,65,-0.7854635900245851],[116,315,66,-0.7850848621426185],[116,315,67,-0.7847082866114926],[116,315,68,-0.7843338696937062],[116,315,69,-0.7839616175687286],[116,315,70,-0.783591536332591],[116,315,71,-0.7832236319974826],[116,315,72,-0.782857910491344],[116,315,73,-0.7824943776574753],[116,315,74,-0.7821330392541177],[116,315,75,-0.7817739009540632],[116,315,76,-0.7814169683442519],[116,315,77,-0.7810622469253723],[116,315,78,-0.7807097421114633],[116,315,79,-0.7803594592295131],[116,316,64,-0.7860180125468038],[116,316,65,-0.7856371102432641],[116,316,66,-0.7852583524968135],[116,316,67,-0.7848817456518915],[116,316,68,-0.7845072959703662],[116,316,69,-0.7841350096311381],[116,316,70,-0.7837648927297329],[116,316,71,-0.7833969512778961],[116,316,72,-0.7830311912031884],[116,316,73,-0.7826676183485927],[116,316,74,-0.7823062384720969],[116,316,75,-0.7819470572463034],[116,316,76,-0.7815900802580272],[116,316,77,-0.7812353130078957],[116,316,78,-0.7808827609099515],[116,316,79,-0.7805324292912516],[116,317,64,-0.7861916618592666],[116,317,65,-0.7858107326359195],[116,317,66,-0.7854319465164034],[116,317,67,-0.7850553098444402],[116,317,68,-0.7846808288812427],[116,317,69,-0.7843085098051187],[116,317,70,-0.7839383587110631],[116,317,71,-0.7835703816103544],[116,317,72,-0.7832045844301493],[116,317,73,-0.7828409730130897],[116,317,74,-0.7824795531168871],[116,317,75,-0.7821203304139308],[116,317,76,-0.7817633104908877],[116,317,77,-0.781408498848301],[116,317,78,-0.7810559009001945],[116,317,79,-0.7807055219736718],[116,318,64,-0.7863654114281471],[116,318,65,-0.7859844567821457],[116,318,66,-0.785605643782079],[116,318,67,-0.7852289787709269],[116,318,68,-0.7848544680092222],[116,318,69,-0.784482117674655],[116,318,70,-0.7841119338616661],[116,318,71,-0.7837439225810421],[116,318,72,-0.7833780897595121],[116,318,73,-0.7830144412393535],[116,318,74,-0.7826529827779773],[116,318,75,-0.7822937200475373],[116,318,76,-0.7819366586345282],[116,318,77,-0.7815818040393872],[116,318,78,-0.7812291616760962],[116,318,79,-0.7808787368717826],[116,319,64,-0.7865392608313275],[116,319,65,-0.786158282260911],[116,319,66,-0.7857794438738962],[116,319,67,-0.7854027520124958],[116,319,68,-0.7850282129365375],[116,319,69,-0.78465583282307],[116,319,70,-0.784285617765955],[116,319,71,-0.7839175737754637],[116,319,72,-0.7835517067778729],[116,319,73,-0.7831880226150725],[116,319,74,-0.7828265270441497],[116,319,75,-0.7824672257369985],[116,319,76,-0.7821101242799195],[116,319,77,-0.78175522817322],[116,319,78,-0.7814025428308178],[116,319,79,-0.7810520735798415],[117,-64,64,-0.7303270763798098],[117,-64,65,-0.7300471943655282],[117,-64,66,-0.7297697112579471],[117,-64,67,-0.7294946321671221],[117,-64,68,-0.7292219621096517],[117,-64,69,-0.728951706008263],[117,-64,70,-0.7286838686913814],[117,-64,71,-0.7284184548927061],[117,-64,72,-0.7281554692507826],[117,-64,73,-0.727894916308591],[117,-64,74,-0.7276368005131049],[117,-64,75,-0.7273811262148804],[117,-64,76,-0.7271278976676347],[117,-64,77,-0.7268771190278221],[117,-64,78,-0.7266287943542176],[117,-64,79,-0.7263829276074926],[117,-63,64,-0.7304432478219363],[117,-63,65,-0.7301629241390447],[117,-63,66,-0.7298849993114185],[117,-63,67,-0.7296094784552339],[117,-63,68,-0.7293363665932107],[117,-63,69,-0.7290656686541979],[117,-63,70,-0.7287973894727444],[117,-63,71,-0.7285315337886733],[117,-63,72,-0.7282681062466545],[117,-63,73,-0.728007111395793],[117,-63,74,-0.7277485536891872],[117,-63,75,-0.7274924374835192],[117,-63,76,-0.727238767038631],[117,-63,77,-0.7269875465171025],[117,-63,78,-0.7267387799838335],[117,-63,79,-0.7264924714056205],[117,-62,64,-0.7305595805460532],[117,-62,65,-0.7302788157185908],[117,-62,66,-0.7300004496934345],[117,-62,67,-0.729724487592873],[117,-62,68,-0.72945093444574],[117,-62,69,-0.7291797951869994],[117,-62,70,-0.7289110746573157],[117,-62,71,-0.7286447776026282],[117,-62,72,-0.7283809086737242],[117,-62,73,-0.7281194724258262],[117,-62,74,-0.7278604733181507],[117,-62,75,-0.727603915713498],[117,-62,76,-0.7273498038778284],[117,-62,77,-0.7270981419798405],[117,-62,78,-0.7268489340905522],[117,-62,79,-0.7266021841828779],[117,-61,64,-0.7306760748125188],[117,-61,65,-0.7303948693681576],[117,-61,66,-0.7301160626716002],[117,-61,67,-0.7298396598512403],[117,-61,68,-0.7295656659420175],[117,-61,69,-0.7292940858850028],[117,-61,70,-0.7290249245269691],[117,-61,71,-0.7287581866199644],[117,-61,72,-0.7284938768208856],[117,-61,73,-0.728231999691066],[117,-61,74,-0.7279725596958326],[117,-61,75,-0.727715561204097],[117,-61,76,-0.7274610084879307],[117,-61,77,-0.7272089057221438],[117,-61,78,-0.7269592569838658],[117,-61,79,-0.726712066252122],[117,-60,64,-0.7307927308784861],[117,-60,65,-0.7305110853485277],[117,-60,66,-0.7302318385103097],[117,-60,67,-0.7299549954983224],[117,-60,68,-0.7296805613536035],[117,-60,69,-0.7294085410233236],[117,-60,70,-0.729138939360356],[117,-60,71,-0.7288717611228503],[117,-60,72,-0.7286070109738056],[117,-60,73,-0.728344693480658],[117,-60,74,-0.7280848131148384],[117,-60,75,-0.7278273742513621],[117,-60,76,-0.7275723811684051],[117,-60,77,-0.7273198380468816],[117,-60,78,-0.7270697489700257],[117,-60,79,-0.7268221179229672],[117,-59,64,-0.7309095489978895],[117,-59,65,-0.7306274639172633],[117,-59,66,-0.7303477774707337],[117,-59,67,-0.7300704947988795],[117,-59,68,-0.7297956209488294],[117,-59,69,-0.7295231608738455],[117,-59,70,-0.7292531194328937],[117,-59,71,-0.7289855013902178],[117,-59,72,-0.7287203114149114],[117,-59,73,-0.7284575540805063],[117,-59,74,-0.7281972338645295],[117,-59,75,-0.727939355148093],[117,-59,76,-0.7276839222154701],[117,-59,77,-0.727430939253672],[117,-59,78,-0.7271804103520305],[117,-59,79,-0.726932339501773],[117,-58,64,-0.7310265294214962],[117,-58,65,-0.7307440053287552],[117,-58,66,-0.7304638798108681],[117,-58,67,-0.7301861580144952],[117,-58,68,-0.7299108449928471],[117,-58,69,-0.7296379457052697],[117,-58,70,-0.7293674650168144],[117,-58,71,-0.7290994076978108],[117,-58,72,-0.7288337784234401],[117,-58,73,-0.7285705817733219],[117,-58,74,-0.7283098222310719],[117,-58,75,-0.7280515041838918],[117,-58,76,-0.7277956319221442],[117,-58,77,-0.7275422096389312],[117,-58,78,-0.7272912414296746],[117,-58,79,-0.7270427312916925],[117,-57,64,-0.7311436723968857],[117,-57,65,-0.7308607098342041],[117,-57,66,-0.7305801457855168],[117,-57,67,-0.7303019854035568],[117,-57,68,-0.7300262337476093],[117,-57,69,-0.7297528957830963],[117,-57,70,-0.7294819763811462],[117,-57,71,-0.7292134803181671],[117,-57,72,-0.7289474122754198],[117,-57,73,-0.7286837768386044],[117,-57,74,-0.728422578497418],[117,-57,75,-0.728163821645144],[117,-57,76,-0.7279075105782279],[117,-57,77,-0.7276536494958548],[117,-57,78,-0.7274022424995296],[117,-57,79,-0.7271532935926538],[117,-56,64,-0.7312609781684731],[117,-56,65,-0.7309775776816432],[117,-56,66,-0.7306965756463123],[117,-56,67,-0.7304179772212784],[117,-56,68,-0.730141787471893],[117,-56,69,-0.729868011369646],[117,-56,70,-0.7295966537917351],[117,-56,71,-0.7293277195206394],[117,-56,72,-0.7290612132436912],[117,-56,73,-0.7287971395526636],[117,-56,74,-0.7285355029433276],[117,-56,75,-0.7282763078150407],[117,-56,76,-0.7280195584703243],[117,-56,77,-0.7277652591144386],[117,-56,78,-0.7275134138549652],[117,-56,79,-0.7272640267013816],[117,-55,64,-0.7313784469774893],[117,-55,65,-0.7310946091159183],[117,-55,66,-0.7308131696416973],[117,-55,67,-0.7305341337196809],[117,-55,68,-0.7302575064212787],[117,-55,69,-0.7299832927240407],[117,-55,70,-0.7297114975112261],[117,-55,71,-0.7294421255713766],[117,-55,72,-0.7291751815978885],[117,-55,73,-0.7289106701886002],[117,-55,74,-0.7286485958453488],[117,-55,75,-0.7283889629735594],[117,-55,76,-0.7281317758818202],[117,-55,77,-0.7278770387814606],[117,-55,78,-0.7276247557861306],[117,-55,79,-0.7273749309113774],[117,-54,64,-0.7314960790620313],[117,-54,65,-0.7312118043787383],[117,-54,66,-0.7309299280169743],[117,-54,67,-0.7306504551476422],[117,-54,68,-0.7303733908482015],[117,-54,69,-0.7300987401022541],[117,-54,70,-0.7298265077991124],[117,-54,71,-0.729556698733373],[117,-54,72,-0.729289317604489],[117,-54,73,-0.7290243690163556],[117,-54,74,-0.7287618574768686],[117,-54,75,-0.7285017873975124],[117,-54,76,-0.7282441630929357],[117,-54,77,-0.727988988780529],[117,-54,78,-0.7277362685800037],[117,-54,79,-0.7274860065129692],[117,-53,64,-0.7316138746570494],[117,-53,65,-0.7313291637086626],[117,-53,66,-0.7310468510142936],[117,-53,67,-0.7307669417508846],[117,-53,68,-0.7304894410019376],[117,-53,69,-0.7302143537570979],[117,-53,70,-0.7299416849117232],[117,-53,71,-0.7296714392664572],[117,-53,72,-0.7294036215268007],[117,-53,73,-0.729138236302699],[117,-53,74,-0.7288752881080987],[117,-53,75,-0.7286147813605356],[117,-53,76,-0.7283567203807119],[117,-53,77,-0.7281011093920707],[117,-53,78,-0.7278479525203785],[117,-53,79,-0.7275972537932992],[117,-52,64,-0.7317318339943358],[117,-52,65,-0.731446687341089],[117,-52,66,-0.7311639388726401],[117,-52,67,-0.7308835937719631],[117,-52,68,-0.730605657128593],[117,-52,69,-0.7303301339382109],[117,-52,70,-0.7300570291022116],[117,-52,71,-0.7297863474272774],[117,-52,72,-0.7295180936249497],[117,-52,73,-0.7292522723112154],[117,-52,74,-0.7289888880060638],[117,-52,75,-0.7287279451330755],[117,-52,76,-0.7284694480189972],[117,-52,77,-0.7282134008933183],[117,-52,78,-0.7279598078878523],[117,-52,79,-0.7277086730363103],[117,-51,64,-0.7318499573025739],[117,-51,65,-0.7315643755083032],[117,-51,66,-0.7312811918278843],[117,-51,67,-0.731000411450314],[117,-51,68,-0.7307220394711526],[117,-51,69,-0.7304460808921078],[117,-51,70,-0.7301725406206037],[117,-51,71,-0.7299014234693533],[117,-51,72,-0.72963273415593],[117,-51,73,-0.7293664773023547],[117,-51,74,-0.7291026574346519],[117,-51,75,-0.7288412789824382],[117,-51,76,-0.7285823462784982],[117,-51,77,-0.7283258635583597],[117,-51,78,-0.7280718349598753],[117,-51,79,-0.7278202645227961],[117,-50,64,-0.7319682448073186],[117,-50,65,-0.7316822284394601],[117,-50,66,-0.7313986101127624],[117,-50,67,-0.7311173950222369],[117,-50,68,-0.7308385882694607],[117,-50,69,-0.7305621948621601],[117,-50,70,-0.7302882197137797],[117,-50,71,-0.7300166676430552],[117,-50,72,-0.729747543373584],[117,-50,73,-0.7294808515334129],[117,-50,74,-0.7292165966545934],[117,-50,75,-0.728954783172771],[117,-50,76,-0.7286954154267595],[117,-50,77,-0.7284384976581181],[117,-50,78,-0.7281840340107308],[117,-50,79,-0.7279320285303819],[117,-49,64,-0.73208669673102],[117,-49,65,-0.7318002463606054],[117,-49,66,-0.7315161939568984],[117,-49,67,-0.7312345447209162],[117,-49,68,-0.7309553037602439],[117,-49,69,-0.7306784760886182],[117,-49,70,-0.7304040666254958],[117,-49,71,-0.7301320801956268],[117,-49,72,-0.7298625215286246],[117,-49,73,-0.7295953952585535],[117,-49,74,-0.7293307059234844],[117,-49,75,-0.7290684579650831],[117,-49,76,-0.728808655728186],[117,-49,77,-0.7285513034603749],[117,-49,78,-0.7282964053115581],[117,-49,79,-0.728043965333545],[117,-48,64,-0.7322053132930024],[117,-48,65,-0.7319184294946567],[117,-48,66,-0.731633943586785],[117,-48,67,-0.7313518607764017],[117,-48,68,-0.7310721861770912],[117,-48,69,-0.7307949248085921],[117,-48,70,-0.7305200815963651],[117,-48,71,-0.7302476613711657],[117,-48,72,-0.7299776688686156],[117,-48,73,-0.7297101087287884],[117,-48,74,-0.7294449854957661],[117,-48,75,-0.7291823036172274],[117,-48,76,-0.7289220674440224],[117,-48,77,-0.7286642812297488],[117,-48,78,-0.7284089491303312],[117,-48,79,-0.7281560752035965],[117,-47,64,-0.7323240947095159],[117,-47,65,-0.7320367780614535],[117,-47,66,-0.7317518592258336],[117,-47,67,-0.7314693434156586],[117,-47,68,-0.731189235750504],[117,-47,69,-0.7309115412561011],[117,-47,70,-0.7306362648639065],[117,-47,71,-0.730363411410673],[117,-47,72,-0.7300929856380216],[117,-47,73,-0.7298249921920273],[117,-47,74,-0.7295594356227753],[117,-47,75,-0.7292963203839489],[117,-47,76,-0.7290356508324044],[117,-47,77,-0.7287774312277469],[117,-47,78,-0.7285216657319099],[117,-47,79,-0.7282683584087302],[117,-46,64,-0.7324430411937225],[117,-46,65,-0.7321552922777447],[117,-46,66,-0.7318699410943617],[117,-46,67,-0.7315869928625554],[117,-46,68,-0.7313064527078833],[117,-46,69,-0.7310283256620618],[117,-46,70,-0.7307526166625334],[117,-46,71,-0.7304793305520407],[117,-46,72,-0.7302084720781954],[117,-46,73,-0.7299400458930656],[117,-46,74,-0.7296740565527315],[117,-46,75,-0.729410508516873],[117,-46,76,-0.7291494061483443],[117,-46,77,-0.7288907537127506],[117,-46,78,-0.728634555378026],[117,-46,79,-0.7283808152140099],[117,-45,64,-0.7325621529556848],[117,-45,65,-0.7322739723571757],[117,-45,66,-0.7319881894095801],[117,-45,67,-0.7317048093378505],[117,-45,68,-0.7314238372735179],[117,-45,69,-0.7311452782542741],[117,-45,70,-0.7308691372235403],[117,-45,71,-0.730595419030039],[117,-45,72,-0.730324128427365],[117,-45,73,-0.7300552700735711],[117,-45,74,-0.7297888485307239],[117,-45,75,-0.7295248682644918],[117,-45,76,-0.7292633336437195],[117,-45,77,-0.7290042489400034],[117,-45,78,-0.7287476183272712],[117,-45,79,-0.7284934458813566],[117,-44,64,-0.7326814302024156],[117,-44,65,-0.7323928185103391],[117,-44,66,-0.7321066043856435],[117,-44,67,-0.7318227930592434],[117,-44,68,-0.7315413896686335],[117,-44,69,-0.7312623992574729],[117,-44,70,-0.7309858267751526],[117,-44,71,-0.7307116770763665],[117,-44,72,-0.7304399549206841],[117,-44,73,-0.7301706649721341],[117,-44,74,-0.7299038117987615],[117,-44,75,-0.7296393998722153],[117,-44,76,-0.7293774335673217],[117,-44,77,-0.7291179171616611],[117,-44,78,-0.7288608548351464],[117,-44,79,-0.7286062506695979],[117,-43,64,-0.7328008731378652],[117,-43,65,-0.7325118309447617],[117,-43,66,-0.732225186233638],[117,-43,67,-0.7319409442413607],[117,-43,68,-0.7316591101113805],[117,-43,69,-0.7313796888933146],[117,-43,70,-0.7311026855425145],[117,-43,71,-0.7308281049196376],[117,-43,72,-0.7305559517902188],[117,-43,73,-0.7302862308242547],[117,-43,74,-0.7300189465957605],[117,-43,75,-0.7297541035823568],[117,-43,76,-0.729491706164844],[117,-43,77,-0.7292317586267779],[117,-43,78,-0.7289742651540488],[117,-43,79,-0.728719229834456],[117,-42,64,-0.7329204819629094],[117,-42,65,-0.7326310098648924],[117,-42,66,-0.7323439351615674],[117,-42,67,-0.7320592630957448],[117,-42,68,-0.7317769988168216],[117,-42,69,-0.7314971473803641],[117,-42,70,-0.7312197137476759],[117,-42,71,-0.730944702785369],[117,-42,72,-0.7306721192649351],[117,-42,73,-0.7304019678623301],[117,-42,74,-0.730134253157531],[117,-42,75,-0.7298689796341217],[117,-42,76,-0.7296061516788684],[117,-42,77,-0.7293457735812945],[117,-42,78,-0.7290878495332594],[117,-42,79,-0.7288323836285333],[117,-41,64,-0.7330402568753991],[117,-41,65,-0.7327503554721517],[117,-41,66,-0.7324628513744048],[117,-41,67,-0.7321777498309032],[117,-41,68,-0.7318950559969813],[117,-41,69,-0.7316147749341457],[117,-41,70,-0.7313369116096429],[117,-41,71,-0.7310614708960306],[117,-41,72,-0.730788457570749],[117,-41,73,-0.7305178763157045],[117,-41,74,-0.7302497317168273],[117,-41,75,-0.7299840282636565],[117,-41,76,-0.7297207703489157],[117,-41,77,-0.7294599622680875],[117,-41,78,-0.7292016082189925],[117,-41,79,-0.7289457123013637],[117,-40,64,-0.7331601980701412],[117,-40,65,-0.7328698679649127],[117,-40,66,-0.7325819350740721],[117,-40,67,-0.7322964046522894],[117,-40,68,-0.7320132818608269],[117,-40,69,-0.7317325717671227],[117,-40,70,-0.7314542793443572],[117,-40,71,-0.7311784094710254],[117,-40,72,-0.7309049669305063],[117,-40,73,-0.7306339564106492],[117,-40,74,-0.730365382503328],[117,-40,75,-0.7300992497040292],[117,-40,76,-0.729835562411425],[117,-40,77,-0.7295743249269493],[117,-40,78,-0.7293155414543756],[117,-40,79,-0.7290592160993918],[117,-39,64,-0.7332803057389206],[117,-39,65,-0.7329895475385231],[117,-39,66,-0.7327011864594625],[117,-39,67,-0.7324152277623243],[117,-39,68,-0.7321316766142901],[117,-39,69,-0.7318505380887199],[117,-39,70,-0.7315718171647194],[117,-39,71,-0.7312955187267113],[117,-39,72,-0.7310216475640056],[117,-39,73,-0.7307502083703845],[117,-39,74,-0.7304812057436583],[117,-39,75,-0.7302146441852513],[117,-39,76,-0.7299505280997767],[117,-39,77,-0.7296888617946107],[117,-39,78,-0.7294296494794721],[117,-39,79,-0.7291728952659952],[117,-38,64,-0.7334005800704807],[117,-38,65,-0.7331093943852857],[117,-38,66,-0.7328206057264206],[117,-38,67,-0.7325342193603774],[117,-38,68,-0.7322502404602476],[117,-38,69,-0.731968674105304],[117,-38,70,-0.7316895252805681],[117,-38,71,-0.7314127988763819],[117,-38,72,-0.7311384996879771],[117,-38,73,-0.7308666324150604],[117,-38,74,-0.7305972016613693],[117,-38,75,-0.7303302119342578],[117,-38,76,-0.7300656676442713],[117,-38,77,-0.7298035731047203],[117,-38,78,-0.72954393253126],[117,-38,79,-0.7292867500414634],[117,-37,64,-0.7335210212505738],[117,-37,65,-0.7332294086945083],[117,-37,66,-0.7329401930677928],[117,-37,67,-0.7326533796428165],[117,-37,68,-0.7323689735985711],[117,-37,69,-0.732086980020233],[117,-37,70,-0.7318074038987308],[117,-37,71,-0.7315302501303161],[117,-37,72,-0.7312555235161337],[117,-37,73,-0.7309832287618061],[117,-37,74,-0.7307133704769889],[117,-37,75,-0.7304459531749576],[117,-37,76,-0.7301809812721807],[117,-37,77,-0.7299184590878948],[117,-37,78,-0.7296583908436833],[117,-37,79,-0.7294007806630496],[117,-36,64,-0.7336416294619481],[117,-36,65,-0.7333495906524914],[117,-36,66,-0.7330599486734148],[117,-36,67,-0.7327727088029952],[117,-36,68,-0.7324878762261148],[117,-36,69,-0.7322054560338446],[117,-36,70,-0.7319254532230107],[117,-36,71,-0.7316478726957657],[117,-36,72,-0.7313727192591581],[117,-36,73,-0.7310999976247174],[117,-36,74,-0.7308297124080088],[117,-36,75,-0.7305618681282198],[117,-36,76,-0.7302964692077341],[117,-36,77,-0.7300335199717058],[117,-36,78,-0.7297730246476379],[117,-36,79,-0.7295149873649562],[117,-35,64,-0.733762404884335],[117,-35,65,-0.7334699404425152],[117,-35,66,-0.7331798727300985],[117,-35,67,-0.7328922070312395],[117,-35,68,-0.7326069485367019],[117,-35,69,-0.7323241023434419],[117,-35,70,-0.7320436734541739],[117,-35,71,-0.7317656667769419],[117,-35,72,-0.7314900871246894],[117,-35,73,-0.7312169392148437],[117,-35,74,-0.7309462276688705],[117,-35,75,-0.7306779570118611],[117,-35,76,-0.7304121316721056],[117,-35,77,-0.7301487559806668],[117,-35,78,-0.729887834170959],[117,-35,79,-0.7296293703783219],[117,-34,64,-0.7338833476944998],[117,-34,65,-0.7335904582448902],[117,-34,66,-0.7332999654216823],[117,-34,67,-0.733011874514899],[117,-34,68,-0.7327261907211762],[117,-34,69,-0.7324429191433453],[117,-34,70,-0.7321620647899997],[117,-34,71,-0.7318836325750662],[117,-34,72,-0.7316076273173735],[117,-34,73,-0.7313340537402377],[117,-34,74,-0.7310629164710167],[117,-34,75,-0.7307942200406964],[117,-34,76,-0.730527968883464],[117,-34,77,-0.7302641673362833],[117,-34,78,-0.7300028196384711],[117,-34,79,-0.7297439299312721],[117,-33,64,-0.7340044580662219],[117,-33,65,-0.733711144236937],[117,-33,66,-0.7334202269290114],[117,-33,67,-0.7331317114383264],[117,-33,68,-0.7328456029673804],[117,-33,69,-0.7325619066248708],[117,-33,70,-0.7322806274252605],[117,-33,71,-0.7320017702883495],[117,-33,72,-0.7317253400388428],[117,-33,73,-0.7314513414059363],[117,-33,74,-0.7311797790228706],[117,-33,75,-0.7309106574265175],[117,-33,76,-0.7306439810569534],[117,-33,77,-0.7303797542570327],[117,-33,78,-0.7301179812719674],[117,-33,79,-0.7298586662488985],[117,-32,64,-0.7341257361703167],[117,-32,65,-0.7338319985930088],[117,-32,66,-0.7335406574299601],[117,-32,67,-0.7332517179829001],[117,-32,68,-0.73296518546018],[117,-32,69,-0.7326810649763537],[117,-32,70,-0.7323993615517443],[117,-32,71,-0.7321200801120152],[117,-32,72,-0.731843225487739],[117,-32,73,-0.7315688024139819],[117,-32,74,-0.7312968155298581],[117,-32,75,-0.7310272693781167],[117,-32,76,-0.7307601684047136],[117,-32,77,-0.7304955169583863],[117,-32,78,-0.7302333192902322],[117,-32,79,-0.7299735795532809],[117,-31,64,-0.7342471821746157],[117,-31,65,-0.7339530214844718],[117,-31,66,-0.7336612570994114],[117,-31,67,-0.7333718943270036],[117,-31,68,-0.7330849383814421],[117,-31,69,-0.7328003943831276],[117,-31,70,-0.732518267358234],[117,-31,71,-0.7322385622382788],[117,-31,72,-0.7319612838596924],[117,-31,73,-0.7316864369634024],[117,-31,74,-0.7314140261943877],[117,-31,75,-0.731144056101265],[117,-31,76,-0.7308765311358614],[117,-31,77,-0.7306114556527885],[117,-31,78,-0.7303488339090207],[117,-31,79,-0.7300886700634672],[117,-30,64,-0.7343687962440179],[117,-30,65,-0.7340742130797548],[117,-30,66,-0.7337820261093085],[117,-30,67,-0.7334922406460768],[117,-30,68,-0.7332048619100865],[117,-30,69,-0.7329198950275754],[117,-30,70,-0.7326373450305583],[117,-30,71,-0.7323572168563978],[117,-30,72,-0.7320795153473724],[117,-30,73,-0.7318042452502618],[117,-30,74,-0.7315314112159004],[117,-30,75,-0.7312610177987635],[117,-30,76,-0.7309930694565405],[117,-30,77,-0.7307275705497083],[117,-30,78,-0.730464525341109],[117,-30,79,-0.7302039379955233],[117,-29,64,-0.7344905785404757],[117,-29,65,-0.7341955735443376],[117,-29,66,-0.733902964628641],[117,-29,67,-0.7336127571126025],[117,-29,68,-0.7333249562220725],[117,-29,69,-0.7330395670891161],[117,-29,70,-0.7327565947515792],[117,-29,71,-0.7324760441526594],[117,-29,72,-0.7321979201404746],[117,-29,73,-0.7319222274676469],[117,-29,74,-0.731648970790857],[117,-29,75,-0.7313781546704301],[117,-29,76,-0.7311097835699082],[117,-29,77,-0.7308438618556244],[117,-29,78,-0.7305803937962807],[117,-29,79,-0.7303193835625199],[117,-28,64,-0.7346125292229828],[117,-28,65,-0.7343171030407366],[117,-28,66,-0.7340240728234316],[117,-28,67,-0.7337334438960936],[117,-28,68,-0.7334452214903859],[117,-28,69,-0.7331594107441911],[117,-28,70,-0.732876016701177],[117,-28,71,-0.7325950443103666],[117,-28,72,-0.7323164984257071],[117,-28,73,-0.7320403838056541],[117,-28,74,-0.7317667051127249],[117,-28,75,-0.7314954669130854],[117,-28,76,-0.7312266736761215],[117,-28,77,-0.7309603297740136],[117,-28,78,-0.7306964394813139],[117,-28,79,-0.7304350069745192],[117,-27,64,-0.7347346484476243],[117,-27,65,-0.7344388017285565],[117,-27,66,-0.734145350856788],[117,-27,67,-0.7338543011631433],[117,-27,68,-0.7335656578850893],[117,-27,69,-0.733279426166316],[117,-27,70,-0.7329956110563032],[117,-27,71,-0.7327142175098893],[117,-27,72,-0.7324352503868418],[117,-27,73,-0.7321587144514398],[117,-27,74,-0.7318846143720283],[117,-27,75,-0.7316129547206044],[117,-27,76,-0.7313437399723886],[117,-27,77,-0.7310769745053997],[117,-27,78,-0.7308126626000314],[117,-27,79,-0.7305508084386255],[117,-26,64,-0.7348569363675571],[117,-26,65,-0.7345606697644695],[117,-26,66,-0.7342667988888811],[117,-26,67,-0.7339753290774056],[117,-26,68,-0.7336862655733023],[117,-26,69,-0.7333996135260594],[117,-26,70,-0.7331153779909582],[117,-26,71,-0.7328335639286436],[117,-26,72,-0.7325541762046932],[117,-26,73,-0.7322772195892002],[117,-26,74,-0.7320026987563278],[117,-26,75,-0.7317306182838949],[117,-26,76,-0.7314609826529476],[117,-26,77,-0.7311937962473338],[117,-26,78,-0.7309290633532801],[117,-26,79,-0.7306667881589637],[117,-25,64,-0.7349793931330323],[117,-25,65,-0.7346827073022384],[117,-25,66,-0.7343884170769692],[117,-25,67,-0.7340965277996166],[117,-25,68,-0.7338070447192235],[117,-25,69,-0.7335199729910652],[117,-25,70,-0.7332353176762151],[117,-25,71,-0.7329530837411145],[117,-25,72,-0.7326732760571413],[117,-25,73,-0.7323958994001933],[117,-25,74,-0.7321209584502427],[117,-25,75,-0.7318484577909203],[117,-25,76,-0.7315784019090892],[117,-25,77,-0.7313107951944168],[117,-25,78,-0.7310456419389532],[117,-25,79,-0.7307829463367027],[117,-24,64,-0.7351020188913739],[117,-24,65,-0.7348049144926951],[117,-24,66,-0.7345102055753758],[117,-24,67,-0.7342178974875756],[117,-24,68,-0.7339279954841103],[117,-24,69,-0.7336405047260327],[117,-24,70,-0.7333554302801982],[117,-24,71,-0.7330727771188347],[117,-24,72,-0.7327925501191105],[117,-24,73,-0.7325147540627188],[117,-24,74,-0.7322393936354303],[117,-24,75,-0.7319664734266794],[117,-24,76,-0.7316959979291355],[117,-24,77,-0.7314279715382773],[117,-24,78,-0.7311623985519693],[117,-24,79,-0.7308992831700338],[117,-23,64,-0.7352248137870315],[117,-23,65,-0.7349272914837934],[117,-23,66,-0.7346321645355419],[117,-23,67,-0.7343394382961945],[117,-23,68,-0.7340491180263296],[117,-23,69,-0.7337612088927671],[117,-23,70,-0.7334757159681345],[117,-23,71,-0.7331926442304361],[117,-23,72,-0.7329119985626212],[117,-23,73,-0.7326337837521681],[117,-23,74,-0.732358004490637],[117,-23,75,-0.7320846653732558],[117,-23,76,-0.7318137708984915],[117,-23,77,-0.7315453254676243],[117,-23,78,-0.7312793333843236],[117,-23,79,-0.7310157988542213],[117,-22,64,-0.7353477779615656],[117,-22,65,-0.7350498384205937],[117,-22,66,-0.7347542941060121],[117,-22,67,-0.7344611503774856],[117,-22,68,-0.7341704125013445],[117,-22,69,-0.7338820856501662],[117,-22,70,-0.7335961749023401],[117,-22,71,-0.7333126852416363],[117,-22,72,-0.7330316215567757],[117,-22,73,-0.7327529886410118],[117,-22,74,-0.7324767911916845],[117,-22,75,-0.7322030338098058],[117,-22,76,-0.7319317209996308],[117,-22,77,-0.7316628571682315],[117,-22,78,-0.7313964466250742],[117,-22,79,-0.7311324935815897],[117,-21,64,-0.7354709115536346],[117,-21,65,-0.735172555445251],[117,-21,66,-0.7348765944324214],[117,-21,67,-0.7345830338805472],[117,-21,68,-0.7342918790617013],[117,-21,69,-0.7340031351542073],[117,-21,70,-0.7337168072422061],[117,-21,71,-0.7334329003152248],[117,-21,72,-0.7331514192677447],[117,-21,73,-0.7328723688987852],[117,-21,74,-0.7325957539114563],[117,-21,75,-0.7323215789125438],[117,-21,76,-0.7320498484120821],[117,-21,77,-0.7317805668229257],[117,-21,78,-0.7315137384603273],[117,-21,79,-0.7312493675415089],[117,-20,64,-0.735594214699047],[117,-20,65,-0.7352954426970656],[117,-20,66,-0.7349990656575461],[117,-20,67,-0.7347050889516163],[117,-20,68,-0.7344135178570801],[117,-20,69,-0.7341243575579975],[117,-20,70,-0.733837613144251],[117,-20,71,-0.7335532896111139],[117,-20,72,-0.7332713918588186],[117,-20,73,-0.73299192469214],[117,-20,74,-0.7327148928199483],[117,-20,75,-0.7324403008547942],[117,-20,76,-0.7321681533124808],[117,-20,77,-0.731898454611636],[117,-20,78,-0.7316312090732899],[117,-20,79,-0.7313664209204461],[117,-19,64,-0.7357176875307392],[117,-19,65,-0.7354185003124626],[117,-19,66,-0.7351217079212837],[117,-19,67,-0.7348273157340459],[117,-19,68,-0.7345353290342739],[117,-19,69,-0.7342457530117539],[117,-19,70,-0.733958592762099],[117,-19,71,-0.7336738532863188],[117,-19,72,-0.7333915394903867],[117,-19,73,-0.7331116561848232],[117,-19,74,-0.7328342080842488],[117,-19,75,-0.7325591998069694],[117,-19,76,-0.7322866358745471],[117,-19,77,-0.7320165207113738],[117,-19,78,-0.7317488586442475],[117,-19,79,-0.731483653901944],[117,-18,64,-0.7358413301787994],[117,-18,65,-0.7355417284250145],[117,-18,66,-0.7352445213606752],[117,-18,67,-0.7349497143683293],[117,-18,68,-0.734657312737212],[117,-18,69,-0.734367321662825],[117,-18,70,-0.7340797462465023],[117,-18,71,-0.7337945914949792],[117,-18,72,-0.7335118623199596],[117,-18,73,-0.7332315635376997],[117,-18,74,-0.7329536998685606],[117,-18,75,-0.7326782759365932],[117,-18,76,-0.7324052962691093],[117,-18,77,-0.7321347652962551],[117,-18,78,-0.731866687350587],[117,-18,79,-0.7316010666666437],[117,-17,64,-0.7359651427704462],[117,-17,65,-0.7356651271654204],[117,-17,66,-0.7353675061098837],[117,-17,67,-0.7350722849920782],[117,-17,68,-0.7347794691069386],[117,-17,69,-0.7344890636556715],[117,-17,70,-0.7342010737453212],[117,-17,71,-0.7339155043883383],[117,-17,72,-0.7336323605021476],[117,-17,73,-0.7333516469087308],[117,-17,74,-0.733073368334179],[117,-17,75,-0.7327975294082788],[117,-17,76,-0.7325241346640818],[117,-17,77,-0.7322531885374786],[117,-17,78,-0.731984695366775],[117,-17,79,-0.7317186593922629],[117,-16,64,-0.7360891254300804],[117,-16,65,-0.7357886966615572],[117,-16,66,-0.7354906623002468],[117,-16,67,-0.7351950277400745],[117,-16,68,-0.7349017982816636],[117,-16,69,-0.7346109791319155],[117,-16,70,-0.734322575403574],[117,-16,71,-0.7340365921147949],[117,-16,72,-0.7337530341887131],[117,-16,73,-0.7334719064530257],[117,-16,74,-0.7331932136395445],[117,-16,75,-0.732916960383781],[117,-16,76,-0.732643151224517],[117,-16,77,-0.7323717906033782],[117,-16,78,-0.7321028828644096],[117,-16,79,-0.7318364322536473],[117,-15,64,-0.7362132782792712],[117,-15,65,-0.7359124370384665],[117,-15,66,-0.7356139900602623],[117,-15,67,-0.7353179427442564],[117,-15,68,-0.7350243003967504],[117,-15,69,-0.7347330682303288],[117,-15,70,-0.7344442513634248],[117,-15,71,-0.734157854819889],[117,-15,72,-0.7338738835285561],[117,-15,73,-0.7335923423228283],[117,-15,74,-0.7333132359402279],[117,-15,75,-0.7330365690219813],[117,-15,76,-0.7327623461125912],[117,-15,77,-0.7324905716594078],[117,-15,78,-0.7322212500122062],[117,-15,79,-0.7319543854227569],[117,-14,64,-0.7363376014367423],[117,-14,65,-0.7360363484183403],[117,-14,66,-0.7357374895155749],[117,-14,67,-0.7354410301337055],[117,-14,68,-0.7351469755847004],[117,-14,69,-0.7348553310868176],[117,-14,70,-0.7345661017641687],[117,-14,71,-0.7342792926462881],[117,-14,72,-0.7339949086677003],[117,-14,73,-0.7337129546675025],[117,-14,74,-0.7334334353889168],[117,-14,75,-0.7331563554788753],[117,-14,76,-0.7328817194875904],[117,-14,77,-0.732609531868128],[117,-14,78,-0.7323397969759835],[117,-14,79,-0.732072519068652],[117,-13,64,-0.7364620950184244],[117,-13,65,-0.7361604309205734],[117,-13,66,-0.7358611607890277],[117,-13,67,-0.735564290034697],[117,-13,68,-0.7352698239752061],[117,-13,69,-0.7349777678344751],[117,-13,70,-0.7346881267422833],[117,-13,71,-0.7344009057338389],[117,-13,72,-0.7341161097493453],[117,-13,73,-0.733833743633584],[117,-13,74,-0.7335538121354673],[117,-13,75,-0.7332763199076224],[117,-13,76,-0.7330012715059621],[117,-13,77,-0.7327286713892577],[117,-13,78,-0.7324585239187146],[117,-13,79,-0.7321908333575438],[117,-12,64,-0.7365867591374409],[117,-12,65,-0.736284684661749],[117,-12,66,-0.7359850040006481],[117,-12,67,-0.7356877225706874],[117,-12,68,-0.7353928456951366],[117,-12,69,-0.7351003786035673],[117,-12,70,-0.7348103264314159],[117,-12,71,-0.7345226942195533],[117,-12,72,-0.7342374869138516],[117,-12,73,-0.7339547093647665],[117,-12,74,-0.7336743663268898],[117,-12,75,-0.7333964624585336],[117,-12,76,-0.7331210023213012],[117,-12,77,-0.7328479903796592],[117,-12,78,-0.7325774310005138],[117,-12,79,-0.7323093284527811],[117,-11,64,-0.7367115939040938],[117,-11,65,-0.7364091097556253],[117,-11,66,-0.7361090192676348],[117,-11,67,-0.7358113278622994],[117,-11,68,-0.7355160408685235],[117,-11,69,-0.7352231635215187],[117,-11,70,-0.734932700962368],[117,-11,71,-0.7346446582375942],[117,-11,72,-0.7343590402987276],[117,-11,73,-0.7340758520018873],[117,-11,74,-0.7337950981073345],[117,-11,75,-0.7335167832790562],[117,-11,76,-0.7332409120843356],[117,-11,77,-0.7329674889933249],[117,-11,78,-0.7326965183786209],[117,-11,79,-0.732428004514836],[117,-10,64,-0.7368365994259166],[117,-10,65,-0.7365337063131869],[117,-10,66,-0.7362332067044084],[117,-10,67,-0.7359351060273747],[117,-10,68,-0.7356394096166131],[117,-10,69,-0.735346122712965],[117,-10,70,-0.7350552504631485],[117,-10,71,-0.7347667979193278],[117,-10,72,-0.7344807700386807],[117,-10,73,-0.7341971716829795],[117,-10,74,-0.7339160076181441],[117,-10,75,-0.7336372825138258],[117,-10,76,-0.7333610009429781],[117,-10,77,-0.7330871673814285],[117,-10,78,-0.7328157862074548],[117,-10,79,-0.7325468617013551],[117,-9,64,-0.7369617758076519],[117,-9,65,-0.7366584744426246],[117,-9,66,-0.7363575664225914],[117,-9,67,-0.7360590571809517],[117,-9,68,-0.735762952057845],[117,-9,69,-0.7354692562997306],[117,-9,70,-0.7351779750589512],[117,-9,71,-0.7348891133933018],[117,-9,72,-0.7346026762655964],[117,-9,73,-0.7343186685432502],[117,-9,74,-0.7340370949978312],[117,-9,75,-0.7337579603046451],[117,-9,76,-0.733481269042305],[117,-9,77,-0.7332070256923039],[117,-9,78,-0.73293523463859],[117,-9,79,-0.7326659001671381],[117,-8,64,-0.7370871231512751],[117,-8,65,-0.7367834142493566],[117,-8,66,-0.7364820985310302],[117,-8,67,-0.7361831814352895],[117,-8,68,-0.7358866683078747],[117,-8,69,-0.7355925644008523],[117,-8,70,-0.7353008748721784],[117,-8,71,-0.7350116047852678],[117,-8,72,-0.7347247591085605],[117,-8,73,-0.7344403427151032],[117,-8,74,-0.734158360382102],[117,-8,75,-0.7338788167905061],[117,-8,76,-0.7336017165245784],[117,-8,77,-0.7333270640714669],[117,-8,78,-0.7330548638207806],[117,-8,79,-0.7327851200641602],[117,-7,64,-0.7372126415559727],[117,-7,65,-0.7369085258360085],[117,-7,66,-0.7366068031357739],[117,-7,67,-0.7363074788998452],[117,-7,68,-0.7360105584795522],[117,-7,69,-0.7357160471325572],[117,-7,70,-0.7354239500224189],[117,-7,71,-0.7351342722181606],[117,-7,72,-0.7348470186938374],[117,-7,73,-0.7345621943281172],[117,-7,74,-0.7342798039038334],[117,-7,75,-0.7339998521075685],[117,-7,76,-0.7337223435292243],[117,-7,77,-0.7334472826615939],[117,-7,78,-0.7331746738999371],[117,-7,79,-0.7329045215415508],[117,-6,64,-0.7373383311181942],[117,-6,65,-0.7370338093024648],[117,-6,66,-0.7367316803401265],[117,-6,67,-0.736431949681327],[117,-6,68,-0.7361346226829741],[117,-6,69,-0.735839704608315],[117,-6,70,-0.7355472006264997],[117,-6,71,-0.7352571158121491],[117,-6,72,-0.7349694551449225],[117,-6,73,-0.7346842235090981],[117,-6,74,-0.7344014256931262],[117,-6,75,-0.7341210663892115],[117,-6,76,-0.733843150192885],[117,-6,77,-0.7335676816025742],[117,-6,78,-0.7332946650191796],[117,-6,79,-0.7330241047456444],[117,-5,64,-0.7374641919316387],[117,-5,65,-0.7371592647458546],[117,-5,66,-0.7368567302446322],[117,-5,67,-0.736556593883679],[117,-5,68,-0.7362588610254694],[117,-5,69,-0.7359635369388239],[117,-5,70,-0.7356706267984725],[117,-5,71,-0.7353801356846231],[117,-5,72,-0.7350920685825278],[117,-5,73,-0.7348064303820647],[117,-5,74,-0.7345232258772897],[117,-5,75,-0.73424245976602],[117,-5,76,-0.7339641366494044],[117,-5,77,-0.7336882610314952],[117,-5,78,-0.733414837318823],[117,-5,79,-0.7331438698199669],[117,-4,64,-0.7375902240872401],[117,-4,65,-0.7372848922605383],[117,-4,66,-0.7369819529470625],[117,-4,67,-0.7366814116080682],[117,-4,68,-0.7363832736115853],[117,-4,69,-0.7360875442319958],[117,-4,70,-0.7357942286495991],[117,-4,71,-0.7355033319501783],[117,-4,72,-0.7352148591245675],[117,-4,73,-0.7349288150682339],[117,-4,74,-0.7346452045808283],[117,-4,75,-0.7343640323657694],[117,-4,76,-0.7340853030298139],[117,-4,77,-0.7338090210826278],[117,-4,78,-0.7335351909363617],[117,-4,79,-0.7332638169052212],[117,-3,64,-0.7377164276732199],[117,-3,65,-0.7374106919381591],[117,-3,66,-0.7371073485424672],[117,-3,67,-0.7368064029529361],[117,-3,68,-0.7365078605431393],[117,-3,69,-0.7362117265930096],[117,-3,70,-0.7359180062884034],[117,-3,71,-0.7356267047206686],[117,-3,72,-0.7353378268862105],[117,-3,73,-0.7350513776860735],[117,-3,74,-0.7347673619254931],[117,-3,75,-0.7344857843134787],[117,-3,76,-0.7342066494623841],[117,-3,77,-0.7339299618874787],[117,-3,78,-0.7336557260065231],[117,-3,79,-0.7333839461393384],[117,-2,64,-0.7378428027750653],[117,-2,65,-0.7375366638676217],[117,-2,66,-0.7372329171231534],[117,-2,67,-0.7369315680139771],[117,-2,68,-0.736632621919198],[117,-2,69,-0.7363360841242882],[117,-2,70,-0.7360419598206502],[117,-2,71,-0.735750254105185],[117,-2,72,-0.7354609719798579],[117,-2,73,-0.73517411835128],[117,-2,74,-0.73488969803026],[117,-2,75,-0.7346077157313876],[117,-2,76,-0.734328176072603],[117,-2,77,-0.7340510835747686],[117,-2,78,-0.7337764426612443],[117,-2,79,-0.7335042576574569],[117,-1,64,-0.7379693494755525],[117,-1,65,-0.7376628081351154],[117,-1,66,-0.7373586587787083],[117,-1,67,-0.7370569068841611],[117,-1,68,-0.7367575578360992],[117,-1,69,-0.7364606169255223],[117,-1,70,-0.7361660893493676],[117,-1,71,-0.7358739802100775],[117,-1,72,-0.7355842945151665],[117,-1,73,-0.7352970371768012],[117,-1,74,-0.7350122130113527],[117,-1,75,-0.7347298267389799],[117,-1,76,-0.7344498829831989],[117,-1,77,-0.7341723862704547],[117,-1,78,-0.7338973410296956],[117,-1,79,-0.733624751591944],[117,0,64,-0.7380960678547244],[117,0,65,-0.7377891248240918],[117,0,66,-0.7374845735959774],[117,0,67,-0.7371824196537125],[117,0,68,-0.7368826683874308],[117,0,69,-0.736585325093648],[117,0,70,-0.7362903949748247],[117,0,71,-0.7359978831389336],[117,0,72,-0.7357077945990264],[117,0,73,-0.7354201342728144],[117,0,74,-0.7351349069822203],[117,0,75,-0.7348521174529612],[117,0,76,-0.7345717703141182],[117,0,77,-0.734293870097708],[117,0,78,-0.7340184212382577],[117,0,79,-0.7337454280723743],[117,1,64,-0.7382229579899435],[117,1,65,-0.7379156140153176],[117,1,66,-0.7376106616591167],[117,1,67,-0.7373081064101615],[117,1,68,-0.7370079536640826],[117,1,69,-0.7367102087228996],[117,1,70,-0.7364148767945848],[117,1,71,-0.7361219629926301],[117,1,72,-0.7358314723356132],[117,1,73,-0.7355434097467788],[117,1,74,-0.7352577800535898],[117,1,75,-0.7349745879873109],[117,1,76,-0.7346938381825773],[117,1,77,-0.734415535176967],[117,1,78,-0.7341396834105747],[117,1,79,-0.7338662872255819],[117,2,64,-0.7383500199558779],[117,2,65,-0.7380422757868603],[117,2,66,-0.7377369230495788],[117,2,67,-0.7374339672383309],[117,2,68,-0.7371334137542321],[117,2,69,-0.7368352679047947],[117,2,70,-0.7365395349034909],[117,2,71,-0.7362462198693198],[117,2,72,-0.7359553278263742],[117,2,73,-0.7356668637034208],[117,2,74,-0.7353808323334519],[117,2,75,-0.7350972384532681],[117,2,76,-0.7348160867030487],[117,2,77,-0.7345373816259214],[117,2,78,-0.7342611276675385],[117,2,79,-0.7339873291756454],[117,3,64,-0.738477253824486],[117,3,65,-0.7381691102140742],[117,3,66,-0.7378633578460981],[117,3,67,-0.7375600022203208],[117,3,68,-0.7372590487433305],[117,3,69,-0.7369605027281202],[117,3,70,-0.7366643693936502],[117,3,71,-0.736370653864416],[117,3,72,-0.7360793611700134],[117,3,73,-0.7357904962447197],[117,3,74,-0.7355040639270456],[117,3,75,-0.7352200689593171],[117,3,76,-0.7349385159872457],[117,3,77,-0.7346594095594988],[117,3,78,-0.734382754127275],[117,3,79,-0.7341085540438735],[117,4,64,-0.7386046596650699],[117,4,65,-0.7382961173696518],[117,4,66,-0.7379899661247438],[117,4,67,-0.7376862114355615],[117,4,68,-0.7373848587141543],[117,4,69,-0.7370859132789841],[117,4,70,-0.7367893803544878],[117,4,71,-0.736495265070645],[117,4,72,-0.7362035724625433],[117,4,73,-0.7359143074699598],[117,4,74,-0.7356274749369116],[117,4,75,-0.7353430796112391],[117,4,76,-0.7350611261441751],[117,4,77,-0.734781619089916],[117,4,78,-0.7345045629051962],[117,4,79,-0.7342299619488574],[117,5,64,-0.7387322375442537],[117,5,65,-0.7384232973236035],[117,5,66,-0.7381167479588973],[117,5,67,-0.7378125949607914],[117,5,68,-0.7375108437467844],[117,5,69,-0.7372114996407947],[117,5,70,-0.736914567872724],[117,5,71,-0.7366200535780246],[117,5,72,-0.7363279617972645],[117,5,73,-0.7360382974757084],[117,5,74,-0.7357510654628693],[117,5,75,-0.7354662705120905],[117,5,76,-0.7351839172801152],[117,5,77,-0.7349040103266576],[117,5,78,-0.7346265541139771],[117,5,79,-0.7343515530064478],[117,6,64,-0.7388599875260052],[117,6,65,-0.7385506501432793],[117,6,66,-0.7382437034192759],[117,6,67,-0.7379391528700805],[117,6,68,-0.7376370039186282],[117,6,69,-0.7373372618942822],[117,6,70,-0.7370399320323974],[117,6,71,-0.7367450194738865],[117,6,72,-0.7364525292647865],[117,6,73,-0.7361624663558387],[117,6,74,-0.7358748356020399],[117,6,75,-0.7355896417622255],[117,6,76,-0.735306889498638],[117,6,77,-0.7350265833764983],[117,6,78,-0.7347487278635799],[117,6,79,-0.7344733273297787],[117,7,64,-0.7389879096716157],[117,7,65,-0.7386781758933469],[117,7,66,-0.7383708325739102],[117,7,67,-0.7380658852348072],[117,7,68,-0.7377633393043974],[117,7,69,-0.7374632001174772],[117,7,70,-0.7371654729148421],[117,7,71,-0.7368701628428542],[117,7,72,-0.7365772749530072],[117,7,73,-0.7362868142015073],[117,7,74,-0.7359987854488244],[117,7,75,-0.735713193459274],[117,7,76,-0.735430042900587],[117,7,77,-0.7351493383434801],[117,7,78,-0.7348710842612302],[117,7,79,-0.7345952850292435],[117,8,64,-0.739116004039751],[117,8,65,-0.7388058746358452],[117,8,66,-0.7384981354881971],[117,8,67,-0.7381927921237119],[117,8,68,-0.7378898499761616],[117,8,69,-0.7375893143857634],[117,8,70,-0.7372911905987416],[117,8,71,-0.7369954837668955],[117,8,72,-0.7367021989471642],[117,8,73,-0.736411341101207],[117,8,74,-0.7361229150949553],[117,8,75,-0.7358369256981937],[117,8,76,-0.7355533775841301],[117,8,77,-0.7352722753289658],[117,8,78,-0.7349936234114701],[117,8,79,-0.7347174262125492],[117,9,64,-0.7392442706864382],[117,9,65,-0.7389337464301693],[117,9,66,-0.7386256122248851],[117,9,67,-0.7383198736028822],[117,9,68,-0.7380165360033328],[117,9,69,-0.7377156047718626],[117,9,70,-0.7374170851601127],[117,9,71,-0.737120982325308],[117,9,72,-0.7368273013298208],[117,9,73,-0.736536047140752],[117,9,74,-0.736247224629483],[117,9,75,-0.735960838571256],[117,9,76,-0.7356768936447445],[117,9,77,-0.7353953944316235],[117,9,78,-0.7351163454161436],[117,9,79,-0.7348397509847],[117,10,64,-0.7393727096650504],[117,10,65,-0.7390617913330555],[117,10,66,-0.7387532628440594],[117,10,67,-0.7384471297357379],[117,10,68,-0.7381433974526509],[117,10,69,-0.7378420713458201],[117,10,70,-0.7375431566722921],[117,10,71,-0.7372466585947044],[117,10,72,-0.736952582180851],[117,10,73,-0.7366609324032634],[117,10,74,-0.7363717141387601],[117,10,75,-0.7360849321680303],[117,10,76,-0.7358005911752017],[117,10,77,-0.7355186957474117],[117,10,78,-0.7352392503743811],[117,10,79,-0.7349622594479833],[117,11,64,-0.7395013210263601],[117,11,65,-0.7391900093986348],[117,11,66,-0.7388810874031952],[117,11,67,-0.7385745605830842],[117,11,68,-0.7382704343882366],[117,11,69,-0.7379687141750583],[117,11,70,-0.737669405205988],[117,11,71,-0.7373725126490649],[117,11,72,-0.7370780415774927],[117,11,73,-0.7367859969692208],[117,11,74,-0.7364963837064944],[117,11,75,-0.7362092065754373],[117,11,76,-0.7359244702656205],[117,11,77,-0.735642179369632],[117,11,78,-0.7353623383826524],[117,11,79,-0.7350849517020217],[117,12,64,-0.7396301048185164],[117,12,65,-0.7393184006784101],[117,12,66,-0.739009085957136],[117,12,67,-0.7387021662030897],[117,12,68,-0.7383976468715695],[117,12,69,-0.7380955333243527],[117,12,70,-0.7377958308292587],[117,12,71,-0.7374985445597153],[117,12,72,-0.7372036795943244],[117,12,73,-0.7369112409164413],[117,12,74,-0.7366212334137265],[117,12,75,-0.7363336618777266],[117,12,76,-0.7360485310034441],[117,12,77,-0.7357658453889072],[117,12,78,-0.7354856095347438],[117,12,79,-0.7352078278437507],[117,13,64,-0.7397590610870683],[117,13,65,-0.7394469652212804],[117,13,66,-0.7391372585581147],[117,13,67,-0.7388299466513087],[117,13,68,-0.7385250349615106],[117,13,69,-0.7382225288558568],[117,13,70,-0.7379224336075348],[117,13,71,-0.7376247543953497],[117,13,72,-0.7373294963032888],[117,13,73,-0.7370366643201021],[117,13,74,-0.7367462633388526],[117,13,75,-0.736458298156499],[117,13,76,-0.7361727734734635],[117,13,77,-0.7358896938932028],[117,13,78,-0.7356090639217817],[117,13,79,-0.7353308879674418],[117,14,64,-0.7398881898749429],[117,14,65,-0.7395757030735165],[117,14,66,-0.7392656052557334],[117,14,67,-0.738957901980659],[117,14,68,-0.7386525987142794],[117,14,69,-0.7383497008290777],[117,14,70,-0.7380492136035972],[117,14,71,-0.7377511422220077],[117,14,72,-0.7374554917736699],[117,14,73,-0.7371622672527165],[117,14,74,-0.7368714735576016],[117,14,75,-0.7365831154906839],[117,14,76,-0.7362971977577939],[117,14,77,-0.7360137249678054],[117,14,78,-0.7357327016322086],[117,14,79,-0.7354541321646789],[117,15,64,-0.7400174912224973],[117,15,65,-0.739704614278816],[117,15,66,-0.7393941260970147],[117,15,67,-0.7390860322414753],[117,15,68,-0.7387803381835081],[117,15,69,-0.7384770493009307],[117,15,70,-0.7381761708776299],[117,15,71,-0.7378777081031276],[117,15,72,-0.7375816660721461],[117,15,73,-0.7372880497841887],[117,15,74,-0.7369968641430887],[117,15,75,-0.7367081139565927],[117,15,76,-0.7364218039359285],[117,15,77,-0.736137938695375],[117,15,78,-0.7358565227518367],[117,15,79,-0.7355775605244117],[117,16,64,-0.7401469651675052],[117,16,65,-0.739833698878287],[117,16,66,-0.7395228211263886],[117,16,67,-0.7392143374814939],[117,16,68,-0.7389082534202258],[117,16,69,-0.7386045743257238],[117,16,70,-0.7383033054872049],[117,16,71,-0.7380044520995316],[117,16,72,-0.7377080192627755],[117,16,73,-0.7374140119817979],[117,16,74,-0.7371224351657997],[117,16,75,-0.7368332936279038],[117,16,76,-0.736546592084723],[117,16,77,-0.7362623351559303],[117,16,78,-0.735980527363833],[117,16,79,-0.7357011731329406],[117,17,64,-0.740276611745141],[117,17,65,-0.7399629569104345],[117,17,66,-0.7396516903856756],[117,17,67,-0.7393428177458379],[117,17,68,-0.739036344472844],[117,17,69,-0.738732275955142],[117,17,70,-0.7384306174872677],[117,17,71,-0.7381313742694107],[117,17,72,-0.73783455140698],[117,17,73,-0.7375401539101829],[117,17,74,-0.7372481866935761],[117,17,75,-0.7369586545756462],[117,17,76,-0.7366715622783802],[117,17,77,-0.7363869144268331],[117,17,78,-0.7361047155487036],[117,17,79,-0.7358249700739011],[117,18,64,-0.7404064309880336],[117,18,65,-0.7400923884112127],[117,18,66,-0.7397807339141416],[117,18,67,-0.7394714730770708],[117,18,68,-0.7391646113872097],[117,18,69,-0.738860154238302],[117,18,70,-0.7385581069301896],[117,18,71,-0.7382584746683776],[117,18,72,-0.7379612625635992],[117,18,73,-0.7376664756313962],[117,18,74,-0.737374118791668],[117,18,75,-0.7370841968682544],[117,18,76,-0.7367967145885036],[117,18,77,-0.7365116765828416],[117,18,78,-0.7362290873843466],[117,18,79,-0.7359489514283171],[117,19,64,-0.7405364229262513],[117,19,65,-0.7402219934140105],[117,19,66,-0.7399099517484823],[117,19,67,-0.7396003035151811],[117,19,68,-0.7392930542065898],[117,19,69,-0.7389882092217357],[117,19,70,-0.7386857738657537],[117,19,71,-0.7383857533494518],[117,19,72,-0.7380881527888753],[117,19,73,-0.7377929772048877],[117,19,74,-0.7375002315227198],[117,19,75,-0.737209920571552],[117,19,76,-0.736922049084082],[117,19,77,-0.7366366216960951],[117,19,78,-0.7363536429460377],[117,19,79,-0.7360731172745854],[117,20,64,-0.740666587587287],[117,20,65,-0.7403517719496363],[117,20,66,-0.7400393439228079],[117,20,67,-0.7397293090975671],[117,20,68,-0.739421672971657],[117,20,69,-0.739116440949376],[117,20,70,-0.7388136183411391],[117,20,71,-0.7385132103630444],[117,20,72,-0.7382152221364373],[117,20,73,-0.7379196586874905],[117,20,74,-0.7376265249467541],[117,20,75,-0.7373358257487366],[117,20,76,-0.7370475658314739],[117,20,77,-0.7367617498360987],[117,20,78,-0.7364783823064137],[117,20,79,-0.7361974676884607],[117,21,64,-0.7407969249961112],[117,21,65,-0.7404817240463717],[117,21,66,-0.7401689104686973],[117,21,67,-0.7398584898590906],[117,21,68,-0.7395504677205429],[117,21,69,-0.7392448494626098],[117,21,70,-0.7389416404009743],[117,21,71,-0.7386408457570116],[117,21,72,-0.7383424706573548],[117,21,73,-0.7380465201334736],[117,21,74,-0.7377529991212247],[117,21,75,-0.7374619124604332],[117,21,76,-0.7371732648944611],[117,21,77,-0.7368870610697763],[117,21,78,-0.7366033055355268],[117,21,79,-0.7363220027431081],[117,22,64,-0.7409274351751498],[117,22,65,-0.7406118497299482],[117,22,66,-0.740298651415174],[117,22,67,-0.7399878458320543],[117,22,68,-0.7396794384888146],[117,22,69,-0.7393734348002554],[117,22,70,-0.7390698400873142],[117,22,71,-0.7387686595766316],[117,22,72,-0.7384698984001151],[117,22,73,-0.7381735615945191],[117,22,74,-0.7378796541009948],[117,22,75,-0.7375881807646717],[117,22,76,-0.7372991463342257],[117,22,77,-0.7370125554614482],[117,22,78,-0.7367284127008205],[117,22,79,-0.7364467225090809],[117,23,64,-0.7410581181443071],[117,23,65,-0.7407421490235714],[117,23,66,-0.740428566788731],[117,23,67,-0.7401173770462244],[117,23,68,-0.7398085853094983],[117,23,69,-0.7395021969985851],[117,23,70,-0.7391982174396641],[117,23,71,-0.7388966518646277],[117,23,72,-0.738597505410646],[117,23,73,-0.7383007831197452],[117,23,74,-0.738006489938359],[117,23,75,-0.7377146307169089],[117,23,76,-0.7374252102093725],[117,23,77,-0.7371382330728532],[117,23,78,-0.7368537038671534],[117,23,79,-0.7365716270543425],[117,24,64,-0.741188973920943],[117,24,65,-0.7408726219478967],[117,24,66,-0.7405586566133064],[117,24,67,-0.740247083528808],[117,24,68,-0.7399379082130564],[117,24,69,-0.7396311360913026],[117,24,70,-0.7393267724949549],[117,24,71,-0.7390248226611451],[117,24,72,-0.7387252917322924],[117,24,73,-0.7384281847556832],[117,24,74,-0.7381335066830206],[117,24,75,-0.7378412623700058],[117,24,76,-0.7375514565759065],[117,24,77,-0.7372640939631256],[117,24,78,-0.7369791790967752],[117,24,79,-0.7366967164442442],[117,25,64,-0.7413200025199259],[117,25,65,-0.7410032685210842],[117,25,66,-0.7406889209103376],[117,25,67,-0.7403769653045065],[117,25,68,-0.7400674072274407],[117,25,69,-0.7397602521095966],[117,25,70,-0.7394555052875986],[117,25,71,-0.7391531720038047],[117,25,72,-0.7388532574058709],[117,25,73,-0.7385557665463307],[117,25,74,-0.7382607043821446],[117,25,75,-0.7379680757742813],[117,25,76,-0.737677885487286],[117,25,77,-0.7373901381888492],[117,25,78,-0.7371048384493809],[117,25,79,-0.7368219907415773],[117,26,64,-0.7414512039536192],[117,26,65,-0.7411340887587828],[117,26,66,-0.7408193596987462],[117,26,67,-0.7405070223955006],[117,26,68,-0.7401970823780775],[117,26,69,-0.7398895450821253],[117,26,70,-0.7395844158494715],[117,26,71,-0.7392816999276874],[117,26,72,-0.7389814024696533],[117,26,73,-0.7386835285331368],[117,26,74,-0.7383880830803431],[117,26,75,-0.7380950709774964],[117,26,76,-0.7378044969944069],[117,26,77,-0.7375163658040411],[117,26,78,-0.7372306819820944],[117,26,79,-0.7369474500065589],[117,27,64,-0.7415825782318641],[117,27,65,-0.7412650826741151],[117,27,66,-0.7409499729949225],[117,27,67,-0.7406372548214348],[117,27,68,-0.7403269336878519],[117,27,69,-0.7400190150350011],[117,27,70,-0.7397135042098996],[117,27,71,-0.7394104064653193],[117,27,72,-0.7391097269593515],[117,27,73,-0.7388114707549857],[117,27,74,-0.7385156428196592],[117,27,75,-0.7382222480248387],[117,27,76,-0.7379312911455879],[117,27,77,-0.7376427768601365],[117,27,78,-0.7373567097494536],[117,27,79,-0.7370730942968151],[117,28,64,-0.7417141253620351],[117,28,65,-0.7413962502777312],[117,28,66,-0.7410807608127792],[117,28,67,-0.7407676625994712],[117,28,68,-0.7404569611771618],[117,28,69,-0.7401486619918441],[117,28,70,-0.739842770395712],[117,28,71,-0.7395392916467247],[117,28,72,-0.7392382309081715],[117,28,73,-0.738939593248251],[117,28,74,-0.7386433836396205],[117,28,75,-0.7383496069589763],[117,28,76,-0.7380582679866232],[117,28,77,-0.7377693714060418],[117,28,78,-0.7374829218034633],[117,28,79,-0.7371989236674357],[117,29,64,-0.7418458453490155],[117,29,65,-0.7415275915777855],[117,29,66,-0.7412117231637284],[117,29,67,-0.7408982457442663],[117,29,68,-0.7405871648638949],[117,29,69,-0.7402784859737598],[117,29,70,-0.7399722144312179],[117,29,71,-0.739668355499403],[117,29,72,-0.7393669143467899],[117,29,73,-0.7390678960467729],[117,29,74,-0.7387713055772162],[117,29,75,-0.7384771478200343],[117,29,76,-0.7381854275607596],[117,29,77,-0.7378961494881123],[117,29,78,-0.737609318193573],[117,29,79,-0.7373249381709495],[117,30,64,-0.7419777381952217],[117,30,65,-0.7416591065799603],[117,30,66,-0.7413428600567049],[117,30,67,-0.7410290042679942],[117,30,68,-0.7407175447634513],[117,30,69,-0.7404084869993607],[117,30,70,-0.7401018363382293],[117,30,71,-0.7397975980483524],[117,30,72,-0.7394957773033767],[117,30,73,-0.7391963791818799],[117,30,74,-0.7388994086669203],[117,30,75,-0.7386048706456173],[117,30,76,-0.7383127699087197],[117,30,77,-0.738023111150174],[117,30,78,-0.7377358989666981],[117,30,79,-0.7374511378573483],[117,31,64,-0.7421098039005795],[117,31,65,-0.7417907952874421],[117,31,66,-0.741474171498143],[117,31,67,-0.7411599381803234],[117,31,68,-0.7408481008887206],[117,31,69,-0.7405386650847443],[117,31,70,-0.7402316361360385],[117,31,71,-0.7399270193160458],[117,31,72,-0.7396248198035723],[117,31,73,-0.7393250426823662],[117,31,74,-0.7390276929406673],[117,31,75,-0.7387327754707871],[117,31,76,-0.7384402950686779],[117,31,77,-0.7381502564335005],[117,31,78,-0.737862664167198],[117,31,79,-0.7375775227740627],[117,32,64,-0.7422420424625782],[117,32,65,-0.7419226577009758],[117,32,66,-0.7416056574920301],[117,32,67,-0.7412910474884709],[117,32,68,-0.7409788332501358],[117,32,69,-0.7406690202435467],[117,32,70,-0.7403616138414704],[117,32,71,-0.7400566193224847],[117,32,72,-0.7397540418705414],[117,32,73,-0.7394538865745461],[117,32,74,-0.7391561584279068],[117,32,75,-0.7388608623281153],[117,32,76,-0.7385680030763144],[117,32,77,-0.738277585376867],[117,32,78,-0.7379896138369288],[117,32,79,-0.7377040929660161],[117,33,64,-0.7423744538762553],[117,33,65,-0.7420546938188494],[117,33,66,-0.7417373180398914],[117,33,67,-0.7414223321971862],[117,33,68,-0.741109741855658],[117,33,69,-0.7407995524869266],[117,33,70,-0.7404917694688692],[117,33,71,-0.7401863980851843],[117,33,72,-0.739883443524957],[117,33,73,-0.7395829108822369],[117,33,74,-0.7392848051555879],[117,33,75,-0.7389891312476686],[117,33,76,-0.7386958939647998],[117,33,77,-0.7384050980165342],[117,33,78,-0.738116748015228],[117,33,79,-0.737830848475609],[117,34,64,-0.742507038134181],[117,34,65,-0.742186903636878],[117,34,66,-0.7418691531407746],[117,34,67,-0.7415537923087363],[117,34,68,-0.74124082671076],[117,34,69,-0.7409302618235504],[117,34,70,-0.7406221030300805],[117,34,71,-0.7403163556191572],[117,34,72,-0.740013024784985],[117,34,73,-0.7397121156267447],[117,34,74,-0.7394136331481427],[117,34,75,-0.739117582256992],[117,34,76,-0.7388239677647789],[117,34,77,-0.7385327943862328],[117,34,78,-0.7382440667388981],[117,34,79,-0.7379577893427025],[117,35,64,-0.7426397952265115],[117,35,65,-0.7423192871484585],[117,35,66,-0.7420011627913035],[117,35,67,-0.7416854278229592],[117,35,68,-0.7413720878184813],[117,35,69,-0.7410611482596452],[117,35,70,-0.7407526145345067],[117,35,71,-0.7404464919369674],[117,35,72,-0.7401427856663378],[117,35,73,-0.739841500826917],[117,35,74,-0.7395426424275409],[117,35,75,-0.7392462153811635],[117,35,76,-0.7389522245044243],[117,35,77,-0.7386606745172168],[117,35,78,-0.7383715700422616],[117,35,79,-0.7380849156046729],[117,36,64,-0.7427727251409673],[117,36,65,-0.7424518443445458],[117,36,66,-0.7421333469856553],[117,36,67,-0.741817238737241],[117,36,68,-0.741503525179404],[117,36,69,-0.7411922117989764],[117,36,70,-0.7408833039890834],[117,36,71,-0.7405768070487073],[117,36,72,-0.7402727261822517],[117,36,73,-0.7399710664991204],[117,36,74,-0.7396718330132658],[117,36,75,-0.7393750306427705],[117,36,76,-0.7390806642094139],[117,36,77,-0.7387887384382412],[117,36,78,-0.738499257957136],[117,36,79,-0.7382122272963878],[117,37,64,-0.7429058278628549],[117,37,65,-0.7425845752136762],[117,37,66,-0.7422657057155829],[117,37,67,-0.7419492250465389],[117,37,68,-0.7416351387916762],[117,37,69,-0.7413234524428705],[117,37,70,-0.7410141713983017],[117,37,71,-0.7407073009620201],[117,37,72,-0.7404028463435086],[117,37,73,-0.7401008126572626],[117,37,74,-0.7398012049223378],[117,37,75,-0.7395040280619323],[117,37,76,-0.7392092869029526],[117,37,77,-0.738916986175583],[117,37,78,-0.7386271305128578],[117,37,79,-0.738339724450229],[117,38,64,-0.7430391033750439],[117,38,65,-0.7427174797419438],[117,38,66,-0.7423982389703921],[117,38,67,-0.7420813867433576],[117,38,68,-0.7417669286509888],[117,38,69,-0.7414548701901909],[117,38,70,-0.7411452167641857],[117,38,71,-0.7408379736820768],[117,38,72,-0.7405331461584136],[117,38,73,-0.7402307393127693],[117,38,74,-0.7399307581692903],[117,38,75,-0.7396332076562767],[117,38,76,-0.7393380926057495],[117,38,77,-0.739045417753019],[117,38,78,-0.7387551877362579],[117,38,79,-0.7384674070960681],[117,39,64,-0.7431725516580219],[117,39,65,-0.7428505579130551],[117,39,66,-0.7425309467369958],[117,39,67,-0.7422137238178033],[117,39,68,-0.7418988947506289],[117,39,69,-0.7415864650373931],[117,39,70,-0.7412764400863455],[117,39,71,-0.74096882521163],[117,39,72,-0.7406636256328483],[117,39,73,-0.7403608464746384],[117,39,74,-0.740060492766224],[117,39,75,-0.7397625694409942],[117,39,76,-0.7394670813360713],[117,39,77,-0.7391740331918792],[117,39,78,-0.7388834296517163],[117,39,79,-0.7385952752613215],[117,40,64,-0.7433061726898775],[117,40,65,-0.7429838097083127],[117,40,66,-0.742663828999898],[117,40,67,-0.7423462362575686],[117,40,68,-0.7420310370814649],[117,40,69,-0.7417182369785084],[117,40,70,-0.7414078413619627],[117,40,71,-0.7410998555509981],[117,40,72,-0.7407942847702553],[117,40,73,-0.7404911341494239],[117,40,74,-0.7401904087227908],[117,40,75,-0.7398921134288217],[117,40,76,-0.7395962531097269],[117,40,77,-0.7393028325110313],[117,40,78,-0.7390118562811455],[117,40,79,-0.7387233289709341],[117,41,64,-0.7434399664462861],[117,41,65,-0.7431172351066002],[117,41,66,-0.742796885741178],[117,41,67,-0.7424789240479162],[117,41,68,-0.7421633556319298],[117,41,69,-0.7418501860051276],[117,41,70,-0.7415394205857733],[117,41,71,-0.7412310646980496],[117,41,72,-0.7409251235716227],[117,41,73,-0.7406216023412197],[117,41,74,-0.7403205060461783],[117,41,75,-0.7400218396300268],[117,41,76,-0.7397256079400512],[117,41,77,-0.7394318157268636],[117,41,78,-0.739140467643975],[117,41,79,-0.7388515682473622],[117,42,64,-0.7435739329005628],[117,42,65,-0.7432508340844362],[117,42,66,-0.7429301169405449],[117,42,67,-0.7426117871717334],[117,42,68,-0.7422958503880766],[117,42,69,-0.7419823121064565],[117,42,70,-0.7416711777501227],[117,42,71,-0.7413624526482571],[117,42,72,-0.741056142035537],[117,42,73,-0.7407522510517142],[117,42,74,-0.7404507847411632],[117,42,75,-0.740151748052462],[117,42,76,-0.7398551458379586],[117,42,77,-0.7395609828533403],[117,42,78,-0.739269263757205],[117,42,79,-0.7389799931106292],[117,43,64,-0.7437080720236401],[117,43,65,-0.7433846066159504],[117,43,66,-0.7430635225753142],[117,43,67,-0.742744825609508],[117,43,68,-0.7424285213335533],[117,43,69,-0.7421146152692908],[117,43,70,-0.7418031128449419],[117,43,71,-0.7414940193946735],[117,43,72,-0.741187340158161],[117,43,73,-0.7408830802801666],[117,43,74,-0.7405812448100884],[117,43,75,-0.7402818387015406],[117,43,76,-0.7399848668119207],[117,43,77,-0.7396903339019771],[117,43,78,-0.7393982446353827],[117,43,79,-0.7391086035783008],[117,44,64,-0.7438423837840901],[117,44,65,-0.7435185526729078],[117,44,66,-0.7431971026204303],[117,44,67,-0.7428780393393527],[117,44,68,-0.7425613684496275],[117,44,69,-0.7422470954780404],[117,44,70,-0.7419352258577707],[117,44,71,-0.7416257649279561],[117,44,72,-0.7413187179332559],[117,44,73,-0.7410140900234297],[117,44,74,-0.7407118862528854],[117,44,75,-0.7404121115802603],[117,44,76,-0.7401147708679876],[117,44,77,-0.7398198688818645],[117,44,78,-0.7395274102906252],[117,44,79,-0.7392373996655075],[117,45,64,-0.7439768681481014],[117,45,65,-0.7436526722246839],[117,45,66,-0.7433308570484437],[117,45,67,-0.7430114283369796],[117,45,68,-0.7426943917151613],[117,45,69,-0.7423797527147047],[117,45,70,-0.7420675167737328],[117,45,71,-0.7417576892363404],[117,45,72,-0.7414502753521571],[117,45,73,-0.7411452802759256],[117,45,74,-0.7408427090670504],[117,45,75,-0.7405425666891781],[117,45,76,-0.7402448580097647],[117,45,77,-0.7399495877996428],[117,45,78,-0.7396567607325955],[117,45,79,-0.7393663813849214],[117,46,64,-0.7441115250795338],[117,46,65,-0.7437869652383198],[117,46,66,-0.7434647858295648],[117,46,67,-0.7431449925757562],[117,46,68,-0.7428275911066665],[117,46,69,-0.7425125869589276],[117,46,70,-0.7421999855755921],[117,46,71,-0.7418897923056976],[117,46,72,-0.7415820124038299],[117,46,73,-0.7412766510297012],[117,46,74,-0.740973713247699],[117,46,75,-0.740673204026466],[117,46,76,-0.7403751282384672],[117,46,77,-0.7400794906595579],[117,46,78,-0.7397862959685564],[117,46,79,-0.7394955487468102],[117,47,64,-0.7442463545399017],[117,47,65,-0.7439214316785063],[117,47,66,-0.7435988889316479],[117,47,67,-0.7432787320266887],[117,47,68,-0.7429609665982886],[117,47,69,-0.7426455981879816],[117,47,70,-0.7423326322437354],[117,47,71,-0.7420220741195162],[117,47,72,-0.741713929074852],[117,47,73,-0.7414082022744112],[117,47,74,-0.74110489878755],[117,47,75,-0.7408040235878939],[117,47,76,-0.7405055815529036],[117,47,77,-0.740209577463444],[117,47,78,-0.7399160160033553],[117,47,79,-0.7396249017590211],[117,48,64,-0.7443813564883587],[117,48,65,-0.7440560715075676],[117,48,66,-0.743733166320176],[117,48,67,-0.7434126466584059],[117,48,68,-0.7430945181617905],[117,48,69,-0.742778786376751],[117,48,70,-0.7424654567561559],[117,48,71,-0.7421545346588863],[117,48,72,-0.7418460253493981],[117,48,73,-0.7415399339973017],[117,48,74,-0.7412362656769088],[117,48,75,-0.7409350253668137],[117,48,76,-0.7406362179494598],[117,48,77,-0.7403398482107075],[117,48,78,-0.7400459208394068],[117,48,79,-0.7397544404269636],[117,49,64,-0.7445165308817522],[117,49,65,-0.744190884685516],[117,49,66,-0.7438676179583145],[117,49,67,-0.7435467364372141],[117,49,68,-0.7432282457666072],[117,49,69,-0.7429121514977872],[117,49,70,-0.7425984590885093],[117,49,71,-0.7422871739025549],[117,49,72,-0.7419783012092945],[117,49,73,-0.7416718461832658],[117,49,74,-0.7413678139037223],[117,49,75,-0.741066209354214],[117,49,76,-0.7407670374221527],[117,49,77,-0.7404703028983819],[117,49,78,-0.7401760104767474],[117,49,79,-0.7398841647536651],[117,50,64,-0.7446518776746069],[117,50,65,-0.7443258711700362],[117,50,66,-0.7440022438068954],[117,50,67,-0.7436810013270811],[117,50,68,-0.7433621493798296],[117,50,69,-0.7430456935212923],[117,50,70,-0.7427316392140966],[117,50,71,-0.7424199918269099],[117,50,72,-0.7421107566340025],[117,50,73,-0.7418039388148263],[117,50,74,-0.7414995434535628],[117,50,75,-0.7411975755387032],[117,50,76,-0.7408980399626153],[117,50,77,-0.7406009415211111],[117,50,78,-0.7403062849130199],[117,50,79,-0.7400140747397539],[117,51,64,-0.7447873968191099],[117,51,65,-0.744461030916469],[117,51,66,-0.7441370438244018],[117,51,67,-0.7438154412896198],[117,51,68,-0.7434962289661885],[117,51,69,-0.7431794124151028],[117,51,70,-0.7428649971038476],[117,51,71,-0.742552988405962],[117,51,72,-0.7422433916006023],[117,51,73,-0.7419362118721201],[117,51,74,-0.741631454309611],[117,51,75,-0.7413291239064939],[117,51,76,-0.7410292255600786],[117,51,77,-0.740731764071133],[117,51,78,-0.7404367441434558],[117,51,79,-0.7401441703834428],[117,52,64,-0.7449230882651637],[117,52,65,-0.7445963638778658],[117,52,66,-0.7442720179670218],[117,52,67,-0.743950056284143],[117,52,68,-0.7436304844881092],[117,52,69,-0.7433133081447445],[117,52,70,-0.7429985327263764],[117,52,71,-0.7426861636114015],[117,52,72,-0.7423762060838478],[117,52,73,-0.7420686653329526],[117,52,74,-0.7417635464527113],[117,52,75,-0.7414608544414572],[117,52,76,-0.741160594201428],[117,52,77,-0.7408627705383342],[117,52,78,-0.7405673881609308],[117,52,79,-0.7402744516805839],[117,53,64,-0.7450589519603641],[117,53,65,-0.744731870004965],[117,53,66,-0.7444071661886247],[117,53,67,-0.7440848462676392],[117,53,68,-0.7437649159056877],[117,53,69,-0.7434473806734082],[117,53,70,-0.7431322460479569],[117,53,71,-0.7428195174125731],[117,53,72,-0.7425092000561423],[117,53,73,-0.7422012991727731],[117,53,74,-0.7418958198613472],[117,53,75,-0.741592767125098],[117,53,76,-0.7412921458711779],[117,53,77,-0.7409939609102261],[117,53,78,-0.7406982169559403],[117,53,79,-0.740404918624644],[117,54,64,-0.7451949878500221],[117,54,65,-0.7448675492462156],[117,54,66,-0.7445424884407849],[117,54,67,-0.7442198111947962],[117,54,68,-0.7438995231767134],[117,54,69,-0.7435816299619733],[117,54,70,-0.7432661370325461],[117,54,71,-0.7429530497764996],[117,54,72,-0.7426423734875616],[117,54,73,-0.742334113364699],[117,54,74,-0.742028274511665],[117,54,75,-0.7417248619365793],[117,54,76,-0.7414238805514951],[117,54,77,-0.7411253351719669],[117,54,78,-0.740829230516622],[117,54,79,-0.7405355712067275],[117,55,64,-0.7453311958771406],[117,55,65,-0.7450034015477516],[117,55,66,-0.7446779846727567],[117,55,67,-0.7443549510179768],[117,55,68,-0.7440343062566451],[117,55,69,-0.7437160559689829],[117,55,70,-0.7434002056417595],[117,55,71,-0.7430867606678563],[117,55,72,-0.74277572634583],[117,55,73,-0.7424671078794902],[117,55,74,-0.7421609103774481],[117,55,75,-0.7418571388526961],[117,55,76,-0.7415557982221741],[117,55,77,-0.7412568933063383],[117,55,78,-0.7409604288287318],[117,55,79,-0.7406664094155525],[117,56,64,-0.7454675759824687],[117,56,65,-0.7451394268534486],[117,56,66,-0.7448136548315301],[117,56,67,-0.7444902656872734],[117,56,68,-0.7441692650986664],[117,56,69,-0.7438506586506994],[117,56,70,-0.7435344518349265],[117,56,71,-0.7432206500490277],[117,56,72,-0.7429092585963745],[117,56,73,-0.7426002826856047],[117,56,74,-0.7422937274301736],[117,56,75,-0.7419895978479317],[117,56,76,-0.7416878988606924],[117,56,77,-0.7413886352937993],[117,56,78,-0.7410918118756985],[117,56,79,-0.7407974332375047],[117,57,64,-0.7456041281044863],[117,57,65,-0.7452756251049069],[117,57,66,-0.744949498861814],[117,57,67,-0.7446257551504922],[117,57,68,-0.7443043996536685],[117,57,69,-0.743985437961088],[117,57,70,-0.7436688755690735],[117,57,71,-0.7433547178800903],[117,57,72,-0.7430429702023089],[117,57,73,-0.7427336377491822],[117,57,74,-0.7424267256389945],[117,57,75,-0.7421222388944407],[117,57,76,-0.7418201824421936],[117,57,77,-0.7415205611124709],[117,57,78,-0.7412233796386075],[117,57,79,-0.7409286426566217],[117,58,64,-0.7457408521793869],[117,58,65,-0.7454119962414348],[117,58,66,-0.7450855167060203],[117,58,67,-0.7447614193531364],[117,58,68,-0.7444397098702346],[117,58,69,-0.7441203938517991],[117,58,70,-0.7438034767989077],[117,58,71,-0.7434889641187954],[117,58,72,-0.7431768611244175],[117,58,73,-0.742867173034027],[117,58,74,-0.7425599049707234],[117,58,75,-0.7422550619620321],[117,58,76,-0.7419526489394708],[117,58,77,-0.7416526707381178],[117,58,78,-0.7413551320961831],[117,58,79,-0.7410600376545755],[117,59,64,-0.7458777481411335],[117,59,65,-0.7455485402001044],[117,59,66,-0.7452217083043182],[117,59,67,-0.7448972582384614],[117,59,68,-0.7445751956946942],[117,59,69,-0.7442555262722255],[117,59,70,-0.7439382554768724],[117,59,71,-0.7436233887206252],[117,59,72,-0.7433109313212092],[117,59,73,-0.7430008885016633],[117,59,74,-0.7426932653898879],[117,59,75,-0.7423880670182244],[117,59,76,-0.7420852983230217],[117,59,77,-0.7417849641442047],[117,59,78,-0.741487069224845],[117,59,79,-0.7411916182107281],[117,60,64,-0.7460148159214334],[117,60,65,-0.7456852569157265],[117,60,66,-0.7453580735946107],[117,60,67,-0.7450332717474504],[117,60,68,-0.7447108570710995],[117,60,69,-0.744390835169476],[117,60,70,-0.744073211553122],[117,60,71,-0.7437579916387675],[117,60,72,-0.7434451807488939],[117,60,73,-0.743134784111311],[117,60,74,-0.7428268068587057],[117,60,75,-0.7425212540282212],[117,60,76,-0.7422181305610239],[117,60,77,-0.7419174413018711],[117,60,78,-0.7416191909986822],[117,60,79,-0.7413233843021059],[117,61,64,-0.7461520554497627],[117,61,65,-0.7458221463208747],[117,61,66,-0.7454946125125574],[117,61,67,-0.7451694598188379],[117,61,68,-0.744846693941248],[117,61,69,-0.7445263204884001],[117,61,70,-0.7442083449755454],[117,61,71,-0.7438927728241398],[117,61,72,-0.7435796093614053],[117,61,73,-0.7432688598199084],[117,61,74,-0.7429605293371078],[117,61,75,-0.7426546229549347],[117,61,76,-0.7423511456193583],[117,61,77,-0.7420501021799546],[117,61,78,-0.7417514973894771],[117,61,79,-0.741455335903424],[117,62,64,-0.7462894666533405],[117,62,65,-0.7459592083458604],[117,62,66,-0.7456313249915503],[117,62,67,-0.7453058223890846],[117,62,68,-0.7449827062446582],[117,62,69,-0.7446619821715619],[117,62,70,-0.7443436556897418],[117,62,71,-0.7440277322253638],[117,62,72,-0.7437142171103763],[117,62,73,-0.7434031155820875],[117,62,74,-0.7430944327827139],[117,62,75,-0.7427881737589598],[117,62,76,-0.7424843434615835],[117,62,77,-0.7421829467449657],[117,62,78,-0.7418839883666799],[117,62,79,-0.7415874729870604],[117,63,64,-0.7464270494571856],[117,63,65,-0.746096442918788],[117,63,66,-0.7457682109627688],[117,63,67,-0.7454423593924336],[117,63,68,-0.7451188939186251],[117,63,69,-0.7447978201592971],[117,63,70,-0.7444791436390753],[117,63,71,-0.7441628697888211],[117,63,72,-0.7438490039451942],[117,63,73,-0.7435375513502297],[117,63,74,-0.7432285171508874],[117,63,75,-0.7429219063986305],[117,63,76,-0.7426177240489923],[117,63,77,-0.7423159749611435],[117,63,78,-0.7420166638974645],[117,63,79,-0.7417197955231114],[117,64,64,-0.7465648037840992],[117,64,65,-0.7462338499655392],[117,64,66,-0.7459052703551634],[117,64,67,-0.7455790707608932],[117,64,68,-0.7452552568982032],[117,64,69,-0.7449338343896951],[117,64,70,-0.744614808764659],[117,64,71,-0.7442981854586366],[117,64,72,-0.7439839698129839],[117,64,73,-0.7436721670744487],[117,64,74,-0.7433627823947191],[117,64,75,-0.7430558208300029],[117,64,76,-0.7427512873405937],[117,64,77,-0.7424491867904389],[117,64,78,-0.7421495239467113],[117,64,79,-0.741852303479375],[117,65,64,-0.746702729554648],[117,65,65,-0.7463714294097554],[117,65,66,-0.746042503095439],[117,65,67,-0.7457159564242202],[117,65,68,-0.7453917951161898],[117,65,69,-0.7450700247985826],[117,65,70,-0.7447506510053375],[117,65,71,-0.7444336791766614],[117,65,72,-0.7441191146585915],[117,65,73,-0.7438069627025736],[117,65,74,-0.7434972284650097],[117,65,75,-0.7431899170068373],[117,65,76,-0.7428850332930965],[117,65,77,-0.742582582192497],[117,65,78,-0.7422825684769897],[117,65,79,-0.7419849968213337],[117,66,64,-0.7468408266872206],[117,66,65,-0.7465091811728938],[117,66,66,-0.74617990910811],[117,66,67,-0.7458530163099754],[117,66,68,-0.7455285085031811],[117,66,69,-0.7452063913195794],[117,66,70,-0.7448866702977428],[117,66,71,-0.7445693508825282],[117,66,72,-0.7442544384246393],[117,66,73,-0.7439419381802047],[117,66,74,-0.7436318553103255],[117,66,75,-0.743324194880655],[117,66,76,-0.7430189618609648],[117,66,77,-0.7427161611247128],[117,66,78,-0.7424157974486146],[117,66,79,-0.7421178755122094],[117,67,64,-0.7469790950980023],[117,67,65,-0.7466471051742021],[117,67,66,-0.7463174883154764],[117,67,67,-0.7459902503434991],[117,67,68,-0.7456653969875469],[117,67,69,-0.7453429338840734],[117,67,70,-0.7450228665762694],[117,67,71,-0.7447052005136269],[117,67,72,-0.7443899410515009],[117,67,73,-0.7440770934506882],[117,67,74,-0.7437666628769739],[117,67,75,-0.7434586544007125],[117,67,76,-0.7431530729963929],[117,67,77,-0.742849923542207],[117,67,78,-0.7425492108196204],[117,67,79,-0.7422509395129393],[117,68,64,-0.7471175347009984],[117,68,65,-0.7467852013307431],[117,68,66,-0.7464552406376461],[117,68,67,-0.7461276584479343],[117,68,68,-0.7458024604954533],[117,68,69,-0.7454796524212433],[117,68,70,-0.7451592397730975],[117,68,71,-0.7448412280051275],[117,68,72,-0.7445256224773251],[117,68,73,-0.7442124284551395],[117,68,74,-0.7439016511090258],[117,68,75,-0.7435932955140248],[117,68,76,-0.7432873666493284],[117,68,77,-0.7429838693978478],[117,68,78,-0.7426828085457848],[117,68,79,-0.7423841887821985],[117,69,64,-0.7472561454080096],[117,69,65,-0.7469234695573683],[117,69,66,-0.7465931659925114],[117,69,67,-0.7462652405442021],[117,69,68,-0.7459396989508396],[117,69,69,-0.7456165468580346],[117,69,70,-0.745295789818168],[117,69,71,-0.7449774332899555],[117,69,72,-0.7446614826380099],[117,69,73,-0.7443479431324185],[117,69,74,-0.7440368199482913],[117,69,75,-0.7437281181653407],[117,69,76,-0.7434218427674468],[117,69,77,-0.7431179986422263],[117,69,78,-0.7428165905806029],[117,69,79,-0.7425176232763742],[117,70,64,-0.7473949271286877],[117,70,65,-0.747061909766775],[117,70,66,-0.7467312642958033],[117,70,67,-0.7464029965510566],[117,70,68,-0.7460771122754721],[117,70,69,-0.7457536171192152],[117,70,70,-0.7454325166392386],[117,70,71,-0.7451138162988469],[117,70,72,-0.744797521467259],[117,70,73,-0.7444836374191849],[117,70,74,-0.7441721693343748],[117,70,75,-0.7438631222971976],[117,70,76,-0.743556501296208],[117,70,77,-0.7432523112237127],[117,70,78,-0.7429505568753435],[117,70,79,-0.7426512429496227],[117,71,64,-0.7475338797705193],[117,71,65,-0.7472005218694884],[117,71,66,-0.7468695354610755],[117,71,67,-0.7465409263850692],[117,71,68,-0.7462147003889286],[117,71,69,-0.7458908631273578],[117,71,70,-0.7455694201618663],[117,71,71,-0.7452503769603319],[117,71,72,-0.7449337388965643],[117,71,73,-0.7446195112498815],[117,71,74,-0.7443076992046583],[117,71,75,-0.7439983078499062],[117,71,76,-0.7436913421788385],[117,71,77,-0.7433868070884387],[117,71,78,-0.7430847073790321],[117,71,79,-0.742785047753851],[117,72,64,-0.7476730032388079],[117,72,65,-0.7473393057738456],[117,72,66,-0.7470079793996873],[117,72,67,-0.7466790299606105],[117,72,68,-0.7463524632085801],[117,72,69,-0.7460282848028233],[117,72,70,-0.7457065003093906],[117,72,71,-0.7453871152007175],[117,72,72,-0.7450701348551891],[117,72,73,-0.7447555645567163],[117,72,74,-0.7444434094942839],[117,72,75,-0.7441336747615304],[117,72,76,-0.743826365356314],[117,72,77,-0.7435214861802799],[117,72,78,-0.7432190420384323],[117,72,79,-0.7429190376387],[117,73,64,-0.7478122974367304],[117,73,65,-0.7474782613860504],[117,73,66,-0.7471465960208595],[117,73,67,-0.7468173071899071],[117,73,68,-0.7464904006496478],[117,73,69,-0.746165882063817],[117,73,70,-0.7458437570029893],[117,73,71,-0.7455240309441434],[117,73,72,-0.7452067092702241],[117,73,73,-0.7448917972697197],[117,73,74,-0.7445793001362101],[117,73,75,-0.7442692229679462],[117,73,76,-0.7439615707674159],[117,73,77,-0.743656348440912],[117,73,78,-0.7433535607981031],[117,73,79,-0.7430532125516003],[117,74,64,-0.7479517622653119],[117,74,65,-0.7476173886101498],[117,74,66,-0.7472853852316492],[117,74,67,-0.7469557579830156],[117,74,68,-0.7466285126251778],[117,74,69,-0.7463036548263624],[117,74,70,-0.7459811901616534],[117,74,71,-0.7456611241125566],[117,74,72,-0.7453434620665611],[117,74,73,-0.7450282093167176],[117,74,74,-0.7447153710611858],[117,74,75,-0.7444049524028142],[117,74,76,-0.7440969583487056],[117,74,77,-0.7437913938097855],[117,74,78,-0.7434882636003729],[117,74,79,-0.7431875724377465],[117,75,64,-0.7480913976234497],[117,75,65,-0.7477566873480559],[117,75,66,-0.7474243469369731],[117,75,67,-0.7470943822478469],[117,75,68,-0.7467667990460637],[117,75,69,-0.7464416030043257],[117,75,70,-0.7461187997022105],[117,75,71,-0.7457983946257352],[117,75,72,-0.7454803931669178],[117,75,73,-0.7451648006233561],[117,75,74,-0.7448516221977746],[117,75,75,-0.744540862997604],[117,75,76,-0.7442325280345478],[117,75,77,-0.743926622224149],[117,75,78,-0.7436231503853625],[117,75,79,-0.7433221172401209],[117,76,64,-0.7482312034078873],[117,76,65,-0.7478961574995215],[117,76,66,-0.7475634810395829],[117,76,67,-0.7472331798901404],[117,76,68,-0.7469052598210222],[117,76,69,-0.7465797265093901],[117,76,70,-0.7462565855392994],[117,76,71,-0.7459358424012625],[117,76,72,-0.7456175024918116],[117,76,73,-0.7453015711130755],[117,76,74,-0.7449880534723283],[117,76,75,-0.7446769546815685],[117,76,76,-0.7443682797570844],[117,76,77,-0.744062033619023],[117,76,78,-0.7437582210909601],[117,76,79,-0.7434568468994672],[117,77,64,-0.7483711795132713],[117,77,65,-0.7480357989621964],[117,77,66,-0.7477027874401208],[117,77,67,-0.7473721508135203],[117,77,68,-0.7470438948566489],[117,77,69,-0.7467180252511117],[117,77,70,-0.7463945475854261],[117,77,71,-0.7460734673545839],[117,77,72,-0.7457547899596155],[117,77,73,-0.7454385207071662],[117,77,74,-0.7451246648090438],[117,77,75,-0.7448132273817996],[117,77,76,-0.7445042134462921],[117,77,77,-0.744197627927257],[117,77,78,-0.7438934756528768],[117,77,79,-0.7435917613543473],[117,78,64,-0.7485113258321335],[117,78,65,-0.7481756116316096],[117,78,66,-0.7478422660371022],[117,78,67,-0.7475112949194785],[117,78,68,-0.7471827040574011],[117,78,69,-0.7468564991369028],[117,78,70,-0.7465326857509466],[117,78,71,-0.7462112693989887],[117,78,72,-0.7458922554865418],[117,78,73,-0.7455756493247516],[117,78,74,-0.7452614561299454],[117,78,75,-0.7449496810232111],[117,78,76,-0.7446403290299635],[117,78,77,-0.7443334050795113],[117,78,78,-0.7440289140046292],[117,78,79,-0.7437268605411238],[117,79,64,-0.748651642254875],[117,79,65,-0.7483155954011529],[117,79,66,-0.7479819167268998],[117,79,67,-0.7476506121073572],[117,79,68,-0.7473216873255805],[117,79,69,-0.7469951480720138],[117,79,70,-0.7466709999440498],[117,79,71,-0.7463492484455932],[117,79,72,-0.7460298989866233],[117,79,73,-0.745712956882771],[117,79,74,-0.745398427354867],[117,79,75,-0.7450863155285217],[117,79,76,-0.7447766264336899],[117,79,77,-0.7444693650042397],[117,79,78,-0.7441645360775228],[117,79,79,-0.7438621443939413],[117,80,64,-0.7487921286698207],[117,80,65,-0.7484557501621363],[117,80,66,-0.7481217394037981],[117,80,67,-0.7477901022744051],[117,80,68,-0.7474608445613893],[117,80,69,-0.74713397195959],[117,80,70,-0.7468094900708135],[117,80,71,-0.746487404403397],[117,80,72,-0.7461677203717707],[117,80,73,-0.7458504432960351],[117,80,74,-0.7455355784015094],[117,80,75,-0.7452231308183102],[117,80,76,-0.7449131055809184],[117,80,77,-0.7446055076277456],[117,80,78,-0.7443003418007063],[117,80,79,-0.7439976128447838],[117,81,64,-0.7489327849631953],[117,81,65,-0.7485960758037634],[117,81,66,-0.7482617339599689],[117,81,67,-0.7479297653157521],[117,81,68,-0.747600175662905],[117,81,69,-0.747272970700646],[117,81,70,-0.7469481560351788],[117,81,71,-0.7466257371792572],[117,81,72,-0.7463057195517464],[117,81,73,-0.745988108477201],[117,81,74,-0.745672909185413],[117,81,75,-0.7453601268109906],[117,81,76,-0.7450497663929248],[117,81,77,-0.7447418328741564],[117,81,78,-0.7444363311011478],[117,81,79,-0.7441332658234487],[117,82,64,-0.7490736110191467],[117,82,65,-0.7487365722131545],[117,82,66,-0.7484019002854949],[117,82,67,-0.748069601124433],[117,82,68,-0.7477396805261042],[117,82,69,-0.7474121441940894],[117,82,70,-0.747086997738974],[117,82,71,-0.7467642466779119],[117,82,72,-0.746443896434188],[117,82,73,-0.7461259523367952],[117,82,74,-0.7458104196199827],[117,82,75,-0.7454973034228352],[117,82,76,-0.7451866087888382],[117,82,77,-0.7448783406654471],[117,82,78,-0.744572503903657],[117,82,79,-0.7442691032575696],[117,83,64,-0.7492146067197201],[117,83,65,-0.7488772392753212],[117,83,66,-0.748542238268344],[117,83,67,-0.7482096095913613],[117,83,68,-0.7478793590448358],[117,83,69,-0.7475514923366946],[117,83,70,-0.747226015081888],[117,83,71,-0.7469029328019547],[117,83,72,-0.7465822509245831],[117,83,73,-0.7462639747831884],[117,83,74,-0.7459481096164619],[117,83,75,-0.7456346605679486],[117,83,76,-0.7453236326856145],[117,83,77,-0.7450150309214139],[117,83,78,-0.7447088601308596],[117,83,79,-0.7444051250725907],[117,84,64,-0.7493557719449144],[117,84,65,-0.7490180768732229],[117,84,66,-0.7486827477944256],[117,84,67,-0.7483497906053865],[117,84,68,-0.7480192111108791],[117,84,69,-0.7476910150231597],[117,84,70,-0.7473652079615282],[117,84,71,-0.7470417954518913],[117,84,72,-0.7467207829263248],[117,84,73,-0.7464021757226513],[117,84,74,-0.7460859790839878],[117,84,75,-0.745772198158325],[117,84,76,-0.7454608379980933],[117,84,77,-0.7451519035597306],[117,84,78,-0.7448453997032536],[117,84,79,-0.7445413311918233],[117,85,64,-0.7494971065726654],[117,85,65,-0.7491590848877493],[117,85,66,-0.7488234287475732],[117,85,67,-0.7484901440532761],[117,85,68,-0.7481592366139247],[117,85,69,-0.747830712146089],[117,85,70,-0.7475045762734015],[117,85,71,-0.7471808345261212],[117,85,72,-0.7468594923406953],[117,85,73,-0.7465405550593375],[117,85,74,-0.7462240279295753],[117,85,75,-0.7459099161038292],[117,85,76,-0.7455982246389792],[117,85,77,-0.7452889584959319],[117,85,78,-0.7449821225391919],[117,85,79,-0.7446777215364282],[117,86,64,-0.7496386104788281],[117,86,65,-0.7493002631977029],[117,86,66,-0.7489642810095276],[117,86,67,-0.7486306698196981],[117,86,68,-0.7482994354415583],[117,86,69,-0.7479705835959752],[117,86,70,-0.7476441199108979],[117,86,71,-0.7473200499209206],[117,86,72,-0.7469983790668469],[117,86,73,-0.7466791126952653],[117,86,74,-0.746362256058098],[117,86,75,-0.7460478143121801],[117,86,76,-0.7457357925188255],[117,86,77,-0.7454261956433942],[117,86,78,-0.7451190285548641],[117,86,79,-0.744814296025397],[117,87,64,-0.7497802835372328],[117,87,65,-0.7494416116798562],[117,87,66,-0.7491053044599922],[117,87,67,-0.7487713677872774],[117,87,68,-0.7484398074793165],[117,87,69,-0.7481106292612563],[117,87,70,-0.7477838387653457],[117,87,71,-0.7474594415304994],[117,87,72,-0.7471374430018598],[117,87,73,-0.7468178485303749],[117,87,74,-0.7465006633723458],[117,87,75,-0.7461858926890066],[117,87,76,-0.7458735415460895],[117,87,77,-0.7455636149133932],[117,87,78,-0.7452561176643534],[117,87,79,-0.7449510545756097],[117,88,64,-0.7499221256196686],[117,88,65,-0.7495831302089333],[117,88,66,-0.7492464989766167],[117,88,67,-0.7489122378365792],[117,88,68,-0.7485803526106694],[117,88,69,-0.7482508490282975],[117,88,70,-0.7479237327259959],[117,88,71,-0.7475990092469825],[117,88,72,-0.7472766840407236],[117,88,73,-0.74695676246251],[117,88,74,-0.7466392497730064],[117,88,75,-0.7463241511378298],[117,88,76,-0.7460114716271157],[117,88,77,-0.7457012162150854],[117,88,78,-0.7453933897796182],[117,88,79,-0.7450879971018163],[117,89,64,-0.7500641365958649],[117,89,65,-0.7497248186575926],[117,89,66,-0.7493878644349787],[117,89,67,-0.7490532798460905],[117,89,68,-0.7487210707170031],[117,89,69,-0.7483912427813739],[117,89,70,-0.7480638016800022],[117,89,71,-0.7477387529603932],[117,89,72,-0.7474161020763199],[117,89,73,-0.7470958543874008],[117,89,74,-0.7467780151586478],[117,89,75,-0.7464625895600454],[117,89,76,-0.7461495826661168],[117,89,77,-0.745838999455491],[117,89,78,-0.7455308448104748],[117,89,79,-0.7452251235166186],[117,90,64,-0.750206316333549],[117,90,65,-0.7498666768964839],[117,90,66,-0.749529400708641],[117,90,67,-0.7491944936922768],[117,90,68,-0.7488619616776764],[117,90,69,-0.7485318104027274],[117,90,70,-0.7482040455124797],[117,90,71,-0.7478786725587087],[117,90,72,-0.7475556969994789],[117,90,73,-0.7472351241987198],[117,90,74,-0.746916959425775],[117,90,75,-0.7466012078549805],[117,90,76,-0.7462878745652315],[117,90,77,-0.7459769645395494],[117,90,78,-0.7456684826646536],[117,90,79,-0.7453624337305276],[117,91,64,-0.7503486646984192],[117,91,65,-0.7500087047942225],[117,91,66,-0.7496711076691251],[117,91,67,-0.7493358792495564],[117,91,68,-0.7490030253699943],[117,91,69,-0.7486725517725399],[117,91,70,-0.7483444641064769],[117,91,71,-0.7480187679278352],[117,91,72,-0.7476954686989535],[117,91,73,-0.7473745717880567],[117,91,74,-0.7470560824688038],[117,91,75,-0.7467400059198669],[117,91,76,-0.7464263472244976],[117,91,77,-0.7461151113700941],[117,91,78,-0.7458063032477734],[117,91,79,-0.7454999276519363],[117,92,64,-0.7504911815541699],[117,92,65,-0.7501509022174125],[117,92,66,-0.7498129851859358],[117,92,67,-0.7494774363903245],[117,92,68,-0.7491442616692328],[117,92,69,-0.7488134667689582],[117,92,70,-0.7484850573430016],[117,92,71,-0.7481590389516307],[117,92,72,-0.7478354170614426],[117,92,73,-0.747514197044941],[117,92,74,-0.7471953841800847],[117,92,75,-0.7468789836498655],[117,92,76,-0.746565000541876],[117,92,77,-0.7462534398478762],[117,92,78,-0.7459443064633643],[117,92,79,-0.7456376051871443],[117,93,64,-0.7506338667624644],[117,93,65,-0.7502932690306208],[117,93,66,-0.7499550331265338],[117,93,67,-0.7496191649849264],[117,93,68,-0.7492856704486116],[117,93,69,-0.7489545552680669],[117,93,70,-0.7486258251009931],[117,93,71,-0.7482994855118795],[117,93,72,-0.7479755419715652],[117,93,73,-0.7476539998568166],[117,93,74,-0.7473348644498757],[117,93,75,-0.7470181409380391],[117,93,76,-0.7467038344132242],[117,93,77,-0.7463919498715366],[117,93,78,-0.7460824922128416],[117,93,79,-0.7457754662403305],[117,94,64,-0.7507767201829922],[117,94,65,-0.7504358050964345],[117,94,66,-0.750097251356394],[117,94,67,-0.7497610649017149],[117,94,68,-0.7494272515793519],[117,94,69,-0.7490958171439451],[117,94,70,-0.7487667672573795],[117,94,71,-0.7484401074883487],[117,94,72,-0.7481158433119172],[117,94,73,-0.747793980109098],[117,94,74,-0.7474745231664006],[117,94,75,-0.7471574776754099],[117,94,76,-0.7468428487323526],[117,94,77,-0.7465306413376648],[117,94,78,-0.7462208603955628],[117,94,79,-0.7459135107136102],[117,95,64,-0.7509197416734519],[117,95,65,-0.750578510275443],[117,95,66,-0.7502396397389872],[117,95,67,-0.7499031360070323],[117,95,68,-0.7495690049306578],[117,95,69,-0.7492372522686498],[117,95,70,-0.74890788368706],[117,95,71,-0.7485809047587697],[117,95,72,-0.7482563209630531],[117,95,73,-0.7479341376851529],[117,95,74,-0.7476143602158299],[117,95,75,-0.7472969937509415],[117,95,76,-0.7469820433910079],[117,95,77,-0.7466695141407798],[117,95,78,-0.7463594109088094],[117,95,79,-0.7460517385070171],[117,96,64,-0.7510629310895323],[117,96,65,-0.7507213844262196],[117,96,66,-0.7503821981357617],[117,96,67,-0.7500453781651926],[117,96,68,-0.7497109303696995],[117,96,69,-0.7493788605121969],[117,96,70,-0.7490491742628869],[117,96,71,-0.748721877198822],[117,96,72,-0.7483969748034687],[117,96,73,-0.7480744724662839],[117,96,74,-0.7477543754822631],[117,96,75,-0.7474366890515204],[117,96,76,-0.7471214182788535],[117,96,77,-0.746808568173312],[117,96,78,-0.7464981436477685],[117,96,79,-0.7461901495184853],[117,97,64,-0.7512062882849704],[117,97,65,-0.7508644274053795],[117,97,66,-0.7505249264062013],[117,97,67,-0.7501877912385385],[117,97,68,-0.7498530277616688],[117,97,69,-0.7495206417426186],[117,97,70,-0.7491906388557226],[117,97,71,-0.7488630246821881],[117,97,72,-0.7485378047096577],[117,97,73,-0.7482149843317853],[117,97,74,-0.7478945688477858],[117,97,75,-0.7475765634620132],[117,97,76,-0.7472609732835271],[117,97,77,-0.7469478033256602],[117,97,78,-0.7466370585055904],[117,97,79,-0.7463287436439056],[117,98,64,-0.7513498131115249],[117,98,65,-0.7510076390675531],[117,98,66,-0.7506678244077984],[117,98,67,-0.7503303750874154],[117,98,68,-0.7499952969697545],[117,98,69,-0.7496625958259368],[117,98,70,-0.7493322773344132],[117,98,71,-0.7490043470805288],[117,98,72,-0.7486788105560852],[117,98,73,-0.7483556731589176],[117,98,74,-0.7480349401924432],[117,98,75,-0.7477166168652404],[117,98,76,-0.7474007082906144],[117,98,77,-0.7470872194861659],[117,98,78,-0.7467761553733613],[117,98,79,-0.7464675207770999],[117,99,64,-0.7514935054189997],[117,99,65,-0.7511510192654093],[117,99,66,-0.7508108919960781],[117,99,67,-0.7504731295701946],[117,99,68,-0.750137737855165],[117,99,69,-0.7498047226261876],[117,99,70,-0.7494740895658125],[117,99,71,-0.7491458442635057],[117,99,72,-0.7488199922152117],[117,99,73,-0.7484965388229299],[117,99,74,-0.7481754893942637],[117,99,75,-0.7478568491419995],[117,99,76,-0.7475406231836728],[117,99,77,-0.7472268165411353],[117,99,78,-0.7469154341401274],[117,99,79,-0.7466064808098438],[117,100,64,-0.7516373650552184],[117,100,65,-0.7512945678496303],[117,100,66,-0.7509541290245718],[117,100,67,-0.7506160545432475],[117,100,68,-0.750280350277102],[117,100,69,-0.7499470220053939],[117,100,70,-0.7496160754147551],[117,100,71,-0.7492875160987558],[117,100,72,-0.7489613495574663],[117,100,73,-0.748637581197034],[117,100,74,-0.7483162163292323],[117,100,75,-0.7479972601710391],[117,100,76,-0.7476807178442038],[117,100,77,-0.7473665943748141],[117,100,78,-0.7470548946928683],[117,100,79,-0.7467456236318405],[117,101,64,-0.7517813918660802],[117,101,65,-0.7514382846689679],[117,101,66,-0.7510975353448741],[117,101,67,-0.7507591498610027],[117,101,68,-0.7504231340928185],[117,101,69,-0.7500894938236231],[117,101,70,-0.7497582347441138],[117,101,71,-0.7494293624519479],[117,101,72,-0.7491028824513044],[117,101,73,-0.7487788001524621],[117,101,74,-0.748457120871348],[117,101,75,-0.7481378498291155],[117,101,76,-0.7478209921517116],[117,101,77,-0.7475065528694442],[117,101,78,-0.7471945369165536],[117,101,79,-0.7468849491307782],[117,102,64,-0.7519255856955436],[117,102,65,-0.7515821695702259],[117,102,66,-0.7512411108066256],[117,102,67,-0.7509024153759272],[117,102,68,-0.7505660891575996],[117,102,69,-0.7502321379389694],[117,102,70,-0.7499005674147821],[117,102,71,-0.7495713831867645],[117,102,72,-0.7492445907631886],[117,102,73,-0.7489201955584476],[117,102,74,-0.7485982028926053],[117,102,75,-0.7482786179909745],[117,102,76,-0.7479614459836839],[117,102,77,-0.7476466919052452],[117,102,78,-0.747334360694125],[117,102,79,-0.7470244571923108],[117,103,64,-0.7520699463856071],[117,103,65,-0.7517262223982422],[117,103,66,-0.7513848552574937],[117,103,67,-0.7510458509385101],[117,103,68,-0.7507092153247453],[117,103,69,-0.750374954207535],[117,103,70,-0.7500430732856547],[117,103,71,-0.7497135781648844],[117,103,72,-0.7493864743575716],[117,103,73,-0.7490617672822075],[117,103,74,-0.748739462262976],[117,103,75,-0.7484195645293336],[117,103,76,-0.7481020792155736],[117,103,77,-0.7477870113603962],[117,103,78,-0.7474743659064781],[117,103,79,-0.7471641477000401],[117,104,64,-0.7522144737763671],[117,104,65,-0.7518704429959454],[117,104,66,-0.7515287685432309],[117,104,67,-0.7511894563973174],[117,104,68,-0.7508525124456276],[117,104,69,-0.7505179424834872],[117,104,70,-0.7501857522136857],[117,104,71,-0.7498559472460388],[117,104,72,-0.7495285330969524],[117,104,73,-0.7492035151889993],[117,104,74,-0.7488808988504672],[117,104,75,-0.7485606893149385],[117,104,76,-0.7482428917208565],[117,104,77,-0.7479275111110928],[117,104,78,-0.7476145524325193],[117,104,79,-0.7473040205355737],[117,105,64,-0.7523591677059912],[117,105,65,-0.7520148312043294],[117,105,66,-0.7516728505076478],[117,105,67,-0.751333231598968],[117,105,68,-0.7509959803696634],[117,105,69,-0.7506611026190331],[117,105,70,-0.7503286040538621],[117,105,71,-0.7499984902879857],[117,105,72,-0.749670766841851],[117,105,73,-0.7493454391420951],[117,105,74,-0.749022512521093],[117,105,75,-0.7487019922165373],[117,105,76,-0.7483838833710041],[117,105,77,-0.7480681910315212],[117,105,78,-0.7477549201491388],[117,105,79,-0.7474440755784963],[117,106,64,-0.7525040280107423],[117,106,65,-0.7521593868624764],[117,106,66,-0.7518171009926371],[117,106,67,-0.7514771763881559],[117,106,68,-0.7511396189443391],[117,106,69,-0.7508044344644418],[117,106,70,-0.7504716286592276],[117,106,71,-0.7501412071465331],[117,106,72,-0.7498131754508304],[117,106,73,-0.749487539002804],[117,106,74,-0.7491643031388996],[117,106,75,-0.7488434731009034],[117,106,76,-0.7485250540355081],[117,106,77,-0.7482090509938808],[117,106,78,-0.7478954689312349],[117,106,79,-0.7475843127063958],[117,107,64,-0.7526490545249518],[117,107,65,-0.7523041098075307],[117,107,66,-0.7519615198381467],[117,107,67,-0.751621290607624],[117,107,68,-0.7512834280151836],[117,107,69,-0.7509479378680187],[117,107,70,-0.7506148258808547],[117,107,71,-0.7502840976755123],[117,107,72,-0.7499557587804712],[117,107,73,-0.7496298146304465],[117,107,74,-0.749306270565938],[117,107,75,-0.7489851318328088],[117,107,76,-0.7486664035818518],[117,107,77,-0.7483500908683577],[117,107,78,-0.7480361986516867],[117,107,79,-0.7477247317948341],[117,108,64,-0.7527942470810773],[117,108,65,-0.7524489998747558],[117,108,66,-0.7521061068822378],[117,108,67,-0.7517655740982213],[117,108,68,-0.751427407425825],[117,108,69,-0.7510916126761629],[117,108,70,-0.7507581955679037],[117,108,71,-0.7504271617268357],[117,108,72,-0.7500985166854286],[117,108,73,-0.7497722658824117],[117,108,74,-0.7494484146623216],[117,108,75,-0.7491269682750819],[117,108,76,-0.7488079318755694],[117,108,77,-0.7484913105231823],[117,108,78,-0.7481771091814111],[117,108,79,-0.7478653327174056],[117,109,64,-0.7529396055096843],[117,109,65,-0.7525940568975167],[117,109,66,-0.7522508619610658],[117,109,67,-0.7519100266988855],[117,109,68,-0.7515715570179742],[117,109,69,-0.7512354587333484],[117,109,70,-0.7509017375676036],[117,109,71,-0.7505703991504777],[117,109,72,-0.750241449018414],[117,109,73,-0.7499148926141382],[117,109,74,-0.7495907352862072],[117,109,75,-0.7492689822885886],[117,109,76,-0.7489496387802267],[117,109,77,-0.7486327098246104],[117,109,78,-0.7483182003893452],[117,109,79,-0.7480061153457189],[117,110,64,-0.7530851296394278],[117,110,65,-0.7527392807072616],[117,110,66,-0.7523957849088628],[117,110,67,-0.7520546482466237],[117,110,68,-0.7517158766314043],[117,110,69,-0.7513794758821062],[117,110,70,-0.7510454517252338],[117,110,71,-0.7507138097944575],[117,110,72,-0.7503845556301765],[117,110,73,-0.7500576946790962],[117,110,74,-0.7497332322937773],[117,110,75,-0.7494111737322143],[117,110,76,-0.7490915241574024],[117,110,77,-0.7487742886369053],[117,110,78,-0.7484594721424268],[117,110,79,-0.7481470795493773],[117,111,64,-0.7532308192971102],[117,111,65,-0.7528846711335788],[117,111,66,-0.7525408755579949],[117,111,67,-0.7521994385765707],[117,111,68,-0.7518603661040097],[117,111,69,-0.7515236639630817],[117,111,70,-0.7511893378841816],[117,111,71,-0.7508573935048951],[117,111,72,-0.7505278363695603],[117,111,73,-0.7502006719288453],[117,111,74,-0.7498759055392971],[117,111,75,-0.7495535424629207],[117,111,76,-0.7492335878667459],[117,111,77,-0.7489160468223945],[117,111,78,-0.7486009243056526],[117,111,79,-0.748288225196037],[117,112,64,-0.7533766743076546],[117,112,65,-0.7530302280041707],[117,112,66,-0.7526861337389349],[117,112,67,-0.7523443975219614],[117,112,68,-0.7520050252717791],[117,112,69,-0.7516680228150076],[117,112,70,-0.7513333958859156],[117,112,71,-0.751001150125986],[117,112,72,-0.7506712910834785],[117,112,73,-0.7503438242130069],[117,112,74,-0.7500187548750876],[117,112,75,-0.7496960883357195],[117,112,76,-0.7493758297659501],[117,112,77,-0.7490579842414431],[117,112,78,-0.7487425567420507],[117,112,79,-0.7484295521513797],[117,113,64,-0.7535226944941282],[117,113,65,-0.7531759511448775],[117,113,66,-0.7528315592802873],[117,113,67,-0.7524895249141554],[117,113,68,-0.7521498539688188],[117,113,69,-0.7518125522747284],[117,113,70,-0.7514776255700091],[117,113,71,-0.7511450795000236],[117,113,72,-0.750814919616936],[117,113,73,-0.7504871513792883],[117,113,74,-0.7501617801515499],[117,113,75,-0.7498388112036961],[117,113,76,-0.7495182497107755],[117,113,77,-0.7492001007524777],[117,113,78,-0.7488843693127043],[117,113,79,-0.7485710602791364],[117,114,64,-0.7536688796777159],[117,114,65,-0.75332184037965],[117,114,66,-0.7529771520087604],[117,114,67,-0.7526348205826101],[117,114,68,-0.752294852027326],[117,114,69,-0.7519572521771727],[117,114,70,-0.7516220267741133],[117,114,71,-0.7512891814673731],[117,114,72,-0.7509587218130028],[117,114,73,-0.7506306532734558],[117,114,74,-0.7503049812171368],[117,114,75,-0.7499817109179814],[117,114,76,-0.7496608475550225],[117,114,77,-0.7493423962119584],[117,114,78,-0.7490263618767247],[117,114,79,-0.7487127494410601],[117,115,64,-0.753815229677778],[117,115,65,-0.7534678955306077],[117,115,66,-0.7531229117492242],[117,115,67,-0.7527802843549377],[117,115,68,-0.7524400192776466],[117,115,69,-0.7521021223554112],[117,115,70,-0.7517665993340152],[117,115,71,-0.7514334558665288],[117,115,72,-0.7511026975128721],[117,115,73,-0.750774329739392],[117,115,74,-0.7504483579184121],[117,115,75,-0.750124787327811],[117,115,76,-0.7498036231505892],[117,115,77,-0.7494848704744377],[117,115,78,-0.7491685342913088],[117,115,79,-0.7488546194969835],[117,116,64,-0.7539617443118318],[117,116,65,-0.7536141164180205],[117,116,66,-0.7532688383246926],[117,116,67,-0.7529259160568875],[117,116,68,-0.7525853555482567],[117,116,69,-0.7522471626406384],[117,116,70,-0.7519113430836191],[117,116,71,-0.7515779025340958],[117,116,72,-0.7512468465558406],[117,116,73,-0.7509181806190774],[117,116,74,-0.7505919101000308],[117,116,75,-0.7502680402805056],[117,116,76,-0.7499465763474535],[117,116,77,-0.7496275233925408],[117,116,78,-0.7493108864117208],[117,116,79,-0.7489966703048001],[117,117,64,-0.754108423395533],[117,117,65,-0.7537605028602895],[117,117,66,-0.7534149315563042],[117,117,67,-0.753071715512327],[117,117,68,-0.7527308606657439],[117,117,69,-0.7523923728621538],[117,117,70,-0.7520562578549271],[117,117,71,-0.7517225213047709],[117,117,72,-0.7513911687792916],[117,117,73,-0.751062205752572],[117,117,74,-0.7507356376047211],[117,117,75,-0.7504114696214528],[117,117,76,-0.7500897069936528],[117,117,77,-0.749770354816947],[117,117,78,-0.7494534180912726],[117,117,79,-0.7491389017204455],[117,118,64,-0.7542552667427335],[117,118,65,-0.7539070546740056],[117,118,66,-0.7535611912633804],[117,118,67,-0.7532176825432992],[117,118,68,-0.7528765344548655],[117,118,69,-0.7525377528474194],[117,118,70,-0.7522013434780984],[117,118,71,-0.7518673120114012],[117,118,72,-0.7515356640187508],[117,118,73,-0.7512064049780723],[117,118,74,-0.7508795402733414],[117,118,75,-0.7505550751941641],[117,118,76,-0.7502330149353436],[117,118,77,-0.7499133645964479],[117,118,78,-0.7495961291813823],[117,118,79,-0.7492813135979555],[117,119,64,-0.7544022741654631],[117,119,65,-0.754053771673931],[117,119,66,-0.7537076172634068],[117,119,67,-0.7533638169700057],[117,119,68,-0.7530223767385293],[117,119,69,-0.7526833024220418],[117,119,70,-0.7523465997814293],[117,119,71,-0.7520122744849644],[117,119,72,-0.7516803321078693],[117,119,73,-0.7513507781318935],[117,119,74,-0.7510236179448624],[117,119,75,-0.7506988568402572],[117,119,76,-0.7503765000167811],[117,119,77,-0.7500565525779282],[117,119,78,-0.7497390195315548],[117,119,79,-0.7494239057894463],[117,120,64,-0.7545494454739109],[117,120,65,-0.7542006536729795],[117,120,66,-0.7538542093720144],[117,120,67,-0.7535101186107858],[117,120,68,-0.7531683873377756],[117,120,69,-0.752829021409753],[117,120,70,-0.7524920265913352],[117,120,71,-0.7521574085545508],[117,120,72,-0.7518251728784038],[117,120,73,-0.7514953250484502],[117,120,74,-0.751167870456348],[117,120,75,-0.7508428143994361],[117,120,76,-0.7505201620803015],[117,120,77,-0.7501999186063469],[117,120,78,-0.7498820889893634],[117,120,79,-0.7495666781450965],[117,121,64,-0.7546967804764831],[117,121,65,-0.754347700482276],[117,121,66,-0.7540009674030383],[117,121,67,-0.7536565872821765],[117,121,68,-0.7533145660718344],[117,121,69,-0.7529749096324685],[117,121,70,-0.7526376237324085],[117,121,71,-0.7523027140474213],[117,121,72,-0.7519701861602747],[117,121,73,-0.7516400455603143],[117,121,74,-0.7513122976430127],[117,121,75,-0.7509869477095499],[117,121,76,-0.750664000966379],[117,121,77,-0.7503434625247952],[117,121,78,-0.7500253374005074],[117,121,79,-0.7497096305132049],[117,122,64,-0.7548442789797762],[117,122,65,-0.7544949119111282],[117,122,66,-0.7541478911684895],[117,122,67,-0.753803222798884],[117,122,68,-0.753460912758099],[117,122,69,-0.7531209669102599],[117,122,70,-0.752783391027391],[117,122,71,-0.7524481907889797],[117,122,72,-0.7521153717815394],[117,122,73,-0.7517849394981877],[117,122,74,-0.7514568993381952],[117,122,75,-0.7511312566065648],[117,122,76,-0.7508080165135994],[117,122,77,-0.7504871841744692],[117,122,78,-0.7501687646087847],[117,122,79,-0.7498527627401621],[117,123,64,-0.7549919407886005],[117,123,65,-0.7546422877670511],[117,123,66,-0.7542949804785793],[117,123,67,-0.7539500249738081],[117,123,68,-0.7536074272121494],[117,123,69,-0.7532671930613792],[117,123,70,-0.7529293282971984],[117,123,71,-0.7525938386027965],[117,123,72,-0.7522607295684154],[117,123,73,-0.7519300066909268],[117,123,74,-0.7516016753733813],[117,123,75,-0.7512757409245883],[117,123,76,-0.7509522085586828],[117,123,77,-0.7506310833946936],[117,123,78,-0.7503123704561154],[117,123,79,-0.7499960746704757],[117,124,64,-0.7551397657059534],[117,124,65,-0.7547898278557398],[117,124,66,-0.7544422351416926],[117,124,67,-0.7540969936180147],[117,124,68,-0.7537541092477247],[117,124,69,-0.7534135879022308],[117,124,70,-0.7530754353608918],[117,124,71,-0.7527396573105819],[117,124,72,-0.7524062593452532],[117,124,73,-0.7520752469655136],[117,124,74,-0.7517466255781771],[117,124,75,-0.7514204004958414],[117,124,76,-0.7510965769364569],[117,124,77,-0.7507751600228938],[117,124,78,-0.7504561547825147],[117,124,79,-0.7501395661467412],[117,125,64,-0.755287753533077],[117,125,65,-0.7549375319811272],[117,125,66,-0.7545896549644447],[117,125,67,-0.7542441285407945],[117,125,68,-0.7539009586767822],[117,125,69,-0.7535601512474303],[117,125,70,-0.7532217120357374],[117,125,71,-0.7528856467322438],[117,125,72,-0.7525519609345943],[117,125,73,-0.7522206601471155],[117,125,74,-0.7518917497803665],[117,125,75,-0.7515652351507168],[117,125,76,-0.7512411214799146],[117,125,77,-0.7509194138946547],[117,125,78,-0.7506001174261503],[117,125,79,-0.750283237009701],[117,126,64,-0.7554359040694396],[117,126,65,-0.7550853999453654],[117,126,66,-0.7547372397516641],[117,126,67,-0.7543914295496431],[117,126,68,-0.7540479753094775],[117,126,69,-0.753706882909785],[117,126,70,-0.7533681581371859],[117,126,71,-0.7530318066858686],[117,126,72,-0.7526978341571523],[117,126,73,-0.7523662460590652],[117,126,74,-0.7520370478058931],[117,126,75,-0.7517102447177602],[117,126,76,-0.7513858420201953],[117,126,77,-0.7510638448437007],[117,126,78,-0.7507442582233239],[117,126,79,-0.7504270870982254],[117,127,64,-0.7555842171127173],[117,127,65,-0.7552334315488072],[117,127,66,-0.754884989306372],[117,127,67,-0.7545388964502434],[117,127,68,-0.7541951589541465],[117,127,69,-0.7538537827002757],[117,127,70,-0.7535147734788551],[117,127,71,-0.7531781369877026],[117,127,72,-0.7528438788317943],[117,127,73,-0.7525120045228413],[117,127,74,-0.7521825194788397],[117,127,75,-0.7518554290236503],[117,127,76,-0.7515307383865655],[117,127,77,-0.7512084527018776],[117,127,78,-0.7508885770084519],[117,127,79,-0.7505711162492925],[117,128,64,-0.7557326924588514],[117,128,65,-0.7553816265900638],[117,128,66,-0.7550329034298422],[117,128,67,-0.7546865290465228],[117,128,68,-0.7543425094173627],[117,128,69,-0.7540008504281144],[117,128,70,-0.7536615578725868],[117,128,71,-0.75332463745221],[117,128,72,-0.7529900947755983],[117,128,73,-0.7526579353581283],[117,128,74,-0.7523281646214883],[117,128,75,-0.7520007878932584],[117,128,76,-0.7516758104064771],[117,128,77,-0.7513532372992103],[117,128,78,-0.7510330736141231],[117,128,79,-0.7507153242980473],[117,129,64,-0.755881329902022],[117,129,65,-0.7555299848659781],[117,129,66,-0.7551809819215721],[117,129,67,-0.7548343271406264],[117,129,68,-0.7544900265039104],[117,129,69,-0.7541480859007166],[117,129,70,-0.7538085111284205],[117,129,71,-0.7534713078920454],[117,129,72,-0.7531364818038263],[117,129,73,-0.7528040383827872],[117,129,74,-0.7524739830542911],[117,129,75,-0.7521463211496195],[117,129,76,-0.7518210579055402],[117,129,77,-0.7514981984638747],[117,129,78,-0.7511777478710717],[117,129,79,-0.7508597110777737],[117,130,64,-0.7560301292346707],[117,130,65,-0.755678506171648],[117,130,66,-0.7553292245793081],[117,130,67,-0.7549822905329404],[117,130,68,-0.7546377100168086],[117,130,69,-0.7542954889237259],[117,130,70,-0.7539556330546162],[117,130,71,-0.7536181481180777],[117,130,72,-0.7532830397299479],[117,130,73,-0.7529503134128803],[117,130,74,-0.7526199745958948],[117,130,75,-0.7522920286139569],[117,130,76,-0.7519664807075459],[117,130,77,-0.7516433360222222],[117,130,78,-0.7513225996082009],[117,130,79,-0.7510042764199182],[117,131,64,-0.7561790902474747],[117,131,65,-0.7558271903003991],[117,131,66,-0.7554776311990168],[117,131,67,-0.7551304190220651],[117,131,68,-0.754785559757283],[117,131,69,-0.7544430593009861],[117,131,70,-0.7541029234576273],[117,131,71,-0.7537651579393624],[117,131,72,-0.7534297683656126],[117,131,73,-0.7530967602626432],[117,131,74,-0.752766139063113],[117,131,75,-0.752437910105654],[117,131,76,-0.7521120786344394],[117,131,77,-0.7517886497987516],[117,131,78,-0.7514676286525546],[117,131,79,-0.7511490201540616],[117,132,64,-0.7563282127294038],[117,132,65,-0.7559760370438431],[117,132,66,-0.7556262015749441],[117,132,67,-0.755278712404873],[117,132,68,-0.7549335755248248],[117,132,69,-0.7545907968345988],[117,132,70,-0.7542503821421593],[117,132,71,-0.7539123371631999],[117,132,72,-0.7535766675207083],[117,132,73,-0.753243378744543],[117,132,74,-0.752912476270984],[117,132,75,-0.7525839654423127],[117,132,76,-0.7522578515063781],[117,132,77,-0.7519341396161672],[117,132,78,-0.7516128348293761],[117,132,79,-0.7512939421079783],[117,133,64,-0.7564774964677025],[117,133,65,-0.756125046191859],[117,133,66,-0.7557749354995962],[117,133,67,-0.7554271704764894],[117,133,68,-0.7550817571171715],[117,133,69,-0.7547387013249061],[117,133,70,-0.7543980089111499],[117,133,71,-0.7540596855951168],[117,133,72,-0.753723737003342],[117,133,73,-0.7533901686692597],[117,133,74,-0.753058986032753],[117,133,75,-0.7527301944397343],[117,133,76,-0.7524037991417121],[117,133,77,-0.7520798052953599],[117,133,78,-0.7517582179620892],[117,133,79,-0.7514390421076161],[117,134,64,-0.7566269412478698],[117,134,65,-0.7562742175325741],[117,134,66,-0.7559238327637201],[117,134,67,-0.7555757930302744],[117,134,68,-0.7552301043302875],[117,134,69,-0.7548867725704693],[117,134,70,-0.7545458035657504],[117,134,71,-0.754207203038846],[117,134,72,-0.7538709766198206],[117,134,73,-0.7535371298456661],[117,134,74,-0.7532056681598508],[117,134,75,-0.7528765969119005],[117,134,76,-0.752549921356965],[117,134,77,-0.7522256466553877],[117,134,78,-0.7519037778722777],[117,134,79,-0.7515843199770773],[117,135,64,-0.756776546853719],[117,135,65,-0.7564235508524217],[117,135,66,-0.7560728931563626],[117,135,67,-0.7557245798578799],[117,135,68,-0.7553786169584231],[117,135,69,-0.7550350103681294],[117,135,70,-0.7546937659053841],[117,135,71,-0.7543548892963855],[117,135,72,-0.7540183861747096],[117,135,73,-0.7536842620808871],[117,135,74,-0.7533525224619539],[117,135,75,-0.7530231726710312],[117,135,76,-0.7526962179668929],[117,135,77,-0.7523716635135342],[117,135,78,-0.7520495143797452],[117,135,79,-0.7517297755386769],[117,136,64,-0.7569263130673491],[117,136,65,-0.7565730459361144],[117,136,66,-0.7562221164648424],[117,136,67,-0.755873530749223],[117,136,68,-0.7555272947940863],[117,136,69,-0.7551834145129775],[117,136,70,-0.7548418957277181],[117,136,71,-0.7545027441679711],[117,136,72,-0.7541659654708049],[117,136,73,-0.7538315651802714],[117,136,74,-0.7534995487469559],[117,136,75,-0.7531699215275571],[117,136,76,-0.7528426887844554],[117,136,77,-0.7525178556852807],[117,136,78,-0.7521954273024861],[117,136,79,-0.7518754086129149],[117,137,64,-0.7570762396691695],[117,137,65,-0.7567227025666677],[117,137,66,-0.7563715024747736],[117,137,67,-0.7560226454925099],[117,137,68,-0.7556761376280674],[117,137,69,-0.7553319847983804],[117,137,70,-0.7549901928286881],[117,137,71,-0.7546507674520995],[117,137,72,-0.7543137143091572],[117,137,73,-0.7539790389474156],[117,137,74,-0.7536467468209914],[117,137,75,-0.7533168432901436],[117,137,76,-0.7529893336208405],[117,137,77,-0.7526642229843298],[117,137,78,-0.7523415164567101],[117,137,79,-0.7520212190184996],[117,138,64,-0.7572263264378711],[117,138,65,-0.7568725205253723],[117,138,66,-0.756521050970039],[117,138,67,-0.7561719238742073],[117,138,68,-0.7558251452494099],[117,138,69,-0.7554807210159514],[117,138,70,-0.7551386570024696],[117,138,71,-0.7547989589455006],[117,138,72,-0.754461632489043],[117,138,73,-0.7541266831841357],[117,138,74,-0.7537941164884084],[117,138,75,-0.7534639377656621],[117,138,76,-0.7531361522854361],[117,138,77,-0.7528107652225773],[117,138,78,-0.7524877816568134],[117,138,79,-0.75216720657232],[117,139,64,-0.7573765731504869],[117,139,65,-0.7570224995918525],[117,139,66,-0.7566707617328474],[117,139,67,-0.7563213656791018],[117,139,68,-0.7559743174454707],[117,139,69,-0.7556296229556099],[117,139,70,-0.755287288041537],[117,139,71,-0.7549473184431966],[117,139,72,-0.7546097198080247],[117,139,73,-0.7542744976905263],[117,139,74,-0.7539416575518263],[117,139,75,-0.7536112047592495],[117,139,76,-0.7532831445858881],[117,139,77,-0.7529574822101713],[117,139,78,-0.7526342227154379],[117,139,79,-0.752313371089504],[117,140,64,-0.7575269795823707],[117,140,65,-0.7571726395440475],[117,140,66,-0.7568206345437157],[117,140,67,-0.7564709706902804],[117,140,68,-0.7561236540018996],[117,140,69,-0.7557786904055614],[117,140,70,-0.7554360857366441],[117,140,71,-0.7550958457384823],[117,140,72,-0.7547579760619304],[117,140,73,-0.7544224822649415],[117,140,74,-0.7540893698121172],[117,140,75,-0.753758644074288],[117,140,76,-0.7534303103280819],[117,140,77,-0.7531043737554923],[117,140,78,-0.7527808394434518],[117,140,79,-0.7524597123833993],[117,141,64,-0.7576775455071793],[117,141,65,-0.7573229401581912],[117,141,66,-0.7569706691814486],[117,141,67,-0.756620738689111],[117,141,68,-0.7562731547026207],[117,141,69,-0.7559279231522786],[117,141,70,-0.755585049876805],[117,141,71,-0.7552445406229051],[117,141,72,-0.7549064010448342],[117,141,73,-0.7545706367039742],[117,141,74,-0.7542372530683854],[117,141,75,-0.7539062555123865],[117,141,76,-0.7535776493161225],[117,141,77,-0.7532514396651336],[117,141,78,-0.7529276316499288],[117,141,79,-0.752606230265553],[117,142,64,-0.7578282706969304],[117,142,65,-0.7574734012088724],[117,142,66,-0.7571208654231977],[117,142,67,-0.7567706694553015],[117,142,68,-0.7564228193298907],[117,142,69,-0.7560773209805598],[117,142,70,-0.7557341802493521],[117,142,71,-0.7553934028863253],[117,142,72,-0.7550549945491155],[117,142,73,-0.754718960802516],[117,142,74,-0.7543853071180273],[117,142,75,-0.754054038873438],[117,142,76,-0.7537251613523928],[117,142,77,-0.7533986797439605],[117,142,78,-0.7530745991422088],[117,142,79,-0.7527529245457714],[117,143,64,-0.7579791549219754],[117,143,65,-0.7576240224690053],[117,143,66,-0.7572712230444337],[117,143,67,-0.7569207627668716],[117,143,68,-0.7565726476642711],[117,143,69,-0.7562268836735013],[117,143,70,-0.7558834766399094],[117,143,71,-0.7555424323168861],[117,143,72,-0.7552037563654307],[117,143,73,-0.7548674543537286],[117,143,74,-0.7545335317567027],[117,143,75,-0.7542019939555931],[117,143,76,-0.7538728462375255],[117,143,77,-0.7535460937950809],[117,143,78,-0.7532217417258678],[117,143,79,-0.7528997950320908],[117,144,64,-0.7581301979510231],[117,144,65,-0.7577748037098548],[117,144,66,-0.7574217418189703],[117,144,67,-0.7570710184001769],[117,144,68,-0.7567226394846523],[117,144,69,-0.756376611012521],[117,144,70,-0.7560329388324147],[117,144,71,-0.7556916287010391],[117,144,72,-0.755352686282737],[117,144,73,-0.755016117149068],[117,144,74,-0.7546819267783584],[117,144,75,-0.754350120555282],[117,144,76,-0.7540207037704282],[117,144,77,-0.7536936816198709],[117,144,78,-0.7533690592047427],[117,144,79,-0.753046841530802],[117,145,64,-0.7582813995511115],[117,145,65,-0.7579257447010077],[117,145,66,-0.7575724215189359],[117,145,67,-0.7572214361298804],[117,145,68,-0.7568727945682251],[117,145,69,-0.7565265027773302],[117,145,70,-0.7561825666090933],[117,145,71,-0.7558409918235153],[117,145,72,-0.7555017840882645],[117,145,73,-0.7551649489782557],[117,145,74,-0.7548304919752005],[117,145,75,-0.754498418467188],[117,145,76,-0.754168733748253],[117,145,77,-0.7538414430179453],[117,145,78,-0.7535165513809031],[117,145,79,-0.7531940638464212],[117,146,64,-0.758432759487667],[117,146,65,-0.7580768452104315],[117,146,66,-0.757723261914833],[117,146,67,-0.7573720157290121],[117,146,68,-0.75702311269054],[117,146,69,-0.7566765587459929],[117,146,70,-0.7563323597505152],[117,146,71,-0.7559905214673841],[117,146,72,-0.7556510495675747],[117,146,73,-0.7553139496293381],[117,146,74,-0.7549792271377528],[117,146,75,-0.7546468874843051],[117,146,76,-0.7543169359664571],[117,146,77,-0.7539893777872164],[117,146,78,-0.7536642180547095],[117,146,79,-0.7533414617817498],[117,147,64,-0.7585842775244847],[117,147,65,-0.7582281050044559],[117,147,66,-0.7578742627755182],[117,147,67,-0.7575227569689493],[117,147,68,-0.7571735936254874],[117,147,69,-0.7568267786949061],[117,147,70,-0.7564823180355769],[117,147,71,-0.7561402174140344],[117,147,72,-0.7558004825045412],[117,147,73,-0.7554631188886667],[117,147,74,-0.7551281320548378],[117,147,75,-0.7547955273979192],[117,147,76,-0.7544653102187824],[117,147,77,-0.754137485723875],[117,147,78,-0.7538120590247939],[117,147,79,-0.7534890351378537],[117,148,64,-0.7587359534237093],[117,148,65,-0.7583795238477524],[117,148,66,-0.758025423868183],[117,148,67,-0.7576736596193966],[117,148,68,-0.7573242371452782],[117,148,69,-0.7569771623987798],[117,148,70,-0.7566324412414804],[117,148,71,-0.7562900794431535],[117,148,72,-0.7559500826813299],[117,148,73,-0.7556124565408786],[117,148,74,-0.755277206513556],[117,148,75,-0.7549443379975875],[117,148,76,-0.7546138562972357],[117,148,77,-0.7542857666223699],[117,148,78,-0.7539600740880399],[117,148,79,-0.753636783714044],[117,149,64,-0.7588877869458939],[117,149,65,-0.7585311015033935],[117,149,66,-0.7581767449584129],[117,149,67,-0.7578247234484451],[117,149,68,-0.7574750430205032],[117,149,69,-0.7571277096306969],[117,149,70,-0.7567827291437943],[117,149,71,-0.7564401073327877],[117,149,72,-0.7560998498784582],[117,149,73,-0.7557619623689551],[117,149,74,-0.755426450299346],[117,149,75,-0.7550933190711984],[117,149,76,-0.7547625739921477],[117,149,77,-0.7544342202754675],[117,149,78,-0.7541082630396421],[117,149,79,-0.753784707307936],[117,150,64,-0.7590397778499806],[117,150,65,-0.7586828377328336],[117,150,66,-0.7583282258101678],[117,150,67,-0.7579759482225537],[117,150,68,-0.7576260110201124],[117,150,69,-0.7572784201620926],[117,150,70,-0.7569331815164315],[117,150,71,-0.7565903008593218],[117,150,72,-0.7562497838747751],[117,150,73,-0.7559116361542024],[117,150,74,-0.7555758631959641],[117,150,75,-0.7552424704049513],[117,150,76,-0.7549114630921542],[117,150,77,-0.7545828464742319],[117,150,78,-0.7542566256730859],[117,150,79,-0.7539328057154293],[117,151,64,-0.7591919258932809],[117,151,65,-0.758834732295889],[117,151,66,-0.7584798661857621],[117,151,67,-0.758127333706528],[117,151,68,-0.7577771409113966],[117,151,69,-0.7574292937627356],[117,151,70,-0.7570837981316321],[117,151,71,-0.7567406597974594],[117,151,72,-0.7563998844474414],[117,151,73,-0.7560614776762317],[117,151,74,-0.7557254449854647],[117,151,75,-0.7553917917833366],[117,151,76,-0.7550605233841742],[117,151,77,-0.7547316450080043],[117,151,78,-0.7544051617801276],[117,151,79,-0.7540810787306876],[117,152,64,-0.7593442308315346],[117,152,65,-0.7589867849507972],[117,152,66,-0.7586316658459239],[117,152,67,-0.7582788796635807],[117,152,68,-0.7579284324600459],[117,152,69,-0.7575803302007864],[117,152,70,-0.7572345787600203],[117,152,71,-0.7568911839202824],[117,152,72,-0.7565501513719892],[117,152,73,-0.7562114867130183],[117,152,74,-0.7558751954482594],[117,152,75,-0.7555412829891954],[117,152,76,-0.7552097546534712],[117,152,77,-0.7548806156644632],[117,152,78,-0.7545538711508536],[117,152,79,-0.7542295261461984],[117,153,64,-0.759496692418882],[117,153,65,-0.7591389954541884],[117,153,66,-0.7587836245497672],[117,153,67,-0.7584305858553025],[117,153,68,-0.7580798854301211],[117,153,69,-0.75773152924277],[117,153,70,-0.757385523170578],[117,153,71,-0.7570418729992221],[117,153,72,-0.7567005844222929],[117,153,73,-0.7563616630408729],[117,153,74,-0.7560251143630884],[117,153,75,-0.7556909438036903],[117,153,76,-0.7553591566836233],[117,153,77,-0.7550297582295953],[117,153,78,-0.7547027535736517],[117,153,79,-0.7543781477527438],[117,154,64,-0.7596493104078876],[117,154,65,-0.7592913635611098],[117,154,66,-0.7589357420548156],[117,154,67,-0.7585824520416865],[117,154,68,-0.7582314995840784],[117,154,69,-0.7578828906535984],[117,154,70,-0.7575366311306667],[117,154,71,-0.7571927268040837],[117,154,72,-0.7568511833705938],[117,154,73,-0.7565120064344661],[117,154,74,-0.7561752015070446],[117,154,75,-0.7558407740063298],[117,154,76,-0.7555087292565476],[117,154,77,-0.7551790724877192],[117,154,78,-0.7548518088352353],[117,154,79,-0.7545269433394246],[117,155,64,-0.7598020845495117],[117,155,65,-0.759443889024997],[117,155,66,-0.7590880181169734],[117,155,67,-0.7587344779810996],[117,155,68,-0.7583832746827404],[117,155,69,-0.7580344141965434],[117,155,70,-0.7576879024060008],[117,155,71,-0.7573437451030167],[117,155,72,-0.7570019479874708],[117,155,73,-0.7566625166667992],[117,155,74,-0.7563254566555448],[117,155,75,-0.7559907733749391],[117,155,76,-0.7556584721524711],[117,155,77,-0.7553285582214568],[117,155,78,-0.7550010367206142],[117,155,79,-0.7546759126936313],[117,156,64,-0.7599550145931699],[117,156,65,-0.7595965715977339],[117,156,66,-0.7592404524905856],[117,156,67,-0.7588866634303415],[117,156,68,-0.7585352104853552],[117,156,69,-0.7581860996332952],[117,156,70,-0.757839336760706],[117,156,71,-0.7574949276625755],[117,156,72,-0.7571528780419002],[117,156,73,-0.7568131935092637],[117,156,74,-0.7564758795823892],[117,156,75,-0.7561409416857203],[117,156,76,-0.7558083851499906],[117,156,77,-0.7554782152117929],[117,156,78,-0.7551504370131541],[117,156,79,-0.754825055601104],[117,157,64,-0.7601081002867134],[117,157,65,-0.7597494110296313],[117,157,66,-0.7593930449284175],[117,157,67,-0.7590390081446253],[117,157,68,-0.7586873067495775],[117,157,69,-0.7583379467239431],[117,157,70,-0.7579909339572994],[117,157,71,-0.7576462742476993],[117,157,72,-0.7573039733012356],[117,157,73,-0.7569640367316214],[117,157,74,-0.7566264700597409],[117,157,75,-0.7562912787132315],[117,157,76,-0.7559584680260524],[117,157,77,-0.7556280432380548],[117,157,78,-0.7553000094945568],[117,157,79,-0.7549743718459117],[117,158,64,-0.7602613413764087],[117,158,65,-0.7599024070694095],[117,158,66,-0.7595457951816358],[117,158,67,-0.7591915118775578],[117,158,68,-0.7588395632314475],[117,158,69,-0.7584899552269546],[117,158,70,-0.7581426937566697],[117,158,71,-0.7577977846216907],[117,158,72,-0.757455233531188],[117,158,73,-0.7571150461019845],[117,158,74,-0.7567772278581069],[117,158,75,-0.756441784230367],[117,158,76,-0.7561087205559316],[117,158,77,-0.7557780420778921],[117,158,78,-0.7554497539448393],[117,158,79,-0.755123861210432],[117,159,64,-0.7604147376069976],[117,159,65,-0.7600555594642555],[117,159,66,-0.7596987029998667],[117,159,67,-0.7593441743811985],[117,159,68,-0.7589919796854513],[117,159,69,-0.758642124899236],[117,159,70,-0.7582946159181367],[117,159,71,-0.7579494585462767],[117,159,72,-0.757606658495885],[117,159,73,-0.7572662213868748],[117,159,74,-0.756928152746396],[117,159,75,-0.756592458008417],[117,159,76,-0.7562591425132928],[117,159,77,-0.7559282115073368],[117,159,78,-0.7555996701423942],[117,159,79,-0.7552735234754113],[117,160,64,-0.7605682887216685],[117,160,65,-0.7602088679597956],[117,160,66,-0.7598517681311686],[117,160,67,-0.7594969954060309],[117,160,68,-0.7591445558644916],[117,160,69,-0.758794455496103],[117,160,70,-0.7584467001994225],[117,160,71,-0.7581012957815797],[117,160,72,-0.7577582479578422],[117,160,73,-0.7574175623511948],[117,160,74,-0.7570792444918919],[117,160,75,-0.7567432998170385],[117,160,76,-0.7564097336701603],[117,160,77,-0.7560785513007735],[117,160,78,-0.75574975786396],[117,160,79,-0.7554233584199357],[117,161,64,-0.7607219944620801],[117,161,65,-0.7603623323001194],[117,161,66,-0.7600049903220549],[117,161,67,-0.7596499747009867],[117,161,68,-0.7592972915199122],[117,161,69,-0.7589469467713048],[117,161,70,-0.7585989463566756],[117,161,71,-0.7582532960861408],[117,161,72,-0.7579100016779874],[117,161,73,-0.7575690687582524],[117,161,74,-0.757230502860275],[117,161,75,-0.7568943094242794],[117,161,76,-0.7565604937969421],[117,161,77,-0.7562290612309642],[117,161,78,-0.7559000168846456],[117,161,79,-0.7555733658214536],[117,162,64,-0.7608758545683336],[117,162,65,-0.7605159522277505],[117,162,66,-0.7601583693174667],[117,162,67,-0.7598031120134174],[117,162,68,-0.759450186401469],[117,162,69,-0.7590995984769955],[117,162,70,-0.758751354144442],[117,162,71,-0.7584054592168916],[117,162,72,-0.7580619194156312],[117,162,73,-0.7577207403697306],[117,162,74,-0.7573819276155956],[117,162,75,-0.7570454865965491],[117,162,76,-0.756711422662401],[117,162,77,-0.7563797410690184],[117,162,78,-0.7560504469779006],[117,162,79,-0.7557235454557488],[117,163,64,-0.7610298687790311],[117,163,65,-0.7606697274837069],[117,163,66,-0.7603119048608309],[117,163,67,-0.7599564070891537],[117,163,68,-0.7596032402573893],[117,163,69,-0.7592524103637932],[117,163,70,-0.7589039233157245],[117,163,71,-0.7585577849292134],[117,163,72,-0.758214000928527],[117,163,73,-0.7578725769457489],[117,163,74,-0.7575335185203318],[117,163,75,-0.7571968310986792],[117,163,76,-0.7568625200337147],[117,163,77,-0.7565305905844534],[117,163,78,-0.7562010479155757],[117,163,79,-0.7558738970969983],[117,164,64,-0.7611840368312566],[117,164,65,-0.7608236578074803],[117,164,66,-0.7604655966940412],[117,164,67,-0.7601098596724847],[117,164,68,-0.7597564528343526],[117,164,69,-0.7594053821807611],[117,164,70,-0.7590566536219636],[117,164,71,-0.7587102729769176],[117,164,72,-0.7583662459728511],[117,164,73,-0.7580245782448418],[117,164,74,-0.7576852753353704],[117,164,75,-0.7573483426939019],[117,164,76,-0.757013785676455],[117,164,77,-0.7566816095451738],[117,164,78,-0.7563518194679021],[117,164,79,-0.7560244205177528],[117,165,64,-0.7613383584605553],[117,165,65,-0.7609777429370165],[117,165,66,-0.7606194445574379],[117,165,67,-0.7602634695061391],[117,165,68,-0.7599098238774694],[117,165,69,-0.759558513675386],[117,165,70,-0.7592095448130158],[117,165,71,-0.7588629231122247],[117,165,72,-0.7585186543031814],[117,165,73,-0.7581767440239389],[117,165,74,-0.757837197819986],[117,165,75,-0.7575000211438305],[117,165,76,-0.7571652193545675],[117,165,77,-0.7568327977174514],[117,165,78,-0.7565027614034703],[117,165,79,-0.7561751154889161],[117,166,64,-0.7614928334009942],[117,166,65,-0.7611319826087749],[117,166,66,-0.7607734481898671],[117,166,67,-0.760417236331344],[117,166,68,-0.7600633531303418],[117,166,69,-0.7597118045936382],[117,166,70,-0.7593625966372148],[117,166,71,-0.7590157350858248],[117,166,72,-0.7586712256725586],[117,166,73,-0.7583290740384245],[117,166,74,-0.7579892857319012],[117,166,75,-0.7576518662085192],[117,166,76,-0.7573168208304313],[117,166,77,-0.7569841548659839],[117,166,78,-0.7566538734892911],[117,166,79,-0.7563259817798051],[117,167,64,-0.7616474613851321],[117,167,65,-0.7612863765576997],[117,167,66,-0.7609276073286523],[117,167,67,-0.760571159887796],[117,167,68,-0.7602170403350338],[117,167,69,-0.7598652546799437],[117,167,70,-0.7595158088413414],[117,167,71,-0.7591687086468479],[117,167,72,-0.7588239598324558],[117,167,73,-0.7584815680421091],[117,167,74,-0.7581415388272567],[117,167,75,-0.7578038776464333],[117,167,76,-0.7574685898648306],[117,167,77,-0.7571356807538675],[117,167,78,-0.756805155490766],[117,167,79,-0.7564770191581202],[117,168,64,-0.7618022421440444],[117,168,65,-0.7614409245172439],[117,168,66,-0.7610819217096183],[117,168,67,-0.7607252399136859],[117,168,68,-0.7603708852320961],[117,168,69,-0.760018863677207],[117,168,70,-0.7596691811706482],[117,168,71,-0.7593218435428887],[117,168,72,-0.7589768565328034],[117,168,73,-0.7586342257872529],[117,168,74,-0.7582939568606364],[117,168,75,-0.7579560552144741],[117,168,76,-0.7576205262169772],[117,168,77,-0.757287375142619],[117,168,78,-0.7569566071717104],[117,168,79,-0.7566282273899694],[117,169,64,-0.7619571754072942],[117,169,65,-0.7615956262193406],[117,169,66,-0.7612363910670621],[117,169,67,-0.760879476145669],[117,169,68,-0.7605248875605366],[117,169,69,-0.7601726313267824],[117,169,70,-0.75982271336883],[117,169,71,-0.7594751395199767],[117,169,72,-0.7591299155219596],[117,169,73,-0.7587870470245363],[117,169,74,-0.7584465395850373],[117,169,75,-0.7581083986679489],[117,169,76,-0.7577726296444829],[117,169,77,-0.7574392377921482],[117,169,78,-0.7571082282943257],[117,169,79,-0.756779606239839],[117,170,64,-0.762112260902992],[117,170,65,-0.7617504813944624],[117,170,66,-0.7613910151338132],[117,170,67,-0.7610338683189258],[117,170,68,-0.7606790470578804],[117,170,69,-0.7603265573685342],[117,170,70,-0.7599764051780844],[117,170,71,-0.7596285963226366],[117,170,72,-0.7592831365467704],[117,170,73,-0.7589400315031206],[117,170,74,-0.75859928675193],[117,170,75,-0.7582609077606313],[117,170,76,-0.757924899903418],[117,170,77,-0.7575912684608159],[117,170,78,-0.7572600186192575],[117,170,79,-0.7569311554706533],[117,171,64,-0.7622674983577755],[117,171,65,-0.7619054897716018],[117,171,66,-0.7615457936412128],[117,171,67,-0.7611884161671404],[117,171,68,-0.7608333634601494],[117,171,69,-0.7604806415408158],[117,171,70,-0.7601302563390908],[117,171,71,-0.7597822136938677],[117,171,72,-0.7594365193525491],[117,171,73,-0.7590931789706274],[117,171,74,-0.7587521981112377],[117,171,75,-0.7584135822447406],[117,171,76,-0.7580773367482923],[117,171,77,-0.7577434669054157],[117,171,78,-0.7574119779055768],[117,171,79,-0.7570828748437544],[117,172,64,-0.7624228874967893],[117,172,65,-0.7620606510782502],[117,172,66,-0.7617007263190938],[117,172,67,-0.7613431194224816],[117,172,68,-0.7609878365018421],[117,172,69,-0.7606348835804503],[117,172,70,-0.7602842665909902],[117,172,71,-0.7599359913751236],[117,172,72,-0.7595900636830559],[117,172,73,-0.7592464891731174],[117,172,74,-0.7589052734113164],[117,172,75,-0.7585664218709216],[117,172,76,-0.7582299399320325],[117,172,77,-0.7578958328811511],[117,172,78,-0.757564105910758],[117,172,79,-0.7572347641188815],[117,173,64,-0.7625784280437448],[117,173,65,-0.7622159650404583],[117,173,66,-0.7618558128958407],[117,173,67,-0.7614979778156616],[117,173,68,-0.7611424659159935],[117,173,69,-0.760789283222789],[117,173,70,-0.7604384356714454],[117,173,71,-0.7600899291063721],[117,173,72,-0.759743769280558],[117,173,73,-0.7593999618551514],[117,173,74,-0.7590585123990141],[117,173,75,-0.7587194263883037],[117,173,76,-0.7583827092060442],[117,173,77,-0.7580483661416976],[117,173,78,-0.7577164023907396],[117,173,79,-0.7573868230542303],[117,174,64,-0.7627341197208911],[117,174,65,-0.7623714313828072],[117,174,66,-0.7620110530983604],[117,174,67,-0.7616529910759082],[117,174,68,-0.7612972514341458],[117,174,69,-0.7609438402016835],[117,174,70,-0.760592763316611],[117,174,71,-0.7602440266260658],[117,174,72,-0.7598976358857998],[117,174,73,-0.75955359675976],[117,174,74,-0.7592119148196419],[117,174,75,-0.7588725955444726],[117,174,76,-0.7585356443201814],[117,174,77,-0.7582010664391712],[117,174,78,-0.7578688670998948],[117,174,79,-0.7575390514064245],[117,175,64,-0.7628899622490398],[117,175,65,-0.762527049828432],[117,175,66,-0.7621664466521065],[117,175,67,-0.7618081589309879],[117,175,68,-0.7614521927863729],[117,175,69,-0.7610985542495091],[117,175,70,-0.7607472492611587],[117,175,71,-0.7603982836711667],[117,175,72,-0.760051663238028],[117,175,73,-0.7597073936284684],[117,175,74,-0.7593654804169979],[117,175,75,-0.7590259290854937],[117,175,76,-0.758688745022771],[117,175,77,-0.7583539335241545],[117,175,78,-0.7580214997910548],[117,175,79,-0.7576914489305393],[117,176,64,-0.7630459553475347],[117,176,65,-0.7626828200989927],[117,176,66,-0.7623219932810499],[117,176,67,-0.7619634811071765],[117,176,68,-0.7616072897012505],[117,176,69,-0.7612534250971359],[117,176,70,-0.7609018932382468],[117,176,71,-0.7605526999771157],[117,176,72,-0.760205851074961],[117,176,73,-0.7598613522012668],[117,176,74,-0.7595192089333381],[117,176,75,-0.7591794267558828],[117,176,76,-0.7588420110605825],[117,176,77,-0.7585069671456651],[117,176,78,-0.7581743002154805],[117,176,79,-0.7578440153800711],[117,177,64,-0.7632020987343127],[117,177,65,-0.7628387419147348],[117,177,66,-0.7624776927077388],[117,177,67,-0.7621189573293199],[117,177,68,-0.7617625419059164],[117,177,69,-0.7614084524739884],[117,177,70,-0.7610566949795811],[117,177,71,-0.7607072752778945],[117,177,72,-0.7603601991328497],[117,177,73,-0.7600154722166703],[117,177,74,-0.759673100109436],[117,177,75,-0.759333088298666],[117,177,76,-0.7589954421788894],[117,177,77,-0.7586601670512177],[117,177,78,-0.7583272681229212],[117,177,79,-0.7579967505069991],[117,178,64,-0.7633583921258829],[117,178,65,-0.7629948149944681],[117,178,66,-0.7626335446532785],[117,178,67,-0.7622745873208134],[117,178,68,-0.7619179491260506],[117,178,69,-0.7615636361080252],[117,178,70,-0.7612116542153937],[117,178,71,-0.760862009306003],[117,178,72,-0.7605147071464569],[117,178,73,-0.7601697534116985],[117,178,74,-0.7598271536845623],[117,178,75,-0.7594869134553596],[117,178,76,-0.7591490381214473],[117,178,77,-0.758813532986802],[117,178,78,-0.7584804032615949],[117,178,79,-0.7581496540617634],[117,179,64,-0.7635148352373067],[117,179,65,-0.7631510390555466],[117,179,66,-0.7627895488373108],[117,179,67,-0.7624303708035811],[117,179,68,-0.7620735110858539],[117,179,69,-0.7617189757257189],[117,179,70,-0.7613667706744232],[117,179,71,-0.7610169017924401],[117,179,72,-0.7606693748490364],[117,179,73,-0.7603241955218543],[117,179,74,-0.7599813693964639],[117,179,75,-0.7596409019659485],[117,179,76,-0.7593027986304739],[117,179,77,-0.7589670646968623],[117,179,78,-0.758633705378167],[117,179,79,-0.7583027257932446],[117,180,64,-0.7636714277822575],[117,180,65,-0.7633074138139291],[117,180,66,-0.7629457049780739],[117,180,67,-0.7625863074981357],[117,180,68,-0.7622292275081085],[117,180,69,-0.7618744710521155],[117,180,70,-0.761522044083974],[117,180,71,-0.7611719524667634],[117,180,72,-0.7608242019723933],[117,180,73,-0.7604787982811849],[117,180,74,-0.7601357469814245],[117,180,75,-0.7597950535689475],[117,180,76,-0.7594567234467092],[117,180,77,-0.7591207619243578],[117,180,78,-0.7587871742178105],[117,180,79,-0.7584559654488243],[117,181,64,-0.7638281694729911],[117,181,65,-0.7634639389841489],[117,181,66,-0.7631020127923737],[117,181,67,-0.76274239712355],[117,181,68,-0.7623850981141483],[117,181,69,-0.7620301218108053],[117,181,70,-0.7616774741698873],[117,181,71,-0.7613271610570597],[117,181,72,-0.7609791882468545],[117,181,73,-0.7606335614222521],[117,181,74,-0.7602902861742347],[117,181,75,-0.7599493680013705],[117,181,76,-0.759610812309385],[117,181,77,-0.7592746244107333],[117,181,78,-0.7589408095241769],[117,181,79,-0.7586093727743544],[117,182,64,-0.7639850600203711],[117,182,65,-0.7636206142793386],[117,182,66,-0.7632584719956069],[117,182,67,-0.7628986393974798],[117,182,68,-0.7625411226238837],[117,182,69,-0.7621859277239472],[117,182,70,-0.7618330606565653],[117,182,71,-0.7614825272899691],[117,182,72,-0.7611343334012929],[117,182,73,-0.7607884846761557],[117,182,74,-0.7604449867082161],[117,182,75,-0.7601038449987556],[117,182,76,-0.7597650649562502],[117,182,77,-0.7594286518959426],[117,182,78,-0.7590946110394193],[117,182,79,-0.7587629475141822],[117,183,64,-0.764142099133838],[117,183,65,-0.7637774394112007],[117,183,66,-0.7634150823017327],[117,183,67,-0.7630550340361358],[117,183,68,-0.7626973007557712],[117,183,69,-0.7623418885122387],[117,183,70,-0.7619888032669416],[117,183,71,-0.7616380508906557],[117,183,72,-0.7612896371630973],[117,183,73,-0.7609435677725044],[117,183,74,-0.7605998483151919],[117,183,75,-0.7602584842951349],[117,183,76,-0.7599194811235399],[117,183,77,-0.7595828441184186],[117,183,78,-0.7592485785041634],[117,183,79,-0.75891668941112],[117,184,64,-0.7642992865214703],[117,184,65,-0.7639344140900677],[117,184,66,-0.7635718434233323],[117,184,67,-0.7632115807543429],[117,184,68,-0.7628536322268743],[117,184,69,-0.7624980038949768],[117,184,70,-0.762144701722541],[117,184,71,-0.7617937315828671],[117,184,72,-0.7614450992582332],[117,184,73,-0.761098810439476],[117,184,74,-0.7607548707255469],[117,184,75,-0.7604132856230945],[117,184,76,-0.7600740605460368],[117,184,77,-0.7597372008151347],[117,184,78,-0.7594027116575676],[117,184,79,-0.7590705982065059],[117,185,64,-0.7644566218899638],[117,185,65,-0.764091538024881],[117,185,66,-0.7637287550715881],[117,185,67,-0.7633682792655196],[117,185,68,-0.7630101167528425],[117,185,69,-0.7626542735900366],[117,185,70,-0.7623007557434593],[117,185,71,-0.7619495690889148],[117,185,72,-0.761600719411222],[117,185,73,-0.7612542124037969],[117,185,74,-0.7609100536682067],[117,185,75,-0.7605682487137544],[117,185,76,-0.7602288029570496],[117,185,77,-0.7598917217215829],[117,185,78,-0.7595570102373017],[117,185,79,-0.7592246736401821],[117,186,64,-0.7646141049446107],[117,186,65,-0.7642488109231712],[117,186,66,-0.7638858169562641],[117,186,67,-0.7635251292816576],[117,186,68,-0.7631667540478905],[117,186,69,-0.7628106973138511],[117,186,70,-0.7624569650483424],[117,186,71,-0.762105563129652],[117,186,72,-0.76175649734512],[117,186,73,-0.7614097733907204],[117,186,74,-0.761065396870617],[117,186,75,-0.7607233732967469],[117,186,76,-0.7603837080883922],[117,186,77,-0.7600464065717533],[117,186,78,-0.7597114739795264],[117,186,79,-0.7593789154504746],[117,187,64,-0.7647717353893604],[117,187,65,-0.764406232491118],[117,187,66,-0.764043028785765],[117,187,67,-0.7636821305133825],[117,187,68,-0.7633235438248593],[117,187,69,-0.7629672747814713],[117,187,70,-0.7626133293544467],[117,187,71,-0.7622617134245357],[117,187,72,-0.7619124327815787],[117,187,73,-0.761565493124088],[117,187,74,-0.7612209000588039],[117,187,75,-0.7608786591002777],[117,187,76,-0.7605387756704439],[117,187,77,-0.7602012550981941],[117,187,78,-0.7598661026189536],[117,187,79,-0.7595333233742534],[117,188,64,-0.7649295129267983],[117,188,65,-0.7645638024335293],[117,188,66,-0.7642003902671164],[117,188,67,-0.7638392826699321],[117,188,68,-0.7634804857951945],[117,188,69,-0.7631240057065456],[117,188,70,-0.7627698483776181],[117,188,71,-0.7624180196916042],[117,188,72,-0.7620685254408242],[117,188,73,-0.7617213713263085],[117,188,74,-0.7613765629573532],[117,188,75,-0.7610341058511045],[117,188,76,-0.7606940054321296],[117,188,77,-0.7603562670319914],[117,188,78,-0.7600208958888254],[117,188,79,-0.7596878971469113],[117,189,64,-0.7650874372581259],[117,189,65,-0.7647215204538207],[117,189,66,-0.7643579011059434],[117,189,67,-0.7639965854591366],[117,189,68,-0.7636375796689258],[117,189,69,-0.7632808898012988],[117,189,70,-0.7629265218322715],[117,189,71,-0.7625744816474571],[117,189,72,-0.7622247750416359],[117,189,73,-0.7618774077183357],[117,189,74,-0.7615323852893889],[117,189,75,-0.7611897132745158],[117,189,76,-0.7608493971008972],[117,189,77,-0.7605114421027475],[117,189,78,-0.760175853520893],[117,189,79,-0.7598426365023432],[117,190,64,-0.7652455080832202],[117,190,65,-0.7648793862540759],[117,190,66,-0.7645155610065315],[117,190,67,-0.7641540385874782],[117,190,68,-0.763794825154728],[117,190,69,-0.7634379267765927],[117,190,70,-0.7630833494314508],[117,190,71,-0.7627310990073163],[117,190,72,-0.7623811813014079],[117,190,73,-0.7620336020197312],[117,190,74,-0.7616883667766343],[117,190,75,-0.7613454810943923],[117,190,76,-0.7610049504027789],[117,190,77,-0.7606667800386415],[117,190,78,-0.7603309752454772],[117,190,79,-0.7599975411730062],[117,191,64,-0.7654037251006047],[117,191,65,-0.765037399535017],[117,191,66,-0.7646733696717968],[117,191,67,-0.7643116417600622],[117,191,68,-0.7639522219598902],[117,191,69,-0.7635951163418961],[117,191,70,-0.7632403308867995],[117,191,71,-0.7628878714849945],[117,191,72,-0.7625377439361178],[117,191,73,-0.7621899539486324],[117,191,74,-0.7618445071393818],[117,191,75,-0.7615014090331756],[117,191,76,-0.7611606650623617],[117,191,77,-0.7608222805663996],[117,191,78,-0.7604862607914384],[117,191,79,-0.7601526108898898],[117,192,64,-0.7655620880074736],[117,192,65,-0.7651955599960287],[117,192,66,-0.7648313268033098],[117,192,67,-0.7644693946806405],[117,192,68,-0.7641097697903412],[117,192,69,-0.7637524582053092],[117,192,70,-0.7633974659085848],[117,192,71,-0.7630447987929209],[117,192,72,-0.762694462660352],[117,192,73,-0.7623464632217777],[117,192,74,-0.762000806096517],[117,192,75,-0.7616574968118941],[117,192,76,-0.7613165408028104],[117,192,77,-0.7609779434113189],[117,192,78,-0.760641709886201],[117,192,79,-0.7603078453825401],[117,193,64,-0.7657205964996615],[117,193,65,-0.7653538673351288],[117,193,66,-0.7649894321012664],[117,193,67,-0.764627297051582],[117,193,68,-0.7642674683506184],[117,193,69,-0.7639099520735337],[117,193,70,-0.7635547542056673],[117,193,71,-0.7632018806421105],[117,193,72,-0.762851337187275],[117,193,73,-0.7625031295544763],[117,193,74,-0.7621572633654887],[117,193,75,-0.761813744150131],[117,193,76,-0.7614725773458384],[117,193,77,-0.7611337682972372],[117,193,78,-0.760797322255722],[117,193,79,-0.7604632443790292],[117,194,64,-0.765879250271705],[117,194,65,-0.7655123212490279],[117,194,66,-0.7651476852645475],[117,194,67,-0.7647853485739334],[117,194,68,-0.7644253173439295],[117,194,69,-0.764067597651933],[117,194,70,-0.7637121954855621],[117,194,71,-0.7633591167422251],[117,194,72,-0.7630083672286904],[117,194,73,-0.7626599526606688],[117,194,74,-0.7623138786623698],[117,194,75,-0.7619701507660863],[117,194,76,-0.7616287744117679],[117,194,77,-0.7612897549465943],[117,194,78,-0.7609530976245539],[117,194,79,-0.7606188076060163],[117,195,64,-0.7660380490168204],[117,195,65,-0.7656709214331096],[117,195,66,-0.7653060859906986],[117,195,67,-0.764943548947398],[117,195,68,-0.7645833164721304],[117,195,69,-0.7642253946445119],[117,195,70,-0.7638697894544174],[117,195,71,-0.7635165068015519],[117,195,72,-0.7631655524950195],[117,195,73,-0.7628169322529059],[117,195,74,-0.7624706517018354],[117,195,75,-0.7621267163765553],[117,195,76,-0.761785131719509],[117,195,77,-0.7614459030804102],[117,195,78,-0.7611090357158212],[117,195,79,-0.7607745347887261],[117,196,64,-0.7661969924268842],[117,196,65,-0.7658296675814089],[117,196,66,-0.7654646339759092],[117,196,67,-0.7651018978703145],[117,196,68,-0.7647414654357054],[117,196,69,-0.7643833427538949],[117,196,70,-0.7640275358169937],[117,196,71,-0.7636740505269827],[117,196,72,-0.7633228926952805],[117,196,73,-0.7629740680423278],[117,196,74,-0.7626275821971429],[117,196,75,-0.7622834406969071],[117,196,76,-0.761941648986538],[117,196,77,-0.7616022124182638],[117,196,78,-0.7612651362512007],[117,196,79,-0.7609304256509279],[117,197,64,-0.766356080192493],[117,197,65,-0.7659885593866729],[117,197,66,-0.7656233289150727],[117,197,67,-0.7652603950397183],[117,197,68,-0.7648997639338271],[117,197,69,-0.764541441681387],[117,197,70,-0.7641854342767245],[117,197,71,-0.7638317476240742],[117,197,72,-0.7634803875371494],[117,197,73,-0.7631313597387244],[117,197,74,-0.7627846698601913],[117,197,75,-0.7624403234411457],[117,197,76,-0.7620983259289591],[117,197,77,-0.7617586826783538],[117,197,78,-0.7614213989509814],[117,197,79,-0.761086479914996],[117,198,64,-0.7665153120029333],[117,198,65,-0.7661475965403313],[117,198,66,-0.7657821705017565],[117,198,67,-0.7654190401513109],[117,198,68,-0.7650582116643261],[117,198,69,-0.7646996911269444],[117,198,70,-0.7643434845356858],[117,198,71,-0.7639895977970186],[117,198,72,-0.7636380367269291],[117,198,73,-0.7632888070505051],[117,198,74,-0.7629419144014923],[117,198,75,-0.7625973643218796],[117,198,76,-0.7622551622614728],[117,198,77,-0.761915313577469],[117,198,78,-0.7615778235340345],[117,198,79,-0.7612426973018797],[117,199,64,-0.7666746875462066],[117,199,65,-0.7663067787325196],[117,199,66,-0.7659411584282273],[117,199,67,-0.7655778328994847],[117,199,68,-0.7652168083237164],[117,199,69,-0.7648580907891978],[117,199,70,-0.7645016862946209],[117,199,71,-0.7641476007486668],[117,199,72,-0.7637958399695742],[117,199,73,-0.7634464096847235],[117,199,74,-0.7630993155301935],[117,199,75,-0.7627545630503464],[117,199,76,-0.7624121576974018],[117,199,77,-0.7620721048310115],[117,199,78,-0.7617344097178377],[117,199,79,-0.7613990775311268],[117,200,64,-0.7668342065089988],[117,200,65,-0.7664661056520508],[117,200,66,-0.7661002923854195],[117,200,67,-0.7657367729772919],[117,200,68,-0.765375553607164],[117,200,69,-0.7650166403654222],[117,200,70,-0.7646600392529098],[117,200,71,-0.7643057561804992],[117,200,72,-0.7639537969686608],[117,200,73,-0.763604167347047],[117,200,74,-0.7632568729540486],[117,200,75,-0.7629119193363814],[117,200,76,-0.7625693119486587],[117,200,77,-0.762229056152967],[117,200,78,-0.7618911572184444],[117,200,79,-0.7615556203208544],[117,201,64,-0.7669938685767408],[117,201,65,-0.7666255769864742],[117,201,66,-0.7662595720629973],[117,201,67,-0.7658958600765069],[117,201,68,-0.7655344472085486],[117,201,69,-0.7651753395515986],[117,201,70,-0.7648185431086303],[117,201,71,-0.7644640637926863],[117,201,72,-0.7641119074264472],[117,201,73,-0.7637620797418169],[117,201,74,-0.7634145863794783],[117,201,75,-0.7630694328884797],[117,201,76,-0.7627266247258082],[117,201,77,-0.7623861672559654],[117,201,78,-0.7620480657505452],[117,201,79,-0.7617123253878084],[117,202,64,-0.7671536734335882],[117,202,65,-0.7667851924220557],[117,202,66,-0.7664189971493327],[117,202,67,-0.7660550938876034],[117,202,68,-0.7656934888204419],[117,202,69,-0.7653341880423923],[117,202,70,-0.7649771975585367],[117,202,71,-0.7646225232840663],[117,202,72,-0.7642701710438522],[117,202,73,-0.7639201465720282],[117,202,74,-0.7635724555115486],[117,202,75,-0.7632271034137743],[117,202,76,-0.7628840957380458],[117,202,77,-0.7625434378512594],[117,202,78,-0.7622051350274456],[117,202,79,-0.7618691924473431],[117,203,64,-0.7673136207623996],[117,203,65,-0.7669449516437563],[117,203,66,-0.7665785673314846],[117,203,67,-0.7662144740997346],[117,203,68,-0.7658526781340866],[117,203,69,-0.7654931855311314],[117,203,70,-0.7651360022980381],[117,203,71,-0.764781134352126],[117,203,72,-0.7644285875204346],[117,203,73,-0.7640783675393077],[117,203,74,-0.7637304800539501],[117,203,75,-0.7633849306180147],[117,203,76,-0.7630417246931754],[117,203,77,-0.7627008676487035],[117,203,78,-0.7623623647610456],[117,203,79,-0.762026221213399],[117,204,64,-0.7674737102447975],[117,204,65,-0.7671048543352927],[117,204,66,-0.76673828229526],[117,204,67,-0.7663740004007934],[117,204,68,-0.7660120148394576],[117,204,69,-0.7656523317098681],[117,204,70,-0.7652949570212603],[117,204,71,-0.7649398966930597],[117,204,72,-0.7645871565544538],[117,204,73,-0.7642367423439749],[117,204,74,-0.7638886597090582],[117,204,75,-0.7635429142056278],[117,204,76,-0.7631995112976712],[117,204,77,-0.7628584563568139],[117,204,78,-0.7625197546618998],[117,204,79,-0.7621834113985645],[117,205,64,-0.7676339415611381],[117,205,65,-0.7672649001791073],[117,205,66,-0.7668981417251832],[117,205,67,-0.7665336724773821],[117,205,68,-0.7661714986252306],[117,205,69,-0.7658116262693482],[117,205,70,-0.7654540614210142],[117,205,71,-0.7650988100017398],[117,205,72,-0.7647458778428389],[117,205,73,-0.7643952706850117],[117,205,74,-0.7640469941779029],[117,205,75,-0.7637010538796878],[117,205,76,-0.7633574552566464],[117,205,77,-0.7630162036827395],[117,205,78,-0.7626773044391872],[117,205,79,-0.7623407627140445],[117,206,64,-0.7677943143905359],[117,206,65,-0.7674250888563926],[117,206,66,-0.7670581453045209],[117,206,67,-0.766693490014837],[117,206,68,-0.7663311291788082],[117,206,69,-0.7659710688990357],[117,206,70,-0.7656133151888215],[117,206,71,-0.7652578739717412],[117,206,72,-0.7649047510812136],[117,206,73,-0.7645539522600866],[117,206,74,-0.7642054831601934],[117,206,75,-0.7638593493419399],[117,206,76,-0.7635155562738787],[117,206,77,-0.7631741093322848],[117,206,78,-0.7628350138007357],[117,206,79,-0.7624982748696852],[117,207,64,-0.7679548284108332],[117,207,65,-0.7675854200470607],[117,207,66,-0.767218292715251],[117,207,67,-0.7668534526971978],[117,207,68,-0.7664909061862877],[117,207,69,-0.7661306592870816],[117,207,70,-0.7657727180148829],[117,207,71,-0.7654170882953097],[117,207,72,-0.7650637759638658],[117,207,73,-0.7647127867655245],[117,207,74,-0.7643641263542874],[117,207,75,-0.7640178002927702],[117,207,76,-0.7636738140517779],[117,207,77,-0.7633321730098799],[117,207,78,-0.7629928824529906],[117,207,79,-0.7626559475739435],[117,208,64,-0.7681154832986613],[117,208,65,-0.7677458934298044],[117,208,66,-0.767378583638124],[117,208,67,-0.7670135602072692],[117,208,68,-0.7666508293325235],[117,208,69,-0.766290397120386],[117,208,70,-0.7659322695881401],[117,208,71,-0.7655764526634251],[117,208,72,-0.7652229521838079],[117,208,73,-0.7648717738963672],[117,208,74,-0.7645229234572517],[117,208,75,-0.7641764064312666],[117,208,76,-0.7638322282914486],[117,208,77,-0.7634903944186415],[117,208,78,-0.7631509101010767],[117,208,79,-0.7628137805339474],[117,209,64,-0.7682762787294186],[117,209,65,-0.7679065086820759],[117,209,66,-0.7675390177526416],[117,209,67,-0.7671738122265984],[117,209,68,-0.7668108983011047],[117,209,69,-0.766450282084576],[117,209,70,-0.7660919695962538],[117,209,71,-0.7657359667657775],[117,209,72,-0.7653822794327562],[117,209,73,-0.7650309133463523],[117,209,74,-0.7646818741648413],[117,209,75,-0.7643351674551971],[117,209,76,-0.7639907986926678],[117,209,77,-0.7636487732603514],[117,209,78,-0.7633090964487763],[117,209,79,-0.7629717734554753],[117,210,64,-0.7684372143772504],[117,210,65,-0.7680672654800655],[117,210,66,-0.7676995947370358],[117,210,67,-0.767334208435455],[117,210,68,-0.7669711127743344],[117,210,69,-0.7666103138639844],[117,210,70,-0.7662518177255826],[117,210,71,-0.7658956302907476],[117,210,72,-0.7655417574011085],[117,210,73,-0.7651902048078917],[117,210,74,-0.7648409781714776],[117,210,75,-0.7644940830609885],[117,210,76,-0.7641495249538636],[117,210,77,-0.7638073092354347],[117,210,78,-0.7634674411985068],[117,210,79,-0.7631299260429335],[117,211,64,-0.7685982899151088],[117,211,65,-0.7682281634987628],[117,211,66,-0.7678603142683292],[117,211,67,-0.7674947485128911],[117,211,68,-0.7671314724332906],[117,211,69,-0.7667704921417108],[117,211,70,-0.7664118136612443],[117,211,71,-0.7660554429254665],[117,211,72,-0.7657013857780065],[117,211,73,-0.7653496479721323],[117,211,74,-0.7650002351703094],[117,211,75,-0.7646531529437876],[117,211,76,-0.7643084067721763],[117,211,77,-0.7639660020430209],[117,211,78,-0.7636259440513836],[117,211,79,-0.763288237999418],[117,212,64,-0.7687595050147231],[117,212,65,-0.7683892024119257],[117,212,66,-0.7680211760223052],[117,212,67,-0.7676554321367115],[117,212,68,-0.7672919769577955],[117,212,69,-0.7669308165995912],[117,212,70,-0.7665719570870844],[117,212,71,-0.7662154043557861],[117,212,72,-0.7658611642513038],[117,212,73,-0.7655092425289263],[117,212,74,-0.7651596448531828],[117,212,75,-0.7648123767974299],[117,212,76,-0.7644674438434271],[117,212,77,-0.7641248513809136],[117,212,78,-0.7637846047071876],[117,212,79,-0.7634467090266833],[117,213,64,-0.7689208593466236],[117,213,65,-0.7685503818921053],[117,213,66,-0.7681821796735319],[117,213,67,-0.7678162589834976],[117,213,68,-0.76745262602644],[117,213,69,-0.767091286918222],[117,213,70,-0.7667322476857015],[117,213,71,-0.7663755142663029],[117,213,72,-0.7660210925075909],[117,213,73,-0.7656689881668539],[117,213,74,-0.7653192069106644],[117,213,75,-0.7649717543144647],[117,213,76,-0.764626635862144],[117,213,77,-0.7642838569456141],[117,213,78,-0.7639434228643902],[117,213,79,-0.7636053388251669],[117,214,64,-0.7690823525801117],[117,214,65,-0.7687117016106155],[117,214,66,-0.7683433248953317],[117,214,67,-0.767977228728577],[117,214,68,-0.7676134193165531],[117,214,69,-0.7672519027769305],[117,214,70,-0.766892685138416],[117,214,71,-0.7665357723403274],[117,214,72,-0.7661811702321646],[117,214,73,-0.7658288845731946],[117,214,74,-0.7654789210320118],[117,214,75,-0.7651312851861239],[117,214,76,-0.7647859825215289],[117,214,77,-0.7644430184322912],[117,214,78,-0.7641023982201227],[117,214,79,-0.7637641270939581],[117,215,64,-0.7692439843833204],[117,215,65,-0.7688731612375935],[117,215,66,-0.7685046113598428],[117,215,67,-0.7681383410460846],[117,215,68,-0.7677743565042631],[117,215,69,-0.7674126638538338],[117,215,70,-0.7670532691253317],[117,215,71,-0.7666961782599454],[117,215,72,-0.7663413971090888],[117,215,73,-0.7659889314339866],[117,215,74,-0.7656387869052339],[117,215,75,-0.765290969102383],[117,215,76,-0.7649454835135203],[117,215,77,-0.7646023355348422],[117,215,78,-0.7642615304702369],[117,215,79,-0.7639230735308598],[117,216,64,-0.7694057544231934],[117,216,65,-0.7690347604419789],[117,216,66,-0.7686660387379969],[117,216,67,-0.7682995956089409],[117,216,68,-0.7679354372644758],[117,216,69,-0.7675735698258196],[117,216,70,-0.7672139993253138],[117,216,71,-0.7668567317059961],[117,216,72,-0.7665017728211733],[117,216,73,-0.7661491284340063],[117,216,74,-0.7657988042170697],[117,216,75,-0.7654508057519401],[117,216,76,-0.765105138528771],[117,216,77,-0.7647618079458711],[117,216,78,-0.7644208193092841],[117,216,79,-0.7640821778323661],[117,217,64,-0.769567662365463],[117,217,65,-0.7691964988914919],[117,217,66,-0.7688276066994985],[117,217,67,-0.7684609920888315],[117,217,68,-0.7680966612708533],[117,217,69,-0.7677346203685235],[117,217,70,-0.7673748754159675],[117,217,71,-0.767017432358051],[117,217,72,-0.7666622970499517],[117,217,73,-0.7663094752567458],[117,217,74,-0.7659589726529666],[117,217,75,-0.7656107948221933],[117,217,76,-0.7652649472566266],[117,217,77,-0.7649214353566663],[117,217,78,-0.7645802644304923],[117,217,79,-0.7642414396936408],[117,218,64,-0.7697297078747125],[117,218,65,-0.7693583762526949],[117,218,66,-0.7689893149128857],[117,218,67,-0.7686225301562664],[117,218,68,-0.7682580281958751],[117,218,69,-0.7678958151563902],[117,218,70,-0.7675358970736994],[117,218,71,-0.7671782798944746],[117,218,72,-0.7668229694757434],[117,218,73,-0.7664699715844752],[117,218,74,-0.7661192918971412],[117,218,75,-0.7657709359993028],[117,218,76,-0.7654249093851866],[117,218,77,-0.7650812174572635],[117,218,78,-0.7647398655258286],[117,218,79,-0.7644008588085786],[117,219,64,-0.7698918906143531],[117,219,65,-0.7695203921909703],[117,219,66,-0.7691511630455089],[117,219,67,-0.7687842094805605],[117,219,68,-0.7684195377108165],[117,219,69,-0.7680571538626522],[117,219,70,-0.7676970639736957],[117,219,71,-0.7673392739924034],[117,219,72,-0.7669837897776308],[117,219,73,-0.7666306170982198],[117,219,74,-0.7662797616325585],[117,219,75,-0.7659312289681686],[117,219,76,-0.7655850246012829],[117,219,77,-0.7652411539364221],[117,219,78,-0.7648996222859769],[117,219,79,-0.7645604348697839],[117,220,64,-0.7700542102466037],[117,220,65,-0.7696825463704997],[117,220,66,-0.7693131507635091],[117,220,67,-0.7689460297298107],[117,220,68,-0.7685811894857271],[117,220,69,-0.768218636159308],[117,220,70,-0.7678583757899008],[117,220,71,-0.7675004143277234],[117,220,72,-0.7671447576334387],[117,220,73,-0.7667914114777394],[117,220,74,-0.7664403815409089],[117,220,75,-0.766091673412409],[117,220,76,-0.7657452925904573],[117,220,77,-0.7654012444816045],[117,220,78,-0.7650595344003156],[117,220,79,-0.7647201675685475],[117,221,64,-0.7702166664325514],[117,221,65,-0.769844838454325],[117,221,66,-0.7694752777318792],[117,221,67,-0.7691079905709576],[117,221,68,-0.7687429831894917],[117,221,69,-0.7683802617171839],[117,221,70,-0.7680198321950776],[117,221,71,-0.7676617005751322],[117,221,72,-0.767305872719795],[117,221,73,-0.7669523544015887],[117,221,74,-0.7666011513026706],[117,221,75,-0.766252269014422],[117,221,76,-0.7659057130370241],[117,221,77,-0.765561488779037],[117,221,78,-0.76521960155698],[117,221,79,-0.7648800565949099],[117,222,64,-0.7703792588321212],[117,222,65,-0.7700072681043171],[117,222,66,-0.7696375436144329],[117,222,67,-0.7692700916697547],[117,222,68,-0.7689049184898001],[117,222,69,-0.7685420302059021],[117,222,70,-0.7681814328607784],[117,222,71,-0.7678231324081075],[117,222,72,-0.7674671347121],[117,222,73,-0.7671134455470869],[117,222,74,-0.7667620705970786],[117,222,75,-0.7664130154553541],[117,222,76,-0.7660662856240381],[117,222,77,-0.765721886513679],[117,222,78,-0.7653798234428303],[117,222,79,-0.7650401016376284],[117,223,64,-0.7705419871041002],[117,223,65,-0.7701698349812008],[117,223,66,-0.7697999480738297],[117,223,67,-0.7694323326907927],[117,223,68,-0.7690669950531711],[117,223,69,-0.768703941293906],[117,223,70,-0.7683431774573678],[117,223,71,-0.7679847094989317],[117,223,72,-0.7676285432845508],[117,223,73,-0.7672746845903421],[117,223,74,-0.766923139102148],[117,223,75,-0.7665739124151247],[117,223,76,-0.7662270100333191],[117,223,77,-0.7658824373692472],[117,223,78,-0.7655401997434763],[117,223,79,-0.7652003023842024],[117,224,64,-0.7707048509061065],[117,224,65,-0.7703325387445241],[117,224,66,-0.7699624907715438],[117,224,67,-0.7695947132974686],[117,224,68,-0.7692292125449214],[117,224,69,-0.7688659946484289],[117,224,70,-0.768505065653992],[117,224,71,-0.7681464315186614],[117,224,72,-0.7677900981101097],[117,224,73,-0.7674360712062197],[117,224,74,-0.7670843564946441],[117,224,75,-0.7667349595723949],[117,224,76,-0.7663878859454205],[117,224,77,-0.7660431410281842],[117,224,78,-0.7657007301432464],[117,224,79,-0.7653606585208419],[117,225,64,-0.7708678498946516],[117,225,65,-0.7704953790527191],[117,225,66,-0.7701251713679252],[117,225,67,-0.7697572331520475],[117,225,68,-0.7693915706292275],[117,225,69,-0.7690281899355554],[117,225,70,-0.7686670971186409],[117,225,71,-0.7683082981371876],[117,225,72,-0.7679517988605666],[117,225,73,-0.7675976050684047],[117,225,74,-0.7672457224501432],[117,225,75,-0.7668961566046293],[117,225,76,-0.7665489130396917],[117,225,77,-0.7662039971717205],[117,225,78,-0.7658614143252483],[117,225,79,-0.7655211697325291],[117,226,64,-0.7710309837251172],[117,226,65,-0.7706583555630805],[117,226,66,-0.7702879895221784],[117,226,67,-0.7699198919156398],[117,226,68,-0.7695540689691033],[117,226,69,-0.7691905268202],[117,226,70,-0.7688292715181255],[117,226,71,-0.7684703090232151],[117,226,72,-0.7681136452065167],[117,226,73,-0.7677592858493788],[117,226,74,-0.7674072366430109],[117,226,75,-0.7670575031880738],[117,226,76,-0.7667100909942557],[117,226,77,-0.7663650054798522],[117,226,78,-0.7660222519713484],[117,226,79,-0.7656818357029966],[117,227,64,-0.771194252051735],[117,227,65,-0.7708214679317441],[117,227,66,-0.77045094489234],[117,227,67,-0.770082689248181],[117,227,68,-0.7697167072263791],[117,227,69,-0.7693530049660844],[117,227,70,-0.7689915885180566],[117,227,71,-0.7686324638442402],[117,227,72,-0.7682756368173381],[117,227,73,-0.7679211132203995],[117,227,74,-0.7675688987463802],[117,227,75,-0.7672189989977335],[117,227,76,-0.7668714194859862],[117,227,77,-0.766526165631319],[117,227,78,-0.7661832427621482],[117,227,79,-0.7658426561147046],[117,228,64,-0.7713576545276469],[117,228,65,-0.770984715813748],[117,228,66,-0.7706140371353414],[117,228,67,-0.7702456248084919],[117,228,68,-0.7698794850617623],[117,228,69,-0.7695156240357999],[117,228,70,-0.7691540477829057],[117,228,71,-0.7687947622666118],[117,228,72,-0.7684377733612542],[117,228,73,-0.7680830868515608],[117,228,74,-0.7677307084322129],[117,228,75,-0.7673806437074346],[117,228,76,-0.7670328981905707],[117,228,77,-0.7666874773036658],[117,228,78,-0.7663443863770472],[117,228,79,-0.7660036306489034],[117,229,64,-0.771521190804875],[117,229,65,-0.7711480988630013],[117,229,66,-0.7707772659069763],[117,229,67,-0.7704086982542475],[117,229,68,-0.7700424021348071],[117,229,69,-0.7696783836907758],[117,229,70,-0.7693166489759746],[117,229,71,-0.7689572039555008],[117,229,72,-0.7686000545053018],[117,229,73,-0.7682452064117626],[117,229,74,-0.7678926653712684],[117,229,75,-0.7675424369897932],[117,229,76,-0.7671945267824781],[117,229,77,-0.7668489401732115],[117,229,78,-0.7665056824942107],[117,229,79,-0.7661647589856013],[117,230,64,-0.7716848605343453],[117,230,65,-0.7713116167323094],[117,230,66,-0.7709406308619258],[117,230,67,-0.7705719092420027],[117,230,68,-0.7702054581039381],[117,230,69,-0.7698412835913042],[117,230,70,-0.7694793917594195],[117,230,71,-0.7691197885749246],[117,230,72,-0.7687624799153561],[117,230,73,-0.768407471568735],[117,230,74,-0.7680547692331284],[117,230,75,-0.767704378516239],[117,230,76,-0.7673563049349836],[117,230,77,-0.767010553915073],[117,230,78,-0.7666671307905942],[117,230,79,-0.7663260408035898],[117,231,64,-0.7718486633658572],[117,231,65,-0.7714752690733424],[117,231,66,-0.771104131653728],[117,231,67,-0.7707352574271601],[117,231,68,-0.7703686526264196],[117,231,69,-0.7700043233965083],[117,231,70,-0.7696422757942194],[117,231,71,-0.7692825157877149],[117,231,72,-0.768925049256099],[117,231,73,-0.7685698819890063],[117,231,74,-0.7682170196861648],[117,231,75,-0.7678664679569848],[117,231,76,-0.7675182323201374],[117,231,77,-0.7671723182031347],[117,231,78,-0.7668287309419128],[117,231,79,-0.7664874757804108],[117,232,64,-0.7720125989481447],[117,232,65,-0.7716390555366964],[117,232,66,-0.7712677679348383],[117,232,67,-0.7708987424640315],[117,232,68,-0.7705319853584176],[117,232,69,-0.7701675027644044],[117,232,70,-0.7698053007402386],[117,232,71,-0.7694453852555807],[117,232,72,-0.7690877621910808],[117,232,73,-0.7687324373379658],[117,232,74,-0.7683794163976028],[117,232,75,-0.7680287049810877],[117,232,76,-0.7676803086088255],[117,232,77,-0.7673342327101088],[117,232,78,-0.7669904826227019],[117,232,79,-0.7666490635924198],[117,233,64,-0.7721766669288548],[117,233,65,-0.7718029757718721],[117,233,66,-0.7714315393566085],[117,233,67,-0.7710623640058167],[117,233,68,-0.7706954559549766],[117,233,69,-0.7703308213518798],[117,233,70,-0.7699684662562035],[117,233,71,-0.7696083966390852],[117,233,72,-0.7692506183826985],[117,233,73,-0.7688951372798408],[117,233,74,-0.7685419590334968],[117,233,75,-0.7681910892564272],[117,233,76,-0.7678425334707489],[117,233,77,-0.7674962971075145],[117,233,78,-0.7671523855062958],[117,233,79,-0.766810803914763],[117,234,64,-0.7723408669545254],[117,234,65,-0.7719670294272525],[117,234,66,-0.771595445569264],[117,234,67,-0.7712261217045813],[117,234,68,-0.770859064069999],[117,234,69,-0.7704942788146711],[117,234,70,-0.7701317719996821],[117,234,71,-0.7697715495976244],[117,234,72,-0.7694136174921733],[117,234,73,-0.7690579814776751],[117,234,74,-0.76870464725871],[117,234,75,-0.7683536204496827],[117,234,76,-0.7680049065744006],[117,234,77,-0.7676585110656552],[117,234,78,-0.7673144392648049],[117,234,79,-0.7669726964213547],[117,235,64,-0.772505198670647],[117,235,65,-0.7721312161501651],[117,235,66,-0.7717594862219661],[117,235,67,-0.7713900152113176],[117,235,68,-0.7710228093563063],[117,235,69,-0.7706578748074251],[117,235,70,-0.770295217627144],[117,235,71,-0.7699348437894883],[117,235,72,-0.7695767591796127],[117,235,73,-0.7692209695933903],[117,235,74,-0.7688674807369758],[117,235,75,-0.7685162982263957],[117,235,76,-0.7681674275871274],[117,235,77,-0.7678208742536798],[117,235,78,-0.7674766435691778],[117,235,79,-0.7671347407849398],[117,236,64,-0.7726696617216315],[117,236,65,-0.7722955355868502],[117,236,66,-0.7719236609627809],[117,236,67,-0.7715540441759144],[117,236,68,-0.7711866914656074],[117,236,69,-0.7708216089836681],[117,236,70,-0.7704588027939306],[117,236,71,-0.7700982788718299],[117,236,72,-0.7697400431039784],[117,236,73,-0.7693841012877545],[117,236,74,-0.7690304591308653],[117,236,75,-0.768679122250938],[117,236,76,-0.7683300961750985],[117,236,77,-0.7679833863395524],[117,236,78,-0.7676389980891694],[117,236,79,-0.767296936677062],[117,237,64,-0.772834255750837],[117,237,65,-0.7724599873824849],[117,237,66,-0.7720879694387028],[117,237,67,-0.7717182082471812],[117,237,68,-0.7713507100485231],[117,237,69,-0.7709854809958308],[117,237,70,-0.7706225271542784],[117,237,71,-0.7702618545006894],[117,237,72,-0.7699034689231118],[117,237,73,-0.7695473762204069],[117,237,74,-0.7691935821018131],[117,237,75,-0.7688420921865364],[117,237,76,-0.7684929120033301],[117,237,77,-0.7681460469900755],[117,237,78,-0.7678015024933661],[117,237,79,-0.7674592837680877],[117,238,64,-0.7729989804005355],[117,238,65,-0.7726245711811534],[117,238,66,-0.7722524112956246],[117,238,67,-0.7718825070728164],[117,238,68,-0.7715148647545556],[117,238,69,-0.7711494904952153],[117,238,70,-0.7707863903612883],[117,238,71,-0.7704255703309633],[117,238,72,-0.7700670362937017],[117,238,73,-0.7697107940498263],[117,238,74,-0.7693568493100849],[117,238,75,-0.7690052076952408],[117,238,76,-0.7686558747356536],[117,238,77,-0.7683088558708586],[117,238,78,-0.7679641564491532],[117,238,79,-0.7676217817271751],[117,239,64,-0.7731638353119761],[117,239,65,-0.7727892866259068],[117,239,66,-0.7724169861783976],[117,239,67,-0.7720469402994692],[117,239,68,-0.771679155232149],[117,239,69,-0.7713136371320588],[117,239,70,-0.7709503920669866],[117,239,71,-0.7705894260164649],[117,239,72,-0.7702307448713461],[117,239,73,-0.7698743544333927],[117,239,74,-0.7695202604148396],[117,239,75,-0.7691684684379865],[117,239,76,-0.7688189840347772],[117,239,77,-0.7684718126463811],[117,239,78,-0.7681269596227773],[117,239,79,-0.7677844302223354],[117,240,64,-0.7733288201253616],[117,240,65,-0.7729541333587426],[117,240,66,-0.7725816937308109],[117,240,67,-0.7722115075727176],[117,240,68,-0.7718435811286684],[117,240,69,-0.77147792055551],[117,240,70,-0.7711145319223041],[117,240,71,-0.7707534212099038],[117,240,72,-0.7703945943105308],[117,240,73,-0.7700380570273648],[117,240,74,-0.7696838150741069],[117,240,75,-0.7693318740745712],[117,240,76,-0.7689822395622645],[117,240,77,-0.7686349169799686],[117,240,78,-0.768289911679324],[117,240,79,-0.7679472289204112],[117,241,64,-0.7734939344798278],[117,241,65,-0.773119111020582],[117,241,66,-0.7727465335955687],[117,241,67,-0.7723762085370468],[117,241,68,-0.7720081420903768],[117,241,69,-0.771642340413608],[117,241,70,-0.7712788095770524],[117,241,71,-0.7709175555628622],[117,241,72,-0.7705585842646061],[117,241,73,-0.7702019014868587],[117,241,74,-0.7698475129447655],[117,241,75,-0.7694954242636332],[117,241,76,-0.7691456409785109],[117,241,77,-0.7687981685337711],[117,241,78,-0.7684530122826951],[117,241,79,-0.7681101774870529],[117,242,64,-0.7736591780135037],[117,242,65,-0.773284219251331],[117,242,66,-0.772911505414352],[117,242,67,-0.7725410428359101],[117,242,68,-0.7721728377624972],[117,242,69,-0.7718068963533431],[117,242,70,-0.7714432246799873],[117,242,71,-0.7710818287258582],[117,242,72,-0.7707227143858494],[117,242,73,-0.770365887465909],[117,242,74,-0.7700113536826043],[117,242,75,-0.7696591186627137],[117,242,76,-0.7693091879428067],[117,242,77,-0.7689615669688254],[117,242,78,-0.7686162610956708],[117,242,79,-0.7682732755867823],[117,243,64,-0.7738245503634814],[117,243,65,-0.7734494576898501],[117,243,66,-0.7730766088277876],[117,243,67,-0.7727060101116977],[117,243,68,-0.7723376677891817],[117,243,69,-0.7719715880206258],[117,243,70,-0.7716077768787755],[117,243,71,-0.7712462403483127],[117,243,72,-0.7708869843254332],[117,243,73,-0.7705300146174369],[117,243,74,-0.7701753369422912],[117,243,75,-0.7698229569282242],[117,243,76,-0.7694728801133044],[117,243,77,-0.7691251119450228],[117,243,78,-0.7687796577798783],[117,243,79,-0.768436522882959],[117,244,64,-0.77399005116584],[117,244,65,-0.7736148259739786],[117,244,66,-0.7732418434754719],[117,244,67,-0.7728711100057617],[117,244,68,-0.7725026318135348],[117,244,69,-0.7721364150603118],[117,244,70,-0.7717724658200206],[117,244,71,-0.7714107900785746],[117,244,72,-0.77105139373345],[117,244,73,-0.7706942825932754],[117,244,74,-0.7703394623773975],[117,244,75,-0.7699869387154715],[117,244,76,-0.7696367171470441],[117,244,77,-0.7692888031211332],[117,244,78,-0.7689432019958156],[117,244,79,-0.7685999190378066],[117,245,64,-0.7741556800556141],[117,245,65,-0.7737803237405022],[117,245,66,-0.7734072089959402],[117,245,67,-0.7730363421583838],[117,245,68,-0.772667729477583],[117,245,69,-0.7723013771161693],[117,245,70,-0.7719372911492308],[117,245,71,-0.7715754775638898],[117,245,72,-0.77121594225888],[117,245,73,-0.7708586910441377],[117,245,74,-0.7705037296403657],[117,245,75,-0.7701510636786258],[117,245,76,-0.7698006986999206],[117,245,77,-0.7694526401547743],[117,245,78,-0.7691068934028197],[117,245,79,-0.7687634637123789],[117,246,64,-0.774321436666856],[117,246,65,-0.7739459506252162],[117,246,66,-0.7735727050267278],[117,246,67,-0.7732017062088378],[117,246,68,-0.7728329604223358],[117,246,69,-0.7724664738309418],[117,246,70,-0.7721022525108809],[117,246,71,-0.7717403024504617],[117,246,72,-0.7713806295496537],[117,246,73,-0.7710232396196781],[117,246,74,-0.7706681383825723],[117,246,75,-0.7703153314707829],[117,246,76,-0.7699648244267467],[117,246,77,-0.7696166227024728],[117,246,78,-0.7692707316591293],[117,246,79,-0.7689271565666239],[117,247,64,-0.7744873206326134],[117,247,65,-0.774111706262902],[117,247,66,-0.7737383312043482],[117,247,67,-0.7733672017953669],[117,247,68,-0.772998324287764],[117,247,69,-0.7726317048463252],[117,247,70,-0.7722673495483897],[117,247,71,-0.7719052643834301],[117,247,72,-0.771545455252629],[117,247,73,-0.7711879279684705],[117,247,74,-0.7708326882543048],[117,247,75,-0.7704797417439412],[117,247,76,-0.7701290939812295],[117,247,77,-0.7697807504196422],[117,247,78,-0.7694347164218616],[117,247,79,-0.7690909972593599],[117,248,64,-0.7746533315849069],[117,248,65,-0.7742775902873058],[117,248,66,-0.7739040871642712],[117,248,67,-0.7735328285551619],[117,248,68,-0.7731638207127776],[117,248,69,-0.772797069802946],[117,248,70,-0.7724325819040984],[117,248,71,-0.7720703630068482],[117,248,72,-0.7717104190135692],[117,248,73,-0.7713527557379858],[117,248,74,-0.7709973789047394],[117,248,75,-0.77064429414898],[117,248,76,-0.7702935070159488],[117,248,77,-0.7699450229605604],[117,248,78,-0.7695988473469899],[117,248,79,-0.7692549854482537],[117,249,64,-0.774819469154792],[117,249,65,-0.7744436023312002],[117,249,66,-0.7740699725409836],[117,249,67,-0.7736985861244225],[117,249,68,-0.7733294493352865],[117,249,69,-0.7729625683404229],[117,249,70,-0.7725979492193316],[117,249,71,-0.7722355979637449],[117,249,72,-0.7718755204772046],[117,249,73,-0.7715177225746541],[117,249,74,-0.771162209982003],[117,249,75,-0.7708089883357208],[117,249,76,-0.7704580631824185],[117,249,77,-0.7701094399784314],[117,249,78,-0.7697631240894061],[117,249,79,-0.7694191207898818],[117,250,64,-0.7749857329723373],[117,250,65,-0.7746097420263616],[117,250,66,-0.7742359869679684],[117,250,67,-0.7738644741383356],[117,250,68,-0.7734952097921798],[117,250,69,-0.7731282000973444],[117,250,70,-0.7727634511343757],[117,250,71,-0.7724009688961018],[117,250,72,-0.7720407592872105],[117,250,73,-0.7716828281238413],[117,250,74,-0.7713271811331507],[117,250,75,-0.7709738239529055],[117,250,76,-0.7706227621310647],[117,250,77,-0.770274001125363],[117,250,78,-0.7699275463028974],[117,250,79,-0.7695834029397092],[117,251,64,-0.7751521226666016],[117,251,65,-0.7747760090035484],[117,251,66,-0.7744021300776814],[117,251,67,-0.7740304922310526],[117,251,68,-0.7736611017193022],[117,251,69,-0.773293964711247],[117,251,70,-0.7729290872884564],[117,251,71,-0.7725664754448317],[117,251,72,-0.7722061350861844],[117,251,73,-0.7718480720298281],[117,251,74,-0.7714922920041436],[117,251,75,-0.7711388006481732],[117,251,76,-0.7707876035112028],[117,251,77,-0.7704387060523445],[117,251,78,-0.7700921136401245],[117,251,79,-0.7697478315520652],[117,252,64,-0.7753186378656961],[117,252,65,-0.7749424028925629],[117,252,66,-0.7745684015016138],[117,252,67,-0.7741966400357516],[117,252,68,-0.7738271247515166],[117,252,69,-0.7734598618186763],[117,252,70,-0.7730948573198001],[117,252,71,-0.77273211724984],[117,252,72,-0.7723716475157085],[117,252,73,-0.7720134539358707],[117,252,74,-0.7716575422399103],[117,252,75,-0.7713039180681229],[117,252,76,-0.7709525869710994],[117,252,77,-0.7706035544093082],[117,252,78,-0.7702568257526832],[117,252,79,-0.7699124062802067],[117,253,64,-0.7754852781967531],[117,253,65,-0.7751089233222193],[117,253,66,-0.77473480087026],[117,253,67,-0.7743629171846053],[117,253,68,-0.7739932785226724],[117,253,69,-0.7736258910551559],[117,253,70,-0.7732607608656028],[117,253,71,-0.7728978939499929],[117,253,72,-0.7725372962163172],[117,253,73,-0.7721789734841701],[117,253,74,-0.7718229314843155],[117,253,75,-0.7714691758582813],[117,253,76,-0.7711177121579409],[117,253,77,-0.7707685458450978],[117,253,78,-0.7704216822910726],[117,253,79,-0.7700771267762859],[117,254,64,-0.7756520432859496],[117,254,65,-0.7752755699203683],[117,254,66,-0.7749013278131424],[117,254,67,-0.7745293233088058],[117,254,68,-0.7741595626656292],[117,254,69,-0.7737920520552117],[117,254,70,-0.7734267975620543],[117,254,71,-0.773063805183142],[117,254,72,-0.7727030808275217],[117,254,73,-0.7723446303158952],[117,254,74,-0.7719884593801845],[117,254,75,-0.7716345736631268],[117,254,76,-0.7712829787178574],[117,254,77,-0.7709336800074928],[117,254,78,-0.770586682904719],[117,254,79,-0.7702419926913743],[117,255,64,-0.7758189327584768],[117,255,65,-0.7754423423138657],[117,255,66,-0.7750679819587797],[117,255,67,-0.7746958580385327],[117,255,68,-0.7743259768122264],[117,255,69,-0.7739583444523399],[117,255,70,-0.7735929670443062],[117,255,71,-0.7732298505860924],[117,255,72,-0.7728690009877791],[117,255,73,-0.7725104240711522],[117,255,74,-0.7721541255692703],[117,255,75,-0.7718001111260584],[117,255,76,-0.771448386295891],[117,255,77,-0.7710989565431766],[117,255,78,-0.770751827241945],[117,255,79,-0.7704070036754309],[117,256,64,-0.775985946238601],[117,256,65,-0.7756092401286339],[117,256,66,-0.7752347629347486],[117,256,67,-0.7748625210030157],[117,256,68,-0.7744925205933437],[117,256,69,-0.7741247678790693],[117,256,70,-0.7737592689465341],[117,256,71,-0.7733960297946649],[117,256,72,-0.7730350563345527],[117,256,73,-0.772676354389046],[117,256,74,-0.7723199296923171],[117,256,75,-0.7719657878894569],[117,256,76,-0.7716139345360576],[117,256,77,-0.7712643750977981],[117,256,78,-0.7709171149500305],[117,256,79,-0.7705721593773647],[117,257,64,-0.7761530833496415],[117,257,65,-0.7757762629896395],[117,257,66,-0.7754016703676616],[117,257,67,-0.7750293118305107],[117,257,68,-0.7746591936388793],[117,257,69,-0.7742913219669385],[117,257,70,-0.7739257029019151],[117,257,71,-0.7735623424436728],[117,257,72,-0.7732012465042909],[117,257,73,-0.7728424209076575],[117,257,74,-0.7724858713890368],[117,257,75,-0.772131603594663],[117,257,76,-0.7717796230813251],[117,257,77,-0.7714299353159496],[117,257,78,-0.7710825456751903],[117,257,79,-0.770737459445011],[117,258,64,-0.7763203437139488],[117,258,65,-0.7759434105208719],[117,258,66,-0.7755687038831445],[117,258,67,-0.7751962301482791],[117,258,68,-0.774825995577728],[117,258,69,-0.7744580063464737],[117,258,70,-0.7740922685426055],[117,258,71,-0.7737287881669006],[117,258,72,-0.7733675711324042],[117,258,73,-0.7730086232640215],[117,258,74,-0.7726519502980862],[117,258,75,-0.7722975578819546],[117,258,76,-0.7719454515735892],[117,258,77,-0.7715956368411439],[117,258,78,-0.771248119062552],[117,258,79,-0.77090290352511],[117,259,64,-0.7764877269529659],[117,259,65,-0.7761106823454038],[117,259,66,-0.7757358631058986],[117,259,67,-0.7753632755826484],[117,259,68,-0.7749929260378423],[117,259,69,-0.7746248206472506],[117,259,70,-0.774258965499802],[117,259,71,-0.7738953665971647],[117,259,72,-0.7735340298533268],[117,259,73,-0.7731749610941883],[117,259,74,-0.7728181660571303],[117,259,75,-0.7724636503906082],[117,259,76,-0.7721114196537373],[117,259,77,-0.7717614793158764],[117,259,78,-0.7714138347562172],[117,259,79,-0.7710684912633681],[117,260,64,-0.7766552326871967],[117,260,65,-0.7762780780853602],[117,260,66,-0.7759031476596683],[117,260,67,-0.7755304477589812],[117,260,68,-0.7751599846462008],[117,260,69,-0.7747917644978624],[117,260,70,-0.7744257934037109],[117,260,71,-0.7740620773662825],[117,260,72,-0.7737006223004854],[117,260,73,-0.7733414340331921],[117,260,74,-0.7729845183028083],[117,260,75,-0.7726298807588676],[117,260,76,-0.772277526961615],[117,260,77,-0.7719274623815932],[117,260,78,-0.7715796923992304],[117,260,79,-0.7712342223044254],[117,261,64,-0.7768228605362306],[117,261,65,-0.776445597361943],[117,261,66,-0.7760705571672663],[117,261,67,-0.7756977463016991],[117,261,68,-0.7753271710288331],[117,261,69,-0.7749588375259446],[117,261,70,-0.7745927518835718],[117,261,71,-0.7742289201050963],[117,261,72,-0.7738673481063232],[117,261,73,-0.7735080417150753],[117,261,74,-0.7731510066707608],[117,261,75,-0.7727962486239681],[117,261,76,-0.7724437731360516],[117,261,77,-0.7720935856787151],[117,261,78,-0.7717456916336025],[117,261,79,-0.7714000962918814],[117,262,64,-0.7769906101187107],[117,262,65,-0.7766132397953986],[117,262,66,-0.7762380912505412],[117,262,67,-0.7758651708342513],[117,262,68,-0.7754944848107872],[117,262,69,-0.7751260393581427],[117,262,70,-0.774759840567626],[117,262,71,-0.7743958944434411],[117,262,72,-0.7740342069022679],[117,262,73,-0.7736747837728561],[117,262,74,-0.7733176307955943],[117,262,75,-0.7729627536221045],[117,262,76,-0.7726101578148269],[117,262,77,-0.772259848846606],[117,262,78,-0.7719118321002791],[117,262,79,-0.7715661128682616],[117,263,64,-0.7771584810523955],[117,263,65,-0.7767810050050805],[117,263,66,-0.7764057495304397],[117,263,67,-0.7760327209791766],[117,263,68,-0.7756619256161918],[117,263,69,-0.7752933696201741],[117,263,70,-0.7749270590831784],[117,263,71,-0.7745630000102076],[117,263,72,-0.7742011983187937],[117,263,73,-0.7738416598385913],[117,263,74,-0.7734843903109465],[117,263,75,-0.7731293953884927],[117,263,76,-0.7727766806347345],[117,263,77,-0.7724262515236345],[117,263,78,-0.7720781134392027],[117,263,79,-0.7717322716750801],[117,264,64,-0.7773264729541365],[117,264,65,-0.7769488926094265],[117,264,66,-0.7765735316269842],[117,264,67,-0.7762003963580802],[117,264,68,-0.7758294930682343],[117,264,69,-0.7754608279368063],[117,264,70,-0.7750944070565745],[117,264,71,-0.7747302364333185],[117,264,72,-0.774368321985399],[117,264,73,-0.774008669543353],[117,264,74,-0.7736512848494619],[117,264,75,-0.7732961735573476],[117,264,76,-0.772943341231558],[117,264,77,-0.7725927933471517],[117,264,78,-0.7722445352892893],[117,264,79,-0.771898572352817],[117,265,64,-0.7774945854398562],[117,265,65,-0.7771169022259359],[117,265,66,-0.7767414371592499],[117,265,67,-0.776368196591612],[117,265,68,-0.7759971867891373],[117,265,69,-0.7756284139318332],[117,265,70,-0.7752618841131789],[117,265,71,-0.7748976033397065],[117,265,72,-0.7745355775305836],[117,265,73,-0.7741758125172061],[117,265,74,-0.7738183140427688],[117,265,75,-0.7734630877618603],[117,265,76,-0.7731101392400488],[117,265,77,-0.7727594739534678],[117,265,78,-0.7724110972884066],[117,265,79,-0.7720650145408954],[117,266,64,-0.7776628181246095],[117,266,65,-0.7772850334712322],[117,266,66,-0.7769094657454273],[117,266,67,-0.7765361212995281],[117,266,68,-0.7761650064002211],[117,266,69,-0.7757961272281384],[117,266,70,-0.7754294898774359],[117,266,71,-0.7750651003553763],[117,266,72,-0.7747029645819101],[117,266,73,-0.7743430883892708],[117,266,74,-0.773985477521543],[117,266,75,-0.77363013763426],[117,266,76,-0.7732770742939883],[117,266,77,-0.7729262929779147],[117,266,78,-0.7725777990734356],[117,266,79,-0.7722315978777431],[117,267,64,-0.7778311706225519],[117,267,65,-0.7774532859610305],[117,267,66,-0.7770776170027899],[117,267,67,-0.7767041701006587],[117,267,68,-0.7763329515218718],[117,267,69,-0.7759639674476618],[117,267,70,-0.7755972239728388],[117,267,71,-0.7752327271053723],[117,267,72,-0.7748704827659735],[117,267,73,-0.7745104967876897],[117,267,74,-0.7741527749154741],[117,267,75,-0.7737973228057817],[117,267,76,-0.7734441460261559],[117,267,77,-0.773093250054814],[117,267,78,-0.7727446402802381],[117,267,79,-0.7723983220007614],[117,268,64,-0.7779996425469642],[117,268,65,-0.7776216593101624],[117,268,66,-0.7772458905477185],[117,268,67,-0.7768723426129333],[117,268,68,-0.7765010217735655],[117,268,69,-0.7761319342114253],[117,268,70,-0.7757650860219534],[117,268,71,-0.7754004832138032],[117,268,72,-0.7750381317084234],[117,268,73,-0.7746780373396531],[117,268,74,-0.7743202058532906],[117,268,75,-0.7739646429066913],[117,268,76,-0.7736113540683524],[117,268,77,-0.7732603448175005],[117,268,78,-0.772911620543682],[117,268,79,-0.7725651865463488],[117,269,64,-0.7781682335102206],[117,269,65,-0.7777901531325436],[117,269,66,-0.7774142859956701],[117,269,67,-0.7770406384533478],[117,269,68,-0.7766692167738365],[117,269,69,-0.7763000271395001],[117,269,70,-0.7759330756463865],[117,269,71,-0.7755683683038098],[117,269,72,-0.7752059110339338],[117,269,73,-0.774845709671366],[117,269,74,-0.774487769962728],[117,269,75,-0.7741320975662522],[117,269,76,-0.7737786980513688],[117,269,77,-0.7734275768982909],[117,269,78,-0.7730787394976075],[117,269,79,-0.7727321911498682],[117,270,64,-0.77833694312385],[117,270,65,-0.7779587670412368],[117,270,66,-0.7775828029612386],[117,270,67,-0.7772090572380271],[117,270,68,-0.776837536140339],[117,270,69,-0.7764682458510686],[117,270,70,-0.7761011924668474],[117,270,71,-0.7757363819976275],[117,270,72,-0.7753738203662641],[117,270,73,-0.775013513408111],[117,270,74,-0.7746554668705901],[117,270,75,-0.7742996864127891],[117,270,76,-0.7739461776050479],[117,270,77,-0.7735949459285456],[117,270,78,-0.7732459967748911],[117,270,79,-0.7728993354457105],[117,271,64,-0.7785057709985144],[117,271,65,-0.7781275006484276],[117,271,66,-0.7777514410581332],[117,271,67,-0.7773775985822023],[117,271,68,-0.777005979489825],[117,271,69,-0.7766365899644021],[117,271,70,-0.7762694361031257],[117,271,71,-0.7759045239165626],[117,271,72,-0.7755418593282366],[117,271,73,-0.7751814481742247],[117,271,74,-0.7748232962027267],[117,271,75,-0.7744674090736633],[117,271,76,-0.7741137923582622],[117,271,77,-0.7737624515386454],[117,271,78,-0.7734133920074213],[117,271,79,-0.7730666190672704],[117,272,64,-0.7786747167439857],[117,272,65,-0.7782963535654035],[117,272,66,-0.7779201998991553],[117,272,67,-0.7775462621001881],[117,272,68,-0.7771745464381209],[117,272,69,-0.7768050590968381],[117,272,70,-0.7764378061740687],[117,272,71,-0.7760727936809707],[117,272,72,-0.7757100275417141],[117,272,73,-0.7753495135930758],[117,272,74,-0.7749912575840112],[117,272,75,-0.7746352651752514],[117,272,76,-0.7742815419388897],[117,272,77,-0.7739300933579696],[117,272,78,-0.7735809248260765],[117,272,79,-0.7732340416469237],[117,273,64,-0.7788437799692077],[117,273,65,-0.778465325402615],[117,273,66,-0.7780890790962609],[117,273,67,-0.7777150474054444],[117,273,68,-0.7773432366001903],[117,273,69,-0.7769736528648421],[117,273,70,-0.7766063022976427],[117,273,71,-0.7762411909103182],[117,273,72,-0.7758783246276613],[117,273,73,-0.7755177092871266],[117,273,74,-0.775159350638402],[117,273,75,-0.7748032543430067],[117,273,76,-0.7744494259738776],[117,273,77,-0.7740978710149575],[117,273,78,-0.7737485948607867],[117,273,79,-0.7734016028160903],[117,274,64,-0.7790129602822647],[117,274,65,-0.7786344157696435],[117,274,66,-0.7782580782605282],[117,274,67,-0.7778839541105452],[117,274,68,-0.7775120495901012],[117,274,69,-0.7771423708839758],[117,274,70,-0.7767749240909017],[117,274,71,-0.77640971522315],[117,274,72,-0.7760467502061132],[117,274,73,-0.7756860348779008],[117,274,74,-0.7753275749889106],[117,274,75,-0.7749713762014272],[117,274,76,-0.7746174440892089],[117,274,77,-0.7742657841370757],[117,274,78,-0.7739164017405016],[117,274,79,-0.7735693022052011],[117,275,64,-0.7791822572904049],[117,275,65,-0.7788036242752262],[117,275,66,-0.7784271970021818],[117,275,67,-0.778052981827202],[117,275,68,-0.7776809850210511],[117,275,69,-0.7773112127689208],[117,275,70,-0.7769436711700111],[117,275,71,-0.7765783662371144],[117,275,72,-0.7762153038961997],[117,275,73,-0.7758544899860084],[117,275,74,-0.7754959302576259],[117,275,75,-0.7751396303740797],[117,275,76,-0.7747855959099272],[117,275,77,-0.7744338323508437],[117,275,78,-0.7740843450932146],[117,275,79,-0.7737371394437227],[117,276,64,-0.7793516706000094],[117,276,65,-0.7789729505272238],[117,276,66,-0.7785964349305614],[117,276,67,-0.7782221301662321],[117,276,68,-0.7778500425053341],[117,276,69,-0.7774801781334477],[117,276,70,-0.7771125431502162],[117,276,71,-0.7767471435689302],[117,276,72,-0.7763839853161123],[117,276,73,-0.7760230742311129],[117,276,74,-0.7756644160656819],[117,276,75,-0.7753080164835678],[117,276,76,-0.7749538810601045],[117,276,77,-0.7746020152818004],[117,276,78,-0.7742524245459305],[117,276,79,-0.7739051141601243],[117,277,64,-0.7795211998166534],[117,277,65,-0.7791423941326825],[117,277,66,-0.7787657916541832],[117,277,67,-0.7783913987376209],[117,277,68,-0.7780192216544037],[117,277,69,-0.7776492665904771],[117,277,70,-0.7772815396459036],[117,277,71,-0.7769160468344495],[117,277,72,-0.7765527940831672],[117,277,73,-0.7761917872319936],[117,277,74,-0.7758330320333202],[117,277,75,-0.7754765341515939],[117,277,76,-0.7751222991629029],[117,277,77,-0.7747703325545665],[117,277,78,-0.7744206397247279],[117,277,79,-0.7740732259819412],[117,278,64,-0.7796908445450836],[117,278,65,-0.7793119546978111],[117,278,66,-0.778935266780717],[117,278,67,-0.7785607871504985],[117,278,68,-0.7781885220788496],[117,278,69,-0.7778184777520568],[117,278,70,-0.7774506602705792],[117,278,71,-0.7770850756486343],[117,278,72,-0.7767217298137823],[117,278,73,-0.7763606286065227],[117,278,74,-0.7760017777798667],[117,278,75,-0.7756451829989364],[117,278,76,-0.7752908498405521],[117,278,77,-0.7749387837928224],[117,278,78,-0.7745889902547359],[117,278,79,-0.7742414745357503],[117,279,64,-0.7798606043891968],[117,279,65,-0.7794816318279589],[117,279,66,-0.7791048599169645],[117,279,67,-0.7787302950131176],[117,279,68,-0.7783579433883749],[117,279,69,-0.7779878112293399],[117,279,70,-0.7776199046368444],[117,279,71,-0.7772542296255343],[117,279,72,-0.7768907921234537],[117,279,73,-0.7765295979716424],[117,279,74,-0.7761706529237082],[117,279,75,-0.7758139626454261],[117,279,76,-0.7754595327143264],[117,279,77,-0.775107368619284],[117,279,78,-0.7747574757601116],[117,279,79,-0.7744098594471484],[117,280,64,-0.7800304789520996],[117,280,65,-0.7796514251276772],[117,280,66,-0.77927457066892],[117,280,67,-0.7788999219329156],[117,280,68,-0.7785274851918584],[117,280,69,-0.778157266632646],[117,280,70,-0.777789272356459],[117,280,71,-0.7774235083783482],[117,280,72,-0.7770599806268187],[117,280,73,-0.7766986949434276],[117,280,74,-0.7763396570823562],[117,280,75,-0.77598287271001],[117,280,76,-0.7756283474046065],[117,280,77,-0.7752760866557655],[117,280,78,-0.7749260958641017],[117,280,79,-0.7745783803408135],[117,281,64,-0.7802004678360785],[117,281,65,-0.7798213342006871],[117,281,66,-0.7794443986417392],[117,281,67,-0.7790696675164814],[117,281,68,-0.7786971470973225],[117,281,69,-0.7783268435714294],[117,281,70,-0.7779587630403085],[117,281,71,-0.7775929115193921],[117,281,72,-0.7772292949376232],[117,281,73,-0.7768679191370526],[117,281,74,-0.7765087898724128],[117,281,75,-0.776151912810717],[117,281,76,-0.7757972935308479],[117,281,77,-0.7754449375231474],[117,281,78,-0.7750948501890103],[117,281,79,-0.7747470368404732],[117,282,64,-0.7803705706426227],[117,282,65,-0.7799913586499041],[117,282,66,-0.7796143434397632],[117,282,67,-0.779239531369581],[117,282,68,-0.778866928711957],[117,282,69,-0.7784965416543035],[117,282,70,-0.778128376298429],[117,282,71,-0.7777624386601238],[117,282,72,-0.7773987346687454],[117,282,73,-0.7770372701668158],[117,282,74,-0.7766780509095959],[117,282,75,-0.7763210825646835],[117,282,76,-0.7759663707116041],[117,282,77,-0.7756139208413999],[117,282,78,-0.7752637383562236],[117,282,79,-0.7749158285689279],[117,283,64,-0.7805407869723932],[117,283,65,-0.7801614980774063],[117,283,66,-0.7797844046664865],[117,283,67,-0.779409513097125],[117,283,68,-0.7790368296420873],[117,283,69,-0.7786663604890081],[117,283,70,-0.778298111739974],[117,283,71,-0.7779320894111099],[117,283,72,-0.7775682994321644],[117,283,73,-0.7772067476461082],[117,283,74,-0.7768474398087065],[117,283,75,-0.7764903815881204],[117,283,76,-0.7761355785644953],[117,283,77,-0.7757830362295512],[117,283,78,-0.7754327599861768],[117,283,79,-0.7750847551480192],[117,284,64,-0.7807111164252835],[117,284,65,-0.7803317520844957],[117,284,66,-0.7799545819246185],[117,284,67,-0.7795796123032297],[117,284,68,-0.7792068494932365],[117,284,69,-0.778836299682472],[117,284,70,-0.7784679689732773],[117,284,71,-0.7781018633820885],[117,284,72,-0.7777379888390223],[117,284,73,-0.777376351187474],[117,284,74,-0.7770169561836915],[117,284,75,-0.7766598094963758],[117,284,76,-0.7763049167062698],[117,284,77,-0.7759522833057493],[117,284,78,-0.7756019146984168],[117,284,79,-0.7752538161986918],[117,285,64,-0.7808815586003979],[117,285,65,-0.7805021202716758],[117,285,66,-0.7801248748160616],[117,285,67,-0.7797498285911953],[117,285,68,-0.7793769878701022],[117,285,69,-0.7790063588407897],[117,285,70,-0.7786379476058298],[117,285,71,-0.7782717601819461],[117,285,72,-0.7779078024996],[117,285,73,-0.7775460804025888],[117,285,74,-0.7771865996476199],[117,285,75,-0.7768293659039114],[117,285,76,-0.7764743847527813],[117,285,77,-0.776121661687239],[117,285,78,-0.7757712021115788],[117,285,79,-0.7754230113409706],[117,286,64,-0.7810521130960286],[117,286,65,-0.7806726022386286],[117,286,66,-0.7802952829418877],[117,286,67,-0.779920161563483],[117,286,68,-0.7795472443765344],[117,286,69,-0.7791765375691992],[117,286,70,-0.7788080472442567],[117,286,71,-0.7784417794186946],[117,286,72,-0.7780777400232958],[117,286,73,-0.7777159349022363],[117,286,74,-0.7773563698126601],[117,286,75,-0.7769990504242797],[117,286,76,-0.7766439823189659],[117,286,77,-0.776291170990339],[117,286,78,-0.7759406218433631],[117,286,79,-0.7755923401939371],[117,287,64,-0.781222779509717],[117,287,65,-0.7808431975842769],[117,287,66,-0.7804658059023999],[117,287,67,-0.7800906108217767],[117,287,68,-0.7797176186155963],[117,287,69,-0.7793468354721429],[117,287,70,-0.7789782674943793],[117,287,71,-0.7786119206995336],[117,287,72,-0.7782478010186866],[117,287,73,-0.7778859142963703],[117,287,74,-0.7775262662901422],[117,287,75,-0.7771688626701865],[117,287,76,-0.776813709018904],[117,287,77,-0.776460810830504],[117,287,78,-0.7761101735105982],[117,287,79,-0.7757618023757921],[117,288,64,-0.7813935574382315],[117,288,65,-0.7810139059067615],[117,288,66,-0.7806364432971111],[117,288,67,-0.7802611759669599],[117,288,68,-0.7798881101895427],[117,288,69,-0.7795172521532461],[117,288,70,-0.7791486079611925],[117,288,71,-0.7787821836308272],[117,288,72,-0.7784179850935056],[117,288,73,-0.7780560181940922],[117,288,74,-0.7776962886905351],[117,288,75,-0.7773388022534674],[117,288,76,-0.7769835644657979],[117,288,77,-0.7766305808223017],[117,288,78,-0.7762798567292166],[117,288,79,-0.7759313975038327],[117,289,64,-0.7815644464775446],[117,289,65,-0.781184726803418],[117,289,66,-0.7808071947247197],[117,289,67,-0.7804318565990938],[117,289,68,-0.7800587186997964],[117,289,69,-0.779687787215293],[117,289,70,-0.7793190682488416],[117,289,71,-0.7789525678180812],[117,289,72,-0.7785882918546184],[117,289,73,-0.7782262462036271],[117,289,74,-0.7778664366234228],[117,289,75,-0.7775088687850652],[117,289,76,-0.7771535482719477],[117,289,77,-0.7768004805793899],[117,289,78,-0.7764496711142326],[117,289,79,-0.7761011251944286],[117,290,64,-0.7817354462228951],[117,290,65,-0.7813556598708393],[117,290,66,-0.7809780597831721],[117,290,67,-0.7806026523174779],[117,290,68,-0.7802294437470104],[117,290,69,-0.7798584402602893],[117,290,70,-0.7794896479606848],[117,290,71,-0.7791230728660055],[117,290,72,-0.7787587209080863],[117,290,73,-0.7783965979323868],[117,290,74,-0.7780367096975676],[117,290,75,-0.7776790618750915],[117,290,76,-0.7773236600488146],[117,290,77,-0.7769705097145778],[117,290,78,-0.7766196162798035],[117,290,79,-0.7762709850630851],[117,291,64,-0.7819065562687553],[117,291,65,-0.7815267047048428],[117,291,66,-0.7811490380696308],[117,291,67,-0.7807735627206196],[117,291,68,-0.7804002849310357],[117,291,69,-0.7800292108894297],[117,291,70,-0.7796603466992598],[117,291,71,-0.7792936983784811],[117,291,72,-0.7789292718591326],[117,291,73,-0.7785670729869372],[117,291,74,-0.7782071075208767],[117,291,75,-0.777849381132795],[117,291,76,-0.7774938994069877],[117,291,77,-0.777140667839795],[117,291,78,-0.7767896918391981],[117,291,79,-0.7764409767244096],[117,292,64,-0.7820777762088557],[117,292,65,-0.781697860900495],[117,292,66,-0.7813201291804981],[117,292,67,-0.7809445874062564],[117,292,68,-0.7805712418509455],[117,292,69,-0.7802000987031222],[117,292,70,-0.7798311640663094],[117,292,71,-0.7794644439585847],[117,292,72,-0.779099944312168],[117,292,73,-0.778737670973022],[117,292,74,-0.7783776297004273],[117,292,75,-0.778019826166585],[117,292,76,-0.7776642659562083],[117,292,77,-0.7773109545661142],[117,292,78,-0.7769598974048205],[117,292,79,-0.7766110997921369],[117,293,64,-0.7822491056361527],[117,293,65,-0.7818691280520794],[117,293,66,-0.781491332711384],[117,293,67,-0.7811157259713252],[117,293,68,-0.7807423141050026],[117,293,69,-0.7803711033009558],[117,293,70,-0.7800020996627482],[117,293,71,-0.7796353092085562],[117,293,72,-0.7792707378707575],[117,293,73,-0.778908391495531],[117,293,74,-0.7785482758424329],[117,293,75,-0.7781903965839992],[117,293,76,-0.7778347593053375],[117,293,77,-0.7774813695037195],[117,293,78,-0.7771302325881773],[117,293,79,-0.7767813538790952],[117,294,64,-0.7824205441428904],[117,294,65,-0.7820405057531581],[117,294,66,-0.7816626482571687],[117,294,67,-0.7812869780120232],[117,294,68,-0.7809135012907219],[117,294,69,-0.7805422242817623],[117,294,70,-0.7801731530887248],[117,294,71,-0.779806293729861],[117,294,72,-0.7794416521376826],[117,294,73,-0.7790792341585615],[117,294,74,-0.7787190455523065],[117,294,75,-0.7783610919917658],[117,294,76,-0.7780053790624186],[117,294,77,-0.7776519122619684],[117,294,78,-0.7773006969999396],[117,294,79,-0.7769517385972697],[117,295,64,-0.7825920913205778],[117,295,65,-0.782211993596549],[117,295,66,-0.7818340754119786],[117,295,67,-0.7814583431237858],[117,295,68,-0.781084803004847],[117,295,69,-0.7807134612435938],[117,295,70,-0.7803443239435992],[117,295,71,-0.7799773971231666],[117,295,72,-0.7796126867149182],[117,295,73,-0.7792501985653959],[117,295,74,-0.7788899384346375],[117,295,75,-0.7785319119957805],[117,295,76,-0.7781761248346533],[117,295,77,-0.7778225824493686],[117,295,78,-0.7774712902499211],[117,295,79,-0.7771222535577786],[117,296,64,-0.7827637467599662],[117,296,65,-0.782383591174303],[117,296,66,-0.7820056137691644],[117,296,67,-0.7816298209012633],[117,296,68,-0.7812562188433274],[117,296,69,-0.7808848137836987],[117,296,70,-0.7805156118259191],[117,296,71,-0.7801486189883198],[117,296,72,-0.77978384120361],[117,296,73,-0.7794212843184778],[117,296,74,-0.7790609540931677],[117,296,75,-0.7787028562010831],[117,296,76,-0.7783469962283789],[117,296,77,-0.777993379673555],[117,296,78,-0.7776420119470531],[117,296,79,-0.7772928983708502],[117,297,64,-0.7829355100511108],[117,297,65,-0.7825552980777661],[117,297,66,-0.7821772629213628],[117,297,67,-0.7818014109383826],[117,297,68,-0.7814277484013807],[117,297,69,-0.7810562814985853],[117,297,70,-0.7806870163334829],[117,297,71,-0.7803199589244089],[117,297,72,-0.7799551152041357],[117,297,73,-0.7795924910194751],[117,297,74,-0.7792320921308544],[117,297,75,-0.7788739242119201],[117,297,76,-0.778517992849131],[117,297,77,-0.7781643035413512],[117,297,78,-0.7778128616994481],[117,297,79,-0.7774636726458849],[117,298,64,-0.7831073807833384],[117,298,65,-0.7827271138975467],[117,298,66,-0.7823490224604637],[117,298,67,-0.7819731128283155],[117,298,68,-0.7815993912734602],[117,298,69,-0.7812278639839879],[117,298,70,-0.7808585370633062],[117,298,71,-0.7804914165297305],[117,298,72,-0.7801265083160737],[117,298,73,-0.7797638182692468],[117,298,74,-0.7794033521498371],[117,298,75,-0.7790451156317117],[117,298,76,-0.7786891143016101],[117,298,77,-0.7783353536587383],[117,298,78,-0.7779838391143665],[117,298,79,-0.7776345759914225],[117,299,64,-0.7832793585452716],[117,299,65,-0.7828990382235399],[117,299,66,-0.7825208919776349],[117,299,67,-0.7821449261635021],[117,299,68,-0.7817711470532787],[117,299,69,-0.781399560834892],[117,299,70,-0.7810301736116468],[117,299,71,-0.7806629914018153],[117,299,72,-0.7802980201382262],[117,299,73,-0.7799352656678673],[117,299,74,-0.7795747337514626],[117,299,75,-0.7792164300630763],[117,299,76,-0.7788603601897062],[117,299,77,-0.7785065296308774],[117,299,78,-0.7781549437982411],[117,299,79,-0.7778056080151668],[117,300,64,-0.7834514429247972],[117,300,65,-0.7830710706448959],[117,300,66,-0.7826928710632896],[117,300,67,-0.7823168505356193],[117,300,68,-0.7819430153337761],[117,300,69,-0.7815713716455012],[117,300,70,-0.7812019255739721],[117,300,71,-0.7808346831373936],[117,300,72,-0.7804696502685873],[117,300,73,-0.7801068328145939],[117,300,74,-0.7797462365362511],[117,300,75,-0.7793878671077974],[117,300,76,-0.7790317301164658],[117,300,77,-0.7786778310620781],[117,300,78,-0.7783261753566437],[117,300,79,-0.7779767683239525],[117,301,64,-0.7836236335091267],[117,301,65,-0.7832432107500805],[117,301,66,-0.7828649593071484],[117,301,67,-0.7824888855356419],[117,301,68,-0.7821149957071822],[117,301,69,-0.7817432960092996],[117,301,70,-0.7813737925450204],[117,301,71,-0.7810064913324586],[117,301,72,-0.7806413983044047],[117,301,73,-0.7802785193079291],[117,301,74,-0.7799178601039597],[117,301,75,-0.7795594263668864],[117,301,76,-0.7792032236841546],[117,301,77,-0.7788492575558603],[117,301,78,-0.7784975333943487],[117,301,79,-0.7781480565238073],[117,302,64,-0.7837959298847746],[117,302,65,-0.7834154581268533],[117,302,66,-0.783037156298216],[117,302,67,-0.7826610307538203],[117,302,68,-0.7822870877649927],[117,302,69,-0.7819153335190284],[117,302,70,-0.781545774118779],[117,302,71,-0.7811784155822431],[117,302,72,-0.7808132638421571],[117,302,73,-0.7804503247455972],[117,302,74,-0.7800896040535585],[117,302,75,-0.779731107440559],[117,302,76,-0.779374840494234],[117,302,77,-0.7790208087149311],[117,302,78,-0.7786690175153084],[117,302,79,-0.7783194722199291],[117,303,64,-0.7839683316375352],[117,303,65,-0.7835878123622446],[117,303,66,-0.7832094616247589],[117,303,67,-0.7828332857796572],[117,303,68,-0.7824592910979467],[117,303,69,-0.7820874837666636],[117,303,70,-0.7817178698884601],[117,303,71,-0.7813504554811964],[117,303,72,-0.7809852464775304],[117,303,73,-0.780622248724521],[117,303,74,-0.7802614679832072],[117,303,75,-0.779902909928212],[117,303,76,-0.7795465801473379],[117,303,77,-0.7791924841411608],[117,303,78,-0.7788406273226303],[117,303,79,-0.7784910150166626],[117,304,64,-0.7841408383525441],[117,304,65,-0.7837602730426168],[117,304,66,-0.7833818748743666],[117,304,67,-0.7830056502019691],[117,304,68,-0.7826316052960884],[117,304,69,-0.782259746343477],[117,304,70,-0.7818900794465639],[117,304,71,-0.7815226106230462],[117,304,72,-0.7811573458054804],[117,304,73,-0.7807942908408845],[117,304,74,-0.7804334514903178],[117,304,75,-0.7800748334284859],[117,304,76,-0.7797184422433348],[117,304,77,-0.7793642834356467],[117,304,78,-0.7790123624186395],[117,304,79,-0.7786626845175609],[117,305,64,-0.7843134496142459],[117,305,65,-0.7839328397536324],[117,305,66,-0.7835543956339195],[117,305,67,-0.7831781236088552],[117,305,68,-0.7828040299487351],[117,305,69,-0.7824321208400044],[117,305,70,-0.7820624023848444],[117,305,71,-0.781694880600766],[117,305,72,-0.7813295614201997],[117,305,73,-0.7809664506900995],[117,305,74,-0.780605554171522],[117,305,75,-0.7802468775392314],[117,305,76,-0.779890426381295],[117,305,77,-0.7795362061986786],[117,305,78,-0.7791842224048459],[117,305,79,-0.7788344803253535],[117,306,64,-0.7844861650064188],[117,306,65,-0.7841055120802778],[117,306,66,-0.7837270234896131],[117,306,67,-0.7833507055877196],[117,306,68,-0.7829765646445007],[117,306,69,-0.7826046068460693],[117,306,70,-0.7822348382943354],[117,306,71,-0.7818672650065993],[117,306,72,-0.7815018929151424],[117,306,73,-0.7811387278668307],[117,306,74,-0.7807777756226945],[117,306,75,-0.7804190418575343],[117,306,76,-0.7800625321595154],[117,306,77,-0.7797082520297642],[117,306,78,-0.7793562068819682],[117,306,79,-0.7790064020419704],[117,307,64,-0.7846589841121419],[117,307,65,-0.7842782896068318],[117,307,66,-0.7838997580269256],[117,307,67,-0.7835233957252408],[117,307,68,-0.7831492089712638],[117,307,69,-0.782777203950751],[117,307,70,-0.782407386765317],[117,307,71,-0.7820397634320275],[117,307,72,-0.7816743398829908],[117,307,73,-0.7813111219649618],[117,307,74,-0.7809501154389211],[117,307,75,-0.7805913259796823],[117,307,76,-0.7802347591754857],[117,307,77,-0.7798804205275958],[117,307,78,-0.7795283154499006],[117,307,79,-0.7791784492685081],[117,308,64,-0.7848319065138568],[117,308,65,-0.784451171916926],[117,308,66,-0.7840725988306793],[117,308,67,-0.7836961936074319],[117,308,68,-0.783321962516229],[117,308,69,-0.7829499117424458],[117,308,70,-0.7825800473873773],[117,308,71,-0.782212375467831],[117,308,72,-0.7818469019157183],[117,308,73,-0.7814836325776588],[117,308,74,-0.781122573214561],[117,308,75,-0.7807637295012275],[117,308,76,-0.7804071070259514],[117,308,77,-0.7800527112901121],[117,308,78,-0.7797005477077764],[117,308,79,-0.7793506216052937],[117,309,64,-0.7850049317933452],[117,309,65,-0.7846241585935233],[117,309,66,-0.7842455454850183],[117,309,67,-0.7838690988196193],[117,309,68,-0.7834948248659045],[117,309,69,-0.7831227298088446],[117,309,70,-0.7827528197493903],[117,309,71,-0.7823851007040669],[117,309,72,-0.7820195786045652],[117,309,73,-0.7816562592973464],[117,309,74,-0.7812951485432228],[117,309,75,-0.7809362520169634],[117,309,76,-0.7805795753068905],[117,309,77,-0.7802251239144762],[117,309,78,-0.7798729032539431],[117,309,79,-0.7795229186518604],[117,310,64,-0.7851780595317054],[117,310,65,-0.7847972492188937],[117,310,66,-0.7844185975733855],[117,310,67,-0.7840421109464177],[117,310,68,-0.7836677956060787],[117,310,69,-0.783295657736909],[117,310,70,-0.7829257034394915],[117,310,71,-0.7825579387300451],[117,310,72,-0.7821923695400163],[117,310,73,-0.7818290017156841],[117,310,74,-0.7814678410177414],[117,310,75,-0.7811088931209001],[117,310,76,-0.7807521636134894],[117,310,77,-0.7803976579970506],[117,310,78,-0.7800453816859401],[117,310,79,-0.7796953400069238],[117,311,64,-0.7853512893094146],[117,311,65,-0.7849704433746768],[117,311,66,-0.784591754678583],[117,311,67,-0.7842152295717939],[117,311,68,-0.783840874321882],[117,311,69,-0.7834686951129342],[117,311,70,-0.7830986980451412],[117,311,71,-0.7827308891343912],[117,311,72,-0.7823652743118629],[117,311,73,-0.7820018594236294],[117,311,74,-0.7816406502302405],[117,311,75,-0.7812816524063287],[117,311,76,-0.780924871540206],[117,311,77,-0.7805703131334609],[117,311,78,-0.7802179826005603],[117,311,79,-0.7798678852684452],[117,312,64,-0.7855246207062956],[117,312,65,-0.7851437406418493],[117,312,66,-0.7847650163827418],[117,312,67,-0.7843884542790326],[117,312,68,-0.7840140605977544],[117,312,69,-0.7836418415225155],[117,312,70,-0.7832718031530904],[117,312,71,-0.7829039515050129],[117,312,72,-0.7825382925091694],[117,312,73,-0.7821748320114041],[117,312,74,-0.7818135757721001],[117,312,75,-0.7814545294657869],[117,312,76,-0.7810976986807365],[117,312,77,-0.7807430889185619],[117,312,78,-0.7803907055938178],[117,312,79,-0.7800405540335978],[117,313,64,-0.7856980533015419],[117,313,65,-0.7853171406007486],[117,313,66,-0.784938382267344],[117,313,67,-0.7845617846507617],[117,313,68,-0.7841873540174694],[117,313,69,-0.7838150965505732],[117,313,70,-0.7834450183494066],[117,313,71,-0.7830771254291248],[117,313,72,-0.7827114237202986],[117,313,73,-0.7823479190685191],[117,313,74,-0.7819866172339796],[117,313,75,-0.7816275238910831],[117,313,76,-0.7812706446280393],[117,313,77,-0.7809159849464621],[117,313,78,-0.7805635502609717],[117,313,79,-0.7802133458987917],[117,314,64,-0.785871586673685],[117,314,65,-0.7854906428310413],[117,314,66,-0.7851118519131918],[117,314,67,-0.7847352202689191],[117,314,68,-0.7843607541641021],[117,314,69,-0.7839884597813195],[117,314,70,-0.7836183432194396],[117,314,71,-0.7832504104932153],[117,314,72,-0.7828846675328777],[117,314,73,-0.7825211201837412],[117,314,74,-0.7821597742057859],[117,314,75,-0.781800635273265],[117,314,76,-0.7814437089743025],[117,314,77,-0.7810890008104907],[117,314,78,-0.7807365161964926],[117,314,79,-0.7803862604596395],[117,315,64,-0.7860452204006556],[117,315,65,-0.7856642469117836],[117,315,66,-0.7852854249004678],[117,315,67,-0.7849087607148151],[117,315,68,-0.7845342606200902],[117,315,69,-0.7841619307983203],[117,315,70,-0.7837917773478844],[117,315,71,-0.7834238062831089],[117,315,72,-0.7830580235338612],[117,315,73,-0.7826944349451554],[117,315,74,-0.7823330462767351],[117,315,75,-0.7819738632026803],[117,315,76,-0.7816168913110061],[117,315,77,-0.7812621361032603],[117,315,78,-0.7809096029941265],[117,315,79,-0.7805592973110206],[117,316,64,-0.786218954059761],[117,316,65,-0.7858379524213999],[117,316,66,-0.7854591008087136],[117,316,67,-0.7850824055691086],[117,316,68,-0.7847078729672115],[117,316,69,-0.7843355091844727],[117,316,70,-0.783965320318758],[117,316,71,-0.7835973123839429],[117,316,72,-0.7832314913095075],[117,316,73,-0.7828678629401421],[117,316,74,-0.7825064330353294],[117,316,75,-0.7821472072689538],[117,316,76,-0.7817901912288981],[117,316,77,-0.7814353904166431],[117,316,78,-0.7810828102468694],[117,316,79,-0.7807324560470559],[117,317,64,-0.7863927872276625],[117,317,65,-0.786011758937658],[117,317,66,-0.7856328792168051],[117,317,67,-0.7852561544117848],[117,317,68,-0.7848815907865601],[117,317,69,-0.7845091945219811],[117,317,70,-0.7841389717153753],[117,317,71,-0.783770928380144],[117,317,72,-0.7834050704453556],[117,317,73,-0.7830414037553524],[117,317,74,-0.7826799340693338],[117,317,75,-0.7823206670609644],[117,317,76,-0.781963608317972],[117,317,77,-0.7816087633417471],[117,317,78,-0.7812561375469451],[117,317,79,-0.7809057362610853],[117,318,64,-0.7865667194804361],[117,318,65,-0.7861856660377324],[117,318,66,-0.7858067597030156],[117,318,67,-0.7854300068222161],[117,318,68,-0.7850554136586091],[117,318,69,-0.7846829863924194],[117,318,70,-0.7843127311204124],[117,318,71,-0.7839446538554904],[117,318,72,-0.7835787605262865],[117,318,73,-0.7832150569767716],[117,318,74,-0.7828535489658377],[117,318,75,-0.7824942421669066],[117,318,76,-0.782137142167528],[117,318,77,-0.781782254468979],[117,318,78,-0.7814295844858674],[117,318,79,-0.7810791375457298],[117,319,64,-0.7867407503935501],[117,319,65,-0.7863596732981801],[117,319,66,-0.7859807418449918],[117,319,67,-0.7856039623791398],[117,319,68,-0.785229341163187],[117,319,69,-0.7848568843767081],[117,319,70,-0.7844865981158824],[117,319,71,-0.7841184883930887],[117,319,72,-0.783752561136501],[117,319,73,-0.7833888221896952],[117,319,74,-0.7830272773112323],[117,319,75,-0.7826679321742679],[117,319,76,-0.7823107923661502],[117,319,77,-0.7819558633880206],[117,319,78,-0.7816031506544158],[117,319,79,-0.7812526594928677],[118,-64,64,-0.730404094488819],[118,-64,65,-0.7301241135627417],[118,-64,66,-0.7298465379340243],[118,-64,67,-0.7295713727158295],[118,-64,68,-0.7292986229276132],[118,-64,69,-0.7290282934947088],[118,-64,70,-0.7287603892478975],[118,-64,71,-0.7284949149229817],[118,-64,72,-0.728231875160356],[118,-64,73,-0.7279712745045965],[118,-64,74,-0.7277131174040168],[118,-64,75,-0.7274574082102576],[118,-64,76,-0.7272041511778624],[118,-64,77,-0.7269533504638552],[118,-64,78,-0.726705010127321],[118,-64,79,-0.7264591341289813],[118,-63,64,-0.7305206602724479],[118,-63,65,-0.7302402374988475],[118,-63,66,-0.7299622199693786],[118,-63,67,-0.7296866128033296],[118,-63,68,-0.7294134210262828],[118,-63,69,-0.7291426495697001],[118,-63,70,-0.7288743032704913],[118,-63,71,-0.7286083868705879],[118,-63,72,-0.7283449050165155],[118,-63,73,-0.7280838622589804],[118,-63,74,-0.7278252630524271],[118,-63,75,-0.7275691117546281],[118,-63,76,-0.7273154126262583],[118,-63,77,-0.727064169830473],[118,-63,78,-0.7268153874324882],[118,-63,79,-0.7265690693991569],[118,-62,64,-0.7306373874767595],[118,-62,65,-0.7303565233801202],[118,-62,66,-0.7300780644728575],[118,-62,67,-0.7298020158803775],[118,-62,68,-0.729528382634382],[118,-62,69,-0.7292571696724531],[118,-62,70,-0.7289883818376217],[118,-62,71,-0.7287220238779418],[118,-62,72,-0.7284581004460615],[118,-62,73,-0.7281966160988107],[118,-62,74,-0.7279375752967582],[118,-62,75,-0.7276809824038002],[118,-62,76,-0.7274268416867362],[118,-62,77,-0.7271751573148462],[118,-62,78,-0.7269259333594704],[118,-62,79,-0.7266791737935864],[118,-61,64,-0.7307542763583931],[118,-61,65,-0.730472971466836],[118,-61,66,-0.7301940717083553],[118,-61,67,-0.7299175822144672],[118,-61,68,-0.7296435080229853],[118,-61,69,-0.7293718540776037],[118,-61,70,-0.7291026252274677],[118,-61,71,-0.7288358262267455],[118,-61,72,-0.7285714617342007],[118,-61,73,-0.7283095363127797],[118,-61,74,-0.7280500544291677],[118,-61,75,-0.7277930204533781],[118,-61,76,-0.7275384386583278],[118,-61,77,-0.7272863132194142],[118,-61,78,-0.7270366482140954],[118,-61,79,-0.726789447621466],[118,-60,64,-0.7308713271707785],[118,-60,65,-0.7305895820160587],[118,-60,66,-0.7303102419365513],[118,-60,67,-0.7300333120698748],[118,-60,68,-0.7297587974599461],[118,-60,69,-0.7294867030565648],[118,-60,70,-0.7292170337149818],[118,-60,71,-0.7289497941954726],[118,-60,72,-0.728684989162909],[118,-60,73,-0.728422623186346],[118,-60,74,-0.728162700738578],[118,-60,75,-0.7279052261957285],[118,-60,76,-0.7276502038368247],[118,-60,77,-0.7273976378433745],[118,-60,78,-0.7271475322989467],[118,-60,79,-0.7268998911887465],[118,-59,64,-0.7309885401641244],[118,-59,65,-0.7307063552816282],[118,-59,66,-0.730426575414898],[118,-59,67,-0.7301492057076462],[118,-59,68,-0.729874251209886],[118,-59,69,-0.7296017168775139],[118,-59,70,-0.7293316075718791],[118,-59,71,-0.7290639280593569],[118,-59,72,-0.7287986830109193],[118,-59,73,-0.7285358770017226],[118,-59,74,-0.7282755145106635],[118,-59,75,-0.7280175999199681],[118,-59,76,-0.7277621375147665],[118,-59,77,-0.72750913148267],[118,-59,78,-0.7272585859133514],[118,-59,79,-0.727010504798119],[118,-58,64,-0.7311059155854682],[118,-58,65,-0.7308232915142099],[118,-58,66,-0.73054307239767],[118,-58,67,-0.7302652633856476],[118,-58,68,-0.7299898695342432],[118,-58,69,-0.7297168958054427],[118,-58,70,-0.7294463470666863],[118,-58,71,-0.7291782280904406],[118,-58,72,-0.728912543553771],[118,-58,73,-0.7286492980379273],[118,-58,74,-0.7283884960279008],[118,-58,75,-0.7281301419120129],[118,-58,76,-0.7278742399814897],[118,-58,77,-0.7276207944300388],[118,-58,78,-0.727369809353429],[118,-58,79,-0.7271212887490662],[118,-57,64,-0.7312234536786565],[118,-57,65,-0.7309403909612757],[118,-57,66,-0.7306597331359463],[118,-57,67,-0.7303814853585454],[118,-57,68,-0.7301056526912537],[118,-57,69,-0.7298322401021385],[118,-57,70,-0.7295612524647225],[118,-57,71,-0.7292926945575564],[118,-57,72,-0.7290265710637909],[118,-57,73,-0.728762886570762],[118,-57,74,-0.7285016455695483],[118,-57,75,-0.728242852454559],[118,-57,76,-0.7279865115231086],[118,-57,77,-0.7277326269749939],[118,-57,78,-0.7274812029120731],[118,-57,79,-0.7272322433378418],[118,-56,64,-0.7313411546843681],[118,-56,65,-0.7310576538671264],[118,-56,66,-0.7307765578776312],[118,-56,67,-0.7304978718778298],[118,-56,68,-0.7302216009359743],[118,-56,69,-0.7299477500262057],[118,-56,70,-0.7296763240281214],[118,-56,71,-0.7294073277263488],[118,-56,72,-0.7291407658101156],[118,-56,73,-0.7288766428728365],[118,-56,74,-0.7286149634116696],[118,-56,75,-0.7283557318271048],[118,-56,76,-0.7280989524225376],[118,-56,77,-0.7278446294038465],[118,-56,78,-0.7275927668789721],[118,-56,79,-0.7273433688574925],[118,-55,64,-0.7314590188400945],[118,-55,65,-0.7311750804728725],[118,-55,66,-0.7308935468674358],[118,-55,67,-0.7306144231917938],[118,-55,68,-0.7303377145202621],[118,-55,69,-0.730063425833047],[118,-55,70,-0.7297915620158126],[118,-55,71,-0.729522127859255],[118,-55,72,-0.7292551280586713],[118,-55,73,-0.7289905672135474],[118,-55,74,-0.7287284498271132],[118,-55,75,-0.7284687803059313],[118,-55,76,-0.7282115629594713],[118,-55,77,-0.7279568019996858],[118,-55,78,-0.7277045015405907],[118,-55,79,-0.7274546655978393],[118,-54,64,-0.7315770463801896],[118,-54,65,-0.731292671016484],[118,-54,66,-0.7310107003469283],[118,-54,67,-0.730731139545585],[118,-54,68,-0.7304539936928254],[118,-54,69,-0.7301792677749128],[118,-54,70,-0.7299069666835707],[118,-54,71,-0.7296370952155549],[118,-54,72,-0.7293696580722248],[118,-54,73,-0.7291046598591291],[118,-54,74,-0.7288421050855622],[118,-54,75,-0.7285819981641521],[118,-54,76,-0.7283243434104344],[118,-54,77,-0.7280691450424289],[118,-54,78,-0.727816407180219],[118,-54,79,-0.7275661338455262],[118,-53,64,-0.7316952375358581],[118,-53,65,-0.7314104257327786],[118,-53,66,-0.7311280185545206],[118,-53,67,-0.730848021181192],[118,-53,68,-0.7305704386992109],[118,-53,69,-0.7302952761008897],[118,-53,70,-0.7300225382840029],[118,-53,71,-0.7297522300513584],[118,-53,72,-0.7294843561103698],[118,-53,73,-0.7292189210726409],[118,-53,74,-0.7289559294535226],[118,-53,75,-0.7286953856717007],[118,-53,76,-0.7284372940487692],[118,-53,77,-0.7281816588088078],[118,-53,78,-0.7279284840779598],[118,-53,79,-0.727677773884008],[118,-52,64,-0.731813592535143],[118,-52,65,-0.7315283448534089],[118,-52,66,-0.7312455017254572],[118,-52,67,-0.7309650683374322],[118,-52,68,-0.7306870497817912],[118,-52,69,-0.7304114510568872],[118,-52,70,-0.730138277066537],[118,-52,71,-0.7298675326195934],[118,-52,72,-0.7295992224295152],[118,-52,73,-0.7293333511139544],[118,-52,74,-0.7290699231943099],[118,-52,75,-0.7288089430953176],[118,-52,76,-0.7285504151446228],[118,-52,77,-0.728294343572357],[118,-52,78,-0.7280407325107165],[118,-52,79,-0.7277895859935375],[118,-51,64,-0.7319321116029751],[118,-51,65,-0.7316464286069125],[118,-51,66,-0.731363150091864],[118,-51,67,-0.7310822812500025],[118,-51,68,-0.7308038271798152],[118,-51,69,-0.7305277928856878],[118,-51,70,-0.7302541832774715],[118,-51,71,-0.7299830031700549],[118,-51,72,-0.7297142572829353],[118,-51,73,-0.7294479502398031],[118,-51,74,-0.7291840865680992],[118,-51,75,-0.728922670698601],[118,-51,76,-0.7286637069649972],[118,-51,77,-0.7284071996034636],[118,-51,78,-0.7281531527522422],[118,-51,79,-0.7279015704512153],[118,-50,64,-0.7320507949611549],[118,-50,65,-0.7317646772186932],[118,-50,66,-0.7314809638827304],[118,-50,67,-0.7311996601514592],[118,-50,68,-0.7309207711293885],[118,-50,69,-0.7306443018269281],[118,-50,70,-0.7303702571599551],[118,-50,71,-0.7300986419493863],[118,-50,72,-0.7298294609207485],[118,-50,73,-0.7295627187037639],[118,-50,74,-0.7292984198319057],[118,-50,75,-0.7290365687419857],[118,-50,76,-0.7287771697737289],[118,-50,77,-0.7285202271693471],[118,-50,78,-0.7282657450731205],[118,-50,79,-0.7280137275309696],[118,-49,64,-0.7321696428283735],[118,-49,65,-0.7318830909110424],[118,-49,66,-0.7315989433239303],[118,-49,67,-0.7313172052712404],[118,-49,68,-0.7310378818634954],[118,-49,69,-0.7307609781171204],[118,-49,70,-0.7304864989540102],[118,-49,71,-0.7302144492011013],[118,-49,72,-0.7299448335899421],[118,-49,73,-0.7296776567562777],[118,-49,74,-0.7294129232396069],[118,-49,75,-0.7291506374827675],[118,-49,76,-0.728890803831512],[118,-49,77,-0.7286334265340818],[118,-49,78,-0.7283785097407868],[118,-49,79,-0.7281260575035791],[118,-48,64,-0.7322886554201944],[118,-48,65,-0.7320016699031208],[118,-48,66,-0.7317170886382032],[118,-48,67,-0.731434916835647],[118,-48,68,-0.7311551596119797],[118,-48,69,-0.7308778219896336],[118,-48,70,-0.7306029088965124],[118,-48,71,-0.7303304251655641],[118,-48,72,-0.7300603755343503],[118,-48,73,-0.7297927646446315],[118,-48,74,-0.7295275970419227],[118,-48,75,-0.7292648771750808],[118,-48,76,-0.729004609395878],[118,-48,77,-0.7287467979585767],[118,-48,78,-0.7284914470195096],[118,-48,79,-0.7282385606366523],[118,-47,64,-0.7324078329491033],[118,-47,65,-0.7321204144110076],[118,-47,66,-0.7318354000452043],[118,-47,67,-0.7315527950678923],[118,-47,68,-0.7312726046015949],[118,-47,69,-0.730994833674743],[118,-47,70,-0.730719487221241],[118,-47,71,-0.7304465700800398],[118,-47,72,-0.7301760869947058],[118,-47,73,-0.7299080426130066],[118,-47,74,-0.7296424414864658],[118,-47,75,-0.7293792880699508],[118,-47,76,-0.7291185867212454],[118,-47,77,-0.7288603417006261],[118,-47,78,-0.7286045571704397],[118,-47,79,-0.7283512371946781],[118,-46,64,-0.7325271756244955],[118,-46,65,-0.732239324647689],[118,-46,66,-0.7319538777614926],[118,-46,67,-0.7316708401880899],[118,-46,68,-0.7313902170559917],[118,-46,69,-0.7311120133996183],[118,-46,70,-0.7308362341588664],[118,-46,71,-0.7305628841786815],[118,-46,72,-0.7302919682086264],[118,-46,73,-0.7300234909024672],[118,-46,74,-0.7297574568177284],[118,-46,75,-0.7294938704152792],[118,-46,76,-0.7292327360589078],[118,-46,77,-0.7289740580148958],[118,-46,78,-0.7287178404515974],[118,-46,79,-0.7284640874390123],[118,-45,64,-0.7326466836526637],[118,-45,65,-0.7323584008230445],[118,-45,66,-0.7320725220005171],[118,-45,67,-0.7317890524132408],[118,-45,68,-0.7315079971957046],[118,-45,69,-0.7312293613883101],[118,-45,70,-0.7309531499369375],[118,-45,71,-0.730679367692518],[118,-45,72,-0.7304080194106025],[118,-45,73,-0.7301391097509476],[118,-45,74,-0.7298726432770698],[118,-45,75,-0.7296086244558326],[118,-45,76,-0.72934705765702],[118,-45,77,-0.7290879471529113],[118,-45,78,-0.7288312971178594],[118,-45,79,-0.728577111627865],[118,-44,64,-0.7327663572368481],[118,-44,65,-0.7324776431438983],[118,-44,66,-0.732191332972668],[118,-44,67,-0.7319074319572835],[118,-44,68,-0.7316259452382032],[118,-44,69,-0.7313468778618006],[118,-44,70,-0.7310702347799312],[118,-44,71,-0.7307960208495031],[118,-44,72,-0.730524240832047],[118,-44,73,-0.7302548993933013],[118,-44,74,-0.7299880011027664],[118,-44,75,-0.7297235504332916],[118,-44,76,-0.7294615517606489],[118,-44,77,-0.7292020093631068],[118,-44,78,-0.7289449274210097],[118,-44,79,-0.7286903100163508],[118,-43,64,-0.7328861965772238],[118,-43,65,-0.732597051814006],[118,-43,66,-0.7323103108852642],[118,-43,67,-0.7320259790310821],[118,-43,68,-0.7317440613978788],[118,-43,69,-0.7314645630379913],[118,-43,70,-0.7311874889092409],[118,-43,71,-0.7309128438745042],[118,-43,72,-0.7306406327012832],[118,-43,73,-0.7303708600612895],[118,-43,74,-0.7301035305299989],[118,-43,75,-0.7298386485862386],[118,-43,76,-0.72957621861176],[118,-43,77,-0.7293162448908133],[118,-43,78,-0.7290587316097257],[118,-43,79,-0.7288036828564752],[118,-42,64,-0.7330062018708883],[118,-42,65,-0.7327166270340424],[118,-42,66,-0.7324294559425398],[118,-42,67,-0.732144693842413],[118,-42,68,-0.7318623458860323],[118,-42,69,-0.7315824171316893],[118,-42,70,-0.7313049125431623],[118,-42,71,-0.7310298369892881],[118,-42,72,-0.7307571952435309],[118,-42,73,-0.7304869919835669],[118,-42,74,-0.7302192317908394],[118,-42,75,-0.7299539191501445],[118,-42,76,-0.729691058449205],[118,-42,77,-0.7294306539782445],[118,-42,78,-0.7291727099295653],[118,-42,79,-0.7289172303971223],[118,-41,64,-0.733126373311912],[118,-41,65,-0.7328363690016516],[118,-41,66,-0.7325487683456955],[118,-41,67,-0.7322635765960152],[118,-41,68,-0.7319807989109237],[118,-41,69,-0.7317004403546582],[118,-41,70,-0.731422505896945],[118,-41,71,-0.7311470004125723],[118,-41,72,-0.7308739286809576],[118,-41,73,-0.7306032953857334],[118,-41,74,-0.7303351051143014],[118,-41,75,-0.730069362357419],[118,-41,76,-0.7298060715087716],[118,-41,77,-0.7295452368645481],[118,-41,78,-0.7292868626230179],[118,-41,79,-0.7290309528841044],[118,-40,64,-0.7332467110913186],[118,-40,65,-0.7329562779114275],[118,-40,66,-0.7326682482928777],[118,-40,67,-0.7323826274935707],[118,-40,68,-0.7320994206777534],[118,-40,69,-0.7318186329155986],[118,-40,70,-0.7315402691827724],[118,-40,71,-0.7312643343600046],[118,-40,72,-0.7309908332326581],[118,-40,73,-0.7307197704903129],[118,-40,74,-0.7304511507263206],[118,-40,75,-0.7301849784373907],[118,-40,76,-0.7299212580231639],[118,-40,77,-0.7296599937857852],[118,-40,78,-0.7294011899294831],[118,-40,79,-0.729144850560142],[118,-39,64,-0.7333672153971074],[118,-39,65,-0.7330763539549361],[118,-39,66,-0.732787895979202],[118,-39,67,-0.7325018467337276],[118,-39,68,-0.7322182113886834],[118,-39,69,-0.7319369950201696],[118,-39,70,-0.7316582026097826],[118,-39,71,-0.7313818390441855],[118,-39,72,-0.7311079091146773],[118,-39,73,-0.7308364175167763],[118,-39,74,-0.730567368849776],[118,-39,75,-0.7303007676163294],[118,-39,76,-0.7300366182220236],[118,-39,77,-0.729774924974952],[118,-39,78,-0.7295156920852939],[118,-39,79,-0.729258923664886],[118,-38,64,-0.7334878864142331],[118,-38,65,-0.7331965973206958],[118,-38,66,-0.7329077115967331],[118,-38,67,-0.7326212345120788],[118,-38,68,-0.7323371712428182],[118,-38,69,-0.7320555268709696],[118,-38,70,-0.7317763063840507],[118,-38,71,-0.7314995146746485],[118,-38,72,-0.7312251565399891],[118,-38,73,-0.7309532366815212],[118,-38,74,-0.7306837597044704],[118,-38,75,-0.7304167301174257],[118,-38,76,-0.7301521523319111],[118,-38,77,-0.7298900306619607],[118,-38,78,-0.7296303693236956],[118,-38,79,-0.7293731724348973],[118,-37,64,-0.7336087243246574],[118,-37,65,-0.7333170081942278],[118,-37,66,-0.7330276953345347],[118,-37,67,-0.7327407910212137],[118,-37,68,-0.7324563004362553],[118,-37,69,-0.7321742286675866],[118,-37,70,-0.7318945807086373],[118,-37,71,-0.7316173614579098],[118,-37,72,-0.7313425757185481],[118,-37,73,-0.7310702281979221],[118,-37,74,-0.7308003235071814],[118,-37,75,-0.7305328661608412],[118,-37,76,-0.7302678605763552],[118,-37,77,-0.7300053110736886],[118,-37,78,-0.729745221874897],[118,-37,79,-0.7294875971036976],[118,-36,64,-0.7337297293073353],[118,-36,65,-0.7334375867580437],[118,-36,66,-0.7331478473786576],[118,-36,67,-0.7328605164507046],[118,-36,68,-0.7325755991620716],[118,-36,69,-0.7322931006065849],[118,-36,70,-0.732013025783577],[118,-36,71,-0.7317353795974562],[118,-36,72,-0.7314601668572758],[118,-36,73,-0.7311873922763179],[118,-36,74,-0.7309170604716471],[118,-36,75,-0.7306491759636963],[118,-36,76,-0.7303837431758399],[118,-36,77,-0.7301207664339662],[118,-36,78,-0.7298602499660561],[118,-36,79,-0.7296021979017553],[118,-35,64,-0.7338509015382026],[118,-35,65,-0.7335583331916321],[118,-35,66,-0.7332681679121258],[118,-35,67,-0.7329804109870945],[118,-35,68,-0.7326950676103113],[118,-35,69,-0.7324121428814927],[118,-35,70,-0.7321316418058643],[118,-35,71,-0.7318535692937316],[118,-35,72,-0.7315779301600479],[118,-35,73,-0.7313047291239982],[118,-35,74,-0.7310339708085535],[118,-35,75,-0.730765659740056],[118,-35,76,-0.7304998003477914],[118,-35,77,-0.7302363969635628],[118,-35,78,-0.7299754538212684],[118,-35,79,-0.729716975056473],[118,-34,64,-0.733972241190227],[118,-34,65,-0.7336792476715095],[118,-34,66,-0.7333886571149882],[118,-34,67,-0.7331004748139471],[118,-34,68,-0.7328147059680361],[118,-34,69,-0.7325313556828521],[118,-34,70,-0.732250428969505],[118,-34,71,-0.7319719307441878],[118,-34,72,-0.7316958658277445],[118,-34,73,-0.7314222389452545],[118,-34,74,-0.7311510547255857],[118,-34,75,-0.7308823177009809],[118,-34,76,-0.7306160323066285],[118,-34,77,-0.730352202880238],[118,-34,78,-0.7300908336616156],[118,-34,79,-0.7298319287922377],[118,-33,64,-0.7340937484333871],[118,-33,65,-0.7338003303712005],[118,-33,66,-0.7335093151642982],[118,-33,67,-0.7332207081118274],[118,-33,68,-0.7329345144193051],[118,-33,69,-0.7326507391981997],[118,-33,70,-0.7323693874654955],[118,-33,71,-0.7320904641432637],[118,-33,72,-0.7318139740582303],[118,-33,73,-0.7315399219413592],[118,-33,74,-0.7312683124274069],[118,-33,75,-0.730999150054507],[118,-33,76,-0.7307324392637429],[118,-33,77,-0.7304681843987206],[118,-33,78,-0.7302063897051468],[118,-33,79,-0.7299470593304003],[118,-32,64,-0.7342154234346963],[118,-32,65,-0.7339215814612601],[118,-32,66,-0.7336301422341354],[118,-32,67,-0.733341111058323],[118,-32,68,-0.7330544931451975],[118,-32,69,-0.7327702936120886],[118,-32,70,-0.7324885174818457],[118,-32,71,-0.7322091696824089],[118,-32,72,-0.7319322550463766],[118,-32,73,-0.7316577783105886],[118,-32,74,-0.7313857441156804],[118,-32,75,-0.7311161570056679],[118,-32,76,-0.7308490214275201],[118,-32,77,-0.7305843417307313],[118,-32,78,-0.7303221221668996],[118,-32,79,-0.7300623668892976],[118,-31,64,-0.7343372663581814],[118,-31,65,-0.7340430011092536],[118,-31,66,-0.7337511384955868],[118,-31,67,-0.7334616838280255],[118,-31,68,-0.733174642323792],[118,-31,69,-0.7328900191060679],[118,-31,70,-0.7326078192035581],[118,-31,71,-0.7323280475500622],[118,-31,72,-0.7320507089840413],[118,-31,73,-0.7317758082482021],[118,-31,74,-0.73150334998905],[118,-31,75,-0.7312333387564742],[118,-31,76,-0.73096577900332],[118,-31,77,-0.7307006750849617],[118,-31,78,-0.7304380312588797],[118,-31,79,-0.7301778516842323],[118,-30,64,-0.7344592773649343],[118,-30,65,-0.7341645894798075],[118,-30,66,-0.7338723041167966],[118,-30,67,-0.7335824265925799],[118,-30,68,-0.7332949621302179],[118,-30,69,-0.7330099158587339],[118,-30,70,-0.732727292812679],[118,-30,71,-0.7324470979317025],[118,-30,72,-0.7321693360601194],[118,-30,73,-0.7318940119464932],[118,-30,74,-0.7316211302431903],[118,-30,75,-0.7313506955059641],[118,-30,76,-0.7310827121935276],[118,-30,77,-0.7308171846671256],[118,-30,78,-0.7305541171901124],[118,-30,79,-0.7302935139275231],[118,-29,64,-0.7345814566130989],[118,-29,65,-0.7342863467345965],[118,-29,66,-0.7339936392629537],[118,-29,67,-0.7337033395206728],[118,-29,68,-0.733415452736642],[118,-29,69,-0.733129984045717],[118,-29,70,-0.7328469384882854],[118,-29,71,-0.7325663210098367],[118,-29,72,-0.7322881364605296],[118,-29,73,-0.732012389594776],[118,-29,74,-0.7317390850707934],[118,-29,75,-0.7314682274501908],[118,-29,76,-0.7311998211975391],[118,-29,77,-0.7309338706799452],[118,-29,78,-0.7306703801666282],[118,-29,79,-0.7304093538284915],[118,-28,64,-0.7347038042578575],[118,-28,65,-0.73440827303233],[118,-28,66,-0.7341151440962781],[118,-28,67,-0.7338244227780177],[118,-28,68,-0.7335361143122551],[118,-28,69,-0.7332502238396683],[118,-28,70,-0.7329667564064715],[118,-28,71,-0.7326857169639847],[118,-28,72,-0.7324071103682015],[118,-28,73,-0.7321309413793718],[118,-28,74,-0.731857214661556],[118,-28,75,-0.731585934782208],[118,-28,76,-0.7313171062117486],[118,-28,77,-0.7310507333231374],[118,-28,78,-0.7307868203914498],[118,-28,79,-0.7305253715934481],[118,-27,64,-0.7348263204514827],[118,-27,65,-0.7345303685288039],[118,-27,66,-0.7342368187760725],[118,-27,67,-0.7339456765274074],[118,-27,68,-0.7336569470233232],[118,-27,69,-0.7333706354103102],[118,-27,70,-0.7330867467403994],[118,-27,71,-0.7328052859707319],[118,-27,72,-0.732526257963126],[118,-27,73,-0.7322496674836607],[118,-27,74,-0.7319755192022289],[118,-27,75,-0.7317038176921214],[118,-27,76,-0.7314345674295992],[118,-27,77,-0.7311677727934653],[118,-27,78,-0.7309034380646424],[118,-27,79,-0.7306415674257436],[118,-26,64,-0.734949005343316],[118,-26,65,-0.7346526333768798],[118,-26,66,-0.7343586634587012],[118,-26,67,-0.7340671009286929],[118,-26,68,-0.733777951033167],[118,-26,69,-0.7334912189244167],[118,-26,70,-0.7332069096602796],[118,-26,71,-0.7329250282037078],[118,-26,72,-0.732645579422335],[118,-26,73,-0.7323685680880598],[118,-26,74,-0.7320939988765983],[118,-26,75,-0.7318218763670684],[118,-26,76,-0.7315522050415622],[118,-26,77,-0.7312849892847171],[118,-26,78,-0.7310202333832942],[118,-26,79,-0.730757941525748],[118,-25,64,-0.7350718590797916],[118,-25,65,-0.7347750677265074],[118,-25,66,-0.7344806782976135],[118,-25,67,-0.734188696138806],[118,-25,68,-0.7338991265021848],[118,-25,69,-0.7336119745458353],[118,-25,70,-0.7333272453333921],[118,-25,71,-0.7330449438336085],[118,-25,72,-0.7327650749199242],[118,-25,73,-0.7324876433700469],[118,-25,74,-0.7322126538655067],[118,-25,75,-0.7319401109912397],[118,-25,76,-0.7316700192351591],[118,-25,77,-0.7314023829877283],[118,-25,78,-0.731137206541537],[118,-25,79,-0.7308744940908727],[118,-24,64,-0.7351948818044147],[118,-24,65,-0.7348976717247039],[118,-24,66,-0.7346028634433225],[118,-24,67,-0.7343104623117389],[118,-24,68,-0.7340204735878311],[118,-24,69,-0.7337329024354665],[118,-24,70,-0.7334477539240668],[118,-24,71,-0.7331650330281766],[118,-24,72,-0.732884744627031],[118,-24,73,-0.7326068935041383],[118,-24,74,-0.7323314843468328],[118,-24,75,-0.7320585217458586],[118,-24,76,-0.7317880101949414],[118,-24,77,-0.7315199540903607],[118,-24,78,-0.7312543577305265],[118,-24,79,-0.7309912253155495],[118,-23,64,-0.7353180736578144],[118,-23,65,-0.7350204455156063],[118,-23,66,-0.7347252190434563],[118,-23,67,-0.7344323995985953],[118,-23,68,-0.7341419924446686],[118,-23,69,-0.7338540027513154],[118,-23,70,-0.7335684355937343],[118,-23,71,-0.7332852959522513],[118,-23,72,-0.7330045887118877],[118,-23,73,-0.7327263186619417],[118,-23,74,-0.7324504904955425],[118,-23,75,-0.7321771088092327],[118,-23,76,-0.7319061781025413],[118,-23,77,-0.7316377027775546],[118,-23,78,-0.7313716871384931],[118,-23,79,-0.7311081353912823],[118,-22,64,-0.7354414347777284],[118,-22,65,-0.7351433892404569],[118,-22,66,-0.7348477452427455],[118,-22,67,-0.7345545081475773],[118,-22,68,-0.7342636832243542],[118,-22,69,-0.7339752756484776],[118,-22,70,-0.7336892905009124],[118,-22,71,-0.7334057327677562],[118,-22,72,-0.7331246073398061],[118,-22,73,-0.7328459190121412],[118,-22,74,-0.7325696724836751],[118,-22,75,-0.7322958723567401],[118,-22,76,-0.7320245231366582],[118,-22,77,-0.7317556292313134],[118,-22,78,-0.7314891949507278],[118,-22,79,-0.7312252245066323],[118,-21,64,-0.7355649652989911],[118,-21,65,-0.7352665030375902],[118,-21,66,-0.734970442183009],[118,-21,67,-0.7346767881039714],[118,-21,68,-0.7343855460756261],[118,-21,69,-0.7340967212791261],[118,-21,70,-0.7338103188011926],[118,-21,71,-0.7335263436336847],[118,-21,72,-0.7332448006731653],[118,-21,73,-0.7329656947204842],[118,-21,74,-0.7326890304803301],[118,-21,75,-0.7324148125608149],[118,-21,76,-0.7321430454730445],[118,-21,77,-0.7318737336306911],[118,-21,78,-0.731606881349569],[118,-21,79,-0.7313424928472051],[118,-20,64,-0.7356886653535848],[118,-20,65,-0.735389787042485],[118,-20,66,-0.7350933100032052],[118,-20,67,-0.7347992396102003],[118,-20,68,-0.7345075811443548],[118,-20,69,-0.7342183397925627],[118,-20,70,-0.7339315206472917],[118,-20,71,-0.7336471287061518],[118,-20,72,-0.733365168871462],[118,-20,73,-0.7330856459498327],[118,-20,74,-0.732808564651718],[118,-20,75,-0.7325339295909995],[118,-20,76,-0.7322617452845577],[118,-20,77,-0.7319920161518432],[118,-20,78,-0.7317247465144532],[118,-20,79,-0.7314599405957016],[118,-19,64,-0.7358125350706184],[118,-19,65,-0.7355132413877427],[118,-19,66,-0.7352163488394122],[118,-19,67,-0.734921862805802],[118,-19,68,-0.7346297885735219],[118,-19,69,-0.7343401313351969],[118,-19,70,-0.7340528961890304],[118,-19,71,-0.733768088138373],[118,-19,72,-0.7334857120912901],[118,-19,73,-0.7332057728601423],[118,-19,74,-0.7329282751611395],[118,-19,75,-0.7326532236139232],[118,-19,76,-0.7323806227411386],[118,-19,77,-0.7321104769680054],[118,-19,78,-0.7318427906218941],[118,-19,79,-0.7315775679318967],[118,-18,64,-0.7359365745763509],[118,-18,65,-0.7356368662031106],[118,-18,66,-0.7353395588248498],[118,-18,67,-0.7350446578274525],[118,-18,68,-0.7347521685032439],[118,-18,69,-0.7344620960505688],[118,-18,70,-0.7341744455733561],[118,-18,71,-0.7338892220806874],[118,-18,72,-0.7336064304863631],[118,-18,73,-0.733326075608485],[118,-18,74,-0.7330481621690079],[118,-18,75,-0.7327726947933244],[118,-18,76,-0.7324996780098341],[118,-18,77,-0.7322291162495163],[118,-18,78,-0.7319610138455054],[118,-18,79,-0.7316953750326618],[118,-17,64,-0.7360607839941696],[118,-17,65,-0.7357606616154608],[118,-17,66,-0.7354629400898584],[118,-17,67,-0.7351676248089452],[118,-17,68,-0.73487472107075],[118,-17,69,-0.7345842340793278],[118,-17,70,-0.7342961689443224],[118,-17,71,-0.7340105306805353],[118,-17,72,-0.7337273242074929],[118,-17,73,-0.7334465543490272],[118,-17,74,-0.7331682258328287],[118,-17,75,-0.7328923432900298],[118,-17,76,-0.7326189112547759],[118,-17,77,-0.7323479341637957],[118,-17,78,-0.7320794163559786],[118,-17,79,-0.7318133620719434],[118,-16,64,-0.7361851634446432],[118,-16,65,-0.7358846277488421],[118,-16,66,-0.7355864927619512],[118,-16,67,-0.7352907638812411],[118,-16,68,-0.7349974464104343],[118,-16,69,-0.7347065455592844],[118,-16,70,-0.7344180664431397],[118,-16,71,-0.7341320140825117],[118,-16,72,-0.7338483934026419],[118,-16,73,-0.7335672092330823],[118,-16,74,-0.7332884663072494],[118,-16,75,-0.7330121692620059],[118,-16,76,-0.7327383226372322],[118,-16,77,-0.7324669308753974],[118,-16,78,-0.7321979983211353],[118,-16,79,-0.7319315292208148],[118,-15,64,-0.7363097130455067],[118,-15,65,-0.7360087647244661],[118,-15,66,-0.7357102169658006],[118,-15,67,-0.7354140751724576],[118,-15,68,-0.7351203446538424],[118,-15,69,-0.7348290306253964],[118,-15,70,-0.7345401382081623],[118,-15,71,-0.7342536724283509],[118,-15,72,-0.7339696382169081],[118,-15,73,-0.7336880404090966],[118,-15,74,-0.7334088837440477],[118,-15,75,-0.7331321728643446],[118,-15,76,-0.7328579123155932],[118,-15,77,-0.7325861065459931],[118,-15,78,-0.732316759905913],[118,-15,79,-0.7320498766474619],[118,-14,64,-0.7364344329116488],[118,-14,65,-0.7361330726606936],[118,-14,66,-0.7358341128232238],[118,-14,67,-0.7355375588078525],[118,-14,68,-0.7352434159296566],[118,-14,69,-0.7349516894097554],[118,-14,70,-0.7346623843748743],[118,-14,71,-0.7343755058569134],[118,-14,72,-0.7340910587925127],[118,-14,73,-0.7338090480226347],[118,-14,74,-0.7335294782921159],[118,-14,75,-0.73325235424925],[118,-14,76,-0.7329776804453578],[118,-14,77,-0.7327054613343601],[118,-14,78,-0.7324357012723508],[118,-14,79,-0.732168404517169],[118,-13,64,-0.7365593231551629],[118,-13,65,-0.7362575516730865],[118,-13,66,-0.7359581804532351],[118,-13,67,-0.7356612149098767],[118,-13,68,-0.7353666603637489],[118,-13,69,-0.7350745220416377],[118,-13,70,-0.7347848050759411],[118,-13,71,-0.7344975145042373],[118,-13,72,-0.7342126552688502],[118,-13,73,-0.7339302322164319],[118,-13,74,-0.7336502500975135],[118,-13,75,-0.733372713566089],[118,-13,76,-0.733097627179185],[118,-13,77,-0.7328249953964324],[118,-13,78,-0.7325548225796412],[118,-13,79,-0.7322871129923708],[118,-12,64,-0.7366843838853343],[118,-12,65,-0.736382201874394],[118,-12,66,-0.7360824199720322],[118,-12,67,-0.7357850435981605],[118,-12,68,-0.7354900780791664],[118,-12,69,-0.7351975286474914],[118,-12,70,-0.7349074004411957],[118,-12,71,-0.7346196985035246],[118,-12,72,-0.7343344277824757],[118,-12,73,-0.7340515931303799],[118,-12,74,-0.733771199303453],[118,-12,75,-0.7334932509613789],[118,-12,76,-0.7332177526668795],[118,-12,77,-0.7329447088852865],[118,-12,78,-0.7326741239841157],[118,-12,79,-0.7324060022326375],[118,-11,64,-0.7368096152086255],[118,-11,65,-0.7365070233745387],[118,-11,66,-0.7362068314929819],[118,-11,67,-0.7359090449894996],[118,-11,68,-0.7356136691961175],[118,-11,69,-0.7353207093509222],[118,-11,70,-0.7350301705976248],[118,-11,71,-0.7347420579851274],[118,-11,72,-0.7344563764670903],[118,-11,73,-0.734173130901513],[118,-11,74,-0.7338923260502855],[118,-11,75,-0.7336139665787713],[118,-11,76,-0.7333380570553778],[118,-11,77,-0.733064601951127],[118,-11,78,-0.732793605639231],[118,-11,79,-0.7325250723946615],[118,-10,64,-0.7369350172287291],[118,-10,65,-0.7366320162806687],[118,-10,66,-0.7363314151266727],[118,-10,67,-0.7360332191979067],[118,-10,68,-0.7357374338320237],[118,-10,69,-0.7354440642727447],[118,-10,70,-0.7351531156694203],[118,-10,71,-0.7348645930765989],[118,-10,72,-0.7345785014535929],[118,-10,73,-0.7342948456640597],[118,-10,74,-0.7340136304755527],[118,-10,75,-0.7337348605591053],[118,-10,76,-0.7334585404888],[118,-10,77,-0.7331846747413391],[118,-10,78,-0.7329132676956209],[118,-10,79,-0.7326443236323084],[118,-9,64,-0.7370605900465454],[118,-9,65,-0.7367571806971362],[118,-9,66,-0.7364561709808929],[118,-9,67,-0.7361575663345906],[118,-9,68,-0.7358613721014992],[118,-9,69,-0.735567593530962],[118,-9,70,-0.7352762357779589],[118,-9,71,-0.7349873039026733],[118,-9,72,-0.7347008028700592],[118,-9,73,-0.7344167375494212],[118,-9,74,-0.734135112713966],[118,-9,75,-0.733855933040386],[118,-9,76,-0.7335792031084284],[118,-9,77,-0.7333049274004664],[118,-9,78,-0.733033110301074],[118,-9,79,-0.7327637560965956],[118,-8,64,-0.7371863337602069],[118,-8,65,-0.7368825167255209],[118,-8,66,-0.7365810991606537],[118,-8,67,-0.7362820865079791],[118,-8,68,-0.7359854841163722],[118,-8,69,-0.7356912972407877],[118,-8,70,-0.7353995310418235],[118,-8,71,-0.7351101905852875],[118,-8,72,-0.7348232808417641],[118,-8,73,-0.7345388066861943],[118,-8,74,-0.734256772897428],[118,-8,75,-0.733977184157806],[118,-8,76,-0.73370004505273],[118,-8,77,-0.7334253600702336],[118,-8,78,-0.7331531336005567],[118,-8,79,-0.7328833699357151],[118,-7,64,-0.7373122484650553],[118,-7,65,-0.7370080244646076],[118,-7,66,-0.7367061997681681],[118,-7,67,-0.7364067798236975],[118,-7,68,-0.7361097699856647],[118,-7,69,-0.7358151755146249],[118,-7,70,-0.7355230015767829],[118,-7,71,-0.7352332532435598],[118,-7,72,-0.7349459354911597],[118,-7,73,-0.7346610532001498],[118,-7,74,-0.7343786111550118],[118,-7,75,-0.7340986140437249],[118,-7,76,-0.7338210664573348],[118,-7,77,-0.733545972889525],[118,-7,78,-0.7332733377361914],[118,-7,79,-0.7330031652950115],[118,-6,64,-0.7374383342536945],[118,-6,65,-0.7371337040104391],[118,-6,66,-0.7368314729029022],[118,-6,67,-0.73653164638462],[118,-6,68,-0.7362342298156437],[118,-6,69,-0.7359392284621179],[118,-6,70,-0.7356466474958427],[118,-6,71,-0.735356491993842],[118,-6,72,-0.7350687669379284],[118,-6,73,-0.7347834772142843],[118,-6,74,-0.7345006276130127],[118,-6,75,-0.7342202228277206],[118,-6,76,-0.7339422674550873],[118,-6,77,-0.7336667659944361],[118,-6,78,-0.7333937228473085],[118,-6,79,-0.7331231423170337],[118,-5,64,-0.737564591215977],[118,-5,65,-0.7372595554563024],[118,-5,66,-0.7369569186615623],[118,-5,67,-0.7366566862908568],[118,-5,68,-0.7363588637098082],[118,-5,69,-0.7360634561901385],[118,-5,70,-0.7357704689092326],[118,-5,71,-0.7354799069497056],[118,-5,72,-0.7351917752989678],[118,-5,73,-0.734906078848806],[118,-5,74,-0.7346228223949339],[118,-5,75,-0.7343420106365753],[118,-5,76,-0.7340636481760331],[118,-5,77,-0.7337877395182597],[118,-5,78,-0.7335142890704321],[118,-5,79,-0.7332433011415208],[118,-4,64,-0.7376910194389886],[118,-4,65,-0.7373855788927139],[118,-4,66,-0.7370825371380798],[118,-4,67,-0.7367818996397392],[118,-4,68,-0.7364836717688734],[118,-4,69,-0.7361878588027712],[118,-4,70,-0.7358944659243906],[118,-4,71,-0.7356034982219267],[118,-4,72,-0.7353149606883768],[118,-4,73,-0.7350288582211206],[118,-4,74,-0.7347451956214722],[118,-4,75,-0.7344639775942615],[118,-4,76,-0.734185208747404],[118,-4,77,-0.7339088935914713],[118,-4,78,-0.7336350365392652],[118,-4,79,-0.7333636419053877],[118,-3,64,-0.7378176190071024],[118,-3,65,-0.7375117744074721],[118,-3,66,-0.7372083284236641],[118,-3,67,-0.736907286525872],[118,-3,68,-0.7366086540908249],[118,-3,69,-0.7363124364013663],[118,-3,70,-0.7360186386460166],[118,-3,71,-0.7357272659185393],[118,-3,72,-0.7354383232175076],[118,-3,73,-0.7351518154458836],[118,-3,74,-0.7348677474105701],[118,-3,75,-0.7345861238219931],[118,-3,76,-0.73430694929367],[118,-3,77,-0.7340302283417807],[118,-3,78,-0.7337559653847421],[118,-3,79,-0.733484164742777],[118,-2,64,-0.7379443900019559],[118,-2,65,-0.7376381420856364],[118,-2,66,-0.737334292606781],[118,-2,67,-0.7370328470411123],[118,-2,68,-0.7367338107708955],[118,-2,69,-0.7364371890845178],[118,-2,70,-0.7361429871760499],[118,-2,71,-0.7358512101448128],[118,-2,72,-0.7355618629949442],[118,-2,73,-0.7352749506349778],[118,-2,74,-0.7349904778773946],[118,-2,75,-0.7347084494382048],[118,-2,76,-0.7344288699365177],[118,-2,77,-0.7341517438941112],[118,-2,78,-0.7338770757350065],[118,-2,79,-0.733604869785037],[118,-1,64,-0.7380713325024745],[118,-1,65,-0.737764682009549],[118,-1,66,-0.7374604297731749],[118,-1,67,-0.7371585812745916],[118,-1,68,-0.7368591419015891],[118,-1,69,-0.7365621169480859],[118,-1,70,-0.736267511613692],[118,-1,71,-0.7359753310032748],[118,-1,72,-0.7356855801265252],[118,-1,73,-0.735398263897537],[118,-1,74,-0.7351133871343584],[118,-1,75,-0.7348309545585738],[118,-1,76,-0.7345509707948731],[118,-1,77,-0.7342734403706214],[118,-1,78,-0.733998367715434],[118,-1,79,-0.7337257571607445],[118,0,64,-0.7381984465848496],[118,0,65,-0.7378913942588146],[118,0,66,-0.7375867400058482],[118,0,67,-0.737284489312695],[118,0,68,-0.7369846475726578],[118,0,69,-0.7366872200851755],[118,0,70,-0.7363922120553854],[118,0,71,-0.7360996285936897],[118,0,72,-0.7358094747153214],[118,0,73,-0.7355217553399234],[118,0,74,-0.7352364752910998],[118,0,75,-0.7349536392959986],[118,0,76,-0.734673251984879],[118,0,77,-0.7343953178906832],[118,0,78,-0.7341198414486099],[118,0,79,-0.7338468269956826],[118,1,64,-0.7383257323225914],[118,1,65,-0.7380182789103513],[118,1,66,-0.7377132233851125],[118,1,67,-0.7374105712391127],[118,1,68,-0.7371103278711557],[118,1,69,-0.7368124985861888],[118,1,70,-0.7365170885948653],[118,1,71,-0.7362241030131107],[118,1,72,-0.7359335468616887],[118,1,73,-0.73564542506578],[118,1,74,-0.735359742454534],[118,1,75,-0.7350765037606504],[118,1,76,-0.7347957136199479],[118,1,77,-0.7345173765709346],[118,1,78,-0.7342414970543818],[118,1,79,-0.7339680794128929],[118,2,64,-0.7384531897865146],[118,2,65,-0.738145336038378],[118,2,66,-0.7378398799885756],[118,2,67,-0.7375368271348265],[118,2,68,-0.7372361828814236],[118,2,69,-0.7369379525388107],[118,2,70,-0.7366421413231455],[118,2,71,-0.7363487543558656],[118,2,72,-0.7360577966632534],[118,2,73,-0.7357692731760167],[118,2,74,-0.7354831887288386],[118,2,75,-0.7351995480599598],[118,2,76,-0.7349183558107474],[118,2,77,-0.7346396165252647],[118,2,78,-0.7343633346498449],[118,2,79,-0.7340895145326608],[118,3,64,-0.7385808190447242],[118,3,65,-0.7382725657143985],[118,3,66,-0.737966709891126],[118,3,67,-0.7376632570780949],[118,3,68,-0.7373622126850747],[118,3,69,-0.7370635820279945],[118,3,70,-0.7367673703285043],[118,3,71,-0.736473582713542],[118,3,72,-0.7361822242148979],[118,3,73,-0.7358932997687949],[118,3,74,-0.735606814215439],[118,3,75,-0.7353227722986011],[118,3,76,-0.735041178665185],[118,3,77,-0.7347620378647988],[118,3,78,-0.7344853543493272],[118,3,79,-0.7342111324725011],[118,4,64,-0.7387086201626674],[118,4,65,-0.7383999680072556],[118,4,66,-0.7380937131649867],[118,4,67,-0.7377898611445057],[118,4,68,-0.7374884173610476],[118,4,69,-0.7371893871360141],[118,4,70,-0.7368927756965362],[118,4,71,-0.7365985881750401],[118,4,72,-0.7363068296088128],[118,4,73,-0.736017504939581],[118,4,74,-0.7357306190130619],[118,4,75,-0.7354461765785452],[118,4,76,-0.7351641822884614],[118,4,77,-0.7348846406979517],[118,4,78,-0.7346075562644416],[118,4,79,-0.7343329333472104],[118,5,64,-0.7388365932031127],[118,5,65,-0.738527542983108],[118,5,66,-0.7382208898796919],[118,5,67,-0.7379166394069546],[118,5,68,-0.737614796985584],[118,5,69,-0.7373153679424426],[118,5,70,-0.7370183575101305],[118,5,71,-0.736723770826551],[118,5,72,-0.7364316129344755],[118,5,73,-0.7361418887811231],[118,5,74,-0.7358546032177113],[118,5,75,-0.7355697609990377],[118,5,76,-0.7352873667830474],[118,5,77,-0.7350074251304046],[118,5,78,-0.7347299405040648],[118,5,79,-0.7344549172688442],[118,6,64,-0.7389647382261728],[118,6,65,-0.7386552907054539],[118,6,66,-0.7383482401021113],[118,6,67,-0.7380435919356677],[118,6,68,-0.7377413516322515],[118,6,69,-0.7374415245241748],[118,6,70,-0.7371441158494944],[118,6,71,-0.7368491307515788],[118,6,72,-0.7365565742786722],[118,6,73,-0.736266451383475],[118,6,74,-0.7359787669226935],[118,6,75,-0.7356935256566212],[118,6,76,-0.7354107322487078],[118,6,77,-0.7351303912651286],[118,6,78,-0.7348525071743586],[118,6,79,-0.7345770843467401],[118,7,64,-0.7390930552892817],[118,7,65,-0.7387832112351088],[118,7,66,-0.738475763896427],[118,7,67,-0.7381707187981791],[118,7,68,-0.7378680813719221],[118,7,69,-0.737567856955405],[118,7,70,-0.7372700507921299],[118,7,71,-0.7369746680309184],[118,7,72,-0.7366817137254764],[118,7,73,-0.7363911928339733],[118,7,74,-0.7361031102185926],[118,7,75,-0.7358174706451132],[118,7,76,-0.7355342787824775],[118,7,77,-0.7352535392023616],[118,7,78,-0.7349752563787482],[118,7,79,-0.7346994346874955],[118,8,64,-0.7392215444472487],[118,8,65,-0.7389113046302587],[118,8,66,-0.738603461324187],[118,8,67,-0.7382980200593844],[118,8,68,-0.7379949862728243],[118,8,69,-0.7376943653076804],[118,8,70,-0.7373961624128877],[118,8,71,-0.7371003827427095],[118,8,72,-0.7368070313563011],[118,8,73,-0.7365161132172899],[118,8,74,-0.736227633193325],[118,8,75,-0.7359415960556588],[118,8,76,-0.7356580064787157],[118,8,77,-0.7353768690396609],[118,8,78,-0.7350981882179748],[118,8,79,-0.7348219683950202],[118,9,64,-0.7393502057522432],[118,9,65,-0.7390395709464448],[118,9,66,-0.7387313324442905],[118,9,67,-0.7384254957815259],[118,9,68,-0.7381220664005288],[118,9,69,-0.7378210496498854],[118,9,70,-0.7375224507839517],[118,9,71,-0.7372262749624204],[118,9,72,-0.7369325272498848],[118,9,73,-0.736641212615418],[118,9,74,-0.7363523359321233],[118,9,75,-0.7360659019767161],[118,9,76,-0.7357819154290903],[118,9,77,-0.7355003808718898],[118,9,78,-0.735221302790081],[118,9,79,-0.7349446855705208],[118,10,64,-0.7394790392537803],[118,10,65,-0.7391680102365499],[118,10,66,-0.7388593773129728],[118,10,67,-0.7385531460241778],[118,10,68,-0.738249321817934],[118,10,69,-0.7379479100482278],[118,10,70,-0.7376489159748245],[118,10,71,-0.7373523447628341],[118,10,72,-0.7370582014822755],[118,10,73,-0.7367664911076565],[118,10,74,-0.736477218517523],[118,10,75,-0.7361903884940406],[118,10,76,-0.735906005722563],[118,10,77,-0.7356240747912007],[118,10,78,-0.7353446001903952],[118,10,79,-0.7350675863124865],[118,11,64,-0.739608044998774],[118,11,65,-0.7392966225508506],[118,11,66,-0.7389875959838592],[118,11,67,-0.7386809708442991],[118,11,68,-0.7383767525853184],[118,11,69,-0.7380749465662916],[118,11,70,-0.7377755580523805],[118,11,71,-0.7374785922141007],[118,11,72,-0.737184054126885],[118,11,73,-0.7368919487706636],[118,11,74,-0.7366022810294133],[118,11,75,-0.7363150556907392],[118,11,76,-0.7360302774454422],[118,11,77,-0.735747950887089],[118,11,78,-0.7354680805115847],[118,11,79,-0.7351906707167414],[118,12,64,-0.7397372230315145],[118,12,65,-0.7394254079369952],[118,12,66,-0.7391159885079419],[118,12,67,-0.7388089702962115],[118,12,68,-0.738504358760319],[118,12,69,-0.7382021592650141],[118,12,70,-0.7379023770808434],[118,12,71,-0.7376050173837154],[118,12,72,-0.7373100852544654],[118,12,73,-0.7370175856784338],[118,12,74,-0.7367275235450166],[118,12,75,-0.7364399036472465],[118,12,76,-0.736154730681361],[118,12,77,-0.7358720092463705],[118,12,78,-0.7355917438436335],[118,12,79,-0.7353139388764226],[118,13,64,-0.7398665733936919],[118,13,65,-0.7395543664400271],[118,13,66,-0.7392445549336035],[118,13,67,-0.7389371444316226],[118,13,68,-0.7386321403979537],[118,13,69,-0.7383295482027097],[118,13,70,-0.7380293731218092],[118,13,71,-0.7377316203365418],[118,13,72,-0.7374362949331326],[118,13,73,-0.7371434019023209],[118,13,74,-0.7368529461389101],[118,13,75,-0.7365649324413488],[118,13,76,-0.7362793655112988],[118,13,77,-0.7359962499532042],[118,13,78,-0.7357155902738644],[118,13,79,-0.735437390882002],[118,14,64,-0.7399960961243734],[118,14,65,-0.7396834981023623],[118,14,66,-0.7393732953065942],[118,14,67,-0.739065493299603],[118,14,68,-0.7387600975505991],[118,14,69,-0.7384571134350465],[118,14,70,-0.7381565462342233],[118,14,71,-0.7378584011347882],[118,14,72,-0.7375626832283435],[118,14,73,-0.7372693975110157],[118,14,74,-0.7369785488830035],[118,14,75,-0.7366901421481601],[118,14,76,-0.73640418201356],[118,14,77,-0.7361206730890689],[118,14,78,-0.7358396198869165],[118,14,79,-0.735561026821264],[118,15,64,-0.740125791260057],[118,15,65,-0.7398128029638424],[118,15,66,-0.7395022096700856],[118,15,67,-0.7391940169466397],[118,15,68,-0.7388882302680441],[118,15,69,-0.7385848550151005],[118,15,70,-0.7382838964744346],[118,15,71,-0.7379853598380615],[118,15,72,-0.7376892502029493],[118,15,73,-0.7373955725705987],[118,15,74,-0.7371043318465926],[118,15,75,-0.7368155328401764],[118,15,76,-0.7365291802638261],[118,15,77,-0.7362452787328173],[118,15,78,-0.7359638327647986],[118,15,79,-0.7356848467793587],[118,16,64,-0.740255658834656],[118,16,65,-0.73994228106172],[118,16,66,-0.7396312980646552],[118,16,67,-0.7393227154166214],[118,16,68,-0.7390165385974737],[118,16,69,-0.7387127729933396],[118,16,70,-0.7384114238961794],[118,16,71,-0.7381124965033523],[118,16,72,-0.73781599591718],[118,16,73,-0.7375219271445257],[118,16,74,-0.7372302950963436],[118,16,75,-0.7369411045872601],[118,16,76,-0.7366543603351409],[118,16,77,-0.7363700669606602],[118,16,78,-0.7360882289868738],[118,16,79,-0.7358088508387864],[118,17,64,-0.740385698879485],[118,17,65,-0.7400719324306437],[118,17,66,-0.7397605605282722],[118,17,67,-0.7394515887508234],[118,17,68,-0.7391450225834559],[118,17,69,-0.7388408674176097],[118,17,70,-0.7385391285505674],[118,17,71,-0.7382398111850199],[118,17,72,-0.73794292042863],[118,17,73,-0.7376484612936115],[118,17,74,-0.7373564386962781],[118,17,75,-0.7370668574566249],[118,17,76,-0.7367797222978956],[118,17,77,-0.7364950378461512],[118,17,78,-0.7362128086298437],[118,17,79,-0.7359330390793826],[118,18,64,-0.7405159114233123],[118,18,65,-0.7402017571027117],[118,18,66,-0.7398899970963502],[118,18,67,-0.7395806369879611],[118,18,68,-0.7392736822679933],[118,18,69,-0.7389691383331867],[118,18,70,-0.7386670104861339],[118,18,71,-0.7383673039348448],[118,18,72,-0.738070023792311],[118,18,73,-0.7377751750760845],[118,18,74,-0.7374827627078264],[118,18,75,-0.7371927915128889],[118,18,76,-0.7369052662198814],[118,18,77,-0.7366201914602407],[118,18,78,-0.7363375717678027],[118,18,79,-0.7360574115783705],[118,19,64,-0.7406462964923461],[118,19,65,-0.7403317551074566],[118,19,66,-0.7400196078017325],[118,19,67,-0.7397098601641746],[118,19,68,-0.739402517690509],[118,19,69,-0.7390975857827631],[118,19,70,-0.7387950697488261],[118,19,71,-0.7384949748020149],[118,19,72,-0.7381973060606372],[118,19,73,-0.7379020685475708],[118,19,74,-0.7376092671898127],[118,19,75,-0.7373189068180594],[118,19,76,-0.737030992166275],[118,19,77,-0.7367455278712596],[118,19,78,-0.7364625184722219],[118,19,79,-0.7361819684103468],[118,20,64,-0.7407768541102187],[118,20,65,-0.7404619264718305],[118,20,66,-0.7401493926746773],[118,20,67,-0.7398392583130142],[118,20,68,-0.7395315288878317],[118,20,69,-0.7392262098064314],[118,20,70,-0.7389233063819868],[118,20,71,-0.7386228238331088],[118,20,72,-0.7383247672834092],[118,20,73,-0.7380291417610793],[118,20,74,-0.737735952198439],[118,20,75,-0.7374452034315181],[118,20,76,-0.7371569001996227],[118,20,77,-0.7368710471449045],[118,20,78,-0.7365876488119336],[118,20,79,-0.7363067096472655],[118,21,64,-0.7409075842980402],[118,21,65,-0.7405922712202585],[118,21,66,-0.7402793517429108],[118,21,67,-0.7399688314654935],[118,21,68,-0.7396607158942483],[118,21,69,-0.7393550104417382],[118,21,70,-0.7390517204264083],[118,21,71,-0.7387508510721508],[118,21,72,-0.7384524075078687],[118,21,73,-0.7381563947670546],[118,21,74,-0.7378628177873396],[118,21,75,-0.7375716814100738],[118,21,76,-0.7372829903798938],[118,21,77,-0.7369967493442913],[118,21,78,-0.7367129628531857],[118,21,79,-0.7364316353584913],[118,22,64,-0.7410384870743763],[118,22,65,-0.740722789374616],[118,22,66,-0.7404094850316049],[118,22,67,-0.7400985796500669],[118,22,68,-0.7397900787414821],[118,22,69,-0.7394839877236619],[118,22,70,-0.7391803119203098],[118,22,71,-0.7388790565605868],[118,22,72,-0.7385802267786749],[118,22,73,-0.738283827613355],[118,22,74,-0.7379898640075571],[118,22,75,-0.7376983408079398],[118,22,76,-0.7374092627644581],[118,22,77,-0.7371226345299314],[118,22,78,-0.7368384606596172],[118,22,79,-0.7365567456107769],[118,23,64,-0.7411695624552705],[118,23,65,-0.7408534809542521],[118,23,66,-0.7405397925633996],[118,23,67,-0.7402285028926524],[118,23,68,-0.7399196174587152],[118,23,69,-0.7396131416846344],[118,23,70,-0.7393090808993599],[118,23,71,-0.739007440337308],[118,23,72,-0.7387082251379272],[118,23,73,-0.7384114403452746],[118,23,74,-0.7381170909075663],[118,23,75,-0.7378251816767571],[118,23,76,-0.7375357174081084],[118,23,77,-0.7372487027597558],[118,23,78,-0.7369641422922824],[118,23,79,-0.7366820404682853],[118,24,64,-0.7413008104542228],[118,24,65,-0.7409843459759661],[118,24,66,-0.7406702743583815],[118,24,67,-0.7403586012166091],[118,24,68,-0.7400493320725655],[118,24,69,-0.7397424723545198],[118,24,70,-0.7394380273966539],[118,24,71,-0.7391360024386279],[118,24,72,-0.738836402625143],[118,24,73,-0.7385392330055204],[118,24,74,-0.7382444985332499],[118,24,75,-0.7379522040655705],[118,24,76,-0.7376623543630374],[118,24,77,-0.7373749540890905],[118,24,78,-0.7370900078096267],[118,24,79,-0.7368075199925672],[118,25,64,-0.7414322310822417],[118,25,65,-0.7411153844540621],[118,25,66,-0.7408009304341356],[118,25,67,-0.7404888746427905],[118,25,68,-0.7401792226071414],[118,25,69,-0.7398719797606667],[118,25,70,-0.7395671514427679],[118,25,71,-0.7392647428983352],[118,25,72,-0.7389647592773106],[118,25,73,-0.7386672056342664],[118,25,74,-0.7383720869279535],[118,25,75,-0.7380794080208829],[118,25,76,-0.7377891736788914],[118,25,77,-0.7375013885707109],[118,25,78,-0.7372160572675407],[118,25,79,-0.7369331842426139],[118,26,64,-0.7415638243478301],[118,26,65,-0.741246596400333],[118,26,66,-0.740931760805732],[118,26,67,-0.7406193231895295],[118,26,68,-0.7403092890840253],[118,26,69,-0.7400016639278936],[118,26,70,-0.7396964530657425],[118,26,71,-0.7393936617476794],[118,26,72,-0.7390932951288743],[118,26,73,-0.7387953582691376],[118,26,74,-0.7384998561324694],[118,26,75,-0.7382067935866397],[118,26,76,-0.7379161754027548],[118,26,77,-0.7376280062548267],[118,26,78,-0.7373422907193448],[118,26,79,-0.7370590332748422],[118,27,64,-0.74169559025697],[118,27,65,-0.7413779818240458],[118,27,66,-0.7410627654857093],[118,27,67,-0.7407499468726231],[118,27,68,-0.7404395315222588],[118,27,69,-0.7401315248784733],[118,27,70,-0.7398259322910682],[118,27,71,-0.739522759015355],[118,27,72,-0.7392220102117186],[118,27,73,-0.738923690945195],[118,27,74,-0.7386278061850209],[118,27,75,-0.7383343608042126],[118,27,76,-0.738043359579134],[118,27,77,-0.7377548071890649],[118,27,78,-0.7374687082157725],[118,27,79,-0.7371850671430787],[118,28,64,-0.7418275288131758],[118,28,65,-0.7415095407319953],[118,28,66,-0.7411939444841287],[118,28,67,-0.7408807457053859],[118,28,68,-0.7405699499383966],[118,28,69,-0.7402615626321871],[118,28,70,-0.739955589141739],[118,28,71,-0.739652034727555],[118,28,72,-0.7393509045552221],[118,28,73,-0.7390522036949894],[118,28,74,-0.7387559371213165],[118,28,75,-0.7384621097124545],[118,28,76,-0.7381707262500123],[118,28,77,-0.737881791418525],[118,28,78,-0.7375953098050256],[118,28,79,-0.7373112858986131],[118,29,64,-0.7419596400174723],[118,29,65,-0.7416412731284808],[118,29,66,-0.7413252978085515],[118,29,67,-0.7410117196986274],[118,29,68,-0.7407005443464835],[118,29,69,-0.740391777206301],[118,29,70,-0.7400854236382289],[118,29,71,-0.7397814889079481],[118,29,72,-0.7394799781862345],[118,29,73,-0.739180896548537],[118,29,74,-0.7388842489745264],[118,29,75,-0.7385900403476755],[118,29,76,-0.7382982754548253],[118,29,77,-0.7380089589857546],[118,29,78,-0.7377220955327501],[118,29,79,-0.7374376895901751],[118,30,64,-0.7420919238684167],[118,30,65,-0.7417731790153298],[118,30,66,-0.7414568254640618],[118,30,67,-0.7411428688606755],[118,30,68,-0.7408313147580767],[118,30,69,-0.7405221686155893],[118,30,70,-0.7402154357985158],[118,30,71,-0.7399111215777019],[118,30,72,-0.7396092311290994],[118,30,73,-0.7393097695333445],[118,30,74,-0.739012741775306],[118,30,75,-0.7387181527436657],[118,30,76,-0.7384260072304849],[118,30,77,-0.738136309930773],[118,30,78,-0.7378490654420587],[118,30,79,-0.7375642782639577],[118,31,64,-0.7422243803620765],[118,31,65,-0.7419052583918744],[118,31,66,-0.7415885274532433],[118,31,67,-0.7412741931973522],[118,31,68,-0.7409622611822239],[118,31,69,-0.7406527368723111],[118,31,70,-0.7403456256380571],[118,31,71,-0.7400409327554587],[118,31,72,-0.7397386634056308],[118,31,73,-0.7394388226743835],[118,31,74,-0.7391414155517713],[118,31,75,-0.7388464469316722],[118,31,76,-0.738553921611355],[118,31,77,-0.7382638442910475],[118,31,78,-0.737976219573508],[118,31,79,-0.7376910519635924],[118,32,64,-0.7423570094920829],[118,32,65,-0.7420375112550055],[118,32,66,-0.7417204037762338],[118,32,67,-0.7414056927120284],[118,32,68,-0.741093383625516],[118,32,69,-0.7407834819862649],[118,32,70,-0.7404759931698446],[118,32,71,-0.7401709224573906],[118,32,72,-0.7398682750351675],[118,32,73,-0.7395680559941465],[118,32,74,-0.7392702703295543],[118,32,75,-0.7389749229404529],[118,32,76,-0.7386820186293058],[118,32,77,-0.7383915621015469],[118,32,78,-0.7381035579651518],[118,32,79,-0.7378180107302045],[118,33,64,-0.7424898112496161],[118,33,65,-0.7421699375991578],[118,33,66,-0.7418524544307089],[118,33,67,-0.7415373674056083],[118,33,68,-0.7412246820920727],[118,33,69,-0.7409144039647717],[118,33,70,-0.7406065384043885],[118,33,71,-0.7403010906971832],[118,33,72,-0.7399980660345572],[118,33,73,-0.7396974695126295],[118,33,74,-0.7393993061317864],[118,33,75,-0.7391035807962607],[118,33,76,-0.7388102983136984],[118,33,77,-0.7385194633947267],[118,33,78,-0.7382310806525262],[118,33,79,-0.7379451546023967],[118,34,64,-0.7426227856233887],[118,34,65,-0.7423025374162932],[118,34,66,-0.7419846794118673],[118,34,67,-0.741669217276514],[118,34,68,-0.741356156583526],[118,34,69,-0.7410455028126611],[118,34,70,-0.7407372613497019],[118,34,71,-0.7404314374860204],[118,34,72,-0.7401280364181407],[118,34,73,-0.7398270632473173],[118,34,74,-0.7395285229790827],[118,34,75,-0.7392324205228278],[118,34,76,-0.7389387606913682],[118,34,77,-0.738647548200512],[118,34,78,-0.7383587876686324],[118,34,79,-0.7380724836162328],[118,35,64,-0.7427559325997009],[118,35,65,-0.742435310695956],[118,35,66,-0.7421170787124844],[118,35,67,-0.7418012423207391],[118,35,68,-0.741487807099075],[118,35,69,-0.741176778532324],[118,35,70,-0.7408681620113549],[118,35,71,-0.7405619628326376],[118,35,72,-0.7402581861978065],[118,35,73,-0.7399568372132375],[118,35,74,-0.7396579208895965],[118,35,75,-0.7393614421414199],[118,35,76,-0.7390674057866796],[118,35,77,-0.7387758165463528],[118,35,78,-0.7384866790439919],[118,35,79,-0.7381999978052923],[118,36,64,-0.7428892521624167],[118,36,65,-0.7425682574252495],[118,36,66,-0.7422496523228895],[118,36,67,-0.7419334425318259],[118,36,68,-0.741619633635462],[118,36,69,-0.7413082311236899],[118,36,70,-0.7409992403924509],[118,36,71,-0.7406926667432996],[118,36,72,-0.7403885153829666],[118,36,73,-0.7400867914229363],[118,36,74,-0.7397874998789954],[118,36,75,-0.7394906456708119],[118,36,76,-0.7391962336215023],[118,36,77,-0.7389042684571991],[118,36,78,-0.7386147548066224],[118,36,79,-0.7383276972006465],[118,37,64,-0.7430227442929878],[118,37,65,-0.7427013775888585],[118,37,66,-0.7423824002309883],[118,37,67,-0.7420658179008884],[118,37,68,-0.741751636186996],[118,37,69,-0.74143986058425],[118,37,70,-0.7411304964936501],[118,37,71,-0.7408235492218223],[118,37,72,-0.7405190239805799],[118,37,73,-0.7402169258865027],[118,37,74,-0.7399172599604843],[118,37,75,-0.7396200311273122],[118,37,76,-0.739325244215234],[118,37,77,-0.7390329039555251],[118,37,78,-0.7387430149820606],[118,37,79,-0.7384555818308814],[118,38,64,-0.7431564089704288],[118,38,65,-0.7428346711690264],[118,38,66,-0.74251532242224],[118,38,67,-0.7421983684165885],[118,38,68,-0.7418838147455291],[118,38,69,-0.7415716669090333],[118,38,70,-0.741261930313146],[118,38,71,-0.74095461026955],[118,38,72,-0.7406497119951287],[118,38,73,-0.7403472406115434],[118,38,74,-0.740047201144782],[118,38,75,-0.7397495985247378],[118,38,76,-0.7394544375847768],[118,38,77,-0.7391617230613046],[118,38,78,-0.7388714595933386],[118,38,79,-0.7385836517220739],[118,39,64,-0.7432902461713733],[118,39,65,-0.7429681381456098],[118,39,66,-0.7426484188797116],[118,39,67,-0.7423310940651908],[118,39,68,-0.7420161693005107],[118,39,69,-0.7417036500906614],[118,39,70,-0.7413935418467188],[118,39,71,-0.7410858498854096],[118,39,72,-0.7407805794286728],[118,39,73,-0.7404777356032386],[118,39,74,-0.7401773234401751],[118,39,75,-0.739879347874469],[118,39,76,-0.7395838137445914],[118,39,77,-0.7392907257920653],[118,39,78,-0.7390000886610378],[118,39,79,-0.7387119068978457],[118,40,64,-0.7434242558700568],[118,40,65,-0.7431017784960622],[118,40,66,-0.7427816895840618],[118,40,67,-0.7424639948305466],[118,40,68,-0.742148699838972],[118,40,69,-0.7418358101193323],[118,40,70,-0.741525331087721],[118,40,71,-0.7412172680658944],[118,40,72,-0.740911626280834],[118,40,73,-0.7406084108643247],[118,40,74,-0.7403076268525024],[118,40,75,-0.7400092791854336],[118,40,76,-0.7397133727066812],[118,40,77,-0.7394199121628735],[118,40,78,-0.7391289022032737],[118,40,79,-0.738840347379348],[118,41,64,-0.7435584380383018],[118,41,65,-0.7432355921954186],[118,41,66,-0.7429151345135253],[118,41,67,-0.7425970706940781],[118,41,68,-0.7422814063455095],[118,41,69,-0.7419681469828047],[118,41,70,-0.7416572980270602],[118,41,71,-0.7413488648050481],[118,41,72,-0.7410428525487791],[118,41,73,-0.7407392663950794],[118,41,74,-0.7404381113851388],[118,41,75,-0.7401393924640903],[118,41,76,-0.7398431144805765],[118,41,77,-0.7395492821863165],[118,41,78,-0.7392579002356785],[118,41,79,-0.7389689731852446],[118,42,64,-0.743692792645572],[118,42,65,-0.7433695792163497],[118,42,66,-0.7430487536439679],[118,42,67,-0.7427303216348329],[118,42,68,-0.7424142888023406],[118,42,69,-0.7421006606664524],[118,42,70,-0.7417894426532541],[118,42,71,-0.7414806400945201],[118,42,72,-0.7411742582272759],[118,42,73,-0.7408703021933756],[118,42,74,-0.7405687770390496],[118,42,75,-0.7402696877144842],[118,42,76,-0.7399730390733881],[118,42,77,-0.7396788358725591],[118,42,78,-0.7393870827714565],[118,42,79,-0.7390977843317663],[118,43,64,-0.7438273196589489],[118,43,65,-0.7435037395291388],[118,43,66,-0.7431825469488621],[118,43,67,-0.7428637476294604],[118,43,68,-0.7425473471892788],[118,43,69,-0.7422333511532407],[118,43,70,-0.741921764952407],[118,43,71,-0.7416125939235405],[118,43,72,-0.7413058433086678],[118,43,73,-0.7410015182546572],[118,43,74,-0.7406996238127662],[118,43,75,-0.7404001649382215],[118,43,76,-0.740103146489784],[118,43,77,-0.7398085732293176],[118,43,78,-0.7395164498213597],[118,43,79,-0.7392267808326876],[118,44,64,-0.7439620190431547],[118,44,65,-0.7436380731017049],[118,44,66,-0.7433165143993106],[118,44,67,-0.742997348652235],[118,44,68,-0.7426805814837576],[118,44,69,-0.7423662184237494],[118,44,70,-0.7420542649082327],[118,44,71,-0.7417447262789442],[118,44,72,-0.7414376077828981],[118,44,73,-0.7411329145719632],[118,44,74,-0.7408306517024106],[118,44,75,-0.7405308241344934],[118,44,76,-0.7402334367320126],[118,44,77,-0.7399384942618842],[118,44,78,-0.739646001393711],[118,44,79,-0.7393559626993488],[118,45,64,-0.744096890760529],[118,45,65,-0.7437725798995781],[118,45,66,-0.7434506559640227],[118,45,67,-0.7431311246750321],[118,45,68,-0.7428139916608061],[118,45,69,-0.7424992624561491],[118,45,70,-0.7421869425020301],[118,45,71,-0.7418770371451463],[118,45,72,-0.7415695516374854],[118,45,73,-0.7412644911359028],[118,45,74,-0.7409618607016697],[118,45,75,-0.7406616653000523],[118,45,76,-0.7403639097998779],[118,45,77,-0.7400685989731018],[118,45,78,-0.7397757374943796],[118,45,79,-0.7394853299406323],[118,46,64,-0.7442319347710833],[118,46,65,-0.743907259885956],[118,46,66,-0.7435849716093687],[118,46,67,-0.743265075667383],[118,46,68,-0.742947577693104],[118,46,69,-0.7426324832262555],[118,46,70,-0.7423197977127389],[118,46,71,-0.7420095265041975],[118,46,72,-0.7417016748575784],[118,46,73,-0.7413962479347105],[118,46,74,-0.7410932508018508],[118,46,75,-0.7407926884292655],[118,46,76,-0.7404945656907947],[118,46,77,-0.74019888736342],[118,46,78,-0.7399056581268364],[118,46,79,-0.7396148825630171],[118,47,64,-0.744367151032485],[118,47,65,-0.7440421130216855],[118,47,66,-0.7437194612993641],[118,47,67,-0.7433992015964589],[118,47,68,-0.7430813395509661],[118,47,69,-0.7427658807075141],[118,47,70,-0.7424528305169227],[118,47,71,-0.7421421943357672],[118,47,72,-0.7418339774259404],[118,47,73,-0.7415281849542297],[118,47,74,-0.7412248219918657],[118,47,75,-0.7409238935141],[118,47,76,-0.7406254043997724],[118,47,77,-0.7403293594308775],[118,47,78,-0.7400357632921367],[118,47,79,-0.7397446205705629],[118,48,64,-0.7445025395000416],[118,48,65,-0.7441771392652495],[118,48,66,-0.7438541249956535],[118,48,67,-0.7435335024270545],[118,48,68,-0.7432152772023249],[118,48,69,-0.7428994548709832],[118,48,70,-0.7425860408887531],[118,48,71,-0.7422750406171278],[118,48,72,-0.7419664593229314],[118,48,73,-0.7416603021778968],[118,48,74,-0.7413565742582132],[118,48,75,-0.7410552805441051],[118,48,76,-0.7407564259193979],[118,48,77,-0.7404600151710863],[118,48,78,-0.7401660529889046],[118,48,79,-0.7398745439648924],[118,49,64,-0.7446381001267555],[118,49,65,-0.744312338572819],[118,49,66,-0.7439889626575655],[118,49,67,-0.7436679781216434],[118,49,68,-0.7433493906127866],[118,49,69,-0.7430332056853892],[118,49,70,-0.7427194288000645],[118,49,71,-0.7424080653232092],[118,49,72,-0.7420991205265648],[118,49,73,-0.7417925995867956],[118,49,74,-0.7414885075850355],[118,49,75,-0.7411868495064681],[118,49,76,-0.7408876302398916],[118,49,77,-0.7405908545772866],[118,49,78,-0.7402965272133875],[118,49,79,-0.7400046527452475],[118,50,64,-0.7447738328633077],[118,50,65,-0.7444477108982391],[118,50,66,-0.7441239742420966],[118,50,67,-0.7438026286403614],[118,50,68,-0.7434836797456144],[118,50,69,-0.7431671331171104],[118,50,70,-0.742852994220338],[118,50,71,-0.7425412684265829],[118,50,72,-0.7422319610124901],[118,50,73,-0.741925077159641],[118,50,74,-0.7416206219541006],[118,50,75,-0.7413186003859977],[118,50,76,-0.7410190173490896],[118,50,77,-0.7407218776403298],[118,50,78,-0.7404271859594393],[118,50,79,-0.740134946908472],[118,51,64,-0.7449097376580421],[118,51,65,-0.7445832561930115],[118,51,66,-0.7442591597038948],[118,51,67,-0.7439374539409906],[118,51,68,-0.7436181445617122],[118,51,69,-0.7433012371301605],[118,51,70,-0.7429867371166847],[118,51,71,-0.7426746498974455],[118,51,72,-0.7423649807539766],[118,51,73,-0.7420577348727626],[118,51,74,-0.7417529173447862],[118,51,75,-0.7414505331651072],[118,51,76,-0.7411505872324284],[118,51,77,-0.7408530843486628],[118,51,78,-0.7405580292185047],[118,51,79,-0.7402654264489954],[118,52,64,-0.7450458144570203],[118,52,65,-0.7447189744063504],[118,52,66,-0.7443945189953146],[118,52,67,-0.7440724539790144],[118,52,68,-0.7437527850196799],[118,52,69,-0.7434355176862437],[118,52,70,-0.7431206574539013],[118,52,71,-0.7428082097036732],[118,52,72,-0.7424981797219685],[118,52,73,-0.7421905727001604],[118,52,74,-0.7418853937341351],[118,52,75,-0.7415826478238698],[118,52,76,-0.7412823398729992],[118,52,77,-0.7409844746883822],[118,52,78,-0.7406890569796731],[118,52,79,-0.7403960913588874],[118,53,64,-0.7451820632039972],[118,53,65,-0.7448548654851578],[118,53,66,-0.7445300520663934],[118,53,67,-0.744207628707593],[118,53,68,-0.7438876010757889],[118,53,69,-0.7435699747447309],[118,53,70,-0.7432547551944452],[118,53,71,-0.7429419478107987],[118,53,72,-0.7426315578850609],[118,53,73,-0.7423235906134795],[118,53,74,-0.7420180510968304],[118,53,75,-0.7417149443399942],[118,53,76,-0.7414142752515238],[118,53,77,-0.7411160486432103],[118,53,78,-0.7408202692296549],[118,53,79,-0.7405269416278337],[118,54,64,-0.7453184838404452],[118,54,65,-0.7449909293740473],[118,54,66,-0.7446657588648742],[118,54,67,-0.7443429780775873],[118,54,68,-0.744022592684006],[118,54,69,-0.7437046082626818],[118,54,70,-0.7433890302984583],[118,54,71,-0.7430758641820332],[118,54,72,-0.742765115209522],[118,54,73,-0.7424567885820337],[118,54,74,-0.7421508894052185],[118,54,75,-0.7418474226888474],[118,54,76,-0.7415463933463773],[118,54,77,-0.7412478061945182],[118,54,78,-0.7409516659528044],[118,54,79,-0.7406579772431595],[118,55,64,-0.745455076305529],[118,55,65,-0.7451271660153197],[118,55,66,-0.7448016393361818],[118,55,67,-0.7444785020375341],[118,55,68,-0.7441577597959679],[118,55,69,-0.7438394181948222],[118,55,70,-0.7435234827237421],[118,55,71,-0.7432099587782426],[118,55,72,-0.7428988516592704],[118,55,73,-0.7425901665727809],[118,55,74,-0.7422839086292854],[118,55,75,-0.7419800828434308],[118,55,76,-0.7416786941335642],[118,55,77,-0.741379747321301],[118,55,78,-0.7410832471310947],[118,55,79,-0.7407891981898038],[118,56,64,-0.7455918405361615],[118,56,65,-0.745263575349018],[118,56,66,-0.7449376934234777],[118,56,67,-0.7446142005337014],[118,56,68,-0.7442931023610377],[118,56,69,-0.7439744044935979],[118,56,70,-0.7436581124258138],[118,56,71,-0.7433442315580027],[118,56,72,-0.7430327671959285],[118,56,73,-0.7427237245503786],[118,56,74,-0.7424171087367111],[118,56,75,-0.7421129247744347],[118,56,76,-0.7418111775867731],[118,56,77,-0.7415118720002328],[118,56,78,-0.7412150127441739],[118,56,79,-0.7409206044503752],[118,57,64,-0.7457287764669875],[118,57,65,-0.7454001573129113],[118,57,66,-0.7450739210676438],[118,57,67,-0.7447500735100725],[118,57,68,-0.7444286203262881],[118,57,69,-0.7441095671091585],[118,57,70,-0.7437929193578886],[118,57,71,-0.7434786824775828],[118,57,72,-0.7431668617788072],[118,57,73,-0.742857462477167],[118,57,74,-0.7425504896928534],[118,57,75,-0.7422459484502222],[118,57,76,-0.74194384367736],[118,57,77,-0.7416441802056509],[118,57,78,-0.7413469627693472],[118,57,79,-0.7410521960051357],[118,58,64,-0.7458658840303671],[118,58,65,-0.7455369118424785],[118,58,66,-0.7452103222072661],[118,58,67,-0.7448861209083288],[118,58,68,-0.7445643136364839],[118,58,69,-0.7442449059893417],[118,58,70,-0.7439279034708639],[118,58,71,-0.743613311490928],[118,58,72,-0.7433011353648883],[118,58,73,-0.7429913803131527],[118,58,74,-0.7426840514607308],[118,58,75,-0.7423791538368121],[118,58,76,-0.7420766923743318],[118,58,77,-0.7417766719095378],[118,58,78,-0.741479097181561],[118,58,79,-0.7411839728319825],[118,59,64,-0.7460031631564307],[118,59,65,-0.7456738388709632],[118,59,66,-0.7453468967786899],[118,59,67,-0.7450223426679056],[118,59,68,-0.7447001822341389],[118,59,69,-0.7443804210797271],[118,59,70,-0.7440630647133747],[118,59,71,-0.7437481185497167],[118,59,72,-0.7434355879088808],[118,59,73,-0.7431254780160634],[118,59,74,-0.7428177940010785],[118,59,75,-0.7425125408979345],[118,59,76,-0.7422097236444016],[118,59,77,-0.7419093470815772],[118,59,78,-0.7416114159534579],[118,59,79,-0.7413159349065045],[118,60,64,-0.7461406137730553],[118,60,65,-0.7458109383293499],[118,60,66,-0.7454836447159954],[118,60,67,-0.7451587387259672],[118,60,68,-0.7448362260594901],[118,60,69,-0.7445161123236133],[118,60,70,-0.7441984030317684],[118,60,71,-0.7438831036033338],[118,60,72,-0.7435702193631952],[118,60,73,-0.743259755541324],[118,60,74,-0.7429517172723229],[118,60,75,-0.742646109595006],[118,60,76,-0.7423429374519637],[118,60,77,-0.7420422056891295],[118,60,78,-0.7417439190553514],[118,60,79,-0.7414480822019568],[118,61,64,-0.7462782358058874],[118,61,65,-0.7459482101463867],[118,61,66,-0.7456205659510211],[118,61,67,-0.745295309017431],[118,61,68,-0.7449724450505222],[118,61,69,-0.7446519796620401],[118,61,70,-0.7443339183701291],[118,61,71,-0.7440182665988951],[118,61,72,-0.7437050296779684],[118,61,73,-0.7433942128420792],[118,61,74,-0.7430858212306056],[118,61,75,-0.7427798598871527],[118,61,76,-0.7424763337591169],[118,61,77,-0.7421752476972543],[118,61,78,-0.7418766064552498],[118,61,79,-0.7415804146892844],[118,62,64,-0.7464160291783191],[118,62,65,-0.7460856542485613],[118,62,66,-0.7457576604133391],[118,62,67,-0.7454320534749422],[118,62,68,-0.7451088391429417],[118,62,69,-0.7447880230337642],[118,62,70,-0.7444696106702515],[118,62,71,-0.7441536074812226],[118,62,72,-0.7438400188010368],[118,62,73,-0.743528849869169],[118,62,74,-0.7432201058297581],[118,62,75,-0.7429137917311855],[118,62,76,-0.7426099125256402],[118,62,77,-0.7423084730686856],[118,62,78,-0.7420094781188311],[118,62,79,-0.7417129323370962],[118,63,64,-0.7465539938115426],[118,63,65,-0.7462232705601566],[118,63,66,-0.7458949280303111],[118,63,67,-0.7455689720289298],[118,63,68,-0.7452454082702336],[118,63,69,-0.7449242423753151],[118,63,70,-0.7446054798716981],[118,63,71,-0.7442891261928999],[118,63,72,-0.7439751866779936],[118,63,73,-0.7436636665711844],[118,63,74,-0.7433545710213575],[118,63,75,-0.7430479050816561],[118,63,76,-0.7427436737090471],[118,63,77,-0.7424418817638881],[118,63,78,-0.7421425340094979],[118,63,79,-0.741845635111722],[118,64,64,-0.746692129624535],[118,64,65,-0.7463610590032332],[118,64,66,-0.746032368727071],[118,64,67,-0.7457060646075893],[118,64,68,-0.7453821523636437],[118,64,69,-0.7450606376209775],[118,64,70,-0.7447415259117811],[118,64,71,-0.7444248226742548],[118,64,72,-0.744110533252171],[118,64,73,-0.7437986628944505],[118,64,74,-0.7434892167547096],[118,64,75,-0.7431821998908392],[118,64,76,-0.74287761726457],[118,64,77,-0.7425754737410393],[118,64,78,-0.7422757740883617],[118,64,79,-0.7419785229771944],[118,65,64,-0.7468304365340404],[118,65,65,-0.7464990194976145],[118,65,66,-0.7461699824265089],[118,65,67,-0.745843331136867],[118,65,68,-0.745519071352163],[118,65,69,-0.7451972087027755],[118,65,70,-0.7448777487255462],[118,65,71,-0.7445606968633437],[118,65,72,-0.7442460584646242],[118,65,73,-0.7439338387830091],[118,65,74,-0.7436240429768317],[118,65,75,-0.743316676108716],[118,65,76,-0.7430117431451421],[118,65,77,-0.7427092489560125],[118,65,78,-0.742409198314224],[118,65,79,-0.7421115958952316],[118,66,64,-0.7469689144546261],[118,66,65,-0.7466371519609403],[118,66,66,-0.7463077690493263],[118,66,67,-0.7459807715405146],[118,66,68,-0.7456561651625822],[118,66,69,-0.7453339555505274],[118,66,70,-0.7450141482458283],[118,66,71,-0.7446967486960059],[118,66,72,-0.744381762254186],[118,66,73,-0.7440691941786751],[118,66,74,-0.743759049632509],[118,66,75,-0.7434513336830304],[118,66,76,-0.7431460513014537],[118,66,77,-0.7428432073624336],[118,66,78,-0.7425428066436338],[118,66,79,-0.7422448538252939],[118,67,64,-0.7471075632986582],[118,67,65,-0.7467754563086431],[118,67,66,-0.7464457285140117],[118,67,67,-0.7461183857400651],[118,67,68,-0.7457934337194676],[118,67,69,-0.7454708780918218],[118,67,70,-0.7451507244032263],[118,67,71,-0.7448329781058399],[118,67,72,-0.7445176445574422],[118,67,73,-0.7442047290210109],[118,67,74,-0.7438942366642689],[118,67,75,-0.7435861725592624],[118,67,76,-0.743280541681927],[118,67,77,-0.7429773489116542],[118,67,78,-0.7426765990308614],[118,67,79,-0.7423782967245579],[118,68,64,-0.7472463829763247],[118,68,65,-0.746913932453972],[118,68,66,-0.7465838607368638],[118,68,67,-0.7462561736548557],[118,68,68,-0.7459308769451842],[118,68,69,-0.7456079762520398],[118,68,70,-0.7452874771261269],[118,68,71,-0.7449693850242258],[118,68,72,-0.7446537053087559],[118,68,73,-0.7443404432473502],[118,68,74,-0.744029604012404],[118,68,75,-0.7437211926806534],[118,68,76,-0.7434152142327395],[118,68,77,-0.7431116735527765],[118,68,78,-0.7428105754279215],[118,68,79,-0.7425119245479399],[118,69,64,-0.7473853733956106],[118,69,65,-0.7470525803079671],[118,69,66,-0.7467221656319668],[118,69,67,-0.746394135202004],[118,69,68,-0.7460684947598708],[118,69,69,-0.7457452499543311],[118,69,70,-0.7454244063406786],[118,69,71,-0.7451059693803009],[118,69,72,-0.7447899444402408],[118,69,73,-0.7444763367927723],[118,69,74,-0.7441651516149483],[118,69,75,-0.7438563939881794],[118,69,76,-0.7435500688977983],[118,69,77,-0.7432461812326274],[118,69,78,-0.7429447357845489],[118,69,79,-0.7426457372480706],[118,70,64,-0.7475245344623542],[118,70,65,-0.7471913997795158],[118,70,66,-0.746860643111246],[118,70,67,-0.7465322702964623],[118,70,68,-0.7462062870814965],[118,70,69,-0.7458826991196693],[118,70,70,-0.7455615119708494],[118,70,71,-0.7452427311010155],[118,70,72,-0.7449263618818186],[118,70,73,-0.744612409590159],[118,70,74,-0.7443008794077318],[118,70,75,-0.7439917764206077],[118,70,76,-0.7436851056187963],[118,70,77,-0.7433808718958138],[118,70,78,-0.7430790800482535],[118,70,79,-0.7427797347753508],[118,71,64,-0.7476638660802297],[118,71,65,-0.7473303907753354],[118,71,66,-0.7469992930844513],[118,71,67,-0.7466705788510016],[118,71,68,-0.7463442538258422],[118,71,69,-0.7460203236668352],[118,71,70,-0.7456987939384079],[118,71,71,-0.745379670111115],[118,71,72,-0.7450629575612009],[118,71,73,-0.744748661570176],[118,71,74,-0.7444367873243639],[118,71,75,-0.7441273399144798],[118,71,76,-0.7438203243351955],[118,71,77,-0.7435157454847068],[118,71,78,-0.7432136081643034],[118,71,79,-0.7429139170779346],[118,72,64,-0.7478033681507308],[118,72,65,-0.7474695531999567],[118,72,66,-0.7471381154591399],[118,72,67,-0.7468090607761947],[118,72,68,-0.7464823949064854],[118,72,69,-0.7461581235123996],[118,72,70,-0.7458362521629074],[118,72,71,-0.7455167863331242],[118,72,72,-0.7451997314038724],[118,72,73,-0.7448850926612576],[118,72,74,-0.7445728752962161],[118,72,75,-0.7442630844040932],[118,72,76,-0.7439557249842086],[118,72,77,-0.7436508019394226],[118,72,78,-0.7433483200757073],[118,72,79,-0.7430482841017116],[118,73,64,-0.7479430405732264],[118,73,65,-0.74760888695578],[118,73,66,-0.7472771101407323],[118,73,67,-0.7469477159804718],[118,73,68,-0.7466207102348549],[118,73,69,-0.7462960985707789],[118,73,70,-0.7459738865617414],[118,73,71,-0.7456540796874024],[118,73,72,-0.7453366833331468],[118,73,73,-0.7450217027896608],[118,73,74,-0.744709143252478],[118,73,75,-0.7443990098215589],[118,73,76,-0.744091307500856],[118,73,77,-0.74378604119788],[118,73,78,-0.7434832157232709],[118,73,79,-0.7431828357903628],[118,74,64,-0.7480828832449358],[118,74,65,-0.7477483919430498],[118,74,66,-0.7474162770324874],[118,74,67,-0.7470865443700955],[118,74,68,-0.7467591997202063],[118,74,69,-0.7464342487542108],[118,74,70,-0.7461116970501183],[118,74,71,-0.745791550092118],[118,74,72,-0.7454738132701422],[118,74,73,-0.7451584918794412],[118,74,74,-0.7448455911201317],[118,74,75,-0.7445351160967746],[118,74,76,-0.74422707181794],[118,74,77,-0.7439214631957745],[118,74,78,-0.7436182950455713],[118,74,79,-0.7433175720853356],[118,75,64,-0.748222896060952],[118,75,65,-0.7478880680598783],[118,75,66,-0.7475556160355261],[118,75,67,-0.7472255458491845],[118,75,68,-0.7468978632696452],[118,75,69,-0.7465725739727773],[118,75,70,-0.7462496835410855],[118,75,71,-0.7459291974632728],[118,75,72,-0.7456111211338031],[118,75,73,-0.7452954598524762],[118,75,74,-0.7449822188239762],[118,75,75,-0.7446714031574491],[118,75,76,-0.7443630178660683],[118,75,77,-0.7440570678666012],[118,75,78,-0.74375355797898],[118,75,79,-0.7434524929258666],[118,76,64,-0.7483630789142168],[118,76,65,-0.7480279152022203],[118,76,66,-0.747695127048806],[118,76,67,-0.7473647203196881],[118,76,68,-0.7470367007881022],[118,76,69,-0.7467110741343791],[118,76,70,-0.7463878459455032],[118,76,71,-0.7460670217146759],[118,76,72,-0.7457486068408765],[118,76,73,-0.7454326066284394],[118,76,74,-0.7451190262866005],[118,76,75,-0.7448078709290762],[118,76,76,-0.7444991455736282],[118,76,77,-0.74419285514163],[118,76,78,-0.7438890044576381],[118,76,79,-0.7435875982489564],[118,77,64,-0.7485034316955769],[118,77,65,-0.7481679332639299],[118,77,66,-0.7478348099691774],[118,77,67,-0.7475040676814426],[118,77,68,-0.7471757121783889],[118,77,69,-0.7468497491447923],[118,77,70,-0.7465261841721015],[118,77,71,-0.7462050227579998],[118,77,72,-0.7458862703059673],[118,77,73,-0.7455699321248567],[118,77,74,-0.7452560134284409],[118,77,75,-0.7449445193349914],[118,77,76,-0.744635454866843],[118,77,77,-0.7443288249499609],[118,77,78,-0.7440246344135111],[118,77,79,-0.7437228879894254],[118,78,64,-0.7486439542937667],[118,78,65,-0.7483081221367425],[118,78,66,-0.7479746646913662],[118,78,67,-0.7476435878321542],[118,78,68,-0.7473148973411805],[118,78,69,-0.7469885989076511],[118,78,70,-0.7466646981274624],[118,78,71,-0.746343200502764],[118,78,72,-0.7460241114415211],[118,78,73,-0.7457074362570892],[118,78,74,-0.7453931801677631],[118,78,75,-0.7450813482963539],[118,78,76,-0.7447719456697547],[118,78,77,-0.7444649772185075],[118,78,78,-0.7441604477763731],[118,78,79,-0.7438583620798969],[118,79,64,-0.7487846465953916],[118,79,65,-0.7484484817102579],[118,79,66,-0.748114691107957],[118,79,67,-0.7477832806673811],[118,79,68,-0.7474542561749989],[118,79,69,-0.7471276233244301],[118,79,70,-0.7468033877160026],[118,79,71,-0.7464815548563168],[118,79,72,-0.7461621301578067],[118,79,73,-0.745845118938316],[118,79,74,-0.7455305264206448],[118,79,75,-0.7452183577321293],[118,79,76,-0.7449086179042061],[118,79,77,-0.7446013118719786],[118,79,78,-0.7442964444737881],[118,79,79,-0.7439940204507784],[118,80,64,-0.7489255084849833],[118,80,65,-0.7485890118719973],[118,80,66,-0.7482548891094492],[118,80,67,-0.7479231460805907],[118,80,68,-0.7475937885762691],[118,80,69,-0.7472668222945009],[118,80,70,-0.7469422528400302],[118,80,71,-0.7466200857238919],[118,80,72,-0.7463003263629732],[118,80,73,-0.7459829800795894],[118,80,74,-0.745668052101032],[118,80,75,-0.7453555475591467],[118,80,76,-0.7450454714898975],[118,80,77,-0.7447378288329353],[118,80,78,-0.7444326244311665],[118,80,79,-0.7441298630303195],[118,81,64,-0.7490665398449757],[118,81,65,-0.7487297125073771],[118,81,66,-0.7483952585842315],[118,81,67,-0.7480631839631339],[118,81,68,-0.7477334944392933],[118,81,69,-0.747406195715107],[118,81,70,-0.7470812933997191],[118,81,71,-0.7467587930085826],[118,81,72,-0.7464386999630226],[118,81,73,-0.7461210195898109],[118,81,74,-0.7458057571207141],[118,81,75,-0.7454929176920715],[118,81,76,-0.7451825063443609],[118,81,77,-0.7448745280217646],[118,81,78,-0.7445689875717397],[118,81,79,-0.7442658897445841],[118,82,64,-0.7492077405557278],[118,82,65,-0.7488705834997327],[118,82,66,-0.7485357994186058],[118,82,67,-0.7482033942042682],[118,82,68,-0.7478733736562746],[118,82,69,-0.7475457434813866],[118,82,70,-0.7472205092931317],[118,82,71,-0.7468976766113661],[118,82,72,-0.7465772508618358],[118,82,73,-0.7462592373757535],[118,82,74,-0.7459436413893458],[118,82,75,-0.7456304680434306],[118,82,76,-0.7453197223829833],[118,82,77,-0.7450114093567031],[118,82,78,-0.744705533816583],[118,82,79,-0.7444021005174759],[118,83,64,-0.7493491104954983],[118,83,65,-0.7490116247302933],[118,83,66,-0.7486765114967611],[118,83,67,-0.7483437766911327],[118,83,68,-0.7480134261172915],[118,83,69,-0.7476854654863473],[118,83,70,-0.7473599004161948],[118,83,71,-0.7470367364310766],[118,83,72,-0.7467159789611446],[118,83,73,-0.7463976333420366],[118,83,74,-0.7460817048144227],[118,83,75,-0.7457681985235848],[118,83,76,-0.7454571195189806],[118,83,77,-0.7451484727538111],[118,83,78,-0.7448422630845901],[118,83,79,-0.7445384952707106],[118,84,64,-0.7494906495405025],[118,84,65,-0.7491528360782381],[118,84,66,-0.748817394700831],[118,84,67,-0.7484843313088045],[118,84,68,-0.7481536517103548],[118,84,69,-0.7478253616209228],[118,84,70,-0.7474994666627546],[118,84,71,-0.7471759723644629],[118,84,72,-0.7468548841605898],[118,84,73,-0.7465362073911815],[118,84,74,-0.7462199473013376],[118,84,75,-0.745906109040787],[118,84,76,-0.7455946976634552],[118,84,77,-0.7452857181270293],[118,84,78,-0.7449791752925294],[118,84,79,-0.7446750739238739],[118,85,64,-0.7496323575648942],[118,85,65,-0.7492942174206794],[118,85,66,-0.7489584489108752],[118,85,67,-0.7486250579402813],[118,85,68,-0.7482940503213892],[118,85,69,-0.7479654317739552],[118,85,70,-0.7476392079245601],[118,85,71,-0.7473153843061706],[118,85,72,-0.7469939663577025],[118,85,73,-0.7466749594235957],[118,85,74,-0.7463583687533621],[118,85,75,-0.7460441995011635],[118,85,76,-0.7457324567253767],[118,85,77,-0.7454231453881608],[118,85,78,-0.7451162703550266],[118,85,79,-0.7448118363944027],[118,86,64,-0.7497742344407493],[118,86,65,-0.7494357686326443],[118,86,66,-0.7490996740048628],[118,86,67,-0.7487659564664635],[118,86,68,-0.7484346218342168],[118,86,69,-0.7481056758321778],[118,86,70,-0.747779124091245],[118,86,71,-0.7474549721487239],[118,86,72,-0.7471332254478875],[118,86,73,-0.7468138893375532],[118,86,74,-0.7464969690716299],[118,86,75,-0.7461824698086962],[118,86,76,-0.7458703966115656],[118,86,77,-0.7455607544468532],[118,86,78,-0.745253548184546],[118,86,79,-0.7449487825975679],[118,87,64,-0.7499162800381216],[118,87,65,-0.7495774895871322],[118,87,66,-0.7492410698587284],[118,87,67,-0.7489070267662112],[118,87,68,-0.7485753661306129],[118,87,69,-0.7482460936802708],[118,87,70,-0.7479192150503852],[118,87,71,-0.7475947357825831],[118,87,72,-0.7472726613244791],[118,87,73,-0.7469529970292522],[118,87,74,-0.7466357481551927],[118,87,75,-0.7463209198652803],[118,87,76,-0.7460085172267493],[118,87,77,-0.745698545210656],[118,87,78,-0.7453910086914481],[118,87,79,-0.7450859124465304],[118,88,64,-0.7500584942250257],[118,88,65,-0.7497193801550971],[118,88,66,-0.7493826363463554],[118,88,67,-0.749048268716327],[118,88,68,-0.7487162830902894],[118,88,69,-0.7483866852008451],[118,88,70,-0.7480594806874798],[118,88,71,-0.747734675096126],[118,88,72,-0.7474122738787239],[118,88,73,-0.7470922823927976],[118,88,74,-0.7467747059010028],[118,88,75,-0.746459549570705],[118,88,76,-0.7461468184735442],[118,88,77,-0.745836517585002],[118,88,78,-0.7455286517839718],[118,88,79,-0.7452232258523241],[118,89,64,-0.7502008768674194],[118,89,65,-0.7498614402054297],[118,89,66,-0.7495243733395576],[118,89,67,-0.7491896821915376],[118,89,68,-0.7488573725908758],[118,89,69,-0.7485274502744234],[118,89,70,-0.7481999208859348],[118,89,71,-0.7478747899756314],[118,89,72,-0.7475520629997627],[118,89,73,-0.7472317453201822],[118,89,74,-0.7469138422038952],[118,89,75,-0.7465983588226373],[118,89,76,-0.746285300252438],[118,89,77,-0.7459746714731894],[118,89,78,-0.7456664773682153],[118,89,79,-0.7453607227238371],[118,90,64,-0.7503434278292607],[118,90,65,-0.7500036696050145],[118,90,66,-0.7496662807081361],[118,90,67,-0.7493312670645513],[118,90,68,-0.7489986345079775],[118,90,69,-0.7486683887794978],[118,90,70,-0.7483405355271189],[118,90,71,-0.7480150803053347],[118,90,72,-0.7476920285746878],[118,90,73,-0.7473713857013448],[118,90,74,-0.7470531569566449],[118,90,75,-0.7467373475166772],[118,90,76,-0.7464239624618465],[118,90,77,-0.7461130067764391],[118,90,78,-0.7458044853481943],[118,90,79,-0.7454984029678688],[118,91,64,-0.7504861469724818],[118,91,65,-0.7501460682187041],[118,91,66,-0.749808358319854],[118,91,67,-0.7494730232060316],[118,91,68,-0.7491400687151488],[118,91,69,-0.7488095005925034],[118,91,70,-0.7484813244903381],[118,91,71,-0.7481555459674027],[118,91,72,-0.7478321704885162],[118,91,73,-0.747511203424143],[118,91,74,-0.7471926500499394],[118,91,75,-0.746876515546333],[118,91,76,-0.7465628049980875],[118,91,77,-0.7462515233938682],[118,91,78,-0.7459426756258147],[118,91,79,-0.7456362664891041],[118,92,64,-0.750629034157013],[118,92,65,-0.7502886359093425],[118,92,66,-0.7499506060404598],[118,92,67,-0.7496149504846215],[118,92,68,-0.7492816750839169],[118,92,69,-0.7489507855878423],[118,92,70,-0.7486222876528591],[118,92,71,-0.7482961868419568],[118,92,72,-0.7479724886242145],[118,92,73,-0.7476511983743774],[118,92,74,-0.7473323213724041],[118,92,75,-0.7470158628030441],[118,92,76,-0.7467018277554042],[118,92,77,-0.7463902212225139],[118,92,78,-0.7460810481008968],[118,92,79,-0.7457743131901359],[118,93,64,-0.7507720892407561],[118,93,65,-0.7504313725377396],[118,93,66,-0.7500930237336609],[118,93,67,-0.7497570487669165],[118,93,68,-0.749423453483756],[118,93,69,-0.749092243637857],[118,93,70,-0.7487634248898831],[118,93,71,-0.7484370028070466],[118,93,72,-0.7481129828626709],[118,93,73,-0.7477913704357655],[118,93,74,-0.7474721708105746],[118,93,75,-0.7471553891761544],[118,93,76,-0.7468410306259389],[118,93,77,-0.7465291001573062],[118,93,78,-0.7462196026711488],[118,93,79,-0.7459125429714397],[118,94,64,-0.7509153120796426],[118,94,65,-0.7505742779627277],[118,94,66,-0.7502356112611815],[118,94,67,-0.7498993179175226],[118,94,68,-0.7495654037821442],[118,94,69,-0.7492338746128882],[118,94,70,-0.7489047360746031],[118,94,71,-0.7485779937387081],[118,94,72,-0.7482536530827537],[118,94,73,-0.747931719489998],[118,94,74,-0.7476121982489545],[118,94,75,-0.7472950945529702],[118,94,76,-0.7469804134997904],[118,94,77,-0.7466681600911259],[118,94,78,-0.7463583392322234],[118,94,79,-0.7460509557314301],[118,95,64,-0.751058702527615],[118,95,65,-0.7507173520411443],[118,95,66,-0.7503783684827442],[118,95,67,-0.7500417577990381],[118,95,68,-0.7497075258445457],[118,95,69,-0.7493756783812557],[118,95,70,-0.7490462210781859],[118,95,71,-0.7487191595109444],[118,95,72,-0.7483944991612929],[118,95,73,-0.7480722454167217],[118,95,74,-0.7477524035699974],[118,95,75,-0.7474349788187415],[118,95,76,-0.7471199762649954],[118,95,77,-0.7468074009147866],[118,95,78,-0.7464972576777],[118,95,79,-0.7461895513664427],[118,96,64,-0.7512022604366094],[118,96,65,-0.7508605946278137],[118,96,66,-0.7505212952560523],[118,96,67,-0.7501843682720357],[118,96,68,-0.7498498195343926],[118,96,69,-0.7495176548092424],[118,96,70,-0.7491878797697538],[118,96,71,-0.7488604999957084],[118,96,72,-0.748535520973062],[118,96,73,-0.7482129480935206],[118,96,74,-0.747892786654088],[118,96,75,-0.7475750418566443],[118,96,76,-0.7472597188075103],[118,96,77,-0.7469468225170153],[118,96,78,-0.7466363578990668],[118,96,79,-0.7463283297707161],[118,97,64,-0.7513459856566125],[118,97,65,-0.751004005575605],[118,97,66,-0.7506643914368468],[118,97,67,-0.7503271491951193],[118,97,68,-0.7499922847131426],[118,97,69,-0.749659803761149],[118,97,70,-0.7493297120164422],[118,97,71,-0.7490020150629597],[118,97,72,-0.7486767183908353],[118,97,73,-0.7483538273959739],[118,97,74,-0.7480333473796005],[118,97,75,-0.7477152835478371],[118,97,76,-0.7473996410112691],[118,97,77,-0.7470864247845109],[118,97,78,-0.7467756397857774],[118,97,79,-0.7464672908364485],[118,98,64,-0.7514898780356357],[118,98,65,-0.7511475847354045],[118,98,66,-0.750807656878881],[118,98,67,-0.7504701004248988],[118,98,68,-0.7501349212402522],[118,98,69,-0.7498021250992699],[118,98,70,-0.7494717176833731],[118,98,71,-0.7491437045806386],[118,98,72,-0.7488180912853613],[118,98,73,-0.748494883197629],[118,98,74,-0.7481740856228709],[118,98,75,-0.7478557037714356],[118,98,76,-0.7475397427581563],[118,98,77,-0.7472262076019172],[118,98,78,-0.7469151032252244],[118,98,79,-0.7466064344537716],[118,99,64,-0.7516339374197386],[118,99,65,-0.7512913319561414],[118,99,66,-0.7509510914339429],[118,99,67,-0.7506132218160124],[118,99,68,-0.7502777289732009],[118,99,69,-0.7499446186839158],[118,99,70,-0.7496138966336787],[118,99,71,-0.7492855684146896],[118,99,72,-0.748959639525387],[118,99,73,-0.7486361153700254],[118,99,74,-0.7483150012582219],[118,99,75,-0.7479963024045352],[118,99,76,-0.7476800239280303],[118,99,77,-0.7473661708518458],[118,99,78,-0.7470547481027634],[118,99,79,-0.7467457605107746],[118,100,64,-0.7517781636530029],[118,100,65,-0.7514352470847596],[118,100,66,-0.7510946949518303],[118,100,67,-0.7507565132211016],[118,100,68,-0.7504207077674644],[118,100,69,-0.7500872843733872],[118,100,70,-0.7497562487284757],[118,100,71,-0.7494276064290346],[118,100,72,-0.7491013629776307],[118,100,73,-0.7487775237826679],[118,100,74,-0.7484560941579351],[118,100,75,-0.7481370793221848],[118,100,76,-0.747820484398698],[118,100,77,-0.7475063144148507],[118,100,78,-0.7471945743016857],[118,100,79,-0.7468852688934761],[118,101,64,-0.7519225565775898],[118,101,65,-0.7515793299662765],[118,101,66,-0.7512384672804071],[118,101,67,-0.7508999744908681],[118,101,68,-0.7505638574765723],[118,101,69,-0.7502301220240327],[118,101,70,-0.7498987738269209],[118,101,71,-0.749569818485631],[118,101,72,-0.7492432615068398],[118,101,73,-0.7489191083030846],[118,101,74,-0.7485973641923094],[118,101,75,-0.7482780343974443],[118,101,76,-0.74796112404597],[118,101,77,-0.7476466381694851],[118,101,78,-0.7473345817032759],[118,101,79,-0.7470249594858831],[118,102,64,-0.752067116033722],[118,102,65,-0.7517235804437642],[118,102,66,-0.7513824082655857],[118,102,67,-0.751043605474055],[118,102,68,-0.7507071779520897],[118,102,69,-0.7503731314902296],[118,102,70,-0.7500414717861954],[118,102,71,-0.7497122044444526],[118,102,72,-0.7493853349757722],[118,102,73,-0.7490608687968077],[118,102,74,-0.748738811229642],[118,102,75,-0.7484191675013663],[118,102,76,-0.7481019427436448],[118,102,77,-0.7477871419922824],[118,102,78,-0.7474747701867939],[118,102,79,-0.7471648321699711],[118,103,64,-0.7522118418596653],[118,103,65,-0.7518679983583316],[118,103,66,-0.7515265177513087],[118,103,67,-0.75118740601743],[118,103,68,-0.7508506690435995],[118,103,69,-0.7505163126243666],[118,103,70,-0.7501843424614842],[118,103,71,-0.7498547641634721],[118,103,72,-0.7495275832451784],[118,103,73,-0.7492028051273563],[118,103,74,-0.7488804351362106],[118,103,75,-0.7485604785029774],[118,103,76,-0.7482429403634886],[118,103,77,-0.7479278257577389],[118,103,78,-0.7476151396294559],[118,103,79,-0.7473048868256668],[118,104,64,-0.7523567338917867],[118,104,65,-0.752012583549182],[118,104,66,-0.7516707955796069],[118,104,67,-0.7513313759658415],[118,104,68,-0.7509943305987592],[118,104,69,-0.7506596652769012],[118,104,70,-0.7503273857060353],[118,104,71,-0.7499974974987185],[118,104,72,-0.7496700061738589],[118,104,73,-0.7493449171562926],[118,104,74,-0.7490222357763302],[118,104,75,-0.7487019672693361],[118,104,76,-0.7483841167752933],[118,104,77,-0.7480686893383703],[118,104,78,-0.747755689906492],[118,104,79,-0.7474451233309047],[118,105,64,-0.7525017919645276],[118,105,65,-0.7521573358535866],[118,105,66,-0.7518152415905721],[118,105,67,-0.7514755151621932],[118,105,68,-0.7511381624632749],[118,105,69,-0.7508031892963328],[118,105,70,-0.750470601371132],[118,105,71,-0.7501404043042497],[118,105,72,-0.7498126036186373],[118,105,73,-0.7494872047431966],[118,105,74,-0.7491642130123275],[118,105,75,-0.748843633665506],[118,105,76,-0.7485254718468499],[118,105,77,-0.7482097326046859],[118,105,78,-0.7478964208911195],[118,105,79,-0.7475855415616013],[118,106,64,-0.7526470159104273],[118,106,65,-0.752302255106908],[118,106,66,-0.7519598556223815],[118,106,67,-0.7516198234474674],[118,106,68,-0.7512821644809249],[118,106,69,-0.7509468845292265],[118,106,70,-0.7506139893061173],[118,106,71,-0.7502834844321773],[118,106,72,-0.7499553754343843],[118,106,73,-0.7496296677456888],[118,106,74,-0.7493063667045632],[118,106,75,-0.7489854775545788],[118,106,76,-0.7486670054439721],[118,106,77,-0.7483509554252112],[118,106,78,-0.7480373324545667],[118,106,79,-0.7477261413916773],[118,107,64,-0.7527924055600972],[118,107,65,-0.7524473411425742],[118,107,66,-0.7521046375112703],[118,107,67,-0.7517643006606981],[118,107,68,-0.751426336493533],[118,107,69,-0.7510907508201867],[118,107,70,-0.7507575493583669],[118,107,71,-0.7504267377326393],[118,107,72,-0.7500983214739906],[118,107,73,-0.7497723060194037],[118,107,74,-0.7494486967114063],[118,107,75,-0.7491274987976486],[118,107,76,-0.7488087174304692],[118,107,77,-0.7484923576664616],[118,107,78,-0.7481784244660454],[118,107,79,-0.7478669226930315],[118,108,64,-0.752937960742278],[118,108,65,-0.7525925937921358],[118,108,66,-0.7522495870915904],[118,108,67,-0.7519089466390292],[118,108,68,-0.7515706783410261],[118,108,69,-0.7512347880119145],[118,108,70,-0.7509012813733469],[118,108,71,-0.7505701640538576],[118,108,72,-0.750241441588425],[118,108,73,-0.7499151194180473],[118,108,74,-0.749591202889291],[118,108,75,-0.7492696972538684],[118,108,76,-0.7489506076682038],[118,108,77,-0.7486339391929999],[118,108,78,-0.7483196967928092],[118,108,79,-0.7480078853355986],[118,109,64,-0.7530836812838214],[118,109,65,-0.7527380128852479],[118,109,66,-0.7523947041957912],[118,109,67,-0.752053761217696],[118,109,68,-0.751715189861416],[118,109,69,-0.7513789959451893],[118,109,70,-0.7510451851945954],[118,109,71,-0.7507137632421198],[118,109,72,-0.7503847356267156],[118,109,73,-0.7500581077933792],[118,109,74,-0.7497338850926989],[118,109,75,-0.7494120727804324],[118,109,76,-0.7490926760170735],[118,109,77,-0.7487756998674178],[118,109,78,-0.7484611493001341],[118,109,79,-0.74814902918733],[118,110,64,-0.753229567009672],[118,110,65,-0.7528835982496518],[118,110,66,-0.7525399886544021],[118,110,67,-0.7521987442300064],[118,110,68,-0.7518598708907813],[118,110,69,-0.7515233744588505],[118,110,70,-0.7511892606637041],[118,110,71,-0.7508575351417609],[118,110,72,-0.7505282034359314],[118,110,73,-0.7502012709951931],[118,110,74,-0.7498767431741394],[118,110,75,-0.7495546252325569],[118,110,76,-0.749234922334992],[118,110,77,-0.7489176395503169],[118,110,78,-0.7486027818513006],[118,110,79,-0.7482903541141753],[118,111,64,-0.7533756177429252],[118,111,65,-0.7530293497112326],[118,111,66,-0.7526854402960893],[118,111,67,-0.7523438955073993],[118,111,68,-0.7520047212633241],[118,111,69,-0.7516679233898556],[118,111,70,-0.751333507620376],[118,111,71,-0.7510014795952206],[118,111,72,-0.7506718448612398],[118,111,73,-0.7503446088713756],[118,111,74,-0.7500197769842087],[118,111,75,-0.7496973544635386],[118,111,76,-0.7493773464779471],[118,111,77,-0.7490597581003668],[118,111,78,-0.7487445943076512],[118,111,79,-0.7484318599801405],[118,112,64,-0.7535218333047997],[118,112,65,-0.7531752670939926],[118,112,66,-0.7528310589476297],[118,112,67,-0.7524892148794176],[118,112,68,-0.7521497408113442],[118,112,69,-0.7518126425732522],[118,112,70,-0.7514779259023984],[118,112,71,-0.7511455964430167],[118,112,72,-0.7508156597458804],[118,112,73,-0.750488121267878],[118,112,74,-0.7501629863715621],[118,112,75,-0.7498402603247265],[118,112,76,-0.7495199482999731],[118,112,77,-0.7492020553742781],[118,112,78,-0.7488865865285628],[118,112,79,-0.7485735466472598],[118,113,64,-0.7536682135146628],[118,113,65,-0.7533213502200753],[118,113,66,-0.7529768444339346],[118,113,67,-0.7526347021737317],[118,113,68,-0.7522949293652628],[118,113,69,-0.7519575318422034],[118,113,70,-0.751622515345667],[118,113,71,-0.751289885523769],[118,113,72,-0.7509596479311879],[118,113,73,-0.7506318080287419],[118,113,74,-0.7503063711829374],[118,113,75,-0.7499833426655472],[118,113,76,-0.7496627276531754],[118,113,77,-0.7493445312268258],[118,113,78,-0.7490287583714713],[118,113,79,-0.7487154139756206],[118,114,64,-0.753814758190002],[118,114,65,-0.7534675989097382],[118,114,66,-0.753122796578023],[118,114,67,-0.7527803572161129],[118,114,68,-0.7524402867535951],[118,114,69,-0.7521025910279595],[118,114,70,-0.7517672757841588],[118,114,71,-0.751434346674172],[118,114,72,-0.7511038092565652],[118,114,73,-0.7507756689960697],[118,114,74,-0.7504499312631285],[118,114,75,-0.750126601333476],[118,114,76,-0.7498056843877026],[118,114,77,-0.749487185510822],[118,114,78,-0.7491711096918434],[118,114,79,-0.7488574618233349],[118,115,64,-0.753961467146484],[118,115,65,-0.7536140129814111],[118,115,66,-0.7532689152010786],[118,115,67,-0.7529261798304914],[118,115,68,-0.7525858128030084],[118,115,69,-0.7522478199599164],[118,115,70,-0.7519122070499896],[118,115,71,-0.7515789797290525],[118,115,72,-0.7512481435595422],[118,115,73,-0.7509197040100847],[118,115,74,-0.7505936664550433],[118,115,75,-0.7502700361740965],[118,115,76,-0.7499488183518043],[118,115,77,-0.7496300180771747],[118,115,78,-0.7493136403432352],[118,115,79,-0.7489996900465983],[118,116,64,-0.7541083401979358],[118,116,65,-0.753760592251677],[118,116,66,-0.7534152001224328],[118,116,67,-0.7530721698389375],[118,116,68,-0.7527315073383039],[118,116,69,-0.7523932184655975],[118,116,70,-0.752057308973396],[118,116,71,-0.7517237845213521],[118,116,72,-0.7513926506757559],[118,116,73,-0.7510639129091112],[118,116,74,-0.7507375765996842],[118,116,75,-0.7504136470310806],[118,116,76,-0.7500921293918132],[118,116,77,-0.7497730287748675],[118,116,78,-0.7494563501772734],[118,116,79,-0.7491420984996708],[118,117,64,-0.7542553771563264],[118,117,65,-0.7539073365352544],[118,117,66,-0.7535616511595451],[118,117,67,-0.7532183270616432],[118,117,68,-0.7528773701823974],[118,117,69,-0.7525387863706342],[118,117,70,-0.7522025813827162],[118,117,71,-0.7518687608821072],[118,117,72,-0.7515373304389323],[118,117,73,-0.751208295529556],[118,117,74,-0.7508816615361298],[118,117,75,-0.7505574337461702],[118,117,76,-0.7502356173521255],[118,117,77,-0.749916217450942],[118,117,78,-0.7495992390436355],[118,117,79,-0.7492846870348572],[118,118,64,-0.7544025778318244],[118,118,65,-0.7540542456450549],[118,118,66,-0.7537082681280609],[118,118,67,-0.7533646513169798],[118,118,68,-0.7530234011563781],[118,118,69,-0.7526845234988242],[118,118,70,-0.7523480241044487],[118,118,71,-0.7520139086405078],[118,118,72,-0.7516821826809447],[118,118,73,-0.7513528517059667],[118,118,74,-0.7510259211015935],[118,118,75,-0.7507013961592354],[118,118,76,-0.7503792820752591],[118,118,77,-0.7500595839505552],[118,118,78,-0.7497423067901089],[118,118,79,-0.7494274555025663],[118,119,64,-0.7545499420327801],[118,119,65,-0.7542013193921642],[118,119,66,-0.7538550508417938],[118,119,67,-0.7535111424214803],[118,119,68,-0.7531696000794892],[118,119,69,-0.7528304296721132],[118,119,70,-0.7524936369632327],[118,119,71,-0.7521592276238785],[118,119,72,-0.7518272072317941],[118,119,73,-0.7514975812710124],[118,119,74,-0.7511703551314038],[118,119,75,-0.7508455341082552],[118,119,76,-0.7505231234018348],[118,119,77,-0.750203128116961],[118,119,78,-0.7498855532625717],[118,119,79,-0.7495704037512912],[118,120,64,-0.7546974695657066],[118,120,65,-0.7543485575858244],[118,120,66,-0.7540019991127065],[118,120,67,-0.7536578001898196],[118,120,68,-0.7533159667691098],[118,120,69,-0.7529765047105761],[118,120,70,-0.7526394197818301],[118,120,71,-0.7523047176576598],[118,120,72,-0.7519724039195912],[118,120,73,-0.7516424840554652],[118,120,74,-0.7513149634589856],[118,120,75,-0.7509898474292988],[118,120,76,-0.7506671411705578],[118,120,77,-0.750346849791491],[118,120,78,-0.7500289783049732],[118,120,79,-0.7497135316275905],[118,121,64,-0.7548451602353375],[118,121,65,-0.7544959600334914],[118,121,66,-0.7541491127509687],[118,121,67,-0.7538046244348733],[118,121,68,-0.7534625010408127],[118,121,69,-0.7531227484324744],[118,121,70,-0.7527853723811833],[118,121,71,-0.7524503785654664],[118,121,72,-0.7521177725706143],[118,121,73,-0.7517875598882584],[118,121,74,-0.7514597459159191],[118,121,75,-0.751134335956584],[118,121,76,-0.7508113352182745],[118,121,77,-0.7504907488136128],[118,121,78,-0.7501725817593926],[118,121,79,-0.7498568389761462],[118,122,64,-0.7549930138446004],[118,122,65,-0.7546435265408079],[118,122,66,-0.7542963915649306],[118,122,67,-0.7539516149676897],[118,122,68,-0.7536092027083373],[118,122,69,-0.7532691606542299],[118,122,70,-0.752931494580388],[118,122,71,-0.7525962101690593],[118,122,72,-0.7522633130092816],[118,122,73,-0.7519328085964592],[118,122,74,-0.7516047023319109],[118,122,75,-0.7512789995224496],[118,122,76,-0.7509557053799469],[118,122,77,-0.7506348250209018],[118,122,78,-0.7503163634660115],[118,122,79,-0.7500003256397365],[118,123,64,-0.7551410301946406],[118,123,65,-0.7547912569116279],[118,123,66,-0.7544438353611457],[118,123,67,-0.7540987715975151],[118,123,68,-0.7537560715836135],[118,123,69,-0.7534157411904482],[118,123,70,-0.7530777861967167],[118,123,71,-0.7527422122883703],[118,123,72,-0.7524090250581756],[118,123,73,-0.752078230005292],[118,123,74,-0.7517498325348198],[118,123,75,-0.7514238379573788],[118,123,76,-0.7511002514886749],[118,123,77,-0.7507790782490666],[118,123,78,-0.7504603232631372],[118,123,79,-0.7501439914592597],[118,124,64,-0.7552892090847941],[118,124,65,-0.7549391509479881],[118,124,66,-0.7545914439443447],[118,124,67,-0.7542460941317654],[118,124,68,-0.753903107476734],[118,124,69,-0.7535624898538907],[118,124,70,-0.7532242470455923],[118,124,71,-0.7528883847414743],[118,124,72,-0.7525549085380151],[118,124,73,-0.7522238239381113],[118,124,74,-0.751895136350627],[118,124,75,-0.7515688510899723],[118,124,76,-0.7512449733756693],[118,124,77,-0.7509235083319195],[118,124,78,-0.7506044609871753],[118,124,79,-0.7502878362737058],[118,125,64,-0.7554375503126455],[118,125,65,-0.7550872084501681],[118,125,66,-0.7547392171174933],[118,125,67,-0.7543935823760843],[118,125,68,-0.7540503101960132],[118,125,69,-0.7537094064555345],[118,125,70,-0.753370876940645],[118,125,71,-0.7530347273446477],[118,125,72,-0.752700963267714],[118,125,73,-0.7523695902164602],[118,125,74,-0.7520406136034967],[118,125,75,-0.7517140387470063],[118,125,76,-0.7513898708703102],[118,125,77,-0.7510681151014359],[118,125,78,-0.7507487764726881],[118,125,79,-0.7504318599202153],[118,126,64,-0.755586053674009],[118,126,65,-0.7552354292166696],[118,126,66,-0.754887154681773],[118,126,67,-0.7545412361343256],[118,126,68,-0.7541976795479682],[118,126,69,-0.7538564908045515],[118,126,70,-0.7535176756936947],[118,126,71,-0.7531812399123492],[118,126,72,-0.7528471890643619],[118,126,73,-0.752515528660051],[118,126,74,-0.7521862641157555],[118,126,75,-0.7518594007534134],[118,126,76,-0.7515349438001279],[118,126,77,-0.7512128983877351],[118,126,78,-0.7508932695523757],[118,126,79,-0.7505760622340603],[118,127,64,-0.7557347189629108],[118,127,65,-0.7553838130441992],[118,127,66,-0.755035256436563],[118,127,67,-0.7546890552085324],[118,127,68,-0.7543452153372991],[118,127,69,-0.7540037427082911],[118,127,70,-0.7536646431147308],[118,127,71,-0.7533279222572009],[118,127,72,-0.7529935857432053],[118,127,73,-0.7526616390867462],[118,127,74,-0.7523320877078736],[118,127,75,-0.7520049369322632],[118,127,76,-0.7516801919907831],[118,127,77,-0.751357858019061],[118,127,78,-0.751037940057056],[118,127,79,-0.7507204430486247],[118,128,64,-0.755883545971646],[118,128,65,-0.7555323597277258],[118,128,66,-0.7551835221794978],[118,128,67,-0.7548370393989976],[118,128,68,-0.7544929173669487],[118,128,69,-0.7541511619723373],[118,128,70,-0.7538117790119719],[118,128,71,-0.753474774190047],[118,128,72,-0.753140153117706],[118,128,73,-0.7528079213126171],[118,128,74,-0.7524780841985238],[118,128,75,-0.7521506471048217],[118,128,76,-0.7518256152661265],[118,128,77,-0.7515029938218402],[118,128,78,-0.7511827878157239],[118,128,79,-0.7508650021954629],[118,129,64,-0.7560325344907521],[118,129,65,-0.7556810690604534],[118,129,66,-0.7553319517064405],[118,129,67,-0.7549851885042349],[118,129,68,-0.7546407854380736],[118,129,69,-0.7542987484004824],[118,129,70,-0.7539590831918369],[118,129,71,-0.7536217955199257],[118,129,72,-0.7532868909995132],[118,129,73,-0.7529543751519161],[118,129,74,-0.7526242534045529],[118,129,75,-0.7522965310905223],[118,129,76,-0.7519712134481698],[118,129,77,-0.7516483056206548],[118,129,78,-0.751327812655523],[118,129,79,-0.7510097395042719],[118,130,64,-0.7561816843090329],[118,130,65,-0.7558299408338452],[118,130,66,-0.755480544811506],[118,130,67,-0.7551335023210036],[118,130,68,-0.7547888193500691],[118,130,69,-0.7544465017947499],[118,130,70,-0.75410655545897],[118,130,71,-0.7537689860540935],[118,130,72,-0.7534337991984879],[118,130,73,-0.7531010004171002],[118,130,74,-0.7527705951410064],[118,130,75,-0.7524425887069905],[118,130,76,-0.7521169863571106],[118,130,77,-0.7517937932382659],[118,130,78,-0.7514730144017698],[118,130,79,-0.7511546548029152],[118,131,64,-0.7563309952135306],[118,131,65,-0.7559789748375962],[118,131,66,-0.755629301287034],[118,131,67,-0.7552819806442804],[118,131,68,-0.7549370189005415],[118,131,69,-0.7545944219553675],[118,131,70,-0.7542541956162123],[118,131,71,-0.7539163455979973],[118,131,72,-0.7535808775226746],[118,131,73,-0.7532477969188036],[118,131,74,-0.7529171092211004],[118,131,75,-0.752588819770016],[118,131,76,-0.7522629338113036],[118,131,77,-0.7519394564955856],[118,131,78,-0.7516183928779255],[118,131,79,-0.7512997479173946],[118,132,64,-0.7564804669895848],[118,132,65,-0.7561281708596914],[118,132,66,-0.7557782209236474],[118,132,67,-0.7554306232673182],[118,132,68,-0.7550853838853663],[118,132,69,-0.7547425086808254],[118,132,70,-0.7544020034646608],[118,132,71,-0.7540638739553329],[118,132,72,-0.7537281257783602],[118,132,73,-0.7533947644658967],[118,132,74,-0.7530637954562799],[118,132,75,-0.7527352240936109],[118,132,76,-0.7524090556273202],[118,132,77,-0.7520852952117358],[118,132,78,-0.7517639479056547],[118,132,79,-0.7514450186719094],[118,133,64,-0.7566300994208133],[118,133,65,-0.756277528686387],[118,133,66,-0.7559273035102334],[118,133,67,-0.7555794299816275],[118,133,68,-0.7552339140986691],[118,133,69,-0.7548907617678571],[118,133,70,-0.7545499788036492],[118,133,71,-0.7542115709280262],[118,133,72,-0.7538755437700552],[118,133,73,-0.7535419028654659],[118,133,74,-0.7532106536562],[118,133,75,-0.7528818014899907],[118,133,76,-0.7525553516199283],[118,133,77,-0.752231309204029],[118,133,78,-0.7519096793048059],[118,133,79,-0.751590466888836],[118,134,64,-0.7567798922890929],[118,134,65,-0.7564270481021913],[118,134,66,-0.7560765488339238],[118,134,67,-0.7557284005769563],[118,134,68,-0.7553826093328068],[118,134,69,-0.7550391810114201],[118,134,70,-0.754698121430728],[118,134,71,-0.7543594363162135],[118,134,72,-0.7540231313004732],[118,134,73,-0.7536892119227948],[118,134,74,-0.7533576836287064],[118,134,75,-0.7530285517695549],[118,134,76,-0.7527018216020733],[118,134,77,-0.7523774982879484],[118,134,78,-0.7520555868933925],[118,134,79,-0.7517360923887095],[118,135,64,-0.7569298453746185],[118,135,65,-0.756576728889923],[118,135,66,-0.7562259566801546],[118,135,67,-0.7558775348413498],[118,135,68,-0.7555314693784261],[118,135,69,-0.7551877662047554],[118,135,70,-0.7548464311417247],[118,135,71,-0.7545074699183004],[118,135,72,-0.7541708881705907],[118,135,73,-0.7538366914414232],[118,135,74,-0.7535048851798936],[118,135,75,-0.7531754747409456],[118,135,76,-0.7528484653849368],[118,135,77,-0.7525238622772072],[118,135,78,-0.7522016704876507],[118,135,79,-0.7518818949902819],[118,136,64,-0.7570799584558747],[118,136,65,-0.7567265708306845],[118,136,66,-0.7563755268326371],[118,136,67,-0.7560268325611217],[118,136,68,-0.7556804940244354],[118,136,69,-0.7553365171393583],[118,136,70,-0.7549949077307142],[118,136,71,-0.754655671530934],[118,136,72,-0.754318814179619],[118,136,73,-0.7539843412231183],[118,136,74,-0.7536522581140779],[118,136,75,-0.7533225702110197],[118,136,76,-0.7529952827779085],[118,136,77,-0.75267040098372],[118,136,78,-0.7523479299020124],[118,136,79,-0.7520278745104935],[118,137,64,-0.7572302313096608],[118,137,65,-0.7568765737038844],[118,137,66,-0.7565252590733833],[118,137,67,-0.7561762935208789],[118,137,68,-0.7558296830580292],[118,137,69,-0.7554854336050039],[118,137,70,-0.7551435509900439],[118,137,71,-0.7548040409490265],[118,137,72,-0.7544669091250277],[118,137,73,-0.7541321610678997],[118,137,74,-0.7537998022338206],[118,137,75,-0.7534698379848727],[118,137,76,-0.7531422735886102],[118,137,77,-0.7528171142176269],[118,137,78,-0.7524943649491282],[118,137,79,-0.7521740307644977],[118,138,64,-0.757380663711062],[118,138,65,-0.7570267372872114],[118,138,66,-0.756675153182677],[118,138,67,-0.7563259175034934],[118,138,68,-0.7559790362646605],[118,138,69,-0.7556345153897178],[118,138,70,-0.7552923607103055],[118,138,71,-0.7549525779657278],[118,138,72,-0.7546151728025172],[118,138,73,-0.7542801507740107],[118,138,74,-0.7539475173399001],[118,138,75,-0.7536172778658103],[118,138,76,-0.7532894376228674],[118,138,77,-0.7529640017872654],[118,138,78,-0.7526409754398397],[118,138,79,-0.7523203635656324],[118,139,64,-0.7575312554335092],[118,139,65,-0.7571770613566915],[118,139,66,-0.7568252089391327],[118,139,67,-0.756475704290161],[118,139,68,-0.7561285534280984],[118,139,69,-0.7557837622798359],[118,139,70,-0.7554413366803933],[118,139,71,-0.7551012823724836],[118,139,72,-0.754763605006077],[118,139,73,-0.754428310137977],[118,139,74,-0.7540954032313707],[118,139,75,-0.7537648896554079],[118,139,76,-0.7534367746847686],[118,139,77,-0.7531110634992295],[118,139,78,-0.7527877611832381],[118,139,79,-0.7524668727254784],[118,140,64,-0.7576820062487588],[118,140,65,-0.75732754568667],[118,140,66,-0.7569754261196769],[118,140,67,-0.7566256536603819],[118,140,68,-0.7562782343304102],[118,140,69,-0.7559331740599846],[118,140,70,-0.7555904786874859],[118,140,71,-0.7552501539590171],[118,140,72,-0.7549122055279669],[118,140,73,-0.7545766389545876],[118,140,74,-0.7542434597055434],[118,140,75,-0.7539126731534909],[118,140,76,-0.7535842845766453],[118,140,77,-0.7532582991583494],[118,140,78,-0.7529347219866451],[118,140,79,-0.7526135580538407],[118,141,64,-0.7578329159268744],[118,141,65,-0.7574781900497917],[118,141,66,-0.7571258044995285],[118,141,67,-0.756775765391942],[118,141,68,-0.7564280787519412],[118,141,69,-0.7560827505130614],[118,141,70,-0.7557397865170256],[118,141,71,-0.7553991925133077],[118,141,72,-0.7550609741586971],[118,141,73,-0.7547251370168754],[118,141,74,-0.754391686557966],[118,141,75,-0.7540606281581139],[118,141,76,-0.7537319670990528],[118,141,77,-0.7534057085676726],[118,141,78,-0.7530818576555925],[118,141,79,-0.7527604193587277],[118,142,64,-0.7579839842362848],[118,142,65,-0.7576289942170593],[118,142,66,-0.7572763438522574],[118,142,67,-0.7569260392609711],[118,142,68,-0.7565780864713736],[118,142,69,-0.7562324914202943],[118,142,70,-0.7558892599527781],[118,142,71,-0.7555483978216522],[118,142,72,-0.7552099106870871],[118,142,73,-0.7548738041161756],[118,142,74,-0.7545400835824821],[118,142,75,-0.7542087544656221],[118,142,76,-0.7538798220508289],[118,142,77,-0.7535532915285225],[118,142,78,-0.7532291679938818],[118,142,79,-0.7529074564464115],[118,143,64,-0.7581352109437565],[118,143,65,-0.7577799579578066],[118,143,66,-0.7574270439497569],[118,143,67,-0.757076475041915],[118,143,68,-0.756728257265699],[118,143,69,-0.7563823965612124],[118,143,70,-0.7560388987768043],[118,143,71,-0.7556977696686349],[118,143,72,-0.7553590149002376],[118,143,73,-0.7550226400420983],[118,143,74,-0.7546886505712034],[118,143,75,-0.7543570518706206],[118,143,76,-0.7540278492290655],[118,143,77,-0.7537010478404702],[118,143,78,-0.7533766528035555],[118,143,79,-0.7530546691213981],[118,144,64,-0.7582865958144182],[118,144,65,-0.7579310810397215],[118,144,66,-0.7575779045622677],[118,144,67,-0.75722707250756],[118,144,68,-0.756878590910242],[118,144,69,-0.756532465713672],[118,144,70,-0.756188702769484],[118,144,71,-0.7558473078371524],[118,144,72,-0.7555082865835551],[118,144,73,-0.7551716445825516],[118,144,74,-0.7548373873145326],[118,144,75,-0.7545055201659999],[118,144,76,-0.754176048429133],[118,144,77,-0.7538489773013582],[118,144,78,-0.753524311884921],[118,144,79,-0.7532020571864524],[118,145,64,-0.7584381386117318],[118,145,65,-0.7580823632288186],[118,145,66,-0.7577289254583495],[118,145,67,-0.7573778314290043],[118,145,68,-0.7570290871786319],[118,145,69,-0.7566826986538266],[118,145,70,-0.7563386717094878],[118,145,71,-0.7559970121083852],[118,145,72,-0.7556577255207221],[118,145,73,-0.7553208175237137],[118,145,74,-0.7549862936011361],[118,145,75,-0.7546541591429068],[118,145,76,-0.7543244194446515],[118,145,77,-0.7539970797072726],[118,145,78,-0.7536721450365224],[118,145,79,-0.753349620442569],[118,146,64,-0.7585898390975522],[118,146,65,-0.7582338042894977],[118,146,66,-0.7578801064049406],[118,146,67,-0.757528751575717],[118,146,68,-0.7571797458428622],[118,146,69,-0.7568330951561867],[118,146,70,-0.7564888053738361],[118,146,71,-0.7561468822618566],[118,146,72,-0.755807331493758],[118,146,73,-0.7554701586500923],[118,146,74,-0.7551353692180025],[118,146,75,-0.7548029685908039],[118,146,76,-0.7544729620675499],[118,146,77,-0.7541453548526014],[118,146,78,-0.7538201520551994],[118,146,79,-0.7534973586890321],[118,147,64,-0.7587416970321077],[118,147,65,-0.7583854039845249],[118,147,66,-0.7580314471673378],[118,147,67,-0.7576798327155192],[118,147,68,-0.757330566673271],[118,147,69,-0.7569836549936004],[118,147,70,-0.7566391035378801],[118,147,71,-0.7562969180754135],[118,147,72,-0.7559571042829982],[118,147,73,-0.7556196677445043],[118,147,74,-0.7552846139504233],[118,147,75,-0.7549519482974496],[118,147,76,-0.7546216760880463],[118,147,77,-0.754293802530015],[118,147,78,-0.7539683327360678],[118,147,79,-0.7536452717233948],[118,148,64,-0.7588937121739804],[118,148,65,-0.7585371620750126],[118,148,66,-0.7581829475091774],[118,148,67,-0.7578310746145638],[118,148,68,-0.7574815494385209],[118,148,69,-0.7571343779372331],[118,148,70,-0.756789565975281],[118,148,71,-0.7564471193252063],[118,148,72,-0.756107043667075],[118,148,73,-0.7557693445880566],[118,148,74,-0.7554340275819729],[118,148,75,-0.7551010980488785],[118,148,76,-0.7547705612946285],[118,148,77,-0.7544424225304468],[118,148,78,-0.7541166868724989],[118,148,79,-0.7537933593414596],[118,149,64,-0.7590458842801651],[118,149,65,-0.7586890783204792],[118,149,66,-0.7583346071924937],[118,149,67,-0.7579824770373949],[118,149,68,-0.7576326939056587],[118,149,69,-0.7572852637566277],[118,149,70,-0.7569401924580708],[118,149,71,-0.7565974857857483],[118,149,72,-0.7562571494229764],[118,149,73,-0.755919188960205],[118,149,74,-0.7555836098945672],[118,149,75,-0.7552504176294603],[118,149,76,-0.7549196174741124],[118,149,77,-0.7545912146431519],[118,149,78,-0.7542652142561799],[118,149,79,-0.7539416213373379],[118,150,64,-0.7591982131060505],[118,150,65,-0.758841152478829],[118,150,66,-0.7584864259777006],[118,150,67,-0.7581340397469282],[118,150,68,-0.7577839998400959],[118,150,69,-0.7574363122196841],[118,150,70,-0.7570909827566306],[118,150,71,-0.7567480172298959],[118,150,72,-0.7564074213260268],[118,150,73,-0.7560692006387346],[118,150,74,-0.7557333606684457],[118,150,75,-0.7553999068218806],[118,150,76,-0.7550688444116231],[118,150,77,-0.7547401786556875],[118,150,78,-0.7544139146770928],[118,150,79,-0.7540900575034296],[118,151,64,-0.7593506984053993],[118,151,65,-0.7589933843063328],[118,151,66,-0.7586384036235703],[118,151,67,-0.7582857625044316],[118,151,68,-0.7579354670055883],[118,151,69,-0.7575875230926397],[118,151,70,-0.7572419366396729],[118,151,71,-0.7568987134288291],[118,151,72,-0.7565578591498667],[118,151,73,-0.75621937939974],[118,151,74,-0.7558832796821492],[118,151,75,-0.7555495654071205],[118,151,76,-0.7552182418905742],[118,151,77,-0.754889314353893],[118,151,78,-0.7545627879234955],[118,151,79,-0.7542386676304035],[118,152,64,-0.7595033399304066],[118,152,65,-0.7591457735576874],[118,152,66,-0.7587905398872944],[118,152,67,-0.758437645069584],[118,152,68,-0.7580870951642963],[118,152,69,-0.7577388961401289],[118,152,70,-0.7573930538742996],[118,152,71,-0.7570495741521104],[118,152,72,-0.7567084626665126],[118,152,73,-0.7563697250176843],[118,152,74,-0.756033366712581],[118,152,75,-0.755699393164516],[118,152,76,-0.7553678096927275],[118,152,77,-0.7550386215219487],[118,152,78,-0.7547118337819798],[118,152,79,-0.7543874515072563],[118,153,64,-0.7596561374316733],[118,153,65,-0.7592983199859871],[118,153,66,-0.7589428345244539],[118,153,67,-0.7585896872004473],[118,153,68,-0.7582388840767551],[118,153,69,-0.7578904311251544],[118,153,70,-0.7575443342259736],[118,153,71,-0.7572005991676565],[118,153,72,-0.756859231646328],[118,153,73,-0.756520237265371],[118,153,74,-0.7561836215349776],[118,153,75,-0.7558493898717293],[118,153,76,-0.7555175475981646],[118,153,77,-0.7551880999423483],[118,153,78,-0.7548610520374444],[118,153,79,-0.7545364089212842],[118,154,64,-0.7598090906582287],[118,154,65,-0.7594510233427474],[118,154,66,-0.7590952872890444],[118,154,67,-0.75874188865349],[118,154,68,-0.7583908335019002],[118,154,69,-0.7580421278091116],[118,154,70,-0.7576957774585434],[118,154,71,-0.7573517882417624],[118,154,72,-0.7570101658580475],[118,154,73,-0.7566709159139675],[118,154,74,-0.7563340439229325],[118,154,75,-0.7559995553047734],[118,154,76,-0.7556674553853103],[118,154,77,-0.7553377493959217],[118,154,78,-0.7550104424731174],[118,154,79,-0.7546855396581064],[118,155,64,-0.7599621993575025],[118,155,65,-0.7596038833778773],[118,155,66,-0.7592478979334472],[118,155,67,-0.7588942491835595],[118,155,68,-0.7585429431970381],[118,155,69,-0.7581939859517595],[118,155,70,-0.7578473833342143],[118,155,71,-0.7575031411390727],[118,155,72,-0.7571612650687483],[118,155,73,-0.756821760732977],[118,155,74,-0.7564846336483677],[118,155,75,-0.7561498892379823],[118,155,76,-0.7558175328309042],[118,155,77,-0.7554875696618071],[118,155,78,-0.7551600048705283],[118,155,79,-0.7548348435016368],[118,156,64,-0.7601154632753853],[118,156,65,-0.7597568998397382],[118,156,66,-0.7594006662084887],[118,156,67,-0.7590467685439404],[118,156,68,-0.7586952129179055],[118,156,69,-0.7583460053112806],[118,156,70,-0.7579991516136078],[118,156,71,-0.757654657622641],[118,156,72,-0.7573125290439096],[118,156,73,-0.7569727714902975],[118,156,74,-0.7566353904815935],[118,156,75,-0.7563003914440718],[118,156,76,-0.7559677797100602],[118,156,77,-0.7556375605175096],[118,156,78,-0.7553097390095669],[118,156,79,-0.7549843202341431],[118,157,64,-0.7602688821562065],[118,157,65,-0.7599100724751241],[118,157,66,-0.7595535918634206],[118,157,67,-0.7591994464863361],[118,157,68,-0.7588476424186507],[118,157,69,-0.7584981856442609],[118,157,70,-0.7581510820557413],[118,157,71,-0.7578063374539099],[118,157,72,-0.7574639575473926],[118,157,73,-0.757123947952202],[118,157,74,-0.7567863141912878],[118,157,75,-0.756451061694118],[118,157,76,-0.7561181957962464],[118,157,77,-0.7557877217388822],[118,157,78,-0.755459644668464],[118,157,79,-0.7551339696362268],[118,158,64,-0.7604224557427173],[118,158,65,-0.7600634010292422],[118,158,66,-0.7597066746459002],[118,158,67,-0.7593522827608473],[118,158,68,-0.7590002314518116],[118,158,69,-0.7586505267056698],[118,158,70,-0.7583031744180089],[118,158,71,-0.7579581803926914],[118,158,72,-0.7576155503414206],[118,158,73,-0.7572752898833183],[118,158,74,-0.7569374045444768],[118,158,75,-0.7566018997575383],[118,158,76,-0.7562687808612645],[118,158,77,-0.7559380531001046],[118,158,78,-0.7556097216237704],[118,158,79,-0.7552837914868029],[118,159,64,-0.7605761837761478],[118,159,65,-0.7602168852457722],[118,159,66,-0.7598599143020501],[118,159,67,-0.7595052771160331],[118,159,68,-0.7591529797683774],[118,159,69,-0.75880302824892],[118,159,70,-0.7584554284562401],[118,159,71,-0.758110186197226],[118,159,72,-0.7577673071866381],[118,159,73,-0.757426797046689],[118,159,74,-0.7570886613065937],[118,159,75,-0.7567529054021507],[118,159,76,-0.7564195346753102],[118,159,77,-0.7560885543737434],[118,159,78,-0.7557599696504169],[118,159,79,-0.7554337855631597],[118,160,64,-0.7607300659961801],[118,160,65,-0.7603705248668372],[118,160,66,-0.7600133105764286],[118,160,67,-0.7596584292988812],[118,160,68,-0.7593058871177586],[118,160,69,-0.7589556900258382],[118,160,70,-0.7586078439246722],[118,160,71,-0.7582623546241541],[118,160,72,-0.757919227842083],[118,160,73,-0.7575784692037422],[118,160,74,-0.7572400842414508],[118,160,75,-0.7569040783941446],[118,160,76,-0.7565704570069437],[118,160,77,-0.7562392253307229],[118,160,78,-0.755910388521685],[118,160,79,-0.7555839516409294],[118,161,64,-0.7608841021409712],[118,161,65,-0.7605243196330289],[118,161,66,-0.7601668632120553],[118,161,67,-0.7598117390548325],[118,161,68,-0.7594589532478113],[118,161,69,-0.7591085117866899],[118,161,70,-0.7587604205759731],[118,161,71,-0.7584146854285403],[118,161,72,-0.7580713120652093],[118,161,73,-0.7577303061143155],[118,161,74,-0.7573916731112629],[118,161,75,-0.7570554184981052],[118,161,76,-0.7567215476231142],[118,161,77,-0.7563900657403493],[118,161,78,-0.7560609780092317],[118,161,79,-0.7557342894941126],[118,162,64,-0.7610382919471256],[118,162,65,-0.7606782692833776],[118,162,66,-0.7603205719503809],[118,162,67,-0.759965206127752],[118,162,68,-0.7596121779048092],[118,162,69,-0.7592614932801501],[118,162,70,-0.7589131581612132],[118,162,71,-0.758567178363844],[118,162,72,-0.7582235596118596],[118,162,73,-0.7578823075366277],[118,162,74,-0.7575434276766183],[118,162,75,-0.7572069254769842],[118,162,76,-0.75687280628913],[118,162,77,-0.7565410753702814],[118,162,78,-0.7562117378830594],[118,162,79,-0.7558847988950487],[118,163,64,-0.7611926351497535],[118,163,65,-0.7608323735554132],[118,163,66,-0.7604744365313484],[118,163,67,-0.7601188302599893],[118,163,68,-0.7597655608335016],[118,163,69,-0.759414634253363],[118,163,70,-0.7590660564299251],[118,163,71,-0.7587198331819796],[118,163,72,-0.7583759702363235],[118,163,73,-0.7580344732273377],[118,163,74,-0.7576953476965389],[118,163,75,-0.7573585990921601],[118,163,76,-0.7570242327687194],[118,163,77,-0.7566922539865907],[118,163,78,-0.7563626679115761],[118,163,79,-0.7560354796144761],[118,164,64,-0.7613471314824525],[118,164,65,-0.7609866321851441],[118,164,66,-0.7606284566933712],[118,164,67,-0.7602726111923575],[118,164,68,-0.7599191017770953],[118,164,69,-0.7595679344519222],[118,164,70,-0.759219115130083],[118,164,71,-0.758872649633296],[118,164,72,-0.7585285436913185],[118,164,73,-0.7581868029415251],[118,164,74,-0.7578474329284598],[118,164,75,-0.7575104391034169],[118,164,76,-0.7571758268240096],[118,164,77,-0.7568436013537407],[118,164,78,-0.7565137678615755],[118,164,79,-0.7561863314215116],[118,165,64,-0.7615017806772858],[118,165,65,-0.7611410449070377],[118,165,66,-0.7607826321733149],[118,165,67,-0.7604265486641139],[118,165,68,-0.7600728004772332],[118,165,69,-0.7597213936198504],[118,165,70,-0.7593723340080831],[118,165,71,-0.7590256274665569],[118,165,72,-0.7586812797279692],[118,165,73,-0.7583392964326692],[118,165,74,-0.757999683128209],[118,165,75,-0.7576624452689249],[118,165,76,-0.7573275882155065],[118,165,77,-0.7569951172345668],[118,165,78,-0.7566650374982157],[118,165,79,-0.7563373540836298],[118,166,64,-0.7616565824648435],[118,166,65,-0.7612956114540804],[118,166,66,-0.760936962706556],[118,166,67,-0.7605806424130193],[118,166,68,-0.7602266566740545],[118,166,69,-0.7598750114996589],[118,166,70,-0.7595257128088032],[118,166,71,-0.7591787664289998],[118,166,72,-0.7588341780958673],[118,166,73,-0.7584919534527093],[118,166,74,-0.7581520980500669],[118,166,75,-0.7578146173452999],[118,166,76,-0.7574795167021546],[118,166,77,-0.757146801390336],[118,166,78,-0.7568164765850798],[118,166,79,-0.7564885473667232],[118,167,64,-0.7618115365742126],[118,167,65,-0.7614503315577478],[118,167,66,-0.761091448026953],[118,167,67,-0.760734892175309],[118,167,68,-0.7603806701061657],[118,167,69,-0.7600287878323191],[118,167,70,-0.7596792512755733],[118,167,71,-0.7593320662663078],[118,167,72,-0.7589872385430421],[118,167,73,-0.7586447737520154],[118,167,74,-0.7583046774467382],[118,167,75,-0.7579669550875741],[118,167,76,-0.7576316120413081],[118,167,77,-0.7572986535807176],[118,167,78,-0.7569680848841462],[118,167,79,-0.7566399110350732],[118,168,64,-0.7619666427330023],[118,168,65,-0.7616052049480299],[118,168,66,-0.7612460878668712],[118,168,67,-0.7608892976857178],[118,168,68,-0.7605348405106647],[118,168,69,-0.7601827223572863],[118,168,70,-0.7598329491502004],[118,168,71,-0.759485526722633],[118,168,72,-0.7591404608159855],[118,168,73,-0.7587977570794124],[118,168,74,-0.7584574210693747],[118,168,75,-0.7581194582492206],[118,168,76,-0.7577838739887545],[118,168,77,-0.7574506735638078],[118,168,78,-0.7571198621558131],[118,168,79,-0.7567914448513735],[118,169,64,-0.7621219006673137],[118,169,65,-0.7617602313534017],[118,169,66,-0.761400881957153],[118,169,67,-0.76104385867745],[118,169,68,-0.7606891676231116],[118,169,69,-0.7603368148124712],[118,169,70,-0.7599868061729387],[118,169,71,-0.7596391475405682],[118,169,72,-0.7592938446596219],[118,169,73,-0.758950903182151],[118,169,74,-0.758610328667547],[118,169,75,-0.7582721265821235],[118,169,76,-0.7579363022986854],[118,169,77,-0.7576028610960995],[118,169,78,-0.7572718081588686],[118,169,79,-0.756943148576701],[118,170,64,-0.7622773101018012],[118,170,65,-0.761915410500883],[118,170,66,-0.7615558300271785],[118,170,67,-0.7611985748822396],[118,170,68,-0.760843651177589],[118,170,69,-0.7604910649342984],[118,170,70,-0.7601408220825503],[118,170,71,-0.7597929284612057],[118,170,72,-0.7594473898173688],[118,170,73,-0.7591042118059672],[118,170,74,-0.7587633999893036],[118,170,75,-0.7584249598366383],[118,170,76,-0.7580888967237571],[118,170,77,-0.7577552159325432],[118,170,78,-0.7574239226505513],[118,170,79,-0.7570950219705761],[118,171,64,-0.7624328707596508],[118,171,65,-0.7620707421160181],[118,171,66,-0.7617109318048445],[118,171,67,-0.7613534460303303],[118,171,68,-0.7609982909066817],[118,171,69,-0.760645472457688],[118,171,70,-0.7602949966162842],[118,171,71,-0.759946869224118],[118,171,72,-0.7596010960311159],[118,171,73,-0.7592576826950623],[118,171,74,-0.7589166347811518],[118,171,75,-0.7585779577615712],[118,171,76,-0.7582416570150692],[118,171,77,-0.757907737826526],[118,171,78,-0.7575762053865289],[118,171,79,-0.757247064790942],[118,172,64,-0.7625885823625613],[118,172,65,-0.7622262259228563],[118,172,66,-0.7618661870165448],[118,172,67,-0.7615084718504552],[118,172,68,-0.761153086541456],[118,172,69,-0.7608000371160338],[118,172,70,-0.7604493295098559],[118,172,71,-0.7601009695673371],[118,172,72,-0.7597549630412055],[118,172,73,-0.7594113155920825],[118,172,74,-0.7590700327880356],[118,172,75,-0.7587311201041591],[118,172,76,-0.7583945829221443],[118,172,77,-0.7580604265298504],[118,172,78,-0.7577286561208788],[118,172,79,-0.7573992767941431],[118,173,64,-0.7627444446308035],[118,173,65,-0.762381861644011],[118,173,66,-0.76202159538723],[118,173,67,-0.7616636520698961],[118,173,68,-0.7613080378115197],[118,173,69,-0.7609547586412642],[118,173,70,-0.7606038204975083],[118,173,71,-0.7602552292274138],[118,173,72,-0.7599089905864911],[118,173,73,-0.759565110238179],[118,173,74,-0.7592235937533973],[118,173,75,-0.7588844466101289],[118,173,76,-0.7585476741929889],[118,173,77,-0.758213281792796],[118,173,78,-0.7578812746061472],[118,173,79,-0.7575516577349871],[118,174,64,-0.7629004572831907],[118,174,65,-0.7625376490006307],[118,174,66,-0.7621771566403784],[118,174,67,-0.7618189864144554],[118,174,68,-0.7614631444449935],[118,174,69,-0.7611096367638119],[118,174,70,-0.7607584693119813],[118,174,71,-0.7604096479393898],[118,174,72,-0.7600631784043097],[118,174,73,-0.7597190663729778],[118,174,74,-0.7593773174191468],[118,174,75,-0.7590379370236685],[118,174,76,-0.7587009305740627],[118,174,77,-0.7583663033640887],[118,174,78,-0.7580340605933199],[118,174,79,-0.7577042073667136],[118,175,64,-0.7630566200371042],[118,175,65,-0.7626935877124238],[118,175,66,-0.7623328704980201],[118,175,67,-0.7619744746084797],[118,175,68,-0.7616184061685345],[118,175,69,-0.7612646712126397],[118,175,70,-0.7609132756845368],[118,175,71,-0.7605642254368205],[118,175,72,-0.760217526230505],[118,175,73,-0.759873183734605],[118,175,74,-0.7595312035256866],[118,175,75,-0.759191591087451],[118,175,76,-0.7588543518103037],[118,175,77,-0.7585194909909251],[118,175,78,-0.7581870138318465],[118,175,79,-0.7578569254410191],[118,176,64,-0.7632129326084628],[118,176,65,-0.762849677497629],[118,176,66,-0.7624887366807078],[118,176,67,-0.7621301163748302],[118,176,68,-0.7617738227073073],[118,176,69,-0.7614198617152097],[118,176,70,-0.761068239344929],[118,176,71,-0.7607189614517462],[118,176,72,-0.7603720337993981],[118,176,73,-0.7600274620596565],[118,176,74,-0.759685251811882],[118,176,75,-0.7593454085426052],[118,176,76,-0.759007937645098],[118,176,77,-0.7586728444189432],[118,176,78,-0.7583401340696108],[118,176,79,-0.7580098117080273],[118,177,64,-0.7633693947117837],[118,177,65,-0.7630059180730754],[118,177,66,-0.7626447549075772],[118,177,67,-0.7622859114349434],[118,177,68,-0.7619293937850441],[118,177,69,-0.7615752079975437],[118,177,70,-0.7612233600214644],[118,177,71,-0.7608738557147529],[118,177,72,-0.7605267008438478],[118,177,73,-0.760181901083259],[118,177,74,-0.7598394620151211],[118,177,75,-0.7594993891287756],[118,177,76,-0.7591616878203404],[118,177,77,-0.7588263633922823],[118,177,78,-0.7584934210529907],[118,177,79,-0.7581628659163488],[118,178,64,-0.7635260060601621],[118,178,65,-0.7631623091541618],[118,178,66,-0.7628009248963261],[118,178,67,-0.7624418595088108],[118,178,68,-0.7620851191240239],[118,178,69,-0.7617307097842038],[118,178,70,-0.7613786374409816],[118,178,71,-0.7610289079549503],[118,178,72,-0.7606815270952298],[118,178,73,-0.7603365005390483],[118,178,74,-0.7599938338712948],[118,178,75,-0.7596535325841015],[118,178,76,-0.7593156020764138],[118,178,77,-0.7589800476535624],[118,178,78,-0.758646874526838],[118,178,79,-0.7583160878130615],[118,179,64,-0.76368276636525],[118,179,65,-0.7633188504548372],[118,179,66,-0.7629572463631941],[118,179,67,-0.7625979603149575],[118,179,68,-0.7622409984450526],[118,179,69,-0.76188636679827],[118,179,70,-0.7615340713288308],[118,179,71,-0.7611841178999523],[118,179,72,-0.7608365122834166],[118,179,73,-0.7604912601591499],[118,179,74,-0.7601483671147755],[118,179,75,-0.759807838645197],[118,179,76,-0.7594696801521679],[118,179,77,-0.7591338969438638],[118,179,78,-0.7588004942344572],[118,179,79,-0.758469477143688],[118,180,64,-0.7638396753373176],[118,180,65,-0.7634755416876599],[118,180,66,-0.7631137190230229],[118,180,67,-0.7627542135705034],[118,180,68,-0.7623970314675222],[118,180,69,-0.7620421787614026],[118,180,70,-0.7616896614089332],[118,180,71,-0.7613394852759371],[118,180,72,-0.7609916561368373],[118,180,73,-0.760646179674238],[118,180,74,-0.7603030614784775],[118,180,75,-0.7599623070472107],[118,180,76,-0.7596239217849802],[118,180,77,-0.7592879110027867],[118,180,78,-0.758954279917666],[118,180,79,-0.7586230336522577],[118,181,64,-0.763996732685223],[118,181,65,-0.7636323825637688],[118,181,66,-0.7632703425892271],[118,181,67,-0.7629106189911332],[118,181,68,-0.7625532179093829],[118,181,69,-0.7621981453938106],[118,181,70,-0.761845407403753],[118,181,71,-0.7614950098076173],[118,181,72,-0.761146958382448],[118,181,73,-0.7608012588135069],[118,181,74,-0.7604579166938273],[118,181,75,-0.7601169375237964],[118,181,76,-0.7597783267107254],[118,181,77,-0.7594420895684221],[118,181,78,-0.7591082313167651],[118,181,79,-0.7587767570812761],[118,182,64,-0.7641539381164366],[118,182,65,-0.7637893727929075],[118,182,66,-0.7634271167738179],[118,182,67,-0.7630671762911208],[118,182,68,-0.7627095574871656],[118,182,69,-0.7623542664142774],[118,182,70,-0.7620013090343198],[118,182,71,-0.7616506912182645],[118,182,72,-0.761302418745756],[118,182,73,-0.7609564973046947],[118,182,74,-0.7606129324907887],[118,182,75,-0.7602717298071371],[118,182,76,-0.7599328946638012],[118,182,77,-0.7595964323773754],[118,182,78,-0.7592623481705636],[118,182,79,-0.7589306471717492],[118,183,64,-0.7643112913370124],[118,183,65,-0.7639465120833946],[118,183,66,-0.763584041287374],[118,183,67,-0.7632238851832995],[118,183,68,-0.7628660499159535],[118,183,69,-0.7625105415401305],[118,183,70,-0.7621573660202009],[118,183,71,-0.761806529229679],[118,183,72,-0.7614580369507907],[118,183,73,-0.7611118948740536],[118,183,74,-0.7607681085978311],[118,183,75,-0.760426683627915],[118,183,76,-0.7600876253770963],[118,183,77,-0.7597509391647372],[118,183,78,-0.7594166302163471],[118,183,79,-0.7590847036631531],[118,184,64,-0.7644687920516472],[118,184,65,-0.7641038001421845],[118,184,66,-0.7637411158391019],[118,184,67,-0.7633807453791231],[118,184,68,-0.7630226949094423],[118,184,69,-0.7626669704873025],[118,184,70,-0.7623135780795596],[118,184,71,-0.7619625235622512],[118,184,72,-0.7616138127201633],[118,184,73,-0.7612674512464107],[118,184,74,-0.7609234447419921],[118,184,75,-0.7605817987153722],[118,184,76,-0.7602425185820524],[118,184,77,-0.7599056096641432],[118,184,78,-0.7595710771899404],[118,184,79,-0.7592389262934951],[118,185,64,-0.764626439963661],[118,185,65,-0.7642612366748465],[118,185,66,-0.7638983401368153],[118,185,67,-0.7635377565886446],[118,185,68,-0.7631794921799191],[118,185,69,-0.7628235529703095],[118,185,70,-0.7624699449291366],[118,185,71,-0.7621186739349401],[118,185,72,-0.761769745775046],[118,185,73,-0.7614231661451467],[118,185,74,-0.7610789406488555],[118,185,75,-0.7607370747972902],[118,185,76,-0.7603975740086432],[118,185,77,-0.7600604436077538],[118,185,78,-0.7597256888256847],[118,185,79,-0.7593933147992931],[118,186,64,-0.7647842347749757],[118,186,65,-0.764418821385544],[118,186,66,-0.7640557138869142],[118,186,67,-0.7636949185204955],[118,186,68,-0.7633364414382419],[118,186,69,-0.7629802887022308],[118,186,70,-0.7626264662842273],[118,186,71,-0.7622749800652526],[118,186,72,-0.761925835835152],[118,186,73,-0.761579039292175],[118,186,74,-0.7612345960425302],[118,186,75,-0.7608925115999682],[118,186,76,-0.7605527913853526],[118,186,77,-0.7602154407262324],[118,186,78,-0.759880464856418],[118,186,79,-0.7595478689155526],[118,187,64,-0.764942176186176],[118,187,65,-0.7645765539770952],[118,187,66,-0.7642132367944454],[118,187,67,-0.7638522308819464],[118,187,68,-0.7634935423939002],[118,187,69,-0.7631371773947699],[118,187,70,-0.7627831418587439],[118,187,71,-0.7624314416693042],[118,187,72,-0.7620820826187951],[118,187,73,-0.7617350704080029],[118,187,74,-0.7613904106457113],[118,187,75,-0.7610481088482841],[118,187,76,-0.7607081704392362],[118,187,77,-0.7603706007488068],[118,187,78,-0.7600354050135345],[118,187,79,-0.7597025883758302],[118,188,64,-0.7651002638964883],[118,188,65,-0.7647344341509525],[118,188,66,-0.7643709085630821],[118,188,67,-0.7640096933788864],[118,188,68,-0.7636507947549941],[118,188,69,-0.7632942187582328],[118,188,70,-0.7629399713651932],[118,188,71,-0.7625880584617979],[118,188,72,-0.7622384858428692],[118,188,73,-0.7618912592117102],[118,188,74,-0.7615463841796594],[118,188,75,-0.7612038662656736],[118,188,76,-0.7608637108958999],[118,188,77,-0.7605259234032475],[118,188,78,-0.7601905090269647],[118,188,79,-0.7598574729122101],[118,189,64,-0.7652584976037605],[118,189,65,-0.7648924616071815],[118,189,66,-0.764528728895103],[118,189,67,-0.7641673057158023],[118,189,68,-0.7638081982282136],[118,189,69,-0.7634514125015077],[118,189,70,-0.7630969545146569],[118,189,71,-0.7627448301560035],[118,189,72,-0.7623950452228274],[118,189,73,-0.7620476054209281],[118,189,74,-0.7617025163641785],[118,189,75,-0.761359783574109],[118,189,76,-0.7610194124794786],[118,189,77,-0.7606814084158473],[118,189,78,-0.7603457766251533],[118,189,79,-0.7600125222552842],[118,190,64,-0.7654168770045222],[118,190,65,-0.7650506360445215],[118,190,66,-0.7646866974914527],[118,190,67,-0.7643250675958388],[118,190,68,-0.7639657525188988],[118,190,69,-0.7636087583321255],[118,190,70,-0.7632540910168517],[118,190,71,-0.7629017564638183],[118,190,72,-0.7625517604727428],[118,190,73,-0.7622041087519001],[118,190,74,-0.761858806917678],[118,190,75,-0.76151586049416],[118,190,76,-0.7611752749126972],[118,190,77,-0.7608370555114813],[118,190,78,-0.7605012075351205],[118,190,79,-0.7601677361342123],[118,191,64,-0.7655754017939549],[118,191,65,-0.765208957160356],[118,191,66,-0.7648448140517116],[118,191,67,-0.7644829787207693],[118,191,68,-0.7641234573310106],[118,191,69,-0.7637662559562298],[118,191,70,-0.7634113805800988],[118,191,71,-0.7630588370957367],[118,191,72,-0.7627086313052778],[118,191,73,-0.762360768919452],[118,191,74,-0.7620152555571418],[118,191,75,-0.7616720967449635],[118,191,76,-0.7613312979168408],[118,191,77,-0.760992864413577],[118,191,78,-0.7606568014824318],[118,191,79,-0.7603231142766923],[118,192,64,-0.7657340716659164],[118,192,65,-0.765367424650737],[118,192,66,-0.7650030782741212],[118,192,67,-0.7646410387910195],[118,192,68,-0.7642813123671548],[118,192,69,-0.7639239050786013],[118,192,70,-0.7635688229113495],[118,192,71,-0.7632160717608755],[118,192,72,-0.7628656574317093],[118,192,73,-0.7625175856370164],[118,192,74,-0.7621718619981526],[118,192,75,-0.761828492044248],[118,192,76,-0.7614874812117784],[118,192,77,-0.7611488348441393],[118,192,78,-0.7608125581912217],[118,192,79,-0.7604786564089843],[118,193,64,-0.7658928863129115],[118,193,65,-0.7655260382103551],[118,193,66,-0.7651614898555532],[118,193,67,-0.7647992475056378],[118,193,68,-0.7644393173285517],[118,193,69,-0.7640817054026279],[118,193,70,-0.7637264177161538],[118,193,71,-0.7633734601669422],[118,193,72,-0.7630228385618982],[118,193,73,-0.7626745586166017],[118,193,74,-0.7623286259548623],[118,193,75,-0.7619850461083031],[118,193,76,-0.7616438245159327],[118,193,77,-0.7613049665237188],[118,193,78,-0.7609684773841643],[118,193,79,-0.76063436225588],[118,194,64,-0.7660518454261516],[118,194,65,-0.7656847975325999],[118,194,66,-0.7653200484915709],[118,194,67,-0.7649576045623564],[118,194,68,-0.7645974719150979],[118,194,69,-0.7642396566303651],[118,194,70,-0.7638841646987223],[118,194,71,-0.7635310020202973],[118,194,72,-0.7631801744043499],[118,194,73,-0.7628316875688539],[118,194,74,-0.7624855471400522],[118,194,75,-0.7621417586520409],[118,194,76,-0.7618003275463416],[118,194,77,-0.7614612591714739],[118,194,78,-0.7611245587825335],[118,194,79,-0.7607902315407639],[118,195,64,-0.7662109486955347],[118,195,65,-0.7658437023095392],[118,195,66,-0.7654787538764076],[118,195,67,-0.7651161096575697],[118,195,68,-0.7647557758253436],[118,195,69,-0.7643977584625155],[118,195,70,-0.7640420635619044],[118,195,71,-0.7636886970259327],[118,195,72,-0.7633376646661939],[118,195,73,-0.7629889722030352],[118,195,74,-0.7626426252651124],[118,195,75,-0.7622986293889747],[118,195,76,-0.761956990018636],[118,195,77,-0.761617712505149],[118,195,78,-0.7612808021061822],[118,195,79,-0.7609462639855922],[118,196,64,-0.7663701958096244],[118,196,65,-0.7660027522318988],[118,196,66,-0.7656376057029466],[118,196,67,-0.7652747624863137],[118,196,68,-0.7649142287564737],[118,196,69,-0.7645560105984073],[118,196,70,-0.7642001140071676],[118,196,71,-0.7638465448874502],[118,196,72,-0.7634953090531618],[118,196,73,-0.7631464122270023],[118,196,74,-0.7627998600400202],[118,196,75,-0.762455658031197],[118,196,76,-0.7621138116470195],[118,196,77,-0.7617743262410533],[118,196,78,-0.7614372070735203],[118,196,79,-0.7611024593108707],[118,197,64,-0.76652958645571],[118,197,65,-0.7661619469891221],[118,197,66,-0.7657966036627807],[118,197,67,-0.7654335627423264],[118,197,68,-0.7650728304043668],[118,197,69,-0.7647144127360552],[118,197,70,-0.7643583157346581],[118,197,71,-0.7640045453071229],[118,197,72,-0.763653107269649],[118,197,73,-0.763304007347268],[118,197,74,-0.7629572511734009],[118,197,75,-0.7626128442894412],[118,197,76,-0.7622707921443287],[118,197,77,-0.7619311000941218],[118,197,78,-0.7615937734015763],[118,197,79,-0.7612588172357168],[118,198,64,-0.7666891203197775],[118,198,65,-0.7663212862693408],[118,198,66,-0.7659557474461833],[118,198,67,-0.7655925101180185],[118,198,68,-0.7652315804635659],[118,198,69,-0.7648729645721307],[118,198,70,-0.7645166684431707],[118,198,71,-0.764162697985865],[118,198,72,-0.7638110590186838],[118,198,73,-0.7634617572689706],[118,198,74,-0.7631147983724977],[118,198,75,-0.7627701878730512],[118,198,76,-0.762427931222003],[118,198,77,-0.762088033777885],[118,198,78,-0.7617505008059667],[118,198,79,-0.7614153374778279],[118,199,64,-0.766848797086533],[118,199,65,-0.7664807697593989],[118,199,66,-0.7661150367421323],[118,199,67,-0.7657516043044968],[118,199,68,-0.7653904786273028],[118,199,69,-0.7650316658019858],[118,199,70,-0.7646751718301734],[118,199,71,-0.7643210026232553],[118,199,72,-0.7639691640019521],[118,199,73,-0.7636196616958981],[118,199,74,-0.7632725013431966],[118,199,75,-0.7629276884900054],[118,199,76,-0.7625852285901091],[118,199,77,-0.7622451270044928],[118,199,78,-0.7619073890009203],[118,199,79,-0.7615720197535065],[118,200,64,-0.7670086164393731],[118,200,65,-0.7666403971448235],[118,200,66,-0.7662744712382796],[118,200,67,-0.7659108449915347],[118,200,68,-0.7655495245874676],[118,200,69,-0.7651905161196229],[118,200,70,-0.7648338255917768],[118,200,71,-0.7644794589175082],[118,200,72,-0.7641274219197673],[118,200,73,-0.7637777203304581],[118,200,74,-0.7634303597899947],[118,200,75,-0.7630853458468866],[118,200,76,-0.7627426839573103],[118,200,77,-0.7624023794846845],[118,200,78,-0.7620644376992474],[118,200,79,-0.7617288637776299],[118,201,64,-0.7671685780604461],[118,201,65,-0.7668001681098839],[118,201,66,-0.7664340506210127],[118,201,67,-0.7660702318676329],[118,201,68,-0.7657087180346701],[118,201,69,-0.7653495152177563],[118,201,70,-0.7649926294227952],[118,201,71,-0.7646380665655337],[118,201,72,-0.7642858324711304],[118,201,73,-0.7639359328737385],[118,201,74,-0.7635883734160626],[118,201,75,-0.7632431596489426],[118,201,76,-0.7629002970309275],[118,201,77,-0.7625597909278494],[118,201,78,-0.7622216466124012],[118,201,79,-0.76188586926371],[118,202,64,-0.7673286816306304],[118,202,65,-0.7669600823375724],[118,202,66,-0.7665937745754332],[118,202,67,-0.7662297646199979],[118,202,68,-0.7658680586582178],[118,202,69,-0.7655086627877903],[118,202,70,-0.7651515830167253],[118,202,71,-0.7647968252629163],[118,202,72,-0.7644443953537097],[118,202,73,-0.7640942990254869],[118,202,74,-0.7637465419232219],[118,202,75,-0.7634011296000653],[118,202,76,-0.7630580675169184],[118,202,77,-0.7627173610420062],[118,202,78,-0.7623790154504566],[118,202,79,-0.7620430359238735],[118,203,64,-0.7674889268295134],[118,203,65,-0.7671201395095821],[118,203,66,-0.7667536427853354],[118,203,67,-0.7663894429345218],[118,203,68,-0.7660275461460957],[118,203,69,-0.7656679585197984],[118,203,70,-0.7653106860657249],[118,203,71,-0.7649557347038941],[118,203,72,-0.7646031102638187],[118,203,73,-0.764252818484088],[118,203,74,-0.7639048650119246],[118,203,75,-0.7635592554027694],[118,203,76,-0.7632159951198549],[118,203,77,-0.7628750895337801],[118,203,78,-0.7625365439220877],[118,203,79,-0.7622003634688386],[118,204,64,-0.7676493133354528],[118,204,65,-0.7672803393063682],[118,204,66,-0.7669136549332682],[118,204,67,-0.7665492664958422],[118,204,68,-0.7661871801850263],[118,204,69,-0.7658274021025844],[118,204,70,-0.7654699382606743],[118,204,71,-0.7651147945814196],[118,204,72,-0.7647619768964781],[118,204,73,-0.7644114909466259],[118,204,74,-0.7640633423813138],[118,204,75,-0.7637175367582525],[118,204,76,-0.7633740795429856],[118,204,77,-0.7630329761084654],[118,204,78,-0.7626942317346301],[118,204,79,-0.7623578516079778],[118,205,64,-0.767809840825546],[118,205,65,-0.7674406814071174],[118,205,66,-0.7670738107005034],[118,205,67,-0.7667092349873124],[118,205,68,-0.76634696046044],[118,205,69,-0.7659869932236512],[118,205,70,-0.7656293392911453],[118,205,71,-0.7652740045871289],[118,205,72,-0.7649209949453841],[118,205,73,-0.7645703161088531],[118,205,74,-0.7642219737291935],[118,205,75,-0.7638759733663656],[118,205,76,-0.7635323204882042],[118,205,77,-0.7631910204699943],[118,205,78,-0.7628520785940497],[118,205,79,-0.762515500049286],[118,206,64,-0.767970508975655],[118,206,65,-0.7676011654897728],[118,206,66,-0.7672341097670614],[118,206,67,-0.7668693480910256],[118,206,68,-0.7665068866564995],[118,206,69,-0.7661467315692263],[118,206,70,-0.7657888888454262],[118,206,71,-0.7654333644113669],[118,206,72,-0.765080164102934],[118,206,73,-0.7647292936652142],[118,206,74,-0.7643807587520526],[118,206,75,-0.7640345649256371],[118,206,76,-0.7636907176560739],[118,206,77,-0.7633492223209609],[118,206,78,-0.763010084204967],[118,206,79,-0.7626733084994058],[118,207,64,-0.7681313174603753],[118,207,65,-0.7677617912310033],[118,207,66,-0.7673945518116798],[118,207,67,-0.767029605487785],[118,207,68,-0.7666669584560682],[118,207,69,-0.7663066168242305],[118,207,70,-0.7659485866104903],[118,207,71,-0.7655928737431559],[118,207,72,-0.7652394840601946],[118,207,73,-0.7648884233088171],[118,207,74,-0.7645396971450342],[118,207,75,-0.7641933111332423],[118,207,76,-0.7638492707457976],[118,207,77,-0.7635075813625908],[118,207,78,-0.7631682482706263],[118,207,79,-0.7628312766635958],[118,208,64,-0.7682922659530981],[118,208,65,-0.7679225583062645],[118,208,66,-0.7675551365118757],[118,208,67,-0.7671900068571642],[118,208,68,-0.7668271755407734],[118,208,69,-0.7664666486723397],[118,208,70,-0.7661084322720586],[118,208,71,-0.7657525322702573],[118,208,72,-0.7653989545069639],[118,208,73,-0.7650477047314921],[118,208,74,-0.7646987886019974],[118,208,75,-0.764352211685064],[118,208,76,-0.7640079794552779],[118,208,77,-0.7636660972948023],[118,208,78,-0.7633265704929572],[118,208,79,-0.7629894042457924],[118,209,64,-0.7684533541259876],[118,209,65,-0.7680834663897778],[118,209,66,-0.767715863543923],[118,209,67,-0.7673505518774862],[118,209,68,-0.7669875375909829],[118,209,69,-0.7666268267959628],[118,209,70,-0.7662684255145771],[118,209,71,-0.7659123396791502],[118,209,72,-0.76555857513175],[118,209,73,-0.7652071376237717],[118,209,74,-0.7648580328154955],[118,209,75,-0.7645112662756719],[118,209,76,-0.7641668434810965],[118,209,77,-0.7638247698161853],[118,209,78,-0.763485050572553],[118,209,79,-0.7631476909485883],[118,210,64,-0.7686145816499613],[118,210,65,-0.7682445151545088],[118,210,66,-0.7678767325828322],[118,210,67,-0.7675112402258024],[118,210,68,-0.7671480442857848],[118,210,69,-0.7667871508762208],[118,210,70,-0.7664285660211956],[118,210,71,-0.7660722956550094],[118,210,72,-0.7657183456217486],[118,210,73,-0.7653667216748687],[118,210,74,-0.7650174294767537],[118,210,75,-0.7646704745983],[118,210,76,-0.7643258625184923],[118,210,77,-0.7639835986239786],[118,210,78,-0.7636436882086488],[118,210,79,-0.7633061364732102],[118,211,64,-0.7687759481947499],[118,211,65,-0.7684057042722285],[118,211,66,-0.7680377433024107],[118,211,67,-0.7676720715779528],[118,211,68,-0.7673086953030481],[118,211,69,-0.7669476205930079],[118,211,70,-0.7665888534738294],[118,211,71,-0.7662323998817675],[118,211,72,-0.7658782656629051],[118,211,73,-0.7655264565727378],[118,211,74,-0.7651769782757316],[118,211,75,-0.7648298363449089],[118,211,76,-0.7644850362614224],[118,211,77,-0.764142583414132],[118,211,78,-0.7638024830991827],[118,211,79,-0.7634647405195808],[118,212,64,-0.7689374534288671],[118,212,65,-0.7685670334134833],[118,212,66,-0.768198895375233],[118,212,67,-0.7678330456085365],[118,212,68,-0.7674694903193927],[118,212,69,-0.7671082356249608],[118,212,70,-0.7667492875531283],[118,212,71,-0.7663926520420828],[118,212,72,-0.7660383349398834],[118,212,73,-0.765686342004044],[118,212,74,-0.7653366789010919],[118,212,75,-0.7649893512061541],[118,212,76,-0.7646443644025316],[118,212,77,-0.7643017238812754],[118,212,78,-0.7639614349407657],[118,212,79,-0.7636235027862872],[118,213,64,-0.7690990970196345],[118,213,65,-0.768728502247618],[118,213,66,-0.7683601884726645],[118,213,67,-0.7679941619909354],[118,213,68,-0.7676304290102132],[118,213,69,-0.7672689956494828],[118,213,70,-0.7669098679385007],[118,213,71,-0.7665530518173658],[118,213,72,-0.7661985531360909],[118,213,73,-0.765846377654188],[118,213,74,-0.7654965310402243],[118,213,75,-0.7651490188714111],[118,213,76,-0.7648038466331766],[118,213,77,-0.7644610197187429],[118,213,78,-0.764120543428705],[118,213,79,-0.7637824229706063],[118,214,64,-0.7692608786331507],[118,214,65,-0.7688901104427472],[118,214,66,-0.7685216222648317],[118,214,67,-0.7681554203972842],[118,214,68,-0.7677915110496485],[118,214,69,-0.7674299003427141],[118,214,70,-0.7670705943080836],[118,214,71,-0.7667135988877459],[118,214,72,-0.766358919933647],[118,214,73,-0.7660065632072743],[118,214,74,-0.7656565343792154],[118,214,75,-0.7653088390287441],[118,214,76,-0.7649634826433953],[118,214,77,-0.7646204706185419],[118,214,78,-0.7642798082569735],[118,214,79,-0.7639415007684724],[118,215,64,-0.7694227979343526],[118,215,65,-0.7690518576658152],[118,215,66,-0.7686831964206824],[118,215,67,-0.7683168204985309],[118,215,68,-0.7679527361106436],[118,215,69,-0.7675909493795918],[118,215,70,-0.7672314663388035],[118,215,71,-0.7668742929321353],[118,215,72,-0.7665194350134449],[118,215,73,-0.7661668983461745],[118,215,74,-0.76581668860291],[118,215,75,-0.7654688113649674],[118,215,76,-0.7651232721219681],[118,215,77,-0.7647800762714148],[118,215,78,-0.7644392291182718],[118,215,79,-0.7641007358745399],[118,216,64,-0.7695848545869942],[118,216,65,-0.7692137435825747],[118,216,66,-0.7688449106079651],[118,216,67,-0.7684783619644159],[118,216,68,-0.7681141038649271],[118,216,69,-0.7677521424338296],[118,216,70,-0.7673924837063547],[118,216,71,-0.7670351336282057],[118,216,72,-0.7666800980551298],[118,216,73,-0.766327382752503],[118,216,74,-0.7659769933948886],[118,216,75,-0.7656289355656241],[118,216,76,-0.7652832147563962],[118,216,77,-0.7649398363668172],[118,216,78,-0.7645988057040055],[118,216,79,-0.7642601279821608],[118,217,64,-0.7697470482536243],[118,217,65,-0.7693757678575658],[118,217,66,-0.769006764493207],[118,217,67,-0.7686400444634504],[118,217,68,-0.76827561398299],[118,217,69,-0.7679134791778953],[118,217,70,-0.7675536460851782],[118,217,71,-0.7671961206523669],[118,217,72,-0.7668409087370771],[118,217,73,-0.7664880161065972],[118,217,74,-0.7661374484374468],[118,217,75,-0.7657892113149636],[118,217,76,-0.7654433102328791],[118,217,77,-0.7650997505928951],[118,217,78,-0.7647585377042638],[118,217,79,-0.7644196767833631],[118,218,64,-0.769909378595649],[118,218,65,-0.7695379301541767],[118,218,66,-0.7691687577417758],[118,218,67,-0.7688018676629773],[118,218,68,-0.7684372661341479],[118,218,69,-0.7680749592830723],[118,218,70,-0.7677149531485222],[118,218,71,-0.7673572536798287],[118,218,72,-0.7670018667364544],[118,218,73,-0.7666487980875786],[118,218,74,-0.766298053411656],[118,218,75,-0.7659496382960039],[118,218,76,-0.765603558236378],[118,218,77,-0.7652598186365485],[118,218,78,-0.7649184248078809],[118,218,79,-0.764579381968912],[118,219,64,-0.7700718452733093],[118,219,65,-0.7697002301346232],[118,219,66,-0.7693308900178575],[118,219,67,-0.7689638312291501],[118,219,68,-0.7685990599865178],[118,219,69,-0.7682365824194385],[118,219,70,-0.7678764045684214],[118,219,71,-0.7675185323845788],[118,219,72,-0.7671629717291989],[118,219,73,-0.7668097283733304],[118,219,74,-0.7664588079973419],[118,219,75,-0.7661102161905093],[118,219,76,-0.7657639584505916],[118,219,77,-0.765420040183407],[118,219,78,-0.7650784667024143],[118,219,79,-0.7647392432282883],[118,220,64,-0.77023444794566],[118,220,65,-0.7698626674599256],[118,220,66,-0.7694931609844354],[118,220,67,-0.7691259348269115],[118,220,68,-0.7687609952069978],[118,220,69,-0.7683983482558442],[118,220,70,-0.7680380000156748],[118,220,71,-0.7676799564393617],[118,220,72,-0.7673242233899965],[118,220,73,-0.7669708066404763],[118,220,74,-0.7666197118730627],[118,220,75,-0.7662709446789687],[118,220,76,-0.765924510557936],[118,220,77,-0.7655804149178101],[118,220,78,-0.7652386630741228],[118,220,79,-0.7648992602496669],[118,221,64,-0.7703971862706309],[118,221,65,-0.7700252417899712],[118,221,66,-0.7696555703033512],[118,221,67,-0.7692881781200536],[118,221,68,-0.768923071461328],[118,221,69,-0.7685602564599734],[118,221,70,-0.7681997391599071],[118,221,71,-0.7678415255157389],[118,221,72,-0.7674856213923427],[118,221,73,-0.7671320325644421],[118,221,74,-0.7667807647161702],[118,221,75,-0.766431823440657],[118,221,76,-0.7660852142396051],[118,221,77,-0.7657409425228675],[118,221,78,-0.7653990136080279],[118,221,79,-0.7650594327199771],[118,222,64,-0.7705600599049961],[118,222,65,-0.7701879527834836],[118,222,66,-0.7698181176352739],[118,222,67,-0.7694505607711885],[118,222,68,-0.7690852884140595],[118,222,69,-0.7687223066983132],[118,222,70,-0.7683616216695379],[118,222,71,-0.7680032392840594],[118,222,72,-0.7676471654085117],[118,222,73,-0.7672934058194241],[118,222,74,-0.7669419662027797],[118,222,75,-0.766592852153604],[118,222,76,-0.7662460691755405],[118,222,77,-0.7659016226804282],[118,222,78,-0.7655595179878827],[118,222,79,-0.7652197603248727],[118,223,64,-0.7707230685043981],[118,223,65,-0.7703508000980462],[118,223,66,-0.7699808026397249],[118,223,67,-0.7696130824417718],[118,223,68,-0.7692476457285795],[118,223,69,-0.7688844986361784],[118,223,70,-0.7685236472118064],[118,223,71,-0.768165097413483],[118,223,72,-0.7678088551095812],[118,223,73,-0.7674549260784138],[118,223,74,-0.7671033160077934],[118,223,75,-0.7667540304946193],[118,223,76,-0.766407075044455],[118,223,77,-0.7660624550711052],[118,223,78,-0.7657201758961967],[118,223,79,-0.7653802427487555],[118,224,64,-0.7708862117233177],[118,224,65,-0.7705137833900724],[118,224,66,-0.7701436249750468],[118,224,67,-0.7697757427920724],[118,224,68,-0.7694101430670791],[118,224,69,-0.7690468319376799],[118,224,70,-0.7686858154527397],[118,224,71,-0.76832709957195],[118,224,72,-0.767970690165401],[118,224,73,-0.7676165930131674],[118,224,74,-0.7672648138048697],[118,224,75,-0.7669153581392604],[118,224,76,-0.766568231523802],[118,224,77,-0.766223439374244],[118,224,78,-0.7658809870142038],[118,224,79,-0.7655408796747447],[118,225,64,-0.7710494892151352],[118,225,65,-0.7706769023148663],[118,225,66,-0.7703065842984649],[118,225,67,-0.7699385414812331],[118,225,68,-0.7695727800906161],[118,225,69,-0.7692093062657868],[118,225,70,-0.7688481260572151],[118,225,71,-0.7684892454262424],[118,225,72,-0.7681326702446543],[118,225,73,-0.7677784062942663],[118,225,74,-0.767426459266485],[118,225,75,-0.7670768347618951],[118,225,76,-0.766729538289837],[118,225,77,-0.7663845752679842],[118,225,78,-0.7660419510219247],[118,225,79,-0.7657016707847382],[118,226,64,-0.7712129006321077],[118,226,65,-0.7708401565266011],[118,226,66,-0.7704696802660652],[118,226,67,-0.7701014781672497],[118,226,68,-0.7697355564590925],[118,226,69,-0.7693719212823042],[118,226,70,-0.7690105786889376],[118,226,71,-0.768651534641962],[118,226,72,-0.7682947950148366],[118,226,73,-0.7679403655910959],[118,226,74,-0.7675882520639113],[118,226,75,-0.7672384600356787],[118,226,76,-0.7668909950175955],[118,226,77,-0.7665458624292381],[118,226,78,-0.7662030675981444],[118,226,79,-0.7658626157593904],[118,227,64,-0.7713764456253492],[118,227,65,-0.7710035456782981],[118,227,66,-0.770632912532773],[118,227,67,-0.7702645525069486],[118,227,68,-0.7698984718312331],[118,227,69,-0.769534676647852],[118,227,70,-0.7691731730104188],[118,227,71,-0.7688139668835089],[118,227,72,-0.768457064142233],[118,227,73,-0.7681024705718233],[118,227,74,-0.7677501918671947],[118,227,75,-0.7674002336325327],[118,227,76,-0.7670526013808706],[118,227,77,-0.7667073005336673],[118,227,78,-0.7663643364203898],[118,227,79,-0.7660237142780904],[118,228,64,-0.7715401238448909],[118,228,65,-0.7711670694218874],[118,228,66,-0.7707962807524145],[118,228,67,-0.7704277641560489],[118,228,68,-0.7700615258646465],[118,228,69,-0.7696975720219255],[118,228,70,-0.7693359086830378],[118,228,71,-0.7689765418141424],[118,228,72,-0.7686194772919803],[118,228,73,-0.7682647209034595],[118,228,74,-0.7679122783452169],[118,228,75,-0.7675621552232061],[118,228,76,-0.7672143570522757],[118,228,77,-0.7668688892557461],[118,228,78,-0.7665257571649929],[118,228,79,-0.7661849660190234],[118,229,64,-0.7717039349396502],[118,229,65,-0.771330727408177],[118,229,66,-0.7709597845776851],[118,229,67,-0.7705911127691308],[118,229,68,-0.7702247182157946],[118,229,69,-0.7698606070628651],[118,229,70,-0.7694987853670101],[118,229,71,-0.7691392590959508],[118,229,72,-0.7687820341280359],[118,229,73,-0.7684271162518277],[118,229,74,-0.7680745111656635],[118,229,75,-0.7677242244772444],[118,229,76,-0.7673762617032125],[118,229,77,-0.7670306282687291],[118,229,78,-0.7666873295070574],[118,229,79,-0.76634637065914],[118,230,64,-0.7718678785574556],[118,230,65,-0.7714945192868776],[118,230,66,-0.771123423660175],[118,230,67,-0.7707545979996605],[118,230,68,-0.7703880485400167],[118,230,69,-0.7700237814278804],[118,230,70,-0.7696618027214127],[118,230,71,-0.769302118389875],[118,230,72,-0.7689447343132015],[118,230,73,-0.7685896562815875],[118,230,74,-0.7682368899950494],[118,230,75,-0.7678864410630136],[118,230,76,-0.7675383150038952],[118,230,77,-0.7671925172446755],[118,230,78,-0.7668490531204848],[118,230,79,-0.76650792787418],[118,231,64,-0.772031954345016],[118,231,65,-0.7716584447065716],[118,231,66,-0.771287197650337],[118,231,67,-0.7709182194999589],[118,231,68,-0.7705515164914989],[118,231,69,-0.7701870947730192],[118,231,70,-0.7698249604041524],[118,231,71,-0.7694651193556774],[118,231,72,-0.7691075775090929],[118,231,73,-0.7687523406562045],[118,231,74,-0.7683994144986861],[118,231,75,-0.7680488046476692],[118,231,76,-0.7677005166233198],[118,231,77,-0.7673545558544185],[118,231,78,-0.7670109276779418],[118,231,79,-0.7666696373386407],[118,232,64,-0.7721961619479814],[118,232,65,-0.7718225033147741],[118,232,66,-0.771451106197549],[118,232,67,-0.7710819769212631],[118,232,68,-0.7707151217233348],[118,232,69,-0.770350546753229],[118,232,70,-0.7699882580720274],[118,232,71,-0.7696282616520043],[118,232,72,-0.7692705633762006],[118,232,73,-0.7689151690380109],[118,232,74,-0.7685620843407452],[118,232,75,-0.7682113148972178],[118,232,76,-0.7678628662293254],[118,232,77,-0.7675167437676262],[118,232,78,-0.7671729528509227],[118,232,79,-0.7668314987258392],[118,233,64,-0.7723605010109211],[118,233,65,-0.7719866947579116],[118,233,66,-0.7716151489500912],[118,233,67,-0.7712458699137046],[118,233,68,-0.7708788638875044],[118,233,69,-0.7705141370223351],[118,233,70,-0.7701516953807055],[118,233,71,-0.769791544936363],[118,233,72,-0.7694336915738689],[118,233,73,-0.7690781410881847],[118,233,74,-0.7687248991842348],[118,233,75,-0.7683739714764951],[118,233,76,-0.768025363488572],[118,233,77,-0.7676790806527803],[118,233,78,-0.7673351283097274],[118,233,79,-0.7669935117078904],[118,234,64,-0.7725249711773035],[118,234,65,-0.7721510186813002],[118,234,66,-0.7717793255551252],[118,234,67,-0.7714098981262878],[118,234,68,-0.7710427426348515],[118,234,69,-0.7706778652330187],[118,234,70,-0.7703152719847021],[118,234,71,-0.7699549688651004],[118,234,72,-0.7695969617602727],[118,234,73,-0.7692412564667261],[118,234,74,-0.7688878586909779],[118,234,75,-0.768536774049144],[118,234,76,-0.7681880080665187],[118,234,77,-0.7678415661771532],[118,234,78,-0.7674974537234384],[118,234,79,-0.767155675955684],[118,235,64,-0.772689572089555],[118,235,65,-0.7723154747292067],[118,235,66,-0.7719436356587548],[118,235,67,-0.7715740612069508],[118,235,68,-0.7712067576151463],[118,235,69,-0.7708417310368785],[118,235,70,-0.7704789875374418],[118,235,71,-0.770118533093464],[118,235,72,-0.7697603735924802],[118,235,73,-0.7694045148325208],[118,235,74,-0.7690509625216743],[118,235,75,-0.7686997222776755],[118,235,76,-0.7683507996274853],[118,235,77,-0.7680042000068699],[118,235,78,-0.7676599287599832],[118,235,79,-0.7673179911389469],[118,236,64,-0.7728543033890316],[118,236,65,-0.7724800625448176],[118,236,66,-0.7721080789059954],[118,236,67,-0.7717383588025349],[118,236,68,-0.7713709084770531],[118,236,69,-0.7710057340843993],[118,236,70,-0.7706428416912274],[118,236,71,-0.7702822372755715],[118,236,72,-0.7699239267264208],[118,236,73,-0.7695679158433076],[118,236,74,-0.7692142103358692],[118,236,75,-0.7688628158234382],[118,236,76,-0.7685137378346208],[118,236,77,-0.768166981806877],[118,236,78,-0.7678225530861031],[118,236,79,-0.7674804569262117],[118,237,64,-0.7730191647160412],[118,237,65,-0.7726447817702641],[118,237,66,-0.7722726549407981],[118,237,67,-0.7719027905588087],[118,237,68,-0.7715351948681554],[118,237,69,-0.7711698740249767],[118,237,70,-0.7708068340972638],[118,237,71,-0.7704460810644346],[118,237,72,-0.7700876208169105],[118,237,73,-0.7697314591557032],[118,237,74,-0.7693776017919776],[118,237,75,-0.7690260543466423],[118,237,76,-0.768676822349928],[118,237,77,-0.7683299112409667],[118,237,78,-0.7679853263673766],[118,237,79,-0.7676430729848405],[118,238,64,-0.7731841557098136],[118,238,65,-0.77280963204659],[118,238,66,-0.7724373634060187],[118,238,67,-0.7720673561204371],[118,238,68,-0.7716996164349242],[118,238,69,-0.7713341505068859],[118,238,70,-0.7709709644056271],[118,238,71,-0.7706100641119278],[118,238,72,-0.770251455517619],[118,238,73,-0.7698951444251702],[118,238,74,-0.7695411365472524],[118,238,75,-0.7691894375063283],[118,238,76,-0.7688400528342312],[118,238,77,-0.7684929879717451],[118,238,78,-0.7681482482681886],[118,238,79,-0.7678058389809937],[118,239,64,-0.7733492760085623],[118,239,65,-0.7729746130138145],[118,239,66,-0.772602203943479],[118,239,67,-0.7722320551310424],[118,239,68,-0.7718641728227804],[118,239,69,-0.7714985631773429],[118,239,70,-0.771135232265326],[118,239,71,-0.77077418606885],[118,239,72,-0.7704154304811328],[118,239,73,-0.77005897130608],[118,239,74,-0.7697048142578468],[118,239,75,-0.7693529649604283],[118,239,76,-0.7690034289472395],[118,239,77,-0.7686562116606948],[118,239,78,-0.7683113184517921],[118,239,79,-0.7679687545796923],[118,240,64,-0.7735145252494612],[118,240,65,-0.7731397243109088],[118,240,66,-0.7727671761939452],[118,240,67,-0.7723968872331832],[118,240,68,-0.7720288636760719],[118,240,69,-0.7716631116824825],[118,240,70,-0.7712996373242804],[118,240,71,-0.7709384465849025],[118,240,72,-0.7705795453589327],[118,240,73,-0.77022293945169],[118,240,74,-0.7698686345787916],[118,240,75,-0.7695166363657445],[118,240,76,-0.7691669503475232],[118,240,77,-0.7688195819681514],[118,240,78,-0.7684745365802856],[118,240,79,-0.7681318194447948],[118,241,64,-0.7736799030686244],[118,241,65,-0.7733049655757753],[118,241,66,-0.7729322797971058],[118,241,67,-0.7725618520683315],[118,241,68,-0.7721936886380522],[118,241,69,-0.771827795667337],[118,241,70,-0.7714641792292981],[118,241,71,-0.7711028453086674],[118,241,72,-0.7707437998013712],[118,241,73,-0.7703870485141208],[118,241,74,-0.7700325971639738],[118,241,75,-0.7696804513779265],[118,241,76,-0.7693306166924921],[118,241,77,-0.7689830985532824],[118,241,78,-0.7686379023145914],[118,241,79,-0.7682950332389751],[118,242,64,-0.7738454091011665],[118,242,65,-0.7734703364453088],[118,242,66,-0.7730975143916333],[118,242,67,-0.7727269492769351],[118,242,68,-0.7723586473509413],[118,242,69,-0.7719926147758969],[118,242,70,-0.7716288576261378],[118,242,71,-0.7712673818876679],[118,242,72,-0.7709081934577349],[118,242,73,-0.770551298144419],[118,242,74,-0.7701967016661972],[118,242,75,-0.7698444096515331],[118,242,76,-0.7694944276384574],[118,242,77,-0.7691467610741485],[118,242,78,-0.7688014153145167],[118,242,79,-0.7684583956237847],[118,243,64,-0.774011042981172],[118,243,65,-0.7736358365553654],[118,243,66,-0.7732628796151526],[118,243,67,-0.7728921784983854],[118,243,68,-0.7725237394558954],[118,243,69,-0.7721575686510802],[118,243,70,-0.7717936721594767],[118,243,71,-0.7714320559683386],[118,243,72,-0.7710727259762121],[118,243,73,-0.7707156879925254],[118,243,74,-0.7703609477371517],[118,243,75,-0.7700085108400011],[118,243,76,-0.7696583828405997],[118,243,77,-0.7693105691876716],[118,243,78,-0.7689650752387225],[118,243,79,-0.7686219062596205],[118,244,64,-0.7741768043417194],[118,244,65,-0.7738014655407861],[118,244,66,-0.7734283751042655],[118,244,67,-0.7730575393710428],[118,244,68,-0.7726889645930306],[118,244,69,-0.7723226569347563],[118,244,70,-0.7719586224729353],[118,244,71,-0.7715968671960487],[118,244,72,-0.7712373970039187],[118,244,73,-0.770880217707299],[118,244,74,-0.7705253350274377],[118,244,75,-0.7701727545956691],[118,244,76,-0.7698224819529941],[118,244,77,-0.7694745225496602],[118,244,78,-0.7691288817447478],[118,244,79,-0.7687855648057496],[118,245,64,-0.7743426928148505],[118,245,65,-0.7739672230353669],[118,245,66,-0.7735940004945201],[118,245,67,-0.7732230315322047],[118,245,68,-0.7728543224013916],[118,245,69,-0.7724878792677152],[118,245,70,-0.7721237082090464],[118,245,71,-0.7717618152150709],[118,245,72,-0.7714022061868651],[118,245,73,-0.7710448869364857],[118,245,74,-0.7706898631865339],[118,245,75,-0.7703371405697468],[118,245,76,-0.7699867246285774],[118,245,77,-0.7696386208147767],[118,245,78,-0.769292834488978],[118,245,79,-0.7689493709202775],[118,246,64,-0.774508708031631],[118,246,65,-0.7741331086719194],[118,246,66,-0.7737597554204712],[118,246,67,-0.7733886546181673],[118,246,68,-0.7730198125190137],[118,246,69,-0.7726532352897285],[118,246,70,-0.7722889290093158],[118,246,71,-0.7719268996686433],[118,246,72,-0.7715671531700188],[118,246,73,-0.7712096953267803],[118,246,74,-0.7708545318628598],[118,246,75,-0.7705016684123754],[118,246,76,-0.7701511105192115],[118,246,77,-0.7698028636366],[118,246,78,-0.7694569331267064],[118,246,79,-0.7691133242602096],[118,247,64,-0.7746748496221295],[118,247,65,-0.774299122082249],[118,247,66,-0.7739256395156591],[118,247,67,-0.7735544082642035],[118,247,68,-0.7731854345829001],[118,247,69,-0.7728187246395279],[118,247,70,-0.7724542845142011],[118,247,71,-0.7720921201989468],[118,247,72,-0.7717322375972822],[118,247,73,-0.7713746425238039],[118,247,74,-0.7710193407037533],[118,247,75,-0.7706663377726073],[118,247,76,-0.7703156392756597],[118,247,77,-0.7699672506676026],[118,247,78,-0.7696211773121124],[118,247,79,-0.7692774244814298],[118,248,64,-0.7748411172153952],[118,248,65,-0.7744652628971334],[118,248,66,-0.7740916524125875],[118,248,67,-0.773720292104541],[118,248,68,-0.7733511882290003],[118,248,69,-0.7729843469547825],[118,248,70,-0.7726197743630887],[118,248,71,-0.7722574764470833],[118,248,72,-0.7718974591114699],[118,248,73,-0.7715397281720822],[118,248,74,-0.7711842893554479],[118,248,75,-0.7708311482983816],[118,248,76,-0.7704803105475648],[118,248,77,-0.7701317815591285],[118,248,78,-0.7697855666982385],[118,248,79,-0.7694416712386764],[118,249,64,-0.7750075104395187],[118,249,65,-0.7746315307463828],[118,249,66,-0.7742577937427846],[118,249,67,-0.7738863057724236],[118,249,68,-0.7735170730922718],[118,249,69,-0.7731501018721607],[118,249,70,-0.7727853981943564],[118,249,71,-0.7724229680531373],[118,249,72,-0.7720628173543711],[118,249,73,-0.771704951915106],[118,249,74,-0.7713493774631348],[118,249,75,-0.7709960996365874],[118,249,76,-0.7706451239835115],[118,249,77,-0.7702964559614552],[118,249,78,-0.7699501009370529],[118,249,79,-0.7696060641856055],[118,250,64,-0.7751740289216111],[118,250,65,-0.7747979252588195],[118,250,66,-0.7744240631367814],[118,250,67,-0.7740524489000893],[118,250,68,-0.7736830888066571],[118,250,69,-0.7733159890273085],[118,250,70,-0.7729511556453506],[118,250,71,-0.7725885946561533],[118,250,72,-0.7722283119667266],[118,250,73,-0.7718703133953106],[118,250,74,-0.771514604670941],[118,250,75,-0.771161191433041],[118,250,76,-0.7708100792310031],[118,250,77,-0.7704612735237709],[118,250,78,-0.7701147796794261],[118,250,79,-0.7697706029747683],[118,251,64,-0.7753406722877814],[118,251,65,-0.7749644460622547],[118,251,66,-0.7745904602240897],[118,251,67,-0.7742187211187482],[118,251,68,-0.773849235005063],[118,251,69,-0.7734820080548261],[118,251,70,-0.7731170463523637],[118,251,71,-0.7727543558941143],[118,251,72,-0.7723939425882073],[118,251,73,-0.7720358122540525],[118,251,74,-0.7716799706219061],[118,251,75,-0.7713264233324634],[118,251,76,-0.7709751759364394],[118,251,77,-0.7706262338941523],[118,251,78,-0.7702796025751092],[118,251,79,-0.7699352872575875],[118,252,64,-0.775507440163198],[118,252,65,-0.7751310927835504],[118,252,66,-0.7747569846332634],[118,252,67,-0.7743851220586441],[118,252,68,-0.7740155113194207],[118,252,69,-0.7736481585883311],[118,252,70,-0.7732830699506968],[118,252,71,-0.7729202514040029],[118,252,72,-0.7725597088574749],[118,252,73,-0.7722014481316708],[118,252,74,-0.771845474958045],[118,252,75,-0.7714917949785424],[118,252,76,-0.7711404137451794],[118,252,77,-0.7707913367196266],[118,252,78,-0.7704445692727958],[118,252,79,-0.770100116684421],[118,253,64,-0.7756743321720573],[118,253,65,-0.7752978650485884],[118,253,66,-0.7749236359918671],[118,253,67,-0.7745516513490227],[118,253,68,-0.7741819173806554],[118,253,69,-0.7738144402604257],[118,253,70,-0.7734492260746276],[118,253,71,-0.7730862808217698],[118,253,72,-0.7727256104121518],[118,253,73,-0.7723672206674568],[118,253,74,-0.7720111173203155],[118,253,75,-0.7716573060139007],[118,253,76,-0.771305792301508],[118,253,77,-0.7709565816461394],[118,253,78,-0.7706096794200897],[118,253,79,-0.7702650909045283],[118,254,64,-0.7758413479376084],[118,254,65,-0.775464762482294],[118,254,66,-0.7750904139265007],[118,254,67,-0.7747183086181564],[118,254,68,-0.7743484528187103],[118,254,69,-0.7739808527027217],[118,254,70,-0.7736155143574348],[118,254,71,-0.7732524437823582],[118,254,72,-0.7728916468888439],[118,254,73,-0.7725331294996771],[118,254,74,-0.7721768973486431],[118,254,75,-0.7718229560801202],[118,254,76,-0.771471311248662],[118,254,77,-0.7711219683185796],[118,254,78,-0.7707749326635297],[118,254,79,-0.7704302095660961],[118,255,64,-0.7760084870821216],[118,255,65,-0.7756317847086049],[118,255,66,-0.7752573180627678],[118,255,67,-0.7748850934933128],[118,255,68,-0.7745151172625149],[118,255,69,-0.7741473955458089],[118,255,70,-0.773781934431366],[118,255,71,-0.7734187399196728],[118,255,72,-0.7730578179231098],[118,255,73,-0.7726991742655427],[118,255,74,-0.7723428146818889],[118,255,75,-0.7719887448177105],[118,255,76,-0.7716369702287965],[118,255,77,-0.7712874963807466],[118,255,78,-0.7709403286485572],[118,255,79,-0.7705954723162056],[118,256,64,-0.7761757492269494],[118,256,65,-0.7757989313505329],[118,256,66,-0.775424348025337],[118,256,67,-0.7750520056008161],[118,256,68,-0.7746819103400467],[118,256,69,-0.7743140684193166],[118,256,70,-0.7739484859277007],[118,256,71,-0.7735851688666402],[118,256,72,-0.7732241231495223],[118,256,73,-0.7728653546012706],[118,256,74,-0.772508868957912],[118,256,75,-0.7721546718661704],[118,256,76,-0.7718027688830488],[118,256,77,-0.771453165475413],[118,256,78,-0.771105867019579],[118,256,79,-0.770760878800895],[118,257,64,-0.7763431339925055],[118,257,65,-0.7759662020301415],[118,257,66,-0.7755915034379207],[118,257,67,-0.775219044566025],[118,257,68,-0.7748488316783095],[118,257,69,-0.7744808709518917],[118,257,70,-0.7741151684767266],[118,257,71,-0.7737517302551882],[118,257,72,-0.7733905622016466],[118,257,73,-0.7730316701420612],[118,257,74,-0.7726750598135464],[118,257,75,-0.7723207368639657],[118,257,76,-0.7719687068515142],[118,257,77,-0.7716189752443023],[118,257,78,-0.7712715474199436],[118,257,79,-0.7709264286651372],[118,258,64,-0.7765106409982416],[118,258,65,-0.7761335963685239],[118,258,66,-0.7757587839232515],[118,258,67,-0.7753862100133103],[118,258,68,-0.7750158809033105],[118,258,69,-0.7746478027711755],[118,258,70,-0.7742819817077182],[118,258,71,-0.7739184237162215],[118,258,72,-0.7735571347120168],[118,258,73,-0.773198120522076],[118,258,74,-0.772841386884579],[118,258,75,-0.7724869394485067],[118,258,76,-0.7721347837732243],[118,258,77,-0.7717849253280655],[118,258,78,-0.7714373694919198],[118,258,79,-0.7710921215528153],[118,259,64,-0.7766782698627095],[118,259,65,-0.7763011139858644],[118,259,66,-0.7759261891031449],[118,259,67,-0.7755535015661169],[118,259,68,-0.7751830576401221],[118,259,69,-0.7748148635038667],[118,259,70,-0.7744489252489983],[118,259,71,-0.7740852488796858],[118,259,72,-0.7737238403121988],[118,259,73,-0.7733647053744998],[118,259,74,-0.7730078498058114],[118,259,75,-0.7726532792562099],[118,259,76,-0.7723009992862091],[118,259,77,-0.7719510153663436],[118,259,78,-0.7716033328767578],[118,259,79,-0.7712579571067876],[118,260,64,-0.7768460202035291],[118,260,65,-0.7764687545014074],[118,260,66,-0.7760937185984674],[118,260,67,-0.775720918846932],[118,260,68,-0.7753503615128505],[118,260,69,-0.774982052775689],[118,260,70,-0.774615998727906],[118,260,71,-0.7742522053745338],[118,260,72,-0.7738906786327577],[118,260,73,-0.7735314243315079],[118,260,74,-0.7731744482110275],[118,260,75,-0.7728197559224663],[118,260,76,-0.7724673530274642],[118,260,77,-0.7721172449977356],[118,260,78,-0.7717694372146575],[118,260,79,-0.771423934968853],[118,261,64,-0.7770138916374136],[118,261,65,-0.776636517533481],[118,261,66,-0.7762613720291609],[118,261,67,-0.7758884614773093],[118,261,68,-0.7755177921446601],[118,261,69,-0.7751493702114152],[118,261,70,-0.7747832017708214],[118,261,71,-0.7744192928287514],[118,261,72,-0.774057649303283],[118,261,73,-0.773698277024292],[118,261,74,-0.7733411817330192],[118,261,75,-0.772986369081666],[118,261,76,-0.7726338446329764],[118,261,77,-0.7722836138598228],[118,261,78,-0.7719356821447934],[118,261,79,-0.7715900547797768],[118,262,64,-0.7771818837801376],[118,262,65,-0.7768044026994657],[118,262,66,-0.7764291490142108],[118,262,67,-0.7760561290778377],[118,262,68,-0.7756853491577411],[118,262,69,-0.775316815434836],[118,262,70,-0.7749505340031336],[118,262,71,-0.7745865108693244],[118,262,72,-0.7742247519523558],[118,262,73,-0.7738652630830265],[118,262,74,-0.773508050003553],[118,262,75,-0.7731531183671655],[118,262,76,-0.7728004737376906],[118,262,77,-0.7724501215891364],[118,262,78,-0.7721020673052815],[118,262,79,-0.7717563161792581],[118,263,64,-0.7773499962465982],[118,263,65,-0.7769724096158566],[118,263,66,-0.7765970491717081],[118,263,67,-0.7762239212682028],[118,263,68,-0.7758530321733726],[118,263,69,-0.7754843880688216],[118,263,70,-0.7751179950493031],[118,263,71,-0.7747538591223015],[118,263,72,-0.7743919862076117],[118,263,73,-0.774032382136932],[118,263,74,-0.7736750526534327],[118,263,75,-0.7733200034113504],[118,263,76,-0.7729672399755723],[118,263,77,-0.7726167678212206],[118,263,78,-0.7722685923332421],[118,263,79,-0.7719227188059917],[118,264,64,-0.7775182286507931],[118,264,65,-0.7771405378982402],[118,264,66,-0.776765072118827],[118,264,67,-0.7763918376671646],[118,264,68,-0.7760208408118988],[118,264,69,-0.7756520877352994],[118,264,70,-0.7752855845328384],[118,264,71,-0.7749213372127713],[118,264,72,-0.7745593516957172],[118,264,73,-0.774199633814252],[118,264,74,-0.773842189312477],[118,264,75,-0.7734870238456127],[118,264,76,-0.773134142979585],[118,264,77,-0.7727835521906087],[118,264,78,-0.7724352568647771],[118,264,79,-0.7720892622976461],[118,265,64,-0.7776865806057989],[118,265,65,-0.7773087871612729],[118,265,66,-0.776933217471802],[118,265,67,-0.7765598778925351],[118,265,68,-0.7761887746927073],[118,265,69,-0.7758199140552313],[118,265,70,-0.7754533020762744],[118,265,71,-0.7750889447648398],[118,265,72,-0.7747268480423484],[118,265,73,-0.7743670177422305],[118,265,74,-0.7740094596094959],[118,265,75,-0.7736541793003276],[118,265,76,-0.7733011823816676],[118,265,77,-0.7729504743308012],[118,265,78,-0.7726020605349466],[118,265,79,-0.7722559462908398],[118,266,64,-0.7778550517238318],[118,266,65,-0.7774771570187423],[118,266,66,-0.7771014848459907],[118,266,67,-0.7767280415612399],[118,266,68,-0.7763568334342911],[118,266,69,-0.7759878666486759],[118,266,70,-0.7756211473012334],[118,266,71,-0.7752566814016922],[118,266,72,-0.7748944748722514],[118,266,73,-0.7745345335471736],[118,266,74,-0.7741768631723541],[118,266,75,-0.7738214694049165],[118,266,76,-0.7734683578127962],[118,266,77,-0.7731175338743276],[118,266,78,-0.7727690029778322],[118,266,79,-0.7724227704212041],[118,267,64,-0.7780236416162166],[118,267,65,-0.7776456470835353],[118,267,66,-0.7772698738558412],[118,267,67,-0.7768963282892868],[118,267,68,-0.7765250166542162],[118,267,69,-0.7761559451347562],[118,267,70,-0.7757891198283944],[118,267,71,-0.7754245467455615],[118,267,72,-0.7750622318092121],[118,267,73,-0.7747021808544181],[118,267,74,-0.7743443996279383],[118,267,75,-0.7739888937878137],[118,267,76,-0.773635668902952],[118,267,77,-0.7732847304527143],[118,267,78,-0.7729360838265036],[118,267,79,-0.7725897343233509],[118,268,64,-0.7781923498934109],[118,268,65,-0.7778142569676629],[118,268,66,-0.7774383841149166],[118,268,67,-0.7770647376917902],[118,268,68,-0.7766933239691465],[118,268,69,-0.7763241491316842],[118,268,70,-0.7759572192775164],[118,268,71,-0.7755925404177522],[118,268,72,-0.775230118476079],[118,268,73,-0.7748699592883554],[118,268,74,-0.7745120686021811],[118,268,75,-0.774156452076492],[118,268,76,-0.773803115281146],[118,268,77,-0.773452063696509],[118,268,78,-0.7731033027130438],[118,268,79,-0.7727568376308966],[118,269,64,-0.778361176164973],[118,269,65,-0.7779829862822283],[118,269,66,-0.7776070152358634],[118,269,67,-0.7772332693829386],[118,269,68,-0.7768617549948114],[118,269,69,-0.7764924782567293],[118,269,70,-0.7761254452674067],[118,269,71,-0.7757606620386088],[118,269,72,-0.7753981344947324],[118,269,73,-0.7750378684724001],[118,269,74,-0.7746798697200294],[118,269,75,-0.7743241438974297],[118,269,76,-0.7739706965753864],[118,269,77,-0.7736195332352481],[118,269,78,-0.7732706592685162],[118,269,79,-0.7729240799764303],[118,270,64,-0.7785301200396243],[118,270,65,-0.7781518346374884],[118,270,66,-0.7777757668304732],[118,270,67,-0.7774019229760569],[118,270,68,-0.7770303093460683],[118,270,69,-0.7766609321262794],[118,270,70,-0.7762937974159831],[118,270,71,-0.7759289112275775],[118,270,72,-0.7755662794861453],[118,270,73,-0.7752059080290506],[118,270,74,-0.7748478026055067],[118,270,75,-0.774491968876173],[118,270,76,-0.7741384124127411],[118,270,77,-0.7737871386975199],[118,270,78,-0.7734381531230277],[118,270,79,-0.7730914609915757],[118,271,64,-0.7786991811252263],[118,271,65,-0.7783208016428318],[118,271,66,-0.7779446385096604],[118,271,67,-0.7775706980835843],[118,271,68,-0.7771989866368796],[118,271,69,-0.7768295103558193],[118,271,70,-0.7764622753402517],[118,271,71,-0.7760972876031835],[118,271,72,-0.7757345530703619],[118,271,73,-0.7753740775798685],[118,271,74,-0.77501586688169],[118,271,75,-0.7746599266373139],[118,271,76,-0.7743062624193147],[118,271,77,-0.7739548797109409],[118,271,78,-0.7736057839057047],[118,271,79,-0.7732589803069685],[118,272,64,-0.7788683590287586],[118,272,65,-0.778489886906756],[118,272,66,-0.7781136298834396],[118,272,67,-0.777739594317051],[118,272,68,-0.7773677864802901],[118,272,69,-0.7769982125599074],[118,272,70,-0.7766308786562828],[118,272,71,-0.7762657907830092],[118,272,72,-0.7759029548664739],[118,272,73,-0.7755423767454541],[118,272,74,-0.7751840621706869],[118,272,75,-0.7748280168044657],[118,272,76,-0.7744742462202259],[118,272,77,-0.7741227559021328],[118,272,78,-0.7737735512446714],[118,272,79,-0.7734266375522331],[118,273,64,-0.7790376533563804],[118,273,65,-0.7786590900369296],[118,273,66,-0.778282740560987],[118,273,67,-0.7779086112871404],[118,273,68,-0.7775367084884893],[118,273,69,-0.777167038352238],[118,273,70,-0.7767996069792746],[118,273,71,-0.7764344203837545],[118,273,72,-0.7760714844926829],[118,273,73,-0.7757108051455093],[118,273,74,-0.7753523880936986],[118,273,75,-0.7749962390003269],[118,273,76,-0.7746423634396692],[118,273,77,-0.7742907668967852],[118,273,78,-0.7739414547671112],[118,273,79,-0.7735944323560453],[118,274,64,-0.7792070637133988],[118,274,65,-0.7788284106401596],[118,274,66,-0.7784519701506094],[118,274,67,-0.7780777486036574],[118,274,68,-0.7777057522727792],[118,274,69,-0.7773359873456092],[118,274,70,-0.77696845992352],[118,274,71,-0.7766031760212068],[118,274,72,-0.7762401415662687],[118,274,73,-0.7758793623988053],[118,274,74,-0.775520844270986],[118,274,75,-0.7751645928466483],[118,274,76,-0.7748106137008833],[118,274,77,-0.7744589123196237],[118,274,78,-0.7741094940992346],[118,274,79,-0.7737623643460998],[118,275,64,-0.7793765897042931],[118,275,65,-0.7789978483224168],[118,275,66,-0.7786213182597675],[118,275,67,-0.7782470058755524],[118,275,68,-0.7778749174435986],[118,275,69,-0.777505059151947],[118,275,70,-0.7771374371024317],[118,275,71,-0.7767720573102636],[118,275,72,-0.7764089257036132],[118,275,73,-0.7760480481232068],[118,275,74,-0.7756894303218963],[118,275,75,-0.7753330779642573],[118,275,76,-0.7749789966261751],[118,275,77,-0.7746271917944332],[118,275,78,-0.7742776688663036],[118,275,79,-0.7739304331491345],[118,276,64,-0.7795462309326829],[118,276,65,-0.7791674026888032],[118,276,66,-0.7787907844950452],[118,276,67,-0.7784163827108893],[118,276,68,-0.7780442036104911],[118,276,69,-0.7776742533822739],[118,276,70,-0.7773065381285093],[118,276,71,-0.776941063864901],[118,276,72,-0.776577836520168],[118,276,73,-0.7762168619356401],[118,276,74,-0.7758581458648287],[118,276,75,-0.7755016939730253],[118,276,76,-0.7751475118368871],[118,276,77,-0.774795604944026],[118,276,78,-0.7744459786925995],[118,276,79,-0.7740986383908977],[118,277,64,-0.7797159870013901],[118,277,65,-0.7793370733436142],[118,277,66,-0.7789603684622103],[118,277,67,-0.778585878716908],[118,277,68,-0.7782136103821672],[118,277,69,-0.7778435696467699],[118,277,70,-0.7774757626134019],[118,277,71,-0.7771101952982364],[118,277,72,-0.7767468736305172],[118,277,73,-0.7763858034521549],[118,277,74,-0.7760269905172981],[118,277,75,-0.7756704404919308],[118,277,76,-0.7753161589534603],[118,277,77,-0.7749641513903047],[118,277,78,-0.7746144232014848],[118,277,79,-0.7742669796962112],[118,278,64,-0.7798858575124159],[118,278,65,-0.7795068598903157],[118,278,66,-0.7791300697661923],[118,278,67,-0.7787554935000011],[118,278,68,-0.7783831373664813],[118,278,69,-0.7780130075547509],[118,278,70,-0.7776451101678856],[118,278,71,-0.7772794512225047],[118,278,72,-0.7769160366483541],[118,278,73,-0.7765548722879019],[118,278,74,-0.7761959638959108],[118,278,75,-0.7758393171390356],[118,278,76,-0.7754849375954107],[118,278,77,-0.7751328307542382],[118,278,78,-0.7747830020153804],[118,278,79,-0.7744354566889469],[118,279,64,-0.7800558420669188],[118,279,65,-0.7796767619315215],[118,279,66,-0.7792998880110602],[118,279,67,-0.7789252266656911],[118,279,68,-0.7785527841704097],[118,279,69,-0.7781825667146449],[118,279,70,-0.7778145804018399],[118,279,71,-0.7774488312490362],[118,279,72,-0.7770853251864582],[118,279,73,-0.7767240680571094],[118,279,74,-0.7763650656163432],[118,279,75,-0.7760083235314624],[118,279,76,-0.7756538473813064],[118,279,77,-0.7753016426558393],[118,279,78,-0.7749517147557429],[118,279,79,-0.7746040689920033],[118,280,64,-0.7802259402652761],[118,280,65,-0.7798467790690559],[118,280,66,-0.7794698228000839],[118,280,67,-0.7790950778186934],[118,280,68,-0.7787225504001116],[118,280,69,-0.7783522467340552],[118,280,70,-0.7779841729243105],[118,280,71,-0.7776183349883183],[118,280,72,-0.7772547388567583],[118,280,73,-0.7768933903731456],[118,280,74,-0.7765342952934026],[118,280,75,-0.7761774592854569],[118,280,76,-0.7758228879288305],[118,280,77,-0.7754705867142272],[118,280,78,-0.7751205610431261],[118,280,79,-0.7747728162273687],[118,281,64,-0.7803961517070521],[118,281,65,-0.7800169109039207],[118,281,66,-0.7796398737357024],[118,281,67,-0.779265046562883],[118,281,68,-0.7788924356608978],[118,281,69,-0.7785220472197272],[118,281,70,-0.7781538873434768],[118,281,71,-0.7777879620499635],[118,281,72,-0.7774242772702991],[118,281,73,-0.7770628388484871],[118,281,74,-0.7767036525409957],[118,281,75,-0.7763467240163553],[118,281,76,-0.7759920588547476],[118,281,77,-0.7756396625475943],[118,281,78,-0.7752895404971495],[118,281,79,-0.7749416980160883],[118,282,64,-0.7805664759910221],[118,282,65,-0.7801871570363201],[118,282,66,-0.779810040419548],[118,282,67,-0.7794351325013197],[118,282,68,-0.7790624395572547],[118,282,69,-0.778691967777573],[118,282,70,-0.7783237232666764],[118,282,71,-0.7779577120427338],[118,282,72,-0.7775939400372658],[118,282,73,-0.7772324130947421],[118,282,74,-0.7768731369721528],[118,282,75,-0.7765161173386088],[118,282,76,-0.7761613597749295],[118,282,77,-0.7758088697732314],[118,282,78,-0.7754586527365221],[118,282,79,-0.7751107139782883],[118,283,64,-0.7807369127151411],[118,283,65,-0.7803575170656286],[118,283,66,-0.7799803224524142],[118,283,67,-0.7796053352362156],[118,283,68,-0.779232561692812],[118,283,69,-0.7788620080126396],[118,283,70,-0.7784936803003724],[118,283,71,-0.7781275845745079],[118,283,72,-0.7777637267669526],[118,283,73,-0.7774021127226182],[118,283,74,-0.7770427481989951],[118,283,75,-0.7766856388657514],[118,283,76,-0.7763307903043213],[118,283,77,-0.7759782080074945],[118,283,78,-0.7756278973790098],[118,283,79,-0.7752798637331436],[118,284,64,-0.7809074614766045],[118,284,65,-0.7805279905904529],[118,284,66,-0.7801507194343178],[118,284,67,-0.7797756543689968],[118,284,68,-0.7794028016704051],[118,284,69,-0.7790321675291708],[118,284,70,-0.7786637580502161],[118,284,71,-0.7782975792523443],[118,284,72,-0.7779336370678236],[118,284,73,-0.7775719373419855],[118,284,74,-0.7772124858327972],[118,284,75,-0.7768552882104612],[118,284,76,-0.7765003500570046],[118,284,77,-0.7761476768658677],[118,284,78,-0.7757972740414981],[118,284,79,-0.7754491468989402],[118,285,64,-0.7810781218718268],[118,285,65,-0.7806985772086087],[118,285,66,-0.7803212309644758],[118,285,67,-0.7799460895002813],[118,285,68,-0.779573159092052],[118,285,69,-0.7792024459305839],[118,285,70,-0.778833956121024],[118,285,71,-0.7784676956824573],[118,285,72,-0.7781036705474911],[118,285,73,-0.7777418865618528],[118,285,74,-0.777382349483964],[118,285,75,-0.7770250649845389],[118,285,76,-0.7766700386461746],[118,285,77,-0.7763172759629395],[118,285,78,-0.7759667823399687],[118,285,79,-0.7756185630930521],[118,286,64,-0.7812488934964179],[118,286,65,-0.7808692765170988],[118,286,66,-0.7804918566412836],[118,286,67,-0.780116640229856],[118,286,68,-0.7797436335589306],[118,286,69,-0.7793728428194473],[118,286,70,-0.7790042741167545],[118,286,71,-0.7786379334701949],[118,286,72,-0.7782738268126916],[118,286,73,-0.7779119599903452],[118,286,74,-0.777552338762008],[118,286,75,-0.7771949687988835],[118,286,76,-0.7768398556841161],[118,286,77,-0.7764870049123805],[118,286,78,-0.7761364218894764],[118,286,79,-0.7757881119319177],[118,287,64,-0.7814197759452454],[118,287,65,-0.7810400881121748],[118,287,66,-0.7806625960623756],[118,287,67,-0.7802873061567384],[118,287,68,-0.7799142246714407],[118,287,69,-0.7795433577975429],[118,287,70,-0.7791747116405705],[118,287,71,-0.7788082922201007],[118,287,72,-0.7784441054693488],[118,287,73,-0.7780821572347655],[118,287,74,-0.7777224532756108],[118,287,75,-0.777364999263555],[118,287,76,-0.7770098007822668],[118,287,77,-0.776656863327005],[118,287,78,-0.7763061923042118],[118,287,79,-0.7759577930311031],[118,288,64,-0.7815907688124117],[118,288,65,-0.7812110115893137],[118,288,66,-0.7808334488246035],[118,288,67,-0.7804580868791537],[118,288,68,-0.7800849320291813],[118,288,69,-0.7797139904658424],[118,288,70,-0.7793452682948162],[118,288,71,-0.7789787715358909],[118,288,72,-0.7786145061225505],[118,288,73,-0.7782524779015721],[118,288,74,-0.7778926926326013],[118,288,75,-0.7775351559877515],[118,288,76,-0.7771798735511939],[118,288,77,-0.7768268508187484],[118,288,78,-0.7764760931974779],[118,288,79,-0.776127606005278],[118,289,64,-0.7817618716912318],[118,289,65,-0.7813820465431963],[118,289,66,-0.781004414524013],[118,289,67,-0.7806289819945128],[118,289,68,-0.7802557552309274],[118,289,69,-0.7798847404244851],[118,289,70,-0.7795159436809945],[118,289,71,-0.7791493710204314],[118,289,72,-0.7787850283765249],[118,289,73,-0.7784229215963556],[118,289,74,-0.7780630564399313],[118,289,75,-0.777705438579786],[118,289,76,-0.7773500736005705],[118,289,77,-0.7769969669986437],[118,289,78,-0.7766461241816667],[118,289,79,-0.776297550468193],[118,290,64,-0.7819330841742945],[118,290,65,-0.7815531925677679],[118,290,66,-0.7811754927559061],[118,290,67,-0.7807999910994736],[118,290,68,-0.7804266938746925],[118,290,69,-0.7800556072728395],[118,290,70,-0.7796867373998289],[118,290,71,-0.7793200902757998],[118,290,72,-0.7789556718347035],[118,290,73,-0.7785934879239012],[118,290,74,-0.7782335443037388],[118,290,75,-0.7778758466471487],[118,290,76,-0.7775204005392389],[118,290,77,-0.7771672114768842],[118,290,78,-0.7768162848683221],[118,290,79,-0.7764676260327422],[118,291,64,-0.7821044058534306],[118,291,65,-0.781724449256207],[118,291,66,-0.7813466831148086],[118,291,67,-0.7809711137899088],[118,291,68,-0.7805977475576963],[118,291,69,-0.7802265906094716],[118,291,70,-0.7798576490512308],[118,291,71,-0.7794909289032534],[118,291,72,-0.7791264360996889],[118,291,73,-0.7787641764881553],[118,291,74,-0.7784041558293149],[118,291,75,-0.7780463797964747],[118,291,76,-0.7776908539751768],[118,291,77,-0.7773375838627906],[118,291,78,-0.7769865748681071],[118,291,79,-0.7766378323109299],[118,292,64,-0.7822758363197372],[118,292,65,-0.7818958162009492],[118,292,66,-0.7815179851944942],[118,292,67,-0.7811423496609304],[118,292,68,-0.7807689158763882],[118,292,69,-0.7803976900321683],[118,292,70,-0.7800286782343246],[118,292,71,-0.7796618865032533],[118,292,72,-0.7792973207732783],[118,292,73,-0.7789349868922517],[118,292,74,-0.7785748906211284],[118,292,75,-0.7782170376335675],[118,292,76,-0.777861433515523],[118,292,77,-0.7775080837648356],[118,292,78,-0.7771569937908278],[118,292,79,-0.7768081689138953],[118,293,64,-0.7824473751635455],[118,293,65,-0.7820672929936552],[118,293,66,-0.7816893985879533],[118,293,67,-0.7813136983068574],[118,293,68,-0.7809401984264162],[118,293,69,-0.7805689051379059],[118,293,70,-0.7801998245474149],[118,293,71,-0.7798329626754316],[118,293,72,-0.7794683254564315],[118,293,73,-0.7791059187384771],[118,293,74,-0.778745748282793],[118,293,75,-0.7783878197633675],[118,293,76,-0.7780321387665434],[118,293,77,-0.7776787107906107],[118,293,78,-0.777327541245401],[118,293,79,-0.7769786354518798],[118,294,64,-0.7826190219744824],[118,294,65,-0.7822388792252726],[118,294,66,-0.7818609228874531],[118,294,67,-0.7814851593212775],[118,294,68,-0.7811115948026877],[118,294,69,-0.7807402355229116],[118,294,70,-0.7803710875880481],[118,294,71,-0.780004157018654],[118,294,72,-0.779639449749333],[118,294,73,-0.7792769716283345],[118,294,74,-0.7789167284171298],[118,294,75,-0.7785587257900133],[118,294,76,-0.7782029693336945],[118,294,77,-0.7778494645468893],[118,294,78,-0.7774982168399166],[118,294,79,-0.7771492315342895],[118,295,64,-0.7827907763414483],[118,295,65,-0.7824105744860128],[118,295,66,-0.7820325576845167],[118,295,67,-0.7816567322970245],[118,295,68,-0.7812831045993475],[118,295,69,-0.7809116807826411],[118,295,70,-0.78054246695299],[118,295,71,-0.7801754691309967],[118,295,72,-0.7798106932513689],[118,295,73,-0.7794481451625199],[118,295,74,-0.7790878306261442],[118,295,75,-0.7787297553168198],[118,295,76,-0.7783739248215993],[118,295,77,-0.7780203446396028],[118,295,78,-0.777669020181614],[118,295,79,-0.7773199567696714],[118,296,64,-0.7829626378525939],[118,296,65,-0.7825823783653287],[118,296,66,-0.782204302569899],[118,296,67,-0.7818284168261556],[118,296,68,-0.7814547274097545],[118,296,69,-0.7810832405117546],[118,296,70,-0.780713962238203],[118,296,71,-0.7803468986097233],[118,296,72,-0.779982055561104],[118,296,73,-0.7796194389408988],[118,296,74,-0.7792590545110023],[118,296,75,-0.7789009079462531],[118,296,76,-0.7785450048340244],[118,296,77,-0.778191350673818],[118,296,78,-0.7778399508768594],[118,296,79,-0.7774908107656907],[118,297,64,-0.7831346060953817],[118,297,65,-0.7827542904519762],[118,297,66,-0.7823761571336489],[118,297,67,-0.7820002125000127],[118,297,68,-0.7816264628265438],[118,297,69,-0.7812549143041803],[118,297,70,-0.7808855730389075],[118,297,71,-0.7805184450513467],[118,297,72,-0.7801535362763437],[118,297,73,-0.7797908525625689],[118,297,74,-0.7794303996720939],[118,297,75,-0.7790721832799948],[118,297,76,-0.778716208973943],[118,297,77,-0.7783624822537987],[118,297,78,-0.7780110085312076],[118,297,79,-0.777661793129193],[118,298,64,-0.7833066806565544],[118,298,65,-0.7829263103339821],[118,298,66,-0.7825481209650775],[118,298,67,-0.7821721189091907],[118,298,68,-0.781798310441594],[118,298,69,-0.7814267017530807],[118,298,70,-0.7810572989495501],[118,298,71,-0.7806901080515973],[118,298,72,-0.7803251349941017],[118,298,73,-0.7799623856258271],[118,298,74,-0.7796018657089994],[118,298,75,-0.7792435809189086],[118,298,76,-0.7788875368435012],[118,298,77,-0.778533738982974],[118,298,78,-0.7781821927493701],[118,298,79,-0.7778329034661717],[118,299,64,-0.7834788611221593],[118,299,65,-0.7830984375986683],[118,299,66,-0.7827201936527814],[118,299,67,-0.7823441356435614],[118,299,68,-0.7819702698460522],[118,299,69,-0.7815986024508775],[118,299,70,-0.7812291395638273],[118,299,71,-0.7808618872054465],[118,299,72,-0.7804968513106242],[118,299,73,-0.7801340377281946],[118,299,74,-0.7797734522205139],[118,299,75,-0.7794151004630637],[118,299,76,-0.7790589880440428],[118,299,77,-0.7787051204639616],[118,299,78,-0.7783535031352382],[118,299,79,-0.7780041413817919],[118,300,64,-0.783651147077515],[118,300,65,-0.7832706718326196],[118,300,66,-0.7828923747846115],[118,300,67,-0.7825162622922414],[118,300,68,-0.7821423406303005],[118,300,69,-0.7817706159892193],[118,300,70,-0.7814010944746536],[118,300,71,-0.7810337821070745],[118,300,72,-0.7806686848213572],[118,300,73,-0.780305808466383],[118,300,74,-0.7799451588046151],[118,300,75,-0.7795867415117035],[118,300,76,-0.7792305621760766],[118,300,77,-0.7788766262985354],[118,300,78,-0.7785249392918511],[118,300,79,-0.7781755064803575],[118,301,64,-0.7838235381072745],[118,301,65,-0.7834430126217451],[118,301,66,-0.7830646639477336],[118,301,67,-0.7826884984436535],[118,301,68,-0.7823145223840191],[118,301,69,-0.7819427419590429],[118,301,70,-0.7815731632742229],[118,301,71,-0.7812057923499323],[118,301,72,-0.7808406351210091],[118,301,73,-0.7804776974363574],[118,301,74,-0.7801169850585251],[118,301,75,-0.779758503663307],[118,301,76,-0.7794022588393381],[118,301,77,-0.7790482560876881],[118,301,78,-0.7786965008214581],[118,301,79,-0.7783469983653746],[118,302,64,-0.7839960337954011],[118,302,65,-0.7836154595512563],[118,302,66,-0.7832370607286067],[118,302,67,-0.7828608436855047],[118,302,68,-0.7824868146961625],[118,302,69,-0.7821149799505509],[118,302,70,-0.7817453455539858],[118,302,71,-0.7813779175267188],[118,302,72,-0.7810127018035268],[118,302,73,-0.7806497042333136],[118,302,74,-0.7802889305786875],[118,302,75,-0.779930386515566],[118,302,76,-0.7795740776327678],[118,302,77,-0.779220009431608],[118,302,78,-0.7788681873254953],[118,302,79,-0.7785186166395268],[118,303,64,-0.7841686337251466],[118,303,65,-0.783788012205643],[118,303,66,-0.7834095647129593],[118,303,67,-0.783033297604762],[118,303,68,-0.7826592171549371],[118,303,69,-0.7822873295531888],[118,303,70,-0.781917640904627],[118,303,71,-0.7815501572293578],[118,303,72,-0.7811848844620732],[118,303,73,-0.7808218284516534],[118,303,74,-0.7804609949607441],[118,303,75,-0.7801023896653616],[118,303,76,-0.7797460181544857],[118,303,77,-0.7793918859296545],[118,303,78,-0.779039998404562],[118,303,79,-0.7786903609046527],[118,304,64,-0.7843413374791125],[118,304,65,-0.783960670168736],[118,304,66,-0.7835821754858519],[118,304,67,-0.7832058597877157],[118,304,68,-0.7828317293478626],[118,304,69,-0.7824597903557062],[118,304,70,-0.7820900489161264],[118,304,71,-0.7817225110490597],[118,304,72,-0.7813571826890895],[118,304,73,-0.7809940696850485],[118,304,74,-0.7806331777995967],[118,304,75,-0.7802745127088266],[118,304,76,-0.7799180800018557],[118,304,77,-0.7795638851804221],[118,304,78,-0.779211933658483],[118,304,79,-0.7788622307618085],[118,305,64,-0.7845141446392181],[118,305,65,-0.7841334330236747],[118,305,66,-0.7837548926316438],[118,305,67,-0.7833785298199456],[118,305,68,-0.7830043508617399],[118,305,69,-0.7826323619461254],[118,305,70,-0.7822625691777274],[118,305,71,-0.7818949785762891],[118,305,72,-0.7815295960762616],[118,305,73,-0.7811664275264067],[118,305,74,-0.7808054786893754],[118,305,75,-0.7804467552413128],[118,305,76,-0.7800902627714514],[118,305,77,-0.7797360067817068],[118,305,78,-0.7793839926862766],[118,305,79,-0.7790342258112339],[118,306,64,-0.7846870547867238],[118,306,65,-0.7843063003529306],[118,306,66,-0.7839277157340181],[118,306,67,-0.7835513072863464],[118,306,68,-0.7831770812826753],[118,306,69,-0.7828050439117644],[118,306,70,-0.7824352012779604],[118,306,71,-0.7820675594007891],[118,306,72,-0.7817021242145454],[118,306,73,-0.7813389015678969],[118,306,74,-0.7809778972234619],[118,306,75,-0.780619116857415],[118,306,76,-0.780262566059081],[118,306,77,-0.7799082503305304],[118,306,78,-0.7795561750861778],[118,306,79,-0.7792063456523779],[118,307,64,-0.7848600675022003],[118,307,65,-0.7844792717382756],[118,307,66,-0.7841006443759486],[118,307,67,-0.7837241917710943],[118,307,68,-0.783349920196048],[118,307,69,-0.7829778358392054],[118,307,70,-0.7826079448046108],[118,307,71,-0.7822402531115485],[118,307,72,-0.7818747666941337],[118,307,73,-0.7815114914009156],[118,307,74,-0.781150432994457],[118,307,75,-0.7807915971509386],[118,307,76,-0.7804349894597544],[118,307,77,-0.7800806154231069],[118,307,78,-0.779728480455606],[118,307,79,-0.7793785898838648],[118,308,64,-0.7850331823655887],[118,308,65,-0.7846523467608439],[118,308,66,-0.7842736781397625],[118,308,67,-0.7838971828577096],[118,308,68,-0.7835228671865717],[118,308,69,-0.7831507373143565],[118,308,70,-0.7827807993447811],[118,308,71,-0.7824130592968643],[118,308,72,-0.7820475231045181],[118,308,73,-0.7816841966161499],[118,308,74,-0.7813230855942429],[118,308,75,-0.7809641957149616],[118,308,76,-0.7806075325677455],[118,308,77,-0.7802531016549066],[118,308,78,-0.7799009083912274],[118,308,79,-0.7795509581035569],[118,309,64,-0.7852063989561789],[118,309,65,-0.7848255250011085],[118,309,66,-0.7844468166071163],[118,309,67,-0.7840702801290335],[118,309,68,-0.7836959218382723],[118,309,69,-0.7833237479224281],[118,309,70,-0.7829537644848669],[118,309,71,-0.7825859775443182],[118,309,72,-0.7822203930344662],[118,309,73,-0.7818570168035535],[118,309,74,-0.7814958546139603],[118,309,75,-0.7811369121418111],[118,309,76,-0.7807801949765687],[118,309,77,-0.7804257086206312],[118,309,78,-0.7800734584889311],[118,309,79,-0.7797234499085314],[118,310,64,-0.7853797168525859],[118,310,65,-0.7849988060388584],[118,310,66,-0.7846200593589743],[118,310,67,-0.7842434831672046],[118,310,68,-0.783869083734464],[118,310,69,-0.7834968672479103],[118,310,70,-0.7831268398105349],[118,310,71,-0.7827590074407531],[118,310,72,-0.7823933760719984],[118,310,73,-0.7820299515523241],[118,310,74,-0.7816687396439845],[118,310,75,-0.7813097460230407],[118,310,76,-0.7809529762789557],[118,310,77,-0.7805984359141909],[118,310,78,-0.7802461303438064],[118,310,79,-0.7798960648950564],[118,311,64,-0.7855531356328118],[118,311,65,-0.785172189453261],[118,311,66,-0.7847934059756684],[118,311,67,-0.7844167915537215],[118,311,68,-0.7840423524578114],[118,311,69,-0.7836700948746352],[118,311,70,-0.783300024906784],[118,311,71,-0.7829321485723362],[118,311,72,-0.7825664718044496],[118,311,73,-0.7822030004509652],[118,311,74,-0.7818417402739878],[118,311,75,-0.7814826969494919],[118,311,76,-0.7811258760669175],[118,311,77,-0.7807712831287668],[118,311,78,-0.7804189235502044],[118,311,79,-0.7800688026586536],[118,312,64,-0.7857266548742133],[118,312,65,-0.7853456748228285],[118,312,66,-0.7849668560368678],[118,312,67,-0.7845902048694097],[118,312,68,-0.7842157275902979],[118,312,69,-0.7838434303857433],[118,312,70,-0.7834733193579134],[118,312,71,-0.783105400524525],[118,312,72,-0.7827396798184367],[118,312,73,-0.7823761630872537],[118,312,74,-0.7820148560929071],[118,312,75,-0.7816557645112621],[118,312,76,-0.7812988939317124],[118,312,77,-0.7809442498567781],[118,312,78,-0.780591837701706],[118,312,79,-0.7802416627940658],[118,313,64,-0.7859002741535264],[118,313,65,-0.7855192617254432],[118,313,66,-0.7851404091216017],[118,313,67,-0.7847637226944462],[118,313,68,-0.7843892087132484],[118,313,69,-0.7840168733637087],[118,313,70,-0.7836467227475463],[118,313,71,-0.7832787628820925],[118,313,72,-0.7829129996998834],[118,313,73,-0.7825494390482632],[118,313,74,-0.7821880866889674],[118,313,75,-0.7818289482977279],[118,313,76,-0.7814720294638691],[118,313,77,-0.7811173356899062],[118,313,78,-0.7807648723911453],[118,313,79,-0.7804146448952801],[118,314,64,-0.7860739930468329],[118,314,65,-0.7856929497383245],[118,314,66,-0.7853140648082272],[118,314,67,-0.7849373446083269],[118,314,68,-0.7845627954072978],[118,314,69,-0.7841904233903056],[118,314,70,-0.7838202346585974],[118,314,71,-0.7834522352290945],[118,314,72,-0.7830864310339858],[118,314,73,-0.7827228279203327],[118,314,74,-0.7823614316496499],[118,314,75,-0.7820022478975129],[118,314,76,-0.7816452822531544],[118,314,77,-0.7812905402190615],[118,314,78,-0.7809380272105766],[118,314,79,-0.7805877485554954],[118,315,64,-0.7862478111296232],[118,315,65,-0.7858667384380906],[118,315,66,-0.7854878226744917],[118,315,67,-0.785111070189928],[118,315,68,-0.7847364872524525],[118,315,69,-0.7843640800466715],[118,315,70,-0.783993854673335],[118,315,71,-0.7836258171489308],[118,315,72,-0.7832599734052768],[118,315,73,-0.7828963292891271],[118,315,74,-0.7825348905617528],[118,315,75,-0.78217566289855],[118,315,76,-0.7818186518886356],[118,315,77,-0.7814638630344459],[118,315,78,-0.7811113017513377],[118,315,79,-0.7807609733671852],[118,316,64,-0.7864217279767727],[118,316,65,-0.786040627400736],[118,316,66,-0.7856616822975084],[118,316,67,-0.7852848990174833],[118,316,68,-0.7849102838280672],[118,316,69,-0.7845378429132822],[118,316,70,-0.7841675823733576],[118,316,71,-0.7837995082243225],[118,316,72,-0.783433626397601],[118,316,73,-0.7830699427396152],[118,316,74,-0.7827084630113698],[118,316,75,-0.7823491928880574],[118,316,76,-0.7819921379586565],[118,316,77,-0.7816373037255298],[118,316,78,-0.7812846956040251],[118,316,79,-0.7809343189220734],[118,317,64,-0.7865957431625191],[118,317,65,-0.7862146162016077],[118,317,66,-0.7858356432537353],[118,317,67,-0.7854588306685617],[118,317,68,-0.785084184712822],[118,317,69,-0.7847117115699306],[118,317,70,-0.7843414173395706],[118,317,71,-0.7839733080372893],[118,317,72,-0.7836073895940917],[118,317,73,-0.7832436678560458],[118,317,74,-0.782882148583865],[118,317,75,-0.7825228374525156],[118,317,76,-0.7821657400508147],[118,317,77,-0.781810861881028],[118,317,78,-0.7814582083584718],[118,317,79,-0.7811077848111112],[118,318,64,-0.7867698562605239],[118,318,65,-0.7863887044154675],[118,318,66,-0.7860097051190348],[118,318,67,-0.7856328647201274],[118,318,68,-0.7852581894847845],[118,318,69,-0.7848856855957871],[118,318,70,-0.7845153591522488],[118,318,71,-0.7841472161692105],[118,318,72,-0.7837812625772345],[118,318,73,-0.78341750422201],[118,318,74,-0.7830559468639362],[118,318,75,-0.78269659617773],[118,318,76,-0.7823394577520234],[118,318,77,-0.7819845370889622],[118,318,78,-0.7816318396038087],[118,318,79,-0.7812813706245395],[118,319,64,-0.7869440668438495],[118,319,65,-0.7865628916164686],[118,319,66,-0.7861838674686524],[118,319,67,-0.7858070007485185],[118,319,68,-0.7854322977213857],[118,319,69,-0.7850597645693773],[118,319,70,-0.7846894073910127],[118,319,71,-0.7843212322008022],[118,319,72,-0.7839552449288415],[118,319,73,-0.7835914514204175],[118,319,74,-0.7832298574355914],[118,319,75,-0.7828704686488068],[118,319,76,-0.7825132906484878],[118,319,77,-0.7821583289366377],[118,319,78,-0.7818055889284418],[118,319,79,-0.781455075951865],[119,-64,64,-0.7304834993031354],[119,-64,65,-0.730203420033589],[119,-64,66,-0.7299257524262425],[119,-64,67,-0.7296505015973896],[119,-64,68,-0.7293776725693685],[119,-64,69,-0.7291072702701455],[119,-64,70,-0.7288392995328844],[119,-64,71,-0.728573765095518],[119,-64,72,-0.7283106716003203],[119,-64,73,-0.7280500235934924],[119,-64,74,-0.727791825524719],[119,-64,75,-0.7275360817467571],[119,-64,76,-0.7272827965150102],[119,-64,77,-0.7270319739871048],[119,-64,78,-0.7267836182224711],[119,-64,79,-0.7265377331819166],[119,-63,64,-0.7306004584219261],[119,-63,65,-0.7303199371262968],[119,-63,66,-0.7300418274378505],[119,-63,67,-0.729766134479012],[119,-63,68,-0.7294928632782514],[119,-63,69,-0.729222018769669],[119,-63,70,-0.7289536057925624],[119,-63,71,-0.7286876290910002],[119,-63,72,-0.7284240933133921],[119,-63,73,-0.7281630030120757],[119,-63,74,-0.727904362642873],[119,-63,75,-0.7276481765646777],[119,-63,76,-0.7273944490390314],[119,-63,77,-0.7271431842296978],[119,-63,78,-0.7268943862022447],[119,-63,79,-0.7266480589236168],[119,-62,64,-0.7307175790972739],[119,-62,65,-0.7304366163004878],[119,-62,66,-0.7301580650543393],[119,-62,67,-0.7298819304873759],[119,-62,68,-0.7296082176341929],[119,-62,69,-0.729336931435016],[119,-62,70,-0.7290680767352702],[119,-62,71,-0.7288016582851512],[119,-62,72,-0.7285376807391979],[119,-62,73,-0.7282761486558769],[119,-62,74,-0.7280170664971399],[119,-62,75,-0.7277604386280113],[119,-62,76,-0.7275062693161627],[119,-62,77,-0.7272545627314887],[119,-62,78,-0.7270053229456875],[119,-62,79,-0.7267585539318346],[119,-61,64,-0.7308348615820981],[119,-61,65,-0.7305534578127226],[119,-61,66,-0.7302744655358915],[119,-61,67,-0.7299978898862679],[119,-61,68,-0.7297237359045637],[119,-61,69,-0.7294520085371232],[119,-61,70,-0.7291827126354903],[119,-61,71,-0.7289158529559814],[119,-61,72,-0.7286514341592563],[119,-61,73,-0.7283894608099036],[119,-61,74,-0.7281299373759977],[119,-61,75,-0.7278728682286861],[119,-61,76,-0.7276182576417634],[119,-61,77,-0.7273661097912483],[119,-61,78,-0.7271164287549624],[119,-61,79,-0.7268692185121051],[119,-60,64,-0.7309523061261058],[119,-60,65,-0.7306704619163462],[119,-60,66,-0.7303910291394715],[119,-60,67,-0.7301140129362527],[119,-60,68,-0.7298394183535107],[119,-60,69,-0.7295672503437002],[119,-60,70,-0.7292975137644767],[119,-60,71,-0.7290302133782696],[119,-60,72,-0.7287653538518519],[119,-60,73,-0.7285029397559273],[119,-60,74,-0.7282429755646852],[119,-60,75,-0.7279854656553887],[119,-60,76,-0.7277304143079492],[119,-60,77,-0.7274778257045016],[119,-60,78,-0.7272277039289844],[119,-60,79,-0.726980052966714],[119,-59,64,-0.7310699129757793],[119,-59,65,-0.7307876288614759],[119,-59,66,-0.7305077561188134],[119,-59,67,-0.7302302998946623],[119,-59,68,-0.7299552652419448],[119,-59,69,-0.7296826571192181],[119,-59,70,-0.7294124803902418],[119,-59,71,-0.7291447398235502],[119,-59,72,-0.7288794400920229],[119,-59,73,-0.7286165857724702],[119,-59,74,-0.7283561813451896],[119,-59,75,-0.7280982311935529],[119,-59,76,-0.72784273960358],[119,-59,77,-0.727589710763516],[119,-59,78,-0.7273391487634088],[119,-59,79,-0.7270910575946845],[119,-58,64,-0.7311876823744258],[119,-58,65,-0.7309049588950512],[119,-58,66,-0.73062464672447],[119,-58,67,-0.7303467510156446],[119,-58,68,-0.7300712768275903],[119,-58,69,-0.729798229124959],[119,-58,70,-0.7295276127776062],[119,-58,71,-0.7292594325601641],[119,-58,72,-0.7289936931516107],[119,-58,73,-0.7287303991348557],[119,-58,74,-0.7284695549962972],[119,-58,75,-0.7282111651254078],[119,-58,76,-0.72795523381431],[119,-58,77,-0.7277017652573505],[119,-58,78,-0.7274507635506802],[119,-58,79,-0.7272022326918279],[119,-57,64,-0.7313056145621591],[119,-57,65,-0.7310224522608151],[119,-57,66,-0.7307417012037953],[119,-57,67,-0.7304633665501455],[119,-57,68,-0.7301874533649664],[119,-57,69,-0.7299139666189965],[119,-57,70,-0.7296429111881801],[119,-57,71,-0.7293742918532385],[119,-57,72,-0.7291081132992406],[119,-57,73,-0.7288443801151885],[119,-57,74,-0.7285830967935729],[119,-57,75,-0.7283242677299604],[119,-57,76,-0.7280678972225675],[119,-57,77,-0.7278139894718363],[119,-57,78,-0.7275625485800133],[119,-57,79,-0.7273135785507232],[119,-56,64,-0.7314237097759214],[119,-56,65,-0.7311401091993358],[119,-56,66,-0.7308589198009651],[119,-56,67,-0.7305801467459302],[119,-56,68,-0.7303037951054091],[119,-56,69,-0.7300298698562191],[119,-56,70,-0.7297583758803847],[119,-56,71,-0.7294893179647093],[119,-56,72,-0.7292227008003447],[119,-56,73,-0.7289585289823772],[119,-56,74,-0.7286968070093831],[119,-56,75,-0.7284375392830152],[119,-56,76,-0.7281807301075773],[119,-56,77,-0.727926383689599],[119,-56,78,-0.7276745041374153],[119,-56,79,-0.7274250954607395],[119,-55,64,-0.7315419682494645],[119,-55,65,-0.7312579299479882],[119,-55,66,-0.7309763027569591],[119,-55,67,-0.7306970918475648],[119,-55,68,-0.7304203022970522],[119,-55,69,-0.7301459390883097],[119,-55,70,-0.7298740071094338],[119,-55,71,-0.7296045111533019],[119,-55,72,-0.7293374559171413],[119,-55,73,-0.7290728460021149],[119,-55,74,-0.7288106859128765],[119,-55,75,-0.7285509800571577],[119,-55,76,-0.7282937327453419],[119,-55,77,-0.7280389481900393],[119,-55,78,-0.7277866305056657],[119,-55,79,-0.7275367837080162],[119,-54,64,-0.7316603902133995],[119,-54,65,-0.7313759147410038],[119,-54,66,-0.7310938503096103],[119,-54,67,-0.7308142020964656],[119,-54,68,-0.7305369751848771],[119,-54,69,-0.7302621745637958],[119,-54,70,-0.729989805127383],[119,-54,71,-0.7297198716745813],[119,-54,72,-0.729452378908686],[119,-54,73,-0.7291873314369285],[119,-54,74,-0.7289247337700326],[119,-54,75,-0.7286645903218014],[119,-54,76,-0.7284069054086902],[119,-54,77,-0.7281516832493822],[119,-54,78,-0.7278989279643667],[119,-54,79,-0.7276486435755134],[119,-53,64,-0.731778975895185],[119,-53,65,-0.731494063809458],[119,-53,66,-0.731211562693593],[119,-53,67,-0.7309314777308873],[119,-53,68,-0.7306538140107006],[119,-53,69,-0.7303785765280383],[119,-53,70,-0.7301057701831176],[119,-53,71,-0.7298353997809396],[119,-53,72,-0.7295674700308585],[119,-53,73,-0.7293019855461671],[119,-53,74,-0.7290389508436513],[119,-53,75,-0.7287783703431776],[119,-53,76,-0.7285202483672659],[119,-53,77,-0.7282645891406647],[119,-53,78,-0.72801139678993],[119,-53,79,-0.7277606753429984],[119,-52,64,-0.731897725519115],[119,-52,65,-0.7316123773812584],[119,-52,66,-0.7313294401404107],[119,-52,67,-0.7310489189859106],[119,-52,68,-0.7307708190131623],[119,-52,69,-0.7304951452232172],[119,-52,70,-0.7302219025223404],[119,-52,71,-0.729951095721583],[119,-52,72,-0.7296827295363507],[119,-52,73,-0.729416808585989],[119,-52,74,-0.7291533373933384],[119,-52,75,-0.7288923203843212],[119,-52,76,-0.728633761887514],[119,-52,77,-0.7283776661337237],[119,-52,78,-0.7281240372555648],[119,-52,79,-0.7278728792870335],[119,-51,64,-0.7320166393063682],[119,-51,65,-0.7317308556811946],[119,-51,66,-0.7314474828784452],[119,-51,67,-0.7311665260934921],[119,-51,68,-0.7308879904277752],[119,-51,69,-0.7306118808883832],[119,-51,70,-0.7303382023876217],[119,-51,71,-0.7300669597425828],[119,-51,72,-0.7297981576747159],[119,-51,73,-0.7295318008094115],[119,-51,74,-0.7292678936755567],[119,-51,75,-0.7290064407051214],[119,-51,76,-0.7287474462327319],[119,-51,77,-0.7284909144952452],[119,-51,78,-0.7282368496313268],[119,-51,79,-0.7279852556810258],[119,-50,64,-0.7321357174749896],[119,-50,65,-0.731849498930919],[119,-50,66,-0.7315656911329385],[119,-50,67,-0.7312842992824449],[119,-50,68,-0.7310053284869054],[119,-50,69,-0.7307287837594378],[119,-50,70,-0.730454670018379],[119,-50,71,-0.730182992086855],[119,-50,72,-0.72991375469235],[119,-50,73,-0.7296469624662916],[119,-50,74,-0.7293826199436055],[119,-50,75,-0.7291207315623021],[119,-50,76,-0.7288613016630485],[119,-50,77,-0.7286043344887443],[119,-50,78,-0.7283498341840995],[119,-50,79,-0.7280978047952072],[119,-49,64,-0.7322549602399123],[119,-49,65,-0.7319683073489693],[119,-49,66,-0.7316840651260146],[119,-49,67,-0.7314022387784616],[119,-49,68,-0.7311228334197953],[119,-49,69,-0.7308458540691551],[119,-49,70,-0.7305713056509008],[119,-49,71,-0.730299192994183],[119,-49,72,-0.7300295208325134],[119,-49,73,-0.7297622938033484],[119,-49,74,-0.7294975164476445],[119,-49,75,-0.7292351932094435],[119,-49,76,-0.7289753284354469],[119,-49,77,-0.7287179263745888],[119,-49,78,-0.7284629911776155],[119,-49,79,-0.7282105268966572],[119,-48,64,-0.732374367812939],[119,-48,65,-0.732087281150749],[119,-48,66,-0.7318026050766602],[119,-48,67,-0.7315203448040936],[119,-48,68,-0.731240505452544],[119,-48,69,-0.7309630920471633],[119,-48,70,-0.7306881095183254],[119,-48,71,-0.7304155627011981],[119,-48,72,-0.7301454563353117],[119,-48,73,-0.7298777950641433],[119,-48,74,-0.7296125834346718],[119,-48,75,-0.7293498258969633],[119,-48,76,-0.7290895268037447],[119,-48,77,-0.7288316904099779],[119,-48,78,-0.728576320872437],[119,-48,79,-0.728323422249282],[119,-47,64,-0.732493940402791],[119,-47,65,-0.7322064205485773],[119,-47,66,-0.7319213112007747],[119,-47,67,-0.7316386175788026],[119,-47,68,-0.7313583448081571],[119,-47,69,-0.7310804979199937],[119,-47,70,-0.7308050818506925],[119,-47,71,-0.7305321014414294],[119,-47,72,-0.7302615614377452],[119,-47,73,-0.7299934664891298],[119,-47,74,-0.7297278211485758],[119,-47,75,-0.7294646298721659],[119,-47,76,-0.7292038970186446],[119,-47,77,-0.7289456268489929],[119,-47,78,-0.7286898235260058],[119,-47,79,-0.7284364911138652],[119,-46,64,-0.7326136782150973],[119,-46,65,-0.7323257257516778],[119,-46,66,-0.7320401837111581],[119,-46,67,-0.7317570573189475],[119,-46,68,-0.7314763517065345],[119,-46,69,-0.7311980719110693],[119,-46,70,-0.7309222228749297],[119,-46,71,-0.7306488094452914],[119,-46,72,-0.7303778363736974],[119,-46,73,-0.7301093083156411],[119,-46,74,-0.729843229830122],[119,-46,75,-0.7295796053792303],[119,-46,76,-0.7293184393277203],[119,-46,77,-0.7290597359425846],[119,-46,78,-0.7288034993926306],[119,-46,79,-0.728549733748055],[119,-45,64,-0.7327335814523805],[119,-45,65,-0.7324451969661645],[119,-45,66,-0.7321592228174983],[119,-45,67,-0.7318756642377718],[119,-45,68,-0.7315945263644574],[119,-45,69,-0.7313158142406914],[119,-45,70,-0.7310395328148402],[119,-45,71,-0.7307656869400713],[119,-45,72,-0.7304942813739206],[119,-45,73,-0.7302253207778777],[119,-45,74,-0.7299588097169397],[119,-45,75,-0.7296947526591968],[119,-45,76,-0.729433153975405],[119,-45,77,-0.7291740179385597],[119,-45,78,-0.7289173487234741],[119,-45,79,-0.7286631504063508],[119,-44,64,-0.732853650314109],[119,-44,65,-0.7325648343950933],[119,-44,66,-0.7322784287264212],[119,-44,67,-0.7319944385454542],[119,-44,68,-0.7317128689956391],[119,-44,69,-0.73143372512609],[119,-44,70,-0.7311570118911532],[119,-44,71,-0.7308827341499787],[119,-44,72,-0.7306108966660877],[119,-44,73,-0.730341504106957],[119,-44,74,-0.730074561043573],[119,-44,75,-0.7298100719500177],[119,-44,76,-0.7295480412030404],[119,-44,77,-0.7292884730816321],[119,-44,78,-0.7290313717666028],[119,-44,79,-0.7287767413401537],[119,-43,64,-0.7329738849966825],[119,-43,65,-0.7326846382384491],[119,-43,66,-0.7323978016414787],[119,-43,67,-0.7321133804490957],[119,-43,68,-0.7318313798107124],[119,-43,69,-0.7315518047814116],[119,-43,70,-0.731274660321511],[119,-43,71,-0.730999951296134],[119,-43,72,-0.7307276824747787],[119,-43,73,-0.7304578585309006],[119,-43,74,-0.7301904840414672],[119,-43,75,-0.7299255634865438],[119,-43,76,-0.7296631012488649],[119,-43,77,-0.7294031016134087],[119,-43,78,-0.7291455687669742],[119,-43,79,-0.7288905067977536],[119,-42,64,-0.733094285693421],[119,-42,65,-0.7328046086931329],[119,-42,66,-0.7325173417631355],[119,-42,67,-0.7322324901527071],[119,-42,68,-0.7319500590172165],[119,-42,69,-0.731670053417706],[119,-42,70,-0.7313924783204558],[119,-42,71,-0.7311173385965547],[119,-42,72,-0.7308446390214682],[119,-42,73,-0.7305743842746222],[119,-42,74,-0.7303065789389569],[119,-42,75,-0.7300412275005123],[119,-42,76,-0.729778334348],[119,-42,77,-0.7295179037723775],[119,-42,78,-0.7292599399664244],[119,-42,79,-0.7290044470243158],[119,-41,64,-0.733214852594615],[119,-41,65,-0.7329247459530126],[119,-41,66,-0.7326370492888199],[119,-41,67,-0.7323517678572593],[119,-41,68,-0.7320689068196474],[119,-41,69,-0.7317884712429767],[119,-41,70,-0.7315104660994812],[119,-41,71,-0.7312348962662059],[119,-41,72,-0.7309617665245753],[119,-41,73,-0.730691081559977],[119,-41,74,-0.7304228459613151],[119,-41,75,-0.7301570642205963],[119,-41,76,-0.7298937407325009],[119,-41,77,-0.729632879793957],[119,-41,78,-0.7293744856037172],[119,-41,79,-0.7291185622619312],[119,-40,64,-0.733335585887505],[119,-40,65,-0.7330450502089034],[119,-40,66,-0.7327569244129041],[119,-40,67,-0.7324712137606642],[119,-40,68,-0.7321879234194386],[119,-40,69,-0.7319070584621616],[119,-40,70,-0.7316286238670116],[119,-40,71,-0.7313526245169807],[119,-40,72,-0.7310790651994441],[119,-40,73,-0.730807950605742],[119,-40,74,-0.7305392853307344],[119,-40,75,-0.7302730738723855],[119,-40,76,-0.7300093206313362],[119,-40,77,-0.7297480299104768],[119,-40,78,-0.729489205914525],[119,-40,79,-0.7292328527495968],[119,-39,64,-0.733456485756305],[119,-39,65,-0.7331655216485903],[119,-39,66,-0.7328769673267262],[119,-39,67,-0.7325908280577959],[119,-39,68,-0.7323071090149833],[119,-39,69,-0.7320258152771547],[119,-39,70,-0.7317469518284243],[119,-39,71,-0.7314705235577226],[119,-39,72,-0.7311965352583659],[119,-39,73,-0.730924991627639],[119,-39,74,-0.7306558972663484],[119,-39,75,-0.7303892566784079],[119,-39,76,-0.7301250742704102],[119,-39,77,-0.7298633543511999],[119,-39,78,-0.7296041011314507],[119,-39,79,-0.7293473187232374],[119,-38,64,-0.733577552382182],[119,-38,65,-0.7332861604568075],[119,-38,66,-0.7329971782185711],[119,-38,67,-0.7327106109404721],[119,-38,68,-0.7324264638016141],[119,-38,69,-0.7321447418867868],[119,-38,70,-0.7318654501860303],[119,-38,71,-0.731588593594205],[119,-38,72,-0.7313141769105593],[119,-38,73,-0.7310422048383136],[119,-38,74,-0.7307726819842124],[119,-38,75,-0.7305056128581102],[119,-38,76,-0.7302410018725431],[119,-38,77,-0.7299788533423015],[119,-38,78,-0.7297191714840072],[119,-38,79,-0.7294619604156855],[119,-37,64,-0.7336987859433073],[119,-37,65,-0.7334069668152905],[119,-37,66,-0.7331175572737206],[119,-37,67,-0.732830562597504],[119,-37,68,-0.7325459879716545],[119,-37,69,-0.7322638384868758],[119,-37,70,-0.7319841191391248],[119,-37,71,-0.7317068348291824],[119,-37,72,-0.7314319903622207],[119,-37,73,-0.7311595904473863],[119,-37,74,-0.7308896396973531],[119,-37,75,-0.7306221426279078],[119,-37,76,-0.730357103657521],[119,-37,77,-0.7300945271069207],[119,-37,78,-0.7298344171986684],[119,-37,79,-0.729576778056731],[119,-36,64,-0.7338201866148435],[119,-36,65,-0.733527940902762],[119,-36,66,-0.733238104674441],[119,-36,67,-0.7329506832146837],[119,-36,68,-0.7326656817144053],[119,-36,69,-0.7323831052702134],[119,-36,70,-0.7321029588839735],[119,-36,71,-0.7318252474623771],[119,-36,72,-0.731549975816511],[119,-36,73,-0.7312771486614392],[119,-36,74,-0.7310067706157561],[119,-36,75,-0.7307388462011719],[119,-36,76,-0.7304733798420833],[119,-36,77,-0.7302103758651468],[119,-36,78,-0.7299498384988553],[119,-36,79,-0.7296917718731096],[119,-35,64,-0.7339417545689313],[119,-35,65,-0.7336490828949197],[119,-35,66,-0.7333588205999694],[119,-35,67,-0.7330709729747711],[119,-35,68,-0.7327855452161315],[119,-35,69,-0.7325025424265532],[119,-35,70,-0.7322219696138001],[119,-35,71,-0.7319438316904662],[119,-35,72,-0.731668133473543],[119,-35,73,-0.7313948796840032],[119,-35,74,-0.7311240749463529],[119,-35,75,-0.7308557237882167],[119,-35,76,-0.7305898306399088],[119,-35,77,-0.7303263998340058],[119,-35,78,-0.7300654356049235],[119,-35,79,-0.7298069420884881],[119,-34,64,-0.734063489974741],[119,-34,65,-0.7337703929644872],[119,-34,66,-0.7334797052265656],[119,-34,67,-0.7331914320575451],[119,-34,68,-0.732905578660114],[119,-34,69,-0.7326221501426605],[119,-34,70,-0.7323411515188377],[119,-34,71,-0.7320625877071321],[119,-34,72,-0.7317864635304316],[119,-34,73,-0.7315127837156084],[119,-34,74,-0.7312415528930709],[119,-34,75,-0.7309727755963493],[119,-34,76,-0.7307064562616669],[119,-34,77,-0.7304425992275115],[119,-34,78,-0.7301812087342132],[119,-34,79,-0.729922288923515],[119,-33,64,-0.7341853929984521],[119,-33,65,-0.7338918712811935],[119,-33,66,-0.7336007587274915],[119,-33,67,-0.733312060639783],[119,-33,68,-0.7330257822266286],[119,-33,69,-0.7327419286022924],[119,-33,70,-0.7324605047863071],[119,-33,71,-0.7321815157030428],[119,-33,72,-0.7319049661812743],[119,-33,73,-0.7316308609537637],[119,-33,74,-0.7313592046568135],[119,-33,75,-0.7310900018298503],[119,-33,76,-0.7308232569149972],[119,-33,77,-0.730558974256645],[119,-33,78,-0.7302971581010294],[119,-33,79,-0.7300378125958015],[119,-32,64,-0.7343074638032757],[119,-32,65,-0.734013518011796],[119,-32,66,-0.7337219812730336],[119,-32,67,-0.7334328588952834],[119,-32,68,-0.7331461560929688],[119,-32,69,-0.7328618779862203],[119,-32,70,-0.7325800296004408],[119,-32,71,-0.7323006158658742],[119,-32,72,-0.7320236416171728],[119,-32,73,-0.7317491115929802],[119,-32,74,-0.7314770304354827],[119,-32,75,-0.7312074026899953],[119,-32,76,-0.7309402328045317],[119,-32,77,-0.7306755251293768],[119,-32,78,-0.7304132839166632],[119,-32,79,-0.7301535133199419],[119,-31,64,-0.7344297025494353],[119,-31,65,-0.7341353333200602],[119,-31,66,-0.7338433730304824],[119,-31,67,-0.7335538269948457],[119,-31,68,-0.7332667004334258],[119,-31,69,-0.7329819984722099],[119,-31,70,-0.7326997261424615],[119,-31,71,-0.7324198883802892],[119,-31,72,-0.7321424900262132],[119,-31,73,-0.731867535824749],[119,-31,74,-0.7315950304239585],[119,-31,75,-0.7313249783750349],[119,-31,76,-0.7310573841318743],[119,-31,77,-0.7307922520506465],[119,-31,78,-0.7305295863893725],[119,-31,79,-0.7302693913074946],[119,-30,64,-0.7345521093942164],[119,-30,65,-0.7342573173668105],[119,-30,66,-0.7339649341641848],[119,-30,67,-0.7336749651063216],[119,-30,68,-0.733387415419339],[119,-30,69,-0.7331022902350717],[119,-30,70,-0.732819594590634],[119,-30,71,-0.7325393334279892],[119,-30,72,-0.7322615115935167],[119,-30,73,-0.7319861338375939],[119,-30,74,-0.7317132048141491],[119,-30,75,-0.7314427290802454],[119,-30,76,-0.7311747110956514],[119,-30,77,-0.7309091552224133],[119,-30,78,-0.7306460657244316],[119,-30,79,-0.7303854467670312],[119,-29,64,-0.7346746844919549],[119,-29,65,-0.7343794703099179],[119,-29,66,-0.7340866648355296],[119,-29,67,-0.7337962733946011],[119,-29,68,-0.7335083012190835],[119,-29,69,-0.7332227534466482],[119,-29,70,-0.7329396351202512],[119,-29,71,-0.7326589511877009],[119,-29,72,-0.732380706501226],[119,-29,73,-0.7321049058170571],[119,-29,74,-0.7318315537949792],[119,-29,75,-0.7315606549979157],[119,-29,76,-0.731292213891499],[119,-29,77,-0.7310262348436432],[119,-29,78,-0.7307627221241189],[119,-29,79,-0.7305016799041248],[119,-28,64,-0.7347974279940231],[119,-28,65,-0.7345017923042856],[119,-28,66,-0.7342085652029349],[119,-28,67,-0.7339177520216003],[119,-28,68,-0.7336293579980561],[119,-28,69,-0.7333433882758006],[119,-28,70,-0.7330598479036214],[119,-28,71,-0.7327787418351628],[119,-28,72,-0.7325000749284929],[119,-28,73,-0.7322238519456861],[119,-28,74,-0.7319500775523746],[119,-28,75,-0.7316787563173334],[119,-28,76,-0.7314098927120494],[119,-28,77,-0.7311434911102948],[119,-28,78,-0.7308795557877023],[119,-28,79,-0.7306180909213353],[119,-27,64,-0.7349203400488814],[119,-27,65,-0.7346242835019015],[119,-27,66,-0.7343306354218991],[119,-27,67,-0.734039401146312],[119,-27,68,-0.7337505859187268],[119,-27,69,-0.7334641948884595],[119,-27,70,-0.7331802331101192],[119,-27,71,-0.732898705543176],[119,-27,72,-0.7326196170515284],[119,-27,73,-0.7323429724030845],[119,-27,74,-0.7320687762693149],[119,-27,75,-0.731797033224836],[119,-27,76,-0.7315277477469809],[119,-27,77,-0.7312609242153707],[119,-27,78,-0.7309965669114908],[119,-27,79,-0.7307346800182608],[119,-26,64,-0.7350434208020571],[119,-26,65,-0.734746944051817],[119,-26,66,-0.7344528756449812],[119,-26,67,-0.7341612209247852],[119,-26,68,-0.7338719851406188],[119,-26,69,-0.7335851734476051],[119,-26,70,-0.7333007909061648],[119,-26,71,-0.7330188424815844],[119,-26,72,-0.7327393330435825],[119,-26,73,-0.7324622673658919],[119,-26,74,-0.7321876501258118],[119,-26,75,-0.7319154859037911],[119,-26,76,-0.7316457791829989],[119,-26,77,-0.7313785343488968],[119,-26,78,-0.7311137556888136],[119,-26,79,-0.7308514473915166],[119,-25,64,-0.7351666703961687],[119,-25,65,-0.7348697741001701],[119,-25,66,-0.7345752860218222],[119,-25,67,-0.7342832115101482],[119,-25,68,-0.7339935558203303],[119,-25,69,-0.7337063241132891],[119,-25,70,-0.7334215214552469],[119,-25,71,-0.7331391528172964],[119,-25,72,-0.7328592230749669],[119,-25,73,-0.732581737007806],[119,-25,74,-0.7323066992989321],[119,-25,75,-0.732034114534617],[119,-25,76,-0.731763987203857],[119,-25,77,-0.7314963216979445],[119,-25,78,-0.731231122310043],[119,-25,79,-0.7309683932347577],[119,-24,64,-0.7352900889709035],[119,-24,65,-0.7349927737901645],[119,-24,66,-0.7346978666991255],[119,-24,67,-0.7344053730525874],[119,-24,68,-0.7341152981115145],[119,-24,69,-0.7338276470426146],[119,-24,70,-0.7335424249179017],[119,-24,71,-0.7332596367142646],[119,-24,72,-0.7329792873130339],[119,-24,73,-0.7327013814995621],[119,-24,74,-0.7324259239627768],[119,-24,75,-0.7321529192947638],[119,-24,76,-0.7318823719903367],[119,-24,77,-0.7316142864466099],[119,-24,78,-0.731348666962572],[119,-24,79,-0.7310855177386575],[119,-23,64,-0.7354136766630707],[119,-23,65,-0.7351159432621212],[119,-23,66,-0.7348206178207081],[119,-23,67,-0.7345277056993991],[119,-23,68,-0.7342372121649305],[119,-23,69,-0.7339491423897869],[119,-23,70,-0.7336635014517642],[119,-23,71,-0.7333802943335375],[119,-23,72,-0.7330995259222278],[119,-23,73,-0.7328212010089836],[119,-23,74,-0.7325453242885321],[119,-23,75,-0.732271900358763],[119,-23,76,-0.7320009337202985],[119,-23,77,-0.7317324287760647],[119,-23,78,-0.731466389830867],[119,-23,79,-0.7312028210909598],[119,-22,64,-0.7355374336065867],[119,-22,65,-0.7352392826534653],[119,-22,66,-0.734943539527487],[119,-22,67,-0.7346502095949761],[119,-22,68,-0.7343592981284304],[119,-22,69,-0.7340708103061009],[119,-22,70,-0.7337847512115554],[119,-22,71,-0.7335011258332449],[119,-22,72,-0.7332199390640718],[119,-22,73,-0.7329411957009698],[119,-22,74,-0.7326649004444563],[119,-22,75,-0.7323910578982155],[119,-22,76,-0.7321196725686682],[119,-22,77,-0.7318507488645434],[119,-22,78,-0.7315842910964536],[119,-22,79,-0.7313203034764643],[119,-21,64,-0.7356613599324631],[119,-21,65,-0.7353627920987126],[119,-21,66,-0.7350666319574661],[119,-21,67,-0.734772884880794],[119,-21,68,-0.734481556146945],[119,-21,69,-0.7341926509399268],[119,-21,70,-0.7339061743490678],[119,-21,71,-0.7336221313685858],[119,-21,72,-0.7333405268971537],[119,-21,73,-0.7330613657374812],[119,-21,74,-0.7327846525958657],[119,-21,75,-0.7325103920817763],[119,-21,76,-0.732238588707423],[119,-21,77,-0.7319692468873285],[119,-21,78,-0.7317023709379025],[119,-21,79,-0.7314379650770125],[119,-20,64,-0.735785455768857],[119,-20,65,-0.7354864717295206],[119,-20,66,-0.7351898952457875],[119,-20,67,-0.7348957316954627],[119,-20,68,-0.7346039863625364],[119,-20,69,-0.7343146644367614],[119,-20,70,-0.7340277710132175],[119,-20,71,-0.7337433110918783],[119,-20,72,-0.7334612895771777],[119,-20,73,-0.7331817112775909],[119,-20,74,-0.7329045809051861],[119,-20,75,-0.7326299030752071],[119,-20,76,-0.7323576823056437],[119,-20,77,-0.7320879230168024],[119,-20,78,-0.7318206295308813],[119,-20,79,-0.7315558060715405],[119,-19,64,-0.7359097212410508],[119,-19,65,-0.7356103216746688],[119,-19,66,-0.7353133295247106],[119,-19,67,-0.7350187501747065],[119,-19,68,-0.7347265889143763],[119,-19,69,-0.7344368509392083],[119,-19,70,-0.7341495413500232],[119,-19,71,-0.7338646651525399],[119,-19,72,-0.7335822272569434],[119,-19,73,-0.7333022324774645],[119,-19,74,-0.7330246855319319],[119,-19,75,-0.7327495910413547],[119,-19,76,-0.7324769535294925],[119,-19,77,-0.7322067774224263],[119,-19,78,-0.731939067048133],[119,-19,79,-0.7316738266360558],[119,-18,64,-0.7360341564714754],[119,-18,65,-0.7357343420600799],[119,-18,66,-0.7354369349236353],[119,-18,67,-0.7351419404513851],[119,-18,68,-0.7348493639387689],[119,-18,69,-0.7345592105869998],[119,-18,70,-0.7342714855026284],[119,-18,71,-0.7339861936971097],[119,-18,72,-0.7337033400863686],[119,-18,73,-0.733422929490382],[119,-18,74,-0.7331449666327288],[119,-18,75,-0.7328694561401736],[119,-18,76,-0.7325964025422362],[119,-18,77,-0.7323258102707626],[119,-18,78,-0.7320576836594989],[119,-18,79,-0.731792026943662],[119,-17,64,-0.736158761579689],[119,-17,65,-0.7358585330088012],[119,-17,66,-0.7355607115690806],[119,-17,67,-0.7352653026554743],[119,-17,68,-0.7349723115691301],[119,-17,69,-0.7346817435169758],[119,-17,70,-0.7343936036112815],[119,-17,71,-0.734107896869227],[119,-17,72,-0.7338246282124679],[119,-17,73,-0.7335438024667164],[119,-17,74,-0.7332654243612919],[119,-17,75,-0.7329894985287049],[119,-17,76,-0.7327160295042252],[119,-17,77,-0.7324450217254536],[119,-17,78,-0.7321764795318966],[119,-17,79,-0.731910407164535],[119,-16,64,-0.7362835366824283],[119,-16,65,-0.7359828946410538],[119,-16,66,-0.7356846595847369],[119,-16,67,-0.7353888369141167],[119,-16,68,-0.7350954319360394],[119,-16,69,-0.734804449863136],[119,-16,70,-0.7345158958133858],[119,-16,71,-0.7342297748096835],[119,-16,72,-0.7339460917794045],[119,-16,73,-0.7336648515539863],[119,-16,74,-0.7333860588684789],[119,-16,75,-0.7331097183611279],[119,-16,76,-0.732835834572944],[119,-16,77,-0.7325644119472733],[119,-16,78,-0.7322954548293723],[119,-16,79,-0.732028967465977],[119,-15,64,-0.7364084818935963],[119,-15,65,-0.7361074270742209],[119,-15,66,-0.7358087790914518],[119,-15,67,-0.7355125433516089],[119,-15,68,-0.7352187251672256],[119,-15,69,-0.7349273297566259],[119,-15,70,-0.7346383622434876],[119,-15,71,-0.7343518276564094],[119,-15,72,-0.7340677309284765],[119,-15,73,-0.7337860768968414],[119,-15,74,-0.7335068703022742],[119,-15,75,-0.7332301157887462],[119,-15,76,-0.7329558179029987],[119,-15,77,-0.7326839810941131],[119,-15,78,-0.7324146097130868],[119,-15,79,-0.7321477080124009],[119,-14,64,-0.7365335973242472],[119,-14,65,-0.7362321304228336],[119,-14,66,-0.7359330702072167],[119,-14,67,-0.7356364220893868],[119,-14,68,-0.7353421913875536],[119,-14,69,-0.735050383325723],[119,-14,70,-0.7347610030332609],[119,-14,71,-0.7344740555444593],[119,-14,72,-0.7341895457981029],[119,-14,73,-0.7339074786370485],[119,-14,74,-0.7336278588077766],[119,-14,75,-0.7333506909599738],[119,-14,76,-0.7330759796461019],[119,-14,77,-0.7328037293209683],[119,-14,78,-0.7325339443413008],[119,-14,79,-0.7322666289653166],[119,-13,64,-0.7366588830826392],[119,-13,65,-0.7363570047986221],[119,-13,66,-0.7360575330472185],[119,-13,67,-0.7357604732460783],[119,-13,68,-0.735465830719076],[119,-13,69,-0.7351736106958888],[119,-13,70,-0.7348838183115599],[119,-13,71,-0.7345964586060644],[119,-13,72,-0.7343115365238752],[119,-13,73,-0.7340290569135437],[119,-13,74,-0.7337490245272502],[119,-13,75,-0.7334714440203867],[119,-13,76,-0.7331963199511251],[119,-13,77,-0.732923656779989],[119,-13,78,-0.7326534588694271],[119,-13,79,-0.7323857304833827],[119,-12,64,-0.7367843392742206],[119,-12,65,-0.736482050310503],[119,-12,66,-0.7361821677238265],[119,-12,67,-0.735884696937489],[119,-12,68,-0.7355896432810193],[119,-12,69,-0.735297011989755],[119,-12,70,-0.7350068082044053],[119,-12,71,-0.734719036970618],[119,-12,72,-0.734433703238544],[119,-12,73,-0.7341508118624183],[119,-12,74,-0.7338703676001109],[119,-12,75,-0.7335923751127087],[119,-12,76,-0.7333168389640843],[119,-12,77,-0.7330437636204671],[119,-12,78,-0.7327731534500167],[119,-12,79,-0.7325050127223927],[119,-11,64,-0.7369099660016161],[119,-11,65,-0.7366072670645648],[119,-11,66,-0.7363069743465774],[119,-11,67,-0.7360090932765886],[119,-11,68,-0.73571362918977],[119,-11,69,-0.7354205873271089],[119,-11,70,-0.73512997283497],[119,-11,71,-0.7348417907646623],[119,-11,72,-0.7345560460720043],[119,-11,73,-0.7342727436169045],[119,-11,74,-0.7339918881629119],[119,-11,75,-0.7337134843767981],[119,-11,76,-0.7334375368281261],[119,-11,77,-0.733164049988821],[119,-11,78,-0.7328930282327437],[119,-11,79,-0.7326244758352604],[119,-10,64,-0.7370357633646785],[119,-10,65,-0.7367326551641205],[119,-10,66,-0.7364319530222285],[119,-10,67,-0.7361336623735627],[119,-10,68,-0.735837788558927],[119,-10,69,-0.7355443368249466],[119,-10,70,-0.7352533123236309],[119,-10,71,-0.7349647201119397],[119,-10,72,-0.7346785651513483],[119,-10,73,-0.734394852307428],[119,-10,74,-0.7341135863493959],[119,-10,75,-0.7338347719496988],[119,-10,76,-0.7335584136835793],[119,-10,77,-0.7332845160286483],[119,-10,78,-0.7330130833644584],[119,-10,79,-0.7327441199720718],[119,-9,64,-0.7371617314604679],[119,-9,65,-0.7368582147096856],[119,-9,66,-0.7365571038547356],[119,-9,67,-0.736258404335792],[119,-9,68,-0.7359621214992794],[119,-9,69,-0.7356682605974505],[119,-9,70,-0.7353768267879481],[119,-9,71,-0.7350878251333719],[119,-9,72,-0.7348012606008432],[119,-9,73,-0.7345171380615853],[119,-9,74,-0.7342354622904738],[119,-9,75,-0.7339562379656188],[119,-9,76,-0.7336794696679336],[119,-9,77,-0.7334051618807044],[119,-9,78,-0.7331333189891646],[119,-9,79,-0.7328639452800636],[119,-8,64,-0.7372878703832747],[119,-8,65,-0.7369839457990022],[119,-8,66,-0.7366824269452764],[119,-8,67,-0.7363833192678746],[119,-8,68,-0.7360866281188305],[119,-8,69,-0.7357923587560131],[119,-8,70,-0.7355005163426875],[119,-8,71,-0.7352111059470824],[119,-8,72,-0.7349241325419542],[119,-8,73,-0.7346396010041679],[119,-8,74,-0.7343575161142466],[119,-8,75,-0.7340778825559539],[119,-8,76,-0.7338007049158625],[119,-8,77,-0.7335259876829239],[119,-8,78,-0.733253735248043],[119,-8,79,-0.7329839519036458],[119,-7,64,-0.7374141802245978],[119,-7,65,-0.7371098485270162],[119,-7,66,-0.736807922392229],[119,-7,67,-0.7365084072716047],[119,-7,68,-0.7362113085227754],[119,-7,69,-0.7359166314092145],[119,-7,70,-0.7356243810997989],[119,-7,71,-0.7353345626683748],[119,-7,72,-0.7350471810933235],[119,-7,73,-0.7347622412571401],[119,-7,74,-0.7344797479459848],[119,-7,75,-0.7341997058492644],[119,-7,76,-0.7339221195592005],[119,-7,77,-0.7336469935704002],[119,-7,78,-0.7333743322794289],[119,-7,79,-0.7331041399843796],[119,-6,64,-0.7375406610731973],[119,-6,65,-0.7372359229859307],[119,-6,66,-0.736933590291224],[119,-6,67,-0.7366336684460253],[119,-6,68,-0.7363361628135535],[119,-6,69,-0.7360410786628755],[119,-6,70,-0.7357484211684684],[119,-6,71,-0.7354581954097855],[119,-6,72,-0.735170406370821],[119,-6,73,-0.7348850589396904],[119,-6,74,-0.7346021579081798],[119,-6,75,-0.7343217079713286],[119,-6,76,-0.7340437137269971],[119,-6,77,-0.733768179675437],[119,-6,78,-0.7334951102188647],[119,-6,79,-0.7332245096610297],[119,-5,64,-0.7376673130150802],[119,-5,65,-0.7373621692651914],[119,-5,66,-0.7370594307351304],[119,-5,67,-0.7367591028874134],[119,-5,68,-0.7364611910908345],[119,-5,69,-0.736165700620043],[119,-5,70,-0.7358726366551048],[119,-5,71,-0.7355820042810689],[119,-5,72,-0.735293808487532],[119,-5,73,-0.7350080541682185],[119,-5,74,-0.7347247461205301],[119,-5,75,-0.7344438890451279],[119,-5,76,-0.7341654875455005],[119,-5,77,-0.7338895461275339],[119,-5,78,-0.7336160691990851],[119,-5,79,-0.7333450610695502],[119,-4,64,-0.7377941361334868],[119,-4,65,-0.7374885874514729],[119,-4,66,-0.7371854438140418],[119,-4,67,-0.7368847106892666],[119,-4,68,-0.7365863934515047],[119,-4,69,-0.7362904973809762],[119,-4,70,-0.7359970276633246],[119,-4,71,-0.7357059893891837],[119,-4,72,-0.7354173875537415],[119,-4,73,-0.7351312270563203],[119,-4,74,-0.7348475126999265],[119,-4,75,-0.7345662491908325],[119,-4,76,-0.7342874411381444],[119,-4,77,-0.7340110930533722],[119,-4,78,-0.733737209350003],[119,-4,79,-0.7334657943430697],[119,-3,64,-0.7379211305089428],[119,-3,65,-0.737615177628731],[119,-3,66,-0.737311629615329],[119,-3,67,-0.7370104919423548],[119,-3,68,-0.7367117699897182],[119,-3,69,-0.7364154690431982],[119,-3,70,-0.7361215942940048],[119,-3,71,-0.735830150838345],[119,-3,72,-0.735541143676987],[119,-3,73,-0.7352545777148404],[119,-3,74,-0.734970457760505],[119,-3,75,-0.7346887885258538],[119,-3,76,-0.7344095746256001],[119,-3,77,-0.734132820576867],[119,-3,78,-0.7338585307987618],[119,-3,79,-0.7335867096119432],[119,-2,64,-0.7380482962192376],[119,-2,65,-0.7377419398781806],[119,-2,66,-0.7374379882236176],[119,-2,67,-0.7371364467346995],[119,-2,68,-0.7368373207968764],[119,-2,69,-0.7365406157014753],[119,-2,70,-0.7362463366452611],[119,-2,71,-0.7359544887300025],[119,-2,72,-0.735665076962037],[119,-2,73,-0.73537810625185],[119,-2,74,-0.7350935814136244],[119,-2,75,-0.7348115071648227],[119,-2,76,-0.7345318881257543],[119,-2,77,-0.7342547288191457],[119,-2,78,-0.733980033669713],[119,-2,79,-0.7337078070037311],[119,-1,64,-0.738175633339448],[119,-1,65,-0.7378688742783197],[119,-1,66,-0.7375645197208116],[119,-1,67,-0.7372625751515955],[119,-1,68,-0.7369630459616505],[119,-1,69,-0.7366659374478394],[119,-1,70,-0.7363712548124705],[119,-1,71,-0.7360790031628632],[119,-1,72,-0.7357891875109132],[119,-1,73,-0.7355018127726702],[119,-1,74,-0.7352168837678894],[119,-1,75,-0.7349344052196117],[119,-1,76,-0.7346543817537323],[119,-1,77,-0.7343768178985696],[119,-1,78,-0.7341017180844392],[119,-1,79,-0.7338290866432213],[119,0,64,-0.7383031419419157],[119,0,65,-0.7379959809049071],[119,0,66,-0.7376912241860716],[119,0,67,-0.7373888772755903],[119,0,68,-0.7370889455699593],[119,0,69,-0.7367914343715658],[119,0,70,-0.7364963488882499],[119,0,71,-0.7362036942328705],[119,0,72,-0.7359134754228692],[119,0,73,-0.7356256973798501],[119,0,74,-0.7353403649291285],[119,0,75,-0.7350574827993136],[119,0,76,-0.7347770556218752],[119,0,77,-0.7344990879307134],[119,0,78,-0.7342235841617322],[119,0,79,-0.7339505486524067],[119,1,64,-0.7384308220963005],[119,1,65,-0.7381232598310148],[119,1,66,-0.7378181016958671],[119,1,67,-0.7375153531865362],[119,1,68,-0.7372150197050227],[119,1,69,-0.7369171065592267],[119,1,70,-0.7366216189625087],[119,1,71,-0.7363285620332551],[119,1,72,-0.7360379407944427],[119,1,73,-0.7357497601732181],[119,1,74,-0.7354640250004465],[119,1,75,-0.7351807400102935],[119,1,76,-0.7348999098397933],[119,1,77,-0.7346215390284164],[119,1,78,-0.7343456320176449],[119,1,79,-0.7340721931505383],[119,2,64,-0.7385586738695656],[119,2,65,-0.738250711127014],[119,2,66,-0.7379451523239626],[119,2,67,-0.7376420029615754],[119,2,68,-0.7373412684473462],[119,2,69,-0.7370429540946758],[119,2,70,-0.7367470651224335],[119,2,71,-0.7364536066545218],[119,2,72,-0.7361625837194412],[119,2,73,-0.7358740012498695],[119,2,74,-0.7355878640822101],[119,2,75,-0.735304176956175],[119,2,76,-0.7350229445143507],[119,2,77,-0.7347441713017685],[119,2,78,-0.7344678617654771],[119,2,79,-0.7341940202541104],[119,3,64,-0.738686697325964],[119,3,65,-0.7383783348605613],[119,3,66,-0.7380723761414032],[119,3,67,-0.737768826675127],[119,3,68,-0.7374676918747075],[119,3,69,-0.7371689770590348],[119,3,70,-0.7368726874524748],[119,3,71,-0.7365788281844347],[119,3,72,-0.7362874042889271],[119,3,73,-0.7359984207041497],[119,3,74,-0.7357118822720333],[119,3,75,-0.7354277937378244],[119,3,76,-0.7351461597496515],[119,3,77,-0.7348669848580952],[119,3,78,-0.7345902735157607],[119,3,79,-0.7343160300768452],[119,4,64,-0.7388148925270903],[119,4,65,-0.7385061310966502],[119,4,66,-0.7381997732165669],[119,4,67,-0.7378958243989383],[119,4,68,-0.7375942900622088],[119,4,69,-0.7372951755307454],[119,4,70,-0.7369984860343989],[119,4,71,-0.7367042267080697],[119,4,72,-0.736412402591271],[119,4,73,-0.7361230186277087],[119,4,74,-0.7358360796648299],[119,4,75,-0.7355515904534041],[119,4,76,-0.7352695556470915],[119,4,77,-0.7349899798020105],[119,4,78,-0.7347128673763123],[119,4,79,-0.7344382227297467],[119,5,64,-0.7389432595318601],[119,5,65,-0.7386340998975907],[119,5,66,-0.738327343615143],[119,5,67,-0.738022996202064],[119,5,68,-0.7377210630822547],[119,5,69,-0.7374215495855475],[119,5,70,-0.7371244609472665],[119,5,71,-0.7368298023077927],[119,5,72,-0.736537578712129],[119,5,73,-0.7362477951094779],[119,5,74,-0.7359604563527912],[119,5,75,-0.7356755671983508],[119,5,76,-0.7353931323053365],[119,5,77,-0.7351131562353945],[119,5,78,-0.7348356434522105],[119,5,79,-0.7345605983210768],[119,6,64,-0.7390717983965316],[119,6,65,-0.7387622413230308],[119,6,66,-0.7384550874001553],[119,6,67,-0.7381503421508882],[119,6,68,-0.7378480110045754],[119,6,69,-0.7375480992965024],[119,6,70,-0.7372506122674545],[119,6,71,-0.7369555550632823],[119,6,72,-0.736662932734466],[119,6,73,-0.7363727502356933],[119,6,74,-0.7360850124254094],[119,6,75,-0.7357997240653973],[119,6,76,-0.7355168898203455],[119,6,77,-0.7352365142574164],[119,6,78,-0.7349586018458197],[119,6,79,-0.7346831569563793],[119,7,64,-0.7392005091746847],[119,7,65,-0.7388905554299361],[119,7,66,-0.7385830046319398],[119,7,67,-0.738277862309103],[119,7,68,-0.7379751338962044],[119,7,69,-0.7376748247339703],[119,7,70,-0.7373769400686352],[119,7,71,-0.7370814850515075],[119,7,72,-0.736788464738533],[119,7,73,-0.736497884089873],[119,7,74,-0.7362097479694548],[119,7,75,-0.7359240611445508],[119,7,76,-0.735640828285347],[119,7,77,-0.7353600539645114],[119,7,78,-0.7350817426567666],[119,7,79,-0.7348058987384569],[119,8,64,-0.7393293919172736],[119,8,65,-0.7390190422726415],[119,8,66,-0.7387110953681977],[119,8,67,-0.7384055567377614],[119,8,68,-0.7381024318215317],[119,8,69,-0.7378017259656633],[119,8,70,-0.7375034444218285],[119,8,71,-0.7372075923467811],[119,8,72,-0.7369141748019206],[119,8,73,-0.7366231967528708],[119,8,74,-0.7363346630690287],[119,8,75,-0.7360485785231456],[119,8,76,-0.7357649477908935],[119,8,77,-0.7354837754504346],[119,8,78,-0.7352050659819933],[119,8,79,-0.7349288237674241],[119,9,64,-0.7394584466726124],[119,9,65,-0.7391477019028367],[119,9,66,-0.7388393596639806],[119,9,67,-0.7385334254952622],[119,9,68,-0.7382299048422887],[119,9,69,-0.7379288030566311],[119,9,70,-0.7376301253953872],[119,9,71,-0.7373338770207443],[119,9,72,-0.7370400629995439],[119,9,73,-0.7367486883028602],[119,9,74,-0.7364597578055493],[119,9,75,-0.7361732762858286],[119,9,76,-0.7358892484248456],[119,9,77,-0.7356076788062451],[119,9,78,-0.7353285719157429],[119,9,79,-0.7350519321406919],[119,10,64,-0.7395876734863602],[119,10,65,-0.739276534369553],[119,10,66,-0.7389677975716766],[119,10,67,-0.7386614686373362],[119,10,68,-0.7383575530175339],[119,10,69,-0.738056056069246],[119,10,70,-0.7377569830549824],[119,10,71,-0.7374603391423523],[119,10,72,-0.7371661294036276],[119,10,73,-0.736874358815321],[119,10,74,-0.7365850322577353],[119,10,75,-0.7362981545145437],[119,10,76,-0.7360137302723568],[119,10,77,-0.7357317641202917],[119,10,78,-0.7354522605495437],[119,10,79,-0.7351752239529536],[119,11,64,-0.7397170724015748],[119,11,65,-0.7394055397192145],[119,11,66,-0.7390964091410624],[119,11,67,-0.738789686217098],[119,11,68,-0.7384853764037063],[119,11,69,-0.7381834850632554],[119,11,70,-0.7378840174636563],[119,11,71,-0.7375869787779277],[119,11,72,-0.7372923740837592],[119,11,73,-0.7370002083630909],[119,11,74,-0.7367104865016606],[119,11,75,-0.7364232132885854],[119,11,76,-0.736138393415928],[119,11,77,-0.7358560314782658],[119,11,78,-0.7355761319722629],[119,11,79,-0.7352986992962369],[119,12,64,-0.7398466434586898],[119,12,65,-0.7395347179956171],[119,12,66,-0.739225194419282],[119,12,67,-0.7389180782850251],[119,12,68,-0.7386133750546022],[119,12,69,-0.7383110900957609],[119,12,70,-0.7380112286818006],[119,12,71,-0.7377137959911372],[119,12,72,-0.737418797106867],[119,12,73,-0.7371262370163444],[119,12,74,-0.736836120610731],[119,12,75,-0.7365484526845762],[119,12,76,-0.7362632379353832],[119,12,77,-0.7359804809631785],[119,12,78,-0.7357001862700836],[119,12,79,-0.735422358259882],[119,13,64,-0.7399763866955384],[119,13,65,-0.7396640692399515],[119,13,66,-0.7393541534508692],[119,13,67,-0.7390466448889804],[119,13,68,-0.7387415490213991],[119,13,69,-0.7384388712212399],[119,13,70,-0.7381386167671783],[119,13,71,-0.7378407908430155],[119,13,72,-0.7375453985372418],[119,13,73,-0.7372524448426144],[119,13,74,-0.7369619346557073],[119,13,75,-0.7366738727764892],[119,13,76,-0.7363882639078935],[119,13,77,-0.7361051126553836],[119,13,78,-0.7358244235265278],[119,13,79,-0.7355462009305638],[119,14,64,-0.7401063021473308],[119,14,65,-0.7397935934907804],[119,14,66,-0.739483286277725],[119,14,67,-0.7391753860741892],[119,14,68,-0.7388698983526325],[119,14,69,-0.7385668284915237],[119,14,70,-0.7382661817749021],[119,14,71,-0.7379679633919421],[119,14,72,-0.7376721784365156],[119,14,73,-0.7373788319067711],[119,14,74,-0.7370879287046816],[119,14,75,-0.7367994736356258],[119,14,76,-0.7365134714079536],[119,14,77,-0.7362299266325552],[119,14,78,-0.7359488438224333],[119,14,79,-0.7356702273922692],[119,15,64,-0.740236389846707],[119,15,65,-0.7399232907840922],[119,15,66,-0.7396125929391718],[119,15,67,-0.7393043018832938],[119,15,68,-0.7389984230942498],[119,15,69,-0.7386949619558509],[119,15,70,-0.7383939237574878],[119,15,71,-0.738095313693695],[119,15,72,-0.7377991368637145],[119,15,73,-0.7375053982710733],[119,15,74,-0.737214102823133],[119,15,75,-0.7369252553306687],[119,15,76,-0.7366388605074361],[119,15,77,-0.7363549229697404],[119,15,78,-0.7360734472360073],[119,15,79,-0.7357944377263507],[119,16,64,-0.7403666498237232],[119,16,65,-0.7400531611532859],[119,16,66,-0.7397420734719378],[119,16,67,-0.7394333923563371],[119,16,68,-0.7391271232895953],[119,16,69,-0.7388232716608525],[119,16,70,-0.7385218427648382],[119,16,71,-0.7382228418014353],[119,16,72,-0.7379262738752431],[119,16,73,-0.7376321439951556],[119,16,74,-0.73734045707391],[119,16,75,-0.7370512179276666],[119,16,76,-0.7367644312755752],[119,16,77,-0.7364801017393442],[119,16,78,-0.7361982338428112],[119,16,79,-0.7359188320115111],[119,17,64,-0.740497082105836],[119,17,65,-0.7401832046291565],[119,17,66,-0.7398717279101423],[119,17,67,-0.7395626575307488],[119,17,68,-0.7392559989793945],[119,17,69,-0.7389517576505362],[119,17,70,-0.7386499388442294],[119,17,71,-0.7383505477656926],[119,17,72,-0.7380535895248704],[119,17,73,-0.7377590691360115],[119,17,74,-0.7374669915172167],[119,17,75,-0.7371773614900196],[119,17,76,-0.7368901837789524],[119,17,77,-0.7366054630111147],[119,17,78,-0.736323203715745],[119,17,79,-0.7360434103237873],[119,18,64,-0.7406276867179561],[119,18,65,-0.7403134212399483],[119,18,66,-0.7400015562853492],[119,18,67,-0.7396920974413987],[119,18,68,-0.7393850502018091],[119,18,69,-0.739080419966341],[119,18,70,-0.7387782120403634],[119,18,71,-0.7384784316344182],[119,18,72,-0.7381810838637826],[119,18,73,-0.7378861737480475],[119,18,74,-0.7375937062106658],[119,18,75,-0.737303686078532],[119,18,76,-0.737016118081549],[119,18,77,-0.7367310068521962],[119,18,78,-0.7364483569251008],[119,18,79,-0.736168172736605],[119,19,64,-0.7407584636824334],[119,19,65,-0.7404438110113398],[119,19,66,-0.7401315586265524],[119,19,67,-0.7398217121205815],[119,19,68,-0.7395142769924206],[119,19,69,-0.7392092586471214],[119,19,70,-0.7389066623953536],[119,19,71,-0.7386064934529699],[119,19,72,-0.7383087569405676],[119,19,73,-0.7380134578830682],[119,19,74,-0.7377206012092635],[119,19,75,-0.7374301917513976],[119,19,76,-0.7371422342447319],[119,19,77,-0.7368567333271137],[119,19,78,-0.7365736935385476],[119,19,79,-0.7362931193207627],[119,20,64,-0.7408894130190424],[119,20,65,-0.7405743739664296],[119,20,66,-0.7402617349601597],[119,20,67,-0.7399515015980012],[119,20,68,-0.7396436793842153],[119,20,69,-0.7393382737291319],[119,20,70,-0.7390352899487089],[119,20,71,-0.7387347332640968],[119,20,72,-0.7384366088012011],[119,20,73,-0.7381409215902603],[119,20,74,-0.7378476765653944],[119,20,75,-0.737556878564184],[119,20,76,-0.7372685323272373],[119,20,77,-0.7369826424977579],[119,20,78,-0.7366992136211161],[119,20,79,-0.7364182501444158],[119,21,64,-0.7410205347450354],[119,21,65,-0.7407051101257887],[119,21,66,-0.7403920853100477],[119,21,67,-0.7400814659008257],[119,21,68,-0.7397732574076388],[119,21,69,-0.7394674652460819],[119,21,70,-0.7391640947373882],[119,21,71,-0.7388631511079934],[119,21,72,-0.7385646394890985],[119,21,73,-0.7382685649162471],[119,21,74,-0.7379749323288745],[119,21,75,-0.7376837465698862],[119,21,76,-0.7373950123852249],[119,21,77,-0.7371087344234386],[119,21,78,-0.7368249172352516],[119,21,79,-0.7365435652731313],[119,22,64,-0.74115182887512],[119,22,65,-0.7408360195074388],[119,22,66,-0.7405226096975386],[119,22,67,-0.7402116050536638],[119,22,68,-0.7399030110905724],[119,22,69,-0.7395968332291115],[119,22,70,-0.7392930767957766],[119,22,71,-0.738991747022276],[119,22,72,-0.7386928490450932],[119,22,73,-0.738396387905065],[119,22,74,-0.738102368546929],[119,22,75,-0.7378107958189036],[119,22,76,-0.7375216744722544],[119,22,77,-0.7372350091608615],[119,22,78,-0.7369508044407913],[119,22,79,-0.7366690647698633],[119,23,64,-0.7412832954214821],[119,23,65,-0.7409671021268751],[119,23,66,-0.7406533081414228],[119,23,67,-0.7403419190785878],[119,23,68,-0.7400329404583568],[119,23,69,-0.7397263777068157],[119,23,70,-0.7394222361557095],[119,23,71,-0.7391205210420063],[119,23,72,-0.7388212375074596],[119,23,73,-0.7385243905981864],[119,23,74,-0.7382299852642148],[119,23,75,-0.7379380263590637],[119,23,76,-0.7376485186393089],[119,23,77,-0.7373614667641513],[119,23,78,-0.7370768752949877],[119,23,79,-0.7367947486949772],[119,24,64,-0.7414149343937637],[119,24,65,-0.7410983579970434],[119,24,66,-0.7407841806579369],[119,24,67,-0.7404724079951113],[119,24,68,-0.7401630455337684],[119,24,69,-0.7398560987052205],[119,24,70,-0.7395515728464486],[119,24,71,-0.7392494731996678],[119,24,72,-0.7389498049118891],[119,24,73,-0.7386525730344968],[119,24,74,-0.7383577825227974],[119,24,75,-0.7380654382355974],[119,24,76,-0.7377755449347715],[119,24,77,-0.7374881072848285],[119,24,78,-0.7372031298524839],[119,24,79,-0.7369206171062255],[119,25,64,-0.7415467457991158],[119,25,65,-0.7412297871283944],[119,25,66,-0.740915227260817],[119,25,67,-0.7406030718202423],[119,25,68,-0.7402933263370742],[119,25,69,-0.7399859962478375],[119,25,70,-0.7396810868947366],[119,25,71,-0.7393786035252206],[119,25,72,-0.7390785512915449],[119,25,73,-0.738780935250349],[119,25,74,-0.7384857603622046],[119,25,75,-0.7381930314911943],[119,25,76,-0.7379027534044788],[119,25,77,-0.737614930771863],[119,25,78,-0.7373295681653693],[119,25,79,-0.7370466700588016],[119,26,64,-0.7416787296421845],[119,26,65,-0.7413613895288675],[119,26,66,-0.7410464479612837],[119,26,67,-0.7407339105684689],[119,26,68,-0.7404237828860156],[119,26,69,-0.7401160703556481],[119,26,70,-0.739810778324781],[119,26,71,-0.7395079120460847],[119,26,72,-0.739207476677046],[119,26,73,-0.7389094772795468],[119,26,74,-0.7386139188194116],[119,26,75,-0.7383208061659865],[119,26,76,-0.7380301440917059],[119,26,77,-0.7377419372716589],[119,26,78,-0.7374561902831623],[119,26,79,-0.7371729076053253],[119,27,64,-0.7418108859250941],[119,27,65,-0.7414931652038771],[119,27,66,-0.7411778427680267],[119,27,67,-0.7408649242517427],[119,27,68,-0.7405544151957931],[119,27,69,-0.7402463210470881],[119,27,70,-0.7399406471582397],[119,27,71,-0.7396373987871256],[119,27,72,-0.7393365810964522],[119,27,73,-0.7390381991533304],[119,27,74,-0.7387422579288249],[119,27,75,-0.738448762297533],[119,27,76,-0.7381577170371503],[119,27,77,-0.7378691268280382],[119,27,78,-0.7375829962527958],[119,27,79,-0.737299329795825],[119,28,64,-0.7419432146475028],[119,28,65,-0.7416251141563649],[119,28,66,-0.7413094116872585],[119,28,67,-0.7409961128795342],[119,28,68,-0.7406852232791211],[119,28,69,-0.7403767483381023],[119,28,70,-0.7400706934142738],[119,28,71,-0.7397670637707081],[119,28,72,-0.7394658645753174],[119,28,73,-0.7391671009004293],[119,28,74,-0.7388707777223362],[119,28,75,-0.7385768999208736],[119,28,76,-0.7382854722789862],[119,28,77,-0.7379964994822954],[119,28,78,-0.7377099861186702],[119,28,79,-0.737425936677794],[119,29,64,-0.7420757158065785],[119,29,65,-0.741757236386778],[119,29,66,-0.7414411547226922],[119,29,67,-0.7411274764588083],[119,29,68,-0.7408162071462037],[119,29,69,-0.7405073522421205],[119,29,70,-0.7402009171095254],[119,29,71,-0.7398969070166725],[119,29,72,-0.7395953271366669],[119,29,73,-0.7392961825470402],[119,29,74,-0.7389994782292995],[119,29,75,-0.738705219068506],[119,29,76,-0.7384134098528411],[119,29,77,-0.7381240552731736],[119,29,78,-0.7378371599226309],[119,29,79,-0.7375527282961649],[119,30,64,-0.7422083893970226],[119,30,65,-0.741889531893092],[119,30,66,-0.7415730718755641],[119,30,67,-0.741259014994049],[119,30,68,-0.7409473668047587],[119,30,69,-0.7406381327700811],[119,30,70,-0.7403313182581401],[119,30,71,-0.7400269285423584],[119,30,72,-0.7397249688010206],[119,30,73,-0.7394254441168493],[119,30,74,-0.7391283594765539],[119,30,75,-0.7388337197704085],[119,30,76,-0.7385415297918185],[119,30,77,-0.738251794236888],[119,30,78,-0.7379645177039904],[119,30,79,-0.7376797046933343],[119,31,64,-0.742341235411047],[119,31,65,-0.7420220006707873],[119,31,66,-0.7417051631446101],[119,31,67,-0.7413907284872348],[119,31,68,-0.7410787022599938],[119,31,69,-0.7407690899304077],[119,31,70,-0.7404618968717439],[119,31,71,-0.7401571283625807],[119,31,72,-0.7398547895863687],[119,31,73,-0.7395548856310092],[119,31,74,-0.7392574214884],[119,31,75,-0.7389624020540162],[119,31,76,-0.7386698321264745],[119,31,77,-0.7383797164071019],[119,31,78,-0.7380920594995052],[119,31,79,-0.7378068659091379],[119,32,64,-0.7424742538384275],[119,32,65,-0.7421546427129035],[119,32,66,-0.7418374285261207],[119,32,67,-0.7415226169378935],[119,32,68,-0.7412102135146612],[119,32,69,-0.7409002237290635],[119,32,70,-0.7405926529594978],[119,32,71,-0.7402875064896843],[119,32,72,-0.7399847895082273],[119,32,73,-0.7396845071081926],[119,32,74,-0.7393866642866547],[119,32,75,-0.7390912659442759],[119,32,76,-0.7387983168848724],[119,32,77,-0.7385078218149808],[119,32,78,-0.7382197853434299],[119,32,79,-0.7379342119809055],[119,33,64,-0.7426074446664896],[119,33,65,-0.7422874580100248],[119,33,66,-0.7419698680139253],[119,33,67,-0.7416546803430867],[119,33,68,-0.741341900569042],[119,33,69,-0.7410315341695354],[119,33,70,-0.7407235865280813],[119,33,71,-0.7404180629335284],[119,33,72,-0.7401149685796212],[119,33,73,-0.7398143085645773],[119,33,74,-0.7395160878906344],[119,33,75,-0.73922031146363],[119,33,76,-0.7389269840925661],[119,33,77,-0.7386361104891773],[119,33,78,-0.7383476952675014],[119,33,79,-0.7380617429434443],[119,34,64,-0.7427408078800917],[119,34,65,-0.7424204465502628],[119,34,66,-0.7421024815993761],[119,34,67,-0.7417869186973944],[119,34,68,-0.7414737634209301],[119,34,69,-0.7411630212528184],[119,34,70,-0.7408546975816773],[119,34,71,-0.7405487977014705],[119,34,72,-0.7402453268110692],[119,34,73,-0.7399442900138298],[119,34,74,-0.7396456923171404],[119,34,75,-0.739349538632],[119,34,76,-0.7390558337725848],[119,34,77,-0.7387645824558142],[119,34,78,-0.7384757893009224],[119,34,79,-0.7381894588290238],[119,35,64,-0.7428743434616805],[119,35,65,-0.7425536083193126],[119,35,66,-0.7422352692714032],[119,35,67,-0.7419193319929688],[119,35,68,-0.7416058020656867],[119,35,69,-0.7412946849774702],[119,35,70,-0.7409859861220265],[119,35,71,-0.7406797107984208],[119,35,72,-0.7403758642106382],[119,35,73,-0.74007445146716],[119,35,74,-0.7397754775805119],[119,35,75,-0.7394789474668421],[119,35,76,-0.7391848659454872],[119,35,77,-0.7388932377385393],[119,35,78,-0.7386040674704166],[119,35,79,-0.7383173596674293],[119,36,64,-0.7430080513912669],[119,36,65,-0.742686943300428],[119,36,66,-0.7423682310164909],[119,36,67,-0.742051920219511],[119,36,68,-0.7417380164962177],[119,36,69,-0.7414265253395873],[119,36,70,-0.7411174521484033],[119,36,71,-0.7408108022268188],[119,36,72,-0.7405065807839191],[119,36,73,-0.7402047929332974],[119,36,74,-0.7399054436926038],[119,36,75,-0.7396085379831223],[119,36,76,-0.7393140806293377],[119,36,77,-0.7390220763585018],[119,36,78,-0.7387325298002043],[119,36,79,-0.7384454454859386],[119,37,64,-0.74314193164645],[119,37,65,-0.7428204514744456],[119,37,66,-0.7425013668187005],[119,37,67,-0.7421846833642949],[119,37,68,-0.7418704067029955],[119,37,69,-0.7415585423328287],[119,37,70,-0.7412490956576399],[119,37,71,-0.7409420719866566],[119,37,72,-0.7406374765340507],[119,37,73,-0.7403353144185143],[119,37,74,-0.7400355906628084],[119,37,75,-0.7397383101933402],[119,37,76,-0.7394434778397294],[119,37,77,-0.7391510983343749],[119,37,78,-0.7388611763120254],[119,37,79,-0.7385737163093452],[119,38,64,-0.7432759842023932],[119,38,65,-0.7429541328197615],[119,38,66,-0.7426346766596476],[119,38,67,-0.7423176214121427],[119,38,68,-0.7420029726740367],[119,38,69,-0.7416907359483917],[119,38,70,-0.7413809166441016],[119,38,71,-0.7410735200754546],[119,38,72,-0.7407685514616953],[119,38,73,-0.7404660159266021],[119,38,74,-0.7401659184980329],[119,38,75,-0.7398682641075051],[119,38,76,-0.7395730575897606],[119,38,77,-0.7392803036823324],[119,38,78,-0.7389900070251159],[119,38,79,-0.7387021721599333],[119,39,64,-0.7434102090318784],[119,39,65,-0.7430879873123848],[119,39,66,-0.7427681605185561],[119,39,67,-0.7424507343454803],[119,39,68,-0.7421357143949558],[119,39,69,-0.7418231061750671],[119,39,70,-0.7415129150997423],[119,39,71,-0.7412051464883165],[119,39,72,-0.7408998055650943],[119,39,73,-0.7405968974589254],[119,39,74,-0.7402964272027527],[119,39,75,-0.73999839973319],[119,39,76,-0.7397028198900888],[119,39,77,-0.7394096924161031],[119,39,78,-0.7391190219562618],[119,39,79,-0.7388308130575335],[119,40,64,-0.7435446061052914],[119,40,65,-0.7432220149259231],[119,40,66,-0.7429018183722429],[119,40,67,-0.7425840221443205],[119,40,68,-0.7422686318489498],[119,40,69,-0.7419556529992227],[119,40,70,-0.7416450910140878],[119,40,71,-0.7413369512179138],[119,40,72,-0.7410312388400506],[119,40,73,-0.7407279590144069],[119,40,74,-0.7404271167789964],[119,40,75,-0.7401287170755168],[119,40,76,-0.739832764748915],[119,40,77,-0.7395392645469543],[119,40,78,-0.7392482211197842],[119,40,79,-0.7389596390195061],[119,41,64,-0.7436791753906051],[119,41,65,-0.7433562156315658],[119,41,66,-0.7430356501951011],[119,41,67,-0.7427174847862483],[119,41,68,-0.742401725016782],[119,41,69,-0.7420883764047878],[119,41,70,-0.7417774443742207],[119,41,71,-0.7414689342544687],[119,41,72,-0.7411628512799142],[119,41,73,-0.7408592005895106],[119,41,74,-0.7405579872263293],[119,41,75,-0.7402592161371382],[119,41,76,-0.7399628921719676],[119,41,77,-0.739669020083676],[119,41,78,-0.739377604527521],[119,41,79,-0.739088650060725],[119,42,64,-0.7438139168534346],[119,42,65,-0.7434905893981394],[119,42,66,-0.7431696559591559],[119,42,67,-0.7428511222464748],[119,42,68,-0.7425349938768372],[119,42,69,-0.7422212763733077],[119,42,70,-0.7419099751648341],[119,42,71,-0.7416010955858098],[119,42,72,-0.7412946428756356],[119,42,73,-0.7409906221782964],[119,42,74,-0.7406890385419076],[119,42,75,-0.7403898969182945],[119,42,76,-0.7400932021625568],[119,42,77,-0.7397989590326356],[119,42,78,-0.7395071721888838],[119,42,79,-0.7392178461936317],[119,43,64,-0.7439488304570137],[119,43,65,-0.743625136192083],[119,43,66,-0.74330383563404],[119,43,67,-0.7429849344978138],[119,43,68,-0.742668438405097],[119,43,69,-0.7423543528839199],[119,43,70,-0.7420426833682084],[119,43,71,-0.7417334351973477],[119,43,72,-0.741426613615743],[119,43,73,-0.7411222237723969],[119,43,74,-0.7408202707204556],[119,43,75,-0.740520759416788],[119,43,76,-0.7402236947215504],[119,43,77,-0.7399290813977535],[119,43,78,-0.7396369241108324],[119,43,79,-0.7393472274282126],[119,44,64,-0.7440839161622175],[119,44,65,-0.7437598559774732],[119,44,66,-0.7434381891870177],[119,44,67,-0.7431189215107047],[119,44,68,-0.7428020585751642],[119,44,69,-0.7424876059133776],[119,44,70,-0.7421755689642349],[119,44,71,-0.7418659530720985],[119,44,72,-0.7415587634863647],[119,44,73,-0.74125400536104],[119,44,74,-0.7409516837542878],[119,44,75,-0.7406518036280072],[119,44,76,-0.7403543698473978],[119,44,77,-0.7400593871805266],[119,44,78,-0.7397668602978983],[119,44,79,-0.7394767937720204],[119,45,64,-0.7442191739275401],[119,45,65,-0.743894748715998],[119,45,66,-0.7435727165829602],[119,45,67,-0.7432530832531892],[119,45,68,-0.7429358543582384],[119,45,69,-0.7426210354360254],[119,45,70,-0.7423086319303903],[119,45,71,-0.7419986491906593],[119,45,72,-0.7416910924712053],[119,45,73,-0.741385966931025],[119,45,74,-0.7410832776332852],[119,45,75,-0.7407830295449018],[119,45,76,-0.7404852275361047],[119,45,77,-0.7401898763800039],[119,45,78,-0.7398969807521603],[119,45,79,-0.739606545230151],[119,46,64,-0.744354603709148],[119,46,65,-0.7440298143670142],[119,46,66,-0.743707417784401],[119,46,67,-0.7433874196909658],[119,46,68,-0.7430698257231703],[119,46,69,-0.7427546414238543],[119,46,70,-0.7424418722417937],[119,46,71,-0.7421315235312639],[119,46,72,-0.7418236005516007],[119,46,73,-0.7415181084667771],[119,46,74,-0.74121505234495],[119,46,75,-0.7409144371580384],[119,46,76,-0.7406162677812886],[119,46,77,-0.740320548992841],[119,46,78,-0.7400272854732997],[119,46,79,-0.739736481805298],[119,47,64,-0.7444902054608645],[119,47,65,-0.7441650528875292],[119,47,66,-0.7438422927515198],[119,47,67,-0.7435219307873737],[119,47,68,-0.7432039726364467],[119,47,69,-0.7428884238464858],[119,47,70,-0.7425752898711888],[119,47,71,-0.7422645760697658],[119,47,72,-0.7419562877065018],[119,47,73,-0.7416504299503321],[119,47,74,-0.7413470078743899],[119,47,75,-0.7410460264555836],[119,47,76,-0.740747490574163],[119,47,77,-0.7404514050132849],[119,47,78,-0.7401577744585838],[119,47,79,-0.7398666034977365],[119,48,64,-0.7446259791341547],[119,48,65,-0.7443004642321865],[119,48,66,-0.7439773414421265],[119,48,67,-0.7436566165033772],[119,48,68,-0.7433382950621734],[119,48,69,-0.7430223826711556],[119,48,70,-0.7427088847889282],[119,48,71,-0.7423978067796225],[119,48,72,-0.7420891539124582],[119,48,73,-0.7417829313613192],[119,48,74,-0.7414791442043008],[119,48,75,-0.7411777974232878],[119,48,76,-0.7408788959035195],[119,48,77,-0.740582444433156],[119,48,78,-0.740288447702849],[119,48,79,-0.7399969103053057],[119,49,64,-0.744761924678179],[119,49,65,-0.74443604835332],[119,49,66,-0.7441125638117159],[119,49,67,-0.7437914767976199],[119,49,68,-0.743472792962131],[119,49,69,-0.7431565178627683],[119,49,70,-0.7428426569630286],[119,49,71,-0.7425312156319503],[119,49,72,-0.7422221991436733],[119,49,73,-0.7419156126770162],[119,49,74,-0.7416114613150229],[119,49,75,-0.7413097500445402],[119,49,76,-0.741010483755784],[119,49,77,-0.7407136672419043],[119,49,78,-0.7404193051985564],[119,49,79,-0.7401274022234652],[119,50,64,-0.744898042039778],[119,50,65,-0.7445718052009378],[119,50,66,-0.7442479598134519],[119,50,67,-0.7439265116264091],[119,50,68,-0.743607466295758],[119,50,69,-0.7432908293838815],[119,50,70,-0.7429766063591547],[119,50,71,-0.742664802595508],[119,50,72,-0.7423554233719879],[119,50,73,-0.7420484738723335],[119,50,74,-0.7417439591845233],[119,50,75,-0.7414418843003528],[119,50,76,-0.7411422541150003],[119,50,77,-0.7408450734265926],[119,50,78,-0.740550346935775],[119,50,79,-0.7402580792452773],[119,51,64,-0.7450343311634563],[119,51,65,-0.7447077347227063],[119,51,66,-0.7443835293981513],[119,51,67,-0.7440617209436997],[119,51,68,-0.7437423150201352],[119,51,69,-0.7434253171946896],[119,51,70,-0.743110732940602],[119,51,71,-0.7427985676366805],[119,51,72,-0.7424888265668637],[119,51,73,-0.7421815149197972],[119,51,74,-0.7418766377883801],[119,51,75,-0.7415742001693428],[119,51,76,-0.7412742069628127],[119,51,77,-0.7409766629718791],[119,51,78,-0.7406815729021652],[119,51,79,-0.7403889413613914],[119,52,64,-0.745170791991437],[119,52,65,-0.7448438368640059],[119,52,66,-0.7445192725143385],[119,52,67,-0.7441971047011486],[119,52,68,-0.74387733909004],[119,52,69,-0.7435599812530788],[119,52,70,-0.743245036668353],[119,52,71,-0.7429325107195341],[119,52,72,-0.7426224086954387],[119,52,73,-0.7423147357896047],[119,52,74,-0.7420094970998377],[119,52,75,-0.7417066976277892],[119,52,76,-0.7414063422785215],[119,52,77,-0.7411084358600741],[119,52,78,-0.7408129830830336],[119,52,79,-0.7405199885600984],[119,53,64,-0.7453074244636383],[119,53,65,-0.7449801115679054],[119,53,66,-0.7446551891082217],[119,53,67,-0.7443326628480915],[119,53,68,-0.7440125384579229],[119,53,69,-0.7436948215146025],[119,53,70,-0.743379517501052],[119,53,71,-0.743066631805792],[119,53,72,-0.7427561697225027],[119,53,73,-0.7424481364495998],[119,53,74,-0.7421425370897818],[119,53,75,-0.741839376649607],[119,53,76,-0.7415386600390595],[119,53,77,-0.7412403920711146],[119,53,78,-0.740944577461309],[119,53,79,-0.7406512208273062],[119,54,64,-0.745444228517697],[119,54,65,-0.745116558775187],[119,54,66,-0.7447912791237167],[119,54,67,-0.7444683953315653],[119,54,68,-0.7441479130739312],[119,54,69,-0.7438298379325055],[119,54,70,-0.7435141753950294],[119,54,71,-0.7432009308548579],[119,54,72,-0.7428901096105206],[119,54,73,-0.7425817168652967],[119,54,74,-0.7422757577267631],[119,54,75,-0.7419722372063716],[119,54,76,-0.7416711602190137],[119,54,77,-0.741372531582587],[119,54,78,-0.7410763560175654],[119,54,79,-0.7407826381465632],[119,55,64,-0.7455812040889435],[119,55,65,-0.7452531784243209],[119,55,66,-0.7449275425024215],[119,55,67,-0.7446043020962847],[119,55,68,-0.7442834628858834],[119,55,69,-0.7439650304576985],[119,55,70,-0.7436490103042762],[119,55,71,-0.7433354078237914],[119,55,72,-0.7430242283196078],[119,55,73,-0.7427154769998545],[119,55,74,-0.7424091589769728],[119,55,75,-0.7421052792672933],[119,55,76,-0.7418038427906015],[119,55,77,-0.7415048543697036],[119,55,78,-0.7412083187299968],[119,55,79,-0.7409142404990336],[119,56,64,-0.7457183511104577],[119,56,65,-0.7453899704515214],[119,56,66,-0.7450639791836731],[119,56,67,-0.7447403830846968],[119,56,68,-0.7444191878393254],[119,56,69,-0.7441003990388144],[119,56,70,-0.7437840221805003],[119,56,71,-0.7434700626673628],[119,56,72,-0.7431585258075859],[119,56,73,-0.7428494168141337],[119,56,74,-0.7425427408042975],[119,56,75,-0.7422385027992731],[119,56,76,-0.7419367077237259],[119,56,77,-0.7416373604053572],[119,56,78,-0.7413404655744735],[119,56,79,-0.7410460278635521],[119,57,64,-0.7458556695130532],[119,57,65,-0.7455269347907301],[119,57,66,-0.7452005891045297],[119,57,67,-0.7448766382369651],[119,57,68,-0.744555087877514],[119,57,69,-0.7442359436221917],[119,57,70,-0.7439192109731096],[119,57,71,-0.7436048953380379],[119,57,72,-0.7432930020299658],[119,57,73,-0.7429835362666786],[119,57,74,-0.7426765031703031],[119,57,75,-0.7423719077668861],[119,57,76,-0.7420697549859592],[119,57,77,-0.7417700496601044],[119,57,78,-0.7414727965245247],[119,57,79,-0.7411780002166082],[119,58,64,-0.7459931592252593],[119,58,65,-0.7456640713735994],[119,58,66,-0.7453373721997552],[119,58,67,-0.7450130674909532],[119,58,68,-0.7446911629414005],[119,58,69,-0.7443716641518572],[119,58,70,-0.744054576629195],[119,58,71,-0.7437399057859596],[119,58,72,-0.7434276569399312],[119,58,73,-0.7431178353137011],[119,58,74,-0.7428104460342176],[119,58,75,-0.7425054941323646],[119,58,76,-0.7422029845425253],[119,58,77,-0.7419029221021491],[119,58,78,-0.7416053115513215],[119,58,79,-0.7413101575323279],[119,59,64,-0.7461308201733785],[119,59,65,-0.7458013801295488],[119,59,66,-0.7454743284018741],[119,59,67,-0.7451496707822793],[119,59,68,-0.7448274129696855],[119,59,69,-0.7445075605695823],[119,59,70,-0.7441901190935869],[119,59,71,-0.7438750939590052],[119,59,72,-0.743562490488394],[119,59,73,-0.7432523139091362],[119,59,74,-0.7429445693529871],[119,59,75,-0.7426392618556532],[119,59,76,-0.7423363963563561],[119,59,77,-0.7420359776973979],[119,59,78,-0.7417380106237329],[119,59,79,-0.7414424997825306],[119,60,64,-0.7462686522814603],[119,60,65,-0.7459388609857395],[119,60,66,-0.7456114576411477],[119,60,67,-0.745286448044293],[119,60,68,-0.7449638378987951],[119,60,69,-0.7446436328148582],[119,60,70,-0.7443258383088293],[119,60,71,-0.7440104598027604],[119,60,72,-0.7436975026239696],[119,60,73,-0.7433869720046169],[119,60,74,-0.7430788730812506],[119,60,75,-0.7427732108943852],[119,60,76,-0.742469990388066],[119,60,77,-0.7421692164094349],[119,60,78,-0.7418708937083007],[119,60,79,-0.7415750269367034],[119,61,64,-0.7464066554713259],[119,61,65,-0.746076513867098],[119,61,66,-0.7457487598455967],[119,61,67,-0.7454233992080979],[119,61,68,-0.7451004376629041],[119,61,69,-0.744779880824919],[119,61,70,-0.7444617342152045],[119,61,71,-0.7441460032605433],[119,61,72,-0.7438326932930005],[119,61,73,-0.7435218095494984],[119,61,74,-0.7432133571713635],[119,61,75,-0.7429073412039044],[119,61,76,-0.7426037665959759],[119,61,77,-0.7423026381995455],[119,61,78,-0.7420039607692627],[119,61,79,-0.7417077389620244],[119,62,64,-0.7465448296625432],[119,62,65,-0.7462143386962921],[119,62,66,-0.7458862349409775],[119,62,67,-0.745560524202527],[119,62,68,-0.7452372121939113],[119,62,69,-0.7449163045347172],[119,62,70,-0.7445978067507071],[119,62,71,-0.7442817242733795],[119,62,72,-0.7439680624395311],[119,62,73,-0.7436568264908321],[119,62,74,-0.7433480215733729],[119,62,75,-0.7430416527372412],[119,62,76,-0.7427377249360878],[119,62,77,-0.742436243026691],[119,62,78,-0.7421372117685278],[119,62,79,-0.7418406358233377],[119,63,64,-0.7466831747724822],[119,63,65,-0.746352335393786],[119,63,66,-0.7460238828508372],[119,63,67,-0.7456978229541991],[119,63,68,-0.7453741614214946],[119,63,69,-0.7450529038769798],[119,63,70,-0.7447340558511009],[119,63,71,-0.7444176227800577],[119,63,72,-0.7441036100053638],[119,63,73,-0.7437920227734224],[119,63,74,-0.7434828662350729],[119,63,75,-0.7431761454451682],[119,63,76,-0.7428718653621402],[119,63,77,-0.7425700308475646],[119,63,78,-0.7422706466657315],[119,63,79,-0.7419737174832095],[119,64,64,-0.7468216907162994],[119,64,65,-0.7464905038778245],[119,64,66,-0.746161703496497],[119,64,67,-0.7458352953875009],[119,64,68,-0.7455112852730958],[119,64,69,-0.7451896787821908],[119,64,70,-0.7448704814499015],[119,64,71,-0.7445536987171134],[119,64,72,-0.7442393359300421],[119,64,73,-0.743927398339809],[119,64,74,-0.743617891101988],[119,64,75,-0.7433108192761828],[119,64,76,-0.743006187825592],[119,64,77,-0.7427040016165743],[119,64,78,-0.7424042654182192],[119,64,79,-0.7421069839019103],[119,65,64,-0.7469603774069199],[119,65,65,-0.7466288440644148],[119,65,66,-0.7462996967970359],[119,65,67,-0.7459729414245715],[119,65,68,-0.7456485836739023],[119,65,69,-0.7453266291785748],[119,65,70,-0.7450070834783591],[119,65,71,-0.744689952018811],[119,65,72,-0.7443752401508332],[119,65,73,-0.7440629531302504],[119,65,74,-0.7437530961173562],[119,65,75,-0.7434456741764907],[119,65,76,-0.7431406922756046],[119,65,77,-0.7428381552858259],[119,65,78,-0.7425380679810288],[119,65,79,-0.7422404350373987],[119,66,64,-0.7470992347550937],[119,66,65,-0.7467673558673841],[119,66,66,-0.7464378626693464],[119,66,67,-0.7461107609853573],[119,66,68,-0.7457860565469034],[119,66,69,-0.7454637549921531],[119,66,70,-0.7451438618655152],[119,66,71,-0.7448263826172008],[119,66,72,-0.7445113226027844],[119,66,73,-0.7441986870827795],[119,66,74,-0.7438884812221845],[119,66,75,-0.7435807100900611],[119,66,76,-0.7432753786590984],[119,66,77,-0.7429724918051785],[119,66,78,-0.7426720543069467],[119,66,79,-0.7423740708453761],[119,67,64,-0.7472382626693714],[119,67,65,-0.7469060391983535],[119,67,66,-0.7465762010281092],[119,67,67,-0.7462487539875879],[119,67,68,-0.7459237038128659],[119,67,69,-0.7456010561467181],[119,67,70,-0.7452808165381768],[119,67,71,-0.7449629904420929],[119,67,72,-0.744647583218698],[119,67,73,-0.7443346001331788],[119,67,74,-0.7440240463552242],[119,67,75,-0.7437159269586028],[119,67,76,-0.7434102469207271],[119,67,77,-0.7431070111222197],[119,67,78,-0.7428062243464827],[119,67,79,-0.7425078912792624],[119,68,64,-0.7473774610561276],[119,68,65,-0.7470448939667624],[119,68,66,-0.7467147117858173],[119,68,67,-0.7463869203467989],[119,68,68,-0.746061525390357],[119,68,69,-0.7457385325638575],[119,68,70,-0.7454179474209406],[119,68,71,-0.7450997754210817],[119,68,72,-0.7447840219291545],[119,68,73,-0.7444706922150037],[119,68,74,-0.7441597914529942],[119,68,75,-0.7438513247215861],[119,68,76,-0.7435452970029016],[119,68,77,-0.7432417131822888],[119,68,78,-0.7429405780478928],[119,68,79,-0.7426418962902192],[119,69,64,-0.7475168298195352],[119,69,65,-0.7471839200798429],[119,69,66,-0.746853394852751],[119,69,67,-0.7465252599763073],[119,69,68,-0.7461995211957194],[119,69,69,-0.7458761841629287],[119,69,70,-0.7455552544361672],[119,69,71,-0.7452367374795204],[119,69,72,-0.7449206386624875],[119,69,73,-0.7446069632595574],[119,69,74,-0.7442957164497551],[119,69,75,-0.7439869033162188],[119,69,76,-0.7436805288457642],[119,69,77,-0.7433765979284517],[119,69,78,-0.7430751153571544],[119,69,79,-0.7427760858271236],[119,70,64,-0.7476563688616225],[119,70,65,-0.7473231174426762],[119,70,66,-0.7469922501370337],[119,70,67,-0.7466637727872676],[119,70,68,-0.7463376911431279],[119,70,69,-0.746014010861115],[119,70,70,-0.7456927375040381],[119,70,71,-0.7453738765405762],[119,70,72,-0.7450574333448401],[119,70,73,-0.7447434131959467],[119,70,74,-0.7444318212775667],[119,70,75,-0.7441226626775008],[119,70,76,-0.7438159423872451],[119,70,77,-0.7435116653015565],[119,70,78,-0.7432098362180226],[119,70,79,-0.7429104598366255],[119,71,64,-0.7477960780822559],[119,71,65,-0.747462485958176],[119,71,66,-0.7471312775446152],[119,71,67,-0.7468024586886549],[119,71,68,-0.7464760351445714],[119,71,69,-0.7461520125734091],[119,71,70,-0.7458303965425376],[119,71,71,-0.7455111925252149],[119,71,72,-0.7451944059001474],[119,71,73,-0.7448800419510653],[119,71,74,-0.7445681058662695],[119,71,75,-0.7442586027382092],[119,71,76,-0.7439515375630452],[119,71,77,-0.7436469152402171],[119,71,78,-0.7433447405720119],[119,71,79,-0.7430450182631294],[119,72,64,-0.7479359573791231],[119,72,65,-0.7476020255270708],[119,72,66,-0.7472704769792542],[119,72,67,-0.7469413175872475],[119,72,68,-0.746614553109837],[119,72,69,-0.7462901892125949],[119,72,70,-0.7459682314674365],[119,72,71,-0.7456486853521824],[119,72,72,-0.7453315562501194],[119,72,73,-0.7450168494495759],[119,72,74,-0.7447045701434682],[119,72,75,-0.7443947234288785],[119,72,76,-0.744087314306618],[119,72,77,-0.7437823476807943],[119,72,78,-0.74347982835838],[119,72,79,-0.7431797610487773],[119,73,64,-0.7480760066477887],[119,73,65,-0.7477417360479606],[119,73,66,-0.7474098483425754],[119,73,67,-0.7470803493876834],[119,73,68,-0.7467532449465654],[119,73,69,-0.7464285406893052],[119,73,70,-0.7461062421923479],[119,73,71,-0.7457863549380612],[119,73,72,-0.7454688843142974],[119,73,73,-0.7451538356139672],[119,73,74,-0.7448412140345877],[119,73,75,-0.7445310246778585],[119,73,76,-0.7442232725492269],[119,73,77,-0.743917962557454],[119,73,78,-0.7436150995141829],[119,73,79,-0.7433146881335045],[119,74,64,-0.7482162257816702],[119,74,65,-0.7478816174172921],[119,74,66,-0.7475493915340434],[119,74,67,-0.7472195539924351],[119,74,68,-0.7468921105602256],[119,74,69,-0.7465670669119949],[119,74,70,-0.7462444286287018],[119,74,71,-0.7459242011972457],[119,74,72,-0.7456063900100283],[119,74,73,-0.7452910003645281],[119,74,74,-0.744978037462847],[119,74,75,-0.744667506411288],[119,74,76,-0.7443594122199191],[119,74,77,-0.74405375980214],[119,74,78,-0.7437505539742504],[119,74,79,-0.7434497994550151],[119,75,64,-0.7483566146720607],[119,75,65,-0.7480216695293813],[119,75,66,-0.7476891064509874],[119,75,67,-0.7473589313018332],[119,75,68,-0.7470311498541393],[119,75,69,-0.7467057677869657],[119,75,70,-0.746382790685769],[119,75,71,-0.7460622240419648],[119,75,72,-0.7457440732524886],[119,75,73,-0.7454283436193709],[119,75,74,-0.7451150403492841],[119,75,75,-0.7448041685531188],[119,75,76,-0.7444957332455491],[119,75,77,-0.7441897393445984],[119,75,78,-0.7438861916712085],[119,75,79,-0.7435850949488042],[119,76,64,-0.7484971732081038],[119,76,65,-0.7481618922763893],[119,76,66,-0.7478289929885743],[119,76,67,-0.7474984812140407],[119,76,68,-0.7471703627294548],[119,76,69,-0.7468446432183401],[119,76,70,-0.7465213282706354],[119,76,71,-0.746200423382257],[119,76,72,-0.7458819339546585],[119,76,73,-0.745565865294407],[119,76,74,-0.7452522226127295],[119,76,75,-0.7449410110250898],[119,76,76,-0.7446322355507531],[119,76,77,-0.7443259011123516],[119,76,78,-0.7440220125354547],[119,76,79,-0.7437205745481326],[119,77,64,-0.7486379012768507],[119,77,65,-0.748302285548378],[119,77,66,-0.7479690510398669],[119,77,67,-0.74763820362511],[119,77,68,-0.7473097490852033],[119,77,69,-0.746983693108118],[119,77,70,-0.746660041288259],[119,77,71,-0.7463387991260269],[119,77,72,-0.7460199720273782],[119,77,73,-0.7457035653034014],[119,77,74,-0.7453895841698627],[119,77,75,-0.7450780337467835],[119,77,76,-0.7447689190580054],[119,77,77,-0.744462245030755],[119,77,78,-0.744158016495214],[119,77,79,-0.7438562381840835],[119,78,64,-0.7487787987632422],[119,78,65,-0.7484428492332933],[119,78,66,-0.7481092804958054],[119,78,67,-0.7477780984289655],[119,78,68,-0.7474493088182825],[119,78,69,-0.7471229173561595],[119,78,70,-0.7467989296414517],[119,78,71,-0.7464773511790276],[119,78,72,-0.7461581873793315],[119,78,73,-0.745841443557957],[119,78,74,-0.7455271249351948],[119,78,75,-0.7452152366356086],[119,78,76,-0.7449057836876013],[119,78,77,-0.7445987710229788],[119,78,78,-0.7442942034765206],[119,78,79,-0.7439920857855449],[119,79,64,-0.7489198655500919],[119,79,65,-0.7485835832169478],[119,79,66,-0.7482496812451908],[119,79,67,-0.7479181655173859],[119,79,68,-0.7475890418234388],[119,79,69,-0.7472623158601679],[119,79,70,-0.7469379932308621],[119,79,71,-0.7466160794448433],[119,79,72,-0.7462965799170268],[119,79,73,-0.7459794999674964],[119,79,74,-0.7456648448210511],[119,79,75,-0.7453526196067826],[119,79,76,-0.745042829357639],[119,79,77,-0.7447354790099912],[119,79,78,-0.7444305734032022],[119,79,79,-0.7441281172791911],[119,80,64,-0.7490611015181432],[119,80,65,-0.7487244873830773],[119,80,66,-0.7483902531747411],[119,80,67,-0.7480584047800611],[119,80,68,-0.7477289479933233],[119,80,69,-0.7474018885157448],[119,80,70,-0.7470772319550328],[119,80,71,-0.7467549838249461],[119,80,72,-0.746435149544855],[119,80,73,-0.7461177344393182],[119,80,74,-0.7458027437376278],[119,80,75,-0.7454901825733874],[119,80,76,-0.7451800559840762],[119,80,77,-0.7448723689106146],[119,80,78,-0.7445671261969338],[119,80,79,-0.7442643325895406],[119,81,64,-0.7492025065460425],[119,81,65,-0.7488655616133152],[119,81,66,-0.7485309961690663],[119,81,67,-0.7481988161045671],[119,81,68,-0.7478690272184672],[119,81,69,-0.7475416352163665],[119,81,70,-0.7472166457103743],[119,81,71,-0.7468940642186696],[119,81,72,-0.7465738961650631],[119,81,73,-0.7462561468785719],[119,81,74,-0.7459408215929658],[119,81,75,-0.7456279254463452],[119,81,76,-0.7453174634807048],[119,81,77,-0.7450094406414995],[119,81,78,-0.7447038617772146],[119,81,79,-0.744400731638929],[119,82,64,-0.7493440805103645],[119,82,65,-0.7490068057872165],[119,82,66,-0.7486719101106913],[119,82,67,-0.7483393993763884],[119,82,68,-0.7480092793873044],[119,82,69,-0.7476815558534062],[119,82,70,-0.747356234391188],[119,82,71,-0.7470333205232338],[119,82,72,-0.7467128196777781],[119,82,73,-0.7463947371882811],[119,82,74,-0.7460790782929747],[119,82,75,-0.7457658481344406],[119,82,76,-0.7454550517591737],[119,82,77,-0.745146694117149],[119,82,78,-0.7448407800613899],[119,82,79,-0.7445373143475331],[119,83,64,-0.7494858232855857],[119,83,65,-0.7491482197822319],[119,83,66,-0.7488129948800311],[119,83,67,-0.7484801544788938],[119,83,68,-0.7481497043861475],[119,83,69,-0.7478216503161089],[119,83,70,-0.7474959978896416],[119,83,71,-0.7471727526337182],[119,83,72,-0.7468519199809812],[119,83,73,-0.7465335052693178],[119,83,74,-0.7462175137414067],[119,83,75,-0.745903950544295],[119,83,76,-0.7455928207289636],[119,83,77,-0.7452841292498911],[119,83,78,-0.7449778809646249],[119,83,79,-0.7446740806333451],[119,84,64,-0.7496277347441416],[119,84,65,-0.7492898034737651],[119,84,66,-0.7489542503554468],[119,84,67,-0.7486210812933922],[119,84,68,-0.7482903020992424],[119,84,69,-0.747961918491648],[119,84,70,-0.747635936095825],[119,84,71,-0.747312360443119],[119,84,72,-0.7469911969705642],[119,84,73,-0.746672451020459],[119,84,74,-0.7463561278399132],[119,84,75,-0.7460422325804246],[119,84,76,-0.7457307702974431],[119,84,77,-0.7454217459499372],[119,84,78,-0.7451151643999628],[119,84,79,-0.7448110304122283],[119,85,64,-0.7497698147564087],[119,85,65,-0.7494315567351544],[119,85,66,-0.7490956764132289],[119,85,67,-0.7487621796991155],[119,85,68,-0.7484310724087526],[119,85,69,-0.7481023602651076],[119,85,70,-0.7477760488977334],[119,85,71,-0.7474521438423315],[119,85,72,-0.747130650540312],[119,85,73,-0.7468115743383692],[119,85,74,-0.7464949204880278],[119,85,75,-0.7461806941452204],[119,85,76,-0.7458689003698513],[119,85,77,-0.7455595441253633],[119,85,78,-0.7452526302783059],[119,85,79,-0.7449481635979007],[119,86,64,-0.7499120631906877],[119,86,65,-0.7495734794376561],[119,86,66,-0.7492372729275792],[119,86,67,-0.7489034495732011],[119,86,68,-0.7485720151947406],[119,86,69,-0.7482429755194654],[119,86,70,-0.7479163361812488],[119,86,71,-0.7475921027201322],[119,86,72,-0.7472702805818856],[119,86,73,-0.7469508751175827],[119,86,74,-0.7466338915831477],[119,86,75,-0.7463193351389323],[119,86,76,-0.7460072108492802],[119,86,77,-0.7456975236820925],[119,86,78,-0.7453902785083978],[119,86,79,-0.7450854801019158],[119,87,64,-0.75005447991326],[119,87,65,-0.7497155714505012],[119,87,66,-0.7493790397706681],[119,87,67,-0.7490448907907483],[119,87,68,-0.7487131303352248],[119,87,69,-0.7483837641356489],[119,87,70,-0.7480567978301976],[119,87,71,-0.747732236963236],[119,87,72,-0.7474100869848778],[119,87,73,-0.7470903532505602],[119,87,74,-0.7467730410205909],[119,87,75,-0.7464581554597255],[119,87,76,-0.746145701636731],[119,87,77,-0.745835684523952],[119,87,78,-0.7455281089968806],[119,87,79,-0.7452229798337202],[119,88,64,-0.7501970647883707],[119,88,65,-0.7498578326408775],[119,88,66,-0.7495209768126163],[119,88,67,-0.7491865032248014],[119,88,68,-0.7488544177061626],[119,88,69,-0.7485247259925183],[119,88,70,-0.7481974337263329],[119,88,71,-0.7478725464562784],[119,88,72,-0.7475500696367963],[119,88,73,-0.7472300086276712],[119,88,74,-0.7469123686935788],[119,88,75,-0.7465971550036622],[119,88,76,-0.7462843726310966],[119,88,77,-0.7459740265526549],[119,88,78,-0.7456661216482773],[119,88,79,-0.7453606627006356],[119,89,64,-0.7503398176782099],[119,89,65,-0.7500002628739123],[119,89,66,-0.7496630839214781],[119,89,67,-0.7493282867463313],[119,89,68,-0.748995877181432],[119,89,69,-0.7486658609668486],[119,89,70,-0.748338243749316],[119,89,71,-0.7480130310817976],[119,89,72,-0.7476902284230456],[119,89,73,-0.7473698411371764],[119,89,74,-0.7470518744932175],[119,89,75,-0.7467363336646841],[119,89,76,-0.7464232237291437],[119,89,77,-0.7461125496677821],[119,89,78,-0.7458043163649726],[119,89,79,-0.7454985286078405],[119,90,64,-0.7504827384429709],[119,90,65,-0.7501428620127293],[119,90,66,-0.749805360963298],[119,90,67,-0.7494702412242934],[119,90,68,-0.7491375086328889],[119,90,69,-0.7488071689333862],[119,90,70,-0.7484792277767746],[119,90,71,-0.7481536907202915],[119,90,72,-0.747830563226984],[119,90,73,-0.7475098506652844],[119,90,74,-0.7471915583085555],[119,90,75,-0.7468756913346691],[119,90,76,-0.7465622548255697],[119,90,77,-0.7462512537668401],[119,90,78,-0.7459426930472715],[119,90,79,-0.7456365774584275],[119,91,64,-0.7506258269408238],[119,91,65,-0.7502856299184226],[119,91,66,-0.7499478078020843],[119,91,67,-0.7496123665256007],[119,91,68,-0.7492793119303409],[119,91,69,-0.7489486497648237],[119,91,70,-0.7486203856842755],[119,91,71,-0.7482945252501916],[119,91,72,-0.7479710739298979],[119,91,73,-0.7476500370961254],[119,91,74,-0.7473314200265574],[119,91,75,-0.7470152279034059],[119,91,76,-0.7467014658129764],[119,91,77,-0.7463901387452337],[119,91,78,-0.7460812515933717],[119,91,79,-0.7457748091533767],[119,92,64,-0.7507690830279392],[119,92,65,-0.7504285664500812],[119,92,66,-0.750090424299834],[119,92,67,-0.7497546625151481],[119,92,68,-0.7494212869415715],[119,92,69,-0.7490903033318229],[119,92,70,-0.7487617173453491],[119,92,71,-0.7484355345478869],[119,92,72,-0.7481117604110245],[119,92,73,-0.7477904003117757],[119,92,74,-0.7474714595321275],[119,92,75,-0.7471549432586165],[119,92,76,-0.7468408565818939],[119,92,77,-0.7465292044962908],[119,92,78,-0.7462199918993877],[119,92,79,-0.7459132235915795],[119,93,64,-0.7509125065584626],[119,93,65,-0.7505716714647613],[119,93,66,-0.7502332103165055],[119,93,67,-0.7498971290557862],[119,93,68,-0.7495634335323136],[119,93,69,-0.7492321295029891],[119,93,70,-0.7489032226314631],[119,93,71,-0.7485767184876978],[119,93,72,-0.7482526225475266],[119,93,73,-0.74793094019223],[119,93,74,-0.7476116767080829],[119,93,75,-0.7472948372859307],[119,93,76,-0.746980427020754],[119,93,77,-0.7466684509112345],[119,93,78,-0.7463589138593247],[119,93,79,-0.7460518206698121],[119,94,64,-0.751056097384571],[119,94,65,-0.7507149448175456],[119,94,66,-0.7503761657100764],[119,94,67,-0.7500397660083785],[119,94,68,-0.7497057515663066],[119,94,69,-0.7493741281449278],[119,94,70,-0.7490449014120799],[119,94,71,-0.7487180769419327],[119,94,72,-0.7483936602145491],[119,94,73,-0.7480716566154603],[119,94,74,-0.7477520714352122],[119,94,75,-0.747434909868943],[119,94,76,-0.7471201770159472],[119,94,77,-0.7468078778792417],[119,94,78,-0.7464980173651352],[119,94,79,-0.7461906002827925],[119,95,64,-0.7511998553564562],[119,95,65,-0.750858386361524],[119,95,66,-0.7505192903365262],[119,95,67,-0.7501825732317836],[119,95,68,-0.7498482409052787],[119,95,69,-0.7495162991222276],[119,95,70,-0.7491867535546377],[119,95,71,-0.7488596097808706],[119,95,72,-0.7485348732852017],[119,95,73,-0.7482125494573962],[119,95,74,-0.7478926435922555],[119,95,75,-0.7475751608891943],[119,95,76,-0.7472601064518052],[119,95,77,-0.7469474852874245],[119,95,78,-0.7466373023067012],[119,95,79,-0.7463295623231627],[119,96,64,-0.7513437803223051],[119,96,65,-0.7510019959477765],[119,96,66,-0.7506625840498171],[119,96,67,-0.7503255505828372],[119,96,68,-0.7499909014089294],[119,96,69,-0.7496586422974414],[119,96,70,-0.7493287789245339],[119,96,71,-0.7490013168727429],[119,96,72,-0.7486762616305401],[119,96,73,-0.7483536185919084],[119,96,74,-0.748033393055888],[119,96,75,-0.7477155902261543],[119,96,76,-0.7474002152105822],[119,96,77,-0.7470872730208112],[119,96,78,-0.7467767685718159],[119,96,79,-0.74646870668147],[119,97,64,-0.7514878721283594],[119,97,65,-0.7511457734254299],[119,97,66,-0.7508060467019527],[119,97,67,-0.7504686979164096],[119,97,68,-0.7501337329349858],[119,97,69,-0.7498011575311441],[119,97,70,-0.749470977385181],[119,97,71,-0.7491431980837906],[119,97,72,-0.7488178251196238],[119,97,73,-0.7484948638908647],[119,97,74,-0.7481743197007764],[119,97,75,-0.7478561977572786],[119,97,76,-0.7475405031725123],[119,97,77,-0.747227240962405],[119,97,78,-0.7469164160462408],[119,97,79,-0.7466080332462246],[119,98,64,-0.7516321306188875],[119,98,65,-0.751289718641632],[119,98,66,-0.7509496781429507],[119,98,67,-0.7506120150853787],[119,98,68,-0.7502767353391773],[119,98,69,-0.7499438446819062],[119,98,70,-0.7496133487979815],[119,98,71,-0.7492852532782379],[119,98,72,-0.7489595636194893],[119,98,73,-0.7486362852241044],[119,98,74,-0.7483154233995525],[119,98,75,-0.7479969833579818],[119,98,76,-0.7476809702157832],[119,98,77,-0.7473673889931565],[119,98,78,-0.7470562446136795],[119,98,79,-0.7467475419038729],[119,99,64,-0.751776555636209],[119,99,65,-0.7514338314415758],[119,99,66,-0.7510934782208674],[119,99,67,-0.7507555019406552],[119,99,68,-0.7504199084752587],[119,99,69,-0.7500867036063179],[119,99,70,-0.7497558930223509],[119,99,71,-0.7494274823183165],[119,99,72,-0.7491014769951745],[119,99,73,-0.7487778824594615],[119,99,74,-0.7484567040228371],[119,99,75,-0.7481379469016616],[119,99,76,-0.7478216162165597],[119,99,77,-0.7475077169919875],[119,99,78,-0.7471962541558009],[119,99,79,-0.746887232538821],[119,100,64,-0.7519211470206689],[119,100,65,-0.7515781116684723],[119,100,66,-0.7512374467817708],[119,100,67,-0.7508991583311548],[119,100,68,-0.7505632521949844],[119,100,69,-0.7502297341589622],[119,100,70,-0.7498986099156915],[119,100,71,-0.749569885064238],[119,100,72,-0.7492435651096911],[119,100,73,-0.7489196554627385],[119,100,74,-0.7485981614392135],[119,100,75,-0.7482790882596722],[119,100,76,-0.747962441048957],[119,100,77,-0.7476482248357645],[119,100,78,-0.7473364445522132],[119,100,79,-0.7470271050334084],[119,101,64,-0.7520659046106946],[119,101,65,-0.7517225591636088],[119,101,66,-0.751381583669799],[119,101,67,-0.7510429841038568],[119,101,68,-0.7507067663481652],[119,101,69,-0.7503729361924726],[119,101,70,-0.7500414993334499],[119,101,71,-0.7497124613742528],[119,101,72,-0.7493858278240834],[119,101,73,-0.749061604097764],[119,101,74,-0.7487397955152848],[119,101,75,-0.7484204073013814],[119,101,76,-0.7481034445850985],[119,101,77,-0.7477889123993563],[119,101,78,-0.7474768156805203],[119,101,79,-0.7471671592679648],[119,102,64,-0.7522108282427774],[119,102,65,-0.75186717376633],[119,102,66,-0.7515258887271412],[119,102,67,-0.7511869791037851],[119,102,68,-0.7508504507826509],[119,102,69,-0.7505163095575149],[119,102,70,-0.7501845611290985],[119,102,71,-0.7498552111046308],[119,102,72,-0.749528264997409],[119,102,73,-0.7492037282263736],[119,102,74,-0.7488816061156555],[119,102,75,-0.748561903894153],[119,102,76,-0.7482446266950968],[119,102,77,-0.7479297795556152],[119,102,78,-0.7476173674163042],[119,102,79,-0.7473073951207924],[119,103,64,-0.7523559177514557],[119,103,65,-0.7520119553140213],[119,103,66,-0.7516703617940197],[119,103,67,-0.7513311431739906],[119,103,68,-0.7509943053443113],[119,103,69,-0.7506598541027688],[119,103,70,-0.7503277951541178],[119,103,71,-0.7499981341096433],[119,103,72,-0.749670876486721],[119,103,73,-0.7493460277083928],[119,103,74,-0.7490235931029133],[119,103,75,-0.7487035779033278],[119,103,76,-0.7483859872470361],[119,103,77,-0.7480708261753589],[119,103,78,-0.7477580996331071],[119,103,79,-0.7474478124681466],[119,104,64,-0.7525011729693716],[119,104,65,-0.7521569036421647],[119,104,66,-0.7518150027087478],[119,104,67,-0.7514754761556088],[119,104,68,-0.751138329877095],[119,104,69,-0.7508035696749864],[119,104,70,-0.7504712012580539],[119,104,71,-0.7501412302416213],[119,104,72,-0.7498136621471257],[119,104,73,-0.7494885024016935],[119,104,74,-0.749165756337687],[119,104,75,-0.7488454291922811],[119,104,76,-0.7485275261070294],[119,104,77,-0.7482120521274279],[119,104,78,-0.7478990122024871],[119,104,79,-0.7475884111842945],[119,105,64,-0.7526465937272443],[119,105,65,-0.7523020185843133],[119,105,66,-0.7519598113077038],[119,105,67,-0.7516199778878331],[119,105,68,-0.7512825242230012],[119,105,69,-0.7509474561189642],[119,105,70,-0.7506147792884912],[119,105,71,-0.7502844993509277],[119,105,72,-0.7499566218317554],[119,105,73,-0.7496311521621682],[119,105,74,-0.7493080956786191],[119,105,75,-0.7489874576223969],[119,105,76,-0.7486692431391914],[119,105,77,-0.7483534572786591],[119,105,78,-0.7480401049939931],[119,105,79,-0.7477291911414874],[119,106,64,-0.7527921798538952],[119,106,65,-0.7524472999721155],[119,106,66,-0.7521047874253535],[119,106,67,-0.7517646482079383],[119,106,68,-0.7514268882221052],[119,106,69,-0.751091513277568],[119,106,70,-0.7507585290910771],[119,106,71,-0.7504279412859822],[119,106,72,-0.7500997553917927],[119,106,73,-0.7497739768437531],[119,106,74,-0.7494506109823902],[119,106,75,-0.7491296630530901],[119,106,76,-0.7488111382056629],[119,106,77,-0.7484950414939089],[119,106,78,-0.748181377875188],[119,106,79,-0.7478701522099847],[119,107,64,-0.7529379311762201],[119,107,65,-0.7525927476352874],[119,107,66,-0.7522499308942246],[119,107,67,-0.7519094869512549],[119,107,68,-0.7515714217125306],[119,107,69,-0.7512357409917056],[119,107,70,-0.7509024505094947],[119,107,71,-0.750571555893234],[119,107,72,-0.7502430626764436],[119,107,73,-0.7499169762984015],[119,107,74,-0.7495933021036918],[119,107,75,-0.749272045341781],[119,107,76,-0.7489532111665834],[119,107,77,-0.7486368046360264],[119,107,78,-0.7483228307116212],[119,107,79,-0.7480112942580265],[119,108,64,-0.7530838475192475],[119,108,65,-0.7527383614016713],[119,108,66,-0.7523952415449644],[119,108,67,-0.7520544939512259],[119,108,68,-0.7517161245305073],[119,108,69,-0.7513801391003854],[119,108,70,-0.7510465433855207],[119,108,71,-0.7507153430172195],[119,108,72,-0.7503865435329947],[119,108,73,-0.7500601503761415],[119,108,74,-0.7497361688952838],[119,108,75,-0.7494146043439525],[119,108,76,-0.7490954618801489],[119,108,77,-0.7487787465659118],[119,108,78,-0.7484644633668871],[119,108,79,-0.7481526171518921],[119,109,64,-0.7532299287061202],[119,109,65,-0.7528841410972171],[119,109,66,-0.7525407192063214],[119,109,67,-0.7521996690393892],[119,109,68,-0.7518609965103535],[119,109,69,-0.7515247074406965],[119,109,70,-0.7511908075590072],[119,109,71,-0.7508593025005441],[119,109,72,-0.750530197806796],[119,109,73,-0.7502034989250578],[119,109,74,-0.749879211207977],[119,109,75,-0.7495573399131313],[119,109,76,-0.7492378902025933],[119,109,77,-0.7489208671424968],[119,109,78,-0.748606275702606],[119,109,79,-0.7482941207558806],[119,110,64,-0.7533761745580771],[119,110,65,-0.7530300865459646],[119,110,66,-0.7526863637051261],[119,110,67,-0.7523450120453583],[119,110,68,-0.7520060374844572],[119,110,69,-0.751669445847792],[119,110,70,-0.7513352428678629],[119,110,71,-0.7510034341838634],[119,110,72,-0.7506740253412407],[119,110,73,-0.7503470217912726],[119,110,74,-0.7500224288906129],[119,110,75,-0.7497002519008698],[119,110,76,-0.7493804959881704],[119,110,77,-0.7490631662227267],[119,110,78,-0.7487482675784054],[119,110,79,-0.7484358049322928],[119,111,64,-0.7535225848945113],[119,111,65,-0.7531761975700999],[119,111,66,-0.7528321748663507],[119,111,67,-0.7524905227968812],[119,111,68,-0.7521512472833334],[119,111,69,-0.7518143541549457],[119,111,70,-0.7514798491481114],[119,111,71,-0.7511477379059415],[119,111,72,-0.7508180259778248],[119,111,73,-0.7504907188190041],[119,111,74,-0.7501658217901231],[119,111,75,-0.7498433401568037],[119,111,76,-0.7495232790892106],[119,111,77,-0.7492056436616178],[119,111,78,-0.7488904388519784],[119,111,79,-0.7485776695414887],[119,112,64,-0.7536691595329427],[119,112,65,-0.7533224739899305],[119,112,66,-0.7529781525130803],[119,112,67,-0.7526362011198131],[119,112,68,-0.7522966257355982],[119,112,69,-0.7519594321935252],[119,112,70,-0.7516246262338636],[119,112,71,-0.7512922135036236],[119,112,72,-0.7509621995561184],[119,112,73,-0.7506345898505391],[119,112,74,-0.7503093897515016],[119,112,75,-0.749986604528625],[119,112,76,-0.7496662393560948],[119,112,77,-0.7493482993122307],[119,112,78,-0.7490327893790556],[119,112,79,-0.7487197144418604],[119,113,64,-0.7538158982890426],[119,113,65,-0.7534689156239079],[119,113,66,-0.7531242964665386],[119,113,67,-0.7527820468381405],[119,113,68,-0.7524421726679922],[119,113,69,-0.7521046797930172],[119,113,70,-0.7517695739573423],[119,113,71,-0.7514368608118606],[119,113,72,-0.7511065459137913],[119,113,73,-0.7507786347262569],[119,113,74,-0.7504531326178288],[119,113,75,-0.7501300448621057],[119,113,76,-0.7498093766372779],[119,113,77,-0.7494911330256939],[119,113,78,-0.7491753190134303],[119,113,79,-0.7488619394898557],[119,114,64,-0.7539628009766066],[119,114,65,-0.7536155222886012],[119,114,66,-0.7532706065460593],[119,114,67,-0.7529280597739536],[119,114,68,-0.7525878879053536],[119,114,69,-0.7522500967809983],[119,114,70,-0.7519146921488549],[119,114,71,-0.7515816796636807],[119,114,72,-0.7512510648865847],[119,114,73,-0.7509228532846024],[119,114,74,-0.7505970502302438],[119,114,75,-0.7502736610010707],[119,114,76,-0.7499526907792613],[119,114,77,-0.7496341446511764],[119,114,78,-0.7493180276069293],[119,114,79,-0.7490043445399512],[119,115,64,-0.7541098674076127],[119,115,65,-0.7537622937987551],[119,115,66,-0.7534170825691455],[119,115,67,-0.7530742397475051],[119,115,68,-0.7527337712706759],[119,115,69,-0.7523956829831949],[119,115,70,-0.7520599806368511],[119,115,71,-0.751726669890249],[119,115,72,-0.7513957563083691],[119,115,73,-0.7510672453621434],[119,115,74,-0.7507411424280033],[119,115,75,-0.7504174527874562],[119,115,76,-0.7500961816266516],[119,115,77,-0.7497773340359457],[119,115,78,-0.749460915009473],[119,115,79,-0.74914692944471],[119,116,64,-0.7542570973922025],[119,116,65,-0.7539092299672715],[119,116,66,-0.7535637243514508],[119,116,67,-0.7532205865771915],[119,116,68,-0.7528798225850903],[119,116,69,-0.7525414382234636],[119,116,70,-0.752205439247905],[119,116,71,-0.7518718313208478],[119,116,72,-0.7515406200111268],[119,116,73,-0.751211810793553],[119,116,74,-0.750885409048462],[119,116,75,-0.7505614200612902],[119,116,76,-0.7502398490221407],[119,116,77,-0.7499207010253495],[119,116,78,-0.7496039810690548],[119,116,79,-0.7492896940547629],[119,117,64,-0.7544044907386631],[119,117,65,-0.7540563306051906],[119,117,66,-0.7537105317067602],[119,117,67,-0.7533671000795341],[119,117,68,-0.7530260416678458],[119,117,69,-0.752687362323773],[119,117,70,-0.7523510678066954],[119,117,71,-0.7520171637828581],[119,117,72,-0.7516856558249321],[119,117,73,-0.7513565494115902],[119,117,74,-0.7510298499270548],[119,117,75,-0.750705562660674],[119,117,76,-0.7503836928064884],[119,117,77,-0.7500642454627962],[119,117,78,-0.7497472256317235],[119,117,79,-0.7494326382187892],[119,118,64,-0.7545520472534851],[119,118,65,-0.7542035955217494],[119,118,66,-0.7538575044470486],[119,118,67,-0.7535137800692377],[119,118,68,-0.7531724283363684],[119,118,69,-0.7528334551042615],[119,118,70,-0.7524968661360651],[119,118,71,-0.752162667101818],[119,118,72,-0.7518308635780099],[119,118,73,-0.7515014610471581],[119,118,74,-0.7511744648973538],[119,118,75,-0.7508498804218406],[119,118,76,-0.7505277128185793],[119,118,77,-0.7502079671898134],[119,118,78,-0.7498906485416403],[119,118,79,-0.7495757617835759],[119,119,64,-0.7546997667413442],[119,119,65,-0.7543510245243633],[119,119,66,-0.7540046423824625],[119,119,67,-0.7536606263591716],[119,119,68,-0.753318982406242],[119,119,69,-0.7529797163832189],[119,119,70,-0.7526428340570015],[119,119,71,-0.7523083411014038],[119,119,72,-0.751976243096717],[119,119,73,-0.7516465455292848],[119,119,74,-0.7513192537910507],[119,119,75,-0.7509943731791361],[119,119,76,-0.7506719088954046],[119,119,77,-0.7503518660460291],[119,119,78,-0.7500342496410612],[119,119,79,-0.7497190645939974],[119,120,64,-0.7548476490050823],[119,120,65,-0.7544986174186065],[119,120,66,-0.7541519453213009],[119,120,67,-0.7538076387603511],[119,120,68,-0.7534657036911891],[119,120,69,-0.7531261459770677],[119,120,70,-0.7527889713886177],[119,120,71,-0.7524541856034112],[119,120,72,-0.7521217942055227],[119,120,73,-0.7517918026851051],[119,120,74,-0.7514642164379368],[119,120,75,-0.7511390407649993],[119,120,76,-0.7508162808720429],[119,120,77,-0.7504959418691521],[119,120,78,-0.7501780287703169],[119,120,79,-0.7498625464929971],[119,121,64,-0.7549956938457656],[119,121,65,-0.7546463740082716],[119,121,66,-0.754299413070074],[119,121,67,-0.7539548170819952],[119,121,68,-0.7536125920031307],[119,121,69,-0.7532727437004209],[119,121,70,-0.7529352779482112],[119,121,71,-0.7526002004278134],[119,121,72,-0.7522675167270678],[119,121,73,-0.7519372323399187],[119,121,74,-0.7516093526659618],[119,121,75,-0.751283883010022],[119,121,76,-0.7509608285817185],[119,121,77,-0.7506401944950314],[119,121,78,-0.7503219857678713],[119,121,79,-0.7500062073216457],[119,122,64,-0.7551439010626582],[119,122,65,-0.7547942940953413],[119,122,66,-0.7544470454334751],[119,122,67,-0.7541021611315005],[119,122,68,-0.7537596471521569],[119,122,69,-0.7534195093660552],[119,122,70,-0.7530817535512363],[119,122,71,-0.7527463853927343],[119,122,72,-0.752413410482137],[119,122,73,-0.7520828343171626],[119,122,74,-0.7517546623012067],[119,122,75,-0.7514288997429202],[119,122,76,-0.7511055518557742],[119,122,77,-0.7507846237576272],[119,122,78,-0.7504661204702945],[119,122,79,-0.7501500469191138],[119,123,64,-0.7552922704532451],[119,123,65,-0.754942377480013],[119,123,66,-0.7545948422144058],[119,123,67,-0.7542496707144641],[119,123,68,-0.7539068689465529],[119,123,69,-0.7535664427849347],[119,123,70,-0.7532283980113285],[119,123,71,-0.7528927403144716],[119,123,72,-0.7525594752896824],[119,123,73,-0.7522286084384348],[119,123,74,-0.7519001451679068],[119,123,75,-0.7515740907905581],[119,123,76,-0.7512504505236948],[119,123,77,-0.7509292294890364],[119,123,78,-0.7506104327122858],[119,123,79,-0.750294065122695],[119,124,64,-0.7554408018132062],[119,124,65,-0.7550906239606714],[119,124,66,-0.7547428032139478],[119,124,67,-0.7543973456346567],[119,124,68,-0.75405425719277],[119,124,69,-0.7537135437661838],[119,124,70,-0.7533752111402761],[119,124,71,-0.7530392650074701],[119,124,72,-0.7527057109667963],[119,124,73,-0.752374554523467],[119,124,74,-0.752045801088425],[119,124,75,-0.7517194559779212],[119,124,76,-0.7513955244130793],[119,124,77,-0.7510740115194633],[119,124,78,-0.7507549223266468],[119,124,79,-0.7504382617677792],[119,125,64,-0.7555894949364734],[119,125,65,-0.7552390333339469],[119,125,66,-0.7548909282314217],[119,125,67,-0.7545451856940809],[119,125,68,-0.7542018116954852],[119,125,69,-0.7538608121171448],[119,125,70,-0.7535221927480794],[119,125,71,-0.7531859592843797],[119,125,72,-0.75285211732877],[119,125,73,-0.7525206723901834],[119,125,74,-0.7521916298833099],[119,125,75,-0.751864995128174],[119,125,76,-0.7515407733497],[119,125,77,-0.7512189696772793],[119,125,78,-0.7508995891443393],[119,125,79,-0.75058263668791],[119,126,64,-0.7557383496152127],[119,126,65,-0.7553876053946967],[119,126,66,-0.7550392170643678],[119,126,67,-0.7546931906929526],[119,126,68,-0.7543495322575813],[119,126,69,-0.7540082476433604],[119,126,70,-0.753669342642932],[119,126,71,-0.7533328229560365],[119,126,72,-0.7529986941890742],[119,126,73,-0.752666961854681],[119,126,74,-0.7523376313712763],[119,126,75,-0.7520107080626411],[119,126,76,-0.7516861971574831],[119,126,77,-0.7513641037890032],[119,126,78,-0.7510444329944663],[119,126,79,-0.7507271897147665],[119,127,64,-0.755887365639805],[119,127,65,-0.7555363399359858],[119,127,66,-0.7551876695085279],[119,127,67,-0.7548413604296819],[119,127,68,-0.7544974186801288],[119,127,69,-0.754155850148553],[119,127,70,-0.7538166606312007],[119,127,71,-0.7534798558314437],[119,127,72,-0.7531454413593401],[119,127,73,-0.7528134227312107],[119,127,74,-0.7524838053691869],[119,127,75,-0.7521565946007885],[119,127,76,-0.751831795658489],[119,127,77,-0.7515094136792821],[119,127,78,-0.7511894537042532],[119,127,79,-0.750871920678143],[119,128,64,-0.7560365427989044],[119,128,65,-0.755685236749146],[119,128,66,-0.7553362853579029],[119,128,67,-0.7549896947009312],[119,128,68,-0.7546454707624441],[119,128,69,-0.7543036194346848],[119,128,70,-0.7539641465174853],[119,128,71,-0.7536270577178306],[119,128,72,-0.7532923586494182],[119,128,73,-0.7529600548322364],[119,128,74,-0.7526301516921106],[119,128,75,-0.7523026545602816],[119,128,76,-0.7519775686729715],[119,128,77,-0.7516548991709501],[119,128,78,-0.7513346510991052],[119,128,79,-0.7510168294060087],[119,129,64,-0.7561858808794115],[119,129,65,-0.7558342956237478],[119,129,66,-0.7554850644047261],[119,129,67,-0.7551381933015887],[119,129,68,-0.7547936883020618],[119,129,69,-0.754451555301929],[119,129,70,-0.75411180010459],[119,129,71,-0.7537744284206238],[119,129,72,-0.7534394458673503],[119,129,73,-0.7531068579684065],[119,129,74,-0.7527766701532939],[119,129,75,-0.7524488877569574],[119,129,76,-0.7521235160193499],[119,129,77,-0.7518005600849997],[119,129,78,-0.7514800250025809],[119,129,79,-0.7511619157244787],[119,130,64,-0.756335379666497],[119,130,65,-0.7559835163476254],[119,130,66,-0.7556340064394869],[119,130,67,-0.7552868560247913],[119,130,68,-0.754942071094759],[119,130,69,-0.754599657548695],[119,130,70,-0.7542596211935481],[119,130,71,-0.7539219677434732],[119,130,72,-0.753586702819394],[119,130,73,-0.7532538319485783],[119,130,74,-0.7529233605641865],[119,130,75,-0.7525952940048491],[119,130,76,-0.7522696375142329],[119,130,77,-0.7519463962406073],[119,130,78,-0.7516255752364154],[119,130,79,-0.7513071794578388],[119,131,64,-0.7564850389435739],[119,131,65,-0.7561328987068476],[119,131,66,-0.7557831112509031],[119,131,67,-0.7554356826618976],[119,131,68,-0.755090618934527],[119,131,69,-0.7547479259715993],[119,131,70,-0.7544076095835933],[119,131,71,-0.7540696754882219],[119,131,72,-0.753734129309994],[119,131,73,-0.7534009765797902],[119,131,74,-0.7530702227344117],[119,131,75,-0.7527418731161576],[119,131,76,-0.7524159329723903],[119,131,77,-0.7520924074551035],[119,131,78,-0.7517713016204919],[119,131,79,-0.751452620428517],[119,132,64,-0.7566348584923563],[119,132,65,-0.7562824424857786],[119,132,66,-0.75593237862598],[119,132,67,-0.7555846730025468],[119,132,68,-0.7552393316136314],[119,132,69,-0.7548963603655255],[119,132,70,-0.7545557650722199],[119,132,71,-0.7542175514549665],[119,132,72,-0.7538817251418415],[119,132,73,-0.7535482916673204],[119,132,74,-0.7532172564718267],[119,132,75,-0.7528886249013103],[119,132,76,-0.7525624022068125],[119,132,77,-0.7522385935440331],[119,132,78,-0.7519172039729016],[119,132,79,-0.7515982384571424],[119,133,64,-0.7567848380928411],[119,133,65,-0.7564321474670567],[119,133,66,-0.7560818083499905],[119,133,67,-0.7557338268346389],[119,133,68,-0.7553882089225912],[119,133,69,-0.7550449605236045],[119,133,70,-0.7547040874551623],[119,133,71,-0.7543655954420376],[119,133,72,-0.7540294901158551],[119,133,73,-0.7536957770146671],[119,133,74,-0.7533644615825019],[119,133,75,-0.7530355491689422],[119,133,76,-0.7527090450286903],[119,133,77,-0.7523849543211352],[119,133,78,-0.7520632821099235],[119,133,79,-0.7517440333625255],[119,134,64,-0.7569349775232881],[119,134,65,-0.7565820134315767],[119,134,66,-0.7562314002064573],[119,134,67,-0.755883143944316],[119,134,68,-0.7555372506501609],[119,134,69,-0.7551937262371952],[119,134,70,-0.7548525765263764],[119,134,71,-0.7545138072459799],[119,134,72,-0.754177424031161],[119,134,73,-0.75384343242353],[119,134,74,-0.7535118378707026],[119,134,75,-0.7531826457258761],[119,134,76,-0.7528558612473961],[119,134,77,-0.7525314895983234],[119,134,78,-0.7522095358460049],[119,134,79,-0.7518900049616393],[119,135,64,-0.7570852765602788],[119,135,65,-0.7567320401585484],[119,135,66,-0.7563811539772101],[119,135,67,-0.7560326241160212],[119,135,68,-0.755686456583389],[119,135,69,-0.7553426572959435],[119,135,70,-0.7550012320780982],[119,135,71,-0.754662186661612],[119,135,72,-0.754325526685152],[119,135,73,-0.7539912576938691],[119,135,74,-0.7536593851389475],[119,135,75,-0.7533299143771814],[119,135,76,-0.7530028506705425],[119,135,77,-0.7526781991857456],[119,135,78,-0.7523559649938206],[119,135,79,-0.7520361530696775],[119,136,64,-0.7572357349786892],[119,136,65,-0.7568822274254685],[119,136,66,-0.7565310694423593],[119,136,67,-0.7561822671324706],[119,136,68,-0.7558358265075895],[119,136,69,-0.7554917534877548],[119,136,70,-0.7551500539008161],[119,136,71,-0.7548107334819976],[119,136,72,-0.7544737978734597],[119,136,73,-0.7541392526238757],[119,136,74,-0.7538071031879799],[119,136,75,-0.7534773549261464],[119,136,76,-0.7531500131039544],[119,136,77,-0.7528250828917554],[119,136,78,-0.7525025693642448],[119,136,79,-0.752182477500027],[119,137,64,-0.7573863525517138],[119,137,65,-0.757032575008145],[119,137,66,-0.756681146380319],[119,137,67,-0.7563320727746772],[119,137,68,-0.7559853602063672],[119,137,69,-0.7556410145988172],[119,137,70,-0.7552990417832945],[119,137,71,-0.7549594474984699],[119,137,72,-0.7546222373899785],[119,137,73,-0.7542874170099975],[119,137,74,-0.7539549918167937],[119,137,75,-0.7536249671743023],[119,137,76,-0.7532973483516926],[119,137,77,-0.7529721405229356],[119,137,78,-0.7526493487663746],[119,137,79,-0.752328978064291],[119,138,64,-0.7575371290508373],[119,138,65,-0.7571830826806694],[119,138,66,-0.75683138456778],[119,138,67,-0.7564820408219233],[119,138,68,-0.7561350574615887],[119,138,69,-0.7557904404135743],[119,138,70,-0.7554481955125467],[119,138,71,-0.7551083285006037],[119,138,72,-0.7547708450268373],[119,138,73,-0.75443575064691],[119,138,74,-0.7541030508226028],[119,138,75,-0.7537727509213943],[119,138,76,-0.7534448562160261],[119,138,77,-0.7531193718840707],[119,138,78,-0.7527963030075019],[119,138,79,-0.7524756545722614],[119,139,64,-0.7576880642458942],[119,139,65,-0.7573337502154752],[119,139,66,-0.7569817837797677],[119,139,67,-0.7566321710518193],[119,139,68,-0.7562849180534417],[119,139,69,-0.7559400307147841],[119,139,70,-0.7555975148738926],[119,139,71,-0.7552573762762742],[119,139,72,-0.7549196205744588],[119,139,73,-0.7545842533275756],[119,139,74,-0.754251280000902],[119,139,75,-0.7539207059654416],[119,139,76,-0.7535925364974907],[119,139,77,-0.7532667767782055],[119,139,78,-0.7529434318931731],[119,139,79,-0.7526225068319777],[119,140,64,-0.7578391579050487],[119,140,65,-0.7574845773833192],[119,140,66,-0.757132343789624],[119,140,67,-0.7567824632402848],[119,140,68,-0.7564349417604161],[119,140,69,-0.7560897852834989],[119,140,70,-0.7557469996509405],[119,140,71,-0.7554065906116376],[119,140,72,-0.7550685638215396],[119,140,73,-0.7547329248432243],[119,140,74,-0.7543996791454465],[119,140,75,-0.7540688321027174],[119,140,76,-0.7537403889948697],[119,140,77,-0.7534143550066259],[119,140,78,-0.7530907352271685],[119,140,79,-0.7527695346497074],[119,141,64,-0.7579904097947769],[119,141,65,-0.7576355639532617],[119,141,66,-0.757283064368987],[119,141,67,-0.7569329171615282],[119,141,68,-0.7565851283592836],[119,141,69,-0.7562397038990468],[119,141,70,-0.7558966496255668],[119,141,71,-0.7555559712911117],[119,141,72,-0.7552176745550314],[119,141,73,-0.7548817649833336],[119,141,74,-0.7545482480482327],[119,141,75,-0.7542171291277291],[119,141,76,-0.7538884135051742],[119,141,77,-0.7535621063688385],[119,141,78,-0.7532382128114832],[119,141,79,-0.7529167378299255],[119,142,64,-0.7581418196799238],[119,142,65,-0.7577867096927262],[119,142,66,-0.7574339452878505],[119,142,67,-0.7570835325881071],[119,142,68,-0.756735477625158],[119,142,69,-0.7563897863390902],[119,142,70,-0.7560464645779756],[119,142,71,-0.7557055180974347],[119,142,72,-0.7553669525601991],[119,142,73,-0.7550307735356881],[119,142,74,-0.7546969864995574],[119,142,75,-0.7543655968332779],[119,142,76,-0.7540366098237019],[119,142,77,-0.7537100306626308],[119,142,78,-0.7533858644463858],[119,142,79,-0.753064116175375],[119,143,64,-0.758293387323677],[119,143,65,-0.7579380143674705],[119,143,66,-0.757584986314536],[119,143,67,-0.757234309290899],[119,143,68,-0.7568859893314659],[119,143,69,-0.7565400323795977],[119,143,70,-0.7561964442866703],[119,143,71,-0.7558552308116374],[119,143,72,-0.7555163976205936],[119,143,73,-0.7551799502863513],[119,143,74,-0.7548458942879888],[119,143,75,-0.7545142350104298],[119,143,76,-0.7541849777440093],[119,143,77,-0.7538581276840415],[119,143,78,-0.7535336899303904],[119,143,79,-0.7532116694870372],[119,144,64,-0.7584451124875902],[119,144,65,-0.7580894777416116],[119,144,66,-0.7577361872157167],[119,144,67,-0.7573852470391261],[119,144,68,-0.7570366632499714],[119,144,69,-0.7566904417948687],[119,144,70,-0.7563465885284778],[119,144,71,-0.756005109213067],[119,144,72,-0.7556660095180754],[119,144,73,-0.7553292950196893],[119,144,74,-0.7549949712003916],[119,144,75,-0.7546630434485404],[119,144,76,-0.7543335170579355],[119,144,77,-0.7540063972273858],[119,144,78,-0.7536816890602807],[119,144,79,-0.7533593975641567],[119,145,64,-0.7585969949315552],[119,145,65,-0.7582410995775972],[119,145,66,-0.7578875477563891],[119,145,67,-0.7575363456003272],[119,145,68,-0.7571874991507486],[119,145,69,-0.7568410143575043],[119,145,70,-0.7564968970785199],[119,145,71,-0.7561551530793589],[119,145,72,-0.7558157880327856],[119,145,73,-0.7554788075183424],[119,145,74,-0.7551442170218978],[119,145,75,-0.7548120219352261],[119,145,76,-0.7544822275555736],[119,145,77,-0.7541548390852261],[119,145,78,-0.7538298616310806],[119,145,79,-0.7535073002042121],[119,146,64,-0.7587490344138607],[119,146,65,-0.7583928796362649],[119,146,66,-0.7580390676999328],[119,146,67,-0.7576876047404166],[119,146,68,-0.7573384968022391],[119,146,69,-0.7569917498384674],[119,146,70,-0.756647369710273],[119,146,71,-0.7563053621864957],[119,146,72,-0.7559657329432068],[119,146,73,-0.7556284875632848],[119,146,74,-0.7552936315359663],[119,146,75,-0.7549611702564231],[119,146,76,-0.7546311090253299],[119,146,77,-0.7543034530484316],[119,146,78,-0.753978207436115],[119,146,79,-0.7536553772029752],[119,147,64,-0.7589012306911738],[119,147,65,-0.758544817676823],[119,147,66,-0.7581907468080904],[119,147,67,-0.7578390242236644],[119,147,68,-0.757489655971234],[119,147,69,-0.7571426480070625],[119,147,70,-0.7567980061955484],[119,147,71,-0.7564557363087885],[119,147,72,-0.7561158440261416],[119,147,73,-0.7557783349338049],[119,147,74,-0.7554432145243631],[119,147,75,-0.7551104881963682],[119,147,76,-0.7547801612539045],[119,147,77,-0.7544522389061583],[119,147,78,-0.7541267262669882],[119,147,79,-0.7538036283544923],[119,148,64,-0.7590535835185191],[119,148,65,-0.7586969134568302],[119,148,66,-0.7583425848409483],[119,148,67,-0.7579906038126776],[119,148,68,-0.7576409764228534],[119,148,69,-0.7572937086309163],[119,148,70,-0.7569488063044719],[119,148,71,-0.7566062752188555],[119,148,72,-0.7562661210566941],[119,148,73,-0.7559283494074844],[119,148,74,-0.7555929657671416],[119,148,75,-0.7552599755375783],[119,148,76,-0.7549293840262712],[119,148,77,-0.7546011964458292],[119,148,78,-0.7542754179135653],[119,148,79,-0.7539520534510626],[119,149,64,-0.7592060926493396],[119,149,65,-0.7588491667322564],[119,149,66,-0.7584945815569958],[119,149,67,-0.7581423432684584],[119,149,68,-0.7577924579206061],[119,149,69,-0.757444931476037],[119,149,70,-0.7570997698055446],[119,149,71,-0.7567569786876829],[119,149,72,-0.7564165638083288],[119,149,73,-0.7560785307602595],[119,149,74,-0.7557428850427016],[119,149,75,-0.7554096320609105],[119,149,76,-0.7550787771257366],[119,149,77,-0.7547503254531938],[119,149,78,-0.754424282164031],[119,149,79,-0.7541006522832991],[119,150,64,-0.7593587578354759],[119,150,65,-0.7590015772574614],[119,150,66,-0.7586467367131058],[119,150,67,-0.7582942423503857],[119,150,68,-0.7579441002263702],[119,150,69,-0.7575963163067946],[119,150,70,-0.7572508964656215],[119,150,71,-0.7569078464846044],[119,150,72,-0.7565671720528508],[119,150,73,-0.7562288787663997],[119,150,74,-0.7558929721277703],[119,150,75,-0.7555594575455422],[119,150,76,-0.7552283403339213],[119,150,77,-0.7548996257123082],[119,150,78,-0.7545733188048701],[119,150,79,-0.7542494246401079],[119,151,64,-0.759511578827147],[119,151,65,-0.7591541447851766],[119,151,66,-0.7587990500645148],[119,151,67,-0.7584463008161946],[119,151,68,-0.7580959031003722],[119,151,69,-0.7577478628859011],[119,151,70,-0.7574021860498932],[119,151,71,-0.7570588783772818],[119,151,72,-0.7567179455603863],[119,151,73,-0.7563793931984882],[119,151,74,-0.7560432267973811],[119,151,75,-0.7557094517689501],[119,151,76,-0.7553780734307382],[119,151,77,-0.7550490970055145],[119,151,78,-0.7547225276208469],[119,151,79,-0.7543983703086676],[119,152,64,-0.75966455537301],[119,152,65,-0.7593068690665634],[119,152,66,-0.7589515213648824],[119,152,67,-0.7585985184220363],[119,152,68,-0.7582478663012483],[119,152,69,-0.7578995709744705],[119,152,70,-0.7575536383219442],[119,152,71,-0.757210074131764],[119,152,72,-0.7568688840994415],[119,152,73,-0.756530073827482],[119,152,74,-0.7561936488249347],[119,152,75,-0.7558596145069714],[119,152,76,-0.7555279761944538],[119,152,77,-0.7551987391135018],[119,152,78,-0.754871908395065],[119,152,79,-0.7545474890744905],[119,153,64,-0.7598176872201312],[119,153,65,-0.7594597498511856],[119,153,66,-0.759104150366263],[119,153,67,-0.7587508949224491],[119,153,68,-0.7583999895860141],[119,153,69,-0.7580514403319891],[119,153,70,-0.7577052530437252],[119,153,71,-0.7573614335124588],[119,153,72,-0.7570199874368745],[119,153,73,-0.7566809204226828],[119,153,74,-0.7563442379821689],[119,153,75,-0.7560099455337733],[119,153,76,-0.7556780484016583],[119,153,77,-0.7553485518152754],[119,153,78,-0.755021460908939],[119,153,79,-0.7546967807213921],[119,154,64,-0.7599709741140109],[119,154,65,-0.7596127868870332],[119,154,66,-0.7592569368191301],[119,154,67,-0.7589034300703832],[119,154,68,-0.7585522727100901],[119,154,69,-0.7582034707163408],[119,154,70,-0.7578570299755767],[119,154,71,-0.7575129562821566],[119,154,72,-0.7571712553379192],[119,154,73,-0.7568319327517605],[119,154,74,-0.7564949940391837],[119,154,75,-0.756160444621879],[119,154,76,-0.75582828982729],[119,154,77,-0.7554985348881827],[119,154,78,-0.7551711849422176],[119,154,79,-0.754846245031516],[119,155,64,-0.7601244157985542],[119,155,65,-0.7597659799204938],[119,155,66,-0.7594098804723474],[119,155,67,-0.7590561236171716],[119,155,68,-0.7587047154272721],[119,155,69,-0.7583556618837776],[119,155,70,-0.7580089688762006],[119,155,71,-0.7576646422020026],[119,155,72,-0.7573226875661567],[119,155,73,-0.756983110580726],[119,155,74,-0.7566459167644124],[119,155,75,-0.756311111542137],[119,155,76,-0.7559787002446068],[119,155,77,-0.7556486881078835],[119,155,78,-0.7553210802729554],[119,155,79,-0.7549958817853046],[119,156,64,-0.7602780120161312],[119,156,65,-0.7599193286964127],[119,156,66,-0.7595629810732282],[119,156,67,-0.7592089753125904],[119,156,68,-0.7588573174897916],[119,156,69,-0.7585080135889801],[119,156,70,-0.7581610695027197],[119,156,71,-0.7578164910315551],[119,156,72,-0.7574742838835747],[119,156,73,-0.7571344536739891],[119,156,74,-0.7567970059246805],[119,156,75,-0.7564619460637818],[119,156,76,-0.7561292794252452],[119,156,77,-0.7557990112484094],[119,156,78,-0.7554711466775724],[119,156,79,-0.7551456907615592],[119,157,64,-0.760431762507557],[119,157,65,-0.7600728329580724],[119,157,66,-0.7597162383675167],[119,157,67,-0.7593619849048376],[119,157,68,-0.7590100786482954],[119,157,69,-0.758660525585037],[119,157,70,-0.7583133316106581],[119,157,71,-0.7579685025287667],[119,157,72,-0.7576260440505478],[119,157,73,-0.7572859617943402],[119,157,74,-0.7569482612851866],[119,157,75,-0.7566129479544142],[119,157,76,-0.7562800271392008],[119,157,77,-0.755949504082144],[119,157,78,-0.7556213839308338],[119,157,79,-0.7552956717374195],[119,158,64,-0.7605856670120719],[119,158,65,-0.760226492447173],[119,158,66,-0.7598696520993666],[119,158,67,-0.7595151521405151],[119,158,68,-0.7591629986518257],[119,158,69,-0.758813197623425],[119,158,70,-0.7584657549539202],[119,158,71,-0.7581206764499637],[119,158,72,-0.7577779678258171],[119,158,73,-0.7574376347029281],[119,158,74,-0.7570996826094819],[119,158,75,-0.7567641169799799],[119,158,76,-0.7564309431548076],[119,158,77,-0.756100166379803],[119,158,78,-0.7557717918058298],[119,158,79,-0.7554458244883432],[119,159,64,-0.7607397252674006],[119,159,65,-0.7603803069038924],[119,159,66,-0.760023222011402],[119,159,67,-0.7596684767646866],[119,159,68,-0.7593160772478802],[119,159,69,-0.758966029454069],[119,159,70,-0.758618339284852],[119,159,71,-0.7582730125499062],[119,159,72,-0.7579300549665502],[119,159,73,-0.7575894721593222],[119,159,74,-0.7572512696595297],[119,159,75,-0.7569154529048304],[119,159,76,-0.7565820272387984],[119,159,77,-0.7562509979104938],[119,159,78,-0.7559223700740348],[119,159,79,-0.7555961487881662],[119,160,64,-0.7608939370097245],[119,160,65,-0.7605342760668568],[119,160,66,-0.760176947844688],[119,160,67,-0.7598219585208498],[119,160,68,-0.7594693141823828],[119,160,69,-0.7591190208253128],[119,160,70,-0.7587710843542107],[119,160,71,-0.7584255105817583],[119,160,72,-0.7580823052283123],[119,160,73,-0.7577414739214813],[119,160,74,-0.7574030221956769],[119,160,75,-0.7570669554916932],[119,160,76,-0.7567332791562751],[119,160,77,-0.7564019984416854],[119,160,78,-0.75607311850528],[119,160,79,-0.755746644409073],[119,161,64,-0.7610483019737053],[119,161,65,-0.760688399673165],[119,161,66,-0.7603308293387551],[119,161,67,-0.7599755971509605],[119,161,68,-0.7596227091997084],[119,161,69,-0.7592721714839438],[119,161,70,-0.7589239899111899],[119,161,71,-0.7585781702971139],[119,161,72,-0.7582347183650904],[119,161,73,-0.7578936397457795],[119,161,74,-0.7575549399766777],[119,161,75,-0.757218624501697],[119,161,76,-0.7568846986707333],[119,161,77,-0.7565531677392349],[119,161,78,-0.7562240368677754],[119,161,79,-0.7558973111216217],[119,162,64,-0.7612028198924561],[119,162,65,-0.760842677458361],[119,162,66,-0.7604848662315707],[119,162,67,-0.7601293923954037],[119,162,68,-0.7597762620426532],[119,162,69,-0.7594254811751636],[119,162,70,-0.7590770557033903],[119,162,71,-0.7587309914459659],[119,162,72,-0.7583872941292639],[119,162,73,-0.7580459693869762],[119,162,74,-0.757707022759665],[119,162,75,-0.7573704596943411],[119,162,76,-0.757036285544033],[119,162,77,-0.7567045055673554],[119,162,78,-0.756375124928082],[119,162,79,-0.7560481486947136],[119,163,64,-0.7613574904976015],[119,163,65,-0.7609971091564915],[119,163,66,-0.7606390582595983],[119,163,67,-0.7602833439930532],[119,163,68,-0.7599299724524955],[119,163,69,-0.7595789496426484],[119,163,70,-0.7592302814768797],[119,163,71,-0.7588839737767678],[119,163,72,-0.758540032271665],[119,163,73,-0.7581984625982763],[119,163,74,-0.7578592703002098],[119,163,75,-0.7575224608275565],[119,163,76,-0.7571880395364586],[119,163,77,-0.7568560116886784],[119,163,78,-0.7565263824511714],[119,163,79,-0.7561991568956538],[119,164,64,-0.7615123135192581],[119,164,65,-0.7611516945000879],[119,164,66,-0.760793405157778],[119,164,67,-0.7604374516812521],[119,164,68,-0.7600838401689749],[119,164,69,-0.7597325766285282],[119,164,70,-0.7593836669761725],[119,164,71,-0.759037117036412],[119,164,72,-0.7586929325415583],[119,164,73,-0.7583511191313099],[119,164,74,-0.7580116823523017],[119,164,75,-0.7576746276576856],[119,164,76,-0.7573399604066988],[119,164,77,-0.7570076858642325],[119,164,78,-0.7566778092004053],[119,164,79,-0.756350335490131],[119,165,64,-0.7616672886860133],[119,165,65,-0.7613064332201451],[119,165,66,-0.7609479066595064],[119,165,67,-0.760591715195792],[119,165,68,-0.7602378649302721],[119,165,69,-0.7598863618733673],[119,165,70,-0.7595372119442101],[119,165,71,-0.7591904209702106],[119,165,72,-0.7588459946866206],[119,165,73,-0.758503938736112],[119,165,74,-0.7581642586683275],[119,165,75,-0.7578269599394609],[119,165,76,-0.7574920479118252],[119,165,77,-0.7571595278534223],[119,165,78,-0.756829404937515],[119,165,79,-0.7565016842421963],[119,166,64,-0.7618224157249861],[119,166,65,-0.7614613250461821],[119,166,66,-0.7611025624966958],[119,166,67,-0.7607461342709736],[119,166,68,-0.7603920464730699],[119,166,69,-0.7600403051162239],[119,166,70,-0.7596909161224203],[119,166,71,-0.7593438853219552],[119,166,72,-0.7589992184530006],[119,166,73,-0.7586569211611824],[119,166,74,-0.7583169989991321],[119,166,75,-0.7579794574260659],[119,166,76,-0.7576443018073541],[119,166,77,-0.7573115374140897],[119,166,78,-0.7569811694226618],[119,166,79,-0.7566532029143243],[119,167,64,-0.7619776943617982],[119,167,65,-0.7616163697062122],[119,167,66,-0.7612573723997462],[119,167,67,-0.7609007086395769],[119,167,68,-0.7605463845325228],[119,167,69,-0.760194406094621],[119,167,70,-0.7598447792506883],[119,167,71,-0.7594975098338871],[119,167,72,-0.7591526035852898],[119,167,73,-0.758810066153457],[119,167,74,-0.758469903093989],[119,167,75,-0.7581321198691057],[119,167,76,-0.7577967218472154],[119,167,77,-0.7574637143024837],[119,167,78,-0.7571331024144073],[119,167,79,-0.7568048912673824],[119,168,64,-0.7621331243205973],[119,168,65,-0.7617715669267683],[119,168,66,-0.7614123360975692],[119,168,67,-0.7610554380328862],[119,168,68,-0.7607008788422817],[119,168,69,-0.7603486645445705],[119,168,70,-0.7599988010673813],[119,168,71,-0.7596512942467225],[119,168,72,-0.7593061498265474],[119,168,73,-0.7589633734583314],[119,168,74,-0.7586229707006243],[119,168,75,-0.7582849470186308],[119,168,76,-0.7579493077837778],[119,168,77,-0.7576160582732849],[119,168,78,-0.757285203669738],[119,168,79,-0.7569567490606564],[119,169,64,-0.7622887053240298],[119,169,65,-0.7619269164328731],[119,169,66,-0.7615674533175585],[119,169,67,-0.7612103221806608],[119,169,68,-0.7608555291344654],[119,169,69,-0.7605030802005446],[119,169,70,-0.7601529813093189],[119,169,71,-0.7598052382996228],[119,169,72,-0.7594598569182699],[119,169,73,-0.7591168428196317],[119,169,74,-0.7587762015651879],[119,169,75,-0.758437938623108],[119,169,76,-0.7581020593678193],[119,169,77,-0.7577685690795761],[119,169,78,-0.7574374729440345],[119,169,79,-0.7571087760518196],[119,170,64,-0.762444437093299],[119,170,65,-0.7620824179480995],[119,170,66,-0.7617227237856504],[119,170,67,-0.7613653608111945],[119,170,68,-0.76101033513972],[119,170,69,-0.7606576527955355],[119,170,70,-0.7603073197118333],[119,170,71,-0.759959341730254],[119,170,72,-0.7596137246004523],[119,170,73,-0.759270473979675],[119,170,74,-0.7589295954323128],[119,170,75,-0.7585910944294808],[119,170,76,-0.7582549763485871],[119,170,77,-0.7579212464729025],[119,170,78,-0.7575899099911342],[119,170,79,-0.7572609719969943],[119,171,64,-0.7626003193481462],[119,171,65,-0.7622380711945503],[119,171,66,-0.7618781472263039],[119,171,67,-0.7615205536512968],[119,171,68,-0.7611652965871987],[119,171,69,-0.7608123820610353],[119,171,70,-0.7604618160087495],[119,171,71,-0.7601136042747683],[119,171,72,-0.7597677526115669],[119,171,73,-0.7594242666792488],[119,171,74,-0.7590831520450954],[119,171,75,-0.7587444141831483],[119,171,76,-0.7584080584737775],[119,171,77,-0.7580740902032509],[119,171,78,-0.7577425145633082],[119,171,79,-0.7574133366507301],[119,172,64,-0.7627563518068298],[119,172,65,-0.762393875892838],[119,172,66,-0.7620337233624792],[119,172,67,-0.7616759004262703],[119,172,68,-0.7613204132045416],[119,172,69,-0.7609672677270147],[119,172,70,-0.7606164699323635],[119,172,71,-0.760268025667781],[119,172,72,-0.7599219406885434],[119,172,73,-0.7595782206575901],[119,172,74,-0.7592368711450745],[119,172,75,-0.7588978976279452],[119,172,76,-0.7585613054895147],[119,172,77,-0.758227100019029],[119,172,78,-0.7578952864112423],[119,172,79,-0.7575658697659842],[119,173,64,-0.7629125341861858],[119,173,65,-0.7625498317621444],[119,173,66,-0.7621894519156995],[119,173,67,-0.761831400859973],[119,173,68,-0.7614756847179358],[119,173,69,-0.7611223095219848],[119,173,70,-0.7607712812135043],[119,173,71,-0.760422605642433],[119,173,72,-0.7600762885668284],[119,173,73,-0.7597323356524464],[119,173,74,-0.759390752472292],[119,173,75,-0.7590515445062019],[119,173,76,-0.7587147171404117],[119,173,77,-0.7583802756671267],[119,173,78,-0.7580482252840959],[119,173,79,-0.7577185710941804],[119,174,64,-0.7630688662015983],[119,174,65,-0.7627059385201924],[119,174,66,-0.7623453326060203],[119,174,67,-0.7619870546747878],[119,174,68,-0.7616311108520859],[119,174,69,-0.761277507172966],[119,174,70,-0.7609262495815028],[119,174,71,-0.7605773439303603],[119,174,72,-0.7602307959803569],[119,174,73,-0.7598866114000453],[119,174,74,-0.7595447957652631],[119,174,75,-0.7592053545587149],[119,174,76,-0.7588682931695403],[119,174,77,-0.7585336168928849],[119,174,78,-0.758201330929474],[119,174,79,-0.7578714403851812],[119,175,64,-0.763225347567024],[119,175,65,-0.7628621958832696],[119,175,66,-0.7625013651520542],[119,175,67,-0.7621428615916475],[119,175,68,-0.7617866913302389],[119,175,69,-0.7614328604055142],[119,175,70,-0.7610813747642176],[119,175,71,-0.7607322402617183],[119,175,72,-0.760385462661576],[119,175,73,-0.7600410476351198],[119,175,74,-0.7596990007610004],[119,175,75,-0.7593593275247706],[119,175,76,-0.7590220333184553],[119,175,77,-0.758687123440121],[119,175,78,-0.7583546030934503],[119,175,79,-0.7580244773873105],[119,176,64,-0.7633819779949631],[119,176,65,-0.763018603566199],[119,176,66,-0.7626575492709421],[119,176,67,-0.7622988213300047],[119,176,68,-0.7619424258741541],[119,176,69,-0.7615883689436894],[119,176,70,-0.7612366564880041],[119,176,71,-0.7608872943651526],[119,176,72,-0.7605402883414152],[119,176,73,-0.760195644090878],[119,176,74,-0.7598533671949845],[119,176,75,-0.759513463142117],[119,176,76,-0.7591759373271656],[119,176,77,-0.7588407950510987],[119,176,78,-0.7585080415205374],[119,176,79,-0.7581776818473244],[119,177,64,-0.7635387571965191],[119,177,65,-0.7631751612823996],[119,177,66,-0.7628138846784129],[119,177,67,-0.7624549336078928],[119,177,68,-0.7620983142041637],[119,177,69,-0.7617440325101175],[119,177,70,-0.7613920944777764],[119,177,71,-0.7610425059678593],[119,177,72,-0.7606952727493473],[119,177,73,-0.7603504004990636],[119,177,74,-0.7600078948012245],[119,177,75,-0.7596677611470224],[119,177,76,-0.7593300049341933],[119,177,77,-0.7589946314665885],[119,177,78,-0.7586616459537483],[119,177,79,-0.7583310535104717],[119,178,64,-0.763695684881379],[119,178,65,-0.7633318687438655],[119,178,66,-0.762970371088763],[119,178,67,-0.7626111981419051],[119,178,68,-0.7622543560391526],[119,178,69,-0.7618998508259691],[119,178,70,-0.7615476884569853],[119,178,71,-0.7611978747955641],[119,178,72,-0.7608504156133675],[119,178,73,-0.7605053165899353],[119,178,74,-0.7601625833122375],[119,178,75,-0.7598222212742562],[119,178,76,-0.7594842358765544],[119,178,77,-0.7591486324258468],[119,178,78,-0.7588154161345745],[119,178,79,-0.7584845921204735],[119,179,64,-0.7638527607577923],[119,179,65,-0.7634887256611465],[119,179,66,-0.7631270082148363],[119,179,67,-0.7627676146471747],[119,179,68,-0.7624105510965372],[119,179,69,-0.7620558236109393],[119,179,70,-0.7617034381475987],[119,179,71,-0.7613534005725024],[119,179,72,-0.7610057166599726],[119,179,73,-0.7606603920922462],[119,179,74,-0.7603174324590269],[119,179,75,-0.759976843257067],[119,179,76,-0.759638629889737],[119,179,77,-0.7593027976665957],[119,179,78,-0.7589693518029654],[119,179,79,-0.7586382974195011],[119,180,64,-0.7640099845326318],[119,180,65,-0.7636457317434069],[119,180,66,-0.763283795768084],[119,180,67,-0.7629241828374339],[119,180,68,-0.7625668990923264],[119,180,69,-0.7622119505833073],[119,180,70,-0.761859343270161],[119,180,71,-0.7615090830214786],[119,180,72,-0.7611611756142218],[119,180,73,-0.7608156267333046],[119,180,74,-0.7604724419711443],[119,180,75,-0.760131626827244],[119,180,76,-0.7597931867077621],[119,180,77,-0.7594571269250823],[119,180,78,-0.7591234526973892],[119,180,79,-0.7587921691482379],[119,181,64,-0.7641673559113635],[119,181,65,-0.7638028866983971],[119,181,66,-0.7634407334585354],[119,181,67,-0.7630809024249859],[119,181,68,-0.7627233997410916],[119,181,69,-0.7623682314599076],[119,181,70,-0.7620154035437651],[119,181,71,-0.7616649218638373],[119,181,72,-0.7613167921997065],[119,181,73,-0.760971020238943],[119,181,74,-0.7606276115766584],[119,181,75,-0.7602865717150863],[119,181,76,-0.7599479060631537],[119,181,77,-0.75961161993605],[119,181,78,-0.759277718554803],[119,181,79,-0.7589462070458484],[119,182,64,-0.764324874598072],[119,182,65,-0.7639601902324779],[119,182,66,-0.7635978209948224],[119,182,67,-0.7632377731207285],[119,182,68,-0.7628800527559912],[119,182,69,-0.7625246659561544],[119,182,70,-0.7621716186860745],[119,182,71,-0.7618209168194876],[119,182,72,-0.7614725661385751],[119,182,73,-0.7611265723335442],[119,182,74,-0.76078294100218],[119,182,75,-0.760441677649428],[119,182,76,-0.7601027876869635],[119,182,77,-0.7597662764327623],[119,182,78,-0.7594321491106764],[119,182,79,-0.7591004108500035],[119,183,64,-0.76448254029543],[119,183,65,-0.7641176420505904],[119,183,66,-0.7637550580841497],[119,183,67,-0.7633947946341247],[119,183,68,-0.7630368578487413],[119,183,69,-0.7626812537860113],[119,183,70,-0.7623279884132959],[119,183,71,-0.7619770676068729],[119,183,72,-0.761628497151503],[119,183,73,-0.7612822827400099],[119,183,74,-0.7609384299728327],[119,183,75,-0.760596944357608],[119,183,76,-0.7602578313087405],[119,183,77,-0.7599210961469731],[119,183,78,-0.7595867440989625],[119,183,79,-0.7592547802968492],[119,184,64,-0.7646403527047593],[119,184,65,-0.7642752418563172],[119,184,66,-0.7639124444323552],[119,184,67,-0.7635519666732629],[119,184,68,-0.7631938147296756],[119,184,69,-0.7628379946620524],[119,184,70,-0.7624845124402381],[119,184,71,-0.7621333739430319],[119,184,72,-0.7617845849577535],[119,184,73,-0.7614381511798224],[119,184,74,-0.761094078212312],[119,184,75,-0.7607523715655304],[119,184,76,-0.760413036656592],[119,184,77,-0.760076078808987],[119,184,78,-0.7597415032521578],[119,184,79,-0.7594093151210689],[119,185,64,-0.7647983115260101],[119,185,65,-0.7644329893518613],[119,185,66,-0.7640699797438896],[119,185,67,-0.7637092889448363],[119,185,68,-0.7633509231077252],[119,185,69,-0.7629948882954409],[119,185,70,-0.7626411904802918],[119,185,71,-0.7622898355435777],[119,185,72,-0.7619408292751562],[119,185,73,-0.7615941773730233],[119,185,74,-0.7612498854428659],[119,185,75,-0.7609079589976442],[119,185,76,-0.7605684034571621],[119,185,77,-0.7602312241476383],[119,185,78,-0.7598964263012816],[119,185,79,-0.7595640150558609],[119,186,64,-0.7649564164577404],[119,186,65,-0.7645908842380252],[119,186,66,-0.7642276637217956],[119,186,67,-0.7638667611541227],[119,186,68,-0.7635081826903974],[119,186,69,-0.7631519343959093],[119,186,70,-0.7627980222454092],[119,186,71,-0.7624464521226765],[119,186,72,-0.762097229820087],[119,186,73,-0.7617503610381923],[119,186,74,-0.7614058513852731],[119,186,75,-0.7610637063769214],[119,186,76,-0.7607239314356116],[119,186,77,-0.7603865318902707],[119,186,78,-0.7600515129758546],[119,186,79,-0.7597188798329182],[119,187,64,-0.7651146671971762],[119,187,65,-0.7647489262142724],[119,187,66,-0.7643854960677685],[119,187,67,-0.7640243830050443],[119,187,68,-0.7636655931838369],[119,187,69,-0.7633091326718193],[119,187,70,-0.7629550074461635],[119,187,71,-0.7626032233931089],[119,187,72,-0.7622537863075283],[119,187,73,-0.7619067018925083],[119,187,74,-0.7615619757589038],[119,187,75,-0.7612196134249188],[119,187,76,-0.7608796203156778],[119,187,77,-0.7605420017627971],[119,187,78,-0.7602067630039602],[119,187,79,-0.7598739091824886],[119,188,64,-0.7652730634401915],[119,188,65,-0.7649071149787054],[119,188,66,-0.7645434764821354],[119,188,67,-0.7641821542001477],[119,188,68,-0.7638231542928042],[119,188,69,-0.7634664828301407],[119,188,70,-0.7631121457917298],[119,188,71,-0.7627601490662489],[119,188,72,-0.762410498451048],[119,188,73,-0.7620631996517289],[119,188,74,-0.7617182582816996],[119,188,75,-0.7613756798617564],[119,188,76,-0.7610354698196542],[119,188,77,-0.7606976334896791],[119,188,78,-0.760362176112223],[119,188,79,-0.7600291028333546],[119,189,64,-0.7654316048812868],[119,189,65,-0.7650654502280466],[119,189,66,-0.7647016046638344],[119,189,67,-0.7643400744405824],[119,189,68,-0.7639808657206558],[119,189,69,-0.7636239845764318],[119,189,70,-0.7632694369898622],[119,189,71,-0.7629172288520427],[119,189,72,-0.7625673659627792],[119,189,73,-0.7622198540301681],[119,189,74,-0.761874698670151],[119,189,75,-0.7615319054060958],[119,189,76,-0.761191479668369],[119,189,77,-0.760853426793906],[119,189,78,-0.7605177520257876],[119,189,79,-0.7601844605128111],[119,190,64,-0.7655902912136507],[119,190,65,-0.765223931657697],[119,190,66,-0.7648598803104755],[119,190,67,-0.764498143426162],[119,190,68,-0.764138727169404],[119,190,69,-0.7637816376148985],[119,190,70,-0.7634268807469561],[119,190,71,-0.7630744624590695],[119,190,72,-0.76272438855348],[119,190,73,-0.7623766647407585],[119,190,74,-0.7620312966393594],[119,190,75,-0.7616882897752029],[119,190,76,-0.7613476495812461],[119,190,77,-0.761009381397055],[119,190,78,-0.7606734904683801],[119,190,79,-0.7603399819467269],[119,191,64,-0.7657491221291288],[119,191,65,-0.7653825589617079],[119,191,66,-0.7650183031183103],[119,191,67,-0.7646563608553341],[119,191,68,-0.7642967383396871],[119,191,69,-0.7639394416483655],[119,191,70,-0.7635844767680176],[119,191,71,-0.7632318495945116],[119,191,72,-0.7628815659325043],[119,191,73,-0.7625336314950202],[119,191,74,-0.7621880519030064],[119,191,75,-0.7618448326849152],[119,191,76,-0.7615039792762748],[119,191,77,-0.7611654970192617],[119,191,78,-0.7608293911622765],[119,191,79,-0.7604956668595148],[119,192,64,-0.7659080973182493],[119,192,65,-0.7655413318328049],[119,192,66,-0.765176872782257],[119,192,67,-0.7648147264252045],[119,192,68,-0.7644548989307944],[119,192,69,-0.7640973963783007],[119,192,70,-0.7637422247566875],[119,192,71,-0.763389389964179],[119,192,72,-0.7630388978078259],[119,192,73,-0.7626907540030858],[119,192,74,-0.7623449641733786],[119,192,75,-0.7620015338496683],[119,192,76,-0.7616604684700343],[119,192,77,-0.7613217733792442],[119,192,78,-0.760985453828329],[119,192,79,-0.7606515149741546],[119,193,64,-0.7660672164701927],[119,193,65,-0.7657002499623576],[119,193,66,-0.7653355889958701],[119,193,67,-0.764973239831508],[119,193,68,-0.7646132086406359],[119,193,69,-0.764255501504784],[119,193,70,-0.7639001244152123],[119,193,71,-0.7635470832724789],[119,193,72,-0.7631963838860079],[119,193,73,-0.7628480319736699],[119,193,74,-0.7625020331613369],[119,193,75,-0.7621583929824645],[119,193,76,-0.7618171168776635],[119,193,77,-0.7614782101942728],[119,193,78,-0.7611416781859339],[119,193,79,-0.7608075260121643],[119,194,64,-0.7662264792728524],[119,194,65,-0.7658593130404409],[119,194,66,-0.765494451451401],[119,194,67,-0.765131900768668],[119,194,68,-0.7647716671658025],[119,194,69,-0.7644137567265699],[119,194,70,-0.7640581754445039],[119,194,71,-0.7637049292224765],[119,194,72,-0.7633540238722643],[119,194,73,-0.7630054651141301],[119,194,74,-0.7626592585763776],[119,194,75,-0.7623154097949341],[119,194,76,-0.7619739242129218],[119,194,77,-0.7616348071802305],[119,194,78,-0.7612980639530936],[119,194,79,-0.7609636996936601],[119,195,64,-0.7663858854128142],[119,195,65,-0.7660185207558138],[119,195,66,-0.7656534598397777],[119,195,67,-0.7652907089297769],[119,195,68,-0.7649302742015462],[119,195,69,-0.7645721617410647],[119,195,70,-0.7642163775441195],[119,195,71,-0.7638629275158746],[119,195,72,-0.7635118174704386],[119,195,73,-0.7631630531304459],[119,195,74,-0.7628166401266117],[119,195,75,-0.7624725839973143],[119,195,76,-0.7621308901881676],[119,195,77,-0.7617915640515927],[119,195,78,-0.7614546108463949],[119,195,79,-0.7611200357373353],[119,196,64,-0.766545434575335],[119,196,65,-0.7661778727958986],[119,196,66,-0.7658126138505834],[119,196,67,-0.7654496640065738],[119,196,68,-0.7650890294417578],[119,196,69,-0.764730716244307],[119,196,70,-0.7643747304122398],[119,196,71,-0.7640210778529917],[119,196,72,-0.7636697643829825],[119,196,73,-0.7633207957271976],[119,196,74,-0.7629741775187429],[119,196,75,-0.7626299152984277],[119,196,76,-0.7622880145143376],[119,196,77,-0.7619484805214051],[119,196,78,-0.7616113185809877],[119,196,79,-0.7612765338604394],[119,197,64,-0.7667051264444038],[119,197,65,-0.7663373688468416],[119,197,66,-0.765971913172117],[119,197,67,-0.7656087656895063],[119,197,68,-0.7652479325790291],[119,197,69,-0.7648894199310273],[119,197,70,-0.7645332337457302],[119,197,71,-0.7641793799328236],[119,197,72,-0.7638278643110172],[119,197,73,-0.7634786926076269],[119,197,74,-0.7631318704581289],[119,197,75,-0.7627874034057438],[119,197,76,-0.7624452969010076],[119,197,77,-0.7621055563013451],[119,197,78,-0.7617681868706464],[119,197,79,-0.7614331937788383],[119,198,64,-0.7668649607027117],[119,198,65,-0.766497008593483],[119,198,66,-0.7661313574913637],[119,198,67,-0.7657680136677003],[119,198,68,-0.7654069833046215],[119,198,69,-0.7650482724946189],[119,198,70,-0.764691887240111],[119,198,71,-0.7643378334530124],[119,198,72,-0.7639861169543027],[119,198,73,-0.7636367434736072],[119,198,74,-0.763289718648752],[119,198,75,-0.7629450480253478],[119,198,76,-0.7626027370563622],[119,198,77,-0.7622627911016916],[119,198,78,-0.7619252154277388],[119,198,79,-0.7615900152069848],[119,199,64,-0.7670249370316763],[119,199,65,-0.7666567917193818],[119,199,66,-0.7662909464940196],[119,199,67,-0.7659274076289837],[119,199,68,-0.7655661813084913],[119,199,69,-0.7652072736271616],[119,199,70,-0.7648506905895808],[119,199,71,-0.764496438109872],[119,199,72,-0.7641445220112628],[119,199,73,-0.7637949480256675],[119,199,74,-0.7634477217932414],[119,199,75,-0.7631028488619657],[119,199,76,-0.7627603346872185],[119,199,77,-0.7624201846313484],[119,199,78,-0.7620824039632512],[119,199,79,-0.761746997857942],[119,200,64,-0.7671850551114119],[119,200,65,-0.7668167179067854],[119,200,66,-0.7664506798644604],[119,200,67,-0.7660869472598572],[119,200,68,-0.765725526279259],[119,200,69,-0.7653664230193915],[119,200,70,-0.7650096434869874],[119,200,71,-0.7646551935983565],[119,200,72,-0.764303079178954],[119,200,73,-0.7639533059629621],[119,200,74,-0.763605879592845],[119,200,75,-0.7632608056189336],[119,200,76,-0.7629180894989968],[119,200,77,-0.762577736597815],[119,200,78,-0.7622397521867573],[119,200,79,-0.7619041414433535],[119,201,64,-0.7673453146207897],[119,201,65,-0.7669767868366901],[119,201,66,-0.7666105572858034],[119,201,67,-0.7662466322455543],[119,201,68,-0.7658850179042708],[119,201,69,-0.7655257203607626],[119,201,70,-0.765168745623888],[119,201,71,-0.7648140996121223],[119,201,72,-0.7644617881531273],[119,201,73,-0.764111816983332],[119,201,74,-0.7637641917474892],[119,201,75,-0.7634189179982589],[119,201,76,-0.7630760011957806],[119,201,77,-0.7627354467072467],[119,201,78,-0.7623972598064797],[119,201,79,-0.7620614456735041],[119,202,64,-0.7675057152374176],[119,202,65,-0.7671369981888206],[119,202,66,-0.7667705784398862],[119,202,67,-0.7664064622700215],[119,202,68,-0.7660446558695767],[119,202,69,-0.7656851653394251],[119,202,70,-0.7653279966905284],[119,202,71,-0.7649731558435064],[119,202,72,-0.7646206486282061],[119,202,73,-0.7642704807832832],[119,202,74,-0.7639226579557579],[119,202,75,-0.7635771857005988],[119,202,76,-0.7632340694802962],[119,202,77,-0.7628933146644338],[119,202,78,-0.7625549265292678],[119,202,79,-0.7622189102572988],[119,203,64,-0.7676662566376189],[119,203,65,-0.7672973516416088],[119,203,66,-0.7669307430072454],[119,203,67,-0.7665664370158954],[119,203,68,-0.7662044398599102],[119,203,69,-0.7658447576422043],[119,203,70,-0.7654873963758214],[119,203,71,-0.7651323619835049],[119,203,72,-0.7647796602972659],[119,203,73,-0.7644292970579655],[119,203,74,-0.7640812779148709],[119,203,75,-0.7637356084252391],[119,203,76,-0.7633922940538902],[119,203,77,-0.7630513401727798],[119,203,78,-0.7627127520605779],[119,203,79,-0.7623765349022402],[119,204,64,-0.7678269384964925],[119,204,65,-0.7674578468722548],[119,204,66,-0.7670910506671773],[119,204,67,-0.7667265561645653],[119,204,68,-0.7663643695587484],[119,204,69,-0.7660044969546612],[119,204,70,-0.7656469443674082],[119,204,71,-0.7652917177218346],[119,204,72,-0.7649388228520946],[119,204,73,-0.7645882655012338],[119,204,74,-0.7642400513207457],[119,204,75,-0.7638941858701551],[119,204,76,-0.7635506746165917],[119,204,77,-0.7632095229343627],[119,204,78,-0.7628707361045322],[119,204,79,-0.7625343193144916],[119,205,64,-0.7679877604878838],[119,205,65,-0.7676184835566963],[119,205,66,-0.7672515010977085],[119,205,67,-0.7668868193961416],[119,205,68,-0.7665244446482824],[119,205,69,-0.7661643829610633],[119,205,70,-0.7658066403516282],[119,205,71,-0.7654512227469024],[119,205,72,-0.7650981359831623],[119,205,73,-0.7647473858056174],[119,205,74,-0.7643989778679663],[119,205,75,-0.7640529177319811],[119,205,76,-0.7637092108670809],[119,205,77,-0.7633678626499046],[119,205,78,-0.7630288783638897],[119,205,79,-0.7626922631988442],[119,206,64,-0.7681487222844082],[119,206,65,-0.7677792613696333],[119,206,66,-0.7674120939756194],[119,206,67,-0.7670472263894814],[119,206,68,-0.7666846648094414],[119,206,69,-0.7663244153444078],[119,206,70,-0.7659664840135421],[119,206,71,-0.7656108767458292],[119,206,72,-0.7652575993796458],[119,206,73,-0.7649066576623442],[119,206,74,-0.7645580572498077],[119,206,75,-0.7642118037060351],[119,206,76,-0.7638679025027143],[119,206,77,-0.7635263590187957],[119,206,78,-0.7631871785400703],[119,206,79,-0.7628503662587429],[119,207,64,-0.768309823557422],[119,207,65,-0.7679401799844982],[119,207,66,-0.7675728289764143],[119,207,67,-0.7672077768221576],[119,207,68,-0.7668450297218624],[119,207,69,-0.7664845937863919],[119,207,70,-0.7661264750369037],[119,207,71,-0.7657706794044201],[119,207,72,-0.7654172127293979],[119,207,73,-0.7650660807613108],[119,207,74,-0.7647172891582058],[119,207,75,-0.7643708434862878],[119,207,76,-0.7640267492194932],[119,207,77,-0.7636850117390636],[119,207,78,-0.7633456363331237],[119,207,79,-0.763008628196255],[119,208,64,-0.7684710639770821],[119,208,65,-0.7681012390735159],[119,208,66,-0.7677337057743829],[119,208,67,-0.7673684703705194],[119,208,68,-0.7670055390639511],[119,208,69,-0.7666449179674736],[119,208,70,-0.7662866131042188],[119,208,71,-0.7659306304072255],[119,208,72,-0.7655769757190087],[119,208,73,-0.7652256547911429],[119,208,74,-0.7648766732838177],[119,208,75,-0.7645300367654239],[119,208,76,-0.7641857507121255],[119,208,77,-0.763843820507435],[119,208,78,-0.763504251441791],[119,208,79,-0.7631670487121318],[119,209,64,-0.7686324432123255],[119,209,65,-0.7682624383076837],[119,209,66,-0.7678947240425781],[119,209,67,-0.7675293067096722],[119,209,68,-0.767166192512861],[119,209,69,-0.7668053875668503],[119,209,70,-0.7664468978967254],[119,209,71,-0.7660907294375193],[119,209,72,-0.7657368880337844],[119,209,73,-0.7653853794391745],[119,209,74,-0.7650362093160016],[119,209,75,-0.7646893832348207],[119,209,76,-0.7643449066740038],[119,209,77,-0.7640027850193138],[119,209,78,-0.7636630235634831],[119,209,79,-0.7633256275057867],[119,210,64,-0.7687939609308483],[119,210,65,-0.768423777356749],[119,210,66,-0.7680558834527953],[119,210,67,-0.7676902855134555],[119,210,68,-0.7673269897444714],[119,210,69,-0.7669660022624382],[119,210,70,-0.7666073290943711],[119,210,71,-0.7662509761772776],[119,210,72,-0.7658969493577251],[119,210,73,-0.7655452543914261],[119,210,74,-0.7651958969427936],[119,210,75,-0.7648488825845267],[119,210,76,-0.7645042167971843],[119,210,77,-0.7641619049687596],[119,210,78,-0.7638219523942587],[119,210,79,-0.7634843642752733],[119,211,64,-0.7689556167991661],[119,211,65,-0.7685852558892712],[119,211,66,-0.7682171836756335],[119,211,67,-0.7678514064545043],[119,211,68,-0.7674879304334496],[119,211,69,-0.7671267617309319],[119,211,70,-0.7667679063758758],[119,211,71,-0.7664113703072398],[119,211,72,-0.7660571593735869],[119,211,73,-0.7657052793326659],[119,211,74,-0.7653557358509702],[119,211,75,-0.7650085345033223],[119,211,76,-0.7646636807724475],[119,211,77,-0.764321180048549],[119,211,78,-0.7639810376288858],[119,211,79,-0.7636432587173476],[119,212,64,-0.7691174104825843],[119,212,65,-0.7687468735725909],[119,212,66,-0.7683786243804649],[119,212,67,-0.7680126692042182],[119,212,68,-0.7676490142532194],[119,212,69,-0.7672876656477756],[119,212,70,-0.7669286294186991],[119,212,71,-0.766571911506879],[119,212,72,-0.7662175177628505],[119,212,73,-0.7658654539463791],[119,212,74,-0.7655157257260171],[119,212,75,-0.7651683386786897],[119,212,76,-0.764823298289268],[119,212,77,-0.7644806099501444],[119,212,78,-0.7641402789608116],[119,212,79,-0.7638023105274361],[119,213,64,-0.769279341645222],[119,213,65,-0.768908630072854],[119,213,66,-0.7685402052354591],[119,213,67,-0.7681740734327867],[119,213,68,-0.7678102408759857],[119,213,69,-0.7674487136871864],[119,213,70,-0.7670894978990669],[119,213,71,-0.7667325994544245],[119,213,72,-0.7663780242057464],[119,213,73,-0.7660257779147928],[119,213,74,-0.7656758662521541],[119,213,75,-0.7653282947968372],[119,213,76,-0.7649830690358383],[119,213,77,-0.7646401943637194],[119,213,78,-0.7642996760821857],[119,213,79,-0.763961519399661],[119,214,64,-0.769441409949982],[119,214,65,-0.7690705250549823],[119,214,66,-0.7687019259075526],[119,214,67,-0.7683356188091576],[119,214,68,-0.7679716099727043],[119,214,69,-0.7676099055221242],[119,214,70,-0.7672505114919388],[119,214,71,-0.7668934338268328],[119,214,72,-0.7665386783812236],[119,214,73,-0.7661862509188445],[119,214,74,-0.7658361571123035],[119,214,75,-0.7654884025426678],[119,214,76,-0.7651429926990388],[119,214,77,-0.7647999329781268],[119,214,78,-0.7644592286838297],[119,214,79,-0.7641208850268085],[119,215,64,-0.7696036150586116],[119,215,65,-0.7692325581827337],[119,215,66,-0.7688637860625102],[119,215,67,-0.7684973050010988],[119,215,68,-0.768133121213143],[119,215,69,-0.7677712408243523],[119,215,70,-0.7674116698710709],[119,215,71,-0.7670544142998483],[119,215,72,-0.7666994799670107],[119,215,73,-0.766346872638244],[119,215,74,-0.7659965979881517],[119,215,75,-0.7656486615998415],[119,215,76,-0.7653030689644983],[119,215,77,-0.7649598254809605],[119,215,78,-0.764618936455299],[119,215,79,-0.7642804071003912],[119,216,64,-0.7697659566316812],[119,216,65,-0.7693947291186808],[119,216,66,-0.7690257853649035],[119,216,67,-0.7686591316751776],[119,216,68,-0.7682947742658599],[119,216,69,-0.7679327192644172],[119,216,70,-0.7675729727089934],[119,216,71,-0.7672155405479817],[119,216,72,-0.7668604286395955],[119,216,73,-0.7665076427514514],[119,216,74,-0.7661571885601284],[119,216,75,-0.7658090716507526],[119,216,76,-0.7654632975165726],[119,216,77,-0.7651198715585342],[119,216,78,-0.7647787990848604],[119,216,79,-0.7644400853106257],[119,217,64,-0.7699284343285635],[119,217,65,-0.7695570375241902],[119,217,66,-0.7691879234780893],[119,217,67,-0.7688210984967374],[119,217,68,-0.7684565687981822],[119,217,69,-0.7680943405116255],[119,217,70,-0.7677344196769891],[119,217,71,-0.7673768122444882],[119,217,72,-0.7670215240742017],[119,217,73,-0.766668560935656],[119,217,74,-0.7663179285073837],[119,217,75,-0.7659696323765091],[119,217,76,-0.765623678038323],[119,217,77,-0.7652800708958586],[119,217,78,-0.7649388162594707],[119,217,79,-0.7645999193464104],[119,218,64,-0.770091047807494],[119,218,65,-0.7697194830594832],[119,218,66,-0.7693502000642712],[119,218,67,-0.7689832051299603],[119,218,68,-0.7686185044762675],[119,218,69,-0.7682561042341063],[119,218,70,-0.7678960104451551],[119,218,71,-0.7675382290614293],[119,218,72,-0.7671827659448516],[119,218,73,-0.7668296268668369],[119,218,74,-0.7664788175078502],[119,218,75,-0.7661303434569928],[119,218,76,-0.7657842102115775],[119,218,77,-0.7654404231767038],[119,218,78,-0.765098987664838],[119,218,79,-0.7647599088953878],[119,219,64,-0.7702537967255503],[119,219,65,-0.7698820653836145],[119,219,66,-0.769512614784478],[119,219,67,-0.7691454512378458],[119,219,68,-0.7687805809650816],[119,219,69,-0.7684180100987892],[119,219,70,-0.7680577446823812],[119,219,71,-0.7676997906696511],[119,219,72,-0.7673441539243442],[119,219,73,-0.7669908402197421],[119,219,74,-0.7666398552382213],[119,219,75,-0.7662912045708392],[119,219,76,-0.7659448937169094],[119,219,77,-0.7656009280835774],[119,219,78,-0.7652593129854003],[119,219,79,-0.7649200536439225],[119,220,64,-0.7704166807386296],[119,220,65,-0.7700447841544504],[119,220,66,-0.7696751672985417],[119,220,67,-0.7693078364821883],[119,220,68,-0.7689427979283779],[119,220,69,-0.7685800577713828],[119,220,70,-0.7682196220563278],[119,220,71,-0.7678614967387623],[119,220,72,-0.7675056876842328],[119,220,73,-0.7671522006678663],[119,220,74,-0.7668010413739292],[119,220,75,-0.7664522153954143],[119,220,76,-0.7661057282336149],[119,220,77,-0.7657615852977017],[119,220,78,-0.7654197919043028],[119,220,79,-0.7650803532770786],[119,221,64,-0.7705796995015112],[119,221,65,-0.7702076390287312],[119,221,66,-0.7698378572651594],[119,221,67,-0.7694703605236387],[119,221,68,-0.7691051550287584],[119,221,69,-0.7687422469164363],[119,221,70,-0.7683816422334874],[119,221,71,-0.768023346937196],[119,221,72,-0.7676673668948872],[119,221,73,-0.7673137078835125],[119,221,74,-0.7669623755892068],[119,221,75,-0.7666133756068766],[119,221,76,-0.7662667134397748],[119,221,77,-0.7659223944990767],[119,221,78,-0.7655804241034604],[119,221,79,-0.7652408074786821],[119,222,64,-0.7707428526678248],[119,222,65,-0.7703706296620387],[119,222,66,-0.7700006843418626],[119,222,67,-0.7696330230216744],[119,222,68,-0.7692676519276425],[119,222,69,-0.7689045771973082],[119,222,70,-0.7685438048791546],[119,222,71,-0.7681853409321786],[119,222,72,-0.7678291912254629],[119,222,73,-0.767475361537761],[119,222,74,-0.7671238575570557],[119,222,75,-0.7667746848801464],[119,222,76,-0.766427849012224],[119,222,77,-0.7660833553664479],[119,222,78,-0.7657412092635258],[119,222,79,-0.7654014159312895],[119,223,64,-0.7709061398900757],[119,223,65,-0.7705337557088223],[119,223,66,-0.7701636481850411],[119,223,67,-0.7697958236346225],[119,223,68,-0.7694302882852917],[119,223,69,-0.769067048276191],[119,223,70,-0.7687061096574492],[119,223,71,-0.7683474783897541],[119,223,72,-0.7679911603439243],[119,223,73,-0.767637161300494],[119,223,74,-0.7672854869492721],[119,223,75,-0.7669361428889299],[119,223,76,-0.7665891346265754],[119,223,77,-0.7662444675773313],[119,223,78,-0.7659021470639145],[119,223,79,-0.7655621783162121],[119,224,64,-0.7710695608196138],[119,224,65,-0.7706970168223675],[119,224,66,-0.770326748449913],[119,224,67,-0.7699587620196305],[119,224,68,-0.7695930637607791],[119,224,69,-0.7692296598140802],[119,224,70,-0.7688685562312862],[119,224,71,-0.7685097589747538],[119,224,72,-0.7681532739170152],[119,224,73,-0.767799106840364],[119,224,74,-0.7674472634364143],[119,224,75,-0.7670977493056876],[119,224,76,-0.7667505699571885],[119,224,77,-0.7664057308079818],[119,224,78,-0.7660632371827732],[119,224,79,-0.7657230943134846],[119,225,64,-0.7712331151066946],[119,225,65,-0.7708604126548568],[119,225,66,-0.7704899847905851],[119,225,67,-0.7701218378327259],[119,225,68,-0.7697559780120504],[119,225,69,-0.7693924114708361],[119,225,70,-0.7690311442624372],[119,225,71,-0.7686721823508568],[119,225,72,-0.7683155316103195],[119,225,73,-0.7679611978248566],[119,225,74,-0.7676091866878656],[119,225,75,-0.7672595038016972],[119,225,76,-0.7669121546772316],[119,225,77,-0.7665671447334552],[119,225,78,-0.7662244792970415],[119,225,79,-0.7658841636019271],[119,226,64,-0.7713968024004583],[119,226,65,-0.7710239428573495],[119,226,66,-0.7706533568600321],[119,226,67,-0.7702850507287964],[119,226,68,-0.7699190306959024],[119,226,69,-0.7695553029051617],[119,226,70,-0.769193873411508],[119,226,71,-0.768834748180569],[119,226,72,-0.7684779330882394],[119,226,73,-0.7681234339202672],[119,226,74,-0.7677712563718111],[119,226,75,-0.7674214060470306],[119,226,76,-0.7670738884586598],[119,226,77,-0.766728709027586],[119,226,78,-0.7663858730824302],[119,226,79,-0.7660453858591231],[119,227,64,-0.7715606223489075],[119,227,65,-0.7711876070797589],[119,227,66,-0.7708168643100746],[119,227,67,-0.7704484003615666],[119,227,68,-0.770082221467961],[119,227,69,-0.7697183337745812],[119,227,70,-0.7693567433379176],[119,227,71,-0.7689974561252009],[119,227,72,-0.7686404780139742],[119,227,73,-0.7682858147916796],[119,227,74,-0.7679334721552168],[119,227,75,-0.7675834557105319],[119,227,76,-0.7672357709721924],[119,227,77,-0.7668904233629654],[119,227,78,-0.7665474182133989],[119,227,79,-0.7662067607613969],[119,228,64,-0.7717245745989694],[119,228,65,-0.7713514049709135],[119,228,66,-0.7709805067914405],[119,228,67,-0.7706118863836604],[119,228,68,-0.770245549982743],[119,228,69,-0.769881503735501],[119,228,70,-0.7695197536999594],[119,228,71,-0.7691603058449292],[119,228,72,-0.7688031660495807],[119,228,73,-0.7684483401030282],[119,228,74,-0.7680958337038909],[119,228,75,-0.7677456524598799],[119,228,76,-0.7673978018873755],[119,228,77,-0.7670522874110035],[119,228,78,-0.7667091143632179],[119,228,79,-0.7663682879838761],[119,229,64,-0.7718886587964637],[119,229,65,-0.7715153361785272],[119,229,66,-0.771144283953734],[119,229,67,-0.7707755084465698],[119,229,68,-0.7704090158936251],[119,229,69,-0.7700448124431793],[119,229,70,-0.7696829041547697],[119,229,71,-0.7693232969987661],[119,229,72,-0.7689659968559431],[119,229,73,-0.7686110095170663],[119,229,74,-0.7682583406824522],[119,229,75,-0.7679079959615563],[119,229,76,-0.7675599808725498],[119,229,77,-0.767214300841897],[119,229,78,-0.7668709612039368],[119,229,79,-0.7665299672004596],[119,230,64,-0.7720528745861286],[119,230,65,-0.7716794003492231],[119,230,66,-0.7713081954454606],[119,230,67,-0.7709392662006793],[119,230,68,-0.7705726188528681],[119,230,69,-0.7702082595517502],[119,230,70,-0.7698461943583532],[119,230,71,-0.7694864292445831],[119,230,72,-0.7691289700927973],[119,230,73,-0.7687738226953906],[119,230,74,-0.7684209927543554],[119,230,75,-0.7680704858808702],[119,230,76,-0.7677223075948761],[119,230,77,-0.7673764633246546],[119,230,78,-0.7670329584064093],[119,230,79,-0.7666917980838425],[119,231,64,-0.7722172216115888],[119,231,65,-0.7718435971285026],[119,231,66,-0.7714722409139955],[119,231,67,-0.7711031592952353],[119,231,68,-0.7707363585115862],[119,231,69,-0.770371844714193],[119,231,70,-0.770009623965551],[119,231,71,-0.7696497022390802],[119,231,72,-0.7692920854186991],[119,231,73,-0.7689367792984096],[119,231,74,-0.7685837895818588],[119,231,75,-0.7682331218819266],[119,231,76,-0.7678847817203027],[119,231,77,-0.767538774527065],[119,231,78,-0.7671951056402608],[119,231,79,-0.7668537803054841],[119,232,64,-0.772381699515417],[119,232,65,-0.7720079261608066],[119,232,66,-0.7716364200056451],[119,232,67,-0.7712671873784065],[119,232,68,-0.7709002345198079],[119,232,69,-0.7705355675823929],[119,232,70,-0.7701731926301022],[119,232,71,-0.7698131156378478],[119,232,72,-0.7694553424910866],[119,232,73,-0.7690998789854064],[119,232,74,-0.7687467308260871],[119,232,75,-0.7683959036276886],[119,232,76,-0.7680474029136283],[119,232,77,-0.7677012341157591],[119,232,78,-0.7673574025739515],[119,232,79,-0.7670159135356704],[119,233,64,-0.772546307939113],[119,233,65,-0.7721723870894948],[119,233,66,-0.7718007323656257],[119,233,67,-0.7714313500972636],[119,233,68,-0.7710642465264552],[119,233,69,-0.7706994278071204],[119,233,70,-0.7703369000046227],[119,233,71,-0.769976669095344],[119,233,72,-0.7696187409662578],[119,233,73,-0.7692631214145156],[119,233,74,-0.7689098161470085],[119,233,75,-0.7685588307799551],[119,233,76,-0.7682101708384791],[119,233,77,-0.7678638417561876],[119,233,78,-0.7675198488747533],[119,233,79,-0.7671781974434916],[119,234,64,-0.7727110465230811],[119,234,65,-0.7723369795568225],[119,234,66,-0.7719651776380416],[119,234,67,-0.7715956470977564],[119,234,68,-0.7712283941793208],[119,234,69,-0.7708634250380082],[119,234,70,-0.7705007457405826],[119,234,71,-0.7701403622648734],[119,234,72,-0.7697822804993485],[119,234,73,-0.7694265062427015],[119,234,74,-0.7690730452034129],[119,234,75,-0.7687219029993386],[119,234,76,-0.7683730851572872],[119,234,77,-0.768026597112599],[119,234,78,-0.767682444208728],[119,234,79,-0.7673406316968193],[119,235,64,-0.7728759149066917],[119,235,65,-0.7725017032040031],[119,235,66,-0.7721297554659459],[119,235,67,-0.7717600780247755],[119,235,68,-0.77139267712513],[119,235,69,-0.7710275589236135],[119,235,70,-0.7706647294883682],[119,235,71,-0.7703041947986483],[119,235,72,-0.7699459607443945],[119,235,73,-0.7695900331258203],[119,235,74,-0.769236417652974],[119,235,75,-0.768885119945327],[119,235,76,-0.7685361455313521],[119,235,77,-0.7681894998481013],[119,235,78,-0.7678451882407891],[119,235,79,-0.7675032159623698],[119,236,64,-0.7730409127282507],[119,236,65,-0.7726665576711766],[119,236,66,-0.7722944654913104],[119,236,67,-0.7719246425221218],[119,236,68,-0.7715570950095096],[119,236,69,-0.7711918291113867],[119,236,70,-0.7708288508972504],[119,236,71,-0.7704681663477577],[119,236,72,-0.7701097813542996],[119,236,73,-0.769753701718588],[119,236,74,-0.7693999331522171],[119,236,75,-0.7690484812762526],[119,236,76,-0.7686993516208094],[119,236,77,-0.7683525496246305],[119,236,78,-0.7680080806346701],[119,236,79,-0.7676659499056708],[119,237,64,-0.7732060396250238],[119,237,65,-0.7728315425974346],[119,237,66,-0.7724593073550496],[119,237,67,-0.77208934023253],[119,237,68,-0.7717216474770126],[119,237,69,-0.7713562352476957],[119,237,70,-0.7709931096154095],[119,237,71,-0.7706322765621916],[119,237,72,-0.7702737419808611],[119,237,73,-0.769917511674606],[119,237,74,-0.7695635913565448],[119,237,75,-0.7692119866493159],[119,237,76,-0.7688627030846551],[119,237,77,-0.7685157461029755],[119,237,78,-0.7681711210529494],[119,237,79,-0.7678288331910874],[119,238,64,-0.773371295233205],[119,238,65,-0.7729966576207883],[119,238,66,-0.7726242806969895],[119,238,67,-0.772254170797638],[119,238,68,-0.7718863341710861],[119,238,69,-0.7715207769777945],[119,238,70,-0.7711575052899038],[119,238,71,-0.7707965250908095],[119,238,72,-0.770437842274737],[119,238,73,-0.7700814626463282],[119,238,74,-0.7697273919202041],[119,238,75,-0.7693756357205543],[119,238,76,-0.7690261995807142],[119,238,77,-0.7686790889427454],[119,238,78,-0.7683343091570181],[119,238,79,-0.7679918654817893],[119,239,64,-0.7735366791879787],[119,239,65,-0.7731619023782305],[119,239,66,-0.7727893851559293],[119,239,67,-0.7724191338580488],[119,239,68,-0.7720511547341342],[119,239,69,-0.7716854539458857],[119,239,70,-0.7713220375667316],[119,239,71,-0.7709609115814029],[119,239,72,-0.770602081885509],[119,239,73,-0.7702455542851241],[119,239,74,-0.7698913344963496],[119,239,75,-0.7695394281449045],[119,239,76,-0.7691898407657027],[119,239,77,-0.768842577802433],[119,239,78,-0.7684976446071423],[119,239,79,-0.7681550464398138],[119,240,64,-0.7737021911234979],[119,240,65,-0.7733272765057143],[119,240,66,-0.7729546203696193],[119,240,67,-0.7725842290533081],[119,240,68,-0.7722161088074949],[119,240,69,-0.7718502657950972],[119,240,70,-0.7714867060908082],[119,240,71,-0.771125435680672],[119,240,72,-0.7707664604616599],[119,240,73,-0.7704097862412558],[119,240,74,-0.7700554187370201],[119,240,75,-0.7697033635761796],[119,240,76,-0.7693536262952052],[119,240,77,-0.7690062123393915],[119,240,78,-0.768661127062441],[119,240,79,-0.7683183757260423],[119,241,64,-0.7738678306728614],[119,241,65,-0.7734927796381302],[119,241,66,-0.7731199859747393],[119,241,67,-0.772749456021882],[119,241,68,-0.7723811960314187],[119,241,69,-0.7720152121674613],[119,241,70,-0.7716515105059449],[119,241,71,-0.7712900970342049],[119,241,72,-0.7709309776505513],[119,241,73,-0.7705741581638563],[119,241,74,-0.7702196442931175],[119,241,75,-0.7698674416670475],[119,241,76,-0.7695175558236522],[119,241,77,-0.769169992209812],[119,241,78,-0.7688247561808632],[119,241,79,-0.7684818530001791],[119,242,64,-0.7740335974681765],[119,242,65,-0.7736584114093684],[119,242,66,-0.7732854816069599],[119,242,67,-0.7729148144012195],[119,242,68,-0.7725464160451304],[119,242,69,-0.7721802927039756],[119,242,70,-0.7718164504549103],[119,242,71,-0.7714548952865381],[119,242,72,-0.7710956330984856],[119,242,73,-0.7707386697009913],[119,242,74,-0.7703840108144676],[119,242,75,-0.7700316620690916],[119,242,76,-0.7696816290043832],[119,242,77,-0.769333917068786],[119,242,78,-0.7689885316192502],[119,242,79,-0.7686454779208123],[119,243,64,-0.774199491140527],[119,243,65,-0.7738241714522871],[119,243,66,-0.7734511069009115],[119,243,67,-0.7730803038277203],[119,243,68,-0.7727117684867968],[119,243,69,-0.7723455070445724],[119,243,70,-0.7719815255793991],[119,243,71,-0.771619830081126],[119,243,72,-0.7712604264506747],[119,243,73,-0.7709033204996273],[119,243,74,-0.7705485179497895],[119,243,75,-0.7701960244327808],[119,243,76,-0.7698458454896138],[119,243,77,-0.7694979865702738],[119,243,78,-0.7691524530333039],[119,243,79,-0.7688092501453829],[119,244,64,-0.7743655113199981],[119,244,65,-0.7739900593987374],[119,244,66,-0.7736168614902085],[119,244,67,-0.7732459239367602],[119,244,68,-0.7728772529935526],[119,244,69,-0.7725108548281424],[119,244,70,-0.7721467355200559],[119,244,71,-0.7717849010603652],[119,244,72,-0.7714253573512642],[119,244,73,-0.7710681102056567],[119,244,74,-0.7707131653467194],[119,244,75,-0.770360528407493],[119,244,76,-0.7700102049304607],[119,244,77,-0.7696622003671288],[119,244,78,-0.7693165200776114],[119,244,79,-0.7689731693302092],[119,245,64,-0.7745316576356452],[119,245,65,-0.7741560748795315],[119,245,66,-0.7737827450074181],[119,245,67,-0.7734116743626591],[119,245,68,-0.7730428692014679],[119,245,69,-0.7726763356925037],[119,245,70,-0.7723120799164442],[119,245,71,-0.7719501078655624],[119,245,72,-0.7715904254433016],[119,245,73,-0.7712330384638653],[119,245,74,-0.7708779526517794],[119,245,75,-0.7705251736414835],[119,245,76,-0.77017470697691],[119,245,77,-0.7698265581110653],[119,245,78,-0.7694807324056129],[119,245,79,-0.7691372351304543],[119,246,64,-0.7746979297155552],[119,246,65,-0.7743222175245048],[119,246,66,-0.7739487570841221],[119,246,67,-0.7735775547387427],[119,246,68,-0.7732086167456104],[119,246,69,-0.7728419492744637],[119,246,70,-0.7724775584071091],[119,246,71,-0.7721154501369971],[119,246,72,-0.7717556303687989],[119,246,73,-0.7713981049179951],[119,246,74,-0.7710428795104389],[119,246,75,-0.770689959781947],[119,246,76,-0.7703393512778798],[119,246,77,-0.769991059452721],[119,246,78,-0.7696450896696637],[119,246,79,-0.7693014472001889],[119,247,64,-0.7748643271868245],[119,247,65,-0.774488486962494],[119,247,66,-0.7741148973508947],[119,247,67,-0.7737435646973208],[119,247,68,-0.7733744952600229],[119,247,69,-0.7730076952097964],[119,247,70,-0.7726431706295529],[119,247,71,-0.7722809275138987],[119,247,72,-0.7719209717687099],[119,247,73,-0.7715633092107219],[119,247,74,-0.7712079455670932],[119,247,75,-0.7708548864749958],[119,247,76,-0.7705041374811962],[119,247,77,-0.7701557040416349],[119,247,78,-0.7698095915210125],[119,247,79,-0.7694658051923685],[119,248,64,-0.7750308496755374],[119,248,65,-0.7746548828213141],[119,248,66,-0.7742811654372804],[119,248,67,-0.7739097038696647],[119,248,68,-0.773540504377702],[119,248,69,-0.7731735731332205],[119,248,70,-0.7728089162202152],[119,248,71,-0.7724465396344246],[119,248,72,-0.7720864492829075],[119,248,73,-0.7717286509836321],[119,248,74,-0.7713731504650398],[119,248,75,-0.7710199533656364],[119,248,76,-0.7706690652335725],[119,248,77,-0.7703204915262241],[119,248,78,-0.7699742376097777],[119,248,79,-0.7696303087588109],[119,249,64,-0.7751974968068271],[119,249,65,-0.7748214047278216],[119,249,66,-0.7744475609718557],[119,249,67,-0.7740759718860697],[119,249,68,-0.773706643730659],[119,249,69,-0.7733395826784619],[119,249,70,-0.7729747948145334],[119,249,71,-0.772612286135722],[119,249,72,-0.7722520625502465],[119,249,73,-0.7718941298772857],[119,249,74,-0.7715384938465417],[119,249,75,-0.7711851600978324],[119,249,76,-0.7708341341806705],[119,249,77,-0.770485421553846],[119,249,78,-0.7701390275850106],[119,249,79,-0.7697949575502583],[119,250,64,-0.7753642682048545],[119,250,65,-0.7749880523078908],[119,250,66,-0.7746140835822074],[119,250,67,-0.774242368375832],[119,250,68,-0.7738729129498978],[119,250,69,-0.77350572347823],[119,250,70,-0.7731408060469206],[119,250,71,-0.7727781666539054],[119,250,72,-0.7724178112085409],[119,250,73,-0.7720597455311935],[119,250,74,-0.7717039753528047],[119,250,75,-0.7713505063144817],[119,250,76,-0.7709993439670784],[119,250,77,-0.7706504937707768],[119,250,78,-0.7703039610946725],[119,250,79,-0.7699597512163552],[119,251,64,-0.7755311634927855],[119,251,65,-0.7751548251863929],[119,251,66,-0.7747807328949096],[119,251,67,-0.7744088929672274],[119,251,68,-0.7740393116653934],[119,251,69,-0.7736719951641968],[119,251,70,-0.7733069495507441],[119,251,71,-0.7729441808240349],[119,251,72,-0.772583694894541],[119,251,73,-0.7722254975837948],[119,251,74,-0.771869594623954],[119,251,75,-0.7715159916573939],[119,251,76,-0.7711646942362874],[119,251,77,-0.7708157078221874],[119,251,78,-0.7704690377856119],[119,251,79,-0.7701246894056247],[119,252,64,-0.7756981822928528],[119,252,65,-0.7753217229872571],[119,252,66,-0.7749475085355861],[119,252,67,-0.7745755452875722],[119,252,68,-0.7742058395061528],[119,252,69,-0.7738383973670584],[119,252,70,-0.773473224958386],[119,252,71,-0.7731103282801775],[119,252,72,-0.7727497132439965],[119,252,73,-0.7723913856725192],[119,252,74,-0.7720353512990976],[119,252,75,-0.7716816157673528],[119,252,76,-0.7713301846307554],[119,252,77,-0.7709810633522072],[119,252,78,-0.7706342573036271],[119,252,79,-0.7702897717655324],[119,253,64,-0.7758653242263243],[119,253,65,-0.7754887453334396],[119,253,66,-0.7751144101288792],[119,253,67,-0.7747423249631925],[119,253,68,-0.7743724961001844],[119,253,69,-0.7740049297165028],[119,253,70,-0.7736396319012129],[119,253,71,-0.7732766086553753],[119,253,72,-0.7729158658916238],[119,253,73,-0.772557409433755],[119,253,74,-0.7722012450162936],[119,253,75,-0.7718473782840845],[119,253,76,-0.7714958147918736],[119,253,77,-0.7711465600038905],[119,253,78,-0.7707996192934338],[119,253,79,-0.7704549979424526],[119,254,64,-0.7760325889135281],[119,254,65,-0.7756558918469474],[119,254,66,-0.7752814372984731],[119,254,67,-0.7749092316194481],[119,254,68,-0.7745392810745215],[119,254,69,-0.7741715918412352],[119,254,70,-0.7738061700095993],[119,254,71,-0.7734430215816709],[119,254,72,-0.7730821524711307],[119,254,73,-0.7727235685028738],[119,254,74,-0.772367275412575],[119,254,75,-0.7720132788462811],[119,254,76,-0.7716615843599917],[119,254,77,-0.7713121974192424],[119,254,78,-0.7709651233986898],[119,254,79,-0.7706203675816943],[119,255,64,-0.7761999759738207],[119,255,65,-0.7758231621488072],[119,255,66,-0.7754485896670632],[119,255,67,-0.7750762648807016],[119,255,68,-0.7747061940551911],[119,255,69,-0.7743383833689454],[119,255,70,-0.7739728389128966],[119,255,71,-0.7736095666900746],[119,255,72,-0.7732485726151848],[119,255,73,-0.7728898625141983],[119,255,74,-0.772533442123918],[119,255,75,-0.7721793170915698],[119,255,76,-0.771827492974386],[119,255,77,-0.7714779752391858],[119,255,78,-0.7711307692619632],[119,255,79,-0.7707858803274676],[119,256,64,-0.7763674850256486],[119,256,65,-0.7759905558591275],[119,256,66,-0.7756158668564179],[119,256,67,-0.7752434243703789],[119,256,68,-0.7748732346672762],[119,256,69,-0.7745053039263711],[119,256,70,-0.7741396382394945],[119,256,71,-0.7737762436106269],[119,256,72,-0.7734151259554755],[119,256,73,-0.7730562911010649],[119,256,74,-0.7726997447853032],[119,256,75,-0.7723454926565747],[119,256,76,-0.7719935402733211],[119,256,77,-0.7716438931036245],[119,256,78,-0.771296556524794],[119,256,79,-0.7709515358229476],[119,257,64,-0.7765351156865261],[119,257,65,-0.7761580725970755],[119,257,66,-0.7757832684873558],[119,257,67,-0.7754107097109484],[119,257,68,-0.7750404025348925],[119,257,69,-0.7746723531392737],[119,257,70,-0.7743065676167991],[119,257,71,-0.7739430519723762],[119,257,72,-0.7735818121226914],[119,257,73,-0.7732228538958005],[119,257,74,-0.7728661830306948],[119,257,75,-0.7725118051768939],[119,257,76,-0.7721597258940278],[119,257,77,-0.7718099506514194],[119,257,78,-0.7714624848276722],[119,257,79,-0.7711173337102505],[119,258,64,-0.7767028675730135],[119,258,65,-0.7763257119808559],[119,258,66,-0.775950794179724],[119,258,67,-0.775578120523898],[119,258,68,-0.775207697281167],[119,258,69,-0.7748395306324178],[119,258,70,-0.77447362667121],[119,258,71,-0.7741099914033559],[119,258,72,-0.7737486307464979],[119,258,73,-0.7733895505297005],[119,258,74,-0.7730327564930158],[119,258,75,-0.7726782542870769],[119,258,76,-0.7723260494726801],[119,258,77,-0.7719761475203674],[119,258,78,-0.7716285538100143],[119,258,79,-0.7712832736304113],[119,259,64,-0.7768707403007786],[119,259,65,-0.7764934736277717],[119,259,66,-0.7761184435524593],[119,259,67,-0.7757456564297968],[119,259,68,-0.7753751185282993],[119,259,69,-0.7750068360296316],[119,259,70,-0.7746408150281829],[119,259,71,-0.7742770615306467],[119,259,72,-0.7739155814555992],[119,259,73,-0.773556380633091],[119,259,74,-0.7731994648042123],[119,259,75,-0.7728448396206877],[119,259,76,-0.7724925106444578],[119,259,77,-0.7721424833472619],[119,259,78,-0.7717947631102263],[119,259,79,-0.7714493552234462],[119,260,64,-0.777038733484565],[119,260,65,-0.7766613571541933],[119,260,66,-0.7762862162235573],[119,260,67,-0.7759133170482637],[119,260,68,-0.7755426658975304],[119,260,69,-0.7751742689537763],[119,260,70,-0.7748081323121971],[119,260,71,-0.7744442619803449],[119,260,72,-0.7740826638777066],[119,260,73,-0.773723343835296],[119,260,74,-0.7733663075952198],[119,260,75,-0.7730115608102716],[119,260,76,-0.7726591090435139],[119,260,77,-0.7723089577678619],[119,260,78,-0.7719611123656713],[119,260,79,-0.77161557812832],[119,261,64,-0.7772068467382166],[119,261,65,-0.7768293621755825],[119,261,66,-0.7764541118100964],[119,261,67,-0.7760811019979919],[119,261,68,-0.7757103390091663],[119,261,69,-0.7753418290267696],[119,261,70,-0.7749755781467805],[119,261,71,-0.7746115923775865],[119,261,72,-0.7742498776395625],[119,261,73,-0.7738904397646633],[119,261,74,-0.773533284495989],[119,261,75,-0.7731784174873801],[119,261,76,-0.7728258443029996],[119,261,77,-0.7724755704169164],[119,261,78,-0.7721276012126939],[119,261,79,-0.7717819419829715],[119,262,64,-0.7773750796746463],[119,262,65,-0.7769974883064613],[119,262,66,-0.7766221299282059],[119,262,67,-0.7762490108967168],[119,262,68,-0.7758781374825472],[119,262,69,-0.7755095158695545],[119,262,70,-0.7751431521544773],[119,262,71,-0.7747790523465155],[119,262,72,-0.7744172223669091],[119,262,73,-0.7740576680485309],[119,262,74,-0.7737003951354527],[119,262,75,-0.7733454092825394],[119,262,76,-0.772992716055032],[119,262,77,-0.7726423209281317],[119,262,78,-0.7722942292865875],[119,262,79,-0.7719484464242797],[119,263,64,-0.7775434319058971],[119,263,65,-0.7771657351604734],[119,263,66,-0.7767902701931282],[119,263,67,-0.7764170433612786],[119,263,68,-0.7760460609361091],[119,263,69,-0.7756773291021611],[119,263,70,-0.7753108539569104],[119,263,71,-0.7749466415103458],[119,263,72,-0.7745846976845498],[119,263,73,-0.7742250283132907],[119,263,74,-0.7738676391415887],[119,263,75,-0.7735125358253113],[119,263,76,-0.7731597239307559],[119,263,77,-0.7728092089342337],[119,263,78,-0.7724609962216581],[119,263,79,-0.772115091088128],[119,264,64,-0.7777119030431209],[119,264,65,-0.7773341023503617],[119,264,66,-0.7769585322191968],[119,264,67,-0.7765851990075987],[119,264,68,-0.7762141089873605],[119,264,69,-0.7758452683436843],[119,264,70,-0.7754786831747587],[119,264,71,-0.775114359491339],[119,264,72,-0.7747523032163273],[119,264,73,-0.7743925201843642],[119,264,74,-0.7740350161413968],[119,264,75,-0.7736797967442723],[119,264,76,-0.7733268675603221],[119,264,77,-0.7729762340669459],[119,264,78,-0.7726279016511999],[119,264,79,-0.77228187560938],[119,265,64,-0.7778804926965548],[119,265,65,-0.7775025894879463],[119,265,66,-0.7771269156198126],[119,265,67,-0.7767534774506588],[119,265,68,-0.7763822812528616],[119,265,69,-0.7760133332122605],[119,265,70,-0.7756466394277344],[119,265,71,-0.7752822059107815],[119,265,72,-0.7749200385851003],[119,265,73,-0.7745601432861816],[119,265,74,-0.7742025257608761],[119,265,75,-0.7738471916669891],[119,265,76,-0.7734941465728635],[119,265,77,-0.7731433959569659],[119,265,78,-0.772794945207473],[119,265,79,-0.7724487996218572],[119,266,64,-0.7780492004755839],[119,266,65,-0.7776711961841862],[119,266,66,-0.7772954200075077],[119,266,67,-0.7769218783045613],[119,266,68,-0.7765505773482848],[119,266,69,-0.776181523325131],[119,266,70,-0.7758147223346454],[119,266,71,-0.7754501803890466],[119,266,72,-0.7750879034128063],[119,266,73,-0.7747278972422427],[119,266,74,-0.7743701676250876],[119,266,75,-0.7740147202200819],[119,266,76,-0.7736615605965584],[119,266,77,-0.7733106942340278],[119,266,78,-0.7729621265217667],[119,266,79,-0.7726158627584012],[119,267,64,-0.7782180259887095],[119,267,65,-0.7778399220491475],[119,267,66,-0.7774640449939116],[119,267,67,-0.7770904011824987],[119,267,68,-0.7767189968883834],[119,267,69,-0.7763498382986088],[119,267,70,-0.7759829315133634],[119,267,71,-0.7756182825455626],[119,267,72,-0.7752558973204291],[119,267,73,-0.7748957816750851],[119,267,74,-0.7745379413581216],[119,267,75,-0.774182382029192],[119,267,76,-0.7738291092585974],[119,267,77,-0.7734781285268705],[119,267,78,-0.7731294452243656],[119,267,79,-0.7727830646508417],[119,268,64,-0.778386968843573],[119,268,65,-0.778008766692028],[119,268,66,-0.7776327901897773],[119,268,67,-0.7772590456967774],[119,268,68,-0.7768875394870163],[119,268,69,-0.7765182777481037],[119,268,70,-0.7761512665808477],[119,268,71,-0.7757865119988376],[119,268,72,-0.7754240199280233],[119,268,73,-0.7750637962063094],[119,268,74,-0.7747058465831222],[119,268,75,-0.7743501767190064],[119,268,76,-0.7739967921852082],[119,268,77,-0.7736456984632613],[119,268,78,-0.7732969009445751],[119,268,79,-0.7729504049300207],[119,269,64,-0.7785560286469244],[119,269,65,-0.7781777297211252],[119,269,66,-0.7778016552049479],[119,269,67,-0.7774278114587856],[119,269,68,-0.7770562047571156],[119,269,69,-0.77668684128809],[119,269,70,-0.7763197271531137],[119,269,71,-0.7759548683664264],[119,269,72,-0.7755922708546827],[119,269,73,-0.7752319404565456],[119,269,74,-0.7748738829222556],[119,269,75,-0.7745181039132252],[119,269,76,-0.7741646090016239],[119,269,77,-0.773813403669964],[119,269,78,-0.7734644933106893],[119,269,79,-0.7731178832257599],[119,270,64,-0.7787252050046847],[119,270,65,-0.7783468107438982],[119,270,66,-0.7779706396484203],[119,270,67,-0.7775966980790563],[119,270,68,-0.7772249923107486],[119,270,69,-0.7768555285321688],[119,270,70,-0.776488312845295],[119,270,71,-0.7761233512649938],[119,270,72,-0.7757606497186014],[119,270,73,-0.775400214045517],[119,270,74,-0.7750420499967716],[119,270,75,-0.7746861632346238],[119,270,76,-0.7743325593321445],[119,270,77,-0.773981243772802],[119,270,78,-0.7736322219500522],[119,270,79,-0.7732854991669236],[119,271,64,-0.7788944975219224],[119,271,65,-0.7785160093669452],[119,271,66,-0.7781397431283211],[119,271,67,-0.7777657051672431],[119,271,68,-0.7773939017590956],[119,271,69,-0.7770243390930455],[119,271,70,-0.7766570232716206],[119,271,71,-0.7762919603102912],[119,271,72,-0.7759291561370523],[119,271,73,-0.775568616592016],[119,271,74,-0.7752103474269817],[119,271,75,-0.7748543543050312],[119,271,76,-0.7745006428001143],[119,271,77,-0.7741492183966338],[119,271,78,-0.773800086489036],[119,271,79,-0.7734532523813956],[119,272,64,-0.7790639058028319],[119,272,65,-0.7786853251959814],[119,272,66,-0.778308965251885],[119,272,67,-0.7779348323320996],[119,272,68,-0.7775629327124272],[119,272,69,-0.7771932725825068],[119,272,70,-0.7768258580453922],[119,272,71,-0.7764606951171344],[119,272,72,-0.7760977897263636],[119,272,73,-0.7757371477138822],[119,272,74,-0.7753787748322354],[119,272,75,-0.7750226767453058],[119,272,76,-0.7746688590278993],[119,272,77,-0.7743173271653316],[119,272,78,-0.7739680865530174],[119,272,79,-0.7736211424960561],[119,273,64,-0.779233429450795],[119,273,65,-0.7788547578359004],[119,273,66,-0.7784783056255163],[119,273,67,-0.7781040791815397],[119,273,68,-0.7777320847801662],[119,273,69,-0.777362328611483],[119,273,70,-0.7769948167790464],[119,273,71,-0.7766295552994651],[119,273,72,-0.7762665501019811],[119,273,73,-0.7759058070280646],[119,273,74,-0.7755473318309831],[119,273,75,-0.775191130175398],[119,273,76,-0.7748372076369494],[119,273,77,-0.7744855697018431],[119,273,78,-0.7741362217664406],[119,273,79,-0.7737891691368441],[119,274,64,-0.7794030680683492],[119,274,65,-0.7790243068907426],[119,274,66,-0.7786477638547575],[119,274,67,-0.7782734453226066],[119,274,68,-0.7779013575708555],[119,274,69,-0.7775315067900158],[119,274,70,-0.7771638990841229],[119,274,71,-0.7767985404703193],[119,274,72,-0.7764354368784363],[119,274,73,-0.7760745941505885],[119,274,74,-0.7757160180407436],[119,274,75,-0.7753597142143186],[119,274,76,-0.7750056882477657],[119,274,77,-0.7746539456281589],[119,274,78,-0.7743044917527842],[119,274,79,-0.7739573319287252],[119,275,64,-0.7795728212572121],[119,275,65,-0.7791939719637195],[119,275,66,-0.7788173395443131],[119,275,67,-0.7784429303614968],[119,275,68,-0.7780707506921828],[119,275,69,-0.7777008067272829],[119,275,70,-0.7773331045712882],[119,275,71,-0.7769676502418517],[119,275,72,-0.7766044496693707],[119,275,73,-0.7762435086965813],[119,275,74,-0.7758848330781286],[119,275,75,-0.7755284284801627],[119,275,76,-0.7751743004799256],[119,275,77,-0.7748224545653372],[119,275,78,-0.7744728961345861],[119,275,79,-0.7741256304957159],[119,276,64,-0.7797426886182492],[119,276,65,-0.7793637526571817],[119,276,66,-0.7789870322980177],[119,276,67,-0.7786125339035286],[119,276,68,-0.7782402637509483],[119,276,69,-0.7778702280315659],[119,276,70,-0.7775024328503041],[119,276,71,-0.7771368842253032],[119,276,72,-0.7767735880875034],[119,276,73,-0.7764125502802393],[119,276,74,-0.7760537765588102],[119,276,75,-0.7756972725900775],[119,276,76,-0.7753430439520499],[119,276,77,-0.7749910961334713],[119,276,78,-0.7746414345334112],[119,276,79,-0.774294064460851],[119,277,64,-0.7799126697515362],[119,277,65,-0.779533648572681],[119,277,66,-0.7791568417188984],[119,277,67,-0.7787822555532031],[119,277,68,-0.7784098963531271],[119,277,69,-0.778039770310312],[119,277,70,-0.7776718835300894],[119,277,71,-0.7773062420310634],[119,277,72,-0.7769428517446935],[119,277,73,-0.7765817185148898],[119,277,74,-0.7762228480975837],[119,277,75,-0.7758662461603242],[119,277,76,-0.7755119182818652],[119,277,77,-0.775159869951752],[119,277,78,-0.7748101065699133],[119,277,79,-0.7744626334462463],[119,278,64,-0.7800827642563359],[119,278,65,-0.7797036593109478],[119,278,66,-0.7793267674091521],[119,278,67,-0.7789520949141828],[119,278,68,-0.7785796481038457],[119,278,69,-0.778209433170112],[119,278,70,-0.7778414562186978],[119,278,71,-0.7774757232686474],[119,278,72,-0.777112240251917],[119,278,73,-0.7767510130129691],[119,278,74,-0.7763920473083438],[119,278,75,-0.7760353488062558],[119,278,76,-0.7756809230861812],[119,278,77,-0.7753287756384452],[119,278,78,-0.7749789118638125],[119,278,79,-0.7746313370730753],[119,279,64,-0.7802529717310769],[119,279,65,-0.7798737844718681],[119,279,66,-0.7794968089701222],[119,279,67,-0.7791220515892676],[119,279,68,-0.7787495186073604],[119,279,69,-0.7783792162166768],[119,279,70,-0.7780111505232941],[119,279,71,-0.7776453275466737],[119,279,72,-0.7772817532192446],[119,279,73,-0.7769204333859989],[119,279,74,-0.7765613738040628],[119,279,75,-0.7762045801422937],[119,279,76,-0.7758500579808678],[119,279,77,-0.7754978128108673],[119,279,78,-0.7751478500338719],[119,279,79,-0.7748001749615463],[119,280,64,-0.7804232917734135],[119,280,65,-0.7800440236545462],[119,280,66,-0.7796669660023615],[119,280,67,-0.7792921251804583],[119,280,68,-0.7789195074671185],[119,280,69,-0.7785491190549],[119,280,70,-0.7781809660502174],[119,280,71,-0.7778150544729254],[119,280,72,-0.7774513902559032],[119,280,73,-0.7770899792446488],[119,280,74,-0.7767308271968518],[119,280,75,-0.77637393978199],[119,280,76,-0.7760193225809169],[119,280,77,-0.7756669810854493],[119,280,78,-0.7753169206979603],[119,280,79,-0.7749691467309646],[119,281,64,-0.7805937239801958],[119,281,65,-0.7802143764572722],[119,281,66,-0.7798372381055996],[119,281,67,-0.7794623152889233],[119,281,68,-0.7790896142857267],[119,281,69,-0.7787191412888256],[119,281,70,-0.778350902404948],[119,281,71,-0.777984903654319],[119,281,72,-0.7776211509702439],[119,281,73,-0.7772596501987042],[119,281,74,-0.7769004070979296],[119,281,75,-0.7765434273379955],[119,281,76,-0.7761887165004103],[119,281,77,-0.7758362800777039],[119,281,78,-0.7754861234730194],[119,281,79,-0.7751382519997008],[119,282,64,-0.7807642679474923],[119,282,65,-0.780384842477546],[119,282,66,-0.7800076248787673],[119,282,67,-0.7796326215150232],[119,282,68,-0.7792598386649751],[119,282,69,-0.7788892825216722],[119,282,70,-0.7785209591921327],[119,282,71,-0.778154874696928],[119,282,72,-0.7777910349697665],[119,282,73,-0.7774294458570902],[119,282,74,-0.7770701131176458],[119,282,75,-0.7767130424220837],[119,282,76,-0.7763582393525447],[119,282,77,-0.776005709402249],[119,282,78,-0.7756554579750884],[119,282,79,-0.7753074903852137],[119,283,64,-0.7809349232705594],[119,283,65,-0.7805554213120462],[119,283,66,-0.7801781259199647],[119,283,67,-0.7798030434582794],[119,283,68,-0.7794301802058051],[119,283,69,-0.7790595423558011],[119,283,70,-0.7786911360155515],[119,283,71,-0.7783249672059507],[119,283,72,-0.777961041861087],[119,283,73,-0.7775993658278394],[119,283,74,-0.777239944865449],[119,283,75,-0.7768827846451183],[119,283,76,-0.7765278907495978],[119,283,77,-0.7761752686727762],[119,283,78,-0.7758249238192714],[119,283,79,-0.7754768615040193],[119,284,64,-0.7811056895439019],[119,284,65,-0.7807261125566913],[119,284,66,-0.7803487408265233],[119,284,67,-0.7799735807174353],[119,284,68,-0.779600638508372],[119,284,69,-0.7792299203927782],[119,284,70,-0.7788614324781806],[119,284,71,-0.778495180785773],[119,284,72,-0.7781311712500001],[119,284,73,-0.7777694097181547],[119,284,74,-0.7774099019499494],[119,284,75,-0.7770526536171158],[119,284,76,-0.7766976703029923],[119,284,77,-0.7763449575021127],[119,284,78,-0.7759945206197996],[119,284,79,-0.7756463649717519],[119,285,64,-0.7812765663612518],[119,285,65,-0.7808969158066172],[119,285,66,-0.7805194691949824],[119,285,67,-0.7801442328904339],[119,285,68,-0.7797712131720212],[119,285,69,-0.7794004162333512],[119,285,70,-0.7790318481821693],[119,285,71,-0.7786655150399449],[119,285,72,-0.7783014227414558],[119,285,73,-0.7779395771343854],[119,285,74,-0.777579983978895],[119,285,75,-0.7772226489472227],[119,285,76,-0.7768675776232714],[119,285,77,-0.7765147755021986],[119,285,78,-0.7761642479900088],[119,285,79,-0.775816000403142],[119,286,64,-0.781447553315544],[119,286,65,-0.7810678306561545],[119,286,66,-0.7806903106210679],[119,286,67,-0.7803149995743949],[119,286,68,-0.7799419037952664],[119,286,69,-0.779571029477427],[119,286,70,-0.7792023827288168],[119,286,71,-0.7788359695711574],[119,286,72,-0.7784717959395366],[119,286,73,-0.7781098676820051],[119,286,74,-0.7777501905591494],[119,286,75,-0.7773927702436916],[119,286,76,-0.7770376123200766],[119,286,77,-0.7766847222840632],[119,286,78,-0.7763341055423154],[119,286,79,-0.7759857674119928],[119,287,64,-0.7816186499989799],[119,287,65,-0.7812388566988907],[119,287,66,-0.7808612646997527],[119,287,67,-0.7804858803656769],[119,287,68,-0.780112709975851],[119,287,69,-0.7797417597241332],[119,287,70,-0.7793730357186347],[119,287,71,-0.7790065439813058],[119,287,72,-0.7786422904475203],[119,287,73,-0.7782802809656733],[119,287,74,-0.7779205212967537],[119,287,75,-0.7775630171139444],[119,287,76,-0.7772077740022102],[119,287,77,-0.7768547974578879],[119,287,78,-0.7765040928882797],[119,287,79,-0.7761556656112422],[119,288,64,-0.7817898560030035],[119,288,65,-0.7814099935276471],[119,288,66,-0.7810323310252353],[119,288,67,-0.7806568748598547],[119,288,68,-0.7802836313107256],[119,288,69,-0.779912606571796],[119,288,70,-0.7795438067513243],[119,288,71,-0.7791772378714656],[119,288,72,-0.7788129058678566],[119,288,73,-0.7784508165892131],[119,288,74,-0.7780909757969037],[119,288,75,-0.7777333891645493],[119,288,76,-0.7773780622776114],[119,288,77,-0.7770250006329833],[119,288,78,-0.7766742096385824],[119,288,79,-0.7763256946129404],[119,289,64,-0.7819611709182792],[119,289,65,-0.7815812407344563],[119,289,66,-0.781203509190916],[119,289,67,-0.7808279826516962],[119,289,68,-0.7804546673960253],[119,289,69,-0.780083569617917],[119,289,70,-0.7797146954257532],[119,289,71,-0.7793480508418701],[119,289,72,-0.7789836418021436],[119,289,73,-0.7786214741555875],[119,289,74,-0.7782615536639266],[119,289,75,-0.7779038860011966],[119,289,76,-0.7775484767533339],[119,289,77,-0.7771953314177651],[119,289,78,-0.776844455403001],[119,289,79,-0.7764958540282263],[119,290,64,-0.7821325943347538],[119,290,65,-0.7817525979106241],[119,290,66,-0.7813747987894595],[119,290,67,-0.7809992033352244],[119,290,68,-0.7806258178271311],[119,290,69,-0.7802546484592352],[119,290,70,-0.7798857013400177],[119,290,71,-0.7795189824919724],[119,290,72,-0.7791544978511913],[119,290,73,-0.7787922532669622],[119,290,74,-0.7784322545013432],[119,290,75,-0.7780745072287627],[119,290,76,-0.7777190170356083],[119,290,77,-0.7773657894198178],[119,290,78,-0.7770148297904731],[119,290,79,-0.7766661434673898],[119,291,64,-0.7823041258416237],[119,291,65,-0.7819240646466975],[119,291,66,-0.7815461994127625],[119,291,67,-0.7811705365036856],[119,291,68,-0.7807970821986387],[119,291,69,-0.7804258426916948],[119,291,70,-0.7800568240914105],[119,291,71,-0.7796900324204136],[119,291,72,-0.7793254736149879],[119,291,73,-0.7789631535246728],[119,291,74,-0.7786030779118362],[119,291,75,-0.7782452524512762],[119,291,76,-0.7778896827298089],[119,291,77,-0.777536374245861],[119,291,78,-0.7771853324090631],[119,291,79,-0.7768365625398398],[119,292,64,-0.7824757650273603],[119,292,65,-0.7820956405324886],[119,292,66,-0.781717710651978],[119,292,67,-0.7813419817495734],[119,292,68,-0.7809684601043818],[119,292,69,-0.7805971519104696],[119,292,70,-0.7802280632764451],[119,292,71,-0.779861200225046],[119,292,72,-0.7794965686927251],[119,292,73,-0.7791341745292493],[119,292,74,-0.7787740234972738],[119,292,75,-0.7784161212719426],[119,292,76,-0.7780604734404786],[119,292,77,-0.7777070855017743],[119,292,78,-0.7773559628659867],[119,292,79,-0.7770071108541275],[119,293,64,-0.7826475114796769],[119,293,65,-0.7822673251570426],[119,293,66,-0.7818893320974831],[119,293,67,-0.7815135386645963],[119,293,68,-0.7811399511374002],[119,293,69,-0.7807685757099304],[119,293,70,-0.780399418490823],[119,293,71,-0.7800324855029017],[119,293,72,-0.7796677826827648],[119,293,73,-0.7793053158803835],[119,293,74,-0.7789450908586767],[119,293,75,-0.7785871132931121],[119,293,76,-0.778231388771296],[119,293,77,-0.7778779227925645],[119,293,78,-0.7775267207675787],[119,293,79,-0.7771777880179147],[119,294,64,-0.7828193647855908],[119,294,65,-0.7824391181087],[119,294,66,-0.782061063338941],[119,294,67,-0.78168520683974],[119,294,68,-0.7813115548900019],[119,294,69,-0.7809401136837075],[119,294,70,-0.7805708893294961],[119,294,71,-0.7802038878502544],[119,294,72,-0.779839115182702],[119,294,73,-0.7794765771769913],[119,294,74,-0.7791162795962818],[119,294,75,-0.7787582281163419],[119,294,76,-0.7784024283251381],[119,294,77,-0.778048885722428],[119,294,78,-0.7776976057193542],[119,294,79,-0.7773485936380355],[119,295,64,-0.7829913245314011],[119,295,65,-0.7826110189750735],[119,295,66,-0.7822329039652778],[119,295,67,-0.7818569858652443],[119,295,68,-0.7814832709537404],[119,295,69,-0.7811117654246672],[119,295,70,-0.7807424753866441],[119,295,71,-0.7803754068625962],[119,295,72,-0.7800105657893415],[119,295,73,-0.7796479580171897],[119,295,74,-0.779287589309518],[119,295,75,-0.7789294653423721],[119,295,76,-0.7785735917040566],[119,295,77,-0.7782199738947275],[119,295,78,-0.7778686173259868],[119,295,79,-0.7775195273204736],[119,296,64,-0.7831633903026651],[119,296,65,-0.7827830273430251],[119,296,66,-0.7824048535646605],[119,296,67,-0.7820288753305807],[119,296,68,-0.781655098919391],[119,296,69,-0.7812835305248893],[119,296,70,-0.7809141762556506],[119,296,71,-0.7805470421346149],[119,296,72,-0.7801821340986744],[119,296,73,-0.7798194579982735],[119,296,74,-0.7794590195969832],[119,296,75,-0.7791008245711039],[119,296,76,-0.7787448785092552],[119,296,77,-0.7783911869119692],[119,296,78,-0.7780397551912843],[119,296,79,-0.7776905886703386],[119,297,64,-0.7833355616842608],[119,297,65,-0.7829551427987285],[119,297,66,-0.782576911724558],[119,297,67,-0.7822008748245135],[119,297,68,-0.7818270383770138],[119,297,69,-0.7814554085757293],[119,297,70,-0.7810859915291661],[119,297,71,-0.780718793260256],[119,297,72,-0.7803538197059414],[119,297,73,-0.7799910767167777],[119,297,74,-0.7796305700565069],[119,297,75,-0.7792723054016609],[119,297,76,-0.7789162883411518],[119,297,77,-0.7785625243758644],[119,297,78,-0.7782110189182521],[119,297,79,-0.7778617772919285],[119,298,64,-0.7835078382603542],[119,298,65,-0.783127364927636],[119,298,66,-0.7827490780317095],[119,298,67,-0.7823729839350684],[119,298,68,-0.7819990889159208],[119,298,69,-0.7816273991677851],[119,298,70,-0.7812579207990755],[119,298,71,-0.7808906598326901],[119,298,72,-0.7805256222055992],[119,298,73,-0.7801628137684451],[119,298,74,-0.7798022402851178],[119,298,75,-0.7794439074323576],[119,298,76,-0.7790878207993457],[119,298,77,-0.7787339858872977],[119,298,78,-0.7783824081090592],[119,298,79,-0.7780330927886976],[119,299,64,-0.7836802196144241],[119,299,65,-0.783299693314504],[119,299,66,-0.7829213520721482],[119,299,67,-0.7825452022495563],[119,299,68,-0.7821712501247003],[119,299,69,-0.7817995018909228],[119,299,70,-0.7814299636565214],[119,299,71,-0.7810626414443377],[119,299,72,-0.7806975411913453],[119,299,73,-0.7803346687482504],[119,299,74,-0.7799740298790674],[119,299,75,-0.7796156302607219],[119,299,76,-0.7792594754826419],[119,299,77,-0.7789055710463508],[119,299,78,-0.7785539223650638],[119,299,79,-0.7782045347632798],[119,300,64,-0.7838527053292293],[119,300,65,-0.7834721275433596],[119,300,66,-0.7830937334311698],[119,300,67,-0.7827175293545406],[119,300,68,-0.7823435215911844],[119,300,69,-0.7819717163342428],[119,300,70,-0.781602119691873],[119,300,71,-0.781234737686836],[119,300,72,-0.7808695762560853],[119,300,73,-0.7805066412503673],[119,300,74,-0.7801459384337976],[119,300,75,-0.7797874734834642],[119,300,76,-0.7794312519890186],[119,300,77,-0.7790772794522696],[119,300,78,-0.7787255612867794],[119,300,79,-0.7783761028174563],[119,301,64,-0.7840252949868709],[119,301,65,-0.7836446671975625],[119,301,66,-0.7832662216933934],[119,301,67,-0.7828899648359005],[119,301,68,-0.7825159029025109],[119,301,69,-0.7821440420861425],[119,301,70,-0.7817743884947871],[119,301,71,-0.7814069481511016],[119,301,72,-0.7810417269919953],[119,301,73,-0.7806787308682315],[119,301,74,-0.7803179655440037],[119,301,75,-0.779959436696539],[119,301,76,-0.7796031499156897],[119,301,77,-0.7792491107035271],[119,301,78,-0.7788973244739382],[119,301,79,-0.7785477965522181],[119,302,64,-0.7841979881687693],[119,302,65,-0.7838173118597834],[119,302,66,-0.7834388164427397],[119,302,67,-0.783062508278806],[119,302,68,-0.7826883936451011],[119,302,69,-0.7823164787342933],[119,302,70,-0.7819467696541857],[119,302,71,-0.7815792724273068],[119,302,72,-0.7812139929904983],[119,302,73,-0.7808509371945167],[119,302,74,-0.78049011080361],[119,302,75,-0.7801315194951213],[119,302,76,-0.7797751688590809],[119,302,77,-0.7794210643977998],[119,302,78,-0.7790692115254669],[119,302,79,-0.7787196155677425],[119,303,64,-0.7843707844556409],[119,303,65,-0.7839900611119796],[119,303,66,-0.7836115172624067],[119,303,67,-0.7832351592676969],[119,303,68,-0.7828609934046357],[119,303,69,-0.7824890258656175],[119,303,70,-0.7821192627582327],[119,303,71,-0.7817517101048574],[119,303,72,-0.7813863738422417],[119,303,73,-0.781023259821112],[119,303,74,-0.7806623738057474],[119,303,75,-0.7803037214735841],[119,303,76,-0.7799473084148069],[119,303,77,-0.779593140131944],[119,303,78,-0.7792412220394642],[119,303,79,-0.7788915594633699],[119,304,64,-0.7845436834275612],[119,304,65,-0.7841629145354576],[119,304,66,-0.7837843237349331],[119,304,67,-0.7834079173863441],[119,304,68,-0.7830337017661175],[119,304,69,-0.7826616830663504],[119,304,70,-0.7822918673943962],[119,304,71,-0.781924260772454],[119,304,72,-0.7815588691371592],[119,304,73,-0.7811956983391842],[119,304,74,-0.780834754142816],[119,304,75,-0.7804760422255601],[119,304,76,-0.7801195681777339],[119,304,77,-0.7797653375020595],[119,304,78,-0.7794133556132627],[119,304,79,-0.7790636278376659],[119,305,64,-0.7847166846639307],[119,305,65,-0.7843358717108411],[119,305,66,-0.7839572354421651],[119,305,67,-0.7835807822178162],[119,305,68,-0.7832065183138389],[119,305,69,-0.782834449922008],[119,305,70,-0.7824645831494154],[119,305,71,-0.78209692401806],[119,305,72,-0.7817314784644381],[119,305,73,-0.7813682523391445],[119,305,74,-0.7810072514064511],[119,305,75,-0.7806484813439097],[119,305,76,-0.7802919477419463],[119,305,77,-0.779937656103455],[119,305,78,-0.7795856118433959],[119,305,79,-0.7792358202883891],[119,306,64,-0.7848897877435008],[119,306,65,-0.7845089322180944],[119,306,66,-0.7841302519652806],[119,306,67,-0.7837537533445055],[119,306,68,-0.783379442631406],[119,306,69,-0.7830073260174106],[119,306,70,-0.7826374096093254],[119,306,71,-0.7822696994289252],[119,306,72,-0.7819042014125435],[119,306,73,-0.7815409214106738],[119,306,74,-0.7811798651875489],[119,306,75,-0.7808210384207442],[119,306,76,-0.7804644467007716],[119,306,77,-0.780110095530674],[119,306,78,-0.7797579903256233],[119,306,79,-0.7794081364125147],[119,307,64,-0.7850629922443405],[119,307,65,-0.7846820956364904],[119,307,66,-0.784303372884757],[119,307,67,-0.783926830348094],[119,307,68,-0.7835524743017062],[119,307,69,-0.783180310936651],[119,307,70,-0.7828103463594248],[119,307,71,-0.7824425865915542],[119,307,72,-0.7820770375691857],[119,307,73,-0.7817137051426886],[119,307,74,-0.7813525950762328],[119,307,75,-0.7809937130473942],[119,307,76,-0.7806370646467472],[119,307,77,-0.7802826553774608],[119,307,78,-0.7799304906548963],[119,307,79,-0.7795805758062018],[119,308,64,-0.7852362977438982],[119,308,65,-0.7848553615446727],[119,308,66,-0.7844765977804334],[119,308,67,-0.7841000128096162],[119,308,68,-0.7837256129069696],[119,308,69,-0.7833534042631559],[119,308,70,-0.7829833929843372],[119,308,71,-0.7826155850917674],[119,308,72,-0.7822499865213828],[119,308,73,-0.7818866031234043],[119,308,74,-0.7815254406619162],[119,308,75,-0.7811665048144707],[119,308,76,-0.7808098011716826],[119,308,77,-0.7804553352368236],[119,308,78,-0.7801031124254219],[119,308,79,-0.7797531380648559],[119,309,64,-0.7854097038189796],[119,309,65,-0.7850287295206325],[119,309,66,-0.7846499262314867],[119,309,67,-0.7842733003094358],[119,309,68,-0.7838988580287474],[119,309,69,-0.7835266055796635],[119,309,70,-0.7831565490679882],[119,309,71,-0.7827886945146787],[119,309,72,-0.782423047855437],[119,309,73,-0.7820596149403122],[119,309,74,-0.7816984015332789],[119,309,75,-0.7813394133118432],[119,309,76,-0.7809826558666364],[119,309,77,-0.7806281347010109],[119,309,78,-0.7802758552306385],[119,309,79,-0.7799258227831058],[119,310,64,-0.7855832100457238],[119,310,65,-0.7852021991416853],[119,310,66,-0.7848233578164097],[119,310,67,-0.784446692427223],[119,310,68,-0.7840722092478871],[119,310,69,-0.7836999144681999],[119,310,70,-0.7833298141935824],[119,310,71,-0.7829619144446718],[119,310,72,-0.7825962211569115],[119,310,73,-0.7822327401801549],[119,310,74,-0.7818714772782439],[119,310,75,-0.781512438128615],[119,310,76,-0.7811556283218931],[119,310,77,-0.7808010533614878],[119,310,78,-0.7804487186631925],[119,310,79,-0.7800986295547794],[119,311,64,-0.7857568159996657],[119,311,65,-0.7853757699845335],[119,311,66,-0.7849968921130721],[119,311,67,-0.7846201887420158],[119,311,68,-0.7842456661445959],[119,311,69,-0.7838733305101412],[119,311,70,-0.7835031879436659],[119,311,71,-0.7831352444654628],[119,311,72,-0.7827695060106928],[119,311,73,-0.78240597842899],[119,311,74,-0.78204466748404],[119,311,75,-0.7816855788531865],[119,311,76,-0.7813287181270246],[119,311,77,-0.7809740908089989],[119,311,78,-0.780621702315001],[119,311,79,-0.7802715579729667],[119,312,64,-0.7859305212557035],[119,312,65,-0.7855494416252331],[119,312,66,-0.7851705286986888],[119,312,67,-0.7847937888321881],[119,312,68,-0.784419228298407],[119,312,69,-0.784046853286181],[119,312,70,-0.783676669900093],[119,312,71,-0.7833086841600668],[119,312,72,-0.7829429020009577],[119,312,73,-0.7825793292721563],[119,312,74,-0.7822179717371687],[119,312,75,-0.7818588350732216],[119,312,76,-0.7815019248708586],[119,312,77,-0.7811472466335352],[119,312,78,-0.7807948057772193],[119,312,79,-0.7804446076299867],[119,313,64,-0.7861043253881226],[119,313,65,-0.7857232136392184],[119,313,66,-0.7853442671498434],[119,313,67,-0.7849674922754736],[119,313,68,-0.7845928952882049],[119,313,69,-0.7842204823763546],[119,313,70,-0.7838502596440504],[119,313,71,-0.7834822331108231],[119,313,72,-0.7831164087111979],[119,313,73,-0.7827527922942987],[119,313,74,-0.7823913896234279],[119,313,75,-0.7820322063756731],[119,313,76,-0.7816752481415018],[119,313,77,-0.7813205204243582],[119,313,78,-0.7809680286402637],[119,313,79,-0.7806177781174121],[119,314,64,-0.7862782279705636],[119,314,65,-0.7858970856012695],[119,314,66,-0.7855181070424564],[119,314,67,-0.7851412986489335],[119,314,68,-0.7847666666921917],[119,314,69,-0.7843942173600065],[119,314,70,-0.7840239567560252],[119,314,71,-0.7836558908993618],[119,314,72,-0.7832900257241872],[119,314,73,-0.7829263670793348],[119,314,74,-0.7825649207278804],[119,314,75,-0.7822056923467482],[119,314,76,-0.7818486875263071],[119,314,77,-0.7814939117699671],[119,314,78,-0.78114137049378],[119,314,79,-0.7807910690260351],[119,315,64,-0.7864522285760837],[119,315,65,-0.7860710570855739],[119,315,66,-0.7856920479518461],[119,315,67,-0.7853152075290177],[119,315,68,-0.7849405420879503],[119,315,69,-0.784568057815852],[119,315,70,-0.7841977608158666],[119,315,71,-0.7838296571066657],[119,315,72,-0.7834637526220433],[119,315,73,-0.7831000532105179],[119,315,74,-0.7827385646349149],[119,315,75,-0.7823792925719721],[119,315,76,-0.7820222426119366],[119,315,77,-0.7816674202581613],[119,315,78,-0.7813148309267052],[119,315,79,-0.7809644799459311],[119,316,64,-0.7866263267771342],[119,316,65,-0.786245127665704],[119,316,66,-0.7858660894527066],[119,316,67,-0.7854892184915427],[119,316,68,-0.7851145210524201],[119,316,69,-0.7847420033219548],[119,316,70,-0.7843716714027619],[119,316,71,-0.784003531313048],[119,316,72,-0.7836375889862048],[119,316,73,-0.7832738502704129],[119,316,74,-0.7829123209282232],[119,316,75,-0.7825530066361643],[119,316,76,-0.7821959129843379],[119,316,77,-0.7818410454760164],[119,316,78,-0.7814884095272443],[119,316,79,-0.7811380104664346],[119,317,64,-0.7868005221455369],[119,317,65,-0.7864192969145933],[119,317,66,-0.786040231119084],[119,317,67,-0.7856633311116682],[119,317,68,-0.7852886031618744],[119,317,69,-0.7849160534557027],[119,317,70,-0.7845456880952149],[119,317,71,-0.7841775130981281],[119,317,72,-0.783811534397408],[119,317,73,-0.7834477578408732],[119,317,74,-0.783086189190777],[119,317,75,-0.7827268341234148],[119,317,76,-0.7823696982287199],[119,317,77,-0.7820147870098616],[119,317,78,-0.7816621058828466],[119,317,79,-0.7813116601761156],[119,318,64,-0.7869748142525462],[119,318,65,-0.7865935644045987],[119,318,66,-0.7862144725244387],[119,318,67,-0.7858375449639584],[119,318,68,-0.7854627879919827],[119,318,69,-0.7850902077938707],[119,318,70,-0.7847198104711068],[119,318,71,-0.7843516020408945],[119,318,72,-0.783985588435749],[119,318,73,-0.7836217755031034],[119,318,74,-0.7832601690048898],[119,318,75,-0.7829007746171468],[119,318,76,-0.7825435979296163],[119,318,77,-0.7821886444453414],[119,318,78,-0.781835919580268],[119,318,79,-0.7814854286628423],[119,319,64,-0.7871492026688263],[119,319,65,-0.7867679297074778],[119,319,66,-0.7863888132416219],[119,319,67,-0.7860118596223596],[119,319,68,-0.7856370751177867],[119,319,69,-0.7852644659125971],[119,319,70,-0.7848940381076733],[119,319,71,-0.7845257977196805],[119,319,72,-0.78415975068066],[119,319,73,-0.7837959028376353],[119,319,74,-0.7834342599521935],[119,319,75,-0.7830748277000934],[119,319,76,-0.7827176116708616],[119,319,77,-0.7823626173673924],[119,319,78,-0.7820098502055481],[119,319,79,-0.7816593155137577],[120,-64,64,-0.730565284049161],[120,-64,65,-0.730285107010849],[120,-64,66,-0.7300073479736885],[120,-64,67,-0.729732012057128],[120,-64,68,-0.7294591042864128],[120,-64,69,-0.7291886295921681],[120,-64,70,-0.7289205928099669],[120,-64,71,-0.7286549986799009],[120,-64,72,-0.7283918518461514],[120,-64,73,-0.7281311568565749],[120,-64,74,-0.727872918162258],[120,-64,75,-0.727617140117105],[120,-64,76,-0.7273638269774125],[120,-64,77,-0.7271129829014435],[120,-64,78,-0.7268646119490076],[120,-64,79,-0.7266187180810344],[120,-63,64,-0.7306826354916931],[120,-63,65,-0.730402016249094],[120,-63,66,-0.7301238149508458],[120,-63,67,-0.7298480367225335],[120,-63,68,-0.7295746865955404],[120,-63,69,-0.7293037695066307],[120,-63,70,-0.7290352902975168],[120,-63,71,-0.7287692537144319],[120,-63,72,-0.7285056644076988],[120,-63,73,-0.7282445269313164],[120,-63,74,-0.727985845742514],[120,-63,75,-0.7277296252013397],[120,-63,76,-0.7274758695702328],[120,-63,77,-0.7272245830136006],[120,-63,78,-0.7269757695973962],[120,-63,79,-0.7267294332886923],[120,-62,64,-0.7308001486238437],[120,-62,65,-0.7305190877023225],[120,-62,66,-0.7302404446668211],[120,-62,67,-0.7299642246490528],[120,-62,68,-0.729690432686531],[120,-62,69,-0.7294190737221512],[120,-62,70,-0.7291501526037587],[120,-62,71,-0.7288836740837195],[120,-62,72,-0.7286196428184915],[120,-62,73,-0.7283580633682077],[120,-62,74,-0.728098940196234],[120,-62,75,-0.7278422776687541],[120,-62,76,-0.7275880800543442],[120,-62,77,-0.7273363515235478],[120,-62,78,-0.7270870961484552],[120,-62,79,-0.7268403179022758],[120,-61,64,-0.7309178236948124],[120,-61,65,-0.7306363216233795],[120,-61,66,-0.7303572373780853],[120,-61,67,-0.7300805760967641],[120,-61,68,-0.7298063428230513],[120,-61,69,-0.7295345425059664],[120,-61,70,-0.7292651799994794],[120,-61,71,-0.7289982600620821],[120,-61,72,-0.7287337873563594],[120,-61,73,-0.7284717664485725],[120,-61,74,-0.7282122018082149],[120,-61,75,-0.7279550978075997],[120,-61,76,-0.7277004587214326],[120,-61,77,-0.7274482887263869],[120,-61,78,-0.7271985919006823],[120,-61,79,-0.7269513722236585],[120,-60,64,-0.731035660950583],[120,-60,65,-0.7307537182618908],[120,-60,66,-0.7304741933378878],[120,-60,67,-0.7301970913225213],[120,-60,68,-0.7299224172655412],[120,-60,69,-0.7296501761220827],[120,-60,70,-0.7293803727522331],[120,-60,71,-0.729113011920603],[120,-60,72,-0.728848098295896],[120,-60,73,-0.728585636450494],[120,-60,74,-0.7283256308600116],[120,-60,75,-0.7280680859028836],[120,-60,76,-0.7278130058599379],[120,-60,77,-0.7275603949139703],[120,-60,78,-0.7273102571493237],[120,-60,79,-0.7270625965514608],[120,-59,64,-0.7311536606339111],[120,-59,65,-0.7308712778642511],[120,-59,66,-0.7305913127962438],[120,-59,67,-0.7303137705799414],[120,-59,68,-0.7300386562712005],[120,-59,69,-0.7297659748312644],[120,-59,70,-0.7294957311263297],[120,-59,71,-0.7292279299271178],[120,-59,72,-0.7289625759084442],[120,-59,73,-0.7286996736488036],[120,-59,74,-0.7284392276299243],[120,-59,75,-0.7281812422363555],[120,-59,76,-0.7279257217550401],[120,-59,77,-0.7276726703748897],[120,-59,78,-0.7274220921863626],[120,-59,79,-0.7271739911810379],[120,-58,64,-0.731271822984374],[120,-58,65,-0.7309890006736739],[120,-58,66,-0.7307085959999844],[120,-58,67,-0.7304306141194548],[120,-58,68,-0.7301550600940399],[120,-58,69,-0.7298819388910833],[120,-58,70,-0.7296112553828836],[120,-58,71,-0.7293430143462649],[120,-58,72,-0.7290772204621472],[120,-58,73,-0.7288138783151301],[120,-58,74,-0.7285529923930484],[120,-58,75,-0.7282945670865582],[120,-58,76,-0.7280386066887103],[120,-58,77,-0.7277851153945245],[120,-58,78,-0.7275340973005682],[120,-58,79,-0.7272855564045291],[120,-57,64,-0.7313901482383522],[120,-57,65,-0.7311068869301729],[120,-57,66,-0.7308260431927381],[120,-57,67,-0.7305476221882855],[120,-57,68,-0.730271628984861],[120,-57,69,-0.7299980685559003],[120,-57,70,-0.7297269457797956],[120,-57,71,-0.7294582654394662],[120,-57,72,-0.7291920322219287],[120,-57,73,-0.7289282507178805],[120,-57,74,-0.728666925421255],[120,-57,75,-0.728408060728808],[120,-57,76,-0.7281516609396907],[120,-57,77,-0.7278977302550238],[120,-57,78,-0.7276462727774764],[120,-57,79,-0.7273972925108384],[120,-56,64,-0.7315086366290514],[120,-56,65,-0.7312249368705841],[120,-56,66,-0.7309436546149524],[120,-56,67,-0.7306647950304748],[120,-56,68,-0.7303883631912796],[120,-56,69,-0.7301143640768868],[120,-56,70,-0.7298428025717743],[120,-56,71,-0.7295736834649489],[120,-56,72,-0.7293070114495158],[120,-56,73,-0.7290427911222626],[120,-56,74,-0.7287810269832136],[120,-56,75,-0.728521723435217],[120,-56,76,-0.7282648847835167],[120,-56,77,-0.7280105152353273],[120,-56,78,-0.7277586188994126],[120,-56,79,-0.7275091997856569],[120,-55,64,-0.7316272883864836],[120,-55,65,-0.7313431507285463],[120,-55,66,-0.7310614305038752],[120,-55,67,-0.7307821328868608],[120,-55,68,-0.7305052629577057],[120,-55,69,-0.730230825702006],[120,-55,70,-0.7299588260103175],[120,-55,71,-0.7296892686777265],[120,-55,72,-0.7294221584034192],[120,-55,73,-0.7291574997902651],[120,-55,74,-0.7288952973443723],[120,-55,75,-0.7286355554746734],[120,-55,76,-0.728378278492498],[120,-55,77,-0.7281234706111471],[120,-55,78,-0.7278711359454713],[120,-55,79,-0.7276212785114426],[120,-54,64,-0.731746103737517],[120,-54,65,-0.7314615287345523],[120,-54,66,-0.7311793710936048],[120,-54,67,-0.730899635995129],[120,-54,68,-0.7306223285253939],[120,-54,69,-0.730347453676063],[120,-54,70,-0.7300750163437622],[120,-54,71,-0.7298050213296492],[120,-54,72,-0.729537473338983],[120,-54,73,-0.729272376980708],[120,-54,74,-0.7290097367670078],[120,-54,75,-0.7287495571128919],[120,-54,76,-0.728491842335768],[120,-54,77,-0.728236596655016],[120,-54,78,-0.7279838241915663],[120,-54,79,-0.7277335289674715],[120,-53,64,-0.7318650829058646],[120,-53,65,-0.7315800711159357],[120,-53,66,-0.7312974766150776],[120,-53,67,-0.7310173045898005],[120,-53,68,-0.7307395601324308],[120,-53,69,-0.730464248240692],[120,-53,70,-0.7301913738172715],[120,-53,71,-0.7299209416693905],[120,-53,72,-0.729652956508373],[120,-53,73,-0.7293874229492299],[120,-53,74,-0.7291243455102129],[120,-53,75,-0.7288637286124007],[120,-53,76,-0.7286055765792714],[120,-53,77,-0.7283498936362764],[120,-53,78,-0.7280966839104184],[120,-53,79,-0.7278459514298231],[120,-52,64,-0.7319842261120708],[120,-52,65,-0.731698778096859],[120,-52,66,-0.731415747296056],[120,-52,67,-0.7311351389022188],[120,-52,68,-0.7308569580137234],[120,-52,69,-0.7305812096343446],[120,-52,70,-0.7303078986728233],[120,-52,71,-0.7300370299424359],[120,-52,72,-0.7297686081605635],[120,-52,73,-0.7295026379482756],[120,-52,74,-0.7292391238298841],[120,-52,75,-0.7289780702325291],[120,-52,76,-0.7287194814857516],[120,-52,77,-0.7284633618210669],[120,-52,78,-0.7282097153715421],[120,-52,79,-0.7279585461713692],[120,-51,64,-0.7321035335735625],[120,-51,65,-0.7318176498983637],[120,-51,66,-0.7315341833611778],[120,-51,67,-0.7312531391606005],[120,-51,68,-0.7309745224010483],[120,-51,69,-0.7306983380923393],[120,-51,70,-0.7304245911492594],[120,-51,71,-0.7301532863911323],[120,-51,72,-0.7298844285413879],[120,-51,73,-0.7296180222271462],[120,-51,74,-0.7293540719787717],[120,-51,75,-0.7290925822294579],[120,-51,76,-0.7288335573148008],[120,-51,77,-0.7285770014723721],[120,-51,78,-0.7283229188412963],[120,-51,79,-0.7280713134618235],[120,-50,64,-0.7322230055046296],[120,-50,65,-0.7319366867383515],[120,-50,66,-0.7316527850319383],[120,-50,67,-0.731371305590016],[120,-50,68,-0.7310922535230329],[120,-50,69,-0.7308156338468423],[120,-50,70,-0.7305414514822667],[120,-50,71,-0.7302697112546686],[120,-50,72,-0.7300004178935187],[120,-50,73,-0.7297335760319795],[120,-50,74,-0.7294691902064598],[120,-50,75,-0.729207264856199],[120,-50,76,-0.7289478043228403],[120,-50,77,-0.7286908128500039],[120,-50,78,-0.7284362945828642],[120,-50,79,-0.7281842535677218],[120,-49,64,-0.7323426421164475],[120,-49,65,-0.7320558888316059],[120,-49,66,-0.7317715525267114],[120,-49,67,-0.7314896384124113],[120,-49,68,-0.7312101516051779],[120,-49,69,-0.7309330971268903],[120,-49,70,-0.7306584799043994],[120,-49,71,-0.7303863047690983],[120,-49,72,-0.7301165764564901],[120,-49,73,-0.7298492996057723],[120,-49,74,-0.7295844787593893],[120,-49,75,-0.7293221183626186],[120,-49,76,-0.7290622227631428],[120,-49,77,-0.7288047962106228],[120,-49,78,-0.7285498428562751],[120,-49,79,-0.7282973667524437],[120,-48,64,-0.7324624436170577],[120,-48,65,-0.7321752563897735],[120,-48,66,-0.7318904860607311],[120,-48,67,-0.7316081378465898],[120,-48,68,-0.7313282168698374],[120,-48,69,-0.73105072815837],[120,-48,70,-0.730775676645059],[120,-48,71,-0.7305030671673195],[120,-48,72,-0.7302329044666789],[120,-48,73,-0.7299651931883606],[120,-48,74,-0.7296999378808373],[120,-48,75,-0.7294371429954165],[120,-48,76,-0.7291768128858123],[120,-48,77,-0.7289189518077182],[120,-48,78,-0.7286635639183854],[120,-48,79,-0.7284106532761936],[120,-47,64,-0.732582410211418],[120,-47,65,-0.7322947896214145],[120,-47,66,-0.7320095858461412],[120,-47,67,-0.7317268041082615],[120,-47,68,-0.7314464495362691],[120,-47,69,-0.7311685271640699],[120,-47,70,-0.7308930419305459],[120,-47,71,-0.730619998679126],[120,-47,72,-0.7303494021573536],[120,-47,73,-0.7300812570164702],[120,-47,74,-0.7298155678109683],[120,-47,75,-0.7295523389981774],[120,-47,76,-0.7292915749378346],[120,-47,77,-0.7290332798916591],[120,-47,78,-0.7287774580229284],[120,-47,79,-0.72852411339605],[120,-46,64,-0.7327025421013909],[120,-46,65,-0.7324144887319893],[120,-46,66,-0.7321288520919833],[120,-46,67,-0.7318456374100306],[120,-46,68,-0.7315648498206231],[120,-46,69,-0.7312864943636661],[120,-46,70,-0.7310105759840448],[120,-46,71,-0.7307370995311935],[120,-46,72,-0.7304660697586629],[120,-46,73,-0.7301974913237038],[120,-46,74,-0.7299313687868209],[120,-46,75,-0.7296677066113569],[120,-46,76,-0.7294065091630649],[120,-46,77,-0.7291477807096809],[120,-46,78,-0.7288915254205012],[120,-46,79,-0.7286377473659535],[120,-45,64,-0.7328228394857299],[120,-45,65,-0.7325343539238474],[120,-45,66,-0.7322482850041839],[120,-45,67,-0.7319646379613838],[120,-45,68,-0.7316834179359271],[120,-45,69,-0.7314046299737108],[120,-45,70,-0.7311282790256142],[120,-45,71,-0.7308543699470679],[120,-45,72,-0.7305829074976218],[120,-45,73,-0.7303138963405281],[120,-45,74,-0.7300473410422947],[120,-45,75,-0.72978324607227],[120,-45,76,-0.7295216158022141],[120,-45,77,-0.7292624545058725],[120,-45,78,-0.7290057663585521],[120,-45,79,-0.7287515554366932],[120,-44,64,-0.7329433025601312],[120,-44,65,-0.7326543853962763],[120,-44,66,-0.7323678847856055],[120,-44,67,-0.7320838059687398],[120,-44,68,-0.7318021540921388],[120,-44,69,-0.7315229342076823],[120,-44,70,-0.731246151272235],[120,-44,71,-0.7309718101472152],[120,-44,72,-0.7306999155981635],[120,-44,73,-0.7304304722943247],[120,-44,74,-0.7301634848082018],[120,-44,75,-0.7298989576151403],[120,-44,76,-0.7296368950928999],[120,-44,77,-0.7293773015212266],[120,-44,78,-0.7291201810814307],[120,-44,79,-0.7288655378559571],[120,-43,64,-0.7330639315172203],[120,-43,65,-0.7327745833454905],[120,-43,66,-0.7324876516360335],[120,-43,67,-0.7322031416354371],[120,-43,68,-0.7319210584961324],[120,-43,69,-0.7316414072759727],[120,-43,70,-0.731364192937799],[120,-43,71,-0.731089420349009],[120,-43,72,-0.7308170942811251],[120,-43,73,-0.7305472194093765],[120,-43,74,-0.7302798003122527],[120,-43,75,-0.7300148414710881],[120,-43,76,-0.7297523472696332],[120,-43,77,-0.7294923219936273],[120,-43,78,-0.7292347698303755],[120,-43,79,-0.7289796948683192],[120,-42,64,-0.7331847265465397],[120,-42,65,-0.7328949479646181],[120,-42,66,-0.7326075857521631],[120,-42,67,-0.7323226451617216],[120,-42,68,-0.732040131351686],[120,-42,69,-0.7317600493858744],[120,-42,70,-0.7314824042330955],[120,-42,71,-0.7312072007667175],[120,-42,72,-0.7309344437642359],[120,-42,73,-0.7306641379068556],[120,-42,74,-0.7303962877790442],[120,-42,75,-0.7301308978681166],[120,-42,76,-0.7298679725638059],[120,-42,77,-0.7296075161578365],[120,-42,78,-0.7293495328434998],[120,-42,79,-0.7290940267152263],[120,-41,64,-0.7333056878346],[120,-41,65,-0.7330154794437511],[120,-41,66,-0.7327276873276513],[120,-41,67,-0.7324423167447965],[120,-41,68,-0.732159372859532],[120,-41,69,-0.7318788607416314],[120,-41,70,-0.7316007853658623],[120,-41,71,-0.7313251516115543],[120,-41,72,-0.7310519642621673],[120,-41,73,-0.7307812280048733],[120,-41,74,-0.7305129474301095],[120,-41,75,-0.7302471270311628],[120,-41,76,-0.7299837712037408],[120,-41,77,-0.7297228842455441],[120,-41,78,-0.7294644703558433],[120,-41,79,-0.7292085336350488],[120,-40,64,-0.7334268155648598],[120,-40,65,-0.7331361779699266],[120,-40,66,-0.7328479565530958],[120,-40,67,-0.7325621565788034],[120,-40,68,-0.7322787832173379],[120,-40,69,-0.7319978415444195],[120,-40,70,-0.7317193365407655],[120,-40,71,-0.7314432730916582],[120,-40,72,-0.7311696559865132],[120,-40,73,-0.7308984899184605],[120,-40,74,-0.7306297794838986],[120,-40,75,-0.7303635291820779],[120,-40,76,-0.7300997434146718],[120,-40,77,-0.7298384264853492],[120,-40,78,-0.7295795825993511],[120,-40,79,-0.7293232158630605],[120,-39,64,-0.7335481099177481],[120,-39,65,-0.7332570437271486],[120,-39,66,-0.7329683936160584],[120,-39,67,-0.732682164854844],[120,-39,68,-0.7323983626197279],[120,-39,69,-0.732116991992368],[120,-39,70,-0.7318380579594219],[120,-39,71,-0.7315615654121159],[120,-39,72,-0.7312875191458119],[120,-39,73,-0.7310159238595899],[120,-39,74,-0.7307467841558004],[120,-39,75,-0.730480104539649],[120,-39,76,-0.730215889418766],[120,-39,77,-0.729954143102781],[120,-39,78,-0.7296948698028964],[120,-39,79,-0.7294380736314602],[120,-38,64,-0.7336695710706447],[120,-38,65,-0.7333780768963687],[120,-38,66,-0.7330889987010446],[120,-38,67,-0.7328023417609607],[120,-38,68,-0.7325181112582639],[120,-38,69,-0.7322363122805405],[120,-38,70,-0.7319569498203795],[120,-38,71,-0.7316800287749416],[120,-38,72,-0.731405553945527],[120,-38,73,-0.7311335300371559],[120,-38,74,-0.7308639616581225],[120,-38,75,-0.7305968533195786],[120,-38,76,-0.7303322094351041],[120,-38,77,-0.7300700343202791],[120,-38,78,-0.7298103321922604],[120,-38,79,-0.729553107169352],[120,-37,64,-0.7337911991979313],[120,-37,65,-0.7334992776555361],[120,-37,66,-0.733209771989555],[120,-37,67,-0.7329226874821873],[120,-37,68,-0.7326380293214959],[120,-37,69,-0.7323558026009855],[120,-37,70,-0.7320760123191676],[120,-37,71,-0.7317986633791286],[120,-37,72,-0.7315237605880969],[120,-37,73,-0.7312513086570251],[120,-37,74,-0.730981312200142],[120,-37,75,-0.7307137757345368],[120,-37,76,-0.7304487036797298],[120,-37,77,-0.7301861003572443],[120,-37,78,-0.7299259699901823],[120,-37,79,-0.7296683167027957],[120,-36,64,-0.7339129944709786],[120,-36,65,-0.7336206461795862],[120,-36,66,-0.7333307136600715],[120,-36,67,-0.7330432022005362],[120,-36,68,-0.7327581169949486],[120,-36,69,-0.7324754631427232],[120,-36,70,-0.7321952456482844],[120,-36,71,-0.731917469420635],[120,-36,72,-0.731642139272923],[120,-36,73,-0.731369259922024],[120,-36,74,-0.7310988359880924],[120,-36,75,-0.7308308719941465],[120,-36,76,-0.7305653723656385],[120,-36,77,-0.7303023414300254],[120,-36,78,-0.7300417834163468],[120,-36,79,-0.7297837024547938],[120,-35,64,-0.734034957058133],[120,-35,65,-0.7337421826404265],[120,-35,66,-0.7334518238880456],[120,-35,67,-0.7331638860949851],[120,-35,68,-0.7328783744611093],[120,-35,69,-0.7325952940917329],[120,-35,70,-0.7323146499971835],[120,-35,71,-0.7320364470923716],[120,-35,72,-0.7317606901963556],[120,-35,73,-0.7314873840319247],[120,-35,74,-0.7312165332251506],[120,-35,75,-0.7309481423049714],[120,-35,76,-0.7306822157027619],[120,-35,77,-0.7304187577519057],[120,-35,78,-0.7301577726873703],[120,-35,79,-0.729899264645278],[120,-34,64,-0.7341570871247685],[120,-34,65,-0.7338638872069877],[120,-34,66,-0.7335731028459487],[120,-34,67,-0.7332847393415285],[120,-34,68,-0.7329988018994782],[120,-34,69,-0.7327152956310031],[120,-34,70,-0.7324342255523254],[120,-34,71,-0.7321555965842528],[120,-34,72,-0.7318794135517454],[120,-34,73,-0.731605681183497],[120,-34,74,-0.7313344041114874],[120,-34,75,-0.7310655868705658],[120,-34,76,-0.7307992338980211],[120,-34,77,-0.7305353495331539],[120,-34,78,-0.7302739380168519],[120,-34,79,-0.7300150034911597],[120,-33,64,-0.7342793848332654],[120,-33,65,-0.7339857600452045],[120,-33,66,-0.7336945507032517],[120,-33,67,-0.733405762113157],[120,-33,68,-0.7331193994865487],[120,-33,69,-0.7328354679405129],[120,-33,70,-0.7325539724971565],[120,-33,71,-0.7322749180831758],[120,-33,72,-0.731998309529423],[120,-33,73,-0.7317241515704874],[120,-33,74,-0.7314524488442476],[120,-33,75,-0.7311832058914551],[120,-33,76,-0.7309164271553042],[120,-33,77,-0.7306521169810039],[120,-33,78,-0.730390279615353],[120,-33,79,-0.7301309192063102],[120,-32,64,-0.7344018503430343],[120,-32,65,-0.7341078013180374],[120,-32,66,-0.7338161676264485],[120,-32,67,-0.7335269545798807],[120,-32,68,-0.7332401673958298],[120,-32,69,-0.7329558111972528],[120,-32,70,-0.7326738910121324],[120,-32,71,-0.7323944117730435],[120,-32,72,-0.7321173783167214],[120,-32,73,-0.7318427953836415],[120,-32,74,-0.7315706676175722],[120,-32,75,-0.7313009995651583],[120,-32,76,-0.7310337956754902],[120,-32,77,-0.7307690602996768],[120,-32,78,-0.7305067976904194],[120,-32,79,-0.7302470120015825],[120,-31,64,-0.7345244838104953],[120,-31,65,-0.7342300111854528],[120,-31,66,-0.7339379537790349],[120,-31,67,-0.733648316908708],[120,-31,68,-0.7333611057978253],[120,-31,69,-0.7330763255752056],[120,-31,70,-0.7327939812746971],[120,-31,71,-0.7325140778347443],[120,-31,72,-0.7322366200979556],[120,-31,73,-0.7319616128106837],[120,-31,74,-0.7316890606225778],[120,-31,75,-0.7314189680861662],[120,-31,76,-0.7311513396564275],[120,-31,77,-0.7308861796903607],[120,-31,78,-0.7306234924465611],[120,-31,79,-0.7303632820847904],[120,-30,64,-0.7346472853891292],[120,-30,65,-0.7343523898044744],[120,-30,66,-0.7340599093215606],[120,-30,67,-0.7337698492636975],[120,-30,68,-0.7334822148600861],[120,-30,69,-0.7331970112453969],[120,-30,70,-0.7329142434593341],[120,-30,71,-0.7326339164462023],[120,-30,72,-0.7323560350544738],[120,-30,73,-0.7320806040363688],[120,-30,74,-0.7318076280474077],[120,-30,75,-0.7315371116459943],[120,-30,76,-0.7312690592929851],[120,-30,77,-0.7310034753512613],[120,-30,78,-0.7307403640853032],[120,-30,79,-0.7304797296607604],[120,-29,64,-0.7347702552294644],[120,-29,65,-0.7344749373291695],[120,-29,66,-0.7341820344116152],[120,-29,67,-0.7338915518059446],[120,-29,68,-0.7336034947471961],[120,-29,69,-0.7333178683758823],[120,-29,70,-0.7330346777375537],[120,-29,71,-0.7327539277823655],[120,-29,72,-0.7324756233646438],[120,-29,73,-0.7321997692424675],[120,-29,74,-0.7319263700772191],[120,-29,75,-0.7316554304331678],[120,-29,76,-0.7313869547770399],[120,-29,77,-0.731120947477589],[120,-29,78,-0.7308574128051719],[120,-29,79,-0.7305963549313175],[120,-28,64,-0.7348933934790642],[120,-28,65,-0.7345976539106367],[120,-28,66,-0.7343043292038159],[120,-28,67,-0.7340134246935679],[120,-28,68,-0.733724945620759],[120,-28,69,-0.7334388971317339],[120,-28,70,-0.7331552842778791],[120,-28,71,-0.7328741120151909],[120,-28,72,-0.7325953852038402],[120,-28,73,-0.7323191086077543],[120,-28,74,-0.7320452868941688],[120,-28,75,-0.7317739246332093],[120,-28,76,-0.7315050262974622],[120,-28,77,-0.7312385962615449],[120,-28,78,-0.7309746388016813],[120,-28,79,-0.7307131580952714],[120,-27,64,-0.7350167002825776],[120,-27,65,-0.7347205396970566],[120,-27,66,-0.7344267938498583],[120,-27,67,-0.7341354680817616],[120,-27,68,-0.7338465676394503],[120,-27,69,-0.7335600976750913],[120,-27,70,-0.733276063245898],[120,-27,71,-0.732994469313697],[120,-27,72,-0.7327153207444947],[120,-27,73,-0.732438622308058],[120,-27,74,-0.732164378677465],[120,-27,75,-0.7318925944286891],[120,-27,76,-0.7316232740401674],[120,-27,77,-0.731356421892372],[120,-27,78,-0.7310920422673853],[120,-27,79,-0.7308301393484686],[120,-26,64,-0.7351401757817194],[120,-26,65,-0.734843594833672],[120,-26,66,-0.7345494284984961],[120,-26,67,-0.7342576821227738],[120,-26,68,-0.733968360958996],[120,-26,69,-0.733681470165142],[120,-26,70,-0.7333970148042416],[120,-26,71,-0.7331149998439427],[120,-26,72,-0.732835430156077],[120,-26,73,-0.7325583105162409],[120,-26,74,-0.7322836456033468],[120,-26,75,-0.7320114399992053],[120,-26,76,-0.7317416981880954],[120,-26,77,-0.7314744245563349],[120,-26,78,-0.7312096233918554],[120,-26,79,-0.7309472988837707],[120,-25,64,-0.7352638201152927],[120,-25,65,-0.7349668194628095],[120,-25,66,-0.7346722332955637],[120,-25,67,-0.7343800669659298],[120,-25,68,-0.7340903257321958],[120,-25,69,-0.733803014758143],[120,-25,70,-0.733518139112608],[120,-25,71,-0.7332357037690497],[120,-25,72,-0.7329557136051157],[120,-25,73,-0.7326781734022221],[120,-25,74,-0.7324030878451058],[120,-25,75,-0.7321304615214055],[120,-25,76,-0.7318602989212328],[120,-25,77,-0.7315926044367418],[120,-25,78,-0.7313273823617039],[120,-25,79,-0.7310646368910773],[120,-24,64,-0.7353876334191684],[120,-24,65,-0.7350902137238605],[120,-24,66,-0.7347952083839563],[120,-24,67,-0.7345026227576117],[120,-24,68,-0.7342124621089022],[120,-24,69,-0.7339247316074009],[120,-24,70,-0.7336394363277408],[120,-24,71,-0.7333565812491822],[120,-24,72,-0.7330761712551783],[120,-24,73,-0.732798211132956],[120,-24,74,-0.732522705573066],[120,-24,75,-0.7322496591689667],[120,-24,76,-0.7319790764165921],[120,-24,77,-0.7317109617139235],[120,-24,78,-0.7314453193605632],[120,-24,79,-0.7311821535573043],[120,-23,64,-0.7355116158263367],[120,-23,65,-0.7352137777533316],[120,-23,66,-0.7349183539036799],[120,-23,67,-0.7346253496413094],[120,-23,68,-0.7343347702360721],[120,-23,69,-0.7340466208633227],[120,-23,70,-0.7337609066034808],[120,-23,71,-0.7334776324415979],[120,-23,72,-0.7331968032669232],[120,-23,73,-0.7329184238724837],[120,-23,74,-0.7326424989546356],[120,-23,75,-0.7323690331126462],[120,-23,76,-0.7320980308482632],[120,-23,77,-0.7318294965652853],[120,-23,78,-0.7315634345691369],[120,-23,79,-0.7312998490664364],[120,-22,64,-0.7356357674668945],[120,-22,65,-0.7353375116848317],[120,-22,66,-0.73504166999184],[120,-22,67,-0.7347482477576077],[120,-22,68,-0.7344572502577535],[120,-22,69,-0.7341686826734033],[120,-22,70,-0.733882550090753],[120,-22,71,-0.7335988575006352],[120,-22,72,-0.7333176097980852],[120,-22,73,-0.7330388117819205],[120,-22,74,-0.7327624681542927],[120,-22,75,-0.7324885835202682],[120,-22,76,-0.7322171623873994],[120,-22,77,-0.7319482091652928],[120,-22,78,-0.7316817281651855],[120,-22,79,-0.7314177235995123],[120,-21,64,-0.7357600884680309],[120,-21,65,-0.7354614156490586],[120,-21,66,-0.7351651567826261],[120,-21,67,-0.7348713172441723],[120,-21,68,-0.7345799023150716],[120,-21,69,-0.734290917182211],[120,-21,70,-0.734004366937552],[120,-21,71,-0.7337202565776988],[120,-21,72,-0.7334385910034623],[120,-21,73,-0.733159375019441],[120,-21,74,-0.7328826133335713],[120,-21,75,-0.73260831055671],[120,-21,76,-0.7323364712022039],[120,-21,77,-0.7320670996854585],[120,-21,78,-0.7318002003235136],[120,-21,79,-0.7315357773346114],[120,-20,64,-0.7358845789540792],[120,-20,65,-0.7355854897738504],[120,-20,66,-0.7352888144073648],[120,-20,67,-0.734994558235802],[120,-20,68,-0.7347027265462809],[120,-20,69,-0.7344133245314393],[120,-20,70,-0.7341263572889947],[120,-20,71,-0.7338418298213119],[120,-20,72,-0.7335597470349674],[120,-20,73,-0.7332801137403308],[120,-20,74,-0.7330029346511138],[120,-20,75,-0.7327282143839537],[120,-20,76,-0.7324559574579816],[120,-20,77,-0.7321861682943928],[120,-20,78,-0.7319188512160204],[120,-20,79,-0.7316540104469051],[120,-19,64,-0.7360092390464973],[120,-19,65,-0.7357097341841651],[120,-19,66,-0.7354126429944989],[120,-19,67,-0.7351179708644073],[120,-19,68,-0.7348257230867442],[120,-19,69,-0.734535904859887],[120,-19,70,-0.7342485212872986],[120,-19,71,-0.7339635773770945],[120,-19,72,-0.7336810780416071],[120,-19,73,-0.7334010280969662],[120,-19,74,-0.7331234322626494],[120,-19,75,-0.7328482951610645],[120,-19,76,-0.7325756213171175],[120,-19,77,-0.7323054151577835],[120,-19,78,-0.7320376810116799],[120,-19,79,-0.7317724231086358],[120,-18,64,-0.7361340688638889],[120,-18,65,-0.7358341490021034],[120,-18,66,-0.7355366426696096],[120,-18,67,-0.7352415552590342],[120,-18,68,-0.7349488920689551],[120,-18,69,-0.7346586583034794],[120,-18,70,-0.7343708590718051],[120,-18,71,-0.7340854993877873],[120,-18,72,-0.7338025841695045],[120,-18,73,-0.7335221182388366],[120,-18,74,-0.7332441063210173],[120,-18,75,-0.7329685530442145],[120,-18,76,-0.7326954629390997],[120,-18,77,-0.7324248404384179],[120,-18,78,-0.7321566898765617],[120,-18,79,-0.7318910154891392],[120,-17,64,-0.7362590685219836],[120,-17,65,-0.7359587343468876],[120,-17,66,-0.7356608135553956],[120,-17,67,-0.7353653115458418],[120,-17,68,-0.7350722336225176],[120,-17,69,-0.7347815849952488],[120,-17,70,-0.7344933707789577],[120,-17,71,-0.7342075959932297],[120,-17,72,-0.733924265561878],[120,-17,73,-0.7336433843125232],[120,-17,74,-0.7333649569761445],[120,-17,75,-0.7330889881866602],[120,-17,76,-0.7328154824804975],[120,-17,77,-0.7325444442961621],[120,-17,78,-0.7322758779738111],[120,-17,79,-0.7320097877548227],[120,-16,64,-0.7363842381336889],[120,-16,65,-0.7360834903349136],[120,-16,66,-0.7357851557717255],[120,-16,67,-0.7354892398481555],[120,-16,68,-0.7351957478741973],[120,-16,69,-0.7349046850653851],[120,-16,70,-0.734616056542355],[120,-16,71,-0.7343298673304117],[120,-16,72,-0.7340461223590933],[120,-16,73,-0.7337648264617507],[120,-16,74,-0.733485984375098],[120,-16,75,-0.7332096007387952],[120,-16,76,-0.7329356800950143],[120,-16,77,-0.7326642268880117],[120,-16,78,-0.7323952454637002],[120,-16,79,-0.7321287400692181],[120,-15,64,-0.7365095778090761],[120,-15,65,-0.7362084170797374],[120,-15,66,-0.735909669435624],[120,-15,67,-0.7356133402864525],[120,-15,68,-0.7353194349479084],[120,-15,69,-0.735027958641223],[120,-15,70,-0.7347389164927358],[120,-15,71,-0.7344523135334605],[120,-15,72,-0.7341681546986494],[120,-15,73,-0.7338864448273735],[120,-15,74,-0.7336071886620724],[120,-15,75,-0.7333303908481359],[120,-15,76,-0.7330560559334725],[120,-15,77,-0.7327841883680788],[120,-15,78,-0.732514792503614],[120,-15,79,-0.7322478725929668],[120,-14,64,-0.7366350876553671],[120,-14,65,-0.7363335146920611],[120,-14,66,-0.7360343546612579],[120,-14,67,-0.7357376129783485],[120,-14,68,-0.735443294964699],[120,-14,69,-0.7351514058472275],[120,-14,70,-0.7348619507579659],[120,-14,71,-0.7345749347336262],[120,-14,72,-0.7342903627151649],[120,-14,73,-0.7340082395473624],[120,-14,74,-0.7337285699783731],[120,-14,75,-0.7334513586593076],[120,-14,76,-0.7331766101438],[120,-14,77,-0.7329043288875778],[120,-14,78,-0.7326345192480364],[120,-14,79,-0.7323671854838053],[120,-13,64,-0.7367607677769858],[120,-13,65,-0.7364587832797855],[120,-13,66,-0.7361592115599885],[120,-13,67,-0.7358620580386495],[120,-13,68,-0.735567328042804],[120,-13,69,-0.7352750268050462],[120,-13,70,-0.7349851594630898],[120,-13,71,-0.7346977310593343],[120,-13,72,-0.7344127465404297],[120,-13,73,-0.7341302107568553],[120,-13,74,-0.7338501284624707],[120,-13,75,-0.7335725043140964],[120,-13,76,-0.7332973428710822],[120,-13,77,-0.7330246485948769],[120,-13,78,-0.7327544258486018],[120,-13,79,-0.7324866788966181],[120,-12,64,-0.7368866182755457],[120,-12,65,-0.7365842229479959],[120,-12,66,-0.7362842402403575],[120,-12,67,-0.7359866755793378],[120,-12,68,-0.735691534297631],[120,-12,69,-0.7353988216334959],[120,-12,70,-0.7351085427303171],[120,-12,71,-0.7348207026361713],[120,-12,72,-0.7345353063033909],[120,-12,73,-0.7342523585881444],[120,-12,74,-0.7339718642499856],[120,-12,75,-0.7336938279514349],[120,-12,76,-0.733418254257548],[120,-12,77,-0.7331451476354843],[120,-12,78,-0.7328745124540816],[120,-12,79,-0.7326063529834229],[120,-11,64,-0.7370126392498343],[120,-11,65,-0.7367098337989482],[120,-11,66,-0.7364094408080737],[120,-11,67,-0.7361114657095591],[120,-11,68,-0.7358159138417462],[120,-11,69,-0.7355227904485477],[120,-11,70,-0.7352321006790082],[120,-11,71,-0.7349438495868706],[120,-11,72,-0.7346580421301396],[120,-11,73,-0.7343746831706617],[120,-11,74,-0.7340937774736748],[120,-11,75,-0.7338153297073888],[120,-11,76,-0.7335393444425551],[120,-11,77,-0.7332658261520338],[120,-11,78,-0.7329947792103693],[120,-11,79,-0.7327262078933563],[120,-10,64,-0.737138830795867],[120,-10,65,-0.7368356159321215],[120,-10,66,-0.7365348133660643],[120,-10,67,-0.7362364285356733],[120,-10,68,-0.7359404667849265],[120,-10,69,-0.7356469333633798],[120,-10,70,-0.7353558334257267],[120,-10,71,-0.7350671720313654],[120,-10,72,-0.7347809541439622],[120,-10,73,-0.734497184631031],[120,-10,74,-0.7342158682634832],[120,-10,75,-0.7339370097152083],[120,-10,76,-0.7336606135626424],[120,-10,77,-0.7333866842843373],[120,-10,78,-0.7331152262605329],[120,-10,79,-0.7328462437727263],[120,-9,64,-0.7372651930068648],[120,-9,65,-0.7369615694441969],[120,-9,66,-0.7366603580144544],[120,-9,67,-0.736361564161234],[120,-9,68,-0.7360651932341389],[120,-9,69,-0.7357712504883563],[120,-9,70,-0.735479741084218],[120,-9,71,-0.7351906700867665],[120,-9,72,-0.734904042465319],[120,-9,73,-0.7346198630930463],[120,-9,74,-0.7343381367465225],[120,-9,75,-0.7340588681053065],[120,-9,76,-0.733782061751509],[120,-9,77,-0.7335077221693623],[120,-9,78,-0.7332358537447932],[120,-9,79,-0.7329664607649903],[120,-8,64,-0.7373917259732781],[120,-8,65,-0.7370876944290798],[120,-8,66,-0.7367860748505899],[120,-8,67,-0.7364868726870117],[120,-8,68,-0.7361900932935623],[120,-8,69,-0.7358957419310495],[120,-8,70,-0.7356038237654319],[120,-8,71,-0.7353143438673857],[120,-8,72,-0.7350273072118677],[120,-8,73,-0.734742718677695],[120,-8,74,-0.7344605830470944],[120,-8,75,-0.7341809050052829],[120,-8,76,-0.7339036891400358],[120,-8,77,-0.7336289399412559],[120,-8,78,-0.7333566618005462],[120,-8,79,-0.7330868590107775],[120,-7,64,-0.7375184297827642],[120,-7,65,-0.7372139909778794],[120,-7,66,-0.7369119639690155],[120,-7,67,-0.7366123542109715],[120,-7,68,-0.7363151670645669],[120,-7,69,-0.7360204077962186],[120,-7,70,-0.7357280815775011],[120,-7,71,-0.7354381934847133],[120,-7,72,-0.7351507484984408],[120,-7,73,-0.7348657515031363],[120,-7,74,-0.7345832072866678],[120,-7,75,-0.7343031205399008],[120,-7,76,-0.7340254958562644],[120,-7,77,-0.7337503377313217],[120,-7,78,-0.7334776505623419],[120,-7,79,-0.7332074386478676],[120,-6,64,-0.7376453045202411],[120,-6,65,-0.7373404591789605],[120,-6,66,-0.7370380254615277],[120,-6,67,-0.7367380088283261],[120,-6,68,-0.736440414645766],[120,-6,69,-0.7361452481858622],[120,-6,70,-0.7358525146257943],[120,-6,71,-0.7355622190474718],[120,-6,72,-0.7352743664370989],[120,-6,73,-0.7349889616847526],[120,-6,74,-0.7347060095839322],[120,-6,75,-0.7344255148311403],[120,-6,76,-0.7341474820254497],[120,-6,77,-0.7338719156680732],[120,-6,78,-0.7335988201619361],[120,-6,79,-0.7333281998112429],[120,-5,64,-0.7377723502678728],[120,-5,65,-0.7374670991179295],[120,-5,66,-0.7371642594171607],[120,-5,67,-0.7368638366315217],[120,-5,68,-0.7365658361330025],[120,-5,69,-0.7362702631992045],[120,-5,70,-0.7359771230129005],[120,-5,71,-0.7356864206616006],[120,-5,72,-0.7353981611371158],[120,-5,73,-0.7351123493351366],[120,-5,74,-0.7348289900547827],[120,-5,75,-0.7345480879981834],[120,-5,76,-0.7342696477700446],[120,-5,77,-0.7339936738772186],[120,-5,78,-0.733720170728276],[120,-5,79,-0.7334491426330736],[120,-4,64,-0.737899567105055],[120,-4,65,-0.7375939108776208],[120,-4,66,-0.7372906659221716],[120,-4,67,-0.7369898377102234],[120,-4,68,-0.7366914316193343],[120,-4,69,-0.7363954529326804],[120,-4,70,-0.7361019068386165],[120,-4,71,-0.7358107984302423],[120,-4,72,-0.7355221327049644],[120,-4,73,-0.7352359145640759],[120,-4,74,-0.7349521488123062],[120,-4,75,-0.7346708401574003],[120,-4,76,-0.7343919932096867],[120,-4,77,-0.7341156124816467],[120,-4,78,-0.7338417023874862],[120,-4,79,-0.7335702672427034],[120,-3,64,-0.738026955108468],[120,-3,65,-0.7377208945381489],[120,-3,66,-0.7374172450600941],[120,-3,67,-0.7371160121513685],[120,-3,68,-0.7368172011950865],[120,-3,69,-0.736520817479988],[120,-3,70,-0.7362268661999984],[120,-3,71,-0.735935352453795],[120,-3,72,-0.7356462812443693],[120,-3,73,-0.7353596574786061],[120,-3,74,-0.7350754859668333],[120,-3,75,-0.734793771422401],[120,-3,76,-0.7345145184612498],[120,-3,77,-0.7342377316014793],[120,-3,78,-0.7339634152629202],[120,-3,79,-0.7336915737667022],[120,-2,64,-0.7381545143520555],[120,-2,65,-0.737848050176887],[120,-2,66,-0.7375439969117158],[120,-2,67,-0.7372423600391441],[120,-2,68,-0.7369431449478309],[120,-2,69,-0.7366463569320678],[120,-2,70,-0.7363520011913399],[120,-2,71,-0.7360600828298904],[120,-2,72,-0.7357706068562849],[120,-2,73,-0.7354835781829887],[120,-2,74,-0.735199001625917],[120,-2,75,-0.7349168819040144],[120,-2,76,-0.7346372236388228],[120,-2,77,-0.7343600313540494],[120,-2,78,-0.7340853094751395],[120,-2,79,-0.7338130623288437],[120,-1,64,-0.738282244907047],[120,-1,65,-0.7379753778684901],[120,-1,66,-0.737670921555102],[120,-1,67,-0.7373688814550107],[120,-1,68,-0.7370692629624076],[120,-1,69,-0.7367720713771249],[120,-1,70,-0.7364773119041954],[120,-1,71,-0.7361849896534174],[120,-1,72,-0.7358951096389186],[120,-1,73,-0.7356076767787341],[120,-1,74,-0.7353226958943552],[120,-1,75,-0.7350401717103103],[120,-1,76,-0.7347601088537316],[120,-1,77,-0.7344825118539237],[120,-1,78,-0.7342073851419355],[120,-1,79,-0.7339347330501285],[120,0,64,-0.7384101468419365],[120,0,65,-0.7381028776848729],[120,0,66,-0.7377980190655737],[120,0,67,-0.7374955764776799],[120,0,68,-0.7371955553209042],[120,0,69,-0.7368979609006073],[120,0,70,-0.7366027984273582],[120,0,71,-0.736310073016499],[120,0,72,-0.7360197896877081],[120,0,73,-0.735731953364579],[120,0,74,-0.7354465688741685],[120,0,75,-0.7351636409465776],[120,0,76,-0.7348831742145179],[120,0,77,-0.7346051732128803],[120,0,78,-0.7343296423783079],[120,0,79,-0.7340565860487616],[120,1,64,-0.7385382202225351],[120,1,65,-0.7382305496952634],[120,1,66,-0.73792528951576],[120,1,67,-0.7376224451831674],[120,1,68,-0.7373220221027079],[120,1,69,-0.7370240255852586],[120,1,70,-0.7367284608469132],[120,1,71,-0.736435333008546],[120,1,72,-0.736144647095375],[120,1,73,-0.7358564080365404],[120,1,74,-0.7355706206646536],[120,1,75,-0.735287289715377],[120,1,76,-0.7350064198269911],[120,1,77,-0.7347280155399626],[120,1,78,-0.7344520812965167],[120,1,79,-0.7341786214402047],[120,2,64,-0.7386664651119572],[120,2,65,-0.7383583939661874],[120,2,66,-0.7380527329755842],[120,2,67,-0.7377494876447791],[120,2,68,-0.7374486633844914],[120,2,69,-0.7371502655111037],[120,2,70,-0.7368542992462224],[120,2,71,-0.7365607697162422],[120,2,72,-0.7362696819519093],[120,2,73,-0.7359810408878998],[120,2,74,-0.735694851362368],[120,2,75,-0.7354111181165268],[120,2,76,-0.7351298457942144],[120,2,77,-0.7348510389414626],[120,2,78,-0.7345747020060687],[120,2,79,-0.7343008393371628],[120,3,64,-0.7387948815706052],[120,3,65,-0.7384864105614555],[120,3,66,-0.7381803495122493],[120,3,67,-0.7378767039330955],[120,3,68,-0.7375754792401985],[120,3,69,-0.7372766807554343],[120,3,70,-0.7369803137059102],[120,3,71,-0.7366863832235299],[120,3,72,-0.7363948943445562],[120,3,73,-0.7361058520091894],[120,3,74,-0.7358192610611158],[120,3,75,-0.7355351262470876],[120,3,76,-0.7352534522164897],[120,3,77,-0.7349742435209079],[120,3,78,-0.7346975046137012],[120,3,79,-0.734423239849568],[120,4,64,-0.7389234696562237],[120,4,65,-0.7386145995422148],[120,4,66,-0.7383081391902909],[120,4,67,-0.7380040941160259],[120,4,68,-0.7377024697410971],[120,4,69,-0.7374032713928619],[120,4,70,-0.7371065043039167],[120,4,71,-0.7368121736116625],[120,4,72,-0.7365202843578674],[120,4,73,-0.7362308414882444],[120,4,74,-0.7359438498520001],[120,4,75,-0.7356593142014152],[120,4,76,-0.7353772391914101],[120,4,77,-0.7350976293791139],[120,4,78,-0.734820489223436],[120,4,79,-0.7345458230846327],[120,5,64,-0.7390522294238764],[120,5,65,-0.7387429609669279],[120,5,66,-0.7384361020715555],[120,5,67,-0.7381316582587856],[120,5,68,-0.7378296349557567],[120,5,69,-0.7375300374952953],[120,5,70,-0.7372328711154753],[120,5,71,-0.7369381409591832],[120,5,72,-0.7366458520736803],[120,5,73,-0.7363560094101811],[120,5,74,-0.7360686178234015],[120,5,75,-0.735783682071139],[120,5,76,-0.7355012068138385],[120,5,77,-0.7352211966141613],[120,5,78,-0.7349436559365568],[120,5,79,-0.734668589146828],[120,6,64,-0.7391811609259702],[120,6,65,-0.7388714948913957],[120,6,66,-0.7385642382152231],[120,6,67,-0.7382593964239195],[120,6,68,-0.7379569749500721],[120,6,69,-0.7376569791319644],[120,6,70,-0.737359414213136],[120,6,71,-0.7370642853419468],[120,6,72,-0.7367715975711402],[120,6,73,-0.73648135585742],[120,6,74,-0.7361935650610005],[120,6,75,-0.735908229945184],[120,6,76,-0.7356253551759295],[120,6,77,-0.7353449453214194],[120,6,78,-0.7350670048516313],[120,6,79,-0.7347915381379053],[120,7,64,-0.7393102642122327],[120,7,65,-0.7390002013687349],[120,7,66,-0.7386925476777856],[120,7,67,-0.7383873086712793],[120,7,68,-0.7380844897872404],[120,7,69,-0.7377840963693971],[120,7,70,-0.7374861336667426],[120,7,71,-0.7371906068330984],[120,7,72,-0.7368975209266779],[120,7,73,-0.7366068809096634],[120,7,74,-0.7363186916477549],[120,7,75,-0.7360329579097495],[120,7,76,-0.7357496843671081],[120,7,77,-0.735468875593523],[120,7,78,-0.7351905360644901],[120,7,79,-0.7349146701568745],[120,8,64,-0.739439539329765],[120,8,65,-0.7391290804494318],[120,8,66,-0.7388210305130992],[120,8,67,-0.7385153950580776],[120,8,68,-0.738212179527815],[120,8,69,-0.7379113892714733],[120,8,70,-0.7376130295434864],[120,8,71,-0.7373171055031261],[120,8,72,-0.7370236222140636],[120,8,73,-0.736732584643948],[120,8,74,-0.7364439976639537],[120,8,75,-0.736157866048361],[120,8,76,-0.7358741944741214],[120,8,77,-0.7355929875204263],[120,8,78,-0.7353142496682783],[120,8,79,-0.7350379853000572],[120,9,64,-0.7395689863230281],[120,9,65,-0.7392581321813275],[120,9,66,-0.7389496867723708],[120,9,67,-0.7386436556388719],[120,9,68,-0.7383400442296908],[120,9,69,-0.7380388578994093],[120,9,70,-0.7377401019078913],[120,9,71,-0.7374437814198461],[120,9,72,-0.7371499015043912],[120,9,73,-0.7368584671346305],[120,9,74,-0.7365694831872016],[120,9,75,-0.7362829544418559],[120,9,76,-0.7359988855810249],[120,9,77,-0.7357172811893873],[120,9,78,-0.7354381457534414],[120,9,79,-0.7351614836610709],[120,10,64,-0.7396986052338276],[120,10,65,-0.7393873566096029],[120,10,66,-0.7390785165041427],[120,10,67,-0.7387720904655515],[120,10,68,-0.7384680839480885],[120,10,69,-0.7381665023117441],[120,10,70,-0.737867350821799],[120,10,71,-0.7375706346483882],[120,10,72,-0.7372763588660641],[120,10,73,-0.736984528453373],[120,10,74,-0.7366951482924042],[120,10,75,-0.736408223168369],[120,10,76,-0.7361237577691666],[120,10,77,-0.7358417566849528],[120,10,78,-0.7355622244077099],[120,10,79,-0.7352851653308148],[120,11,64,-0.739828396101367],[120,11,65,-0.7395167537768325],[120,11,66,-0.739207519754346],[120,11,67,-0.7389006995873894],[120,11,68,-0.7385962987356092],[120,11,69,-0.7382943225643914],[120,11,70,-0.7379947763444219],[120,11,71,-0.7376976652512492],[120,11,72,-0.7374029943648479],[120,11,73,-0.7371107686691958],[120,11,74,-0.7368209930518215],[120,11,75,-0.7365336723033845],[120,11,76,-0.7362488111172412],[120,11,77,-0.735966414089012],[120,11,78,-0.7356864857161529],[120,11,79,-0.7354090303975223],[120,12,64,-0.7399583589622258],[120,12,65,-0.7396463237229622],[120,12,66,-0.7393366965662782],[120,12,67,-0.7390294830510209],[120,12,68,-0.7387246886422112],[120,12,69,-0.7384223187106187],[120,12,70,-0.7381223785323215],[120,12,71,-0.7378248732882698],[120,12,72,-0.7375298080638486],[120,12,73,-0.7372371878484546],[120,12,74,-0.7369470175350447],[120,12,75,-0.7366593019197148],[120,12,76,-0.7363740457012665],[120,12,77,-0.7360912534807738],[120,12,78,-0.735810929761155],[120,12,79,-0.735533078946739],[120,13,64,-0.7400884938503826],[120,13,65,-0.739776066485332],[120,13,66,-0.7394660469806268],[120,13,67,-0.7391584409004663],[120,13,68,-0.7388532537152336],[120,13,69,-0.7385504908010689],[120,13,70,-0.7382501574394307],[120,13,71,-0.7379522588166583],[120,13,72,-0.737656800023535],[120,13,73,-0.7373637860548645],[120,13,74,-0.7370732218090201],[120,13,75,-0.7367851120875226],[120,13,76,-0.7364994615946068],[120,13,77,-0.7362162749367893],[120,13,78,-0.7359355566224394],[120,13,79,-0.7356573110613449],[120,14,64,-0.7402188007971925],[120,14,65,-0.7399059820986537],[120,14,66,-0.739595571035446],[120,14,67,-0.7392875731771086],[120,14,68,-0.7389819939993733],[120,14,69,-0.7386788388837389],[120,14,70,-0.7383781131170315],[120,14,71,-0.7380798218909675],[120,14,72,-0.7377839703017162],[120,14,73,-0.7374905633494766],[120,14,74,-0.7371996059380259],[120,14,75,-0.7369111028742982],[120,14,76,-0.7366250588679503],[120,14,77,-0.7363414785309296],[120,14,78,-0.7360603663770446],[120,14,79,-0.7357817268215319],[120,15,64,-0.7403492798314409],[120,15,65,-0.7400360705950647],[120,15,66,-0.7397252687662115],[120,15,67,-0.7394168799197467],[120,15,68,-0.7391109095367386],[120,15,69,-0.7388073630040323],[120,15,70,-0.7385062456138085],[120,15,71,-0.7382075625631486],[120,15,72,-0.7379113189535953],[120,15,73,-0.7376175197907311],[120,15,74,-0.7373261699837254],[120,15,75,-0.7370372743449133],[120,15,76,-0.7367508375893621],[120,15,77,-0.7364668643344385],[120,15,78,-0.736185359099379],[120,15,79,-0.7359063263048569],[120,16,64,-0.7404799309793286],[120,16,65,-0.7401663320041132],[120,16,66,-0.739855140205804],[120,16,67,-0.739546361164581],[120,16,68,-0.7392400003668351],[120,16,69,-0.738936063204745],[120,16,70,-0.7386345549758341],[120,16,71,-0.7383354808825356],[120,16,72,-0.7380388460317544],[120,16,73,-0.7377446554344433],[120,16,74,-0.7374529140051522],[120,16,75,-0.7371636265616057],[120,16,76,-0.7368767978242696],[120,16,77,-0.736592432415918],[120,16,78,-0.7363105348612042],[120,16,79,-0.736031109586227],[120,17,64,-0.7406107542644567],[120,17,65,-0.7402967663527426],[120,17,66,-0.739985185384496],[120,17,67,-0.7396760169451977],[120,17,68,-0.7393692665265494],[120,17,69,-0.7390649395260499],[120,17,70,-0.7387630412465529],[120,17,71,-0.7384635768958312],[120,17,72,-0.7381665515861389],[120,17,73,-0.7378719703337877],[120,17,74,-0.7375798380586953],[120,17,75,-0.7372901595839642],[120,17,76,-0.7370029396354465],[120,17,77,-0.7367181828413125],[120,17,78,-0.7364358937316208],[120,17,79,-0.736156076737884],[120,18,64,-0.7407417497078808],[120,18,65,-0.740427373665346],[120,18,66,-0.7401154043300041],[120,18,67,-0.7398058472926233],[120,18,68,-0.7394987080502035],[120,18,69,-0.7391939920055505],[120,18,70,-0.7388917044668357],[120,18,71,-0.7385918506471592],[120,18,72,-0.7382944356641117],[120,18,73,-0.7379994645393514],[120,18,74,-0.7377069421981521],[120,18,75,-0.7374168734689814],[120,18,76,-0.737129263083067],[120,18,77,-0.7368441156739629],[120,18,78,-0.7365614357771212],[120,18,79,-0.7362812278294574],[120,19,64,-0.7408729173280952],[120,19,65,-0.7405581539637508],[120,19,66,-0.7402457970674745],[120,19,67,-0.7399358522353092],[120,19,68,-0.7396283249695395],[120,19,69,-0.7393232206782661],[120,19,70,-0.7390205446749649],[120,19,71,-0.7387203021780504],[120,19,72,-0.7384224983104378],[120,19,73,-0.7381271380991198],[120,19,74,-0.7378342264747135],[120,19,75,-0.7375437682710402],[120,19,76,-0.7372557682246903],[120,19,77,-0.7369702309745905],[120,19,78,-0.7366871610615748],[120,19,79,-0.73640656292795],[120,20,64,-0.741004257141019],[120,20,65,-0.7406891072672037],[120,20,66,-0.740376363619468],[120,20,67,-0.7400660317991163],[120,20,68,-0.7397581173137049],[120,20,69,-0.7394526255766162],[120,20,70,-0.7391495619066178],[120,20,71,-0.7388489315274266],[120,20,72,-0.7385507395672692],[120,20,73,-0.7382549910584603],[120,20,74,-0.7379616909369484],[120,20,75,-0.7376708440418962],[120,20,76,-0.7373824551152452],[120,20,77,-0.7370965288012826],[120,20,78,-0.7368130696462126],[120,20,79,-0.7365320820977217],[120,21,64,-0.7411357691600491],[120,21,65,-0.7408202335924247],[120,21,66,-0.740507104006014],[120,21,67,-0.7401963860073695],[120,21,68,-0.7398880851093059],[120,21,69,-0.7395822067304746],[120,21,70,-0.7392787561949223],[120,21,71,-0.738977738731655],[120,21,72,-0.7386791594741985],[120,21,73,-0.7383830234601768],[120,21,74,-0.7380893356308579],[120,21,75,-0.7377981008307335],[120,21,76,-0.7375093238070839],[120,21,77,-0.7372230092095453],[120,21,78,-0.7369391615896803],[120,21,79,-0.7366577854005433],[120,22,64,-0.7412674533960377],[120,22,65,-0.7409515329535842],[120,22,66,-0.7406380182445872],[120,22,67,-0.740326914880834],[120,22,68,-0.7400182283803848],[120,22,69,-0.7397119641671467],[120,22,70,-0.7394081275704326],[120,22,71,-0.7391067238245247],[120,22,72,-0.738807758068236],[120,22,73,-0.7385112353444865],[120,22,74,-0.7382171605998518],[120,22,75,-0.7379255386841401],[120,22,76,-0.7376363743499588],[120,22,77,-0.7373496722522809],[120,22,78,-0.7370654369480155],[120,22,79,-0.7367836728955737],[120,23,64,-0.741399309857316],[120,23,65,-0.7410830053623263],[120,23,66,-0.7407691063501312],[120,23,67,-0.7404576184377394],[120,23,68,-0.740148547148443],[120,23,69,-0.7398418979113921],[120,23,70,-0.7395376760611527],[120,23,71,-0.7392358868372705],[120,23,72,-0.7389365353838323],[120,23,73,-0.7386396267490428],[120,23,74,-0.7383451658847716],[120,23,75,-0.7380531576461319],[120,23,76,-0.7377636067910457],[120,23,77,-0.7374765179798106],[120,23,78,-0.737191895774671],[120,23,79,-0.7369097446393823],[120,24,64,-0.7415313385496702],[120,24,65,-0.7412146508277458],[120,24,66,-0.7409003683350355],[120,24,67,-0.7405884966937559],[120,24,68,-0.7402790414324183],[120,24,69,-0.7399720079854022],[120,24,70,-0.7396674016925137],[120,24,71,-0.7393652277985491],[120,24,72,-0.7390654914528565],[120,24,73,-0.7387681977089123],[120,24,74,-0.7384733515238681],[120,24,75,-0.7381809577581292],[120,24,76,-0.7378910211749203],[120,24,77,-0.737603546439852],[120,24,78,-0.7373185381204912],[120,24,79,-0.7370360006859262],[120,25,64,-0.7416635394763973],[120,25,65,-0.7413464693564427],[120,25,66,-0.7410318042091895],[120,25,67,-0.7407195496620493],[120,25,68,-0.7404097112487389],[120,25,69,-0.7401022944088538],[120,25,70,-0.7397973044874272],[120,25,71,-0.7394947467344936],[120,25,72,-0.7391946263046489],[120,25,73,-0.7388969482566289],[120,25,74,-0.7386017175528543],[120,25,75,-0.7383089390590106],[120,25,76,-0.7380186175436128],[120,25,77,-0.7377307576775718],[120,25,78,-0.7374453640337657],[120,25,79,-0.737162441086604],[120,26,64,-0.741795912638288],[120,26,65,-0.7414784609525058],[120,26,66,-0.7411634139799672],[120,26,67,-0.7408507773532649],[120,26,68,-0.7405405566113077],[120,26,69,-0.7402327571988939],[120,26,70,-0.739927384466271],[120,26,71,-0.7396244436686978],[120,26,72,-0.7393239399660064],[120,26,73,-0.739025878422178],[120,26,74,-0.7387302640048907],[120,26,75,-0.7384371015850975],[120,26,76,-0.738146395936591],[120,26,77,-0.7378581517355712],[120,26,78,-0.7375723735602145],[120,26,79,-0.73728906589024],[120,27,64,-0.741928458033613],[120,27,65,-0.7416106256174991],[120,27,66,-0.7412951976522123],[120,27,67,-0.7409821797755125],[120,27,68,-0.740671577531487],[120,27,69,-0.7403633963701243],[120,27,70,-0.740057641646872],[120,27,71,-0.7397543186222011],[120,27,72,-0.7394534324611659],[120,27,73,-0.7391549882329813],[120,27,74,-0.7388589909105695],[120,27,75,-0.7385654453701384],[120,27,76,-0.7382743563907465],[120,27,77,-0.7379857286538698],[120,27,78,-0.7376995667429715],[120,27,79,-0.7374158751430683],[120,28,64,-0.7420611756581761],[120,28,65,-0.7417429633505146],[120,28,66,-0.7414271552282914],[120,28,67,-0.7411137569344203],[120,28,68,-0.7408027740181534],[120,28,69,-0.7404942119346557],[120,28,70,-0.7401880760445622],[120,28,71,-0.7398843716135423],[120,28,72,-0.73958310381186],[120,28,73,-0.7392842777139508],[120,28,74,-0.7389878982979685],[120,28,75,-0.7386939704453633],[120,28,76,-0.7384024989404472],[120,28,77,-0.7381134884699598],[120,28,78,-0.7378269436226392],[120,28,79,-0.7375428688887873],[120,29,64,-0.7421940655052917],[120,29,65,-0.7418754741481498],[120,29,66,-0.741559286708072],[120,29,67,-0.741245508833112],[120,29,68,-0.7409341460776737],[120,29,69,-0.7406252039020844],[120,29,70,-0.7403186876721537],[120,29,71,-0.740014602658736],[120,29,72,-0.7397129540372922],[120,29,73,-0.7394137468874654],[120,29,74,-0.739116986192628],[120,29,75,-0.7388226768394602],[120,29,76,-0.7385308236175145],[120,29,77,-0.7382414312187824],[120,29,78,-0.7379545042372646],[120,29,79,-0.737670047168536],[120,30,64,-0.7423271275658081],[120,30,65,-0.742008158004531],[120,30,66,-0.7416915920889451],[120,30,67,-0.7413774354722303],[120,30,68,-0.7410656937139284],[120,30,69,-0.7407563722795159],[120,30,70,-0.7404494765399632],[120,30,71,-0.7401450117712969],[120,30,72,-0.7398429831541612],[120,30,73,-0.7395433957733941],[120,30,74,-0.739246254617574],[120,30,75,-0.738951564578598],[120,30,76,-0.7386593304512469],[120,30,77,-0.7383695569327516],[120,30,78,-0.7380822486223629],[120,30,79,-0.7377974100209169],[120,31,64,-0.7424603618280841],[120,31,65,-0.7421410149112899],[120,31,66,-0.7418240713658021],[120,31,67,-0.7415095368499132],[120,31,68,-0.7411974169282886],[120,31,69,-0.7408877170715409],[120,31,70,-0.7405804426557879],[120,31,71,-0.7402755989622151],[120,31,72,-0.7399731911766366],[120,31,73,-0.7396732243890725],[120,31,74,-0.739375703593294],[120,31,75,-0.7390806336864029],[120,31,76,-0.7387880194683955],[120,31,77,-0.7384978656417294],[120,31,78,-0.7382101768108934],[120,31,79,-0.7379249574819727],[120,32,64,-0.7425937682780434],[120,32,65,-0.7422740448576179],[120,32,66,-0.7419567245310892],[120,32,67,-0.7416418129618478],[120,32,68,-0.7413293157196701],[120,32,69,-0.7410192382802906],[120,32,70,-0.7407115860249607],[120,32,71,-0.7404063642400113],[120,32,72,-0.740103578116414],[120,32,73,-0.7398032327493572],[120,32,74,-0.7395053331377925],[120,32,75,-0.7392098841840133],[120,32,76,-0.7389168906932186],[120,32,77,-0.7386263573730806],[120,32,78,-0.7383382888333139],[120,32,79,-0.7380526895852402],[120,33,64,-0.7427273468991596],[120,33,65,-0.7424072478302514],[120,33,66,-0.7420895515747918],[120,33,67,-0.7417742638012569],[120,33,68,-0.7414613900845186],[120,33,69,-0.7411509359054201],[120,33,70,-0.7408429066503333],[120,33,71,-0.7405373076107209],[120,33,72,-0.7402341439826987],[120,33,73,-0.7399334208666103],[120,33,74,-0.7396351432665745],[120,33,75,-0.7393393160900634],[120,33,76,-0.7390459441474667],[120,33,77,-0.7387550321516579],[120,33,78,-0.738466584717565],[120,33,79,-0.7381806063617344],[120,34,64,-0.7428610976724401],[120,34,65,-0.7425406238134546],[120,34,66,-0.7422225524844195],[120,34,67,-0.7419068893588803],[120,34,68,-0.7415936400167924],[120,34,69,-0.7412828099440932],[120,34,70,-0.7409744045322614],[120,34,71,-0.7406684290778783],[120,34,72,-0.7403648887821901],[120,34,73,-0.7400637887506827],[120,34,74,-0.7397651339926294],[120,34,75,-0.7394689294206678],[120,34,76,-0.7391751798503651],[120,34,77,-0.7388838899997844],[120,34,78,-0.738595064489054],[120,34,79,-0.738308707839933],[120,35,64,-0.7429950205764806],[120,35,65,-0.7426741727890763],[120,35,66,-0.7423557272450594],[120,35,67,-0.7420396896230322],[120,35,68,-0.7417260655080187],[120,35,69,-0.7414148603910371],[120,35,70,-0.741106079668659],[120,35,71,-0.740799728642571],[120,35,72,-0.7404958125191363],[120,35,73,-0.7401943364089699],[120,35,74,-0.7398953053264861],[120,35,75,-0.7395987241894754],[120,35,76,-0.7393045978186699],[120,35,77,-0.739012930937309],[120,35,78,-0.7387237281707094],[120,35,79,-0.7384369940458301],[120,36,64,-0.7431291155874423],[120,36,65,-0.7428078947365241],[120,36,66,-0.7424890758393538],[120,36,67,-0.7421726645795759],[120,36,68,-0.741858666547269],[120,36,69,-0.7415470872385184],[120,36,70,-0.741237932054975],[120,36,71,-0.7409312063034168],[120,36,72,-0.7406269151953104],[120,36,73,-0.7403250638463873],[120,36,74,-0.7400256572761891],[120,36,75,-0.7397287004076463],[120,36,76,-0.739434198066643],[120,36,77,-0.7391421549815823],[120,36,78,-0.7388525757829568],[120,36,79,-0.7385654650029129],[120,37,64,-0.7432633826790748],[120,37,65,-0.7429417896327895],[120,37,66,-0.7426225982475229],[120,37,67,-0.7423058142119476],[120,37,68,-0.7419914431211827],[120,37,69,-0.7416794904763668],[120,37,70,-0.7413699616842158],[120,37,71,-0.7410628620565859],[120,37,72,-0.7407581968100341],[120,37,73,-0.7404559710653936],[120,37,74,-0.7401561898473212],[120,37,75,-0.7398588580838745],[120,37,76,-0.7395639806060761],[120,37,77,-0.7392715621474802],[120,37,78,-0.7389816073437427],[120,37,79,-0.7386941207321848],[120,38,64,-0.7433978218226925],[120,38,65,-0.7430758574524237],[120,38,66,-0.7427562944473416],[120,38,67,-0.7424391385011332],[120,38,68,-0.7421243952139438],[120,38,69,-0.7418120700919508],[120,38,70,-0.7415021685469224],[120,38,71,-0.7411946958957785],[120,38,72,-0.7408896573601527],[120,38,73,-0.7405870580659675],[120,38,74,-0.7402869030429808],[120,38,75,-0.7399891972243642],[120,38,76,-0.7396939454462661],[120,38,77,-0.7394011524473794],[120,38,78,-0.7391108228685096],[120,38,79,-0.738822961252141],[120,39,64,-0.7435324329872302],[120,39,65,-0.743210098167592],[120,39,66,-0.7428901644141941],[120,39,67,-0.7425726374257224],[120,39,68,-0.7422575228073347],[120,39,69,-0.7419448260702336],[120,39,70,-0.7416345526312247],[120,39,71,-0.7413267078122784],[120,39,72,-0.7410212968400913],[120,39,73,-0.7407183248456618],[120,39,74,-0.7404177968638357],[120,39,75,-0.7401197178328847],[120,39,76,-0.7398240925940708],[120,39,77,-0.7395309258912118],[120,39,78,-0.7392402223702514],[120,39,79,-0.7389519865788234],[120,40,64,-0.7436672161392259],[120,40,65,-0.743344511748059],[120,40,66,-0.7430242081210578],[120,40,67,-0.7427063109618934],[120,40,68,-0.7423908258807216],[120,40,69,-0.7420777583937558],[120,40,70,-0.7417671139228255],[120,40,71,-0.7414588977949377],[120,40,72,-0.7411531152418385],[120,40,73,-0.7408497713995879],[120,40,74,-0.7405488713081066],[120,40,75,-0.740250419910754],[120,40,76,-0.7399544220538917],[120,40,77,-0.7396608824864499],[120,40,78,-0.7393698058594973],[120,40,79,-0.7390811967258049],[120,41,64,-0.7438021712428065],[120,41,65,-0.743479098161172],[120,41,66,-0.7431584255384882],[120,41,67,-0.7428401590833968],[120,41,68,-0.7425243044110375],[120,41,69,-0.7422108670426205],[120,41,70,-0.7418998524049849],[120,41,71,-0.7415912658301607],[120,41,72,-0.7412851125549291],[120,41,73,-0.7409813977203992],[120,41,74,-0.7406801263715527],[120,41,75,-0.7403813034568228],[120,41,76,-0.7400849338276583],[120,41,77,-0.7397910222380886],[120,41,78,-0.7394995733442946],[120,41,79,-0.7392105917041718],[120,42,64,-0.7439372982597416],[120,42,65,-0.7436138573719157],[120,42,66,-0.7432928166346726],[120,42,67,-0.7429741817616103],[120,42,68,-0.7426579583728377],[120,42,69,-0.7423441519945475],[120,42,70,-0.7420327680585748],[120,42,71,-0.741723811901958],[120,42,72,-0.7414172887665007],[120,42,73,-0.7411132037983462],[120,42,74,-0.7408115620475245],[120,42,75,-0.7405123684675294],[120,42,76,-0.740215627914883],[120,42,77,-0.7399213451487014],[120,42,78,-0.7396295248302647],[120,42,79,-0.7393401715225802],[120,43,64,-0.7440725971494204],[120,43,65,-0.7437487893428891],[120,43,66,-0.7434273813754075],[120,43,67,-0.7431083789655151],[120,43,68,-0.7427917877382755],[120,43,69,-0.7424776132248501],[120,43,70,-0.742165860862055],[120,43,71,-0.7418565359919241],[120,43,72,-0.7415496438612685],[120,43,73,-0.741245189621253],[120,43,74,-0.7409431783269416],[120,43,75,-0.7406436149368754],[120,43,76,-0.740346504312637],[120,43,77,-0.740051851218416],[120,43,78,-0.7397596603205782],[120,43,79,-0.7394699361872307],[120,44,64,-0.744208067868875],[120,44,65,-0.7438838940343291],[120,44,66,-0.7435621197241217],[120,44,67,-0.7432427506617192],[120,44,68,-0.7429257924771261],[120,44,69,-0.7426112507064575],[120,44,70,-0.7422991307914971],[120,44,71,-0.7419894380792592],[120,44,72,-0.7416821778215493],[120,44,73,-0.7413773551745394],[120,44,74,-0.7410749751983144],[120,44,75,-0.7407750428564492],[120,44,76,-0.7404775630155735],[120,44,77,-0.7401825404449369],[120,44,78,-0.7398899798159787],[120,44,79,-0.7395998857018921],[120,45,64,-0.7443437103727559],[120,45,65,-0.744019171404085],[120,45,66,-0.7436970316418514],[120,45,67,-0.7433772968144337],[120,45,68,-0.7430599725567623],[120,45,69,-0.7427450644098919],[120,45,70,-0.7424325778205595],[120,45,71,-0.7421225181407459],[120,45,72,-0.7418148906272369],[120,45,73,-0.7415097004411981],[120,45,74,-0.7412069526477213],[120,45,75,-0.740906652215402],[120,45,76,-0.7406088040159033],[120,45,77,-0.7403134128235219],[120,45,78,-0.7400204833147576],[120,45,79,-0.7397300200678767],[120,46,64,-0.7444795246133887],[120,46,65,-0.744154621407676],[120,46,66,-0.7438321170872968],[120,46,67,-0.7435120173855274],[120,46,68,-0.7431943279422093],[120,46,69,-0.7428790543033228],[120,46,70,-0.7425662019205431],[120,46,71,-0.7422557761508041],[120,46,72,-0.7419477822558574],[120,46,73,-0.7416422254018485],[120,46,74,-0.7413391106588626],[120,46,75,-0.7410384430005019],[120,46,76,-0.74074022730345],[120,46,77,-0.7404444683470371],[120,46,78,-0.74015117081281],[120,46,79,-0.7398603392840958],[120,47,64,-0.7446155105407563],[120,47,65,-0.7442902439982733],[120,47,66,-0.7439673760168052],[120,47,67,-0.7436469123345112],[120,47,68,-0.7433288585961295],[120,47,69,-0.7430132203525509],[120,47,70,-0.7427000030603754],[120,47,71,-0.7423892120814749],[120,47,72,-0.7420808526825533],[120,47,73,-0.7417749300347218],[120,47,74,-0.7414714492130452],[120,47,75,-0.741170415196119],[120,47,76,-0.7408718328656335],[120,47,77,-0.7405757070059397],[120,47,78,-0.7402820423036179],[120,47,79,-0.739990843347043],[120,48,64,-0.7447516681024837],[120,48,65,-0.7444260391266846],[120,48,66,-0.7441028083843548],[120,48,67,-0.7437819816185216],[120,48,68,-0.7434635644788053],[120,48,69,-0.7431475625209925],[120,48,70,-0.7428339812065934],[120,48,71,-0.7425228259024039],[120,48,72,-0.7422141018800662],[120,48,73,-0.7419078143156431],[120,48,74,-0.7416039682891653],[120,48,75,-0.7413025687842076],[120,48,76,-0.7410036206874541],[120,48,77,-0.7407071287882623],[120,48,78,-0.7404130977782337],[120,48,79,-0.7401215322507776],[120,49,64,-0.7448879972438934],[120,49,65,-0.7445620067414095],[120,49,66,-0.7442384141416104],[120,49,67,-0.7439172251923762],[120,49,68,-0.7435984455481948],[120,49,69,-0.7432820807697338],[120,49,70,-0.7429681363233994],[120,49,71,-0.7426566175808973],[120,49,72,-0.7423475298187932],[120,49,73,-0.742040878218088],[120,49,74,-0.7417366678637642],[120,49,75,-0.7414349037443625],[120,49,76,-0.7411355907515467],[120,49,77,-0.7408387336796679],[120,49,78,-0.7405443372253354],[120,49,79,-0.7402524059869797],[120,50,64,-0.7450244979079889],[120,50,65,-0.7446981467886232],[120,50,66,-0.7443741932379067],[120,50,67,-0.7440526430085572],[120,50,68,-0.7437335017599151],[120,50,69,-0.7434167750575154],[120,50,70,-0.7431024683726447],[120,50,71,-0.7427905870819045],[120,50,72,-0.7424811364667696],[120,50,73,-0.7421741217131653],[120,50,74,-0.7418695479110117],[120,50,75,-0.7415674200538017],[120,50,76,-0.7412677430381651],[120,50,77,-0.7409705216634335],[120,50,78,-0.7406757606312102],[120,50,79,-0.7403834645449338],[120,51,64,-0.7451611700354386],[120,51,65,-0.7448344592121602],[120,51,66,-0.7445101456202321],[120,51,67,-0.7441882350171952],[120,51,68,-0.7438687330672273],[120,51,69,-0.7435516453407155],[120,51,70,-0.743236977313813],[120,51,71,-0.7429247343680021],[120,51,72,-0.7426149217896533],[120,51,73,-0.7423075447696009],[120,51,74,-0.7420026084026896],[120,51,75,-0.7417001176873503],[120,51,76,-0.7414000775251652],[120,51,77,-0.741102492720433],[120,51,78,-0.7408073679797375],[120,51,79,-0.7405147079115123],[120,52,64,-0.745298013564631],[120,52,65,-0.7449709439535699],[120,52,66,-0.7446462712332846],[120,52,67,-0.7443240011661247],[120,52,68,-0.7440041394210901],[120,52,69,-0.7436866915734054],[120,52,70,-0.7433716631040758],[120,52,71,-0.7430590593994497],[120,52,72,-0.7427488857507789],[120,52,73,-0.7424411473537933],[120,52,74,-0.742135849308247],[120,52,75,-0.7418329966174959],[120,52,76,-0.7415325941880607],[120,52,77,-0.741234646829193],[120,52,78,-0.7409391592524446],[120,52,79,-0.7406461360712304],[120,53,64,-0.7454350284316512],[120,53,65,-0.7451076009520918],[120,53,66,-0.7447825700194474],[120,53,67,-0.7444599414008597],[120,53,68,-0.7441397207701367],[120,53,69,-0.7438219137073252],[120,53,70,-0.7435065256982678],[120,53,71,-0.7431935621341649],[120,53,72,-0.7428830283111347],[120,53,73,-0.7425749294297883],[120,53,74,-0.742269270594776],[120,53,75,-0.7419660568143638],[120,53,76,-0.7416652929999976],[120,53,77,-0.7413669839658685],[120,53,78,-0.741071134428482],[120,53,79,-0.740777749006222],[120,54,64,-0.7455722145703034],[120,54,65,-0.7452444301446801],[120,54,66,-0.7449190419188114],[120,54,67,-0.7445960556646171],[120,54,68,-0.7442754770606976],[120,54,69,-0.7439573116919073],[120,54,70,-0.7436415650489112],[120,54,71,-0.7433282425277471],[120,54,72,-0.7430173494293852],[120,54,73,-0.7427088909593038],[120,54,74,-0.7424028722270348],[120,54,75,-0.7420992982457406],[120,54,76,-0.7417981739317784],[120,54,77,-0.7414995041042651],[120,54,78,-0.7412032934846468],[120,54,79,-0.7409095466962621],[120,55,64,-0.7457095719120875],[120,55,65,-0.7453814314659781],[120,55,66,-0.7450556868691525],[120,55,67,-0.7447323438982927],[120,55,68,-0.7444114082367768],[120,55,69,-0.7440928854742517],[120,55,70,-0.7437767811061902],[120,55,71,-0.7434631005334525],[120,55,72,-0.7431518490618468],[120,55,73,-0.7428430319017039],[120,55,74,-0.7425366541674231],[120,55,75,-0.7422327208770494],[120,55,76,-0.7419312369518372],[120,55,77,-0.7416322072158155],[120,55,78,-0.7413356363953572],[120,55,79,-0.741041529118743],[120,56,64,-0.7458471003862541],[120,56,65,-0.7455186048483747],[120,56,66,-0.7451925048059858],[120,56,67,-0.7448688060405162],[120,56,68,-0.7445475142401068],[120,56,69,-0.744228634999182],[120,56,70,-0.7439121738180071],[120,56,71,-0.7435981361022506],[120,56,72,-0.7432865271625435],[120,56,73,-0.7429773522140551],[120,56,74,-0.7426706163760379],[120,56,75,-0.7423663246714052],[120,56,76,-0.7420644820262948],[120,56,77,-0.7417650932696341],[120,56,78,-0.7414681631327094],[120,56,79,-0.7411736962487294],[120,57,64,-0.7459847999197887],[120,57,65,-0.7456559502219877],[120,57,66,-0.7453294956625497],[120,57,67,-0.7450054420276354],[120,57,68,-0.7446837950101326],[120,57,69,-0.7443645602092281],[120,57,70,-0.7440477431299655],[120,57,71,-0.7437333491828062],[120,57,72,-0.74342138368319],[120,57,73,-0.7431118518511095],[120,57,74,-0.7428047588106567],[120,57,75,-0.7425001095895988],[120,57,76,-0.742197909118943],[120,57,77,-0.7418981622325014],[120,57,78,-0.7416008736664597],[120,57,79,-0.7413060480589413],[120,58,64,-0.7461226704373944],[120,58,65,-0.7457934675146473],[120,58,66,-0.7454666593697896],[120,58,67,-0.745142251793699],[120,58,68,-0.7448202504839944],[120,58,69,-0.7445006610446107],[120,58,70,-0.7441834889853539],[120,58,71,-0.7438687397214641],[120,58,72,-0.7435564185731749],[120,58,73,-0.7432465307652881],[120,58,74,-0.7429390814267204],[120,58,75,-0.742634075590079],[120,58,76,-0.7423315181912264],[120,58,77,-0.7420314140688454],[120,58,78,-0.7417337679640076],[120,58,79,-0.7414385845197377],[120,59,64,-0.7462607118615484],[120,59,65,-0.7459311566519514],[120,59,66,-0.7456039958564133],[120,59,67,-0.7452792352705122],[120,59,68,-0.744956880596584],[120,59,69,-0.7446369374432957],[120,59,70,-0.7443194113252012],[120,59,71,-0.744004307662304],[120,59,72,-0.7436916317796168],[120,59,73,-0.7433813889067366],[120,59,74,-0.7430735841773897],[120,59,75,-0.7427682226290093],[120,59,76,-0.7424653092022994],[120,59,77,-0.742164848740799],[120,59,78,-0.7418668459904524],[120,59,79,-0.7415713055991716],[120,60,64,-0.746398924112477],[120,60,65,-0.746069017557242],[120,60,66,-0.7457415050488663],[120,60,67,-0.7454163923876133],[120,60,68,-0.7450936852805201],[120,60,69,-0.7447733893409707],[120,60,70,-0.744455510088252],[120,60,71,-0.7441400529471158],[120,60,72,-0.7438270232473396],[120,60,73,-0.7435164262232999],[120,60,74,-0.7432082670135193],[120,60,75,-0.7429025506602424],[120,60,76,-0.742599282109],[120,60,77,-0.7422984662081742],[120,60,78,-0.7420001077085674],[120,60,79,-0.7417042112629653],[120,61,64,-0.7465373071081796],[120,61,65,-0.7462070501516279],[120,61,66,-0.7458791868713557],[120,61,67,-0.7455537230722957],[120,61,68,-0.7452306644661715],[120,61,69,-0.744910016671068],[120,61,70,-0.7445917852109902],[120,61,71,-0.7442759755154238],[120,61,72,-0.7439625929188953],[120,61,73,-0.7436516426605471],[120,61,74,-0.7433431298836826],[120,61,75,-0.7430370596353439],[120,61,76,-0.7427334368658747],[120,61,77,-0.7424322664284855],[120,61,78,-0.7421335530788233],[120,61,79,-0.7418373014745342],[120,62,64,-0.7466758607644037],[120,62,65,-0.7463452543539605],[120,62,66,-0.7460170412458251],[120,62,67,-0.7456912272495846],[120,62,68,-0.7453678180816321],[120,62,69,-0.7450468193647396],[120,62,70,-0.7447282366276144],[120,62,71,-0.7444120753044606],[120,62,72,-0.7440983407345397],[120,62,73,-0.7437870381617446],[120,62,74,-0.7434781727341455],[120,62,75,-0.7431717495035672],[120,62,76,-0.7428677734251519],[120,62,77,-0.7425662493569251],[120,62,78,-0.7422671820593637],[120,62,79,-0.741970576194961],[120,63,64,-0.746814584994701],[120,63,65,-0.7464836300808897],[120,63,66,-0.7461550680920113],[120,63,67,-0.7458289048422914],[120,63,68,-0.7455051460527778],[120,63,69,-0.7451837973509136],[120,63,70,-0.7448648642700932],[120,63,71,-0.7445483522492244],[120,63,72,-0.7442342666322883],[120,63,73,-0.7439226126679137],[120,63,74,-0.7436133955089232],[120,63,75,-0.7433066202119094],[120,63,76,-0.7430022917367992],[120,63,77,-0.7427004149464185],[120,63,78,-0.7424009946060608],[120,63,79,-0.7421040353830517],[120,64,64,-0.7469534797104107],[120,64,65,-0.7466221772468469],[120,64,66,-0.7462932673274266],[120,64,67,-0.7459667557709984],[120,64,68,-0.7456426483032489],[120,64,69,-0.745320950556277],[120,64,70,-0.745001668068149],[120,64,71,-0.7446848062824611],[120,64,72,-0.744370370547899],[120,64,73,-0.744058366117813],[120,64,74,-0.7437487981497626],[120,64,75,-0.7434416717050945],[120,64,76,-0.7431369917485056],[120,64,77,-0.7428347631476078],[120,64,78,-0.7425349906724976],[120,64,79,-0.7422376789953191],[120,65,64,-0.747092544820643],[120,65,65,-0.7467608957640285],[120,65,66,-0.7464316388673428],[120,65,67,-0.7461047799540409],[120,65,68,-0.7457803247544336],[120,65,69,-0.7454582789052591],[120,65,70,-0.7451386479492407],[120,65,71,-0.7448214373346477],[120,65,72,-0.7445066524148556],[120,65,73,-0.7441942984479207],[120,65,74,-0.7438843805961256],[120,65,75,-0.743576903925556],[120,65,76,-0.7432718734056643],[120,65,77,-0.7429692939088346],[120,65,78,-0.7426691702099517],[120,65,79,-0.7423715069859647],[120,66,64,-0.7472317802323346],[120,66,65,-0.7468997855424521],[120,66,66,-0.7465701826248465],[120,66,67,-0.7462429773075643],[120,66,68,-0.7459181753255235],[120,66,69,-0.7455957823200873],[120,66,70,-0.7452758038386197],[120,66,71,-0.7449582453340484],[120,66,72,-0.7446431121644235],[120,66,73,-0.7443304095924923],[120,66,74,-0.7440201427852454],[120,66,75,-0.7437123168134933],[120,66,76,-0.7434069366514293],[120,66,77,-0.7431040071761955],[120,66,78,-0.742803533167451],[120,66,79,-0.7425055193069354],[120,67,64,-0.7473711858502244],[120,67,65,-0.7470388464899311],[120,67,66,-0.7467088985108152],[120,67,67,-0.746381347745498],[120,67,68,-0.7460561999334896],[120,67,69,-0.7457334607207621],[120,67,70,-0.7454131356593054],[120,67,71,-0.7450952302066898],[120,67,72,-0.7447797497256246],[120,67,73,-0.7444666994835336],[120,67,74,-0.7441560846521007],[120,67,75,-0.743847910306846],[120,67,76,-0.7435421814266898],[120,67,77,-0.7432389028935175],[120,67,78,-0.7429380794917482],[120,67,79,-0.7426397159078985],[120,68,64,-0.747510761576877],[120,68,65,-0.747178078512099],[120,68,66,-0.74684778643394],[120,68,67,-0.7465198911795798],[120,68,68,-0.7461943984931053],[120,68,69,-0.7458713140250812],[120,68,70,-0.7455506433321083],[120,68,71,-0.7452323918763837],[120,68,72,-0.7449165650252612],[120,68,73,-0.744603168050826],[120,68,74,-0.7442922061294399],[120,68,75,-0.7439836843413186],[120,68,76,-0.7436776076700942],[120,68,77,-0.7433739810023811],[120,68,78,-0.7430728091273444],[120,68,79,-0.7427740967362637],[120,69,64,-0.7476505073126578],[120,69,65,-0.7473174815123843],[120,69,66,-0.7469868463007009],[120,69,67,-0.7466586075193309],[120,69,68,-0.7463327709169211],[120,69,69,-0.7460093421486139],[120,69,70,-0.7456883267756047],[120,69,71,-0.7453697302647027],[120,69,72,-0.7450535579878905],[120,69,73,-0.7447398152218996],[120,69,74,-0.7444285071477552],[120,69,75,-0.7441196388503533],[120,69,76,-0.7438132153180234],[120,69,77,-0.7435092414420947],[120,69,78,-0.7432077220164639],[120,69,79,-0.7429086617371592],[120,70,64,-0.747790422955789],[120,70,65,-0.747457055392066],[120,70,66,-0.7471260780154234],[120,70,67,-0.7467974966721115],[120,70,68,-0.7464713171153213],[120,70,69,-0.7461475450047572],[120,70,70,-0.7458261859061937],[120,70,71,-0.745507245291036],[120,70,72,-0.745190728535881],[120,70,73,-0.7448766409220909],[120,70,74,-0.7445649876353393],[120,70,75,-0.7442557737651878],[120,70,76,-0.7439490043046487],[120,70,77,-0.7436446841497516],[120,70,78,-0.7433428180991102],[120,70,79,-0.7430434108534874],[120,71,64,-0.7479305084023329],[120,71,65,-0.7475968000502575],[120,71,66,-0.747265481480261],[120,71,67,-0.7469365585431043],[120,71,68,-0.746610036996507],[120,71,69,-0.7462859225047194],[120,71,70,-0.7459642206380791],[120,71,71,-0.7456449368725726],[120,71,72,-0.745328076589395],[120,71,73,-0.7450136450745246],[120,71,74,-0.744701647518268],[120,71,75,-0.7443920890148374],[120,71,76,-0.744084974561914],[120,71,77,-0.743780309060212],[120,71,78,-0.7434780973130486],[120,71,79,-0.7431783440259068],[120,72,64,-0.7480707635461751],[120,72,65,-0.7477367153838895],[120,72,66,-0.7474050565951784],[120,72,67,-0.7470757930352976],[120,72,68,-0.7467489304664787],[120,72,69,-0.746424474557502],[120,72,70,-0.7461024308832532],[120,72,71,-0.7457828049242838],[120,72,72,-0.7454656020663721],[120,72,73,-0.7451508276000967],[120,72,74,-0.7448384867203828],[120,72,75,-0.7445285845260783],[120,72,76,-0.7442211260195175],[120,72,77,-0.7439161161060859],[120,72,78,-0.743613559593789],[120,72,79,-0.743313461192816],[120,73,64,-0.7482111882790803],[120,73,65,-0.747876801287766],[120,73,66,-0.7475448032580082],[120,73,67,-0.7472152000495409],[120,73,68,-0.7468879974290925],[120,73,69,-0.7465632010699572],[120,73,70,-0.7462408165515524],[120,73,71,-0.7459208493589797],[120,73,72,-0.7456033048825846],[120,73,73,-0.7452881884175311],[120,73,74,-0.7449755051633475],[120,73,75,-0.7446652602235027],[120,73,76,-0.7443574586049693],[120,73,77,-0.7440521052177893],[120,73,78,-0.7437492048746422],[120,73,79,-0.7434487622904089],[120,74,64,-0.7483517824906677],[120,74,65,-0.7480170576545391],[120,74,66,-0.7476847213644247],[120,74,67,-0.7473547794845208],[120,74,68,-0.7470272377860356],[120,74,69,-0.7467021019467618],[120,74,70,-0.7463793775506327],[120,74,71,-0.7460590700872838],[120,74,72,-0.7457411849516129],[120,74,73,-0.7454257274433539],[120,74,74,-0.7451127027666229],[120,74,75,-0.7448021160294945],[120,74,76,-0.7444939722435654],[120,74,77,-0.7441882763235189],[120,74,78,-0.7438850330866943],[120,74,79,-0.7435842472526495],[120,75,64,-0.7484925460684347],[120,75,65,-0.7481574843747332],[120,75,66,-0.7478248108079688],[120,75,67,-0.7474945312367833],[120,75,68,-0.7471666514368492],[120,75,69,-0.746841177090441],[120,75,70,-0.7465181137859921],[120,75,71,-0.7461974670176567],[120,75,72,-0.7458792421848686],[120,75,73,-0.7455634445919167],[120,75,74,-0.7452500794474896],[120,75,75,-0.7449391518642525],[120,75,76,-0.7446306668584112],[120,75,77,-0.7443246293492756],[120,75,78,-0.74402104415883],[120,75,79,-0.7437199160112954],[120,76,64,-0.7486334788977312],[120,76,65,-0.7482980813367194],[120,76,66,-0.7479650714800219],[120,76,67,-0.7476344552007099],[120,76,68,-0.7473062382789035],[120,76,69,-0.746980426401343],[120,76,70,-0.7466570251609465],[120,76,71,-0.7463360400563703],[120,76,72,-0.7460174764915696],[120,76,73,-0.7457013397753718],[120,76,74,-0.7453876351210232],[120,76,75,-0.7450763676457648],[120,76,76,-0.7447675423703958],[120,76,77,-0.7444611642188385],[120,76,78,-0.7441572380177073],[120,76,79,-0.7438557684958719],[120,77,64,-0.7487745808618167],[120,77,65,-0.7484388484267721],[120,77,66,-0.7481055032698628],[120,77,67,-0.747774551268573],[120,77,68,-0.7474459982074539],[120,77,69,-0.747119849777696],[120,77,70,-0.7467961115766852],[120,77,71,-0.7464747891075652],[120,77,72,-0.7461558877787957],[120,77,73,-0.7458394129037282],[120,77,74,-0.7455253697001508],[120,77,75,-0.7452137632898649],[120,77,76,-0.7449045986982487],[120,77,77,-0.7445978808538216],[120,77,78,-0.7442936145878138],[120,77,79,-0.7439918046337288],[120,78,64,-0.7489158518418425],[120,78,65,-0.7485797855290516],[120,78,66,-0.7482461060646503],[120,78,67,-0.7479148193305192],[120,78,68,-0.7475859311156243],[120,78,69,-0.7472594471155901],[120,78,70,-0.7469353729322546],[120,78,71,-0.7466137140732323],[120,78,72,-0.7462944759514724],[120,78,73,-0.7459776638848343],[120,78,74,-0.7456632830956331],[120,78,75,-0.7453513387102151],[120,78,76,-0.7450418357585222],[120,78,77,-0.7447347791736567],[120,78,78,-0.7444301737914492],[120,78,79,-0.7441280243500227],[120,79,64,-0.7490572917168351],[120,79,65,-0.748720892525587],[120,79,66,-0.7483868797494058],[120,79,67,-0.7480552592745517],[120,79,68,-0.7477260368943894],[120,79,69,-0.7473992183089606],[120,79,70,-0.7470748091245396],[120,79,71,-0.7467528148531957],[120,79,72,-0.7464332409123521],[120,79,73,-0.7461160926243604],[120,79,74,-0.745801375216047],[120,79,75,-0.745489093818288],[120,79,76,-0.7451792534655742],[120,79,77,-0.7448718590955751],[120,79,78,-0.7445669155487074],[120,79,79,-0.7442644275676991],[120,80,64,-0.7491989003637528],[120,80,65,-0.7488621692963335],[120,80,66,-0.7485278242070705],[120,80,67,-0.7481958709865875],[120,80,68,-0.747866315432631],[120,80,69,-0.7475391632496441],[120,80,70,-0.7472144200483211],[120,80,71,-0.74689209134517],[120,80,72,-0.7465721825620719],[120,80,73,-0.7462546990258555],[120,80,74,-0.7459396459678425],[120,80,75,-0.7456270285234239],[120,80,76,-0.745316851731624],[120,80,77,-0.7450091205346644],[120,80,78,-0.7447038397775334],[120,80,79,-0.7444010142075492],[120,81,64,-0.7493406776574596],[120,81,65,-0.7490036157191454],[120,81,66,-0.7486689393184793],[120,81,67,-0.7483366543504311],[120,81,68,-0.7480067666171135],[120,81,69,-0.7476792818273537],[120,81,70,-0.7473542055962501],[120,81,71,-0.7470315434447337],[120,81,72,-0.7467113007991274],[120,81,73,-0.7463934829907213],[120,81,74,-0.7460780952553168],[120,81,75,-0.7457651427328047],[120,81,76,-0.7454546304667271],[120,81,77,-0.7451465634038432],[120,81,78,-0.7448409463936978],[120,81,79,-0.7445377841881845],[120,82,64,-0.7494826234707498],[120,82,65,-0.7491452316698016],[120,82,66,-0.7488102249623848],[120,82,67,-0.748477609247799],[120,82,68,-0.7481473903325062],[120,82,69,-0.7478195739297017],[120,82,70,-0.7474941656588714],[120,82,71,-0.7471711710453534],[120,82,72,-0.7468505955198965],[120,82,73,-0.746532444418236],[120,82,74,-0.7462167229806382],[120,82,75,-0.7459034363514775],[120,82,76,-0.7455925895787989],[120,82,77,-0.7452841876138843],[120,82,78,-0.7449782353108196],[120,82,79,-0.7446747374260594],[120,83,64,-0.749624737674322],[120,83,65,-0.7492870170219788],[120,83,66,-0.7489516810154316],[120,83,67,-0.7486187355582936],[120,83,68,-0.7482881864613588],[120,83,69,-0.7479600394421746],[120,83,70,-0.7476343001245981],[120,83,71,-0.7473109740383579],[120,83,72,-0.7469900666186132],[120,83,73,-0.7466715832055287],[120,83,74,-0.7463555290438195],[120,83,75,-0.7460419092823285],[120,83,76,-0.7457307289735886],[120,83,77,-0.7454219930733883],[120,83,78,-0.7451157064403406],[120,83,79,-0.7448118738354456],[120,84,64,-0.749767020136836],[120,84,65,-0.7494289716473086],[120,84,66,-0.7490933073522135],[120,84,67,-0.7487600331594599],[120,84,68,-0.7484291548841577],[120,84,69,-0.7481006782481896],[120,84,70,-0.7477746088797679],[120,84,71,-0.7474509523129951],[120,84,72,-0.7471297139874251],[120,84,73,-0.7468108992476358],[120,84,74,-0.7464945133427758],[120,84,75,-0.7461805614261406],[120,84,76,-0.7458690485547357],[120,84,77,-0.7455599796888415],[120,84,78,-0.7452533596915822],[120,84,79,-0.7449491933284894],[120,85,64,-0.7499094707248957],[120,85,65,-0.7495710954153606],[120,85,66,-0.7492351038452555],[120,85,67,-0.7489015019267686],[120,85,68,-0.748570295479309],[120,85,69,-0.7482414902290777],[120,85,70,-0.7479150918086259],[120,85,71,-0.7475911057564146],[120,85,72,-0.7472695375163753],[120,85,73,-0.7469503924374836],[120,85,74,-0.746633675773306],[120,85,75,-0.7463193926815748],[120,85,76,-0.7460075482237527],[120,85,77,-0.7456981473645967],[120,85,78,-0.7453911949717278],[120,85,79,-0.7450866958151934],[120,86,64,-0.7500520893030308],[120,86,65,-0.7497133881936244],[120,86,66,-0.7493770703649966],[120,86,67,-0.749043141733598],[120,86,68,-0.7487116081231195],[120,86,69,-0.7483824752640651],[120,86,70,-0.7480557487933073],[120,86,71,-0.7477314342536493],[120,86,72,-0.7474095370933845],[120,86,73,-0.7470900626658706],[120,86,74,-0.7467730162290752],[120,86,75,-0.7464584029451528],[120,86,76,-0.7461462278800071],[120,86,77,-0.745836496002857],[120,86,78,-0.7455292121858044],[120,86,79,-0.7452243812033982],[120,87,64,-0.7501948757337549],[120,87,65,-0.7498558498475667],[120,87,66,-0.7495192067798468],[120,87,67,-0.749184952451291],[120,87,68,-0.7488530926898559],[120,87,69,-0.7485236332303307],[120,87,70,-0.7481965797138934],[120,87,71,-0.7478719376876732],[120,87,72,-0.7475497126043091],[120,87,73,-0.7472299098215243],[120,87,74,-0.7469125346016725],[120,87,75,-0.7465975921113139],[120,87,76,-0.7462850874207786],[120,87,77,-0.7459750255037312],[120,87,78,-0.74566741123674],[120,87,79,-0.7453622493988401],[120,88,64,-0.7503378298775472],[120,88,65,-0.7499984802406137],[120,88,66,-0.7496615129561693],[120,88,67,-0.7493269339491381],[120,88,68,-0.7489947490517251],[120,88,69,-0.7486649640029883],[120,88,70,-0.7483375844483952],[120,88,71,-0.7480126159393835],[120,88,72,-0.7476900639329219],[120,88,73,-0.7473699337910835],[120,88,74,-0.747052230780592],[120,88,75,-0.7467369600723976],[120,88,76,-0.7464241267412408],[120,88,77,-0.7461137357652172],[120,88,78,-0.7458057920253459],[120,88,79,-0.7455003003051331],[120,89,64,-0.7504809515928351],[120,89,65,-0.7501412792341337],[120,89,66,-0.749803988758263],[120,89,67,-0.7494690860943589],[120,89,68,-0.7491365770788577],[120,89,69,-0.7488064674550696],[120,89,70,-0.7484787628727342],[120,89,71,-0.7481534688875822],[120,89,72,-0.7478305909608954],[120,89,73,-0.7475101344590807],[120,89,74,-0.7471921046532155],[120,89,75,-0.7468765067186248],[120,89,76,-0.7465633457344437],[120,89,77,-0.7462526266831832],[120,89,78,-0.7459443544502979],[120,89,79,-0.7456385338237506],[120,90,64,-0.7506242407360516],[120,90,65,-0.7502842466874937],[120,90,66,-0.7499466340484199],[120,90,67,-0.7496114087521599],[120,90,68,-0.7492785766393649],[120,90,69,-0.74894814345758],[120,90,70,-0.7486201148608007],[120,90,71,-0.7482944964090341],[120,90,72,-0.7479712935678586],[120,90,73,-0.7476505117079988],[120,90,74,-0.74733215610487],[120,90,75,-0.7470162319381558],[120,90,76,-0.7467027442913706],[120,90,77,-0.746391698151425],[120,90,78,-0.7460830984081942],[120,90,79,-0.7457769498540818],[120,91,64,-0.7507676971616091],[120,91,65,-0.7504273824580343],[120,91,66,-0.7500894486868985],[120,91,67,-0.7497539017857081],[120,91,68,-0.7494207475993121],[120,91,69,-0.7490899918794736],[120,91,70,-0.7487616402844273],[120,91,71,-0.7484356983784399],[120,91,72,-0.7481121716313708],[120,91,73,-0.7477910654182451],[120,91,74,-0.7474723850188006],[120,91,75,-0.7471561356170635],[120,91,76,-0.7468423223009117],[120,91,77,-0.7465309500616399],[120,91,78,-0.7462220237935289],[120,91,79,-0.7459155482934074],[120,92,64,-0.7509113207219231],[120,92,65,-0.750570686401093],[120,92,66,-0.7502324325319483],[120,92,67,-0.7498965650561553],[120,92,68,-0.7495630898227431],[120,92,69,-0.7492320125876767],[120,92,70,-0.7489033390134127],[120,92,71,-0.7485770746684611],[120,92,72,-0.7482532250269452],[120,92,73,-0.7479317954681755],[120,92,74,-0.7476127912761953],[120,92,75,-0.7472962176393576],[120,92,76,-0.7469820796498883],[120,92,77,-0.7466703823034508],[120,92,78,-0.7463611304987151],[120,92,79,-0.7460543290369211],[120,93,64,-0.751055111267387],[120,93,65,-0.7507141583699781],[120,93,66,-0.7503755854397834],[120,93,67,-0.7500393984226111],[120,93,68,-0.7497056031716541],[120,93,69,-0.7493742054470613],[120,93,70,-0.7490452109154954],[120,93,71,-0.7487186251496925],[120,93,72,-0.7483944536280234],[120,93,73,-0.7480727017340671],[120,93,74,-0.7477533747561574],[120,93,75,-0.7474364778869578],[120,93,76,-0.7471220162230259],[120,93,77,-0.7468099947643784],[120,93,78,-0.7465004184140595],[120,93,79,-0.7461932919777042],[120,94,64,-0.7511990686464284],[120,94,65,-0.7508577982160265],[120,94,66,-0.7505189072646397],[120,94,67,-0.7501824017422013],[120,94,68,-0.7498482875060504],[120,94,69,-0.7495165703205032],[120,94,70,-0.7491872558564109],[120,94,71,-0.7488603496907196],[120,94,72,-0.7485358573060312],[120,94,73,-0.748213784090177],[120,94,74,-0.7478941353357642],[120,94,75,-0.7475769162397511],[120,94,76,-0.7472621319030116],[120,94,77,-0.7469497873298998],[120,94,78,-0.7466398874278184],[120,94,79,-0.7463324370067828],[120,95,64,-0.7513431927054919],[120,95,65,-0.751001605788585],[120,95,66,-0.7506623978587572],[120,95,67,-0.7503255748700493],[120,95,68,-0.749991142683929],[120,95,69,-0.7496591070688632],[120,95,70,-0.7493294736998743],[120,95,71,-0.749002248158102],[120,95,72,-0.7486774359303625],[120,95,73,-0.7483550424087231],[120,95,74,-0.7480350728900478],[120,95,75,-0.7477175325755743],[120,95,76,-0.7474024265704764],[120,95,77,-0.7470897598834301],[120,95,78,-0.746779537426181],[120,95,79,-0.7464717640131093],[120,96,64,-0.7514874832890212],[120,96,65,-0.7511455809349937],[120,96,66,-0.7508060570723625],[120,96,67,-0.7504689176592583],[120,96,68,-0.7501341685612606],[120,96,69,-0.7498018155509695],[120,96,70,-0.749471864307562],[120,96,71,-0.749144320416354],[120,96,72,-0.7488191893683597],[120,96,73,-0.7484964765598658],[120,96,74,-0.7481761872919775],[120,96,75,-0.747858326770195],[120,96,76,-0.7475429001039765],[120,96,77,-0.7472299123063038],[120,96,78,-0.74691936829325],[120,96,79,-0.7466112728835446],[120,97,64,-0.7516319402395162],[120,97,65,-0.7512897235006424],[120,97,66,-0.7509498847537255],[120,97,67,-0.7506124299609691],[120,97,68,-0.7502773649920471],[120,97,69,-0.7499446956236752],[120,97,70,-0.7496144275391686],[120,97,71,-0.7492865663280024],[120,97,72,-0.7489611174853721],[120,97,73,-0.748638086411767],[120,97,74,-0.7483174784125175],[120,97,75,-0.7479992986973699],[120,97,76,-0.747683552380051],[120,97,77,-0.7473702444778324],[120,97,78,-0.7470593799110994],[120,97,79,-0.746750963502915],[120,98,64,-0.7517765633975078],[120,98,65,-0.7514340333289444],[120,98,66,-0.7510938807491334],[120,98,67,-0.7507561116243333],[120,98,68,-0.7504207318282946],[120,98,69,-0.7500877471418321],[120,98,70,-0.7497571632523815],[120,98,71,-0.7494289857535603],[120,98,72,-0.7491032201447285],[120,98,73,-0.7487798718305623],[120,98,74,-0.7484589461205996],[120,98,75,-0.7481404482288176],[120,98,76,-0.7478243832731952],[120,98,77,-0.7475107562752781],[120,98,78,-0.7471995721597481],[120,98,79,-0.7468908357539863],[120,99,64,-0.7519213526015802],[120,99,65,-0.7515785102613616],[120,99,66,-0.7512380449029155],[120,99,67,-0.7508999624965377],[120,99,68,-0.7505642689200386],[120,99,69,-0.7502309699583143],[120,99,70,-0.7499000713029039],[120,99,71,-0.7495715785515508],[120,99,72,-0.7492454972077625],[120,99,73,-0.7489218326803847],[120,99,74,-0.748600590283148],[120,99,75,-0.7482817752342428],[120,99,76,-0.7479653926558846],[120,99,77,-0.7476514475738774],[120,99,78,-0.7473399449171833],[120,99,79,-0.7470308895174862],[120,100,64,-0.7520663076883461],[120,100,65,-0.7517231541373763],[120,100,66,-0.7513823770574148],[120,100,67,-0.7510439824227775],[120,100,68,-0.7507079761153163],[120,100,69,-0.7503743639239915],[120,100,70,-0.7500431515444288],[120,100,71,-0.7497143445784802],[120,100,72,-0.749387948533784],[120,100,73,-0.7490639688233391],[120,100,74,-0.7487424107650513],[120,100,75,-0.7484232795813092],[120,100,76,-0.7481065803985477],[120,100,77,-0.7477923182468137],[120,100,78,-0.7474804980593339],[120,100,79,-0.7471711246720791],[120,101,64,-0.7522114284925037],[120,101,65,-0.7518679647945503],[120,101,66,-0.7515268770530479],[120,101,67,-0.7511881712463138],[120,101,68,-0.7508518532602245],[120,101,69,-0.7505179288877872],[120,101,70,-0.7501864038286966],[120,101,71,-0.7498572836888963],[120,101,72,-0.7495305739801386],[120,101,73,-0.7492062801195589],[120,101,74,-0.7488844074292219],[120,101,75,-0.7485649611356975],[120,101,76,-0.7482479463696246],[120,101,77,-0.7479333681652762],[120,101,78,-0.7476212314601282],[120,101,79,-0.7473115410944227],[120,102,64,-0.7523567148468181],[120,102,65,-0.7520129420685067],[120,102,66,-0.7516715447282853],[120,102,67,-0.7513325288084561],[120,102,68,-0.7509959001989022],[120,102,69,-0.7506616646966602],[120,102,70,-0.7503298280054764],[120,102,71,-0.7500003957353694],[120,102,72,-0.7496733734021882],[120,102,73,-0.7493487664271883],[120,102,74,-0.7490265801365762],[120,102,75,-0.748706819761087],[120,102,76,-0.7483894904355474],[120,102,77,-0.7480745971984406],[120,102,78,-0.7477621449914753],[120,102,79,-0.7474521386591497],[120,103,64,-0.7525021665821044],[120,103,65,-0.7521580857929105],[120,103,66,-0.751816379919634],[120,103,67,-0.7514770549485436],[120,103,68,-0.7511401167735114],[120,103,69,-0.7508055711955861],[120,103,70,-0.7504734239225486],[120,103,71,-0.7501436805684746],[120,103,72,-0.7498163466532934],[120,103,73,-0.7494914276023634],[120,103,74,-0.7491689287460168],[120,103,75,-0.7488488553191373],[120,103,76,-0.7485312124607226],[120,103,77,-0.7482160052134506],[120,103,78,-0.7479032385232469],[120,103,79,-0.7475929172388495],[120,104,64,-0.7526477835272849],[120,104,65,-0.7523033957995282],[120,104,66,-0.7519613824616953],[120,104,67,-0.7516217495040032],[120,104,68,-0.7512845028242956],[120,104,69,-0.7509496482276157],[120,104,70,-0.7506171914257616],[120,104,71,-0.7502871380368491],[120,104,72,-0.7499594935848708],[120,104,73,-0.7496342634992706],[120,104,74,-0.7493114531144903],[120,104,75,-0.7489910676695455],[120,104,76,-0.7486731123075889],[120,104,77,-0.7483575920754761],[120,104,78,-0.7480445119233345],[120,104,79,-0.747733876704126],[120,105,64,-0.7527935655093619],[120,105,65,-0.7524488719181996],[120,105,66,-0.7521065521871373],[120,105,67,-0.7517666123103225],[120,105,68,-0.7514290581895529],[120,105,69,-0.751093895633848],[120,105,70,-0.7507611303590063],[120,105,71,-0.750430767987166],[120,105,72,-0.7501028140463661],[120,105,73,-0.7497772739701196],[120,105,74,-0.7494541530969606],[120,105,75,-0.7491334566700201],[120,105,76,-0.7488151898365896],[120,105,77,-0.7484993576476865],[120,105,78,-0.7481859650576232],[120,105,79,-0.7478750169235704],[120,106,64,-0.7529395123534428],[120,106,65,-0.7525945139768632],[120,106,66,-0.7522518889267202],[120,106,67,-0.7519116432010745],[120,106,68,-0.7515737827056597],[120,106,69,-0.7512383132534541],[120,106,70,-0.7509052405642388],[120,106,71,-0.7505745702641579],[120,106,72,-0.7502463078852788],[120,106,73,-0.7499204588651672],[120,106,74,-0.7495970285464324],[120,106,75,-0.7492760221763045],[120,106,76,-0.7489574449061971],[120,106,77,-0.7486413017912736],[120,106,78,-0.7483275977900152],[120,106,79,-0.748016337763785],[120,107,64,-0.753085623882713],[120,107,65,-0.7527403218015283],[120,107,66,-0.752397392509269],[120,107,67,-0.7520568420078902],[120,107,68,-0.751718676207044],[120,107,69,-0.7513829009236503],[120,107,70,-0.7510495218814546],[120,107,71,-0.7507185447105895],[120,107,72,-0.7503899749471344],[120,107,73,-0.75006381803269],[120,107,74,-0.7497400793139244],[120,107,75,-0.7494187640421498],[120,107,76,-0.7490998773728859],[120,107,77,-0.7487834243654253],[120,107,78,-0.7484694099824021],[120,107,79,-0.7481578390893561],[120,108,64,-0.7532318999184935],[120,108,65,-0.7528862952163337],[120,108,66,-0.7525430627617309],[120,108,67,-0.7522022085605171],[120,108,68,-0.7518637385262442],[120,108,69,-0.7515276584797561],[120,108,70,-0.751193974148746],[120,108,71,-0.750862691167317],[120,108,72,-0.750533815075543],[120,108,73,-0.750207351319043],[120,108,74,-0.7498833052485273],[120,108,75,-0.7495616821193732],[120,108,76,-0.7492424870911901],[120,108,77,-0.7489257252273833],[120,108,78,-0.748611401494724],[120,108,79,-0.7482995207629124],[120,109,64,-0.7533783402802234],[120,109,65,-0.7530324340435292],[120,109,66,-0.7526888995091578],[120,109,67,-0.7523477426867997],[120,109,68,-0.7520089694938894],[120,109,69,-0.7516725857551764],[120,109,70,-0.7513385972022836],[120,109,71,-0.7510070094732678],[120,109,72,-0.7506778281121803],[120,109,73,-0.750351058568641],[120,109,74,-0.7500267061973853],[120,109,75,-0.7497047762578393],[120,109,76,-0.749385273913685],[120,109,77,-0.7490682042324248],[120,109,78,-0.74875357218495],[120,109,79,-0.7484413826451056],[120,110,64,-0.7535249447854407],[120,110,65,-0.7531787381034571],[120,110,66,-0.7528349025746875],[120,110,67,-0.7524934442126628],[120,110,68,-0.7521543689386816],[120,110,69,-0.7518176825813818],[120,110,70,-0.7514833908762981],[120,110,71,-0.7511514994654236],[120,110,72,-0.7508220138967694],[120,110,73,-0.7504949396239395],[120,110,74,-0.7501702820056773],[120,110,75,-0.749848046305441],[120,110,76,-0.7495282376909687],[120,110,77,-0.7492108612338428],[120,110,78,-0.7488959219090595],[120,110,79,-0.7485834245945922],[120,111,64,-0.753671713249841],[120,111,65,-0.7533252072146106],[120,111,66,-0.7529810717796022],[120,111,67,-0.7526393129621683],[120,111,68,-0.7522999366874541],[120,111,69,-0.7519629487879677],[120,111,70,-0.7516283550031383],[120,111,71,-0.7512961609788773],[120,111,72,-0.7509663722671387],[120,111,73,-0.7506389943254933],[120,111,74,-0.7503140325166752],[120,111,75,-0.7499914921081581],[120,111,76,-0.7496713782717195],[120,111,77,-0.7493536960830058],[120,111,78,-0.7490384505211011],[120,111,79,-0.748725646468091],[120,112,64,-0.75381864548725],[120,112,65,-0.7534718411936066],[120,112,66,-0.7531274069433004],[120,112,67,-0.7527853487574885],[120,112,68,-0.7524456725651438],[120,112,69,-0.752108384202627],[120,112,70,-0.7517734894132438],[120,112,71,-0.7514409938468068],[120,112,72,-0.751110903059195],[120,112,73,-0.7507832225119289],[120,112,74,-0.7504579575717164],[120,112,75,-0.7501351135100299],[120,112,76,-0.7498146955026695],[120,112,77,-0.7494967086293289],[120,112,78,-0.7491811578731641],[120,112,79,-0.7488680481203569],[120,113,64,-0.7539657413096488],[120,113,65,-0.7536186398552097],[120,113,66,-0.7532739078833227],[120,113,67,-0.7529315514189304],[120,113,68,-0.7525915763948158],[120,113,69,-0.752253988651174],[120,113,70,-0.7519187939351697],[120,113,71,-0.7515859979004984],[120,113,72,-0.7512556061069473],[120,113,73,-0.7509276240199689],[120,113,74,-0.7506020570102285],[120,113,75,-0.7502789103531795],[120,113,76,-0.7499581892286283],[120,113,77,-0.7496398987202991],[120,113,78,-0.7493240438154034],[120,113,79,-0.7490106294042032],[120,114,64,-0.7541130005271455],[120,114,65,-0.7537656030123057],[120,114,66,-0.7534205744153234],[120,114,67,-0.7530779207649086],[120,114,68,-0.7527376479976361],[120,114,69,-0.7523997619575173],[120,114,70,-0.7520642683955582],[120,114,71,-0.7517311729693197],[120,114,72,-0.7514004812424794],[120,114,73,-0.7510721986844049],[120,114,74,-0.750746330669701],[120,114,75,-0.7504228824777858],[120,114,76,-0.7501018592924549],[120,114,77,-0.7497832662014468],[120,114,78,-0.7494671081960116],[120,114,79,-0.7491533901704754],[120,115,64,-0.7542604229480341],[120,115,65,-0.7539127304759592],[120,115,66,-0.7535674063531292],[120,115,67,-0.7532244566120034],[120,115,68,-0.7528838871929298],[120,115,69,-0.7525457039437184],[120,115,70,-0.7522099126191982],[120,115,71,-0.7518765188807783],[120,115,72,-0.7515455282960087],[120,115,73,-0.7512169463381551],[120,115,74,-0.7508907783857444],[120,115,75,-0.7505670297221423],[120,115,76,-0.7502457055351172],[120,115,77,-0.7499268109164046],[120,115,78,-0.7496103508612774],[120,115,79,-0.7492963302681093],[120,116,64,-0.7544080083787765],[120,116,65,-0.7540600220553956],[120,116,66,-0.753714403508721],[120,116,67,-0.7533711587749421],[120,116,68,-0.7530302937981626],[120,116,69,-0.7526918144299725],[120,116,70,-0.7523557264290059],[120,116,71,-0.7520220354605025],[120,116,72,-0.7516907470958671],[120,116,73,-0.7513618668122457],[120,116,74,-0.7510353999920707],[120,116,75,-0.7507113519226383],[120,116,76,-0.750389727795672],[120,116,77,-0.7500705327068886],[120,116,78,-0.7497537716555668],[120,116,79,-0.7494394495441115],[120,117,64,-0.7545557566239829],[120,117,65,-0.7542074775579823],[120,117,66,-0.7538615656922144],[120,117,67,-0.7535180270665808],[120,117,68,-0.7531768676289219],[120,117,69,-0.75283809323459],[120,117,70,-0.7525017096460064],[120,117,71,-0.7521677225322229],[120,117,72,-0.7518361374684822],[120,117,73,-0.7515069599357929],[120,117,74,-0.7511801953204755],[120,117,75,-0.7508558489137395],[120,117,76,-0.7505339259112471],[120,117,77,-0.7502144314126793],[120,117,78,-0.7498973704213039],[120,117,79,-0.749582747843541],[120,118,64,-0.7547036674864707],[120,118,65,-0.7543550967892868],[120,118,66,-0.7540088927119191],[120,118,67,-0.7536650612979622],[120,118,68,-0.7533236084989754],[120,118,69,-0.7529845401740551],[120,118,70,-0.7526478620893914],[120,118,71,-0.7523135799178307],[120,118,72,-0.7519816992384357],[120,118,73,-0.7516522255360601],[120,118,74,-0.7513251642008953],[120,118,75,-0.7510005205280471],[120,118,76,-0.7506782997170991],[120,118,77,-0.7503585068716796],[120,118,78,-0.7500411469990295],[120,118,79,-0.7497262250095671],[120,119,64,-0.7548517407672458],[120,119,65,-0.7545028795530585],[120,119,66,-0.7541563843743192],[120,119,67,-0.7538122612782975],[120,119,68,-0.7534705162202526],[120,119,69,-0.7531311550630069],[120,119,70,-0.7527941835765013],[120,119,71,-0.752459607437359],[120,119,72,-0.7521274322284447],[120,119,73,-0.75179766343844],[120,119,74,-0.7514703064613897],[120,119,75,-0.7511453665962782],[120,119,76,-0.7508228490465945],[120,119,77,-0.7505027589198966],[120,119,78,-0.750185101227382],[120,119,79,-0.749869880883451],[120,120,64,-0.7549999762654844],[120,120,65,-0.7546508256512099],[120,120,66,-0.7543040404840555],[120,120,67,-0.753959626814947],[120,120,68,-0.7536175906028255],[120,120,69,-0.7532779377142202],[120,120,70,-0.7529406739228057],[120,120,71,-0.7526058049089634],[120,120,72,-0.7522733362593426],[120,120,73,-0.751943273466435],[120,120,74,-0.7516156219281211],[120,120,75,-0.7512903869472475],[120,120,76,-0.7509675737311904],[120,120,77,-0.7506471873914218],[120,120,78,-0.7503292329430783],[120,120,79,-0.7500137153045259],[120,121,64,-0.7551483737785905],[120,121,65,-0.7547989348838746],[120,121,66,-0.7544518608439832],[120,121,67,-0.7541071577134791],[120,121,68,-0.753764831454967],[120,121,69,-0.753424887938665],[120,121,70,-0.7530873329419623],[120,121,71,-0.7527521721489814],[120,121,72,-0.7524194111501379],[120,121,73,-0.7520890554417159],[120,121,74,-0.7517611104254147],[120,121,75,-0.7514355814079251],[120,121,76,-0.7511124736004939],[120,121,77,-0.7507917921184899],[120,121,78,-0.7504735419809725],[120,121,79,-0.7501577281102564],[120,122,64,-0.7552969331021694],[120,122,65,-0.7549472070493808],[120,122,66,-0.7545998452551447],[120,122,67,-0.7542548537776428],[120,122,68,-0.7539122385831242],[120,122,69,-0.7535720055454778],[120,122,70,-0.7532341604457895],[120,122,71,-0.7528987089719041],[120,122,72,-0.7525656567179861],[120,122,73,-0.7522350091840947],[120,122,74,-0.7519067717757297],[120,122,75,-0.7515809498034094],[120,122,76,-0.7512575484822339],[120,122,77,-0.7509365729314516],[120,122,78,-0.7506180281740279],[120,122,79,-0.7503019191362099],[120,123,64,-0.7554456540300518],[120,123,65,-0.7550956419442748],[120,123,66,-0.7547479935167941],[120,123,67,-0.7544027148093915],[120,123,68,-0.7540598117919419],[120,123,69,-0.7537192903419866],[120,123,70,-0.7533811562442897],[120,123,71,-0.7530454151904007],[120,123,72,-0.7527120727782148],[120,123,73,-0.7523811345115482],[120,123,74,-0.7520526057996842],[120,123,75,-0.751726491956951],[120,123,76,-0.7514027982022847],[120,123,77,-0.7510815296587967],[120,123,78,-0.7507626913533412],[120,123,79,-0.7504462882160812],[120,124,64,-0.7555945363542658],[120,124,65,-0.7552442393632939],[120,124,66,-0.7548963054263695],[120,124,67,-0.754550740608856],[120,124,68,-0.7542075508842356],[120,124,69,-0.7538667421336832],[120,124,70,-0.753528320145623],[120,124,71,-0.7531922906152908],[120,124,72,-0.752858659144295],[120,124,73,-0.7525274312401905],[120,124,74,-0.7521986123160271],[120,124,75,-0.7518722076899248],[120,124,76,-0.7515482225846392],[120,124,77,-0.7512266621271269],[120,124,78,-0.7509075313481146],[120,124,79,-0.7505908351816646],[120,125,64,-0.7557435798650965],[120,125,65,-0.7553929990994246],[120,125,66,-0.7550447807795515],[120,125,67,-0.7546989309744029],[120,125,68,-0.7543554556610496],[120,125,69,-0.7540143607242815],[120,125,70,-0.7536756519561646],[120,125,71,-0.753339335055603],[120,125,72,-0.7530054156278998],[120,125,73,-0.7526738991843318],[120,125,74,-0.7523447911416965],[120,125,75,-0.752018096821889],[120,125,76,-0.7516938214514667],[120,125,77,-0.7513719701612145],[120,125,78,-0.7510525479857149],[120,125,79,-0.750735559862912],[120,126,64,-0.7558927843510663],[120,126,65,-0.7555419209438846],[120,126,66,-0.755193419370245],[120,126,67,-0.7548472857026158],[120,126,68,-0.7545035259216383],[120,126,69,-0.7541621459156989],[120,126,70,-0.7538231514804868],[120,126,71,-0.7534865483185561],[120,126,72,-0.7531523420388868],[120,126,73,-0.7528205381564592],[120,126,74,-0.7524911420918012],[120,126,75,-0.7521641591705658],[120,126,76,-0.7518395946230942],[120,126,77,-0.7515174535839831],[120,126,78,-0.7511977410916533],[120,126,79,-0.7508804620879144],[120,127,64,-0.7560421495989164],[120,127,65,-0.7556910046861032],[120,127,66,-0.7553422209905588],[120,127,67,-0.7549958045882761],[120,127,68,-0.7546517614634474],[120,127,69,-0.754310097508037],[120,127,70,-0.7539708185213392],[120,127,71,-0.7536339302095396],[120,127,72,-0.7532994381852769],[120,127,73,-0.7529673479672172],[120,127,74,-0.7526376649796013],[120,127,75,-0.7523103945518218],[120,127,76,-0.7519855419179872],[120,127,77,-0.7516631122164882],[120,127,78,-0.751343110489567],[120,127,79,-0.7510255416828822],[120,128,64,-0.7561916753936655],[120,128,65,-0.75584025011378],[120,128,66,-0.755491185430866],[120,128,67,-0.755144487424422],[120,128,68,-0.7548001620821724],[120,128,69,-0.7544582152996409],[120,128,70,-0.7541186528797079],[120,128,71,-0.7537814805321728],[120,128,72,-0.7534467038733146],[120,128,73,-0.7531143284254673],[120,128,74,-0.7527843596165666],[120,128,75,-0.7524568027797275],[120,128,76,-0.7521316631528081],[120,128,77,-0.751808945877976],[120,128,78,-0.7514886560012778],[120,128,79,-0.7511707984722041],[120,129,64,-0.7563413615185821],[120,129,65,-0.7559896570128575],[120,129,66,-0.7556403124797755],[120,129,67,-0.7552933340023205],[120,129,68,-0.7549487275717307],[120,129,69,-0.7546064990870704],[120,129,70,-0.7542666543547876],[120,129,71,-0.7539291990882768],[120,129,72,-0.7535941389074394],[120,129,73,-0.7532614793382594],[120,129,74,-0.7529312258123494],[120,129,75,-0.7526033836665289],[120,129,76,-0.7522779581423886],[120,129,77,-0.7519549543858555],[120,129,78,-0.7516343774467638],[120,129,79,-0.7513162322784188],[120,130,64,-0.756491207755209],[120,130,65,-0.7561392251675454],[120,130,66,-0.7557896019241559],[120,130,67,-0.7554423441114921],[120,130,68,-0.7550974577242866],[120,130,69,-0.7547549486651254],[120,130,70,-0.7544148227440058],[120,130,71,-0.754077085677899],[120,130,72,-0.7537417430903106],[120,130,73,-0.7534088005108561],[120,130,74,-0.7530782633748078],[120,130,75,-0.752750137022672],[120,130,76,-0.7524244266997537],[120,130,77,-0.7521011375557229],[120,130,78,-0.7517802746441837],[120,130,79,-0.7514618429222395],[120,131,64,-0.7566412138833354],[120,131,65,-0.7562889543602931],[120,131,66,-0.755939053549109],[120,131,67,-0.7555915175396828],[120,131,68,-0.7552463523302224],[120,131,69,-0.7549035638268171],[120,131,70,-0.7545631578429948],[120,131,71,-0.7542251400992848],[120,131,72,-0.7538895162227786],[120,131,73,-0.7535562917467051],[120,131,74,-0.7532254721099785],[120,131,75,-0.7528970626567739],[120,131,76,-0.7525710686360939],[120,131,77,-0.752247495201333],[120,131,78,-0.7519263474098488],[120,131,79,-0.7516076302225253],[120,132,64,-0.7567913796810559],[120,132,65,-0.7564388443718477],[120,132,66,-0.7560886671380271],[120,132,67,-0.7557408540729225],[120,132,68,-0.7553954111781983],[120,132,69,-0.7550523443634278],[120,132,70,-0.7547116594456508],[120,132,71,-0.7543733621489366],[120,132,72,-0.7540374581039441],[120,132,73,-0.7537039528474979],[120,132,74,-0.7533728518221352],[120,132,75,-0.7530441603756831],[120,132,76,-0.7527178837608234],[120,132,77,-0.7523940271346584],[120,132,78,-0.7520725955582814],[120,132,79,-0.7517535939963408],[120,133,64,-0.7569417049247513],[120,133,65,-0.7565888949812362],[120,133,66,-0.7562384424725753],[120,133,67,-0.7558903534955068],[120,133,68,-0.7555446340551324],[120,133,69,-0.7552012900644907],[120,133,70,-0.7548603273441148],[120,133,71,-0.7545217516215948],[120,133,72,-0.7541855685311394],[120,133,73,-0.7538517836131501],[120,133,74,-0.7535204023137698],[120,133,75,-0.753191429984459],[120,133,76,-0.7528648718815616],[120,133,77,-0.7525407331658701],[120,133,78,-0.7522190189021962],[120,133,79,-0.7518997340589356],[120,134,64,-0.7570921893890695],[120,134,65,-0.7567391059657449],[120,134,66,-0.7563883793326713],[120,134,67,-0.756040015589977],[120,134,68,-0.7556940207461822],[120,134,69,-0.7553504007177715],[120,134,70,-0.7550091613287526],[120,134,71,-0.7546703083102185],[120,134,72,-0.7543338472999082],[120,134,73,-0.7539997838417827],[120,134,74,-0.7536681233855721],[120,134,75,-0.7533388712863529],[120,134,76,-0.753012032804113],[120,134,77,-0.7526876131033178],[120,134,78,-0.7523656172524803],[120,134,79,-0.752046050223726],[120,135,64,-0.7572428328469849],[120,135,65,-0.7568894771009799],[120,135,66,-0.7565384774965451],[120,135,67,-0.7561898401371796],[120,135,68,-0.7558435710348029],[120,135,69,-0.755499676109327],[120,135,70,-0.7551581611882151],[120,135,71,-0.7548190320060439],[120,135,72,-0.7544822942040652],[120,135,73,-0.7541479533297808],[120,135,74,-0.7538160148364899],[120,135,75,-0.753486484082867],[120,135,76,-0.7531593663325267],[120,135,77,-0.7528346667535893],[120,135,78,-0.752512390418252],[120,135,79,-0.752192542302353],[120,136,64,-0.7573936350697698],[120,136,65,-0.7570400081608379],[120,136,66,-0.7566887367407105],[120,136,67,-0.7563398269162382],[120,136,68,-0.7559932847027203],[120,136,69,-0.7556491160234772],[120,136,70,-0.7553073267094087],[120,136,71,-0.7549679224985572],[120,136,72,-0.754630909035668],[120,136,73,-0.7542962918717654],[120,136,74,-0.7539640764637001],[120,136,75,-0.7536342681737265],[120,136,76,-0.7533068722690677],[120,136,77,-0.7529818939214822],[120,136,78,-0.7526593382068332],[120,136,79,-0.7523392101046545],[120,137,64,-0.7575445958270192],[120,137,65,-0.7571906989175315],[120,137,66,-0.7568391568399901],[120,137,67,-0.7564899757045778],[120,137,68,-0.7561431615299543],[120,137,69,-0.7557987202428293],[120,137,70,-0.755456657677521],[120,137,71,-0.7551169795755178],[120,137,72,-0.7547796915850405],[120,137,73,-0.7544447992606179],[120,137,74,-0.7541123080626333],[120,137,75,-0.7537822233569031],[120,137,76,-0.7534545504142418],[120,137,77,-0.7531292944100275],[120,137,78,-0.7528064604237727],[120,137,79,-0.7524860534386897],[120,138,64,-0.757695714886623],[120,138,65,-0.7573415491415605],[120,138,66,-0.7569897375674864],[120,138,67,-0.7566402862778961],[120,138,68,-0.7562932012947909],[120,138,69,-0.7559484885482504],[120,138,70,-0.7556061538759916],[120,138,71,-0.755266203022931],[120,138,72,-0.7549286416407461],[120,138,73,-0.7545934752874514],[120,138,74,-0.7542607094269451],[120,138,75,-0.7539303494285876],[120,138,76,-0.7536024005667664],[120,138,77,-0.753276868020462],[120,138,78,-0.7529537568728188],[120,138,79,-0.7526330721107097],[120,139,64,-0.7578469920148246],[120,139,65,-0.7574925586017716],[120,139,66,-0.7571404786946417],[120,139,67,-0.7567907584102241],[120,139,68,-0.7564434037738418],[120,139,69,-0.7560984207189253],[120,139,70,-0.7557558150865719],[120,139,71,-0.7554155926251067],[120,139,72,-0.7550777589896457],[120,139,73,-0.7547423197416703],[120,139,74,-0.7544092803485758],[120,139,75,-0.7540786461832483],[120,139,76,-0.7537504225236302],[120,139,77,-0.7534246145522872],[120,139,78,-0.7531012273559775],[120,139,79,-0.7527802659252179],[120,140,64,-0.7579984269762023],[120,140,65,-0.7576437270653382],[120,140,66,-0.7572913799912185],[120,140,67,-0.7569413918739053],[120,140,68,-0.7565937687420246],[120,140,69,-0.7562485165323385],[120,140,70,-0.7559056410893051],[120,140,71,-0.75556514816464],[120,140,72,-0.7552270434168784],[120,140,73,-0.7548913324109509],[120,140,74,-0.7545580206177305],[120,140,75,-0.7542271134136115],[120,140,76,-0.7538986160800737],[120,140,77,-0.7535725338032494],[120,140,78,-0.7532488716734936],[120,140,79,-0.7529276346849496],[120,141,64,-0.758150019533649],[120,141,65,-0.7577950542977425],[120,141,66,-0.7574424412252798],[120,141,67,-0.7570921864395772],[120,141,68,-0.7567442959725434],[120,141,69,-0.7563987757642537],[120,141,70,-0.7560556316625074],[120,141,71,-0.7557148694223919],[120,141,72,-0.7553764947058427],[120,141,73,-0.7550405130812208],[120,141,74,-0.7547069300228596],[120,141,75,-0.7543757509106426],[120,141,76,-0.754046981029569],[120,141,77,-0.7537206255693204],[120,141,78,-0.7533966896238307],[120,141,79,-0.7530751781908521],[120,142,64,-0.7583017694484322],[120,142,65,-0.7579465400628332],[120,142,66,-0.757593662163249],[120,142,67,-0.7572431418762298],[120,142,68,-0.7568949852369486],[120,142,69,-0.7565491981887735],[120,142,70,-0.7562057865828269],[120,142,71,-0.7558647561775478],[120,142,72,-0.7555261126382546],[120,142,73,-0.7551898615367197],[120,142,74,-0.7548560083507181],[120,142,75,-0.7545245584636044],[120,142,76,-0.7541955171638797],[120,142,77,-0.7538688896447565],[120,142,78,-0.7535446810037303],[120,142,79,-0.7532228962421448],[120,143,64,-0.7584536764801662],[120,143,65,-0.7580981841227985],[120,143,66,-0.757745042569881],[120,143,67,-0.7573942579511783],[120,143,68,-0.7570458363051078],[120,143,69,-0.7566997835783114],[120,143,70,-0.7563561056252146],[120,143,71,-0.7560148082075907],[120,143,72,-0.7556758969941206],[120,143,73,-0.75533937755997],[120,143,74,-0.755005255386337],[120,143,75,-0.7546735358600297],[120,143,76,-0.754344224273032],[120,143,77,-0.7540173258220704],[120,143,78,-0.7536928456081837],[120,143,79,-0.7533707886362897],[120,144,64,-0.758605740386835],[120,144,65,-0.7582499862381897],[120,144,66,-0.7578965822082869],[120,144,67,-0.7575455344300868],[120,144,68,-0.7571968489452306],[120,144,69,-0.756850531703615],[120,144,70,-0.7565065885629504],[120,144,71,-0.7561650252883237],[120,144,72,-0.7558258475517605],[120,144,73,-0.755489060931801],[120,144,74,-0.755154670913048],[120,144,75,-0.7548226828857444],[120,144,76,-0.7544931021453394],[120,144,77,-0.7541659338920548],[120,144,78,-0.7538411832304557],[120,144,79,-0.7535188551690163],[120,145,64,-0.7587579609247659],[120,145,65,-0.7584019461678931],[120,145,66,-0.758048280839906],[120,145,67,-0.7576969710769397],[120,145,68,-0.7573480229238403],[120,145,69,-0.7570014423337396],[120,145,70,-0.756657235167613],[120,145,71,-0.7563154071938427],[120,145,72,-0.7559759640877802],[120,145,73,-0.7556389114313211],[120,145,74,-0.7553042547124544],[120,145,75,-0.7549719993248397],[120,145,76,-0.7546421505673733],[120,145,77,-0.7543147136437542],[120,145,78,-0.7539896936620564],[120,145,79,-0.7536670956342926],[120,146,64,-0.7589103378486872],[120,146,65,-0.7585540636691901],[120,146,66,-0.7582001382245649],[120,146,67,-0.7578485676541018],[120,146,68,-0.7574993580058329],[120,146,69,-0.7571525152361052],[120,146,70,-0.7568080452091399],[120,146,71,-0.7564659536965956],[120,146,72,-0.7561262463771302],[120,146,73,-0.7557889288359765],[120,146,74,-0.7554540065644909],[120,146,75,-0.7551214849597314],[120,146,76,-0.7547913693240229],[120,146,77,-0.7544636648645245],[120,146,78,-0.7541383766928003],[120,146,79,-0.7538155098243843],[120,147,64,-0.7590628709117103],[120,147,65,-0.7587063384977363],[120,147,66,-0.7583521541204572],[120,147,67,-0.7580003239222985],[120,147,68,-0.757650853954458],[120,147,69,-0.7573037501764787],[120,147,70,-0.7569590184558083],[120,147,71,-0.7566166645673624],[120,147,72,-0.7562766941930866],[120,147,73,-0.7559391129215318],[120,147,74,-0.7556039262474037],[120,147,75,-0.7552711395711399],[120,147,76,-0.754940758198476],[120,147,77,-0.7546127873400127],[120,147,78,-0.7542872321107866],[120,147,79,-0.7539640975298356],[120,148,64,-0.7592155598653085],[120,148,65,-0.7588587704075431],[120,148,66,-0.7585043282841253],[120,148,67,-0.7581522396405961],[120,148,68,-0.7578025105312989],[120,148,69,-0.7574551469189533],[120,148,70,-0.7571101546742144],[120,148,71,-0.7567675395752356],[120,148,72,-0.7564273073072307],[120,148,73,-0.7560894634620505],[120,148,74,-0.7557540135377308],[120,148,75,-0.7554209629380706],[120,148,76,-0.755090316972198],[120,148,77,-0.7547620808541371],[120,148,78,-0.7544362597023793],[120,148,79,-0.7541128585394486],[120,149,64,-0.7593684044593779],[120,149,65,-0.759011359151037],[120,149,66,-0.7586566604705193],[120,149,67,-0.758304314566461],[120,149,68,-0.7579543274963318],[120,149,69,-0.7576067052260087],[120,149,70,-0.7572614536293338],[120,149,71,-0.7569185784876795],[120,149,72,-0.756578085489509],[120,149,73,-0.7562399802299538],[120,149,74,-0.7559042682103612],[120,149,75,-0.7555709548378732],[120,149,76,-0.7552400454249919],[120,149,77,-0.754911545189147],[120,149,78,-0.7545854592522667],[120,149,79,-0.7542617926403431],[120,150,64,-0.7595214044422168],[120,150,65,-0.7591641044790394],[120,150,66,-0.7588091504329766],[120,150,67,-0.7584565484557405],[120,150,68,-0.7581063046079073],[120,150,69,-0.7577584248584907],[120,150,70,-0.7574129150845014],[120,150,71,-0.7570697810705108],[120,150,72,-0.7567290285082132],[120,150,73,-0.7563906629960013],[120,150,74,-0.7560546900385154],[120,150,75,-0.7557211150462221],[120,150,76,-0.755389943334979],[120,150,77,-0.7550611801256032],[120,150,78,-0.7547348305434415],[120,150,79,-0.7544108996179366],[120,151,64,-0.759674559560507],[120,151,65,-0.7593170061407473],[120,151,66,-0.7589617979232035],[120,151,67,-0.758608941062643],[120,151,68,-0.7582584416227285],[120,151,69,-0.7579103055755912],[120,151,70,-0.757564538801391],[120,151,71,-0.7572211470878789],[120,151,72,-0.7568801361299604],[120,151,73,-0.7565415115292712],[120,151,74,-0.7562052787937257],[120,151,75,-0.7558714433370962],[120,151,76,-0.7555400104785779],[120,151,77,-0.7552109854423567],[120,151,78,-0.7548843733571803],[120,151,79,-0.7545601792559244],[120,152,64,-0.7598278695593723],[120,152,65,-0.7594700638837929],[120,152,66,-0.7591146026913337],[120,152,67,-0.7587614921397973],[120,152,68,-0.7584107382959128],[120,152,69,-0.7580623471349094],[120,152,70,-0.757716324540076],[120,152,71,-0.7573726763023246],[120,152,72,-0.7570314081197527],[120,152,73,-0.7566925255972194],[120,152,74,-0.756356034245895],[120,152,75,-0.7560219394828387],[120,152,76,-0.7556902466305646],[120,152,77,-0.7553609609166096],[120,152,78,-0.7550340874731041],[120,152,79,-0.7547096313363388],[120,153,64,-0.759981334182351],[120,153,65,-0.7596232774542155],[120,153,66,-0.7592675644859006],[120,153,67,-0.7589142014382242],[120,153,68,-0.758563194380962],[120,153,69,-0.758214549292421],[120,153,70,-0.7578682720590002],[120,153,71,-0.7575243684747524],[120,153,72,-0.7571828442409481],[120,153,73,-0.7568437049656513],[120,153,74,-0.7565069561632688],[120,153,75,-0.7561726032541282],[120,153,76,-0.755840651564044],[120,153,77,-0.755511106323886],[120,153,78,-0.7551839726691489],[120,153,79,-0.7548592556395206],[120,154,64,-0.7601349531714194],[120,154,65,-0.759776646596485],[120,154,66,-0.7594206830538612],[120,154,67,-0.7590670687073612],[120,154,68,-0.758715809629787],[120,154,69,-0.7583669118025045],[120,154,70,-0.7580203811150019],[120,154,71,-0.7576762233644543],[120,154,72,-0.7573344442552857],[120,154,73,-0.7569950493987461],[120,154,74,-0.7566580443124593],[120,154,75,-0.7563234344200029],[120,154,76,-0.7559912250504738],[120,154,77,-0.7556614214380556],[120,154,78,-0.7553340287215901],[120,154,79,-0.7550090519441436],[120,155,64,-0.7602887262669643],[120,155,65,-0.7599301710534737],[120,155,66,-0.7595739581405674],[120,155,67,-0.759220093695033],[120,155,68,-0.7588685837926794],[120,155,69,-0.7585194344179107],[120,155,70,-0.7581726514632856],[120,155,71,-0.7578282407290812],[120,155,72,-0.7574862079228561],[120,155,73,-0.7571465586590268],[120,155,74,-0.7568092984584159],[120,155,75,-0.7564744327478321],[120,155,76,-0.7561419668596354],[120,155,77,-0.7558119060313055],[120,155,78,-0.7554842554050127],[120,155,79,-0.7551590200271843],[120,156,64,-0.7604426532078412],[120,156,65,-0.7600838505665162],[120,156,66,-0.7597273894898257],[120,156,67,-0.7593732761475119],[120,156,68,-0.7590215166183705],[120,156,69,-0.7586721168898238],[120,156,70,-0.758325082857481],[120,156,71,-0.7579804203247025],[120,156,72,-0.7576381350021615],[120,156,73,-0.7572982325074218],[120,156,74,-0.7569607183644862],[120,156,75,-0.7566255980033751],[120,156,76,-0.756292876759694],[120,156,77,-0.7559625598741996],[120,156,78,-0.7556346524923725],[120,156,79,-0.7553091596639834],[120,157,64,-0.7605967337313564],[120,157,65,-0.7602376848753895],[120,157,66,-0.7598809768438777],[120,157,67,-0.7595266158094981],[120,157,68,-0.759174607854012],[120,157,69,-0.7588249589678407],[120,157,70,-0.7584776750496244],[120,157,71,-0.7581327619057863],[120,157,72,-0.7577902252500953],[120,157,73,-0.7574500707032437],[120,157,74,-0.7571123037923946],[120,157,75,-0.7567769299507624],[120,157,76,-0.7564439545171783],[120,157,77,-0.7561133827356583],[120,157,78,-0.7557852197549751],[120,157,79,-0.7554594706282243],[120,158,64,-0.7607509675732451],[120,158,65,-0.7603916737182925],[120,158,66,-0.7600347199433802],[120,158,67,-0.7596801124240987],[120,158,68,-0.7593278572451561],[120,158,69,-0.7589779603999517],[120,158,70,-0.758630427790137],[120,158,71,-0.7582852652251789],[120,158,72,-0.7579424784219227],[120,158,73,-0.757602073004169],[120,158,74,-0.7572640545022232],[120,158,75,-0.7569284283524741],[120,158,76,-0.7565951998969603],[120,158,77,-0.7562643743829388],[120,158,78,-0.7559359569624556],[120,158,79,-0.7556099526919133],[120,159,64,-0.760905354467733],[120,159,65,-0.7605458168319073],[120,159,66,-0.7601886185274644],[120,159,67,-0.759833765732889],[120,159,68,-0.7594812645358145],[120,159,69,-0.7591311209325995],[120,159,70,-0.7587833408278863],[120,159,71,-0.7584379300341657],[120,159,72,-0.7580948942713398],[120,159,73,-0.757754239166299],[120,159,74,-0.7574159702524712],[120,159,75,-0.7570800929694008],[120,159,76,-0.7567466126623157],[120,159,77,-0.7564155345816944],[120,159,78,-0.7560868638828386],[120,159,79,-0.7557606056254398],[120,160,64,-0.7610598941475064],[120,160,65,-0.7607001139513683],[120,160,66,-0.7603426723337078],[120,160,67,-0.7599875754758821],[120,160,68,-0.7596348294684309],[120,160,69,-0.7592844403106509],[120,160,70,-0.7589364139101559],[120,160,71,-0.7585907560824408],[120,160,72,-0.7582474725504452],[120,160,73,-0.7579065689441298],[120,160,74,-0.7575680508000258],[120,160,75,-0.7572319235608145],[120,160,76,-0.7568981925748938],[120,160,77,-0.7565668630959459],[120,160,78,-0.7562379402825095],[120,160,79,-0.7559114291975465],[120,161,64,-0.761214586343737],[120,161,65,-0.7608545648102888],[120,161,66,-0.7604968810981582],[120,161,67,-0.7601415413915549],[120,161,68,-0.759788551783904],[120,161,69,-0.7594379182774209],[120,161,70,-0.7590896467826707],[120,161,71,-0.7587437431181326],[120,161,72,-0.7584002130097643],[120,161,73,-0.758059062090577],[120,161,74,-0.7577202959001867],[120,161,75,-0.7573839198843922],[120,161,76,-0.7570499393947429],[120,161,77,-0.7567183596881056],[120,161,78,-0.7563891859262379],[120,161,79,-0.7560624231753542],[120,162,64,-0.7613694307860531],[120,162,65,-0.7610091691407305],[120,162,66,-0.7606512445553048],[120,162,67,-0.7602956632168176],[120,162,68,-0.7599424312215596],[120,162,69,-0.759591554574644],[120,162,70,-0.7592430391895675],[120,162,71,-0.7588968908877742],[120,162,72,-0.7585531153982198],[120,162,73,-0.758211718356947],[120,162,74,-0.757872705306637],[120,162,75,-0.7575360816961874],[120,162,76,-0.75720185288028],[120,162,77,-0.7568700241189481],[120,162,78,-0.7565406005771493],[120,162,79,-0.7562135873243321],[120,163,64,-0.7615244272025997],[120,163,65,-0.7611639266732643],[120,163,66,-0.7608057624381382],[120,163,67,-0.7604499406870749],[120,163,68,-0.7600964675192097],[120,163,69,-0.7597453489425336],[120,163,70,-0.7593965908734552],[120,163,71,-0.7590501991363633],[120,163,72,-0.7587061794631919],[120,163,73,-0.7583645374929961],[120,163,74,-0.7580252787715029],[120,163,75,-0.7576884087506898],[120,163,76,-0.7573539327883517],[120,163,77,-0.7570218561476701],[120,163,78,-0.7566921839967842],[120,163,79,-0.7563649214083582],[120,164,64,-0.7616795753200178],[120,164,65,-0.7613188371369499],[120,164,66,-0.7609604344781309],[120,164,67,-0.7606043735362055],[120,164,68,-0.760250660413133],[120,164,69,-0.7598993011197629],[120,164,70,-0.7595503015753944],[120,164,71,-0.7592036676073421],[120,164,72,-0.7588594049504983],[120,164,73,-0.7585175192469112],[120,164,74,-0.758178016045334],[120,164,75,-0.757840900800805],[120,164,76,-0.7575061788742139],[120,164,77,-0.757173855531871],[120,164,78,-0.7568439359450785],[120,164,79,-0.7565164251896986],[120,165,64,-0.7618348748634255],[120,165,65,-0.7614739002593158],[120,165,66,-0.7611152604052162],[120,165,67,-0.7607589614965414],[120,165,68,-0.7604050096380548],[120,165,69,-0.7600534108434431],[120,165,70,-0.7597041710348775],[120,165,71,-0.7593572960425771],[120,165,72,-0.7590127916043738],[120,165,73,-0.7586706633652887],[120,165,74,-0.7583309168770824],[120,165,75,-0.7579935575978345],[120,165,76,-0.7576585908915104],[120,165,77,-0.7573260220275309],[120,165,78,-0.7569958561803427],[120,165,79,-0.7566680984289871],[120,166,64,-0.7619903255564766],[120,166,65,-0.7616291157664195],[120,166,66,-0.7612702399478487],[120,166,67,-0.7609137042989287],[120,166,68,-0.7605595149272063],[120,166,69,-0.7602076778491854],[120,166,70,-0.7598581989898883],[120,166,71,-0.7595110841824195],[120,166,72,-0.7591663391675303],[120,166,73,-0.7588239695931952],[120,166,74,-0.7584839810141628],[120,166,75,-0.758146378891535],[120,166,76,-0.7578111685923342],[120,166,77,-0.7574783553890722],[120,166,78,-0.7571479444593219],[120,166,79,-0.7568199408852857],[120,167,64,-0.7621459271213328],[120,167,65,-0.7617844833828181],[120,167,66,-0.7614253728329756],[120,167,67,-0.7610686016726984],[120,167,68,-0.7607141760122963],[120,167,69,-0.7603621018710701],[120,167,70,-0.7600123851768732],[120,167,71,-0.7596650317656755],[120,167,72,-0.7593200473811275],[120,167,73,-0.7589774376741378],[120,167,74,-0.7586372082024239],[120,167,75,-0.7582993644300903],[120,167,76,-0.7579639117271975],[120,167,77,-0.7576308553693295],[120,167,78,-0.757300200537167],[120,167,79,-0.7569719523160545],[120,168,64,-0.7623016792786876],[120,168,65,-0.7619400028315935],[120,168,66,-0.7615806587860605],[120,168,67,-0.7612236533456904],[120,168,68,-0.7608689926235352],[120,168,69,-0.7605166826416723],[120,168,70,-0.7601667293307657],[120,168,71,-0.7598191385296305],[120,168,72,-0.7594739159847973],[120,168,73,-0.7591310673500892],[120,168,74,-0.7587905981861719],[120,168,75,-0.7584525139601345],[120,168,76,-0.7581168200450559],[120,168,77,-0.7577835217195739],[120,168,78,-0.757452624167458],[120,168,79,-0.7571241324771766],[120,169,64,-0.7624575817477375],[120,169,65,-0.7620956738343219],[120,169,66,-0.7617360975310548],[120,169,67,-0.761378859044225],[120,169,68,-0.761023964489606],[120,169,69,-0.7606714198920317],[120,169,70,-0.7603212311849564],[120,169,71,-0.7599734042100208],[120,169,72,-0.759627944716615],[120,169,73,-0.7592848583614568],[120,169,74,-0.7589441507081417],[120,169,75,-0.7586058272267231],[120,169,76,-0.7582698932932797],[120,169,77,-0.757936354189484],[120,169,78,-0.7576052151021755],[120,169,79,-0.757276481122928],[120,170,64,-0.7626136342462414],[120,170,65,-0.7622514961111356],[120,170,66,-0.7618916887904573],[120,170,67,-0.7615342184931619],[120,170,68,-0.7611790913377243],[120,170,69,-0.7608263133517135],[120,170,70,-0.7604758904713544],[120,170,71,-0.7601278285410927],[120,170,72,-0.7597821333131587],[120,170,73,-0.7594388104471448],[120,170,74,-0.7590978655095568],[120,170,75,-0.7587593039733933],[120,170,76,-0.7584231312177133],[120,170,77,-0.7580893525272054],[120,170,78,-0.7577579730917603],[120,170,79,-0.7574289980060387],[120,171,64,-0.7627698364905016],[120,171,65,-0.7624074693807017],[120,171,66,-0.7620474322852946],[120,171,67,-0.7616897314158817],[120,171,68,-0.7613343728936179],[120,171,69,-0.7609813627487876],[120,171,70,-0.7606307069203658],[120,171,71,-0.7602824112555828],[120,171,72,-0.7599364815094891],[120,171,73,-0.7595929233445325],[120,171,74,-0.7592517423301091],[120,171,75,-0.7589129439421434],[120,171,76,-0.7585765335626556],[120,171,77,-0.7582425164793313],[120,171,78,-0.7579108978850934],[120,171,79,-0.7575816828776712],[120,172,64,-0.7629261881953425],[120,172,65,-0.7625635933602017],[120,172,66,-0.7622033277351002],[120,172,67,-0.7618453975342637],[120,172,68,-0.7614898088815069],[120,172,69,-0.7611365678098088],[120,172,70,-0.7607856802608738],[120,172,71,-0.7604371520846974],[120,172,72,-0.7600909890391299],[120,172,73,-0.7597471967894543],[120,172,74,-0.7594057809079382],[120,172,75,-0.759066746873412],[120,172,76,-0.7587301000708381],[120,172,77,-0.75839584579088],[120,172,78,-0.7580639892294745],[120,172,79,-0.7577345354874003],[120,173,64,-0.7630826890741715],[120,173,65,-0.762719867765393],[120,173,66,-0.7623593748579751],[120,173,67,-0.7620012165687474],[120,173,68,-0.7616453990241634],[120,173,69,-0.761291928259876],[120,173,70,-0.760940810220299],[120,173,71,-0.7605920507581723],[120,173,72,-0.7602456556341264],[120,173,73,-0.75990163051626],[120,173,74,-0.7595599809796916],[120,173,75,-0.7592207125061385],[120,173,76,-0.7588838304834866],[120,173,77,-0.7585493402053576],[120,173,78,-0.7582172468706833],[120,173,79,-0.7578875555832734],[120,174,64,-0.7632393388389491],[120,174,65,-0.762876292310578],[120,174,66,-0.7625155733705584],[120,174,67,-0.7621571882383027],[120,174,68,-0.7618011430428824],[120,174,69,-0.761447443822604],[120,174,70,-0.7610960965245699],[120,174,71,-0.7607471070042444],[120,174,72,-0.7604004810250179],[120,174,73,-0.7600562242577849],[120,174,74,-0.7597143422804952],[120,174,75,-0.7593748405777342],[120,174,76,-0.7590377245402907],[120,174,77,-0.7587029994647263],[120,174,78,-0.758370670552949],[120,174,79,-0.7580407429117807],[120,175,64,-0.7633961372002143],[120,175,65,-0.7630328667086297],[120,175,66,-0.7626719229880516],[120,175,67,-0.7623133122604543],[120,175,68,-0.7619570406575065],[120,175,69,-0.7616031142201473],[120,175,70,-0.7612515388981473],[120,175,71,-0.7609023205496751],[120,175,72,-0.7605554649408608],[120,175,73,-0.7602109777453746],[120,175,74,-0.7598688645439784],[120,175,75,-0.7595291308241054],[120,175,76,-0.7591917819794287],[120,175,77,-0.7588568233094306],[120,175,78,-0.7585242600189758],[120,175,79,-0.7581940972178799],[120,176,64,-0.7635530838670539],[120,176,65,-0.7631895906709617],[120,176,66,-0.7628284234241897],[120,176,67,-0.7624695883512529],[120,176,68,-0.7621130915863962],[120,176,69,-0.7617589391731707],[120,176,70,-0.761407137063995],[120,176,71,-0.7610576911197212],[120,176,72,-0.7607106071091992],[120,176,73,-0.7603658907088553],[120,176,74,-0.7600235475022432],[120,176,75,-0.7596835829796247],[120,176,76,-0.7593460025375376],[120,176,77,-0.7590108114783656],[120,176,78,-0.7586780150099115],[120,176,79,-0.7583476182449659],[120,177,64,-0.7637101785471648],[120,177,65,-0.7633464639075892],[120,177,66,-0.7629850743913009],[120,177,67,-0.7626260162253343],[120,177,68,-0.7622692955464898],[120,177,69,-0.7619149184009095],[120,177,70,-0.7615628907436397],[120,177,71,-0.7612132184381953],[120,177,72,-0.7608659072561261],[120,177,73,-0.7605209628765943],[120,177,74,-0.7601783908859258],[120,177,75,-0.759838196777191],[120,177,76,-0.7595003859497734],[120,177,77,-0.759164963708939],[120,177,78,-0.7588319352654096],[120,177,79,-0.7585013057349316],[120,178,64,-0.7638674209468315],[120,178,65,-0.7635034861271079],[120,178,66,-0.7631418756002867],[120,178,67,-0.7627825955959003],[120,178,68,-0.762425652253284],[120,178,69,-0.7620710516211499],[120,178,70,-0.761718799657151],[120,178,71,-0.7613689022274455],[120,178,72,-0.7610213651062622],[120,178,73,-0.7606761939754791],[120,178,74,-0.7603333944241749],[120,178,75,-0.7599929719482093],[120,178,76,-0.7596549319497914],[120,178,77,-0.7593192797370503],[120,178,78,-0.7589860205236076],[120,178,79,-0.758655159428147],[120,179,64,-0.7640248107709071],[120,179,65,-0.7636606570366742],[120,179,66,-0.7632988267606009],[120,179,67,-0.7629393261746975],[120,179,68,-0.762582161420812],[120,179,69,-0.7622273385502069],[120,179,70,-0.7618748635231204],[120,179,71,-0.7615247422083338],[120,179,72,-0.7611769803827347],[120,179,73,-0.7608315837308972],[120,179,74,-0.7604885578446323],[120,179,75,-0.7601479082225691],[120,179,76,-0.7598096402697236],[120,179,77,-0.7594737592970684],[120,179,78,-0.7591402705211062],[120,179,79,-0.7588091790634388],[120,180,64,-0.7641823477228732],[120,180,65,-0.7638179763420647],[120,180,66,-0.7634559275803109],[120,180,67,-0.7630962076720776],[120,180,68,-0.7627388227617056],[120,180,69,-0.7623837789029858],[120,180,70,-0.7620310820587223],[120,180,71,-0.7616807381002978],[120,180,72,-0.7613327528072392],[120,180,73,-0.760987131866796],[120,180,74,-0.7606438808734919],[120,180,75,-0.7603030053287059],[120,180,76,-0.7599645106402412],[120,180,77,-0.7596284021218944],[120,180,78,-0.7592946849930302],[120,180,79,-0.7589633643781497],[120,181,64,-0.7643400315048106],[120,181,65,-0.7639754437476478],[120,181,66,-0.7636131777660669],[120,181,67,-0.7632532397969685],[120,181,68,-0.7628956359871639],[120,181,69,-0.7625403723929529],[120,181,70,-0.7621874549796835],[120,181,71,-0.7618368896213203],[120,181,72,-0.7614886821000086],[120,181,73,-0.7611428381056533],[120,181,74,-0.760799363235471],[120,181,75,-0.7604582629935709],[120,181,76,-0.7601195427905234],[120,181,77,-0.7597832079429302],[120,181,78,-0.7594492636729987],[120,181,79,-0.7591177151081103],[120,182,64,-0.7644978618174232],[120,182,65,-0.7641330589564075],[120,182,66,-0.7637705770231276],[120,182,67,-0.7634104222568975],[120,182,68,-0.7630526008069792],[120,182,69,-0.7626971187321588],[120,182,70,-0.7623439820003086],[120,182,71,-0.761993196487954],[120,182,72,-0.7616447679798385],[120,182,73,-0.7612987021685023],[120,182,74,-0.7609550046538347],[120,182,75,-0.7606136809426554],[120,182,76,-0.7602747364482824],[120,182,77,-0.7599381764901034],[120,182,78,-0.759604006293149],[120,182,79,-0.759272230987662],[120,183,64,-0.7646558383600096],[120,183,65,-0.7642908216699137],[120,183,66,-0.7639281250553296],[120,183,67,-0.7635677547579636],[120,183,68,-0.7632097169295062],[120,183,69,-0.7628540176312097],[120,183,70,-0.7625006628334496],[120,183,71,-0.7621496584152916],[120,183,72,-0.7618010101640567],[120,183,73,-0.7614547237749005],[120,183,74,-0.7611108048503653],[120,183,75,-0.7607692588999607],[120,183,76,-0.7604300913397334],[120,183,77,-0.760093307491837],[120,183,78,-0.7597589125841067],[120,183,79,-0.7594269117496272],[120,184,64,-0.7648139608305226],[120,184,65,-0.7644487315883834],[120,184,66,-0.764085821565149],[120,184,67,-0.763725237004896],[120,184,68,-0.7633669840617232],[120,184,69,-0.7630110687993275],[120,184,70,-0.7626574971905666],[120,184,71,-0.7623062751170261],[120,184,72,-0.7619574083685844],[120,184,73,-0.7616109026429918],[120,184,74,-0.7612667635454233],[120,184,75,-0.7609249965880595],[120,184,76,-0.7605856071896552],[120,184,77,-0.760248600675111],[120,184,78,-0.7599139822750468],[120,184,79,-0.7595817571253711],[120,185,64,-0.7649722289255488],[120,185,65,-0.7646067884106595],[120,185,66,-0.7642436662536797],[120,185,67,-0.7638828687010353],[120,185,68,-0.7635244019092114],[120,185,69,-0.7631682719443289],[120,185,70,-0.7628144847817073],[120,185,71,-0.762463046305431],[120,185,72,-0.7621139623079151],[120,185,73,-0.7617672384894847],[120,185,74,-0.7614228804579273],[120,185,75,-0.7610808937280742],[120,185,76,-0.7607412837213693],[120,185,77,-0.7604040557654403],[120,185,78,-0.7600692150936726],[120,185,79,-0.7597367668447792],[120,186,64,-0.7651306423402886],[120,186,65,-0.7647649918341906],[120,186,66,-0.7644016588206133],[120,186,67,-0.764040649548311],[120,186,68,-0.7636819701761338],[120,186,69,-0.7633256267726056],[120,186,70,-0.7629716253154862],[120,186,71,-0.7626199716913383],[120,186,72,-0.7622706716950935],[120,186,73,-0.7619237310296314],[120,186,74,-0.7615791553053316],[120,186,75,-0.7612369500396563],[120,186,76,-0.7608971206567188],[120,186,77,-0.7605596724868542],[120,186,78,-0.7602246107661943],[120,186,79,-0.7598919406362372],[120,187,64,-0.765289200768616],[120,187,65,-0.7649233415550906],[120,187,66,-0.7645597989642997],[120,187,67,-0.7641985792473036],[120,187,68,-0.7638396885652964],[120,187,69,-0.7634831329891837],[120,187,70,-0.7631289184991448],[120,187,71,-0.7627770509842002],[120,187,72,-0.7624275362417772],[120,187,73,-0.7620803799772892],[120,187,74,-0.7617355878036884],[120,187,75,-0.7613931652410475],[120,187,76,-0.7610531177161294],[120,187,77,-0.7607154505619573],[120,187,78,-0.7603801690173901],[120,187,79,-0.7600472782266916],[120,188,64,-0.7654479039030583],[120,188,65,-0.7650818372681197],[120,188,66,-0.7647180863817264],[120,188,67,-0.7643566574972231],[120,188,68,-0.7639975567781269],[120,188,69,-0.7636407902977036],[120,188,70,-0.7632863640385315],[120,188,71,-0.7629342838920676],[120,188,72,-0.7625845556582145],[120,188,73,-0.762237185044899],[120,188,74,-0.7618921776676257],[120,188,75,-0.7615495390490582],[120,188,76,-0.7612092746185887],[120,188,77,-0.7608713897119089],[120,188,78,-0.7605358895705854],[120,188,79,-0.7602027793416286],[120,189,64,-0.7656067514347755],[120,189,65,-0.7652404786666624],[120,189,66,-0.7648765207684973],[120,189,67,-0.7645148839958885],[120,189,68,-0.7641555745146541],[120,189,69,-0.7637985984003992],[120,189,70,-0.7634439616380799],[120,189,71,-0.7630916701215692],[120,189,72,-0.7627417296532242],[120,189,73,-0.7623941459434648],[120,189,74,-0.7620489246103274],[120,189,75,-0.7617060711790464],[120,189,76,-0.7613655910816239],[120,189,77,-0.7610274896564005],[120,189,78,-0.7606917721476308],[120,189,79,-0.7603584437050526],[120,190,64,-0.765765743053621],[120,190,65,-0.7653992654427884],[120,190,66,-0.7650351018188943],[120,190,67,-0.7646732584397884],[120,190,68,-0.7643137414735687],[120,190,69,-0.7639565569981586],[120,190,70,-0.7636017110008706],[120,190,71,-0.7632492093779728],[120,190,72,-0.7628990579342563],[120,190,73,-0.7625512623826136],[120,190,74,-0.762205828343593],[120,190,75,-0.7618627613449793],[120,190,76,-0.7615220668213644],[120,190,77,-0.7611837501137183],[120,190,78,-0.7608478164689642],[120,190,79,-0.760514271039548],[120,191,64,-0.7659248784481114],[120,191,65,-0.765558197287223],[120,191,66,-0.7651938292258462],[120,191,67,-0.764831780524051],[120,191,68,-0.7644720573521935],[120,191,69,-0.7641146657904938],[120,191,70,-0.7637596118286001],[120,191,71,-0.7634069013651549],[120,191,72,-0.7630565402073621],[120,191,73,-0.7627085340705668],[120,191,74,-0.7623628885778083],[120,191,75,-0.7620196092594022],[120,191,76,-0.7616787015525102],[120,191,77,-0.7613401708007119],[120,191,78,-0.7610040222535794],[120,191,79,-0.7606702610662478],[120,192,64,-0.7660841573054515],[120,192,65,-0.7657172738893714],[120,192,66,-0.7653527026809546],[120,192,67,-0.7649904499424689],[120,192,68,-0.7646305218465073],[120,192,69,-0.7642729244755656],[120,192,70,-0.7639176638216062],[120,192,71,-0.7635647457856252],[120,192,72,-0.7632141761772187],[120,192,73,-0.7628659607141635],[120,192,74,-0.7625201050219698],[120,192,75,-0.7621766146334636],[120,192,76,-0.7618354949883571],[120,192,77,-0.7614967514328193],[120,192,78,-0.7611603892190517],[120,192,79,-0.760826413504859],[120,193,64,-0.7662435793115041],[120,193,65,-0.7658764949372894],[120,193,66,-0.7655117218744628],[120,193,67,-0.7651492663874688],[120,193,68,-0.7647891346511155],[120,193,69,-0.7644313327501533],[120,193,70,-0.7640758666788374],[120,193,71,-0.7637227423404962],[120,193,72,-0.7633719655470979],[120,193,73,-0.7630235420188302],[120,193,74,-0.7626774773836538],[120,193,75,-0.7623337771768851],[120,193,76,-0.7619924468407662],[120,193,77,-0.761653491724036],[120,193,78,-0.7613169170815063],[120,193,79,-0.7609827280736317],[120,194,64,-0.7664031441508508],[120,194,65,-0.7660358601177432],[120,194,66,-0.7656708864953174],[120,194,67,-0.7653082295501727],[120,194,68,-0.7649478954593112],[120,194,69,-0.7645898903097157],[120,194,70,-0.7642342200979138],[120,194,71,-0.7638808907295451],[120,194,72,-0.7635299080189287],[120,194,73,-0.7631812776886427],[120,194,74,-0.7628350053690782],[120,194,75,-0.7624910965980216],[120,194,76,-0.7621495568202247],[120,194,77,-0.7618103913869768],[120,194,78,-0.7614736055556801],[120,194,79,-0.7611392044894199],[120,195,64,-0.7665628515067715],[120,195,65,-0.7661953691161891],[120,195,66,-0.7658301962311469],[120,195,67,-0.7654673391203768],[120,195,68,-0.7651068039630531],[120,195,69,-0.7647485968483703],[120,195,70,-0.7643927237751064],[120,195,71,-0.7640391906511917],[120,195,72,-0.7636880032932751],[120,195,73,-0.7633391674263046],[120,195,74,-0.7629926886830811],[120,195,75,-0.7626485726038407],[120,195,76,-0.7623068246358252],[120,195,77,-0.7619674501328543],[120,195,78,-0.7616304543549006],[120,195,79,-0.7612958424676609],[120,196,64,-0.7667227010612232],[120,196,65,-0.7663550216167528],[120,196,66,-0.7659896507682408],[120,196,67,-0.7656265947865302],[120,196,68,-0.7652658598529456],[120,196,69,-0.7649074520588715],[120,196,70,-0.7645513774053156],[120,196,71,-0.7641976418024776],[120,196,72,-0.7638462510693151],[120,196,73,-0.7634972109331257],[120,196,74,-0.7631505270290992],[120,196,75,-0.7628062048999014],[120,196,76,-0.762464249995244],[120,196,77,-0.7621246676714569],[120,196,78,-0.761787463191064],[120,196,79,-0.7614526417223536],[120,197,64,-0.7668826924949007],[120,197,65,-0.7665148173022899],[120,197,66,-0.7661492497916109],[120,197,67,-0.7657859962357962],[120,197,68,-0.7654250628182993],[120,197,69,-0.7650664556326727],[120,197,70,-0.7647101806821329],[120,197,71,-0.7643562438791274],[120,197,72,-0.7640046510449023],[120,197,73,-0.7636554079090834],[120,197,74,-0.7633085201092294],[120,197,75,-0.7629639931904152],[120,197,76,-0.7626218326048023],[120,197,77,-0.762282043711211],[120,197,78,-0.7619446317746966],[120,197,79,-0.7616096019661196],[120,198,64,-0.7670428254872073],[120,198,65,-0.7666747558543558],[120,198,66,-0.766308992984961],[120,198,67,-0.7659455431540223],[120,198,68,-0.7655844125471005],[120,198,69,-0.7652256072598953],[120,198,70,-0.7648691332978097],[120,198,71,-0.7645149965755184],[120,198,72,-0.7641632029165348],[120,198,73,-0.7638137580527924],[120,198,74,-0.763466667624198],[120,198,75,-0.7631219371782154],[120,198,76,-0.7627795721694357],[120,198,77,-0.7624395779591499],[120,198,78,-0.7621019598149243],[120,198,79,-0.7617667229101726],[120,199,64,-0.7672030997162782],[120,199,65,-0.7668348369532306],[120,199,66,-0.766468880030711],[120,199,67,-0.7661052352257645],[120,199,68,-0.7657439087260368],[120,199,69,-0.7653849066293533],[120,199,70,-0.7650282349432824],[120,199,71,-0.7646738995847049],[120,199,72,-0.7643219063793804],[120,199,73,-0.7639722610615292],[120,199,74,-0.7636249692733856],[120,199,75,-0.7632800365647823],[120,199,76,-0.7629374683927193],[120,199,77,-0.7625972701209381],[120,199,78,-0.7622594470194973],[120,199,79,-0.7619240042643434],[120,200,64,-0.7673635148589515],[120,200,65,-0.7669950602778888],[120,200,66,-0.7666289106099674],[120,200,67,-0.7662650721342567],[120,200,68,-0.7659035510404656],[120,200,69,-0.7655443534285232],[120,200,70,-0.7651874853081423],[120,200,71,-0.764832952598388],[120,200,72,-0.7644807611272457],[120,200,73,-0.7641309166312013],[120,200,74,-0.7637834247547965],[120,200,75,-0.7634382910502114],[120,200,76,-0.7630955209768358],[120,200,77,-0.7627551199008415],[120,200,78,-0.7624170930947589],[120,200,79,-0.762081445737048],[120,201,64,-0.7675240705908286],[120,201,65,-0.7671554255060595],[120,201,66,-0.7667890844025841],[120,201,67,-0.7664250535614725],[120,201,68,-0.7660633391744758],[120,201,69,-0.7657039473436051],[120,201,70,-0.7653468840806958],[120,201,71,-0.764992155306977],[120,201,72,-0.7646397668526375],[120,201,73,-0.7642897244564091],[120,201,74,-0.7639420337651194],[120,201,75,-0.7635967003332764],[120,201,76,-0.7632537296226384],[120,201,77,-0.762913127001788],[120,201,78,-0.7625748977457074],[120,201,79,-0.7622390470353506],[120,202,64,-0.7676847665862534],[120,202,65,-0.7673159323142072],[120,202,66,-0.7669494010871408],[120,202,67,-0.7665851791881035],[120,202,68,-0.7662232728108666],[120,202,69,-0.7658636880595013],[120,202,70,-0.7655064309479447],[120,202,71,-0.7651515073995672],[120,202,72,-0.7647989232467418],[120,202,73,-0.7644486842304238],[120,202,74,-0.764100795999707],[120,202,75,-0.763755264111406],[120,202,76,-0.7634120940296282],[120,202,77,-0.7630712911253461],[120,202,78,-0.7627328606759745],[120,202,79,-0.762396807864941],[120,203,64,-0.7678456025182907],[120,203,65,-0.767476580377509],[120,203,66,-0.7671098603409228],[120,203,67,-0.7667454486935388],[120,203,68,-0.7663833516311263],[120,203,69,-0.7660235752597955],[120,203,70,-0.7656661255955628],[120,203,71,-0.76531100856392],[120,203,72,-0.7649582299994016],[120,203,73,-0.7646077956451667],[120,203,74,-0.7642597111525538],[120,203,75,-0.763913982080664],[120,203,76,-0.7635706138959331],[120,203,77,-0.7632296119717038],[120,203,78,-0.7628909815878029],[120,203,79,-0.762554727930113],[120,204,64,-0.7680065780587881],[120,204,65,-0.7676373693699161],[120,204,66,-0.767270461839981],[120,204,67,-0.766905861755925],[120,204,68,-0.7665435753154933],[120,204,69,-0.7661836086268131],[120,204,70,-0.7658259677079593],[120,204,71,-0.7654706584865227],[120,204,72,-0.765117686799179],[120,204,73,-0.7647670583912698],[120,204,74,-0.7644187789163576],[120,204,75,-0.7640728539358095],[120,204,76,-0.7637292889183691],[120,204,77,-0.7633880892397295],[120,204,78,-0.7630492601821094],[120,204,79,-0.7627128069338263],[120,205,64,-0.7681676928783452],[120,205,65,-0.7677982989641238],[120,205,66,-0.7674312052591028],[120,205,67,-0.767066418052137],[120,205,68,-0.7667039435429259],[120,205,69,-0.766343787841592],[120,205,70,-0.7659859569682468],[120,205,71,-0.7656304568525591],[120,205,72,-0.7652772933333246],[120,205,73,-0.764926472158046],[120,205,74,-0.7645779989824892],[120,205,75,-0.7642318793702668],[120,205,76,-0.76388811879241],[120,205,77,-0.7635467226269415],[120,205,78,-0.7632076961584526],[120,205,79,-0.7628710445776754],[120,206,64,-0.768328946646338],[120,206,65,-0.7679593688315962],[120,206,66,-0.7675920902718355],[120,206,67,-0.7672271172578018],[120,206,68,-0.7668644559911266],[120,206,69,-0.766504112583906],[120,206,70,-0.7661460930582665],[120,206,71,-0.7657904033459336],[120,206,72,-0.7654370492878012],[120,206,73,-0.7650860366335127],[120,206,74,-0.7647373710410166],[120,206,75,-0.7643910580761499],[120,206,76,-0.7640471032122113],[120,206,77,-0.7637055118295327],[120,206,78,-0.7633662892150581],[120,206,79,-0.7630294405619145],[120,207,64,-0.7684903390308891],[120,207,65,-0.768120578642535],[120,207,66,-0.7677531165504565],[120,207,67,-0.7673879590472684],[120,207,68,-0.767025112336512],[120,207,69,-0.7666645825322352],[120,207,70,-0.7663063756585576],[120,207,71,-0.7659504976492403],[120,207,72,-0.7655969543472543],[120,207,73,-0.7652457515043621],[120,207,74,-0.7648968947806742],[120,207,75,-0.7645503897442317],[120,207,76,-0.7642062418705795],[120,207,77,-0.7638644565423395],[120,207,78,-0.7635250390487873],[120,207,79,-0.7631879945854255],[120,208,64,-0.7686518696989286],[120,208,65,-0.7682819280659416],[120,208,66,-0.7679142837660349],[120,208,67,-0.7675489430936691],[120,208,68,-0.7671859122542737],[120,208,69,-0.7668251973638263],[120,208,70,-0.7664668044484184],[120,208,71,-0.7661107394438247],[120,208,72,-0.7657570081950723],[120,208,73,-0.7654056164560219],[120,208,74,-0.7650565698889247],[120,208,75,-0.764709874064005],[120,208,76,-0.7643655344590343],[120,208,77,-0.7640235564589031],[120,208,78,-0.7636839453551996],[120,208,79,-0.7633467063457813],[120,209,64,-0.7688135383161726],[120,209,65,-0.7684434167695956],[120,209,66,-0.7680755915884089],[120,209,67,-0.7677100690688974],[120,209,68,-0.7673468554183567],[120,209,69,-0.7669859567546721],[120,209,70,-0.7666273791058851],[120,209,71,-0.7662711284097626],[120,209,72,-0.7659172105133663],[120,209,73,-0.7655656311726341],[120,209,74,-0.7652163960519368],[120,209,75,-0.7648695107236619],[120,209,76,-0.764524980667786],[120,209,77,-0.7641828112714485],[120,209,78,-0.7638430078285297],[120,209,79,-0.7635055755392224],[120,210,64,-0.7689753445471025],[120,210,65,-0.7686050444200329],[120,210,66,-0.7682370396861659],[120,210,67,-0.7678713366435881],[120,210,68,-0.767507941501439],[120,210,69,-0.7671468603794898],[120,210,70,-0.7667880993077101],[120,210,71,-0.7664316642258377],[120,210,72,-0.7660775609829474],[120,210,73,-0.7657257953370331],[120,210,74,-0.7653763729545646],[120,210,75,-0.7650292994100711],[120,210,76,-0.7646845801857144],[120,210,77,-0.7643422206708623],[120,210,78,-0.7640022261616668],[120,210,79,-0.7636646018606363],[120,211,64,-0.7691372880550258],[120,211,65,-0.7687668106826078],[120,211,66,-0.7683986277267028],[120,211,67,-0.7680327454871773],[120,211,68,-0.7676691701749918],[120,211,69,-0.767307907911782],[120,211,70,-0.7669489647294236],[120,211,71,-0.7665923465696037],[120,211,72,-0.7662380592833888],[120,211,73,-0.7658861086308079],[120,211,74,-0.7655365002804082],[120,211,75,-0.7651892398088402],[120,211,76,-0.7648443327004303],[120,211,77,-0.7645017843467542],[120,211,78,-0.7641616000462155],[120,211,79,-0.7638237850036182],[120,212,64,-0.7692993685020457],[120,212,65,-0.7689287152214619],[120,212,66,-0.7685603553761964],[120,212,67,-0.7681942952678723],[120,212,68,-0.76783054110925],[120,212,69,-0.7674690990238067],[120,212,70,-0.7671099750453032],[120,212,71,-0.7667531751173536],[120,212,72,-0.766398705092995],[120,212,73,-0.7660465707342702],[120,212,74,-0.7656967777117831],[120,212,75,-0.7653493316042845],[120,212,76,-0.7650042378982446],[120,212,77,-0.7646615019874266],[120,212,78,-0.7643211291724656],[120,212,79,-0.7639831246604412],[120,213,64,-0.7694615855490858],[120,213,65,-0.7690907576995493],[120,213,66,-0.7687222222996267],[120,213,67,-0.7683559856526764],[120,213,68,-0.7679920539732354],[120,213,69,-0.7676304333866013],[120,213,70,-0.7672711299283973],[120,213,71,-0.7669141495441436],[120,213,72,-0.7665594980888263],[120,213,73,-0.7662071813264801],[120,213,74,-0.7658572049297452],[120,213,75,-0.7655095744794516],[120,213,76,-0.7651642954641924],[120,213,77,-0.7648213732798984],[120,213,78,-0.7644808132294156],[120,213,79,-0.7641426205220792],[120,214,64,-0.7696239388558597],[120,214,65,-0.769252937778605],[120,214,66,-0.7688842281607476],[120,214,67,-0.7685178163073576],[120,214,68,-0.7681537084347274],[120,214,69,-0.767791910669952],[120,214,70,-0.7674324290504959],[120,214,71,-0.767075269523763],[120,214,72,-0.7667204379466673],[120,214,73,-0.7663679400852145],[120,214,74,-0.7660177816140592],[120,214,75,-0.7656699681160901],[120,214,76,-0.7653245050820028],[120,214,77,-0.7649813979098746],[120,214,78,-0.7646406519047427],[120,214,79,-0.7643022722781772],[120,215,64,-0.7697864280809316],[120,215,65,-0.7694152551192073],[120,215,66,-0.7690463726221471],[120,215,67,-0.7686797868965108],[120,215,68,-0.7683155041603233],[120,215,69,-0.7679535305424554],[120,215,70,-0.7675938720821908],[120,215,71,-0.7672365347287956],[120,215,72,-0.7668815243410898],[120,215,73,-0.7665288466870287],[120,215,74,-0.7661785074432605],[120,215,75,-0.7658305121947118],[120,215,76,-0.7654848664341598],[120,215,77,-0.7651415755618078],[120,215,78,-0.7648006448848634],[120,215,79,-0.7644620796171122],[120,216,64,-0.7699490528816959],[120,216,65,-0.7695777093807559],[120,216,66,-0.7692086553452269],[120,216,67,-0.7688418970835357],[120,216,68,-0.7684774408154176],[120,216,69,-0.7681152926714971],[120,216,70,-0.7677554586928548],[120,216,71,-0.7673979448305976],[120,216,72,-0.7670427569454297],[120,216,73,-0.766689900807235],[120,216,74,-0.766339382094634],[120,216,75,-0.7659912063945699],[120,216,76,-0.7656453792018808],[120,216,77,-0.7653019059188758],[120,216,78,-0.7649607918549128],[120,216,79,-0.7646220422259722],[120,217,64,-0.7701118129143552],[120,217,65,-0.7697403002214503],[120,217,66,-0.76937107599018],[120,217,67,-0.7690041465306154],[120,217,68,-0.7686395180641801],[120,217,69,-0.7682771967232296],[120,217,70,-0.7679171885506196],[120,217,71,-0.7675594994992763],[120,217,72,-0.7672041354317664],[120,217,73,-0.7668511021198807],[120,217,74,-0.7665004052441912],[120,217,75,-0.7661520503936364],[120,217,76,-0.765806043065095],[120,217,77,-0.7654623886629609],[120,217,78,-0.7651210924987216],[120,217,79,-0.7647821597905328],[120,218,64,-0.7702747078339813],[120,218,65,-0.7699030272983516],[120,218,66,-0.7695336342160528],[120,218,67,-0.7691665348987784],[120,218,68,-0.7688017355696171],[120,218,69,-0.7684392423626341],[120,218,70,-0.7680790613224379],[120,218,71,-0.7677211984037516],[120,218,72,-0.7673656594709837],[120,218,73,-0.76701245029781],[120,218,74,-0.7666615765667327],[120,218,75,-0.766313043868665],[120,218,76,-0.7659668577025047],[120,218,77,-0.7656230234747103],[120,218,78,-0.7652815464988787],[120,218,79,-0.7649424319953203],[120,219,64,-0.7704377372944948],[120,219,65,-0.7700658902673604],[120,219,66,-0.7696963296807231],[120,219,67,-0.7693290618478758],[120,219,68,-0.7689640929935504],[120,219,69,-0.7686014292534988],[120,219,70,-0.7682410766740608],[120,219,71,-0.7678830412117348],[120,219,72,-0.7675273287327484],[120,219,73,-0.767173945012642],[120,219,74,-0.7668228957358263],[120,219,75,-0.7664741864951681],[120,219,76,-0.7661278227915638],[120,219,77,-0.7657838100335154],[120,219,78,-0.7654421535367091],[120,219,79,-0.7651028585235894],[120,220,64,-0.7706009009486428],[120,220,65,-0.7702288887831961],[120,220,66,-0.769859162040879],[120,220,67,-0.7694917270365612],[120,220,68,-0.769126589996595],[120,220,69,-0.7687637570583976],[120,220,70,-0.7684032342700172],[120,220,71,-0.7680450275897057],[120,220,72,-0.7676891428854887],[120,220,73,-0.767335585934749],[120,220,74,-0.7669843624237851],[120,220,75,-0.7666354779473957],[120,220,76,-0.7662889380084554],[120,220,77,-0.7659447480174891],[120,220,78,-0.7656029132922515],[120,220,79,-0.7652634390573011],[120,221,64,-0.7707641984480602],[120,221,65,-0.7703920224994575],[120,221,66,-0.7700221309520798],[120,221,67,-0.7696545301223511],[120,221,68,-0.7692892262382217],[120,221,69,-0.7689262254387511],[120,221,70,-0.7685655337736746],[120,221,71,-0.7682071572029756],[120,221,72,-0.7678511015964554],[120,221,73,-0.7674973727333184],[120,221,74,-0.7671459763017288],[120,221,75,-0.7667969178983971],[120,221,76,-0.7664502030281544],[120,221,77,-0.7661058371035279],[120,221,78,-0.7657638254443203],[120,221,79,-0.7654241732771843],[120,222,64,-0.7709276294432401],[120,222,65,-0.7705552910685928],[120,222,66,-0.7701852360687259],[120,222,67,-0.7698174707615945],[120,222,68,-0.7694520013767248],[120,222,69,-0.7690888340547961],[120,222,70,-0.7687279748472086],[120,222,71,-0.7683694297156549],[120,222,72,-0.7680132045316912],[120,222,73,-0.767659305076321],[120,222,74,-0.7673077370395534],[120,222,75,-0.7669585060199893],[120,222,76,-0.7666116175243953],[120,222,77,-0.7662670769672806],[120,222,78,-0.765924889670475],[120,222,79,-0.7655850608627048],[120,223,64,-0.7710911935835565],[120,223,65,-0.7707186941419235],[120,223,66,-0.7703484770440827],[120,223,67,-0.7699805486094975],[120,223,68,-0.7696149150692476],[120,223,69,-0.7692515825656099],[120,223,70,-0.7688905571516269],[120,223,71,-0.768531844790679],[120,223,72,-0.7681754513560549],[120,223,73,-0.767821382630536],[120,223,74,-0.7674696443059551],[120,223,75,-0.7671202419827817],[120,223,76,-0.766773181169698],[120,223,77,-0.7664284672831728],[120,223,78,-0.7660861056470438],[120,223,79,-0.7657461014920901],[120,224,64,-0.7712548905172352],[120,224,65,-0.7708822313696139],[120,224,66,-0.7705118535302499],[120,224,67,-0.7701437633200925],[120,224,68,-0.7697779669717515],[120,224,69,-0.7694144706290794],[120,224,70,-0.7690532803467391],[120,224,71,-0.7686944020897765],[120,224,72,-0.768337841733191],[120,224,73,-0.7679836050615203],[120,224,74,-0.7676316977683995],[120,224,75,-0.7672821254561456],[120,224,76,-0.7669348936353345],[120,224,77,-0.7665900077243759],[120,224,78,-0.7662474730490927],[120,224,79,-0.7659072948422974],[120,225,64,-0.7714187198914146],[120,225,65,-0.7710459024007327],[120,225,66,-0.7706753651782234],[120,225,67,-0.7703071145462989],[120,225,68,-0.7699411567390769],[120,225,69,-0.769577497901963],[120,225,70,-0.7692161440912177],[120,225,71,-0.7688571012735306],[120,225,72,-0.7685003753255903],[120,225,73,-0.7681459720336692],[120,225,74,-0.7677938970931826],[120,225,75,-0.7674441561082747],[120,225,76,-0.7670967545913935],[120,225,77,-0.7667516979628681],[120,225,78,-0.7664089915504874],[120,225,79,-0.7660686405890758],[120,226,64,-0.7715826813521239],[120,226,65,-0.7712097068832311],[120,226,66,-0.7708390116378732],[120,226,67,-0.7704706019399026],[120,226,68,-0.7701044840249223],[120,226,69,-0.7697406640398679],[120,226,70,-0.7693791480425763],[120,226,71,-0.7690199420013583],[120,226,72,-0.7686630517945694],[120,226,73,-0.7683084832101954],[120,226,74,-0.7679562419454102],[120,226,75,-0.7676063336061638],[120,226,76,-0.7672587637067559],[120,226,77,-0.7669135376694136],[120,226,78,-0.7665706608238709],[120,226,79,-0.7662301384069443],[120,227,64,-0.7717467745442618],[120,227,65,-0.7713736444639212],[120,227,66,-0.7710027925579219],[120,227,67,-0.7706342251515335],[120,227,68,-0.7702679484818216],[120,227,69,-0.7699039686972297],[120,227,70,-0.7695422918571483],[120,227,71,-0.7691829239314871],[120,227,72,-0.7688258708002476],[120,227,73,-0.7684711382531062],[120,227,74,-0.7681187319889751],[120,227,75,-0.7677686576155874],[120,227,76,-0.7674209206490743],[120,227,77,-0.7670755265135397],[120,227,78,-0.7667324805406421],[120,227,79,-0.7663917879691696],[120,228,64,-0.7719109991116578],[120,228,65,-0.7715377147885377],[120,228,66,-0.7711667075860063],[120,228,67,-0.7707979838307274],[120,228,68,-0.7704315497612066],[120,228,69,-0.7700674115273728],[120,228,70,-0.7697055751901477],[120,228,71,-0.7693460467210185],[120,228,72,-0.7689888320016091],[120,228,73,-0.7686339368232664],[120,228,74,-0.7682813668866182],[120,228,75,-0.7679311278011606],[120,228,76,-0.7675832250848338],[120,228,77,-0.7672376641635987],[120,228,78,-0.7668944503710172],[120,228,79,-0.7665535889478281],[120,229,64,-0.7720753546970417],[120,229,65,-0.7717019175017068],[120,229,66,-0.771330756368646],[120,229,67,-0.7709618776258949],[120,229,68,-0.7705952875133755],[120,229,69,-0.7702309921824801],[120,229,70,-0.7698689976956391],[120,229,71,-0.7695093100258946],[120,229,72,-0.7691519350564722],[120,229,73,-0.768796878580366],[120,229,74,-0.7684441462998988],[120,229,75,-0.7680937438263079],[120,229,76,-0.7677456766793218],[120,229,77,-0.7673999502867369],[120,229,78,-0.767056569983998],[120,229,79,-0.7667155410137741],[120,230,64,-0.7722398409420674],[120,230,65,-0.7718662522469708],[120,230,66,-0.7714949385512689],[120,230,67,-0.7711259061843457],[120,230,68,-0.7707591613875178],[120,230,69,-0.7703947103136173],[120,230,70,-0.7700325590265615],[120,230,71,-0.7696727135009249],[120,230,72,-0.7693151796215129],[120,230,73,-0.7689599631829456],[120,230,74,-0.7686070698892182],[120,230,75,-0.7682565053532884],[120,230,76,-0.7679082750966516],[120,230,77,-0.7675623845489188],[120,230,78,-0.767218839047397],[120,230,79,-0.7668776438366649],[120,231,64,-0.7724044574872827],[120,231,65,-0.772030718666757],[120,231,66,-0.7716592537781791],[120,231,67,-0.7712900691522582],[120,231,68,-0.7709231710316823],[120,231,69,-0.7705585655707016],[120,231,70,-0.7701962588346969],[120,231,71,-0.7698362567997539],[120,231,72,-0.7694785653522347],[120,231,73,-0.769123190288364],[120,231,74,-0.7687701373137882],[120,231,75,-0.7684194120431634],[120,231,76,-0.7680710199997314],[120,231,77,-0.767724966614896],[120,231,78,-0.7673812572278057],[120,231,79,-0.7670398970849286],[120,232,64,-0.7725692039721903],[120,232,65,-0.7721953164024397],[120,232,66,-0.771823701692619],[120,232,67,-0.7714543661747402],[120,232,68,-0.77108731609284],[120,232,69,-0.7707225576025634],[120,232,70,-0.7703600967707329],[120,232,71,-0.7699999395749224],[120,232,72,-0.7696420919030296],[120,232,73,-0.7692865595528613],[120,232,74,-0.7689333482316936],[120,232,75,-0.7685824635558597],[120,232,76,-0.7682339110503257],[120,232,77,-0.7678876961482685],[120,232,78,-0.7675438241906566],[120,232,79,-0.7672023004258267],[120,233,64,-0.7727340800352265],[120,233,65,-0.7723600450943175],[120,233,66,-0.7719882819367476],[120,233,67,-0.771618796895808],[120,233,68,-0.7712515962168612],[120,233,69,-0.7708866860569246],[120,233,70,-0.7705240724842399],[120,233,71,-0.7701637614778469],[120,233,72,-0.7698057589271565],[120,233,73,-0.769450070631536],[120,233,74,-0.7690967022998696],[120,233,75,-0.7687456595501458],[120,233,76,-0.7683969479090343],[120,233,77,-0.7680505728114633],[120,233,78,-0.767706539600201],[120,233,79,-0.7673648535254316],[120,234,64,-0.7728990853137392],[120,234,65,-0.7725249043815928],[120,234,66,-0.7721529941516186],[120,234,67,-0.771783360958364],[120,234,68,-0.7714160110484944],[120,234,69,-0.7710509505803769],[120,234,70,-0.7706881856236496],[120,234,71,-0.7703277221587964],[120,234,72,-0.7699695660767191],[120,234,73,-0.7696137231783235],[120,234,74,-0.76926019917408],[120,234,75,-0.7689089996836113],[120,234,76,-0.768560130235269],[120,234,77,-0.7682135962657117],[120,234,78,-0.7678694031194861],[120,234,79,-0.7675275560486041],[120,235,64,-0.7730642194440493],[120,235,65,-0.7726898939024324],[120,235,66,-0.7723178379772417],[120,235,67,-0.7719480580042584],[120,235,68,-0.7715805602314273],[120,235,69,-0.7712153508184427],[120,235,70,-0.7708524358363168],[120,235,71,-0.7704918212669548],[120,235,72,-0.7701335130027274],[120,235,73,-0.7697775168460571],[120,235,74,-0.7694238385089787],[120,235,75,-0.7690724836127275],[120,235,76,-0.7687234576873159],[120,235,77,-0.7683767661711115],[120,235,78,-0.7680324144104188],[120,235,79,-0.7676904076590562],[120,236,64,-0.7732294820614202],[120,236,65,-0.7728550132939365],[120,236,66,-0.7724828130525523],[120,236,67,-0.772112887674258],[120,236,68,-0.7717452434082562],[120,236,69,-0.7713798864155448],[120,236,70,-0.7710168227684879],[120,236,71,-0.7706560584503894],[120,236,72,-0.7702975993550669],[120,236,73,-0.7699414512864377],[120,236,74,-0.7695876199580789],[120,236,75,-0.7692361109928172],[120,236,76,-0.768886929922304],[120,236,77,-0.7685400821865953],[120,236,78,-0.7681955731337319],[120,236,79,-0.7678534080193181],[120,237,64,-0.7733948728000817],[120,237,65,-0.773020262192164],[120,237,66,-0.7726479190154348],[120,237,67,-0.7722778496080714],[120,237,68,-0.7719100602205102],[120,237,69,-0.7715445570150306],[120,237,70,-0.7711813460653254],[120,237,71,-0.7708204333560755],[120,237,72,-0.7704618247825229],[120,237,73,-0.7701055261500573],[120,237,74,-0.7697515431737773],[120,237,75,-0.7693998814780783],[120,237,76,-0.7690505465962301],[120,237,77,-0.768703543969955],[120,237,78,-0.7683588789490102],[120,237,79,-0.7680165567907646],[120,238,64,-0.7735603912931994],[120,238,65,-0.7731856402321005],[120,238,66,-0.7728131555026926],[120,238,67,-0.7724429434443165],[120,238,68,-0.7720750103086197],[120,238,69,-0.7717093622591401],[120,238,70,-0.7713460053708769],[120,238,71,-0.770984945629865],[120,238,72,-0.7706261889327488],[120,238,73,-0.7702697410863687],[120,238,74,-0.7699156078073222],[120,238,75,-0.7695637947215523],[120,238,76,-0.7692143073639259],[120,238,77,-0.7688671511778106],[120,238,78,-0.7685223315146581],[120,238,79,-0.7681798536335818],[120,239,64,-0.7737260371729359],[120,239,65,-0.7733511470477202],[120,239,66,-0.7729785221501091],[120,239,67,-0.7726081688205835],[120,239,68,-0.7722400933119788],[120,239,69,-0.7718743017890689],[120,239,70,-0.7715108003281363],[120,239,71,-0.771149594916548],[120,239,72,-0.7707906914523283],[120,239,73,-0.770434095743746],[120,239,74,-0.770079813508876],[120,239,75,-0.7697278503751874],[120,239,76,-0.7693782118791218],[120,239,77,-0.7690309034656715],[120,239,78,-0.768685930487962],[120,239,79,-0.7683432982068297],[120,240,64,-0.7738918100704293],[120,240,65,-0.7735167822719644],[120,240,66,-0.7731440185924259],[120,240,67,-0.7727735253734119],[120,240,68,-0.7724053088689229],[120,240,69,-0.7720393752449454],[120,240,70,-0.7716757305790228],[120,240,71,-0.7713143808598315],[120,240,72,-0.7709553319867533],[120,240,73,-0.7705985897694638],[120,240,74,-0.7702441599274928],[120,240,75,-0.7698920480898144],[120,240,76,-0.7695422597944234],[120,240,77,-0.7691948004879151],[120,240,78,-0.7688496755250678],[120,240,79,-0.7685068901684202],[120,241,64,-0.774057709615771],[120,241,65,-0.7736825455367188],[120,241,66,-0.773309644463321],[120,241,67,-0.7729390127382696],[120,241,68,-0.7725706566167067],[120,241,69,-0.7722045822658086],[120,241,70,-0.7718407957643574],[120,241,71,-0.7714793031023157],[120,241,72,-0.7711201101804013],[120,241,73,-0.7707632228096737],[120,241,74,-0.7704086467110965],[120,241,75,-0.7700563875151258],[120,241,76,-0.7697064507612892],[120,241,77,-0.7693588418977635],[120,241,78,-0.7690135662809583],[120,241,79,-0.7686706291750943],[120,242,64,-0.7742237354380677],[120,242,65,-0.7738484364728759],[120,242,66,-0.7734753993954703],[120,242,67,-0.7731046305496133],[120,242,68,-0.7727361361915657],[120,242,69,-0.7723699224896707],[120,242,70,-0.7720059955239259],[120,242,71,-0.7716443612855581],[120,242,72,-0.7712850256765981],[120,242,73,-0.7709279945094677],[120,242,74,-0.7705732735065418],[120,242,75,-0.7702208682997379],[120,242,76,-0.7698707844300936],[120,242,77,-0.7695230273473462],[120,242,78,-0.7691776024095162],[120,242,79,-0.7688345148824842],[120,243,64,-0.7743898871654098],[120,243,65,-0.7740144547103036],[120,243,66,-0.7736412830205166],[120,243,67,-0.7732703784408586],[120,243,68,-0.7729017472286857],[120,243,69,-0.772535395553485],[120,243,70,-0.772171329496447],[120,243,71,-0.7718095550500398],[120,243,72,-0.7714500781175854],[120,243,73,-0.7710929045128453],[120,243,74,-0.770738039959584],[120,243,75,-0.7703854900911581],[120,243,76,-0.7700352604500941],[120,243,77,-0.7696873564876686],[120,243,78,-0.769341783563491],[120,243,79,-0.7689985469450822],[120,244,64,-0.7745561644248962],[120,244,65,-0.7741805998778694],[120,244,66,-0.773807294969094],[120,244,67,-0.7734362560444035],[120,244,68,-0.7730674893622261],[120,244,69,-0.7727010010931705],[120,244,70,-0.7723367973195965],[120,244,71,-0.7719748840351917],[120,244,72,-0.7716152671445458],[120,244,73,-0.7712579524627388],[120,244,74,-0.7709029457149023],[120,244,75,-0.7705502525358102],[120,244,76,-0.7701998784694567],[120,244,77,-0.7698518289686358],[120,244,78,-0.7695061093945251],[120,244,79,-0.769162725016264],[120,245,64,-0.7747225668426029],[120,245,65,-0.7743468716034092],[120,245,66,-0.7739734348707961],[120,245,67,-0.7736022629915971],[120,245,68,-0.7732333622252898],[120,245,69,-0.7728667387435806],[120,245,70,-0.7725023986299766],[120,245,71,-0.7721403478793616],[120,245,72,-0.7717805923975714],[120,245,73,-0.7714231380009813],[120,245,74,-0.7710679904160687],[120,245,75,-0.7707151552790027],[120,245,76,-0.7703646381352234],[120,245,77,-0.7700164444390212],[120,245,78,-0.7696705795531202],[120,245,79,-0.7693270487482579],[120,246,64,-0.7748890940436446],[120,246,65,-0.7745132695137894],[120,246,66,-0.7741397023542383],[120,246,67,-0.7737683989128021],[120,246,68,-0.7733993654499841],[120,246,69,-0.7730326081385652],[120,246,70,-0.7726681330631772],[120,246,71,-0.7723059462198775],[120,246,72,-0.7719460535157253],[120,246,73,-0.7715884607683692],[120,246,74,-0.7712331737056101],[120,246,75,-0.7708801979649906],[120,246,76,-0.7705295390933751],[120,246,77,-0.7701812025465286],[120,246,78,-0.7698351936887011],[120,246,79,-0.7694915177922065],[120,247,64,-0.7750557456521533],[120,247,65,-0.7746797932348845],[120,247,66,-0.7743060970470361],[120,247,67,-0.7739346634373722],[120,247,68,-0.7735654986673985],[120,247,69,-0.7731986089109482],[120,247,70,-0.7728340002537537],[120,247,71,-0.7724716786930241],[120,247,72,-0.7721116501370195],[120,247,73,-0.7717539204046393],[120,247,74,-0.7713984952249856],[120,247,75,-0.7710453802369532],[120,247,76,-0.7706945809888085],[120,247,77,-0.7703461029377701],[120,247,78,-0.7699999514495922],[120,247,79,-0.7696561317981444],[120,248,64,-0.7752225212912552],[120,248,65,-0.7748464423915551],[120,248,66,-0.7744726185757819],[120,248,67,-0.7741010561936297],[120,248,68,-0.7737317615075835],[120,248,69,-0.7733647406925049],[120,248,70,-0.7729999998352054],[120,248,71,-0.7726375449340219],[120,248,72,-0.7722773818983929],[120,248,73,-0.7719195165484467],[120,248,74,-0.7715639546145647],[120,248,75,-0.7712107017369714],[120,248,76,-0.770859763465314],[120,248,77,-0.7705111452582429],[120,248,78,-0.7701648524829954],[120,248,79,-0.7698208904149755],[120,249,64,-0.7753894205831335],[120,249,65,-0.7750132166077095],[120,249,66,-0.7746392665661075],[120,249,67,-0.7742675768089278],[120,249,68,-0.7738981535996112],[120,249,69,-0.7735310031140252],[120,249,70,-0.7731661314400363],[120,249,71,-0.7728035445770874],[120,249,72,-0.7724432484357728],[120,249,73,-0.7720852488374271],[120,249,74,-0.7717295515136888],[120,249,75,-0.7713761621060903],[120,249,76,-0.7710250861656379],[120,249,77,-0.7706763291523921],[120,249,78,-0.7703298964350521],[120,249,79,-0.7699857932905353],[120,250,64,-0.7755564431490057],[120,250,65,-0.7751801155062824],[120,250,66,-0.7748060406426622],[120,250,67,-0.7744342249096285],[120,250,68,-0.7740646745715544],[120,250,69,-0.7736973958052897],[120,250,70,-0.773332394699734],[120,250,71,-0.7729696772554124],[120,250,72,-0.7726092493840531],[120,250,73,-0.7722511169081742],[120,250,74,-0.7718952855606491],[120,250,75,-0.7715417609842965],[120,250,76,-0.7711905487314598],[120,250,77,-0.7708416542635881],[120,250,78,-0.7704950829508213],[120,250,79,-0.7701508400715686],[120,251,64,-0.7757235886091017],[120,251,65,-0.7753471387092117],[120,251,66,-0.7749729404290903],[120,251,67,-0.7746010001210799],[120,251,68,-0.7742313240504632],[120,251,69,-0.7738639183950492],[120,251,70,-0.7734987892447468],[120,251,71,-0.7731359426011413],[120,251,72,-0.7727753843770713],[120,251,73,-0.7724171203962169],[120,251,74,-0.7720611563926641],[120,251,75,-0.7717074980104954],[120,251,76,-0.7713561508033699],[120,251,77,-0.7710071202341038],[120,251,78,-0.7706604116742557],[120,251,79,-0.7703160304037064],[120,252,64,-0.7758908565827258],[120,252,65,-0.7755142858375008],[120,252,66,-0.7751399655480924],[120,252,67,-0.7747679020676786],[120,252,68,-0.7743981016624278],[120,252,69,-0.774030570511085],[120,252,70,-0.7736653147045456],[120,252,71,-0.7733023402454321],[120,252,72,-0.7729416530476712],[120,252,73,-0.7725832589360824],[120,252,74,-0.7722271636459418],[120,252,75,-0.7718733728225742],[120,252,76,-0.7715218920209319],[120,252,77,-0.771172726705177],[120,252,78,-0.7708258822482656],[120,252,79,-0.7704813639315284],[120,253,64,-0.7760582466882247],[120,253,65,-0.7756815565111874],[120,253,66,-0.7753071156213952],[120,253,67,-0.774934930372838],[120,253,68,-0.7745650070325465],[120,253,69,-0.7741973517801786],[120,253,70,-0.7738319707075927],[120,253,71,-0.7734688698184262],[120,253,72,-0.7731080550276711],[120,253,73,-0.7727495321612634],[120,253,74,-0.7723933069556478],[120,253,75,-0.7720393850573686],[120,253,76,-0.7716877720226503],[120,253,77,-0.7713384733169786],[120,253,78,-0.7709914943146858],[120,253,79,-0.7706468402985315],[120,254,64,-0.7762257585430123],[120,254,65,-0.7758489503493675],[120,254,66,-0.7754743902697748],[120,254,67,-0.7751020846590125],[120,254,68,-0.77473203978495],[120,254,69,-0.7743642618281348],[120,254,70,-0.773998756881366],[120,254,71,-0.773635530949272],[120,254,72,-0.7732745899478877],[120,254,73,-0.7729159397042433],[120,254,74,-0.7725595859559298],[120,254,75,-0.7722055343506888],[120,254,76,-0.7718537904459952],[120,254,77,-0.7715043597086366],[120,254,78,-0.7711572475143004],[120,254,79,-0.7708124591471532],[120,255,64,-0.7763933917635388],[120,255,65,-0.7760164669701644],[120,255,66,-0.7756417891130258],[120,255,67,-0.7752693645476663],[120,255,68,-0.7748991995427704],[120,255,69,-0.7745313002797519],[120,255,70,-0.7741656728523271],[120,255,71,-0.7738023232660931],[120,255,72,-0.7734412574381047],[120,255,73,-0.773082481196464],[120,255,74,-0.7727260002798856],[120,255,75,-0.7723718203372869],[120,255,76,-0.7720199469273705],[120,255,77,-0.7716703855182049],[120,255,78,-0.7713231414868107],[120,255,79,-0.7709782201187405],[120,256,64,-0.7765611459653514],[120,256,65,-0.7761841059907897],[120,256,66,-0.7758093117700229],[120,256,67,-0.7754367696593351],[120,256,68,-0.7750664859282025],[120,256,69,-0.7746984667588819],[120,256,70,-0.7743327182459837],[120,256,71,-0.7739692463960507],[120,256,72,-0.7736080571271351],[120,256,73,-0.7732491562683882],[120,256,74,-0.7728925495596255],[120,256,75,-0.7725382426509186],[120,256,76,-0.7721862411021759],[120,256,77,-0.7718365503827249],[120,256,78,-0.7714891758708977],[120,256,79,-0.771144122853612],[120,257,64,-0.7767290207630728],[120,257,65,-0.7763518670275221],[120,257,66,-0.7759769578586987],[120,257,67,-0.7756042996136037],[120,257,68,-0.7752338985624817],[120,257,69,-0.774865760888409],[120,257,70,-0.774499892686867],[120,257,71,-0.7741362999653213],[120,257,72,-0.7737749886427985],[120,257,73,-0.7734159645494765],[120,257,74,-0.7730592334262499],[120,257,75,-0.7727048009243218],[120,257,76,-0.7723526726047846],[120,257,77,-0.7720028539382031],[120,257,78,-0.7716553503041994],[120,257,79,-0.7713101669910348],[120,258,64,-0.776897015770379],[120,258,65,-0.7765197496956846],[120,258,66,-0.7761447269960214],[120,258,67,-0.775771954029084],[120,258,68,-0.775401437065862],[120,258,69,-0.7750331822902272],[120,258,70,-0.7746671957985094],[120,258,71,-0.7743034835990735],[120,258,72,-0.7739420516118982],[120,258,73,-0.7735829056681653],[120,258,74,-0.7732260515098262],[120,258,75,-0.7728714947891928],[120,258,76,-0.7725192410685202],[120,258,77,-0.7721692958195883],[120,258,78,-0.7718216644232877],[120,258,79,-0.7714763521692022],[120,259,64,-0.7770651306000608],[120,259,65,-0.7766877536097062],[120,259,66,-0.7763126187980569],[120,259,67,-0.7759397325234769],[120,259,68,-0.7755691010576771],[120,259,69,-0.7752007305853023],[120,259,70,-0.7748346272035063],[120,259,71,-0.7744707969215312],[120,259,72,-0.7741092456602844],[120,259,73,-0.7737499792519293],[120,259,74,-0.7733930034394513],[120,259,75,-0.7730383238762497],[120,259,76,-0.7726859461257194],[120,259,77,-0.7723358756608341],[120,259,78,-0.7719881178637313],[120,259,79,-0.771642678025296],[120,260,64,-0.7772333648639925],[120,260,65,-0.7768558783830907],[120,260,66,-0.7764806328799367],[120,260,67,-0.7761076347135404],[120,260,68,-0.77573689015631],[120,260,69,-0.7753684053936396],[120,260,70,-0.7750021865234846],[120,260,71,-0.7746382395559406],[120,260,72,-0.7742765704128212],[120,260,73,-0.7739171849272486],[120,260,74,-0.7735600888432198],[120,260,75,-0.7732052878151991],[120,260,76,-0.7728527874076999],[120,260,77,-0.7725025930948669],[120,260,78,-0.7721547102600637],[120,260,79,-0.771809144195454],[120,261,64,-0.7774017181731563],[120,261,65,-0.777024123628441],[120,261,66,-0.7766487688558829],[120,261,67,-0.776275660215114],[120,261,68,-0.775904803979216],[120,261,69,-0.7755362063343092],[120,261,70,-0.775169873379127],[120,261,71,-0.7748058111245955],[120,261,72,-0.7744440254934115],[120,261,73,-0.7740845223196338],[120,261,74,-0.7737273073482485],[120,261,75,-0.7733723862347621],[120,261,76,-0.7730197645447844],[120,261,77,-0.7726694477536101],[120,261,78,-0.7723214412458065],[120,261,79,-0.7719757503147953],[120,262,64,-0.7775701901376106],[120,262,65,-0.7771924889574274],[120,262,66,-0.7768170263391762],[120,262,67,-0.776443808643087],[120,262,68,-0.7760728421428921],[120,262,69,-0.7757041330254135],[120,262,70,-0.7753376873901401],[120,262,71,-0.7749735112488049],[120,262,72,-0.7746116105249656],[120,262,73,-0.7742519910535941],[120,262,74,-0.7738946585806434],[120,262,75,-0.7735396187626407],[120,262,76,-0.7731868771662692],[120,262,77,-0.772836439267952],[120,262,78,-0.7724883104534384],[120,262,79,-0.7721424960173867],[120,263,64,-0.777738780366552],[120,263,65,-0.7773609739808495],[120,263,66,-0.7769854049422178],[120,263,67,-0.7766120796114613],[120,263,68,-0.7762410042629382],[120,263,69,-0.7758721850841499],[120,263,70,-0.7755056281753164],[120,263,71,-0.7751413395489557],[120,263,72,-0.7747793251294623],[120,263,73,-0.7744195907526994],[120,263,74,-0.7740621421655638],[120,263,75,-0.773706985025581],[120,263,76,-0.7733541249004862],[120,263,77,-0.7730035672678084],[120,263,78,-0.7726553175144575],[120,263,79,-0.7723093809363066],[120,264,64,-0.7779074884682926],[120,264,65,-0.7775295783086138],[120,264,66,-0.7771539042765072],[120,264,67,-0.7767804727333273],[120,264,68,-0.7764092899540352],[120,264,69,-0.7760403621267876],[120,264,70,-0.7756736953525125],[120,264,71,-0.7753092956444894],[120,264,72,-0.7749471689279273],[120,264,73,-0.7745873210395571],[120,264,74,-0.7742297577271978],[120,264,75,-0.7738744846493504],[120,264,76,-0.7735215073747799],[120,264,77,-0.7731708313820994],[120,264,78,-0.7728224620593577],[120,264,79,-0.7724764047036216],[120,265,64,-0.7780763140502382],[120,265,65,-0.7776983015497116],[120,265,66,-0.7773225239526196],[120,265,67,-0.7769489876208431],[120,265,68,-0.7765776988299222],[120,265,69,-0.7762086637686454],[120,265,70,-0.7758418885386256],[120,265,71,-0.7754773791538799],[120,265,72,-0.7751151415404096],[120,265,73,-0.7747551815357904],[120,265,74,-0.7743975048887407],[120,265,75,-0.7740421172587146],[120,265,76,-0.773689024215485],[120,265,77,-0.7733382312387271],[120,265,78,-0.7729897437176068],[120,265,79,-0.7726435669503626],[120,266,64,-0.7782452567189502],[120,266,65,-0.7778671433122807],[120,266,66,-0.7774912635802681],[120,266,67,-0.7771176238852957],[120,266,68,-0.7767462305034589],[120,266,69,-0.7763770896241541],[120,266,70,-0.7760102073496558],[120,266,71,-0.7756455896946961],[120,266,72,-0.7752832425860448],[120,266,73,-0.7749231718621],[120,266,74,-0.7745653832724568],[120,266,75,-0.7742098824775003],[120,266,76,-0.7738566750479887],[120,266,77,-0.7735057664646378],[120,266,78,-0.7731571621177082],[120,266,79,-0.7728108673065895],[120,267,64,-0.7784143160801131],[120,267,65,-0.7780361032035734],[120,267,66,-0.7776601227682716],[120,267,67,-0.7772863811370693],[120,267,68,-0.776914884586593],[120,267,69,-0.7765456393068241],[120,267,70,-0.7761786514006748],[120,267,71,-0.7758139268835691],[120,267,72,-0.7754514716830222],[120,267,73,-0.7750912916382321],[120,267,74,-0.7747333924996478],[120,267,75,-0.7743777799285627],[120,267,76,-0.7740244594966987],[120,267,77,-0.7736734366857895],[120,267,78,-0.7733247168871695],[120,267,79,-0.7729783054013568],[120,268,64,-0.7785834917385599],[120,268,65,-0.7782051808299817],[120,268,66,-0.7778291011245796],[120,268,67,-0.7774552589856695],[120,268,68,-0.7770836606903856],[120,268,69,-0.77671431242927],[120,268,70,-0.7763472203058497],[120,268,71,-0.7759823903362171],[120,268,72,-0.7756198284486098],[120,268,73,-0.7752595404830028],[120,268,74,-0.7749015321906764],[120,268,75,-0.7745458092338102],[120,268,76,-0.774192377185067],[120,268,77,-0.7738412415271767],[120,268,78,-0.7734924076525256],[120,268,79,-0.7731458808627389],[120,269,64,-0.7787527832982396],[120,269,65,-0.7783743757970045],[120,269,66,-0.7779981982562401],[120,269,67,-0.7776242570396921],[120,269,68,-0.7772525584249785],[120,269,69,-0.7768831086031789],[120,269,70,-0.7765159136784112],[120,269,71,-0.7761509796674131],[120,269,72,-0.7757883124991217],[120,269,73,-0.775427918014266],[120,269,74,-0.7750698019649349],[120,269,75,-0.7747139700141717],[120,269,76,-0.774360427735558],[120,269,77,-0.7740091806127981],[120,269,78,-0.7736602340393077],[120,269,79,-0.7733135933177979],[120,270,64,-0.7789221903622796],[120,270,65,-0.7785436877093107],[120,270,66,-0.7781674137694614],[120,270,67,-0.7777933749068843],[120,270,68,-0.7774215773996568],[120,270,69,-0.7770520274393721],[120,270,70,-0.7766847311307159],[120,270,71,-0.7763196944910478],[120,270,72,-0.775956923449981],[120,270,73,-0.7755964238489759],[120,270,74,-0.7752382014409074],[120,270,75,-0.7748822618896599],[120,270,76,-0.7745286107697116],[120,270,77,-0.7741772535657186],[120,270,78,-0.7738281956721053],[120,270,79,-0.773481442392646],[120,271,64,-0.779091712532963],[120,271,65,-0.7787131161707155],[120,271,66,-0.7783367472695906],[120,271,67,-0.7779626121941228],[120,271,68,-0.7775907172228259],[120,271,69,-0.7772210685477827],[120,271,70,-0.7768536722742232],[120,271,71,-0.7764885344201056],[120,271,72,-0.7761256609156963],[120,271,73,-0.7757650576031639],[120,271,74,-0.7754067302361465],[120,271,75,-0.7750506844793474],[120,271,76,-0.7746969259081189],[120,271,77,-0.7743454600080473],[120,271,78,-0.7739962921745426],[120,271,79,-0.773649427712422],[120,272,64,-0.7792613494117067],[120,272,65,-0.7788826607841587],[120,272,66,-0.7785061983610894],[120,272,67,-0.778131968507391],[120,272,68,-0.7777599775019892],[120,272,69,-0.7773902315374333],[120,272,70,-0.7770227367194734],[120,272,71,-0.7766574990666433],[120,272,72,-0.7762945245098396],[120,272,73,-0.775933818891916],[120,272,74,-0.7755753879672512],[120,272,75,-0.7752192374013448],[120,272,76,-0.7748653727704006],[120,272,77,-0.7745137995609134],[120,272,78,-0.7741645231692569],[120,272,79,-0.7738175489012691],[120,273,64,-0.7794311005991218],[120,273,65,-0.7790523211517667],[120,273,66,-0.7786757666475976],[120,273,67,-0.7783014434518409],[120,273,68,-0.7779293578438101],[120,273,69,-0.7775595160164971],[120,273,70,-0.777191924076149],[120,273,71,-0.7768265880418515],[120,273,72,-0.7764635138451081],[120,273,73,-0.7761027073294351],[120,273,74,-0.7757441742499287],[120,273,75,-0.7753879202728622],[120,273,76,-0.775033950975269],[120,273,77,-0.7746822718445294],[120,273,78,-0.7743328882779599],[120,273,79,-0.7739858055823969],[120,274,64,-0.779600965694984],[120,274,65,-0.7792220968748202],[120,274,66,-0.7788454517319006],[120,274,67,-0.7784710366317614],[120,274,68,-0.7780988578540802],[120,274,69,-0.7777289215922671],[120,274,70,-0.7773612339530435],[120,274,71,-0.7769958009560227],[120,274,72,-0.7766326285332928],[120,274,73,-0.7762717225290089],[120,274,74,-0.7759130886989625],[120,274,75,-0.7755567327101776],[120,274,76,-0.7752026601404952],[120,274,77,-0.7748508764781592],[120,274,78,-0.7745013871214059],[120,274,79,-0.7741541973780495],[120,275,64,-0.7797709442982563],[120,275,65,-0.7793919875537789],[120,275,66,-0.7790152532159539],[120,275,67,-0.7786407476506026],[120,275,68,-0.778268477137743],[120,275,69,-0.7778984478711801],[120,275,70,-0.7775306659580847],[120,275,71,-0.7771651374185758],[120,275,72,-0.7768018681853018],[120,275,73,-0.776440864103034],[120,275,74,-0.7760821309282364],[120,275,75,-0.7757256743286612],[120,275,76,-0.7753714998829344],[120,275,77,-0.7750196130801412],[120,275,78,-0.7746700193194163],[120,275,79,-0.774322723909529],[120,276,64,-0.7799410360070577],[120,276,65,-0.7795619927882496],[120,276,66,-0.7791851707008507],[120,276,67,-0.7788105761109441],[120,276,68,-0.778438215298863],[120,276,69,-0.778068094458784],[120,276,70,-0.777700219698304],[120,276,71,-0.7773345970380238],[120,276,72,-0.7769712324111289],[120,276,73,-0.776610131662984],[120,276,74,-0.7762513005507026],[120,276,75,-0.7758947447427429],[120,276,76,-0.7755404698184928],[120,276,77,-0.7751884812678569],[120,276,78,-0.7748387844908464],[120,276,79,-0.7744913847971642],[120,277,64,-0.7801112404187248],[120,277,65,-0.7797321121770477],[120,277,66,-0.7793552037868847],[120,277,67,-0.7789805216145559],[120,277,68,-0.7786080719406867],[120,277,69,-0.7782378609598006],[120,277,70,-0.7778698947798973],[120,277,71,-0.7775041794220356],[120,277,72,-0.7771407208199155],[120,277,73,-0.7767795248194717],[120,277,74,-0.7764205971784442],[120,277,75,-0.7760639435659744],[120,277,76,-0.7757095695621902],[120,277,77,-0.7753574806577933],[120,277,78,-0.7750076822536489],[120,277,79,-0.7746601796603718],[120,278,64,-0.7802815571297901],[120,278,65,-0.7799023453181754],[120,278,66,-0.779525352073527],[120,278,67,-0.7791505837623776],[120,278,68,-0.7787780466656207],[120,278,69,-0.7784077469781029],[120,278,70,-0.778039690808203],[120,278,71,-0.7776738841774145],[120,278,72,-0.7773103330199282],[120,278,73,-0.776949043182226],[120,278,74,-0.7765900204226517],[120,278,75,-0.776233270411007],[120,278,76,-0.7758787987281375],[120,278,77,-0.7755266108655194],[120,278,78,-0.7751767122248503],[120,278,79,-0.7748291081176346],[120,279,64,-0.7804519857359584],[120,279,65,-0.7800726918087983],[120,279,66,-0.7796956151594032],[120,279,67,-0.7793207621544941],[120,279,68,-0.7789481390752082],[120,279,69,-0.7785777521166919],[120,279,70,-0.7782096073876789],[120,279,71,-0.777843710910074],[120,279,72,-0.7774800686185355],[120,279,73,-0.7771186863600695],[120,279,74,-0.7767595698936006],[120,279,75,-0.7764027248895682],[120,279,76,-0.776048156929513],[120,279,77,-0.7756958715056635],[120,279,78,-0.7753458740205277],[120,279,79,-0.7749981697864778],[120,280,64,-0.7806225258321695],[120,280,65,-0.7802431512453085],[120,280,66,-0.7798659926423565],[120,280,67,-0.7794910563901987],[120,280,68,-0.7791183487701924],[120,280,69,-0.7787478759777592],[120,280,70,-0.7783796441219644],[120,280,71,-0.7780136592251006],[120,280,72,-0.7776499272222702],[120,280,73,-0.7772884539609803],[120,280,74,-0.7769292452007135],[120,280,75,-0.7765723066125241],[120,280,76,-0.7762176437786253],[120,280,77,-0.775865262191976],[120,280,78,-0.7755151672558719],[120,280,79,-0.7751673642835317],[120,281,64,-0.7807931770125661],[120,281,65,-0.7804137232232911],[120,281,66,-0.7800364841194141],[120,281,67,-0.7796614660679606],[120,281,68,-0.7792886753504831],[120,281,69,-0.7789181181626547],[120,281,70,-0.7785498006138486],[120,281,71,-0.7781837287267217],[120,281,72,-0.7778199084367974],[120,281,73,-0.7774583455920603],[120,281,74,-0.7770990459525279],[120,281,75,-0.7767420151898471],[120,281,76,-0.776387258886881],[120,281,77,-0.7760347825372962],[120,281,78,-0.7756845915451545],[120,281,79,-0.7753366912244986],[120,282,64,-0.7809639388705178],[120,282,65,-0.7805844073375496],[120,282,66,-0.7802070891868131],[120,282,67,-0.779831990785449],[120,282,68,-0.7794591184151813],[120,282,69,-0.7790884782719107],[120,282,70,-0.7787200764652946],[120,282,71,-0.7783539190183302],[120,282,72,-0.7779900118669384],[120,282,73,-0.7776283608595589],[120,282,74,-0.7772689717567206],[120,282,75,-0.7769118502306404],[120,282,76,-0.7765570018648085],[120,282,77,-0.7762044321535773],[120,282,78,-0.775854146501752],[120,282,79,-0.7755061502241782],[120,283,64,-0.7811348109985894],[120,283,65,-0.7807552031820741],[120,283,66,-0.7803778074399677],[120,283,67,-0.7800026301395018],[120,283,68,-0.7796296775625481],[120,283,69,-0.7792589559052105],[120,283,70,-0.7788904712774068],[120,283,71,-0.7785242297024513],[120,283,72,-0.778160237116639],[120,283,73,-0.7777984993688408],[120,283,74,-0.777439022220075],[120,283,75,-0.777081811343105],[120,283,76,-0.7767268723220261],[120,283,77,-0.7763742106518534],[120,283,78,-0.7760238317381142],[120,283,79,-0.7756757408964341],[120,284,64,-0.7813057929886028],[120,284,65,-0.7809261103501022],[120,284,66,-0.7805486384735307],[120,284,67,-0.7801733837261869],[120,284,68,-0.7798003523900652],[120,284,69,-0.7794295506614496],[120,284,70,-0.7790609846504937],[120,284,71,-0.7786946603808056],[120,284,72,-0.778330583789031],[120,284,73,-0.777968760724449],[120,284,74,-0.7776091969485439],[120,284,75,-0.777251898134603],[120,284,76,-0.776896869867304],[120,284,77,-0.7765441176423027],[120,284,78,-0.7761936468658257],[120,284,79,-0.775845462854257],[120,285,64,-0.7814768844316144],[120,285,65,-0.7810971284340973],[120,285,66,-0.7807195818813721],[120,285,67,-0.7803442511407798],[120,285,68,-0.7799711424944136],[120,285,69,-0.7796002621387133],[120,285,70,-0.7792316161840448],[120,285,71,-0.778865210654286],[120,285,72,-0.7785010514864101],[120,285,73,-0.7781391445300812],[120,285,74,-0.7777794955472263],[120,285,75,-0.7774221102116341],[120,285,76,-0.7770669941085417],[120,285,77,-0.7767141527342236],[120,285,78,-0.7763635914955833],[120,285,79,-0.7760153157097414],[120,286,64,-0.7816480849178927],[120,286,65,-0.7812682570257254],[120,286,66,-0.7808906372565552],[120,286,67,-0.7805152319777406],[120,286,68,-0.7801420474714499],[120,286,69,-0.7797710899342538],[120,286,70,-0.7794023654767074],[120,286,71,-0.7790358801229347],[120,286,72,-0.7786716398102124],[120,286,73,-0.7783096503885665],[120,286,74,-0.7779499176203442],[120,286,75,-0.7775924471798122],[120,286,76,-0.7772372446527448],[120,286,77,-0.7768843155360121],[120,286,78,-0.7765336652371727],[120,286,79,-0.7761852990740616],[120,287,64,-0.7818193940369794],[120,287,65,-0.7814394957159174],[120,287,66,-0.7810618041913991],[120,287,67,-0.7806863258307768],[120,287,68,-0.7803130669162686],[120,287,69,-0.7799420336445528],[120,287,70,-0.7795732321263495],[120,287,71,-0.7792066683860053],[120,287,72,-0.7788423483610769],[120,287,73,-0.7784802779019289],[120,287,74,-0.7781204627713054],[120,287,75,-0.7777629086439285],[120,287,76,-0.7774076211060869],[120,287,77,-0.777054605655224],[120,287,78,-0.7767038676995313],[120,287,79,-0.7763554125575359],[120,288,64,-0.7819908113776677],[120,288,65,-0.7816108440948462],[120,288,66,-0.7812330822774565],[120,288,67,-0.7808575322928195],[120,288,68,-0.7804842004231796],[120,288,69,-0.7801130928652984],[120,288,70,-0.7797442157300369],[120,288,71,-0.7793775750419403],[120,288,72,-0.7790131767388225],[120,288,73,-0.7786510266713632],[120,288,74,-0.7782911306026802],[120,288,75,-0.7779334942079281],[120,288,76,-0.7775781230738874],[120,288,77,-0.7772250226985522],[120,288,78,-0.7768741984907245],[120,288,79,-0.776525655769602],[120,289,64,-0.7821623365279791],[120,289,65,-0.781782301751904],[120,289,66,-0.7814044711054895],[120,289,67,-0.7810288509560012],[120,289,68,-0.7806554475856847],[120,289,69,-0.7802842671913615],[120,289,70,-0.7799153158840091],[120,289,71,-0.7795485996883479],[120,289,72,-0.7791841245424252],[120,289,73,-0.7788218962972125],[120,289,74,-0.7784619207161784],[120,289,75,-0.7781042034748871],[120,289,76,-0.7777487501605875],[120,289,77,-0.7773955662718028],[120,289,78,-0.7770446572179232],[120,289,79,-0.776696028318794],[120,290,64,-0.7823339690752253],[120,290,65,-0.7819538682757644],[120,290,66,-0.7815759702655334],[120,290,67,-0.7812002814117178],[120,290,68,-0.780826807996541],[120,290,69,-0.780455556216859],[120,290,70,-0.7800865321837429],[120,290,71,-0.7797197419220643],[120,290,72,-0.7793551913700802],[120,290,73,-0.7789928863790307],[120,290,74,-0.7786328327127117],[120,290,75,-0.7782750360470743],[120,290,76,-0.7779195019698137],[120,290,77,-0.7775662359799589],[120,290,78,-0.7772152434874657],[120,290,79,-0.7768665298128061],[120,291,64,-0.7825057086059767],[120,291,65,-0.78212554325435],[120,291,66,-0.7817475793468631],[120,291,67,-0.7813718232505966],[120,291,68,-0.780998281247727],[120,291,69,-0.7806269595351214],[120,291,70,-0.7802578642239197],[120,291,71,-0.7798910013391214],[120,291,72,-0.7795263768191695],[120,291,73,-0.7791639965155494],[120,291,74,-0.7788038661923612],[120,291,75,-0.7784459915259199],[120,291,76,-0.7780903781043442],[120,291,77,-0.7777370314271463],[120,291,78,-0.7773859569048256],[120,291,79,-0.7770371598584581],[120,292,64,-0.7826775547060857],[120,292,65,-0.7822973262748572],[120,292,66,-0.7819192979380182],[120,292,67,-0.7815434760625202],[120,292,68,-0.7811698669304681],[120,292,69,-0.7807984767387162],[120,292,70,-0.7804293115984493],[120,292,71,-0.7800623775347706],[120,292,72,-0.7796976804862862],[120,292,73,-0.7793352263047026],[120,292,74,-0.7789750207544017],[120,292,75,-0.778617069512039],[120,292,76,-0.7782613781661339],[120,292,77,-0.7779079522166593],[120,292,78,-0.7775567970746359],[120,292,79,-0.7772079180617214],[120,293,64,-0.7828495069606556],[120,293,65,-0.7824692169237233],[120,293,66,-0.7820911256267702],[120,293,67,-0.781715239436594],[120,293,68,-0.781341564635204],[120,293,69,-0.7809701074194164],[120,293,70,-0.780600873900438],[120,293,71,-0.7802338701034515],[120,293,72,-0.779869101967202],[120,293,73,-0.7795065753435948],[120,293,74,-0.7791462959972693],[120,293,75,-0.7787882696051991],[120,293,76,-0.7784325017562812],[120,293,77,-0.778078997950927],[120,293,78,-0.7777277636006559],[120,293,79,-0.7773788040276852],[120,294,64,-0.7830215649541015],[120,294,65,-0.7826412147866892],[120,294,66,-0.7822630620001854],[120,294,67,-0.7818871129612094],[120,294,68,-0.7815133739516502],[120,294,69,-0.7811418511682628],[120,294,70,-0.7807725507222507],[120,294,71,-0.7804054786388529],[120,294,72,-0.78004064085693],[120,294,73,-0.7796780432285622],[120,294,74,-0.7793176915186235],[120,294,75,-0.7789595914043824],[120,294,76,-0.7786037484750912],[120,294,77,-0.7782501682315764],[120,294,78,-0.7778988560858343],[120,294,79,-0.7775498173606195],[120,295,64,-0.7831937282701286],[120,295,65,-0.7828133194487762],[120,295,66,-0.7824351066446011],[120,295,67,-0.7820590962240197],[120,295,68,-0.7816852944687763],[120,295,69,-0.7813137075755402],[120,295,70,-0.7809443416554879],[120,295,71,-0.7805772027338906],[120,295,72,-0.7802122967497007],[120,295,73,-0.77984962955515],[120,295,74,-0.7794892069153243],[120,295,75,-0.7791310345077633],[120,295,76,-0.7787751179220518],[120,295,77,-0.7784214626594093],[120,295,78,-0.7780700741322859],[120,295,79,-0.7777209576639517],[120,296,64,-0.7833659964917087],[120,296,65,-0.782985530494263],[120,296,66,-0.7826072591456034],[120,296,67,-0.7822311888119178],[120,296,68,-0.7818573257747821],[120,296,69,-0.7814856762307552],[120,296,70,-0.7811162462909624],[120,296,71,-0.7807490419806838],[120,296,72,-0.7803840692389399],[120,296,73,-0.7800213339180903],[120,296,74,-0.7796608417834088],[120,296,75,-0.7793025985126845],[120,296,76,-0.7789466096958109],[120,296,77,-0.7785928808343782],[120,296,78,-0.778241417341268],[120,296,79,-0.7778922245402433],[120,297,64,-0.7835383692011423],[120,297,65,-0.7831578475067487],[120,297,66,-0.7827795190880886],[120,297,67,-0.7824033903110984],[120,297,68,-0.78202946745716],[120,297,69,-0.7816577567226978],[120,297,70,-0.7812882642187624],[120,297,71,-0.7809209959706183],[120,297,72,-0.7805559579173302],[120,297,73,-0.7801931559113626],[120,297,74,-0.7798325957181542],[120,297,75,-0.7794742830157195],[120,297,76,-0.7791182233942388],[120,297,77,-0.7787644223556498],[120,297,78,-0.7784128853132432],[120,297,79,-0.7780636175912526],[120,298,64,-0.7837108459800265],[120,298,65,-0.7833302700691187],[120,298,66,-0.7829518860562319],[120,298,67,-0.7825757003070253],[120,298,68,-0.7822017191026626],[120,298,69,-0.7818299486394097],[120,298,70,-0.7814603950282181],[120,298,71,-0.7810930642943127],[120,298,72,-0.7807279623767791],[120,298,73,-0.7803650951281629],[120,298,74,-0.7800044683140446],[120,298,75,-0.7796460876126406],[120,298,76,-0.7792899586143955],[120,298,77,-0.7789360868215717],[120,298,78,-0.7785844776478464],[120,298,79,-0.7782351364179021],[120,299,64,-0.7838834264092792],[120,299,65,-0.7835027977635711],[120,299,66,-0.7831243596335109],[120,299,67,-0.7827481183844558],[120,299,68,-0.7823740802973272],[120,299,69,-0.782002251568208],[120,299,70,-0.7816326383079263],[120,299,71,-0.7812652465416438],[120,299,72,-0.7809000822084431],[120,299,73,-0.7805371511609273],[120,299,74,-0.780176459164795],[120,299,75,-0.7798180118984428],[120,299,76,-0.779461814952555],[120,299,77,-0.7791078738296969],[120,299,78,-0.7787561939439097],[120,299,79,-0.7784067806203019],[120,300,64,-0.7840561100691069],[120,300,65,-0.7836754301715829],[120,300,66,-0.7832969394026731],[120,300,67,-0.7829206441274084],[120,300,68,-0.7825465506264432],[120,300,69,-0.7821746650956528],[120,300,70,-0.781804993645718],[120,300,71,-0.7814375423017134],[120,300,72,-0.7810723170026946],[120,300,73,-0.780709323601299],[120,300,74,-0.78034856786332],[120,300,75,-0.7799900554673104],[120,300,76,-0.7796337920041725],[120,300,77,-0.7792797829767509],[120,300,78,-0.7789280337994285],[120,300,79,-0.7785785497977178],[120,301,64,-0.7842288965390665],[120,301,65,-0.7838481668739723],[120,301,66,-0.7834696249457986],[120,301,67,-0.7830932771192249],[120,301,68,-0.7827191296746141],[120,301,69,-0.7823471888076097],[120,301,70,-0.7819774606287208],[120,301,71,-0.7816099511629108],[120,301,72,-0.7812446663491852],[120,301,73,-0.7808816120401912],[120,301,74,-0.7805207940017946],[120,301,75,-0.7801622179126806],[120,301,76,-0.7798058893639468],[120,301,77,-0.7794518138586943],[120,301,78,-0.7790999968116253],[120,301,79,-0.7787504435486335],[120,302,64,-0.7844017853980424],[120,302,65,-0.7840210074508764],[120,302,66,-0.7836424158442771],[120,302,67,-0.7832660169425476],[120,302,68,-0.7828918170257348],[120,302,69,-0.7825198222892262],[120,302,70,-0.7821500388433351],[120,302,71,-0.7817824727128899],[120,302,72,-0.7814171298368215],[120,302,73,-0.7810540160677643],[120,302,74,-0.7806931371716319],[120,302,75,-0.7803344988272198],[120,302,76,-0.7799781066257974],[120,302,77,-0.7796239660706997],[120,302,78,-0.7792720825769255],[120,302,79,-0.7789224614707277],[120,303,64,-0.7845747762242241],[120,303,65,-0.7841939514817278],[120,303,66,-0.783815311678784],[120,303,67,-0.7834388631792956],[120,303,68,-0.7830646122629683],[120,303,69,-0.7826925651249095],[120,303,70,-0.7823227278752122],[120,303,71,-0.7819551065385456],[120,303,72,-0.7815897070537429],[120,303,73,-0.7812265352734014],[120,303,74,-0.7808655969634597],[120,303,75,-0.7805068978028001],[120,303,76,-0.7801504433828407],[120,303,77,-0.7797962392071278],[120,303,78,-0.7794442906909341],[120,303,79,-0.7790946031608494],[120,304,64,-0.7847478685951678],[120,304,65,-0.7843669985453162],[120,304,66,-0.7839883120293438],[120,304,67,-0.7836118154107277],[120,304,68,-0.7832375149688082],[120,304,69,-0.7828654168983877],[120,304,70,-0.7824955273093152],[120,304,71,-0.7821278522260766],[120,304,72,-0.7817623975873831],[120,304,73,-0.7813991692457719],[120,304,74,-0.7810381729671829],[120,304,75,-0.780679414430562],[120,304,76,-0.7803228992274527],[120,304,77,-0.7799686328615906],[120,304,78,-0.7796166207484989],[120,304,79,-0.7792668682150822],[120,305,64,-0.7849210620877636],[120,305,65,-0.7845401482197571],[120,305,66,-0.7841614164752969],[120,305,67,-0.7837848732174095],[120,305,68,-0.7834105247250458],[120,305,69,-0.783038377192678],[120,305,70,-0.7826684367298873],[120,305,71,-0.7823007093609522],[120,305,72,-0.7819352010244383],[120,305,73,-0.7815719175727984],[120,305,74,-0.7812108647719508],[120,305,75,-0.7808520483008814],[120,305,76,-0.7804954737512368],[120,305,77,-0.7801411466269178],[120,305,78,-0.7797890723436768],[120,305,79,-0.7794392562287101],[120,306,64,-0.7850943562782606],[120,306,65,-0.7847134000825151],[120,306,66,-0.7843346245953238],[120,306,67,-0.7839580361792382],[120,306,68,-0.7835836411127942],[120,306,69,-0.7832114455901107],[120,306,70,-0.7828414557204759],[120,306,71,-0.7824736775279371],[120,306,72,-0.7821081169508902],[120,306,73,-0.7817447798416807],[120,306,74,-0.781383671966181],[120,306,75,-0.7810247990033942],[120,306,76,-0.7806681665450466],[120,306,77,-0.780313780095182],[120,306,78,-0.7799616450697586],[120,306,79,-0.7796117667962426],[120,307,64,-0.7852677507422343],[120,307,65,-0.7848867537103718],[120,307,66,-0.784507935967413],[120,307,67,-0.7841313038754091],[120,307,68,-0.7837568637124568],[120,307,69,-0.7833846216722966],[120,307,70,-0.7830145838638998],[120,307,71,-0.7826467563110585],[120,307,72,-0.7822811449519749],[120,307,73,-0.7819177556388632],[120,307,74,-0.7815565941375271],[120,307,75,-0.7811976661269632],[120,307,76,-0.7808409771989546],[120,307,77,-0.780486532857665],[120,307,78,-0.780134338519236],[120,307,79,-0.7797843995113809],[120,308,64,-0.7854412450546481],[120,308,65,-0.785060208679488],[120,308,66,-0.7846813501689227],[120,308,67,-0.7843046758844786],[120,308,68,-0.7839301921037882],[120,308,69,-0.7835579050201892],[120,308,70,-0.7831878207423116],[120,308,71,-0.7828199452936683],[120,308,72,-0.782454284612244],[120,308,73,-0.7820908445500978],[120,308,74,-0.781729630872941],[120,308,75,-0.7813706492597409],[120,308,76,-0.781013905302314],[120,308,77,-0.7806594045049208],[120,308,78,-0.780307152283864],[120,308,79,-0.7799571539670815],[120,309,64,-0.7856148387898306],[120,309,65,-0.7852337645653804],[120,309,66,-0.7848548667765585],[120,309,67,-0.7844781517843409],[120,309,68,-0.7841036258658717],[120,309,69,-0.7837312952140615],[120,309,70,-0.7833611659371746],[120,309,71,-0.7829932440584202],[120,309,72,-0.7826275355155419],[120,309,73,-0.7822640461604199],[120,309,74,-0.7819027817586497],[120,309,75,-0.7815437479891456],[120,309,76,-0.7811869504437348],[120,309,77,-0.7808323946267519],[120,309,78,-0.7804800859546376],[120,309,79,-0.7801300297555319],[120,310,64,-0.785788531521453],[120,310,65,-0.785407420942899],[120,310,66,-0.785028485366349],[120,310,67,-0.7846517311522047],[120,310,68,-0.7842771645770965],[120,310,69,-0.783904791833483],[120,310,70,-0.783534619029239],[120,310,71,-0.7831666521872459],[120,310,72,-0.7828008972449821],[120,310,73,-0.7824373600541253],[120,310,74,-0.7820760463801315],[120,310,75,-0.7817169619018387],[120,310,76,-0.7813601122110617],[120,310,77,-0.7810055028121863],[120,310,78,-0.7806531391217684],[120,310,79,-0.7803030264681278],[120,311,64,-0.7859623228225905],[120,311,65,-0.7855811773862882],[120,311,66,-0.7852022055137092],[120,311,67,-0.7848254135646554],[120,311,68,-0.7844508078152189],[120,311,69,-0.7840783944573821],[120,311,70,-0.7837081795986054],[120,311,71,-0.7833401692614184],[120,311,72,-0.7829743693830103],[120,311,73,-0.7826107858148329],[120,311,74,-0.7822494243221787],[120,311,75,-0.7818902905837866],[120,311,76,-0.7815333901914354],[120,311,77,-0.7811787286495393],[120,311,78,-0.7808263113747467],[120,311,79,-0.7804761436955348],[120,312,64,-0.7861362122656899],[120,312,65,-0.7857550334691557],[120,312,66,-0.7853760267934076],[120,312,67,-0.7849991985976228],[120,312,68,-0.7846245551573306],[120,312,69,-0.7842521026640127],[120,312,70,-0.7838818472246906],[120,312,71,-0.783513794861518],[120,312,72,-0.7831479515113711],[120,312,73,-0.7827843230254514],[120,312,74,-0.7824229151688651],[120,312,75,-0.7820637336202282],[120,312,76,-0.7817067839712605],[120,312,77,-0.7813520717263814],[120,312,78,-0.7809996023023094],[120,312,79,-0.7806493810276562],[120,313,64,-0.7863101994225945],[120,313,65,-0.7859289887644954],[120,313,66,-0.7855499487795896],[120,313,67,-0.785173085826405],[120,313,68,-0.7847984061798827],[120,313,69,-0.7844259160309791],[120,313,70,-0.7840556214862529],[120,313,71,-0.7836875285674576],[120,313,72,-0.783321643211132],[120,313,73,-0.782957971268204],[120,313,74,-0.7825965185035698],[120,313,75,-0.7822372905956989],[120,313,76,-0.781880293136229],[120,313,77,-0.7815255316295622],[120,313,78,-0.7811730114924635],[120,313,79,-0.7808227380536573],[120,314,64,-0.7864842838645109],[120,314,65,-0.7861030428446557],[120,314,66,-0.7857239710457464],[120,314,67,-0.7853470748256357],[120,314,68,-0.7849723604586527],[120,314,69,-0.7845998341352034],[120,314,70,-0.7842295019613591],[120,314,71,-0.7838613699584491],[120,314,72,-0.7834954440626511],[120,314,73,-0.7831317301245955],[120,314,74,-0.7827702339089443],[120,314,75,-0.7824109610939977],[120,314,76,-0.782053917271288],[120,314,77,-0.7816991079451767],[120,314,78,-0.7813465385324534],[120,314,79,-0.7809962143619313],[120,315,64,-0.7866584651620709],[120,315,65,-0.7862771952814014],[120,315,66,-0.7858980931647757],[120,315,67,-0.7855211651693468],[120,315,68,-0.7851464175688068],[120,315,69,-0.7847738565529868],[120,315,70,-0.7844034882274467],[120,315,71,-0.7840353186130666],[120,315,72,-0.7836693536456394],[120,315,73,-0.783305599175474],[120,315,74,-0.7829440609669751],[120,315,75,-0.7825847446982499],[120,315,76,-0.7822276559607021],[120,315,77,-0.7818728002586294],[120,315,78,-0.7815201830088231],[120,315,79,-0.7811698095401634],[120,316,64,-0.7868327428853089],[120,316,65,-0.7864514456458899],[120,316,66,-0.786072314708959],[120,316,67,-0.7856953564309449],[120,316,68,-0.7853205770848771],[120,316,69,-0.7849479828599878],[120,316,70,-0.7845775798613003],[120,316,71,-0.7842093741092222],[120,316,72,-0.7838433715391372],[120,316,73,-0.7834795780010086],[120,316,74,-0.7831179992589606],[120,316,75,-0.7827586409908834],[120,316,76,-0.7824015087880294],[120,316,77,-0.7820466081546094],[120,316,78,-0.7816939445073934],[120,316,79,-0.781343523175306],[120,317,64,-0.7870071166036389],[120,317,65,-0.7866257935086491],[120,317,66,-0.7862466352499391],[120,317,67,-0.7858696481831879],[120,317,68,-0.785494838580738],[120,317,69,-0.7851222126311974],[120,317,70,-0.784751776439029],[120,317,71,-0.7843835360241433],[120,317,72,-0.7840174973214906],[120,317,73,-0.7836536661806655],[120,317,74,-0.7832920483654869],[120,317,75,-0.7829326495536055],[120,317,76,-0.7825754753360985],[120,317,77,-0.7822205312170672],[120,317,78,-0.7818678226132374],[120,317,79,-0.7815173548535554],[120,318,64,-0.7871815858859158],[120,318,65,-0.786800238439639],[120,318,66,-0.7864210543587816],[120,318,67,-0.7860440399982478],[120,318,68,-0.7856692016296682],[120,318,69,-0.7852965454410026],[120,318,70,-0.7849260775361283],[120,318,71,-0.7845578039344346],[120,318,72,-0.7841917305704147],[120,318,73,-0.7838278632932698],[120,318,74,-0.7834662078664909],[120,318,75,-0.783106769967465],[120,318,76,-0.7827495551870712],[120,318,77,-0.7823945690292782],[120,318,78,-0.7820418169107443],[120,318,79,-0.7816913041604152],[120,319,64,-0.787356150300413],[120,319,65,-0.7869747800082282],[120,319,66,-0.7865955716059514],[120,319,67,-0.7862185314476866],[120,319,68,-0.7858436658043281],[120,319,69,-0.785470980863162],[120,319,70,-0.7851004827274566],[120,319,71,-0.7847321774160549],[120,319,72,-0.784366070862969],[120,319,73,-0.7840021689169832],[120,319,74,-0.7836404773412365],[120,319,75,-0.7832810018128292],[120,319,76,-0.7829237479224186],[120,319,77,-0.7825687211738174],[120,319,78,-0.7822159269835944],[120,319,79,-0.7818653706806717],[121,-64,64,-0.7306494418828495],[121,-64,65,-0.7303691676568341],[121,-64,66,-0.730091317744965],[121,-64,67,-0.7298158972698692],[121,-64,68,-0.729542911259724],[121,-64,69,-0.7292723646478392],[121,-64,70,-0.7290042622722234],[121,-64,71,-0.7287386088751548],[121,-64,72,-0.7284754091027513],[121,-64,73,-0.7282146675045535],[121,-64,74,-0.727956388533081],[121,-64,75,-0.7277005765434172],[121,-64,76,-0.7274472357927838],[121,-64,77,-0.7271963704401141],[121,-64,78,-0.7269479845456316],[121,-64,79,-0.7267020820704231],[121,-63,64,-0.730767184632649],[121,-63,65,-0.7304864680244998],[121,-63,66,-0.730208175671918],[121,-63,67,-0.7299323127036723],[121,-63,68,-0.7296588841540835],[121,-63,69,-0.7293878949626056],[121,-63,70,-0.7291193499733929],[121,-63,71,-0.7288532539348702],[121,-63,72,-0.7285896114993027],[121,-63,73,-0.7283284272223791],[121,-63,74,-0.728069705562768],[121,-63,75,-0.7278134508817018],[121,-63,76,-0.7275596674425518],[121,-63,77,-0.7273083594104011],[121,-63,78,-0.7270595308516229],[121,-63,79,-0.7268131857334538],[121,-62,64,-0.7308850892023212],[121,-62,65,-0.7306039307378395],[121,-62,66,-0.7303251964688131],[121,-62,67,-0.7300488915301449],[121,-62,68,-0.729775020962291],[121,-62,69,-0.7295035897108424],[121,-62,70,-0.7292346026260914],[121,-62,71,-0.7289680644626021],[121,-62,72,-0.7287039798787793],[121,-62,73,-0.728442353436453],[121,-62,74,-0.728183189600433],[121,-62,75,-0.727926492738094],[121,-62,76,-0.7276722671189496],[121,-62,77,-0.7274205169142258],[121,-62,78,-0.7271712461964387],[121,-62,79,-0.7269244589389678],[121,-61,64,-0.7310031558373458],[121,-61,65,-0.7307215560459819],[121,-61,66,-0.7304423803884093],[121,-61,67,-0.7301656340056571],[121,-61,68,-0.7298913219443094],[121,-61,69,-0.729619449156086],[121,-61,70,-0.7293500204974099],[121,-61,71,-0.7290830407289765],[121,-61,72,-0.7288185145153233],[121,-61,73,-0.7285564464244141],[121,-61,74,-0.7282968409271923],[121,-61,75,-0.728039702397168],[121,-61,76,-0.7277850351099902],[121,-61,77,-0.7275328432430203],[121,-61,78,-0.7272831308749108],[121,-61,79,-0.7270359019851771],[121,-60,64,-0.7311213847799832],[121,-60,65,-0.7308393441948333],[121,-60,66,-0.7305597276802402],[121,-60,67,-0.7302825403833515],[121,-60,68,-0.7300077873568707],[121,-60,69,-0.7297354735586393],[121,-60,70,-0.7294656038512028],[121,-60,71,-0.7291981830013808],[121,-60,72,-0.7289332156798358],[121,-60,73,-0.7286707064606576],[121,-60,74,-0.7284106598209166],[121,-60,75,-0.7281530801402505],[121,-60,76,-0.7278979717004364],[121,-60,77,-0.7276453386849645],[121,-60,78,-0.7273951851786163],[121,-60,79,-0.7271475151670366],[121,-59,64,-0.7312397762692622],[121,-59,65,-0.7309572954270658],[121,-59,66,-0.7306772385906026],[121,-59,67,-0.7303996109131302],[121,-59,68,-0.7301244174534642],[121,-59,69,-0.7298516631755596],[121,-59,70,-0.7295813529480769],[121,-59,71,-0.729313491543952],[121,-59,72,-0.7290480836399648],[121,-59,73,-0.7287851338163236],[121,-59,74,-0.7285246465562185],[121,-59,75,-0.7282666262454075],[121,-59,76,-0.7280110771717887],[121,-59,77,-0.7277580035249737],[121,-59,78,-0.727507409395866],[121,-59,79,-0.7272592987762326],[121,-58,64,-0.7313583305410299],[121,-58,65,-0.731075409982167],[121,-58,66,-0.7307949133626057],[121,-58,67,-0.7305168458417056],[121,-58,68,-0.7302412124843864],[121,-58,69,-0.729968018260709],[121,-58,70,-0.7296972680454406],[121,-58,71,-0.7294289666176259],[121,-58,72,-0.7291631186601547],[121,-58,73,-0.7288997287593464],[121,-58,74,-0.7286388014045028],[121,-58,75,-0.728380340987495],[121,-58,76,-0.7281243518023348],[121,-58,77,-0.7278708380447482],[121,-58,78,-0.7276198038117535],[121,-58,79,-0.7273712531012327],[121,-57,64,-0.7314770478279339],[121,-57,65,-0.7311936880964213],[121,-57,66,-0.7309127522361523],[121,-57,67,-0.7306342454125807],[121,-57,68,-0.7303581726967219],[121,-57,69,-0.7300845390647345],[121,-57,70,-0.729813349397485],[121,-57,71,-0.7295446084801187],[121,-57,72,-0.7292783210016279],[121,-57,73,-0.7290144915544351],[121,-57,74,-0.7287531246339466],[121,-57,75,-0.7284942246381392],[121,-57,76,-0.7282377958671306],[121,-57,77,-0.7279838425227542],[121,-57,78,-0.7277323687081358],[121,-57,79,-0.7274833784272661],[121,-56,64,-0.731595928359443],[121,-56,65,-0.7313121300029319],[121,-56,66,-0.7310307554479617],[121,-56,67,-0.7307518098660719],[121,-56,68,-0.7304752983343656],[121,-56,69,-0.7302012258350911],[121,-56,70,-0.7299295972552062],[121,-56,71,-0.7296604173859492],[121,-56,72,-0.7293936909224065],[121,-56,73,-0.7291294224630964],[121,-56,74,-0.7288676165095223],[121,-56,75,-0.7286082774657585],[121,-56,76,-0.7283514096380221],[121,-56,77,-0.728097017234246],[121,-56,78,-0.7278451043636565],[121,-56,79,-0.7275956750363449],[121,-55,64,-0.7317149723618296],[121,-55,65,-0.7314307359316025],[121,-55,66,-0.7311489232315502],[121,-55,67,-0.7308695394392897],[121,-55,68,-0.730592589638004],[121,-55,69,-0.7303180788160222],[121,-55,70,-0.7300460118663862],[121,-55,71,-0.7297763935864188],[121,-55,72,-0.729509228677293],[121,-55,73,-0.7292445217436149],[121,-55,74,-0.7289822772929773],[121,-55,75,-0.7287224997355449],[121,-55,76,-0.7284651933836261],[121,-55,77,-0.7282103624512463],[121,-55,78,-0.7279580110537246],[121,-55,79,-0.7277081432072464],[121,-54,64,-0.7318341800582193],[121,-54,65,-0.7315495061091868],[121,-54,66,-0.7312672558172812],[121,-54,67,-0.7309874343661892],[121,-54,68,-0.7307100468451646],[121,-54,69,-0.7304350982486103],[121,-54,70,-0.7301625934756428],[121,-54,71,-0.7298925373296624],[121,-54,72,-0.7296249345179207],[121,-54,73,-0.7293597896511035],[121,-54,74,-0.7290971072428852],[121,-54,75,-0.7288368917095135],[121,-54,76,-0.7285791473693805],[121,-54,77,-0.7283238784425962],[121,-54,78,-0.728071089050566],[121,-54,79,-0.7278207832155615],[121,-53,64,-0.7319535516685791],[121,-53,65,-0.7316684407592766],[121,-53,66,-0.7313857534323536],[121,-53,67,-0.7311054948775573],[121,-53,68,-0.7308276701902046],[121,-53,69,-0.7305522843707636],[121,-53,70,-0.7302793423244177],[121,-53,71,-0.7300088488606361],[121,-53,72,-0.7297408086927408],[121,-53,73,-0.7294752264374903],[121,-53,74,-0.7292121066146325],[121,-53,75,-0.7289514536464898],[121,-53,76,-0.7286932718575309],[121,-53,77,-0.7284375654739431],[121,-53,78,-0.7281843386232101],[121,-53,79,-0.7279335953336827],[121,-52,64,-0.7320730874097046],[121,-52,65,-0.7317875401022895],[121,-52,66,-0.7315044163007884],[121,-52,67,-0.7312237212010007],[121,-52,68,-0.7309454599042979],[121,-52,69,-0.7306696374172046],[121,-52,70,-0.7303962586509634],[121,-52,71,-0.7301253284211039],[121,-52,72,-0.729856851447011],[121,-52,73,-0.7295908323515069],[121,-52,74,-0.7293272756604061],[121,-52,75,-0.7290661858020977],[121,-52,76,-0.728807567107119],[121,-52,77,-0.7285514238077275],[121,-52,78,-0.7282977600374774],[121,-52,79,-0.7280465798307912],[121,-51,64,-0.7321927874952708],[121,-51,65,-0.7319068043555195],[121,-51,66,-0.7316232446434803],[121,-51,67,-0.7313421135609963],[121,-51,68,-0.7310634162154852],[121,-51,69,-0.73078715761952],[121,-51,70,-0.7305133426903938],[121,-51,71,-0.7302419762496886],[121,-51,72,-0.7299730630228438],[121,-51,73,-0.7297066076387383],[121,-51,74,-0.7294426146292436],[121,-51,75,-0.729181088428809],[121,-51,76,-0.7289220333740324],[121,-51,77,-0.7286654537032332],[121,-51,78,-0.7284113535560293],[121,-51,79,-0.7281597369729071],[121,-50,64,-0.732312652135813],[121,-50,65,-0.732026233733117],[121,-50,66,-0.7317422386781772],[121,-50,67,-0.7314606721788716],[121,-50,68,-0.7311815393486553],[121,-50,69,-0.7309048452061413],[121,-50,70,-0.7306305946746648],[121,-50,71,-0.7303587925818524],[121,-50,72,-0.7300894436591894],[121,-50,73,-0.7298225525416029],[121,-50,74,-0.7295581237670143],[121,-50,75,-0.7292961617759246],[121,-50,76,-0.7290366709109846],[121,-50,77,-0.7287796554165682],[121,-50,78,-0.7285251194383487],[121,-50,79,-0.7282730670228701],[121,-49,64,-0.7324326815387486],[121,-49,65,-0.7321458284461124],[121,-49,66,-0.7318613986195039],[121,-49,67,-0.7315793972728273],[121,-49,68,-0.731299829525567],[121,-49,69,-0.7310227004023675],[121,-49,70,-0.7307480148325972],[121,-49,71,-0.7304757776499189],[121,-49,72,-0.7302059935918559],[121,-49,73,-0.7299386672993754],[121,-49,74,-0.7296738033164407],[121,-49,75,-0.7294114060895961],[121,-49,76,-0.7291514799675377],[121,-49,77,-0.7288940292006861],[121,-49,78,-0.7286390579407627],[121,-49,79,-0.7283865702403605],[121,-48,64,-0.7325528759083587],[121,-48,65,-0.7322655887023956],[121,-48,66,-0.7319807246789415],[121,-48,67,-0.7316982890579182],[121,-48,68,-0.7314182869648302],[121,-48,69,-0.7311407234303448],[121,-48,70,-0.730865603389856],[121,-48,71,-0.7305929316830536],[121,-48,72,-0.7303227130534911],[121,-48,73,-0.7300549521481671],[121,-48,74,-0.7297896535170789],[121,-48,75,-0.7295268216128062],[121,-48,76,-0.7292664607900825],[121,-48,77,-0.729008575305367],[121,-48,78,-0.7287531693164215],[121,-48,79,-0.7285002468818806],[121,-47,64,-0.732673235445838],[121,-47,65,-0.7323855147067673],[121,-47,66,-0.7321002170648787],[121,-47,67,-0.7318173477461027],[121,-47,68,-0.7315369118819555],[121,-47,69,-0.7312589145091181],[121,-47,70,-0.7309833605690015],[121,-47,71,-0.7307102549073147],[121,-47,72,-0.730439602273632],[121,-47,73,-0.7301714073209762],[121,-47,74,-0.7299056746053696],[121,-47,75,-0.7296424085854196],[121,-47,76,-0.7293816136218888],[121,-47,77,-0.7291232939772676],[121,-47,78,-0.7288674538153499],[121,-47,79,-0.7286140972008045],[121,-46,64,-0.7327937603492825],[121,-46,65,-0.7325056066609263],[121,-46,66,-0.7322198759825993],[121,-46,67,-0.7319365735462317],[121,-46,68,-0.7316557044893423],[121,-46,69,-0.7313772738546178],[121,-46,70,-0.7311012865894772],[121,-46,71,-0.7308277475456397],[121,-46,72,-0.7305566614786931],[121,-46,73,-0.7302880330476749],[121,-46,74,-0.7300218668146248],[121,-46,75,-0.7297581672441695],[121,-46,76,-0.7294969387030927],[121,-46,77,-0.729238185459908],[121,-46,78,-0.7289819116844339],[121,-46,79,-0.7287281214473651],[121,-45,64,-0.7329144508136772],[121,-45,65,-0.7326258647634569],[121,-45,66,-0.7323397016342689],[121,-45,67,-0.7320559666640345],[121,-45,68,-0.7317746649962661],[121,-45,69,-0.7314958016796472],[121,-45,70,-0.731219381667596],[121,-45,71,-0.7309454098178338],[121,-45,72,-0.7306738908919528],[121,-45,73,-0.7304048295549969],[121,-45,74,-0.7301382303750151],[121,-45,75,-0.7298740978226452],[121,-45,76,-0.729612436270684],[121,-45,77,-0.7293532499936597],[121,-45,78,-0.7290965431674078],[121,-45,79,-0.7288423198686415],[121,-44,64,-0.7330353070309468],[121,-44,65,-0.7327462892098797],[121,-44,66,-0.7324596942189865],[121,-44,67,-0.7321755273021706],[121,-44,68,-0.7318937936089291],[121,-44,69,-0.7316144981939333],[121,-44,70,-0.7313376460165918],[121,-44,71,-0.7310632419406194],[121,-44,72,-0.730791290733604],[121,-44,73,-0.7305217970665878],[121,-44,74,-0.7302547655136205],[121,-44,75,-0.7299902005513426],[121,-44,76,-0.7297281065585556],[121,-44,77,-0.729468487815795],[121,-44,78,-0.7292113485049048],[121,-44,79,-0.7289566927086085],[121,-43,64,-0.7331563291899426],[121,-43,65,-0.7328668801926388],[121,-43,66,-0.7325798539327716],[121,-43,67,-0.7322952556602167],[121,-43,68,-0.7320130905304476],[121,-43,69,-0.7317333636041139],[121,-43,70,-0.7314560798466063],[121,-43,71,-0.731181244127624],[121,-43,72,-0.7309088612207421],[121,-43,73,-0.7306389358029926],[121,-43,74,-0.7303714724544172],[121,-43,75,-0.7301064756576511],[121,-43,76,-0.7298439497974922],[121,-43,77,-0.729583899160475],[121,-43,78,-0.7293263279344439],[121,-43,79,-0.7290712402081252],[121,-42,64,-0.7332775174764308],[121,-42,65,-0.7329876379010897],[121,-42,66,-0.7327001809685509],[121,-42,67,-0.732415151934654],[121,-42,68,-0.7321325559608387],[121,-42,69,-0.7318523981137249],[121,-42,70,-0.731574683364676],[121,-42,71,-0.7312994165893669],[121,-42,72,-0.7310266025673513],[121,-42,73,-0.7307562459816421],[121,-42,74,-0.730488351418265],[121,-42,75,-0.7302229233658407],[121,-42,76,-0.7299599662151562],[121,-42,77,-0.7296994842587358],[121,-42,78,-0.729441481690417],[121,-42,79,-0.7291859626049205],[121,-41,64,-0.7333988720731425],[121,-41,65,-0.7331085625215494],[121,-41,66,-0.7328206755162102],[121,-41,67,-0.7325352163189186],[121,-41,68,-0.7322521900970722],[121,-41,69,-0.7319716019232514],[121,-41,70,-0.7316934567747837],[121,-41,71,-0.7314177595333108],[121,-41,72,-0.7311445149843558],[121,-41,73,-0.7308737278169046],[121,-41,74,-0.7306054026229576],[121,-41,75,-0.7303395438971134],[121,-41,76,-0.7300761560361385],[121,-41,77,-0.7298152433385401],[121,-41,78,-0.7295568100041395],[121,-41,79,-0.7293008601336444],[121,-40,64,-0.7335203931597545],[121,-40,65,-0.7332296542372772],[121,-40,66,-0.7329413377625736],[121,-40,67,-0.7326554490033825],[121,-40,68,-0.7323719931330496],[121,-40,69,-0.7320909752301072],[121,-40,70,-0.7318124002778376],[121,-40,71,-0.7315362731638404],[121,-40,72,-0.7312625986795996],[121,-40,73,-0.7309913815200648],[121,-40,74,-0.730722626283203],[121,-40,75,-0.7304563374695815],[121,-40,76,-0.7301925194819389],[121,-40,77,-0.7299311766247557],[121,-40,78,-0.7296723131038301],[121,-40,79,-0.7294159330258474],[121,-39,64,-0.7336420809129119],[121,-39,65,-0.7333509132284972],[121,-39,66,-0.733062167891427],[121,-39,67,-0.7327758501753754],[121,-39,68,-0.7324919652596275],[121,-39,69,-0.732210518228658],[121,-39,70,-0.7319315140716947],[121,-39,71,-0.7316549576822864],[121,-39,72,-0.7313808538578691],[121,-39,73,-0.7311092072993473],[121,-39,74,-0.7308400226106455],[121,-39,75,-0.7305733042982918],[121,-39,76,-0.7303090567709877],[121,-39,77,-0.7300472843391793],[121,-39,78,-0.7297879912146326],[121,-39,79,-0.7295311815100034],[121,-38,64,-0.733763935506208],[121,-38,65,-0.7334723396723783],[121,-38,66,-0.7331831660834973],[121,-38,67,-0.7328964200191653],[121,-38,68,-0.7326121066645972],[121,-38,69,-0.7323302311102007],[121,-38,70,-0.7320507983511403],[121,-38,71,-0.7317738132869047],[121,-38,72,-0.7314992807208729],[121,-38,73,-0.7312272053598954],[121,-38,74,-0.7309575918138459],[121,-38,75,-0.7306904445952043],[121,-38,76,-0.7304257681186263],[121,-38,77,-0.7301635667005153],[121,-38,78,-0.7299038445585969],[121,-38,79,-0.7296466058114888],[121,-37,64,-0.7338859571102356],[121,-37,65,-0.7335939337430852],[121,-37,66,-0.7333043325165042],[121,-37,67,-0.7330171587160093],[121,-37,68,-0.7327324175327355],[121,-37,69,-0.7324501140630149],[121,-37,70,-0.732170253307939],[121,-37,71,-0.7318928401729272],[121,-37,72,-0.7316178794672928],[121,-37,73,-0.7313453759038233],[121,-37,74,-0.7310753340983323],[121,-37,75,-0.7308077585692431],[121,-37,76,-0.7305426537371573],[121,-37,77,-0.7302800239244269],[121,-37,78,-0.7300198733547285],[121,-37,79,-0.7297622061526334],[121,-36,64,-0.7340081458925741],[121,-36,65,-0.7337156956117661],[121,-36,66,-0.7334256673651469],[121,-36,67,-0.7331380664441405],[121,-36,68,-0.7328528980457927],[121,-36,69,-0.7325701672723498],[121,-36,70,-0.7322898791308218],[121,-36,71,-0.7320120385325495],[121,-36,72,-0.7317366502927707],[121,-36,73,-0.7314637191302016],[121,-36,74,-0.7311932496665867],[121,-36,75,-0.730925246426284],[121,-36,76,-0.7306597138358322],[121,-36,77,-0.7303966562235229],[121,-36,78,-0.7301360778189759],[121,-36,79,-0.7298779827527077],[121,-35,64,-0.7341305020177765],[121,-35,65,-0.7338376254465386],[121,-35,66,-0.7335471708010912],[121,-35,67,-0.7332591433787554],[121,-35,68,-0.7329735483824784],[121,-35,69,-0.7326903909204113],[121,-35,70,-0.7324096760054729],[121,-35,71,-0.7321314085549164],[121,-35,72,-0.7318555933898956],[121,-35,73,-0.7315822352350451],[121,-35,74,-0.7313113387180324],[121,-35,75,-0.7310429083691405],[121,-35,76,-0.7307769486208369],[121,-35,77,-0.7305134638073445],[121,-35,78,-0.7302524581642172],[121,-35,79,-0.7299939358279083],[121,-34,64,-0.7342530256474209],[121,-34,65,-0.7339597234125426],[121,-34,66,-0.7336688429930209],[121,-34,67,-0.733380389692065],[121,-34,68,-0.7330943687185133],[121,-34,69,-0.7328107851864127],[121,-34,70,-0.7325296441145812],[121,-34,71,-0.7322509504261749],[121,-34,72,-0.7319747089482541],[121,-34,73,-0.7317009244113637],[121,-34,74,-0.7314296014490842],[121,-34,75,-0.7311607445976154],[121,-34,76,-0.7308943582953439],[121,-34,77,-0.7306304468824162],[121,-34,78,-0.730369014600311],[121,-34,79,-0.7301100655914106],[121,-33,64,-0.7343757169400902],[121,-33,65,-0.7340819896719183],[121,-33,66,-0.7337906841066174],[121,-33,67,-0.733501805553274],[121,-33,68,-0.733215359226609],[121,-33,69,-0.7329313502465549],[121,-33,70,-0.7326497836378194],[121,-33,71,-0.7323706643294524],[121,-33,72,-0.7320939971544114],[121,-33,73,-0.7318197868491417],[121,-33,74,-0.7315480380531288],[121,-33,75,-0.7312787553084794],[121,-33,76,-0.7310119430594917],[121,-33,77,-0.7307476056522252],[121,-33,78,-0.7304857473340762],[121,-33,79,-0.7302263722533464],[121,-32,64,-0.7344985760513947],[121,-32,65,-0.7342044243838306],[121,-32,66,-0.7339126943045824],[121,-32,67,-0.7336233911286048],[121,-32,68,-0.7333365200764905],[121,-32,69,-0.7330520862740487],[121,-32,70,-0.7327700947518672],[121,-32,71,-0.7324905504448799],[121,-32,72,-0.732213458191932],[121,-32,73,-0.7319388227353611],[121,-32,74,-0.7316666487205471],[121,-32,75,-0.7313969406954954],[121,-32,76,-0.7311297031104063],[121,-32,77,-0.7308649403172442],[121,-32,78,-0.7306026565693138],[121,-32,79,-0.7303428560208282],[121,-31,64,-0.7346216031339525],[121,-31,65,-0.7343270277044476],[121,-31,66,-0.7340348737466178],[121,-31,67,-0.7337451465812757],[121,-31,68,-0.7334578514348762],[121,-31,69,-0.7331729934390949],[121,-31,70,-0.7328905776303904],[121,-31,71,-0.7326106089495712],[121,-31,72,-0.7323330922413612],[121,-31,73,-0.7320580322539798],[121,-31,74,-0.7317854336386931],[121,-31,75,-0.731515300949396],[121,-31,76,-0.7312476386421815],[121,-31,77,-0.7309824510749104],[121,-31,78,-0.7307197425067871],[121,-31,79,-0.7304595170979267],[121,-30,64,-0.73474479833744],[121,-30,65,-0.734449799786993],[121,-30,66,-0.7341572225894772],[121,-30,67,-0.7338670720715532],[121,-30,68,-0.7335793534655284],[121,-30,69,-0.733294071908935],[121,-30,70,-0.7330112324440927],[121,-30,71,-0.7327308400176751],[121,-30,72,-0.7324528994802748],[121,-30,73,-0.7321774155859843],[121,-30,74,-0.7319043929919463],[121,-30,75,-0.731633836257936],[121,-30,76,-0.7313657498459302],[121,-30,77,-0.7311001381196772],[121,-30,78,-0.7308370053442718],[121,-30,79,-0.730576355685723],[121,-29,64,-0.7348681618085798],[121,-29,65,-0.7345727407817324],[121,-29,66,-0.7342797409869526],[121,-29,67,-0.7339891677567387],[121,-29,68,-0.7337010263292412],[121,-29,69,-0.7334153218478388],[121,-29,70,-0.7331320593607025],[121,-29,71,-0.7328512438203609],[121,-29,72,-0.7325728800832667],[121,-29,73,-0.7322969729093753],[121,-29,74,-0.7320235269616973],[121,-29,75,-0.7317525468058784],[121,-29,76,-0.7314840369097704],[121,-29,77,-0.7312180016430001],[121,-29,78,-0.7309544452765435],[121,-29,79,-0.7306933719822954],[121,-28,64,-0.7349916936911268],[121,-28,65,-0.7346958508359598],[121,-28,66,-0.7344024290898605],[121,-28,67,-0.7341114337911552],[121,-28,68,-0.7338228701838263],[121,-28,69,-0.7335367434170901],[121,-28,70,-0.7332530585449584],[121,-28,71,-0.732971820525806],[121,-28,72,-0.7326930342219351],[121,-28,73,-0.7324167043991552],[121,-28,74,-0.7321428357263345],[121,-28,75,-0.7318714327749811],[121,-28,76,-0.731602500018812],[121,-28,77,-0.7313360418333232],[121,-28,78,-0.7310720624953639],[121,-28,79,-0.7308105661827047],[121,-27,64,-0.7351153941259201],[121,-27,65,-0.7348191300940501],[121,-27,66,-0.7345252870460949],[121,-27,67,-0.7342338703261984],[121,-27,68,-0.7339448851841653],[121,-27,69,-0.7336583367750389],[121,-27,70,-0.7333742301586625],[121,-27,71,-0.7330925702992468],[121,-27,72,-0.7328133620649341],[121,-27,73,-0.7325366102273784],[121,-27,74,-0.7322623194612964],[121,-27,75,-0.7319904943440485],[121,-27,76,-0.7317211393552081],[121,-27,77,-0.7314542588761316],[121,-27,78,-0.7311898571895317],[121,-27,79,-0.7309279384790465],[121,-26,64,-0.7352392632508625],[121,-26,65,-0.734942578697438],[121,-26,66,-0.7346483150006057],[121,-26,67,-0.7343564775103169],[121,-26,68,-0.7340670714821886],[121,-26,69,-0.7337801020770807],[121,-26,70,-0.7334955743606585],[121,-26,71,-0.7332134933029583],[121,-26,72,-0.732933863777953],[121,-26,73,-0.7326566905631315],[121,-26,74,-0.7323819783390494],[121,-26,75,-0.7321097316889101],[121,-26,76,-0.7318399550981344],[121,-26,77,-0.731572652953929],[121,-26,78,-0.7313078295448618],[121,-26,79,-0.7310454890604293],[121,-25,64,-0.7353633012009434],[121,-25,65,-0.7350661967846409],[121,-25,66,-0.7347715130954218],[121,-25,67,-0.7344792554890346],[121,-25,68,-0.7341894292268981],[121,-25,69,-0.7339020394756792],[121,-25,70,-0.7336170913068545],[121,-25,71,-0.7333345896962765],[121,-25,72,-0.733054539523739],[121,-25,73,-0.7327769455725558],[121,-25,74,-0.7325018125291117],[121,-25,75,-0.7322291449824441],[121,-25,76,-0.7319589474238112],[121,-25,77,-0.7316912242462617],[121,-25,78,-0.7314259797442088],[121,-25,79,-0.7311632181129984],[121,-24,64,-0.7354875081082182],[121,-24,65,-0.7351899844912382],[121,-24,66,-0.7348948814696304],[121,-24,67,-0.7346022044049298],[121,-24,68,-0.734311958564347],[121,-24,69,-0.7340241491203453],[121,-24,70,-0.7337387811502027],[121,-24,71,-0.7334558596355784],[121,-24,72,-0.7331753894620763],[121,-24,73,-0.7328973754188259],[121,-24,74,-0.7326218221980318],[121,-24,75,-0.7323487343945554],[121,-24,76,-0.7320781165054832],[121,-24,77,-0.7318099729296962],[121,-24,78,-0.7315443079674442],[121,-24,79,-0.7312811258199134],[121,-23,64,-0.7356118841018597],[121,-23,65,-0.7353139419499235],[121,-23,66,-0.7350184202594291],[121,-23,67,-0.7347253243976876],[121,-23,68,-0.734434659637691],[121,-23,69,-0.7341464311576891],[121,-23,70,-0.7338606440407512],[121,-23,71,-0.7335773032743325],[121,-23,72,-0.7332964137498377],[121,-23,73,-0.7330179802622021],[121,-23,74,-0.7327420075094403],[121,-23,75,-0.7324685000922281],[121,-23,76,-0.7321974625134706],[121,-23,77,-0.7319288991778723],[121,-23,78,-0.7316628143915099],[121,-23,79,-0.731399212361401],[121,-22,64,-0.7357364293081459],[121,-22,65,-0.7354380692904907],[121,-22,66,-0.7351421295981118],[121,-22,67,-0.7348486156040858],[121,-22,68,-0.7345575325871754],[121,-22,69,-0.7342688857314066],[121,-22,70,-0.7339826801256297],[121,-22,71,-0.733698920763086],[121,-22,72,-0.7334176125409714],[121,-22,73,-0.7331387602600163],[121,-22,74,-0.7328623686240361],[121,-22,75,-0.732588442239511],[121,-22,76,-0.7323169856151558],[121,-22,77,-0.7320480031614882],[121,-22,78,-0.7317814991904033],[121,-22,79,-0.7315174779147402],[121,-21,64,-0.735861143850445],[121,-21,65,-0.7355623666398211],[121,-21,66,-0.7352660096160559],[121,-21,67,-0.7349720781579815],[121,-21,68,-0.7346805775501208],[121,-21,69,-0.7343915129822655],[121,-21,70,-0.7341048895490365],[121,-21,71,-0.7338207122494513],[121,-21,72,-0.7335389859864865],[121,-21,73,-0.7332597155666585],[121,-21,74,-0.7329829056995726],[121,-21,75,-0.7327085609975046],[121,-21,76,-0.7324366859749687],[121,-21,77,-0.7321672850482872],[121,-21,78,-0.7319003625351632],[121,-21,79,-0.7316359226542488],[121,-20,64,-0.7359860278492686],[121,-20,65,-0.7356868341219346],[121,-20,66,-0.7353900604407742],[121,-20,67,-0.7350957121903634],[121,-20,68,-0.7348037946609757],[121,-20,69,-0.7345143130481574],[121,-20,70,-0.7342272724522905],[121,-20,71,-0.7339426778781575],[121,-20,72,-0.733660534234506],[121,-20,73,-0.7333808463336282],[121,-20,74,-0.7331036188909099],[121,-20,75,-0.7328288565244123],[121,-20,76,-0.7325565637544399],[121,-20,77,-0.7322867450031092],[121,-20,78,-0.7320194045939225],[121,-20,79,-0.7317545467513354],[121,-19,64,-0.73611108142225],[121,-19,65,-0.7358114718579692],[121,-19,66,-0.735514282196893],[121,-19,67,-0.7352195178293307],[121,-19,68,-0.734927184051295],[121,-19,69,-0.7346372860640772],[121,-19,70,-0.7343498289738091],[121,-19,71,-0.7340648177910288],[121,-19,72,-0.7337822574302446],[121,-19,73,-0.7335021527095139],[121,-19,74,-0.7332245083499935],[121,-19,75,-0.7329493289755201],[121,-19,76,-0.7326766191121782],[121,-19,77,-0.7324063831878697],[121,-19,78,-0.7321386255318862],[121,-19,79,-0.7318733503744779],[121,-18,64,-0.736236304684168],[121,-18,65,-0.7359362799662046],[121,-18,66,-0.7356386750061763],[121,-18,67,-0.7353434952001157],[121,-18,68,-0.7350507458497635],[121,-18,69,-0.7347604321621453],[121,-18,70,-0.7344725592491328],[121,-18,71,-0.7341871321270088],[121,-18,72,-0.7339041557160321],[121,-18,73,-0.7336236348400156],[121,-18,74,-0.7333455742258768],[121,-18,75,-0.7330699785032178],[121,-18,76,-0.732796852203894],[121,-18,77,-0.7325261997615823],[121,-18,78,-0.7322580255113548],[121,-18,79,-0.7319923336892458],[121,-17,64,-0.7363616977469253],[121,-17,65,-0.7360612585620401],[121,-17,66,-0.7357632389875043],[121,-17,67,-0.7354676444250627],[121,-17,68,-0.735174480182174],[121,-17,69,-0.7348837514715869],[121,-17,70,-0.7345954634109024],[121,-17,71,-0.734309621022138],[121,-17,72,-0.7340262292312922],[121,-17,73,-0.7337452928679236],[121,-17,74,-0.7334668166646999],[121,-17,75,-0.7331908052569794],[121,-17,76,-0.7329172631823777],[121,-17,77,-0.7326461948803376],[121,-17,78,-0.7323776046917015],[121,-17,79,-0.7321114968582793],[121,-16,64,-0.7364872607196008],[121,-16,65,-0.7361864077580472],[121,-16,66,-0.7358879742569255],[121,-16,67,-0.7355919656236813],[121,-16,68,-0.7352983871714802],[121,-16,69,-0.7350072441187842],[121,-16,70,-0.7347185415889123],[121,-16,71,-0.7344322846096062],[121,-16,72,-0.7341484781125943],[121,-16,73,-0.7338671269331702],[121,-16,74,-0.7335882358097421],[121,-16,75,-0.7333118093834138],[121,-16,76,-0.7330378521975518],[121,-16,77,-0.7327663686973549],[121,-16,78,-0.732497363229426],[121,-16,79,-0.7322308400413409],[121,-15,64,-0.7366129937084364],[121,-15,65,-0.7363117276639566],[121,-15,66,-0.7360128809276427],[121,-15,67,-0.735716458912631],[121,-15,68,-0.7354224669377828],[121,-15,69,-0.735130910227262],[121,-15,70,-0.7348417939100956],[121,-15,71,-0.7345551230197391],[121,-15,72,-0.73427090249364],[121,-15,73,-0.7339891371728166],[121,-15,74,-0.7337098318014074],[121,-15,75,-0.7334329910262517],[121,-15,76,-0.7331586193964571],[121,-15,77,-0.7328867213629682],[121,-15,78,-0.7326173012781392],[121,-15,79,-0.7323503633953016],[121,-14,64,-0.7367388968168225],[121,-14,65,-0.736437218386643],[121,-14,66,-0.7361379591100001],[121,-14,67,-0.7358411244057085],[121,-14,68,-0.7355467195983149],[121,-14,69,-0.7352547499176745],[121,-14,70,-0.7349652204985113],[121,-14,71,-0.734678136379984],[121,-14,72,-0.7343935025052486],[121,-14,73,-0.7341113237210379],[121,-14,74,-0.7338316047772105],[121,-14,75,-0.7335543503263312],[121,-14,76,-0.7332795649232382],[121,-14,77,-0.7330072530246123],[121,-14,78,-0.732737418988549],[121,-14,79,-0.7324700670741264],[121,-13,64,-0.736864970145351],[121,-13,65,-0.7365628800301791],[121,-13,66,-0.7362632089115343],[121,-13,67,-0.7359659622138994],[121,-13,68,-0.7356711452674952],[121,-13,69,-0.7353787633078572],[121,-13,70,-0.7350888214753959],[121,-13,71,-0.7348013248149619],[121,-13,72,-0.7345162782754098],[121,-13,73,-0.7342336867091763],[121,-13,74,-0.7339535548718296],[121,-13,75,-0.7336758874216497],[121,-13,76,-0.7334006889191957],[121,-13,77,-0.7331279638268746],[121,-13,78,-0.7328577165085136],[121,-13,79,-0.7325899512289269],[121,-12,64,-0.7369912137918013],[121,-12,65,-0.7366887126958204],[121,-12,66,-0.7363886304369618],[121,-12,67,-0.7360909724453649],[121,-12,68,-0.7357957440569138],[121,-12,69,-0.7355029505128132],[121,-12,70,-0.7352125969591491],[121,-12,71,-0.7349246884464538],[121,-12,72,-0.7346392299292693],[121,-12,73,-0.734356226265726],[121,-12,74,-0.7340756822170914],[121,-12,75,-0.7337976024473505],[121,-12,76,-0.7335219915227729],[121,-12,77,-0.7332488539114818],[121,-12,78,-0.7329781939830258],[121,-12,79,-0.7327100160079464],[121,-11,64,-0.7371176278511263],[121,-11,65,-0.7368147164819919],[121,-11,66,-0.736514223788164],[121,-11,67,-0.7362161552054274],[121,-11,68,-0.7359205160753179],[121,-11,69,-0.735627311644699],[121,-11,70,-0.7353365470653207],[121,-11,71,-0.7350482273933865],[121,-11,72,-0.7347623575891152],[121,-11,73,-0.7344789425163203],[121,-11,74,-0.7341979869419578],[121,-11,75,-0.7339194955357077],[121,-11,76,-0.73364347286954],[121,-11,77,-0.7333699234172839],[121,-11,78,-0.7330988515541997],[121,-11,79,-0.732830261556546],[121,-10,64,-0.7372442124155051],[121,-10,65,-0.7369408914843409],[121,-10,66,-0.7366399890642407],[121,-10,67,-0.7363415105966231],[121,-10,68,-0.7360454614286651],[121,-10,69,-0.7357518468128768],[121,-10,70,-0.7354606719066623],[121,-10,71,-0.735171941771885],[121,-10,72,-0.7348856613744299],[121,-10,73,-0.7346018355837827],[121,-10,74,-0.7343204691725779],[121,-10,75,-0.7340415668161795],[121,-10,76,-0.7337651330922481],[121,-10,77,-0.7334911724803085],[121,-10,78,-0.7332196893613229],[121,-10,79,-0.7329506880172569],[121,-9,64,-0.7373709675743214],[121,-9,65,-0.737067237795715],[121,-9,66,-0.7367659263614876],[121,-9,67,-0.7364670387186807],[121,-9,68,-0.7361705802201005],[121,-9,69,-0.7358765561238934],[121,-9,70,-0.7355849715931063],[121,-9,71,-0.7352958316952513],[121,-9,72,-0.7350091414018688],[121,-9,73,-0.7347249055881062],[121,-9,74,-0.7344431290322659],[121,-9,75,-0.7341638164153859],[121,-9,76,-0.7338869723208062],[121,-9,77,-0.733612601233738],[121,-9,78,-0.7333407075408345],[121,-9,79,-0.7330712955297587],[121,-8,64,-0.7374978934141871],[121,-8,65,-0.7371937555061855],[121,-8,66,-0.7368920357734202],[121,-8,67,-0.736592739668544],[121,-8,68,-0.7362958725499813],[121,-8,69,-0.7360014396815032],[121,-8,70,-0.7357094462317882],[121,-8,71,-0.7354198972739865],[121,-8,72,-0.7351327977852831],[121,-8,73,-0.7348481526464761],[121,-8,74,-0.7345659666415252],[121,-8,75,-0.7342862444571316],[121,-8,76,-0.7340089906823053],[121,-8,77,-0.7337342098079322],[121,-8,78,-0.7334619062263478],[121,-8,79,-0.7331920842309019],[121,-7,64,-0.7376249900189205],[121,-7,65,-0.737320444703026],[121,-7,66,-0.7370183173907521],[121,-7,67,-0.7367186135403511],[121,-7,68,-0.7364213385158541],[121,-7,69,-0.7361264975866462],[121,-7,70,-0.7358340959270258],[121,-7,71,-0.7355441386157702],[121,-7,72,-0.735256630635698],[121,-7,73,-0.7349715768732477],[121,-7,74,-0.7346889821180251],[121,-7,75,-0.7344088510623847],[121,-7,76,-0.734131188300995],[121,-7,77,-0.7338559983304076],[121,-7,78,-0.7335832855486288],[121,-7,79,-0.733313054254686],[121,-6,64,-0.7377522574695987],[121,-6,65,-0.737447305470765],[121,-6,66,-0.7371447713014472],[121,-6,67,-0.7368446604254861],[121,-6,68,-0.7365469782125081],[121,-6,69,-0.7362517299375004],[121,-6,70,-0.7359589207803707],[121,-6,71,-0.7356685558255119],[121,-6,72,-0.7353806400613657],[121,-6,73,-0.7350951783799994],[121,-6,74,-0.7348121755766548],[121,-6,75,-0.7345316363493285],[121,-6,76,-0.7342535652983376],[121,-6,77,-0.7339779669258887],[121,-6,78,-0.7337048456356486],[121,-6,79,-0.7334342057323124],[121,-5,64,-0.737879695844544],[121,-5,65,-0.7375743378911713],[121,-5,66,-0.7372713975907063],[121,-5,67,-0.7369708804125661],[121,-5,68,-0.7366727917319611],[121,-5,69,-0.736377136829469],[121,-5,70,-0.7360839208905954],[121,-5,71,-0.7357931490053384],[121,-5,72,-0.7355048261677508],[121,-5,73,-0.7352189572755184],[121,-5,74,-0.734935547129508],[121,-5,75,-0.7346546004333476],[121,-5,76,-0.7343761217929927],[121,-5,77,-0.7341001157162936],[121,-5,78,-0.7338265866125686],[121,-5,79,-0.7335555387921692],[121,-4,64,-0.7380073052193101],[121,-4,65,-0.7377015420432412],[121,-4,66,-0.7373981963409524],[121,-4,67,-0.7370972735874259],[121,-4,68,-0.7367987791634443],[121,-4,69,-0.7365027183551642],[121,-4,70,-0.7362090963536783],[121,-4,71,-0.7359179182545776],[121,-4,72,-0.735629189057516],[121,-4,73,-0.7353429136657861],[121,-4,74,-0.7350590968858691],[121,-4,75,-0.7347777434270137],[121,-4,76,-0.7344988579008028],[121,-4,77,-0.734222444820721],[121,-4,78,-0.7339485086017263],[121,-4,79,-0.7336770535598173],[121,-3,64,-0.7381350856667339],[121,-3,65,-0.7378289180032498],[121,-3,66,-0.7375251676318839],[121,-3,67,-0.7372238400331718],[121,-3,68,-0.7369249405934559],[121,-3,69,-0.7366284746044616],[121,-3,70,-0.7363344472628559],[121,-3,71,-0.7360428636698126],[121,-3,72,-0.7357537288305744],[121,-3,73,-0.7354670476540306],[121,-3,74,-0.7351828249522655],[121,-3,75,-0.7349010654401378],[121,-3,76,-0.7346217737348468],[121,-3,77,-0.7343449543555008],[121,-3,78,-0.7340706117226878],[121,-3,79,-0.7337987501580427],[121,-2,64,-0.7382630372569147],[121,-2,65,-0.7379564658447301],[121,-2,66,-0.7376523115404525],[121,-2,67,-0.7373505798301585],[121,-2,68,-0.7370512761057397],[121,-2,69,-0.7367544056644773],[121,-2,70,-0.7364599737086022],[121,-2,71,-0.7361679853448592],[121,-2,72,-0.7358784455840687],[121,-2,73,-0.7355913593407055],[121,-2,74,-0.7353067314324458],[121,-2,75,-0.7350245665797479],[121,-2,76,-0.7347448694054168],[121,-2,77,-0.7344676444341737],[121,-2,78,-0.734192896092226],[121,-2,79,-0.7339206287068346],[121,-1,64,-0.738391160057237],[121,-1,65,-0.7380841856384963],[121,-1,66,-0.7377796281408864],[121,-1,67,-0.7374774930560137],[121,-1,68,-0.7371777857813069],[121,-1,69,-0.7368805116195916],[121,-1,70,-0.7365856757786511],[121,-1,71,-0.7362932833707889],[121,-1,72,-0.736003339412393],[121,-1,73,-0.7357158488235119],[121,-1,74,-0.7354308164274033],[121,-1,75,-0.7351482469501132],[121,-1,76,-0.734868145020042],[121,-1,77,-0.7345905151675132],[121,-1,78,-0.734315361824343],[121,-1,79,-0.7340426893234079],[121,0,64,-0.7385194541323494],[121,0,65,-0.7382120774526213],[121,0,66,-0.7379071175046688],[121,0,67,-0.7376045797856157],[121,0,68,-0.7373044696984155],[121,0,69,-0.7370067925514271],[121,0,70,-0.7367115535579738],[121,0,71,-0.7364187578359077],[121,0,72,-0.7361284104071719],[121,0,73,-0.7358405161973777],[121,0,74,-0.7355550800353527],[121,0,75,-0.7352721066527205],[121,0,76,-0.734991600683466],[121,0,77,-0.7347135666635035],[121,0,78,-0.734438009030248],[121,0,79,-0.7341649321221811],[121,1,64,-0.7386479195442162],[121,1,65,-0.7383401413524904],[121,1,66,-0.7380347797005905],[121,1,67,-0.7377318400911456],[121,1,68,-0.7374313279326223],[121,1,69,-0.7371332485389008],[121,1,70,-0.7368376071288331],[121,1,71,-0.7365444088258079],[121,1,72,-0.7362536586573121],[121,1,73,-0.7359653615545086],[121,1,74,-0.7356795223517841],[121,1,75,-0.7353961457863283],[121,1,76,-0.7351152364976994],[121,1,77,-0.7348367990273927],[121,1,78,-0.7345608378184108],[121,1,79,-0.7342873572148297],[121,2,64,-0.7387765563521043],[121,2,65,-0.7384683774007867],[121,2,66,-0.7381626147947359],[121,2,67,-0.737859274042074],[121,2,68,-0.7375583605567693],[121,2,69,-0.7372598796582108],[121,2,70,-0.7369638365707679],[121,2,71,-0.7366702364233542],[121,2,72,-0.7363790842489889],[121,2,73,-0.7360903849843755],[121,2,74,-0.735804143469448],[121,2,75,-0.7355203644469513],[121,2,76,-0.7352390525620064],[121,2,77,-0.734960212361678],[121,2,78,-0.7346838482945458],[121,2,79,-0.7344099647102703],[121,3,64,-0.7389053646125686],[121,3,65,-0.7385967856574767],[121,3,66,-0.7382906228504681],[121,3,67,-0.737986881705146],[121,3,68,-0.7376855676409682],[121,3,69,-0.737386685982821],[121,3,70,-0.737090241960579],[121,3,71,-0.736796240708669],[121,3,72,-0.7365046872656316],[121,3,73,-0.7362155865736985],[121,3,74,-0.7359289434783404],[121,3,75,-0.7356447627278463],[121,3,76,-0.7353630489728884],[121,3,77,-0.7350838067660908],[121,3,78,-0.7348070405615988],[121,3,79,-0.7345327547146469],[121,4,64,-0.739034344379505],[121,4,65,-0.7387253661798631],[121,4,66,-0.7384188039284822],[121,4,67,-0.7381146631444345],[121,4,68,-0.7378129492526546],[121,4,69,-0.7375136675835144],[121,4,70,-0.7372168233723823],[121,4,71,-0.7369224217591859],[121,4,72,-0.7366304677879756],[121,4,73,-0.7363409664065004],[121,4,74,-0.7360539224657563],[121,4,75,-0.7357693407195646],[121,4,76,-0.7354872258241384],[121,4,77,-0.7352075823376494],[121,4,78,-0.7349304147197986],[121,4,79,-0.734655727331383],[121,5,64,-0.7391634957041282],[121,5,65,-0.7388541190225636],[121,5,66,-0.738547158086784],[121,5,67,-0.7382426184213179],[121,5,68,-0.7379405054565653],[121,5,69,-0.7376408245283714],[121,5,70,-0.7373435808775859],[121,5,71,-0.7370487796496266],[121,5,72,-0.7367564258940412],[121,5,73,-0.7364665245640849],[121,5,74,-0.7361790805162669],[121,5,75,-0.7358940985099305],[121,5,76,-0.7356115832068179],[121,5,77,-0.7353315391706374],[121,5,78,-0.7350539708666353],[121,5,79,-0.73477888266116],[121,6,64,-0.7392928186349956],[121,6,65,-0.7389830442375334],[121,6,66,-0.7386756853807117],[121,6,67,-0.7383707475945036],[121,6,68,-0.7380682363147615],[121,6,69,-0.7377681568827921],[121,6,70,-0.7374705145449146],[121,6,71,-0.7371753144520248],[121,6,72,-0.7368825616591564],[121,6,73,-0.7365922611250587],[121,6,74,-0.7363044177117434],[121,6,75,-0.7360190361840637],[121,6,76,-0.7357361212092799],[121,6,77,-0.7354556773566265],[121,6,78,-0.735177709096883],[121,6,79,-0.7349022208019393],[121,7,64,-0.7394223132179845],[121,7,65,-0.7391121418740433],[121,7,66,-0.7388043858629152],[121,7,67,-0.7384990507200053],[121,7,68,-0.7381961418866066],[121,7,69,-0.7378956647094748],[121,7,70,-0.7375976244403865],[121,7,71,-0.7373020262357035],[121,7,72,-0.7370088751559343],[121,7,73,-0.73671817616531],[121,7,74,-0.7364299341313335],[121,7,75,-0.7361441538243567],[121,7,76,-0.7358608399171469],[121,7,77,-0.735579996984453],[121,7,78,-0.7353016295025774],[121,7,79,-0.7350257418489405],[121,8,64,-0.7395519794963455],[121,8,65,-0.7392414119787329],[121,8,66,-0.7389332595834086],[121,8,67,-0.7386275278511971],[121,8,68,-0.7383242222288195],[121,8,69,-0.7380233480684686],[121,8,70,-0.7377249106273663],[121,8,71,-0.7374289150673285],[121,8,72,-0.737135366454326],[121,8,73,-0.7368442697580612],[121,8,74,-0.7365556298515157],[121,8,75,-0.7362694515105288],[121,8,76,-0.7359857394133635],[121,8,77,-0.7357044981402724],[121,8,78,-0.7354257321730692],[121,8,79,-0.7351494458946939],[121,9,64,-0.7396818175106888],[121,9,65,-0.7393708545955967],[121,9,66,-0.739062306589556],[121,9,67,-0.738756179038798],[121,9,68,-0.7384524773954602],[121,9,69,-0.7381512070171593],[121,9,70,-0.7378523731665512],[121,9,71,-0.7375559810108934],[121,9,72,-0.7372620356216072],[121,9,73,-0.7369705419738543],[121,9,74,-0.7366815049460836],[121,9,75,-0.7363949293196106],[121,9,76,-0.7361108197781822],[121,9,77,-0.7358291809075432],[121,9,78,-0.7355500171950083],[121,9,79,-0.7352733330290255],[121,10,64,-0.7398118272989685],[121,10,65,-0.7395004697659682],[121,10,66,-0.739191526926056],[121,10,67,-0.7388850043308579],[121,10,68,-0.7385809074379144],[121,10,69,-0.7382792416102547],[121,10,70,-0.7379800121159555],[121,10,71,-0.7376832241277046],[121,10,72,-0.7373888827223617],[121,10,73,-0.7370969928805358],[121,10,74,-0.7368075594861317],[121,10,75,-0.7365205873259292],[121,10,76,-0.7362360810891476],[121,10,77,-0.7359540453670133],[121,10,78,-0.7356744846523299],[121,10,79,-0.7353974033390432],[121,11,64,-0.7399420088965366],[121,11,65,-0.7396302575285743],[121,11,66,-0.7393209206349964],[121,11,67,-0.7390140037728105],[121,11,68,-0.7387095124049476],[121,11,69,-0.7384074518998371],[121,11,70,-0.7381078275309647],[121,11,71,-0.7378106444764354],[121,11,72,-0.7375159078185359],[121,11,73,-0.7372236225433105],[121,11,74,-0.7369337935401082],[121,11,75,-0.7366464256011612],[121,11,76,-0.7363615234211504],[121,11,77,-0.7360790915967717],[121,11,78,-0.7357991346263068],[121,11,79,-0.7355216569091881],[121,12,64,-0.7400723623361205],[121,12,65,-0.7397602179195129],[121,12,66,-0.7394504877558309],[121,12,67,-0.739143177407451],[121,12,68,-0.7388382923426826],[121,12,69,-0.7385358379353422],[121,12,70,-0.7382358194643119],[121,12,71,-0.7379382421131027],[121,12,72,-0.7376431109694158],[121,12,73,-0.7373504310247186],[121,12,74,-0.7370602071737926],[121,12,75,-0.7367724442143111],[121,12,76,-0.7364871468464044],[121,12,77,-0.736204319672227],[121,12,78,-0.7359239671955273],[121,12,79,-0.7356460938212132],[121,13,64,-0.7402028876478468],[121,13,65,-0.7398903509722761],[121,13,66,-0.7395802283254028],[121,13,67,-0.7392725252749599],[121,13,68,-0.738967247294622],[121,13,69,-0.7386643997635807],[121,13,70,-0.7383639879661023],[121,13,71,-0.7380660170910909],[121,13,72,-0.73777049223165],[121,13,73,-0.7374774183846589],[121,13,74,-0.737186800450319],[121,13,75,-0.736898643231733],[121,13,76,-0.7366129514344698],[121,13,77,-0.7363297296661301],[121,13,78,-0.7360489824359182],[121,13,79,-0.7357707141542059],[121,14,64,-0.7403335848592181],[121,14,65,-0.7400206567177271],[121,14,66,-0.7397101423779224],[121,14,67,-0.7394020474128796],[121,14,68,-0.7390963773016267],[121,14,69,-0.7387931374287173],[121,14,70,-0.7384923330837895],[121,14,71,-0.7381939694611284],[121,14,72,-0.7378980516592275],[121,14,73,-0.7376045846803657],[121,14,74,-0.737313573430153],[121,14,75,-0.7370250227171093],[121,14,76,-0.7367389372522299],[121,14,77,-0.7364553216485512],[121,14,78,-0.7361741804207214],[121,14,79,-0.7358955179845652],[121,15,64,-0.740464453995167],[121,15,65,-0.740151135184155],[121,15,66,-0.7398402299450203],[121,15,67,-0.7395317438561688],[121,15,68,-0.7392256824019688],[121,15,69,-0.7389220509723233],[121,15,70,-0.7386208548622298],[121,15,71,-0.7383220992713417],[121,15,72,-0.7380257893035311],[121,15,73,-0.7377319299664634],[121,15,74,-0.7374405261711454],[121,15,75,-0.7371515827315027],[121,15,76,-0.7368651043639454],[121,15,77,-0.7365810956869334],[121,15,78,-0.7362995612205478],[121,15,79,-0.7360205053860552],[121,16,64,-0.7405954950780419],[121,16,65,-0.7402817863972593],[121,16,66,-0.7399704910557332],[121,16,67,-0.7396616146371874],[121,16,68,-0.739355162631317],[121,16,69,-0.7390511404333622],[121,16,70,-0.738749553343667],[121,16,71,-0.7384504065672411],[121,16,72,-0.7381537052133219],[121,16,73,-0.7378594542949503],[121,16,74,-0.7375676587285173],[121,16,75,-0.7372783233333424],[121,16,76,-0.7369914528312386],[121,16,77,-0.736707051846078],[121,16,78,-0.7364251249033628],[121,16,79,-0.7361456764297898],[121,17,64,-0.7407267081275911],[121,17,65,-0.7404126103801346],[121,17,66,-0.7401009257364884],[121,17,67,-0.7397916597856808],[121,17,68,-0.7394848180227211],[121,17,69,-0.739180405848174],[121,17,70,-0.738878428567717],[121,17,71,-0.7385788913917037],[121,17,72,-0.7382817994347248],[121,17,73,-0.737987157715184],[121,17,74,-0.7376949711548447],[121,17,75,-0.7374052445784081],[121,17,76,-0.7371179827130783],[121,17,77,-0.7368331901881281],[121,17,78,-0.7365508715344692],[121,17,79,-0.7362710311842171],[121,18,64,-0.7408580931610171],[121,18,65,-0.7405436071533253],[121,18,66,-0.740231534011158],[121,18,67,-0.739921879328835],[121,18,68,-0.7396146486066668],[121,18,69,-0.7393098472505296],[121,18,70,-0.7390074805714222],[121,18,71,-0.7387075537850292],[121,18,72,-0.7384100720112821],[121,18,73,-0.7381150402739352],[121,18,74,-0.737822463500112],[121,18,75,-0.737532346519884],[121,18,76,-0.7372446940658339],[121,18,77,-0.7369595107726234],[121,18,78,-0.7366768011765625],[121,18,79,-0.7363965697151739],[121,19,64,-0.7409896501929618],[121,19,65,-0.7406747767348099],[121,19,66,-0.7403623159010435],[121,19,67,-0.7400522732912604],[121,19,68,-0.7397446544110597],[121,19,69,-0.7394394646716156],[121,19,70,-0.7391367093892358],[121,19,71,-0.7388363937849232],[121,19,72,-0.7385385229839379],[121,19,73,-0.7382431020153721],[121,19,74,-0.7379501358116978],[121,19,75,-0.7376596292083433],[121,19,76,-0.7373715869432595],[121,19,77,-0.7370860136564846],[121,19,78,-0.736802913889715],[121,19,79,-0.7365222920858693],[121,20,64,-0.7411213792354912],[121,20,65,-0.7408061191399865],[121,20,66,-0.7404932714248611],[121,20,67,-0.7401828416949774],[121,20,68,-0.73987483546121],[121,20,69,-0.7395692581400188],[121,20,70,-0.739266115053007],[121,20,71,-0.7389654114264832],[121,20,72,-0.7386671523910234],[121,20,73,-0.7383713429810458],[121,20,74,-0.7380779881343577],[121,20,75,-0.7377870926917334],[121,20,76,-0.7374986613964789],[121,20,77,-0.7372126988939974],[121,20,78,-0.7369292097313601],[121,20,79,-0.7366481983568699],[121,21,64,-0.7412532802981494],[121,21,65,-0.7409376343817263],[121,21,66,-0.7406244005987952],[121,21,67,-0.74031358455947],[121,21,68,-0.7400051917798878],[121,21,69,-0.7396992276817806],[121,21,70,-0.7393956975920346],[121,21,71,-0.7390946067422516],[121,21,72,-0.7387959602683105],[121,21,73,-0.7384997632099431],[121,21,74,-0.7382060205102801],[121,21,75,-0.7379147370154291],[121,21,76,-0.7376259174740393],[121,21,77,-0.737339566536867],[121,21,78,-0.7370556887563465],[121,21,79,-0.7367742885861533],[121,22,64,-0.7413853533879362],[121,22,65,-0.7410693224703513],[121,22,66,-0.7407557034364761],[121,22,67,-0.7404445019016632],[121,22,68,-0.7401357233872985],[121,22,69,-0.7398293733203736],[121,22,70,-0.7395254570330443],[121,22,71,-0.7392239797621929],[121,22,72,-0.7389249466489889],[121,22,73,-0.7386283627384648],[121,22,74,-0.7383342329790621],[121,22,75,-0.7380425622222099],[121,22,76,-0.7377533552218882],[121,22,77,-0.737466616634195],[121,22,78,-0.7371823510169152],[121,22,79,-0.7369005628290853],[121,23,64,-0.7415175985093302],[121,23,65,-0.7412011834136569],[121,23,66,-0.7408871799490031],[121,23,67,-0.7405755937359462],[121,23,68,-0.7402664303011075],[121,23,69,-0.7399596950767253],[121,23,70,-0.739655393400212],[121,23,71,-0.7393535305137177],[121,23,72,-0.7390541115636893],[121,23,73,-0.7387571416004477],[121,23,74,-0.7384626255777331],[121,23,75,-0.7381705683522831],[121,23,76,-0.7378809746833971],[121,23,77,-0.7375938492325018],[121,23,78,-0.7373091965627216],[121,23,79,-0.7370270211384424],[121,24,64,-0.7416500156642655],[121,24,65,-0.74133321721689],[121,24,66,-0.7410188301449214],[121,24,67,-0.740706860074149],[121,24,68,-0.7403973125364163],[121,24,69,-0.7400901929691946],[121,24,70,-0.7397855067151405],[121,24,71,-0.7394832590216582],[121,24,72,-0.73918345504046],[121,24,73,-0.738886099827142],[121,24,74,-0.738591198340731],[121,24,75,-0.7382987554432605],[121,24,76,-0.738008775899337],[121,24,77,-0.7377212643757042],[121,24,78,-0.7374362254408137],[121,24,79,-0.7371536635643888],[121,25,64,-0.7417826048521866],[121,25,65,-0.741465423882802],[121,25,66,-0.7411506540302766],[121,25,67,-0.7408383009255973],[121,25,68,-0.740528370105817],[121,25,69,-0.7402208670136268],[121,25,70,-0.7399157969969139],[121,25,71,-0.7396131653083239],[121,25,72,-0.7393129771048215],[121,25,73,-0.7390152374472659],[121,25,74,-0.7387199512999569],[121,25,75,-0.7384271235302124],[121,25,76,-0.7381367589079334],[121,25,77,-0.7378488621051685],[121,25,78,-0.7375634376956846],[121,25,79,-0.7372804901545305],[121,26,64,-0.7419153660700328],[121,26,65,-0.7415978034116347],[121,26,66,-0.7412826516085989],[121,26,67,-0.7409699162970969],[121,26,68,-0.7406596030193769],[121,26,69,-0.7403517172233368],[121,26,70,-0.7400462642620814],[121,26,71,-0.7397432493934847],[121,26,72,-0.7394426777797507],[121,26,73,-0.7391445544869888],[121,26,74,-0.7388488844847595],[121,26,75,-0.7385556726456527],[121,26,76,-0.7382649237448509],[121,26,77,-0.7379766424596961],[121,26,78,-0.7376908333692579],[121,26,79,-0.7374075009538992],[121,27,64,-0.7420482993122234],[121,27,65,-0.7417303558011044],[121,27,66,-0.7414148228808883],[121,27,67,-0.7411017061929179],[121,27,68,-0.7407910112846232],[121,27,69,-0.7404827436090954],[121,27,70,-0.7401769085246432],[121,27,71,-0.7398735112943565],[121,27,72,-0.7395725570856655],[121,27,73,-0.7392740509699168],[121,27,74,-0.7389779979219194],[121,27,75,-0.7386844028195219],[121,27,76,-0.7383932704431768],[121,27,77,-0.7381046054755064],[121,27,78,-0.7378184125008718],[121,27,79,-0.7375346960049374],[121,28,64,-0.7421814045707108],[121,28,65,-0.7418630810464557],[121,28,66,-0.7415471678456689],[121,28,67,-0.7412336706148499],[121,28,68,-0.7409225949065973],[121,28,69,-0.740613946179182],[121,28,70,-0.7403077297961039],[121,28,71,-0.740003951025655],[121,28,72,-0.739702615040479],[121,28,73,-0.739403726917147],[121,28,74,-0.7391072916357031],[121,28,75,-0.7388133140792428],[121,28,76,-0.7385217990334758],[121,28,77,-0.7382327511862925],[121,28,78,-0.737946175127333],[121,28,79,-0.7376620753475513],[121,29,64,-0.7423146818349587],[121,29,65,-0.7419959791404398],[121,29,66,-0.7416796864989652],[121,29,67,-0.7413658095621778],[121,29,68,-0.7410543538878311],[121,29,69,-0.7407453249393623],[121,29,70,-0.7404387280854491],[121,29,71,-0.7401345685995724],[121,29,72,-0.7398328516595762],[121,29,73,-0.7395335823472431],[121,29,74,-0.7392367656478401],[121,29,75,-0.7389424064496963],[121,29,76,-0.7386505095437663],[121,29,77,-0.7383610796231964],[121,29,78,-0.7380741212828934],[121,29,79,-0.7377896390190892],[121,30,64,-0.7424481310919653],[121,30,65,-0.7421290500733365],[121,30,66,-0.7418123788343258],[121,30,67,-0.7414981230317058],[121,30,68,-0.7411862882283712],[121,30,69,-0.7408768798929115],[121,30,70,-0.7405699033991693],[121,30,71,-0.7402653640258008],[121,30,72,-0.7399632669558374],[121,30,73,-0.7396636172762601],[121,30,74,-0.739366419977546],[121,30,75,-0.739071679953245],[121,30,76,-0.7387794019995442],[121,30,77,-0.7384895908148331],[121,30,78,-0.7382022509992734],[121,30,79,-0.7379173870543623],[121,31,64,-0.7425817523262395],[121,31,65,-0.7422622938329317],[121,31,66,-0.7419452448428007],[121,31,67,-0.7416306110177343],[121,31,68,-0.7413183979257547],[121,31,69,-0.7410086110405909],[121,31,70,-0.7407012557412358],[121,31,71,-0.7403963373115086],[121,31,72,-0.7400938609396143],[121,31,73,-0.7397938317177195],[121,31,74,-0.7394962546414984],[121,31,75,-0.7392011346097089],[121,31,76,-0.7389084764237583],[121,31,77,-0.7386182847872667],[121,31,78,-0.7383305643056379],[121,31,79,-0.7380453194856227],[121,32,64,-0.7427155455198556],[121,32,65,-0.7423957104045719],[121,32,66,-0.7420782845129945],[121,32,67,-0.7417632735121135],[121,32,68,-0.7414506829750644],[121,32,69,-0.7411405183807019],[121,32,70,-0.7408327851131562],[121,32,71,-0.7405274884613952],[121,32,72,-0.740224633618785],[121,32,73,-0.7399242256826647],[121,32,74,-0.7396262696538921],[121,32,75,-0.7393307704364211],[121,32,76,-0.7390377328368656],[121,32,77,-0.7387471615640644],[121,32,78,-0.738459061228651],[121,32,79,-0.7381734363426175],[121,33,64,-0.7428495106524384],[121,33,65,-0.742529299771148],[121,33,66,-0.7422114978310522],[121,33,67,-0.7418961105042288],[121,33,68,-0.7415831433689131],[121,33,69,-0.7412726019090712],[121,33,70,-0.7409644915139574],[121,33,71,-0.7406588174776751],[121,33,72,-0.7403555849987382],[121,33,73,-0.7400547991796446],[121,33,74,-0.7397564650264232],[121,33,75,-0.7394605874482106],[121,33,76,-0.739167171256815],[121,33,77,-0.7388762211662812],[121,33,78,-0.73858774179246],[121,33,79,-0.7383017376525722],[121,34,64,-0.7429836477011471],[121,34,65,-0.7426630619130808],[121,34,66,-0.7423448847806429],[121,34,67,-0.7420291219809845],[121,34,68,-0.7417157790974269],[121,34,69,-0.7414048616190343],[121,34,70,-0.741096374940171],[121,34,71,-0.7407903243600628],[121,34,72,-0.740486715082357],[121,34,73,-0.7401855522146981],[121,34,74,-0.7398868407682728],[121,34,75,-0.7395905856573876],[121,34,76,-0.7392967916990318],[121,34,77,-0.7390054636124438],[121,34,78,-0.7387166060186793],[121,34,79,-0.7384302234401755],[121,35,64,-0.7431179566407298],[121,35,65,-0.7427969968083749],[121,35,66,-0.7424784453430143],[121,35,67,-0.7421623079268588],[121,35,68,-0.7418485901483015],[121,35,69,-0.7415372975014909],[121,35,70,-0.7412284353858876],[121,35,71,-0.7409220091058257],[121,35,72,-0.7406180238700738],[121,35,73,-0.7403164847914088],[121,35,74,-0.7400173968861621],[121,35,75,-0.739720765073797],[121,35,76,-0.7394265941764717],[121,35,77,-0.7391348889186051],[121,35,78,-0.7388456539264452],[121,35,79,-0.7385588937276333],[121,36,64,-0.7432524374435008],[121,36,65,-0.7429311044325954],[121,36,66,-0.7426121794969698],[121,36,67,-0.7422956683238802],[121,36,68,-0.7419815765067775],[121,36,69,-0.7416699095448807],[121,36,70,-0.7413606728427327],[121,36,71,-0.7410538717097629],[121,36,72,-0.7407495113598467],[121,36,73,-0.7404475969108808],[121,36,74,-0.7401481333843283],[121,36,75,-0.7398511257047957],[121,36,76,-0.7395565786995977],[121,36,77,-0.7392644970983204],[121,36,78,-0.7389748855323919],[121,36,79,-0.7386877485346452],[121,37,64,-0.7433870900793634],[121,37,65,-0.7430653847588914],[121,37,66,-0.7427460872188915],[121,37,67,-0.7424292031516508],[121,37,68,-0.7421147381556644],[121,37,69,-0.741802697735207],[121,37,70,-0.7414930872998908],[121,37,71,-0.7411859121642265],[121,37,72,-0.7408811775471829],[121,37,73,-0.7405788885717628],[121,37,74,-0.7402790502645479],[121,37,75,-0.7399816675552755],[121,37,76,-0.7396867452764024],[121,37,77,-0.7393942881626706],[121,37,78,-0.7391043008506749],[121,37,79,-0.7388167878784277],[121,38,64,-0.7435219145157868],[121,38,65,-0.7431998377579726],[121,38,66,-0.7428801684827167],[121,38,67,-0.7425629123873231],[121,38,68,-0.7422480750753162],[121,38,69,-0.7419356620560134],[121,38,70,-0.7416256787440814],[121,38,71,-0.7413181304590987],[121,38,72,-0.7410130224251144],[121,38,73,-0.7407103597702237],[121,38,74,-0.7404101475261133],[121,38,75,-0.7401123906276383],[121,38,76,-0.7398170939123855],[121,38,77,-0.7395242621202385],[121,38,78,-0.7392338998929469],[121,38,79,-0.7389460117736897],[121,39,64,-0.7436569107178606],[121,39,65,-0.743334463398164],[121,39,66,-0.7430144232599929],[121,39,67,-0.7426967960056541],[121,39,68,-0.7423815872436871],[121,39,69,-0.7420688024884375],[121,39,70,-0.7417584471596135],[121,39,71,-0.741450526581847],[121,39,72,-0.7411450459842535],[121,39,73,-0.7408420105000075],[121,39,74,-0.7405414251658875],[121,39,75,-0.7402432949218528],[121,39,76,-0.7399476246106069],[121,39,77,-0.739654418977163],[121,39,78,-0.7393636826684121],[121,39,79,-0.7390754202326876],[121,40,64,-0.7437920786482795],[121,40,65,-0.74346926164539],[121,40,66,-0.7431488515198619],[121,40,67,-0.74283085397899],[121,40,68,-0.7425152746363151],[121,40,69,-0.7422021190111968],[121,40,70,-0.7418913925283702],[121,40,71,-0.7415831005175072],[121,40,72,-0.7412772482127763],[121,40,73,-0.7409738407524175],[121,40,74,-0.7406728831782874],[121,40,75,-0.7403743804354366],[121,40,76,-0.7400783373716722],[121,40,77,-0.7397847587371237],[121,40,78,-0.7394936491838113],[121,40,79,-0.7392050132652095],[121,41,64,-0.7439274182673267],[121,41,65,-0.7436042324631585],[121,41,66,-0.7432834532290438],[121,41,67,-0.7429650862772503],[121,41,68,-0.7426491372263063],[121,41,69,-0.7423356116005709],[121,41,70,-0.7420245148297924],[121,41,71,-0.7417158522486684],[121,41,72,-0.7414096290964068],[121,41,73,-0.7411058505162995],[121,41,74,-0.7408045215552682],[121,41,75,-0.7405056471634408],[121,41,76,-0.7402092321937153],[121,41,77,-0.7399152814013243],[121,41,78,-0.7396237994434042],[121,41,79,-0.7393347908785579],[121,42,64,-0.7440629295329301],[121,42,65,-0.7437393758126168],[121,42,66,-0.743418228351892],[121,42,67,-0.7430994928679828],[121,42,68,-0.7427831749843896],[121,42,69,-0.7424692802304577],[121,42,70,-0.7421578140409335],[121,42,71,-0.7418487817555275],[121,42,72,-0.7415421886184724],[121,42,73,-0.7412380397780983],[121,42,74,-0.7409363402863784],[121,42,75,-0.7406370950985053],[121,42,76,-0.740340309072454],[121,42,77,-0.7400459869685475],[121,42,78,-0.7397541334490252],[121,42,79,-0.7394647530776063],[121,43,64,-0.7441986124006374],[121,43,65,-0.7438746916525263],[121,43,66,-0.7435531768503698],[121,43,67,-0.7432340737163394],[121,43,68,-0.7429173878788936],[121,43,69,-0.7426031248723487],[121,43,70,-0.7422912901364365],[121,43,71,-0.741981889015865],[121,43,72,-0.7416749267598786],[121,43,73,-0.741370408521832],[121,43,74,-0.741068339358736],[121,43,75,-0.7407687242308342],[121,43,76,-0.7404715680011658],[121,43,77,-0.740176875435131],[121,43,78,-0.7398846512000591],[121,43,79,-0.7395948998647727],[121,44,64,-0.7443344668236406],[121,44,65,-0.7440101799392875],[121,44,66,-0.7436882986840734],[121,44,67,-0.7433688287851],[121,44,68,-0.7430517758757689],[121,44,69,-0.7427371454953534],[121,44,70,-0.7424249430885561],[121,44,71,-0.742115174005069],[121,44,72,-0.7418078434991338],[121,44,73,-0.741502956729116],[121,44,74,-0.7412005187570508],[121,44,75,-0.7409005345482191],[121,44,76,-0.740603008970711],[121,44,77,-0.7403079467949905],[121,44,78,-0.7400153526934643],[121,44,79,-0.7397252312400451],[121,45,64,-0.744470492752751],[121,45,65,-0.7441458406269148],[121,45,66,-0.7438235938102082],[121,45,67,-0.743503758034648],[121,45,68,-0.7431863389385647],[121,45,69,-0.7428713420661744],[121,45,70,-0.7425587728671358],[121,45,71,-0.7422486366961107],[121,45,72,-0.7419409388123244],[121,45,73,-0.7416356843791394],[121,45,74,-0.7413328784636015],[121,45,75,-0.7410325260360154],[121,45,76,-0.7407346319695085],[121,45,77,-0.7404392010395959],[121,45,78,-0.7401462379237482],[121,45,79,-0.7398557472009555],[121,46,64,-0.7446066901364559],[121,46,65,-0.744281673667093],[121,46,66,-0.743959062183644],[121,46,67,-0.7436388614230264],[121,46,68,-0.7433210770284845],[121,46,69,-0.743005714549163],[121,46,70,-0.742692779439662],[121,46,71,-0.7423822770595996],[121,46,72,-0.7420742126731701],[121,46,73,-0.7417685914487194],[121,46,74,-0.7414654184582898],[121,46,75,-0.7411646986771968],[121,46,76,-0.7408664369835916],[121,46,77,-0.7405706381580264],[121,46,78,-0.7402773068830231],[121,46,79,-0.7399864477426363],[121,47,64,-0.744743058920901],[121,47,65,-0.7444176790091601],[121,47,66,-0.744094703756899],[121,47,67,-0.7437741389059207],[121,47,68,-0.7434559901043692],[121,47,69,-0.7431402629063026],[121,47,70,-0.7428269627712489],[121,47,71,-0.7425160950637675],[121,47,72,-0.7422076650530078],[121,47,73,-0.7419016779122853],[121,47,74,-0.7415981387186252],[121,47,75,-0.7412970524523396],[121,47,76,-0.7409984239965901],[121,47,77,-0.7407022581369535],[121,47,78,-0.740408559560989],[121,47,79,-0.7401173328578028],[121,48,64,-0.7448795990498753],[121,48,65,-0.744553856600092],[121,48,66,-0.7442305184801236],[121,48,67,-0.7439095904366435],[121,48,68,-0.7435910781226812],[121,48,69,-0.7432749870971935],[121,48,70,-0.7429613228246215],[121,48,71,-0.7426500906744519],[121,48,72,-0.7423412959207754],[121,48,73,-0.7420349437418624],[121,48,74,-0.7417310392197075],[121,48,75,-0.7414295873396057],[121,48,76,-0.7411305929897157],[121,48,77,-0.740834060960625],[121,48,78,-0.7405399959449175],[121,48,79,-0.7402484025367373],[121,49,64,-0.7450163104648667],[121,49,65,-0.7446902063845573],[121,49,66,-0.7443665063011552],[121,49,67,-0.7440452159661894],[121,49,68,-0.7437263410375596],[121,49,69,-0.7434098870791069],[121,49,70,-0.7430958595601712],[121,49,71,-0.7427842638551516],[121,49,72,-0.7424751052430663],[121,49,73,-0.7421683889071268],[121,49,74,-0.7418641199342826],[121,49,75,-0.7415623033147983],[121,49,76,-0.7412629439418161],[121,49,77,-0.7409660466109204],[121,49,78,-0.7406716160197065],[121,49,79,-0.7403796567673442],[121,50,64,-0.7451531931050449],[121,50,65,-0.7448267283049016],[121,50,66,-0.7445026671655031],[121,50,67,-0.7441810154432191],[121,50,68,-0.7438617788008043],[121,50,69,-0.7435449628069697],[121,50,70,-0.7432305729359392],[121,50,71,-0.7429186145670104],[121,50,72,-0.7426090929841143],[121,50,73,-0.7423020133753893],[121,50,74,-0.7419973808327264],[121,50,75,-0.7416952003513455],[121,50,76,-0.7413954768293586],[121,50,77,-0.7410982150673341],[121,50,78,-0.7408034197678652],[121,50,79,-0.7405110955351334],[121,51,64,-0.7452902469072457],[121,51,65,-0.744963422301131],[121,51,66,-0.7446390010163314],[121,51,67,-0.7443169888140424],[121,51,68,-0.7439973913618592],[121,51,69,-0.7436802142333475],[121,51,70,-0.7433654629076006],[121,51,71,-0.7430531427688003],[121,51,72,-0.7427432591057761],[121,51,73,-0.742435817111579],[121,51,74,-0.7421308218830276],[121,51,75,-0.7418282784202834],[121,51,76,-0.7415281916264143],[121,51,77,-0.7412305663069589],[121,51,78,-0.7409354071694954],[121,51,79,-0.7406427188232038],[121,52,64,-0.7454274718060266],[121,52,65,-0.7451002883109675],[121,52,66,-0.7447755077945148],[121,52,67,-0.7444531360226749],[121,52,68,-0.744133178667868],[121,52,69,-0.7438156413085002],[121,52,70,-0.7435005294285197],[121,52,71,-0.7431878484169775],[121,52,72,-0.7428776035675871],[121,52,73,-0.7425698000782988],[121,52,74,-0.7422644430508438],[121,52,75,-0.7419615374903116],[121,52,76,-0.7416610883047126],[121,52,77,-0.7413631003045416],[121,52,78,-0.7410675782023484],[121,52,79,-0.7407745266122981],[121,53,64,-0.7455648677336427],[121,53,65,-0.7452373262698251],[121,53,66,-0.7449121874386144],[121,53,67,-0.7445894570108125],[121,53,68,-0.74426914066365],[121,53,69,-0.7439512439803582],[121,53,70,-0.7436357724497252],[121,53,71,-0.7433227314656574],[121,53,72,-0.7430121263267375],[121,53,73,-0.7427039622358005],[121,53,74,-0.7423982442994765],[121,53,75,-0.7420949775277692],[121,53,76,-0.7417941668336169],[121,53,77,-0.7414958170324581],[121,53,78,-0.7411999328417997],[121,53,79,-0.7409065188807795],[121,54,64,-0.74570243462007],[121,54,65,-0.7453745361108332],[121,54,66,-0.745049039884901],[121,54,67,-0.7447259517178557],[121,54,68,-0.7444052772917231],[121,54,69,-0.7440870221945449],[121,54,70,-0.7437711919199346],[121,54,71,-0.7434577918666385],[121,54,72,-0.743146827338095],[121,54,73,-0.7428383035420087],[121,54,74,-0.7425322255898952],[121,54,75,-0.7422285984966576],[121,54,76,-0.7419274271801488],[121,54,77,-0.7416287164607371],[121,54,78,-0.7413324710608731],[121,54,79,-0.7410386956046534],[121,55,64,-0.7458401723929811],[121,55,65,-0.745511917764812],[121,55,66,-0.745186065067331],[121,55,67,-0.744862620080885],[121,55,68,-0.7445415884922801],[121,55,69,-0.7442229758943533],[121,55,70,-0.7439067877855285],[121,55,71,-0.7435930295693779],[121,55,72,-0.7432817065541804],[121,55,73,-0.7429728239524962],[121,55,74,-0.7426663868807117],[121,55,75,-0.742362400358616],[121,55,76,-0.7420608693089625],[121,55,77,-0.7417617985570351],[121,55,78,-0.7414651928302147],[121,55,79,-0.7411710567575438],[121,56,64,-0.7459780809778007],[121,56,65,-0.7456494711603288],[121,56,66,-0.7453232629176018],[121,56,67,-0.7449994620347163],[121,56,68,-0.7446780742032436],[121,56,69,-0.7443591050208008],[121,56,70,-0.7440425599906075],[121,56,71,-0.7437284445210467],[121,56,72,-0.7434167639252234],[121,56,73,-0.7431075234205391],[121,56,74,-0.7428007281282369],[121,56,75,-0.7424963830729772],[121,56,76,-0.7421944931824004],[121,56,77,-0.7418950632866919],[121,56,78,-0.7415980981181499],[121,56,79,-0.7413036023107484],[121,57,64,-0.7461161602976902],[121,57,65,-0.745787196223681],[121,57,66,-0.7454606333651356],[121,57,67,-0.745136477511885],[121,57,68,-0.7448147343602501],[121,57,69,-0.7444954095126132],[121,57,70,-0.7441785084769748],[121,57,71,-0.7438640366665136],[121,57,72,-0.7435519993991462],[121,57,73,-0.7432424018971011],[121,57,74,-0.7429352492864634],[121,57,75,-0.7426305465967509],[121,57,76,-0.7423282987604769],[121,57,77,-0.7420285106127146],[121,57,78,-0.7417311868906655],[121,57,79,-0.7414363322332219],[121,58,64,-0.7462544102735302],[121,58,65,-0.74592509287888],[121,58,66,-0.7455981763370629],[121,58,67,-0.7452736664426289],[121,58,68,-0.744951568896633],[121,58,69,-0.7446318893062079],[121,58,70,-0.7443146331841195],[121,58,71,-0.7439998059483277],[121,58,72,-0.7436874129215463],[121,58,73,-0.7433774593308157],[121,58,74,-0.7430699503070488],[121,58,75,-0.7427648908846065],[121,58,76,-0.7424622860008613],[121,58,77,-0.7421621404957599],[121,58,78,-0.7418644591113935],[121,58,79,-0.7415692464915592],[121,59,64,-0.7463928308239763],[121,59,65,-0.7460631610477066],[121,59,66,-0.7457358917582783],[121,59,67,-0.7454110287549442],[121,59,68,-0.745088577743479],[121,59,69,-0.7447685443357498],[121,59,70,-0.7444509340492731],[121,59,71,-0.7441357523067755],[121,59,72,-0.7438230044357526],[121,59,73,-0.7435126956680426],[121,59,74,-0.7432048311393716],[121,59,75,-0.7428994158889297],[121,59,76,-0.7425964548589336],[121,59,77,-0.7422959528941904],[121,59,78,-0.7419979147416667],[121,59,79,-0.7417023450500507],[121,60,64,-0.7465314218654354],[121,60,65,-0.746201400649687],[121,60,66,-0.7458737795514154],[121,60,67,-0.7455485643745612],[121,60,68,-0.7452257608296026],[121,60,69,-0.7449053745331262],[121,60,70,-0.7445874110073845],[121,60,71,-0.7442718756798551],[121,60,72,-0.7439587738828009],[121,60,73,-0.743648110852843],[121,60,74,-0.7433398917305067],[121,60,75,-0.7430341215597966],[121,60,76,-0.7427308052877595],[121,60,77,-0.742429947764049],[121,60,78,-0.7421315537404933],[121,60,79,-0.7418356278706582],[121,61,64,-0.7466701833120887],[121,61,65,-0.746339811602116],[121,61,66,-0.7460118396368713],[121,61,67,-0.7456862732249673],[121,61,68,-0.7453631180815702],[121,61,69,-0.7450423798279713],[121,61,70,-0.7447240639911432],[121,61,71,-0.7444081760032999],[121,61,72,-0.7440947212014565],[121,61,73,-0.7437837048270028],[121,61,74,-0.7434751320252484],[121,61,75,-0.743169007844998],[121,61,76,-0.7428653372381144],[121,61,77,-0.7425641250590835],[121,61,78,-0.7422653760645813],[121,61,79,-0.7419690949130371],[121,62,64,-0.7468091150758673],[121,62,65,-0.7464783938200326],[121,62,66,-0.7461500719327813],[121,62,67,-0.7458241552273828],[121,62,68,-0.7455006494236757],[121,62,69,-0.7451795601476405],[121,62,70,-0.7448608929309547],[121,62,71,-0.7445446532105539],[121,62,72,-0.7442308463281906],[121,62,73,-0.7439194775300081],[121,62,74,-0.7436105519660856],[121,62,75,-0.7433040746900139],[121,62,76,-0.7430000506584576],[121,62,77,-0.7426984847307205],[121,62,78,-0.7423993816683123],[121,62,79,-0.7421027461345127],[121,63,64,-0.7469482170665083],[121,63,65,-0.7466171472162756],[121,63,66,-0.746288476355075],[121,63,67,-0.7459622103008163],[121,63,68,-0.7456383547779957],[121,63,69,-0.7453169154172666],[121,63,70,-0.7449978977549969],[121,63,71,-0.744681307232828],[121,63,72,-0.744367149197235],[121,63,73,-0.7440554288991003],[121,63,74,-0.743746151493258],[121,63,75,-0.74343932203807],[121,63,76,-0.7431349454949888],[121,63,77,-0.7428330267281217],[121,63,78,-0.7425335705037985],[121,63,79,-0.7422365814901348],[121,64,64,-0.7470874891915378],[121,64,65,-0.7467560717014676],[121,64,66,-0.7464270528174599],[121,64,67,-0.7461004383620492],[121,64,68,-0.7457762340643732],[121,64,69,-0.7454544455597437],[121,64,70,-0.7451350783892026],[121,64,71,-0.7448181379990827],[121,64,72,-0.7445036297405665],[121,64,73,-0.7441915588692604],[121,64,74,-0.7438819305447386],[121,64,75,-0.7435747498301203],[121,64,76,-0.7432700216916309],[121,64,77,-0.7429677509981671],[121,64,78,-0.7426679425208649],[121,64,79,-0.7423706009326617],[121,65,64,-0.7472269313562545],[121,65,65,-0.7468951671839977],[121,65,66,-0.746565801231404],[121,65,67,-0.7462388393256174],[121,65,68,-0.745914287200401],[121,65,69,-0.7455921504957091],[121,65,70,-0.745272434757243],[121,65,71,-0.7449551454360113],[121,65,72,-0.7446402878878888],[121,65,73,-0.7443278673731908],[121,65,74,-0.7440178890562177],[121,65,75,-0.7437103580048302],[121,65,76,-0.743405279190013],[121,65,77,-0.7431026574854378],[121,65,78,-0.7428024976670322],[121,65,79,-0.7425048044125422],[121,66,64,-0.747366543463786],[121,66,65,-0.7470344335700779],[121,66,66,-0.746704721506193],[121,66,67,-0.7463774131038683],[121,66,68,-0.7460525141014771],[121,66,69,-0.7457300301436007],[121,66,70,-0.745409966780584],[121,66,71,-0.745092329468096],[121,66,72,-0.7447771235666891],[121,66,73,-0.7444643543413727],[121,66,74,-0.7441540269611577],[121,66,75,-0.7438461464986328],[121,66,76,-0.7435407179295264],[121,66,77,-0.7432377461322717],[121,66,78,-0.7429372358875735],[121,66,79,-0.7426391918779724],[121,67,64,-0.7475063254150632],[121,67,65,-0.747173870763718],[121,67,66,-0.7468438135489041],[121,67,67,-0.7465161596069357],[121,67,68,-0.7461909146807806],[121,67,69,-0.7458680844196311],[121,67,70,-0.7455476743784606],[121,67,71,-0.7452296900175832],[121,67,72,-0.7449141367022134],[121,67,73,-0.7446010197020397],[121,67,74,-0.7442903441907691],[121,67,75,-0.743982115245703],[121,67,76,-0.7436763378472997],[121,67,77,-0.7433730168787387],[121,67,78,-0.7430721571254887],[121,67,79,-0.7427737632748699],[121,68,64,-0.7476462771088453],[121,68,65,-0.7473134786667497],[121,68,66,-0.7469830772644306],[121,68,67,-0.7466550787427635],[121,68,68,-0.7463294888492946],[121,68,69,-0.7460063132378119],[121,68,70,-0.7456855574679011],[121,68,71,-0.7453672270045065],[121,68,72,-0.7450513272174895],[121,68,73,-0.7447378633812025],[121,68,74,-0.7444268406740335],[121,68,75,-0.7441182641779822],[121,68,76,-0.7438121388782221],[121,68,77,-0.7435084696626646],[121,68,78,-0.7432072613215275],[121,68,79,-0.7429085185468975],[121,69,64,-0.7477863984416934],[121,69,65,-0.7474532571788011],[121,69,66,-0.7471225125554566],[121,69,67,-0.7467941704170805],[121,69,68,-0.7464682365157816],[121,69,69,-0.7461447165099276],[121,69,70,-0.7458236159637016],[121,69,71,-0.7455049403466619],[121,69,72,-0.745188695033302],[121,69,73,-0.7448748853026227],[121,69,74,-0.7445635163376785],[121,69,75,-0.7442545932251522],[121,69,76,-0.7439481209549177],[121,69,77,-0.7436441044196045],[121,69,78,-0.7433425484141649],[121,69,79,-0.7430434576354377],[121,70,64,-0.747926689308028],[121,70,65,-0.7475932061973535],[121,70,66,-0.7472621193225133],[121,70,67,-0.7469334345334571],[121,70,68,-0.7466071575868398],[121,70,69,-0.7462832941455935],[121,70,70,-0.7459618497784826],[121,70,71,-0.7456428299596645],[121,70,72,-0.7453262400682485],[121,70,73,-0.7450120853878699],[121,70,74,-0.7447003711062337],[121,70,75,-0.7443911023146914],[121,70,76,-0.7440842840078027],[121,70,77,-0.7437799210829003],[121,70,78,-0.743478018339657],[121,70,79,-0.7431785804796492],[121,71,64,-0.7480671496001111],[121,71,65,-0.7477333256177244],[121,71,66,-0.7474018974639624],[121,71,67,-0.7470728709932876],[121,71,68,-0.7467462519668857],[121,71,69,-0.746422046052237],[121,71,70,-0.7461002588226715],[121,71,71,-0.7457808957569301],[121,71,72,-0.7454639622387231],[121,71,73,-0.7451494635563038],[121,71,74,-0.7448374049020141],[121,71,75,-0.7445277913718582],[121,71,76,-0.7442206279650675],[121,71,77,-0.7439159195836629],[121,71,78,-0.7436136710320235],[121,71,79,-0.7433138870164492],[121,72,64,-0.7482077792080306],[121,72,65,-0.7478736153330502],[121,72,66,-0.7475418468759781],[121,72,67,-0.7472124796957739],[121,72,68,-0.7468855195581376],[121,72,69,-0.7465609721350817],[121,72,70,-0.7462388430044862],[121,72,71,-0.7459191376496597],[121,72,72,-0.7456018614588982],[121,72,73,-0.7452870197250582],[121,72,74,-0.7449746176451021],[121,72,75,-0.7446646603196734],[121,72,76,-0.7443571527526592],[121,72,77,-0.7440520998507548],[121,72,78,-0.7437495064230308],[121,72,79,-0.7434493771804962],[121,73,64,-0.7483485780197553],[121,73,65,-0.7480140752343427],[121,73,66,-0.7476819674526051],[121,73,67,-0.7473522605379818],[121,73,68,-0.7470249602606716],[121,73,69,-0.746700072297203],[121,73,70,-0.7463776022299906],[121,73,71,-0.7460575555468947],[121,73,72,-0.7457399376407816],[121,73,73,-0.7454247538090956],[121,73,74,-0.7451120092534048],[121,73,75,-0.7448017090789764],[121,73,76,-0.744493858294339],[121,73,77,-0.7441884618108469],[121,73,78,-0.743885524442248],[121,73,79,-0.7435850509042464],[121,74,64,-0.7484895459211103],[121,74,65,-0.7481547052104645],[121,74,66,-0.7478222590857315],[121,74,67,-0.7474922134148152],[121,74,68,-0.7471645739723963],[121,74,69,-0.7468393464395037],[121,74,70,-0.7465165364030699],[121,74,71,-0.7461961493554923],[121,74,72,-0.745878190694191],[121,74,73,-0.7455626657211833],[121,74,74,-0.7452495796426278],[121,74,75,-0.7449389375683999],[121,74,76,-0.7446307445116551],[121,74,77,-0.7443250053883923],[121,74,78,-0.7440217250170219],[121,74,79,-0.7437209081179282],[121,75,64,-0.7486306827958014],[121,75,65,-0.748295505148152],[121,75,66,-0.7479627216651147],[121,75,67,-0.7476323382190408],[121,75,68,-0.7473043605890771],[121,75,69,-0.7469787944607367],[121,75,70,-0.7466556454254545],[121,75,71,-0.7463349189801485],[121,75,72,-0.746016620526778],[121,75,73,-0.7457007553719168],[121,75,74,-0.7453873287262991],[121,75,75,-0.7450763457043938],[121,75,76,-0.7447678113239682],[121,75,77,-0.7444617305056507],[121,75,78,-0.7441581080724997],[121,75,79,-0.7438569487495658],[121,76,64,-0.7487719885253887],[121,76,65,-0.7484364749319905],[121,76,66,-0.748103355078354],[121,76,67,-0.7477726348412617],[121,76,68,-0.74744432000431],[121,76,69,-0.7471184162574801],[121,76,70,-0.7467949291966935],[121,76,71,-0.746473864323373],[121,76,72,-0.7461552270440011],[121,76,73,-0.7458390226696933],[121,76,74,-0.7455252564157436],[121,76,75,-0.7452139334011995],[121,76,76,-0.7449050586484243],[121,76,77,-0.7445986370826619],[121,76,78,-0.744294673531604],[121,76,79,-0.7439931727249526],[121,77,64,-0.7489134629893444],[121,77,65,-0.7485776144444709],[121,77,66,-0.7482441592109486],[121,77,67,-0.7479131031699746],[121,77,68,-0.7475844521095789],[121,77,69,-0.7472582117241942],[121,77,70,-0.7469343876142127],[121,77,71,-0.7466129852855462],[121,77,72,-0.7462940101491846],[121,77,73,-0.7459774675207697],[121,77,74,-0.7456633626201398],[121,77,75,-0.7453517005709055],[121,77,76,-0.7450424864000121],[121,77,77,-0.7447357250373032],[121,77,78,-0.7444314213150893],[121,77,79,-0.7441295799677093],[121,78,64,-0.7490551060650344],[121,78,65,-0.7487189235659722],[121,78,66,-0.7483851339462798],[121,78,67,-0.7480537430915528],[121,78,68,-0.7477247567942378],[121,78,69,-0.7473981807532035],[121,78,70,-0.7470740205732963],[121,78,71,-0.746752281764901],[121,78,72,-0.7464329697434996],[121,78,73,-0.7461160898292439],[121,78,74,-0.7458016472465019],[121,78,75,-0.7454896471234319],[121,78,76,-0.7451800944915454],[121,78,77,-0.7448729942852714],[121,78,78,-0.7445683513415242],[121,78,79,-0.7442661703992653],[121,79,64,-0.7491969176277027],[121,79,65,-0.7488604021747448],[121,79,66,-0.7485262791655942],[121,79,67,-0.7481945544902283],[121,79,68,-0.7478652339454941],[121,79,69,-0.7475383232346796],[121,79,70,-0.7472138279670697],[121,79,71,-0.7468917536575062],[121,79,72,-0.7465721057259467],[121,79,73,-0.7462548894970384],[121,79,74,-0.745940110199663],[121,79,75,-0.7456277729665107],[121,79,76,-0.7453178828336451],[121,79,77,-0.7450104447400652],[121,79,78,-0.744705463527274],[121,79,79,-0.7444029439388412],[121,80,64,-0.7493388975505264],[121,80,65,-0.7490020501469665],[121,80,66,-0.7486675947480599],[121,80,67,-0.7483355372481489],[121,80,68,-0.7480058834484647],[121,80,69,-0.7476786390566983],[121,80,70,-0.7473538096865565],[121,80,71,-0.7470314008573222],[121,80,72,-0.7467114179934136],[121,80,73,-0.7463938664239566],[121,80,74,-0.7460787513823309],[121,80,75,-0.7457660780057446],[121,80,76,-0.7454558513347967],[121,80,77,-0.7451480763130419],[121,80,78,-0.7448427577865572],[121,80,79,-0.7445399005035054],[121,81,64,-0.7494810457045915],[121,81,65,-0.7491438673567177],[121,81,66,-0.7488090805707412],[121,81,67,-0.7484766912453529],[121,81,68,-0.748146705186151],[121,81,69,-0.7478191281052133],[121,81,70,-0.7474939656206527],[121,81,71,-0.747171223256177],[121,81,72,-0.7468509064406483],[121,81,73,-0.7465330205076566],[121,81,74,-0.7462175706950636],[121,81,75,-0.7459045621445793],[121,81,76,-0.7455939999013239],[121,81,77,-0.745285888913392],[121,81,78,-0.7449802340314199],[121,81,79,-0.7446770400081488],[121,82,64,-0.7496233619589163],[121,82,65,-0.7492858536760049],[121,82,66,-0.7489507365086228],[121,82,67,-0.7486180163597921],[121,82,68,-0.7482876990394621],[121,82,69,-0.7479597902640809],[121,82,70,-0.7476342956561506],[121,82,71,-0.7473112207437882],[121,82,72,-0.746990570960284],[121,82,73,-0.7466723516436755],[121,82,74,-0.7463565680362918],[121,82,75,-0.7460432252843289],[121,82,76,-0.7457323284374126],[121,82,77,-0.7454238824481625],[121,82,78,-0.7451178921717593],[121,82,79,-0.7448143623655079],[121,83,64,-0.7497658461804259],[121,83,65,-0.7494280089747352],[121,83,66,-0.7490925624345834],[121,83,67,-0.7487595124673071],[121,83,68,-0.7484288648871897],[121,83,69,-0.7481006254150331],[121,83,70,-0.7477747996777127],[121,83,71,-0.7474513932077381],[121,83,72,-0.7471304114428121],[121,83,73,-0.7468118597254039],[121,83,74,-0.7464957433022936],[121,83,75,-0.7461820673241484],[121,83,76,-0.7458708368450844],[121,83,77,-0.7455620568222306],[121,83,78,-0.7452557321152976],[121,83,79,-0.7449518674861388],[121,84,64,-0.7499084982340086],[121,84,65,-0.7495703331207733],[121,84,66,-0.7492345582194533],[121,84,67,-0.7489011794416836],[121,84,68,-0.7485702026060647],[121,84,69,-0.7482416334377358],[121,84,70,-0.7479154775679291],[121,84,71,-0.7475917405335308],[121,84,72,-0.74727042777664],[121,84,73,-0.7469515446441416],[121,84,74,-0.7466350963872515],[121,84,75,-0.746321088161092],[121,84,76,-0.746009525024254],[121,84,77,-0.7457004119383616],[121,84,78,-0.7453937537676392],[121,84,79,-0.7450895552784742],[121,85,64,-0.7500513179824997],[121,85,65,-0.7497128259799235],[121,85,66,-0.7493767237319968],[121,85,67,-0.749043017154635],[121,85,68,-0.7487117120707395],[121,85,69,-0.74838281420977],[121,85,70,-0.7480563292072994],[121,85,71,-0.7477322626045741],[121,85,72,-0.747410619848073],[121,85,73,-0.7470914062890812],[121,85,74,-0.7467746271832345],[121,85,75,-0.7464602876900945],[121,85,76,-0.7461483928727121],[121,85,77,-0.7458389476971901],[121,85,78,-0.7455319570322523],[121,85,79,-0.7452274256488055],[121,86,64,-0.7501943052866631],[121,86,65,-0.7498554874159136],[121,86,66,-0.7495190588388944],[121,86,67,-0.7491850254757849],[121,86,68,-0.748853393153771],[121,86,69,-0.7485241676066157],[121,86,70,-0.7481973544742158],[121,86,71,-0.7478729593021619],[121,86,72,-0.7475509875412969],[121,86,73,-0.7472314445472898],[121,86,74,-0.7469143355801802],[121,86,75,-0.746599665803954],[121,86,76,-0.7462874402861057],[121,86,77,-0.7459776639972024],[121,86,78,-0.7456703418104522],[121,86,79,-0.7453654785012653],[121,87,64,-0.7503374600052484],[121,87,65,-0.74999831729045],[121,87,66,-0.7496615634048001],[121,87,67,-0.7493272042727248],[121,87,68,-0.7489952457256769],[121,87,69,-0.7486656935017071],[121,87,70,-0.7483385532450193],[121,87,71,-0.7480138305055317],[121,87,72,-0.7476915307384349],[121,87,73,-0.7473716593037659],[121,87,74,-0.7470542214659524],[121,87,75,-0.7467392223933884],[121,87,76,-0.7464266671579971],[121,87,77,-0.7461165607347945],[121,87,78,-0.7458089080014567],[121,87,79,-0.7455037137378837],[121,88,64,-0.7504807819949739],[121,88,65,-0.7501413154632021],[121,88,66,-0.7498042372923239],[121,88,67,-0.7494695534109953],[121,88,68,-0.7491372696549192],[121,88,69,-0.7488073917664168],[121,88,70,-0.7484799253939828],[121,88,71,-0.7481548760918464],[121,88,72,-0.74783224931953],[121,88,73,-0.7475120504414221],[121,88,74,-0.7471942847263228],[121,88,75,-0.7468789573470186],[121,88,76,-0.7465660733798454],[121,88,77,-0.7462556378042525],[121,88,78,-0.7459476555023699],[121,88,79,-0.7456421312585712],[121,89,64,-0.7506242711105086],[121,89,65,-0.7502844817917833],[121,89,66,-0.749947080362014],[121,89,67,-0.7496120727540693],[121,89,68,-0.7492794648078853],[121,89,69,-0.7489492622700368],[121,89,70,-0.7486214707932927],[121,89,71,-0.7482960959361769],[121,89,72,-0.7479731431625268],[121,89,73,-0.747652617841067],[121,89,74,-0.7473345252449533],[121,89,75,-0.7470188705513492],[121,89,76,-0.746705658840988],[121,89,77,-0.7463948950977364],[121,89,78,-0.7460865842081629],[121,89,79,-0.7457807309611],[121,90,64,-0.7507679272045295],[121,90,65,-0.750427816131809],[121,90,66,-0.7500900924724143],[121,90,67,-0.7497547621634091],[121,90,68,-0.749421831048946],[121,90,69,-0.7490913048798362],[121,90,70,-0.7487631893131066],[121,90,71,-0.7484374899115589],[121,90,72,-0.7481142121433295],[121,90,73,-0.7477933613814622],[121,90,74,-0.7474749429034534],[121,90,75,-0.7471589618908272],[121,90,76,-0.7468454234286984],[121,90,77,-0.7465343325053362],[121,90,78,-0.7462256940117318],[121,90,79,-0.7459195127411616],[121,91,64,-0.7509117501276958],[121,91,65,-0.7505713183368705],[121,91,66,-0.7502332734800379],[121,91,67,-0.7498976214984402],[121,91,68,-0.7495643682404289],[121,91,69,-0.7492335194610353],[121,91,70,-0.7489050808215271],[121,91,71,-0.7485790578889673],[121,91,72,-0.7482554561357749],[121,91,73,-0.7479342809392968],[121,91,74,-0.7476155375813537],[121,91,75,-0.7472992312478145],[121,91,76,-0.7469853670281599],[121,91,77,-0.7466739499150459],[121,91,78,-0.7463649848038711],[121,91,79,-0.7460584764923404],[121,92,64,-0.751055739728673],[121,92,65,-0.7507149882585585],[121,92,66,-0.7503766232393916],[121,92,67,-0.7500406506165753],[121,92,68,-0.7497070762426432],[121,92,69,-0.7493759058768295],[121,92,70,-0.7490471451846255],[121,92,71,-0.7487207997373397],[121,92,72,-0.7483968750116567],[121,92,73,-0.7480753763892107],[121,92,74,-0.7477563091561299],[121,92,75,-0.7474396785026126],[121,92,76,-0.7471254895224895],[121,92,77,-0.7468137472127874],[121,92,78,-0.7465044564732973],[121,92,79,-0.7461976221061375],[121,93,64,-0.7511998958541065],[121,93,65,-0.7508588257464378],[121,93,66,-0.7505201416029494],[121,93,67,-0.750183849373188],[121,93,68,-0.7498499549138522],[121,93,69,-0.749518463988362],[121,93,70,-0.7491893822664156],[121,93,71,-0.7488627153235501],[121,93,72,-0.7485384686406993],[121,93,73,-0.7482166476037679],[121,93,74,-0.7478972575031763],[121,93,75,-0.7475803035334356],[121,93,76,-0.7472657907927106],[121,93,77,-0.7469537242823837],[121,93,78,-0.7466441089066227],[121,93,79,-0.7463369494719434],[121,94,64,-0.7513442183486789],[121,94,65,-0.7510028306481038],[121,94,66,-0.75066382842121],[121,94,67,-0.7503272176216709],[121,94,68,-0.7499930041103321],[121,94,69,-0.7496611936547828],[121,94,70,-0.7493317919289115],[121,94,71,-0.7490048045124664],[121,94,72,-0.7486802368906147],[121,94,73,-0.7483580944535151],[121,94,74,-0.7480383824958634],[121,94,75,-0.7477211062164678],[121,94,76,-0.7474062707178117],[121,94,77,-0.7470938810056169],[121,94,78,-0.7467839419884126],[121,94,79,-0.746476458477097],[121,95,64,-0.7514887070550929],[121,95,65,-0.7511470028091655],[121,95,66,-0.7508076835426795],[121,95,67,-0.7504707552134167],[121,95,68,-0.7501362236863534],[121,95,69,-0.7498040947332301],[121,95,70,-0.7494743740321088],[121,95,71,-0.7491470671669328],[121,95,72,-0.748822179627085],[121,95,73,-0.7484997168069621],[121,95,74,-0.7481796840055195],[121,95,75,-0.7478620864258461],[121,95,76,-0.7475469291747274],[121,95,77,-0.7472342172622097],[121,95,78,-0.7469239556011673],[121,95,79,-0.7466161490068659],[121,96,64,-0.7516333618140528],[121,96,65,-0.7512913420732273],[121,96,66,-0.7509517068138524],[121,96,67,-0.750614461997801],[121,96,68,-0.7502796134941624],[121,96,69,-0.7499471670788119],[121,96,70,-0.7496171284339679],[121,96,71,-0.7492895031477509],[121,96,72,-0.7489642967137442],[121,96,73,-0.7486415145305656],[121,96,74,-0.7483211619014132],[121,96,75,-0.7480032440336408],[121,96,76,-0.7476877660383205],[121,96,77,-0.7473747329298067],[121,96,78,-0.7470641496253035],[121,96,79,-0.7467560209444285],[121,97,64,-0.7517781824643225],[121,97,65,-0.7514358482819467],[121,97,66,-0.75109589807927],[121,97,67,-0.7507583378222397],[121,97,68,-0.7504231733840402],[121,97,69,-0.7500904105446644],[121,97,70,-0.7497600549904698],[121,97,71,-0.7494321123137383],[121,97,72,-0.7491065880122357],[121,97,73,-0.7487834874887846],[121,97,74,-0.7484628160508101],[121,97,75,-0.7481445789099143],[121,97,76,-0.7478287811814397],[121,97,77,-0.7475154278840329],[121,97,78,-0.7472045239392127],[121,97,79,-0.7468960741709323],[121,98,64,-0.7519231688426989],[121,98,65,-0.7515805212750073],[121,98,66,-0.7512402571814941],[121,98,67,-0.7509023825321625],[121,98,68,-0.750566903204275],[121,98,69,-0.7502338249819249],[121,98,70,-0.7499031535555916],[121,98,71,-0.7495748945217013],[121,98,72,-0.7492490533821858],[121,98,73,-0.7489256355440561],[121,98,74,-0.7486046463189472],[121,98,75,-0.7482860909226936],[121,98,76,-0.7479699744748924],[121,98,77,-0.7476563019984664],[121,98,78,-0.7473450784192331],[121,98,79,-0.7470363085654663],[121,99,64,-0.7520683207840364],[121,99,65,-0.7517253608901444],[121,99,66,-0.7513847839611306],[121,99,67,-0.7510465959710371],[121,99,68,-0.7507108028011868],[121,99,69,-0.750377410239756],[121,99,70,-0.7500464239813291],[121,99,71,-0.7497178496264592],[121,99,72,-0.7493916926812277],[121,99,73,-0.7490679585568171],[121,99,74,-0.7487466525690559],[121,99,75,-0.748427779937995],[121,99,76,-0.7481113457874695],[121,99,77,-0.7477973551446628],[121,99,78,-0.7474858129396751],[121,99,79,-0.7471767240050855],[121,100,64,-0.7522136381212197],[121,100,65,-0.7518703669631166],[121,100,66,-0.7515294782568033],[121,100,67,-0.7511909779803425],[121,100,68,-0.7508548720191007],[121,100,69,-0.7505211661653193],[121,100,70,-0.7501898661176705],[121,100,71,-0.7498609774808177],[121,100,72,-0.7495345057649747],[121,100,73,-0.7492104563854788],[121,100,74,-0.7488888346623359],[121,100,75,-0.7485696458197966],[121,100,76,-0.7482528949859177],[121,100,77,-0.7479385871921276],[121,100,78,-0.7476267273727932],[121,100,79,-0.7473173203647829],[121,101,64,-0.7523591206852225],[121,101,65,-0.7520155393277652],[121,101,66,-0.7516743399052116],[121,101,67,-0.7513355283996273],[121,101,68,-0.7509991107004046],[121,101,69,-0.7506650926038327],[121,101,70,-0.7503334798126546],[121,101,71,-0.7500042779356267],[121,101,72,-0.7496774924870783],[121,101,73,-0.7493531288864848],[121,101,74,-0.749031192458013],[121,101,75,-0.7487116884300964],[121,101,76,-0.7483946219349982],[121,101,77,-0.7480799980083748],[121,101,78,-0.7477678215888443],[121,101,79,-0.7474580975175492],[121,102,64,-0.7525047683050887],[121,102,65,-0.7521608778159953],[121,102,66,-0.7518193687411122],[121,102,67,-0.7514802470664907],[121,102,68,-0.7511435186855309],[121,102,69,-0.7508091893985527],[121,102,70,-0.7504772649123522],[121,102,71,-0.7501477508397618],[121,102,72,-0.7498206526992094],[121,102,73,-0.7494959759142918],[121,102,74,-0.74917372581332],[121,102,75,-0.7488539076288943],[121,102,76,-0.7485365264974672],[121,102,77,-0.7482215874589078],[121,102,78,-0.7479090954560694],[121,102,79,-0.7475990553343526],[121,103,64,-0.7526505808079151],[121,103,65,-0.7523063822577578],[121,103,66,-0.7519645645973014],[121,103,67,-0.751625133816565],[121,103,68,-0.7512880958129389],[121,103,69,-0.7509534563907557],[121,103,70,-0.7506212212608478],[121,103,71,-0.7502913960401063],[121,103,72,-0.7499639862510407],[121,103,73,-0.7496389973213522],[121,103,74,-0.7493164345834794],[121,103,75,-0.7489963032741728],[121,103,76,-0.7486786085340584],[121,103,77,-0.7483633554072014],[121,103,78,-0.7480505488406746],[121,103,79,-0.7477401936841205],[121,104,64,-0.7527965580189087],[121,104,65,-0.7524520524811075],[121,104,66,-0.752109927304673],[121,104,67,-0.7517701884835735],[121,104,68,-0.7514328419191717],[121,104,69,-0.7510978934197964],[121,104,70,-0.7507653487002979],[121,104,71,-0.750435213381609],[121,104,72,-0.7501074929903038],[121,104,73,-0.7497821929581713],[121,104,74,-0.7494593186217605],[121,104,75,-0.749138875221956],[121,104,76,-0.7488208679035406],[121,104,77,-0.7485053017147599],[121,104,78,-0.7481921816068895],[121,104,79,-0.7478815124337986],[121,105,64,-0.7529426997613595],[121,105,65,-0.7525978883121761],[121,105,66,-0.7522554566921906],[121,105,67,-0.751915410899303],[121,105,68,-0.7515777568388308],[121,105,69,-0.7512425003230805],[121,105,70,-0.7509096470709036],[121,105,71,-0.7505792027072573],[121,105,72,-0.750251172762763],[121,105,73,-0.7499255626732806],[121,105,74,-0.7496023777794529],[121,105,75,-0.7492816233262819],[121,105,76,-0.7489633044626909],[121,105,77,-0.7486474262410893],[121,105,78,-0.7483339936169399],[121,105,79,-0.7480230114483228],[121,106,64,-0.7530890058566665],[121,106,65,-0.752743889575197],[121,106,66,-0.7524011525869134],[121,106,67,-0.7520608008936291],[121,106,68,-0.7517228404045989],[121,106,69,-0.7513872769360892],[121,106,70,-0.7510541162109354],[121,106,71,-0.7507233638581015],[121,106,72,-0.7503950254122391],[121,106,73,-0.7500691063132621],[121,106,74,-0.7497456119058905],[121,106,75,-0.7494245474392265],[121,106,76,-0.7491059180663181],[121,106,77,-0.7487897288437219],[121,106,78,-0.748475984731072],[121,106,79,-0.7481646905906431],[121,107,64,-0.753235476124309],[121,107,65,-0.7528900560924776],[121,107,66,-0.7525470148139679],[121,107,67,-0.7522063582944887],[121,107,68,-0.7518680924472136],[121,107,69,-0.7515322230923523],[121,107,70,-0.7511987559567057],[121,107,71,-0.7508676966732273],[121,107,72,-0.7505390507805825],[121,107,73,-0.7502128237227211],[121,107,74,-0.7498890208484239],[121,107,75,-0.7495676474108772],[121,107,76,-0.7492487085672361],[121,107,77,-0.7489322093781888],[121,107,78,-0.7486181548075247],[121,107,79,-0.7483065497216967],[121,108,64,-0.753382110381906],[121,108,65,-0.7530363876844582],[121,108,66,-0.7526930431966066],[121,108,67,-0.7523520829279376],[121,108,68,-0.752013512795526],[121,108,69,-0.7516773386235058],[121,108,70,-0.7513435661426269],[121,108,71,-0.7510122009898148],[121,108,72,-0.7506832487077306],[121,108,73,-0.7503567147443442],[121,108,74,-0.7500326044524794],[121,108,75,-0.7497109230893899],[121,108,76,-0.7493916758163222],[121,108,77,-0.7490748676980789],[121,108,78,-0.7487605037025884],[121,108,79,-0.7484485887004666],[121,109,64,-0.7535289084451972],[121,109,65,-0.7531828841696933],[121,109,66,-0.7528392375561901],[121,109,67,-0.7524979746181334],[121,109,68,-0.7521591012764811],[121,109,69,-0.7518226233592743],[121,109,70,-0.7514885466011936],[121,109,71,-0.7511568766431191],[121,109,72,-0.7508276190316907],[121,109,73,-0.7505007792188809],[121,109,74,-0.7501763625615399],[121,109,75,-0.7498543743209718],[121,109,76,-0.7495348196624976],[121,109,77,-0.7492177036550187],[121,109,78,-0.748903031270586],[121,109,79,-0.7485908073839618],[121,110,64,-0.7536758701280247],[121,110,65,-0.7533295453648332],[121,110,66,-0.752985597712168],[121,110,67,-0.7526440331873161],[121,110,68,-0.7523048577151005],[121,110,69,-0.7519680771274516],[121,110,70,-0.7516336971629629],[121,110,71,-0.7513017234664522],[121,110,72,-0.7509721615885202],[121,110,73,-0.7506450169851249],[121,110,74,-0.7503202950171259],[121,110,75,-0.7499980009498615],[121,110,76,-0.7496781399527099],[121,110,77,-0.7493607170986549],[121,110,78,-0.7490457373638536],[121,110,79,-0.748733205627199],[121,111,64,-0.7538229952423919],[121,111,65,-0.7534763710846824],[121,111,66,-0.7531321234821371],[121,111,67,-0.7527902584558663],[121,111,68,-0.75245078193454],[121,111,69,-0.7521136997539596],[121,111,70,-0.7517790176566143],[121,111,71,-0.7514467412912412],[121,111,72,-0.7511168762123853],[121,111,73,-0.7507894278799724],[121,111,74,-0.7504644016588549],[121,111,75,-0.7501418028183877],[121,111,76,-0.7498216365319903],[121,111,77,-0.7495039078767121],[121,111,78,-0.7491886218328],[121,111,79,-0.7488757832832617],[121,112,64,-0.7539702835984357],[121,112,65,-0.7536233611421723],[121,112,66,-0.7532788146818151],[121,112,67,-0.7529366502422788],[121,112,68,-0.7525968737560627],[121,112,69,-0.752259491062821],[121,112,70,-0.7519245079089207],[121,112,71,-0.7515919299470013],[121,112,72,-0.7512617627355338],[121,112,73,-0.750934011738395],[121,112,74,-0.7506086823244129],[121,112,75,-0.7502857797669422],[121,112,76,-0.7499653092434269],[121,112,77,-0.7496472758349653],[121,112,78,-0.7493316845258781],[121,112,79,-0.7490185402032712],[121,113,64,-0.7541177350044511],[121,113,65,-0.753770515348386],[121,113,66,-0.7534256711250642],[121,113,67,-0.7530832083631865],[121,113,68,-0.7527431329990629],[121,113,69,-0.7524054508761833],[121,113,70,-0.7520701677447741],[121,113,71,-0.7517372892613593],[121,113,72,-0.7514068209883189],[121,113,73,-0.7510787683934635],[121,113,74,-0.7507531368495792],[121,113,75,-0.7504299316340035],[121,113,76,-0.7501091579281883],[121,113,77,-0.7497908208172646],[121,113,78,-0.7494749252896097],[121,113,79,-0.7491614762364119],[121,114,64,-0.7542653492668643],[121,114,65,-0.7539178335125308],[121,114,66,-0.7535726926238641],[121,114,67,-0.7532299326333328],[121,114,68,-0.7528895594810396],[121,114,69,-0.7525515790142917],[121,114,70,-0.7522159969871574],[121,114,71,-0.7518828190600272],[121,114,72,-0.7515520507991728],[121,114,73,-0.7512236976763209],[121,114,74,-0.7508977650681987],[121,114,75,-0.7505742582561099],[121,114,76,-0.750253182425497],[121,114,77,-0.7499345426655067],[121,114,78,-0.7496183439685576],[121,114,79,-0.7493045912299034],[121,115,64,-0.7544131261902907],[121,115,65,-0.7540653154419963],[121,115,66,-0.7537198789883702],[121,115,67,-0.7533768228656307],[121,115,68,-0.7530361530176545],[121,115,69,-0.7526978752955478],[121,115,70,-0.7523619954572032],[121,115,71,-0.7520285191668601],[121,115,72,-0.751697451994664],[121,115,73,-0.7513687994162406],[121,115,74,-0.7510425668122409],[121,115,75,-0.7507187594679173],[121,115,76,-0.7503973825726867],[121,115,77,-0.7500784412196948],[121,115,78,-0.7497619404053845],[121,115,79,-0.7494478850290587],[121,116,64,-0.7545610655775167],[121,116,65,-0.7542129609423367],[121,116,66,-0.7538672300268959],[121,116,67,-0.7535238788711437],[121,116,68,-0.7531829134227128],[121,116,69,-0.7528443395364903],[121,116,70,-0.7525081629741751],[121,116,71,-0.7521743894038374],[121,116,72,-0.7518430243994793],[121,116,73,-0.7515140734406075],[121,116,74,-0.7511875419117799],[121,116,75,-0.750863435102181],[121,116,76,-0.7505417582051843],[121,116,77,-0.7502225163179183],[121,116,78,-0.7499057144408332],[121,116,79,-0.7495913574772655],[121,117,64,-0.7547091672294812],[121,117,65,-0.7543607698172513],[121,117,66,-0.7540147455458929],[121,117,67,-0.7536711004590675],[121,117,68,-0.7533298405081456],[121,117,69,-0.7529909715517771],[121,117,70,-0.7526544993554488],[121,117,71,-0.7523204295910444],[121,117,72,-0.7519887678364044],[121,117,73,-0.7516595195748997],[121,117,74,-0.7513326901949773],[121,117,75,-0.7510082849897364],[121,117,76,-0.7506863091564907],[121,117,77,-0.7503667677963342],[121,117,78,-0.7500496659137085],[121,117,79,-0.7497350084159666],[121,118,64,-0.7548574309453333],[121,118,65,-0.7545087418686435],[121,118,66,-0.7541624253500099],[121,118,67,-0.753818487436788],[121,118,68,-0.7534769340840675],[121,118,69,-0.7531377711542429],[121,118,70,-0.7528010044165707],[121,118,71,-0.7524666395467304],[121,118,72,-0.7521346821263832],[121,118,73,-0.7518051376427464],[121,118,74,-0.7514780114881389],[121,118,75,-0.7511533089595573],[121,118,76,-0.750831035258239],[121,118,77,-0.7505111954892263],[121,118,78,-0.7501937946609356],[121,118,79,-0.74987883768472],[121,119,64,-0.7550058565224149],[121,119,65,-0.754656876896602],[121,119,66,-0.7543102692420746],[121,119,67,-0.7539660396098633],[121,119,68,-0.7536241939587583],[121,119,69,-0.7532847381548808],[121,119,70,-0.7529476779712393],[121,119,71,-0.7526130190872902],[121,119,72,-0.7522807670884981],[121,119,73,-0.7519509274659092],[121,119,74,-0.7516235056156969],[121,119,75,-0.7512985068387382],[121,119,76,-0.7509759363401762],[121,119,77,-0.7506557992289857],[121,119,78,-0.7503381005175406],[121,119,79,-0.7500228451211778],[121,120,64,-0.7551544437562412],[121,120,65,-0.7548051746993822],[121,120,66,-0.7544582770230741],[121,120,67,-0.754113756782004],[121,120,68,-0.7537716199386444],[121,120,69,-0.7534318723628243],[121,120,70,-0.7530945198312857],[121,120,71,-0.7527595680272449],[121,120,72,-0.7524270225399518],[121,120,73,-0.7520968888642634],[121,120,74,-0.7517691724001907],[121,120,75,-0.7514438784524733],[121,120,76,-0.7511210122301437],[121,120,77,-0.7508005788460914],[121,120,78,-0.7504825833166316],[121,120,79,-0.7501670305610685],[121,121,64,-0.7553031924405591],[121,121,65,-0.7549536350734647],[121,121,66,-0.7546064484922141],[121,121,67,-0.7542616387551327],[121,121,68,-0.7539192118283566],[121,121,69,-0.753579173585404],[121,121,70,-0.753241529806733],[121,121,71,-0.752906286179301],[121,121,72,-0.7525734482961253],[121,121,73,-0.7522430216558565],[121,121,74,-0.7519150116623253],[121,121,75,-0.751589423624117],[121,121,76,-0.7512662627541359],[121,121,77,-0.7509455341691696],[121,121,78,-0.7506272428894577],[121,121,79,-0.7503113938382551],[121,122,64,-0.7554521023673207],[121,122,65,-0.7551022578135277],[121,122,66,-0.7547547834468914],[121,122,67,-0.7544096853293563],[121,122,68,-0.7540669694307034],[121,122,69,-0.7537266416281225],[121,122,70,-0.7533887077057684],[121,122,71,-0.7530531733543222],[121,122,72,-0.7527200441705506],[121,122,73,-0.7523893256568804],[121,122,74,-0.752061023220944],[121,122,75,-0.751735142175155],[121,122,76,-0.7514116877362726],[121,122,77,-0.7510906650249657],[121,122,78,-0.750772079065381],[121,122,79,-0.7504559347847075],[121,123,64,-0.755601173326707],[121,123,65,-0.7552510427124717],[121,123,66,-0.7549032816827178],[121,123,67,-0.7545578963029898],[121,123,68,-0.7542148925466952],[121,123,69,-0.7538742762946765],[121,123,70,-0.7535360533347674],[121,123,71,-0.7532002293613543],[121,123,72,-0.7528668099749356],[121,123,73,-0.752535800681696],[121,123,74,-0.7522072068930523],[121,123,75,-0.7518810339252294],[121,123,76,-0.7515572869988237],[121,123,77,-0.7512359712383683],[121,123,78,-0.7509170916719005],[121,123,79,-0.7506006532305266],[121,124,64,-0.7557504051071002],[121,124,65,-0.7553999895613919],[121,124,66,-0.755051942993493],[121,124,67,-0.7547062714725292],[121,124,68,-0.7543629809755162],[121,124,69,-0.7540220773869304],[121,124,70,-0.7536835664982662],[121,124,71,-0.7533474540075968],[121,124,72,-0.7530137455191348],[121,124,73,-0.7526824465428047],[121,124,74,-0.7523535624937903],[121,124,75,-0.7520270986921099],[121,124,76,-0.7517030603621803],[121,124,77,-0.7513814526323812],[121,124,78,-0.7510622805346242],[121,124,79,-0.7507455490039161],[121,125,64,-0.7558997974951436],[121,125,65,-0.7555490981496368],[121,125,66,-0.7552007671712629],[121,125,67,-0.7548548106327104],[121,125,68,-0.7545112345145837],[121,125,69,-0.7541700447049748],[121,125,70,-0.7538312469990204],[121,125,71,-0.7534948470984627],[121,125,72,-0.7531608506112095],[121,125,73,-0.7528292630509081],[121,125,74,-0.7525000898364913],[121,125,75,-0.7521733362917534],[121,125,76,-0.7518490076449141],[121,125,77,-0.7515271090281832],[121,125,78,-0.7512076454773288],[121,125,79,-0.7508906219312417],[121,126,64,-0.7560493502757213],[121,126,65,-0.7556983682647893],[121,126,66,-0.7553497540063016],[121,126,67,-0.7550035135764899],[121,126,68,-0.7546596529595289],[121,126,69,-0.7543181780471074],[121,126,70,-0.7539790946379863],[121,126,71,-0.753642408437558],[121,126,72,-0.7533081250574083],[121,126,73,-0.7529762500148884],[121,126,74,-0.752646788732663],[121,126,75,-0.7523197465382847],[121,126,76,-0.7519951286637587],[121,126,77,-0.7516729402451074],[121,126,78,-0.7513531863219391],[121,126,79,-0.7510358718370114],[121,127,64,-0.7561990632319402],[121,127,65,-0.7558477996926483],[121,127,66,-0.7554989032870914],[121,127,67,-0.7551523800950258],[121,127,68,-0.7548082361041777],[121,127,69,-0.7544664772098144],[121,127,70,-0.7541271092143015],[121,127,71,-0.7537901378266643],[121,127,72,-0.7534555686621475],[121,127,73,-0.7531234072417894],[121,127,74,-0.7527936589919678],[121,127,75,-0.7524663292439766],[121,127,76,-0.7521414232335892],[121,127,77,-0.7518189461006233],[121,127,78,-0.7514989028885097],[121,127,79,-0.7511812985438567],[121,128,64,-0.7563489361451886],[121,128,65,-0.7559973922172865],[121,128,66,-0.755648214800382],[121,128,67,-0.7553014099777372],[121,128,68,-0.7549569837406102],[121,128,69,-0.7546149419878283],[121,128,70,-0.7542752905253438],[121,128,71,-0.753938035065796],[121,128,72,-0.753603181228071],[121,128,73,-0.7532707345368751],[121,128,74,-0.7529407004222824],[121,128,75,-0.7526130842193101],[121,128,76,-0.752287891167482],[121,128,77,-0.7519651264103943],[121,128,78,-0.7516447949952835],[121,128,79,-0.7513269018725912],[121,129,64,-0.7564989687951087],[121,129,65,-0.7561471456210239],[121,129,66,-0.7557976883311635],[121,129,67,-0.7554506030122756],[121,129,68,-0.7551058956591323],[121,129,69,-0.7547635721741015],[121,129,70,-0.7544236383667038],[121,129,71,-0.7540860999531739],[121,129,72,-0.753750962556021],[121,129,73,-0.7534182317036022],[121,129,74,-0.7530879128296692],[121,129,75,-0.752760011272945],[121,129,76,-0.7524345322766867],[121,129,77,-0.7521114809882511],[121,129,78,-0.7517908624586638],[121,129,79,-0.7514726816421823],[121,130,64,-0.7566491609596209],[121,130,65,-0.7562970596844516],[121,130,66,-0.7559473236626896],[121,130,67,-0.7555999589845503],[121,130,68,-0.7552549716483004],[121,130,69,-0.7549123675598296],[121,130,70,-0.7545721525322084],[121,130,71,-0.7542343322852487],[121,130,72,-0.753898912445064],[121,130,73,-0.7535658985436442],[121,130,74,-0.7532352960184011],[121,130,75,-0.7529071102117454],[121,130,76,-0.7525813463706499],[121,130,77,-0.7522580096462153],[121,130,78,-0.7519371050932382],[121,130,79,-0.751618637669776],[121,131,64,-0.7567995124148956],[121,131,65,-0.7564471341864036],[121,131,66,-0.7560971205764505],[121,131,67,-0.7557494776786996],[121,131,68,-0.755404211494893],[121,131,69,-0.7550613279344239],[121,131,70,-0.7547208328138937],[121,131,71,-0.7543827318566727],[121,131,72,-0.7540470306924613],[121,131,73,-0.7537137348568632],[121,131,74,-0.7533828497909327],[121,131,75,-0.7530543808407504],[121,131,76,-0.7527283332569875],[121,131,77,-0.7524047121944706],[121,131,78,-0.7520835227117508],[121,131,79,-0.7517647697706679],[121,132,64,-0.7569500229354134],[121,132,65,-0.756597368904017],[121,132,66,-0.756247078852232],[121,132,67,-0.7558991588771502],[121,132,68,-0.7555536149839706],[121,132,69,-0.7552104530855706],[121,132,70,-0.7548696790020635],[121,132,71,-0.7545312984603602],[121,132,72,-0.7541953170937288],[121,132,73,-0.7538617404413693],[121,132,74,-0.7535305739479603],[121,132,75,-0.7532018229632345],[121,132,76,-0.7528754927415438],[121,132,77,-0.7525515884414232],[121,132,78,-0.7522301151251612],[121,132,79,-0.7519110777583629],[121,133,64,-0.7571006922939444],[121,133,65,-0.7567477636127116],[121,133,66,-0.7563971982680957],[121,133,67,-0.7560490023605984],[121,133,68,-0.7557031818988558],[121,133,69,-0.7553597427992108],[121,133,70,-0.7550186908852703],[121,133,71,-0.7546800318874666],[121,133,72,-0.7543437714426175],[121,133,73,-0.754009915093501],[121,133,74,-0.7536784682884017],[121,133,75,-0.753349436380687],[121,133,76,-0.7530228246283713],[121,133,77,-0.7526986381936813],[121,133,78,-0.7523768821426251],[121,133,79,-0.7520575614445556],[121,134,64,-0.7572515202615304],[121,134,65,-0.7568983180861713],[121,134,66,-0.7565474786003608],[121,134,67,-0.7561990079079902],[121,134,68,-0.7558529120211144],[121,134,69,-0.7555091968595224],[121,134,70,-0.755167868250296],[121,134,71,-0.7548289319273703],[121,134,72,-0.7544923935310943],[121,134,73,-0.7541582586078058],[121,134,74,-0.7538265326093774],[121,134,75,-0.753497220892793],[121,134,76,-0.7531703287197125],[121,134,77,-0.7528458612560359],[121,134,78,-0.7525238235714738],[121,134,79,-0.7522042206391106],[121,135,64,-0.7574025066075436],[121,135,65,-0.7570490320964036],[121,135,66,-0.7566979196236621],[121,135,67,-0.756349175296581],[121,135,68,-0.7560028051306142],[121,135,69,-0.7556588150489785],[121,135,70,-0.7553172108822109],[121,135,71,-0.7549779983677313],[121,135,72,-0.7546411831494012],[121,135,73,-0.7543067707770997],[121,135,74,-0.7539747667062695],[121,135,75,-0.7536451762974933],[121,135,76,-0.7533180048160579],[121,135,77,-0.7529932574315202],[121,135,78,-0.7526709392172753],[121,135,79,-0.7523510551501216],[121,136,64,-0.7575536510996584],[121,136,65,-0.7571999054137113],[121,136,66,-0.756848521110923],[121,136,67,-0.7564995043019074],[121,136,68,-0.7561528610054977],[121,136,69,-0.7558085971483192],[121,136,70,-0.7554667185643459],[121,136,71,-0.755127230994463],[121,136,72,-0.7547901400860265],[121,136,73,-0.7544554513924386],[121,136,74,-0.7541231703726936],[121,136,75,-0.7537933023909549],[121,136,76,-0.753465852716119],[121,136,77,-0.753140826521381],[121,136,78,-0.7528182288838042],[121,136,79,-0.7524980647838833],[121,137,64,-0.7577049535038762],[121,137,65,-0.7573509378067165],[121,137,66,-0.7569992828333796],[121,137,67,-0.7566499946978112],[121,137,68,-0.7563030794222054],[121,137,69,-0.7559585429365764],[121,137,70,-0.7556163910783162],[121,137,71,-0.755276629591757],[121,137,72,-0.7549392641277304],[121,137,73,-0.754604300243143],[121,137,74,-0.7542717434005228],[121,137,75,-0.753941598967596],[121,137,76,-0.7536138722168508],[121,137,77,-0.7532885683251035],[121,137,78,-0.752965692373067],[121,137,79,-0.7526452493449157],[121,138,64,-0.7578564135844972],[121,138,65,-0.7575021290423332],[121,138,66,-0.7571502045605523],[121,138,67,-0.7568006462564124],[121,138,68,-0.7564534601554487],[121,138,69,-0.7561086521910455],[121,138,70,-0.7557662282039941],[121,138,71,-0.7554261939420542],[121,138,72,-0.7550885550595151],[121,138,73,-0.7547533171167691],[121,138,74,-0.7544204855798597],[121,138,75,-0.7540900658200578],[121,138,76,-0.7537620631134253],[121,138,77,-0.7534364826403817],[121,138,78,-0.7531133294852728],[121,138,79,-0.752792608635935],[121,139,64,-0.7580080311041796],[121,139,65,-0.7576534788858262],[121,139,66,-0.7573012860603051],[121,139,67,-0.7569514587481667],[121,139,68,-0.7566040029782681],[121,139,69,-0.7562589246873446],[121,139,70,-0.7559162297195673],[121,139,71,-0.7555759238261051],[121,139,72,-0.7552380126646855],[121,139,73,-0.7549025017991688],[121,139,74,-0.7545693966990956],[121,139,75,-0.7542387027392632],[121,139,76,-0.7539104251992893],[121,139,77,-0.7535845692631791],[121,139,78,-0.7532611400188934],[121,139,79,-0.7529401424579136],[121,140,64,-0.7581598058239204],[121,140,65,-0.7578049871007924],[121,140,66,-0.7574525270988269],[121,140,67,-0.7571024319418482],[121,140,68,-0.7567547076620154],[121,140,69,-0.7564093601993952],[121,140,70,-0.75606639540152],[121,140,71,-0.7557258190229489],[121,140,72,-0.7553876367248291],[121,140,73,-0.7550518540744702],[121,140,74,-0.7547184765448912],[121,140,75,-0.7543875095143977],[121,140,76,-0.7540589582661459],[121,140,77,-0.7537328279877085],[121,140,78,-0.7534091237706436],[121,140,79,-0.7530878506100604],[121,141,64,-0.7583117375030359],[121,141,65,-0.75795665344914],[121,141,66,-0.7576039274406114],[121,141,67,-0.7572535656045281],[121,141,68,-0.7569055739763321],[121,141,69,-0.7565599584994025],[121,141,70,-0.7562167250246133],[121,141,71,-0.7558758793098954],[121,141,72,-0.7555374270197964],[121,141,73,-0.7552013737250567],[121,141,74,-0.754867724902156],[121,141,75,-0.7545364859328897],[121,141,76,-0.7542076621039341],[121,141,77,-0.7538812586064116],[121,141,78,-0.7535572805354609],[121,141,79,-0.7532357328898003],[121,142,64,-0.7584638258992218],[121,142,65,-0.7581084776911495],[121,142,66,-0.7577554868485168],[121,142,67,-0.7574048595016354],[121,142,68,-0.7570566016892106],[121,142,69,-0.756710719357915],[121,142,70,-0.7563672183619448],[121,142,71,-0.7560261044625832],[121,142,72,-0.7556873833277604],[121,142,73,-0.7553510605316285],[121,142,74,-0.7550171415541092],[121,142,75,-0.7546856317804698],[121,142,76,-0.7543565365008885],[121,142,77,-0.75402986091002],[121,142,78,-0.753705610106565],[121,142,79,-0.7533837890928345],[121,143,64,-0.7586160707685238],[121,143,65,-0.7582604595854445],[121,143,66,-0.7579072050837374],[121,143,67,-0.7575563133969279],[121,143,68,-0.7572077905669655],[121,143,69,-0.756861642543796],[121,143,70,-0.7565178751849195],[121,143,71,-0.7561764942549524],[121,143,72,-0.755837505425188],[121,143,73,-0.7555009142731722],[121,143,74,-0.7551667262822499],[121,143,75,-0.754834946841142],[121,143,76,-0.754505581243511],[121,143,77,-0.7541786346875251],[121,143,78,-0.7538541122754299],[121,143,79,-0.7535320190131113],[121,144,64,-0.7587684718653628],[121,144,65,-0.7584125988890167],[121,144,66,-0.758059081905828],[121,144,67,-0.757707927052517],[121,144,68,-0.757359140374257],[121,144,69,-0.7570127278242483],[121,144,70,-0.7566686952632752],[121,144,71,-0.756327048459268],[121,144,72,-0.7559877930868651],[121,144,73,-0.7556509347269866],[121,144,74,-0.7553164788663824],[121,144,75,-0.754984430897209],[121,144,76,-0.7546547961165944],[121,144,77,-0.7543275797262031],[121,144,78,-0.7540027868318075],[121,144,79,-0.7536804224428509],[121,145,64,-0.7589210289425068],[121,145,65,-0.7585648953571967],[121,145,66,-0.758211117072676],[121,145,67,-0.757859700228839],[121,145,68,-0.7575106508740638],[121,145,69,-0.7571639749647854],[121,145,70,-0.7568196783650528],[121,145,71,-0.7564777668460921],[121,145,72,-0.7561382460858668],[121,145,73,-0.7558011216686529],[121,145,74,-0.7554663990845869],[121,145,75,-0.7551340837292423],[121,145,76,-0.7548041809031943],[121,145,77,-0.7544766958115863],[121,145,78,-0.754151633563699],[121,145,79,-0.7538289991725159],[121,146,64,-0.7590737417511295],[121,146,65,-0.7587173487437148],[121,146,66,-0.7583633103405601],[121,146,67,-0.7580116326847147],[121,146,68,-0.7576623218277417],[121,146,69,-0.7573153837292911],[121,146,70,-0.7569708242566576],[121,146,71,-0.7566286491843431],[121,146,72,-0.756288864193618],[121,146,73,-0.7559514748720954],[121,146,74,-0.7556164867132795],[121,146,75,-0.7552839051161425],[121,146,76,-0.7549537353846889],[121,146,77,-0.7546259827275223],[121,146,78,-0.7543006522574147],[121,146,79,-0.7539777489908717],[121,147,64,-0.7592266100407921],[121,147,65,-0.7588699588006803],[121,147,66,-0.7585156614641319],[121,147,67,-0.7581637241773306],[121,147,68,-0.7578141529950048],[121,147,69,-0.7574669538800001],[121,147,70,-0.7571221327028376],[121,147,71,-0.7567796952412761],[121,147,72,-0.7564396471798732],[121,147,73,-0.7561019941095609],[121,147,74,-0.7557667415271924],[121,147,75,-0.7554338948351198],[121,147,76,-0.7551034593407588],[121,147,77,-0.7547754402561552],[121,147,78,-0.7544498426975542],[121,147,79,-0.7541266716849659],[121,148,64,-0.7593796335594225],[121,148,65,-0.7590227252785626],[121,148,66,-0.7586681701963949],[121,148,67,-0.7583159744622175],[121,148,68,-0.7579661441339047],[121,148,69,-0.757618685177478],[121,148,70,-0.7572736034666653],[121,148,71,-0.7569309047824629],[121,148,72,-0.7565905948126973],[121,148,73,-0.7562526791515995],[121,148,74,-0.7559171632993535],[121,148,75,-0.7555840526616731],[121,148,76,-0.7552533525493667],[121,148,77,-0.7549250681779041],[121,148,78,-0.7545992046669859],[121,148,79,-0.754275767040109],[121,149,64,-0.7595328120533755],[121,149,65,-0.7591756479262506],[121,149,66,-0.758820836288765],[121,149,67,-0.7584683832933121],[121,149,68,-0.7581182950008916],[121,149,69,-0.7577705773806813],[121,149,70,-0.7574252363095966],[121,149,71,-0.7570822775718523],[121,149,72,-0.756741706858524],[121,149,73,-0.7564035297671237],[121,149,74,-0.7560677518011469],[121,149,75,-0.7557343783696506],[121,149,76,-0.7554034147868177],[121,149,77,-0.7550748662715239],[121,149,78,-0.7547487379469072],[121,149,79,-0.7544250348399335],[121,150,64,-0.7596861452674135],[121,150,65,-0.7593287264910328],[121,150,66,-0.7589736594910508],[121,150,67,-0.7586209504229359],[121,150,68,-0.758270605350793],[121,150,69,-0.7579226302469371],[121,150,70,-0.7575770309914514],[121,150,71,-0.7572338133717494],[121,150,72,-0.7568929830821376],[121,150,73,-0.7565545457233891],[121,150,74,-0.7562185068022926],[121,150,75,-0.7558848717312298],[121,150,76,-0.7555536458277397],[121,150,77,-0.7552248343140853],[121,150,78,-0.7548984423168246],[121,150,79,-0.7545744748663741],[121,151,64,-0.7598396329446859],[121,151,65,-0.7594819607185781],[121,151,66,-0.7591266395514339],[121,151,67,-0.7587736756017761],[121,151,68,-0.7584230749367955],[121,151,69,-0.7580748435319241],[121,151,70,-0.7577289872703934],[121,151,71,-0.7573855119427967],[121,151,72,-0.7570444232466514],[121,151,73,-0.7567057267859738],[121,151,74,-0.7563694280708264],[121,151,75,-0.7560355325168968],[121,151,76,-0.7557040454450619],[121,151,77,-0.7553749720809542],[121,151,78,-0.7550483175545326],[121,151,79,-0.7547240868996477],[121,152,64,-0.7599932748267897],[121,152,65,-0.7596353503529955],[121,152,66,-0.759279776216528],[121,152,67,-0.758926558578945],[121,152,68,-0.7585757035105031],[121,152,69,-0.7582272169897313],[121,152,70,-0.7578811049029901],[121,152,71,-0.7575373730440331],[121,152,72,-0.7571960271135696],[121,152,73,-0.7568570727188391],[121,152,74,-0.7565205153731601],[121,152,75,-0.7561863604955072],[121,152,76,-0.7558546134100765],[121,152,77,-0.7555252793458518],[121,152,78,-0.7551983634361754],[121,152,79,-0.7548738707183129],[121,153,64,-0.7601470706537405],[121,153,65,-0.7597888951368046],[121,153,66,-0.7594330692313511],[121,153,67,-0.7590795991019519],[121,153,68,-0.7587284908219094],[121,153,69,-0.7583797503728305],[121,153,70,-0.758033383644184],[121,153,71,-0.7576893964328654],[121,153,72,-0.7573477944427558],[121,153,73,-0.7570085832842997],[121,153,74,-0.756671768474052],[121,153,75,-0.7563373554342561],[121,153,76,-0.7560053494924084],[121,153,77,-0.7556757558808259],[121,153,78,-0.7553485797362159],[121,153,79,-0.7550238260992419],[121,154,64,-0.7603010201639973],[121,154,65,-0.7599425948109617],[121,154,66,-0.7595865183393496],[121,154,67,-0.759232796916727],[121,154,68,-0.7588814366194221],[121,154,69,-0.7585324434320995],[121,154,70,-0.7581858232473175],[121,154,71,-0.7578415818650928],[121,154,72,-0.75749972499246],[121,154,73,-0.757160258243049],[121,154,74,-0.7568231871366324],[121,154,75,-0.7564885170987032],[121,154,76,-0.7561562534600403],[121,154,77,-0.7558264014562749],[121,154,78,-0.7554989662274617],[121,154,79,-0.7551739528176433],[121,155,64,-0.7604551230944333],[121,155,65,-0.7600964491148294],[121,155,66,-0.7597401232823693],[121,155,67,-0.7593861517675926],[121,155,68,-0.7590345406498336],[121,155,69,-0.7586852959167942],[121,155,70,-0.7583384234641031],[121,155,71,-0.7579939290948778],[121,155,72,-0.757651818519288],[121,155,73,-0.7573120973541294],[121,155,74,-0.7569747711223732],[121,155,75,-0.7566398452527436],[121,155,76,-0.7563073250792831],[121,155,77,-0.7559772158409189],[121,155,78,-0.7556495226810346],[121,155,79,-0.7553242506470346],[121,156,64,-0.7606093791803964],[121,156,65,-0.7602504577862378],[121,156,66,-0.7598938838007159],[121,156,67,-0.7595396633973237],[121,156,68,-0.7591878026583814],[121,156,69,-0.7588383075746085],[121,156,70,-0.7584911840446836],[121,156,71,-0.7581464378748068],[121,156,72,-0.7578040747782622],[121,156,73,-0.7574641003749926],[121,156,74,-0.757126520191149],[121,156,75,-0.7567913396586678],[121,156,76,-0.7564585641148363],[121,156,77,-0.7561281988018596],[121,156,78,-0.7558002488664318],[121,156,79,-0.7554747193593008],[121,157,64,-0.7607637881556888],[121,157,65,-0.7604046205614639],[121,157,66,-0.7600477996331345],[121,157,67,-0.7596933315471274],[121,157,68,-0.7593412223887279],[121,157,69,-0.7589914781516535],[121,157,70,-0.758644104737613],[121,157,71,-0.7582991079558692],[121,157,72,-0.757956493522801],[121,157,73,-0.7576162670614797],[121,157,74,-0.7572784341012165],[121,157,75,-0.7569430000771412],[121,157,76,-0.7566099703297676],[121,157,77,-0.75627935010456],[121,157,78,-0.7559511445515049],[121,157,79,-0.7556253587246754],[121,158,64,-0.7609183497525477],[121,158,65,-0.7605589371752117],[121,158,66,-0.7602018705167903],[121,158,67,-0.7598471559566231],[121,158,68,-0.7594947995829406],[121,158,69,-0.7591448073924384],[121,158,70,-0.7587971852898353],[121,158,71,-0.7584519390874374],[121,158,72,-0.7581090745046991],[121,158,73,-0.7577685971678005],[121,158,74,-0.7574305126091943],[121,158,75,-0.7570948262671848],[121,158,76,-0.7567615434854931],[121,158,77,-0.7564306695128248],[121,158,78,-0.7561022095024397],[121,158,79,-0.7557761685117188],[121,159,64,-0.7610730637017047],[121,159,65,-0.7607134073606727],[121,159,66,-0.760356096187328],[121,159,67,-0.7600011363639027],[121,159,68,-0.7596485339815522],[121,159,69,-0.75929829503993],[121,159,70,-0.7589504254467452],[121,159,71,-0.7586049310173273],[121,159,72,-0.7582618174741874],[121,159,73,-0.7579210904465942],[121,159,74,-0.7575827554701231],[121,159,75,-0.7572468179862339],[121,159,76,-0.7569132833418368],[121,159,77,-0.7565821567888591],[121,159,78,-0.7562534434838167],[121,159,79,-0.7559271484873796],[121,160,64,-0.7612279297323574],[121,160,65,-0.7608680308494966],[121,160,66,-0.7605104763788432],[121,160,67,-0.7601552725055012],[121,160,68,-0.7598024253235311],[121,160,69,-0.7594519408355237],[121,160,70,-0.7591038249521589],[121,160,71,-0.7587580834917695],[121,160,72,-0.7584147221799036],[121,160,73,-0.7580737466488998],[121,160,74,-0.7577351624374365],[121,160,75,-0.7573989749901104],[121,160,76,-0.7570651896570015],[121,160,77,-0.756733811693241],[121,160,78,-0.7564048462585817],[121,160,79,-0.7560782984169647],[121,161,64,-0.7613829475721939],[121,161,65,-0.7610228073718157],[121,161,66,-0.7606650108239068],[121,161,67,-0.760309564116422],[121,161,68,-0.7599564733463064],[121,161,69,-0.7596057445190684],[121,161,70,-0.7592573835483383],[121,161,71,-0.758911396255433],[121,161,72,-0.7585677883689175],[121,161,73,-0.7582265655241809],[121,161,74,-0.7578877332629859],[121,161,75,-0.7575512970330464],[121,161,76,-0.7572172621875939],[121,161,77,-0.7568856339849445],[121,161,78,-0.7565564175880698],[121,161,79,-0.7562296180641637],[121,162,64,-0.7615381169473633],[121,162,65,-0.7611777366562169],[121,162,66,-0.7608196992535361],[121,162,67,-0.7604640109301072],[121,162,68,-0.7601106777857389],[121,162,69,-0.759759705828837],[121,162,70,-0.7594111009759624],[121,162,71,-0.7590648690513961],[121,162,72,-0.7587210157867006],[121,162,73,-0.7583795468202961],[121,162,74,-0.75804046769701],[121,162,75,-0.7577037838676547],[121,162,76,-0.7573695006885941],[121,162,77,-0.7570376234213105],[121,162,78,-0.7567081572319763],[121,162,79,-0.7563811071910191],[121,163,64,-0.7616934375825364],[121,163,65,-0.7613328184298002],[121,163,66,-0.7609745413972551],[121,163,67,-0.7606186126784977],[121,163,68,-0.7602650383761809],[121,163,69,-0.7599138245015866],[121,163,70,-0.7595649769741872],[121,163,71,-0.7592185016212074],[121,163,72,-0.7588744041771875],[121,163,73,-0.7585326902835596],[121,163,74,-0.7581933654881963],[121,163,75,-0.7578564352449897],[121,163,76,-0.757521904913417],[121,163,77,-0.7571897797581081],[121,163,78,-0.756860064948417],[121,163,79,-0.756532765557988],[121,164,64,-0.7618489092008855],[121,164,65,-0.7614880524181598],[121,164,66,-0.7611295369830737],[121,164,67,-0.7607733690920138],[121,164,68,-0.7604195548504558],[121,164,69,-0.7600681002725388],[121,164,70,-0.7597190112806254],[121,164,71,-0.7593722937048647],[121,164,72,-0.7590279532827551],[121,164,73,-0.7586859956587206],[121,164,74,-0.7583464263836606],[121,164,75,-0.7580092509145266],[121,164,76,-0.757674474613891],[121,164,77,-0.7573421027495124],[121,164,78,-0.757012140493908],[121,164,79,-0.7566845929239198],[121,165,64,-0.7620045315240648],[121,165,65,-0.7616434383453641],[121,165,66,-0.7612846857374688],[121,165,67,-0.7609282798995342],[121,165,68,-0.7605742269398389],[121,165,69,-0.7602225328753586],[121,165,70,-0.7598732036313262],[121,165,71,-0.7595262450407949],[121,165,72,-0.7591816628442017],[121,165,73,-0.7588394626889432],[121,165,74,-0.7584996501289254],[121,165,75,-0.7581622306241413],[121,165,76,-0.7578272095402384],[121,165,77,-0.7574945921480855],[121,165,78,-0.7571643836233445],[121,165,79,-0.7568365890460367],[121,166,64,-0.7621603042722692],[121,166,65,-0.7617989759340149],[121,166,66,-0.7614399873854427],[121,166,67,-0.7610833448284566],[121,166,68,-0.7607290543741168],[121,166,69,-0.7603771220422154],[121,166,70,-0.7600275537608354],[121,166,71,-0.7596803553659147],[121,166,72,-0.7593355326008085],[121,166,73,-0.7589930911158667],[121,166,74,-0.7586530364679822],[121,166,75,-0.7583153741201702],[121,166,76,-0.7579801094411349],[121,166,77,-0.757647247704836],[121,166,78,-0.7573167940900617],[121,166,79,-0.7569887536799942],[121,167,64,-0.7623162271642068],[121,167,65,-0.7619546649052193],[121,167,66,-0.7615954416504963],[121,167,67,-0.7612385636046686],[121,167,68,-0.7608840368815584],[121,167,69,-0.7605318675037536],[121,167,70,-0.7601820614021669],[121,167,71,-0.7598346244156008],[121,167,72,-0.7594895622903094],[121,167,73,-0.7591468806795755],[121,167,74,-0.7588065851432603],[121,167,75,-0.7584686811473815],[121,167,76,-0.7581331740636807],[121,167,77,-0.7578000691691902],[121,167,78,-0.7574693716458054],[121,167,79,-0.7571410865798509],[121,168,64,-0.7624722999171223],[121,168,65,-0.7621105049786139],[121,168,66,-0.7617510482546512],[121,168,67,-0.761393935952572],[121,168,68,-0.7610391741889394],[121,168,69,-0.7606867689891166],[121,168,70,-0.7603367262868262],[121,168,71,-0.7599890519237149],[121,168,72,-0.7596437516489155],[121,168,73,-0.7593008311186247],[121,168,74,-0.7589602958956522],[121,168,75,-0.758622151448999],[121,168,76,-0.7582864031534249],[121,168,77,-0.7579530562890159],[121,168,78,-0.7576221160407559],[121,168,79,-0.7572935874980936],[121,169,64,-0.7626285222467687],[121,169,65,-0.7622664958723352],[121,169,66,-0.7619068069184223],[121,169,67,-0.7615494615950539],[121,169,68,-0.7611944660215132],[121,169,69,-0.7608418262259183],[121,169,70,-0.7604915481447815],[121,169,71,-0.7601436376225735],[121,169,72,-0.7597981004112861],[121,169,73,-0.7594549421700102],[121,169,74,-0.759114168464484],[121,169,75,-0.7587757847666727],[121,169,76,-0.7584397964543357],[121,169,77,-0.758106208810593],[121,169,78,-0.7577750270234986],[121,169,79,-0.7574462561856067],[121,170,64,-0.762784893867467],[121,170,65,-0.7624226373030805],[121,170,66,-0.7620627173608773],[121,170,67,-0.7617051402535464],[121,170,68,-0.7613499121030708],[121,170,69,-0.760997038940303],[121,170,70,-0.7606465267045242],[121,170,71,-0.7602983812430091],[121,170,72,-0.759952608310589],[121,170,73,-0.7596092135692285],[121,170,74,-0.7592682025875755],[121,170,75,-0.75892958084054],[121,170,76,-0.7585933537088607],[121,170,77,-0.758259526478674],[121,170,78,-0.7579281043410847],[121,170,79,-0.7575990923917338],[121,171,64,-0.7629414144920861],[121,171,65,-0.762578928986087],[121,171,66,-0.7622187792996163],[121,171,67,-0.761860971648007],[121,171,68,-0.7615055121559211],[121,171,69,-0.7611524068569246],[121,171,70,-0.760801661693048],[121,171,71,-0.7604532825143495],[121,171,72,-0.7601072750784796],[121,171,73,-0.7597636450502574],[121,171,74,-0.7594223980012204],[121,171,75,-0.7590835394092037],[121,171,76,-0.7587470746579074],[121,171,77,-0.7584130090364638],[121,171,78,-0.7580813477390105],[121,171,79,-0.7577520958642564],[121,172,64,-0.7630980838320227],[121,172,65,-0.7627353706351124],[121,172,66,-0.7623749924507521],[121,172,67,-0.7620169554968979],[121,172,68,-0.7616612659008699],[121,172,69,-0.7613079296989274],[121,172,70,-0.7609569528358291],[121,172,71,-0.760608341164397],[121,172,72,-0.7602621004450809],[121,172,73,-0.7599182363455341],[121,172,74,-0.7595767544401644],[121,172,75,-0.7592376602097128],[121,172,76,-0.7589009590408208],[121,172,77,-0.7585666562255982],[121,172,78,-0.7582347569611961],[121,172,79,-0.7579052663493732],[121,173,64,-0.7632549015972616],[121,173,65,-0.7628919619624946],[121,173,66,-0.7625313565289702],[121,173,67,-0.7621730915172462],[121,173,68,-0.7618171730572806],[121,173,69,-0.7614636071880051],[121,173,70,-0.7611123998568862],[121,173,71,-0.7607635569194896],[121,173,72,-0.7604170841390439],[121,173,73,-0.760072987186017],[121,173,74,-0.7597312716376674],[121,173,75,-0.7593919429776222],[121,173,76,-0.7590550065954454],[121,173,77,-0.7587204677862052],[121,173,78,-0.758388331750047],[121,173,79,-0.7580586035917607],[121,174,64,-0.7634118674963463],[121,174,65,-0.7630487026791224],[121,174,66,-0.7626878712474989],[121,174,67,-0.762329379424615],[121,174,68,-0.7619732333430449],[121,174,69,-0.7616194390443722],[121,174,70,-0.7612680024787513],[121,174,71,-0.7609189295044705],[121,174,72,-0.7605722258875175],[121,174,73,-0.7602278973011551],[121,174,74,-0.7598859493254724],[121,174,75,-0.7595463874469635],[121,174,76,-0.7592092170580951],[121,174,77,-0.7588744434568748],[121,174,78,-0.7585420718464236],[121,174,79,-0.7582121073345435],[121,175,64,-0.7635689812364035],[121,175,65,-0.7632055924944602],[121,175,66,-0.7628445363181351],[121,175,67,-0.7624858189331275],[121,175,68,-0.762129446474607],[121,175,69,-0.7617754249867887],[121,175,70,-0.7614237604224936],[121,175,71,-0.7610744586427134],[121,175,72,-0.7607275254161739],[121,175,73,-0.7603829664189132],[121,175,74,-0.7600407872338312],[121,175,75,-0.7597009933502691],[121,175,76,-0.7593635901635774],[121,175,77,-0.7590285829746837],[121,175,78,-0.7586959769896658],[121,175,79,-0.7583657773193189],[121,176,64,-0.763726242523114],[121,176,65,-0.7633626311165187],[121,176,66,-0.7630013514512138],[121,176,67,-0.7626424097554376],[121,176,68,-0.7622858121669345],[121,176,69,-0.7619315647325299],[121,176,70,-0.7615796734076912],[121,176,71,-0.7612301440560925],[121,176,72,-0.7608829824491784],[121,176,73,-0.7605381942657417],[121,176,74,-0.7601957850914733],[121,176,75,-0.7598557604185425],[121,176,76,-0.7595181256451637],[121,176,77,-0.7591828860751655],[121,176,78,-0.7588500469175632],[121,176,79,-0.7585196132861265],[121,177,64,-0.7638836510607732],[121,177,65,-0.7635198182519152],[121,177,66,-0.7631583163556691],[121,177,67,-0.762799151602791],[121,177,68,-0.7624423301335785],[121,177,69,-0.7620878579974472],[121,177,70,-0.76173574115249],[121,177,71,-0.7613859854650432],[121,177,72,-0.7610385967092499],[121,177,73,-0.7606935805666373],[121,177,74,-0.7603509426256682],[121,177,75,-0.7600106883813194],[121,177,76,-0.7596728232346504],[121,177,77,-0.7593373524923711],[121,177,78,-0.7590042813664157],[121,177,79,-0.7586736149735098],[121,178,64,-0.7640412065522699],[121,178,65,-0.7636771536058532],[121,178,66,-0.7633154307390135],[121,178,67,-0.7629560441850033],[121,178,68,-0.7625990000866534],[121,178,69,-0.7622443044959476],[121,178,70,-0.7618919633735844],[121,178,71,-0.7615419825885417],[121,178,72,-0.7611943679176404],[121,178,73,-0.7608491250451229],[121,178,74,-0.7605062595622031],[121,178,75,-0.7601657769666463],[121,178,76,-0.7598276826623371],[121,178,77,-0.7594919819588484],[121,178,78,-0.7591586800710133],[121,178,79,-0.7588277821184941],[121,179,64,-0.7641989086990669],[121,179,65,-0.7638346368821018],[121,179,66,-0.7634726943073173],[121,179,67,-0.7631130872104412],[121,179,68,-0.7627558217368159],[121,179,69,-0.7624009039409732],[121,179,70,-0.7620483397861961],[121,179,71,-0.7616981351440837],[121,179,72,-0.7613502957941145],[121,179,73,-0.7610048274232258],[121,179,74,-0.760661735625363],[121,179,75,-0.7603210259010601],[121,179,76,-0.7599827036570075],[121,179,77,-0.7596467742056207],[121,179,78,-0.7593132427646138],[121,179,79,-0.7589821144565666],[121,180,64,-0.7643567572012612],[121,180,65,-0.7639922677830568],[121,180,66,-0.7636301067652699],[121,180,67,-0.763270280386082],[121,180,68,-0.7629127947933262],[121,180,69,-0.7625576560440617],[121,180,70,-0.762204870104135],[121,180,71,-0.7618544428477455],[121,180,72,-0.76150638005701],[121,180,73,-0.7611606874215395],[121,180,74,-0.7608173705379916],[121,180,75,-0.7604764349096489],[121,180,76,-0.760137885945988],[121,180,77,-0.7598017289622482],[121,180,78,-0.7594679691790049],[121,180,79,-0.7591366117217367],[121,181,64,-0.7645147517575539],[121,181,65,-0.7641500460097104],[121,181,66,-0.7637876678161488],[121,181,67,-0.763427623417484],[121,181,68,-0.7630699189640181],[121,181,69,-0.7627145605153165],[121,181,70,-0.7623615540397688],[121,181,71,-0.7620109054141546],[121,181,72,-0.7616626204232075],[121,181,73,-0.7613167047591931],[121,181,74,-0.7609731640214605],[121,181,75,-0.7606320037160216],[121,181,76,-0.7602932292551194],[121,181,77,-0.7599568459567978],[121,181,78,-0.7596228590444738],[121,181,79,-0.7592912736465063],[121,182,64,-0.7646728920652756],[121,182,65,-0.7643079712616759],[121,182,66,-0.763945377161846],[121,182,67,-0.7635851160088115],[121,182,68,-0.7632271939553232],[121,182,69,-0.7628716170634318],[121,182,70,-0.7625183913040487],[121,182,71,-0.7621675225565134],[121,182,72,-0.761819016608156],[121,182,73,-0.7614728791538764],[121,182,74,-0.761129115795695],[121,182,75,-0.7607877320423332],[121,182,76,-0.760448733308781],[121,182,77,-0.7601121249158672],[121,182,78,-0.7597779120898316],[121,182,79,-0.7594460999618939],[121,183,64,-0.7648311778203561],[121,183,65,-0.7644660432371588],[121,183,66,-0.7641032345028363],[121,183,67,-0.7637427578628049],[121,183,68,-0.7633846194722418],[121,183,69,-0.7630288253956621],[121,183,70,-0.7626753816064789],[121,183,71,-0.7623242939865701],[121,183,72,-0.7619755683258422],[121,183,73,-0.7616292103218091],[121,183,74,-0.7612852255791429],[121,183,75,-0.760943619609254],[121,183,76,-0.7606043978298603],[121,183,77,-0.7602675655645554],[121,183,78,-0.7599331280423831],[121,183,79,-0.7596010903974049],[121,184,64,-0.764989608717386],[121,184,65,-0.7646242616330166],[121,184,66,-0.7642612395382401],[121,184,67,-0.7639005486808411],[121,184,68,-0.7635421952184029],[121,184,69,-0.7631861852178835],[121,184,70,-0.7628325246551768],[121,184,71,-0.7624812194146786],[121,184,72,-0.7621322752888515],[121,184,73,-0.7617856979778028],[121,184,74,-0.7614414930888359],[121,184,75,-0.7610996661360312],[121,184,76,-0.7607602225398137],[121,184,77,-0.7604231676265234],[121,184,78,-0.760088506627988],[121,184,79,-0.7597562446810918],[121,185,64,-0.7651481844495948],[121,185,65,-0.7647826261447386],[121,185,66,-0.7644193919658009],[121,185,67,-0.7640584881629134],[121,185,68,-0.7636999208960442],[121,185,69,-0.763343696234573],[121,185,70,-0.7629898201568536],[121,185,71,-0.7626382985497792],[121,185,72,-0.7622891372083475],[121,185,73,-0.7619423418352391],[121,185,74,-0.7615979180403691],[121,185,75,-0.7612558713404671],[121,185,76,-0.7609162071586464],[121,185,77,-0.7605789308239729],[121,185,78,-0.7602440475710395],[121,185,79,-0.7599115625395341],[121,186,64,-0.7653069047088312],[121,186,65,-0.764941136466425],[121,186,66,-0.7645776914818656],[121,186,67,-0.7642165760076105],[121,186,68,-0.7638577962059907],[121,186,69,-0.7635013581487872],[121,186,70,-0.7631472678167921],[121,186,71,-0.7627955310993757],[121,186,72,-0.7624461537940503],[121,186,73,-0.7620991416060494],[121,186,74,-0.7617545001478792],[121,186,75,-0.7614122349388991],[121,186,76,-0.7610723514048902],[121,186,77,-0.7607348548776256],[121,186,78,-0.7603997505944435],[121,186,79,-0.7600670436978165],[121,187,64,-0.7654657691856238],[121,187,65,-0.7650997922908479],[121,187,66,-0.764736137781445],[121,187,67,-0.7643748119121767],[121,187,68,-0.7640158208477159],[121,187,69,-0.7636591706622232],[121,187,70,-0.7633048673389086],[121,187,71,-0.7629529167695981],[121,187,72,-0.7626033247542983],[121,187,73,-0.7622560970007752],[121,187,74,-0.761911239124106],[121,187,75,-0.7615687566462596],[121,187,76,-0.7612286549956657],[121,187,77,-0.7608909395067843],[121,187,78,-0.7605556154196799],[121,187,79,-0.7602226878795899],[121,188,64,-0.7656247775691598],[121,188,65,-0.7652585933094306],[121,188,66,-0.7648947305581935],[121,188,67,-0.7645331955724926],[121,188,68,-0.7641739945193211],[121,188,69,-0.7638171334751984],[121,188,70,-0.7634626184257313],[121,188,71,-0.7631104552651806],[121,188,72,-0.7627606497960269],[121,188,73,-0.7624132077285477],[121,188,74,-0.7620681346803713],[121,188,75,-0.761725436176056],[121,188,76,-0.7613851176466602],[121,188,77,-0.7610471844293112],[121,188,78,-0.7607116417667805],[121,188,79,-0.7603784948070512],[121,189,64,-0.7657839295472649],[121,189,65,-0.7654175392122264],[121,189,66,-0.7650534695043872],[121,189,67,-0.7646917266830523],[121,189,68,-0.764332316917514],[121,189,69,-0.763975246286629],[121,189,70,-0.7636205207783797],[121,189,71,-0.7632681462894413],[121,189,72,-0.762918128624747],[121,189,73,-0.7625704734970662],[121,189,74,-0.7622251865265576],[121,189,75,-0.761882273240349],[121,189,76,-0.7615417390721071],[121,189,77,-0.7612035893616076],[121,189,78,-0.7608678293543085],[121,189,79,-0.7605344642009204],[121,190,64,-0.7659432248064639],[121,190,65,-0.7655766296879799],[121,190,66,-0.7652123543109859],[121,190,67,-0.7648504049370259],[121,190,68,-0.7644907877376702],[121,190,69,-0.764133508794091],[121,190,70,-0.7637785740966256],[121,190,71,-0.7634259895443426],[121,190,72,-0.763075760944607],[121,190,73,-0.7627278940126598],[121,190,74,-0.7623823943711695],[121,190,75,-0.7620392675498134],[121,190,76,-0.7616985189848471],[121,190,77,-0.761360154018674],[121,190,78,-0.7610241778994202],[121,190,79,-0.7606905957805034],[121,191,64,-0.7661026630319506],[121,191,65,-0.765735864424097],[121,191,66,-0.7653713846676027],[121,191,67,-0.7650092300262292],[121,191,68,-0.7646494066738028],[121,191,69,-0.7642919206937904],[121,191,70,-0.763936778078863],[121,191,71,-0.7635839847304613],[121,191,72,-0.7632335464583622],[121,191,73,-0.7628854689802567],[121,191,74,-0.7625397579213035],[121,191,75,-0.7621964188137089],[121,191,76,-0.7618554570962974],[121,191,77,-0.7615168781140808],[121,191,78,-0.7611806871178333],[121,191,79,-0.7608468892636604],[121,192,64,-0.7662622439076129],[121,192,65,-0.7658952431066695],[121,192,66,-0.7655305602625285],[121,192,67,-0.7651682016411475],[121,192,68,-0.764808173418587],[121,192,69,-0.7644504816805875],[121,192,70,-0.7640951324221322],[121,192,71,-0.7637421315470135],[121,192,72,-0.7633914848673986],[121,192,73,-0.7630431981034087],[121,192,74,-0.7626972768826719],[121,192,75,-0.7623537267399035],[121,192,76,-0.7620125531164769],[121,192,77,-0.7616737613599922],[121,192,78,-0.7613373567238523],[121,192,79,-0.7610033443668315],[121,193,64,-0.7664219671160022],[121,193,65,-0.7660547654204448],[121,193,66,-0.7656898807827024],[121,193,67,-0.7653273194709063],[121,193,68,-0.7649670876633304],[121,193,69,-0.7646091914479671],[121,193,70,-0.7642536368220907],[121,193,71,-0.763900429691824],[121,193,72,-0.7635495758717041],[121,193,73,-0.7632010810842615],[121,193,74,-0.7628549509595732],[121,193,75,-0.7625111910348439],[121,193,76,-0.7621698067539749],[121,193,77,-0.7618308034671357],[121,193,78,-0.761494186430338],[121,193,79,-0.761159960805005],[121,194,64,-0.7665818323383953],[121,194,65,-0.7662144310488874],[121,194,66,-0.7658493459137719],[121,194,67,-0.7654865832033323],[121,194,68,-0.7651261490980337],[121,194,69,-0.7647680496880993],[121,194,70,-0.7644122909730732],[121,194,71,-0.7640588788613875],[121,194,72,-0.7637078191699284],[121,194,73,-0.7633591176236152],[121,194,74,-0.7630127798549534],[121,194,75,-0.7626688114036161],[121,194,76,-0.7623272177160135],[121,194,77,-0.7619880041448639],[121,194,78,-0.7616511759487684],[121,194,79,-0.7613167382917799],[121,195,64,-0.7667418392547724],[121,195,65,-0.7663742396741577],[121,195,66,-0.7660089553400729],[121,195,67,-0.7656459925249319],[121,195,68,-0.7652853574113697],[121,195,69,-0.7649270560918184],[121,195,70,-0.7645710945680708],[121,195,71,-0.7642174787508476],[121,195,72,-0.7638662144593625],[121,195,73,-0.7635173074209035],[121,195,74,-0.7631707632703837],[121,195,75,-0.7628265875499248],[121,195,76,-0.7624847857084254],[121,195,77,-0.762145363101133],[121,195,78,-0.7618083249892178],[121,195,79,-0.7614736765393435],[121,196,64,-0.7669019875437969],[121,196,65,-0.7665341909770909],[121,196,66,-0.766168708744608],[121,196,67,-0.7658055471208709],[121,196,68,-0.7654447122906624],[121,196,69,-0.7650862103486022],[121,196,70,-0.7647300472987106],[121,196,71,-0.7643762290539753],[121,196,72,-0.7640247614359176],[121,196,73,-0.7636756501741724],[121,196,74,-0.7633289009060407],[121,196,75,-0.7629845191760718],[121,196,76,-0.7626425104356329],[121,196,77,-0.7623028800424805],[121,196,78,-0.7619656332603351],[121,196,79,-0.7616307752584506],[121,197,64,-0.7670622768828763],[121,197,65,-0.7666942846372583],[121,197,66,-0.7663286058091081],[121,197,67,-0.7659652466750348],[121,197,68,-0.7656042134219477],[121,197,69,-0.7652455121466326],[121,197,70,-0.7648891488553158],[121,197,71,-0.764535129463231],[121,197,72,-0.7641834597941858],[121,197,73,-0.7638341455801414],[121,197,74,-0.7634871924607662],[121,197,75,-0.7631426059830169],[121,197,76,-0.7628003916007091],[121,197,77,-0.7624605546740884],[121,197,78,-0.762123100469405],[121,197,79,-0.7617880341584846],[121,198,64,-0.7672227069481322],[121,198,65,-0.7668545203329373],[121,198,66,-0.7664886462140017],[121,198,67,-0.7661250908699994],[121,198,68,-0.765763860489944],[121,198,69,-0.765404961172766],[121,198,70,-0.7650483989268761],[121,198,71,-0.7646941796697331],[121,198,72,-0.7643423092274098],[121,198,73,-0.7639927933341732],[121,198,74,-0.7636456376320381],[121,198,75,-0.7633008476703484],[121,198,76,-0.7629584289053477],[121,198,77,-0.7626183866997507],[121,198,78,-0.7622807263223182],[121,198,79,-0.7619454529474272],[121,199,64,-0.7673832774144244],[121,199,65,-0.7670148977411354],[121,199,66,-0.7666488296384399],[121,199,67,-0.7662850793870547],[121,199,68,-0.7659236531780759],[121,199,69,-0.765564557112557],[121,199,70,-0.765207797201072],[121,199,71,-0.7648533793632835],[121,199,72,-0.764501309427508],[121,199,73,-0.7641515931302982],[121,199,74,-0.7638042361159941],[121,199,75,-0.7634592439363066],[121,199,76,-0.7631166220498871],[121,199,77,-0.7627763758218995],[121,199,78,-0.7624385105235949],[121,199,79,-0.7621030313318824],[121,200,64,-0.7675439879553212],[121,200,65,-0.7671754165375608],[121,200,66,-0.7668091557602662],[121,200,67,-0.766445211906175],[121,200,68,-0.7660835911684443],[121,200,69,-0.7657242996502289],[121,200,70,-0.7653673433642446],[121,200,71,-0.7650127282323361],[121,200,72,-0.7646604600850438],[121,200,73,-0.7643105446611838],[121,200,74,-0.7639629876074014],[121,200,75,-0.7636177944777538],[121,200,76,-0.7632749707332802],[121,200,77,-0.7629345217415733],[121,200,78,-0.7625964527763548],[121,200,79,-0.7622607690170462],[121,201,64,-0.7677048382431607],[121,201,65,-0.7673360763966828],[121,201,66,-0.7669696242560772],[121,201,67,-0.7666054881060802],[121,201,68,-0.7662436741418878],[121,201,69,-0.7658841884687346],[121,201,70,-0.7655270371014566],[121,201,71,-0.7651722259640599],[121,201,72,-0.7648197608892864],[121,201,73,-0.7644696476181959],[121,201,74,-0.7641218917997179],[121,201,75,-0.7637764989902358],[121,201,76,-0.7634334746531555],[121,201,77,-0.7630928241584787],[121,201,78,-0.7627545527823782],[121,201,79,-0.762418665706768],[121,202,64,-0.7678658279490291],[121,202,65,-0.7674968769917112],[121,202,66,-0.7671302348012019],[121,202,67,-0.7667659076642142],[121,202,68,-0.7664039017779611],[121,202,69,-0.7660442232497353],[121,202,70,-0.7656868780964714],[121,202,71,-0.7653318722443154],[121,202,72,-0.7649792115281904],[121,202,73,-0.7646289016913779],[121,202,74,-0.7642809483850717],[121,202,75,-0.7639353571679597],[121,202,76,-0.7635921335057956],[121,202,77,-0.7632512827709697],[121,202,78,-0.762912810242085],[121,202,79,-0.762576721103529],[121,203,64,-0.7680269567427402],[121,203,65,-0.767657817994575],[121,203,66,-0.7672909870696806],[121,203,67,-0.7669264702567241],[121,203,68,-0.7665642737549142],[121,203,69,-0.7662044036735793],[121,203,70,-0.7658468660317315],[121,203,71,-0.7654916667576351],[121,203,72,-0.7651388116883733],[121,203,73,-0.7647883065694286],[121,203,74,-0.7644401570542378],[121,203,75,-0.7640943687037738],[121,203,76,-0.7637509469861163],[121,203,77,-0.7634098972760245],[121,203,78,-0.7630712248545126],[121,203,79,-0.7627349349084205],[121,204,64,-0.7681882242928963],[121,204,65,-0.7678188990759837],[121,204,66,-0.7674518807343256],[121,204,67,-0.7670871755585215],[121,204,68,-0.7667247897497531],[121,204,69,-0.7663647294193633],[121,204,70,-0.7660070005884199],[121,204,71,-0.7656516091872843],[121,204,72,-0.7652985610551779],[121,204,73,-0.7649478619397643],[121,204,74,-0.7645995174967019],[121,204,75,-0.7642535332892274],[121,204,76,-0.7639099147877273],[121,204,77,-0.763568667369309],[121,204,78,-0.7632297963173773],[121,204,79,-0.7628933068212058],[121,205,64,-0.7683496302668578],[121,205,65,-0.7679801199053967],[121,205,66,-0.7676129154666915],[121,205,67,-0.7672480232432515],[121,205,68,-0.7668854494382098],[121,205,69,-0.7665252001649019],[121,205,70,-0.7661672814464296],[121,205,71,-0.7658116992152298],[121,205,72,-0.7654584593126417],[121,205,73,-0.7651075674884876],[121,205,74,-0.7647590294006275],[121,205,75,-0.7644128506145416],[121,205,76,-0.764069036602902],[121,205,77,-0.7637275927451443],[121,205,78,-0.7633885243270444],[121,205,79,-0.7630518365402889],[121,206,64,-0.7685111743307678],[121,206,65,-0.7681414801510484],[121,206,66,-0.7677740909370994],[121,206,67,-0.7674090129833181],[121,206,68,-0.7670462524947671],[121,206,69,-0.7666858155867525],[121,206,70,-0.7663277082843883],[121,206,71,-0.765971936522166],[121,206,72,-0.7656185061435203],[121,206,73,-0.7652674229004124],[121,206,74,-0.7649186924528821],[121,206,75,-0.7645723203686329],[121,206,76,-0.7642283121226018],[121,206,77,-0.7638866730965326],[121,206,78,-0.7635474085785515],[121,206,79,-0.7632105237627393],[121,207,64,-0.7686728561495225],[121,207,65,-0.768302979479917],[121,207,66,-0.7679354068146064],[121,207,67,-0.7675701444498534],[121,207,68,-0.7672071985926276],[121,207,69,-0.7668465753601841],[121,207,70,-0.7664882807796278],[121,207,71,-0.7661323207874825],[121,207,72,-0.7657787012292583],[121,207,73,-0.7654274278590328],[121,207,74,-0.7650785063390059],[121,207,75,-0.7647319422390828],[121,207,76,-0.7643877410364454],[121,207,77,-0.7640459081151251],[121,207,78,-0.7637064487655789],[121,207,79,-0.7633693681842612],[121,208,64,-0.7688346753868314],[121,208,65,-0.7684646175577869],[121,208,66,-0.7680968627670671],[121,208,67,-0.7677314173127783],[121,208,68,-0.767368287403775],[121,208,69,-0.7670074791592394],[121,208,70,-0.7666489986082451],[121,208,71,-0.7662928516893273],[121,208,72,-0.7659390442500493],[121,208,73,-0.7655875820465852],[121,208,74,-0.7652384707432729],[121,208,75,-0.7648917159121992],[121,208,76,-0.7645473230327703],[121,208,77,-0.7642052974912847],[121,208,78,-0.7638656445805102],[121,208,79,-0.7635283694992546],[121,209,64,-0.7689966317051964],[121,209,65,-0.7686263940492262],[121,209,66,-0.7682584584611125],[121,209,67,-0.7678928312407824],[121,209,68,-0.7675295185989536],[121,209,69,-0.7671685266567129],[121,209,70,-0.7668098614450815],[121,209,71,-0.766453528904584],[121,209,72,-0.766099534884816],[121,209,73,-0.765747885144026],[121,209,74,-0.76539858534867],[121,209,75,-0.7650516410729951],[121,209,76,-0.7647070577986113],[121,209,77,-0.764364840914064],[121,209,78,-0.7640249957144111],[121,209,79,-0.7636875274007946],[121,210,64,-0.7691587247658911],[121,210,65,-0.7687883086175665],[121,210,66,-0.7684201935621282],[121,210,67,-0.7680543859013017],[121,210,68,-0.7676908918476456],[121,210,69,-0.7673297175241297],[121,210,70,-0.7669708689637006],[121,210,71,-0.7666143521088508],[121,210,72,-0.7662601728111869],[121,210,73,-0.7659083368310107],[121,210,74,-0.765558849836875],[121,210,75,-0.7652117174051667],[121,210,76,-0.7648669450196787],[121,210,77,-0.7645245380711829],[121,210,78,-0.7641845018570076],[121,210,79,-0.7638468415806084],[121,211,64,-0.7693209542290214],[121,211,65,-0.7689503609249637],[121,211,66,-0.768582067734316],[121,211,67,-0.7682160809605805],[121,211,68,-0.7678524068181338],[121,211,69,-0.767491051431807],[121,211,70,-0.7671320208364503],[121,211,71,-0.7667753209765023],[121,211,72,-0.7664209577055592],[121,211,73,-0.7660689367859552],[121,211,74,-0.7657192638883186],[121,211,75,-0.765371944591155],[121,211,76,-0.7650269843804198],[121,211,77,-0.7646843886490915],[121,211,78,-0.7643441626967475],[121,211,79,-0.764006311729138],[121,212,64,-0.769483319753495],[121,212,65,-0.7691125506323672],[121,212,66,-0.7687440806406636],[121,212,67,-0.7683779160836403],[121,212,68,-0.7680140631774701],[121,212,69,-0.7676525280488231],[121,212,70,-0.7672933167344314],[121,212,71,-0.7669364351806583],[121,212,72,-0.7665818892430677],[121,212,73,-0.7662296846860049],[121,212,74,-0.7658798271821528],[121,212,75,-0.7655323223121149],[121,212,76,-0.7651871755639887],[121,212,77,-0.764844392332938],[121,212,78,-0.7645039779207701],[121,212,79,-0.7641659375355085],[121,213,64,-0.7696458209970471],[121,213,65,-0.7692748773995453],[121,213,66,-0.7689062319429687],[121,213,67,-0.7685398909343047],[121,213,68,-0.7681758605915004],[121,213,69,-0.7678141470430426],[121,213,70,-0.7674547563275231],[121,213,71,-0.7670976943932085],[121,213,72,-0.7667429670976089],[121,213,73,-0.7663905802070594],[121,213,74,-0.7660405393962761],[121,213,75,-0.7656928502479403],[121,213,76,-0.76534751825227],[121,213,77,-0.765004548806594],[121,213,78,-0.7646639472149294],[121,213,79,-0.7643257186875533],[121,214,64,-0.7698084576162085],[121,214,65,-0.7694373408850539],[121,214,66,-0.7690685213018088],[121,214,67,-0.7687020051751693],[121,214,68,-0.7683377987248342],[121,214,69,-0.767975908081085],[121,214,70,-0.7676163392843516],[121,214,71,-0.7672590982847818],[121,214,72,-0.7669041909418106],[121,214,73,-0.7665516230237415],[121,214,74,-0.7662014002073029],[121,214,75,-0.7658535280772322],[121,214,76,-0.7655080121258477],[121,214,77,-0.7651648577526231],[121,214,78,-0.7648240702637643],[121,214,79,-0.7644856548717822],[121,215,64,-0.7699712292663676],[121,215,65,-0.7695999407462982],[121,215,66,-0.7692309483766022],[121,215,67,-0.7688642584676619],[121,215,68,-0.7684998772409053],[121,215,69,-0.7681378108283865],[121,215,70,-0.7677780652723516],[121,215,71,-0.7674206465248079],[121,215,72,-0.7670655604470933],[121,215,73,-0.7667128128094589],[121,215,74,-0.7663624092906238],[121,215,75,-0.766014355477361],[121,215,76,-0.7656686568640682],[121,215,77,-0.7653253188523429],[121,215,78,-0.76498434675056],[121,215,79,-0.7646457457734437],[121,216,64,-0.7701341356017488],[121,216,65,-0.7697626766395115],[121,216,66,-0.7693935128255873],[121,216,67,-0.7690266504720221],[121,216,68,-0.7686620958019511],[121,216,69,-0.7682998549491789],[121,216,70,-0.7679399339577452],[121,216,71,-0.7675823387814953],[121,216,72,-0.767227075283649],[121,216,73,-0.7668741492363826],[121,216,74,-0.7665235663203855],[121,216,75,-0.7661753321244447],[121,216,76,-0.7658294521450169],[121,216,77,-0.7654859317858029],[121,216,78,-0.765144776357326],[121,216,79,-0.7648059910765034],[121,217,64,-0.7702971762753915],[121,217,65,-0.7699255482197331],[121,217,66,-0.7695562143058001],[121,217,67,-0.7691891808472793],[121,217,68,-0.7688244540689906],[121,217,69,-0.7684620401064668],[121,217,70,-0.7681019450055196],[121,217,71,-0.7677441747218103],[121,217,72,-0.7673887351204186],[121,217,73,-0.7670356319754251],[121,217,74,-0.766684870969468],[121,217,75,-0.7663364576933271],[121,217,76,-0.7659903976454976],[121,217,77,-0.765646696231763],[121,217,78,-0.765305358764774],[121,217,79,-0.7649663904636211],[121,218,64,-0.7704603509392113],[121,218,65,-0.7700885551408706],[121,218,66,-0.7697190524731365],[121,218,67,-0.7693518492513144],[121,218,68,-0.7689869517018862],[121,218,69,-0.7686243659620907],[121,218,70,-0.7682640980794896],[121,218,71,-0.7679061540115383],[121,218,72,-0.7675505396251546],[121,218,73,-0.7671972606963021],[121,218,74,-0.7668463229095465],[121,218,75,-0.7664977318576396],[121,218,76,-0.7661514930410936],[121,218,77,-0.7658076118677545],[121,218,78,-0.76546609365238],[121,218,79,-0.7651269436162139],[121,219,64,-0.7706236592439782],[121,219,65,-0.7702516970556778],[121,219,66,-0.7698820269823305],[121,219,67,-0.7695146553408381],[121,219,68,-0.7691495883593219],[121,219,69,-0.7687868321767044],[121,219,70,-0.7684263928422751],[121,219,71,-0.7680682763152616],[121,219,72,-0.7677124884643985],[121,219,73,-0.7673590350675108],[121,219,74,-0.7670079218110698],[121,219,75,-0.7666591542897789],[121,219,76,-0.7663127380061464],[121,219,77,-0.7659686783700594],[121,219,78,-0.7656269806983631],[121,219,79,-0.7652876502144332],[121,220,64,-0.7707871008392959],[121,220,65,-0.7704149736157331],[121,220,66,-0.7700451374869328],[121,220,67,-0.7696775987713694],[121,220,68,-0.7693123636987818],[121,220,69,-0.7689494384097534],[121,220,70,-0.7685888289552799],[121,220,71,-0.7682305412963388],[121,220,72,-0.76787458130346],[121,220,73,-0.7675209547563078],[121,220,74,-0.7671696673432387],[121,220,75,-0.766820724660886],[121,220,76,-0.766474132213733],[121,220,77,-0.7661298954136877],[121,220,78,-0.7657880195796618],[121,220,79,-0.7654485099371432],[121,221,64,-0.7709506753736621],[121,221,65,-0.7705783844715017],[121,221,66,-0.7702083836393718],[121,221,67,-0.7698406791972972],[121,221,68,-0.7694752773766113],[121,221,69,-0.7691121843195369],[121,221,70,-0.7687514060787529],[121,221,71,-0.7683929486169655],[121,221,72,-0.7680368178064774],[121,221,73,-0.7676830194287713],[121,221,74,-0.7673315591740671],[121,221,75,-0.7669824426409069],[121,221,76,-0.7666356753357283],[121,221,77,-0.7662912626724394],[121,221,78,-0.7659492099719976],[121,221,79,-0.7656095224619828],[121,222,64,-0.7711143824944394],[121,222,65,-0.7707419292723043],[121,222,66,-0.7703717650909236],[121,222,67,-0.7700038962718494],[121,222,68,-0.7696383290479872],[121,222,69,-0.7692750695631767],[121,222,70,-0.7689141238717581],[121,222,71,-0.7685554979381437],[121,222,72,-0.7681991976363878],[121,222,73,-0.7678452287497697],[121,222,74,-0.7674935969703516],[121,222,75,-0.7671443078985626],[121,222,76,-0.7667973670427741],[121,222,77,-0.7664527798188734],[121,222,78,-0.7661105515498428],[121,222,79,-0.7657706874653338],[121,223,64,-0.7712782218478781],[121,223,65,-0.7709056076663418],[121,223,66,-0.7705352814917358],[121,223,67,-0.7701672496471172],[121,223,68,-0.7698015183669414],[121,223,69,-0.7694380937966419],[121,223,70,-0.7690769819921979],[121,223,71,-0.7687181889197064],[121,223,72,-0.7683617204549512],[121,223,73,-0.7680075823829866],[121,223,74,-0.7676557803976953],[121,223,75,-0.767306320101373],[121,223,76,-0.7669592070043032],[121,223,77,-0.7666144465243315],[121,223,78,-0.7662720439864453],[121,223,79,-0.7659320046223469],[121,224,64,-0.7714421930790868],[121,224,65,-0.7710694193006641],[121,224,66,-0.7706989324907971],[121,224,67,-0.7703307389740253],[121,224,68,-0.7699648449863301],[121,224,69,-0.7696012566747172],[121,224,70,-0.7692399800967831],[121,224,71,-0.7688810212202867],[121,224,72,-0.7685243859227194],[121,224,73,-0.7681700799908892],[121,224,74,-0.7678181091204775],[121,224,75,-0.7674684789156258],[121,224,76,-0.7671211948885082],[121,224,77,-0.7667762624589084],[121,224,78,-0.7664336869537973],[121,224,79,-0.7660934736069082],[121,225,64,-0.7716062958320932],[121,225,65,-0.7712333638212325],[121,225,66,-0.7708627177359992],[121,225,67,-0.7704943639023916],[121,225,68,-0.7701283085578955],[121,225,69,-0.7697645578510659],[121,225,70,-0.769403117841094],[121,225,71,-0.7690439944973787],[121,225,72,-0.7686871936990975],[121,225,73,-0.7683327212347899],[121,225,74,-0.7679805828019151],[121,225,75,-0.7676307840064381],[121,225,76,-0.7672833303624037],[121,225,77,-0.766938227291512],[121,225,78,-0.7665954801226973],[121,225,79,-0.7662550940917029],[121,226,64,-0.7717705297498227],[121,226,65,-0.7713974408728975],[121,226,66,-0.7710266368741142],[121,226,67,-0.7706581240809073],[121,226,68,-0.7702919087322445],[121,226,69,-0.7699279969782071],[121,226,70,-0.7695663948795589],[121,226,71,-0.769207108407317],[121,226,72,-0.7688501434423226],[121,226,73,-0.7684955057748253],[121,226,74,-0.7681432011040403],[121,226,75,-0.7677932350377353],[121,226,76,-0.7674456130918041],[121,226,77,-0.7671003406898426],[121,226,78,-0.7667574231627277],[121,226,79,-0.7664168657481925],[121,227,64,-0.7719348944740769],[121,227,65,-0.7715616500993772],[121,227,66,-0.7711906895507736],[121,227,67,-0.7708220191571147],[121,227,68,-0.7704556451588263],[121,227,69,-0.7700915737074943],[121,227,70,-0.7697298108654325],[121,227,71,-0.7693703626052537],[121,227,72,-0.7690132348094414],[121,227,73,-0.7686584332699332],[121,227,74,-0.7683059636876792],[121,227,75,-0.7679558316722281],[121,227,76,-0.7676080427413015],[121,227,77,-0.7672626023203702],[121,227,78,-0.7669195157422333],[121,227,79,-0.7665787882465926],[121,228,64,-0.772099389645595],[121,228,65,-0.7717259911433185],[121,228,66,-0.77135487541053],[121,228,67,-0.7709860487774679],[121,228,68,-0.7706195174859942],[121,228,69,-0.7702552876891767],[121,228,70,-0.7698933654508566],[121,228,71,-0.7695337567452207],[121,228,72,-0.7691764674563724],[121,228,73,-0.7688215033779155],[121,228,74,-0.7684688702125135],[121,228,75,-0.7681185735714747],[121,228,76,-0.7677706189743276],[121,228,77,-0.767425011848397],[121,228,78,-0.7670817575283825],[121,228,79,-0.7667408612559353],[121,229,64,-0.772264014904023],[121,229,65,-0.7718904636462676],[121,229,66,-0.7715191940968257],[121,229,67,-0.7711502125873031],[121,229,68,-0.7707835253609752],[121,229,69,-0.7704191385723689],[121,229,70,-0.7700570582868306],[121,229,71,-0.7696972904800985],[121,229,72,-0.7693398410378742],[121,229,73,-0.7689847157554063],[121,229,74,-0.7686319203370493],[121,229,75,-0.7682814603958501],[121,229,76,-0.7679333414531229],[121,229,77,-0.7675875689380249],[121,229,78,-0.7672441481871368],[121,229,79,-0.7669030844440373],[121,230,64,-0.772428769887938],[121,230,65,-0.7720550672486926],[121,230,66,-0.7716836452520173],[121,230,67,-0.7713145102308625],[121,230,68,-0.7709476684298938],[121,230,69,-0.7705831260050748],[121,230,70,-0.7702208890232345],[121,230,71,-0.7698609634616409],[121,230,72,-0.7695033552075708],[121,230,73,-0.7691480700578961],[121,230,74,-0.7687951137186412],[121,230,75,-0.7684444918045696],[121,230,76,-0.7680962098387601],[121,230,77,-0.7677502732521818],[121,230,78,-0.7674066873832746],[121,230,79,-0.7670654574775249],[121,231,64,-0.7725936542348177],[121,231,65,-0.7722198015899537],[121,231,66,-0.771848228517345],[121,231,67,-0.771478941351263],[121,231,68,-0.7711119463377413],[121,231,69,-0.7707472496341566],[121,231,70,-0.770384857308799],[121,231,71,-0.770024775340443],[121,231,72,-0.7696670096179198],[121,231,73,-0.7693115659397017],[121,231,74,-0.7689584500134615],[121,231,75,-0.7686076674556586],[121,231,76,-0.7682592237911141],[121,231,77,-0.7679131244525883],[121,231,78,-0.7675693747803599],[121,231,79,-0.7672279800218018],[121,232,64,-0.7727586675811018],[121,232,65,-0.7723846663083652],[121,232,66,-0.7720129435329943],[121,232,67,-0.7716435055905589],[121,232,68,-0.771276358728437],[121,232,69,-0.770911509105397],[121,232,70,-0.7705489627911661],[121,232,71,-0.7701887257660043],[121,232,72,-0.769830803920274],[121,232,73,-0.7694752030540271],[121,232,74,-0.7691219288765623],[121,232,75,-0.7687709870060132],[121,232,76,-0.768422382968923],[121,232,77,-0.7680761221998211],[121,232,78,-0.7677322100408045],[121,232,79,-0.7673906517411119],[121,233,64,-0.7729238095621702],[121,233,65,-0.7725496610411726],[121,233,66,-0.772177789938074],[121,233,67,-0.771808202589719],[121,233,68,-0.7714409052448076],[121,233,69,-0.7710759040634765],[121,233,70,-0.7707132051168685],[121,233,71,-0.7703528143867056],[121,233,72,-0.7699947377648604],[121,233,73,-0.7696389810529415],[121,233,74,-0.7692855499618525],[121,233,75,-0.7689344501113795],[121,233,76,-0.7685856870297659],[121,233,77,-0.7682392661532903],[121,233,78,-0.7678951928258458],[121,233,79,-0.7675534722985169],[121,234,64,-0.7730890798123213],[121,234,65,-0.7727147854245315],[121,234,66,-0.7723427673705938],[121,234,67,-0.771973031988605],[121,234,68,-0.7716055855285636],[121,234,69,-0.7712404341519521],[121,234,70,-0.7708775839313061],[121,234,71,-0.7705170408497877],[121,234,72,-0.7701588108007571],[121,234,73,-0.7698028995873578],[121,234,74,-0.7694493129220766],[121,234,75,-0.7690980564263304],[121,234,76,-0.7687491356300419],[121,234,77,-0.7684025559712166],[121,234,78,-0.7680583227955243],[121,234,79,-0.7677164413558737],[121,235,64,-0.7732544779648336],[121,235,65,-0.7728800390935694],[121,235,66,-0.7725078754675274],[121,235,67,-0.7721379934260337],[121,235,68,-0.7717703992203624],[121,235,69,-0.771405099013319],[121,235,70,-0.7710420988788094],[121,235,71,-0.7706814048014131],[121,235,72,-0.7703230226759558],[121,235,73,-0.7699669583070943],[121,235,74,-0.7696132174088763],[121,235,75,-0.7692618056043283],[121,235,76,-0.7689127284250304],[121,235,77,-0.7685659913106948],[121,235,78,-0.768221599608746],[121,235,79,-0.7678795585738964],[121,236,64,-0.7734200036519348],[121,236,65,-0.7730454216823538],[121,236,66,-0.7726731138647802],[121,236,67,-0.7723030865397454],[121,236,68,-0.7719353459597766],[121,236,69,-0.7715698982889793],[121,236,70,-0.7712067496026068],[121,236,71,-0.7708459058866343],[121,236,72,-0.7704873730373303],[121,236,73,-0.7701311568608429],[121,236,74,-0.7697772630727591],[121,236,75,-0.769425697297693],[121,236,76,-0.7690764650688613],[121,236,77,-0.768729571827661],[121,236,78,-0.7683850229232505],[121,236,79,-0.7680428236121257],[121,237,64,-0.7735856565048259],[121,237,65,-0.773210932823918],[121,237,66,-0.7728384821972142],[121,237,67,-0.7724683109664288],[121,237,68,-0.7721004253853185],[121,237,69,-0.7717348316192663],[121,237,70,-0.7713715357448505],[121,237,71,-0.7710105437494189],[121,237,72,-0.7706518615306611],[121,237,73,-0.7702954948961942],[121,237,74,-0.7699414495631227],[121,237,75,-0.7695897311576269],[121,237,76,-0.7692403452145381],[121,237,77,-0.7688932971769173],[121,237,78,-0.768548592395636],[121,237,79,-0.7682062361289522],[121,238,64,-0.7737514361536512],[121,238,65,-0.7733765721502286],[121,238,66,-0.7730039800986168],[121,238,67,-0.7726336663416891],[121,238,68,-0.7722656371344089],[121,238,69,-0.7718998986434136],[121,238,70,-0.7715364569465839],[121,238,71,-0.771175318032618],[121,238,72,-0.7708164878006039],[121,238,73,-0.7704599720596057],[121,238,74,-0.7701057765282238],[121,238,75,-0.7697539068341827],[121,238,76,-0.7694043685139073],[121,238,77,-0.769057167012101],[121,238,78,-0.7687123076813271],[121,238,79,-0.7683697957815853],[121,239,64,-0.7739173422275585],[121,239,65,-0.7735423392922485],[121,239,66,-0.7731696072017629],[121,239,67,-0.7727991523001106],[121,239,68,-0.7724309808434391],[121,239,69,-0.772065098999617],[121,239,70,-0.7717015128478045],[121,239,71,-0.771340228378028],[121,239,72,-0.7709812514907514],[121,239,73,-0.770624587996464],[121,239,74,-0.77027024361524],[121,239,75,-0.7699182239763263],[121,239,76,-0.7695685346177199],[121,239,77,-0.7692211809857457],[121,239,78,-0.7688761684346372],[121,239,79,-0.7685335022261153],[121,240,64,-0.7740833743546782],[121,240,65,-0.773708233879914],[121,240,66,-0.7733353631383921],[121,240,67,-0.7729647684752344],[121,240,68,-0.7725964561477485],[121,240,69,-0.7722304323250117],[121,240,70,-0.7718667030874412],[121,240,71,-0.7715052744263684],[121,240,72,-0.7711461522436117],[121,240,73,-0.7707893423510627],[121,240,74,-0.7704348504702474],[121,240,75,-0.770082682231914],[121,240,76,-0.7697328431756099],[121,240,77,-0.7693853387492595],[121,240,78,-0.7690401743087466],[121,240,79,-0.7686973551174912],[121,241,64,-0.7742495321621015],[121,241,65,-0.7738742555421136],[121,241,66,-0.7735012475391883],[121,241,67,-0.7731305144995364],[121,241,68,-0.7727620626816031],[121,241,69,-0.7723958982556512],[121,241,70,-0.7720320273033324],[121,241,71,-0.7716704558172603],[121,241,72,-0.7713111897005853],[121,241,73,-0.7709542347665795],[121,241,74,-0.7705995967381989],[121,241,75,-0.7702472812476705],[121,241,76,-0.7698972938360709],[121,241,77,-0.7695496399529029],[121,241,78,-0.769204324955679],[121,241,79,-0.7688613541094977],[121,242,64,-0.774415815275941],[121,242,65,-0.774040403906749],[121,242,66,-0.7736672600338392],[121,242,67,-0.7732963900044887],[121,242,68,-0.7729278000782567],[121,242,69,-0.772561496426569],[121,242,70,-0.7721974851322879],[121,242,71,-0.7718357721892879],[121,242,72,-0.7714763635020281],[121,242,73,-0.7711192648851394],[121,242,74,-0.7707644820629853],[121,242,75,-0.7704120206692506],[121,242,76,-0.770061886246519],[121,242,77,-0.7697140842458503],[121,242,78,-0.7693686200263649],[121,242,79,-0.7690254988548185],[121,243,64,-0.7745822233213013],[121,243,65,-0.7742066786007046],[121,243,66,-0.7738334002510074],[121,243,67,-0.7734623946205293],[121,243,68,-0.7730936679699204],[121,243,69,-0.7727272264717462],[121,243,70,-0.7723630762100576],[121,243,71,-0.7720012231799666],[121,243,72,-0.771641673287219],[121,243,73,-0.7712844323477819],[121,243,74,-0.7709295060874047],[121,243,75,-0.7705769001412079],[121,243,76,-0.7702266200532607],[121,243,77,-0.769878671276159],[121,243,78,-0.7695330591706089],[121,243,79,-0.7691897890050035],[121,244,64,-0.7747487559223019],[121,244,65,-0.7743730792498715],[121,244,66,-0.7739996678183534],[121,244,67,-0.7736285279770856],[121,244,68,-0.7732596659877865],[121,244,69,-0.7728930880241377],[121,244,70,-0.7725288001713562],[121,244,71,-0.7721668084257685],[121,244,72,-0.7718071186943849],[121,244,73,-0.7714497367944866],[121,244,74,-0.7710946684531867],[121,244,75,-0.7707419193070197],[121,244,76,-0.7703914949015183],[121,244,77,-0.7700434006907932],[121,244,78,-0.7696976420371153],[121,244,79,-0.7693542242104934],[121,245,64,-0.7749154127020464],[121,245,65,-0.7745396054791167],[121,245,66,-0.7741660623625045],[121,245,67,-0.7737947897025437],[121,245,68,-0.7734257937619967],[121,245,69,-0.7730590807156392],[121,245,70,-0.7726946566498305],[121,245,71,-0.7723325275620897],[121,245,72,-0.7719726993606688],[121,245,73,-0.7716151778641408],[121,245,74,-0.7712599688009605],[121,245,75,-0.770907077809054],[121,245,76,-0.7705565104353967],[121,245,77,-0.7702082721355923],[121,245,78,-0.769862368273455],[121,245,79,-0.7695188041205885],[121,246,64,-0.7750821932826851],[121,246,65,-0.7747062569123445],[121,246,66,-0.7743325835091173],[121,246,67,-0.7739611794243096],[121,246,68,-0.7735920509217054],[121,246,69,-0.7732252041771501],[121,246,70,-0.7728606452781234],[121,246,71,-0.7724983802233136],[121,246,72,-0.7721384149221926],[121,246,73,-0.7717807551946022],[121,246,74,-0.7714254067703171],[121,246,75,-0.7710723752886333],[121,246,76,-0.770721666297947],[121,246,77,-0.7703732852553332],[121,246,78,-0.7700272375261286],[121,246,79,-0.7696835283835104],[121,247,64,-0.7752490972853918],[121,247,65,-0.7748730331724744],[121,247,66,-0.7744992308828549],[121,247,67,-0.7741276967687882],[121,247,68,-0.7737584370950559],[121,247,69,-0.7733914580385509],[121,247,70,-0.77302676568785],[121,247,71,-0.7726643660427881],[121,247,72,-0.7723042650140337],[121,247,73,-0.771946468422676],[121,247,74,-0.7715909819997872],[121,247,75,-0.7712378113860112],[121,247,76,-0.7708869621311433],[121,247,77,-0.7705384396937083],[121,247,78,-0.7701922494405439],[121,247,79,-0.76984839664638],[121,248,64,-0.7754161243303426],[121,248,65,-0.7750399338814193],[121,248,66,-0.7746660041073652],[121,248,67,-0.77429434136136],[121,248,68,-0.7739249519091596],[121,248,69,-0.7735578419286815],[121,248,70,-0.773193017509576],[121,248,71,-0.7728304846528025],[121,248,72,-0.7724702492702036],[121,248,73,-0.7721123171840931],[121,248,74,-0.7717566941268186],[121,248,75,-0.7714033857403502],[121,248,76,-0.7710523975758602],[121,248,77,-0.7707037350933019],[121,248,78,-0.7703574036609929],[121,248,79,-0.7700134085551944],[121,249,64,-0.7755832740367772],[121,249,65,-0.7752069586601475],[121,249,66,-0.7748329028053427],[121,249,67,-0.7744611128264435],[121,249,68,-0.7740915949901572],[121,249,69,-0.7737243554754022],[121,249,70,-0.7733594003728799],[121,249,71,-0.7729967356846508],[121,249,72,-0.7726363673237093],[121,249,73,-0.7722783011135717],[121,249,74,-0.7719225427878382],[121,249,75,-0.7715690979897838],[121,249,76,-0.7712179722719357],[121,249,77,-0.7708691710956538],[121,249,78,-0.7705226998307146],[121,249,79,-0.7701785637548892],[121,250,64,-0.775750546022977],[121,250,65,-0.7753741071286603],[121,250,66,-0.774999926598506],[121,250,67,-0.7746280107874731],[121,250,68,-0.7742583659631965],[121,250,69,-0.7738909983055725],[121,250,70,-0.7735259139063303],[121,250,71,-0.773163118768609],[121,250,72,-0.772802618806532],[121,250,73,-0.7724444198447954],[121,250,74,-0.7720885276182305],[121,250,75,-0.7717349477713944],[121,250,76,-0.7713836858581478],[121,250,77,-0.771034747341236],[121,250,78,-0.7706881375918724],[121,250,79,-0.770343861889317],[121,251,64,-0.7759179399062432],[121,251,65,-0.7755413789059696],[121,251,66,-0.7751670751075763],[121,251,67,-0.7747950348668771],[121,251,68,-0.7744252644524108],[121,251,69,-0.7740577700450284],[121,251,70,-0.773692557737464],[121,251,71,-0.7733296335339124],[121,251,72,-0.7729690033496034],[121,251,73,-0.7726106730103905],[121,251,74,-0.7722546482523139],[121,251,75,-0.7719009347211904],[121,251,76,-0.7715495379721928],[121,251,77,-0.77120046346943],[121,251,78,-0.7708537165855308],[121,251,79,-0.7705093026012232],[121,252,64,-0.7760854553029589],[121,252,65,-0.7757087736101604],[121,252,66,-0.7753343479523391],[121,252,67,-0.774962184686139],[121,252,68,-0.7745922900809801],[121,252,69,-0.7742246703186443],[121,252,70,-0.7738593314928479],[121,252,71,-0.7734962796088182],[121,252,72,-0.7731355205828689],[121,252,73,-0.7727770602419886],[121,252,74,-0.7724209043234036],[121,252,75,-0.7720670584741691],[121,252,76,-0.7717155282507476],[121,252,77,-0.7713663191185899],[121,252,78,-0.771019436451719],[121,252,79,-0.7706748855323096],[121,253,64,-0.7762530918285566],[121,253,65,-0.7758762908583593],[121,253,66,-0.7755017447516124],[121,253,67,-0.7751294598657668],[121,253,68,-0.7747594424710998],[121,253,69,-0.7743916987503017],[121,253,70,-0.7740262347980471],[121,253,71,-0.7736630566205734],[121,253,72,-0.7733021701352554],[121,253,73,-0.7729435811701939],[121,253,74,-0.7725872954637798],[121,253,75,-0.7722333186642838],[121,253,76,-0.7718816563294368],[121,253,77,-0.7715323139260095],[121,253,78,-0.7711852968293978],[121,253,79,-0.7708406103232017],[121,254,64,-0.7764208490975437],[121,254,65,-0.7760439302667583],[121,254,66,-0.7756692651232713],[121,254,67,-0.7752968600253166],[121,254,68,-0.7749267212440057],[121,254,69,-0.7745588549629133],[121,254,70,-0.7741932672776499],[121,254,71,-0.7738299641954397],[121,254,72,-0.7734689516346958],[121,254,73,-0.7731102354246091],[121,254,74,-0.772753821304712],[121,254,75,-0.7723997149244695],[121,254,76,-0.7720479218428582],[121,254,77,-0.7716984475279478],[121,254,78,-0.7713512973564849],[121,254,79,-0.7710064766134738],[121,255,64,-0.7765887267234708],[121,255,65,-0.776211691450584],[121,255,66,-0.7758369086842165],[121,255,67,-0.7754643847833618],[121,255,68,-0.7750941260199417],[121,255,69,-0.7747261385783918],[121,255,70,-0.7743604285552356],[121,255,71,-0.7739970019586612],[121,255,72,-0.7736358647080971],[121,255,73,-0.7732770226338018],[121,255,74,-0.7729204814764272],[121,255,75,-0.7725662468866099],[121,255,76,-0.7722143244245507],[121,255,77,-0.771864719559596],[121,255,78,-0.7715174376698222],[121,255,79,-0.7711724840416161],[121,256,64,-0.7767567243189933],[121,256,65,-0.7763795740241592],[121,256,66,-0.7760046750504366],[121,256,67,-0.7756320337575545],[121,256,68,-0.7752616564182215],[121,256,69,-0.7748935492177115],[121,256,70,-0.7745277182534369],[121,256,71,-0.7741641695345269],[121,256,72,-0.773802908981403],[121,256,73,-0.7734439424253685],[121,256,74,-0.7730872756081721],[121,256,75,-0.7727329141816004],[121,256,76,-0.772380863707056],[121,256,77,-0.7720311296551406],[121,256,78,-0.7716837174052387],[121,256,79,-0.7713386322450981],[121,257,64,-0.7769248414958494],[121,257,65,-0.7765475776008808],[121,257,66,-0.7761725638369852],[121,257,67,-0.7757998065646038],[121,257,68,-0.775429312057208],[121,257,69,-0.7750610865008863],[121,257,70,-0.7746951359939176],[121,257,71,-0.7743314665463488],[121,257,72,-0.7739700840795712],[121,257,73,-0.7736109944259109],[121,257,74,-0.7732542033281911],[121,257,75,-0.7728997164393253],[121,257,76,-0.7725475393218969],[121,257,77,-0.7721976774477406],[121,257,78,-0.7718501361975273],[121,257,79,-0.7715049208603453],[121,258,64,-0.7770930778648379],[121,258,65,-0.7767157017931974],[121,258,66,-0.7763405746579591],[121,258,67,-0.7759677028202526],[121,258,68,-0.7755970925542888],[121,258,69,-0.775228750046947],[121,258,70,-0.7748626813973495],[121,258,71,-0.7744988926164378],[121,258,72,-0.7741373896265508],[121,258,73,-0.7737781782610136],[121,258,74,-0.7734212642637022],[121,258,75,-0.7730666532886351],[121,258,76,-0.7727143508995538],[121,258,77,-0.7723643625695044],[121,258,78,-0.7720166936804229],[121,258,79,-0.7716713495227161],[121,259,64,-0.7772614330358804],[121,259,65,-0.7768839462126713],[121,259,66,-0.7765087071265602],[121,259,67,-0.7761357221393407],[121,259,68,-0.7757649975259395],[121,259,69,-0.7753965394740039],[121,259,70,-0.7750303540834754],[121,259,71,-0.7746664473661679],[121,259,72,-0.7743048252453443],[121,259,73,-0.7739454935553068],[121,259,74,-0.7735884580409613],[121,259,75,-0.773233724357409],[121,259,76,-0.7728812980695277],[121,259,77,-0.7725311846515528],[121,259,78,-0.7721833894866641],[121,259,79,-0.7718379178665652],[121,260,64,-0.7774299066179886],[121,260,65,-0.7770523104699472],[121,260,66,-0.7766769608550637],[121,260,67,-0.7763038641357722],[121,260,68,-0.7759330265876919],[121,260,69,-0.7755644543992142],[121,260,70,-0.7751981536710769],[121,260,71,-0.7748341304159428],[121,260,72,-0.7744723905579763],[121,260,73,-0.774112939932434],[121,260,74,-0.7737557842852287],[121,260,75,-0.7734009292725228],[121,260,76,-0.7730483804603075],[121,260,77,-0.7726981433239867],[121,260,78,-0.7723502232479611],[121,260,79,-0.7720046255252107],[121,261,64,-0.7775984982192906],[121,261,65,-0.7772207941747759],[121,261,66,-0.7768453354548422],[121,261,67,-0.7764721284225404],[121,261,68,-0.7761011793541581],[121,261,69,-0.7757324944388072],[121,261,70,-0.7753660797779989],[121,261,71,-0.7750019413852214],[121,261,72,-0.7746400851855179],[121,261,73,-0.7742805170150762],[121,261,74,-0.7739232426207946],[121,261,75,-0.7735682676598732],[121,261,76,-0.7732155976993955],[121,261,77,-0.7728652382159111],[121,261,78,-0.7725171945950209],[121,261,79,-0.7721714721309589],[121,262,64,-0.7777672074469975],[121,262,65,-0.7773893969359834],[121,262,66,-0.7770138305363353],[121,262,67,-0.7766405146116964],[121,262,68,-0.776269455438999],[121,262,69,-0.7759006592080523],[121,262,70,-0.7755341320211173],[121,262,71,-0.7751698798924849],[121,262,72,-0.7748079087480538],[121,262,73,-0.7744482244249207],[121,262,74,-0.774090832670946],[121,262,75,-0.7737357391443461],[121,262,76,-0.7733829494132742],[121,262,77,-0.7730324689554039],[121,262,78,-0.7726843031575142],[121,262,79,-0.772338457315072],[121,263,64,-0.7779360339074661],[121,263,65,-0.7775581183615327],[121,263,66,-0.77718244570911],[121,263,67,-0.7768090223144098],[121,263,68,-0.7764378544549859],[121,263,69,-0.776068948321321],[121,263,70,-0.7757023100164022],[121,263,71,-0.7753379455553001],[121,263,72,-0.7749758608647459],[121,263,73,-0.7746160617827227],[121,263,74,-0.7742585540580303],[121,263,75,-0.7739033433498789],[121,263,76,-0.7735504352274694],[121,263,77,-0.7731998351695774],[121,263,78,-0.7728515485641383],[121,263,79,-0.7725055807078305],[121,264,64,-0.7781049772061774],[121,264,65,-0.7777269580585012],[121,264,66,-0.7773511805818394],[121,264,67,-0.7769776511409484],[121,264,68,-0.7766063760139791],[121,264,69,-0.7762373613920643],[121,264,70,-0.7758706133788945],[121,264,71,-0.775506137990296],[121,264,72,-0.77514394115381],[121,264,73,-0.7747840287082828],[121,264,74,-0.7744264064034315],[121,264,75,-0.7740710798994374],[121,264,76,-0.7737180547665271],[121,264,77,-0.773367336484556],[121,264,78,-0.7730189304425946],[121,264,79,-0.7726728419385108],[121,265,64,-0.7782740369477125],[121,265,65,-0.7778959156330586],[121,265,66,-0.7775200347622799],[121,265,67,-0.7771464007006538],[121,265,68,-0.7767750197269043],[121,265,69,-0.7764058980327909],[121,265,70,-0.7760390417226835],[121,265,71,-0.7756744568131415],[121,265,72,-0.7753121492324931],[121,265,73,-0.7749521248204246],[121,265,74,-0.7745943893275482],[121,265,75,-0.7742389484149935],[121,265,76,-0.7738858076539907],[121,265,77,-0.7735349725254536],[121,265,78,-0.7731864484195652],[121,265,79,-0.7728402406353616],[121,266,64,-0.7784432127358158],[121,266,65,-0.7780649906905286],[121,266,66,-0.7776890078573334],[121,266,67,-0.7773152706020043],[121,266,68,-0.7769437852038152],[121,266,69,-0.7765745578551282],[121,266,70,-0.7762075946609692],[121,266,71,-0.775842901638608],[121,266,72,-0.7754804847171358],[121,266,73,-0.775120349737057],[121,266,74,-0.7747625024498555],[121,266,75,-0.7744069485175874],[121,266,76,-0.7740536935124642],[121,266,77,-0.7737027429164354],[121,266,78,-0.7733541021207755],[121,266,79,-0.7730077764256671],[121,267,64,-0.7786125041733633],[121,267,65,-0.7782341828353574],[121,267,66,-0.7778580994730153],[121,267,67,-0.7774842604525836],[121,267,68,-0.7771126720538617],[121,267,69,-0.7767433404697912],[121,267,70,-0.7763762718060309],[121,267,71,-0.7760114720805366],[121,267,72,-0.7756489472231405],[121,267,73,-0.7752887030751416],[121,267,74,-0.7749307453888733],[121,267,75,-0.7745750798272956],[121,267,76,-0.7742217119635789],[121,267,77,-0.7738706472806866],[121,267,78,-0.7735218911709625],[121,267,79,-0.7731754489357142],[121,268,64,-0.7787819108623864],[121,268,65,-0.7784034916711382],[121,268,66,-0.778027309214479],[121,268,67,-0.7776533698591039],[121,268,68,-0.7772816798853144],[121,268,69,-0.7769122454866071],[121,268,70,-0.7765450727692503],[121,268,71,-0.7761801677518633],[121,268,72,-0.7758175363649955],[121,268,73,-0.775457184450718],[121,268,74,-0.7750991177621906],[121,268,75,-0.7747433419632551],[121,268,76,-0.7743898626280183],[121,268,77,-0.7740386852404356],[121,268,78,-0.7736898151938985],[121,268,79,-0.7733432577908176],[121,269,64,-0.7789514324040403],[121,269,65,-0.7785729168005793],[121,269,66,-0.7781966366859845],[121,269,67,-0.7778225984273754],[121,269,68,-0.777450808305532],[121,269,69,-0.7770812725144826],[121,269,70,-0.7767139971610809],[121,269,71,-0.7763489882645864],[121,269,72,-0.775986251756243],[121,269,73,-0.7756257934788707],[121,269,74,-0.7752676191864333],[121,269,75,-0.7749117345436314],[121,269,76,-0.7745581451254863],[121,269,77,-0.7742068564169231],[121,269,78,-0.7738578738123592],[121,269,79,-0.7735112026152864],[121,270,64,-0.7791210683986668],[121,270,65,-0.7787424578255656],[121,270,66,-0.7783660814909593],[121,270,67,-0.7779919457623677],[121,270,68,-0.7776200569210245],[121,270,69,-0.7772504211614665],[121,270,70,-0.7768830445911095],[121,270,71,-0.7765179332298295],[121,270,72,-0.7761550930095419],[121,270,73,-0.7757945297737925],[121,270,74,-0.7754362492773265],[121,270,75,-0.7750802571856809],[121,270,76,-0.7747265590747691],[121,270,77,-0.7743751604304638],[121,270,78,-0.774026066648186],[121,270,79,-0.7736792830324878],[121,271,64,-0.7792908184457707],[121,271,65,-0.7789121143471375],[121,271,66,-0.7785356432319775],[121,271,67,-0.7781614114681872],[121,271,68,-0.7777894253374302],[121,271,69,-0.7774196910347274],[121,271,70,-0.7770522146680338],[121,271,71,-0.7766870022578183],[121,271,72,-0.7763240597366441],[121,271,73,-0.7759633929487609],[121,271,74,-0.7756050076496719],[121,271,75,-0.775248909505728],[121,271,76,-0.7748951040937124],[121,271,77,-0.7745435969004234],[121,271,78,-0.7741943933222638],[121,271,79,-0.7738474986648237],[121,272,64,-0.7794606821439981],[121,272,65,-0.7790818859654667],[121,272,66,-0.7787053215107361],[121,272,67,-0.7783309951480547],[121,272,68,-0.7779589131594924],[121,272,69,-0.7775890817405305],[121,272,70,-0.7772215069996391],[121,272,71,-0.7768561949578572],[121,272,72,-0.7764931515483728],[121,272,73,-0.7761323826161157],[121,272,74,-0.7757738939173247],[121,272,75,-0.7754176911191424],[121,272,76,-0.7750637797991988],[121,272,77,-0.7747121654451962],[121,272,78,-0.7743628534544967],[121,272,79,-0.7740158491337072],[121,273,64,-0.7796306590911979],[121,273,65,-0.7792517722799195],[121,273,66,-0.7788751159281174],[121,273,67,-0.7785006964043678],[121,273,68,-0.7781285199911226],[121,273,69,-0.7777585928843003],[121,273,70,-0.7773909211928619],[121,273,71,-0.7770255109383933],[121,273,72,-0.7766623680546842],[121,273,73,-0.7763014983873214],[121,273,74,-0.7759429076932567],[121,273,75,-0.7755866016404013],[121,273,76,-0.7752325858072104],[121,273,77,-0.7748808656822672],[121,273,78,-0.774531446663872],[121,273,79,-0.7741843340596261],[121,274,64,-0.7798007488843907],[121,274,65,-0.7794217728890246],[121,274,66,-0.7790450260841572],[121,274,67,-0.7786705148386682],[121,274,68,-0.778298245435368],[121,274,69,-0.7779282240705877],[121,274,70,-0.7775604568537564],[121,274,71,-0.7771949498069828],[121,274,72,-0.7768317088646353],[121,274,73,-0.7764707398729347],[121,274,74,-0.7761120485895229],[121,274,75,-0.7757556406830575],[121,274,76,-0.7754015217327956],[121,274,77,-0.77504969722818],[121,274,78,-0.7747001725684265],[121,274,79,-0.7743529530621096],[121,275,64,-0.7799709511197923],[121,275,65,-0.7795918873904971],[121,275,66,-0.7792150515780691],[121,275,67,-0.7788404500516672],[121,275,68,-0.7784680890944361],[121,275,69,-0.7780979749030957],[121,275,70,-0.7777301135875196],[121,275,71,-0.7773645111703161],[121,275,72,-0.7770011735864087],[121,275,73,-0.7766401066826294],[121,275,74,-0.7762813162172872],[121,275,75,-0.7759248078597631],[121,275,76,-0.7755705871900948],[121,275,77,-0.7752186596985611],[121,275,78,-0.7748690307852723],[121,275,79,-0.7745217057597535],[121,276,64,-0.7801412653927825],[121,276,65,-0.7797621153812072],[121,276,66,-0.7793851920082124],[121,276,67,-0.7790105016432127],[121,276,68,-0.7786380505696623],[121,276,69,-0.7782678449846466],[121,276,70,-0.7778998909984595],[121,276,71,-0.7775341946341856],[121,276,72,-0.7771707618272803],[121,276,73,-0.7768095984251637],[121,276,74,-0.7764507101867891],[121,276,75,-0.7760941027822384],[121,276,76,-0.7757397817923066],[121,276,77,-0.7753877527080876],[121,276,78,-0.7750380209305628],[121,276,79,-0.7746905917701874],[121,277,64,-0.7803116912979668],[121,277,65,-0.7799324564572417],[121,277,66,-0.779555446972155],[121,277,67,-0.7791806692123517],[121,277,68,-0.7788081294615725],[121,277,69,-0.7784378339172437],[121,277,70,-0.7780697886900565],[121,277,71,-0.7777039998035475],[121,277,72,-0.7773404731936814],[121,277,73,-0.7769792147084429],[121,277,74,-0.7766202301074068],[121,277,75,-0.776263525061333],[121,277,76,-0.7759091051517519],[121,277,77,-0.7755569758705494],[121,277,78,-0.7752071426195569],[121,277,79,-0.7748596107101366],[121,278,64,-0.7804822284291539],[121,278,65,-0.7801029102138819],[121,278,66,-0.7797258160666493],[121,278,67,-0.7793509523573079],[121,278,68,-0.77897832536986],[121,278,69,-0.7786079413020498],[121,278,70,-0.778239806264941],[121,278,71,-0.7778739262824999],[121,278,72,-0.7775103072911761],[121,278,73,-0.7771489551394963],[121,278,74,-0.7767898755876338],[121,278,75,-0.776433074307004],[121,278,76,-0.7760785568798497],[121,278,77,-0.775726328798827],[121,278,78,-0.7753763954665948],[121,278,79,-0.7750287621954008],[121,279,64,-0.7806528763793334],[121,279,65,-0.7802734762455803],[121,279,66,-0.7798962988876108],[121,279,67,-0.7795213506754586],[121,279,68,-0.7791486378933636],[121,279,69,-0.7787781667393634],[121,279,70,-0.7784099433248713],[121,279,71,-0.778043973674259],[121,279,72,-0.7776802637244384],[121,279,73,-0.7773188193244545],[121,279,74,-0.7769596462350563],[121,279,75,-0.776602750128292],[121,279,76,-0.7762481365870945],[121,279,77,-0.7758958111048673],[121,279,78,-0.775545779085075],[121,279,79,-0.775198045840829],[121,280,64,-0.7808236347407372],[121,280,65,-0.7804441541460241],[121,280,66,-0.7800668950301801],[121,280,67,-0.779691863763397],[121,280,68,-0.7793190666301286],[121,280,69,-0.7789485098286816],[121,280,70,-0.7785801994707949],[121,280,71,-0.7782141415812225],[121,280,72,-0.7778503420973144],[121,280,73,-0.7774888068686118],[121,280,74,-0.7771295416564158],[121,280,75,-0.7767725521333848],[121,280,76,-0.7764178438831189],[121,280,77,-0.7760654223997472],[121,280,78,-0.7757152930875179],[121,280,79,-0.7753674612603835],[121,281,64,-0.7809945031048082],[121,281,65,-0.7806149435081011],[121,281,66,-0.7802376040886901],[121,281,67,-0.7798624912169008],[121,281,68,-0.7794896111773757],[121,281,69,-0.7791189701686674],[121,281,70,-0.7787505743028168],[121,281,71,-0.7783844296049359],[121,281,72,-0.7780205420127904],[121,281,73,-0.7776589173763935],[121,281,74,-0.7772995614575761],[121,281,75,-0.7769424799295837],[121,281,76,-0.7765876783766612],[121,281,77,-0.7762351622936408],[121,281,78,-0.7758849370855319],[121,281,79,-0.7755370080671066],[121,282,64,-0.7811654810622245],[121,282,65,-0.780785843923926],[121,282,66,-0.7804084256566913],[121,282,67,-0.7800332326309549],[121,282,68,-0.7796602711315247],[121,282,69,-0.7792895473571747],[121,282,70,-0.7789210674202237],[121,282,71,-0.7785548373461186],[121,282,72,-0.778190863073017],[121,282,73,-0.777829150451381],[121,282,74,-0.7774697052435484],[121,282,75,-0.7771125331233286],[121,282,76,-0.7767576396755895],[121,282,77,-0.7764050303958435],[121,282,78,-0.7760547106898389],[121,282,79,-0.7757066858731457],[121,283,64,-0.781336568202867],[121,283,65,-0.7809568549848073],[121,283,66,-0.780579359326919],[121,283,67,-0.7802040875997213],[121,283,68,-0.779831046088163],[121,283,69,-0.7794602409912156],[121,283,70,-0.7790916784214519],[121,283,71,-0.7787253644046304],[121,283,72,-0.7783613048792766],[121,283,73,-0.7779995056962788],[121,283,74,-0.7776399726184583],[121,283,75,-0.7772827113201661],[121,283,76,-0.7769277273868698],[121,283,77,-0.7765750263147397],[121,283,78,-0.7762246135102412],[121,283,79,-0.7758764942897199],[121,284,64,-0.781507764115882],[121,284,65,-0.7811279762813097],[121,284,66,-0.7807504046913558],[121,284,67,-0.7803750557165998],[121,284,68,-0.7800019356421072],[121,284,69,-0.7796310506670227],[121,284,70,-0.7792624069041497],[121,284,71,-0.778896010379534],[121,284,72,-0.7785318670320462],[121,284,73,-0.7781699827129773],[121,284,74,-0.7778103631856088],[121,284,75,-0.7774530141248108],[121,284,76,-0.7770979411166277],[121,284,77,-0.7767451496578655],[121,284,78,-0.7763946451556842],[121,284,79,-0.7760464329271833],[121,285,64,-0.7816790683896581],[121,285,65,-0.7812992074032312],[121,285,66,-0.7809215613412088],[121,285,67,-0.7805461365742059],[121,285,68,-0.7801729393873804],[121,285,69,-0.7798019759800267],[121,285,70,-0.7794332524651542],[121,285,71,-0.7790667748690727],[121,285,72,-0.7787025491309745],[121,285,73,-0.7783405811025296],[121,285,74,-0.7779808765474572],[121,285,75,-0.777623441141123],[121,285,76,-0.7772682804701259],[121,285,77,-0.7769154000318854],[121,285,78,-0.7765648052342335],[121,285,79,-0.7762165013950016],[121,286,64,-0.7818504806118038],[121,286,65,-0.781470547939581],[121,286,66,-0.7810928288668869],[121,286,67,-0.7807173297643478],[121,286,68,-0.78034405691719],[121,286,69,-0.7799730165248329],[121,286,70,-0.7796042147004686],[121,286,71,-0.779237657470647],[121,286,72,-0.7788733507748582],[121,286,73,-0.7785113004651285],[121,286,74,-0.7781515123055913],[121,286,75,-0.7777939919720855],[121,286,76,-0.7774387450517413],[121,286,77,-0.7770857770425693],[121,286,78,-0.7767350933530515],[121,286,79,-0.7763866993017285],[121,287,64,-0.7820220003692098],[121,287,65,-0.7816419974786407],[121,287,66,-0.7812642068580626],[121,287,67,-0.7808886348780887],[121,287,68,-0.780515287823989],[121,287,69,-0.780144171895284],[121,287,70,-0.7797752932053245],[121,287,71,-0.7794086577808768],[121,287,72,-0.7790442715617053],[121,287,73,-0.7786821404001693],[121,287,74,-0.7783222700607932],[121,287,75,-0.777964666219866],[121,287,76,-0.777609334465027],[121,287,77,-0.7772562802948548],[121,287,78,-0.7769055091184596],[121,287,79,-0.7765570262550692],[121,288,64,-0.7821936272480254],[121,288,65,-0.7818135556079422],[121,288,66,-0.7814356949036501],[121,288,67,-0.7810600515057241],[121,288,68,-0.7806866316994541],[121,288,69,-0.7803154416844371],[121,288,70,-0.7799464875741591],[121,288,71,-0.7795797753955788],[121,288,72,-0.7792153110887117],[121,288,73,-0.7788531005062262],[121,288,74,-0.7784931494130153],[121,288,75,-0.7781354634857944],[121,288,76,-0.7777800483126894],[121,288,77,-0.777426909392825],[121,288,78,-0.7770760521359161],[121,288,79,-0.7767274818618567],[121,289,64,-0.7823653608336367],[121,289,65,-0.7819852219142449],[121,289,66,-0.7816072925917812],[121,289,67,-0.7812315792367586],[121,289,68,-0.7808580881344617],[121,289,69,-0.7804868254845407],[121,289,70,-0.7801177974005922],[121,289,71,-0.7797510099097437],[121,289,72,-0.7793864689522382],[121,289,73,-0.77902418038103],[121,289,74,-0.778664149961357],[121,289,75,-0.7783063833703391],[121,289,76,-0.7779508861965654],[121,289,77,-0.7775976639396835],[121,289,78,-0.7772467220099922],[121,289,79,-0.7768980657280281],[121,290,64,-0.7825372007107285],[121,290,65,-0.7821569959835977],[121,290,66,-0.7817789995098688],[121,290,67,-0.7814032176599683],[121,290,68,-0.7810296567191515],[121,290,69,-0.780658322887097],[121,290,70,-0.7802892222774882],[121,290,71,-0.779922360917598],[121,290,72,-0.779557744747873],[121,290,73,-0.77919537962153],[121,290,74,-0.7788352713041287],[121,290,75,-0.7784774254731701],[121,290,76,-0.7781218477176842],[121,290,77,-0.7777685435378194],[121,290,78,-0.7774175183444348],[121,290,79,-0.7770687774586885],[121,291,64,-0.7827091464632517],[121,291,65,-0.7823288774013064],[121,291,66,-0.781950815244574],[121,291,67,-0.781574966363369],[121,291,68,-0.7812013370428932],[121,291,69,-0.7808299334828297],[121,291,70,-0.7804607617969246],[121,291,71,-0.7800938280125721],[121,291,72,-0.779729138070399],[121,291,73,-0.7793666978238613],[121,291,74,-0.7790065130388173],[121,291,75,-0.7786485893931261],[121,291,76,-0.7782929324762357],[121,291,77,-0.7779395477887725],[121,291,78,-0.7775884407421338],[121,291,79,-0.7772396166580771],[121,292,64,-0.782881197674448],[121,292,65,-0.7825008657519591],[121,292,66,-0.7821227393818301],[121,292,67,-0.7817468249342395],[121,292,68,-0.7813731286943111],[121,292,69,-0.7810016568617081],[121,292,70,-0.7806324155502152],[121,292,71,-0.7802654107873244],[121,292,72,-0.7799006485138186],[121,292,73,-0.7795381345833701],[121,292,74,-0.7791778747621121],[121,292,75,-0.778819874728239],[121,292,76,-0.7784641400715939],[121,292,77,-0.7781106762932588],[121,292,78,-0.7777594888051469],[121,292,79,-0.7774105829295922],[121,293,64,-0.7830533539268176],[121,293,65,-0.7826729606193927],[121,293,66,-0.7822947715068111],[121,293,67,-0.7819187929590904],[121,293,68,-0.7815450312612519],[121,293,69,-0.7811734926129149],[121,293,70,-0.7808041831278787],[121,293,71,-0.7804371088337085],[121,293,72,-0.780072275671321],[121,293,73,-0.7797096894945799],[121,293,74,-0.7793493560698712],[121,293,75,-0.778991281075701],[121,293,76,-0.778635470102285],[121,293,77,-0.7782819286511375],[121,293,78,-0.7779306621346658],[121,293,79,-0.7775816758757581],[121,294,64,-0.7832256148021814],[121,294,65,-0.7828451615867562],[121,294,66,-0.7824669112039935],[121,294,67,-0.7820908700237257],[121,294,68,-0.781717044330847],[121,294,69,-0.7813454403249084],[121,294,70,-0.7809760641197],[121,294,71,-0.7806089217428367],[121,294,72,-0.7802440191353441],[121,294,73,-0.7798813621512554],[121,294,74,-0.7795209565571848],[121,294,75,-0.7791628080319277],[121,294,76,-0.7788069221660492],[121,294,77,-0.778453304461474],[121,294,78,-0.77810196033108],[121,294,79,-0.7777528950982883],[121,295,64,-0.7833979798816582],[121,295,65,-0.7830174682364868],[121,295,66,-0.7826391580571332],[121,295,67,-0.7822630557132197],[121,295,68,-0.7818891674894891],[121,295,69,-0.7815174995853998],[121,295,70,-0.7811480581147083],[121,295,71,-0.7807808491050556],[121,295,72,-0.7804158784975526],[121,295,73,-0.7800531521463779],[121,295,74,-0.7796926758183516],[121,295,75,-0.7793344551925345],[121,295,76,-0.7789784958598185],[121,295,77,-0.7786248033225158],[121,295,78,-0.7782733829939531],[121,295,79,-0.7779242401980613],[121,296,64,-0.7835704487456416],[121,296,65,-0.7831898801502879],[121,296,66,-0.7828115116492431],[121,296,67,-0.7824353496118949],[121,296,68,-0.7820614003228099],[121,296,69,-0.7816896699813298],[121,296,70,-0.7813201647011535],[121,296,71,-0.7809528905099239],[121,296,72,-0.7805878533488136],[121,296,73,-0.7802250590721234],[121,296,74,-0.7798645134468551],[121,296,75,-0.7795062221523131],[121,296,76,-0.7791501907796925],[121,296,77,-0.7787964248316701],[121,296,78,-0.7784449297219992],[121,296,79,-0.7780957107750982],[121,297,64,-0.7837430209738624],[121,297,65,-0.7833623969091907],[121,297,66,-0.7829839715626549],[121,297,67,-0.7826077513033832],[121,297,68,-0.7822337424157418],[121,297,69,-0.7818619510989312],[121,297,70,-0.7814923834665684],[121,297,71,-0.7811250455462743],[121,297,72,-0.78075994327926],[121,297,73,-0.7803970825199241],[121,297,74,-0.7800364690354278],[121,297,75,-0.779678108505295],[121,297,76,-0.7793220065210014],[121,297,77,-0.7789681685855662],[121,297,78,-0.778616600113146],[121,297,79,-0.778267306428625],[121,298,64,-0.7839156961453562],[121,298,65,-0.7835350180935221],[121,298,66,-0.7831565373789869],[121,298,67,-0.7827802603705943],[121,298,68,-0.7824061933524857],[121,298,69,-0.782034342523696],[121,298,70,-0.7816647139977362],[121,298,71,-0.7812973138021815],[121,298,72,-0.7809321478782572],[121,298,73,-0.7805692220804367],[121,298,74,-0.7802085421760168],[121,298,75,-0.7798501138447177],[121,298,76,-0.7794939426782732],[121,298,77,-0.779140034180022],[121,298,78,-0.7787883937645016],[121,298,79,-0.7784390267570394],[121,299,64,-0.7840884738384877],[121,299,65,-0.7837077432829291],[121,299,66,-0.7833292086791682],[121,299,67,-0.7829528763957397],[121,299,68,-0.7825787527165355],[121,299,69,-0.7822068438404004],[121,299,70,-0.7818371558807155],[121,299,71,-0.7814696948649861],[121,299,72,-0.7811044667344278],[121,299,73,-0.7807414773435657],[121,299,74,-0.7803807324598084],[121,299,75,-0.7800222377630499],[121,299,76,-0.7796659988452586],[121,299,77,-0.7793120212100696],[121,299,78,-0.7789603102723793],[121,299,79,-0.7786108713579359],[121,300,64,-0.7842613536309184],[121,300,65,-0.7838805720563462],[121,300,66,-0.7835019850434065],[121,300,67,-0.7831255989603003],[121,300,68,-0.7827514200906452],[121,300,69,-0.7823794546330718],[121,300,70,-0.7820097087008069],[121,300,71,-0.7816421883212619],[121,300,72,-0.7812768994356194],[121,300,73,-0.7809138478984319],[121,300,74,-0.7805530394771969],[121,300,75,-0.7801944798519583],[121,300,76,-0.779838174614897],[121,300,77,-0.7794841292699215],[121,300,78,-0.7791323492322645],[121,300,79,-0.7787828398280723],[121,301,64,-0.7844343350996689],[121,301,65,-0.7840535039920579],[121,301,66,-0.7836748660512503],[121,301,67,-0.7832984276450886],[121,301,68,-0.7829241950568917],[121,301,69,-0.7825521744850512],[121,301,70,-0.7821823720426159],[121,301,71,-0.7818147937568789],[121,301,72,-0.781449445568966],[121,301,73,-0.7810863333334337],[121,301,74,-0.7807254628178448],[121,301,75,-0.7803668397023705],[121,301,76,-0.7800104695793803],[121,301,77,-0.7796563579530337],[121,301,78,-0.7793045102388769],[121,301,79,-0.7789549317634324],[121,302,64,-0.7846074178210952],[121,302,65,-0.7842265386676751],[121,302,66,-0.7838478512815654],[121,302,67,-0.7834713620302257],[121,302,68,-0.7830970771966511],[121,302,69,-0.7827250029789704],[121,302,70,-0.7823551454900294],[121,302,71,-0.7819875107569797],[121,302,72,-0.7816221047208658],[121,302,73,-0.781258933236225],[121,302,74,-0.7808980020706618],[121,302,75,-0.7805393169044513],[121,302,76,-0.7801828833301288],[121,302,77,-0.7798287068520822],[121,302,78,-0.7794767928861484],[121,302,79,-0.7791271467592036],[121,303,64,-0.7847806013708674],[121,303,65,-0.7843996756601129],[121,303,66,-0.7840209403125129],[121,303,67,-0.7836444016951183],[121,303,68,-0.7832700660905765],[121,303,69,-0.7828979396967283],[121,303,70,-0.782528028626193],[121,303,71,-0.7821603389059562],[121,303,72,-0.7817948764769576],[121,303,73,-0.7814316471936908],[121,303,74,-0.7810706568237799],[121,303,75,-0.7807119110475795],[121,303,76,-0.7803554154577683],[121,303,77,-0.7800011755589396],[121,303,78,-0.779649196767198],[121,303,79,-0.7792994844097516],[121,304,64,-0.7849538853240297],[121,304,65,-0.7845729145456524],[121,304,66,-0.7841941327216102],[121,304,67,-0.7838175462185208],[121,304,68,-0.7834431613186591],[121,304,69,-0.7830709842195539],[121,304,70,-0.782701021033573],[121,304,71,-0.7823332777875123],[121,304,72,-0.7819677604221827],[121,304,73,-0.7816044747920112],[121,304,74,-0.7812434266646164],[121,304,75,-0.780884621720411],[121,304,76,-0.7805280655521927],[121,304,77,-0.7801737636647376],[121,304,78,-0.7798217214743961],[121,304,79,-0.779471944308685],[121,305,64,-0.7851272692549698],[121,305,65,-0.7847462548999083],[121,305,66,-0.7843674280856996],[121,305,67,-0.7839907951785032],[121,305,68,-0.7836163624601972],[121,305,69,-0.7832441361279733],[121,305,70,-0.7828741222939242],[121,305,71,-0.7825063269846313],[121,305,72,-0.7821407561407535],[121,305,73,-0.7817774156166271],[121,305,74,-0.781416311179842],[121,305,75,-0.781057448510845],[121,305,76,-0.7807008332025307],[121,305,77,-0.7803464707598349],[121,305,78,-0.7799943665993306],[121,305,79,-0.7796445260488212],[121,306,64,-0.785300752737442],[121,306,65,-0.7849196962978531],[121,306,66,-0.7845408259809717],[121,306,67,-0.7841641481524753],[121,306,68,-0.7837896690938189],[121,306,69,-0.783417395001834],[121,306,70,-0.7830473319883133],[121,306,71,-0.7826794860796],[121,306,72,-0.7823138632161767],[121,306,73,-0.7819504692522651],[121,306,74,-0.7815893099554037],[121,306,75,-0.7812303910060494],[121,306,76,-0.7808737179971709],[121,306,77,-0.7805192964338404],[121,306,78,-0.7801671317328316],[121,306,79,-0.7798172292222113],[121,307,64,-0.785474335344536],[121,307,65,-0.7850932383137847],[121,307,66,-0.7847143259829339],[121,307,67,-0.7843376047171531],[121,307,68,-0.7839630807974508],[121,307,69,-0.7835907604202726],[121,307,70,-0.7832206496970875],[121,307,71,-0.7828527546539762],[121,307,72,-0.7824870812312208],[121,307,73,-0.7821236352829053],[121,307,74,-0.7817624225764925],[121,307,75,-0.7814034487924271],[121,307,76,-0.7810467195237278],[121,307,77,-0.780692240275581],[121,307,78,-0.7803400164649378],[121,307,79,-0.7799900534201065],[121,308,64,-0.7856480166487374],[121,308,65,-0.7852668805213887],[121,308,66,-0.7848879276664715],[121,308,67,-0.7845111644486227],[121,308,68,-0.7841365971483792],[121,308,69,-0.7837642319617769],[121,308,70,-0.7833940749999359],[121,308,71,-0.7830261322886506],[121,308,72,-0.782660409767979],[121,308,73,-0.7822969132918431],[121,308,74,-0.781935648627607],[121,308,75,-0.7815766214556791],[121,308,76,-0.7812198373691057],[121,308,77,-0.7808653018731642],[121,308,78,-0.7805130203849604],[121,308,79,-0.7801629982330215],[121,309,64,-0.785821796221906],[121,309,65,-0.785440622493715],[121,309,66,-0.7850616306058253],[121,309,67,-0.7846848269223161],[121,309,68,-0.7843102177232282],[121,309,69,-0.7839378092041626],[121,309,70,-0.7835676074758666],[121,309,71,-0.7831996185638244],[121,309,72,-0.7828338484078453],[121,309,73,-0.7824703028616661],[121,309,74,-0.7821089876925281],[121,309,75,-0.7817499085807808],[121,309,76,-0.7813930711194744],[121,309,77,-0.7810384808139543],[121,309,78,-0.7806861430814585],[121,309,79,-0.7803360632507106],[121,310,64,-0.7859956736352521],[121,310,65,-0.7856144638031554],[121,310,66,-0.7852354343745686],[121,310,67,-0.7848585917129886],[121,310,68,-0.7844839420979351],[121,310,69,-0.7841114917245502],[121,310,70,-0.7837412467031837],[121,310,71,-0.783373213058985],[121,310,72,-0.7830073967314917],[121,310,73,-0.7826438035742307],[121,310,74,-0.7822824393542975],[121,310,75,-0.7819233097519587],[121,310,76,-0.7815664203602458],[121,310,77,-0.7812117766845492],[121,310,78,-0.780859384142216],[121,310,79,-0.780509248062144],[121,311,64,-0.7861696484593992],[121,311,65,-0.7857884040215046],[121,311,66,-0.7854093385456686],[121,311,67,-0.7850324583947804],[121,311,68,-0.7846577698478141],[121,311,69,-0.7842852790994275],[121,311,70,-0.7839149922595493],[121,311,71,-0.7835469153529698],[121,311,72,-0.7831810543189301],[121,311,73,-0.7828174150107247],[121,311,74,-0.7824560031952787],[121,311,75,-0.7820968245527532],[121,311,76,-0.7817398846761372],[121,311,77,-0.7813851890708431],[121,311,78,-0.7810327431543048],[121,311,79,-0.7806825522555713],[121,312,64,-0.7863437202643506],[121,312,65,-0.7859624427199291],[121,312,66,-0.7855833426914549],[121,312,67,-0.7852064265411848],[121,312,68,-0.7848317005475222],[121,312,69,-0.7844591709046167],[121,312,70,-0.7840888437219509],[121,312,71,-0.7837207250239319],[121,312,72,-0.7833548207494807],[121,312,73,-0.7829911367516345],[121,312,74,-0.7826296787971256],[121,312,75,-0.7822704525659853],[121,312,76,-0.7819134636511373],[121,312,77,-0.7815587175579934],[121,312,78,-0.7812062197040509],[121,312,79,-0.7808559754184874],[121,313,64,-0.7865178886195148],[121,313,65,-0.7861365794689903],[121,313,66,-0.785757446383643],[121,313,67,-0.7853804957250718],[121,313,68,-0.785005733771085],[121,313,69,-0.7846331667152988],[121,313,70,-0.7842628006667258],[121,313,71,-0.7838946416493653],[121,313,72,-0.7835286956017943],[121,313,73,-0.7831649683767692],[121,313,74,-0.7828034657408054],[121,313,75,-0.7824441933737812],[121,313,76,-0.7820871568685319],[121,313,77,-0.781732361730445],[121,313,78,-0.7813798133770591],[121,313,79,-0.7810295171376578],[121,314,64,-0.7866921530936717],[121,314,65,-0.7863108138386127],[121,314,66,-0.7859316491933019],[121,314,67,-0.7855546655186559],[121,314,68,-0.7851798690918628],[121,314,69,-0.784807266105981],[121,314,70,-0.7844368626695281],[121,314,71,-0.7840686648060721],[121,314,72,-0.7837026784538214],[121,314,73,-0.7833389094652279],[121,314,74,-0.7829773636065666],[121,314,75,-0.7826180465575391],[121,314,76,-0.7822609639108692],[121,314,77,-0.7819061211718973],[121,314,78,-0.78155352375818],[121,314,79,-0.7812031769990845],[121,315,64,-0.7868665132550359],[121,315,65,-0.7864851453981452],[121,315,66,-0.7861059506909163],[121,315,67,-0.785728935493558],[121,315,68,-0.7853541060826132],[121,315,69,-0.7849814686505583],[121,315,70,-0.7846110293053914],[121,315,71,-0.7842427940702243],[121,315,72,-0.7838767688828734],[121,315,73,-0.7835129595954622],[121,315,74,-0.783151371974001],[121,315,75,-0.7827920116979921],[121,315,76,-0.7824348843600237],[121,315,77,-0.7820799954653667],[121,315,78,-0.7817273504315727],[121,315,79,-0.7813769545880698],[121,316,64,-0.7870409686712326],[121,316,65,-0.7866595737163389],[121,316,66,-0.7862803504463635],[121,316,67,-0.7859033052207824],[121,316,68,-0.7855284443154686],[121,316,69,-0.7851557739222913],[121,316,70,-0.7847853001487051],[121,316,71,-0.7844170290173413],[121,316,72,-0.7840509664656],[121,316,73,-0.7836871183452523],[121,316,74,-0.7833254904220208],[121,316,75,-0.7829660883751841],[121,316,76,-0.7826089177971726],[121,316,77,-0.7822539841931634],[121,316,78,-0.781901292980681],[121,316,79,-0.7815508494891917],[121,317,64,-0.7872155189092753],[121,317,65,-0.7868340983613236],[121,317,66,-0.7864548480288902],[121,317,67,-0.7860777742706937],[121,317,68,-0.7857028833619117],[121,317,69,-0.7853301814937822],[121,317,70,-0.7849596747731912],[121,317,71,-0.7845913692222658],[121,317,72,-0.7842252707779652],[121,317,73,-0.7838613852916845],[121,317,74,-0.7834997185288346],[121,317,75,-0.7831402761684472],[121,317,76,-0.7827830638027712],[121,317,77,-0.7824280869368676],[121,317,78,-0.7820753509882103],[121,317,79,-0.781724861286281],[121,318,64,-0.7873901635356273],[121,318,65,-0.7870087189006694],[121,318,66,-0.7866294430071744],[121,318,67,-0.7862523422130783],[121,318,68,-0.7858774227928388],[121,318,69,-0.7855046909370372],[121,318,70,-0.7851341527519672],[121,318,71,-0.7847658142592265],[121,318,72,-0.7843996813953102],[121,318,73,-0.784035760011213],[121,318,74,-0.7836740558720102],[121,318,75,-0.7833145746564637],[121,318,76,-0.782957321956617],[121,318,77,-0.7826023032773922],[121,318,78,-0.7822495240361895],[121,318,79,-0.7818989895624836],[121,319,64,-0.7875649021161788],[121,319,65,-0.7871834349013642],[121,319,66,-0.7868041349493028],[121,319,67,-0.7864270086171222],[121,319,68,-0.7860520621785358],[121,319,69,-0.7856793018234436],[121,319,70,-0.7853087336575217],[121,319,71,-0.7849403637018153],[121,319,72,-0.78457419789233],[121,319,73,-0.7842102420796366],[121,319,74,-0.7838485020284515],[121,319,75,-0.7834889834172426],[121,319,76,-0.7831316918378254],[121,319,77,-0.7827766327949592],[121,319,78,-0.7824238117059483],[121,319,79,-0.7820732339002372],[122,-64,64,-0.7307359658899958],[122,-64,65,-0.7304555950636797],[122,-64,66,-0.7301776548384802],[122,-64,67,-0.7299021503402264],[122,-64,68,-0.7296290866000523],[122,-64,69,-0.7293584685539778],[122,-64,70,-0.7290903010424735],[122,-64,71,-0.7288245888100322],[122,-64,72,-0.7285613365047356],[122,-64,73,-0.7283005486778391],[122,-64,74,-0.7280422297833249],[122,-64,75,-0.7277863841774873],[122,-64,76,-0.7275330161185053],[122,-64,77,-0.7272821297660159],[122,-64,78,-0.7270337291806911],[122,-64,79,-0.7267878183238101],[122,-63,64,-0.7308540989255621],[122,-63,65,-0.7305732855396255],[122,-63,66,-0.7302949026944531],[122,-63,67,-0.7300189555220215],[122,-63,68,-0.7297454490596129],[122,-63,69,-0.7294743882493975],[122,-63,70,-0.7292057779379972],[122,-63,71,-0.7289396228760565],[122,-63,72,-0.7286759277178108],[122,-63,73,-0.7284146970206689],[122,-63,74,-0.7281559352447677],[122,-63,75,-0.7278996467525569],[122,-63,76,-0.7276458358083709],[122,-63,77,-0.7273945065780025],[122,-63,78,-0.7271456631282797],[122,-63,79,-0.7268993094266376],[122,-62,64,-0.7309723939084537],[122,-62,65,-0.7306911384891307],[122,-62,66,-0.7304123135486844],[122,-62,67,-0.7301359242252308],[122,-62,68,-0.729861975562193],[122,-62,69,-0.7295904725078833],[122,-62,70,-0.7293214199150676],[122,-62,71,-0.7290548225405349],[122,-62,72,-0.7287906850446659],[122,-62,73,-0.7285290119910169],[122,-62,74,-0.7282698078458716],[122,-62,75,-0.7280130769778278],[122,-62,76,-0.7277588236573684],[122,-62,77,-0.7275070520564351],[122,-62,78,-0.7272577662480046],[122,-62,79,-0.7270109702056616],[122,-61,64,-0.7310908510804303],[122,-61,65,-0.730809154157608],[122,-61,66,-0.7305298876502211],[122,-61,67,-0.7302530567025165],[122,-61,68,-0.7299786663640511],[122,-61,69,-0.7297067215892713],[122,-61,70,-0.729437227237079],[122,-61,71,-0.7291701880704005],[122,-61,72,-0.7289056087557549],[122,-61,73,-0.7286434938628374],[122,-61,74,-0.7283838478640721],[122,-61,75,-0.7281266751341973],[122,-61,76,-0.7278719799498374],[122,-61,77,-0.7276197664890758],[122,-61,78,-0.7273700388310316],[122,-61,79,-0.7271228009554316],[122,-60,64,-0.7312094706800285],[122,-60,65,-0.7309273327872444],[122,-60,66,-0.7306476252448812],[122,-60,67,-0.7303703532033098],[122,-60,68,-0.7300955217182119],[122,-60,69,-0.7298231357501607],[122,-60,70,-0.7295532001641865],[122,-60,71,-0.7292857197293452],[122,-60,72,-0.7290206991182866],[122,-60,73,-0.7287581429068377],[122,-60,74,-0.7284980555735553],[122,-60,75,-0.7282404414993112],[122,-60,76,-0.7279853049668641],[122,-60,77,-0.7277326501604318],[122,-60,78,-0.7274824811652688],[122,-60,79,-0.7272348019672371],[122,-59,64,-0.7313282529425505],[122,-59,65,-0.7310456746169892],[122,-59,66,-0.7307655265752429],[122,-59,67,-0.7304878139737979],[122,-59,68,-0.7302125418744535],[122,-59,69,-0.7299397152439019],[122,-59,70,-0.7296693389532936],[122,-59,71,-0.7294014177778065],[122,-59,72,-0.7291359563962138],[122,-59,73,-0.7288729593904664],[122,-59,74,-0.7286124312452464],[122,-59,75,-0.7283543763475521],[122,-59,76,-0.7280987989862687],[122,-59,77,-0.7278457033517419],[122,-59,78,-0.7275950935353541],[122,-59,79,-0.7273469735290957],[122,-58,64,-0.7314471981001138],[122,-58,65,-0.731164179882604],[122,-58,66,-0.7308835918806931],[122,-58,67,-0.7306054392569752],[122,-58,68,-0.7303297270793585],[122,-58,69,-0.7300564603206465],[122,-58,70,-0.7297856438581025],[122,-58,71,-0.7295172824730183],[122,-58,72,-0.7292513808502825],[122,-58,73,-0.7289879435779628],[122,-58,74,-0.7287269751468592],[122,-58,75,-0.7284684799500886],[122,-58,76,-0.7282124622826559],[122,-58,77,-0.7279589263410271],[122,-58,78,-0.7277078762227055],[122,-58,79,-0.7274593159258027],[122,-57,64,-0.7315663063816322],[122,-57,65,-0.7312828488166436],[122,-57,66,-0.7310018213974097],[122,-57,67,-0.7307232292926232],[122,-57,68,-0.7304470775762941],[122,-57,69,-0.7301733712273287],[122,-57,70,-0.7299021151290949],[122,-57,71,-0.729633314068991],[122,-57,72,-0.7293669727380132],[122,-57,73,-0.7291030957303385],[122,-57,74,-0.7288416875428769],[122,-57,75,-0.7285827525748566],[122,-57,76,-0.728326295127395],[122,-57,77,-0.7280723194030708],[122,-57,78,-0.7278208295055012],[122,-57,79,-0.7275718294389122],[122,-56,64,-0.7316855780128384],[122,-56,65,-0.7314016816484794],[122,-56,66,-0.7311202153583833],[122,-56,67,-0.7308411843173342],[122,-56,68,-0.7305645936054349],[122,-56,69,-0.7302904482076867],[122,-56,70,-0.7300187530135543],[122,-56,71,-0.7297495128165344],[122,-56,72,-0.7294827323137233],[122,-56,73,-0.7292184161053991],[122,-56,74,-0.7289565686945746],[122,-56,75,-0.7286971944865817],[122,-56,76,-0.7284402977886426],[122,-56,77,-0.7281858828094416],[122,-56,78,-0.7279339536587025],[122,-56,79,-0.7276845143467584],[122,-55,64,-0.7318050132162652],[122,-55,65,-0.7315206786042793],[122,-55,66,-0.731238773993399],[122,-55,67,-0.7309593045644912],[122,-55,68,-0.7306822754037436],[122,-55,69,-0.7304076915022444],[122,-55,70,-0.730135557755547],[122,-55,71,-0.7298658789632386],[122,-55,72,-0.7295986598285074],[122,-55,73,-0.7293339049577251],[122,-55,74,-0.7290716188599997],[122,-55,75,-0.728811805946759],[122,-55,76,-0.7285544705313227],[122,-55,77,-0.7282996168284733],[122,-55,78,-0.7280472489540336],[122,-55,79,-0.7277973709244366],[122,-54,64,-0.7319246122112957],[122,-54,65,-0.7316398399070583],[122,-54,66,-0.7313574975290854],[122,-54,67,-0.7310775902643184],[122,-54,68,-0.7308001232050213],[122,-54,69,-0.7305251013483611],[122,-54,70,-0.7302525295959721],[122,-54,71,-0.7299824127535233],[122,-54,72,-0.7297147555302874],[122,-54,73,-0.7294495625387222],[122,-54,74,-0.7291868382940221],[122,-54,75,-0.7289265872137042],[122,-54,76,-0.7286688136171773],[122,-54,77,-0.728413521725315],[122,-54,78,-0.7281607156600319],[122,-54,79,-0.7279103994438536],[122,-53,64,-0.7320443752141512],[122,-53,65,-0.7317591657766669],[122,-53,66,-0.7314763861889038],[122,-53,67,-0.7311960416438692],[122,-53,68,-0.7309181372398956],[122,-53,69,-0.73064267798022],[122,-53,70,-0.7303696687725489],[122,-53,71,-0.7300991144286266],[122,-53,72,-0.7298310196638013],[122,-53,73,-0.7295653890966084],[122,-53,74,-0.7293022272483223],[122,-53,75,-0.7290415385425404],[122,-53,76,-0.7287833273047537],[122,-53,77,-0.7285275977619194],[122,-53,78,-0.7282743540420359],[122,-53,79,-0.7280236001737144],[122,-52,64,-0.7321643024378787],[122,-52,65,-0.7318786564297779],[122,-52,66,-0.7315954401931348],[122,-52,67,-0.7313146589270139],[122,-52,68,-0.7310363177358072],[122,-52,69,-0.7307604216288144],[122,-52,70,-0.7304869755198058],[122,-52,71,-0.7302159842265917],[122,-52,72,-0.7299474524705888],[122,-52,73,-0.7296813848764022],[122,-52,74,-0.7294177859713777],[122,-52,75,-0.7291566601851858],[122,-52,76,-0.728898011849392],[122,-52,77,-0.7286418451970288],[122,-52,78,-0.7283881643621718],[122,-52,79,-0.7281369733795098],[122,-51,64,-0.7322843940924015],[122,-51,65,-0.7319983120799378],[122,-51,66,-0.7317146597589295],[122,-51,67,-0.7314334423344895],[122,-51,68,-0.7311546649170619],[122,-51,69,-0.7308783325219995],[122,-51,70,-0.7306044500691288],[122,-51,71,-0.7303330223823179],[122,-51,72,-0.7300640541890434],[122,-51,73,-0.7297975501199723],[122,-51,74,-0.729533514708514],[122,-51,75,-0.7292719523904041],[122,-51,76,-0.7290128675032748],[122,-51,77,-0.7287562642862264],[122,-51,78,-0.728502146879404],[122,-51,79,-0.7282505193235665],[122,-50,64,-0.7324046503845008],[122,-50,65,-0.7321181329375468],[122,-50,66,-0.7318340451002892],[122,-50,67,-0.7315523920838813],[122,-50,68,-0.7312731790048097],[122,-50,69,-0.7309964108844723],[122,-50,70,-0.7307220926487432],[122,-50,71,-0.7304502291275403],[122,-50,72,-0.7301808250543917],[122,-50,73,-0.7299138850660185],[122,-50,74,-0.7296494137018852],[122,-50,75,-0.7293874154037848],[122,-50,76,-0.7291278945154083],[122,-50,77,-0.7288708552819165],[122,-50,78,-0.7286163018495159],[122,-50,79,-0.7283642382650282],[122,-49,64,-0.7325250715178363],[122,-49,65,-0.7322381192098817],[122,-49,66,-0.7319535964280894],[122,-49,67,-0.7316715083896448],[122,-49,68,-0.7313918602170681],[122,-49,69,-0.7311146569377943],[122,-49,70,-0.7308399034837362],[122,-49,71,-0.7305676046908531],[122,-49,72,-0.7302977652987168],[122,-49,73,-0.7300303899500936],[122,-49,74,-0.7297654831904958],[122,-49,75,-0.7295030494677655],[122,-49,76,-0.7292430931316445],[122,-49,77,-0.7289856184333463],[122,-49,78,-0.7287306295251312],[122,-49,79,-0.7284781304598764],[122,-48,64,-0.7326456576929292],[122,-48,65,-0.7323582711010763],[122,-48,66,-0.7320733139500596],[122,-48,67,-0.7317907914630865],[122,-48,68,-0.7315107087687028],[122,-48,69,-0.7312330709003718],[122,-48,70,-0.7309578827960367],[122,-48,71,-0.7306851492976896],[122,-48,72,-0.7304148751509377],[122,-48,73,-0.7301470650045844],[122,-48,74,-0.7298817234101814],[122,-48,75,-0.7296188548216119],[122,-48,76,-0.729358463594661],[122,-48,77,-0.7291005539865866],[122,-48,78,-0.7288451301556952],[122,-48,79,-0.7285921961609116],[122,-47,64,-0.7327664091072114],[122,-47,65,-0.7324785888121729],[122,-47,66,-0.7321931978708331],[122,-47,67,-0.731910241512414],[122,-47,68,-0.7316297248714778],[122,-47,69,-0.7313516529875066],[122,-47,70,-0.7310760308044661],[122,-47,71,-0.7308028631703728],[122,-47,72,-0.7305321548368605],[122,-47,73,-0.7302639104587616],[122,-47,74,-0.729998134593659],[122,-47,75,-0.7297348317014692],[122,-47,76,-0.7294740061440119],[122,-47,77,-0.729215662184582],[122,-47,78,-0.7289598039875242],[122,-47,79,-0.7287064356178032],[122,-46,64,-0.7328873259550133],[122,-46,65,-0.7325990725411082],[122,-46,66,-0.7323132483919365],[122,-46,67,-0.7320298587427245],[122,-46,68,-0.7317489087340425],[122,-46,69,-0.7314704034113835],[122,-46,70,-0.731194347724726],[122,-46,71,-0.7309207465281027],[122,-46,72,-0.7306496045791655],[122,-46,73,-0.7303809265387676],[122,-46,74,-0.7301147169705148],[122,-46,75,-0.7298509803403483],[122,-46,76,-0.7295897210161149],[122,-46,77,-0.7293309432671382],[122,-46,78,-0.7290746512637934],[122,-46,79,-0.7288208490770773],[122,-45,64,-0.7330084084275514],[122,-45,65,-0.7327197224827025],[122,-45,66,-0.732433465711775],[122,-45,67,-0.7321496433559914],[122,-45,68,-0.7318682605619207],[122,-45,69,-0.7315893223810574],[122,-45,70,-0.7313128337693853],[122,-45,71,-0.7310387995869436],[122,-45,72,-0.7307672245973946],[122,-45,73,-0.7304981134676035],[122,-45,74,-0.7302314707671905],[122,-45,75,-0.7299673009681136],[122,-45,76,-0.7297056084442384],[122,-45,77,-0.7294463974709091],[122,-45,78,-0.7291896722245236],[122,-45,79,-0.7289354367821028],[122,-44,64,-0.7331296567129796],[122,-44,65,-0.7328405388287096],[122,-44,66,-0.732553850025685],[122,-44,67,-0.7322695955511153],[122,-44,68,-0.7319877805575592],[122,-44,69,-0.7317084101025046],[122,-44,70,-0.7314314891479305],[122,-44,71,-0.7311570225598754],[122,-44,72,-0.730885015108002],[122,-44,73,-0.7306154714651796],[122,-44,74,-0.7303483962070346],[122,-44,75,-0.7300837938115333],[122,-44,76,-0.7298216686585519],[122,-44,77,-0.7295620250294472],[122,-44,78,-0.7293048671066318],[122,-44,79,-0.7290501989731428],[122,-43,64,-0.7332510709963758],[122,-43,65,-0.732961521767804],[122,-43,66,-0.7326744015259202],[122,-43,67,-0.7323897155239112],[122,-43,68,-0.7321074689203171],[122,-43,69,-0.7318276667786093],[122,-43,70,-0.7315503140667541],[122,-43,71,-0.7312754156567793],[122,-43,72,-0.7310029763243409],[122,-43,73,-0.7307330007483029],[122,-43,74,-0.7304654935102894],[122,-43,75,-0.7302004590942669],[122,-43,76,-0.7299379018861137],[122,-43,77,-0.7296778261731912],[122,-43,78,-0.7294202361439184],[122,-43,79,-0.729165135887341],[122,-42,64,-0.7333726514597302],[122,-42,65,-0.7330826714855694],[122,-42,66,-0.7327951204016397],[122,-42,67,-0.7325100034670966],[122,-42,68,-0.7322273258464516],[122,-42,69,-0.7319470926091515],[122,-42,70,-0.7316693087291404],[122,-42,71,-0.7313939790844272],[122,-42,72,-0.7311211084566516],[122,-42,73,-0.7308507015306642],[122,-42,74,-0.7305827628940782],[122,-42,75,-0.7303172970368517],[122,-42,76,-0.7300543083508573],[122,-42,77,-0.7297938011294522],[122,-42,78,-0.7295357795670541],[122,-42,79,-0.729280247758709],[122,-41,64,-0.7334943982819953],[122,-41,65,-0.7332039881645481],[122,-41,66,-0.7329160068389585],[122,-41,67,-0.7326304595703409],[122,-41,68,-0.7323473515291699],[122,-41,69,-0.7320666877908575],[122,-41,70,-0.7317884733353174],[122,-41,71,-0.7315127130465304],[122,-41,72,-0.7312394117121113],[122,-41,73,-0.7309685740228885],[122,-41,74,-0.7307002045724558],[122,-41,75,-0.7304343078567545],[122,-41,76,-0.7301708882736424],[122,-41,77,-0.7299099501224653],[122,-41,78,-0.7296514976036306],[122,-41,79,-0.7293955348181769],[122,-40,64,-0.7336163116390669],[122,-40,65,-0.7333254719842227],[122,-40,66,-0.733037061020928],[122,-40,67,-0.7327510840202475],[122,-40,68,-0.7324675461586084],[122,-40,69,-0.7321864525173805],[122,-40,70,-0.7319078080824366],[122,-40,71,-0.7316316177437211],[122,-40,72,-0.7313578862948149],[122,-40,73,-0.7310866184325155],[122,-40,74,-0.7308178187563887],[122,-40,75,-0.73055149176835],[122,-40,76,-0.730287641872235],[122,-40,77,-0.7300262733733687],[122,-40,78,-0.7297673904781403],[122,-40,79,-0.7295109972935729],[122,-39,64,-0.7337383917038068],[122,-39,65,-0.7334471231210379],[122,-39,66,-0.7331582831275588],[122,-39,67,-0.7328718770003746],[122,-39,68,-0.7325879099218569],[122,-39,69,-0.7323063869793225],[122,-39,70,-0.7320273131645955],[122,-39,71,-0.7317506933735745],[122,-39,72,-0.7314765324057974],[122,-39,73,-0.7312048349640221],[122,-39,74,-0.7309356056537775],[122,-39,75,-0.7306688489829454],[122,-39,76,-0.7304045693613296],[122,-39,77,-0.7301427711002265],[122,-39,78,-0.7298834584119991],[122,-39,79,-0.7296266354096463],[122,-38,64,-0.7338606386460227],[122,-38,65,-0.7335689417483808],[122,-38,66,-0.7332796733358],[122,-38,67,-0.7329928386912165],[122,-38,68,-0.7327084430029362],[122,-38,69,-0.7324264913642149],[122,-38,70,-0.7321469887728177],[122,-38,71,-0.7318699401305885],[122,-38,72,-0.7315953502430133],[122,-38,73,-0.7313232238188018],[122,-38,74,-0.731053565469437],[122,-38,75,-0.730786379708758],[122,-38,76,-0.7305216709525288],[122,-38,77,-0.7302594435180086],[122,-38,78,-0.7299997016235256],[122,-38,79,-0.7297424493880463],[122,-37,64,-0.733983052632519],[122,-37,65,-0.733690928036632],[122,-37,66,-0.7334012318195915],[122,-37,67,-0.7331139692702542],[122,-37,68,-0.7328291455828522],[122,-37,69,-0.7325467658565692],[122,-37,70,-0.7322668350951036],[122,-37,71,-0.7319893582062348],[122,-37,72,-0.7317143400013884],[122,-37,73,-0.731441785195216],[122,-37,74,-0.7311716984051466],[122,-37,75,-0.7309040841509677],[122,-37,76,-0.7306389468543949],[122,-37,77,-0.7303762908386413],[122,-37,78,-0.7301161203279923],[122,-37,79,-0.7298584394473736],[122,-36,64,-0.7341056338270849],[122,-36,65,-0.7338130821531537],[122,-36,66,-0.73352295874985],[122,-36,67,-0.7332352689119429],[122,-36,68,-0.7329500178395799],[122,-36,69,-0.7326672106378644],[122,-36,70,-0.732386852316418],[122,-36,71,-0.7321089477889465],[122,-36,72,-0.7318335018728057],[122,-36,73,-0.731560519288581],[122,-36,74,-0.7312900046596378],[122,-36,75,-0.7310219625117034],[122,-36,76,-0.7307563972724359],[122,-36,77,-0.7304933132709943],[122,-36,78,-0.7302327147376124],[122,-36,79,-0.7299746058031669],[122,-35,64,-0.7342283823904809],[122,-35,65,-0.7339354042622749],[122,-35,66,-0.7336448542944569],[122,-35,67,-0.7333567377876984],[122,-35,68,-0.733071059948053],[122,-35,69,-0.7327878258865339],[122,-35,70,-0.7325070406186764],[122,-35,71,-0.7322287090641043],[122,-35,72,-0.731952836046094],[122,-35,73,-0.731679426291155],[122,-35,74,-0.7314084844285806],[122,-35,75,-0.7311400149900293],[122,-35,76,-0.7308740224090929],[122,-35,77,-0.7306105110208675],[122,-35,78,-0.7303494850615265],[122,-35,79,-0.7300909486678895],[122,-34,64,-0.7343512984804904],[122,-34,65,-0.7340578945253443],[122,-34,66,-0.7337669186183093],[122,-34,67,-0.7334783760659489],[122,-34,68,-0.7331922720802131],[122,-34,69,-0.7329086117780161],[122,-34,70,-0.7326274001807971],[122,-34,71,-0.7323486422140879],[122,-34,72,-0.7320723427070768],[122,-34,73,-0.7317985063921887],[122,-34,74,-0.7315271379046353],[122,-34,75,-0.731258241781997],[122,-34,76,-0.7309918224637911],[122,-34,77,-0.7307278842910416],[122,-34,78,-0.7304664315058536],[122,-34,79,-0.7302074682509803],[122,-33,64,-0.7344743822518991],[122,-33,65,-0.73418055310071],[122,-33,66,-0.7338891518832997],[122,-33,67,-0.7336001839121146],[122,-33,68,-0.7333136544049914],[122,-33,69,-0.7330295684847351],[122,-33,70,-0.7327479311786798],[122,-33,71,-0.7324687474182558],[122,-33,72,-0.732192022038554],[122,-33,73,-0.7319177597779053],[122,-33,74,-0.731645965277431],[122,-33,75,-0.7313766430806243],[122,-33,76,-0.7311097976329191],[122,-33,77,-0.7308454332812586],[122,-33,78,-0.7305835542736703],[122,-33,79,-0.7303241647588333],[122,-32,64,-0.7345976338565186],[122,-32,65,-0.7343033801437413],[122,-32,66,-0.734011554248339],[122,-32,67,-0.7337221614886306],[122,-32,68,-0.7334352070883299],[122,-32,69,-0.7331506961761229],[122,-32,70,-0.7328686337852293],[122,-32,71,-0.7325890248529683],[122,-32,72,-0.7323118742203237],[122,-32,73,-0.7320371866315235],[122,-32,74,-0.7317649667335893],[122,-32,75,-0.7314952190759183],[122,-32,76,-0.7312279481098515],[122,-32,77,-0.730963158188243],[122,-32,78,-0.7307008535650342],[122,-32,79,-0.730441038394821],[122,-31,64,-0.7347210534431657],[122,-31,65,-0.7344263758068098],[122,-31,66,-0.7341341258693361],[122,-31,67,-0.7338443089549265],[122,-31,68,-0.7335569302931617],[122,-31,69,-0.7332719950185993],[122,-31,70,-0.7329895081703343],[122,-31,71,-0.7327094746915659],[122,-31,72,-0.7324318994291614],[122,-31,73,-0.7321567871332362],[122,-31,74,-0.7318841424567031],[122,-31,75,-0.7316139699548542],[122,-31,76,-0.7313462740849286],[122,-31,77,-0.7310810592056827],[122,-31,78,-0.7308183295769621],[122,-31,79,-0.7305580893592718],[122,-30,64,-0.734844641157714],[122,-30,65,-0.7345495402393398],[122,-30,66,-0.7342568668992496],[122,-30,67,-0.7339666264674778],[122,-30,68,-0.7336788241794625],[122,-30,69,-0.7333934651756226],[122,-30,70,-0.7331105545009196],[122,-30,71,-0.7328300971044222],[122,-30,72,-0.732552097838872],[122,-30,73,-0.7322765614602624],[122,-30,74,-0.7320034926273883],[122,-30,75,-0.7317328959014271],[122,-30,76,-0.7314647757455076],[122,-30,77,-0.7311991365242786],[122,-30,78,-0.7309359825034825],[122,-30,79,-0.7306753178495229],[122,-29,64,-0.7349683971430807],[122,-29,65,-0.7346728735877959],[122,-29,66,-0.7343797774880743],[122,-29,67,-0.7340891141797928],[122,-29,68,-0.7338008889042371],[122,-29,69,-0.7335151068076778],[122,-29,70,-0.7332317729409322],[122,-29,71,-0.7329508922589296],[122,-29,72,-0.7326724696202762],[122,-29,73,-0.7323965097868339],[122,-29,74,-0.7321230174232702],[122,-29,75,-0.7318519970966391],[122,-29,76,-0.7315834532759491],[122,-29,77,-0.731317390331733],[122,-29,78,-0.7310538125356205],[122,-29,79,-0.7307927240599063],[122,-28,64,-0.735092321539214],[122,-28,65,-0.7347963759956695],[122,-28,66,-0.7345028577828281],[122,-28,67,-0.7342117722423996],[122,-28,68,-0.7339231246215068],[122,-28,69,-0.7336369200722618],[122,-28,70,-0.7333531636513283],[122,-28,71,-0.7330718603194865],[122,-28,72,-0.7327930149411972],[122,-28,73,-0.7325166322841817],[122,-28,74,-0.7322427170189703],[122,-28,75,-0.7319712737184842],[122,-28,76,-0.7317023068576033],[122,-28,77,-0.7314358208127345],[122,-28,78,-0.7311718198613862],[122,-28,79,-0.7309103081817347],[122,-27,64,-0.7352164144831439],[122,-27,65,-0.7349200476035302],[122,-27,66,-0.7346261079276042],[122,-27,67,-0.7343346008028975],[122,-27,68,-0.7340455314823598],[122,-27,69,-0.7337589051239357],[122,-27,70,-0.7334747267901249],[122,-27,71,-0.7331930014475483],[122,-27,72,-0.7329137339665122],[122,-27,73,-0.7326369291205872],[122,-27,74,-0.7323625915861575],[122,-27,75,-0.732090725942002],[122,-27,76,-0.731821336668862],[122,-27,77,-0.7315544281490104],[122,-27,78,-0.7312900046658246],[122,-27,79,-0.7310280704033539],[122,-26,64,-0.7353406761089626],[122,-26,65,-0.7350438885490065],[122,-26,66,-0.7347495280635497],[122,-26,67,-0.7344576000059361],[122,-26,68,-0.7341681096349324],[122,-26,69,-0.7338810621143046],[122,-26,70,-0.733596462512379],[122,-26,71,-0.7333143158016074],[122,-26,72,-0.7330346268581318],[122,-26,73,-0.7327574004613625],[122,-26,74,-0.7324826412935277],[122,-26,75,-0.7322103539392548],[122,-26,76,-0.7319405428851377],[122,-26,77,-0.7316732125193052],[122,-26,78,-0.7314083671309952],[122,-26,79,-0.7311460109101211],[122,-25,64,-0.7354651065478471],[122,-25,65,-0.7351678989668069],[122,-25,66,-0.734873118328889],[122,-25,67,-0.734580769993239],[122,-25,68,-0.7342908592244299],[122,-25,69,-0.7340033911920396],[122,-25,70,-0.7337183709702105],[122,-25,71,-0.7334358035372157],[122,-25,72,-0.7331556937750225],[122,-25,73,-0.7328780464688719],[122,-25,74,-0.7326028663068263],[122,-25,75,-0.732330157879352],[122,-25,76,-0.7320599256788858],[122,-25,77,-0.7317921740994039],[122,-25,78,-0.7315269074359951],[122,-25,79,-0.7312641298844278],[122,-24,64,-0.7355897059280382],[122,-24,65,-0.7352920789887011],[122,-24,66,-0.7349968788589035],[122,-24,67,-0.7347041109035826],[122,-24,68,-0.7344137803931076],[122,-24,69,-0.7341258925028575],[122,-24,70,-0.7338404523127814],[122,-24,71,-0.7335574648069634],[122,-24,72,-0.7332769348731865],[122,-24,73,-0.7329988673025118],[122,-24,74,-0.7327232667888272],[122,-24,75,-0.7324501379284278],[122,-24,76,-0.7321794852195842],[122,-24,77,-0.7319113130621105],[122,-24,78,-0.7316456257569373],[122,-24,79,-0.7313824275056786],[122,-23,64,-0.7357144743748932],[122,-23,65,-0.7354164287435704],[122,-23,66,-0.7351208097859827],[122,-23,67,-0.7348276228728476],[122,-23,68,-0.734536873280321],[122,-23,69,-0.7342485661895727],[122,-23,70,-0.7339627066863477],[122,-23,71,-0.7336792997605313],[122,-23,72,-0.7333983503057124],[122,-23,73,-0.7331198631187624],[122,-23,74,-0.7328438428993848],[122,-23,75,-0.7325702942496941],[122,-23,76,-0.732299221673785],[122,-23,77,-0.7320306295773],[122,-23,78,-0.7317645222670024],[122,-23,79,-0.731500903950343],[122,-22,64,-0.7358394120108722],[122,-22,65,-0.7355409483573953],[122,-22,66,-0.7352449112396109],[122,-22,67,-0.7349513060340067],[122,-22,68,-0.734660138022514],[122,-22,69,-0.7343714123920834],[122,-22,70,-0.7340851342342457],[122,-22,71,-0.7338013085446771],[122,-22,72,-0.7335199402227625],[122,-22,73,-0.7332410340711741],[122,-22,74,-0.7329645947954202],[122,-22,75,-0.7326906270034259],[122,-22,76,-0.7324191352051002],[122,-22,77,-0.7321501238119047],[122,-22,78,-0.7318835971364257],[122,-22,79,-0.7316195593919417],[122,-21,64,-0.735964518955524],[122,-21,65,-0.7356656379532415],[122,-21,66,-0.7353691833463544],[122,-21,67,-0.7350751605171099],[122,-21,68,-0.7347835747532041],[122,-21,69,-0.734494431247358],[122,-21,70,-0.7342077350968784],[122,-21,71,-0.7339234913032219],[122,-21,72,-0.7336417047715591],[122,-21,73,-0.7333623803103531],[122,-21,74,-0.7330855226309075],[122,-21,75,-0.732811136346948],[122,-21,76,-0.7325392259741884],[122,-21,77,-0.7322697959298997],[122,-21,78,-0.732002850532482],[122,-21,79,-0.7317383940010324],[122,-20,64,-0.7360897953255393],[122,-20,65,-0.7357904976513124],[122,-20,66,-0.7354936262299129],[122,-20,67,-0.7351991864493368],[122,-20,68,-0.734907183603035],[122,-20,69,-0.7346176228894881],[122,-20,70,-0.7343305094117679],[122,-20,71,-0.7340458481771017],[122,-20,72,-0.733763644096436],[122,-20,73,-0.7334839019840143],[122,-20,74,-0.7332066265569259],[122,-20,75,-0.732931822434687],[122,-20,76,-0.7326594941388066],[122,-20,77,-0.7323896460923556],[122,-20,78,-0.7321222826195388],[122,-20,79,-0.731857407945262],[122,-19,64,-0.7362152412347294],[122,-19,65,-0.7359155275689279],[122,-19,66,-0.7356182400110989],[122,-19,67,-0.7353233839549767],[122,-19,68,-0.7350309646997555],[122,-19,69,-0.7347409874496655],[122,-19,70,-0.7344534573135336],[122,-19,71,-0.734168379304347],[122,-19,72,-0.7338857583388176],[122,-19,73,-0.7336055992369596],[122,-19,74,-0.7333279067216381],[122,-19,75,-0.7330526854181496],[122,-19,76,-0.7327799398537889],[122,-19,77,-0.7325096744574172],[122,-19,78,-0.7322418935590341],[122,-19,79,-0.7319766013893448],[122,-18,64,-0.7363408567940489],[122,-18,65,-0.7360407278205474],[122,-18,66,-0.7357430248078605],[122,-18,67,-0.7354477531554496],[122,-18,68,-0.7351549181682422],[122,-18,69,-0.7348645250562074],[122,-18,70,-0.7345765789339158],[122,-18,71,-0.7342910848201052],[122,-18,72,-0.7340080476372419],[122,-18,73,-0.7337274722111011],[122,-18,74,-0.7334493632703134],[122,-18,75,-0.7331737254459461],[122,-18,76,-0.7329005632710696],[122,-18,77,-0.7326298811803256],[122,-18,78,-0.7323616835094995],[122,-18,79,-0.7320959744950861],[122,-17,64,-0.7364666421115751],[122,-17,65,-0.7361660985177491],[122,-17,66,-0.7358679807352605],[122,-17,67,-0.7355722941692873],[122,-17,68,-0.7352790441304793],[122,-17,69,-0.7349882358345334],[122,-17,70,-0.7346998744017545],[122,-17,71,-0.7344139648566193],[122,-17,72,-0.7341305121273394],[122,-17,73,-0.7338495210454397],[122,-17,74,-0.7335709963453068],[122,-17,75,-0.7332949426637685],[122,-17,76,-0.7330213645396613],[122,-17,77,-0.7327502664133976],[122,-17,78,-0.7324816526265385],[122,-17,79,-0.7322155274213598],[122,-16,64,-0.7365925972925602],[122,-16,65,-0.7362916397692818],[122,-16,66,-0.7359931079055286],[122,-16,67,-0.7356970071121841],[122,-16,68,-0.7354033427056095],[122,-16,69,-0.7351121199072191],[122,-16,70,-0.734823343843041],[122,-16,71,-0.7345370195432807],[122,-16,72,-0.7342531519418843],[122,-16,73,-0.7339717458761168],[122,-16,74,-0.7336928060861102],[122,-16,75,-0.7334163372144429],[122,-16,76,-0.7331423438057074],[122,-16,77,-0.7328708303060771],[122,-16,78,-0.7326018010628793],[122,-16,79,-0.7323352603241607],[122,-15,64,-0.7367187224394178],[122,-15,65,-0.7364173516810519],[122,-15,66,-0.7361184064280479],[122,-15,67,-0.7358218920969838],[122,-15,68,-0.7355278140099213],[122,-15,69,-0.7352361773939815],[122,-15,70,-0.7349469873809048],[122,-15,71,-0.734660249006615],[122,-15,72,-0.7343759672107824],[122,-15,73,-0.7340941468364016],[122,-15,74,-0.7338147926293396],[122,-15,75,-0.7335379092379157],[122,-15,76,-0.733263501212468],[122,-15,77,-0.7329915730049217],[122,-15,78,-0.73272212896836],[122,-15,79,-0.7324551733565912],[122,-14,64,-0.7368450176517092],[122,-14,65,-0.7365432343561091],[122,-14,66,-0.7362438764093407],[122,-14,67,-0.7359469492336655],[122,-14,68,-0.7356524581568347],[122,-14,69,-0.7353604084116653],[122,-14,70,-0.7350708051355992],[122,-14,71,-0.7347836533702681],[122,-14,72,-0.7344989580610557],[122,-14,73,-0.7342167240566756],[122,-14,74,-0.7339369561087202],[122,-14,75,-0.7336596588712391],[122,-14,76,-0.7333848369003063],[122,-14,77,-0.7331124946535883],[122,-14,78,-0.7328426364899147],[122,-14,79,-0.7325752666688456],[122,-13,64,-0.7369714830261953],[122,-13,65,-0.736669287894699],[122,-13,66,-0.7363695179531214],[122,-13,67,-0.7360721786293964],[122,-13,68,-0.7357772752569539],[122,-13,69,-0.7354848130742955],[122,-13,70,-0.735194797224554],[122,-13,71,-0.7349072327550582],[122,-13,72,-0.7346221246168947],[122,-13,73,-0.7343394776644862],[122,-13,74,-0.7340592966551391],[122,-13,75,-0.7337815862486237],[122,-13,76,-0.7335063510067399],[122,-13,77,-0.7332335953928849],[122,-13,78,-0.7329633237716258],[122,-13,79,-0.7326955404082642],[122,-12,64,-0.7370981186568234],[122,-12,65,-0.7367955123942491],[122,-12,66,-0.7364953311602824],[122,-12,67,-0.736197580388518],[122,-12,68,-0.735902265418053],[122,-12,69,-0.735609391493063],[122,-12,70,-0.7353189637623614],[122,-12,71,-0.7350309872789624],[122,-12,72,-0.7347454669996456],[122,-12,73,-0.7344624077845314],[122,-12,74,-0.7341818143966312],[122,-12,75,-0.7339036915014245],[122,-12,76,-0.7336280436664271],[122,-12,77,-0.7333548753607577],[122,-12,78,-0.7330841909547099],[122,-12,79,-0.7328159947193178],[122,-11,64,-0.7372249246347132],[122,-11,65,-0.7369219079493556],[122,-11,66,-0.7366213161288803],[122,-11,67,-0.7363231546125311],[122,-11,68,-0.7360274287450622],[122,-11,69,-0.7357341437763116],[122,-11,70,-0.7354433048607617],[122,-11,71,-0.7351549170571027],[122,-11,72,-0.734868985327795],[122,-11,73,-0.7345855145386476],[122,-11,74,-0.7343045094583649],[122,-11,75,-0.7340259747581264],[122,-11,76,-0.7337499150111533],[122,-11,77,-0.7334763346922755],[122,-11,78,-0.7332052381775032],[122,-11,79,-0.7329366297435933],[122,-10,64,-0.7373519010482096],[122,-10,65,-0.7370484746518353],[122,-10,66,-0.7367474729541879],[122,-10,67,-0.73644890140015],[122,-10,68,-0.7361527653401205],[122,-10,69,-0.7358590700295893],[122,-10,70,-0.7355678206286965],[122,-10,71,-0.7352790222017974],[122,-10,72,-0.7349926797170232],[122,-10,73,-0.7347087980458598],[122,-10,74,-0.7344273819626945],[122,-10,75,-0.7341484361443968],[122,-10,76,-0.7338719651698825],[122,-10,77,-0.7335979735196827],[122,-10,78,-0.7333264655755145],[122,-10,79,-0.7330574456198469],[122,-9,64,-0.7374790479828607],[122,-9,65,-0.7371752125907042],[122,-9,66,-0.736873801728674],[122,-9,67,-0.7365748208472798],[122,-9,68,-0.7362782753025541],[122,-9,69,-0.7359841703556272],[122,-9,70,-0.7356925111722867],[122,-9,71,-0.7354033028225412],[122,-9,72,-0.735116550280182],[122,-9,73,-0.7348322584223613],[122,-9,74,-0.7345504320291394],[122,-9,75,-0.734271075783064],[122,-9,76,-0.7339941942687362],[122,-9,77,-0.7337197919723779],[122,-9,78,-0.7334478732814025],[122,-9,79,-0.733178442483982],[122,-8,64,-0.7376063655214418],[122,-8,65,-0.7373021218522015],[122,-8,66,-0.7370003025420258],[122,-8,67,-0.7367009130470401],[122,-8,68,-0.7364039587288994],[122,-8,69,-0.7361094448543635],[122,-8,70,-0.7358173765948556],[122,-8,71,-0.7355277590260269],[122,-8,72,-0.7352405971273182],[122,-8,73,-0.734955895781537],[122,-8,74,-0.7346736597744058],[122,-8,75,-0.7343938937941403],[122,-8,76,-0.7341166024310164],[122,-8,77,-0.7338417901769361],[122,-8,78,-0.7335694614249999],[122,-8,79,-0.7332996204690719],[122,-7,64,-0.7377338537439334],[122,-7,65,-0.7374292025197667],[122,-7,66,-0.7371269754811269],[122,-7,67,-0.7368271780897433],[122,-7,68,-0.7365298157128819],[122,-7,69,-0.7362348936229204],[122,-7,70,-0.7359424169969071],[122,-7,71,-0.7356523909161244],[122,-7,72,-0.7353648203656513],[122,-7,73,-0.7350797102339406],[122,-7,74,-0.7347970653123654],[122,-7,75,-0.7345168902947998],[122,-7,76,-0.7342391897771829],[122,-7,77,-0.7339639682570877],[122,-7,78,-0.7336912301332904],[122,-7,79,-0.7334209797053379],[122,-6,64,-0.7378615127275743],[122,-6,65,-0.7375564546740938],[122,-6,66,-0.7372538206301109],[122,-6,67,-0.7369536160629473],[122,-6,68,-0.7366558463454682],[122,-6,69,-0.7363605167556582],[122,-6,70,-0.7360676324761787],[122,-6,71,-0.735777198593933],[122,-6,72,-0.7354892200996272],[122,-6,73,-0.7352037018873478],[122,-6,74,-0.7349206487541089],[122,-6,75,-0.7346400653994309],[122,-6,76,-0.7343619564249071],[122,-6,77,-0.7340863263337698],[122,-6,78,-0.7338131795304619],[122,-6,79,-0.7335425203202017],[122,-5,64,-0.7379893425468472],[122,-5,65,-0.7376838783931168],[122,-5,66,-0.7373808380703475],[122,-5,67,-0.7370802270514414],[122,-5,68,-0.7367820507148524],[122,-5,69,-0.7364863143441597],[122,-5,70,-0.7361930231276274],[122,-5,71,-0.7359021821577676],[122,-5,72,-0.7356137964309029],[122,-5,73,-0.7353278708467424],[122,-5,74,-0.7350444102079301],[122,-5,75,-0.7347634192196228],[122,-5,76,-0.7344849024890568],[122,-5,77,-0.7342088645251135],[122,-5,78,-0.7339353097378916],[122,-5,79,-0.7336642424382719],[122,-4,64,-0.738117343273465],[122,-4,65,-0.7378114737519949],[122,-4,66,-0.7375080278804268],[122,-4,67,-0.7372070111372324],[122,-4,68,-0.7369084289064417],[122,-4,69,-0.7366122864772174],[122,-4,70,-0.7363185890434149],[122,-4,71,-0.736027341703144],[122,-4,72,-0.7357385494583324],[122,-4,73,-0.7354522172143011],[122,-4,74,-0.7351683497793129],[122,-4,75,-0.7348869518641505],[122,-4,76,-0.7346080280816819],[122,-4,77,-0.7343315829464278],[122,-4,78,-0.7340576208741322],[122,-4,79,-0.7337861461813276],[122,-3,64,-0.7382455149764235],[122,-3,65,-0.7379392408231658],[122,-3,66,-0.737635390136214],[122,-3,67,-0.737333968399597],[122,-3,68,-0.7370349810029091],[122,-3,69,-0.7367384332408857],[122,-3,70,-0.736444330312961],[122,-3,71,-0.736152677322832],[122,-3,72,-0.7358634792780199],[122,-3,73,-0.7355767410894468],[122,-3,74,-0.7352924675709834],[122,-3,75,-0.735010663439027],[122,-3,76,-0.7347313333120673],[122,-3,77,-0.7344544817102533],[122,-3,78,-0.734180113054964],[122,-3,79,-0.7339082316683733],[122,-2,64,-0.73837385772198],[122,-2,65,-0.7380671796763248],[122,-2,66,-0.737762924910827],[122,-2,67,-0.7374610989150601],[122,-2,68,-0.7371617070841721],[122,-2,69,-0.7368647547184584],[122,-2,70,-0.7365702470229214],[122,-2,71,-0.7362781891068332],[122,-2,72,-0.7359885859832977],[122,-2,73,-0.735701442568827],[122,-2,74,-0.7354167636828882],[122,-2,75,-0.7351345540474827],[122,-2,76,-0.7348548182867111],[122,-2,77,-0.7345775609263401],[122,-2,78,-0.734302786393373],[122,-2,79,-0.734030499015615],[122,-1,64,-0.7385023715736759],[122,-1,65,-0.7381952903784471],[122,-1,66,-0.737890632274659],[122,-1,67,-0.7375884027574188],[122,-1,68,-0.7372886072274154],[122,-1,69,-0.7369912509904932],[122,-1,70,-0.736696339257211],[122,-1,71,-0.7364038771424046],[122,-1,72,-0.7361138696647496],[122,-1,73,-0.7358263217463359],[122,-1,74,-0.7355412382122171],[122,-1,75,-0.7352586237899873],[122,-1,76,-0.7349784831093471],[122,-1,77,-0.7347008207016703],[122,-1,78,-0.7344256409995741],[122,-1,79,-0.7341529483364844],[122,0,64,-0.7386310565923158],[122,0,65,-0.738323572993766],[122,0,66,-0.7380185122953575],[122,0,67,-0.7377158799977193],[122,0,68,-0.7374156815070692],[122,0,69,-0.7371179221347889],[122,0,70,-0.7368226070969818],[122,0,71,-0.7365297415140364],[122,0,72,-0.7362393304101875],[122,0,73,-0.7359513787130932],[122,0,74,-0.7356658912533813],[122,0,75,-0.735382872764228],[122,0,76,-0.7351023278809229],[122,0,77,-0.7348242611404363],[122,0,78,-0.7345486769809884],[122,0,79,-0.7342755797416155],[122,1,64,-0.7387599128360197],[122,1,65,-0.7384520275838263],[122,1,66,-0.7381465650378772],[122,1,67,-0.7378435307043106],[122,1,68,-0.737542929994862],[122,1,69,-0.7372447682264385],[122,1,70,-0.7369490506206762],[122,1,71,-0.7366557823035044],[122,1,72,-0.7363649683047067],[122,1,73,-0.736076613557497],[122,1,74,-0.7357907228980665],[122,1,75,-0.7355073010651624],[122,1,76,-0.7352263526996529],[122,1,77,-0.7349478823440931],[122,1,78,-0.7346718944422964],[122,1,79,-0.7343983933388986],[122,2,64,-0.7388889403602097],[122,2,65,-0.7385806542074701],[122,2,66,-0.7382747905644652],[122,2,67,-0.7379713549428306],[122,2,68,-0.7376703527598071],[122,2,69,-0.7373717893378149],[122,2,70,-0.737075669904012],[122,2,71,-0.7367819995898566],[122,2,72,-0.7364907834306691],[122,2,73,-0.7362020263652084],[122,2,74,-0.7359157332352178],[122,2,75,-0.7356319087850043],[122,2,76,-0.7353505576610033],[122,2,77,-0.7350716844113447],[122,2,78,-0.7347952934854236],[122,2,79,-0.7345213892334649],[122,3,64,-0.739018139217595],[122,3,65,-0.7387094529208221],[122,3,66,-0.7384031889346472],[122,3,67,-0.7380993527761907],[122,3,68,-0.7377979498681865],[122,3,69,-0.7374989855385566],[122,3,70,-0.7372024650199683],[122,3,71,-0.7369083934493976],[122,3,72,-0.7366167758676903],[122,3,73,-0.7363276172191381],[122,3,74,-0.7360409223510257],[122,3,75,-0.7357566960132085],[122,3,76,-0.7354749428576781],[122,3,77,-0.7351956674381283],[122,3,78,-0.734918874209525],[122,3,79,-0.7346445675276718],[122,4,64,-0.7391475094582247],[122,4,65,-0.7388384237773432],[122,4,66,-0.7385317602052802],[122,4,67,-0.7382275242646293],[122,4,68,-0.7379257213836057],[122,4,69,-0.7376263568956206],[122,4,70,-0.737329436038839],[122,4,71,-0.737034963955743],[122,4,72,-0.7367429456926916],[122,4,73,-0.7364533861994988],[122,4,74,-0.7361662903289786],[122,4,75,-0.735881662836524],[122,4,76,-0.7355995083796715],[122,4,77,-0.7353198315176677],[122,4,78,-0.7350426367110389],[122,4,79,-0.7347679283211563],[122,5,64,-0.7392770511294672],[122,5,65,-0.7389675668278078],[122,5,66,-0.738660504430531],[122,5,67,-0.7383558694656904],[122,5,68,-0.7380536673669706],[122,5,69,-0.7377539034732602],[122,5,70,-0.73745658302821],[122,5,71,-0.7371617111797956],[122,5,72,-0.7368692929798787],[122,5,73,-0.7365793333837831],[122,5,74,-0.7362918372498413],[122,5,75,-0.736006809338972],[122,5,76,-0.7357242543142459],[122,5,77,-0.7354441767404514],[122,5,78,-0.735166581083664],[122,5,79,-0.7348914717108121],[122,6,64,-0.7394067642760322],[122,6,65,-0.7390968821203283],[122,6,66,-0.7387894216618989],[122,6,67,-0.7384843884342462],[122,6,68,-0.7381817878765116],[122,6,69,-0.7378816253330487],[122,6,70,-0.7375839060529823],[122,6,71,-0.73728863518977],[122,6,72,-0.7369958178007641],[122,6,73,-0.7367054588467866],[122,6,74,-0.736417563191677],[122,6,75,-0.7361321356018686],[122,6,76,-0.7358491807459551],[122,6,77,-0.7355687031942552],[122,6,78,-0.7352907074183829],[122,6,79,-0.7350151977908128],[122,7,64,-0.7395366489399494],[122,7,65,-0.7392263697003314],[122,7,66,-0.7389185119481939],[122,7,67,-0.7386130812224748],[122,7,68,-0.7383100829677599],[122,7,69,-0.7380095225338564],[122,7,70,-0.7377114051753503],[122,7,71,-0.7374157360511695],[122,7,72,-0.7371225202241448],[122,7,73,-0.7368317626605856],[122,7,74,-0.7365434682298257],[122,7,75,-0.7362576417038028],[122,7,76,-0.7359742877566213],[122,7,77,-0.7356934109641193],[122,7,78,-0.7354150158034388],[122,7,79,-0.7351391066525894],[122,8,64,-0.7396667051606215],[122,8,65,-0.7393560296106128],[122,8,66,-0.7390477753355899],[122,8,67,-0.738741947879914],[122,8,68,-0.7384385526936028],[122,8,69,-0.7381375951319045],[122,8,70,-0.7378390804548547],[122,8,71,-0.7375430138268397],[122,8,72,-0.7372494003161566],[122,8,73,-0.7369582448945902],[122,8,74,-0.736669552436958],[122,8,75,-0.7363833277206893],[122,8,76,-0.7360995754253887],[122,8,77,-0.7358183001324028],[122,8,78,-0.7355395063243897],[122,8,79,-0.7352631983848835],[122,9,64,-0.7397969329748095],[122,9,65,-0.739485861891322],[122,9,66,-0.7391772118676104],[122,9,67,-0.7388709884534465],[122,9,68,-0.7385671971042677],[122,9,69,-0.7382658431807506],[122,9,70,-0.7379669319483685],[122,9,71,-0.7376704685769536],[122,9,72,-0.7373764581402581],[122,9,73,-0.7370849056155299],[122,9,74,-0.7367958158830586],[122,9,75,-0.7365091937257537],[122,9,76,-0.7362250438287088],[122,9,77,-0.7359433707787674],[122,9,78,-0.7356641790640928],[122,9,79,-0.7353874730737324],[122,10,64,-0.7399273324166189],[122,10,65,-0.7396158665799482],[122,10,66,-0.7393068215851135],[122,10,67,-0.7390002029872851],[122,10,68,-0.7386960162473073],[122,10,69,-0.7383942667312733],[122,10,70,-0.738094959710081],[122,10,71,-0.7377981003589971],[122,10,72,-0.7375036937572164],[122,10,73,-0.7372117448874383],[122,10,74,-0.7369222586354129],[122,10,75,-0.7366352397895184],[122,10,76,-0.7363506930403254],[122,10,77,-0.7360686229801633],[122,10,78,-0.7357890341026894],[122,10,79,-0.7355119308024536],[122,11,64,-0.7400579035175523],[122,11,65,-0.7397460437113729],[122,11,66,-0.7394366045263459],[122,11,67,-0.7391295915230265],[122,11,68,-0.7388250101676543],[122,11,69,-0.738522865831726],[122,11,70,-0.7382231637915524],[122,11,71,-0.737925909227822],[122,11,72,-0.7376311072251606],[122,11,73,-0.7373387627717072],[122,11,74,-0.7370488807586599],[122,11,75,-0.7367614659798546],[122,11,76,-0.7364765231313275],[122,11,77,-0.7361940568108821],[122,11,78,-0.7359140715176589],[122,11,79,-0.7356365716516988],[122,12,64,-0.740188646306488],[122,12,65,-0.7398763933178486],[122,12,66,-0.7395665607269195],[122,12,67,-0.7392591540996288],[122,12,68,-0.738954178907598],[122,12,69,-0.7386516405277146],[122,12,70,-0.7383515442416907],[122,12,71,-0.738053895235624],[122,12,72,-0.7377586985995591],[122,12,73,-0.7374659593270627],[122,12,74,-0.7371756823147697],[122,12,75,-0.736887872361961],[122,12,76,-0.7366025341701272],[122,12,77,-0.7363196723425349],[122,12,78,-0.7360392913837958],[122,12,79,-0.735761395699431],[122,13,64,-0.7403195608097024],[122,13,65,-0.7400069154290215],[122,13,66,-0.7396966902198363],[122,13,67,-0.7393888907534346],[122,13,68,-0.7390835225068073],[122,13,69,-0.7387805908622209],[122,13,70,-0.7384801011067754],[122,13,71,-0.7381820584319658],[122,13,72,-0.7378864679332433],[122,13,73,-0.7375933346095903],[122,13,74,-0.7373026633630664],[122,13,75,-0.737014458998386],[122,13,76,-0.7367287262224826],[122,13,77,-0.7364454696440741],[122,13,78,-0.7361646937732322],[122,13,79,-0.7358864030209473],[122,14,64,-0.7404506470508485],[122,14,65,-0.7401376100719095],[122,14,66,-0.7398269930354645],[122,14,67,-0.7395188015181487],[122,14,68,-0.7392130410023097],[122,14,69,-0.7389097168755796],[122,14,70,-0.7386088344304345],[122,14,71,-0.738310398863754],[122,14,72,-0.7380144152763841],[122,14,73,-0.7377208886727105],[122,14,74,-0.7374298239602056],[122,14,75,-0.7371412259490058],[122,14,76,-0.7368550993514752],[122,14,77,-0.7365714487817718],[122,14,78,-0.7362902787554163],[122,14,79,-0.736011593688856],[122,15,64,-0.7405819050510091],[122,15,65,-0.7402684772709552],[122,15,66,-0.7399574692015931],[122,15,67,-0.7396488864248919],[122,15,68,-0.7393427344285428],[122,15,69,-0.739039018605532],[122,15,70,-0.738737744253698],[122,15,71,-0.7384389165752935],[122,15,72,-0.7381425406765463],[122,15,73,-0.7378486215672333],[122,15,74,-0.7375571641602281],[122,15,75,-0.737268173271077],[122,15,76,-0.7369816536175632],[122,15,77,-0.736697609819273],[122,15,78,-0.7364160463971642],[122,15,79,-0.7361369677731309],[122,16,64,-0.7407133348286821],[122,16,65,-0.7403995170480122],[122,16,66,-0.7400881187434167],[122,16,67,-0.7397791455021858],[122,16,68,-0.7394726028173417],[122,16,69,-0.7391684960872114],[122,16,70,-0.7388668306149838],[122,16,71,-0.7385676116082719],[122,16,72,-0.7382708441786727],[122,16,73,-0.7379765333413432],[122,16,74,-0.7376846840145449],[122,16,75,-0.7373953010192225],[122,16,76,-0.7371083890785666],[122,16,77,-0.73682395281758],[122,16,78,-0.7365419967626465],[122,16,79,-0.7362625253410948],[122,17,64,-0.7408449363997658],[122,17,65,-0.7405307294223291],[122,17,66,-0.7402189416835205],[122,17,67,-0.7399095787759382],[122,17,68,-0.7396026461979225],[122,17,69,-0.7392981493531281],[122,17,70,-0.7389960935500819],[122,17,71,-0.7386964840017446],[122,17,72,-0.7383993258250705],[122,17,73,-0.7381046240405834],[122,17,74,-0.7378123835719216],[122,17,75,-0.7375226092454157],[122,17,76,-0.7372353057896517],[122,17,77,-0.7369504778350378],[122,17,78,-0.7366681299133715],[122,17,79,-0.7363882664574054],[122,18,64,-0.7409767097776123],[122,18,65,-0.7406621144106039],[122,18,66,-0.7403499380419343],[122,18,67,-0.7400401862694965],[122,18,68,-0.739732864596936],[122,18,69,-0.7394279784332227],[122,18,70,-0.7391255330922085],[122,18,71,-0.738825533792189],[122,18,72,-0.7385279856554635],[122,18,73,-0.7382328937079105],[122,18,74,-0.7379402628785324],[122,18,75,-0.7376500979990341],[122,18,76,-0.7373624038033856],[122,18,77,-0.7370771849273873],[122,18,78,-0.7367944459082401],[122,18,79,-0.7365141911841083],[122,19,64,-0.7411086549730137],[122,19,65,-0.7407936720269693],[122,19,66,-0.7404811078361176],[122,19,67,-0.7401709680036336],[122,19,68,-0.7398632580384542],[122,19,69,-0.7395579833548518],[122,19,70,-0.7392551492719908],[122,19,71,-0.7389547610134888],[122,19,72,-0.7386568237069778],[122,19,73,-0.7383613423836783],[122,19,74,-0.7380683219779454],[122,19,75,-0.7377777673268452],[122,19,76,-0.7374896831697196],[122,19,77,-0.7372040741477506],[122,19,78,-0.7369209448035299],[122,19,79,-0.7366402995806219],[122,20,64,-0.7412407719941858],[122,20,65,-0.7409254022829772],[122,20,66,-0.7406124510809446],[122,20,67,-0.7403019239965313],[122,20,68,-0.7399938265439533],[122,20,69,-0.7396881641427722],[122,20,70,-0.7393849421174515],[122,20,71,-0.7390841656969191],[122,20,72,-0.7387858400141265],[122,20,73,-0.7384899701056238],[122,20,74,-0.7381965609111061],[122,20,75,-0.7379056172729895],[122,20,76,-0.7376171439359753],[122,20,77,-0.7373311455466152],[122,20,78,-0.7370476266528796],[122,20,79,-0.7367665917037223],[122,21,64,-0.7413730608468225],[122,21,65,-0.741057305187653],[122,21,66,-0.740743967788758],[122,21,67,-0.740433054263836],[122,21,68,-0.7401245701323693],[122,21,69,-0.7398185208191952],[122,21,70,-0.7395149116540641],[122,21,71,-0.7392137478712006],[122,21,72,-0.7389150346088633],[122,21,73,-0.73861877690892],[122,21,74,-0.7383249797163929],[122,21,75,-0.7380336478790359],[122,21,76,-0.7377447861468978],[122,21,77,-0.7374583991718877],[122,21,78,-0.7371744915073436],[122,21,79,-0.7368930676075963],[122,22,64,-0.741505521534074],[122,22,65,-0.7411893807474723],[122,22,66,-0.7408756579693458],[122,22,67,-0.7405643588186349],[122,22,68,-0.7402554888200741],[122,22,69,-0.7399490534037638],[122,22,70,-0.7396450579047282],[122,22,71,-0.7393435075624761],[122,22,72,-0.7390444075205602],[122,22,73,-0.7387477628261533],[122,22,74,-0.7384535784295928],[122,22,75,-0.7381618591839577],[122,22,76,-0.7378726098446324],[122,22,77,-0.7375858350688713],[122,22,78,-0.7373015394153681],[122,22,79,-0.7370197273438192],[122,23,64,-0.741638154056569],[122,23,65,-0.7413216289663855],[122,23,66,-0.7410075216299661],[122,23,67,-0.7406958376714794],[122,23,68,-0.7403865826208991],[122,23,69,-0.7400797619135759],[122,23,70,-0.7397753808897943],[122,23,71,-0.7394734447943341],[122,23,72,-0.7391739587760301],[122,23,73,-0.7388769278873472],[122,23,74,-0.7385823570839252],[122,23,75,-0.7382902512241564],[122,23,76,-0.7380006150687481],[122,23,77,-0.7377134532802886],[122,23,78,-0.7374287704228148],[122,23,79,-0.7371465709613769],[122,24,64,-0.7417709584123923],[122,24,65,-0.7414540498457938],[122,24,66,-0.7411395587753226],[122,24,67,-0.7408274908303625],[122,24,68,-0.7405178515461128],[122,24,69,-0.7402106463631611],[122,24,70,-0.7399058806270394],[122,24,71,-0.7396035595877857],[122,24,72,-0.7393036883995039],[122,24,73,-0.7390062721199382],[122,24,74,-0.7387113157100187],[122,24,75,-0.738418824033438],[122,24,76,-0.7381288018562147],[122,24,77,-0.7378412538462581],[122,24,78,-0.7375561845729373],[122,24,79,-0.7372735985066439],[122,25,64,-0.7419039345971391],[122,25,65,-0.7415866433846036],[122,25,66,-0.7412717694076196],[122,25,67,-0.7409593183007723],[122,25,68,-0.7406492956044741],[122,25,69,-0.7403417067645353],[122,25,70,-0.7400365571317225],[122,25,71,-0.7397338519613189],[122,25,72,-0.7394335964126848],[122,25,73,-0.7391357955488308],[122,25,74,-0.7388404543359649],[122,25,75,-0.7385475776430674],[122,25,76,-0.738257170241456],[122,25,77,-0.7379692368043489],[122,25,78,-0.737683781906435],[122,25,79,-0.7374008100234359],[122,26,64,-0.7420370826039],[122,26,65,-0.7417194095792117],[122,26,66,-0.7414041535265466],[122,26,67,-0.7410913200856784],[122,26,68,-0.7407809148022173],[122,26,69,-0.7404729431271848],[122,26,70,-0.7401674104165682],[122,26,71,-0.7398643219308831],[122,26,72,-0.7395636828347328],[122,26,73,-0.739265498196382],[122,26,74,-0.7389697729873034],[122,26,75,-0.7386765120817533],[122,26,76,-0.7383857202563352],[122,26,77,-0.7380974021895648],[122,26,78,-0.7378115624614383],[122,26,79,-0.7375282055529956],[122,27,64,-0.7421704024232453],[122,27,65,-0.7418523484234896],[122,27,66,-0.7415367111292634],[122,27,67,-0.7412234961855138],[122,27,68,-0.7409127091430373],[122,27,69,-0.7406043554580515],[122,27,70,-0.7402984404917521],[122,27,71,-0.7399949695098735],[122,27,72,-0.739693947682249],[122,27,73,-0.739395380082385],[122,27,74,-0.739099271687006],[122,27,75,-0.7388056273756315],[122,27,76,-0.7385144519301388],[122,27,77,-0.7382257500343283],[122,27,78,-0.7379395262734919],[122,27,79,-0.7376557851339755],[122,28,64,-0.7423038940432798],[122,28,65,-0.7419854599088385],[122,28,66,-0.7416694422104534],[122,28,67,-0.7413558465982322],[122,28,68,-0.7410446786281432],[122,28,69,-0.7407359437615871],[122,28,70,-0.7404296473649544],[122,28,71,-0.7401257947091855],[122,28,72,-0.7398243909693306],[122,28,73,-0.7395254412241244],[122,28,74,-0.7392289504555309],[122,28,75,-0.7389349235483201],[122,28,76,-0.7386433652896308],[122,28,77,-0.7383542803685358],[122,28,78,-0.73806767337561],[122,28,79,-0.7377835488024935],[122,29,64,-0.7424375574496191],[122,29,65,-0.7421187440241652],[122,29,66,-0.7418023467623016],[122,29,67,-0.7414883713192828],[122,29,68,-0.7411768232562352],[122,29,69,-0.7408677080397296],[122,29,70,-0.7405610310413373],[122,29,71,-0.7402567975371914],[122,29,72,-0.7399550127075465],[122,29,73,-0.7396556816363524],[122,29,74,-0.7393588093107998],[122,29,75,-0.7390644006208963],[122,29,76,-0.7387724603590299],[122,29,77,-0.7384829932195331],[122,29,78,-0.738196003798252],[122,29,79,-0.737911496592109],[122,30,64,-0.7425713926254143],[122,30,65,-0.7422522007559066],[122,30,66,-0.7419354247745177],[122,30,67,-0.7416210703416347],[122,30,68,-0.7413091430235288],[122,30,69,-0.7409996482919267],[122,30,70,-0.7406925915235676],[122,30,71,-0.7403879779997642],[122,30,72,-0.7400858129059618],[122,30,73,-0.7397861013313123],[122,30,74,-0.7394888482682205],[122,30,75,-0.7391940586119188],[122,30,76,-0.7389017371600317],[122,30,77,-0.7386118886121393],[122,30,78,-0.7383245175693465],[122,30,79,-0.7380396285338453],[122,31,64,-0.7427053995513271],[122,31,65,-0.7423858300880055],[122,31,66,-0.7420686762343123],[122,31,67,-0.7417539436557532],[122,31,68,-0.7414416379237303],[122,31,69,-0.7411317645151128],[122,31,70,-0.7408243288117943],[122,31,71,-0.7405193361002533],[122,31,72,-0.7402167915711131],[122,31,73,-0.7399167003187147],[122,31,74,-0.7396190673406636],[122,31,75,-0.7393238975374048],[122,31,76,-0.7390311957117861],[122,31,77,-0.7387409665686231],[122,31,78,-0.7384532147142668],[122,31,79,-0.7381679446561672],[122,32,64,-0.742839578205586],[122,32,65,-0.7425196320019665],[122,32,66,-0.7422021011264524],[122,32,67,-0.7418869912496546],[122,32,68,-0.7415743079480921],[122,32,69,-0.7412640567037633],[122,32,70,-0.740956242903702],[122,32,71,-0.7406508718395399],[122,32,72,-0.7403479487070641],[122,32,73,-0.7400474786057925],[122,32,74,-0.7397494665385176],[122,32,75,-0.7394539174108844],[122,32,76,-0.7391608360309515],[122,32,77,-0.738870227108757],[122,32,78,-0.7385820952558861],[122,32,79,-0.7382964449850341],[122,33,64,-0.7429739285639699],[122,33,65,-0.7426536064768385],[122,33,66,-0.7423356994332448],[122,33,67,-0.7420202131088904],[122,33,68,-0.7417071530853974],[122,33,69,-0.741396524849879],[122,33,70,-0.7410883337944967],[122,33,71,-0.7407825852160208],[122,33,72,-0.7404792843153899],[122,33,73,-0.7401784361972845],[122,33,74,-0.7398800458696725],[122,33,75,-0.7395841182433848],[122,33,76,-0.7392906581316787],[122,33,77,-0.7389996702498021],[122,33,78,-0.7387111592145614],[122,33,79,-0.7384251295438856],[122,34,64,-0.7431084505997927],[122,34,65,-0.7427877534892015],[122,34,66,-0.7424694711345217],[122,34,67,-0.7421536092165321],[122,34,68,-0.7418401733219433],[122,34,69,-0.7415291689429704],[122,34,70,-0.7412206014768883],[122,34,71,-0.7409144762255928],[122,34,72,-0.7406107983951602],[122,34,73,-0.7403095730954208],[122,34,74,-0.7400108053395039],[122,34,75,-0.7397145000434144],[122,34,76,-0.739420662025595],[122,34,77,-0.7391292960064907],[122,34,78,-0.7388404066081175],[122,34,79,-0.7385539983536242],[122,35,64,-0.7432431442839585],[122,35,65,-0.7429220730132193],[122,35,66,-0.7426034162076944],[122,35,67,-0.7422871795532251],[122,35,68,-0.741973368641597],[122,35,69,-0.7416619889701127],[122,35,70,-0.7413530459411468],[122,35,71,-0.7410465448617074],[122,35,72,-0.7407424909429948],[122,35,73,-0.7404408892999758],[122,35,74,-0.7401417449509284],[122,35,75,-0.7398450628170179],[122,35,76,-0.7395508477218596],[122,35,77,-0.7392591043910832],[122,35,78,-0.7389698374519011],[122,35,79,-0.7386830514326708],[122,36,64,-0.7433780095849375],[122,36,65,-0.7430565650206178],[122,36,66,-0.7427375346277307],[122,36,67,-0.7424209240971664],[122,36,68,-0.7421067390257715],[122,36,69,-0.741794984915922],[122,36,70,-0.7414856671750785],[122,36,71,-0.7411787911153475],[122,36,72,-0.7408743619530401],[122,36,73,-0.7405723848082462],[122,36,74,-0.7402728647043791],[122,36,75,-0.7399758065677517],[122,36,76,-0.739681215227139],[122,36,77,-0.7393890954133425],[122,36,78,-0.7390994517587584],[122,36,79,-0.7388122887969402],[122,37,64,-0.7435130464687901],[122,37,65,-0.7431912294807067],[122,37,66,-0.7428718263671776],[122,37,67,-0.7425548428241272],[122,37,68,-0.742240284453449],[122,37,69,-0.7419281567625784],[122,37,70,-0.7416184651640484],[122,37,71,-0.74131121497505],[122,37,72,-0.7410064114169919],[122,37,73,-0.7407040596150731],[122,37,74,-0.7404041645978295],[122,37,75,-0.7401067312967081],[122,37,76,-0.7398117645456307],[122,37,77,-0.7395192690805579],[122,37,78,-0.739229249539057],[122,37,79,-0.7389417104598649],[122,38,64,-0.7436482548991432],[122,38,65,-0.7433260663603576],[122,38,66,-0.7430062913961384],[122,38,67,-0.7426889357074294],[122,38,68,-0.7423740049011573],[122,38,69,-0.7420615044898031],[122,38,70,-0.7417514398909577],[122,38,71,-0.7414438164268832],[122,38,72,-0.7411386393240718],[122,38,73,-0.7408359137128191],[122,38,74,-0.7405356446267692],[122,38,75,-0.7402378370024907],[122,38,76,-0.739942495679039],[122,38,77,-0.7396496253975211],[122,38,78,-0.7393592308006623],[122,38,79,-0.7390713164323708],[122,39,64,-0.7437836348372451],[122,39,65,-0.7434610756240579],[122,39,66,-0.7431409296823267],[122,39,67,-0.7428232027180008],[122,39,68,-0.7425079003430253],[122,39,69,-0.7421950280749124],[122,39,70,-0.7418845913362978],[122,39,71,-0.7415765954545005],[122,39,72,-0.7412710456610825],[122,39,73,-0.7409679470914221],[122,39,74,-0.7406673047842591],[122,39,75,-0.7403691236812698],[122,39,76,-0.7400734086266305],[122,39,77,-0.7397801643665811],[122,39,78,-0.7394893955489928],[122,39,79,-0.739201106722932],[122,40,64,-0.7439191862419496],[122,40,65,-0.7435962572338957],[122,40,66,-0.743275741191052],[122,40,67,-0.7429576438243592],[122,40,68,-0.7426419707507663],[122,40,69,-0.7423287274928032],[122,40,70,-0.7420179194781352],[122,40,71,-0.7417095520391253],[122,40,72,-0.7414036304123912],[122,40,73,-0.7411001597383808],[122,40,74,-0.7407991450609154],[122,40,75,-0.7405005913267663],[122,40,76,-0.7402045033852171],[122,40,77,-0.7399108859876282],[122,40,78,-0.7396197437870036],[122,40,79,-0.739331081337555],[122,41,64,-0.7440549090697005],[122,41,65,-0.7437316111495429],[122,41,66,-0.7434107258852025],[122,41,67,-0.7430922589925961],[122,41,68,-0.7427762160936626],[122,41,69,-0.7424626027159349],[122,41,70,-0.7421514242920949],[122,41,71,-0.7418426861595345],[122,41,72,-0.7415363935599143],[122,41,73,-0.7412325516387372],[122,41,74,-0.7409311654448932],[122,41,75,-0.7406322399302351],[122,41,76,-0.7403357799491408],[122,41,77,-0.7400417902580775],[122,41,78,-0.7397502755151699],[122,41,79,-0.7394612402797619],[122,42,64,-0.7441908032745868],[122,42,65,-0.7438671373283121],[122,42,66,-0.7435458837253011],[122,42,67,-0.7432270481864323],[122,42,68,-0.7429106363386204],[122,42,69,-0.7425966537143869],[122,42,70,-0.7422851057514157],[122,42,71,-0.7419759977921143],[122,42,72,-0.7416693350831716],[122,42,73,-0.7413651227751326],[122,42,74,-0.7410633659219419],[122,42,75,-0.7407640694805206],[122,42,76,-0.7404672383103277],[122,42,77,-0.7401728771729245],[122,42,78,-0.7398809907315425],[122,42,79,-0.7395915835506458],[122,43,64,-0.7443268688083182],[122,43,65,-0.7440028357251309],[122,43,66,-0.7436812146694808],[122,43,67,-0.7433620113671939],[122,43,68,-0.743045231450146],[122,43,69,-0.7427308804558328],[122,43,70,-0.7424189638269263],[122,43,71,-0.742109486910835],[122,43,72,-0.7418024549592628],[122,43,73,-0.7414978731277828],[122,43,74,-0.741195746475381],[122,43,75,-0.7408960799640327],[122,43,76,-0.740598878458265],[122,43,77,-0.74030414672472],[122,43,78,-0.7400118894317234],[122,43,79,-0.7397221111488466],[122,44,64,-0.74446310562025],[122,44,65,-0.7441387062925668],[122,44,66,-0.7438167186735093],[122,44,67,-0.7434971484938362],[122,44,68,-0.7431800013903694],[122,44,69,-0.7428652829055649],[122,44,70,-0.7425529984870683],[122,44,71,-0.7422431534872757],[122,44,72,-0.7419357531628913],[122,44,73,-0.7416308026745025],[122,44,74,-0.7413283070861232],[122,44,75,-0.7410282713647698],[122,44,76,-0.7407307003800234],[122,44,77,-0.7404355989035944],[122,44,78,-0.7401429716088894],[122,44,79,-0.7398528230705739],[122,45,64,-0.7445995136573575],[122,45,65,-0.7442747489808026],[122,45,66,-0.743952395690764],[122,45,67,-0.7436324595229186],[122,45,68,-0.74331494611902],[122,45,69,-0.74299986102647],[122,45,70,-0.7426872096978735],[122,45,71,-0.7423769974905994],[122,45,72,-0.7420692296663393],[122,45,73,-0.7417639113906803],[122,45,74,-0.7414610477326508],[122,45,75,-0.7411606436642945],[122,45,76,-0.7408627040602337],[122,45,77,-0.7405672336972331],[122,45,78,-0.7402742372537674],[122,45,79,-0.7399837193095832],[122,46,64,-0.7447360928642934],[122,46,65,-0.7444109637376921],[122,46,66,-0.744088245672288],[122,46,67,-0.7437679444086611],[122,46,68,-0.7434500655934824],[122,46,69,-0.7431346147790844],[122,46,70,-0.7428215974230172],[122,46,71,-0.7425110188876088],[122,46,72,-0.7422028844395233],[122,46,73,-0.7418971992493344],[122,46,74,-0.7415939683910706],[122,46,75,-0.7412931968417895],[122,46,76,-0.7409948894811411],[122,46,77,-0.7406990510909314],[122,46,78,-0.7404056863546895],[122,46,79,-0.7401147998572308],[122,47,64,-0.7448728431833697],[122,47,65,-0.7445473505087439],[122,47,66,-0.7442242685667737],[122,47,67,-0.7439036031029278],[122,47,68,-0.7435853597687796],[122,47,69,-0.743269544121578],[122,47,70,-0.742956161623804],[122,47,71,-0.74264521764273],[122,47,72,-0.7423367174499784],[122,47,73,-0.7420306662210961],[122,47,74,-0.7417270690350974],[122,47,75,-0.7414259308740407],[122,47,76,-0.7411272566225898],[122,47,77,-0.7408310510675784],[122,47,78,-0.7405373188975775],[122,47,79,-0.7402460647024576],[122,48,64,-0.745009764554543],[122,48,65,-0.7446839092371051],[122,48,66,-0.744360464320547],[122,48,67,-0.7440394355552108],[122,48,68,-0.7437208285975574],[122,48,69,-0.7434046490097382],[122,48,70,-0.74309090225915],[122,48,71,-0.7427795937179954],[122,48,72,-0.7424707286628416],[122,48,73,-0.7421643122741937],[122,48,74,-0.7418603496360385],[122,48,75,-0.7415588457354212],[122,48,76,-0.7412598054620059],[122,48,77,-0.7409632336076408],[122,48,78,-0.7406691348659253],[122,48,79,-0.740377513831772],[122,49,64,-0.7451468569154698],[122,49,65,-0.7448206398636172],[122,49,66,-0.7444968328776222],[122,49,67,-0.744175441712685],[122,49,68,-0.7438564720301398],[122,49,69,-0.743539929397025],[122,49,70,-0.7432258192856389],[122,49,71,-0.7429141470731004],[122,49,72,-0.7426049180409068],[122,49,73,-0.7422981373745073],[122,49,74,-0.7419938101628479],[122,49,75,-0.7416919413979459],[122,49,76,-0.7413925359744529],[122,49,77,-0.7410955986892178],[122,49,78,-0.7408011342408549],[122,49,79,-0.7405091472293062],[122,50,64,-0.7452841202014896],[122,50,65,-0.7449575423267997],[122,50,66,-0.7446333741796862],[122,50,67,-0.744311621520193],[122,50,68,-0.7439922900145122],[122,50,69,-0.7436753852345548],[122,50,70,-0.7433609126575061],[122,50,71,-0.7430488776653865],[122,50,72,-0.7427392855446091],[122,50,73,-0.7424321414855538],[122,50,74,-0.7421274505821107],[122,50,75,-0.7418252178312564],[122,50,76,-0.7415254481326157],[122,50,77,-0.7412281462880249],[122,50,78,-0.7409333170011001],[122,50,79,-0.7406409648767986],[122,51,64,-0.7454215543456095],[122,51,65,-0.7450946165628337],[122,51,66,-0.7447700881660824],[122,51,67,-0.7444479749202281],[122,51,68,-0.7441282824963058],[122,51,69,-0.7438110164710843],[122,51,70,-0.7434961823266214],[122,51,71,-0.7431837854498246],[122,51,72,-0.7428738311320083],[122,51,73,-0.7425663245684686],[122,51,74,-0.7422612708580265],[122,51,75,-0.7419586750026034],[122,51,76,-0.7416585419067834],[122,51,77,-0.7413608763773771],[122,51,78,-0.7410656831229887],[122,51,79,-0.7407729667535783],[122,52,64,-0.7455591592785596],[122,52,65,-0.7452318625056178],[122,52,66,-0.7449069747738658],[122,52,67,-0.7445845018529897],[122,52,68,-0.7442644494188525],[122,52,69,-0.7439468230530658],[122,52,70,-0.7436316282425453],[122,52,71,-0.7433188703790706],[122,52,72,-0.7430085547588439],[122,52,73,-0.7427006865820626],[122,52,74,-0.7423952709524645],[122,52,75,-0.742092312876902],[122,52,76,-0.7417918172649053],[122,52,77,-0.7414937889282447],[122,52,78,-0.7411982325804998],[122,52,79,-0.7409051528366195],[122,53,64,-0.7456969349287687],[122,53,65,-0.7453692800867435],[122,53,66,-0.7450440339377793],[122,53,67,-0.7447212022563597],[122,53,68,-0.7444007907231611],[122,53,69,-0.744082804924623],[122,53,70,-0.7437672503525041],[122,53,71,-0.7434541324034418],[122,53,72,-0.7431434563785111],[122,53,73,-0.742835227482797],[122,53,74,-0.7425294508249396],[122,53,75,-0.7422261314167087],[122,53,76,-0.7419252741725659],[122,53,77,-0.7416268839092287],[122,53,78,-0.7413309653452373],[122,53,79,-0.7410375231005173],[122,54,64,-0.7458348812223877],[122,54,65,-0.7455068692355196],[122,54,66,-0.7451812655902769],[122,54,67,-0.744858076065926],[122,54,68,-0.744537306347941],[122,54,69,-0.7442189620275748],[122,54,70,-0.7439030486014141],[122,54,71,-0.7435895714709397],[122,54,72,-0.7432785359420845],[122,54,73,-0.7429699472248071],[122,54,74,-0.7426638104326357],[122,54,75,-0.7423601305822429],[122,54,76,-0.7420589125930089],[122,54,77,-0.7417601612865837],[122,54,78,-0.7414638813864554],[122,54,79,-0.7411700775175117],[122,55,64,-0.7459729980832661],[122,55,65,-0.745644629878947],[122,55,66,-0.7453186696614993],[122,55,67,-0.744995123214957],[122,55,68,-0.7446739962295769],[122,55,69,-0.74435529430141],[122,55,70,-0.7440390229318563],[122,55,71,-0.7437251875272252],[122,55,72,-0.7434137933982932],[122,55,73,-0.7431048457598777],[122,55,74,-0.7427983497303806],[122,55,75,-0.7424943103313643],[122,55,76,-0.7421927324871122],[122,55,77,-0.7418936210241939],[122,55,78,-0.7415969806710314],[122,55,79,-0.7413028160574616],[122,56,64,-0.7461112854330066],[122,56,65,-0.7457825619417746],[122,56,66,-0.7454562460793299],[122,56,67,-0.7451323436344588],[122,56,68,-0.7448108603021856],[122,56,69,-0.7444918016833442],[122,56,70,-0.7441751732841331],[122,56,71,-0.7438609805156751],[122,56,72,-0.7435492286935763],[122,56,73,-0.7432399230374982],[122,56,74,-0.7429330686707026],[122,56,75,-0.7426286706196263],[122,56,76,-0.7423267338134434],[122,56,77,-0.7420272630836282],[122,56,78,-0.7417302631635234],[122,56,79,-0.7414357386879016],[122,57,64,-0.74624974319095],[122,57,65,-0.7459206653464836],[122,57,66,-0.7455939947693788],[122,57,67,-0.7452697372531583],[122,57,68,-0.7449478984975988],[122,57,69,-0.7446284841083022],[122,57,70,-0.7443114995962504],[122,57,71,-0.7439969503773654],[122,57,72,-0.7436848417720671],[122,57,73,-0.7433751790048474],[122,57,74,-0.7430679672038131],[122,57,75,-0.7427632114002618],[122,57,76,-0.7424609165282434],[122,57,77,-0.7421610874241241],[122,57,78,-0.7418637288261529],[122,57,79,-0.7415688453740246],[122,58,64,-0.7463883712741579],[122,58,65,-0.7460589400132703],[122,58,66,-0.7457319156549649],[122,58,67,-0.7454073039974859],[122,58,68,-0.7450851107453469],[122,58,69,-0.7447653415089024],[122,58,70,-0.7444480018039028],[122,58,71,-0.7441330970510539],[122,58,72,-0.7438206325755757],[122,58,73,-0.7435106136067751],[122,58,74,-0.74320304527759],[122,58,75,-0.7428979326241641],[122,58,76,-0.7425952805854097],[122,58,77,-0.7422950940025702],[122,58,78,-0.7419973776187876],[122,58,79,-0.7417021360786646],[122,59,64,-0.7465271695974687],[122,59,65,-0.746197385860102],[122,59,66,-0.7458700086571735],[122,59,67,-0.7455450437916324],[122,59,68,-0.7452224969727146],[122,59,69,-0.7449023738155118],[122,59,70,-0.7445846798405276],[122,59,71,-0.7442694204732371],[122,59,72,-0.743956601043645],[122,59,73,-0.7436462267858592],[122,59,74,-0.7433383028376337],[122,59,75,-0.7430328342399447],[122,59,76,-0.742729825936552],[122,59,77,-0.7424292827735625],[122,59,78,-0.7421312094989972],[122,59,79,-0.7418356107623542],[122,60,64,-0.7466661380734732],[122,60,65,-0.7463360028026931],[122,60,66,-0.7460082736948301],[122,60,67,-0.7456829565575241],[122,60,68,-0.7453600571047168],[122,60,69,-0.7450395809562219],[122,60,70,-0.7447215336372814],[122,60,71,-0.7444059205781246],[122,60,72,-0.7440927471135265],[122,60,73,-0.7437820184823803],[122,60,74,-0.7434737398272425],[122,60,75,-0.743167916193907],[122,60,76,-0.7428645525309671],[122,60,77,-0.7425636536893792],[122,60,78,-0.7422652244220296],[122,60,79,-0.7419692693832969],[122,61,64,-0.7468052766125386],[122,61,65,-0.746474790754528],[122,61,66,-0.746146710684526],[122,61,67,-0.7458210422148462],[122,61,68,-0.7454977910641214],[122,61,69,-0.7451769628568722],[122,61,70,-0.7448585631230635],[122,61,71,-0.7445425972976636],[122,61,72,-0.7442290707202027],[122,61,73,-0.7439179886343457],[122,61,74,-0.743609356187436],[122,61,75,-0.7433031784300708],[122,61,76,-0.7429994603156631],[122,61,77,-0.7426982067000044],[122,61,78,-0.7423994223408326],[122,61,79,-0.7421031118973932],[122,62,64,-0.7469445851227834],[122,62,65,-0.7466137496268374],[122,62,66,-0.7462853195405913],[122,62,67,-0.7459593006810182],[122,62,68,-0.7456356987714253],[122,62,69,-0.7453145194410252],[122,62,70,-0.7449957682244903],[122,62,71,-0.744679450561513],[122,62,72,-0.7443655717963635],[122,62,73,-0.7440541371774636],[122,62,74,-0.7437451518569294],[122,62,75,-0.7434386208901467],[122,62,76,-0.7431345492353338],[122,62,77,-0.7428329417531032],[122,62,78,-0.7425338032060302],[122,62,79,-0.742237138258214],[122,63,64,-0.7470840635101338],[122,63,65,-0.746752879328653],[122,63,66,-0.746424100175153],[122,63,67,-0.7460977318712498],[122,63,68,-0.7457737801449104],[122,63,69,-0.7454522506300229],[122,63,70,-0.7451331488659524],[122,63,71,-0.7448164802971001],[122,63,72,-0.7445022502724619],[122,63,73,-0.7441904640452006],[122,63,74,-0.7438811267721908],[122,63,75,-0.7435742435135926],[122,63,76,-0.7432698192324149],[122,63,77,-0.7429678587940773],[122,63,78,-0.7426683669659784],[122,63,79,-0.7423713484170568],[122,64,64,-0.747223711678307],[122,64,65,-0.7468921797667925],[122,64,66,-0.7465630524981175],[122,64,67,-0.7462363356985251],[122,64,68,-0.7459120351006262],[122,64,69,-0.7455901563429697],[122,64,70,-0.7452707049695972],[122,64,71,-0.7449536864296042],[122,64,72,-0.7446391060766964],[122,64,73,-0.7443269691687636],[122,64,74,-0.7440172808674235],[122,64,75,-0.7437100462375964],[122,64,76,-0.7434052702470673],[122,64,77,-0.7431029577660485],[122,64,78,-0.7428031135667478],[122,64,79,-0.7425057423229292],[122,65,64,-0.7473635295287943],[122,65,65,-0.7470316508458413],[122,65,66,-0.7467021764171532],[122,65,67,-0.7463751120735845],[122,65,68,-0.7460504635523739],[122,65,69,-0.7457282364967153],[122,65,70,-0.7454084364553124],[122,65,71,-0.7450910688819385],[122,65,72,-0.7447761391349949],[122,65,73,-0.7444636524770831],[122,65,74,-0.7441536140745495],[122,65,75,-0.7438460289970592],[122,65,76,-0.7435409022171593],[122,65,77,-0.7432382386098408],[122,65,78,-0.7429380429521062],[122,65,79,-0.7426403199225314],[122,66,64,-0.7475035169609178],[122,66,65,-0.7471712924682101],[122,66,66,-0.7468414718377483],[122,66,67,-0.7465140609049817],[122,66,68,-0.7461890654117619],[122,66,69,-0.7458664910059118],[122,66,70,-0.7455463432407815],[122,66,71,-0.7452286275748075],[122,66,72,-0.7449133493710707],[122,66,73,-0.7446005138968698],[122,66,74,-0.7442901263232647],[122,66,75,-0.7439821917246515],[122,66,76,-0.7436767150783241],[122,66,77,-0.7433737012640378],[122,66,78,-0.7430731550635759],[122,66,79,-0.7427750811603121],[122,67,64,-0.747643673871805],[122,67,65,-0.7473111045341091],[122,67,66,-0.7469809386631839],[122,67,67,-0.7466531820990587],[122,67,68,-0.7463278405881811],[122,67,69,-0.7460049197829879],[122,67,70,-0.7456844252414597],[122,67,71,-0.7453663624266809],[122,67,72,-0.7450507367063971],[122,67,73,-0.7447375533525891],[122,67,74,-0.7444268175410154],[122,67,75,-0.7441185343507877],[122,67,76,-0.743812708763933],[122,67,77,-0.7435093456649562],[122,67,78,-0.7432084498404075],[122,67,79,-0.7429100259784436],[122,68,64,-0.7477840001564129],[122,68,65,-0.7474510869415719],[122,68,66,-0.7471205767945599],[122,68,67,-0.7467924755599694],[122,68,68,-0.7464667889888288],[122,68,69,-0.7461435227381727],[122,68,70,-0.745822682370597],[122,68,71,-0.7455042733538182],[122,68,72,-0.7451883010602318],[122,68,73,-0.7448747707664849],[122,68,74,-0.7445636876530201],[122,68,75,-0.7442550568036503],[122,68,76,-0.7439488832051204],[122,68,77,-0.7436451717466707],[122,68,78,-0.7433439272196034],[122,68,79,-0.7430451543168454],[122,69,64,-0.7479244957075031],[122,69,65,-0.747591239586431],[122,69,66,-0.7472603861307682],[122,69,67,-0.7469319411896547],[122,69,68,-0.7466059105186833],[122,69,69,-0.746282299779471],[122,69,70,-0.7459611145392131],[122,69,71,-0.7456423602702431],[122,69,72,-0.7453260423495904],[122,69,73,-0.7450121660585542],[122,69,74,-0.7447007365822457],[122,69,75,-0.744391759009164],[122,69,76,-0.7440852383307575],[122,69,77,-0.7437811794409871],[122,69,78,-0.7434795871358935],[122,69,79,-0.7431804661131582],[122,70,64,-0.7480651604156979],[122,70,65,-0.7477315623623736],[122,70,66,-0.74740036656855],[122,70,67,-0.7470715788878984],[122,70,68,-0.7467452050805605],[122,70,69,-0.7464212508127195],[122,70,70,-0.7460997216561542],[122,70,71,-0.7457806230877997],[122,70,72,-0.7454639604893046],[122,70,73,-0.745149739146604],[122,70,74,-0.744837964249463],[122,70,75,-0.7445286408910522],[122,70,76,-0.7442217740675089],[122,70,77,-0.7439173686775],[122,70,78,-0.7436154295217899],[122,70,79,-0.7433159613028013],[122,71,64,-0.7482059941694641],[122,71,65,-0.7478720551609251],[122,71,66,-0.747540518002479],[122,71,67,-0.7472113885523113],[122,71,68,-0.746884672575097],[122,71,69,-0.7465603757415693],[122,71,70,-0.7462385036280754],[122,71,71,-0.745919061716136],[122,71,72,-0.7456020553920033],[122,71,73,-0.7452874899462333],[122,71,74,-0.74497537057323],[122,71,75,-0.7446657023708206],[122,71,76,-0.744358490339816],[122,71,77,-0.7440537393835752],[122,71,78,-0.7437514543075713],[122,71,79,-0.743451639818954],[122,72,64,-0.748346996855095],[122,72,65,-0.7480127178714322],[122,72,66,-0.7476808403249434],[122,72,67,-0.7473513700783132],[122,72,68,-0.7470243129007326],[122,72,69,-0.7466996744674697],[122,72,70,-0.7463774603594239],[122,72,71,-0.7460576760626861],[122,72,72,-0.7457403269680963],[122,72,73,-0.7454254183708167],[122,72,74,-0.7451129554698745],[122,72,75,-0.7448029433677386],[122,72,76,-0.744495387069879],[122,72,77,-0.7441902914843316],[122,72,78,-0.7438876614212642],[122,72,79,-0.7435875015925391],[122,73,64,-0.7484881683567679],[122,73,65,-0.748153550381119],[122,73,66,-0.7478213334262037],[122,73,67,-0.7474915233591893],[122,73,68,-0.7471641259537674],[122,73,69,-0.746839146889724],[122,73,70,-0.7465165917524954],[122,73,71,-0.7461964660327269],[122,73,72,-0.745878775125831],[122,73,73,-0.7455635243315601],[122,73,74,-0.7452507188535504],[122,73,75,-0.7449403637988966],[122,73,76,-0.7446324641777133],[122,73,77,-0.7443270249026985],[122,73,78,-0.7440240507887006],[122,73,79,-0.7437235465522793],[122,74,64,-0.7486295085565184],[122,74,65,-0.7482945525750618],[122,74,66,-0.7479619971943667],[122,74,67,-0.7476318482860662],[122,74,68,-0.7473041116283359],[122,74,69,-0.7469787929054647],[122,74,70,-0.746655897707409],[122,74,71,-0.7463354315293533],[122,74,72,-0.7460173997712667],[122,74,73,-0.7457018077374766],[122,74,74,-0.7453886606362127],[122,74,75,-0.7450779635791807],[122,74,76,-0.7447697215811246],[122,74,77,-0.7444639395593902],[122,74,78,-0.7441606223334912],[122,74,79,-0.7438597746246713],[122,75,64,-0.7487710173342643],[122,75,65,-0.7484357243362139],[122,75,66,-0.7481028315154095],[122,75,67,-0.7477723447479341],[122,75,68,-0.7474442698164315],[122,75,69,-0.7471186124096767],[122,75,70,-0.7467953781221308],[122,75,71,-0.7464745724535009],[122,75,72,-0.7461562008082978],[122,75,73,-0.7458402684954087],[122,75,74,-0.7455267807276407],[122,75,75,-0.7452157426212956],[122,75,76,-0.7449071591957324],[122,75,77,-0.7446010353729291],[122,75,78,-0.7442973759770505],[122,75,79,-0.7439961857340096],[122,76,64,-0.7489126945677809],[122,76,65,-0.7485770655453787],[122,76,66,-0.7482438362731542],[122,76,67,-0.747913012631623],[122,76,68,-0.7475846004078807],[122,76,69,-0.7472586052951723],[122,76,70,-0.7469350328924479],[122,76,71,-0.7466138887039215],[122,76,72,-0.7462951781386297],[122,76,73,-0.7459789065100034],[122,76,74,-0.7456650790354125],[122,76,75,-0.7453537008357399],[122,76,76,-0.7450447769349438],[122,76,77,-0.7447383122596201],[122,76,78,-0.7444343116385698],[122,76,79,-0.7441327798023607],[122,77,64,-0.7490545401327569],[122,77,65,-0.7487185760812682],[122,77,66,-0.7483850113493244],[122,77,67,-0.748053851821858],[122,77,68,-0.7477251032903995],[122,77,69,-0.747398771452648],[122,77,70,-0.7470748619120262],[122,77,71,-0.7467533801772395],[122,77,72,-0.7464343316618339],[122,77,73,-0.7461177216837693],[122,77,74,-0.7458035554649624],[122,77,75,-0.7454918381308621],[122,77,76,-0.7451825747100107],[122,77,77,-0.7448757701336073],[122,77,78,-0.7445714292350742],[122,77,79,-0.7442695567496196],[122,78,64,-0.7491965539027774],[122,78,65,-0.7488602558204844],[122,78,66,-0.7485263566235287],[122,78,67,-0.7481948622012431],[122,78,68,-0.7478657783495769],[122,78,69,-0.747539110770667],[122,78,70,-0.7472148650723924],[122,78,71,-0.746893046767934],[122,78,72,-0.7465736612753318],[122,78,73,-0.7462567139170584],[122,78,74,-0.7459422099195625],[122,78,75,-0.7456301544128434],[122,78,76,-0.7453205524300126],[122,78,77,-0.745013408906857],[122,78,78,-0.744708728681406],[122,78,79,-0.7444065164934929],[122,79,64,-0.7493387357493078],[122,79,65,-0.7490021046375026],[122,79,66,-0.7486678719732426],[122,79,67,-0.7483360436502434],[122,79,68,-0.7480066254688571],[122,79,69,-0.7476796231356417],[122,79,70,-0.7473550422629167],[122,79,71,-0.7470328883683222],[122,79,72,-0.7467131668743765],[122,79,73,-0.7463958831080495],[122,79,74,-0.746081042300306],[122,79,75,-0.7457686495856803],[122,79,76,-0.7454587100018382],[122,79,77,-0.7451512284891395],[122,79,78,-0.7448462098902053],[122,79,79,-0.7445436589494803],[122,80,64,-0.7494810855417485],[122,80,65,-0.7491441224047285],[122,80,66,-0.7488095572738656],[122,80,67,-0.7484773960472422],[122,80,68,-0.7481476445295963],[122,80,69,-0.747820308431891],[122,80,70,-0.7474953933708697],[122,80,71,-0.7471729048686158],[122,80,72,-0.7468528483521102],[122,80,73,-0.7465352291528042],[122,80,74,-0.7462200525061633],[122,80,75,-0.7459073235512413],[122,80,76,-0.7455970473302429],[122,80,77,-0.7452892287880861],[122,80,78,-0.7449838727719689],[122,80,79,-0.7446809840309319],[122,81,64,-0.7496236031474122],[122,81,65,-0.7492863089924723],[122,81,66,-0.7489514123986959],[122,81,67,-0.7486189192685151],[122,81,68,-0.7482888354110373],[122,81,69,-0.7479611665416139],[122,81,70,-0.7476359182813965],[122,81,71,-0.7473130961568955],[122,81,72,-0.7469927055995382],[122,81,73,-0.7466747519452418],[122,81,74,-0.7463592404339567],[122,81,75,-0.746046176209241],[122,81,76,-0.7457355643178231],[122,81,77,-0.7454274097091634],[122,81,78,-0.7451217172350225],[122,81,79,-0.744818491649022],[122,82,64,-0.749766288431545],[122,82,65,-0.7494286642689729],[122,82,66,-0.7490934372189543],[122,82,67,-0.7487606131882545],[122,82,68,-0.7484301979903334],[122,82,69,-0.7481021973449146],[122,82,70,-0.7477766168775413],[122,82,71,-0.7474534621191348],[122,82,72,-0.747132738505553],[122,82,73,-0.7468144513771628],[122,82,74,-0.746498605978384],[122,82,75,-0.7461852074572641],[122,82,76,-0.7458742608650388],[122,82,77,-0.745565771155697],[122,82,78,-0.7452597431855459],[122,82,79,-0.7449561817127739],[122,83,64,-0.7499091412573029],[122,83,65,-0.7495711881003722],[122,83,66,-0.7492356316037582],[122,83,67,-0.7489024776785431],[122,83,68,-0.7485717321425223],[122,83,69,-0.7482434007197754],[122,83,70,-0.7479174890402204],[122,83,71,-0.7475940026391736],[122,83,72,-0.7472729469569075],[122,83,73,-0.7469543273382229],[122,83,74,-0.7466381490319933],[122,83,75,-0.7463244171907389],[122,83,76,-0.7460131368701892],[122,83,77,-0.745704313028845],[122,83,78,-0.7453979505275459],[122,83,79,-0.7450940541290316],[122,84,64,-0.750052161485808],[122,84,65,-0.7497138803507717],[122,84,66,-0.749377995420179],[122,84,67,-0.7490445126094115],[122,84,68,-0.7487134377405839],[122,84,69,-0.7483847765421145],[122,84,70,-0.7480585346482806],[122,84,71,-0.7477347175987767],[122,84,72,-0.7474133308382737],[122,84,73,-0.7470943797159904],[122,84,74,-0.7467778694852383],[122,84,75,-0.7464638053029955],[122,84,76,-0.7461521922294687],[122,84,77,-0.7458430352276559],[122,84,78,-0.7455363391629138],[122,84,79,-0.7452321088025191],[122,85,64,-0.750195348976131],[122,85,65,-0.7498567408822159],[122,85,66,-0.7495205285332245],[122,85,67,-0.7491867178488207],[122,85,68,-0.748855314655422],[122,85,69,-0.748526324685769],[122,85,70,-0.7481997535784807],[122,85,71,-0.7478756068776146],[122,85,72,-0.7475538900322234],[122,85,73,-0.7472346083959283],[122,85,74,-0.7469177672264626],[122,85,75,-0.7466033716852468],[122,85,76,-0.7462914268369494],[122,85,77,-0.7459819376490502],[122,85,78,-0.7456749089914081],[122,85,79,-0.7453703456358213],[122,86,64,-0.7503387035852741],[122,86,65,-0.7499997695546742],[122,86,66,-0.7496632308058212],[122,86,67,-0.7493290932626445],[122,86,68,-0.748997362755847],[122,86,69,-0.7486680450224752],[122,86,70,-0.748341145705474],[122,86,71,-0.7480166703532465],[122,86,72,-0.7476946244192115],[122,86,73,-0.7473750132613763],[122,86,74,-0.7470578421418809],[122,86,75,-0.7467431162265714],[122,86,76,-0.7464308405845631],[122,86,77,-0.7461210201878027],[122,86,78,-0.7458136599106351],[122,86,79,-0.7455087645293661],[122,87,64,-0.7504822251682279],[122,87,65,-0.7501429662260982],[122,87,66,-0.7498061020988718],[122,87,67,-0.7494716387147263],[122,87,68,-0.7491395819086335],[122,87,69,-0.7488099374219285],[122,87,70,-0.7484827109018657],[122,87,71,-0.7481579079011778],[122,87,72,-0.747835533877633],[122,87,73,-0.7475155941936091],[122,87,74,-0.7471980941156359],[122,87,75,-0.7468830388139706],[122,87,76,-0.7465704333621591],[122,87,77,-0.7462602827365995],[122,87,78,-0.7459525918161083],[122,87,79,-0.7456473653814826],[122,88,64,-0.750625913577954],[122,88,65,-0.7502863307524045],[122,88,66,-0.7499491422712374],[122,88,67,-0.7496143540668622],[122,88,68,-0.7492819719785018],[122,88,69,-0.7489520017517639],[122,88,70,-0.7486244490381954],[122,88,71,-0.7482993193948417],[122,88,72,-0.7479766182838051],[122,88,73,-0.7476563510718169],[122,88,74,-0.7473385230297815],[122,88,75,-0.7470231393323508],[122,88,76,-0.746710205057486],[122,88,77,-0.7463997251860208],[122,88,78,-0.7460917046012281],[122,88,79,-0.7457861480883818],[122,89,64,-0.7507697686653678],[122,89,65,-0.7504298629874565],[122,89,66,-0.7500923511797204],[122,89,67,-0.7497572391787826],[122,89,68,-0.7494245328281011],[122,89,69,-0.7490942378775387],[122,89,70,-0.7487663599829185],[122,89,71,-0.7484409047055823],[122,89,72,-0.7481178775119495],[122,89,73,-0.7477972837730892],[122,89,74,-0.747479128764264],[122,89,75,-0.7471634176645051],[122,89,76,-0.7468501555561733],[122,89,77,-0.7465393474245222],[122,89,78,-0.7462309981572659],[122,89,79,-0.7459251125441396],[122,90,64,-0.750913790279395],[122,90,65,-0.7505735627831223],[122,90,66,-0.7502357286791206],[122,90,67,-0.74990029390821],[122,90,68,-0.7495672643180662],[122,90,69,-0.7492366456627904],[122,90,70,-0.7489084436024647],[122,90,71,-0.7485826637027111],[122,90,72,-0.7482593114342497],[122,90,73,-0.747938392172471],[122,90,74,-0.7476199111969802],[122,90,75,-0.7473038736911713],[122,90,76,-0.7469902847417891],[122,90,77,-0.7466791493384922],[122,90,78,-0.7463704723734198],[122,90,79,-0.7460642586407538],[122,91,64,-0.751057978266946],[122,91,65,-0.7507174299892482],[122,91,66,-0.7503792746222107],[122,91,67,-0.7500435181108331],[122,91,68,-0.7497101663069918],[122,91,69,-0.7493792249690097],[122,91,70,-0.749050699761211],[122,91,71,-0.7487245962534812],[122,91,72,-0.7484009199208248],[122,91,73,-0.7480796761429374],[122,91,74,-0.7477608702037505],[122,91,75,-0.7474445072910052],[122,91,76,-0.7471305924958145],[122,91,77,-0.7468191308122261],[122,91,78,-0.7465101271367893],[122,91,79,-0.7462035862681171],[122,92,64,-0.7512023324729407],[122,92,65,-0.7508614644536833],[122,92,66,-0.7505229888597592],[122,92,67,-0.7501869116403304],[122,92,68,-0.7498532386514565],[122,92,69,-0.749521975655665],[122,92,70,-0.7491931283215059],[122,92,71,-0.7488667022231114],[122,92,72,-0.7485427028397533],[122,92,73,-0.7482211355554167],[122,92,74,-0.747902005658343],[122,92,75,-0.7475853183406043],[122,92,76,-0.7472710786976662],[122,92,77,-0.7469592917279497],[122,92,78,-0.746649962332399],[122,92,79,-0.7463430953140424],[122,93,64,-0.7513468527402811],[122,93,65,-0.7510056660222529],[122,93,66,-0.7506668712405049],[122,93,67,-0.7503304743483441],[122,93,68,-0.7499964812059963],[122,93,69,-0.7496648975801765],[122,93,70,-0.7493357291436435],[122,93,71,-0.7490089814747593],[122,93,72,-0.7486846600570473],[122,93,73,-0.7483627702787649],[122,93,74,-0.7480433174324472],[122,93,75,-0.7477263067144819],[122,93,76,-0.7474117432246707],[122,93,77,-0.7470996319657928],[122,93,78,-0.746789977843171],[122,93,79,-0.7464827856642346],[122,94,64,-0.7514915389099102],[122,94,65,-0.7511500345388165],[122,94,66,-0.750810921611214],[122,94,67,-0.7504742060845376],[122,94,68,-0.7501398938231623],[122,94,69,-0.7498079905979729],[122,94,70,-0.7494785020859203],[122,94,71,-0.7491514338695796],[122,94,72,-0.748826791436709],[122,94,73,-0.7485045801798221],[122,94,74,-0.7481848053957316],[122,94,75,-0.7478674722851243],[122,94,76,-0.7475525859521222],[122,94,77,-0.7472401514038467],[122,94,78,-0.7469301735499843],[122,94,79,-0.7466226572023491],[122,95,64,-0.751636390820793],[122,95,65,-0.7512945698452491],[122,95,66,-0.7509551398166626],[122,95,67,-0.7506181066965782],[122,95,68,-0.7502834763535026],[122,95,69,-0.7499512545624739],[122,95,70,-0.7496214470046177],[122,95,71,-0.7492940592667058],[122,95,72,-0.7489690968407142],[122,95,73,-0.7486465651233961],[122,95,74,-0.7483264694158258],[122,95,75,-0.7480088149229724],[122,95,76,-0.7476936067532636],[122,95,77,-0.747380849918146],[122,95,78,-0.7470705493316546],[122,95,79,-0.7467627098099734],[122,96,64,-0.7517814083098994],[122,96,65,-0.7514392717814247],[122,96,66,-0.7510995256996186],[122,96,67,-0.7507621760301184],[122,96,68,-0.7504272286455449],[122,96,69,-0.7500946893250725],[122,96,70,-0.7497645637539844],[122,96,71,-0.7494368575232319],[122,96,72,-0.7491115761289926],[122,96,73,-0.7487887249722427],[122,96,74,-0.7484683093583013],[122,96,75,-0.7481503344964048],[122,96,76,-0.7478348054992687],[122,96,77,-0.7475217273826508],[122,96,78,-0.7472111050649181],[122,96,79,-0.7469029433666086],[122,97,64,-0.7519265912122615],[122,97,65,-0.7515841401852728],[122,97,66,-0.7512440791008994],[122,97,67,-0.7509064139288538],[122,97,68,-0.7505711505458537],[122,97,69,-0.7502382947351921],[122,97,70,-0.749907852186293],[122,97,71,-0.7495798284942705],[122,97,72,-0.7492542291594866],[122,97,73,-0.7489310595871241],[122,97,74,-0.7486103250867309],[122,97,75,-0.7482920308717936],[122,97,76,-0.7479761820593004],[122,97,77,-0.7476627836693037],[122,97,78,-0.7473518406244872],[122,97,79,-0.7470433577497272],[122,98,64,-0.7520719393609476],[122,98,65,-0.7517291748927524],[122,98,66,-0.7513887998593457],[122,98,67,-0.7510508202344971],[122,98,68,-0.7507152418990038],[122,98,69,-0.7503820706402605],[122,98,70,-0.7500513121518146],[122,98,71,-0.7497229720329259],[122,98,72,-0.7493970557881242],[122,98,73,-0.7490735688267827],[122,98,74,-0.7487525164626605],[122,98,75,-0.7484339039134792],[122,98,76,-0.7481177363004834],[122,98,77,-0.7478040186480038],[122,98,78,-0.7474927558830251],[122,98,79,-0.7471839528347469],[122,99,64,-0.7522174525870864],[122,99,65,-0.7518743757378765],[122,99,66,-0.7515336878118453],[122,99,67,-0.7511953947868018],[122,99,68,-0.750859502547605],[122,99,69,-0.750526016885734],[122,99,70,-0.7501949434988423],[122,99,71,-0.7498662879903186],[122,99,72,-0.7495400558688439],[122,99,73,-0.749216252547964],[122,99,74,-0.7488948833456343],[122,99,75,-0.7485759534837941],[122,99,76,-0.7482594680879282],[122,99,77,-0.74794543218663],[122,99,78,-0.7476338507111695],[122,99,79,-0.7473247284950537],[122,100,64,-0.75236313071984],[122,100,65,-0.7520197425526854],[122,100,66,-0.751678742793307],[122,100,67,-0.7513401374235356],[122,100,68,-0.7510039323322748],[122,100,69,-0.75067013331507],[122,100,70,-0.7503387460736646],[122,100,71,-0.7500097762155582],[122,100,72,-0.7496832292535661],[122,100,73,-0.749359110605391],[122,100,74,-0.7490374255931671],[122,100,75,-0.7487181794430353],[122,100,76,-0.7484013772847045],[122,100,77,-0.7480870241510149],[122,100,78,-0.7477751249775053],[122,100,79,-0.7474656846019749],[122,101,64,-0.7525089735864623],[122,101,65,-0.7521652751673044],[122,101,66,-0.7518239646367181],[122,101,67,-0.7514850479805387],[122,101,68,-0.7511485310916965],[122,101,69,-0.7508144197697864],[122,101,70,-0.7504827197206232],[122,101,71,-0.7501534365558015],[122,101,72,-0.7498265757922535],[122,101,73,-0.7495021428518217],[122,101,74,-0.7491801430608029],[122,101,75,-0.7488605816495231],[122,101,76,-0.7485434637518991],[122,101,77,-0.7482287944050017],[122,101,78,-0.747916578548623],[122,101,79,-0.7476068210248382],[122,102,64,-0.7526549810122809],[122,102,65,-0.7523109734099256],[122,102,66,-0.7519693531731266],[122,102,67,-0.7516301262917056],[122,102,68,-0.7512932986626016],[122,102,69,-0.7509588760894417],[122,102,70,-0.7506268642820952],[122,102,71,-0.7502972688562342],[122,102,72,-0.7499700953328907],[122,102,73,-0.7496453491380306],[122,102,74,-0.7493230356020963],[122,102,75,-0.7490031599595824],[122,102,76,-0.7486857273485975],[122,102,77,-0.7483707428104267],[122,102,78,-0.7480582112890998],[122,102,79,-0.7477481376309518],[122,103,64,-0.7528011528206788],[122,103,65,-0.7524568371067905],[122,103,66,-0.7521149082316227],[122,103,67,-0.7517753721889662],[122,103,68,-0.751438234879751],[122,103,69,-0.7511035021116182],[122,103,70,-0.7507711795984748],[122,103,71,-0.7504412729600527],[122,103,72,-0.7501137877214674],[122,103,73,-0.7497887293127905],[122,103,74,-0.7494661030685938],[122,103,75,-0.7491459142275242],[122,103,76,-0.7488281679318654],[122,103,77,-0.7485128692271007],[122,103,78,-0.7482000230614813],[122,103,79,-0.7478896342855871],[122,104,64,-0.7529474888331528],[122,104,65,-0.7526028660822471],[122,104,66,-0.7522606296393977],[122,104,67,-0.7519207855023446],[122,104,68,-0.7515833395759927],[122,104,69,-0.7512482976719791],[122,104,70,-0.7509156655082305],[122,104,71,-0.7505854487085221],[122,104,72,-0.750257652802035],[122,104,73,-0.7499322832229305],[122,104,74,-0.7496093453098926],[122,104,75,-0.7492888443057036],[122,104,76,-0.7489707853568063],[122,104,77,-0.7486551735128663],[122,104,78,-0.7483420137263397],[122,104,79,-0.7480313108520353],[122,105,64,-0.753093988869286],[122,105,65,-0.7527490601587243],[122,105,66,-0.7524065172217155],[122,105,67,-0.7520663660599327],[122,105,68,-0.751728612582236],[122,105,69,-0.7513932626042419],[122,105,70,-0.7510603218478794],[122,105,71,-0.7507297959409491],[122,105,72,-0.7504016904166814],[122,105,73,-0.7500760107133093],[122,105,74,-0.7497527621736129],[122,105,75,-0.7494319500444934],[122,105,76,-0.7491135794765357],[122,105,77,-0.7487976555235716],[122,105,78,-0.7484841831422465],[122,105,79,-0.748173167191582],[122,106,64,-0.7532406527467732],[122,106,65,-0.7528954191567547],[122,106,66,-0.7525525708019388],[122,106,67,-0.752212113687913],[122,106,68,-0.7518740537274751],[122,106,69,-0.751538396740203],[122,106,70,-0.7512051484520106],[122,106,71,-0.7508743144947067],[122,106,72,-0.7505459004055532],[122,106,73,-0.7502199116268389],[122,106,74,-0.7498963535054222],[122,106,75,-0.7495752312923069],[122,106,76,-0.7492565501422038],[122,106,77,-0.7489403151130942],[122,106,78,-0.7486265311657968],[122,106,79,-0.7483152031635298],[122,107,64,-0.7533874802813931],[122,107,65,-0.7530419428949495],[122,107,66,-0.7526987902015014],[122,107,67,-0.7523580282105329],[122,107,68,-0.752019662838762],[122,107,69,-0.7516836999097102],[122,107,70,-0.7513501451532584],[122,107,71,-0.7510190042052063],[122,107,72,-0.7506902826068305],[122,107,73,-0.7503639858044577],[122,107,74,-0.7500401191490085],[122,107,75,-0.7497186878955722],[122,107,76,-0.7493996972029691],[122,107,77,-0.7490831521333137],[122,107,78,-0.7487690576515815],[122,107,79,-0.748457418625172],[122,108,64,-0.7535344712870673],[122,108,65,-0.7531886311900549],[122,108,66,-0.7528451752399659],[122,108,67,-0.7525041094501627],[122,108,68,-0.7521654397412654],[122,108,69,-0.7518291719407212],[122,108,70,-0.7514953117823606],[122,108,71,-0.7511638649059569],[122,108,72,-0.7508348368567839],[122,108,73,-0.7505082330851891],[122,108,74,-0.7501840589461382],[122,108,75,-0.7498623196987897],[122,108,76,-0.7495430205060565],[122,108,77,-0.7492261664341698],[122,108,78,-0.7489117624522463],[122,108,79,-0.7485998134318499],[122,109,64,-0.7536816255758412],[122,109,65,-0.753335483856935],[122,109,66,-0.7529917257350061],[122,109,67,-0.7526503572272769],[122,109,68,-0.7523113842582515],[122,109,69,-0.7519748126592851],[122,109,70,-0.7516406481681404],[122,109,71,-0.7513088964285461],[122,109,72,-0.7509795629897562],[122,109,73,-0.7506526533061222],[122,109,74,-0.750328172736638],[122,109,75,-0.7500061265445136],[122,109,76,-0.7496865198967386],[122,109,77,-0.7493693578636444],[122,109,78,-0.7490546454184726],[122,109,79,-0.7487423874369352],[122,110,64,-0.7538289429578666],[122,110,65,-0.7534825007085535],[122,110,66,-0.7531384415023885],[122,110,67,-0.752796771360436],[122,110,68,-0.7524574962110661],[122,110,69,-0.7521206218895242],[122,110,70,-0.7517861541374868],[122,110,71,-0.7514540986026215],[122,110,72,-0.7511244608381444],[122,110,73,-0.7507972463023941],[122,110,74,-0.750472460358375],[122,110,75,-0.7501501082733331],[122,110,76,-0.7498301952183171],[122,110,77,-0.7495127262677423],[122,110,78,-0.7491977063989583],[122,110,79,-0.7488851404918103],[122,111,64,-0.7539764232414592],[122,111,65,-0.7536296815560309],[122,111,66,-0.7532853223560301],[122,111,67,-0.7529433516663447],[122,111,68,-0.7526037754191927],[122,111,69,-0.7522665994536915],[122,111,70,-0.7519318295154143],[122,111,71,-0.7515994712559491],[122,111,72,-0.7512695302324575],[122,111,73,-0.7509420119072472],[122,111,74,-0.7506169216473171],[122,111,75,-0.750294264723931],[122,111,76,-0.7499740463121807],[122,111,77,-0.749656271490549],[122,111,78,-0.7493409452404773],[122,111,79,-0.7490280724459272],[122,112,64,-0.7541240662330719],[122,112,65,-0.753777026208619],[122,112,66,-0.7534323681079723],[122,112,67,-0.7530900979598253],[122,112,68,-0.7527502217002255],[122,112,69,-0.7524127451721447],[122,112,70,-0.7520776741250346],[122,112,71,-0.7517450142143862],[122,112,72,-0.7514147710012891],[122,112,73,-0.7510869499520032],[122,112,74,-0.7507615564375036],[122,112,75,-0.7504385957330563],[122,112,76,-0.7501180730177789],[122,112,77,-0.749799993374205],[122,112,78,-0.7494843617878512],[122,112,79,-0.7491711831467797],[122,113,64,-0.7542718717373194],[122,113,65,-0.7539245344737235],[122,113,66,-0.7535795785684041],[122,113,67,-0.753237010053841],[122,113,68,-0.7528968348698937],[122,113,69,-0.7525590588633696],[122,113,70,-0.7522236877875815],[122,113,71,-0.7518907273019061],[122,113,72,-0.7515601829713425],[122,113,73,-0.7512320602660859],[122,113,74,-0.7509063645610712],[122,113,75,-0.7505831011355484],[122,113,76,-0.7502622751726447],[122,113,77,-0.7499438917589277],[122,113,78,-0.7496279558839734],[122,113,79,-0.7493144724399275],[122,114,64,-0.7544198395569506],[122,114,65,-0.7540722061568788],[122,114,66,-0.7537269535456356],[122,114,67,-0.7533840877594699],[122,114,68,-0.7530436147420337],[122,114,69,-0.7527055403439533],[122,114,70,-0.7523698703223836],[122,114,71,-0.7520366103405693],[122,114,72,-0.7517057659674024],[122,114,73,-0.7513773426769951],[122,114,74,-0.7510513458482249],[122,114,75,-0.7507277807643095],[122,114,76,-0.7504066526123682],[122,114,77,-0.7500879664829863],[122,114,78,-0.7497717273697821],[122,114,79,-0.7494579401689694],[122,115,64,-0.7545679694929076],[122,115,65,-0.7542200410618046],[122,115,66,-0.7538744928461567],[122,115,67,-0.7535313308859624],[122,115,68,-0.7531905611286489],[122,115,69,-0.7528521894286422],[122,115,70,-0.7525162215469223],[122,115,71,-0.7521826631505839],[122,115,72,-0.7518515198123937],[122,115,73,-0.7515227970103642],[122,115,74,-0.7511965001272981],[122,115,75,-0.7508726344503631],[122,115,76,-0.7505512051706545],[122,115,77,-0.7502322173827582],[122,115,78,-0.7499156760843186],[122,115,79,-0.7496015861756006],[122,116,64,-0.7547162613443066],[122,116,65,-0.7543680389903888],[122,116,66,-0.7540221962746176],[122,116,67,-0.7536787392407233],[122,116,68,-0.7533376738398896],[122,116,69,-0.7529990059303241],[122,116,70,-0.752662741276814],[122,116,71,-0.7523288855502857],[122,116,72,-0.7519974443273632],[122,116,73,-0.7516684230899421],[122,116,74,-0.7513418272247325],[122,116,75,-0.7510176620228359],[122,116,76,-0.7506959326793056],[122,116,77,-0.7503766442927118],[122,116,78,-0.7500598018647082],[122,116,79,-0.7497454102995948],[122,117,64,-0.7548647149084201],[122,117,65,-0.7545161997426683],[122,117,66,-0.7541700636338114],[122,117,67,-0.7538263126292931],[122,117,68,-0.7534849526840353],[122,117,69,-0.7531459896600088],[122,117,70,-0.7528094293257899],[122,117,71,-0.7524752773561191],[122,117,72,-0.7521435393314603],[122,117,73,-0.7518142207375736],[122,117,74,-0.7514873269650604],[122,117,75,-0.7511628633089374],[122,117,76,-0.7508408349682003],[122,117,77,-0.750521247045386],[122,117,78,-0.7502041045461414],[122,117,79,-0.7498894123787847],[122,118,64,-0.7550133299807347],[122,118,65,-0.7546645231168869],[122,118,66,-0.7543180947247317],[122,118,67,-0.7539740508554064],[122,118,68,-0.7536323974675527],[122,118,69,-0.7532931404268871],[122,118,70,-0.7529562855057563],[122,118,71,-0.7526218383826973],[122,118,72,-0.7522898046419956],[122,118,73,-0.7519601897732591],[122,118,74,-0.7516329991709619],[122,118,75,-0.7513082381340203],[122,118,76,-0.7509859118653539],[122,118,77,-0.7506660254714502],[122,118,78,-0.7503485839619324],[122,118,79,-0.7500335922491206],[122,119,64,-0.7551621063549327],[122,119,65,-0.7548130089094784],[122,119,66,-0.7544662893465541],[122,119,67,-0.7541219537209728],[122,119,68,-0.7537800079950776],[122,119,69,-0.7534404580383119],[122,119,70,-0.7531033096267749],[122,119,71,-0.7527685684427816],[122,119,72,-0.7524362400744223],[122,119,73,-0.7521063300151343],[122,119,74,-0.7517788436632478],[122,119,75,-0.75145378632156],[122,119,76,-0.7511311631968987],[122,119,77,-0.7508109793996847],[122,119,78,-0.7504932399435004],[122,119,79,-0.7501779497446517],[122,120,64,-0.755311043822874],[122,120,65,-0.7549616569150462],[122,120,66,-0.7546146472966179],[122,120,67,-0.7542700210260591],[122,120,68,-0.7539277840693956],[122,120,69,-0.7535879422997792],[122,120,70,-0.7532505014970434],[122,120,71,-0.7529154673472642],[122,120,72,-0.7525828454423173],[122,120,73,-0.7522526412794528],[122,120,74,-0.7519248602608386],[122,120,75,-0.7515995076931369],[122,120,76,-0.7512765887870652],[122,120,77,-0.7509561086569613],[122,120,78,-0.7506380723203501],[122,120,79,-0.7503224846975063],[122,121,64,-0.7554601421746536],[122,121,65,-0.7551104669264226],[122,121,66,-0.7547631683704843],[122,121,67,-0.7544182525689471],[122,121,68,-0.7540757254915006],[122,121,69,-0.7537355930149869],[122,121,70,-0.7533978609229559],[122,121,71,-0.7530625349052253],[122,121,72,-0.7527296205574396],[122,121,73,-0.7523991233806433],[122,121,74,-0.7520710487808251],[122,121,75,-0.7517454020684938],[122,121,76,-0.7514221884582406],[122,121,77,-0.7511014130683025],[122,121,78,-0.7507830809201304],[122,121,79,-0.7504671969379514],[122,122,64,-0.7556094011985757],[122,122,65,-0.7552594387346419],[122,122,66,-0.7549118523619095],[122,122,67,-0.7545666481461065],[122,122,68,-0.754223832060568],[122,122,69,-0.7538834099858077],[122,122,70,-0.7535453877090734],[122,122,71,-0.753209770923907],[122,122,72,-0.7528765652297031],[122,122,73,-0.7525457761312833],[122,122,74,-0.7522174090384394],[122,122,75,-0.7518914692655098],[122,122,76,-0.7515679620309413],[122,122,77,-0.7512468924568538],[122,122,78,-0.7509282655686074],[122,122,79,-0.7506120862943644],[122,123,64,-0.7557588206811767],[122,123,65,-0.7554085721289637],[122,123,66,-0.7550606990628685],[122,123,67,-0.7547152075522194],[122,123,68,-0.7543721035739787],[122,123,69,-0.7540313930123129],[122,123,70,-0.7536930816581495],[122,123,71,-0.7533571752087362],[122,123,72,-0.7530236792672006],[122,123,73,-0.7526925993421226],[122,123,74,-0.7523639408470799],[122,123,75,-0.7520377091002228],[122,123,76,-0.7517139093238371],[122,123,77,-0.751392546643908],[122,123,78,-0.7510736260896874],[122,123,79,-0.7507571525932573],[122,124,64,-0.7559084004071989],[122,124,65,-0.7555578668968466],[122,124,66,-0.7552097082635278],[122,124,67,-0.7548639305801528],[122,124,68,-0.7545205398272912],[122,124,69,-0.7541795418927448],[122,124,70,-0.753840942571102],[122,124,71,-0.7535047475632985],[122,124,72,-0.7531709624761761],[122,124,73,-0.7528395928220557],[122,124,74,-0.7525106440182829],[122,124,75,-0.752184121386803],[122,124,76,-0.7518600301537228],[122,124,77,-0.7515383754488761],[122,124,78,-0.7512191623053901],[122,124,79,-0.7509023956592487],[122,125,64,-0.7560581401596482],[122,125,65,-0.755707322824006],[122,125,66,-0.7553588797523045],[122,125,67,-0.7550128170210164],[122,125,68,-0.7546691406143011],[122,125,69,-0.754327856423576],[122,125,70,-0.7539889702470725],[122,125,71,-0.7536524877893955],[122,125,72,-0.7533184146610836],[122,125,73,-0.7529867563781807],[122,125,74,-0.7526575183617826],[122,125,75,-0.7523307059376113],[122,125,76,-0.7520063243355785],[122,125,77,-0.7516843786893483],[122,125,78,-0.7513648740359067],[122,125,79,-0.7510478153151229],[122,126,64,-0.7562080397197763],[122,126,65,-0.7558569396943958],[122,126,66,-0.7555082133158468],[122,126,67,-0.7551618666641453],[122,126,68,-0.7548179057270215],[122,126,69,-0.75447633639949],[122,126,70,-0.7541371644834064],[122,126,71,-0.7538003956870271],[122,126,72,-0.7534660356245685],[122,126,73,-0.7531340898157802],[122,126,74,-0.7528045636854902],[122,126,75,-0.7524774625631803],[122,126,76,-0.7521527916825483],[122,126,77,-0.7518305561810731],[122,126,78,-0.7515107610995811],[122,126,79,-0.7511934113818106],[122,127,64,-0.7563580988670613],[122,127,65,-0.7560067172901896],[122,127,66,-0.7556577087390156],[122,127,67,-0.7553110792970799],[122,127,68,-0.7549668349556642],[122,127,69,-0.754624981613362],[122,127,70,-0.7542855250756344],[122,127,71,-0.7539484710543709],[122,127,72,-0.7536138251674479],[122,127,73,-0.7532815929383022],[122,127,74,-0.7529517797954766],[122,127,75,-0.7526243910721945],[122,127,76,-0.7522994320059233],[122,127,77,-0.7519769077379383],[122,127,78,-0.7516568233128906],[122,127,79,-0.7513391836783695],[122,128,64,-0.7565083173792663],[122,128,65,-0.7561566553918391],[122,128,66,-0.7558073658049431],[122,128,67,-0.7554604547056252],[122,128,68,-0.7551159280886991],[122,128,69,-0.7547737918563184],[122,128,70,-0.7544340518175319],[122,128,71,-0.7540967136878428],[122,128,72,-0.7537617830887698],[122,128,73,-0.7534292655474192],[122,128,74,-0.7530991664960299],[122,128,75,-0.7527714912715502],[122,128,76,-0.752446245115199],[122,128,77,-0.752123433172031],[122,128,78,-0.7518030604905044],[122,128,79,-0.7514851320220434],[122,129,64,-0.7566586950324126],[122,129,65,-0.7563067537780466],[122,129,66,-0.7559571842950058],[122,129,67,-0.7556099926738229],[122,129,68,-0.7552651849128258],[122,129,69,-0.7549227669177092],[122,129,70,-0.75458274450109],[122,129,71,-0.7542451233820682],[122,129,72,-0.7539099091857855],[122,129,73,-0.7535771074429997],[122,129,74,-0.7532467235896286],[122,129,75,-0.752918762966327],[122,129,76,-0.7525932308180479],[122,129,77,-0.7522701322936083],[122,129,78,-0.7519494724452562],[122,129,79,-0.7516312562282337],[122,130,64,-0.7568092316008035],[122,130,65,-0.7564570122257901],[122,130,66,-0.7561071639888477],[122,130,67,-0.755759692983976],[122,130,68,-0.7554146052129983],[122,130,69,-0.755071906585131],[122,130,70,-0.7547316029165412],[122,130,71,-0.7543936999299061],[122,130,72,-0.7540582032539734],[122,130,73,-0.7537251184231334],[122,130,74,-0.7533944508769652],[122,130,75,-0.753066205959812],[122,130,76,-0.7527403889203439],[122,130,77,-0.7524170049111223],[122,130,78,-0.7520960589881682],[122,130,79,-0.7517775561105243],[122,131,64,-0.7569599268569966],[122,131,65,-0.7566074305102943],[122,131,66,-0.7562573046643534],[122,131,67,-0.7559095554166214],[122,131,68,-0.7555641887723971],[122,131,69,-0.7552212106444006],[122,131,70,-0.7548806268523303],[122,131,71,-0.7545424431224224],[122,131,72,-0.7542066650870112],[122,131,73,-0.7538732982841024],[122,131,74,-0.7535423481569179],[122,131,75,-0.7532138200534719],[122,131,76,-0.7528877192261336],[122,131,77,-0.7525640508311918],[122,131,78,-0.7522428199284228],[122,131,79,-0.751924031480653],[122,132,64,-0.7571107805718632],[122,132,65,-0.7567580084050909],[122,132,66,-0.7564076060977067],[122,132,67,-0.7560595797505875],[122,132,68,-0.7557139353724882],[122,132,69,-0.7553706788796135],[122,132,70,-0.7550298160951742],[122,132,71,-0.7546913527489472],[122,132,72,-0.7543552944768354],[122,132,73,-0.7540216468204409],[122,132,74,-0.7536904152266108],[122,132,75,-0.7533616050470123],[122,132,76,-0.7530352215376964],[122,132,77,-0.7527112698586613],[122,132,78,-0.7523897550734215],[122,132,79,-0.7520706821485705],[122,133,64,-0.757261792514569],[122,133,65,-0.7569087456819985],[122,133,66,-0.7565580680633724],[122,133,67,-0.7562097657629768],[122,133,68,-0.7558638447930042],[122,133,69,-0.7555203110731248],[122,133,70,-0.7551791704300427],[122,133,71,-0.7548404285970572],[122,133,72,-0.7545040912136213],[122,133,73,-0.7541701638249154],[122,133,74,-0.7538386518813935],[122,133,75,-0.7535095607383583],[122,133,76,-0.753182895655524],[122,133,77,-0.7528586617965817],[122,133,78,-0.7525368642287665],[122,133,79,-0.7522175079224215],[122,134,64,-0.7574129624525548],[122,134,65,-0.7570596421111042],[122,134,66,-0.7567086903340758],[122,134,67,-0.7563601132291456],[122,134,68,-0.7560139168119244],[122,134,69,-0.7556701070055292],[122,134,70,-0.7553286896401388],[122,134,71,-0.7549896704525556],[122,134,72,-0.7546530550857643],[122,134,73,-0.7543188490885058],[122,134,74,-0.7539870579148223],[122,134,75,-0.7536576869236342],[122,134,76,-0.7533307413783019],[122,134,77,-0.7530062264461908],[122,134,78,-0.7526841471982398],[122,134,79,-0.7523645086085244],[122,135,64,-0.7575642901515964],[122,135,65,-0.7572106974608224],[122,135,66,-0.7568594726808626],[122,135,67,-0.7565106219227637],[122,135,68,-0.7561641512055354],[122,135,69,-0.7558200664557218],[122,135,70,-0.7554783735069582],[122,135,71,-0.7551390780995313],[122,135,72,-0.754802185879939],[122,135,73,-0.7544677024004639],[122,135,74,-0.7541356331187192],[122,135,75,-0.7538059833972242],[122,135,76,-0.7534787585029679],[122,135,77,-0.7531539636069725],[122,135,78,-0.7528316037838634],[122,135,79,-0.752511684011431],[122,136,64,-0.7577157753757756],[122,136,65,-0.757361911497867],[122,136,66,-0.7570104148730713],[122,136,67,-0.7566612916157861],[122,136,68,-0.756314547748401],[122,136,69,-0.7559701892008687],[122,136,70,-0.7556282218102611],[122,136,71,-0.755288651320331],[122,136,72,-0.7549514833810707],[122,136,73,-0.7546167235482864],[122,136,74,-0.7542843772831437],[122,136,75,-0.7539544499517432],[122,136,76,-0.7536269468246842],[122,136,77,-0.7533018730766289],[122,136,78,-0.7529792337858707],[122,136,79,-0.7526590339338981],[122,137,64,-0.7578674178875058],[122,137,65,-0.7575132839872758],[122,137,66,-0.7571615166783567],[122,137,67,-0.7568121220784777],[122,137,68,-0.7564651062133888],[122,137,69,-0.7561204750164316],[122,137,70,-0.7557782343280968],[122,137,71,-0.7554383898955834],[122,137,72,-0.7551009473723602],[122,137,73,-0.7547659123177382],[122,137,74,-0.7544332901964172],[122,137,75,-0.7541030863780612],[122,137,76,-0.7537753061368621],[122,137,77,-0.7534499546511035],[122,137,78,-0.7531270370027308],[122,137,79,-0.7528065581769123],[122,138,64,-0.7580192174475029],[122,138,65,-0.7576648146923824],[122,138,66,-0.7573127778626627],[122,138,67,-0.756963113079385],[122,138,68,-0.7566158263716404],[122,138,69,-0.7562709236761406],[122,138,70,-0.7559284108367749],[122,138,71,-0.7555882936041711],[122,138,72,-0.755250577635255],[122,138,73,-0.7549152684928244],[122,138,74,-0.7545823716450948],[122,138,75,-0.7542518924652754],[122,138,76,-0.7539238362311326],[122,138,77,-0.7535982081245545],[122,138,78,-0.7532750132311196],[122,138,79,-0.7529542565396601],[122,139,64,-0.7581711738148458],[122,139,65,-0.7578165033748758],[122,139,66,-0.757464198190281],[122,139,67,-0.7571142643853954],[122,139,68,-0.7567667079926315],[122,139,69,-0.7564215349520518],[122,139,70,-0.7560787511109256],[122,139,71,-0.75573836222329],[122,139,72,-0.7554003739495095],[122,139,73,-0.7550647918558498],[122,139,74,-0.7547316214140243],[122,139,75,-0.7544008680007688],[122,139,76,-0.7540725368974067],[122,139,77,-0.7537466332894124],[122,139,78,-0.7534231622659804],[122,139,79,-0.7531021288195886],[122,140,64,-0.758323286746956],[122,140,65,-0.7579683497947807],[122,140,66,-0.7576157774238323],[122,140,67,-0.7572655757617182],[122,140,68,-0.7569177508441525],[122,140,69,-0.7565723086145296],[122,140,70,-0.7562292549234795],[122,140,71,-0.7558885955284298],[122,140,72,-0.7555503360931648],[122,140,73,-0.7552144821873998],[122,140,74,-0.754881039286327],[122,140,75,-0.7545500127701917],[122,140,76,-0.7542214079238556],[122,140,77,-0.7538952299363617],[122,140,78,-0.753571483900503],[122,140,79,-0.7532501748123855],[122,141,64,-0.7584755559995792],[122,141,65,-0.7581203537104382],[122,141,66,-0.7577675153242467],[122,141,67,-0.7574170469718645],[122,141,68,-0.757068954692289],[122,141,69,-0.7567232444322264],[122,141,70,-0.7563799220456485],[122,141,71,-0.7560389932933542],[122,141,72,-0.7557004638425292],[122,141,73,-0.7553643392663194],[122,141,74,-0.7550306250433781],[122,141,75,-0.7546993265574411],[122,141,76,-0.7543704490968905],[122,141,77,-0.7540439978543204],[122,141,78,-0.7537199779261041],[122,141,79,-0.7533983943119593],[122,142,64,-0.7586279813268437],[122,142,65,-0.7582725148785658],[122,142,66,-0.7579194116508227],[122,142,67,-0.7575686777777076],[122,142,68,-0.757220319301481],[122,142,69,-0.756874342172142],[122,142,70,-0.7565307522469849],[122,142,71,-0.756189555290161],[122,142,72,-0.755850756972238],[122,142,73,-0.7555143628697746],[122,142,74,-0.755180378464866],[122,142,75,-0.7548488091447205],[122,142,76,-0.754519660201223],[122,142,77,-0.7541929368304999],[122,142,78,-0.7538686441324881],[122,142,79,-0.7535467871104983],[122,143,64,-0.7587805624812334],[122,143,65,-0.7584248330542285],[122,143,66,-0.7580714661611997],[122,143,67,-0.757720467939454],[122,143,68,-0.7573718444344951],[122,143,69,-0.7570256015995955],[122,143,70,-0.7566817452953533],[122,143,71,-0.7563402812892526],[122,143,72,-0.7560012152552249],[122,143,73,-0.7556645527732223],[122,143,74,-0.7553302993287637],[122,143,75,-0.7549984603125117],[122,143,76,-0.7546690410198356],[122,143,77,-0.7543420466503765],[122,143,78,-0.7540174823076167],[122,143,79,-0.7536953529984428],[122,144,64,-0.7589332992136113],[122,144,65,-0.7585773079908635],[122,144,66,-0.7582236786113821],[122,144,67,-0.7578724172156678],[122,144,68,-0.7575235298524483],[122,144,69,-0.7571770224782503],[122,144,70,-0.7568329009569552],[122,144,71,-0.756491171059362],[122,144,72,-0.7561518384627466],[122,144,73,-0.7558149087504357],[122,144,74,-0.7554803874113538],[122,144,75,-0.755148279839599],[122,144,76,-0.7548185913340067],[122,144,77,-0.7544913270977154],[122,144,78,-0.7541664922377346],[122,144,79,-0.7538440917645091],[122,145,64,-0.759086191273192],[122,145,65,-0.758729939440252],[122,145,66,-0.7583760487557107],[122,145,67,-0.7580245253632429],[122,145,68,-0.7576753753147804],[122,145,69,-0.7573286045700839],[122,145,70,-0.7569842189963001],[122,145,71,-0.7566422243675228],[122,145,72,-0.7563026263643536],[122,145,73,-0.7559654305734753],[122,145,74,-0.7556306424871988],[122,145,75,-0.7552982675030399],[122,145,76,-0.754968310923282],[122,145,77,-0.7546407779545421],[122,145,78,-0.7543156737073398],[122,145,79,-0.7539930031956604],[122,146,64,-0.7592392384076005],[122,146,65,-0.7588827271525788],[122,146,66,-0.758528576346923],[122,146,67,-0.7581767921374621],[122,146,68,-0.7578273805793125],[122,146,69,-0.7574803476354497],[122,146,70,-0.7571356991762653],[122,146,71,-0.7567934409791298],[122,146,72,-0.7564535787279509],[122,146,73,-0.7561161180127487],[122,146,74,-0.7557810643292022],[122,146,75,-0.755448423078226],[122,146,76,-0.7551181995655335],[122,146,77,-0.7547903990012025],[122,146,78,-0.7544650264992441],[122,146,79,-0.7541420870771669],[122,147,64,-0.7593924403628534],[122,147,65,-0.7590356708764124],[122,147,66,-0.7586812611361331],[122,147,67,-0.7583292172919781],[122,147,68,-0.7579795454022287],[122,147,69,-0.7576322514330557],[122,147,70,-0.757287341258077],[122,147,71,-0.756944820657919],[122,147,72,-0.7566046953197774],[122,147,73,-0.7562669708369907],[122,147,74,-0.7559316527085874],[122,147,75,-0.7555987463388624],[122,147,76,-0.7552682570369404],[122,147,77,-0.7549401900163424],[122,147,78,-0.7546145503945528],[122,147,79,-0.7542913431925861],[122,148,64,-0.759545796883339],[122,148,65,-0.7591887703586863],[122,148,66,-0.7588341028728118],[122,148,67,-0.758481800578793],[122,148,68,-0.7581318695380554],[122,148,69,-0.7577843157199459],[122,148,70,-0.7574391450012884],[122,148,71,-0.7570963631659473],[122,148,72,-0.7567559759043864],[122,148,73,-0.7564179888132437],[122,148,74,-0.7560824073948786],[122,148,75,-0.7557492370569476],[122,148,76,-0.7554184831119689],[122,148,77,-0.7550901507768877],[122,148,78,-0.7547642451726448],[122,148,79,-0.7544407713237418],[122,149,64,-0.7596993077118769],[122,149,65,-0.7593420253447573],[122,149,66,-0.7589871013048474],[122,149,67,-0.7586345417483186],[122,149,68,-0.7582843527397217],[122,149,69,-0.7579365402515591],[122,149,70,-0.7575911101638423],[122,149,71,-0.7572480682636533],[122,149,72,-0.7569074202447055],[122,149,73,-0.7565691717069174],[122,149,74,-0.7562333281559603],[122,149,75,-0.7558998950028342],[122,149,76,-0.7555688775634318],[122,149,77,-0.7552402810581048],[122,149,78,-0.7549141106112321],[122,149,79,-0.754590371250785],[122,150,64,-0.7598529725896985],[122,150,65,-0.7594954355783872],[122,150,66,-0.7591402561785248],[122,150,67,-0.7587874405493568],[122,150,68,-0.758436994758539],[122,150,69,-0.7580889247817101],[122,150,70,-0.7577432365020491],[122,150,71,-0.7573999357098368],[122,150,72,-0.7570590281020166],[122,150,73,-0.7567205192817688],[122,150,74,-0.7563844147580577],[122,150,75,-0.756050719945208],[122,150,76,-0.755719440162469],[122,150,77,-0.7553905806335801],[122,150,78,-0.7550641464863408],[122,150,79,-0.7547401427521735],[122,151,64,-0.7600067912564278],[122,151,65,-0.7596490008017225],[122,151,66,-0.7592935672385066],[122,151,67,-0.7589404967290794],[122,151,68,-0.7585897953441818],[122,151,69,-0.7582414690625691],[122,151,70,-0.757895523770568],[122,151,71,-0.7575519652616389],[122,151,72,-0.757210799235936],[122,151,73,-0.7568720312998822],[122,151,74,-0.7565356669657162],[122,151,75,-0.7562017116510685],[122,151,76,-0.7558701706785267],[122,151,77,-0.7555410492751999],[122,151,78,-0.7552143525722892],[122,151,79,-0.7548900856046517],[122,152,64,-0.7601607634501402],[122,152,65,-0.7598027207553542],[122,152,66,-0.7594470342278925],[122,152,67,-0.7590937100330882],[122,152,68,-0.7587427542447474],[122,152,69,-0.7583941728447219],[122,152,70,-0.7580479717224667],[122,152,71,-0.7577041566746023],[122,152,72,-0.7573627334044744],[122,152,73,-0.7570237075217296],[122,152,74,-0.7566870845418618],[122,152,75,-0.7563528698857891],[122,152,76,-0.7560210688794182],[122,152,77,-0.7556916867532103],[122,152,78,-0.75536472864175],[122,152,79,-0.7550401995833101],[122,153,64,-0.7603148889073348],[122,153,65,-0.7599565951782892],[122,153,66,-0.7596006568881911],[122,153,67,-0.7592470802053866],[122,153,68,-0.758895871206727],[122,153,69,-0.7585470358771411],[122,153,70,-0.7582005801091926],[122,153,71,-0.7578565097026421],[122,153,72,-0.757514830364008],[122,153,73,-0.7571755477061413],[122,153,74,-0.7568386672477722],[122,153,75,-0.7565041944130875],[122,153,76,-0.7561721345312951],[122,153,77,-0.7558424928361889],[122,153,78,-0.7555152744657193],[122,153,79,-0.7551904844615576],[122,154,64,-0.7604691673629584],[122,154,65,-0.7601106238079754],[122,154,66,-0.7597544349593439],[122,154,67,-0.7594006069884034],[122,154,68,-0.7590491459750305],[122,154,69,-0.7587000579072108],[122,154,70,-0.758353348680597],[122,154,71,-0.7580090240980706],[122,154,72,-0.757667089869303],[122,154,73,-0.7573275516103304],[122,154,74,-0.7569904148431008],[122,154,75,-0.7566556849950505],[122,154,76,-0.75632336739867],[122,154,77,-0.7559934672910681],[122,154,78,-0.7556659898135425],[122,154,79,-0.7553409400111445],[122,155,64,-0.7606235985503779],[122,155,65,-0.7602648063802719],[122,155,66,-0.7599083681796966],[122,155,67,-0.7595542901229648],[122,155,68,-0.7592025782929576],[122,155,69,-0.7588532386806977],[122,155,70,-0.7585062771849068],[122,155,71,-0.7581616996115681],[122,155,72,-0.7578195116734865],[122,155,73,-0.7574797189898643],[122,155,74,-0.757142327085848],[122,155,75,-0.7568073413921053],[122,155,76,-0.7564747672443898],[122,155,77,-0.7561446098831069],[122,155,78,-0.7558168744528839],[122,155,79,-0.7554915660021337],[122,156,64,-0.7607781822014382],[122,156,65,-0.7604191426295099],[122,156,66,-0.7600624562860601],[122,156,67,-0.7597081293483539],[122,156,68,-0.7593561679022575],[122,156,69,-0.7590065779418105],[122,156,70,-0.7586593653687841],[122,156,71,-0.7583145359922431],[122,156,72,-0.757972095528107],[122,156,73,-0.7576320495987244],[122,156,74,-0.7572944037324216],[122,156,75,-0.7569591633630786],[122,156,76,-0.7566263338296939],[122,156,77,-0.756295920375951],[122,156,78,-0.7559679281497879],[122,156,79,-0.7556423622029617],[122,157,64,-0.7609329180464444],[122,157,65,-0.7605736322884724],[122,157,66,-0.7602166990136887],[122,157,67,-0.7598621244022908],[122,157,68,-0.7595099145431092],[122,157,69,-0.7591600754331809],[122,157,70,-0.7588126129773063],[122,157,71,-0.7584675329876125],[122,157,72,-0.7581248411831134],[122,157,73,-0.7577845431892859],[122,157,74,-0.7574466445376162],[122,157,75,-0.7571111506651776],[122,157,76,-0.7567780669141952],[122,157,77,-0.7564473985316118],[122,157,78,-0.7561191506686581],[122,157,79,-0.7557933283804168],[122,158,64,-0.7610878058141409],[122,158,65,-0.7607282750883746],[122,158,66,-0.7603710960962623],[122,158,67,-0.7600162750209131],[122,158,68,-0.7596638179541021],[122,158,69,-0.759313730895843],[122,158,70,-0.7589660197539461],[122,158,71,-0.7586206903435806],[122,158,72,-0.7582777483868364],[122,158,73,-0.7579371995122979],[122,158,74,-0.7575990492545929],[122,158,75,-0.757263303053969],[122,158,76,-0.7569299662558593],[122,158,77,-0.7565990441104469],[122,158,78,-0.756270541772237],[122,158,79,-0.7559444642996201],[122,159,64,-0.7612428452317717],[122,159,65,-0.7608830707589236],[122,159,66,-0.7605256472659446],[122,159,67,-0.7601705809388353],[122,159,68,-0.7598178778722946],[122,159,69,-0.7594675440692933],[122,159,70,-0.7591195854406313],[122,159,71,-0.7587740078045007],[122,159,72,-0.7584308168860469],[122,159,73,-0.7580900183169433],[122,159,74,-0.7577516176349399],[122,159,75,-0.7574156202834398],[122,159,76,-0.7570820316110645],[122,159,77,-0.7567508568712198],[122,159,78,-0.7564221012216668],[122,159,79,-0.7560957697240852],[122,160,64,-0.7613980360250514],[122,160,65,-0.7610380190282898],[122,160,66,-0.7606803522533556],[122,160,67,-0.7603250418891203],[122,160,68,-0.7599720940331868],[122,160,69,-0.7596215146914622],[122,160,70,-0.7592733097777166],[122,160,71,-0.7589274851131447],[122,160,72,-0.7585840464259281],[122,160,73,-0.7582429993508101],[122,160,74,-0.7579043494286433],[122,160,75,-0.7575681021059671],[122,160,76,-0.7572342627345732],[122,160,77,-0.7569028365710713],[122,160,78,-0.7565738287764592],[122,160,79,-0.7562472444156887],[122,161,64,-0.7615533779181902],[122,161,65,-0.7611931196231314],[122,161,66,-0.7608352107875955],[122,161,67,-0.7604796576033043],[122,161,68,-0.7601264661707439],[122,161,69,-0.7597756424987383],[122,161,70,-0.759427192504007],[122,161,71,-0.7590811220107283],[122,161,72,-0.7587374367501001],[122,161,73,-0.7583961423599155],[122,161,74,-0.7580572443841112],[122,161,75,-0.7577207482723439],[122,161,76,-0.7573866593795562],[122,161,77,-0.7570549829655429],[122,161,78,-0.756725724194521],[122,161,79,-0.756398888134695],[122,162,64,-0.7617088706338644],[122,162,65,-0.7613483722685652],[122,162,66,-0.7609902225962154],[122,162,67,-0.7606344278113666],[122,162,68,-0.7602809940173676],[122,162,69,-0.7599299272259389],[122,162,70,-0.7595812333567298],[122,162,71,-0.7592349182368816],[122,162,72,-0.7588909876005894],[122,162,73,-0.7585494470886769],[122,162,74,-0.7582103022481449],[122,162,75,-0.7578735585317486],[122,162,76,-0.7575392212975629],[122,162,77,-0.7572072958085487],[122,162,78,-0.7568777872321235],[122,162,79,-0.7565507006397265],[122,163,64,-0.761864513893277],[122,163,65,-0.7615037766882273],[122,163,66,-0.7611453874052785],[122,163,67,-0.7607893522417908],[122,163,68,-0.7604356773039562],[122,163,69,-0.7600843686063709],[122,163,70,-0.7597354320715938],[122,163,71,-0.7593888735297096],[122,163,72,-0.7590446987178907],[122,163,73,-0.7587029132799719],[122,163,74,-0.7583635227659989],[122,163,75,-0.7580265326318062],[122,163,76,-0.757691948238582],[122,163,77,-0.7573597748524346],[122,163,78,-0.7570300176439635],[122,163,79,-0.7567026816878243],[122,164,64,-0.7620203074161375],[122,164,65,-0.7616593326042528],[122,164,66,-0.7613007049393389],[122,164,67,-0.760944430621545],[122,164,68,-0.7605905157598848],[122,164,69,-0.7602389663718102],[122,164,70,-0.7598897883827697],[122,164,71,-0.7595429876257718],[122,164,72,-0.7591985698409458],[122,164,73,-0.7588565406751183],[122,164,74,-0.7585169056813608],[122,164,75,-0.7581796703185676],[122,164,76,-0.7578448399510211],[122,164,77,-0.7575124198479588],[122,164,78,-0.7571824151831431],[122,164,79,-0.7568548310344276],[122,165,64,-0.7621762509206418],[122,165,65,-0.761815039737255],[122,165,66,-0.7614561749214224],[122,165,67,-0.7610996626760603],[122,165,68,-0.7607455091129843],[122,165,69,-0.7603937202524815],[122,165,70,-0.76004430202287],[122,165,71,-0.7596972602600616],[122,165,72,-0.7593526007071233],[122,165,73,-0.7590103290138537],[122,165,74,-0.7586704507363305],[122,165,75,-0.7583329713364889],[122,165,76,-0.7579978961816864],[122,165,77,-0.7576652305442706],[122,165,78,-0.7573349796011486],[122,165,79,-0.7570071484333534],[122,166,64,-0.7623323441235323],[122,166,65,-0.761970897806387],[122,166,66,-0.7616117970730858],[122,166,67,-0.7612550481292922],[122,166,68,-0.7609006570896024],[122,166,69,-0.7605486299771189],[122,166,70,-0.7601989727230087],[122,166,71,-0.7598516911660673],[122,166,72,-0.7595067910522793],[122,166,73,-0.7591642780343958],[122,166,74,-0.7588241576714813],[122,166,75,-0.7584864354284923],[122,166,76,-0.7581511166758428],[122,166,77,-0.7578182066889714],[122,166,78,-0.7574877106479111],[122,166,79,-0.757159633636856],[122,167,64,-0.7624885867400696],[122,167,65,-0.7621269065293117],[122,167,66,-0.7617675711143889],[122,167,67,-0.7614105867036911],[122,167,68,-0.7610559594145746],[122,167,69,-0.7607036952729365],[122,167,70,-0.7603538002127729],[122,167,71,-0.7600062800757423],[122,167,72,-0.7596611406107279],[122,167,73,-0.759318387473413],[122,167,74,-0.7589780262258294],[122,167,75,-0.7586400623359363],[122,167,76,-0.7583045011771845],[122,167,77,-0.7579713480280846],[122,167,78,-0.7576406080717772],[122,167,79,-0.757312286395599],[122,168,64,-0.7626449784840559],[122,168,65,-0.7622830656222263],[122,168,66,-0.7619234967639184],[122,168,67,-0.7615662781202267],[122,168,68,-0.7612114158112478],[122,168,69,-0.7608589158656527],[122,168,70,-0.7605087842202461],[122,168,71,-0.7601610267195301],[122,168,72,-0.7598156491152657],[122,168,73,-0.759472657066049],[122,168,74,-0.7591320561368602],[122,168,75,-0.7587938517986406],[122,168,76,-0.7584580494278595],[122,168,77,-0.7581246543060809],[122,168,78,-0.7577936716195337],[122,168,79,-0.7574651064586785],[122,169,64,-0.7628015190678068],[122,169,65,-0.7624393747998338],[122,169,66,-0.7620795737387581],[122,169,67,-0.7617221220983591],[122,169,68,-0.761367026001452],[122,169,69,-0.7610142914794613],[122,169,70,-0.7606639244719804],[122,169,71,-0.7603159308263342],[122,169,72,-0.7599703162971421],[122,169,73,-0.7596270865458934],[122,169,74,-0.7592862471404963],[122,169,75,-0.758947803554856],[122,169,76,-0.7586117611684405],[122,169,77,-0.7582781252658477],[122,169,78,-0.7579469010363769],[122,169,79,-0.7576180935735936],[122,170,64,-0.7629582082022112],[122,170,65,-0.7625958337754027],[122,170,66,-0.762235801754551],[122,170,67,-0.7618781183560989],[122,170,68,-0.7615227897055599],[122,170,69,-0.7611698218370916],[122,170,70,-0.7608192206930553],[122,170,71,-0.760470992123579],[122,170,72,-0.7601251418861203],[122,170,73,-0.759781675645042],[122,170,74,-0.7594405989711606],[122,170,75,-0.7591019173413256],[122,170,76,-0.7587656361379846],[122,170,77,-0.7584317606487507],[122,170,78,-0.7581002960659742],[122,170,79,-0.7577712474863075],[122,171,64,-0.7631150455967113],[122,171,65,-0.762752442260747],[122,171,66,-0.7623921805254771],[122,171,67,-0.7620342666099869],[122,171,68,-0.7616787066424672],[122,171,69,-0.7613255066597883],[122,171,70,-0.7609746726070589],[122,171,71,-0.7606262103371899],[122,171,72,-0.760280125610457],[122,171,73,-0.7599364240940764],[122,171,74,-0.7595951113617538],[122,171,75,-0.7592561928932635],[122,171,76,-0.7589196740740133],[122,171,77,-0.7585855601946127],[122,171,78,-0.7582538564504436],[122,171,79,-0.757924567941227],[122,172,64,-0.7632720309592821],[122,172,65,-0.7629091999662062],[122,172,66,-0.7625487097642345],[122,172,67,-0.7621905665750739],[122,172,68,-0.7618347765295719],[122,172,69,-0.7614813456672906],[122,172,70,-0.761130279936066],[122,172,71,-0.7607815851915715],[122,172,72,-0.7604352671968807],[122,172,73,-0.7600913316220435],[122,172,74,-0.7597497840436351],[122,172,75,-0.759410629944335],[122,172,76,-0.7590738747124919],[122,172,77,-0.7587395236416923],[122,172,78,-0.7584075819303318],[122,172,79,-0.7580780546811803],[122,173,64,-0.763429163996492],[122,173,65,-0.7630661066007051],[122,173,66,-0.762705389182099],[122,173,67,-0.7623470179649812],[122,173,68,-0.7619909990828351],[122,173,69,-0.7616373385778938],[122,173,70,-0.7612860424007],[122,173,71,-0.7609371164096693],[122,173,72,-0.7605905663706536],[122,173,73,-0.7602463979565162],[122,173,74,-0.7599046167466821],[122,173,75,-0.7595652282267162],[122,173,76,-0.7592282377878895],[122,173,77,-0.7588936507267462],[122,173,78,-0.7585614722446758],[122,173,79,-0.7582317074474796],[122,174,64,-0.7635864444134735],[122,174,65,-0.7632231618717249],[122,174,66,-0.7628622184888951],[122,174,67,-0.7625036204918711],[122,174,68,-0.7621473740167509],[122,174,69,-0.7617934851084184],[122,174,70,-0.7614419597201021],[122,174,71,-0.7610928037129399],[122,174,72,-0.7607460228555412],[122,174,73,-0.7604016228235634],[122,174,74,-0.7600596091992613],[122,174,75,-0.7597199874710658],[122,174,76,-0.7593827630331502],[122,174,77,-0.759047941184998],[122,174,78,-0.7587155271309735],[122,174,79,-0.7583855259798898],[122,175,64,-0.7637438719139479],[122,175,65,-0.7633803654853282],[122,175,66,-0.7630191973930209],[122,175,67,-0.7626603738664715],[122,175,68,-0.7623039010443717],[122,175,69,-0.7619497849742355],[122,175,70,-0.7615980316119568],[122,175,71,-0.7612486468213752],[122,175,72,-0.7609016363738375],[122,175,73,-0.760557005947775],[122,175,74,-0.7602147611282527],[122,175,75,-0.7598749074065481],[122,175,76,-0.7595374501797173],[122,175,77,-0.7592023947501632],[122,175,78,-0.7588697463252069],[122,175,79,-0.7585395100166543],[122,176,64,-0.7639014462001955],[122,176,65,-0.7635377171461284],[122,176,66,-0.7631763256014178],[122,176,67,-0.7628172777980462],[122,176,68,-0.7624605798772786],[122,176,69,-0.7621062378892374],[122,176,70,-0.7617542577924621],[122,176,71,-0.7614046454534729],[122,176,72,-0.7610574066463345],[122,176,73,-0.7607125470522319],[122,176,74,-0.7603700722590203],[122,176,75,-0.7600299877608039],[122,176,76,-0.7596922989575027],[122,176,77,-0.7593570111544196],[122,176,78,-0.7590241295618131],[122,176,79,-0.7586936592944633],[122,177,64,-0.7640591669731167],[122,177,65,-0.7636952165573515],[122,177,66,-0.7633336028196318],[122,177,67,-0.762974331994456],[122,177,68,-0.7626174102256411],[122,177,69,-0.7622628435658977],[122,177,70,-0.7619106379763895],[122,177,71,-0.7615607993262976],[122,177,72,-0.7612133333923838],[122,177,73,-0.7608682458585668],[122,177,74,-0.7605255423154722],[122,177,75,-0.7601852282600116],[122,177,76,-0.7598473090949486],[122,177,77,-0.7595117901284676],[122,177,78,-0.7591786765737452],[122,177,79,-0.7588479735485167],[122,178,64,-0.7642170339322112],[122,178,65,-0.7638528634208149],[122,178,66,-0.7634910287517929],[122,178,67,-0.7631315361621378],[122,178,68,-0.762774391798198],[122,178,69,-0.7624196017152511],[122,178,70,-0.7620671718770645],[122,178,71,-0.7617171081554598],[122,178,72,-0.7613694163298753],[122,178,73,-0.7610241020869436],[122,178,74,-0.7606811710200407],[122,178,75,-0.7603406286288656],[122,178,76,-0.7600024803190067],[122,178,77,-0.7596667314015101],[122,178,78,-0.759333387092451],[122,178,79,-0.7590024525125019],[122,179,64,-0.7643750467755577],[122,179,65,-0.7640106574369073],[122,179,66,-0.7636486031005941],[122,179,67,-0.7632888900060842],[122,179,68,-0.7629315243022357],[122,179,69,-0.7625765120468725],[122,179,70,-0.7622238592063453],[122,179,71,-0.761873571655095],[122,179,72,-0.7615256551752168],[122,179,73,-0.7611801154560364],[122,179,74,-0.7608369580936608],[122,179,75,-0.7604961885905566],[122,179,76,-0.7601578123551169],[122,179,77,-0.7598218347012304],[122,179,78,-0.7594882608478525],[122,179,79,-0.7591570959185726],[122,180,64,-0.7645332051998746],[122,180,65,-0.7641685983046493],[122,180,66,-0.7638063255673531],[122,180,67,-0.7634463932299042],[122,180,68,-0.7630888074436493],[122,180,69,-0.7627335742689381],[122,180,70,-0.7623806996746831],[122,180,71,-0.7620301895379249],[122,180,72,-0.7616820496433943],[122,180,73,-0.7613362856830906],[122,180,74,-0.7609929032558314],[122,180,75,-0.760651907866831],[122,180,76,-0.7603133049272683],[122,180,77,-0.7599770997538546],[122,180,78,-0.7596432975684062],[122,180,79,-0.759311903497411],[122,181,64,-0.76469150890049],[122,181,65,-0.7643266857216633],[122,181,66,-0.7639641958519813],[122,181,67,-0.7636040455357932],[122,181,68,-0.7632462409269132],[122,181,69,-0.7628907880881954],[122,181,70,-0.7625376929910939],[122,181,71,-0.7621869615152275],[122,181,72,-0.761838599447943],[122,181,73,-0.761492612483893],[122,181,74,-0.7611490062245853],[122,181,75,-0.7608077861779625],[122,181,76,-0.7604689577579693],[122,181,77,-0.7601325262841205],[122,181,78,-0.7597984969810738],[122,181,79,-0.7594668749781968],[122,182,64,-0.7648499575713672],[122,182,65,-0.7644849193841989],[122,182,66,-0.7641222136530097],[122,182,67,-0.7637618466245584],[122,182,68,-0.7634038244551052],[122,182,69,-0.7630481532099879],[122,182,70,-0.7626948388631811],[122,182,71,-0.7623438872968614],[122,182,72,-0.7619953043009714],[122,182,73,-0.761649095572796],[122,182,74,-0.7613052667165139],[122,182,75,-0.7609638232427757],[122,182,76,-0.7606247705682723],[122,182,77,-0.7602881140153026],[122,182,78,-0.7599538588113465],[122,182,79,-0.7596220100886317],[122,183,64,-0.7650085509050744],[122,183,65,-0.7646432989871029],[122,183,66,-0.7642803786675586],[122,183,67,-0.7639197961955881],[122,183,68,-0.7635615577298771],[122,183,69,-0.7632056693382252],[122,183,70,-0.7628521369971071],[122,183,71,-0.7625009665912367],[122,183,72,-0.7621521639131312],[122,183,73,-0.7618057346626883],[122,183,74,-0.7614616844467369],[122,183,75,-0.7611200187786161],[122,183,76,-0.7607807430777431],[122,183,77,-0.7604438626691816],[122,183,78,-0.7601093827832142],[122,183,79,-0.75977730855491],[122,184,64,-0.7651672885928453],[122,184,65,-0.7648018242238799],[122,184,66,-0.7644386905913982],[122,184,67,-0.7640778939469135],[122,184,68,-0.763719440451515],[122,184,69,-0.7633633361754439],[122,184,70,-0.7630095870976538],[122,184,71,-0.7626581991053747],[122,184,72,-0.7623091779936786],[122,184,73,-0.7619625294650552],[122,184,74,-0.7616182591289636],[122,184,75,-0.7612763725014116],[122,184,76,-0.7609368750045229],[122,184,77,-0.7605997719661062],[122,184,78,-0.7602650686192276],[122,184,79,-0.7599327701017786],[122,185,64,-0.7653261703245593],[122,185,65,-0.7649604947866719],[122,185,66,-0.7645971491189285],[122,185,67,-0.764236139575187],[122,185,68,-0.7638774723189194],[122,185,69,-0.7635211534227873],[122,185,70,-0.7631671888682015],[122,185,71,-0.7628155845448883],[122,185,72,-0.7624663462504533],[122,185,73,-0.7621194796899581],[122,185,74,-0.761774990475472],[122,185,75,-0.7614328841256511],[122,185,76,-0.7610931660653061],[122,185,77,-0.7607558416249711],[122,185,78,-0.7604209160404766],[122,185,79,-0.7600883944525167],[122,186,64,-0.7654851957887199],[122,186,65,-0.7651193103662377],[122,186,66,-0.764755753943158],[122,186,67,-0.7643945327756624],[122,186,68,-0.7640356530295841],[122,186,69,-0.7636791207799833],[122,186,70,-0.7633249420107082],[122,186,71,-0.76297312261396],[122,186,72,-0.7626236683898573],[122,186,73,-0.7622765850460134],[122,186,74,-0.7619318781970874],[122,186,75,-0.7615895533643637],[122,186,76,-0.7612496159753201],[122,186,77,-0.7609120713631969],[122,186,78,-0.760576924766569],[122,186,79,-0.7602441813289145],[122,187,64,-0.7656443646725164],[122,187,65,-0.7652782706520133],[122,187,66,-0.764914504755765],[122,187,67,-0.764553073242255],[122,187,68,-0.7641939822796564],[122,187,69,-0.763837237945407],[122,187,70,-0.7634828462257711],[122,187,71,-0.763130813015404],[122,187,72,-0.7627811441169167],[122,187,73,-0.7624338452404537],[122,187,74,-0.7620889220032436],[122,187,75,-0.7617463799291795],[122,187,76,-0.7614062244483863],[122,187,77,-0.7610684608967904],[122,187,78,-0.760733094515692],[122,187,79,-0.7604001304513339],[122,188,64,-0.7658036766618026],[122,188,65,-0.7654373753320916],[122,188,66,-0.7650734012470766],[122,188,67,-0.7647117606675213],[122,188,68,-0.7643524597639172],[122,188,69,-0.7639955046160587],[122,188,70,-0.7636409012126048],[122,188,71,-0.7632886554506442],[122,188,72,-0.7629387731352597],[122,188,73,-0.7625912599791065],[122,188,74,-0.7622461216019625],[122,188,75,-0.7619033635303092],[122,188,76,-0.7615629911968987],[122,188,77,-0.7612250099403239],[122,188,78,-0.7608894250045912],[122,188,79,-0.7605562415386883],[122,189,64,-0.7659631314410762],[122,189,65,-0.7655966240932014],[122,189,66,-0.7652324431060481],[122,189,67,-0.7648705947426381],[122,189,68,-0.7645110851757599],[122,189,69,-0.7641539204875434],[122,189,70,-0.7637991066690208],[122,189,71,-0.7634466496196939],[122,189,72,-0.7630965551470964],[122,189,73,-0.7627488289663734],[122,189,74,-0.7624034766998321],[122,189,75,-0.7620605038765219],[122,189,76,-0.7617199159318027],[122,189,77,-0.7613817182069141],[122,189,78,-0.7610459159485486],[122,189,79,-0.7607125143084199],[122,190,64,-0.7661227286935398],[122,190,65,-0.7657560166207689],[122,190,66,-0.7653916300203236],[122,190,67,-0.7650295751574632],[122,190,68,-0.7646698582072513],[122,190,69,-0.7643124852541315],[122,190,70,-0.7639574622914891],[122,190,71,-0.7636047952212169],[122,190,72,-0.7632544898532794],[122,190,73,-0.7629065519052912],[122,190,74,-0.7625609870020681],[122,190,75,-0.7622178006752075],[122,190,76,-0.761876998362657],[122,190,77,-0.7615385854082829],[122,190,78,-0.7612025670614446],[122,190,79,-0.7608689484765627],[122,191,64,-0.7662824681010711],[122,191,65,-0.7659155525988866],[122,191,66,-0.7655509616762067],[122,191,67,-0.7651887016005058],[122,191,68,-0.7648287785491013],[122,191,69,-0.7644711986087294],[122,191,70,-0.7641159677751069],[122,191,71,-0.7637630919524971],[122,191,72,-0.7634125769532742],[122,191,73,-0.7630644284975017],[122,191,74,-0.7627186522124837],[122,191,75,-0.7623752536323456],[122,191,76,-0.7620342381976022],[122,191,77,-0.7616956112547274],[122,191,78,-0.7613593780557276],[122,191,79,-0.7610255437577105],[122,192,64,-0.7664423493442475],[122,192,65,-0.7660752317103393],[122,192,66,-0.7657104377586845],[122,192,67,-0.7653479737589509],[122,192,68,-0.7649878458906881],[122,192,69,-0.7646300602429036],[122,192,70,-0.7642746228136245],[122,192,71,-0.7639215395094633],[122,192,72,-0.7635708161451834],[122,192,73,-0.7632224584432764],[122,192,74,-0.7628764720335144],[122,192,75,-0.7625328624525304],[122,192,76,-0.7621916351433867],[122,192,77,-0.7618527954551446],[122,192,78,-0.7615163486424381],[122,192,79,-0.7611822998650425],[122,193,64,-0.7666023721023159],[122,193,65,-0.7662350536365732],[122,193,66,-0.765870057951398],[122,193,67,-0.7655073913186294],[122,193,68,-0.765147059920028],[122,193,69,-0.7647890698468507],[122,193,70,-0.7644334270994139],[122,193,71,-0.7640801375866587],[122,193,72,-0.763729207125716],[122,193,73,-0.7633806414414857],[122,193,74,-0.7630344461661869],[122,193,75,-0.7626906268389402],[122,193,76,-0.762349188905335],[122,193,77,-0.7620101377170005],[122,193,78,-0.7616734785311785],[122,193,79,-0.7613392165102923],[122,194,64,-0.7667625360532541],[122,194,65,-0.7663950180577571],[122,194,66,-0.7660298219367024],[122,194,67,-0.7656669539640789],[122,194,68,-0.7653064203238357],[122,194,69,-0.7649482271094584],[122,194,70,-0.764592380323531],[122,194,71,-0.7642388858773023],[122,194,72,-0.7638877495902501],[122,194,73,-0.7635389771896609],[122,194,74,-0.7631925743101813],[122,194,75,-0.7628485464933987],[122,194,76,-0.76250689918741],[122,194,77,-0.7621676377463918],[122,194,78,-0.7618307674301743],[122,194,79,-0.7614962934038096],[122,195,64,-0.7669228408737495],[122,195,65,-0.766555124652762],[122,195,66,-0.7661897293956477],[122,195,67,-0.765826661378523],[122,195,68,-0.7654659267875046],[122,195,69,-0.7651075317182849],[122,195,70,-0.7647514821756944],[122,195,71,-0.7643977840732679],[122,195,72,-0.7640464432328097],[122,195,73,-0.7636974653839725],[122,195,74,-0.7633508561638092],[122,195,75,-0.763006621116354],[122,195,76,-0.762664765692191],[122,195,77,-0.7623252952480246],[122,195,78,-0.7619882150462534],[122,195,79,-0.7616535302545385],[122,196,64,-0.7670832862391788],[122,196,65,-0.7667153730991395],[122,196,66,-0.7663497800079556],[122,196,67,-0.7659865132438501],[122,196,68,-0.7656255789950848],[122,196,69,-0.7652669833595372],[122,196,70,-0.7649107323442632],[122,196,71,-0.7645568318650628],[122,196,72,-0.7642052877460453],[122,196,73,-0.763856105719209],[122,196,74,-0.7635092914239928],[122,196,75,-0.7631648504068571],[122,196,76,-0.7628227881208529],[122,196,77,-0.7624831099251926],[122,196,78,-0.7621458210848233],[122,196,79,-0.7618109267699962],[122,197,64,-0.7672438718236684],[122,197,65,-0.7668757630731832],[122,197,66,-0.766509973452083],[122,197,67,-0.766146509240675],[122,197,68,-0.7657853766293444],[122,197,69,-0.7654265817181329],[122,197,70,-0.7650701305162998],[122,197,71,-0.7647160289418891],[122,197,72,-0.7643642828212944],[122,197,73,-0.7640148978888388],[122,197,74,-0.7636678797863262],[122,197,75,-0.7633232340626231],[122,197,76,-0.7629809661732275],[122,197,77,-0.7626410814798392],[122,197,78,-0.7623035852499345],[122,197,79,-0.7619684826563344],[122,198,64,-0.7674045973000647],[122,198,65,-0.7670362942498986],[122,198,66,-0.7666703094051901],[122,198,67,-0.7663066490483079],[122,198,68,-0.7659453193717398],[122,198,69,-0.7655863264776694],[122,198,70,-0.7652296763775384],[122,198,71,-0.7648753749916133],[122,198,72,-0.7645234281485512],[122,198,73,-0.7641738415849788],[122,198,74,-0.7638266209450448],[122,198,75,-0.7634817717800012],[122,198,76,-0.7631392995477726],[122,198,77,-0.7627992096125265],[122,198,78,-0.762461507244248],[122,198,79,-0.7621261976183091],[122,199,64,-0.7675654623399589],[122,199,65,-0.7671969663030278],[122,199,66,-0.7668307875431651],[122,199,67,-0.7664669323447798],[122,199,68,-0.7661054069024398],[122,199,69,-0.765746217320449],[122,199,70,-0.7653893696124101],[122,199,71,-0.7650348697007909],[122,199,72,-0.764682723416491],[122,199,73,-0.7643329364984198],[122,199,74,-0.7639855145930501],[122,199,75,-0.7636404632539988],[122,199,76,-0.7632977879415969],[122,199,77,-0.7629574940224596],[122,199,78,-0.7626195867690612],[122,199,79,-0.7622840713593044],[122,200,64,-0.7677264666136563],[122,200,65,-0.7673577789050189],[122,200,66,-0.7669914075405952],[122,200,67,-0.7666273588068119],[122,200,68,-0.7662656389002953],[122,200,69,-0.7659062539274482],[122,200,70,-0.7655492099040124],[122,200,71,-0.7651945127546363],[122,200,72,-0.7648421683124402],[122,200,73,-0.7644921823185957],[122,200,74,-0.7641445604218788],[122,200,75,-0.7637993081782511],[122,200,76,-0.7634564310504295],[122,200,77,-0.7631159344074567],[122,200,78,-0.7627778235242764],[122,200,79,-0.7624421035813023],[122,201,64,-0.767887609790238],[122,201,65,-0.7675187317270878],[122,201,66,-0.7671521690708266],[122,201,67,-0.7667879281098767],[122,201,68,-0.766426015042901],[122,201,69,-0.7660664359783791],[122,201,70,-0.7657091969341709],[122,201,71,-0.7653543038370837],[122,201,72,-0.7650017625224373],[122,201,73,-0.764651578733645],[122,201,74,-0.7643037581217649],[122,201,75,-0.7639583062450827],[122,201,76,-0.763615228568681],[122,201,77,-0.7632745304640102],[122,201,78,-0.7629362172084628],[122,201,79,-0.7626002939849443],[122,202,64,-0.7680488915375393],[122,202,65,-0.7676798244391969],[122,202,66,-0.7673130718059441],[122,202,67,-0.7669486399281774],[122,202,68,-0.7665865350065739],[122,202,69,-0.7662267631516686],[122,202,70,-0.7658693303834178],[122,202,71,-0.7655142426307658],[122,202,72,-0.765161505731212],[122,202,73,-0.7648111254303891],[122,202,74,-0.7644631073816174],[122,202,75,-0.764117457145486],[122,202,76,-0.7637741801894227],[122,202,77,-0.7634332818872649],[122,202,78,-0.763094767518835],[122,202,79,-0.7627586422695096],[122,203,64,-0.7682103115221296],[122,203,65,-0.7678410567100336],[122,203,66,-0.7674741154167497],[122,203,67,-0.7671094939346259],[122,203,68,-0.7667471984663319],[122,203,69,-0.7663872351244362],[122,203,70,-0.7660296099309698],[122,203,71,-0.7656743288169932],[122,203,72,-0.7653213976221631],[122,203,73,-0.7649708220943117],[122,203,74,-0.7646226078889998],[122,203,75,-0.7642767605690999],[122,203,76,-0.763933285604364],[122,203,77,-0.7635921883709973],[122,203,78,-0.7632534741512309],[122,203,79,-0.7629171481328937],[122,204,64,-0.7683718694093724],[122,204,65,-0.7680024282070719],[122,204,66,-0.7676352995728237],[122,204,67,-0.767270489800905],[122,204,68,-0.7669080050959557],[122,204,69,-0.7665478515725564],[122,204,70,-0.766190035254791],[122,204,71,-0.7658345620758149],[122,204,72,-0.7654814378774208],[122,204,73,-0.7651306684096191],[122,204,74,-0.7647822593301912],[122,204,75,-0.7644362162042708],[122,204,76,-0.7640925445039154],[122,204,77,-0.7637512496076762],[122,204,78,-0.763412336800174],[122,204,79,-0.7630758112716695],[122,205,64,-0.7685335648633957],[122,205,65,-0.7681639385965422],[122,205,66,-0.7677966239424946],[122,205,67,-0.767431627197437],[122,205,68,-0.7670689545679579],[122,205,69,-0.7667086121706276],[122,205,70,-0.7663506060315616],[122,205,71,-0.7659949420859883],[122,205,72,-0.7656416261778156],[122,205,73,-0.7652906640592111],[122,205,74,-0.764942061390155],[122,205,75,-0.7645958237380232],[122,205,76,-0.7642519565771563],[122,205,77,-0.7639104652884325],[122,205,78,-0.763571355158842],[122,205,79,-0.7632346313810574],[122,206,64,-0.7686953975471171],[122,206,65,-0.768325587543456],[122,206,66,-0.7679580881928638],[122,206,67,-0.7675929057934094],[122,206,68,-0.7672300465536077],[122,206,69,-0.7668695165919968],[122,206,70,-0.7665113219367021],[122,206,71,-0.7661554685250037],[122,206,72,-0.7658019622029033],[122,206,73,-0.7654508087247041],[122,206,74,-0.765102013752565],[122,206,75,-0.7647555828560826],[122,206,76,-0.764411521511861],[122,206,77,-0.7640698351030843],[122,206,78,-0.7637305289190921],[122,206,79,-0.7633936081549492],[122,207,64,-0.7688573671222121],[122,207,65,-0.7684873747115749],[122,207,66,-0.7681196919897748],[122,207,67,-0.7677543252567437],[122,207,68,-0.7673912807229004],[122,207,69,-0.7670305645087293],[122,207,70,-0.7666721826443437],[122,207,71,-0.7663161410690537],[122,207,72,-0.7659624456309335],[122,207,73,-0.7656111020864014],[122,207,74,-0.7652621160997733],[122,207,75,-0.7649154932428458],[122,207,76,-0.7645712389944662],[122,207,77,-0.7642293587401046],[122,207,78,-0.763889857771429],[122,207,79,-0.7635527412858771],[122,208,64,-0.7690194732491766],[122,208,65,-0.7686492997634724],[122,208,66,-0.7682814349978753],[122,208,67,-0.7679158852541572],[122,208,68,-0.7675526567446194],[122,208,69,-0.7671917555916701],[122,208,70,-0.7668331878273889],[122,208,71,-0.7664769593930946],[122,208,72,-0.7661230761389124],[122,208,73,-0.7657715438233541],[122,208,74,-0.7654223681128722],[122,208,75,-0.7650755545814426],[122,208,76,-0.7647311087101347],[122,208,77,-0.7643890358866842],[122,208,78,-0.7640493414050681],[122,208,79,-0.7637120304650761],[122,209,64,-0.7691817155873055],[122,209,65,-0.7688113623605126],[122,209,66,-0.7684433168805946],[122,209,67,-0.7680775854511414],[122,209,68,-0.7677141742863136],[122,209,69,-0.767353089510422],[122,209,70,-0.7669943371574905],[122,209,71,-0.7666379231708249],[122,209,72,-0.7662838534025802],[122,209,73,-0.7659321336133404],[122,209,74,-0.7655827694716735],[122,209,75,-0.7652357665537136],[122,209,76,-0.7648911303427322],[122,209,77,-0.7645488662287099],[122,209,78,-0.7642089795079122],[122,209,79,-0.7638714753824614],[122,210,64,-0.7693440937946707],[122,210,65,-0.7689735621628291],[122,210,66,-0.768605337300124],[122,210,67,-0.7682394255119405],[122,210,68,-0.7678758330142773],[122,210,69,-0.767514565933325],[122,210,70,-0.7671556303050303],[122,210,71,-0.7667990320746645],[122,210,72,-0.7664447770963903],[122,210,73,-0.7660928711328431],[122,210,74,-0.7657433198546854],[122,210,75,-0.7653961288401889],[122,210,76,-0.765051303574806],[122,210,77,-0.764708849450742],[122,210,78,-0.7643687717665311],[122,210,79,-0.7640310757266073],[122,211,64,-0.7695066075281837],[122,211,65,-0.7691358988293859],[122,211,66,-0.7687674959174766],[122,211,67,-0.7684014050996136],[122,211,68,-0.768037632593611],[122,211,69,-0.7676761845275175],[122,211,70,-0.7673170669391804],[122,211,71,-0.7669602857758149],[122,211,72,-0.7666058468935701],[122,211,73,-0.766253756057112],[122,211,74,-0.7659040189391756],[122,211,75,-0.7655566411201498],[122,211,76,-0.7652116280876471],[122,211,77,-0.7648689852360772],[122,211,78,-0.7645287178662223],[122,211,79,-0.7641908311848088],[122,212,64,-0.7696692564435638],[122,212,65,-0.7692983720179477],[122,212,66,-0.7689297923924581],[122,212,67,-0.7685635238760034],[122,212,68,-0.7681995726881907],[122,212,69,-0.767837944958905],[122,212,70,-0.7674786467278724],[122,212,71,-0.7671216839442296],[122,212,72,-0.7667670624660917],[122,212,73,-0.7664147880601325],[122,212,74,-0.7660648664011397],[122,212,75,-0.7657173030715976],[122,212,76,-0.765372103561259],[122,212,77,-0.7650292732667167],[122,212,78,-0.764688817490981],[122,212,79,-0.7643507414430504],[122,213,64,-0.7698320401953638],[122,213,65,-0.7694609813851033],[122,213,66,-0.7690922263836902],[122,213,67,-0.7687257815017609],[122,213,68,-0.7683616529606931],[122,213,69,-0.7679998468921859],[122,213,70,-0.767640369337822],[122,213,71,-0.7672832262486388],[122,213,72,-0.7669284234846946],[122,213,73,-0.7665759668146506],[122,213,74,-0.7662258619153257],[122,213,75,-0.7658781143712791],[122,213,76,-0.7655327296743821],[122,213,77,-0.7651897132233912],[122,213,78,-0.764849070323524],[122,213,79,-0.7645108061860307],[122,214,64,-0.7699949584369388],[122,214,65,-0.7696237265862365],[122,214,66,-0.7692547975485812],[122,214,67,-0.768888177636315],[122,214,68,-0.7685238730725645],[122,214,69,-0.7681618899908197],[122,214,70,-0.7678022344344988],[122,214,71,-0.7674449123565174],[122,214,72,-0.767089929618856],[122,214,73,-0.766737291992142],[122,214,74,-0.7663870051552036],[122,214,75,-0.7660390746946543],[122,214,76,-0.7656935061044634],[122,214,77,-0.7653503047855299],[122,214,78,-0.7650094760452586],[122,214,79,-0.7646710250971317],[122,215,64,-0.7701580108205079],[122,215,65,-0.7697866072755859],[122,215,66,-0.7694175055433864],[122,215,67,-0.7690507119379342],[122,215,68,-0.7686862326840819],[122,215,69,-0.7683240739170891],[122,215,70,-0.767964241682187],[122,215,71,-0.7676067419341479],[122,215,72,-0.7672515805368529],[122,215,73,-0.7668987632628734],[122,215,74,-0.7665482957930269],[122,215,75,-0.7662001837159591],[122,215,76,-0.7658544325277172],[122,215,77,-0.765511047631322],[122,215,78,-0.7651700343363449],[122,215,79,-0.76483139785848],[122,216,64,-0.7703211969971331],[122,216,65,-0.7699496231062255],[122,216,66,-0.7695803500231875],[122,216,67,-0.7692133840637043],[122,216,68,-0.7688487314543325],[122,216,69,-0.7684863983320787],[122,216,70,-0.7681263907439648],[122,216,71,-0.7677687146465983],[122,216,72,-0.7674133759057391],[122,216,73,-0.7670603802958815],[122,216,74,-0.7667097334998103],[122,216,75,-0.7663614411081835],[122,216,76,-0.7660155086191043],[122,216,77,-0.7656719414376952],[122,216,78,-0.7653307448756739],[122,216,79,-0.7649919241509257],[122,217,64,-0.7704845166166974],[122,217,65,-0.7701127737300413],[122,217,66,-0.7697433306418706],[122,217,67,-0.7693761936695083],[122,217,68,-0.7690113690411916],[122,217,69,-0.7686488628956526],[122,217,70,-0.7682886812816822],[122,217,71,-0.7679308301577004],[122,217,72,-0.7675753153913245],[122,217,73,-0.7672221427589505],[122,217,74,-0.7668713179453092],[122,217,75,-0.7665228465430493],[122,217,76,-0.7661767340523098],[122,217,77,-0.7658329858802939],[122,217,78,-0.7654916073408449],[122,217,79,-0.7651526036540194],[122,218,64,-0.7706479693279661],[122,218,65,-0.7702760587977939],[122,218,66,-0.7699064470521879],[122,218,67,-0.769539140410086],[122,218,68,-0.7691741451013842],[122,218,69,-0.768811467266517],[122,218,70,-0.7684511129560224],[122,218,71,-0.7680930881301113],[122,218,72,-0.7677373986582366],[122,218,73,-0.7673840503186745],[122,218,74,-0.7670330487980801],[122,218,75,-0.7666843996910724],[122,218,76,-0.7663381084998049],[122,218,77,-0.7659941806335406],[122,218,78,-0.7656526214082283],[122,218,79,-0.7653134360460755],[122,219,64,-0.7708115547785663],[122,219,65,-0.7704394779590973],[122,219,66,-0.7700696989057366],[122,219,67,-0.7697022239390144],[122,219,68,-0.7693370592904633],[122,219,69,-0.7689742111021979],[122,219,70,-0.7686136854264809],[122,219,71,-0.7682554882252924],[122,219,72,-0.7678996253698991],[122,219,73,-0.7675461026404353],[122,219,74,-0.7671949257254602],[122,219,75,-0.7668461002215409],[122,219,76,-0.766499631632825],[122,219,77,-0.7661555253706146],[122,219,78,-0.7658137867529433],[122,219,79,-0.7654744210041491],[122,220,64,-0.7709752726149648],[122,220,65,-0.7706030308623961],[122,220,66,-0.7702330858529364],[122,220,67,-0.7698654439086852],[122,220,68,-0.7695001112627886],[122,220,69,-0.7691370940590196],[122,220,70,-0.7687763983513434],[122,220,71,-0.768418030103487],[122,220,72,-0.768061995188509],[122,220,73,-0.767708299388381],[122,220,74,-0.7673569483935443],[122,220,75,-0.767007947802493],[122,220,76,-0.766661303121348],[122,220,77,-0.7663170197634295],[122,220,78,-0.7659751030488356],[122,220,79,-0.7656355582040144],[122,221,64,-0.7711391224825294],[122,221,65,-0.7707667171550285],[122,221,66,-0.770396607543092],[122,221,67,-0.7700287999703661],[122,221,68,-0.7696633006715883],[122,221,69,-0.769300115792167],[122,221,70,-0.7689392513877473],[122,221,71,-0.7685807134237822],[122,221,72,-0.7682245077751],[122,221,73,-0.7678706402254878],[122,221,74,-0.7675191164672474],[122,221,75,-0.7671699421007792],[122,221,76,-0.766823122634156],[122,221,77,-0.7664786634826958],[122,221,78,-0.7661365699685402],[122,221,79,-0.765796847320227],[122,222,64,-0.7713031040254986],[122,222,65,-0.7709305364831944],[122,222,66,-0.7705602636243619],[122,222,67,-0.770192291774171],[122,222,68,-0.7698266271689276],[122,222,69,-0.7694632759556532],[122,222,70,-0.7691022441916516],[122,222,71,-0.7687435378440782],[122,222,72,-0.7683871627895101],[122,222,73,-0.7680331248135281],[122,222,74,-0.7676814296102732],[122,222,75,-0.7673320827820309],[122,222,76,-0.7669850898388045],[122,222,77,-0.766640456197889],[122,222,78,-0.7662981871834493],[122,222,79,-0.7659582880260924],[122,223,64,-0.7714672168870063],[122,223,65,-0.7710944884919813],[122,223,66,-0.7707240537437833],[122,223,67,-0.7703559189690834],[122,223,68,-0.7699900904057336],[122,223,69,-0.7696265742023461],[122,223,70,-0.7692653764178603],[122,223,71,-0.7689065030211129],[122,223,72,-0.7685499598904073],[122,223,73,-0.7681957528130967],[122,223,74,-0.7678438874851394],[122,223,75,-0.767494369510685],[122,223,76,-0.7671472044016465],[122,223,77,-0.7668023975772749],[122,223,78,-0.7664599543637374],[122,223,79,-0.7661198799936899],[122,224,64,-0.7716314607090505],[122,224,65,-0.7712585728253316],[122,224,66,-0.7708879775472406],[122,224,67,-0.7705196812029267],[122,224,68,-0.7701536900317648],[122,224,69,-0.7697900101839357],[122,224,70,-0.7694286477199923],[122,224,71,-0.7690696086104302],[122,224,72,-0.7687128987352576],[122,224,73,-0.7683585238835777],[122,224,74,-0.7680064897531456],[122,224,75,-0.767656801949953],[122,224,76,-0.7673094659878015],[122,224,77,-0.7669644872878775],[122,224,78,-0.7666218711783295],[122,224,79,-0.7662816228938425],[122,225,64,-0.7717958351325553],[122,225,65,-0.7714227891261063],[122,225,66,-0.7710520346795277],[122,225,67,-0.7706835781224244],[122,225,68,-0.770317425695672],[122,225,69,-0.7699535835509967],[122,225,70,-0.7695920577505427],[122,225,71,-0.7692328542664426],[122,225,72,-0.7688759789803872],[122,225,73,-0.7685214376832082],[122,225,74,-0.7681692360744357],[122,225,75,-0.7678193797618823],[122,225,76,-0.7674718742612174],[122,225,77,-0.7671267249955414],[122,225,78,-0.7667839372949639],[122,225,79,-0.7664435163961776],[122,226,64,-0.7719603397973496],[122,226,65,-0.7715871370360616],[122,226,66,-0.7712162247843263],[122,226,67,-0.7708476093731804],[122,226,68,-0.7704812970449775],[122,226,69,-0.7701172939529668],[122,226,70,-0.7697556061608615],[122,226,71,-0.769396239642409],[122,226,72,-0.7690392002809606],[122,226,73,-0.7686844938690552],[122,226,74,-0.768332126107976],[122,226,75,-0.7679821026073351],[122,226,76,-0.7676344288846486],[122,226,77,-0.76728911036491],[122,226,78,-0.7669461523801692],[122,226,79,-0.7666055601691065],[122,227,64,-0.7721249743421443],[122,227,65,-0.7717516161958288],[122,227,66,-0.7713805475041836],[122,227,67,-0.7710117745996554],[122,227,68,-0.7706453037260522],[122,227,69,-0.7702811410381243],[122,227,70,-0.7699192926011312],[122,227,71,-0.7695597643904127],[122,227,72,-0.7692025622909591],[122,227,73,-0.7688476920969942],[122,227,74,-0.7684951595115328],[122,227,75,-0.7681449701459657],[122,227,76,-0.7677971295196339],[122,227,77,-0.767451643059403],[122,227,78,-0.7671085160992429],[122,227,79,-0.7667677538798003],[122,228,64,-0.7722897384045955],[122,228,65,-0.7719162262449746],[122,228,66,-0.7715450024805749],[122,228,67,-0.7711760734452295],[122,228,68,-0.7708094453841787],[122,228,69,-0.7704451244536505],[122,228,70,-0.7700831167204288],[122,228,71,-0.7697234281614237],[122,228,72,-0.7693660646632421],[122,228,73,-0.7690110320217709],[122,228,74,-0.7686583359417352],[122,228,75,-0.7683079820362827],[122,228,76,-0.7679599758265583],[122,228,77,-0.767614322741279],[122,228,78,-0.7672710281163132],[122,228,79,-0.7669300971942541],[122,229,64,-0.7724546316212723],[122,229,65,-0.772080966821971],[122,229,66,-0.7717095893538719],[122,229,67,-0.7713405055521715],[122,229,68,-0.7709737216635191],[122,229,69,-0.7706092438455986],[122,229,70,-0.7702470781666951],[122,229,71,-0.7698872306052671],[122,229,72,-0.7695297070495158],[122,229,73,-0.7691745132969701],[122,229,74,-0.7688216550540429],[122,229,75,-0.7684711379356176],[122,229,76,-0.7681229674646219],[122,229,77,-0.7677771490716032],[122,229,78,-0.7674336880943073],[122,229,79,-0.7670925897772535],[122,230,64,-0.7726196536276821],[122,230,65,-0.7722458375642196],[122,230,66,-0.7718743077633675],[122,230,67,-0.7715050705616625],[122,230,68,-0.7711381322071403],[122,230,69,-0.7707734988589177],[122,230,70,-0.7704111765867587],[122,230,71,-0.7700511713706477],[122,230,72,-0.7696934891003588],[122,230,73,-0.7693381355750402],[122,230,74,-0.7689851165027715],[122,230,75,-0.7686344375001499],[122,230,76,-0.7682861040918649],[122,230,77,-0.7679401217102729],[122,230,78,-0.7675964956949768],[122,230,79,-0.7672552312924008],[122,231,64,-0.7727848040582397],[122,231,65,-0.772410838108021],[122,231,66,-0.772039157347245],[122,231,67,-0.7716697681137658],[122,231,68,-0.7713026766569826],[122,231,69,-0.770937889137422],[122,231,70,-0.770575411626305],[122,231,71,-0.7702152501051195],[122,231,72,-0.7698574104651899],[122,231,73,-0.7695018985072618],[122,231,74,-0.76914871994106],[122,231,75,-0.7687978803848747],[122,231,76,-0.7684493853651351],[122,231,77,-0.7681032403159854],[122,231,78,-0.7677594505788651],[122,231,79,-0.7674180214020824],[122,232,64,-0.7729500825463285],[122,232,65,-0.7725759680886358],[122,232,66,-0.7722041377426396],[122,232,67,-0.7718345978474881],[122,232,68,-0.7714673546539212],[122,232,69,-0.7711024143238531],[122,232,70,-0.7707397829299385],[122,232,71,-0.7703794664551464],[122,232,72,-0.7700214707923297],[122,232,73,-0.76966580174381],[122,232,74,-0.7693124650209351],[122,232,75,-0.7689614662436659],[122,232,76,-0.7686128109401505],[122,232,77,-0.7682665045463006],[122,232,78,-0.7679225524053703],[122,232,79,-0.7675809597675315],[122,233,64,-0.773115488724279],[122,233,65,-0.7727412271402633],[122,233,66,-0.7723692485856166],[122,233,67,-0.7719995594007582],[122,233,68,-0.7716321658377455],[122,233,69,-0.7712670740598573],[122,233,70,-0.77090429014116],[122,233,71,-0.7705438200660814],[122,233,72,-0.7701856697289804],[122,233,73,-0.7698298449337322],[122,233,74,-0.7694763513932863],[122,233,75,-0.7691251947292531],[122,233,76,-0.768776380471478],[122,233,77,-0.7684299140576185],[122,233,78,-0.7680858008327229],[122,233,79,-0.7677440460488061],[122,234,64,-0.7732810222233473],[122,234,65,-0.7729066148960198],[122,234,66,-0.7725344895111498],[122,234,67,-0.7721646524104042],[122,234,68,-0.7717971098471357],[122,234,69,-0.7714318679859643],[122,234,70,-0.7710689329023456],[122,234,71,-0.7707083105821435],[122,234,72,-0.7703500069212014],[122,234,73,-0.7699940277249258],[122,234,74,-0.769640378707846],[122,234,75,-0.7692890654932001],[122,234,76,-0.7689400936125097],[122,234,77,-0.768593468505157],[122,234,78,-0.7682491955179633],[122,234,79,-0.7679072799047656],[122,235,64,-0.7734466826737765],[122,235,65,-0.773072130988],[122,235,66,-0.7726998601531829],[122,235,67,-0.7723298765122167],[122,235,68,-0.7719621863197257],[122,235,69,-0.7715967957416487],[122,235,70,-0.7712337108548079],[122,235,71,-0.770872937646481],[122,235,72,-0.770514482013973],[122,235,73,-0.7701583497642003],[122,235,74,-0.7698045466132502],[122,235,75,-0.7694530781859665],[122,235,76,-0.7691039500155262],[122,235,77,-0.768757167543014],[122,235,78,-0.7684127361170041],[122,235,79,-0.7680706609931345],[122,236,64,-0.7736124697047656],[122,236,65,-0.7732377750472463],[122,236,66,-0.772865360144599],[122,236,67,-0.7724952313409164],[122,236,68,-0.7721273948920713],[122,236,69,-0.7717618569652989],[122,236,70,-0.7713986236387649],[122,236,71,-0.7710377009011387],[122,236,72,-0.7706790946511644],[122,236,73,-0.7703228106972464],[122,236,74,-0.7699688547570078],[122,236,75,-0.7696172324568772],[122,236,76,-0.7692679493316643],[122,236,77,-0.7689210108241363],[122,236,78,-0.7685764222845985],[122,236,79,-0.7682341889704694],[122,237,64,-0.7737783829444944],[122,237,65,-0.7734035467037731],[122,237,66,-0.7730309891172442],[122,237,67,-0.7726607165301789],[122,237,68,-0.7722927351996752],[122,237,69,-0.7719270512942417],[122,237,70,-0.7715636708933649],[122,237,71,-0.7712025999870833],[122,237,72,-0.7708438444755584],[122,237,73,-0.7704874101686601],[122,237,74,-0.7701333027855252],[122,237,75,-0.7697815279541455],[122,237,76,-0.7694320912109422],[122,237,77,-0.7690849980003438],[122,237,78,-0.768740253674365],[122,237,79,-0.7683978634921844],[122,238,64,-0.7739444220200923],[122,238,65,-0.7735694455865356],[122,238,66,-0.7731967467018976],[122,238,67,-0.7728263317126041],[122,238,68,-0.7724582068769555],[122,238,69,-0.7720923783647108],[122,238,70,-0.7717288522566548],[122,238,71,-0.7713676345441723],[122,238,72,-0.77100873112882],[122,238,73,-0.7706521478219107],[122,238,74,-0.7702978903440739],[122,238,75,-0.7699459643248423],[122,238,76,-0.7695963753022275],[122,238,77,-0.7692491287222972],[122,238,78,-0.7689042299387556],[122,238,79,-0.7685616842125195],[122,239,64,-0.7741105865576996],[122,239,65,-0.773735471323492],[122,239,66,-0.7733626325283323],[122,239,67,-0.7729920765197775],[122,239,68,-0.7726238095573079],[122,239,69,-0.7722578378119092],[122,239,70,-0.7718941673656422],[122,239,71,-0.7715328042112154],[122,239,72,-0.771173754251558],[122,239,73,-0.7708170232994043],[122,239,74,-0.7704626170768539],[122,239,75,-0.7701105412149589],[122,239,76,-0.7697608012532996],[122,239,77,-0.7694134026395618],[122,239,78,-0.7690683507291178],[122,239,79,-0.768725650784602],[122,240,64,-0.7742768761824462],[122,240,65,-0.773901623541581],[122,240,66,-0.7735286462252935],[122,240,67,-0.7731579505822487],[122,240,68,-0.772789542873083],[122,240,69,-0.7724234292699866],[122,240,70,-0.7720596158562731],[122,240,71,-0.7716981086259523],[122,240,72,-0.7713389134833036],[122,240,73,-0.7709820362424603],[122,240,74,-0.7706274826269705],[122,240,75,-0.7702752582693836],[122,240,76,-0.7699253687108272],[122,240,77,-0.769577819400584],[122,240,78,-0.7692326156956728],[122,240,79,-0.768889762860425],[122,241,64,-0.7744432905184299],[122,241,65,-0.7740679018667006],[122,241,66,-0.7736947874204768],[122,241,67,-0.7733239535295086],[122,241,68,-0.772955406455565],[122,241,69,-0.7725891523720179],[122,241,70,-0.7722251973634102],[122,241,71,-0.7718635474250313],[122,241,72,-0.7715042084624877],[122,241,73,-0.77114718629129],[122,241,74,-0.7707924866364122],[122,241,75,-0.7704401151318799],[122,241,76,-0.7700900773203462],[122,241,77,-0.7697423786526688],[122,241,78,-0.7693970244874926],[122,241,79,-0.7690540200908244],[122,242,64,-0.7746098291887771],[122,242,65,-0.7742343059237691],[122,242,66,-0.7738610557405904],[122,242,67,-0.7734900849900521],[122,242,68,-0.7731213999350335],[122,242,69,-0.7727550067500641],[122,242,70,-0.7723909115208948],[122,242,71,-0.7720291202440703],[122,242,72,-0.7716696388265031],[122,242,73,-0.771312473085058],[122,242,74,-0.7709576287461135],[122,242,75,-0.7706051114451491],[122,242,76,-0.7702549267263217],[122,242,77,-0.7699070800420431],[122,242,78,-0.7695615767525625],[122,242,79,-0.7692184221255418],[122,243,64,-0.7747764918156128],[122,243,65,-0.7744008353366946],[122,243,66,-0.7740274508113227],[122,243,67,-0.7736563445913466],[122,243,68,-0.7732875229407314],[122,243,69,-0.7729209920351428],[122,243,70,-0.7725567579615149],[122,243,71,-0.7721948267176266],[122,243,72,-0.7718352042116731],[122,243,73,-0.7714778962618515],[122,243,74,-0.7711229085959226],[122,243,75,-0.7707702468507979],[122,243,76,-0.7704199165721164],[122,243,77,-0.7700719232138231],[122,243,78,-0.7697262721377496],[122,243,79,-0.7693829686131919],[122,244,64,-0.7749432780200847],[122,244,65,-0.7745674897283991],[122,244,66,-0.7741939722573683],[122,244,67,-0.7738227319598562],[122,244,68,-0.7734537751008911],[122,244,69,-0.7730871078572504],[122,244,70,-0.7727227363170305],[122,244,71,-0.7723606664792205],[122,244,72,-0.7720009042532758],[122,244,73,-0.7716434554587042],[122,244,74,-0.771288325824626],[122,244,75,-0.7709355209893634],[122,244,76,-0.7705850465000157],[122,244,77,-0.7702369078120389],[122,244,78,-0.7698911102888268],[122,244,79,-0.7695476592012878],[122,245,64,-0.7751101874223316],[122,245,65,-0.7747342687207874],[122,245,66,-0.7743606197023957],[122,245,67,-0.7739892467210105],[122,245,68,-0.7736201560427008],[122,245,69,-0.7732533538453329],[122,245,70,-0.7728888462181414],[122,245,71,-0.7725266391613036],[122,245,72,-0.7721667385855129],[122,245,73,-0.7718091503115645],[122,245,74,-0.7714538800699173],[122,245,75,-0.7711009335002811],[122,245,76,-0.7707503161511946],[122,245,77,-0.7704020334796032],[122,245,78,-0.7700560908504412],[122,245,79,-0.7697124935362087],[122,246,64,-0.7752772196415456],[122,246,65,-0.7749011719348089],[122,246,66,-0.7745273927691089],[122,246,67,-0.774155888499267],[122,246,68,-0.7737866653923686],[122,246,69,-0.7734197296273462],[122,246,70,-0.7730550872945496],[122,246,71,-0.7726927443953219],[122,246,72,-0.7723327068415713],[122,246,73,-0.7719749804553588],[122,246,74,-0.7716195709684589],[122,246,75,-0.7712664840219479],[122,246,76,-0.7709157251657816],[122,246,77,-0.7705672998583734],[122,246,78,-0.7702212134661768],[122,246,79,-0.7698774712632626],[122,247,64,-0.7754443742959503],[122,247,65,-0.7750681989904357],[122,247,66,-0.7746942910792264],[122,247,67,-0.7743226569180882],[122,247,68,-0.7739533027750992],[122,247,69,-0.7735862348302348],[122,247,70,-0.7732214591749375],[122,247,71,-0.7728589818116927],[122,247,72,-0.7724988086536014],[122,247,73,-0.7721409455239678],[122,247,74,-0.77178539815586],[122,247,75,-0.7714321721916987],[122,247,76,-0.7710812731828349],[122,247,77,-0.7707327065891287],[122,247,78,-0.7703864777785315],[122,247,79,-0.7700425920266633],[122,248,64,-0.7756116510027782],[122,248,65,-0.77523534950664],[122,248,66,-0.7748613142534587],[122,248,67,-0.77448955159992],[122,248,68,-0.7741200678150719],[122,248,69,-0.7737528690799094],[122,248,70,-0.7733879614869446],[122,248,71,-0.7730253510397824],[122,248,72,-0.7726650436526945],[122,248,73,-0.7723070451502051],[122,248,74,-0.7719513612666541],[122,248,75,-0.7715979976457844],[122,248,76,-0.7712469598403209],[122,248,77,-0.7708982533115485],[122,248,78,-0.7705518834288948],[122,248,79,-0.7702078554695082],[122,249,64,-0.775779049378333],[122,249,65,-0.775402623101457],[122,249,66,-0.7750284619115697],[122,249,67,-0.7746565721662535],[122,249,68,-0.7742869601355029],[122,249,69,-0.7739196320013089],[122,249,70,-0.7735545938572306],[122,249,71,-0.7731918517079694],[122,249,72,-0.7728314114689446],[122,249,73,-0.7724732789658789],[122,249,74,-0.7721174599343611],[122,249,75,-0.7717639600194346],[122,249,76,-0.7714127847751762],[122,249,77,-0.7710639396642737],[122,249,78,-0.7707174300576101],[122,249,79,-0.7703732612338408],[122,250,64,-0.7759465690379677],[122,250,65,-0.7755700193919619],[122,250,66,-0.7751957336723553],[122,250,67,-0.7748237182376031],[122,250,68,-0.7744539793586228],[122,250,69,-0.7740865232183785],[122,250,70,-0.7737213559114525],[122,250,71,-0.7733584834436209],[122,250,72,-0.7729979117314272],[122,250,73,-0.77263964660177],[122,250,74,-0.7722836937914651],[122,250,75,-0.7719300589468345],[122,250,76,-0.7715787476232845],[122,250,77,-0.7712297652848851],[122,250,78,-0.7708831173039523],[122,250,79,-0.7705388089606279],[122,251,64,-0.7761142095960616],[122,251,65,-0.7757375379942482],[122,251,66,-0.7753631291536207],[122,251,67,-0.7749909894334839],[122,251,68,-0.7746211251056545],[122,251,69,-0.7742535423540465],[122,251,70,-0.773888247274243],[122,251,71,-0.7735252458730706],[122,251,72,-0.7731645440681751],[122,251,73,-0.7728061476876089],[122,251,74,-0.772450062469392],[122,251,75,-0.7720962940611029],[122,251,76,-0.7717448480194556],[122,251,77,-0.7713957298098802],[122,251,78,-0.7710489448061054],[122,251,79,-0.7707044982897368],[122,252,64,-0.7762819706660836],[122,252,65,-0.7759051785234895],[122,252,66,-0.7755306479722429],[122,252,67,-0.775158385372474],[122,252,68,-0.7747883969968754],[122,252,69,-0.774420689030288],[122,252,70,-0.7740552675692716],[122,252,71,-0.7736921386216815],[122,252,72,-0.773331308106243],[122,252,73,-0.7729727818521387],[122,252,74,-0.7726165655985715],[122,252,75,-0.7722626649943539],[122,252,76,-0.7719110855974862],[122,252,77,-0.7715618328747366],[122,252,78,-0.7712149122012242],[122,252,79,-0.7708703288599983],[122,253,64,-0.7764498518605597],[122,253,65,-0.7760729405939082],[122,253,66,-0.7756982897441386],[122,253,67,-0.7753259056721827],[122,253,68,-0.7749557946515857],[122,253,69,-0.7745879628680914],[122,253,70,-0.774222416419214],[122,253,71,-0.7738591613138138],[122,253,72,-0.7734982034716732],[122,253,73,-0.7731395487230828],[122,253,74,-0.7727832028084055],[122,253,75,-0.7724291713776659],[122,253,76,-0.7720774599901286],[122,253,77,-0.771728074113878],[122,253,78,-0.771381019125403],[122,253,79,-0.7710363003091744],[122,254,64,-0.7766178527910975],[122,254,65,-0.7762408238188],[122,254,66,-0.7758660540842893],[122,254,67,-0.7754935499492756],[122,254,68,-0.7751233176881327],[122,254,69,-0.7747553634874844],[122,254,70,-0.7743896934457758],[122,254,71,-0.7740263135728497],[122,254,72,-0.773665229789522],[122,254,73,-0.7733064479271695],[122,254,74,-0.7729499737272927],[122,254,75,-0.7725958128411056],[122,254,76,-0.7722439708291153],[122,254,77,-0.7718944531607015],[122,254,78,-0.7715472652137],[122,254,79,-0.7712024122739825],[122,255,64,-0.7767859730683557],[122,255,65,-0.776408827810502],[122,255,66,-0.7760339406067094],[122,255,67,-0.775661317819442],[122,255,68,-0.7752909657238796],[122,255,69,-0.7749228905075016],[122,255,70,-0.7745570982696612],[122,255,71,-0.7741935950211609],[122,255,72,-0.7738323866838274],[122,255,73,-0.7734734790901004],[122,255,74,-0.7731168779825961],[122,255,75,-0.772762589013696],[122,255,76,-0.7724106177451274],[122,255,77,-0.772060969647543],[122,255,78,-0.7717136501001048],[122,255,79,-0.7713686643900639],[122,256,64,-0.7769542123021049],[122,256,65,-0.7765769521804553],[122,256,66,-0.7762019489245082],[122,256,67,-0.7758292088974583],[122,256,68,-0.7754587383752669],[122,256,69,-0.7750905435462468],[122,256,70,-0.7747246305106356],[122,256,71,-0.7743610052801717],[122,256,72,-0.7739996737776706],[122,256,73,-0.7736406418366126],[122,256,74,-0.7732839152007063],[122,256,75,-0.772929499523479],[122,256,76,-0.7725774003678559],[122,256,77,-0.7722276232057413],[122,256,78,-0.7718801734176017],[122,256,79,-0.7715350562920457],[122,257,64,-0.7771225701012063],[122,257,65,-0.7767451965391823],[122,257,66,-0.7763700786498677],[122,257,67,-0.7759972227971644],[122,257,68,-0.7756266352577913],[122,257,69,-0.7752583222208708],[122,257,70,-0.7748922897875018],[122,257,71,-0.7745285439703363],[122,257,72,-0.774167090693155],[122,257,73,-0.773807935790456],[122,257,74,-0.7734510850070183],[122,257,75,-0.7730965439974926],[122,257,76,-0.7727443183259805],[122,257,77,-0.7723944134656151],[122,257,78,-0.7720468347981462],[122,257,79,-0.7717015876135188],[122,258,64,-0.7772910460735889],[122,258,65,-0.7769135604962645],[122,258,66,-0.7765383293940208],[122,258,67,-0.776165359131442],[122,258,68,-0.7757946559859817],[122,258,69,-0.7754262261475484],[122,258,70,-0.7750600757180791],[122,258,71,-0.7746962107111158],[122,258,72,-0.774334637051382],[122,258,73,-0.7739753605743707],[122,258,74,-0.7736183870259091],[122,258,75,-0.7732637220617486],[122,258,76,-0.7729113712471454],[122,258,77,-0.7725613400564397],[122,258,78,-0.7722136338726429],[122,258,79,-0.7718682579870146],[122,259,64,-0.7774596398263116],[122,259,65,-0.7770820436604049],[122,259,66,-0.7767067007673123],[122,259,67,-0.7763336175122769],[122,259,68,-0.7759628001734631],[122,259,69,-0.7755942549415418],[122,259,70,-0.7752279879192647],[122,259,71,-0.7748640051210414],[122,259,72,-0.7745023124725144],[122,259,73,-0.7741429158101498],[122,259,74,-0.7737858208808001],[122,259,75,-0.7734310333412951],[122,259,76,-0.773078558758023],[122,259,77,-0.7727284026065104],[122,259,78,-0.7723805702710073],[122,259,79,-0.7720350670440675],[122,260,64,-0.7776283509655321],[122,260,65,-0.7772506456393959],[122,260,66,-0.7768751923791681],[122,260,67,-0.7765019975507268],[122,260,68,-0.776131067432923],[122,260,69,-0.7757624082171671],[122,260,70,-0.7753960260070022],[122,260,71,-0.7750319268176814],[122,260,72,-0.7746701165757446],[122,260,73,-0.7743106011186072],[122,260,74,-0.7739533861941247],[122,260,75,-0.7735984774601836],[122,260,76,-0.7732458804842817],[122,260,77,-0.7728956007431093],[122,260,78,-0.7725476436221346],[122,260,79,-0.7722020144151832],[122,261,64,-0.7777971790965303],[122,261,65,-0.7774193660401442],[122,261,66,-0.7770438038381196],[122,261,67,-0.7766704988569461],[122,261,68,-0.7762994573761377],[122,261,69,-0.7759306855878205],[122,261,70,-0.7755641895963056],[122,261,71,-0.7751999754176669],[122,261,72,-0.7748380489793183],[122,261,73,-0.7744784161196019],[122,261,74,-0.7741210825873538],[122,261,75,-0.7737660540414945],[122,261,76,-0.7734133360506095],[122,261,77,-0.773062934092531],[122,261,78,-0.7727148535539233],[122,261,79,-0.7723690997298628],[122,262,64,-0.7779661238236782],[122,262,65,-0.7775882044686386],[122,262,66,-0.7772125347517717],[122,262,67,-0.7768391210401541],[122,262,68,-0.7764679696139394],[122,262,69,-0.7760990866659454],[122,262,70,-0.775732478301228],[122,262,71,-0.7753681505366591],[122,262,72,-0.775006109300503],[122,262,73,-0.7746463604320063],[122,262,74,-0.7742889096809626],[122,262,75,-0.7739337627073044],[122,262,76,-0.7735809250806827],[122,262,77,-0.7732304022800496],[122,262,78,-0.7728821996932437],[122,262,79,-0.7725363226165705],[122,263,64,-0.7781351847505007],[122,263,65,-0.7777571605300126],[122,263,66,-0.7773813847268649],[122,263,67,-0.777007863708697],[122,263,68,-0.7766366037562782],[122,263,69,-0.7762676110630948],[122,263,70,-0.7759008917349238],[122,263,71,-0.7755364517894117],[122,263,72,-0.7751742971556503],[122,263,73,-0.7748144336737682],[122,263,74,-0.774456867094494],[122,263,75,-0.7741016030787491],[122,263,76,-0.7737486471972282],[122,263,77,-0.7733980049299816],[122,263,78,-0.7730496816660001],[122,263,79,-0.7727036827027968],[122,264,64,-0.7783043614796534],[122,264,65,-0.7779262338285221],[122,264,66,-0.7775503533692534],[122,264,67,-0.777176726470026],[122,264,68,-0.7768053594122009],[122,264,69,-0.7764362583899092],[122,264,70,-0.7760694295096259],[122,264,71,-0.7757048787897485],[122,264,72,-0.7753426121601739],[122,264,73,-0.774982635461889],[122,264,74,-0.774624954446535],[122,264,75,-0.7742695747760004],[122,264,76,-0.7739165020220011],[122,264,77,-0.773565741665663],[122,264,78,-0.773217299097108],[122,264,79,-0.7728711796150348],[122,265,64,-0.778473653612901],[122,265,65,-0.7780954239675223],[122,265,66,-0.777719440283882],[122,265,67,-0.7773457089306739],[122,265,68,-0.7769742361898271],[122,265,69,-0.7766050282560937],[122,265,70,-0.776238091236623],[122,265,71,-0.7758734311505406],[122,265,72,-0.7755110539285255],[122,265,73,-0.7751509654123998],[122,265,74,-0.7747931713546948],[122,265,75,-0.7744376774182435],[122,265,76,-0.7740844891757608],[122,265,77,-0.7737336121094265],[122,265,78,-0.7733850516104712],[122,265,79,-0.7730388129787582],[122,266,64,-0.7786430607511786],[122,266,65,-0.7782647305495304],[122,266,66,-0.7778886450748486],[122,266,67,-0.7775148106963181],[122,266,68,-0.7771432336964121],[122,266,69,-0.7767739202704802],[122,266,70,-0.7764068765263226],[122,266,71,-0.7760421084837694],[122,266,72,-0.7756796220742584],[122,266,73,-0.7753194231404247],[122,266,74,-0.774961517435667],[122,266,75,-0.7746059106237397],[122,266,76,-0.7742526082783348],[122,266,77,-0.7739016158826638],[122,266,78,-0.7735529388290447],[122,266,79,-0.773206582418483],[122,267,64,-0.7788125824945603],[122,267,65,-0.7784341531761936],[122,267,66,-0.7780579673453725],[122,267,67,-0.7776840313717486],[122,267,68,-0.7773123515383152],[122,267,69,-0.7769429340409957],[122,267,70,-0.776575784988218],[122,267,71,-0.7762109104004935],[122,267,72,-0.7758483162099953],[122,267,73,-0.7754880082601487],[122,267,74,-0.7751299923051969],[122,267,75,-0.7747742740097938],[122,267,76,-0.7744208589485858],[122,267,77,-0.7740697526057941],[122,267,78,-0.773720960374802],[122,267,79,-0.773374487557736],[122,268,64,-0.7789822184422837],[122,268,65,-0.7786036914483141],[122,268,66,-0.7782274066978185],[122,268,67,-0.7778533705608919],[122,268,68,-0.7774815893210236],[122,268,69,-0.777112069174687],[122,268,70,-0.7767448162309138],[122,268,71,-0.7763798365108737],[122,268,72,-0.7760171359474523],[122,268,73,-0.7756567203848417],[122,268,74,-0.7752985955781069],[122,268,75,-0.7749427671927791],[122,268,76,-0.7745892408044364],[122,268,77,-0.7742380218982879],[122,268,78,-0.7738891158687602],[122,268,79,-0.773542528019079],[122,269,64,-0.7791519681927177],[122,269,65,-0.7787733449658161],[122,269,66,-0.7783969627336657],[122,269,67,-0.77802282786678],[122,269,68,-0.7776509466491209],[122,269,69,-0.777281325277688],[122,269,70,-0.7769139698620934],[122,269,71,-0.7765488864241414],[122,269,72,-0.776186080897407],[122,269,73,-0.7758255591268264],[122,269,74,-0.7754673268682638],[122,269,75,-0.7751113897881046],[122,269,76,-0.7747577534628367],[122,269,77,-0.7744064233786347],[122,269,78,-0.7740574049309467],[122,269,79,-0.7737107034240758],[122,270,64,-0.7793218313434256],[122,270,65,-0.7789431133278091],[122,270,66,-0.7785666350535685],[122,270,67,-0.7781924028916117],[122,270,68,-0.777820423126349],[122,270,69,-0.7774507019552825],[122,270,70,-0.777083245488581],[122,270,71,-0.7767180597486603],[122,270,72,-0.7763551506697612],[122,270,73,-0.7759945240975414],[122,270,74,-0.7756361857886414],[122,270,75,-0.7752801414102779],[122,270,76,-0.7749263965398268],[122,270,77,-0.774574956664406],[122,270,78,-0.7742258271804626],[122,270,79,-0.7738790133933562],[122,271,64,-0.7794918074911412],[122,271,65,-0.7791129961325649],[122,271,66,-0.7787364232573355],[122,271,67,-0.7783620952367309],[122,271,68,-0.7779900183555862],[122,271,69,-0.7776201988118817],[122,271,70,-0.7772526427163198],[122,271,71,-0.7768873560919038],[122,271,72,-0.7765243448735182],[122,271,73,-0.776163614907518],[122,271,74,-0.7758051719512974],[122,271,75,-0.7754490216728828],[122,271,76,-0.7750951696505146],[122,271,77,-0.7747436213722322],[122,271,78,-0.77439438223546],[122,271,79,-0.7740474575465917],[122,272,64,-0.7796618962317476],[122,272,65,-0.7792829929774954],[122,272,66,-0.7789063269439058],[122,272,67,-0.7785319045026036],[122,272,68,-0.7781597319388235],[122,272,69,-0.7777898154510011],[122,272,70,-0.7774221611503482],[122,272,71,-0.7770567750604329],[122,272,72,-0.7766936631167589],[122,272,73,-0.7763328311663567],[122,272,74,-0.7759742849673512],[122,272,75,-0.7756180301885551],[122,272,76,-0.7752640724090518],[122,272,77,-0.7749124171177794],[122,272,78,-0.774563069713118],[122,272,79,-0.7742160355024732],[122,273,64,-0.7798320971603386],[122,273,65,-0.7794531034592138],[122,273,66,-0.7790763457114122],[122,273,67,-0.7787018302888795],[122,273,68,-0.7783295634772277],[122,273,69,-0.7779595514753231],[122,273,70,-0.7775918003948632],[122,273,71,-0.7772263162599575],[122,273,72,-0.7768631050067059],[122,273,73,-0.7765021724827912],[122,273,74,-0.7761435244470458],[122,273,75,-0.7757871665690468],[122,273,76,-0.7754331044286974],[122,273,77,-0.7750813435158126],[122,273,78,-0.774731889229706],[122,273,79,-0.7743847468787738],[122,274,64,-0.7800024098711872],[122,274,65,-0.7796233271735041],[122,274,66,-0.7792464791571478],[122,274,67,-0.7788718721943616],[122,274,68,-0.7784995125711094],[122,274,69,-0.7781294064866648],[122,274,70,-0.7777615600531879],[122,274,71,-0.7773959792953054],[122,274,72,-0.7770326701496904],[122,274,73,-0.7766716384646547],[122,274,74,-0.776312889999716],[122,274,75,-0.7759564304251922],[122,274,76,-0.7756022653217849],[122,274,77,-0.7752504001801628],[122,274,78,-0.7749008404005515],[122,274,79,-0.7745535912923156],[122,275,64,-0.7801728339577696],[122,275,65,-0.7797936637153446],[122,275,66,-0.7794167268775922],[122,275,67,-0.7790420298170289],[122,275,68,-0.7786695788199467],[122,275,69,-0.7782993800860029],[122,275,70,-0.7779314397277954],[122,275,71,-0.7775657637704456],[122,275,72,-0.7772023581511764],[122,275,73,-0.7768412287189055],[122,275,74,-0.7764823812338124],[122,275,75,-0.776125821366934],[122,275,76,-0.7757715546997466],[122,275,77,-0.7754195867237519],[122,275,78,-0.7750699228400643],[122,275,79,-0.7747225683589952],[122,276,64,-0.7803433690127337],[122,276,65,-0.7799641126788763],[122,276,66,-0.7795870884683782],[122,276,67,-0.7792123027540054],[122,276,68,-0.7788397618223541],[122,276,69,-0.7784694718734404],[122,276,70,-0.7781014390202777],[122,276,71,-0.7777356692884574],[122,276,72,-0.7773721686157293],[122,276,73,-0.7770109428515937],[122,276,74,-0.7766519977568694],[122,276,75,-0.7762953390032891],[122,276,76,-0.775940972173082],[122,276,77,-0.7755889027585595],[122,276,78,-0.7752391361617035],[122,276,79,-0.7748916776937502],[122,277,64,-0.7805140146279613],[122,277,65,-0.7801346736574645],[122,277,66,-0.7797575635243547],[122,277,67,-0.7793826906016226],[122,277,68,-0.7790100611761441],[122,277,69,-0.7786396814482708],[122,277,70,-0.7782715575314072],[122,277,71,-0.7779056954515918],[122,277,72,-0.7775421011470777],[122,277,73,-0.7771807804679245],[122,277,74,-0.7768217391755677],[122,277,75,-0.7764649829424128],[122,277,76,-0.7761105173514196],[122,277,77,-0.7757583478956867],[122,277,78,-0.7754084799780412],[122,277,79,-0.7750609189106225],[122,278,64,-0.780684770394545],[122,278,65,-0.7803053462436771],[122,278,66,-0.7799281516395635],[122,278,67,-0.7795531929553954],[122,278,68,-0.7791804764783044],[122,278,69,-0.7788100084089533],[122,278,70,-0.7784417948611143],[122,278,71,-0.7780758418612491],[122,278,72,-0.7777121553480907],[122,278,73,-0.7773507411722352],[122,278,74,-0.7769916050957115],[122,278,75,-0.7766347527915753],[122,278,76,-0.776280189843494],[122,278,77,-0.7759279217453319],[122,278,78,-0.7755779539007388],[122,278,79,-0.775230291622735],[122,279,64,-0.7808556359027661],[122,279,65,-0.7804761300292614],[122,279,66,-0.7800988524072175],[122,279,67,-0.7797238094100012],[122,279,68,-0.7793510073249759],[122,279,69,-0.7789804523530919],[122,279,70,-0.7786121506084644],[122,279,71,-0.7782461081179559],[122,279,72,-0.7778823308207552],[122,279,73,-0.7775208245679719],[122,279,74,-0.777161595122205],[122,279,75,-0.7768046481571381],[122,279,76,-0.7764499892571236],[122,279,77,-0.7760976239167686],[122,279,78,-0.7757475575405239],[122,279,79,-0.7753997954422689],[122,280,64,-0.7810266107421565],[122,280,65,-0.7806470246052066],[122,280,66,-0.780269665419762],[122,280,67,-0.779894539559341],[122,280,68,-0.7795216533115144],[122,280,69,-0.779151012877496],[122,280,70,-0.7787826243717211],[122,280,71,-0.7784164938214276],[122,280,72,-0.778052627166238],[122,280,73,-0.777691030257752],[122,280,74,-0.7773317088591157],[122,280,75,-0.7769746686446175],[122,280,76,-0.7766199151992723],[122,280,77,-0.7762674540184078],[122,280,78,-0.7759172905072533],[122,280,79,-0.7755694299805255],[122,281,64,-0.7811976945014669],[122,281,65,-0.7808180295617112],[122,281,66,-0.7804405902688429],[122,281,67,-0.7800653829965074],[122,281,68,-0.7796924140324586],[122,281,69,-0.7793216895781498],[122,281,70,-0.7789532157483121],[122,281,71,-0.7785869985705363],[122,281,72,-0.7782230439848543],[122,281,73,-0.7778613578433324],[122,281,74,-0.7775019459096415],[122,281,75,-0.7771448138586515],[122,281,76,-0.7767899672760176],[122,281,77,-0.7764374116577653],[122,281,78,-0.7760871524098805],[122,281,79,-0.7757391948478949],[122,282,64,-0.781368886768691],[122,282,65,-0.780989144488208],[122,282,66,-0.7806116265453314],[122,282,67,-0.7802363393138094],[122,282,68,-0.7798632890815547],[122,282,69,-0.7794924820502358],[122,282,70,-0.779123924334856],[122,282,71,-0.7787576219633351],[122,282,72,-0.7783935808760909],[122,282,73,-0.7780318069256338],[122,282,74,-0.7776723058761352],[122,282,75,-0.7773150834030249],[122,282,76,-0.7769601450925749],[122,282,77,-0.7766074964414863],[122,282,78,-0.7762571428564795],[122,282,79,-0.7759090896538792],[122,283,64,-0.7815401871310335],[122,283,65,-0.781160368973332],[122,283,66,-0.7807827738392921],[122,283,67,-0.7804074081027402],[122,283,68,-0.7800342780517238],[122,283,69,-0.7796633898881027],[122,283,70,-0.7792947497271281],[122,283,71,-0.7789283635970253],[122,283,72,-0.7785642374385748],[122,283,73,-0.7782023771047073],[122,283,74,-0.7778427883600726],[122,283,75,-0.7774854768806361],[122,283,76,-0.7771304482532647],[122,283,77,-0.7767777079753129],[122,283,78,-0.7764272614542129],[122,283,79,-0.7760791140070604],[122,284,64,-0.7817115951749725],[122,284,65,-0.781331702604982],[122,284,66,-0.7809540317400441],[122,284,67,-0.7805785889540391],[122,284,68,-0.7802053805351246],[122,284,69,-0.7798344126853277],[122,284,70,-0.7794656915201239],[122,284,71,-0.7790992230680199],[122,284,72,-0.7787350132701358],[122,284,73,-0.7783730679797987],[122,284,74,-0.7780133929621138],[122,284,75,-0.77765599389356],[122,284,76,-0.777300876361576],[122,284,77,-0.7769480458641468],[122,284,78,-0.7765975078093944],[122,284,79,-0.7762492675151638],[122,285,64,-0.7818831104862363],[122,285,65,-0.7815031449702986],[122,285,66,-0.7811253998361396],[122,285,67,-0.780749881457669],[122,285,68,-0.7803765961231305],[122,285,69,-0.7800055500346941],[122,285,70,-0.7796367493080356],[122,285,71,-0.7792701999719199],[122,285,72,-0.7789059079677824],[122,285,73,-0.778543879149324],[122,285,74,-0.7781841192820819],[122,285,75,-0.7778266340430253],[122,285,76,-0.7774714290201422],[122,285,77,-0.7771185097120259],[122,285,78,-0.7767678815274657],[122,285,79,-0.7764195497850334],[122,286,64,-0.7820547326497815],[122,286,65,-0.7816746956556411],[122,286,66,-0.7812968777153404],[122,286,67,-0.7809212852027938],[122,286,68,-0.7805479244063065],[122,286,69,-0.7801768015281678],[122,286,70,-0.7798079226842298],[122,286,71,-0.7794412939034913],[122,286,72,-0.7790769211276798],[122,286,73,-0.778714810210847],[122,286,74,-0.7783549669189384],[122,286,75,-0.7779973969293908],[122,286,76,-0.7776421058307189],[122,286,77,-0.7772890991221014],[122,286,78,-0.776938382212973],[122,286,79,-0.77658996042261],[122,287,64,-0.7822264612498544],[122,287,65,-0.7818463542466496],[122,287,66,-0.78146846496468],[122,287,67,-0.78109279977784],[122,287,68,-0.7807193649744721],[122,287,69,-0.7803481667569603],[122,287,70,-0.7799792112413091],[122,287,71,-0.7796125044567278],[122,287,72,-0.7792480523452125],[122,287,73,-0.7788858607611417],[122,287,74,-0.7785259354708465],[122,287,75,-0.7781682821522086],[122,287,76,-0.7778129063942459],[122,287,77,-0.7774598136967006],[122,287,78,-0.7771090094696299],[122,287,79,-0.776760499032993],[122,288,64,-0.7823982958699686],[122,288,65,-0.7820181203282227],[122,288,66,-0.7816401611704415],[122,288,67,-0.7812644247704746],[122,288,68,-0.7808909174166777],[122,288,69,-0.7805196453115053],[122,288,70,-0.7801506145710901],[122,288,71,-0.7797838312248283],[122,288,72,-0.7794193012149608],[122,288,73,-0.7790570303961697],[122,288,74,-0.7786970245351486],[122,288,75,-0.7783392893102006],[122,288,76,-0.7779838303108246],[122,288,77,-0.7776306530373035],[122,288,78,-0.7772797629002948],[122,288,79,-0.7769311652204183],[122,289,64,-0.7825702360928821],[122,289,65,-0.7821899934844945],[122,289,66,-0.7818119659181342],[122,289,67,-0.7814361597675823],[122,289,68,-0.7810625813211824],[122,289,69,-0.7806912367814358],[122,289,70,-0.7803221322645799],[122,289,71,-0.779955273800173],[122,289,72,-0.7795906673306778],[122,289,73,-0.7792283187110564],[122,289,74,-0.7788682337083416],[122,289,75,-0.7785104180012352],[122,289,76,-0.7781548771796942],[122,289,77,-0.7778016167445195],[122,289,78,-0.7774506421069465],[122,289,79,-0.7771019585882334],[122,290,64,-0.78274228150066],[122,290,65,-0.7823619732988962],[122,290,66,-0.7819838787925562],[122,290,67,-0.7816080043553266],[122,290,68,-0.7812343562755161],[122,290,69,-0.7808629407556473],[122,290,70,-0.7804937639120384],[122,290,71,-0.7801268317743866],[122,290,72,-0.7797621502853522],[122,290,73,-0.7793997253001541],[122,290,74,-0.7790395625861413],[122,290,75,-0.7786816678223909],[122,290,76,-0.7783260465992953],[122,290,77,-0.7779727044181506],[122,290,78,-0.7776216466907482],[122,290,79,-0.777272878738962],[122,291,64,-0.7829144316746418],[122,291,65,-0.7825340593541252],[122,291,66,-0.7821558993777615],[122,291,67,-0.7817799581191195],[122,291,68,-0.7814062418664467],[122,291,69,-0.7810347568222642],[122,291,70,-0.7806655091029462],[122,291,71,-0.7802985047383053],[122,291,72,-0.7799337496711757],[122,291,73,-0.7795712497570095],[122,291,74,-0.7792110107634485],[122,291,75,-0.7788530383699224],[122,291,76,-0.7784973381672361],[122,291,77,-0.7781439156571582],[122,291,78,-0.7777927762520135],[122,291,79,-0.7774439252742699],[122,292,64,-0.7830866861954655],[122,292,65,-0.7827062512321683],[122,292,66,-0.7823280272570857],[122,292,67,-0.7819520206436437],[122,292,68,-0.7815782376800053],[122,292,69,-0.7812066845686649],[122,292,70,-0.7808373674260292],[122,292,71,-0.7804702922820017],[122,292,72,-0.7801054650795671],[122,292,73,-0.7797428916743875],[122,292,74,-0.7793825778343741],[122,292,75,-0.779024529239286],[122,292,76,-0.7786687514803177],[122,292,77,-0.7783152500596879],[122,292,78,-0.777964030390232],[122,292,79,-0.7776150977949899],[122,293,64,-0.7832590446430365],[122,293,65,-0.7828785485142697],[122,293,66,-0.7825002620131123],[122,293,67,-0.7821241915128222],[122,293,68,-0.7817503433014534],[122,293,69,-0.7813787235814494],[122,293,70,-0.7810093384692254],[122,293,71,-0.7806421939947519],[122,293,72,-0.7802772961011405],[122,293,73,-0.7799146506442395],[122,293,74,-0.7795542633922062],[122,293,75,-0.7791961400251064],[122,293,76,-0.778840286134501],[122,293,77,-0.7784867072230364],[122,293,78,-0.778135408704036],[122,293,79,-0.7777863959010891],[122,294,64,-0.7834315065965886],[122,294,65,-0.7830509507809938],[122,294,66,-0.7826726032277356],[122,294,67,-0.7822964703098793],[122,294,68,-0.7819225583153451],[122,294,69,-0.7815508734465016],[122,294,70,-0.7811814218197479],[122,294,71,-0.7808142094650983],[122,294,72,-0.780449242325767],[122,294,73,-0.780086526257765],[122,294,74,-0.779726067029473],[122,294,75,-0.7793678703212396],[122,294,76,-0.7790119417249697],[122,294,77,-0.7786582867437144],[122,294,78,-0.7783069107912628],[122,294,79,-0.7779578191917317],[122,295,64,-0.7836040716346616],[122,295,65,-0.7832234576122018],[122,295,66,-0.7828450504821378],[122,295,67,-0.782468856617318],[122,295,68,-0.7820948823055043],[122,295,69,-0.7817231337489662],[122,295,70,-0.781353617064062],[122,295,71,-0.7809863382808262],[122,295,72,-0.7806213033425519],[122,295,73,-0.7802585181053896],[122,295,74,-0.7798979883379192],[122,295,75,-0.7795397197207496],[122,295,76,-0.7791837178461068],[122,295,77,-0.7788299882174236],[122,295,78,-0.7784785362489326],[122,295,79,-0.7781293672652552],[122,296,64,-0.783776739335079],[122,296,65,-0.7833960685870288],[122,296,66,-0.7830176033567662],[122,296,67,-0.7826413500168977],[122,296,68,-0.7822673148550022],[122,296,69,-0.7818955040732254],[122,296,70,-0.7815259237878619],[122,296,71,-0.7811585800289411],[122,296,72,-0.780793478739812],[122,296,73,-0.7804306257767405],[122,296,74,-0.780070026908483],[122,296,75,-0.7797116878158853],[122,296,76,-0.7793556140914712],[122,296,77,-0.7790018112390328],[122,296,78,-0.7786502846732235],[122,296,79,-0.7783010397191474],[122,297,64,-0.783949509275009],[122,297,65,-0.7835687832839464],[122,297,66,-0.7831902614313951],[122,297,67,-0.7828139500896955],[122,297,68,-0.7824398555462186],[122,297,69,-0.7820679840029623],[122,297,70,-0.7816983415761327],[122,297,71,-0.7813309342957309],[122,297,72,-0.7809657681051373],[122,297,73,-0.7806028488607104],[122,297,74,-0.780242182331359],[122,297,75,-0.7798837741981428],[122,297,76,-0.7795276300538607],[122,297,77,-0.7791737554026413],[122,297,78,-0.7788221556595363],[122,297,79,-0.7784728361501096],[122,298,64,-0.7841223810309335],[122,298,65,-0.7837416012807299],[122,298,66,-0.7833630242850939],[122,298,67,-0.7829866564160742],[122,298,68,-0.7826125039608103],[122,298,69,-0.7822405731211273],[122,298,70,-0.7818708700131187],[122,298,71,-0.7815034006667332],[122,298,72,-0.7811381710253593],[122,298,73,-0.7807751869454236],[122,298,74,-0.7804144541959648],[122,298,75,-0.7800559784582329],[122,298,76,-0.7796997653252791],[122,298,77,-0.7793458203015455],[122,298,78,-0.7789941488024594],[122,298,79,-0.7786447561540228],[122,299,64,-0.7842953541786716],[122,299,65,-0.7839145221544831],[122,299,66,-0.7835358914962508],[122,299,67,-0.7831594685757074],[122,299,68,-0.7827852596797352],[122,299,69,-0.7824132710099629],[122,299,70,-0.7820435086823474],[122,299,71,-0.7816759787267603],[122,299,72,-0.7813106870865746],[122,299,73,-0.7809476396182617],[122,299,74,-0.7805868420909664],[122,299,75,-0.7802283001861061],[122,299,76,-0.7798720194969608],[122,299,77,-0.7795180055282638],[122,299,78,-0.7791662636957953],[122,299,79,-0.7788167993259729],[122,300,64,-0.7844684282933474],[122,300,65,-0.7840875454816058],[122,300,66,-0.7837088626425412],[122,300,67,-0.7833323861475455],[122,300,68,-0.7829581222832199],[122,300,69,-0.7825860772509717],[122,300,70,-0.7822162571665965],[122,300,71,-0.7818486680598657],[122,300,72,-0.7814833158741126],[122,300,73,-0.7811202064658297],[122,300,74,-0.7807593456042443],[122,300,75,-0.7804007389709182],[122,300,76,-0.7800443921593375],[122,300,77,-0.7796903106745032],[122,300,78,-0.7793384999325264],[122,300,79,-0.7789889652602173],[122,301,64,-0.7846416029494527],[122,301,65,-0.7842606708378556],[122,301,66,-0.7838819373009893],[122,301,67,-0.7835054087098796],[122,301,68,-0.7831310913508219],[122,301,69,-0.7827589914249776],[122,301,70,-0.7823891150479572],[122,301,71,-0.7820214682494075],[122,301,72,-0.781656056972598],[122,301,73,-0.7812928870740191],[122,301,74,-0.7809319643229572],[122,301,75,-0.780573294401095],[122,301,76,-0.7802168829021012],[122,301,77,-0.7798627353312227],[122,301,78,-0.7795108571048779],[122,301,79,-0.7791612535502479],[122,302,64,-0.7848148777208231],[122,302,65,-0.7844338977983256],[122,302,66,-0.7840551150479453],[122,302,67,-0.7836785358403173],[122,302,68,-0.7833041664614064],[122,302,69,-0.7829320131121039],[122,302,70,-0.7825620819078105],[122,302,71,-0.7821943788780246],[122,302,72,-0.7818289099659279],[122,302,73,-0.781465681027985],[122,302,74,-0.7811046978335181],[122,302,75,-0.7807459660643072],[122,302,76,-0.7803894913141813],[122,302,77,-0.7800352790886094],[122,302,78,-0.779683334804295],[122,302,79,-0.7793336637887677],[122,303,64,-0.7849882521806161],[122,303,65,-0.784607225937421],[122,303,66,-0.7842283954590628],[122,303,67,-0.7838517671157605],[122,303,68,-0.7834773471931239],[122,303,69,-0.7831051418917494],[122,303,70,-0.782735157326804],[122,303,71,-0.7823673995276134],[122,303,72,-0.7820018744372479],[122,303,73,-0.7816385879121224],[122,303,74,-0.7812775457215708],[122,303,75,-0.7809187535474482],[122,303,76,-0.7805622169837202],[122,303,77,-0.780207941536055],[122,303,78,-0.779855932621419],[122,303,79,-0.7795061955676672],[122,304,64,-0.7851617259013726],[122,304,65,-0.7847806548289218],[122,304,66,-0.7844017781093603],[122,304,67,-0.784025102112467],[122,304,68,-0.7836506331234715],[122,304,69,-0.7832783773426512],[122,304,70,-0.7829083408849149],[122,304,71,-0.782540529779391],[122,304,72,-0.782174949969015],[122,304,73,-0.7818116073101283],[122,304,74,-0.7814505075720536],[122,304,75,-0.7810916564366968],[122,304,76,-0.7807350594981369],[122,304,77,-0.7803807222622193],[122,304,78,-0.7800286501461501],[122,304,79,-0.7796788484780874],[122,305,64,-0.7853352984549848],[122,305,65,-0.7849541840459493],[122,305,66,-0.7845752625731894],[122,305,67,-0.7841985404060186],[122,305,68,-0.7838240238292615],[122,305,69,-0.783451719042852],[122,305,70,-0.7830816321614162],[122,305,71,-0.7827137692138622],[122,305,72,-0.7823481361429654],[122,305,73,-0.7819847388049704],[122,305,74,-0.7816235829691651],[122,305,75,-0.7812646743174829],[122,305,76,-0.780908018444094],[122,305,77,-0.7805536208549968],[122,305,78,-0.7802014869676147],[122,305,79,-0.7798516221103868],[122,306,64,-0.7855089694127204],[122,306,65,-0.7851278131609918],[122,306,66,-0.7847488484242588],[122,306,67,-0.7843720815713446],[122,306,68,-0.7839975188866447],[122,306,69,-0.7836251665697244],[122,306,70,-0.783255030734903],[122,306,71,-0.7828871174108432],[122,306,72,-0.7825214325401378],[122,306,73,-0.7821579819789102],[122,306,74,-0.7817967714963897],[122,306,75,-0.7814378067745142],[122,306,76,-0.7810810934075215],[122,306,77,-0.7807266369015408],[122,306,78,-0.7803744426741895],[122,306,79,-0.7800245160541656],[122,307,64,-0.7856827383451902],[122,307,65,-0.7853015417458711],[122,307,66,-0.7849225352356018],[122,307,67,-0.7845457251826906],[122,307,68,-0.7841711178710786],[122,307,69,-0.7837987194999382],[122,307,70,-0.7834285361832576],[122,307,71,-0.7830605739494301],[122,307,72,-0.7826948387408414],[122,307,73,-0.7823313364134702],[122,307,74,-0.7819700727364638],[122,307,75,-0.7816110533917414],[122,307,76,-0.7812542839735845],[122,307,77,-0.7808997699882306],[122,307,78,-0.7805475168534689],[122,307,79,-0.7801975298982323],[122,308,64,-0.7858566048224103],[122,308,65,-0.785475369371805],[122,308,66,-0.7850963225796389],[122,308,67,-0.7847194708136795],[122,308,68,-0.7843448203573893],[122,308,69,-0.783972377409523],[122,308,70,-0.7836021480837134],[122,308,71,-0.7832341384080603],[122,308,72,-0.7828683543247182],[122,308,73,-0.7825048016894973],[122,308,74,-0.7821434862714395],[122,308,75,-0.7817844137524212],[122,308,76,-0.7814275897267458],[122,308,77,-0.781073019700735],[122,308,78,-0.7807207090923268],[122,308,79,-0.7803706632306678],[122,309,64,-0.7860305684137788],[122,309,65,-0.7856492956093846],[122,309,66,-0.7852702100281538],[122,309,67,-0.7848933180372888],[122,309,68,-0.7845186259197483],[122,309,69,-0.7841461398738448],[122,309,70,-0.7837758660128314],[122,309,71,-0.7834078103644899],[122,309,72,-0.7830419788707198],[122,309,73,-0.7826783773871389],[122,309,74,-0.7823170116826601],[122,309,75,-0.7819578874390942],[122,309,76,-0.7816010102507419],[122,309,77,-0.7812463856239874],[122,309,78,-0.7808940189768947],[122,309,79,-0.7805439156388007],[122,310,64,-0.7862046286880535],[122,310,65,-0.7858233200285508],[122,310,66,-0.7854441971522717],[122,310,67,-0.7850672664258279],[122,310,68,-0.7846925341316497],[122,310,69,-0.7843200064675832],[122,310,70,-0.7839496895464766],[122,310,71,-0.78358158939577],[122,310,72,-0.7832157119570838],[122,310,73,-0.7828520630858198],[122,310,74,-0.7824906485507378],[122,310,75,-0.7821314740335595],[122,310,76,-0.7817745451285606],[122,310,77,-0.7814198673421637],[122,310,78,-0.7810674460925364],[122,310,79,-0.7807172867091836],[122,311,64,-0.7863787852134132],[122,311,65,-0.7859974421986567],[122,311,66,-0.78561828352252],[122,311,67,-0.7852413155509996],[122,311,68,-0.7848665445659724],[122,311,69,-0.7844939767647928],[122,311,70,-0.7841236182598806],[122,311,71,-0.7837554750783096],[122,311,72,-0.7833895531613969],[122,311,73,-0.7830258583643042],[122,311,74,-0.7826643964556153],[122,311,75,-0.782305173116939],[122,311,76,-0.7819481939425026],[122,311,77,-0.7815934644387443],[122,311,78,-0.7812409900239126],[122,311,79,-0.7808907760276573],[122,312,64,-0.7865530375574257],[122,312,65,-0.7861716616884351],[122,312,66,-0.7857924687087973],[122,312,67,-0.7854154649838685],[122,312,68,-0.785040656794947],[122,312,69,-0.7846680503388719],[122,312,70,-0.7842976517276092],[122,312,71,-0.7839294669878424],[122,312,72,-0.7835635020605614],[122,312,73,-0.7831997628006638],[122,312,74,-0.7828382549765336],[122,312,75,-0.7824789842696437],[122,312,76,-0.782121956274149],[122,312,77,-0.7817671764964813],[122,312,78,-0.781414650354946],[122,312,79,-0.7810643831793161],[122,313,64,-0.786727385287072],[122,313,65,-0.7863459780660225],[122,313,66,-0.7859667522803961],[122,313,67,-0.785589714294884],[122,313,68,-0.785214870390181],[122,313,69,-0.7848422267625856],[122,313,70,-0.7844717895235863],[122,313,71,-0.7841035646994514],[122,313,72,-0.7837375582308197],[122,313,73,-0.7833737759723014],[122,313,74,-0.7830122236920564],[122,313,75,-0.782652907071398],[122,313,76,-0.7822958317043863],[122,313,77,-0.7819410030974226],[122,313,78,-0.7815884266688473],[122,313,79,-0.7812381077485334],[122,314,64,-0.7869018279687137],[122,314,65,-0.7865203908989269],[122,314,66,-0.7861411338059718],[122,314,67,-0.7857640630538489],[122,314,68,-0.7853891849226253],[122,314,69,-0.785016505608034],[122,314,70,-0.784646031221061],[122,314,71,-0.7842777677875361],[122,314,72,-0.7839117212477222],[122,314,73,-0.7835478974559181],[122,314,74,-0.7831863021800363],[122,314,75,-0.782826941101207],[122,314,76,-0.782469819813372],[122,314,77,-0.7821149438228793],[122,314,78,-0.781762318548081],[122,314,79,-0.7814119493189277],[122,315,64,-0.7870763651681552],[122,315,65,-0.7866948997540898],[122,315,66,-0.7863156128536035],[122,315,67,-0.7859385108299812],[122,315,68,-0.7855635999626368],[122,315,69,-0.7851908864467136],[122,315,70,-0.7848203763926709],[122,315,71,-0.7844520758258746],[122,315,72,-0.7840859906861888],[122,315,73,-0.7837221268275762],[122,315,74,-0.7833604900176784],[122,315,75,-0.7830010859374191],[122,315,76,-0.7826439201805984],[122,315,77,-0.7822889982534877],[122,315,78,-0.7819363255744285],[122,315,79,-0.7815859074734257],[122,316,64,-0.7872509964506205],[122,316,65,-0.7868695041978631],[122,316,66,-0.7864901889907716],[122,316,67,-0.7861130571918902],[122,316,68,-0.7857381150799553],[122,316,69,-0.785365368849495],[122,316,70,-0.7849948246104173],[122,316,71,-0.7846264883876009],[122,316,72,-0.7842603661204857],[122,316,73,-0.7838964636626753],[122,316,74,-0.7835347867815163],[122,316,75,-0.7831753411577024],[122,316,76,-0.7828181323848686],[122,316,77,-0.7824631659691869],[122,316,78,-0.7821104473289646],[122,316,79,-0.7817599817942392],[122,317,64,-0.7874257213807303],[122,317,65,-0.7870442037959858],[122,317,66,-0.7866648617843346],[122,317,67,-0.7862877017075547],[122,317,68,-0.7859127298436799],[122,317,69,-0.7855399523865988],[122,317,70,-0.7851693754456436],[122,317,71,-0.7848010050451808],[122,317,72,-0.7844348471242026],[122,317,73,-0.7840709075359293],[122,317,74,-0.7837091920473888],[122,317,75,-0.783349706339021],[122,317,76,-0.782992456004273],[122,317,77,-0.7826374465491939],[122,317,78,-0.782284683392034],[122,317,79,-0.7819341718628404],[122,318,64,-0.7876005395225639],[122,318,65,-0.7872189981136467],[122,318,66,-0.786839630800591],[122,318,67,-0.7864624439443841],[122,318,68,-0.7860874438223318],[122,318,69,-0.7857146366276587],[122,318,70,-0.7853440284690962],[122,318,71,-0.7849756253704749],[122,318,72,-0.7846094332703148],[122,318,73,-0.7842454580214289],[122,318,74,-0.7838837053905024],[122,318,75,-0.7835241810576985],[122,318,76,-0.7831668906162524],[122,318,77,-0.7828118395720673],[122,318,78,-0.7824590333433139],[122,318,79,-0.7821084772600259],[122,319,64,-0.7877754504396363],[122,319,65,-0.7873938867154605],[122,319,66,-0.7870144956052565],[122,319,67,-0.7866372834691956],[122,319,68,-0.7862622565838308],[122,319,69,-0.7858894211416976],[122,319,70,-0.7855187832509025],[122,319,71,-0.7851503489347154],[122,319,72,-0.7847841241311598],[122,319,73,-0.7844201146926177],[122,319,74,-0.7840583263854082],[122,319,75,-0.7836987648893935],[122,319,76,-0.7833414357975739],[122,319,77,-0.7829863446156835],[122,319,78,-0.7826334967617905],[122,319,79,-0.7822828975658921],[123,-64,64,-0.7308248490864742],[123,-64,65,-0.7305443822535818],[123,-64,66,-0.7302663522826847],[123,-64,67,-0.7299907643028382],[123,-64,68,-0.7297176233481569],[123,-64,69,-0.7294469343573962],[123,-64,70,-0.7291787021735155],[123,-64,71,-0.7289129315432485],[123,-64,72,-0.7286496271166703],[123,-64,73,-0.7283887934467794],[123,-64,74,-0.7281304349890511],[123,-64,75,-0.7278745561010218],[123,-64,76,-0.7276211610418606],[123,-64,77,-0.7273702539719408],[123,-64,78,-0.7271218389524172],[123,-64,79,-0.726875919944797],[123,-63,64,-0.7309433713813068],[123,-63,65,-0.730662461811669],[123,-63,66,-0.7303839890419064],[123,-63,67,-0.730107958207226],[123,-63,68,-0.729834374347897],[123,-63,69,-0.72956324240883],[123,-63,70,-0.7292945672391413],[123,-63,71,-0.7290283535917226],[123,-63,72,-0.7287646061228071],[123,-63,73,-0.7285033293915536],[123,-63,74,-0.7282445278595977],[123,-63,75,-0.727988205890637],[123,-63,76,-0.7277343677500018],[123,-63,77,-0.7274830176042273],[123,-63,78,-0.7272341595206305],[123,-63,79,-0.7269877974668808],[123,-62,64,-0.7310620557481212],[123,-62,65,-0.7307807039684022],[123,-62,66,-0.7305017889249005],[123,-62,67,-0.730225315758968],[123,-62,68,-0.7299512895170199],[123,-62,69,-0.7296797151501145],[123,-62,70,-0.7294105975135177],[123,-62,71,-0.7291439413662708],[123,-62,72,-0.7288797513707593],[123,-62,73,-0.7286180320922938],[123,-62,74,-0.7283587879986633],[123,-62,75,-0.728102023459719],[123,-62,76,-0.7278477427469457],[123,-62,77,-0.7275959500330338],[123,-62,78,-0.7273466493914554],[123,-62,79,-0.7270998447960348],[123,-61,64,-0.731180902424957],[123,-61,65,-0.730899108965478],[123,-61,66,-0.730619752177002],[123,-61,67,-0.730342837207018],[123,-61,68,-0.7300683691080797],[123,-61,69,-0.7297963528373854],[123,-61,70,-0.7295267932563421],[123,-61,71,-0.7292596951301346],[123,-61,72,-0.7289950631272917],[123,-61,73,-0.7287329018192691],[123,-61,74,-0.7284732156800018],[123,-61,75,-0.7282160090854877],[123,-61,76,-0.7279612863133587],[123,-61,77,-0.7277090515424532],[123,-61,78,-0.7274593088523914],[123,-61,79,-0.7272120622231463],[123,-60,64,-0.7312999116466277],[123,-60,65,-0.7310176770413638],[123,-60,66,-0.7307378790403138],[123,-60,67,-0.7304605227970957],[123,-60,68,-0.7301856133703936],[123,-60,69,-0.7299131557235381],[123,-60,70,-0.7296431547240702],[123,-60,71,-0.7293756151433094],[123,-60,72,-0.7291105416559212],[123,-60,73,-0.7288479388394986],[123,-60,74,-0.7285878111741152],[123,-60,75,-0.7283301630419083],[123,-60,76,-0.72807499872665],[123,-60,77,-0.7278223224133192],[123,-60,78,-0.7275721381876773],[123,-60,79,-0.7273244500358389],[123,-59,64,-0.7314190836447084],[123,-59,65,-0.7311364084312861],[123,-59,66,-0.7308561697536949],[123,-59,67,-0.7305783727716737],[123,-59,68,-0.7303030225500292],[123,-59,69,-0.7300301240582164],[123,-59,70,-0.7297596821699024],[123,-59,71,-0.7294917016625339],[123,-59,72,-0.729226187216905],[123,-59,73,-0.7289631434167394],[123,-59,74,-0.7287025747482411],[123,-59,75,-0.7284444855996797],[123,-59,76,-0.72818888026096],[123,-59,77,-0.7279357629231944],[123,-59,78,-0.7276851376782786],[123,-59,79,-0.7274370085184616],[123,-58,64,-0.731538418647587],[123,-58,65,-0.7312553033672807],[123,-58,66,-0.7309746245528107],[123,-58,67,-0.7306963873700282],[123,-58,68,-0.7304205968898548],[123,-58,69,-0.730147258087862],[123,-58,70,-0.7298763758438345],[123,-58,71,-0.7296079549413392],[123,-58,72,-0.7293420000672912],[123,-58,73,-0.7290785158115364],[123,-58,74,-0.7288175066664024],[123,-58,75,-0.7285589770262834],[123,-58,76,-0.7283029311872098],[123,-58,77,-0.7280493733464202],[123,-58,78,-0.7277983076019372],[123,-58,79,-0.7275497379521375],[123,-57,64,-0.7316579168804438],[123,-57,65,-0.7313743620781736],[123,-57,66,-0.7310932436701136],[123,-57,67,-0.7308145668282199],[123,-57,68,-0.7305383366295205],[123,-57,69,-0.7302645580556951],[123,-57,70,-0.7299932359926389],[123,-57,71,-0.7297243752300305],[123,-57,72,-0.7294579804608985],[123,-57,73,-0.7291940562812032],[123,-57,74,-0.7289326071893883],[123,-57,75,-0.7286736375859653],[123,-57,76,-0.7284171517730825],[123,-57,77,-0.7281631539540976],[123,-57,78,-0.7279116482331529],[123,-57,79,-0.7276626386147453],[123,-56,64,-0.7317775785652759],[123,-56,65,-0.7314935847896038],[123,-56,66,-0.7312120273348667],[123,-56,67,-0.7309329113791168],[123,-56,68,-0.7306562420054805],[123,-56,69,-0.7303820242017381],[123,-56,70,-0.730110262859887],[123,-56,71,-0.7298409627757093],[123,-56,72,-0.7295741286483395],[123,-56,73,-0.7293097650798446],[123,-56,74,-0.729047876574777],[123,-56,75,-0.7287884675397575],[123,-56,76,-0.7285315422830452],[123,-56,77,-0.7282771050141092],[123,-56,78,-0.7280251598432046],[123,-56,79,-0.7277757107809413],[123,-55,64,-0.7318974039208767],[123,-55,65,-0.7316129717240037],[123,-55,66,-0.7313309757731229],[123,-55,67,-0.7310514212523742],[123,-55,68,-0.7307743132509743],[123,-55,69,-0.7304996567627954],[123,-55,70,-0.7302274566859289],[123,-55,71,-0.7299577178222535],[123,-55,72,-0.7296904448770007],[123,-55,73,-0.7294256424583372],[123,-55,74,-0.7291633150769157],[123,-55,75,-0.728903467145459],[123,-55,76,-0.7286461029783293],[123,-55,77,-0.7283912267911001],[123,-55,78,-0.7281388427001315],[123,-55,79,-0.7278889547221394],[123,-54,64,-0.7320173931628866],[123,-54,65,-0.7317325231006504],[123,-54,66,-0.7314500892077772],[123,-54,67,-0.7311700966744864],[123,-54,68,-0.7308925505960765],[123,-54,69,-0.7306174559725037],[123,-54,70,-0.7303448177079456],[123,-54,71,-0.7300746406103685],[123,-54,72,-0.7298069293910939],[123,-54,73,-0.7295416886643795],[123,-54,74,-0.7292789229469712],[123,-54,75,-0.7290186366576858],[123,-54,76,-0.7287608341169813],[123,-54,77,-0.728505519546528],[123,-54,78,-0.7282526970687833],[123,-54,79,-0.7280023707065619],[123,-53,64,-0.7321375465037819],[123,-53,65,-0.731852239135653],[123,-53,66,-0.7315693678585533],[123,-53,67,-0.7312889378687734],[123,-53,68,-0.7310109542676851],[123,-53,69,-0.7307354220613206],[123,-53,70,-0.730462346159935],[123,-53,71,-0.7301917313775746],[123,-53,72,-0.7299235824316426],[123,-53,73,-0.72965790394248],[123,-53,74,-0.7293947004329177],[123,-53,75,-0.729133976327859],[123,-53,76,-0.7288757359538502],[123,-53,77,-0.7286199835386502],[123,-53,78,-0.7283667232108071],[123,-53,79,-0.7281159589992267],[123,-52,64,-0.7322578641528614],[123,-52,65,-0.73197212004194],[123,-52,66,-0.7316888119419915],[123,-52,67,-0.7314079450553688],[123,-52,68,-0.731129524489509],[123,-52,69,-0.7308535552565112],[123,-52,70,-0.7305800422727005],[123,-52,71,-0.7303089903581946],[123,-52,72,-0.7300404042364701],[123,-52,73,-0.7297742885339438],[123,-52,74,-0.7295106477795236],[123,-52,75,-0.7292494864041917],[123,-52,76,-0.7289908087405742],[123,-52,77,-0.7287346190225118],[123,-52,78,-0.7284809213846352],[123,-52,79,-0.7282297198619343],[123,-51,64,-0.7323783463162972],[123,-51,65,-0.7320921660293107],[123,-51,66,-0.7318084216714995],[123,-51,67,-0.7315271184512709],[123,-51,68,-0.7312482614821181],[123,-51,69,-0.7309718557821995],[123,-51,70,-0.730697906273901],[123,-51,71,-0.7304264177834039],[123,-51,72,-0.7301573950402502],[123,-51,73,-0.7298908426769243],[123,-51,74,-0.7296267652284029],[123,-51,75,-0.7293651671317393],[123,-51,76,-0.7291060527256319],[123,-51,77,-0.7288494262499954],[123,-51,78,-0.7285952918455355],[123,-51,79,-0.7283436535533188],[123,-50,64,-0.732498993197116],[123,-50,65,-0.7322123773044152],[123,-50,66,-0.7319281972573334],[123,-50,67,-0.7316464582703228],[123,-50,68,-0.7313671654629248],[123,-50,69,-0.7310903238593481],[123,-50,70,-0.7308159383880316],[123,-50,71,-0.7305440138812116],[123,-50,72,-0.7302745550744874],[123,-50,73,-0.7300075666064023],[123,-50,74,-0.7297430530179946],[123,-50,75,-0.7294810187523803],[123,-50,76,-0.7292214681543223],[123,-50,77,-0.7289644054698018],[123,-50,78,-0.7287098348455917],[123,-50,79,-0.7284577603288273],[123,-49,64,-0.7326198049952215],[123,-49,65,-0.7323327540707778],[123,-49,66,-0.7320481389066194],[123,-49,67,-0.7317659647232351],[123,-49,68,-0.7314862366462057],[123,-49,69,-0.7312089597057818],[123,-49,70,-0.7309341388364464],[123,-49,71,-0.7306617788764826],[123,-49,72,-0.730391884567539],[123,-49,73,-0.7301244605542097],[123,-49,74,-0.7298595113835857],[123,-49,75,-0.7295970415048386],[123,-49,76,-0.7293370552687877],[123,-49,77,-0.7290795569274722],[123,-49,78,-0.7288245506337252],[123,-49,79,-0.7285720404407431],[123,-48,64,-0.7327407819073748],[123,-48,65,-0.7324532965287766],[123,-48,66,-0.7321682468233349],[123,-48,67,-0.7318856380175666],[123,-48,68,-0.7316054752430826],[123,-48,69,-0.7313277635361668],[123,-48,70,-0.7310525078373384],[123,-48,71,-0.7307797129909186],[123,-48,72,-0.7305093837445963],[123,-48,73,-0.7302415247490086],[123,-48,74,-0.7299761405572918],[123,-48,75,-0.7297132356246636],[123,-48,76,-0.7294528143079927],[123,-48,77,-0.7291948808653683],[123,-48,78,-0.728939439455676],[123,-48,79,-0.7286864941381653],[123,-47,64,-0.7328619241272454],[123,-47,65,-0.7325740048756951],[123,-47,66,-0.7322885212083597],[123,-47,67,-0.7320054783577747],[123,-47,68,-0.731724881461573],[123,-47,69,-0.7314467355620629],[123,-47,70,-0.7311710456057908],[123,-47,71,-0.7308978164431077],[123,-47,72,-0.7306270528277345],[123,-47,73,-0.7303587594163433],[123,-47,74,-0.7300929407681066],[123,-47,75,-0.7298296013442812],[123,-47,76,-0.7295687455077761],[123,-47,77,-0.7293103775227234],[123,-47,78,-0.7290545015540526],[123,-47,79,-0.7288011216670593],[123,-46,64,-0.7329832318453988],[123,-46,65,-0.7326948793057099],[123,-46,66,-0.7324089622594631],[123,-46,67,-0.7321254859452038],[123,-46,68,-0.7318444555065778],[123,-46,69,-0.7315658759919097],[123,-46,70,-0.7312897523537638],[123,-46,71,-0.7310160894485127],[123,-46,72,-0.730744892035901],[123,-46,73,-0.7304761647786265],[123,-46,74,-0.7302099122418907],[123,-46,75,-0.7299461388929807],[123,-46,76,-0.7296848491008378],[123,-46,77,-0.729426047135629],[123,-46,78,-0.7291697371683201],[123,-46,79,-0.7289159232702446],[123,-45,64,-0.7331047052492841],[123,-45,65,-0.7328159200098769],[123,-45,66,-0.7325295701712906],[123,-45,67,-0.7322456609780712],[123,-45,68,-0.7319641975798686],[123,-45,69,-0.7316851850310142],[123,-45,70,-0.7314086282900825],[123,-45,71,-0.7311345322194581],[123,-45,72,-0.7308629015849012],[123,-45,73,-0.7305937410551272],[123,-45,74,-0.7303270552013575],[123,-45,75,-0.7300628484969014],[123,-45,76,-0.7298011253167251],[123,-45,77,-0.7295418899370218],[123,-45,78,-0.7292851465347857],[123,-45,79,-0.7290308991873804],[123,-44,64,-0.7332263445232845],[123,-44,65,-0.732937127176184],[123,-44,66,-0.7326503451354163],[123,-44,67,-0.7323660036515194],[123,-44,68,-0.7320841078801383],[123,-44,69,-0.7318046628816024],[123,-44,70,-0.731527673620487],[123,-44,71,-0.7312531449651809],[123,-44,72,-0.7309810816874507],[123,-44,73,-0.730711488462021],[123,-44,74,-0.7304443698661247],[123,-44,75,-0.7301797303790853],[123,-44,76,-0.7299175743818851],[123,-44,77,-0.7296579061567355],[123,-44,78,-0.7294007298866512],[123,-44,79,-0.7291460496550182],[123,-43,64,-0.7333481498487057],[123,-43,65,-0.7330585009895372],[123,-43,66,-0.7327712873403294],[123,-43,67,-0.7324865141576031],[123,-43,68,-0.7322041866029891],[123,-43,69,-0.7319243097428058],[123,-43,70,-0.7316468885476209],[123,-43,71,-0.7313719278918182],[123,-43,72,-0.7310994325531621],[123,-43,73,-0.7308294072123778],[123,-43,74,-0.7305618564527013],[123,-43,75,-0.7302967847594619],[123,-43,76,-0.7300341965196495],[123,-43,77,-0.7297740960214862],[123,-43,78,-0.7295164874539988],[123,-43,79,-0.7292613749065873],[123,-42,64,-0.7334701214037619],[123,-42,65,-0.7331800416317482],[123,-42,66,-0.7328923969714215],[123,-42,67,-0.7326071926852757],[123,-42,68,-0.7323244339409188],[123,-42,69,-0.7320441258106489],[123,-42,70,-0.7317662732710172],[123,-42,71,-0.7314908812023935],[123,-42,72,-0.7312179543885315],[123,-42,73,-0.7309474975161483],[123,-42,74,-0.7306795151744745],[123,-42,75,-0.7304140118548366],[123,-42,76,-0.7301509919502243],[123,-42,77,-0.7298904597548612],[123,-42,78,-0.7296324194637784],[123,-42,79,-0.7293768751723824],[123,-41,64,-0.7335922593636284],[123,-41,65,-0.7333017492815864],[123,-41,66,-0.733013674211038],[123,-41,67,-0.7327280394204417],[123,-41,68,-0.7324448500833728],[123,-41,69,-0.7321641112781005],[123,-41,70,-0.73188582798715],[123,-41,71,-0.7316100050968687],[123,-41,72,-0.7313366473969904],[123,-41,73,-0.7310657595802157],[123,-41,74,-0.7307973462417611],[123,-41,75,-0.7305314118789416],[123,-41,76,-0.7302679608907382],[123,-41,77,-0.7300069975773682],[123,-41,78,-0.7297485261398587],[123,-41,79,-0.7294925506796144],[123,-40,64,-0.7337145639004206],[123,-40,65,-0.7334236241147576],[123,-40,66,-0.7331351192384583],[123,-40,67,-0.7328490545459359],[123,-40,68,-0.7325654352167237],[123,-40,69,-0.7322842663350531],[123,-40,70,-0.7320055528894145],[123,-40,71,-0.7317292997721234],[123,-40,72,-0.7314555117788852],[123,-40,73,-0.7311841936083749],[123,-40,74,-0.7309153498617866],[123,-40,75,-0.7306489850424149],[123,-40,76,-0.7303851035552241],[123,-40,77,-0.7301237097064166],[123,-40,78,-0.7298648077030069],[123,-40,79,-0.7296084016523898],[123,-39,64,-0.7338370351832179],[123,-39,65,-0.7335456663039284],[123,-39,66,-0.7332567322299183],[123,-39,67,-0.732970238241546],[123,-39,68,-0.7326861895242942],[123,-39,69,-0.7324045911683466],[123,-39,70,-0.7321254481681495],[123,-39,71,-0.7318487654219781],[123,-39,72,-0.7315745477315001],[123,-39,73,-0.7313027998013562],[123,-39,74,-0.7310335262387089],[123,-39,75,-0.7307667315528246],[123,-39,76,-0.7305024201546415],[123,-39,77,-0.7302405963563389],[123,-39,78,-0.7299812643709108],[123,-39,79,-0.7297244283117339],[123,-38,64,-0.7339596733780427],[123,-38,65,-0.7336678760187048],[123,-38,66,-0.7333785133585903],[123,-38,67,-0.7330915906839935],[123,-38,68,-0.7328071131863368],[123,-38,69,-0.7325250859617471],[123,-38,70,-0.7322455140106177],[123,-38,71,-0.7319684022371737],[123,-38,72,-0.7316937554490366],[123,-38,73,-0.7314215783568034],[123,-38,74,-0.7311518755735971],[123,-38,75,-0.7308846516146463],[123,-38,76,-0.730619910896855],[123,-38,77,-0.730357657738371],[123,-38,78,-0.7300978963581592],[123,-38,79,-0.7298406308755696],[123,-37,64,-0.7340824786479128],[123,-37,65,-0.7337902534256846],[123,-37,66,-0.733500462794635],[123,-37,67,-0.7332131120469846],[123,-37,68,-0.7329282063800857],[123,-37,69,-0.7326457508959995],[123,-37,70,-0.7323657506010564],[123,-37,71,-0.7320882104054227],[123,-37,72,-0.7318131351226645],[123,-37,73,-0.7315405294693269],[123,-37,74,-0.731270398064483],[123,-37,75,-0.7310027454293161],[123,-37,76,-0.730737575986687],[123,-37,77,-0.7304748940607031],[123,-37,78,-0.7302147038762921],[123,-37,79,-0.7299570095587692],[123,-36,64,-0.7342054511528276],[123,-36,65,-0.7339127986884442],[123,-36,66,-0.733622580705188],[123,-36,67,-0.7333348025011966],[123,-36,68,-0.7330494692797431],[123,-36,69,-0.7327665861488128],[123,-36,70,-0.7324861581206646],[123,-36,71,-0.7322081901113967],[123,-36,72,-0.7319326869405103],[123,-36,73,-0.731659653330489],[123,-36,74,-0.7313890939063483],[123,-36,75,-0.7311210131952168],[123,-36,76,-0.7308554156259034],[123,-36,77,-0.7305923055284667],[123,-36,78,-0.7303316871337883],[123,-36,79,-0.7300735645731402],[123,-35,64,-0.7343285910497563],[123,-35,65,-0.7340355119675253],[123,-35,66,-0.7337448672543471],[123,-35,67,-0.7334566622142663],[123,-35,68,-0.7331709020564667],[123,-35,69,-0.732887591894849],[123,-35,70,-0.7326067367475906],[123,-35,71,-0.7323283415367124],[123,-35,72,-0.7320524110876417],[123,-35,73,-0.7317789501287919],[123,-35,74,-0.7315079632911113],[123,-35,75,-0.7312394551076649],[123,-35,76,-0.7309734300132009],[123,-35,77,-0.7307098923437207],[123,-35,78,-0.7304488463360514],[123,-35,79,-0.7301902961274134],[123,-34,64,-0.7344518984926883],[123,-34,65,-0.7341583934204869],[123,-34,66,-0.7338673226032236],[123,-34,67,-0.7335786913508398],[123,-34,68,-0.7332925048784209],[123,-34,69,-0.7330087683057728],[123,-34,70,-0.7327274866569825],[123,-34,71,-0.7324486648599839],[123,-34,72,-0.7321723077461213],[123,-34,73,-0.7318984200497284],[123,-34,74,-0.7316270064076776],[123,-34,75,-0.7313580713589612],[123,-34,76,-0.7310916193442583],[123,-34,77,-0.7308276547055038],[123,-34,78,-0.7305661816854618],[123,-34,79,-0.7303072044272925],[123,-33,64,-0.7345753736326137],[123,-33,65,-0.7342814432018852],[123,-33,66,-0.7339899469099221],[123,-33,67,-0.7337008900725536],[123,-33,68,-0.7334142779107565],[123,-33,69,-0.7331301155502324],[123,-33,70,-0.7328484080209683],[123,-33,71,-0.7325691602568016],[123,-33,72,-0.7322923770949844],[123,-33,73,-0.7320180632757615],[123,-33,74,-0.7317462234419203],[123,-33,75,-0.7314768621383715],[123,-33,76,-0.7312099838117155],[123,-33,77,-0.7309455928098127],[123,-33,78,-0.7306836933813553],[123,-33,79,-0.7304242896754345],[123,-32,64,-0.7346990166175461],[123,-32,65,-0.7344046614632957],[123,-32,66,-0.734112740329564],[123,-32,67,-0.7338232585380571],[123,-32,68,-0.7335362213156339],[123,-32,69,-0.7332516337938821],[123,-32,70,-0.7329695010086789],[123,-32,71,-0.7326898278997558],[123,-32,72,-0.732412619310263],[123,-32,73,-0.7321378799863477],[123,-32,74,-0.7318656145767027],[123,-32,75,-0.7315958276321479],[123,-32,76,-0.7313285236051967],[123,-32,77,-0.7310637068496257],[123,-32,78,-0.7308013816200463],[123,-32,79,-0.7305415520714724],[123,-31,64,-0.7348228275925022],[123,-31,65,-0.7345280483532941],[123,-31,66,-0.734235703014266],[123,-31,67,-0.7339457969029918],[123,-31,68,-0.7336583352522024],[123,-31,69,-0.7333733231993614],[123,-31,70,-0.7330907657862269],[123,-31,71,-0.7328106679584151],[123,-31,72,-0.7325330345649648],[123,-31,73,-0.7322578703579157],[123,-31,74,-0.7319851799918573],[123,-31,75,-0.7317149680235095],[123,-31,76,-0.7314472389112896],[123,-31,77,-0.7311819970148814],[123,-31,78,-0.7309192465948067],[123,-31,79,-0.7306589918119937],[123,-30,64,-0.7349468066995537],[123,-30,65,-0.7346516040175066],[123,-30,66,-0.7343588351131929],[123,-30,67,-0.7340685053200434],[123,-30,68,-0.7337806198766514],[123,-30,69,-0.7334951839263472],[123,-30,70,-0.7332122025167591],[123,-30,71,-0.7329316805993789],[123,-30,72,-0.7326536230291242],[123,-30,73,-0.7323780345639183],[123,-30,74,-0.7321049198642376],[123,-30,75,-0.731834283492693],[123,-30,76,-0.7315661299135967],[123,-30,77,-0.7313004634925302],[123,-30,78,-0.7310372884959179],[123,-30,79,-0.7307766090905923],[123,-29,64,-0.7350709540778142],[123,-29,65,-0.7347753285985983],[123,-29,66,-0.7344821367725436],[123,-29,67,-0.7341913839389287],[123,-29,68,-0.7339030753421987],[123,-29,69,-0.7336172161315402],[123,-29,70,-0.7333338113604428],[123,-29,71,-0.7330528659862637],[123,-29,72,-0.7327743848697903],[123,-29,73,-0.7324983727748191],[123,-29,74,-0.7322248343677049],[123,-29,75,-0.73195377421694],[123,-29,76,-0.7316851967927219],[123,-29,77,-0.7314191064665218],[123,-29,78,-0.7311555075106564],[123,-29,79,-0.7308944040978551],[123,-28,64,-0.7351952698634259],[123,-28,65,-0.7348992222362585],[123,-28,66,-0.7346056081355385],[123,-28,67,-0.7343144329063819],[123,-28,68,-0.734025701799075],[123,-28,69,-0.7337394199686517],[123,-28,70,-0.7334555924744526],[123,-28,71,-0.7331742242796901],[123,-28,72,-0.7328953202510121],[123,-28,73,-0.7326188851580793],[123,-28,74,-0.7323449236731144],[123,-28,75,-0.7320734403704824],[123,-28,76,-0.7318044397262573],[123,-28,77,-0.7315379261177901],[123,-28,78,-0.7312739038232815],[123,-28,79,-0.7310123770213482],[123,-27,64,-0.7353197541896113],[123,-27,65,-0.7350232850672538],[123,-27,66,-0.7347292493424712],[123,-27,67,-0.7344376523662064],[123,-27,68,-0.7341484993945777],[123,-27,69,-0.7338617955884554],[123,-27,70,-0.7335775460130214],[123,-27,71,-0.7332957556373341],[123,-27,72,-0.7330164293338912],[123,-27,73,-0.7327395718782084],[123,-27,74,-0.7324651879483672],[123,-27,75,-0.7321932821245956],[123,-27,76,-0.7319238588888344],[123,-27,77,-0.7316569226243059],[123,-27,78,-0.7313924776150855],[123,-27,79,-0.7311305280456686],[123,-26,64,-0.7354444071866529],[123,-26,65,-0.7351475172254066],[123,-26,66,-0.7348530605306874],[123,-26,67,-0.734561042459255],[123,-26,68,-0.7342714682730492],[123,-26,69,-0.7339843431387669],[123,-26,70,-0.7336996721274212],[123,-26,71,-0.7334174602139063],[123,-26,72,-0.7331377122765608],[123,-26,73,-0.7328604330967448],[123,-26,74,-0.7325856273583894],[123,-26,75,-0.7323132996475761],[123,-26,76,-0.7320434544521036],[123,-26,77,-0.7317760961610559],[123,-26,78,-0.7315112290643738],[123,-26,79,-0.7312488573524226],[123,-25,64,-0.7355692289819169],[123,-25,65,-0.7352719188416189],[123,-25,66,-0.7349770418346088],[123,-25,67,-0.734684603323452],[123,-25,68,-0.7343946085759001],[123,-25,69,-0.7341070627644662],[123,-25,70,-0.7338219709659846],[123,-25,71,-0.7335393381611754],[123,-25,72,-0.7332591692342079],[123,-25,73,-0.7329814689722775],[123,-25,74,-0.7327062420651549],[123,-25,75,-0.7324334931047658],[123,-25,76,-0.732163226584757],[123,-25,77,-0.731895446900065],[123,-25,78,-0.7316301583464874],[123,-25,79,-0.7313673651202497],[123,-24,64,-0.7356942196998313],[123,-24,65,-0.7353964900438512],[123,-24,66,-0.7351011933857112],[123,-24,67,-0.7348083350937729],[123,-24,68,-0.7345179204415886],[123,-24,69,-0.7342299546074773],[123,-24,70,-0.7339444426740847],[123,-24,71,-0.7336613896279468],[123,-24,72,-0.7333808003590535],[123,-24,73,-0.7331026796604259],[123,-24,74,-0.7328270322276644],[123,-24,75,-0.7325538626585294],[123,-24,76,-0.7322831754525067],[123,-24,77,-0.7320149750103756],[123,-24,78,-0.7317492656337813],[123,-24,79,-0.7314860515248004],[123,-23,64,-0.7358193794619383],[123,-23,65,-0.7355212309571744],[123,-23,66,-0.735225515312578],[123,-23,67,-0.7349322379022962],[123,-23,68,-0.7346414040056719],[123,-23,69,-0.7343530188068199],[123,-23,70,-0.7340670873941869],[123,-23,71,-0.7337836147601147],[123,-23,72,-0.7335026058004037],[123,-23,73,-0.7332240653138912],[123,-23,74,-0.7329479980019976],[123,-23,75,-0.7326744084683079],[123,-23,76,-0.7324033012181375],[123,-23,77,-0.7321346806580995],[123,-23,78,-0.731868551095677],[123,-23,79,-0.7316049167387888],[123,-22,64,-0.7359447083868821],[123,-22,65,-0.7356461417037566],[123,-22,66,-0.7353500077408855],[123,-22,67,-0.7350563118781901],[123,-22,68,-0.7347650594007936],[123,-22,69,-0.7344762554985964],[123,-22,70,-0.7341899052658354],[123,-22,71,-0.7339060137006486],[123,-22,72,-0.7336245857046371],[123,-22,73,-0.7333456260824434],[123,-22,74,-0.7330691395412989],[123,-22,75,-0.7327951306906038],[123,-22,76,-0.7325236040414929],[123,-22,77,-0.7322545640064039],[123,-22,78,-0.7319880148986483],[123,-22,79,-0.7317239609319782],[123,-21,64,-0.7360702065903937],[123,-21,65,-0.7357712224028502],[123,-21,66,-0.7354746707933901],[123,-21,67,-0.7351805571476991],[123,-21,68,-0.7348888867566696],[123,-21,69,-0.7345996648159774],[123,-21,70,-0.7343128964256396],[123,-21,71,-0.7340285865895795],[123,-21,72,-0.7337467402151893],[123,-21,73,-0.733467362112907],[123,-21,74,-0.7331904569957646],[123,-21,75,-0.7329160294789676],[123,-21,76,-0.7326440840794611],[123,-21,77,-0.7323746252154976],[123,-21,78,-0.7321076572062079],[123,-21,79,-0.7318431842711677],[123,-20,64,-0.7361958741853445],[123,-20,65,-0.735896473170843],[123,-20,66,-0.7355995045899804],[123,-20,67,-0.7353049738341955],[123,-20,68,-0.7350128862001404],[123,-20,69,-0.7347232468892547],[123,-20,70,-0.7344360610073257],[123,-20,71,-0.7341513335640524],[123,-20,72,-0.7338690694726069],[123,-20,73,-0.7335892735492131],[123,-20,74,-0.7333119505126938],[123,-20,75,-0.7330371049840501],[123,-20,76,-0.7327647414860274],[123,-20,77,-0.7324948644426833],[123,-20,78,-0.7322274781789586],[123,-20,79,-0.7319625869202433],[123,-19,64,-0.7363217112817247],[123,-19,65,-0.736021894121238],[123,-19,66,-0.7357245092476558],[123,-19,67,-0.7354295620581597],[123,-19,68,-0.7351370578551497],[123,-19,69,-0.73484700184582],[123,-19,70,-0.734559399141717],[123,-19,71,-0.7342742547583045],[123,-19,72,-0.7339915736145254],[123,-19,73,-0.733711360532379],[123,-19,74,-0.7334336202364685],[123,-19,75,-0.7331583573535809],[123,-19,76,-0.7328855764122525],[123,-19,77,-0.7326152818423362],[123,-19,78,-0.7323474779745731],[123,-19,79,-0.7320821690401582],[123,-18,64,-0.7364477179866668],[123,-18,65,-0.7361474853646763],[123,-18,66,-0.7358496848805504],[123,-18,67,-0.7355543219372018],[123,-18,68,-0.7352614018427684],[123,-18,69,-0.7349709298101876],[123,-18,70,-0.7346829109567551],[123,-18,71,-0.7343973503036891],[123,-18,72,-0.7341142527756925],[123,-18,73,-0.73383362320053],[123,-18,74,-0.7335554663085755],[123,-18,75,-0.7332797867323917],[123,-18,76,-0.7330065890062956],[123,-18,77,-0.7327358775659264],[123,-18,78,-0.7324676567478157],[123,-18,79,-0.7322019307889539],[123,-17,64,-0.7365738944044242],[123,-17,65,-0.7362732470089166],[123,-17,66,-0.7359750315999111],[123,-17,67,-0.7356792535860415],[123,-17,68,-0.7353859182811725],[123,-17,69,-0.7350950309039741],[123,-17,70,-0.7348065965774803],[123,-17,71,-0.7345206203286537],[123,-17,72,-0.7342371070879466],[123,-17,73,-0.7339560616888791],[123,-17,74,-0.7336774888675852],[123,-17,75,-0.7334013932623941],[123,-17,76,-0.7331277794133935],[123,-17,77,-0.7328566517619982],[123,-17,78,-0.7325880146505215],[123,-17,79,-0.7323218723217395],[123,-16,64,-0.7367002406364241],[123,-16,65,-0.7363991791588866],[123,-16,66,-0.7361005495141507],[123,-16,67,-0.7358043571165603],[123,-16,68,-0.735510607285696],[123,-16,69,-0.7352193052459495],[123,-16,70,-0.734930456126083],[123,-16,71,-0.7346440649587923],[123,-16,72,-0.7343601366802692],[123,-16,73,-0.7340786761297785],[123,-16,74,-0.733799688049205],[123,-16,75,-0.7335231770826329],[123,-16,76,-0.7332491477759117],[123,-16,77,-0.7329776045762222],[123,-16,78,-0.7327085518316487],[123,-16,79,-0.7324419937907442],[123,-15,64,-0.7368267567812538],[123,-15,65,-0.7365252819166701],[123,-15,66,-0.736226238728834],[123,-15,67,-0.7359296326377877],[123,-15,68,-0.7356354689688169],[123,-15,69,-0.7353437529520246],[123,-15,70,-0.73505448972189],[123,-15,71,-0.734767684316832],[123,-15,72,-0.7344833416787713],[123,-15,73,-0.7342014666527068],[123,-15,74,-0.7339220639862637],[123,-15,75,-0.7336451383292719],[123,-15,76,-0.7333706942333317],[123,-15,77,-0.7330987361513805],[123,-15,78,-0.7328292684372643],[123,-15,79,-0.7325622953453026],[123,-14,64,-0.7369534429346462],[123,-14,65,-0.7366515553814932],[123,-14,66,-0.7363520993466632],[123,-14,67,-0.736055080255887],[123,-14,68,-0.7357605034401435],[123,-14,69,-0.7354683741352365],[123,-14,70,-0.7351786974813512],[123,-14,71,-0.734891478522619],[123,-14,72,-0.7346067222066787],[123,-14,73,-0.7343244333842537],[123,-14,74,-0.7340446168086986],[123,-14,75,-0.733767277135579],[123,-14,76,-0.7334924189222359],[123,-14,77,-0.7332200466273537],[123,-14,78,-0.7329501646105298],[123,-14,79,-0.7326827771318407],[123,-13,64,-0.7370802991895335],[123,-13,65,-0.7367779996497764],[123,-13,66,-0.7364781314675324],[123,-13,67,-0.7361807000742084],[123,-13,68,-0.7358857108064671],[123,-13,69,-0.7355931689058011],[123,-13,70,-0.7353030795180913],[123,-13,71,-0.7350154476931705],[123,-13,72,-0.7347302783843855],[123,-13,73,-0.734447576448173],[123,-13,74,-0.7341673466436075],[123,-13,75,-0.7338895936319795],[123,-13,76,-0.733614321976361],[123,-13,77,-0.7333415361411726],[123,-13,78,-0.7330712404917539],[123,-13,79,-0.7328034392939288],[123,-12,64,-0.737207325636033],[123,-12,65,-0.7369046148151213],[123,-12,66,-0.7366043351885112],[123,-12,67,-0.7363064921932752],[123,-12,68,-0.7360110911717477],[123,-12,69,-0.7357181373710995],[123,-12,70,-0.7354276359428961],[123,-12,71,-0.7351395919426615],[123,-12,72,-0.7348540103294392],[123,-12,73,-0.7345708959653693],[123,-12,74,-0.7342902536152349],[123,-12,75,-0.7340120879460418],[123,-12,76,-0.7337364035265825],[123,-12,77,-0.7334632048270042],[123,-12,78,-0.7331924962183782],[123,-12,79,-0.7329242819722661],[123,-11,64,-0.7373345223614328],[123,-11,65,-0.7370314009682963],[123,-11,66,-0.736730710603833],[123,-11,67,-0.7364324567107692],[123,-11,68,-0.7361366446371002],[123,-11,69,-0.7358432796356635],[123,-11,70,-0.7355523668636991],[123,-11,71,-0.7352639113824103],[123,-11,72,-0.7349779181565274],[123,-11,73,-0.7346943920538824],[123,-11,74,-0.7344133378449578],[123,-11,75,-0.7341347602024632],[123,-11,76,-0.733858663700902],[123,-11,77,-0.7335850528161374],[123,-11,78,-0.7333139319249631],[123,-11,79,-0.7330453053046679],[123,-10,64,-0.7374618894502452],[123,-10,65,-0.73715835819729],[123,-10,66,-0.7368572578049466],[123,-10,67,-0.736558593721584],[123,-10,68,-0.7362623713008469],[123,-10,69,-0.7359685958012292],[123,-10,70,-0.735677272385633],[123,-10,71,-0.7353884061209311],[123,-10,72,-0.7351020019775292],[123,-10,73,-0.7348180648289413],[123,-10,74,-0.7345365994513376],[123,-10,75,-0.7342576105231222],[123,-10,76,-0.7339811026244984],[123,-10,77,-0.7337070802370359],[123,-10,78,-0.7334355477432397],[123,-10,79,-0.7331665094261167],[123,-9,64,-0.7375894269841846],[123,-9,65,-0.7372854865872889],[123,-9,66,-0.7369839768804949],[123,-9,67,-0.7366849033178033],[123,-9,68,-0.7363882712584968],[123,-9,69,-0.7360940859667142],[123,-9,70,-0.7358023526110091],[123,-9,71,-0.7355130762639128],[123,-9,72,-0.7352262619014951],[123,-9,73,-0.7349419144029417],[123,-9,74,-0.7346600385500999],[123,-9,75,-0.7343806390270574],[123,-9,76,-0.7341037204197076],[123,-9,77,-0.7338292872153157],[123,-9,78,-0.7335573438020888],[123,-9,79,-0.7332878944687415],[123,-8,64,-0.7377171350421919],[123,-8,65,-0.7374127862207012],[123,-8,66,-0.7371108679163385],[123,-8,67,-0.7368113855887244],[123,-8,68,-0.736514344602768],[123,-8,69,-0.7362197502282419],[123,-8,70,-0.7359276076393404],[123,-8,71,-0.7356379219142415],[123,-8,72,-0.7353506980346692],[123,-8,73,-0.7350659408854693],[123,-8,74,-0.7347836552541559],[123,-8,75,-0.7345038458304899],[123,-8,76,-0.734226517206044],[123,-8,77,-0.7339516738737689],[123,-8,78,-0.7336793202275635],[123,-8,79,-0.7334094605618402],[123,-7,64,-0.7378450137004119],[123,-7,65,-0.737540257177135],[123,-7,66,-0.7372379309955335],[123,-7,67,-0.7369380406208355],[123,-7,68,-0.7366405914235657],[123,-7,69,-0.736345588679119],[123,-7,70,-0.7360530375673189],[123,-7,71,-0.7357629431719794],[123,-7,72,-0.7354753104804675],[123,-7,73,-0.7351901443832782],[123,-7,74,-0.7349074496735818],[123,-7,75,-0.7346272310468018],[123,-7,76,-0.7343494931001797],[123,-7,77,-0.7340742403323414],[123,-7,78,-0.7338014771428674],[123,-7,79,-0.7335312078318573],[123,-6,64,-0.7379730630322465],[123,-6,65,-0.737667899533452],[123,-6,66,-0.737365166198385],[123,-6,67,-0.7370648684978703],[123,-6,68,-0.7367670118080365],[123,-6,69,-0.7364716014098891],[123,-6,70,-0.7361786424888697],[123,-6,71,-0.7358881401344175],[123,-6,72,-0.7356000993395309],[123,-6,73,-0.7353145250003437],[123,-6,74,-0.7350314219156712],[123,-6,75,-0.734750794786589],[123,-6,76,-0.7344726482159969],[123,-6,77,-0.7341969867081856],[123,-6,78,-0.7339238146684068],[123,-6,79,-0.7336531364024375],[123,-5,64,-0.7381012831083411],[123,-5,65,-0.7377957133637522],[123,-5,66,-0.7374925736024328],[123,-5,67,-0.7371918693007928],[123,-5,68,-0.7368936058405527],[123,-5,69,-0.736597788508318],[123,-5,70,-0.7363044224951364],[123,-5,71,-0.736013512896061],[123,-5,72,-0.7357250647097108],[123,-5,73,-0.7354390828378473],[123,-5,74,-0.7351555720849203],[123,-5,75,-0.7348745371576465],[123,-5,76,-0.7345959826645734],[123,-5,77,-0.734319913115646],[123,-5,78,-0.734046332921777],[123,-5,79,-0.7337752463944105],[123,-4,64,-0.7382296739965699],[123,-4,65,-0.7379236987393605],[123,-4,66,-0.7376201532824371],[123,-4,67,-0.7373190431077832],[123,-4,68,-0.7370203736026995],[123,-4,69,-0.7367241500593795],[123,-4,70,-0.7364303776744662],[123,-4,71,-0.7361390615486152],[123,-4,72,-0.7358502066860549],[123,-4,73,-0.7355638179941637],[123,-4,74,-0.7352799002830146],[123,-4,75,-0.7349984582649546],[123,-4,76,-0.7347194965541685],[123,-4,77,-0.7344430196662453],[123,-4,78,-0.7341690320177475],[123,-4,79,-0.7338975379257766],[123,-3,64,-0.7383582357620898],[123,-3,65,-0.7380518557288797],[123,-3,66,-0.7377479053104321],[123,-3,67,-0.7374463899942909],[123,-3,68,-0.7371473151733265],[123,-3,69,-0.7368506861453085],[123,-3,70,-0.7365565081124636],[123,-3,71,-0.7362647861810385],[123,-3,72,-0.7359755253608604],[123,-3,73,-0.7356887305649124],[123,-3,74,-0.7354044066088804],[123,-3,75,-0.735122558210731],[123,-3,76,-0.7348431899902754],[123,-3,77,-0.7345663064687358],[123,-3,78,-0.7342919120683147],[123,-3,79,-0.7340200111117601],[123,-2,64,-0.7384869684673175],[123,-2,65,-0.7381801843981688],[123,-2,66,-0.7378758297557029],[123,-2,67,-0.7375739100330133],[123,-2,68,-0.7372744306285274],[123,-2,69,-0.7369773968455794],[123,-2,70,-0.7366828138919685],[123,-2,71,-0.736390686879521],[123,-2,72,-0.7361010208236511],[123,-2,73,-0.7358138206429363],[123,-2,74,-0.7355290911586642],[123,-2,75,-0.7352468370944097],[123,-2,76,-0.7349670630755998],[123,-2,77,-0.7346897736290792],[123,-2,78,-0.73441497318268],[123,-2,79,-0.7341426660647863],[123,-1,64,-0.7386158721719541],[123,-1,65,-0.7383086848103663],[123,-1,66,-0.7380039266848106],[123,-1,67,-0.7377016032939183],[123,-1,68,-0.737401720041662],[123,-1,69,-0.7371042822369289],[123,-1,70,-0.736809295093079],[123,-1,71,-0.7365167637275067],[123,-1,72,-0.7362266931612018],[123,-1,73,-0.7359390883183253],[123,-1,74,-0.7356539540257548],[123,-1,75,-0.7353712950126633],[123,-1,76,-0.7350911159100824],[123,-1,77,-0.7348134212504684],[123,-1,78,-0.7345382154672727],[123,-1,79,-0.734265502894505],[123,0,64,-0.7387449469329623],[123,0,65,-0.7384373570258678],[123,0,66,-0.7381321961615692],[123,0,67,-0.7378294698442229],[123,0,68,-0.7375291834833352],[123,0,69,-0.7372313423933345],[123,0,70,-0.7369359517931297],[123,0,71,-0.7366430168056719],[123,0,72,-0.7363525424575156],[123,0,73,-0.7360645336783931],[123,0,74,-0.7357789953007619],[123,0,75,-0.7354959320593811],[123,0,76,-0.7352153485908764],[123,0,77,-0.7349372494333057],[123,0,78,-0.7346616390257279],[123,0,79,-0.7343885217077681],[123,1,64,-0.7388741928046203],[123,1,65,-0.7385662011023804],[123,1,66,-0.7382606382470989],[123,1,67,-0.7379575097484462],[123,1,68,-0.7376568210214495],[123,1,69,-0.7373585773860668],[123,1,70,-0.7370627840667445],[123,1,71,-0.7367694461919787],[123,1,72,-0.7364785687938767],[123,1,73,-0.7361901568077316],[123,1,74,-0.7359042150715686],[123,1,75,-0.7356207483257226],[123,1,76,-0.7353397612124022],[123,1,77,-0.7350612582752555],[123,1,78,-0.7347852439589392],[123,1,79,-0.734511722608683],[123,2,64,-0.7390036098385069],[123,2,65,-0.7386952170949068],[123,2,66,-0.7383892529998125],[123,2,67,-0.7380857230683948],[123,2,68,-0.737784632721191],[123,2,69,-0.7374859872836763],[123,2,70,-0.7371897919858228],[123,2,71,-0.7368960519616602],[123,2,72,-0.7366047722488368],[123,2,73,-0.736315957788195],[123,2,74,-0.7360296134233171],[123,2,75,-0.7357457439001021],[123,2,76,-0.7354643538663307],[123,2,77,-0.7351854478712303],[123,2,78,-0.7349090303650445],[123,2,79,-0.7346351056985971],[123,3,64,-0.7391331980834878],[123,3,65,-0.7388244050557329],[123,3,66,-0.7385180404753999],[123,3,67,-0.7382141098631491],[123,3,68,-0.7379126186450147],[123,3,69,-0.737613572151978],[123,3,70,-0.7373169756195244],[123,3,71,-0.7370228341872056],[123,3,72,-0.7367311528981997],[123,3,73,-0.7364419366988866],[123,3,74,-0.7361551904383941],[123,3,75,-0.7358709188681747],[123,3,76,-0.7355891266415698],[123,3,77,-0.7353098183133755],[123,3,78,-0.735032998339411],[123,3,79,-0.7347586710760838],[123,4,64,-0.7392629575857685],[123,4,65,-0.7389537650344791],[123,4,66,-0.7386470007268825],[123,4,67,-0.7383426701891156],[123,4,68,-0.7380407788526981],[123,4,69,-0.7377413320541047],[123,4,70,-0.7374443350343229],[123,4,71,-0.7371497929384141],[123,4,72,-0.7368577108150747],[123,4,73,-0.7365680936162108],[123,4,74,-0.7362809461964842],[123,4,75,-0.7359962733128894],[123,4,76,-0.7357140796243178],[123,4,77,-0.7354343696911225],[123,4,78,-0.7351571479746883],[123,4,79,-0.7348824188369951],[123,5,64,-0.7393928883888728],[123,5,65,-0.7390832970780798],[123,5,66,-0.7387761338045904],[123,5,67,-0.7384714041000059],[123,5,68,-0.738169113401319],[123,5,69,-0.7378692670504858],[123,5,70,-0.7375718702939837],[123,5,71,-0.7372769282823727],[123,5,72,-0.736984446069855],[123,5,73,-0.7366944286138518],[123,5,74,-0.7364068807745472],[123,5,75,-0.7361218073144666],[123,5,76,-0.73583921289804],[123,5,77,-0.7355591020911667],[123,5,78,-0.7352814793607861],[123,5,79,-0.7350063490744398],[123,6,64,-0.7395229905336655],[123,6,65,-0.7392130012308061],[123,6,66,-0.738905439756186],[123,6,67,-0.7386003116468591],[123,6,68,-0.7382976223452784],[123,6,69,-0.7379973771988694],[123,6,70,-0.7376995814595875],[123,6,71,-0.7374042402834786],[123,6,72,-0.7371113587302401],[123,6,73,-0.736820941762796],[123,6,74,-0.7365329942468415],[123,6,75,-0.7362475209504213],[123,6,76,-0.7359645265434926],[123,6,77,-0.7356840155974906],[123,6,78,-0.7354059925848973],[123,6,79,-0.7351304618788056],[123,7,64,-0.7396532640583307],[123,7,65,-0.7393428775342437],[123,7,66,-0.7390349186266424],[123,7,67,-0.7387293928780202],[123,7,68,-0.7384263057362787],[123,7,69,-0.7381256625543006],[123,7,70,-0.7378274685895068],[123,7,71,-0.7375317290034178],[123,7,72,-0.737238448861214],[123,7,73,-0.7369476331313102],[123,7,74,-0.7366592866849015],[123,7,75,-0.7363734142955407],[123,7,76,-0.7360900206387005],[123,7,77,-0.7358091102913407],[123,7,78,-0.7355306877314752],[123,7,79,-0.7352547573377373],[123,8,64,-0.739783708998425],[123,8,65,-0.7394729260273462],[123,8,66,-0.7391645704582954],[123,8,67,-0.7388586478391932],[123,8,68,-0.7385551636233771],[123,8,69,-0.7382541231691748],[123,8,70,-0.737955531739461],[123,8,71,-0.7376593945012183],[123,8,72,-0.7373657165250981],[123,8,73,-0.7370745027849948],[123,8,74,-0.7367857581575916],[123,8,75,-0.7364994874219373],[123,8,76,-0.7362156952590098],[123,8,77,-0.7359343862512813],[123,8,78,-0.7356555648822873],[123,8,79,-0.7353792355361901],[123,9,64,-0.7399143253868642],[123,9,65,-0.7396031467464214],[123,9,66,-0.7392943952908306],[123,9,67,-0.7389880765734267],[123,9,68,-0.738684196052971],[123,9,69,-0.7383827590932237],[123,9,70,-0.7380837709625006],[123,9,71,-0.737787236833235],[123,9,72,-0.737493161781537],[123,9,73,-0.7372015507867691],[123,9,74,-0.7369124087310903],[123,9,75,-0.7366257403990347],[123,9,76,-0.7363415504770732],[123,9,77,-0.7360598435531799],[123,9,78,-0.7357806241164001],[123,9,79,-0.7355038965564142],[123,10,64,-0.7400451132539064],[123,10,65,-0.7397335397251156],[123,10,66,-0.7394243931612676],[123,10,67,-0.7391176791210994],[123,10,68,-0.7388134030687832],[123,10,69,-0.7385115703734992],[123,10,70,-0.7382121863089927],[123,10,71,-0.737915256053135],[123,10,72,-0.7376207846874834],[123,10,73,-0.7373287771968559],[123,10,74,-0.7370392384688765],[123,10,75,-0.7367521732935521],[123,10,76,-0.7364675863628358],[123,10,77,-0.7361854822701916],[123,10,78,-0.7359058655101639],[123,10,79,-0.7356287404779401],[123,11,64,-0.7401760726272081],[123,11,65,-0.739864104994468],[123,11,66,-0.7395545641040144],[123,11,67,-0.7392474555199733],[123,11,68,-0.7389427847119152],[123,11,69,-0.7386405570544283],[123,11,70,-0.7383407778266748],[123,11,71,-0.7380434522119518],[123,11,72,-0.7377485852972516],[123,11,73,-0.7374561820728361],[123,11,74,-0.7371662474317823],[123,11,75,-0.7368787861695582],[123,11,76,-0.7365938029835875],[123,11,77,-0.736311302472813],[123,11,78,-0.7360312891372668],[123,11,79,-0.7357537673776322],[123,12,64,-0.7403072035318004],[123,12,65,-0.7399948425828882],[123,12,66,-0.7396849081508444],[123,12,67,-0.7393774058051713],[123,12,68,-0.7390723410208255],[123,12,69,-0.7387697191777903],[123,12,70,-0.7384695455606322],[123,12,71,-0.7381718253580621],[123,12,72,-0.7378765636624953],[123,12,73,-0.7375837654696255],[123,12,74,-0.7372934356779703],[123,12,75,-0.7370055790884482],[123,12,76,-0.736720200403941],[123,12,77,-0.7364373042288596],[123,12,78,-0.7361568950687116],[123,12,79,-0.7358789773296655],[123,13,64,-0.7404385059901126],[123,13,65,-0.7401257525161793],[123,13,66,-0.7398154253309202],[123,13,67,-0.7395075300092013],[123,13,68,-0.7392020720313525],[123,13,69,-0.7388990567827396],[123,13,70,-0.7385984895533211],[123,13,71,-0.7383003755372094],[123,13,72,-0.7380047198322304],[123,13,73,-0.7377115274394976],[123,13,74,-0.7374208032629579],[123,13,75,-0.7371325521089674],[123,13,76,-0.7368467786858555],[123,13,77,-0.7365634876034884],[123,13,78,-0.7362826833728391],[123,13,79,-0.7360043704055493],[123,14,64,-0.7405699800219505],[123,14,65,-0.7402568348175156],[123,14,66,-0.7399461156707708],[123,14,67,-0.7396378281619329],[123,14,68,-0.7393319777766918],[123,14,69,-0.7390285699057835],[123,14,70,-0.7387276098445461],[123,14,71,-0.738429102792481],[123,14,72,-0.7381330538528125],[123,14,73,-0.7378394680320619],[123,14,74,-0.7375483502395929],[123,14,75,-0.7372597052871882],[123,14,76,-0.7369735378886121],[123,14,77,-0.7366898526591756],[123,14,78,-0.736408654115305],[123,14,79,-0.7361299466741043],[123,15,64,-0.7407016256445494],[123,15,65,-0.740388089507497],[123,15,66,-0.7400769791943461],[123,15,67,-0.7397683002906514],[123,15,68,-0.7394620582874503],[123,15,69,-0.7391582585808363],[123,15,70,-0.7388569064715144],[123,15,71,-0.7385580071643625],[123,15,72,-0.7382615657679908],[123,15,73,-0.7379675872943168],[123,15,74,-0.7376760766581087],[123,15,75,-0.7373870386765636],[123,15,76,-0.7371004780688695],[123,15,77,-0.7368163994557703],[123,15,78,-0.7365348073591338],[123,15,79,-0.7362557062015154],[123,16,64,-0.7408334428725601],[123,16,65,-0.7405195166041331],[123,16,66,-0.740208015923001],[123,16,67,-0.7398989464200431],[123,16,68,-0.7395923135916315],[123,16,69,-0.7392881228392041],[123,16,70,-0.7389863794688202],[123,16,71,-0.738687088690722],[123,16,72,-0.7383902556188935],[123,16,73,-0.7380958852706351],[123,16,74,-0.7378039825661085],[123,16,75,-0.7375145523279129],[123,16,76,-0.7372275992806481],[123,16,77,-0.736943128050479],[123,16,78,-0.736661143164704],[123,16,79,-0.7363816490513178],[123,17,64,-0.740965431718033],[123,17,65,-0.7406511161228293],[123,17,66,-0.7403392258754815],[123,17,67,-0.7400297665721803],[123,17,68,-0.7397227437146198],[123,17,69,-0.7394181627095693],[123,17,70,-0.7391160288684299],[123,17,71,-0.7388163474067955],[123,17,72,-0.7385191234440112],[123,17,73,-0.7382243620027487],[123,17,74,-0.7379320680085502],[123,17,75,-0.7376422462894054],[123,17,76,-0.7373549015753142],[123,17,77,-0.7370700384978506],[123,17,78,-0.7367876615897317],[123,17,79,-0.7365077752843806],[123,18,64,-0.7410975921904731],[123,18,65,-0.7407828880764404],[123,18,66,-0.740470609067978],[123,18,67,-0.7401607607665753],[123,18,68,-0.739853348679235],[123,18,69,-0.7395483782180453],[123,18,70,-0.7392458546997364],[123,18,71,-0.7389457833452406],[123,18,72,-0.7386481692792526],[123,18,73,-0.7383530175298022],[123,18,74,-0.7380603330278005],[123,18,75,-0.7377701206066155],[123,18,76,-0.7374823850016348],[123,18,77,-0.7371971308498302],[123,18,78,-0.7369143626893259],[123,18,79,-0.7366340849589614],[123,19,64,-0.7412299242968248],[123,19,65,-0.7409148324752555],[123,19,66,-0.7406021655141108],[123,19,67,-0.7402919290201654],[123,19,68,-0.7399841285057176],[123,19,69,-0.7396787693881615],[123,19,70,-0.7393758569895434],[123,19,71,-0.7390753965361222],[123,19,72,-0.7387773931579282],[123,19,73,-0.7384818518883385],[123,19,74,-0.7381887776636198],[123,19,75,-0.7378981753225065],[123,19,76,-0.7376100496057619],[123,19,77,-0.7373244051557438],[123,19,78,-0.7370412465159719],[123,19,79,-0.7367605781306906],[123,20,64,-0.7413624280414566],[123,20,65,-0.7410469493269831],[123,20,66,-0.7407338952249145],[123,20,67,-0.7404232713472972],[123,20,68,-0.7401150832117125],[123,20,69,-0.7398093362408472],[123,20,70,-0.7395060357620509],[123,20,71,-0.7392051870068956],[123,20,72,-0.7389067951107361],[123,20,73,-0.7386108651122825],[123,20,74,-0.7383174019531462],[123,20,75,-0.7380264104774152],[123,20,76,-0.737737895431217],[123,20,77,-0.737451861462283],[123,20,78,-0.7371683131195166],[123,20,79,-0.7368872548525557],[123,21,64,-0.7414951034262156],[123,21,65,-0.7411792386368055],[123,21,66,-0.7408657982088926],[123,21,67,-0.7405547877597822],[123,21,68,-0.7402462128123246],[123,21,69,-0.7399400787944868],[123,21,70,-0.7396363910389083],[123,21,71,-0.7393351547824623],[123,21,72,-0.7390363751658142],[123,21,73,-0.7387400572329961],[123,21,74,-0.7384462059309505],[123,21,75,-0.7381548261091071],[123,21,76,-0.7378659225189457],[123,21,77,-0.737579499813559],[123,21,78,-0.7372955625472226],[123,21,79,-0.7370141151749559],[123,22,64,-0.7416279504504046],[123,22,65,-0.7413117004073556],[123,22,66,-0.7409978744719947],[123,22,67,-0.7406864782668723],[123,22,68,-0.7403775173200948],[123,22,69,-0.740070997064896],[123,22,70,-0.7397669228391928],[123,22,71,-0.7394652998851461],[123,22,72,-0.7391661333487198],[123,22,73,-0.7388694282792546],[123,22,74,-0.7385751896290125],[123,22,75,-0.7382834222527525],[123,22,76,-0.7379941309072937],[123,22,77,-0.7377073202510792],[123,22,78,-0.7374229948437443],[123,22,79,-0.7371411591456785],[123,23,64,-0.7417609691108057],[123,23,65,-0.7414443346387409],[123,23,66,-0.7411301240176397],[123,23,67,-0.7408183428752845],[123,23,68,-0.7405089967450241],[123,23,69,-0.7402020910653462],[123,23,70,-0.7398976311794316],[123,23,71,-0.7395956223347168],[123,23,72,-0.7392960696824509],[123,23,73,-0.7389989782772706],[123,23,74,-0.7387043530767448],[123,23,75,-0.7384121989409493],[123,23,76,-0.7381225206320312],[123,23,77,-0.7378353228137711],[123,23,78,-0.737550610051152],[123,23,79,-0.737268386809922],[123,24,64,-0.741894159401657],[123,24,65,-0.7415771413285198],[123,24,66,-0.7412625468466929],[123,24,67,-0.7409503815891768],[123,24,68,-0.74064065109455],[123,24,69,-0.7403333608065402],[123,24,70,-0.7400285160735798],[123,24,71,-0.7397261221483667],[123,24,72,-0.7394261841874233],[123,24,73,-0.7391287072506698],[123,24,74,-0.7388336963009686],[123,24,75,-0.738541156203701],[123,24,76,-0.7382510917263285],[123,24,77,-0.7379635075379578],[123,24,78,-0.7376784082089081],[123,24,79,-0.7373957982102733],[123,25,64,-0.7420275213147077],[123,25,65,-0.7417101204717569],[123,25,66,-0.7413951429575203],[123,25,67,-0.7410825944102037],[123,25,68,-0.7407724803736013],[123,25,69,-0.7404648062966678],[123,25,70,-0.7401595775330736],[123,25,71,-0.7398567993407658],[123,25,72,-0.7395564768815264],[123,25,73,-0.7392586152205461],[123,25,74,-0.7389632193259696],[123,25,75,-0.7386702940684697],[123,25,76,-0.7383798442208112],[123,25,77,-0.7380918744574139],[123,25,78,-0.7378063893539208],[123,25,79,-0.7375233933867613],[123,26,64,-0.7421610548392024],[123,26,65,-0.7418432720610069],[123,26,66,-0.7415279123459739],[123,26,67,-0.7412149813375003],[123,26,68,-0.7409044845845827],[123,26,69,-0.7405964275413895],[123,26,70,-0.7402908155668161],[123,26,71,-0.7399876539240451],[123,26,72,-0.7396869477801058],[123,26,73,-0.7393887022054466],[123,26,74,-0.739092922173481],[123,26,75,-0.7387996125601617],[123,26,76,-0.7385087781435437],[123,26,77,-0.7382204236033483],[123,26,78,-0.7379345535205304],[123,26,79,-0.7376511723768415],[123,27,64,-0.7422947599618657],[123,27,65,-0.7419765960862997],[123,27,66,-0.7416608550053754],[123,27,67,-0.7413475423676666],[123,27,68,-0.7410366637273593],[123,27,69,-0.7407282245438217],[123,27,70,-0.7404222301811608],[123,27,71,-0.7401186859077823],[123,27,72,-0.739817596895949],[123,27,73,-0.7395189682213548],[123,27,74,-0.7392228048626688],[123,27,75,-0.738929111701111],[123,27,76,-0.7386378935200146],[123,27,77,-0.7383491550043897],[123,27,78,-0.738062900740491],[123,27,79,-0.7377791352153804],[123,28,64,-0.7424286366669572],[123,28,65,-0.7421100925351953],[123,28,66,-0.7417939709265714],[123,28,67,-0.7414802774948228],[123,28,68,-0.7411690177993109],[123,28,69,-0.7408601973045905],[123,28,70,-0.7405538213799672],[123,28,71,-0.7402498952990555],[123,28,72,-0.7399484242393397],[123,28,73,-0.7396494132817456],[123,28,74,-0.7393528674101857],[123,28,75,-0.7390587915111344],[123,28,76,-0.7387671903731905],[123,28,77,-0.7384780686866403],[123,28,78,-0.7381914310430269],[123,28,79,-0.7379072819347099],[123,29,64,-0.7425626849362482],[123,29,65,-0.7422437613927603],[123,29,66,-0.7419272600979103],[123,29,67,-0.7416131867105857],[123,29,68,-0.7413015467953095],[123,29,69,-0.7409923458218095],[123,29,70,-0.740685589164576],[123,29,71,-0.7403812821024205],[123,29,72,-0.7400794298180342],[123,29,73,-0.7397800373975625],[123,29,74,-0.7394831098301482],[123,29,75,-0.7391886520075075],[123,29,76,-0.7388966687234922],[123,29,77,-0.7386071646736532],[123,29,78,-0.7383201444548081],[123,29,79,-0.7380356125646034],[123,30,64,-0.742696904749045],[123,30,65,-0.7423776026415908],[123,30,66,-0.7420607225052653],[123,30,67,-0.7417462700040921],[123,30,68,-0.7414342507077417],[123,30,69,-0.7411246700911023],[123,30,70,-0.7408175335338347],[123,30,71,-0.7405128463199336],[123,30,72,-0.740210613637285],[123,30,73,-0.7399108405772402],[123,30,74,-0.7396135321341598],[123,30,75,-0.7393186932049888],[123,30,76,-0.7390263285888194],[123,30,77,-0.7387364429864545],[123,30,78,-0.7384490409999741],[123,30,79,-0.7381641271322995],[123,31,64,-0.7428312960821661],[123,31,65,-0.7425116162617904],[123,31,66,-0.7421943581320116],[123,31,67,-0.7418795273619756],[123,31,68,-0.7415671295264867],[123,31,69,-0.7412571701055791],[123,31,70,-0.7409496544840718],[123,31,71,-0.7406445879511286],[123,31,72,-0.7403419756998171],[123,31,73,-0.7400418228266816],[123,31,74,-0.739744134331287],[123,31,75,-0.7394489151157952],[123,31,76,-0.7391561699845256],[123,31,77,-0.7388659036435201],[123,31,78,-0.7385781207001101],[123,31,79,-0.7382928256624781],[123,32,64,-0.7429658589099968],[123,32,65,-0.742645802231024],[123,32,66,-0.7423281669590809],[123,32,67,-0.7420129587684212],[123,32,68,-0.7417001832389697],[123,32,69,-0.7413898458558926],[123,32,70,-0.7410819520091532],[123,32,71,-0.7407765069930714],[123,32,72,-0.740473516005883],[123,32,73,-0.7401729841493119],[123,32,74,-0.739874916428115],[123,32,75,-0.7395793177496571],[123,32,76,-0.7392861929234731],[123,32,77,-0.7389955466608311],[123,32,78,-0.738707383574301],[123,32,79,-0.7384217081773149],[123,33,64,-0.7431005932044732],[123,33,65,-0.7427801605245028],[123,33,66,-0.7424621489649458],[123,33,67,-0.7421465642051502],[123,33,68,-0.741833411830147],[123,33,69,-0.7415226973302209],[123,33,70,-0.7412144261004656],[123,33,71,-0.740908603440344],[123,33,72,-0.7406052345532464],[123,33,73,-0.7403043245460635],[123,33,74,-0.7400058784287307],[123,33,75,-0.7397099011138031],[123,33,76,-0.7394163974160178],[123,33,77,-0.7391253720518574],[123,33,78,-0.7388368296391167],[123,33,79,-0.7385507746964657],[123,34,64,-0.7432354989350676],[123,34,65,-0.7429146911149682],[123,34,66,-0.7425963041256043],[123,34,67,-0.7422803436514038],[123,34,68,-0.7419668152824901],[123,34,69,-0.7416557245142525],[123,34,70,-0.7413470767469017],[123,34,71,-0.7410408772850295],[123,34,72,-0.7407371313371676],[123,34,73,-0.74043584401536],[123,34,74,-0.7401370203347076],[123,34,75,-0.739840665212943],[123,34,76,-0.7395467834699929],[123,34,77,-0.7392553798275407],[123,34,78,-0.7389664589085949],[123,34,79,-0.7386800252370503],[123,35,64,-0.7433705760688426],[123,35,65,-0.7430493939727474],[123,35,66,-0.7427306324146348],[123,35,67,-0.7424142970839989],[123,35,68,-0.742100393576041],[123,35,69,-0.7417889273912412],[123,35,70,-0.7414799039349138],[123,35,71,-0.7411733285167659],[123,35,72,-0.7408692063504567],[123,35,73,-0.7405675425531706],[123,35,74,-0.7402683421451606],[123,35,75,-0.7399716100493239],[123,35,76,-0.7396773510907634],[123,35,77,-0.7393855699963515],[123,35,78,-0.739096271394297],[123,35,79,-0.7388094598137074],[123,36,64,-0.7435058245704282],[123,36,65,-0.743184269065729],[123,36,66,-0.7428651338031722],[123,36,67,-0.7425484244773032],[123,36,68,-0.7422341466883878],[123,36,69,-0.7419223059419828],[123,36,70,-0.7416129076484915],[123,36,71,-0.7413059571227232],[123,36,72,-0.7410014595834512],[123,36,73,-0.7406994201529868],[123,36,74,-0.7403998438567219],[123,36,75,-0.7401027356227051],[123,36,76,-0.7398081002812028],[123,36,77,-0.7395159425642633],[123,36,78,-0.7392262671052834],[123,36,79,-0.7389390784385703],[123,37,64,-0.743641244402045],[123,37,65,-0.7433193163593877],[123,37,66,-0.7429998082599321],[123,37,67,-0.7426827258032607],[123,37,68,-0.7423680745946892],[123,37,69,-0.7420558601448375],[123,37,70,-0.7417460878691843],[123,37,71,-0.7414387630876267],[123,37,72,-0.7411338910240391],[123,37,73,-0.740831476805846],[123,37,74,-0.7405315254635649],[123,37,75,-0.7402340419303827],[123,37,76,-0.7399390310417164],[123,37,77,-0.7396464975347772],[123,37,78,-0.739356446048137],[123,37,79,-0.739068881121291],[123,38,64,-0.743776835523481],[123,38,65,-0.7434545358167599],[123,38,66,-0.7431346557511864],[123,38,67,-0.7428172010313661],[123,38,68,-0.7425021772676502],[123,38,69,-0.7421895899757074],[123,38,70,-0.7418794445760778],[123,38,71,-0.7415717463937332],[123,38,72,-0.7412665006576351],[123,38,73,-0.7409637125003072],[123,38,74,-0.7406633869573799],[123,38,75,-0.7403655289671649],[123,38,76,-0.7400701433702168],[123,38,77,-0.7397772349088969],[123,38,78,-0.7394868082269398],[123,38,79,-0.7391988678690151],[123,39,64,-0.743912597892146],[123,39,65,-0.743589927398499],[123,39,66,-0.7432696762408193],[123,39,67,-0.7429518501287209],[123,39,68,-0.7426364546775771],[123,39,69,-0.7423234954080907],[123,39,70,-0.7420129777458497],[123,39,71,-0.7417049070208862],[123,39,72,-0.7413992884672349],[123,39,73,-0.7410961272225062],[123,39,74,-0.7407954283274292],[123,39,75,-0.7404971967254274],[123,39,76,-0.7402014372621798],[123,39,77,-0.7399081546851849],[123,39,78,-0.7396173536433268],[123,39,79,-0.7393290386864377],[123,40,64,-0.7440485314630572],[123,40,65,-0.7437254910628597],[123,40,66,-0.7434048696903106],[123,40,67,-0.7430866730600179],[123,40,68,-0.7427709067923622],[123,40,69,-0.7424575764130668],[123,40,70,-0.7421466873527529],[123,40,71,-0.7418382449464994],[123,40,72,-0.7415322544334009],[123,40,73,-0.7412287209561398],[123,40,74,-0.7409276495605313],[123,40,75,-0.7406290451950971],[123,40,76,-0.7403329127106276],[123,40,77,-0.7400392568597454],[123,40,78,-0.7397480822964713],[123,40,79,-0.7394593935757872],[123,41,64,-0.7441846361888216],[123,41,65,-0.7438612267656818],[123,41,66,-0.7435402360587202],[123,41,67,-0.7432216697875242],[123,41,68,-0.7429055335774672],[123,41,69,-0.7425918329592789],[123,41,70,-0.7422805733685996],[123,41,71,-0.7419717601455413],[123,41,72,-0.7416653985342441],[123,41,73,-0.7413614936824495],[123,41,74,-0.7410600506410445],[123,41,75,-0.7407610743636363],[123,41,76,-0.740464569706113],[123,41,77,-0.7401705414262082],[123,41,78,-0.739878994183067],[123,41,79,-0.7395899325368078],[123,42,64,-0.7443209120196929],[123,42,65,-0.7439971344604461],[123,42,66,-0.7436757753027434],[123,42,67,-0.7433568402711372],[123,42,68,-0.7430403349959791],[123,42,69,-0.7427262650129905],[123,42,70,-0.7424146357628175],[123,42,71,-0.7421054525905904],[123,42,72,-0.741798720745481],[123,42,73,-0.7414944453802766],[123,42,74,-0.7411926315509225],[123,42,75,-0.7408932842160971],[123,42,76,-0.7405964082367741],[123,42,77,-0.7403020083757845],[123,42,78,-0.7400100892973845],[123,42,79,-0.7397206555668167],[123,43,64,-0.7444573589035466],[123,43,65,-0.7441332140982504],[123,43,66,-0.7438114873766875],[123,43,67,-0.7434921844683606],[123,43,68,-0.7431753110085855],[123,43,69,-0.742860872538061],[123,43,70,-0.7425488745024245],[123,43,71,-0.7422393222518102],[123,43,72,-0.7419322210404088],[123,43,73,-0.7416275760260385],[123,43,74,-0.7413253922696894],[123,43,75,-0.7410256747350987],[123,43,76,-0.740728428288311],[123,43,77,-0.7404336576972423],[123,43,78,-0.7401413676312466],[123,43,79,-0.7398515626606778],[123,44,64,-0.7445939767859043],[123,44,65,-0.7442694656278321],[123,44,66,-0.743947372232494],[123,44,67,-0.7436277023343278],[123,44,68,-0.743310461573599],[123,44,69,-0.7429956554959694],[123,44,70,-0.7426832895520528],[123,44,71,-0.7423733690969745],[123,44,72,-0.7420658993899287],[123,44,73,-0.7417608855937518],[123,44,74,-0.7414583327744648],[123,44,75,-0.7411582459008492],[123,44,76,-0.7408606298440082],[123,44,77,-0.7405654893769293],[123,44,78,-0.7402728291740515],[123,44,79,-0.7399826538108264],[123,45,64,-0.7447307656099096],[123,45,65,-0.7444058889955464],[123,45,66,-0.7440834298197163],[123,45,67,-0.7437633938217785],[123,45,68,-0.7434457866469326],[123,45,69,-0.7431306138457894],[123,45,70,-0.7428178808739253],[123,45,71,-0.7425075930914415],[123,45,72,-0.7421997557625225],[123,45,73,-0.7418943740550081],[123,45,74,-0.7415914530399375],[123,45,75,-0.7412909976911226],[123,45,76,-0.7409930128847115],[123,45,77,-0.7406975033987501],[123,45,78,-0.7404044739127487],[123,45,79,-0.7401139290072445],[123,46,64,-0.7448677253163832],[123,46,65,-0.7445424841454193],[123,46,66,-0.7442196600855743],[123,46,67,-0.7438992588811131],[123,46,68,-0.7435812861821556],[123,46,69,-0.7432657475442466],[123,46,70,-0.7429526484279102],[123,46,71,-0.7426419941982105],[123,46,72,-0.7423337901243073],[123,46,73,-0.7420280413790306],[123,46,74,-0.7417247530384226],[123,46,75,-0.7414239300813136],[123,46,76,-0.7411255773888823],[123,46,77,-0.7408296997442193],[123,46,78,-0.7405363018318942],[123,46,79,-0.7402453882375162],[123,47,64,-0.7450048558438076],[123,47,65,-0.7446792510191336],[123,47,66,-0.7443560629749382],[123,47,67,-0.7440352974603776],[123,47,68,-0.7437169601304768],[123,47,69,-0.7434010565457001],[123,47,70,-0.7430875921715058],[123,47,71,-0.742776572377905],[123,47,72,-0.7424680024390197],[123,47,73,-0.7421618875326556],[123,47,74,-0.7418582327398447],[123,47,75,-0.7415570430444213],[123,47,76,-0.7412583233325816],[123,47,77,-0.7409620783924478],[123,47,78,-0.7406683129136347],[123,47,79,-0.7403770314868108],[123,48,64,-0.7451421571283103],[123,48,65,-0.7448161895560115],[123,48,66,-0.7444926384303129],[123,48,67,-0.7441715095052468],[123,48,68,-0.743852808440729],[123,48,69,-0.7435365408021286],[123,48,70,-0.7432227120598228],[123,48,71,-0.7429113275887563],[123,48,72,-0.742602392667999],[123,48,73,-0.7422959124803178],[123,48,74,-0.7419918921117212],[123,48,75,-0.741690336551033],[123,48,76,-0.7413912506894538],[123,48,77,-0.7410946393201238],[123,48,78,-0.74080050713769],[123,48,79,-0.7405088587378666],[123,49,64,-0.74527962910372],[123,49,65,-0.7449532996930707],[123,49,66,-0.7446293863918928],[123,49,67,-0.7443078949590802],[123,49,68,-0.7439888310594243],[123,49,69,-0.7436722002631839],[123,49,70,-0.7433580080456413],[123,49,71,-0.7430462597866601],[123,49,72,-0.7427369607702432],[123,49,73,-0.7424301161841058],[123,49,74,-0.742125731119218],[123,49,75,-0.7418238105693796],[123,49,76,-0.7415243594307821],[123,49,77,-0.74122738250157],[123,49,78,-0.7409328844814093],[123,49,79,-0.740640869971047],[123,50,64,-0.7454172717015499],[123,50,65,-0.745090581365008],[123,50,66,-0.7447663067975469],[123,50,67,-0.7444444537629058],[123,50,68,-0.7441250279307374],[123,50,69,-0.743808034876176],[123,50,70,-0.7434934800793938],[123,50,71,-0.7431813689251586],[123,50,72,-0.7428717067023928],[123,50,73,-0.7425644986037448],[123,50,74,-0.7422597497251329],[123,50,75,-0.7419574650653193],[123,50,76,-0.7416576495254719],[123,50,77,-0.7413603079087268],[123,50,78,-0.7410654449197547],[123,50,79,-0.7407730651643227],[123,51,64,-0.7455550848509821],[123,51,65,-0.7452280345041837],[123,51,66,-0.7449033995828007],[123,51,67,-0.7445811858554036],[123,51,68,-0.7442613989964904],[123,51,69,-0.7439440445860561],[123,51,70,-0.7436291281091485],[123,51,71,-0.7433166549554253],[123,51,72,-0.7430066304187135],[123,51,73,-0.742699059696581],[123,51,74,-0.7423939478898798],[123,51,75,-0.7420913000023206],[123,51,76,-0.7417911209400344],[123,51,77,-0.7414934155111346],[123,51,78,-0.7411981884252841],[123,51,79,-0.7409054442932561],[123,52,64,-0.7456930684789225],[123,52,65,-0.7453656590406764],[123,52,66,-0.7450406646808938],[123,52,67,-0.7447180911729611],[123,52,68,-0.744397944196207],[123,52,69,-0.7440802293354727],[123,52,70,-0.7437649520806658],[123,52,71,-0.7434521178263203],[123,52,72,-0.7431417318711528],[123,52,73,-0.7428337994176366],[123,52,74,-0.7425283255715435],[123,52,75,-0.7422253153415186],[123,52,76,-0.7419247736386421],[123,52,77,-0.7416267052759911],[123,52,78,-0.7413311149682071],[123,52,79,-0.7410380073310564],[123,53,64,-0.7458312225099775],[123,53,65,-0.7455034549022593],[123,53,66,-0.7451781020227543],[123,53,67,-0.7448551696496495],[123,53,68,-0.7445346634670897],[123,53,69,-0.7442165890647465],[123,53,70,-0.7439009519373736],[123,53,71,-0.7435877574843656],[123,53,72,-0.7432770110093152],[123,53,73,-0.7429687177195861],[123,53,74,-0.7426628827258557],[123,53,75,-0.7423595110416898],[123,53,76,-0.742058607583104],[123,53,77,-0.7417601771681255],[123,53,78,-0.7414642245163605],[123,53,79,-0.7411707542485549],[123,54,64,-0.7459695468664773],[123,54,65,-0.7456414220144237],[123,54,66,-0.745315711537023],[123,54,67,-0.7449924212172474],[123,54,68,-0.7446715567440423],[123,54,69,-0.7443531237118951],[123,54,70,-0.7440371276203905],[123,54,71,-0.7437235738737692],[123,54,72,-0.7434124677804853],[123,54,73,-0.7431038145527787],[123,54,74,-0.7427976193062185],[123,54,75,-0.7424938870592765],[123,54,76,-0.74219262273289],[123,54,77,-0.7418938311500224],[123,54,78,-0.7415975170352314],[123,54,79,-0.741303685014229],[123,55,64,-0.7461080414684513],[123,55,65,-0.7457795603003551],[123,55,66,-0.7454534931500291],[123,55,67,-0.7451298458052158],[123,55,68,-0.7448086239596458],[123,55,69,-0.7444898332126075],[123,55,70,-0.7441734790685015],[123,55,71,-0.7438595669364002],[123,55,72,-0.7435481021296042],[123,55,73,-0.7432390898652151],[123,55,74,-0.7429325352636793],[123,55,75,-0.7426284433483613],[123,55,76,-0.7423268190451051],[123,55,77,-0.7420276671817972],[123,55,78,-0.7417309924879328],[123,55,79,-0.7414367995941766],[123,56,64,-0.7462467062336844],[123,56,65,-0.7459178696809882],[123,56,66,-0.7455914467858458],[123,56,67,-0.7452674433407542],[123,56,68,-0.7449458650442147],[123,56,69,-0.7446267175003007],[123,56,70,-0.7443100062182146],[123,56,71,-0.7439957366118448],[123,56,72,-0.7436839139993243],[123,56,73,-0.7433745436026022],[123,56,74,-0.7430676305469877],[123,56,75,-0.7427631798607229],[123,56,76,-0.742461196474546],[123,56,77,-0.7421616852212517],[123,56,78,-0.7418646508352592],[123,56,79,-0.7415700979521728],[123,57,64,-0.7463855410777006],[123,57,65,-0.7460563500749913],[123,57,66,-0.745729572366274],[123,57,67,-0.7454052137487849],[123,57,68,-0.7450832799257797],[123,57,69,-0.744763776506103],[123,57,70,-0.7444467090037428],[123,57,71,-0.7441320828373896],[123,57,72,-0.7438199033299937],[123,57,73,-0.7435101757083372],[123,57,74,-0.7432029051025772],[123,57,75,-0.7428980965458205],[123,57,76,-0.7425957549736838],[123,57,77,-0.7422958852238574],[123,57,78,-0.7419984920356701],[123,57,79,-0.741703580049652],[123,58,64,-0.7465245459137462],[123,58,65,-0.7461950013987495],[123,58,66,-0.7458678698108258],[123,58,67,-0.7455431569519348],[123,58,68,-0.745220868530072],[123,58,69,-0.7449010101588369],[123,58,70,-0.7445835873569889],[123,58,71,-0.7442686055480052],[123,58,72,-0.7439560700596388],[123,58,73,-0.7436459861234901],[123,58,74,-0.7433383588745501],[123,58,75,-0.7430331933507754],[123,58,76,-0.7427304944926478],[123,58,77,-0.7424302671427384],[123,58,78,-0.7421325160452727],[123,58,79,-0.7418372458456922],[123,59,64,-0.7466637206528463],[123,59,65,-0.746333823566421],[123,59,66,-0.7460063390367807],[123,59,67,-0.7456812728705935],[123,59,68,-0.7453586307805784],[123,59,69,-0.7450384183850758],[123,59,70,-0.7447206412076005],[123,59,71,-0.7444053046764019],[123,59,72,-0.7440924141240205],[123,59,73,-0.7437819747868606],[123,59,74,-0.7434739918047327],[123,59,75,-0.7431684702204285],[123,59,76,-0.7428654149792812],[123,59,77,-0.7425648309287283],[123,59,78,-0.7422667228178779],[123,59,79,-0.7419710952970702],[123,60,64,-0.7468030652037797],[123,60,65,-0.7464728164899117],[123,60,66,-0.7461449799591604],[123,60,67,-0.7458195614228865],[123,60,68,-0.7454965665985177],[123,60,69,-0.7451760011091189],[123,60,70,-0.7448578704829458],[123,60,71,-0.7445421801530049],[123,60,72,-0.7442289354566095],[123,60,73,-0.7439181416349527],[123,60,74,-0.7436098038326503],[123,60,75,-0.7433039270973145],[123,60,76,-0.7430005163791157],[123,60,77,-0.7426995765303439],[123,60,78,-0.7424011123049761],[123,60,79,-0.7421051283582366],[123,61,64,-0.7469425794731035],[123,61,65,-0.7466119800789002],[123,61,66,-0.7462837924907536],[123,61,67,-0.7459580225247011],[123,61,68,-0.7456346759028636],[123,61,69,-0.745313758253015],[123,61,70,-0.7449952751081375],[123,61,71,-0.7446792319059785],[123,61,72,-0.7443656339886098],[123,61,73,-0.7440544866019987],[123,61,74,-0.7437457948955511],[123,61,75,-0.743439563921686],[123,61,76,-0.7431357986353959],[123,61,77,-0.74283450389381],[123,61,78,-0.7425356844557596],[123,61,79,-0.7422393449813399],[123,62,64,-0.7470822633651275],[123,62,65,-0.746751314240812],[123,62,66,-0.74642277654209],[123,62,67,-0.7460966560896597],[123,62,68,-0.7457729586103197],[123,62,69,-0.7454516897365381],[123,62,70,-0.7451328550060068],[123,62,71,-0.7448164598612006],[123,62,72,-0.7445025096489339],[123,62,73,-0.7441910096199337],[123,62,74,-0.7438819649283813],[123,62,75,-0.7435753806314879],[123,62,76,-0.7432712616890541],[123,62,77,-0.7429696129630337],[123,62,78,-0.7426704392170984],[123,62,79,-0.7423737451162006],[123,63,64,-0.7472221167819711],[123,63,65,-0.7468908188808765],[123,63,66,-0.7465619320214973],[123,63,67,-0.7462354620291775],[123,63,68,-0.7459114146353769],[123,63,69,-0.7455897954772426],[123,63,70,-0.7452706100971613],[123,63,71,-0.7449538639423193],[123,63,72,-0.7446395623642592],[123,63,73,-0.7443277106184523],[123,63,74,-0.7440183138638412],[123,63,75,-0.7437113771624142],[123,63,76,-0.743406905478766],[123,63,77,-0.7431049036796603],[123,63,78,-0.742805376533596],[123,63,79,-0.742508328710368],[123,64,64,-0.7473621396235466],[123,64,65,-0.74703049390211],[123,64,66,-0.746701258835085],[123,64,67,-0.7463744402524447],[123,64,68,-0.7460500438902958],[123,64,69,-0.7457280753904477],[123,64,70,-0.745408540299967],[123,64,71,-0.745091444070736],[123,64,72,-0.7447767920590107],[123,64,73,-0.7444645895249917],[123,64,74,-0.744154841632368],[123,64,75,-0.7438475534478907],[123,64,76,-0.743542729940934],[123,64,77,-0.7432403759830574],[123,64,78,-0.7429404963475723],[123,64,79,-0.7426430957091028],[123,65,64,-0.7475023317875418],[123,65,65,-0.7471703392052986],[123,65,66,-0.746840756886726],[123,65,67,-0.7465135906664107],[123,65,68,-0.7461888462850894],[123,65,69,-0.7458665293892195],[123,65,70,-0.7455466455305311],[123,65,71,-0.7452292001655881],[123,65,72,-0.744914198655344],[123,65,73,-0.7446016462647144],[123,65,74,-0.7442915481621193],[123,65,75,-0.7439839094190581],[123,65,76,-0.7436787350096701],[123,65,77,-0.7433760298102965],[123,65,78,-0.7430757985990468],[123,65,79,-0.74277804605536],[123,66,64,-0.7476426931694774],[123,66,65,-0.7473103546890556],[123,66,66,-0.7469804260781148],[123,66,67,-0.7466529131758394],[123,66,68,-0.7463278217275808],[123,66,69,-0.746005157384428],[123,66,70,-0.7456849257027599],[123,66,71,-0.745367132143806],[123,66,72,-0.7450517820732026],[123,66,73,-0.7447388807605646],[123,66,74,-0.744428433379029],[123,66,75,-0.7441204450048284],[123,66,76,-0.7438149206168526],[123,66,77,-0.74351186509621],[123,66,78,-0.7432112832257943],[123,66,79,-0.7429131796898455],[123,67,64,-0.7477832236626814],[123,67,65,-0.7474505402497953],[123,67,66,-0.7471202663087412],[123,67,67,-0.746792407683285],[123,67,68,-0.7464669701233771],[123,67,69,-0.746143959284722],[123,67,70,-0.7458233807283323],[123,67,71,-0.7455052399200875],[123,67,72,-0.7451895422302914],[123,67,73,-0.7448762929332435],[123,67,74,-0.7445654972067823],[123,67,75,-0.7442571601318595],[123,67,76,-0.7439512866921003],[123,67,77,-0.7436478817733659],[123,67,78,-0.7433469501633203],[123,67,79,-0.74304849655099],[123,68,64,-0.7479239231583134],[123,68,65,-0.7475908957817579],[123,68,66,-0.7472602774759147],[123,68,67,-0.7469320740891155],[123,68,68,-0.7466062913758933],[123,68,69,-0.7462829349965527],[123,68,70,-0.7459620105167242],[123,68,71,-0.7456435234069217],[123,68,72,-0.7453274790421014],[123,68,73,-0.7450138827012324],[123,68,74,-0.7447027395668396],[123,68,75,-0.7443940547245786],[123,68,76,-0.7440878331627961],[123,68,77,-0.7437840797720916],[123,68,78,-0.7434827993448843],[123,68,79,-0.7431839965749737],[123,69,64,-0.7480647915453389],[123,69,65,-0.7477314211769839],[123,69,66,-0.7474004594747401],[123,69,67,-0.747071912291488],[123,69,68,-0.7467457853863279],[123,69,69,-0.7464220844241488],[123,69,70,-0.746100814975183],[123,69,71,-0.745781982514564],[123,69,72,-0.7454655924218844],[123,69,73,-0.7451516499807678],[123,69,74,-0.7448401603784108],[123,69,75,-0.7445311287051581],[123,69,76,-0.7442245599540627],[123,69,77,-0.7439204590204478],[123,69,78,-0.743618830701474],[123,69,79,-0.7433196796956997],[123,70,64,-0.7482058287105868],[123,70,65,-0.747872116325371],[123,70,66,-0.7475408121981721],[123,70,67,-0.7472119221864044],[123,70,68,-0.7468854520537187],[123,70,69,-0.7465614074695727],[123,70,70,-0.7462397940087845],[123,70,71,-0.7459206171510919],[123,70,72,-0.7456038822807088],[123,70,73,-0.7452895946858976],[123,70,74,-0.7449777595585119],[123,70,75,-0.7446683819935702],[123,70,76,-0.7443614669888172],[123,70,77,-0.7440570194442857],[123,70,78,-0.743755044161863],[123,70,79,-0.7434555458448513],[123,71,64,-0.7483470345387322],[123,71,65,-0.7480129811146569],[123,71,66,-0.7476813355370009],[123,71,67,-0.7473521036676953],[123,71,68,-0.7470252912749262],[123,71,69,-0.7467009040327034],[123,71,70,-0.7463789475204158],[123,71,71,-0.746059427222389],[123,71,72,-0.7457423485274434],[123,71,73,-0.7454277167284648],[123,71,74,-0.7451155370219481],[123,71,75,-0.7448058145075714],[123,71,76,-0.7444985541877562],[123,71,77,-0.7441937609672299],[123,71,78,-0.743891439652592],[123,71,79,-0.7435915949518748],[123,72,64,-0.7484884089122785],[123,72,65,-0.748154015430402],[123,72,66,-0.747822029379833],[123,72,67,-0.7474924566270028],[123,72,68,-0.7471653029446162],[123,72,69,-0.7468405740112201],[123,72,70,-0.7465182754107577],[123,72,71,-0.7461984126321274],[123,72,72,-0.7458809910687395],[123,72,73,-0.7455660160180888],[123,72,74,-0.7452534926812965],[123,72,75,-0.7449434261626845],[123,72,76,-0.7446358214693365],[123,72,77,-0.7443306835106599],[123,72,78,-0.7440280170979521],[123,72,79,-0.7437278269439609],[123,73,64,-0.7486299517116158],[123,73,65,-0.7482952191560472],[123,73,66,-0.7479628936131488],[123,73,67,-0.7476329809538363],[123,73,68,-0.747305486955317],[123,73,69,-0.7469804173006581],[123,73,70,-0.7466577775783418],[123,73,71,-0.7463375732818234],[123,73,72,-0.7460198098090881],[123,73,73,-0.7457044924622235],[123,73,74,-0.745391626446962],[123,73,75,-0.7450812168722548],[123,73,76,-0.7447732687498327],[123,73,77,-0.7444677869937683],[123,73,78,-0.744164776420042],[123,73,79,-0.743864241746103],[123,74,64,-0.7487716628149942],[123,74,65,-0.7484365921728876],[123,74,66,-0.7481039281212778],[123,74,67,-0.7477736765355484],[123,74,68,-0.7474458431973932],[123,74,69,-0.7471204337943838],[123,74,70,-0.746797453919525],[123,74,71,-0.7464769090708137],[123,74,72,-0.7461588046507939],[123,74,73,-0.7458431459661311],[123,74,74,-0.7455299382271532],[123,74,75,-0.7452191865474258],[123,74,76,-0.7449108959433115],[123,74,77,-0.7446050713335336],[123,74,78,-0.7443017175387412],[123,74,79,-0.7440008392810702],[123,75,64,-0.7489135420985482],[123,75,65,-0.7485781343600966],[123,75,66,-0.7482451327864215],[123,75,67,-0.7479145432573584],[123,75,68,-0.7475863715590705],[123,75,69,-0.7472606233836183],[123,75,70,-0.7469373043285137],[123,75,71,-0.7466164198962779],[123,75,72,-0.7462979754939996],[123,75,73,-0.7459819764329058],[123,75,74,-0.745668427927905],[123,75,75,-0.7453573350971616],[123,75,76,-0.7450487029616556],[123,75,77,-0.7447425364447458],[123,75,78,-0.744438840371735],[123,75,79,-0.7441376194694317],[123,76,64,-0.749055589436272],[123,76,65,-0.7487198455947008],[123,76,66,-0.7483865074886287],[123,76,67,-0.748055581002326],[123,76,68,-0.74772707192641],[123,76,69,-0.7474009859574128],[123,76,70,-0.7470773286973372],[123,76,71,-0.7467561056532143],[123,76,72,-0.7464373222366602],[123,76,73,-0.7461209837634486],[123,76,74,-0.7458070954530533],[123,76,75,-0.7454956624282222],[123,76,76,-0.7451866897145374],[123,76,77,-0.7448801822399783],[123,76,78,-0.7445761448344874],[123,76,79,-0.7442745822295306],[123,77,64,-0.7491978047000756],[123,77,65,-0.748861725751637],[123,77,66,-0.7485280521058523],[123,77,67,-0.74819678965141],[123,77,68,-0.7478679441833643],[123,77,69,-0.7475415214027039],[123,77,70,-0.7472175269159059],[123,77,71,-0.746895966234495],[123,77,72,-0.7465768447745995],[123,77,73,-0.7462601678565239],[123,77,74,-0.7459459407042921],[123,77,75,-0.7456341684452197],[123,77,76,-0.7453248561094765],[123,77,77,-0.7450180086296474],[123,77,78,-0.7447136308402993],[123,77,79,-0.7444117274775413],[123,78,64,-0.7493401877597675],[123,78,65,-0.7490037747037348],[123,78,66,-0.7486697665139318],[123,78,67,-0.7483381690834492],[123,78,68,-0.7480089882117618],[123,78,69,-0.7476822296042979],[123,78,70,-0.7473578988719933],[123,78,71,-0.7470360015308501],[123,78,72,-0.7467165430014933],[123,78,73,-0.7463995286087426],[123,78,74,-0.7460849635811557],[123,78,75,-0.7457728530506017],[123,78,76,-0.745463202051822],[123,78,77,-0.7451560155219926],[123,78,78,-0.7448512983002897],[123,78,79,-0.7445490551274514],[123,79,64,-0.7494827384830387],[123,79,65,-0.7491459923216991],[123,79,66,-0.7488116505865763],[123,79,67,-0.748479719175146],[123,79,68,-0.7481502038912874],[123,79,69,-0.7478231104448522],[123,79,70,-0.7474984444512185],[123,79,71,-0.7471762114308498],[123,79,72,-0.7468564168088516],[123,79,73,-0.7465390659145434],[123,79,74,-0.7462241639810016],[123,79,75,-0.7459117161446326],[123,79,76,-0.7456017274447349],[123,79,77,-0.74529420282306],[123,79,78,-0.7449891471233792],[123,79,79,-0.7446865650910439],[123,80,64,-0.7496254567355181],[123,80,65,-0.7492883784741675],[123,80,66,-0.7489537041954212],[123,80,67,-0.7486214398011236],[123,80,68,-0.7482915910995414],[123,80,69,-0.7479641638049331],[123,80,70,-0.7476391635371034],[123,80,71,-0.7473165958209609],[123,80,72,-0.7469964660860757],[123,80,73,-0.7466787796662513],[123,80,74,-0.7463635417990668],[123,80,75,-0.7460507576254514],[123,80,76,-0.7457404321892448],[123,80,77,-0.7454325704367593],[123,80,78,-0.7451271772163458],[123,80,79,-0.744824257277955],[123,81,64,-0.7497683423807484],[123,81,65,-0.7494309330276847],[123,81,66,-0.7490959272100032],[123,81,67,-0.7487633308338997],[123,81,68,-0.7484331497120122],[123,81,69,-0.7481053895629899],[123,81,70,-0.7477800560110469],[123,81,71,-0.7474571545855214],[123,81,72,-0.7471366907204321],[123,81,73,-0.7468186697540504],[123,81,74,-0.746503096928443],[123,81,75,-0.7461899773890458],[123,81,76,-0.7458793161842248],[123,81,77,-0.7455711182648375],[123,81,78,-0.7452653884838],[123,81,79,-0.7449621315956473],[123,82,64,-0.7499113952802089],[123,82,65,-0.7495736558467262],[123,82,66,-0.7492383194977834],[123,82,67,-0.7489053921439112],[123,82,68,-0.7485748796021019],[123,82,69,-0.7482467875953787],[123,82,70,-0.7479211217523494],[123,82,71,-0.7475978876067649],[123,82,72,-0.7472770905970769],[123,82,73,-0.746958736066009],[123,82,74,-0.7466428292600995],[123,82,75,-0.7463293753292757],[123,82,76,-0.7460183793264141],[123,82,77,-0.745709846206903],[123,82,78,-0.7454037808282081],[123,82,79,-0.7451001879494339],[123,83,64,-0.750054615293291],[123,83,65,-0.7497165467936732],[123,83,66,-0.7493808809241225],[123,83,67,-0.7490476235994877],[123,83,68,-0.7487167806410989],[123,83,69,-0.7483883577763365],[123,83,70,-0.7480623606381855],[123,83,71,-0.747738794764794],[123,83,72,-0.7474176655990298],[123,83,73,-0.7470989784880528],[123,83,74,-0.7467827386828577],[123,83,75,-0.7464689513378471],[123,83,76,-0.7461576215103931],[123,83,77,-0.7458487541603992],[123,83,78,-0.745542354149866],[123,83,79,-0.7452384262424524],[123,84,64,-0.7501980022773542],[123,84,65,-0.7498596057288688],[123,84,66,-0.7495236113523371],[123,84,67,-0.7491900250669093],[123,84,68,-0.7488588526982363],[123,84,69,-0.7485300999780389],[123,84,70,-0.7482037725436632],[123,84,71,-0.7478798759376377],[123,84,72,-0.7475584156072308],[123,84,73,-0.7472393969040227],[123,84,74,-0.7469228250834482],[123,84,75,-0.7466087053043702],[123,84,76,-0.7462970426286404],[123,84,77,-0.7459878420206625],[123,84,78,-0.7456811083469568],[123,84,79,-0.7453768463757215],[123,85,64,-0.75034155608771],[123,85,65,-0.7500028325106018],[123,85,66,-0.7496665106436835],[123,85,67,-0.7493325964103891],[123,85,68,-0.7490010956406734],[123,85,69,-0.748672014070582],[123,85,70,-0.7483453573418046],[123,85,71,-0.7480211310012341],[123,85,72,-0.7476993405005233],[123,85,73,-0.7473799911956567],[123,85,74,-0.7470630883464933],[123,85,75,-0.7467486371163403],[123,85,76,-0.7464366425715145],[123,85,77,-0.7461271096809036],[123,85,78,-0.7458200433155324],[123,85,79,-0.7455154482481243],[123,86,64,-0.7504852765776031],[123,86,65,-0.7501462269950884],[123,86,66,-0.7498095786573387],[123,86,67,-0.749475337492055],[123,86,68,-0.7491435093334794],[123,86,69,-0.748814099921965],[123,86,70,-0.748487114903529],[123,86,71,-0.7481625598294124],[123,86,72,-0.7478404401556358],[123,86,73,-0.7475207612425719],[123,86,74,-0.7472035283544883],[123,86,75,-0.7468887466591214],[123,86,76,-0.7465764212272362],[123,86,77,-0.7462665570321898],[123,86,78,-0.7459591589494965],[123,86,79,-0.7456542317563891],[123,87,64,-0.7506291635982698],[123,87,65,-0.7502897890365294],[123,87,66,-0.7499528152504584],[123,87,67,-0.7496182481720075],[123,87,68,-0.7492860936396893],[123,87,69,-0.7489563573981475],[123,87,70,-0.7486290450977103],[123,87,71,-0.7483041622939501],[123,87,72,-0.7479817144472393],[123,87,73,-0.7476617069223228],[123,87,74,-0.7473441449878608],[123,87,75,-0.7470290338160023],[123,87,76,-0.746716378481946],[123,87,77,-0.7464061839635028],[123,87,78,-0.7460984551406608],[123,87,79,-0.7457931967951474],[123,88,64,-0.7507732169989197],[123,88,65,-0.7504335184870934],[123,88,66,-0.7500962202781597],[123,88,67,-0.7497613283083024],[123,88,68,-0.7494288484202875],[123,88,69,-0.7490987863630321],[123,88,70,-0.7487711477911592],[123,88,71,-0.7484459382645557],[123,88,72,-0.7481231632479299],[123,88,73,-0.7478028281103826],[123,88,74,-0.7474849381249505],[123,88,75,-0.7471694984681797],[123,88,76,-0.7468565142196868],[123,88,77,-0.7465459903617204],[123,88,78,-0.746237931778728],[123,88,79,-0.745932343256916],[123,89,64,-0.7509174366267188],[123,89,65,-0.7505774151968982],[123,89,66,-0.7502397935935032],[123,89,67,-0.7499045777569325],[123,89,68,-0.7495717735341887],[123,89,69,-0.749241386678446],[123,89,70,-0.7489134228486048],[123,89,71,-0.7485878876088508],[123,89,72,-0.7482647864282108],[123,89,73,-0.7479441246801259],[123,89,74,-0.7476259076419931],[123,89,75,-0.7473101404947398],[123,89,76,-0.7469968283223845],[123,89,77,-0.7466859761115986],[123,89,78,-0.7463775887512731],[123,89,79,-0.7460716710320786],[123,90,64,-0.7510618223268464],[123,90,65,-0.7507214790140695],[123,90,66,-0.75038353504755],[123,90,67,-0.7500479963718854],[123,90,68,-0.749714868838297],[123,90,69,-0.7493841582041991],[123,90,70,-0.7490558701327534],[123,90,71,-0.7487300101924269],[123,90,72,-0.7484065838565497],[123,90,73,-0.7480855965028856],[123,90,74,-0.7477670534131767],[123,90,75,-0.7474509597727155],[123,90,76,-0.7471373206699068],[123,90,77,-0.7468261410958292],[123,90,78,-0.7465174259438015],[123,90,79,-0.7462111800089436],[123,91,64,-0.751206373942469],[123,91,65,-0.7508657097847133],[123,91,66,-0.7505274444893366],[123,91,67,-0.7501915840051171],[123,91,68,-0.7498581341874784],[123,91,69,-0.7495271007980578],[123,91,70,-0.7491984895042612],[123,91,71,-0.7488723058788205],[123,91,72,-0.7485485553993522],[123,91,73,-0.7482272434479275],[123,91,74,-0.7479083753106164],[123,91,75,-0.747591956177061],[123,91,76,-0.7472779911400366],[123,91,77,-0.7469664851950132],[123,91,78,-0.7466574432397223],[123,91,79,-0.7463508700737175],[123,92,64,-0.7513510913147654],[123,92,65,-0.7510101073529418],[123,92,66,-0.7506715217658982],[123,92,67,-0.7503353405065767],[123,92,68,-0.7500015694345857],[123,92,69,-0.7496702143157686],[123,92,70,-0.7493412808217585],[123,92,71,-0.7490147745295359],[123,92,72,-0.7486907009209867],[123,92,73,-0.7483690653824732],[123,92,74,-0.7480498732043774],[123,92,75,-0.747733129580675],[123,92,76,-0.7474188396084953],[123,92,77,-0.747107008287685],[123,92,78,-0.746797640520372],[123,92,79,-0.7464907411105286],[123,93,64,-0.7514959742828995],[123,93,65,-0.7511546715608456],[123,93,66,-0.7508157667222428],[123,93,67,-0.7504792657241796],[123,93,68,-0.7501451744304319],[123,93,69,-0.7498134986110323],[123,93,70,-0.7494842439418239],[123,93,71,-0.7491574160040193],[123,93,72,-0.7488330202837572],[123,93,73,-0.7485110621716744],[123,93,74,-0.7481915469624492],[123,93,75,-0.7478744798543739],[123,93,76,-0.7475598659489172],[123,93,77,-0.7472477102502852],[123,93,78,-0.7469380176649882],[123,93,79,-0.746630793001401],[123,94,64,-0.7516410226840784],[123,94,65,-0.7512994022485524],[123,94,66,-0.7509601792014089],[123,94,67,-0.7506233595038654],[123,94,68,-0.750288949023848],[123,94,69,-0.7499569535355612],[123,94,70,-0.7496273787190417],[123,94,71,-0.7493002301597166],[123,94,72,-0.7489755133479614],[123,94,73,-0.748653233678671],[123,94,74,-0.7483333964508028],[123,94,75,-0.7480160068669508],[123,94,76,-0.7477010700329062],[123,94,77,-0.7473885909572195],[123,94,78,-0.7470785745507672],[123,94,79,-0.7467710256263113],[123,95,64,-0.7517862363535347],[123,95,65,-0.7514442992542087],[123,95,66,-0.7511047590444475],[123,95,67,-0.75076762168958],[123,95,68,-0.750432893061665],[123,95,69,-0.750100578939062],[123,95,70,-0.7497706850059837],[123,95,71,-0.7494432168520555],[123,95,72,-0.7491181799718727],[123,95,73,-0.7487955797645717],[123,95,74,-0.7484754215333731],[123,95,75,-0.7481577104851561],[123,95,76,-0.7478424517300186],[123,95,77,-0.7475296502808397],[123,95,78,-0.7472193110528458],[123,95,79,-0.7469114388631718],[123,96,64,-0.7519316151245086],[123,96,65,-0.7515893624139625],[123,96,66,-0.7512495060904046],[123,96,67,-0.7509120521232576],[123,96,68,-0.7505770063886961],[123,96,69,-0.7502443746692165],[123,96,70,-0.7499141626531912],[123,96,71,-0.7495863759344269],[123,96,72,-0.7492610200117218],[123,96,73,-0.748938100288437],[123,96,74,-0.7486176220720406],[123,96,75,-0.7482995905736801],[123,96,76,-0.7479840109077442],[123,96,77,-0.7476708880914249],[123,96,78,-0.7473602270442832],[123,96,79,-0.7470520325878105],[123,97,64,-0.7520771588283053],[123,97,65,-0.7517345915620203],[123,97,66,-0.7513944201763786],[123,97,67,-0.7510566506448788],[123,97,68,-0.7507212888477939],[123,97,69,-0.7503883405717408],[123,97,70,-0.7500578115092336],[123,97,71,-0.7497297072582433],[123,97,72,-0.7494040333217545],[123,97,73,-0.7490807951073369],[123,97,74,-0.7487599979266888],[123,97,75,-0.7484416469952102],[123,97,76,-0.7481257474315646],[123,97,77,-0.7478123042572407],[123,97,78,-0.7475013223961184],[123,97,79,-0.7471928066740303],[123,98,64,-0.7522228672942695],[123,98,65,-0.7518799865306212],[123,98,66,-0.7515395011374935],[123,98,67,-0.7512014170924437],[123,98,68,-0.7508657402798251],[123,98,69,-0.7505324764903576],[123,98,70,-0.7502016314206804],[123,98,71,-0.7498732106729119],[123,98,72,-0.7495472197542059],[123,98,73,-0.7492236640763238],[123,98,74,-0.7489025489551779],[123,98,75,-0.7485838796104047],[123,98,76,-0.748267661164926],[123,98,77,-0.7479538986445113],[123,98,78,-0.7476425969773439],[123,98,79,-0.7473337609935815],[123,99,64,-0.7523687403498087],[123,99,65,-0.7520255471500611],[123,99,66,-0.7516847488069244],[123,99,67,-0.7513463513019963],[123,99,68,-0.7510103605236937],[123,99,69,-0.7506767822668216],[123,99,70,-0.7503456222321272],[123,99,71,-0.7500168860258589],[123,99,72,-0.7496905791593235],[123,99,73,-0.7493667070484571],[123,99,74,-0.7490452750133695],[123,99,75,-0.748726288277917],[123,99,76,-0.748409751969264],[123,99,77,-0.7480956711174447],[123,99,78,-0.7477840506549296],[123,99,79,-0.7474748954161863],[123,100,64,-0.7525147778203676],[123,100,65,-0.7521712732486663],[123,100,66,-0.7518301630158697],[123,100,67,-0.7514914531075982],[123,100,68,-0.7511551494163146],[123,100,69,-0.7508212577408916],[123,100,70,-0.7504897837861672],[123,100,71,-0.7501607331625029],[123,100,72,-0.7498341113853407],[123,100,73,-0.7495099238747758],[123,100,74,-0.7491881759550982],[123,100,75,-0.748868872854368],[123,100,76,-0.7485520197039757],[123,100,77,-0.7482376215382041],[123,100,78,-0.7479256832937953],[123,100,79,-0.7476162098095112],[123,101,64,-0.7526609795294851],[123,101,65,-0.752317164652851],[123,101,66,-0.7519757435936094],[123,101,67,-0.7516367223413862],[123,101,68,-0.7513001067926717],[123,101,69,-0.7509659027503894],[123,101,70,-0.7506341159234504],[123,101,71,-0.7503047519263122],[123,101,72,-0.7499778162785358],[123,101,73,-0.7496533144043571],[123,101,74,-0.7493312516322312],[123,101,75,-0.7490116331944051],[123,101,76,-0.7486944642264786],[123,101,77,-0.7483797497669675],[123,101,78,-0.7480674947568697],[123,101,79,-0.747757704039225],[123,102,64,-0.7528073452987772],[123,102,65,-0.7524632211871],[123,102,66,-0.752121490367488],[123,102,67,-0.7517821588335545],[123,102,68,-0.7514452324858001],[123,102,69,-0.7511107171311813],[123,102,70,-0.750778618482665],[123,102,71,-0.7504489421587875],[123,102,72,-0.7501216936832118],[123,102,73,-0.7497968784842984],[123,102,74,-0.7494745018946496],[123,102,75,-0.7491545691506829],[123,102,76,-0.748837085392192],[123,102,77,-0.7485220556619092],[123,102,78,-0.7482094849050716],[123,102,79,-0.7478993779689818],[123,103,64,-0.7529538749479185],[123,103,65,-0.7526094426739495],[123,103,66,-0.7522674031628943],[123,103,67,-0.7519277624123358],[123,103,68,-0.7515905263267668],[123,103,69,-0.7512557007171594],[123,103,70,-0.750923291300519],[123,103,71,-0.7505933036994437],[123,103,72,-0.7502657434416804],[123,103,73,-0.7499406159596979],[123,103,74,-0.7496179265902291],[123,103,75,-0.7492976805738456],[123,103,76,-0.7489798830545183],[123,103,77,-0.7486645390791797],[123,103,78,-0.7483516535972905],[123,103,79,-0.7480412314604004],[123,104,64,-0.7531005682947003],[123,104,65,-0.7527558289340464],[123,104,66,-0.7524134818033218],[123,104,67,-0.7520735329040606],[123,104,68,-0.7517359881447304],[123,104,69,-0.751400853340301],[123,104,70,-0.7510681342117991],[123,104,71,-0.7507378363858663],[123,104,72,-0.750409965394318],[123,104,73,-0.7500845266737132],[123,104,74,-0.7497615255648991],[123,104,75,-0.7494409673125846],[123,104,76,-0.7491228570649013],[123,104,77,-0.748807199872966],[123,104,78,-0.7484940006904464],[123,104,79,-0.7481832643731235],[123,105,64,-0.7532474251550038],[123,105,65,-0.7529023797861208],[123,105,66,-0.7525597261103403],[123,105,67,-0.7522194701331295],[123,105,68,-0.751881617766913],[123,105,69,-0.7515461748306403],[123,105,70,-0.7512131470493421],[123,105,71,-0.7508825400536869],[123,105,72,-0.7505543593795402],[123,105,73,-0.750228610467535],[123,105,74,-0.7499052986626155],[123,105,75,-0.7495844292136116],[123,105,76,-0.7492660072727992],[123,105,77,-0.7489500378954626],[123,105,78,-0.7486365260394613],[123,105,79,-0.7483254765647909],[123,106,64,-0.7533944453428245],[123,106,65,-0.7530490950470108],[123,106,66,-0.7527061359036209],[123,106,67,-0.7523655739220377],[123,106,68,-0.7520274150186246],[123,106,69,-0.7516916650162937],[123,106,70,-0.7513583296440614],[123,106,71,-0.7510274145366058],[123,106,72,-0.7506989252338254],[123,106,73,-0.7503728671804102],[123,106,74,-0.7500492457253849],[123,106,75,-0.7497280661216832],[123,106,76,-0.7494093335257086],[123,106,77,-0.7490930529968973],[123,106,78,-0.7487792294972839],[123,106,79,-0.7484678678910628],[123,107,64,-0.7535416286702459],[123,107,65,-0.753195974531635],[123,107,66,-0.7528527110009091],[123,107,67,-0.7525118440913484],[123,107,68,-0.7521733797232371],[123,107,69,-0.7518373237234321],[123,107,70,-0.7515036818249179],[123,107,71,-0.7511724596663651],[123,107,72,-0.7508436627916879],[123,107,73,-0.7505172966496156],[123,107,74,-0.750193366593237],[123,107,75,-0.7498718778795725],[123,107,76,-0.7495528356691376],[123,107,77,-0.7492362450255028],[123,107,78,-0.7489221109148622],[123,107,79,-0.7486104382055929],[123,108,64,-0.7536889749474968],[123,108,65,-0.7533430180530515],[123,108,66,-0.752999451218083],[123,108,67,-0.7526582804597507],[123,108,68,-0.7523195117022418],[123,108,69,-0.7519831507763398],[123,108,70,-0.7516492034189801],[123,108,71,-0.751317675272808],[123,108,72,-0.750988571885736],[123,108,73,-0.7506618987105163],[123,108,74,-0.7503376611042836],[123,108,75,-0.7500158643281296],[123,108,76,-0.7496965135466638],[123,108,77,-0.7493796138275757],[123,108,78,-0.7490651701412019],[123,108,79,-0.7487531873600868],[123,109,64,-0.753836483982934],[123,109,65,-0.7534902254224392],[123,109,66,-0.7531463563691349],[123,109,67,-0.7528048828440416],[123,109,68,-0.7524658107752309],[123,109,69,-0.752129145997396],[123,109,70,-0.7517948942514046],[123,109,71,-0.7514630611838593],[123,109,72,-0.751133652346654],[123,109,73,-0.7508066731965459],[123,109,74,-0.7504821290946997],[123,109,75,-0.7501600253062605],[123,109,76,-0.7498403669999156],[123,109,77,-0.7495231592474572],[123,109,78,-0.749208407023348],[123,109,79,-0.7488961152042832],[123,110,64,-0.7539841555830233],[123,110,65,-0.7536375964490796],[123,110,66,-0.753293426266153],[123,110,67,-0.752951651059107],[123,110,68,-0.7526122767598797],[123,110,69,-0.7522753092070554],[123,110,70,-0.7519407541454173],[123,110,71,-0.7516086172255072],[123,110,72,-0.7512789040031829],[123,110,73,-0.7509516199391898],[123,110,74,-0.7506267703987048],[123,110,75,-0.7503043606509101],[123,110,76,-0.7499843958685544],[123,110,77,-0.7496668811275151],[123,110,78,-0.7493518214063655],[123,110,79,-0.7490392215859352],[123,111,64,-0.7541319895523984],[123,111,65,-0.753785130940415],[123,111,66,-0.75344066071938],[123,111,67,-0.7530985849179808],[123,111,68,-0.7527589094720046],[123,111,69,-0.7524216402239085],[123,111,70,-0.752086782922373],[123,111,71,-0.751754343221862],[123,111,72,-0.7514243266821796],[123,111,73,-0.7510967387680421],[123,111,74,-0.7507715848486217],[123,111,75,-0.7504488701971205],[123,111,76,-0.7501285999903317],[123,111,77,-0.749810779308202],[123,111,78,-0.749495413133398],[123,111,79,-0.7491825063508682],[123,112,64,-0.7542799856938333],[123,112,65,-0.7539328287020217],[123,112,66,-0.7535880595371856],[123,112,67,-0.7532456842318176],[123,112,68,-0.7529057087255357],[123,112,69,-0.7525681388646521],[123,112,70,-0.7522329804017271],[123,112,71,-0.7519002389951284],[123,112,72,-0.751569920208589],[123,112,73,-0.7512420295107789],[123,112,74,-0.7509165722748485],[123,112,75,-0.7505935537780027],[123,112,76,-0.7502729792010626],[123,112,77,-0.7499548536280272],[123,112,78,-0.7496391820456407],[123,112,79,-0.7493259693429536],[123,113,64,-0.7544281438082673],[123,113,65,-0.7540806895376346],[123,113,66,-0.7537356225260909],[123,113,67,-0.7533929488099167],[123,113,68,-0.7530526743325422],[123,113,69,-0.7527148049441161],[123,113,70,-0.7523793464010606],[123,113,71,-0.7520463043656301],[123,113,72,-0.7517156844054689],[123,113,73,-0.7513874919931829],[123,113,74,-0.7510617325058837],[123,113,75,-0.7507384112247621],[123,113,76,-0.7504175333346501],[123,113,77,-0.7500991039235824],[123,113,78,-0.7497831279823642],[123,113,79,-0.7494696104041318],[123,114,64,-0.7545764636947774],[123,114,65,-0.7542287132491193],[123,114,66,-0.753883349490742],[123,114,67,-0.7535403784596953],[123,114,68,-0.7531998061032035],[123,114,69,-0.7528616382752339],[123,114,70,-0.7525258807360525],[123,114,71,-0.7521925391517825],[123,114,72,-0.751861619093962],[123,114,73,-0.7515331260391154],[123,114,74,-0.7512070653682982],[123,114,75,-0.75088344236667],[123,114,76,-0.7505622622230568],[123,114,77,-0.7502435300295127],[123,114,78,-0.749927250780887],[123,114,79,-0.7496134293743855],[123,115,64,-0.7547249451506375],[123,115,65,-0.7543768996365312],[123,115,66,-0.7540312402339676],[123,115,67,-0.7536879729867472],[123,115,68,-0.7533471038458693],[123,115,69,-0.7530086386691026],[123,115,70,-0.7526725832205386],[123,115,71,-0.7523389431701514],[123,115,72,-0.7520077240933549],[123,115,73,-0.7516789314705752],[123,115,74,-0.7513525706867941],[123,115,75,-0.7510286470311229],[123,115,76,-0.7507071656963646],[123,115,77,-0.7503881317785759],[123,115,78,-0.750071550276634],[123,115,79,-0.7497574260917975],[123,116,64,-0.754873587971299],[123,116,65,-0.7545252484980971],[123,116,66,-0.754179294556761],[123,116,67,-0.7538357321948232],[123,116,68,-0.7534945673670407],[123,116,69,-0.7531558059349639],[123,116,70,-0.7528194536664926],[123,116,71,-0.7524855162354336],[123,116,72,-0.7521539992210595],[123,116,73,-0.7518249081076799],[123,116,74,-0.7514982482841857],[123,116,75,-0.7511740250436232],[123,116,76,-0.7508522435827553],[123,116,77,-0.7505329090016241],[123,116,78,-0.7502160263031179],[123,116,79,-0.7499016003925325],[123,117,64,-0.7550223919503731],[123,117,65,-0.7546737596301963],[123,117,66,-0.7543275122582613],[123,117,67,-0.7539836558858142],[123,117,68,-0.7536421964713504],[123,117,69,-0.7533031398801852],[123,117,70,-0.7529664918840073],[123,117,71,-0.7526322581604391],[123,117,72,-0.7523004442925937],[123,117,73,-0.7519710557686468],[123,117,74,-0.7516440979813813],[123,117,75,-0.7513195762277607],[123,117,76,-0.7509974957084911],[123,117,77,-0.7506778615275833],[123,117,78,-0.7503606786919201],[123,117,79,-0.7500459521108176],[123,118,64,-0.755171356879689],[123,118,65,-0.7548224328274192],[123,118,66,-0.754475893135812],[123,118,67,-0.7541317438598079],[123,118,68,-0.753789990961623],[123,118,69,-0.753450640310318],[123,118,70,-0.7531136976813536],[123,118,71,-0.7527791687561491],[123,118,72,-0.7524470591216404],[123,118,73,-0.7521173742698519],[123,118,74,-0.751790119597441],[123,118,75,-0.7514653004052712],[123,118,76,-0.7511429218979744],[123,118,77,-0.7508229891835136],[123,118,78,-0.7505055072727493],[123,118,79,-0.7501904810790017],[123,119,64,-0.7553204825492752],[123,119,65,-0.7549712678825491],[123,119,66,-0.7546244369849424],[123,119,67,-0.7542799959150718],[123,119,68,-0.7539379506388549],[123,119,69,-0.7535983070290801],[123,119,70,-0.7532610708649615],[123,119,71,-0.7529262478316974],[123,119,72,-0.7525938435200288],[123,119,73,-0.7522638634258112],[123,119,74,-0.7519363129495584],[123,119,75,-0.7516111973960171],[123,119,76,-0.7512885219737283],[123,119,77,-0.7509682917945897],[123,119,78,-0.750650511873423],[123,119,79,-0.7503351871275351],[123,120,64,-0.7554697687473408],[123,120,65,-0.755120264586543],[123,120,66,-0.7547731435993491],[123,120,67,-0.7544284118480333],[123,120,68,-0.7540860753021965],[123,120,69,-0.7537461398383362],[123,120,70,-0.7534086112394014],[123,120,71,-0.7530734951943516],[123,120,72,-0.7527407972977151],[123,120,73,-0.7524105230491607],[123,120,74,-0.7520826778530413],[123,120,75,-0.7517572670179694],[123,120,76,-0.7514342957563774],[123,120,77,-0.7511137691840813],[123,120,78,-0.750795692319847],[123,120,79,-0.7504800700849521],[123,121,64,-0.7556192152603353],[123,121,65,-0.7552694227285905],[123,121,66,-0.7549220127709543],[123,121,67,-0.7545769914533389],[123,121,68,-0.7542343647490101],[123,121,69,-0.7538941385381559],[123,121,70,-0.7535563186074423],[123,121,71,-0.7532209106495719],[123,121,72,-0.7528879202628418],[123,121,73,-0.7525573529507165],[123,121,74,-0.7522292141213709],[123,121,75,-0.7519035090872653],[123,121,76,-0.7515802430647072],[123,121,77,-0.7512594211734129],[123,121,78,-0.7509410484360761],[123,121,79,-0.7506251297779283],[123,122,64,-0.7557688218729195],[123,122,65,-0.7554187420960868],[123,122,66,-0.7550710442898787],[123,122,67,-0.754725734523827],[123,122,68,-0.7543828187748433],[123,122,69,-0.754042302926788],[123,122,70,-0.7537041927700255],[123,122,71,-0.753368494000983],[123,122,72,-0.7530352122217094],[123,122,73,-0.7527043529394465],[123,122,74,-0.7523759215661736],[123,122,75,-0.7520499234181817],[123,122,76,-0.7517263637156353],[123,122,77,-0.751405247582135],[123,122,78,-0.751086580044285],[123,122,79,-0.7507703660312538],[123,123,64,-0.7559185883679912],[123,123,65,-0.7555682224746567],[123,123,66,-0.7552202379444659],[123,123,67,-0.7548746408505518],[123,123,68,-0.7545314371734528],[123,123,69,-0.7541906328006833],[123,123,70,-0.7538522335262876],[123,123,71,-0.7535162450503998],[123,123,72,-0.7531826729788017],[123,123,73,-0.7528515228224951],[123,123,74,-0.7525227999972459],[123,123,75,-0.7521965098231586],[123,123,76,-0.7518726575242373],[123,123,77,-0.7515512482279496],[123,123,78,-0.751232286964793],[123,123,79,-0.7509157786678573],[123,124,64,-0.7560685145266572],[123,124,65,-0.7557178636481268],[123,124,66,-0.7553695935212547],[123,124,67,-0.7550237102227557],[123,124,68,-0.754680219736777],[123,124,69,-0.7543391279544676],[123,124,70,-0.7540004406735337],[123,124,71,-0.7536641635977976],[123,124,72,-0.7533303023367568],[123,124,73,-0.7529988624051548],[123,124,74,-0.7526698492225263],[123,124,75,-0.7523432681127714],[123,124,76,-0.7520191243037172],[123,124,77,-0.7516974229266807],[123,124,78,-0.7513781690160364],[123,124,79,-0.7510613675087774],[123,125,64,-0.7562186001282927],[123,125,65,-0.7558676653985853],[123,125,66,-0.7555191108050382],[123,125,67,-0.7551729424279292],[123,125,68,-0.7548291662549947],[123,125,69,-0.7544877881810005],[123,125,70,-0.7541488140072957],[123,125,71,-0.7538122494413734],[123,125,72,-0.7534781000964274],[123,125,73,-0.7531463714909256],[123,125,74,-0.7528170690481538],[123,125,75,-0.7524901980957904],[123,125,76,-0.7521657638654676],[123,125,77,-0.7518437714923351],[123,125,78,-0.7515242260146265],[123,125,79,-0.7512071323732223],[123,126,64,-0.7563688449505216],[123,126,65,-0.7560176275063624],[123,126,66,-0.755668789578845],[123,126,67,-0.7553223372517905],[123,126,68,-0.7549782765165067],[123,126,69,-0.7546366132713567],[123,126,70,-0.7542973533213144],[123,126,71,-0.7539605023775249],[123,126,72,-0.7536260660568608],[123,126,73,-0.7532940498814962],[123,126,74,-0.7529644592784501],[123,126,75,-0.7526372995791613],[123,126,76,-0.7523125760190501],[123,126,77,-0.7519902937370815],[123,126,78,-0.7516704577753317],[123,126,79,-0.7513530730785509],[123,127,64,-0.7565192487691986],[123,127,65,-0.7561677497500119],[123,127,66,-0.7558186296239195],[123,127,67,-0.7554718944782679],[123,127,68,-0.7551275503079161],[123,127,69,-0.7547856030148065],[123,127,70,-0.7544460584075192],[123,127,71,-0.7541089222008325],[123,127,72,-0.7537742000152801],[123,127,73,-0.7534418973767238],[123,127,74,-0.7531120197158986],[123,127,75,-0.7527845723679858],[123,127,76,-0.7524595605721761],[123,127,77,-0.7521369894712324],[123,127,78,-0.7518168641110567],[123,127,79,-0.7514991894402523],[123,128,64,-0.7566698113584676],[123,128,65,-0.7563180319063696],[123,128,66,-0.7559686307197824],[123,128,67,-0.7556216138895577],[123,128,68,-0.7552769874140879],[123,128,69,-0.7549347571988752],[123,128,70,-0.7545949290560876],[123,128,71,-0.7542575087041182],[123,128,72,-0.7539225017671434],[123,128,73,-0.7535899137746949],[123,128,74,-0.7532597501612052],[123,128,75,-0.7529320162655808],[123,128,76,-0.7526067173307657],[123,128,77,-0.7522838585033029],[123,128,78,-0.7519634448329031],[123,128,79,-0.7516454812720056],[123,129,64,-0.7568205324907341],[123,129,65,-0.7564684737505263],[123,129,66,-0.7561187926442012],[123,129,67,-0.7557714952660974],[123,129,68,-0.7554265876181208],[123,129,69,-0.7550840756093152],[123,129,70,-0.7547439650554176],[123,129,71,-0.7544062616784175],[123,129,72,-0.7540709711061155],[123,129,73,-0.7537380988716955],[123,129,74,-0.7534076504132692],[123,129,75,-0.7530796310734511],[123,129,76,-0.7527540460989199],[123,129,77,-0.7524309006399825],[123,129,78,-0.7521101997501403],[123,129,79,-0.751791948385652],[123,130,64,-0.75697141193669],[123,130,65,-0.7566190750558517],[123,130,66,-0.7562691151732164],[123,130,67,-0.7559215383865896],[123,130,68,-0.7555763507013722],[123,130,69,-0.7552335580301307],[123,130,70,-0.7548931661921521],[123,130,71,-0.7545551809130041],[123,130,72,-0.754219607824093],[123,130,73,-0.7538864524622366],[123,130,74,-0.7535557202692084],[123,130,75,-0.7532274165913124],[123,130,76,-0.7529015466789453],[123,130,77,-0.7525781156861593],[123,130,78,-0.7522571286702301],[123,130,79,-0.7519385905912186],[123,131,64,-0.7571224494652856],[123,131,65,-0.756769835593967],[123,131,66,-0.7564195980811121],[123,131,67,-0.7560717430279742],[123,131,68,-0.7557262764434297],[123,131,69,-0.755383204243549],[123,131,70,-0.7550425322511505],[123,131,71,-0.7547042661953612],[123,131,72,-0.7543684117111753],[123,131,73,-0.7540349743390259],[123,131,74,-0.7537039595243302],[123,131,75,-0.7533753726170642],[123,131,76,-0.7530492188713245],[123,131,77,-0.7527255034448919],[123,131,78,-0.7524042313987986],[123,131,79,-0.7520854076968906],[123,132,64,-0.7572736448437885],[123,132,65,-0.7569207551348042],[123,132,66,-0.7565702411404766],[123,132,67,-0.7562221089654876],[123,132,68,-0.7558763646221707],[123,132,69,-0.7555330140300804],[123,132,70,-0.7551920630155481],[123,132,71,-0.754853517311242],[123,132,72,-0.7545173825557248],[123,132,73,-0.7541836642930271],[123,132,74,-0.7538523679721919],[123,132,75,-0.7535234989468491],[123,132,76,-0.7531970624747776],[123,132,77,-0.7528730637174691],[123,132,78,-0.7525515077396954],[123,132,79,-0.7522323995090701],[123,133,64,-0.7574249978377653],[123,133,65,-0.7570718334465861],[123,133,66,-0.756721044122182],[123,133,67,-0.7563726359726439],[123,133,68,-0.7560266150137429],[123,133,69,-0.7556829871684989],[123,133,70,-0.7553417582667376],[123,133,71,-0.7550029340446489],[123,133,72,-0.7546665201443467],[123,133,73,-0.7543325221134403],[123,133,74,-0.7540009454045803],[123,133,75,-0.7536717953750326],[123,133,76,-0.7533450772862409],[123,133,77,-0.7530207963033901],[123,133,78,-0.752698957494974],[123,133,79,-0.7523795658323571],[123,134,64,-0.7575765082110617],[123,134,65,-0.7572230702958085],[123,134,66,-0.756872006795366],[123,134,67,-0.7565233238212153],[123,134,68,-0.7561770273925454],[123,134,69,-0.755833123435823],[123,134,70,-0.7554916177843485],[123,134,71,-0.7551525161778159],[123,134,72,-0.7548158242618705],[123,134,73,-0.754481547587683],[123,134,74,-0.7541496916114929],[123,134,75,-0.7538202616941845],[123,134,76,-0.7534932631008482],[123,134,77,-0.7531687010003447],[123,134,78,-0.7528465804648724],[123,134,79,-0.7525269064695295],[123,135,64,-0.7577281757258623],[123,135,65,-0.7573744654472984],[123,135,66,-0.7570231289274909],[123,135,67,-0.7566741722812915],[123,135,68,-0.7563276015312879],[123,135,69,-0.7559834226073744],[123,135,70,-0.7556416413463076],[123,135,71,-0.7553022634912662],[123,135,72,-0.754965294691409],[123,135,73,-0.7546307405014491],[123,135,74,-0.7542986063811974],[123,135,75,-0.7539688976951378],[123,135,76,-0.7536416197119902],[123,135,77,-0.7533167776042733],[123,135,78,-0.7529943764478726],[123,135,79,-0.7526744212216027],[123,136,64,-0.7578800001426624],[123,136,65,-0.7575260186641866],[123,136,66,-0.7571744102843155],[123,136,67,-0.7568251811212516],[123,136,68,-0.7564783372009626],[123,136,69,-0.7561338844567508],[123,136,70,-0.7557918287288101],[123,136,71,-0.7554521757637851],[123,136,72,-0.7551149312143298],[123,136,73,-0.754780100638681],[123,136,74,-0.7544476895002026],[123,136,75,-0.7541177031669606],[123,136,76,-0.7537901469112861],[123,136,77,-0.7534650259093383],[123,136,78,-0.7531423452406721],[123,136,79,-0.7528221098878014],[123,137,64,-0.7580319812202927],[123,137,65,-0.757677729707932],[123,137,66,-0.7573258506299195],[123,137,67,-0.7569763501077892],[123,137,68,-0.7566292341708686],[123,137,69,-0.7562845087558497],[123,137,70,-0.7559421797063445],[123,137,71,-0.7556022527724444],[123,137,72,-0.7552647336102802],[123,137,73,-0.7549296277815938],[123,137,74,-0.7545969407532838],[123,137,75,-0.7542666778969804],[123,137,76,-0.7539388444886079],[123,137,77,-0.753613445707948],[123,137,78,-0.7532904866382082],[123,137,79,-0.7529699722655836],[123,138,64,-0.7581841187158911],[123,138,65,-0.7578295983382934],[123,138,66,-0.7574774497266756],[123,138,67,-0.757127679005883],[123,138,68,-0.756780292208584],[123,138,69,-0.7564352952748408],[123,138,70,-0.756092694051664],[123,138,71,-0.755752494292574],[123,138,72,-0.7554147016571586],[123,138,73,-0.7550793217106471],[123,138,74,-0.7547463599234541],[123,138,75,-0.7544158216707559],[123,138,76,-0.7540877122320521],[123,138,77,-0.7537620367907292],[123,138,78,-0.7534388004336294],[123,138,79,-0.7531180081506123],[123,139,64,-0.7583364123849621],[123,139,65,-0.7579816243133898],[123,139,66,-0.757629207335309],[123,139,67,-0.7572791675788574],[123,139,68,-0.7569315110800251],[123,139,69,-0.7565862437822245],[123,139,70,-0.7562433715358465],[123,139,71,-0.7559029000978208],[123,139,72,-0.7555648351311741],[123,139,73,-0.7552291822046041],[123,139,74,-0.7548959467920235],[123,139,75,-0.7545651342721362],[123,139,76,-0.7542367499279989],[123,139,77,-0.7539107989465857],[123,139,78,-0.7535872864183555],[123,139,79,-0.7532662173368146],[123,140,64,-0.7584888619813579],[123,140,65,-0.7581338073896794],[123,140,66,-0.7577811232148777],[123,140,67,-0.757430815588363],[123,140,68,-0.757082890549427],[123,140,69,-0.7567373540448137],[123,140,70,-0.7563942119282748],[123,140,71,-0.7560534699601305],[123,140,72,-0.7557151338068274],[123,140,73,-0.7553792090405131],[123,140,74,-0.75504570113858],[123,140,75,-0.7547146154832415],[123,140,76,-0.7543859573610934],[123,140,77,-0.7540597319626792],[123,140,78,-0.7537359443820572],[123,140,79,-0.753414599616363],[123,141,64,-0.7586414672572586],[123,141,65,-0.7582861473219422],[123,141,66,-0.7579331971227539],[123,141,67,-0.7575826227943566],[123,141,68,-0.7572344303793245],[123,141,69,-0.7568886258277135],[123,141,70,-0.756545214996617],[123,141,71,-0.7562042036497264],[123,141,72,-0.7558655974568902],[123,141,73,-0.7555294019936867],[123,141,74,-0.7551956227409695],[123,141,75,-0.754864265084443],[123,141,76,-0.7545353343142247],[123,141,77,-0.7542088356244093],[123,141,78,-0.7538847741126365],[123,141,79,-0.7535631547796544],[123,142,64,-0.7587942279632318],[123,142,65,-0.7584386438633379],[123,142,66,-0.7580854288146823],[123,142,67,-0.7577345889551611],[123,142,68,-0.7573861303306112],[123,142,69,-0.7570400588943809],[123,142,70,-0.7566963805068861],[123,142,71,-0.7563551009351709],[123,142,72,-0.7560162258524659],[123,142,73,-0.7556797608377619],[123,142,74,-0.7553457113753553],[123,142,75,-0.7550140828544234],[123,142,76,-0.7546848805685867],[123,142,77,-0.7543581097154735],[123,142,78,-0.7540337753962874],[123,142,79,-0.7537118826153706],[123,143,64,-0.7589471438482049],[123,143,65,-0.7585912967653787],[123,143,66,-0.7582378180447533],[123,143,67,-0.7578867138274374],[123,143,68,-0.7575379901625114],[123,143,69,-0.7571916530065966],[123,143,70,-0.7568477082234122],[123,143,71,-0.7565061615833353],[123,143,72,-0.7561670187629603],[123,143,73,-0.7558302853446718],[123,143,74,-0.7554959668161902],[123,143,75,-0.7551640685701474],[123,143,76,-0.7548345959036488],[123,143,77,-0.7545075540178381],[123,143,78,-0.7541829480174651],[123,143,79,-0.7538607829104491],[123,144,64,-0.759100214659489],[123,144,65,-0.7587441057779537],[123,144,66,-0.7583903645654261],[123,144,67,-0.7580389971662086],[123,144,68,-0.7576900096326047],[123,144,69,-0.7573434079244895],[123,144,70,-0.7569991979088659],[123,144,71,-0.7566573853594255],[123,144,72,-0.756317975956107],[123,144,73,-0.75598097528467],[123,144,74,-0.7556463888362407],[123,144,75,-0.7553142220068867],[123,144,76,-0.7549844800971803],[123,144,77,-0.7546571683117632],[123,144,78,-0.754332291758913],[123,144,79,-0.7540098554501081],[123,145,64,-0.7592534401427506],[123,145,65,-0.7588970706492998],[123,145,66,-0.7585430681275014],[123,145,67,-0.7581914387248316],[123,145,68,-0.7578421884967974],[123,145,69,-0.757495323406508],[123,145,70,-0.7571508493242312],[123,145,71,-0.7568087720269528],[123,145,72,-0.7564690971979376],[123,145,73,-0.7561318304263016],[123,145,74,-0.7557969772065575],[123,145,75,-0.7554645429381909],[123,145,76,-0.7551345329252226],[123,145,77,-0.7548069523757732],[123,145,78,-0.7544818064016316],[123,145,79,-0.754159100017817],[123,146,64,-0.7594068200420723],[123,146,65,-0.7590501911260623],[123,146,66,-0.7586959284801807],[123,146,67,-0.758344038255057],[123,146,68,-0.7579945265093823],[123,146,69,-0.7576473992094802],[123,146,70,-0.7573026622288634],[123,146,71,-0.7569603213477939],[123,146,72,-0.7566203822528429],[123,146,73,-0.7562828505364635],[123,146,74,-0.7559477316965368],[123,146,75,-0.7556150311359477],[123,146,76,-0.7552847541621475],[123,146,77,-0.7549569059867176],[123,146,78,-0.7546314917249397],[123,146,79,-0.7543085163953569],[123,147,64,-0.7595603540999317],[123,147,65,-0.759203466953275],[123,147,66,-0.7588489453710467],[123,147,67,-0.7584967955070097],[123,147,68,-0.7581470234230191],[123,147,69,-0.7577996350885936],[123,147,70,-0.7574546363804715],[123,147,71,-0.7571120330821713],[123,147,72,-0.7567718308835517],[123,147,73,-0.7564340353803842],[123,147,74,-0.7560986520738997],[123,147,75,-0.7557656863703635],[123,147,76,-0.7554351435806386],[123,147,77,-0.7551070289197503],[123,147,78,-0.7547813475064544],[123,147,79,-0.7544581043628],[123,148,64,-0.7597140420571833],[123,148,65,-0.7593568978743407],[123,148,66,-0.7590021185460436],[123,148,67,-0.7586497102291684],[123,148,68,-0.7582996789887145],[123,148,69,-0.7579520307973759],[123,148,70,-0.7576067715350969],[123,148,71,-0.7572639069886333],[123,148,72,-0.756923442851112],[123,148,73,-0.7565853847216043],[123,148,74,-0.7562497381046718],[123,148,75,-0.7559165084099417],[123,148,76,-0.755585700951671],[123,148,77,-0.7552573209483098],[123,148,78,-0.7549313735220703],[123,148,79,-0.7546078636984902],[123,149,64,-0.7598678836531174],[123,149,65,-0.7595104836310907],[123,149,66,-0.7591554477495372],[123,149,67,-0.7588027821684264],[123,149,68,-0.7584524929558827],[123,149,69,-0.7581045860877547],[123,149,70,-0.7577590674471738],[123,149,71,-0.7574159428241138],[123,149,72,-0.7570752179149507],[123,149,73,-0.7567368983220362],[123,149,74,-0.756400989553244],[123,149,75,-0.756067497021545],[123,149,76,-0.7557364260445709],[123,149,77,-0.7554077818441791],[123,149,78,-0.7550815695460202],[123,149,79,-0.7547577941791024],[123,150,64,-0.7600218786254409],[123,150,65,-0.7596642239637658],[123,150,66,-0.7593089327242951],[123,150,67,-0.7589560110700719],[123,150,68,-0.7586054650723244],[123,150,69,-0.7582573007100376],[123,150,70,-0.7579115238695098],[123,150,71,-0.7575681403439132],[123,150,72,-0.7572271558328535],[123,150,73,-0.7568885759419444],[123,150,74,-0.7565524061823525],[123,150,75,-0.7562186519703736],[123,150,76,-0.7558873186269965],[123,150,77,-0.7555584113774666],[123,150,78,-0.7552319353508553],[123,150,79,-0.7549078955796231],[123,151,64,-0.7601760267102572],[123,151,65,-0.7598181186109957],[123,151,66,-0.7594625732114668],[123,151,67,-0.7591093966777668],[123,151,68,-0.7587585950842085],[123,151,69,-0.7584101744128927],[123,151,70,-0.7580641405532651],[123,151,71,-0.7577204993016771],[123,151,72,-0.757379256360945],[123,151,73,-0.7570404173399251],[123,151,74,-0.7567039877530581],[123,151,75,-0.7563699730199464],[123,151,76,-0.7560383784649165],[123,151,77,-0.7557092093165844],[123,151,78,-0.7553824707074238],[123,151,79,-0.7550581676733298],[123,152,64,-0.7603303276421267],[123,152,65,-0.7599721673098596],[123,152,66,-0.7596163689506439],[123,152,67,-0.7592629387336086],[123,152,68,-0.7589118827361311],[123,152,69,-0.7585632069434083],[123,152,70,-0.7582169172480135],[123,152,71,-0.7578730194494577],[123,152,72,-0.7575315192537491],[123,152,73,-0.7571924222729668],[123,152,74,-0.7568557340248072],[123,152,75,-0.75652145993216],[123,152,76,-0.7561896053226717],[123,152,77,-0.7558601754283099],[123,152,78,-0.7555331753849325],[123,152,79,-0.7552086102318514],[123,153,64,-0.7604847811540378],[123,153,65,-0.7601263697958576],[123,153,66,-0.7597703196798311],[123,153,67,-0.7594166369781004],[123,153,68,-0.7590653277710869],[123,153,69,-0.7587163980470639],[123,153,70,-0.7583698537017128],[123,153,71,-0.7580257005376847],[123,153,72,-0.7576839442641596],[123,153,73,-0.7573445904964211],[123,153,74,-0.757007644755402],[123,153,75,-0.7566731124672608],[123,153,76,-0.7563409989629448],[123,153,77,-0.7560113094777554],[123,153,78,-0.7556840491509167],[123,153,79,-0.7553592230251388],[123,154,64,-0.7606393869774319],[123,154,65,-0.7602807258029348],[123,154,66,-0.7599244251354714],[123,154,67,-0.7595704911501759],[123,154,68,-0.7592189299304942],[123,154,69,-0.7588697474677557],[123,154,70,-0.7585229496607301],[123,154,71,-0.758178542315189],[123,154,72,-0.7578365311434653],[123,154,73,-0.7574969217640274],[123,154,74,-0.7571597197010258],[123,154,75,-0.7568249303838688],[123,154,76,-0.756492559146786],[123,154,77,-0.7561626112283943],[123,154,78,-0.7558350917712652],[123,154,79,-0.7555100058214899],[123,155,64,-0.7607941448421737],[123,155,65,-0.760435235063453],[123,155,66,-0.7600786850524168],[123,155,67,-0.7597245009871709],[123,155,68,-0.7593726889541655],[123,155,69,-0.7590232549477665],[123,155,70,-0.758676204869812],[123,155,71,-0.7583315445291745],[123,155,72,-0.7579892796413203],[123,155,73,-0.7576494158278836],[123,155,74,-0.7573119586162131],[123,155,75,-0.7569769134389484],[123,155,76,-0.756644285633583],[123,155,77,-0.75631408044203],[123,155,78,-0.755986303010191],[123,155,79,-0.7556609583875191],[123,156,64,-0.7609490544766125],[123,156,65,-0.7605898973082506],[123,156,66,-0.760233099163988],[123,156,67,-0.7598786662248824],[123,156,68,-0.7595266045803681],[123,156,69,-0.7591769202278268],[123,156,70,-0.7588296190721456],[123,156,71,-0.7584847069252783],[123,156,72,-0.7581421895058049],[123,156,73,-0.7578020724385064],[123,156,74,-0.7574643612539107],[123,156,75,-0.7571290613878694],[123,156,76,-0.7567961781811213],[123,156,77,-0.7564657168788578],[123,156,78,-0.7561376826302912],[123,156,79,-0.7558120804882198],[123,157,64,-0.761104115607562],[123,157,65,-0.7607447122666227],[123,157,66,-0.7603876672019558],[123,157,67,-0.7600329865975501],[123,157,68,-0.7596806765458036],[123,157,69,-0.7593307430470942],[123,157,70,-0.7589831920093382],[123,157,71,-0.7586380292475503],[123,157,72,-0.7582952604834053],[123,157,73,-0.7579548913448114],[123,157,74,-0.7576169273654567],[123,157,75,-0.757281373984386],[123,157,76,-0.7569482365455646],[123,157,77,-0.7566175202974433],[123,157,78,-0.7562892303925277],[123,157,79,-0.7559633718869418],[123,158,64,-0.7612593279602797],[123,158,65,-0.7608996796663012],[123,158,66,-0.76054238889652],[123,158,67,-0.7601874618378354],[123,158,68,-0.7598349045855886],[123,158,69,-0.7594847231431341],[123,158,70,-0.7591369234213965],[123,158,71,-0.7587915112384331],[123,158,72,-0.7584484923189933],[123,158,73,-0.7581078722940928],[123,158,74,-0.7577696567005611],[123,158,75,-0.7574338509806173],[123,158,76,-0.7571004604814342],[123,158,77,-0.7567694904547035],[123,158,78,-0.7564409460562055],[123,158,79,-0.7561148323453722],[123,159,64,-0.7614146912585281],[123,159,65,-0.7610547992335155],[123,159,66,-0.7606972639763699],[123,159,67,-0.7603420916768815],[123,159,68,-0.7599892884333143],[123,159,69,-0.7596388602519786],[123,159,70,-0.7592908130467884],[123,159,71,-0.7589451526388227],[123,159,72,-0.7586018847558862],[123,159,73,-0.7582610150320834],[123,159,74,-0.7579225490073656],[123,159,75,-0.7575864921271068],[123,159,76,-0.7572528497416688],[123,159,77,-0.756921627105966],[123,159,78,-0.756592829379034],[123,159,79,-0.7562664616235955],[123,160,64,-0.7615702052245451],[123,160,65,-0.7612100706929622],[123,160,66,-0.7608522921686558],[123,160,67,-0.7604968758442853],[123,160,68,-0.7601438278210175],[123,160,69,-0.7597931541080989],[123,160,70,-0.7594448606224122],[123,160,71,-0.7590989531880388],[123,160,72,-0.758755437535819],[123,160,73,-0.7584143193029261],[123,160,74,-0.7580756040324143],[123,160,75,-0.7577392971727939],[123,160,76,-0.7574054040775964],[123,160,77,-0.7570739300049398],[123,160,78,-0.756744880117098],[123,160,79,-0.7564182594800641],[123,161,64,-0.7617258695790688],[123,161,65,-0.7613654937678316],[123,161,66,-0.7610074731990127],[123,161,67,-0.7606518140681212],[123,161,68,-0.7602985224792063],[123,161,69,-0.7599476044444294],[123,161,70,-0.7595990658836227],[123,161,71,-0.75925291262385],[123,161,72,-0.7589091503989673],[123,161,73,-0.7585677848491978],[123,161,74,-0.7582288215206789],[123,161,75,-0.757892265865038],[123,161,76,-0.7575581232389577],[123,161,77,-0.7572263989037409],[123,161,78,-0.7568970980248806],[123,161,79,-0.7565702256716236],[123,162,64,-0.7618816840413091],[123,162,65,-0.7615210681797769],[123,162,66,-0.7611628067915325],[123,162,67,-0.7608069060749129],[123,162,68,-0.760453372136829],[123,162,69,-0.760102210992338],[123,162,70,-0.7597534285642009],[123,162,71,-0.7594070306824439],[123,162,72,-0.7590630230839193],[123,162,73,-0.7587214114118805],[123,162,74,-0.7583822012155286],[123,162,75,-0.7580453979495893],[123,162,76,-0.7577110069738772],[123,162,77,-0.7573790335528615],[123,162,78,-0.7570494828552355],[123,162,79,-0.7567223599534814],[123,163,64,-0.7620376483290068],[123,163,65,-0.7616767936489761],[123,163,66,-0.761318292668823],[123,163,67,-0.7609621515896922],[123,163,68,-0.7606083765213363],[123,163,69,-0.7602569734816873],[123,163,70,-0.759907948396415],[123,163,71,-0.759561307098488],[123,163,72,-0.7592170553277355],[123,163,73,-0.7588751987304213],[123,163,74,-0.7585357428587911],[123,163,75,-0.7581986931706493],[123,163,76,-0.7578640550289238],[123,163,77,-0.7575318337012313],[123,163,78,-0.7572020343594471],[123,163,79,-0.7568746620792695],[123,164,64,-0.7621937621584147],[123,164,65,-0.7618326698941108],[123,164,66,-0.7614739305519888],[123,164,67,-0.7611175503359808],[123,164,68,-0.7607635353586603],[123,164,69,-0.7604118916408138],[123,164,70,-0.7600626251109998],[123,164,71,-0.7597157416051096],[123,164,72,-0.7593712468659289],[123,164,73,-0.7590291465427128],[123,164,74,-0.7586894461907319],[123,164,75,-0.7583521512708504],[123,164,76,-0.7580172671490903],[123,164,77,-0.757684799096197],[123,164,78,-0.7573547522872089],[123,164,79,-0.7570271318010228],[123,165,64,-0.7623500252442772],[123,165,65,-0.7619886966323464],[123,165,66,-0.7616297201606108],[123,165,67,-0.7612731020357689],[123,165,68,-0.7609188483731942],[123,165,69,-0.7605669651965081],[123,165,70,-0.7602174584371368],[123,165,71,-0.7598703339338747],[123,165,72,-0.7595255974324445],[123,165,73,-0.759183254585072],[123,165,74,-0.7588433109500342],[123,165,75,-0.7585057719912355],[123,165,76,-0.7581706430777729],[123,165,77,-0.7578379294835014],[123,165,78,-0.7575076363866045],[123,165,79,-0.757179768869158],[123,166,64,-0.7625064372998902],[123,166,65,-0.7621448735793926],[123,166,66,-0.7617856612128064],[123,166,67,-0.7614288064095757],[123,166,68,-0.7610743152878534],[123,166,69,-0.7607221938740748],[123,166,70,-0.7603724481025147],[123,166,71,-0.7600250838148496],[123,166,72,-0.7596801067597192],[123,166,73,-0.7593375225923015],[123,166,74,-0.7589973368738593],[123,166,75,-0.7586595550713182],[123,166,76,-0.7583241825568312],[123,166,77,-0.7579912246073444],[123,166,78,-0.7576606864041668],[123,166,79,-0.7573325730325359],[123,167,64,-0.7626629980370725],[123,167,65,-0.7623012004494744],[123,167,66,-0.7619417534252009],[123,167,67,-0.7615846631764203],[123,167,68,-0.7612299358240452],[123,167,69,-0.760877577397304],[123,167,70,-0.7605275938332994],[123,167,71,-0.7601799909765702],[123,167,72,-0.7598347745786537],[123,167,73,-0.7594919502976594],[123,167,74,-0.7591515236978169],[123,167,75,-0.7588135002490539],[123,167,76,-0.7584778853265601],[123,167,77,-0.7581446842103532],[123,167,78,-0.75781390208485],[123,167,79,-0.75748554403843],[123,168,64,-0.7628197071661904],[123,168,65,-0.7624576769553564],[123,168,66,-0.7620979965129511],[123,168,67,-0.7617406720538469],[123,168,68,-0.7613857097016945],[123,168,69,-0.7610331154884953],[123,168,70,-0.7606828953541592],[123,168,71,-0.760335055146068],[123,168,72,-0.7599896006186357],[123,168,73,-0.7596465374328841],[123,168,74,-0.7593058711559902],[123,168,75,-0.7589676072608641],[123,168,76,-0.7586317511257127],[123,168,77,-0.7582983080336072],[123,168,78,-0.7579672831720524],[123,168,79,-0.7576386816325523],[123,169,64,-0.7629765643961282],[123,169,65,-0.7626143028083137],[123,169,66,-0.7622543901897174],[123,169,67,-0.7618968327578947],[123,169,68,-0.7615416366392137],[123,169,69,-0.7611888078684282],[123,169,70,-0.7608383523882356],[123,169,71,-0.7604902760488396],[123,169,72,-0.7601445846075114],[123,169,73,-0.7598012837281654],[123,169,74,-0.759460378980906],[123,169,75,-0.7591218758416063],[123,169,76,-0.7587857796914718],[123,169,77,-0.7584520958166076],[123,169,78,-0.7581208294075881],[123,169,79,-0.7577919855590226],[123,170,64,-0.7631335694343488],[123,170,65,-0.7627710777181923],[123,170,66,-0.7624109341677232],[123,170,67,-0.7620531450031586],[123,170,68,-0.7616977163535636],[123,170,69,-0.7613446542564238],[123,170,70,-0.7609939646572034],[123,170,71,-0.7606456534089078],[123,170,72,-0.7602997262716459],[123,170,73,-0.7599561889122041],[123,170,74,-0.7596150469035952],[123,170,75,-0.7592763057246357],[123,170,76,-0.7589399707595103],[123,170,77,-0.7586060472973388],[123,170,78,-0.7582745405317469],[123,170,79,-0.7579454555604301],[123,171,64,-0.763290721986874],[123,171,65,-0.7629280013933895],[123,171,66,-0.762567628157735],[123,171,67,-0.7622096085027694],[123,171,68,-0.7618539485602333],[123,171,69,-0.7615006543703233],[123,171,70,-0.7611497318812501],[123,171,71,-0.7608011869488012],[123,171,72,-0.7604550253359021],[123,171,73,-0.7601112527121923],[123,171,74,-0.7597698746535728],[123,171,75,-0.7594308966417838],[123,171,76,-0.7590943240639704],[123,171,77,-0.758760162212248],[123,171,78,-0.7584284162832741],[123,171,79,-0.7580990913778123],[123,172,64,-0.7634480217582634],[123,172,65,-0.7630850735408323],[123,172,66,-0.7627244718690426],[123,172,67,-0.7623662229683728],[123,172,68,-0.7620103329732187],[123,172,69,-0.7616568079264678],[123,172,70,-0.7613056537790563],[123,172,71,-0.7609568763895334],[123,172,72,-0.7606104815236213],[123,172,73,-0.7602664748537924],[123,172,74,-0.7599248619588165],[123,172,75,-0.7595856483233382],[123,172,76,-0.759248839337443],[123,172,77,-0.7589144402962233],[123,172,78,-0.7585824563993493],[123,172,79,-0.758252892750634],[123,173,64,-0.7636054684516754],[123,173,65,-0.763242293866039],[123,173,66,-0.7628814650095184],[123,173,67,-0.76252298811019],[123,173,68,-0.7621668693050848],[123,173,69,-0.7618131146397594],[123,173,70,-0.7614617300678557],[123,173,71,-0.7611127214506637],[123,173,72,-0.7607660945566829],[123,173,73,-0.7604218550611982],[123,173,74,-0.7600800085458284],[123,173,75,-0.759740560498103],[123,173,76,-0.7594035163110289],[123,173,77,-0.7590688812826557],[123,173,78,-0.7587366606156478],[123,173,79,-0.7584068594168485],[123,174,64,-0.7637630617688378],[123,174,65,-0.7633996620730901],[123,174,66,-0.763038607285589],[123,174,67,-0.7626799036369893],[123,174,68,-0.7623235572669347],[123,174,69,-0.7619695742236312],[123,174,70,-0.7616179604634052],[123,174,71,-0.7612687218502678],[123,174,72,-0.760921864155475],[123,174,73,-0.7605773930571047],[123,174,74,-0.7602353141396044],[123,174,75,-0.7598956328933695],[123,174,76,-0.7595583547143081],[123,174,77,-0.7592234849034087],[123,174,78,-0.7588910286663102],[123,174,79,-0.7585609911128679],[123,175,64,-0.7639208014100725],[123,175,65,-0.7635571778646515],[123,175,66,-0.76319589840226],[123,175,67,-0.7628369692561092],[123,175,68,-0.7624803965684351],[123,175,69,-0.7621261863900721],[123,175,70,-0.7617743446800109],[123,175,71,-0.7614248773049626],[123,175,72,-0.7610777900389197],[123,175,73,-0.7607330885627333],[123,175,74,-0.7603907784636599],[123,175,75,-0.7600508652349404],[123,175,76,-0.7597133542753656],[123,175,77,-0.759378250888843],[123,175,78,-0.7590455602839673],[123,175,79,-0.7587152875735869],[123,176,64,-0.7640786870742657],[123,176,65,-0.7637148409419465],[123,176,66,-0.7633533380630857],[123,176,67,-0.7629941846734298],[123,176,68,-0.7626373869177867],[123,176,69,-0.7622829508495974],[123,176,70,-0.7619308824304967],[123,176,71,-0.7615811875298754],[123,176,72,-0.7612338719244425],[123,176,73,-0.7608889412978013],[123,176,74,-0.7605464012399983],[123,176,75,-0.7602062572471001],[123,176,76,-0.7598685147207606],[123,176,77,-0.7595331789677867],[123,176,78,-0.7592002551997102],[123,176,79,-0.7588697485323534],[123,177,64,-0.7642367184589295],[123,177,65,-0.7638726510048159],[123,177,66,-0.7635109259702304],[123,177,67,-0.7631515495934339],[123,177,68,-0.7627945280217842],[123,177,69,-0.7624398673113092],[123,177,70,-0.7620875734262664],[123,177,71,-0.761737652238706],[123,177,72,-0.7613901095280333],[123,177,73,-0.7610449509805839],[123,177,74,-0.7607021821891737],[123,177,75,-0.7603618086526759],[123,177,76,-0.7600238357755875],[123,177,77,-0.759688268867596],[123,177,78,-0.7593551131431512],[123,177,79,-0.7590243737210298],[123,178,64,-0.7643948952601805],[123,178,65,-0.7640306077516974],[123,178,66,-0.7636686618244478],[123,178,67,-0.7633090637191853],[123,178,68,-0.7629518195857967],[123,178,69,-0.7625969354828761],[123,178,70,-0.7622444173772829],[123,178,71,-0.761894271143706],[123,178,72,-0.7615465025642264],[123,178,73,-0.7612011173278924],[123,178,74,-0.7608581210302692],[123,178,75,-0.7605175191730167],[123,178,76,-0.7601793171634558],[123,178,77,-0.7598435203141349],[123,178,78,-0.7595101338424023],[123,178,79,-0.7591791628699712],[123,179,64,-0.7645532171727196],[123,179,65,-0.7641887108796054],[123,179,66,-0.7638265453250601],[123,179,67,-0.7634667267523089],[123,179,68,-0.7631092613137469],[123,179,69,-0.7627541550705124],[123,179,70,-0.7624014139920465],[123,179,71,-0.7620510439556567],[123,179,72,-0.7617030507460788],[123,179,73,-0.7613574400550538],[123,179,74,-0.761014217480876],[123,179,75,-0.7606733885279726],[123,179,76,-0.7603349586064682],[123,179,77,-0.7599989330317534],[123,179,78,-0.7596653170240556],[123,179,79,-0.7593341157080049],[123,180,64,-0.7647116838898932],[123,180,65,-0.7643469600841917],[123,180,66,-0.7639845761700195],[123,180,67,-0.7636245383930519],[123,180,68,-0.7632668529081711],[123,180,69,-0.762911525779039],[123,180,70,-0.7625585629776575],[123,180,71,-0.7622079703839315],[123,180,72,-0.761859753785232],[123,180,73,-0.7615139188759718],[123,180,74,-0.761170471257155],[123,180,75,-0.7608294164359555],[123,180,76,-0.7604907598252826],[123,180,77,-0.7601545067433493],[123,180,78,-0.759820662413243],[123,180,79,-0.7594892319624919],[123,181,64,-0.764870295103663],[123,181,65,-0.7645053550597156],[123,181,66,-0.7641427540558777],[123,181,67,-0.7637824983402535],[123,181,68,-0.7634245940701905],[123,181,69,-0.7630690473118538],[123,181,70,-0.7627158640397846],[123,181,71,-0.7623650501364654],[123,181,72,-0.7620166113918813],[123,181,73,-0.761670553503097],[123,181,74,-0.761326882073806],[123,181,75,-0.7609856026139094],[123,181,76,-0.7606467205390814],[123,181,77,-0.7603102411703379],[123,181,78,-0.7599761697336068],[123,181,79,-0.7596445113592958],[123,182,64,-0.7650290505046311],[123,182,65,-0.7646638954990692],[123,182,66,-0.7643010786778115],[123,182,67,-0.7639406062913696],[123,182,68,-0.7635824844995356],[123,182,69,-0.7632267193709561],[123,182,70,-0.7628733168826913],[123,182,71,-0.76252228291978],[123,182,72,-0.7621736232748013],[123,182,73,-0.7618273436474514],[123,182,74,-0.7614834496440934],[123,182,75,-0.7611419467773352],[123,182,76,-0.7608028404655965],[123,182,77,-0.7604661360326765],[123,182,78,-0.7601318387073246],[123,182,79,-0.7597999536228082],[123,183,64,-0.7651879497820101],[123,183,65,-0.764822581093747],[123,183,66,-0.7644595497295923],[123,183,67,-0.7640988619424436],[123,183,68,-0.7637405238945161],[123,183,69,-0.7633845416569168],[123,183,70,-0.7630309212092043],[123,183,71,-0.7626796684389529],[123,183,72,-0.762330789141315],[123,183,73,-0.7619842890185983],[123,183,74,-0.7616401736798148],[123,183,75,-0.76129844864026],[123,183,76,-0.760959119321079],[123,183,77,-0.7606221910488342],[123,183,78,-0.7602876690550782],[123,183,79,-0.7599555584759182],[123,184,64,-0.7653469926236842],[123,184,65,-0.7649814115339072],[123,184,66,-0.7646181669036474],[123,184,67,-0.7642572649881665],[123,184,68,-0.7638987119520817],[123,184,69,-0.7635425138689397],[123,184,70,-0.7631886767207758],[123,184,71,-0.7628372063976794],[123,184,72,-0.7624881086973558],[123,184,73,-0.7621413893247035],[123,184,74,-0.7617970538913637],[123,184,75,-0.7614551079152988],[123,184,76,-0.7611155568203599],[123,184,77,-0.7607784059358538],[123,184,78,-0.7604436604961151],[123,184,79,-0.7601113256400738],[123,185,64,-0.7655061787161885],[123,185,65,-0.7651403865083511],[123,185,66,-0.764776929891039],[123,185,67,-0.7644158151218569],[123,185,68,-0.7640570483678024],[123,185,69,-0.7637006357048403],[123,185,70,-0.7633465831174623],[123,185,71,-0.7629948964982517],[123,185,72,-0.7626455816474462],[123,185,73,-0.7622986442725146],[123,185,74,-0.761954089987707],[123,185,75,-0.7616119243136334],[123,185,76,-0.7612721526768302],[123,185,77,-0.7609347804093293],[123,185,78,-0.7605998127482286],[123,185,79,-0.76026725483526],[123,186,64,-0.7656655077446881],[123,186,65,-0.7652995057045021],[123,186,66,-0.764935838381444],[123,186,67,-0.7645745120354399],[123,186,68,-0.7642155328358463],[123,186,69,-0.7638589068610252],[123,186,70,-0.7635046400979033],[123,186,71,-0.7631527384415373],[123,186,72,-0.7628032076946764],[123,186,73,-0.7624560535673395],[123,186,74,-0.7621112816763653],[123,186,75,-0.7617688975449909],[123,186,76,-0.7614289066024191],[123,186,77,-0.7610913141833864],[123,186,78,-0.7607561255277346],[123,186,79,-0.760423345779979],[123,187,64,-0.7658249793930392],[123,187,65,-0.7654587688084669],[123,187,66,-0.7650948920632146],[123,187,67,-0.764733355419508],[123,187,68,-0.7643741650490418],[123,187,69,-0.7640173270325531],[123,187,70,-0.763662847359383],[123,187,71,-0.7633107319270406],[123,187,72,-0.7629609865407662],[123,187,73,-0.7626136169131079],[123,187,74,-0.762268628663473],[123,187,75,-0.7619260273177058],[123,187,76,-0.761585818307655],[123,187,77,-0.7612480069707424],[123,187,78,-0.7609125985495344],[123,187,79,-0.7605795981913102],[123,188,64,-0.7659845933437688],[123,188,65,-0.7656181755050147],[123,188,66,-0.7652540906233575],[123,188,67,-0.7648923449633009],[123,188,68,-0.7645329446988558],[123,188,69,-0.7641758959131137],[123,188,70,-0.7638212045978091],[123,188,71,-0.7634688766528822],[123,188,72,-0.7631189178860435],[123,188,73,-0.7627713340123505],[123,188,74,-0.7624261306537582],[123,188,75,-0.7620833133386979],[123,188,76,-0.761742887501645],[123,188,77,-0.7614048584826861],[123,188,78,-0.7610692315270933],[123,188,79,-0.7607360117848895],[123,189,64,-0.7661443492780531],[123,189,65,-0.7657777254775562],[123,189,66,-0.7654134337475131],[123,189,67,-0.7650514803546838],[123,189,68,-0.7646918714753735],[123,189,69,-0.7643346131950077],[123,189,70,-0.7639797115076918],[123,189,71,-0.7636271723157773],[123,189,72,-0.7632770014294237],[123,189,73,-0.7629292045661774],[123,189,74,-0.7625837873505208],[123,189,75,-0.7622407553134523],[123,189,76,-0.761900113892053],[123,189,77,-0.7615618684290562],[123,189,78,-0.7612260241724184],[123,189,79,-0.7608925862748883],[123,190,64,-0.7663042468757794],[123,190,65,-0.7659374184082052],[123,190,66,-0.7655729211200168],[123,190,67,-0.7652107612802089],[123,190,68,-0.7648509450673597],[123,190,69,-0.7644934785692064],[123,190,70,-0.7641383677822052],[123,190,71,-0.7637856186110971],[123,190,72,-0.7634352368684707],[123,190,73,-0.7630872282743398],[123,190,74,-0.7627415984556943],[123,190,75,-0.7623983529460793],[123,190,76,-0.7620574971851622],[123,190,77,-0.761719036518302],[123,190,78,-0.7613829761961214],[123,190,79,-0.7610493213740745],[123,191,64,-0.7664642858155153],[123,191,65,-0.766097253977748],[123,191,66,-0.7657325524238692],[123,191,67,-0.7653701874250857],[123,191,68,-0.7650101651622278],[123,191,69,-0.7646524917253228],[123,191,70,-0.7642971731131569],[123,191,71,-0.7639442152328392],[123,191,72,-0.7635936238993664],[123,191,73,-0.7632454048351995],[123,191,74,-0.7628995636698155],[123,191,75,-0.7625561059392855],[123,191,76,-0.7622150370858434],[123,191,77,-0.7618763624574544],[123,191,78,-0.7615400873073873],[123,191,79,-0.7612062167937825],[123,192,64,-0.7666244657745345],[123,192,65,-0.7662572318656689],[123,192,66,-0.7658923273407596],[123,192,67,-0.7655297584732051],[123,192,68,-0.7651695314460653],[123,192,69,-0.7648116523516364],[123,192,70,-0.7644561271910127],[123,192,71,-0.7641029618736513],[123,192,72,-0.7637521622169358],[123,192,73,-0.7634037339457538],[123,192,74,-0.7630576826920485],[123,192,75,-0.7627140139943974],[123,192,76,-0.7623727332975806],[123,192,77,-0.7620338459521493],[123,192,78,-0.7616973572139991],[123,192,79,-0.761363272243937],[123,193,64,-0.7667847864287859],[123,193,65,-0.7664173517501189],[123,193,66,-0.7660522455510378],[123,193,67,-0.7656894741071099],[123,193,68,-0.7653290436036031],[123,193,69,-0.7649709601350618],[123,193,70,-0.764615229704867],[123,193,71,-0.7642618582248021],[123,193,72,-0.7639108515146168],[123,193,73,-0.7635622153016051],[123,193,74,-0.7632159552201555],[123,193,75,-0.7628720768113318],[123,193,76,-0.7625305855224399],[123,193,77,-0.7621914867065978],[123,193,78,-0.7618547856223072],[123,193,79,-0.761520487433023],[123,194,64,-0.766945247452955],[123,194,65,-0.7665776133079784],[123,194,66,-0.7662123067337736],[123,194,67,-0.7658493340080551],[123,194,68,-0.7654887013182776],[123,194,69,-0.7651304147612114],[123,194,70,-0.764774480342503],[123,194,71,-0.7644209039762412],[123,194,72,-0.7640696914845211],[123,194,73,-0.7637208485970217],[123,194,74,-0.7633743809505572],[123,194,75,-0.7630302940886565],[123,194,76,-0.7626885934611318],[123,194,77,-0.762349284423647],[123,194,78,-0.7620123722372916],[123,194,79,-0.7616778620681478],[123,195,64,-0.7671058485204432],[123,195,65,-0.7667380162148352],[123,195,66,-0.7663725105667369],[123,195,67,-0.7660093378559883],[123,195,68,-0.7656485042722089],[123,195,69,-0.7652900159143732],[123,195,70,-0.7649338787903723],[123,195,71,-0.7645800988165793],[123,195,72,-0.7642286818174133],[123,195,73,-0.763879633524918],[123,195,74,-0.7635329595783119],[123,195,75,-0.7631886655235696],[123,195,76,-0.7628467568129886],[123,195,77,-0.7625072388047598],[123,195,78,-0.7621701167625395],[123,195,79,-0.7618353958550186],[123,196,64,-0.7672665893033466],[123,196,65,-0.7668985601449637],[123,196,66,-0.7665328567263763],[123,196,67,-0.7661694853295274],[123,196,68,-0.7658084521461797],[123,196,69,-0.7654497632774906],[123,196,70,-0.7650934247335741],[123,196,71,-0.7647394424330662],[123,196,72,-0.7643878222026896],[123,196,73,-0.7640385697768313],[123,196,74,-0.7636916907970942],[123,196,75,-0.7633471908118776],[123,196,76,-0.7630050752759445],[123,196,77,-0.7626653495499923],[123,196,78,-0.7623280189002248],[123,196,79,-0.7619930884979215],[123,197,64,-0.7674274694725174],[123,197,65,-0.7670592447713868],[123,197,66,-0.7666933448878803],[123,197,67,-0.7663297761060225],[123,197,68,-0.765968544619697],[123,197,69,-0.7656096565322228],[123,197,70,-0.7652531178559155],[123,197,71,-0.7648989345116527],[123,197,72,-0.7645471123284393],[123,197,73,-0.7641976570429851],[123,197,74,-0.7638505742992568],[123,197,75,-0.7635058696480577],[123,197,76,-0.7631635485465963],[123,197,77,-0.7628236163580562],[123,197,78,-0.762486078351169],[123,197,79,-0.7621509396997831],[123,198,64,-0.7675884886975337],[123,198,65,-0.7672200697658448],[123,198,66,-0.7668539747251474],[123,198,67,-0.7664902098615253],[123,198,68,-0.7661287813709619],[123,198,69,-0.7657696953589157],[123,198,70,-0.7654129578398823],[123,198,71,-0.7650585747369598],[123,198,72,-0.7647065518814143],[123,198,73,-0.7643568950122578],[123,198,74,-0.7640096097757992],[123,198,75,-0.7636647017252263],[123,198,76,-0.7633221763201725],[123,198,77,-0.7629820389262876],[123,198,78,-0.7626442948148109],[123,198,79,-0.7623089491621402],[123,199,64,-0.7677496466467243],[123,199,65,-0.7673810347988205],[123,199,66,-0.7670147459108101],[123,199,67,-0.7666507862708143],[123,199,68,-0.7662891620768938],[123,199,69,-0.7659298794366252],[123,199,70,-0.7655729443666626],[123,199,71,-0.7652183627923036],[123,199,72,-0.764866140547054],[123,199,73,-0.7645162833722069],[123,199,74,-0.7641687969163935],[123,199,75,-0.7638236867351648],[123,199,76,-0.7634809582905588],[123,199,77,-0.7631406169506718],[123,199,78,-0.762802667989231],[123,199,79,-0.7624671165851638],[123,200,64,-0.7679109429871382],[123,200,65,-0.7675421395395092],[123,200,66,-0.7671756581162057],[123,200,67,-0.766811505007364],[123,200,68,-0.7664496864131004],[123,200,69,-0.766090208443088],[123,200,70,-0.7657330771161175],[123,200,71,-0.7653782983596646],[123,200,72,-0.7650258780094543],[123,200,73,-0.7646758218090393],[123,200,74,-0.7643281354093526],[123,200,75,-0.7639828243682877],[123,200,76,-0.7636398941502671],[123,200,77,-0.7632993501258133],[123,200,78,-0.7629611975711212],[123,200,79,-0.7626254416676281],[123,201,64,-0.7680723773846063],[123,201,65,-0.76770338365588],[123,201,66,-0.767336711011437],[123,201,67,-0.7669723657434067],[123,201,68,-0.7666103540539392],[123,201,69,-0.7662506820547821],[123,201,70,-0.7658933557668415],[123,201,71,-0.7655383811197498],[123,201,72,-0.7651857639514295],[123,201,73,-0.7648355100076725],[123,201,74,-0.7644876249416925],[123,201,75,-0.7641421143137052],[123,201,76,-0.763798983590497],[123,201,77,-0.7634582381449964],[123,201,78,-0.763119883255846],[123,201,79,-0.7627839241069737],[123,202,64,-0.7682339495037203],[123,202,65,-0.767864766814654],[123,202,66,-0.7674979042653508],[123,202,67,-0.7671333681499108],[123,202,68,-0.766771164672496],[123,202,69,-0.7664112999469063],[123,202,70,-0.7660537799961421],[123,202,71,-0.7656986107519705],[123,202,72,-0.765345798054491],[123,202,73,-0.7649953476517133],[123,202,74,-0.764647265199111],[123,202,75,-0.7643015562592013],[123,202,76,-0.7639582263011143],[123,202,77,-0.7636172807001641],[123,202,78,-0.7632787247374213],[123,202,79,-0.7629425635992841],[123,203,64,-0.7683956590078109],[123,203,65,-0.7680262886812842],[123,203,66,-0.7676592375455178],[123,203,67,-0.7672945118965604],[123,203,68,-0.7669321179405637],[123,203,69,-0.7665720617933586],[123,203,70,-0.7662143494800178],[123,203,71,-0.7658589869344219],[123,203,72,-0.7655059799988256],[123,203,73,-0.7651553344234363],[123,203,74,-0.7648070558659656],[123,203,75,-0.7644611498912123],[123,203,76,-0.7641176219706296],[123,203,77,-0.7637764774818967],[123,203,78,-0.7634377217084926],[123,203,79,-0.7631013598392654],[123,204,64,-0.7685575055590101],[123,204,65,-0.768187948920016],[123,204,66,-0.7678207105182927],[123,204,67,-0.7674557966518155],[123,204,68,-0.7670932135287039],[123,204,69,-0.7667329672667975],[123,204,70,-0.7663750638932199],[123,204,71,-0.7660195093439437],[123,204,72,-0.7656663094633578],[123,204,73,-0.765315470003845],[123,204,74,-0.7649669966253358],[123,204,75,-0.7646208948948889],[123,204,76,-0.76427717028626],[123,204,77,-0.7639358281794736],[123,204,78,-0.7635968738603965],[123,204,79,-0.7632603125203075],[123,205,64,-0.7687194888182207],[123,205,65,-0.7683497471938574],[123,205,66,-0.767982322848785],[123,205,67,-0.7676172220828831],[123,205,68,-0.7672544511062165],[123,205,69,-0.7668940160386121],[123,205,70,-0.7665359229092221],[123,205,71,-0.7661801776560903],[123,205,72,-0.7658267861257178],[123,205,73,-0.7654757540726426],[123,205,74,-0.7651270871589922],[123,205,75,-0.7647807909540647],[123,205,76,-0.7644368709338982],[123,205,77,-0.764095332480842],[123,205,78,-0.7637561808831306],[123,205,79,-0.7634194213344533],[123,206,64,-0.76888160844514],[123,206,65,-0.7685116831646033],[123,206,66,-0.7681440742008832],[123,206,67,-0.7677787878557406],[123,206,68,-0.7674158303411642],[123,206,69,-0.767055207778946],[123,206,70,-0.7666969262002453],[123,206,71,-0.7663409915451549],[123,206,72,-0.7659874096622676],[123,206,73,-0.765636186308255],[123,206,74,-0.7652873271474206],[123,206,75,-0.7649408377512815],[123,206,76,-0.7645967235981375],[123,206,77,-0.7642549900726421],[123,206,78,-0.7639156424653774],[123,206,79,-0.7635786859724236],[123,207,64,-0.769043864098231],[123,207,65,-0.7686737564928056],[123,207,66,-0.7683059642372236],[123,207,67,-0.767940493635106],[123,207,68,-0.7675773509003418],[123,207,69,-0.7672165421566671],[123,207,70,-0.7668580734372261],[123,207,71,-0.7665019506841394],[123,207,72,-0.7661481797480696],[123,207,73,-0.765796766387801],[123,207,74,-0.7654477162697922],[123,207,75,-0.7651010349677584],[123,207,76,-0.7647567279622401],[123,207,77,-0.7644148006401754],[123,207,78,-0.7640752582944735],[123,207,79,-0.7637381061235855],[123,208,64,-0.7692062554347825],[123,208,65,-0.7688359668378341],[123,208,66,-0.7684679926192536],[123,208,67,-0.7681023390844988],[123,208,68,-0.7677390124493385],[123,208,69,-0.7673780188394295],[123,208,70,-0.7670193642898796],[123,208,71,-0.7666630547448154],[123,208,72,-0.7663090960569484],[123,208,73,-0.7659574939871538],[123,208,74,-0.7656082542040246],[123,208,75,-0.765261382283453],[123,208,76,-0.7649168837082003],[123,208,77,-0.7645747638674678],[123,208,78,-0.7642350280564721],[123,208,79,-0.7638976814760153],[123,209,64,-0.7693687821108887],[123,209,65,-0.7689983138578553],[123,209,66,-0.7686301590072083],[123,209,67,-0.7682643238662199],[123,209,68,-0.7679008146525155],[123,209,69,-0.7675396374936514],[123,209,70,-0.7671807984266771],[123,209,71,-0.7668243033977036],[123,209,72,-0.7664701582614692],[123,209,73,-0.7661183687809194],[123,209,74,-0.7657689406267605],[123,209,75,-0.7654218793770406],[123,209,76,-0.7650771905167212],[123,209,77,-0.7647348794372466],[123,209,78,-0.7643949514361206],[123,209,79,-0.7640574117164755],[123,210,64,-0.7695314437814272],[123,210,65,-0.7691607972098119],[123,210,66,-0.7687924630600907],[123,210,67,-0.7684264476413285],[123,210,68,-0.7680627571729852],[123,210,69,-0.7677013977844942],[123,210,70,-0.767342375514825],[123,210,71,-0.7669856963120509],[123,210,72,-0.7666313660329163],[123,210,73,-0.7662793904424152],[123,210,74,-0.7659297752133457],[123,210,75,-0.7655825259258922],[123,210,76,-0.7652376480671943],[123,210,77,-0.7648951470309197],[123,210,78,-0.7645550281168384],[123,210,79,-0.7642172965303938],[123,211,64,-0.7696942401001214],[123,211,65,-0.7693234165494829],[123,211,66,-0.7689549044357327],[123,211,67,-0.7685887100697052],[123,211,68,-0.768224839672673],[123,211,69,-0.7678632993759242],[123,211,70,-0.7675040952203263],[123,211,71,-0.7671472331558938],[123,211,72,-0.7667927190413549],[123,211,73,-0.7664405586437313],[123,211,74,-0.7660907576378919],[123,211,75,-0.7657433216061357],[123,211,76,-0.7653982560377606],[123,211,77,-0.7650555663286367],[123,211,78,-0.7647152577807802],[123,211,79,-0.7643773356019251],[123,212,64,-0.7698571707195091],[123,212,65,-0.7694861715314542],[123,212,66,-0.7691174827907641],[123,212,67,-0.7687511108100205],[123,212,68,-0.7683870618122858],[123,212,69,-0.7680253419306811],[123,212,70,-0.76766595720795],[123,212,71,-0.767308913596026],[123,212,72,-0.7669542169556002],[123,212,73,-0.7666018730557],[123,212,74,-0.7662518875732446],[123,212,75,-0.765904266092626],[123,212,76,-0.7655590141052802],[123,212,77,-0.7652161370092586],[123,212,78,-0.7648756401088037],[123,212,79,-0.7645375286139198],[123,213,64,-0.7700202352909677],[123,213,65,-0.7696490618091429],[123,213,66,-0.7692801977806383],[123,213,67,-0.7689136495197597],[123,213,68,-0.7685494232513376],[123,213,69,-0.7681875251103037],[123,213,70,-0.7678279611412557],[123,213,71,-0.7674707372980246],[123,213,72,-0.7671158594432422],[123,213,73,-0.7667633333479209],[123,213,74,-0.7664131646910083],[123,213,75,-0.7660653590589692],[123,213,76,-0.7657199219453562],[123,213,77,-0.7653768587503822],[123,213,78,-0.7650361747804949],[123,213,79,-0.7646978752479492],[123,214,64,-0.7701834334646838],[123,214,65,-0.7698120870347669],[123,214,66,-0.7694430490596004],[123,214,67,-0.7690763258551924],[123,214,68,-0.7687119236481182],[123,214,69,-0.7683498485750986],[123,214,70,-0.767990106682563],[123,214,71,-0.7676327039262179],[123,214,72,-0.7672776461706144],[123,214,73,-0.7669249391887287],[123,214,74,-0.7665745886615156],[123,214,75,-0.7662266001774912],[123,214,76,-0.7658809792323045],[123,214,77,-0.7655377312283085],[123,214,78,-0.7651968614741367],[123,214,79,-0.7648583751842732],[123,215,64,-0.7703467648897138],[123,215,65,-0.7699752468594059],[123,215,66,-0.76960603628075],[123,215,67,-0.7692391394714337],[123,215,68,-0.7688745626597554],[123,215,69,-0.7685123119842018],[123,215,70,-0.7681523934930123],[123,215,71,-0.7677948131437476],[123,215,72,-0.7674395768028565],[123,215,73,-0.7670866902452564],[123,215,74,-0.7667361591538888],[123,215,75,-0.7663879891193004],[123,215,76,-0.7660421856392151],[123,215,77,-0.7656987541181057],[123,215,78,-0.7653576998667707],[123,215,79,-0.7650190281019041],[123,216,64,-0.7705102292139638],[123,216,65,-0.7701385409329806],[123,216,66,-0.769769159096019],[123,216,67,-0.7694020900224234],[123,216,68,-0.7690373399421927],[123,216,69,-0.7686749149955574],[123,216,70,-0.7683148212325451],[123,216,71,-0.7679570646125482],[123,216,72,-0.7676016510038914],[123,216,73,-0.7672485861834131],[123,216,74,-0.7668978758360188],[123,216,75,-0.7665495255542653],[123,216,76,-0.7662035408379304],[123,216,77,-0.7658599270935866],[123,216,78,-0.7655186896341761],[123,216,79,-0.7651798336785829],[123,217,64,-0.7706738260841673],[123,217,65,-0.770301968904231],[123,217,66,-0.7699324171561502],[123,217,67,-0.7695651771609039],[123,217,68,-0.7692002551501683],[123,217,69,-0.768837657265896],[123,217,70,-0.7684773895598802],[123,217,71,-0.7681194579933235],[123,217,72,-0.7677638684364048],[123,217,73,-0.7674106266678613],[123,217,74,-0.7670597383745422],[123,217,75,-0.7667112091509927],[123,217,76,-0.7663650444990238],[123,217,77,-0.7660212498272865],[123,217,78,-0.7656798304508468],[123,217,79,-0.7653407915907581],[123,218,64,-0.7708375551459471],[123,218,65,-0.7704655304207779],[123,218,66,-0.7700958101107594],[123,218,67,-0.7697284005384818],[123,218,68,-0.7693633079372768],[123,218,69,-0.7690005384507963],[123,218,70,-0.7686400981325772],[123,218,71,-0.7682819929456098],[123,218,72,-0.7679262287619062],[123,218,73,-0.7675728113620806],[123,218,74,-0.7672217464349045],[123,218,75,-0.7668730395768899],[123,218,76,-0.766526696291861],[123,218,77,-0.7661827219905258],[123,218,78,-0.765841121990054],[123,218,79,-0.7655019015136478],[123,219,64,-0.7710014160437935],[123,219,65,-0.7706292251291017],[123,219,66,-0.7702593376083133],[123,219,67,-0.769891759805607],[123,219,68,-0.7695264979559473],[123,219,69,-0.7691635582046634],[123,219,70,-0.7688029466070134],[123,219,71,-0.7684446691277539],[123,219,72,-0.7680887316407076],[123,219,73,-0.7677351399283445],[123,219,74,-0.7673838996813371],[123,219,75,-0.7670350164981433],[123,219,76,-0.7666884958845785],[123,219,77,-0.7663443432533883],[123,219,78,-0.7660025639238245],[123,219,79,-0.7656631631212181],[123,220,64,-0.7711654084210434],[123,220,65,-0.7707930526745206],[123,220,66,-0.7704229992961081],[123,220,67,-0.7700552546115504],[123,220,68,-0.7696898248574222],[123,220,69,-0.7693267161807074],[123,220,70,-0.7689659346383634],[123,220,71,-0.7686074861968908],[123,220,72,-0.7682513767319015],[123,220,73,-0.7678976120276992],[123,220,74,-0.7675461977768363],[123,220,75,-0.7671971395796953],[123,220,76,-0.7668504429440619],[123,220,77,-0.7665061132846981],[123,220,78,-0.7661641559229178],[123,220,79,-0.76582457608616],[123,221,64,-0.7713295319199416],[123,221,65,-0.7709570127012526],[123,221,66,-0.7705867948203314],[123,221,67,-0.770218884604466],[123,221,68,-0.7698532882918186],[123,221,69,-0.7694900120310051],[123,221,70,-0.7691290618806601],[123,221,71,-0.7687704438090064],[123,221,72,-0.7684141636934225],[123,221,73,-0.7680602273200254],[123,221,74,-0.7677086403832248],[123,221,75,-0.7673594084853071],[123,221,76,-0.7670125371360075],[123,221,77,-0.7666680317520828],[123,221,78,-0.766325897656889],[123,221,79,-0.7659861400799526],[123,222,64,-0.77149378618161],[123,222,65,-0.771121104852384],[123,222,66,-0.7707507238260314],[123,222,67,-0.7703826494313601],[123,222,68,-0.7700168879080975],[123,222,69,-0.7696534454064691],[123,222,70,-0.7692923279867643],[123,222,71,-0.7689335416189057],[123,222,72,-0.7685770921820176],[123,222,73,-0.7682229854640072],[123,222,74,-0.7678712271611211],[123,222,75,-0.7675218228775279],[123,222,76,-0.767174778124891],[123,222,77,-0.7668300983219419],[123,222,78,-0.7664877887940573],[123,222,79,-0.7661478547728309],[123,223,64,-0.7716581708460724],[123,223,65,-0.7712853287698952],[123,223,66,-0.7709147859571412],[123,223,67,-0.7705465487381159],[123,223,68,-0.7701806233540884],[123,223,69,-0.7698170159568721],[123,223,70,-0.7694557326083885],[123,223,71,-0.7690967792802382],[123,223,72,-0.7687401618532688],[123,223,73,-0.7683858861171569],[123,223,74,-0.7680339577699634],[123,223,75,-0.7676843824177184],[123,223,76,-0.7673371655739928],[123,223,77,-0.7669923126594712],[123,223,78,-0.7666498290015306],[123,223,79,-0.7663097198338114],[123,224,64,-0.7718226855522236],[123,224,65,-0.7714496840946288],[123,224,66,-0.7710789808564483],[123,224,67,-0.770710582169462],[123,224,68,-0.7703444942764588],[123,224,69,-0.7699807233308165],[123,224,70,-0.7696192753960667],[123,224,71,-0.7692601564454661],[123,224,72,-0.7689033723615635],[123,224,73,-0.7685489289357829],[123,224,74,-0.7681968318679788],[123,224,75,-0.7678470867660209],[123,224,76,-0.767499699145366],[123,224,77,-0.7671546744286315],[123,224,78,-0.7668120179451737],[123,224,79,-0.7664717349306597],[123,225,64,-0.7719873299378911],[123,225,65,-0.7716141704663517],[123,225,66,-0.771243308165656],[123,225,67,-0.7708747493690352],[123,225,68,-0.7705085003207751],[123,225,69,-0.7701445671757954],[123,225,70,-0.7697829559992161],[123,225,71,-0.7694236727659267],[123,225,72,-0.769066723360156],[123,225,73,-0.7687121135750534],[123,225,74,-0.7683598491122455],[123,225,75,-0.7680099355814201],[123,225,76,-0.7676623784998987],[123,225,77,-0.767317183292211],[123,225,78,-0.7669743552896716],[123,225,79,-0.7666338997299531],[123,226,64,-0.7721521036398136],[123,226,65,-0.7717787875237337],[123,226,66,-0.7714077675253621],[123,226,67,-0.7710390499793582],[123,226,68,-0.7706726411314817],[123,226,69,-0.7703085471381721],[123,226,70,-0.7699467740661148],[123,226,71,-0.7695873278918105],[123,226,72,-0.7692302145011456],[123,226,73,-0.7688754396889733],[123,226,74,-0.7685230091586703],[123,226,75,-0.7681729285217217],[123,226,76,-0.7678252032972925],[123,226,77,-0.767479838911803],[123,226,78,-0.767136840698506],[123,226,79,-0.766796213897059],[123,227,64,-0.7723170062936193],[123,227,65,-0.7719435349043259],[123,227,66,-0.7715723585750369],[123,227,67,-0.7712034836418177],[123,227,68,-0.7708369163518789],[123,227,69,-0.7704726628631571],[123,227,70,-0.7701107292438805],[123,227,71,-0.769751121472139],[123,227,72,-0.7693938454354545],[123,227,73,-0.7690389069303623],[123,227,74,-0.7686863116619675],[123,227,75,-0.7683360652435307],[123,227,76,-0.7679881731960396],[123,227,77,-0.7676426409477842],[123,227,78,-0.767299473833934],[123,227,79,-0.7669586770961115],[123,228,64,-0.7724820375338873],[123,228,65,-0.7721084122446213],[123,228,66,-0.7717370809530852],[123,228,67,-0.7713680499967267],[123,228,68,-0.7710013256241848],[123,228,69,-0.7706369139948703],[123,228,70,-0.770274821178532],[123,228,71,-0.769915053154827],[123,228,72,-0.7695576158128902],[123,228,73,-0.769202514950917],[123,228,74,-0.7688497562757197],[123,228,75,-0.7684993454023128],[123,228,76,-0.7681512878534854],[123,228,77,-0.767805589059376],[123,228,78,-0.7674622543570503],[123,228,79,-0.7671212889900748],[123,229,64,-0.7726471969941177],[123,229,65,-0.7722734191800258],[123,229,66,-0.7719019342968152],[123,229,67,-0.771532748683293],[123,229,68,-0.771165868589504],[123,229,69,-0.7708013001763103],[123,229,70,-0.7704390495149588],[123,229,71,-0.7700791225866512],[123,229,72,-0.7697215252821137],[123,229,73,-0.76936626340118],[123,229,74,-0.7690133426523476],[123,229,75,-0.7686627686523635],[123,229,76,-0.768314546925797],[123,229,77,-0.7679686829046138],[123,229,78,-0.7676251819277553],[123,229,79,-0.7672840492407111],[123,230,64,-0.7728124843067548],[123,230,65,-0.7724385553448809],[123,230,66,-0.772066918242463],[123,230,67,-0.7716975793396446],[123,230,68,-0.7713305448878528],[123,230,69,-0.7709658210493788],[123,230,70,-0.770603413896945],[123,230,71,-0.7702433294132751],[123,230,72,-0.769885573490665],[123,230,73,-0.7695301519305643],[123,230,74,-0.7691770704431343],[123,230,75,-0.7688263346468329],[123,230,76,-0.7684779500679879],[123,230,77,-0.768131922140372],[123,230,78,-0.7677882562047803],[123,230,79,-0.7674469575086054],[123,231,64,-0.7729778991031574],[123,231,65,-0.7726038203724341],[123,231,66,-0.772232032425162],[123,231,67,-0.7718625416027975],[123,231,68,-0.7714953541581274],[123,231,69,-0.7711304762548491],[123,231,70,-0.770767913967138],[123,231,71,-0.7704076732792177],[123,231,72,-0.7700497600849309],[123,231,73,-0.7696941801873218],[123,231,74,-0.7693409392981936],[123,231,75,-0.7689900430376935],[123,231,76,-0.7686414969338866],[123,231,77,-0.7682953064223309],[123,231,78,-0.7679514768456552],[123,231,79,-0.7676100134531338],[123,232,64,-0.7731434410136598],[123,232,65,-0.7727692138949002],[123,232,66,-0.7723972764790041],[123,232,67,-0.7720276351087184],[123,232,68,-0.7716602960381663],[123,232,69,-0.7712952654324285],[123,232,70,-0.7709325493671109],[123,232,71,-0.7705721538279148],[123,232,72,-0.7702140847102075],[123,232,73,-0.7698583478186056],[123,232,74,-0.7695049488665324],[123,232,75,-0.7691538934758031],[123,232,76,-0.7688051871761985],[123,232,77,-0.7684588354050409],[123,232,78,-0.7681148435067716],[123,232,79,-0.767773216732526],[123,233,64,-0.7733091096675506],[123,233,65,-0.772934735543439],[123,233,66,-0.7725626500370188],[123,233,67,-0.7721928594923029],[123,233,68,-0.7718253701647283],[123,233,69,-0.7714601882207365],[123,233,70,-0.771097319737341],[123,233,71,-0.7707367707016982],[123,233,72,-0.7703785470106783],[123,233,73,-0.770022654470448],[123,233,74,-0.7696690987960288],[123,233,75,-0.7693178856108824],[123,233,76,-0.7689690204464842],[123,233,77,-0.768622508741899],[123,233,78,-0.76827835584336],[123,233,79,-0.7679365670038427],[123,234,64,-0.77347490469305],[123,234,65,-0.7731003849481348],[123,234,66,-0.7727281527311501],[123,234,67,-0.7723582143873529],[123,234,68,-0.7719905761734703],[123,234,69,-0.7716252442572821],[123,234,70,-0.7712622247171865],[123,234,71,-0.7709015235417729],[123,234,72,-0.7705431466293917],[123,234,73,-0.770187099787738],[123,234,74,-0.7698333887334098],[123,234,75,-0.769482019091493],[123,234,76,-0.7691329963951365],[123,234,77,-0.7687863260851269],[123,234,78,-0.7684420135094675],[123,234,79,-0.7681000639229536],[123,235,64,-0.7736408257173732],[123,235,65,-0.7732661617380567],[123,235,66,-0.7728937841923196],[123,235,67,-0.772523699426639],[123,235,68,-0.7721559136990099],[123,235,69,-0.7717904331785266],[123,235,70,-0.7714272639449498],[123,235,71,-0.7710664119882793],[123,235,72,-0.7707078832083236],[123,235,73,-0.7703516834142838],[123,235,74,-0.7699978183243128],[123,235,75,-0.7696462935650993],[123,235,76,-0.7692971146714438],[123,235,77,-0.7689502870858331],[123,235,78,-0.7686058161580206],[123,235,79,-0.7682637071445997],[123,236,64,-0.7738068723666977],[123,236,65,-0.7734320655412288],[123,236,66,-0.7730595440503947],[123,236,67,-0.7726893142418698],[123,236,68,-0.7723213823748933],[123,236,69,-0.7719557546198517],[123,236,70,-0.7715924370578455],[123,236,71,-0.771231435680262],[123,236,72,-0.7708727563883455],[123,236,73,-0.7705164049927817],[123,236,74,-0.7701623872132555],[123,236,75,-0.7698107086780372],[123,236,76,-0.7694613749235574],[123,236,77,-0.7691143913939822],[123,236,78,-0.768769763440793],[123,236,79,-0.7684274963223612],[123,237,64,-0.7739730442661887],[123,237,65,-0.7735980959846537],[123,237,66,-0.7732254319342133],[123,237,67,-0.7728550584637154],[123,237,68,-0.7724869818336207],[123,237,69,-0.7721212082155848],[123,237,70,-0.7717577436920251],[123,237,71,-0.7713965942556942],[123,237,72,-0.7710377658092498],[123,237,73,-0.7706812641648396],[123,237,74,-0.7703270950436593],[123,237,75,-0.7699752640755387],[123,237,76,-0.769625776798517],[123,237,77,-0.7692786386584181],[123,237,78,-0.7689338550084306],[123,237,79,-0.768591431108683],[123,238,64,-0.7741393410399682],[123,238,65,-0.7737642526942825],[123,238,66,-0.7733914474715528],[123,238,67,-0.7730209317217771],[123,238,68,-0.7726527117066148],[123,238,69,-0.772286793598967],[123,238,70,-0.7719231834825458],[123,238,71,-0.7715618873514463],[123,238,72,-0.7712029111097175],[123,238,73,-0.7708462605709466],[123,238,74,-0.7704919414578183],[123,238,75,-0.7701399594017002],[123,238,76,-0.7697903199422182],[123,238,77,-0.7694430285268331],[123,238,78,-0.7690980905104197],[123,238,79,-0.768755511154842],[123,239,64,-0.774305762311176],[123,239,65,-0.7739305352950755],[123,239,66,-0.7735575902891914],[123,239,67,-0.773186933644649],[123,239,68,-0.7728185716242821],[123,239,69,-0.7724525104022155],[123,239,70,-0.7720887560634326],[123,239,71,-0.7717273146033485],[123,239,72,-0.7713681919273809],[123,239,73,-0.7710113938505349],[123,239,74,-0.7706569260969616],[123,239,75,-0.7703047942995447],[123,239,76,-0.7699550039994759],[123,239,77,-0.7696075606458307],[123,239,78,-0.769262469595149],[123,239,79,-0.7689197361110099],[123,240,64,-0.7744723077019491],[123,240,65,-0.7740969434109815],[123,240,66,-0.7737238600128874],[123,240,67,-0.7733530638598958],[123,240,68,-0.7729845612159922],[123,240,69,-0.7726183582565016],[123,240,70,-0.7722544610676559],[123,240,71,-0.7718928756461679],[123,240,72,-0.7715336078988015],[123,240,73,-0.771176663641957],[123,240,74,-0.7708220486012306],[123,240,75,-0.7704697684110001],[123,240,76,-0.770119828614001],[123,240,77,-0.7697722346609024],[123,240,78,-0.7694269919098881],[123,240,79,-0.7690841056262311],[123,241,64,-0.7746389768333986],[123,241,65,-0.7742634766649147],[123,241,66,-0.7738902562673559],[123,241,67,-0.7735193219940311],[123,241,68,-0.7731506801100545],[123,241,69,-0.7727843367919282],[123,241,70,-0.7724202981271098],[123,241,71,-0.7720585701135869],[123,241,72,-0.7716991586594473],[123,241,73,-0.7713420695824647],[123,241,74,-0.7709873086096575],[123,241,75,-0.7706348813768761],[123,241,76,-0.7702847934283783],[123,241,77,-0.7699370502164056],[123,241,78,-0.7695916571007638],[123,241,79,-0.7692486193483995],[123,242,64,-0.7748057693256718],[123,242,65,-0.7744301346788174],[123,242,66,-0.7740567786763314],[123,242,67,-0.7736857076725794],[123,242,68,-0.7733169279337812],[123,242,69,-0.7729504456375922],[123,242,70,-0.7725862668726738],[123,242,71,-0.7722243976382651],[123,242,72,-0.7718648438437555],[123,242,73,-0.7715076113082696],[123,242,74,-0.7711527057602265],[123,242,75,-0.7708001328369269],[123,242,76,-0.7704498980841293],[123,242,77,-0.7701020069556259],[123,242,78,-0.7697564648128239],[123,242,79,-0.7694132769243218],[123,243,64,-0.7749726847979217],[123,243,65,-0.7745969170736285],[123,243,66,-0.7742234268625365],[123,243,67,-0.7738522205200449],[123,243,68,-0.7734833043134548],[123,243,69,-0.7731166844215535],[123,243,70,-0.7727523669341816],[123,243,71,-0.772390357851808],[123,243,72,-0.7720306630851008],[123,243,73,-0.7716732884545134],[123,243,74,-0.7713182396898433],[123,243,75,-0.7709655224298197],[123,243,76,-0.77061514222168],[123,243,77,-0.7702671045207459],[123,243,78,-0.7699214146900045],[123,243,79,-0.7695780779996849],[123,244,64,-0.775139722868331],[123,244,65,-0.7747638234693079],[123,244,66,-0.7743902004477065],[123,244,67,-0.7740188601599352],[123,244,68,-0.7736498088743544],[123,244,69,-0.7732830527708584],[123,244,70,-0.7729185979404456],[123,244,71,-0.7725564503847913],[123,244,72,-0.77219661601582],[123,244,73,-0.7718391006552912],[123,244,74,-0.7714839100343587],[123,244,75,-0.7711310497931589],[123,244,76,-0.7707805254803859],[123,244,77,-0.7704323425528691],[123,244,78,-0.7700865063751546],[123,244,79,-0.7697430222190812],[123,245,64,-0.7753068831540809],[123,245,65,-0.7749308534848058],[123,245,66,-0.7745570990525577],[123,245,67,-0.7741856262147313],[123,245,68,-0.7738164412407222],[123,245,69,-0.7734495503115094],[123,245,70,-0.7730849595192255],[123,245,71,-0.7727226748667294],[123,245,72,-0.7723627022671797],[123,245,73,-0.7720050475436199],[123,245,74,-0.7716497164285379],[123,245,75,-0.7712967145634545],[123,245,76,-0.7709460474984995],[123,245,77,-0.7705977206919884],[123,245,78,-0.7702517395100048],[123,245,79,-0.7699081092259759],[123,246,64,-0.7754741652714129],[123,246,65,-0.7750980067381237],[123,246,66,-0.7747241222968497],[123,246,67,-0.7743525183059484],[123,246,68,-0.7739832010358272],[123,246,69,-0.7736161766685266],[123,246,70,-0.7732514512972901],[123,246,71,-0.7728890309261381],[123,246,72,-0.7725289214694403],[123,246,73,-0.7721711287515014],[123,246,74,-0.7718156585061217],[123,246,75,-0.7714625163761846],[123,246,76,-0.7711117079132332],[123,246,77,-0.7707632385770484],[123,246,78,-0.7704171137352291],[123,246,79,-0.7700733386627703],[123,247,64,-0.7756415688356072],[123,247,65,-0.7752652828462931],[123,247,66,-0.7748912697993636],[123,247,67,-0.7745195360541146],[123,247,68,-0.7741500878819423],[123,247,69,-0.7737829314659254],[123,247,70,-0.7734180729003957],[123,247,71,-0.7730555181905117],[123,247,72,-0.7726952732518316],[123,247,73,-0.7723373439098994],[123,247,74,-0.771981735899805],[123,247,75,-0.7716284548657728],[123,247,76,-0.7712775063607376],[123,247,77,-0.770928895845923],[123,247,78,-0.7705826286904229],[123,247,79,-0.7702387101707786],[123,248,64,-0.7758090934609604],[123,248,65,-0.7754326814253536],[123,248,66,-0.775058541177879],[123,248,67,-0.7746866790787482],[123,248,68,-0.7743171014003223],[123,248,69,-0.773949814326695],[123,248,70,-0.7735848239532631],[123,248,71,-0.7732221362863007],[123,248,72,-0.7728617572425318],[123,248,73,-0.7725036926487171],[123,248,74,-0.7721479482412141],[123,248,75,-0.7717945296655659],[123,248,76,-0.7714434424760771],[123,248,77,-0.771094692135393],[123,248,78,-0.7707482840140805],[123,248,79,-0.7704042233902058],[123,249,64,-0.7759767387608472],[123,249,65,-0.7756002020904138],[123,249,66,-0.7752259360492371],[123,249,67,-0.7748539469984203],[123,249,68,-0.7744842412112659],[123,249,69,-0.7741168248728597],[123,249,70,-0.7737517040796403],[123,249,71,-0.7733888848389745],[123,249,72,-0.7730283730687294],[123,249,73,-0.77267017459686],[123,249,74,-0.7723142951609692],[123,249,75,-0.7719607404078962],[123,249,76,-0.7716095158932943],[123,249,77,-0.7712606270812082],[123,249,78,-0.7709140793436567],[123,249,79,-0.7705698779602098],[123,250,64,-0.7761445043476989],[123,250,65,-0.7757678444556306],[123,250,66,-0.7753934540293178],[123,250,67,-0.775021339430732],[123,250,68,-0.7746515069340938],[123,250,69,-0.7742839627254574],[123,250,70,-0.7739187129022804],[123,250,71,-0.7735557634729988],[123,250,72,-0.7731951203566011],[123,250,73,-0.7728367893822132],[123,250,74,-0.7724807762886614],[123,250,75,-0.7721270867240593],[123,250,76,-0.7717757262453864],[123,250,77,-0.7714267003180655],[123,250,78,-0.7710800143155457],[123,250,79,-0.7707356735188795],[123,251,64,-0.7763123898329811],[123,251,65,-0.7759356081341858],[123,251,66,-0.7755610947330179],[123,251,67,-0.7751888559922929],[123,251,68,-0.7748188981871262],[123,251,69,-0.7744512275045168],[123,251,70,-0.7740858500429183],[123,251,71,-0.7737227718118136],[123,251,72,-0.7733619987312887],[123,251,73,-0.7730035366316189],[123,251,74,-0.7726473912528309],[123,251,75,-0.7722935682442911],[123,251,76,-0.7719420731642828],[123,251,77,-0.7715929114795855],[123,251,78,-0.771246088565057],[123,251,79,-0.770901609703211],[123,252,64,-0.7764803948272552],[123,252,65,-0.7761034927383492],[123,252,66,-0.775728857774313],[123,252,67,-0.7753564962987827],[123,252,68,-0.7749864145877446],[123,252,69,-0.7746186188291199],[123,252,70,-0.7742531151223343],[123,252,71,-0.7738899094778948],[123,252,72,-0.7735290078169622],[123,252,73,-0.7731704159709389],[123,252,74,-0.7728141396810294],[123,252,75,-0.7724601845978305],[123,252,76,-0.7721085562809079],[123,252,77,-0.7717592601983758],[123,252,78,-0.7714123017264791],[123,252,79,-0.7710676861491714],[123,253,64,-0.7766485189401479],[123,253,65,-0.7762714978794465],[123,253,66,-0.7758967427662261],[123,253,67,-0.7755242599649197],[123,253,68,-0.7751540557523613],[123,253,69,-0.7747861363173699],[123,253,70,-0.7744205077603212],[123,253,71,-0.7740571760927228],[123,253,72,-0.7736961472367879],[123,253,73,-0.7733374270250226],[123,253,74,-0.7729810211997876],[123,253,75,-0.7726269354128876],[123,253,76,-0.7722751752251489],[123,253,77,-0.7719257461059984],[123,253,78,-0.7715786534330468],[123,253,79,-0.7712339024916659],[123,254,64,-0.7768167617803747],[123,254,65,-0.7764396231678836],[123,254,66,-0.776064749320852],[123,254,67,-0.7756921466044857],[123,254,68,-0.7753218212964426],[123,254,69,-0.7749537795864165],[123,254,70,-0.7745880275757099],[123,254,71,-0.7742245712768075],[123,254,72,-0.7738634166129523],[123,254,73,-0.7735045694177319],[123,254,74,-0.7731480354346405],[123,254,75,-0.7727938203166684],[123,254,76,-0.7724419296258805],[123,254,77,-0.7720923688329948],[123,254,78,-0.7717451433169658],[123,254,79,-0.771400258364563],[123,255,64,-0.7769851229557095],[123,255,65,-0.7766078682131161],[123,255,66,-0.776232877049326],[123,255,67,-0.775860155830294],[123,255,68,-0.7754897108344779],[123,255,69,-0.7751215482524239],[123,255,70,-0.7747556741863364],[123,255,71,-0.7743920946496557],[123,255,72,-0.7740308155666312],[123,255,73,-0.7736718427719089],[123,255,74,-0.7733151820100947],[123,255,75,-0.7729608389353422],[123,255,76,-0.7726088191109326],[123,255,77,-0.7722591280088532],[123,255,78,-0.7719117710093811],[123,255,79,-0.7715667534006616],[123,256,64,-0.7771536020730455],[123,256,65,-0.7767762326237104],[123,256,66,-0.7764011255618857],[123,256,67,-0.7760282872542514],[123,256,68,-0.7756577239800423],[123,256,69,-0.7752894419306321],[123,256,70,-0.7749234472091054],[123,256,71,-0.7745597458298341],[123,256,72,-0.7741983437180512],[123,256,73,-0.773839246709439],[123,256,74,-0.7734824605496917],[123,256,75,-0.7731279908941046],[123,256,76,-0.7727758433071532],[123,256,77,-0.7724260232620721],[123,256,78,-0.7720785361404393],[123,256,79,-0.7717333872317542],[123,257,64,-0.7773221987383739],[123,257,65,-0.7769447160073217],[123,257,66,-0.7765694944678488],[123,257,67,-0.7761965404873368],[123,257,68,-0.7758258603457732],[123,257,69,-0.7754574602353362],[123,257,70,-0.7750913462599673],[123,257,71,-0.7747275244349465],[123,257,72,-0.7743660006864679],[123,257,73,-0.7740067808512273],[123,257,74,-0.7736498706759849],[123,257,75,-0.7732952758171552],[123,257,76,-0.7729430018403857],[123,257,77,-0.7725930542201369],[123,257,78,-0.7722454383392656],[123,257,79,-0.7719001594886046],[123,258,64,-0.7774909125567615],[123,258,65,-0.7771133179706722],[123,258,66,-0.7767379833755912],[123,258,67,-0.7763649151395777],[123,258,68,-0.7759941195433486],[123,258,69,-0.7756256027798629],[123,258,70,-0.7752593709538953],[123,258,71,-0.7748954300816113],[123,258,72,-0.7745337860901431],[123,258,73,-0.7741744448171769],[123,258,74,-0.7738174120105168],[123,258,75,-0.7734626933276739],[123,258,76,-0.7731102943354459],[123,258,77,-0.772760220509497],[123,258,78,-0.7724124772339415],[123,258,79,-0.7720670698009233],[123,259,64,-0.777659743132412],[123,259,65,-0.7772820381196122],[123,259,66,-0.7769065918926084],[123,259,67,-0.7765334108201134],[123,259,68,-0.7761625011835492],[123,259,69,-0.7757938691766328],[123,259,70,-0.7754275209049486],[123,259,71,-0.7750634623855243],[123,259,72,-0.774701699546407],[123,259,73,-0.7743422382262513],[123,259,74,-0.7739850841738818],[123,259,75,-0.7736302430478845],[123,259,76,-0.7732777204161851],[123,259,77,-0.7729275217556292],[123,259,78,-0.7725796524515671],[123,259,79,-0.7722341177974329],[123,260,64,-0.7778286900686358],[123,260,65,-0.7774508760590898],[123,260,66,-0.7770753196254845],[123,260,67,-0.7767020271371622],[123,260,68,-0.7763310048762269],[123,260,69,-0.7759622590371291],[123,260,70,-0.7755957957262397],[123,260,71,-0.7752316209614258],[123,260,72,-0.7748697406716266],[123,260,73,-0.7745101606964415],[123,260,74,-0.7741528867856943],[123,260,75,-0.7737979245990223],[123,260,76,-0.7734452797054574],[123,260,77,-0.7730949575830051],[123,260,78,-0.7727469636182296],[123,260,79,-0.7724013031058331],[123,261,64,-0.7779977529678729],[123,261,65,-0.7776198313931743],[123,261,66,-0.7772441661799163],[123,261,67,-0.7768707636980472],[123,261,68,-0.7764996302303285],[123,261,69,-0.7761307719719215],[123,261,70,-0.7757641950299599],[123,261,71,-0.7753999054231266],[123,261,72,-0.7750379090812302],[123,261,73,-0.7746782118447922],[123,261,74,-0.7743208194646125],[123,261,75,-0.7739657376013582],[123,261,76,-0.7736129718251445],[123,261,77,-0.7732625276151153],[123,261,78,-0.7729144103590264],[123,261,79,-0.7725686253528273],[123,262,64,-0.7781669314316628],[123,262,65,-0.777788903725025],[123,262,66,-0.777413131160682],[123,262,67,-0.7770396201091634],[123,262,68,-0.776668376853865],[123,262,69,-0.7762994075906348],[123,262,70,-0.775932718427346],[123,262,71,-0.7755683153834746],[123,262,72,-0.7752062043896748],[123,262,73,-0.7748463912873682],[123,262,74,-0.7744888818283073],[123,262,75,-0.7741336816741672],[123,262,76,-0.7737807963961242],[123,262,77,-0.7734302314744378],[123,262,78,-0.7730819922980348],[123,262,79,-0.7727360841640895],[123,263,64,-0.7783362250607055],[123,263,65,-0.7779580926569535],[123,263,66,-0.7775822141717028],[123,263,67,-0.7772085959760406],[123,263,68,-0.776837244353973],[123,263,69,-0.7764681655020111],[123,263,70,-0.7761013655287444],[123,263,71,-0.7757368504544183],[123,263,72,-0.7753746262105099],[123,263,73,-0.7750146986393175],[123,263,74,-0.7746570734935245],[123,263,75,-0.7743017564357906],[123,263,76,-0.7739487530383314],[123,263,77,-0.7735980687825004],[123,263,78,-0.7732497090583728],[123,263,79,-0.7729036791643267],[123,264,64,-0.77850563345484],[123,264,65,-0.7781273977904011],[123,264,66,-0.7777514148160212],[123,264,67,-0.777377690903321],[123,264,68,-0.777006232336893],[123,264,69,-0.7766370453138878],[123,264,70,-0.7762701359435874],[123,264,71,-0.7759055102469835],[123,264,72,-0.7755431741563533],[123,264,73,-0.7751831335148489],[123,264,74,-0.7748253940760617],[123,264,75,-0.7744699615036135],[123,264,76,-0.7741168413707373],[123,264,77,-0.7737660391598581],[123,264,78,-0.7734175602621779],[123,264,79,-0.7730714099772569],[123,265,64,-0.7786751562130209],[123,265,65,-0.778296818725916],[123,265,66,-0.7779207326957777],[123,265,67,-0.777546904494736],[123,265,68,-0.7771753404079458],[123,265,69,-0.7768060466331734],[123,265,70,-0.7764390292803705],[123,265,71,-0.7760742943712511],[123,265,72,-0.7757118478388695],[123,265,73,-0.7753516955272088],[123,265,74,-0.7749938431907457],[123,265,75,-0.7746382964940419],[123,265,76,-0.774285061011325],[123,265,77,-0.7739341422260697],[123,265,78,-0.7735855455305829],[123,265,79,-0.7732392762255853],[123,266,64,-0.7788447929333815],[123,266,65,-0.7784663550632165],[123,266,66,-0.7780901674122739],[123,266,67,-0.7777162363531692],[123,266,68,-0.7773445681715959],[123,266,69,-0.7769751690659122],[123,266,70,-0.7766080451467153],[123,266,71,-0.7762432024364193],[123,266,72,-0.775880646868832],[123,266,73,-0.7755203842887443],[123,266,74,-0.7751624204514956],[123,266,75,-0.7748067610225653],[123,266,76,-0.774453411577153],[123,266,77,-0.7741023775997611],[123,266,78,-0.7737536644837795],[123,266,79,-0.7734072775310676],[123,267,64,-0.7790145432132016],[123,267,65,-0.7786360064011583],[123,267,66,-0.7782597185659403],[123,267,67,-0.7778856860806245],[123,267,68,-0.777513915231419],[123,267,69,-0.7771444122172504],[123,267,70,-0.7767771831493379],[123,267,71,-0.7764122340507719],[123,267,72,-0.7760495708560906],[123,267,73,-0.7756891994108703],[123,267,74,-0.7753311254712902],[123,267,75,-0.7749753547037244],[123,267,76,-0.7746218926843225],[123,267,77,-0.7742707448985925],[123,267,78,-0.7739219167409854],[123,267,79,-0.7735754135144776],[123,268,64,-0.7791844066489325],[123,268,65,-0.7788057723377593],[123,268,66,-0.7784293857563606],[123,268,67,-0.7780552532782501],[123,268,68,-0.7776833811901267],[123,268,69,-0.7773137756914614],[123,268,70,-0.7769464428940721],[123,268,71,-0.776581388821702],[123,268,72,-0.7762186194095968],[123,268,73,-0.7758581405040949],[123,268,74,-0.7754999578621924],[123,268,75,-0.7751440771511358],[123,268,76,-0.7747905039480025],[123,268,77,-0.7744392437392835],[123,268,78,-0.7740903019204695],[123,268,79,-0.7737436837956314],[123,269,64,-0.7793543828361641],[123,269,65,-0.7789756524701679],[123,269,66,-0.77859916858224],[123,269,67,-0.7782249375463071],[123,269,68,-0.7778529656495344],[123,269,69,-0.7774832590919141],[123,269,70,-0.7771158239858388],[123,269,71,-0.7767506663556811],[123,269,72,-0.7763877921373712],[123,269,73,-0.7760272071779863],[123,269,74,-0.7756689172353173],[123,269,75,-0.7753129279774598],[123,269,76,-0.7749592449823968],[123,269,77,-0.7746078737375803],[123,269,78,-0.7742588196395183],[123,269,79,-0.7739120879933552],[123,270,64,-0.7795244713696883],[123,270,65,-0.779145646394725],[123,270,66,-0.7787690666414675],[123,270,67,-0.7783947384842311],[123,270,68,-0.7780226682106239],[123,270,69,-0.7776528620211345],[123,270,70,-0.7772853260287073],[123,270,71,-0.7769200662583208],[123,270,72,-0.776557088646566],[123,270,73,-0.7761963990412365],[123,270,74,-0.7758380032008944],[123,270,75,-0.7754819067944627],[123,270,76,-0.7751281154008071],[123,270,77,-0.7747766345083186],[123,270,78,-0.7744274695145003],[123,270,79,-0.7740806257255484],[123,271,64,-0.779694671843476],[123,271,65,-0.779315753706942],[123,271,66,-0.7789390795310936],[123,271,67,-0.778564655690611],[123,271,68,-0.7781924884735205],[123,271,69,-0.7778225840807839],[123,271,70,-0.7774549486258733],[123,271,71,-0.7770895881343498],[123,271,72,-0.7767265085434423],[123,271,73,-0.7763657157016373],[123,271,74,-0.7760072153682455],[123,271,75,-0.7756510132129943],[123,271,76,-0.7752971148156101],[123,271,77,-0.7749455256654005],[123,271,78,-0.7745962511608417],[123,271,79,-0.77424929660916],[123,272,64,-0.7798649838506543],[123,272,65,-0.7794859740014771],[123,272,66,-0.7791092068473073],[123,272,67,-0.7787346887631648],[123,272,68,-0.7783624260374704],[123,272,69,-0.7779924248716354],[123,272,70,-0.777624691379636],[123,272,71,-0.7772592315875921],[123,272,72,-0.7768960514333474],[123,272,73,-0.7765351567660581],[123,272,74,-0.7761765533457609],[123,272,75,-0.7758202468429649],[123,272,76,-0.7754662428382345],[123,272,77,-0.7751145468217718],[123,272,78,-0.7747651641930041],[123,272,79,-0.7744181002601657],[123,273,64,-0.7800354069835693],[123,273,65,-0.7796563068721993],[123,273,66,-0.7792794481854984],[123,273,67,-0.7789048372988026],[123,273,68,-0.7785324805009035],[123,273,69,-0.7781623839936372],[123,273,70,-0.7777945538914605],[123,273,71,-0.777428996221029],[123,273,72,-0.7770657169207772],[123,273,73,-0.7767047218405088],[123,273,74,-0.7763460167409628],[123,273,75,-0.7759896072934079],[123,273,76,-0.7756354990792237],[123,273,77,-0.7752836975894846],[123,273,78,-0.774934208224547],[123,273,79,-0.7745870362936312],[123,274,64,-0.780205940833754],[123,274,65,-0.7798267519121546],[123,274,66,-0.7794498031402259],[123,274,67,-0.7790751008935952],[123,274,68,-0.7787026514614006],[123,274,69,-0.7783324610458797],[123,274,70,-0.7779645357619456],[123,274,71,-0.7775988816367663],[123,274,72,-0.7772355046093442],[123,274,73,-0.7768744105301066],[123,274,74,-0.7765156051604727],[123,274,75,-0.7761590941724472],[123,274,76,-0.7758048831482032],[123,274,77,-0.7754529775796647],[123,274,78,-0.775103382868095],[123,274,79,-0.7747561043236793],[123,275,64,-0.7803765849919525],[123,275,65,-0.7799973087135919],[123,275,66,-0.779620271305242],[123,275,67,-0.7792454791427976],[123,275,68,-0.7788729385157186],[123,275,69,-0.7785026556266202],[123,275,70,-0.7781346365908486],[123,275,71,-0.7777688874360602],[123,275,72,-0.7774054141018019],[123,275,73,-0.7770442224391017],[123,275,74,-0.7766853182100356],[123,275,75,-0.7763287070873226],[123,275,76,-0.7759743946539056],[123,275,77,-0.7756223864025366],[123,275,78,-0.7752726877353636],[123,275,79,-0.7749253039635142],[123,276,64,-0.7805473390480884],[123,276,65,-0.7801679768679304],[123,276,66,-0.7797908522734609],[123,276,67,-0.7794159716408173],[123,276,68,-0.7790433412597578],[123,276,69,-0.7786729673332513],[123,276,70,-0.7783048559770526],[123,276,71,-0.7779390132192836],[123,276,72,-0.7775754450000121],[123,276,73,-0.7772141571708435],[123,276,74,-0.7768551554944884],[123,276,75,-0.776498445644356],[123,276,76,-0.7761440332041376],[123,276,77,-0.7757919236673902],[123,276,78,-0.7754421224371248],[123,276,79,-0.7750946348253893],[123,277,64,-0.7807182025913268],[123,277,65,-0.7803387559658218],[123,277,66,-0.7799615456370199],[123,277,67,-0.7795865779812768],[123,277,68,-0.7792138592886251],[123,277,69,-0.7788433957623625],[123,277,70,-0.7784751935186296],[123,277,71,-0.7781092585859897],[123,277,72,-0.7777455969050082],[123,277,73,-0.777384214327845],[123,277,74,-0.7770251166178216],[123,277,75,-0.7766683094490154],[123,277,76,-0.7763137984058432],[123,277,77,-0.7759615889826448],[123,277,78,-0.7756116865832717],[123,277,79,-0.7752640965206704],[123,278,64,-0.7808891752100522],[123,278,65,-0.7805096455971281],[123,278,66,-0.7801323509872577],[123,278,67,-0.7797572977569912],[123,278,68,-0.7793844921966101],[123,278,69,-0.7790139405097181],[123,278,70,-0.7786456488128173],[123,278,71,-0.7782796231348886],[123,278,72,-0.777915869416972],[123,278,73,-0.7775543935117584],[123,278,74,-0.7771952011831573],[123,278,75,-0.7768382981058916],[123,278,76,-0.7764836898650807],[123,278,77,-0.7761313819558248],[123,278,78,-0.7757813797827942],[123,278,79,-0.7754336886598117],[123,279,64,-0.7810602564918449],[123,279,65,-0.7806806453508985],[123,279,66,-0.7803032679146918],[123,279,67,-0.7799281305599444],[123,279,68,-0.7795552395771634],[123,279,69,-0.7791846011702341],[123,279,70,-0.7788162214559962],[123,279,71,-0.7784501064638247],[123,279,72,-0.7780862621352106],[123,279,73,-0.7777246943233526],[123,279,74,-0.7773654087927254],[123,279,75,-0.7770084112186743],[123,279,76,-0.7766537071869987],[123,279,77,-0.7763013021935372],[123,279,78,-0.7759512016437562],[123,279,79,-0.7756034108523329],[123,280,64,-0.7812314460235443],[123,280,65,-0.780851754815432],[123,280,66,-0.7804742960090799],[123,280,67,-0.7800990759813526],[123,280,68,-0.7797261010229587],[123,280,69,-0.7793553773380408],[123,280,70,-0.7789869110437523],[123,280,71,-0.7786207081698391],[123,280,72,-0.7782567746582193],[123,280,73,-0.7778951163625764],[123,280,74,-0.7775357390479269],[123,280,75,-0.777178648390216],[123,280,76,-0.7768238499759005],[123,280,77,-0.7764713493015347],[123,280,78,-0.7761211517733587],[123,280,79,-0.7757732627068827],[123,281,64,-0.7814027433912164],[123,281,65,-0.7810229735782451],[123,281,66,-0.7806454348593884],[123,281,67,-0.7802701336116316],[123,281,68,-0.7798970761258603],[123,281,69,-0.7795262686064504],[123,281,70,-0.779157717170845],[123,281,71,-0.7787914278491372],[123,281,72,-0.7784274065836491],[123,281,73,-0.7780656592285251],[123,281,74,-0.7777061915493011],[123,281,75,-0.7773490092224988],[123,281,76,-0.7769941178352101],[123,281,77,-0.7766415228846824],[123,281,78,-0.7762912297779072],[123,281,79,-0.7759432438312057],[123,282,64,-0.781574148180178],[123,282,65,-0.7811943012260966],[123,282,66,-0.7808166840538171],[123,282,67,-0.7804413030404215],[123,282,68,-0.7800681644769479],[123,282,69,-0.7796972745679813],[123,282,70,-0.7793286394312313],[123,282,71,-0.7789622650971136],[123,282,72,-0.778598157508331],[123,282,73,-0.778236322519466],[123,282,74,-0.7778767658965504],[123,282,75,-0.7775194933166596],[123,282,76,-0.7771645103674976],[123,282,77,-0.7768118225469827],[123,282,78,-0.7764614352628358],[123,282,79,-0.7761133538321665],[123,283,64,-0.7817456599749654],[123,283,65,-0.7813657373449547],[123,283,66,-0.7809880431797667],[123,283,67,-0.7806125838565543],[123,283,68,-0.7802393656664842],[123,283,69,-0.7798683948143267],[123,283,70,-0.7794996774180332],[123,283,71,-0.7791332195083192],[123,283,72,-0.778769027028244],[123,283,73,-0.7784071058328053],[123,283,74,-0.7780474616885071],[123,283,75,-0.7776901002729563],[123,283,76,-0.777335027174446],[123,283,77,-0.7769822478915428],[123,283,78,-0.7766317678326748],[123,283,79,-0.776283592315718],[123,284,64,-0.7819172783593956],[123,284,65,-0.7815372815200607],[123,284,66,-0.7811595118239008],[123,284,67,-0.7807839756481162],[123,284,68,-0.7804106792839776],[123,284,69,-0.7800396289364158],[123,284,70,-0.7796708307236009],[123,284,71,-0.7793042906765238],[123,284,72,-0.7789400147385775],[123,284,73,-0.7785780087651507],[123,284,74,-0.7782182785231972],[123,284,75,-0.7778608296908318],[123,284,76,-0.7775056678569146],[123,284,77,-0.7771527985206373],[123,284,78,-0.7768022270911135],[123,284,79,-0.776453958886963],[123,285,64,-0.7820890029165445],[123,285,65,-0.781708933335905],[123,285,66,-0.781331089572124],[123,285,67,-0.7809554780024253],[123,285,68,-0.7805821049181587],[123,285,69,-0.7802109765243922],[123,285,70,-0.7798420989394896],[123,285,71,-0.779475478194694],[123,285,72,-0.7791111202337082],[123,285,73,-0.7787490309122891],[123,285,74,-0.7783892159978165],[123,285,75,-0.7780316811688905],[123,285,76,-0.7776764320149152],[123,285,77,-0.7773234740356855],[123,285,78,-0.7769728126409773],[123,285,79,-0.7766244531501325],[123,286,64,-0.782260833228724],[123,286,65,-0.7818806923762044],[123,286,66,-0.7815027760095588],[123,286,67,-0.7811270905060084],[123,286,68,-0.7807536421569585],[123,286,69,-0.7803824371675897],[123,286,70,-0.7800134816564362],[123,286,71,-0.7796467816549691],[123,286,72,-0.7792823431071774],[123,286,73,-0.7789201718691625],[123,286,74,-0.7785602737087077],[123,286,75,-0.778202654304875],[123,286,76,-0.7778473192475895],[123,286,77,-0.7774942740372272],[123,286,78,-0.7771435240842036],[123,286,79,-0.776795074708561],[123,287,64,-0.7824327688775438],[123,287,65,-0.7820525582239655],[123,287,66,-0.781674570720607],[123,287,67,-0.781298812744663],[123,287,68,-0.7809252905875698],[123,287,69,-0.780554010454596],[123,287,70,-0.7801849784644225],[123,287,71,-0.7798182006487242],[123,287,72,-0.7794536829517531],[123,287,73,-0.7790914312299315],[123,287,74,-0.7787314512514231],[123,287,75,-0.7783737486957286],[123,287,76,-0.778018329153272],[123,287,77,-0.7776651981249864],[123,287,78,-0.777314361021906],[123,287,79,-0.7769658231647504],[123,288,64,-0.7826048094438891],[123,288,65,-0.7822245304614608],[123,288,66,-0.7818464732889283],[123,288,67,-0.7814706443034356],[123,288,68,-0.7810970497964249],[123,288,69,-0.7807256959732293],[123,288,70,-0.7803565889526516],[123,288,71,-0.7799897347665474],[123,288,72,-0.7796251393594076],[123,288,73,-0.7792628085879523],[123,288,74,-0.7789027482207019],[123,288,75,-0.7785449639375732],[123,288,76,-0.7781894613294658],[123,288,77,-0.7778362458978483],[123,288,78,-0.7774853230543499],[123,288,79,-0.7771366981203461],[123,289,64,-0.7827769545078977],[123,289,65,-0.7823966086702063],[123,289,66,-0.782018483297417],[123,289,67,-0.7816425847665975],[123,289,68,-0.7812689193691725],[123,289,69,-0.7808974933105148],[123,289,70,-0.7805283127095253],[123,289,71,-0.7801613835982163],[123,289,72,-0.7797967119212939],[123,289,73,-0.7794343035357526],[123,289,74,-0.7790741642104464],[123,289,75,-0.7787162996256851],[123,289,76,-0.7783607153728207],[123,289,77,-0.7780074169538349],[123,289,78,-0.7776564097809299],[123,289,79,-0.7773076991761142],[123,290,64,-0.7829492036490227],[123,290,65,-0.7825687924310243],[123,290,66,-0.7821906003282636],[123,290,67,-0.7818146337177084],[123,290,68,-0.7814408988907404],[123,290,69,-0.7810694020527482],[123,290,70,-0.7807001493227068],[123,290,71,-0.7803331467327611],[123,290,72,-0.7799684002278089],[123,290,73,-0.7796059156650956],[123,290,74,-0.7792456988137854],[123,290,75,-0.778887755354558],[123,290,76,-0.7785320908791954],[123,290,77,-0.7781787108901694],[123,290,78,-0.7778276208002323],[123,290,79,-0.7774788259320042],[123,291,64,-0.7831215564459991],[123,291,65,-0.7827410813240099],[123,291,66,-0.7823628239629237],[123,291,67,-0.7819867907395831],[123,291,68,-0.7816129879453028],[123,291,69,-0.7812414217854626],[123,291,70,-0.7808720983790876],[123,291,71,-0.7805050237584316],[123,291,72,-0.7801402038685603],[123,291,73,-0.7797776445669463],[123,291,74,-0.7794173516230409],[123,291,75,-0.7790593307178707],[123,291,76,-0.7787035874436246],[123,291,77,-0.7783501273032418],[123,291,78,-0.7779989557100025],[123,291,79,-0.7776500779871162],[123,292,64,-0.7832940124768697],[123,292,65,-0.7829134749285568],[123,292,66,-0.7825351537821416],[123,292,67,-0.7821590554143164],[123,292,68,-0.7817851861163047],[123,292,69,-0.7814135520934531],[123,292,70,-0.7810441594648128],[123,292,71,-0.7806770142627222],[123,292,72,-0.7803121224323913],[123,292,73,-0.7799494898314968],[123,292,74,-0.7795891222297534],[123,292,75,-0.7792310253085114],[123,292,76,-0.778875204660344],[123,292,77,-0.7785216657886348],[123,292,78,-0.7781704141071699],[123,292,79,-0.777821454939725],[123,293,64,-0.7834665713189518],[123,293,65,-0.7830859728233244],[123,293,66,-0.7827075893659181],[123,293,67,-0.7823314273232509],[123,293,68,-0.7819574929864298],[123,293,69,-0.7815857925607446],[123,293,70,-0.7812163321652477],[123,293,71,-0.7808491178323387],[123,293,72,-0.7804841555073483],[123,293,73,-0.780121451048133],[123,293,74,-0.7797610102246482],[123,293,75,-0.7794028387185448],[123,293,76,-0.7790469421227569],[123,293,77,-0.7786933259410902],[123,293,78,-0.7783419955878139],[123,293,79,-0.7779929563872479],[123,294,64,-0.7836392325489001],[123,294,65,-0.7832585745862999],[123,294,66,-0.7828801302935734],[123,294,67,-0.7825039060470389],[123,294,68,-0.7821299081376629],[123,294,69,-0.7817581427706537],[123,294,70,-0.781388616065041],[123,294,71,-0.7810213340532616],[123,294,72,-0.7806563026807427],[123,294,73,-0.7802935278054978],[123,294,74,-0.779933015197699],[123,294,75,-0.7795747705392748],[123,294,76,-0.7792187994234975],[123,294,77,-0.778865107354572],[123,294,78,-0.7785136997472281],[123,294,79,-0.7781645819263074],[123,295,64,-0.7838119957426832],[123,295,65,-0.7834312797947759],[123,295,66,-0.7830527761437233],[123,295,67,-0.7826764911656199],[123,295,68,-0.782302431151267],[123,295,69,-0.7819306023057664],[123,295,70,-0.7815610107481017],[123,295,71,-0.7811936625107224],[123,295,72,-0.7808285635391289],[123,295,73,-0.7804657196914676],[123,295,74,-0.7801051367381043],[123,295,75,-0.7797468203612218],[123,295,76,-0.7793907761544077],[123,295,77,-0.7790370096222432],[123,295,78,-0.778685526179896],[123,295,79,-0.7783363311527076],[123,296,64,-0.7839848604755617],[123,296,65,-0.783604088025327],[123,296,66,-0.783225526494257],[123,296,67,-0.7828491822581973],[123,296,68,-0.7824750616077594],[123,296,69,-0.7821031707479147],[123,296,70,-0.7817335157975756],[123,296,71,-0.781366102789181],[123,296,72,-0.7810009376682802],[123,296,73,-0.7806380262931294],[123,296,74,-0.7802773744342644],[123,296,75,-0.779918987774099],[123,296,76,-0.7795628719065132],[123,296,77,-0.779209032336442],[123,296,78,-0.7788574744794683],[123,296,79,-0.7785082036614108],[123,297,64,-0.7841578263221493],[123,297,65,-0.7837769988538725],[123,297,66,-0.7833983809223994],[123,297,67,-0.7830219789033014],[123,297,68,-0.7826477990869757],[123,297,69,-0.7822758476782388],[123,297,70,-0.7819061307959082],[123,297,71,-0.7815386544723877],[123,297,72,-0.781173424653252],[123,297,73,-0.7808104471968429],[123,297,74,-0.7804497278738435],[123,297,75,-0.7800912723668751],[123,297,76,-0.779735086270087],[123,297,77,-0.7793811750887452],[123,297,78,-0.7790295442388252],[123,297,79,-0.7786801990466008],[123,298,64,-0.7843308928563815],[123,298,65,-0.7839500118556444],[123,298,66,-0.7835713390046781],[123,298,67,-0.783194880678756],[123,298,68,-0.782820643168036],[123,298,69,-0.7824486326771554],[123,298,70,-0.7820788553248121],[123,298,71,-0.7817113171433513],[123,298,72,-0.7813460240783487],[123,298,73,-0.780982981988209],[123,298,74,-0.7806221966437379],[123,298,75,-0.780263673727742],[123,298,76,-0.7799074188346163],[123,298,77,-0.7795534374699351],[123,298,78,-0.7792017350500442],[123,298,79,-0.7788523169016496],[123,299,64,-0.7845040596515392],[123,299,65,-0.7841231266052103],[123,299,66,-0.7837444003169485],[123,299,67,-0.7833678871617036],[123,299,68,-0.7829935934293699],[123,299,69,-0.782621525324381],[123,299,70,-0.7822516889652914],[123,299,71,-0.7818840903843628],[123,299,72,-0.7815187355271489],[123,299,73,-0.7811556302520927],[123,299,74,-0.7807947803301],[123,299,75,-0.7804361914441386],[123,299,76,-0.7800798691888269],[123,299,77,-0.7797258190700243],[123,299,78,-0.7793740465044238],[123,299,79,-0.7790245568191421],[123,300,64,-0.7846773262802175],[123,300,65,-0.7842963426764431],[123,300,66,-0.7839175644343609],[123,300,67,-0.7835409979285726],[123,300,68,-0.7831666494486841],[123,300,69,-0.7827945251989006],[123,300,70,-0.7824246312976089],[123,300,71,-0.7820569737769634],[123,300,72,-0.7816915585824715],[123,300,73,-0.7813283915725914],[123,300,74,-0.7809674785183051],[123,300,75,-0.7806088251027183],[123,300,76,-0.78025243692065],[123,300,77,-0.7798983194782216],[123,300,78,-0.7795464781924512],[123,300,79,-0.7791969183908427],[123,301,64,-0.7848506923143863],[123,301,65,-0.7844696596425814],[123,301,66,-0.7840908309314231],[123,301,67,-0.7837142125551397],[123,301,68,-0.7833398108030243],[123,301,69,-0.7829676318790291],[123,301,70,-0.7825976819013487],[123,301,71,-0.7822299669020065],[123,301,72,-0.7818644928264395],[123,301,73,-0.7815012655330974],[123,301,74,-0.7811402907930147],[123,301,75,-0.7807815742894124],[123,301,76,-0.7804251216172862],[123,301,77,-0.7800709382829968],[123,301,78,-0.7797190297038648],[123,301,79,-0.7793694012077592],[123,302,64,-0.7850241573253687],[123,302,65,-0.784643077076208],[123,302,66,-0.7842641993819772],[123,302,67,-0.7838875306165071],[123,302,68,-0.7835130770687525],[123,302,69,-0.7831408449423887],[123,302,70,-0.7827708403553936],[123,302,71,-0.7824030693396351],[123,302,72,-0.7820375378404565],[123,302,73,-0.7816742517162745],[123,302,74,-0.7813132167381533],[123,302,75,-0.7809544385894055],[123,302,76,-0.7805979228651804],[123,302,77,-0.7802436750720555],[123,302,78,-0.7798917006276307],[123,302,79,-0.779542004860118],[123,303,64,-0.7851977208838175],[123,303,65,-0.7848165945492258],[123,303,66,-0.7844376693591771],[123,303,67,-0.7840609516870791],[123,303,68,-0.7836864478215242],[123,303,69,-0.7833141639658857],[123,303,70,-0.7829441062379009],[123,303,71,-0.7825762806692581],[123,303,72,-0.7822106932051824],[123,303,73,-0.7818473497040346],[123,303,74,-0.7814862559368845],[123,303,75,-0.7811274175871129],[123,303,76,-0.7807708402499999],[123,303,77,-0.7804165294323168],[123,303,78,-0.78006449055192],[123,303,79,-0.7797147289373417],[123,304,64,-0.7853713825597775],[123,304,65,-0.7849902116329208],[123,304,66,-0.7846112404355501],[123,304,67,-0.7842344753406247],[123,304,68,-0.7838599226363501],[123,304,69,-0.783487588525773],[123,304,70,-0.783117479126366],[123,304,71,-0.7827496004696132],[123,304,72,-0.7823839585005979],[123,304,73,-0.7820205590776008],[123,304,74,-0.7816594079716742],[123,304,75,-0.7813005108662435],[123,304,76,-0.7809438733566966],[123,304,77,-0.7805895009499754],[123,304,78,-0.7802373990641704],[123,304,79,-0.7798875730281116],[123,305,64,-0.7855451419226535],[123,305,65,-0.7851639278979297],[123,305,66,-0.7847849121829646],[123,305,67,-0.7844081011502451],[123,305,68,-0.7840335010875641],[123,305,69,-0.7836611181976179],[123,305,70,-0.7832909585975889],[123,305,71,-0.7829230283187338],[123,305,72,-0.7825573333059701],[123,305,73,-0.7821938794174741],[123,305,74,-0.7818326724242575],[123,305,75,-0.7814737180097666],[123,305,76,-0.7811170217694741],[123,305,77,-0.7807625892104694],[123,305,78,-0.7804104257510545],[123,305,79,-0.7800605367203344],[123,306,64,-0.7857189985412336],[123,306,65,-0.7853377429142632],[123,306,66,-0.7849586841726549],[123,306,67,-0.7845818286883975],[123,306,68,-0.7842071827488475],[123,306,69,-0.7838347525563251],[123,306,70,-0.7834645442276992],[123,306,71,-0.7830965637939743],[123,306,72,-0.7827308171998776],[123,306,73,-0.7823673103034584],[123,306,74,-0.7820060488756632],[123,306,75,-0.7816470385999365],[123,306,76,-0.7812902850718119],[123,306,77,-0.7809357937985041],[123,306,78,-0.7805835701985033],[123,306,79,-0.7802336196011672],[123,307,64,-0.7858929519836584],[123,307,65,-0.7855116562512752],[123,307,66,-0.7851325559751885],[123,307,67,-0.7847556575268639],[123,307,68,-0.7843809671931962],[123,307,69,-0.7840084911761058],[123,307,70,-0.7836382355921229],[123,307,71,-0.7832702064719759],[123,307,72,-0.782904409760178],[123,307,73,-0.782540851314627],[123,307,74,-0.7821795369061809],[123,307,75,-0.781820472218259],[123,307,76,-0.7814636628464331],[123,307,77,-0.7811091142980193],[123,307,78,-0.7807568319916738],[123,307,79,-0.780406821256984],[123,308,64,-0.7860670018174813],[123,308,65,-0.7856856674777236],[123,308,66,-0.7853065271605278],[123,308,67,-0.7849295872368117],[123,308,68,-0.7845548539929835],[123,308,69,-0.7841823336305389],[123,308,70,-0.7838120322656453],[123,308,71,-0.7834439559287305],[123,308,72,-0.7830781105640698],[123,308,73,-0.7827145020293858],[123,308,74,-0.7823531360954241],[123,308,75,-0.7819940184455555],[123,308,76,-0.7816371546753665],[123,308,77,-0.7812825502922521],[123,308,78,-0.7809302107150113],[123,308,79,-0.780580141273439],[123,309,64,-0.7862411476096469],[123,309,65,-0.7858597761617481],[123,309,66,-0.7854805972980081],[123,309,67,-0.785103617388772],[123,309,68,-0.7847288427199368],[123,309,69,-0.7843562794925486],[123,309,70,-0.7839859338223877],[123,309,71,-0.7836178117395569],[123,309,72,-0.7832519191880696],[123,309,73,-0.7828882620254494],[123,309,74,-0.782526846022306],[123,309,75,-0.782167676861938],[123,309,76,-0.7818107601399237],[123,309,77,-0.7814561013637134],[123,309,78,-0.7811037059522266],[123,309,79,-0.7807535792354426],[123,310,64,-0.7864153889264679],[123,310,65,-0.7860339818708465],[123,310,66,-0.7856547659563135],[123,310,67,-0.7852777475526157],[123,310,68,-0.784902932945114],[123,310,69,-0.7845303283343805],[123,310,70,-0.7841599398357837],[123,310,71,-0.7837917734790774],[123,310,72,-0.7834258352079888],[123,310,73,-0.7830621308798184],[123,310,74,-0.7827006662650169],[123,310,75,-0.7823414470467868],[123,310,76,-0.7819844788206749],[123,310,77,-0.7816297670941643],[123,310,78,-0.7812773172862715],[123,310,79,-0.780927134727138],[123,311,64,-0.7865897253336862],[123,311,65,-0.7862082841719377],[123,311,66,-0.7858290327035398],[123,311,67,-0.7854519772976162],[123,311,68,-0.7850771242389666],[123,311,69,-0.7847044797276647],[123,311,70,-0.7843340498786424],[123,311,71,-0.7839658407212804],[123,311,72,-0.7835998581989956],[123,311,73,-0.7832361081688417],[123,311,74,-0.7828745964010863],[123,311,75,-0.7825153285788127],[123,311,76,-0.7821583102975127],[123,311,77,-0.7818035470646789],[123,311,78,-0.7814510442994026],[123,311,79,-0.7811008073319645],[123,312,64,-0.7867641563964418],[123,312,65,-0.7863826826313287],[123,312,66,-0.7860033971071616],[123,312,67,-0.7856263061924164],[123,312,68,-0.7852514161713067],[123,312,69,-0.7848787332433825],[123,312,70,-0.7845082635231153],[123,312,71,-0.7841400130394879],[123,312,72,-0.783773987735583],[123,312,73,-0.7834101934681836],[123,312,74,-0.7830486360073505],[123,312,75,-0.7826893210360242],[123,312,76,-0.7823322541496182],[123,312,77,-0.7819774408556119],[123,312,78,-0.7816248865731478],[123,312,79,-0.7812745966326236],[123,313,64,-0.786938681679296],[123,313,65,-0.7865571768147387],[123,313,66,-0.7861778587340571],[123,313,67,-0.7858007338050536],[123,313,68,-0.785425808311331],[123,313,69,-0.7850530884518913],[123,313,70,-0.7846825803407205],[123,313,71,-0.7843142900063795],[123,313,72,-0.7839482233915929],[123,313,73,-0.7835843863528484],[123,313,74,-0.7832227846599765],[123,313,75,-0.7828634239957517],[123,313,76,-0.782506309955486],[123,313,77,-0.782151448046622],[123,313,78,-0.7817988436883305],[123,313,79,-0.781448502211104],[123,314,64,-0.7871133007461997],[123,314,65,-0.7867317662872673],[123,314,66,-0.7863524171504748],[123,314,67,-0.7859752597029264],[123,314,68,-0.785600300227589],[123,314,69,-0.7852275449228914],[123,314,70,-0.7848569999023103],[123,314,71,-0.78448867119396],[123,314,72,-0.7841225647401824],[123,314,73,-0.783758686397147],[123,314,74,-0.7833970419344296],[123,314,75,-0.783037637034615],[123,314,76,-0.7826804772928907],[123,314,77,-0.7823255682166392],[123,314,78,-0.7819729152250373],[123,314,79,-0.7816225236486484],[123,315,64,-0.7872880131605549],[123,315,65,-0.7869064506134558],[123,315,66,-0.7865270719220964],[123,315,67,-0.7861498834528571],[123,315,68,-0.7857748914880441],[123,315,69,-0.7854021022254888],[123,315,70,-0.7850315217781332],[123,315,71,-0.7846631561736211],[123,315,72,-0.7842970113538876],[123,315,73,-0.7839330931747597],[123,315,74,-0.7835714074055352],[123,315,75,-0.7832119597285856],[123,315,76,-0.7828547557389499],[123,315,77,-0.782499800943928],[123,315,78,-0.7821471007626793],[123,315,79,-0.7817966605258161],[123,316,64,-0.787462818485192],[123,316,65,-0.7870812293572647],[123,316,66,-0.7867018226140129],[123,316,67,-0.7863246046210685],[123,316,68,-0.7859495816600517],[123,316,69,-0.7855767599281714],[123,316,70,-0.7852061455378111],[123,316,71,-0.7848377445161192],[123,316,72,-0.7844715628045997],[123,316,73,-0.7841076062587136],[123,316,74,-0.7837458806474564],[123,316,75,-0.783386391652963],[123,316,76,-0.7830291448701007],[123,316,77,-0.7826741458060634],[123,316,78,-0.7823213998799704],[123,316,79,-0.7819709124224598],[123,317,64,-0.7876377162823467],[123,317,65,-0.7872561020820505],[123,317,66,-0.7868766687907026],[123,317,67,-0.7864994227731609],[123,317,68,-0.7861243703103351],[123,317,69,-0.7857515175987866],[123,317,70,-0.7853808707503154],[123,317,71,-0.7850124357915508],[123,317,72,-0.7846462186635416],[123,317,73,-0.7842822252213577],[123,317,74,-0.7839204612336697],[123,317,75,-0.7835609323823517],[123,317,76,-0.783203644262076],[123,317,77,-0.7828486023799075],[123,317,78,-0.7824958121549022],[123,317,79,-0.7821452789177011],[123,318,64,-0.7878127061137221],[123,318,65,-0.7874310683506277],[123,318,66,-0.7870516100160923],[123,318,67,-0.7866743374741741],[123,318,68,-0.786299257005048],[123,318,69,-0.7859263748046027],[123,318,70,-0.7855556969840304],[123,318,71,-0.7851872295694162],[123,318,72,-0.7848209785013299],[123,318,73,-0.7844569496344269],[123,318,74,-0.784095148737028],[123,318,75,-0.7837355814907236],[123,318,76,-0.7833782534899675],[123,318,77,-0.7830231702416721],[123,318,78,-0.7826703371648074],[123,318,79,-0.7823197595899948],[123,319,64,-0.7879877875404655],[123,319,65,-0.7876061277252457],[123,319,66,-0.7872266458535341],[123,319,67,-0.7868493482885648],[123,319,68,-0.7864742413097514],[123,319,69,-0.7861013311122863],[123,319,70,-0.7857306238067286],[123,319,71,-0.7853621254185955],[123,319,72,-0.7849958418879529],[123,319,73,-0.7846317790690176],[123,319,74,-0.7842699427297374],[123,319,75,-0.7839103385513948],[123,319,76,-0.783552972128202],[123,319,77,-0.7831978489668957],[123,319,78,-0.7828449744863366],[123,319,79,-0.7824943540171039],[124,-64,64,-0.7309160844185617],[124,-64,65,-0.7306355221791199],[124,-64,66,-0.7303574030363952],[124,-64,67,-0.7300817321226913],[124,-64,68,-0.7298085144751284],[124,-64,69,-0.7295377550352222],[124,-64,70,-0.7292694586484472],[124,-64,71,-0.7290036300638054],[124,-64,72,-0.7287402739333928],[124,-64,73,-0.7284793948119805],[124,-64,74,-0.7282209971565672],[124,-64,75,-0.7279650853259623],[124,-64,76,-0.7277116635803565],[124,-64,77,-0.7274607360808933],[124,-64,78,-0.7272123068892443],[124,-64,79,-0.7269663799671793],[124,-63,64,-0.7310349949411873],[124,-63,65,-0.7307539897882397],[124,-63,66,-0.7304754276681257],[124,-63,67,-0.7301993137193067],[124,-63,68,-0.7299256529850624],[124,-63,69,-0.7296544504130692],[124,-63,70,-0.7293857108549642],[124,-63,71,-0.7291194390659126],[124,-63,72,-0.7288556397041748],[124,-63,73,-0.7285943173306876],[124,-63,74,-0.7283354764086158],[124,-63,75,-0.7280791213029358],[124,-63,76,-0.7278252562800058],[124,-63,77,-0.7275738855071372],[124,-63,78,-0.7273250130521696],[124,-63,79,-0.7270786428830411],[124,-62,64,-0.7311540676576608],[124,-62,65,-0.7308726201182985],[124,-62,66,-0.7305936155463465],[124,-62,67,-0.7303170590864165],[124,-62,68,-0.7300429557879398],[124,-62,69,-0.7297713106047459],[124,-62,70,-0.7295021283946266],[124,-62,71,-0.7292354139189032],[124,-62,72,-0.7289711718419931],[124,-62,73,-0.728709406730991],[124,-62,74,-0.7284501230552209],[124,-62,75,-0.728193325185819],[124,-62,76,-0.7279390173953036],[124,-62,77,-0.7276872038571471],[124,-62,78,-0.7274378886453505],[124,-62,79,-0.7271910757340134],[124,-61,64,-0.731273302802302],[124,-61,65,-0.7309914134072767],[124,-61,66,-0.7307119669126804],[124,-61,67,-0.7304349684692668],[124,-61,68,-0.7301604231326108],[124,-61,69,-0.7298883358626878],[124,-61,70,-0.7296187115234363],[124,-61,71,-0.729351554882326],[124,-61,72,-0.7290868706099237],[124,-61,73,-0.7288246632794751],[124,-61,74,-0.7285649373664558],[124,-61,75,-0.7283076972481543],[124,-61,76,-0.7280529472032424],[124,-61,77,-0.7278006914113461],[124,-61,78,-0.7275509339526207],[124,-61,79,-0.7273036788073206],[124,-60,64,-0.7313927006062009],[124,-60,65,-0.7311103698899227],[124,-60,66,-0.7308304820055149],[124,-60,67,-0.7305530421098654],[124,-60,68,-0.7302780552646853],[124,-60,69,-0.730005526436087],[124,-60,70,-0.7297354604941487],[124,-60,71,-0.7294678622124806],[124,-60,72,-0.7292027362677919],[124,-60,73,-0.7289400872394711],[124,-60,74,-0.728679919609138],[124,-60,75,-0.7284222377602266],[124,-60,76,-0.7281670459775547],[124,-60,77,-0.7279143484468946],[124,-60,78,-0.7276641492545495],[124,-60,79,-0.727416452386921],[124,-59,64,-0.7315122612972065],[124,-59,65,-0.7312294897977406],[124,-59,66,-0.7309491610599907],[124,-59,67,-0.7306712802469708],[124,-59,68,-0.7303958524265198],[124,-59,69,-0.7301228825708802],[124,-59,70,-0.7298523755562614],[124,-59,71,-0.7295843361624068],[124,-59,72,-0.7293187690721596],[124,-59,73,-0.7290556788710443],[124,-59,74,-0.7287950700468173],[124,-59,75,-0.7285369469890506],[124,-59,76,-0.7282813139887006],[124,-59,77,-0.7280281752376793],[124,-59,78,-0.7277775348284297],[124,-59,79,-0.7275293967534944],[124,-58,64,-0.7316319850999765],[124,-58,65,-0.7313487733590402],[124,-58,66,-0.7310680043080513],[124,-58,67,-0.7307896831161411],[124,-58,68,-0.7305138148572691],[124,-58,69,-0.7302404045097992],[124,-58,70,-0.7299694569560646],[124,-58,71,-0.7297009769819336],[124,-58,72,-0.7294349692763764],[124,-58,73,-0.7291714384310453],[124,-58,74,-0.7289103889398261],[124,-58,75,-0.7286518251984212],[124,-58,76,-0.7283957515039184],[124,-58,77,-0.7281421720543619],[124,-58,78,-0.7278910909483278],[124,-58,79,-0.7276425121844922],[124,-57,64,-0.7317518722359592],[124,-57,65,-0.7314682207989192],[124,-57,66,-0.7311870119784244],[124,-57,67,-0.7309082509497165],[124,-57,68,-0.7306319427928661],[124,-57,69,-0.7303580924923516],[124,-57,70,-0.7300867049366212],[124,-57,71,-0.7298177849176608],[124,-57,72,-0.7295513371305595],[124,-57,73,-0.7292873661730901],[124,-57,74,-0.72902587654526],[124,-57,75,-0.7287668726488943],[124,-57,76,-0.7285103587872048],[124,-57,77,-0.7282563391643612],[124,-57,78,-0.7280048178850645],[124,-57,79,-0.7277557989541178],[124,-56,64,-0.731871922923415],[124,-56,65,-0.7315878323392839],[124,-56,66,-0.7313061842966448],[124,-56,67,-0.7310269839768405],[124,-56,68,-0.7307502364660453],[124,-56,69,-0.7304759467548432],[124,-56,70,-0.7302041197377901],[124,-56,71,-0.7299347602129814],[124,-56,72,-0.7296678728816173],[124,-56,73,-0.7294034623475828],[124,-56,74,-0.7291415331169997],[124,-56,75,-0.7288820895978086],[124,-56,76,-0.7286251360993377],[124,-56,77,-0.7283706768318738],[124,-56,78,-0.7281187159062371],[124,-56,79,-0.7278692573333494],[124,-55,64,-0.7319921373773985],[124,-55,65,-0.7317076081988326],[124,-55,66,-0.731425521485035],[124,-55,67,-0.7311458824234418],[124,-55,68,-0.7308686961063227],[124,-55,69,-0.7305939675303592],[124,-55,70,-0.7303217015962067],[124,-55,71,-0.7300519031080621],[124,-55,72,-0.7297845767732285],[124,-55,73,-0.7295197272016962],[124,-55,74,-0.729257358905693],[124,-55,75,-0.7289974762992674],[124,-55,76,-0.7287400836978561],[124,-55,77,-0.7284851853178567],[124,-55,78,-0.7282327852762],[124,-55,79,-0.7279828875899198],[124,-54,64,-0.7321125158098087],[124,-54,65,-0.7318275485931042],[124,-54,66,-0.7315450237627557],[124,-54,67,-0.7312649465122845],[124,-54,68,-0.7309873219400471],[124,-54,69,-0.7307121550488145],[124,-54,70,-0.7304394507453332],[124,-54,71,-0.7301692138398937],[124,-54,72,-0.7299014490458944],[124,-54,73,-0.7296361609794223],[124,-54,74,-0.7293733541588039],[124,-54,75,-0.7291130330041874],[124,-54,76,-0.7288552018371113],[124,-54,77,-0.7285998648800756],[124,-54,78,-0.7283470262561146],[124,-54,79,-0.7280966899883673],[124,-53,64,-0.7322330584293767],[124,-53,65,-0.7319476537344665],[124,-53,66,-0.7316646913457937],[124,-53,67,-0.7313841764629556],[124,-53,68,-0.7311061141903875],[124,-53,69,-0.7308305095369412],[124,-53,70,-0.7305573674154467],[124,-53,71,-0.7302866926422795],[124,-53,72,-0.7300184899369251],[124,-53,73,-0.7297527639215596],[124,-53,74,-0.7294895191206003],[124,-53,75,-0.7292287599602877],[124,-53,76,-0.7289704907682539],[124,-53,77,-0.7287147157730935],[124,-53,78,-0.7284614391039379],[124,-53,79,-0.7282106647900227],[124,-52,64,-0.7323537654416532],[124,-52,65,-0.7320679238321045],[124,-52,66,-0.7317845244469495],[124,-52,67,-0.731503572491853],[124,-52,68,-0.7312250730773207],[124,-52,69,-0.7309490312182767],[124,-52,70,-0.7306754518336263],[124,-52,71,-0.7304043397458216],[124,-52,72,-0.7301356996804277],[124,-52,73,-0.7298695362657013],[124,-52,74,-0.7296058540321426],[124,-52,75,-0.7293446574120763],[124,-52,76,-0.7290859507392209],[124,-52,77,-0.7288297382482584],[124,-52,78,-0.7285760240744084],[124,-52,79,-0.7283248122529967],[124,-51,64,-0.73247463704906],[124,-51,65,-0.7321883590920708],[124,-51,66,-0.7319045232758883],[124,-51,67,-0.7316231348122362],[124,-51,68,-0.731344198817682],[124,-51,69,-0.7310677203132139],[124,-51,70,-0.7307937042238039],[124,-51,71,-0.7305221553779728],[124,-51,72,-0.7302530785073564],[124,-51,73,-0.7299864782462848],[124,-51,74,-0.7297223591313327],[124,-51,75,-0.7294607256009012],[124,-51,76,-0.7292015819947872],[124,-51,77,-0.7289449325537525],[124,-51,78,-0.7286907814190975],[124,-51,79,-0.7284391326322306],[124,-50,64,-0.7325956734508703],[124,-50,65,-0.7323089597172661],[124,-50,66,-0.7320246880391201],[124,-50,67,-0.7317428636342066],[124,-50,68,-0.7314634916251458],[124,-50,69,-0.731186577038982],[124,-50,70,-0.730912124806745],[124,-50,71,-0.7306401397630162],[124,-50,72,-0.7303706266454939],[124,-50,73,-0.7301035900945732],[124,-50,74,-0.7298390346528953],[124,-50,75,-0.7295769647649304],[124,-50,76,-0.7293173847765452],[124,-50,77,-0.7290602989345736],[124,-50,78,-0.7288057113863895],[124,-50,79,-0.728553626179476],[124,-49,64,-0.7327168748432312],[124,-49,65,-0.7324297259074621],[124,-49,66,-0.7321450189400234],[124,-49,67,-0.7318627591647306],[124,-49,68,-0.7315829517102488],[124,-49,69,-0.7313056016096691],[124,-49,70,-0.7310307138000709],[124,-49,71,-0.730758293122088],[124,-49,72,-0.7304883443194728],[124,-49,73,-0.730220872038677],[124,-49,74,-0.7299558808284006],[124,-49,75,-0.7296933751391743],[124,-49,76,-0.7294333593229272],[124,-49,77,-0.7291758376325571],[124,-49,78,-0.7289208142215042],[124,-49,79,-0.7286682931433183],[124,-48,64,-0.7328382414191451],[124,-48,65,-0.7325506578592824],[124,-48,66,-0.7322655161788245],[124,-48,67,-0.7319828216076201],[124,-48,68,-0.7317025792803694],[124,-48,69,-0.7314247942362025],[124,-48,70,-0.7311494714182396],[124,-48,71,-0.7308766156731581],[124,-48,72,-0.7306062317507568],[124,-48,73,-0.7303383243035353],[124,-48,74,-0.7300728978862441],[124,-48,75,-0.7298099569554665],[124,-48,76,-0.729549505869186],[124,-48,77,-0.7292915488863567],[124,-48,78,-0.7290360901664767],[124,-48,79,-0.7287831337691552],[124,-47,64,-0.7329597733685198],[124,-47,65,-0.7326717557662527],[124,-47,66,-0.7323861799526494],[124,-47,67,-0.7321030511635827],[124,-47,68,-0.7318223745397796],[124,-47,69,-0.7315441551263999],[124,-47,70,-0.7312683978725962],[124,-47,71,-0.7309951076310812],[124,-47,72,-0.730724289157691],[124,-47,73,-0.7304559471109655],[124,-47,74,-0.7301900860516973],[124,-47,75,-0.729926710442514],[124,-47,76,-0.7296658246474454],[124,-47,77,-0.7294074329314943],[124,-47,78,-0.7291515394602084],[124,-47,79,-0.7288981482992487],[124,-46,64,-0.7330814708781563],[124,-46,65,-0.7327930198187889],[124,-46,66,-0.7325070104555109],[124,-46,67,-0.7322234480302101],[124,-46,68,-0.7319423376896317],[124,-46,69,-0.7316636844849562],[124,-46,70,-0.7313874933713606],[124,-46,71,-0.7311137692075833],[124,-46,72,-0.73084251675549],[124,-46,73,-0.7305737406796518],[124,-46,74,-0.7303074455468955],[124,-46,75,-0.7300436358258847],[124,-46,76,-0.729782315886688],[124,-46,77,-0.7295234900003477],[124,-46,78,-0.7292671623384539],[124,-46,79,-0.7290133369727119],[124,-45,64,-0.7332033341317369],[124,-45,65,-0.7329144502041842],[124,-45,66,-0.7326280078782957],[124,-45,67,-0.732344012401965],[124,-45,68,-0.7320624689279462],[124,-45,69,-0.7317833825134321],[124,-45,70,-0.7315067581196142],[124,-45,71,-0.7312326006112495],[124,-45,72,-0.7309609147562237],[124,-45,73,-0.7306917052251314],[124,-45,74,-0.7304249765908245],[124,-45,75,-0.7301607333279949],[124,-45,76,-0.729898979812741],[124,-45,77,-0.7296397203221375],[124,-45,78,-0.7293829590338088],[124,-45,79,-0.7291287000254959],[124,-44,64,-0.7333253633098753],[124,-44,65,-0.733036047106661],[124,-44,66,-0.7327491724088167],[124,-44,67,-0.7324647444702324],[124,-44,68,-0.7321827684496627],[124,-44,69,-0.7319032494103033],[124,-44,70,-0.7316261923193521],[124,-44,71,-0.7313516020475751],[124,-44,72,-0.73107948336887],[124,-44,73,-0.7308098409598458],[124,-44,74,-0.7305426793993719],[124,-44,75,-0.7302780031681593],[124,-44,76,-0.7300158166483285],[124,-44,77,-0.7297561241229783],[124,-44,78,-0.729498929775759],[124,-44,79,-0.7292442376904402],[124,-43,64,-0.7334475585901048],[124,-43,65,-0.7331578107073572],[124,-43,66,-0.7328705042317987],[124,-43,67,-0.7325856444233066],[124,-43,68,-0.732303236446627],[124,-43,69,-0.7320232853709494],[124,-43,70,-0.7317457961694692],[124,-43,71,-0.7314707737189527],[124,-43,72,-0.7311982227993008],[124,-43,73,-0.7309281480931286],[124,-43,74,-0.7306605541853138],[124,-43,75,-0.730395445562579],[124,-43,76,-0.7301328266130579],[124,-43,77,-0.7298727016258654],[124,-43,78,-0.7296150747906698],[124,-43,79,-0.7293599501972607],[124,-42,64,-0.7335699201468658],[124,-42,65,-0.7332797411843145],[124,-42,66,-0.7329920035288668],[124,-42,67,-0.7327067124463791],[124,-42,68,-0.7324238731075786],[124,-42,69,-0.7321434905876404],[124,-42,70,-0.731865569865748],[124,-42,71,-0.7315901158246593],[124,-42,72,-0.7313171332502697],[124,-42,73,-0.7310466268311913],[124,-42,74,-0.7307786011583024],[124,-42,75,-0.7305130607243279],[124,-42,76,-0.7302500099234068],[124,-42,77,-0.7299894530506619],[124,-42,78,-0.7297313943017709],[124,-42,79,-0.729475837772536],[124,-41,64,-0.7336924481515562],[124,-41,65,-0.7334018387125287],[124,-41,66,-0.7331136704785979],[124,-41,67,-0.732827948721589],[124,-41,68,-0.7325446786182019],[124,-41,69,-0.7322638652495878],[124,-41,70,-0.7319855136009095],[124,-41,71,-0.7317096285609075],[124,-41,72,-0.7314362149214626],[124,-41,73,-0.7311652773771758],[124,-41,74,-0.7308968205249167],[124,-41,75,-0.7306308488634043],[124,-41,76,-0.7303673667927748],[124,-41,77,-0.7301063786141496],[124,-41,78,-0.7298478885292089],[124,-41,79,-0.7295919006397582],[124,-40,64,-0.7338151427725125],[124,-40,65,-0.733524103463931],[124,-40,66,-0.7332355052564998],[124,-40,67,-0.7329493534280039],[124,-40,68,-0.7326656531611062],[124,-40,69,-0.732384409542925],[124,-40,70,-0.7321056275645934],[124,-40,71,-0.7318293121208252],[124,-40,72,-0.7315554680094785],[124,-40,73,-0.7312840999311334],[124,-40,74,-0.7310152124886428],[124,-40,75,-0.7307488101867109],[124,-40,76,-0.7304848974314623],[124,-40,77,-0.7302234785300095],[124,-40,78,-0.729964557690026],[124,-40,79,-0.7297081390193131],[124,-39,64,-0.733938004175032],[124,-39,65,-0.73364653560741],[124,-39,66,-0.733357508035035],[124,-39,67,-0.7330709267416421],[124,-39,68,-0.7327867969158486],[124,-39,69,-0.7325051236507302],[124,-39,70,-0.732225911943381],[124,-39,71,-0.7319491666944795],[124,-39,72,-0.7316748927078512],[124,-39,73,-0.7314030946900479],[124,-39,74,-0.7311337772498958],[124,-39,75,-0.7308669448980764],[124,-39,76,-0.7306026020466939],[124,-39,77,-0.7303407530088433],[124,-39,78,-0.7300814019981832],[124,-39,79,-0.7298245531285026],[124,-38,64,-0.7340610325213537],[124,-38,65,-0.7337691353087918],[124,-38,66,-0.7334796789835998],[124,-38,67,-0.7331926688354531],[124,-38,68,-0.7329081100589138],[124,-38,69,-0.7326260077530055],[124,-38,70,-0.7323463669207746],[124,-38,71,-0.7320691924688548],[124,-38,72,-0.7317944892070305],[124,-38,73,-0.7315222618478152],[124,-38,74,-0.7312525150060005],[124,-38,75,-0.7309852531982363],[124,-38,76,-0.7307204808425978],[124,-38,77,-0.7304582022581538],[124,-38,78,-0.73019842166454],[124,-38,79,-0.7299411431815241],[124,-37,64,-0.7341842279707088],[124,-37,65,-0.7338919027308924],[124,-37,66,-0.7336020182685767],[124,-37,67,-0.7333145798793688],[124,-37,68,-0.7330295927637653],[124,-37,69,-0.7327470620267292],[124,-37,70,-0.7324669926772494],[124,-37,71,-0.7321893896279054],[124,-37,72,-0.7319142576944316],[124,-37,73,-0.7316416015952947],[124,-37,74,-0.7313714259512423],[124,-37,75,-0.7311037352848837],[124,-37,76,-0.7308385340202569],[124,-37,77,-0.730575826482396],[124,-37,78,-0.7303156168969048],[124,-37,79,-0.7300579093895221],[124,-36,64,-0.7343075906793088],[124,-36,65,-0.7340148380335036],[124,-36,66,-0.7337245260533213],[124,-36,67,-0.7334366600402904],[124,-36,68,-0.7331512452008335],[124,-36,69,-0.7328682866458427],[124,-36,70,-0.7325877893902399],[124,-36,71,-0.7323097583525421],[124,-36,72,-0.7320341983544238],[124,-36,73,-0.731761114120296],[124,-36,74,-0.7314905102768535],[124,-36,75,-0.7312223913526565],[124,-36,76,-0.7309567617776962],[124,-36,77,-0.730693625882964],[124,-36,78,-0.730432987900023],[124,-36,79,-0.7301748519605747],[124,-35,64,-0.7344311208003321],[124,-35,65,-0.7341379413733807],[124,-35,66,-0.7338472024981486],[124,-35,67,-0.733558909482076],[124,-35,68,-0.7332730675375012],[124,-35,69,-0.7329896817812365],[124,-35,70,-0.7327087572341278],[124,-35,71,-0.7324302988206192],[124,-35,72,-0.732154311368317],[124,-35,73,-0.7318807996075665],[124,-35,74,-0.7316097681710015],[124,-35,75,-0.7313412215931235],[124,-35,76,-0.731075164309869],[124,-35,77,-0.7308116006581771],[124,-35,78,-0.7305505348755623],[124,-35,79,-0.7302919710996801],[124,-34,64,-0.7345548184839754],[124,-34,65,-0.734261212904294],[124,-34,66,-0.7339700477603852],[124,-34,67,-0.7336813283655911],[124,-34,68,-0.7333950599381562],[124,-34,69,-0.7331112476008032],[124,-34,70,-0.7328298963802921],[124,-34,71,-0.7325510112069856],[124,-34,72,-0.7322745969144118],[124,-34,73,-0.7320006582388419],[124,-34,74,-0.7317291998188387],[124,-34,75,-0.7314602261948366],[124,-34,76,-0.7311937418087082],[124,-34,77,-0.7309297510033321],[124,-34,78,-0.7306682580221651],[124,-34,79,-0.7304092670088083],[124,-33,64,-0.7346786838774343],[124,-33,65,-0.734384652777009],[124,-33,66,-0.7340930619943494],[124,-33,67,-0.7338039168486898],[124,-33,68,-0.733517222564171],[124,-33,69,-0.7332329842694161],[124,-33,70,-0.7329512069970904],[124,-33,71,-0.7326718956834652],[124,-33,72,-0.7323950551679812],[124,-33,73,-0.7321206901928261],[124,-33,74,-0.731848805402483],[124,-33,75,-0.7315794053433099],[124,-33,76,-0.7313124944631066],[124,-33,77,-0.7310480771106823],[124,-33,78,-0.7307861575354273],[124,-33,79,-0.7305267398868799],[124,-32,64,-0.7348027171249254],[124,-32,65,-0.7345082611393088],[124,-32,66,-0.7342162453513736],[124,-32,67,-0.7339266750862363],[124,-32,68,-0.7336395555739248],[124,-32,69,-0.7333548919489526],[124,-32,70,-0.7330726892498804],[124,-32,71,-0.7327929524188789],[124,-32,72,-0.7325156863012919],[124,-32,73,-0.7322408956452144],[124,-32,74,-0.7319685851010403],[124,-32,75,-0.7316987592210425],[124,-32,76,-0.7314314224589389],[124,-32,77,-0.7311665791694599],[124,-32,78,-0.7309042336079216],[124,-32,79,-0.7306443899297899],[124,-31,64,-0.7349269183676669],[124,-31,65,-0.7346320381359739],[124,-31,66,-0.734339597979784],[124,-31,67,-0.7340496032300858],[124,-31,68,-0.733762059122784],[124,-31,69,-0.7334769707982737],[124,-31,70,-0.7331943433010004],[124,-31,71,-0.7329141815790248],[124,-31,72,-0.7326364904835846],[124,-31,73,-0.7323612747686725],[124,-31,74,-0.7320885390905842],[124,-31,75,-0.7318182880074979],[124,-31,76,-0.7315505259790407],[124,-31,77,-0.7312852573658559],[124,-31,78,-0.7310224864291757],[124,-31,79,-0.7307622173303855],[124,-30,64,-0.7350512877439297],[124,-30,65,-0.7347559839088342],[124,-30,66,-0.7344631200249524],[124,-30,67,-0.7341727014291353],[124,-30,68,-0.7338847333631542],[124,-30,69,-0.7335992209732751],[124,-30,70,-0.7333161693098201],[124,-30,71,-0.7330355833267294],[124,-30,72,-0.7327574678811251],[124,-30,73,-0.7324818277328882],[124,-30,74,-0.732208667544207],[124,-30,75,-0.7319379918791555],[124,-30,76,-0.7316698052032614],[124,-30,77,-0.7314041118830716],[124,-30,78,-0.7311409161857252],[124,-30,79,-0.7308802222785187],[124,-29,64,-0.7351758253890249],[124,-29,65,-0.734880098596756],[124,-29,66,-0.7345868116292837],[124,-29,67,-0.7342959698293109],[124,-29,68,-0.7340075784444655],[124,-29,69,-0.7337216426268756],[124,-29,70,-0.7334381674327282],[124,-29,71,-0.7331571578218345],[124,-29,72,-0.7328786186571913],[124,-29,73,-0.7326025547045583],[124,-29,74,-0.7323289706320066],[124,-29,75,-0.7320578710094977],[124,-29,76,-0.7317892603084497],[124,-29,77,-0.7315231429013044],[124,-29,78,-0.7312595230610992],[124,-29,79,-0.7309984049610325],[124,-28,64,-0.7353005314352901],[124,-28,65,-0.7350043823356285],[124,-28,66,-0.7347106729322016],[124,-28,67,-0.7344194085735544],[124,-28,68,-0.7341305945131612],[124,-28,69,-0.7338442359090014],[124,-28,70,-0.7335603378231186],[124,-28,71,-0.7332789052211841],[124,-28,72,-0.7329999429720596],[124,-28,73,-0.7327234558473746],[124,-28,74,-0.7324494485210735],[124,-28,75,-0.7321779255689955],[124,-28,76,-0.7319088914684403],[124,-28,77,-0.7316423505977353],[124,-28,78,-0.7313783072358071],[124,-28,79,-0.7311167655617474],[124,-27,64,-0.7354254060121417],[124,-27,65,-0.7351288352584157],[124,-27,66,-0.7348347040702015],[124,-27,67,-0.7345430178018751],[124,-27,68,-0.7342537817127479],[124,-27,69,-0.7339670009666404],[124,-27,70,-0.7336826806314422],[124,-27,71,-0.7334008256786755],[124,-27,72,-0.7331214409830574],[124,-27,73,-0.7328445313220768],[124,-27,74,-0.7325701013755423],[124,-27,75,-0.7322981557251613],[124,-27,76,-0.7320286988541059],[124,-27,77,-0.7317617351465798],[124,-27,78,-0.73149726888739],[124,-27,79,-0.7312353042615123],[124,-26,64,-0.7355504492460543],[124,-26,65,-0.7352534574951364],[124,-26,66,-0.734958905176829],[124,-26,67,-0.7346667976513299],[124,-26,68,-0.7343771401837762],[124,-26,69,-0.7340899379438199],[124,-26,70,-0.7338051960051867],[124,-26,71,-0.7335229193452397],[124,-26,72,-0.7332431128445412],[124,-26,73,-0.7329657812864305],[124,-26,74,-0.7326909293565704],[124,-26,75,-0.7324185616425273],[124,-26,76,-0.7321486826333361],[124,-26,77,-0.7318812967190678],[124,-26,78,-0.7316164081904003],[124,-26,79,-0.7313540212381848],[124,-25,64,-0.7356756612605841],[124,-25,65,-0.7353782491728866],[124,-25,66,-0.7350832763827042],[124,-25,67,-0.7347907482560452],[124,-25,68,-0.7345006700638628],[124,-25,69,-0.7342130469816301],[124,-25,70,-0.733927884088899],[124,-25,71,-0.7336451863688631],[124,-25,72,-0.7333649587079206],[124,-25,73,-0.7330872058952509],[124,-25,74,-0.7328119326223618],[124,-25,75,-0.7325391434826688],[124,-25,76,-0.7322688429710603],[124,-25,77,-0.7320010354834654],[124,-25,78,-0.7317357253164241],[124,-25,79,-0.7314729166666532],[124,-24,64,-0.7358010421763477],[124,-24,65,-0.7355032104158196],[124,-24,66,-0.7352078178154998],[124,-24,67,-0.7349148697471971],[124,-24,68,-0.7346243714876706],[124,-24,69,-0.7343363282182039],[124,-24,70,-0.7340507450241647],[124,-24,71,-0.7337676268945676],[124,-24,72,-0.7334869787216367],[124,-24,73,-0.7332088053003816],[124,-24,74,-0.7329331113281452],[124,-24,75,-0.7326599014041827],[124,-24,76,-0.7323891800292268],[124,-24,77,-0.732120951605055],[124,-24,78,-0.7318552204340599],[124,-24,79,-0.7315919907188153],[124,-23,64,-0.7359265921110745],[124,-23,65,-0.735628341345197],[124,-23,66,-0.7353325295999937],[124,-23,67,-0.7350391622530633],[124,-23,68,-0.7347482445869599],[124,-23,69,-0.7344597817887677],[124,-23,70,-0.7341737789496601],[124,-23,71,-0.7338902410644624],[124,-23,72,-0.7336091730312145],[124,-23,73,-0.7333305796507464],[124,-23,74,-0.7330544656262266],[124,-23,75,-0.7327808355627402],[124,-23,76,-0.7325096939668546],[124,-23,77,-0.7322410452461863],[124,-23,78,-0.7319748937089712],[124,-23,79,-0.7317112435636308],[124,-22,64,-0.7360523111795935],[124,-22,65,-0.7357536420793767],[124,-22,66,-0.7354574118580559],[124,-22,67,-0.7351636258990093],[124,-22,68,-0.7348722894905755],[124,-22,69,-0.734583407825629],[124,-22,70,-0.7342969860011386],[124,-22,71,-0.7340130290177302],[124,-22,72,-0.7337315417792492],[124,-22,73,-0.7334525290923364],[124,-22,74,-0.7331759956659758],[124,-22,75,-0.7329019461110728],[124,-22,76,-0.7326303849400199],[124,-22,77,-0.7323613165662629],[124,-22,78,-0.7320947453038722],[124,-22,79,-0.7318306753671074],[124,-21,64,-0.7361781994938199],[124,-21,65,-0.7358791127337982],[124,-21,66,-0.7355824647086345],[124,-21,67,-0.7352882608074751],[124,-21,68,-0.734996506324433],[124,-21,69,-0.7347072064581626],[124,-21,70,-0.7344203663114173],[124,-21,71,-0.7341359908906137],[124,-21,72,-0.7338540851053924],[124,-21,73,-0.7335746537681954],[124,-21,74,-0.733297701593812],[124,-21,75,-0.7330232331989583],[124,-21,76,-0.7327512531018419],[124,-21,77,-0.7324817657217287],[124,-21,78,-0.732214775378514],[124,-21,79,-0.7319502862922864],[124,-20,64,-0.7363042571628071],[124,-20,65,-0.7360047534210361],[124,-20,66,-0.7357076882678082],[124,-20,67,-0.7354130670980278],[124,-20,68,-0.7351208952115713],[124,-20,69,-0.7348311778128622],[124,-20,70,-0.7345439200104288],[124,-20,71,-0.7342591268164677],[124,-20,72,-0.7339768031464049],[124,-20,73,-0.7336969538184728],[124,-20,74,-0.7334195835532566],[124,-20,75,-0.7331446969732729],[124,-20,76,-0.7328722986025353],[124,-20,77,-0.7326023928661201],[124,-20,78,-0.7323349840897372],[124,-20,79,-0.7320700764992956],[124,-19,64,-0.7364304842927263],[124,-19,65,-0.7361305642507779],[124,-19,66,-0.7358330826487656],[124,-19,67,-0.7355380448873401],[124,-19,68,-0.7352454562721311],[124,-19,69,-0.7349553220133205],[124,-19,70,-0.7346676472252008],[124,-19,71,-0.7343824369257386],[124,-19,72,-0.7340996960361347],[124,-19,73,-0.7338194293804021],[124,-19,74,-0.7335416416849116],[124,-19,75,-0.7332663375779711],[124,-19,76,-0.7329935215893892],[124,-19,77,-0.7327231981500437],[124,-19,78,-0.7324553715914498],[124,-19,79,-0.7321900461453269],[124,-18,64,-0.7365568809868889],[124,-18,65,-0.7362565453298486],[124,-18,66,-0.7359586479618277],[124,-18,67,-0.7356631942892138],[124,-18,68,-0.7353701896233784],[124,-18,69,-0.7350796391802512],[124,-18,70,-0.7347915480798788],[124,-18,71,-0.7345059213459865],[124,-18,72,-0.7342227639055405],[124,-18,73,-0.7339420805883239],[124,-18,74,-0.7336638761264832],[124,-18,75,-0.7333881551541068],[124,-18,76,-0.7331149222067899],[124,-18,77,-0.7328441817212006],[124,-18,78,-0.7325759380346509],[124,-18,79,-0.7323101953846607],[124,-17,64,-0.7366834473457268],[124,-17,65,-0.7363826967621883],[124,-17,66,-0.736084384314428],[124,-17,67,-0.7357885154145586],[124,-17,68,-0.7354950953796833],[124,-17,69,-0.7352041294314686],[124,-17,70,-0.7349156226957044],[124,-17,71,-0.734629580201865],[124,-17,72,-0.7343460068826707],[124,-17,73,-0.7340649075736649],[124,-17,74,-0.7337862870127594],[124,-17,75,-0.7335101498398137],[124,-17,76,-0.7332365005961987],[124,-17,77,-0.7329653437243644],[124,-17,78,-0.7326966835674087],[124,-17,79,-0.7324305243686428],[124,-16,64,-0.7368101834668433],[124,-16,65,-0.7365090186489054],[124,-16,66,-0.7362102918111635],[124,-16,67,-0.7359140083714447],[124,-16,68,-0.7356201736525723],[124,-16,69,-0.7353287928819396],[124,-16,70,-0.735039871191069],[124,-16,71,-0.7347534136151724],[124,-16,72,-0.7344694250927152],[124,-16,73,-0.7341879104649897],[124,-16,74,-0.7339088744756634],[124,-16,75,-0.7336323217703563],[124,-16,76,-0.7333582568962059],[124,-16,77,-0.7330866843014332],[124,-16,78,-0.7328176083349127],[124,-16,79,-0.7325510332457377],[124,-15,64,-0.7369370894450012],[124,-15,65,-0.7366355110882633],[124,-15,66,-0.7363363705537824],[124,-15,67,-0.7360396732650887],[124,-15,68,-0.7357454245507149],[124,-15,69,-0.7354536296437704],[124,-15,70,-0.7351642936814984],[124,-15,71,-0.7348774217048395],[124,-15,72,-0.7345930186579919],[124,-15,73,-0.7343110893879877],[124,-15,74,-0.7340316386442394],[124,-15,75,-0.7337546710781173],[124,-15,76,-0.7334801912425154],[124,-15,77,-0.7332082035914159],[124,-15,78,-0.7329387124794606],[124,-15,79,-0.7326717221615144],[124,-14,64,-0.7370641653721076],[124,-14,65,-0.7367621741756659],[124,-14,66,-0.7364626206411693],[124,-14,67,-0.7361655101978402],[124,-14,68,-0.7358708481799097],[124,-14,69,-0.7355786398261916],[124,-14,70,-0.7352888902796407],[124,-14,71,-0.735001604586914],[124,-14,72,-0.734716787697933],[124,-14,73,-0.7344344444654587],[124,-14,74,-0.7341545796446381],[124,-14,75,-0.7338771978925824],[124,-14,76,-0.7336023037679311],[124,-14,77,-0.7333299017304185],[124,-14,78,-0.7330599961404429],[124,-14,79,-0.7327925912586319],[124,-13,64,-0.7371914113372674],[124,-13,65,-0.7368890080037107],[124,-13,66,-0.7365890421693987],[124,-13,67,-0.7362915192692343],[124,-13,68,-0.7359964446431364],[124,-13,69,-0.7357038235356126],[124,-13,70,-0.7354136610953173],[124,-13,71,-0.7351259623746143],[124,-13,72,-0.734840732329137],[124,-13,73,-0.7345579758173653],[124,-13,74,-0.7342776976001701],[124,-13,75,-0.7339999023403931],[124,-13,76,-0.7337245946024098],[124,-13,77,-0.7334517788516957],[124,-13,78,-0.7331814594543964],[124,-13,79,-0.7329136406768921],[124,-12,64,-0.7373188274267694],[124,-12,65,-0.737016012662175],[124,-12,66,-0.7367156352317202],[124,-12,67,-0.7364177005759779],[124,-12,68,-0.7361222140405429],[124,-12,69,-0.7358291808756057],[124,-12,70,-0.7355386062355098],[124,-12,71,-0.7352504951783144],[124,-12,72,-0.7349648526653552],[124,-12,73,-0.734681683560819],[124,-12,74,-0.7344009926312912],[124,-12,75,-0.7341227845453333],[124,-12,76,-0.7338470638730463],[124,-12,77,-0.7335738350856374],[124,-12,78,-0.7333031025549894],[124,-12,79,-0.7330348705532252],[124,-11,64,-0.737446413724072],[124,-11,65,-0.7371431882380015],[124,-11,66,-0.7368423999185457],[124,-11,67,-0.7365440542119354],[124,-11,68,-0.7362481564694306],[124,-11,69,-0.7359547119468935],[124,-11,70,-0.7356637258043459],[124,-11,71,-0.7353752031055315],[124,-11,72,-0.7350891488174767],[124,-11,73,-0.7348055678100661],[124,-11,74,-0.7345244648555884],[124,-11,75,-0.7342458446283141],[124,-11,76,-0.73396971170406],[124,-11,77,-0.7336960705597546],[124,-11,78,-0.733424925573008],[124,-11,79,-0.7331562810216755],[124,-10,64,-0.7375741703098573],[124,-10,65,-0.7372705348153525],[124,-10,66,-0.7369693363175014],[124,-10,67,-0.7366705802681818],[124,-10,68,-0.7363742720243076],[124,-10,69,-0.7360804168474013],[124,-10,70,-0.7357890199031519],[124,-10,71,-0.735500086260977],[124,-10,72,-0.7352136208935829],[124,-10,73,-0.7349296286765408],[124,-10,74,-0.7346481143878323],[124,-10,75,-0.7343690827074271],[124,-10,76,-0.7340925382168468],[124,-10,77,-0.7338184853987313],[124,-10,78,-0.7335469286364077],[124,-10,79,-0.7332778722134542],[124,-9,64,-0.7377020972620081],[124,-9,65,-0.7373980524755867],[124,-9,66,-0.7370964445134065],[124,-9,67,-0.7367972788329813],[124,-9,68,-0.7365005607968669],[124,-9,69,-0.7362062956722353],[124,-9,70,-0.7359144886304316],[124,-9,71,-0.7356251447465358],[124,-9,72,-0.7353382689989241],[124,-9,73,-0.7350538662688431],[124,-9,74,-0.7347719413399565],[124,-9,75,-0.7344924988979227],[124,-9,76,-0.7342155435299582],[124,-9,77,-0.7339410797244037],[124,-9,78,-0.7336691118702929],[124,-9,79,-0.7333996442569175],[124,-8,64,-0.7378301946556323],[124,-8,65,-0.7375257412972835],[124,-8,66,-0.7372237245882971],[124,-8,67,-0.7369241499918102],[124,-8,68,-0.7366270228760099],[124,-8,69,-0.7363323485137062],[124,-8,70,-0.7360401320818889],[124,-8,71,-0.73575037866129],[124,-8,72,-0.7354630932359436],[124,-8,73,-0.7351782806927617],[124,-8,74,-0.7348959458210795],[124,-8,75,-0.7346160933122332],[124,-8,76,-0.7343387277591238],[124,-8,77,-0.7340638536557823],[124,-8,78,-0.7337914753969395],[124,-8,79,-0.7335215972775897],[124,-7,64,-0.737958462563041],[124,-7,65,-0.737653601356222],[124,-7,66,-0.7373511766214038],[124,-7,67,-0.7370511938273357],[124,-7,68,-0.7367536583478247],[124,-7,69,-0.7364585754613071],[124,-7,70,-0.7361659503504066],[124,-7,71,-0.7358757881014956],[124,-7,72,-0.7355880937042556],[124,-7,73,-0.7353028720512529],[124,-7,74,-0.7350201279374833],[124,-7,75,-0.7347398660599505],[124,-7,76,-0.734462091017229],[124,-7,77,-0.7341868073090305],[124,-7,78,-0.733914019335772],[124,-7,79,-0.7336437313981407],[124,-6,64,-0.7380869010538017],[124,-6,65,-0.7377816327254328],[124,-6,66,-0.737478800689205],[124,-6,67,-0.7371784104194689],[124,-6,68,-0.7368804672956389],[124,-6,69,-0.736584976601767],[124,-6,70,-0.736291943526099],[124,-6,71,-0.7360013731606367],[124,-6,72,-0.7357132705006985],[124,-6,73,-0.735427640444493],[124,-6,74,-0.7351444877926666],[124,-6,75,-0.7348638172478794],[124,-6,76,-0.7345856334143694],[124,-6,77,-0.734309940797518],[124,-6,78,-0.7340367438034181],[124,-6,79,-0.7337660467384395],[124,-5,64,-0.7382155101947244],[124,-5,65,-0.7379098354751846],[124,-5,66,-0.7376065968654133],[124,-5,67,-0.73730579984535],[124,-5,68,-0.7370074498000059],[124,-5,69,-0.7367115520190362],[124,-5,70,-0.7364181116962982],[124,-5,71,-0.7361271339294118],[124,-5,72,-0.73583862371932],[124,-5,73,-0.7355525859698644],[124,-5,74,-0.7352690254873303],[124,-5,75,-0.7349879469800236],[124,-5,76,-0.734709355057835],[124,-5,77,-0.7344332542318048],[124,-5,78,-0.7341596489136925],[124,-5,79,-0.7338885434155397],[124,-4,64,-0.738344290049847],[124,-4,65,-0.7380382096729702],[124,-4,66,-0.7377345652209606],[124,-4,67,-0.7374333621793353],[124,-4,68,-0.73713460593869],[124,-4,69,-0.7368383017942723],[124,-4,70,-0.7365444549455391],[124,-4,71,-0.7362530704957171],[124,-4,72,-0.7359641534513635],[124,-4,73,-0.7356777087219408],[124,-4,74,-0.7353937411193626],[124,-4,75,-0.7351122553575701],[124,-4,76,-0.7348332560520956],[124,-4,77,-0.7345567477196285],[124,-4,78,-0.7342827347775834],[124,-4,79,-0.7340112215436643],[124,-3,64,-0.738473240680489],[124,-3,65,-0.738166755383559],[124,-3,66,-0.7378627058240517],[124,-3,67,-0.7375610974930491],[124,-3,68,-0.7372619357867203],[124,-3,69,-0.7369652260058935],[124,-3,70,-0.7366709733556134],[124,-3,71,-0.7363791829447025],[124,-3,72,-0.7360898597853207],[124,-3,73,-0.7358030087925408],[124,-3,74,-0.7355186347838932],[124,-3,75,-0.7352367424789434],[124,-3,76,-0.7349573364988554],[124,-3,77,-0.7346804213659563],[124,-3,78,-0.7344060015033058],[124,-3,79,-0.7341340812342593],[124,-2,64,-0.7386023621452297],[124,-2,65,-0.7382954726689765],[124,-2,66,-0.7379910187401424],[124,-2,67,-0.7376890058553629],[124,-2,68,-0.7373894394163684],[124,-2,69,-0.737092324729556],[124,-2,70,-0.7367976670055469],[124,-2,71,-0.7365054713587477],[124,-2,72,-0.7362157428069098],[124,-2,73,-0.7359284862707051],[124,-2,74,-0.7356437065732699],[124,-2,75,-0.7353614084397834],[124,-2,76,-0.7350815964970294],[124,-2,77,-0.734804275272963],[124,-2,78,-0.734529449196278],[124,-2,79,-0.7342571225959713],[124,-1,64,-0.7387316544999311],[124,-1,65,-0.7384243615885264],[124,-1,66,-0.738119504031963],[124,-1,67,-0.7378170873324182],[124,-1,68,-0.7375171168971717],[124,-1,69,-0.7372195980381779],[124,-1,70,-0.736924535971623],[124,-1,71,-0.7366319358174861],[124,-1,72,-0.736341802599099],[124,-1,73,-0.7360541412427207],[124,-1,74,-0.7357689565770831],[124,-1,75,-0.7354862533329674],[124,-1,76,-0.7352060361427672],[124,-1,77,-0.7349283095400544],[124,-1,78,-0.7346530779591463],[124,-1,79,-0.7343803457346707],[124,0,64,-0.7388611177977169],[124,0,65,-0.7385534221987691],[124,0,66,-0.7382481617594961],[124,0,67,-0.7379453419876046],[124,0,68,-0.7376449682959119],[124,0,69,-0.7373470460019174],[124,0,70,-0.7370515803273612],[124,0,71,-0.7367585763977829],[124,0,72,-0.7364680392420834],[124,0,73,-0.736179973792098],[124,0,74,-0.7358943848821425],[124,0,75,-0.7356112772485893],[124,0,76,-0.7353306555294308],[124,0,77,-0.7350525242638446],[124,0,78,-0.7347768878917615],[124,0,79,-0.7345037507534293],[124,1,64,-0.7389907520890251],[124,1,65,-0.7386826545535757],[124,1,66,-0.7383769919800305],[124,1,67,-0.7380737698816134],[124,1,68,-0.7377729936766673],[124,1,69,-0.7374746686882256],[124,1,70,-0.7371788001435693],[124,1,71,-0.7368853931737882],[124,1,72,-0.7365944528133397],[124,1,73,-0.7363059839996248],[124,1,74,-0.7360199915725313],[124,1,75,-0.7357364802740121],[124,1,76,-0.7354554547476475],[124,1,77,-0.7351769195382097],[124,1,78,-0.7349008790912327],[124,1,79,-0.7346273377525733],[124,2,64,-0.7391205574215944],[124,2,65,-0.7388120587041129],[124,2,66,-0.7385059947481459],[124,2,67,-0.7382023710724229],[124,2,68,-0.7379011931007999],[124,2,69,-0.7376024661618322],[124,2,70,-0.7373061954883304],[124,2,71,-0.7370123862169222],[124,2,72,-0.7367210433876108],[124,2,73,-0.7364321719433505],[124,2,74,-0.7361457767295908],[124,2,75,-0.7358618624938534],[124,2,76,-0.7355804338852955],[124,2,77,-0.7353014954542734],[124,2,78,-0.7350250516519125],[124,2,79,-0.7347511068296689],[124,3,64,-0.7392505338404493],[124,3,65,-0.7389416346988289],[124,3,66,-0.7386351701156997],[124,3,67,-0.7383311456152841],[124,3,68,-0.7380295666269396],[124,3,69,-0.7377304384847311],[124,3,70,-0.7374337664269872],[124,3,71,-0.7371395555958613],[124,3,72,-0.7368478110368912],[124,3,73,-0.736558537698573],[124,3,74,-0.7362717404319066],[124,3,75,-0.7359874239899711],[124,3,76,-0.7357055930274892],[124,3,77,-0.7354262521003909],[124,3,78,-0.735149405665382],[124,3,79,-0.7348750580795075],[124,4,64,-0.7393806813879535],[124,4,65,-0.7390713825835068],[124,4,66,-0.7387645181318796],[124,4,67,-0.7384600935627745],[124,4,68,-0.7381581143110384],[124,4,69,-0.7378585857162339],[124,4,70,-0.7375615130221955],[124,4,71,-0.7372669013765912],[124,4,72,-0.7369747558304809],[124,4,73,-0.7366850813378913],[124,4,74,-0.736397882755361],[124,4,75,-0.7361131648415157],[124,4,76,-0.7358309322566325],[124,4,77,-0.7355511895622036],[124,4,78,-0.7352739412205048],[124,4,79,-0.7349991915941586],[124,5,64,-0.7395110001037887],[124,5,65,-0.739201302401243],[124,5,66,-0.7388940388431815],[124,5,67,-0.7385892149647751],[124,5,68,-0.7382868362063477],[124,5,69,-0.7379869079129474],[124,5,70,-0.7376894353339029],[124,5,71,-0.7373944236223843],[124,5,72,-0.7371018778349625],[124,5,73,-0.7368118029311831],[124,5,74,-0.7365242037731117],[124,5,75,-0.7362390851249093],[124,5,76,-0.7359564516523964],[124,5,77,-0.7356763079226163],[124,5,78,-0.7353986584034036],[124,5,79,-0.7351235074629477],[124,6,64,-0.7396414900249773],[124,6,65,-0.7393313941924702],[124,6,66,-0.7390237322934337],[124,6,67,-0.738718509868495],[124,6,68,-0.7384157323634424],[124,6,69,-0.7381154051287976],[124,6,70,-0.7378175334193712],[124,6,71,-0.7375221223938238],[124,6,72,-0.7372291771142251],[124,6,73,-0.7369387025456282],[124,6,74,-0.7366507035556142],[124,6,75,-0.7363651849138683],[124,6,76,-0.7360821512917424],[124,6,77,-0.7358016072618201],[124,6,78,-0.7355235572974841],[124,6,79,-0.7352480057724796],[124,7,64,-0.7397721511858603],[124,7,65,-0.7394616579949348],[124,7,66,-0.7391535985237738],[124,7,67,-0.738847978318448],[124,7,68,-0.738544802830198],[124,7,69,-0.7382440774150065],[124,7,70,-0.7379458073331542],[124,7,71,-0.7376499977487803],[124,7,72,-0.7373566537294414],[124,7,73,-0.7370657802456863],[124,7,74,-0.7367773821706],[124,7,75,-0.7364914642793802],[124,7,76,-0.7362080312488994],[124,7,77,-0.7359270876572701],[124,7,78,-0.735648637983412],[124,7,79,-0.735372686606615],[124,8,64,-0.7399029836181514],[124,8,65,-0.7395920938437517],[124,8,66,-0.739283637572703],[124,8,67,-0.7389776203565069],[124,8,68,-0.7386740476518443],[124,8,69,-0.7383729248201467],[124,8,70,-0.7380742571271521],[124,8,71,-0.7377780497424664],[124,8,72,-0.7374843077391215],[124,8,73,-0.7371930360931502],[124,8,74,-0.7369042396831296],[124,8,75,-0.7366179232897583],[124,8,76,-0.736334091595418],[124,8,77,-0.7360527491837389],[124,8,78,-0.7357739005391665],[124,8,79,-0.735497550046525],[124,9,64,-0.7400339873509223],[124,9,65,-0.7397227017713888],[124,9,66,-0.739413849476071],[124,9,67,-0.7391074360218891],[124,9,68,-0.7388034668709513],[124,9,69,-0.7385019473901256],[124,9,70,-0.7382028828505957],[124,9,71,-0.7379062784274216],[124,9,72,-0.7376121391990987],[124,9,73,-0.7373204701471314],[124,9,74,-0.737031276155578],[124,9,75,-0.7367445620106259],[124,9,76,-0.7364603324001551],[124,9,77,-0.7361785919133017],[124,9,78,-0.735899345040026],[124,9,79,-0.7356225961706753],[124,10,64,-0.7401651624105879],[124,10,65,-0.7398534818076525],[124,10,66,-0.7395442342670617],[124,10,67,-0.7392374253511412],[124,10,68,-0.7389330605274139],[124,10,69,-0.738631145168172],[124,10,70,-0.7383316845500323],[124,10,71,-0.7380346838534972],[124,10,72,-0.7377401481625132],[124,10,73,-0.737448082464045],[124,10,74,-0.7371584916476196],[124,10,75,-0.7368713805049022],[124,10,76,-0.736586753729259],[124,10,77,-0.7363046159153211],[124,10,78,-0.7360249715585523],[124,10,79,-0.7357478250548116],[124,11,64,-0.74029650882096],[124,11,65,-0.7399844339797421],[124,11,66,-0.7396747919762471],[124,11,67,-0.739367588378193],[124,11,68,-0.7390628286585056],[124,11,69,-0.7387605181948883],[124,11,70,-0.7384606622693791],[124,11,71,-0.7381632660679103],[124,11,72,-0.7378683346798675],[124,11,73,-0.7375758730976634],[124,11,74,-0.7372858862162822],[124,11,75,-0.7369983788328551],[124,11,76,-0.7367133556462233],[124,11,77,-0.7364308212565011],[124,11,78,-0.7361507801646444],[124,11,79,-0.7358732367720133],[124,12,64,-0.7404280266032255],[124,12,65,-0.740115558312227],[124,12,66,-0.7398055226315641],[124,12,67,-0.7394979251343357],[124,12,68,-0.7391927712988565],[124,12,69,-0.7388900665082296],[124,12,70,-0.7385898160499011],[124,12,71,-0.7382920251152212],[124,12,72,-0.7379966987990024],[124,12,73,-0.7377038420990937],[124,12,74,-0.7374134599159241],[124,12,75,-0.7371255570520796],[124,12,76,-0.7368401382118639],[124,12,77,-0.736557208000864],[124,12,78,-0.7362767709255162],[124,12,79,-0.7359988313926703],[124,13,64,-0.7405597157759695],[124,13,65,-0.7402468548270695],[124,13,66,-0.7399364262583391],[124,13,67,-0.7396284356482442],[124,13,68,-0.7393228884804768],[124,13,69,-0.739019790143526],[124,13,70,-0.7387191459302342],[124,13,71,-0.738420961037357],[124,13,72,-0.7381252405651216],[124,13,73,-0.737831989516801],[124,13,74,-0.7375412127982577],[124,13,75,-0.7372529152175198],[124,13,76,-0.7369671014843429],[124,13,77,-0.736683776209774],[124,13,78,-0.7364029439057194],[124,13,79,-0.7361246089845066],[124,14,64,-0.740691576355153],[124,14,65,-0.7403783235436038],[124,14,66,-0.7400675028792647],[124,14,67,-0.7397591199459557],[124,14,68,-0.7394531802327333],[124,14,69,-0.7391496891334602],[124,14,70,-0.7388486519463625],[124,14,71,-0.7385500738735884],[124,14,72,-0.7382539600207679],[124,14,73,-0.7379603153965858],[124,14,74,-0.737669144912326],[124,14,75,-0.7373804533814472],[124,14,76,-0.7370942455191444],[124,14,77,-0.736810525941914],[124,14,78,-0.73652929916712],[124,14,79,-0.736250569612557],[124,15,64,-0.7408236083541668],[124,15,65,-0.7405099644785886],[124,15,66,-0.7401987525144537],[124,15,67,-0.7398899780509232],[124,15,68,-0.7395836465824045],[124,15,69,-0.739279763508122],[124,15,70,-0.738978334131672],[124,15,71,-0.738679363660584],[124,15,72,-0.7383828572058777],[124,15,73,-0.7380888197816379],[124,15,74,-0.7377972563045575],[124,15,75,-0.7375081715935138],[124,15,76,-0.7372215703691302],[124,15,77,-0.7369374572533398],[124,15,78,-0.7366558367689534],[124,15,79,-0.7363767133392214],[124,16,64,-0.7409558117838168],[124,16,65,-0.7406417776461937],[124,16,66,-0.7403301751814249],[124,16,67,-0.740021009984],[124,16,68,-0.739714287553665],[124,16,69,-0.7394100132949923],[124,16,70,-0.7391081925169367],[124,16,71,-0.7388088304323954],[124,16,72,-0.7385119321577662],[124,16,73,-0.7382175027125211],[124,16,74,-0.7379255470187503],[124,16,75,-0.7376360699007378],[124,16,76,-0.7373490760845229],[124,16,77,-0.7370645701974647],[124,16,78,-0.7367825567678085],[124,16,79,-0.736503040224249],[124,17,64,-0.7410881866523089],[124,17,65,-0.7407737630579831],[124,17,66,-0.7404617708950871],[124,17,67,-0.7401522157634259],[124,17,68,-0.7398451031680706],[124,17,69,-0.7395404385189294],[124,17,70,-0.7392382271303022],[124,17,71,-0.7389384742204418],[124,17,72,-0.7386411849111114],[124,17,73,-0.7383463642271584],[124,17,74,-0.7380540170960576],[124,17,75,-0.7377641483474877],[124,17,76,-0.7374767627128923],[124,17,77,-0.7371918648250442],[124,17,78,-0.7369094592176122],[124,17,79,-0.7366295503247235],[124,18,64,-0.7412207329653033],[124,18,65,-0.7409059207229712],[124,18,66,-0.7405935396677945],[124,18,67,-0.7402835954048808],[124,18,68,-0.7399760934446129],[124,18,69,-0.7396710392022218],[124,18,70,-0.7393684379973404],[124,18,71,-0.7390682950535643],[124,18,72,-0.7387706154980093],[124,18,73,-0.7384754043608854],[124,18,74,-0.7381826665750408],[124,18,75,-0.7378924069755363],[124,18,76,-0.7376046302992079],[124,18,77,-0.73731934118423],[124,18,78,-0.7370365441696837],[124,18,79,-0.7367562436951169],[124,19,64,-0.7413534507259002],[124,19,65,-0.7410382506476066],[124,19,66,-0.7407254815093308],[124,19,67,-0.7404151489214689],[124,19,68,-0.7401072583997033],[124,19,69,-0.7398018153645742],[124,19,70,-0.7394988251410348],[124,19,71,-0.7391982929580104],[124,19,72,-0.7389002239479576],[124,19,73,-0.7386046231464365],[124,19,74,-0.7383114954916555],[124,19,75,-0.738020845824046],[124,19,76,-0.7377326788858245],[124,19,77,-0.7374469993205554],[124,19,78,-0.7371638116727193],[124,19,79,-0.7368831203872741],[124,20,64,-0.7414863399346233],[124,20,65,-0.7411707528357574],[124,20,66,-0.7408575964268942],[124,20,67,-0.740546876323705],[124,20,68,-0.7402385980471585],[124,20,69,-0.7399327670230917],[124,20,70,-0.7396293885817644],[124,20,71,-0.7393284679574196],[124,20,72,-0.7390300102878412],[124,20,73,-0.7387340206139277],[124,20,74,-0.7384405038792352],[124,20,75,-0.7381494649295535],[124,20,76,-0.7378609085124668],[124,20,77,-0.7375748392769184],[124,20,78,-0.7372912617727766],[124,20,79,-0.7370101804503973],[124,21,64,-0.7416194005894756],[124,21,65,-0.7413034272887657],[124,21,66,-0.7409898844251519],[124,21,67,-0.7406787776195678],[124,21,68,-0.7403701123982552],[124,21,69,-0.7400638941923342],[124,21,70,-0.7397601283373589],[124,21,71,-0.7394588200728767],[124,21,72,-0.7391599745419867],[124,21,73,-0.7388635967909124],[124,21,74,-0.738569691768546],[124,21,75,-0.7382782643260228],[124,21,76,-0.7379893192162836],[124,21,77,-0.7377028610936374],[124,21,78,-0.7374188945133289],[124,21,79,-0.7371374239311004],[124,22,64,-0.7417526326859157],[124,22,65,-0.7414362740054243],[124,22,66,-0.7411223455062175],[124,22,67,-0.7408108528144777],[124,22,68,-0.7405018014617062],[124,22,69,-0.7401951968842936],[124,22,70,-0.739891044423075],[124,22,71,-0.7395893493228894],[124,22,72,-0.7392901167321382],[124,22,73,-0.7389933517023578],[124,22,74,-0.7386990591877634],[124,22,75,-0.7384072440448239],[124,22,76,-0.7381179110318241],[124,22,77,-0.7378310648084271],[124,22,78,-0.737546709935242],[124,22,79,-0.7372648508733857],[124,23,64,-0.741886036216882],[124,23,65,-0.7415692929820008],[124,23,66,-0.741254979669674],[124,23,67,-0.7409431019113194],[124,23,68,-0.7406336652436846],[124,23,69,-0.7403266751084171],[124,23,70,-0.7400221368516201],[124,23,71,-0.7397200557234115],[124,23,72,-0.7394204368774819],[124,23,73,-0.7391232853706681],[124,23,74,-0.7388286061624956],[124,23,75,-0.7385364041147549],[124,23,76,-0.738246683991062],[124,23,77,-0.7379594504564224],[124,23,78,-0.7376747080767976],[124,23,79,-0.737392461318667],[124,24,64,-0.742019611172769],[124,24,65,-0.7417024842122141],[124,24,66,-0.7413877869125511],[124,24,67,-0.7410755249104198],[124,24,68,-0.7407657037478003],[124,24,69,-0.7404583288715842],[124,24,70,-0.7401534056331295],[124,24,71,-0.7398509392878198],[124,24,72,-0.7395509349946224],[124,24,73,-0.7392533978156611],[124,24,74,-0.7389583327157602],[124,24,75,-0.7386657445620184],[124,24,76,-0.7383756381233714],[124,24,77,-0.7380880180701543],[124,24,78,-0.7378028889736694],[124,24,79,-0.7375202553057465],[124,25,64,-0.7421533575414827],[124,25,65,-0.7418358476872896],[124,25,66,-0.7415207672293801],[124,25,67,-0.7412081218096019],[124,25,68,-0.740897916975155],[124,25,69,-0.7405901581781612],[124,25,70,-0.7402848507752203],[124,25,71,-0.7399820000269685],[124,25,72,-0.7396816110976369],[124,25,73,-0.7393836890546239],[124,25,74,-0.739088238868039],[124,25,75,-0.7387952654102775],[124,25,76,-0.7385047734555821],[124,25,77,-0.7382167676796054],[124,25,78,-0.737931252658978],[124,25,79,-0.737648232870869],[124,26,64,-0.7422872753084249],[124,26,65,-0.7419693833959431],[124,26,66,-0.7416539206121775],[124,26,67,-0.74134089260417],[124,26,68,-0.7410303049243263],[124,26,69,-0.7407221630299858],[124,26,70,-0.7404164722829765],[124,26,71,-0.740113237949174],[124,26,72,-0.7398124651980604],[124,26,73,-0.7395141591022957],[124,26,74,-0.7392183246372622],[124,26,75,-0.738924966680639],[124,26,76,-0.7386340900119631],[124,26,77,-0.7383456993121932],[124,26,78,-0.7380597991632755],[124,26,79,-0.7377763940477062],[124,27,64,-0.7424213644564776],[124,27,65,-0.7421030913243664],[124,27,66,-0.7417872470504308],[124,27,67,-0.7414738372868938],[124,27,68,-0.741162867591353],[124,27,69,-0.7408543434263518],[124,27,70,-0.7405482701589332],[124,27,71,-0.7402446530601993],[124,27,72,-0.7399434973048696],[124,27,73,-0.7396448079708533],[124,27,74,-0.7393485900387927],[124,27,75,-0.7390548483916377],[124,27,76,-0.738763587814208],[124,27,77,-0.738474812992755],[124,27,78,-0.738188528514529],[124,27,79,-0.737904738867341],[124,28,64,-0.7425556249660583],[124,28,65,-0.7422369714562811],[124,28,66,-0.7419207465311526],[124,28,67,-0.7416069558480631],[124,28,68,-0.741295604969789],[124,28,69,-0.7409866993640635],[124,28,70,-0.7406802444031313],[124,28,71,-0.7403762453633081],[124,28,72,-0.740074707424538],[124,28,73,-0.7397756356699657],[124,28,74,-0.739479035085481],[124,28,75,-0.7391849105592924],[124,28,76,-0.7388932668814887],[124,28,77,-0.7386041087436024],[124,28,78,-0.7383174407381756],[124,28,79,-0.7380332673583223],[124,29,64,-0.7426900568150969],[124,29,65,-0.742371023772916],[124,29,66,-0.7420544190388578],[124,29,67,-0.7417402482754654],[124,29,68,-0.7414285170506802],[124,29,69,-0.7411192308374124],[124,29,70,-0.7408123950130947],[124,29,71,-0.7405080148592427],[124,29,72,-0.7402060955610119],[124,29,73,-0.7399066422067703],[124,29,74,-0.7396096597876416],[124,29,75,-0.7393151531970802],[124,29,76,-0.739023127230432],[124,29,77,-0.7387335865844977],[124,29,78,-0.7384465358570993],[124,29,79,-0.738161979546641],[124,30,64,-0.7428246599790587],[124,30,65,-0.7425052482530307],[124,30,66,-0.7421882645555864],[124,30,67,-0.7418737145544083],[124,30,68,-0.7415616038225888],[124,30,69,-0.741251937838201],[124,30,70,-0.7409447219838529],[124,30,71,-0.7406399615462462],[124,30,72,-0.7403376617157347],[124,30,73,-0.7400378275858963],[124,30,74,-0.7397404641530764],[124,30,75,-0.739445576315962],[124,30,76,-0.7391531688751436],[124,30,77,-0.7388632465326779],[124,30,78,-0.7385758138916535],[124,30,79,-0.7382908754557536],[124,31,64,-0.7429594344309215],[124,31,65,-0.742639644872892],[124,31,66,-0.7423222830608813],[124,31,67,-0.7420073546676969],[124,31,68,-0.7416948652715689],[124,31,69,-0.7413848203557195],[124,31,70,-0.7410772253079181],[124,31,71,-0.7407720854200395],[124,31,72,-0.7404694058876227],[124,31,73,-0.7401691918094419],[124,31,74,-0.7398714481870512],[124,31,75,-0.7395761799243578],[124,31,76,-0.7392833918271839],[124,31,77,-0.7389930886028293],[124,31,78,-0.7387052748596377],[124,31,79,-0.7384199551065582],[124,32,64,-0.7430943801412307],[124,32,65,-0.7427742136063291],[124,32,66,-0.742456474531842],[124,32,67,-0.7421411685956885],[124,32,68,-0.7418283013812218],[124,32,69,-0.7415178783768002],[124,32,70,-0.74120990497534],[124,32,71,-0.7409043864738765],[124,32,72,-0.7406013280731198],[124,32,73,-0.7403007348770281],[124,32,74,-0.7400026118923505],[124,32,75,-0.7397069640282017],[124,32,76,-0.7394137960956229],[124,32,77,-0.7391231128071444],[124,32,78,-0.7388349187763523],[124,32,79,-0.7385492185174499],[124,33,64,-0.7432294970780835],[124,33,65,-0.7429089544247177],[124,33,66,-0.7425908389431101],[124,33,67,-0.7422751563162768],[124,33,68,-0.7419619121326807],[124,33,69,-0.7416511118858017],[124,33,70,-0.7413427609736903],[124,33,71,-0.7410368646985279],[124,33,72,-0.7407334282661828],[124,33,73,-0.7404324567857835],[124,33,74,-0.7401339552692617],[124,33,75,-0.7398379286309262],[124,33,76,-0.7395443816870244],[124,33,77,-0.7392533191553047],[124,33,78,-0.738964745654583],[124,33,79,-0.7386786657043041],[124,34,64,-0.7433647852071131],[124,34,65,-0.7430438672969648],[124,34,66,-0.7427253762668529],[124,34,67,-0.7424093178048765],[124,34,68,-0.7420956975045944],[124,34,69,-0.741784520864594],[124,34,70,-0.7414757932880465],[124,34,71,-0.7411695200822656],[124,34,72,-0.7408657064582644],[124,34,73,-0.7405643575303289],[124,34,74,-0.7402654783155593],[124,34,75,-0.7399690737334462],[124,34,76,-0.7396751486054303],[124,34,77,-0.739383707654465],[124,34,78,-0.7390947555045839],[124,34,79,-0.7388082966804607],[124,35,64,-0.7435002444915447],[124,35,65,-0.7431789521895635],[124,35,66,-0.7428600864728188],[124,35,67,-0.7425436530344784],[124,35,68,-0.7422296574731827],[124,35,69,-0.7419181052926132],[124,35,70,-0.7416090019010472],[124,35,71,-0.7413023526109176],[124,35,72,-0.7409981626383692],[124,35,73,-0.740696437102831],[124,35,74,-0.7403971810265598],[124,35,75,-0.7401003993342141],[124,35,76,-0.739806096852415],[124,35,77,-0.7395142783093087],[124,35,78,-0.7392249483341333],[124,35,79,-0.7389381114567792],[124,36,64,-0.7436358748921708],[124,36,65,-0.7433142090665696],[124,36,66,-0.7429949695283136],[124,36,67,-0.7426781619756255],[124,36,68,-0.7423637920122128],[124,36,69,-0.7420518651468369],[124,36,70,-0.7417423867928683],[124,36,71,-0.7414353622678447],[124,36,72,-0.7411307967930287],[124,36,73,-0.7408286954929799],[124,36,74,-0.7405290633950977],[124,36,75,-0.7402319054291956],[124,36,76,-0.7399372264270623],[124,36,77,-0.7396450311220236],[124,36,78,-0.7393553241485097],[124,36,79,-0.7390681100416153],[124,37,64,-0.7437716763673756],[124,37,65,-0.7434496378896251],[124,37,66,-0.7431300253982246],[124,37,67,-0.7428128445964369],[124,37,68,-0.7424981010930227],[124,37,69,-0.7421858004018098],[124,37,70,-0.7418759479412469],[124,37,71,-0.7415685490339636],[124,37,72,-0.7412636089063267],[124,37,73,-0.7409611326880123],[124,37,74,-0.7406611254115496],[124,37,75,-0.7403635920118938],[124,37,76,-0.7400685373259881],[124,37,77,-0.7397759660923253],[124,37,78,-0.7394858829505149],[124,37,79,-0.7391982924408429],[124,38,64,-0.7439076488731118],[124,38,65,-0.7435852386179351],[124,38,66,-0.7432652540449962],[124,38,67,-0.742947700862584],[124,38,68,-0.742632584684498],[124,38,69,-0.7423199110296177],[124,38,70,-0.7420096853214572],[124,38,71,-0.7417019128877232],[124,38,72,-0.7413965989598734],[124,38,73,-0.7410937486726872],[124,38,74,-0.7407933670638096],[124,38,75,-0.7404954590733247],[124,38,76,-0.7402000295433171],[124,38,77,-0.7399070832174334],[124,38,78,-0.7396166247404498],[124,38,79,-0.7393286586578312],[124,39,64,-0.7440437923629545],[124,39,65,-0.743721011208322],[124,39,66,-0.7434006554286855],[124,39,67,-0.7430827307373455],[124,39,68,-0.742767242753126],[124,39,69,-0.7424541969999444],[124,39,70,-0.7421435989063655],[124,39,71,-0.74183545380516],[124,39,72,-0.7415297669328621],[124,39,73,-0.7412265434293412],[124,39,74,-0.7409257883373448],[124,39,75,-0.7406275066020727],[124,39,76,-0.7403317030707373],[124,39,77,-0.7400383824921266],[124,39,78,-0.73974754951617],[124,39,79,-0.7394592086934992],[124,40,64,-0.7441801067880869],[124,40,65,-0.7438569556152108],[124,40,66,-0.7435362295069468],[124,40,67,-0.7432179341815921],[124,40,68,-0.7429020752629812],[124,40,69,-0.742588658280055],[124,40,70,-0.742277688666415],[124,40,71,-0.7419691717598818],[124,40,72,-0.7416631128020525],[124,40,73,-0.7413595169378729],[124,40,74,-0.7410583892151796],[124,40,75,-0.7407597345842742],[124,40,76,-0.7404635578974845],[124,40,77,-0.7401698639087263],[124,40,78,-0.7398786572730699],[124,40,79,-0.7395899425463005],[124,41,64,-0.7443165920972833],[124,41,65,-0.7439930717906127],[124,41,66,-0.743671976235015],[124,41,67,-0.7433533111537702],[124,41,68,-0.7430370821757085],[124,41,69,-0.7427232948347801],[124,41,70,-0.7424119545696088],[124,41,71,-0.7421030667230517],[124,41,72,-0.741796636541755],[124,41,73,-0.7414926691757266],[124,41,74,-0.7411911696778787],[124,41,75,-0.740892143003602],[124,41,76,-0.7405955940103257],[124,41,77,-0.7403015274570808],[124,41,78,-0.7400099480040654],[124,41,79,-0.7397208602122054],[124,42,64,-0.7444532482369656],[124,42,65,-0.7441293596841805],[124,42,66,-0.7438078955657618],[124,42,67,-0.7434888616099573],[124,42,68,-0.7431722634505786],[124,42,69,-0.7428581066265708],[124,42,70,-0.7425463965815664],[124,42,71,-0.7422371386634441],[124,42,72,-0.7419303381238854],[124,42,73,-0.741626000117947],[124,42,74,-0.7413241297036033],[124,42,75,-0.7410247318413198],[124,42,76,-0.7407278113936147],[124,42,77,-0.7404333731246204],[124,42,78,-0.7401414216996499],[124,42,79,-0.7398519616847573],[124,43,64,-0.7445900751511784],[124,43,65,-0.7442658192431847],[124,43,66,-0.743943987449671],[124,43,67,-0.7436245855038381],[124,43,68,-0.7433076190444644],[124,43,69,-0.7429930936154756],[124,43,70,-0.7426810146654985],[124,43,71,-0.7423713875474196],[124,43,72,-0.7420642175179416],[124,43,73,-0.7417595097371563],[124,43,74,-0.7414572692680862],[124,43,75,-0.7411575010762588],[124,43,76,-0.7408602100292675],[124,43,77,-0.740565400896333],[124,43,78,-0.7402730783478704],[124,43,79,-0.7399832469550487],[124,44,64,-0.7447270727816133],[124,44,65,-0.7444024504125376],[124,44,66,-0.7440802518348628],[124,44,67,-0.7437604827867281],[124,44,68,-0.7434431489118645],[124,44,69,-0.7431282557591634],[124,44,70,-0.7428158087822316],[124,44,71,-0.7425058133389495],[124,44,72,-0.742198274691027],[124,44,73,-0.7418931980035768],[124,44,74,-0.7415905883446563],[124,44,75,-0.7412904506848411],[124,44,76,-0.7409927898967863],[124,44,77,-0.7406976107547881],[124,44,78,-0.7404049179343501],[124,44,79,-0.7401147160117436],[124,45,64,-0.7448642410675855],[124,45,65,-0.744539253134769],[124,45,66,-0.7442166886670696],[124,45,67,-0.7438965534075501],[124,45,68,-0.7435788530048788],[124,45,69,-0.7432635930128992],[124,45,70,-0.7429507788901835],[124,45,71,-0.7426404159995911],[124,45,72,-0.7423325096078257],[124,45,73,-0.7420270648850071],[124,45,74,-0.7417240869042134],[124,45,75,-0.741423580641055],[124,45,76,-0.741125550973235],[124,45,77,-0.740830002680112],[124,45,78,-0.7405369404422648],[124,45,79,-0.7402463688410539],[124,46,64,-0.745001579946088],[124,46,65,-0.7446762273500819],[124,46,66,-0.7443532978896916],[124,46,67,-0.744032797312889],[124,46,68,-0.743714731273265],[124,46,69,-0.7433991053296004],[124,46,70,-0.7430859249454184],[124,46,71,-0.7427751954885438],[124,46,72,-0.7424669222306592],[124,46,73,-0.7421611103468776],[124,46,74,-0.7418577649152843],[124,46,75,-0.7415568909165106],[124,46,76,-0.7412584932332945],[124,46,77,-0.740962576650043],[124,46,78,-0.7406691458523975],[124,46,79,-0.7403782054267947],[124,47,64,-0.7451390893517766],[124,47,65,-0.744813372996336],[124,47,66,-0.7444900794437808],[124,47,67,-0.744169214446976],[124,47,68,-0.7438507836644215],[124,47,69,-0.7435347926598201],[124,47,70,-0.7432212469016318],[124,47,71,-0.7429101517626321],[124,47,72,-0.7426015125194689],[124,47,73,-0.7422953343522343],[124,47,74,-0.7419916223440064],[124,47,75,-0.7416903814804241],[124,47,76,-0.7413916166492467],[124,47,77,-0.7410953326399163],[124,47,78,-0.7408015341431233],[124,47,79,-0.7405102257503677],[124,48,64,-0.745276769216954],[124,48,65,-0.7449506900090327],[124,48,66,-0.7446270332680243],[124,48,67,-0.7443058047516729],[124,48,68,-0.7439870101233717],[124,48,69,-0.7436706549517309],[124,48,70,-0.743356744710133],[124,48,71,-0.7430452847762901],[124,48,72,-0.7427362804318007],[124,48,73,-0.7424297368617218],[124,48,74,-0.7421256591541111],[124,48,75,-0.7418240522996007],[124,48,76,-0.7415249211909578],[124,48,77,-0.7412282706226461],[124,48,78,-0.7409341052903917],[124,48,79,-0.7406424297907446],[124,49,64,-0.7454146194716245],[124,49,65,-0.7450881783213695],[124,49,66,-0.7447641592988009],[124,49,67,-0.744442568166527],[124,49,68,-0.744123410592819],[124,49,69,-0.7438066921511808],[124,49,70,-0.7434924183199019],[124,49,71,-0.7431805944816166],[124,49,72,-0.7428712259228599],[124,49,73,-0.74256431783364],[124,49,74,-0.7422598753069796],[124,49,75,-0.7419579033384907],[124,49,76,-0.741658406825934],[124,49,77,-0.7413613905687817],[124,49,78,-0.7410668592677828],[124,49,79,-0.7407748175245232],[124,50,64,-0.745552640043479],[124,50,65,-0.7452258378642247],[124,50,66,-0.7449014574701645],[124,50,67,-0.7445795046287552],[124,50,68,-0.744259985013132],[124,50,69,-0.7439429042016765],[124,50,70,-0.7436282676775716],[124,50,71,-0.743316080828359],[124,50,72,-0.7430063489454959],[124,50,73,-0.7426990772239269],[124,50,74,-0.7423942707616267],[124,50,75,-0.7420919345591722],[124,50,76,-0.7417920735193051],[124,50,77,-0.7414946924464918],[124,50,78,-0.7411997960464903],[124,50,79,-0.7409073889259103],[124,51,64,-0.7456908308578778],[124,51,65,-0.7453636685661409],[124,51,66,-0.7450389277138274],[124,51,67,-0.7447166140732281],[124,51,68,-0.7443967333223265],[124,51,69,-0.7440792910443678],[124,51,70,-0.7437642927274131],[124,51,71,-0.7434517437638968],[124,51,72,-0.7431416494501843],[124,51,73,-0.7428340149861428],[124,51,74,-0.7425288454746835],[124,51,75,-0.7422261459213358],[124,51,76,-0.7419259212338076],[124,51,77,-0.7416281762215463],[124,51,78,-0.7413329155953057],[124,51,79,-0.7410401439667054],[124,52,64,-0.7458291918379071],[124,52,65,-0.7455016703533806],[124,52,66,-0.7451765699592168],[124,52,67,-0.7448538964325251],[124,52,68,-0.7445336554561225],[124,52,69,-0.7442158526181026],[124,52,70,-0.74390049341139],[124,52,71,-0.7435875832332978],[124,52,72,-0.7432771273850842],[124,52,73,-0.742969131071525],[124,52,74,-0.7426635994004543],[124,52,75,-0.7423605373823396],[124,52,76,-0.742059949929841],[124,52,77,-0.7417618418573737],[124,52,78,-0.7414662178806732],[124,52,79,-0.7411730826163558],[124,53,64,-0.7459677229043544],[124,53,65,-0.7456398431499023],[124,53,66,-0.7453143841334502],[124,53,67,-0.7449913516369107],[124,53,68,-0.7446707513479192],[124,53,69,-0.744352588859403],[124,53,70,-0.7440368696691352],[124,53,71,-0.7437235991792928],[124,53,72,-0.7434127826960129],[124,53,73,-0.7431044254289646],[124,53,74,-0.7427985324908917],[124,53,75,-0.7424951088971847],[124,53,76,-0.7421941595654431],[124,53,77,-0.7418956893150352],[124,53,78,-0.7415997028666653],[124,53,79,-0.7413062048419332],[124,54,64,-0.7461064239757328],[124,54,65,-0.7457781868773841],[124,54,66,-0.7454523701613591],[124,54,67,-0.7451289796143579],[124,54,68,-0.7448080209288193],[124,54,69,-0.7444894997024889],[124,54,70,-0.7441734214379738],[124,54,71,-0.7438597915423],[124,54,72,-0.743548615326469],[124,54,73,-0.7432398980050293],[124,54,74,-0.7429336446956192],[124,54,75,-0.7426298604185392],[124,54,76,-0.742328550096313],[124,54,77,-0.7420297185532494],[124,54,78,-0.7417333705150071],[124,54,79,-0.7414395106081559],[124,55,64,-0.7462452949682558],[124,55,65,-0.7459167014551996],[124,55,66,-0.7455905279654648],[124,55,67,-0.7452667802905237],[124,55,68,-0.7449454641276034],[124,55,69,-0.7446265850792532],[124,55,70,-0.7443101486528987],[124,55,71,-0.7439961602604003],[124,55,72,-0.7436846252176093],[124,55,73,-0.7433755487439391],[124,55,74,-0.743068935961908],[124,55,75,-0.7427647918967124],[124,55,76,-0.7424631214757869],[124,55,77,-0.742163929528366],[124,55,78,-0.7418672207850499],[124,55,79,-0.7415729998773646],[124,56,64,-0.7463843357958941],[124,56,65,-0.7460553868004733],[124,56,66,-0.7457288574660339],[124,56,67,-0.7454047535888055],[124,56,68,-0.7450830808707878],[124,56,69,-0.7447638449193184],[124,56,70,-0.7444470512466268],[124,56,71,-0.7441327052693931],[124,56,72,-0.7438208123083033],[124,56,73,-0.7435113775876216],[124,56,74,-0.7432044062347322],[124,56,75,-0.7428999032797126],[124,56,76,-0.742597873654894],[124,56,77,-0.7422983221944236],[124,56,78,-0.7420012536338287],[124,56,79,-0.7417066726095782],[124,57,64,-0.746523546370359],[124,57,65,-0.7461942428280649],[124,57,66,-0.7458673585810628],[124,57,67,-0.7455428994303243],[124,57,68,-0.7452208710826062],[124,57,69,-0.7449012791500194],[124,57,70,-0.7445841291495825],[124,57,71,-0.7442694265027798],[124,57,72,-0.743957176535118],[124,57,73,-0.7436473844756968],[124,57,74,-0.7433400554567521],[124,57,75,-0.7430351945132284],[124,57,76,-0.7427328065823401],[124,57,77,-0.7424328965031317],[124,57,78,-0.7421354690160449],[124,57,79,-0.7418405287624774],[124,58,64,-0.7466629266010856],[124,58,65,-0.746333269450552],[124,58,66,-0.7460060312262602],[124,58,67,-0.745681217733908],[124,58,68,-0.7453588346849942],[124,58,69,-0.7450388876963876],[124,58,70,-0.7447213822898806],[124,58,71,-0.7444063238917473],[124,58,72,-0.7440937178322996],[124,58,73,-0.7437835693454589],[124,58,74,-0.7434758835682976],[124,58,75,-0.7431706655406137],[124,58,76,-0.7428679202044894],[124,58,77,-0.7425676524038541],[124,58,78,-0.7422698668840487],[124,58,79,-0.7419745682913867],[124,59,64,-0.7468024763952894],[124,59,65,-0.7464724665782869],[124,59,66,-0.7461448753151038],[124,59,67,-0.745819708416148],[124,59,68,-0.7454969715976449],[124,59,69,-0.7451766704812063],[124,59,70,-0.7448588105933829],[124,59,71,-0.7445433973652236],[124,59,72,-0.744230436131831],[124,59,73,-0.743919932131933],[124,59,74,-0.7436118905074247],[124,59,75,-0.7433063163029425],[124,59,76,-0.7430032144654228],[124,59,77,-0.742702589843665],[124,59,78,-0.7424044471878964],[124,59,79,-0.7421087911493321],[124,60,64,-0.7469421956579414],[124,60,65,-0.7466118341193722],[124,60,66,-0.7462838907588154],[124,60,67,-0.7459583713913742],[124,60,68,-0.7456352817379849],[124,60,69,-0.7453146274249864],[124,60,70,-0.7449964139836732],[124,60,71,-0.7446806468498537],[124,60,72,-0.7443673313634063],[124,60,73,-0.7440564727678505],[124,60,74,-0.7437480762098899],[124,60,75,-0.7434421467389845],[124,60,76,-0.7431386893069107],[124,60,77,-0.7428377087673244],[124,60,78,-0.7425392098753246],[124,60,79,-0.7422431972870145],[124,61,64,-0.7470820842917922],[124,61,65,-0.7467513719796837],[124,61,66,-0.7464230774663851],[124,61,67,-0.746097206571679],[124,61,68,-0.7457737650211972],[124,61,69,-0.7454527584459903],[124,61,70,-0.7451341923820813],[124,61,71,-0.7448180722700228],[124,61,72,-0.7445044034544543],[124,61,73,-0.7441931911836726],[124,61,74,-0.7438844406091741],[124,61,75,-0.7435781567852286],[124,61,76,-0.7432743446684386],[124,61,77,-0.7429730091173012],[124,61,78,-0.742674154891774],[124,61,79,-0.7423777866528343],[124,62,64,-0.7472221421973475],[124,62,65,-0.7468910800628464],[124,62,66,-0.7465624353445464],[124,62,67,-0.7462362138668924],[124,62,68,-0.7459124213601969],[124,62,69,-0.7455910634602068],[124,62,70,-0.7452721457076577],[124,62,71,-0.7449556735478321],[124,62,72,-0.7446416523301147],[124,62,73,-0.7443300873075651],[124,62,74,-0.7440209836364581],[124,62,75,-0.7437143463758585],[124,62,76,-0.7434101804871803],[124,62,77,-0.7431084908337486],[124,62,78,-0.7428092821803645],[124,62,79,-0.7425125591928659],[124,63,64,-0.7473623692729237],[124,63,65,-0.7470309582702912],[124,63,66,-0.7467019642978318],[124,63,67,-0.7463753931846385],[124,63,68,-0.7460512506656877],[124,63,69,-0.7457295423814072],[124,63,70,-0.7454102738772305],[124,63,71,-0.7450934506031538],[124,63,72,-0.7447790779132932],[124,63,73,-0.7444671610654549],[124,63,74,-0.7441577052206783],[124,63,75,-0.7438507154428083],[124,63,76,-0.7435461966980561],[124,63,77,-0.7432441538545599],[124,63,78,-0.742944591681951],[124,63,79,-0.7426475148509137],[124,64,64,-0.747502765414632],[124,64,65,-0.7471710065012368],[124,64,66,-0.7468416642285575],[124,64,67,-0.7465147444303186],[124,64,68,-0.7461902528461447],[124,64,69,-0.7458681951211295],[124,64,70,-0.7455485768053881],[124,64,71,-0.745231403353616],[124,64,72,-0.7449166801246448],[124,64,73,-0.7446044123810134],[124,64,74,-0.7442946052885101],[124,64,75,-0.7439872639157457],[124,64,76,-0.7436823932337138],[124,64,77,-0.7433799981153518],[124,64,78,-0.743080083335107],[124,64,79,-0.742782653568496],[124,65,64,-0.7476433305163612],[124,65,65,-0.7473112246526747],[124,65,66,-0.7469815350368055],[124,65,67,-0.7466542675070942],[124,65,68,-0.7463294278077979],[124,65,69,-0.74600702158866],[124,65,70,-0.7456870544044625],[124,65,71,-0.7453695317145844],[124,65,72,-0.7450544588825578],[124,65,73,-0.744741841175639],[124,65,74,-0.7444316837643506],[124,65,75,-0.7441239917220548],[124,65,76,-0.7438187700245129],[124,65,77,-0.7435160235494476],[124,65,78,-0.7432157570761071],[124,65,79,-0.7429179752848266],[124,66,64,-0.7477840644698349],[124,66,65,-0.7474516126194244],[124,66,66,-0.7471215766204806],[124,66,67,-0.7467939623159439],[124,66,68,-0.7464687754546883],[124,66,69,-0.7461460216910911],[124,66,70,-0.7458257065845857],[124,66,71,-0.7455078355992192],[124,66,72,-0.745192414103209],[124,66,73,-0.7448794473685139],[124,66,74,-0.7445689405703758],[124,66,75,-0.7442608987868933],[124,66,76,-0.7439553269985812],[124,66,77,-0.7436522300879326],[124,66,78,-0.7433516128389831],[124,66,79,-0.7430534799368722],[124,67,64,-0.7479249671645856],[124,67,65,-0.7475921702941091],[124,67,66,-0.7472617888752854],[124,67,67,-0.7469338287556382],[124,67,68,-0.7466082956886433],[124,67,69,-0.7462851953332958],[124,67,70,-0.7459645332536647],[124,67,71,-0.7456463149184501],[124,67,72,-0.7453305457005395],[124,67,73,-0.7450172308765786],[124,67,74,-0.7447063756265142],[124,67,75,-0.7443979850331663],[124,67,76,-0.7440920640817886],[124,67,77,-0.7437886176596299],[124,67,78,-0.7434876505554994],[124,67,79,-0.7431891674593263],[124,68,64,-0.7480660384879791],[124,68,65,-0.7477328975671792],[124,68,66,-0.7474021716947437],[124,68,67,-0.7470738667227639],[124,68,68,-0.7467479884093005],[124,68,69,-0.7464245424179514],[124,68,70,-0.7461035343174056],[124,68,71,-0.7457849695810004],[124,68,72,-0.7454688535862779],[124,68,73,-0.7451551916145562],[124,68,74,-0.7448439888504715],[124,68,75,-0.7445352503815506],[124,68,76,-0.7442289811977713],[124,68,77,-0.7439251861911238],[124,68,78,-0.7436238701551761],[124,68,79,-0.7433250377846334],[124,69,64,-0.7482072783251903],[124,69,65,-0.7478737943268878],[124,69,66,-0.747542724970176],[124,69,67,-0.7472140761116975],[124,69,68,-0.7468878535140823],[124,69,69,-0.7465640628455146],[124,69,70,-0.7462427096792876],[124,69,71,-0.7459237994933607],[124,69,72,-0.7456073376699155],[124,69,73,-0.7452933294949268],[124,69,74,-0.744981780157705],[124,69,75,-0.7446726947504692],[124,69,76,-0.7443660782679066],[124,69,77,-0.7440619356067341],[124,69,78,-0.743760271565264],[124,69,79,-0.7434610908429635],[124,70,64,-0.7483486865592579],[124,70,65,-0.7480148604593471],[124,70,66,-0.7476834485907563],[124,70,67,-0.747354456814664],[124,70,68,-0.7470278908982526],[124,70,69,-0.7467037565142776],[124,70,70,-0.7463820592406205],[124,70,71,-0.7460628045598471],[124,70,72,-0.7457459978587626],[124,70,73,-0.7454316444279837],[124,70,74,-0.7451197494614803],[124,70,75,-0.7448103180561482],[124,70,76,-0.7445033552113691],[124,70,77,-0.7441988658285728],[124,70,78,-0.7438968547108009],[124,70,79,-0.7435973265622682],[124,71,64,-0.7484902630710697],[124,71,65,-0.748156095848511],[124,71,66,-0.7478243424434947],[124,71,67,-0.7474950087217179],[124,71,68,-0.7471681004549002],[124,71,69,-0.7468436233203519],[124,71,70,-0.7465215829005274],[124,71,71,-0.7462019846825826],[124,71,72,-0.7458848340579315],[124,71,73,-0.7455701363218173],[124,71,74,-0.7452578966728539],[124,71,75,-0.744948120212599],[124,71,76,-0.7446408119451144],[124,71,77,-0.744335976776527],[124,71,78,-0.7440336195145945],[124,71,79,-0.7437337448682644],[124,72,64,-0.748632007739344],[124,72,65,-0.7482975003761589],[124,72,66,-0.7479654064132202],[124,72,67,-0.7476357317207274],[124,72,68,-0.7473084820749212],[124,72,69,-0.7469836631576505],[124,72,70,-0.7466612805559267],[124,72,71,-0.7463413397614806],[124,72,72,-0.7460238461703195],[124,72,73,-0.745708805082297],[124,72,74,-0.745396221700656],[124,72,75,-0.7450861011316017],[124,72,76,-0.7447784483838602],[124,72,77,-0.7444732683682418],[124,72,78,-0.7441705658972045],[124,72,79,-0.7438703456844153],[124,73,64,-0.7487739204406876],[124,73,65,-0.7484390739219522],[124,73,66,-0.748106640382638],[124,73,67,-0.747776625697431],[124,73,68,-0.747449035647076],[124,73,69,-0.7471238759179453],[124,73,70,-0.7468011521015907],[124,73,71,-0.7464808696943025],[124,73,72,-0.7461630340966651],[124,73,73,-0.745847650613128],[124,73,74,-0.7455347244515477],[124,73,75,-0.7452242607227609],[124,73,76,-0.7449162644401445],[124,73,77,-0.7446107405191761],[124,73,78,-0.7443076937770006],[124,73,79,-0.7440071289319888],[124,74,64,-0.7489160010495693],[124,74,65,-0.7485808163634087],[124,74,66,-0.748248044232304],[124,74,67,-0.7479176905354115],[124,74,68,-0.7475897610579642],[124,74,69,-0.7472642614908407],[124,74,70,-0.7469411974301182],[124,74,71,-0.7466205743766303],[124,74,72,-0.7463023977355232],[124,74,73,-0.7459866728158262],[124,74,74,-0.7456734048299947],[124,74,75,-0.7453625988934817],[124,74,76,-0.7450542600242991],[124,74,77,-0.7447483931425781],[124,74,78,-0.7444450030701352],[124,74,79,-0.744144094530031],[124,75,64,-0.7490582494383453],[124,75,65,-0.748722727575927],[124,75,66,-0.748389617840649],[124,75,67,-0.7480589261161209],[124,75,68,-0.7477306581920478],[124,75,69,-0.7474048197637988],[124,75,70,-0.7470814164319599],[124,75,71,-0.7467604537018925],[124,75,72,-0.7464419369832885],[124,75,73,-0.7461258715897423],[124,75,74,-0.7458122627382917],[124,75,75,-0.7455011155489918],[124,75,76,-0.7451924350444741],[124,75,77,-0.7448862261495087],[124,75,78,-0.7445824936905685],[124,75,79,-0.7442812423953897],[124,76,64,-0.7492006654772325],[124,76,65,-0.7488648074327608],[124,76,66,-0.7485313610839527],[124,76,67,-0.7482003323188544],[124,76,68,-0.7478717269316266],[124,76,69,-0.7475455506221128],[124,76,70,-0.747221808995392],[124,76,71,-0.746900507561337],[124,76,72,-0.7465816517341703],[124,76,73,-0.746265246832035],[124,76,74,-0.7459512980765368],[124,76,75,-0.7456398105923169],[124,76,76,-0.7453307894066119],[124,76,77,-0.7450242394488151],[124,76,78,-0.744720165550042],[124,76,79,-0.7444185724426893],[124,77,64,-0.7493432490343667],[124,77,65,-0.7490070558050766],[124,77,66,-0.7486732738364014],[124,77,67,-0.7483419090208075],[124,77,68,-0.7480129671568949],[124,77,69,-0.747686453948965],[124,77,70,-0.7473623750065737],[124,77,71,-0.7470407358440894],[124,77,72,-0.7467215418802491],[124,77,73,-0.7464047984377294],[124,77,74,-0.7460905107426882],[124,77,75,-0.7457786839243374],[124,77,76,-0.7454693230145036],[124,77,77,-0.7451624329471889],[124,77,78,-0.7448580185581357],[124,77,79,-0.7445560845843875],[124,78,64,-0.7494859999757848],[124,78,65,-0.7491494725619356],[124,78,66,-0.7488153559700703],[124,78,67,-0.748483656097059],[124,78,68,-0.7481543787459242],[124,78,69,-0.7478275296254087],[124,78,70,-0.7475031143495294],[124,78,71,-0.7471811384371345],[124,78,72,-0.7468616073114596],[124,78,73,-0.7465445262996988],[124,78,74,-0.7462299006325467],[124,78,75,-0.745917735443771],[124,78,76,-0.7456080357697729],[124,78,77,-0.7453008065491478],[124,78,78,-0.744996052622251],[124,78,79,-0.744693778730757],[124,79,64,-0.7496289181654072],[124,79,65,-0.7492920575702768],[124,79,66,-0.7489576073549065],[124,79,67,-0.7486255734205529],[124,79,68,-0.748295961574645],[124,79,69,-0.7479687775303508],[124,79,70,-0.7476440269061319],[124,79,71,-0.7473217152252996],[124,79,72,-0.7470018479155726],[124,79,73,-0.746684430308647],[124,79,74,-0.7463694676397383],[124,79,75,-0.7460569650471548],[124,79,76,-0.7457469275718567],[124,79,77,-0.7454393601570181],[124,79,78,-0.7451342676475918],[124,79,79,-0.7448316547898695],[124,80,64,-0.7497720034650961],[124,80,65,-0.7494348106949746],[124,80,66,-0.7491000278587857],[124,80,67,-0.7487676608621567],[124,80,68,-0.7484377155169057],[124,80,69,-0.7481101975406099],[124,80,70,-0.7477851125561585],[124,80,71,-0.7474624660913112],[124,80,72,-0.747142263578253],[124,80,73,-0.7468245103531661],[124,80,74,-0.7465092116557717],[124,80,75,-0.7461963726289027],[124,80,76,-0.7458859983180637],[124,80,77,-0.7455780936709919],[124,80,78,-0.745272663537223],[124,80,79,-0.7449697126676504],[124,81,64,-0.7499152557346287],[124,81,65,-0.7495777317988122],[124,81,66,-0.7492426173474873],[124,81,67,-0.7489099182906347],[124,81,68,-0.7485796404444456],[124,81,69,-0.7482517895308892],[124,81,70,-0.747926371177267],[124,81,71,-0.7476033909157696],[124,81,72,-0.7472828541830331],[124,81,73,-0.7469647663197101],[124,81,74,-0.7466491325700116],[124,81,75,-0.7463359580812797],[124,81,76,-0.7460252479035477],[124,81,77,-0.7457170069891013],[124,81,78,-0.7454112401920435],[124,81,79,-0.7451079522678553],[124,82,64,-0.7500586748317222],[124,82,65,-0.7497208207425066],[124,82,66,-0.7493853756847177],[124,82,67,-0.7490523455726729],[124,82,68,-0.7487217362269191],[124,82,69,-0.7483935533738016],[124,82,70,-0.7480678026450176],[124,82,71,-0.7477444895771725],[124,82,72,-0.7474236196113375],[124,82,73,-0.7471051980926194],[124,82,74,-0.7467892302697035],[124,82,75,-0.7464757212944254],[124,82,76,-0.7461646762213321],[124,82,77,-0.7458561000072419],[124,82,78,-0.7455499975108109],[124,82,79,-0.7452463734920922],[124,83,64,-0.7502022606120073],[124,83,65,-0.7498640773846824],[124,83,66,-0.7495283027320851],[124,83,67,-0.7491949425728521],[124,83,68,-0.7488640027318701],[124,83,69,-0.7485354889398437],[124,83,70,-0.7482094068328485],[124,83,71,-0.7478857619518895],[124,83,72,-0.7475645597424563],[124,83,73,-0.7472458055540943],[124,83,74,-0.7469295046399469],[124,83,75,-0.7466156621563282],[124,83,76,-0.7463042831622827],[124,83,77,-0.7459953726191471],[124,83,78,-0.7456889353901146],[124,83,79,-0.7453849762397958],[124,84,64,-0.7503460129290864],[124,84,65,-0.7500075015819295],[124,84,66,-0.7496713983491565],[124,84,67,-0.7493377091537068],[124,84,68,-0.7490064398247896],[124,84,69,-0.7486775960974522],[124,84,70,-0.7483511836121328],[124,84,71,-0.748027207914219],[124,84,72,-0.7477056744536027],[124,84,73,-0.7473865885842522],[124,84,74,-0.7470699555637533],[124,84,75,-0.7467557805528824],[124,84,76,-0.7464440686151668],[124,84,77,-0.7461348247164452],[124,84,78,-0.7458280537244335],[124,84,79,-0.7455237604082849],[124,85,64,-0.7504899316345157],[124,85,65,-0.7501510931887854],[124,85,66,-0.7498146623934405],[124,85,67,-0.7494806451757063],[124,85,68,-0.7491490473690976],[124,85,69,-0.7488198747129877],[124,85,70,-0.7484931328521609],[124,85,71,-0.7481688273363709],[124,85,72,-0.7478469636198961],[124,85,73,-0.747527547061111],[124,85,74,-0.7472105829220281],[124,85,75,-0.7468960763678709],[124,85,76,-0.7465840324666334],[124,85,77,-0.7462744561886415],[124,85,78,-0.7459673524061186],[124,85,79,-0.7456627258927446],[124,86,64,-0.7506340165777875],[124,86,65,-0.7502948520577173],[124,86,66,-0.7499580947203692],[124,86,67,-0.7496237504972375],[124,86,68,-0.7492918252261257],[124,86,69,-0.7489623246507161],[124,86,70,-0.7486352544201227],[124,86,71,-0.7483106200884486],[124,86,72,-0.7479884271143428],[124,86,73,-0.7476686808605698],[124,86,74,-0.7473513865935532],[124,86,75,-0.7470365494829472],[124,86,76,-0.7467241746011972],[124,86,77,-0.746414266923101],[124,86,78,-0.7461068313253736],[124,86,79,-0.7458018725862079],[124,87,64,-0.7507782676063882],[124,87,65,-0.7504387780391801],[124,87,66,-0.7501016951833568],[124,87,67,-0.7497670249746631],[124,87,68,-0.7494347732551747],[124,87,69,-0.7491049457728665],[124,87,70,-0.7487775481811649],[124,87,71,-0.748452586038507],[124,87,72,-0.7481300648078948],[124,87,73,-0.7478099898564676],[124,87,74,-0.7474923664550437],[124,87,75,-0.7471771997776923],[124,87,76,-0.7468644949012947],[124,87,77,-0.7465542568051049],[124,87,78,-0.7462464903703147],[124,87,79,-0.745941200379614],[124,88,64,-0.7509226845657802],[124,88,65,-0.7505828709815991],[124,88,66,-0.7502454636337803],[124,88,67,-0.7499104684623026],[124,88,68,-0.7495778913134967],[124,88,69,-0.7492477379396131],[124,88,70,-0.7489200139983743],[124,88,71,-0.748594725052534],[124,88,72,-0.7482718765694318],[124,88,73,-0.7479514739205652],[124,88,74,-0.7476335223811308],[124,88,75,-0.7473180271295977],[124,88,76,-0.747004993247267],[124,88,77,-0.7466944257178334],[124,88,78,-0.7463863294269504],[124,88,79,-0.7460807091617895],[124,89,64,-0.7510672672993847],[124,89,65,-0.7507271307313518],[124,89,66,-0.7503893999209634],[124,89,67,-0.750054080812416],[124,89,68,-0.7497211792562779],[124,89,69,-0.749390701009058],[124,89,70,-0.7490626517327587],[124,89,71,-0.7487370369944333],[124,89,72,-0.7484138622657428],[124,89,73,-0.7480931329225265],[124,89,74,-0.7477748542443438],[124,89,75,-0.747459031414047],[124,89,76,-0.7471456695173417],[124,89,77,-0.7468347735423477],[124,89,78,-0.7465263483791645],[124,89,79,-0.7462203988194307],[124,90,64,-0.7512120156486393],[124,90,65,-0.750871557132825],[124,90,66,-0.7505335038922334],[124,90,67,-0.7501978618752605],[124,90,68,-0.7498646369366954],[124,90,69,-0.7495338348372885],[124,90,70,-0.7492054612433049],[124,90,71,-0.7488795217260816],[124,90,72,-0.7485560217615843],[124,90,73,-0.7482349667299775],[124,90,74,-0.7479163619151672],[124,90,75,-0.7476002125043735],[124,90,76,-0.7472865235876904],[124,90,77,-0.7469753001576473],[124,90,78,-0.7466665471087741],[124,90,79,-0.7463602692371611],[124,91,64,-0.7513569294529716],[124,91,65,-0.7510161500283903],[124,91,66,-0.7506777753928952],[124,91,67,-0.7503418114990646],[124,91,68,-0.7500082642058916],[124,91,69,-0.7496771392783509],[124,91,70,-0.7493484423869533],[124,91,71,-0.7490221791073031],[124,91,72,-0.7486983549196536],[124,91,73,-0.7483769752084788],[124,91,74,-0.7480580452620151],[124,91,75,-0.7477415702718341],[124,91,76,-0.7474275553324023],[124,91,77,-0.7471160054406434],[124,91,78,-0.7468069254955022],[124,91,79,-0.7465003202975056],[124,92,64,-0.751502008549824],[124,92,65,-0.7511609092584268],[124,92,66,-0.7508222142662552],[124,92,67,-0.7504859295300528],[124,92,68,-0.7501520609129982],[124,92,69,-0.7498206141842745],[124,92,70,-0.7494915950186211],[124,92,71,-0.7491650089958923],[124,92,72,-0.7488408616006131],[124,92,73,-0.7485191582215505],[124,92,74,-0.7481999041512547],[124,92,75,-0.7478831045856329],[124,92,76,-0.7475687646235087],[124,92,77,-0.7472568892661837],[124,92,78,-0.7469474834170026],[124,92,79,-0.7466405518809127],[124,93,64,-0.7516472527746265],[124,93,65,-0.7513058346612956],[124,93,66,-0.7509668203535957],[124,93,67,-0.7506302158124178],[124,93,68,-0.7502960269051102],[124,93,69,-0.7499642594050457],[124,93,70,-0.749634918991176],[124,93,71,-0.7493080112475887],[124,93,72,-0.748983541663064],[124,93,73,-0.748661515630645],[124,93,74,-0.7483419384471799],[124,93,75,-0.7480248153128952],[124,93,76,-0.7477101513309556],[124,93,77,-0.747397951507025],[124,93,78,-0.7470882207488322],[124,93,79,-0.7467809638657301],[124,94,64,-0.7517926619608561],[124,94,65,-0.7514509260733978],[124,94,66,-0.7511115934942323],[124,94,67,-0.7507746701883807],[124,94,68,-0.7504401620273429],[124,94,69,-0.7501080747886653],[124,94,70,-0.7497784141554944],[124,94,71,-0.7494511857161346],[124,94,72,-0.7491263949636038],[124,94,73,-0.7488040472952053],[124,94,74,-0.7484841480120691],[124,94,75,-0.7481667023187248],[124,94,76,-0.747851715322662],[124,94,77,-0.7475391920338914],[124,94,78,-0.7472291373645099],[124,94,79,-0.7469215561282609],[124,95,64,-0.7519382359400173],[124,95,65,-0.7515961833291559],[124,95,66,-0.7512565335254958],[124,95,67,-0.7509192924981708],[124,95,68,-0.7505844661228152],[124,95,69,-0.7502520601811311],[124,95,70,-0.7499220803604435],[124,95,71,-0.749594532253256],[124,95,72,-0.7492694213568084],[124,95,73,-0.7489467530726474],[124,95,74,-0.7486265327061677],[124,95,75,-0.7483087654661865],[124,95,76,-0.7479934564645022],[124,95,77,-0.7476806107154562],[124,95,78,-0.7473702331354982],[124,95,79,-0.7470623285427461],[124,96,64,-0.7520839745416255],[124,96,65,-0.7517416062609965],[124,96,66,-0.7514016402827148],[124,96,67,-0.751064082580009],[124,96,68,-0.7507289390326302],[124,96,69,-0.7503962154264197],[124,96,70,-0.7500659174528626],[124,96,71,-0.749738050708646],[124,96,72,-0.7494126206952143],[124,96,73,-0.7490896328183406],[124,96,74,-0.7487690923876691],[124,96,75,-0.7484510046162872],[124,96,76,-0.7481353746202865],[124,96,77,-0.7478222074183232],[124,96,78,-0.747511507931184],[124,96,79,-0.747203280981346],[124,97,64,-0.7522298775932641],[124,97,65,-0.7518871946994083],[124,97,66,-0.7515469135992734],[124,97,67,-0.7512090402701653],[124,97,68,-0.7508735805959343],[124,97,69,-0.7505405403665435],[124,97,70,-0.7502099252776218],[124,97,71,-0.7498817409300217],[124,97,72,-0.7495559928293758],[124,97,73,-0.7492326863856674],[124,97,74,-0.7489118269127728],[124,97,75,-0.7485934196280344],[124,97,76,-0.74827746965182],[124,97,77,-0.7479639820070851],[124,97,78,-0.7476529616189377],[124,97,79,-0.7473444133141981],[124,98,64,-0.7523759449205586],[124,98,65,-0.7520329484729154],[124,98,66,-0.7516923533065847],[124,98,67,-0.7513541654029323],[124,98,68,-0.7510183906498904],[124,98,69,-0.750685034841526],[124,98,70,-0.7503541036775948],[124,98,71,-0.7500256027630979],[124,98,72,-0.7496995376078393],[124,98,73,-0.7493759136259953],[124,98,74,-0.7490547361356585],[124,98,75,-0.748736010358409],[124,98,76,-0.7484197414188757],[124,98,77,-0.7481059343442967],[124,98,78,-0.7477945940640857],[124,98,79,-0.7474857254093906],[124,99,64,-0.752522176347201],[124,99,65,-0.7521788674081015],[124,99,66,-0.7518379592341151],[124,99,67,-0.7514994578106498],[124,99,68,-0.7511633690297016],[124,99,69,-0.7508296986894247],[124,99,70,-0.7504984524936837],[124,99,71,-0.7501696360516117],[124,99,72,-0.7498432548771666],[124,99,73,-0.749519314388702],[124,99,74,-0.7491978199085091],[124,99,75,-0.7488787766623903],[124,99,76,-0.7485621897792184],[124,99,77,-0.748248064290499],[124,99,78,-0.7479364051299349],[124,99,79,-0.7476272171329865],[124,100,64,-0.7526685716949226],[124,100,65,-0.7523249513295837],[124,100,66,-0.751983731209358],[124,100,67,-0.7516449173236776],[124,100,68,-0.7513085155685852],[124,100,69,-0.7509745317463046],[124,100,70,-0.7506429715647919],[124,100,71,-0.7503138406372951],[124,100,72,-0.7499871444819093],[124,100,73,-0.7496628885211477],[124,100,74,-0.7493410780814846],[124,100,75,-0.7490217183929277],[124,100,76,-0.748704814588578],[124,100,77,-0.7483903717041915],[124,100,78,-0.7480783946777452],[124,100,79,-0.7477688883489957],[124,101,64,-0.7528151307835533],[124,101,65,-0.7524712000600704],[124,101,66,-0.7521296690578915],[124,101,67,-0.7517905437704542],[124,101,68,-0.7514538300978308],[124,101,69,-0.7511195338462965],[124,101,70,-0.7507876607278823],[124,101,71,-0.7504582163599334],[124,101,72,-0.7501312062646652],[124,101,73,-0.7498066358687342],[124,101,74,-0.7494845105027805],[124,101,75,-0.7491648354010007],[124,101,76,-0.7488476157007073],[124,101,77,-0.7485328564418919],[124,101,78,-0.7482205625667884],[124,101,79,-0.7479107389194344],[124,102,64,-0.7529618534310019],[124,102,65,-0.7526176134203434],[124,102,66,-0.7522757726033602],[124,102,67,-0.7519363369774784],[124,102,68,-0.7515993124467817],[124,102,69,-0.7512647048215791],[124,102,70,-0.7509325198179593],[124,102,71,-0.7506027630573473],[124,102,72,-0.750275440066062],[124,102,73,-0.7499505562748858],[124,102,74,-0.7496281170186084],[124,102,75,-0.7493081275355985],[124,102,76,-0.7489905929673647],[124,102,77,-0.7486755183581162],[124,102,78,-0.7483629086543292],[124,102,79,-0.7480527687043061],[124,103,64,-0.7531087394532396],[124,103,65,-0.7527641912292395],[124,103,66,-0.7524220416674579],[124,103,67,-0.7520822967692913],[124,103,68,-0.7517449624428167],[124,103,69,-0.7514100445023604],[124,103,70,-0.75107754866805],[124,103,71,-0.7507474805653741],[124,103,72,-0.7504198457247371],[124,103,73,-0.7500946495810314],[124,103,74,-0.7497718974731787],[124,103,75,-0.7494515946437036],[124,103,76,-0.7491337462382938],[124,103,77,-0.7488183573053608],[124,103,78,-0.7485054327956067],[124,103,79,-0.7481949775615826],[124,104,64,-0.7532557886643574],[124,104,65,-0.7529109333037087],[124,104,66,-0.7525684760699847],[124,104,67,-0.7522284229685339],[124,104,68,-0.7518907799114092],[124,104,69,-0.7515555527169356],[124,104,70,-0.7512227471092632],[124,104,71,-0.750892368717926],[124,104,72,-0.7505644230773976],[124,104,73,-0.7502389156266623],[124,104,74,-0.7499158517087581],[124,104,75,-0.7495952365703484],[124,104,76,-0.7492770753612835],[124,104,77,-0.7489613731341612],[124,104,78,-0.7486481348438928],[124,104,79,-0.7483373653472628],[124,105,64,-0.7534030008765394],[124,105,65,-0.7530578394587883],[124,105,66,-0.7527150756288211],[124,105,67,-0.7523747153959213],[124,105,68,-0.7520367646760993],[124,105,69,-0.751701229291661],[124,105,70,-0.7513681149707618],[124,105,71,-0.7510374273469635],[124,105,72,-0.7507091719587917],[124,105,73,-0.750383354249306],[124,105,74,-0.7500599795656431],[124,105,75,-0.749739053158589],[124,105,76,-0.7494205801821401],[124,105,77,-0.7491045656930639],[124,105,78,-0.7487910146504653],[124,105,79,-0.7484799319153457],[124,106,64,-0.7535503759000877],[124,106,65,-0.7532049095076258],[124,106,66,-0.7528618401599523],[124,106,67,-0.7525211738702664],[124,106,68,-0.7521829165585184],[124,106,69,-0.7518470740509782],[124,106,70,-0.7515136520797875],[124,106,71,-0.7511826562825196],[124,106,72,-0.7508540922017343],[124,106,73,-0.7505279652845496],[124,106,74,-0.7502042808821838],[124,106,75,-0.7498830442495292],[124,106,76,-0.7495642605447115],[124,106,77,-0.7492479348286516],[124,106,78,-0.7489340720646314],[124,106,79,-0.7486226771178539],[124,107,64,-0.7536979135433945],[124,107,65,-0.7533521432614534],[124,107,66,-0.7530087694774403],[124,107,67,-0.7526677982084528],[124,107,68,-0.7523292353783629],[124,107,69,-0.7519930868173861],[124,107,70,-0.7516593582616338],[124,107,71,-0.7513280553526724],[124,107,72,-0.7509991836370792],[124,107,73,-0.750672748566013],[124,107,74,-0.7503487554947574],[124,107,75,-0.7500272096822936],[124,107,76,-0.7497081162908602],[124,107,77,-0.7493914803855152],[124,107,78,-0.7490773069337013],[124,107,79,-0.7487656008048068],[124,108,64,-0.7538456136130018],[124,108,65,-0.7534995405296456],[124,108,66,-0.7531558633934837],[124,108,67,-0.7528145882254937],[124,108,68,-0.7524757209534517],[124,108,69,-0.7521392674115006],[124,108,70,-0.7518052333397041],[124,108,71,-0.7514736243836041],[124,108,72,-0.7511444460937776],[124,108,73,-0.7508177039254076],[124,108,74,-0.7504934032378259],[124,108,75,-0.7501715492940855],[124,108,76,-0.7498521472605215],[124,108,77,-0.7495352022063125],[124,108,78,-0.7492207191030461],[124,108,79,-0.748908702824279],[124,109,64,-0.7539934759135829],[124,109,65,-0.7536471011197013],[124,109,66,-0.7533031217183985],[124,109,67,-0.7529615437345137],[124,109,68,-0.7526223730997086],[124,109,69,-0.7522856156520361],[124,109,70,-0.7519512771354937],[124,109,71,-0.7516193631995817],[124,109,72,-0.7512898793988598],[124,109,73,-0.7509628311925176],[124,109,74,-0.7506382239439178],[124,109,75,-0.7503160629201688],[124,109,76,-0.7499963532916853],[124,109,77,-0.7496791001317501],[124,109,78,-0.7493643084160788],[124,109,79,-0.7490519830223814],[124,110,64,-0.7541415002479226],[124,110,65,-0.7537948248372253],[124,110,66,-0.7534505442606001],[124,110,67,-0.7531086645467296],[124,110,68,-0.7527691916311432],[124,110,69,-0.7524321313557856],[124,110,70,-0.7520974894685707],[124,110,71,-0.7517652716229396],[124,110,72,-0.7514354833774166],[124,110,73,-0.7511081301951812],[124,110,74,-0.7507832174436098],[124,110,75,-0.7504607503938492],[124,110,76,-0.7501407342203771],[124,110,77,-0.7498231740005636],[124,110,78,-0.7495080747142366],[124,110,79,-0.7491954412432426],[124,111,64,-0.7542896864169775],[124,111,65,-0.7539427114859865],[124,111,66,-0.7535981308266613],[124,111,67,-0.7532559504715095],[124,111,68,-0.7529161763599097],[124,111,69,-0.7525788143376809],[124,111,70,-0.7522438701566353],[124,111,71,-0.7519113494741368],[124,111,72,-0.7515812578526576],[124,111,73,-0.7512536007593491],[124,111,74,-0.7509283835655846],[124,111,75,-0.7506056115465323],[124,111,76,-0.7502852898807161],[124,111,77,-0.7499674236495769],[124,111,78,-0.7496520178370383],[124,111,79,-0.749339077329067],[124,112,64,-0.7544380342198482],[124,112,65,-0.7540907608678915],[124,112,66,-0.7537458812212858],[124,112,67,-0.7534034013163453],[124,112,68,-0.75306332709628],[124,112,69,-0.7527256644107645],[124,112,70,-0.7523904190154918],[124,112,71,-0.752057596571731],[124,112,72,-0.7517272026458842],[124,112,73,-0.7513992427090577],[124,112,74,-0.7510737221366044],[124,112,75,-0.7507506462076972],[124,112,76,-0.7504300201048889],[124,112,77,-0.7501118489136748],[124,112,78,-0.7497961376220577],[124,112,79,-0.7494828911201084],[124,113,64,-0.7545865434538039],[124,113,65,-0.7542389727830086],[124,113,66,-0.7538937952473324],[124,113,67,-0.7535510168868778],[124,113,68,-0.7532106436486675],[124,113,69,-0.7528726813862142],[124,113,70,-0.7525371358590734],[124,113,71,-0.7522040127324017],[124,113,72,-0.7518733175765138],[124,113,73,-0.7515450558664531],[124,113,74,-0.751219232981535],[124,113,75,-0.7508958542049198],[124,113,76,-0.7505749247231728],[124,113,77,-0.7502564496258269],[124,113,78,-0.7499404339049474],[124,113,79,-0.7496268824546927],[124,114,64,-0.754735213914255],[124,114,65,-0.7543873470295405],[124,114,66,-0.7540418727057876],[124,114,67,-0.7536987969868685],[124,114,68,-0.7533581258236006],[124,114,69,-0.7530198650733162],[124,114,70,-0.7526840204994151],[124,114,71,-0.7523505977709241],[124,114,72,-0.7520196024620524],[124,114,73,-0.7516910400517635],[124,114,74,-0.7513649159233178],[124,114,75,-0.7510412353638459],[124,114,76,-0.7507200035639089],[124,114,77,-0.7504012256170601],[124,114,78,-0.7500849065194111],[124,114,79,-0.7497710511691918],[124,115,64,-0.7548840453948121],[124,115,65,-0.7545358834038834],[124,115,66,-0.7541901133958249],[124,115,67,-0.7538467414182594],[124,115,68,-0.7535057734257808],[124,115,69,-0.7531672152795227],[124,115,70,-0.7528310727467119],[124,115,71,-0.7524973515002266],[124,115,72,-0.7521660571181534],[124,115,73,-0.7518371950833581],[124,115,74,-0.7515107707830292],[124,115,75,-0.75118678950825],[124,115,76,-0.7508652564535605],[124,115,77,-0.7505461767165178],[124,115,78,-0.7502295552972631],[124,115,79,-0.7499153970980814],[124,116,64,-0.7550330376872676],[124,116,65,-0.7546845817006086],[124,116,66,-0.7543385171147854],[124,116,67,-0.7539948499811533],[124,116,68,-0.7536535862580642],[124,116,69,-0.7533147318104348],[124,116,70,-0.7529782924093003],[124,116,71,-0.752644273731373],[124,116,72,-0.752312681358599],[124,116,73,-0.7519835207777288],[124,116,74,-0.7516567973798614],[124,116,75,-0.7513325164600161],[124,116,76,-0.7510106832166943],[124,116,77,-0.7506913027514406],[124,116,78,-0.7503743800684087],[124,116,79,-0.7500599200739225],[124,117,64,-0.7551821905815764],[124,117,65,-0.7548334417124429],[124,117,66,-0.7544870836581598],[124,117,67,-0.7541431224737961],[124,117,68,-0.7538015641214432],[124,117,69,-0.7534624144697826],[124,117,70,-0.7531256792936398],[124,117,71,-0.7527913642735434],[124,117,72,-0.7524594749952809],[124,117,73,-0.7521300169494705],[124,117,74,-0.7518029955311036],[124,117,75,-0.7514784160391187],[124,117,76,-0.7511562836759615],[124,117,77,-0.7508366035471471],[124,117,78,-0.7505193806608252],[124,117,79,-0.7502046199273418],[124,118,64,-0.7553315038659156],[124,118,65,-0.7549824632303285],[124,118,66,-0.7546358128196468],[124,118,67,-0.7542915586926348],[124,118,68,-0.7539497068151044],[124,118,69,-0.753610263059484],[124,118,70,-0.7532732332043712],[124,118,71,-0.7529386229340927],[124,118,72,-0.7526064378382598],[124,118,73,-0.7522766834113402],[124,118,74,-0.7519493650522011],[124,118,75,-0.7516244880636822],[124,118,76,-0.751302057652157],[124,118,77,-0.7509820789270933],[124,118,78,-0.7506645569006211],[124,118,79,-0.7503494964870913],[124,119,64,-0.7554809773266653],[124,119,65,-0.7551316460434039],[124,119,66,-0.7547847043911349],[124,119,67,-0.7544401584322993],[124,119,68,-0.7540980141364111],[124,119,69,-0.753758277379627],[124,119,70,-0.7534209539442986],[124,119,71,-0.7530860495185325],[124,119,72,-0.7527535696957459],[124,119,73,-0.7524235199742386],[124,119,74,-0.752095905756736],[124,119,75,-0.7517707323499617],[124,119,76,-0.7514480049641994],[124,119,77,-0.7511277287128537],[124,119,78,-0.7508099086120168],[124,119,79,-0.7504945495800288],[124,120,64,-0.7556306107483899],[124,120,65,-0.7552809899389847],[124,120,66,-0.7549337581626829],[124,120,67,-0.7545889214855831],[124,120,68,-0.7542464858808834],[124,120,69,-0.7539064572284495],[124,120,70,-0.7535688413143693],[124,120,71,-0.7532336438305111],[124,120,72,-0.7529008703740803],[124,120,73,-0.7525705264471907],[124,120,74,-0.7522426174564083],[124,120,75,-0.7519171487123236],[124,120,76,-0.7515941254291131],[124,120,77,-0.7512735527241011],[124,120,78,-0.7509554356173255],[124,120,79,-0.7506397790310987],[124,121,64,-0.7557804039138973],[124,121,65,-0.7554304947026234],[124,121,66,-0.7550829739225796],[124,121,67,-0.7547378476435033],[124,121,68,-0.7543951218422575],[124,121,69,-0.7540548024023993],[124,121,70,-0.7537168951137341],[124,121,71,-0.7533814056718737],[124,121,72,-0.7530483396777937],[124,121,73,-0.7527177026374047],[124,121,74,-0.752389499961095],[124,121,75,-0.752063736963305],[124,121,76,-0.7517404188620866],[124,121,77,-0.7514195507786668],[124,121,78,-0.7511011377370124],[124,121,79,-0.7507851846633912],[124,122,64,-0.7559303566042116],[124,122,65,-0.7555801601180816],[124,122,66,-0.7552323514573158],[124,122,67,-0.7548869366952717],[124,122,68,-0.7545439218124584],[124,122,69,-0.754203312696106],[124,122,70,-0.7538651151397187],[124,122,71,-0.7535293348426338],[124,122,72,-0.7531959774095793],[124,122,73,-0.7528650483502444],[124,122,74,-0.7525365530788225],[124,122,75,-0.7522104969135859],[124,122,76,-0.7518868850764452],[124,122,77,-0.7515657226925124],[124,122,78,-0.7512470147896666],[124,122,79,-0.7509307662981144],[124,123,64,-0.7560804685985968],[124,123,65,-0.755729985967354],[124,123,66,-0.7553818905516091],[124,123,67,-0.7550361884283203],[124,123,68,-0.7546928855816244],[124,123,69,-0.7543519879024054],[124,123,70,-0.7540135011878485],[124,123,71,-0.7536774311409984],[124,123,72,-0.7533437833703168],[124,123,73,-0.7530125633892537],[124,123,74,-0.7526837766157906],[124,123,75,-0.7523574283720134],[124,123,76,-0.7520335238836745],[124,123,77,-0.7517120682797539],[124,123,78,-0.7513930665920256],[124,123,79,-0.7510765237546188],[124,124,64,-0.7562307396745303],[124,124,65,-0.7558799720306418],[124,124,66,-0.755531590988376],[124,124,67,-0.7551856026282731],[124,124,68,-0.7548420129380786],[124,124,69,-0.7545008278123122],[124,124,70,-0.754162053051821],[124,124,71,-0.7538256943633392],[124,124,72,-0.7534917573590443],[124,124,73,-0.7531602475561291],[124,124,74,-0.7528311703763446],[124,124,75,-0.752504531145574],[124,124,76,-0.7521803350933934],[124,124,77,-0.7518585873526338],[124,124,78,-0.7515392929589473],[124,124,79,-0.7512224568503683],[124,125,64,-0.7563811696077609],[124,125,65,-0.7560301180864107],[124,125,66,-0.755681452548791],[124,125,67,-0.7553351790790054],[124,125,68,-0.7549913036683893],[124,125,69,-0.7546498322150788],[124,125,70,-0.7543107705235651],[124,125,71,-0.753974124304253],[124,125,72,-0.753639899173018],[124,125,73,-0.7533081006507776],[124,125,74,-0.752978734163035],[124,125,75,-0.7526518050394527],[124,125,76,-0.7523273185134131],[124,125,77,-0.7520052797215807],[124,125,78,-0.751685693703469],[124,125,79,-0.7513685654010006],[124,126,64,-0.7565317581722916],[124,126,65,-0.7561804239113731],[124,126,66,-0.7558314750122683],[124,126,67,-0.7554849175626251],[124,126,68,-0.7551407575573497],[124,126,69,-0.7547990008981762],[124,126,70,-0.7544596533932211],[124,126,71,-0.7541227207565417],[124,126,72,-0.7537882086076928],[124,126,73,-0.7534561224712992],[124,126,74,-0.7531264677765982],[124,126,75,-0.7527992498570135],[124,126,76,-0.752474473949717],[124,126,77,-0.7521521451951896],[124,126,78,-0.7518322686367884],[124,126,79,-0.7515148492203079],[124,127,64,-0.7566825051403585],[124,127,65,-0.756330889280468],[124,127,66,-0.7559816581564421],[124,127,67,-0.7556348178594533],[124,127,68,-0.7552903743879598],[124,127,69,-0.7549483336472752],[124,127,70,-0.7546087014491227],[124,127,71,-0.7542714835111933],[124,127,72,-0.7539366854567036],[124,127,73,-0.7536043128139667],[124,127,74,-0.7532743710159364],[124,127,75,-0.7529468653997808],[124,127,76,-0.7526218012064427],[124,127,77,-0.7522991835802023],[124,127,78,-0.7519790175682439],[124,127,79,-0.7516613081202159],[124,128,64,-0.7568334102824916],[124,128,65,-0.7564815139669214],[124,128,66,-0.7561320017572261],[124,128,67,-0.7557848797480835],[124,128,68,-0.7554401539414854],[124,128,69,-0.7550978302463057],[124,128,70,-0.7547579144778556],[124,128,71,-0.7544204123574416],[124,128,72,-0.7540853295119233],[124,128,73,-0.7537526714732848],[124,128,74,-0.7534224436781783],[124,128,75,-0.753094651467498],[124,128,76,-0.7527693000859403],[124,128,77,-0.7524463946815678],[124,128,78,-0.7521259403053739],[124,128,79,-0.7518079419108451],[124,129,64,-0.7569844733674868],[124,129,65,-0.7566322977422175],[124,129,66,-0.7562825055887852],[124,129,67,-0.7559351030053543],[124,129,68,-0.75559009599743],[124,129,69,-0.7552474904774285],[124,129,70,-0.7549072922642299],[124,129,71,-0.7545695070827377],[124,129,72,-0.7542341405634367],[124,129,73,-0.7539011982419632],[124,129,74,-0.75357068555865],[124,129,75,-0.7532426078580996],[124,129,76,-0.752916970388745],[124,129,77,-0.752593778302413],[124,129,78,-0.7522730366538894],[124,129,79,-0.7519547504004814],[124,130,64,-0.7571356941624297],[124,130,65,-0.7567832403761242],[124,130,66,-0.7564331694235614],[124,130,67,-0.7560854874063732],[124,130,68,-0.7557402003335597],[124,130,69,-0.7553973141210598],[124,130,70,-0.7550568345913042],[124,130,71,-0.7547187674727751],[124,130,72,-0.7543831183995632],[124,130,73,-0.7540498929109397],[124,130,74,-0.7537190964508997],[124,130,75,-0.7533907343677362],[124,130,76,-0.7530648119136011],[124,130,77,-0.7527413342440678],[124,130,78,-0.7524203064176975],[124,130,79,-0.752101733395601],[124,131,64,-0.7572870724326688],[124,131,65,-0.7569343416366642],[124,131,66,-0.7565839930322444],[124,131,67,-0.7562360327244892],[124,131,68,-0.7558904667258749],[124,131,69,-0.7555473009558435],[124,131,70,-0.7552065412403582],[124,131,71,-0.7548681933114608],[124,131,72,-0.75453226280683],[124,131,73,-0.754198755269353],[124,131,74,-0.7538676761466696],[124,131,75,-0.7535390307907454],[124,131,76,-0.7532128244574333],[124,131,77,-0.7528890623060362],[124,131,78,-0.7525677493988734],[124,131,79,-0.7522488907008416],[124,132,64,-0.7574386079418741],[124,132,65,-0.757085601290175],[124,132,66,-0.7567349761838317],[124,132,67,-0.7563867387313522],[124,132,68,-0.7560408949486696],[124,132,69,-0.7556974507587109],[124,132,70,-0.7553564119909517],[124,132,71,-0.7550177843809754],[124,132,72,-0.7546815735700304],[124,132,73,-0.7543477851046018],[124,132,74,-0.7540164244359555],[124,132,75,-0.753687496919712],[124,132,76,-0.7533610078154075],[124,132,77,-0.7530369622860569],[124,132,78,-0.7527153653977198],[124,132,79,-0.7523962221190622],[124,133,64,-0.7575903004520185],[124,133,65,-0.7572370191012903],[124,133,66,-0.7568861186456094],[124,133,67,-0.7565376051968935],[124,133,68,-0.7561914847745126],[124,133,69,-0.7558477633048599],[124,133,70,-0.755506446620905],[124,133,71,-0.7551675404617539],[124,133,72,-0.7548310504722058],[124,133,73,-0.7544969822023255],[124,133,74,-0.7541653411069873],[124,133,75,-0.7538361325454482],[124,133,76,-0.7535093617809102],[124,133,77,-0.7531850339800825],[124,133,78,-0.7528631542127475],[124,133,79,-0.7525437274513238],[124,134,64,-0.7577421497233582],[124,134,65,-0.7573885948329192],[124,134,66,-0.7570374201831329],[124,134,67,-0.7566886318893065],[124,134,68,-0.7563422359742283],[124,134,69,-0.7559982383677379],[124,134,70,-0.7556566449062805],[124,134,71,-0.7553174613324656],[124,134,72,-0.754980693294625],[124,134,73,-0.7546463463463848],[124,134,74,-0.7543144259462092],[124,134,75,-0.7539849374569743],[124,134,76,-0.7536578861455294],[124,134,77,-0.7533332771822605],[124,134,78,-0.7530111156406564],[124,134,79,-0.7526914064968695],[124,135,64,-0.7578941555144924],[124,135,65,-0.7575403282463075],[124,135,66,-0.7571888805602864],[124,135,67,-0.7568398185751066],[124,135,68,-0.7564931483169555],[124,135,69,-0.7561488757190998],[124,135,70,-0.7558070066214412],[124,135,71,-0.7554675467700741],[124,135,72,-0.7551305018168445],[124,135,73,-0.7547958773189211],[124,135,74,-0.7544636787383397],[124,135,75,-0.7541339114415776],[124,135,76,-0.7538065806991139],[124,135,77,-0.7534816916849936],[124,135,78,-0.7531592494763933],[124,135,79,-0.7528392590531836],[124,136,64,-0.7580463175823354],[124,136,65,-0.7576922191010084],[124,136,66,-0.757340499539255],[124,136,67,-0.7569911650191031],[124,136,68,-0.7566442215701197],[124,136,69,-0.7562996751289802],[124,136,70,-0.755957531539023],[124,136,71,-0.7556177965498092],[124,136,72,-0.7552804758166799],[124,136,73,-0.7549455749003282],[124,136,74,-0.7546130992663433],[124,136,75,-0.7542830542847854],[124,136,76,-0.7539554452297454],[124,136,77,-0.7536302772789099],[124,136,78,-0.7533075555131258],[124,136,79,-0.7529872849159641],[124,137,64,-0.7581986356821412],[124,137,65,-0.7578442671549077],[124,137,66,-0.7574922768805487],[124,137,67,-0.7571426709844231],[124,137,68,-0.756795455499458],[124,137,69,-0.756450636365718],[124,137,70,-0.7561082194299595],[124,137,71,-0.7557682104451914],[124,137,72,-0.7554306150702308],[124,137,73,-0.7550954388692771],[124,137,74,-0.7547626873114548],[124,137,75,-0.7544323657703882],[124,137,76,-0.7541044795237627],[124,137,77,-0.7537790337528881],[124,137,78,-0.753456033542265],[124,137,79,-0.7531354838791465],[124,138,64,-0.758351109567475],[124,138,65,-0.7579964721641955],[124,138,66,-0.757644212342975],[124,138,67,-0.757294336232484],[124,138,68,-0.7569468498689903],[124,138,69,-0.756601759195928],[124,138,70,-0.7562590700634532],[124,138,71,-0.7559187882280027],[124,138,72,-0.7555809193518519],[124,138,73,-0.7552454690026873],[124,138,74,-0.7549124426531504],[124,138,75,-0.7545818456804116],[124,138,76,-0.7542536833657328],[124,138,77,-0.7539279608940294],[124,138,78,-0.7536046833534373],[124,138,79,-0.7532838557348754],[124,139,64,-0.7585037389902731],[124,139,65,-0.7581488338834256],[124,139,66,-0.757796305683698],[124,139,67,-0.7574461605230529],[124,139,68,-0.757098404441079],[124,139,69,-0.7567530433845611],[124,139,70,-0.7564100832070353],[124,139,71,-0.7560695296683477],[124,139,72,-0.7557313884342132],[124,139,73,-0.7553956650757868],[124,139,74,-0.7550623650692083],[124,139,75,-0.7547314937951766],[124,139,76,-0.7544030565385116],[124,139,77,-0.7540770584877162],[124,139,78,-0.7537535047345449],[124,139,79,-0.7534324002735641],[124,140,64,-0.7586565237008239],[124,140,65,-0.7583013520654965],[124,140,66,-0.7579485566582195],[124,140,67,-0.7575981436142272],[124,140,68,-0.75725011897641],[124,140,69,-0.7569044886948841],[124,140,70,-0.7565612586265463],[124,140,71,-0.7562204345346333],[124,140,72,-0.75588202208828],[124,140,73,-0.7555460268620919],[124,140,74,-0.7552124543356886],[124,140,75,-0.7548813098932791],[124,140,76,-0.7545525988232229],[124,140,77,-0.7542263263175935],[124,140,78,-0.7539024974717452],[124,140,79,-0.7535811172838748],[124,141,64,-0.7588094634477479],[124,141,65,-0.758454026461632],[124,141,66,-0.7581009650203587],[124,141,67,-0.7577502852624148],[124,141,68,-0.7574019932339728],[124,141,69,-0.7570560948884606],[124,141,70,-0.7567125960861165],[124,141,71,-0.7563715025935487],[124,141,72,-0.7560328200832939],[124,141,73,-0.7556965541333883],[124,141,74,-0.7553627102269136],[124,141,75,-0.7550312937515704],[124,141,76,-0.75470230999924],[124,141,77,-0.754375764165548],[124,141,78,-0.754051661349431],[124,141,79,-0.7537300065526991],[124,142,64,-0.7589625579780577],[124,142,65,-0.7586068568214404],[124,142,66,-0.7582535305223129],[124,142,67,-0.7579025852223946],[124,142,68,-0.7575540269711205],[124,142,69,-0.7572078617252105],[124,142,70,-0.7568640953482255],[124,142,71,-0.7565227336101261],[124,142,72,-0.7561837821868314],[124,142,73,-0.7558472466597904],[124,142,74,-0.755513132515528],[124,142,75,-0.7551814451452177],[124,142,76,-0.7548521898442446],[124,142,77,-0.7545253718117688],[124,142,78,-0.7542009961502913],[124,142,79,-0.7538790678652176],[124,143,64,-0.7591158070371299],[124,143,65,-0.7587598428928869],[124,143,66,-0.7584062529146288],[124,143,67,-0.7580550432472877],[124,143,68,-0.7577062199435409],[124,143,69,-0.7573597889633819],[124,143,70,-0.7570157561736741],[124,143,71,-0.7566741273477116],[124,143,72,-0.7563349081647768],[124,143,73,-0.755998104209713],[124,143,74,-0.7556637209724694],[124,143,75,-0.7553317638476742],[124,143,76,-0.7550022381341986],[124,143,77,-0.7546751490347182],[124,143,78,-0.7543505016552815],[124,143,79,-0.7540283010048712],[124,144,64,-0.7592692103687293],[124,144,65,-0.7589129844223177],[124,144,66,-0.7585591319462268],[124,144,67,-0.7582076590885813],[124,144,68,-0.7578585719052822],[124,144,69,-0.7575118763595754],[124,144,70,-0.7571675783216085],[124,144,71,-0.7568256835679896],[124,144,72,-0.756486197781346],[124,144,73,-0.7561491265498957],[124,144,74,-0.7558144753669938],[124,144,75,-0.7554822496307053],[124,144,76,-0.7551524546433684],[124,144,77,-0.7548250956111568],[124,144,78,-0.7545001776436483],[124,144,79,-0.7541777057533853],[124,145,64,-0.7594227677149811],[124,145,65,-0.7590662811544319],[124,145,66,-0.7587121673643729],[124,145,67,-0.758360432496102],[124,145,68,-0.7580110826087227],[124,145,69,-0.7576641236687156],[124,145,70,-0.7573195615494921],[124,145,71,-0.7569774020309552],[124,145,72,-0.7566376507990576],[124,145,73,-0.7563003134453742],[124,145,74,-0.7559653954666467],[124,145,75,-0.7556329022643582],[124,145,76,-0.7553028391442961],[124,145,77,-0.7549752113161141],[124,145,78,-0.7546500238929009],[124,145,79,-0.7543272818907416],[124,146,64,-0.7595764788164301],[124,146,65,-0.7592197328323409],[124,146,66,-0.7588653589147385],[124,146,67,-0.7585133632180734],[124,146,68,-0.7581637518046329],[124,146,69,-0.7578165306441113],[124,146,70,-0.757471705613165],[124,146,71,-0.7571292824949728],[124,146,72,-0.7567892669787938],[124,146,73,-0.7564516646595402],[124,146,74,-0.7561164810373222],[124,146,75,-0.7557837215170228],[124,146,76,-0.7554533914078596],[124,146,77,-0.7551254959229485],[124,146,78,-0.754800040178871],[124,146,79,-0.7544770291952372],[124,147,64,-0.759730343412022],[124,147,65,-0.7593733391975499],[124,147,66,-0.759018706341381],[124,147,67,-0.7586664510010986],[124,147,68,-0.7583165792421538],[124,147,69,-0.7579690970374353],[124,147,70,-0.7576240102668248],[124,147,71,-0.7572813247167574],[124,147,72,-0.7569410460797794],[124,147,73,-0.756603179954122],[124,147,74,-0.7562677318432449],[124,147,75,-0.7559347071554119],[124,147,76,-0.7556041112032529],[124,147,77,-0.7552759492033277],[124,147,78,-0.7549502262756931],[124,147,79,-0.7546269474434656],[124,148,64,-0.7598843612390828],[124,148,65,-0.7595270999899368],[124,148,66,-0.7591722093867236],[124,148,67,-0.7588196955901393],[124,148,68,-0.7584695646687787],[124,148,69,-0.758121822598705],[124,148,70,-0.7577764752630061],[124,148,71,-0.7574335284513538],[124,148,72,-0.7570929878595631],[124,148,73,-0.7567548590891642],[124,148,74,-0.7564191476469478],[124,148,75,-0.7560858589445403],[124,148,76,-0.7557549982979656],[124,148,77,-0.7554265709272086],[124,148,78,-0.7551005819557837],[124,148,79,-0.7547770364102959],[124,149,64,-0.7600385320333796],[124,149,65,-0.7596810149478134],[124,149,66,-0.7593258677916159],[124,149,67,-0.758973096728576],[124,149,68,-0.7586227078304121],[124,149,69,-0.7582747070763426],[124,149,70,-0.7579291003526414],[124,149,71,-0.7575858934521982],[124,149,72,-0.7572450920740766],[124,149,73,-0.7569067018230877],[124,149,74,-0.7565707282093342],[124,149,75,-0.7562371766477864],[124,149,76,-0.7559060524578433],[124,149,77,-0.7555773608628974],[124,149,78,-0.7552511069899018],[124,149,79,-0.7549272958689331],[124,150,64,-0.7601928555291001],[124,150,65,-0.7598350838079049],[124,150,66,-0.7594796812953137],[124,150,67,-0.7591266541581884],[124,150,68,-0.7587760084713507],[124,150,69,-0.7584277502171546],[124,150,70,-0.7580818852850405],[124,150,71,-0.7577384194710963],[124,150,72,-0.7573973584776155],[124,150,73,-0.7570587079126703],[124,150,74,-0.7567224732896571],[124,150,75,-0.7563886600268709],[124,150,76,-0.7560572734470679],[124,150,77,-0.7557283187770294],[124,150,78,-0.7554018011471296],[124,150,79,-0.7550777255908983],[124,151,64,-0.7603473314588343],[124,151,65,-0.7599893063053306],[124,151,66,-0.7596336496354598],[124,151,67,-0.7592803676191353],[124,151,68,-0.7589294663342634],[124,151,69,-0.7585809517663128],[124,151,70,-0.7582348298078712],[124,151,71,-0.7578911062582051],[124,151,72,-0.7575497868228185],[124,151,73,-0.7572108771130263],[124,151,74,-0.7568743826454987],[124,151,75,-0.7565403088418373],[124,151,76,-0.7562086610281367],[124,151,77,-0.7558794444345489],[124,151,78,-0.7555526641948511],[124,151,79,-0.7552283253460079],[124,152,64,-0.7605019595536326],[124,152,65,-0.760143682173664],[124,152,66,-0.7597877725481431],[124,152,67,-0.7594342368500154],[124,152,68,-0.7590830811602508],[124,152,69,-0.7587343114674137],[124,152,70,-0.7583879336672188],[124,152,71,-0.7580439535620921],[124,152,72,-0.7577023768607286],[124,152,73,-0.7573632091776663],[124,152,74,-0.7570264560328313],[124,152,75,-0.7566921228511121],[124,152,76,-0.7563602149619237],[124,152,77,-0.75603073759877],[124,152,78,-0.7557036958988131],[124,152,79,-0.7553790949024348],[124,153,64,-0.7606567395429792],[124,153,65,-0.7602982111449041],[124,153,66,-0.7599420497678713],[124,153,67,-0.7595882615878379],[124,153,68,-0.7592368526888176],[124,153,69,-0.7588878290624501],[124,153,70,-0.7585411966075581],[124,153,71,-0.7581969611297068],[124,153,72,-0.7578551283407633],[124,153,73,-0.7575157038584696],[124,153,74,-0.7571786932059879],[124,153,75,-0.756844101811476],[124,153,76,-0.7565119350076496],[124,153,77,-0.7561821980313468],[124,153,78,-0.755854896023096],[124,153,79,-0.7555300340266782],[124,154,64,-0.7608116711548152],[124,154,65,-0.7604528929494996],[124,154,66,-0.760096481027594],[124,154,67,-0.7597424415680472],[124,154,68,-0.7593907806578959],[124,154,69,-0.7590415042918358],[124,154,70,-0.7586946183717773],[124,154,71,-0.7583501287064054],[124,154,72,-0.7580080410107398],[124,154,73,-0.7576683609057073],[124,154,74,-0.7573310939176874],[124,154,75,-0.7569962454780877],[124,154,76,-0.7566638209229068],[124,154,77,-0.7563338254922982],[124,154,78,-0.7560062643301382],[124,154,79,-0.755681142483589],[124,155,64,-0.7609667541155105],[124,155,65,-0.7606077273163208],[124,155,66,-0.7602510660586754],[124,155,67,-0.7598967765244943],[124,155,68,-0.7595448648038177],[124,155,69,-0.7591953368943766],[124,155,70,-0.7588481987011492],[124,155,71,-0.7585034560359213],[124,155,72,-0.7581611146168453],[124,155,73,-0.7578211800680138],[124,155,74,-0.7574836579190044],[124,155,75,-0.7571485536044558],[124,155,76,-0.7568158724636305],[124,155,77,-0.7564856197399786],[124,155,78,-0.7561578005807068],[124,155,79,-0.7558324200363399],[124,156,64,-0.7611219881499243],[124,156,65,-0.7607627139727192],[124,156,66,-0.7604058045909533],[124,156,67,-0.7600512661894969],[124,156,68,-0.7596991048613736],[124,156,69,-0.7593493266073297],[124,156,70,-0.7590019373353917],[124,156,71,-0.758656942860426],[124,156,72,-0.7583143489036983],[124,156,73,-0.7579741610924475],[124,156,74,-0.7576363849594305],[124,156,75,-0.7573010259424983],[124,156,76,-0.7569680893841582],[124,156,77,-0.7566375805311388],[124,156,78,-0.7563095045339581],[124,156,79,-0.7559838664464862],[124,157,64,-0.7612773729813846],[124,157,65,-0.7609178526445083],[124,157,66,-0.7605606963527198],[124,157,67,-0.7602059102938198],[124,157,68,-0.7598535005637943],[124,157,69,-0.7595034731663856],[124,157,70,-0.7591558340126476],[124,157,71,-0.7588105889205083],[124,157,72,-0.7584677436143274],[124,157,73,-0.7581273037244703],[124,157,74,-0.7577892747868541],[124,157,75,-0.7574536622425228],[124,157,76,-0.7571204714372102],[124,157,77,-0.7567897076209049],[124,157,78,-0.7564613759474177],[124,157,79,-0.7561354814739454],[124,158,64,-0.7614329083316687],[124,158,65,-0.761073143055943],[124,158,66,-0.7607157410707013],[124,158,67,-0.7603607085666542],[124,158,68,-0.7600080516427299],[124,158,69,-0.7596577763056459],[124,158,70,-0.7593098884694649],[124,158,71,-0.7589643939551556],[124,158,72,-0.7586212984901519],[124,158,73,-0.7582806077079274],[124,158,74,-0.7579423271475394],[124,158,75,-0.7576064622532063],[124,158,76,-0.7572730183738695],[124,158,77,-0.7569420007627586],[124,158,78,-0.7566134145769594],[124,158,79,-0.7562872648769768],[124,159,64,-0.761588593921063],[124,159,65,-0.76122858492978],[124,159,66,-0.7608709384701187],[124,159,67,-0.7605156607356783],[124,159,68,-0.7601627578283099],[124,159,69,-0.7598122357576854],[124,159,70,-0.7594641004408561],[124,159,71,-0.7591183577018121],[124,159,72,-0.7587750132710422],[124,159,73,-0.7584340727851075],[124,159,74,-0.7580955417861877],[124,159,75,-0.7577594257216556],[124,159,76,-0.7574257299436415],[124,159,77,-0.7570944597085978],[124,159,78,-0.7567656201768661],[124,159,79,-0.7564392164122419],[124,160,64,-0.7617444294683353],[124,160,65,-0.7613841779872496],[124,160,66,-0.7610262882746581],[124,160,67,-0.7606707665270291],[124,160,68,-0.7603176188491146],[124,160,69,-0.7599668512535219],[124,160,70,-0.7596184696602706],[124,160,71,-0.7592724798963518],[124,160,72,-0.7589288876952899],[124,160,73,-0.7585876986967146],[124,160,74,-0.7582489184459074],[124,160,75,-0.7579125523933776],[124,160,76,-0.7575786058944254],[124,160,77,-0.7572470842087065],[124,160,78,-0.7569179924998006],[124,160,79,-0.7565913358347749],[124,161,64,-0.7619004146907578],[124,161,65,-0.7615399219480794],[124,161,66,-0.7611817902064967],[124,161,67,-0.7608260256653256],[124,161,68,-0.7604726344322001],[124,161,69,-0.7601216225226417],[124,161,70,-0.7597729958596179],[124,161,71,-0.759426760273102],[124,161,72,-0.7590829214996334],[124,161,73,-0.7587414851818911],[124,161,74,-0.7584024568682395],[124,161,75,-0.758065842012305],[124,161,76,-0.7577316459725383],[124,161,77,-0.7573998740117802],[124,161,78,-0.7570705312968299],[124,161,79,-0.7567436228980079],[124,162,64,-0.7620565493040796],[124,162,65,-0.7616958165304657],[124,162,66,-0.7613374439862718],[124,162,67,-0.7609814378736413],[124,162,68,-0.7606278043030683],[124,162,69,-0.7602765492929693],[124,162,70,-0.7599276787692394],[124,162,71,-0.759581198564814],[124,162,72,-0.7592371144192279],[124,162,73,-0.7588954319781898],[124,162,74,-0.7585561567931275],[124,162,75,-0.7582192943207652],[124,162,76,-0.7578848499226856],[124,162,77,-0.7575528288648958],[124,162,78,-0.7572232363173955],[124,162,79,-0.7568960773537403],[124,163,64,-0.7622128330225861],[124,163,65,-0.761851861451134],[124,163,66,-0.7614932493331431],[124,163,67,-0.761137002873563],[124,163,68,-0.7607831281857282],[124,163,69,-0.760431631290929],[124,163,70,-0.7600825181179688],[124,163,71,-0.7597357945027242],[124,163,72,-0.7593914661877064],[124,163,73,-0.7590495388216335],[124,163,74,-0.7587100179589781],[124,163,75,-0.7583729090595426],[124,163,76,-0.7580382174880227],[124,163,77,-0.7577059485135729],[124,163,78,-0.7573761073093748],[124,163,79,-0.7570486989522007],[124,164,64,-0.7623692655590797],[124,164,65,-0.7620080564253192],[124,164,66,-0.7616492059647716],[124,164,67,-0.7612927203851722],[124,164,68,-0.7609386058026752],[124,164,69,-0.7605868682414245],[124,164,70,-0.7602375136331111],[124,164,71,-0.7598905478165336],[124,164,72,-0.7595459765371589],[124,164,73,-0.7592038054466957],[124,164,74,-0.7588640401026414],[124,164,75,-0.7585266859678572],[124,164,76,-0.7581917484101334],[124,164,77,-0.7578592327017525],[124,164,78,-0.7575291440190595],[124,164,79,-0.7572014874420254],[124,165,64,-0.7625258466248587],[124,165,65,-0.7621644011667446],[124,165,66,-0.7618053135972993],[124,165,67,-0.7614485901270237],[124,165,68,-0.761094236874871],[124,165,69,-0.760742259867818],[124,165,70,-0.7603926650404231],[124,165,71,-0.760045458234387],[124,165,72,-0.7597006451981125],[124,165,73,-0.7593582315862792],[124,165,74,-0.7590182229593894],[124,165,75,-0.7586806247833447],[124,165,76,-0.7583454424290098],[124,165,77,-0.7580126811717772],[124,165,78,-0.7576823461911364],[124,165,79,-0.7573544425702379],[124,166,64,-0.7626825759297792],[124,166,65,-0.7623208953876828],[124,166,66,-0.7619615719454106],[124,166,67,-0.7616046118162071],[124,166,68,-0.761250021121804],[124,166,69,-0.7608978058919911],[124,166,70,-0.7605479720641738],[124,166,71,-0.7602005254829344],[124,166,72,-0.759855471899592],[124,166,73,-0.7595128169717771],[124,166,74,-0.7591725662629779],[124,166,75,-0.7588347252421166],[124,166,76,-0.7584992992831134],[124,166,77,-0.7581662936644517],[124,166,78,-0.7578357135687468],[124,166,79,-0.7575075640823103],[124,167,64,-0.7628394531822246],[124,167,65,-0.7624775387989273],[124,167,66,-0.762117980722302],[124,167,67,-0.7617607851683167],[124,167,68,-0.7614059582614606],[124,167,69,-0.761053506034316],[124,167,70,-0.7607034344271149],[124,167,71,-0.760355749287301],[124,167,72,-0.7600104563690901],[124,167,73,-0.7596675613330436],[124,167,74,-0.759327069745616],[124,167,75,-0.7589889870787309],[124,167,76,-0.7586533187093448],[124,167,77,-0.7583200699190129],[124,167,78,-0.7579892458934576],[124,167,79,-0.7576608517221333],[124,168,64,-0.7629964780891311],[124,168,65,-0.7626343311098159],[124,168,66,-0.7622745396397077],[124,168,67,-0.7619171098974769],[124,168,68,-0.7615620480103494],[124,168,69,-0.7612093600136794],[124,168,70,-0.7608590518505054],[124,168,71,-0.7605111293711124],[124,168,72,-0.7601655983325923],[124,168,73,-0.7598224643984185],[124,168,74,-0.7594817331379915],[124,168,75,-0.759143410026217],[124,168,76,-0.758807500443069],[124,168,77,-0.7584740096731549],[124,168,78,-0.7581429429052859],[124,168,79,-0.7578143052320402],[124,169,64,-0.7631536503559582],[124,169,65,-0.7627912720282025],[124,169,66,-0.7624312484078699],[124,169,67,-0.7620735857163121],[124,169,68,-0.7617182900834718],[124,169,69,-0.7613653675474537],[124,169,70,-0.7610148240540824],[124,169,71,-0.7606666654564643],[124,169,72,-0.7603208975145478],[124,169,73,-0.7599775258946972],[124,169,74,-0.7596365561692406],[124,169,75,-0.7592979938160458],[124,169,76,-0.7589618442180849],[124,169,77,-0.7586281126629992],[124,169,78,-0.758296804342669],[124,169,79,-0.7579679243527779],[124,170,64,-0.7633109696867495],[124,170,65,-0.762948361260517],[124,170,66,-0.7625881067355993],[124,170,67,-0.7622302123360085],[124,170,68,-0.7618746841943826],[124,170,69,-0.7615215283515571],[124,170,70,-0.7611707507561218],[124,170,71,-0.7608223572639844],[124,170,72,-0.7604763536379291],[124,170,73,-0.7601327455471922],[124,170,74,-0.7597915385670091],[124,170,75,-0.7594527381781906],[124,170,76,-0.7591163497666874],[124,170,77,-0.7587823786231553],[124,170,78,-0.7584508299425254],[124,170,79,-0.7581217088235678],[124,171,64,-0.7634684357841122],[124,171,65,-0.7631055985117455],[124,171,66,-0.762745114330255],[124,171,67,-0.7623869894662926],[124,171,68,-0.7620312300551704],[124,171,69,-0.7616778421404337],[124,171,70,-0.7613268316734179],[124,171,71,-0.7609782045128106],[124,171,72,-0.7606319664242127],[124,171,73,-0.7602881230797123],[124,171,74,-0.7599466800574322],[124,171,75,-0.7596076428411066],[124,171,76,-0.7592710168196455],[124,171,77,-0.7589368072867007],[124,171,78,-0.7586050194402343],[124,171,79,-0.7582756583820844],[124,172,64,-0.7636260483491968],[124,172,65,-0.7632629834854097],[124,172,66,-0.7629022708977244],[124,172,67,-0.7625439168154112],[124,172,68,-0.7621879273764359],[124,172,69,-0.7618343086270328],[124,172,70,-0.7614830665212621],[124,172,71,-0.7611342069205715],[124,172,72,-0.7607877355933581],[124,172,73,-0.7604436582145416],[124,172,74,-0.7601019803651128],[124,172,75,-0.7597627075317097],[124,172,76,-0.7594258451061825],[124,172,77,-0.7590913983851588],[124,172,78,-0.758759372569614],[124,172,79,-0.7584297727644351],[124,173,64,-0.7637838070817582],[124,173,65,-0.7634205158836276],[124,173,66,-0.7630595761424833],[124,173,67,-0.7627009940901925],[124,173,68,-0.7623447758673539],[124,173,69,-0.76199092752287],[124,173,70,-0.761639455013505],[124,173,71,-0.7612903642034471],[124,173,72,-0.7609436608638683],[124,173,73,-0.7605993506725008],[124,173,74,-0.7602574392131833],[124,173,75,-0.7599179319754382],[124,173,76,-0.7595808343540361],[124,173,77,-0.7592461516485619],[124,173,78,-0.7589138890629843],[124,173,79,-0.7585840517052208],[124,174,64,-0.7639417116801256],[124,174,65,-0.7635781954070843],[124,174,66,-0.7632170297675669],[124,174,67,-0.7628582209960162],[124,174,68,-0.7625017752356429],[124,174,69,-0.7621476985379971],[124,174,70,-0.7617959968625264],[124,174,71,-0.7614466760761383],[124,174,72,-0.7610997419527608],[124,174,73,-0.7607552001729176],[124,174,74,-0.760413056323276],[124,174,75,-0.7600733158962226],[124,174,76,-0.7597359842894295],[124,174,77,-0.7594010668054192],[124,174,78,-0.7590685686511353],[124,174,79,-0.7587384949375064],[124,175,64,-0.7640997618412282],[124,175,65,-0.7637360217550568],[124,175,66,-0.7633746314745942],[124,175,67,-0.7630155972368383],[124,175,68,-0.7626589251875904],[124,175,69,-0.7623046213810271],[124,175,70,-0.7619526917792591],[124,175,71,-0.7616031422518926],[124,175,72,-0.7612559785755916],[124,175,73,-0.7609112064336512],[124,175,74,-0.7605688314155468],[124,175,75,-0.7602288590165103],[124,175,76,-0.7598912946370953],[124,175,77,-0.7595561435827431],[124,175,78,-0.7592234110633526],[124,175,79,-0.7588931021928451],[124,176,64,-0.7642579572605644],[124,176,65,-0.7638939946253839],[124,176,66,-0.763532380963739],[124,176,67,-0.7631731225151617],[124,176,68,-0.7628162254280225],[124,176,69,-0.7624616957591045],[124,176,70,-0.7621095394731601],[124,176,71,-0.7617597624424743],[124,176,72,-0.7614123704464257],[124,176,73,-0.7610673691710617],[124,176,74,-0.7607247642086459],[124,176,75,-0.7603845610572353],[124,176,76,-0.7600467651202459],[124,176,77,-0.7597113817060182],[124,176,78,-0.7593784160273872],[124,176,79,-0.7590478732012482],[124,177,64,-0.7644162976322644],[124,177,65,-0.7640521137145275],[124,177,66,-0.7636902779337902],[124,177,67,-0.7633307965320966],[124,177,68,-0.7629736756603661],[124,177,69,-0.7626189213779664],[124,177,70,-0.7622665396522714],[124,177,71,-0.7619165363582244],[124,177,72,-0.7615689172778985],[124,177,73,-0.7612236881000728],[124,177,74,-0.7608808544197792],[124,177,75,-0.7605404217378804],[124,177,76,-0.7602023954606348],[124,177,77,-0.7598667808992629],[124,177,78,-0.7595335832695169],[124,177,79,-0.7592028076912468],[124,178,64,-0.7645747826490679],[124,178,65,-0.7642103787175522],[124,178,66,-0.7638483220821315],[124,178,67,-0.7634886189873409],[124,178,68,-0.763131275586627],[124,178,69,-0.7627762979419217],[124,178,70,-0.7624236920231996],[124,178,71,-0.7620734637080413],[124,178,72,-0.7617256187811947],[124,178,73,-0.7613801629341497],[124,178,74,-0.7610371017646869],[124,178,75,-0.7606964407764549],[124,178,76,-0.7603581853785352],[124,178,77,-0.7600223408850084],[124,178,78,-0.759688912514525],[124,178,79,-0.7593579053898706],[124,179,64,-0.7647334120023047],[124,179,65,-0.7643687893281046],[124,179,66,-0.7640065131047209],[124,179,67,-0.7636465895791582],[124,179,68,-0.7632890249073698],[124,179,69,-0.7629338251538302],[124,179,70,-0.7625809962910942],[124,179,71,-0.7622305441993593],[124,179,72,-0.761882474666027],[124,179,73,-0.7615367933852786],[124,179,74,-0.7611935059576233],[124,179,75,-0.7608526178894752],[124,179,76,-0.7605141345927194],[124,179,77,-0.7601780613842777],[124,179,78,-0.7598444034856793],[124,179,79,-0.7595131660226263],[124,180,64,-0.7648921853819555],[124,180,65,-0.7645273452384741],[124,180,66,-0.7641648506961515],[124,180,67,-0.7638047080044404],[124,180,68,-0.7634469233217791],[124,180,69,-0.7630915027151643],[124,180,70,-0.7627384521597099],[124,180,71,-0.7623877775382095],[124,180,72,-0.7620394846406982],[124,180,73,-0.761693579164028],[124,180,74,-0.7613500667114168],[124,180,75,-0.7610089527920247],[124,180,76,-0.7606702428205203],[124,180,77,-0.760333942116647],[124,180,78,-0.7600000559047937],[124,180,79,-0.75966858931356],[124,181,64,-0.7650511024766218],[124,181,65,-0.7646860461395634],[124,181,66,-0.7643233345496218],[124,181,67,-0.7639629739586764],[124,181,68,-0.7636049705276294],[124,181,69,-0.7632493303259786],[124,181,70,-0.7628960593313759],[124,181,71,-0.7625451634291904],[124,181,72,-0.7621966484120706],[124,181,73,-0.7618505199795189],[124,181,74,-0.7615067837374414],[124,181,75,-0.7611654451977243],[124,181,76,-0.7608265097778004],[124,181,77,-0.7604899828002152],[124,181,78,-0.7601558694921975],[124,181,79,-0.7598241749852258],[124,182,64,-0.7652101629735514],[124,182,65,-0.7648448917209133],[124,182,66,-0.7644819643569605],[124,182,67,-0.7641213871359778],[124,182,68,-0.76376316622131],[124,182,69,-0.7634073076849347],[124,182,70,-0.7630538175070208],[124,182,71,-0.7627027015754928],[124,182,72,-0.7623539656855911],[124,182,73,-0.762007615539449],[124,182,74,-0.7616636567456402],[124,182,75,-0.7613220948187575],[124,182,76,-0.7609829351789776],[124,182,77,-0.7606461831516289],[124,182,78,-0.7603118439667611],[124,182,79,-0.7599799227587115],[124,183,64,-0.7653693665586078],[124,183,65,-0.7650038816706727],[124,183,66,-0.7646407398085968],[124,183,67,-0.764279947229049],[124,183,68,-0.763921510097795],[124,183,69,-0.763565434489271],[124,183,70,-0.763211726386143],[124,183,71,-0.7628603916788687],[124,183,72,-0.762511436165261],[124,183,73,-0.7621648655500626],[124,183,74,-0.7618206854444958],[124,183,75,-0.7614789013658393],[124,183,76,-0.7611395187369944],[124,183,77,-0.7608025428860522],[124,183,78,-0.760467979045864],[124,183,79,-0.7601358323536076],[124,184,64,-0.7655287129163317],[124,184,65,-0.7651630156756599],[124,184,66,-0.7647996605936216],[124,184,67,-0.7644386539292478],[124,184,68,-0.7640800018507045],[124,184,69,-0.7637237104348652],[124,184,70,-0.7633697856668712],[124,184,71,-0.7630182334396935],[124,184,72,-0.7626690595536967],[124,184,73,-0.7623222697162128],[124,184,74,-0.7619778695410917],[124,184,75,-0.7616358645482784],[124,184,76,-0.761296260163379],[124,184,77,-0.7609590617172277],[124,184,78,-0.7606242744454582],[124,184,79,-0.7602919034880691],[124,185,64,-0.7656882017299209],[124,185,65,-0.7653222934213418],[124,185,66,-0.764958726399766],[124,185,67,-0.7645975069265653],[124,185,68,-0.7642386411722838],[124,185,69,-0.7638821352162116],[124,185,70,-0.7635279950459442],[124,185,71,-0.7631762265569453],[124,185,72,-0.76282683555211],[124,185,73,-0.7624798277413393],[124,185,74,-0.7621352087410909],[124,185,75,-0.7617929840739557],[124,185,76,-0.7614531591682248],[124,185,77,-0.7611157393574559],[124,185,78,-0.7607807298800455],[124,185,79,-0.7604481358787938],[124,186,64,-0.7658478326812082],[124,186,65,-0.7654817145918131],[124,186,66,-0.7651179369133817],[124,186,67,-0.7647565059096044],[124,186,68,-0.7643974277533826],[124,186,69,-0.7640407085264016],[124,186,70,-0.7636863542186899],[124,186,71,-0.763334370728183],[124,186,72,-0.7629847638602858],[124,186,73,-0.7626375393274483],[124,186,74,-0.7622927027487151],[124,186,75,-0.7619502596493033],[124,186,76,-0.7616102154601688],[124,186,77,-0.7612725755175735],[124,186,78,-0.7609373450626571],[124,186,79,-0.7606045292410016],[124,187,64,-0.7660076054507239],[124,187,65,-0.7656412788698578],[124,187,66,-0.765277291819501],[124,187,67,-0.7649156505656416],[124,187,68,-0.7645563612835162],[124,187,69,-0.7641994300571842],[124,187,70,-0.7638448628790859],[124,187,71,-0.763492665649608],[124,187,72,-0.7631428441766444],[124,187,73,-0.7627954041751732],[124,187,74,-0.7624503512668059],[124,187,75,-0.7621076909793658],[124,187,76,-0.7617674287464535],[124,187,77,-0.7614295699070155],[124,187,78,-0.7610941197049145],[124,187,79,-0.7607610832884963],[124,188,64,-0.766167519717674],[124,188,65,-0.7658009859369277],[124,188,66,-0.7654367908018169],[124,188,67,-0.7650749405806057],[124,188,68,-0.7647154414508446],[124,188,69,-0.7643582994989453],[124,188,70,-0.7640035207197396],[124,188,71,-0.7636511110160437],[124,188,72,-0.76330107619822],[124,188,73,-0.7629534219837542],[124,188,74,-0.7626081539968044],[124,188,75,-0.7622652777677795],[124,188,76,-0.7619247987329054],[124,188,77,-0.7615867222337931],[124,188,78,-0.7612510535170091],[124,188,79,-0.7609177977336432],[124,189,64,-0.7663275751599203],[124,189,65,-0.7659608354731222],[124,189,66,-0.7655964335426618],[124,189,67,-0.7652343756390572],[124,189,68,-0.7648746679421514],[124,189,69,-0.7645173165406872],[124,189,70,-0.7641623274318663],[124,189,71,-0.7638097065209135],[124,189,72,-0.7634594596206393],[124,189,73,-0.7631115924510162],[124,189,74,-0.7627661106387287],[124,189,75,-0.7624230197167507],[124,189,76,-0.7620823251239138],[124,189,77,-0.7617440322044732],[124,189,78,-0.76140814620768],[124,189,79,-0.7610746722873486],[124,190,64,-0.766487771454041],[124,190,65,-0.7661208271572493],[124,190,66,-0.7657562197230687],[124,190,67,-0.7653939554242494],[124,190,68,-0.7650340404429053],[124,190,69,-0.7646764808700891],[124,190,70,-0.7643212827053509],[124,190,71,-0.7639684518563035],[124,190,72,-0.7636179941381841],[124,190,73,-0.7632699152734318],[124,190,74,-0.7629242208912365],[124,190,75,-0.762580916527118],[124,190,76,-0.7622400076224922],[124,190,77,-0.7619014995242398],[124,190,78,-0.7615653974842765],[124,190,79,-0.7612317066591214],[124,191,64,-0.7666481082753007],[124,191,65,-0.7662809606667956],[124,191,66,-0.7659161490227414],[124,191,67,-0.7655536796180985],[124,191,68,-0.7651935586372302],[124,191,69,-0.7648357921734773],[124,191,70,-0.7644803862287177],[124,191,71,-0.7641273467129306],[124,191,72,-0.7637766794437595],[124,191,73,-0.7634283901460891],[124,191,74,-0.7630824844515944],[124,191,75,-0.7627389678983206],[124,191,76,-0.7623978459302485],[124,191,77,-0.7620591238968634],[124,191,78,-0.7617228070527267],[124,191,79,-0.7613889005570424],[124,192,64,-0.7668085852976756],[124,192,65,-0.7664412356779511],[124,192,66,-0.7660762211200789],[124,192,67,-0.7657135479012079],[124,192,68,-0.7653532222079292],[124,192,69,-0.7649952501358503],[124,192,70,-0.7646396376891552],[124,192,71,-0.7642863907801689],[124,192,72,-0.7639355152289199],[124,192,73,-0.7635870167627179],[124,192,74,-0.763240901015703],[124,192,75,-0.7628971735284245],[124,192,76,-0.7625558397474087],[124,192,77,-0.7622169050247256],[124,192,78,-0.7618803746175624],[124,192,79,-0.7615462536877887],[124,193,64,-0.7669692021938233],[124,193,65,-0.766601651865579],[124,193,66,-0.7662364356921458],[124,193,67,-0.7658735599528388],[124,193,68,-0.7655130308364553],[124,193,69,-0.765154854440848],[124,193,70,-0.7647990367724857],[124,193,71,-0.764445583746018],[124,193,72,-0.7640945011838378],[124,193,73,-0.7637457948156586],[124,193,74,-0.7633994702780651],[124,193,75,-0.7630555331140911],[124,193,76,-0.7627139887727872],[124,193,77,-0.7623748426087891],[124,193,78,-0.762038099881889],[124,193,79,-0.7617037657566036],[124,194,64,-0.7671299586351437],[124,194,65,-0.7667622089032773],[124,194,66,-0.766396792414733],[124,194,67,-0.766033715450971],[124,194,68,-0.7656729842029723],[124,194,69,-0.7653146047708135],[124,194,70,-0.7649585831632271],[124,194,71,-0.7646049252971656],[124,194,72,-0.7642536369973656],[124,194,73,-0.7639047239959242],[124,194,74,-0.7635581919318493],[124,194,75,-0.7632140463506389],[124,194,76,-0.7628722927038483],[124,194,77,-0.7625329363486583],[124,194,78,-0.7621959825474469],[124,194,79,-0.7618614364673578],[124,195,64,-0.7672908542917587],[124,195,65,-0.7669229064633576],[124,195,66,-0.7665572909623377],[124,195,67,-0.7661940140722818],[124,195,68,-0.7658330819863336],[124,195,69,-0.7654745008067717],[124,195,70,-0.7651182765445709],[124,195,71,-0.7647644151189656],[124,195,72,-0.7644129223570149],[124,195,73,-0.7640638039931783],[124,195,74,-0.763717065668867],[124,195,75,-0.7633727129320226],[124,195,76,-0.7630307512366846],[124,195,77,-0.762691185942559],[124,195,78,-0.7623540223145902],[124,195,79,-0.7620192655225287],[124,196,64,-0.7674518888324907],[124,196,65,-0.7670837442168239],[124,196,66,-0.766717931008141],[124,196,67,-0.7663544554921256],[124,196,68,-0.7659933238640616],[124,196,69,-0.7656345422284088],[124,196,70,-0.765278116598362],[124,196,71,-0.7649240528954171],[124,196,72,-0.7645723569489342],[124,196,73,-0.7642230344957146],[124,196,74,-0.7638760911795519],[124,196,75,-0.7635315325508112],[124,196,76,-0.7631893640659957],[124,196,77,-0.7628495910873165],[124,196,78,-0.7625122188822645],[124,196,79,-0.7621772526231777],[124,197,64,-0.7676130619249244],[124,197,65,-0.7672447218334346],[124,197,66,-0.7668787122240703],[124,197,67,-0.7665150393845941],[124,197,68,-0.7661537095124087],[124,197,69,-0.7657947287141326],[124,197,70,-0.7654381030051598],[124,197,71,-0.765083838309226],[124,197,72,-0.7647319404579713],[124,197,73,-0.7643824151905182],[124,197,74,-0.7640352681530218],[124,197,75,-0.7636905048982499],[124,197,76,-0.7633481308851496],[124,197,77,-0.7630081514784172],[124,197,78,-0.7626705719480698],[124,197,79,-0.7623353974690132],[124,198,64,-0.7677743732353761],[124,198,65,-0.7674058389816716],[124,198,66,-0.767039634280769],[124,198,67,-0.7666757654224877],[124,198,68,-0.7663142386063273],[124,198,69,-0.7659550599410434],[124,198,70,-0.7655982354442078],[124,198,71,-0.7652437710417745],[124,198,72,-0.7648916725676427],[124,198,73,-0.764541945763235],[124,198,74,-0.7641945962770473],[124,198,75,-0.7638496296642298],[124,198,76,-0.763507051386153],[124,198,77,-0.7631668668099781],[124,198,78,-0.7628290812082288],[124,198,79,-0.762493699758359],[124,199,64,-0.767935822428919],[124,199,65,-0.7675670953287654],[124,199,66,-0.7672006968476208],[124,199,67,-0.7668366332773389],[124,199,68,-0.7664749108194944],[124,199,69,-0.766115535584958],[124,199,70,-0.7657585135934584],[124,199,71,-0.7654038507731459],[124,199,72,-0.765051552960158],[124,199,73,-0.7647016258981963],[124,199,74,-0.7643540752380771],[124,199,75,-0.764008906537312],[124,199,76,-0.763666125259675],[124,199,77,-0.7633257367747717],[124,199,78,-0.7629877463576122],[124,199,79,-0.7626521591881795],[124,200,64,-0.7680974091693527],[124,200,65,-0.7677284905406652],[124,200,66,-0.7673618995927197],[124,200,67,-0.7669976426193824],[124,200,68,-0.7666357258242807],[124,200,69,-0.7662761553203796],[124,200,70,-0.7659189371295418],[124,200,71,-0.7655640771820938],[124,200,72,-0.7652115813163897],[124,200,73,-0.7648614552783888],[124,200,74,-0.7645137047212073],[124,200,75,-0.7641683352046976],[124,200,76,-0.7638253521950166],[124,200,77,-0.7634847610641945],[124,200,78,-0.763146567089708],[124,200,79,-0.7628107754540485],[124,201,64,-0.7682591331192645],[124,201,65,-0.7678900242820994],[124,201,66,-0.7675232421829313],[124,201,67,-0.7671587931176165],[124,201,68,-0.7667966832918135],[124,201,69,-0.7664369188205592],[124,201,70,-0.7660795057278293],[124,201,71,-0.7657244499461046],[124,201,72,-0.7653717573159345],[124,201,73,-0.7650214335855157],[124,201,74,-0.7646734844102429],[124,201,75,-0.764327915352289],[124,201,76,-0.7639847318801729],[124,201,77,-0.7636439393683297],[124,201,78,-0.7633055430966824],[124,201,79,-0.7629695482502112],[124,202,64,-0.7684209939400086],[124,202,65,-0.7680516962165554],[124,202,66,-0.767684724283872],[124,202,67,-0.7673200844397823],[124,202,68,-0.7669577828919542],[124,202,69,-0.7665978257574744],[124,202,70,-0.76624021906241],[124,202,71,-0.7658849687413747],[124,202,72,-0.7655320806370923],[124,202,73,-0.7651815604999754],[124,202,74,-0.7648334139876765],[124,202,75,-0.7644876466646683],[124,202,76,-0.7641442640018117],[124,202,77,-0.7638032713759255],[124,202,78,-0.7634646740693596],[124,202,79,-0.7631284772695631],[124,203,64,-0.768582991291685],[124,203,65,-0.768213506006258],[124,203,66,-0.7678463455598872],[124,203,67,-0.7674815162523418],[124,203,68,-0.767119024293277],[124,203,69,-0.7667588758018076],[124,203,70,-0.7664010768060706],[124,203,71,-0.7660456332427906],[124,203,72,-0.7656925509568447],[124,203,73,-0.7653418357008404],[124,203,74,-0.7649934931346669],[124,203,75,-0.7646475288250763],[124,203,76,-0.7643039482452506],[124,203,77,-0.7639627567743728],[124,203,78,-0.7636239596971988],[124,203,79,-0.7632875622036271],[124,204,64,-0.7687451248332002],[124,204,65,-0.7683754533122309],[124,204,66,-0.7680081056741133],[124,204,67,-0.7676430882205403],[124,204,68,-0.7672804071631318],[124,204,69,-0.766920068623009],[124,204,70,-0.7665620786303569],[124,204,71,-0.7662064431239897],[124,204,72,-0.7658531679509165],[124,204,73,-0.7655022588659184],[124,204,74,-0.7651537215311006],[124,204,75,-0.7648075615154737],[124,204,76,-0.7644637842945207],[124,204,77,-0.7641223952497677],[124,204,78,-0.7637833996683572],[124,204,79,-0.7634468027426167],[124,205,64,-0.7689073942222382],[124,205,65,-0.7685375377942665],[124,205,66,-0.7681700042884473],[124,205,67,-0.7678048000083751],[124,205,68,-0.7674419311676123],[124,205,69,-0.7670814038892644],[124,205,70,-0.7667232242055426],[124,205,71,-0.7663673980573299],[124,205,72,-0.7660139312937451],[124,205,73,-0.7656628296717222],[124,205,74,-0.7653140988555616],[124,205,75,-0.764967744416511],[124,205,76,-0.7646237718323343],[124,205,77,-0.7642821864868805],[124,205,78,-0.7639429936696582],[124,205,79,-0.7636061985754041],[124,206,64,-0.7690697991152841],[124,206,65,-0.7686997591109501],[124,206,66,-0.7683320410635713],[124,206,67,-0.7679666512786207],[124,206,68,-0.7676035959715812],[124,206,69,-0.7672428812675209],[124,206,70,-0.7668845132006554],[124,206,71,-0.7665284977139143],[124,206,72,-0.7661748406585054],[124,206,73,-0.7658235477934943],[124,206,74,-0.7654746247853552],[124,206,75,-0.7651280772075529],[124,206,76,-0.7647839105401106],[124,206,77,-0.7644421301691805],[124,206,78,-0.7641027413866168],[124,206,79,-0.763765749389546],[124,207,64,-0.769232339167594],[124,207,65,-0.7688621169196306],[124,207,66,-0.7684942156589221],[124,207,67,-0.7681286416927982],[124,207,68,-0.76776540123864],[124,207,69,-0.7674045004234562],[124,207,70,-0.7670459452834448],[124,207,71,-0.7666897417635608],[124,207,72,-0.7663358957170792],[124,207,73,-0.7659844129051757],[124,207,74,-0.7656352989964781],[124,207,75,-0.7652885595666468],[124,207,76,-0.7649442000979442],[124,207,77,-0.7646022259788047],[124,207,78,-0.7642626425034085],[124,207,79,-0.7639254548712511],[124,208,64,-0.7693950140332569],[124,208,65,-0.7690246108764807],[124,208,66,-0.7686565277327527],[124,208,67,-0.7682907709112369],[124,208,68,-0.7679273466311902],[124,208,69,-0.7675662610215398],[124,208,70,-0.7672075201204449],[124,208,71,-0.766851129874863],[124,208,72,-0.7664970961401161],[124,208,73,-0.7661454246794683],[124,208,74,-0.7657961211636797],[124,208,75,-0.7654491911705856],[124,208,76,-0.7651046401846671],[124,208,77,-0.7647624735966201],[124,208,78,-0.7644226967029306],[124,208,79,-0.7640853147054433],[124,209,64,-0.7695578233651731],[124,209,65,-0.7691872406364765],[124,209,66,-0.7688189769421113],[124,209,67,-0.7684530385930529],[124,209,68,-0.7680894318104122],[124,209,69,-0.7677281627250125],[124,209,70,-0.7673692373769521],[124,209,71,-0.7670126617151701],[124,209,72,-0.7666584415970131],[124,209,73,-0.7663065827878133],[124,209,74,-0.765957090960441],[124,209,75,-0.7656099716948861],[124,209,76,-0.7652652304778271],[124,209,77,-0.7649228727022019],[124,209,78,-0.7645829036667815],[124,209,79,-0.7642453285757395],[124,210,64,-0.769720766815033],[124,210,65,-0.769350005853376],[124,210,66,-0.7689815629428195],[124,210,67,-0.7686154443961278],[124,210,68,-0.7682516564362434],[124,210,69,-0.7678902051958639],[124,210,70,-0.7675310967170044],[124,210,71,-0.767174336950564],[124,210,72,-0.7668199317558927],[124,210,73,-0.7664678869003685],[124,210,74,-0.7661182080589519],[124,210,75,-0.7657709008137661],[124,210,76,-0.7654259706536666],[124,210,77,-0.7650834229738118],[124,210,78,-0.764743263075238],[124,210,79,-0.7644054961644277],[124,211,64,-0.7698838440333783],[124,211,65,-0.7695129061797805],[124,211,66,-0.7691442853895343],[124,211,67,-0.7687779879771705],[124,211,68,-0.7684140201674408],[124,211,69,-0.7680523880948947],[124,211,70,-0.7676930978034426],[124,211,71,-0.7673361552459221],[124,211,72,-0.7669815662836641],[124,211,73,-0.7666293366860719],[124,211,74,-0.7662794721301748],[124,211,75,-0.7659319782002079],[124,211,76,-0.7655868603871834],[124,211,77,-0.7652441240884598],[124,211,78,-0.7649037746073177],[124,211,79,-0.764565817152529],[124,212,64,-0.7700470546695726],[124,212,65,-0.7696759412671044],[124,212,66,-0.7693071439357173],[124,212,67,-0.768940668991686],[124,212,68,-0.7685765226615491],[124,212,69,-0.7682147110816862],[124,212,70,-0.7678552402978802],[124,212,71,-0.7674981162648855],[124,212,72,-0.767143344845993],[124,212,73,-0.7667909318126096],[124,212,74,-0.7664408828438118],[124,212,75,-0.7660932035259264],[124,212,76,-0.7657478993521005],[124,212,77,-0.765404975721873],[124,212,78,-0.7650644379407484],[124,212,79,-0.7647262912197672],[124,213,64,-0.7702103983718247],[124,213,65,-0.7698391107655995],[124,213,66,-0.7694701382336595],[124,213,67,-0.769103487094001],[124,213,68,-0.7687391635749267],[124,213,69,-0.768377173814624],[124,213,70,-0.7680175238607272],[124,213,71,-0.7676602196698848],[124,213,72,-0.7673052671073264],[124,213,73,-0.7669526719464409],[124,213,74,-0.766602439868331],[124,213,75,-0.7662545764613937],[124,213,76,-0.7659090872208913],[124,213,77,-0.7655659775485211],[124,213,78,-0.7652252527519918],[124,213,79,-0.7648869180445922],[124,214,64,-0.7703738747871591],[124,214,65,-0.7700024143243246],[124,214,66,-0.7696332679344507],[124,214,67,-0.7692664419372321],[124,214,68,-0.7689019425627139],[124,214,69,-0.7685397759508686],[124,214,70,-0.7681799481511598],[124,214,71,-0.7678224651221086],[124,214,72,-0.767467332730861],[124,214,73,-0.7671145567527672],[124,214,74,-0.7667641428709343],[124,214,75,-0.7664160966758089],[124,214,76,-0.766070423664747],[124,214,77,-0.7657271292415844],[124,214,78,-0.7653862187162128],[124,214,79,-0.7650476973041498],[124,215,64,-0.7705374835614771],[124,215,65,-0.7701658515912074],[124,215,66,-0.7697965326880412],[124,215,67,-0.769429533173349],[124,215,68,-0.7690648592788955],[124,215,69,-0.7687025171464165],[124,215,70,-0.7683425128271822],[124,215,71,-0.7679848522815651],[124,215,72,-0.7676295413786061],[124,215,73,-0.767276585895594],[124,215,74,-0.7669259915176202],[124,215,75,-0.7665777638371594],[124,215,76,-0.76623190835364],[124,215,77,-0.7658884304730161],[124,215,78,-0.7655473355073422],[124,215,79,-0.7652086286743436],[124,216,64,-0.7707012243395355],[124,216,65,-0.7703294222130226],[124,216,66,-0.7699599321432199],[124,216,67,-0.7695927604531513],[124,216,68,-0.7692279133762785],[124,216,69,-0.7688653970560781],[124,216,70,-0.7685052175456054],[124,216,71,-0.7681473808070616],[124,216,72,-0.7677918927113606],[124,216,73,-0.7674387590377095],[124,216,74,-0.7670879854731617],[124,216,75,-0.7667395776121988],[124,216,76,-0.7663935409563016],[124,216,77,-0.766049880913521],[124,216,78,-0.7657086027980539],[124,216,79,-0.765369711829813],[124,217,64,-0.7708650967649254],[124,217,65,-0.7704931258353709],[124,217,66,-0.7701234659475936],[124,217,67,-0.7697561234262483],[124,217,68,-0.7693911045064712],[124,217,69,-0.7690284153334574],[124,217,70,-0.7686680619620245],[124,217,71,-0.768310050356181],[124,217,72,-0.7679543863886927],[124,217,73,-0.7676010758406624],[124,217,74,-0.7672501244010843],[124,217,75,-0.7669015376664262],[124,217,76,-0.7665553211402],[124,217,77,-0.7662114802325326],[124,217,78,-0.7658700202597429],[124,217,79,-0.765530946443911],[124,218,64,-0.7710291004801335],[124,218,65,-0.7706569621027399],[124,218,66,-0.7702871337476481],[124,218,67,-0.7699196217411202],[124,218,68,-0.7695544323199446],[124,218,69,-0.7691915716310123],[124,218,70,-0.7688310457308817],[124,218,71,-0.7684728605853461],[124,218,72,-0.7681170220690011],[124,218,73,-0.7677635359648239],[124,218,74,-0.7674124079637286],[124,218,75,-0.7670636436641475],[124,218,76,-0.7667172485716024],[124,218,77,-0.7663732280982762],[124,218,78,-0.7660315875625886],[124,218,79,-0.7656923321887668],[124,219,64,-0.7711932351265209],[124,219,65,-0.7708209306584842],[124,219,66,-0.7704509351887269],[124,219,67,-0.7700832550450967],[124,219,68,-0.7697178964660107],[124,219,69,-0.7693548656000343],[124,219,70,-0.7689941685054438],[124,219,71,-0.7686358111497955],[124,219,72,-0.768279799409493],[124,219,73,-0.7679261390693664],[124,219,74,-0.7675748358222279],[124,219,75,-0.7672258952684534],[124,219,76,-0.7668793229155537],[124,219,77,-0.7665351241777465],[124,219,78,-0.7661933043755318],[124,219,79,-0.7658538687352636],[124,220,64,-0.7713575003443016],[124,220,65,-0.7709850311448019],[124,220,66,-0.7706148699150097],[124,220,67,-0.7702470229843349],[124,220,68,-0.7698814965928016],[124,220,69,-0.769518296890626],[124,220,70,-0.7691574299377809],[124,220,71,-0.7687989017035632],[124,220,72,-0.7684427180661628],[124,220,73,-0.7680888848122409],[124,220,74,-0.7677374076364865],[124,220,75,-0.7673882921411979],[124,220,76,-0.7670415438358535],[124,220,77,-0.7666971681366851],[124,220,78,-0.7663551703662528],[124,220,79,-0.7660155557530166],[124,221,64,-0.7715218957726041],[124,221,65,-0.7711492632027978],[124,221,66,-0.770778937569574],[124,221,67,-0.7704109252038822],[124,221,68,-0.7700452323473304],[124,221,69,-0.7696818651517636],[124,221,70,-0.7693208296788283],[124,221,71,-0.7689621318995405],[124,221,72,-0.7686057776938541],[124,221,73,-0.7682517728502399],[124,221,74,-0.7679001230652422],[124,221,75,-0.76755083394306],[124,221,76,-0.7672039109951192],[124,221,77,-0.766859359639644],[124,221,78,-0.766517185201234],[124,221,79,-0.7661773929104349],[124,222,64,-0.7716864210494406],[124,222,65,-0.7713136264724518],[124,222,66,-0.7709431377943645],[124,222,67,-0.7705749613476442],[124,222,68,-0.7702091033754608],[124,222,69,-0.7698455700312652],[124,222,70,-0.7694843673783555],[124,222,71,-0.7691255013894446],[124,222,72,-0.7687689779462282],[124,222,73,-0.7684148028389657],[124,222,74,-0.7680629817660344],[124,222,75,-0.7677135203335134],[124,222,76,-0.7673664240547541],[124,222,77,-0.767021698349953],[124,222,78,-0.7666793485457283],[124,222,79,-0.7663393798746908],[124,223,64,-0.7718510758117321],[124,223,65,-0.7714781205926444],[124,223,66,-0.7711074702302174],[124,223,67,-0.7707391310584105],[124,223,68,-0.7703731093219317],[124,223,69,-0.7700094111758161],[124,223,70,-0.7696480426849908],[124,223,71,-0.7692890098238432],[124,223,72,-0.7689323184757895],[124,223,73,-0.7685779744328549],[124,223,74,-0.7682259833952294],[124,223,75,-0.7678763509708498],[124,223,76,-0.7675290826749726],[124,223,77,-0.7671841839297453],[124,223,78,-0.766841660063784],[124,223,79,-0.766501516311744],[124,224,64,-0.772015859695277],[124,224,65,-0.7716427452011247],[124,224,66,-0.77127193451683],[124,224,67,-0.7709034339778226],[124,224,68,-0.7705372498303263],[124,224,69,-0.7701733882309375],[124,224,70,-0.7698118552461901],[124,224,71,-0.7694526568521239],[124,224,72,-0.7690957989338534],[124,224,73,-0.7687412872851481],[124,224,74,-0.7683891276079886],[124,224,75,-0.7680393255121488],[124,224,76,-0.7676918865147685],[124,224,77,-0.7673468160399255],[124,224,78,-0.7670041194182127],[124,224,79,-0.76666380188631],[124,225,64,-0.7721807723348132],[124,225,65,-0.7718074999345736],[124,225,66,-0.7714365302928222],[124,225,67,-0.7710678697464367],[124,225,68,-0.7707015245431339],[124,225,69,-0.7703375008410487],[124,225,70,-0.7699758047082993],[124,225,71,-0.7696164421225559],[124,225,72,-0.769259418970609],[124,225,73,-0.7689047410479511],[124,225,74,-0.7685524140583314],[124,225,75,-0.7682024436133394],[124,225,76,-0.7678548352319774],[124,225,77,-0.767509594340232],[124,225,78,-0.7671667262706529],[124,225,79,-0.7668262362619229],[124,226,64,-0.7723458133639965],[124,226,65,-0.7719723844285808],[124,226,66,-0.7716012571957152],[124,226,67,-0.7712324380037019],[124,226,68,-0.7708659331017282],[124,226,69,-0.770501748649445],[124,226,70,-0.7701398907165322],[124,226,71,-0.769780365282268],[124,226,72,-0.7694231782350974],[124,226,73,-0.7690683353722134],[124,226,74,-0.7687158423991125],[124,226,75,-0.7683657049291786],[124,226,76,-0.7680179284832543],[124,226,77,-0.7676725184892155],[124,226,78,-0.7673294802815462],[124,226,79,-0.7669888191009131],[124,227,64,-0.7725109824153792],[124,227,65,-0.7721373983176238],[124,227,66,-0.7717661148619088],[124,227,67,-0.7713971383879379],[124,227,68,-0.7710304751463456],[124,227,69,-0.770666131298276],[124,227,70,-0.7703041129149484],[124,227,71,-0.7699444259772271],[124,227,72,-0.769587076375189],[124,227,73,-0.769232069907706],[124,227,74,-0.7688794122820002],[124,227,75,-0.7685291091132282],[124,227,76,-0.7681811659240525],[124,227,77,-0.7678355881442157],[124,227,78,-0.7674923811101169],[124,227,79,-0.7671515500643845],[124,228,64,-0.772676279120471],[124,228,65,-0.7723025412351302],[124,228,66,-0.771931102926745],[124,228,67,-0.7715619705363975],[124,228,68,-0.7711951503161467],[124,228,69,-0.7708306484286075],[124,228,70,-0.770468470946516],[124,228,71,-0.7701086238523],[124,228,72,-0.7697511130376462],[124,228,73,-0.7693959443030837],[124,228,74,-0.7690431233575385],[124,228,75,-0.7686926558179183],[124,228,76,-0.7683445472086844],[124,228,77,-0.7679988029614248],[124,228,78,-0.7676554284144327],[124,228,79,-0.7673144288122781],[124,229,64,-0.7728417031097092],[124,229,65,-0.7724678128134457],[124,229,66,-0.7720962210244752],[124,229,67,-0.7717269340852352],[124,229,68,-0.7713599582491861],[124,229,69,-0.7709952996803908],[124,229,70,-0.7706329644530798],[124,229,71,-0.7702729585512219],[124,229,72,-0.7699152878680919],[124,229,73,-0.769559958205854],[124,229,74,-0.7692069752751162],[124,229,75,-0.7688563446945157],[124,229,76,-0.768508071990291],[124,229,77,-0.7681621625958552],[124,229,78,-0.7678186218513743],[124,229,79,-0.767477455003339],[124,230,64,-0.7730072540124826],[124,230,65,-0.7726332126838595],[124,230,66,-0.7722614687882859],[124,230,67,-0.7718920286695318],[124,230,68,-0.7715248985824361],[124,230,69,-0.7711600846924869],[124,230,70,-0.7707975930753863],[124,230,71,-0.7704374297166219],[124,230,72,-0.7700796005110346],[124,230,73,-0.7697241112624011],[124,230,74,-0.7693709676829905],[124,230,75,-0.7690201753931477],[124,230,76,-0.7686717399208667],[124,230,77,-0.7683256667013649],[124,230,78,-0.7679819610766597],[124,230,79,-0.7676406282951422],[124,231,64,-0.7731729314571012],[124,231,65,-0.7727987404765732],[124,231,66,-0.7724268458502677],[124,231,67,-0.772057253923264],[124,231,68,-0.7716899709517563],[124,231,69,-0.7713250031026352],[124,231,70,-0.7709623564530521],[124,231,71,-0.7706020369899911],[124,231,72,-0.7702440506098363],[124,231,73,-0.7698884031179557],[124,231,74,-0.7695351002282568],[124,231,75,-0.7691841475627712],[124,231,76,-0.7688355506512274],[124,231,77,-0.768489314930625],[124,231,78,-0.7681454457448126],[124,231,79,-0.7678039483440604],[124,232,64,-0.7733387350708572],[124,232,65,-0.7729643958207622],[124,232,66,-0.7725923518414766],[124,232,67,-0.7722226094793652],[124,232,68,-0.7718551749919551],[124,232,69,-0.7714900545475162],[124,232,70,-0.7711272542246268],[124,232,71,-0.7707667800117445],[124,232,72,-0.7704086378067752],[124,232,73,-0.7700528334166556],[124,232,74,-0.7696993725569102],[124,232,75,-0.7693482608512354],[124,232,76,-0.7689995038310726],[124,232,77,-0.768653106935183],[124,232,78,-0.7683090755092246],[124,232,79,-0.7679674148053266],[124,233,64,-0.7735046644800039],[124,233,65,-0.7731301783445548],[124,233,66,-0.7727579863919126],[124,233,67,-0.7723880949697048],[124,233,68,-0.7720205103367682],[124,233,69,-0.7716552386627292],[124,233,70,-0.77129228602757],[124,233,71,-0.7709316584211998],[124,233,72,-0.7705733617430237],[124,233,73,-0.7702174018015252],[124,233,74,-0.7698637843138237],[124,233,75,-0.7695125149052591],[124,233,76,-0.769163599108964],[124,233,77,-0.7688170423654398],[124,233,78,-0.7684728500221334],[124,233,79,-0.7681310273330118],[124,234,64,-0.7736707193097339],[124,234,65,-0.7732960876750095],[124,234,66,-0.7729237491304979],[124,234,67,-0.7725537100250658],[124,234,68,-0.7721859766188364],[124,234,69,-0.7718205550827699],[124,234,70,-0.77145745149823],[124,234,71,-0.7710966718565547],[124,234,72,-0.770738222058626],[124,234,73,-0.7703821079144523],[124,234,74,-0.770028335142726],[124,234,75,-0.7696769093704083],[124,234,76,-0.7693278361323025],[124,234,77,-0.7689811208706281],[124,234,78,-0.7686367689346003],[124,234,79,-0.7682947855800026],[124,235,64,-0.7738368991842404],[124,235,65,-0.7734621234381774],[124,235,66,-0.7730896396851386],[124,235,67,-0.7727194542752064],[124,235,68,-0.7723515734697676],[124,235,69,-0.7719860034410934],[124,235,70,-0.7716227502719057],[124,235,71,-0.7712618199549495],[124,235,72,-0.7709032183925606],[124,235,73,-0.7705469513962507],[124,235,74,-0.7701930246862635],[124,235,75,-0.7698414438911596],[124,235,76,-0.7694922145473908],[124,235,77,-0.7691453420988745],[124,235,78,-0.7688008318965724],[124,235,79,-0.7684586891980639],[124,236,64,-0.7740032037266871],[124,236,65,-0.7736282852590712],[124,236,66,-0.7732556576826937],[124,236,67,-0.7728853273488296],[124,236,68,-0.772517300520106],[124,236,69,-0.7721515833700819],[124,236,70,-0.7717881819828154],[124,236,71,-0.7714271023524348],[124,236,72,-0.7710683503827088],[124,236,73,-0.7707119318866293],[124,236,74,-0.7703578525859691],[124,236,75,-0.770006118110867],[124,236,76,-0.7696567339994023],[124,236,77,-0.7693097056971677],[124,236,78,-0.768965038556851],[124,236,79,-0.7686227378378067],[124,237,64,-0.774169632559232],[124,237,65,-0.7737945727616896],[124,237,66,-0.7734218027489999],[124,237,67,-0.7730513288736074],[124,237,68,-0.7726831573993563],[124,237,69,-0.7723172945010706],[124,237,70,-0.7719537462641212],[124,237,71,-0.7715925186839979],[124,237,72,-0.7712336176658793],[124,237,73,-0.7708770490242156],[124,237,74,-0.770522818482287],[124,237,75,-0.7701709316717886],[124,237,76,-0.7698213941324046],[124,237,77,-0.7694742113113834],[124,237,78,-0.7691293885631166],[124,237,79,-0.768786931148713],[124,238,64,-0.7743361853029965],[124,238,65,-0.7739609855689858],[124,238,66,-0.7735880745088399],[124,238,67,-0.7732174584761495],[124,238,68,-0.7728491437359524],[124,238,69,-0.7724831364643145],[124,238,70,-0.7721194427478975],[124,238,71,-0.7717580685835296],[124,238,72,-0.7713990198777765],[124,238,73,-0.771042302446525],[124,238,74,-0.7706879220145405],[124,238,75,-0.7703358842150526],[124,238,76,-0.7699861945893292],[124,238,77,-0.7696388585862524],[124,238,78,-0.7692938815618968],[124,238,79,-0.7689512687791044],[124,239,64,-0.7745028615781275],[124,239,65,-0.7741275233029303],[124,239,66,-0.7737544725860053],[124,239,67,-0.7733837157820657],[124,239,68,-0.77301525915732],[124,239,69,-0.7726491088890531],[124,239,70,-0.772285271065194],[124,239,71,-0.7719237516838872],[124,239,72,-0.7715645566530633],[124,239,73,-0.7712076917900231],[124,239,74,-0.7708531628209951],[124,239,75,-0.7705009753807217],[124,239,76,-0.7701511350120331],[124,239,77,-0.7698036471654233],[124,239,78,-0.7694585171986288],[124,239,79,-0.769115750376204],[124,240,64,-0.7746696610037758],[124,240,65,-0.7742941855844883],[124,240,66,-0.7739209966032734],[124,240,67,-0.7735501004159432],[124,240,68,-0.7731815032898537],[124,240,69,-0.7728152114034856],[124,240,70,-0.7724512308460125],[124,240,71,-0.7720895676168724],[124,240,72,-0.7717302276253385],[124,240,73,-0.7713732166901031],[124,240,74,-0.7710185405388359],[124,240,75,-0.7706662048077701],[124,240,76,-0.7703162150412767],[124,240,77,-0.7699685766914398],[124,240,78,-0.7696232951176373],[124,240,79,-0.7692803755861143],[124,241,64,-0.7748365831980729],[124,241,65,-0.7744609720335981],[124,241,66,-0.7740876461823862],[124,241,67,-0.7737166120013256],[124,241,68,-0.7733478757588959],[124,241,69,-0.772981443634751],[124,241,70,-0.7726173217192859],[124,241,71,-0.7722555160132093],[124,241,72,-0.7718960324271147],[124,241,73,-0.7715388767810636],[124,241,74,-0.771184054804145],[124,241,75,-0.7708315721340608],[124,241,76,-0.770481434316701],[124,241,77,-0.7701336468057189],[124,241,78,-0.7697882149621116],[124,241,79,-0.7694451440537946],[124,242,64,-0.775003627778195],[124,242,65,-0.7746278822692327],[124,242,66,-0.7742544209441125],[124,242,67,-0.773883250160774],[124,242,68,-0.7735143761887983],[124,242,69,-0.7731478052089886],[124,242,70,-0.7727835433129389],[124,242,71,-0.7724215965026059],[124,242,72,-0.7720619706898804],[124,242,73,-0.7717046716961713],[124,242,74,-0.7713497052519643],[124,242,75,-0.7709970769964085],[124,242,76,-0.7706467924768909],[124,242,77,-0.7702988571486126],[124,242,78,-0.7699532763741688],[124,242,79,-0.769610055423124],[124,243,64,-0.7751707943603297],[124,243,65,-0.7747949159093693],[124,243,66,-0.7744213205082153],[124,243,67,-0.7740500145158363],[124,243,68,-0.7736810042028905],[124,243,69,-0.773314295751308],[124,243,70,-0.772949895253858],[124,243,71,-0.7725878087137232],[124,243,72,-0.7722280420440689],[124,243,73,-0.7718706010676288],[124,243,74,-0.7715154915162639],[124,243,75,-0.7711627190305476],[124,243,76,-0.7708122891593427],[124,243,77,-0.7704642073593766],[124,243,78,-0.770118478994821],[124,243,79,-0.7697751093368683],[124,244,64,-0.7753380825597022],[124,244,65,-0.7749620725710132],[124,244,66,-0.7745883444934785],[124,244,67,-0.7742169046870717],[124,244,68,-0.7738477594235053],[124,244,69,-0.7734809148858124],[124,244,70,-0.7731163771679157],[124,244,71,-0.7727541522741999],[124,244,72,-0.7723942461190827],[124,244,73,-0.7720366645266004],[124,244,74,-0.7716814132299661],[124,244,75,-0.7713284978711571],[124,244,76,-0.7709779240004895],[124,244,77,-0.7706296970761948],[124,244,78,-0.770283822464001],[124,244,79,-0.7699403054367067],[124,245,64,-0.775505491990543],[124,245,65,-0.7751293518701663],[124,245,66,-0.7747554925176733],[124,245,67,-0.7743839202940188],[124,245,68,-0.774014641471946],[124,245,69,-0.7736476622355684],[124,245,70,-0.7732829886799383],[124,245,71,-0.77292062681062],[124,245,72,-0.7725605825432613],[124,245,73,-0.7722028617031783],[124,245,74,-0.7718474700249146],[124,245,75,-0.7714944131518284],[124,245,76,-0.7711436966356678],[124,245,77,-0.7707953259361475],[124,245,78,-0.7704493064205292],[124,245,79,-0.7701056433631974],[124,246,64,-0.7756730222661505],[124,246,65,-0.7752967534218904],[124,246,66,-0.7749227641976221],[124,246,67,-0.7745510609552585],[124,246,68,-0.7741816499685501],[124,246,69,-0.773814537422667],[124,246,70,-0.7734497294137688],[124,246,71,-0.7730872319485764],[124,246,72,-0.7727270509439446],[124,246,73,-0.7723691922264473],[124,246,74,-0.7720136615319362],[124,246,75,-0.7716604645051286],[124,246,76,-0.7713096066991826],[124,246,77,-0.7709610935752741],[124,246,78,-0.7706149305021778],[124,246,79,-0.7702711227558422],[124,247,64,-0.7758406729988689],[124,247,65,-0.7754642768402836],[124,247,66,-0.7750901591491755],[124,247,67,-0.7747183262883913],[124,247,68,-0.7743487845326658],[124,247,69,-0.7739815400682026],[124,247,70,-0.7736165989922447],[124,247,71,-0.7732539673126474],[124,247,72,-0.7728936509474499],[124,247,73,-0.772535655724461],[124,247,74,-0.7721799873808186],[124,247,75,-0.7718266515625769],[124,247,76,-0.7714756538242822],[124,247,77,-0.7711269996285501],[124,247,78,-0.7707806943456463],[124,247,79,-0.7704367432530631],[124,248,64,-0.7760084438000657],[124,248,65,-0.7756319217384593],[124,248,66,-0.7752576769871901],[124,248,67,-0.7748857159100155],[124,248,68,-0.7745160447826305],[124,248,69,-0.7741486697922492],[124,248,70,-0.7737835970371753],[124,248,71,-0.773420832526375],[124,248,72,-0.7730603821790495],[124,248,73,-0.7727022518242201],[124,248,74,-0.7723464472002883],[124,248,75,-0.7719929739546232],[124,248,76,-0.7716418376431375],[124,248,77,-0.771293043729865],[124,248,78,-0.770946597586541],[124,248,79,-0.7706025044921796],[124,249,64,-0.7761763342801944],[124,249,65,-0.7757996877286077],[124,249,66,-0.7754253173255912],[124,249,67,-0.7750532294357891],[124,249,68,-0.774683430335833],[124,249,69,-0.7743159262139243],[124,249,70,-0.7739507231694043],[124,249,71,-0.7735878272123272],[124,249,72,-0.7732272442630334],[124,249,73,-0.7728689801517341],[124,249,74,-0.7725130406180724],[124,249,75,-0.77215943131071],[124,249,76,-0.7718081577869041],[124,249,77,-0.7714592255120847],[124,249,78,-0.7711126398594358],[124,249,79,-0.7707684061094716],[124,250,64,-0.7763443440487721],[124,250,65,-0.7759675744219741],[124,250,66,-0.7755930797773503],[124,250,67,-0.7752208664804077],[124,250,68,-0.7748509408086911],[124,250,69,-0.7744833089513659],[124,250,70,-0.7741179770087876],[124,250,71,-0.7737549509920756],[124,250,72,-0.7733942368226867],[124,250,73,-0.7730358403319999],[124,250,74,-0.7726797672608768],[124,250,75,-0.7723260232592501],[124,250,76,-0.7719746138856995],[124,250,77,-0.7716255446070294],[124,250,78,-0.7712788207978506],[124,250,79,-0.7709344477401567],[124,251,64,-0.7765124727143569],[124,251,65,-0.7761355814288364],[124,251,66,-0.7757609639544627],[124,251,67,-0.7753886266575821],[124,251,68,-0.7750185758166293],[124,251,69,-0.7746508176217097],[124,251,70,-0.7742853581741703],[124,251,71,-0.773922203486173],[124,251,72,-0.7735613594802676],[124,251,73,-0.7732028319889783],[124,251,74,-0.7728466267543634],[124,251,75,-0.772492749427604],[124,251,76,-0.7721412055685805],[124,251,77,-0.77179200064545],[124,251,78,-0.7714451400342285],[124,251,79,-0.7711006290183677],[124,252,64,-0.7766807198846111],[124,252,65,-0.7763037083585675],[124,252,66,-0.7759289694680103],[124,252,67,-0.7755565095801012],[124,252,68,-0.7751863349741411],[124,252,69,-0.7748184518411526],[124,252,70,-0.7744528662834503],[124,252,71,-0.7740895843142156],[124,252,72,-0.7737286118570691],[124,252,73,-0.7733699547456572],[124,252,74,-0.7730136187232126],[124,252,75,-0.7726596094421427],[124,252,76,-0.7723079324636063],[124,252,77,-0.7719585932570916],[124,252,78,-0.7716115971999983],[124,252,79,-0.7712669495772149],[124,253,64,-0.7768490851662689],[124,253,65,-0.7764719548196036],[124,253,66,-0.7760970959281294],[124,253,67,-0.7757245148597997],[124,253,68,-0.7753542178947577],[124,253,69,-0.7749862112249197],[124,253,70,-0.7746205009535453],[124,253,71,-0.7742570930948117],[124,253,72,-0.7738959935733878],[124,253,73,-0.7735372082240196],[124,253,74,-0.7731807427910916],[124,253,75,-0.7728266029282153],[124,253,76,-0.7724747941978061],[124,253,77,-0.7721253220706611],[124,253,78,-0.7717781919255426],[124,253,79,-0.771433409048754],[124,254,64,-0.7770175681651613],[124,254,65,-0.7766403204194691],[124,254,66,-0.7762653429440356],[124,254,67,-0.7758926421075827],[124,254,68,-0.775522224191072],[124,254,69,-0.77515409538729],[124,254,70,-0.7747882618004178],[124,254,71,-0.774424729445606],[124,254,72,-0.7740635042485484],[124,254,73,-0.773704592045068],[124,254,74,-0.7733479985806788],[124,254,75,-0.7729937295101741],[124,254,76,-0.7726417903972036],[124,254,77,-0.7722921867138524],[124,254,78,-0.7719449238402227],[124,254,79,-0.7716000070640117],[124,255,64,-0.7771861684861845],[124,255,65,-0.7768088047647443],[124,255,66,-0.7764337101239924],[124,255,67,-0.7760608909333944],[124,255,68,-0.7756903534747073],[124,255,69,-0.775322103941564],[124,255,70,-0.7749561484390439],[124,255,71,-0.7745924929832477],[124,255,72,-0.7742311435008714],[124,255,73,-0.7738721058287925],[124,255,74,-0.7735153857136319],[124,255,75,-0.7731609888113422],[124,255,76,-0.7728089206867859],[124,255,77,-0.7724591868133132],[124,255,78,-0.7721117925723453],[124,255,79,-0.7717667432529519],[124,256,64,-0.7773548857333616],[124,256,65,-0.7769774074611286],[124,256,66,-0.7766021970753731],[124,256,67,-0.7762292609462805],[124,256,68,-0.7758586053563795],[124,256,69,-0.7754902365001263],[124,256,70,-0.7751241604834749],[124,256,71,-0.7747603833234533],[124,256,72,-0.7743989109477365],[124,256,73,-0.7740397491942337],[124,256,74,-0.7736829038106504],[124,256,75,-0.7733283804540765],[124,256,76,-0.7729761846905643],[124,256,77,-0.7726263219947085],[124,256,78,-0.7722787977492269],[124,256,79,-0.77193361724454],[124,257,64,-0.7775237195098216],[124,257,65,-0.7771461281134177],[124,257,66,-0.7767708034046384],[124,257,67,-0.7763977517543654],[124,257,68,-0.7760269794458752],[124,257,69,-0.7756584926744231],[124,257,70,-0.7752922975468153],[124,257,71,-0.7749284000809835],[124,257,72,-0.7745668062055588],[124,257,73,-0.7742075217594598],[124,257,74,-0.7738505524914534],[124,257,75,-0.7734959040597444],[124,257,76,-0.7731435820315541],[124,257,77,-0.7727935918826979],[124,257,78,-0.7724459389971698],[124,257,79,-0.7721006286667192],[124,258,64,-0.7776926694177757],[124,258,65,-0.777314966325481],[124,258,66,-0.7769395287173145],[124,258,67,-0.7765663629648301],[124,258,68,-0.7761954753520279],[124,258,69,-0.77582687207494],[124,258,70,-0.7754605592412004],[124,258,71,-0.7750965428696213],[124,258,72,-0.7747348288897676],[124,258,73,-0.7743754231415438],[124,258,74,-0.7740183313747563],[124,258,75,-0.7736635592487024],[124,258,76,-0.7733111123317493],[124,258,77,-0.7729609961009126],[124,258,78,-0.7726132159414396],[124,258,79,-0.7722677771463878],[124,259,64,-0.7778617350585805],[124,259,65,-0.7774839217003245],[124,259,66,-0.777108372618055],[124,259,67,-0.7767350941839741],[124,259,68,-0.7763640926827825],[124,259,69,-0.7759953743112641],[124,259,70,-0.7756289451778581],[124,259,71,-0.7752648113022342],[124,259,72,-0.7749029786148679],[124,259,73,-0.7745434529566267],[124,259,74,-0.7741862400783339],[124,259,75,-0.7738313456403572],[124,259,76,-0.7734787752121876],[124,259,77,-0.7731285342720182],[124,259,78,-0.7727806282063285],[124,259,79,-0.7724350623094624],[124,260,64,-0.778030916032706],[124,260,65,-0.7776529938400587],[124,260,66,-0.7772773347106096],[124,260,67,-0.7769039450171846],[124,260,68,-0.7765328310451612],[124,260,69,-0.776163998992052],[124,260,70,-0.7757974549670777],[124,260,71,-0.7754332049907425],[124,260,72,-0.7750712549944088],[124,260,73,-0.7747116108198849],[124,260,74,-0.7743542782189884],[124,260,75,-0.7739992628531346],[124,260,76,-0.7736465702929161],[124,260,77,-0.7732962060176822],[124,260,78,-0.7729481754151223],[124,260,79,-0.7726024837808451],[124,261,64,-0.7782002119397601],[124,261,65,-0.7778221823459233],[124,261,66,-0.7774464145978478],[124,261,67,-0.7770729150689601],[124,261,68,-0.7767016900452899],[124,261,69,-0.7763327457250553],[124,261,70,-0.7759660882182347],[124,261,71,-0.7756017235461433],[124,261,72,-0.7752396576410081],[124,261,73,-0.7748798963455553],[124,261,74,-0.7745224454125735],[124,261,75,-0.7741673105045038],[124,261,76,-0.7738144971930181],[124,261,77,-0.7734640109585994],[124,261,78,-0.7731158571901258],[124,261,79,-0.7727700411844486],[124,262,64,-0.7783696223784569],[124,262,65,-0.7779914868182553],[124,262,66,-0.7776156118817286],[124,262,67,-0.7772420039428791],[124,262,68,-0.7768706692883655],[124,262,69,-0.7765016141170872],[124,262,70,-0.7761348445397575],[124,262,71,-0.7757703665784791],[124,262,72,-0.7754081861663205],[124,262,73,-0.7750483091469025],[124,262,74,-0.7746907412739628],[124,262,75,-0.7743354882109452],[124,262,76,-0.773982555530579],[124,262,77,-0.773631948714459],[124,262,78,-0.7732836731526294],[124,262,79,-0.7729377341431636],[124,263,64,-0.7785391469466794],[124,263,65,-0.7781609068565517],[124,263,66,-0.7777849261633611],[124,263,67,-0.7774112112416622],[124,263,68,-0.7770397683787182],[124,263,69,-0.7766706037740865],[124,263,70,-0.7763037235391914],[124,263,71,-0.7759391336969004],[124,263,72,-0.7755768401810996],[124,263,73,-0.7752168488362823],[124,263,74,-0.7748591654171122],[124,263,75,-0.7745037955880134],[124,263,76,-0.7741507449227503],[124,263,77,-0.7738000189040072],[124,263,78,-0.7734516229229733],[124,263,79,-0.7731055622789216],[124,264,64,-0.7787087852414563],[124,264,65,-0.7783304420594465],[124,264,66,-0.7779543570429834],[124,264,67,-0.7775805365671498],[124,264,68,-0.7772089869197895],[124,264,69,-0.7768397143010941],[124,264,70,-0.7764727248231755],[124,264,71,-0.7761080245096423],[124,264,72,-0.7757456192951758],[124,264,73,-0.7753855150251184],[124,264,74,-0.7750277174550371],[124,264,75,-0.774672232250314],[124,264,76,-0.7743190649857261],[124,264,77,-0.7739682211450254],[124,264,78,-0.7736197061205237],[124,264,79,-0.7732735252126721],[124,265,64,-0.7788785368589405],[124,265,65,-0.7785000920246891],[124,265,66,-0.7781239041199399],[124,265,67,-0.7777499795202796],[124,265,68,-0.7773783245141092],[124,265,69,-0.7770089453022306],[124,265,70,-0.7766418479974196],[124,265,71,-0.7762770386240029],[124,265,72,-0.7759145231174335],[124,265,73,-0.7755543073238799],[124,265,74,-0.7751963969997899],[124,265,75,-0.774840797811481],[124,265,76,-0.7744875153347205],[124,265,77,-0.7741365550543059],[124,265,78,-0.7737879223636499],[124,265,79,-0.77344162256436],[124,266,64,-0.7790484013944708],[124,266,65,-0.7786698563492054],[124,266,66,-0.7782935669927427],[124,266,67,-0.7779195397011488],[124,266,68,-0.7775477807633581],[124,266,69,-0.7771782963807589],[124,266,70,-0.7768110926667675],[124,266,71,-0.776446175646405],[124,266,72,-0.7760835512558731],[124,266,73,-0.7757232253421438],[124,266,74,-0.7753652036625224],[124,266,75,-0.7750094918842396],[124,266,76,-0.7746560955840305],[124,266,77,-0.774305020247716],[124,266,78,-0.7739562712697876],[124,266,79,-0.7736098539529876],[124,267,64,-0.7792183784425402],[124,267,65,-0.7788397346290672],[124,267,66,-0.7784633452590408],[124,267,67,-0.7780892167089827],[124,267,68,-0.777717355268336],[124,267,69,-0.7773477671390521],[124,267,70,-0.7769804584351642],[124,267,71,-0.7766154351823642],[124,267,72,-0.7762527033175799],[124,267,73,-0.7758922686885628],[124,267,74,-0.7755341370534539],[124,267,75,-0.7751783140803739],[124,267,76,-0.7748248053470034],[124,267,77,-0.7744736163401647],[124,267,78,-0.7741247524554061],[124,267,79,-0.7737782189965831],[124,268,64,-0.7793884675968206],[124,268,65,-0.779009726459516],[124,268,66,-0.7786332385156443],[124,268,67,-0.7782590101421583],[124,268,68,-0.7778870476289861],[124,268,69,-0.7775173571786183],[124,268,70,-0.7771499449056811],[124,268,71,-0.7767848168365143],[124,268,72,-0.7764219789087476],[124,268,73,-0.7760614369708904],[124,268,74,-0.7757031967818955],[124,268,75,-0.7753472640107513],[124,268,76,-0.7749936442360617],[124,268,77,-0.7746423429456277],[124,268,78,-0.7742933655360332],[124,268,79,-0.7739467173122244],[124,269,64,-0.7795586684501308],[124,269,65,-0.7791798314349316],[124,269,66,-0.7788032463584925],[124,269,67,-0.7784289195981733],[124,269,68,-0.7780568574443634],[124,269,69,-0.7776870661000681],[124,269,70,-0.7773195516804836],[124,269,71,-0.7769543202125737],[124,269,72,-0.7765913776346474],[124,269,73,-0.7762307297959479],[124,269,74,-0.7758723824562177],[124,269,75,-0.7755163412852903],[124,269,76,-0.7751626118626703],[124,269,77,-0.7748111996771156],[124,269,78,-0.7744621101262228],[124,269,79,-0.7741153485160075],[124,270,64,-0.7797289805944988],[124,270,65,-0.7793500491488938],[124,270,66,-0.778973368382716],[124,270,67,-0.7785989446737082],[124,270,68,-0.7782267843126964],[124,270,69,-0.7778568935031775],[124,270,70,-0.7774892783608937],[124,270,71,-0.7771239449134092],[124,270,72,-0.776760899099689],[124,270,73,-0.7764001467696875],[124,270,74,-0.7760416936839138],[124,270,75,-0.7756855455130237],[124,270,76,-0.7753317078374],[124,270,77,-0.7749801861467355],[124,270,78,-0.7746309858396171],[124,270,79,-0.7742841122231086],[124,271,64,-0.7798994036211396],[124,271,65,-0.7795203791941606],[124,271,66,-0.7791436041826147],[124,271,67,-0.7787690849646034],[124,271,68,-0.7783968278313655],[124,271,69,-0.7780268389868654],[124,271,70,-0.7776591245473672],[124,271,71,-0.7772936905410128],[124,271,72,-0.7769305429073996],[124,271,73,-0.7765696874971698],[124,271,74,-0.7762111300715765],[124,271,75,-0.775854876302075],[124,271,76,-0.7755009317699042],[124,271,77,-0.7751493019656687],[124,271,78,-0.7747999922889248],[124,271,79,-0.7744530080477616],[124,272,64,-0.7800699371204325],[124,272,65,-0.7796908211626451],[124,272,66,-0.7793139533516349],[124,272,67,-0.7789393400658371],[124,272,68,-0.7785669875968795],[124,272,69,-0.77819690214917],[124,272,70,-0.7778290898394713],[124,272,71,-0.7774635566964788],[124,272,72,-0.7771003086603994],[124,272,73,-0.7767393515825401],[124,272,74,-0.7763806912248747],[124,272,75,-0.7760243332596358],[124,272,76,-0.7756702832688953],[124,272,77,-0.775318546744148],[124,272,78,-0.7749691290858967],[124,272,79,-0.7746220356032347],[124,273,64,-0.780240580681983],[124,273,65,-0.7798613746454781],[124,273,66,-0.7794844154824312],[124,273,67,-0.779109709571587],[124,273,68,-0.7787372632049383],[124,273,69,-0.7783670825873124],[124,273,70,-0.7779991738359465],[124,273,71,-0.7776335429800668],[124,273,72,-0.7772701959604656],[124,273,73,-0.7769091386290919],[124,273,74,-0.7765503767486175],[124,273,75,-0.7761939159920287],[124,273,76,-0.7758397619422088],[124,273,77,-0.77548792009152],[124,273,78,-0.7751383958413899],[124,273,79,-0.7747911945018936],[124,274,64,-0.7804113338945915],[124,274,65,-0.7800320392329763],[124,274,66,-0.7796549901668353],[124,274,67,-0.7792801930751992],[124,274,68,-0.778907654250401],[124,274,69,-0.7785373798976636],[124,274,70,-0.7781693761346754],[124,274,71,-0.777803648991169],[124,274,72,-0.7774402044084994],[124,274,73,-0.7770790482392342],[124,274,74,-0.7767201862467199],[124,274,75,-0.7763636241046747],[124,274,76,-0.7760093673967698],[124,274,77,-0.7756574216162129],[124,274,78,-0.7753077921653342],[124,274,79,-0.7749604843551687],[124,275,64,-0.7805821963462777],[124,275,65,-0.7802028145146662],[124,275,66,-0.7798256769958805],[124,275,67,-0.779450790169212],[124,275,68,-0.7790781603273103],[124,275,69,-0.7787077936757698],[124,275,70,-0.7783396963327063],[124,275,71,-0.7779738743283352],[124,275,72,-0.7776103336045508],[124,275,73,-0.777249080014516],[124,275,74,-0.7768901193222295],[124,275,75,-0.7765334572021179],[124,275,76,-0.7761790992386184],[124,275,77,-0.7758270509257614],[124,275,78,-0.7754773176667575],[124,275,79,-0.77512990477358],[124,276,64,-0.7807531676242482],[124,276,65,-0.7803737000792529],[124,276,66,-0.7799964755597688],[124,276,67,-0.7796215004453242],[124,276,68,-0.7792487810288604],[124,276,69,-0.7788783235163198],[124,276,70,-0.7785101340262214],[124,276,71,-0.7781442185892402],[124,276,72,-0.7777805831477861],[124,276,73,-0.7774192335555943],[124,276,74,-0.7770601755772923],[124,276,75,-0.7767034148879929],[124,276,76,-0.7763489570728761],[124,276,77,-0.7759968076267731],[124,276,78,-0.7756469719537527],[124,276,79,-0.7752994553667041],[124,277,64,-0.7809242473149592],[124,277,65,-0.7805446955146819],[124,277,66,-0.7801673854479343],[124,277,67,-0.7797923234944572],[124,277,68,-0.7794195159474595],[124,277,69,-0.7790489690132075],[124,277,70,-0.7786806888105996],[124,277,71,-0.7783146813707467],[124,277,72,-0.7779509526365509],[124,277,73,-0.7775895084622965],[124,277,74,-0.7772303546132169],[124,277,75,-0.7768734967650879],[124,277,76,-0.7765189405038101],[124,277,77,-0.7761666913249928],[124,277,78,-0.7758167546335408],[124,277,79,-0.7754691357432375],[124,278,64,-0.7810954350040942],[124,278,65,-0.7807158004081166],[124,278,66,-0.7803384062490198],[124,278,67,-0.7799632589067325],[124,278,68,-0.7795903646747071],[124,278,69,-0.7792197297595091],[124,278,70,-0.7788513602803931],[124,278,71,-0.7784852622688821],[124,278,72,-0.778121441668347],[124,278,73,-0.7777599043335977],[124,278,74,-0.7774006560304504],[124,278,75,-0.7770437024353214],[124,278,76,-0.7766890491348091],[124,278,77,-0.7763367016252783],[124,278,78,-0.7759866653124479],[124,278,79,-0.7756389455109732],[124,279,64,-0.7812667302765406],[124,279,65,-0.7808870143459159],[124,279,66,-0.7805095375508547],[124,279,67,-0.780134306271449],[124,279,68,-0.7797613268013708],[124,279,69,-0.7793906053474607],[124,279,70,-0.7790221480293054],[124,279,71,-0.7786559608788161],[124,279,72,-0.7782920498398092],[124,279,73,-0.7779304207675971],[124,279,74,-0.777571079428556],[124,279,75,-0.7772140314997191],[124,279,76,-0.7768592825683605],[124,279,77,-0.776506838131578],[124,279,78,-0.7761567035958818],[124,279,79,-0.7758088842767777],[124,280,64,-0.7814381327164523],[124,280,65,-0.7810583369136962],[124,280,66,-0.780680778940517],[124,280,67,-0.7803054651771457],[124,280,68,-0.7799324019174494],[124,280,69,-0.7795615953685203],[124,280,70,-0.7791930516502527],[124,280,71,-0.7788267767949227],[124,280,72,-0.7784627767467687],[124,280,73,-0.7781010573615821],[124,280,74,-0.7777416244062757],[124,280,75,-0.7773844835584774],[124,280,76,-0.7770296404061137],[124,280,77,-0.7766771004469931],[124,280,78,-0.7763268690883954],[124,280,79,-0.775978951646654],[124,281,64,-0.7816096419072185],[124,281,65,-0.7812297676962993],[124,281,66,-0.780852130004301],[124,281,67,-0.7804767352115689],[124,281,68,-0.7801035896121407],[124,281,69,-0.7797326994133359],[124,281,70,-0.7793640707353328],[124,281,71,-0.7789977096107487],[124,281,72,-0.77863362198422],[124,281,73,-0.7782718137119943],[124,281,74,-0.7779122905614977],[124,281,75,-0.77755505821093],[124,281,76,-0.7772001222488469],[124,281,77,-0.7768474881737459],[124,281,78,-0.7764971613936533],[124,281,79,-0.7761491472257087],[124,282,64,-0.7817812574314866],[124,282,65,-0.7814013062778173],[124,282,66,-0.7810235903277425],[124,282,67,-0.7806481159616971],[124,282,68,-0.7802748894738654],[124,282,69,-0.7799039170717699],[124,282,70,-0.7795352048758489],[124,282,71,-0.7791687589190373],[124,282,72,-0.7788045851463459],[124,282,73,-0.7784426894144549],[124,282,74,-0.7780830774912811],[124,282,75,-0.7777257550555726],[124,282,76,-0.7773707276964925],[124,282,77,-0.7770180009132037],[124,282,78,-0.7766675801144574],[124,282,79,-0.7763194706181767],[124,283,64,-0.7819529788711318],[124,283,65,-0.7815729522415603],[124,283,66,-0.7811951594955859],[124,283,67,-0.7808196070137089],[124,283,68,-0.7804463010902354],[124,283,69,-0.7800752479328669],[124,283,70,-0.7797064536622778],[124,283,71,-0.7793399243116963],[124,283,72,-0.7789756658264848],[124,283,73,-0.7786136840637325],[124,283,74,-0.7782539847918233],[124,283,75,-0.7778965736900312],[124,283,76,-0.7775414563481033],[124,283,77,-0.7771886382658462],[124,283,78,-0.7768381248527129],[124,283,79,-0.7764899214273886],[124,284,64,-0.782124805807318],[124,284,65,-0.7817447051701185],[124,284,66,-0.7813668370918473],[124,284,67,-0.7809912079530452],[124,284,68,-0.780617824048116],[124,284,69,-0.7802466915849159],[124,284,70,-0.7798778166843314],[124,284,71,-0.7795112053798606],[124,284,72,-0.7791468636171935],[124,284,73,-0.7787847972538048],[124,284,74,-0.7784250120585228],[124,284,75,-0.7780675137111236],[124,284,76,-0.7777123078019167],[124,284,77,-0.7773593998313284],[124,284,78,-0.7770087952094924],[124,284,79,-0.7766604992558332],[124,285,64,-0.7822967378204759],[124,285,65,-0.7819165646453398],[124,285,66,-0.7815386226997909],[124,285,67,-0.7811629183643864],[124,285,68,-0.7807894579336032],[124,285,69,-0.780418247615428],[124,285,70,-0.7800492935309356],[124,285,71,-0.7796826017138696],[124,285,72,-0.7793181781102243],[124,285,73,-0.7789560285778365],[124,285,74,-0.7785961588859557],[124,285,75,-0.7782385747148377],[124,285,76,-0.7778832816553303],[124,285,77,-0.7775302852084581],[124,285,78,-0.7771795907850125],[124,285,79,-0.7768312037051353],[124,286,64,-0.7824687744902804],[124,286,65,-0.7820885302483067],[124,286,66,-0.7817105159019071],[124,286,67,-0.7813347378316299],[124,286,68,-0.7809612023320008],[124,286,69,-0.7805899156111131],[124,286,70,-0.7802208837902052],[124,286,71,-0.7798541129032431],[124,286,72,-0.7794896088965015],[124,286,73,-0.779127377628156],[124,286,74,-0.7787674248678536],[124,286,75,-0.7784097562963068],[124,286,76,-0.7780543775048795],[124,286,77,-0.7777012939951717],[124,286,78,-0.7773505111786098],[124,286,79,-0.7770020343760308],[124,287,64,-0.7826409153957122],[124,287,65,-0.7822606015593994],[124,287,66,-0.7818825162799742],[124,287,67,-0.7815066659379521],[124,287,68,-0.7811330568278831],[124,287,69,-0.7807616951579424],[124,287,70,-0.7803925870495084],[124,287,71,-0.7800257385367455],[124,287,72,-0.7796611555661849],[124,287,73,-0.7792988439963178],[124,287,74,-0.7789388095971654],[124,287,75,-0.778581058049874],[124,287,76,-0.7782255949463004],[124,287,77,-0.7778724257885976],[124,287,78,-0.7775215559888047],[124,287,79,-0.7771729908684313],[124,288,64,-0.7828131601150359],[124,288,65,-0.7824327781582718],[124,288,66,-0.782054623415036],[124,288,67,-0.7816787022657861],[124,288,68,-0.7813050210050716],[124,288,69,-0.7809335858411257],[124,288,70,-0.7805644028954428],[124,288,71,-0.7801974782023616],[124,288,72,-0.7798328177086462],[124,288,73,-0.7794704272730799],[124,288,74,-0.7791103126660349],[124,288,75,-0.7787524795690681],[124,288,76,-0.7783969335745066],[124,288,77,-0.7780436801850333],[124,288,78,-0.7776927248132776],[124,288,79,-0.7773440727814003],[124,289,64,-0.7829855082257765],[124,289,65,-0.7826050596238301],[124,289,66,-0.7822268368873789],[124,289,67,-0.7818508463967979],[124,289,68,-0.7814770944466124],[124,289,69,-0.7811055872450885],[124,289,70,-0.7807363309138128],[124,289,71,-0.7803693314872742],[124,289,72,-0.7800045949124461],[124,289,73,-0.7796421270483804],[124,289,74,-0.7792819336657771],[124,289,75,-0.7789240204465807],[124,289,76,-0.7785683929835652],[124,289,77,-0.7782150567799213],[124,289,78,-0.7778640172488461],[124,289,79,-0.777515279713129],[124,290,64,-0.7831579593047823],[124,290,65,-0.7827774455342941],[124,290,66,-0.7823991562765942],[124,290,67,-0.7820230979119503],[124,290,68,-0.7816492767348386],[124,290,69,-0.7812776989535344],[124,290,70,-0.7809083706896917],[124,290,71,-0.7805412979779263],[124,290,72,-0.7801764867653969],[124,290,73,-0.7798139429114005],[124,290,74,-0.7794536721869416],[124,290,75,-0.7790956802743289],[124,290,76,-0.7787399727667609],[124,290,77,-0.778386555167913],[124,290,78,-0.7780354328915278],[124,290,79,-0.7776866112610006],[124,291,64,-0.7833305129281923],[124,291,65,-0.7829499354671654],[124,291,66,-0.7825715811615457],[124,291,67,-0.7821954563914693],[124,291,68,-0.781821567451338],[124,291,69,-0.7814499205494123],[124,291,70,-0.78108052180739],[124,291,71,-0.7807133772599889],[124,291,72,-0.7803484928545301],[124,291,73,-0.7799858744505316],[124,291,74,-0.7796255278192792],[124,291,75,-0.7792674586434226],[124,291,76,-0.7789116725165622],[124,291,77,-0.7785581749428353],[124,291,78,-0.7782069713365071],[124,291,79,-0.7778580670215568],[124,292,64,-0.7835031686714609],[124,292,65,-0.7831225289992518],[124,292,66,-0.7827441111203948],[124,292,67,-0.7823679214148688],[124,292,68,-0.7819939661769776],[124,292,69,-0.7816222516149421],[124,292,70,-0.7812527838504792],[124,292,71,-0.7808855689183858],[124,292,72,-0.7805206127661208],[124,292,73,-0.7801579212534],[124,292,74,-0.779797500151767],[124,292,75,-0.7794393551441898],[124,292,76,-0.779083491824647],[124,292,77,-0.7787299156977153],[124,292,78,-0.7783786321781602],[124,292,79,-0.7780296465905225],[124,293,64,-0.7836759261093255],[124,293,65,-0.7832952257066352],[124,293,66,-0.7829167457305672],[124,293,67,-0.7825404925609187],[124,293,68,-0.7821664724918711],[124,293,69,-0.7817946917315808],[124,293,70,-0.78142515640176],[124,293,71,-0.7810578725372603],[124,293,72,-0.780692846085655],[124,293,73,-0.7803300829068343],[124,293,74,-0.7799695887725757],[124,293,75,-0.7796113693661425],[124,293,76,-0.7792554302818686],[124,293,77,-0.7789017770247474],[124,293,78,-0.7785504150100221],[124,293,79,-0.7782013495627726],[124,294,64,-0.7838487848158688],[124,294,65,-0.7834680251647337],[124,294,66,-0.7830894845688161],[124,294,67,-0.7827131694077074],[124,294,68,-0.7823390859754411],[124,294,69,-0.7819672404800856],[124,294,70,-0.781597639043324],[124,294,71,-0.7812302877000386],[124,294,72,-0.7808651923978929],[124,294,73,-0.7805023589969277],[124,294,74,-0.7801417932691321],[124,294,75,-0.7797835008980404],[124,294,76,-0.7794274874783196],[124,294,77,-0.7790737585153564],[124,294,78,-0.7787223194248494],[124,294,79,-0.7783731755323955],[124,295,64,-0.7840217443644965],[124,295,65,-0.7836409269482785],[124,295,66,-0.7832623272111989],[124,295,67,-0.782885951532618],[124,295,68,-0.7825118062063969],[124,295,69,-0.7821398974404915],[124,295,70,-0.7817702313565316],[124,295,71,-0.7814028139894058],[124,295,72,-0.7810376512868447],[124,295,73,-0.7806747491090158],[124,295,74,-0.7803141132280959],[124,295,75,-0.7799557493278678],[124,295,76,-0.7795996630033081],[124,295,77,-0.7792458597601742],[124,295,78,-0.7788943450145974],[124,295,79,-0.7785451240926691],[124,296,64,-0.7841948043279132],[124,296,65,-0.7838139306312917],[124,296,66,-0.7834352732330547],[124,296,67,-0.7830588385123061],[124,296,68,-0.7826846327627108],[124,296,69,-0.7823126621920873],[124,296,70,-0.7819429329219878],[124,296,71,-0.7815754509872836],[124,296,72,-0.7812102223357482],[124,296,73,-0.7808472528276522],[124,296,74,-0.7804865482353367],[124,296,75,-0.7801281142428098],[124,296,76,-0.7797719564453343],[124,296,77,-0.779418080349016],[124,296,78,-0.7790664913703962],[124,296,79,-0.7787171948360381],[124,297,64,-0.7843679642781863],[124,297,65,-0.7839870357871481],[124,297,66,-0.7836083222090656],[124,297,67,-0.7832318299227622],[124,297,68,-0.782857565221681],[124,297,69,-0.7824855343134788],[124,297,70,-0.7821157433196062],[124,297,71,-0.7817481982748932],[124,297,72,-0.7813829051271316],[124,297,73,-0.7810198697366724],[124,297,74,-0.780659097875997],[124,297,75,-0.7803005952293154],[124,297,76,-0.779944367392154],[124,297,77,-0.7795904198709441],[124,297,78,-0.7792387580826139],[124,297,79,-0.7788893873541763],[124,298,64,-0.7845412237867124],[124,298,65,-0.7841602419885431],[124,298,66,-0.783781473713226],[124,298,67,-0.7834049253392787],[124,298,68,-0.7830306031598986],[124,298,69,-0.7826585133825559],[124,298,70,-0.7822886621285754],[124,298,71,-0.7819210554327212],[124,298,72,-0.7815556992427805],[124,298,73,-0.7811925994191601],[124,298,74,-0.7808317617344586],[124,298,75,-0.7804731918730647],[124,298,76,-0.7801168954307454],[124,298,77,-0.779762877914234],[124,298,78,-0.7794111447408237],[124,298,79,-0.7790617012379544],[124,299,64,-0.7847145824242423],[124,299,65,-0.7843335488075169],[124,299,66,-0.7839547273188656],[124,299,67,-0.7835781243364754],[124,299,68,-0.7832037461532728],[124,299,69,-0.7828315989765172],[124,299,70,-0.7824616889273834],[124,299,71,-0.7820940220405457],[124,299,72,-0.7817286042637622],[124,299,73,-0.7813654414574722],[124,299,74,-0.7810045393943679],[124,299,75,-0.7806459037589936],[124,299,76,-0.7802895401473332],[124,299,77,-0.7799354540663999],[124,299,78,-0.7795836509338285],[124,299,79,-0.7792341360774638],[124,300,64,-0.7848880397608485],[124,300,65,-0.7845069558154224],[124,300,66,-0.7841280825986177],[124,300,67,-0.7837514264882658],[124,300,68,-0.7833769937769977],[124,300,69,-0.7830047906718377],[124,300,70,-0.782634823293786],[124,300,71,-0.7822670976774027],[124,300,72,-0.7819016197703935],[124,300,73,-0.781538395433206],[124,300,74,-0.7811774304386029],[124,300,75,-0.7808187304712602],[124,300,76,-0.7804623011273563],[124,300,77,-0.7801081479141607],[124,300,78,-0.7797562762496276],[124,300,79,-0.7794066914619842],[124,301,64,-0.785061595365988],[124,301,65,-0.7846804625829874],[124,301,66,-0.7843015391244811],[124,301,67,-0.7839248313679201],[124,301,68,-0.783550345605615],[124,301,69,-0.7831780880443308],[124,301,70,-0.7828080648048679],[124,301,71,-0.782440281921649],[124,301,72,-0.7820747453423029],[124,301,73,-0.7817114609272622],[124,301,74,-0.7813504344493357],[124,301,75,-0.7809916715933087],[124,301,76,-0.7806351779555303],[124,301,77,-0.7802809590435038],[124,301,78,-0.7799290202754801],[124,301,79,-0.7795793669800457],[124,302,64,-0.7852352488084784],[124,302,65,-0.7848540686802915],[124,302,66,-0.7844750964677978],[124,302,67,-0.7840983385480425],[124,302,68,-0.7837238012129916],[124,302,69,-0.7833514906691253],[124,302,70,-0.7829814130370212],[124,302,71,-0.7826135743509393],[124,302,72,-0.7822479805584079],[124,302,73,-0.7818846375198207],[124,302,74,-0.7815235510080097],[124,302,75,-0.7811647267078453],[124,302,76,-0.7808081702158246],[124,302,77,-0.7804538870396617],[124,302,78,-0.780101882597881],[124,302,79,-0.7797521622194066],[124,303,64,-0.7854089996564755],[124,303,65,-0.7850277736767435],[124,303,66,-0.7846487541992291],[124,303,67,-0.7842719476005477],[124,303,68,-0.783897360172295],[124,303,69,-0.7835249981206429],[124,303,70,-0.7831548675659207],[124,303,71,-0.7827869745422023],[124,303,72,-0.7824213249968914],[124,303,73,-0.7820579247903187],[124,303,74,-0.7816967796953158],[124,303,75,-0.7813378953968151],[124,303,76,-0.7809812774914384],[124,303,77,-0.7806269314870877],[124,303,78,-0.7802748628025383],[124,303,79,-0.7799250767670289],[124,304,64,-0.7855828474775363],[124,304,65,-0.7852015771411431],[124,304,66,-0.7848225118888189],[124,304,67,-0.7844456580967233],[124,304,68,-0.7840710220560576],[124,304,69,-0.7836986099726599],[124,304,70,-0.7833284279665876],[124,304,71,-0.7829604820717042],[124,304,72,-0.7825947782352642],[124,304,73,-0.7822313223175121],[124,304,74,-0.7818701200912554],[124,304,75,-0.7815111772414649],[124,304,76,-0.7811544993648643],[124,304,77,-0.7808000919695197],[124,304,78,-0.7804479604744354],[124,304,79,-0.7800981102091418],[124,305,64,-0.7857567918385849],[124,305,65,-0.7853754786416494],[124,305,66,-0.7849963691059605],[124,305,67,-0.7846194696071976],[124,305,68,-0.7842447864361426],[124,305,69,-0.7838723257982753],[124,305,70,-0.7835020938133566],[124,305,71,-0.7831340965150151],[124,305,72,-0.7827683398503329],[124,305,73,-0.7824048296794437],[124,305,74,-0.7820435717751076],[124,305,75,-0.7816845718223105],[124,305,76,-0.7813278354178542],[124,305,77,-0.7809733680699471],[124,305,78,-0.7806211751977983],[124,305,79,-0.780271262131208],[124,306,64,-0.7859308323059386],[124,306,65,-0.7855494777458044],[124,306,66,-0.7851703254194214],[124,306,67,-0.7847933817019638],[124,306,68,-0.7844186528837691],[124,306,69,-0.7840461451699344],[124,306,70,-0.7836758646798996],[124,306,71,-0.7833078174470341],[124,306,72,-0.7829420094182235],[124,306,73,-0.7825784464534671],[124,306,74,-0.7822171343254537],[124,306,75,-0.7818580787191607],[124,306,76,-0.7815012852314455],[124,306,77,-0.7811467593706347],[124,306,78,-0.7807945065561204],[124,306,79,-0.7804445321179495],[124,307,64,-0.7861049684452743],[124,307,65,-0.7857235740205006],[124,307,66,-0.7853443803973106],[124,307,67,-0.7849673939503473],[124,307,68,-0.7845926209694796],[124,307,69,-0.784220067659397],[124,307,70,-0.783849740139194],[124,307,71,-0.7834816444419564],[124,307,72,-0.7831157865143492],[124,307,73,-0.7827521722162138],[124,307,74,-0.7823908073201438],[124,307,75,-0.7820316975110849],[124,307,76,-0.7816748483859262],[124,307,77,-0.7813202654530902],[124,307,78,-0.7809679541321287],[124,307,79,-0.780617919753313],[124,308,64,-0.7862791998216915],[124,308,65,-0.7858977670320444],[124,308,66,-0.7855185336071407],[124,308,67,-0.7851415059210685],[124,308,68,-0.7847666902632021],[124,308,69,-0.7843940928377993],[124,308,70,-0.7840237197635842],[124,308,71,-0.7836555770733357],[124,308,72,-0.7832896707134733],[124,308,73,-0.7829260065436565],[124,308,74,-0.7825645903363604],[124,308,75,-0.7822054277764755],[124,308,76,-0.7818485244608993],[124,308,77,-0.7814938858981271],[124,308,78,-0.7811415175078475],[124,308,79,-0.7807914246205335],[124,309,64,-0.7864535259996885],[124,309,65,-0.7860720563461312],[124,309,66,-0.7856927846158057],[124,309,67,-0.785315717182219],[124,309,68,-0.7849408603342273],[124,309,69,-0.784568220275631],[124,309,70,-0.78419780312476],[124,309,71,-0.783829614914061],[124,309,72,-0.7834636615896848],[124,309,73,-0.7830999490110853],[124,309,74,-0.7827384829505944],[124,309,75,-0.7823792690930247],[124,309,76,-0.7820223130352586],[124,309,77,-0.7816676202858409],[124,309,78,-0.7813151962645748],[124,309,79,-0.7809650463021115],[124,310,64,-0.7866279465431405],[124,310,65,-0.7862464415278242],[124,310,66,-0.7858671329895568],[124,310,67,-0.7854900273012397],[124,310,68,-0.785115130751185],[124,310,69,-0.784742449542712],[124,310,70,-0.7843719897937312],[124,310,71,-0.7840037575363336],[124,310,72,-0.7836377587163763],[124,310,73,-0.7832739991930838],[124,310,74,-0.782912484738622],[124,310,75,-0.7825532210377009],[124,310,76,-0.7821962136871651],[124,310,77,-0.781841468195586],[124,310,78,-0.7814889899828577],[124,310,79,-0.7811387843797879],[124,311,64,-0.7868024610153607],[124,311,65,-0.7864209221416153],[124,311,66,-0.7860415782940654],[124,311,67,-0.7856644358449815],[124,311,68,-0.785289501082107],[124,311,69,-0.7849167802082547],[124,311,70,-0.7845462793408922],[124,311,71,-0.784178004511729],[124,311,72,-0.7838119616663061],[124,311,73,-0.7834481566635932],[124,311,74,-0.7830865952755671],[124,311,75,-0.7827272831868118],[124,311,76,-0.7823702259941105],[124,311,77,-0.7820154292060382],[124,311,78,-0.7816628982425569],[124,311,79,-0.7813126384346081],[124,312,64,-0.7869770689790685],[124,312,65,-0.7865954977513936],[124,312,66,-0.7862161200943906],[124,312,67,-0.7858389423796742],[124,312,68,-0.785463970894394],[124,312,69,-0.7850912118408321],[124,312,70,-0.7847206713359876],[124,312,71,-0.7843523554111654],[124,312,72,-0.783986270011565],[124,312,73,-0.7836224209958785],[124,312,74,-0.783260814135869],[124,312,75,-0.7829014551159712],[124,312,76,-0.7825443495328838],[124,312,77,-0.7821895028951618],[124,312,78,-0.7818369206228127],[124,312,79,-0.781486608046889],[124,313,64,-0.7871517699964136],[124,313,65,-0.7867701679204688],[124,313,66,-0.7863907579550031],[124,313,67,-0.7860135464709501],[124,313,68,-0.7856385397548407],[124,313,69,-0.785265744008401],[124,313,70,-0.7848951653481377],[124,313,71,-0.7845268098049267],[124,313,72,-0.7841606833236014],[124,313,73,-0.7837967917625527],[124,313,74,-0.783435140893306],[124,313,75,-0.7830757364001234],[124,313,76,-0.7827185838795955],[124,313,77,-0.7823636888402342],[124,313,78,-0.7820110567020697],[124,313,79,-0.7816606927962422],[124,314,64,-0.7873265636289436],[124,314,65,-0.7869449322115395],[124,314,66,-0.7865654914397531],[124,314,67,-0.7861882476838113],[124,314,68,-0.7858132072296018],[124,314,69,-0.7854403762782701],[124,314,70,-0.7850697609458055],[124,314,71,-0.7847013672626304],[124,314,72,-0.7843352011731881],[124,314,73,-0.7839712685355443],[124,314,74,-0.7836095751209631],[124,314,75,-0.7832501266135102],[124,314,76,-0.7828929286096448],[124,314,77,-0.7825379866178125],[124,314,78,-0.782185306058043],[124,314,79,-0.7818348922615421],[124,315,64,-0.7875014494376662],[124,315,65,-0.7871197901867549],[124,315,66,-0.786740320111932],[124,315,67,-0.7863630455826927],[124,315,68,-0.7859879728842559],[124,315,69,-0.7856151082171621],[124,315,70,-0.7852444576968587],[124,315,71,-0.7848760273532897],[124,315,72,-0.7845098231304849],[124,315,73,-0.7841458508861601],[124,315,74,-0.7837841163912945],[124,315,75,-0.7834246253297338],[124,315,76,-0.7830673832977824],[124,315,77,-0.7827123958037965],[124,315,78,-0.7823596682677825],[124,315,79,-0.7820092060209883],[124,316,64,-0.7876764269830259],[124,316,65,-0.7872947414076921],[124,316,66,-0.7869152435342497],[124,316,67,-0.7865379397314377],[124,316,68,-0.7861628362837813],[124,316,69,-0.7857899393911906],[124,316,70,-0.7854192551685466],[124,316,71,-0.785050789645291],[124,316,72,-0.7846845487650151],[124,316,73,-0.7843205383850613],[124,316,74,-0.7839587642761001],[124,316,75,-0.7835992321217332],[124,316,76,-0.783241947518087],[124,316,77,-0.7828869159734053],[124,316,78,-0.7825341429076478],[124,316,79,-0.7821836336520821],[124,317,64,-0.787851495824881],[124,317,65,-0.7874697854353321],[124,317,66,-0.7870902612688115],[124,317,67,-0.7867129296932763],[124,317,68,-0.7863377969925329],[124,317,69,-0.7859648693658368],[124,317,70,-0.7855941529274773],[124,317,71,-0.7852256537063695],[124,317,72,-0.7848593776456425],[124,317,73,-0.7844953306022406],[124,317,74,-0.7841335183465018],[124,317,75,-0.7837739465617607],[124,317,76,-0.7834166208439417],[124,317,77,-0.7830615467011534],[124,317,78,-0.7827087295532854],[124,317,79,-0.7823581747316026],[124,318,64,-0.7880266555225661],[124,318,65,-0.7876449218301234],[124,318,66,-0.7872653728771802],[124,318,67,-0.7868880150308866],[124,318,68,-0.7865128545743053],[124,318,69,-0.7861398977060117],[124,318,70,-0.7857691505396798],[124,318,71,-0.7854006191036729],[124,318,72,-0.7850343093406336],[124,318,73,-0.7846702271070845],[124,318,74,-0.7843083781730069],[124,318,75,-0.7839487682214447],[124,318,76,-0.7835914028480973],[124,318,77,-0.7832362875609138],[124,318,78,-0.7828834277796917],[124,318,79,-0.78253282883567],[124,319,64,-0.7882019056348688],[124,319,65,-0.7878201501519576],[124,319,66,-0.7874405779203528],[124,319,67,-0.7870631953063717],[124,319,68,-0.7866880085923084],[124,319,69,-0.7863150239760334],[124,319,70,-0.7859442475705803],[124,319,71,-0.7855756854037369],[124,319,72,-0.7852093434176344],[124,319,73,-0.7848452274683497],[124,319,74,-0.7844833433254839],[124,319,75,-0.7841236966717662],[124,319,76,-0.7837662931026474],[124,319,77,-0.7834111381258945],[124,319,78,-0.7830582371611892],[124,319,79,-0.7827075955397218],[125,-64,64,-0.731009664763181],[125,-64,65,-0.7307290077235006],[125,-64,66,-0.7304507999890362],[125,-64,67,-0.7301750466953633],[125,-64,68,-0.7299017528826313],[125,-64,69,-0.7296309234951412],[125,-64,70,-0.7293625633809088],[125,-64,71,-0.7290966772912313],[125,-64,72,-0.7288332698802537],[125,-64,73,-0.7285723457045484],[125,-64,74,-0.7283139092226676],[125,-64,75,-0.7280579647947245],[125,-64,76,-0.7278045166819638],[125,-64,77,-0.7275535690463314],[125,-64,78,-0.7273051259500498],[125,-64,79,-0.7270591913551867],[125,-63,64,-0.7311289624771803],[125,-63,65,-0.7308478623476002],[125,-63,66,-0.7305692114575943],[125,-63,67,-0.7302930149489018],[125,-63,68,-0.7300192778678363],[125,-63,69,-0.7297480051648655],[125,-63,70,-0.729479201694173],[125,-63,71,-0.729212872213225],[125,-63,72,-0.7289490213823363],[125,-63,73,-0.728687653764251],[125,-63,74,-0.7284287738236932],[125,-63,75,-0.7281723859269488],[125,-63,76,-0.7279184943414359],[125,-63,77,-0.7276671032352744],[125,-63,78,-0.727418216676861],[125,-63,79,-0.7271718386344379],[125,-62,64,-0.7312484225041092],[125,-62,65,-0.730966879812144],[125,-62,66,-0.7306877862925699],[125,-62,67,-0.7304111470932811],[125,-62,68,-0.7301369672667488],[125,-62,69,-0.7298652517695992],[125,-62,70,-0.7295960054621755],[125,-62,71,-0.7293292331081058],[125,-62,72,-0.729064939373868],[125,-62,73,-0.7288031288283694],[125,-62,74,-0.7285438059424989],[125,-62,75,-0.7282869750887084],[125,-62,76,-0.7280326405405821],[125,-62,77,-0.727780806472407],[125,-62,78,-0.7275314769587468],[125,-62,79,-0.7272846559740114],[125,-61,64,-0.7313680450745675],[125,-61,65,-0.7310860603513969],[125,-61,66,-0.7308065247318738],[125,-61,67,-0.7305294433700398],[125,-61,68,-0.7302548213245152],[125,-61,69,-0.7299826635580771],[125,-61,70,-0.7297129749372214],[125,-61,71,-0.72944576023173],[125,-61,72,-0.7291810241142358],[125,-61,73,-0.7289187711598026],[125,-61,74,-0.7286590058454769],[125,-61,75,-0.7284017325498687],[125,-61,76,-0.7281469555527216],[125,-61,77,-0.727894679034482],[125,-61,78,-0.7276449070758744],[125,-61,79,-0.7273976436574693],[125,-60,64,-0.7314878304159227],[125,-60,65,-0.7312054041963882],[125,-60,66,-0.7309254270101786],[125,-60,67,-0.7306479040174746],[125,-60,68,-0.7303728402830378],[125,-60,69,-0.7301002407757885],[125,-60,70,-0.7298301103683671],[125,-60,71,-0.7295624538367018],[125,-60,72,-0.7292972758595732],[125,-60,73,-0.729034581018194],[125,-60,74,-0.7287743737957606],[125,-60,75,-0.7285166585770342],[125,-60,76,-0.72826143964791],[125,-60,77,-0.7280087211949875],[125,-60,78,-0.7277585073051441],[125,-60,79,-0.7275108019651043],[125,-59,64,-0.731607778752297],[125,-59,65,-0.7313249115748996],[125,-59,66,-0.7310444933589064],[125,-59,67,-0.7307665292706291],[125,-59,68,-0.730491024380963],[125,-59,69,-0.7302179836649632],[125,-59,70,-0.7299474120014073],[125,-59,71,-0.7296793141723619],[125,-59,72,-0.7294136948627473],[125,-59,73,-0.729150558659918],[125,-59,74,-0.7288899100532125],[125,-59,75,-0.7286317534335358],[125,-59,76,-0.7283760930929278],[125,-59,77,-0.7281229332241335],[125,-59,78,-0.7278722779201763],[125,-59,79,-0.7276241311739277],[125,-58,64,-0.7317278903046192],[125,-58,65,-0.7314445827115159],[125,-58,66,-0.7311637240062794],[125,-58,67,-0.7308853193613446],[125,-58,68,-0.7306093738537318],[125,-58,69,-0.7303358924646236],[125,-58,70,-0.7300648800789264],[125,-58,71,-0.7297963414848374],[125,-58,72,-0.7295302813734095],[125,-58,73,-0.7292667043381306],[125,-58,74,-0.7290056148744742],[125,-58,75,-0.7287470173794818],[125,-58,76,-0.7284909161513303],[125,-58,77,-0.7282373153889028],[125,-58,78,-0.7279862191913619],[125,-58,79,-0.7277376315577186],[125,-57,64,-0.7318481652906048],[125,-57,65,-0.7315644178276058],[125,-57,66,-0.7312831191773008],[125,-57,67,-0.7310042745182401],[125,-57,68,-0.7307278889335607],[125,-57,69,-0.7304539674105643],[125,-57,70,-0.7301825148402785],[125,-57,71,-0.7299135360170234],[125,-57,72,-0.729647035637976],[125,-57,73,-0.7293830183027505],[125,-57,74,-0.7291214885129479],[125,-57,75,-0.728862450671738],[125,-57,76,-0.728605909083428],[125,-57,77,-0.7283518679530315],[125,-57,78,-0.7281003313858431],[125,-57,79,-0.727851303387006],[125,-56,64,-0.731968603924779],[125,-56,65,-0.7316844171413448],[125,-56,66,-0.7314026790937782],[125,-56,67,-0.7311233949667358],[125,-56,68,-0.7308465698494642],[125,-56,69,-0.7305722087353754],[125,-56,70,-0.7303003165216105],[125,-56,71,-0.7300308980086043],[125,-56,72,-0.7297639578996505],[125,-56,73,-0.7294995008004814],[125,-56,74,-0.729237531218818],[125,-56,75,-0.728978053563951],[125,-56,76,-0.7287210721463098],[125,-56,77,-0.7284665911770316],[125,-56,78,-0.7282146147675355],[125,-56,79,-0.72796514692909],[125,-55,64,-0.732089206418458],[125,-55,65,-0.7318045808676961],[125,-55,66,-0.7315224039743029],[125,-55,67,-0.731242680929034],[125,-55,68,-0.7309654168272357],[125,-55,69,-0.7306906166684235],[125,-55,70,-0.7304182853558431],[125,-55,71,-0.7301484276960362],[125,-55,72,-0.7298810483984053],[125,-55,73,-0.729616152074793],[125,-55,74,-0.7293537432390322],[125,-55,75,-0.7290938263065274],[125,-55,76,-0.7288364055938226],[125,-55,77,-0.7285814853181711],[125,-55,78,-0.7283290695971087],[125,-55,79,-0.7280791624480224],[125,-54,64,-0.7322099729797988],[125,-54,65,-0.731924909218461],[125,-54,66,-0.7316422940343026],[125,-54,67,-0.7313621326241687],[125,-54,68,-0.7310844300894983],[125,-54,69,-0.7308091914359014],[125,-54,70,-0.7305364215727204],[125,-54,71,-0.7302661253125957],[125,-54,72,-0.7299983073710307],[125,-54,73,-0.7297329723659706],[125,-54,74,-0.7294701248173523],[125,-54,75,-0.7292097691466859],[125,-54,76,-0.7289519096766228],[125,-54,77,-0.7286965506305247],[125,-54,78,-0.7284436961320373],[125,-54,79,-0.7281933502046579],[125,-53,64,-0.7323309038137886],[125,-53,65,-0.7320454024022675],[125,-53,66,-0.7317623494860274],[125,-53,67,-0.7314817502679948],[125,-53,68,-0.7312036098556925],[125,-53,69,-0.730927933260817],[125,-53,70,-0.7306547253987987],[125,-53,71,-0.7303839910883693],[125,-53,72,-0.7301157350511243],[125,-53,73,-0.7298499619111037],[125,-53,74,-0.7295866761943408],[125,-53,75,-0.7293258823284438],[125,-53,76,-0.7290675846421633],[125,-53,77,-0.7288117873649618],[125,-53,78,-0.7285584946265873],[125,-53,79,-0.7283077104566406],[125,-52,64,-0.7324519991222305],[125,-52,65,-0.7321660606245569],[125,-52,66,-0.7318825705385384],[125,-52,67,-0.7316015340731747],[125,-52,68,-0.7313229563420637],[125,-52,69,-0.7310468423629797],[125,-52,70,-0.7307731970574336],[125,-52,71,-0.7305020252502392],[125,-52,72,-0.730233331669077],[125,-52,73,-0.7299671209440732],[125,-52,74,-0.7297033976073496],[125,-52,75,-0.7294421660926044],[125,-52,76,-0.7291834307346802],[125,-52,77,-0.7289271957691326],[125,-52,78,-0.7286734653318043],[125,-52,79,-0.7284222434583916],[125,-51,64,-0.7325732591037966],[125,-51,65,-0.7322868840876358],[125,-51,66,-0.732002957397759],[125,-51,67,-0.7317214842492297],[125,-51,68,-0.731442469761713],[125,-51,69,-0.7311659189590523],[125,-51,70,-0.7308918367688305],[125,-51,71,-0.7306202280219357],[125,-51,72,-0.7303510974521246],[125,-51,73,-0.7300844496956018],[125,-51,74,-0.7298202892905697],[125,-51,75,-0.7295586206768087],[125,-51,76,-0.7292994481952451],[125,-51,77,-0.7290427760875201],[125,-51,78,-0.7287886084955635],[125,-51,79,-0.72853694946116],[125,-50,64,-0.7326946839540067],[125,-50,65,-0.732407872990656],[125,-50,66,-0.7321235102664543],[125,-50,67,-0.7318416010025204],[125,-50,68,-0.7315621503245777],[125,-50,69,-0.7312851632625308],[125,-50,70,-0.7310106447500259],[125,-50,71,-0.7307385996240165],[125,-50,72,-0.7304690326243279],[125,-50,73,-0.730201948393235],[125,-50,74,-0.7299373514750123],[125,-50,75,-0.7296752463155143],[125,-50,76,-0.7294156372617437],[125,-50,77,-0.7291585285614196],[125,-50,78,-0.7289039243625507],[125,-50,79,-0.7286518287130024],[125,-49,64,-0.7328162738652529],[125,-49,65,-0.7325290275296377],[125,-49,66,-0.7322442293442546],[125,-49,67,-0.7319618845362694],[125,-49,68,-0.7316819982374547],[125,-49,69,-0.7314045754837675],[125,-49,70,-0.731129621214909],[125,-49,71,-0.73085714027389],[125,-49,72,-0.7305871374065956],[125,-49,73,-0.730319617261363],[125,-49,74,-0.7300545843885305],[125,-49,75,-0.7297920432400193],[125,-49,76,-0.7295319981688999],[125,-49,77,-0.7292744534289614],[125,-49,78,-0.729019413174284],[125,-49,79,-0.7287668814588064],[125,-48,64,-0.7329380290267788],[125,-48,65,-0.7326503478974499],[125,-48,66,-0.7323651148276364],[125,-48,67,-0.7320823350505419],[125,-48,68,-0.7318020137039801],[125,-48,69,-0.7315241558299512],[125,-48,70,-0.731248766374203],[125,-48,71,-0.7309758501857954],[125,-48,72,-0.7307054120166645],[125,-48,73,-0.7304374565212014],[125,-48,74,-0.7301719882558009],[125,-48,75,-0.7299090116784417],[125,-48,76,-0.7296485311482547],[125,-48,77,-0.7293905509250909],[125,-48,78,-0.7291350751690944],[125,-48,79,-0.7288821079402692],[125,-47,64,-0.7330599496247314],[125,-47,65,-0.7327718342838614],[125,-47,66,-0.7324861669099725],[125,-47,67,-0.7322029527422971],[125,-47,68,-0.7319221969246805],[125,-47,69,-0.7316439045051584],[125,-47,70,-0.7313680804355158],[125,-47,71,-0.7310947295708534],[125,-47,72,-0.7308238566691502],[125,-47,73,-0.7305554663908425],[125,-47,74,-0.7302895632983729],[125,-47,75,-0.7300261518557704],[125,-47,76,-0.7297652364282176],[125,-47,77,-0.7295068212816197],[125,-47,78,-0.7292509105821767],[125,-47,79,-0.7289975083959501],[125,-46,64,-0.7331820358421484],[125,-46,65,-0.7328934868755288],[125,-46,66,-0.7326073857815201],[125,-46,67,-0.7323237378053745],[125,-46,68,-0.7320425480969609],[125,-46,69,-0.7317638217103404],[125,-46,70,-0.7314875636033275],[125,-46,71,-0.7312137786370544],[125,-46,72,-0.7309424715755348],[125,-46,73,-0.7306736470852419],[125,-46,74,-0.7304073097346576],[125,-46,75,-0.7301434639938529],[125,-46,76,-0.7298821142340541],[125,-46,77,-0.7296232647272127],[125,-46,78,-0.7293669196455763],[125,-46,79,-0.7291130830612566],[125,-45,64,-0.7333042878589453],[125,-45,65,-0.7330153058559831],[125,-45,66,-0.732728771629408],[125,-45,67,-0.732444690430483],[125,-45,68,-0.7321630674150912],[125,-45,69,-0.7318839076433111],[125,-45,70,-0.7316072160789773],[125,-45,71,-0.7313329975892451],[125,-45,72,-0.731061256944154],[125,-45,73,-0.7307919988162059],[125,-45,74,-0.7305252277799139],[125,-45,75,-0.7302609483113819],[125,-45,76,-0.7299991647878725],[125,-45,77,-0.7297398814873747],[125,-45,78,-0.7294831025881765],[125,-45,79,-0.7292288321684313],[125,-44,64,-0.7334267058519678],[125,-44,65,-0.7331372914056817],[125,-44,66,-0.7328503246376876],[125,-44,67,-0.7325658108052506],[125,-44,68,-0.7322837550702583],[125,-44,69,-0.7320041624987979],[125,-44,70,-0.731727038060715],[125,-44,71,-0.7314523866291796],[125,-44,72,-0.7311802129802484],[125,-44,73,-0.7309105217924432],[125,-44,74,-0.7306433176462994],[125,-44,75,-0.7303786050239467],[125,-44,76,-0.7301163883086745],[125,-44,77,-0.7298566717845023],[125,-44,78,-0.7295994596357493],[125,-44,79,-0.7293447559466033],[125,-43,64,-0.7335492899949779],[125,-43,65,-0.7332594437019958],[125,-43,66,-0.7329720449873216],[125,-43,67,-0.7326870991142127],[125,-43,68,-0.732404611250553],[125,-43,69,-0.7321245864684287],[125,-43,70,-0.7318470297436883],[125,-43,71,-0.731571945955507],[125,-43,72,-0.7312993398859502],[125,-43,73,-0.7310292162195509],[125,-43,74,-0.7307615795428589],[125,-43,75,-0.7304964343440202],[125,-43,76,-0.7302337850123439],[125,-43,77,-0.7299736358378703],[125,-43,78,-0.7297159910109432],[125,-43,79,-0.7294608546217758],[125,-42,64,-0.7336720404586422],[125,-42,65,-0.7333817629191972],[125,-42,66,-0.7330939328561692],[125,-42,67,-0.7328085555387989],[125,-42,68,-0.732525636140957],[125,-42,69,-0.73224517974072],[125,-42,70,-0.7319671913199298],[125,-42,71,-0.7316916757637584],[125,-42,72,-0.7314186378602708],[125,-42,73,-0.731148082300003],[125,-42,74,-0.73088001367551],[125,-42,75,-0.7306144364809459],[125,-42,76,-0.7303513551116311],[125,-42,77,-0.7300907738636189],[125,-42,78,-0.7298326969332685],[125,-42,79,-0.7295771284168113],[125,-41,64,-0.7337949574105829],[125,-41,65,-0.73350424922851],[125,-41,66,-0.733215988419039],[125,-41,67,-0.7329301802573844],[125,-41,68,-0.7326468299233946],[125,-41,69,-0.7323659425011271],[125,-41,70,-0.7320875229784084],[125,-41,71,-0.731811576246398],[125,-41,72,-0.7315381070991522],[125,-41,73,-0.7312671202332004],[125,-41,74,-0.7309986202470949],[125,-41,75,-0.7307326116409896],[125,-41,76,-0.7304690988162066],[125,-41,77,-0.7302080860748046],[125,-41,78,-0.7299495776191502],[125,-41,79,-0.7296935775514848],[125,-40,64,-0.7339180410153578],[125,-40,65,-0.733626902798091],[125,-40,66,-0.7333382118476688],[125,-40,67,-0.7330519734452705],[125,-40,68,-0.7327681927767129],[125,-40,69,-0.7324868749320252],[125,-40,70,-0.7322080249050092],[125,-40,71,-0.7319316475928036],[125,-40,72,-0.7316577477954462],[125,-40,73,-0.7313863302154517],[125,-40,74,-0.7311173994573607],[125,-40,75,-0.7308509600273179],[125,-40,76,-0.7305870163326393],[125,-40,77,-0.7303255726813805],[125,-40,78,-0.730066633281907],[125,-40,79,-0.7298102022424615],[125,-39,64,-0.7340412914344843],[125,-39,65,-0.7337497237930521],[125,-39,66,-0.7334606033107482],[125,-39,67,-0.733173935274707],[125,-39,68,-0.7328897248767041],[125,-39,69,-0.7326079772127313],[125,-39,70,-0.7323286972825567],[125,-39,71,-0.7320518899892887],[125,-39,72,-0.7317775601389379],[125,-39,73,-0.7315057124399955],[125,-39,74,-0.7312363515029813],[125,-39,75,-0.7309694818400224],[125,-39,76,-0.7307051078644206],[125,-39,77,-0.7304432338902188],[125,-39,78,-0.7301838641317737],[125,-39,79,-0.7299270027033213],[125,-38,64,-0.734164708826418],[125,-38,65,-0.7338727123754409],[125,-38,66,-0.733583162973899],[125,-38,67,-0.7332960659148724],[125,-38,68,-0.7330114263960859],[125,-38,69,-0.7327292495194848],[125,-38,70,-0.7324495402907942],[125,-38,71,-0.7321723036190828],[125,-38,72,-0.7318975443163253],[125,-38,73,-0.7316252670969803],[125,-38,74,-0.7313554765775379],[125,-38,75,-0.7310881772760991],[125,-38,76,-0.7308233736119423],[125,-38,77,-0.73056106990509],[125,-38,78,-0.7303012703758811],[125,-38,79,-0.7300439791445369],[125,-37,64,-0.7342882933466054],[125,-37,65,-0.733995868704292],[125,-37,66,-0.7337058909997267],[125,-37,67,-0.7334183655319255],[125,-37,68,-0.7331332975045531],[125,-37,69,-0.732850692025499],[125,-37,70,-0.7325705541064356],[125,-37,71,-0.7322928886623828],[125,-37,72,-0.7320177005112707],[125,-37,73,-0.7317449943735157],[125,-37,74,-0.73147477487157],[125,-37,75,-0.7312070465294991],[125,-37,76,-0.7309418137725494],[125,-37,77,-0.7306790809267147],[125,-37,78,-0.7304188522183077],[125,-37,79,-0.7301611317735259],[125,-36,64,-0.7344120451474706],[125,-36,65,-0.7341191929356141],[125,-36,66,-0.7338287875478073],[125,-36,67,-0.7335408342889923],[125,-36,68,-0.7332553383687646],[125,-36,69,-0.7329723049009474],[125,-36,70,-0.732691738903152],[125,-36,71,-0.7324136452963402],[125,-36,72,-0.7321380289043875],[125,-36,73,-0.73186489445366],[125,-36,74,-0.7315942465725622],[125,-36,75,-0.731326089791116],[125,-36,76,-0.7310604285405268],[125,-36,77,-0.7307972671527505],[125,-36,78,-0.7305366098600656],[125,-36,79,-0.7302784607946375],[125,-35,64,-0.7345359643784024],[125,-35,65,-0.7342426852223772],[125,-35,66,-0.7339518527746747],[125,-35,67,-0.7336634723461534],[125,-35,68,-0.7333775491523296],[125,-35,69,-0.7330940883129516],[125,-35,70,-0.7328130948515593],[125,-35,71,-0.7325345736950473],[125,-35,72,-0.7322585296732276],[125,-35,73,-0.7319849675184064],[125,-35,74,-0.7317138918649317],[125,-35,75,-0.7314453072487725],[125,-35,76,-0.7311792181070851],[125,-35,77,-0.7309156287777786],[125,-35,78,-0.7306545434990881],[125,-35,79,-0.7303959664091391],[125,-34,64,-0.7346600511858064],[125,-34,65,-0.7343663457145643],[125,-34,66,-0.734075086833872],[125,-34,67,-0.733786279860495],[125,-34,68,-0.7334999300158607],[125,-34,69,-0.7332160424256325],[125,-34,70,-0.7329346221192694],[125,-34,71,-0.7326556740295898],[125,-34,72,-0.7323792029923324],[125,-34,73,-0.7321052137457346],[125,-34,74,-0.7318337109300788],[125,-34,75,-0.7315646990872726],[125,-34,76,-0.7312981826604129],[125,-34,77,-0.7310341659933547],[125,-34,78,-0.7307726533302805],[125,-34,79,-0.7305136488152673],[125,-33,64,-0.7347843057130845],[125,-33,65,-0.7344901745591511],[125,-33,66,-0.7341984898759321],[125,-33,67,-0.7339092569860897],[125,-33,68,-0.7336224811169525],[125,-33,69,-0.7333381674000896],[125,-33,70,-0.7330563208708699],[125,-33,71,-0.7327769464680253],[125,-33,72,-0.7325000490332125],[125,-33,73,-0.7322256333105905],[125,-33,74,-0.7319537039463675],[125,-33,75,-0.7316842654883797],[125,-33,76,-0.7314173223856568],[125,-33,77,-0.7311528789879895],[125,-33,78,-0.7308909395455001],[125,-33,79,-0.7306315082082079],[125,-32,64,-0.7349087281006581],[125,-32,65,-0.7346141719001295],[125,-32,66,-0.7343220620483997],[125,-32,67,-0.7340324038740184],[125,-32,68,-0.733745202610205],[125,-32,69,-0.7334604633944249],[125,-32,70,-0.733178191267947],[125,-32,71,-0.7328983911754073],[125,-32,72,-0.7326210679643712],[125,-32,73,-0.7323462263849099],[125,-32,74,-0.7320738710891477],[125,-32,75,-0.7318040066308408],[125,-32,76,-0.7315366374649426],[125,-32,77,-0.731271767947171],[125,-32,78,-0.7310094023335787],[125,-32,79,-0.7307495447801187],[125,-31,64,-0.7350333184859478],[125,-31,65,-0.7347383378784864],[125,-31,66,-0.7344458034958119],[125,-31,67,-0.7341557206723504],[125,-31,68,-0.7338680946472034],[125,-31,69,-0.7335829305637218],[125,-31,70,-0.7333002334690651],[125,-31,71,-0.7330200083137641],[125,-31,72,-0.7327422599512832],[125,-31,73,-0.7324669931375962],[125,-31,74,-0.7321942125307346],[125,-31,75,-0.7319239226903651],[125,-31,76,-0.731656128077356],[125,-31,77,-0.7313908330533432],[125,-31,78,-0.7311280418803011],[125,-31,79,-0.7308677587201081],[125,-30,64,-0.7351580770034252],[125,-30,65,-0.7348626726322566],[125,-30,66,-0.734569714359749],[125,-30,67,-0.7342792075261956],[125,-30,68,-0.7339911573765692],[125,-30,69,-0.7337055690600969],[125,-30,70,-0.7334224476298188],[125,-30,71,-0.7331417980421508],[125,-30,72,-0.7328636251564465],[125,-30,73,-0.7325879337345735],[125,-30,74,-0.7323147284404606],[125,-30,75,-0.7320440138396762],[125,-30,76,-0.731775794398994],[125,-30,77,-0.7315100744859591],[125,-30,78,-0.7312468583684586],[125,-30,79,-0.7309861502142871],[125,-29,64,-0.7352830037846001],[125,-29,65,-0.734987176296509],[125,-29,66,-0.7346937947788228],[125,-29,67,-0.734402864577691],[125,-29,68,-0.7341143909439479],[125,-29,69,-0.733828379032687],[125,-29,70,-0.7335448339028192],[125,-29,71,-0.7332637605166358],[125,-29,72,-0.7329851637393697],[125,-29,73,-0.7327090483387729],[125,-29,74,-0.7324354189846621],[125,-29,75,-0.7321642802484984],[125,-29,76,-0.7318956366029512],[125,-29,77,-0.7316294924214659],[125,-29,78,-0.7313658519778335],[125,-29,79,-0.7311047194457563],[125,-28,64,-0.7354080989580072],[125,-28,65,-0.735111849003334],[125,-28,66,-0.734818044888662],[125,-28,67,-0.7345266919659872],[125,-28,68,-0.7342377954919954],[125,-28,69,-0.7339513606276362],[125,-28,70,-0.7336673924376813],[125,-28,71,-0.7333858958902875],[125,-28,72,-0.7331068758565581],[125,-28,73,-0.732830337110119],[125,-28,74,-0.7325562843266662],[125,-28,75,-0.732284722083543],[125,-28,76,-0.7320156548593064],[125,-28,77,-0.7317490870332924],[125,-28,78,-0.731485022885187],[125,-28,79,-0.731223466594591],[125,-27,64,-0.7355333626492581],[125,-27,65,-0.7352366908818948],[125,-27,66,-0.734942464821965],[125,-27,67,-0.734650689827301],[125,-27,68,-0.7343613711604295],[125,-27,69,-0.7340745139881466],[125,-27,70,-0.7337901233810749],[125,-27,71,-0.7335082043132266],[125,-27,72,-0.7332287616615654],[125,-27,73,-0.732951800205582],[125,-27,74,-0.7326773246268415],[125,-27,75,-0.732405339508561],[125,-27,76,-0.7321358493351746],[125,-27,77,-0.7318688584919006],[125,-27,78,-0.7316043712643104],[125,-27,79,-0.7313423918378946],[125,-26,64,-0.7356587949810208],[125,-26,65,-0.7353617020584076],[125,-26,66,-0.7350670547084793],[125,-26,67,-0.7347748582948943],[125,-26,68,-0.7344851180860106],[125,-26,69,-0.7341978392544595],[125,-26,70,-0.7339130268767049],[125,-26,71,-0.7336306859326049],[125,-26,72,-0.7333508213049735],[125,-26,73,-0.7330734377791568],[125,-26,74,-0.7327985400425789],[125,-26,75,-0.7325261326843211],[125,-26,76,-0.7322562201946862],[125,-26,77,-0.7319888069647643],[125,-26,78,-0.7317238972860041],[125,-26,79,-0.7314614953497763],[125,-25,64,-0.7357843960730432],[125,-25,65,-0.7354868826561641],[125,-25,66,-0.7351918146750245],[125,-25,67,-0.7348991974990979],[125,-25,68,-0.7346090364025628],[125,-25,69,-0.7343213365638768],[125,-25,70,-0.7340361030653342],[125,-25,71,-0.7337533408926289],[125,-25,72,-0.7334730549344157],[125,-25,73,-0.7331952499818857],[125,-25,74,-0.7329199307283132],[125,-25,75,-0.7326471017686339],[125,-25,76,-0.7323767675990094],[125,-25,77,-0.732108932616393],[125,-25,78,-0.7318436011181007],[125,-25,79,-0.7315807773013749],[125,-24,64,-0.7359101660421321],[125,-24,65,-0.7356122327955117],[125,-24,66,-0.7353167448454714],[125,-24,67,-0.7350237075672895],[125,-24,68,-0.7347331262409551],[125,-24,69,-0.7344450060507408],[125,-24,70,-0.734159352084762],[125,-24,71,-0.7338761693345381],[125,-24,72,-0.7335954626945547],[125,-24,73,-0.733317236961838],[125,-24,74,-0.733041496835503],[125,-24,75,-0.7327682469163299],[125,-24,76,-0.7324974917063297],[125,-24,77,-0.7322292356083098],[125,-24,78,-0.7319634829254439],[125,-24,79,-0.731700237860837],[125,-23,64,-0.7360361050022053],[125,-23,65,-0.7357377525939048],[125,-23,66,-0.7354418453407946],[125,-23,67,-0.7351483886239475],[125,-23,68,-0.7348573877291523],[125,-23,69,-0.734568847846487],[125,-23,70,-0.7342827740698772],[125,-23,71,-0.7339991713966583],[125,-23,72,-0.7337180447271358],[125,-23,73,-0.7334393988641621],[125,-23,74,-0.7331632385126823],[125,-23,75,-0.732889568279312],[125,-23,76,-0.732618392671902],[125,-23,77,-0.7323497160991038],[125,-23,78,-0.7320835428699403],[125,-23,79,-0.7318198771933693],[125,-22,64,-0.7361622130642789],[125,-22,65,-0.735863442165892],[125,-22,66,-0.7355671162790589],[125,-22,67,-0.7352732407906363],[125,-22,68,-0.7349818209922023],[125,-22,69,-0.7346928620796296],[125,-22,70,-0.7344063691526441],[125,-22,71,-0.7341223472143864],[125,-22,72,-0.7338408011709727],[125,-22,73,-0.7335617358310712],[125,-22,74,-0.7332851559054472],[125,-22,75,-0.733011066006542],[125,-22,76,-0.7327394706480364],[125,-22,77,-0.7324703742444171],[125,-22,78,-0.732203781110546],[125,-22,79,-0.7319396954612252],[125,-21,64,-0.7362884903364535],[125,-21,65,-0.7359893016231025],[125,-21,66,-0.7356925577754059],[125,-21,67,-0.7353982641859935],[125,-21,68,-0.735106426152222],[125,-21,69,-0.7348170488757487],[125,-21,70,-0.7345301374620891],[125,-21,71,-0.7342456969201787],[125,-21,72,-0.7339637321619347],[125,-21,73,-0.7336842480018304],[125,-21,74,-0.733407249156442],[125,-21,75,-0.7331327402440264],[125,-21,76,-0.7328607257840849],[125,-21,77,-0.7325912101969296],[125,-21,78,-0.7323241978032525],[125,-21,79,-0.73205969282369],[125,-20,64,-0.7364149369239663],[125,-20,65,-0.7361153310742984],[125,-20,66,-0.7358181699421062],[125,-20,67,-0.7355234589257819],[125,-20,68,-0.7352312033284502],[125,-20,69,-0.7349414083575421],[125,-20,70,-0.7346540791243524],[125,-20,71,-0.734369220643602],[125,-20,72,-0.7340868378329976],[125,-20,73,-0.7338069355128084],[125,-20,74,-0.7335295184054114],[125,-20,75,-0.733254591134869],[125,-20,76,-0.7329821582264936],[125,-20,77,-0.7327122241064128],[125,-20,78,-0.7324447931011391],[125,-20,79,-0.7321798694371339],[125,-19,64,-0.736541552929171],[125,-19,65,-0.7362415306253542],[125,-19,66,-0.7359439528885391],[125,-19,67,-0.7356488251228689],[125,-19,68,-0.7353561526372261],[125,-19,69,-0.7350659406448047],[125,-19,70,-0.7347781942626685],[125,-19,71,-0.7344929185113126],[125,-19,72,-0.734210118314224],[125,-19,73,-0.733929798497457],[125,-19,74,-0.7336519637891795],[125,-19,75,-0.7333766188192498],[125,-19,76,-0.7331037681187811],[125,-19,77,-0.7328334161197071],[125,-19,78,-0.7325655671543511],[125,-19,79,-0.7323002254549906],[125,-18,64,-0.7366683384515602],[125,-18,65,-0.7363679003792797],[125,-18,66,-0.7360699067212146],[125,-18,67,-0.7357743628872494],[125,-18,68,-0.7354812741920127],[125,-18,69,-0.7351906458544515],[125,-18,70,-0.7349024829973874],[125,-18,71,-0.7346167906470797],[125,-18,72,-0.7343335737327854],[125,-18,73,-0.7340528370863337],[125,-18,74,-0.733774585441673],[125,-18,75,-0.7334988234344476],[125,-18,76,-0.7332255556015619],[125,-18,77,-0.7329547863807457],[125,-18,78,-0.7326865201101238],[125,-18,79,-0.7324207610277798],[125,-17,64,-0.7367952935877453],[125,-17,65,-0.7364944404361986],[125,-17,66,-0.7361960315437539],[125,-17,67,-0.7359000723260248],[125,-17,68,-0.7356065681033761],[125,-17,69,-0.7353155241004962],[125,-17,70,-0.7350269454459548],[125,-17,71,-0.7347408371717645],[125,-17,72,-0.7344572042129416],[125,-17,73,-0.7341760514070803],[125,-17,74,-0.7338973834938993],[125,-17,75,-0.733621205114819],[125,-17,76,-0.7333475208125246],[125,-17,77,-0.7330763350305328],[125,-17,78,-0.7328076521127598],[125,-17,79,-0.7325414763030859],[125,-16,64,-0.7369224184315084],[125,-16,65,-0.7366211508934022],[125,-16,66,-0.7363223274569406],[125,-16,67,-0.7360259535434557],[125,-16,68,-0.735732034479037],[125,-16,69,-0.7354405754941041],[125,-16,70,-0.7351515817229639],[125,-16,71,-0.7348650582033718],[125,-16,72,-0.7345810098760928],[125,-16,73,-0.7342994415844757],[125,-16,74,-0.7340203580739997],[125,-16,75,-0.7337437639918505],[125,-16,76,-0.7334696638864852],[125,-16,77,-0.7331980622071963],[125,-16,78,-0.7329289633036824],[125,-16,79,-0.7326623714256106],[125,-15,64,-0.737049713073789],[125,-15,65,-0.7367480318453349],[125,-15,66,-0.7364487945587079],[125,-15,67,-0.7361520066409479],[125,-15,68,-0.7358576734238582],[125,-15,69,-0.7355658001435788],[125,-15,70,-0.7352763919401424],[125,-15,71,-0.7349894538570371],[125,-15,72,-0.7347049908407659],[125,-15,73,-0.7344230077404222],[125,-15,74,-0.7341435093072349],[125,-15,75,-0.7338665001941453],[125,-15,76,-0.7335919849553717],[125,-15,77,-0.7333199680459734],[125,-15,78,-0.7330504538214211],[125,-15,79,-0.732783446537159],[125,-14,64,-0.7371771776026703],[125,-14,65,-0.7368750833835804],[125,-14,66,-0.7365754329441245],[125,-14,67,-0.736278231717039],[125,-14,68,-0.7359834850398301],[125,-14,69,-0.7356911981543468],[125,-14,70,-0.7354013762063374],[125,-14,71,-0.7351140242450118],[125,-14,72,-0.7348291472226007],[125,-14,73,-0.7345467499939311],[125,-14,74,-0.7342668373159714],[125,-14,75,-0.7339894138474086],[125,-14,76,-0.7337144841482116],[125,-14,77,-0.7334420526791972],[125,-14,78,-0.7331721238015974],[125,-14,79,-0.7329047017766246],[125,-13,64,-0.737304812103432],[125,-13,65,-0.737002305596915],[125,-13,66,-0.7367022427054475],[125,-13,67,-0.736404628867451],[125,-13,68,-0.7361094694261233],[125,-13,69,-0.7358167696290117],[125,-13,70,-0.7355265346275695],[125,-13,71,-0.7352387694767168],[125,-13,72,-0.7349534791344021],[125,-13,73,-0.7346706684611752],[125,-13,74,-0.7343903422197338],[125,-13,75,-0.7341125050745],[125,-13,76,-0.7338371615911836],[125,-13,77,-0.733564316236348],[125,-13,78,-0.7332939733769777],[125,-13,79,-0.7330261372800428],[125,-12,64,-0.7374326166585364],[125,-12,65,-0.7371296985712936],[125,-12,66,-0.7368292239321085],[125,-12,67,-0.7365311981850761],[125,-12,68,-0.736235626679075],[125,-12,69,-0.7359425146673401],[125,-12,70,-0.7356518673070176],[125,-12,71,-0.7353636896587283],[125,-12,72,-0.7350779866861269],[125,-12,73,-0.7347947632554757],[125,-12,74,-0.7345140241351912],[125,-12,75,-0.7342357739954203],[125,-12,76,-0.7339600174076036],[125,-12,77,-0.7336867588440409],[125,-12,78,-0.7334160026774591],[125,-12,79,-0.7331477531805763],[125,-11,64,-0.7375605913476146],[125,-11,65,-0.7372572623898358],[125,-11,66,-0.7369563767106994],[125,-11,67,-0.7366579397599633],[125,-11,68,-0.7363619568921755],[125,-11,69,-0.7360684333662465],[125,-11,70,-0.7357773743450059],[125,-11,71,-0.7354887848947632],[125,-11,72,-0.7352026699848687],[125,-11,73,-0.7349190344872869],[125,-11,74,-0.7346378831761425],[125,-11,75,-0.7343592207272966],[125,-11,76,-0.7340830517179106],[125,-11,77,-0.7338093806260101],[125,-11,78,-0.7335382118300549],[125,-11,79,-0.7332695496085008],[125,-10,64,-0.7376887362475197],[125,-10,65,-0.7373849971328785],[125,-10,66,-0.737083701125026],[125,-10,67,-0.7367848536793711],[125,-10,68,-0.7364884601561199],[125,-10,69,-0.7361945258198479],[125,-10,70,-0.735903055839056],[125,-10,71,-0.7356140552857322],[125,-10,72,-0.7353275291349117],[125,-10,73,-0.7350434822642501],[125,-10,74,-0.7347619194535697],[125,-10,75,-0.7344828453844358],[125,-10,76,-0.7342062646397193],[125,-10,77,-0.7339321817031627],[125,-10,78,-0.7336606009589473],[125,-10,79,-0.7333915266912575],[125,-9,64,-0.7378170514323052],[125,-9,65,-0.7375129028779555],[125,-9,66,-0.7372111972560863],[125,-9,67,-0.7369119400277462],[125,-9,68,-0.736615136558788],[125,-9,69,-0.7363207921194407],[125,-9,70,-0.7360289118838659],[125,-9,71,-0.735739500929719],[125,-9,72,-0.7354525642377086],[125,-9,73,-0.7351681066911713],[125,-9,74,-0.7348861330756161],[125,-9,75,-0.7346066480783018],[125,-9,76,-0.734329656287799],[125,-9,77,-0.7340551621935559],[125,-9,78,-0.7337831701854662],[125,-9,79,-0.7335136845534322],[125,-8,64,-0.7379455369732483],[125,-8,65,-0.7376409796998198],[125,-8,66,-0.7373388651820934],[125,-8,67,-0.7370391988867463],[125,-8,68,-0.7367419861852663],[125,-8,69,-0.736447232353525],[125,-8,70,-0.7361549425713331],[125,-8,71,-0.7358651219220022],[125,-8,72,-0.7355777753919039],[125,-8,73,-0.7352929078700445],[125,-8,74,-0.7350105241476093],[125,-8,75,-0.7347306289175397],[125,-8,76,-0.7344532267740959],[125,-8,77,-0.7341783222124214],[125,-8,78,-0.7339059196281117],[125,-8,79,-0.7336360233167771],[125,-7,64,-0.7380741929388286],[125,-7,65,-0.7377692276704223],[125,-7,66,-0.7374667049784546],[125,-7,67,-0.737166630335219],[125,-7,68,-0.7368690091178276],[125,-7,69,-0.7365738466077825],[125,-7,70,-0.7362811479905326],[125,-7,71,-0.7359909183550346],[125,-7,72,-0.7357031626933122],[125,-7,73,-0.7354178859000302],[125,-7,74,-0.7351350927720395],[125,-7,75,-0.7348547880079537],[125,-7,76,-0.7345769762077117],[125,-7,77,-0.7343016618721421],[125,-7,78,-0.7340288494025321],[125,-7,79,-0.7337585431001898],[125,-6,64,-0.7382030193947812],[125,-6,65,-0.7378976468589654],[125,-6,66,-0.737594716717824],[125,-6,67,-0.7372942344492551],[125,-6,68,-0.7369962054359831],[125,-6,69,-0.7367006349651296],[125,-6,70,-0.7364075282277704],[125,-6,71,-0.7361168903184961],[125,-6,72,-0.735828726234971],[125,-6,73,-0.7355430408775079],[125,-6,74,-0.7352598390486125],[125,-6,75,-0.7349791254525596],[125,-6,76,-0.7347009046949564],[125,-6,77,-0.7344251812823062],[125,-6,78,-0.7341519596215773],[125,-6,79,-0.7338812440197656],[125,-5,64,-0.7383320164040827],[125,-5,65,-0.7380262373318889],[125,-5,66,-0.7377229004700887],[125,-5,67,-0.7374220113021737],[125,-5,68,-0.7371235752164688],[125,-5,69,-0.7368275975057036],[125,-5,70,-0.7365340833665692],[125,-5,71,-0.736243037899279],[125,-5,72,-0.7359544661071269],[125,-5,73,-0.7356683728960626],[125,-5,74,-0.7353847630742355],[125,-5,75,-0.7351036413515711],[125,-5,76,-0.7348250123393342],[125,-5,77,-0.7345488805496921],[125,-5,78,-0.7342752503952843],[125,-5,79,-0.7340041261887837],[125,-4,64,-0.7384611840269372],[125,-4,65,-0.7381549991528551],[125,-4,66,-0.7378512563023547],[125,-4,67,-0.7375499609645088],[125,-4,68,-0.737251118533231],[125,-4,69,-0.7369547343068477],[125,-4,70,-0.7366608134876539],[125,-4,71,-0.736369361181474],[125,-4,72,-0.7360803823972207],[125,-4,73,-0.7357938820464693],[125,-4,74,-0.7355098649430024],[125,-4,75,-0.735228335802385],[125,-4,76,-0.7349492992415285],[125,-4,77,-0.7346727597782545],[125,-4,78,-0.7343987218308622],[125,-4,79,-0.734127189717692],[125,-3,64,-0.738590522320829],[125,-3,65,-0.738283932382803],[125,-3,66,-0.7379797842789999],[125,-3,67,-0.7376780835040619],[125,-3,68,-0.73737883545748],[125,-3,69,-0.7370820454431651],[125,-3,70,-0.7367877186690049],[125,-3,71,-0.7364958602464237],[125,-3,72,-0.7362064751899413],[125,-3,73,-0.7359195684167479],[125,-3,74,-0.7356351447462474],[125,-3,75,-0.7353532088996342],[125,-3,76,-0.7350737654994559],[125,-3,77,-0.7347968190691766],[125,-3,78,-0.7345223740327458],[125,-3,79,-0.7342504347141604],[125,-2,64,-0.7387200313405018],[125,-2,65,-0.7384130370799262],[125,-2,66,-0.7381084844616528],[125,-2,67,-0.7378063789858811],[125,-2,68,-0.7375067260576678],[125,-2,69,-0.7372095309864968],[125,-2,70,-0.7369147989858367],[125,-2,71,-0.7366225351727002],[125,-2,72,-0.736332744567203],[125,-2,73,-0.736045432092139],[125,-2,74,-0.7357606025725226],[125,-2,75,-0.7354782607351664],[125,-2,76,-0.7351984112082431],[125,-2,77,-0.7349210585208491],[125,-2,78,-0.7346462071025734],[125,-2,79,-0.734373861283059],[125,-1,64,-0.7388497111379816],[125,-1,65,-0.7385423132996962],[125,-1,66,-0.7382373569092151],[125,-1,67,-0.7379348474722836],[125,-1,68,-0.7376347903995114],[125,-1,69,-0.7373371910059445],[125,-1,70,-0.7370420545106202],[125,-1,71,-0.7367493860361283],[125,-1,72,-0.7364591906081694],[125,-1,73,-0.736171473155129],[125,-1,74,-0.7358862385076216],[125,-1,75,-0.7356034913980665],[125,-1,76,-0.7353232364602509],[125,-1,77,-0.7350454782288928],[125,-1,78,-0.7347702211392098],[125,-1,79,-0.7344974695264808],[125,0,64,-0.738979561762555],[125,0,65,-0.7386717610948407],[125,0,66,-0.7383664016778406],[125,0,67,-0.7380634890228339],[125,0,68,-0.7377630285459716],[125,0,69,-0.7374650255678492],[125,0,70,-0.7371694853130619],[125,0,71,-0.7368764129097645],[125,0,72,-0.7365858133892308],[125,0,73,-0.7362976916854272],[125,0,74,-0.7360120526345568],[125,0,75,-0.7357289009746348],[125,0,76,-0.7354482413450516],[125,0,77,-0.7351700782861361],[125,0,78,-0.734894416238724],[125,0,79,-0.7346212595437193],[125,1,64,-0.7391095832608224],[125,1,65,-0.7388013805153969],[125,1,66,-0.7384956188209886],[125,1,67,-0.7381923036943979],[125,1,68,-0.7378914405573056],[125,1,69,-0.7375930347358446],[125,1,70,-0.7372970914601561],[125,1,71,-0.7370036158639488],[125,1,72,-0.7367126129840579],[125,1,73,-0.7364240877600194],[125,1,74,-0.7361380450336134],[125,1,75,-0.7358544895484401],[125,1,76,-0.7355734259494824],[125,1,77,-0.735294858782669],[125,1,78,-0.7350187924944427],[125,1,79,-0.7347452314313225],[125,2,64,-0.7392397756766844],[125,2,65,-0.7389311716086977],[125,2,66,-0.738625008389409],[125,2,67,-0.7383212915411278],[125,2,68,-0.7380200264910526],[125,2,69,-0.7377212185708424],[125,2,70,-0.7374248730161717],[125,2,71,-0.7371309949662915],[125,2,72,-0.7368395894635873],[125,2,73,-0.736550661453153],[125,2,74,-0.7362642157823345],[125,2,75,-0.7359802572003058],[125,2,76,-0.7356987903576309],[125,2,77,-0.7354198198058277],[125,2,78,-0.7351433499969355],[125,2,79,-0.7348693852830772],[125,3,64,-0.7393701390513269],[125,3,65,-0.7390611344193565],[125,3,66,-0.7387545704311281],[125,3,67,-0.7384504526144481],[125,3,68,-0.7381487864020204],[125,3,69,-0.7378495771310176],[125,3,70,-0.7375528300426364],[125,3,71,-0.7372585502816582],[125,3,72,-0.7369667428960069],[125,3,73,-0.7366774128363227],[125,3,74,-0.7363905649555064],[125,3,75,-0.7361062040082941],[125,3,76,-0.7358243346508202],[125,3,77,-0.7355449614401806],[125,3,78,-0.7352680888340002],[125,3,79,-0.7349937211899952],[125,4,64,-0.7395006734232744],[125,4,65,-0.7391912689893214],[125,4,66,-0.7388843049915026],[125,4,67,-0.738579786963109],[125,4,68,-0.7382777203423375],[125,4,69,-0.7379781104718626],[125,4,70,-0.7376809625983913],[125,4,71,-0.7373862818722232],[125,4,72,-0.7370940733468091],[125,4,73,-0.7368043419783241],[125,4,74,-0.7365170926252121],[125,4,75,-0.7362323300477605],[125,4,76,-0.7359500589076624],[125,4,77,-0.735670283767581],[125,4,78,-0.7353930090907159],[125,4,79,-0.7351182392403657],[125,5,64,-0.739631378828369],[125,5,65,-0.7393215753578533],[125,5,66,-0.7390142121131972],[125,5,67,-0.7387092946331641],[125,5,68,-0.738406828361432],[125,5,69,-0.738106818646165],[125,5,70,-0.7378092707395679],[125,5,71,-0.7375141897974473],[125,5,72,-0.7372215808787689],[125,5,73,-0.736931448945231],[125,5,74,-0.7366437988608092],[125,5,75,-0.7363586353913307],[125,5,76,-0.7360759632040366],[125,5,77,-0.7357957868671455],[125,5,78,-0.7355181108494211],[125,5,79,-0.7352429395197337],[125,6,64,-0.7397622552997933],[125,6,65,-0.7394520535615484],[125,6,66,-0.7391442918362079],[125,6,67,-0.7388389756679944],[125,6,68,-0.7385361105060548],[125,6,69,-0.7382357017040304],[125,6,70,-0.7379377545196123],[125,6,71,-0.7376422741141015],[125,6,72,-0.737349265551967],[125,6,73,-0.7370587338004192],[125,6,74,-0.7367706837289533],[125,6,75,-0.7364851201089246],[125,6,76,-0.7362020476131113],[125,6,77,-0.7359214708152765],[125,6,78,-0.7356433941897367],[125,6,79,-0.7353678221109228],[125,7,64,-0.7398933028680478],[125,7,65,-0.7395827036343176],[125,7,66,-0.7392745441978401],[125,7,67,-0.7389688301082855],[125,7,68,-0.7386655668202569],[125,7,69,-0.7383647596928604],[125,7,70,-0.7380664139892618],[125,7,71,-0.7377705348762441],[125,7,72,-0.7374771274237679],[125,7,73,-0.7371861966045434],[125,7,74,-0.7368977472935744],[125,7,75,-0.7366117842677331],[125,7,76,-0.7363283122053227],[125,7,77,-0.7360473356856398],[125,7,78,-0.7357688591885428],[125,7,79,-0.7354928870940125],[125,8,64,-0.7400245215610056],[125,8,65,-0.7397135256074385],[125,8,66,-0.7394049692327622],[125,8,67,-0.7390988579920816],[125,8,68,-0.7387951973454435],[125,8,69,-0.7384939926574071],[125,8,70,-0.7381952491965995],[125,8,71,-0.7378989721352749],[125,8,72,-0.7376051665488729],[125,8,73,-0.7373138374155919],[125,8,74,-0.7370249896159324],[125,8,75,-0.7367386279322721],[125,8,76,-0.7364547570484279],[125,8,77,-0.736173381549219],[125,8,78,-0.7358945059200337],[125,8,79,-0.7356181345463919],[125,9,64,-0.7401559114038974],[125,9,65,-0.7398445195095422],[125,9,66,-0.7395355669729912],[125,9,67,-0.739229059354771],[125,9,68,-0.7389250021203597],[125,9,69,-0.7386234006397571],[125,9,70,-0.7383242601870397],[125,9,71,-0.73802758593992],[125,9,72,-0.7377333829793056],[125,9,73,-0.7374416562888707],[125,9,74,-0.7371524107546009],[125,9,75,-0.7368656511643679],[125,9,76,-0.7365813822074906],[125,9,77,-0.7362996084742991],[125,9,78,-0.7360203344557014],[125,9,79,-0.7357435645427449],[125,10,64,-0.7402874724192965],[125,10,65,-0.7399756853665983],[125,10,66,-0.7396663374478777],[125,10,67,-0.7393594342290709],[125,10,68,-0.7390549811810749],[125,10,69,-0.7387529836793174],[125,10,70,-0.738453447003312],[125,10,71,-0.7381563763362176],[125,10,72,-0.7378617767643971],[125,10,73,-0.7375696532769893],[125,10,74,-0.7372800107654528],[125,10,75,-0.7369928540231414],[125,10,76,-0.736708187744865],[125,10,77,-0.736426016526453],[125,10,78,-0.7361463448643216],[125,10,79,-0.735869177155035],[125,11,64,-0.7404192046271738],[125,11,65,-0.7401070232019683],[125,11,66,-0.7397972806841601],[125,11,67,-0.7394899826450823],[125,11,68,-0.7391851345610376],[125,11,69,-0.7388827418128694],[125,11,70,-0.7385828096855163],[125,11,71,-0.7382853433675713],[125,11,72,-0.7379903479508403],[125,11,73,-0.7376978284299145],[125,11,74,-0.7374077897017142],[125,11,75,-0.7371202365650631],[125,11,76,-0.7368351737202508],[125,11,77,-0.7365526057685945],[125,11,78,-0.7362725372120074],[125,11,79,-0.735994972452559],[125,12,64,-0.7405511080448745],[125,12,65,-0.7402385330363839],[125,12,66,-0.739928396705942],[125,12,67,-0.7396207046302661],[125,12,68,-0.739315462291052],[125,12,69,-0.7390126750745465],[125,12,70,-0.7387123482711],[125,12,71,-0.7384144870747276],[125,12,72,-0.7381190965826663],[125,12,73,-0.7378261817949475],[125,12,74,-0.7375357476139411],[125,12,75,-0.7372477988439295],[125,12,76,-0.7369623401906696],[125,12,77,-0.7366793762609556],[125,12,78,-0.7363989115621858],[125,12,79,-0.7361209505019242],[125,13,64,-0.740683182687142],[125,13,65,-0.7403702148879702],[125,13,66,-0.7400596855347161],[125,13,67,-0.7397516002094682],[125,13,68,-0.7394459643993028],[125,13,69,-0.7391427834958568],[125,13,70,-0.7388420627948811],[125,13,71,-0.7385438074957996],[125,13,72,-0.7382480227012685],[125,13,73,-0.7379547134167476],[125,13,74,-0.737663884550044],[125,13,75,-0.7373755409108869],[125,13,76,-0.7370896872104893],[125,13,77,-0.7368063280611101],[125,13,78,-0.736525467975622],[125,13,79,-0.7362471113670718],[125,14,64,-0.7408154285660954],[125,14,65,-0.740502068772223],[125,14,66,-0.7401911471893412],[125,14,67,-0.7398826694048956],[125,14,68,-0.7395766409113309],[125,14,69,-0.7392730671056615],[125,14,70,-0.7389719532890255],[125,14,71,-0.7386733046662443],[125,14,72,-0.7383771263453802],[125,14,73,-0.738083423337309],[125,14,74,-0.7377922005552636],[125,14,75,-0.7375034628144082],[125,14,76,-0.7372172148313995],[125,14,77,-0.7369334612239503],[125,14,78,-0.7366522065103955],[125,14,79,-0.7363734551092538],[125,15,64,-0.7409478456912837],[125,15,65,-0.740634094702064],[125,15,66,-0.7403227816860962],[125,15,67,-0.7400139122361713],[125,15,68,-0.739707491850089],[125,15,69,-0.7394035259302282],[125,15,70,-0.739102019783102],[125,15,71,-0.7388029786189163],[125,15,72,-0.7385064075511274],[125,15,73,-0.7382123115960154],[125,15,74,-0.7379206956722263],[125,15,75,-0.7376315646003473],[125,15,76,-0.7373449231024675],[125,15,77,-0.7370607758017413],[125,15,78,-0.736779127221955],[125,15,79,-0.7364999817870872],[125,16,64,-0.7410804340696708],[125,16,65,-0.7407662926878242],[125,16,66,-0.740454589038666],[125,16,67,-0.7401453287203192],[125,16,68,-0.7398385172359256],[125,16,69,-0.7395341599932164],[125,16,70,-0.7392322623040661],[125,16,71,-0.738932829384053],[125,16,72,-0.7386358663520154],[125,16,73,-0.7383413782296245],[125,16,74,-0.7380493699409281],[125,16,75,-0.7377598463119238],[125,16,76,-0.7374728120701217],[125,16,77,-0.7371882718441061],[125,16,78,-0.7369062301631024],[125,16,79,-0.7366266914565384],[125,17,64,-0.741213193705621],[125,17,65,-0.7408986627372305],[125,17,66,-0.740586569258126],[125,17,67,-0.7402769188717493],[125,17,68,-0.7399697170865711],[125,17,69,-0.7396649693156617],[125,17,70,-0.7393626808762455],[125,17,71,-0.7390628569892598],[125,17,72,-0.7387655027789121],[125,17,73,-0.7384706232722531],[125,17,74,-0.7381782233987195],[125,17,75,-0.737888307989708],[125,17,76,-0.737600881778137],[125,17,77,-0.7373159493980094],[125,17,78,-0.737033515383978],[125,17,79,-0.7367535841709081],[125,18,64,-0.741346124600953],[125,18,65,-0.7410312048554593],[125,18,66,-0.7407187223529963],[125,18,67,-0.7404086827023112],[125,18,68,-0.7401010914171908],[125,18,69,-0.7397959539160317],[125,18,70,-0.7394932755213947],[125,18,71,-0.7391930614595636],[125,18,72,-0.7388953168601033],[125,18,73,-0.738600046755431],[125,18,74,-0.7383072560803602],[125,18,75,-0.7380169496716744],[125,18,76,-0.7377291322676889],[125,18,77,-0.7374438085078123],[125,18,78,-0.7371609829321144],[125,18,79,-0.7368806599808855],[125,19,64,-0.7414792267549248],[125,19,65,-0.7411639190451218],[125,19,66,-0.740851048329227],[125,19,67,-0.7405406202212802],[125,19,68,-0.7402326402403707],[125,19,69,-0.7399271138102089],[125,19,70,-0.739624046258679],[125,19,71,-0.7393234428173988],[125,19,72,-0.7390253086212772],[125,19,73,-0.7387296487080862],[125,19,74,-0.7384364680180036],[125,19,75,-0.7381457713931876],[125,19,76,-0.7378575635773379],[125,19,77,-0.7375718492152579],[125,19,78,-0.7372886328524212],[125,19,79,-0.7370079189345329],[125,20,64,-0.7416125001642191],[125,20,65,-0.7412968053062483],[125,20,66,-0.7409835471901829],[125,20,67,-0.7406727314353412],[125,20,68,-0.7403643635661025],[125,20,69,-0.740058449011477],[125,20,70,-0.73975499310466],[125,20,71,-0.7394540010825905],[125,20,72,-0.7391554780855091],[125,20,73,-0.7388594291565294],[125,20,74,-0.7385658592411813],[125,20,75,-0.7382747731869858],[125,20,76,-0.7379861757430145],[125,20,77,-0.7377000715594537],[125,20,78,-0.7374164651871696],[125,20,79,-0.7371353610772696],[125,21,64,-0.7417459448229972],[125,21,65,-0.7414298636363438],[125,21,66,-0.741116218936698],[125,21,67,-0.7408050163486437],[125,21,68,-0.7404962614018368],[125,21,69,-0.7401899595305745],[125,21,70,-0.7398861160733499],[125,21,71,-0.7395847362724104],[125,21,72,-0.7392858252733154],[125,21,73,-0.7389893881245079],[125,21,74,-0.7386954297768576],[125,21,75,-0.7384039550832354],[125,21,76,-0.7381149687980735],[125,21,77,-0.7378284755769283],[125,21,78,-0.7375444799760469],[125,21,79,-0.7372629864519274],[125,22,64,-0.741879560722877],[125,22,65,-0.7415630940303641],[125,22,66,-0.7412490635670526],[125,22,67,-0.7409374749627788],[125,22,68,-0.7406283337524615],[125,22,69,-0.7403216453756721],[125,22,70,-0.7400174151761882],[125,22,71,-0.739715648401553],[125,22,72,-0.7394163502026315],[125,22,73,-0.7391195256331837],[125,22,74,-0.7388251796494067],[125,22,75,-0.7385333171095088],[125,22,76,-0.7382439427732703],[125,22,77,-0.7379570613016064],[125,22,78,-0.7376726772561328],[125,22,79,-0.7373907950987265],[125,23,64,-0.742013347852956],[125,23,65,-0.7416964964807401],[125,23,66,-0.7413820810769973],[125,23,67,-0.7410701072768029],[125,23,68,-0.7407605806203252],[125,23,69,-0.7404535065523964],[125,23,70,-0.7401488904220659],[125,23,71,-0.7398467374821589],[125,23,72,-0.7395470528888344],[125,23,73,-0.739249841701156],[125,23,74,-0.7389551088806355],[125,23,75,-0.7386628592908066],[125,23,76,-0.7383730976967854],[125,23,77,-0.7380858287648335],[125,23,78,-0.7378010570619233],[125,23,79,-0.7375187870552988],[125,24,64,-0.7421473061997883],[125,24,65,-0.7418300709773541],[125,24,66,-0.7415152714597293],[125,24,67,-0.7412029132872139],[125,24,68,-0.740893002005213],[125,24,69,-0.7405855430638061],[125,24,70,-0.740280541817301],[125,24,71,-0.7399780035237924],[125,24,72,-0.7396779333447197],[125,24,73,-0.7393803363444379],[125,24,74,-0.7390852174897606],[125,24,75,-0.7387925816495347],[125,24,76,-0.7385024335941996],[125,24,77,-0.7382147779953513],[125,24,78,-0.7379296194253065],[125,24,79,-0.7376469623566649],[125,25,64,-0.7422814357474397],[125,25,65,-0.7419638175075953],[125,25,66,-0.7416486347059472],[125,25,67,-0.741335892988007],[125,25,68,-0.7410255979044026],[125,25,69,-0.7407177549104473],[125,25,70,-0.7404123693656945],[125,25,71,-0.7401094465334954],[125,25,72,-0.7398089915805566],[125,25,73,-0.7395110095765114],[125,25,74,-0.7392155054934634],[125,25,75,-0.7389224842055592],[125,25,76,-0.7386319504885499],[125,25,77,-0.7383439090193531],[125,25,78,-0.7380583643756182],[125,25,79,-0.7377753210352882],[125,26,64,-0.7424157364774722],[125,26,65,-0.742097736056344],[125,26,66,-0.7417821708038363],[125,26,67,-0.7414690463706586],[125,26,68,-0.7411583683126478],[125,26,69,-0.7408501420903381],[125,26,70,-0.7405443730685148],[125,26,71,-0.7402410665157724],[125,26,72,-0.7399402276040716],[125,26,73,-0.7396418614083121],[125,26,74,-0.7393459729058737],[125,26,75,-0.7390525669761907],[125,26,76,-0.7387616484003132],[125,26,77,-0.7384732218604679],[125,26,78,-0.7381872919396255],[125,26,79,-0.7379038631210598],[125,27,64,-0.7425502083689285],[125,27,65,-0.7422318266059564],[125,27,66,-0.7419158797390528],[125,27,67,-0.741602373424111],[125,27,68,-0.7412913132221637],[125,27,69,-0.7409827045989527],[125,27,70,-0.7406765529244813],[125,27,71,-0.7403728634725744],[125,27,72,-0.7400716414204344],[125,27,73,-0.7397728918482132],[125,27,74,-0.7394766197385545],[125,27,75,-0.7391828299761684],[125,27,76,-0.7388915273473904],[125,27,77,-0.7386027165397452],[125,27,78,-0.7383164021415113],[125,27,79,-0.738032588641282],[125,28,64,-0.7426848513983876],[125,28,65,-0.7423660891363196],[125,28,66,-0.7420497614947782],[125,28,67,-0.7417358741348272],[125,28,68,-0.7414244326226817],[125,28,69,-0.7411154424292762],[125,28,70,-0.7408089089298201],[125,28,71,-0.7405048374033547],[125,28,72,-0.7402032330323107],[125,28,73,-0.7399041009020799],[125,28,74,-0.7396074460005573],[125,28,75,-0.7393132732177148],[125,28,76,-0.7390215873451622],[125,28,77,-0.7387323930757087],[125,28,78,-0.738445695002929],[125,28,79,-0.7381614976207234],[125,29,64,-0.7428196655399406],[125,29,65,-0.7425005236248279],[125,29,66,-0.7421838160516971],[125,29,67,-0.7418695484867686],[125,29,68,-0.7415577265014252],[125,29,69,-0.741248355571782],[125,29,70,-0.7409414410782402],[125,29,71,-0.7406369883050445],[125,29,72,-0.7403350024398407],[125,29,73,-0.7400354885732474],[125,29,74,-0.7397384516983974],[125,29,75,-0.7394438967105129],[125,29,76,-0.7391518284064644],[125,29,77,-0.7388622514843337],[125,29,78,-0.738575170542979],[125,29,79,-0.7382905900815959],[125,30,64,-0.7429546507652154],[125,30,65,-0.7426351300464071],[125,30,66,-0.7423180433880199],[125,30,67,-0.7420033964614164],[125,30,68,-0.7416911948431343],[125,30,69,-0.7413814440144549],[125,30,70,-0.7410741493609576],[125,30,71,-0.7407693161720771],[125,30,72,-0.7404669496406615],[125,30,73,-0.7401670548625425],[125,30,74,-0.7398696368360788],[125,30,75,-0.7395747004617289],[125,30,76,-0.7392822505416121],[125,30,77,-0.7389922917790699],[125,30,78,-0.7387048287782321],[125,30,79,-0.7384198660435768],[125,31,64,-0.7430898070433523],[125,31,65,-0.7427699083734909],[125,31,66,-0.7424524434794599],[125,31,67,-0.742137418037751],[125,31,68,-0.741824837630042],[125,31,69,-0.7415147077427673],[125,31,70,-0.7412070337666706],[125,31,71,-0.740901820996364],[125,31,72,-0.7405990746298835],[125,31,73,-0.7402987997682617],[125,31,74,-0.7400010014150693],[125,31,75,-0.739705684475989],[125,31,76,-0.7394128537583756],[125,31,77,-0.7391225139708182],[125,31,78,-0.7388346697227053],[125,31,79,-0.7385493255237858],[125,32,64,-0.7432251343410603],[125,32,65,-0.7429048585760756],[125,32,66,-0.7425870162992884],[125,32,67,-0.7422716131923046],[125,32,68,-0.741958654841929],[125,32,69,-0.7416481467397347],[125,32,70,-0.7413400942816167],[125,32,71,-0.74103450276735],[125,32,72,-0.7407313774001463],[125,32,73,-0.7404307232862251],[125,32,74,-0.7401325454343562],[125,32,75,-0.7398368487554339],[125,32,76,-0.7395436380620356],[125,32,77,-0.7392529180679852],[125,32,78,-0.7389646933879177],[125,32,79,-0.7386789685368401],[125,33,64,-0.7433606326226003],[125,33,65,-0.7430399806217052],[125,33,66,-0.7427217618183187],[125,33,67,-0.7424059818991473],[125,33,68,-0.7420926464561083],[125,33,69,-0.7417817609859001],[125,33,70,-0.741473330889555],[125,33,71,-0.7411673614719978],[125,33,72,-0.7408638579416018],[125,33,73,-0.7405628254097609],[125,33,74,-0.7402642688904308],[125,33,75,-0.7399681932997036],[125,33,76,-0.7396746034553673],[125,33,77,-0.7393835040764676],[125,33,78,-0.7390948997828736],[125,33,79,-0.7388087950948381],[125,34,64,-0.7434963018497709],[125,34,65,-0.7431752744754554],[125,34,66,-0.742856680004891],[125,34,67,-0.7425405241298703],[125,34,68,-0.7422268124474094],[125,34,69,-0.7419155504593178],[125,34,70,-0.7416067435717517],[125,34,71,-0.7413003970947717],[125,34,72,-0.7409965162418997],[125,34,73,-0.7406951061296898],[125,34,74,-0.7403961717772714],[125,34,75,-0.7400997181059211],[125,34,76,-0.7398057499386245],[125,34,77,-0.7395142719996362],[125,34,78,-0.7392252889140472],[125,34,79,-0.738938805207343],[125,35,64,-0.7436321419819623],[125,35,65,-0.7433107400999888],[125,35,66,-0.7429917708249272],[125,35,67,-0.7426752398536417],[125,35,68,-0.7423611527882334],[125,35,69,-0.7420495151356091],[125,35,70,-0.7417403323070346],[125,35,71,-0.741433609617693],[125,35,72,-0.741129352286241],[125,35,73,-0.7408275654343802],[125,35,74,-0.7405282540863993],[125,35,75,-0.7402314231687476],[125,35,76,-0.7399370775095941],[125,35,77,-0.7396452218383909],[125,35,78,-0.7393558607854369],[125,35,79,-0.7390689988814391],[125,36,64,-0.7437681529761333],[125,36,65,-0.7434463774555313],[125,36,66,-0.7431270342419072],[125,36,67,-0.7428101290371829],[125,36,68,-0.7424956674485299],[125,36,69,-0.7421836549879383],[125,36,70,-0.7418740970717698],[125,36,71,-0.7415669990203163],[125,36,72,-0.7412623660573558],[125,36,73,-0.7409602033097238],[125,36,74,-0.7406605158068553],[125,36,75,-0.7403633084803583],[125,36,76,-0.7400685861635735],[125,36,77,-0.7397763535911366],[125,36,78,-0.7394866153985424],[125,36,79,-0.7391993761217064],[125,37,64,-0.7439043347868357],[125,37,65,-0.7435821864998964],[125,37,66,-0.7432624702168934],[125,37,67,-0.742945191644792],[125,37,68,-0.7426303563958199],[125,37,69,-0.7423179699870363],[125,37,70,-0.7420080378398852],[125,37,71,-0.7417005652797531],[125,37,72,-0.741395557535526],[125,37,73,-0.7410930197391595],[125,37,74,-0.740792956925222],[125,37,75,-0.7404953740304667],[125,37,76,-0.7402002758933931],[125,37,77,-0.7399076672538071],[125,37,78,-0.7396175527523874],[125,37,79,-0.7393299369302448],[125,38,64,-0.7440406873661893],[125,38,65,-0.7437181671884605],[125,38,66,-0.7433980787085062],[125,38,67,-0.7430804276383202],[125,38,68,-0.7427652195951724],[125,38,69,-0.742452460101177],[125,38,70,-0.7421421545828465],[125,38,71,-0.7418343083706481],[125,38,72,-0.7415289266985617],[125,38,73,-0.74122601470365],[125,38,74,-0.7409255774256008],[125,38,75,-0.7406276198063001],[125,38,76,-0.7403321466893922],[125,38,77,-0.7400391628198411],[125,38,78,-0.7397486728434958],[125,38,79,-0.7394606813066504],[125,39,64,-0.7441772106639388],[125,39,65,-0.7438543194742194],[125,39,66,-0.7435338596729792],[125,39,67,-0.7432158369772268],[125,39,68,-0.7429002570092597],[125,39,69,-0.742587125296233],[125,39,70,-0.7422764472697128],[125,39,71,-0.741968228265234],[125,39,72,-0.7416624735218565],[125,39,73,-0.7413591881817363],[125,39,74,-0.7410583772896673],[125,39,75,-0.7407600457926548],[125,39,76,-0.7404641985394751],[125,39,77,-0.7401708402802368],[125,39,78,-0.7398799756659469],[125,39,79,-0.7395916092480695],[125,40,64,-0.7443139046274367],[125,40,65,-0.7439906433077716],[125,40,66,-0.7436698130641448],[125,40,67,-0.7433514196185647],[125,40,68,-0.7430354685983419],[125,40,69,-0.7427219655356585],[125,40,70,-0.7424109158671206],[125,40,71,-0.7421023249333162],[125,40,72,-0.7417961979783715],[125,40,73,-0.7414925401495222],[125,40,74,-0.7411913564966548],[125,40,75,-0.7408926519718804],[125,40,76,-0.7405964314290943],[125,40,77,-0.7403026996235368],[125,40,78,-0.7400114612113594],[125,40,79,-0.7397227207491841],[125,41,64,-0.7444507692016282],[125,41,65,-0.744127138637303],[125,41,66,-0.7438059388334164],[125,41,67,-0.7434871755169622],[125,41,68,-0.7431708543202503],[125,41,69,-0.7428569807804749],[125,41,70,-0.7425455603392678],[125,41,71,-0.7422365983422561],[125,41,72,-0.7419301000386189],[125,41,73,-0.7416260705806577],[125,41,74,-0.7413245150233381],[125,41,75,-0.7410254383238635],[125,41,76,-0.7407288453412346],[125,41,77,-0.7404347408358106],[125,41,78,-0.7401431294688747],[125,41,79,-0.7398540158021938],[125,42,64,-0.7445878043291069],[125,42,65,-0.7442638054086419],[125,42,66,-0.7439422369298451],[125,42,67,-0.7436231046246808],[125,42,68,-0.7433064141304433],[125,42,69,-0.7429921709893248],[125,42,70,-0.7426803806479687],[125,42,71,-0.7423710484570274],[125,42,72,-0.7420641796707185],[125,42,73,-0.7417597794463953],[125,42,74,-0.7414578528440894],[125,42,75,-0.7411584048260829],[125,42,76,-0.7408614402564686],[125,42,77,-0.7405669639007113],[125,42,78,-0.7402749804252131],[125,42,79,-0.7399854943968727],[125,43,64,-0.7447250099500902],[125,43,65,-0.7444006435652359],[125,43,66,-0.7440787073000956],[125,43,67,-0.7437592068915899],[125,43,68,-0.7434421479819825],[125,43,69,-0.7431275361184493],[125,43,70,-0.7428153767526311],[125,43,71,-0.7425056752401913],[125,43,72,-0.7421984368403719],[125,43,73,-0.741893666715565],[125,43,74,-0.7415913699308536],[125,43,75,-0.7412915514535854],[125,43,76,-0.7409942161529322],[125,43,77,-0.7406993687994505],[125,43,78,-0.7404070140646487],[125,43,79,-0.7401171565205441],[125,44,64,-0.7448623860024435],[125,44,65,-0.7445376530481749],[125,44,66,-0.74421534988847],[125,44,67,-0.7438954822651906],[125,44,68,-0.7435780558255559],[125,44,69,-0.7432630761217106],[125,44,70,-0.7429505486102785],[125,44,71,-0.7426404786519202],[125,44,72,-0.7423328715108881],[125,44,73,-0.7420277323545985],[125,44,74,-0.7417250662531729],[125,44,75,-0.7414248781790105],[125,44,76,-0.7411271730063482],[125,44,77,-0.7408319555108225],[125,44,78,-0.7405392303690335],[125,44,79,-0.7402490021581047],[125,45,64,-0.7449999324216567],[125,45,65,-0.7446748337961676],[125,45,66,-0.7443521646368835],[125,45,67,-0.7440319306905926],[125,45,68,-0.7437141376094545],[125,45,69,-0.7433987909505687],[125,45,70,-0.7430858961755276],[125,45,71,-0.7427754586499742],[125,45,72,-0.7424674836431577],[125,45,73,-0.7421619763275047],[125,45,74,-0.741858941778161],[125,45,75,-0.741558384972564],[125,45,76,-0.7412603107900028],[125,45,77,-0.7409647240111792],[125,45,78,-0.7406716293177725],[125,45,79,-0.7403810312920001],[125,46,64,-0.7451376491408994],[125,46,65,-0.744812185745597],[125,46,66,-0.7444891514849202],[125,46,67,-0.7441685521105686],[125,46,68,-0.7438503932796277],[125,46,69,-0.7435346805541367],[125,46,70,-0.7432214194006426],[125,46,71,-0.7429106151897562],[125,46,72,-0.7426022731957094],[125,46,73,-0.7422963985959254],[125,46,74,-0.7419929964705603],[125,46,75,-0.741692071802076],[125,46,76,-0.7413936294747998],[125,46,77,-0.7410976742744861],[125,46,78,-0.7408042108878803],[125,46,79,-0.7405132439022796],[125,47,64,-0.7452755360910045],[125,47,65,-0.7449497088305044],[125,47,66,-0.7446263103698174],[125,47,67,-0.7443053464655394],[125,47,68,-0.7439868227796669],[125,47,69,-0.7436707448791648],[125,47,70,-0.7433571182355193],[125,47,71,-0.7430459482242957],[125,47,72,-0.7427372401246939],[125,47,73,-0.7424309991191193],[125,47,74,-0.7421272302927246],[125,47,75,-0.7418259386329826],[125,47,76,-0.7415271290292456],[125,47,77,-0.7412308062723064],[125,47,78,-0.7409369750539635],[125,47,79,-0.740645639966581],[125,48,64,-0.745413593200453],[125,48,65,-0.7450874029825734],[125,48,66,-0.7447636412264487],[125,48,67,-0.7444423136935566],[125,48,68,-0.7441234260507898],[125,48,69,-0.7438069838700238],[125,48,70,-0.7434929926276699],[125,48,71,-0.7431814577042328],[125,48,72,-0.7428723843838665],[125,48,73,-0.7425657778539448],[125,48,74,-0.7422616432046032],[125,48,75,-0.7419599854283109],[125,48,76,-0.7416608094194316],[125,48,77,-0.7413641199737835],[125,48,78,-0.7410699217882047],[125,48,79,-0.7407782194601129],[125,49,64,-0.7455518203954292],[125,49,65,-0.7452252681311853],[125,49,66,-0.7449011439873806],[125,49,67,-0.7445794537303595],[125,49,68,-0.7442602030318959],[125,49,69,-0.7439433974687611],[125,49,70,-0.7436290425222771],[125,49,71,-0.7433171435778736],[125,49,72,-0.7430077059246444],[125,49,73,-0.742700734754917],[125,49,74,-0.742396235163796],[125,49,75,-0.7420942121487336],[125,49,76,-0.7417946706090908],[125,49,77,-0.7414976153456977],[125,49,78,-0.7412030510604186],[125,49,79,-0.7409109823557114],[125,50,64,-0.7456902175998051],[125,50,65,-0.7453633042034036],[125,50,66,-0.7450388185828559],[125,50,67,-0.744716766509358],[125,50,68,-0.7443971536595501],[125,50,69,-0.7440799856150846],[125,50,70,-0.7437652678621791],[125,50,71,-0.7434530057911742],[125,50,72,-0.7431432046960889],[125,50,73,-0.7428358697741906],[125,50,74,-0.7425310061255384],[125,50,75,-0.7422286187525535],[125,50,76,-0.741928712559581],[125,50,77,-0.7416312923524491],[125,50,78,-0.7413363628380347],[125,50,79,-0.7410439286238228],[125,51,64,-0.7458287847351234],[125,51,65,-0.7455015111239569],[125,51,66,-0.7451766649407774],[125,51,67,-0.7448542519616168],[125,51,68,-0.7445342778679667],[125,51,69,-0.7442167482463456],[125,51,70,-0.7439016685878528],[125,51,71,-0.7435890442877242],[125,51,72,-0.7432788806448898],[125,51,73,-0.7429711828615431],[125,51,74,-0.7426659560426829],[125,51,75,-0.7423632051956865],[125,51,76,-0.7420629352298682],[125,51,77,-0.741765150956041],[125,51,78,-0.741469857086081],[125,51,79,-0.7411770582324874],[125,52,64,-0.7459675217206541],[125,52,65,-0.7456398888152959],[125,52,66,-0.7453146829867638],[125,52,67,-0.744991910015911],[125,52,68,-0.7446715755890652],[125,52,69,-0.7443536852975962],[125,52,70,-0.7440382446374691],[125,52,71,-0.7437252590088022],[125,52,72,-0.7434147337154212],[125,52,73,-0.7431066739644311],[125,52,74,-0.7428010848657571],[125,52,75,-0.7424979714317174],[125,52,76,-0.7421973385765825],[125,52,77,-0.7418991911161363],[125,52,78,-0.7416035337672406],[125,52,79,-0.741310371147395],[125,53,64,-0.74610642847337],[125,53,65,-0.7457784371975681],[125,53,66,-0.7454528726441259],[125,53,67,-0.7451297405987022],[125,53,68,-0.7448090467524457],[125,53,69,-0.7444907967015627],[125,53,70,-0.74417499594687],[125,53,71,-0.7438616498933521],[125,53,72,-0.7435507638497169],[125,53,73,-0.7432423430279661],[125,53,74,-0.7429363925429373],[125,53,75,-0.7426329174118755],[125,53,76,-0.7423319225539935],[125,53,77,-0.7420334127900323],[125,53,78,-0.7417373928418258],[125,53,79,-0.7414438673318603],[125,54,64,-0.7462455049079708],[125,54,65,-0.7459171561886424],[125,54,66,-0.7455912338338896],[125,54,67,-0.7452677436341617],[125,54,68,-0.7449466912854132],[125,54,69,-0.7446280823886717],[125,54,70,-0.7443119224495907],[125,54,71,-0.7439982168780063],[125,54,72,-0.7436869709874938],[125,54,73,-0.7433781899949379],[125,54,74,-0.7430718790200733],[125,54,75,-0.7427680430850584],[125,54,76,-0.7424666871140342],[125,54,77,-0.7421678159326847],[125,54,78,-0.7418714342678023],[125,54,79,-0.7415775467468471],[125,55,64,-0.7463847509368582],[125,55,65,-0.7460560457040842],[125,55,66,-0.7457297664747722],[125,55,67,-0.7454059190441468],[125,55,68,-0.7450845091129528],[125,55,69,-0.744765542287024],[125,55,70,-0.7444490240768356],[125,55,71,-0.744134959897061],[125,55,72,-0.7438233550661282],[125,55,73,-0.7435142148057894],[125,55,74,-0.7432075442406634],[125,55,75,-0.742903348397807],[125,55,76,-0.7426016322062755],[125,55,77,-0.7423024004966823],[125,55,78,-0.7420056580007646],[125,55,79,-0.7417114093509424],[125,56,64,-0.7465241664701926],[125,56,65,-0.7461951056572118],[125,56,66,-0.7458684704832383],[125,56,67,-0.7455442667482561],[125,56,68,-0.7452225001577855],[125,56,69,-0.7449031763224512],[125,56,70,-0.7445863007575351],[125,56,71,-0.7442718788825329],[125,56,72,-0.7439599160207105],[125,56,73,-0.7436504173986738],[125,56,74,-0.7433433881459104],[125,56,75,-0.7430388332943618],[125,56,76,-0.7427367577779832],[125,56,77,-0.7424371664323037],[125,56,78,-0.7421400639939916],[125,56,79,-0.741845455100413],[125,57,64,-0.7466637514158765],[125,57,65,-0.7463343359590799],[125,57,66,-0.746007345773483],[125,57,67,-0.7456827866638136],[125,57,68,-0.7453606643403523],[125,57,69,-0.7450409844184993],[125,57,70,-0.7447237524183281],[125,57,71,-0.7444089737641422],[125,57,72,-0.7440966537840301],[125,57,73,-0.743786797709437],[125,57,74,-0.7434794106747049],[125,57,75,-0.7431744977166459],[125,57,76,-0.7428720637741009],[125,57,77,-0.7425721136875005],[125,57,78,-0.7422746521984301],[125,57,79,-0.741979683949189],[125,58,64,-0.7468035056795379],[125,58,65,-0.7464737365184633],[125,58,66,-0.7461463922574159],[125,58,67,-0.7458214787058524],[125,58,68,-0.7454990015787972],[125,58,69,-0.7451789664964119],[125,58,70,-0.7448613789835461],[125,58,71,-0.7445462444692956],[125,58,72,-0.7442335682865576],[125,58,73,-0.7439233556716014],[125,58,74,-0.743615611763609],[125,58,75,-0.7433103416042485],[125,58,76,-0.7430075501372326],[125,58,77,-0.7427072422078796],[125,58,78,-0.7424094225626783],[125,58,79,-0.7421140958488464],[125,59,64,-0.7469434291645868],[125,59,65,-0.7466133072419125],[125,59,66,-0.7462856098447169],[125,59,67,-0.7459603427871694],[125,59,68,-0.7456375117890238],[125,59,69,-0.7453171224751866],[125,59,70,-0.7449991803752687],[125,59,71,-0.7446836909231433],[125,59,72,-0.7443706594565015],[125,59,73,-0.7440600912164216],[125,59,74,-0.7437519913469117],[125,59,75,-0.743446364894481],[125,59,76,-0.7431432168077001],[125,59,77,-0.7428425519367606],[125,59,78,-0.7425443750330406],[125,59,79,-0.7422486907486634],[125,60,64,-0.7470835217721903],[125,60,65,-0.74675304803373],[125,60,66,-0.746424998442812],[125,60,67,-0.746099378818303],[125,60,68,-0.7457761948846702],[125,60,69,-0.7454554522715499],[125,60,70,-0.7451371565132993],[125,60,71,-0.7448213130485538],[125,60,72,-0.7445079272197831],[125,60,73,-0.7441970042728604],[125,60,74,-0.7438885493566046],[125,60,75,-0.7435825675223523],[125,60,76,-0.743279063723517],[125,60,77,-0.7429780428151499],[125,60,78,-0.7426795095535044],[125,60,79,-0.7423834685955953],[125,61,64,-0.747223783401297],[125,61,65,-0.7468929587959937],[125,61,66,-0.746564557956897],[125,61,67,-0.746238586707555],[125,61,68,-0.7459150507771332],[125,61,69,-0.7455939557999817],[125,61,70,-0.745275307315189],[125,61,71,-0.7449591107661377],[125,61,72,-0.7446453715000608],[125,61,73,-0.7443340947676118],[125,61,74,-0.7440252857224059],[125,61,75,-0.7437189494205921],[125,61,76,-0.7434150908204129],[125,61,77,-0.7431137147817649],[125,61,78,-0.7428148260657627],[125,61,79,-0.7425184293342988],[125,62,64,-0.7473642139486119],[125,62,65,-0.747033039428532],[125,62,66,-0.7467042882899124],[125,62,67,-0.7463779663609669],[125,62,68,-0.7460540793755428],[125,62,69,-0.7457326329726899],[125,62,70,-0.7454136326962115],[125,62,71,-0.7450970839942226],[125,62,72,-0.7447829922187047],[125,62,73,-0.7444713626250765],[125,62,74,-0.7441622003717345],[125,62,75,-0.7438555105196262],[125,62,76,-0.7435512980318084],[125,62,77,-0.7432495677730087],[125,62,78,-0.7429503245091889],[125,62,79,-0.7426535729071055],[125,63,64,-0.747504813308653],[125,63,65,-0.747173289828981],[125,63,66,-0.7468441893426008],[125,63,67,-0.7465175176823757],[125,63,68,-0.7461932805868201],[125,63,69,-0.7458714836996669],[125,63,70,-0.7455521325694197],[125,63,71,-0.74523523264891],[125,63,72,-0.7449207892948531],[125,63,73,-0.7446088077674177],[125,63,74,-0.7442992932297673],[125,63,75,-0.7439922507476328],[125,63,76,-0.7436876852888712],[125,63,77,-0.7433856017230264],[125,63,78,-0.7430860048208939],[125,63,79,-0.7427888992540798],[125,64,64,-0.7476455813737349],[125,64,65,-0.7473137098927669],[125,64,66,-0.7469842610134887],[125,64,67,-0.7466572405733977],[125,64,68,-0.746332654315659],[125,64,69,-0.7460105078886731],[125,64,70,-0.7456908068456284],[125,64,71,-0.745373556644058],[125,64,72,-0.7450587626453957],[125,64,73,-0.744746430114545],[125,64,74,-0.7444365642194218],[125,64,75,-0.7441291700305257],[125,64,76,-0.7438242525204991],[125,64,77,-0.7435218165636885],[125,64,78,-0.7432218669357086],[125,64,79,-0.7429244083130009],[125,65,64,-0.7477865180339514],[125,65,65,-0.7474542995130898],[125,65,66,-0.7471245031988714],[125,65,67,-0.7467971349334114],[125,65,68,-0.7464722004645099],[125,65,69,-0.7461497054452197],[125,65,70,-0.7458296554333983],[125,65,71,-0.745512055891265],[125,65,72,-0.7451969121849565],[125,65,73,-0.744884229584097],[125,65,74,-0.7445740132613391],[125,65,75,-0.7442662682919367],[125,65,76,-0.7439609996533034],[125,65,77,-0.7436582122245734],[125,65,78,-0.7433579107861664],[125,65,79,-0.7430601000193456],[125,66,64,-0.7479276231772326],[125,66,65,-0.7475950585809803],[125,66,66,-0.7472649157928682],[125,66,67,-0.746937200659614],[125,66,68,-0.7466119189336369],[125,66,69,-0.7462890762726258],[125,66,70,-0.7459686782390917],[125,66,71,-0.7456507302999251],[125,66,72,-0.7453352378259508],[125,66,73,-0.7450222060914975],[125,66,74,-0.7447116402739405],[125,66,75,-0.744403545453273],[125,66,76,-0.744097926611665],[125,66,77,-0.7437947886330242],[125,66,78,-0.7434941363025607],[125,66,79,-0.7431959743063457],[125,67,64,-0.7480688966893203],[125,67,65,-0.747735986985274],[125,67,66,-0.7474054986873985],[125,67,67,-0.7470774376469967],[125,67,68,-0.7467518096210913],[125,67,69,-0.7464286202719921],[125,67,70,-0.7461078751668481],[125,67,71,-0.7457895797772047],[125,67,72,-0.7454737394785593],[125,67,73,-0.7451603595499313],[125,67,74,-0.7448494451734027],[125,67,75,-0.7445410014336914],[125,67,76,-0.744235033317709],[125,67,77,-0.7439315457141227],[125,67,78,-0.7436305434129186],[125,67,79,-0.7433320311049613],[125,68,64,-0.7482103384537913],[125,68,65,-0.7478770846126367],[125,68,66,-0.7475462517722048],[125,68,67,-0.7472178457883685],[125,68,68,-0.7468918724227376],[125,68,69,-0.7465683373422267],[125,68,70,-0.7462472461186072],[125,68,71,-0.7459286042280644],[125,68,72,-0.745612417050753],[125,68,73,-0.7452986898703671],[125,68,74,-0.744987427873681],[125,68,75,-0.7446786361501222],[125,68,76,-0.7443723196913296],[125,68,77,-0.7440684833907146],[125,68,78,-0.7437671320430255],[125,68,79,-0.743468270343906],[125,69,64,-0.7483519483520327],[125,69,65,-0.7480183513475378],[125,69,66,-0.7476871749348284],[125,69,67,-0.7473584249743308],[125,69,68,-0.7470321072322264],[125,69,69,-0.7467082273800183],[125,69,70,-0.7463867909940848],[125,69,71,-0.7460678035552354],[125,69,72,-0.7457512704482667],[125,69,73,-0.7454371969615323],[125,69,74,-0.745125588286484],[125,69,75,-0.7448164495172436],[125,69,76,-0.7445097856501627],[125,69,77,-0.7442056015833826],[125,69,78,-0.7439039021163987],[125,69,79,-0.74360469194962],[125,70,64,-0.7484937262632987],[125,70,65,-0.7481597870723082],[125,70,66,-0.7478282680606656],[125,70,67,-0.7474991750933349],[125,70,68,-0.7471725139410521],[125,70,69,-0.7468482902798936],[125,70,70,-0.7465265096908287],[125,70,71,-0.7462071776592755],[125,70,72,-0.7458902995746568],[125,70,73,-0.7455758807299707],[125,70,74,-0.745263926321331],[125,70,75,-0.7449544414475392],[125,70,76,-0.7446474311096446],[125,70,77,-0.7443429002105036],[125,70,78,-0.7440408535543448],[125,70,79,-0.743741295846328],[125,71,64,-0.7486356720646937],[125,71,65,-0.748301391667123],[125,71,66,-0.7479695310329515],[125,71,67,-0.747640096031664],[125,71,68,-0.7473130924385359],[125,71,69,-0.7469885259342007],[125,71,70,-0.7466664021042022],[125,71,71,-0.7463467264385519],[125,71,72,-0.7460295043312836],[125,71,73,-0.7457147410800241],[125,71,74,-0.7454024418855341],[125,71,75,-0.7450926118512802],[125,71,76,-0.7447852559829938],[125,71,77,-0.7444803791882324],[125,71,78,-0.7441779862759428],[125,71,79,-0.7438780819560211],[125,72,64,-0.7487777856311554],[125,72,65,-0.7484431650099842],[125,72,66,-0.7481109637327417],[125,72,67,-0.7477811876734172],[125,72,68,-0.7474538426118087],[125,72,69,-0.7471289342330907],[125,72,70,-0.7468064681273665],[125,72,71,-0.7464864497892245],[125,72,72,-0.7461688846172941],[125,72,73,-0.7458537779138157],[125,72,74,-0.7455411348841814],[125,72,75,-0.7452309606365075],[125,72,76,-0.7449232601811936],[125,72,77,-0.7446180384304826],[125,72,78,-0.7443153001980254],[125,72,79,-0.7440150501984399],[125,73,64,-0.7489200668355112],[125,73,65,-0.7485851069767785],[125,73,66,-0.7482525660389707],[125,73,67,-0.7479224499005654],[125,73,68,-0.7475947643458675],[125,73,69,-0.7472695150645761],[125,73,70,-0.7469467076513376],[125,73,71,-0.7466263476053023],[125,73,72,-0.7463084403296792],[125,73,73,-0.7459929911313068],[125,73,74,-0.7456800052201935],[125,73,75,-0.7453694877090903],[125,73,76,-0.7450614436130493],[125,73,77,-0.7447558778489848],[125,73,78,-0.7444527952352369],[125,73,79,-0.744152200491131],[125,74,64,-0.7490625155484537],[125,74,65,-0.7487272174412508],[125,74,66,-0.7483943378284253],[125,74,67,-0.7480638825929269],[125,74,68,-0.7477358575235504],[125,74,69,-0.7474102683145042],[125,74,70,-0.7470871205649616],[125,74,71,-0.7467664197786186],[125,74,72,-0.7464481713632483],[125,74,73,-0.7461323806302717],[125,74,74,-0.7458190527942983],[125,74,75,-0.7455081929726987],[125,74,76,-0.7451998061851626],[125,74,77,-0.7448938973532605],[125,74,78,-0.7445904713000072],[125,74,79,-0.7442895327494212],[125,75,64,-0.7492051316385646],[125,75,65,-0.7488694962750292],[125,75,66,-0.7485362789757697],[125,75,67,-0.7482054856281908],[125,75,68,-0.7478771220255613],[125,75,69,-0.7475511938665821],[125,75,70,-0.7472277067549377],[125,75,71,-0.7469066661988538],[125,75,72,-0.7465880776106523],[125,75,73,-0.7462719463063209],[125,75,74,-0.7459582775050548],[125,75,75,-0.7456470763288288],[125,75,76,-0.7453383478019553],[125,75,77,-0.7450320968506461],[125,75,78,-0.7447283283025761],[125,75,79,-0.7444270468864418],[125,76,64,-0.7493479149722886],[125,76,65,-0.7490119433475995],[125,76,66,-0.7486783893535193],[125,76,67,-0.7483472588818916],[125,76,68,-0.7480185577304429],[125,76,69,-0.7476922916023501],[125,76,70,-0.7473684661057931],[125,76,71,-0.7470470867535113],[125,76,72,-0.7467281589623592],[125,76,73,-0.746411688052876],[125,76,74,-0.7460976792488274],[125,76,75,-0.7457861376767763],[125,76,76,-0.7454770683656435],[125,76,77,-0.745170476246267],[125,76,78,-0.7448663661509665],[125,76,79,-0.7445647428131026],[125,77,64,-0.7494908654139916],[125,77,65,-0.7491545585263615],[125,77,66,-0.748820668832098],[125,77,67,-0.7484892022274666],[125,77,68,-0.748160164514635],[125,77,69,-0.7478335614012399],[125,77,70,-0.7475093984999401],[125,77,71,-0.7471876813279733],[125,77,72,-0.7468684153067107],[125,77,73,-0.746551605761227],[125,77,74,-0.7462372579198425],[125,77,75,-0.7459253769136942],[125,77,76,-0.745615967776295],[125,77,77,-0.7453090354430943],[125,77,78,-0.7450045847510423],[125,77,79,-0.7447026204381487],[125,78,64,-0.7496339828259427],[125,78,65,-0.7492973416766131],[125,78,66,-0.7489631172798215],[125,78,67,-0.7486313155362385],[125,78,68,-0.7483019422524567],[125,78,69,-0.7479750031405565],[125,78,70,-0.7476505038176593],[125,78,71,-0.7473284498054846],[125,78,72,-0.7470088465299044],[125,78,73,-0.746691699320514],[125,78,74,-0.7463770134101724],[125,78,75,-0.7460647939345749],[125,78,76,-0.7457550459318117],[125,78,77,-0.7454477743419287],[125,78,78,-0.7451429840064909],[125,78,79,-0.7448406796681432],[125,79,64,-0.7497772670682976],[125,79,65,-0.7494402926615319],[125,79,66,-0.7491057345628789],[125,79,67,-0.7487735986773981],[125,79,68,-0.7484438908160895],[125,79,69,-0.7481166166954611],[125,79,70,-0.7477917819370808],[125,79,71,-0.7474693920671338],[125,79,72,-0.7471494525159772],[125,79,73,-0.7468319686177105],[125,79,74,-0.7465169456097163],[125,79,75,-0.7462043886322325],[125,79,76,-0.7458943027279117],[125,79,77,-0.7455866928413803],[125,79,78,-0.7452815638188051],[125,79,79,-0.7449789204074493],[125,80,64,-0.749920717999155],[125,80,65,-0.749583411342233],[125,80,66,-0.7492485205453914],[125,80,67,-0.7489160515180612],[125,80,68,-0.748586010075634],[125,80,69,-0.7482584019390285],[125,80,70,-0.7479332327342428],[125,80,71,-0.7476105079919118],[125,80,72,-0.7472902331468616],[125,80,73,-0.7469724135376802],[125,80,74,-0.746657054406258],[125,80,75,-0.7463441608973604],[125,80,76,-0.7460337380581864],[125,80,77,-0.7457257908379291],[125,80,78,-0.7454203240873399],[125,80,79,-0.7451173425582878],[125,81,64,-0.7500643354745322],[125,81,65,-0.7497266975777437],[125,81,66,-0.7493914750893853],[125,81,67,-0.7490586739232434],[125,81,68,-0.7487282998990844],[125,81,69,-0.7484003587422209],[125,81,70,-0.7480748560830651],[125,81,71,-0.7477517974566853],[125,81,72,-0.7474311883023604],[125,81,73,-0.7471130339631513],[125,81,74,-0.7467973396854406],[125,81,75,-0.7464841106185054],[125,81,76,-0.7461733518140758],[125,81,77,-0.745865068225896],[125,81,78,-0.745559264709288],[125,81,79,-0.7452559460207109],[125,82,64,-0.7502081193483883],[125,82,65,-0.7498701512250265],[125,82,66,-0.7495345980548169],[125,82,67,-0.7492014657558844],[125,82,68,-0.7488707601523528],[125,82,69,-0.7485424869739126],[125,82,70,-0.7482166518553737],[125,82,71,-0.7478932603362209],[125,82,72,-0.7475723178601711],[125,82,73,-0.747253829774741],[125,82,74,-0.7469378013307899],[125,82,75,-0.7466242376820912],[125,82,76,-0.7463131438848909],[125,82,77,-0.7460045248974688],[125,82,78,-0.7456983855797024],[125,82,79,-0.7453947306926256],[125,83,64,-0.7503520694725985],[125,83,65,-0.7500137721389544],[125,83,66,-0.7496778892995467],[125,83,67,-0.7493444268768212],[125,83,68,-0.7490133906992429],[125,83,69,-0.7486847865008637],[125,83,70,-0.7483586199208739],[125,83,71,-0.7480348965031599],[125,83,72,-0.7477136216958588],[125,83,73,-0.7473948008509282],[125,83,74,-0.7470784392236883],[125,83,75,-0.7467645419723927],[125,83,76,-0.7464531141577881],[125,83,77,-0.7461441607426749],[125,83,78,-0.7458376865914704],[125,83,79,-0.745533696469769],[125,84,64,-0.7504961856970122],[125,84,65,-0.7501575601723683],[125,84,66,-0.7498213486793963],[125,84,67,-0.7494875571448465],[125,84,68,-0.7491561914015082],[125,84,69,-0.7488272571877774],[125,84,70,-0.7485007601472092],[125,84,71,-0.7481767058280744],[125,84,72,-0.7478550996829146],[125,84,73,-0.7475359470681125],[125,84,74,-0.7472192532434327],[125,84,75,-0.7469050233715939],[125,84,76,-0.7465932625178278],[125,84,77,-0.7462839756494394],[125,84,78,-0.7459771676353716],[125,84,79,-0.745672843245764],[125,85,64,-0.7506404678694352],[125,85,65,-0.750301515176059],[125,85,66,-0.749964976048132],[125,85,67,-0.7496308564166911],[125,85,68,-0.7492991621188336],[125,85,69,-0.7489698988972832],[125,85,70,-0.7486430723999427],[125,85,71,-0.7483186881794509],[125,85,72,-0.747996751692738],[125,85,73,-0.7476772683005954],[125,85,74,-0.7473602432672165],[125,85,75,-0.7470456817597692],[125,85,76,-0.7467335888479544],[125,85,77,-0.746423969503567],[125,85,78,-0.7461168286000598],[125,85,79,-0.7458121709121025],[125,86,64,-0.7507849158356121],[125,86,65,-0.75044563699875],[125,86,66,-0.7501087712574454],[125,86,67,-0.7497743245470058],[125,86,68,-0.7494423027088185],[125,86,69,-0.7491127114899182],[125,86,70,-0.7487855565425392],[125,86,71,-0.7484608434236719],[125,86,72,-0.7481385775946185],[125,86,73,-0.747818764420563],[125,86,74,-0.7475014091701118],[125,86,75,-0.7471865170148659],[125,86,76,-0.7468740930289806],[125,86,77,-0.7465641421887244],[125,86,78,-0.7462566693720449],[125,86,79,-0.7459516793581269],[125,87,64,-0.7509295294392841],[125,87,65,-0.7505899254871549],[125,87,66,-0.7502527341570131],[125,87,67,-0.7499179613884192],[125,87,68,-0.7495856130270337],[125,87,69,-0.7492556948241856],[125,87,70,-0.7489282124364236],[125,87,71,-0.7486031714250736],[125,87,72,-0.7482805772557937],[125,87,73,-0.7479604352981435],[125,87,74,-0.7476427508251269],[125,87,75,-0.7473275290127626],[125,87,76,-0.7470147749396434],[125,87,77,-0.7467044935864973],[125,87,78,-0.7463966898357506],[125,87,79,-0.7460913684710884],[125,88,64,-0.7510743085221714],[125,88,65,-0.7507343804859603],[125,88,66,-0.750396864594478],[125,88,67,-0.7500617667915203],[125,88,68,-0.7497290929270045],[125,88,69,-0.7493988487565366],[125,88,70,-0.7490710399409631],[125,88,71,-0.7487456720459288],[125,88,72,-0.7484227505414307],[125,88,73,-0.7481022808013894],[125,88,74,-0.747784268103189],[125,88,75,-0.7474687176272499],[125,88,76,-0.7471556344565876],[125,88,77,-0.7468450235763728],[125,88,78,-0.7465368898734965],[125,88,79,-0.746231238136128],[125,89,64,-0.7512192529239551],[125,89,65,-0.7508790018378075],[125,89,66,-0.750541162415431],[125,89,67,-0.7502057406048405],[125,89,68,-0.7498727422601922],[125,89,69,-0.7495421731413522],[125,89,70,-0.7492140389134486],[125,89,71,-0.7488883451464277],[125,89,72,-0.74856509731461],[125,89,73,-0.7482443007962595],[125,89,74,-0.7479259608731252],[125,89,75,-0.7476100827300136],[125,89,76,-0.7472966714543463],[125,89,77,-0.7469857320357223],[125,89,78,-0.7466772693654802],[125,89,79,-0.7463712882362595],[125,90,64,-0.7513643624823357],[125,90,65,-0.7510237893833505],[125,90,66,-0.7506856274634706],[125,90,67,-0.7503498826749115],[125,90,68,-0.7500165608760523],[125,90,69,-0.749685667831002],[125,90,70,-0.749357209209153],[125,90,71,-0.7490311905847371],[125,90,72,-0.7487076174363811],[125,90,73,-0.7483864951466768],[125,90,74,-0.7480678290017216],[125,90,75,-0.7477516241906919],[125,90,76,-0.7474378858054],[125,90,77,-0.7471266188398569],[125,90,78,-0.7468178281898346],[125,90,79,-0.7465115186524264],[125,91,64,-0.7515096370330069],[125,91,65,-0.7511687429612302],[125,91,66,-0.7508302595801745],[125,91,67,-0.7504941928462392],[125,91,68,-0.7501605486220082],[125,91,69,-0.749829332675817],[125,91,70,-0.7495005506813051],[125,91,71,-0.7491742082169731],[125,91,72,-0.7488503107657378],[125,91,73,-0.748528863714502],[125,91,74,-0.7482098723536958],[125,91,75,-0.747893341876849],[125,91,76,-0.7475792773801493],[125,91,77,-0.7472676838620036],[125,91,78,-0.7469585662226016],[125,91,79,-0.7466519292634757],[125,92,64,-0.7516550764096791],[125,92,65,-0.751313862408098],[125,92,66,-0.7509750586051257],[125,92,67,-0.7506386709613277],[125,92,68,-0.7503047053434757],[125,92,69,-0.7499731675241142],[125,92,70,-0.7496440631811135],[125,92,71,-0.749317397897226],[125,92,72,-0.7489931771596416],[125,92,73,-0.748671406359558],[125,92,74,-0.7483520907917217],[125,92,75,-0.7480352356539999],[125,92,76,-0.7477208460469394],[125,92,77,-0.7474089269733277],[125,92,78,-0.7470994833377567],[125,92,79,-0.7467925199461819],[125,93,64,-0.7518006804440542],[125,93,65,-0.7514591475585906],[125,93,66,-0.7511200243758853],[125,93,67,-0.7507833168606532],[125,93,68,-0.7504490308838361],[125,93,69,-0.7501171722221707],[125,93,70,-0.7497877465577403],[125,93,71,-0.7494607594775329],[125,93,72,-0.7491362164729952],[125,93,73,-0.7488141229396029],[125,93,74,-0.7484944841764025],[125,93,75,-0.7481773053855827],[125,93,76,-0.7478625916720334],[125,93,77,-0.7475503480429068],[125,93,78,-0.7472405794071812],[125,93,79,-0.7469332905752205],[125,94,64,-0.7519464489658829],[125,94,65,-0.7516045982453865],[125,94,66,-0.7512651567280508],[125,94,67,-0.7509281303827218],[125,94,68,-0.7505935250844944],[125,94,69,-0.75026134661428],[125,94,70,-0.7499316006583591],[125,94,71,-0.7496042928079371],[125,94,72,-0.7492794285587009],[125,94,73,-0.7489570133103883],[125,94,74,-0.748637052366329],[125,94,75,-0.7483195509330172],[125,94,76,-0.74800451411967],[125,94,77,-0.7476919469377884],[125,94,78,-0.7473818543007216],[125,94,79,-0.7470742410232258],[125,95,64,-0.7520923818029474],[125,95,65,-0.7517502142991896],[125,95,66,-0.7514104554952379],[125,95,67,-0.7510731113640516],[125,95,68,-0.7507381877848617],[125,95,69,-0.7504056905427368],[125,95,70,-0.7500756253281367],[125,95,71,-0.7497479977364685],[125,95,72,-0.7494228132676424],[125,95,73,-0.7491000773256411],[125,95,74,-0.7487797952180616],[125,95,75,-0.7484619721556871],[125,95,76,-0.748146613252046],[125,95,77,-0.7478337235229722],[125,95,78,-0.74752330788617],[125,95,79,-0.7472153711607727],[125,96,64,-0.7522384787810427],[125,96,65,-0.7518959955487106],[125,96,66,-0.7515559205090627],[125,96,67,-0.7512182596391551],[125,96,68,-0.7508830188223364],[125,96,69,-0.7505502038478159],[125,96,70,-0.7502198204102155],[125,96,71,-0.7498918741091267],[125,96,72,-0.7495663704486661],[125,96,73,-0.7492433148370452],[125,96,74,-0.7489227125861115],[125,96,75,-0.7486045689109211],[125,96,76,-0.7482888889292973],[125,96,77,-0.7479756776613913],[125,96,78,-0.7476649400292467],[125,96,79,-0.7473566808563582],[125,97,64,-0.7523847397240355],[125,97,65,-0.7520419418207245],[125,97,66,-0.7517015515992002],[125,97,67,-0.7513635750405966],[125,97,68,-0.7510280180323634],[125,97,69,-0.7506948863678327],[125,97,70,-0.7503641857457714],[125,97,71,-0.7500359217699385],[125,97,72,-0.7497100999486401],[125,97,73,-0.7493867256942999],[125,97,74,-0.7490658043229994],[125,97,75,-0.7487473410540512],[125,97,76,-0.7484313410095575],[125,97,77,-0.7481178092139708],[125,97,78,-0.7478067505936578],[125,97,79,-0.7474981699764595],[125,98,64,-0.7525311644538374],[125,98,65,-0.7521880529400456],[125,98,66,-0.751847348593357],[125,98,67,-0.7515090573989663],[125,98,68,-0.7511731852484066],[125,98,69,-0.7508397379391151],[125,98,70,-0.7505087211739869],[125,98,71,-0.7501801405609313],[125,98,72,-0.7498540016124272],[125,98,73,-0.7495303097450932],[125,98,74,-0.7492090702792287],[125,98,75,-0.7488902884383863],[125,98,76,-0.7485739693489311],[125,98,77,-0.7482601180396002],[125,98,78,-0.7479487394410688],[125,98,79,-0.7476398383855074],[125,99,64,-0.7526777527904295],[125,99,65,-0.7523343287295505],[125,99,66,-0.7519933113172963],[125,99,67,-0.7516547065429046],[125,99,68,-0.7513185203019735],[125,99,69,-0.7509847583960289],[125,99,70,-0.7506534265320761],[125,99,71,-0.7503245303221578],[125,99,72,-0.7499980752829086],[125,99,73,-0.7496740668351256],[125,99,74,-0.7493525103033093],[125,99,75,-0.7490334109152361],[125,99,76,-0.7487167738015171],[125,99,77,-0.748402603995159],[125,99,78,-0.7480909064311283],[125,99,79,-0.7477816859459104],[125,100,64,-0.7528245045518351],[125,100,65,-0.7524807690101523],[125,100,66,-0.7521394395948109],[125,100,67,-0.7518005222990745],[125,100,68,-0.7514640230225889],[125,100,69,-0.75112994757095],[125,100,70,-0.7507983016552571],[125,100,71,-0.7504690908916686],[125,100,72,-0.750142320800958],[125,100,73,-0.7498179968080838],[125,100,74,-0.7494961242417313],[125,100,75,-0.7491767083338838],[125,100,76,-0.7488597542193829],[125,100,77,-0.748545266935488],[125,100,78,-0.7482332514214413],[125,100,79,-0.7479237125180274],[125,101,64,-0.7529714195541795],[125,101,65,-0.7526273736008583],[125,101,66,-0.7522857332477821],[125,101,67,-0.7519465044922214],[125,101,68,-0.7516096932378523],[125,101,69,-0.7512753052943238],[125,101,70,-0.7509433463768109],[125,101,71,-0.7506138221055708],[125,101,72,-0.7502867380054989],[125,101,73,-0.7499620995056987],[125,101,74,-0.7496399119390227],[125,101,75,-0.7493201805416455],[125,101,76,-0.749002910452622],[125,101,77,-0.7486881067134487],[125,101,78,-0.7483757742676276],[125,101,79,-0.748065917960226],[125,102,64,-0.7531184976116698],[125,102,65,-0.7527741423187526],[125,102,66,-0.7524321920961606],[125,102,67,-0.752092652945154],[125,102,68,-0.7517555307734209],[125,102,69,-0.7514208313946461],[125,102,70,-0.7510885605280627],[125,102,71,-0.75075872379801],[125,102,72,-0.7504313267334877],[125,102,73,-0.750106374767727],[125,102,74,-0.7497838732377319],[125,102,75,-0.7494638273838508],[125,102,76,-0.749146242349336],[125,102,77,-0.7488311231799046],[125,102,78,-0.7485184748233027],[125,102,79,-0.7482083021288646],[125,103,64,-0.7532657385365792],[125,103,65,-0.7529210749789773],[125,103,66,-0.7525788159579493],[125,103,67,-0.752238967478726],[125,103,68,-0.7519015354529905],[125,103,69,-0.7515665256984452],[125,103,70,-0.7512339439383644],[125,103,71,-0.7509037958011513],[125,103,72,-0.7505760868198935],[125,103,73,-0.7502508224319331],[125,103,74,-0.749928007978408],[125,103,75,-0.7496076487038245],[125,103,76,-0.7492897497556157],[125,103,77,-0.748974316183703],[125,103,78,-0.7486613529400601],[125,103,79,-0.7483508648782727],[125,104,64,-0.753413142139303],[125,104,65,-0.7530681713947914],[125,104,66,-0.7527256046492605],[125,104,67,-0.7523854479118949],[125,104,68,-0.752047707098354],[125,104,69,-0.7517123880303402],[125,104,70,-0.7513794964351517],[125,104,71,-0.7510490379452384],[125,104,72,-0.750721018097758],[125,104,73,-0.750395442334147],[125,104,74,-0.7500723159996604],[125,104,75,-0.7497516443429453],[125,104,76,-0.7494334325155996],[125,104,77,-0.7491176855717323],[125,104,78,-0.7488044084675292],[125,104,79,-0.7484936060608107],[125,105,64,-0.7535607082283337],[125,105,65,-0.7532154313775434],[125,105,66,-0.7528725579842905],[125,105,67,-0.7525320940616949],[125,105,68,-0.7521940455293746],[125,105,69,-0.7518584182130145],[125,105,70,-0.7515252178439183],[125,105,71,-0.7511944500585659],[125,105,72,-0.7508661203981682],[125,105,73,-0.750540234308238],[125,105,74,-0.7502167971381313],[125,105,75,-0.749895814140619],[125,105,76,-0.749577290471447],[125,105,77,-0.7492612311888964],[125,105,78,-0.7489476412533479],[125,105,79,-0.7486365255268416],[125,106,64,-0.7537084366102844],[125,106,65,-0.7533628547366964],[125,106,66,-0.7530196757753432],[125,106,67,-0.7526789057432616],[125,106,68,-0.7523405505640104],[125,106,69,-0.7520046160672393],[125,106,70,-0.7516711079882401],[125,106,71,-0.7513400319675048],[125,106,72,-0.75101139355028],[125,106,73,-0.7506851981861385],[125,106,74,-0.7503614512285197],[125,106,75,-0.7500401579343019],[125,106,76,-0.7497213234633625],[125,106,77,-0.7494049528781378],[125,106,78,-0.7490910511431876],[125,106,79,-0.7487796231247554],[125,107,64,-0.7538563270898624],[125,107,65,-0.7535104412798008],[125,107,66,-0.753166957832803],[125,107,67,-0.7528258827698044],[125,107,68,-0.7524872220182872],[125,107,69,-0.7521509814118474],[125,107,70,-0.7518171666897475],[125,107,71,-0.7514857834964738],[125,107,72,-0.7511568373812919],[125,107,73,-0.7508303337978168],[125,107,74,-0.7505062781035544],[125,107,75,-0.7501846755594743],[125,107,76,-0.7498655313295679],[125,107,77,-0.7495488504804106],[125,107,78,-0.7492346379807253],[125,107,79,-0.7489228987009425],[125,108,64,-0.7540043794699275],[125,108,65,-0.7536581908125528],[125,108,66,-0.7533144039651937],[125,108,67,-0.7529730249526662],[125,108,68,-0.7526340597063572],[125,108,69,-0.7522975140637914],[125,108,70,-0.7519633937681842],[125,108,71,-0.7516317044679992],[125,108,72,-0.751302451716503],[125,108,73,-0.7509756409713358],[125,108,74,-0.7506512775940535],[125,108,75,-0.7503293668496986],[125,108,76,-0.7500099139063615],[125,108,77,-0.7496929238347395],[125,108,78,-0.7493784016077022],[125,108,79,-0.7490663520998513],[125,109,64,-0.7541525935514739],[125,109,65,-0.7538061031387766],[125,109,66,-0.7534620139791603],[125,109,67,-0.7531203321013038],[125,109,68,-0.7527810634404803],[125,109,69,-0.7524442138381254],[125,109,70,-0.7521097890413899],[125,109,71,-0.7517777947026962],[125,109,72,-0.7514482363792953],[125,109,73,-0.751121119532835],[125,109,74,-0.7507964495289039],[125,109,75,-0.7504742316366015],[125,109,76,-0.7501544710280994],[125,109,77,-0.7498371727782007],[125,109,78,-0.7495223418639055],[125,109,79,-0.7492099831639699],[125,110,64,-0.7543009691336118],[125,110,65,-0.7539541780604052],[125,110,66,-0.7536097876794505],[125,110,67,-0.7532678040232701],[125,110,68,-0.752928233031006],[125,110,69,-0.7525910805479865],[125,110,70,-0.7522563523252795],[125,110,71,-0.7519240540192497],[125,110,72,-0.7515941911911137],[125,110,73,-0.7512667693065107],[125,110,74,-0.7509417937350443],[125,110,75,-0.7506192697498544],[125,110,76,-0.7502992025271765],[125,110,77,-0.7499815971459034],[125,110,78,-0.7496664585871489],[125,110,79,-0.7493537917338078],[125,111,64,-0.7544495060136258],[125,111,65,-0.7541024153775399],[125,111,66,-0.7537577248689726],[125,111,67,-0.7534154405242726],[125,111,68,-0.7530755682864316],[125,111,69,-0.752738114004653],[125,111,70,-0.7524030834339039],[125,111,71,-0.7520704822344731],[125,111,72,-0.7517403159715262],[125,111,73,-0.7514125901146758],[125,111,74,-0.7510873100375235],[125,111,75,-0.750764481017232],[125,111,76,-0.7504441082340851],[125,111,77,-0.750126196771048],[125,111,78,-0.7498107516133317],[125,111,79,-0.7494977776479534],[125,112,64,-0.7545982039869481],[125,112,65,-0.7542508148884223],[125,112,66,-0.7539058253487698],[125,112,67,-0.7535632414081462],[125,112,68,-0.7532230690133755],[125,112,69,-0.7528853140175177],[125,112,70,-0.7525499821794216],[125,112,71,-0.7522170791632821],[125,112,72,-0.7518866105381958],[125,112,73,-0.7515585817777317],[125,112,74,-0.7512329982594723],[125,112,75,-0.7509098652645864],[125,112,76,-0.7505891879773883],[125,112,77,-0.7502709714848992],[125,112,78,-0.7499552207764113],[125,112,79,-0.749641940743048],[125,113,64,-0.7547470628471831],[125,113,65,-0.7543993763894598],[125,113,66,-0.7540540889180434],[125,113,67,-0.7537112064768782],[125,113,68,-0.7533707350166017],[125,113,69,-0.7530326803941128],[125,113,70,-0.7526970483721234],[125,113,71,-0.7523638446187174],[125,113,72,-0.752033074706905],[125,113,73,-0.7517047441141933],[125,113,74,-0.7513788582221288],[125,113,75,-0.7510554223158694],[125,113,76,-0.7507344415837431],[125,113,77,-0.7504159211168103],[125,113,78,-0.7500998659084279],[125,113,79,-0.7497862808538086],[125,114,64,-0.75489608238608],[125,114,65,-0.7545480996751976],[125,114,66,-0.7542025153741261],[125,114,67,-0.7538593355305798],[125,114,68,-0.7535185660989918],[125,114,69,-0.753180212940081],[125,114,70,-0.7528442818204053],[125,114,71,-0.7525107784119189],[125,114,72,-0.752179708291528],[125,114,73,-0.751851076940661],[125,114,74,-0.7515248897448107],[125,114,75,-0.7512011519931066],[125,114,76,-0.750879868877874],[125,114,77,-0.7505610454941953],[125,114,78,-0.7502446868394758],[125,114,79,-0.7499307978130012],[125,115,64,-0.7550452623935917],[125,115,65,-0.7546969845383781],[125,115,66,-0.754351104512541],[125,115,67,-0.7540076283675465],[125,115,68,-0.7536665620616045],[125,115,69,-0.7533279114592363],[125,115,70,-0.7529916823308269],[125,115,71,-0.7526578803521835],[125,115,72,-0.7523265111040904],[125,115,73,-0.7519975800718799],[125,115,74,-0.7516710926449736],[125,115,75,-0.7513470541164553],[125,115,76,-0.7510254696826308],[125,115,77,-0.7507063444425882],[125,115,78,-0.7503896833977635],[125,115,79,-0.7500754914514994],[125,116,64,-0.7551946026578562],[125,116,65,-0.7548460307699216],[125,116,66,-0.7544998561269827],[125,116,67,-0.7541560847842385],[125,116,68,-0.7538147227036571],[125,116,69,-0.7534757757535439],[125,116,70,-0.7531392497080931],[125,116,71,-0.752805150246947],[125,116,72,-0.7524734829547503],[125,116,73,-0.752144253320721],[125,116,74,-0.7518174667381927],[125,116,75,-0.7514931285041866],[125,116,76,-0.7511712438189712],[125,116,77,-0.7508518177856235],[125,116,78,-0.750534855409594],[125,116,79,-0.7502203615982659],[125,117,64,-0.7553441029651782],[125,117,65,-0.7549952381589089],[125,117,66,-0.7546487700092989],[125,117,67,-0.7543047045752619],[125,117,68,-0.7539630478225059],[125,117,69,-0.7536238056231017],[125,117,70,-0.753286983755035],[125,117,71,-0.7529525879017648],[125,117,72,-0.7526206236517783],[125,117,73,-0.7522910964981622],[125,117,74,-0.751964011838144],[125,117,75,-0.7516393749726651],[125,117,76,-0.75131719110594],[125,117,77,-0.7509974653450175],[125,117,78,-0.7506802026993459],[125,117,79,-0.7503654080803321],[125,118,64,-0.7554937631000881],[125,118,65,-0.7551446064926386],[125,118,66,-0.7547978459495489],[125,118,67,-0.7544534875334282],[125,118,68,-0.7541115372137059],[125,118,69,-0.7537720008662],[125,118,70,-0.753434884272669],[125,118,71,-0.753100193120371],[125,118,72,-0.7527679330016179],[125,118,73,-0.7524381094133471],[125,118,74,-0.7521107277566629],[125,118,75,-0.7517857933364094],[125,118,76,-0.7514633113607296],[125,118,77,-0.7511432869406278],[125,118,78,-0.7508257250895327],[125,118,79,-0.7505106307228591],[125,119,64,-0.7556435828453226],[125,119,65,-0.7552941355566098],[125,119,66,-0.7549470837359855],[125,119,67,-0.7546024334497354],[125,119,68,-0.754260190670992],[125,119,69,-0.7539203612793017],[125,119,70,-0.7535829510601783],[125,119,71,-0.7532479657046599],[125,119,72,-0.752915410808866],[125,119,73,-0.7525852918735667],[125,119,74,-0.7522576143037254],[125,119,75,-0.7519323834080717],[125,119,76,-0.7516096043986604],[125,119,77,-0.7512892823904332],[125,119,78,-0.7509714224007835],[125,119,79,-0.7506560293491165],[125,120,64,-0.755793561981807],[125,120,65,-0.7554438251345028],[125,120,66,-0.7550964831550355],[125,120,67,-0.754751542113349],[125,120,68,-0.7544090079862596],[125,120,69,-0.7540688866570243],[125,120,70,-0.7537311839148929],[125,120,71,-0.7533959054546668],[125,120,72,-0.7530630568762539],[125,120,73,-0.7527326436842396],[125,120,74,-0.7524046712874292],[125,120,75,-0.75207914499842],[125,120,76,-0.7517560700331614],[125,120,77,-0.7514354515105157],[125,120,78,-0.7511172944518238],[125,120,79,-0.7508016037804648],[125,121,64,-0.7559437002887135],[125,121,65,-0.7555936750082382],[125,121,66,-0.7552460439913596],[125,121,67,-0.7549008133116613],[125,121,68,-0.7545579889496244],[125,121,69,-0.7542175767921981],[125,121,70,-0.7538795826323503],[125,121,71,-0.7535440121686268],[125,121,72,-0.7532108710047063],[125,121,73,-0.7528801646489719],[125,121,74,-0.7525518985140526],[125,121,75,-0.7522260779163963],[125,121,76,-0.7519027080758296],[125,121,77,-0.7515817941151186],[125,121,78,-0.7512633410595347],[125,121,79,-0.750947353836414],[125,122,64,-0.7560939975434342],[125,122,65,-0.7557436849579491],[125,122,66,-0.7553957660278242],[125,122,67,-0.7550502468302631],[125,122,68,-0.7547071333493944],[125,122,69,-0.7543664314758395],[125,122,70,-0.7540281470062666],[125,122,71,-0.7536922856429474],[125,122,72,-0.753358852993314],[125,122,73,-0.7530278545695286],[125,122,74,-0.7526992957880269],[125,122,75,-0.7523731819690894],[125,122,76,-0.7520495183364027],[125,122,77,-0.7517283100166197],[125,122,78,-0.7514095620389252],[125,122,79,-0.7510932793345956],[125,123,64,-0.7562444535216055],[125,123,65,-0.7558938547620062],[125,123,66,-0.7555456490455261],[125,123,67,-0.75519984245297],[125,123,68,-0.7548564409720941],[125,123,69,-0.7545154504971749],[125,123,70,-0.7541768768285614],[125,123,71,-0.7538407256722335],[125,123,72,-0.753507002639358],[125,123,73,-0.7531757132458592],[125,123,74,-0.7528468629119606],[125,123,75,-0.7525204569617591],[125,123,76,-0.7521965006227829],[125,123,77,-0.7518749990255548],[125,123,78,-0.751555957203156],[125,123,79,-0.7512393800907868],[125,124,64,-0.7563950679970802],[125,124,65,-0.75604418419699],[125,124,66,-0.7556956928237653],[125,124,67,-0.7553495999617927],[125,124,68,-0.7550059116024379],[125,124,69,-0.7546646336436131],[125,124,70,-0.7543257718893301],[125,124,71,-0.7539893320492587],[125,124,72,-0.7536553197382821],[125,124,73,-0.7533237404760684],[125,124,74,-0.7529945996866122],[125,124,75,-0.7526679026978077],[125,124,76,-0.7523436547410087],[125,124,77,-0.75202186095059],[125,124,78,-0.7517025263635124],[125,124,79,-0.751385655918883],[125,125,64,-0.7565458407419876],[125,125,65,-0.7561946730377501],[125,125,66,-0.7558458971401034],[125,125,67,-0.7554995191369975],[125,125,68,-0.7551555450233882],[125,125,69,-0.7548139807008046],[125,125,70,-0.7544748319769032],[125,125,71,-0.7541381045650248],[125,125,72,-0.7538038040837516],[125,125,73,-0.7534719360564769],[125,125,74,-0.7531425059109483],[125,125,75,-0.7528155189788407],[125,125,76,-0.752490980495315],[125,125,77,-0.7521688955985815],[125,125,78,-0.7518492693294628],[125,125,79,-0.7515321066309565],[125,126,64,-0.7566967715267137],[125,126,65,-0.7563453210573859],[125,126,66,-0.7559962617703456],[125,126,67,-0.7556495997570869],[125,126,68,-0.7553053410161368],[125,126,69,-0.7549634914526229],[125,126,70,-0.7546240568778272],[125,126,71,-0.7542870430087436],[125,126,72,-0.7539524554676345],[125,126,73,-0.7536202997816009],[125,126,74,-0.7532905813821258],[125,126,75,-0.7529633056046461],[125,126,76,-0.7526384776881134],[125,126,77,-0.7523161027745553],[125,126,78,-0.75199618590864],[125,126,79,-0.7516787320372378],[125,127,64,-0.7568478601198827],[125,127,65,-0.7564961280272281],[125,127,66,-0.7561467864885211],[125,127,67,-0.7557998415987807],[125,127,68,-0.755455299360086],[125,127,69,-0.7551131656811445],[125,127,70,-0.7547734463768451],[125,127,71,-0.7544361471678163],[125,127,72,-0.7541012736799823],[125,127,73,-0.753768831444134],[125,127,74,-0.7534388258954712],[125,127,75,-0.7531112623731762],[125,127,76,-0.7527861461199727],[125,127,77,-0.7524634822816889],[125,127,78,-0.7521432759068211],[125,127,79,-0.7518255319460955],[125,128,64,-0.756999106288416],[125,128,65,-0.7566470937168976],[125,128,66,-0.7562974710669423],[125,128,67,-0.7559502444370749],[125,128,68,-0.7556054198329079],[125,128,69,-0.7552630031667092],[125,128,70,-0.7549230002569564],[125,128,71,-0.7545854168278937],[125,128,72,-0.7542502585090893],[125,128,73,-0.7539175308350055],[125,128,74,-0.7535872392445414],[125,128,75,-0.7532593890806062],[125,128,76,-0.7529339855896788],[125,128,77,-0.7526110339213701],[125,128,78,-0.7522905391279877],[125,128,79,-0.7519725061640964],[125,129,64,-0.7571505097975053],[125,129,65,-0.7567982178942784],[125,129,66,-0.756448315276178],[125,129,67,-0.756100808045215],[125,129,68,-0.7557557022105164],[125,129,69,-0.7554130036878919],[125,129,70,-0.7550727182993886],[125,129,71,-0.7547348517728486],[125,129,72,-0.754399409741465],[125,129,73,-0.7540663977433536],[125,129,74,-0.7537358212210947],[125,129,75,-0.7534076855213068],[125,129,76,-0.7530819958942061],[125,129,77,-0.7527587574931691],[125,129,78,-0.752437975374297],[125,129,79,-0.7521196544959767],[125,130,64,-0.7573020704106358],[125,130,65,-0.7569495003255412],[125,130,66,-0.7565993188850763],[125,130,67,-0.7562515321947192],[125,130,68,-0.7559061462670917],[125,130,69,-0.7555631670215268],[125,130,70,-0.7552226002836224],[125,130,71,-0.7548844517847993],[125,130,72,-0.754548727161858],[125,130,73,-0.7542154319565488],[125,130,74,-0.7538845716151155],[125,130,75,-0.753556151487868],[125,130,76,-0.7532301768287424],[125,130,77,-0.7529066527948629],[125,130,78,-0.7525855844461072],[125,130,79,-0.752266976744667],[125,131,64,-0.7574537878895599],[125,131,65,-0.7571009407751166],[125,131,66,-0.7567504816607382],[125,131,67,-0.7564024166553511],[125,131,68,-0.7560567517750527],[125,131,69,-0.75571349294268],[125,131,70,-0.7553726459873629],[125,131,71,-0.7550342166440827],[125,131,72,-0.7546982105532279],[125,131,73,-0.7543646332601662],[125,131,74,-0.7540334902147863],[125,131,75,-0.7537047867710717],[125,131,76,-0.7533785281866603],[125,131,77,-0.7530547196224068],[125,131,78,-0.7527333661419481],[125,131,79,-0.7524144727112636],[125,132,64,-0.7576056619943555],[125,132,65,-0.7572525390057536],[125,132,66,-0.7569018033685766],[125,132,67,-0.7565534611951794],[125,132,68,-0.756207518505116],[125,132,69,-0.7558639812247083],[125,132,70,-0.7555228551865996],[125,132,71,-0.7551841461293125],[125,132,72,-0.7548478596968058],[125,132,73,-0.7545140014380454],[125,132,74,-0.7541825768065473],[125,132,75,-0.7538535911599502],[125,132,76,-0.7535270497595767],[125,132,77,-0.7532029577699942],[125,132,78,-0.7528813202585813],[125,132,79,-0.7525621421950877],[125,133,64,-0.7577576924834075],[125,133,65,-0.7574042947785014],[125,133,66,-0.757053283772297],[125,133,67,-0.7567046655805585],[125,133,68,-0.7563584462262772],[125,133,69,-0.7560146316392408],[125,133,70,-0.7556732276555869],[125,133,71,-0.755334240017361],[125,133,72,-0.7549976743720738],[125,133,73,-0.7546635362722707],[125,133,74,-0.7543318311750766],[125,133,75,-0.7540025644417683],[125,133,76,-0.7536757413373343],[125,133,77,-0.7533513670300375],[125,133,78,-0.7530294465909807],[125,133,79,-0.7527099849936669],[125,134,64,-0.7579098791133884],[125,134,65,-0.7575562078526893],[125,134,66,-0.7572049226338783],[125,134,67,-0.756856029576109],[125,134,68,-0.7565095347057911],[125,134,69,-0.7561654439561587],[125,134,70,-0.755823763166825],[125,134,71,-0.7554844980833397],[125,134,72,-0.7551476543567459],[125,134,73,-0.7548132375431512],[125,134,74,-0.7544812531032712],[125,134,75,-0.7541517064020018],[125,134,76,-0.7538246027079804],[125,134,77,-0.7534999471931474],[125,134,78,-0.7531777449323126],[125,134,79,-0.7528580009027148],[125,135,64,-0.7580622216393179],[125,135,65,-0.7577082779859867],[125,135,66,-0.7573567197136322],[125,135,67,-0.7570075529447776],[125,135,68,-0.7566607837092314],[125,135,69,-0.7563164179436555],[125,135,70,-0.7559744614911192],[125,135,71,-0.7556349201006577],[125,135,72,-0.7552977994268282],[125,135,73,-0.7549631050292818],[125,135,74,-0.754630842372306],[125,135,75,-0.7543010168243989],[125,135,76,-0.753973633657828],[125,135,77,-0.753648698048194],[125,135,78,-0.7533262150739957],[125,135,79,-0.7530061897161906],[125,136,64,-0.7582147198145349],[125,136,65,-0.7578605049343756],[125,136,66,-0.7575086747701758],[125,136,67,-0.7571592354478089],[125,136,68,-0.7568121930004632],[125,136,69,-0.7564675533682087],[125,136,70,-0.7561253223975521],[125,136,71,-0.7557855058409949],[125,136,72,-0.7554481093565901],[125,136,73,-0.7551131385075135],[125,136,74,-0.7547805987616067],[125,136,75,-0.754450495490951],[125,136,76,-0.7541228339714269],[125,136,77,-0.7537976193822772],[125,136,78,-0.7534748568056724],[125,136,79,-0.7531545512262712],[125,137,64,-0.7583673733907224],[125,137,65,-0.7580128884521743],[125,137,66,-0.7576607875604554],[125,137,67,-0.7573110768447704],[125,137,68,-0.7569637623416668],[125,137,69,-0.7566188499946044],[125,137,70,-0.7562763456535078],[125,137,71,-0.7559362550743259],[125,137,72,-0.755598583918589],[125,137,73,-0.7552633377529788],[125,137,74,-0.7549305220488729],[125,137,75,-0.7546001421819175],[125,137,76,-0.7542722034315881],[125,137,77,-0.7539467109807518],[125,137,78,-0.7536236699152332],[125,137,79,-0.7533030852233752],[125,138,64,-0.7585201821178786],[125,138,65,-0.7581654282920094],[125,138,66,-0.7578130578397189],[125,138,67,-0.7574630768935231],[125,138,68,-0.7571154914933099],[125,138,69,-0.7567703075859086],[125,138,70,-0.7564275310246434],[125,138,71,-0.7560871675688917],[125,138,72,-0.7557492228836418],[125,138,73,-0.755413702539063],[125,138,74,-0.7550806120100504],[125,138,75,-0.754749956675797],[125,138,76,-0.7544217418193553],[125,138,77,-0.754095972627199],[125,138,78,-0.7537726541887889],[125,138,79,-0.7534517914961345],[125,139,64,-0.7586731457443779],[125,139,65,-0.7583181242048762],[125,139,66,-0.7579654853615754],[125,139,67,-0.7576152353502825],[125,139,68,-0.7572673802142069],[125,139,69,-0.7569219259035279],[125,139,70,-0.7565788782749497],[125,139,71,-0.7562382430912595],[125,139,72,-0.7559000260208848],[125,139,73,-0.755564232637464],[125,139,74,-0.7552308684193909],[125,139,75,-0.7548999387493875],[125,139,76,-0.754571448914065],[125,139,77,-0.7542454041034856],[125,139,78,-0.7539218094107292],[125,139,79,-0.7536006698314538],[125,140,64,-0.7588262640169503],[125,140,65,-0.7584709759401189],[125,140,66,-0.7581180698779755],[125,140,67,-0.757767551969599],[125,140,68,-0.7574194282615],[125,140,69,-0.757073704707189],[125,140,70,-0.7567303871667308],[125,140,71,-0.7563894814063032],[125,140,72,-0.7560509930977543],[125,140,73,-0.7557149278181726],[125,140,74,-0.7553812910494326],[125,140,75,-0.7550500881777668],[125,140,76,-0.7547213244933266],[125,140,77,-0.7543950051897452],[125,140,78,-0.7540711353637037],[125,140,79,-0.7537497200144916],[125,141,64,-0.7589795366806625],[125,141,65,-0.7586239832454108],[125,141,66,-0.7582708111391923],[125,141,67,-0.7579200265043378],[125,141,68,-0.7575716353906397],[125,141,69,-0.7572256437549197],[125,141,70,-0.7568820574605848],[125,141,71,-0.756540882277184],[125,141,72,-0.7562021238799664],[125,141,73,-0.7558657878494531],[125,141,74,-0.7555318796709801],[125,141,75,-0.7552004047342717],[125,141,76,-0.7548713683330024],[125,141,77,-0.7545447756643578],[125,141,78,-0.7542206318286024],[125,141,79,-0.7538989418286395],[125,142,64,-0.7591329634789782],[125,142,65,-0.7587771458668149],[125,142,66,-0.7584237088938808],[125,142,67,-0.758072658705739],[125,142,68,-0.7577240013554436],[125,142,69,-0.757377742803109],[125,142,70,-0.7570338889154637],[125,142,71,-0.7566924454654093],[125,142,72,-0.7563534181315779],[125,142,73,-0.7560168124979031],[125,142,74,-0.7556826340531644],[125,142,75,-0.75535088819056],[125,142,76,-0.7550215802072681],[125,142,77,-0.7546947153040099],[125,142,78,-0.7543702985846149],[125,142,79,-0.7540483350555827],[125,143,64,-0.759286544153729],[125,143,65,-0.758930463548755],[125,143,66,-0.7585767628890502],[125,143,67,-0.7582254483233896],[125,143,68,-0.7578765259080699],[125,143,69,-0.7575300016064778],[125,143,70,-0.7571858812886448],[125,143,71,-0.7568441707308058],[125,143,72,-0.7565048756149566],[125,143,73,-0.7561680015284247],[125,143,74,-0.7558335539634145],[125,143,75,-0.7555015383165793],[125,143,76,-0.7551719598885838],[125,143,77,-0.7548448238836656],[125,143,78,-0.7545201354092018],[125,143,79,-0.7541978994752709],[125,144,64,-0.7594402784451395],[125,144,65,-0.7590839360340407],[125,144,66,-0.7587299728700877],[125,144,67,-0.7583783951052477],[125,144,68,-0.7580292087990401],[125,144,69,-0.7576824199181045],[125,144,70,-0.7573380343357559],[125,144,71,-0.7569960578315432],[125,144,72,-0.7566564960908067],[125,144,73,-0.7563193547042496],[125,144,74,-0.7559846391674819],[125,144,75,-0.7556523548805942],[125,144,76,-0.7553225071477185],[125,144,77,-0.7549951011765916],[125,144,78,-0.7546701420781201],[125,144,79,-0.754347634865943],[125,145,64,-0.7595941660917991],[125,145,65,-0.7592375630638389],[125,145,66,-0.7588833385807308],[125,145,67,-0.7585314987976144],[125,145,68,-0.7581820497772116],[125,145,69,-0.7578349974893958],[125,145,70,-0.7574903478107458],[125,145,71,-0.7571481065241051],[125,145,72,-0.75680827931814],[125,145,73,-0.7564708717869097],[125,145,74,-0.7561358894294119],[125,145,75,-0.7558033376491553],[125,145,76,-0.7554732217537217],[125,145,77,-0.7551455469543279],[125,145,78,-0.7548203183653928],[125,145,79,-0.7544975410040985],[125,146,64,-0.7597482068307214],[125,146,65,-0.7593913443777336],[125,146,66,-0.7590368597631267],[125,146,67,-0.7586847591451931],[125,146,68,-0.7583350485898375],[125,146,69,-0.7579877340701469],[125,146,70,-0.7576428214659447],[125,146,71,-0.7573003165633501],[125,146,72,-0.7569602250543355],[125,146,73,-0.756622552536298],[125,146,74,-0.7562873045116034],[125,146,75,-0.7559544863871607],[125,146,76,-0.7556241034739825],[125,146,77,-0.7552961609867481],[125,146,78,-0.7549706640433705],[125,146,79,-0.7546476176645568],[125,147,64,-0.7599024003973254],[125,147,65,-0.7595452797137062],[125,147,66,-0.7591905361578133],[125,147,67,-0.7588381758910708],[125,147,68,-0.7584882049825468],[125,147,69,-0.758140629408522],[125,147,70,-0.757795455052045],[125,147,71,-0.7574526877024914],[125,147,72,-0.7571123330551204],[125,147,73,-0.7567743967106477],[125,147,74,-0.7564388841747895],[125,147,75,-0.7561058008578354],[125,147,76,-0.7557751520742111],[125,147,77,-0.75544694304204],[125,147,78,-0.7551211788827108],[125,147,79,-0.7547978646204381],[125,148,64,-0.7600567465254149],[125,148,65,-0.7596993688081167],[125,148,66,-0.759344367503699],[125,148,67,-0.7589917487766978],[125,148,68,-0.7586415186993246],[125,148,69,-0.7582936832510343],[125,148,70,-0.757948248318081],[125,148,71,-0.7576052196930767],[125,148,72,-0.7572646030745493],[125,148,73,-0.7569264040665138],[125,148,74,-0.756590628178017],[125,148,75,-0.7562572808227119],[125,148,76,-0.7559263673184178],[125,148,77,-0.7555978928866842],[125,148,78,-0.7552718626523578],[125,148,79,-0.7549482816431426],[125,149,64,-0.7602112449472396],[125,149,65,-0.7598536113957628],[125,149,66,-0.7594983535381229],[125,149,67,-0.759145477541948],[125,149,68,-0.7587949894825725],[125,149,69,-0.7584468953426061],[125,149,70,-0.7581012010114886],[125,149,71,-0.7577579122850494],[125,149,72,-0.7574170348650652],[125,149,73,-0.7570785743588315],[125,149,74,-0.7567425362787076],[125,149,75,-0.7564089260416896],[125,149,76,-0.7560777489689734],[125,149,77,-0.7557490102855159],[125,149,78,-0.7554227151196032],[125,149,79,-0.7550988685024115],[125,150,64,-0.7603658953934749],[125,150,65,-0.7600080072098606],[125,150,66,-0.7596524939968353],[125,150,67,-0.7592993619250988],[125,150,68,-0.7589486170730887],[125,150,69,-0.7586002654265491],[125,150,70,-0.7582543128780865],[125,150,71,-0.7579107652267278],[125,150,72,-0.7575696281774793],[125,150,73,-0.757230907340898],[125,150,74,-0.7568946082326364],[125,150,75,-0.756560736273016],[125,150,76,-0.7562292967865895],[125,150,77,-0.7559002950017036],[125,150,78,-0.7555737360500658],[125,150,79,-0.755249624966306],[125,151,64,-0.7605206975932021],[125,151,65,-0.7601625559820249],[125,151,66,-0.7598067886139777],[125,151,67,-0.7594534016628118],[125,151,68,-0.7591024012100478],[125,151,69,-0.7587537932445447],[125,151,70,-0.7584075836620554],[125,151,71,-0.7580637782647851],[125,151,72,-0.7577223827609507],[125,151,73,-0.7573834027643511],[125,151,74,-0.7570468437939133],[125,151,75,-0.7567127112732651],[125,151,76,-0.7563810105302982],[125,151,77,-0.7560517467967299],[125,151,78,-0.7557249252076712],[125,151,79,-0.7554005508011878],[125,152,64,-0.7606756512739687],[125,152,65,-0.7603172574423294],[125,152,66,-0.7599612371221433],[125,152,67,-0.7596075964901927],[125,152,68,-0.7592563416310617],[125,152,69,-0.7589074785367038],[125,152,70,-0.7585610131059987],[125,152,71,-0.7582169511443106],[125,152,72,-0.7578752983630471],[125,152,73,-0.7575360603792304],[125,152,74,-0.7571992427150426],[125,152,75,-0.7568648507973994],[125,152,76,-0.7565328899575122],[125,152,77,-0.7562033654304512],[125,152,78,-0.7558762823547124],[125,152,79,-0.7555516457717792],[125,153,64,-0.76083075616176],[125,153,65,-0.7604721113192778],[125,153,66,-0.7601158392523476],[125,153,67,-0.759761946140763],[125,153,68,-0.7594104380721503],[125,153,69,-0.7590613210415383],[125,153,70,-0.7587146009509137],[125,153,71,-0.75837028360878],[125,153,72,-0.758028374729716],[125,153,73,-0.757688879933948],[125,153,74,-0.7573518047468941],[125,153,75,-0.7570171545987393],[125,153,76,-0.7566849348239961],[125,153,77,-0.756355150661069],[125,153,78,-0.7560278072518205],[125,153,79,-0.7557029096411341],[125,154,64,-0.7609860119810237],[125,154,65,-0.7606271173398289],[125,154,66,-0.7602705947340542],[125,154,67,-0.7599164503464837],[125,154,68,-0.7595646902677663],[125,154,69,-0.7592153204959858],[125,154,70,-0.7588683469362161],[125,154,71,-0.75852377540008],[125,154,72,-0.7581816116053087],[125,154,73,-0.7578418611753129],[125,154,74,-0.7575045296387282],[125,154,75,-0.757169622428989],[125,154,76,-0.7568371448838911],[125,154,77,-0.7565071022451542],[125,154,78,-0.7561794996579896],[125,154,79,-0.7558543421706623],[125,155,64,-0.7611414184546405],[125,155,65,-0.7607822752293673],[125,155,66,-0.7604255032951448],[125,155,67,-0.7600711088377273],[125,155,68,-0.7597190979507664],[125,155,69,-0.7593694766353805],[125,155,70,-0.7590222507997106],[125,155,71,-0.75867742625848],[125,155,72,-0.7583350087325519],[125,155,73,-0.7579950038485026],[125,155,74,-0.7576574171381656],[125,155,75,-0.7573222540382066],[125,155,76,-0.7569895198896852],[125,155,77,-0.7566592199376182],[125,155,78,-0.7563313593305472],[125,155,79,-0.7560059431201004],[125,156,64,-0.7612969753039852],[125,156,65,-0.7609375847117639],[125,156,66,-0.7605805646619803],[125,156,67,-0.7602259213433383],[125,156,68,-0.7598736608524717],[125,156,69,-0.7595237891935135],[125,156,70,-0.7591763122776525],[125,156,71,-0.7588312359226916],[125,156,72,-0.7584885658526077],[125,156,73,-0.7581483076971227],[125,156,74,-0.7578104669912491],[125,156,75,-0.7574750491748646],[125,156,76,-0.7571420595922742],[125,156,77,-0.756811503491773],[125,156,78,-0.7564833860252145],[125,156,79,-0.7561577122475722],[125,157,64,-0.761452682248907],[125,157,65,-0.7610930455093565],[125,157,66,-0.7607357785593807],[125,157,67,-0.7603808875906124],[125,157,68,-0.7600283787026473],[125,157,69,-0.7596782579026132],[125,157,70,-0.7593305311047261],[125,157,71,-0.7589852041298498],[125,157,72,-0.7586422827050541],[125,157,73,-0.7583017724631875],[125,157,74,-0.7579636789424228],[125,157,75,-0.7576280075858304],[125,157,76,-0.7572947637409415],[125,157,77,-0.7569639526593115],[125,157,78,-0.756635579496087],[125,157,79,-0.7563096493095688],[125,158,64,-0.7616085390077085],[125,158,65,-0.7612486573429291],[125,158,66,-0.7608911447106047],[125,158,67,-0.7605360073052769],[125,158,68,-0.7601832512294828],[125,158,69,-0.7598328824933247],[125,158,70,-0.7594849070140259],[125,158,71,-0.759139330615491],[125,158,72,-0.7587961590278636],[125,158,73,-0.7584553978870995],[125,158,74,-0.7581170527345116],[125,158,75,-0.7577811290163445],[125,158,76,-0.7574476320833374],[125,158,77,-0.7571165671902863],[125,158,78,-0.7567879394956132],[125,158,79,-0.7564617540609273],[125,159,64,-0.761764545297207],[125,159,65,-0.7614044199317727],[125,159,66,-0.7610466628374111],[125,159,67,-0.7606912802115516],[125,159,68,-0.7603382781596526],[125,159,69,-0.7599876626947706],[125,159,70,-0.7596394397371166],[125,159,71,-0.7592936151136154],[125,159,72,-0.7589501945574652],[125,159,73,-0.7586091837077094],[125,159,74,-0.7582705881087822],[125,159,75,-0.7579344132100833],[125,159,76,-0.75760066436554],[125,159,77,-0.7572693468331713],[125,159,78,-0.7569404657746555],[125,159,79,-0.7566140262548924],[125,160,64,-0.7619207008327056],[125,160,65,-0.7615603329936563],[125,160,66,-0.7612023326600285],[125,160,67,-0.760846706032119],[125,160,68,-0.7604934592182866],[125,160,69,-0.760142598234522],[125,160,70,-0.7597941290040032],[125,160,71,-0.7594480573566564],[125,160,72,-0.7591043890287141],[125,160,73,-0.7587631296622879],[125,160,74,-0.7584242848049139],[125,160,75,-0.7580878599091274],[125,160,76,-0.7577538603320257],[125,160,77,-0.7574222913348316],[125,160,78,-0.7570931580824611],[125,160,79,-0.7567664656430864],[125,161,64,-0.762077005328017],[125,161,65,-0.7617163962448518],[125,161,66,-0.7613581538971812],[125,161,67,-0.7610022844881494],[125,161,68,-0.7606487941289951],[125,161,69,-0.7602976888386226],[125,161,70,-0.7599489745431575],[125,161,71,-0.7596026570755066],[125,161,72,-0.7592587421749173],[125,161,73,-0.7589172354865498],[125,161,74,-0.7585781425610227],[125,161,75,-0.7582414688539882],[125,161,76,-0.7579072197256943],[125,161,77,-0.7575754004405486],[125,161,78,-0.7572460161666866],[125,161,79,-0.756919071975534],[125,162,64,-0.762233458495436],[125,162,65,-0.7618726094001043],[125,162,66,-0.7615141262660596],[125,162,67,-0.761158015299272],[125,162,68,-0.7608042826138397],[125,162,69,-0.7604529342315605],[125,162,70,-0.7601039760814869],[125,162,71,-0.7597574139994872],[125,162,72,-0.7594132537278031],[125,162,73,-0.7590715009146244],[125,162,74,-0.7587321611136327],[125,162,75,-0.7583952397835776],[125,162,76,-0.7580607422878386],[125,162,77,-0.7577286738939899],[125,162,78,-0.7573990397733676],[125,162,79,-0.7570718450006326],[125,163,64,-0.7623900600457986],[125,163,65,-0.7620289721726936],[125,163,66,-0.7616702494823806],[125,163,67,-0.7613138981836348],[125,163,68,-0.7609599243933937],[125,163,69,-0.7606083341363277],[125,163,70,-0.7602591333443965],[125,163,71,-0.7599123278564092],[125,163,72,-0.7595679234175831],[125,163,73,-0.7592259256791167],[125,163,74,-0.7588863401977359],[125,163,75,-0.7585491724352682],[125,163,76,-0.7582144277582061],[125,163,77,-0.7578821114372709],[125,163,78,-0.7575522286469807],[125,163,79,-0.7572247844652134],[125,164,64,-0.7625468096884627],[125,164,65,-0.7621854842744135],[125,164,66,-0.7618265232603679],[125,164,67,-0.7614699328578853],[125,164,68,-0.7611157191867219],[125,164,69,-0.7607638882744008],[125,164,70,-0.760414446055768],[125,164,71,-0.7600673983725538],[125,164,72,-0.7597227509729305],[125,164,73,-0.7593805095110868],[125,164,74,-0.7590406795467726],[125,164,75,-0.7587032665448743],[125,164,76,-0.758368275874978],[125,164,77,-0.7580357128109335],[125,164,78,-0.7577055825304221],[125,164,79,-0.7573778901145202],[125,165,64,-0.7627037071312875],[125,165,65,-0.7623421454155515],[125,165,66,-0.7619829473127313],[125,165,67,-0.7616261190371498],[125,165,68,-0.761271666711361],[125,165,69,-0.7609195963657202],[125,165,70,-0.7605699139379398],[125,165,71,-0.7602226252726508],[125,165,72,-0.7598777361209613],[125,165,73,-0.7595352521400297],[125,165,74,-0.7591951788926106],[125,165,75,-0.75885752184663],[125,165,76,-0.7585222863747488],[125,165,77,-0.758189477753926],[125,165,78,-0.7578591011649877],[125,165,79,-0.7575311616921897],[125,166,64,-0.7628607520806949],[125,166,65,-0.76249895530495],[125,166,66,-0.7621395213507276],[125,166,67,-0.7617824564350937],[125,166,68,-0.7614277666833792],[125,166,69,-0.7610754581287508],[125,166,70,-0.7607255367117673],[125,166,71,-0.7603780082799404],[125,166,72,-0.7600328785872935],[125,166,73,-0.7596901532939354],[125,166,74,-0.7593498379656058],[125,166,75,-0.7590119380732511],[125,166,76,-0.7586764589925873],[125,166,77,-0.758343406003664],[125,166,78,-0.758012784290433],[125,166,79,-0.7576845989403116],[125,167,64,-0.7630179442416397],[125,167,65,-0.7626559136499766],[125,167,66,-0.7622962450841319],[125,167,67,-0.761938944763893],[125,167,68,-0.7615840188173475],[125,167,69,-0.761231473280453],[125,167,70,-0.7608813140965942],[125,167,71,-0.7605335471161432],[125,167,72,-0.7601881780960188],[125,167,73,-0.7598452126992603],[125,167,74,-0.7595046564945732],[125,167,75,-0.7591665149559047],[125,167,76,-0.7588307934620065],[125,167,77,-0.7584974972960004],[125,167,78,-0.7581666316449446],[125,167,79,-0.7578382015993993],[125,168,64,-0.7631752833176342],[125,168,65,-0.7628130201565493],[125,168,66,-0.7624531182212613],[125,168,67,-0.7620955837342587],[125,168,68,-0.7617404228263647],[125,168,69,-0.7613876415363072],[125,168,70,-0.7610372458102765],[125,168,71,-0.7606892415014848],[125,168,72,-0.7603436343697264],[125,168,73,-0.7600004300809514],[125,168,74,-0.7596596342068113],[125,168,75,-0.7593212522242343],[125,168,76,-0.7589852895149894],[125,168,77,-0.7586517513652503],[125,168,78,-0.7583206429651641],[125,168,79,-0.7579919694084145],[125,169,64,-0.7633327690107192],[125,169,65,-0.7629702745291064],[125,169,66,-0.7626101404689462],[125,169,67,-0.7622523730554072],[125,169,68,-0.7618969784220273],[125,169,69,-0.7615439626102845],[125,169,70,-0.7611933315691534],[125,169,71,-0.7608450911546667],[125,169,72,-0.7604992471294744],[125,169,73,-0.7601558051624169],[125,169,74,-0.759814770828072],[125,169,75,-0.7594761496063301],[125,169,76,-0.7591399468819576],[125,169,77,-0.7588061679441618],[125,169,78,-0.7584748179861585],[125,169,79,-0.758145902104737],[125,170,64,-0.7634904010215253],[125,170,65,-0.7631276764706683],[125,170,66,-0.762767311532591],[125,170,67,-0.7624093124351214],[125,170,68,-0.7620536853144908],[125,170,69,-0.7617004362149067],[125,170,70,-0.761349571088108],[125,170,71,-0.7610010957929273],[125,170,72,-0.7606550160948496],[125,170,73,-0.7603113376655866],[125,170,74,-0.7599700660826225],[125,170,75,-0.75963120682879],[125,170,76,-0.7592947652918338],[125,170,77,-0.7589607467639753],[125,170,78,-0.7586291564414809],[125,170,79,-0.7582999994242263],[125,171,64,-0.7636481790492518],[125,171,65,-0.7632852256828163],[125,171,66,-0.7629246311161542],[125,171,67,-0.7625664015797301],[125,171,68,-0.7622105432124494],[125,171,69,-0.7618570620612274],[125,171,70,-0.7615059640805472],[125,171,71,-0.7611572551320207],[125,171,72,-0.7608109409839483],[125,171,73,-0.7604670273108924],[125,171,74,-0.7601255196932241],[125,171,75,-0.7597864236166989],[125,171,76,-0.7594497444720205],[125,171,77,-0.7591154875544052],[125,171,78,-0.7587836580631507],[125,171,79,-0.7584542611012007],[125,172,64,-0.7638061027916463],[125,172,65,-0.7634429218656732],[125,172,66,-0.7630820989221265],[125,172,67,-0.7627236401940882],[125,172,68,-0.762367551823115],[125,172,69,-0.7620138398588103],[125,172,70,-0.7616625102583805],[125,172,71,-0.7613135688861968],[125,172,72,-0.7609670215133544],[125,172,73,-0.7606228738172465],[125,172,74,-0.7602811313811114],[125,172,75,-0.759941799693608],[125,172,76,-0.7596048841483791],[125,172,77,-0.7592703900436168],[125,172,78,-0.7589383225816319],[125,172,79,-0.7586086868684161],[125,173,64,-0.7639641719450665],[125,173,65,-0.763600764717963],[125,173,66,-0.7632397146515939],[125,173,67,-0.7628810279816363],[125,173,68,-0.7625247108522785],[125,173,69,-0.7621707693157905],[125,173,70,-0.7618192093320818],[125,173,71,-0.7614700367682619],[125,173,72,-0.7611232573982009],[125,173,73,-0.760778876902103],[125,173,74,-0.7604369008660538],[125,173,75,-0.7600973347815955],[125,173,76,-0.759760184045291],[125,173,77,-0.7594254539582894],[125,173,78,-0.7590931497258941],[125,173,79,-0.7587632764571276],[125,174,64,-0.7641223862044497],[125,174,65,-0.7637587539369823],[125,174,66,-0.7633974780042061],[125,174,67,-0.7630385646443726],[125,174,68,-0.7626820200042802],[125,174,69,-0.7623278501388451],[125,174,70,-0.7619760610106587],[125,174,71,-0.761626658489549],[125,174,72,-0.7612796483521405],[125,174,73,-0.7609350362814283],[125,174,74,-0.7605928278663252],[125,174,75,-0.7602530286012374],[125,174,76,-0.7599156438856285],[125,174,77,-0.7595806790235847],[125,174,78,-0.7592481392233837],[125,174,79,-0.758918029597059],[125,175,64,-0.7642807452633384],[125,175,65,-0.7639168892186247],[125,175,66,-0.7635553886782025],[125,175,67,-0.7631962498828767],[125,175,68,-0.7628394789820346],[125,175,69,-0.7624850820332176],[125,175,70,-0.7621330650016785],[125,175,71,-0.7617834337599432],[125,175,72,-0.7614361940873702],[125,175,73,-0.7610913516697256],[125,175,74,-0.7607489120987296],[125,175,75,-0.7604088808716324],[125,175,76,-0.7600712633907787],[125,175,77,-0.7597360649631727],[125,175,78,-0.7594032908000473],[125,175,79,-0.7590729460164282],[125,176,64,-0.7644392488138502],[125,176,65,-0.7640751702573513],[125,176,66,-0.7637134463703826],[125,176,67,-0.7633540833962805],[125,176,68,-0.7629970874870005],[125,176,69,-0.7626424647026883],[125,176,70,-0.7622902210112373],[125,176,71,-0.7619403622878507],[125,176,72,-0.761592894314601],[125,176,73,-0.7612478227800048],[125,176,74,-0.7609051532785698],[125,176,75,-0.7605648913103706],[125,176,76,-0.7602270422806133],[125,176,77,-0.759891611499201],[125,176,78,-0.7595586041803024],[125,176,79,-0.7592280254419165],[125,177,64,-0.764597896546739],[125,177,65,-0.764233596746252],[125,177,66,-0.7638716507761663],[125,177,67,-0.763512064882329],[125,177,68,-0.7631548452192423],[125,177,69,-0.7627999978496355],[125,177,70,-0.7624475287440218],[125,177,71,-0.7620974437802611],[125,177,72,-0.7617497487431195],[125,177,73,-0.7614044493238441],[125,177,74,-0.7610615511197099],[125,177,75,-0.7607210596335962],[125,177,76,-0.760382980273551],[125,177,77,-0.7600473183523566],[125,177,78,-0.7597140790870985],[125,177,79,-0.7593832675987301],[125,178,64,-0.7647566881513748],[125,178,65,-0.7643921683770243],[125,178,66,-0.7640300015895738],[125,178,67,-0.7636701940373594],[125,178,68,-0.7633127518774093],[125,178,69,-0.7629576811750147],[125,178,70,-0.7626049879032885],[125,178,71,-0.7622546779427262],[125,178,72,-0.7619067570807674],[125,178,73,-0.7615612310113691],[125,178,74,-0.7612181053345538],[125,178,75,-0.7608773855559858],[125,178,76,-0.7605390770865355],[125,178,77,-0.7602031852418445],[125,178,78,-0.7598697152418962],[125,178,79,-0.7595386722105791],[125,179,64,-0.7649156233157226],[125,179,65,-0.7645508848399534],[125,179,66,-0.7641884985032051],[125,179,67,-0.7638284705562814],[125,179,68,-0.7634708071587148],[125,179,69,-0.7631155143783381],[125,179,70,-0.7627625981908426],[125,179,71,-0.7624120644793391],[125,179,72,-0.7620639190339197],[125,179,73,-0.7617181675512316],[125,179,74,-0.7613748156340246],[125,179,75,-0.7610338687907281],[125,179,76,-0.7606953324350147],[125,179,77,-0.7603592118853669],[125,179,78,-0.7600255123646459],[125,179,79,-0.7596942389996566],[125,180,64,-0.7650747017264037],[125,180,65,-0.7647097458239731],[125,180,66,-0.7643471412083009],[125,180,67,-0.7639868941326373],[125,180,68,-0.7636290107589979],[125,180,69,-0.7632734971577357],[125,180,70,-0.7629203593070997],[125,180,71,-0.7625696030927953],[125,180,72,-0.762221234307547],[125,180,73,-0.7618752586506714],[125,180,74,-0.7615316817276259],[125,180,75,-0.7611905090495845],[125,180,76,-0.7608517460330031],[125,180,77,-0.7605153979991847],[125,180,78,-0.7601814701738496],[125,180,79,-0.7598499676866999],[125,181,64,-0.7652339230686663],[125,181,65,-0.7648687510166358],[125,181,66,-0.7645059293947128],[125,181,67,-0.7641454644585727],[125,181,68,-0.7637873623726927],[125,181,69,-0.7634316292099254],[125,181,70,-0.7630782709510556],[125,181,71,-0.7627272934843636],[125,181,72,-0.762378702605185],[125,181,73,-0.7620325040154861],[125,181,74,-0.7616887033234111],[125,181,75,-0.7613473060428595],[125,181,76,-0.7610083175930499],[125,181,77,-0.760671743298087],[125,181,78,-0.7603375883865304],[125,181,79,-0.7600058579909603],[125,182,64,-0.76539328702641],[125,182,65,-0.7650279001041375],[125,182,66,-0.7646648627509286],[125,182,67,-0.7643041812248613],[125,182,68,-0.7639458616928541],[125,182,69,-0.763589910230237],[125,182,70,-0.7632363328203112],[125,182,71,-0.7628851353539098],[125,182,72,-0.7625363236289595],[125,182,73,-0.7621899033500555],[125,182,74,-0.7618458801280092],[125,182,75,-0.7615042594794252],[125,182,76,-0.7611650468262653],[125,182,77,-0.7608282474954161],[125,182,78,-0.7604938667182574],[125,182,79,-0.7601619096302278],[125,183,64,-0.7655527932821558],[125,183,65,-0.7651871927712881],[125,183,66,-0.7648239409640412],[125,183,67,-0.764463044120875],[125,183,68,-0.7641045084111269],[125,183,69,-0.7637483399125842],[125,183,70,-0.7633945446110424],[125,183,71,-0.7630431283998672],[125,183,72,-0.7626940970795559],[125,183,73,-0.7623474563573122],[125,183,74,-0.7620032118465941],[125,183,75,-0.7616613690666914],[125,183,76,-0.7613219334422896],[125,183,77,-0.7609849103030373],[125,183,78,-0.7606503048831148],[125,183,79,-0.7603181223208009],[125,184,64,-0.7657124415171078],[125,184,65,-0.7653466287015727],[125,184,66,-0.7649831637198116],[125,184,67,-0.764622052834645],[125,184,68,-0.764263302217808],[125,184,69,-0.7639069179495238],[125,184,70,-0.7635529060180614],[125,184,71,-0.763201272319298],[125,184,72,-0.7628520226562809],[125,184,73,-0.762505162738802],[125,184,74,-0.7621606981829457],[125,184,75,-0.7618186345106668],[125,184,76,-0.7614789771493546],[125,184,77,-0.7611417314314],[125,184,78,-0.7608069025937649],[125,184,79,-0.760474495777548],[125,185,64,-0.7658722314111327],[125,185,65,-0.7655062075771301],[125,185,66,-0.7651425307026467],[125,185,67,-0.7647812070528411],[125,185,68,-0.7644222428018251],[125,185,69,-0.7640656440322362],[125,185,70,-0.7637114167347959],[125,185,71,-0.7633595668078723],[125,185,72,-0.7630101000570418],[125,185,73,-0.762663022194664],[125,185,74,-0.7623183388394295],[125,185,75,-0.7619760555159379],[125,185,76,-0.7616361776542626],[125,185,77,-0.761298710589517],[125,185,78,-0.760963659561425],[125,185,79,-0.7606310297138863],[125,186,64,-0.7660321626427378],[125,186,65,-0.7656659290787331],[125,186,66,-0.7653020415955791],[125,186,67,-0.7649405064607511],[125,186,68,-0.7645813298507158],[125,186,69,-0.7642245178505038],[125,186,70,-0.7638700764532682],[125,186,71,-0.763518011559847],[125,186,72,-0.763168328978325],[125,186,73,-0.7628210344236087],[125,186,74,-0.762476133516975],[125,186,75,-0.7621336317856482],[125,186,76,-0.7617935346623654],[125,186,77,-0.7614558474849431],[125,186,78,-0.7611205754958477],[125,186,79,-0.7607877238417604],[125,187,64,-0.7661922348891337],[125,187,65,-0.7658257928858494],[125,187,66,-0.7654616960803283],[125,187,67,-0.7650999507423415],[125,187,68,-0.7647405630506887],[125,187,69,-0.7643835390927727],[125,187,70,-0.7640288848641565],[125,187,71,-0.7636766062681273],[125,187,72,-0.7633267091152575],[125,187,73,-0.7629791991229801],[125,187,74,-0.7626340819151377],[125,187,75,-0.7622913630215592],[125,187,76,-0.7619510478776257],[125,187,77,-0.7616131418238369],[125,187,78,-0.7612776501053817],[125,187,79,-0.7609445778717039],[125,188,64,-0.7663524478262127],[125,188,65,-0.76598579867662],[125,188,66,-0.7656214938372801],[125,188,67,-0.7652595395802373],[125,188,68,-0.7648999420866035],[125,188,69,-0.7645427074461316],[125,188,70,-0.764187841656774],[125,188,71,-0.7638353506242457],[125,188,72,-0.7634852401615861],[125,188,73,-0.7631375159887342],[125,188,74,-0.7627921837320777],[125,188,75,-0.7624492489240299],[125,188,76,-0.7621087170025959],[125,188,77,-0.7617705933109389],[125,188,78,-0.7614348830969508],[125,188,79,-0.7611015915128185],[125,189,64,-0.7665128011285284],[125,189,65,-0.7661459461278396],[125,189,66,-0.7657814345454652],[125,189,67,-0.7654192726557009],[125,189,68,-0.7650594666419488],[125,189,69,-0.7647020225962909],[125,189,70,-0.7643469465190477],[125,189,71,-0.763994244318341],[125,189,72,-0.7636439218096562],[125,189,73,-0.7632959847154178],[125,189,74,-0.7629504386645383],[125,189,75,-0.7626072891919949],[125,189,76,-0.7622665417383969],[125,189,77,-0.761928201649551],[125,189,78,-0.7615922741760327],[125,189,79,-0.7612587644727522],[125,190,64,-0.7666732944693564],[125,190,65,-0.7663062349150173],[125,190,66,-0.765941517882621],[125,190,67,-0.7655791496486929],[125,190,68,-0.7652191363989042],[125,190,69,-0.7648614842276442],[125,190,70,-0.76450619913758],[125,190,71,-0.7641532870392196],[125,190,72,-0.7638027537504734],[125,190,73,-0.7634546049962306],[125,190,74,-0.7631088464079079],[125,190,75,-0.7627654835230269],[125,190,76,-0.76242452178478],[125,190,77,-0.762085966541598],[125,190,78,-0.7617498230467203],[125,190,79,-0.7614160964577611],[125,191,64,-0.7668339275206653],[125,191,65,-0.7664666647123464],[125,191,66,-0.766101743525161],[125,191,67,-0.765739170237843],[125,191,68,-0.76537895103831],[125,191,69,-0.7650210920232378],[125,191,70,-0.7646655991976187],[125,191,71,-0.7643124784743254],[125,191,72,-0.7639617356736729],[125,191,73,-0.7636133765229943],[125,191,74,-0.7632674066561899],[125,191,75,-0.7629238316133049],[125,191,76,-0.7625826568400959],[125,191,77,-0.7622438876875969],[125,191,78,-0.7619075294116917],[125,191,79,-0.7615735871726791],[125,192,64,-0.7669946999531403],[125,192,65,-0.7666272351927295],[125,192,66,-0.7662621111482009],[125,192,67,-0.7658993341004741],[125,192,68,-0.7655389102396923],[125,192,69,-0.7651808456647959],[125,192,70,-0.7648251463830813],[125,192,71,-0.7644718183097647],[125,192,72,-0.7641208672675447],[125,192,73,-0.7637722989861775],[125,192,74,-0.7634261191020266],[125,192,75,-0.7630823331576407],[125,192,76,-0.7627409466013196],[125,192,77,-0.7624019647866815],[125,192,78,-0.7620653929722345],[125,192,79,-0.7617312363209424],[125,193,64,-0.7671556114361542],[125,193,65,-0.7667879460277484],[125,193,66,-0.7664226204255264],[125,193,67,-0.7660596409125722],[125,193,68,-0.7656990136812324],[125,193,69,-0.7653407448326902],[125,193,70,-0.7649848403765251],[125,193,71,-0.7646313062302758],[125,193,72,-0.764280148219003],[125,193,73,-0.7639313720748656],[125,193,74,-0.7635849834366697],[125,193,75,-0.7632409878494469],[125,193,76,-0.7628993907640205],[125,193,77,-0.7625601975365724],[125,193,78,-0.7622234134282154],[125,193,79,-0.7618890436045587],[125,194,64,-0.7673166616378284],[125,194,65,-0.7669487968877254],[125,194,66,-0.7665832710296567],[125,194,67,-0.7662200903488481],[125,194,68,-0.765859261039828],[125,194,69,-0.7655007892060014],[125,194,70,-0.7651446808592086],[125,194,71,-0.76479094191929],[125,194,72,-0.7644395782136477],[125,194,73,-0.764090595476822],[125,194,74,-0.7637439993500413],[125,194,75,-0.7633997953807996],[125,194,76,-0.7630579890224232],[125,194,77,-0.7627185856336381],[125,194,78,-0.7623815904781419],[125,194,79,-0.7620470087241695],[125,195,64,-0.7674778502250117],[125,195,65,-0.7671097874417027],[125,195,66,-0.7667440626318223],[125,195,67,-0.7663806820827163],[125,195,68,-0.7660196519910731],[125,195,69,-0.7656609784624978],[125,195,70,-0.7653046675110705],[125,195,71,-0.7649507250589116],[125,195,72,-0.7645991569357434],[125,195,73,-0.7642499688784674],[125,195,74,-0.763903166530713],[125,195,75,-0.7635587554424165],[125,195,76,-0.7632167410693869],[125,195,77,-0.7628771287728744],[125,195,78,-0.762539923819141],[125,195,79,-0.7622051313790283],[125,196,64,-0.7676391768632597],[125,196,65,-0.7672709173574206],[125,196,66,-0.766904994901944],[125,196,67,-0.7665414157862736],[125,196,68,-0.7661801862092362],[125,196,69,-0.7658213122786148],[125,196,70,-0.7654648000107082],[125,196,71,-0.7651106553298953],[125,196,72,-0.764758884068198],[125,196,73,-0.7644094919648576],[125,196,74,-0.7640624846658842],[125,196,75,-0.7637178677236356],[125,196,76,-0.7633756465963835],[125,196,77,-0.7630358266478816],[125,196,78,-0.7626984131469375],[125,196,79,-0.7623634112669788],[125,197,64,-0.7678006412168961],[125,197,65,-0.7674321863013798],[125,197,66,-0.7670660675086947],[125,197,67,-0.7667022911303611],[125,197,68,-0.7663408633673218],[125,197,69,-0.7659817903295161],[125,197,70,-0.7656250780354397],[125,197,71,-0.7652707324117092],[125,197,72,-0.7649187592926247],[125,197,73,-0.7645691644197463],[125,197,74,-0.7642219534414442],[125,197,75,-0.7638771319124773],[125,197,76,-0.7635347052935594],[125,197,77,-0.7631946789509282],[125,197,78,-0.762857058155916],[125,197,79,-0.7625218480845173],[125,198,64,-0.7679622429489823],[125,198,65,-0.7675935939388104],[125,198,66,-0.7672272801194696],[125,198,67,-0.7668633077845338],[125,198,68,-0.7665016831370401],[125,198,69,-0.7661424122890629],[125,198,70,-0.765785501261273],[125,198,71,-0.7654309559825032],[125,198,72,-0.7650787822893108],[125,198,73,-0.7647289859255537],[125,198,74,-0.7643815725419414],[125,198,75,-0.7640365476956132],[125,198,76,-0.7636939168497052],[125,198,77,-0.7633536853729184],[125,198,78,-0.7630158585390902],[125,198,79,-0.7626804415267621],[125,199,64,-0.7681239817213427],[125,199,65,-0.7677551399336977],[125,199,66,-0.7673886324004099],[125,199,67,-0.767024465417085],[125,199,68,-0.7666626451888325],[125,199,69,-0.7663031778298396],[125,199,70,-0.7659460693629312],[125,199,71,-0.7655913257191347],[125,199,72,-0.7652389527372431],[125,199,73,-0.7648889561633917],[125,199,74,-0.7645413416506084],[125,199,75,-0.764196114758392],[125,199,76,-0.7638532809522807],[125,199,77,-0.763512845603418],[125,199,78,-0.7631748139881274],[125,199,79,-0.762839191287477],[125,200,64,-0.768285857194534],[125,200,65,-0.767916823948751],[125,200,66,-0.7675501240163732],[125,200,67,-0.7671857636950163],[125,200,68,-0.76682374919184],[125,200,69,-0.7664640866231226],[125,200,70,-0.7661067820138214],[125,200,71,-0.765751841297137],[125,200,72,-0.7653992703140773],[125,200,73,-0.7650490748130332],[125,200,74,-0.7647012604493304],[125,200,75,-0.7643558327848072],[125,200,76,-0.7640127972873825],[125,200,77,-0.7636721593306233],[125,200,78,-0.7633339241933179],[125,200,79,-0.7629980970590422],[125,201,64,-0.7684478690279072],[125,201,65,-0.7680786456454654],[125,201,66,-0.7677117546309952],[125,201,67,-0.7673472022840993],[125,201,68,-0.7669849948139659],[125,201,69,-0.7666251383389425],[125,201,70,-0.7662676388860972],[125,201,71,-0.7659125023907825],[125,201,72,-0.7655597346961993],[125,201,73,-0.7652093415529739],[125,201,74,-0.7648613286187085],[125,201,75,-0.7645157014575602],[125,201,76,-0.7641724655398083],[125,201,77,-0.7638316262414229],[125,201,78,-0.7634931888436371],[125,201,79,-0.7631571585325149],[125,202,64,-0.7686100168795856],[125,202,65,-0.768240604684101],[125,202,66,-0.7678735239066677],[125,202,67,-0.7675087808488539],[125,202,68,-0.7671463817218538],[125,202,69,-0.7667863326460624],[125,202,70,-0.7664286396506368],[125,202,71,-0.7660733086730598],[125,202,72,-0.7657203455587044],[125,202,73,-0.7653697560604108],[125,202,74,-0.7650215458380372],[125,202,75,-0.7646757204580383],[125,202,76,-0.7643322853930337],[125,202,77,-0.7639912460213761],[125,202,78,-0.7636526076267238],[125,202,79,-0.763316375397608],[125,203,64,-0.7687723004064448],[125,203,65,-0.7684027007236613],[125,203,66,-0.7680354315045186],[125,203,67,-0.7676704990525276],[125,203,68,-0.7673079095808668],[125,203,69,-0.7669476692119568],[125,203,70,-0.7665897839770217],[125,203,71,-0.7662342598156532],[125,203,72,-0.7658811025753753],[125,203,73,-0.7655303180112207],[125,203,74,-0.7651819117852826],[125,203,75,-0.764835889466293],[125,203,76,-0.7644922565291912],[125,203,77,-0.7641510183546918],[125,203,78,-0.763812180228858],[125,203,79,-0.763475747342669],[125,204,64,-0.7689347192641736],[125,204,65,-0.7685649334219551],[125,204,66,-0.7681974770844724],[125,204,67,-0.767832356557157],[125,204,68,-0.767469578055149],[125,204,69,-0.7671091477028731],[125,204,70,-0.7667510715335986],[125,204,71,-0.7663953554890046],[125,204,72,-0.7660420054187445],[125,204,73,-0.7656910270800225],[125,204,74,-0.7653424261371456],[125,204,75,-0.7649962081611027],[125,204,76,-0.7646523786291317],[125,204,77,-0.7643109429242894],[125,204,78,-0.7639719063350235],[125,204,79,-0.7636352740547413],[125,205,64,-0.7690972731072433],[125,205,65,-0.7687273024355659],[125,205,66,-0.7683596603052205],[125,205,67,-0.7679943530235368],[125,205,68,-0.7676313868075951],[125,205,69,-0.7672707677838015],[125,205,70,-0.7669125019874489],[125,205,71,-0.7665565953622823],[125,205,72,-0.7662030537600628],[125,205,73,-0.7658518829401455],[125,205,74,-0.76550308856903],[125,205,75,-0.7651566762199409],[125,205,76,-0.7648126513723945],[125,205,77,-0.7644710194117692],[125,205,78,-0.7641317856288773],[125,205,79,-0.7637949552195336],[125,206,64,-0.7692599615889336],[125,206,65,-0.7688898074198766],[125,206,66,-0.7685219808242455],[125,206,67,-0.7681564881112457],[125,206,68,-0.7677933354998749],[125,206,69,-0.7674325291184994],[125,206,70,-0.7670740750044133],[125,206,71,-0.766717979103406],[125,206,72,-0.7663642472693253],[125,206,73,-0.7660128852636553],[125,206,74,-0.7656638987550677],[125,206,75,-0.7653172933190014],[125,206,76,-0.7649730744372314],[125,206,77,-0.7646312474974363],[125,206,78,-0.764291817792773],[125,206,79,-0.7639547905214443],[125,207,64,-0.7694227843613012],[125,207,65,-0.7690524480290395],[125,207,66,-0.768684438297791],[125,207,67,-0.7683187614786146],[125,207,68,-0.7679554237924032],[125,207,69,-0.7675944313694604],[125,207,70,-0.7672357902490609],[125,207,71,-0.7668795063790163],[125,207,72,-0.7665255856152393],[125,207,73,-0.7661740337213222],[125,207,74,-0.7658248563680874],[125,207,75,-0.7654780591331678],[125,207,76,-0.7651336475005754],[125,207,77,-0.7647916268602696],[125,207,78,-0.7644520025077314],[125,207,79,-0.764114779643531],[125,208,64,-0.7695857410752417],[125,208,65,-0.7692152239160374],[125,208,66,-0.7688470323809233],[125,208,67,-0.7684811727827889],[125,208,68,-0.7681176513444007],[125,208,69,-0.7677564741979773],[125,208,70,-0.7673976473847517],[125,208,71,-0.7670411768545362],[125,208,72,-0.7666870684652873],[125,208,73,-0.7663353279826837],[125,208,74,-0.7659859610796773],[125,208,75,-0.7656389733360748],[125,208,76,-0.7652943702381041],[125,208,77,-0.7649521571779847],[125,208,78,-0.7646123394535015],[125,208,79,-0.7642749222675724],[125,209,64,-0.7697488313804685],[125,209,65,-0.7693781347326628],[125,209,66,-0.7690097627275101],[125,209,67,-0.7686437216797078],[125,209,68,-0.7682800178138736],[125,209,69,-0.7679186572641195],[125,209,70,-0.7675596460736144],[125,209,71,-0.76720299019415],[125,209,72,-0.7668486954857044],[125,209,73,-0.766496767716022],[125,209,74,-0.7661472125601634],[125,209,75,-0.7658000356000869],[125,209,76,-0.7654552423242164],[125,209,77,-0.7651128381270111],[125,209,78,-0.7647728283085392],[125,209,79,-0.7644352180740464],[125,210,64,-0.7699120549254912],[125,210,65,-0.769541180129496],[125,210,66,-0.7691726289901983],[125,210,67,-0.7688064078240816],[125,210,68,-0.7684425228575915],[125,210,69,-0.7680809802267119],[125,210,70,-0.7677217859765254],[125,210,71,-0.767364946060781],[125,210,72,-0.7670104663414579],[125,210,73,-0.7666583525883437],[125,210,74,-0.7663086104785869],[125,210,75,-0.7659612455962767],[125,210,76,-0.7656162634320121],[125,210,77,-0.7652736693824712],[125,210,78,-0.7649334687499854],[125,210,79,-0.7645956667421075],[125,211,64,-0.7700754113576779],[125,211,65,-0.7697043597559676],[125,211,66,-0.7693356308204774],[125,211,67,-0.7689692308694542],[125,211,68,-0.7686051661311497],[125,211,69,-0.7682434427433966],[125,211,70,-0.7678840667531703],[125,211,71,-0.7675270441161548],[125,211,72,-0.7671723806963082],[125,211,73,-0.7668200822654406],[125,211,74,-0.766470154502767],[125,211,75,-0.7661226029944868],[125,211,76,-0.7657774332333528],[125,211,77,-0.7654346506182418],[125,211,78,-0.7650942604537279],[125,211,79,-0.7647562679496509],[125,212,64,-0.7702389003232237],[125,212,65,-0.7698676732603269],[125,212,66,-0.7694987678686473],[125,212,67,-0.7691321904681725],[125,212,68,-0.7687679472889379],[125,212,69,-0.768406044470603],[125,212,70,-0.7680464880620133],[125,212,71,-0.7676892840207665],[125,212,72,-0.7673344382127782],[125,212,73,-0.7669819564118596],[125,212,74,-0.7666318442992702],[125,212,75,-0.766284107463299],[125,212,76,-0.765938751398832],[125,212,77,-0.7655957815069239],[125,212,78,-0.7652552030943706],[125,212,79,-0.7649170213732795],[125,213,64,-0.7704025214671766],[125,213,65,-0.7700311202896677],[125,213,66,-0.7696620397838441],[125,213,67,-0.7692952862714111],[125,213,68,-0.7689308659841655],[125,213,69,-0.7685687850635713],[125,213,70,-0.7682090495603221],[125,213,71,-0.7678516654339076],[125,213,72,-0.7674966385521789],[125,213,73,-0.7671439746909268],[125,213,74,-0.7667936795334345],[125,213,75,-0.766445758670059],[125,213,76,-0.7661002175977991],[125,213,77,-0.7657570617198661],[125,213,78,-0.7654162963452583],[125,213,79,-0.7650779266883295],[125,214,64,-0.7705662744334054],[125,214,65,-0.7701947004898969],[125,214,66,-0.7698254462140085],[125,214,67,-0.7694585179291411],[125,214,68,-0.7690939218688303],[125,214,69,-0.7687316641763222],[125,214,70,-0.7683717509041369],[125,214,71,-0.7680141880136335],[125,214,72,-0.7676589813745771],[125,214,73,-0.7673061367647167],[125,214,74,-0.7669556598693382],[125,214,75,-0.7666075562808452],[125,214,76,-0.7662618314983282],[125,214,77,-0.765918490927135],[125,214,78,-0.7655775398784451],[125,214,79,-0.765238983568839],[125,215,64,-0.7707301588646636],[125,215,65,-0.7703584135057967],[125,215,66,-0.7699889868059486],[125,215,67,-0.7696218850901928],[125,215,68,-0.769257114593781],[125,215,69,-0.7688946814617196],[125,215,70,-0.768534591748332],[125,215,71,-0.7681768514168259],[125,215,72,-0.7678214663388583],[125,215,73,-0.7674684422941149],[125,215,74,-0.7671177849698626],[125,215,75,-0.766769499960531],[125,215,76,-0.766423592767281],[125,215,77,-0.7660800687975763],[125,215,78,-0.7657389333647571],[125,215,79,-0.76540019168761],[125,216,64,-0.7708941744025656],[125,216,65,-0.770522258981003],[125,216,66,-0.7701526612053178],[125,216,67,-0.7697853874022336],[125,216,68,-0.7694204438086953],[125,216,69,-0.7690578365714476],[125,216,70,-0.7686975717465951],[125,216,71,-0.7683396552991718],[125,216,72,-0.767984093102705],[125,216,73,-0.7676308909387957],[125,216,74,-0.7672800544966701],[125,216,75,-0.7669315893727627],[125,216,76,-0.7665855010702842],[125,216,77,-0.7662417949987931],[125,216,78,-0.7659004764737699],[125,216,79,-0.765561550716187],[125,217,64,-0.771058320687567],[125,217,65,-0.7706862365579839],[125,217,66,-0.7703164690565933],[125,217,67,-0.7699490245117462],[125,217,68,-0.7695839091620584],[125,217,69,-0.7692211291559896],[125,217,70,-0.7688606905514045],[125,217,71,-0.7685025993151408],[125,217,72,-0.7681468613225746],[125,217,73,-0.7677934823571999],[125,217,74,-0.7674424681101819],[125,217,75,-0.7670938241799381],[125,217,76,-0.7667475560717081],[125,217,77,-0.7664036691971244],[125,217,78,-0.7660621688737873],[125,217,79,-0.7657230603248346],[125,218,64,-0.7712225973590254],[125,218,65,-0.7708503458781015],[125,218,66,-0.7704804100031384],[125,218,67,-0.7701127960640911],[125,218,68,-0.7697475103012245],[125,218,69,-0.7693845588646907],[125,218,70,-0.769023947814092],[125,218,71,-0.7686656831180478],[125,218,72,-0.7683097706537613],[125,218,73,-0.7679562162065983],[125,218,74,-0.7676050254696406],[125,218,75,-0.7672562040432683],[125,218,76,-0.7669097574347283],[125,218,77,-0.7665656910577069],[125,218,78,-0.766224010231903],[125,218,79,-0.7658847201825999],[125,219,64,-0.7713870040551799],[125,219,65,-0.7710145865815906],[125,219,66,-0.7706444836871802],[125,219,67,-0.7702767017034851],[125,219,68,-0.769911246872396],[125,219,69,-0.7695481253457354],[125,219,70,-0.7691873431848206],[125,219,71,-0.7688289063600313],[125,219,72,-0.7684728207503752],[125,219,73,-0.7681190921430684],[125,219,74,-0.7677677262330884],[125,219,75,-0.7674187286227558],[125,219,76,-0.7670721048213047],[125,219,77,-0.7667278602444532],[125,219,78,-0.7663860002139793],[125,219,79,-0.7660465299572903],[125,220,64,-0.7715515404131283],[125,220,65,-0.7711789583075369],[125,220,66,-0.7708086897497888],[125,220,67,-0.7704407410729788],[125,220,68,-0.770075118520601],[125,220,69,-0.7697118282461257],[125,220,70,-0.7693508763125634],[125,220,71,-0.7689922686920309],[125,220,72,-0.7686360112653194],[125,220,73,-0.7682821098214736],[125,220,74,-0.7679305700573447],[125,220,75,-0.767581397577173],[125,220,76,-0.7672345978921582],[125,220,77,-0.7668901764200299],[125,220,78,-0.7665481384846239],[125,220,79,-0.7662084893154516],[125,221,64,-0.77171620606889],[125,221,65,-0.7713434606939389],[125,221,66,-0.7709730278309384],[125,221,67,-0.7706049138145192],[125,221,68,-0.7702391248897559],[125,221,69,-0.7698756672117442],[125,221,70,-0.7695145468451646],[125,221,71,-0.7691557697638502],[125,221,72,-0.7687993418503533],[125,221,73,-0.7684452688955248],[125,221,74,-0.7680935565980688],[125,221,75,-0.7677442105641239],[125,221,76,-0.767397236306834],[125,221,77,-0.7670526392459197],[125,221,78,-0.7667104247072535],[125,221,79,-0.7663705979224307],[125,222,64,-0.7718810006573747],[125,222,65,-0.7715080933776771],[125,222,66,-0.7711374975694775],[125,222,67,-0.7707692195689191],[125,222,68,-0.7704032656226343],[125,222,69,-0.7700396418873217],[125,222,70,-0.7696783544293099],[125,222,71,-0.7693194092241256],[125,222,72,-0.76896281215606],[125,222,73,-0.7686085690177495],[125,222,74,-0.7682566855097286],[125,222,75,-0.7679071672400132],[125,222,76,-0.7675600197236703],[125,222,77,-0.7672152483823902],[125,222,78,-0.7668728585440618],[125,222,79,-0.7665328554423434],[125,223,64,-0.7720459238124074],[125,223,65,-0.7716728559945392],[125,223,66,-0.7713020986031526],[125,223,67,-0.770933657975881],[125,223,68,-0.7705675403608914],[125,223,69,-0.770203751916463],[125,223,70,-0.7698422987105499],[125,223,71,-0.7694831867203503],[125,223,72,-0.7691264218318727],[125,223,73,-0.7687720098395163],[125,223,74,-0.7684199564456252],[125,223,75,-0.7680702672600709],[125,223,76,-0.7677229477998223],[125,223,77,-0.7673780034885186],[125,223,78,-0.7670354396560441],[125,223,79,-0.7666952615380997],[125,224,64,-0.7722109751666972],[125,224,65,-0.771837748179188],[125,224,66,-0.7714668305685777],[125,224,67,-0.7710982286739663],[125,224,68,-0.7707319487450334],[125,224,69,-0.7703679969416153],[125,224,70,-0.7700063793332699],[125,224,71,-0.7696471018988442],[125,224,72,-0.7692901705260421],[125,224,73,-0.768935591011004],[125,224,74,-0.7685833690578616],[125,224,75,-0.7682335102783209],[125,224,76,-0.7678860201912315],[125,224,77,-0.7675409042221603],[125,224,78,-0.7671981677029663],[125,224,79,-0.7668578158713725],[125,225,64,-0.7723761543518999],[125,225,65,-0.7720027695652248],[125,225,66,-0.7716316931012964],[125,225,67,-0.7712629313006583],[125,225,68,-0.7708964904144793],[125,225,69,-0.7705323766041308],[125,225,70,-0.7701705959407514],[125,225,71,-0.7698111544048152],[125,225,72,-0.7694540578856992],[125,225,73,-0.7690993121812633],[125,225,74,-0.7687469229974053],[125,225,75,-0.7683968959476436],[125,225,76,-0.7680492365526879],[125,225,77,-0.7677039502400113],[125,225,78,-0.767361042343427],[125,225,79,-0.767020518102659],[125,226,64,-0.772541460998595],[125,226,65,-0.7721679197851669],[125,226,66,-0.77179668583576],[125,226,67,-0.771427765492339],[125,226,68,-0.7710611650075391],[125,226,69,-0.770696890544244],[125,226,70,-0.7703349481751507],[125,226,71,-0.769975343882338],[125,226,72,-0.7696180835568338],[125,226,73,-0.7692631729981956],[125,226,74,-0.7689106179140657],[125,226,75,-0.7685604239197537],[125,226,76,-0.7682125965378074],[125,226,77,-0.7678671411975859],[125,226,78,-0.7675240632348354],[125,226,79,-0.7671833678912603],[125,227,64,-0.772706894736266],[125,227,65,-0.7723331984704257],[125,227,66,-0.7719618084053058],[125,227,67,-0.7715927308842685],[125,227,68,-0.7712259721613922],[125,227,69,-0.7708615384010508],[125,227,70,-0.7704994356774768],[125,227,71,-0.7701396699743315],[125,227,72,-0.7697822471842716],[125,227,73,-0.7694271731085303],[125,227,74,-0.7690744534564726],[125,227,75,-0.7687240938451777],[125,227,76,-0.7683760997990106],[125,227,77,-0.7680304767491949],[125,227,78,-0.7676872300333888],[125,227,79,-0.7673463648952568],[125,228,64,-0.7728724551933603],[125,228,65,-0.7724986052513695],[125,228,66,-0.7721270604422191],[125,228,67,-0.7717578271106461],[125,228,68,-0.7713909115121497],[125,228,69,-0.7710263198125701],[125,228,70,-0.7706640580876537],[125,228,71,-0.7703041323226215],[125,228,72,-0.7699465484117372],[125,228,73,-0.7695913121578873],[125,228,74,-0.7692384292721383],[125,228,75,-0.768887905373317],[125,228,76,-0.7685397459875847],[125,228,77,-0.7681939565480077],[125,228,78,-0.767850542394136],[125,228,79,-0.767509508771573],[125,229,64,-0.7730381419972601],[125,229,65,-0.7726641397572915],[125,229,66,-0.7722924415777022],[125,229,67,-0.7719230538045802],[125,229,68,-0.7715559826948221],[125,229,69,-0.7711912344157127],[125,229,70,-0.7708288150444889],[125,229,71,-0.7704687305679092],[125,229,72,-0.7701109868818221],[125,229,73,-0.769755589790746],[125,229,74,-0.769402545007426],[125,229,75,-0.769051858152416],[125,229,76,-0.7687035347536513],[125,229,77,-0.768357580246021],[125,229,78,-0.7680139999709445],[125,229,79,-0.7676727991759443],[125,230,64,-0.7732039547743054],[125,230,65,-0.7728298016164357],[125,230,66,-0.7724579514418992],[125,230,67,-0.7720884105981121],[125,230,68,-0.7717211853433457],[125,230,69,-0.7713562818463061],[125,230,70,-0.7709937061856984],[125,230,71,-0.7706334643497963],[125,230,72,-0.7702755622360105],[125,230,73,-0.7699200056504694],[125,230,74,-0.7695668003075751],[125,230,75,-0.769215951829587],[125,230,76,-0.768867465746193],[125,230,77,-0.7685213474940833],[125,230,78,-0.7681776024165264],[125,230,79,-0.7678362357629428],[125,231,64,-0.7733698931497641],[125,231,65,-0.7729955904559644],[125,231,66,-0.7726235896638646],[125,231,67,-0.7722538971221853],[125,231,68,-0.7718865190905501],[125,231,69,-0.7715214617390631],[125,231,70,-0.7711587311478751],[125,231,71,-0.7707983333067527],[125,231,72,-0.7704402741146466],[125,231,73,-0.7700845593792729],[125,231,74,-0.7697311948166694],[125,231,75,-0.7693801860507785],[125,231,76,-0.7690315386130198],[125,231,77,-0.7686852579418633],[125,231,78,-0.7683413493824058],[125,231,79,-0.7679998181859448],[125,232,64,-0.7735359567478941],[125,232,65,-0.7731615059020218],[125,232,66,-0.7727893558716256],[125,232,67,-0.772419513006708],[125,232,68,-0.7720519835682209],[125,232,69,-0.7716867737276445],[125,232,70,-0.771323889566552],[125,232,71,-0.7709633370761804],[125,232,72,-0.7706051221569982],[125,232,73,-0.7702492506182873],[125,232,74,-0.769895728177699],[125,232,75,-0.7695445604608377],[125,232,76,-0.7691957530008329],[125,232,77,-0.7688493112379129],[125,232,78,-0.7685052405189822],[125,232,79,-0.7681635460971936],[125,233,64,-0.7737021451919208],[125,233,65,-0.7733275475797109],[125,233,66,-0.7729552496921603],[125,233,67,-0.7725852578805303],[125,233,68,-0.772217578407078],[125,233,69,-0.7718522174446362],[125,233,70,-0.7714891810761784],[125,233,71,-0.7711284752943894],[125,233,72,-0.7707701060012334],[125,233,73,-0.7704140790075357],[125,233,74,-0.7700604000325394],[125,233,75,-0.7697090747034887],[125,233,76,-0.7693601085552019],[125,233,77,-0.7690135070296445],[125,233,78,-0.7686692754755071],[125,233,79,-0.7683274191477777],[125,234,64,-0.7738684581040152],[125,234,65,-0.7734937151130722],[125,234,66,-0.773121270751376],[125,234,67,-0.7727511313714232],[125,234,68,-0.772383303236753],[125,234,69,-0.7720177925215281],[125,234,70,-0.7716546053100998],[125,234,71,-0.7712937475965778],[125,234,72,-0.7709352252843995],[125,234,73,-0.7705790441859119],[125,234,74,-0.7702252100219277],[125,234,75,-0.7698737284213095],[125,234,76,-0.7695246049205428],[125,234,77,-0.7691778449633087],[125,234,78,-0.7688334539000629],[125,234,79,-0.7684914369876077],[125,235,64,-0.7740348951053572],[125,235,65,-0.7736600081251458],[125,235,66,-0.7732874186741706],[125,235,67,-0.7729171331061396],[125,235,68,-0.7725491576858516],[125,235,69,-0.7721834985887761],[125,235,70,-0.7718201619006188],[125,235,71,-0.7714591536168922],[125,235,72,-0.7711004796424848],[125,235,73,-0.7707441457912427],[125,235,74,-0.7703901577855264],[125,235,75,-0.7700385212557953],[125,235,76,-0.76968924174018],[125,235,77,-0.7693423246840565],[125,235,78,-0.7689977754396244],[125,235,79,-0.7686555992654792],[125,236,64,-0.7742014558161029],[125,236,65,-0.7738264262379402],[125,236,66,-0.7734536930844019],[125,236,67,-0.7730832627103845],[125,236,68,-0.7727151413819229],[125,236,69,-0.7723493352757702],[125,236,70,-0.7719858504789643],[125,236,71,-0.7716246929883976],[125,236,72,-0.7712658687103873],[125,236,73,-0.7709093834602563],[125,236,74,-0.7705552429618914],[125,236,75,-0.7702034528473262],[125,236,76,-0.7698540186563156],[125,236,77,-0.7695069458359088],[125,236,78,-0.7691622397400281],[125,236,79,-0.7688199056290411],[125,237,64,-0.7743681398554103],[125,237,65,-0.7739929690724567],[125,237,66,-0.7736200936049125],[125,237,67,-0.7732495198088387],[125,237,68,-0.7728812539514833],[125,237,69,-0.7725153022108601],[125,237,70,-0.7721516706753161],[125,237,71,-0.7717903653431015],[125,237,72,-0.7714313921219392],[125,237,73,-0.7710747568286073],[125,237,74,-0.770720465188496],[125,237,75,-0.7703685228351924],[125,237,76,-0.7700189353100533],[125,237,77,-0.7696717080617799],[125,237,78,-0.7693268464459957],[125,237,79,-0.7689843557248204],[125,238,64,-0.774534946841408],[125,238,65,-0.774159636248659],[125,238,66,-0.773786619857498],[125,238,67,-0.7734159040251276],[125,238,68,-0.7730474950199854],[125,238,69,-0.7726813990213229],[125,238,70,-0.7723176221187738],[125,238,71,-0.7719561703119224],[125,238,72,-0.7715970495098758],[125,238,73,-0.7712402655308445],[125,238,74,-0.7708858241017005],[125,238,75,-0.7705337308575622],[125,238,76,-0.7701839913413667],[125,238,77,-0.7698366110034459],[125,238,78,-0.7694915952011037],[125,238,79,-0.7691489491981898],[125,239,64,-0.7747018763912568],[125,239,65,-0.7743264273855341],[125,239,66,-0.7739532714629695],[125,239,67,-0.7735824149818838],[125,239,68,-0.7732138642118805],[125,239,69,-0.7728476253334265],[125,239,70,-0.7724837044374181],[125,239,71,-0.7721221075247524],[125,239,72,-0.7717628405058974],[125,239,73,-0.7714059092004739],[125,239,74,-0.7710513193368138],[125,239,75,-0.7706990765515445],[125,239,76,-0.7703491863891625],[125,239,77,-0.7700016543016082],[125,239,78,-0.7696564856478445],[125,239,79,-0.769313685693431],[125,240,64,-0.7748689281211283],[125,240,65,-0.7744933421010715],[125,240,66,-0.7741200480411318],[125,240,67,-0.7737490523007245],[125,240,68,-0.7733803611505966],[125,240,69,-0.7730139807724061],[125,240,70,-0.77264991725829],[125,240,71,-0.772288176610435],[125,240,72,-0.7719287647406475],[125,240,73,-0.7715716874699365],[125,240,74,-0.7712169505280716],[125,240,75,-0.7708645595531672],[125,240,76,-0.7705145200912574],[125,240,77,-0.77016683759587],[125,240,78,-0.7698215174276057],[125,240,79,-0.7694785648537121],[125,241,64,-0.7750361016461826],[125,241,65,-0.7746603800122402],[125,241,66,-0.7742869492107606],[125,241,67,-0.7739158156022302],[125,241,68,-0.7735469854585153],[125,241,69,-0.7731804649624431],[125,241,70,-0.7728162602073676],[125,241,71,-0.7724543771967426],[125,241,72,-0.7720948218436903],[125,241,73,-0.7717375999705857],[125,241,74,-0.7713827173086134],[125,241,75,-0.7710301794973538],[125,241,76,-0.7706799920843562],[125,241,77,-0.7703321605247145],[125,241,78,-0.7699866901806458],[125,241,79,-0.7696435863210649],[125,242,64,-0.7752033965806309],[125,242,65,-0.7748275407350518],[125,242,66,-0.7744539745896656],[125,242,67,-0.7740827045060059],[125,242,68,-0.7737137367570357],[125,242,69,-0.7733470775267272],[125,242,70,-0.7729827329096292],[125,242,71,-0.7726207089104391],[125,242,72,-0.7722610114435732],[125,242,73,-0.7719036463327493],[125,242,74,-0.771548619310546],[125,242,75,-0.7711959360179864],[125,242,76,-0.7708456020041141],[125,242,77,-0.7704976227255674],[125,242,78,-0.7701520035461583],[125,242,79,-0.7698087497364476],[125,243,64,-0.7753708125377032],[125,243,65,-0.7749948238845286],[125,243,66,-0.7746211237946585],[125,243,67,-0.774249718630651],[125,243,68,-0.7738806146665415],[125,243,69,-0.7735138180874246],[125,243,70,-0.7731493349890207],[125,243,71,-0.7727871713772486],[125,243,72,-0.7724273331677951],[125,243,73,-0.7720698261856994],[125,243,74,-0.7717146561649108],[125,243,75,-0.7713618287478743],[125,243,76,-0.7710113494851053],[125,243,77,-0.7706632238347648],[125,243,78,-0.7703174571622389],[125,243,79,-0.7699740547397129],[125,244,64,-0.7755383491296746],[125,244,65,-0.7751622290747283],[125,244,66,-0.7747883964415783],[125,244,67,-0.7744168575937825],[125,244,68,-0.7740476188064263],[125,244,69,-0.773680686265703],[125,244,70,-0.7733160660684817],[125,244,71,-0.7729537642218793],[125,244,72,-0.7725937866428314],[125,244,73,-0.7722361391576753],[125,244,74,-0.7718808275017093],[125,244,75,-0.771527857318778],[125,244,76,-0.771177234160847],[125,244,77,-0.7708289634875786],[125,244,78,-0.7704830506659108],[125,244,79,-0.7701395009696332],[125,245,64,-0.7757060059678321],[125,245,65,-0.7753297559187129],[125,245,66,-0.7749557921452588],[125,245,67,-0.7745841210120048],[125,245,68,-0.7742147487950621],[125,245,69,-0.7738476816816999],[125,245,70,-0.7734829257699126],[125,245,71,-0.7731204870679929],[125,245,72,-0.7727603714941016],[125,245,73,-0.7724025848758527],[125,245,74,-0.7720471329498708],[125,245,75,-0.771694021361378],[125,245,76,-0.7713432556637682],[125,245,77,-0.7709948413181832],[125,245,78,-0.7706487836930924],[125,245,79,-0.7703050880638674],[125,246,64,-0.7758737826625384],[125,246,65,-0.7754974040286107],[125,246,66,-0.7751233105195924],[125,246,67,-0.7747515085009714],[125,246,68,-0.7743820042498618],[125,246,69,-0.774014803954585],[125,246,70,-0.773649913714238],[125,246,71,-0.773287339538266],[125,246,72,-0.772927087346033],[125,246,73,-0.7725691629664062],[125,246,74,-0.772213572137315],[125,246,75,-0.7718603205053367],[125,246,76,-0.7715094136252719],[125,246,77,-0.7711608569597201],[125,246,78,-0.7708146558786602],[125,246,79,-0.7704708156590252],[125,247,64,-0.7760416788232086],[125,247,65,-0.775665173015594],[125,247,66,-0.7752909511775063],[125,247,67,-0.7749190196753628],[125,247,68,-0.7745493847872564],[125,247,69,-0.774182052702538],[125,247,70,-0.7738170295213838],[125,247,71,-0.7734543212543685],[125,247,72,-0.7730939338220368],[125,247,73,-0.772735873054487],[125,247,74,-0.7723801446909302],[125,247,75,-0.7720267543792771],[125,247,76,-0.771675707675713],[125,247,77,-0.7713270100442738],[125,247,78,-0.7709806668564262],[125,247,79,-0.7706366833906431],[125,248,64,-0.776209694058289],[125,248,65,-0.7758330624898576],[125,248,66,-0.7754587137309417],[125,248,67,-0.775086654148864],[125,248,68,-0.7747168900226734],[125,248,69,-0.7743494275427262],[125,248,70,-0.773984272810255],[125,248,71,-0.7736214318369413],[125,248,72,-0.7732609105444873],[125,248,73,-0.7729027147641997],[125,248,74,-0.7725468502365497],[125,248,75,-0.772193322610759],[125,248,76,-0.7718421374443756],[125,248,77,-0.7714933002028498],[125,248,78,-0.771146816259115],[125,248,79,-0.7708026908931626],[125,249,64,-0.7763778279753186],[125,249,65,-0.7760010720606804],[125,249,66,-0.7756265977909151],[125,249,67,-0.7752544115342276],[125,249,68,-0.7748845195705986],[125,249,69,-0.7745169280913669],[125,249,70,-0.7741516431987983],[125,249,71,-0.773788670905658],[125,249,72,-0.7734280171347829],[125,249,73,-0.7730696877186658],[125,249,74,-0.7727136883990154],[125,249,75,-0.7723600248263423],[125,249,76,-0.7720087025595352],[125,249,77,-0.7716597270654373],[125,249,78,-0.7713131037184268],[125,249,79,-0.7709688377999926],[125,250,64,-0.7765460801809075],[125,250,65,-0.7761692013364034],[125,250,66,-0.7757946029674968],[125,250,67,-0.7754222914432507],[125,250,68,-0.7750522730445544],[125,250,69,-0.7746845539637055],[125,250,70,-0.7743191403039797],[125,250,71,-0.7739560380792032],[125,250,72,-0.7735952532133249],[125,250,73,-0.773236791540001],[125,250,74,-0.7728806588021551],[125,250,75,-0.7725268606515646],[125,250,76,-0.7721754026484371],[125,250,77,-0.7718262902609868],[125,250,78,-0.7714795288650153],[125,250,79,-0.7711351237434874],[125,251,64,-0.7767144502807148],[125,251,65,-0.7763374499244079],[125,251,66,-0.7759627288697885],[125,251,67,-0.7755902934867533],[125,251,68,-0.7752201500570769],[125,251,69,-0.7748523047739925],[125,251,70,-0.7744867637417623],[125,251,71,-0.7741235329752502],[125,251,72,-0.7737626183994945],[125,251,73,-0.7734040258492922],[125,251,74,-0.7730477610687594],[125,251,75,-0.7726938297109182],[125,251,76,-0.7723422373372729],[125,251,77,-0.7719929894173869],[125,251,78,-0.7716460913284637],[125,251,79,-0.7713015483549226],[125,252,64,-0.7768829378795101],[125,252,65,-0.7765058174311774],[125,252,66,-0.776130975105985],[125,252,67,-0.7757584172746405],[125,252,68,-0.775388150219779],[125,252,69,-0.7750201801355463],[125,252,70,-0.774654513127168],[125,252,71,-0.7742911552105229],[125,252,72,-0.7739301123117155],[125,252,73,-0.7735713902666608],[125,252,74,-0.7732149948206452],[125,252,75,-0.7728609316279131],[125,252,76,-0.7725092062512439],[125,252,77,-0.772159824161528],[125,252,78,-0.771812790737349],[125,252,79,-0.7714681112645598],[125,253,64,-0.7770515425811428],[125,253,65,-0.7766743034622661],[125,253,66,-0.7762993412833439],[125,253,67,-0.7759266624158702],[125,253,68,-0.7755562731433181],[125,253,69,-0.7751881796607218],[125,253,70,-0.7748223880742472],[125,253,71,-0.7744589044007646],[125,253,72,-0.7740977345674221],[125,253,73,-0.7737388844112303],[125,253,74,-0.7733823596786231],[125,253,75,-0.7730281660250452],[125,253,76,-0.7726763090145283],[125,253,77,-0.7723267941192687],[125,253,78,-0.7719796267192087],[125,253,79,-0.7716348121016127],[125,254,64,-0.7772202639885665],[125,254,65,-0.7768429076223234],[125,254,66,-0.7764678270082086],[125,254,67,-0.7760950285184789],[125,254,68,-0.7757245184374209],[125,254,69,-0.7753563029609345],[125,254,70,-0.7749903881961019],[125,254,71,-0.7746267801607623],[125,254,72,-0.7742654847830842],[125,254,73,-0.7739065079011512],[125,254,74,-0.7735498552625224],[125,254,75,-0.7731955325238202],[125,254,76,-0.7728435452503071],[125,254,77,-0.7724938989154627],[125,254,78,-0.7721465989005664],[125,254,79,-0.7718016504942727],[125,255,64,-0.777389101703807],[125,255,65,-0.7770116295150628],[125,255,66,-0.7766364318859783],[125,255,67,-0.7762635151895492],[125,255,68,-0.7758928857108521],[125,255,69,-0.7755245496466286],[125,255,70,-0.7751585131048547],[125,255,71,-0.7747947821043147],[125,255,72,-0.774433362574175],[125,255,73,-0.7740742603535693],[125,255,74,-0.7737174811911591],[125,255,75,-0.7733630307447225],[125,255,76,-0.7730109145807303],[125,255,77,-0.7726611381739243],[125,255,78,-0.7723137069068986],[125,255,79,-0.771968626069677],[125,256,64,-0.7775580553280252],[125,256,65,-0.7771804687433236],[125,256,66,-0.776805155521169],[125,256,67,-0.7764321220352721],[125,256,68,-0.7760613745714761],[125,256,69,-0.7756929193273404],[125,256,70,-0.7753267624117113],[125,256,71,-0.7749629098442954],[125,256,72,-0.7746013675552339],[125,256,73,-0.7742421413846875],[125,256,74,-0.7738852370823983],[125,256,75,-0.7735306603072771],[125,256,76,-0.7731784166269815],[125,256,77,-0.7728285115174929],[125,256,78,-0.7724809503626987],[125,256,79,-0.7721357384539701],[125,257,64,-0.7777271244614948],[125,257,65,-0.7773494249090491],[125,257,66,-0.7769739975173923],[125,257,67,-0.7766008486609257],[125,257,68,-0.7762299846262353],[125,257,69,-0.775861411611675],[125,257,70,-0.7754951357269378],[125,257,71,-0.7751311629926297],[125,257,72,-0.7747694993398434],[125,257,73,-0.7744101506097443],[125,257,74,-0.7740531225531319],[125,257,75,-0.7736984208300278],[125,257,76,-0.7733460510092539],[125,257,77,-0.7729960185680093],[125,257,78,-0.7726483288914533],[125,257,79,-0.7723029872722829],[125,258,64,-0.7778963087035794],[125,258,65,-0.777518497613264],[125,258,66,-0.7771429574773319],[125,258,67,-0.7767696946708513],[125,258,68,-0.776398715481127],[125,258,69,-0.776030026107284],[125,258,70,-0.7756636326598385],[125,258,71,-0.7752995411602726],[125,258,72,-0.7749377575406073],[125,258,73,-0.7745782876429902],[125,258,74,-0.7742211372192556],[125,258,75,-0.7738663119305136],[125,258,76,-0.7735138173467279],[125,258,77,-0.7731636589462935],[125,258,78,-0.7728158421156198],[125,258,79,-0.772470372148708],[125,259,64,-0.7780656076527953],[125,259,65,-0.7776876864561367],[125,259,66,-0.777312035002807],[125,259,67,-0.776938659668517],[125,259,68,-0.7765675667412667],[125,259,69,-0.7761987624209283],[125,259,70,-0.775832252818818],[125,259,71,-0.7754680439572705],[125,259,72,-0.7751061417692129],[125,259,73,-0.7747465520977512],[125,259,74,-0.7743892806957322],[125,259,75,-0.7740343332253321],[125,259,76,-0.7736817152576342],[125,259,77,-0.7733314322722075],[125,259,78,-0.7729834896566895],[125,259,79,-0.772637892706364],[125,260,64,-0.7782350209067799],[125,260,65,-0.7778569910369479],[125,260,66,-0.7774812296947398],[125,260,67,-0.7771077432564852],[125,260,68,-0.7767365380108553],[125,260,69,-0.7763676201584458],[125,260,70,-0.7760009958113496],[125,260,71,-0.7756366709927307],[125,260,72,-0.7752746516363989],[125,260,73,-0.774914943586396],[125,260,74,-0.7745575525965588],[125,260,75,-0.774202484330107],[125,260,76,-0.7738497443592213],[125,260,77,-0.7734993381646226],[125,260,78,-0.7731512711351547],[125,260,79,-0.7728055485673623],[125,261,64,-0.7784045480623158],[125,261,65,-0.778026410954115],[125,261,66,-0.7776505411531808],[125,261,67,-0.777276945036438],[125,261,68,-0.7769056288932046],[125,261,69,-0.7765365989247767],[125,261,70,-0.776169861244],[125,261,71,-0.7758054218748447],[125,261,72,-0.77544328675198],[125,261,73,-0.7750834617203614],[125,261,74,-0.7747259525347922],[125,261,75,-0.7743707648595131],[125,261,76,-0.7740179042677803],[125,261,77,-0.7736673762414445],[125,261,78,-0.773319186170534],[125,261,79,-0.7729733393528326],[125,262,64,-0.7785741887153],[125,262,65,-0.7781959458051602],[125,262,66,-0.7778199689772765],[125,262,67,-0.7774462646091441],[125,262,68,-0.7770748389907047],[125,262,69,-0.7767056983239307],[125,262,70,-0.7763388487223969],[125,262,71,-0.7759742962108567],[125,262,72,-0.7756120467248158],[125,262,73,-0.7752521061101195],[125,262,74,-0.7748944801225157],[125,262,75,-0.7745391744272437],[125,262,76,-0.7741861945986128],[125,262,77,-0.7738355461195809],[125,262,78,-0.7734872343813394],[125,262,79,-0.7731412646828895],[125,263,64,-0.7787439424608052],[125,263,65,-0.7783655951867731],[125,263,66,-0.7779895127653317],[125,263,67,-0.7776157015745228],[125,263,68,-0.7772441679048872],[125,263,69,-0.77687491795905],[125,263,70,-0.7765079578512922],[125,263,71,-0.7761432936071264],[125,263,72,-0.7757809311628716],[125,263,73,-0.7754208763652408],[125,263,74,-0.7750631349709032],[125,263,75,-0.774707712646074],[125,263,76,-0.7743546149660931],[125,263,77,-0.7740038474150046],[125,263,78,-0.7736554153851398],[125,263,79,-0.7733093241766964],[125,264,64,-0.7789138088930583],[125,264,65,-0.7785353586947885],[125,264,66,-0.7781591721147878],[125,264,67,-0.7777852555316203],[125,264,68,-0.777413615236402],[125,264,69,-0.7770442574323871],[125,264,70,-0.7766771882345389],[125,264,71,-0.7763124136691061],[125,264,72,-0.7759499396731979],[125,264,73,-0.7755897720943715],[125,264,74,-0.7752319166901951],[125,264,75,-0.7748763791278375],[125,264,76,-0.7745231649836466],[125,264,77,-0.77417227974273],[125,264,78,-0.7738237287985378],[125,264,79,-0.7734775174524421],[125,265,64,-0.779083787605417],[125,265,65,-0.7787052359241634],[125,265,66,-0.7783289466221996],[125,265,67,-0.7779549260785876],[125,265,68,-0.7775831805849953],[125,265,69,-0.7772137163452817],[125,265,70,-0.7768465394750687],[125,265,71,-0.776481656001318],[125,265,72,-0.7761190718619059],[125,265,73,-0.7757587929052107],[125,265,74,-0.7754008248896767],[125,265,75,-0.7750451734834035],[125,265,76,-0.7746918442637253],[125,265,77,-0.7743408427167907],[125,265,78,-0.7739921742371466],[125,265,79,-0.7736458441273177],[125,266,64,-0.7792538781904331],[125,266,65,-0.7788752264690397],[125,266,66,-0.7784988358832978],[125,266,67,-0.7781247128127433],[125,266,68,-0.7777528635495717],[125,266,69,-0.777383294298223],[125,266,70,-0.7770160111749546],[125,266,71,-0.7766510202074173],[125,266,72,-0.776288327334231],[125,266,73,-0.7759279384045729],[125,266,74,-0.77556985917774],[125,266,75,-0.7752140953227407],[125,266,76,-0.7748606524178723],[125,266,77,-0.7745095359503025],[125,266,78,-0.7741607513156534],[125,266,79,-0.7738143038175802],[125,267,64,-0.7794240802398206],[125,267,65,-0.7790453299227127],[125,267,66,-0.7786688394929576],[125,267,67,-0.7782946153305412],[125,267,68,-0.7779226637281624],[125,267,69,-0.7775529908908185],[125,267,70,-0.7771856029353785],[125,267,71,-0.7768205058901592],[125,267,72,-0.7764577056945009],[125,267,73,-0.776097208198356],[125,267,74,-0.7757390191618523],[125,267,75,-0.7753831442548834],[125,267,76,-0.7750295890566881],[125,267,77,-0.7746783590554309],[125,267,78,-0.7743294596477865],[125,267,79,-0.7739828961385193],[125,268,64,-0.7795943933444794],[125,268,65,-0.7792155458776546],[125,268,66,-0.7788389570452228],[125,268,67,-0.7784646332275951],[125,268,68,-0.77809258071795],[125,268,69,-0.7777228057218182],[125,268,70,-0.7773553143566566],[125,268,71,-0.7769901126514245],[125,268,72,-0.7766272065461597],[125,268,73,-0.7762666018915665],[125,268,74,-0.7759083044485803],[125,268,75,-0.7755523198879577],[125,268,76,-0.7751986537898564],[125,268,77,-0.7748473116434155],[125,268,78,-0.7744982988463404],[125,268,79,-0.7741516207044825],[125,269,64,-0.7797648170944647],[125,269,65,-0.7793858739254841],[125,269,66,-0.7790091881332739],[125,269,67,-0.7786347660986466],[125,269,68,-0.7782626141152358],[125,269,69,-0.7778927383890821],[125,269,70,-0.7775251450382064],[125,269,71,-0.777159840092187],[125,269,72,-0.7767968294917356],[125,269,73,-0.7764361190882858],[125,269,74,-0.7760777146435576],[125,269,75,-0.7757216218291481],[125,269,76,-0.775367846226111],[125,269,77,-0.7750163933245378],[125,269,78,-0.7746672685231427],[125,269,79,-0.7743204771288424],[125,270,64,-0.7799353510790482],[125,270,65,-0.7795563136570276],[125,270,66,-0.779179532349491],[125,270,67,-0.7788050135376281],[125,270,68,-0.7784327635155035],[125,270,69,-0.7780627884896436],[125,270,70,-0.77769509457861],[125,270,71,-0.7773296878125759],[125,270,72,-0.7769665741329043],[125,270,73,-0.7766057593917344],[125,270,74,-0.7762472493515484],[125,270,75,-0.7758910496847606],[125,270,76,-0.7755371659732986],[125,270,77,-0.7751856037081841],[125,270,78,-0.7748363682891178],[125,270,79,-0.77448946502406],[125,271,64,-0.7801059948866966],[125,271,65,-0.7797268646622971],[125,271,66,-0.7793499892854309],[125,271,67,-0.7789753751376396],[125,271,68,-0.7786030285133955],[125,271,69,-0.7782329556196864],[125,271,70,-0.7778651625755907],[125,271,71,-0.7774996554118538],[125,271,72,-0.7771364400704657],[125,271,73,-0.7767755224042487],[125,271,74,-0.7764169081764237],[125,271,75,-0.7760606030602002],[125,271,76,-0.7757066126383567],[125,271,77,-0.7753549424028228],[125,271,78,-0.7750055977542638],[125,271,79,-0.7746585840016615],[125,272,64,-0.7802767481050483],[125,272,65,-0.7798975265304681],[125,272,66,-0.7795205585318041],[125,272,67,-0.7791458504909267],[125,272,68,-0.7787734087026905],[125,272,69,-0.7784032393745217],[125,272,70,-0.7780353486259912],[125,272,71,-0.777669742488393],[125,272,72,-0.777306426904321],[125,272,73,-0.7769454077272575],[125,272,74,-0.7765866907211391],[125,272,75,-0.7762302815599472],[125,272,76,-0.7758761858272896],[125,272,77,-0.7755244090159807],[125,272,78,-0.7751749565276287],[125,272,79,-0.7748278336722147],[125,273,64,-0.7804476103209763],[125,273,65,-0.780068298849941],[125,273,66,-0.7796912396785384],[125,273,67,-0.7793164391889424],[125,273,68,-0.7789439036763665],[125,273,69,-0.7785736393486506],[125,273,70,-0.7782056523258353],[125,273,71,-0.7778399486397389],[125,273,72,-0.777476534233536],[125,273,73,-0.7771154149613455],[125,273,74,-0.7767565965877969],[125,273,75,-0.7764000847876211],[125,273,76,-0.7760458851452318],[125,273,77,-0.7756940031543067],[125,273,78,-0.7753444442173741],[125,273,79,-0.774997213645393],[125,274,64,-0.7806185811205559],[125,274,65,-0.7802391812083102],[125,274,66,-0.7798620323147455],[125,274,67,-0.7794871408223154],[125,274,68,-0.7791145130265681],[125,274,69,-0.7787441551357331],[125,274,70,-0.7783760732702962],[125,274,71,-0.7780102734625775],[125,274,72,-0.7776467616563081],[125,274,73,-0.7772855437062207],[125,274,74,-0.7769266253776146],[125,274,75,-0.7765700123459471],[125,274,76,-0.7762157101964158],[125,274,77,-0.7758637244235389],[125,274,78,-0.7755140604307427],[125,274,79,-0.775166723529942],[125,275,64,-0.7807896600890896],[125,275,65,-0.7804101731923877],[125,275,66,-0.7800329360287468],[125,275,67,-0.7796579549808752],[125,275,68,-0.7792852363446314],[125,275,69,-0.778914786328611],[125,275,70,-0.7785466110537214],[125,275,71,-0.7781807165527597],[125,275,72,-0.7778171087699912],[125,275,73,-0.7774557935607388],[125,275,74,-0.7770967766909486],[125,275,75,-0.7767400638367816],[125,275,76,-0.7763856605841962],[125,275,77,-0.7760335724285291],[125,275,78,-0.7756838047740825],[125,275,79,-0.7753363629337047],[125,276,64,-0.7809608468110748],[125,276,65,-0.780581274388172],[125,276,66,-0.7802039504080402],[125,276,67,-0.7798288812536187],[125,276,68,-0.7794560732210519],[125,276,69,-0.7790855325192771],[125,276,70,-0.7787172652695993],[125,276,71,-0.7783512775052697],[125,276,72,-0.7779875751710639],[125,276,73,-0.7776261641228716],[125,276,74,-0.7772670501272625],[125,276,75,-0.776910238861079],[125,276,76,-0.7765557359110175],[125,276,77,-0.7762035467732107],[125,276,78,-0.7758536768528141],[125,276,79,-0.7755061314635884],[125,277,64,-0.7811321408702665],[125,277,65,-0.7807524843809098],[125,277,66,-0.780375075039364],[125,277,67,-0.7799999192287743],[125,277,68,-0.7796270232455469],[125,277,69,-0.7792563932989369],[125,277,70,-0.7788880355106231],[125,277,71,-0.7785219559142872],[125,277,72,-0.778158160455191],[125,277,73,-0.7777966549897684],[125,277,74,-0.7774374452851895],[125,277,75,-0.7770805370189552],[125,277,76,-0.7767259357784769],[125,277,77,-0.7763736470606611],[125,277,78,-0.7760236762714948],[125,277,79,-0.7756760287256279],[125,278,64,-0.7813035418496546],[125,278,65,-0.7809238027550738],[125,278,66,-0.7805463095086725],[125,278,67,-0.7801710684937776],[125,278,68,-0.7797980860070328],[125,278,69,-0.7794273682579866],[125,278,70,-0.7790589213686678],[125,278,71,-0.7786927513731646],[125,278,72,-0.7783288642172024],[125,278,73,-0.7779672657577348],[125,278,74,-0.7776079617625102],[125,278,75,-0.7772509579096643],[125,278,76,-0.7768962597873016],[125,278,77,-0.7765438728930794],[125,278,78,-0.776193802633794],[125,278,79,-0.7758460543249629],[125,279,64,-0.7814750493314409],[125,279,65,-0.7810952290943398],[125,279,66,-0.7807176534011148],[125,279,67,-0.78034232863525],[125,279,68,-0.7799692610936021],[125,279,69,-0.7795984569859894],[125,279,70,-0.7792299224347665],[125,279,71,-0.7788636634744042],[125,279,72,-0.7784996860510678],[125,279,73,-0.7781379960222082],[125,279,74,-0.7777785991561281],[125,279,75,-0.7774215011315753],[125,279,76,-0.777066707537325],[125,279,77,-0.7767142238717624],[125,279,78,-0.7763640555424708],[125,279,79,-0.7760162078658134],[125,280,64,-0.7816466628971019],[125,280,65,-0.7812667629816492],[125,280,66,-0.7808891063010964],[125,280,67,-0.7805136992390604],[125,280,68,-0.7801405480925867],[125,280,69,-0.7797696590717389],[125,280,70,-0.7794010382991736],[125,280,71,-0.7790346918097208],[125,280,72,-0.778670625549962],[125,280,73,-0.7783088453778216],[125,280,74,-0.7779493570621339],[125,280,75,-0.7775921662822358],[125,280,76,-0.7772372786275501],[125,280,77,-0.7768846995971681],[125,280,78,-0.7765344345994374],[125,280,79,-0.7761864889515446],[125,281,64,-0.7818183821273571],[125,281,65,-0.7814384039991769],[125,281,66,-0.7810606677922474],[125,281,67,-0.7806851798902934],[125,281,68,-0.7803119465905248],[125,281,69,-0.7799409741032265],[125,281,70,-0.7795722685513331],[125,281,71,-0.7792058359700097],[125,281,72,-0.7788416823062306],[125,281,73,-0.7784798134183707],[125,281,74,-0.7781202350757722],[125,281,75,-0.7777629529583386],[125,281,76,-0.7774079726561173],[125,281,77,-0.7770552996688829],[125,281,78,-0.7767049394057254],[125,281,79,-0.7763568971846327],[125,282,64,-0.7819902066021924],[125,282,65,-0.781610151728356],[125,282,66,-0.781232337457447],[125,282,67,-0.7808567701732737],[125,282,68,-0.7804834561731862],[125,282,69,-0.7801124016676658],[125,282,70,-0.7797436127799018],[125,282,71,-0.7793770955453707],[125,282,72,-0.7790128559114156],[125,282,73,-0.7786508997368384],[125,282,74,-0.7782912327914664],[125,282,75,-0.7779338607557467],[125,282,76,-0.7775787892203281],[125,282,77,-0.7772260236856465],[125,282,78,-0.7768755695615116],[125,282,79,-0.7765274321666904],[125,283,64,-0.7821621359008293],[125,283,65,-0.7817820057498455],[125,283,66,-0.7814041148787914],[125,283,67,-0.7810284696715338],[125,283,68,-0.7806550764255389],[125,283,69,-0.7802839413514606],[125,283,70,-0.7799150705727182],[125,283,71,-0.7795484701250759],[125,283,72,-0.7791841459562223],[125,283,73,-0.7788221039253627],[125,283,74,-0.7784623498027863],[125,283,75,-0.7781048892694604],[125,283,76,-0.7777497279166132],[125,283,77,-0.7773968712453188],[125,283,78,-0.7770463246660841],[125,283,79,-0.7766980934984336],[125,284,64,-0.7823341696017861],[125,284,65,-0.7819539656435923],[125,284,66,-0.7815759996376557],[125,284,67,-0.7812002779678769],[125,284,68,-0.7808268069318133],[125,284,69,-0.7804555927402675],[125,284,70,-0.7800866415168648],[125,284,71,-0.7797199592976329],[125,284,72,-0.7793555520305826],[125,284,73,-0.7789934255752992],[125,284,74,-0.7786335857025104],[125,284,75,-0.7782760380936808],[125,284,76,-0.7779207883405953],[125,284,77,-0.7775678419449431],[125,284,78,-0.7772172043179064],[125,284,79,-0.7768688807797445],[125,285,64,-0.7825063072828564],[125,285,65,-0.78212603098881],[125,285,66,-0.7817479913146722],[125,285,67,-0.7813721946443536],[125,285,68,-0.7809986472754781],[125,285,69,-0.7806273554189727],[125,285,70,-0.7802583251986444],[125,285,71,-0.7798915626507611],[125,285,72,-0.7795270737236317],[125,285,73,-0.7791648642771981],[125,285,74,-0.7788049400826034],[125,285,75,-0.7784473068217865],[125,285,76,-0.7780919700870655],[125,285,77,-0.7777389353807229],[125,285,78,-0.7773882081145935],[125,285,79,-0.7770397936096489],[125,286,64,-0.7826785485210852],[125,286,65,-0.7822982013639539],[125,286,66,-0.7819200894897067],[125,286,67,-0.7815442192822393],[125,286,68,-0.7811705970392178],[125,286,69,-0.7807992289716692],[125,286,70,-0.7804301212035583],[125,286,71,-0.7800632797713692],[125,286,72,-0.7796987106236852],[125,286,73,-0.7793364196207814],[125,286,74,-0.7789764125341928],[125,286,75,-0.7786186950463097],[125,286,76,-0.7782632727499608],[125,286,77,-0.7779101511479987],[125,286,78,-0.7775593356528887],[125,286,79,-0.7772108315862927],[125,287,64,-0.7828508928928323],[125,287,65,-0.782470476346785],[125,287,66,-0.7820922937419214],[125,287,67,-0.7817163514620968],[125,287,68,-0.7813426558049954],[125,287,69,-0.7809712129817197],[125,287,70,-0.7806020291163684],[125,287,71,-0.7802351102456178],[125,287,72,-0.7798704623183018],[125,287,73,-0.7795080911950052],[125,287,74,-0.7791480026476318],[125,287,75,-0.7787902023590001],[125,287,76,-0.7784346959224264],[125,287,77,-0.7780814888413111],[125,287,78,-0.777730586528727],[125,287,79,-0.777381994307004],[125,288,64,-0.7830233399737487],[125,288,65,-0.7826428555143472],[125,288,66,-0.7822646036497518],[125,288,67,-0.7818885907637534],[125,288,68,-0.7815148231540293],[125,288,69,-0.7811433070317335],[125,288,70,-0.7807740485210743],[125,288,71,-0.7804070536588963],[125,288,72,-0.7800423283942602],[125,288,73,-0.7796798785880371],[125,288,74,-0.7793197100124765],[125,288,75,-0.7789618283508013],[125,288,76,-0.7786062391967932],[125,288,77,-0.7782529480543773],[125,288,78,-0.7779019603372115],[125,288,79,-0.7775532813682717],[125,289,64,-0.7831958893387547],[125,289,65,-0.7828153384429437],[125,289,66,-0.7824370187908842],[125,289,67,-0.7820609367662779],[125,289,68,-0.7816870986667707],[125,289,69,-0.7813155107035434],[125,289,70,-0.7809461790008904],[125,289,71,-0.7805791095957998],[125,289,72,-0.7802143084375363],[125,289,73,-0.7798517813872331],[125,289,74,-0.779491534217462],[125,289,75,-0.7791335726118278],[125,289,76,-0.778777902164554],[125,289,77,-0.7784245283800679],[125,289,78,-0.7780734566725902],[125,289,79,-0.7777246923657204],[125,290,64,-0.7833685405621014],[125,290,65,-0.7829879247082001],[125,290,66,-0.7826095387423182],[125,290,67,-0.7822333890480433],[125,290,68,-0.7818594819229657],[125,290,69,-0.781487823578269],[125,290,70,-0.7811184201383081],[125,290,71,-0.7807512776401924],[125,290,72,-0.7803864020333655],[125,290,73,-0.7800237991792001],[125,290,74,-0.7796634748505661],[125,290,75,-0.7793054347314277],[125,290,76,-0.7789496844164269],[125,290,77,-0.7785962294104705],[125,290,78,-0.7782450751283194],[125,290,79,-0.7778962268941743],[125,291,64,-0.7835412932173393],[125,291,65,-0.7831606138850317],[125,291,66,-0.7827821630803338],[125,291,67,-0.7824059471866944],[125,291,68,-0.7820319725016235],[125,291,69,-0.7816602452362826],[125,291,70,-0.7812907715150643],[125,291,71,-0.7809235573751738],[125,291,72,-0.7805586087662109],[125,291,73,-0.7801959315497632],[125,291,74,-0.7798355314989764],[125,291,75,-0.7794774142981499],[125,291,76,-0.7791215855423218],[125,291,77,-0.7787680507368557],[125,291,78,-0.7784168152970301],[125,291,79,-0.7780678845476243],[125,292,64,-0.7837141468773422],[125,292,65,-0.7833334055476682],[125,292,66,-0.7829548913805165],[125,292,67,-0.7825786107591723],[125,292,68,-0.7822045699810404],[125,292,69,-0.7818327752572362],[125,292,70,-0.7814632327121651],[125,292,71,-0.7810959483831048],[125,292,72,-0.7807309282197868],[125,292,73,-0.7803681780839908],[125,292,74,-0.7800077037491144],[125,292,75,-0.7796495108997692],[125,292,76,-0.7792936051313664],[125,292,77,-0.7789399919497032],[125,292,78,-0.7785886767705535],[125,292,79,-0.7782396649192529],[125,293,64,-0.7838871011142751],[125,293,65,-0.7835062992696217],[125,293,66,-0.7831277232177251],[125,293,67,-0.7827513793416819],[125,293,68,-0.7823772739387675],[125,293,69,-0.7820054132200266],[125,293,70,-0.7816358033098534],[125,293,71,-0.7812684502455737],[125,293,72,-0.7809033599770272],[125,293,73,-0.7805405383661617],[125,293,74,-0.7801799911866033],[125,293,75,-0.7798217241232528],[125,293,76,-0.7794657427718714],[125,293,77,-0.7791120526386676],[125,293,78,-0.7787606591398871],[125,293,79,-0.7784115676014001],[125,294,64,-0.7840601554996567],[125,294,65,-0.7836792946237483],[125,294,66,-0.7833006581661532],[125,294,67,-0.7829242525097547],[125,294,68,-0.7825500839516735],[125,294,69,-0.7821781587028597],[125,294,70,-0.7818084828876717],[125,294,71,-0.7814410625434596],[125,294,72,-0.7810759036201474],[125,294,73,-0.7807130119798273],[125,294,74,-0.7803523933963308],[125,294,75,-0.7799940535548241],[125,294,76,-0.7796379980513957],[125,294,77,-0.7792842323926419],[125,294,78,-0.7789327619952588],[125,294,79,-0.7785835921856278],[125,295,64,-0.7842333096043367],[125,295,65,-0.7838523911822264],[125,295,66,-0.7834736957993076],[125,295,67,-0.7830972298382255],[125,295,68,-0.7827229995959216],[125,295,69,-0.7823510112832266],[125,295,70,-0.7819812710244393],[125,295,71,-0.7816137848569096],[125,295,72,-0.7812485587306222],[125,295,73,-0.7808855985077898],[125,295,74,-0.7805249099624256],[125,295,75,-0.7801664987799386],[125,295,76,-0.779810370556721],[125,295,77,-0.7794565307997346],[125,295,78,-0.7791049849261027],[125,295,79,-0.7787557382626958],[125,296,64,-0.7844065629984724],[125,296,65,-0.7840255885165327],[125,296,66,-0.7836468356899844],[125,296,67,-0.7832703109012095],[125,296,68,-0.7828960204469462],[125,296,69,-0.7825239705378811],[125,296,70,-0.7821541672982286],[125,296,71,-0.7817866167653149],[125,296,72,-0.7814213248891612],[125,296,73,-0.7810582975320773],[125,296,74,-0.7806975404682345],[125,296,75,-0.7803390593832611],[125,296,76,-0.7799828598738301],[125,296,77,-0.7796289474472459],[125,296,78,-0.7792773275210362],[125,296,79,-0.7789280054225383],[125,297,64,-0.7845799152515918],[125,297,65,-0.7841988861975051],[125,297,66,-0.7838200774103317],[125,297,67,-0.7834434952721653],[125,297,68,-0.783069146079516],[125,297,69,-0.7826970360429018],[125,297,70,-0.7823271712864284],[125,297,71,-0.7819595578473744],[125,297,72,-0.781594201675773],[125,297,73,-0.781231108634008],[125,297,74,-0.780870284496385],[125,297,75,-0.7805117349487284],[125,297,76,-0.7801554655879689],[125,297,77,-0.7798014819217305],[125,297,78,-0.7794497893679226],[125,297,79,-0.7791003932543272],[125,298,64,-0.7847533659325605],[125,298,65,-0.7843722837953107],[125,298,66,-0.7839934205318173],[125,298,67,-0.7836167825238619],[125,298,68,-0.7832423760677011],[125,298,69,-0.7828702073736596],[125,298,70,-0.7825002825657109],[125,298,71,-0.7821326076810609],[125,298,72,-0.7817671886697317],[125,298,73,-0.7814040313941568],[125,298,74,-0.7810431416287528],[125,298,75,-0.7806845250595167],[125,298,76,-0.780328187283614],[125,298,77,-0.7799741338089653],[125,298,78,-0.7796223700538392],[125,298,79,-0.7792729013464391],[125,299,64,-0.7849269146096067],[125,299,65,-0.7845457808794691],[125,299,66,-0.7841668646252535],[125,299,67,-0.7837901722284034],[125,299,68,-0.7834157099848975],[125,299,69,-0.783043484104843],[125,299,70,-0.7826735007120564],[125,299,71,-0.7823057658436471],[125,299,72,-0.7819402854496018],[125,299,73,-0.78157706539238],[125,299,74,-0.781216111446486],[125,299,75,-0.7808574292980661],[125,299,76,-0.7805010245444971],[125,299,77,-0.7801469026939735],[125,299,78,-0.7797950691651001],[125,299,79,-0.77944552928648],[125,300,64,-0.7851005608502889],[125,300,65,-0.7847193770188218],[125,300,66,-0.784340409260764],[125,300,67,-0.7839636639571963],[125,300,68,-0.7835891474037948],[125,300,69,-0.7832168658104246],[125,300,70,-0.7828468253007204],[125,300,71,-0.7824790319116713],[125,300,72,-0.7821134915932049],[125,300,73,-0.7817502102077827],[125,300,74,-0.7813891935299726],[125,300,75,-0.7810304472460474],[125,300,76,-0.780673976953572],[125,300,77,-0.7803197881609916],[125,300,78,-0.779967886287225],[125,300,79,-0.7796182766612516],[125,301,64,-0.7852743042215578],[125,301,65,-0.7848930717815927],[125,301,66,-0.7845140540078466],[125,301,67,-0.7841372572810122],[125,301,68,-0.7837626878964385],[125,301,69,-0.7833903520637238],[125,301,70,-0.7830202559062968],[125,301,71,-0.7826524054610018],[125,301,72,-0.7822868066776832],[125,301,73,-0.7819234654187809],[125,301,74,-0.7815623874589033],[125,301,75,-0.7812035784844256],[125,301,76,-0.7808470440930777],[125,301,77,-0.780492789793533],[125,301,78,-0.7801408210050009],[125,301,79,-0.7797911430568153],[125,302,64,-0.7854481442897336],[125,302,65,-0.7850668647353665],[125,302,66,-0.7846877984353503],[125,302,67,-0.784310951769965],[125,302,68,-0.7839363310342073],[125,302,69,-0.7835639424373841],[125,302,70,-0.7831937921026939],[125,302,71,-0.7828258860668122],[125,302,72,-0.7824602302794758],[125,302,73,-0.7820968306030792],[125,302,74,-0.7817356928122478],[125,302,75,-0.7813768225934358],[125,302,76,-0.7810202255445151],[125,302,77,-0.7806659071743639],[125,302,78,-0.7803138729024597],[125,302,79,-0.7799641280584679],[125,303,64,-0.7856220806204834],[125,303,65,-0.7852407554470652],[125,303,66,-0.7848616421114524],[125,303,67,-0.7844847469934872],[125,303,68,-0.7841100763877895],[125,303,69,-0.7837376365033499],[125,303,70,-0.7833674334631123],[125,303,71,-0.782999473303559],[125,303,72,-0.7826337619742956],[125,303,73,-0.782270305337647],[125,303,74,-0.781909109168232],[125,303,75,-0.7815501791525605],[125,303,76,-0.7811935208886231],[125,303,77,-0.7808391398854799],[125,303,78,-0.7804870415628538],[125,303,79,-0.780137231250719],[125,304,64,-0.7857961127788828],[125,304,65,-0.7854147434830102],[125,304,66,-0.7850355846037205],[125,304,67,-0.7846586425203932],[125,304,68,-0.784283923527246],[125,304,69,-0.7839114338329289],[125,304,70,-0.7835411795601068],[125,304,71,-0.7831731667450443],[125,304,72,-0.7828074013371918],[125,304,73,-0.7824438891987813],[125,304,74,-0.7820826361044007],[125,304,75,-0.7817236477405926],[125,304,76,-0.7813669297054426],[125,304,77,-0.7810124875081699],[125,304,78,-0.7806603265687198],[125,304,79,-0.7803104522173531],[125,305,64,-0.7859702403293845],[125,305,65,-0.7855888284088907],[125,305,66,-0.7852096254790807],[125,305,67,-0.7848326379188458],[125,305,68,-0.7844578720219771],[125,305,69,-0.7840853339967594],[125,305,70,-0.7837150299655535],[125,305,71,-0.7833469659643829],[125,305,72,-0.7829811479425179],[125,305,73,-0.782617581762074],[125,305,74,-0.7822562731975847],[125,305,75,-0.7818972279356015],[125,305,76,-0.7815404515742822],[125,305,77,-0.7811859496229818],[125,305,78,-0.7808337275018452],[125,305,79,-0.780483790541397],[125,306,64,-0.7861444628358413],[125,306,65,-0.7857630097897872],[125,306,66,-0.7853837643038412],[125,306,67,-0.7850067327563817],[125,306,68,-0.784631921440748],[125,306,69,-0.7842593365648349],[125,306,70,-0.7838889842506753],[125,306,71,-0.7835208705340264],[125,306,72,-0.7831550013639552],[125,306,73,-0.7827913826024363],[125,306,74,-0.782430020023925],[125,306,75,-0.7820709193149586],[125,306,76,-0.7817140860737438],[125,306,77,-0.781359525809748],[125,306,78,-0.7810072439432931],[125,306,79,-0.7806572458051447],[125,307,64,-0.7863187798614752],[125,307,65,-0.7859372871901397],[125,307,66,-0.7855580006436604],[125,307,67,-0.7851809265998779],[125,307,68,-0.784806071351655],[125,307,69,-0.7844334411064717],[125,307,70,-0.7840630419860082],[125,307,71,-0.7836948800257314],[125,307,72,-0.7833289611744806],[125,307,73,-0.7829652912940657],[125,307,74,-0.7826038761588405],[125,307,75,-0.7822447214553041],[125,307,76,-0.7818878327816888],[125,307,77,-0.7815332156475517],[125,307,78,-0.7811808754733686],[125,307,79,-0.7808308175901234],[125,308,64,-0.7864931909689388],[125,308,65,-0.7861116601738094],[125,308,66,-0.785732334063609],[125,308,67,-0.785355219015615],[125,308,68,-0.7849803213221889],[125,308,69,-0.7846076471903708],[125,308,70,-0.7842372027414641],[125,308,71,-0.7838689940106209],[125,308,72,-0.783503026946429],[125,308,73,-0.7831393074105092],[125,308,74,-0.7827778411770904],[125,308,75,-0.7824186339326097],[125,308,76,-0.7820616912753019],[125,308,77,-0.7817070187147905],[125,308,78,-0.7813546216716823],[125,308,79,-0.7810045054771573],[125,309,64,-0.7866676957202924],[125,309,65,-0.7862861283040563],[125,309,66,-0.7859067641281472],[125,309,67,-0.7855296095692537],[125,309,68,-0.785154670919211],[125,309,69,-0.7847819543845954],[125,309,70,-0.7844114660863082],[125,309,71,-0.7840432120591625],[125,309,72,-0.7836771982514703],[125,309,73,-0.7833134305246398],[125,309,74,-0.7829519146527508],[125,309,75,-0.7825926563221551],[125,309,76,-0.7822356611310667],[125,309,77,-0.7818809345891524],[125,309,78,-0.7815284821171271],[125,309,79,-0.7811783090463437],[125,310,64,-0.786842293676981],[125,310,65,-0.786460691143516],[125,310,66,-0.786081290401101],[125,310,67,-0.7857040978258114],[125,310,68,-0.785329119708931],[125,310,69,-0.7849563622565472],[125,310,70,-0.7845858315891348],[125,310,71,-0.7842175337411438],[125,310,72,-0.7838514746605858],[125,310,73,-0.7834876602086326],[125,310,74,-0.7831260961591913],[125,310,75,-0.7827667881985049],[125,310,76,-0.7824097419247428],[125,310,77,-0.7820549628475923],[125,310,78,-0.7817024563878534],[125,310,79,-0.7813522278770294],[125,311,64,-0.7870169843998971],[125,311,65,-0.7866353482542616],[125,311,66,-0.7862559124457255],[125,311,67,-0.7858786833497255],[125,311,68,-0.7855036672569687],[125,311,69,-0.7851308703730291],[125,311,70,-0.7847602988179306],[125,311,71,-0.7843919586257355],[125,311,72,-0.7840258557441311],[125,311,73,-0.7836619960340285],[125,311,74,-0.7833003852691383],[125,311,75,-0.7829410291355712],[125,311,76,-0.7825839332314288],[125,311,77,-0.7822291030663957],[125,311,78,-0.7818765440613337],[125,311,79,-0.781526261547874],[125,312,64,-0.7871917674493472],[125,312,65,-0.7868100991977718],[125,312,66,-0.7864306298246716],[125,312,67,-0.7860533657048195],[125,312,68,-0.7856783131283216],[125,312,69,-0.7853054783002129],[125,312,70,-0.784934867340042],[125,312,71,-0.7845664862814592],[125,312,72,-0.7842003410718033],[125,312,73,-0.7838364375717005],[125,312,74,-0.7834747815546415],[125,312,75,-0.7831153787065808],[125,312,76,-0.782758234625529],[125,312,77,-0.7824033548211444],[125,312,78,-0.7820507447143283],[125,312,79,-0.7817004096368164],[125,313,64,-0.7873666423850774],[125,313,65,-0.7869849435349549],[125,313,66,-0.7866054421000107],[125,313,67,-0.786228144454329],[125,313,68,-0.785853056887389],[125,313,69,-0.785480185603663],[125,313,70,-0.785109536722199],[125,313,71,-0.784741116276211],[125,313,72,-0.7843749302126649],[125,313,73,-0.7840109843918788],[125,313,74,-0.7836492845870984],[125,313,75,-0.7832898364840994],[125,313,76,-0.7829326456807777],[125,313,77,-0.7825777176867421],[125,313,78,-0.7822250579229103],[125,313,79,-0.7818746717210999],[125,314,64,-0.7875416087662395],[125,314,65,-0.787159880826116],[125,314,66,-0.7867803488332019],[125,314,67,-0.7864030191608673],[125,314,68,-0.78602789809794],[125,314,69,-0.7856549918483038],[125,314,70,-0.7852843065304825],[125,314,71,-0.7849158481772288],[125,314,72,-0.7845496227351118],[125,314,73,-0.7841856360641168],[125,314,74,-0.7838238939372217],[125,314,75,-0.783464402039999],[125,314,76,-0.7831071659702065],[125,314,77,-0.7827521912373805],[125,314,78,-0.7823994832624321],[125,314,79,-0.782049047377238],[125,315,64,-0.7877166661514545],[125,315,65,-0.7873349106310199],[125,315,66,-0.7869553495851547],[125,315,67,-0.7865779893864893],[125,315,68,-0.7862028363231751],[125,315,69,-0.785829896598483],[125,315,70,-0.7854591763303874],[125,315,71,-0.7850906815511556],[125,315,72,-0.7847244182069353],[125,315,73,-0.7843603921573554],[125,315,74,-0.7839986091751018],[125,315,75,-0.7836390749455201],[125,315,76,-0.7832817950662069],[125,315,77,-0.7829267750466028],[125,315,78,-0.7825740203075887],[125,315,79,-0.7822235361810782],[125,316,64,-0.787891814098789],[125,316,65,-0.7875100325088676],[125,316,66,-0.7871304439162052],[125,316,67,-0.7867530546926672],[125,316,68,-0.7863778711257036],[125,316,69,-0.7860048994179473],[125,316,70,-0.7856341456867987],[125,316,71,-0.785265615964015],[125,316,72,-0.7848993161952988],[125,316,73,-0.7845352522398981],[125,316,74,-0.7841734298701831],[125,316,75,-0.7838138547712489],[125,316,76,-0.7834565325405072],[125,316,77,-0.7831014686872796],[125,316,78,-0.7827486686323942],[125,316,79,-0.7823981377077782],[125,317,64,-0.7880670521657318],[125,317,65,-0.7876852460182736],[125,317,66,-0.7873056313860939],[125,317,67,-0.7869282146402682],[125,317,68,-0.7865530020675201],[125,317,69,-0.7861799998698196],[125,317,70,-0.7858092141639682],[125,317,71,-0.785440650981189],[125,317,72,-0.7850743162667148],[125,317,73,-0.7847102158793886],[125,317,74,-0.784348355591241],[125,317,75,-0.7839887410870932],[125,317,76,-0.7836313779641483],[125,317,77,-0.7832762717315858],[125,317,78,-0.7829234278101578],[125,317,79,-0.7825728515317821],[125,318,64,-0.7882423799092567],[125,318,65,-0.7878605507173273],[125,318,66,-0.7874809115540271],[125,318,67,-0.7871034687896163],[125,318,68,-0.7867282287100671],[125,318,69,-0.7863551975166614],[125,318,70,-0.7859843813255777],[125,318,71,-0.78561578616748],[125,318,72,-0.785249417987107],[125,318,73,-0.7848852826428728],[125,318,74,-0.7845233859064447],[125,318,75,-0.7841637334623456],[125,318,76,-0.7838063309075471],[125,318,77,-0.783451183751063],[125,318,78,-0.7830982974135468],[125,318,79,-0.7827476772268837],[125,319,64,-0.7884177968857993],[125,319,65,-0.7880359461635708],[125,319,66,-0.7876562839786544],[125,319,67,-0.7872788167004695],[125,319,68,-0.7869035506142115],[125,319,69,-0.7865304919204501],[125,319,70,-0.7861596467347152],[125,319,71,-0.7857910210870875],[125,319,72,-0.7854246209217874],[125,319,73,-0.785060452096776],[125,319,74,-0.784698520383333],[125,319,75,-0.7843388314656599],[125,319,76,-0.783981390940473],[125,319,77,-0.783626204316597],[125,319,78,-0.7832732770145634],[125,319,79,-0.7829226143662025],[126,-64,64,-0.7311055829282018],[126,-64,65,-0.7308248317008583],[126,-64,66,-0.7305465359609419],[126,-64,67,-0.730270700847323],[126,-64,68,-0.7299973314032042],[126,-64,69,-0.7297264325756965],[126,-64,70,-0.7294580092153827],[126,-64,71,-0.7291920660758822],[126,-64,72,-0.7289286078134164],[126,-64,73,-0.7286676389863885],[126,-64,74,-0.7284091640549333],[126,-64,75,-0.728153187380499],[126,-64,76,-0.7278997132254156],[126,-64,77,-0.7276487457524646],[126,-64,78,-0.7274002890244532],[126,-64,79,-0.7271543470037813],[126,-63,64,-0.731225266792237],[126,-63,65,-0.7309440722989682],[126,-63,66,-0.7306653332257322],[126,-63,67,-0.7303890547175679],[126,-63,68,-0.7301152418238477],[126,-63,69,-0.7298438994978549],[126,-63,70,-0.7295750325963452],[126,-63,71,-0.7293086458791127],[126,-63,72,-0.7290447440085548],[126,-63,73,-0.7287833315492513],[126,-63,74,-0.728524412967515],[126,-63,75,-0.7282679926309727],[126,-63,76,-0.7280140748081338],[126,-63,77,-0.7277626636679599],[126,-63,78,-0.7275137632794382],[126,-63,79,-0.7272673776111495],[126,-62,64,-0.7313451130855049],[126,-62,65,-0.7310634758542462],[126,-62,66,-0.7307842939740823],[126,-62,67,-0.7305075725962126],[126,-62,68,-0.7302333167761721],[126,-62,69,-0.729961531473408],[126,-62,70,-0.7296922215508418],[126,-62,71,-0.7294253917744346],[126,-62,72,-0.7291610468127518],[126,-62,73,-0.7288991912365433],[126,-62,74,-0.7286398295182921],[126,-62,75,-0.7283829660317965],[126,-62,76,-0.728128605051738],[126,-62,77,-0.7278767507532514],[126,-62,78,-0.7276274072114969],[126,-62,79,-0.7273805784012294],[126,-61,64,-0.7314651220348856],[126,-61,65,-0.7311830425972414],[126,-61,66,-0.7309034184401914],[126,-61,67,-0.7306262547210877],[126,-61,68,-0.7303515565016199],[126,-61,69,-0.7300793287473915],[126,-61,70,-0.7298095763274818],[126,-61,71,-0.7295423040140114],[126,-61,72,-0.7292775164817067],[126,-61,73,-0.7290152183074794],[126,-61,74,-0.7287554139699758],[126,-61,75,-0.7284981078491584],[126,-61,76,-0.7282433042258738],[126,-61,77,-0.7279910072814224],[126,-61,78,-0.7277412210971308],[126,-61,79,-0.7274939496539209],[126,-60,64,-0.7315852938640239],[126,-60,65,-0.7313027727552645],[126,-60,66,-0.7310227068550172],[126,-60,67,-0.7307451013267793],[126,-60,68,-0.7304699612383865],[126,-60,69,-0.7301972915615909],[126,-60,70,-0.7299270971716221],[126,-60,71,-0.7296593828467522],[126,-60,72,-0.7293941532678612],[126,-60,73,-0.7291314130180149],[126,-60,74,-0.7288711665820156],[126,-60,75,-0.7286134183459826],[126,-60,76,-0.7283581725969204],[126,-60,77,-0.7281054335222878],[126,-60,78,-0.727855205209571],[126,-60,79,-0.7276074916458515],[126,-59,64,-0.7317056287933167],[126,-59,65,-0.7314226665523751],[126,-59,66,-0.7311421594462642],[126,-59,67,-0.7308641126446169],[126,-59,68,-0.7305885312214081],[126,-59,69,-0.7303154201545303],[126,-59,70,-0.7300447843253552],[126,-59,71,-0.7297766285182992],[126,-59,72,-0.7295109574203875],[126,-59,73,-0.7292477756208332],[126,-59,74,-0.7289870876105867],[126,-59,75,-0.7287288977819169],[126,-59,76,-0.7284732104279785],[126,-59,77,-0.728220029742382],[126,-59,78,-0.7279693598187656],[126,-59,79,-0.7277212046503637],[126,-58,64,-0.7318261270399633],[126,-58,65,-0.7315427242094333],[126,-58,66,-0.7312617764384333],[126,-58,67,-0.7309832889027246],[126,-58,68,-0.7307072666824127],[126,-58,69,-0.7304337147615223],[126,-58,70,-0.7301626380275599],[126,-58,71,-0.7298940412710779],[126,-58,72,-0.7296279291852393],[126,-58,73,-0.7293643063653966],[126,-58,74,-0.7291031773086408],[126,-58,75,-0.7288445464133829],[126,-58,76,-0.7285884179789208],[126,-58,77,-0.7283347962050088],[126,-58,78,-0.7280836851914303],[126,-58,79,-0.7278350889375653],[126,-57,64,-0.7319467888179474],[126,-57,65,-0.7316629459440798],[126,-57,66,-0.7313815580528038],[126,-57,67,-0.7311026303260015],[126,-57,68,-0.7308261678499002],[126,-57,69,-0.7305521756146496],[126,-57,70,-0.7302806585138819],[126,-57,71,-0.7300116213442784],[126,-57,72,-0.729745068805132],[126,-57,73,-0.7294810054979267],[126,-57,74,-0.7292194359258868],[126,-57,75,-0.7289603644935574],[126,-57,76,-0.7287037955063722],[126,-57,77,-0.7284497331702223],[126,-57,78,-0.728198181591029],[126,-57,79,-0.7279491447743106],[126,-56,64,-0.7320676143380593],[126,-56,65,-0.7317833319707587],[126,-56,66,-0.731501504507456],[126,-56,67,-0.7312221371361446],[126,-56,68,-0.7309452349491662],[126,-56,69,-0.7306708029427866],[126,-56,70,-0.7303988460167569],[126,-56,71,-0.7301293689738781],[126,-56,72,-0.7298623765195658],[126,-56,73,-0.7295978732614273],[126,-56,74,-0.7293358637088128],[126,-56,75,-0.7290763522723939],[126,-56,76,-0.7288193432637327],[126,-56,77,-0.7285648408948496],[126,-56,78,-0.728312849277796],[126,-56,79,-0.7280633724242219],[126,-55,64,-0.7321886038078769],[126,-55,65,-0.7319038825006996],[126,-55,66,-0.7316216160172515],[126,-55,67,-0.7313418095516298],[126,-55,68,-0.7310644682022818],[126,-55,69,-0.7307895969715816],[126,-55,70,-0.7305172007653905],[126,-55,71,-0.730247284392622],[126,-55,72,-0.7299798525648054],[126,-55,73,-0.7297149098956648],[126,-55,74,-0.7294524609006673],[126,-55,75,-0.7291925099966041],[126,-55,76,-0.7289350615011578],[126,-55,77,-0.7286801196324706],[126,-55,78,-0.728427688508717],[126,-55,79,-0.728177772147671],[126,-54,64,-0.7323097574318168],[126,-54,65,-0.7320245977419667],[126,-54,66,-0.7317418927938844],[126,-54,67,-0.7314616477877622],[126,-54,68,-0.7311838678281449],[126,-54,69,-0.7309085579235064],[126,-54,70,-0.7306357229858099],[126,-54,71,-0.7303653678300734],[126,-54,72,-0.7300974971739325],[126,-54,73,-0.729832115637219],[126,-54,74,-0.72956922774151],[126,-54,75,-0.7293088379097084],[126,-54,76,-0.7290509504656093],[126,-54,77,-0.7287955696334696],[126,-54,78,-0.7285426995375791],[126,-54,79,-0.7282923442018286],[126,-53,64,-0.7324310754111218],[126,-53,65,-0.7321454778994482],[126,-53,66,-0.7318623350458696],[126,-53,67,-0.7315816520566649],[126,-53,68,-0.731303434042468],[126,-53,69,-0.7310276860178444],[126,-53,70,-0.7307544129008512],[126,-53,71,-0.7304836195126023],[126,-53,72,-0.7302153105768313],[126,-53,73,-0.7299494907194706],[126,-53,74,-0.7296861644681988],[126,-53,75,-0.7294253362520224],[126,-53,76,-0.7291670104008423],[126,-53,77,-0.7289111911450217],[126,-53,78,-0.7286578826149587],[126,-53,79,-0.7284070888406531],[126,-52,64,-0.7325525579438492],[126,-52,65,-0.7322665231748426],[126,-52,66,-0.7319829429785293],[126,-52,67,-0.7317018225672653],[126,-52,68,-0.7314231670577657],[126,-52,69,-0.7311469814706786],[126,-52,70,-0.7308732707301467],[126,-52,71,-0.7306020396633719],[126,-52,72,-0.7303332930001778],[126,-52,73,-0.7300670353725887],[126,-52,74,-0.7298032713143774],[126,-52,75,-0.7295420052606464],[126,-52,76,-0.7292832415473935],[126,-52,77,-0.7290269844110813],[126,-52,78,-0.7287732379882083],[126,-52,79,-0.7285220063148763],[126,-51,64,-0.7326742052249208],[126,-51,65,-0.7323877337667114],[126,-51,66,-0.7321037167940452],[126,-51,67,-0.7318221595253476],[126,-51,68,-0.7315430670834053],[126,-51,69,-0.7312664444949416],[126,-51,70,-0.7309922966901762],[126,-51,71,-0.7307206285023903],[126,-51,72,-0.7304514446674896],[126,-51,73,-0.7301847498235821],[126,-51,74,-0.7299205485105268],[126,-51,75,-0.7296588451695138],[126,-51,76,-0.7293996441426309],[126,-51,77,-0.7291429496724319],[126,-51,78,-0.7288887659015081],[126,-51,79,-0.7286370968720556],[126,-50,64,-0.7327960174461048],[126,-50,65,-0.7325091098704579],[126,-50,66,-0.7322246566914381],[126,-50,67,-0.7319426631335315],[126,-50,68,-0.7316631343255882],[126,-50,69,-0.7313860753003971],[126,-50,70,-0.7311114909942471],[126,-50,71,-0.7308393862464906],[126,-50,72,-0.7305697657991065],[126,-50,73,-0.7303026342962787],[126,-50,74,-0.7300379962839444],[126,-50,75,-0.7297758562093732],[126,-50,76,-0.7295162184207351],[126,-50,77,-0.7292590871666668],[126,-50,78,-0.7290044665958453],[126,-50,79,-0.7287523607565533],[126,-49,64,-0.7329179947960384],[126,-49,65,-0.7326306516783517],[126,-49,66,-0.732345762866592],[126,-49,67,-0.7320633335912972],[126,-49,68,-0.7317833689873717],[126,-49,69,-0.7315058740936624],[126,-49,70,-0.731230853852518],[126,-49,71,-0.7309583131093537],[126,-49,72,-0.7306882566122137],[126,-49,73,-0.7304206890113496],[126,-49,74,-0.730155614858768],[126,-49,75,-0.7298930386078106],[126,-49,76,-0.729632964612721],[126,-49,77,-0.7293753971282119],[126,-49,78,-0.7291203403090374],[126,-49,79,-0.7288677982095593],[126,-48,64,-0.7330401374602074],[126,-48,65,-0.732752359379508],[126,-48,66,-0.7324670355122332],[126,-48,67,-0.7321841710949639],[126,-48,68,-0.7319037712686505],[126,-48,69,-0.7316258410781883],[126,-48,70,-0.731350385471978],[126,-48,71,-0.7310774093014887],[126,-48,72,-0.7308069173208218],[126,-48,73,-0.7305389141862879],[126,-48,74,-0.7302734044559551],[126,-48,75,-0.7300103925892291],[126,-48,76,-0.7297498829464188],[126,-48,77,-0.7294918797883053],[126,-48,78,-0.7292363872757119],[126,-48,79,-0.7289834094690717],[126,-47,64,-0.7331624456209987],[126,-47,65,-0.7328742331599396],[126,-47,66,-0.7325884748179825],[126,-47,67,-0.7323051758377424],[126,-47,68,-0.7320243413662066],[126,-47,69,-0.7317459764543108],[126,-47,70,-0.7314700860564982],[126,-47,71,-0.7311966750302841],[126,-47,72,-0.7309257481358177],[126,-47,73,-0.7306573100354606],[126,-47,74,-0.7303913652933345],[126,-47,75,-0.7301279183749003],[126,-47,76,-0.7298669736465249],[126,-47,77,-0.7296085353750488],[126,-47,78,-0.7293526077273573],[126,-47,79,-0.7290991947699472],[126,-46,64,-0.7332849194576874],[126,-46,65,-0.7329962732025441],[126,-46,66,-0.7327100809703424],[126,-46,67,-0.732426348009722],[126,-46,68,-0.7321450794736984],[126,-46,69,-0.7318662804192386],[126,-46,70,-0.73158995580682],[126,-46,71,-0.7313161104999948],[126,-46,72,-0.7310447492649521],[126,-46,73,-0.7307758767700961],[126,-46,74,-0.7305094975855932],[126,-46,75,-0.7302456161829518],[126,-46,76,-0.7299842369345882],[126,-46,77,-0.729725364113395],[126,-46,78,-0.7294690018923107],[126,-46,79,-0.7292151543438881],[126,-45,64,-0.733407559146424],[126,-45,65,-0.7331184796870915],[126,-45,66,-0.7328318541526844],[126,-45,67,-0.7325476877978577],[126,-45,68,-0.7322659857816465],[126,-45,69,-0.7319867531670399],[126,-45,70,-0.7317099949205407],[126,-45,71,-0.7314357159117295],[126,-45,72,-0.7311639209128269],[126,-45,73,-0.7308946145982707],[126,-45,74,-0.7306278015442639],[126,-45,75,-0.7303634862283539],[126,-45,76,-0.7301016730289986],[126,-45,77,-0.7298423662251337],[126,-45,78,-0.7295855699957441],[126,-45,79,-0.72933128841943],[126,-44,64,-0.733530364860286],[126,-44,65,-0.7332408527902756],[126,-44,66,-0.7329537945453003],[126,-44,67,-0.7326691953860219],[126,-44,68,-0.7323870604774857],[126,-44,69,-0.7321073948886939],[126,-44,70,-0.7318302035921662],[126,-44,71,-0.7315554914635026],[126,-44,72,-0.7312832632809463],[126,-44,73,-0.7310135237249604],[126,-44,74,-0.730746277377776],[126,-44,75,-0.7304815287229712],[126,-44,76,-0.7302192821450371],[126,-44,77,-0.7299595419289444],[126,-44,78,-0.7297023122597162],[126,-44,79,-0.7294475972219923],[126,-43,64,-0.7336533367692656],[126,-43,65,-0.7333633926857013],[126,-43,66,-0.7330759023253902],[126,-43,67,-0.732790870954992],[126,-43,68,-0.7325083037455524],[126,-43,69,-0.7322282057720787],[126,-43,70,-0.7319505820130976],[126,-43,71,-0.7316754373502204],[126,-43,72,-0.7314027765677038],[126,-43,73,-0.7311326043520278],[126,-43,74,-0.7308649252914428],[126,-43,75,-0.7305997438755493],[126,-43,76,-0.7303370644948629],[126,-43,77,-0.7300768914403821],[126,-43,78,-0.7298192289031591],[126,-43,79,-0.7295640809738654],[126,-42,64,-0.7337764750402567],[126,-42,65,-0.7334860995438716],[126,-42,66,-0.7331981776670489],[126,-42,67,-0.7329127146824365],[126,-42,68,-0.7326297157670718],[126,-42,69,-0.7323491860019574],[126,-42,70,-0.7320711303716189],[126,-42,71,-0.7317955537636689],[126,-42,72,-0.7315224609683697],[126,-42,73,-0.731251856678209],[126,-42,74,-0.7309837454874485],[126,-42,75,-0.7307181318917019],[126,-42,76,-0.7304550202875016],[126,-42,77,-0.7301944149718648],[126,-42,78,-0.7299363201418652],[126,-42,79,-0.7296807398941978],[126,-41,64,-0.7338997798371064],[126,-41,65,-0.73360897353224],[126,-41,66,-0.7333206207413181],[126,-41,67,-0.7330347267429679],[126,-41,68,-0.7327512967202092],[126,-41,69,-0.7324703357600306],[126,-41,70,-0.7321918488529474],[126,-41,71,-0.7319158408925652],[126,-41,72,-0.7316423166751422],[126,-41,73,-0.7313712808991659],[126,-41,74,-0.7311027381648996],[126,-41,75,-0.7308366929739627],[126,-41,76,-0.7305731497288952],[126,-41,77,-0.7303121127327249],[126,-41,78,-0.7300535861885387],[126,-41,79,-0.7297975741990472],[126,-40,64,-0.7340232513205959],[126,-40,65,-0.7337320148151898],[126,-40,66,-0.7334432317161664],[126,-40,67,-0.733156907308122],[126,-40,68,-0.73287304678005],[126,-40,69,-0.7325916552249158],[126,-40,70,-0.732312737639215],[126,-40,71,-0.7320362989225373],[126,-40,72,-0.7317623438771279],[126,-40,73,-0.7314908772074649],[126,-40,74,-0.7312219035198051],[126,-40,75,-0.7309554273217644],[126,-40,76,-0.7306914530218822],[126,-40,77,-0.7304299849291888],[126,-40,78,-0.7301710272527753],[126,-40,79,-0.72991458410136],[126,-39,64,-0.7341468896484624],[126,-39,65,-0.7338552235540576],[126,-39,66,-0.7335660107565118],[126,-39,67,-0.7332792565463814],[126,-39,68,-0.7329949661186232],[126,-39,69,-0.7327131445721705],[126,-39,70,-0.7324337969094903],[126,-39,71,-0.7321569280361468],[126,-39,72,-0.7318825427603637],[126,-39,73,-0.7316106457926003],[126,-39,74,-0.7313412417450986],[126,-39,75,-0.7310743351314621],[126,-39,76,-0.730809930366221],[126,-39,77,-0.7305480317643993],[126,-39,78,-0.7302886435410846],[126,-39,79,-0.7300317698109943],[126,-38,64,-0.7342706949753803],[126,-38,65,-0.7339785999071133],[126,-38,66,-0.7336889580242026],[126,-38,67,-0.7334017746231545],[126,-38,68,-0.7331170549048808],[126,-38,69,-0.7328348039742724],[126,-38,70,-0.7325550268397586],[126,-38,71,-0.7322777284128692],[126,-38,72,-0.7320029135077972],[126,-38,73,-0.7317305868409745],[126,-38,74,-0.7314607530306187],[126,-38,75,-0.7311934165963128],[126,-38,76,-0.7309285819585689],[126,-38,77,-0.7306662534383962],[126,-38,78,-0.7304064352568703],[126,-38,79,-0.7301491315346994],[126,-37,64,-0.734394667453012],[126,-37,65,-0.7341021440296116],[126,-37,66,-0.733812073678068],[126,-37,67,-0.7335244617008284],[126,-37,68,-0.7332393133047491],[126,-37,69,-0.7329566336006702],[126,-37,70,-0.7326764276029734],[126,-37,71,-0.7323987002291452],[126,-37,72,-0.7321234562993384],[126,-37,73,-0.7318507005359486],[126,-37,74,-0.7315804375631603],[126,-37,75,-0.7313126719065268],[126,-37,76,-0.7310474079925338],[126,-37,77,-0.7307846501481667],[126,-37,78,-0.7305244026004811],[126,-37,79,-0.7302666694761671],[126,-36,64,-0.7345188072299955],[126,-36,65,-0.7342258560737793],[126,-36,66,-0.7339353578739063],[126,-36,67,-0.733647317938755],[126,-36,68,-0.7333617414811171],[126,-36,69,-0.7330786336177717],[126,-36,70,-0.7327979993690441],[126,-36,71,-0.7325198436583679],[126,-36,72,-0.7322441713118466],[126,-36,73,-0.73197098705783],[126,-36,74,-0.7317002955264614],[126,-36,75,-0.731432101249255],[126,-36,76,-0.7311664086586611],[126,-36,77,-0.7309032220876334],[126,-36,78,-0.7306425457691978],[126,-36,79,-0.7303843838360189],[126,-35,64,-0.7346431144519318],[126,-35,65,-0.7343497361888021],[126,-35,66,-0.7340588107644711],[126,-35,67,-0.7337703434932386],[126,-35,68,-0.7334843395938219],[126,-35,69,-0.7332008041889301],[126,-35,70,-0.7329197423048219],[126,-35,71,-0.732641158870869],[126,-35,72,-0.7323650587191164],[126,-35,73,-0.7320914465838594],[126,-35,74,-0.73182032710119],[126,-35,75,-0.7315517048085749],[126,-35,76,-0.7312855841444206],[126,-35,77,-0.7310219694476392],[126,-35,78,-0.7307608649572199],[126,-35,79,-0.730502274811792],[126,-34,64,-0.7347675892614361],[126,-34,65,-0.7344737845208769],[126,-34,66,-0.7341824324995235],[126,-34,67,-0.7338935385175874],[126,-34,68,-0.7336071077997017],[126,-34,69,-0.7333231454744956],[126,-34,70,-0.7330416565741524],[126,-34,71,-0.7327626460339716],[126,-34,72,-0.7324861186919309],[126,-34,73,-0.7322120792882618],[126,-34,74,-0.7319405324649958],[126,-34,75,-0.7316714827655432],[126,-34,76,-0.7314049346342574],[126,-34,77,-0.7311408924160012],[126,-34,78,-0.730879360355717],[126,-34,79,-0.7306203425979911],[126,-33,64,-0.7348922317981184],[126,-33,65,-0.7345980012131913],[126,-33,66,-0.7343062232258121],[126,-33,67,-0.7340169031620936],[126,-33,68,-0.733730046252575],[126,-33,69,-0.733445657631796],[126,-33,70,-0.7331637423378546],[126,-33,71,-0.7328843053119694],[126,-33,72,-0.7326073513980405],[126,-33,73,-0.7323328853422264],[126,-33,74,-0.7320609117924896],[126,-33,75,-0.7317914352981745],[126,-33,76,-0.7315244603095727],[126,-33,77,-0.7312599911774884],[126,-33,78,-0.7309980321528089],[126,-33,79,-0.7307385873860686],[126,-32,64,-0.7350170421986056],[126,-32,65,-0.734722386405947],[126,-32,66,-0.7344301830870956],[126,-32,67,-0.734140437574056],[126,-32,68,-0.7338531551032637],[126,-32,69,-0.733568340815159],[126,-32,70,-0.7332859997537446],[126,-32,71,-0.7330061368661488],[126,-32,72,-0.7327287570021853],[126,-32,73,-0.7324538649139299],[126,-32,74,-0.7321814652552665],[126,-32,75,-0.7319115625814648],[126,-32,76,-0.7316441613487454],[126,-32,77,-0.7313792659138452],[126,-32,78,-0.7311168805335873],[126,-32,79,-0.7308570093644459],[126,-31,64,-0.7351420205965227],[126,-31,65,-0.734846940236339],[126,-31,66,-0.7345543122241228],[126,-31,67,-0.73426414189776],[126,-31,68,-0.7339764344995724],[126,-31,69,-0.7336911951758912],[126,-31,70,-0.7334084289766146],[126,-31,71,-0.7331281408547702],[126,-31,72,-0.7328503356660758],[126,-31,73,-0.7325750181685156],[126,-31,74,-0.7323021930218852],[126,-31,75,-0.7320318647873706],[126,-31,76,-0.7317640379271122],[126,-31,77,-0.7314987168037704],[126,-31,78,-0.7312359056800961],[126,-31,79,-0.7309756087184938],[126,-30,64,-0.7352671671225431],[126,-30,65,-0.7349716628386083],[126,-30,66,-0.7346786107746845],[126,-30,67,-0.7343880162745295],[126,-30,68,-0.7340998845863412],[126,-30,69,-0.7338142208623317],[126,-30,70,-0.7335310301582847],[126,-30,71,-0.7332503174331181],[126,-30,72,-0.732972087548444],[126,-30,73,-0.7326963452681448],[126,-30,74,-0.7324230952579193],[126,-30,75,-0.7321523420848602],[126,-30,76,-0.7318840902170187],[126,-30,77,-0.73161834402297],[126,-30,78,-0.7313551077713828],[126,-30,79,-0.7310943856305838],[126,-29,64,-0.735392481904377],[126,-29,65,-0.735096554344028],[126,-29,66,-0.7348030788736006],[126,-29,67,-0.7345120608427136],[126,-29,68,-0.7342235055054316],[126,-29,69,-0.7339374180198375],[126,-29,70,-0.7336538034475907],[126,-29,71,-0.7333726667534892],[126,-29,72,-0.73309401280503],[126,-29,73,-0.7328178463719845],[126,-29,74,-0.732544172125945],[126,-29,75,-0.7322729946399017],[126,-29,76,-0.7320043183878073],[126,-29,77,-0.7317381477441423],[126,-29,78,-0.7314744869834848],[126,-29,79,-0.7312133402800749],[126,-28,64,-0.7355179650667576],[126,-28,65,-0.7352216148808907],[126,-28,66,-0.7349277166527061],[126,-28,67,-0.7346362757376736],[126,-28,68,-0.7343472973957137],[126,-28,69,-0.7340607867907705],[126,-28,70,-0.7337767489903692],[126,-28,71,-0.733495188965178],[126,-28,72,-0.733216111588569],[126,-28,73,-0.7329395216361934],[126,-28,74,-0.7326654237855268],[126,-28,75,-0.732393822615448],[126,-28,76,-0.7321247226058019],[126,-28,77,-0.7318581281369652],[126,-28,78,-0.7315940434894164],[126,-28,79,-0.7313324728432995],[126,-27,64,-0.735643616731493],[126,-27,65,-0.7353468445745606],[126,-27,66,-0.7350525242409043],[126,-27,67,-0.7347606610918347],[126,-27,68,-0.7344712603931183],[126,-27,69,-0.7341843273145501],[126,-27,70,-0.7338998669295107],[126,-27,71,-0.7336178842145296],[126,-27,72,-0.7333383840488434],[126,-27,73,-0.7330613712139735],[126,-27,74,-0.73278685039327],[126,-27,75,-0.73251482617149],[126,-27,76,-0.7322453030343613],[126,-27,77,-0.731978285368148],[126,-27,78,-0.73171377745922],[126,-27,79,-0.7314517834936161],[126,-26,64,-0.7357694370174468],[126,-26,65,-0.7354722435474528],[126,-26,66,-0.7351775017641456],[126,-26,67,-0.7348852170346661],[126,-26,68,-0.7345953946306163],[126,-26,69,-0.7343080397276318],[126,-26,70,-0.7340231574049393],[126,-26,71,-0.7337407526449184],[126,-26,72,-0.7334608303326617],[126,-26,73,-0.7331833952555504],[126,-26,74,-0.7329084521027992],[126,-26,75,-0.7326360054650346],[126,-26,76,-0.7323660598338579],[126,-26,77,-0.732098619601411],[126,-26,78,-0.7318336890599457],[126,-26,79,-0.7315712724013872],[126,-25,64,-0.7358954260405597],[126,-25,65,-0.7355978119190567],[126,-25,66,-0.7353026493454511],[126,-25,67,-0.7350099436927037],[126,-25,68,-0.7347197002382416],[126,-25,69,-0.7344319241635313],[126,-25,70,-0.7341466205536348],[126,-25,71,-0.7338637943967724],[126,-25,72,-0.7335834505838822],[126,-25,73,-0.7333055939081956],[126,-25,74,-0.7330302290647825],[126,-25,75,-0.732757360650129],[126,-25,76,-0.7324869931617005],[126,-25,77,-0.7322191309975075],[126,-25,78,-0.7319537784556744],[126,-25,79,-0.7316909397340035],[126,-24,64,-0.7360215839138302],[126,-24,65,-0.7357235498059151],[126,-24,66,-0.7354279671048912],[126,-24,67,-0.7351348411895291],[126,-24,68,-0.7348441773430707],[126,-24,69,-0.7345559807528024],[126,-24,70,-0.734270256509612],[126,-24,71,-0.7339870096075503],[126,-24,72,-0.7337062449433908],[126,-24,73,-0.7334279673162053],[126,-24,74,-0.7331521814269094],[126,-24,75,-0.7328788918778387],[126,-24,76,-0.7326081031723135],[126,-24,77,-0.7323398197142033],[126,-24,78,-0.7320740458074959],[126,-24,79,-0.7318107856558618],[126,-23,64,-0.7361479107473667],[126,-23,65,-0.7358494573216767],[126,-23,66,-0.735553455159639],[126,-23,67,-0.7352599096458227],[126,-23,68,-0.7349688260692745],[126,-23,69,-0.7346802096230907],[126,-23,70,-0.7343940654039739],[126,-23,71,-0.7341103984117955],[126,-23,72,-0.7338292135491545],[126,-23,73,-0.7335505156209536],[126,-23,74,-0.7332743093339433],[126,-23,75,-0.7330005992963],[126,-23,76,-0.7327293900171887],[126,-23,77,-0.7324606859063286],[126,-23,78,-0.732194491273562],[126,-23,79,-0.7319308103284173],[126,-22,64,-0.7362744066483738],[126,-22,65,-0.7359755345770829],[126,-22,66,-0.7356791136239555],[126,-22,67,-0.7353851491793497],[126,-22,68,-0.7350936465381055],[126,-22,69,-0.7348046108991187],[126,-22,70,-0.7345180473648971],[126,-22,71,-0.7342339609411219],[126,-22,72,-0.733952356536208],[126,-22,73,-0.7336732389608781],[126,-22,74,-0.7333966129277087],[126,-22,75,-0.7331224830507066],[126,-22,76,-0.7328508538448723],[126,-22,77,-0.7325817297257651],[126,-22,78,-0.7323151150090719],[126,-22,79,-0.7320510139101708],[126,-21,64,-0.7364010717211391],[126,-21,65,-0.7361017816799537],[126,-21,66,-0.7358049426091778],[126,-21,67,-0.7355105599049466],[126,-21,68,-0.7352186388678839],[126,-21,69,-0.7349291847026738],[126,-21,70,-0.7346422025176189],[126,-21,71,-0.7343576973242005],[126,-21,72,-0.7340756740366385],[126,-21,73,-0.7337961374714663],[126,-21,74,-0.7335190923470761],[126,-21,75,-0.7332445432832954],[126,-21,76,-0.7329724948009503],[126,-21,77,-0.7327029513214307],[126,-21,78,-0.7324359171662591],[126,-21,79,-0.7321713965566531],[126,-20,64,-0.7365279060670855],[126,-20,65,-0.7362281987352414],[126,-20,66,-0.7359309422237702],[126,-20,67,-0.7356361419345743],[126,-20,68,-0.7353438031740497],[126,-20,69,-0.7350539311526594],[126,-20,70,-0.7347665309844896],[126,-20,71,-0.7344816076868115],[126,-20,72,-0.7341991661796399],[126,-20,73,-0.7339192112853086],[126,-20,74,-0.7336417477280156],[126,-20,75,-0.7333667801333992],[126,-20,76,-0.7330943130281016],[126,-20,77,-0.7328243508393335],[126,-20,78,-0.7325568978944431],[126,-20,79,-0.7322919584204787],[126,-19,64,-0.7366549097847512],[126,-19,65,-0.7363547858450084],[126,-19,66,-0.7360571125733041],[126,-19,67,-0.7357618953772962],[126,-19,68,-0.7354691395691426],[126,-19,69,-0.7351788503650744],[126,-19,70,-0.7348910328849512],[126,-19,71,-0.7346056921518231],[126,-19,72,-0.7343228330914902],[126,-19,73,-0.7340424605320763],[126,-19,74,-0.733764579203575],[126,-19,75,-0.7334891937374256],[126,-19,76,-0.7332163086660763],[126,-19,77,-0.7329459284225494],[126,-19,78,-0.7326780573400088],[126,-19,79,-0.732412699651324],[126,-18,64,-0.7367820829698116],[126,-18,65,-0.7364815431084515],[126,-18,66,-0.7361834537604807],[126,-18,67,-0.7358878203393019],[126,-18,68,-0.7355946481628247],[126,-18,69,-0.7353039424530368],[126,-18,70,-0.7350157083355608],[126,-18,71,-0.7347299508392158],[126,-18,72,-0.7344466748955759],[126,-18,73,-0.7341658853385453],[126,-18,74,-0.7338875869039032],[126,-18,75,-0.7336117842288796],[126,-18,76,-0.7333384818517191],[126,-18,77,-0.7330676842112451],[126,-18,78,-0.7327993956464287],[126,-18,79,-0.7325336203959505],[126,-17,64,-0.7369094257150598],[126,-17,65,-0.7366084706218803],[126,-17,66,-0.7363099658851104],[126,-17,67,-0.7360139169238868],[126,-17,68,-0.7357203290618592],[126,-17,69,-0.7354292075267618],[126,-17,70,-0.7351405574499694],[126,-17,71,-0.7348543838660594],[126,-17,72,-0.7345706917123699],[126,-17,73,-0.7342894858285749],[126,-17,74,-0.7340107709562288],[126,-17,75,-0.7337345517383427],[126,-17,76,-0.7334608327189474],[126,-17,77,-0.7331896183426578],[126,-17,78,-0.7329209129542419],[126,-17,79,-0.7326547207981826],[126,-16,64,-0.737036938110458],[126,-16,65,-0.7367355684787701],[126,-16,66,-0.7364366490441654],[126,-16,67,-0.7361401852315037],[126,-16,68,-0.7358461823701636],[126,-16,69,-0.7355546456936151],[126,-16,70,-0.7352655803389747],[126,-16,71,-0.7349789913465672],[126,-16,72,-0.7346948836594844],[126,-16,73,-0.7344132621231598],[126,-16,74,-0.7341341314849128],[126,-16,75,-0.7338574963935252],[126,-16,76,-0.7335833613988041],[126,-16,77,-0.7333117309511465],[126,-16,78,-0.733042609401107],[126,-16,79,-0.732776000998961],[126,-15,64,-0.737164620243125],[126,-15,65,-0.7368628367697486],[126,-15,66,-0.7365635033317662],[126,-15,67,-0.7362666253597495],[126,-15,68,-0.7359722081887957],[126,-15,69,-0.7356802570580989],[126,-15,70,-0.7353907771105069],[126,-15,71,-0.7351037733920814],[126,-15,72,-0.7348192508516573],[126,-15,73,-0.734537214340417],[126,-15,74,-0.7342576686114345],[126,-15,75,-0.7339806183192525],[126,-15,76,-0.7337060680194443],[126,-15,77,-0.7334340221681785],[126,-15,78,-0.7331644851217871],[126,-15,79,-0.7328974611363284],[126,-14,64,-0.737292472197322],[126,-14,65,-0.7369902755825813],[126,-14,66,-0.7366905288391672],[126,-14,67,-0.7363932374033516],[126,-14,68,-0.7360984066159393],[126,-14,69,-0.735806041721838],[126,-14,70,-0.7355161478696153],[126,-14,71,-0.7352287301110594],[126,-14,72,-0.7349437934007377],[126,-14,73,-0.7346613425955709],[126,-14,74,-0.7343813824543778],[126,-14,75,-0.734103917637451],[126,-14,76,-0.7338289527061201],[126,-14,77,-0.7335564921223157],[126,-14,78,-0.733286540248137],[126,-14,79,-0.733019101345415],[126,-13,64,-0.7374204940545049],[126,-13,65,-0.7371178850022255],[126,-13,66,-0.7368177256548101],[126,-13,67,-0.7365200214542207],[126,-13,68,-0.7362247777469579],[126,-13,69,-0.7359319997836323],[126,-13,70,-0.7356416927185208],[126,-13,71,-0.7353538616091266],[126,-13,72,-0.7350685114157391],[126,-13,73,-0.7347856470010072],[126,-13,74,-0.7345052731294834],[126,-13,75,-0.7342273944672006],[126,-13,76,-0.7339520155812342],[126,-13,77,-0.7336791409392664],[126,-13,78,-0.7334087749091542],[126,-13,79,-0.7331409217584914],[126,-12,64,-0.7375486858933124],[126,-12,65,-0.7372456651108155],[126,-12,66,-0.7369450938643103],[126,-12,67,-0.7366469776014369],[126,-12,68,-0.7363513216743807],[126,-12,69,-0.7360581313394441],[126,-12,70,-0.7357674117566019],[126,-12,71,-0.7354791679890623],[126,-12,72,-0.7351934050028257],[126,-12,73,-0.734910127666258],[126,-12,74,-0.7346293407496356],[126,-12,75,-0.734351048924721],[126,-12,76,-0.7340752567643254],[126,-12,77,-0.7338019687418724],[126,-12,78,-0.7335311892309664],[126,-12,79,-0.7332629225049547],[126,-11,64,-0.7376770477895495],[126,-11,65,-0.7373736159876494],[126,-11,66,-0.7370726335504424],[126,-11,67,-0.7367741059312356],[126,-11,68,-0.736478038487888],[126,-11,69,-0.7361844364823824],[126,-11,70,-0.7358933050803811],[126,-11,71,-0.7356046493507858],[126,-11,72,-0.7353184742652972],[126,-11,73,-0.735034784697988],[126,-11,74,-0.7347535854248475],[126,-11,75,-0.7344748811233572],[126,-11,76,-0.7341986763720543],[126,-11,77,-0.7339249756500934],[126,-11,78,-0.7336537833368163],[126,-11,79,-0.7333851037113137],[126,-10,64,-0.7378055798162431],[126,-10,65,-0.7375017377092419],[126,-10,66,-0.7372003447931936],[126,-10,67,-0.7369014065270607],[126,-10,68,-0.7366049282743646],[126,-10,69,-0.7363109153027576],[126,-10,70,-0.7360193727835777],[126,-10,71,-0.7357303057914095],[126,-10,72,-0.7354437193036432],[126,-10,73,-0.7351596182000473],[126,-10,74,-0.7348780072623138],[126,-10,75,-0.734598891173633],[126,-10,76,-0.7343222745182565],[126,-10,77,-0.7340481617810607],[126,-10,78,-0.7337765573471147],[126,-10,79,-0.7335074655012421],[126,-9,64,-0.7379342820436192],[126,-9,65,-0.737630030349303],[126,-9,66,-0.7373282276697424],[126,-9,67,-0.7370288794695434],[126,-9,68,-0.7367319911178789],[126,-9,69,-0.7364375678880586],[126,-9,70,-0.7361456149570857],[126,-9,71,-0.7358561374052169],[126,-9,72,-0.7355691402155204],[126,-9,73,-0.7352846282734503],[126,-9,74,-0.7350026063663899],[126,-9,75,-0.7347230791832281],[126,-9,76,-0.7344460513139209],[126,-9,77,-0.7341715272490558],[126,-9,78,-0.7338995113794187],[126,-9,79,-0.7336300079955566],[126,-8,64,-0.7380631545391265],[126,-8,65,-0.7377584939787615],[126,-8,66,-0.7374562822544815],[126,-8,67,-0.7371565248365254],[126,-8,68,-0.736859227099705],[126,-8,69,-0.7365643943229769],[126,-8,70,-0.7362720316889985],[126,-8,71,-0.7359821442836865],[126,-8,72,-0.7356947370957769],[126,-8,73,-0.7354098150163982],[126,-8,74,-0.7351273828386148],[126,-8,75,-0.7348474452570029],[126,-8,76,-0.7345700068672129],[126,-8,77,-0.7342950721655325],[126,-8,78,-0.7340226455484548],[126,-8,79,-0.7337527313122401],[126,-7,64,-0.7381921973674156],[126,-7,65,-0.737887128665743],[126,-7,66,-0.7375845086189969],[126,-7,67,-0.7372843427030366],[126,-7,68,-0.736986636298302],[126,-7,69,-0.7366913946893852],[126,-7,70,-0.7363986230645854],[126,-7,71,-0.7361083265154693],[126,-7,72,-0.7358205100364296],[126,-7,73,-0.7355351785242578],[126,-7,74,-0.7352523367776886],[126,-7,75,-0.7349719894969753],[126,-7,76,-0.7346941412834516],[126,-7,77,-0.7344187966390957],[126,-7,78,-0.7341459599660971],[126,-7,79,-0.733875635566419],[126,-6,64,-0.738321410590391],[126,-6,65,-0.738015934475624],[126,-6,66,-0.7377129068321207],[126,-6,67,-0.7374123331413496],[126,-6,68,-0.7371142187893671],[126,-6,69,-0.7368185690663891],[126,-6,70,-0.736525389166346],[126,-6,71,-0.7362346841864429],[126,-6,72,-0.7359464591267175],[126,-6,73,-0.7356607188896139],[126,-6,74,-0.7353774682795264],[126,-6,75,-0.7350967120023743],[126,-6,76,-0.7348184546651645],[126,-6,77,-0.7345427007755545],[126,-6,78,-0.7342694547414204],[126,-6,79,-0.7339987208704177],[126,-5,64,-0.7384507942671986],[126,-5,65,-0.7381449114710167],[126,-5,66,-0.7378414769599169],[126,-5,67,-0.7375404962209646],[126,-5,68,-0.7372419746458214],[126,-5,69,-0.7369459175303151],[126,-5,70,-0.7366523300739961],[126,-5,71,-0.7363612173796963],[126,-5,72,-0.7360725844530879],[126,-5,73,-0.7357864362022563],[126,-5,74,-0.7355027774372441],[126,-5,75,-0.7352216128696263],[126,-5,76,-0.7349429471120718],[126,-5,77,-0.7346667846779075],[126,-5,78,-0.7343931299806852],[126,-5,79,-0.734121987333743],[126,-4,64,-0.7385803484542105],[126,-4,65,-0.7382740597117561],[126,-4,66,-0.7379702190656676],[126,-4,67,-0.7376688320085959],[126,-4,68,-0.7373699039377952],[126,-4,69,-0.7370734401546947],[126,-4,70,-0.7367794458644525],[126,-4,71,-0.7364879261755165],[126,-4,72,-0.7361988860991817],[126,-4,73,-0.7359123305491639],[126,-4,74,-0.7356282643411433],[126,-4,75,-0.7353466921923393],[126,-4,76,-0.7350676187210725],[126,-4,77,-0.7347910484463284],[126,-4,78,-0.7345169857873239],[126,-4,79,-0.7342454350630695],[126,-3,64,-0.7387100732050785],[126,-3,65,-0.7384033792549527],[126,-3,66,-0.7380991332099265],[126,-3,67,-0.7377973405682245],[126,-3,68,-0.7374980067326825],[126,-3,69,-0.7372011370103183],[126,-3,70,-0.7369067366118872],[126,-3,71,-0.736614810651441],[126,-3,72,-0.7363253641458867],[126,-3,73,-0.7360384020145593],[126,-3,74,-0.7357539290787651],[126,-3,75,-0.7354719500613573],[126,-3,76,-0.7351924695862977],[126,-3,77,-0.7349154921782193],[126,-3,78,-0.7346410222619939],[126,-3,79,-0.7343690641622936],[126,-2,64,-0.7388399685707132],[126,-2,65,-0.7385328701549705],[126,-2,66,-0.7382282194504963],[126,-2,67,-0.737926021961077],[126,-2,68,-0.7376262830951177],[126,-2,69,-0.7373290081652136],[126,-2,70,-0.737034202387705],[126,-2,71,-0.7367418708822366],[126,-2,72,-0.736452018671316],[126,-2,73,-0.7361646506798858],[126,-2,74,-0.735879771734868],[126,-2,75,-0.7355973865647383],[126,-2,76,-0.7353174997990884],[126,-2,77,-0.7350401159681886],[126,-2,78,-0.7347652395025549],[126,-2,79,-0.734492874732511],[126,-1,64,-0.7389700345993068],[126,-1,65,-0.7386625324634513],[126,-1,66,-0.7383574778424535],[126,-1,67,-0.7380548762456489],[126,-1,68,-0.7377547330870002],[126,-1,69,-0.7374570536846684],[126,-1,70,-0.7371618432605671],[126,-1,71,-0.7368691069399225],[126,-1,72,-0.7365788497508309],[126,-1,73,-0.7362910766238318],[126,-1,74,-0.7360057923914511],[126,-1,75,-0.7357230017877766],[126,-1,76,-0.7354427094480187],[126,-1,77,-0.7351649199080743],[126,-1,78,-0.734889637604093],[126,-1,79,-0.7346168668720392],[126,0,64,-0.7391002713363108],[126,0,65,-0.7387923662292923],[126,0,66,-0.7384869084381253],[126,0,67,-0.7381839034776823],[126,0,68,-0.7378833567674721],[126,0,69,-0.7375852736312092],[126,0,70,-0.7372896592963691],[126,0,71,-0.7369965188937477],[126,0,72,-0.7367058574570189],[126,0,73,-0.7364176799223072],[126,0,74,-0.736131991127732],[126,0,75,-0.7358487958129812],[126,0,76,-0.7355680986188736],[126,0,77,-0.7352899040869216],[126,0,78,-0.7350142166588977],[126,0,79,-0.7347410406763965],[126,1,64,-0.7392306788244913],[126,1,65,-0.7389223714986999],[126,1,66,-0.7386165112871433],[126,1,67,-0.7383131037102197],[126,1,68,-0.7380121541929712],[126,1,69,-0.7377136680646543],[126,1,70,-0.7374176505582946],[126,1,71,-0.7371241068102456],[126,1,72,-0.7368330418597475],[126,1,73,-0.7365444606484988],[126,1,74,-0.7362583680202002],[126,1,75,-0.7359747687201295],[126,1,76,-0.7356936673947027],[126,1,77,-0.7354150685910362],[126,1,78,-0.7351389767565154],[126,1,79,-0.734865396238354],[126,2,64,-0.7393612571039128],[126,2,65,-0.7390525483151751],[126,2,66,-0.7387462864364303],[126,2,67,-0.7384424769935899],[126,2,68,-0.7381411254172177],[126,2,69,-0.7378422370421],[126,2,70,-0.7375458171068001],[126,2,71,-0.7372518707532184],[126,2,72,-0.7369604030261492],[126,2,73,-0.7366714188728536],[126,2,74,-0.7363849231426027],[126,2,75,-0.7361009205862525],[126,2,76,-0.7358194158558049],[126,2,77,-0.7355404135039703],[126,2,78,-0.735263917983735],[126,2,79,-0.7349899336479222],[126,3,64,-0.739492006211925],[126,3,65,-0.7391828967194991],[126,3,66,-0.7388762339301844],[126,3,67,-0.7385720233753933],[126,3,68,-0.7382702704911986],[126,3,69,-0.7379709806179048],[126,3,70,-0.7376741589996014],[126,3,71,-0.7373798107837234],[126,3,72,-0.7370879410206076],[126,3,73,-0.7367985546630662],[126,3,74,-0.7365116565659294],[126,3,75,-0.73622725148562],[126,3,76,-0.7359453440797146],[126,3,77,-0.7356659389065068],[126,3,78,-0.7353890404245733],[126,3,79,-0.735114652992335],[126,4,64,-0.7396229261832162],[126,4,65,-0.7393134167497877],[126,4,66,-0.7390063538099338],[126,4,67,-0.7387017429005552],[126,4,68,-0.7383995894632223],[126,4,69,-0.7380998988437447],[126,4,70,-0.7378026762917269],[126,4,71,-0.737507926960126],[126,4,72,-0.7372156559048102],[126,4,73,-0.7369258680841311],[126,4,74,-0.7366385683584661],[126,4,75,-0.7363537614897938],[126,4,76,-0.7360714521412548],[126,4,77,-0.735791644876714],[126,4,78,-0.7355143441603277],[126,4,79,-0.7352395543561044],[126,5,64,-0.7397540170497914],[126,5,65,-0.7394441084414686],[126,5,66,-0.7391366461145141],[126,5,67,-0.7388316356113047],[126,5,68,-0.7385290823788956],[126,5,69,-0.7382289917685902],[126,5,70,-0.737931369035495],[126,5,71,-0.7376362193380781],[126,5,72,-0.7373435477377269],[126,5,73,-0.7370533591983206],[126,5,74,-0.7367656585857729],[126,5,75,-0.7364804506676066],[126,5,76,-0.7361977401125146],[126,5,77,-0.7359175314899222],[126,5,78,-0.7356398292695547],[126,5,79,-0.7353646378209969],[126,6,64,-0.7398852788409955],[126,6,65,-0.7395749718273049],[126,6,66,-0.739267110880092],[126,6,67,-0.7389617015471971],[126,6,68,-0.7386587492811479],[126,6,69,-0.7383582594387293],[126,6,70,-0.738060237280538],[126,6,71,-0.7377646879705408],[126,6,72,-0.7374716165756329],[126,6,73,-0.7371810280652089],[126,6,74,-0.7368929273107075],[126,6,75,-0.7366073190851841],[126,6,76,-0.7363242080628725],[126,6,77,-0.7360435988187479],[126,6,78,-0.7357654958280928],[126,6,79,-0.7354899034660576],[126,7,64,-0.7400167115834917],[126,7,65,-0.7397060069373735],[126,7,66,-0.7393977481401433],[126,7,67,-0.7390919407450923],[126,7,68,-0.7387885902102087],[126,7,69,-0.7384877018977463],[126,7,70,-0.7381892810737798],[126,7,71,-0.7378933329077629],[126,7,72,-0.7375998624720862],[126,7,73,-0.7373088747416489],[126,7,74,-0.737020374593402],[126,7,75,-0.7367343668059225],[126,7,76,-0.7364508560589742],[126,7,77,-0.7361698469330704],[126,7,78,-0.7358913439090395],[126,7,79,-0.735615351367587],[126,8,64,-0.7401483153013148],[126,8,65,-0.7398372137991182],[126,8,66,-0.7395285579255061],[126,8,67,-0.7392223532392086],[126,8,68,-0.7389186052036611],[126,8,69,-0.7386173191865745],[126,8,70,-0.7383185004594892],[126,8,71,-0.7380221541973336],[126,8,72,-0.737728285477982],[126,8,73,-0.7374368992818259],[126,8,74,-0.7371480004913177],[126,8,75,-0.7368615938905438],[126,8,76,-0.7365776841647865],[126,8,77,-0.7362962759000858],[126,8,78,-0.7360173735828057],[126,8,79,-0.7357409815991951],[126,9,64,-0.7402800900158573],[126,9,65,-0.7399685924373358],[126,9,66,-0.7396595402643674],[126,9,67,-0.7393529390611079],[126,9,68,-0.7390487942964279],[126,9,69,-0.7387471113434826],[126,9,70,-0.7384478954792659],[126,9,71,-0.738151151884169],[126,9,72,-0.7378568856415376],[126,9,73,-0.7375651017372439],[126,9,74,-0.7372758050592294],[126,9,75,-0.7369890003970789],[126,9,76,-0.7367046924415817],[126,9,77,-0.7364228857842927],[126,9,78,-0.7361435849171005],[126,9,79,-0.7358667942317865],[126,10,64,-0.7404120357458543],[126,10,65,-0.7401001428741614],[126,10,66,-0.7397906951822473],[126,10,67,-0.7394836982396811],[126,10,68,-0.7391791575207559],[126,10,69,-0.7388770784040589],[126,10,70,-0.7385774661720251],[126,10,71,-0.7382803260104962],[126,10,72,-0.7379856630082773],[126,10,73,-0.7376934821567092],[126,10,74,-0.737403788349211],[126,10,75,-0.737116586380854],[126,10,76,-0.7368318809479226],[126,10,77,-0.7365496766474764],[126,10,78,-0.7362699779769161],[126,10,79,-0.7359927893335447],[126,11,64,-0.7405441525074379],[126,11,65,-0.7402318651291219],[126,11,66,-0.7399220227020535],[126,11,67,-0.7396146308012022],[126,11,68,-0.739309694906271],[126,11,69,-0.7390072204012663],[126,11,70,-0.7387072125740521],[126,11,71,-0.7384096766159081],[126,11,72,-0.7381146176210869],[126,11,73,-0.7378220405863857],[126,11,74,-0.7375319504106895],[126,11,75,-0.7372443518945443],[126,11,76,-0.736959249739718],[126,11,77,-0.7366766485487631],[126,11,78,-0.7363965528245816],[126,11,79,-0.7361189669699867],[126,12,64,-0.7406764403141144],[126,12,65,-0.7403637592191141],[126,12,66,-0.740053522844059],[126,12,67,-0.7397457367693057],[126,12,68,-0.7394404064799547],[126,12,69,-0.739137537365419],[126,12,70,-0.738837134718979],[126,12,71,-0.7385392037373403],[126,12,72,-0.7382437495201905],[126,12,73,-0.7379507770697714],[126,12,74,-0.7376602912904219],[126,12,75,-0.7373722969881507],[126,12,76,-0.737086798870198],[126,12,77,-0.7368038015445972],[126,12,78,-0.7365233095197405],[126,12,79,-0.73624532720394],[126,13,64,-0.7408088991767884],[126,13,65,-0.7404958251584285],[126,13,66,-0.7401851956259253],[126,13,67,-0.7398770161650103],[126,13,68,-0.7395712922661682],[126,13,69,-0.7392680293242065],[126,13,70,-0.7389672326378091],[126,13,71,-0.7386689074090949],[126,13,72,-0.7383730587431745],[126,13,73,-0.7380796916477225],[126,13,74,-0.7377888110325189],[126,13,75,-0.7375004217090242],[126,13,76,-0.7372145283899385],[126,13,77,-0.7369311356887648],[126,13,78,-0.736650248119374],[126,13,79,-0.7363718700955657],[126,14,64,-0.74094152910374],[126,14,65,-0.7406280629587261],[126,14,66,-0.7403170410626804],[126,14,67,-0.7400084690066964],[126,14,68,-0.7397023522866302],[126,14,69,-0.7393986963026706],[126,14,70,-0.739097506358893],[126,14,71,-0.7387987876628173],[126,14,72,-0.7385025453249646],[126,14,73,-0.7382087843584295],[126,14,74,-0.7379175096784223],[126,14,75,-0.7376287261018419],[126,14,76,-0.7373424383468379],[126,14,77,-0.7370586510323702],[126,14,78,-0.7367773686777777],[126,14,79,-0.7364985957023357],[126,15,64,-0.7410743301006795],[126,15,65,-0.7407604726290928],[126,15,66,-0.7404490591667725],[126,15,67,-0.7401400953101598],[126,15,68,-0.7398335865604697],[126,15,69,-0.7395295383232601],[126,15,70,-0.7392279559079844],[126,15,71,-0.7389288445275511],[126,15,72,-0.73863220929788],[126,15,73,-0.7383380552374732],[126,15,74,-0.7380463872669586],[126,15,75,-0.7377572102086627],[126,15,76,-0.7374705287861711],[126,15,77,-0.7371863476238911],[126,15,78,-0.7369046712466158],[126,15,79,-0.7366255040790867],[126,16,64,-0.7412073021707317],[126,16,65,-0.7408930541760257],[126,16,66,-0.7405812499480553],[126,16,67,-0.7402718950885976],[126,16,68,-0.7399649951042131],[126,16,69,-0.7396605554058152],[126,16,70,-0.7393585813082239],[126,16,71,-0.739059078029723],[126,16,72,-0.7387620506916184],[126,16,73,-0.7384675043178077],[126,16,74,-0.7381754438343245],[126,16,75,-0.7378858740689103],[126,16,76,-0.7375987997505757],[126,16,77,-0.7373142255091621],[126,16,78,-0.7370321558749071],[126,16,79,-0.736752595278005],[126,17,64,-0.741340445314422],[126,17,65,-0.7410258076034164],[126,17,66,-0.7407136134137733],[126,17,67,-0.7404038683525924],[126,17,68,-0.740096577931767],[126,17,69,-0.7397917475675532],[126,17,70,-0.7394893825801241],[126,17,71,-0.7391894881931269],[126,17,72,-0.7388920695332406],[126,17,73,-0.7385971316297466],[126,17,74,-0.7383046794140713],[126,17,75,-0.7380147177193594],[126,17,76,-0.7377272512800345],[126,17,77,-0.7374422847313604],[126,17,78,-0.7371598226090074],[126,17,79,-0.7368798693486113],[126,18,64,-0.7414737595297303],[126,18,65,-0.7411587329126066],[126,18,66,-0.740846149568616],[126,18,67,-0.7405360151101676],[126,18,68,-0.7402283350544743],[126,18,69,-0.739923114823122],[126,18,70,-0.7396203597416243],[126,18,71,-0.739320075038979],[126,18,72,-0.7390222658472256],[126,18,73,-0.7387269372010166],[126,18,74,-0.7384340940371592],[126,18,75,-0.7381437411941894],[126,18,76,-0.7378558834119314],[126,18,77,-0.7375705253310599],[126,18,78,-0.7372876714926655],[126,18,79,-0.7370073263378147],[126,19,64,-0.7416072448120763],[126,19,65,-0.7412918301023725],[126,19,66,-0.7409788584147029],[126,19,67,-0.7406683353667717],[126,19,68,-0.7403602664810983],[126,19,69,-0.7400546571845861],[126,19,70,-0.7397515128080754],[126,19,71,-0.7394508385859023],[126,19,72,-0.7391526396554545],[126,19,73,-0.7388569210567426],[126,19,74,-0.7385636877319428],[126,19,75,-0.7382729445249694],[126,19,76,-0.7379846961810358],[126,19,77,-0.7376989473462154],[126,19,78,-0.7374157025670077],[126,19,79,-0.7371349662898977],[126,20,64,-0.7417409011543038],[126,20,65,-0.7414250991689108],[126,20,66,-0.7411117399515682],[126,20,67,-0.740800829125263],[126,20,68,-0.7404923722178078],[126,20,69,-0.74018637466141],[126,20,70,-0.7398828417922243],[126,20,71,-0.7395817788499118],[126,20,72,-0.7392831909771956],[126,20,73,-0.7389870832194324],[126,20,74,-0.7386934605241544],[126,20,75,-0.7384023277406425],[126,20,76,-0.7381136896194869],[126,20,77,-0.7378275508121478],[126,20,78,-0.7375439158705215],[126,20,79,-0.7372627892465002],[126,21,64,-0.7418747285467364],[126,21,65,-0.7415585401058915],[126,21,66,-0.7412447941762157],[126,21,67,-0.740933496385965],[126,21,68,-0.7406246522682318],[126,21,69,-0.7403182672605143],[126,21,70,-0.7400143467042688],[126,21,71,-0.7397128958444685],[126,21,72,-0.7394139198291592],[126,21,73,-0.739117423709031],[126,21,74,-0.7388234124369597],[126,21,75,-0.7385318908675806],[126,21,76,-0.7382428637568483],[126,21,77,-0.7379563357615979],[126,21,78,-0.7376723114391108],[126,21,79,-0.7373907952466743],[126,22,64,-0.7420087269771539],[126,22,65,-0.7416921529044369],[126,22,66,-0.7413780210830959],[126,22,67,-0.7410663371466425],[126,22,68,-0.740757106633436],[126,22,69,-0.7404503349862515],[126,22,70,-0.7401460275518343],[126,22,71,-0.7398441895804566],[126,22,72,-0.7395448262254741],[126,22,73,-0.7392479425428976],[126,22,74,-0.7389535434909343],[126,22,75,-0.7386616339295612],[126,22,76,-0.7383722186200851],[126,22,77,-0.738085302224704],[126,22,78,-0.7378008893060723],[126,22,79,-0.7375189843268609],[126,23,64,-0.742142896430816],[126,23,65,-0.7418259375531442],[126,23,66,-0.7415114206641297],[126,23,67,-0.7411993514025264],[126,23,68,-0.7408897353119468],[126,23,69,-0.7405825778404305],[126,23,70,-0.7402778843399977],[126,23,71,-0.7399756600662071],[126,23,72,-0.7396759101777115],[126,23,73,-0.7393786397358295],[126,23,74,-0.739083853704087],[126,23,75,-0.7387915569477906],[126,23,76,-0.738501754233587],[126,23,77,-0.7382144502290248],[126,23,78,-0.7379296495021194],[126,23,79,-0.7376473565209133],[126,24,64,-0.7422772368904396],[126,24,65,-0.7419598940380622],[126,24,66,-0.7416449929086846],[126,24,67,-0.7413325391462893],[126,24,68,-0.7410225382997282],[126,24,69,-0.7407149958222923],[126,24,70,-0.7404099170712637],[126,24,71,-0.7401073073074742],[126,24,72,-0.7398071716948611],[126,24,73,-0.739509515300038],[126,24,74,-0.7392143430918368],[126,24,75,-0.7389216599408809],[126,24,76,-0.7386314706191448],[126,24,77,-0.7383437797995156],[126,24,78,-0.7380585920553577],[126,24,79,-0.7377759118600732],[126,25,64,-0.7424117483362533],[126,25,65,-0.7420940223427472],[126,25,66,-0.7417787378036309],[126,25,67,-0.7414659003681012],[126,25,68,-0.741155515590237],[126,25,69,-0.7408475889285663],[126,25,70,-0.7405421257456204],[126,25,71,-0.7402391313074912],[126,25,72,-0.739938610783387],[126,25,73,-0.7396405692452038],[126,25,74,-0.7393450116670671],[126,25,75,-0.7390519429249045],[126,25,76,-0.7387613677960058],[126,25,77,-0.738473290958584],[126,25,78,-0.738187716991341],[126,25,79,-0.737904650373026],[126,26,64,-0.742546430745983],[126,26,65,-0.7422283224482473],[126,26,66,-0.741912655333325],[126,26,67,-0.7415994350556141],[126,26,68,-0.7412886671744062],[126,26,69,-0.7409803571534537],[126,26,70,-0.740674510360523],[126,26,71,-0.7403711320669533],[126,26,72,-0.7400702274472108],[126,26,73,-0.7397718015784613],[126,26,74,-0.7394758594401108],[126,26,75,-0.7391824059133787],[126,26,76,-0.7388914457808573],[126,26,77,-0.7386029837260739],[126,26,78,-0.7383170243330547],[126,26,79,-0.738033572085885],[126,27,64,-0.7426812840948354],[126,27,65,-0.7423627943330863],[126,27,66,-0.7420467454795947],[126,27,67,-0.7417331431939462],[126,27,68,-0.7414219930406309],[126,27,69,-0.7411133004886122],[126,27,70,-0.7408070709108789],[126,27,71,-0.7405033095840035],[126,27,72,-0.7402020216876977],[126,27,73,-0.7399032123043834],[126,27,74,-0.7396068864187346],[126,27,75,-0.7393130489172497],[126,27,76,-0.7390217045878119],[126,27,77,-0.7387328581192492],[126,27,78,-0.7384465141009006],[126,27,79,-0.738162677022175],[126,28,64,-0.7428163083555533],[126,28,65,-0.7424974379733197],[126,28,66,-0.7421810082217944],[126,28,67,-0.7418670247657368],[126,28,68,-0.7415554931748226],[126,28,69,-0.741246418923212],[126,28,70,-0.7409398073891025],[126,28,71,-0.740635663854287],[126,28,72,-0.7403339935037095],[126,28,73,-0.7400348014250353],[126,28,74,-0.7397380926081933],[126,28,75,-0.7394438719449484],[126,28,76,-0.7391521442284612],[126,28,77,-0.7388629141528491],[126,28,78,-0.7385761863127513],[126,28,79,-0.7382919652028881],[126,29,64,-0.7429515034983936],[126,29,65,-0.7426322533425109],[126,29,66,-0.7423154435367815],[126,29,67,-0.7420010797511241],[126,29,68,-0.7416891675603858],[126,29,69,-0.7413797124439105],[126,29,70,-0.7410727197850913],[126,29,71,-0.7407681948709278],[126,29,72,-0.7404661428915829],[126,29,73,-0.7401665689399524],[126,29,74,-0.739869478011207],[126,29,75,-0.7395748750023655],[126,29,76,-0.7392827647118536],[126,29,77,-0.738993151839065],[126,29,78,-0.7387060409839271],[126,29,79,-0.7384214366464593],[126,30,64,-0.743086869491149],[126,30,65,-0.7427672404117553],[126,30,66,-0.7424500513989397],[126,30,67,-0.7421353081277671],[126,30,68,-0.741823016178242],[126,30,69,-0.7415131810348783],[126,30,70,-0.7412058080862505],[126,30,71,-0.7409009026245523],[126,30,72,-0.7405984698451521],[126,30,73,-0.7402985148461627],[126,30,74,-0.7400010426279844],[126,30,75,-0.7397060580928762],[126,30,76,-0.7394135660445167],[126,30,77,-0.7391235711875633],[126,30,78,-0.7388360781272191],[126,30,79,-0.7385510913687905],[126,31,64,-0.7432224062991265],[126,31,65,-0.7429023991496565],[126,31,66,-0.7425848317801568],[126,31,67,-0.7422697098708237],[126,31,68,-0.7419570390068061],[126,31,69,-0.7416468246777734],[126,31,70,-0.7413390722774689],[126,31,71,-0.7410337871032661],[126,31,72,-0.7407309743557253],[126,31,73,-0.7404306391381642],[126,31,74,-0.7401327864561987],[126,31,75,-0.739837421217316],[126,31,76,-0.7395445482304339],[126,31,77,-0.7392541722054617],[126,31,78,-0.7389662977528654],[126,31,79,-0.7386809293832262],[126,32,64,-0.7433581138852016],[126,32,65,-0.7430377295223818],[126,32,66,-0.7427197846498784],[126,32,67,-0.7424042849530054],[126,32,68,-0.7420912360220414],[126,32,69,-0.7417806433517984],[126,32,70,-0.7414725123411737],[126,32,71,-0.7411668482927081],[126,32,72,-0.7408636564121405],[126,32,73,-0.7405629418079794],[126,32,74,-0.7402647094910437],[126,32,75,-0.7399689643740357],[126,32,76,-0.7396757112711001],[126,32,77,-0.739384954897385],[126,32,78,-0.7390966998686065],[126,32,79,-0.7388109507006086],[126,33,64,-0.743493992209803],[126,33,65,-0.7431732314936466],[126,33,66,-0.7428549099750936],[126,33,67,-0.7425390333445613],[126,33,68,-0.7422256071974445],[126,33,69,-0.7419146370336832],[126,33,70,-0.741606128257316],[126,33,71,-0.7413000861760364],[126,33,72,-0.7409965160007488],[126,33,73,-0.7406954228451396],[126,33,74,-0.7403968117252173],[126,33,75,-0.7401006875588861],[126,33,76,-0.7398070551655049],[126,33,77,-0.7395159192654479],[126,33,78,-0.7392272844796692],[126,33,79,-0.7389411553292629],[126,34,64,-0.7436300412308969],[126,34,65,-0.7433089050246988],[126,34,66,-0.7429902077203187],[126,34,67,-0.742673955013263],[126,34,68,-0.7423601525040286],[126,34,69,-0.7420488056976704],[126,34,70,-0.7417399200033534],[126,34,71,-0.7414335007339109],[126,34,72,-0.7411295531053992],[126,34,73,-0.740828082236669],[126,34,74,-0.7405290931489055],[126,34,75,-0.7402325907652016],[126,34,76,-0.7399385799101175],[126,34,77,-0.7396470653092405],[126,34,78,-0.7393580515887505],[126,34,79,-0.7390715432749786],[126,35,64,-0.7437662609040431],[126,35,65,-0.7434447500743739],[126,35,66,-0.7431256778476522],[126,35,67,-0.7428090499244595],[126,35,68,-0.7424948719103803],[126,35,69,-0.74218314931557],[126,35,70,-0.7418738875543067],[126,35,71,-0.7415670919445497],[126,35,72,-0.7412627677074938],[126,35,73,-0.7409609199671402],[126,35,74,-0.7406615537498378],[126,35,75,-0.7403646739838553],[126,35,76,-0.7400702854989409],[126,35,77,-0.7397783930258826],[126,35,78,-0.7394890011960726],[126,35,79,-0.7392021145410678],[126,36,64,-0.7439026511823701],[126,36,65,-0.7435807665990718],[126,36,66,-0.7432613203167522],[126,36,67,-0.7429443180410537],[126,36,68,-0.7426297653826341],[126,36,69,-0.7423176678567354],[126,36,70,-0.7420080308827353],[126,36,71,-0.7417008597837048],[126,36,72,-0.7413961597859635],[126,36,73,-0.7410939360186504],[126,36,74,-0.740794193513264],[126,36,75,-0.7404969372032358],[126,36,76,-0.7402021719234892],[126,36,77,-0.7399099024099998],[126,36,78,-0.7396201332993599],[126,36,79,-0.7393328691283387],[126,37,64,-0.7440392120166],[126,37,65,-0.7437169545527803],[126,37,66,-0.7433971350848594],[126,37,67,-0.7430797593235261],[126,37,68,-0.7427648328844978],[126,37,69,-0.7424523612880886],[126,37,70,-0.7421423499587616],[126,37,71,-0.7418348042246861],[126,37,72,-0.7415297293172929],[126,37,73,-0.7412271303708445],[126,37,74,-0.7409270124219767],[126,37,75,-0.7406293804092702],[126,37,76,-0.7403342391728103],[126,37,77,-0.7400415934537474],[126,37,78,-0.7397514478938614],[126,37,79,-0.7394638070351207],[126,38,64,-0.7441759433550243],[126,38,65,-0.7438533138870514],[126,38,66,-0.7435331221067736],[126,38,67,-0.7432153737299114],[126,38,68,-0.7429000743772276],[126,38,69,-0.7425872295740943],[126,38,70,-0.7422768447500463],[126,38,71,-0.7419689252383369],[126,38,72,-0.7416634762754946],[126,38,73,-0.7413605030008921],[126,38,74,-0.7410600104562883],[126,38,75,-0.7407620035854003],[126,38,76,-0.7404664872334623],[126,38,77,-0.7401734661467864],[126,38,78,-0.7398829449723269],[126,38,79,-0.7395949282572395],[126,39,64,-0.7443128451435601],[126,39,65,-0.7439898445510572],[126,39,66,-0.7436692813349091],[126,39,67,-0.7433511612158535],[126,39,68,-0.7430354898196843],[126,39,69,-0.7427222726768175],[126,39,70,-0.7424115152218447],[126,39,71,-0.7421032227930904],[126,39,72,-0.7417974006321661],[126,39,73,-0.7414940538835417],[126,39,74,-0.7411931875940858],[126,39,75,-0.7408948067126381],[126,39,76,-0.7405989160895687],[126,39,77,-0.7403055204763385],[126,39,78,-0.7400146245250631],[126,39,79,-0.7397262327880728],[126,40,64,-0.7444499173257335],[126,40,65,-0.7441265464915736],[126,40,66,-0.7438056127192789],[126,40,67,-0.7434871217345902],[126,40,68,-0.7431710791683169],[126,40,69,-0.7428574905559053],[126,40,70,-0.7425463613369904],[126,40,71,-0.7422376968549527],[126,40,72,-0.7419315023564736],[126,40,73,-0.7416277829911062],[126,40,74,-0.7413265438108152],[126,40,75,-0.7410277897695499],[126,40,76,-0.7407315257228027],[126,40,77,-0.74043775642717],[126,40,78,-0.7401464865399167],[126,40,79,-0.739857720618534],[126,41,64,-0.7445871598426638],[126,41,65,-0.7442634196529648],[126,41,66,-0.7439421162074793],[126,41,67,-0.7436232552369362],[126,41,68,-0.7433068423771471],[126,41,69,-0.7429928831685733],[126,41,70,-0.742681383055879],[126,41,71,-0.7423723473874871],[126,41,72,-0.7420657814151352],[126,41,73,-0.7417616902934453],[126,41,74,-0.7414600790794649],[126,41,75,-0.7411609527322393],[126,41,76,-0.74086431611237],[126,41,77,-0.7405701739815763],[126,41,78,-0.740278531002258],[126,41,79,-0.7399893917370561],[126,42,64,-0.7447245726331198],[126,42,65,-0.7444004639772387],[126,42,66,-0.7440787917447446],[126,42,67,-0.7437595616713402],[126,42,68,-0.7434427793978242],[126,42,69,-0.7431284504696595],[126,42,70,-0.7428165803365244],[126,42,71,-0.7425071743518705],[126,42,72,-0.7422002377724772],[126,42,73,-0.7418957757580221],[126,42,74,-0.7415937933706217],[126,42,75,-0.7412942955744037],[126,42,76,-0.7409972872350659],[126,42,77,-0.7407027731194362],[126,42,78,-0.7404107578950376],[126,42,79,-0.7401212461296465],[126,43,64,-0.7448621556334956],[126,43,65,-0.7445376794040229],[126,43,66,-0.7442156392739239],[126,43,67,-0.7438960409838598],[126,43,68,-0.7435788901796023],[126,43,69,-0.7432641924116006],[126,43,70,-0.7429519531345339],[126,43,71,-0.7426421777068678],[126,43,72,-0.7423348713904095],[126,43,73,-0.7420300393498784],[126,43,74,-0.7417276866524464],[126,43,75,-0.74142781826731],[126,43,76,-0.7411304390652493],[126,43,77,-0.7408355538181886],[126,43,78,-0.7405431671987603],[126,43,79,-0.7402532837798638],[126,44,64,-0.7449999087778344],[126,44,65,-0.7446750658705892],[126,44,66,-0.7443526587355045],[126,44,67,-0.7440326931181858],[126,44,68,-0.7437151746693627],[126,44,69,-0.7434001089444566],[126,44,70,-0.7430875014031327],[126,44,71,-0.7427773574088568],[126,44,72,-0.7424696822284498],[126,44,73,-0.742164481031659],[126,44,74,-0.7418617588906975],[126,44,75,-0.7415615207798175],[126,44,76,-0.7412637715748681],[126,44,77,-0.7409685160528562],[126,44,78,-0.7406757588915106],[126,44,79,-0.7403855046688406],[126,45,64,-0.7451378319978046],[126,45,65,-0.7448126233118287],[126,45,66,-0.7444898500675883],[126,45,67,-0.744169518015618],[126,45,68,-0.7438516328115908],[126,45,69,-0.7435362000158857],[126,45,70,-0.7432232250931395],[126,45,71,-0.7429127134118035],[126,45,72,-0.7426046702436989],[126,45,73,-0.7422991007635863],[126,45,74,-0.741996010048707],[126,45,75,-0.7416954030783545],[126,45,76,-0.7413972847334335],[126,45,77,-0.7411016597960203],[126,45,78,-0.7408085329489268],[126,45,79,-0.7405179087752594],[126,46,64,-0.7452759252227553],[126,46,65,-0.7449503516603084],[126,46,66,-0.7446272132059474],[126,46,67,-0.7443065156151213],[126,46,68,-0.7439882645484317],[126,46,69,-0.7436724655712007],[126,46,70,-0.743359124153022],[126,46,71,-0.7430482456673184],[126,46,72,-0.7427398353908969],[126,46,73,-0.7424338985035177],[126,46,74,-0.7421304400874361],[126,46,75,-0.7418294651269733],[126,46,76,-0.7415309785080763],[126,46,77,-0.7412349850178771],[126,46,78,-0.7409414893442576],[126,46,79,-0.7406504960754081],[126,47,64,-0.7454141883797012],[126,47,65,-0.7450882508462547],[126,47,66,-0.744764748084008],[126,47,67,-0.7444436858533092],[126,47,68,-0.744125069819674],[126,47,69,-0.7438089055533523],[126,47,70,-0.7434951985288809],[126,47,71,-0.7431839541246397],[126,47,72,-0.7428751776224067],[126,47,73,-0.7425688742069282],[126,47,74,-0.742265048965459],[126,47,75,-0.7419637068873348],[126,47,76,-0.7416648528635308],[126,47,77,-0.7413684916862215],[126,47,78,-0.7410746280483456],[126,47,79,-0.7407832665431637],[126,48,64,-0.7455526213933052],[126,48,65,-0.7452263207975374],[126,48,66,-0.744902454632834],[126,48,67,-0.7445810286644277],[126,48,68,-0.7442620485627329],[126,48,69,-0.7439455199029135],[126,48,70,-0.7436314481644342],[126,48,71,-0.743319838730617],[126,48,72,-0.7430106968881978],[126,48,73,-0.7427040278268938],[126,48,74,-0.7423998366389462],[126,48,75,-0.7420981283186908],[126,48,76,-0.7417989077621177],[126,48,77,-0.7415021797664301],[126,48,78,-0.7412079490296101],[126,48,79,-0.7409162201499757],[126,49,64,-0.7456912241859356],[126,49,65,-0.7453645614397253],[126,49,66,-0.7450403327811833],[126,49,67,-0.7447185439804113],[126,49,68,-0.7443992007127078],[126,49,69,-0.7440823085581352],[126,49,70,-0.7437678730010717],[126,49,71,-0.743455899429768],[126,49,72,-0.7431463931359018],[126,49,73,-0.7428393593141485],[126,49,74,-0.7425348030617208],[126,49,75,-0.7422327293779412],[126,49,76,-0.7419331431638002],[126,49,77,-0.7416360492215173],[126,49,78,-0.7413414522541037],[126,49,79,-0.7410493568649221],[126,50,64,-0.745829996677649],[126,50,65,-0.745502972696071],[126,50,66,-0.7451783824554917],[126,50,67,-0.7448562317308669],[126,50,68,-0.7445365262023642],[126,50,69,-0.7442192714549296],[126,50,70,-0.7439044729778405],[126,50,71,-0.7435921361642608],[126,50,72,-0.7432822663107969],[126,50,73,-0.742974868617067],[126,50,74,-0.7426699481852419],[126,50,75,-0.7423675100196163],[126,50,76,-0.7420675590261684],[126,50,77,-0.7417701000121188],[126,50,78,-0.7414751376854958],[126,50,79,-0.7411826766546924],[126,51,64,-0.7459689387861748],[126,51,65,-0.7456415544874935],[126,51,66,-0.7453166035798561],[126,51,67,-0.7449940918430572],[126,51,68,-0.7446740249621182],[126,51,69,-0.7443564085268545],[126,51,70,-0.7440412480314269],[126,51,71,-0.7437285488738987],[126,51,72,-0.7434183163557903],[126,51,73,-0.7431105556816484],[126,51,74,-0.7428052719585876],[126,51,75,-0.7425024701958614],[126,51,76,-0.7422021553044209],[126,51,77,-0.7419043320964753],[126,51,78,-0.7416090052850551],[126,51,79,-0.7413161794835714],[126,52,64,-0.7461080504269704],[126,52,65,-0.745780306732635],[126,52,66,-0.745454996076091],[126,52,67,-0.745132124241957],[126,52,68,-0.744811696920093],[126,52,69,-0.7444937197051685],[126,52,70,-0.7441781980962137],[126,52,71,-0.743865137496176],[126,52,72,-0.7435545432114751],[126,52,73,-0.7432464204515725],[126,52,74,-0.7429407743285121],[126,52,75,-0.742637609856492],[126,52,76,-0.7423369319514226],[126,52,77,-0.7420387454304875],[126,52,78,-0.7417430550117067],[126,52,79,-0.7414498653134952],[126,53,64,-0.746247331513198],[126,53,65,-0.7459192293478362],[126,53,66,-0.7455935598637041],[126,53,67,-0.7452703288502287],[126,53,68,-0.7449495420020937],[126,53,69,-0.7446312049188076],[126,53,70,-0.7443153231042549],[126,53,71,-0.7440019019662527],[126,53,72,-0.7436909468161056],[126,53,73,-0.7433824628681751],[126,53,74,-0.7430764552394202],[126,53,75,-0.7427729289489695],[126,53,76,-0.7424718889176789],[126,53,77,-0.7421733399676927],[126,53,78,-0.7418772868220065],[126,53,79,-0.7415837341040259],[126,54,64,-0.7463867819557479],[126,54,65,-0.7460583222471606],[126,54,66,-0.7457322948599201],[126,54,67,-0.7454087055882463],[126,54,68,-0.7450875601316317],[126,54,69,-0.7447688640944082],[126,54,70,-0.7444526229853002],[126,54,71,-0.7441388422169796],[126,54,72,-0.743827527105621],[126,54,73,-0.7435186828704714],[126,54,74,-0.7432123146333913],[126,54,75,-0.742908427418425],[126,54,76,-0.7426070261513602],[126,54,77,-0.7423081156592878],[126,54,78,-0.7420117006701653],[126,54,79,-0.7417177858123758],[126,55,64,-0.7465264016632142],[126,55,65,-0.7461975853423698],[126,55,66,-0.7458712009796563],[126,55,67,-0.745547254374071],[126,55,68,-0.7452257512298995],[126,55,69,-0.7449066971562831],[126,55,70,-0.74459009766677],[126,55,71,-0.7442759581788724],[126,55,72,-0.7439642840136202],[126,55,73,-0.7436550803951322],[126,55,74,-0.7433483524501545],[126,55,75,-0.7430441052076343],[126,55,76,-0.7427423435982763],[126,55,77,-0.7424430724541042],[126,55,78,-0.7421462965080241],[126,55,79,-0.7418520203933823],[126,56,64,-0.7466661905419508],[126,56,65,-0.7463370185429796],[126,56,66,-0.7460102781355784],[126,56,67,-0.7456859751235068],[126,56,68,-0.7453641152158281],[126,56,69,-0.745044704026477],[126,56,70,-0.7447277470738116],[126,56,71,-0.7444132497801687],[126,56,72,-0.7441012174714197],[126,56,73,-0.743791655376539],[126,56,74,-0.7434845686271458],[126,56,75,-0.7431799622570745],[126,56,76,-0.7428778412019333],[126,56,77,-0.7425782102986651],[126,56,78,-0.7422810742851099],[126,56,79,-0.7419864377995644],[126,57,64,-0.7468061484960556],[126,57,65,-0.7464766217562442],[126,57,66,-0.7461495262380853],[126,57,67,-0.745824867750085],[126,57,68,-0.7455026520060692],[126,57,69,-0.745182884624751],[126,57,70,-0.7448655711292828],[126,57,71,-0.7445507169468115],[126,57,72,-0.7442383274080345],[126,57,73,-0.7439284077467686],[126,57,74,-0.7436209630994901],[126,57,75,-0.7433159985049069],[126,57,76,-0.7430135189035169],[126,57,77,-0.7427135291371674],[126,57,78,-0.7424160339486193],[126,57,79,-0.7421210379811056],[126,58,64,-0.7469462754273536],[126,58,65,-0.7466163948871388],[126,58,66,-0.746288945195291],[126,58,67,-0.745963932165047],[126,58,68,-0.7456413615149795],[126,58,69,-0.7453212388685652],[126,58,70,-0.7450035697537352],[126,58,71,-0.7446883596024318],[126,58,72,-0.7443756137501638],[126,58,73,-0.7440653374355749],[126,58,74,-0.7437575357999848],[126,58,75,-0.7434522138869604],[126,58,76,-0.7431493766418746],[126,58,77,-0.7428490289114655],[126,58,78,-0.7425511754434011],[126,58,79,-0.7422558208858365],[126,59,64,-0.7470865712354533],[126,59,65,-0.746756337838417],[126,59,66,-0.7464285349130821],[126,59,67,-0.7461031682774006],[126,59,68,-0.7457802436546769],[126,59,69,-0.7454597666731352],[126,59,70,-0.7451417428654705],[126,59,71,-0.7448261776684058],[126,59,72,-0.7445130764222458],[126,59,73,-0.7442024443704467],[126,59,74,-0.7438942866591568],[126,59,75,-0.7435886083367879],[126,59,76,-0.7432854143535733],[126,59,77,-0.7429847095611282],[126,59,78,-0.7426864987120132],[126,59,79,-0.7423907864592922],[126,60,64,-0.7472270358177222],[126,60,65,-0.7468964505105852],[126,60,66,-0.7465682952950926],[126,60,67,-0.7462425759938959],[126,60,68,-0.7459192983350154],[126,60,69,-0.7455984679514075],[126,60,70,-0.7452800903805162],[126,60,71,-0.7449641710638294],[126,60,72,-0.7446507153464332],[126,60,73,-0.7443397284765818],[126,60,74,-0.744031215605237],[126,60,75,-0.743725181785641],[126,60,76,-0.7434216319728735],[126,60,77,-0.7431205710234124],[126,60,78,-0.7428220036946971],[126,60,79,-0.7425259346446865],[126,61,64,-0.747367669069311],[126,61,65,-0.7470367328019274],[126,61,66,-0.7467082262427283],[126,61,67,-0.7463821552190486],[126,61,68,-0.7460585254636092],[126,61,69,-0.7457373426140834],[126,61,70,-0.7454186122126487],[126,61,71,-0.7451023397055427],[126,61,72,-0.7447885304426178],[126,61,73,-0.7444771896769112],[126,61,74,-0.7441683225641842],[126,61,75,-0.7438619341624944],[126,61,76,-0.7435580294317535],[126,61,77,-0.7432566132332882],[126,61,78,-0.7429576903294022],[126,61,79,-0.7426612653829358],[126,62,64,-0.7475084708831283],[126,62,65,-0.7471771846084798],[126,62,66,-0.7468483276551412],[126,62,67,-0.7465219058551156],[126,62,68,-0.7461979249458084],[126,62,69,-0.7458763905695942],[126,62,70,-0.7455573082733687],[126,62,71,-0.7452406835081041],[126,62,72,-0.7449265216284046],[126,62,73,-0.7446148278920744],[126,62,74,-0.7443056074596601],[126,62,75,-0.74399886539402],[126,62,76,-0.7436946066598841],[126,62,77,-0.7433928361234123],[126,62,78,-0.7430935585517597],[126,62,79,-0.7427967786126336],[126,63,64,-0.747649441149898],[126,63,65,-0.7473178058240878],[126,63,66,-0.7469885994292872],[126,63,67,-0.7466618278021513],[126,63,68,-0.7463374966847547],[126,63,69,-0.7460156117241575],[126,63,70,-0.7456961784719581],[126,63,71,-0.7453792023838484],[126,63,72,-0.7450646888191681],[126,63,73,-0.7447526430404754],[126,63,74,-0.7444430702130859],[126,63,75,-0.7441359754046447],[126,63,76,-0.7438313635846848],[126,63,77,-0.7435292396241864],[126,63,78,-0.7432296082951405],[126,63,79,-0.7429324742701079],[126,64,64,-0.7477905797581419],[126,64,65,-0.7474585963403891],[126,64,66,-0.7471290414599085],[126,64,67,-0.7468019209579915],[126,64,68,-0.7464772405813652],[126,64,69,-0.7461550059817608],[126,64,70,-0.745835222715463],[126,64,71,-0.7455178962428681],[126,64,72,-0.7452030319280373],[126,64,73,-0.7448906350382661],[126,64,74,-0.7445807107436255],[126,64,75,-0.7442732641165323],[126,64,76,-0.743968300131308],[126,64,77,-0.7436658236637382],[126,64,78,-0.7433658394906367],[126,64,79,-0.7430683522894032],[126,65,64,-0.7479318865941632],[126,65,65,-0.7475995560467972],[126,65,66,-0.7472696536395174],[126,65,67,-0.7469421852182352],[126,65,68,-0.7466171565343156],[126,65,69,-0.7462945732441436],[126,65,70,-0.7459744409086762],[126,65,71,-0.745656764992998],[126,65,72,-0.7453415508658762],[126,65,73,-0.7450288037993292],[126,65,74,-0.7447185289681679],[126,65,75,-0.7444107314495664],[126,65,76,-0.7441054162226202],[126,65,77,-0.7438025881679059],[126,65,78,-0.7435022520670455],[126,65,79,-0.7432044126022634],[126,66,64,-0.7480733615421035],[126,66,65,-0.7477406848305574],[126,66,66,-0.7474104358584519],[126,66,67,-0.7470826204763028],[126,66,68,-0.7467572444400962],[126,66,69,-0.746434313410856],[126,66,70,-0.7461138329541949],[126,66,71,-0.7457958085398712],[126,66,72,-0.7454802455413423],[126,66,73,-0.7451671492353349],[126,66,74,-0.7448565248013849],[126,66,75,-0.7445483773214081],[126,66,76,-0.7442427117792599],[126,66,77,-0.7439395330602938],[126,66,78,-0.743638845950925],[126,66,79,-0.7433406551381894],[126,67,64,-0.7482150044839174],[126,67,65,-0.7478819825767229],[126,67,66,-0.7475513880048528],[126,67,67,-0.7472232266234105],[126,67,68,-0.7468975041929878],[126,67,69,-0.7465742263792314],[126,67,70,-0.7462533987523948],[126,67,71,-0.7459350267868936],[126,67,72,-0.7456191158608609],[126,67,73,-0.7453056712557159],[126,67,74,-0.7449946981557043],[126,67,75,-0.7446862016474698],[126,67,76,-0.7443801867196125],[126,67,77,-0.7440766582622476],[126,67,78,-0.74377562106657],[126,67,79,-0.7434770798244124],[126,68,64,-0.7483568152993972],[126,68,65,-0.7480234491681783],[126,68,66,-0.7476925099646855],[126,68,67,-0.747364003548594],[126,68,68,-0.7470379356850851],[126,68,69,-0.7467143120444126],[126,68,70,-0.7463931382014546],[126,68,71,-0.7460744196352691],[126,68,72,-0.745758161728649],[126,68,73,-0.7454443697676909],[126,68,74,-0.7451330489413359],[126,68,75,-0.7448242043409398],[126,68,76,-0.7445178409598328],[126,68,77,-0.7442139636928777],[126,68,78,-0.7439125773360347],[126,68,79,-0.7436136865859188],[126,69,64,-0.7484987938661471],[126,69,65,-0.7481650844856143],[126,69,66,-0.7478338016217163],[126,69,67,-0.7475049511386838],[126,69,68,-0.7471785388062716],[126,69,69,-0.7468545702993247],[126,69,70,-0.74653305119733],[126,69,71,-0.7462139869839726],[126,69,72,-0.7458973830466895],[126,69,73,-0.7455832446762396],[126,69,74,-0.7452715770662438],[126,69,75,-0.7449623853127558],[126,69,76,-0.7446556744138206],[126,69,77,-0.7443514492690344],[126,69,78,-0.7440497146791077],[126,69,79,-0.7437504753454238],[126,70,64,-0.7486409400596407],[126,70,65,-0.7483068884075849],[126,70,66,-0.7479752628575684],[126,70,67,-0.7476460692783617],[126,70,68,-0.7473193134442766],[126,70,69,-0.7469950010347333],[126,70,70,-0.7466731376338118],[126,70,71,-0.7463537287298083],[126,70,72,-0.7460367797147891],[126,70,73,-0.7457222958841596],[126,70,74,-0.7454102824362056],[126,70,75,-0.7451007444716631],[126,70,76,-0.7447936869932779],[126,70,77,-0.7444891149053643],[126,70,78,-0.744187033013369],[126,70,79,-0.743887446023429],[126,71,64,-0.7487832537532035],[126,71,65,-0.7484488608104902],[126,71,66,-0.7481168935517062],[126,71,67,-0.7477873578501446],[126,71,68,-0.7474602594846582],[126,71,69,-0.7471356041392267],[126,71,70,-0.7468133974025077],[126,71,71,-0.7464936447673924],[126,71,72,-0.7461763516305604],[126,71,73,-0.7458615232920489],[126,71,74,-0.7455491649547931],[126,71,75,-0.7452392817241965],[126,71,76,-0.7449318786076906],[126,71,77,-0.7446269605142932],[126,71,78,-0.7443245322541724],[126,71,79,-0.7440245985382047],[126,72,64,-0.7489257348179968],[126,72,65,-0.7485910015685603],[126,72,66,-0.7482586935814166],[126,72,67,-0.747928816734366],[126,72,68,-0.7476013768107861],[126,72,69,-0.7472763794991998],[126,72,70,-0.7469538303928257],[126,72,71,-0.7466337349891349],[126,72,72,-0.746316098689405],[126,72,73,-0.746000926798289],[126,72,74,-0.7456882245233564],[126,72,75,-0.7453779969746633],[126,72,76,-0.7450702491643117],[126,72,77,-0.7447649860060082],[126,72,78,-0.7444622123146278],[126,72,79,-0.7441619328057723],[126,73,64,-0.7490683831230738],[126,73,65,-0.7487333105539105],[126,73,66,-0.7484006628218673],[126,73,67,-0.7480704458092347],[126,73,68,-0.7477426653038987],[126,73,69,-0.7474173269989093],[126,73,70,-0.7470944364920307],[126,73,71,-0.7467739992852978],[126,73,72,-0.7464560207845701],[126,73,73,-0.7461405062991016],[126,73,74,-0.7458274610410804],[126,73,75,-0.7455168901252003],[126,73,76,-0.7452087985682185],[126,73,77,-0.7449031912885158],[126,73,78,-0.7446000731056595],[126,73,79,-0.7442994487399616],[126,74,64,-0.749211198535355],[126,74,65,-0.748875787636518],[126,74,66,-0.7485428011460811],[126,74,67,-0.748212244950808],[126,74,68,-0.7478841248430774],[126,74,69,-0.7475584465204501],[126,74,70,-0.7472352155852197],[126,74,71,-0.7469144375439687],[126,74,72,-0.7465961178071236],[126,74,73,-0.7462802616885233],[126,74,74,-0.7459668744049596],[126,74,75,-0.745655961075748],[126,74,76,-0.7453475267222867],[126,74,77,-0.7450415762676152],[126,74,78,-0.7447381145359786],[126,74,79,-0.7444371462523851],[126,75,64,-0.7493541809196518],[126,75,65,-0.7490184326842448],[126,75,66,-0.7486851084249596],[126,75,67,-0.7483542140330169],[126,75,68,-0.7480257553052716],[126,75,69,-0.7476997379437786],[126,75,70,-0.7473761675553451],[126,75,71,-0.7470550496510859],[126,75,72,-0.7467363896459781],[126,75,73,-0.74642019285843],[126,75,74,-0.7461064645098213],[126,75,75,-0.7457952097240748],[126,75,76,-0.745486433527214],[126,75,77,-0.7451801408469227],[126,75,78,-0.7448763365121087],[126,75,79,-0.7445750252524617],[126,76,64,-0.7494973301386417],[126,76,65,-0.7491612455628129],[126,76,66,-0.7488275845272585],[126,76,67,-0.74849635292764],[126,76,68,-0.7481675565652717],[126,76,69,-0.7478412011466868],[126,76,70,-0.7475172922831899],[126,76,71,-0.7471958354904117],[126,76,72,-0.7468768361878642],[126,76,73,-0.7465602996985097],[126,76,74,-0.7462462312483007],[126,76,75,-0.7459346359657513],[126,76,76,-0.7456255188814953],[126,76,77,-0.7453188849278459],[126,76,78,-0.7450147389383588],[126,76,79,-0.7447130856473905],[126,77,64,-0.749640646052925],[126,77,65,-0.7493042261358607],[126,77,66,-0.7489702293196443],[126,77,67,-0.748638661504361],[126,77,68,-0.7483095284957677],[126,77,69,-0.7479828360048604],[126,77,70,-0.7476585896474242],[126,77,71,-0.7473367949435901],[126,77,72,-0.7470174573173891],[126,77,73,-0.7467005820963217],[126,77,74,-0.7463861745108976],[126,77,75,-0.746074239694207],[126,77,76,-0.7457647826814789],[126,77,77,-0.7454578084096408],[126,77,78,-0.7451533217168812],[126,77,79,-0.7448513273422092],[126,78,64,-0.7497841285210081],[126,78,65,-0.749447374264927],[126,78,66,-0.749113042666677],[126,78,67,-0.7487811396307507],[126,78,68,-0.7484516709673316],[126,78,69,-0.7481246423918608],[126,78,70,-0.7478000595245884],[126,78,71,-0.7474779278901296],[126,78,72,-0.7471582529170187],[126,78,73,-0.7468410399372781],[126,78,74,-0.7465262941859595],[126,78,75,-0.7462140208007138],[126,78,76,-0.7459042248213499],[126,78,77,-0.7455969111893942],[126,78,78,-0.7452920847476538],[126,78,79,-0.7449897502397751],[126,79,64,-0.7499277773992857],[126,79,65,-0.7495906898094324],[126,79,66,-0.7492560244307933],[126,79,67,-0.748923787172251],[126,79,68,-0.748593983848399],[126,79,69,-0.7482666201791077],[126,79,70,-0.7479417017890755],[126,79,71,-0.7476192342073855],[126,79,72,-0.7472992228670592],[126,79,73,-0.746981673104626],[126,79,74,-0.7466665901596633],[126,79,75,-0.7463539791743672],[126,79,76,-0.7460438451931115],[126,79,77,-0.7457361931620062],[126,79,78,-0.7454310279284622],[126,79,79,-0.7451283542407481],[126,80,64,-0.7500715925420987],[126,80,65,-0.7497341726267382],[126,80,66,-0.7493991744723636],[126,80,67,-0.7490666039922315],[126,80,68,-0.7487364670053283],[126,80,69,-0.7484087692359369],[126,80,70,-0.7480835163131883],[126,80,71,-0.747760713770617],[126,80,72,-0.7474403670457164],[126,80,73,-0.7471224814795058],[126,80,74,-0.7468070623160732],[126,80,75,-0.7464941147021448],[126,80,76,-0.7461836436866432],[126,80,77,-0.7458756542202477],[126,80,78,-0.7455701511549572],[126,80,79,-0.7452671392436481],[126,81,64,-0.7502155738017084],[126,81,65,-0.7498778225721191],[126,81,66,-0.7495424926496663],[126,81,67,-0.7492095899519633],[126,81,68,-0.7488791203023728],[126,81,69,-0.7485510894295742],[126,81,70,-0.748225502967114],[126,81,71,-0.7479023664529625],[126,81,72,-0.7475816853290677],[126,81,73,-0.7472634649409243],[126,81,74,-0.7469477105371148],[126,81,75,-0.7466344272688793],[126,81,76,-0.7463236201896748],[126,81,77,-0.746015294254734],[126,81,78,-0.7457094543206286],[126,81,79,-0.7454061051448285],[126,82,64,-0.7503597210283206],[126,82,65,-0.7500216394987888],[126,82,66,-0.7496859788189123],[126,82,67,-0.7493527449106443],[126,82,68,-0.7490219436017072],[126,82,69,-0.7486935806251598],[126,82,70,-0.7483676616189483],[126,82,71,-0.7480441921254619],[126,82,72,-0.7477231775910878],[126,82,73,-0.7474046233657798],[126,82,74,-0.7470885347025988],[126,82,75,-0.7467749167572839],[126,82,76,-0.7464637745878102],[126,82,77,-0.7461551131539489],[126,82,78,-0.74584893731683],[126,82,79,-0.7455452518385011],[126,83,64,-0.7505040340700599],[126,83,65,-0.7501656232578731],[126,83,66,-0.7498296328342186],[126,83,67,-0.7494960687253722],[126,83,68,-0.7491649367633997],[126,83,69,-0.7488362426857222],[126,83,70,-0.7485099921346691],[126,83,71,-0.7481861906570323],[126,83,72,-0.747864843703622],[126,83,73,-0.747545956628835],[126,83,74,-0.7472295346901952],[126,83,75,-0.7469155830479244],[126,83,76,-0.746604106764501],[126,83,77,-0.7462951108042187],[126,83,78,-0.745988600032751],[126,83,79,-0.7456845792167085],[126,84,64,-0.7506485127730276],[126,84,65,-0.7503097736984685],[126,84,66,-0.7499734545476666],[126,84,67,-0.7496395612512035],[126,84,68,-0.7493080996454707],[126,84,69,-0.7489790754722359],[126,84,70,-0.7486524943781943],[126,84,71,-0.7483283619145247],[126,84,72,-0.748006683536444],[126,84,73,-0.7476874646027757],[126,84,74,-0.7473707103754909],[126,84,75,-0.7470564260192786],[126,84,76,-0.7467446166011045],[126,84,77,-0.7464352870897701],[126,84,78,-0.7461284423554768],[126,84,79,-0.7458240871693829],[126,85,64,-0.7507931569812836],[126,85,65,-0.7504540906676241],[126,85,66,-0.7501174438092844],[126,85,67,-0.7497832223411345],[126,85,68,-0.7494514321038752],[126,85,69,-0.7491220788436035],[126,85,70,-0.7487951682113644],[126,85,71,-0.7484707057627068],[126,85,72,-0.748148696957238],[126,85,73,-0.7478291471581923],[126,85,74,-0.7475120616319718],[126,85,75,-0.7471974455477172],[126,85,76,-0.7468853039768659],[126,85,77,-0.7465756418927119],[126,85,78,-0.7462684641699685],[126,85,79,-0.7459637755843275],[126,86,64,-0.7509379665368295],[126,86,65,-0.7505985740103244],[126,86,66,-0.7502616004670286],[126,86,67,-0.7499270518460845],[126,86,68,-0.7495949339924847],[126,86,69,-0.7492652526566386],[126,86,70,-0.7489380134939244],[126,86,71,-0.7486132220642449],[126,86,72,-0.748290883831581],[126,86,73,-0.7479710041635621],[126,86,74,-0.7476535883310051],[126,86,75,-0.7473386415074867],[126,86,76,-0.7470261687689004],[126,86,77,-0.7467161750930167],[126,86,78,-0.7464086653590465],[126,86,79,-0.7461036443471989],[126,87,64,-0.7510829412796665],[126,87,65,-0.7507432235695464],[126,87,66,-0.7504059243668433],[126,87,67,-0.7500710496149535],[126,87,68,-0.7497386051631449],[126,87,69,-0.7494085967661229],[126,87,70,-0.7490810300835818],[126,87,71,-0.7487559106797614],[126,87,72,-0.7484332440230008],[126,87,73,-0.7481130354853073],[126,87,74,-0.7477952903418973],[126,87,75,-0.747480013770767],[126,87,76,-0.7471672108522505],[126,87,77,-0.7468568865685796],[126,87,78,-0.746549045803447],[126,87,79,-0.7462436933415647],[126,88,64,-0.7512280810477767],[126,88,65,-0.7508880391862427],[126,88,66,-0.7505504153526407],[126,88,67,-0.7502152154946041],[126,88,68,-0.749882445465659],[126,88,69,-0.7495521110247891],[126,88,70,-0.7492242178359889],[126,88,71,-0.7488987714678184],[126,88,72,-0.7485757773929579],[126,88,73,-0.7482552409877772],[126,88,74,-0.7479371675318756],[126,88,75,-0.7476215622076532],[126,88,76,-0.7473084300998687],[126,88,77,-0.7469977761951999],[126,88,78,-0.7466896053818057],[126,88,79,-0.7463839224488856],[126,89,64,-0.7513733856771065],[126,89,65,-0.7510330206993237],[126,89,66,-0.7506950732662852],[126,89,67,-0.7503595493298445],[126,89,68,-0.7500264547477684],[126,89,69,-0.7496957952833028],[126,89,70,-0.7493675766047245],[126,89,71,-0.7490418042848977],[126,89,72,-0.7487184838008277],[126,89,73,-0.7483976205332299],[126,89,74,-0.7480792197660705],[126,89,75,-0.7477632866861376],[126,89,76,-0.7474498263825992],[126,89,77,-0.7471388438465625],[126,89,78,-0.7468303439706379],[126,89,79,-0.7465243315484968],[126,90,64,-0.7515188550016245],[126,90,65,-0.7511781679457149],[126,90,66,-0.7508398979476499],[126,90,67,-0.7505040509634855],[126,90,68,-0.7501706328552119],[126,90,69,-0.7498396493903199],[126,90,70,-0.7495111062413524],[126,90,71,-0.7491850089854608],[126,90,72,-0.7488613631039585],[126,90,73,-0.7485401739818903],[126,90,74,-0.7482214469075738],[126,90,75,-0.7479051870721685],[126,90,76,-0.7475913995692355],[126,90,77,-0.7472800893942966],[126,90,78,-0.7469712614443976],[126,90,79,-0.746664920517667],[126,91,64,-0.7516644888532945],[126,91,65,-0.7513234807603317],[126,91,66,-0.7509848892345916],[126,91,67,-0.7506487202363151],[126,91,68,-0.7503149796316989],[126,91,69,-0.7499836731924614],[126,91,70,-0.749654806595395],[126,91,71,-0.7493283854219209],[126,91,72,-0.7490044151576447],[126,91,73,-0.7486829011919245],[126,91,74,-0.7483638488174118],[126,91,75,-0.7480472632296222],[126,91,76,-0.7477331495264944],[126,91,77,-0.7474215127079485],[126,91,78,-0.7471123576754505],[126,91,79,-0.7468056892315701],[126,92,64,-0.7518102870621007],[126,92,65,-0.7514689589761031],[126,92,66,-0.751130046962974],[126,92,67,-0.7507935569871222],[126,92,68,-0.7504594949189336],[126,92,69,-0.7501278665343369],[126,92,70,-0.7497986775143568],[126,92,71,-0.7494719334446683],[126,92,72,-0.7491476398151519],[126,92,73,-0.7488258020194625],[126,92,74,-0.7485064253545697],[126,92,75,-0.748189515020329],[126,92,76,-0.7478750761190402],[126,92,77,-0.7475631136550066],[126,92,78,-0.7472536325340984],[126,92,79,-0.7469466375633114],[126,93,64,-0.7519562494560212],[126,93,65,-0.7516146024239454],[126,93,66,-0.7512753709666423],[126,93,67,-0.7509385610526711],[126,93,68,-0.7506041785565888],[126,93,69,-0.7502722292585184],[126,93,70,-0.7499427188436993],[126,93,71,-0.7496156529020434],[126,93,72,-0.7492910369276895],[126,93,73,-0.7489688763185729],[126,93,74,-0.748649176375965],[126,93,75,-0.7483319423040449],[126,93,76,-0.7480171792094578],[126,93,77,-0.7477048921008737],[126,93,78,-0.747395085888552],[126,93,79,-0.7470877653838989],[126,94,64,-0.752102375861086],[126,94,65,-0.7517604109328204],[126,94,66,-0.7514208610774806],[126,94,67,-0.7510837322677579],[126,94,68,-0.7507490303823641],[126,94,69,-0.7504167612055984],[126,94,70,-0.7500869304268979],[126,94,71,-0.7497595436403948],[126,94,72,-0.7494346063444695],[126,94,73,-0.7491121239413208],[126,94,74,-0.7487921017365057],[126,94,75,-0.7484745449385108],[126,94,76,-0.7481594586583102],[126,94,77,-0.7478468479089257],[126,94,78,-0.7475367176049895],[126,94,79,-0.747229072562303],[126,95,64,-0.7522486661013591],[126,95,65,-0.7519063843297179],[126,95,66,-0.7515665171253945],[126,95,67,-0.7512290704651947],[126,95,68,-0.7508940502319679],[126,95,69,-0.7505614622141717],[126,95,70,-0.7502313121054246],[126,95,71,-0.7499036055040613],[126,95,72,-0.7495783479126876],[126,95,73,-0.7492555447377491],[126,95,74,-0.748935201289072],[126,95,75,-0.7486173227794338],[126,95,76,-0.7483019143241222],[126,95,77,-0.7479889809404938],[126,95,78,-0.7476785275475384],[126,95,79,-0.7473705589654371],[126,96,64,-0.752395119998921],[126,96,65,-0.7520525224396374],[126,96,66,-0.7517123389382926],[126,96,67,-0.7513745754757903],[126,96,68,-0.751039237939099],[126,96,69,-0.7507063321208179],[126,96,70,-0.7503758637187294],[126,96,71,-0.7500478383353542],[126,96,72,-0.7497222614775061],[126,96,73,-0.7493991385558612],[126,96,74,-0.7490784748844981],[126,96,75,-0.7487602756804694],[126,96,76,-0.7484445460633598],[126,96,77,-0.748131291054845],[126,96,78,-0.7478205155782569],[126,96,79,-0.7475122244581398],[126,97,64,-0.7525417373739262],[126,97,65,-0.752198825085646],[126,97,66,-0.7518583263421457],[126,97,67,-0.7515202471284087],[126,97,68,-0.7511845933355052],[126,97,69,-0.7508513707601592],[126,97,70,-0.750520585104299],[126,97,71,-0.7501922419746146],[126,97,72,-0.7498663468821112],[126,97,73,-0.7495429052416782],[126,97,74,-0.7492219223716307],[126,97,75,-0.7489034034932794],[126,97,76,-0.7485873537304899],[126,97,77,-0.7482737781092416],[126,97,78,-0.7479626815571917],[126,97,79,-0.7476540689032333],[126,98,64,-0.7526885180445776],[126,98,65,-0.7523452920888526],[126,98,66,-0.752004479160959],[126,98,67,-0.7516660852499424],[126,98,68,-0.751330116250957],[126,98,69,-0.7509965779648335],[126,98,70,-0.75066547609763],[126,98,71,-0.750336816260188],[126,98,72,-0.7500106039676869],[126,98,73,-0.7496868446392134],[126,98,74,-0.7493655435973018],[126,98,75,-0.7490467060675051],[126,98,76,-0.7487303371779535],[126,98,77,-0.7484164419589134],[126,98,78,-0.7481050253423523],[126,98,79,-0.7477960921614957],[126,99,64,-0.7528354618271502],[126,99,65,-0.752491923268432],[126,99,66,-0.7521507972167979],[126,99,67,-0.7518120896653372],[126,99,68,-0.7514758065132712],[126,99,69,-0.7511419535655198],[126,99,70,-0.750810536532253],[126,99,71,-0.7504815610284472],[126,99,72,-0.7501550325734391],[126,99,73,-0.7498309565904955],[126,99,74,-0.7495093384063536],[126,99,75,-0.7491901832507918],[126,99,76,-0.7488734962561889],[126,99,77,-0.7485592824570827],[126,99,78,-0.7482475467897342],[126,99,79,-0.7479382940916861],[126,100,64,-0.7529825685359651],[126,100,65,-0.7526387184415981],[126,100,66,-0.7522972803297596],[126,100,67,-0.7519582601975652],[126,100,68,-0.7516216639482847],[126,100,69,-0.7512874973909103],[126,100,70,-0.7509557662397063],[126,100,71,-0.7506264761137666],[126,100,72,-0.7502996325365687],[126,100,73,-0.7499752409355421],[126,100,74,-0.7496533066416107],[126,100,75,-0.7493338348887617],[126,100,76,-0.749016830813606],[126,100,77,-0.7487022994549365],[126,100,78,-0.7483902457532923],[126,100,79,-0.7480806745505167],[126,101,64,-0.7531298379834473],[126,101,65,-0.7527856774236628],[126,101,66,-0.7524439283180334],[126,101,67,-0.752104596667683],[126,101,68,-0.7517676883799129],[126,101,69,-0.7514332092677692],[126,101,70,-0.7511011650495938],[126,101,71,-0.7507715613485805],[126,101,72,-0.75044440369233],[126,101,73,-0.7501196975124187],[126,101,74,-0.7497974481439394],[126,101,75,-0.7494776608250724],[126,101,76,-0.7491603406966438],[126,101,77,-0.7488454928016857],[126,101,78,-0.748533122084999],[126,101,79,-0.7482232333927125],[126,102,64,-0.7532772699801082],[126,102,65,-0.7529328000280172],[126,102,66,-0.7525907409978814],[126,102,67,-0.7522510988948145],[126,102,68,-0.7519138796301317],[126,102,69,-0.7515790890209153],[126,102,70,-0.7512467327895671],[126,102,71,-0.750916816563364],[126,102,72,-0.7505893458740128],[126,102,73,-0.7502643261572194],[126,102,74,-0.7499417627522291],[126,102,75,-0.7496216609013984],[126,102,76,-0.7493040257497525],[126,102,77,-0.7489888623445462],[126,102,78,-0.7486761756348264],[126,102,79,-0.748365970470991],[126,103,64,-0.7534248643345272],[126,103,65,-0.7530800860661142],[126,103,66,-0.7527377181836202],[126,103,67,-0.7523977666961313],[126,103,68,-0.7520602375189582],[126,103,69,-0.751725136473202],[126,103,70,-0.751392469285307],[126,103,71,-0.7510622415866154],[126,103,72,-0.7507344589129235],[126,103,73,-0.750409126704049],[126,103,74,-0.7500862503033735],[126,103,75,-0.7497658349574128],[126,103,76,-0.7494478858153748],[126,103,77,-0.7491324079287205],[126,103,78,-0.7488194062507268],[126,103,79,-0.7485088856360452],[126,104,64,-0.7535726208534099],[126,104,65,-0.7532275353475263],[126,104,66,-0.7528848596876804],[126,104,67,-0.7525445998869125],[126,104,68,-0.7522067618645105],[126,104,69,-0.7518713514455777],[126,104,70,-0.7515383743605821],[126,104,71,-0.7512078362449147],[126,104,72,-0.7508797426384435],[126,104,73,-0.7505540989850815],[126,104,74,-0.7502309106323293],[126,104,75,-0.7499101828308454],[126,104,76,-0.749591920734004],[126,104,77,-0.7492761293974561],[126,104,78,-0.7489628137786923],[126,104,79,-0.7486519787366013],[126,105,64,-0.753720539341562],[126,105,65,-0.7533751476799193],[126,105,66,-0.7530321653205786],[126,105,67,-0.7526915982805165],[126,105,68,-0.7523534524829807],[126,105,69,-0.7520177337570573],[126,105,70,-0.751684447837222],[126,105,71,-0.7513536003628964],[126,105,72,-0.7510251968780028],[126,105,73,-0.7506992428305331],[126,105,74,-0.7503757435720896],[126,105,75,-0.7500547043574565],[126,105,76,-0.749736130344158],[126,105,77,-0.7494200265920187],[126,105,78,-0.7491063980627264],[126,105,79,-0.7487952496193915],[126,106,64,-0.7538686196019131],[126,106,65,-0.7535229228690764],[126,106,66,-0.7531796348909429],[126,106,67,-0.7528387616884068],[126,106,68,-0.7525003091886578],[126,106,69,-0.7521642832247477],[126,106,70,-0.7518306895351414],[126,106,71,-0.7514995337632738],[126,106,72,-0.7511708214571045],[126,106,73,-0.7508445580686864],[126,106,74,-0.7505207489537072],[126,106,75,-0.7501993993710601],[126,106,76,-0.7498805144824023],[126,106,77,-0.7495640993517156],[126,106,78,-0.7492501589448693],[126,106,79,-0.7489386981291788],[126,107,64,-0.7540168614354904],[126,107,65,-0.7536708607188717],[126,107,66,-0.753327268205485],[126,107,67,-0.7529860899201244],[126,107,68,-0.752647331793903],[126,107,69,-0.7523109996638202],[126,107,70,-0.751977099272313],[126,107,71,-0.751645636266812],[126,107,72,-0.7513166161992965],[126,107,73,-0.7509900445258635],[126,107,74,-0.7506659266062685],[126,107,75,-0.7503442677034973],[126,107,76,-0.7500250729833238],[126,107,77,-0.7497083475138699],[126,107,78,-0.7493940962651701],[126,107,79,-0.749082324108729],[126,108,64,-0.7541652646414769],[126,108,65,-0.7538189610313286],[126,108,66,-0.7534750650690597],[126,108,67,-0.753133582783346],[126,108,68,-0.7527945201092063],[126,108,69,-0.7524578828875697],[126,108,70,-0.7521236768648267],[126,108,71,-0.7517919076923868],[126,108,72,-0.7514625809262312],[126,108,73,-0.751135702026484],[126,108,74,-0.7508112763569518],[126,108,75,-0.7504893091846954],[126,108,76,-0.7501698056795886],[126,108,77,-0.7498527709138777],[126,108,78,-0.7495382098617456],[126,108,79,-0.74922612739887],[126,109,64,-0.7543138290171937],[126,109,65,-0.7539672236066013],[126,109,66,-0.7536230252846461],[126,109,67,-0.7532812400838668],[126,109,68,-0.7529418739431695],[126,109,69,-0.7526049327073951],[126,109,70,-0.7522704221268709],[126,109,71,-0.751938347856966],[126,109,72,-0.7516087154576472],[126,109,73,-0.7512815303930478],[126,109,74,-0.7509567980310083],[126,109,75,-0.7506345236426484],[126,109,76,-0.7503147124019245],[126,109,77,-0.7499973693851905],[126,109,78,-0.7496824995707616],[126,109,79,-0.7493701078384724],[126,110,64,-0.7544625543580807],[126,110,65,-0.7541156482429572],[126,110,66,-0.7537711486533293],[126,110,67,-0.7534290616255807],[126,110,68,-0.753089393102487],[126,110,69,-0.7527521489327827],[126,110,70,-0.7524173348707132],[126,110,71,-0.7520849565755907],[126,110,72,-0.7517550196113494],[126,110,73,-0.7514275294461148],[126,110,74,-0.7511024914517441],[126,110,75,-0.7507799109033986],[126,110,76,-0.7504597929791007],[126,110,77,-0.7501421427592956],[126,110,78,-0.749826965226414],[126,110,79,-0.7495142652644311],[126,111,64,-0.7546114404577564],[126,111,65,-0.754264234736834],[126,111,66,-0.7539194349743588],[126,111,67,-0.7535770472105401],[126,111,68,-0.7532370773920046],[126,111,69,-0.7528995313713629],[126,111,70,-0.7525644149067603],[126,111,71,-0.7522317336614343],[126,111,72,-0.751901493203269],[126,111,73,-0.7515736990043649],[126,111,74,-0.7512483564405786],[126,111,75,-0.7509254707910956],[126,111,76,-0.7506050472379883],[126,111,77,-0.7502870908657757],[126,111,78,-0.7499716066609879],[126,111,79,-0.7496585995117244],[126,112,64,-0.7547604871079898],[126,112,65,-0.754412982882815],[126,112,66,-0.7540678840451219],[126,112,67,-0.7537251966389281],[126,112,68,-0.753384926614693],[126,112,69,-0.7530470798288842],[126,112,70,-0.7527116620435299],[126,112,71,-0.752378678925775],[126,112,72,-0.752048136047436],[126,112,73,-0.7517200388845701],[126,112,74,-0.7513943928170169],[126,112,75,-0.7510712031279692],[126,112,76,-0.7507504750035314],[126,112,77,-0.7504322135322807],[126,112,78,-0.7501164237048297],[126,112,79,-0.7498031104133858],[126,113,64,-0.7549096940987259],[126,113,65,-0.7545618924736512],[126,113,66,-0.7542164956611682],[126,113,67,-0.7538735097090837],[126,113,68,-0.7535329405716711],[126,113,69,-0.7531947941092377],[126,113,70,-0.7528590760876761],[126,113,71,-0.7525257921780208],[126,113,72,-0.7521949479560028],[126,113,73,-0.7518665489016193],[126,113,74,-0.751540600398675],[126,113,75,-0.7512171077343527],[126,113,76,-0.7508960760987726],[126,113,77,-0.7505775105845527],[126,113,78,-0.7502614161863718],[126,113,79,-0.7499477978005287],[126,114,64,-0.7550590612180579],[126,114,65,-0.7547109633002361],[126,114,66,-0.7543652696161821],[126,114,67,-0.7540219862174735],[126,114,68,-0.7536811190621798],[126,114,69,-0.7533426740144293],[126,114,70,-0.7530066568439612],[126,114,71,-0.7526730732256812],[126,114,72,-0.7523419287392179],[126,114,73,-0.7520132288684906],[126,114,74,-0.7516869790012515],[126,114,75,-0.7513631844286565],[126,114,76,-0.7510418503448248],[126,114,77,-0.7507229818463981],[126,114,78,-0.7504065839321046],[126,114,79,-0.7500926615023187],[126,115,64,-0.7552085882522865],[126,115,65,-0.7548601951516632],[126,115,66,-0.7545142057020416],[126,115,67,-0.7541706259587517],[126,115,68,-0.7538294618836404],[126,115,69,-0.753490719344639],[126,115,70,-0.7531544041153146],[126,115,71,-0.7528205218744273],[126,115,72,-0.7524890782054843],[126,115,73,-0.7521600785963098],[126,115,74,-0.7518335284385866],[126,115,75,-0.7515094330274267],[126,115,76,-0.7511877975609302],[126,115,77,-0.7508686271397462],[126,115,78,-0.7505519267666362],[126,115,79,-0.7502377013460327],[126,116,64,-0.7553582749859012],[126,116,65,-0.7550095878152082],[126,116,66,-0.7546633037088004],[126,116,67,-0.7543194287257411],[126,116,68,-0.7539779688316361],[126,116,69,-0.7536389298982017],[126,116,70,-0.7533023177028151],[126,116,71,-0.7529681379280717],[126,116,72,-0.7526363961613405],[126,116,73,-0.7523070978943331],[126,116,74,-0.7519802485226448],[126,116,75,-0.751655853345326],[126,116,76,-0.7513339175644419],[126,116,77,-0.7510144462846315],[126,116,78,-0.7506974445126726],[126,116,79,-0.75038291715704],[126,117,64,-0.7555081212015615],[126,117,65,-0.7551591410763102],[126,117,66,-0.7548125634246682],[126,117,67,-0.7544683943094137],[126,117,68,-0.7541266396998935],[126,117,69,-0.7537873054715892],[126,117,70,-0.7534503974056707],[126,117,71,-0.7531159211885509],[126,117,72,-0.7527838824114425],[126,117,73,-0.7524542865699263],[126,117,74,-0.7521271390634932],[126,117,75,-0.7518024451951151],[126,117,76,-0.7514802101708044],[126,117,77,-0.7511604390991734],[126,117,78,-0.7508431369909992],[126,117,79,-0.7505283087587825],[126,118,64,-0.7556581266801565],[126,118,65,-0.7553088547186304],[126,118,66,-0.7549619846360706],[126,118,67,-0.7546175224989512],[126,118,68,-0.7542754742803407],[126,118,69,-0.7539358458594689],[126,118,70,-0.7535986430212789],[126,118,71,-0.7532638714559837],[126,118,72,-0.7529315367586216],[126,118,73,-0.7526016444286252],[126,118,74,-0.7522741998693632],[126,118,75,-0.7519492083877115],[126,118,76,-0.7516266751936127],[126,118,77,-0.7513066053996356],[126,118,78,-0.7509890040205399],[126,118,79,-0.7506738759728351],[126,119,64,-0.7558082912007853],[126,119,65,-0.755458728524034],[126,119,66,-0.7551115671276301],[126,119,67,-0.7547668130817248],[126,119,68,-0.75442447236309],[126,119,69,-0.7540845508546845],[126,119,70,-0.7537470543452072],[126,119,71,-0.7534119885286525],[126,119,72,-0.7530793590038667],[126,119,73,-0.7527491712741162],[126,119,74,-0.75242143074663],[126,119,75,-0.7520961427321708],[126,119,76,-0.751773312444594],[126,119,77,-0.7514529450004078],[126,119,78,-0.7511350454183376],[126,119,79,-0.7508196186188852],[126,120,64,-0.7559586145407393],[126,120,65,-0.7556087622725711],[126,120,66,-0.7552613106821472],[126,120,67,-0.7549162658432772],[126,120,68,-0.7545736337364175],[126,120,69,-0.7542334202482381],[126,120,70,-0.7538956311711744],[126,120,71,-0.7535602722029847],[126,120,72,-0.7532273489463047],[126,120,73,-0.7528968669082174],[126,120,74,-0.7525688314997945],[126,120,75,-0.7522432480356674],[126,120,76,-0.7519201217335877],[126,120,77,-0.7515994577139855],[126,120,78,-0.7512812609995355],[126,120,79,-0.7509655365147148],[126,121,64,-0.7561090964755608],[126,121,65,-0.7557589557425358],[126,121,66,-0.7554112150806598],[126,121,67,-0.7550658805673817],[126,121,68,-0.7547229581868239],[126,121,69,-0.7543824538293484],[126,121,70,-0.7540443732911096],[126,121,71,-0.753708722273611],[126,121,72,-0.75337550638326],[126,121,73,-0.753044731130938],[126,121,74,-0.7527164019315414],[126,121,75,-0.7523905241035539],[126,121,76,-0.752067102868605],[126,121,77,-0.7517461433510303],[126,121,78,-0.7514276505774362],[126,121,79,-0.7511116294762586],[126,122,64,-0.7562597367790155],[126,122,65,-0.7559093087104389],[126,122,66,-0.7555612801024154],[126,122,67,-0.7552156570360145],[126,122,68,-0.7548724454990053],[126,122,69,-0.754531651385424],[126,122,70,-0.754193280495125],[126,122,71,-0.7538573385333387],[126,122,72,-0.7535238311102264],[126,122,73,-0.7531927637404499],[126,122,74,-0.7528641418427128],[126,122,75,-0.7525379707393332],[126,122,76,-0.7522142556558014],[126,122,77,-0.751893001720341],[126,122,78,-0.7515742139634736],[126,122,79,-0.7512578973175772],[126,123,64,-0.7564105352231174],[126,123,65,-0.7560598209510324],[126,123,66,-0.7557115055248959],[126,123,67,-0.755365595029379],[126,123,68,-0.7550220954558792],[126,123,69,-0.7546810127020873],[126,123,70,-0.7543423525715398],[126,123,71,-0.7540061207731757],[126,123,72,-0.753672322920892],[126,123,73,-0.7533409645331128],[126,123,74,-0.7530120510323317],[126,123,75,-0.7526855877446829],[126,123,76,-0.7523615798995004],[126,123,77,-0.752040032628879],[126,123,78,-0.7517209509672378],[126,123,79,-0.7514043398508802],[126,124,64,-0.756561491578101],[126,124,65,-0.7562104922372819],[126,124,66,-0.7558618911237898],[126,124,67,-0.7555156943258788],[126,124,68,-0.7551719078385555],[126,124,69,-0.754830537563147],[126,124,70,-0.7544915893068531],[126,124,71,-0.7541550687823031],[126,124,72,-0.7538209816071113],[126,124,73,-0.7534893333034467],[126,124,74,-0.7531601292975745],[126,124,75,-0.7528333749194275],[126,124,76,-0.7525090754021665],[126,124,77,-0.7521872358817394],[126,124,78,-0.7518678613964466],[126,124,79,-0.7515509568864993],[126,125,64,-0.7567126056124807],[126,125,65,-0.7563613223404256],[126,125,66,-0.756012436673052],[126,125,67,-0.7556659547021767],[126,125,68,-0.7553218824263969],[126,125,69,-0.7549802257506573],[126,125,70,-0.7546409904858025],[126,125,71,-0.7543041823481336],[126,125,72,-0.7539698069589644],[126,125,73,-0.7536378698441901],[126,125,74,-0.7533083764338298],[126,125,75,-0.7529813320615979],[126,125,76,-0.7526567419644636],[126,125,77,-0.7523346112822114],[126,125,78,-0.752014945057005],[126,125,79,-0.7516977482329474],[126,126,64,-0.7568638770930318],[126,126,65,-0.7565123110299565],[126,126,66,-0.7561631419448841],[126,126,67,-0.7558163759331753],[126,126,68,-0.7554720189969992],[126,126,69,-0.7551300770448992],[126,126,70,-0.7547905558913458],[126,126,71,-0.754453461256294],[126,126,72,-0.754118798764738],[126,126,73,-0.7537865739462818],[126,126,74,-0.7534567922346804],[126,126,75,-0.753129458967412],[126,126,76,-0.7528045793852367],[126,126,77,-0.7524821586317579],[126,126,78,-0.7521622017529863],[126,126,79,-0.751844713696899],[126,127,64,-0.757015305784772],[126,127,65,-0.7566634580736021],[126,127,66,-0.7563140067097157],[126,127,67,-0.755966957791999],[126,127,68,-0.7556223173261729],[126,127,69,-0.755280091224361],[126,127,70,-0.7549402853046416],[126,127,71,-0.7546029052906043],[126,127,72,-0.7542679568109061],[126,127,73,-0.7539354453988413],[126,127,74,-0.7536053764918831],[126,127,75,-0.7532777554312552],[126,127,76,-0.7529525874614916],[126,127,77,-0.7526298777299972],[126,127,78,-0.752309631286612],[126,127,79,-0.7519918530831706],[126,128,64,-0.7571668914510202],[126,128,65,-0.7568147632373844],[126,128,66,-0.7564650307362643],[126,128,67,-0.7561177000500519],[126,128,68,-0.7557727771880017],[126,128,69,-0.7554302680657983],[126,128,70,-0.7550901785051084],[126,128,71,-0.7547525142331384],[126,128,72,-0.7544172808821896],[126,128,73,-0.7540844839892284],[126,128,74,-0.7537541289954282],[126,128,75,-0.7534262212457404],[126,128,76,-0.7531007659884553],[126,128,77,-0.7527777683747617],[126,128,78,-0.7524572334583121],[126,128,79,-0.7521391661947812],[126,129,64,-0.757318633853369],[126,129,65,-0.756966226285592],[126,129,66,-0.7566162137915067],[126,129,67,-0.7562686024769918],[126,129,68,-0.7559233983548157],[126,129,69,-0.7555806073442053],[126,129,70,-0.7552402352703973],[126,129,71,-0.7549022878641959],[126,129,72,-0.7545667707615286],[126,129,73,-0.7542336895030154],[126,129,74,-0.7539030495335118],[126,129,75,-0.7535748562016796],[126,129,76,-0.7532491147595475],[126,129,77,-0.7529258303620706],[126,129,78,-0.7526050080666963],[126,129,79,-0.7522866528329228],[126,130,64,-0.7574705327517094],[126,130,65,-0.7571178469808052],[126,130,66,-0.7567675556407044],[126,130,67,-0.7564196648407531],[126,130,68,-0.7560741805972151],[126,130,69,-0.75573110883284],[126,130,70,-0.7553904553764159],[126,130,71,-0.7550522259623262],[126,130,72,-0.7547164262301059],[126,130,73,-0.7543830617240109],[126,130,74,-0.7540521378925604],[126,130,75,-0.7537236600881088],[126,130,76,-0.7533976335664048],[126,130,77,-0.7530740634861532],[126,130,78,-0.7527529549085789],[126,130,79,-0.7524343127969861],[126,131,64,-0.7576225879042032],[126,131,65,-0.7572696250838673],[126,131,66,-0.7569190560473752],[126,131,67,-0.7565708869075203],[126,131,68,-0.7562251236840428],[126,131,69,-0.7558817723031961],[126,131,70,-0.7555408385973007],[126,131,71,-0.7552023283043009],[126,131,72,-0.7548662470673204],[126,131,73,-0.7545326004342326],[126,131,74,-0.7542013938572024],[126,131,75,-0.7538726326922586],[126,131,76,-0.753546322198853],[126,131,77,-0.7532224675394219],[126,131,78,-0.7529010737789501],[126,131,79,-0.7525821458845311],[126,132,64,-0.757774799067342],[126,132,65,-0.7574215603539449],[126,132,66,-0.7570707147733525],[126,132,67,-0.7567222684417866],[126,132,68,-0.7563762273824436],[126,132,69,-0.7560325975250625],[126,132,70,-0.7556913847054769],[126,132,71,-0.7553525946651731],[126,132,72,-0.7550162330508454],[126,132,73,-0.754682305413966],[126,132,74,-0.7543508172103277],[126,132,75,-0.7540217737996155],[126,132,76,-0.7536951804449665],[126,132,77,-0.7533710423125308],[126,132,78,-0.7530493644710361],[126,132,79,-0.7527301518913475],[126,133,64,-0.7579271659959285],[126,133,65,-0.7575736525485086],[126,133,66,-0.7572225315787672],[126,133,67,-0.7568738092063348],[126,133,68,-0.7565274914578456],[126,133,69,-0.7561835842665039],[126,133,70,-0.7558420934716384],[126,133,71,-0.7555030248182585],[126,133,72,-0.75516638395661],[126,133,73,-0.754832176441746],[126,133,74,-0.7545004077330687],[126,133,75,-0.7541710831939017],[126,133,76,-0.753844208091049],[126,133,77,-0.7535197875943573],[126,133,78,-0.7531978267762793],[126,133,79,-0.7528783306114348],[126,134,64,-0.7580796884430571],[126,134,65,-0.7577259014233134],[126,134,66,-0.7573745062220272],[126,134,67,-0.7570255089622188],[126,134,68,-0.7566789156739399],[126,134,69,-0.7563347322938421],[126,134,70,-0.7559929646647293],[126,134,71,-0.7556536185351153],[126,134,72,-0.7553166995587793],[126,134,73,-0.7549822132943367],[126,134,74,-0.7546501652047806],[126,134,75,-0.754320560657055],[126,134,76,-0.7539934049216135],[126,134,77,-0.7536687031719811],[126,134,78,-0.7533464604843186],[126,134,79,-0.7530266818369827],[126,135,64,-0.7582323661601739],[126,135,65,-0.7578783067324586],[126,135,66,-0.757526638459878],[126,135,67,-0.757177367468822],[126,135,68,-0.7568304997927413],[126,135,69,-0.7564860413717147],[126,135,70,-0.7561439980520028],[126,135,71,-0.7558043755856048],[126,135,72,-0.7554671796298147],[126,135,73,-0.7551324157467912],[126,135,74,-0.754800089403101],[126,135,75,-0.7544702059692896],[126,135,76,-0.7541427707194426],[126,135,77,-0.7538177888307456],[126,135,78,-0.7534952653830496],[126,135,79,-0.7531752053584312],[126,136,64,-0.7583851988970483],[126,136,65,-0.7580308682283602],[126,136,66,-0.7576789280473744],[126,136,67,-0.7573293844838309],[126,136,68,-0.7569822435745596],[126,136,69,-0.7566375112630479],[126,136,70,-0.7562951933989936],[126,136,71,-0.7559552957378626],[126,136,72,-0.7556178239404446],[126,136,73,-0.7552827835724241],[126,136,74,-0.7549501801039216],[126,136,75,-0.7546200189090673],[126,136,76,-0.7542923052655599],[126,136,77,-0.7539670443542279],[126,136,78,-0.7536442412585956],[126,136,79,-0.7533239009644417],[126,137,64,-0.7585381864017979],[126,137,65,-0.7581835856617748],[126,137,66,-0.7578313747379046],[126,137,67,-0.7574815597632578],[126,137,68,-0.7571341467780244],[126,137,69,-0.7567891417290804],[126,137,70,-0.7564465504695422],[126,137,71,-0.7561063787583232],[126,137,72,-0.7557686322596906],[126,137,73,-0.7554333165428349],[126,137,74,-0.7551004370814134],[126,137,75,-0.7547699992531218],[126,137,76,-0.7544420083392543],[126,137,77,-0.754116469524265],[126,137,78,-0.7537933878953328],[126,137,79,-0.7534727684419215],[126,138,64,-0.7586913284208604],[126,138,65,-0.758336458781772],[126,138,66,-0.7579839782831629],[126,138,67,-0.7576338930614146],[126,138,68,-0.7572862091600568],[126,138,69,-0.7569409325293358],[126,138,70,-0.7565980690257669],[126,138,71,-0.7562576244116921],[126,138,72,-0.7559196043548371],[126,138,73,-0.7555840144278805],[126,138,74,-0.7552508601079971],[126,138,75,-0.7549201467764304],[126,138,76,-0.7545918797180521],[126,138,77,-0.7542660641209235],[126,138,78,-0.7539427050758609],[126,138,79,-0.7536218075759956],[126,139,64,-0.7588446246990532],[126,139,65,-0.758489487335794],[126,139,66,-0.758136738433209],[126,139,67,-0.7577863841309705],[126,139,68,-0.7574384304759294],[126,139,69,-0.7570928834216817],[126,139,70,-0.7567497488281231],[126,139,71,-0.7564090324610051],[126,139,72,-0.7560707399914928],[126,139,73,-0.7557348769957344],[126,139,74,-0.755401448954404],[126,139,75,-0.7550704612522742],[126,139,76,-0.754741919177776],[126,139,77,-0.7544158279225606],[126,139,78,-0.7540921925810635],[126,139,79,-0.7537710181500662],[126,140,64,-0.7589980749795546],[126,140,65,-0.7586426710696365],[126,140,66,-0.7582896549364485],[126,140,67,-0.7579390327229346],[126,140,68,-0.7575908104792465],[126,140,69,-0.757244994162311],[126,140,70,-0.7569015896353843],[126,140,71,-0.756560602667609],[126,140,72,-0.7562220389335707],[126,140,73,-0.7558859040128679],[126,140,74,-0.7555522033896559],[126,140,75,-0.755220942452218],[126,140,76,-0.7548921264925268],[126,140,77,-0.7545657607058044],[126,140,78,-0.7542418501900888],[126,140,79,-0.7539203999457935],[126,141,64,-0.7591516790038833],[126,141,65,-0.7587960097274286],[126,141,66,-0.7584427275396141],[126,141,67,-0.7580918385866352],[126,141,68,-0.7577433489219249],[126,141,69,-0.7573972645057215],[126,141,70,-0.7570535912046227],[126,141,71,-0.7567123347911424],[126,141,72,-0.7563735009432679],[126,141,73,-0.75603709524403],[126,141,74,-0.7557031231810456],[126,141,75,-0.7553715901460911],[126,141,76,-0.7550425014346618],[126,141,77,-0.7547158622455337],[126,141,78,-0.7543916776803287],[126,141,79,-0.754069952743075],[126,142,64,-0.7593054365119596],[126,142,65,-0.7589495030516936],[126,142,66,-0.7585959559878247],[126,142,67,-0.7582448014697798],[126,142,68,-0.7578960455542537],[126,142,69,-0.7575496942047768],[126,142,70,-0.7572057532912683],[126,142,71,-0.7568642285895948],[126,142,72,-0.7565251257811263],[126,142,73,-0.7561884504523066],[126,142,74,-0.7558542080941967],[126,142,75,-0.7555224041020465],[126,142,76,-0.7551930437748566],[126,142,77,-0.7548661323149382],[126,142,78,-0.7545416748274796],[126,142,79,-0.7542196763201062],[126,143,64,-0.7594593472420764],[126,143,65,-0.7591031507833201],[126,143,66,-0.7587493400245575],[126,143,67,-0.7583979211184274],[126,143,68,-0.7580489001248664],[126,143,69,-0.7577022830106768],[126,143,70,-0.7573580756490812],[126,143,71,-0.757016283819279],[126,143,72,-0.7566769132060038],[126,143,73,-0.7563399693990939],[126,143,74,-0.756005457893035],[126,143,75,-0.7556733840865332],[126,143,76,-0.7553437532820751],[126,143,77,-0.7550165706854898],[126,143,78,-0.7546918414055137],[126,143,79,-0.7543695704533517],[126,144,64,-0.759613410930924],[126,144,65,-0.759256952661587],[126,144,66,-0.758902879391673],[126,144,67,-0.7585511972770125],[126,144,68,-0.7582019123807644],[126,144,69,-0.7578550306729838],[126,144,70,-0.7575105580301761],[126,144,71,-0.7571685002348549],[126,144,72,-0.7568288629750988],[126,144,73,-0.7564916518441209],[126,144,74,-0.7561568723398135],[126,144,75,-0.75582452986432],[126,144,76,-0.7554946297235952],[126,144,77,-0.7551671771269672],[126,144,78,-0.7548421771867033],[126,144,79,-0.7545196349175698],[126,145,64,-0.7597676273135621],[126,145,65,-0.7594109084241347],[126,145,66,-0.7590565738293856],[126,145,67,-0.7587046296883169],[126,145,68,-0.7583550820672896],[126,145,69,-0.758007936939592],[126,145,70,-0.7576632001849936],[126,145,71,-0.7573208775893021],[126,145,72,-0.7569809748439216],[126,145,73,-0.7566434975454222],[126,145,74,-0.7563084511950834],[126,145,75,-0.7559758411984674],[126,145,76,-0.7556456728649787],[126,145,77,-0.7553179514074271],[126,145,78,-0.7549926819415917],[126,145,79,-0.7546698694857831],[126,146,64,-0.7599219961234789],[126,146,65,-0.7595650178070257],[126,146,66,-0.7592104230763248],[126,146,67,-0.7588582180935297],[126,146,68,-0.7585084089281843],[126,146,69,-0.7581610015567898],[126,146,70,-0.7578160018623601],[126,146,71,-0.7574734156339783],[126,146,72,-0.7571332485663547],[126,146,73,-0.7567955062593971],[126,146,74,-0.7564601942177538],[126,146,75,-0.7561273178503871],[126,146,76,-0.755796882470133],[126,146,77,-0.755468893293264],[126,146,78,-0.7551433554390541],[126,146,79,-0.7548202739293396],[126,147,64,-0.7600765170925724],[126,147,65,-0.7597192805447245],[126,147,66,-0.7593644268695146],[126,147,67,-0.759011962232228],[126,147,68,-0.7586618927055708],[126,147,69,-0.7583142242692383],[126,147,70,-0.7579689628094686],[126,147,71,-0.757626114118601],[126,147,72,-0.757285683894633],[126,147,73,-0.7569476777407909],[126,147,74,-0.7566121011650729],[126,147,75,-0.7562789595798229],[126,147,76,-0.75594825830129],[126,147,77,-0.7556200025491913],[126,147,78,-0.755294197446277],[126,147,79,-0.754970848017892],[126,148,64,-0.7602311899511311],[126,148,65,-0.7598736963700783],[126,148,66,-0.7595185849443545],[126,148,67,-0.7591658618423565],[126,148,68,-0.7588155331399327],[126,148,69,-0.7584676048199523],[126,148,70,-0.7581220827718584],[126,148,71,-0.7577789727912271],[126,148,72,-0.7574382805793236],[126,148,73,-0.7571000117426738],[126,148,74,-0.756764171792607],[126,148,75,-0.75643076614483],[126,148,76,-0.7560998001189863],[126,148,77,-0.7557712789382196],[126,148,78,-0.7554452077287384],[126,148,79,-0.7551215915193779],[126,149,64,-0.760386014427893],[126,149,65,-0.7600282650143773],[126,149,66,-0.7596728970346797],[126,149,67,-0.7593199166602884],[126,149,68,-0.7589693299701743],[126,149,69,-0.7586211429503605],[126,149,70,-0.7582753614934759],[126,149,71,-0.7579319913983131],[126,149,72,-0.7575910383693865],[126,149,73,-0.757252508016502],[126,149,74,-0.7569164058543016],[126,149,75,-0.7565827373018358],[126,149,76,-0.7562515076821243],[126,149,77,-0.7559227222217189],[126,149,78,-0.7555963860502682],[126,149,79,-0.7552725042000799],[126,150,64,-0.7605409902500267],[126,150,65,-0.7601829862073342],[126,150,66,-0.7598273628727406],[126,150,67,-0.7594741264208051],[126,150,68,-0.7591232829336012],[126,150,69,-0.7587748384002859],[126,150,70,-0.7584287987166538],[126,150,71,-0.7580851696846955],[126,150,72,-0.7577439570121545],[126,150,73,-0.7574051663120979],[126,150,74,-0.757068803102461],[126,150,75,-0.7567348728056197],[126,150,76,-0.7564033807479513],[126,150,77,-0.7560743321593971],[126,150,78,-0.7557477321730282],[126,150,79,-0.7554235858246059],[126,151,64,-0.7606961171431117],[126,151,65,-0.7603378596770654],[126,151,66,-0.759981982189184],[126,151,67,-0.759628490857077],[126,151,68,-0.7592773917659003],[126,151,69,-0.7589286909079253],[126,151,70,-0.7585823941820926],[126,151,71,-0.7582385073935706],[126,151,72,-0.7578970362533128],[126,151,73,-0.757557986377629],[126,151,74,-0.7572213632877282],[126,151,75,-0.7568871724092929],[126,151,76,-0.7565554190720396],[126,151,77,-0.7562261085092807],[126,151,78,-0.7558992458574911],[126,151,79,-0.7555748361558685],[126,152,64,-0.7608513948311982],[126,152,65,-0.7604928851501509],[126,152,66,-0.7601367547131125],[126,152,67,-0.759783009700723],[126,152,68,-0.7594316562012002],[126,152,69,-0.7590827002099101],[126,152,70,-0.7587361476289193],[126,152,71,-0.7583920042665548],[126,152,72,-0.7580502758369607],[126,152,73,-0.7577109679596693],[126,152,74,-0.7573740861591455],[126,152,75,-0.7570396358643593],[126,152,76,-0.7567076224083472],[126,152,77,-0.7563780510277749],[126,152,78,-0.7560509268625023],[126,152,79,-0.7557262549551459],[126,153,64,-0.7610068230367791],[126,153,65,-0.7606480623516056],[126,153,66,-0.7602916801720568],[126,153,67,-0.7599376826817825],[126,153,68,-0.7595860759720428],[126,153,69,-0.7592368660412774],[126,153,70,-0.75889005879466],[126,153,71,-0.758545660043656],[126,153,72,-0.7582036755055808],[126,153,73,-0.7578641108031705],[126,153,74,-0.7575269714641257],[126,153,75,-0.7571922629206859],[126,153,76,-0.7568599905091887],[126,153,77,-0.7565301594696343],[126,153,78,-0.7562027749452499],[126,153,79,-0.7558778419820521],[126,154,64,-0.7611624014808143],[126,154,65,-0.7608033910049042],[126,154,66,-0.7604467582919996],[126,154,67,-0.7600925095287397],[126,154,68,-0.7597406508094069],[126,154,69,-0.7593911881354949],[126,154,70,-0.7590441274152637],[126,154,71,-0.7586994744632983],[126,154,72,-0.7583572350000654],[126,154,73,-0.7580174146514855],[126,154,74,-0.7576800189484766],[126,154,75,-0.7573450533265277],[126,154,76,-0.7570125231252596],[126,154,77,-0.756682433587988],[126,154,78,-0.7563547898612895],[126,154,79,-0.7560295969945623],[126,155,64,-0.7613181298827016],[126,155,65,-0.7609588708319518],[126,155,66,-0.7606019887973468],[126,155,67,-0.7602474899684951],[126,155,68,-0.7598953804426807],[126,155,69,-0.7595456662244313],[126,155,70,-0.7591983532250739],[126,155,71,-0.7588534472622924],[126,155,72,-0.7585109540596862],[126,155,73,-0.7581708792463404],[126,155,74,-0.7578332283563712],[126,155,75,-0.7574980068284985],[126,155,76,-0.7571652200056073],[126,155,77,-0.7568348731343103],[126,155,78,-0.7565069713645146],[126,155,79,-0.7561815197489826],[126,156,64,-0.7614740079603385],[126,156,65,-0.7611145015531451],[126,156,66,-0.7607573714109882],[126,156,67,-0.7604026237264252],[126,156,68,-0.7600502645997209],[126,156,69,-0.7597003000384175],[126,156,70,-0.7593527359568882],[126,156,71,-0.7590075781758969],[126,156,72,-0.7586648324221554],[126,156,73,-0.7583245043278948],[126,156,74,-0.7579865994304096],[126,156,75,-0.7576511231716317],[126,156,76,-0.7573180808976917],[126,156,77,-0.7569874778584808],[126,156,78,-0.7566593192072182],[126,156,79,-0.7563336100000118],[126,157,64,-0.7616300354301003],[126,157,65,-0.761270282887352],[126,157,66,-0.760912905854278],[126,157,67,-0.7605579105263635],[126,157,68,-0.7602053030068342],[126,157,69,-0.7598550893062261],[126,157,70,-0.7595072753419395],[126,157,71,-0.7591618669377979],[126,157,72,-0.758818869823606],[126,157,73,-0.7584782896347211],[126,157,74,-0.7581401319115976],[126,157,75,-0.75780440209936],[126,157,76,-0.7574711055473653],[126,157,77,-0.7571402475087647],[126,157,78,-0.7568118331400712],[126,157,79,-0.7564858675007201],[126,158,64,-0.7617862120068218],[126,158,65,-0.7614262145518921],[126,158,66,-0.7610685918470137],[126,158,67,-0.7607133500905794],[126,158,68,-0.7603604953887557],[126,158,69,-0.7600100337550518],[126,158,70,-0.7596619711098749],[126,158,71,-0.7593163132800884],[126,158,72,-0.7589730659985705],[126,158,73,-0.7586322349037852],[126,158,74,-0.758293825539327],[126,158,75,-0.7579578433534946],[126,158,76,-0.757624293698852],[126,158,77,-0.7572931818317923],[126,158,78,-0.7569645129121032],[126,158,79,-0.7566382920025292],[126,159,64,-0.7619425374038572],[126,159,65,-0.7615822962625967],[126,159,66,-0.7612244291074977],[126,159,67,-0.7608689421398401],[126,159,68,-0.7605158414687105],[126,159,69,-0.7601651331105714],[126,159,70,-0.7598168229888166],[126,159,71,-0.7594709169333297],[126,159,72,-0.7591274206800425],[126,159,73,-0.7587863398705061],[126,159,74,-0.7584476800514364],[126,159,75,-0.7581114466742863],[126,159,76,-0.7577776450948088],[126,159,77,-0.7574462805726193],[126,159,78,-0.7571173582707622],[126,159,79,-0.7567908832552728],[126,160,64,-0.762099011333051],[126,160,65,-0.7617385277337798],[126,160,66,-0.7613804173525076],[126,160,67,-0.7610246863933804],[126,160,68,-0.7606713409683843],[126,160,69,-0.7603203870969151],[126,160,70,-0.7599718307053327],[126,160,71,-0.7596256776265216],[126,160,72,-0.7592819335994468],[126,160,73,-0.7589406042687279],[126,160,74,-0.7586016951841814],[126,160,75,-0.7582652118003965],[126,160,76,-0.7579311594762957],[126,160,77,-0.757599543474698],[126,160,78,-0.757270368961886],[126,160,79,-0.7569436410071673],[126,161,64,-0.7622556335047634],[126,161,65,-0.7618949086782637],[126,161,66,-0.7615365562973213],[126,161,67,-0.7611805825689277],[126,161,68,-0.7608269936079481],[126,161,69,-0.7604757954366907],[126,161,70,-0.7601269939844625],[126,161,71,-0.7597805950871274],[126,161,72,-0.7594366044866652],[126,161,73,-0.759095027830743],[126,161,74,-0.75875587067226],[126,161,75,-0.7584191384689216],[126,161,76,-0.7580848365828009],[126,161,77,-0.757752970279902],[126,161,78,-0.7574235447297266],[126,161,79,-0.7570965650048365],[126,162,64,-0.7624124036278404],[126,162,65,-0.762051438807349],[126,162,66,-0.761692845655688],[126,162,67,-0.7613366303826735],[126,162,68,-0.7609827991060292],[126,162,69,-0.7606313578509557],[126,162,70,-0.760282312549686],[126,162,71,-0.7599356690410446],[126,162,72,-0.7595914330700054],[126,162,73,-0.7592496102872641],[126,162,74,-0.7589102062487825],[126,162,75,-0.7585732264153632],[126,162,76,-0.7582386761522109],[126,162,77,-0.7579065607284955],[126,162,78,-0.75757688531692],[126,162,79,-0.7572496549932815],[126,163,64,-0.7625693214096749],[126,163,65,-0.7622081178308757],[126,163,66,-0.7618492851398885],[126,163,67,-0.7614928295493331],[126,163,68,-0.7611387571797716],[126,163,69,-0.7607870740592763],[126,163,70,-0.7604377861229861],[126,163,71,-0.7600908992126658],[126,163,72,-0.7597464190762637],[126,163,73,-0.7594043513674842],[126,163,74,-0.7590647016453327],[126,163,75,-0.7587274753736893],[126,163,76,-0.7583926779208714],[126,163,77,-0.7580603145591962],[126,163,78,-0.7577303904645485],[126,163,79,-0.7574029107159423],[126,164,64,-0.762726386556187],[126,164,65,-0.762364945457203],[126,164,66,-0.7620058744607151],[126,164,67,-0.7616491797821265],[126,164,68,-0.7612948675448162],[126,164,69,-0.7609429437797083],[126,164,70,-0.7605934144248274],[126,164,71,-0.7602462853248579],[126,164,72,-0.7599015622307032],[126,164,73,-0.7595592507990567],[126,164,74,-0.7592193565919474],[126,164,75,-0.758881885076314],[126,164,76,-0.7585468416235673],[126,164,77,-0.7582142315091528],[126,164,78,-0.7578840599121186],[126,164,79,-0.7575563319146773],[126,165,64,-0.7628835987718031],[126,165,65,-0.7625219213931891],[126,165,66,-0.7621626133274518],[126,165,67,-0.7618056807927571],[126,165,68,-0.7614511299152804],[126,165,69,-0.7610989667287765],[126,165,70,-0.7607491971741357],[126,165,71,-0.7604018270989424],[126,165,72,-0.7600568622570343],[126,165,73,-0.7597143083080745],[126,165,74,-0.759374170817096],[126,165,75,-0.7590364552540769],[126,165,76,-0.7587011669935019],[126,165,77,-0.7583683113139259],[126,165,78,-0.7580378933975417],[126,165,79,-0.7577099183297415],[126,166,64,-0.7630409577595172],[126,166,65,-0.7626790453442518],[126,166,66,-0.7623195014479349],[126,166,67,-0.7619623322914733],[126,166,68,-0.7616075440038184],[126,166,69,-0.7612551426215355],[126,166,70,-0.7609051340883597],[126,166,71,-0.7605575242547555],[126,166,72,-0.7602123188774752],[126,166,73,-0.7598695236191313],[126,166,74,-0.7595291440477414],[126,166,75,-0.7591911856363036],[126,166,76,-0.7588556537623573],[126,166,77,-0.7585225537075481],[126,166,78,-0.758191890657194],[126,166,79,-0.7578636696998489],[126,167,64,-0.7631984632208613],[126,167,65,-0.76283631701434],[126,167,66,-0.7624765385285233],[126,167,67,-0.7621191339870387],[126,167,68,-0.7617641095215926],[126,167,69,-0.7614114711715401],[126,167,70,-0.7610612248834412],[126,167,71,-0.7607133765106195],[126,167,72,-0.7603679318127223],[126,167,73,-0.7600248964552917],[126,167,74,-0.7596842760093104],[126,167,75,-0.7593460759507767],[126,167,76,-0.7590103016602658],[126,167,77,-0.7586769584224944],[126,167,78,-0.7583460514258877],[126,167,79,-0.7580175857621418],[126,168,64,-0.7633561148559308],[126,168,65,-0.7629937361059573],[126,168,66,-0.7626337242741239],[126,168,67,-0.7622760855867572],[126,168,68,-0.7619208261782981],[126,168,69,-0.7615679520908708],[126,168,70,-0.7612174692738394],[126,168,71,-0.760869383583367],[126,168,72,-0.7605237007819753],[126,168,73,-0.7601804265381165],[126,168,74,-0.7598395664257185],[126,168,75,-0.7595011259237603],[126,168,76,-0.7591651104158337],[126,168,77,-0.7588315251897076],[126,168,78,-0.7585003754368951],[126,168,79,-0.7581716662522164],[126,169,64,-0.7635139123633543],[126,169,65,-0.7631513023201337],[126,169,66,-0.7627910583881617],[126,169,67,-0.7624331867964436],[126,169,68,-0.7620776936821331],[126,169,69,-0.7617245850901032],[126,169,70,-0.7613738669725019],[126,169,71,-0.7610255451883112],[126,169,72,-0.7606796255029074],[126,169,73,-0.7603361135876323],[126,169,74,-0.7599950150193399],[126,169,75,-0.7596563352799701],[126,169,76,-0.7593200797561123],[126,169,77,-0.7589862537385679],[126,169,78,-0.7586548624219194],[126,169,79,-0.7583259109040918],[126,170,64,-0.7636718554403554],[126,170,65,-0.7633090153564861],[126,170,66,-0.7629485405726415],[126,170,67,-0.7625904373204838],[126,170,68,-0.7622347117398598],[126,170,69,-0.7618813698783701],[126,170,70,-0.7615304176909257],[126,170,71,-0.7611818610393076],[126,170,72,-0.7608357056917261],[126,170,73,-0.7604919573223934],[126,170,74,-0.7601506215110692],[126,170,75,-0.7598117037426351],[126,170,76,-0.7594752094066581],[126,170,77,-0.759141143796954],[126,170,78,-0.7588095121111547],[126,170,79,-0.7584803194502723],[126,171,64,-0.7638299437827317],[126,171,65,-0.7634668749131979],[126,171,66,-0.7631061705281263],[126,171,67,-0.762747836861816],[126,171,68,-0.7623918800567847],[126,171,69,-0.7620383061633403],[126,171,70,-0.7616871211391366],[126,171,71,-0.7613383308487328],[126,171,72,-0.7609919410631534],[126,171,73,-0.7606479574594607],[126,171,74,-0.7603063856203002],[126,171,75,-0.7599672310334761],[126,171,76,-0.7596304990915134],[126,171,77,-0.7592961950912225],[126,171,78,-0.7589643242332669],[126,171,79,-0.7586348916217257],[126,172,64,-0.763988177084835],[126,172,65,-0.7636248806869985],[126,172,66,-0.7632639479537184],[126,172,67,-0.7629053851219083],[126,172,68,-0.762549198336737],[126,172,69,-0.7621953936511985],[126,172,70,-0.7618439770256684],[126,172,71,-0.7614949543274642],[126,172,72,-0.7611483313304042],[126,172,73,-0.7608041137143807],[126,172,74,-0.7604623070649057],[126,172,75,-0.7601229168726854],[126,172,76,-0.7597859485331842],[126,172,77,-0.7594514073461878],[126,172,78,-0.7591192985153713],[126,172,79,-0.7587896271478631],[126,173,64,-0.7641465550396317],[126,173,65,-0.7637830323732249],[126,173,66,-0.7634218725471189],[126,173,67,-0.7630630818008214],[126,173,68,-0.7627066662821305],[126,173,69,-0.7623526320467058],[126,173,70,-0.7620009850576244],[126,173,71,-0.7616517311849412],[126,173,72,-0.7613048762052482],[126,173,73,-0.7609604258012478],[126,173,74,-0.760618385561298],[126,173,75,-0.7602787609789883],[126,173,76,-0.7599415574527023],[126,173,77,-0.7596067802851816],[126,173,78,-0.7592744346830949],[126,173,79,-0.7589445257565997],[126,174,64,-0.7643050773386739],[126,174,65,-0.7639413296657913],[126,174,66,-0.7635799440045993],[126,174,67,-0.7632209265971777],[126,174,68,-0.7628642835939334],[126,174,69,-0.7625100210531707],[126,174,70,-0.7621581449406474],[126,174,71,-0.7618086611291353],[126,174,72,-0.7614615753979799],[126,174,73,-0.7611168934326732],[126,174,74,-0.7607746208244001],[126,174,75,-0.7604347630696128],[126,174,76,-0.760097325569595],[126,174,77,-0.7597623136300251],[126,174,78,-0.7594297324605457],[126,174,79,-0.7590995871743252],[126,175,64,-0.764463743672124],[126,175,65,-0.7640997722572149],[126,175,66,-0.7637381620210255],[126,175,67,-0.763378919208187],[126,175,68,-0.7630220499716939],[126,175,69,-0.7626675603724737],[126,175,70,-0.7623154563789446],[126,175,71,-0.7619657438665748],[126,175,72,-0.7616184286174429],[126,175,73,-0.7612735163198107],[126,175,74,-0.7609310125676692],[126,175,75,-0.7605909228603144],[126,175,76,-0.7602532526019101],[126,175,77,-0.7599180071010523],[126,175,78,-0.7595851915703381],[126,175,79,-0.7592548111259283],[126,176,64,-0.7646225537287247],[126,176,65,-0.7642583598385855],[126,176,66,-0.7638965262898291],[126,176,67,-0.7635370593296169],[126,176,68,-0.7631799651135096],[126,176,69,-0.7628252497050375],[126,176,70,-0.7624729190752582],[126,176,71,-0.7621229791023156],[126,176,72,-0.761775435571001],[126,176,73,-0.7614302941723259],[126,176,74,-0.7610875605030678],[126,176,75,-0.7607472400653461],[126,176,76,-0.7604093382661855],[126,176,77,-0.7600738604170802],[126,176,78,-0.7597408117335626],[126,176,79,-0.7594101973347662],[126,177,64,-0.764781507195861],[126,177,65,-0.7644170920996269],[126,177,66,-0.7640550365030676],[126,177,67,-0.763695346655853],[126,177,68,-0.7633380287160891],[126,177,69,-0.7629830887498881],[126,177,70,-0.7626305327309257],[126,177,71,-0.7622803665400014],[126,177,72,-0.7619325959645988],[126,177,73,-0.7615872266984585],[126,177,74,-0.7612442643411246],[126,177,75,-0.7609037143975204],[126,177,76,-0.7605655822775113],[126,177,77,-0.7602298732954705],[126,177,78,-0.7598965926698467],[126,177,79,-0.7595657455227272],[126,178,64,-0.764940603759539],[126,178,65,-0.7645759687286766],[126,178,66,-0.7642136923514044],[126,178,67,-0.7638537808798795],[126,178,68,-0.7634962404747319],[126,178,69,-0.7631410772046343],[126,178,70,-0.7627882970458604],[126,178,71,-0.7624379058818441],[126,178,72,-0.762089909502741],[126,178,73,-0.7617443136050006],[126,178,74,-0.7614011237909136],[126,178,75,-0.761060345568187],[126,178,76,-0.7607219843495081],[126,178,77,-0.7603860454521087],[126,178,78,-0.7600525340973346],[126,178,79,-0.7597214554102083],[126,179,64,-0.7650998431043656],[126,179,65,-0.7647349894126649],[126,179,66,-0.7643724935240879],[126,179,67,-0.7640123616932576],[126,179,68,-0.7636546000833063],[126,179,69,-0.7632992147654468],[126,179,70,-0.7629462117185294],[126,179,71,-0.762595596828602],[126,179,72,-0.7622473758884716],[126,179,73,-0.7619015545972765],[126,179,74,-0.7615581385600335],[126,179,75,-0.7612171332872137],[126,179,76,-0.7608785441943062],[126,179,77,-0.7605423766013827],[126,179,78,-0.7602086357326661],[126,179,79,-0.759877326716095],[126,180,64,-0.7652592249136096],[126,180,65,-0.7648941538371763],[126,180,66,-0.7645314397090129],[126,180,67,-0.764171088786187],[126,180,68,-0.7638131072343122],[126,180,69,-0.7634575011271199],[126,180,70,-0.7631042764460159],[126,180,71,-0.762753439079642],[126,180,72,-0.7624049948234356],[126,180,73,-0.7620589493792034],[126,180,74,-0.7617153083546686],[126,180,75,-0.7613740772630464],[126,180,76,-0.7610352615226077],[126,180,77,-0.7606988664562442],[126,180,78,-0.7603648972910374],[126,180,79,-0.7600333591578223],[126,181,64,-0.765418748869172],[126,181,65,-0.7650534616864195],[126,181,66,-0.764690530592691],[126,181,67,-0.7643299618474766],[126,181,68,-0.7639717616188503],[126,181,69,-0.7636159359830408],[126,181,70,-0.7632624909239889],[126,181,71,-0.7629114323329089],[126,181,72,-0.7625627660078483],[126,181,73,-0.7622164976532622],[126,181,74,-0.7618726328795594],[126,181,75,-0.7615311772026794],[126,181,76,-0.7611921360436552],[126,181,77,-0.7608555147281792],[126,181,78,-0.7605213184861718],[126,181,79,-0.7601895524513453],[126,182,64,-0.7655784146516109],[126,182,65,-0.7652129126432524],[126,182,66,-0.7648497658602745],[126,182,67,-0.7644889805645685],[126,182,68,-0.764130562926647],[126,182,69,-0.7637745190252153],[126,182,70,-0.7634208548467278],[126,182,71,-0.7630695762849506],[126,182,72,-0.7627206891405209],[126,182,73,-0.7623741991205214],[126,182,74,-0.7620301118380268],[126,182,75,-0.7616884328116804],[126,182,76,-0.7613491674652579],[126,182,77,-0.7610123211272324],[126,182,78,-0.7606778990303438],[126,182,79,-0.7603459063111628],[126,183,64,-0.7657382219401118],[126,183,65,-0.7653725063891526],[126,183,66,-0.765009145195528],[126,183,67,-0.7646481446235089],[126,183,68,-0.7642895108460255],[126,183,69,-0.7639332499442375],[126,183,70,-0.7635793679070929],[126,183,71,-0.7632278706308883],[126,183,72,-0.7628787639188299],[126,183,73,-0.7625320534806077],[126,183,74,-0.7621877449319421],[126,183,75,-0.7618458437941601],[126,183,76,-0.7615063554937601],[126,183,77,-0.7611692853619764],[126,183,78,-0.760834638634349],[126,183,79,-0.7605024204502876],[126,184,64,-0.7658981704125485],[126,184,65,-0.765532242604278],[126,184,66,-0.7651686682808885],[126,184,67,-0.7648074537090089],[126,184,68,-0.7644486050639652],[126,184,69,-0.7640921284293511],[126,184,70,-0.7637380297965861],[126,184,71,-0.7633863150644771],[126,184,72,-0.7630369900387787],[126,184,73,-0.7626900604317672],[126,184,74,-0.7623455318617886],[126,184,75,-0.7620034098528338],[126,184,76,-0.7616636998341036],[126,184,77,-0.7613264071395742],[126,184,78,-0.7609915370075659],[126,184,79,-0.7606590945803082],[126,185,64,-0.7660582597454628],[126,185,65,-0.7656921209674465],[126,185,66,-0.7653283347974451],[126,185,67,-0.7649669075044239],[126,185,68,-0.7646078452660828],[126,185,69,-0.7642511541684284],[126,185,70,-0.7638968402053308],[126,185,71,-0.7635449092780862],[126,185,72,-0.7631953671949765],[126,185,73,-0.7628482196708444],[126,185,74,-0.7625034723266407],[126,185,75,-0.7621611306890003],[126,185,76,-0.7618212001898066],[126,185,77,-0.7614836861657576],[126,185,78,-0.7611485938579347],[126,185,79,-0.7608159284113675],[126,186,64,-0.7662184896140438],[126,186,65,-0.7658521411561158],[126,186,66,-0.7654881444249186],[126,186,67,-0.7651265056917325],[126,186,68,-0.7647672311366104],[126,186,69,-0.7644103268479497],[126,186,70,-0.7640557988220504],[126,186,71,-0.7637036529626767],[126,186,72,-0.7633538950806175],[126,186,73,-0.763006530893261],[126,186,74,-0.7626615660241427],[126,186,75,-0.7623190060025208],[126,186,76,-0.7619788562629418],[126,186,77,-0.7616411221448056],[126,186,78,-0.7613058088919351],[126,186,79,-0.760972921652141],[126,187,64,-0.7663788596921889],[126,187,65,-0.7660123028464432],[126,187,66,-0.7656480968417221],[126,187,67,-0.7652862479515985],[126,187,68,-0.764926762358457],[126,187,69,-0.7645696461530648],[126,187,70,-0.7642149053341302],[126,187,71,-0.7638625458078643],[126,187,72,-0.7635125733875424],[126,187,73,-0.7631649937930778],[126,187,74,-0.7628198126505699],[126,187,75,-0.7624770354918806],[126,187,76,-0.762136667754199],[126,187,77,-0.7617987147796071],[126,187,78,-0.76146318181465],[126,187,79,-0.7611300740098996],[126,188,64,-0.7665393696524831],[126,188,65,-0.7661726057132662],[126,188,66,-0.7658081917249403],[126,188,67,-0.7654461339633497],[126,188,68,-0.7650864386131883],[126,188,69,-0.7647291117675716],[126,188,70,-0.7643741594275956],[126,188,71,-0.7640215875018974],[126,188,72,-0.7636714018062174],[126,188,73,-0.7633236080629735],[126,188,74,-0.7629782119008085],[126,188,75,-0.7626352188541677],[126,188,76,-0.762294634362863],[126,188,77,-0.7619564637716387],[126,188,78,-0.7616207123297422],[126,188,79,-0.7612873851904873],[126,189,64,-0.7667000191661786],[126,189,65,-0.7663330494300813],[126,189,66,-0.7659684287503095],[126,189,67,-0.7656061634049565],[126,189,68,-0.7652462595810043],[126,189,69,-0.7648887233738958],[126,189,70,-0.7645335607870922],[126,189,71,-0.7641807777316364],[126,189,72,-0.7638303800257128],[126,189,73,-0.763482373394223],[126,189,74,-0.7631367634683334],[126,189,75,-0.762793555785052],[126,189,76,-0.7624527557867932],[126,189,77,-0.762114368820944],[126,189,78,-0.7617784001394341],[126,189,79,-0.7614448548983005],[126,190,64,-0.7668608079032555],[126,190,65,-0.7664936336691052],[126,190,66,-0.7661288075922777],[126,190,67,-0.7657663359530942],[126,190,68,-0.7654062249408026],[126,190,69,-0.7650484806531515],[126,190,70,-0.7646931090959468],[126,190,71,-0.7643401161826152],[126,190,72,-0.7639895077337648],[126,190,73,-0.7636412894767604],[126,190,74,-0.7632954670452705],[126,190,75,-0.7629520459788462],[126,190,76,-0.7626110317224845],[126,190,77,-0.7622724296261947],[126,190,78,-0.7619362449445696],[126,190,79,-0.7616024828363491],[126,191,64,-0.7670217355323922],[126,191,65,-0.7666543581012446],[126,191,66,-0.7662893279239759],[126,191,67,-0.7659266512831122],[126,191,68,-0.7655663343701469],[126,191,69,-0.7652083832851119],[126,191,70,-0.7648528040361369],[126,191,71,-0.7644996025390112],[126,191,72,-0.7641487846167455],[126,191,73,-0.7638003559991469],[126,191,74,-0.7634543223223662],[126,191,75,-0.7631106891284767],[126,191,76,-0.7627694618650376],[126,191,77,-0.762430645884661],[126,191,78,-0.7620942464445829],[126,191,79,-0.7617602687062268],[126,192,64,-0.7671828017209904],[126,192,65,-0.7668152223961218],[126,192,66,-0.7664499894172414],[126,192,67,-0.7660871090690595],[126,192,68,-0.7657265875452921],[126,192,69,-0.7653684309482337],[126,192,70,-0.7650126452883158],[126,192,71,-0.7646592364836695],[126,192,72,-0.7643082103596872],[126,192,73,-0.763959572648597],[126,192,74,-0.7636133289890121],[126,192,75,-0.7632694849255071],[126,192,76,-0.7629280459081833],[126,192,77,-0.762589017292236],[126,192,78,-0.7622524043375241],[126,192,79,-0.7619182122081354],[126,193,64,-0.7673440061351448],[126,193,65,-0.7669762262220435],[126,193,66,-0.7666107917425894],[126,193,67,-0.7662477089836541],[126,193,68,-0.7658869841411549],[126,193,69,-0.7655286233196269],[126,193,70,-0.7651726325317826],[126,193,71,-0.7648190176980734],[126,193,72,-0.764467784646252],[126,193,73,-0.7641189391109477],[126,193,74,-0.7637724867332143],[126,193,75,-0.763428433060108],[126,193,76,-0.7630867835442522],[126,193,77,-0.7627475435434046],[126,193,78,-0.7624107183200277],[126,193,79,-0.7620763130408537],[126,194,64,-0.7675053484397045],[126,194,65,-0.7671373692460635],[126,194,66,-0.7667717345692731],[126,194,67,-0.7664084506983442],[126,194,68,-0.766047523831374],[126,194,69,-0.7656889600751164],[126,194,70,-0.7653327654445433],[126,194,71,-0.7649789458624051],[126,194,72,-0.7646275071587944],[126,194,73,-0.7642784550707198],[126,194,74,-0.7639317952416559],[126,194,75,-0.7635875332211196],[126,194,76,-0.7632456744642362],[126,194,77,-0.7629062243313061],[126,194,78,-0.7625691880873752],[126,194,79,-0.7622345709018006],[126,195,64,-0.7676668282982526],[126,195,65,-0.7672986511339609],[126,195,66,-0.7669328175652631],[126,195,67,-0.7665693338832883],[126,195,68,-0.7662082062882902],[126,195,69,-0.7658494408892211],[126,195,70,-0.7654930437032901],[126,195,71,-0.7651390206555256],[126,195,72,-0.7647873775783387],[126,195,73,-0.7644381202110971],[126,195,74,-0.7640912541996749],[126,195,75,-0.7637467850960296],[126,195,76,-0.7634047183577677],[126,195,77,-0.7630650593477123],[126,195,78,-0.7627278133334732],[126,195,79,-0.7623929854870123],[126,196,64,-0.7678284453730841],[126,196,65,-0.7674600715502192],[126,196,66,-0.7670940403972273],[126,196,67,-0.7667303582073326],[126,196,68,-0.766369031182925],[126,196,69,-0.7660100654351323],[126,196,70,-0.7656534669833795],[126,196,71,-0.7652992417549525],[126,196,72,-0.7649473955845589],[126,196,73,-0.7645979342139049],[126,196,74,-0.7642508632912433],[126,196,75,-0.7639061883709515],[126,196,76,-0.7635639149130975],[126,196,77,-0.7632240482830065],[126,196,78,-0.762886593750832],[126,196,79,-0.7625515564911216],[126,197,64,-0.7679901993252689],[126,197,65,-0.7676216301580882],[126,197,66,-0.7672554027305907],[126,197,67,-0.766891523338074],[126,197,68,-0.7665299981850416],[126,197,69,-0.7661708333847754],[126,197,70,-0.7658140349588954],[126,197,71,-0.7654596088369221],[126,197,72,-0.76510756085584],[126,197,73,-0.7647578967596719],[126,197,74,-0.7644106221990288],[126,197,75,-0.7640657427306876],[126,197,76,-0.7637232638171572],[126,197,77,-0.7633831908262448],[126,197,78,-0.763045529030628],[126,197,79,-0.7627102836074198],[126,198,64,-0.7681520898146202],[126,198,65,-0.7677833266195533],[126,198,66,-0.7674169042295065],[126,198,67,-0.7670528289418288],[126,198,68,-0.7666911069631155],[126,198,69,-0.7663317444087805],[126,198,70,-0.7659747473026169],[126,198,71,-0.7656201215763595],[126,198,72,-0.7652678730692473],[126,198,73,-0.7649180075275993],[126,198,74,-0.7645705306043642],[126,198,75,-0.7642254478586976],[126,198,76,-0.7638827647555282],[126,198,77,-0.763542486665126],[126,198,78,-0.763204618862672],[126,198,79,-0.7628691665278253],[126,199,64,-0.7683141164997204],[126,199,65,-0.7679451605953607],[126,199,66,-0.7675785445568807],[126,199,67,-0.7672142746836583],[126,199,68,-0.7668523571843584],[126,199,69,-0.7664927981765057],[126,199,70,-0.7661356036860446],[126,199,71,-0.7657807796469023],[126,199,72,-0.7654283319005515],[126,199,73,-0.7650782661955865],[126,199,74,-0.7647305881872725],[126,199,75,-0.7643853034371229],[126,199,76,-0.764042417412467],[126,199,77,-0.7637019354860161],[126,199,78,-0.7633638629354351],[126,199,79,-0.7630282049429093],[126,200,64,-0.7684762790378903],[126,200,65,-0.7681071317449872],[126,200,66,-0.7677403233743414],[126,200,67,-0.7673758602273377],[126,200,68,-0.7670137485146887],[126,200,69,-0.7666539943560078],[126,200,70,-0.766296603779369],[126,200,71,-0.7659415827208707],[126,200,72,-0.7655889370241981],[126,200,73,-0.7652386724401994],[126,200,74,-0.7648907946264354],[126,200,75,-0.7645453091467573],[126,200,76,-0.7642022214708737],[126,200,77,-0.7638615369739172],[126,200,78,-0.763523260936017],[126,200,79,-0.7631873985418642],[126,201,64,-0.7686385770852507],[126,201,65,-0.7682692397267012],[126,201,66,-0.7679022403423007],[126,201,67,-0.7675375852354185],[126,201,68,-0.7671752806187927],[126,201,69,-0.7668153326141034],[126,201,70,-0.7664577472515332],[126,201,71,-0.7661025304693295],[126,201,72,-0.765749688113369],[126,201,73,-0.7653992259367328],[126,201,74,-0.7650511495992564],[126,201,75,-0.7647054646671078],[126,201,76,-0.7643621766123544],[126,201,77,-0.7640212908125305],[126,201,78,-0.7636828125502084],[126,201,79,-0.763346747012566],[126,202,64,-0.7688010102967018],[126,202,65,-0.7684314841975425],[126,202,66,-0.7680642951199335],[126,202,67,-0.7676994493692064],[126,202,68,-0.7673369531601031],[126,202,69,-0.7669768126163483],[126,202,70,-0.7666190337702109],[126,202,71,-0.7662636225620666],[126,202,72,-0.7659105848399618],[126,202,73,-0.7655599263591892],[126,202,74,-0.7652116527818383],[126,202,75,-0.7648657696763733],[126,202,76,-0.7645222825172],[126,202,77,-0.7641811966842333],[126,202,78,-0.7638425174624697],[126,202,79,-0.7635062500415526],[126,203,64,-0.7689635783259013],[126,203,65,-0.7685938648133],[126,203,66,-0.7682264873651562],[126,203,67,-0.7678614522887413],[126,203,68,-0.7674987658007784],[126,203,69,-0.7671384340270153],[126,203,70,-0.7667804630017855],[126,203,71,-0.766424858667571],[126,203,72,-0.7660716268745671],[126,203,73,-0.7657207733802568],[126,203,74,-0.7653723038489624],[126,203,75,-0.7650262238514235],[126,203,76,-0.7646825388643638],[126,203,77,-0.7643412542700588],[126,203,78,-0.7640023753559082],[126,203,79,-0.7636659073140021],[126,204,64,-0.7691262808253266],[126,204,65,-0.7687563812285746],[126,204,66,-0.7683888167346886],[126,204,67,-0.7680235936528578],[126,204,68,-0.7676607182017641],[126,204,69,-0.7673001965091567],[126,204,70,-0.7669420346114115],[126,204,71,-0.7665862384530959],[126,204,72,-0.7662328138865317],[126,204,73,-0.7658817666713716],[126,204,74,-0.76553310247415],[126,204,75,-0.7651868268678605],[126,204,76,-0.7648429453315243],[126,204,77,-0.7645014632497571],[126,204,78,-0.7641623859123416],[126,204,79,-0.7638257185137947],[126,205,64,-0.7692891174462444],[126,205,65,-0.7689190330967477],[126,205,66,-0.7685512828840232],[126,205,67,-0.7681858731191551],[126,205,68,-0.7678228100227625],[126,205,69,-0.7674620997245734],[126,205,70,-0.7671037482629846],[126,205,71,-0.7667477615846268],[126,205,72,-0.7663941455439274],[126,205,73,-0.7660429059026874],[126,205,74,-0.7656940483296317],[126,205,75,-0.7653475783999881],[126,205,76,-0.7650035015950539],[126,205,77,-0.7646618233017649],[126,205,78,-0.7643225488122666],[126,205,79,-0.7639856833234822],[126,206,64,-0.769452087838735],[126,206,65,-0.7690818200700068],[126,206,66,-0.7687138854674503],[126,206,67,-0.7683482903440226],[126,206,68,-0.7679850409222576],[126,206,69,-0.7676241433338398],[126,206,70,-0.7672656036191654],[126,206,71,-0.7669094277269068],[126,206,72,-0.7665556215135754],[126,206,73,-0.7662041907430991],[126,206,74,-0.7658551410863725],[126,206,75,-0.7655084781208363],[126,206,76,-0.7651642073300439],[126,206,77,-0.7648223341032299],[126,206,78,-0.764482863734883],[126,206,79,-0.7641458014243124],[126,207,64,-0.7696151916516627],[126,207,65,-0.7692447417993145],[126,207,66,-0.7688766241380273],[126,207,67,-0.7685108449826082],[126,207,68,-0.7681474105574837],[126,207,69,-0.767786326996273],[126,207,70,-0.7674276003413499],[126,207,71,-0.7670712365434061],[126,207,72,-0.766717241461016],[126,207,73,-0.7663656208602131],[126,207,74,-0.7660163804140407],[126,207,75,-0.7656695257021312],[126,207,76,-0.7653250622102732],[126,207,77,-0.7649829953299803],[126,207,78,-0.7646433303580633],[126,207,79,-0.764306072496198],[126,208,64,-0.7697784285327369],[126,208,65,-0.7694077979344706],[126,208,66,-0.7690394985476402],[126,208,67,-0.7686735366888807],[126,208,68,-0.7683099185844885],[126,208,69,-0.7679486503699955],[126,208,70,-0.7675897380897305],[126,208,71,-0.7672331876963839],[126,208,72,-0.7668790050505709],[126,208,73,-0.7665271959204094],[126,208,74,-0.7661777659810699],[126,208,75,-0.7658307208143562],[126,208,76,-0.765486065908271],[126,208,77,-0.7651438066565863],[126,208,78,-0.7648039483584151],[126,208,79,-0.7644664962177791],[126,209,64,-0.7699417981284908],[126,209,65,-0.7695709881240907],[126,209,66,-0.7692025083469832],[126,209,67,-0.7688363651156085],[126,209,68,-0.7684725646581106],[126,209,69,-0.7681111131119122],[126,209,70,-0.7677520165232753],[126,209,71,-0.7673952808468665],[126,209,72,-0.7670409119453209],[126,209,73,-0.7666889155888188],[126,209,74,-0.7663392974546377],[126,209,75,-0.7659920631267307],[126,209,76,-0.7656472180952947],[126,209,77,-0.7653047677563393],[126,209,78,-0.7649647174112588],[126,209,79,-0.7646270722664014],[126,210,64,-0.7701053000842607],[126,210,65,-0.7697343120155848],[126,210,66,-0.7693656531855363],[126,210,67,-0.7689993299143377],[126,210,68,-0.7686353484319588],[126,210,69,-0.7682737148776903],[126,210,70,-0.7679144352997056],[126,210,71,-0.7675575156546259],[126,210,72,-0.7672029618070844],[126,210,73,-0.7668507795293027],[126,210,74,-0.7665009745006434],[126,210,75,-0.7661535523071886],[126,210,76,-0.7658085184413082],[126,210,77,-0.7654658783012287],[126,210,78,-0.765125637190606],[126,210,79,-0.7647878003180936],[126,211,64,-0.7702689340442471],[126,211,65,-0.7698977692552191],[126,211,66,-0.7695289327116275],[126,211,67,-0.7691624307354548],[126,211,68,-0.7687982695584734],[126,211,69,-0.7684364553218206],[126,211,70,-0.7680769940755588],[126,211,71,-0.7677198917782423],[126,211,72,-0.7673651542964799],[126,211,73,-0.7670127874045141],[126,211,74,-0.7666627967837707],[126,211,75,-0.76631518802244],[126,211,76,-0.765969966615044],[126,211,77,-0.7656271379620057],[126,211,78,-0.7652867073692216],[126,211,79,-0.7649486800476311],[126,212,64,-0.7704326996514845],[126,212,65,-0.7700613594880855],[126,212,66,-0.7696923465724023],[126,212,67,-0.7693256672281549],[126,212,68,-0.7689613276888962],[126,212,69,-0.768599334097587],[126,212,70,-0.7682396925061574],[126,212,71,-0.7678824088750722],[126,212,72,-0.7675274890728953],[126,212,73,-0.7671749388758671],[126,212,74,-0.7668247639674566],[126,212,75,-0.7664769699379407],[126,212,76,-0.7661315622839726],[126,212,77,-0.7657885464081509],[126,212,78,-0.765447927618593],[126,212,79,-0.765109711128503],[126,213,64,-0.7705965965478663],[126,213,65,-0.7702250823581264],[126,213,66,-0.7698558944138485],[126,213,67,-0.7694890390404676],[126,213,68,-0.7691245224732943],[126,213,69,-0.7687623508570913],[126,213,70,-0.7684025302456334],[126,213,71,-0.7680450666012746],[126,213,72,-0.7676899657945115],[126,213,73,-0.767337233603562],[126,213,74,-0.766986875713916],[126,213,75,-0.7666388977179164],[126,213,76,-0.7662933051143266],[126,213,77,-0.7659501033079001],[126,213,78,-0.7656092976089546],[126,213,79,-0.7652708932329388],[126,214,64,-0.7707606243741136],[126,214,65,-0.7703889375081037],[126,214,66,-0.7700195758807655],[126,214,67,-0.7696525458192256],[126,214,68,-0.7692878535605306],[126,214,69,-0.7689255052512218],[126,214,70,-0.7685655069468975],[126,214,71,-0.7682078646117786],[126,214,72,-0.7678525841182728],[126,214,73,-0.7674996712465536],[126,214,74,-0.7671491316841109],[126,214,75,-0.7668009710253321],[126,214,76,-0.7664551947710698],[126,214,77,-0.7661118083282124],[126,214,78,-0.7657708170092563],[126,214,79,-0.7654322260318754],[126,215,64,-0.7709247827698378],[126,215,65,-0.7705529245796613],[126,215,66,-0.7701833906168258],[126,215,67,-0.769816187210127],[126,215,68,-0.7694513205983243],[126,215,69,-0.7690887969297162],[126,215,70,-0.7687286222617017],[126,215,71,-0.7683708025603466],[126,215,72,-0.7680153436999484],[126,215,73,-0.767662251462614],[126,215,74,-0.7673115315378123],[126,215,75,-0.766963189521954],[126,215,76,-0.7666172309179602],[126,215,77,-0.7662736611348326],[126,215,78,-0.7659324854872268],[126,215,79,-0.7655937091950209],[126,216,64,-0.771089071373519],[126,216,65,-0.7707170432133034],[126,216,66,-0.7703473382645539],[126,216,67,-0.7699799628577132],[126,216,68,-0.7696149232332308],[126,216,69,-0.7692522255411395],[126,216,70,-0.768891875840617],[126,216,71,-0.7685338800995523],[126,216,72,-0.7681782441941103],[126,216,73,-0.7678249739083105],[126,216,74,-0.7674740749335788],[126,216,75,-0.7671255528683281],[126,216,76,-0.7667794132175271],[126,216,77,-0.76643566139227],[126,216,78,-0.7660943027093507],[126,216,79,-0.7657553423908313],[126,217,64,-0.7712534898224839],[126,217,65,-0.7708812930483724],[126,217,66,-0.7705114184653051],[126,217,67,-0.7701438724053482],[126,217,68,-0.769778661110619],[126,217,69,-0.7694157907328623],[126,217,70,-0.7690552673330122],[126,217,71,-0.7686970968807587],[126,217,72,-0.7683412852541125],[126,217,73,-0.7679878382389838],[126,217,74,-0.7676367615287343],[126,217,75,-0.7672880607237578],[126,217,76,-0.7669417413310494],[126,217,77,-0.7665978087637753],[126,217,78,-0.7662562683408468],[126,217,79,-0.7659171252864898],[126,218,64,-0.7714180377529684],[126,218,65,-0.7710456737231117],[126,218,66,-0.7706756308593266],[126,218,67,-0.7703079154952797],[126,218,68,-0.7699425338747338],[126,218,69,-0.7695794921511229],[126,218,70,-0.7692187963871154],[126,218,71,-0.7688604525541803],[126,218,72,-0.7685044665321523],[126,218,73,-0.7681508441088104],[126,218,74,-0.7677995909794305],[126,218,75,-0.7674507127463663],[126,218,76,-0.7671042149186185],[126,218,77,-0.7667601029114037],[126,218,78,-0.7664183820457308],[126,218,79,-0.7660790575479682],[126,219,64,-0.771582714800096],[126,219,65,-0.7712101848746439],[126,219,66,-0.7708399750857364],[126,219,67,-0.7704720917686183],[126,219,68,-0.7701065411686744],[126,219,69,-0.769743329441006],[126,219,70,-0.7693824626499932],[126,219,71,-0.769023946768862],[126,219,72,-0.7686677876792489],[126,219,73,-0.7683139911707805],[126,219,74,-0.7679625629406253],[126,219,75,-0.7676135085930755],[126,219,76,-0.7672668336391156],[126,219,77,-0.7669225434959931],[126,219,78,-0.7665806434867927],[126,219,79,-0.7662411388400054],[126,220,64,-0.7717475205978558],[126,220,65,-0.7713748261389488],[126,220,66,-0.7710044507825021],[126,220,67,-0.7706364008653153],[126,220,68,-0.7702706826343727],[126,220,69,-0.7699073022464205],[126,220,70,-0.7695462657675283],[126,220,71,-0.7691875791726563],[126,220,72,-0.7688312483452219],[126,220,73,-0.7684772790766765],[126,220,74,-0.7681256770660603],[126,220,75,-0.7677764479195825],[126,220,76,-0.7674295971501907],[126,220,77,-0.7670851301771415],[126,220,78,-0.7667430523255752],[126,220,79,-0.766403368826085],[126,221,64,-0.7719124547791651],[126,221,65,-0.7715395971509261],[126,221,66,-0.7711690575865021],[126,221,67,-0.7708008424242246],[126,221,68,-0.7704349579126553],[126,221,69,-0.7700714102101618],[126,221,70,-0.7697102053844812],[126,221,71,-0.7693513494122866],[126,221,72,-0.7689948481787525],[126,221,73,-0.768640707477135],[126,221,74,-0.7682889330083237],[126,221,75,-0.7679395303804235],[126,221,76,-0.7675925051083238],[126,221,77,-0.7672478626132696],[126,221,78,-0.766905608222436],[126,221,79,-0.7665657471684979],[126,222,64,-0.7720775169758384],[126,222,65,-0.7717044975443639],[126,222,66,-0.7713337951334951],[126,222,67,-0.7709654160830727],[126,222,68,-0.7705993666432123],[126,222,69,-0.770235652973881],[126,222,70,-0.7698742811444605],[126,222,71,-0.7695152571333145],[126,222,72,-0.7691585868273536],[126,222,73,-0.7688042760216156],[126,222,74,-0.7684523304188186],[126,222,75,-0.7681027556289413],[126,222,76,-0.7677555571687943],[126,222,77,-0.7674107404615897],[126,222,78,-0.7670683108365167],[126,222,79,-0.7667282735283111],[126,223,64,-0.7722427068186115],[126,223,65,-0.7718695269519638],[126,223,66,-0.7714986630581453],[126,223,67,-0.7711301214784825],[126,223,68,-0.7707639084646225],[126,223,69,-0.7704000301781093],[126,223,70,-0.7700384926899468],[126,223,71,-0.7696793019801667],[126,223,72,-0.7693224639373937],[126,223,73,-0.7689679843584261],[126,223,74,-0.7686158689477879],[126,223,75,-0.7682661233173113],[126,223,76,-0.7679187529857059],[126,223,77,-0.7675737633781303],[126,223,78,-0.767231159825767],[126,223,79,-0.7668909475653919],[126,224,64,-0.7724080239371116],[126,224,65,-0.7720346850053099],[126,224,66,-0.7716636609939904],[126,224,67,-0.7712949582459427],[126,224,68,-0.7709285830143222],[126,224,69,-0.7705645414622271],[126,224,70,-0.7702028396622611],[126,224,71,-0.7698434835961017],[126,224,72,-0.769486479154066],[126,224,73,-0.7691318321346902],[126,224,74,-0.7687795482442832],[126,224,75,-0.7684296330965087],[126,224,76,-0.7680820922119546],[126,224,77,-0.7677369310177046],[126,224,78,-0.7673941548469134],[126,224,79,-0.767053768938377],[126,225,64,-0.7725734679599189],[126,225,65,-0.772199971334931],[126,225,66,-0.7718287885735049],[126,225,67,-0.77145992601987],[126,225,68,-0.7710933899286672],[126,225,69,-0.7707291864645262],[126,225,70,-0.770367321701628],[126,225,71,-0.7700078016232739],[126,225,72,-0.7696506321214508],[126,225,73,-0.7692958189964112],[126,225,74,-0.7689433679562272],[126,225,75,-0.7685932846163723],[126,225,76,-0.7682455744992915],[126,225,77,-0.7679002430339728],[126,225,78,-0.7675572955555222],[126,225,79,-0.7672167373047345],[126,226,64,-0.7727390385145446],[126,226,65,-0.7723653855702788],[126,226,66,-0.7719940454280775],[126,226,67,-0.771625024433587],[126,226,68,-0.7712583288429111],[126,226,69,-0.770893964822188],[126,226,70,-0.7705319384471536],[126,226,71,-0.7701722557027105],[126,226,72,-0.7698149224824933],[126,226,73,-0.769459944588449],[126,226,74,-0.7691073277303913],[126,226,75,-0.7687570775255818],[126,226,76,-0.7684091994983012],[126,226,77,-0.7680636990794205],[126,226,78,-0.7677205816059767],[126,226,79,-0.7673798523207425],[126,227,64,-0.77290473522741],[126,227,65,-0.772530927339706],[126,227,66,-0.7721594311879896],[126,227,67,-0.771790253119301],[126,227,68,-0.7714233993911837],[126,227,69,-0.7710588761712615],[126,227,70,-0.7706966895368031],[126,227,71,-0.7703368454742898],[126,227,72,-0.7699793498789818],[126,227,73,-0.7696242085544986],[126,227,74,-0.7692714272123735],[126,227,75,-0.7689210114716352],[126,227,76,-0.7685729668583785],[126,227,77,-0.7682272988053364],[126,227,78,-0.7678840126514551],[126,227,79,-0.7675431136414655],[126,228,64,-0.7730705577239078],[126,228,65,-0.7726965962705284],[126,228,66,-0.7723249454824775],[126,228,67,-0.7719556117081655],[126,228,68,-0.7715886012065525],[126,228,69,-0.7712239201467257],[126,228,70,-0.7708615746074636],[126,228,71,-0.7705015705768037],[126,228,72,-0.7701439139516099],[126,228,73,-0.7697886105371522],[126,228,74,-0.7694356660466617],[126,228,75,-0.7690850861009123],[126,228,76,-0.768736876227792],[126,228,77,-0.768391041861874],[126,228,78,-0.7680475883439937],[126,228,79,-0.7677065209208185],[126,229,64,-0.7732365056283714],[126,229,65,-0.7728623919889946],[126,229,66,-0.7724905879397013],[126,229,67,-0.7721210998302492],[126,229,68,-0.7717539339209923],[126,229,69,-0.7713890963824582],[126,229,70,-0.7710265932949123],[126,229,71,-0.7706664306479263],[126,229,72,-0.7703086143399454],[126,229,73,-0.7699531501778679],[126,229,74,-0.7696000438766011],[126,229,75,-0.7692493010586425],[126,229,76,-0.7689009272536516],[126,229,77,-0.7685549278980213],[126,229,78,-0.7682113083344544],[126,229,79,-0.7678700738115345],[126,230,64,-0.7734025785641],[126,230,65,-0.7730283141203098],[126,230,66,-0.7726563581867697],[126,230,67,-0.7722867171145615],[126,230,68,-0.7719193971654101],[126,230,69,-0.7715544045112603],[126,230,70,-0.7711917452338422],[126,230,71,-0.770831425324239],[126,230,72,-0.7704734506824548],[126,230,73,-0.7701178271169948],[126,230,74,-0.76976456034442],[126,230,75,-0.7694136559889302],[126,230,76,-0.7690651195819347],[126,230,77,-0.7687189565616248],[126,230,78,-0.76837517227255],[126,230,79,-0.7680337719651892],[126,231,64,-0.7735687761533268],[126,231,65,-0.7731943622886048],[126,231,66,-0.7728222558497085],[126,231,67,-0.7724524631890204],[126,231,68,-0.7720849905696127],[126,231,69,-0.7717198441648252],[126,231,70,-0.7713570300578295],[126,231,71,-0.7709965542411983],[126,231,72,-0.7706384226164722],[126,231,73,-0.7702826409937408],[126,231,74,-0.7699292150911974],[126,231,75,-0.7695781505347221],[126,231,76,-0.7692294528574528],[126,231,77,-0.7688831274993579],[126,231,78,-0.7685391798068125],[126,231,79,-0.7681976150321699],[126,232,64,-0.7737350980172817],[126,232,65,-0.7733605361169993],[126,232,66,-0.7729882805535235],[126,232,67,-0.772618337680515],[126,232,68,-0.7722507137623702],[126,232,69,-0.7718854149738007],[126,232,70,-0.7715224473993973],[126,232,71,-0.7711618170331993],[126,232,72,-0.7708035297782614],[126,232,73,-0.7704475914462359],[126,232,74,-0.7700940077569263],[126,232,75,-0.7697427843378712],[126,232,76,-0.7693939267239158],[126,232,77,-0.7690474403567842],[126,232,78,-0.7687033305846558],[126,232,79,-0.7683616026617376],[126,233,64,-0.7739015437761696],[126,233,65,-0.7735268352275783],[126,233,66,-0.7731544319221783],[126,233,67,-0.772784340214884],[126,233,68,-0.7724165663713936],[126,233,69,-0.7720511165677675],[126,233,70,-0.7716879968899927],[126,233,71,-0.7713272133335526],[126,233,72,-0.7709687718029943],[126,233,73,-0.7706126781115096],[126,233,74,-0.7702589379804908],[126,233,75,-0.7699075570391136],[126,233,76,-0.7695585408239086],[126,233,77,-0.7692118947783341],[126,233,78,-0.7688676242523531],[126,233,79,-0.768525734502005],[126,234,64,-0.774068113049148],[126,234,65,-0.7736932592413716],[126,234,66,-0.7733207095785715],[126,234,67,-0.772950470416893],[126,234,68,-0.7725825480233125],[126,234,69,-0.7722169485752162],[126,234,70,-0.7718536781599648],[126,234,71,-0.7714927427744629],[126,234,72,-0.7711341483247276],[126,234,73,-0.7707779006254687],[126,234,74,-0.7704240053996447],[126,234,75,-0.7700724682780468],[126,234,76,-0.769723294798869],[126,234,77,-0.7693764904072833],[126,234,78,-0.7690320604550146],[126,234,79,-0.768690010199914],[126,235,64,-0.7742348054543895],[126,235,65,-0.7738598077784155],[126,235,66,-0.7734871131446006],[126,235,67,-0.7731167279102977],[126,235,68,-0.7727486583437381],[126,235,69,-0.7723829106236106],[126,235,70,-0.7720194908386273],[126,235,71,-0.7716584049870914],[126,235,72,-0.7712996589764669],[126,235,73,-0.77094325862296],[126,235,74,-0.7705892096510735],[126,235,75,-0.7702375176931915],[126,235,76,-0.7698881882891511],[126,235,77,-0.7695412268858153],[126,235,78,-0.7691966388366505],[126,235,79,-0.7688544294012982],[126,236,64,-0.7744016206090506],[126,236,65,-0.7740264804577215],[126,236,66,-0.7736536422411295],[126,236,67,-0.7732831123178117],[126,236,68,-0.772914896957231],[126,236,69,-0.7725490023393562],[126,236,70,-0.7721854345542271],[126,236,71,-0.7718241996015234],[126,236,72,-0.7714653033901342],[126,236,73,-0.7711087517377386],[126,236,74,-0.7707545503703623],[126,236,75,-0.770402704921961],[126,236,76,-0.7700532209339922],[126,236,77,-0.7697061038549894],[126,236,78,-0.7693613590401387],[126,236,79,-0.7690189917508515],[126,237,64,-0.7745685581292967],[126,237,65,-0.7741932768973013],[126,237,66,-0.773820296488014],[126,237,67,-0.7734496232611319],[126,237,68,-0.7730812634873268],[126,237,69,-0.7727152233478243],[126,237,70,-0.7723515089339691],[126,237,71,-0.7719901262467948],[126,237,72,-0.7716310811965925],[126,237,73,-0.771274379602493],[126,237,74,-0.7709200271920221],[126,237,75,-0.7705680296006852],[126,237,76,-0.7702183923715391],[126,237,77,-0.7698711209547658],[126,237,78,-0.7695262207072504],[126,237,79,-0.7691836968921527],[126,238,64,-0.7747356176302701],[126,238,65,-0.7743601967141354],[126,238,66,-0.7739870755040694],[126,238,67,-0.7736162603609067],[126,238,68,-0.7732477575565042],[126,238,69,-0.7728815732733212],[126,238,70,-0.7725177136039845],[126,238,71,-0.7721561845508587],[126,238,72,-0.7717969920256149],[126,238,73,-0.7714401418488128],[126,238,74,-0.7710856397494565],[126,238,75,-0.7707334913645791],[126,238,76,-0.7703837022388151],[126,238,77,-0.7700362778239738],[126,238,78,-0.7696912234786173],[126,238,79,-0.7693485444676332],[126,239,64,-0.7749027987261533],[126,239,65,-0.7745272395242353],[126,239,66,-0.7741539789071343],[126,239,67,-0.7737830232367987],[126,239,68,-0.7734143787862475],[126,239,69,-0.7730480517391503],[126,239,70,-0.7726840481893932],[126,239,71,-0.7723223741406491],[126,239,72,-0.7719630355059466],[126,239,73,-0.7716060381072519],[126,239,74,-0.7712513876750253],[126,239,75,-0.770899089847806],[126,239,76,-0.7705491501717837],[126,239,77,-0.7702015741003739],[126,239,78,-0.7698563669937949],[126,239,79,-0.7695135341186407],[126,240,64,-0.7750701010301462],[126,240,65,-0.7746944049426214],[126,240,66,-0.7743210063140475],[126,240,67,-0.7739499115074626],[126,240,68,-0.7735811267970245],[126,240,69,-0.7732146583675901],[126,240,70,-0.7728505123142819],[126,240,71,-0.7724886946420586],[126,240,72,-0.7721292112652831],[126,240,73,-0.7717720680073061],[126,240,74,-0.771417270600022],[126,240,75,-0.7710648246834537],[126,240,76,-0.7707147358053255],[126,240,77,-0.7703670094206365],[126,240,78,-0.7700216508912401],[126,240,79,-0.7696786654854156],[126,241,64,-0.7752375241544442],[126,241,65,-0.7748616925833015],[126,241,66,-0.7744881573406261],[126,241,67,-0.7741169247905227],[126,241,68,-0.7737480012082643],[126,241,69,-0.7733813927798722],[126,241,70,-0.7730171056016821],[126,241,71,-0.7726551456799153],[126,241,72,-0.7722955189302472],[126,241,73,-0.7719382311773902],[126,241,74,-0.7715832881546509],[126,241,75,-0.771230695503514],[126,241,76,-0.7708804587732156],[126,241,77,-0.7705325834203183],[126,241,78,-0.7701870748082884],[126,241,79,-0.7698439382070695],[126,242,64,-0.775405067710301],[126,242,65,-0.7750291020593325],[126,242,66,-0.7746554316017282],[126,242,67,-0.7742840627026357],[126,242,68,-0.77391500163842],[126,242,69,-0.7735482545962432],[126,242,70,-0.7731838276736316],[126,242,71,-0.7728217268780464],[126,242,72,-0.7724619581264524],[126,242,73,-0.7721045272449019],[126,242,74,-0.7717494399680906],[126,242,75,-0.7713967019389436],[126,242,76,-0.7710463187081875],[126,242,77,-0.7706982957339258],[126,242,78,-0.7703526383812167],[126,242,79,-0.7700093519216472],[126,243,64,-0.7755727313079971],[126,243,65,-0.7751966329827893],[126,243,66,-0.7748228287112211],[126,243,67,-0.7744513248594591],[126,243,68,-0.7740821277049366],[126,243,69,-0.7737152434359338],[126,243,70,-0.7733506781511442],[126,243,71,-0.7729884378592458],[126,243,72,-0.7726285284784707],[126,243,73,-0.7722709558361882],[126,243,74,-0.7719157256684617],[126,243,75,-0.7715628436196337],[126,243,76,-0.7712123152418997],[126,243,77,-0.7708641459948827],[126,243,78,-0.7705183412452117],[126,243,79,-0.7701749062660953],[126,244,64,-0.7757405145568634],[126,244,65,-0.7753642849647896],[126,244,66,-0.7749903482820063],[126,244,67,-0.7746187108756758],[126,244,68,-0.7742493790242766],[126,244,69,-0.773882358917183],[126,244,70,-0.7735176566542332],[126,244,71,-0.7731552782452993],[126,244,72,-0.7727952296098577],[126,244,73,-0.7724375165765721],[126,244,74,-0.7720821448828514],[126,244,75,-0.7717291201744337],[126,244,76,-0.7713784480049617],[126,244,77,-0.7710301338355557],[126,244,78,-0.7706841830343943],[126,244,79,-0.7703406008762866],[126,245,64,-0.7759084170652518],[126,245,65,-0.7755320576154622],[126,245,66,-0.7751579899259877],[126,245,67,-0.7747862203649629],[126,245,68,-0.7744167552118874],[126,245,69,-0.7740496006572071],[126,245,70,-0.7736847628018809],[126,245,71,-0.7733222476569526],[126,245,72,-0.7729620611431203],[126,245,73,-0.7726042090903196],[126,245,74,-0.7722486972372822],[126,245,75,-0.7718955312311203],[126,245,76,-0.7715447166269013],[126,245,77,-0.7711962588872218],[126,245,78,-0.7708501633817879],[126,245,79,-0.7705064353869883],[126,246,64,-0.776076438440596],[126,246,65,-0.7756999505440096],[126,246,66,-0.7753257532541347],[126,246,67,-0.7749538529400537],[126,246,68,-0.7745842558822645],[126,246,69,-0.7742169682722612],[126,246,70,-0.7738519962121004],[126,246,71,-0.7734893457139742],[126,246,72,-0.7731290226997798],[126,246,73,-0.7727710330007024],[126,246,74,-0.7724153823567743],[126,246,75,-0.7720620764164593],[126,246,76,-0.7717111207362276],[126,246,77,-0.7713625207801308],[126,246,78,-0.7710162819193808],[126,246,79,-0.7706724094319244],[126,247,64,-0.7762445782893899],[126,247,65,-0.7758679633586858],[126,247,66,-0.7754936378764588],[126,247,67,-0.7751216082127159],[126,247,68,-0.7747518806489296],[126,247,69,-0.7743844613776181],[126,247,70,-0.7740193565019134],[126,247,71,-0.7736565720351328],[126,247,72,-0.7732961139003496],[126,247,73,-0.7729379879299763],[126,247,74,-0.7725821998653231],[126,247,75,-0.7722287553561837],[126,247,76,-0.7718776599604091],[126,247,77,-0.7715289191434838],[126,247,78,-0.7711825382781042],[126,247,79,-0.7708385226437542],[126,248,64,-0.7764128362171655],[126,248,65,-0.7760360956667739],[126,248,66,-0.7756616434019925],[126,248,67,-0.7752894857937291],[126,248,68,-0.7749196291244069],[126,248,69,-0.7745520795875452],[126,248,70,-0.774186843287328],[126,248,71,-0.7738239262381748],[126,248,72,-0.7734633343643122],[126,248,73,-0.7731050734993576],[126,248,74,-0.7727491493858769],[126,248,75,-0.772395567674971],[126,248,76,-0.77204433392585],[126,248,77,-0.7716954536054095],[126,248,78,-0.771348932087809],[126,248,79,-0.7710047746540479],[126,249,64,-0.7765812118285549],[126,249,65,-0.7762043470746491],[126,249,66,-0.7758297694388517],[126,249,67,-0.7754574852929476],[126,249,68,-0.7750875009202871],[126,249,69,-0.7747198225153675],[126,249,70,-0.7743544561834013],[126,249,71,-0.7739914079398872],[126,249,72,-0.7736306837101828],[126,249,73,-0.7732722893290871],[126,249,74,-0.7729162305403993],[126,249,75,-0.7725625129965058],[126,249,76,-0.7722111422579537],[126,249,77,-0.7718621237930277],[126,249,78,-0.7715154629773291],[126,249,79,-0.7711711650933513],[126,250,64,-0.776749704727269],[126,250,65,-0.7763727171877557],[126,250,66,-0.7759980155942127],[126,250,67,-0.7756256063192775],[126,250,68,-0.7752554956472044],[126,250,69,-0.7748876897734449],[126,250,70,-0.7745221948042167],[126,250,71,-0.7741590167560753],[126,250,72,-0.7737981615554856],[126,250,73,-0.7734396350384061],[126,250,74,-0.7730834429498472],[126,250,75,-0.7727295909434577],[126,250,76,-0.7723780845811004],[126,250,77,-0.7720289293324267],[126,250,78,-0.7716821305744586],[126,250,79,-0.7713376935911617],[126,251,64,-0.7769183145160741],[126,251,65,-0.7765412056105856],[126,251,66,-0.7761663814742902],[126,251,67,-0.775793848480655],[126,251,68,-0.775423612914814],[126,251,69,-0.7750556809731499],[126,251,70,-0.7746900587628622],[126,251,71,-0.7743267523015398],[126,251,72,-0.7739657675167326],[126,251,73,-0.7736071102455354],[126,251,74,-0.7732507862341474],[126,251,75,-0.7728968011374583],[126,251,76,-0.7725451605186235],[126,251,77,-0.7721958698486404],[126,251,78,-0.7718489345059287],[126,251,79,-0.7715043597759059],[126,252,64,-0.7770870407968554],[126,252,65,-0.7767098119467402],[126,252,66,-0.7763348666844003],[126,252,67,-0.7759622113841086],[126,252,68,-0.7755918523318553],[126,252,69,-0.7752237957249304],[126,252,70,-0.7748580476714921],[126,252,71,-0.7744946141901398],[126,252,72,-0.7741335012094852],[126,252,73,-0.773774714567737],[126,252,74,-0.7734182600122607],[126,252,75,-0.7730641431991642],[126,252,76,-0.7727123696928737],[126,252,77,-0.7723629449657108],[126,252,78,-0.7720158743974717],[126,252,79,-0.7716711632750034],[126,253,64,-0.7772558831705847],[126,253,65,-0.7768785357988988],[126,253,66,-0.7765034708289285],[126,253,67,-0.7761306946357277],[126,253,68,-0.7757602135061195],[126,253,69,-0.7753920336382776],[126,253,70,-0.775026161141296],[126,253,71,-0.7746626020347608],[126,253,72,-0.7743013622483229],[126,253,73,-0.7739424476212826],[126,253,74,-0.7735858639021485],[126,253,75,-0.7732316167482245],[126,253,76,-0.7728797117251863],[126,253,77,-0.7725301543066568],[126,253,78,-0.7721829498737872],[126,253,79,-0.7718381037148331],[126,254,64,-0.7774248412373456],[126,254,65,-0.7770473767688441],[126,254,66,-0.7766721935113539],[126,254,67,-0.7762992978406869],[126,254,68,-0.7759286960444745],[126,254,69,-0.7755603943217512],[126,254,70,-0.7751943987825227],[126,254,71,-0.7748307154473395],[126,254,72,-0.7744693502468684],[126,254,73,-0.774110309021478],[126,254,74,-0.7737535975207982],[126,254,75,-0.7733992214033067],[126,254,76,-0.7730471862359058],[126,254,77,-0.7726974974934983],[126,254,78,-0.7723501605585686],[126,254,79,-0.7720051807207593],[126,255,64,-0.7775939145963011],[126,255,65,-0.7772163344574292],[126,255,66,-0.7768410343342186],[126,255,67,-0.7764680206032144],[126,255,68,-0.7760972995528335],[126,255,69,-0.7757288773829469],[126,255,70,-0.7753627602044493],[126,255,71,-0.7749989540388317],[126,255,72,-0.7746374648177544],[126,255,73,-0.7742782983826316],[126,255,74,-0.7739214604841914],[126,255,75,-0.7735669567820633],[126,255,76,-0.7732147928443538],[126,255,77,-0.7728649741472239],[126,255,78,-0.7725175060744696],[126,255,79,-0.7721723939170987],[126,256,64,-0.7777631028457572],[126,256,65,-0.7773854084646413],[126,256,66,-0.777009992899189],[126,256,67,-0.7766368625266549],[126,256,68,-0.7762660236362171],[126,256,69,-0.7758974824285598],[126,256,70,-0.775531245015443],[126,256,71,-0.7751673174192755],[126,256,72,-0.7748057055726876],[126,256,73,-0.7744464153181165],[126,256,74,-0.7740894524073662],[126,256,75,-0.7737348225011952],[126,256,76,-0.7733825311688923],[126,256,77,-0.7730325838878545],[126,256,78,-0.7726849860431676],[126,256,79,-0.7723397429271833],[126,257,64,-0.7779324055831395],[126,257,65,-0.7775545983895789],[126,257,66,-0.7771790688070344],[126,257,67,-0.7768058232134465],[126,257,68,-0.7764348678987307],[126,257,69,-0.7760662090643611],[126,257,70,-0.7756998528229391],[126,257,71,-0.775335805197768],[126,257,72,-0.7749740721224255],[126,257,73,-0.7746146594403487],[126,257,74,-0.7742575729043949],[126,257,75,-0.7739028181764291],[126,257,76,-0.7735504008269005],[126,257,77,-0.7732003263344199],[126,257,78,-0.7728526000853413],[126,257,79,-0.7725072273733384],[126,258,64,-0.7781018224049715],[126,258,65,-0.7777239038304288],[126,258,66,-0.777348261657604],[126,258,67,-0.776974902265099],[126,258,68,-0.7766038319435431],[126,258,69,-0.7762350568951761],[126,258,70,-0.775868583233418],[126,258,71,-0.7755044169824433],[126,258,72,-0.7751425640767537],[126,258,73,-0.7747830303607637],[126,258,74,-0.7744258215883609],[126,258,75,-0.7740709434224948],[126,258,76,-0.7737184014347523],[126,258,77,-0.7733682011049364],[126,258,78,-0.7730203478206471],[126,258,79,-0.7726748468768586],[126,259,64,-0.7782713529069369],[126,259,65,-0.7778933243845298],[126,259,66,-0.7775175710498897],[126,259,67,-0.777144099282256],[126,259,68,-0.7767729153729477],[126,259,69,-0.7764040255249468],[126,259,70,-0.7760374358524685],[126,259,71,-0.7756731523805351],[126,259,72,-0.7753111810445492],[126,259,73,-0.7749515276898796],[126,259,74,-0.7745941980714222],[126,259,75,-0.7742391978531878],[126,259,76,-0.7738865326078793],[126,259,77,-0.7735362078164694],[126,259,78,-0.7731882288677825],[126,259,79,-0.7728426010580718],[126,260,64,-0.7784409966838478],[126,260,65,-0.7780628596483399],[126,260,66,-0.7776869965819941],[126,260,67,-0.777313413864663],[126,260,68,-0.7769421177883314],[126,260,69,-0.7765731145567],[126,260,70,-0.7762064102847553],[126,260,71,-0.7758420109983444],[126,260,72,-0.7754799226337475],[126,260,73,-0.7751201510372653],[126,260,74,-0.7747627019647785],[126,260,75,-0.7744075810813373],[126,260,76,-0.7740547939607383],[126,260,77,-0.7737043460851014],[126,260,78,-0.7733562428444539],[126,260,79,-0.7730104895363061],[126,261,64,-0.7786107533296694],[126,261,65,-0.7782325092174619],[126,261,66,-0.7778565378511556],[126,261,67,-0.7774828456111926],[126,261,68,-0.7771114387901994],[126,261,69,-0.7767423235925719],[126,261,70,-0.7763755061340442],[126,261,71,-0.7760109924412646],[126,261,72,-0.7756487884513684],[126,261,73,-0.7752889000115646],[126,261,74,-0.7749313328786965],[126,261,75,-0.7745760927188312],[126,261,76,-0.7742231851068359],[126,261,77,-0.7738726155259568],[126,261,78,-0.7735243893674012],[126,261,79,-0.7731785119299155],[126,262,64,-0.7787806224374884],[126,262,65,-0.7784022726866106],[126,262,66,-0.778026194453716],[126,262,67,-0.7776523941198119],[126,262,68,-0.7772808779781429],[126,262,69,-0.7769116522337758],[126,262,70,-0.7765447230031691],[126,262,71,-0.7761800963137491],[126,262,72,-0.7758177781034827],[126,262,73,-0.7754577742204645],[126,262,74,-0.7751000904224775],[126,262,75,-0.7747447323765829],[126,262,76,-0.7743917056586967],[126,262,77,-0.7740410157531689],[126,262,78,-0.7736926680523653],[126,262,79,-0.7733466678562461],[126,263,64,-0.778950603599575],[126,263,65,-0.7785721496496758],[126,263,66,-0.7781959659851834],[126,263,67,-0.7778220589876458],[126,263,68,-0.7774504349509018],[126,263,69,-0.7770811000806653],[126,263,70,-0.776714060494096],[126,263,71,-0.7763493222193745],[126,263,72,-0.775986891195276],[126,263,73,-0.7756267732707578],[126,263,74,-0.77526897420452],[126,263,75,-0.7749134996645953],[126,263,76,-0.7745603552279263],[126,263,77,-0.7742095463799441],[126,263,78,-0.7738610785141513],[126,263,79,-0.7735149569317004],[126,264,64,-0.7791206964073614],[126,264,65,-0.7787421396997003],[126,264,66,-0.7783658520402096],[126,264,67,-0.7779918398109539],[126,264,68,-0.7776201093063422],[126,264,69,-0.7772506667327118],[126,264,70,-0.7768835182078996],[126,264,71,-0.7765186697608173],[126,264,72,-0.7761561273310253],[126,264,73,-0.7757958967683206],[126,264,74,-0.7754379838322976],[126,264,75,-0.7750823941919378],[126,264,76,-0.7747291334251877],[126,264,77,-0.7743782070185379],[126,264,78,-0.7740296203666057],[126,264,79,-0.7736833787717138],[126,265,64,-0.7792909004514181],[126,265,65,-0.7789122424288565],[126,265,66,-0.7785358522125675],[126,265,67,-0.7781617361851083],[126,265,68,-0.7777899006414339],[126,265,69,-0.7774203517884812],[126,265,70,-0.7770530957447407],[126,265,71,-0.7766881385398317],[126,265,72,-0.7763254861140768],[126,265,73,-0.7759651443180894],[126,265,74,-0.7756071189123352],[126,265,75,-0.7752514155667225],[126,265,76,-0.774898039860179],[126,265,77,-0.7745469972802325],[126,265,78,-0.774198293222593],[126,265,79,-0.7738519329907316],[126,266,64,-0.7794612153215177],[126,266,65,-0.7790824574285098],[126,266,66,-0.778705966095214],[126,266,67,-0.7783317477046562],[126,266,68,-0.777959808552313],[126,266,69,-0.7775901548456972],[126,266,70,-0.777222792703929],[126,266,71,-0.7768577281573122],[126,266,72,-0.7764949671469084],[126,266,73,-0.7761345155241238],[126,266,74,-0.7757763790502734],[126,266,75,-0.7754205633961685],[126,266,76,-0.7750670741416965],[126,266,77,-0.7747159167753997],[126,266,78,-0.774367096694059],[126,266,79,-0.7740206192022724],[126,267,64,-0.7796316406066018],[126,267,65,-0.7792527842891858],[126,267,66,-0.7788761932802578],[126,267,67,-0.7785018739632875],[126,267,68,-0.7781298326342495],[126,267,69,-0.7777600755012085],[126,267,70,-0.7773926086838912],[126,267,71,-0.7770274382132617],[126,267,72,-0.7766645700310971],[126,267,73,-0.7763040099895746],[126,267,74,-0.7759457638508341],[126,267,75,-0.7755898372865686],[126,267,76,-0.7752362358776018],[126,267,77,-0.7748849651134686],[126,267,78,-0.7745360303919988],[126,267,79,-0.7741894370188951],[126,268,64,-0.7798021758948068],[126,268,65,-0.7794232226005958],[126,268,66,-0.7790465333589839],[126,268,67,-0.77867211455386],[126,268,68,-0.7782999724816727],[126,268,69,-0.7779301133510148],[126,268,70,-0.7775625432821951],[126,268,71,-0.7771972683068156],[126,268,72,-0.776834294367345],[126,268,73,-0.776473627316708],[126,268,74,-0.7761152729178474],[126,268,75,-0.7757592368433144],[126,268,76,-0.7754055246748469],[126,268,77,-0.7750541419029504],[126,268,78,-0.7747050939264808],[126,268,79,-0.7743583860522241],[126,269,64,-0.7799728207734309],[126,269,65,-0.7795937719516046],[126,269,66,-0.7792169859218219],[126,269,67,-0.7788424690683671],[126,269,68,-0.7784702276881386],[126,269,69,-0.7781002679902331],[126,269,70,-0.7777325960955184],[126,269,71,-0.7773672180362099],[126,269,72,-0.7770041397554455],[126,269,73,-0.7766433671068738],[126,269,74,-0.7762849058542176],[126,269,75,-0.7759287616708637],[126,269,76,-0.7755749401394418],[126,269,77,-0.7752234467514052],[126,269,78,-0.7748742869066143],[126,269,79,-0.7745274659129163],[126,270,64,-0.7801435748289977],[126,270,65,-0.7797644319302927],[126,270,66,-0.7793875505584084],[126,270,67,-0.7790129370980006],[126,270,68,-0.7786405978463926],[126,270,69,-0.7782705390131616],[126,270,70,-0.7779027667197104],[126,270,71,-0.7775372869988443],[126,270,72,-0.7771741057943469],[126,270,73,-0.776813228960568],[126,270,74,-0.7764546622619871],[126,270,75,-0.7760984113728038],[126,270,76,-0.7757444818765171],[126,270,77,-0.7753928792655059],[126,270,78,-0.775043608940613],[126,270,79,-0.7746966762107249],[126,271,64,-0.7803144376472327],[126,271,65,-0.779935202123934],[126,271,66,-0.7795582268575648],[126,271,67,-0.7791835182331275],[126,271,68,-0.778811082548347],[126,271,69,-0.7784409260132563],[126,271,70,-0.7780730547497697],[126,271,71,-0.7777074747912591],[126,271,72,-0.77734419208213],[126,271,73,-0.7769832124774103],[126,271,74,-0.7766245417423131],[126,271,75,-0.7762681855518284],[126,271,76,-0.7759141494903017],[126,271,77,-0.7755624390510151],[126,271,78,-0.7752130596357718],[126,271,79,-0.7748660165544755],[126,272,64,-0.7804854088130414],[126,272,65,-0.7801060821189731],[126,272,66,-0.7797290144072739],[126,272,67,-0.7793542120632684],[126,272,68,-0.7789816813850583],[126,272,69,-0.7786114285831088],[126,272,70,-0.778243459779822],[126,272,71,-0.7778777810091123],[126,272,72,-0.7775143982159843],[126,272,73,-0.7771533172561202],[126,272,74,-0.7767945438954447],[126,272,75,-0.7764380838097142],[126,272,76,-0.776083942584099],[126,272,77,-0.7757321257127616],[126,272,78,-0.7753826385984435],[126,272,79,-0.7750354865520437],[126,273,64,-0.7806564879105715],[126,273,65,-0.7802770715010885],[126,273,66,-0.7798999127947435],[126,273,67,-0.7795250181771588],[126,273,68,-0.7791523939467894],[126,273,69,-0.7787820463145086],[126,273,70,-0.7784139814031816],[126,273,71,-0.7780482052472427],[126,273,72,-0.7776847237922715],[126,273,73,-0.7773235428945817],[126,273,74,-0.7769646683207856],[126,273,75,-0.7766081057473848],[126,273,76,-0.7762538607603504],[126,273,77,-0.7759019388547037],[126,273,78,-0.7755523454341018],[126,273,79,-0.7752050858104174],[126,274,64,-0.7808276745231808],[126,274,65,-0.7804481698551592],[126,274,66,-0.7800709216063731],[126,274,67,-0.7796959361627184],[126,274,68,-0.7793232198229785],[126,274,69,-0.7789527787984108],[126,274,70,-0.7785846192123205],[126,274,71,-0.7782187470996373],[126,274,72,-0.7778551684064928],[126,274,73,-0.777493888989809],[126,274,74,-0.7771349146168628],[126,274,75,-0.7767782509648775],[126,274,76,-0.776423903620603],[126,274,77,-0.7760718780798969],[126,274,78,-0.7757221797473096],[126,274,79,-0.7753748139356654],[126,275,64,-0.7809989682334626],[126,275,65,-0.7806193767652908],[126,275,66,-0.7802420404277799],[126,275,67,-0.7798669656070745],[126,275,68,-0.7794941586022626],[126,275,69,-0.7791236256249615],[126,275,70,-0.7787553727988921],[126,275,71,-0.7783894061594563],[126,275,72,-0.7780257316533141],[126,275,73,-0.7776643551379723],[126,275,74,-0.7773052823813495],[126,275,75,-0.7769485190613682],[126,275,76,-0.7765940707655339],[126,275,77,-0.7762419429905181],[126,275,78,-0.7758921411417427],[126,275,79,-0.7755446705329611],[126,276,64,-0.7811703686232122],[126,276,65,-0.7807906918147823],[126,276,66,-0.7804132688437654],[126,276,67,-0.7800381060965306],[126,276,68,-0.7796652098724458],[126,276,69,-0.7792945863834644],[126,276,70,-0.7789262417536992],[126,276,71,-0.7785601820190005],[126,276,72,-0.7781964131265329],[126,276,73,-0.777834940934365],[126,276,74,-0.7774757712110343],[126,276,75,-0.7771189096351387],[126,276,76,-0.7767643617949176],[126,276,77,-0.7764121331878334],[126,276,78,-0.7760622292201571],[126,276,79,-0.7757146552065497],[126,277,64,-0.7813418752734911],[126,277,65,-0.7809621145861895],[126,277,66,-0.780584606438379],[126,277,67,-0.7802093572166287],[126,277,68,-0.7798363732205622],[126,277,69,-0.7794656606624447],[126,277,70,-0.7790972256667571],[126,277,71,-0.7787310742697741],[126,277,72,-0.7783672124191419],[126,277,73,-0.778005645973467],[126,277,74,-0.7776463807018829],[126,277,75,-0.7772894222836403],[126,277,76,-0.7769347763076893],[126,277,77,-0.7765824482722611],[126,277,78,-0.7762324435844534],[126,277,79,-0.7758847675598124],[126,278,64,-0.781513487764603],[126,278,65,-0.7811336446613018],[126,278,66,-0.7807560527948948],[126,278,67,-0.7803807185521269],[126,278,68,-0.7800076482328528],[126,278,69,-0.7796368480496256],[126,278,70,-0.7792683241272702],[126,278,71,-0.7789020825024621],[126,278,72,-0.7785381291233052],[126,278,73,-0.7781764698489213],[126,278,74,-0.7778171104490159],[126,278,75,-0.7774600566034701],[126,278,76,-0.7771053139019218],[126,278,77,-0.7767528878433484],[126,278,78,-0.7764027838356522],[126,278,79,-0.7760550071952423],[126,279,64,-0.7816852056760722],[126,279,65,-0.7813052816211195],[126,279,66,-0.7809276074957889],[126,279,67,-0.780552189686976],[126,279,68,-0.7801790344947429],[126,279,69,-0.7798081481319057],[126,279,70,-0.7794395367236094],[126,279,71,-0.779073206306907],[126,279,72,-0.7787091628303363],[126,279,73,-0.778347412153511],[126,279,74,-0.7779879600466855],[126,279,75,-0.7776308121903481],[126,279,76,-0.7772759741748021],[126,279,77,-0.7769234514997484],[126,279,78,-0.7765732495738714],[126,279,79,-0.7762253737144215],[126,280,64,-0.7818570285867052],[126,280,65,-0.7814770250459167],[126,280,66,-0.7810992701228021],[126,280,67,-0.7807237702043831],[126,280,68,-0.7803505315909043],[126,280,69,-0.7799795604954212],[126,280,70,-0.7796108630433751],[126,280,71,-0.779244445272172],[126,280,72,-0.7788803131307606],[126,280,73,-0.7785184724792225],[126,280,74,-0.7781589290883383],[126,280,75,-0.7778016886391805],[126,280,76,-0.777446756722695],[126,280,77,-0.7770941388392834],[126,280,78,-0.7767438403983901],[126,280,79,-0.7763958667180841],[126,281,64,-0.7820289560745592],[126,281,65,-0.781648874515209],[126,281,66,-0.7812710402569076],[126,281,67,-0.7808954596867782],[126,281,68,-0.7805221391052237],[126,281,69,-0.7801510847255146],[126,281,70,-0.7797823026733643],[126,281,71,-0.7794157989865085],[126,281,72,-0.7790515796142824],[126,281,73,-0.7786896504172127],[126,281,74,-0.7783300171665831],[126,281,75,-0.777972685544027],[126,281,76,-0.7776176611411096],[126,281,77,-0.7772649494589116],[126,281,78,-0.7769145559076144],[126,281,79,-0.7765664858060839],[126,282,64,-0.7822009877169666],[126,282,65,-0.7818208296077782],[126,282,66,-0.7814429174783359],[126,282,67,-0.7810672577158401],[126,282,68,-0.7806938566208271],[126,282,69,-0.7803227204067585],[126,282,70,-0.7799538551995959],[126,282,71,-0.7795872670373802],[126,282,72,-0.7792229618698104],[126,282,73,-0.7788609455578344],[126,282,74,-0.7785012238732154],[126,282,75,-0.7781438024981249],[126,282,76,-0.7777886870247253],[126,282,77,-0.7774358829547525],[126,282,78,-0.7770853956991036],[126,282,79,-0.7767372305774187],[126,283,64,-0.7823731230905023],[126,283,65,-0.7819928899016396],[126,283,66,-0.7816149013665421],[126,283,67,-0.7812391638724627],[126,283,68,-0.7808656837200473],[126,283,69,-0.7804944671229237],[126,283,70,-0.7801255202072775],[126,283,71,-0.7797588490114316],[126,283,72,-0.7793944594854247],[126,283,73,-0.7790323574906024],[126,283,74,-0.7786725487991843],[126,283,75,-0.7783150390938574],[126,283,76,-0.7779598339673575],[126,283,77,-0.7776069389220539],[126,283,78,-0.7772563593695363],[126,283,79,-0.7769081006301973],[126,284,64,-0.7825453617710474],[126,284,65,-0.782165054974105],[126,284,66,-0.7817869915002689],[126,284,67,-0.7814111777368191],[126,284,68,-0.7810376199844864],[126,284,69,-0.7806663244570412],[126,284,70,-0.7802972972808689],[126,284,71,-0.7799305444945501],[126,284,72,-0.7795660720484398],[126,284,73,-0.7792038858042577],[126,284,74,-0.7788439915346568],[126,284,75,-0.7784863949228157],[126,284,76,-0.7781311015620218],[126,284,77,-0.7777781169552547],[126,284,78,-0.7774274465147742],[126,284,79,-0.7770790955617031],[126,285,64,-0.7827177033337651],[126,285,65,-0.7823373244017604],[126,285,66,-0.7819591874575236],[126,285,67,-0.7815832988883376],[126,285,68,-0.7812096649949938],[126,285,69,-0.7808382919913806],[126,285,70,-0.7804691860040588],[126,285,71,-0.7801023530718434],[126,285,72,-0.7797377991453813],[126,285,73,-0.7793755300867438],[126,285,74,-0.7790155516689931],[126,285,75,-0.7786578695757769],[126,285,76,-0.7783024894009107],[126,285,77,-0.7779494166479621],[126,285,78,-0.7775986567298387],[126,285,79,-0.7772502149683708],[126,286,64,-0.7828901473530789],[126,286,65,-0.782509697760442],[126,286,66,-0.782131488815555],[126,286,67,-0.7817555269056795],[126,286,68,-0.7813818183316423],[126,286,69,-0.7810103693074254],[126,286,70,-0.7806411859597417],[126,286,71,-0.780274274327616],[126,286,72,-0.7799096403619636],[126,286,73,-0.7795472899251835],[126,286,74,-0.7791872287907244],[126,286,75,-0.7788294626426795],[126,286,76,-0.7784739970753698],[126,286,77,-0.7781208375929282],[126,286,78,-0.7777699896088871],[126,286,79,-0.7774214584457626],[126,287,64,-0.7830626934027348],[126,287,65,-0.7826821746252999],[126,287,66,-0.7823038951509171],[126,287,67,-0.7819278613668015],[126,287,68,-0.7815540795737913],[126,287,69,-0.7811825559859376],[126,287,70,-0.7808132967300812],[126,287,71,-0.7804463078454326],[126,287,72,-0.7800815952831522],[126,287,73,-0.7797191649059427],[126,287,74,-0.7793590224876159],[126,287,75,-0.7790011737126878],[126,287,76,-0.7786456241759617],[126,287,77,-0.778292379382113],[126,287,78,-0.7779414447452767],[126,287,79,-0.7775928255886321],[126,288,64,-0.7832353410557786],[126,288,65,-0.7828547545707746],[126,288,66,-0.7824764060394449],[126,288,67,-0.7821003018489329],[126,288,68,-0.7817264483000638],[126,288,69,-0.7813548516069336],[126,288,70,-0.7809855178964864],[126,288,71,-0.7806184532080948],[126,288,72,-0.7802536634931405],[126,288,73,-0.7798911546146061],[126,288,74,-0.7795309323466434],[126,288,75,-0.7791730023741679],[126,288,76,-0.7788173702924422],[126,288,77,-0.7784640416066615],[126,288,78,-0.7781130217315408],[126,288,79,-0.7777643159909005],[126,289,64,-0.7834080898845327],[126,289,65,-0.7830274371705745],[126,289,66,-0.782649021056232],[126,289,67,-0.7822728479285526],[126,289,68,-0.7818989240883234],[126,289,69,-0.7815272557496613],[126,289,70,-0.7811578490395892],[126,289,71,-0.7807907099976181],[126,289,72,-0.7804258445753268],[126,289,73,-0.7800632586359547],[126,289,74,-0.77970295795397],[126,289,75,-0.7793449482146644],[126,289,76,-0.7789892350137371],[126,289,77,-0.7786358238568799],[126,289,78,-0.7782847201593658],[126,289,79,-0.7779359292456334],[126,290,64,-0.7835809394606594],[126,290,65,-0.7832002219977385],[126,290,66,-0.7828217397756938],[126,290,67,-0.7824454991814518],[126,290,68,-0.7820715065157374],[126,290,69,-0.7816997679926632],[126,290,70,-0.7813302897393073],[126,290,71,-0.7809630777952947],[126,290,72,-0.7805981381123779],[126,290,73,-0.7802354765540291],[126,290,74,-0.7798750988950095],[126,290,75,-0.7795170108209641],[126,290,76,-0.7791612179280054],[126,290,77,-0.7788077257222993],[126,290,78,-0.7784565396196539],[126,290,79,-0.7781076649451037],[126,291,64,-0.7837538893551279],[126,291,65,-0.7833731086246034],[126,291,66,-0.7829945617715344],[126,291,67,-0.7826182551827019],[126,291,68,-0.7822441951587435],[126,291,69,-0.7818723879137437],[126,291,70,-0.7815028395748111],[126,291,71,-0.7811355561816611],[126,291,72,-0.7807705436861954],[126,291,73,-0.780407807952096],[126,291,74,-0.7800473547543935],[126,291,75,-0.7796891897790625],[126,291,76,-0.7793333186226065],[126,291,77,-0.7789797467916423],[126,291,78,-0.7786284797024905],[126,291,79,-0.7782795226807597],[126,292,64,-0.7839269391382392],[126,292,65,-0.7835460966228285],[126,292,66,-0.7831674866167713],[126,292,67,-0.7827911155066783],[126,292,68,-0.7824169895930753],[126,292,69,-0.7820451150899936],[126,292,70,-0.7816754981245491],[126,292,71,-0.7813081447365222],[126,292,72,-0.7809430608779412],[126,292,73,-0.7805802524126734],[126,292,74,-0.7802197251159957],[126,292,75,-0.7798614846741894],[126,292,76,-0.779505536684125],[126,292,77,-0.7791518866528482],[126,292,78,-0.7788005399971694],[126,292,79,-0.7784515020432481],[126,293,64,-0.7841000883795937],[126,293,65,-0.7837191855633635],[126,293,66,-0.7833405138837035],[126,293,67,-0.782964079727029],[126,293,68,-0.7825898893937291],[126,293,69,-0.7822179490977582],[126,293,70,-0.781848264966214],[126,293,71,-0.7814808430389193],[126,293,72,-0.781115689268004],[126,293,73,-0.7807528095174976],[126,293,74,-0.7803922095628995],[126,293,75,-0.7800338950907745],[126,293,76,-0.7796778716983375],[126,293,77,-0.7793241448930396],[126,293,78,-0.7789727200921583],[126,293,79,-0.7786236026223824],[126,294,64,-0.7842733366481537],[126,294,65,-0.7838923750165109],[126,294,66,-0.7835136431439734],[126,294,67,-0.783137147416736],[126,294,68,-0.782762894135027],[126,294,69,-0.7823908895126989],[126,294,70,-0.7820211396768072],[126,294,71,-0.7816536506671927],[126,294,72,-0.781288428436063],[126,294,73,-0.7809254788475863],[126,294,74,-0.7805648076774612],[126,294,75,-0.7802064206125122],[126,294,76,-0.7798503232502757],[126,294,77,-0.7794965210985856],[126,294,78,-0.7791450195751638],[126,294,79,-0.7787958240072055],[126,295,64,-0.7844466835122207],[126,295,65,-0.7840656645519032],[126,295,66,-0.7836868739685443],[126,295,67,-0.7833103181480937],[126,295,68,-0.7829360033905939],[126,295,69,-0.7825639359097711],[126,295,70,-0.7821941218326144],[126,295,71,-0.7818265671989582],[126,295,72,-0.7814612779610643],[126,295,73,-0.7810982599832156],[126,295,74,-0.780737519041286],[126,295,75,-0.7803790608223372],[126,295,76,-0.7800228909242036],[126,295,77,-0.7796690148550789],[126,295,78,-0.7793174380331068],[126,295,79,-0.7789681657859665],[126,296,64,-0.7846201285394123],[126,296,65,-0.7842390537384796],[126,296,66,-0.7838602059276772],[126,296,67,-0.783483591492685],[126,296,68,-0.7831092167333342],[126,296,69,-0.7827370878632007],[126,296,70,-0.7823672110091829],[126,296,71,-0.7819995922110845],[126,296,72,-0.7816342374211976],[126,296,73,-0.7812711525038959],[126,296,74,-0.7809103432352056],[126,296,75,-0.7805518153024017],[126,296,76,-0.7801955743035934],[126,296,77,-0.7798416257473119],[126,296,78,-0.7794899750520994],[126,296,79,-0.7791406275460969],[126,297,64,-0.7847936712967247],[126,297,65,-0.7844125421445491],[126,297,66,-0.784033638590994],[126,297,67,-0.7836569670214438],[126,297,68,-0.7832825337354948],[126,297,69,-0.7829103449465474],[126,297,70,-0.7825404067813846],[126,297,71,-0.782172725279756],[126,297,72,-0.7818073063939595],[126,297,73,-0.7814441559884361],[126,297,74,-0.7810832798393406],[126,297,75,-0.7807246836341378],[126,297,76,-0.7803683729711894],[126,297,77,-0.7800143533593398],[126,297,78,-0.7796626302175084],[126,297,79,-0.7793132088742744],[126,298,64,-0.7849673113505006],[126,298,65,-0.7845861293377577],[126,298,66,-0.7842071715274439],[126,298,67,-0.7838304443046231],[126,298,68,-0.7834559539686322],[126,298,69,-0.7830837067326709],[126,298,70,-0.7827137087233831],[126,298,71,-0.7823459659804395],[126,298,72,-0.7819804844561202],[126,298,73,-0.7816172700149098],[126,298,74,-0.7812563284330677],[126,298,75,-0.7808976653982258],[126,298,76,-0.7805412865089741],[126,298,77,-0.7801871972744485],[126,298,78,-0.7798354031139215],[126,298,79,-0.7794859093563893],[126,299,64,-0.7851410482664531],[126,299,65,-0.7847598148851131],[126,299,66,-0.7843808043053289],[126,299,67,-0.7840040229118198],[126,299,68,-0.7836294770036372],[126,299,69,-0.7832571727937567],[126,299,70,-0.7828871164086584],[126,299,71,-0.7825193138879096],[126,299,72,-0.782153771183749],[126,299,73,-0.7817904941606802],[126,299,74,-0.7814294885950448],[126,299,75,-0.7810707601746174],[126,299,76,-0.7807143144981938],[126,299,77,-0.7803601570751779],[126,299,78,-0.7800082933251731],[126,299,79,-0.7796587285775693],[126,300,64,-0.7853148816096343],[126,300,65,-0.784933598352952],[126,300,66,-0.784554536492271],[126,300,67,-0.7841777024119406],[126,300,68,-0.7838031024107025],[126,300,69,-0.783430742701283],[126,300,70,-0.7830606294099738],[126,300,71,-0.7826927685762153],[126,300,72,-0.78232716615218],[126,300,73,-0.7819638280023677],[126,300,74,-0.7816027599031774],[126,300,75,-0.7812439675425039],[126,300,76,-0.7808874565193251],[126,300,77,-0.7805332323432899],[126,300,78,-0.7801813004343101],[126,300,79,-0.7798316661221465],[126,301,64,-0.7854888109444964],[126,301,65,-0.7851074793070028],[126,301,66,-0.7847283676552747],[126,301,67,-0.7843514823732665],[126,301,68,-0.783976829759385],[126,301,69,-0.7836044160260831],[126,301,70,-0.7832342472994395],[126,301,71,-0.7828663296187431],[126,301,72,-0.7825006689360767],[126,301,73,-0.7821372711159122],[126,301,74,-0.7817761419346823],[126,301,75,-0.7814172870803784],[126,301,76,-0.7810607121521378],[126,301,77,-0.7807064226598313],[126,301,78,-0.7803544240236556],[126,301,79,-0.7800047215737207],[126,302,64,-0.7856628358348702],[126,302,65,-0.7852814573123628],[126,302,66,-0.784902297360704],[126,302,67,-0.7845253623634284],[126,302,68,-0.7841506586185832],[126,302,69,-0.7837781923383228],[126,302,70,-0.7834079696484886],[126,302,71,-0.783039996588194],[126,302,72,-0.7826742791094078],[126,302,73,-0.7823108230765499],[126,302,74,-0.7819496342660636],[126,302,75,-0.7815907183660133],[126,302,76,-0.781234080975672],[126,302,77,-0.7808797276051098],[126,302,78,-0.7805276636747855],[126,302,79,-0.7801778945151356],[126,303,64,-0.7858369558439412],[126,303,65,-0.7854555319334748],[126,303,66,-0.7850763251742597],[126,303,67,-0.7846993419493848],[126,303,68,-0.7843245885565134],[126,303,69,-0.7839520712074768],[126,303,70,-0.7835817960278544],[126,303,71,-0.7832137690565599],[126,303,72,-0.7828479962454238],[126,303,73,-0.7824844834587904],[126,303,74,-0.7821232364730899],[126,303,75,-0.781764260976436],[126,303,76,-0.7814075625682145],[126,303,77,-0.7810531467586713],[126,303,78,-0.7807010189685051],[126,303,79,-0.7803511845284552],[126,304,64,-0.7860111705343124],[126,304,65,-0.7856297027341901],[126,304,66,-0.7852504506610412],[126,304,67,-0.7848734206974842],[126,304,68,-0.7844986191407733],[126,304,69,-0.7841260522023917],[126,304,70,-0.7837557260076331],[126,304,71,-0.7833876465951864],[126,304,72,-0.7830218199167204],[126,304,73,-0.7826582518364795],[126,304,74,-0.7822969481308569],[126,304,75,-0.7819379144879925],[126,304,76,-0.7815811565073616],[126,304,77,-0.7812266796993628],[126,304,78,-0.7808744894849113],[126,304,79,-0.7805245911950276],[126,305,64,-0.7861854794679713],[126,305,65,-0.7858039692777353],[126,305,66,-0.7854246733855146],[126,305,67,-0.7850475981734322],[126,305,68,-0.7846727499383083],[126,305,69,-0.7843001348912535],[126,305,70,-0.7839297591572507],[126,305,71,-0.7835616287747406],[126,305,72,-0.7831957496952052],[126,305,73,-0.7828321277827659],[126,305,74,-0.7824707688137548],[126,305,75,-0.7821116784763147],[126,305,76,-0.7817548623699866],[126,305,77,-0.781400326005299],[126,305,78,-0.7810480748033611],[126,305,79,-0.7806981140954513],[126,306,64,-0.7863598822063157],[126,306,65,-0.7859783311267377],[126,306,66,-0.7855989929115368],[126,306,67,-0.7852218739423162],[126,306,68,-0.7848469805154366],[126,306,69,-0.7844743188416113],[126,306,70,-0.7841038950454882],[126,306,71,-0.7837357151652347],[126,306,72,-0.7833697851521227],[126,306,73,-0.7830061108701261],[126,306,74,-0.7826446980954924],[126,306,75,-0.7822855525163437],[126,306,76,-0.7819286797322635],[126,306,77,-0.7815740852538872],[126,306,78,-0.7812217745024947],[126,306,79,-0.7808717528096],[126,307,64,-0.7865343783101195],[126,307,65,-0.7861527878431915],[126,307,66,-0.7857734088023236],[126,307,67,-0.785396247568573],[126,307,68,-0.7850213104378165],[126,307,69,-0.7846486036203455],[126,307,70,-0.7842781332404479],[126,307,71,-0.7839099053359939],[126,307,72,-0.783543925858021],[126,307,73,-0.7831802006703312],[126,307,74,-0.7828187355490647],[126,307,75,-0.7824595361822982],[126,307,76,-0.7821026081696352],[126,307,77,-0.7817479570217941],[126,307,78,-0.7813955881602033],[126,307,79,-0.7810455069165889],[126,308,64,-0.7867089673395963],[126,308,65,-0.7863273389885217],[126,308,66,-0.7859479206205112],[126,308,67,-0.785570718616051],[126,308,68,-0.785195739270509],[126,308,69,-0.7848229887937299],[126,308,70,-0.7844524733096171],[126,308,71,-0.7840841988557191],[126,308,72,-0.7837181713828149],[126,308,73,-0.7833543967545108],[126,308,74,-0.7829928807468152],[126,308,75,-0.7826336290477369],[126,308,76,-0.7822766472568751],[126,308,77,-0.7819219408850089],[126,308,78,-0.7815695153536916],[126,308,79,-0.7812193759948393],[126,309,64,-0.7868836488543759],[126,309,65,-0.7865019841235601],[126,309,66,-0.7861225279281339],[126,309,67,-0.7857452866479874],[126,309,68,-0.7853702665779546],[126,309,69,-0.7849974739274088],[126,309,70,-0.7846269148198441],[126,309,71,-0.7842585952924633],[126,309,72,-0.7838925212957624],[126,309,73,-0.7835286986931281],[126,309,74,-0.7831671332604132],[126,309,75,-0.7828078306855349],[126,309,76,-0.782450796568065],[126,309,77,-0.78209603641882],[126,309,78,-0.7817435556594547],[126,309,79,-0.781393359622053],[126,310,64,-0.7870584224134816],[126,310,65,-0.7866767228085223],[126,310,66,-0.7862972302866004],[126,310,67,-0.7859199512269845],[126,310,68,-0.78554489192395],[126,310,69,-0.7851720585863735],[126,310,70,-0.7848014573373158],[126,310,71,-0.7844330942136087],[126,310,72,-0.7840669751654414],[126,310,73,-0.7837031060559574],[126,310,74,-0.7833414926608299],[126,310,75,-0.7829821406678606],[126,310,76,-0.7826250556765707],[126,310,77,-0.7822702431977907],[126,310,78,-0.7819177086532547],[126,310,79,-0.7815674573751906],[126,311,64,-0.7872332875753922],[126,311,65,-0.7868515546030708],[126,311,66,-0.786472027256757],[126,311,67,-0.7860947119150733],[126,311,68,-0.7857196148717109],[126,311,69,-0.7853467423350252],[126,311,70,-0.7849761004276189],[126,311,71,-0.7846076951859289],[126,311,72,-0.7842415325598129],[126,311,73,-0.7838776184121472],[126,311,74,-0.7835159585184013],[126,311,75,-0.7831565585662383],[126,311,76,-0.7827994241551054],[126,311,77,-0.7824445607958234],[126,311,78,-0.7820919739101829],[126,311,79,-0.7817416688305334],[126,312,64,-0.7874082438980097],[126,312,65,-0.7870264790662814],[126,312,66,-0.7866469183988544],[126,312,67,-0.7862695682736797],[126,312,68,-0.7858944349838392],[126,312,69,-0.7855215247371423],[126,312,70,-0.7851508436557089],[126,312,71,-0.7847823977755566],[126,312,72,-0.7844161930461875],[126,312,73,-0.7840522353301863],[126,312,74,-0.7836905304027955],[126,312,75,-0.7833310839515156],[126,312,76,-0.7829739015756962],[126,312,77,-0.7826189887861257],[126,312,78,-0.7822663510046277],[126,312,79,-0.7819159935636506],[126,313,64,-0.7875832909386837],[126,313,65,-0.7872014957566685],[126,313,66,-0.7868219032725724],[126,313,67,-0.7864445198636492],[126,313,68,-0.786069351822347],[126,313,69,-0.7856964053559043],[126,313,70,-0.7853256865859333],[126,313,71,-0.7849572015480079],[126,313,72,-0.7845909561912502],[126,313,73,-0.7842269563779295],[126,313,74,-0.7838652078830372],[126,313,75,-0.7835057163938877],[126,313,76,-0.7831484875097093],[126,313,77,-0.7827935267412351],[126,313,78,-0.7824408395102986],[126,313,79,-0.782090431149424],[126,314,64,-0.7877584282541786],[126,314,65,-0.787376604232152],[126,314,66,-0.786996981436987],[126,314,67,-0.7866195662452149],[126,314,68,-0.786244364948625],[126,314,69,-0.7858713837538598],[126,314,70,-0.7855006287819992],[126,314,71,-0.7851321060681491],[126,314,72,-0.7847658215610274],[126,314,73,-0.7844017811225634],[126,314,74,-0.7840399905274741],[126,314,75,-0.7836804554628638],[126,314,76,-0.7833231815278163],[126,314,77,-0.7829681742329858],[126,314,78,-0.7826154390001926],[126,314,79,-0.7822649811620144],[126,315,64,-0.7879336554007367],[126,315,65,-0.7875518040501203],[126,315,66,-0.7871721524506331],[126,315,67,-0.7867947069780594],[126,315,68,-0.786419473923504],[126,315,69,-0.7860464594929885],[126,315,70,-0.7856756698070362],[126,315,71,-0.7853071109002601],[126,315,72,-0.7849407887209496],[126,315,73,-0.7845767091306706],[126,315,74,-0.7842148779038406],[126,315,75,-0.7838553007273311],[126,315,76,-0.7834979832000575],[126,315,77,-0.7831429308325718],[126,315,78,-0.7827901490466583],[126,315,79,-0.782439643174925],[126,316,64,-0.7881089719340537],[126,316,65,-0.7877270947674059],[126,316,66,-0.7873474158714813],[126,316,67,-0.7869699416212914],[126,316,68,-0.7865946783072316],[126,316,69,-0.7862216321346782],[126,316,70,-0.7858508092235725],[126,316,71,-0.7854822156080102],[126,316,72,-0.7851158572358283],[126,316,73,-0.7847517399682045],[126,316,74,-0.7843898695792338],[126,316,75,-0.7840302517555303],[126,316,76,-0.783672892095818],[126,316,77,-0.7833177961105233],[126,316,78,-0.7829649692213716],[126,316,79,-0.7826144167609779],[126,317,64,-0.7882843774092572],[126,317,65,-0.7879024759402637],[126,317,66,-0.7875227712569146],[126,317,67,-0.7871452697334231],[126,317,68,-0.7867699776594502],[126,317,69,-0.7863969012397014],[126,317,70,-0.786026046593512],[126,317,71,-0.7856574197544357],[126,317,72,-0.7852910266698322],[126,317,73,-0.7849268732004675],[126,317,74,-0.7845649651200902],[126,317,75,-0.7842053081150329],[126,317,76,-0.7838479077838046],[126,317,77,-0.7834927696366834],[126,317,78,-0.7831398990953118],[126,317,79,-0.7827893014922895],[126,318,64,-0.7884598713809681],[126,318,65,-0.788077947124433],[126,318,66,-0.7876982181637913],[126,318,67,-0.7873206908724324],[126,318,68,-0.786945371539258],[126,318,69,-0.7865722663682782],[126,318,70,-0.7862013814781968],[126,318,71,-0.7858327229020015],[126,318,72,-0.7854662965865504],[126,318,73,-0.7851021083921734],[126,318,74,-0.7847401640922482],[126,318,75,-0.7843804693728031],[126,318,76,-0.7840230298321087],[126,318,77,-0.7836678509802703],[126,318,78,-0.7833149382388253],[126,318,79,-0.7829642969403351],[126,319,64,-0.7886354534032775],[126,319,65,-0.7882535078751136],[126,319,66,-0.7878737561484206],[126,319,67,-0.7874962045957395],[126,319,68,-0.7871208595051868],[126,319,69,-0.7867477270800524],[126,319,70,-0.7863768134383842],[126,319,71,-0.7860081246125787],[126,319,72,-0.7856416665489685],[126,319,73,-0.785277445107423],[126,319,74,-0.7849154660609255],[126,319,75,-0.7845557350951758],[126,319,76,-0.7841982578081822],[126,319,77,-0.7838430397098546],[126,319,78,-0.7834900862216019],[126,319,79,-0.7831394026759241],[127,-64,64,-0.7312038316527465],[127,-64,65,-0.7309229868565603],[127,-64,66,-0.7306446037036606],[127,-64,67,-0.7303686873362356],[127,-64,68,-0.7300952428005643],[127,-64,69,-0.7298242750465933],[127,-64,70,-0.7295557889274973],[127,-64,71,-0.7292897891992446],[127,-64,72,-0.729026280520161],[127,-64,73,-0.7287652674505085],[127,-64,74,-0.7285067544520347],[127,-64,75,-0.7282507458875529],[127,-64,76,-0.7279972460205106],[127,-64,77,-0.7277462590145574],[127,-64,78,-0.7274977889331181],[127,-64,79,-0.7272518397389603],[127,-63,64,-0.7313239006205885],[127,-63,65,-0.7310426123828222],[127,-63,66,-0.7307637857192005],[127,-63,67,-0.7304874257780855],[127,-63,68,-0.7302135376119314],[127,-63,69,-0.7299421261768622],[127,-63,70,-0.729673196332231],[127,-63,71,-0.7294067528401869],[127,-63,72,-0.7291428003652366],[127,-63,73,-0.728881343473825],[127,-63,74,-0.7286223866338831],[127,-63,75,-0.7283659342144089],[127,-63,76,-0.7281119904850349],[127,-63,77,-0.7278605596155969],[127,-63,78,-0.7276116456757059],[127,-63,79,-0.7273652526343164],[127,-62,64,-0.7314441321311933],[127,-62,65,-0.7311624009802],[127,-62,66,-0.7308831313326638],[127,-62,67,-0.7306063283431122],[127,-62,68,-0.7303319970701678],[127,-62,69,-0.7300601424761235],[127,-62,70,-0.729790769426504],[127,-62,71,-0.7295238826896305],[127,-62,72,-0.7292594869361841],[127,-62,73,-0.7289975867387847],[127,-62,74,-0.7287381865715394],[127,-62,75,-0.7284812908096239],[127,-62,76,-0.7282269037288487],[127,-62,77,-0.727975029505228],[127,-62,78,-0.7277256722145528],[127,-62,79,-0.7274788358319572],[127,-61,64,-0.7315645264077224],[127,-61,65,-0.7312823528755279],[127,-61,66,-0.7310026407745382],[127,-61,67,-0.7307253952654391],[127,-61,68,-0.7304506214130124],[127,-61,69,-0.7301783241857134],[127,-61,70,-0.7299085084552296],[127,-61,71,-0.7296411789960474],[127,-61,72,-0.7293763404850144],[127,-61,73,-0.729113997500918],[127,-61,74,-0.7288541545240346],[127,-61,75,-0.7285968159357095],[127,-61,76,-0.7283419860179241],[127,-61,77,-0.7280896689528648],[127,-61,78,-0.7278398688224946],[127,-61,79,-0.7275925896081207],[127,-60,64,-0.7316850836700982],[127,-60,65,-0.7314024682923982],[127,-60,66,-0.7311223142720675],[127,-60,67,-0.7308446267759415],[127,-60,68,-0.7305694108749544],[127,-60,69,-0.7302966715437147],[127,-60,70,-0.7300264136600659],[127,-60,71,-0.7297586420046516],[127,-60,72,-0.729493361260478],[127,-60,73,-0.7292305760124931],[127,-60,74,-0.7289702907471343],[127,-60,75,-0.7287125098519098],[127,-60,76,-0.7284572376149647],[127,-60,77,-0.7282044782246498],[127,-60,78,-0.7279542357690936],[127,-60,79,-0.727706514235769],[127,-59,64,-0.731805804134992],[127,-59,65,-0.7315227474511492],[127,-59,66,-0.7312421520492381],[127,-59,67,-0.7309640231022358],[127,-59,68,-0.7306883656872201],[127,-59,69,-0.7304151847849456],[127,-59,70,-0.7301444852794036],[127,-59,71,-0.7298762719573869],[127,-59,72,-0.7296105495080532],[127,-59,73,-0.7293473225225027],[127,-59,74,-0.729086595493327],[127,-59,75,-0.7288283728141896],[127,-59,76,-0.7285726587793918],[127,-59,77,-0.7283194575834416],[127,-59,78,-0.728068773320626],[127,-59,79,-0.7278206099845765],[127,-58,64,-0.7319266880158748],[127,-58,65,-0.7316431905689162],[127,-58,66,-0.7313621543268308],[127,-58,67,-0.731083584468729],[127,-58,68,-0.7308074860778246],[127,-58,69,-0.73053386414101],[127,-58,70,-0.7302627235484163],[127,-58,71,-0.7299940690929779],[127,-58,72,-0.7297279054699959],[127,-58,73,-0.7294642372767155],[127,-58,74,-0.7292030690118747],[127,-58,75,-0.7289444050752846],[127,-58,76,-0.7286882497673955],[127,-58,77,-0.7284346072888657],[127,-58,78,-0.7281834817401325],[127,-58,79,-0.7279348771209799],[127,-57,64,-0.732047735522999],[127,-57,65,-0.7317637978596125],[127,-57,66,-0.7314823213224013],[127,-57,67,-0.7312033110966007],[127,-57,68,-0.7309267722715524],[127,-57,69,-0.7306527098402784],[127,-57,70,-0.7303811286990417],[127,-57,71,-0.7301120336469105],[127,-57,72,-0.7298454293853213],[127,-57,73,-0.7295813205176566],[127,-57,74,-0.7293197115487932],[127,-57,75,-0.7290606068846821],[127,-57,76,-0.7288040108319157],[127,-57,77,-0.7285499275972943],[127,-57,78,-0.7282983612873993],[127,-57,79,-0.728049315908159],[127,-56,64,-0.7321689468634203],[127,-56,65,-0.7318845695339523],[127,-56,66,-0.7316026532503032],[127,-56,67,-0.7313232032038255],[127,-56,68,-0.7310462244899802],[127,-56,69,-0.730771722107911],[127,-56,70,-0.7304997009600044],[127,-56,71,-0.7302301658514547],[127,-56,72,-0.729963121489826],[127,-56,73,-0.7296985724846301],[127,-56,74,-0.7294365233468749],[127,-56,75,-0.7291769784886444],[127,-56,76,-0.728919942222664],[127,-56,77,-0.72866541876187],[127,-56,78,-0.7284134122189798],[127,-56,79,-0.7281639266060593],[127,-55,64,-0.7322903222409792],[127,-55,65,-0.732005505799431],[127,-55,66,-0.7317231503216686],[127,-55,67,-0.7314432610051536],[127,-55,68,-0.7311658429514575],[127,-55,69,-0.7308909011658377],[127,-55,70,-0.7306184405567965],[127,-55,71,-0.7303484659356456],[127,-55,72,-0.7300809820160691],[127,-55,73,-0.7298159934137002],[127,-55,74,-0.7295535046456703],[127,-55,75,-0.7292935201301877],[127,-55,76,-0.7290360441861049],[127,-55,77,-0.7287810810324854],[127,-55,78,-0.7285286347881759],[127,-55,79,-0.7282787094713721],[127,-54,64,-0.7324118618563524],[127,-54,65,-0.7321266068603769],[127,-54,66,-0.7318438127444595],[127,-54,67,-0.7315634847121616],[127,-54,68,-0.7312856278711576],[127,-54,69,-0.7310102472328098],[127,-54,70,-0.730737347711728],[127,-54,71,-0.7304669341253338],[127,-54,72,-0.7301990111934225],[127,-54,73,-0.7299335835377412],[127,-54,74,-0.7296706556815367],[127,-54,75,-0.7294102320491346],[127,-54,76,-0.7291523169655059],[127,-54,77,-0.7288969146558344],[127,-54,78,-0.7286440292450882],[127,-54,79,-0.7283936647575856],[127,-53,64,-0.7325335659070392],[127,-53,65,-0.7322478729179389],[127,-53,66,-0.7319646407234554],[127,-53,67,-0.7316838745332414],[127,-53,68,-0.7314055794610658],[127,-53,69,-0.7311297605243876],[127,-53,70,-0.7308564226439157],[127,-53,71,-0.7305855706431731],[127,-53,72,-0.7303172092480589],[127,-53,73,-0.7300513430864258],[127,-53,74,-0.7297879766876281],[127,-53,75,-0.7295271144821006],[127,-53,76,-0.7292687608009256],[127,-53,77,-0.7290129198753992],[127,-53,78,-0.7287595958366035],[127,-53,79,-0.7285087927149723],[127,-52,64,-0.732655434587351],[127,-52,65,-0.7323693041700741],[127,-52,66,-0.7320856344602406],[127,-52,67,-0.7318044306735865],[127,-52,68,-0.7315256979299661],[127,-52,69,-0.7312494412529271],[127,-52,70,-0.7309756655692692],[127,-52,71,-0.7307043757086085],[127,-52,72,-0.7304355764029393],[127,-52,73,-0.7301692722862123],[127,-52,74,-0.7299054678938811],[127,-52,75,-0.7296441676624822],[127,-52,76,-0.7293853759292008],[127,-52,77,-0.7291290969314381],[127,-52,78,-0.7288753348063827],[127,-52,79,-0.7286240935905757],[127,-51,64,-0.7327774680884614],[127,-51,65,-0.7324909008115986],[127,-51,66,-0.7322067941532558],[127,-51,67,-0.7319251533352437],[127,-51,68,-0.7316459834834935],[127,-51,69,-0.7313692896276327],[127,-51,70,-0.7310950767005433],[127,-51,71,-0.7308233495379266],[127,-51,72,-0.7305541128778641],[127,-51,73,-0.7302873713603957],[127,-51,74,-0.7300231295270665],[127,-51,75,-0.729761391820507],[127,-51,76,-0.7295021625839975],[127,-51,77,-0.7292454460610363],[127,-51,78,-0.7289912463949104],[127,-51,79,-0.7287395676282618],[127,-50,64,-0.732899666598387],[127,-50,65,-0.7326126630341687],[127,-50,66,-0.732328119997779],[127,-50,67,-0.732046042717094],[127,-50,68,-0.7317664363241134],[127,-50,69,-0.731489305854536],[127,-50,70,-0.7312146562473179],[127,-50,71,-0.7309424923442366],[127,-50,72,-0.7306728188894528],[127,-50,73,-0.7304056405290875],[127,-50,74,-0.7301409618107697],[127,-50,75,-0.7298787871832149],[127,-50,76,-0.729619120995791],[127,-50,77,-0.7293619674980856],[127,-50,78,-0.7291073308394769],[127,-50,79,-0.7288552150686992],[127,-49,64,-0.7330220303020107],[127,-49,65,-0.7327345910263038],[127,-49,66,-0.7324496121859476],[127,-49,67,-0.7321670990148748],[127,-49,68,-0.7318870566511451],[127,-49,69,-0.7316094901365199],[127,-49,70,-0.7313344044160206],[127,-49,71,-0.7310618043374928],[127,-49,72,-0.7307916946511679],[127,-49,73,-0.73052408000924],[127,-49,74,-0.730258964965413],[127,-49,75,-0.72999635397448],[127,-49,76,-0.7297362513918888],[127,-49,77,-0.729478661473308],[127,-49,78,-0.7292235883741991],[127,-49,79,-0.7289710361493814],[127,-48,64,-0.7331445593810622],[127,-48,65,-0.7328566849733665],[127,-48,66,-0.7325712709067392],[127,-48,67,-0.7322883224211609],[127,-48,68,-0.7320078446607421],[127,-48,69,-0.7317298426732982],[127,-48,70,-0.7314543214099074],[127,-48,71,-0.731181285724475],[127,-48,72,-0.7309107403732944],[127,-48,73,-0.7306426900146245],[127,-48,74,-0.7303771392082362],[127,-48,75,-0.730114092414992],[127,-48,76,-0.7298535539964108],[127,-48,77,-0.7295955282142352],[127,-48,78,-0.729340019230002],[127,-48,79,-0.7290870311046074],[127,-47,64,-0.7332672540141687],[127,-47,65,-0.7329789450576144],[127,-47,66,-0.7326930963460235],[127,-47,67,-0.7324097131254157],[127,-47,68,-0.7321288005459435],[127,-47,69,-0.7318503636614675],[127,-47,70,-0.7315744074291144],[127,-47,71,-0.7313009367088399],[127,-47,72,-0.7310299562629916],[127,-47,73,-0.730761470755884],[127,-47,74,-0.7304954847533478],[127,-47,75,-0.7302320027223057],[127,-47,76,-0.7299710290303405],[127,-47,77,-0.7297125679452601],[127,-47,78,-0.7294566236346687],[127,-47,79,-0.7292032001655322],[127,-46,64,-0.7333901143768438],[127,-46,65,-0.7331013714581872],[127,-46,66,-0.732815088686549],[127,-46,67,-0.7325312713139783],[127,-46,68,-0.7322499244966612],[127,-46,69,-0.7319710532944944],[127,-46,70,-0.731694662670644],[127,-46,71,-0.731420757491108],[127,-46,72,-0.7311493425242793],[127,-46,73,-0.7308804224405204],[127,-46,74,-0.7306140018117118],[127,-46,75,-0.7303500851108297],[127,-46,76,-0.7300886767115118],[127,-46,77,-0.7298297808876235],[127,-46,78,-0.7295734018128285],[127,-46,79,-0.729319543560154],[127,-45,64,-0.7335131406414737],[127,-45,65,-0.7332239643510949],[127,-45,66,-0.7329372481079308],[127,-45,67,-0.7326529971700516],[127,-45,68,-0.7323712166996674],[127,-45,69,-0.7320919117627024],[127,-45,70,-0.7318150873283531],[127,-45,71,-0.7315407482686516],[127,-45,72,-0.7312688993580267],[127,-45,73,-0.7309995452728807],[127,-45,74,-0.7307326905911358],[127,-45,75,-0.7304683397918128],[127,-45,76,-0.7302064972545965],[127,-45,77,-0.7299471672594016],[127,-45,78,-0.7296903539859431],[127,-45,79,-0.7294360615133021],[127,-44,64,-0.7336363329773691],[127,-44,65,-0.7333467239092681],[127,-44,66,-0.7330595747867023],[127,-44,67,-0.7327748908737532],[127,-44,68,-0.7324926773386462],[127,-44,69,-0.732212939253324],[127,-44,70,-0.7319356815930047],[127,-44,71,-0.7316609092357453],[127,-44,72,-0.7313886269620025],[127,-44,73,-0.7311188394542092],[127,-44,74,-0.7308515512963212],[127,-44,75,-0.7305867669733955],[127,-44,76,-0.7303244908711555],[127,-44,77,-0.7300647272755569],[127,-44,78,-0.7298074803723585],[127,-44,79,-0.7295527542466868],[127,-43,64,-0.7337596915507532],[127,-43,65,-0.7334696503025468],[127,-43,66,-0.733182068896302],[127,-43,67,-0.732896952602103],[127,-43,68,-0.7326143065941807],[127,-43,69,-0.7323341359504876],[127,-43,70,-0.7320564456522545],[127,-43,71,-0.7317812405835542],[127,-43,72,-0.7315085255308627],[127,-43,73,-0.7312383051826348],[127,-43,74,-0.7309705841288513],[127,-43,75,-0.7307053668605972],[127,-43,76,-0.7304426577696258],[127,-43,77,-0.7301824611479261],[127,-43,78,-0.7299247811872918],[127,-43,79,-0.7296696219788872],[127,-42,64,-0.7338832165247484],[127,-42,65,-0.7335927436976668],[127,-42,66,-0.7333047306070616],[127,-42,67,-0.7330191825290101],[127,-42,68,-0.7327361046437404],[127,-42,69,-0.7324555020352047],[127,-42,70,-0.732177379690638],[127,-42,71,-0.7319017425001201],[127,-42,72,-0.731628595256137],[127,-42,73,-0.7313579426531573],[127,-42,74,-0.7310897892871779],[127,-42,75,-0.7308241396553029],[127,-42,76,-0.7305609981553078],[127,-42,77,-0.7303003690852058],[127,-42,78,-0.7300422566428181],[127,-42,79,-0.7297866649253381],[127,-41,64,-0.7340069080594281],[127,-41,65,-0.7337160042583114],[127,-41,66,-0.7334275600862568],[127,-41,67,-0.7331415808253252],[127,-41,68,-0.7328580716617326],[127,-41,69,-0.7325770376854219],[127,-41,70,-0.7322984838896229],[127,-41,71,-0.7320224151704138],[127,-41,72,-0.7317488363262817],[127,-41,73,-0.7314777520576998],[127,-41,74,-0.7312091669666729],[127,-41,75,-0.7309430855563154],[127,-41,76,-0.7306795122304163],[127,-41,77,-0.7304184512930051],[127,-41,78,-0.7301599069479219],[127,-41,79,-0.7299038832983811],[127,-40,64,-0.7341307663117974],[127,-40,65,-0.7338394321450921],[127,-40,66,-0.7335505574980878],[127,-40,67,-0.7332641476588201],[127,-40,68,-0.7329802078194825],[127,-40,69,-0.7326987430760004],[127,-40,70,-0.7324197584275887],[127,-40,71,-0.7321432587763148],[127,-40,72,-0.7318692489266583],[127,-40,73,-0.7315977335850881],[127,-40,74,-0.7313287173596079],[127,-40,75,-0.731062204759334],[127,-40,76,-0.7307982001940605],[127,-40,77,-0.7305367079738246],[127,-40,78,-0.7302777323084768],[127,-40,79,-0.7300212773072446],[127,-39,64,-0.7342547914358154],[127,-39,65,-0.7339630275155713],[127,-39,66,-0.7336737230037029],[127,-39,67,-0.7333868831942105],[127,-39,68,-0.7331025132852566],[127,-39,69,-0.732820618378739],[127,-39,70,-0.7325412034798491],[127,-39,71,-0.732264273496634],[127,-39,72,-0.731989833239557],[127,-39,73,-0.7317178874210736],[127,-39,74,-0.7314484406551774],[127,-39,75,-0.7311814974569786],[127,-39,76,-0.7309170622422673],[127,-39,77,-0.7306551393270797],[127,-39,78,-0.7303957329272686],[127,-39,79,-0.7301388471580664],[127,-38,64,-0.7343789835823757],[127,-38,65,-0.7340867905242422],[127,-38,66,-0.7337970567611773],[127,-38,67,-0.7335097875931368],[127,-38,68,-0.7332249882242422],[127,-38,69,-0.7329426637623547],[127,-38,70,-0.7326628192186327],[127,-38,71,-0.7323854595070941],[127,-38,72,-0.7321105894441764],[127,-38,73,-0.7318382137483129],[127,-38,74,-0.7315683370394789],[127,-38,75,-0.7313009638387686],[127,-38,76,-0.7310360985679598],[127,-38,77,-0.7307737455490798],[127,-38,78,-0.7305139090039745],[127,-38,79,-0.7302565930538731],[127,-37,64,-0.7345033428993584],[127,-37,65,-0.7342107213225807],[127,-37,66,-0.733920558925566],[127,-37,67,-0.733632861014215],[127,-37,68,-0.7333476327985994],[127,-37,69,-0.7330648793925336],[127,-37,70,-0.7327846058131344],[127,-37,71,-0.7325068169803804],[127,-37,72,-0.7322315177166752],[127,-37,73,-0.7319587127464203],[127,-37,74,-0.7316884066955635],[127,-37,75,-0.7314206040911746],[127,-37,76,-0.7311553093610104],[127,-37,77,-0.73089252683308],[127,-37,78,-0.730632260735215],[127,-37,79,-0.7303745151946321],[127,-36,64,-0.7346278695316167],[127,-36,65,-0.7343348200590332],[127,-36,66,-0.7340442296488903],[127,-36,67,-0.7337561036130245],[127,-36,68,-0.7334704471674476],[127,-36,69,-0.7331872654319186],[127,-36,70,-0.732906563429502],[127,-36,71,-0.7326283460861291],[127,-36,72,-0.7323526182301592],[127,-36,73,-0.7320793845919538],[127,-36,74,-0.7318086498034236],[127,-36,75,-0.7315404183976055],[127,-36,76,-0.7312746948082263],[127,-36,77,-0.7310114833692687],[127,-36,78,-0.7307507883145404],[127,-36,79,-0.7304926137772381],[127,-35,64,-0.7347525636209647],[127,-35,65,-0.7344590868790026],[127,-35,66,-0.7341680690801249],[127,-35,67,-0.7338795155420945],[127,-35,68,-0.7335934314868535],[127,-35,69,-0.7333098220400955],[127,-35,70,-0.7330286922308239],[127,-35,71,-0.7327500469909128],[127,-35,72,-0.732473891154668],[127,-35,73,-0.732200229458402],[127,-35,74,-0.7319290665399796],[127,-35,75,-0.7316604069383952],[127,-35,76,-0.7313942550933372],[127,-35,77,-0.7311306153447528],[127,-35,78,-0.7308694919324176],[127,-35,79,-0.7306108889954994],[127,-34,64,-0.7348774253062293],[127,-34,65,-0.7345835219249011],[127,-34,66,-0.7342920773652505],[127,-34,67,-0.7340030969509567],[127,-34,68,-0.7337165859098822],[127,-34,69,-0.733432549373646],[127,-34,70,-0.7331509923771806],[127,-34,71,-0.7328719198582934],[127,-34,72,-0.7325953366572275],[127,-34,73,-0.7323212475162371],[127,-34,74,-0.7320496570791316],[127,-34,75,-0.7317805698908545],[127,-34,76,-0.7315139903970467],[127,-34,77,-0.7312499229436108],[127,-34,78,-0.730988371776282],[127,-34,79,-0.7307293410401903],[127,-33,64,-0.7350024547232292],[127,-33,65,-0.7347081253361294],[127,-33,66,-0.7344162546472326],[127,-33,67,-0.7341268479861243],[127,-33,68,-0.7338399105865775],[127,-33,69,-0.7335554475861268],[127,-33,70,-0.733273464025624],[127,-33,71,-0.732993964848801],[127,-33,72,-0.7327169549018285],[127,-33,73,-0.7324424389328926],[127,-33,74,-0.7321704215917388],[127,-33,75,-0.7319009074292504],[127,-33,76,-0.7316339008970113],[127,-33,77,-0.7313694063468716],[127,-33,78,-0.7311074280305165],[127,-33,79,-0.7308479700990301],[127,-32,64,-0.7351276520047991],[127,-32,65,-0.7348328972491007],[127,-32,66,-0.7345406010660455],[127,-32,67,-0.7342507687911152],[127,-32,68,-0.7339634056639842],[127,-32,69,-0.7336785168280924],[127,-32,70,-0.7333961073302016],[127,-32,71,-0.7331161821199577],[127,-32,72,-0.7328387460494503],[127,-32,73,-0.732563803872788],[127,-32,74,-0.732291360245643],[127,-32,75,-0.7320214197248291],[127,-32,76,-0.7317539867678646],[127,-32,77,-0.7314890657325377],[127,-32,78,-0.7312266608764751],[127,-32,79,-0.730966776356706],[127,-31,64,-0.735253017280769],[127,-31,65,-0.7349578377972192],[127,-31,66,-0.7346651167586511],[127,-31,67,-0.7343748595064324],[127,-31,68,-0.7340870712861286],[127,-31,69,-0.7338017572470751],[127,-31,70,-0.7335189224419342],[127,-31,71,-0.7332385718262562],[127,-31,72,-0.73296071025804],[127,-31,73,-0.732685342497307],[127,-31,74,-0.7324124732056472],[127,-31,75,-0.7321421069457954],[127,-31,76,-0.7318742481811954],[127,-31,77,-0.731608901275564],[127,-31,78,-0.7313460704924613],[127,-31,79,-0.7310857599948524],[127,-30,64,-0.7353785506780163],[127,-30,65,-0.7350829471109337],[127,-30,66,-0.7347898018590521],[127,-30,67,-0.7344991202696154],[127,-30,68,-0.73421090759407],[127,-30,69,-0.7339251689876372],[127,-30,70,-0.7336419095088696],[127,-30,71,-0.7333611341192128],[127,-30,72,-0.7330828476825646],[127,-30,73,-0.7328070549648504],[127,-30,74,-0.7325337606335681],[127,-30,75,-0.7322629692573648],[127,-30,76,-0.7319946853055997],[127,-30,77,-0.7317289131479106],[127,-30,78,-0.7314656570537804],[127,-30,79,-0.7312049211921026],[127,-29,64,-0.735504252320453],[127,-29,65,-0.7352082253177232],[127,-29,66,-0.7349146564982778],[127,-29,67,-0.7346235512152268],[127,-29,68,-0.7343349147258877],[127,-29,69,-0.7340487521913575],[127,-29,70,-0.733765068676069],[127,-29,71,-0.7334838691473532],[127,-29,72,-0.7332051584749978],[127,-29,73,-0.7329289414308223],[127,-29,74,-0.7326552226882229],[127,-29,75,-0.7323840068217495],[127,-29,76,-0.7321152983066685],[127,-29,77,-0.7318491015185282],[127,-29,78,-0.7315854207327266],[127,-29,79,-0.7313242601240753],[127,-28,64,-0.735630122329012],[127,-28,65,-0.7353336725420843],[127,-28,66,-0.7350396808043715],[127,-28,67,-0.7347481524748402],[127,-28,68,-0.7344590928166679],[127,-28,69,-0.7341725069968176],[127,-28,70,-0.733888400085593],[127,-28,71,-0.7336067770561999],[127,-28,72,-0.7333276427843064],[127,-28,73,-0.7330510020476164],[127,-28,74,-0.7327768595254153],[127,-28,75,-0.7325052197981461],[127,-28,76,-0.7322360873469729],[127,-28,77,-0.7319694665533456],[127,-28,78,-0.7317053616985679],[127,-28,79,-0.7314437769633615],[127,-27,64,-0.7357561608217005],[127,-27,65,-0.7354592889055833],[127,-27,66,-0.7351648749024431],[127,-27,67,-0.7348729241770909],[127,-27,68,-0.7345834419985554],[127,-27,69,-0.7342964335396551],[127,-27,70,-0.734011903876554],[127,-27,71,-0.7337298579883239],[127,-27,72,-0.7334503007565025],[127,-27,73,-0.7331732369646691],[127,-27,74,-0.7328986712979879],[127,-27,75,-0.7326266083427865],[127,-27,76,-0.7323570525861167],[127,-27,77,-0.7320900084153211],[127,-27,78,-0.7318254801176003],[127,-27,79,-0.7315634718795758],[127,-26,64,-0.7358823679135779],[127,-26,65,-0.7355850745268363],[127,-26,66,-0.7352902389146473],[127,-26,67,-0.7349978664476569],[127,-26,68,-0.734707962400734],[127,-26,69,-0.7344205319525423],[127,-26,70,-0.7341355801850966],[127,-26,71,-0.7338531120833243],[127,-26,72,-0.7335731325346232],[127,-26,73,-0.7332956463284376],[127,-26,74,-0.733020658155802],[127,-26,75,-0.7327481726089178],[127,-26,76,-0.7324781941807161],[127,-26,77,-0.7322107272644225],[127,-26,78,-0.7319457761531247],[127,-26,79,-0.7316833450393363],[127,-25,64,-0.7360087437167806],[127,-25,65,-0.7357110295215317],[127,-25,66,-0.7354157729602083],[127,-25,67,-0.735122979409281],[127,-25,68,-0.7348326541494482],[127,-25,69,-0.7345448023652094],[127,-25,70,-0.7342594291444194],[127,-25,71,-0.7339765394778509],[127,-25,72,-0.7336961382587526],[127,-25,73,-0.7334182302824239],[127,-25,74,-0.7331428202457593],[127,-25,75,-0.7328699127468251],[127,-25,76,-0.7325995122844218],[127,-25,77,-0.7323316232576486],[127,-25,78,-0.7320662499654715],[127,-25,79,-0.7318033966062868],[127,-24,64,-0.7361352883405003],[127,-24,65,-0.7358371540024098],[127,-24,66,-0.7355414771553981],[127,-24,67,-0.7352482631817502],[127,-24,68,-0.7349575173679841],[127,-24,69,-0.7346692449044238],[127,-24,70,-0.7343834508847544],[127,-24,71,-0.7341001403055843],[127,-24,72,-0.7338193180660023],[127,-24,73,-0.7335409889671534],[127,-24,74,-0.7332651577117824],[127,-24,75,-0.7329918289038105],[127,-24,76,-0.7327210070478984],[127,-24,77,-0.7324526965490095],[127,-24,78,-0.7321869017119789],[127,-24,79,-0.7319236267410756],[127,-23,64,-0.7362620018910375],[127,-23,65,-0.735963448079315],[127,-23,66,-0.7356673516135894],[127,-23,67,-0.7353737178819488],[127,-23,68,-0.7350825521767204],[127,-23,69,-0.7347938596940425],[127,-23,70,-0.7345076455334205],[127,-23,71,-0.7342239146972873],[127,-23,72,-0.7339426720905629],[127,-23,73,-0.7336639225202272],[127,-23,74,-0.7333876706948659],[127,-23,75,-0.7331139212242455],[127,-23,76,-0.732842678618877],[127,-23,77,-0.7325739472895784],[127,-23,78,-0.7323077315470445],[127,-23,79,-0.7320440356014086],[127,-22,64,-0.7363888844717872],[127,-22,65,-0.7360899118591833],[127,-22,66,-0.7357933964452421],[127,-22,67,-0.7354993436238444],[127,-22,68,-0.7352077586931158],[127,-22,69,-0.7349186468549989],[127,-22,70,-0.7346320132148083],[127,-22,71,-0.7343478627807922],[127,-22,72,-0.7340662004636904],[127,-22,73,-0.7337870310763089],[127,-22,74,-0.7335103593330637],[127,-22,75,-0.7332361898495573],[127,-22,76,-0.7329645271421407],[127,-22,77,-0.7326953756274778],[127,-22,78,-0.7324287396221132],[127,-22,79,-0.7321646233420349],[127,-21,64,-0.7365159361832259],[127,-21,65,-0.7362165454460279],[127,-21,66,-0.7359196117578899],[127,-21,67,-0.7356251405184746],[127,-21,68,-0.7353331370316956],[127,-21,69,-0.7350436065052887],[127,-21,70,-0.734756554050368],[127,-21,71,-0.7344719846809861],[127,-21,72,-0.7341899033136933],[127,-21,73,-0.7339103147671107],[127,-21,74,-0.7336332237614751],[127,-21,75,-0.7333586349182148],[127,-21,76,-0.7330865527595118],[127,-21,77,-0.7328169817078656],[127,-21,78,-0.7325499260856616],[127,-21,79,-0.732285390114733],[127,-20,64,-0.7366431571229641],[127,-20,65,-0.7363433489409922],[127,-20,66,-0.7360459976561927],[127,-20,67,-0.7357511086739995],[127,-20,68,-0.7354586873041032],[127,-20,69,-0.7351687387600228],[127,-20,70,-0.7348812681586608],[127,-20,71,-0.7345962805198646],[127,-20,72,-0.7343137807659839],[127,-20,73,-0.7340337737214455],[127,-20,74,-0.7337562641122968],[127,-20,75,-0.7334812565657818],[127,-20,76,-0.7332087556099036],[127,-20,77,-0.7329387656729882],[127,-20,78,-0.7326712910832516],[127,-20,79,-0.7324063360683633],[127,-19,64,-0.736770547385726],[127,-19,65,-0.7364703224423292],[127,-19,66,-0.7361725542419161],[127,-19,67,-0.7358772481956809],[127,-19,68,-0.7355844096190806],[127,-19,69,-0.7352940437314064],[127,-19,70,-0.7350061556553392],[127,-19,71,-0.7347207504165102],[127,-19,72,-0.7344378329430588],[127,-19,73,-0.7341574080652067],[127,-19,74,-0.7338794805148021],[127,-19,75,-0.733604054924895],[127,-19,76,-0.7333311358292997],[127,-19,77,-0.7330607276621584],[127,-19,78,-0.7327928347575088],[127,-19,79,-0.7325274613488466],[127,-18,64,-0.7368981070633722],[127,-18,65,-0.7365974660454244],[127,-18,66,-0.7362992816139543],[127,-18,67,-0.7360035591859053],[127,-18,68,-0.7357103040824904],[127,-18,69,-0.7354195215287619],[127,-18,70,-0.7351312166531687],[127,-18,71,-0.7348453944871153],[127,-18,72,-0.7345620599645203],[127,-18,73,-0.7342812179213904],[127,-18,74,-0.7340028730953642],[127,-18,75,-0.7337270301252876],[127,-18,76,-0.7334536935507763],[127,-18,77,-0.7331828678117789],[127,-18,78,-0.7329145572481452],[127,-18,79,-0.7326487660991878],[127,-17,64,-0.7370258362448793],[127,-17,65,-0.7367247798427752],[127,-17,66,-0.7364261798683092],[127,-17,67,-0.7361300417441634],[127,-17,68,-0.7358363707972952],[127,-17,69,-0.7355451722585082],[127,-17,70,-0.7352564512620079],[127,-17,71,-0.7349702128449616],[127,-17,72,-0.7346864619470568],[127,-17,73,-0.7344052034100749],[127,-17,74,-0.7341264419774345],[127,-17,75,-0.7338501822937677],[127,-17,76,-0.7335764289044813],[127,-17,77,-0.733305186255321],[127,-17,78,-0.7330364586919383],[127,-17,79,-0.7327702504594532],[127,-16,64,-0.7371537350163917],[127,-16,65,-0.7368522639240428],[127,-16,66,-0.7365532490981432],[127,-16,67,-0.7362566959671023],[127,-16,68,-0.7359626098636112],[127,-16,69,-0.7356709960242132],[127,-16,70,-0.7353818595888602],[127,-16,71,-0.735095205600472],[127,-16,72,-0.7348110390044944],[127,-16,73,-0.7345293646484726],[127,-16,74,-0.7342501872815957],[127,-16,75,-0.7339735115542713],[127,-16,76,-0.7336993420176875],[127,-16,77,-0.7334276831233769],[127,-16,78,-0.7331585392227835],[127,-16,79,-0.7328919145668246],[127,-15,64,-0.7372818034612094],[127,-15,65,-0.7369799183760403],[127,-15,66,-0.7366804893937661],[127,-15,67,-0.7363835219485122],[127,-15,68,-0.7360890213786926],[127,-15,69,-0.7357969929265797],[127,-15,70,-0.7355074417378611],[127,-15,71,-0.7352203728611979],[127,-15,72,-0.7349357912477835],[127,-15,73,-0.7346537017509173],[127,-15,74,-0.7343741091255478],[127,-15,75,-0.7340970180278481],[127,-15,76,-0.7338224330147778],[127,-15,77,-0.7335503585436463],[127,-15,78,-0.7332807989716797],[127,-15,79,-0.7330137585555838],[127,-14,64,-0.7374100416597734],[127,-14,65,-0.7371077432827172],[127,-14,66,-0.7368079008426199],[127,-14,67,-0.7365105197793123],[127,-14,68,-0.7362156054369196],[127,-14,69,-0.7359231630634328],[127,-14,70,-0.7356331978102635],[127,-14,71,-0.735345714731804],[127,-14,72,-0.7350607187849849],[127,-14,73,-0.7347782148288489],[127,-14,74,-0.7344982076240937],[127,-14,75,-0.7342207018326476],[127,-14,76,-0.7339457020172314],[127,-14,77,-0.7336732126409213],[127,-14,78,-0.7334032380667161],[127,-14,79,-0.7331357825570998],[127,-13,64,-0.7375384496897189],[127,-13,65,-0.7372357387252134],[127,-13,66,-0.7369354835293336],[127,-13,67,-0.7366376895476039],[127,-13,68,-0.7363423621298504],[127,-13,69,-0.736049506529771],[127,-13,70,-0.7357591279044908],[127,-13,71,-0.7354712313141224],[127,-13,72,-0.7351858217213229],[127,-13,73,-0.7349029039908673],[127,-13,74,-0.7346224828891926],[127,-13,75,-0.7343445630839719],[127,-13,76,-0.7340691491436768],[127,-13,77,-0.7337962455371404],[127,-13,78,-0.7335258566331243],[127,-13,79,-0.7332579866998804],[127,-12,64,-0.7376670276258617],[127,-12,65,-0.7373639047818451],[127,-12,66,-0.737063237535708],[127,-12,67,-0.7367650313386571],[127,-12,68,-0.7364692915462078],[127,-12,69,-0.7361760234177537],[127,-12,70,-0.7358852321161233],[127,-12,71,-0.735596922707138],[127,-12,72,-0.7353111001591703],[127,-12,73,-0.7350277693427179],[127,-12,74,-0.7347469350299457],[127,-12,75,-0.7344686018942614],[127,-12,76,-0.7341927745098776],[127,-12,77,-0.7339194573513738],[127,-12,78,-0.7336486547932641],[127,-12,79,-0.733380371109559],[127,-11,64,-0.7377957755401842],[127,-11,65,-0.7374922415280912],[127,-11,66,-0.7371911629407025],[127,-11,67,-0.736892545234896],[127,-11,68,-0.7365963937718646],[127,-11,69,-0.7363027138166873],[127,-11,70,-0.736011510537884],[127,-11,71,-0.7357227890069742],[127,-11,72,-0.7354365541980359],[127,-11,73,-0.7351528109872776],[127,-11,74,-0.7348715641525821],[127,-11,75,-0.7345928183730817],[127,-11,76,-0.7343165782287184],[127,-11,77,-0.7340428481998089],[127,-11,78,-0.7337716326666097],[127,-11,79,-0.7335029359088796],[127,-10,64,-0.7379246935018884],[127,-10,65,-0.7376207490366461],[127,-10,66,-0.7373192598204881],[127,-10,67,-0.7370202313159521],[127,-10,68,-0.7367236688898975],[127,-10,69,-0.7364295778130774],[127,-10,70,-0.7361379632596916],[127,-10,71,-0.7358488303069473],[127,-10,72,-0.7355621839346163],[127,-10,73,-0.7352780290246078],[127,-10,74,-0.734996370360512],[127,-10,75,-0.7347172126271745],[127,-10,76,-0.7344405604102577],[127,-10,77,-0.7341664181958039],[127,-10,78,-0.7338947903698023],[127,-10,79,-0.7336256812177502],[127,-9,64,-0.7380537815773753],[127,-9,65,-0.7377494273773985],[127,-9,66,-0.7374475282484259],[127,-9,67,-0.7371480896586433],[127,-9,68,-0.7368511169805654],[127,-9,69,-0.7365566154906074],[127,-9,70,-0.7362645903686388],[127,-9,71,-0.7359750466975429],[127,-9,72,-0.7356879894627746],[127,-9,73,-0.7354034235519331],[127,-9,74,-0.7351213537543049],[127,-9,75,-0.7348417847604385],[127,-9,76,-0.734564721161706],[127,-9,77,-0.7342901674498656],[127,-9,78,-0.7340181280166286],[127,-9,79,-0.7337486071532205],[127,-8,64,-0.7381830398302678],[127,-8,65,-0.737878276617455],[127,-8,66,-0.7375759682950908],[127,-8,67,-0.7372761203369969],[127,-8,68,-0.7369787381213323],[127,-8,69,-0.7366838269301629],[127,-8,70,-0.7363913919490164],[127,-8,71,-0.7361014382664413],[127,-8,72,-0.7358139708735645],[127,-8,73,-0.7355289946636643],[127,-8,74,-0.7352465144317126],[127,-8,75,-0.7349665348739508],[127,-8,76,-0.7346890605874495],[127,-8,77,-0.7344140960696728],[127,-8,78,-0.7341416457180439],[127,-8,79,-0.7338717138295061],[127,-7,64,-0.7383124683213889],[127,-7,65,-0.7380072968211184],[127,-7,66,-0.7377045800282493],[127,-7,67,-0.7374043234222282],[127,-7,68,-0.7371065323868462],[127,-7,69,-0.7368112122098088],[127,-7,70,-0.7365183680822907],[127,-7,71,-0.7362280050984942],[127,-7,72,-0.7359401282552073],[127,-7,73,-0.7356547424513762],[127,-7,74,-0.735371852487648],[127,-7,75,-0.7350914630659455],[127,-7,76,-0.734813578789028],[127,-7,77,-0.7345382041600543],[127,-7,78,-0.7342653435821496],[127,-7,79,-0.7339950013579652],[127,-6,64,-0.7384420671088157],[127,-6,65,-0.738136488049941],[127,-6,66,-0.7378333635129137],[127,-6,67,-0.7375326989827935],[127,-6,68,-0.7372344998489924],[127,-6,69,-0.7369387714048437],[127,-6,70,-0.7366455188471575],[127,-6,71,-0.7363547472757789],[127,-6,72,-0.7360664616931459],[127,-6,73,-0.7357806670038618],[127,-6,74,-0.7354973680142378],[127,-6,75,-0.7352165694318672],[127,-6,76,-0.7349382758651877],[127,-6,77,-0.7346624918230423],[127,-6,78,-0.7343892217142475],[127,-6,79,-0.7341184698471525],[127,-5,64,-0.7385718362478652],[127,-5,65,-0.7382658503627109],[127,-5,66,-0.7379623188113277],[127,-5,67,-0.7376612470843769],[127,-5,68,-0.7373626405768792],[127,-5,69,-0.7370665045877846],[127,-5,70,-0.7367728443195273],[127,-5,71,-0.7364816648775838],[127,-5,72,-0.7361929712700308],[127,-5,73,-0.7359067684071176],[127,-5,74,-0.7356230611008083],[127,-5,75,-0.7353418540643567],[127,-5,76,-0.7350631519118674],[127,-5,77,-0.7347869591578577],[127,-5,78,-0.7345132802168244],[127,-5,79,-0.7342421194028047],[127,-4,64,-0.7387017757910799],[127,-4,65,-0.7383953838154371],[127,-4,66,-0.7380914459829517],[127,-4,67,-0.7377899677898745],[127,-4,68,-0.7374909546368233],[127,-4,69,-0.7371944118283535],[127,-4,70,-0.7369003445725115],[127,-4,71,-0.7366087579803938],[127,-4,72,-0.7363196570657049],[127,-4,73,-0.7360330467443286],[127,-4,74,-0.7357489318338712],[127,-4,75,-0.7354673170532362],[127,-4,76,-0.735188207022184],[127,-4,77,-0.7349116062608956],[127,-4,78,-0.7346375191895381],[127,-4,79,-0.7343659501278259],[127,-3,64,-0.7388318857882821],[127,-3,65,-0.7385250884614042],[127,-3,66,-0.7382207450845173],[127,-3,67,-0.7379188611594497],[127,-3,68,-0.7376194420924048],[127,-3,69,-0.7373224931935309],[127,-3,70,-0.7370280196764757],[127,-3,71,-0.7367360266579445],[127,-3,72,-0.7364465191572576],[127,-3,73,-0.7361595020959227],[127,-3,74,-0.7358749802971774],[127,-3,75,-0.7355929584855627],[127,-3,76,-0.7353134412864856],[127,-3,77,-0.7350364332257792],[127,-3,78,-0.7347619387292705],[127,-3,79,-0.7344899621223407],[127,-2,64,-0.738962166286551],[127,-2,65,-0.7386549643511495],[127,-2,66,-0.7383502161700046],[127,-2,67,-0.73804792725051],[127,-2,68,-0.737748103004443],[127,-2,69,-0.7374507487475335],[127,-2,70,-0.737155869699018],[127,-2,71,-0.7368634709811994],[127,-2,72,-0.7365735576190028],[127,-2,73,-0.7362861345395483],[127,-2,74,-0.7360012065716933],[127,-2,75,-0.7357187784456065],[127,-2,76,-0.7354388547923293],[127,-2,77,-0.735161440143337],[127,-2,78,-0.7348865389301057],[127,-2,79,-0.7346141554836727],[127,-1,64,-0.7390926173302477],[127,-1,65,-0.7387850115324877],[127,-1,66,-0.7384798592906665],[127,-1,67,-0.7381771661177319],[127,-1,68,-0.7378769374310222],[127,-1,69,-0.7375791785518374],[127,-1,70,-0.7372838947049919],[127,-1,71,-0.7369910910183739],[127,-1,72,-0.7367007725225022],[127,-1,73,-0.7364129441500977],[127,-1,74,-0.7361276107356265],[127,-1,75,-0.7358447770148742],[127,-1,76,-0.7355644476245052],[127,-1,77,-0.7352866271016266],[127,-1,78,-0.7350113198833528],[127,-1,79,-0.7347385303063669],[127,0,64,-0.739223238960992],[127,0,65,-0.7389152300504874],[127,0,66,-0.7386096744950061],[127,0,67,-0.7383065778130368],[127,0,68,-0.738005945427468],[127,0,69,-0.7377077826651571],[127,0,70,-0.7374120947564848],[127,0,71,-0.7371188868349132],[127,0,72,-0.7368281639365428],[127,0,73,-0.7365399309996845],[127,0,74,-0.736254192864402],[127,0,75,-0.7359709542720857],[127,0,76,-0.7356902198650134],[127,0,77,-0.7354119941859121],[127,0,78,-0.7351362816775242],[127,0,79,-0.7348630866821678],[127,1,64,-0.7393540312177167],[127,1,65,-0.7390456199475268],[127,1,66,-0.7387396618288309],[127,1,67,-0.7384361623856472],[127,1,68,-0.7381351270464019],[127,1,69,-0.7378365611434984],[127,1,70,-0.7375404699128714],[127,1,71,-0.7372468584935454],[127,1,72,-0.7369557319271911],[127,1,73,-0.7366670951576981],[127,1,74,-0.736380953030716],[127,1,75,-0.7360973102932294],[127,1,76,-0.735816171593118],[127,1,77,-0.7355375414787177],[127,1,78,-0.7352614243983886],[127,1,79,-0.734987824700073],[127,2,64,-0.739484994136654],[127,2,65,-0.7391761812632777],[127,2,66,-0.7388698213352383],[127,2,67,-0.7385659198820708],[127,2,68,-0.7382644823377269],[127,2,69,-0.7379655140401441],[127,2,70,-0.7376690202307994],[127,2,71,-0.7373750060542676],[127,2,72,-0.7370834765577787],[127,2,73,-0.7367944366907886],[127,2,74,-0.7365078913045222],[127,2,75,-0.7362238451515466],[127,2,76,-0.735942302885332],[127,2,77,-0.7356632690598137],[127,2,78,-0.7353867481289569],[127,2,79,-0.7351127444463182],[127,3,64,-0.7396161277513197],[127,3,65,-0.739306914034692],[127,3,66,-0.7390001530546009],[127,3,67,-0.7386958503460859],[127,3,68,-0.7383940113486124],[127,3,69,-0.7380946414056394],[127,3,70,-0.7377977457641745],[127,3,71,-0.7375033295743314],[127,3,72,-0.7372113978888868],[127,3,73,-0.7369219556628522],[127,3,74,-0.7366350077530159],[127,3,75,-0.7363505589175164],[127,3,76,-0.7360686138154038],[127,3,77,-0.7357891770062003],[127,3,78,-0.7355122529494668],[127,3,79,-0.7352378460043627],[127,4,64,-0.7397474320925682],[127,4,65,-0.7394378182960555],[127,4,66,-0.7391306570246209],[127,4,67,-0.7388259538187965],[127,4,68,-0.7385237141235486],[127,4,69,-0.7382239432878461],[127,4,70,-0.7379266465642151],[127,4,71,-0.7376318291082959],[127,4,72,-0.737339495978401],[127,4,73,-0.7370496521350851],[127,4,74,-0.7367623024406887],[127,4,75,-0.7364774516589108],[127,4,76,-0.7361951044543692],[127,4,77,-0.7359152653921628],[127,4,78,-0.7356379389374369],[127,4,79,-0.735363129454943],[127,5,64,-0.7398789071885703],[127,5,65,-0.7395688940789655],[127,5,66,-0.7392613332803076],[127,5,67,-0.7389562303386089],[127,5,68,-0.7386535907043241],[127,5,69,-0.7383534197319201],[127,5,70,-0.7380557226794291],[127,5,71,-0.7377605047080065],[127,5,72,-0.7374677708814881],[127,5,73,-0.7371775261659611],[127,5,74,-0.736889775429306],[127,5,75,-0.7366045234407707],[127,5,76,-0.7363217748705302],[127,5,77,-0.7360415342892486],[127,5,78,-0.735763806167644],[127,5,79,-0.7354885948760501],[127,6,64,-0.7400105530648362],[127,6,65,-0.7397001414123545],[127,6,66,-0.7393921818540012],[127,6,67,-0.7390866799412559],[127,6,68,-0.7387836411300498],[127,6,69,-0.738483070780335],[127,6,70,-0.738184974155638],[127,6,71,-0.7378893564226174],[127,6,72,-0.7375962226506205],[127,6,73,-0.7373055778112549],[127,6,74,-0.7370174267779299],[127,6,75,-0.7367317743254307],[127,6,76,-0.7364486251294781],[127,6,77,-0.7361679837662898],[127,6,78,-0.7358898547121471],[127,6,79,-0.735614242342953],[127,7,64,-0.7401423697441939],[127,7,65,-0.7398315603224683],[127,7,66,-0.7395232027753503],[127,7,67,-0.7392173026597743],[127,7,68,-0.7389138654371356],[127,7,69,-0.7386128964728595],[127,7,70,-0.7383144010359544],[127,7,71,-0.7380183842985699],[127,7,72,-0.7377248513355532],[127,7,73,-0.73743380712402],[127,7,74,-0.7371452565428973],[127,7,75,-0.7368592043724957],[127,7,76,-0.7365756552940704],[127,7,77,-0.7362946138893823],[127,7,78,-0.736016084640263],[127,7,79,-0.7357400719281759],[127,8,64,-0.7402743572468433],[127,8,65,-0.7399631508329197],[127,8,66,-0.7396543960713661],[127,8,67,-0.7393480985245591],[127,8,68,-0.7390442636593457],[127,8,69,-0.738742896846612],[127,8,70,-0.7384440033608359],[127,8,71,-0.738147588379646],[127,8,72,-0.7378536569833773],[127,8,73,-0.7375622141546422],[127,8,74,-0.7372732647778732],[127,8,75,-0.7369868136388951],[127,8,76,-0.7367028654244859],[127,8,77,-0.736421424721938],[127,8,78,-0.7361424960186228],[127,8,79,-0.7358660837015522],[127,9,64,-0.7404065155903414],[127,9,65,-0.7400949129646741],[127,9,66,-0.7397857617664079],[127,9,67,-0.7394790675633489],[127,9,68,-0.7391748358277832],[127,9,69,-0.7388730719360451],[127,9,70,-0.7385737811680704],[127,9,71,-0.7382769687069539],[127,9,72,-0.7379826396385065],[127,9,73,-0.7376907989508256],[127,9,74,-0.7374014515338367],[127,9,75,-0.7371146021788682],[127,9,76,-0.7368302555782086],[127,9,77,-0.7365484163246706],[127,9,78,-0.7362690889111547],[127,9,79,-0.7359922777302095],[127,10,64,-0.7405388447895875],[127,10,65,-0.7402268467360346],[127,10,66,-0.7399172998821678],[127,10,67,-0.7396102098012107],[127,10,68,-0.7393055819708754],[127,10,69,-0.739003421772932],[127,10,70,-0.7387037344927613],[127,10,71,-0.7384065253189129],[127,10,72,-0.7381117993426611],[127,10,73,-0.7378195615575761],[127,10,74,-0.7375298168590658],[127,10,75,-0.7372425700439484],[127,10,76,-0.7369578258100131],[127,10,77,-0.736675588755581],[127,10,78,-0.7363958633790699],[127,10,79,-0.7361186540785546],[127,11,64,-0.7406713448568779],[127,11,65,-0.7403589521626963],[127,11,66,-0.7400490104377262],[127,11,67,-0.7397415252605947],[127,11,68,-0.7394365021144279],[127,11,69,-0.739133946386419],[127,11,70,-0.7388338633673817],[127,11,71,-0.7385362582513076],[127,11,72,-0.7382411361349226],[127,11,73,-0.7379485020172576],[127,11,74,-0.7376583607991904],[127,11,75,-0.7373707172830186],[127,11,76,-0.7370855761720193],[127,11,77,-0.7368029420700106],[127,11,78,-0.7365228194809168],[127,11,79,-0.7362452128083272],[127,12,64,-0.7408040158018832],[127,12,65,-0.7404912292577246],[127,12,66,-0.740180893449528],[127,12,67,-0.7398730139613116],[127,12,68,-0.7395675962816025],[127,12,69,-0.7392646458030047],[127,12,70,-0.7389641678217518],[127,12,71,-0.7386661675372657],[127,12,72,-0.7383706500517111],[127,12,73,-0.7380776203695677],[127,12,74,-0.7377870833971714],[127,12,75,-0.7374990439422873],[127,12,76,-0.7372135067136685],[127,12,77,-0.7369304763206191],[127,12,78,-0.7366499572725578],[127,12,79,-0.7363719539785778],[127,13,64,-0.7409368576316719],[127,13,65,-0.7406236780315776],[127,13,66,-0.7403129489314066],[127,13,67,-0.7400046759205561],[127,13,68,-0.7396988644929406],[127,13,69,-0.7393955200465624],[127,13,70,-0.7390946478830628],[127,13,71,-0.7387962532072807],[127,13,72,-0.7385003411268084],[127,13,73,-0.7382069166515619],[127,13,74,-0.7379159846933232],[127,13,75,-0.7376275500653123],[127,13,76,-0.7373416174817478],[127,13,77,-0.7370581915574074],[127,13,78,-0.7367772768071927],[127,13,79,-0.7364988776456899],[127,14,64,-0.7410698703506884],[127,14,65,-0.7407562984920844],[127,14,66,-0.7404451768945622],[127,14,67,-0.7401365111528841],[127,14,68,-0.7398303067663402],[127,14,69,-0.7395265691383177],[127,14,70,-0.7392253035758531],[127,14,71,-0.7389265152891903],[127,14,72,-0.7386302093913361],[127,14,73,-0.7383363908976309],[127,14,74,-0.7380450647252905],[127,14,75,-0.7377562356929787],[127,14,76,-0.7374699085203668],[127,14,77,-0.7371860878276948],[127,14,78,-0.7369047781353364],[127,14,79,-0.736625983863358],[127,15,64,-0.7412030539608063],[127,15,65,-0.7408890906444991],[127,15,66,-0.7405775773476149],[127,15,67,-0.7402685196702681],[127,15,68,-0.739961923117111],[127,15,69,-0.7396577930969033],[127,15,70,-0.7393561349220641],[127,15,71,-0.7390569538082296],[127,15,72,-0.7387602548738088],[127,15,73,-0.7384660431395542],[127,15,74,-0.7381743235281036],[127,15,75,-0.737885100863552],[127,15,76,-0.737598379871012],[127,15,77,-0.737314165176174],[127,15,78,-0.7370324613048719],[127,15,79,-0.7367532726826416],[127,16,64,-0.7413364084613154],[127,16,65,-0.7410220544914867],[127,16,66,-0.7407101502965907],[127,16,67,-0.7404007014820806],[127,16,68,-0.7400937135579585],[127,16,69,-0.7397891919383432],[127,16,70,-0.7394871419410242],[127,16,71,-0.7391875687870166],[127,16,72,-0.7388904776001199],[127,16,73,-0.7385958734064861],[127,16,74,-0.7383037611341625],[127,16,75,-0.7380141456126637],[127,16,76,-0.7377270315725313],[127,16,77,-0.7374424236448949],[127,16,78,-0.7371603263610363],[127,16,79,-0.73688074415195],[127,17,64,-0.7414699338489049],[127,17,65,-0.741155190033107],[127,17,66,-0.740842895744906],[127,17,67,-0.740533056595081],[127,17,68,-0.7402256780989701],[127,17,69,-0.7399207656760391],[127,17,70,-0.739618324649434],[127,17,71,-0.7393183602455378],[127,17,72,-0.7390208775935265],[127,17,73,-0.7387258817249398],[127,17,74,-0.7384333775732221],[127,17,75,-0.7381433699732958],[127,17,76,-0.7378558636611194],[127,17,77,-0.7375708632732495],[127,17,78,-0.737288373346405],[127,17,79,-0.7370083983170264],[127,18,64,-0.7416036301177189],[127,18,65,-0.7412884972668701],[127,18,66,-0.7409758136934225],[127,18,67,-0.7406655850134682],[127,18,68,-0.7403578167476685],[127,18,69,-0.740052514320823],[127,18,70,-0.7397496830614212],[127,18,71,-0.7394493282012009],[127,18,72,-0.7391514548747027],[127,18,73,-0.7388560681188415],[127,18,74,-0.7385631728724465],[127,18,75,-0.7382727739758354],[127,18,76,-0.7379848761703717],[127,18,77,-0.7376994840980271],[127,18,78,-0.7374166023009457],[127,18,79,-0.7371362352210028],[127,19,64,-0.7417374972593416],[127,19,65,-0.7414219761877208],[127,19,66,-0.7411089041404323],[127,19,67,-0.7407982867388675],[127,19,68,-0.7404901295089977],[127,19,69,-0.740184437880943],[127,19,70,-0.7398812171885245],[127,19,71,-0.7395804726688213],[127,19,72,-0.7392822094617263],[127,19,73,-0.7389864326095164],[127,19,74,-0.738693147056394],[127,19,75,-0.7384023576480592],[127,19,76,-0.7381140691312689],[127,19,77,-0.7378282861533982],[127,19,78,-0.737545013262004],[127,19,79,-0.7372642549043851],[127,20,64,-0.7418715352627817],[127,20,65,-0.7415556267880239],[127,20,66,-0.7412421670816423],[127,20,67,-0.7409311617703138],[127,20,68,-0.740622616385307],[127,20,69,-0.7403165363620492],[127,20,70,-0.7400129270396797],[127,20,71,-0.7397117936606064],[127,20,72,-0.7394131413700616],[127,20,73,-0.7391169752156723],[127,20,74,-0.7388233001470009],[127,20,75,-0.7385321210151181],[127,20,76,-0.7382434425721622],[127,20,77,-0.7379572694708989],[127,20,78,-0.7376736062642869],[127,20,79,-0.7373924574050361],[127,21,64,-0.7420057441145277],[127,21,65,-0.7416894490576191],[127,21,66,-0.7413756025102292],[127,21,67,-0.7410642101043076],[127,21,68,-0.7407552773764059],[127,21,69,-0.7404488097672463],[127,21,70,-0.7401448126212729],[127,21,71,-0.7398432911862097],[127,21,72,-0.7395442506126156],[127,21,73,-0.7392476959534547],[127,21,74,-0.7389536321636374],[127,21,75,-0.7386620640995927],[127,21,76,-0.7383729965188273],[127,21,77,-0.7380864340794864],[127,21,78,-0.737802381339918],[127,21,79,-0.7375208427582317],[127,22,64,-0.7421401237985243],[127,22,65,-0.7418234429837975],[127,22,66,-0.7415092104168167],[127,22,67,-0.7411974317347908],[127,22,68,-0.7408881124795416],[127,22,69,-0.7405812580970721],[127,22,70,-0.7402768739371186],[127,22,71,-0.7399749652527083],[127,22,72,-0.7396755371997138],[127,22,73,-0.7393785948364237],[127,22,74,-0.7390841431230835],[127,22,75,-0.7387921869214683],[127,22,76,-0.7385027309944414],[127,22,77,-0.7382157800055149],[127,22,78,-0.7379313385184141],[127,22,79,-0.7376494109966367],[127,23,64,-0.7422746742961974],[127,23,65,-0.7419576085513258],[127,23,66,-0.7416429907894991],[127,23,67,-0.7413308266531716],[127,23,68,-0.7410211216894218],[127,23,69,-0.7407138813495205],[127,23,70,-0.7404091109884832],[127,23,71,-0.7401068158646267],[127,23,72,-0.7398070011391245],[127,23,73,-0.7395096718755771],[127,23,74,-0.739214833039553],[127,23,75,-0.7389224894981605],[127,23,76,-0.738632646019607],[127,23,77,-0.7383453072727595],[127,23,78,-0.7380604778267087],[127,23,79,-0.7377781621503284],[127,24,64,-0.7424093955864293],[127,24,65,-0.7420919457424229],[127,24,66,-0.7417769436138182],[127,24,67,-0.7414643948483007],[127,24,68,-0.7411543049981926],[127,24,69,-0.7408466795200189],[127,24,70,-0.740541523774061],[127,24,71,-0.7402388430239126],[127,24,72,-0.739938642436035],[127,24,73,-0.739640927079328],[127,24,74,-0.7393457019246701],[127,24,75,-0.7390529718444903],[127,24,76,-0.7387627416123279],[127,24,77,-0.7384750159023925],[127,24,78,-0.7381897992891284],[127,24,79,-0.7379070962467732],[127,25,64,-0.7425442876456153],[127,25,65,-0.7422264545368156],[127,25,66,-0.7419110688728179],[127,25,67,-0.7415981363065263],[127,25,68,-0.7412876623954923],[127,25,69,-0.7409796526014824],[127,25,70,-0.74067411229003],[127,25,71,-0.7403710467299929],[127,25,72,-0.7400704610931073],[127,25,73,-0.7397723604535591],[127,25,74,-0.739476749787524],[127,25,75,-0.7391836339727397],[127,25,76,-0.7388930177880646],[127,25,77,-0.738604905913039],[127,25,78,-0.738319302927448],[127,25,79,-0.7380362133108813],[127,26,64,-0.7426793504476479],[127,26,65,-0.7423611349117224],[127,26,66,-0.7420453665470299],[127,26,67,-0.7417320510116789],[127,26,68,-0.7414211938684373],[127,26,69,-0.7411128005842987],[127,26,70,-0.7408068765300362],[127,26,71,-0.7405034269797576],[127,26,72,-0.7402024571104614],[127,26,73,-0.7399039720016067],[127,26,74,-0.7396079766346538],[127,26,75,-0.739314475892636],[127,26,76,-0.7390234745597187],[127,26,77,-0.7387349773207601],[127,26,78,-0.7384489887608743],[127,26,79,-0.7381655133649911],[127,27,64,-0.7428145839639009],[127,27,65,-0.7424959868418386],[127,27,66,-0.7421798366144572],[127,27,67,-0.7418661389450562],[127,27,68,-0.7415548994016053],[127,27,69,-0.741246123456313],[127,27,70,-0.7409398164851777],[127,27,71,-0.7406359837675445],[127,27,72,-0.7403346304856611],[127,27,73,-0.7400357617242463],[127,27,74,-0.7397393824700325],[127,27,75,-0.739445497611336],[127,27,76,-0.7391541119376166],[127,27,77,-0.7388652301390379],[127,27,78,-0.7385788568060311],[127,27,79,-0.7382949964288539],[127,28,64,-0.7429499881632855],[127,28,65,-0.7426310102993913],[127,28,66,-0.7423144790506297],[127,28,67,-0.7420004000854771],[127,28,68,-0.7416887789770917],[127,28,69,-0.7413796212028827],[127,28,70,-0.7410729321440603],[127,28,71,-0.7407687170851943],[127,28,72,-0.7404669812137676],[127,28,73,-0.7401677296197466],[127,28,74,-0.7398709672951223],[127,28,75,-0.7395766991334812],[127,28,76,-0.7392849299295652],[127,28,77,-0.7389956643788309],[127,28,78,-0.7387089070770138],[127,28,79,-0.7384246625196874],[127,29,64,-0.7430855630122262],[127,29,65,-0.7427662052541164],[127,29,66,-0.7424492938285812],[127,29,67,-0.7421348344092596],[127,29,68,-0.7418228325744852],[127,29,69,-0.7415132938068536],[127,29,70,-0.7412062234927741],[127,29,71,-0.740901626922027],[127,29,72,-0.7405995092873175],[127,29,73,-0.7402998756838466],[127,29,74,-0.7400027311088506],[127,29,75,-0.7397080804611742],[127,29,76,-0.7394159285408279],[127,29,77,-0.7391262800485491],[127,29,78,-0.7388391395853654],[127,29,79,-0.7385545116521539],[127,30,64,-0.7432213084746854],[127,30,65,-0.7429015716732821],[127,30,66,-0.7425842809188725],[127,30,67,-0.7422694418902444],[127,30,68,-0.7419570601708921],[127,30,69,-0.7416471412485847],[127,30,70,-0.7413396905149168],[127,30,71,-0.7410347132648655],[127,30,72,-0.7407322146963455],[127,30,73,-0.7404321999097787],[127,30,74,-0.7401346739076345],[127,30,75,-0.7398396415940021],[127,30,76,-0.7395471077741484],[127,30,77,-0.7392570771540788],[127,30,78,-0.7389695543401009],[127,30,79,-0.7386845438383828],[127,31,64,-0.743357224512139],[127,31,65,-0.7430371095216658],[127,31,66,-0.7427194402895686],[127,31,67,-0.7424042224997703],[127,31,68,-0.7420914617409127],[127,31,69,-0.7417811635059238],[127,31,70,-0.7414733331915699],[127,31,71,-0.7411679760980123],[127,31,72,-0.740865097428361],[127,31,73,-0.740564702288246],[127,31,74,-0.7402667956853565],[127,31,75,-0.7399713825290131],[127,31,76,-0.7396784676297269],[127,31,77,-0.7393880556987585],[127,31,78,-0.7391001513476826],[127,31,79,-0.7388147590879464],[127,32,64,-0.7434933110836333],[127,32,65,-0.7431728187616087],[127,32,66,-0.7428547719062936],[127,32,67,-0.7425391762067312],[127,32,68,-0.7422260372566964],[127,32,69,-0.7419153605542631],[127,32,70,-0.7416071515013555],[127,32,71,-0.7413014154033047],[127,32,72,-0.7409981574684037],[127,32,73,-0.7406973828074765],[127,32,74,-0.7403990964334193],[127,32,75,-0.7401033032607717],[127,32,76,-0.7398100081052753],[127,32,77,-0.7395192156834336],[127,32,78,-0.7392309306120759],[127,32,79,-0.7389451574079162],[127,33,64,-0.7436295681457679],[127,33,65,-0.7433086993530016],[127,33,66,-0.7429902757322152],[127,33,67,-0.7426743029775589],[127,33,68,-0.7423607866879265],[127,33,69,-0.7420497323665236],[127,33,70,-0.7417411454204186],[127,33,71,-0.7414350311600991],[127,33,72,-0.741131394799027],[127,33,73,-0.7408302414532077],[127,33,74,-0.7405315761407313],[127,33,75,-0.7402354037813426],[127,33,76,-0.7399417291960013],[127,33,77,-0.7396505571064411],[127,33,78,-0.7393618921347334],[127,33,79,-0.7390757388028462],[127,34,64,-0.7437659956526808],[127,34,65,-0.7434447512532678],[127,34,66,-0.7431259517280296],[127,34,67,-0.7428096027762087],[127,34,68,-0.7424957100018041],[127,34,69,-0.7421842789131392],[127,34,70,-0.7418753149224124],[127,34,71,-0.7415688233452548],[127,34,72,-0.7412648094002833],[127,34,73,-0.7409632782086715],[127,34,74,-0.7406642347936894],[127,34,75,-0.7403676840802749],[127,34,76,-0.7400736308945925],[127,34,77,-0.7397820799635934],[127,34,78,-0.7394930359145782],[127,34,79,-0.7392065032747566],[127,35,64,-0.7439025935561039],[127,35,65,-0.7435809744174193],[127,35,66,-0.7432617998520159],[127,35,67,-0.742945075564214],[127,35,68,-0.7426308071631038],[127,35,69,-0.7423190001621119],[127,35,70,-0.7420096599785541],[127,35,71,-0.7417027919331899],[127,35,72,-0.7413984012497785],[127,35,73,-0.7410964930546479],[127,35,74,-0.740797072376235],[127,35,75,-0.7405001441446575],[127,35,76,-0.7402057131912718],[127,35,77,-0.7399137842482334],[127,35,78,-0.73962436194806],[127,35,79,-0.7393374508231902],[127,36,64,-0.7440393618053394],[127,36,65,-0.7437173687980335],[127,36,66,-0.7433978200600133],[127,36,67,-0.7430807213006629],[127,36,68,-0.7427660781341494],[127,36,69,-0.742453896078989],[127,36,70,-0.7421441805575999],[127,36,71,-0.7418369368958574],[127,36,72,-0.7415321703226487],[127,36,73,-0.7412298859694428],[127,36,74,-0.7409300888698304],[127,36,75,-0.7406327839590954],[127,36,76,-0.7403379760737734],[127,36,77,-0.7400456699512112],[127,36,78,-0.7397558702291309],[127,36,79,-0.7394685814451872],[127,37,64,-0.7441763003472838],[127,37,65,-0.7438539343452764],[127,37,66,-0.7435340123054446],[127,37,67,-0.7432165399422223],[127,37,68,-0.7429015228748386],[127,37,69,-0.7425889666268858],[127,37,70,-0.7422788766258702],[127,37,71,-0.7419712582027689],[127,37,72,-0.7416661165915837],[127,37,73,-0.7413634569289109],[127,37,74,-0.7410632842534817],[127,37,75,-0.7407656035057331],[127,37,76,-0.7404704195273664],[127,37,77,-0.7401777370609072],[127,37,78,-0.7398875607492685],[127,37,79,-0.7395998951353095],[127,38,64,-0.7443134091264036],[127,38,65,-0.7439906710068789],[127,38,66,-0.7436703765392927],[127,38,67,-0.7433525314431135],[127,38,68,-0.7430371413426189],[127,38,69,-0.7427242117664621],[127,38,70,-0.7424137481472244],[127,38,71,-0.7421057558209705],[127,38,72,-0.7418002400268029],[127,38,73,-0.741497205906432],[127,38,74,-0.7411966585037154],[127,38,75,-0.7408986027642304],[127,38,76,-0.7406030435348309],[127,38,77,-0.7403099855632079],[127,38,78,-0.740019433497453],[127,38,79,-0.7397313918856165],[127,39,64,-0.7444506880847919],[127,39,65,-0.7441275787281934],[127,39,66,-0.743806912710156],[127,39,67,-0.7434886957551686],[127,39,68,-0.7431729334925425],[127,39,69,-0.7428596314559783],[127,39,70,-0.7425487950831177],[127,39,71,-0.7422404297150987],[127,39,72,-0.7419345405961115],[127,39,73,-0.7416311328729662],[127,39,74,-0.7413302115946342],[127,39,75,-0.7410317817118186],[127,39,76,-0.7407358480765134],[127,39,77,-0.740442415441562],[127,39,78,-0.7401514884602214],[127,39,79,-0.7398630716857203],[127,40,64,-0.7445881371621518],[127,40,65,-0.7442646574521766],[127,40,66,-0.7439436207642325],[127,40,67,-0.743625032827814],[127,40,68,-0.7433088992772516],[127,40,69,-0.7429952256512791],[127,40,70,-0.7426840173925839],[127,40,71,-0.7423752798473645],[127,40,72,-0.7420690182648838],[127,40,73,-0.7417652377970385],[127,40,74,-0.7414639434978998],[127,40,75,-0.741165140323284],[127,40,76,-0.7408688331303108],[127,40,77,-0.7405750266769636],[127,40,78,-0.7402837256216518],[127,40,79,-0.7399949345227697],[127,41,64,-0.744725756295781],[127,41,65,-0.7444019071193749],[127,41,66,-0.7440805006453044],[127,41,67,-0.7437615426080547],[127,41,68,-0.7434450386469617],[127,41,69,-0.7431309943057771],[127,41,70,-0.7428194150322209],[127,41,71,-0.742510306177537],[127,41,72,-0.7422036729960476],[127,41,73,-0.7418995206447222],[127,41,74,-0.7415978541827182],[127,41,75,-0.7412986785709512],[127,41,76,-0.7410019986716543],[127,41,77,-0.7407078192479367],[127,41,78,-0.7404161449633475],[127,41,79,-0.7401269803814338],[127,42,64,-0.7448635454206272],[127,42,65,-0.7445393276679793],[127,42,66,-0.7442175522947929],[127,42,67,-0.7438982250405303],[127,42,68,-0.7435813515495171],[127,42,69,-0.7432669373705092],[127,42,70,-0.7429549879562448],[127,42,71,-0.742645508662999],[127,42,72,-0.7423385047501395],[127,42,73,-0.7420339813796948],[127,42,74,-0.7417319436158942],[127,42,75,-0.74143239642474],[127,42,76,-0.7411353446735646],[127,42,77,-0.7408407931305901],[127,42,78,-0.7405487464644923],[127,42,79,-0.740259209243958],[127,43,64,-0.7450015044692647],[127,43,65,-0.7446769190338014],[127,43,66,-0.7443547756517354],[127,43,67,-0.7440350800674902],[127,43,68,-0.7437178379303673],[127,43,69,-0.7434030547941125],[127,43,70,-0.743090736116467],[127,43,71,-0.7427808872587238],[127,43,72,-0.7424735134852813],[127,43,73,-0.7421686199632134],[127,43,74,-0.7418662117618081],[127,43,75,-0.7415662938521401],[127,43,76,-0.741268871106628],[127,43,77,-0.7409739482985936],[127,43,78,-0.7406815301018261],[127,43,79,-0.7403916210901392],[127,44,64,-0.7451396333719184],[127,44,65,-0.7448146811502986],[127,44,66,-0.7444921706528085],[127,44,67,-0.7441721076288187],[127,44,68,-0.7438544977325914],[127,44,69,-0.7435393465228476],[127,44,70,-0.7432266594623176],[127,44,71,-0.7429164419172977],[127,44,72,-0.7426086991572033],[127,44,73,-0.7423034363541392],[127,44,74,-0.7420006585824389],[127,44,75,-0.7417003708182355],[127,44,76,-0.7414025779390204],[127,44,77,-0.7411072847232019],[127,44,78,-0.7408144958496692],[127,44,79,-0.7405242158973497],[127,45,64,-0.7452779320564389],[127,45,65,-0.7449526139485484],[127,45,66,-0.7446297372323045],[127,45,67,-0.7443093076620099],[127,45,68,-0.743991330896873],[127,45,69,-0.7436758125005749],[127,45,70,-0.7433627579408213],[127,45,71,-0.7430521725888968],[127,45,72,-0.74274406171922],[127,45,73,-0.742438430508913],[127,45,74,-0.7421352840373401],[127,45,75,-0.7418346272856797],[127,45,76,-0.7415364651364822],[127,45,77,-0.7412408023732292],[127,45,78,-0.7409476436798966],[127,45,79,-0.7406569936405127],[127,46,64,-0.7454164004483592],[127,46,65,-0.7450907173573054],[127,46,66,-0.7447674753221872],[127,46,67,-0.7444466801022241],[127,46,68,-0.7441283373615564],[127,46,69,-0.7438124526688108],[127,46,70,-0.7434990314966531],[127,46,71,-0.7431880792213426],[127,46,72,-0.7428796011222869],[127,46,73,-0.7425736023816106],[127,46,74,-0.7422700880836958],[127,46,75,-0.741969063214752],[127,46,76,-0.741670532662375],[127,46,77,-0.7413745012151063],[127,46,78,-0.7410809735619954],[127,46,79,-0.7407899542921583],[127,47,64,-0.745555038470879],[127,47,65,-0.745228991302985],[127,47,66,-0.7449053848520755],[127,47,67,-0.7445842248822718],[127,47,68,-0.7442655170626308],[127,47,69,-0.7439492669667106],[127,47,70,-0.7436354800721225],[127,47,71,-0.7433241617600859],[127,47,72,-0.7430153173149829],[127,47,73,-0.7427089519239273],[127,47,74,-0.7424050706763041],[127,47,75,-0.7421036785633406],[127,47,76,-0.7418047804776647],[127,47,77,-0.7415083812128637],[127,47,78,-0.7412144854630474],[127,47,79,-0.7409230978224065],[127,48,64,-0.7456938460448476],[127,48,65,-0.7453674357096471],[127,48,66,-0.7450434657492275],[127,48,67,-0.744721941932597],[127,48,68,-0.744402869933714],[127,48,69,-0.7440862553310531],[127,48,70,-0.7437721036071568],[127,48,71,-0.74346042014819],[127,48,72,-0.7431512102434952],[127,48,73,-0.7428444790851607],[127,48,74,-0.7425402317675609],[127,48,75,-0.742238473286927],[127,48,76,-0.741939208540905],[127,48,77,-0.7416424423281146],[127,48,78,-0.7413481793477128],[127,48,79,-0.7410564241989513],[127,49,64,-0.7458328230888205],[127,49,65,-0.7455060504990525],[127,49,66,-0.7451817179385967],[127,49,67,-0.7448598311813335],[127,49,68,-0.7445403959061079],[127,49,69,-0.7442234176962964],[127,49,70,-0.7439089020393574],[127,49,71,-0.7435968543263873],[127,49,72,-0.7432872798516743],[127,49,73,-0.7429801838122673],[127,49,74,-0.7426755713075159],[127,49,75,-0.7423734473386413],[127,49,76,-0.7420738168082937],[127,49,77,-0.7417766845201117],[127,49,78,-0.7414820551782861],[127,49,79,-0.7411899333871164],[127,50,64,-0.7459719695190437],[127,50,65,-0.7456448355906462],[127,50,66,-0.7453201413428157],[127,50,67,-0.744997892554289],[127,50,68,-0.7446780949087832],[127,50,69,-0.7443607539945614],[127,50,70,-0.7440458753039836],[127,50,71,-0.7437334642330626],[127,50,72,-0.7434235260810184],[127,50,73,-0.7431160660498459],[127,50,74,-0.7428110892438562],[127,50,75,-0.7425086006692457],[127,50,76,-0.7422086052336558],[127,50,77,-0.7419111077457303],[127,50,78,-0.7416161129146798],[127,50,79,-0.7413236253498388],[127,51,64,-0.7461112852494365],[127,51,65,-0.7457837909015416],[127,51,66,-0.7454587358821793],[127,51,67,-0.7451361259749283],[127,51,68,-0.744815966868362],[127,51,69,-0.7444982641556155],[127,51,70,-0.7441830233339355],[127,51,71,-0.7438702498042369],[127,51,72,-0.7435599488706565],[127,51,73,-0.7432521257401212],[127,51,74,-0.7429467855218892],[127,51,75,-0.7426439332271186],[127,51,76,-0.7423435737684274],[127,51,77,-0.7420457119594515],[127,51,78,-0.7417503525144075],[127,51,79,-0.7414575000476511],[127,52,64,-0.7462507701916485],[127,52,65,-0.7459229163465766],[127,52,66,-0.745597501474702],[127,52,67,-0.7452745313644299],[127,52,68,-0.7449540117091751],[127,52,69,-0.744635948106929],[127,52,70,-0.7443203460598111],[127,52,71,-0.7440072109736233],[127,52,72,-0.7436965481574047],[127,52,73,-0.743388362823],[127,52,74,-0.7430826600845996],[127,52,75,-0.74277944495831],[127,52,76,-0.7424787223617118],[127,52,77,-0.7421804971134186],[127,52,78,-0.74188477393264],[127,52,79,-0.7415915574387397],[127,53,64,-0.746390424255035],[127,53,65,-0.746062211838289],[127,53,66,-0.7457364380360925],[127,53,67,-0.7454131086416609],[127,53,68,-0.7450922293532359],[127,53,69,-0.7447738057736507],[127,53,70,-0.7444578434098814],[127,53,71,-0.7441443476726027],[127,53,72,-0.7438333238757415],[127,53,73,-0.7435247772360459],[127,53,74,-0.7432187128726244],[127,53,75,-0.7429151358065174],[127,53,76,-0.7426140509602541],[127,53,77,-0.7423154631574124],[127,53,78,-0.742019377122181],[127,53,79,-0.7417257974789178],[127,54,64,-0.746530247346681],[127,54,65,-0.7462016772869413],[127,54,66,-0.7458755454797779],[127,54,67,-0.7455518577232023],[127,54,68,-0.7452306197202667],[127,54,69,-0.7449118370786312],[127,54,70,-0.744595515310114],[127,54,71,-0.7442816598302477],[127,54,72,-0.7439702759578324],[127,54,73,-0.7436613689145044],[127,54,74,-0.7433549438242769],[127,54,75,-0.7430510057131093],[127,54,76,-0.7427495595084661],[127,54,77,-0.7424506100388749],[127,54,78,-0.7421541620334902],[127,54,79,-0.7418602201216506],[127,55,64,-0.7466702393713769],[127,55,65,-0.7463413126004949],[127,55,66,-0.7460148237168798],[127,55,67,-0.7456907785233227],[127,55,68,-0.7453691827276719],[127,55,69,-0.7450500419423989],[127,55,70,-0.7447333616841492],[127,55,71,-0.7444191473732978],[127,55,72,-0.7441074043335038],[127,55,73,-0.7437981377912775],[127,55,74,-0.7434913528755214],[127,55,75,-0.7431870546171008],[127,55,76,-0.7428852479484004],[127,55,77,-0.7425859377028845],[127,55,78,-0.7422891286146591],[127,55,79,-0.7419948253180301],[127,56,64,-0.7468104002316746],[127,56,65,-0.7464811176846676],[127,56,66,-0.7461542726562697],[127,56,67,-0.7458298709540362],[127,56,68,-0.7455079182905958],[127,56,69,-0.7451884202832163],[127,56,70,-0.7448713824533552],[127,56,71,-0.7445568102262158],[127,56,72,-0.7442447089303004],[127,56,73,-0.7439350837969794],[127,56,74,-0.7436279399600303],[127,56,75,-0.7433232824552092],[127,56,76,-0.7430211162198076],[127,56,77,-0.7427214460922121],[127,56,78,-0.7424242768114666],[127,56,79,-0.7421296130168307],[127,57,64,-0.7469507298278713],[127,57,65,-0.7466210924429171],[127,57,66,-0.7462938922045537],[127,57,67,-0.7459691349250852],[127,57,68,-0.7456468263219056],[127,57,69,-0.7453269720170632],[127,57,70,-0.7450095775368131],[127,57,71,-0.7446946483111712],[127,57,72,-0.7443821896734689],[127,57,73,-0.7440722068599213],[127,57,74,-0.7437647050091669],[127,57,75,-0.7434596891618381],[127,57,76,-0.7431571642601194],[127,57,77,-0.7428571351473049],[127,57,78,-0.7425596065673632],[127,57,79,-0.7422645831644932],[127,58,64,-0.7470912280579929],[127,58,65,-0.7467612367764235],[127,58,66,-0.7464336822660546],[127,58,67,-0.7461085703439237],[127,58,68,-0.7457859067321743],[127,58,69,-0.7454656970576204],[127,58,70,-0.7451479468512988],[127,58,71,-0.7448326615480235],[127,58,72,-0.7445198464859402],[127,58,73,-0.7442095069060936],[127,58,74,-0.7439016479519688],[127,58,75,-0.7435962746690603],[127,58,76,-0.7432933920044307],[127,58,77,-0.7429930048062686],[127,58,78,-0.7426951178234527],[127,58,79,-0.7423997357051078],[127,59,64,-0.7472318948178511],[127,59,65,-0.7469015505841471],[127,59,66,-0.7465736427428696],[127,59,67,-0.7462481771157744],[127,59,68,-0.7459251594297382],[127,59,69,-0.7456045953163258],[127,59,70,-0.7452864903113405],[127,59,71,-0.7449708498543791],[127,59,72,-0.7446576792883862],[127,59,73,-0.7443469838592225],[127,59,74,-0.7440387687152042],[127,59,75,-0.7437330389066739],[127,59,76,-0.7434297993855579],[127,59,77,-0.743129055004925],[127,59,78,-0.7428308105185499],[127,59,79,-0.7425350705804699],[127,60,64,-0.747372730001018],[127,60,65,-0.7470420337628028],[127,60,66,-0.7467137735348456],[127,60,67,-0.7463879551436035],[127,60,68,-0.7460645843206717],[127,60,69,-0.7457436667023503],[127,60,70,-0.7454252078291932],[127,60,71,-0.7451092131455654],[127,60,72,-0.7447956879991958],[127,60,73,-0.7444846376407455],[127,60,74,-0.7441760672233475],[127,60,75,-0.7438699818021779],[127,60,76,-0.7435663863340123],[127,60,77,-0.7432652856767858],[127,60,78,-0.742966684589155],[127,60,79,-0.7426705877300558],[127,61,64,-0.7475137334988502],[127,61,65,-0.7471826862068849],[127,61,66,-0.7468540745396018],[127,61,67,-0.7465279043281445],[127,61,68,-0.746204181308811],[127,61,69,-0.7458829111226204],[127,61,70,-0.745564099314863],[127,61,71,-0.7452477513346563],[127,61,72,-0.7449338725344978],[127,61,73,-0.7446224681698348],[127,61,74,-0.7443135433986026],[127,61,75,-0.7440071032807956],[127,61,76,-0.7437031527780251],[127,61,77,-0.7434016967530777],[127,61,78,-0.7431027399694777],[127,61,79,-0.742806287091046],[127,62,64,-0.7476549052004648],[127,62,65,-0.7473235078086413],[127,62,66,-0.7469945456525067],[127,62,67,-0.7466680245678744],[127,62,68,-0.7463439502957296],[127,62,69,-0.7460223284817953],[127,62,70,-0.7457031646760823],[127,62,71,-0.7453864643324453],[127,62,72,-0.7450722328081362],[127,62,73,-0.7447604753633728],[127,62,74,-0.7444511971608778],[127,62,75,-0.7441444032654501],[127,62,76,-0.7438400986435214],[127,62,77,-0.7435382881627157],[127,62,78,-0.7432389765914116],[127,62,79,-0.7429421685983001],[127,63,64,-0.7477962449927953],[127,63,65,-0.7474644984581315],[127,63,66,-0.7471351867667335],[127,63,67,-0.7468083157590691],[127,63,68,-0.7464838911807951],[127,63,69,-0.7461619186823218],[127,63,70,-0.745842403818366],[127,63,71,-0.745525352047504],[127,63,72,-0.7452107687317269],[127,63,73,-0.7448986591360081],[127,63,74,-0.7445890284278431],[127,63,75,-0.7442818816768201],[127,63,76,-0.7439772238541772],[127,63,77,-0.7436750598323613],[127,63,78,-0.7433753943845909],[127,63,79,-0.7430782321844136],[127,64,64,-0.7479377527605755],[127,64,65,-0.7476056580432089],[127,64,66,-0.7472759977732443],[127,64,67,-0.7469487777957878],[127,64,68,-0.7466240038611514],[127,64,69,-0.7463016816244186],[127,64,70,-0.7459818166449952],[127,64,71,-0.7456644143861645],[127,64,72,-0.7453494802146412],[127,64,73,-0.7450370194001396],[127,64,74,-0.744727037114913],[127,64,75,-0.744419538433324],[127,64,76,-0.7441145283314028],[127,64,77,-0.7438120116864047],[127,64,78,-0.7435119932763739],[127,64,79,-0.7432144777797004],[127,65,64,-0.7480794283863221],[127,65,65,-0.7477469864495042],[127,65,66,-0.7474169785607723],[127,65,67,-0.747089410569855],[127,65,68,-0.7467642882317037],[127,65,69,-0.7464416172060586],[127,65,70,-0.7461214030569998],[127,65,71,-0.7458036512525019],[127,65,72,-0.7454883671639881],[127,65,73,-0.7451755560658984],[127,65,74,-0.7448652231352285],[127,65,75,-0.7445573734511016],[127,65,76,-0.7442520119943247],[127,65,77,-0.7439491436469473],[127,65,78,-0.7436487731918251],[127,65,79,-0.7433509053121762],[127,66,64,-0.7482212717503925],[127,66,65,-0.7478884835604828],[127,66,66,-0.7475581290158798],[127,66,67,-0.7472302139709184],[127,66,68,-0.7469047441851735],[127,66,69,-0.7465817253230267],[127,66,70,-0.746261162953216],[127,66,71,-0.7459430625483924],[127,66,72,-0.7456274294846719],[127,66,73,-0.745314269041205],[127,66,74,-0.7450035863997158],[127,66,75,-0.7446953866440722],[127,66,76,-0.7443896747598436],[127,66,77,-0.7440864556338596],[127,66,78,-0.7437857340537725],[127,66,79,-0.7434875147076148],[127,67,64,-0.748363282730959],[127,67,65,-0.7480301492574191],[127,67,66,-0.7476994490229323],[127,67,67,-0.7473711878864233],[127,67,68,-0.7470453716120747],[127,67,69,-0.7467220058688934],[127,67,70,-0.7464010962302603],[127,67,71,-0.7460826481734865],[127,67,72,-0.7457666670793659],[127,67,73,-0.7454531582317445],[127,67,74,-0.7451421268170592],[127,67,75,-0.744833577923908],[127,67,76,-0.7445275165426082],[127,67,77,-0.7442239475647545],[127,67,78,-0.7439228757827819],[127,67,79,-0.7436243058895229],[127,68,64,-0.7485054612040333],[127,68,65,-0.7481719834194214],[127,68,66,-0.7478409384641229],[127,68,67,-0.7475123322016368],[127,68,68,-0.7471861704007372],[127,68,69,-0.7468624587350402],[127,68,70,-0.7465412027825542],[127,68,71,-0.7462224080252345],[127,68,72,-0.745906079848538],[127,68,73,-0.7455922235409903],[127,68,74,-0.7452808442937262],[127,68,75,-0.7449719472000593],[127,68,76,-0.7446655372550397],[127,68,77,-0.7443616193550125],[127,68,78,-0.7440601982971813],[127,68,79,-0.7437612787791641],[127,69,64,-0.7486478070434412],[127,69,65,-0.7483139859234054],[127,69,66,-0.747982597219447],[127,69,67,-0.7476536467996225],[127,69,68,-0.7473271404372815],[127,69,69,-0.7470030838106336],[127,69,70,-0.7466814825022985],[127,69,71,-0.7463623419988605],[127,69,72,-0.7460456676904236],[127,69,73,-0.7457314648701783],[127,69,74,-0.7454197387339417],[127,69,75,-0.7451104943797281],[127,69,76,-0.7448037368073056],[127,69,77,-0.7444994709177555],[127,69,78,-0.7441977015130347],[127,69,79,-0.7438984332955327],[127,70,64,-0.7487903201208803],[127,70,65,-0.7484561566441533],[127,70,66,-0.74812442516676],[127,70,67,-0.7477951315612978],[127,70,68,-0.7474682816056764],[127,70,69,-0.7471438809826823],[127,70,70,-0.7468219352795306],[127,70,71,-0.7465024499874194],[127,70,72,-0.746185430501084],[127,70,73,-0.7458708821183643],[127,70,74,-0.745558810039745],[127,70,75,-0.7452492193679257],[127,70,76,-0.7449421151073776],[127,70,77,-0.7446375021639035],[127,70,78,-0.7443353853441992],[127,70,79,-0.7440357693554117],[127,71,64,-0.7489330003059019],[127,71,65,-0.748598495454295],[127,71,66,-0.7482664221817592],[127,71,67,-0.747936786365417],[127,71,68,-0.7476095937877212],[127,71,69,-0.7472848501360198],[127,71,70,-0.7469625610021073],[127,71,71,-0.74664273188178],[127,71,72,-0.7463253681743887],[127,71,73,-0.7460104751824073],[127,71,74,-0.7456980581109728],[127,71,75,-0.745388122067455],[127,71,76,-0.7450806720610137],[127,71,77,-0.7447757130021581],[127,71,78,-0.7444732497023085],[127,71,79,-0.7441732868733546],[127,72,64,-0.7490758474658954],[127,72,65,-0.748741002224292],[127,72,66,-0.7484085881379676],[127,72,67,-0.7480786110885536],[127,72,68,-0.7477510768630291],[127,72,69,-0.7474259911532879],[127,72,70,-0.747103359555688],[127,72,71,-0.7467831875706076],[127,72,72,-0.7464654806019977],[127,72,73,-0.7461502439569512],[127,72,74,-0.7458374828452414],[127,72,75,-0.7455272023788937],[127,72,76,-0.7452194075717412],[127,72,77,-0.7449141033389847],[127,72,78,-0.7446112944967545],[127,72,79,-0.7443109857616685],[127,73,64,-0.7492188614661439],[127,73,65,-0.748883676822494],[127,73,66,-0.7485509229067908],[127,73,67,-0.7482206056051575],[127,73,68,-0.747892730709084],[127,73,69,-0.7475673039149933],[127,73,70,-0.7472443308237908],[127,73,71,-0.7469238169404211],[127,73,72,-0.7466057676734197],[127,73,73,-0.7462901883344825],[127,73,74,-0.7459770841380047],[127,73,75,-0.7456664602006509],[127,73,76,-0.7453583215409134],[127,73,77,-0.7450526730786694],[127,73,78,-0.7447495196347448],[127,73,79,-0.7444488659304709],[127,74,64,-0.7493620421698005],[127,74,65,-0.7490265191151146],[127,74,66,-0.7486934263574917],[127,74,67,-0.7483627697875306],[127,74,68,-0.7480345552012156],[127,74,69,-0.7477087882994824],[127,74,70,-0.7473854746877685],[127,74,71,-0.747064619875568],[127,74,72,-0.7467462292759859],[127,74,73,-0.7464303082053052],[127,74,74,-0.7461168618825273],[127,74,75,-0.745805895428942],[127,74,76,-0.7454974138676844],[127,74,77,-0.7451914221232939],[127,74,78,-0.7448879250212769],[127,74,79,-0.7445869272876637],[127,75,64,-0.7495053894379115],[127,75,65,-0.7491695289662543],[127,75,66,-0.7488360983572147],[127,75,67,-0.7485051035058501],[127,75,68,-0.7481765502126231],[127,75,69,-0.7478504441829659],[127,75,70,-0.7475267910268313],[127,75,71,-0.747205596258248],[127,75,72,-0.7468868652948737],[127,75,73,-0.7465706034575639],[127,75,74,-0.7462568159699104],[127,75,75,-0.7459455079578123],[127,75,76,-0.7456366844490331],[127,75,77,-0.7453303503727591],[127,75,78,-0.7450265105591625],[127,75,79,-0.7447251697389582],[127,76,64,-0.749648903129391],[127,76,65,-0.7493127062378756],[127,76,66,-0.7489789387709596],[127,76,67,-0.7486476066281429],[127,76,68,-0.7483187156143495],[127,76,69,-0.7479922714394917],[127,76,70,-0.747668279718022],[127,76,71,-0.747346745968487],[127,76,72,-0.7470276756130823],[127,76,73,-0.7467110739772189],[127,76,74,-0.7463969462890642],[127,76,75,-0.7460852976791114],[127,76,76,-0.7457761331797368],[127,76,77,-0.7454694577247591],[127,76,78,-0.7451652761490013],[127,76,79,-0.7448635931878479],[127,77,64,-0.749792583101079],[127,77,65,-0.7494560507898607],[127,77,66,-0.7491219474616402],[127,77,67,-0.7487902790203436],[127,77,68,-0.7484610512753394],[127,77,69,-0.7481342699410041],[127,77,70,-0.7478099406362732],[127,77,71,-0.7474880688841956],[127,77,72,-0.7471686601114883],[127,77,73,-0.7468517196481028],[127,77,74,-0.7465372527267662],[127,77,75,-0.7462252644825503],[127,77,76,-0.7459157599524295],[127,77,77,-0.7456087440748391],[127,77,78,-0.7453042216892382],[127,77,79,-0.7450021975356665],[127,78,64,-0.7499364292077234],[127,78,65,-0.7495995624799933],[127,78,66,-0.7492651242900661],[127,78,67,-0.7489331205462767],[127,78,68,-0.7486035570624219],[127,78,69,-0.7482764395573255],[127,78,70,-0.7479517736543901],[127,78,71,-0.7476295648811511],[127,78,72,-0.7473098186688301],[127,78,73,-0.7469925403519042],[127,78,74,-0.746677735167644],[127,78,75,-0.7463654082556848],[127,78,76,-0.7460555646575835],[127,78,77,-0.7457482093163773],[127,78,78,-0.7454433470761463],[127,78,79,-0.7451409826815709],[127,79,64,-0.7500804413019629],[127,79,65,-0.7497432411639425],[127,79,66,-0.7494084691149256],[127,79,67,-0.7490761310676395],[127,79,68,-0.7487462328402921],[127,79,69,-0.7484187801561389],[127,79,70,-0.7480937786430327],[127,79,71,-0.747771233832979],[127,79,72,-0.747451151161689],[127,79,73,-0.7471335359681486],[127,79,74,-0.7468183934941567],[127,79,75,-0.7465057288838964],[127,79,76,-0.7461955471834921],[127,79,77,-0.7458878533405675],[127,79,78,-0.7455826522038088],[127,79,79,-0.7452799485225219],[127,80,64,-0.7502246192343852],[127,80,65,-0.7498870866953196],[127,80,66,-0.7495519817928435],[127,80,67,-0.7492193104440592],[127,80,68,-0.74888907847157],[127,80,69,-0.748561291603046],[127,80,70,-0.7482359554707736],[127,80,71,-0.7479130756112127],[127,80,72,-0.7475926574645476],[127,80,73,-0.7472747063742572],[127,80,74,-0.7469592275866535],[127,80,75,-0.7466462262504514],[127,80,76,-0.7463357074163273],[127,80,77,-0.7460276760364766],[127,80,78,-0.7457221369641763],[127,80,79,-0.745419094953343],[127,81,64,-0.7503689628535002],[127,81,65,-0.7500310989256522],[127,81,66,-0.7496956621783546],[127,81,67,-0.749362658533068],[127,81,68,-0.749032093816774],[127,81,69,-0.7487039737615404],[127,81,70,-0.748378304004072],[127,81,71,-0.7480550900852655],[127,81,72,-0.7477343374497631],[127,81,73,-0.7474160514455206],[127,81,74,-0.7471002373233467],[127,81,75,-0.7467869002364735],[127,81,76,-0.7464760452401136],[127,81,77,-0.7461676772910183],[127,81,78,-0.745861801247041],[127,81,79,-0.7455584218666942],[127,82,64,-0.7505134720057656],[127,82,65,-0.7501752777044093],[127,82,66,-0.749839510123929],[127,82,67,-0.7495061751901266],[127,82,68,-0.7491752787343451],[127,82,69,-0.7488468264930334],[127,82,70,-0.7485208241072978],[127,82,71,-0.7481972771224563],[127,82,72,-0.7478761909875924],[127,82,73,-0.7475575710551228],[127,82,74,-0.7472414225803373],[127,82,75,-0.7469277507209693],[127,82,76,-0.746616560536752],[127,82,77,-0.746307856988978],[127,82,78,-0.7460016449400613],[127,82,79,-0.7456979291530952],[127,83,64,-0.7506581465355597],[127,83,65,-0.7503196228789749],[127,83,66,-0.7499835254799457],[127,83,67,-0.7496498602685986],[127,83,68,-0.7493186330806207],[127,83,69,-0.7489898496568264],[127,83,70,-0.7486635156427061],[127,83,71,-0.7483396365879829],[127,83,72,-0.7480182179461652],[127,83,73,-0.7476992650741149],[127,83,74,-0.7473827832315874],[127,83,75,-0.7470687775808007],[127,83,76,-0.7467572531859938],[127,83,77,-0.7464482150129851],[127,83,78,-0.7461416679287342],[127,83,79,-0.7458376167009],[127,84,64,-0.7508029862852406],[127,84,65,-0.7504641342947058],[127,84,66,-0.7501277080947503],[127,84,67,-0.7497937136198078],[127,84,68,-0.7494621567098937],[127,84,69,-0.7491330431101695],[127,84,70,-0.7488063784704942],[127,84,71,-0.7484821683449795],[127,84,72,-0.7481604181915423],[127,84,73,-0.7478411333714737],[127,84,74,-0.7475243191489782],[127,84,75,-0.7472099806907437],[127,84,76,-0.746898123065499],[127,84,77,-0.7465887512435725],[127,84,78,-0.7462818700964542],[127,84,79,-0.7459774843963541],[127,85,64,-0.7509479910951273],[127,85,65,-0.750608811794914],[127,85,66,-0.7502720578146376],[127,85,67,-0.749937735093022],[127,85,68,-0.7496058494743931],[127,85,69,-0.7492764067082438],[127,85,70,-0.748949412448785],[127,85,71,-0.7486248722544999],[127,85,72,-0.7483027915876979],[127,85,73,-0.7479831758140831],[127,85,74,-0.7476660302022934],[127,85,75,-0.7473513599234706],[127,85,76,-0.7470391700508175],[127,85,77,-0.7467294655591574],[127,85,78,-0.7464222513244956],[127,85,79,-0.7461175321235775],[127,86,64,-0.7510931608034837],[127,86,65,-0.7507536552208496],[127,86,66,-0.7504165744838338],[127,86,67,-0.7500819245354334],[127,86,68,-0.7497497112242677],[127,86,69,-0.749419940304144],[127,86,70,-0.7490926174336081],[127,86,71,-0.7487677481754985],[127,86,72,-0.7484453379965011],[127,86,73,-0.7481253922667166],[127,86,74,-0.7478079162592],[127,86,75,-0.7474929151495313],[127,86,76,-0.7471803940153718],[127,86,77,-0.746870357836024],[127,86,78,-0.7465628114919931],[127,86,79,-0.7462577597645449],[127,87,64,-0.7512384952465746],[127,87,65,-0.7508986644117583],[127,87,66,-0.750561257944555],[127,87,67,-0.750226281792218],[127,87,68,-0.7498937418076432],[127,87,69,-0.7495636437489355],[127,87,70,-0.7492359932789584],[127,87,71,-0.7489107959648897],[127,87,72,-0.748588057277775],[127,87,73,-0.7482677825920953],[127,87,74,-0.7479499771853069],[127,87,75,-0.7476346462374119],[127,87,76,-0.7473217948305146],[127,87,77,-0.747011427948381],[127,87,78,-0.7467035504760011],[127,87,79,-0.7463981671991455],[127,88,64,-0.7513839942586503],[127,88,65,-0.7510438392048635],[127,88,66,-0.7507061080369887],[127,88,67,-0.7503708067065173],[127,88,68,-0.7500379410706051],[127,88,69,-0.7497075168916372],[127,88,70,-0.7493795398367784],[127,88,71,-0.7490540154775289],[127,88,72,-0.7487309492892775],[127,88,73,-0.7484103466508696],[127,88,74,-0.7480922128441467],[127,88,75,-0.7477765530535168],[127,88,76,-0.7474633723655113],[127,88,77,-0.7471526757683445],[127,88,78,-0.7468444681514751],[127,88,79,-0.746538754305164],[127,89,64,-0.7515296576719268],[127,89,65,-0.7511891794353496],[127,89,66,-0.7508511245992766],[127,89,67,-0.750515499119421],[127,89,68,-0.7501823088571803],[127,89,69,-0.7498515595792034],[127,89,70,-0.7495232569569396],[127,89,71,-0.7491974065661948],[127,89,72,-0.7488740138866846],[127,89,73,-0.7485530843016022],[127,89,74,-0.7482346230971579],[127,89,75,-0.7479186354621501],[127,89,76,-0.7476051264875214],[127,89,77,-0.7472941011659185],[127,89,78,-0.7469855643912536],[127,89,79,-0.7466795209582627],[127,90,64,-0.7516754853166453],[127,90,65,-0.7513346849364186],[127,90,66,-0.7509963074675726],[127,90,67,-0.7506603588700238],[127,90,68,-0.7503268450093954],[127,90,69,-0.7499957716565823],[127,90,70,-0.7496671444873015],[127,90,71,-0.7493409690816482],[127,90,72,-0.7490172509236477],[127,90,73,-0.7486959954008249],[127,90,74,-0.748377207803743],[127,90,75,-0.7480608933255741],[127,90,76,-0.7477470570616568],[127,90,77,-0.7474357040090541],[127,90,78,-0.7471268390661164],[127,90,79,-0.7468204670320391],[127,91,64,-0.7518214770210454],[127,91,65,-0.7514803555392655],[127,91,66,-0.7511416564760163],[127,91,67,-0.7508053857954009],[127,91,68,-0.7504715493672505],[127,91,69,-0.7501401529666892],[127,91,70,-0.7498112022736849],[127,91,71,-0.7494847028726046],[127,91,72,-0.7491606602517673],[127,91,73,-0.748839079803013],[127,91,74,-0.7485199668212417],[127,91,75,-0.7482033265039831],[127,91,76,-0.7478891639509554],[127,91,77,-0.7475774841636227],[127,91,78,-0.7472682920447578],[127,91,79,-0.746961592398],[127,92,64,-0.7519676326113898],[127,92,65,-0.7516261910731011],[127,92,66,-0.7512871714567575],[127,92,67,-0.7509505797306313],[127,92,68,-0.7506164217687437],[127,92,69,-0.7502847033504313],[127,92,70,-0.7499554301598957],[127,92,71,-0.7496286077857591],[127,92,72,-0.7493042417206177],[127,92,73,-0.7489823373606097],[127,92,74,-0.7486629000049554],[127,92,75,-0.7483459348555268],[127,92,76,-0.7480314470164052],[127,92,77,-0.7477194414934398],[127,92,78,-0.7474099231938106],[127,92,79,-0.7471028969255852],[127,93,64,-0.7521139519119379],[127,93,65,-0.7517721913651272],[127,93,66,-0.7514328522399304],[127,93,67,-0.7510959405087712],[127,93,68,-0.7507614620498443],[127,93,69,-0.7504294226466809],[127,93,70,-0.7500998279876993],[127,93,71,-0.74977268366576],[127,93,72,-0.7494479951777198],[127,93,73,-0.7491257679239989],[127,93,74,-0.7488060072081211],[127,93,75,-0.7484887182362845],[127,93,76,-0.7481739061169175],[127,93,77,-0.7478615758602389],[127,93,78,-0.7475517323778199],[127,93,79,-0.747244380482141],[127,94,64,-0.7522604347450037],[127,94,65,-0.7519183562405936],[127,94,66,-0.751578698653711],[127,94,67,-0.7512414679609133],[127,94,68,-0.7509066700445512],[127,94,69,-0.7505743106923335],[127,94,70,-0.7502443955968778],[127,94,71,-0.7499169303552667],[127,94,72,-0.7495919204686],[127,94,73,-0.7492693713415636],[127,94,74,-0.7489492882819686],[127,94,75,-0.7486316765003226],[127,94,76,-0.7483165411093855],[127,94,77,-0.7480038871237293],[127,94,78,-0.7476937194593009],[127,94,79,-0.7473860429329784],[127,95,64,-0.7524070809309387],[127,95,65,-0.7520646855227809],[127,95,66,-0.7517247105242995],[127,95,67,-0.7513871619161681],[127,95,68,-0.7510520455848753],[127,95,69,-0.7507193673222903],[127,95,70,-0.7503891328252136],[127,95,71,-0.750061347694932],[127,95,72,-0.749736017436772],[127,95,73,-0.7494131474596682],[127,95,74,-0.7490927430757033],[127,95,75,-0.7487748094996771],[127,95,76,-0.7484593518486656],[127,95,77,-0.7481463751415781],[127,95,78,-0.7478358842987209],[127,95,79,-0.7475278841413545],[127,96,64,-0.7525538902881133],[127,96,65,-0.7522111790329826],[127,96,66,-0.7518708876759026],[127,96,67,-0.7515330222016454],[127,96,68,-0.7511975885008204],[127,96,69,-0.7508645923694398],[127,96,70,-0.7505340395084694],[127,96,71,-0.7502059355233832],[127,96,72,-0.7498802859237179],[127,96,73,-0.7495570961226403],[127,96,74,-0.749236371436487],[127,96,75,-0.7489181170843353],[127,96,76,-0.7486023381875597],[127,96,77,-0.7482890397693917],[127,96,78,-0.747978226754481],[127,96,79,-0.7476699039684545],[127,97,64,-0.7527008626329755],[127,97,65,-0.752357836590563],[127,97,66,-0.7520172299307915],[127,97,67,-0.7516790486425141],[127,97,68,-0.751343298620443],[127,97,69,-0.7510099856647163],[127,97,70,-0.7506791154804476],[127,97,71,-0.7503506936772817],[127,97,72,-0.7500247257689476],[127,97,73,-0.749701217172828],[127,97,74,-0.7493801732094973],[127,97,75,-0.7490615991022933],[127,97,76,-0.7487454999768733],[127,97,77,-0.7484318808607742],[127,97,78,-0.7481207466829739],[127,97,79,-0.7478121022734499],[127,98,64,-0.7528479977800242],[127,98,65,-0.7525046580129309],[127,98,66,-0.7521637371092755],[127,98,67,-0.7518252410619741],[127,98,68,-0.7514891757698248],[127,98,69,-0.7511555470370732],[127,98,70,-0.7508243605729639],[127,98,71,-0.7504956219912949],[127,98,72,-0.7501693368099716],[127,98,73,-0.7498455104505748],[127,98,74,-0.7495241482379005],[127,98,75,-0.7492052553995302],[127,98,76,-0.7488888370653882],[127,98,77,-0.7485748982673006],[127,98,78,-0.7482634439385577],[127,98,79,-0.7479544789134716],[127,99,64,-0.7529952955418339],[127,99,65,-0.7526516431155641],[127,99,66,-0.7523104090297266],[127,99,67,-0.7519715992812821],[127,99,68,-0.7516352197730969],[127,99,69,-0.7513012763135072],[127,99,70,-0.7509697746158708],[127,99,71,-0.7506407202981219],[127,99,72,-0.750314118882325],[127,99,73,-0.7499899757942424],[127,99,74,-0.7496682963628752],[127,99,75,-0.749349085820032],[127,99,76,-0.7490323492998877],[127,99,77,-0.7487180918385414],[127,99,78,-0.7484063183735798],[127,99,79,-0.7480970337436342],[127,100,64,-0.7531427557290278],[127,100,65,-0.7527987917119829],[127,100,66,-0.7524572455085522],[127,100,67,-0.7521181231197238],[127,100,68,-0.7517814304524139],[127,100,69,-0.7514471733190319],[127,100,70,-0.7511153574370314],[127,100,71,-0.7507859884284658],[127,100,72,-0.7504590718195412],[127,100,73,-0.7501346130401852],[127,100,74,-0.7498126174235864],[127,100,75,-0.7494930902057646],[127,100,76,-0.7491760365251288],[127,100,77,-0.748861461422035],[127,100,78,-0.7485493698383502],[127,100,79,-0.7482397666170089],[127,101,64,-0.7532903781503368],[127,101,65,-0.7529461036138084],[127,101,66,-0.7526042463602547],[127,101,67,-0.752264812394673],[127,101,68,-0.7519278076280119],[127,101,69,-0.7515932378767362],[127,101,70,-0.7512611088623782],[127,101,71,-0.7509314262110925],[127,101,72,-0.7506041954532106],[127,101,73,-0.7502794220228076],[127,101,74,-0.7499571112572435],[127,101,75,-0.7496372683967325],[127,101,76,-0.7493198985839011],[127,101,77,-0.7490050068633464],[127,101,78,-0.7486925981811992],[127,101,79,-0.7483826773846816],[127,102,64,-0.7534381626125812],[127,102,65,-0.7530935786307446],[127,102,66,-0.7527514113974124],[127,102,67,-0.7524116669215734],[127,102,68,-0.7520743511181904],[127,102,69,-0.751739469807766],[127,102,70,-0.7514070287158938],[127,102,71,-0.7510770334728127],[127,102,72,-0.7507494896129614],[127,102,73,-0.7504244025745466],[127,102,74,-0.7501017776990822],[127,102,75,-0.7497816202309604],[127,102,76,-0.7494639353170087],[127,102,77,-0.7491487280060489],[127,102,78,-0.74883600324846],[127,102,79,-0.7485257658957356],[127,103,64,-0.753586108920652],[127,103,65,-0.7532412165705596],[127,103,66,-0.7528987404306617],[127,103,67,-0.7525586865139199],[127,103,68,-0.7522210607392938],[127,103,69,-0.7518858689313062],[127,103,70,-0.7515531168195938],[127,103,71,-0.7512228100384626],[127,103,72,-0.750894954126442],[127,103,73,-0.7505695545258524],[127,103,74,-0.7502466165823455],[127,103,75,-0.7499261455444743],[127,103,76,-0.7496081465632511],[127,103,77,-0.749292624691706],[127,103,78,-0.7489795848844496],[127,103,79,-0.7486690319972313],[127,104,64,-0.7537342168775704],[127,104,65,-0.7533890172391453],[127,104,66,-0.7530462332687556],[127,104,67,-0.752705870983318],[127,104,68,-0.7523679363057706],[127,104,69,-0.7520324350646385],[127,104,70,-0.7516993729935844],[127,104,71,-0.7513687557309638],[127,104,72,-0.7510405888193794],[127,104,73,-0.7507148777052484],[127,104,74,-0.750391627738343],[127,104,75,-0.7500708441713607],[127,104,76,-0.749752532159482],[127,104,77,-0.7494366967599286],[127,104,78,-0.7491233429315273],[127,104,79,-0.7488124755342666],[127,105,64,-0.7538824862844604],[127,105,65,-0.7535369804404898],[127,105,66,-0.7531938897185371],[127,105,67,-0.7528532201394562],[127,105,68,-0.7525149776301459],[127,105,69,-0.7521791680231155],[127,105,70,-0.7518457970560362],[127,105,71,-0.7515148703712957],[127,105,72,-0.751186393515552],[127,105,73,-0.7508603719393027],[127,105,74,-0.7505368109964234],[127,105,75,-0.7502157159437393],[127,105,76,-0.7498970919405822],[127,105,77,-0.7495809440483496],[127,105,78,-0.7492672772300675],[127,105,79,-0.748956096349948],[127,106,64,-0.7540309169405737],[127,106,65,-0.7536851059767019],[127,106,66,-0.7533417095849635],[127,106,67,-0.753000733790131],[127,106,68,-0.7526621845230461],[127,106,69,-0.7523260676201846],[127,106,70,-0.7519923888232083],[127,106,71,-0.7516611537785194],[127,106,72,-0.7513323680368145],[127,106,73,-0.7510060370526536],[127,106,74,-0.7506821661839992],[127,106,75,-0.7503607606917873],[127,106,76,-0.7500418257394843],[127,106,77,-0.7497253663926469],[127,106,78,-0.7494113876184844],[127,106,79,-0.7490998942854161],[127,107,64,-0.7541795086432623],[127,107,65,-0.7538333936479844],[127,107,66,-0.7534896926710791],[127,107,67,-0.7531484117412197],[127,107,68,-0.7528095567931721],[127,107,69,-0.7524731336673611],[127,107,70,-0.7521391481094212],[127,107,71,-0.7518076057697514],[127,107,72,-0.7514785122030698],[127,107,73,-0.7511518728679817],[127,107,74,-0.750827693126519],[127,107,75,-0.7505059782437118],[127,107,76,-0.7501867333871448],[127,107,77,-0.7498699636265169],[127,107,78,-0.7495556739332044],[127,107,79,-0.749243869179818],[127,108,64,-0.7543282611880384],[127,108,65,-0.7539818432526932],[127,108,66,-0.753637838778075],[127,108,67,-0.7532962537967389],[127,108,68,-0.7529570942473578],[127,108,69,-0.7526203659742869],[127,108,70,-0.7522860747271156],[127,108,71,-0.7519542261602223],[127,108,72,-0.7516248258323291],[127,108,73,-0.7512978792060692],[127,108,74,-0.7509733916475271],[127,108,75,-0.7506513684258097],[127,108,76,-0.7503318147126034],[127,108,77,-0.7500147355817329],[127,108,78,-0.7497001360087251],[127,108,79,-0.7493880208703657],[127,109,64,-0.7544771743685545],[127,109,65,-0.7541304545873184],[127,109,66,-0.7537861477052695],[127,109,67,-0.7534442597588271],[127,109,68,-0.7531047966905519],[127,109,69,-0.7527677643487121],[127,109,70,-0.752433168486834],[127,109,71,-0.7521010147632582],[127,109,72,-0.7517713087406925],[127,109,73,-0.7514440558857811],[127,109,74,-0.751119261568644],[127,109,75,-0.750796931062448],[127,109,76,-0.7504770695429641],[127,109,77,-0.7501596820881267],[127,109,78,-0.7498447736775964],[127,109,79,-0.7495323491923177],[127,110,64,-0.7546262479765864],[127,110,65,-0.7542792274464661],[127,110,66,-0.7539346192500908],[127,110,67,-0.7535924294277248],[127,110,68,-0.753252663925799],[127,110,69,-0.7529153285964763],[127,110,70,-0.7525804291972022],[127,110,71,-0.7522479713902614],[127,110,72,-0.7519179607423304],[127,110,73,-0.7515904027240465],[127,110,74,-0.7512653027095483],[127,110,75,-0.7509426659760454],[127,110,76,-0.7506224977033767],[127,110,77,-0.7503048029735693],[127,110,78,-0.7499895867704013],[127,110,79,-0.74967685397896],[127,111,64,-0.7547754818020911],[127,111,65,-0.7544281616229175],[127,111,66,-0.7540832532081347],[127,111,67,-0.7537407626018344],[127,111,68,-0.753400695754299],[127,111,69,-0.753063058521568],[127,111,70,-0.7527278566649882],[127,111,71,-0.7523950958507705],[127,111,72,-0.7520647816495425],[127,111,73,-0.7517369195359177],[127,111,74,-0.7514115148880354],[127,111,75,-0.7510885729871314],[127,111,76,-0.7507680990170954],[127,111,77,-0.7504500980640305],[127,111,78,-0.7501345751158159],[127,111,79,-0.7498215350616654],[127,112,64,-0.7549248756331803],[127,112,65,-0.7545772569076012],[127,112,66,-0.7542320493731387],[127,112,67,-0.7538892590776929],[127,112,68,-0.7535488919753797],[127,112,69,-0.7532109539260967],[127,112,70,-0.7528754506950746],[127,112,71,-0.7525423879524323],[127,112,72,-0.7522117712727309],[127,112,73,-0.7518836061345425],[127,112,74,-0.7515578979199903],[127,112,75,-0.7512346519143186],[127,112,76,-0.7509138733054515],[127,112,77,-0.7505955671835509],[127,112,78,-0.7502797385405812],[127,112,79,-0.7499663922698653],[127,113,64,-0.7550744292561451],[127,113,65,-0.7547265130896186],[127,113,66,-0.7543810075370057],[127,113,67,-0.7540379186499961],[127,113,68,-0.753697252386521],[127,113,69,-0.7533590146103182],[127,113,70,-0.7530232110904835],[127,113,71,-0.7526898475010264],[127,113,72,-0.752358929420424],[127,113,73,-0.7520304623311894],[127,113,74,-0.7517044516194118],[127,113,75,-0.7513809025743277],[127,113,76,-0.7510598203878778],[127,113,77,-0.7507412101542669],[127,113,78,-0.7504250768695271],[127,113,79,-0.7501114254310746],[127,114,64,-0.7552241424554282],[127,114,65,-0.754875929956216],[127,114,66,-0.7545301274897767],[127,114,67,-0.7541867411115716],[127,114,68,-0.7538457767833281],[127,114,69,-0.7535072403726062],[127,114,70,-0.7531711376523489],[127,114,71,-0.7528374743004382],[127,114,72,-0.7525062558992494],[127,114,73,-0.7521774879352189],[127,114,74,-0.7518511757983852],[127,114,75,-0.7515273247819589],[127,114,76,-0.7512059400818811],[127,114,77,-0.7508870267963822],[127,114,78,-0.7505705899255455],[127,114,79,-0.7502566343708641],[127,115,64,-0.7553740150136834],[127,115,65,-0.755025507292844],[127,115,66,-0.7546794090196908],[127,115,67,-0.7543357262534378],[127,115,68,-0.7539944649595905],[127,115,69,-0.7536556310095125],[127,115,70,-0.7533192301799759],[127,115,71,-0.7529852681527176],[127,115,72,-0.7526537505139927],[127,115,73,-0.752324682754144],[127,115,74,-0.7519980702671413],[127,115,75,-0.7516739183501524],[127,115,76,-0.7513522322031015],[127,115,77,-0.751033016928228],[127,115,78,-0.7507162775296491],[127,115,79,-0.750402018912919],[127,116,64,-0.7555240467117571],[127,116,65,-0.7551752448831389],[127,116,66,-0.7548288519131656],[127,116,67,-0.7544848738647854],[127,116,68,-0.7541433167072631],[127,116,69,-0.7538041863157476],[127,116,70,-0.7534674884708222],[127,116,71,-0.7531332288580601],[127,116,72,-0.7528014130675793],[127,116,73,-0.7524720465936103],[127,116,74,-0.7521451348340374],[127,116,75,-0.7518206830899684],[127,116,76,-0.7514986965652932],[127,116,77,-0.7511791803662429],[127,116,78,-0.7508621395009528],[127,116,79,-0.750547578879021],[127,117,64,-0.7556742373286693],[127,117,65,-0.7553251425089038],[127,117,66,-0.754978455954779],[127,117,67,-0.7546341837329582],[127,117,68,-0.7542923318164474],[127,117,69,-0.7539529060841623],[127,117,70,-0.7536159123204786],[127,117,71,-0.7532813562147888],[127,117,72,-0.7529492433610547],[127,117,73,-0.7526195792573779],[127,117,74,-0.752292369305539],[127,117,75,-0.7519676188105685],[127,117,76,-0.7516453329803052],[127,117,77,-0.7513255169249548],[127,117,78,-0.7510081756566538],[127,117,79,-0.7506933140890277],[127,118,64,-0.7558245866416733],[127,118,65,-0.7554751999501682],[127,118,66,-0.7551282209273282],[127,118,67,-0.7547836556435129],[127,118,68,-0.754441510075451],[127,118,69,-0.7541017901058062],[127,118,70,-0.7537645015227291],[127,118,71,-0.7534296500194121],[127,118,72,-0.7530972411936443],[127,118,73,-0.7527672805473797],[127,118,74,-0.7524397734862781],[127,118,75,-0.7521147253192753],[127,118,76,-0.7517921412581412],[127,118,77,-0.7514720264170397],[127,118,78,-0.7511543858120918],[127,118,79,-0.750839224360933],[127,119,64,-0.7559750944262362],[127,119,65,-0.7556254169851687],[127,119,66,-0.7552781466118109],[127,119,67,-0.7549332893802001],[127,119,68,-0.7545908512707684],[127,119,69,-0.75425083816991],[127,119,70,-0.7539132558695311],[127,119,71,-0.7535781100666067],[127,119,72,-0.7532454063627344],[127,119,73,-0.7529151502637036],[127,119,74,-0.752587347179035],[127,119,75,-0.7522620024215525],[127,119,76,-0.7519391212069403],[127,119,77,-0.7516187086533033],[127,119,78,-0.7513007697807292],[127,119,79,-0.7509853095108481],[127,120,64,-0.7561257604560212],[127,120,65,-0.7557757933903307],[127,120,66,-0.7554282327874069],[127,120,67,-0.7550830847249451],[127,120,68,-0.754740355187063],[127,120,69,-0.7544000500638656],[127,120,70,-0.7540621751509972],[127,120,71,-0.7537267361491968],[127,120,72,-0.7533937386638531],[127,120,73,-0.7530631882045721],[127,120,74,-0.7527350901847185],[127,120,75,-0.7524094499209867],[127,120,76,-0.7520862726329578],[127,120,77,-0.7517655634426601],[127,120,78,-0.7514473273741323],[127,120,79,-0.7511315693529811],[127,121,64,-0.7562765845029458],[127,121,65,-0.7559263289403277],[127,121,66,-0.7555784792315366],[127,121,67,-0.7552330414579078],[127,121,68,-0.7548900216072248],[127,121,69,-0.7545494255732857],[127,121,70,-0.7542112591554542],[127,121,71,-0.7538755280582151],[127,121,72,-0.7535422378907295],[127,121,73,-0.7532113941664029],[127,121,74,-0.7528830023024263],[127,121,75,-0.7525570676193465],[127,121,76,-0.7522335953406245],[127,121,77,-0.7519125905921953],[127,121,78,-0.7515940584020304],[127,121,79,-0.7512780036996977],[127,122,64,-0.7564275663371554],[127,122,65,-0.7560770234080536],[127,122,66,-0.7557288857198347],[127,122,67,-0.7553831593574546],[127,122,68,-0.7550398503123448],[127,122,69,-0.7546989644819769],[127,122,70,-0.7543605076694155],[127,122,71,-0.7540244855828737],[127,122,72,-0.7536909038352664],[127,122,73,-0.7533597679437809],[127,122,74,-0.7530310833294163],[127,122,75,-0.7527048553165546],[127,122,76,-0.7523810891325192],[127,122,77,-0.7520597899071344],[127,122,78,-0.7517409626722884],[127,122,79,-0.7514246123614923],[127,123,64,-0.756578705727047],[127,123,65,-0.7562278765646472],[127,123,66,-0.7558794520261733],[127,123,67,-0.7555334382001837],[127,123,68,-0.7551898410817377],[127,123,69,-0.7548486665719629],[127,123,70,-0.7545099204776061],[127,123,71,-0.7541736085105893],[127,123,72,-0.7538397362875645],[127,123,73,-0.7535083093294819],[127,123,74,-0.7531793330611313],[127,123,75,-0.7528528128107121],[127,123,76,-0.752528753809393],[127,123,77,-0.7522071611908699],[127,123,78,-0.7518880399909308],[127,123,79,-0.7515713951470131],[127,124,64,-0.7567300024392426],[127,124,65,-0.7563788881794649],[127,124,66,-0.7560301779226359],[127,124,67,-0.7556838777608964],[127,124,68,-0.7553399936929157],[127,124,69,-0.7549985316234579],[127,124,70,-0.7546594973629337],[127,124,71,-0.754322896626956],[127,124,72,-0.7539887350358946],[127,124,73,-0.7536570181144456],[127,124,74,-0.7533277512911711],[127,124,75,-0.753000939898071],[127,124,76,-0.7526765891701408],[127,124,77,-0.7523547042449317],[127,124,78,-0.7520352901621135],[127,124,79,-0.7517183518630338],[127,125,64,-0.7568814562386474],[127,125,65,-0.7565300580201398],[127,125,66,-0.7561810631795752],[127,125,67,-0.7558344778126577],[127,125,68,-0.7554903079216471],[127,125,69,-0.7551485594149256],[127,125,70,-0.7548092381065491],[127,125,71,-0.754472349715803],[127,125,72,-0.7541378998667572],[127,125,73,-0.7538058940878347],[127,125,74,-0.7534763378113528],[127,125,75,-0.7531492363730934],[127,125,76,-0.7528245950118619],[127,125,77,-0.752502418869047],[127,125,78,-0.7521827129881838],[127,125,79,-0.7518654823145127],[127,126,64,-0.7570330668884319],[127,126,65,-0.7566813858525635],[127,126,66,-0.7563321075655955],[127,126,67,-0.7559852381267763],[127,126,68,-0.7556407835419375],[127,126,69,-0.7552987497230604],[127,126,70,-0.7549591424878273],[127,126,71,-0.7546219675591778],[127,126,72,-0.7542872305648634],[127,126,73,-0.7539549370370161],[127,126,74,-0.7536250924116903],[127,126,75,-0.7532977020284322],[127,126,76,-0.7529727711298398],[127,126,77,-0.7526503048611218],[127,126,78,-0.7523303082696613],[127,126,79,-0.7520127863045741],[127,127,64,-0.7571848341500126],[127,127,65,-0.756832871440866],[127,127,66,-0.7564833108475327],[127,127,67,-0.7561361584727863],[127,127,68,-0.7557914203260109],[127,127,69,-0.7554491023227679],[127,127,70,-0.7551092102843475],[127,127,71,-0.7547717499373251],[127,127,72,-0.7544367269131151],[127,127,73,-0.7541041467475409],[127,127,74,-0.7537740148803755],[127,127,75,-0.7534463366549122],[127,127,76,-0.7531211173175234],[127,127,77,-0.7527983620172205],[127,127,78,-0.7524780758052172],[127,127,79,-0.7521602636344885],[127,128,64,-0.7573367577831115],[127,128,65,-0.7569845145474762],[127,128,66,-0.7566346727905147],[127,128,67,-0.7562872386185061],[127,128,68,-0.7559422180443686],[127,128,69,-0.7555996169872246],[127,128,70,-0.7552594412719533],[127,128,71,-0.7549216966287473],[127,128,72,-0.7545863886926658],[127,128,73,-0.754253523003205],[127,128,74,-0.7539231050038387],[127,128,75,-0.7535951400415892],[127,128,76,-0.7532696333665861],[127,128,77,-0.7529465901316258],[127,128,78,-0.7526260153917356],[127,128,79,-0.752307914103732],[127,129,64,-0.7574888375457285],[127,129,65,-0.7571363149330936],[127,129,66,-0.7567861931579326],[127,129,67,-0.7564384783300115],[127,129,68,-0.7560931764657624],[127,129,69,-0.7557502934878502],[127,129,70,-0.7554098352247248],[127,129,71,-0.7550718074101765],[127,129,72,-0.7547362156828914],[127,129,73,-0.7544030655860202],[127,129,74,-0.7540723625667196],[127,129,75,-0.7537441119757227],[127,129,76,-0.7534183190668984],[127,129,77,-0.753094988996811],[127,129,78,-0.752774126824284],[127,129,79,-0.7524557375099586],[127,130,64,-0.7576410731941657],[127,130,65,-0.757288272356713],[127,130,66,-0.7569378717114665],[127,130,67,-0.7565898773716592],[127,130,68,-0.7562442953572184],[127,130,69,-0.7559011315943325],[127,130,70,-0.7555603919150027],[127,130,71,-0.755222082056599],[127,130,72,-0.7548862076614156],[127,130,73,-0.7545527742762395],[127,130,74,-0.7542217873518918],[127,130,75,-0.7538932522427991],[127,130,76,-0.753567174206552],[127,130,77,-0.7532435584034646],[127,130,78,-0.7529224098961392],[127,130,79,-0.7526037336490244],[127,131,64,-0.7577934644830003],[127,131,65,-0.757440386575597],[127,131,66,-0.7570897082110565],[127,131,67,-0.7567414355060594],[127,131,68,-0.7563955744840091],[127,131,69,-0.7560521310745982],[127,131,70,-0.7557111111133604],[127,131,71,-0.7553725203412268],[127,131,72,-0.7550363644040811],[127,131,73,-0.7547026488523281],[127,131,74,-0.7543713791404355],[127,131,75,-0.7540425606265051],[127,131,76,-0.7537161985718311],[127,131,77,-0.7533922981404606],[127,131,78,-0.753070864398757],[127,131,79,-0.7527519023149591],[127,132,64,-0.7579460111651432],[127,132,65,-0.7575926573453353],[127,132,66,-0.7572417024149631],[127,132,67,-0.756893152494136],[127,132,68,-0.7565470136097138],[127,132,69,-0.7562032916948741],[127,132,70,-0.7558619925886645],[127,132,71,-0.7555231220355583],[127,132,72,-0.7551866856850098],[127,132,73,-0.7548526890910239],[127,132,74,-0.7545211377116963],[127,132,75,-0.754192036908786],[127,132,76,-0.7538653919472734],[127,132,77,-0.7535412079949202],[127,132,78,-0.7532194901218339],[127,132,79,-0.7529002433000261],[127,133,64,-0.7580987129918207],[127,133,65,-0.7577450844198255],[127,133,66,-0.7573938540797481],[127,133,67,-0.7570450280951064],[127,133,68,-0.7566986124961982],[127,133,69,-0.7563546132196667],[127,133,70,-0.7560130361080543],[127,133,71,-0.7556738869093578],[127,133,72,-0.7553371712765837],[127,133,73,-0.7550028947673179],[127,133,74,-0.7546710628432666],[127,133,75,-0.7543416808698276],[127,133,76,-0.7540147541156494],[127,133,77,-0.7536902877521912],[127,133,78,-0.7533682868532866],[127,133,79,-0.753048756394703],[127,134,64,-0.7582515697125556],[127,134,65,-0.7578976675512541],[127,134,66,-0.7575461629602543],[127,134,67,-0.7571970620664632],[127,134,68,-0.7568503709035961],[127,134,69,-0.7565060954117435],[127,134,70,-0.7561642414369233],[127,134,71,-0.7558248147306368],[127,134,72,-0.7554878209494245],[127,134,73,-0.7551532656544346],[127,134,74,-0.7548211543109653],[127,134,75,-0.7544914922880355],[127,134,76,-0.7541642848579435],[127,134,77,-0.7538395371958283],[127,134,78,-0.7535172543792323],[127,134,79,-0.7531974413876614],[127,135,64,-0.7584045810752256],[127,135,65,-0.7580504064901563],[127,135,66,-0.7576986288096667],[127,135,67,-0.7573492541640328],[127,135,68,-0.7570022885903688],[127,135,69,-0.7566577380321925],[127,135,70,-0.7563156083389786],[127,135,71,-0.7559759052657141],[127,135,72,-0.7556386344724544],[127,135,73,-0.7553038015238921],[127,135,74,-0.7549714118888984],[127,135,75,-0.7546414709400953],[127,135,76,-0.7543139839534135],[127,135,77,-0.7539889561076536],[127,135,78,-0.7536663924840492],[127,135,79,-0.7533462980658272],[127,136,64,-0.7585577468260365],[127,136,65,-0.7582033009853882],[127,136,66,-0.7578512513794834],[127,136,67,-0.7575016041419487],[127,136,68,-0.7571543653132768],[127,136,69,-0.7568095408403943],[127,136,70,-0.756467136576213],[127,136,71,-0.7561271582791869],[127,136,72,-0.7557896116128676],[127,136,73,-0.7554545021454732],[127,136,74,-0.7551218353494302],[127,136,75,-0.7547916166009451],[127,136,76,-0.7544638511795628],[127,136,77,-0.7541385442677279],[127,136,78,-0.7538157009503477],[127,136,79,-0.7534953262143522],[127,137,64,-0.758711066709547],[127,137,65,-0.7583563507841506],[127,137,66,-0.758004030419541],[127,137,67,-0.7576541117526749],[127,137,68,-0.757306600827405],[127,137,69,-0.7569615035940463],[127,137,70,-0.7566188259089294],[127,137,71,-0.7562785735339559],[127,137,72,-0.7559407521361546],[127,137,73,-0.755605367287251],[127,137,74,-0.7552724244632081],[127,137,75,-0.7549419290437988],[127,137,76,-0.7546138863121643],[127,137,77,-0.7542883014543751],[127,137,78,-0.7539651795589946],[127,137,79,-0.753644525616639],[127,138,64,-0.7588645404686395],[127,138,65,-0.7585095556319618],[127,138,66,-0.7581569656779859],[127,138,67,-0.7578067767469789],[127,138,68,-0.7574589948861339],[127,138,69,-0.7571136260491351],[127,138,70,-0.7567706760957124],[127,138,71,-0.7564301507911961],[127,138,72,-0.7560920558060741],[127,138,73,-0.7557563967155595],[127,138,74,-0.7554231789991339],[127,138,75,-0.7550924080401182],[127,138,76,-0.7547640891252321],[127,138,77,-0.7544382274441537],[127,138,78,-0.7541148280890851],[127,138,79,-0.7537938960543108],[127,139,64,-0.759018167844581],[127,139,65,-0.7586629152727167],[127,139,66,-0.758310056901334],[127,139,67,-0.7579595988739907],[127,139,68,-0.7576115472411995],[127,139,69,-0.7572659079599957],[127,139,70,-0.7569226868934886],[127,139,71,-0.7565818898104185],[127,139,72,-0.7562435223847126],[127,139,73,-0.7559075901950542],[127,139,74,-0.7555740987244242],[127,139,75,-0.7552430533596735],[127,139,76,-0.7549144593910816],[127,139,77,-0.7545883220119172],[127,139,78,-0.7542646463180026],[127,139,79,-0.7539434373072732],[127,140,64,-0.7591719485770031],[127,140,65,-0.7588164294486687],[127,140,66,-0.7584633038344524],[127,140,67,-0.7581125778811832],[127,140,68,-0.7577642576426749],[127,140,69,-0.7574183490792927],[127,140,70,-0.7570748580575071],[127,140,71,-0.7567337903494487],[127,140,72,-0.7563951516324657],[127,140,73,-0.7560589474886923],[127,140,74,-0.7557251834045906],[127,140,75,-0.7553938647705227],[127,140,76,-0.7550649968803103],[127,140,77,-0.7547385849307939],[127,140,78,-0.7544146340213991],[127,140,79,-0.754093149153694],[127,141,64,-0.7593258824038833],[127,141,65,-0.7589700979004086],[127,141,66,-0.7586167062205389],[127,141,67,-0.7582657135143541],[127,141,68,-0.7579171258389489],[127,141,69,-0.7575709491580002],[127,141,70,-0.757227189341319],[127,141,71,-0.7568858521644083],[127,141,72,-0.7565469433080174],[127,141,73,-0.756210468357713],[127,141,74,-0.7558764328034195],[127,141,75,-0.7555448420389925],[127,141,76,-0.7552157013617767],[127,141,77,-0.7548890159721674],[127,141,78,-0.7545647909731745],[127,141,79,-0.7542430313699824],[127,142,64,-0.7594799690616045],[127,142,65,-0.759123920366926],[127,142,66,-0.7587702638011824],[127,142,67,-0.7584190055176843],[127,142,68,-0.758070151576788],[127,142,69,-0.757723707945462],[127,142,70,-0.7573796804968392],[127,142,71,-0.7570380750097747],[127,142,72,-0.756698897168401],[127,142,73,-0.7563621525616976],[127,142,74,-0.7560278466830334],[127,142,75,-0.755695984929738],[127,142,76,-0.7553665726026619],[127,142,77,-0.7550396149057363],[127,142,78,-0.7547151169455384],[127,142,79,-0.7543930837308501],[127,143,64,-0.7596342082849267],[127,143,65,-0.7592778965855803],[127,143,66,-0.7589239763163342],[127,143,67,-0.7585724536337106],[127,143,68,-0.758223334601307],[127,143,69,-0.7578766251893636],[127,143,70,-0.7575323312743162],[127,143,71,-0.7571904586383529],[127,143,72,-0.7568510129689698],[127,143,73,-0.7565139998585411],[127,143,74,-0.7561794248038607],[127,143,75,-0.7558472932057145],[127,143,76,-0.75551761036844],[127,143,77,-0.7551903814994864],[127,143,78,-0.7548656117089797],[127,143,79,-0.7545433060092827],[127,144,64,-0.7597885998070119],[127,144,65,-0.7594320262921256],[127,144,66,-0.7590778435043339],[127,144,67,-0.75872605760335],[127,144,68,-0.7583766746559932],[127,144,69,-0.7580297006357563],[127,144,70,-0.7576851414223578],[127,144,71,-0.7573430028012997],[127,144,72,-0.7570032904634229],[127,144,73,-0.7566660100044768],[127,144,74,-0.756331166924662],[127,144,75,-0.7559987666282022],[127,144,76,-0.7556688144229031],[127,144,77,-0.7553413155197142],[127,144,78,-0.7550162750322926],[127,144,79,-0.7546936979765633],[127,145,64,-0.7599431433593956],[127,145,65,-0.7595863092206822],[127,145,66,-0.7592318651018791],[127,145,67,-0.7588798171658713],[127,145,68,-0.7585301714826793],[127,145,69,-0.7581829340290288],[127,145,70,-0.757838110687902],[127,145,71,-0.7574957072480952],[127,145,72,-0.7571557294037748],[127,145,73,-0.756818182754047],[127,145,74,-0.7564830728025],[127,145,75,-0.7561504049567763],[127,145,76,-0.7558201845281323],[127,145,77,-0.7554924167309988],[127,145,78,-0.7551671066825463],[127,145,79,-0.7548442594022442],[127,146,64,-0.7600978386720476],[127,146,65,-0.7597407451037967],[127,146,66,-0.7593860408440872],[127,146,67,-0.7590337320589547],[127,146,68,-0.7586838248216021],[127,146,69,-0.7583363251119677],[127,146,70,-0.7579912388162777],[127,146,71,-0.7576485717266035],[127,146,72,-0.7573083295404178],[127,146,73,-0.7569705178601642],[127,146,74,-0.7566351421928004],[127,146,75,-0.7563022079493689],[127,146,76,-0.755971720444558],[127,146,77,-0.7556436848962619],[127,146,78,-0.7553181064251463],[127,146,79,-0.7549949900542074],[127,147,64,-0.7602526854733511],[127,147,65,-0.759895333672423],[127,147,66,-0.7595403704644752],[127,147,67,-0.7591878020186739],[127,147,68,-0.7588376344113843],[127,147,69,-0.7584898736257376],[127,147,70,-0.7581445255511845],[127,147,71,-0.7578015959830521],[127,147,72,-0.7574610906221003],[127,147,73,-0.7571230150740912],[127,147,74,-0.7567873748493323],[127,147,75,-0.7564541753622481],[127,147,76,-0.7561234219309403],[127,147,77,-0.7557951197767483],[127,147,78,-0.7554692740238146],[127,147,79,-0.7551458896986446],[127,148,64,-0.7604076834900845],[127,148,65,-0.7600500746559017],[127,148,66,-0.7596948536949393],[127,148,67,-0.759342026779474],[127,148,68,-0.758991599989013],[127,148,69,-0.7586435793098609],[127,148,70,-0.7582979706346731],[127,148,71,-0.7579547797620129],[127,148,72,-0.7576140123959079],[127,148,73,-0.7572756741454199],[127,148,74,-0.7569397705241874],[127,148,75,-0.7566063069499982],[127,148,76,-0.7562752887443486],[127,148,77,-0.755946721132005],[127,148,78,-0.7556206092405687],[127,148,79,-0.7552969581000362],[127,149,64,-0.7605628324474805],[127,149,65,-0.7602049677820211],[127,149,66,-0.7598494902658164],[127,149,67,-0.7594964060742337],[127,149,68,-0.7591457212899019],[127,149,69,-0.758797441902279],[127,149,70,-0.7584515738072056],[127,149,71,-0.7581081228064618],[127,149,72,-0.7577670946073236],[127,149,73,-0.7574284948221333],[127,149,74,-0.7570923289678415],[127,149,75,-0.7567586024655802],[127,149,76,-0.7564273206402223],[127,149,77,-0.7560984887199425],[127,149,78,-0.7557721118357827],[127,149,79,-0.7554481950212126],[127,150,64,-0.7607181320692074],[127,150,65,-0.7603600127769974],[127,150,66,-0.7600042799058639],[127,150,67,-0.7596509396342445],[127,150,68,-0.75929999804787],[127,150,69,-0.7589514611393319],[127,150,70,-0.758605334807636],[127,150,71,-0.7582616248577596],[127,150,72,-0.7579203370002081],[127,150,73,-0.7575814768505846],[127,150,74,-0.7572450499291336],[127,150,75,-0.7569110616603119],[127,150,76,-0.7565795173723505],[127,150,77,-0.756250422296814],[127,150,78,-0.7559237815681673],[127,150,79,-0.7555996002233344],[127,151,64,-0.7608735820773487],[127,151,65,-0.7605152093654542],[127,151,66,-0.7601592223422394],[127,151,67,-0.7598056271891913],[127,151,68,-0.7594544299951225],[127,151,69,-0.7591056367557381],[127,151,70,-0.7587592533731893],[127,151,71,-0.7584152856556313],[127,151,72,-0.758073739316779],[127,151,73,-0.7577346199754778],[127,151,74,-0.757397933155246],[127,151,75,-0.7570636842838475],[127,151,76,-0.7567318786928521],[127,151,77,-0.7564025216171963],[127,151,78,-0.7560756181947489],[127,151,79,-0.7557511734658711],[127,152,64,-0.7610291821924635],[127,152,65,-0.7606705572704845],[127,152,66,-0.760314317300562],[127,152,67,-0.759960468467213],[127,152,68,-0.7596090168623112],[127,152,69,-0.7592599684846557],[127,152,70,-0.7589133292395233],[127,152,71,-0.758569104938227],[127,152,72,-0.7582273012976725],[127,152,73,-0.7578879239399273],[127,152,74,-0.7575509783917653],[127,152,75,-0.7572164700842384],[127,152,76,-0.7568844043522364],[127,152,77,-0.7565547864340489],[127,152,78,-0.756227621470931],[127,152,79,-0.7559029145066625],[127,153,64,-0.7611849321335586],[127,153,65,-0.76082605621362],[127,153,66,-0.7604695645048827],[127,153,67,-0.7601154631948728],[127,153,68,-0.7597637583785055],[127,153,69,-0.759414456057653],[127,153,70,-0.7590675621406986],[127,153,71,-0.7587230824420932],[127,153,72,-0.7583810226819132],[127,153,73,-0.75804138848543],[127,153,74,-0.7577041853826535],[127,153,75,-0.7573694188079041],[127,153,76,-0.7570370940993736],[127,153,77,-0.7567072164986863],[127,153,78,-0.7563797911504646],[127,153,79,-0.7560548231018892],[127,154,64,-0.7613408316181124],[127,154,65,-0.7609817059148574],[127,154,66,-0.7606249636777098],[127,154,67,-0.7602706110971843],[127,154,68,-0.7599186542712171],[127,154,69,-0.7595690992047339],[127,154,70,-0.7592219518092038],[127,154,71,-0.7588772179021968],[127,154,72,-0.7585349032069402],[127,154,73,-0.7581950133518894],[127,154,74,-0.7578575538702715],[127,154,75,-0.7575225301996569],[127,154,76,-0.7571899476815201],[127,154,77,-0.7568598115608016],[127,154,78,-0.756532126985473],[127,154,79,-0.7562068990060975],[127,155,64,-0.7614968803620463],[127,155,65,-0.761137506092629],[127,155,66,-0.7607805145399799],[127,155,67,-0.7604259118975817],[127,155,68,-0.7600737042663714],[127,155,69,-0.7597238976543081],[127,155,70,-0.7593764979759269],[127,155,71,-0.7590315110518966],[127,155,72,-0.7586889426085763],[127,155,73,-0.7583487982775863],[127,155,74,-0.7580110835953513],[127,155,75,-0.7576758040026725],[127,155,76,-0.7573429648442889],[127,155,77,-0.7570125713684379],[127,155,78,-0.7566846287264224],[127,155,79,-0.7563591419721697],[127,156,64,-0.7616530780797854],[127,156,65,-0.761293456463863],[127,156,66,-0.760936216811118],[127,156,67,-0.7605813653179805],[127,156,68,-0.7602289080883677],[127,156,69,-0.7598788511332522],[127,156,70,-0.759531200370215],[127,156,71,-0.7591859616230039],[127,156,72,-0.7588431406210904],[127,156,73,-0.7585027429992399],[127,156,74,-0.7581647742970558],[127,156,75,-0.7578292399585511],[127,156,76,-0.75749614533171],[127,156,77,-0.7571654956680488],[127,156,78,-0.7568372961221828],[127,156,79,-0.7565115517513851],[127,157,64,-0.7618094244842388],[127,157,65,-0.7614495567439645],[127,157,66,-0.7610920702090183],[127,157,67,-0.7607369710787575],[127,157,68,-0.7603842654600594],[127,157,69,-0.7600339593668896],[127,157,70,-0.7596860587198548],[127,157,71,-0.7593405693457624],[127,157,72,-0.7589974969771762],[127,157,73,-0.7586568472519877],[127,157,74,-0.7583186257129592],[127,157,75,-0.7579828378072967],[127,157,76,-0.7576494888862108],[127,157,77,-0.7573185842044781],[127,157,78,-0.7569901289200073],[127,157,79,-0.7566641280933997],[127,158,64,-0.7619659192867794],[127,158,65,-0.7616058066467941],[127,158,66,-0.7612480744500235],[127,158,67,-0.7608927288987313],[127,158,68,-0.7605397761027342],[127,158,69,-0.7601892220789702],[127,158,70,-0.7598410727510526],[127,158,71,-0.7594953339488277],[127,158,72,-0.7591520114079326],[127,158,73,-0.7588111107693647],[127,158,74,-0.7584726375790263],[127,158,75,-0.7581365972872973],[127,158,76,-0.7578029952485956],[127,158,77,-0.7574718367209393],[127,158,78,-0.7571431268655124],[127,158,79,-0.7568168707462254],[127,159,64,-0.7621225621973041],[127,159,65,-0.76176220588473],[127,159,66,-0.7614042292489861],[127,159,67,-0.761048638495222],[127,159,68,-0.7606954397361737],[127,159,69,-0.7603446389917315],[127,159,70,-0.7599962421884947],[127,159,71,-0.7596502551593288],[127,159,72,-0.7593066836429239],[127,159,73,-0.7589655332833646],[127,159,74,-0.7586268096296735],[127,159,75,-0.7582905181353852],[127,159,76,-0.7579566641581061],[127,159,77,-0.7576252529590768],[127,159,78,-0.757296289702738],[127,159,79,-0.7569697794562915],[127,160,64,-0.7622793529242059],[127,160,65,-0.7619187541686377],[127,160,66,-0.7615605343192385],[127,160,67,-0.7612046995840233],[127,160,68,-0.7608512560786259],[127,160,69,-0.7605002098258693],[127,160,70,-0.760151566755318],[127,160,71,-0.7598053327028376],[127,160,72,-0.7594615134101512],[127,160,73,-0.7591201145244104],[127,160,74,-0.7587811415977395],[127,160,75,-0.7584446000868081],[127,160,76,-0.7581104953523922],[127,160,77,-0.7577788326589361],[127,160,78,-0.7574496171741187],[127,160,79,-0.7571228539684144],[127,161,64,-0.7624362911743976],[127,161,65,-0.7620754512078961],[127,161,66,-0.7617169893726192],[127,161,67,-0.761360911879426],[127,161,68,-0.7610072248468288],[127,161,69,-0.7606559343005619],[127,161,70,-0.7603070461731358],[127,161,71,-0.759960566303395],[127,161,72,-0.7596165004360765],[127,161,73,-0.7592748542213794],[127,161,74,-0.7589356332145099],[127,161,75,-0.7585988428752535],[127,161,76,-0.7582644885675366],[127,161,77,-0.7579325755589887],[127,161,78,-0.7576031090205081],[127,161,79,-0.7572760940258232],[127,162,64,-0.7625933766532839],[127,162,65,-0.7622322967103672],[127,162,66,-0.7618735941194417],[127,162,67,-0.76151727509419],[127,162,68,-0.7611633457559815],[127,162,69,-0.760811812133442],[127,162,70,-0.760462680162007],[127,162,71,-0.760115955683481],[127,162,72,-0.759771644445594],[127,162,73,-0.7594297521015736],[127,162,74,-0.7590902842096878],[127,162,75,-0.7587532462328193],[127,162,76,-0.7584186435380258],[127,162,77,-0.7580864813961027],[127,162,78,-0.7577567649811492],[127,162,79,-0.7574294993701293],[127,163,64,-0.7627506090648206],[127,163,65,-0.762389290382458],[127,163,66,-0.7620303482685575],[127,163,67,-0.7616737889396046],[127,163,68,-0.7613196185198053],[127,163,69,-0.7609678430406565],[127,163,70,-0.7606184684404986],[127,163,71,-0.7602715005640753],[127,163,72,-0.7599269451620907],[127,163,73,-0.7595848078907802],[127,163,74,-0.759245094311455],[127,163,75,-0.758907809890075],[127,163,76,-0.7585729599968103],[127,163,77,-0.7582405499056034],[127,163,78,-0.7579105847937354],[127,163,79,-0.7575830697413877],[127,164,64,-0.7629079881114963],[127,164,65,-0.7625464319290993],[127,164,66,-0.7621872515273341],[127,164,67,-0.7618304531254679],[127,164,68,-0.7614760428505234],[127,164,69,-0.7611240267368469],[127,164,70,-0.760774410725664],[127,164,71,-0.7604272006646378],[127,164,72,-0.7600824023074257],[127,164,73,-0.7597400213132521],[127,164,74,-0.7594000632464513],[127,164,75,-0.759062533576041],[127,164,76,-0.7587274376752848],[127,164,77,-0.7583947808212532],[127,164,78,-0.7580645681943905],[127,164,79,-0.7577368048780768],[127,165,64,-0.7630655134943108],[127,165,65,-0.7627037210537262],[127,165,66,-0.762344303601636],[127,165,67,-0.7619872673600678],[127,165,68,-0.7616326184588399],[127,165,69,-0.7612803629351285],[127,165,70,-0.7609305067330236],[127,165,71,-0.7605830557030872],[127,165,72,-0.7602380156019106],[127,165,73,-0.7598953920916868],[127,165,74,-0.7595551907397537],[127,165,75,-0.7592174170181683],[127,165,76,-0.7588820763032673],[127,165,77,-0.7585491738752308],[127,165,78,-0.7582187149176474],[127,165,79,-0.7578907045170772],[127,166,64,-0.7632231849128368],[127,166,65,-0.7628611574583389],[127,166,66,-0.7625015041958845],[127,166,67,-0.7621442313502413],[127,166,68,-0.761789345054002],[127,166,69,-0.761436851347152],[127,166,70,-0.7610867561766254],[127,166,71,-0.7607390653958627],[127,166,72,-0.7603937847643696],[127,166,73,-0.7600509199472876],[127,166,74,-0.7597104765149386],[127,166,75,-0.759372459942399],[127,166,76,-0.7590368756090602],[127,166,77,-0.7587037287981921],[127,166,78,-0.7583730246965094],[127,166,79,-0.7580447683937329],[127,167,64,-0.7633810020651902],[127,167,65,-0.7630187408434732],[127,167,66,-0.7626588530130296],[127,167,67,-0.7623013448013464],[127,167,68,-0.7619462223437694],[127,167,69,-0.7615934916830732],[127,167,70,-0.7612431587690152],[127,167,71,-0.7608952294578945],[127,167,72,-0.7605497095121105],[127,167,73,-0.7602066045997338],[127,167,74,-0.7598659202940508],[127,167,75,-0.7595276620731374],[127,167,76,-0.7591918353194205],[127,167,77,-0.7588584453192411],[127,167,78,-0.7585274972624203],[127,167,79,-0.758198996241822],[127,168,64,-0.7635389646480553],[127,168,65,-0.7631764709082255],[127,168,66,-0.7628163497545742],[127,168,67,-0.7624586074172861],[127,168,68,-0.7621032500344401],[127,168,69,-0.7617502836515787],[127,168,70,-0.7613997142212621],[127,168,71,-0.761051547602628],[127,168,72,-0.7607057895609497],[127,168,73,-0.7603624457672062],[127,168,74,-0.7600215217976292],[127,168,75,-0.7596830231332744],[127,168,76,-0.7593469551595852],[127,168,77,-0.7590133231659539],[127,168,78,-0.7586821323452901],[127,168,79,-0.7583533877935809],[127,169,64,-0.7636970723566552],[127,169,65,-0.7633343473502234],[127,169,66,-0.7629739941205445],[127,169,67,-0.7626160189004798],[127,169,68,-0.7622604278308204],[127,169,69,-0.7619072269598557],[127,169,70,-0.7615564222429287],[127,169,71,-0.7612080195419954],[127,169,72,-0.7608620246251818],[127,169,73,-0.7605184431663569],[127,169,74,-0.7601772807446766],[127,169,75,-0.7598385428441579],[127,169,76,-0.7595022348532405],[127,169,77,-0.7591683620643498],[127,169,78,-0.7588369296734636],[127,169,79,-0.7585079427796746],[127,170,64,-0.7638553248848129],[127,170,65,-0.7634923698656869],[127,170,66,-0.7631317858095514],[127,170,67,-0.7627735789519237],[127,170,68,-0.7624177554362858],[127,170,69,-0.7620643213136536],[127,170,70,-0.7617132825421323],[127,170,71,-0.761364644986475],[127,170,72,-0.7610184144176417],[127,170,73,-0.7606745965123701],[127,170,74,-0.7603331968527216],[127,170,75,-0.7599942209256539],[127,170,76,-0.7596576741225842],[127,170,77,-0.7593235617389514],[127,170,78,-0.7589918889737832],[127,170,79,-0.7586626609292583],[127,171,64,-0.7640137219249312],[127,171,65,-0.7636505381494076],[127,171,66,-0.7632897245187702],[127,171,67,-0.7629312872711707],[127,171,68,-0.7625752325527612],[127,171,69,-0.7622215664172634],[127,171,70,-0.7618702948255236],[127,171,71,-0.7615214236450727],[127,171,72,-0.7611749586496833],[127,171,73,-0.7608309055189426],[127,171,74,-0.760489269837797],[127,171,75,-0.7601500570961259],[127,171,76,-0.7598132726883042],[127,171,77,-0.759478921912765],[127,171,78,-0.7591470099715669],[127,171,79,-0.7588175419699561],[127,172,64,-0.764172263167972],[127,172,65,-0.763808851894729],[127,172,66,-0.7634478099439197],[127,172,67,-0.7630891435563095],[127,172,68,-0.7627328588806996],[127,172,69,-0.7623789619734966],[127,172,70,-0.7620274587982676],[127,172,71,-0.7616783552252999],[127,172,72,-0.7613316570311592],[127,172,73,-0.760987369898262],[127,172,74,-0.7606454994144197],[127,172,75,-0.760306051072414],[127,172,76,-0.7599690302695576],[127,172,77,-0.759634442307259],[127,172,78,-0.7593022923905883],[127,172,79,-0.7589725856278402],[127,173,64,-0.7643309483035174],[127,173,65,-0.7639673107936065],[127,173,66,-0.7636060417793237],[127,173,67,-0.7632471475040266],[127,173,68,-0.7628906341191443],[127,173,69,-0.7625365076837474],[127,173,70,-0.7621847741641032],[127,173,71,-0.7618354394332353],[127,173,72,-0.761488509270482],[127,173,73,-0.7611439893610685],[127,173,74,-0.7608018852956521],[127,173,75,-0.7604622025698962],[127,173,76,-0.7601249465840328],[127,173,77,-0.7597901226424256],[127,173,78,-0.7594577359531376],[127,173,79,-0.7591277916274929],[127,174,64,-0.7644897770197406],[127,174,65,-0.7641259145365791],[127,174,66,-0.7637644197178813],[127,174,67,-0.7634052988095756],[127,174,68,-0.763048557965698],[127,174,69,-0.7626942032479623],[127,174,70,-0.7623422406253149],[127,174,71,-0.7619926759734953],[127,174,72,-0.761645515074594],[127,174,73,-0.7613007636166254],[127,174,74,-0.7609584271930716],[127,174,75,-0.7606185113024592],[127,174,76,-0.7602810213479189],[127,174,77,-0.7599459626367508],[127,174,78,-0.7596133403799915],[127,174,79,-0.7592831596919756],[127,175,64,-0.7646487490034302],[127,175,65,-0.7642846628127937],[127,175,66,-0.7639229434510922],[127,175,67,-0.7635635971668033],[127,175,68,-0.763206630116549],[127,175,69,-0.762852048364665],[127,175,70,-0.7624998578827566],[127,175,71,-0.7621500645492585],[127,175,72,-0.7618026741489929],[127,175,73,-0.7614576923727429],[127,175,74,-0.7611151248167964],[127,175,75,-0.760774976982522],[127,175,76,-0.7604372542759307],[127,175,77,-0.7601019620072393],[127,175,78,-0.7597691053904383],[127,175,79,-0.7594386895428543],[127,176,64,-0.7648078639399608],[127,176,65,-0.7644435553099754],[127,176,66,-0.7640816126690261],[127,176,67,-0.7637220422681188],[127,176,68,-0.7633648502664401],[127,176,69,-0.763010042730927],[127,176,70,-0.7626576256358226],[127,176,71,-0.762307604862236],[127,176,72,-0.7619599861977013],[127,176,73,-0.7616147753357494],[127,176,74,-0.7612719778754543],[127,176,75,-0.7609315993210072],[127,176,76,-0.7605936450812789],[127,176,77,-0.7602581204693839],[127,176,78,-0.7599250307022476],[127,176,79,-0.7595943809001693],[127,177,64,-0.7649671215133551],[127,177,65,-0.764602591714489],[127,177,66,-0.7642404270603848],[127,177,67,-0.7638806338045554],[127,177,68,-0.763523218108731],[127,177,69,-0.7631681860424286],[127,177,70,-0.7628155435825081],[127,177,71,-0.762465296612733],[127,177,72,-0.7621174509233278],[127,177,73,-0.7617720122105522],[127,177,74,-0.7614289860762453],[127,177,75,-0.7610883780274011],[127,177,76,-0.7607501934757311],[127,177,77,-0.7604144377372276],[127,177,78,-0.7600811160317319],[127,177,79,-0.7597502334824965],[127,178,64,-0.7651265214062619],[127,178,65,-0.7647617717113178],[127,178,66,-0.7643993863124812],[127,178,67,-0.7640393714657503],[127,178,68,-0.7636817333353773],[127,178,69,-0.7633264779934383],[127,178,70,-0.7629736114193896],[127,178,71,-0.7626231394996275],[127,178,72,-0.7622750680270475],[127,178,73,-0.7619294027006167],[127,178,74,-0.7615861491249201],[127,178,75,-0.7612453128097344],[127,178,76,-0.7609068991695916],[127,178,77,-0.7605709135233428],[127,178,78,-0.7602373610937254],[127,178,79,-0.7599062470069267],[127,179,64,-0.7652860632999365],[127,179,65,-0.7649210949840441],[127,179,66,-0.764558490111219],[127,179,67,-0.7641982549399231],[127,179,68,-0.7638403956369094],[127,179,69,-0.7634849182767921],[127,179,70,-0.7631318288416027],[127,179,71,-0.76278113322035],[127,179,72,-0.7624328372085795],[127,179,73,-0.762086946507946],[127,179,74,-0.7617434667257592],[127,179,75,-0.7614024033745596],[127,179,76,-0.7610637618716797],[127,179,77,-0.7607275475388093],[127,179,78,-0.7603937656015634],[127,179,79,-0.7600624211890441],[127,180,64,-0.7654457468743017],[127,180,65,-0.7650805612149099],[127,180,66,-0.7647177381411538],[127,180,67,-0.7643572839139379],[127,180,68,-0.7639992047024946],[127,180,69,-0.7636435065839551],[127,180,70,-0.7632901955429048],[127,180,71,-0.7629392774709447],[127,180,72,-0.7625907581662494],[127,180,73,-0.7622446433331412],[127,180,74,-0.7619009385816349],[127,180,75,-0.7615596494270136],[127,180,76,-0.7612207812893911],[127,180,77,-0.7608843394932769],[127,180,78,-0.7605503292671432],[127,180,79,-0.7602187557429886],[127,181,64,-0.7656055718079181],[127,181,65,-0.7652401700847866],[127,181,66,-0.7648771300854631],[127,181,67,-0.7645164580732727],[127,181,68,-0.7641581602199063],[127,181,69,-0.7638022426049906],[127,181,70,-0.7634487112156445],[127,181,71,-0.7630975719460394],[127,181,72,-0.7627488305969594],[127,181,73,-0.7624024928753732],[127,181,74,-0.7620585643939805],[127,181,75,-0.7617170506707872],[127,181,76,-0.7613779571286691],[127,181,77,-0.7610412890949346],[127,181,78,-0.7607070518008946],[127,181,79,-0.7603752503814246],[127,182,64,-0.7657655377780089],[127,182,65,-0.7653999212732008],[127,182,66,-0.7650366656259714],[127,182,67,-0.7646757771020454],[127,182,68,-0.7643172618755502],[127,182,69,-0.7639611260285868],[127,182,70,-0.7636073755507864],[127,182,71,-0.7632560163388711],[127,182,72,-0.7629070541962125],[127,182,73,-0.7625604948324058],[127,182,74,-0.7622163438628154],[127,182,75,-0.7618746068081503],[127,182,76,-0.7615352890940275],[127,182,77,-0.7611983960505357],[127,182,78,-0.7608639329118043],[127,182,79,-0.7605319048155668],[127,183,64,-0.7659256444604304],[127,183,65,-0.7655598144583039],[127,183,66,-0.7651963444431207],[127,183,67,-0.7648352406829826],[127,183,68,-0.7644765093544325],[127,183,69,-0.7641201565420248],[127,183,70,-0.7637661882378817],[127,183,71,-0.7634146103412545],[127,183,72,-0.7630654286580825],[127,183,73,-0.7627186489005666],[127,183,74,-0.7623742766867154],[127,183,75,-0.7620323175399213],[127,183,76,-0.7616927768885221],[127,183,77,-0.7613556600653673],[127,183,78,-0.7610209723073856],[127,183,79,-0.7606887187551487],[127,184,64,-0.7660858915297332],[127,184,65,-0.765719849316934],[127,184,66,-0.765356166216031],[127,184,67,-0.764994848497482],[127,184,68,-0.7646359023402233],[127,184,69,-0.7642793338312415],[127,184,70,-0.7639251489651289],[127,184,71,-0.763573353643645],[127,184,72,-0.763223953675276],[127,184,73,-0.7628769547748081],[127,184,74,-0.7625323625628739],[127,184,75,-0.7621901825655282],[127,184,76,-0.761850420213811],[127,184,77,-0.761513080843312],[127,184,78,-0.7611781696937401],[127,184,79,-0.7608456919084855],[127,185,64,-0.7662462786591411],[127,185,65,-0.7658800255245948],[127,185,66,-0.7655161306224807],[127,185,67,-0.765154600225591],[127,185,68,-0.7647954405152346],[127,185,69,-0.7644386575808084],[127,185,70,-0.7640842574193536],[127,185,71,-0.7637322459351171],[127,185,72,-0.7633826289391112],[127,185,73,-0.7630354121486869],[127,185,74,-0.7626906011870805],[127,185,75,-0.7623482015829892],[127,185,76,-0.7620082187701346],[127,185,77,-0.7616706580868275],[127,185,78,-0.7613355247755367],[127,185,79,-0.7610028239824523],[127,186,64,-0.766406805520531],[127,186,65,-0.7660403427554343],[127,186,66,-0.7656762373388847],[127,186,67,-0.7653144955459866],[127,186,68,-0.7649551235603996],[127,186,69,-0.7645981274739101],[127,186,70,-0.7642435132859868],[127,186,71,-0.7638912869033433],[127,186,72,-0.7635414541394969],[127,186,73,-0.7631940207143428],[127,186,74,-0.7628489922537005],[127,186,75,-0.7625063742888897],[127,186,76,-0.7621661722562934],[127,186,77,-0.7618283914969238],[127,186,78,-0.76149303725599],[127,186,79,-0.7611601146824626],[127,187,64,-0.7665674717844942],[127,187,65,-0.7662008006823076],[127,187,66,-0.7658364860403564],[127,187,67,-0.7654745341360357],[127,187,68,-0.7651149511553346],[127,187,69,-0.7647577431924065],[127,187,70,-0.7644029162491274],[127,187,71,-0.7640504762346558],[127,187,72,-0.7637004289649938],[127,187,73,-0.7633527801625599],[127,187,74,-0.7630075354557364],[127,187,75,-0.762664700378445],[127,187,76,-0.7623242803697107],[127,187,77,-0.7619862807732264],[127,187,78,-0.7616507068369226],[127,187,79,-0.7613175637125305],[127,188,64,-0.7667282771203153],[127,188,65,-0.7663613989767548],[127,188,66,-0.765996876400687],[127,188,67,-0.7656347156717758],[127,188,68,-0.7652749229783173],[127,188,69,-0.7649175044168119],[127,188,70,-0.7645624659915203],[127,188,71,-0.764209813614026],[127,188,72,-0.7638595531027941],[127,188,73,-0.7635116901827461],[127,188,74,-0.7631662304848067],[127,188,75,-0.7628231795454793],[127,188,76,-0.7624825428064105],[127,188,77,-0.7621443256139546],[127,188,78,-0.7618085332187434],[127,188,79,-0.7614751707752492],[127,189,64,-0.7668892211959514],[127,189,65,-0.766522137308981],[127,189,66,-0.7661574080923244],[127,189,67,-0.7657950398278922],[127,189,68,-0.7654350387062667],[127,189,69,-0.7650774108262732],[127,189,70,-0.7647221621945364],[127,189,71,-0.7643692987250424],[127,189,72,-0.7640188262386997],[127,189,73,-0.7636707504629117],[127,189,74,-0.7633250770311246],[127,189,75,-0.7629818114824038],[127,189,76,-0.7626409592609971],[127,189,77,-0.7623025257159002],[127,189,78,-0.7619665161004263],[127,189,79,-0.7616329355717699],[127,190,64,-0.7670503036780937],[127,190,65,-0.7666830153479169],[127,190,66,-0.7663180807864343],[127,190,67,-0.7659555062777814],[127,190,68,-0.7655952980148046],[127,190,69,-0.7652374620986325],[127,190,70,-0.7648820045382326],[127,190,71,-0.7645289312499733],[127,190,72,-0.7641782480571844],[127,190,73,-0.7638299606897309],[127,190,74,-0.7634840747835604],[127,190,75,-0.763140595880279],[127,190,76,-0.7627995294267161],[127,190,77,-0.762460880774489],[127,190,78,-0.7621246551795726],[127,190,79,-0.7617908578018635],[127,191,64,-0.767211524232138],[127,191,65,-0.7668440327611901],[127,191,66,-0.7664788941528711],[127,191,67,-0.7661161146935196],[127,191,68,-0.7657557005782247],[127,191,69,-0.7653976579103964],[127,191,70,-0.7650419927013237],[127,191,71,-0.7646887108697359],[127,191,72,-0.7643378182413635],[127,191,73,-0.763989320548512],[127,191,74,-0.76364322342961],[127,191,75,-0.7632995324287841],[127,191,76,-0.7629582529954249],[127,191,77,-0.7626193904837509],[127,191,78,-0.7622829501523795],[127,191,79,-0.7619489371638897],[127,192,64,-0.7673728825222086],[127,192,65,-0.7670051892151486],[127,192,66,-0.7666398478602018],[127,192,67,-0.7662768647458884],[127,192,68,-0.765916246069518],[127,192,69,-0.7655579979367608],[127,192,70,-0.7652021263612054],[127,192,71,-0.7648486372639213],[127,192,72,-0.7644975364730183],[127,192,73,-0.7641488297232221],[127,192,74,-0.7638025226554207],[127,192,75,-0.7634586208162417],[127,192,76,-0.7631171296576162],[127,192,77,-0.7627780545363446],[127,192,78,-0.7624414007136658],[127,192,79,-0.7621071733548227],[127,193,64,-0.767534378211129],[127,193,65,-0.7671664843748314],[127,193,66,-0.7668009415756767],[127,193,67,-0.7664377561043444],[127,193,68,-0.7660769341603428],[127,193,69,-0.7657184818515806],[127,193,70,-0.7653624051939252],[127,193,71,-0.7650087101107641],[127,193,72,-0.7646574024325662],[127,193,73,-0.7643084878964558],[127,193,74,-0.7639619721457604],[127,193,75,-0.7636178607295876],[127,193,76,-0.763276159102389],[127,193,77,-0.7629368726235264],[127,193,78,-0.7626000065568411],[127,193,79,-0.7622655660702192],[127,194,64,-0.7676960109604833],[127,194,65,-0.76732791790403],[127,194,66,-0.7669621749652902],[127,194,67,-0.7665987884370805],[127,194,68,-0.7662377645210858],[127,194,69,-0.7658791093274321],[127,194,70,-0.7655228288742435],[127,194,71,-0.7651689290872047],[127,194,72,-0.7648174157991222],[127,194,73,-0.7644682947494984],[127,194,74,-0.7641215715840795],[127,194,75,-0.7637772518544325],[127,194,76,-0.7634353410175092],[127,194,77,-0.7630958444352127],[127,194,78,-0.7627587673739671],[127,194,79,-0.7624241150042819],[127,195,64,-0.7678577804305947],[127,195,65,-0.7674894894652675],[127,195,66,-0.7671235476937606],[127,195,67,-0.7667599614110052],[127,195,68,-0.7663987368208418],[127,195,69,-0.766039880035591],[127,195,70,-0.7656833970756125],[127,195,71,-0.7653292938688672],[127,195,72,-0.7649775762504777],[127,195,73,-0.7646282499623037],[127,195,74,-0.7642813206524894],[127,195,75,-0.7639367938750405],[127,195,76,-0.7635946750893888],[127,195,77,-0.7632549696599589],[127,195,78,-0.7629176828557369],[127,195,79,-0.7625828198498369],[127,196,64,-0.7680196862805054],[127,196,65,-0.7676511987197776],[127,196,66,-0.7672850594245082],[127,196,67,-0.7669212746917218],[127,196,68,-0.7665598507273914],[127,196,69,-0.7662007936460113],[127,196,70,-0.7658441094701554],[127,196,71,-0.7654898041300386],[127,196,72,-0.7651378834630793],[127,196,73,-0.7647883532134729],[127,196,74,-0.7644412190317412],[127,196,75,-0.764096486474308],[127,196,76,-0.7637541610030647],[127,196,77,-0.7634142479849368],[127,196,78,-0.7630767526914534],[127,196,79,-0.7627416802983125],[127,197,64,-0.7681817281680378],[127,197,65,-0.7678130453275658],[127,197,66,-0.7674467098197177],[127,197,67,-0.767082727943589],[127,197,68,-0.7667211059072636],[127,197,69,-0.7663618498273879],[127,197,70,-0.7660049657287276],[127,197,71,-0.765650459543731],[127,197,72,-0.7652983371120905],[127,197,73,-0.7649486041803168],[127,197,74,-0.764601266401288],[127,197,75,-0.7642563293338255],[127,197,76,-0.7639137984422602],[127,197,77,-0.763573679095998],[127,197,78,-0.7632359765690909],[127,197,79,-0.7629006960398014],[127,198,64,-0.7683439057497639],[127,198,65,-0.7679750289473795],[127,198,66,-0.7676084985403077],[127,198,67,-0.7672443208296921],[127,198,68,-0.766882502025706],[127,198,69,-0.7665230482471254],[127,198,70,-0.7661659655208868],[127,198,71,-0.7658112597816505],[127,198,72,-0.7654589368713616],[127,198,73,-0.7651090025388249],[127,198,74,-0.7647614624392537],[127,198,75,-0.7644163221338469],[127,198,76,-0.7640735870893541],[127,198,77,-0.7637332626776421],[127,198,78,-0.7633953541752649],[127,198,79,-0.7630598667630297],[127,199,64,-0.768506218681031],[127,199,65,-0.7681371492367332],[127,199,66,-0.7677704252459551],[127,199,67,-0.7674060530118664],[127,199,68,-0.7670440387467077],[127,199,69,-0.766684388571363],[127,199,70,-0.7663271085149178],[127,199,71,-0.7659722045142225],[127,199,72,-0.7656196824134538],[127,199,73,-0.7652695479636897],[127,199,74,-0.7649218068224584],[127,199,75,-0.7645764645533148],[127,199,76,-0.764233526625407],[127,199,77,-0.7638929984130419],[127,199,78,-0.7635548851952563],[127,199,79,-0.7632191921553821],[127,200,64,-0.7686686666159306],[127,200,65,-0.7682994058518775],[127,200,66,-0.7679324895950654],[127,200,67,-0.7675679241506681],[127,200,68,-0.7672057157329711],[127,200,69,-0.7668458704649446],[127,200,70,-0.7664883943778014],[127,200,71,-0.7661332934105607],[127,200,72,-0.7657805734096095],[127,200,73,-0.7654302401282778],[127,200,74,-0.7650822992263872],[127,200,75,-0.7647367562698288],[127,200,76,-0.7643936167301283],[127,200,77,-0.7640528859840127],[127,200,78,-0.7637145693129811],[127,200,79,-0.7633786719028702],[127,201,64,-0.7688312492073609],[127,201,65,-0.7684617984478614],[127,201,66,-0.7680946912448343],[127,201,67,-0.7677299339054351],[127,201,68,-0.7673675326459722],[127,201,69,-0.76700749359148],[127,201,70,-0.7666498227752769],[127,201,71,-0.7662945261385294],[127,201,72,-0.7659416095298134],[127,201,73,-0.7655910787046896],[127,201,74,-0.7652429393252528],[127,201,75,-0.7648971969597087],[127,201,76,-0.7645538570819403],[127,201,77,-0.7642129250710744],[127,201,78,-0.7638744062110523],[127,201,79,-0.7635383056901959],[127,202,64,-0.7689939661070051],[127,202,65,-0.7686243266785109],[127,202,66,-0.7682570298512263],[127,202,67,-0.7678920819342664],[127,202,68,-0.7675294891459401],[127,202,69,-0.7671692576133241],[127,202,70,-0.7668113933718208],[127,202,71,-0.7664559023647222],[127,202,72,-0.7661027904427717],[127,202,73,-0.76575206336374],[127,202,74,-0.7654037267919734],[127,202,75,-0.765057786297972],[127,202,76,-0.7647142473579556],[127,202,77,-0.7643731153534299],[127,202,78,-0.7640343955707585],[127,202,79,-0.7636980932007282],[127,203,64,-0.7691568169653104],[127,203,65,-0.7687869901964077],[127,203,66,-0.7684195050689537],[127,203,67,-0.7680543678940003],[127,203,68,-0.7676915848918353],[127,203,69,-0.7673311621915553],[127,203,70,-0.7669731058306247],[127,203,71,-0.76661742175444],[127,203,72,-0.7662641158158907],[127,203,73,-0.7659131937749355],[127,203,74,-0.7655646612981518],[127,203,75,-0.7652185239583131],[127,203,76,-0.7648747872339552],[127,203,77,-0.764533456508943],[127,203,78,-0.7641945370720417],[127,203,79,-0.7638580341164831],[127,204,64,-0.7693198014315497],[127,204,65,-0.7689497886529512],[127,204,66,-0.7685821165515381],[127,204,67,-0.7682167914402769],[127,204,68,-0.7678538195414116],[127,204,69,-0.7674932069860372],[127,204,70,-0.7671349598136584],[127,204,71,-0.7667790839717539],[127,204,72,-0.7664255853153379],[127,204,73,-0.7660744696065366],[127,204,74,-0.7657257425141369],[127,204,75,-0.7653794096131651],[127,204,76,-0.765035476384452],[127,204,77,-0.7646939482142013],[127,204,78,-0.7643548303935599],[127,204,79,-0.7640181281181845],[127,205,64,-0.7694829191537914],[127,205,65,-0.769112721698328],[127,205,66,-0.7687448639512803],[127,205,67,-0.768379352227507],[127,205,68,-0.768016192751186],[127,205,69,-0.7676553916553887],[127,205,70,-0.767296954981638],[127,205,71,-0.7669408886794734],[127,205,72,-0.7665871986060124],[127,205,73,-0.7662358905255271],[127,205,74,-0.7658869701089932],[127,205,75,-0.7655404429336684],[127,205,76,-0.7651963144826585],[127,205,77,-0.764854590144485],[127,205,78,-0.7645152752126563],[127,205,79,-0.764178374885234],[127,206,64,-0.7696461697789243],[127,206,65,-0.7692757889815369],[127,206,66,-0.7689077469192851],[127,206,67,-0.7685420499088973],[127,206,68,-0.7681787041764632],[127,206,69,-0.7678177158570081],[127,206,70,-0.7674590909940519],[127,206,71,-0.7671028355391725],[127,206,72,-0.7667489553515695],[127,206,73,-0.7663974561976394],[127,206,74,-0.7660483437505256],[127,206,75,-0.7657016235896965],[127,206,76,-0.7653573012005123],[127,206,77,-0.7650153819737915],[127,206,78,-0.7646758712053837],[127,206,79,-0.7643387740957355],[127,207,64,-0.7698095529526269],[127,207,65,-0.769438990150358],[127,207,66,-0.7690707651054304],[127,207,67,-0.7687048841364195],[127,207,68,-0.7683413534713048],[127,207,69,-0.7679801792470431],[127,207,70,-0.7676213675091289],[127,207,71,-0.7672649242111576],[127,207,72,-0.7669108552143888],[127,207,73,-0.7665591662873226],[127,207,74,-0.7662098631052485],[127,207,75,-0.7658629512498248],[127,207,76,-0.7655184362086449],[127,207,77,-0.7651763233748043],[127,207,78,-0.7648366180464736],[127,207,79,-0.7644993254264637],[127,208,64,-0.7699730683194289],[127,208,65,-0.7696023248514149],[127,208,66,-0.7692339181584296],[127,208,67,-0.7688678545608729],[127,208,68,-0.7685041402885915],[127,208,69,-0.7681427814804521],[127,208,70,-0.7677837841839015],[127,208,71,-0.7674271543545309],[127,208,72,-0.7670728978556385],[127,208,73,-0.7667210204578057],[127,208,74,-0.766371527838448],[127,208,75,-0.7660244255813923],[127,208,76,-0.7656797191764443],[127,208,77,-0.7653374140189563],[127,208,78,-0.7649975154093989],[127,208,79,-0.7646600285529275],[127,209,64,-0.7701367155226913],[127,209,65,-0.7697657927301536],[127,209,66,-0.7693972057258098],[127,209,67,-0.7690309608318622],[127,209,68,-0.768667064280002],[127,209,69,-0.7683055222109832],[127,209,70,-0.7679463406741837],[127,209,71,-0.7675895256271679],[127,209,72,-0.767235082935251],[127,209,73,-0.7668830183710755],[127,209,74,-0.7665333376141603],[127,209,75,-0.7661860462504804],[127,209,76,-0.7658411497720331],[127,209,77,-0.7654986535764066],[127,209,78,-0.7651585629663511],[127,209,79,-0.7648208831493468],[127,210,64,-0.7703004942045829],[127,210,65,-0.7699293934308201],[127,210,66,-0.7695606274538909],[127,210,67,-0.7691942025977765],[127,210,68,-0.7688301250959906],[127,210,69,-0.7684684010911528],[127,210,70,-0.768109036634549],[127,210,71,-0.7677520376856959],[127,210,72,-0.7673974101119041],[127,210,73,-0.7670451596878548],[127,210,74,-0.7666952920951499],[127,210,75,-0.7663478129218909],[127,210,76,-0.7660027276622463],[127,210,77,-0.7656600417160193],[127,210,78,-0.7653197603882196],[127,210,79,-0.7649818888886315],[127,211,64,-0.7704644040061447],[127,211,65,-0.7700931265965241],[127,211,66,-0.7697241829878467],[127,211,67,-0.7693575795058512],[127,211,68,-0.7689933223858503],[127,211,69,-0.768631417772307],[127,211,70,-0.7682718717183937],[127,211,71,-0.767914690185557],[127,211,72,-0.7675598790430812],[127,211,73,-0.7672074440676648],[127,211,74,-0.7668573909429716],[127,211,75,-0.7665097252592087],[127,211,76,-0.7661644525126945],[127,211,77,-0.7658215781054264],[127,211,78,-0.7654811073446536],[127,211,79,-0.7651430454424439],[127,212,64,-0.7706284445672569],[127,212,65,-0.7702569918692064],[127,212,66,-0.7698878719716757],[127,212,67,-0.7695210912021371],[127,212,68,-0.7691566557976813],[127,212,69,-0.7687945719045917],[127,212,70,-0.7684348455779051],[127,212,71,-0.7680774827809761],[127,212,72,-0.767722489385041],[127,212,73,-0.7673698711687944],[127,212,74,-0.7670196338179401],[127,212,75,-0.76667178292477],[127,212,76,-0.7663263239877315],[127,212,77,-0.7659832624109958],[127,212,78,-0.7656426035040305],[127,212,79,-0.765304352481167],[127,213,64,-0.7707926155266656],[127,213,65,-0.7704209888896651],[127,213,66,-0.7700516940482242],[127,213,67,-0.769684737331526],[127,213,68,-0.7693201249784163],[127,213,69,-0.7689578631369768],[127,213,70,-0.7685979578640865],[127,213,71,-0.7682404151249863],[127,213,72,-0.7678852407928426],[127,213,73,-0.7675324406483244],[127,213,74,-0.7671820203791544],[127,213,75,-0.7668339855796881],[127,213,76,-0.7664883417504806],[127,213,77,-0.7661450942978566],[127,213,78,-0.7658042485334814],[127,213,79,-0.7654658096739297],[127,214,64,-0.7709569165219512],[127,214,65,-0.7705851172975247],[127,214,66,-0.7702156488591565],[127,214,67,-0.7698485175377188],[127,214,68,-0.7694837295737892],[127,214,69,-0.7691212911172255],[127,214,70,-0.7687612082267268],[127,214,71,-0.768403486869398],[127,214,72,-0.768048132920314],[127,214,73,-0.7676951521620969],[127,214,74,-0.7673445502844668],[127,214,75,-0.7669963328838212],[127,214,76,-0.7666505054628026],[127,214,77,-0.7663070734298677],[127,214,78,-0.7659660420988594],[127,214,79,-0.7656274166885754],[127,215,64,-0.7711213471895905],[127,215,65,-0.7707493767312975],[127,215,66,-0.7703797360450175],[127,215,67,-0.7700124314632885],[127,215,68,-0.7696474692283976],[127,215,69,-0.7692848554919565],[127,215,70,-0.7689245963144619],[127,215,71,-0.7685666976648609],[127,215,72,-0.7682111654201151],[127,215,73,-0.7678580053647779],[127,215,74,-0.7675072231905451],[127,215,75,-0.7671588244958356],[127,215,76,-0.766812814785358],[127,215,77,-0.7664691994696803],[127,215,78,-0.7661279838648025],[127,215,79,-0.7657891731917242],[127,216,64,-0.7712859071649355],[127,216,65,-0.7709137668283628],[127,216,66,-0.7705439552452099],[127,216,67,-0.770176478749658],[127,216,68,-0.7698113435856812],[127,216,69,-0.7694485559066223],[127,216,70,-0.7690881217747536],[127,216,71,-0.7687300471608425],[127,216,72,-0.7683743379437151],[127,216,73,-0.7680209999098344],[127,216,74,-0.7676700387528512],[127,216,75,-0.7673214600731838],[127,216,76,-0.766975269377586],[127,216,77,-0.7666314720787163],[127,216,78,-0.766290073494711],[127,216,79,-0.7659510788487518],[127,217,64,-0.7714505960821918],[127,217,65,-0.7710782872249446],[127,217,66,-0.7707083060979735],[127,217,67,-0.770340659037079],[127,217,68,-0.7699753522878999],[127,217,69,-0.7696123920054878],[127,217,70,-0.769251784253868],[127,217,71,-0.7688935350056062],[127,217,72,-0.7685376501413712],[127,217,73,-0.768184135449514],[127,217,74,-0.7678329966256185],[127,217,75,-0.7674842392720815],[127,217,76,-0.7671378688976812],[127,217,77,-0.7667938909171453],[127,217,78,-0.7664523106507259],[127,217,79,-0.7661131333237663],[127,218,64,-0.7716154135744802],[127,218,65,-0.7712429375561751],[127,218,66,-0.770872788240447],[127,218,67,-0.7705049719646939],[127,218,68,-0.7701394949761964],[127,218,69,-0.7697763634316919],[127,218,70,-0.7694155833969372],[127,218,71,-0.7690571608462734],[127,218,72,-0.7687011016621907],[127,218,73,-0.7683474116349062],[127,218,74,-0.7679960964619152],[127,218,75,-0.7676471617475722],[127,218,76,-0.7673006130026576],[127,218,77,-0.7669564556439485],[127,218,78,-0.7666146949937916],[127,218,79,-0.7662753362796714],[127,219,64,-0.771780359273816],[127,219,65,-0.7714077174560712],[127,219,66,-0.7710374013086464],[127,219,67,-0.7706694171705142],[127,219,68,-0.7703037712905737],[127,219,69,-0.7699404698272265],[127,219,70,-0.7695795188479377],[127,219,71,-0.7692209243288022],[127,219,72,-0.7688646921541095],[127,219,73,-0.7685108281159208],[127,219,74,-0.7681593379136218],[127,219,75,-0.7678102271535026],[127,219,76,-0.7674635013483255],[127,219,77,-0.7671191659168957],[127,219,78,-0.7667772261836335],[127,219,79,-0.7664376873781444],[127,220,64,-0.771945432811087],[127,220,65,-0.7715726265575144],[127,220,66,-0.7712021449374435],[127,220,67,-0.7708339942913985],[127,220,68,-0.7704681808698746],[127,220,69,-0.7701047108329142],[127,220,70,-0.769743590249669],[127,220,71,-0.7693848250979654],[127,220,72,-0.7690284212638697],[127,220,73,-0.7686743845412662],[127,220,74,-0.7683227206314092],[127,220,75,-0.7679734351425027],[127,220,76,-0.7676265335892701],[127,220,77,-0.7672820213925232],[127,220,78,-0.766939903878736],[127,220,79,-0.7666001862796136],[127,221,64,-0.7721106338161152],[127,221,65,-0.7717376644923122],[127,221,66,-0.7713670187606283],[127,221,67,-0.7709987029631156],[127,221,68,-0.7706327233518427],[127,221,69,-0.7702690860884709],[127,221,70,-0.7699077972438154],[127,221,71,-0.7695488627974123],[127,221,72,-0.7691922886370828],[127,221,73,-0.768838080558512],[127,221,74,-0.768486244264801],[127,221,75,-0.7681367853660475],[127,221,76,-0.7677897093789136],[127,221,77,-0.7674450217261972],[127,221,78,-0.7671027277364051],[127,221,79,-0.7667628326433213],[127,222,64,-0.7722759619176266],[127,222,65,-0.7719028308911675],[127,222,66,-0.7715320224108769],[127,222,67,-0.7711635428203121],[127,222,68,-0.7707973983730922],[127,222,69,-0.7704335952324743],[127,222,70,-0.7700721394709155],[127,222,71,-0.7697130370696383],[127,222,72,-0.7693562939181975],[127,222,73,-0.7690019158140571],[127,222,74,-0.7686499084621433],[127,222,75,-0.7683002774744253],[127,222,76,-0.7679530283694839],[127,222,77,-0.7676081665720815],[127,222,78,-0.7672656974127366],[127,222,79,-0.7669256261272925],[127,223,64,-0.7724414167432756],[127,223,65,-0.7720681253837036],[127,223,66,-0.771697155519778],[127,223,67,-0.7713285134965389],[127,223,68,-0.7709622055691326],[127,223,69,-0.7705982379023898],[127,223,70,-0.7702366165703861],[127,223,71,-0.7698773475560095],[127,223,72,-0.7695204367505253],[127,223,73,-0.7691658899531547],[127,223,74,-0.7688137128706277],[127,223,75,-0.7684639111167636],[127,223,76,-0.7681164902120399],[127,223,77,-0.767771455583163],[127,223,78,-0.7674288125626423],[127,223,79,-0.767088566388359],[127,224,64,-0.7726069979196144],[127,224,65,-0.7722335475984323],[127,224,66,-0.7718624177178007],[127,224,67,-0.7714936146242184],[127,224,68,-0.7711271445743372],[127,224,69,-0.7707630137345377],[127,224,70,-0.7704012281804922],[127,224,71,-0.7700417938967312],[127,224,72,-0.7696847167762089],[127,224,73,-0.7693300026198817],[127,224,74,-0.7689776571362615],[127,224,75,-0.7686276859409964],[127,224,76,-0.7682800945564393],[127,224,77,-0.7679348884112195],[127,224,78,-0.7675920728398162],[127,224,79,-0.7672516530821284],[127,225,64,-0.7727727050721549],[127,225,65,-0.7723990971628175],[127,225,66,-0.772027808634357],[127,225,67,-0.7716588458347087],[127,225,68,-0.7712922150220057],[127,225,69,-0.7709279223641569],[127,225,70,-0.7705659739384082],[127,225,71,-0.7702063757309106],[127,225,72,-0.7698491336362846],[127,225,73,-0.7694942534572002],[127,225,74,-0.7691417409039297],[127,225,75,-0.7687916015939278],[127,225,76,-0.768443841051402],[127,225,77,-0.768098464706883],[127,225,78,-0.7677554778967994],[127,225,79,-0.7674148858630467],[127,226,64,-0.772938537825347],[127,226,65,-0.7725647737032522],[127,226,66,-0.7721933278977805],[127,226,67,-0.7718242067582799],[127,226,68,-0.7714574165443426],[127,226,69,-0.7710929634253825],[127,226,70,-0.7707308534801969],[127,226,71,-0.7703710926965345],[127,226,72,-0.7700136869706606],[127,226,73,-0.7696586421069366],[127,226,74,-0.7693059638173726],[127,226,75,-0.7689556577212093],[127,226,76,-0.7686077293444873],[127,226,77,-0.7682621841196174],[127,226,78,-0.7679190273849565],[127,226,79,-0.7675782643843762],[127,227,64,-0.7731044958025574],[127,227,65,-0.7727305768450375],[127,227,66,-0.7723589751353038],[127,227,67,-0.7719896970240935],[127,227,68,-0.771622748772435],[127,227,69,-0.771258136551224],[127,227,70,-0.7708958664407871],[127,227,71,-0.770535944430448],[127,227,72,-0.7701783764180948],[127,227,73,-0.7698231682097578],[127,227,74,-0.7694703255191641],[127,227,75,-0.7691198539673181],[127,227,76,-0.768771759082072],[127,227,77,-0.768426046297696],[127,227,78,-0.7680827209544538],[127,227,79,-0.7677417882981725],[127,228,64,-0.7732705786261306],[127,228,65,-0.7728965062124449],[127,228,66,-0.7725247499731215],[127,228,67,-0.7721553162602642],[127,228,68,-0.7717882113363146],[127,228,69,-0.7714234413736277],[127,228,70,-0.771061012454036],[127,228,71,-0.7707009305684165],[127,228,72,-0.7703432016162571],[127,228,73,-0.769987831405236],[127,228,74,-0.7696348256507743],[127,228,75,-0.7692841899756194],[127,228,76,-0.7689359299094132],[127,228,77,-0.768590050888264],[127,228,78,-0.768246558254322],[127,228,79,-0.7679054572553482],[127,229,64,-0.7734367859173591],[127,229,65,-0.7730625614286841],[127,229,66,-0.7726906520363583],[127,229,67,-0.7723210640938292],[127,229,68,-0.7719538038649274],[127,229,69,-0.7715888775234451],[127,229,70,-0.771226291152698],[127,229,71,-0.770866050745094],[127,229,72,-0.7705081622016986],[127,229,73,-0.770152631331815],[127,229,74,-0.7697994638525378],[127,229,75,-0.7694486653883347],[127,229,76,-0.7691002414706163],[127,229,77,-0.7687541975373079],[127,229,78,-0.7684105389324244],[127,229,79,-0.7680692709056408],[127,230,64,-0.773603117296508],[127,230,65,-0.7732287421159296],[127,230,66,-0.7728566809490952],[127,230,67,-0.772486940150772],[127,230,68,-0.7721195259861579],[127,230,69,-0.7717544446304583],[127,230,70,-0.77139170216845],[127,230,71,-0.7710313045940487],[127,230,72,-0.7706732578098755],[127,230,73,-0.770317567626837],[127,230,74,-0.7699642397636788],[127,230,75,-0.7696132798465672],[127,230,76,-0.7692646934086604],[127,230,77,-0.768918485889679],[127,230,78,-0.7685746626354821],[127,230,79,-0.7682332288976375],[127,231,64,-0.7737695723827832],[127,231,65,-0.773395047895288],[127,231,66,-0.7730228363343365],[127,231,67,-0.7726529440559926],[127,231,68,-0.7722853773267977],[127,231,69,-0.7719201423233482],[127,231,70,-0.7715572451318587],[127,231,71,-0.7711966917477308],[127,231,72,-0.7708384880751187],[127,231,73,-0.7704826399265098],[127,231,74,-0.7701291530222789],[127,231,75,-0.7697780329902698],[127,231,76,-0.7694292853653661],[127,231,77,-0.7690829155890628],[127,231,78,-0.768738929009042],[127,231,79,-0.768397330878743],[127,232,64,-0.7739361507943943],[127,232,65,-0.7735614783868612],[127,232,66,-0.7731891178140735],[127,232,67,-0.7728190754333687],[127,232,68,-0.7724513575126086],[127,232,69,-0.7720859702297573],[127,232,70,-0.771722919672445],[127,232,71,-0.771362211837536],[127,232,72,-0.7710038526306954],[127,232,73,-0.7706478478659697],[127,232,74,-0.7702942032653408],[127,232,75,-0.7699429244583079],[127,232,76,-0.7695940169814588],[127,232,77,-0.7692474862780414],[127,232,78,-0.7689033376975394],[127,232,79,-0.7685615764952434],[127,233,64,-0.7741028521485325],[127,233,65,-0.7737280332097238],[127,233,66,-0.7733555250092621],[127,233,67,-0.7729853339057344],[127,233,68,-0.7726174661683],[127,233,69,-0.7722519279762676],[127,233,70,-0.7718887254186602],[127,233,71,-0.7715278644937823],[127,233,72,-0.7711693511087878],[127,233,73,-0.7708131910792599],[127,233,74,-0.7704593901287653],[127,233,75,-0.7701079538884371],[127,233,76,-0.7697588878965459],[127,233,77,-0.7694121975980708],[127,233,78,-0.7690678883442763],[127,233,79,-0.768725965392283],[127,234,64,-0.7742696760613488],[127,234,65,-0.7738947119819024],[127,234,66,-0.7735220575398009],[127,234,67,-0.7731517190948578],[127,234,68,-0.7727837029175066],[127,234,69,-0.7724180151883782],[127,234,70,-0.7720546619978648],[127,234,71,-0.771693649345689],[127,234,72,-0.7713349831404706],[127,234,73,-0.7709786691993072],[127,234,74,-0.7706247132473291],[127,234,75,-0.7702731209172812],[127,234,76,-0.7699238977490945],[127,234,77,-0.7695770491894589],[127,234,78,-0.7692325805913982],[127,234,79,-0.7688904972138417],[127,235,64,-0.7744366221480163],[127,235,65,-0.7740615143204364],[127,235,66,-0.7736887150245931],[127,235,67,-0.7733182306215036],[127,235,68,-0.7729500673828521],[127,235,69,-0.772584231490568],[127,235,70,-0.7722207290363907],[127,235,71,-0.771859566021438],[127,235,72,-0.7715007483557731],[127,235,73,-0.7711442818579861],[127,235,74,-0.770790172254748],[127,235,75,-0.7704384251803941],[127,235,76,-0.7700890461764949],[127,235,77,-0.7697420406914287],[127,235,78,-0.7693974140799575],[127,235,79,-0.7690551716027989],[127,236,64,-0.7746036900226991],[127,236,65,-0.7742284398413477],[127,236,66,-0.7738554970815166],[127,236,67,-0.7734848681054022],[127,236,68,-0.7731165591859165],[127,236,69,-0.7727505765062648],[127,236,70,-0.7723869261595103],[127,236,71,-0.7720256141481434],[127,236,72,-0.7716666463836485],[127,236,73,-0.7713100286860853],[127,236,74,-0.7709557667836445],[127,236,75,-0.7706038663122293],[127,236,76,-0.7702543328150278],[127,236,77,-0.7699071717420854],[127,236,78,-0.7695623884498815],[127,236,79,-0.7692199882009003],[127,237,64,-0.774770879298577],[127,237,65,-0.7743954881596656],[127,237,66,-0.7740224033274468],[127,237,67,-0.7736516311652735],[127,237,68,-0.7732831779472615],[127,237,69,-0.772917049857869],[127,237,70,-0.7725532529914605],[127,237,71,-0.7721917933518756],[127,237,72,-0.7718326768519979],[127,237,73,-0.7714759093133349],[127,237,74,-0.7711214964655735],[127,237,75,-0.7707694439461639],[127,237,76,-0.7704197572998898],[127,237,77,-0.7700724419784425],[127,237,78,-0.7697275033399971],[127,237,79,-0.7693849466487838],[127,238,64,-0.7749381895878138],[127,238,65,-0.7745626588893948],[127,238,66,-0.7741894333782271],[127,238,67,-0.7738185194187961],[127,238,68,-0.7734499232863992],[127,238,69,-0.7730836511667234],[127,238,70,-0.7727197091554114],[127,238,71,-0.7723581032576304],[127,238,72,-0.7719988393876397],[127,238,73,-0.7716419233683721],[127,238,74,-0.7712873609309897],[127,238,75,-0.7709351577144666],[127,238,76,-0.7705853192651613],[127,238,77,-0.770237851036389],[127,238,78,-0.7698927583879991],[127,238,79,-0.7695500465859467],[127,239,64,-0.7751056205016205],[127,239,65,-0.7747299516435784],[127,239,66,-0.7743565868487302],[127,239,67,-0.7739855324826704],[127,239,68,-0.7736167948218539],[127,239,69,-0.7732503800531744],[127,239,70,-0.7728862942735295],[127,239,71,-0.7725245434893908],[127,239,72,-0.7721651336163711],[127,239,73,-0.7718080704788062],[127,239,74,-0.7714533598093108],[127,239,75,-0.7711010072483617],[127,239,76,-0.7707510183438696],[127,239,77,-0.7704033985507526],[127,239,78,-0.770058153230513],[127,239,79,-0.7697152876508098],[127,240,64,-0.7752731716502327],[127,240,65,-0.7748973660342756],[127,240,66,-0.7745238633528364],[127,240,67,-0.7741526699725952],[127,240,68,-0.7737837921711412],[127,240,69,-0.773417236136551],[127,240,70,-0.7730530079669549],[127,240,71,-0.7726911136701055],[127,240,72,-0.7723315591629467],[127,240,73,-0.771974350271195],[127,240,74,-0.7716194927288955],[127,240,75,-0.7712669921780055],[127,240,76,-0.7709168541679664],[127,240,77,-0.7705690841552774],[127,240,78,-0.7702236875030725],[127,240,79,-0.7698806694806933],[127,241,64,-0.7754408426428887],[127,241,65,-0.7750649016725397],[127,241,66,-0.7746912625034115],[127,241,67,-0.7743199315032465],[127,241,68,-0.7739509149507444],[127,241,69,-0.7735842190351421],[127,241,70,-0.7732198498557787],[127,241,71,-0.7728578134216657],[127,241,72,-0.7724981156510555],[127,241,73,-0.7721407623710226],[127,241,74,-0.7717857593170203],[127,241,75,-0.7714331121324643],[127,241,76,-0.771082826368305],[127,241,77,-0.7707349074826011],[127,241,78,-0.7703893608400971],[127,241,79,-0.7700461917117958],[127,242,64,-0.7756086330878923],[127,242,65,-0.7752325581684804],[127,242,66,-0.7748587839123693],[127,242,67,-0.7744873166883395],[127,242,68,-0.7741181627761782],[127,242,69,-0.7737513283662588],[127,242,70,-0.7733868195591067],[127,242,71,-0.7730246423649693],[127,242,72,-0.7726648027033844],[127,242,73,-0.7723073064027625],[127,242,74,-0.7719521591999428],[127,242,75,-0.7715993667397774],[127,242,76,-0.7712489345747037],[127,242,77,-0.7709008681643184],[127,242,78,-0.7705551728749549],[127,242,79,-0.7702118539792558],[127,243,64,-0.7757765425925804],[127,243,65,-0.7754003351312326],[127,243,66,-0.77502642719064],[127,243,67,-0.7746548251405976],[127,243,68,-0.7742855352619564],[127,243,69,-0.7739185637462034],[127,243,70,-0.7735539166950269],[127,243,71,-0.7731916001198874],[127,243,72,-0.7728316199415857],[127,243,73,-0.7724739819898454],[127,243,74,-0.7721186920028695],[127,243,75,-0.7717657556269246],[127,243,76,-0.7714151784159131],[127,243,77,-0.7710669658309481],[127,243,78,-0.7707211232399303],[127,243,79,-0.7703776559171213],[127,244,64,-0.7759445707633491],[127,244,65,-0.7755682321689814],[127,244,66,-0.7751941919481952],[127,244,67,-0.7748224564717766],[127,244,68,-0.7744530320216171],[127,244,69,-0.7740859247902937],[127,244,70,-0.7737211408806347],[127,244,71,-0.7733586863052906],[127,244,72,-0.7729985669863024],[127,244,73,-0.7726407887546846],[127,244,74,-0.7722853573499816],[127,244,75,-0.7719322784198521],[127,244,76,-0.7715815575196421],[127,244,77,-0.771233200111959],[127,244,78,-0.7708872115662494],[127,244,79,-0.7705435971583728],[127,245,64,-0.7761127172056212],[127,245,65,-0.7757362488889297],[127,245,66,-0.775362077794016],[127,245,67,-0.7749902102926337],[127,245,68,-0.7746206526676909],[127,245,69,-0.7742534111128315],[127,245,70,-0.7738884917320008],[127,245,71,-0.773525900539016],[127,245,72,-0.773165643457136],[127,245,73,-0.7728077263186435],[127,245,74,-0.7724521548644017],[127,245,75,-0.7720989347434397],[127,245,76,-0.7717480715125248],[127,245,77,-0.771399570635737],[127,245,78,-0.7710534374840479],[127,245,79,-0.7707096773348927],[127,246,64,-0.7762809815239093],[127,246,65,-0.7759043848973616],[127,246,66,-0.7755300843361561],[127,246,67,-0.7751580862129896],[127,246,68,-0.7747883968117637],[127,246,69,-0.7744210223271657],[127,246,70,-0.7740559688642343],[127,246,71,-0.7736932424379313],[127,246,72,-0.7733328489727099],[127,246,73,-0.7729747943020987],[127,246,74,-0.7726190841682576],[127,246,75,-0.7722657242215638],[127,246,76,-0.7719147200201838],[127,246,77,-0.7715660770296489],[127,246,78,-0.7712198006224332],[127,246,79,-0.7708758960775274],[127,247,64,-0.7764493633217933],[127,247,65,-0.77607263979962],[127,247,66,-0.7756982111817191],[127,247,67,-0.7753260838417066],[127,247,68,-0.7749562640644543],[127,247,69,-0.7745887580456691],[127,247,70,-0.7742235718914605],[127,247,71,-0.7738607116179109],[127,247,72,-0.7735001831506463],[127,247,73,-0.7731419923244177],[127,247,74,-0.7727861448826598],[127,247,75,-0.7724326464770751],[127,247,76,-0.7720815026672079],[127,247,77,-0.7717327189200188],[127,247,78,-0.7713863006094631],[127,247,79,-0.7710422530160653],[127,248,64,-0.7766178622018981],[127,248,65,-0.7762410132000843],[127,248,66,-0.7758664579368363],[127,248,67,-0.7754942027866663],[127,248,68,-0.7751242540353918],[127,248,69,-0.7747566178797167],[127,248,70,-0.7743913004267974],[127,248,71,-0.7740283076938149],[127,248,72,-0.773667645607544],[127,248,73,-0.7733093200039362],[127,248,74,-0.7729533366276782],[127,248,75,-0.772599701131776],[127,248,76,-0.7722484190771293],[127,248,77,-0.7718994959321063],[127,248,78,-0.7715529370721221],[127,248,79,-0.7712087477792134],[127,249,64,-0.776786477765957],[127,249,65,-0.7764095047022327],[127,249,66,-0.7760348242067295],[127,249,67,-0.7756624426548315],[127,249,68,-0.7752923663332787],[127,249,69,-0.7749246014397481],[127,249,70,-0.7745591540824202],[127,249,71,-0.7741960302795508],[127,249,72,-0.7738352359590412],[127,249,73,-0.7734767769580209],[127,249,74,-0.7731206590224058],[127,249,75,-0.7727668878064832],[127,249,76,-0.7724154688724865],[127,249,77,-0.7720664076901693],[127,249,78,-0.771719709636385],[127,249,79,-0.7713753799946611],[127,250,64,-0.7769552096147881],[127,250,65,-0.7765781139086205],[127,250,66,-0.7762033095956888],[127,250,67,-0.7758308030522252],[127,250,68,-0.7754606005658685],[127,250,69,-0.7750927083352455],[127,250,70,-0.7747271324695372],[127,250,71,-0.7743638789880516],[127,250,72,-0.7740029538197934],[127,250,73,-0.7736443628030472],[127,250,74,-0.7732881116849357],[127,250,75,-0.7729342061210058],[127,250,76,-0.7725826516748017],[127,250,77,-0.772233453817441],[127,250,78,-0.7718866179271938],[127,250,79,-0.7715421492890567],[127,251,64,-0.7771240573482734],[127,251,65,-0.7767468404208575],[127,251,66,-0.7763719137070499],[127,251,67,-0.775999283583907],[127,251,68,-0.775628956339943],[127,251,69,-0.7752609381747105],[127,251,70,-0.7748952351983684],[127,251,71,-0.7745318534312532],[127,251,72,-0.7741707988034501],[127,251,73,-0.7738120771543762],[127,251,74,-0.773455694232339],[127,251,75,-0.7731016556941216],[127,251,76,-0.772749967104558],[127,251,77,-0.7724006339361076],[127,251,78,-0.772053661568435],[127,251,79,-0.7717090552879853],[127,252,64,-0.7772930205654205],[127,252,65,-0.7769156838396705],[127,252,66,-0.776540636143257],[127,252,67,-0.7761678838540369],[127,252,68,-0.7757974332613755],[127,252,69,-0.7754292905657282],[127,252,70,-0.775063461878208],[127,252,71,-0.774699953220157],[127,252,72,-0.7743387705227182],[127,252,73,-0.7739799196264183],[127,252,74,-0.7736234062807268],[127,252,75,-0.7732692361436413],[127,252,76,-0.7729174147812627],[127,252,77,-0.7725679476673708],[127,252,78,-0.7722208401830033],[127,252,79,-0.7718760976160313],[127,253,64,-0.7774620988643313],[127,253,65,-0.7770846437648717],[127,253,66,-0.7767094765058311],[127,253,67,-0.7763366034658422],[127,253,68,-0.7759660309350983],[127,253,69,-0.7755977651149336],[127,253,70,-0.775231812117392],[127,253,71,-0.7748681779647983],[127,253,72,-0.7745068685893299],[127,253,73,-0.7741478898326006],[127,253,74,-0.7737912474452191],[127,253,75,-0.7734369470863754],[127,253,76,-0.7730849943234153],[127,253,77,-0.7727353946314166],[127,253,78,-0.7723881533927683],[127,253,79,-0.7720432758967468],[127,254,64,-0.7776312918422263],[127,254,65,-0.7772537197953839],[127,254,66,-0.7768784343953945],[127,254,67,-0.7765054420216435],[127,254,68,-0.7761347489651281],[127,254,69,-0.775766361428038],[127,254,70,-0.7754002855233242],[127,254,71,-0.775036527274271],[127,254,72,-0.7746750926140675],[127,254,73,-0.7743159873853918],[127,254,74,-0.7739592173399692],[127,254,75,-0.7736047881381596],[127,254,76,-0.7732527053485314],[127,254,77,-0.7729029744474387],[127,254,78,-0.7725556008186003],[127,254,79,-0.7722105897526759],[127,255,64,-0.777800599095414],[127,255,65,-0.7774229115292078],[127,255,66,-0.7770475094116394],[127,255,67,-0.7766743991228224],[127,255,68,-0.776303586954534],[127,255,69,-0.7759350791097959],[127,255,70,-0.7755688817024426],[127,255,71,-0.7752050007566953],[127,255,72,-0.7748434422067314],[127,255,73,-0.77448421189627],[127,255,74,-0.7741273155781313],[127,255,75,-0.773772758913822],[127,255,76,-0.7734205474731115],[127,255,77,-0.7730706867336077],[127,255,78,-0.7727231820803375],[127,255,79,-0.7723780388053222],[127,256,64,-0.7779700202193522],[127,256,65,-0.7775922185634859],[127,256,66,-0.7772167011533904],[127,256,67,-0.776843474369884],[127,256,68,-0.7764725445055001],[127,256,69,-0.7761039177640682],[127,256,70,-0.775737600260284],[127,256,71,-0.7753735980192812],[127,256,72,-0.7750119169762029],[127,256,73,-0.7746525629757866],[127,256,74,-0.7742955417719242],[127,256,75,-0.7739408590272472],[127,256,76,-0.7735885203127035],[127,256,77,-0.7732385311071331],[127,256,78,-0.7728908967968491],[127,256,79,-0.7725456226752128],[127,257,64,-0.7781395548086265],[127,257,65,-0.7777616404944786],[127,257,66,-0.7773860092185818],[127,257,67,-0.7770126673624347],[127,257,68,-0.7766416212193027],[127,257,69,-0.7762728769938003],[127,257,70,-0.7759064408014601],[127,257,71,-0.775542318668305],[127,257,72,-0.7751805165304213],[127,257,73,-0.7748210402335419],[127,257,74,-0.7744638955326075],[127,257,75,-0.7741090880913524],[127,257,76,-0.7737566234818802],[127,257,77,-0.7734065071842413],[127,257,78,-0.7730587445860128],[127,257,79,-0.7727133409818747],[127,258,64,-0.7783092024569275],[127,258,65,-0.7779311769175433],[127,258,66,-0.7775554332042358],[127,258,67,-0.7771819776991596],[127,258,68,-0.7768108166962887],[127,258,69,-0.7764419564009986],[127,258,70,-0.7760754029296351],[127,258,71,-0.7757111623090878],[127,258,72,-0.7753492404763621],[127,258,73,-0.774989643278164],[127,258,74,-0.7746323764704603],[127,258,75,-0.7742774457180651],[127,258,76,-0.7739248565942162],[127,258,77,-0.7735746145801518],[127,258,78,-0.7732267250646914],[127,258,79,-0.7728811933438119],[127,259,64,-0.7784789627571136],[127,259,65,-0.7781008274271961],[127,259,66,-0.7777249727065245],[127,259,67,-0.7773514049778855],[127,259,68,-0.7769801305359377],[127,259,69,-0.7766111555867936],[127,259,70,-0.7762444862475892],[127,259,71,-0.7758801285460571],[127,259,72,-0.7755180884200991],[127,259,73,-0.7751583717173709],[127,259,74,-0.7748009841948428],[127,259,75,-0.7744459315183865],[127,259,76,-0.7740932192623513],[127,259,77,-0.7737428529091412],[127,259,78,-0.7733948378487964],[127,259,79,-0.7730491793785692],[127,260,64,-0.7786488353011795],[127,260,65,-0.7782705916170802],[127,260,66,-0.7778946273207383],[127,260,67,-0.7775209487955486],[127,260,68,-0.7771495623368299],[127,260,69,-0.7767804741514083],[127,260,70,-0.7764136903571862],[127,260,71,-0.7760492169827159],[127,260,72,-0.7756870599667725],[127,260,73,-0.7753272251579384],[127,260,74,-0.774969718314165],[127,260,75,-0.7746145451023586],[127,260,76,-0.7742617110979578],[127,260,77,-0.7739112217845107],[127,260,78,-0.7735630825532556],[127,260,79,-0.7732172987026987],[127,261,64,-0.77881881968028],[127,261,65,-0.7784404690799909],[127,261,66,-0.7780643966413111],[127,261,67,-0.7776906087482193],[127,261,68,-0.7773191116966711],[127,261,69,-0.7769499116941823],[127,261,70,-0.7765830148593978],[127,261,71,-0.7762184272216668],[127,261,72,-0.7758561547206138],[127,261,73,-0.7754962032057255],[127,261,74,-0.7751385784359112],[127,261,75,-0.7747832860790895],[127,261,76,-0.774430331711766],[127,261,77,-0.7740797208186103],[127,261,78,-0.7737314587920378],[127,261,79,-0.773385550931786],[127,262,64,-0.7789889154846993],[127,262,65,-0.778610459407843],[127,262,66,-0.7782342802617875],[127,262,67,-0.7778603844310708],[127,262,68,-0.7774887782122613],[127,262,69,-0.7771194678135404],[127,262,70,-0.7767524593542726],[127,262,71,-0.7763877588645797],[127,262,72,-0.7760253722849134],[127,262,73,-0.7756653054656413],[127,262,74,-0.7753075641666074],[127,262,75,-0.7749521540567206],[127,262,76,-0.774599080713531],[127,262,77,-0.7742483496228074],[127,262,78,-0.7738999661781198],[127,262,79,-0.7735539356804162],[127,263,64,-0.7791591223039129],[127,263,65,-0.7787805621917347],[127,263,66,-0.7784042777748861],[127,263,67,-0.7780302754384409],[127,263,68,-0.777658561479556],[127,263,69,-0.7772891421070549],[127,263,70,-0.7769220234409977],[127,263,71,-0.7765572115122557],[127,263,72,-0.776194712262084],[127,263,73,-0.7758345315417082],[127,263,74,-0.7754766751118851],[127,263,75,-0.7751211486424904],[127,263,76,-0.7747679577120962],[127,263,77,-0.7744171078075488],[127,263,78,-0.774068604323551],[127,263,79,-0.7737224525622386],[127,264,64,-0.7793294397265655],[127,264,65,-0.7789507770219236],[127,264,66,-0.778574388772477],[127,264,67,-0.7782002813638104],[127,264,68,-0.7778284610936455],[127,264,69,-0.7774589341714234],[127,264,70,-0.7770917067178769],[127,264,71,-0.776726784764603],[127,264,72,-0.7763641742536372],[127,264,73,-0.7760038810370402],[127,264,74,-0.775645910876458],[127,264,75,-0.7752902694427108],[127,264,76,-0.7749369623153706],[127,264,77,-0.7745859949823388],[127,264,78,-0.7742373728394285],[127,264,79,-0.7738911011899424],[127,265,64,-0.7794998673404482],[127,265,65,-0.7791211034878056],[127,265,66,-0.7787446128455588],[127,265,67,-0.7783704017997797],[127,265,68,-0.7779984766487301],[127,265,69,-0.777628843602446],[127,265,70,-0.7772615087823078],[127,265,71,-0.7768964782206154],[127,265,72,-0.7765337578601615],[127,265,73,-0.7761733535538182],[127,265,74,-0.7758152710640985],[127,265,75,-0.7754595160627447],[127,265,76,-0.7751060941303054],[127,265,77,-0.7747550107557153],[127,265,78,-0.774406271335876],[127,265,79,-0.7740598811752348],[127,266,64,-0.7796704047325612],[127,266,65,-0.7792915411779764],[127,266,66,-0.778914949584322],[127,266,67,-0.7785406363381321],[127,266,68,-0.7781686077381852],[127,266,69,-0.7777988699950876],[127,266,70,-0.7774314292308443],[127,266,71,-0.7770662914784343],[127,266,72,-0.7767034626813842],[127,266,73,-0.7763429486933546],[127,266,74,-0.7759847552777025],[127,266,75,-0.775628888107069],[127,266,76,-0.7752753527629579],[127,266,77,-0.774924154735314],[127,266,78,-0.7745752994221058],[127,266,79,-0.7742287921289033],[127,267,64,-0.7798410514890822],[127,267,65,-0.7794620896802005],[127,267,66,-0.7790853985781161],[127,267,67,-0.7787109845698015],[127,267,68,-0.7783388539545275],[127,267,69,-0.7779690129434466],[127,267,70,-0.777601467659165],[127,267,71,-0.7772362241353172],[127,267,72,-0.7768732883161402],[127,267,73,-0.7765126660560603],[127,267,74,-0.776154363119255],[127,267,75,-0.7757983851792423],[127,267,76,-0.7754447378184578],[127,267,77,-0.775093426527835],[127,267,78,-0.7747444567063865],[127,267,79,-0.7743978336607834],[127,268,64,-0.780011807195391],[127,268,65,-0.7796327485814352],[127,268,66,-0.7792559594154751],[127,268,67,-0.7788814460848972],[127,268,68,-0.7785092148894401],[127,268,69,-0.7781392720407794],[127,268,70,-0.7777716236620977],[127,268,71,-0.7774062757876622],[127,268,72,-0.7770432343623964],[127,268,73,-0.7766825052414694],[127,268,74,-0.7763240941898565],[127,268,75,-0.7759680068819295],[127,268,76,-0.7756142489010336],[127,268,77,-0.7752628257390681],[127,268,78,-0.7749137427960683],[127,268,79,-0.774567005379784],[127,269,64,-0.7801826714360368],[127,269,65,-0.7798035174677989],[127,269,66,-0.7794266316840852],[127,269,67,-0.7790520204726716],[127,269,68,-0.7786796901337412],[127,269,69,-0.7783096468794675],[127,269,70,-0.777941896833587],[127,269,71,-0.777576446030975],[127,269,72,-0.777213300417219],[127,269,73,-0.776852465848207],[127,269,74,-0.7764939480896895],[127,269,75,-0.7761377528168691],[127,269,76,-0.7757838856139785],[127,269,77,-0.7754323519738602],[127,269,78,-0.7750831572975496],[127,269,79,-0.774736306893854],[127,270,64,-0.7803536437948024],[127,270,65,-0.7799743959246338],[127,270,66,-0.7795974149708471],[127,270,67,-0.7792227073215837],[127,270,68,-0.7788502792774457],[127,270,69,-0.7784801370510815],[127,270,70,-0.7781122867667575],[127,270,71,-0.7777467344599333],[127,270,72,-0.7773834860768369],[127,270,73,-0.7770225474740524],[127,270,74,-0.7766639244180824],[127,270,75,-0.7763076225849374],[127,270,76,-0.7759536475597146],[127,270,77,-0.775602004836178],[127,270,78,-0.775252699816341],[127,270,79,-0.7749057378100459],[127,271,64,-0.7805247238546799],[127,271,65,-0.7801453835364833],[127,271,66,-0.7797683088618544],[127,271,67,-0.7793935062192752],[127,271,68,-0.7790209819097433],[127,271,69,-0.7786507421463578],[127,271,70,-0.7782827930538906],[127,271,71,-0.7779171406683625],[127,271,72,-0.7775537909366188],[127,271,73,-0.7771927497159159],[127,271,74,-0.7768340227734857],[127,271,75,-0.776477615786124],[127,271,76,-0.7761235343397699],[127,271,77,-0.775771783929086],[127,271,78,-0.775422369957042],[127,271,79,-0.7750752977344928],[127,272,64,-0.7806959111978492],[127,272,65,-0.7803164798870694],[127,272,66,-0.7799393129423698],[127,272,67,-0.7795644167525488],[127,272,68,-0.7791917976189756],[127,272,69,-0.7788214617551754],[127,272,70,-0.7784534152864021],[127,272,71,-0.7780876642492142],[127,272,72,-0.7777242145910501],[127,272,73,-0.7773630721698161],[127,272,74,-0.7770042427534499],[127,272,75,-0.7766477320195097],[127,272,76,-0.7762935455547542],[127,272,77,-0.7759416888547221],[127,272,78,-0.7755921673233169],[127,272,79,-0.7752449862723847],[127,273,64,-0.7808672054057405],[127,273,65,-0.780487684559355],[127,273,66,-0.7801104267968886],[127,273,67,-0.779735438507431],[127,273,68,-0.7793627259926987],[127,273,69,-0.7789922954666195],[127,273,70,-0.778624153054905],[127,273,71,-0.7782583047946277],[127,273,72,-0.7778947566337961],[127,273,73,-0.7775335144309428],[127,273,74,-0.777174583954688],[127,273,75,-0.7768179708833298],[127,273,76,-0.7764636808044236],[127,273,77,-0.7761117192143623],[127,273,78,-0.77576209151796],[127,273,79,-0.7754148030280328],[127,274,64,-0.781038606059002],[127,274,65,-0.7806589971355125],[127,274,66,-0.7802816500091057],[127,274,67,-0.7799065710691389],[127,274,68,-0.7795337666176512],[127,274,69,-0.7791632428689487],[127,274,70,-0.778795005949177],[127,274,71,-0.7784290618958991],[127,274,72,-0.7780654166576697],[127,274,73,-0.7777040760936242],[127,274,74,-0.7773450459730431],[127,274,75,-0.7769883319749411],[127,274,76,-0.7766339396876474],[127,274,77,-0.7762818746083864],[127,274,78,-0.7759321421428614],[127,274,79,-0.7755847476048355],[127,275,64,-0.7812101127375245],[127,275,65,-0.7808304171969477],[127,275,66,-0.7804529821619415],[127,275,67,-0.7800778140221062],[127,275,68,-0.7797049190797789],[127,275,69,-0.7793343035496201],[127,275,70,-0.7789659735581858],[127,275,71,-0.7785999351435049],[127,275,72,-0.7782361942546556],[127,275,73,-0.777874756751353],[127,275,74,-0.7775156284035137],[127,275,75,-0.7771588148908468],[127,275,76,-0.7768043218024325],[127,275,77,-0.7764521546363041],[127,275,78,-0.7761023187990322],[127,275,79,-0.7757548196053045],[127,276,64,-0.7813817250204098],[127,276,65,-0.7810019443242685],[127,276,66,-0.780624422837509],[127,276,67,-0.7802491669499498],[127,276,68,-0.7798761829642024],[127,276,69,-0.7795054770952567],[127,276,70,-0.7791370554700555],[127,276,71,-0.7787709241270704],[127,276,72,-0.7784070890158785],[127,276,73,-0.7780455559967517],[127,276,74,-0.7776863308402202],[127,276,75,-0.7773294192266637],[127,276,76,-0.7769748267458909],[127,276,77,-0.7766225588967219],[127,276,78,-0.7762726210865717],[127,276,79,-0.7759250186310308],[127,277,64,-0.7815534424860329],[127,277,65,-0.781173578097347],[127,277,66,-0.7807959716171765],[127,277,67,-0.7804206294355338],[127,277,68,-0.7800475578552799],[127,277,69,-0.7796767630917107],[127,277,70,-0.7793082512721311],[127,277,71,-0.7789420284354318],[127,277,72,-0.778578100531666],[127,277,73,-0.7782164734216381],[127,277,74,-0.7778571528764687],[127,277,75,-0.7775001445771856],[127,277,76,-0.7771454541143037],[127,277,77,-0.7767930869874065],[127,277,78,-0.776443048604731],[127,277,79,-0.7760953442827492],[127,278,64,-0.7817252647120195],[127,278,65,-0.7813453180952968],[127,278,66,-0.7809676280815452],[127,278,67,-0.7805922010609456],[127,278,68,-0.7802190433365845],[127,278,69,-0.77984816112404],[127,278,70,-0.7794795605509546],[127,278,71,-0.7791132476566145],[127,278,72,-0.7787492283915249],[127,278,73,-0.7783875086170001],[127,278,74,-0.778028094104728],[127,278,75,-0.7776709905363608],[127,278,76,-0.7773162035030967],[127,278,77,-0.7769637385052607],[127,278,78,-0.7766136009518898],[127,278,79,-0.776265796160314],[127,279,64,-0.7818971912752235],[127,279,65,-0.781517163896451],[127,279,66,-0.7811393918104257],[127,279,67,-0.7807638814074735],[127,279,68,-0.7803906389908818],[127,279,69,-0.7800196707764855],[127,279,70,-0.7796509828922421],[127,279,71,-0.7792845813778086],[127,279,72,-0.7789204721841193],[127,279,73,-0.7785586611729745],[127,279,74,-0.7781991541166056],[127,279,75,-0.7778419566972675],[127,279,76,-0.7774870745068183],[127,279,77,-0.7771345130463017],[127,279,78,-0.7767842777255323],[127,279,79,-0.7764363738626765],[127,280,64,-0.782069221751789],[127,280,65,-0.7816891150784236],[127,280,66,-0.781311262382902],[127,280,67,-0.7809356700556702],[127,280,68,-0.7805623444001916],[127,280,69,-0.7801912916325348],[127,280,70,-0.7798225178809471],[127,280,71,-0.7794560291854336],[127,280,72,-0.7790918314973329],[127,280,73,-0.7787299306789084],[127,280,74,-0.7783703325029123],[127,280,75,-0.7780130426521783],[127,280,76,-0.7776580667192021],[127,280,77,-0.7773054102057233],[127,280,78,-0.7769550785223117],[127,280,79,-0.7766070769879481],[127,281,64,-0.782241355717119],[127,281,65,-0.7818611712180785],[127,281,66,-0.7814832393772981],[127,281,67,-0.781107566585319],[127,281,68,-0.7807341591457566],[127,281,69,-0.7803630232748884],[127,281,70,-0.7799941651012281],[127,281,71,-0.779627590665104],[127,281,72,-0.7792633059182366],[127,281,73,-0.7789013167233281],[127,281,74,-0.7785416288536284],[127,281,75,-0.7781842479925272],[127,281,76,-0.7778291797331345],[127,281,77,-0.7774764295778636],[127,281,78,-0.7771260029380167],[127,281,79,-0.7767779051333671],[127,282,64,-0.7824135927458994],[127,282,65,-0.7820333318915537],[127,282,66,-0.7816553223712033],[127,282,67,-0.7812795705754598],[127,282,68,-0.7809060828080667],[127,282,69,-0.7805348652854858],[127,282,70,-0.7801659241364729],[127,282,71,-0.779799265401656],[127,282,72,-0.7794348950331134],[127,282,73,-0.779072818893963],[127,282,74,-0.778713042757929],[127,282,75,-0.7783555723089337],[127,282,76,-0.7780004131406791],[127,282,77,-0.7776475707562293],[127,282,78,-0.7772970505675967],[127,282,79,-0.7769488578953242],[127,283,64,-0.7825859324120672],[127,283,65,-0.7822055966742286],[127,283,66,-0.7818275109414392],[127,283,67,-0.7814516816043565],[127,283,68,-0.7810781149668266],[127,283,69,-0.7807068172454719],[127,283,70,-0.7803377945692661],[127,283,71,-0.7799710529791133],[127,283,72,-0.7796065984274254],[127,283,73,-0.7792444367777129],[127,283,74,-0.7788845738041508],[127,283,75,-0.7785270151911711],[127,283,76,-0.7781717665330445],[127,283,77,-0.7778188333334635],[127,283,78,-0.777468221005128],[127,283,79,-0.7771199348693287],[127,284,64,-0.7827583742888727],[127,284,65,-0.7823779651407878],[127,284,66,-0.7819998046641238],[127,284,67,-0.7816238992495591],[127,284,68,-0.7812502552010185],[127,284,69,-0.7808788787352605],[127,284,70,-0.7805097759814529],[127,284,71,-0.7801429529807511],[127,284,72,-0.7797784156858777],[127,284,73,-0.7794161699607117],[127,284,74,-0.7790562215798559],[127,284,75,-0.7786985762282287],[127,284,76,-0.778343239500647],[127,284,77,-0.7779902169014083],[127,284,78,-0.7776395138438785],[127,284,79,-0.7772911356500729],[127,285,64,-0.7829309179488575],[127,285,65,-0.7825504368651972],[127,285,66,-0.7821722031146469],[127,285,67,-0.7817962230878815],[127,285,68,-0.7814225030888797],[127,285,69,-0.7810510493345117],[127,285,70,-0.7806818679541148],[127,285,71,-0.7803149649890728],[127,285,72,-0.7799503463923944],[127,285,73,-0.7795880180283039],[127,285,74,-0.7792279856718083],[127,285,75,-0.7788702550082895],[127,285,76,-0.7785148316330877],[127,285,77,-0.7781617210510827],[127,285,78,-0.7778109286762831],[127,285,79,-0.7774624598314077],[127,286,64,-0.7831035629638308],[127,286,65,-0.7827230114206817],[127,286,66,-0.7823447058676487],[127,286,67,-0.7819686526953785],[127,286,68,-0.7815948582078791],[127,286,69,-0.7812233286221079],[127,286,70,-0.7808540700675478],[127,286,71,-0.7804870885857866],[127,286,72,-0.7801223901300955],[127,286,73,-0.779759980565021],[127,286,74,-0.7793998656659504],[127,286,75,-0.7790420511187065],[127,286,76,-0.7786865425191286],[127,286,77,-0.7783333453726574],[127,286,78,-0.7779824650939213],[127,286,79,-0.7776339070063198],[127,287,64,-0.7832763089049326],[127,287,65,-0.7828956883797877],[127,287,66,-0.7825173124970818],[127,287,67,-0.7821411876474083],[127,287,68,-0.78176732013478],[127,287,69,-0.7813957161762173],[127,287,70,-0.7810263819013243],[127,287,71,-0.7806593233518689],[127,287,72,-0.7802945464813613],[127,287,73,-0.7799320571546458],[127,287,74,-0.7795718611474672],[127,287,75,-0.7792139641460655],[127,287,76,-0.7788583717467572],[127,287,77,-0.7785050894555201],[127,287,78,-0.7781541226875803],[127,287,79,-0.7778054767669953],[127,288,64,-0.7834491553426107],[127,288,65,-0.7830684673143606],[127,288,66,-0.7826900225761885],[127,288,67,-0.7823138275186099],[127,288,68,-0.7819398884456179],[127,288,69,-0.7815682115742713],[127,288,70,-0.7811988030342711],[127,288,71,-0.7808316688675414],[127,288,72,-0.7804668150278073],[127,288,73,-0.7801042473801877],[127,288,74,-0.7797439717007617],[127,288,75,-0.7793859936761628],[127,288,76,-0.7790303189031618],[127,288,77,-0.7786769528882508],[127,288,78,-0.778325901047231],[127,288,79,-0.7779771687047958],[127,289,64,-0.7836221018465981],[127,289,65,-0.7832413477955215],[127,289,66,-0.7828628356774779],[127,289,67,-0.7824865718828802],[127,289,68,-0.7821125627156768],[127,289,69,-0.7817408143929404],[127,289,70,-0.7813713330444453],[127,289,71,-0.7810041247122472],[127,289,72,-0.7806391953502627],[127,289,73,-0.7802765508238613],[127,289,74,-0.7799161969094327],[127,289,75,-0.7795581392939813],[127,289,76,-0.7792023835747088],[127,289,77,-0.778848935258599],[127,289,78,-0.7784977997620055],[127,289,79,-0.7781489824102354],[127,290,64,-0.7837951479859752],[127,290,65,-0.7834143293937301],[127,290,66,-0.7830357513727888],[127,290,67,-0.7826594203134363],[127,290,68,-0.782285342519552],[127,290,69,-0.7819135242081983],[127,290,70,-0.781543971509198],[127,290,71,-0.7811766904647147],[127,290,72,-0.7808116870288324],[127,290,73,-0.7804489670671477],[127,290,74,-0.7800885363563376],[127,290,75,-0.7797304005837539],[127,290,76,-0.7793745653470061],[127,290,77,-0.7790210361535471],[127,290,78,-0.7786698184202603],[127,290,79,-0.7783209174730437],[127,291,64,-0.7839682933291381],[127,291,65,-0.7835874116787525],[127,291,66,-0.7832087692332567],[127,291,67,-0.7828323723827835],[127,291,68,-0.782458227431118],[127,291,69,-0.7820863405952883],[127,291,70,-0.7817167180051413],[127,291,71,-0.7813493657029242],[127,291,72,-0.7809842896428649],[127,291,73,-0.780621495690763],[127,291,74,-0.7802609896235596],[127,291,75,-0.7799027771289304],[127,291,76,-0.7795468638048701],[127,291,77,-0.7791932551592773],[127,291,78,-0.7788419566095426],[127,291,79,-0.7784929734821329],[127,292,64,-0.7841415374438226],[127,292,65,-0.7837605942196852],[127,292,66,-0.7833818888293391],[127,292,67,-0.7830054276627395],[127,292,68,-0.7826312170235534],[127,292,69,-0.7822592631287489],[127,292,70,-0.7818895721081733],[127,292,71,-0.7815221500041335],[127,292,72,-0.7811570027709767],[127,292,73,-0.7807941362746826],[127,292,74,-0.7804335562924325],[127,292,75,-0.7800752685122028],[127,292,76,-0.7797192785323502],[127,292,77,-0.7793655918611962],[127,292,78,-0.7790142139166161],[127,292,79,-0.7786651500256228],[127,293,64,-0.7843148798970724],[127,293,65,-0.7839338765849238],[127,293,66,-0.783555109730783],[127,293,67,-0.7831785857244029],[127,293,68,-0.7828043108693072],[127,293,69,-0.7824322913823804],[127,293,70,-0.782062533393445],[127,293,71,-0.7816950429448439],[127,293,72,-0.7813298259910197],[127,293,73,-0.7809668883981085],[127,293,74,-0.7806062359435075],[127,293,75,-0.7802478743154716],[127,293,76,-0.7798918091126958],[127,293,77,-0.779538045843902],[127,293,78,-0.7791865899274268],[127,293,79,-0.7788374466908075],[127,294,64,-0.7844883202553009],[127,294,65,-0.7841072583422242],[127,294,66,-0.7837284315066869],[127,294,67,-0.7833518461382146],[127,294,68,-0.7829775085401629],[127,294,69,-0.782605424929308],[127,294,70,-0.7822356014354237],[127,294,71,-0.7818680441008642],[127,294,72,-0.7815027588801441],[127,294,73,-0.7811397516395314],[127,294,74,-0.7807790281566171],[127,294,75,-0.7804205941199097],[127,294,76,-0.7800644551284203],[127,294,77,-0.7797106166912475],[127,294,78,-0.7793590842271676],[127,294,79,-0.7790098630642187],[127,295,64,-0.7846618580842692],[127,295,65,-0.784280739058681],[127,295,66,-0.7839018537254787],[127,295,67,-0.7835252084739357],[127,295,68,-0.7831508096072147],[127,295,69,-0.7827786633419589],[127,295,70,-0.7824087758078695],[127,295,71,-0.7820411530472875],[127,295,72,-0.7816758010147753],[127,295,73,-0.7813127255767097],[127,295,74,-0.780951932510851],[127,295,75,-0.7805934275059389],[127,295,76,-0.7802372161612766],[127,295,77,-0.7798833039863173],[127,295,78,-0.7795316964002537],[127,295,79,-0.7791823987316024],[127,296,64,-0.784835492949063],[127,296,65,-0.784454318300704],[127,296,66,-0.7840753759548923],[127,296,67,-0.7836986723006241],[127,296,68,-0.7833242136408447],[127,296,69,-0.7829520061920394],[127,296,70,-0.7825820560838121],[127,296,71,-0.7822143693584671],[127,296,72,-0.7818489519705906],[127,296,73,-0.7814858097866437],[127,296,74,-0.7811249485845332],[127,296,75,-0.7807663740532058],[127,296,76,-0.7804100917922346],[127,296,77,-0.780056107311404],[127,296,78,-0.7797044260302999],[127,296,79,-0.7793550532778954],[127,297,64,-0.7850092244141544],[127,297,65,-0.7846279956340805],[127,297,66,-0.7842489977620302],[127,297,67,-0.7838722371866975],[127,297,68,-0.7834977202107853],[127,297,69,-0.7831254530505971],[127,297,70,-0.7827554418356146],[127,297,71,-0.782387692608081],[127,297,72,-0.7820222113225822],[127,297,73,-0.7816590038456405],[127,297,74,-0.7812980759552849],[127,297,75,-0.7809394333406466],[127,297,76,-0.7805830816015443],[127,297,77,-0.780229026248071],[127,297,78,-0.7798772727001834],[127,297,79,-0.7795278262872885],[127,298,64,-0.7851830520433707],[127,298,65,-0.7848017706239434],[127,298,66,-0.7844227187133312],[127,298,67,-0.7840459026999007],[127,298,68,-0.7836713288860878],[127,298,69,-0.7832990034879888],[127,298,70,-0.7829289326349393],[127,298,71,-0.7825611223690975],[127,298,72,-0.7821955786450245],[127,298,73,-0.7818323073292802],[127,298,74,-0.7814713141999922],[127,298,75,-0.7811126049464523],[127,298,76,-0.7807561851687022],[127,298,77,-0.7804020603771202],[127,298,78,-0.7800502359920114],[127,298,79,-0.7797007173431932],[127,299,64,-0.785356975399918],[127,299,65,-0.7849756428347959],[127,299,66,-0.7845965383745952],[127,299,67,-0.7842196684073304],[127,299,68,-0.7838450392351453],[127,299,69,-0.7834726570739048],[127,299,70,-0.7831025280527739],[127,299,71,-0.7827346582138008],[127,299,72,-0.7823690535114989],[127,299,73,-0.7820057198124409],[127,299,74,-0.7816446628948298],[127,299,75,-0.7812858884480945],[127,299,76,-0.7809294020724767],[127,299,77,-0.7805752092786167],[127,299,78,-0.780223315487145],[127,299,79,-0.7798737260282673],[127,300,64,-0.7855309940463494],[127,300,65,-0.7851496118304782],[127,300,66,-0.78477045631095],[127,300,67,-0.784393533875402],[127,300,68,-0.7840188508256611],[127,300,69,-0.7836464133773363],[127,300,70,-0.7832762276593973],[127,300,71,-0.7829082997137583],[127,300,72,-0.7825426354948604],[127,300,73,-0.7821792408692658],[127,300,74,-0.7818181216152289],[127,300,75,-0.7814592834222926],[127,300,76,-0.7811027318908748],[127,300,77,-0.7807484725318552],[127,300,78,-0.7803965107661665],[127,300,79,-0.7800468519243807],[127,301,64,-0.785705107544627],[127,301,65,-0.7853236771742307],[127,301,66,-0.7849444720869143],[127,301,67,-0.7845674986699129],[127,301,68,-0.7841927632247117],[127,301,69,-0.7838202719666385],[127,301,70,-0.7834500310244434],[127,301,71,-0.7830820464398829],[127,301,72,-0.7827163241673012],[127,301,73,-0.7823528700732261],[127,301,74,-0.7819916899359399],[127,301,75,-0.7816327894450759],[127,301,76,-0.7812761742012051],[127,301,77,-0.7809218497154233],[127,301,78,-0.7805698214089429],[127,301,79,-0.7802200946126792],[127,302,64,-0.7858793154560993],[127,302,65,-0.7854978384286709],[127,302,66,-0.7851185852663753],[127,302,67,-0.7847415623560197],[127,302,68,-0.7843667759987228],[127,302,69,-0.7839942324095069],[127,302,70,-0.7836239377168781],[127,302,71,-0.7832558979624102],[127,302,72,-0.782890119100327],[127,302,73,-0.7825266069970979],[127,302,74,-0.7821653674310093],[127,302,75,-0.7818064060917611],[127,302,76,-0.7814497285800546],[127,302,77,-0.7810953404071785],[127,302,78,-0.7807432469946021],[127,302,79,-0.7803934536735608],[127,303,64,-0.7860536173414784],[127,303,65,-0.7856720951557707],[127,303,66,-0.7852927954125645],[127,303,67,-0.7849157244982141],[127,303,68,-0.7845408887134468],[127,303,69,-0.7841682942729548],[127,303,70,-0.7837979473049754],[127,303,71,-0.7834298538508753],[127,303,72,-0.7830640198647341],[127,303,73,-0.7827004512129385],[127,303,74,-0.7823391536737556],[127,303,75,-0.7819801329369288],[127,303,76,-0.7816233946032654],[127,303,77,-0.7812689441842244],[127,303,78,-0.780916787101509],[127,303,79,-0.7805669286866525],[127,304,64,-0.7862280127609019],[127,304,65,-0.7858464469169184],[127,304,66,-0.7854671020881209],[127,304,67,-0.7850899846603865],[127,304,68,-0.7847151009340255],[127,304,69,-0.7843424571233755],[127,304,70,-0.7839720593563801],[127,304,71,-0.7836039136741755],[127,304,72,-0.7832380260306719],[127,304,73,-0.7828744022921502],[127,304,74,-0.7825130482368338],[127,304,75,-0.782153969554486],[127,304,76,-0.7817971718459975],[127,304,77,-0.7814426606229742],[127,304,78,-0.7810904413073299],[127,304,79,-0.780740519230873],[127,305,64,-0.7864025012739011],[127,305,65,-0.7860208932728863],[127,305,66,-0.7856415048550588],[127,305,67,-0.7852643424057928],[127,305,68,-0.7848894122249573],[127,305,69,-0.7845167205265097],[127,305,70,-0.7841462734380764],[127,305,71,-0.7837780770005374],[127,305,72,-0.7834121371676105],[127,305,73,-0.7830484598054461],[127,305,74,-0.7826870506922008],[127,305,75,-0.7823279155176339],[127,305,76,-0.7819710598826958],[127,305,77,-0.7816164892991165],[127,305,78,-0.7812642091889977],[127,305,79,-0.7809142248844003],[127,306,64,-0.7865770824394251],[127,306,65,-0.7861954337838556],[127,306,66,-0.7858160032747918],[127,306,67,-0.7854387972970795],[127,306,68,-0.7850638221501214],[127,306,69,-0.7846910840474705],[127,306,70,-0.7843205891164104],[127,306,71,-0.7839523433975419],[127,306,72,-0.7835863528443651],[127,306,73,-0.7832226233228763],[127,306,74,-0.7828611606111411],[127,306,75,-0.7825019703988918],[127,306,76,-0.7821450582871152],[127,306,77,-0.7817904297876419],[127,306,78,-0.7814380903227385],[127,306,79,-0.7810880452246957],[127,307,64,-0.7867517558158081],[127,307,65,-0.7863700680093836],[127,307,66,-0.7859905969081001],[127,307,67,-0.7856133488962506],[127,307,68,-0.7852383302727459],[127,307,69,-0.7848655472507099],[127,307,70,-0.7844950059570596],[127,307,71,-0.7841267124320908],[127,307,72,-0.7837606726290626],[127,307,73,-0.7833968924137932],[127,307,74,-0.7830353775642334],[127,307,75,-0.7826761337700646],[127,307,76,-0.7823191666322867],[127,307,77,-0.781964481662808],[127,307,78,-0.7816120842840366],[127,307,79,-0.7812619798284705],[127,308,64,-0.7869265209608329],[127,308,65,-0.786544795508466],[127,308,66,-0.7861652853151937],[127,308,67,-0.7857879967647301],[127,308,68,-0.7854129361554698],[127,308,69,-0.7850401097000825],[127,308,70,-0.7846695235250936],[127,308,71,-0.7843011836704701],[127,308,72,-0.7839350960892055],[127,308,73,-0.7835712666469161],[127,308,74,-0.7832097011214139],[127,308,75,-0.7828504052023058],[127,308,76,-0.7824933844905815],[127,308,77,-0.7821386444982033],[127,308,78,-0.7817861906476989],[127,308,79,-0.7814360282717501],[127,309,64,-0.7871013774317063],[127,309,65,-0.7867196158395142],[127,309,66,-0.7863400680556885],[127,309,67,-0.7859627404633394],[127,309,68,-0.7855876393603203],[127,309,69,-0.7852147709588214],[127,309,70,-0.7848441413849521],[127,309,71,-0.7844757566783265],[127,309,72,-0.784109622791648],[127,309,73,-0.7837457455903066],[127,309,74,-0.7833841308519522],[127,309,75,-0.7830247842660935],[127,309,76,-0.7826677114336864],[127,309,77,-0.7823129178667244],[127,309,78,-0.7819604089878309],[127,309,79,-0.7816101901298492],[127,310,64,-0.7872763247850374],[127,310,65,-0.7868945285603324],[127,310,66,-0.7865149446885841],[127,310,67,-0.786137579552274],[127,310,68,-0.785762439448689],[127,310,69,-0.7853895305895152],[127,310,70,-0.7850188591004215],[127,310,71,-0.784650431020644],[127,310,72,-0.7842842523025724],[127,310,73,-0.7839203288113461],[127,310,74,-0.7835586663244288],[127,310,75,-0.7831992705312076],[127,310,76,-0.7828421470325813],[127,310,77,-0.7824873013405509],[127,310,78,-0.7821347388778132],[127,310,79,-0.7817844649773495],[127,311,64,-0.7874513625768996],[127,311,65,-0.7870695332281792],[127,311,66,-0.7866899147723255],[127,311,67,-0.7863125135911658],[127,311,68,-0.7859373359813951],[127,311,69,-0.7855643881541714],[127,311,70,-0.7851936762346973],[127,311,71,-0.7848252062618073],[127,311,72,-0.7844589841875524],[127,311,73,-0.784095015876798],[127,311,74,-0.7837333071067976],[127,311,75,-0.7833738635667927],[127,311,76,-0.7830166908576017],[127,311,77,-0.78266179449121],[127,311,78,-0.7823091798903643],[127,311,79,-0.781958852388162],[127,312,64,-0.7876264903627979],[127,312,65,-0.7872446293997362],[127,312,66,-0.7868649778647712],[127,312,67,-0.7864875421390507],[127,312,68,-0.786112328518653],[127,312,69,-0.7857393432141824],[127,312,70,-0.7853685923503515],[127,312,71,-0.7850000819655679],[127,312,72,-0.7846338180115203],[127,312,73,-0.7842698063527753],[127,312,74,-0.7839080527663528],[127,312,75,-0.7835485629413248],[127,312,76,-0.7831913424784057],[127,312,77,-0.7828363968895424],[127,312,78,-0.7824837315975085],[127,312,79,-0.7821333519354938],[127,313,64,-0.7878017076976933],[127,313,65,-0.7874198166311315],[127,313,66,-0.7870401335232169],[127,313,67,-0.7866626647543928],[127,313,68,-0.7862874166200957],[127,313,69,-0.7859143953303511],[127,313,70,-0.7855436070093571],[127,313,71,-0.7851750576950698],[127,313,72,-0.7848087533387911],[127,313,73,-0.7844446998047649],[127,313,74,-0.7840829028697536],[127,313,75,-0.7837233682226359],[127,313,76,-0.7833661014639991],[127,313,77,-0.7830111081057276],[127,313,78,-0.7826583935705991],[127,313,79,-0.7823079631918732],[127,314,64,-0.7879770141359709],[127,314,65,-0.7875950944779074],[127,314,66,-0.7872153813043636],[127,314,67,-0.7868378809950521],[127,314,68,-0.7864625998447428],[127,314,69,-0.7860895440628577],[127,314,70,-0.785718719773055],[127,314,71,-0.7853501330128154],[127,314,72,-0.7849837897330295],[127,314,73,-0.7846196957975946],[127,314,74,-0.7842578569829909],[127,314,75,-0.7838982789778811],[127,314,76,-0.783540967382701],[127,314,77,-0.7831859277092499],[127,314,78,-0.7828331653802859],[127,314,79,-0.7824826857291162],[127,315,64,-0.7881524092315013],[127,315,65,-0.7877704624950834],[127,315,66,-0.7873907207643794],[127,315,67,-0.7870131904183467],[127,315,68,-0.786637877751063],[127,315,69,-0.7862647889713219],[127,315,70,-0.7858939302022172],[127,315,71,-0.7855253074807295],[127,315,72,-0.7851589267573134],[127,315,73,-0.7847947938954958],[127,315,74,-0.784432914671451],[127,315,75,-0.7840732947736014],[127,315,76,-0.7837159398022082],[127,315,77,-0.7833608552689619],[127,315,78,-0.7830080465965785],[127,315,79,-0.7826575191183891],[127,316,64,-0.788327892537618],[127,316,65,-0.7879459202371321],[127,316,66,-0.7875661514588772],[127,316,67,-0.7871885925810299],[127,316,68,-0.7868132498969509],[127,316,69,-0.7864401296147805],[127,316,70,-0.7860692378570231],[127,316,71,-0.7857005806601347],[127,316,72,-0.7853341639741099],[127,316,73,-0.7849699936620805],[127,316,74,-0.7846080754998912],[127,316,75,-0.7842484151757004],[127,316,76,-0.7838910182895709],[127,316,77,-0.7835358903530616],[127,316,78,-0.7831830367888224],[127,316,79,-0.7828324629301862],[127,317,64,-0.788503463607095],[127,317,65,-0.7881214672579566],[127,317,66,-0.7877416729428903],[127,317,67,-0.7873640870392666],[127,317,68,-0.7869887158397036],[127,317,69,-0.7866155655516635],[127,317,70,-0.7862446422970363],[127,317,71,-0.7858759521117291],[127,317,72,-0.785509500945252],[127,317,73,-0.7851452946603175],[127,317,74,-0.7847833390324168],[127,317,75,-0.7844236397494204],[127,317,76,-0.7840662024111693],[127,317,77,-0.7837110325290672],[127,317,78,-0.7833581355256751],[127,317,79,-0.7830075167343044],[127,318,64,-0.7886791219922077],[127,318,65,-0.7882971031109531],[127,318,66,-0.7879172847709364],[127,318,67,-0.7875396733486963],[127,318,68,-0.7871642751360834],[127,318,69,-0.7867910963398567],[127,318,70,-0.7864201430812674],[127,318,71,-0.7860514213956485],[127,318,72,-0.7856849372320015],[127,318,73,-0.7853206964525955],[127,318,74,-0.7849587048325439],[127,318,75,-0.7845989680594058],[127,318,76,-0.7842414917327768],[127,318,77,-0.7838862813638816],[127,318,78,-0.78353334237517],[127,318,79,-0.7831826800999079],[127,319,64,-0.7888548672447111],[127,319,65,-0.7884728273489876],[127,319,66,-0.7880929864969931],[127,319,67,-0.7877153510644096],[127,319,68,-0.7873399273422947],[127,319,69,-0.786966721536679],[127,319,70,-0.7865957397681504],[127,319,71,-0.7862269880714432],[127,319,72,-0.7858604723950257],[127,319,73,-0.7854961986006994],[127,319,74,-0.7851341724631762],[127,319,75,-0.7847743996696794],[127,319,76,-0.7844168858195362],[127,319,77,-0.7840616364237687],[127,319,78,-0.7837086569046918],[127,319,79,-0.783357952595504]] diff --git a/pumpkin-world/assets/converted_cave_spaghetti_rough_overworld_7_4.json b/pumpkin-world/assets/converted_cave_spaghetti_rough_overworld_7_4.json new file mode 100644 index 000000000..5f443e313 --- /dev/null +++ b/pumpkin-world/assets/converted_cave_spaghetti_rough_overworld_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-9.91982661912886E-4],[112,-64,65,-0.0010715356198149558],[112,-64,66,-0.0011096052011653646],[112,-64,67,-0.0011149768112848168],[112,-64,68,-0.0010715424561859258],[112,-64,69,-9.5122168351809E-4],[112,-64,70,-7.328542734790045E-4],[112,-64,71,-4.021449412334299E-4],[112,-64,72,4.882577896556623E-5],[112,-64,73,6.221181332605027E-4],[112,-64,74,0.0013144771304265605],[112,-64,75,0.002117903718762804],[112,-64,76,0.0030202528851621105],[112,-64,77,0.004005858323046059],[112,-64,78,0.005056183239153059],[112,-64,79,0.00615049679712276],[112,-63,64,-0.0010514545594354132],[112,-63,65,-0.0010976380884272486],[112,-63,66,-0.0011021458589683573],[112,-63,67,-0.0010723117446696769],[112,-63,68,-9.920947747188288E-4],[112,-63,69,-8.348455017744118E-4],[112,-63,70,-5.808986411454307E-4],[112,-63,71,-2.1744153115520412E-4],[112,-63,72,2.6201802418554163E-4],[112,-63,73,8.582077649239581E-4],[112,-63,74,0.00156667060833285],[112,-63,75,0.0023783675938831962],[112,-63,76,0.003280303749406235],[112,-63,77,0.004256176413082313],[112,-63,78,0.005287045475944411],[112,-63,79,0.0063520249448959345],[112,-62,64,-8.652777123507222E-4],[112,-62,65,-8.870787269970825E-4],[112,-62,66,-8.68468035188511E-4],[112,-62,67,-8.150544194055046E-4],[112,-62,68,-7.109604734278648E-4],[112,-62,69,-5.312232014217138E-4],[112,-62,70,-2.5776253196356194E-4],[112,-62,71,1.2080672232298595E-4],[112,-62,72,6.097241317206173E-4],[112,-62,73,0.0012086544359116924],[112,-62,74,0.0019122795501806576],[112,-62,75,0.0027109114131112022],[112,-62,76,0.0035911252231805592],[112,-62,77,0.004536412541866773],[112,-62,78,0.005527853676207783],[112,-62,79,0.006544808694616163],[112,-61,64,-4.462416328078409E-4],[112,-61,65,-4.5217571403728934E-4],[112,-61,66,-4.2037041249866895E-4],[112,-61,67,-3.5447759944890844E-4],[112,-61,68,-2.388578489695246E-4],[112,-61,69,-5.0432479112706005E-5],[112,-61,70,2.2724397695318886E-4],[112,-61,71,6.042096441654252E-4],[112,-61,72,0.001084637907855559],[112,-61,73,0.0016674004021403268],[112,-61,74,0.0023466500648769836],[112,-61,75,0.003112423865039123],[112,-61,76,0.0039512647378004235],[112,-61,77,0.004846862196664049],[112,-61,78,0.00578071103113751],[112,-61,79,0.006732787443147753],[112,-60,64,1.8809772182516987E-4],[112,-60,65,1.903627454082698E-4],[112,-60,66,2.2637626055524123E-4],[112,-60,67,2.946243073870448E-4],[112,-60,68,4.104514611848041E-4],[112,-60,69,5.949078198774231E-4],[112,-60,70,8.627881346777053E-4],[112,-60,71,0.0012228787414362288],[112,-60,72,0.0016784727420922534],[112,-60,73,0.0022279054750467143],[112,-60,74,0.002865109978230025],[112,-60,75,0.003580192077335676],[112,-60,76,0.004360024664178567],[112,-60,77,0.005188860666992875],[112,-60,78,0.006048964156193394],[112,-60,79,0.006921258976112895],[112,-59,64,0.0010165301313139262],[112,-59,65,0.0010205836501046659],[112,-59,66,0.0010532057179481232],[112,-59,67,0.001115141528375518],[112,-59,68,0.0012213941074071006],[112,-59,69,0.001390885687251215],[112,-59,70,0.0016367659096001134],[112,-59,71,0.0019666658183122823],[112,-59,72,0.002383168745573295],[112,-59,73,0.002884302190808601],[112,-59,74,0.0034640504524399256],[112,-59,75,0.0041128877041801785],[112,-59,76,0.004818331142487502],[112,-59,77,0.005565513770629057],[112,-59,78,0.00633777632802889],[112,-59,79,0.007117277821634565],[112,-58,64,0.002015533289576967],[112,-58,65,0.0020166642805861225],[112,-58,66,0.0020401615562148467],[112,-58,67,0.0020890822040541923],[112,-58,68,0.002178040703880876],[112,-58,69,0.00232376341890306],[112,-58,70,0.0025377663129184064],[112,-58,71,0.0028266057335410216],[112,-58,72,0.0031922928678199286],[112,-58,73,0.0036327303800521987],[112,-58,74,0.004142171069361601],[112,-58,75,0.004711698318905423],[112,-58,76,0.005329728045574398],[112,-58,77,0.005982531799354843],[112,-58,78,0.006654780605626528],[112,-58,79,0.007330109092039789],[112,-57,64,0.0031608449209674376],[112,-57,65,0.0031565170432434667],[112,-57,66,0.0031675313473785174],[112,-57,67,0.0031992325592256833],[112,-57,68,0.0032657854454890465],[112,-57,69,0.0033816644619295293],[112,-57,70,0.0035567485575857508],[112,-57,71,0.0037965632132865735],[112,-57,72,0.004102631912727582],[112,-57,73,0.004472851066843929],[112,-57,74,0.004901888314089852],[112,-57,75,0.00538160405631517],[112,-57,76,0.005901496029050621],[112,-57,77,0.006449166646776656],[112,-57,78,0.007010812808660917],[112,-57,79,0.007571737798796772],[112,-56,64,0.004426031302343358],[112,-56,65,0.004415839304359863],[112,-56,66,0.00441337453935551],[112,-56,67,0.004426158811821754],[112,-56,68,0.004467818352657564],[112,-56,69,0.004550518570923561],[112,-56,70,0.0046824728575297235],[112,-56,71,0.004868174885695343],[112,-56,72,0.005108685897495383],[112,-56,73,0.005401946396586902],[112,-56,74,0.00574311224985106],[112,-56,75,0.00612491514101115],[112,-56,76,0.006538047261007693],[112,-56,77,0.006971570063627219],[112,-56,78,0.007413346861103075],[112,-56,79,0.007850498983637664],[112,-55,64,0.005764125512431636],[112,-55,65,0.005746254885555682],[112,-55,66,0.005728160963033557],[112,-55,67,0.005719335622021498],[112,-55,68,0.005732764978069872],[112,-55,69,0.005778311608749413],[112,-55,70,0.0058625553268517394],[112,-55,71,0.005989011106413442],[112,-55,72,0.00615834942247668],[112,-55,73,0.006368641883901722],[112,-55,74,0.006615632243177709],[112,-55,75,0.006893032810822946],[112,-55,76,0.007192846246349242],[112,-55,77,0.007505712643485418],[112,-55,78,0.00782128177492382],[112,-55,79,0.008128610311787007],[112,-54,64,0.007123327214982127],[112,-54,65,0.007093299871589949],[112,-54,66,0.007055012574753469],[112,-54,67,0.007019633680920079],[112,-54,68,0.006999406079810715],[112,-54,69,0.007001981273303599],[112,-54,70,0.007032427985434527],[112,-54,71,0.007093424561821281],[112,-54,72,0.007185405468844195],[112,-54,73,0.007306734408512728],[112,-54,74,0.007453904227338561],[112,-54,75,0.0076217637438814765],[112,-54,76,0.0078037715659804545],[112,-54,77,0.007992276915633787],[112,-54,78,0.008178827427564019],[112,-54,79,0.008354503837232756],[112,-53,64,0.008458510825653536],[112,-53,65,0.008409721705173444],[112,-53,66,0.008344779620390517],[112,-53,67,0.008276166385045391],[112,-53,68,0.008215278555673612],[112,-53,69,0.008167718650326429],[112,-53,70,0.008137240139329082],[112,-53,71,0.00812589789993074],[112,-53,72,0.008134110681868766],[112,-53,73,0.008160752371666129],[112,-53,74,0.008203272350596423],[112,-53,75,0.008257845189050641],[112,-53,76,0.008319549866972965],[112,-53,77,0.00838257865671764],[112,-53,78,0.008440475751650913],[112,-53,79,0.00848640567165007],[112,-52,64,0.009731755204241944],[112,-52,65,0.009655957823965023],[112,-52,66,0.009556462271025044],[112,-52,67,0.009446648393205977],[112,-52,68,0.009336965463144263],[112,-52,69,0.009231185697784668],[112,-52,70,0.009132001123957614],[112,-52,71,0.009041111537944686],[112,-52,72,0.008959190178832241],[112,-52,73,0.008885881598780296],[112,-52,74,0.00881983217046192],[112,-52,75,0.00875875361937557],[112,-52,76,0.008699519914279146],[112,-52,77,0.008638297793290246],[112,-52,78,0.008570711146814894],[112,-52,79,0.008492039422027583],[112,-51,64,0.010912965222306142],[112,-51,65,0.010800697068590508],[112,-51,66,0.010657705586473411],[112,-51,67,0.010497817490951569],[112,-51,68,0.010330438686568197],[112,-51,69,0.010157774223458375],[112,-51,70,0.009981753107991745],[112,-51,71,0.009804030080528266],[112,-51,72,0.009625839789896978],[112,-51,73,0.009447888071624963],[112,-51,74,0.009270280948477476],[112,-51,75,0.009092491916657503],[112,-51,76,0.008913368022677004],[112,-51,77,0.008731175175154475],[112,-51,78,0.008543683073250142],[112,-51,79,0.00834829006981719],[112,-50,64,0.011980638972361138],[112,-50,65,0.011821586343871199],[112,-50,66,0.011625438965065805],[112,-50,67,0.01140599958638807],[112,-50,68,0.011171542675523782],[112,-50,69,0.010923003126616202],[112,-50,70,0.010661878586776925],[112,-50,71,0.010390119084266871],[112,-50,72,0.010109853549660442],[112,-50,73,0.009823160097234235],[112,-50,74,0.0095318808989191],[112,-50,75,0.009237482422527041],[112,-50,76,0.008940961740792026],[112,-50,77,0.008642799548824439],[112,-50,78,0.008342960455598625],[112,-50,79,0.00804094104087336],[112,-49,64,0.011768844512247353],[112,-49,65,0.01203502003604783],[112,-49,66,0.012342638157690452],[112,-49,67,0.012155466795136967],[112,-49,68,0.01184512741581435],[112,-49,69,0.011512496025326854],[112,-49,70,0.011158978774044303],[112,-49,71,0.010787164070023876],[112,-49,72,0.01040040528285091],[112,-49,73,0.010002455720019907],[112,-49,74,0.009597156956196541],[112,-49,75,0.00918818152661845],[112,-49,76,0.008778830920653848],[112,-49,77,0.008371889731025234],[112,-49,78,0.00796953672926615],[112,-49,79,0.00757331354955049],[112,-48,64,0.01097207904246315],[112,-48,65,0.011301522411382048],[112,-48,66,0.01167662354446699],[112,-48,67,0.012085016980052649],[112,-48,68,0.012339725625212015],[112,-48,69,0.011919118219404909],[112,-48,70,0.011470620693845657],[112,-48,71,0.010997728155237725],[112,-48,72,0.010505262672200862],[112,-48,73,0.009998862631347768],[112,-48,74,0.009484535802000345],[112,-48,75,0.008968277380858657],[112,-48,76,0.008455754199679578],[112,-48,77,0.007952056183890914],[112,-48,78,0.007461516049052852],[112,-48,79,0.006987598116284101],[112,-47,64,0.010352577988628268],[112,-47,65,0.010750223779213792],[112,-47,66,0.011195993896567313],[112,-47,67,0.011678934824791418],[112,-47,68,0.01219470921508253],[112,-47,69,0.012141620526715005],[112,-47,70,0.011600448469744513],[112,-47,71,0.011030570270554613],[112,-47,72,0.010438422277787577],[112,-47,73,0.00983163379349111],[112,-47,74,0.00921844032571072],[112,-47,75,0.008607173653681976],[112,-47,76,0.008005830142042208],[112,-47,77,0.0074217186282022046],[112,-47,78,0.006861189087398354],[112,-47,79,0.0063294431542708285],[112,-46,64,0.009922292470839655],[112,-46,65,0.010390446528487996],[112,-46,66,0.010907133459179692],[112,-46,67,0.011463231092623313],[112,-46,68,0.012055968652532062],[112,-46,69,0.012184342454652363],[112,-46,70,0.011556862498152928],[112,-46,71,0.010898264837403648],[112,-46,72,0.010216655915099859],[112,-46,73,0.009521669153945183],[112,-46,74,0.008823737573930873],[112,-46,75,0.008133455881705906],[112,-46,76,0.00746103371836848],[112,-46,77,0.006815841620599165],[112,-46,78,0.006206051109897341],[112,-46,79,0.005638370177262637],[112,-45,64,0.00968576934278445],[112,-45,65,0.01022434456766242],[112,-45,66,0.010809611303929349],[112,-45,67,0.01143466245364432],[112,-45,68,0.012098437481918816],[112,-45,69,0.012056734972956642],[112,-45,70,0.01135260046174717],[112,-45,71,0.010616853558550684],[112,-45,72,0.009859245678244373],[112,-45,73,0.009091345991386578],[112,-45,74,0.008325675872310784],[112,-45,75,0.0075749459281114345],[112,-45,76,0.006851397532978687],[112,-45,77,0.006166250640372786],[112,-45,78,0.005529259483507339],[112,-45,79,0.004948377604229244],[112,-44,64,0.009640761122499173],[112,-44,65,0.010247512892663617],[112,-44,66,0.010896779708733182],[112,-44,67,0.011584209592863675],[112,-44,68,0.012310601663300051],[112,-44,69,0.011772859634814557],[112,-44,70,0.01100429195510123],[112,-44,71,0.01020546765344026],[112,-44,72,0.009387685828689004],[112,-44,73,0.008564312165013474],[112,-44,74,0.007749780542911534],[112,-44,75,0.006958710427498259],[112,-44,76,0.006205142177933277],[112,-44,77,0.005501892248493],[112,-44,78,0.004860030067188395],[112,-44,79,0.004288478183906727],[112,-43,64,0.009778853597582586],[112,-43,65,0.010449615773002956],[112,-43,66,0.011156392211433169],[112,-43,67,0.01189767496586779],[112,-43,68,0.01213339112561139],[112,-43,69,0.011350862761756694],[112,-43,70,0.010531985606296892],[112,-43,71,0.009685919621183496],[112,-43,72,0.008825350861997438],[112,-43,73,0.007965241838754245],[112,-43,74,0.007121708075333418],[112,-43,75,0.0063110233875073515],[112,-43,76,0.005548756218630906],[112,-43,77,0.004849039176980132],[112,-43,78,0.004223973711423918],[112,-43,79,0.0036831716446917395],[112,-42,64,0.010086112918691773],[112,-42,65,0.010815035347668112],[112,-42,66,0.011571243076922874],[112,-42,67,0.012356303244110755],[112,-42,68,0.011633562225972258],[112,-42,69,0.010812423273511186],[112,-42,70,0.009958647441086285],[112,-42,71,0.009082263473773966],[112,-42,72,0.00819712892146574],[112,-42,73,0.0073195531049367645],[112,-42,74,0.006467058459595439],[112,-42,75,0.005657282964041129],[112,-42,76,0.004907026159231271],[112,-42,77,0.004231441047563512],[112,-42,78,0.0036433739316307804],[112,-42,79,0.0031528540121239885],[112,-41,64,0.010543754111399585],[112,-41,65,0.011323542540930516],[112,-41,66,0.012119830037822878],[112,-41,67,0.011839989232436534],[112,-41,68,0.011027275447709721],[112,-41,69,0.010182172616278348],[112,-41,70,0.00930962910517054],[112,-41,71,0.0084203222474391],[112,-41,72,0.007529019588963053],[112,-41,73,0.006653086789284717],[112,-41,74,0.005811145241827316],[112,-41,75,0.005021882275807612],[112,-41,76,0.004303016581026735],[112,-41,77,0.0036704212596193834],[112,-41,78,0.003137406658061866],[112,-41,79,0.0027141648707905506],[112,-40,64,0.011128833044375399],[112,-40,65,0.011950992318390483],[112,-40,66,0.011973939048119064],[112,-40,67,0.011169031292369121],[112,-40,68,0.010341060101288279],[112,-40,69,0.009487085122547995],[112,-40,70,0.008612104436038139],[112,-40,71,0.007727181471692412],[112,-40,72,0.006847694950343242],[112,-40,73,0.0059917455812972045],[112,-40,74,0.005178722720970893],[112,-40,75,0.004428033975926556],[112,-40,76,0.0037580004938215093],[112,-40,77,0.0031849204294028773],[112,-40,78,0.002722302802197232],[112,-40,79,0.002380273680643702],[112,-39,64,0.011814963990673484],[112,-39,65,0.012059330493799845],[112,-39,66,0.011247428883435573],[112,-39,67,0.010432927183128675],[112,-39,68,0.009603587560317579],[112,-39,69,0.00875583702334322],[112,-39,70,0.007894472759338049],[112,-39,71,0.007030647154411704],[112,-39,72,0.0061800227063125625],[112,-39,73,0.005361092501964034],[112,-39,74,0.004593669566682988],[112,-39,75,0.00389754815426692],[112,-39,76,0.003291339790203181],[112,-39,77,0.0027914866063951924],[112,-39,78,0.0024114542176193253],[112,-39,79,0.002161106090253356],[112,-38,64,0.01213945845445048],[112,-38,65,0.011294295545721483],[112,-38,66,0.010473399834444761],[112,-38,67,0.009661910753922663],[112,-38,68,0.008844964403961634],[112,-38,69,0.008018132230344895],[112,-38,70,0.007185727176656247],[112,-38,71,0.0063586667278481045],[112,-38,72,0.005552549980335842],[112,-38,73,0.004785907595102543],[112,-38,74,0.004078628006225343],[112,-38,75,0.0034505630047798044],[112,-38,76,0.0029203155460571723],[112,-38,77,0.0025042123389277617],[112,-38,78,0.0022154634727249117],[112,-38,79,0.002063511022166759],[112,-37,64,0.011360678472105057],[112,-37,65,0.010501794505770398],[112,-37,66,0.00968334370220015],[112,-37,67,0.008887262770318325],[112,-37,68,0.00809599174993113],[112,-37,69,0.007303992911530081],[112,-37,70,0.006514786012633413],[112,-37,71,0.005738711295697027],[112,-37,72,0.004990946363877928],[112,-37,73,0.004289701610222336],[112,-37,74,0.0036545976021773825],[112,-37,75,0.0031052275582152695],[112,-37,76,0.0026599077686512013],[112,-37,77,0.0023346185109947384],[112,-37,78,0.002142137694216215],[112,-37,79,0.0020913691391934754],[112,-36,64,0.010575909395855714],[112,-36,65,0.009714085219595932],[112,-36,66,0.008909311475892138],[112,-36,67,0.008140513190691978],[112,-36,68,0.007387388605773385],[112,-36,69,0.006643012800489891],[112,-36,70,0.005909785500358433],[112,-36,71,0.005197117425994472],[112,-36,72,0.004519404636777216],[112,-36,73,0.0038941853345085924],[112,-36,74,0.003340482524098358],[112,-36,75,0.0028773356530561963],[112,-36,76,0.0025225240569013716],[112,-36,77,0.002291484726124556],[112,-36,78,0.0021964265849402356],[112,-36,79,0.0022456431358787625],[112,-35,64,0.00981749784023233],[112,-35,65,0.008963420757040177],[112,-35,66,0.008183066255235613],[112,-35,67,0.007452606204118549],[112,-35,68,0.006748976998852666],[112,-35,69,0.006063571107277696],[112,-35,70,0.005397331705712101],[112,-35,71,0.0047583866494715485],[112,-35,72,0.004159997507678592],[112,-35,73,0.0036186931301211904],[112,-35,74,0.0031525911066697535],[112,-35,75,0.002779910197151597],[112,-35,76,0.002517676507916918],[112,-35,77,0.002380625873250917],[112,-35,78,0.0023803045682123615],[112,-35,79,0.002524370137577128],[112,-34,64,0.009117177749441242],[112,-34,65,0.008281160727528053],[112,-34,66,0.007535197290742485],[112,-34,67,0.006853025655871134],[112,-34,68,0.006208826590348112],[112,-34,69,0.005592004838266787],[112,-34,70,0.0050017096246154],[112,-34,71,0.00444444074891188],[112,-34,72,0.003931988637029573],[112,-34,73,0.0034795591413601533],[112,-34,74,0.0031040863851974666],[112,-34,75,0.0028227366602239577],[112,-34,76,0.0026516060804520846],[112,-34,77,0.002604614374553456],[112,-34,78,0.0026925968641228325],[112,-34,79,0.0029225963312484167],[112,-33,64,0.008505150169134659],[112,-33,65,0.007696841879203084],[112,-33,66,0.006994192676064523],[112,-33,67,0.006368878449194572],[112,-33,68,0.005792356436597339],[112,-33,69,0.00525173728489322],[112,-33,70,0.0047440473327997465],[112,-33,71,0.004273830862870972],[112,-33,72,0.003851096134040979],[112,-33,73,0.0034894445552395457],[112,-33,74,0.0032043862075545456],[112,-33,75,0.003011844634082165],[112,-33,76,0.002926853510404829],[112,-33,77,0.002962447487172016],[112,-33,78,0.0031287491624320753],[112,-33,79,0.00343225379832346],[112,-32,64,0.00800912061066132],[112,-32,65,0.007237205467035551],[112,-32,66,0.006585468206753843],[112,-32,67,0.0060239334886002215],[112,-32,68,0.005521391532994091],[112,-32,69,0.005062360407147593],[112,-32,70,0.004641433026594851],[112,-32,71,0.004260898377676212],[112,-32,72,0.003928706660087711],[112,-32,73,0.003656614229507422],[112,-32,74,0.003458511440574687],[112,-32,75,0.00334893620387944],[112,-32,76,0.0033417757668881957],[112,-32,77,0.0034491589104387213],[112,-32,78,0.0036805404224228067],[112,-32,79,0.004041979371640542],[112,-31,64,0.0076532914925989196],[112,-31,65,0.006925178872985681],[112,-31,66,0.006330349914980304],[112,-31,67,0.005837613721414523],[112,-31,68,0.005413171762235232],[112,-31,69,0.005038668818101188],[112,-31,70,0.00470598276618354],[112,-31,71,0.0044148855458085974],[112,-31,72,0.0041710382251700035],[112,-31,73,0.003984160945061795],[112,-31,74,0.003866380719494299],[112,-31,75,0.003830759791059067],[112,-31,76,0.0038900069406197914],[112,-31,77,0.004055373838789442],[112,-31,78,0.004335738203473083],[112,-31,79,0.004736875196522559],[112,-30,64,0.007457307159853479],[112,-30,65,0.006778808975047342],[112,-30,66,0.006245007800793609],[112,-30,67,0.0058239388415366735],[112,-30,68,0.005479310870850786],[112,-30,69,0.005189643071463808],[112,-30,70,0.00494385672066948],[112,-30,71,0.004738993747453273],[112,-30,72,0.004578249732165145],[112,-30,73,0.004469175495947643],[112,-30,74,0.004422050132204808],[112,-30,75,0.0044484280576608075],[112,-30,76,0.0045598623703697475],[112,-30,77,0.004766806498761967],[112,-30,78,0.005077695812104115],[112,-30,79,0.005498210541514578],[112,-29,64,0.007435149012659983],[112,-29,65,0.006810144792444132],[112,-29,66,0.006339338308255083],[112,-29,67,0.005990416243164809],[112,-29,68,0.005724703116499955],[112,-29,69,0.005517379966047812],[112,-29,70,0.005354221718036646],[112,-29,71,0.005229387306105968],[112,-29,72,0.0051434953066035165],[112,-29,73,0.005101860800626348],[112,-29,74,0.005112896186784591],[112,-29,75,0.005186678403401872],[112,-29,76,0.005333684738978842],[112,-29,77,0.005563699117477995],[112,-29,78,0.005884890442867767],[112,-29,79,0.006303064278168922],[112,-28,64,0.007593978327249997],[112,-28,65,0.007024066982233277],[112,-28,66,0.006615793140031774],[112,-28,67,0.006336877853490323],[112,-28,68,0.0061463752643420265],[112,-28,69,0.006015967609934694],[112,-28,70,0.0059281579235413995],[112,-28,71,0.0058741407795460145],[112,-28,72,0.005851921448525821],[112,-28,73,0.005864588203927895],[112,-28,74,0.005918740381987682],[112,-28,75,0.006023074542369268],[112,-28,76,0.006187130808989494],[112,-28,77,0.0064202011907350445],[112,-28,78,0.006730401392676332],[112,-28,79,0.007123907332563949],[112,-27,64,0.007932924417588805],[112,-27,65,0.007417061828933646],[112,-27,66,0.007068152067699734],[112,-27,67,0.006854260532901204],[112,-27,68,0.006732281664773642],[112,-27,69,0.006670303034003064],[112,-27,70,0.006647507508184073],[112,-27,71,0.00665212767516595],[112,-27,72,0.006679605058571993],[112,-27,73,0.0067308941409978534],[112,-27,74,0.006810913687063886],[112,-27,75,0.006927147616274132],[112,-27,76,0.007088397420251371],[112,-27,77,0.007303687852346766],[112,-27,78,0.007581327342100054],[112,-27,79,0.007928124305043131],[112,-26,64,0.008441815874282426],[112,-26,65,0.007975937454404407],[112,-26,66,0.0076802374779251234],[112,-26,67,0.007523327809973936],[112,-26,68,0.0074600402178723],[112,-26,69,0.007454850210203996],[112,-26,70,0.007483663225595171],[112,-26,71,0.0075318485845388755],[112,-26,72,0.007592430423790599],[112,-26,73,0.007664415353628167],[112,-26,74,0.007751259240482342],[112,-26,75,0.007859475287049915],[112,-26,76,0.00799738533901101],[112,-26,77,0.00817401609372215],[112,-26,78,0.008398141623834808],[112,-26,79,0.008677473360043587],[112,-25,64,0.00909973522405106],[112,-25,65,0.008676421619550281],[112,-25,66,0.008424564891782478],[112,-25,67,0.008313380644296374],[112,-25,68,0.008295710685664325],[112,-25,69,0.008332494007573204],[112,-25,70,0.008396506168425827],[112,-25,71,0.008470460326141606],[112,-25,72,0.008545216255289007],[112,-25,73,0.008618118865861411],[112,-25,74,0.008691468563066053],[112,-25,75,0.008771125567649701],[112,-25,76,0.008865250084254619],[112,-25,77,0.008983179962795174],[112,-25,78,0.00913444724682029],[112,-25,79,0.009327934745497904],[112,-24,64,0.00987022883916951],[112,-24,65,0.009481104072629334],[112,-24,66,0.009262834347523806],[112,-24,67,0.009185239365552267],[112,-24,68,0.00919928585857513],[112,-24,69,0.009262557204327952],[112,-24,70,0.009344934569189068],[112,-24,71,0.009426751431053768],[112,-24,72,0.009497007796030162],[112,-24,73,0.009551707657873878],[112,-24,74,0.009592322001007837],[112,-24,75,0.009624379437094802],[112,-24,76,0.009656186342343723],[112,-24,77,0.00969767812963365],[112,-24,78,0.009759403047961713],[112,-24,79,0.009851639653765561],[112,-23,64,0.010708527186989818],[112,-23,65,0.010347891252235493],[112,-23,66,0.010155528834335048],[112,-23,67,0.010101957341884403],[112,-23,68,0.01013652011652824],[112,-23,69,0.01021373017394769],[112,-23,70,0.010300858287906983],[112,-23,71,0.010376136878989533],[112,-23,72,0.010426975797712765],[112,-23,73,0.010448295399086783],[112,-23,74,0.010440979182717478],[112,-23,75,0.010410448070149758],[112,-23,76,0.010365358177041454],[112,-23,77,0.010316423713444104],[112,-23,78,0.010275366412655154],[112,-23,79,0.010253992649786351],[112,-22,64,0.011573218984663151],[112,-22,65,0.01123813297435791],[112,-22,66,0.011066744768386249],[112,-22,67,0.011030443785514092],[112,-22,68,0.01107732361092609],[112,-22,69,0.011159206260749658],[112,-22,70,0.011241076474194686],[112,-22,71,0.011299339905254075],[112,-22,72,0.011320045788261164],[112,-22,73,0.011297220615888875],[112,-22,74,0.011231315076970417],[112,-22,75,0.011127766308224284],[112,-22,76,0.010995677309170055],[112,-22,77,0.010846615154605822],[112,-22,78,0.010693529415570353],[112,-22,79,0.010549791969606433],[112,-21,64,0.012425484749591568],[112,-21,65,0.012115638330698855],[112,-21,66,0.011963012379839908],[112,-21,67,0.011940100136586033],[112,-21,68,0.011994216966408035],[112,-21,69,0.012074953539779117],[112,-21,70,0.012145364597777186],[112,-21,71,0.01218029433117877],[112,-21,72,0.012164619300602749],[112,-21,73,0.012091595196440678],[112,-21,74,0.011961309649218054],[112,-21,75,0.011779243118549282],[112,-21,76,0.011554939695110266],[112,-21,77,0.011300789446310036],[112,-21,78,0.011030923724050509],[112,-21,79,0.010760224633858388],[112,-20,64,0.012250062053115428],[112,-20,65,0.012539556029849392],[112,-20,66,0.01267837374246768],[112,-20,67,0.012692648063190712],[112,-20,68,0.012635297769085025],[112,-20,69,0.012558443624240079],[112,-20,70,0.012500590414685804],[112,-20,71,0.012488214513352844],[112,-20,72,0.012537480091973563],[112,-20,73,0.012655860071094972],[112,-20,74,0.012632227918858235],[112,-20,75,0.012371472448762973],[112,-20,76,0.012055048102775025],[112,-20,77,0.011696035998689517],[112,-20,78,0.011309604534630984],[112,-20,79,0.01091199905834766],[112,-19,64,0.011600949708272006],[112,-19,65,0.011856832357439562],[112,-19,66,0.0119715865614365],[112,-19,67,0.01196968414202476],[112,-19,68,0.011903683651777727],[112,-19,69,0.011826848504271972],[112,-19,70,0.011778858579599486],[112,-19,71,0.011787284425424474],[112,-19,72,0.011869235207747958],[112,-19,73,0.012032921852773111],[112,-19,74,0.012279133306132489],[112,-19,75,0.012602623987328067],[112,-19,76,0.012511224488239237],[112,-19,77,0.012053209664840513],[112,-19,78,0.011555843940561809],[112,-19,79,0.01103649815838575],[112,-18,64,0.011083354857083387],[112,-18,65,0.011298063274060927],[112,-18,66,0.01138215629894686],[112,-18,67,0.01135815054243971],[112,-18,68,0.01127762553014359],[112,-18,69,0.011194399438653108],[112,-18,70,0.01114896067467821],[112,-18,71,0.01116979662536849],[112,-18,72,0.011274939817826807],[112,-18,73,0.01147344204435874],[112,-18,74,0.011766774493985032],[112,-18,75,0.012150152060219603],[112,-18,76,0.012613780134570209],[112,-18,77,0.012396140952119723],[112,-18,78,0.011799331748723108],[112,-18,79,0.011168950922282506],[112,-17,64,0.010722649022892156],[112,-17,65,0.010886522799059248],[112,-17,66,0.01093094163732299],[112,-17,67,0.010876191204776627],[112,-17,68,0.010772250899196764],[112,-17,69,0.010672895556969993],[112,-17,70,0.01061906711883071],[112,-17,71,0.010640022242219055],[112,-17,72,0.010754739097446704],[112,-17,73,0.010973267538897302],[112,-17,74,0.011298020842536761],[112,-17,75,0.011725007302765619],[112,-17,76,0.012245000092709969],[112,-17,77,0.01274656068674916],[112,-17,78,0.012066000768231276],[112,-17,79,0.011339288248923666],[112,-16,64,0.010474016770962286],[112,-16,65,0.010578355316023103],[112,-16,66,0.010575454116241629],[112,-16,67,0.010483159545011556],[112,-16,68,0.01034923835657515],[112,-16,69,0.010226783200192165],[112,-16,70,0.010156776825586421],[112,-16,71,0.01016902708482281],[112,-16,72,0.010283400148856972],[112,-16,73,0.010511014945034714],[112,-16,74,0.010855397188849052],[112,-16,75,0.011313591451886354],[112,-16,76,0.011877229785062301],[112,-16,77,0.012533555501722924],[112,-16,78,0.0123587926860565],[112,-16,79,0.011547528773923524],[112,-15,64,0.010286294915858963],[112,-15,65,0.010324062135718704],[112,-15,66,0.010268268774159607],[112,-15,67,0.010134183605186984],[112,-15,68,0.00996676608507683],[112,-15,69,0.009817753330123066],[112,-15,70,0.009727696702214171],[112,-15,71,0.009726658712955328],[112,-15,72,0.009835243524825073],[112,-15,73,0.010065608594579101],[112,-15,74,0.0104224560387973],[112,-15,75,0.010904002332087423],[112,-15,76,0.011502924986816846],[112,-15,77,0.012207284909400276],[112,-15,78,0.012677409716907518],[112,-15,79,0.011790133606760346],[112,-14,64,0.01012059322810964],[112,-14,65,0.010086328257948897],[112,-14,66,0.00997385510889473],[112,-14,67,0.009795787056909236],[112,-14,68,0.009593710194601313],[112,-14,69,0.00941731801737548],[112,-14,70,0.009306219609881124],[112,-14,71,0.009290378752862073],[112,-14,72,0.009390917562193145],[112,-14,73,0.009620922870667245],[112,-14,74,0.009986254157574629],[112,-14,75,0.010486351819505298],[112,-14,76,0.011115044571123911],[112,-14,77,0.011861354767292099],[112,-14,78,0.012710300448164683],[112,-14,79,0.012067483995371464],[112,-13,64,0.00994838631718633],[112,-13,65,0.009838123015565577],[112,-13,66,0.009666717466279848],[112,-13,67,0.009444101168180804],[112,-13,68,0.00920796031450899],[112,-13,69,0.009005261929888925],[112,-13,70,0.008874143535537976],[112,-13,71,0.008844080356715493],[112,-13,72,0.008936442886721201],[112,-13,73,0.009165080050604357],[112,-13,74,0.00953692701198147],[112,-13,75,0.010052636609044627],[112,-13,76,0.010707233354664999],[112,-13,77,0.01149078889117413],[112,-13,78,0.012389117753630913],[112,-13,79,0.012382712281248284],[112,-12,64,0.009749764270478757],[112,-12,65,0.00956095704651538],[112,-12,66,0.009329687509178128],[112,-12,67,0.009063222706261627],[112,-12,68,0.008794872772791068],[112,-12,69,0.008568220446495238],[112,-12,70,0.008419403553278075],[112,-12,71,0.00837700161940993],[112,-12,72,0.008462333048864281],[112,-12,73,0.008689801572829708],[112,-12,74,0.0090672912615861],[112,-12,75,0.009596609283255337],[112,-12,76,0.010273975493648696],[112,-12,77,0.011090557847605265],[112,-12,78,0.012033052535923355],[112,-12,79,0.012740659123128288],[112,-11,64,0.009511842278882831],[112,-11,65,0.009243295696395683],[112,-11,66,0.008952368757736511],[112,-11,67,0.00864371767714504],[112,-11,68,0.008345861190511795],[112,-11,69,0.008098384164079238],[112,-11,70,0.007934916292682724],[112,-11,71,0.007882734626931369],[112,-11,72,0.00796279092977906],[112,-11,73,0.00818981234249117],[112,-11,74,0.00857247490113573],[112,-11,75,0.009113649288904731],[112,-11,76,0.009810718058453636],[112,-11,77,0.010655963413458324],[112,-11,78,0.01163702450119576],[112,-11,79,0.01273742303960101],[112,-10,64,0.009227330043616944],[112,-10,65,0.008879129514881842],[112,-10,66,0.008529733741010005],[112,-10,67,0.008181271331142862],[112,-10,68,0.007857124819361067],[112,-10,69,0.007592330026835472],[112,-10,70,0.007417537041894311],[112,-10,71,0.007358330160626248],[112,-10,72,0.00743498083655893],[112,-10,73,0.007662297889642807],[112,-10,74,0.008049574766879697],[112,-10,75,0.008600633440106803],[112,-10,76,0.009313964323710608],[112,-10,77,0.010182961398175585],[112,-10,78,0.01119625153622784],[112,-10,79,0.012338116848782246],[112,-9,64,0.008893262289147497],[112,-9,65,0.008466703037896884],[112,-9,66,0.008060874818594615],[112,-9,67,0.007675485364117675],[112,-9,68,0.007328515422884224],[112,-9,69,0.00704997974207842],[112,-9,70,0.006867130002530297],[112,-9,71,0.0068034984145716034],[112,-9,72,0.00687837647233543],[112,-9,73,0.0071064143851445345],[112,-9,74,0.00749734122627179],[112,-9,75,0.008055805581602403],[112,-9,76,0.008781336226531251],[112,-9,77,0.00966842211090831],[112,-9,78,0.01070671069123804],[112,-9,79,0.011881323418931937],[112,-8,64,0.008509892200088959],[112,-8,65,0.008007403540023559],[112,-8,66,0.007547910215253171],[112,-8,67,0.007128823711813812],[112,-8,68,0.0067625439449637064],[112,-8,69,0.006473686556199412],[112,-8,70,0.006285752579555212],[112,-8,71,0.006219906396788888],[112,-8,72,0.006294185218774485],[112,-8,73,0.00652285170076696],[112,-8,74,0.006915889973241007],[112,-8,75,0.007478645062353326],[112,-8,76,0.008211605369527846],[112,-8,77,0.009110327580666041],[112,-8,78,0.010165503084638903],[112,-8,79,0.011363164700712407],[112,-7,64,0.008079750052049155],[112,-7,65,0.007504811894873635],[112,-7,66,0.006995047258277009],[112,-7,67,0.006545708767240085],[112,-7,68,0.006163528619328924],[112,-7,69,0.005867451843847759],[112,-7,70,0.005676954929354437],[112,-7,71,0.005610572977122053],[112,-7,72,0.005684849403969704],[112,-7,73,0.0059134498706391965],[112,-7,74,0.006306440949289848],[112,-7,75,0.006869733688084451],[112,-7,76,0.0076046918779712576],[112,-7,77,0.008507904479386704],[112,-7,78,0.009571121327650785],[112,-7,79,0.01078135090836969],[112,-6,64,0.007606869713992278],[112,-6,65,0.006963918091361143],[112,-6,66,0.006407805213028198],[112,-6,67,0.005931770244818765],[112,-6,68,0.005536886548131734],[112,-6,69,0.005236273310365201],[112,-6,70,0.005045196300938472],[112,-6,71,0.004979362813039512],[112,-6,72,0.0050536254460684235],[112,-6,73,0.005280869469818888],[112,-6,74,0.00567108450347444],[112,-6,75,0.006230620841794042],[112,-6,76,0.006961630362595513],[112,-6,77,0.007861691556853416],[112,-6,78,0.008923617838662423],[112,-6,79,0.010135447920392369],[112,-5,64,0.007096186059058026],[112,-5,65,0.006390504317405965],[112,-5,66,0.005792400473187209],[112,-5,67,0.005293249266626025],[112,-5,68,0.004888571112737181],[112,-5,69,0.004585626918978014],[112,-5,70,0.004395379985838149],[112,-5,71,0.00433058062720943],[112,-5,72,0.004404241960421782],[112,-5,73,0.004628316571214111],[112,-5,74,0.005012574991245505],[112,-5,75,0.005563686483616418],[112,-5,76,0.006284502191947322],[112,-5,77,0.007173540274142182],[112,-5,78,0.008224672216575009],[112,-5,79,0.009427009111805182],[112,-4,64,0.006553106628156786],[112,-4,65,0.005790698835829711],[112,-4,66,0.0051552971751016126],[112,-4,67,0.004636560552066226],[112,-4,68,0.004224657872600058],[112,-4,69,0.003921084927268352],[112,-4,70,0.003732508939178129],[112,-4,71,0.003668667525187961],[112,-4,72,0.0037406380938489227],[112,-4,73,0.00395932307310824],[112,-4,74,0.004334152092550372],[112,-4,75,0.004872001765790722],[112,-4,76,0.005576333241534758],[112,-4,77,0.006446547220271258],[112,-4,78,0.007477555671352254],[112,-4,79,0.008659569036318105],[112,-3,64,0.005983261142184733],[112,-3,65,0.00517070413628839],[112,-3,66,0.004502926566590801],[112,-3,67,0.003968015849201367],[112,-3,68,0.0035510818550919263],[112,-3,69,0.0032480726489438117],[112,-3,70,0.0030614643449179],[112,-3,71,0.002998001225644657],[112,-3,72,0.003066783501929495],[112,-3,73,0.003277583304870892],[112,-3,74,0.003639390202875414],[112,-3,75,0.004159187024907721],[112,-3,76,0.00484095626212361],[112,-3,77,0.005684916816479736],[112,-3,78,0.006686990370958974],[112,-3,79,0.007838496175914408],[112,-2,64,0.00539243265049986],[112,-2,65,0.004536703048203694],[112,-2,66,0.0038415786659031755],[112,-2,67,0.0032937119501416836],[112,-2,68,0.0028735293370604226],[112,-2,69,0.0025717667438209806],[112,-2,70,0.0023869095695869345],[112,-2,71,0.0023228022269041397],[112,-2,72,0.0023865815122522155],[112,-2,73,0.002586847916803749],[112,-2,74,0.002932076316396077],[112,-2,75,0.0034292669421088925],[112,-2,76,0.0040828369971341915],[112,-2,77,0.004893752755637782],[112,-2,78,0.005858901459159826],[112,-2,79,0.006970701820180677],[112,-1,64,0.004786674231372847],[112,-1,65,0.0038949466388748947],[112,-1,66,0.003177469892424252],[112,-1,67,0.0026195867807330673],[112,-1,68,0.002197487364297189],[112,-1,69,0.0018971379780710106],[112,-1,70,0.0017133220782027442],[112,-1,71,0.0016471480498259257],[112,-1,72,0.0017038571163721131],[112,-1,73,0.001890876140170922],[112,-1,74,0.0022161168774428733],[112,-1,75,0.00268652269254935],[112,-1,76,0.0033068631800152737],[112,-1,77,0.004078776592291786],[112,-1,78,0.005000059430702494],[112,-1,79,0.006064202031037548],[112,0,64,0.004172615220454962],[112,0,65,0.0032520277943153073],[112,0,66,0.0025169904333445735],[112,0,67,0.0019516471425553334],[112,0,68,0.001528454344480927],[112,0,69,0.001229141484940396],[112,0,70,0.0010451559705981475],[112,0,71,9.750977757547319E-4],[112,0,72,0.0010224315039512278],[112,0,73,0.001193447563961751],[112,0,74,0.0014954741243986677],[112,0,75,0.001935340938230354],[112,0,76,0.0025180955574961236],[112,0,77,0.0032459718933582414],[112,0,78,0.004117610521642957],[112,0,79,0.005127529593787948],[112,1,64,0.003557964511661544],[112,1,65,0.002615347013809039],[112,1,66,0.0018671370024758854],[112,1,67,0.001296373011481867],[112,1,68,8.723159548656126E-4],[112,1,69,5.730581652275027E-4],[112,1,70,3.871382215706855E-4],[112,1,71,3.10929448790165E-4],[112,1,72,3.4628523935464255E-4],[112,1,73,4.984351139375703E-4],[112,1,74,7.741332636826322E-4],[112,1,75,0.0011800607349998617],[112,1,76,0.0017214818379462924],[112,1,77,0.002401154785323706],[112,1,78,0.0032184960059320616],[112,1,79,0.0041689970265771144],[112,2,64,0.002952217479424805],[112,2,65,0.0019937745564567264],[112,2,66,0.0012361331776138502],[112,2,67,6.612990370663111E-4],[112,2,68,2.358857769304009E-4],[112,2,69,-6.501436692472097E-5],[112,2,70,-2.5530380351491136E-4],[112,2,71,-3.405127741732914E-4],[112,2,72,-3.2019358559106834E-4],[112,2,73,-1.9006483675456032E-4],[112,2,74,5.609616018300788E-5],[112,2,75,4.24813979821632E-4],[112,2,76,9.215293357119616E-4],[112,2,77,0.0015494670390194462],[112,2,78,0.002308757150783689],[112,2,79,0.003195808262685533],[112,3,64,0.0023675298401311666],[112,3,65,0.0013984831996319428],[112,3,66,6.3422014533736E-4],[112,3,67,5.576246767317284E-5],[112,3,68,-3.7239552429462304E-4],[112,3,69,-6.775244166283233E-4],[112,3,70,-8.754850111499385E-4],[112,3,71,-9.73362843586415E-4],[112,3,72,-9.718783505577021E-4],[112,3,73,-8.67549759070471E-4],[112,3,74,-6.546068595178229E-4],[112,3,75,-3.2665440715847865E-4],[112,3,76,1.2191552101629205E-4],[112,3,77,6.947623111254887E-4],[112,3,78,0.001392686270231229],[112,3,79,0.002212967737362714],[112,4,64,0.0018198150380492814],[112,4,65,8.439991100387268E-4],[112,4,66,7.465797563807554E-5],[112,4,67,-5.081481940083405E-4],[112,4,68,-9.415726673171362E-4],[112,4,69,-0.0012546559245716002],[112,4,70,-0.001464751107316208],[112,4,71,-0.001580145127574936],[112,4,72,-0.0016024666014242796],[112,4,73,-0.0015288507380996227],[112,4,74,-0.0013538593200399577],[112,4,75,-0.0010711544883397408],[112,4,76,-6.749256250692554E-4],[112,4,77,-1.6106919501776104E-4],[112,4,78,4.7187802955330643E-4],[112,4,79,0.0012220513910688449],[112,5,64,0.0013300613084003558],[112,5,65,3.4946646776136425E-4],[112,5,66,-4.2506732074548497E-4],[112,5,67,-0.0010144488316540011],[112,5,68,-0.001457105128476995],[112,5,69,-0.0017833507909402774],[112,5,70,-0.0020116188627190912],[112,5,71,-0.002151061159065736],[112,5,72,-0.002203943413177617],[112,5,73,-0.0021678024848641375],[112,5,74,-0.0020373637476833024],[112,5,75,-0.0018062173426736773],[112,5,76,-0.0014682525566832526],[112,5,77,-0.0010188501473541315],[112,5,78,-4.558329909892129E-4],[112,5,79,2.1982403057905218E-4],[112,6,64,9.258639735322054E-4],[112,6,65,-5.987704302860753E-5],[112,6,66,-8.418326491471518E-4],[112,6,67,-0.0014419205007181063],[112,6,68,-0.001899613730247688],[112,6,69,-0.002246163866615997],[112,6,70,-0.0025007682227612695],[112,6,71,-0.0026731512763836706],[112,6,72,-0.002765946540502975],[112,6,73,-0.002776845697222077],[112,6,74,-0.002700513088125412],[112,6,75,-0.002530264219265674],[112,6,76,-0.0022595075011728476],[112,6,77,-0.001882949001104891],[112,6,78,-0.0013975605318726852],[112,6,79,-8.033119347277357E-4],[112,7,64,6.412522415705265E-4],[112,7,65,-3.5211669303449766E-4],[112,7,66,-0.0011456086982855277],[112,7,67,-0.0017621843511779144],[112,7,68,-0.00224227814307862],[112,7,69,-0.0026179249375568522],[112,7,70,-0.002908892289663841],[112,7,71,-0.0031252527466102426],[112,7,72,-0.0032697614343117536],[112,7,73,-0.003340005505142965],[112,7,74,-0.0033303235043902315],[112,7,75,-0.0032334932714112234],[112,7,76,-0.003042187548071212],[112,7,77,-0.002750197018064788],[112,7,78,-0.002353421042353392],[112,7,79,-0.001850626883959671],[112,8,64,5.043641986210619E-4],[112,8,65,-4.978257974899539E-4],[112,8,66,-0.0013056829724155483],[112,8,67,-0.0019430595511331825],[112,8,68,-0.0024511825823621443],[112,8,69,-0.0028627332750361203],[112,8,70,-0.0031978939395557525],[112,8,71,-0.003466914672532895],[112,8,72,-0.003672491387093681],[112,8,73,-0.003811920019218035],[112,8,74,-0.003879024922950028],[112,8,75,-0.0038658600204558636],[112,8,76,-0.003764181824227317],[112,8,77,-0.003566693994737391],[112,8,78,-0.003268063633738631],[112,8,79,-0.002865710037046189],[112,9,64,5.322739934458792E-4],[112,9,65,-4.778347158444292E-4],[112,9,66,-0.0013007812392226289],[112,9,67,-0.0019609667235793316],[112,9,68,-0.0025001093337431203],[112,9,69,-0.002951359354842766],[112,9,70,-0.0033351636844618795],[112,9,71,-0.0036618208032819506],[112,9,72,-0.003933856077710628],[112,9,73,-0.004148177838753865],[112,9,74,-0.004298012205087039],[112,9,75,-0.004374615165220863],[112,9,76,-0.0043687609789382405],[112,9,77,-0.0042720064983895615],[112,9,78,-0.004077731540649498],[112,9,79,-0.0037819559621429786],[112,10,64,7.335009213656154E-4],[112,10,65,-2.818740558516166E-4],[112,10,66,-0.0011187890016805266],[112,10,67,-0.0018017154609102626],[112,10,68,-0.0023724602391628586],[112,10,69,-0.0028644290951659584],[112,10,70,-0.003298187162880552],[112,10,71,-0.0036839881703207237],[112,10,72,-0.004024136954585696],[112,10,73,-0.004315138123931879],[112,10,74,-0.004549628797382362],[112,10,75,-0.004718093890991009],[112,10,76,-0.004810362957014326],[112,10,77,-0.0048168881145800625],[112,10,78,-0.004729803134350517],[112,10,79,-0.004543764251250917],[112,11,64,0.001110216248657297],[112,11,65,9.363375090390984E-5],[112,11,66,-7.545678558863964E-4],[112,11,67,-0.00145836763022788],[112,11,68,-0.0020591884045042144],[112,11,69,-0.0025904477178465657],[112,11,70,-0.0030726865664706597],[112,11,71,-0.0035160524215711738],[112,11,72,-0.003922633021411934],[112,11,73,-0.004288582865160822],[112,11,74,-0.004606040315628768],[112,11,75,-0.004864833745113003],[112,11,76,-0.005053975684283587],[112,11,77,-0.005162944455284959],[112,11,78,-0.005182753283442766],[112,11,79,-0.0051068073833845885],[112,12,64,0.001660686931113067],[112,12,65,6.480151854749002E-4],[112,12,66,-2.075461047117302E-4],[112,12,67,-9.288839995768848E-4],[112,12,68,-0.0015565249272438465],[112,12,69,-0.002123632820503372],[112,12,70,-0.0026505877645332365],[112,12,71,-0.0031473973967451074],[112,12,72,-0.003615981185852294],[112,12,73,-0.004052255504627785],[112,12,74,-0.004448017399920393],[112,12,75,-0.004792625474694251],[112,12,76,-0.005074476806938622],[112,12,77,-0.005282279336190288],[112,12,78,-0.005406119646755582],[112,12,79,-0.00543832656387931],[112,13,64,0.0023819613223419103],[112,13,65,0.0013790234949959933],[112,13,66,5.209208642980204E-4],[112,13,67,-2.1355005902246258E-4],[112,13,68,-8.634969593234966E-4],[112,13,69,-0.0014615535044143742],[112,13,70,-0.002027810594267442],[112,13,71,-0.0025721271271716742],[112,13,72,-0.003096340155616592],[112,13,73,-0.0035962857706797694],[112,13,74,-0.00406362863903826],[112,13,75,-0.004487498606925628],[112,13,76,-0.004855933274633068],[112,13,77,-0.00515712593059808],[112,13,78,-0.0053804787125465514],[112,13,79,-0.00551746133110295],[112,14,64,0.0032728019965287455],[112,14,65,0.0022857587436496715],[112,14,66,0.0014304254276754722],[112,14,67,6.878238029768307E-4],[112,14,68,2.076751404970274E-5],[112,14,69,-6.025712283531611E-4],[112,14,70,-0.0012018783444356978],[112,14,71,-0.0017868767104489204],[112,14,72,-0.0023594348162113703],[112,14,73,-0.0029154981993959233],[112,14,74,-0.0034468416283876947],[112,14,75,-0.003942640468774373],[112,14,76,-0.004390860131071747],[112,14,77,-0.004779462956399132],[112,14,78,-0.00509743234952157],[112,14,79,-0.005335614411736429],[112,15,64,0.004344924481079173],[112,15,65,0.003379910921539948],[112,15,66,0.0025326559983473765],[112,15,67,0.0017868594393484541],[112,15,68,0.0011077150723366649],[112,15,69,4.64470781864251E-4],[112,15,70,-1.620438832197138E-4],[112,15,71,-7.814331311802428E-4],[112,15,72,-0.0013957138286943148],[112,15,73,-0.0020011315077017406],[112,15,74,-0.0025898115251707455],[112,15,75,-0.0031512438529953677],[112,15,76,-0.003673600404624456],[112,15,77,-0.00414488423144807],[112,15,78,-0.004553910342704767],[112,15,79,-0.004891118314751095],[112,16,64,0.0056376979971678245],[112,16,65,0.004700624251965348],[112,16,66,0.0038662975344785793],[112,16,67,0.0031214368726623053],[112,16,68,0.002434031717963827],[112,16,69,0.0017746940859733461],[112,16,70,0.0011249155136724602],[112,16,71,4.752422953537374E-4],[112,16,72,-1.7654844620370919E-4],[112,16,73,-8.271262196106465E-4],[112,16,74,-0.0014691363038360345],[112,16,75,-0.002092579104721908],[112,16,76,-0.0026860386577331726],[112,16,77,-0.0032377595934636122],[112,16,78,-0.003736572265404717],[112,16,79,-0.004172666114948458],[112,17,64,0.007174795492206179],[112,17,65,0.006271274719309184],[112,17,66,0.0054542804132568885],[112,17,67,0.004713779220102502],[112,17,68,0.004020925036674242],[112,17,69,0.0033480013914681454],[112,17,70,0.0026773465477817507],[112,17,71,0.0019997414448973193],[112,17,72,0.001312762078940522],[112,17,73,6.192601350005584E-4],[112,17,74,-7.40264002899221E-5],[112,17,75,-7.577312621904743E-4],[112,17,76,-0.001420985529620538],[112,17,77,-0.0020524101516572525],[112,17,78,-0.002640975025353797],[112,17,79,-0.00317672460543108],[112,18,64,0.008956675106309828],[112,18,65,0.008091955083292007],[112,18,66,0.007296331455870065],[112,18,67,0.006563136541573365],[112,18,68,0.005867004779001311],[112,18,69,0.005182208590994464],[112,18,70,0.004492145678074255],[112,18,71,0.0037879565268995248],[112,18,72,0.0030670706038333725],[112,18,73,0.002331861128641629],[112,18,74,0.0015884100153042387],[112,18,75,8.453842704505513E-4],[112,18,76,1.1302484288700193E-4],[112,18,77,-5.977513783200537E-4],[112,18,78,-0.0012761360129266016],[112,18,79,-0.0019120999698571208],[112,19,64,0.010964326881491949],[112,19,65,0.01014322002775766],[112,19,66,0.009372690436117916],[112,19,67,0.008649448617089174],[112,19,68,0.00795186781736692],[112,19,69,0.007256527563437752],[112,19,70,0.006548115665152843],[112,19,71,0.005818287020430225],[112,19,72,0.005064417317411761],[112,19,73,0.00428844455736725],[112,19,74,0.0034957998260148264],[112,19,75,0.002694428497202893],[112,19,76,0.0018939028081468785],[112,19,77,0.0011046265009052533],[112,19,78,3.3713198193606356E-4],[112,19,79,-3.9852978800149447E-4],[112,20,64,0.013162851620429062],[112,20,65,0.01238966520990036],[112,20,66,0.011647663882925896],[112,20,67,0.010936849864332264],[112,20,68,0.010239531599161342],[112,20,69,0.009534905548540867],[112,20,70,0.008809188607699088],[112,20,71,0.008054724893103788],[112,20,72,0.007268956861154682],[112,20,73,0.006453462783747515],[112,20,74,0.0056130618341915335],[112,20,75,0.0047549878485459015],[112,20,76,0.0038881326374966547],[112,20,77,0.0030223595333481847],[112,20,78,0.002167887666594859],[112,20,79,0.0013347472780757034],[112,21,64,0.013292079038928156],[112,21,65,0.013997722145812998],[112,21,66,0.014073013218754406],[112,21,67,0.013377013662384871],[112,21,68,0.01268171361305725],[112,21,69,0.01196921889312881],[112,21,70,0.011227513579904605],[112,21,71,0.010449816550710913],[112,21,72,0.009633776159788056],[112,21,73,0.008780709498059152],[112,21,74,0.007894887302387481],[112,21,75,0.0069828654493588865],[112,21,76,0.006052863834993809],[112,21,77,0.005114193306675442],[112,21,78,0.004176731177633921],[112,21,79,0.003250445718355169],[112,22,64,0.010955033317410722],[112,22,65,0.01160619704979083],[112,22,66,0.012263951066263991],[112,22,67,0.012922350717859226],[112,22,68,0.013590919181844536],[112,22,69,0.014284407687805955],[112,22,70,0.013746406989089481],[112,22,71,0.012947499976049713],[112,22,72,0.012103601787415272],[112,22,73,0.011215882113508577],[112,22,74,0.010288143793576064],[112,22,75,0.0093263146816739],[112,22,76,0.008337964790823032],[112,22,77,0.007331849354409434],[112,22,78,0.00631747836246147],[112,22,79,0.005304713047384588],[112,23,64,0.00859463996664067],[112,23,65,0.009188961823079983],[112,23,66,0.009809963243292278],[112,23,67,0.010449173547858983],[112,23,68,0.011111986614001068],[112,23,69,0.01180974598714591],[112,23,70,0.012550300579868336],[112,23,71,0.013338162035567525],[112,23,72,0.01417485943100447],[112,23,73,0.013699048972886995],[112,23,74,0.012734201908865386],[112,23,75,0.011728215076875773],[112,23,76,0.010688039258437995],[112,23,77,0.009621875627232703],[112,23,78,0.008538840780883197],[112,23,79,0.007448637116176463],[112,24,64,0.006277031858804793],[112,24,65,0.006812891054577803],[112,24,66,0.007395021915381752],[112,24,67,0.008012815875428599],[112,24,68,0.008667605940547872],[112,24,69,0.009367136817756007],[112,24,70,0.010116863826270969],[112,24,71,0.010919882594461609],[112,24,72,0.01177706389960624],[112,24,73,0.012687207175381136],[112,24,74,0.013647212233847019],[112,24,75,0.014128190516077945],[112,24,76,0.013044406101790378],[112,24,77,0.011927481949560217],[112,24,78,0.010786112817459684],[112,24,79,0.009629782716556064],[112,25,64,0.004068967466004688],[112,25,65,0.0045455220510084325],[112,25,66,0.005087071020582638],[112,25,67,0.005681302483288748],[112,25,68,0.006325621273533809],[112,25,69,0.007024029412827115],[112,25,70,0.007779432141384759],[112,25,71,0.008593355493216947],[112,25,72,0.009465869555043983],[112,25,73,0.01039554953582975],[112,25,74,0.011379474407122957],[112,25,75,0.012413262784268884],[112,25,76,0.013491145632565165],[112,25,77,0.014190361337455533],[112,25,78,0.013002867283347538],[112,25,79,0.0117937593530068],[112,26,64,0.00203532971004459],[112,26,65,0.002452539840608538],[112,26,66,0.0029522460916320036],[112,26,67,0.003520901217106167],[112,26,68,0.004152175372149985],[112,26,69,0.004846236143304083],[112,26,70,0.005603317624823997],[112,26,71,0.006423244872907283],[112,26,72,0.0073051571072314915],[112,26,73,0.008247286330686625],[112,26,74,0.009246791340598989],[112,26,75,0.010299646965664691],[112,26,76,0.011400588228291297],[112,26,77,0.012543109003159119],[112,26,78,0.013719514620634471],[112,26,79,0.013885822050597867],[112,27,64,2.3681715981873394E-4],[112,27,65,5.954517986215135E-4],[112,27,66,0.001052545241381678],[112,27,67,0.0015938029593718483],[112,27,68,0.002209409781475128],[112,27,69,0.002895662453321399],[112,27,70,0.00365004202690494],[112,27,71,0.0044705671664666356],[112,27,72,0.005355331789806674],[112,27,73,0.006302113914567769],[112,27,74,0.007308055892453008],[112,27,75,0.008369416030713913],[112,27,76,0.009481391421523612],[112,27,77,0.010638011627372546],[112,27,78,0.01183210270574476],[112,27,79,0.013055320900475524],[112,28,64,-0.001272168240604514],[112,28,65,-9.705440264770711E-4],[112,28,66,-5.563109309072355E-4],[112,28,67,-4.401596785815522E-5],[112,28,68,5.533391372729827E-4],[112,28,69,0.0012282006832594645],[112,28,70,0.0019752563480843798],[112,28,71,0.0027906417293474543],[112,28,72,0.0036713095464170503],[112,28,73,0.004614483775660189],[112,28,74,0.005617199104751119],[112,28,75,0.006675925869013228],[112,28,76,0.007786280414877683],[112,28,77,0.008942820624406371],[112,28,78,0.010138926132028067],[112,28,79,0.011366762571860008],[112,29,64,-0.00244543246864618],[112,29,65,-0.0021984925354616193],[112,29,66,-0.0018268263031681851],[112,29,67,-0.0013447449447377827],[112,29,68,-7.680965617036455E-4],[112,29,69,-1.0820869197675358E-4],[112,29,70,6.268150990043815E-4],[112,29,71,0.0014311811435432896],[112,29,72,0.002300625735670658],[112,29,73,0.0032317316159564],[112,29,74,0.004221341456413559],[112,29,75,0.00526606866801772],[112,29,76,0.006361905601974242],[112,29,77,0.007503928971572363],[112,29,78,0.008686102086078043],[112,29,79,0.009901173263541424],[112,30,64,-0.003246695027394847],[112,30,65,-0.003051412515690013],[112,30,66,-0.002721478563210436],[112,30,67,-0.0022704994157801573],[112,30,68,-0.0017167976115272257],[112,30,69,-0.0010753445804361904],[112,30,70,-3.5699127884446707E-4],[112,30,71,4.305243087049774E-4],[112,30,72,0.0012816690255617984],[112,30,73,0.0021923119503370375],[112,30,74,0.003159028115364827],[112,30,75,0.004178509011785088],[112,30,76,0.005247080077908067],[112,30,77,0.006360325095977584],[112,30,78,0.007512817160199812],[112,30,79,0.008697955628030999],[112,31,64,-0.0036510838628211464],[112,31,65,-0.0035038199711546],[112,31,66,-0.0032142661126112735],[112,31,67,-0.0027948858447454875],[112,31,68,-0.0022660837811907916],[112,31,69,-0.0016462974087126305],[112,31,70,-9.4904202516478E-4],[112,31,71,-1.8398426461586933E-4],[112,31,72,6.420434405039295E-4],[112,31,73,0.0015241406780135479],[112,31,74,0.002458550080494744],[112,31,75,0.0034419821753710737],[112,31,76,0.004471054380133658],[112,31,77,0.005541844169622294],[112,31,78,0.006649556159094215],[112,31,79,0.007788302575349019],[112,32,64,-0.0036464143239330954],[112,32,65,-0.00354303863607394],[112,32,66,-0.003292047447638176],[112,32,67,-0.0029043663312788917],[112,32,68,-0.0024020822931303917],[112,32,69,-0.001806881427983886],[112,32,70,-0.0011348255898437876],[112,32,71,-3.974652396264616E-4],[112,32,72,3.9706182147658244E-4],[112,32,73,0.0012430483660813793],[112,32,74,0.002136353375499354],[112,32,75,0.00307365614847325],[112,32,76,0.0040518293217659575],[112,32,77,0.0050674309329227195],[112,32,78,0.00611631535735816],[112,32,79,0.007193362665572095],[112,33,64,-0.0032342466276022966],[112,33,65,-0.0031702921828844583],[112,33,66,-0.0029556676332594825],[112,33,67,-0.002599417660856351],[112,33,68,-0.0021249195854023063],[112,33,69,-0.0015568624369162133],[112,33,70,-9.137086569346905E-4],[112,33,71,-2.0882129234961426E-4],[112,33,72,5.48374257499512E-4],[112,33,73,0.0013513472734874871],[112,33,74,0.0021955387326485962],[112,33,75,0.003077559181873565],[112,33,76,0.003994508019827946],[112,33,77,0.00494341442072623],[112,33,78,0.005920799826123732],[112,33,79,0.006922361635127357],[112,34,64,-0.0024307160344400744],[112,34,65,-0.0024015723680153468],[112,34,66,-0.002220866208493652],[112,34,67,-0.00189547927338715],[112,34,68,-0.001449711542168711],[112,34,69,-9.109958711366143E-4],[112,34,70,-3.000299432525365E-4],[112,34,71,3.6810431588807043E-4],[112,34,72,0.0010827353402927333],[112,34,73,0.0018365154305223712],[112,34,74,0.0026244544813535855],[112,34,75,0.003443074913881784],[112,34,76,0.004289688468278949],[112,34,77,0.005161795192761494],[112,34,78,0.006056604652713392],[112,34,79,0.006970679083707842],[112,35,64,-0.0012671297045705428],[112,35,65,-0.0012682771088735436],[112,35,66,-0.0011189606005146447],[112,35,67,-8.236843658349578E-4],[112,35,68,-4.073466018128582E-4],[112,35,69,1.0013007376110949E-4],[112,35,70,6.759862348122161E-4],[112,35,71,0.0013035320404922945],[112,35,72,0.001970914379429312],[112,35,73,0.002670001370168248],[112,35,74,0.0033953856305821827],[112,35,75,0.004143507398207946],[112,35,76,0.004911898257010955],[112,35,77,0.005698545906075411],[112,35,78,0.006501380094309259],[112,35,79,0.007317879544780275],[112,36,64,2.0967601296777806E-4],[112,36,65,1.8238774233882553E-4],[112,36,66,3.0270111429269396E-4],[112,36,67,5.686319049455823E-4],[112,36,68,9.549441055590925E-4],[112,36,69,0.0014294518830523359],[112,36,70,0.001967501902019064],[112,36,71,0.0025509181105611003],[112,36,72,0.003166752988692556],[112,36,73,0.0038061533796985778],[112,36,74,0.004463342402431631],[112,36,75,0.005134718616572663],[112,36,76,0.005818073290859583],[112,36,77,0.006511926308205638],[112,36,78,0.007214980933596788],[112,36,79,0.00792569737295442],[112,37,64,0.0019372242919582178],[112,37,65,0.0018872493637620061],[112,37,66,0.001980524477497497],[112,37,67,0.0022176533770785554],[112,37,68,0.002573235673100319],[112,37,69,0.003012994566805554],[112,37,70,0.0035105283970477594],[112,37,71,0.004046299475281848],[112,37,72,0.004606374712131458],[112,37,73,0.005181277400485822],[112,37,74,0.005764951733443323],[112,37,75,0.006353841316133992],[112,37,76,0.0069460826146111885],[112,37,77,0.0075408139745492455],[112,37,78,0.008137600539451135],[112,37,79,0.008735975104680042],[112,38,64,0.003838987635667105],[112,38,65,0.0037687987610034975],[112,38,66,0.0038363228567555837],[112,38,67,0.004044749448282963],[112,38,68,0.0043685778096651615],[112,38,69,0.004771526974081274],[112,38,70,0.005225549799954815],[112,38,71,0.005709863304121941],[112,38,72,0.006209676050180264],[112,38,73,0.006715023291366114],[112,38,74,0.007219711531256605],[112,38,75,0.007720373852815303],[112,38,76,0.008215637056443138],[112,38,77,0.008705401342642943],[112,38,78,0.00919023297661389],[112,38,79,0.009670870082722605],[112,39,64,0.005856248495851856],[112,39,65,0.005768942428818211],[112,39,66,0.005812828591206693],[112,39,67,0.005993692043558075],[112,39,68,0.006285924098790415],[112,39,69,0.0066512217669835415],[112,39,70,0.0070599172837684165],[112,39,71,0.007490044729236455],[112,39,72,0.00792604786069622],[112,39,73,0.008357592583723846],[112,39,74,0.008778485819738216],[112,39,75,0.009185702221100609],[112,39,76,0.009578519879878768],[112,39,77,0.009957765875747683],[112,39,78,0.010325172213914371],[112,39,79,0.010682842417554633],[112,40,64,0.00795199911683559],[112,40,65,0.0078527998339271],[112,40,66,0.00787742380000841],[112,40,67,0.00803432596634236],[112,40,68,0.008297765210116225],[112,40,69,0.008627318558353083],[112,40,70,0.008991641811300494],[112,40,71,0.00936757058146936],[112,40,72,0.009738804009896006],[112,40,73,0.010094690088240954],[112,40,74,0.010429114448282319],[112,40,75,0.010739494178284629],[112,40,76,0.011025877925433015],[112,40,77,0.011290153246777665],[112,40,78,0.011535361879757849],[112,40,79,0.01176512331941465],[112,41,64,0.010085208207916708],[112,41,65,0.009981030590784494],[112,41,66,0.009992653794710761],[112,41,67,0.01013130569229349],[112,41,68,0.010371076848971983],[112,41,69,0.010669280343053767],[112,41,70,0.010992786749321377],[112,41,71,0.011317160713545413],[112,41,72,0.011625318194413085],[112,41,73,0.011906282174339389],[112,41,74,0.012154038809648392],[112,41,75,0.0123664956938554],[112,41,76,0.012544543612188057],[112,41,77,0.012691222872751243],[112,41,78,0.012810995011621185],[112,41,79,0.012909120387635881],[112,42,64,0.012213263210617088],[112,42,65,0.012112184092616657],[112,42,66,0.012118464643712565],[112,42,67,0.012246203541972051],[112,42,68,0.01246927773119171],[112,42,69,0.012742574614603095],[112,42,70,0.013031042152599233],[112,42,71,0.0133088644558722],[112,42,72,0.013558092501224995],[112,42,73,0.013767369916037215],[112,42,74,0.013930755912948801],[112,42,75,0.014046647165552985],[112,42,76,0.014116800125621951],[112,42,77,0.014145454994255511],[112,42,78,0.014138562275022151],[112,42,79,0.014103112558578101],[112,43,64,0.014295905379938955],[112,43,65,0.014206622547243909],[112,43,66,0.014216087484022616],[112,43,67,0.014341333812941991],[112,43,68,0.014555970765122902],[112,43,69,0.014812303045226637],[112,43,70,0.015073210186362143],[112,43,71,0.015311366428867896],[112,43,72,0.015359404595474442],[112,43,73,0.015195209081585915],[112,43,74,0.015088071920722044],[112,43,75,0.015039208960780518],[112,43,76,0.015046079242755127],[112,43,77,0.01510330320689289],[112,43,78,0.015203481505859496],[112,43,79,0.015332967754872869],[112,44,64,0.014747455230475921],[112,44,65,0.014816791845326223],[112,44,66,0.014793197376657238],[112,44,67,0.014656729731476484],[112,44,68,0.01443414664958058],[112,44,69,0.014175899926520482],[112,44,70,0.013921357782798762],[112,44,71,0.01369953426931412],[112,44,72,0.01353050277333868],[112,44,73,0.013426722571588284],[112,44,74,0.013394276135567316],[112,44,75,0.013434015169450808],[112,44,76,0.013542613636758776],[112,44,77,0.01371352630751238],[112,44,78,0.01393785163088657],[112,44,79,0.014205098007865022],[112,45,64,0.012947340995732038],[112,45,65,0.012989033035259953],[112,45,66,0.01294608061585211],[112,45,67,0.012795672375765635],[112,45,68,0.012564973248701468],[112,45,69,0.012307255194950677],[112,45,70,0.012064210469611827],[112,45,71,0.011866623111601972],[112,45,72,0.011735796015719297],[112,45,73,0.01168489599327142],[112,45,74,0.01172021443176378],[112,45,75,0.011842341428773558],[112,45,76,0.01204725154141348],[112,45,77,0.012327299559339458],[112,45,78,0.012672124974629854],[112,45,79,0.013069464084427407],[112,46,64,0.011256903278381327],[112,46,65,0.011263842488581585],[112,46,66,0.011194057157927581],[112,46,67,0.011022034127077446],[112,46,68,0.010775437511142854],[112,46,69,0.010510421349108583],[112,46,70,0.010271089734003707],[112,46,71,0.010090103141192432],[112,46,72,0.009990111212195639],[112,46,73,0.009985109198765966],[112,46,74,0.010081715595258858],[112,46,75,0.010280368739329662],[112,46,76,0.010576440415381557],[112,46,77,0.010961264750717724],[112,46,78,0.011423080949684437],[112,46,79,0.011947888664699757],[112,47,64,0.009680510554593038],[112,47,65,0.009646907643769107],[112,47,66,0.009544012848980658],[112,47,67,0.009343874550597882],[112,47,68,0.009074760642099515],[112,47,69,0.008795721958856374],[112,47,70,0.00855332577469308],[112,47,71,0.008382189909742389],[112,47,72,0.008306412001505241],[112,47,73,0.00834092891385965],[112,47,74,0.008492803744916747],[112,47,75,0.00876243813151841],[112,47,76,0.009144707788253534],[112,47,77,0.009630019460983326],[112,47,78,0.010205287717812064],[112,47,79,0.0108548302428104],[112,48,64,0.008270390396550273],[112,48,65,0.0081906539599616],[112,48,66,0.008048124466941938],[112,48,67,0.007812722042838522],[112,48,68,0.0075134018652820685],[112,48,69,0.007212059310309593],[112,48,70,0.0069577330045712165],[112,48,71,0.006787059281750282],[112,48,72,0.0067256866599736224],[112,48,73,0.00678962768264901],[112,48,74,0.0069865455372349],[112,48,75,0.007316973085822698],[112,48,76,0.007775462164745651],[112,48,77,0.0083516612366941],[112,48,78,0.009031319706961118],[112,48,79,0.009797217444191722],[112,49,64,0.007082015901536737],[112,49,65,0.0069506835778319715],[112,49,66,0.006761674836458297],[112,49,67,0.006483126668058742],[112,49,68,0.0061447368645735235],[112,49,69,0.005811122126185045],[112,49,70,0.005533752999906848],[112,49,71,0.0053513212122530416],[112,49,72,0.005291126381224916],[112,49,73,0.00537040795518227],[112,49,74,0.0055976197724775115],[112,49,75,0.005973644835313776],[112,49,76,0.006492948095564308],[112,49,77,0.007144665258370506],[112,49,78,0.007913625820321442],[112,49,79,0.008781308771782265],[112,50,64,0.006158095803681778],[112,50,65,0.005970113634167378],[112,50,66,0.005727846423053652],[112,50,67,0.005398026372409997],[112,50,68,0.005011123296483958],[112,50,69,0.004634284659755458],[112,50,70,0.0043213244751996996],[112,50,71,0.0041129965328416535],[112,50,72,0.004038339357779068],[112,50,73,0.004115974769479124],[112,50,74,0.004355357445042691],[112,50,75,0.004757973066886763],[112,50,76,0.005318482818414763],[112,50,77,0.006025812178981752],[112,50,78,0.006864182161080052],[112,50,79,0.007814081327201867],[112,51,64,0.005528688760668518],[112,51,65,0.005279644820681688],[112,51,66,0.0049777401684785606],[112,51,67,0.004588708497920574],[112,51,68,0.004143797288966792],[112,51,69,0.0037124330206257296],[112,51,70,0.003350636793518751],[112,51,71,0.0031011973993000904],[112,51,72,0.0029949601570589198],[112,51,73,0.003052078096198667],[112,51,74,0.003283222929090155],[112,51,75,0.0036907534109941673],[112,51,76,0.0042698388448931405],[112,51,77,0.005009535654365432],[112,51,78,0.005893815117909126],[112,51,79,0.006902540532368226],[112,52,64,0.00521147104650869],[112,52,65,0.004897784378641889],[112,52,66,0.004530549019612179],[112,52,67,0.004074926108855175],[112,52,68,0.0035629247657231774],[112,52,69,0.0030659458472589787],[112,52,70,0.002642036540074419],[112,52,71,0.002335958479406483],[112,52,72,0.0021804063119868463],[112,52,73,0.0021971975723748243],[112,52,74,0.0023984313894764918],[112,52,75,0.0027876136692412943],[112,52,76,0.003360746535220084],[112,52,77,0.004107379950339752],[112,52,78,0.005011623590496725],[112,52,79,0.006053117192755851],[112,53,64,0.005212161582536982],[112,53,65,0.004831227566621624],[112,53,66,0.004393890272779385],[112,53,67,0.003865173332101153],[112,53,68,0.00327781187265625],[112,53,69,0.0027048336614151174],[112,53,70,0.0022060915260629934],[112,53,71,0.001828223244980658],[112,53,72,0.0016057864461547849],[112,53,73,0.0015623738544854153],[112,53,74,0.0017117065102389534],[112,53,75,0.002058702684762702],[112,53,76,0.0026005203297310596],[112,53,77,0.00332757101283672],[112,53,78,0.004224503415737523],[112,53,79,0.0052711545987478995],[112,54,64,0.005525108151755832],[112,54,65,0.005075401559192841],[112,54,66,0.004564300784375249],[112,54,67,0.003957123851878054],[112,54,68,0.0032872787325109887],[112,54,69,0.0026290412007918666],[112,54,70,0.0020438165635542865],[112,54,71,0.0015799897192178265],[112,54,72,0.0012739642540657388],[112,54,73,0.0011511908352143188],[112,54,74,0.0012271826602303253],[112,54,75,0.001508515800282936],[112,54,76,0.001993812357670393],[112,54,77,0.0026747044493869118],[112,54,78,0.003536777126019278],[112,54,79,0.004560488439378206],[112,55,64,0.006134038526231126],[112,55,65,0.005615175625873735],[112,55,66,0.005027898998296361],[112,55,67,0.004338236607904579],[112,55,68,0.0035802006729614587],[112,55,69,0.0028289169569144434],[112,55,70,0.002147065295514575],[112,55,71,0.0015846199870844738],[112,55,72,0.0011797826277030329],[112,55,73,9.599129533664129E-4],[112,55,74,9.424556149528936E-4],[112,55,75,0.00113586086222664],[112,55,76,0.0015404971706559658],[112,55,77,0.002149553909481734],[112,55,78,0.002949932221333283],[112,55,79,0.003923122362607272],[112,56,64,0.007012980093437432],[112,56,65,0.006425741302139895],[112,56,66,0.005761217610768376],[112,56,67,0.004986532625016131],[112,56,68,0.004136220962229391],[112,56,69,0.0032858540453605395],[112,56,70,0.002499092277528585],[112,56,71,0.0018273177025394528],[112,56,72,0.0013104521610677624],[112,56,73,9.777817818000338E-4],[112,56,74,8.487859243910638E-4],[112,56,75,9.339687153436657E-4],[112,56,76,0.0012356913492952031],[112,56,77,0.00174900336679907],[112,56,78,0.0024624711657538615],[112,56,79,0.0033590020571659823],[112,57,64,0.008127351395432612],[112,57,65,0.007473666097866471],[112,57,66,0.006732210533752069],[112,57,67,0.005871546751051652],[112,57,68,0.004926638944598424],[112,57,69,0.003973106404504706],[112,57,70,0.003075289389089391],[112,57,71,0.0022857777211725662],[112,57,72,0.0016461081738380747],[112,57,73,0.001187476003372911],[112,57,74,9.314589580475161E-4],[112,57,75,8.9075209033468E-4],[112,57,76,0.0010699117060723577],[112,57,77,0.001466106797193935],[112,57,78,0.0020698763253414994],[112,57,79,0.0028658907520961777],[112,58,64,0.00943522879480067],[112,58,65,0.008718124093437907],[112,58,66,0.007901437629380365],[112,58,67,0.006955457898723088],[112,58,68,0.005915477295951551],[112,58,69,0.0048567841570629645],[112,58,70,0.0038441005023184946],[112,58,71,0.002931011850292655],[112,58,72,0.0021605402736279925],[112,58,73,0.0015657387793533118],[112,58,74,0.0011703055699676251],[112,58,75,9.892167163557412E-4],[112,58,76,0.0010293757551842306],[112,58,77,0.0012902787120734486],[112,58,78,0.0017646930480367017],[112,58,79,0.0024393490307067878],[112,59,64,0.010888791253900987],[112,59,65,0.010112306550342808],[112,59,66,0.009223430470164436],[112,59,67,0.008194401176413587],[112,59,68,0.007060731916896981],[112,59,69,0.005897031775922142],[112,59,70,0.004768118154681059],[112,59,71,0.003728354540477793],[112,59,72,0.0028220983232995],[112,59,73,0.0020841763782827433],[112,59,74,0.0015403872079629846],[112,59,75,0.001208028390640519],[112,59,76,0.0010964480400041663],[112,59,77,0.0012076189467645465],[112,59,78,0.0015367340460527047],[112,59,79,0.0020728218351417456],[112,60,64,0.012435945959694137],[112,60,65,0.011605015411903194],[112,60,66,0.010648242133488466],[112,60,67,0.009539965052834009],[112,60,68,0.008315807748499065],[112,60,69,0.007049392472310161],[112,60,70,0.005805365759850258],[112,60,71,0.004638652143213023],[112,60,72,0.003594778495413111],[112,60,73,0.0027102317658062518],[112,60,74,0.002012849142349426],[112,60,75,0.0015222396085604847],[112,60,76,0.0012502358009845317],[112,60,77,0.0012013750173627987],[112,60,78,0.0013734081772098824],[112,60,79,0.001757835495644935],[112,61,64,0.014022137246042024],[112,61,65,0.013142442291578493],[112,61,66,0.012123183764836839],[112,61,67,0.01094087643178177],[112,61,68,0.009631143533603035],[112,61,69,0.008266361970729361],[112,61,70,0.006910768647691467],[112,61,71,0.005619639128737919],[112,61,72,0.004439492880349583],[112,61,73,0.003408336657580317],[112,61,74,0.0025559453102773385],[112,61,75,0.0019041791991387437],[112,61,76,0.0014673373308766568],[112,61,77,0.00125254524705896],[112,61,78,0.001260176633257303],[112,61,79,0.0014843075545282007],[112,62,64,0.015592340959763286],[112,62,65,0.014670135241847208],[112,62,66,0.0135947503430217],[112,62,67,0.01234487621658766],[112,62,68,0.010956028255863354],[112,62,69,0.009499134551790607],[112,62,70,0.008037816950857132],[112,62,71,0.006627504396998545],[112,62,72,0.0053155258682019615],[112,62,73,0.004141245308239232],[112,62,74,0.003136238062274181],[112,62,75,0.002324508223376133],[112,62,76,0.001722746200104902],[112,62,77,0.001340625723947196],[112,62,78,0.0011811394302960112],[112,62,79,0.0012409720685377726],[112,63,64,0.015802337516081608],[112,63,65,0.01613515526700189],[112,63,66,0.015010737753343698],[112,63,67,0.013700787620081402],[112,63,68,0.012240611669662747],[112,63,69,0.010699543931881418],[112,63,70,0.00914042305235421],[112,63,71,0.00761865052320479],[112,63,72,0.006182180247688744],[112,63,73,0.004871553049918647],[112,63,74,0.003719975858214298],[112,63,75,0.0027534451759154616],[112,63,76,0.001990914343059671],[112,63,77,0.0014445039868193385],[112,63,78,0.0011197549588665404],[112,63,79,0.0010159229646099224],[112,64,64,0.014509131755575928],[112,64,65,0.01552542044318223],[112,64,66,0.016322552922164113],[112,64,67,0.014960779126037115],[112,64,68,0.013438110988059176],[112,64,69,0.011822201208322818],[112,64,70,0.010174975976435956],[112,64,71,0.008551648458618357],[112,64,72,0.00700061565866859],[112,64,73,0.0055634023044984545],[112,64,74,0.004274651690980601],[112,64,75,0.0031621632848649064],[112,64,76,0.0022469767761812975],[112,64,77,0.0015435021435568005],[112,64,78,0.0010596951891149082],[112,64,79,7.972778928525823E-4],[112,65,64,0.013375795948638308],[112,65,65,0.014416152178940645],[112,65,66,0.015643538496366582],[112,65,67,0.016082823633204242],[112,65,68,0.014507215423787793],[112,65,69,0.012826831731313838],[112,65,70,0.011102594745197996],[112,65,71,0.009389389857672674],[112,65,72,0.007735881699086873],[112,65,73,0.006184378475180321],[112,65,74,0.004770744718128868],[112,65,75,0.0035243624304625845],[112,65,76,0.0024681404713250065],[112,65,77,0.0016185719086761617],[112,65,78,9.858389398384607E-4],[112,65,79,5.739648670234259E-4],[112,66,64,0.012435459512634868],[112,66,65,0.013493565463167587],[112,66,66,0.014748616956745756],[112,66,67,0.016214461753865407],[112,66,68,0.015414689881370213],[112,66,69,0.013680812370655802],[112,66,70,0.011891582336373876],[112,66,71,0.010101438825317425],[112,66,72,0.008359147623225382],[112,66,73,0.006707597776030212],[112,66,74,0.005183647255576154],[112,66,75,0.003818017901251765],[112,66,76,0.002635239633479825],[112,66,77,0.0016536438027114],[112,66,78,8.854054093763742E-4],[112,66,79,3.3663380693912E-4],[112,67,64,0.011708916569918938],[112,67,65,0.012779078203877102],[112,67,66,0.014054619003252097],[112,67,67,0.015547944335669315],[112,67,68,0.016138178677867307],[112,67,69,0.014361910227249027],[112,67,70,0.012520081465211363],[112,67,71,0.010666584474687603],[112,67,72,0.0088501301769661],[112,67,73,0.007113988683599122],[112,67,74,0.005495778933508682],[112,67,75,0.004027307877236994],[112,67,76,0.0027344593310318064],[112,67,77,0.0016371324868795867],[112,67,78,7.492299315887347E-4],[112,67,79,7.869489937187907E-5],[112,68,64,0.011201493922749826],[112,68,65,0.012278924445736104],[112,68,66,0.013568629435905446],[112,68,67,0.015081683570566086],[112,68,68,0.01666920972720139],[112,68,69,0.014861223398042292],[112,68,70,0.012978932976273524],[112,68,71,0.011075595256040753],[112,68,72,0.009199720698545287],[112,68,73,0.007394768293711641],[112,68,74,0.005698889434257936],[112,68,75,0.004144721173905062],[112,68,76,0.002759229100096168],[112,68,77,0.0015635999124392445],[112,68,78,5.731836620051246E-4],[112,68,79,-2.0251452560493836E-4],[112,69,64,0.010899728956623498],[112,69,65,0.011980839074826461],[112,69,66,0.013279641197774836],[112,69,67,0.014805878964524824],[112,69,68,0.016526718839929296],[112,69,69,0.01518632635302858],[112,69,70,0.013274740010205663],[112,69,71,0.011334178780123366],[112,69,72,0.009412815699728164],[112,69,73,0.007554118207109227],[112,69,74,0.00579655474685682],[112,69,75,0.004173350382840484],[112,69,76,0.002712291740232887],[112,69,77,0.0014355814579554143],[112,69,78,3.5974219472158E-4],[112,69,79,-5.044299027208135E-4],[112,70,64,0.010769881401110173],[112,70,65,0.011851365587288592],[112,70,66,0.013154603949553895],[112,70,67,0.014687885548489939],[112,70,68,0.016418756845004264],[112,70,69,0.015368927055702537],[112,70,70,0.013438607568743523],[112,70,71,0.011472664598221593],[112,70,72,0.009518769293945746],[112,70,73,0.007620202720925053],[112,70,74,0.0058155319634167505],[112,70,75,0.004138334723847701],[112,70,76,0.0026169728170128124],[112,70,77,0.0012744148186216617],[112,70,78,1.2810798820847813E-4],[112,70,79,-8.10100549594009E-4],[112,71,64,0.01077384145548735],[112,71,65,0.011849338234407338],[112,71,66,0.013149280994397333],[112,71,67,0.014680381838414372],[112,71,68,0.01641062692320938],[112,71,69,0.015462019297916631],[112,71,70,0.013525851438383616],[112,71,71,0.011548137119146363],[112,71,72,0.00957576455895245],[112,71,73,0.007651539950543184],[112,71,74,0.005813841073956534],[112,71,75,0.004096318314026759],[112,71,76,0.0025276435463460834],[112,71,77,0.0011313072158436691],[112,71,78,-7.453620606470918E-5],[112,71,79,-0.001077174335348822],[112,72,64,0.010883333743682801],[112,72,65,0.01194344657436855],[112,72,66,0.013229298650949406],[112,72,67,0.01474593911191433],[112,72,68,0.016461941653805604],[112,72,69,0.015508660371543116],[112,72,70,0.013581914091307545],[112,72,71,0.011607966054683295],[112,72,72,0.00963254329382233],[112,72,73,0.0076976075090473516],[112,72,74,0.005840996096347958],[112,72,75,0.0040961084618285045],[112,72,76,0.0024916381327072233],[112,72,77,0.0010513510386245396],[112,72,78,-2.0608979731757875E-4],[112,72,79,-0.001267253050482913],[112,73,64,0.01107813288021974],[112,73,65,0.01211120359516097],[112,73,66,0.013369911734494389],[112,73,67,0.014857600026003247],[112,73,68,0.016543631353881743],[112,73,69,0.01553980129562099],[112,73,70,0.013639453767722682],[112,73,71,0.01168621689593656],[112,73,72,0.009724219839201574],[112,73,73,0.007794159749855494],[112,73,74,0.005932941902432112],[112,73,75,0.004173361625574447],[112,73,76,0.002543828569128462],[112,73,77,0.0010681337108345334],[112,73,78,-2.3474061957403966E-4],[112,73,79,-0.0013507675459739476],[112,74,64,0.011343008820119046],[112,74,65,0.01233584407488557],[112,74,66,0.013552860384806145],[112,74,67,0.014995697753492902],[112,74,68,0.016634734926092392],[112,74,69,0.015577505167489777],[112,74,70,0.013721544865080872],[112,74,71,0.011806800140969674],[112,74,72,0.009875341604880631],[112,74,73,0.0079661593790794],[112,74,74,0.006114815578211875],[112,74,75,0.004353133501854327],[112,74,76,0.002708924066967037],[112,74,77,0.001205749892546076],[112,74,78,-1.3727266563537174E-4],[112,74,79,-0.0013056333456537385],[112,75,64,0.011664781573514648],[112,75,65,0.012603330043629502],[112,75,66,0.013763330948449616],[112,75,67,0.015144775475149516],[112,75,68,0.01671928641500922],[112,75,69,0.015638075921470533],[112,75,70,0.013844796702375508],[112,75,71,0.01198654896044147],[112,75,72,0.010102890316798221],[112,75,73,0.008230664302140658],[112,75,74,0.006403679686523407],[112,75,75,0.004652419676392404],[112,75,76,0.0030037814696072186],[112,75,77,0.001480846562008703],[112,75,78,1.0268210175184403E-4],[112,75,79,-0.0011158265094102975],[112,76,64,0.012029490730413303],[112,76,65,0.012899468851464337],[112,76,66,0.013987026456999526],[112,76,67,0.015290611786893461],[112,76,68,0.01678330281807541],[112,76,69,0.015735092014585103],[112,76,70,0.014022385313936117],[112,76,71,0.012238220173273645],[112,76,72,0.010419219165161895],[112,76,73,0.008599665293598334],[112,76,74,0.00681122352806048],[112,76,75,0.005082683538502658],[112,76,76,0.003439724050381453],[112,76,77,0.0019046991644124246],[112,76,78,4.964469105343303E-4],[112,76,79,-7.698797702401961E-4],[112,77,64,0.012419685279325009],[112,77,65,0.013207149399803693],[112,77,66,0.014207352310839584],[112,77,67,0.015417357666074943],[112,77,68,0.01681187879944721],[112,77,69,0.0158823394380312],[112,77,70,0.014266992787159368],[112,77,71,0.012573413244824048],[112,77,72,0.01083492085628592],[112,77,73,0.009082869881089407],[112,77,74,0.00734642828067415],[112,77,75,0.005652367928002967],[112,77,76,0.004024865848544548],[112,77,77,0.00248531675549285],[112,77,78,0.0010521570940063337],[112,77,79,-2.592992404034638E-4],[112,78,64,0.012811839210536283],[112,78,65,0.013503702114488888],[112,78,66,0.014402722814714752],[112,78,67,0.015504790693893112],[112,78,68,0.016786394025777456],[112,78,69,0.016096638363330317],[112,78,70,0.01459364854861367],[112,78,71,0.013005401888908242],[112,78,72,0.011361621417920293],[112,78,73,0.009690427659645302],[112,78,74,0.00801819170080646],[112,78,75,0.006369386766877894],[112,78,76,0.004766438461472009],[112,78,77,0.0032295738152186004],[112,78,78,0.0017766692741102816],[112,78,79,4.230977384947377E-4],[112,79,64,0.013194020646345924],[112,79,65,0.013778237309758747],[112,79,66,0.014563339820849192],[112,79,67,0.015544283516796108],[112,79,68,0.016699416858035453],[112,79,69,0.016384251119651794],[112,79,70,0.015007673076682706],[112,79,71,0.01353881421152392],[112,79,72,0.012003566168141357],[112,79,73,0.010426555715139306],[112,79,74,0.008831087644427405],[112,79,75,0.007239072301013004],[112,79,76,0.005670937711234217],[112,79,77,0.004145526300601864],[112,79,78,0.00267997621286173],[112,79,79,0.0012895872585253331],[112,80,64,0.013620558435618242],[112,80,65,0.014085544130191554],[112,80,66,0.014743714851231299],[112,80,67,0.015589284532152798],[112,80,68,0.0166024609536659],[112,80,69,0.016696567851081163],[112,80,70,0.015464387252343921],[112,80,71,0.014133936735309535],[112,80,72,0.012727012860582528],[112,80,73,0.011264425037827569],[112,80,74,0.009766049188113893],[112,80,75,0.008250850486221581],[112,80,76,0.006736874903595856],[112,80,77,0.005241209339051675],[112,80,78,0.0037799101864281256],[112,80,79,0.0023679002454801497],[112,81,64,0.014144894549534838],[112,81,65,0.014479884085874606],[112,81,66,0.014998230488017916],[112,81,67,0.01569354674254423],[112,81,68,0.01654781296151344],[112,81,69,0.0169837540715186],[112,81,70,0.015917350243194066],[112,81,71,0.014748728781554284],[112,81,72,0.013495305366483783],[112,81,73,0.012173693616790231],[112,81,74,0.010799894607819686],[112,81,75,0.009389438257444836],[112,81,76,0.007957475990195506],[112,81,77,0.006518824203564488],[112,81,78,0.005087958169599781],[112,81,79,0.003678956107771908],[112,82,64,0.014800736871433965],[112,82,65,0.01499634094257505],[112,82,66,0.015362908753295388],[112,82,67,0.015893555198804754],[112,82,68,0.01657186995171813],[112,82,69,0.017210199073309885],[112,82,70,0.01633240015364058],[112,82,71,0.015351227638915662],[112,82,72,0.014279439737232308],[112,82,73,0.013129059894314505],[112,82,74,0.011911729617989954],[112,82,75,0.010638994396773762],[112,82,76,0.00932252174079854],[112,82,77,0.007974250540643893],[112,82,78,0.006606471100959482],[112,82,79,0.00523183535977699],[112,83,64,0.015604645360168838],[112,83,65,0.015653301192009736],[112,83,66,0.015857753108030254],[112,83,67,0.016210694484457066],[112,83,68,0.01669709744019214],[112,83,69,0.017302649658633783],[112,83,70,0.016686199078353826],[112,83,71,0.015918378646196312],[112,83,72,0.0150571927385291],[112,83,73,0.01410969677969484],[112,83,74,0.013082687463076649],[112,83,75,0.011983159995262636],[112,83,76,0.010818676835777542],[112,83,77,0.00959764673093913],[112,83,78,0.008329513058966951],[112,83,79,0.00702485071364504],[112,84,64,0.016558536292613196],[112,84,65,0.016454856015889568],[112,84,66,0.016489016441753265],[112,84,67,0.016653348133093493],[112,84,68,0.016933926439700042],[112,84,69,0.017319349920555144],[112,84,70,0.016964826631974825],[112,84,71,0.016434907012066645],[112,84,72,0.015812286450248573],[112,84,73,0.01509871745958988],[112,84,74,0.014295698191896343],[112,84,75,0.01340512731661082],[112,84,76,0.01242984851852576],[112,84,77,0.01137408294733222],[112,84,78,0.010243748232244013],[112,84,79,0.009046662945810078],[112,85,64,0.016835990191500557],[112,85,65,0.017159065083629497],[112,85,66,0.01725138898523292],[112,85,67,0.017218924126652563],[112,85,68,0.017282583972533024],[112,85,69,0.017346602425485358],[112,85,70,0.017162424293896267],[112,85,71,0.016892233242594513],[112,85,72,0.01653359030919373],[112,85,73,0.01608267387660489],[112,85,74,0.015535287483087967],[112,85,75,0.014887736943487743],[112,85,76,0.014137574230299623],[112,85,77,0.013284205916320214],[112,85,78,0.012329364326170992],[112,85,79,0.01127743987936542],[112,86,64,0.015674562471535973],[112,86,65,0.016154918277965835],[112,86,66,0.01653808089971012],[112,86,67,0.016832338559459648],[112,86,68,0.017050419647911444],[112,86,69,0.017199431481754825],[112,86,70,0.017279893698080487],[112,86,71,0.017287434779080613],[112,86,72,0.01721436263840395],[112,86,73,0.017051089344086088],[112,86,74,0.01678740591190945],[112,86,75,0.016413603531513565],[112,86,76,0.015921438013896474],[112,86,77,0.015304934670391141],[112,86,78,0.014561031246837169],[112,86,79,0.013690056939488764],[112,87,64,0.014419919206798073],[112,87,65,0.015055285759461808],[112,87,66,0.015618348605519151],[112,87,67,0.01611764096058315],[112,87,68,0.01656580959385337],[112,87,69,0.016968627680891142],[112,87,70,0.017323651754196756],[112,87,71,0.017378886997077642],[112,87,72,0.017197388916412742],[112,87,73,0.017098039030289728],[112,87,74,0.017097330670568293],[112,87,75,0.017211366129456864],[112,87,76,0.017454653814713554],[112,87,77,0.0174101866093922],[112,87,78,0.01690889395980748],[112,87,79,0.016251337816303866],[112,88,64,0.013105559013302773],[112,88,65,0.013891048295437348],[112,88,66,0.014630593047723742],[112,88,67,0.015332944792942341],[112,88,68,0.016011028089945874],[112,88,69,0.016669858327730342],[112,88,70,0.017304445258621053],[112,88,71,0.017158381084983052],[112,88,72,0.01666489732867002],[112,88,73,0.01624497842871732],[112,88,74,0.01592147554736188],[112,88,75,0.01571705405512218],[112,88,76,0.01565273827844639],[112,88,77,0.015746664946684825],[112,88,78,0.016013048906692782],[112,88,79,0.01646136413092907],[112,89,64,0.011768518730774058],[112,89,65,0.012696733149308694],[112,89,66,0.013606296404962229],[112,89,67,0.01450615749747971],[112,89,68,0.015409867319092094],[112,89,69,0.0163222546767862],[112,89,70,0.017236227441046588],[112,89,71,0.016982812931298844],[112,89,72,0.01617211709004527],[112,89,73,0.015423517951952268],[112,89,74,0.01476623664166593],[112,89,75,0.014229606026830422],[112,89,76,0.013841353570373444],[112,89,77,0.013626117182947243],[112,89,78,0.013604198294195145],[112,89,79,0.013790555749065922],[112,90,64,0.010447465324831892],[112,90,65,0.011508685694125779],[112,90,66,0.012578914514184955],[112,90,67,0.013667284074170305],[112,90,68,0.01478829839338289],[112,90,69,0.015947147991153918],[112,90,70,0.01713509869359136],[112,90,71,0.016841896994126655],[112,90,72,0.015715006237610317],[112,90,73,0.014636234173053004],[112,90,74,0.013641074002178262],[112,90,75,0.01276551026800366],[112,90,76,0.012044035100655031],[112,90,77,0.01150792112808276],[112,90,78,0.011183755942861301],[112,90,79,0.011092242335141101],[112,91,64,0.009180900171705236],[112,91,65,0.010363349374076052],[112,91,66,0.011582254922529615],[112,91,67,0.012846925721137383],[112,91,68,0.014173114332990618],[112,91,69,0.015566881999624181],[112,91,70,0.0170183135434887],[112,91,71,0.01672411076955537],[112,91,72,0.01528827199050451],[112,91,73,0.013884512504101833],[112,91,74,0.012554392642041409],[112,91,75,0.011340413078249732],[112,91,76,0.010283764676511627],[112,91,77,0.009422357707569598],[112,91,78,0.008789136010043578],[112,91,79,0.008410680922153666],[112,92,64,0.008005478587421823],[112,92,65,0.009295656829026652],[112,92,66,0.010648960491984662],[112,92,67,0.012074876453443045],[112,92,68,0.013590661780462473],[112,92,69,0.01520370391611296],[112,92,70,0.016903355756828334],[112,92,71,0.01661741167898034],[112,92,72,0.014885857597612885],[112,92,73,0.013168784945016708],[112,92,74,0.011513515811993308],[112,92,75,0.009968816496843355],[112,92,76,0.008582386043352184],[112,92,77,0.007398645597869744],[112,92,78,0.00645683484193109],[112,92,79,0.005789420946650564],[112,93,64,0.006954447188720391],[112,93,65,0.008337534732159884],[112,93,66,0.00980910103088898],[112,93,67,0.011378820054727692],[112,93,68,0.013065663636415066],[112,93,69,0.014878735996642505],[112,93,70,0.01680708329858194],[112,93,71,0.01650989448400077],[112,93,72,0.014501379287025698],[112,93,73,0.012488726262764148],[112,93,74,0.010524623429017351],[112,93,75,0.008663745960536307],[112,93,76,0.00695999316294839],[112,93,77,0.005464046205172846],[112,93,78,0.004221253536306244],[112,93,79,0.0032698500441847786],[112,94,64,0.006056201417108644],[112,94,65,0.0075165246438159364],[112,94,66,0.009088875191585175],[112,94,67,0.010783129496181059],[112,94,68,0.01262013460361652],[112,94,69,0.014611029432714088],[112,94,70,0.01674494472256519],[112,94,71,0.016390387912542825],[112,94,72,0.014128512284295926],[112,94,73,0.011843407870527883],[112,94,74,0.009592655244213483],[112,94,75,0.0074363878572685504],[112,94,76,0.0054342914436410665],[112,94,77,0.0036429424041718125],[112,94,78,0.002113492745382928],[112,94,79,8.897082220439193E-4],[112,95,64,0.005332965319352036],[112,95,65,0.00685452195463419],[112,95,66,0.008509424654751446],[112,95,67,0.010307770753344762],[112,95,68,0.012272391440684972],[112,95,69,0.014416702215167285],[112,95,70,0.016730268423349168],[112,95,71,0.01624898929701037],[112,95,72,0.01376132495855191],[112,95,73,0.011231408743402404],[112,95,74,0.008721178376385634],[112,95,75,0.006295696897326239],[112,95,76,0.004019932136777669],[112,95,77,0.001955891533785348],[112,95,78,1.6012048107474748E-4],[112,95,79,-0.0013184285872019153],[112,96,64,0.0047995954561643505],[112,96,65,0.006366634776956872],[112,96,66,0.008085762417108407],[112,96,67,0.00996731276106522],[112,96,68,0.012036159553307493],[112,96,69,0.014308162448794121],[112,96,70,0.016773626049811655],[112,96,71,0.016077536134758916],[112,96,72,0.013394560241531522],[112,96,73,0.01065088276974337],[112,96,74,0.007912218877657086],[112,96,75,0.005247973241886884],[112,96,76,0.002727820112451745],[112,96,77,4.186531285027242E-4],[112,96,78,-0.001618086347462433],[112,96,79,-0.0033286946313484957],[112,97,64,0.004462510604942229],[112,97,65,0.00606016444422382],[112,97,66,0.007825816809380897],[112,97,67,0.00977004506964816],[112,97,68,0.01191977738918287],[112,97,69,0.01429341845435094],[112,97,70,0.016882271256395763],[112,97,71,0.015870013583497346],[112,97,72,0.013023863544947188],[112,97,73,0.010099581995669106],[112,97,74,0.007166057034421922],[112,97,75,0.004296409345735488],[112,97,76,0.0015643952260699216],[112,97,77,-9.588081536501452E-4],[112,97,78,-0.0032074259652929366],[112,97,79,-0.005123509184956461],[112,98,64,0.004318748731139436],[112,98,65,0.005933709092874928],[112,98,66,0.00772959269476579],[112,98,67,0.009717204600146983],[112,98,68,0.01192549995212187],[112,98,69,0.014375476860576167],[112,98,70,0.017059654852700334],[112,98,71,0.015622896999794043],[112,98,72,0.012645956476614368],[112,98,73,0.009574835274613254],[112,98,74,0.006480986141259255],[112,98,75,0.003440606486268367],[112,98,76,5.308874852523476E-4],[112,98,77,-0.002173343962784509],[112,98,78,-0.004602580663421134],[112,98,79,-0.006695179257871957],[112,99,64,0.004355152525417498],[112,99,65,0.005976391629226317],[112,99,66,0.007788451133898236],[112,99,67,0.00980231274298628],[112,99,68,0.012048902610207737],[112,99,69,0.014551829763764911],[112,99,70,0.017305017304237474],[112,99,71,0.01533542871812899],[112,99,72,0.012258755725810151],[112,99,73,0.009073481884507767],[112,99,74,0.005853034517205546],[112,99,75,0.0026760609647526173],[112,99,76,-3.7745377598775255E-4],[112,99,77,-0.0032296676217249873],[112,99,78,-0.005807949991087732],[112,99,79,-0.008047529325656038],[112,100,64,0.0045476846392752505],[112,100,65,0.006167213224162155],[112,100,66,0.007984508649723466],[112,100,67,0.010010623901131055],[112,100,68,0.012278386242040033],[112,100,69,0.014814031915853393],[112,100,70,0.01761305943661443],[112,100,71,0.01500982835123411],[112,100,72,0.011861436553634416],[112,100,73,0.008591759722303008],[112,100,74,0.005275650563089054],[112,100,75,0.001993619978183752],[112,100,76,-0.001172156512019258],[112,100,77,-0.004141423013651214],[112,100,78,-0.006839007597350946],[112,100,79,-0.009197557279022935],[112,101,64,0.004861441826902245],[112,101,65,0.00647470840976343],[112,101,66,0.008289928788418138],[112,101,67,0.010318050093142826],[112,101,68,0.012593732520593683],[112,101,69,0.015145888241450812],[112,101,70,0.017652821050390892],[112,101,71,0.014653807620961612],[112,101,72,0.01145726379521527],[112,101,73,0.008128415599366584],[112,101,74,0.004743045281845202],[112,101,75,0.0013829997530968264],[112,101,76,-0.001867897252746878],[112,101,77,-0.0049275172267892135],[112,101,78,-0.007718672223822383],[112,101,79,-0.010171923708301554],[112,102,64,0.005260072569587265],[112,102,65,0.00686188808918586],[112,102,66,0.008667261615354195],[112,102,67,0.010686835857289892],[112,102,68,0.012957016140762263],[112,102,69,0.015509441376425874],[112,102,70,0.017319495294157165],[112,102,71,0.01430490264229451],[112,102,72,0.011083206106792995],[112,102,73,0.007719558177787633],[112,102,74,0.004290124567823741],[112,102,75,8.775140470682107E-4],[112,102,76,-0.002433383484867039],[112,102,77,-0.005559138312542215],[112,102,78,-0.008421090382991952],[112,102,79,-0.010948216878149864],[112,103,64,0.005714284673129597],[112,103,65,0.0072963597582002175],[112,103,66,0.009081167968735619],[112,103,67,0.011078880835711501],[112,103,68,0.013327514676757706],[112,103,69,0.01586143191680069],[112,103,70,0.017017899462965447],[112,103,71,0.014011190671517968],[112,103,72,0.010789482563800329],[112,103,73,0.0074172686605715596],[112,103,74,0.003970451917747415],[112,103,75,5.317259383296051E-4],[112,103,76,-0.0028136336129761072],[112,103,77,-0.005981554783067956],[112,103,78,-0.008892520842658617],[112,103,79,-0.011474477242197398],[112,104,64,0.006200991275036171],[112,104,65,0.00775269758986121],[112,104,66,0.009504079551169504],[112,104,67,0.01146471516536007],[112,104,68,0.013674046068276489],[112,104,69,0.01616907631742178],[112,104,70,0.016782373166779784],[112,104,71,0.013808458218096162],[112,104,72,0.010613218986265879],[112,104,73,0.007259855208172384],[112,104,74,0.003823298991533733],[112,104,75,3.85583957183393E-4],[112,104,76,-0.0029683767399463737],[112,104,77,-0.006154590771001564],[112,104,78,-0.00909335378851827],[112,104,79,-0.011712172938954329],[112,105,64,0.006704106157347898],[112,105,65,0.00821322233270868],[112,105,66,0.009916958935736143],[112,105,67,0.011824230378669228],[112,105,68,0.013975664181334502],[112,105,69,0.016410728539012237],[112,105,70,0.016635215158169202],[112,105,71,0.013719578582067727],[112,105,72,0.010577821640014017],[112,105,73,0.00727120304563352],[112,105,74,0.0038729505460218263],[112,105,75,4.636593682433033E-4],[112,105,76,-0.0028729055811120034],[112,105,77,-0.006053591010099163],[112,105,78,-0.008999208413284292],[112,105,79,-0.011637448637047873],[112,106,64,0.0072158550460446206],[112,106,65,0.008669230420580735],[112,106,66,0.010310437868190999],[112,106,67,0.01214771428862914],[112,106,68,0.014222579679160489],[112,106,69,0.01657668256933397],[112,106,70,0.016585997490961284],[112,106,71,0.013753935353564851],[112,106,72,0.010692497671873183],[112,106,73,0.007460374923135928],[112,106,74,0.004128364159731181],[112,106,75,7.748412533720403E-4],[112,106,76,-0.002518372329034754],[112,106,77,-0.005669735581390751],[112,106,78,-0.008601295318673263],[112,106,79,-0.011241564418016778],[112,107,64,0.007738545113631832],[112,107,65,0.009122678653234472],[112,107,66,0.010686405869434507],[112,107,67,0.012437328198729959],[112,107,68,0.014417511992858727],[112,107,69,0.016670390798462217],[112,107,70,0.016630483616437045],[112,107,71,0.013906474480115033],[112,107,72,0.010951433656887664],[112,107,73,0.00782090402935077],[112,107,74,0.004582561258455652],[112,107,75,0.0013118058115074666],[112,107,76,-0.0019122638839064775],[112,107,77,-0.005010484777310485],[112,107,78,-0.007906857710412026],[112,107,79,-0.01053136086127417],[112,108,64,0.00828679446351918],[112,108,65,0.009588326370224217],[112,108,66,0.01106005119798665],[112,108,67,0.012709028628900592],[112,108,68,0.01457747470268227],[112,108,69,0.01671010065624839],[112,108,70,0.016749147944768665],[112,108,71,0.01415638240800791],[112,108,72,0.011332629793949358],[112,108,73,0.00832977698313129],[112,108,74,0.0052117472212163864],[112,108,75,0.002050257877921547],[112,108,76,-0.001079058152693929],[112,108,77,-0.0041001554208820465],[112,108,78,-0.006939692287280968],[112,108,79,-0.009529750729778753],[112,109,64,0.00889022312955967],[112,109,65,0.010096336783612218],[112,109,66,0.01146235596531545],[112,109,67,0.012994935473261885],[112,109,68,0.01473599635925691],[112,109,69,0.01673091163563377],[112,109,70,0.016905294682541556],[112,109,71,0.0144653880809716],[112,109,72,0.011796387551602025],[112,109,73,0.008946104776989832],[112,109,74,0.00597415857062474],[112,109,75,0.002947942860666052],[112,109,76,-6.106295996682463E-5],[112,109,77,-0.0029806298572703054],[112,109,78,-0.005740750650661383],[112,109,79,-0.008276237629776043],[112,110,64,0.009596606911146655],[112,110,65,0.010695338910059395],[112,110,66,0.011943046961238019],[112,110,67,0.013346148260716043],[112,110,68,0.014945778522170033],[112,110,69,0.016787254569460962],[112,110,70,0.017042774013401873],[112,110,71,0.014775686831169399],[112,110,72,0.012283448807948398],[112,110,73,0.009609479772875615],[112,110,74,0.006808635457962081],[112,110,75,0.003943427471687357],[112,110,76,0.0010805610343002537],[112,110,77,-0.0017121987246597654],[112,110,78,-0.004368821992744448],[112,110,79,-0.006827461995823697],[112,111,64,0.010467555809337647],[112,111,65,0.011448065716330348],[112,111,66,0.012566023159584452],[112,111,67,0.013827779503123099],[112,111,68,0.01527315106132119],[112,111,69,0.016946595539747318],[112,111,70,0.017093184907706106],[112,111,71,0.015018181160336888],[112,111,72,0.01272437728167424],[112,111,73,0.010250568610599663],[112,111,74,0.007646463017538103],[112,111,75,0.004969191786651708],[112,111,76,0.0022801108702530724],[112,111,77,-3.5809746397876885E-4],[112,111,78,-0.002884013381061439],[112,111,79,-0.005239750217622692],[112,112,64,0.011542174137858945],[112,112,65,0.012395191538369536],[112,112,66,0.0133730088320153],[112,112,67,0.014482044918532453],[112,112,68,0.015760229735207312],[112,112,69,0.017250321549828564],[112,112,70,0.017016553788860363],[112,112,71,0.015154956672197753],[112,112,72,0.013083996124452671],[112,112,73,0.01083760145367867],[112,112,74,0.008459925029132152],[112,112,75,0.006002182781646565],[112,112,76,0.0035197552642265684],[112,112,77,0.0010695583956667595],[112,112,78,-0.0012923077138544683],[112,112,79,-0.0035126241794586283],[112,113,64,0.012835583164750947],[112,113,65,0.013553793902616533],[112,113,66,0.014382568557148163],[112,113,67,0.01532849288044666],[112,113,68,0.016427034395567773],[112,113,69,0.017718405422488603],[112,113,70,0.01679350735318173],[112,113,71,0.015167741065175669],[112,113,72,0.013345663364004685],[112,113,73,0.011356089766726819],[112,113,74,0.009237195595669302],[112,113,75,0.007033723680294788],[112,113,76,0.004794420751706153],[112,113,77,0.0025697106420260385],[112,113,78,4.096117677841273E-4],[112,113,79,-0.0016380942563736089],[112,114,64,0.014345385017896574],[112,114,65,0.014923702199915663],[112,114,66,0.01559648975044396],[112,114,67,0.01637057870567471],[112,114,68,0.017278413267693537],[112,114,69,0.01759339925092489],[112,114,70,0.016417205344425388],[112,114,71,0.015049073674643343],[112,114,72,0.013501577369507835],[112,114,73,0.011798190974680017],[112,114,74,0.00997071235926578],[112,114,75,0.00805687228833689],[112,114,76,0.006098139194678184],[112,114,77,0.0041377261483373255],[112,114,78,0.0022188064850047124],[112,114,79,3.8294401680383374E-4],[112,115,64,0.016054137975970162],[112,115,65,0.016489887984067066],[112,115,66,0.017002060308757887],[112,115,67,0.017597798710540468],[112,115,68,0.017574594683544737],[112,115,69,0.01681541495956517],[112,115,70,0.015891831513843144],[112,115,71,0.014801063369289007],[112,115,72,0.01355182430386924],[112,115,73,0.012162062522124213],[112,115,74,0.010656847991949627],[112,115,75,0.009066414107341275],[112,115,76,0.007424359908135444],[112,115,77,0.005766018652298344],[112,115,78,0.004126998097805882],[112,115,79,0.0025418974127619193],[112,116,64,0.01756466798514234],[112,116,65,0.017377271157900418],[112,116,66,0.017130781645663742],[112,116,67,0.016817693641820425],[112,116,68,0.01641313912107829],[112,116,69,0.015889333117995022],[112,116,70,0.015231071165786494],[112,116,71,0.014434125627849861],[112,116,72,0.013503398567215249],[112,116,73,0.012451184337710846],[112,116,74,0.011295547408037919],[112,116,75,0.01005882060533466],[112,116,76,0.00876622863381332],[112,116,77,0.007444641388752895],[112,116,78,0.006121461248684064],[112,116,79,0.004823648191499962],[112,117,64,0.01557626352020566],[112,117,65,0.0155301943254545],[112,117,66,0.015446734117453913],[112,117,67,0.015317936579017003],[112,117,68,0.015123335915461989],[112,117,69,0.014840648023380974],[112,117,70,0.014456576281045876],[112,117,71,0.013965699594709361],[112,117,72,0.013369196814177746],[112,117,73,0.012673650053507617],[112,117,74,0.011889930804588287],[112,117,75,0.01103217250325919],[112,117,76,0.010116832975383457],[112,117,77,0.009161849955468804],[112,117,78,0.008185892634546933],[112,117,79,0.0072077119589090645],[112,118,64,0.013506576499213222],[112,118,65,0.013596919845138005],[112,118,66,0.013673044057454058],[112,118,67,0.013726495461353036],[112,118,68,0.013741510228819462],[112,118,69,0.013701819911522953],[112,118,70,0.013596419143353375],[112,118,71,0.013418945863936462],[112,118,72,0.013166986096892467],[112,118,73,0.012841427316547511],[112,118,74,0.012445862641083582],[112,118,75,0.011986047956928746],[112,118,76,0.011469413944314067],[112,118,77,0.010904634838320649],[112,118,78,0.010301255624362484],[112,118,79,0.009669379233053303],[112,119,64,0.011409045667980292],[112,119,65,0.01162850258624795],[112,119,66,0.011858042581181108],[112,119,67,0.012088634219385327],[112,119,68,0.012309413024634867],[112,119,69,0.012510511782644155],[112,119,70,0.012683535329102158],[112,119,71,0.012821425693004004],[112,119,72,0.012918346654784994],[112,119,73,0.012969587516410258],[112,119,74,0.012971486672846661],[112,119,75,0.012921375533081985],[112,119,76,0.012817543298441167],[112,119,77,0.012659223066813474],[112,119,78,0.012446599693921055],[112,119,79,0.012180839807439805],[112,120,64,0.009340198619837727],[112,120,65,0.009679268026729174],[112,120,66,0.010053460827403438],[112,120,67,0.010453094530003895],[112,120,68,0.010872290566769267],[112,120,69,0.011307825099950987],[112,120,70,0.01175415685613405],[112,120,71,0.012203762299495897],[112,120,72,0.01264758984109847],[112,120,73,0.013075505238354171],[112,120,74,0.013476727154635012],[112,120,75,0.013840251895295547],[112,120,76,0.014155266386128764],[112,120,77,0.014411548513398688],[112,120,78,0.014599854000914032],[112,120,79,0.014712289059020842],[112,121,64,0.007357353997133736],[112,121,65,0.007804576547312875],[112,121,66,0.008312276515015718],[112,121,67,0.008870045722041605],[112,121,68,0.009476962478433533],[112,121,69,0.010136535197890465],[112,121,70,0.010846236224160272],[112,121,71,0.01159828484638052],[112,121,72,0.01238065164453621],[112,121,73,0.013178027736178797],[112,121,74,0.013972756331345697],[112,121,75,0.014745724130887558],[112,121,76,0.015477210237737628],[112,121,77,0.016147690390499295],[112,121,78,0.016738594473388123],[112,121,79,0.017233015405360805],[112,122,64,0.00551635709464336],[112,122,65,0.006058617326686775],[112,122,66,0.006686584983710987],[112,122,67,0.007389052325403481],[112,122,68,0.008169909189683282],[112,122,69,0.00903932716069301],[112,122,70,0.009997862016799386],[112,122,71,0.01103765567371672],[112,122,72,0.01214396223221922],[112,122,73,0.013296614702548306],[112,122,74,0.014471428331721867],[112,122,75,0.01564153666350926],[112,122,76,0.01677865667301829],[112,122,77,0.01785427953767163],[112,122,78,0.018087679021852186],[112,122,79,0.017293686068353093],[112,123,64,0.00386934963609862],[112,123,65,0.004492232626902047],[112,123,66,0.005225495510702214],[112,123,67,0.00605706004087618],[112,123,68,0.006995369515270872],[112,123,69,0.008057032856624999],[112,123,70,0.00924566667312094],[112,123,71,0.010553481286785835],[112,123,72,0.011963291907248775],[112,123,73,0.013450448596842747],[112,123,74,0.014984679578340439],[112,123,75,0.016531842707884076],[112,123,76,0.01805558021803674],[112,123,77,0.01735647485564008],[112,123,78,0.01607067816512899],[112,123,79,0.01491352584972014],[112,124,64,0.0024625743835258976],[112,124,65,0.0031507731509166433],[112,124,66,0.003973053594115252],[112,124,67,0.004916400813517035],[112,124,68,0.005993449019598915],[112,124,69,0.007226869739174959],[112,124,70,0.008623226974782006],[112,124,71,0.01017490756244069],[112,124,72,0.011862573840376343],[112,124,73,0.013657515771613981],[112,124,74,0.015523895822889981],[112,124,75,0.01742088023305692],[112,124,76,0.017512729000693218],[112,124,77,0.01577103754658756],[112,124,78,0.014129547010654756],[112,124,79,0.012630288648135486],[112,125,64,0.0013342151309264287],[112,125,65,0.0020719850498926696],[112,125,66,0.002966189794630781],[112,125,67,0.004002817600306247],[112,125,68,0.0051982397418517],[112,125,69,0.006580681952963376],[112,125,70,0.008159457733164024],[112,125,71,0.009927199586784436],[112,125,72,0.011862703900502418],[112,125,73,0.0139336586183255],[112,125,74,0.01609924590977639],[112,125,75,0.01831261240855692],[112,125,76,0.01631852625387991],[112,125,77,0.014247654294767183],[112,125,78,0.012281024242070088],[112,125,79,0.010467864342576946],[112,126,64,5.122725288212362E-4],[112,126,65,0.0012839290563732434],[112,126,66,0.002232695630271436],[112,126,67,0.0033435093323614514],[112,126,68,0.004635951771932772],[112,126,69,0.00614318420931152],[112,126,70,0.007876999099190589],[112,126,71,0.009830306487991216],[112,126,72,0.011980317872826433],[112,126,73,0.014291598931149263],[112,126,74,0.01671898236334734],[112,126,75,0.01756710637087747],[112,126,76,0.015156245307095454],[112,126,77,0.012794105263790339],[112,126,78,0.010538782369337477],[112,126,79,0.008445919385934093],[112,127,64,1.247608411410923E-5],[112,127,65,8.029321205780001E-4],[112,127,66,0.0017892269247317175],[112,127,67,0.0029551964832888362],[112,127,68,0.004323057086447891],[112,127,69,0.005930208823978566],[112,127,70,0.007790597856592663],[112,127,71,0.009897411578030013],[112,127,72,0.012226546316342412],[112,127,73,0.014739932664086599],[112,127,74,0.017388708884433605],[112,127,75,0.016683381059203924],[112,127,76,0.014027495720024628],[112,127,77,0.011416082572330014],[112,127,78,0.008912830164320165],[112,127,79,0.006578936178128314],[112,128,64,-1.637674195957417E-4],[112,128,65,6.315718305816919E-4],[112,128,66,0.0016393349171496194],[112,128,67,0.0028422075680069837],[112,128,68,0.00426444597347861],[112,128,69,0.005946956237429722],[112,128,70,0.007905482997154482],[112,128,71,0.010133468066138627],[112,128,72,0.012605747273924802],[112,128,73,0.015282096231503806],[112,128,74,0.018110614830422967],[112,128,75,0.01579025133678466],[112,128,76,0.012933538403642678],[112,128,77,0.01011698391166874],[112,128,78,0.00740894471538326],[112,128,79,0.00487527538467839],[112,129,64,-3.138893282496993E-5],[112,129,65,7.566938029501642E-4],[112,129,66,0.001771525350592659],[112,129,67,0.0029945868105037006],[112,129,68,0.004451596295175859],[112,129,69,0.006186249266015252],[112,129,70,0.008215735813809874],[112,129,71,0.01053372055501222],[112,129,72,0.013114217008380212],[112,129,73,0.015915304475239027],[112,129,74,0.01786686509560148],[112,129,75,0.01488918442648298],[112,129,76,0.011875462032707625],[112,129,77,0.008897740299027228],[112,129,78,0.006028133386994496],[112,129,79,0.0033362615879690962],[112,130,64,3.7636447206613175E-4],[112,130,65,0.0011474621383758667],[112,130,66,0.002157345667658779],[112,130,67,0.003386223134358661],[112,130,68,0.004860755758151845],[112,130,69,0.006626791260517271],[112,130,70,0.008702654684265902],[112,130,71,0.011082212477728491],[112,130,72,0.013738878896469943],[112,130,73,0.016629460392673028],[112,130,74,0.01707141525145651],[112,130,75,0.013984253534843722],[112,130,76,0.010854395553046264],[112,130,77,0.00775667813045998],[112,130,78,0.004766125933947299],[112,130,79,0.0019552926115765845],[112,131,64,0.0010059877985993046],[112,131,65,0.0017534429468801524],[112,131,66,0.0027495003543736647],[112,131,67,0.003973000546389764],[112,131,68,0.005451137283174446],[112,131,69,0.007231428276570887],[112,131,70,0.00933311465402991],[112,131,71,0.011750279579356978],[112,131,72,0.014455950569972453],[112,131,73,0.017406036689510785],[112,131,74,0.01624535803969778],[112,131,75,0.013082710850881678],[112,131,76,0.009871756859000366],[112,131,77,0.006689415674380236],[112,131,78,0.0036128969847637337],[112,131,79,7.169728118163137E-4],[112,132,64,0.0017818162134547115],[112,132,65,0.002502716382455403],[112,132,66,0.0034799819808185657],[112,132,67,0.004690949497849046],[112,132,68,0.0061630986829557186],[112,132,69,0.007945377288040966],[112,132,70,0.0100578736837462],[112,132,71,0.012494970141503461],[112,132,72,0.015229517963642086],[112,132,73,0.018216845144896597],[112,132,74,0.015408597436095094],[112,132,75,0.01219570609096106],[112,132,76,0.008929660059973714],[112,132,77,0.005688928054154017],[112,132,78,0.0025523633308148254],[112,132,79,-4.0357643530754224E-4],[112,133,64,0.002608304380346358],[112,133,65,0.0033027752249422436],[112,133,66,0.004259577369905693],[112,133,67,0.005454343954404348],[112,133,68,0.006914756685269577],[112,133,69,0.008691215773018663],[112,133,70,0.010804764159792542],[112,133,71,0.013250262631092961],[112,133,72,0.016000625468692943],[112,133,73,0.017716846115804364],[112,133,74,0.014603388083257436],[112,133,75,0.011356026419481156],[112,133,76,0.008050872728316902],[112,133,77,0.00476757763902742],[112,133,78,0.0015862762778070729],[112,133,79,-0.0014152350534652948],[112,134,64,0.003394159037959455],[112,134,65,0.00406282890102982],[112,134,66,0.004998261150631763],[112,134,67,0.006174135109797816],[112,134,68,0.0076183065600330425],[112,134,69,0.009382773027052845],[112,134,70,0.011489741814496192],[112,134,71,0.013934812056722961],[112,134,72,0.016691258660111983],[112,134,73,0.017030826224119052],[112,134,74,0.013899088950769562],[112,134,75,0.010627669545268054],[112,134,76,0.00729337675436394],[112,134,77,0.003976718388011788],[112,134,78,7.588089022993802E-4],[112,134,79,-0.0022814896372432393],[112,135,64,0.004067402072213435],[112,135,65,0.004711162792742802],[112,135,66,0.005624808630903621],[112,135,67,0.0067798122671020485],[112,135,68,0.008204205527817105],[112,135,69,0.009951779290343587],[112,135,70,0.01204616105936378],[112,135,71,0.014483986994458587],[112,135,72,0.017239220616833976],[112,135,73,0.016494545632478312],[112,135,74,0.013351719569317265],[112,135,75,0.010062876309969089],[112,135,76,0.00670519457473809],[112,135,77,0.003359737272734444],[112,135,78,1.0832917041019392E-4],[112,135,79,-0.0029693309315046925],[112,136,64,0.004575040166389781],[112,136,65,0.005195116119196245],[112,136,66,0.006087086341802041],[112,136,67,0.0072200035694968195],[112,136,68,0.008622096990174239],[112,136,69,0.010349151436745734],[112,136,70,0.012426474533365879],[112,136,71,0.014852040865003585],[112,136,72,0.01760083087379688],[112,136,73,0.016149382146366527],[112,136,74,0.013000073712639598],[112,136,75,0.009697612560049161],[112,136,76,0.00631923657745491],[112,136,77,0.002946283077822913],[112,136,78,-3.38955511101593E-4],[112,136,79,-0.003456141560319542],[112,137,64,0.004882313020632679],[112,137,65,0.0054802751674998],[112,137,66,0.006351193861173871],[112,137,67,0.007461559714458857],[112,137,68,0.008839830625814784],[112,137,69,0.01054395302228993],[112,137,70,0.012601144549401963],[112,137,71,0.015010992737206977],[112,137,72,0.01774979874429246],[112,137,73,0.016019851448334833],[112,137,74,0.012866776960671122],[112,137,75,0.009552545733088395],[112,137,76,0.006154164662016521],[112,137,77,0.002752985308717939],[112,137,78,-5.68454333212053E-4],[112,137,79,-0.0037293551459547437],[112,138,64,0.004972307844835545],[112,138,65,0.005550032002573734],[112,138,66,0.006400967389227659],[112,138,67,0.0074889932521194835],[112,138,68,0.00884282917487945],[112,138,69,0.010522688612336371],[112,138,70,0.012557872328191997],[112,138,71,0.01494980499417337],[112,138,72,0.0176763679938483],[112,138,73,0.016114472868064736],[112,138,74,0.01295913741278396],[112,138,75,0.009633853057267446],[112,138,76,0.006215129443400029],[112,138,77,0.0027840917746191733],[112,138,78,-5.766830688382919E-4],[112,138,79,-0.0037861003650039296],[112,139,64,0.004845941479828946],[112,139,65,0.005405510046476668],[112,139,66,0.006237846496869056],[112,139,67,0.0073042749151660796],[112,139,68,0.00863380338048467],[112,139,69,0.010288933869001376],[112,139,70,0.012301146499825265],[112,139,71,0.014673859322580968],[112,139,72,0.017386734284395116],[112,139,73,0.016426392517414044],[112,139,74,0.013269788296286575],[112,139,75,0.009933860236470592],[112,139,76,0.00649438013208715],[112,139,77,0.00303202407151628],[112,139,78,-3.707885522609277E-4],[112,139,79,-0.00363283023366168],[112,140,64,0.004522311478274051],[112,140,65,0.00506585788400486],[112,140,66,0.005881105423657988],[112,140,67,0.0069269883738584635],[112,140,68,0.008232816493264523],[112,140,69,0.009863302808328225],[112,140,70,0.01185211227385956],[112,140,71,0.014204732401420775],[112,140,72,0.0169027367206519],[112,140,73,0.016933762525507802],[112,140,74,0.013777121297551556],[112,140,75,0.010431509568026692],[112,140,76,0.00697174618549215],[112,140,77,0.0034778502383131234],[112,140,78,3.1891826060262874E-5],[112,140,79,-0.0032849369072784755],[112,141,64,0.004039417476761678],[112,141,65,0.004568912640909192],[112,141,66,0.005368450281469002],[112,141,67,0.006394844778447637],[112,141,68,0.00767769970299373],[112,141,69,0.009283753585391559],[112,141,70,0.011248762619235644],[112,141,71,0.01358027260024817],[112,141,72,0.016261824760401257],[112,141,73,0.01759987518054152],[112,141,74,0.014445509512939254],[112,141,75,0.011092656504672364],[112,141,76,0.007614989881891527],[112,141,77,0.00409167390232772],[112,141,78,6.042351162955635E-4],[112,141,79,-0.002766352271682616],[112,142,64,0.0034552542142401825],[112,142,65,0.003972234294035712],[112,142,66,0.004756983522160138],[112,142,67,0.005764558442516837],[112,142,68,0.007024819841568268],[112,142,69,0.008606234135164745],[112,142,70,0.010546452755404181],[112,142,71,0.0128549789492459],[112,142,72,0.015517301696697352],[112,142,73,0.01837305084187814],[112,142,74,0.015225318973986783],[112,142,75,0.011870193726803261],[112,142,76,0.008380029016204677],[112,142,77,0.004832939268941129],[112,142,78,0.0013097018299063742],[112,142,79,-0.0021091345952528443],[112,143,64,0.0028348681682548375],[112,143,65,0.003340458579243281],[112,143,66,0.004110872770813624],[112,143,67,0.0050998521545790355],[112,143,68,0.006337448861465898],[112,143,69,0.007893454659225337],[112,143,70,0.009807124624219248],[112,143,71,0.012089735305245],[112,143,72,0.01472863332058114],[112,143,73,0.017691144217320386],[112,143,74,0.01606123747582256],[112,143,75,0.012711587405092983],[112,143,76,0.009217606812996194],[112,143,77,0.005656163819371688],[112,143,78,0.002107065486013144],[112,143,79,-0.0013498012490070562],[112,144,64,0.0022018552487194855],[112,144,65,0.002697877050879434],[112,144,66,0.00345511990738919],[112,144,67,0.0044265428954983],[112,144,68,0.005642318217081255],[112,144,69,0.007173088030111947],[112,144,70,0.00905935210556888],[112,144,71,0.011313915891660422],[112,144,72,0.013925840747869888],[112,144,73,0.016864261587770882],[112,144,74,0.01692260926042199],[112,144,75,0.013586233221538551],[112,144,76,0.010097455486191842],[112,144,77,0.006531713846105345],[112,144,78,0.0029676283012981947],[112,144,79,-5.158159564350564E-4],[112,145,64,0.0015701844556785319],[112,145,65,0.0020592824584620426],[112,145,66,0.0028053597741039076],[112,145,67,0.0037612016316175786],[112,145,68,0.004957028094125316],[112,145,69,0.006463801557992707],[112,145,70,0.008322854955178148],[112,145,71,0.010548230015870389],[112,145,72,0.01313051655185792],[112,145,73,0.016040566635863496],[112,145,74,0.017786567974423045],[112,145,75,0.014470906769168184],[112,145,76,0.01099621698450147],[112,145,77,0.0074363364292704065],[112,145,78,0.0038684892468384014],[112,145,79,3.705204539913224E-4],[112,146,64,9.558678469000042E-4],[112,146,65,0.0014413033541457866],[112,146,66,0.002178839904321032],[112,146,67,0.0031217493937894737],[112,146,68,0.004300225010905138],[112,146,69,0.005784977779378015],[112,146,70,0.007617721294369084],[112,146,71,0.00981340216556584],[112,146,72,0.012363916512958043],[112,146,73,0.01524170911071958],[112,146,74,0.018403245490438012],[112,146,75,0.015343716684702973],[112,146,76,0.01189216689057234],[112,146,77,0.008348693685341526],[112,146,78,0.0047889235157852214],[112,146,79,0.0012893238421291088],[112,147,64,3.7578781443128704E-4],[112,147,65,8.612422201620767E-4],[112,147,66,0.0015932786007184128],[112,147,67,0.0025263435621208146],[112,147,68,0.003690525679046768],[112,147,69,0.005155687652822641],[112,147,70,0.00696344382821671],[112,147,71,0.00912928636102789],[112,147,72,0.011646168137919171],[112,147,73,0.01448797626832701],[112,147,74,0.01761288688857604],[112,147,75,0.016184515569858175],[112,147,76,0.012765467516724064],[112,147,77,0.009249444482493027],[112,147,78,0.005710281037767791],[112,147,79,0.0022228323077214175],[112,148,64,-1.5332361018629022E-4],[112,148,65,3.3606694630747627E-4],[112,148,66,0.0010658761554460465],[112,148,67,0.0019924162336423944],[112,148,68,0.0031455908475311],[112,148,69,0.004593809827007005],[112,148,70,0.006378095800466296],[112,148,71,0.008514111034235],[112,148,72,0.010995597324865394],[112,148,73,0.01379771445431778],[112,148,74,0.016880268399680452],[112,148,75,0.01697524985003595],[112,148,76,0.013598385317187309],[112,148,77,0.01012131862223041],[112,148,78,0.006615908009893677],[112,148,79,0.003155167273033551],[112,149,64,-6.157531575938694E-4],[112,149,65,-1.1844405631722242E-4],[112,149,66,6.124795168602657E-4],[112,149,67,0.0015358649930556645],[112,149,68,0.0026813494620117136],[112,149,69,0.004115296319149245],[112,149,70,0.00587764702132849],[112,149,71,0.007983854759442152],[112,149,72,0.010428173476053536],[112,149,73,0.013186853391766425],[112,149,74,0.01622123470050095],[112,149,75,0.017700248417104204],[112,149,76,0.014375472542701998],[112,149,77,0.0109491835077399],[112,149,78,0.00749109157462768],[112,149,79,0.004072150351404673],[112,150,64,-9.97522178078193E-4],[112,150,65,-4.884028352790318E-4],[112,150,66,2.469006884814207E-4],[112,150,67,0.0011703963852167816],[112,150,68,0.0023113734476430865],[112,150,69,0.003733584916088547],[112,150,70,0.005475420277311346],[112,150,71,0.00755175313228553],[112,150,72,0.009957073332961608],[112,150,73,0.012668533414665756],[112,150,74,0.015648901463630037],[112,150,75,0.018346449921516513],[112,150,76,0.015083713075713982],[112,150,77,0.011720103323731544],[112,150,78,0.008323027769173477],[112,150,79,0.004961176238942328],[112,151,64,-0.0012869497072274536],[112,151,65,-7.623587067580466E-4],[112,151,66,-1.9610863325388934E-5],[112,151,67,9.070223761958975E-4],[112,151,68,0.0020464034093866643],[112,151,69,0.0034591585939471843],[112,151,70,0.005181688414017943],[112,151,71,0.00722793707498048],[112,151,72,0.009592363788324175],[112,151,73,0.012252835868195132],[112,151,74,0.015173436262654017],[112,151,75,0.018307178381185528],[112,151,76,0.015712632394645383],[112,151,77,0.012423390756442356],[112,151,78,0.009100812866705213],[112,151,79,0.005811141852269868],[112,152,64,-0.0014750624859009038],[112,152,65,-9.316906281919382E-4],[112,152,66,-1.787415158148217E-4],[112,152,67,7.537100875950764E-4],[112,152,68,0.0018940255389916759],[112,152,69,0.003299252245045582],[112,152,70,0.005003412373366551],[112,152,71,0.007019202833834444],[112,152,72,0.00934080391706178],[112,152,73,0.011946616883672002],[112,152,74,0.014801923608408558],[112,152,75,0.017861461601198305],[112,152,76,0.01625437162379172],[112,152,77,0.013050651285926241],[112,152,78,0.009815458226941609],[112,152,79,0.006612431924293428],[112,153,64,-0.0015558516645173262],[112,153,65,-9.908448529239015E-4],[112,153,66,-2.2533222286754987E-4],[112,153,67,7.151850963936261E-4],[112,153,68,0.0018585000226525364],[112,153,69,0.003257707002807586],[112,153,70,0.0049441204660843],[112,153,71,0.0069289139322072065],[112,153,72,0.009205766462834946],[112,153,73,0.011753444729295308],[112,153,74,0.014538314272348104],[112,153,75,0.01751677372866209],[112,153,76,0.016703725631285415],[112,153,77,0.013595820085769728],[112,153,78,0.010459928772130752],[112,153,79,0.007356961262423733],[112,154,64,-0.0015263758957248358],[112,154,65,-9.374175628469967E-4],[112,154,66,-1.574423666070394E-4],[112,154,67,7.928886099409533E-4],[112,154,68,0.0019407412577580319],[112,154,69,0.003334972466793554],[112,154,70,0.005003929168630675],[112,154,71,0.006957035347265209],[112,154,72,0.009187279019233293],[112,154,73,0.011673640937490232],[112,154,74,0.014383459050738928],[112,154,75,0.017274722931168208],[112,154,76,0.017058145141200035],[112,154,77,0.014055191567907377],[112,154,78,0.011029205204524209],[112,154,79,0.008038273869614846],[112,155,64,-0.0013867104837448974],[112,155,65,-7.720821418238183E-4],[112,155,66,2.374161050917989E-5],[112,155,67,9.850888528661352E-4],[112,155,68,0.0021384502112130315],[112,155,69,0.003528257150787384],[112,155,70,0.005179705750982744],[112,155,71,0.0071003001924595625],[112,155,72,0.009282185154454335],[112,155,73,0.011704425415912175],[112,155,74,0.014335227126405961],[112,155,75,0.01713409537798105],[112,155,76,0.017317702827214784],[112,155,77,0.014427441612250628],[112,155,78,0.011520370082876825],[112,155,79,0.008651699128014187],[112,156,64,-0.0011397422131056271],[112,156,65,-4.983607095526831E-4],[112,156,66,3.141531713480925E-4],[112,156,67,0.0012871470396388842],[112,156,68,0.00244639928556038],[112,156,69,0.0038318275070844568],[112,156,70,0.00546537306801633],[112,156,71,0.007352509209676761],[112,156,72,0.009484425745813657],[112,156,73,0.011840165762052147],[112,156,74,0.014388709193196935],[112,156,75,0.017090998302513576],[112,156,76,0.01748502335430175],[112,156,77,0.014713642522386225],[112,156,78,0.011932717878424195],[112,156,79,0.009194565247986822],[112,157,64,-7.908094241314251E-4],[112,157,65,-1.2223948257708287E-4],[112,157,66,7.072486756850341E-4],[112,157,67,0.0016919383532869355],[112,157,68,0.002856870102557507],[112,157,69,0.004237455919784738],[112,157,70,0.005852356882556085],[112,157,71,0.0077049634054804144],[112,157,72,0.009785440815572196],[112,157,73,0.012072731020916824],[112,157,74,0.014536505522177903],[112,157,75,0.017139065154742745],[112,157,76,0.017565177331586936],[112,157,77,0.014917270749613494],[112,157,78,0.01226788913515921],[112,157,79,0.009666470191811001],[112,158,64,-3.471868374886623E-4],[112,158,65,3.4837253366310714E-4],[112,158,66,0.001194566885672838],[112,158,67,0.0021904284073309375],[112,158,68,0.00336024466695867],[112,158,69,0.00473501810898939],[112,158,70,0.006330176132552872],[112,158,71,0.008147030204801295],[112,158,72,0.010174692192394702],[112,158,73,0.012391950151467553],[112,158,74,0.01476909916787921],[112,158,75,0.017269722967004908],[112,158,76,0.017565539133832762],[112,158,77,0.015044207428046158],[112,158,78,0.012530028865039703],[112,158,79,0.010069610291448946],[112,159,64,1.8258544460308604E-4],[112,159,65,9.043420903775412E-4],[112,159,66,0.0017664455426983964],[112,159,67,0.002772405734276721],[112,159,68,0.00394575043597076],[112,159,69,0.005313240446295068],[112,159,70,0.006887176608259295],[112,159,71,0.008666843542836537],[112,159,72,0.010640307363277276],[112,159,73,0.012786175500420435],[112,159,74,0.015075314537709104],[112,159,75,0.017472522073039225],[112,159,76,0.01749560854091986],[112,159,77,0.01510273176342498],[112,159,78,0.012725969316031342],[112,159,79,0.01040916679350203],[112,160,64,7.895294171083644E-4],[112,160,65,0.0015361681294015566],[112,160,66,0.002412895652358464],[112,160,67,0.0034273709199443498],[112,160,68,0.004602359892133608],[112,160,69,0.005960597749831541],[112,160,70,0.007511408567674042],[112,160,71,0.009252138371755958],[112,160,72,0.011169844928975794],[112,160,73,0.013242951621611784],[112,160,74,0.015442861577924996],[112,160,75,0.017735528340616785],[112,160,76,0.017366796134214296],[112,160,77,0.015103507317625055],[112,160,78,0.012865437259590681],[112,160,79,0.01069375058174897],[112,161,64,0.0014652138810834216],[112,161,65,0.002234996848145651],[112,161,66,0.0031246342030686776],[112,161,67,0.004145583088389416],[112,161,68,0.005319845299112367],[112,161,69,0.006666362204193566],[112,161,70,0.008191648889826349],[112,161,71,0.00989122012301056],[112,161,72,0.011751182131772888],[112,161,73,0.013749789825379612],[112,161,74,0.015858965865273994],[112,161,75,0.018045778102592783],[112,161,76,0.017192172375783677],[112,161,77,0.01505956122957814],[112,161,78,0.01296128595429686],[112,161,79,0.01093590534850963],[112,162,64,0.0022028972357853167],[112,162,65,0.002993796239114118],[112,162,66,0.003894276141996724],[112,162,67,0.004919264537039139],[112,162,68,0.00608998941094644],[112,162,69,0.007421804136861217],[112,162,70,0.008918568445573496],[112,162,71,0.010574069738517154],[112,162,72,0.012373524987783744],[112,162,73,0.014295048895269202],[112,162,74,0.016311084934576493],[112,162,75,0.018389795999766086],[112,162,76,0.016986180281125238],[112,162,77,0.01498625641149688],[112,162,78,0.01302975195386103],[112,162,79,0.011152669510477735],[112,163,64,0.0029988293188446787],[112,163,65,0.003808691057809699],[112,163,66,0.004717686539413122],[112,163,67,0.005743964425763289],[112,163,68,0.006907953005526476],[112,163,69,0.008221545477942004],[112,163,70,0.009686045454357408],[112,163,71,0.011293584964636805],[112,163,72,0.013028541626817167],[112,163,73,0.014868922468752148],[112,163,74,0.016787711219058355],[112,163,75,0.018645398427322192],[112,163,76,0.01676431157834442],[112,163,77,0.01490125675682736],[112,163,78,0.013090736940613617],[112,163,79,0.011366197192549216],[112,164,64,0.0038492585488070414],[112,164,65,0.004675592835460649],[112,164,66,0.005590241499233646],[112,164,67,0.006614452677545402],[112,164,68,0.007767805292716889],[112,164,69,0.009058738853365545],[112,164,70,0.010486013832859969],[112,164,71,0.012040126253452304],[112,164,72,0.013704640909105175],[112,164,73,0.015457491369174094],[112,164,74,0.01727224376603542],[112,164,75,0.018297687827120195],[112,164,76,0.016549447001471384],[112,164,77,0.014830896195881389],[112,164,78,0.013174154649739186],[112,164,79,0.011610034362113802],[112,165,64,0.0047226715771337005],[112,165,65,0.005559858506292047],[112,165,66,0.006474100858610619],[112,165,67,0.007489673520971709],[112,165,68,0.008625252098444853],[112,165,69,0.009885809445165159],[112,165,70,0.011267581630240603],[112,165,71,0.012759474348286852],[112,165,72,0.014344307781037027],[112,165,73,0.01600002847806478],[112,165,74,0.017700885453323552],[112,165,75,0.0180162681996915],[112,165,76,0.016410885428360087],[112,165,77,0.014846764517082204],[112,165,78,0.013353523609392423],[112,165,79,0.011959229164394437],[112,166,64,0.005580286816899701],[112,166,65,0.006418875971373097],[112,166,66,0.007322872909145927],[112,166,67,0.008319488163116303],[112,166,68,0.009426451205893015],[112,166,69,0.010645310117494594],[112,166,70,0.011969861158324884],[112,166,71,0.013387536860312467],[112,166,72,0.014880553870729148],[112,166,73,0.016427028572092318],[112,166,74,0.018002057890393195],[112,166,75,0.017874319427143265],[112,166,76,0.01642283693792645],[112,166,77,0.015023527286062441],[112,166,78,0.013703374232329391],[112,166,79,0.0124875864101933],[112,167,64,0.006391424070513222],[112,167,65,0.007218961161926023],[112,167,66,0.008099961898480931],[112,167,67,0.009064446265405358],[112,167,68,0.01012917015477039],[112,167,69,0.011292366577644212],[112,167,70,0.012545547895131863],[112,167,71,0.013874861016443826],[112,167,72,0.015262126589044875],[112,167,73,0.016685847577227915],[112,167,74,0.01812218488912657],[112,167,75,0.01792587780581339],[112,167,76,0.01663924304392191],[112,167,77,0.015414489430587956],[112,167,78,0.014275833134727526],[112,167,79,0.013245527569394054],[112,168,64,0.007132445204120144],[112,168,65,0.007934263891278258],[112,168,66,0.008777428009779634],[112,168,67,0.009694594573503457],[112,168,68,0.010701536876114458],[112,168,69,0.011793357999646023],[112,168,70,0.012959515141269319],[112,168,71,0.014185123850048132],[112,168,72,0.01545187505354424],[112,168,73,0.01673892420851557],[112,168,74,0.018023750522685702],[112,168,75,0.01820795933010955],[112,168,76,0.017096096959504273],[112,168,77,0.01605412541565],[112,168,78,0.015103373072513505],[112,168,79,0.014263066969120159],[112,169,64,0.0077855914273729215],[112,169,65,0.008545560069350184],[112,169,66,0.00933472422583005],[112,169,67,0.010188152900317451],[112,169,68,0.011120648240865144],[112,169,69,0.012124447063444886],[112,169,70,0.013187251268049682],[112,169,71,0.014293460434842316],[112,169,72,0.015424952254028925],[112,169,73,0.016561839142836238],[112,169,74,0.01768319932677763],[112,169,75,0.018742832796374922],[112,169,76,0.017813902218052395],[112,169,77,0.01696073298685772],[112,169,78,0.016201668531711393],[112,169,79,0.015552872889542393],[112,170,64,0.00833780721601699],[112,170,65,0.009039028823426854],[112,170,66,0.009757416686964834],[112,170,67,0.010530171990226092],[112,170,68,0.01137115875867714],[112,170,69,0.012270088791526922],[112,170,70,0.01321327520970655],[112,170,71,0.014184770947686769],[112,170,72,0.015166998030349304],[112,170,73,0.016141358572376262],[112,170,74,0.017088826152353517],[112,170,75,0.017990516263251932],[112,170,76,0.018800125841959756],[112,170,77,0.018139071000610622],[112,170,78,0.017572423367202068],[112,170,79,0.017113287246035298],[112,171,64,0.00877955041956153],[112,171,65,0.00940501407770462],[112,171,66,0.01003588810539391],[112,171,67,0.010711172836813799],[112,171,68,0.011443849008849703],[112,171,69,0.012221517775318701],[112,171,70,0.013029529804327838],[112,171,71,0.013852006180125297],[112,171,72,0.014672302501513934],[112,171,73,0.015473461801925036],[112,171,74,0.01623865536264808],[112,171,75,0.016951610524729394],[112,171,76,0.017597024642410072],[112,171,77,0.01816096436165271],[112,171,78,0.018631249451133713],[112,171,79,0.01893130391498506],[112,172,64,0.00910358804302047],[112,172,65,0.009636770087460226],[112,172,66,0.01016402373845617],[112,172,67,0.010725766962605607],[112,172,68,0.011334173317537987],[112,172,69,0.011975213311894203],[112,172,70,0.012633752512226681],[112,172,71,0.013294431038488274],[112,172,72,0.013941949500964442],[112,172,73,0.014561352464787175],[112,172,74,0.015138308974921815],[112,172,75,0.015659389690412702],[112,172,76,0.016112340194868385],[112,172,77,0.01648635007075727],[112,172,78,0.016772317348036313],[112,172,79,0.016963107962976644],[112,173,64,0.009303777138894116],[112,173,65,0.009729190367355898],[112,173,66,0.010137879363388298],[112,173,67,0.010571257105551663],[112,173,68,0.01104078612757765],[112,173,69,0.011531341899507577],[112,173,70,0.012027822964261541],[112,173,71,0.012515865492031167],[112,173,72,0.012981939488480594],[112,173,73,0.013413452843728104],[112,173,74,0.013798863255000543],[112,173,75,0.01412779805102166],[112,173,76,0.014391181942593197],[112,173,77,0.014581372721687236],[112,173,78,0.01469230493081536],[112,173,79,0.014719641525686349],[112,174,64,0.00937383019341776],[112,174,65,0.009677519397581864],[112,174,66,0.009954330636697475],[112,174,67,0.010246217693524764],[112,174,68,0.010564046439545916],[112,174,69,0.010892176468461417],[112,174,70,0.011216086716357626],[112,174,71,0.011522902348199637],[112,174,72,0.011801291324851472],[112,174,73,0.012041380695280511],[112,174,74,0.012234693181030038],[112,174,75,0.012374104592010576],[112,174,76,0.012453822584764712],[112,174,77,0.012469387246993518],[112,174,78,0.012417693965602912],[112,174,79,0.012297039010253205],[112,175,64,0.009311557297767578],[112,175,65,0.009481291733995145],[112,175,66,0.009614671538794922],[112,175,67,0.009753709837707372],[112,175,68,0.009908799878590283],[112,175,69,0.010064389199815163],[112,175,70,0.010207097547645483],[112,175,71,0.010326034764508775],[112,175,72,0.010412489687051885],[112,175,73,0.010459652123062949],[112,175,74,0.01046236903697264],[112,175,75,0.010416936020166549],[112,175,76,0.01032092506789711],[112,175,77,0.010173049629743887],[112,175,78,0.009973067845848312],[112,175,79,0.009721724827186511],[112,176,64,0.009136381553053243],[112,176,65,0.009161119267483966],[112,176,66,0.009140618808504069],[112,176,67,0.009116433733420503],[112,176,68,0.009098593630490518],[112,176,69,0.009072227420135241],[112,176,70,0.009025638773676752],[112,176,71,0.008950396197163616],[112,176,72,0.008840808760009547],[112,176,73,0.008693449460538596],[112,176,74,0.00850672793993665],[112,176,75,0.008280514175434064],[112,176,76,0.008015814700803169],[112,176,77,0.007714502818206268],[112,176,78,0.007379104180807832],[112,176,79,0.007012639041253452],[112,177,64,0.008875644792771068],[112,177,65,0.00874580137295085],[112,177,66,0.008562374748769195],[112,177,67,0.00836592110197969],[112,177,68,0.008166198118453618],[112,177,69,0.007949580950304864],[112,177,70,0.007706564341543174],[112,177,71,0.007431609461878961],[112,177,72,0.007122403939916167],[112,177,73,0.006779184985959627],[112,177,74,0.006404127906384642],[112,177,75,0.006000802202465314],[112,177,76,0.005573697334347641],[112,177,77,0.005127820116443986],[112,177,78,0.00466836559488267],[112,177,79,0.004200463141906681],[112,178,64,0.008558845664156618],[112,178,65,0.008266739395507443],[112,178,66,0.007913240644905485],[112,178,67,0.0075373766895662315],[112,178,68,0.007148711366389719],[112,178,69,0.006735389117688308],[112,178,70,0.006290552845788006],[112,178,71,0.005811935997904932],[112,178,72,0.005300907578907031],[112,178,73,0.004761596286808879],[112,178,74,0.004200096661391743],[112,178,75,0.0036237599982987413],[112,178,76,0.00304057263868268],[112,178,77,0.0024586240991481866],[112,178,78,0.001885667359536239],[112,178,79,0.0013287734784397686],[112,179,64,0.008216890342387186],[112,179,65,0.0077570938317078975],[112,179,66,0.007228664276814375],[112,179,67,0.006668598097413326],[112,179,68,0.006086331979890776],[112,179,69,0.005472247634364376],[112,179,70,0.004822529889053819],[112,179,71,0.0041384969215383935],[112,179,72,0.00342543422099116],[112,179,73,0.002691523971549255],[112,179,74,0.0019468733231293664],[112,179,75,0.0012026448489079712],[112,179,76,4.702923163316378E-4],[112,179,77,-2.3909527772200377E-4],[112,179,78,-9.153386356997972E-4],[112,179,79,-0.001549599459595772],[112,180,64,0.007881342452984523],[112,180,65,0.007250941689243998],[112,180,66,0.006545290558125478],[112,180,67,0.005798903319967],[112,180,68,0.005021146247389652],[112,180,69,0.004205038390898314],[112,180,70,0.0033501249440160237],[112,180,71,0.0024615432184146068],[112,180,72,0.0015486527922085114],[112,180,73,6.237773312341738E-4],[112,180,74,-2.9893789708963233E-4],[112,180,75,-0.0012045489933761569],[112,180,76,-0.0020782132573149694],[112,180,77,-0.0029059624646710054],[112,180,78,-0.0036753463843172125],[112,180,79,-0.004375943540019711],[112,181,64,0.007583671776312517],[112,181,65,0.006782433569418414],[112,181,66,0.005900014824523045],[112,181,67,0.00496806549568596],[112,181,68,0.003995928853797332],[112,181,69,0.0029795816539565324],[112,181,70,0.0019221622116878019],[112,181,71,8.327745888737305E-4],[112,181,72,-2.750747080865468E-4],[112,181,73,-0.0013849124557737975],[112,181,74,-0.0024786023260747712],[112,181,75,-0.0035375120657224674],[112,181,76,-0.004543540155813075],[112,181,77,-0.005479998099831861],[112,181,78,-0.006332344727966611],[112,181,79,-0.007088769146070456],[112,182,64,0.007354501284835139],[112,182,65,0.006384949990685891],[112,182,66,0.005329038265628273],[112,182,67,0.004215254345846059],[112,182,68,0.003052956668647705],[112,182,69,0.001841310125561663],[112,182,70,5.871849413391173E-4],[112,182,71,-6.962935675174712E-4],[112,182,72,-0.00199148849356307],[112,182,73,-0.003277852004967624],[112,182,74,-0.00453337815634184],[112,182,75,-0.005735903071632179],[112,182,76,-0.006864247984178258],[112,182,77,-0.0078992008823679],[112,182,78,-0.008824332776579066],[112,182,79,-0.009626644871902127],[112,183,64,0.007222852042145639],[112,183,65,0.0060902564472900015],[112,183,66,0.004866924968988293],[112,183,67,0.0035779837498846638],[112,183,68,0.0022328350434939782],[112,183,69,8.339642949180756E-4],[112,183,70,-6.079873481119035E-4],[112,183,71,-0.0020759155649677963],[112,183,72,-0.0035481607526318447],[112,183,73,-0.005000258735971432],[112,183,74,-0.006406528843619419],[112,183,75,-0.007741494168723596],[112,183,76,-0.008981129116020696],[112,183,77,-0.010103929625515215],[112,183,78,-0.01109180175616013],[112,183,79,-0.011930764607775105],[112,184,64,0.00721538547287325],[112,184,65,0.005927656674710385],[112,184,66,0.004545660021156546],[112,184,67,0.0030910648816465554],[112,184,68,0.0015733360291855574],[112,184,69,-1.6915093087590274E-6],[112,184,70,-0.001619669326132165],[112,184,71,-0.003259653795816688],[112,184,72,-0.004896160395545658],[112,184,73,-0.006501047661283376],[112,184,74,-0.008045224946849837],[112,184,75,-0.009500178448422394],[112,184,76,-0.010839310261624957],[112,184,77,-0.012039085550179733],[112,184,78,-0.01307998322152516],[112,184,79,-0.013947245823085219],[112,185,64,0.0073556424945750085],[112,185,65,0.005923143573448656],[112,185,66,0.004393708089730599],[112,185,67,0.0027855643095843242],[112,185,68,0.0011082479029283917],[112,185,69,-6.291329773752073E-4],[112,185,70,-0.002408688584827209],[112,185,71,-0.004205870611391225],[112,185,72,-0.005991653302150725],[112,185,73,-0.00773453240067792],[112,185,74,-0.009402335772448377],[112,185,75,-0.01096383986806712],[112,185,76,-0.012390186512488672],[112,185,77,-0.013656094838387717],[112,185,78,-0.014740863518685865],[112,185,79,-0.015629158792038106],[112,186,64,0.007663278986779966],[112,186,65,0.006098547224788521],[112,186,66,0.004435071891720309],[112,186,67,0.002687766445705945],[112,186,68,8.662353778823443E-4],[112,186,69,-0.0010173202133896336],[112,186,70,-0.002941733257079453],[112,186,71,-0.004879174289847682],[112,186,72,-0.00679743858372075],[112,186,73,-0.008662040857907064],[112,186,74,-0.010438111163943319],[112,186,75,-0.012092085864068089],[112,186,76,-0.013593187963864892],[112,186,77,-0.014914691409259481],[112,186,78,-0.016034964312069484],[112,186,79,-0.01693828642443587],[112,187,64,0.008153297058684186],[112,187,65,0.00647067941679599],[112,187,66,0.004688349937989078],[112,187,67,0.0028181397130938673],[112,187,68,8.697098547198998E-4],[112,187,69,-0.001141923302974623],[112,187,70,-0.003192669131850786],[112,187,71,-0.005251819660628869],[112,187,72,-0.007284421363197448],[112,187,73,-0.009253445977279806],[112,187,74,-0.011121753747583278],[112,187,75,-0.012853842831459922],[112,187,76,-0.01441737895979572],[112,187,77,-0.015784499808683464],[112,187,78,-0.016932888905488944],[112,187,79,-0.017846614263025383],[112,188,64,0.008835271565740018],[112,188,65,0.007050474086137672],[112,188,66,0.005165792930913297],[112,188,67,0.003190305790317776],[112,188,68,0.0011337090652359886],[112,188,69,-9.865296955093223E-4],[112,188,70,-0.0031438268801384337],[112,188,71,-0.005305063948006276],[112,188,72,-0.0074330225616968575],[112,188,73,-0.009488611970091291],[112,188,74,-0.011432881904083462],[112,188,75,-0.013228814600550367],[112,188,76,-0.01484288993514432],[112,188,77,-0.01624641801776044],[112,188,78,-0.017416633983123726],[112,188,79,-0.018337550089591446],[112,189,64,0.009712571316740859],[112,189,65,0.007842123071512032],[112,189,66,0.0058723581830764935],[112,189,67,0.003810011283274218],[112,189,68,0.0016647854530114838],[112,189,69,-5.438340435784206E-4],[112,189,70,-0.0027872599996454943],[112,189,71,-0.005030478382499761],[112,189,72,-0.007234526155155966],[112,189,73,-0.009358756364610915],[112,189,74,-0.011362883686355338],[112,189,75,-0.013208803975435491],[112,189,76,-0.014862181746366067],[112,189,77,-0.016293799884606063],[112,189,78,-0.017480666278067592],[112,189,79,-0.01840687244493364],[112,190,64,0.010781574407185402],[112,190,65,0.008842206567830382],[112,190,66,0.00680476141897763],[112,190,67,0.004674101171126506],[112,190,68,0.0024599026354942587],[112,190,69,1.8318886202992667E-4],[112,190,70,-0.0021259740750180756],[112,190,71,-0.004431216108681001],[112,190,72,-0.006692364333456917],[112,190,73,-0.008867728188467353],[112,190,74,-0.010916161842953383],[112,190,75,-0.012798897322159263],[112,190,76,-0.014481142287555636],[112,190,77,-0.015933436769713906],[112,190,78,-0.01713276354184858],[112,190,79,-0.018063407213771917],[112,191,64,0.012030877111890633],[112,191,65,0.010038817666955836],[112,191,66,0.007950525319605125],[112,191,67,0.00576949337331515],[112,191,68,0.0035053392959029754],[112,191,69,0.0011801274330053397],[112,191,70,-0.0011751279333104862],[112,191,71,-0.0035232368908087344],[112,191,72,-0.005823340955169719],[112,191,73,-0.008033202538749883],[112,191,74,-0.010111270037136558],[112,191,75,-0.012018512106401681],[112,191,76,-0.013720015080941369],[112,191,77,-0.01518633786719801],[112,191,78,-0.016394619039278465],[112,191,79,-0.017329431255180668],[112,192,64,0.013440495770212411],[112,192,65,0.011410680371027977],[112,192,66,0.009287024171537619],[112,192,67,0.007072153789290351],[112,192,68,0.004775599862297993],[112,192,69,0.0024199922861571827],[112,192,70,3.679274899454153E-5],[112,192,71,-0.002336489083803908],[112,192,72,-0.004658793644157063],[112,192,73,-0.006887791733029913],[112,192,74,-0.008981940272028695],[112,192,75,-0.010902307182057805],[112,192,76,-0.012614159411881513],[112,192,77,-0.014088308523411442],[112,192,78,-0.015302208629758873],[112,192,79,-0.01624080187323794],[112,193,64,0.01498106110107462],[112,193,65,0.012926260468430768],[112,193,66,0.010780523988240677],[112,193,67,0.00854607117193681],[112,193,68,0.006232331345237504],[112,193,69,0.003862090315041061],[112,193,70,0.001466828860718661],[112,193,71,-9.160492961603429E-4],[112,193,72,-0.003245694819685192],[112,193,73,-0.005480073163896888],[112,193,74,-0.007578001443606304],[112,193,75,-0.00950095552329601],[112,193,76,-0.011214641448086496],[112,193,77,-0.012690325721389789],[112,193,78,-0.013905919319658068],[112,193,79,-0.01484681072228541],[112,194,64,0.01661300439247404],[112,194,65,0.0145428686705009],[112,194,66,0.012385217481650824],[112,194,67,0.010142231209840577],[112,194,68,0.007823245724865324],[112,194,69,0.005450913264226951],[112,194,70,0.0030564278018850783],[112,194,71,6.767798766090774E-4],[112,194,72,-0.0016476918893478841],[112,194,73,-0.003875533900563594],[112,194,74,-0.005966188845327642],[112,194,75,-0.00788177897398719],[112,194,76,-0.009588655641735054],[112,194,77,-0.011058709734959043],[112,194,78,-0.01227043798143411],[112,194,79,-0.01320976052758665],[112,195,64,0.018286169994393885],[112,195,65,0.016206270037786515],[112,195,66,0.014042842965273932],[112,195,67,0.011798252484735743],[112,195,68,0.009481782845896746],[112,195,69,0.007115844204406992],[112,195,70,0.004731215272925299],[112,195,71,0.002364332132484342],[112,195,72,5.48726522750864E-5],[112,195,73,-0.002156445419685316],[112,195,74,-0.00422984634692664],[112,195,75,-0.006128252280829953],[112,195,76,-0.007818807491255455],[112,195,77,-0.00927416569126552],[112,195,78,-0.010473535571967426],[112,195,79,-0.011403480041434414],[112,196,64,0.01738486682901425],[112,196,65,0.01787613760007688],[112,196,66,0.015711851906372736],[112,196,67,0.013471202510231548],[112,196,68,0.01116351737833519],[112,196,69,0.008810972874039459],[112,196,70,0.006443905609004036],[112,196,71,0.004098141094897618],[112,196,72,0.0018126156329595893],[112,196,73,-3.727899108455417E-4],[112,196,74,-0.0024191982380929386],[112,196,75,-0.004290459799109543],[112,196,76,-0.0059546475234595955],[112,196,77,-0.0073853169664875465],[112,196,78,-0.008562527109853545],[112,196,79,-0.009473617426692806],[112,197,64,0.01577778150579265],[112,197,65,0.017956813578640343],[112,197,66,0.017384025821342148],[112,197,67,0.01515596975966523],[112,197,68,0.012866241200207592],[112,197,69,0.010536757246747151],[112,197,70,0.008197328761038614],[112,197,71,0.005883043871093459],[112,197,72,0.003631938662602435],[112,197,73,0.0014828772262964836],[112,197,74,-5.263528975771083E-4],[112,197,75,-0.0023607241793918246],[112,197,76,-0.003989426119494608],[112,197,77,-0.005387090841641354],[112,197,78,-0.006534782640119196],[112,197,79,-0.007420747226273008],[112,198,64,0.014203639160803406],[112,198,65,0.016367215476508518],[112,198,66,0.018599330832193922],[112,198,67,0.01684298528941794],[112,198,68,0.014582798641559314],[112,198,69,0.012288213492991713],[112,198,70,0.009988384573476918],[112,198,71,0.00771747746987765],[112,198,72,0.0055124053116651596],[112,198,73,0.0034107709519458703],[112,198,74,0.0014490204796309232],[112,198,75,-3.3918643682812895E-4],[112,198,76,-0.0019243842184884878],[112,198,77,-0.0032824822539318154],[112,198,78,-0.004395714538460463],[112,198,79,-0.0052533539838994095],[112,199,64,0.012684437917633844],[112,199,65,0.014818717726036495],[112,199,66,0.01701791838312577],[112,199,67,0.0185164550517194],[112,199,68,0.01629898805905246],[112,199,69,0.014052513345776233],[112,199,70,0.01180537393141869],[112,199,71,0.009590592947270844],[112,199,72,0.007443697980479249],[112,199,73,0.005400745267182803],[112,199,74,0.0034965493142663606],[112,199,75,0.001763123204611612],[112,199,76,2.2833450695126543E-4],[112,199,77,-0.0010852186289863391],[112,199,78,-0.0021611069556539647],[112,199,79,-0.002989741298045815],[112,200,64,0.011244132992922061],[112,200,65,0.013333744996478531],[112,200,66,0.01548550100931269],[112,200,67,0.017691524825434436],[112,200,68,0.017995614413993884],[112,200,69,0.015811145373192545],[112,200,70,0.013630271732020695],[112,200,71,0.011484639230146244],[112,200,72,0.009408107889384563],[112,200,73,0.0074348809745125284],[112,200,74,0.0055978313022554535],[112,200,75,0.003927029853616017],[112,200,76,0.002448481325358747],[112,200,77,0.0011830709309575255],[112,200,78,1.4572643230493574E-4],[112,200,79,-6.552009462266959E-4],[112,201,64,0.00990709669050602],[112,201,65,0.011935879734056276],[112,201,66,0.014025049147621881],[112,201,67,0.016164294991864475],[112,201,68,0.018340886230569398],[112,201,69,0.01754194338418159],[112,201,70,0.015440877781553985],[112,201,71,0.013377237945598924],[112,201,72,0.011382931420183373],[112,201,73,0.009489997299512483],[112,201,74,0.007729051438174651],[112,201,75,0.006127923121627247],[112,201,76,0.00471048749386246],[112,201,77,0.003495697732237215],[112,201,78,0.002496820649624581],[112,201,79,0.0017208790937914427],[112,202,64,0.008696736196421263],[112,202,65,0.010648397985103048],[112,202,66,0.012659813123508033],[112,202,67,0.014717797167663131],[112,202,68,0.016808112300637442],[112,202,69,0.018910937223862962],[112,202,70,0.017212845762184556],[112,202,71,0.015243549602056851],[112,202,72,0.013342773367220097],[112,202,73,0.011540088150312171],[112,202,74,0.00986354339951223],[112,202,75,0.008338432135564398],[112,202,76,0.006986238102420613],[112,202,77,0.005823768470839488],[112,202,78,0.0048624754276938974],[112,202,79,0.004107969697023148],[112,203,64,0.007634270038434021],[112,203,65,0.009492962336468683],[112,203,66,0.011411923958761103],[112,203,67,0.013374698928589447],[112,203,68,0.015365250264293646],[112,203,69,0.01736424688417401],[112,203,70,0.018921590314940943],[112,203,71,0.017058331386627594],[112,203,72,0.015261757592579108],[112,203,73,0.013558683746900644],[112,203,74,0.011974296263963614],[112,203,75,0.010531067603517647],[112,203,76,0.00924783615640509],[112,203,77,0.008139054770765063],[112,203,78,0.007214210859353043],[112,203,79,0.006477420769520189],[112,204,64,0.006737664238529668],[112,204,65,0.008488472894295775],[112,204,66,0.010301148785719787],[112,204,67,0.012155622178428548],[112,204,68,0.01403377260726415],[112,204,69,0.01591672032188331],[112,204,70,0.017782349496297672],[112,204,71,0.01879788675148867],[112,204,72,0.017115645505361887],[112,204,73,0.01552113829632869],[112,204,74,0.014036407495845202],[112,204,75,0.012680832128245664],[112,204,76,0.011470358344725588],[112,204,77,0.010416878967963821],[112,204,78,0.009527764614062939],[112,204,79,0.008805548671034474],[112,205,64,0.006020729356768243],[112,205,65,0.00765007738699384],[112,205,66,0.00934380181953816],[112,205,67,0.011077937283432197],[112,205,68,0.01283200852716619],[112,205,69,0.014587515911392861],[112,205,70,0.016323862116057856],[112,205,71,0.01801943447807613],[112,205,72,0.018883862699791008],[112,205,73,0.01740684432260192],[112,205,74,0.01602948308963972],[112,205,75,0.014767799935392123],[112,205,76,0.013634603933539737],[112,205,77,0.012639017841998485],[112,205,78,0.011786132662355975],[112,205,79,0.011076793056449485],[112,206,64,0.005492379799130395],[112,206,65,0.0069883416477500805],[112,206,66,0.008551812003547052],[112,206,67,0.010154708413268671],[112,206,68,0.011773945757985573],[112,206,69,0.013391301777715624],[112,206,70,0.014987719955573147],[112,206,71,0.016544054148315467],[112,206,72,0.018041876778665724],[112,206,73,0.01920137418147712],[112,206,74,0.017939985698501755],[112,206,75,0.01677966714259832],[112,206,76,0.01572983820503059],[112,206,77,0.014796625997587092],[112,206,78,0.013982655478521008],[112,206,79,0.013286945351148141],[112,207,64,0.005156136095993462],[112,207,65,0.006508185188992256],[112,207,66,0.007931213488989368],[112,207,67,0.009392871365768657],[112,207,68,0.010867235545803103],[112,207,69,0.012336232134607095],[112,207,70,0.013782338616601466],[112,207,71,0.01518896503164117],[112,207,72,0.016540960988396178],[112,207,73,0.017825051712373852],[112,207,74,0.01903020168223536],[112,207,75,0.01871122089308875],[112,207,76,0.01775250620341448],[112,207,77,0.01688815148968484],[112,207,78,0.01611811583873431],[112,207,79,0.015439432660977775],[112,208,64,0.00501023723535063],[112,208,65,0.006207708363051292],[112,208,66,0.007480121734403994],[112,208,67,0.008790838972856369],[112,208,68,0.010110934188426873],[112,208,69,0.011422340477712725],[112,208,70,0.012709025179102905],[112,208,71,0.013956987672768666],[112,208,72,0.01515444547670595],[112,208,73,0.01629197502528828],[112,208,74,0.017362606408605628],[112,208,75,0.01836187142139338],[112,208,76,0.01928780434074709],[112,208,77,0.018901169786003126],[112,208,78,0.018179224672202215],[112,208,79,0.017520526234032826],[112,209,64,0.005047670926026846],[112,209,65,0.006079983317301166],[112,209,66,0.007191926942882472],[112,209,67,0.008342690476994112],[112,209,68,0.009500253382481417],[112,209,69,0.010646406346025986],[112,209,70,0.011766522946739393],[112,209,71,0.012849160978686474],[112,209,72,0.013885913300165177],[112,209,73,0.014871240428520251],[112,209,74,0.015802284901815896],[112,209,75,0.016678667456063466],[112,209,76,0.017502265092517174],[112,209,77,0.01827697113356343],[112,209,78,0.019008437387661708],[112,209,79,0.019510673441831328],[112,210,64,0.005256119177531396],[112,210,65,0.006113437221760506],[112,210,66,0.007055986451964046],[112,210,67,0.008039026221848062],[112,210,68,0.009027420221807142],[112,210,69,0.010002661551136235],[112,210,70,0.010951408718995638],[112,210,71,0.011864684494046165],[112,210,72,0.012737382910966075],[112,210,73,0.013567786163838535],[112,210,74,0.014357092157016733],[112,210,75,0.015108953466757932],[112,210,76,0.01582902844663122],[112,210,77,0.016524545186517525],[112,210,78,0.017203879009022406],[112,210,79,0.01787614415840881],[112,211,64,0.005618088333896906],[112,211,65,0.006291878958343987],[112,211,66,0.007057550187994119],[112,211,67,0.007866791718826064],[112,211,68,0.008681398825053881],[112,211,69,0.009482409201679103],[112,211,70,0.010257610415650355],[112,211,71,0.011000337504671736],[112,211,72,0.01170863347264468],[112,211,73,0.012384448514503765],[112,211,74,0.013032879484186065],[112,211,75,0.013661451056533115],[112,211,76,0.014279439966628657],[112,211,77,0.014897243638820277],[112,211,78,0.015525794442918808],[112,211,79,0.016176020737309803],[112,212,64,0.0061112165486796695],[112,212,65,0.006594704151962579],[112,212,66,0.007177865531810795],[112,212,67,0.007809282650147479],[112,212,68,0.008447794846408941],[112,212,69,0.009073827731308298],[112,212,70,0.009676111785147974],[112,212,71,0.010250087087702637],[112,212,72,0.010796720623066167],[112,212,73,0.01132139145204274],[112,212,74,0.011832845990566901],[112,212,75,0.0123422255237653],[112,212,76,0.012862167970718288],[112,212,77,0.013405985795469613],[112,212,78,0.013986921836196823],[112,212,79,0.014617484697589797],[112,213,64,0.006708761331713364],[112,213,65,0.0069972810717655026],[112,213,66,0.007394464026290518],[112,213,67,0.007846333148262002],[112,213,68,0.008308945124285476],[112,213,69,0.00876196210268343],[112,213,70,0.009194846287578082],[112,213,71,0.00960488711654962],[112,213,72,0.009995684608971635],[112,213,73,0.010375729593768897],[112,213,74,0.010757083749667105],[112,213,75,0.011154162236541457],[112,213,76,0.01158262153508661],[112,213,77,0.012058354944776646],[112,213,78,0.012596598018157913],[112,213,79,0.013211146034214357],[112,214,64,0.00738026995438973],[112,214,65,0.00747152008903104],[112,214,66,0.007681632516455972],[112,214,67,0.007954689853844073],[112,214,68,0.008244194887728129],[112,214,69,0.008528904527462302],[112,214,70,0.008798782412845515],[112,214,71,0.009052670400726248],[112,214,72,0.009296452889739086],[112,214,73,0.00954134648418601],[112,214,74,0.009802318583547987],[112,214,75,0.010096638285052726],[112,214,76,0.010442562779613545],[112,214,77,0.010858162207663518],[112,214,78,0.011360285722494248],[112,214,79,0.011963671286353691],[112,215,64,0.008092435646183768],[112,215,65,0.007986629526990204],[112,215,66,0.008011071464369253],[112,215,67,0.008108574409116245],[112,215,68,0.008230365098106582],[112,215,69,0.008354167203432015],[112,215,70,0.008470202858916375],[112,215,71,0.008578536307705581],[112,215,72,0.00868693947734301],[112,215,73,0.008808910384309107],[112,215,74,0.008961848556804658],[112,215,75,0.009165391422527964],[112,215,76,0.009439915357118734],[112,215,77,0.009805204830493821],[112,215,78,0.010279292824382035],[112,215,79,0.010877475427035772],[112,216,64,0.008810142648695387],[112,216,65,0.008510060875063927],[112,216,66,0.00835274332176512],[112,216,67,0.008280437187769305],[112,216,68,0.008242412652235935],[112,216,69,0.00821524972258302],[112,216,70,0.00818918015162828],[112,216,71,0.00816513637412258],[112,216,72,0.008152343442695494],[112,216,73,0.008166089918476773],[112,216,74,0.00822568244771765],[112,216,75,0.008352588472965118],[112,216,76,0.008568771234675773],[112,216,77,0.00889522091856144],[112,216,78,0.009350685497663673],[112,216,79,0.009950604508571347],[112,217,64,0.009497703312318832],[112,217,65,0.009008646463311447],[112,217,66,0.00867591397104926],[112,217,67,0.008441905194992374],[112,217,68,0.008254286310144106],[112,217,69,0.008088403945897214],[112,217,70,0.007934251434245643],[112,217,71,0.007793260564703278],[112,217,72,0.007675649173446211],[112,217,73,0.007597972086266858],[112,217,74,0.00758088062241848],[112,217,75,0.007647095545689183],[112,217,76,0.007819598017723839],[112,217,77,0.008120042768950876],[112,217,78,0.008567397356997788],[112,217,79,0.009176811033938867],[112,218,64,0.010120290522414224],[112,218,65,0.00944993279997733],[112,218,66,0.008950390357557488],[112,218,67,0.008564927188775563],[112,218,68,0.008239981333976574],[112,218,69,0.007949599269562055],[112,218,70,0.007683295289401668],[112,218,71,0.0074426269769382715],[112,218,72,0.00723833111260393],[112,218,73,0.00708768529537425],[112,218,74,0.00701210088929497],[112,218,75,0.007034952550349048],[112,218,76,0.00717964922247288],[112,218,77,0.007467951116365138],[112,218,78,0.007918536803767522],[112,218,79,0.00854582417618037],[112,219,64,0.010645568823915975],[112,219,65,0.009803712863280531],[112,219,66,0.009147957530256769],[112,219,67,0.008623119174121795],[112,219,68,0.008174795931415495],[112,219,69,0.007775691320671507],[112,219,70,0.007414613575740202],[112,219,71,0.007092877915181598],[112,219,72,0.006821265838485935],[112,219,73,0.006617230207253873],[112,219,74,0.006502352050780005],[112,219,75,0.0065000546489088085],[112,219,76,0.00663358004702604],[112,219,77,0.0069242327513239724],[112,219,78,0.007389894940088389],[112,219,79,0.008043817112019165],[112,220,64,0.011045527673056072],[112,220,65,0.010043760705407388],[112,220,66,0.009244018381771775],[112,220,67,0.008593313502516244],[112,220,68,0.0080367926849062],[112,220,69,0.007545797215641813],[112,220,70,0.007108221363860899],[112,220,71,0.006724785366958796],[112,220,72,0.006405854461923412],[112,220,73,0.006168521308406308],[112,220,74,0.006033957995574172],[112,220,75,0.006025043410974906],[112,220,76,0.0061642713242489895],[112,220,77,0.0064719441044280785],[112,220,78,0.006964656550059329],[112,220,79,0.007654073870034076],[112,221,64,0.011298520279387799],[112,221,65,0.010149771769154284],[112,221,66,0.009219439428863817],[112,221,67,0.00845731486708046],[112,221,68,0.007808468214064409],[112,221,69,0.0072428805886945655],[112,221,70,0.006747348138225765],[112,221,71,0.006321669003963216],[112,221,72,0.0059753584135169655],[112,221,73,0.005724642223575794],[112,221,74,0.0055897352834623016],[112,221,75,0.005592410552676094],[112,221,76,0.005753864456988451],[112,221,77,0.0060928835104971405],[112,221,78,0.006624316768839051],[112,221,79,0.007357858215254494],[112,222,64,0.011391511507676871],[112,222,65,0.010109512332929898],[112,222,66,0.009062605998391695],[112,222,67,0.008203866516405634],[112,222,68,0.007478634359997029],[112,222,69,0.006855549647948865],[112,222,70,0.006320153490604428],[112,222,71,0.005871029897606055],[112,222,72,0.00551645176915073],[112,222,73,0.005271317869953713],[112,222,74,0.005154387264328961],[112,222,75,0.005185817234438488],[112,222,76,0.005385010235977059],[112,222,77,0.005768774969561854],[112,222,78,0.006349806165498522],[112,222,79,0.007135487198329775],[112,223,64,0.011322538284288391],[112,223,65,0.009921181484695566],[112,223,66,0.008771690178183196],[112,223,67,0.00783083001395736],[112,223,68,0.0070445141937515105],[112,223,69,0.006380071539759726],[112,223,70,0.0058216605632609875],[112,223,71,0.005366403180908426],[112,223,72,0.00502099331278914],[112,223,73,0.004798606610606274],[112,223,74,0.004716117839653572],[112,223,75,0.004791631966301588],[112,223,76,0.005042334519628393],[112,223,77,0.005482666304940153],[112,223,78,0.006122827051971701],[112,223,79,0.0069676120856089815],[112,224,64,0.011103385893188928],[112,224,65,0.009595988976652313],[112,224,66,0.008357134853908228],[112,224,67,0.00734758184193889],[112,224,68,0.00651405613347167],[112,224,69,0.005822606294690804],[112,224,70,0.005255910503158409],[112,224,71,0.004809432901720151],[112,224,72,0.004488021558538112],[112,224,73,0.004302815597522236],[112,224,74,0.004268468015440167],[112,224,75,0.004400690217696893],[112,224,76,0.00471412380975396],[112,224,77,0.005220544678830722],[112,224,78,0.0059274038947285885],[112,224,79,0.006836709453531219],[112,225,64,0.010762483449189801],[112,225,65,0.009160952226670488],[112,225,66,0.007844357078566759],[112,225,67,0.006777630085186715],[112,225,68,0.005908469402669659],[112,225,69,0.005201663587493629],[112,225,70,0.004638341158546525],[112,225,71,0.004212172293286263],[112,225,72,0.003925975945621064],[112,225,73,0.003788642496487196],[112,225,74,0.003812378406812746],[112,225,75,0.004010278848495006],[112,225,76,0.004394233784702472],[112,225,77,0.004973172459742092],[112,225,78,0.005751650744818893],[112,225,79,0.006728785273535157],[112,226,64,0.01034802169696655],[112,226,65,0.008661915605994913],[112,226,66,0.0072766739069895624],[112,226,67,0.006161454328451739],[112,226,68,0.0052649839717140885],[112,226,69,0.00455078546506094],[112,226,70,0.0039983931827742665],[112,226,71,0.0035996126334192904],[112,226,72,0.003355147376661526],[112,226,73,0.003271546753804527],[112,226,74,0.0033584808327727623],[112,226,75,0.003626348466033884],[112,226,76,0.004084223847980823],[112,226,77,0.004738146440142283],[112,226,78,0.005589758612234946],[112,226,79,0.006635294828865429],[112,227,64,0.009929544705228957],[112,227,65,0.008165858574779554],[112,227,66,0.0067182491219586644],[112,227,67,0.005560072903215037],[112,227,68,0.00464106374344915],[112,227,69,0.003923443722176333],[112,227,70,0.0033851289893998978],[112,227,71,0.003016049787089231],[112,227,72,0.0028147990235102053],[112,227,73,0.002785606429268675],[112,227,74,0.002935644619974855],[112,227,75,0.0032726728807192873],[112,227,76,0.0038030239685990746],[112,227,77,0.004529938704971184],[112,227,78,0.005452252602967893],[112,227,79,0.006563438252512867],[112,228,64,0.009578846091422151],[112,228,65,0.007745181162859174],[112,228,66,0.006241485941297845],[112,228,67,0.005045462696886748],[112,228,68,0.0041079475999472],[112,228,69,0.003389870181894196],[112,228,70,0.0028675324767067226],[112,228,71,0.0025289973360483773],[112,228,72,0.0023707634397766883],[112,228,73,0.0023947698237237343],[112,228,74,0.0026057361616931415],[112,228,75,0.003008844522595422],[112,228,76,0.003607767798899946],[112,228,77,0.004403049472787617],[112,228,78,0.00539083885562324],[112,228,79,0.006561985409111169],[112,229,64,0.009347847251772975],[112,229,65,0.007453185784731746],[112,229,66,0.0059004874493110366],[112,229,67,0.004672126935149993],[112,229,68,0.003720290053037891],[112,229,69,0.00300469937070502],[112,229,70,0.0025000912067406405],[112,229,71,0.0021926874767351375],[112,229,72,0.00207690792722359],[112,229,73,0.0021524144663645373],[112,229,74,0.0024214937180930276],[112,229,75,0.002886783406175175],[112,229,76,0.0035493476460938408],[112,229,77,0.004407105689711572],[112,229,78,0.00545361813429943],[112,229,79,0.006677234078307242],[112,230,64,0.009268833681952327],[112,230,65,0.00732312055525127],[112,230,66,0.005729043425547161],[112,230,67,0.0044740767139852256],[112,230,68,0.0035121200484879013],[112,230,69,0.002801860797399528],[112,230,70,0.0023165741455093607],[112,230,71,0.0020406992144765936],[112,230,72,0.001966604295308803],[112,230,73,0.002091684990473397],[112,230,74,0.0024158012522512455],[112,230,75,0.0029390587820227396],[112,230,76,0.003659939725639663],[112,230,77,0.004573787066594166],[112,230,78,0.005671646585467244],[112,230,79,0.0069394697256610635],[112,231,64,0.009357204374946406],[112,231,65,0.007370929763853019],[112,231,66,0.005743374130431161],[112,231,67,0.0044675738624682096],[112,231,68,0.0034995920747581477],[112,231,69,0.002797342782684944],[112,231,70,0.0023328081136412917],[112,231,71,0.002088743116942463],[112,231,72,0.002055513781063249],[112,231,73,0.0022282667044911573],[112,231,74,0.0026044362312552007],[112,231,75,0.0031815943418437567],[112,231,76,0.00395564806287648],[112,231,77,0.00491938862824077],[112,231,78,0.006061396094549186],[112,231,79,0.007365302589243482],[112,232,64,0.009614074300160058],[112,232,65,0.007597856215146811],[112,232,66,0.005944726441898521],[112,232,67,0.004653727783447442],[112,232,68,0.0036835940996482385],[112,232,69,0.0029918177031431426],[112,232,70,0.0025493223577209905],[112,232,71,0.0023373232669919226],[112,232,72,0.002344260752812328],[112,232,73,0.002563062063045634],[112,232,74,0.0029887369051981405],[112,232,75,0.003616311787223023],[112,232,76,0.004439107725202023],[112,232,77,0.005447365353355469],[112,232,78,0.006627220948956093],[112,232,79,0.00796003636771853],[112,233,64,0.01002872858856087],[112,233,65,0.007992893706327867],[112,233,66,0.006321820321486754],[112,233,67,0.0050209439839189116],[112,233,68,0.004052209784132105],[112,233,69,0.0033731258391638866],[112,233,70,0.002953858178698793],[112,233,71,0.002774273111509495],[112,233,72,0.0028209916773571683],[112,233,73,0.003084766334233155],[112,233,74,0.003558185222151728],[112,233,75,0.004233708838277242],[112,233,76,0.005102043446131167],[112,233,77,0.0061508550275721505],[112,233,78,0.0073638270741653005],[112,233,79,0.008720065008869779],[112,234,64,0.01058092681556915],[112,234,65,0.008535088085809356],[112,234,66,0.0068531441246110665],[112,234,67,0.005547222890392294],[112,234,68,0.004583033661334566],[112,234,69,0.003918616626448932],[112,234,70,0.003523742551965463],[112,234,71,0.003377164301188141],[112,234,72,0.003463818631361866],[112,234,73,0.0037723419535268437],[112,234,74,0.004292905100060595],[112,234,75,0.005015371650775599],[112,234,76,0.005927783869786817],[112,234,77,0.0070151798053935946],[112,234,78,0.008258744607827084],[112,234,79,0.00963529862920902],[112,235,64,0.011243055553872547],[112,235,65,0.009195685121635455],[112,235,66,0.007509097057658167],[112,235,67,0.006202307335118557],[112,235,68,0.00524533776054372],[112,235,69,0.004597345903185143],[112,235,70,0.004228124466392123],[112,235,71,0.004115587409201427],[112,235,72,0.004243146431388777],[112,235,73,0.004597390849845508],[112,235,74,0.005166075574146569],[112,235,75,0.005936421411633002],[112,235,76,0.0068937314508242375],[112,235,77,0.00802032678989313],[112,235,78,0.009294804398046856],[112,235,79,0.010691619426142294],[112,236,64,0.01198212715442614],[112,236,65,0.009940123197993903],[112,236,66,0.008253976877772556],[112,236,67,0.00694967689441704],[112,236,68,0.006002087952045617],[112,236,69,0.00537212754023299],[112,236,70,0.005030072503513624],[112,236,71,0.0049533032089029315],[112,236,72,0.0051238822476120625],[112,236,73,0.005526423818723638],[112,236,74,0.0061462581273717945],[112,236,75,0.006967894672204448],[112,236,76,0.00797378783610216],[112,236,77,0.00914340773353968],[112,236,78,0.010452618811222922],[112,236,79,0.011873368249737525],[112,237,64,0.012761622507784325],[112,237,65,0.010729868655722195],[112,237,66,0.009047810731972571],[112,237,67,0.007748387062647436],[112,237,68,0.006811808090486019],[112,237,69,0.006201437641652902],[112,237,70,0.0058885319749211115],[112,237,71,0.0058502629837543126],[112,237,72,0.006067526355145658],[112,237,73,0.006523025802322874],[112,237,74,0.007199637292616957],[112,237,75,0.008079056756965183],[112,237,76,0.009140734330656212],[112,237,77,0.010361097739124376],[112,237,78,0.011713067011309164],[112,237,79,0.013165862280158648],[112,238,64,0.01354317534189603],[112,238,65,0.011524091400411978],[112,238,66,0.00984802684283311],[112,238,67,0.008554751056900413],[112,238,68,0.007630289844629915],[112,238,69,0.007041169309716503],[112,238,70,0.006760139737804961],[112,238,71,0.006764496138401493],[112,238,72,0.007034142465689878],[112,238,73,0.007549915717471228],[112,238,74,0.008292173389394124],[112,238,75,0.00923964735247651],[112,238,76,0.010368566811803197],[112,238,77,0.011652052596137559],[112,238,78,0.013059784625278337],[112,238,79,0.014557944007961843],[112,239,64,0.014290668154736761],[112,239,65,0.012284642619650522],[112,239,66,0.010615140385996024],[112,239,67,0.009328546292160646],[112,239,68,0.008417122360310997],[112,239,69,0.007851282036987099],[112,239,70,0.007605790395693432],[112,239,71,0.00765839696757059],[112,239,72,0.007988181090584296],[112,239,73,0.008574139705484308],[112,239,74,0.009394020602701574],[112,239,75,0.010423403743059488],[112,239,76,0.011635032894096727],[112,239,77,0.012998399445677744],[112,239,78,0.014479579896469905],[112,239,79,0.016041328140218622],[112,240,64,0.014981493949816934],[112,240,65,0.012989968896914384],[112,240,66,0.01132871417957058],[112,240,67,0.010050347010408533],[112,240,68,0.009153679227892723],[112,240,69,0.008613706330595612],[112,240,70,0.00840772732391231],[112,240,71,0.00851429872173403],[112,240,72,0.00891188145091276],[112,240,73,0.009577711833643707],[112,240,74,0.01048689915743546],[112,240,75,0.011611751990659733],[112,240,76,0.012921335051440368],[112,240,77,0.014381258091406678],[112,240,78,0.01595369791646231],[112,240,79,0.017597654337404765],[112,241,64,0.015602922658027303],[112,241,65,0.013628771669182896],[112,241,66,0.011978739591582428],[112,241,67,0.010711114749100229],[112,241,68,0.009831442593409154],[112,241,69,0.009319939091108712],[112,241,70,0.009156941702502535],[112,241,71,0.009322186454914663],[112,241,72,0.009793770889017471],[112,241,73,0.01054732207243346],[112,241,74,0.011555371683005513],[112,241,75,0.012786939843323589],[112,241,76,0.014207329070005012],[112,241,77,0.015778129388205653],[112,241,78,0.01745743535654466],[112,241,79,0.01920027545301829],[112,242,64,0.016149369318104564],[112,242,65,0.014196430745766151],[112,242,66,0.012561388881261222],[112,242,67,0.011307479679196987],[112,242,68,0.010447030053882762],[112,242,69,0.009966038863392283],[112,242,70,0.009848357050112874],[112,242,71,0.01007528260963837],[112,242,72,0.010624847628277272],[112,242,73,0.011471291045231908],[112,242,74,0.012584718630942507],[112,242,75,0.013930951383894575],[112,242,76,0.01547156326298664],[112,242,77,0.017164108893508122],[112,242,78,0.01896254161432441],[112,242,79,0.020535289110168713],[112,243,64,0.016621591092440137],[112,243,65,0.014694263654445172],[112,243,66,0.013078345956214713],[112,243,67,0.011841157014067087],[112,243,68,0.011001714720727742],[112,243,69,0.010552269256080037],[112,243,70,0.010480616101192719],[112,243,71,0.010769996752469004],[112,243,72,0.011398711138503765],[112,243,73,0.012339896404101248],[112,243,74,0.013561473047770592],[112,243,75,0.015026259141630676],[112,243,76,0.016692253110526127],[112,243,77,0.01851308530224333],[112,243,78,0.020438638345250802],[112,243,79,0.019005341978861955],[112,244,64,0.017025853619102485],[112,244,65,0.015128750674981144],[112,244,66,0.01353609893384949],[112,244,67,0.01231832013052876],[112,244,68,0.011500895621804246],[112,244,69,0.011082685610899786],[112,244,70,0.011055803633010142],[112,244,71,0.011405804179220567],[112,244,72,0.012111614873605136],[112,244,73,0.013145615962192355],[112,244,74,0.014473867609978286],[112,244,75,0.016056485276243204],[112,244,76,0.017848163218972327],[112,244,77,0.019798845967961748],[112,244,78,0.01962019322789173],[112,244,79,0.017530202546831866],[112,245,64,0.017373066197522633],[112,245,65,0.015510725000929006],[112,245,66,0.013945193888118913],[112,245,67,0.012748929702611456],[112,245,68,0.01195351764014447],[112,245,69,0.01156466400489835],[112,245,70,0.0115791042068522],[112,245,71,0.011985052239370303],[112,245,72,0.012762440126467918],[112,245,73,0.013883286238692095],[112,245,74,0.015312192507755125],[112,245,75,0.017006970374701377],[112,245,76,0.01891939511863631],[112,245,77,0.02053187091589634],[112,245,78,0.01836292008366308],[112,245,79,0.016145846072772255],[112,246,64,0.017677885416834942],[112,246,65,0.01585452757678955],[112,246,66,0.014319449262280555],[112,246,67,0.013146018240508114],[112,246,68,0.012371440269852846],[112,246,69,0.012008371739409237],[112,246,70,0.012058393844312074],[112,246,71,0.012512693268809163],[112,246,72,0.013352589766082494],[112,246,73,0.01455017507040444],[112,246,74,0.016069062738381885],[112,246,75,0.01786524834982818],[112,246,76,0.019888079341229416],[112,246,77,0.01951454579984182],[112,246,78,0.01722477778237005],[112,246,79,0.014886967484388246],[112,247,64,0.017957786962217188],[112,247,65,0.016177126278879617],[112,247,66,0.014675130543589947],[112,247,67,0.013524929535279694],[112,247,68,0.012768754569037023],[112,247,69,0.01242617855792678],[112,247,70,0.012503764734097892],[112,247,71,0.012995943077844345],[112,247,72,0.013885800660002246],[112,247,73,0.01514596695961612],[112,247,74,0.016739593360741503],[112,247,75,0.01862142589326131],[112,247,76,0.020738970153150727],[112,247,77,0.01862895093815669],[112,247,78,0.01623219166074741],[112,247,79,0.01378571102787299],[112,248,64,0.01823210547651977],[112,248,65,0.01649719924576586],[112,248,66,0.015030084927708603],[112,248,67,0.013902512635230612],[112,248,68,0.013161047807065689],[112,248,69,0.01283200794224116],[112,248,70,0.0129269821588083],[112,248,71,0.013443864018940958],[112,248,72,0.01436787364301521],[112,248,73,0.015672659862671003],[112,248,74,0.017321481271222707],[112,248,75,0.019268464915647203],[112,248,76,0.020255397738927993],[112,248,77,0.017892433179090013],[112,248,78,0.015408017126251247],[112,248,79,0.01287049510126037],[112,249,64,0.018521042512877745],[112,249,65,0.016834182318638938],[112,249,66,0.015402835850093315],[112,249,67,0.014296270123644091],[112,249,68,0.0135646154402542],[112,249,69,0.013240627963683069],[112,249,70,0.013340872946193847],[112,249,71,0.013866871757780445],[112,249,72,0.014806319972267284],[112,249,73,0.016134372179606674],[112,249,74,0.017814992090323643],[112,249,75,0.019802366406009277],[112,249,76,0.019738322599794442],[112,249,77,0.017318357170127734],[112,249,78,0.014770693741576687],[112,249,79,0.012164934258139417],[112,250,64,0.01884464278979112],[112,250,65,0.017207280724614613],[112,250,66,0.01581163742985825],[112,250,67,0.014723460630959693],[112,250,68,0.013995620207603449],[112,250,69,0.01366688131563535],[112,250,70,0.013758644887229339],[112,250,71,0.014276164993638473],[112,250,72,0.01520992331195315],[112,250,73,0.016537058784339698],[112,250,74,0.01822285080064666],[112,250,75,0.020222254162233028],[112,250,76,0.0193630711631934],[112,250,77,0.01691559148787244],[112,250,78,0.014333501361791382],[112,250,79,0.01168686049831076],[112,251,64,0.01922173915420614],[112,251,65,0.017634445327599047],[112,251,66,0.016273489059626296],[112,251,67,0.015200155698684294],[112,251,68,0.014469198317808],[112,251,69,0.0141248543261061],[112,251,70,0.01419313672554256],[112,251,71,0.014683077522682969],[112,251,72,0.01558821641905675],[112,251,73,0.016888135039298768],[112,251,74,0.018550034852853274],[112,251,75,0.020530356887716344],[112,251,76,0.01913031001819914],[112,251,77,0.01668809978287612],[112,251,78,0.014103920408440176],[112,251,79,0.01144744608026886],[112,252,64,0.01966886687135828],[112,252,65,0.01813131398306947],[112,252,66,0.0168031105838308],[112,252,67,0.015740251318599963],[112,252,68,0.014998512901814679],[112,252,69,0.014626984946706657],[112,252,70,0.014655998511138784],[112,252,71,0.015098352212488463],[112,252,72,0.015950871857548503],[112,252,73,0.01719600787028591],[112,252,74,0.018803468558788113],[112,252,75,0.020731887217752137],[112,252,76,0.019036622862211763],[112,252,77,0.01663463886155039],[112,252,78,0.01408309842226101],[112,252,79,0.011450430194891833],[112,253,64,0.020199148093571293],[112,253,65,0.018710118766016155],[112,253,66,0.017411878739012687],[112,253,67,0.01635443470052013],[112,253,68,0.015593755133268432],[112,253,69,0.015183109938536846],[112,253,70,0.015156802327810118],[112,253,71,0.015531336659911804],[112,253,72,0.01630700625413813],[112,253,73,0.017469513139024038],[112,253,74,0.0189916177228017],[112,253,75,0.020834816335605723],[112,253,76,0.019074535354733302],[112,253,77,0.01674856561629893],[112,253,78,0.01426542507363628],[112,253,79,0.011691451928334592],[112,254,64,0.02082114761477874],[112,254,65,0.019378560096411587],[112,254,66,0.01810672578403864],[112,254,67,0.017049107076249938],[112,254,68,0.01626109367370771],[112,254,69,0.015799451727920563],[112,254,70,0.015702083649989894],[112,254,71,0.01598910053952447],[112,254,72,0.01666439782634993],[112,254,73,0.017717258744662685],[112,254,74,0.019123983625727342],[112,254,75,0.020849542964992016],[112,254,76,0.019232648993567348],[112,254,77,0.017017754678385916],[112,254,78,0.014638217825164038],[112,254,79,0.012157492012579664],[112,255,64,0.020365481555859082],[112,255,65,0.020138649065031038],[112,255,66,0.018889001527070914],[112,255,67,0.017825263627903817],[112,255,68,0.017001573381925508],[112,255,69,0.016477545687416818],[112,255,70,0.016294313863067074],[112,255,71,0.016475474918201737],[112,255,72,0.017028617165651298],[112,255,73,0.017946873113919404],[112,255,74,0.019210495673555872],[112,255,75,0.02078845568535728],[112,255,76,0.01949588544343938],[112,255,77,0.017424628603201216],[112,255,78,0.01518152043129609],[112,255,79,0.012826425912076866],[112,256,64,0.01962173705443814],[112,256,65,0.02098551956547728],[112,256,66,0.019753300260894557],[112,256,67,0.018677331936820495],[112,256,68,0.017809964539179293],[112,256,69,0.01721310891194709],[112,256,70,0.01693080479341865],[112,256,71,0.016990014115534788],[112,256,72,0.01740207154711254],[112,256,73,0.018164159005167158],[112,256,74,0.019260802257343376],[112,256,75,0.020665387711829495],[112,256,76,0.019845842598089622],[112,256,77,0.01794630230184959],[112,256,78,0.015868016423289426],[112,256,79,0.013666690821979391],[112,257,64,0.01879698677076444],[112,257,65,0.020150730266657237],[112,257,66,0.020686269021225175],[112,257,67,0.019591984533729866],[112,257,68,0.01867357742789418],[112,257,69,0.01799486471108119],[112,257,70,0.0176025590070921],[112,257,71,0.017526893581885854],[112,257,72,0.017782976138436466],[112,257,73,0.01837216609449096],[112,257,74,0.019283473581017372],[112,257,75,0.02049497837156938],[112,257,76,0.020261278201167937],[112,257,77,0.018554856832036247],[112,257,78,0.016663071845089954],[112,257,79,0.014637079888095143],[112,258,64,0.017912939017475458],[112,258,65,0.01923533086949048],[112,258,66,0.020475142584688157],[112,258,67,0.020547093188741074],[112,258,68,0.019571303694207242],[112,258,69,0.018803656181183615],[112,258,70,0.01829343978385932],[112,258,71,0.018074120130710927],[112,258,72,0.018164588573395268],[112,258,73,0.018570434712690206],[112,258,74,0.019285240584967906],[112,258,75,0.02029189484360904],[112,258,76,0.020719051762139704],[112,258,77,0.01921831748527331],[112,258,78,0.017525755203130405],[112,258,79,0.015687807079922227],[112,259,64,0.017003381524395025],[112,259,65,0.018297670295145937],[112,259,66,0.019532731693116],[112,259,67,0.02070167733989714],[112,259,68,0.02047968049049262],[112,259,69,0.019620004328362806],[112,259,70,0.018988509029270097],[112,259,71,0.01862178806411498],[112,259,72,0.01854243175193836],[112,259,73,0.018760194980973092],[112,259,74,0.019273186338092017],[112,259,75,0.020069077106109813],[112,259,76,0.021126328566107324],[112,259,77,0.019912667320899868],[112,259,78,0.018427035269144725],[112,259,79,0.016785367994600963],[112,260,64,0.01610290673515467],[112,260,65,0.017368670723358914],[112,260,66,0.01859779628851349],[112,260,67,0.019791031441493658],[112,260,68,0.02090557599751233],[112,260,69,0.02043263529748867],[112,260,70,0.019681819087465274],[112,260,71,0.019169054256528303],[112,260,72,0.01892037581909244],[112,260,73,0.018949490710351406],[112,260,74,0.019258863173060782],[112,260,75,0.019840819350624973],[112,260,76,0.02067866964655251],[112,260,77,0.02062078057347896],[112,260,78,0.01934970331539277],[112,260,79,0.017913391223895493],[112,261,64,0.015238273818094724],[112,261,65,0.016471932064609625],[112,261,66,0.017690293259611422],[112,261,67,0.018901832566325345],[112,261,68,0.020066807428871018],[112,261,69,0.021116126286357208],[112,261,70,0.020371729374430828],[112,261,71,0.019718965212905313],[112,261,72,0.0193058907097665],[112,261,73,0.01914982213136542],[112,261,74,0.019257296884879486],[112,261,75,0.019625075617243092],[112,261,76,0.02024116073849981],[112,261,77,0.021085830035118956],[112,261,78,0.02027129976306819],[112,261,79,0.01904940041342423],[112,262,64,0.01442867132474466],[112,262,65,0.015624063332082156],[112,262,66,0.016823870132839435],[112,262,67,0.018044320613943034],[112,262,68,0.0192491559831385],[112,262,69,0.02036926778307789],[112,262,70,0.021060100114379518],[112,262,71,0.02027755899240953],[112,262,72,0.01970907100897454],[112,262,73,0.019375111539098898],[112,262,74,0.019285912897788565],[112,262,75,0.019442367062108123],[112,262,76,0.019836942469631275],[112,262,77,0.020454613679314705],[112,262,78,0.021165144355364335],[112,262,79,0.02016578843107268],[112,263,64,0.013685929379230525],[112,263,65,0.0148348534006983],[112,263,66,0.01600599806900403],[112,263,67,0.017223275265268394],[112,263,68,0.01845434789125459],[112,263,69,0.01963086522312895],[112,263,70,0.020696134167080986],[112,263,71,0.02085355880078147],[112,263,72,0.020142203020928666],[112,263,73,0.01964111339704896],[112,263,74,0.019363761037537546],[112,263,75,0.019314795925812808],[112,263,76,0.01949086514344563],[112,263,77,0.01988144057903544],[112,263,78,0.02046965502233209],[112,263,79,0.02123182108622519],[112,264,64,0.013014371500173372],[112,264,65,0.01410708150935926],[112,264,66,0.01523774770603477],[112,264,67,0.016437776262150313],[112,264,68,0.017679168250599023],[112,264,69,0.018895160663968232],[112,264,70,0.020029605410149566],[112,264,71,0.021037399504253745],[112,264,72,0.020619623512457826],[112,264,73,0.019965098135070757],[112,264,74,0.01951099449454064],[112,264,75,0.019265292964310936],[112,264,76,0.01922848187336306],[112,264,77,0.019394286132038068],[112,264,78,0.019750399753391577],[112,264,79,0.020279221295333112],[112,265,64,0.012410302939729624],[112,265,65,0.013435964526212587],[112,265,66,0.014513205023851224],[112,265,67,0.01568060935473537],[112,265,68,0.016914886312590645],[112,265,69,0.018151710893851494],[112,265,70,0.019336298656970972],[112,265,71,0.02042392144973754],[112,265,72,0.021157872374760946],[112,265,73,0.02036581189648316],[112,265,74,0.01974860527910248],[112,265,75,0.01931710072369605],[112,265,76,0.019075256048649545],[112,265,77,0.01902077181060382],[112,265,78,0.01914572256252683],[112,265,79,0.019437185401838232],[112,266,64,0.011861133017447052],[112,266,65,0.012808238578890043],[112,266,66,0.013818524973988063],[112,266,67,0.01493731579601734],[112,266,68,0.016146332215325614],[112,266,69,0.017384526539462285],[112,266,70,0.018599291249131237],[112,266,71,0.019747036468198007],[112,266,72,0.020792615339513463],[112,266,73,0.02086371405304643],[112,266,74,0.020098418048403958],[112,266,75,0.019493494631373023],[112,266,76,0.019055985227150633],[112,266,77,0.018787272638717465],[112,266,78,0.018683613774172568],[112,266,79,0.0187366627804715],[112,267,64,0.011344129479494846],[112,267,65,0.012200873193373847],[112,267,66,0.013130621142849184],[112,267,67,0.014184883771513066],[112,267,68,0.01535062365041438],[112,267,69,0.016570871258537703],[112,267,70,0.01779597459501998],[112,267,71,0.01898421415377359],[112,267,72,0.02010127324386001],[112,267,73,0.02111972206894606],[112,267,74,0.020583343796924492],[112,267,75,0.019817743499503937],[112,267,76,0.019194443182050887],[112,267,77,0.01871822110031196],[112,267,78,0.018389320542363627],[112,267,79,0.018203869101944038],[112,268,64,0.010824803427776688],[112,268,65,0.011579416587679496],[112,268,66,0.012415490204604208],[112,268,67,0.013390080621832235],[112,268,68,0.014495541404976959],[112,268,69,0.01567972001804203],[112,268,70,0.01689663673064877],[112,268,71,0.018107113586644286],[112,268,72,0.019278280892278038],[112,268,73,0.02038310723963798],[112,268,74,0.021227894546126613],[112,268,75,0.02031331069080538],[112,268,76,0.0195132414916024],[112,268,77,0.018835609027637767],[112,268,78,0.01828447537587025],[112,268,79,0.01786035912297562],[112,269,64,0.010254923839312861],[112,269,65,0.010895971230787229],[112,269,66,0.01162617036871032],[112,269,67,0.012507425147909762],[112,269,68,0.013537553134277335],[112,269,69,0.01466987585545776],[112,269,70,0.01586271569643211],[112,269,71,0.01708001740941619],[112,269,72,0.01829088404128416],[112,269,73,0.01946914713735],[112,269,74,0.02059297181583121],[112,269,75,0.021004296880557338],[112,269,76,0.020033911750716806],[112,269,77,0.019158688712286067],[112,269,78,0.0183864024073881],[112,269,79,0.017721931552218895],[112,270,64,0.009570161134796595],[112,270,65,0.010086799203960438],[112,270,66,0.010700333438619161],[112,270,67,0.011476799683657724],[112,270,68,0.012419485098556714],[112,270,69,0.01348774488208897],[112,270,70,0.014644723488085702],[112,270,71,0.01585795076835569],[112,270,72,0.017098903744857598],[112,270,73,0.018342614219748195],[112,270,74,0.01956732276143535],[112,270,75,0.02075417952867141],[112,270,76,0.02077720920035476],[112,270,77,0.01970387420056756],[112,270,78,0.018707602546262643],[112,270,79,0.017797691774130497],[112,271,64,0.008720392020734602],[112,271,65,0.009102816864825038],[112,271,66,0.009590652687006387],[112,271,67,0.010253341239137235],[112,271,68,0.011099568339901436],[112,271,69,0.012095164403635405],[112,271,70,0.013208490409148073],[112,271,71,0.014410994616726349],[112,271,72,0.015676799592878644],[112,271,73,0.01698234725233727],[112,271,74,0.01830610239630014],[112,271,75,0.019628315128796182],[112,271,76,0.020930842437010166],[112,271,77,0.020477196209103626],[112,271,78,0.019251389752817635],[112,271,79,0.01808882416747173],[112,272,64,0.007770043703677179],[112,272,65,0.008010608707877944],[112,272,66,0.008365423114498153],[112,272,67,0.008906483514731356],[112,272,68,0.009647648596389266],[112,272,69,0.010561505293424693],[112,272,70,0.011621905911913756],[112,272,71,0.012804471285615257],[112,272,72,0.014086201004786194],[112,272,73,0.015445154099480968],[112,272,74,0.01686020059675479],[112,272,75,0.018310844252495715],[112,272,76,0.019777116641785542],[112,272,77,0.02123954267762514],[112,272,78,0.01999984990880667],[112,272,79,0.018587301578877263],[112,273,64,0.006803982983690814],[112,273,65,0.0068976209815051395],[112,273,66,0.007114013291237841],[112,273,67,0.007526739869494234],[112,273,68,0.008154447691208185],[112,273,69,0.008976591226166937],[112,273,70,0.009972667386095275],[112,273,71,0.011122650441426926],[112,273,72,0.012406621119387905],[112,273,73,0.013804478478181385],[112,273,74,0.01529573492057886],[112,273,75,0.0168593945699339],[112,273,76,0.01847391509401278],[112,273,77,0.020117252928114886],[112,273,78,0.0209264646801495],[112,273,79,0.019278222828876358],[112,274,64,0.005895935388226935],[112,274,65,0.0058402944685183545],[112,274,66,0.005915036312428626],[112,274,67,0.006194277387801259],[112,274,68,0.006700931792787467],[112,274,69,0.007421264558571252],[112,274,70,0.00834044548726057],[112,274,71,0.00944290135738982],[112,274,72,0.010711957728124801],[112,274,73,0.012129575383818914],[112,274,74,0.013676181732930458],[112,274,75,0.015330597314000678],[112,274,76,0.01707005740348463],[112,274,77,0.018870328566893045],[112,274,78,0.020705919847179094],[112,274,79,0.02014067637769521],[112,275,64,0.005109334340663053],[112,275,65,0.00490484779858679],[112,275,66,0.004837056766711463],[112,275,67,0.004979535972218041],[112,275,68,0.005358832519004742],[112,275,69,0.005967802435564007],[112,275,70,0.006797191232449029],[112,275,71,0.00783588980813253],[112,275,72,0.009070581400018098],[112,275,73,0.01048549427498396],[112,275,74,0.012062260433879458],[112,275,75,0.013779880423152794],[112,275,76,0.015614794169599584],[112,275,77,0.01754105758238218],[112,275,78,0.019530624501373172],[112,275,79,0.021148205131172968],[112,276,64,0.004497986154136462],[112,276,65,0.004147874358748845],[112,276,66,0.003939110344659801],[112,276,67,0.003943659447253372],[112,276,68,0.0041909793118994655],[112,276,69,0.00468014331543755],[112,276,70,0.005407252564902453],[112,276,71,0.0063655834007065246],[112,276,72,0.007545230944814295],[112,276,73,0.008932868451314723],[112,276,74,0.010511622706310363],[112,276,75,0.012261065524428608],[112,276,76,0.014157321194239533],[112,276,77,0.01617328953584698],[112,276,78,0.01827898405243905],[112,276,79,0.020441984485253296],[112,277,64,0.004106549095521575],[112,277,65,0.003616751124603428],[112,277,66,0.003271034503659393],[112,277,67,0.003138737199883601],[112,277,68,0.003251441732828802],[112,277,69,0.0036139226998335625],[112,277,70,0.004227299319216742],[112,277,71,0.005089064425772156],[112,277,72,0.006192715455121742],[112,277,73,0.007527510024630293],[112,277,74,0.00907834634426441],[112,277,75,0.010825768474761476],[112,277,76,0.0127460962394661],[112,277,77,0.014811679391696279],[112,277,78,0.016991275443173765],[112,277,79,0.01925055037261826],[112,278,64,0.0039708250486911525],[112,278,65,0.003349858014266115],[112,278,66,0.002873608877677523],[112,278,67,0.0026078551461935734],[112,278,68,0.002585480581655035],[112,278,69,0.002816317097446707],[112,278,70,0.0033060557498147984],[112,278,71,0.004056149532315789],[112,278,72,0.0050634223756439],[112,278,73,0.0063198100783874],[112,278,74,0.007812233403884873],[112,278,75,0.0095226033482521],[112,278,76,0.01142795835983463],[112,278,77,0.01350073307238776],[112,278,78,0.015709157904951924],[112,278,79,0.018017788682488406],[112,279,64,0.0041178625696583334],[112,279,65,0.0033766066254196842],[112,279,66,0.0027785043711727477],[112,279,67,0.0023849550552854258],[112,279,68,0.0022293069754457085],[112,279,69,0.0023256954714932308],[112,279,70,0.0026838399954035577],[112,279,71,0.003308815727123786],[112,279,72,0.004200631233217908],[112,279,73,0.005353943783644778],[112,279,74,0.00675791257979818],[112,279,75,0.008396189905354337],[112,279,76,0.010247049975300489],[112,279,77,0.012283655029389587],[112,279,78,0.014474457996013778],[112,279,79,0.01678374084299036],[112,280,64,0.004565870369138091],[112,280,65,0.003717277453117497],[112,280,66,0.0030080401059847427],[112,280,67,0.0024945014820928254],[112,280,68,0.0022096487326215453],[112,280,69,0.0021710776206406474],[112,280,70,0.002391910040310592],[112,280,71,0.0028804323765926217],[112,280,72,0.003639632825535436],[112,280,73,0.004666880391548918],[112,280,74,0.005953745849251178],[112,280,75,0.007485964707212988],[112,280,76,0.00924354196605005],[112,280,77,0.011200998225487998],[112,280,78,0.013327756466132896],[112,280,79,0.015588668613637852],[112,281,64,0.005323940480543134],[112,281,65,0.004382664902458056],[112,281,66,0.0035747475985180256],[112,281,67,0.0029509557599417466],[112,281,68,0.0025431235975320004],[112,281,69,0.0023713991212556446],[112,281,70,0.002451615900305706],[112,281,71,0.0027947990433001644],[112,281,72,0.0034066538091444],[112,281,73,0.004287198152841861],[112,281,74,0.005430539544609502],[112,281,75,0.006824796144647116],[112,281,76,0.00845216216511347],[112,281,77,0.010289117006945877],[112,281,78,0.012306777524028974],[112,281,79,0.014471392542813127],[112,282,64,0.006391580573391826],[112,282,65,0.005373529605799189],[112,282,66,0.0044807417318566],[112,282,67,0.0037580566815836195],[112,282,68,0.0032354190080360026],[112,282,69,0.0029345826154557027],[112,282,70,0.0028733579056490458],[112,282,71,0.003064989123041635],[112,282,72,0.003517586748537797],[112,282,73,0.004233704323961123],[112,282,74,0.0052100601118266],[112,282,75,0.006437403736415005],[112,282,76,0.007900527698226151],[112,282,77,0.009578423406533513],[112,282,78,0.011444581135853546],[112,282,79,0.01346743308360837],[112,283,64,0.007758055053366836],[112,283,65,0.006679857728634054],[112,283,66,0.005716898253433224],[112,283,67,0.004907907653807834],[112,283,68,0.004280278254625929],[112,283,69,0.003856415364348047],[112,283,70,0.003655351077466047],[112,283,71,0.0036919993595345042],[112,283,72,0.0039765257876113016],[112,283,73,0.004513860506729857],[112,283,74,0.005303354887987276],[112,283,75,0.006338582115200904],[112,283,76,0.007607281672875507],[112,283,77,0.009091447460053179],[112,283,78,0.010767559014364388],[112,283,79,0.012606955100162711],[112,284,64,0.00940153475049423],[112,284,65,0.008279927101275916],[112,284,66,0.007261837673194808],[112,284,67,0.006379870245279233],[112,284,68,0.00565829300361036],[112,284,69,0.005119233098653263],[112,284,70,0.004782195694766729],[112,284,71,0.004663205403345772],[112,284,72,0.004774108182134611],[112,284,73,0.005122013634038785],[112,284,74,0.005708878284632932],[112,284,75,0.00653123016184646],[112,284,76,0.007580034749428097],[112,284,77,0.00884070213930319],[112,284,78,0.010293234968670115],[112,284,79,0.011912516497485707],[112,285,64,0.011288055135685515],[112,285,65,0.01013918014467235],[112,285,66,0.009080715559435636],[112,285,67,0.008139264159528719],[112,285,68,0.007335502258452131],[112,285,69,0.006690410289223691],[112,285,70,0.006223254228080328],[112,285,71,0.005950623648365452],[112,285,72,0.0058856619866995835],[112,285,73,0.006037432956860656],[112,285,74,0.006410423794841332],[112,285,75,0.007004185768269397],[112,285,76,0.00781311213623335],[112,285,77,0.008826353503034302],[112,285,78,0.010027870273241687],[112,285,79,0.011396621687444009],[112,286,64,0.01337028312260185],[112,286,65,0.012208903667389099],[112,286,66,0.011123819329011391],[112,286,67,0.010135873754447544],[112,286,68,0.009261797911932624],[112,286,69,0.008520657027160433],[112,286,70,0.00793083487114194],[112,286,71,0.007508979622709697],[112,286,72,0.007269160221241998],[112,286,73,0.007222153407771619],[112,286,74,0.007374862250323004],[112,286,75,0.00772986670662618],[112,286,76,0.008285106537014468],[112,286,77,0.009033696643724685],[112,286,78,0.009963874681647937],[112,286,79,0.01105908056152044],[112,287,64,0.015586092605765198],[112,287,65,0.014424715696374093],[112,287,66,0.013324971704803911],[112,287,67,0.012302261295502622],[112,287,68,0.011369137096683156],[112,287,69,0.010542122746606023],[112,287,70,0.009838181933636255],[112,287,71,0.009273583230571102],[112,287,72,0.008862981849965864],[112,287,73,0.008618625712161217],[112,287,74,0.008549686739386027],[112,287,75,0.008661718055869957],[112,287,76,0.008956237541974367],[112,287,77,0.009430437961237995],[112,287,78,0.010077023654497077],[112,287,79,0.010884173576475482],[112,288,64,0.017856948956212638],[112,288,65,0.016704859565686916],[112,288,66,0.015599741065239363],[112,288,67,0.014551887171364134],[112,288,68,0.013569561571951055],[112,288,69,0.012666307041998963],[112,288,70,0.011857273364827387],[112,288,71,0.011158011136389876],[112,288,72,0.010583479888470622],[112,288,73,0.010147173589631976],[112,288,74,0.009860364556651159],[112,288,75,0.009731466586069689],[112,288,76,0.009765517893010873],[112,288,77,0.009963784223792514],[112,288,78,0.01032348229152522],[112,288,79,0.010837623471337182],[112,289,64,0.020086102191376007],[112,289,65,0.018948305478710497],[112,289,66,0.017843459400928564],[112,289,67,0.016777038289350402],[112,289,68,0.01575302586438352],[112,289,69,0.014781779784210249],[112,289,70,0.013876428072598706],[112,289,71,0.013051599376452758],[112,289,72,0.012322360092681965],[112,289,73,0.011703261803977282],[112,289,74,0.0112075001737867],[112,289,75,0.010846186238335274],[112,289,76,0.010627730820870962],[112,289,77,0.010557342581528354],[112,289,78,0.010636640006626258],[112,289,79,0.010863377435244728],[112,290,64,0.020642138357929208],[112,290,65,0.02103521514261908],[112,290,66,0.019933799325569074],[112,290,67,0.01885350776659972],[112,290,68,0.01779413832952146],[112,290,69,0.016762893382302777],[112,290,70,0.0157708472216859],[112,290,71,0.014831619446993072],[112,290,72,0.013960247860015526],[112,290,73,0.013172164663491318],[112,290,74,0.012482277217737845],[112,290,75,0.011904154413276424],[112,290,76,0.01144931951452889],[112,290,77,0.011126650126862477],[112,290,78,0.010941885737641297],[112,290,79,0.010897243082799369],[112,291,64,0.018843962374598774],[112,291,65,0.01995816054777411],[112,291,66,0.021059926561506338],[112,291,67,0.020674188669714703],[112,291,68,0.01959062004241646],[112,291,69,0.018512873984268794],[112,291,70,0.01744996881707002],[112,291,71,0.016414396910104746],[112,291,72,0.015420951518734126],[112,291,73,0.014485649281745122],[112,291,74,0.01362474972392568],[112,291,75,0.012853872920773661],[112,291,76,0.012187216290918986],[112,291,77,0.011636871289616808],[112,291,78,0.011212240584670156],[112,291,79,0.010919556105547266],[112,292,64,0.01741301771262636],[112,292,65,0.018498180078887493],[112,292,66,0.01957868123677727],[112,292,67,0.02066324246717221],[112,292,68,0.021068150125890674],[112,292,69,0.019963142698660414],[112,292,70,0.01885153497792168],[112,292,71,0.01774452735898118],[112,292,72,0.016656363208535287],[112,292,73,0.015603225407472816],[112,292,74,0.01460222096954122],[112,292,75,0.01367045495892967],[112,292,76,0.01282419475291394],[112,292,77,0.012078125517148874],[112,292,78,0.01144469758197276],[112,292,79,0.010933566229265787],[112,293,64,0.016413993235971976],[112,293,65,0.017459001989873078],[112,293,66,0.01850398347753472],[112,293,67,0.019562644179898288],[112,293,68,0.02064705284213263],[112,293,69,0.02106747909058975],[112,293,70,0.019934412389306294],[112,293,71,0.018786450461437367],[112,293,72,0.017636916447090145],[112,293,73,0.01650164793771125],[112,293,74,0.015397980684375943],[112,293,75,0.014343810775392034],[112,293,76,0.013356736371290104],[112,293,77,0.01245327992460186],[112,293,78,0.011648191649699687],[112,293,79,0.010953834845301751],[112,294,64,0.01588622544617836],[112,294,65,0.016877822244834747],[112,294,66,0.017870636570735364],[112,294,67,0.01888350229215464],[112,294,68,0.01993205154729261],[112,294,69,0.02101974290898068],[112,294,70,0.020676782325255025],[112,294,71,0.019522605672362858],[112,294,72,0.01834968308210497],[112,294,73,0.01717292953303695],[112,294,74,0.016009207262868242],[112,294,75,0.014876413582693421],[112,294,76,0.013792635054879217],[112,294,77,0.012775368981363245],[112,294,78,0.011840813009239991],[112,294,79,0.01100322351922252],[112,295,64,0.01584547141868737],[112,295,65,0.016768927542404263],[112,295,66,0.01769135982327413],[112,295,67,0.01863680807037014],[112,295,68,0.019624156208242264],[112,295,69,0.020658697079268408],[112,295,70,0.021074526915902836],[112,295,71,0.019951787377021104],[112,295,72,0.018796673927170774],[112,295,73,0.017622562295688617],[112,295,74,0.016445085556417133],[112,295,75,0.015281288679206546],[112,295,76,0.014148833592170494],[112,295,77,0.013065255675826969],[112,295,78,0.012047272498328635],[112,295,79,0.011110145486863806],[112,296,64,0.016285492598354004],[112,296,65,0.017125236272644433],[112,296,66,0.017958280306066512],[112,296,67,0.018813856444620393],[112,296,68,0.01971370838405582],[112,296,69,0.020664521196074776],[112,296,70,0.021139812880066416],[112,296,71,0.020087700611029723],[112,296,72,0.018993344154131998],[112,296,73,0.01786794951283561],[112,296,74,0.016725141180520875],[112,296,75,0.015580226645373011],[112,296,76,0.014449492771851216],[112,296,77,0.01334953490630879],[112,296,78,0.012296619476349122],[112,296,79,0.011306080772615612],[112,297,64,0.017179447949873656],[112,297,65,0.017919646546670363],[112,297,66,0.018644230735657928],[112,297,67,0.01938750087760046],[112,297,68,0.020173591467710132],[112,297,69,0.021010099635866426],[112,297,70,0.02089987376677597],[112,297,71,0.01995771832376282],[112,297,72,0.01896730433245219],[112,297,73,0.017937048279926537],[112,297,74,0.01687779207705704],[112,297,75,0.015802221281998288],[112,297,76,0.014724293776748013],[112,297,77,0.013658679621464873],[112,297,78,0.01262021277323482],[112,297,79,0.011623355314445997],[112,298,64,0.01848109513638348],[112,298,65,0.019106190038910467],[112,298,66,0.019703852305756272],[112,298,67,0.02031321273784544],[112,298,68,0.02096026023908663],[112,298,69,0.021137297158917677],[112,298,70,0.02039599159387925],[112,298,71,0.019601840995361892],[112,298,72,0.01875723784648042],[112,298,73,0.017867223654626365],[112,298,74,0.016939117901000562],[112,298,75,0.015982132778187],[112,298,76,0.015006974256797041],[112,298,77,0.01402543003392195],[112,298,78,0.01304994492398621],[112,298,79,0.012093184256376496],[112,299,64,0.02012579855464747],[112,299,65,0.020620990532212665],[112,299,66,0.021074501425680507],[112,299,67,0.021241366614767495],[112,299,68,0.020763233858193945],[112,299,69,0.020245434399104933],[112,299,70,0.01968267863931833],[112,299,71,0.019071859283906586],[112,299,72,0.018412025284970913],[112,299,73,0.01770431485062924],[112,299,74,0.01695184765333215],[112,299,75,0.016159576441124982],[112,299,76,0.015334098322173478],[112,299,77,0.014483426056120885],[112,299,78,0.013616719745086868],[112,299,79,0.012743979371820745],[112,300,64,0.020694459015522425],[112,300,65,0.0203574188803489],[112,300,66,0.020075491142127137],[112,300,67,0.01980104005035337],[112,300,68,0.019506184605340447],[112,300,69,0.019183662616954766],[112,300,70,0.018827060031624175],[112,300,71,0.018430720269134834],[112,300,72,0.017990076284195775],[112,300,73,0.017501913863090506],[112,300,74,0.016964565858250007],[112,300,75,0.01637803718877556],[112,300,76,0.015744060557868936],[112,300,77,0.015066082957862999],[112,300,78,0.014349183149208711],[112,300,79,0.013599920410494572],[112,301,64,0.018616481532984164],[112,301,65,0.01843530166966762],[112,301,66,0.018326374548076382],[112,301,67,0.018238544339827092],[112,301,68,0.01814391633908451],[112,301,69,0.018036326741676777],[112,301,70,0.01790845770127711],[112,301,71,0.017752097773074075],[112,301,72,0.017558869217144384],[112,301,73,0.01732085682414559],[112,301,74,0.017031137483610057],[112,301,75,0.016684209900147386],[112,301,76,0.016276324046270982],[112,301,77,0.01580571012112457],[112,301,78,0.015272706960879259],[112,301,79,0.014679790017768654],[112,302,64,0.016492185430280155],[112,302,65,0.016477032063405124],[112,302,66,0.016551458917300643],[112,302,67,0.0166613513612461],[112,302,68,0.01677941265271656],[112,302,69,0.0169010184685654],[112,302,70,0.0170181761946714],[112,302,71,0.017120167176852524],[112,302,72,0.017194699057387984],[112,302,73,0.017228928318703624],[112,302,74,0.017210351729473248],[112,302,75,0.017127565636756437],[112,302,76,0.016970892295268682],[112,302,77,0.016732872669913797],[112,302,78,0.016408625388729125],[112,302,79,0.015996071758787134],[112,303,64,0.014432917877197636],[112,303,65,0.014591975937917698],[112,303,66,0.014857274119548363],[112,303,67,0.01517232632820838],[112,303,68,0.015511006938704809],[112,303,69,0.0158706137885212],[112,303,70,0.01624270516533032],[112,303,71,0.016614148288089374],[112,303,72,0.016968718697731387],[112,303,73,0.017288537227975995],[112,303,74,0.017555342693474127],[112,303,75,0.017751598747056976],[112,303,76,0.017861433672291496],[112,303,77,0.01787141218997462],[112,303,78,0.017771138665683174],[112,303,79,0.017553691408025318],[112,304,64,0.01248052311797341],[112,304,65,0.01282039589610654],[112,304,66,0.013282218091584516],[112,304,67,0.013807785014731554],[112,304,68,0.014372690455656825],[112,304,69,0.014976473675824269],[112,304,70,0.01561044289300241],[112,304,71,0.01625915003145146],[112,304,72,0.01690245340988744],[112,304,73,0.017517384396451344],[112,304,74,0.018079815583533363],[112,304,75,0.018565928418202555],[112,304,76,0.018953478607565726],[112,304,77,0.019222858000407125],[112,304,78,0.019357952024619228],[112,304,79,0.019346792131802872],[112,305,64,0.01066398632186584],[112,305,65,0.011189398537846191],[112,305,66,0.011851332663472608],[112,305,67,0.012590572006582633],[112,305,68,0.013384943071550049],[112,305,69,0.014236477227784466],[112,305,70,0.015136400589989706],[112,305,71,0.016067050221544577],[112,305,72,0.01700441027705916],[112,305,73,0.017920417892544352],[112,305,74,0.018785035772451004],[112,305,75,0.019568088875443024],[112,305,76,0.020240863054858702],[112,305,77,0.02077746396282343],[112,305,78,0.02115593497619157],[112,305,79,0.02129119302634116],[112,306,64,0.009016657290885667],[112,306,65,0.00973005565455136],[112,306,66,0.010593179165666156],[112,306,67,0.011546529735457521],[112,306,68,0.012570626542795438],[112,306,69,0.013670169514869076],[112,306,70,0.014836439845480248],[112,306,71,0.016049666960378614],[112,306,72,0.01728204135590807],[112,306,73,0.018500462779700494],[112,306,74,0.01966902008815956],[112,306,75,0.02075119963826813],[112,306,76,0.02097984169183306],[112,306,77,0.02015987360940678],[112,306,78,0.019519191851918354],[112,306,79,0.01908019340405076],[112,307,64,0.007573348849718019],[112,307,65,0.008474619606405775],[112,307,66,0.0095371960727107],[112,307,67,0.010702024620815386],[112,307,68,0.011952707134850643],[112,307,69,0.013296709971060496],[112,307,70,0.014725475510757414],[112,307,71,0.016217242576740617],[112,307,72,0.01774053175995319],[112,307,73,0.01925733194096625],[112,307,74,0.020725983724769633],[112,307,75,0.0205923247281719],[112,307,76,0.019336707650175297],[112,307,77,0.01824956170946561],[112,307,78,0.01736452779508995],[112,307,79,0.016709135414704705],[112,308,64,0.006367824635720215],[112,308,65,0.007454125959030661],[112,308,66,0.008711438330202189],[112,308,67,0.010081846590500515],[112,308,68,0.011552341108291637],[112,308,69,0.013133171209447956],[112,308,70,0.014816014940158566],[112,308,71,0.016577248536608653],[112,308,72,0.01838189233890983],[112,308,73,0.020187224464141045],[112,308,74,0.02075143063573048],[112,308,75,0.019080466365280425],[112,308,76,0.017550006875438208],[112,308,77,0.016204449784522217],[112,308,78,0.01508300100986222],[112,308,79,0.01421813409204912],[112,309,64,0.0054306756737600125],[112,309,65,0.006696382741006589],[112,309,66,0.0081406977112762],[112,309,67,0.009707481316925677],[112,309,68,0.01138732240204287],[112,309,69,0.013193187594276231],[112,309,70,0.0151170329236273],[112,309,71,0.017133510670829265],[112,309,72,0.019204356317013352],[112,309,73,0.02128241097443291],[112,309,74,0.01937618334920528],[112,309,75,0.01743609914670191],[112,309,76,0.015646632781793485],[112,309,77,0.014057804707339533],[112,309,78,0.012714054550886351],[112,309,79,0.011652495429119232],[112,310,64,0.004787584884864163],[112,310,65,0.006224345467590195],[112,310,66,0.007845003354275026],[112,310,67,0.00959575433404996],[112,310,68,0.01147089169869223],[112,310,69,0.013485952780357732],[112,310,70,0.01563318155439334],[112,310,71,0.017885654003266818],[112,310,72,0.02020207922059726],[112,310,73,0.020158517955712236],[112,310,74,0.017870128442834535],[112,310,75,0.015683406315081968],[112,310,76,0.013657127876433119],[112,310,77,0.011846470848482572],[112,310,78,0.010300659426690107],[112,310,79,0.009061028939894385],[112,311,64,0.004457978488480305],[112,311,65,0.0060548769066841295],[112,311,66,0.007838501485135405],[112,311,67,0.009757846074783973],[112,311,68,0.011810905955179994],[112,311,69,0.014015565354598402],[112,311,70,0.016364334226056525],[112,311,71,0.01882886644146386],[112,311,72,0.02131975370252828],[112,311,73,0.01876597162141746],[112,311,74,0.016254470405321776],[112,311,75,0.013849511420319887],[112,311,76,0.011614607571145331],[112,311,77,0.00960951863490911],[112,311,78,0.0078876948825482],[112,311,79,0.0064941713115879264],[112,312,64,0.004454063118511671],[112,312,65,0.006197890443478862],[112,312,66,0.008128713229237671],[112,312,67,0.01019867679149119],[112,312,68,0.012409367428253115],[112,312,69,0.01478072168489841],[112,312,70,0.0173054629495548],[112,312,71,0.019953980614841285],[112,312,72,0.01999951177717814],[112,312,73,0.017254399639390273],[112,312,74,0.014552940603553423],[112,312,75,0.011963428329593441],[112,312,76,0.00955344953761542],[112,312,77,0.007386674723939454],[112,312,78,0.005520125466350384],[112,312,79,0.004001920855632826],[112,313,64,0.004780247386400194],[112,313,65,0.00665587583337631],[112,313,66,0.008716169371078534],[112,313,67,0.010916660296956263],[112,313,68,0.013262311220847747],[112,313,69,0.015774755101690973],[112,313,70,0.018446848224879683],[112,313,71,0.021247873215231396],[112,313,72,0.018545184084522697],[112,313,73,0.015644755393016546],[112,313,74,0.01279073683157895],[112,313,75,0.010054760156834975],[112,313,76,0.007507748526544486],[112,313,77,0.0052165335524068535],[112,313,78,0.003240974476108496],[112,313,79,0.0016315821959958484],[112,314,64,0.005432946593933521],[112,314,65,0.007423806122302867],[112,314,66,0.009594420929561729],[112,314,67,0.011903825492845048],[112,314,68,0.014360050426175861],[112,314,69,0.01698602060992698],[112,314,70,0.019774620797893647],[112,314,71,0.019972520346079107],[112,314,72,0.01697596733266302],[112,314,73,0.01395921111626915],[112,314,74,0.010993194931588499],[112,314,75,0.008152146970849896],[112,314,76,0.005509536328394982],[112,314,77,0.003134549755627038],[112,314,78,0.0010890931010519881],[112,314,79,-5.746796731583344E-4],[112,315,64,0.006400769327921689],[112,315,65,0.008489424563054102],[112,315,66,0.010750424485593078],[112,315,67,0.013146304740829328],[112,315,68,0.015687778054168475],[112,315,69,0.018398624457696598],[112,315,70,0.021271634782367585],[112,315,71,0.01838848526051476],[112,315,72,0.015312109413251333],[112,315,73,0.012219761053185039],[112,315,74,0.009184192282334852],[112,315,75,0.006281461877214014],[112,315,76,0.0035867662672708195],[112,315,77,0.001170810643262133],[112,315,78,-9.032757592882202E-4],[112,315,79,-0.002582477174445511],[112,316,64,0.007665084762522998],[112,316,65,0.009833910469927154],[112,316,66,0.012165301330969807],[112,316,67,0.014625188282029779],[112,316,68,0.017226525093780653],[112,316,69,0.019993498075475437],[112,316,70,0.019733419176986924],[112,316,71,0.016690975304057654],[112,316,72,0.013573400290063384],[112,316,73,0.010446539656953711],[112,316,74,0.007384282658981012],[112,316,75,0.004463754756555575],[112,316,76,0.0017610612864488086],[112,316,77,-6.52412433384035E-4],[112,316,78,-0.0027131403844998397],[112,316,79,-0.004368031380696104],[112,317,64,0.00920096965714662],[112,317,65,0.011432923135875774],[112,317,66,0.013815469707455246],[112,317,67,0.016317744127307125],[112,317,68,0.018954474298413265],[112,317,69,0.02088851209014121],[112,317,70,0.0179534362028922],[112,317,71,0.014898700448467726],[112,317,72,0.011777361485538486],[112,317,73,0.00865585422311288],[112,317,74,0.005608561623582459],[112,317,75,0.002712942577963924],[112,317,76,4.522430166463516E-5],[112,317,77,-0.002323335388229388],[112,317,78,-0.004329611634450028],[112,317,79,-0.005921198728702822],[112,318,64,0.010978534273176016],[112,318,65,0.013258023191364036],[112,318,66,0.015674149676927294],[112,318,67,0.01819900312857245],[112,318,68,0.020848629584579233],[112,318,69,0.018989202428578954],[112,318,70,0.016062719963998006],[112,318,71,0.013027580831000172],[112,318,72,0.00993713342002049],[112,318,73,0.006857930967164548],[112,318,74,0.0038642612040665583],[112,318,75,0.001033244787945429],[112,318,76,-0.0015594909365677508],[112,318,77,-0.0038435573976099697],[112,318,78,-0.005756965130775691],[112,318,79,-0.0072486957260627415],[112,319,64,0.012964626746186151],[112,319,65,0.015278471116873913],[112,319,66,0.017713240512348065],[112,319,67,0.020243709304323242],[112,319,68,0.019732708617130064],[112,319,69,0.01696915944339972],[112,319,70,0.014076266805038035],[112,319,71,0.011088445459423378],[112,319,72,0.008059059426637852],[112,319,73,0.005054373110408724],[112,319,74,0.0021480721582265655],[112,319,75,-5.836382006948648E-4],[112,319,76,-0.0030663507206747645],[112,319,77,-0.00523118410799884],[112,319,78,-0.007017917004101961],[112,319,79,-0.008377524692434567],[113,-64,64,-0.0010281991926331846],[113,-64,65,-0.001130641170612465],[113,-64,66,-0.0011878454622993055],[113,-64,67,-0.001209086032864634],[113,-64,68,-0.0011778767713971061],[113,-64,69,-0.0010650729621650217],[113,-64,70,-8.486166674997888E-4],[113,-64,71,-5.135099779776241E-4],[113,-64,72,-5.133203094808151E-5],[113,-64,73,5.40274383571099E-4],[113,-64,74,0.0012581466067232404],[113,-64,75,0.002094176168981956],[113,-64,76,0.0030359129173361168],[113,-64,77,0.004067198919473772],[113,-64,78,0.005168831770158722],[113,-64,79,0.0063192568466712215],[113,-63,64,-0.0010499247868382604],[113,-63,65,-0.00111583887561454],[113,-63,66,-0.0011355374788275486],[113,-63,67,-0.0011169061287056028],[113,-63,68,-0.0010436073116514757],[113,-63,69,-8.88015389266146E-4],[113,-63,70,-6.296829372295095E-4],[113,-63,71,-2.552302733276986E-4],[113,-63,72,2.421881492633772E-4],[113,-63,73,8.634434789117835E-4],[113,-63,74,0.001604018158836191],[113,-63,75,0.002454617315582324],[113,-63,76,0.003401805497537641],[113,-63,77,0.004428668338516643],[113,-63,78,0.005515498646298077],[113,-63,79,0.0066405063460328855],[113,-62,64,-8.368106088003446E-4],[113,-62,65,-8.752134718373655E-4],[113,-62,66,-8.679211940886357E-4],[113,-62,67,-8.211511850872909E-4],[113,-62,68,-7.188043493355099E-4],[113,-62,69,-5.350247980037173E-4],[113,-62,70,-2.5106136238449965E-4],[113,-62,71,1.4490688674059874E-4],[113,-62,72,6.58328914606871E-4],[113,-62,73,0.0012888631453659668],[113,-62,74,0.0020309817655408528],[113,-62,75,0.0028745975586491825],[113,-62,76,0.003805712843000198],[113,-62,77,0.004807090010628815],[113,-62,78,0.005858943096402439],[113,-62,79,0.00693964974298398],[113,-61,64,-4.009063452981901E-4],[113,-61,65,-4.2041530486910825E-4],[113,-61,66,-3.962177291301387E-4],[113,-61,67,-3.326257434921014E-4],[113,-61,68,-2.1384652829386868E-4],[113,-61,69,-1.598643009744295E-5],[113,-61,70,2.77966193727561E-4],[113,-61,71,6.783606388241141E-4],[113,-61,72,0.0011894428160971677],[113,-61,73,0.0018099355906066037],[113,-61,74,0.0025336401894548127],[113,-61,75,0.003350058292887303],[113,-61,76,0.004245034348796822],[113,-61,77,0.005201417581500526],[113,-61,78,0.006199743101561783],[113,-61,79,0.007218931464995902],[113,-60,64,2.412847720436006E-4],[113,-60,65,2.3282675720961556E-4],[113,-60,66,2.6469158155843726E-4],[113,-60,67,3.3465767177405476E-4],[113,-60,68,4.5816095976255474E-4],[113,-60,69,6.569946206110272E-4],[113,-60,70,9.464223960231026E-4],[113,-60,71,0.0013354263170580589],[113,-60,72,0.0018272452051842575],[113,-60,73,0.0024199338400186818],[113,-60,74,0.0031069424897693216],[113,-60,75,0.0038777164262580547],[113,-60,76,0.004718314976235222],[113,-60,77,0.00561204959509295],[113,-60,78,0.006540140388542378],[113,-60,79,0.007482390452777834],[113,-59,64,0.001069898841113969],[113,-59,65,0.001065832131086917],[113,-59,66,0.0010974248103069674],[113,-59,67,0.0011646699872431441],[113,-59,68,0.001282605846811523],[113,-59,69,0.0014708325736697276],[113,-59,70,0.0017428810099330702],[113,-59,71,0.0021064738944712434],[113,-59,72,0.0025640264553512876],[113,-59,73,0.0031131677969204077],[113,-59,74,0.0037472828160552553],[113,-59,75,0.004456074311588685],[113,-59,76,0.005226144884016066],[113,-59,77,0.006041598159867311],[113,-59,78,0.006884658817102966],[113,-59,79,0.007736310834996359],[113,-58,64,0.0020630268609172584],[113,-58,65,0.0020583178899299752],[113,-58,66,0.002083480650048418],[113,-58,67,0.002140776849917614],[113,-58,68,0.002244805253432645],[113,-58,69,0.002412912706632506],[113,-58,70,0.002656919700301581],[113,-58,71,0.002983384111912546],[113,-58,72,0.0033940510068034132],[113,-58,73,0.003886323897199182],[113,-58,74,0.0044537572554534085],[113,-58,75,0.005086570010778059],[113,-58,76,0.005772179694705597],[113,-58,77,0.006495756840172433],[113,-58,78,0.007240799182924062],[113,-58,79,0.00798972516237628],[113,-57,64,0.0031982529264544166],[113,-57,65,0.0031899706059224098],[113,-57,66,0.0032048411187668127],[113,-57,67,0.003247369631824675],[113,-57,68,0.00333165905692296],[113,-57,69,0.0034727556055145366],[113,-57,70,0.003680779004264827],[113,-57,71,0.0039611822647758555],[113,-57,72,0.004315143228593028],[113,-57,73,0.0047399783775707235],[113,-57,74,0.0052295787778585175],[113,-57,75,0.005774867962142894],[113,-57,76,0.006364281493636935],[113,-57,77,0.006984267897240228],[113,-57,78,0.007619810588792082],[113,-57,79,0.008254970382883893],[113,-56,64,0.004451078802399545],[113,-56,65,0.00443836434584076],[113,-56,66,0.004441379873688931],[113,-56,67,0.004466760482465374],[113,-56,68,0.004528028498053045],[113,-56,69,0.004637882055540782],[113,-56,70,0.004804725986108051],[113,-56,71,0.005032925519308329],[113,-56,72,0.005323137333038148],[113,-56,73,0.005672663431663879],[113,-56,74,0.006075827790219246],[113,-56,75,0.006524375642837687],[113,-56,76,0.007007895235726914],[113,-56,77,0.007514261809610889],[113,-56,78,0.008030103524152189],[113,-56,79,0.00854128898790584],[113,-55,64,0.005775808051707685],[113,-55,65,0.005756421234162079],[113,-55,66,0.005744889951989593],[113,-55,67,0.0057497695341303225],[113,-55,68,0.0057839034565725575],[113,-55,69,0.005857655995161265],[113,-55,70,0.005977761876786787],[113,-55,71,0.006147568246421515],[113,-55,72,0.006367301462164377],[113,-55,73,0.0066343572822727135],[113,-55,74,0.006943614455303837],[113,-55,75,0.007287771668646516],[113,-55,76,0.007657707756152193],[113,-55,77,0.0080428650128553],[113,-55,78,0.008431655414390775],[113,-55,79,0.008811889491162753],[113,-54,64,0.007121496052375949],[113,-54,65,0.007090604739647702],[113,-54,66,0.007059492939320964],[113,-54,67,0.007038341311992005],[113,-54,68,0.007039213954080386],[113,-54,69,0.007070238305685921],[113,-54,70,0.007136611324035532],[113,-54,71,0.007240817717372331],[113,-54,72,0.007382824726073726],[113,-54,73,0.007560301347776757],[113,-54,74,0.007768862106081056],[113,-54,75,0.008002335409825714],[113,-54,76,0.008253056497921026],[113,-54,77,0.008512184913836842],[113,-54,78,0.008770046404596908],[113,-54,79,0.009016499092005534],[113,-53,64,0.008443715743514794],[113,-53,65,0.008394442232924274],[113,-53,66,0.00833690697951311],[113,-53,67,0.008282553029143158],[113,-53,68,0.008242563930713789],[113,-53,69,0.008222995113217484],[113,-53,70,0.008227708438688551],[113,-53,71,0.008258549646839286],[113,-53,72,0.008315460226698436],[113,-53,73,0.008396615681605133],[113,-53,74,0.0084985903994557],[113,-53,75,0.008616549289556576],[113,-53,76,0.008744466296595813],[113,-53,77,0.008875369851695342],[113,-53,78,0.009001615270753422],[113,-53,79,0.009115184061860447],[113,-52,64,0.00970502592264576],[113,-52,65,0.009628945057336082],[113,-52,66,0.009536813401794323],[113,-52,67,0.009440922468043955],[113,-52,68,0.009351475665917352],[113,-52,69,0.009272675398231687],[113,-52,70,0.009207305914739694],[113,-52,71,0.00915684901678807],[113,-52,72,0.009121499757757898],[113,-52,73,0.00910021172135034],[113,-52,74,0.00909077223180735],[113,-52,75,0.009089907799869313],[113,-52,76,0.009093420056655362],[113,-52,77,0.009096352375323098],[113,-52,78,0.009093187327862743],[113,-52,79,0.009078075072283759],[113,-51,64,0.01087552360067529],[113,-51,65,0.010763103822299376],[113,-51,66,0.010627289422437118],[113,-51,67,0.010480772246408351],[113,-51,68,0.010332680291568246],[113,-51,69,0.010185623945934865],[113,-51,70,0.010041608487572405],[113,-51,71,0.009902064237666585],[113,-51,72,0.009767751123082143],[113,-51,73,0.009638697511063466],[113,-51,74,0.009514173845967852],[113,-51,75,0.009392701565638832],[113,-51,76,0.009272097720191054],[113,-51,77,0.009149555659252753],[113,-51,78,0.009021762095693525],[113,-51,79,0.00888505079520488],[113,-50,64,0.01193353560678627],[113,-50,65,0.011774522657703693],[113,-50,66,0.01158537917657499],[113,-50,67,0.01137873123482922],[113,-50,68,0.011162543616735616],[113,-50,69,0.01093812706691899],[113,-50,70,0.010707035899581415],[113,-50,71,0.010470986829469047],[113,-50,72,0.0102316362761733],[113,-50,73,0.00999039836431395],[113,-50,74,0.009748304360785267],[113,-50,75,0.009505904233299152],[113,-50,76,0.009263210953531607],[113,-50,77,0.009019688104006803],[113,-50,78,0.008774281281118982],[113,-50,79,0.008525493718148284],[113,-49,64,0.011657639453254072],[113,-49,65,0.011923589763508458],[113,-49,66,0.012224429270883273],[113,-49,67,0.012119043444561047],[113,-49,68,0.011826118392140065],[113,-49,69,0.011516268971629287],[113,-49,70,0.011190930881659192],[113,-49,71,0.010852442977109881],[113,-49,72,0.010503681481623823],[113,-49,73,0.010147743132986277],[113,-49,74,0.009787678247502405],[113,-49,75,0.009426274624956089],[113,-49,76,0.009065893145597035],[113,-49,77,0.008708355835704758],[113,-49,78,0.008354887099418461],[113,-49,79,0.008006108732582307],[113,-48,64,0.010869089302974472],[113,-48,65,0.011197593899947221],[113,-48,66,0.011565599949131379],[113,-48,67,0.011961986027356973],[113,-48,68,0.012311937425363458],[113,-48,69,0.011913022128657155],[113,-48,70,0.011491068491691627],[113,-48,71,0.011049296651949933],[113,-48,72,0.010592038341629827],[113,-48,73,0.010124275242486578],[113,-48,74,0.009651237278561124],[113,-48,75,0.009178062025535087],[113,-48,76,0.0087095163332782],[113,-48,77,0.008249781169609808],[113,-48,78,0.007802300599323462],[113,-48,79,0.007369695714160668],[113,-47,64,0.010257864325136295],[113,-47,65,0.010653457870467628],[113,-47,66,0.011091437423480508],[113,-47,67,0.011562122782305109],[113,-47,68,0.012061591247678386],[113,-47,69,0.012127382094098109],[113,-47,70,0.011611382331503077],[113,-47,71,0.011070630397353528],[113,-47,72,0.010511050214349102],[113,-47,73,0.00993960661581448],[113,-47,74,0.009363764659427154],[113,-47,75,0.00879102148161907],[113,-47,76,0.008228512040000193],[113,-47,77,0.007682689986566681],[113,-47,78,0.007159084802973199],[113,-47,79,0.0066621362119835565],[113,-46,64,0.009835748729599447],[113,-46,65,0.010300277445688108],[113,-46,66,0.010808041975183464],[113,-46,67,0.01135122195315272],[113,-46,68,0.011927504175742839],[113,-46,69,0.012164117623013672],[113,-46,70,0.01156073986868724],[113,-46,71,0.010929517915249485],[113,-46,72,0.010278014772715255],[113,-46,73,0.009615184123039114],[113,-46,74,0.008950690180817629],[113,-46,75,0.008294312271082432],[113,-46,76,0.007655435718191386],[113,-46,77,0.0070426305173464905],[113,-46,78,0.0064633191294762],[113,-46,79,0.005923534602523404],[113,-45,64,0.009606914277513355],[113,-45,65,0.010139794303496055],[113,-45,66,0.010714533525466533],[113,-45,67,0.011325555623157074],[113,-45,68,0.011972305727656332],[113,-45,69,0.01203322936960602],[113,-45,70,0.011352458492219247],[113,-45,71,0.010642609295228938],[113,-45,72,0.009912850112131364],[113,-45,73,0.009174047895227582],[113,-45,74,0.008437951437713682],[113,-45,75,0.00771647186206409],[113,-45,76,0.0070210622029630194],[113,-45,77,0.006362197771371282],[113,-45,78,0.005748958835022682],[113,-45,79,0.005188716991330707],[113,-44,64,0.009568592011412592],[113,-44,65,0.010167065636575504],[113,-44,66,0.01080370865932811],[113,-44,67,0.011475530335382619],[113,-44,68,0.012183888880512235],[113,-44,69,0.011749391801752955],[113,-44,70,0.011003802255819192],[113,-44,71,0.010229694018729155],[113,-44,72,0.009437735354115486],[113,-44,73,0.008640560516323741],[113,-44,74,0.007851822004086307],[113,-44,75,0.00708535264187611],[113,-44,76,0.006354439532204354],[113,-44,77,0.00567121176053387],[113,-44,78,0.005046143562087796],[113,-44,79,0.004487674478446327],[113,-43,64,0.009711755449619152],[113,-43,65,0.010371146131805413],[113,-43,66,0.011062711016870083],[113,-43,67,0.011786336112924583],[113,-43,68,0.012092382973698105],[113,-43,69,0.01133137686270273],[113,-43,70,0.010535458005985057],[113,-43,71,0.009713240628150408],[113,-43,72,0.008876724857034234],[113,-43,73,0.008040106452659885],[113,-43,74,0.0072187061971017786],[113,-43,75,0.006428021346942007],[113,-43,76,0.005682901381942626],[113,-43,77,0.004996850101859855],[113,-43,78,0.004381455929823564],[113,-43,79,0.0038459520773954725],[113,-42,64,0.010021817224315546],[113,-42,65,0.010735784275379651],[113,-42,66,0.011473716951817066],[113,-42,67,0.012238611931824897],[113,-42,68,0.011599912820396768],[113,-42,69,0.010801457800498567],[113,-42,70,0.009970989477239274],[113,-42,71,0.009117911834104661],[113,-42,72,0.008255335026077065],[113,-42,73,0.007398760958478549],[113,-42,74,0.006564899941038892],[113,-42,75,0.005770620999271019],[113,-42,76,0.005032038238431255],[113,-42,77,0.004363735453909282],[113,-42,78,0.0037781309678297844],[113,-42,79,0.003284984447143975],[113,-41,64,0.010479341238234532],[113,-41,65,0.011240135035254476],[113,-41,66,0.012014638456240137],[113,-41,67,0.011794446300191922],[113,-41,68,0.011005656844320118],[113,-41,69,0.01018479148032453],[113,-41,70,0.009336267829148122],[113,-41,71,0.008470053723182203],[113,-41,72,0.007600102600829025],[113,-41,73,0.006742927578986465],[113,-41,74,0.005916317121239192],[113,-41,75,0.005138195032097982],[113,-41,76,0.004425627302765677],[113,-41,77,0.0037939781136279807],[113,-41,78,0.00325621706513144],[113,-41,79,0.002822379464282971],[113,-40,64,0.011060772501997737],[113,-40,65,0.01185949106181458],[113,-40,66,0.011916218174154274],[113,-40,67,0.011137961595253217],[113,-40,68,0.010336593855909345],[113,-40,69,0.009508777397066112],[113,-40,70,0.0086588769987104],[113,-40,71,0.007797157624282496],[113,-40,72,0.0069381131908356425],[113,-40,73,0.006098943260703432],[113,-40,74,0.005298180702769861],[113,-40,75,0.00455447316779916],[113,-40,76,0.0038855210005275436],[113,-40,77,0.003307173973474529],[113,-40,78,0.002832688976006486],[113,-40,79,0.002472150529599632],[113,-39,64,0.011739186892107763],[113,-39,65,0.011987392643984544],[113,-39,66,0.011205622413536901],[113,-39,67,0.010421445267054654],[113,-39,68,0.009621728869541369],[113,-39,69,0.008802391515619632],[113,-39,70,0.007967492148439125],[113,-39,71,0.007127293094364091],[113,-39,72,0.0062964987281018455],[113,-39,73,0.00549264997289039],[113,-39,74,0.004734677777795788],[113,-39,75,0.004041618495722452],[113,-39,76,0.0034314938487140863],[113,-39,77,0.0029203579137523803],[113,-39,78,0.00252151329498197],[113,-39,79,0.0022448983697582994],[113,-38,64,0.01205052848312984],[113,-38,65,0.011238809807976547],[113,-38,66,0.010452583120326603],[113,-38,67,0.009675380042463908],[113,-38,68,0.00889136626378861],[113,-38,69,0.00809549298547902],[113,-38,70,0.007291229405494639],[113,-38,71,0.006488510395046216],[113,-38,72,0.00570190241115048],[113,-38,73,0.004948931644270507],[113,-38,74,0.0042485776005597225],[113,-38,75,0.0036199350867728757],[113,-38,76,0.003081047315645346],[113,-38,77,0.0026479125827906097],[113,-38,78,0.0023336666854655978],[113,-38,79,0.0021479429616698626],[113,-37,64,0.011287969546057843],[113,-37,65,0.01046779411792539],[113,-37,66,0.009688763801365815],[113,-37,67,0.008931153177595196],[113,-37,68,0.0081763550260886],[113,-37,69,0.007418101704583545],[113,-37,70,0.006658965011286652],[113,-37,71,0.005908210750566659],[113,-37,72,0.005179909628818595],[113,-37,73,0.0044912151268322095],[113,-37,74,0.003860811570100508],[113,-37,75,0.003307535376216414],[113,-37,76,0.002849172197403006],[113,-37,77,0.0025014323986835714],[113,-37,78,0.0022771070208417424],[113,-37,79,0.0021854060749959096],[113,-36,64,0.010524437427441967],[113,-36,65,0.00970670513149433],[113,-36,66,0.008946240779580504],[113,-36,67,0.008220248990508335],[113,-36,68,0.0075073038811706546],[113,-36,69,0.006799644645976726],[113,-36,70,0.00609862193470067],[113,-36,71,0.005412482605825995],[113,-36,72,0.004754443274053073],[113,-36,73,0.004140933813890087],[113,-36,74,0.0035900140290662285],[113,-36,75,0.003119966446875325],[113,-36,76,0.002748067927308833],[113,-36,77,0.00248954249138543],[113,-36,78,0.0023566974740977364],[113,-36,79,0.002358244797775964],[113,-35,64,0.009792316332557203],[113,-35,65,0.008987748833319474],[113,-35,66,0.008256650237866977],[113,-35,67,0.0075734098781344615],[113,-35,68,0.00691376405641004],[113,-35,69,0.006268168810206093],[113,-35,70,0.005636421946234125],[113,-35,71,0.0050254020413501785],[113,-35,72,0.004447121789315249],[113,-35,73,0.003916952463520284],[113,-35,74,0.003452022662952369],[113,-35,75,0.0030697942524419643],[113,-35,76,0.0027868181337568102],[113,-35,77,0.002617672193819893],[113,-35,78,0.002574083472915801],[113,-35,79,0.002664236282133449],[113,-34,64,0.009123227269187554],[113,-34,65,0.008342086571343952],[113,-34,66,0.007650302002682429],[113,-34,67,0.007019763453810394],[113,-34,68,0.006423377402935293],[113,-34,69,0.005849518627276806],[113,-34,70,0.005296101105544184],[113,-34,71,0.0047682954506818994],[113,-34,72,0.0042765782265199994],[113,-34,73,0.003834951711688587],[113,-34,74,0.0034593372085225745],[113,-34,75,0.0031661447357452226],[113,-34,76,0.0029710216670813506],[113,-34,77,0.002887782586017275],[113,-34,78,0.0029275223223747342],[113,-34,79,0.0030979138221111885],[113,-33,64,0.008547108643179662],[113,-33,65,0.0077989088333873585],[113,-33,66,0.0071552576277294005],[113,-33,67,0.006585913424119775],[113,-33,68,0.00606098756951293],[113,-33,69,0.005566475605082637],[113,-33,70,0.005098086581948668],[113,-33,71,0.004658962545713238],[113,-33,72,0.004257738556478106],[113,-33,73,0.0039067707026209635],[113,-33,74,0.0036205351138315018],[113,-33,75,0.0034142007202513642],[113,-33,76,0.003302378228866216],[113,-33,77,0.003298047497925022],[113,-33,78,0.003411665187747865],[113,-33,79,0.0036504542547022363],[113,-32,64,0.008091259967229963],[113,-32,65,0.007384471390344986],[113,-32,66,0.0067963703372760234],[113,-32,67,0.006294991819541697],[113,-32,68,0.005847711917689213],[113,-32,69,0.005437858007294178],[113,-32,70,0.005058632707008597],[113,-32,71,0.004710857727529835],[113,-32,72,0.004401057426318255],[113,-32,73,0.004139706217971593],[113,-32,74,0.003939642735912352],[113,-32,75,0.003814653385619939],[113,-32,76,0.0037782276579287296],[113,-32,77,0.003842487285208808],[113,-32,78,0.004017291026114225],[113,-32,79,0.004309516558828251],[113,-31,64,0.00777934622311866],[113,-31,65,0.0071210913484766125],[113,-31,66,0.006594284402153361],[113,-31,67,0.006165670203409384],[113,-31,68,0.005799971872103011],[113,-31,69,0.0054775783434219665],[113,-31,70,0.005188914151203555],[113,-31,71,0.004932227845210426],[113,-31,72,0.004711709539110195],[113,-31,73,0.004535766651905947],[113,-31,74,0.004415460616610707],[113,-31,75,0.0043631070805688725],[113,-31,76,0.004391041856961216],[113,-31,77,0.00451055460888359],[113,-31,78,0.004730991958434716],[113,-31,79,0.005059031416191818],[113,-30,64,0.00763036045055612],[113,-30,65,0.007026100684436301],[113,-30,66,0.006564391550046495],[113,-30,67,0.006211127508615366],[113,-30,68,0.005928479420038821],[113,-30,69,0.005693656467939237],[113,-30,70,0.00549407412364519],[113,-30,71,0.0053252043634779015],[113,-30,72,0.005188734818663774],[113,-30,73,0.0050908791571140696],[113,-30,74,0.005040841343025109],[113,-30,75,0.00504943617941994],[113,-30,76,0.005127868283269823],[113,-30,77,0.005286671374782957],[113,-30,78,0.0055348094841809],[113,-30,79,0.00587894139338581],[113,-29,64,0.00765754218448301],[113,-29,65,0.007110754883729493],[113,-29,66,0.0067157420560764545],[113,-29,67,0.006437972192106268],[113,-29,68,0.006237177509915324],[113,-29,69,0.006087186114709152],[113,-29,70,0.005972225515536293],[113,-29,71,0.00588484797292048],[113,-29,72,0.005824135525043034],[113,-29,73,0.005794048277818008],[113,-29,74,0.005801918477381103],[113,-29,75,0.005857092653334422],[113,-29,76,0.005969723877065857],[113,-29,77,0.006149715923544674],[113,-29,78,0.00640582085939795],[113,-29,79,0.0067448913072425615],[113,-28,64,0.00786724942778196],[113,-28,65,0.0073790943668933795],[113,-28,66,0.007049908220594595],[113,-28,67,0.0068451164542356144],[113,-28,68,0.006722132150258441],[113,-28,69,0.006651252738280166],[113,-28,70,0.006613402945448493],[113,-28,71,0.006598143704478024],[113,-28,72,0.006601923503505774],[113,-28,73,0.006626464390842032],[113,-28,74,0.006677285032732267],[113,-28,75,0.006762363004229759],[113,-28,76,0.006890938262164316],[113,-28,77,0.007072459506790513],[113,-28,78,0.007315674887069732],[113,-28,79,0.007627868245981094],[113,-27,64,0.008257781928635917],[113,-27,65,0.00782675646861714],[113,-27,66,0.007559798019328088],[113,-27,67,0.0074226003442466534],[113,-27,68,0.0073703740795579556],[113,-27,69,0.00736980059567092],[113,-27,70,0.007398463718254371],[113,-27,71,0.007442944653826989],[113,-27,72,0.007497115782177272],[113,-27,73,0.00756056029560782],[113,-27,74,0.007637119976495274],[113,-27,75,0.007733573199548474],[113,-27,76,0.007858445027594365],[113,-27,77,0.008020951041386087],[113,-27,78,0.008230076306714027],[113,-27,79,0.008493790638148624],[113,-26,64,0.008818153631959137],[113,-26,65,0.00843973583401729],[113,-26,66,0.008228416807299828],[113,-26,67,0.008150363665321425],[113,-26,68,0.008158687964047664],[113,-26,69,0.008216447081869695],[113,-26,70,0.008297935780526856],[113,-26,71,0.00838686248202655],[113,-26,72,0.008474676782632402],[113,-26,73,0.008559014329351357],[113,-26,74,0.00864226126434761],[113,-26,75,0.008730240250301875],[113,-26,76,0.008831019885407508],[113,-26,77,0.008953849101965526],[113,-26,78,0.009108217919159481],[113,-26,79,0.009303045690544996],[113,-25,64,0.009526699571858989],[113,-25,65,0.009193036460346457],[113,-25,66,0.00902757413865958],[113,-25,67,0.008997015178476701],[113,-25,68,0.009052451363591339],[113,-25,69,0.009153399591677816],[113,-25,70,0.009271020641313537],[113,-25,71,0.009386363954960822],[113,-25,72,0.00948871492971374],[113,-25,73,0.009574052005609422],[113,-25,74,0.009643615697954147],[113,-25,75,0.009702591539060447],[113,-25,76,0.009758908702186096],[113,-25,77,0.00982215587769578],[113,-25,78,0.009902615760136874],[113,-25,79,0.010010419286882283],[113,-24,64,0.010346541055872556],[113,-24,65,0.01004882239182685],[113,-24,66,0.009918538273813098],[113,-24,67,0.009922933145753982],[113,-24,68,0.010011199705874768],[113,-24,69,0.010139501118860073],[113,-24,70,0.010276105572376269],[113,-24,71,0.010399685583634178],[113,-24,72,0.010497671838865364],[113,-24,73,0.010564710282879705],[113,-24,74,0.010601224571325413],[113,-24,75,0.010612085826925539],[113,-24,76,0.010605391458293655],[113,-24,77,0.01059135460720578],[113,-24,78,0.010581305588901996],[113,-24,79,0.010586806481839805],[113,-23,64,0.011232853671440217],[113,-23,65,0.010964899318080359],[113,-23,66,0.010861641814456124],[113,-23,67,0.010890967044157837],[113,-23,68,0.011000423926101708],[113,-23,69,0.011143110420701862],[113,-23,70,0.011284690721286971],[113,-23,71,0.011401744396636371],[113,-23,72,0.011480122605426739],[113,-23,73,0.011513401388642137],[113,-23,74,0.011501434131294454],[113,-23,75,0.011449005122558779],[113,-23,76,0.011364585970018442],[113,-23,77,0.011259196440293833],[113,-23,78,0.011145371106252376],[113,-23,79,0.01103623298187662],[113,-22,64,0.012144259007513583],[113,-22,65,0.01190262538146495],[113,-22,66,0.011820961171439512],[113,-22,67,0.011867973750973624],[113,-22,68,0.011989943303200622],[113,-22,69,0.012137282589720069],[113,-22,70,0.012273379280682294],[113,-22,71,0.012372999167569513],[113,-22,72,0.012420649363231999],[113,-22,73,0.01240903215714913],[113,-22,74,0.012337591596990612],[113,-22,75,0.01221115471490915],[113,-22,76,0.012038669153328137],[113,-22,77,0.011832038771338515],[113,-22,78,0.011605058630416352],[113,-22,79,0.011372450568507006],[113,-21,64,0.012182851793609],[113,-21,65,0.012407383695516847],[113,-21,66,0.012476986972345047],[113,-21,67,0.012421893519213995],[113,-21,68,0.012296621105057477],[113,-21,69,0.012152986583380192],[113,-21,70,0.012029525490325502],[113,-21,71,0.011953022722955852],[113,-21,72,0.011940129858107043],[113,-21,73,0.011998899051268956],[113,-21,74,0.012130231473588098],[113,-21,75,0.012329238386584304],[113,-21,76,0.01258651310652052],[113,-21,77,0.012322048437080926],[113,-21,78,0.011976936561772398],[113,-21,79,0.011616090181648641],[113,-20,64,0.011397452265049868],[113,-20,65,0.011593407656082605],[113,-20,66,0.01164274670777089],[113,-20,67,0.011574369193959912],[113,-20,68,0.01144304940702558],[113,-20,69,0.011302314377366509],[113,-20,70,0.01119224448592058],[113,-20,71,0.011140918889009433],[113,-20,72,0.011165993525456148],[113,-20,73,0.011276204261657524],[113,-20,74,0.011472793179310008],[113,-20,75,0.011750856138278403],[113,-20,76,0.012100609885485544],[113,-20,77,0.01250857712891842],[113,-20,78,0.01228321152479119],[113,-20,79,0.011793931074399364],[113,-19,64,0.010702750339854617],[113,-19,65,0.010865682860909824],[113,-19,66,0.010891705216597238],[113,-19,67,0.010808091414181804],[113,-19,68,0.010669282903345493],[113,-19,69,0.010529957701951809],[113,-19,70,0.010431363554211344],[113,-19,71,0.010402652666266441],[113,-19,72,0.010462393971368599],[113,-19,73,0.01062002089023447],[113,-19,74,0.010877212662776603],[113,-19,75,0.01122920743790578],[113,-19,76,0.011666045428848835],[113,-19,77,0.012173740571817845],[113,-19,78,0.0125510640506441],[113,-19,79,0.011938200720777994],[113,-18,64,0.010138443396301664],[113,-18,65,0.01026109162978436],[113,-18,66,0.010257507507580515],[113,-18,67,0.010153041109400544],[113,-18,68,0.010001189120397401],[113,-18,69,0.009857202797658102],[113,-18,70,0.009763135749018204],[113,-18,71,0.00974903664615456],[113,-18,72,0.009834363092668505],[113,-18,73,0.010029343600032329],[113,-18,74,0.01033628585059844],[113,-18,75,0.010750829515462558],[113,-18,76,0.0112631419933383],[113,-18,77,0.011859055544336748],[113,-18,78,0.012521144409094756],[113,-18,79,0.012085903730172001],[113,-17,64,0.00972900380918299],[113,-17,65,0.009801937878871585],[113,-17,66,0.009759970783821372],[113,-17,67,0.009626248651842943],[113,-17,68,0.009452709913995973],[113,-17,69,0.009294592481930326],[113,-17,70,0.009194407176758564],[113,-17,71,0.009182953444973649],[113,-17,72,0.009280598111659754],[113,-17,73,0.009498517427133042],[113,-17,74,0.009839900724461994],[113,-17,75,0.010301114066567226],[113,-17,76,0.010872822332028924],[113,-17,77,0.011541068268163162],[113,-17,78,0.012288307128068134],[113,-17,79,0.012268661718682605],[113,-16,64,0.00943134528372021],[113,-16,65,0.009446242502957938],[113,-16,66,0.009358627567066138],[113,-16,67,0.009189225725228456],[113,-16,68,0.008987808048153785],[113,-16,69,0.008808967868621512],[113,-16,70,0.008695263024344365],[113,-16,71,0.008678024023591902],[113,-16,72,0.008778464506695368],[113,-16,73,0.009008772528816053],[113,-16,74,0.009373181149638813],[113,-16,75,0.009869016844378022],[113,-16,76,0.010487724287705407],[113,-16,77,0.011215866108019086],[113,-16,78,0.012036096263865034],[113,-16,79,0.012484408533006228],[113,-15,64,0.009196610222191126],[113,-15,65,0.009146979177401766],[113,-15,66,0.00900868859178807],[113,-15,67,0.00879989141054811],[113,-15,68,0.008567595261001665],[113,-15,69,0.008365078505532442],[113,-15,70,0.008234471923075306],[113,-15,71,0.00820733496536323],[113,-15,72,0.00830557000997202],[113,-15,73,0.008542336909119352],[113,-15,74,0.00892296651130499],[113,-15,75,0.009445871824505882],[113,-15,76,0.010103455489040392],[113,-15,77,0.010883012235773022],[113,-15,78,0.01176762502135905],[113,-15,79,0.012726888842177321],[113,-14,64,0.008988028588313253],[113,-14,65,0.008869076525581257],[113,-14,66,0.008676986976996658],[113,-14,67,0.008427245922347379],[113,-14,68,0.00816352590800926],[113,-14,69,0.007937101173676825],[113,-14,70,0.007789159049113505],[113,-14,71,0.00775112586616663],[113,-14,72,0.007845362186017009],[113,-14,73,0.008085879321774297],[113,-14,74,0.008479076042222575],[113,-14,75,0.00902449429317742],[113,-14,76,0.009715592730615627],[113,-14,77,0.010540536825178434],[113,-14,78,0.01148300427148817],[113,-14,79,0.01252300441850233],[113,-13,64,0.008778981139569484],[113,-13,65,0.008587493451192139],[113,-13,66,0.008340096734917998],[113,-13,67,0.008049564200624696],[113,-13,68,0.007755697724957126],[113,-13,69,0.007507080077449952],[113,-13,70,0.007343417442235022],[113,-13,71,0.0072956022189158585],[113,-13,72,0.007386171387430884],[113,-13,73,0.007629808253220646],[113,-13,74,0.00803388667932481],[113,-13,75,0.008599056818627498],[113,-13,76,0.009319871272396266],[113,-13,77,0.010185450521545887],[113,-13,78,0.011180186405722775],[113,-13,79,0.012284482363288099],[113,-12,64,0.008551225069934934],[113,-12,65,0.008285454448751764],[113,-12,66,0.00798260699606197],[113,-12,67,0.007652739044410555],[113,-12,68,0.007331293737939725],[113,-12,69,0.007063497165482999],[113,-12,70,0.006887035561074936],[113,-12,71,0.00683184764409605],[113,-12,72,0.006920333175833314],[113,-12,73,0.007167627616514304],[113,-12,74,0.007581942217807448],[113,-12,75,0.008164968746055217],[113,-12,76,0.008912347897448663],[113,-12,77,0.009814200339320626],[113,-12,78,0.010855719193122696],[113,-12,79,0.012017822665798514],[113,-11,64,0.008293282333167534],[113,-11,65,0.007952845040087931],[113,-11,66,0.007595551993366811],[113,-11,67,0.007228773746492607],[113,-11,68,0.0068831652153198055],[113,-11,69,0.006599972425320792],[113,-11,70,0.006414340875625696],[113,-11,71,0.006354835232903714],[113,-11,72,0.006443389949043191],[113,-11,73,0.006695348881882588],[113,-11,74,0.007119593485871593],[113,-11,75,0.007718758952127763],[113,-11,76,0.00848953749499654],[113,-11,77,0.009423067806619176],[113,-11,78,0.010505409533927774],[113,-11,79,0.011718101475667821],[113,-10,64,0.00799899149835659],[113,-10,65,0.007584768062511999],[113,-10,66,0.007174997413811307],[113,-10,67,0.006774424733416681],[113,-10,68,0.00640855607090489],[113,-10,69,0.006114094469123562],[113,-10,70,0.005923159721151549],[113,-10,71,0.005862538131842238],[113,-10,72,0.00595337180639936],[113,-10,73,0.006210959579358904],[113,-10,74,0.00664466938267838],[113,-10,75,0.007257961616074761],[113,-10,76,0.008048522851703366],[113,-10,77,0.00900850898076291],[113,-10,78,0.010124896693777327],[113,-10,79,0.011379941981295733],[113,-9,64,0.00766622453592333],[113,-9,65,0.007180262078599257],[113,-9,66,0.006720784259501289],[113,-9,67,0.006289995229356841],[113,-9,68,0.005907969613984344],[113,-9,69,0.005606382176329127],[113,-9,70,0.00541389403890871],[113,-9,71,0.005355139841387807],[113,-9,72,0.005450156960654484],[113,-9,73,0.005713948308877961],[113,-9,74,0.006156178736777965],[113,-9,75,0.006781004786093721],[113,-9,76,0.007587037256034959],[113,-9,77,0.00856743577568078],[113,-9,78,0.00971013431034957],[113,-9,79,0.010998196277439235],[113,-8,64,0.0072957704400451635],[113,-8,65,0.006741183684394909],[113,-8,66,0.006235431858241747],[113,-8,67,0.005778281443325641],[113,-8,68,0.005384178997061742],[113,-8,69,0.00507937857968615],[113,-8,70,0.004888716005494052],[113,-8,71,0.0048343450243580055],[113,-8,72,0.0049349122652690555],[113,-8,73,0.005204886582165821],[113,-8,74,0.00565404305157164],[113,-8,75,0.00628710154201487],[113,-8,76,0.007103519449295806],[113,-8,77,0.008097437872042543],[113,-8,78,0.009257780191487187],[113,-8,79,0.010568501720911309],[113,-7,64,0.006890388058810608],[113,-7,65,0.006271255958771761],[113,-7,66,0.005723202122442984],[113,-7,67,0.00524367322308163],[113,-7,68,0.004841383132933507],[113,-7,69,0.0045368785703304906],[113,-7,70,0.004350881901657418],[113,-7,71,0.0043027919196514],[113,-7,72,0.004409614668418789],[113,-7,73,0.004685067997464652],[113,-7,74,0.005138860307589512],[113,-7,75,0.005776143577925799],[113,-7,76,0.006597140393105525],[113,-7,77,0.0075969443255071295],[113,-7,78,0.008765492672854714],[113,-7,79,0.010087710209400037],[113,-6,64,0.006454030922548076],[113,-6,65,0.0057752857178866345],[113,-6,66,0.005189327571280104],[113,-6,67,0.004691411522530571],[113,-6,68,0.0042845102359429016],[113,-6,69,0.003983292352623942],[113,-6,70,0.003804166890324],[113,-6,71,0.003763567731792189],[113,-6,72,0.00387665462777776],[113,-6,73,0.004156205411286503],[113,-6,74,0.0046117000878005375],[113,-6,75,0.005248597051656557],[113,-6,76,0.006067801267298651],[113,-6,77,0.007065323848864933],[113,-6,78,0.008232132075943208],[113,-6,79,0.009554188500915972],[113,-5,64,0.0059912472298442685],[113,-5,65,0.005258552611414455],[113,-5,66,0.004639406000635008],[113,-5,67,0.004127005388868034],[113,-5,68,0.003718671484442059],[113,-5,69,0.003423146897238569],[113,-5,70,0.0032524226596509086],[113,-5,71,0.0032198286138825738],[113,-5,72,0.00333852272130149],[113,-5,73,0.003620186919689442],[113,-5,74,0.004073930381121669],[113,-5,75,0.004705400571644154],[113,-5,76,0.005516102065175127],[113,-5,77,0.006502922621549919],[113,-5,78,0.0076578656060078115],[113,-5,79,0.008967987408538448],[113,-4,64,0.005506758465890086],[113,-4,65,0.004726373417653376],[113,-4,66,0.004078965004773347],[113,-4,67,0.0035558114875982472],[113,-4,68,0.003148767599350705],[113,-4,69,0.0028607279183424307],[113,-4,70,0.002699260137411457],[113,-4,71,0.002674526078768766],[113,-4,72,0.0027975808669181332],[113,-4,73,0.003078891593668657],[113,-4,74,0.003527076500024181],[113,-4,75,0.00414786521566618],[113,-4,76,0.0049432801153506825],[113,-4,77,0.005911038376403975],[113,-4,78,0.007044173856483011],[113,-4,79,0.008330877459949733],[113,-3,64,0.005005220384954276],[113,-3,65,0.00418384515874606],[113,-3,66,0.003513199819110041],[113,-3,67,0.002982779444208813],[113,-3,68,0.00257925138374223],[113,-3,69,0.0022998651345337087],[113,-3,70,0.002147859695018413],[113,-3,71,0.0021302418580403195],[113,-3,72,0.002255919716311185],[113,-3,73,0.002534066027787281],[113,-3,74,0.002972712619910178],[113,-3,75,0.003577576500205548],[113,-3,76,0.004351117831842262],[113,-3,77,0.005291829430153765],[113,-3,78,0.006393756943833124],[113,-3,79,0.007646248406802401],[113,-2,64,0.004491170283974162],[113,-2,65,0.0036357708611954886],[113,-2,66,0.0029468881609469935],[113,-2,67,0.0024123664869876806],[113,-2,68,0.0020140494671284834],[113,-2,69,0.0017438637601666959],[113,-2,70,0.0016009114301953492],[113,-2,71,0.0015891333784581506],[113,-2,72,0.0017153039128889878],[113,-2,73,0.001987262856748778],[113,-2,74,0.0024123865099956697],[113,-2,75,0.0029962982437197814],[113,-2,76,0.0037418189771544533],[113,-2,77,0.004648157262274313],[113,-2,78,0.005710338186941131],[113,-2,79,0.006918869808369152],[113,-1,64,0.00396916462332783],[113,-1,65,0.0030867719264940753],[113,-1,66,0.0023844858907616385],[113,-1,67,0.0018486250224358045],[113,-1,68,0.0014566466419713429],[113,-1,69,0.00119558531061621],[113,-1,70,0.0010606882437426608],[113,-1,71,0.0010529921380387156],[113,-1,72,0.001177206999589631],[113,-1,73,0.0014398424698228113],[113,-1,74,0.0018475780770289562],[113,-1,75,0.0024058782917931844],[113,-1,76,0.003117852717728137],[113,-1,77,0.003983361208289358],[113,-1,78,0.004998363170377414],[113,-1,79,0.006154509800387742],[113,0,64,0.003444111109645765],[113,0,65,0.0025415911479243956],[113,0,66,0.0018304073964880685],[113,0,67,0.001295466859118449],[113,0,68,9.103362652998837E-4],[113,0,69,6.576808884995234E-4],[113,0,70,5.292545050417152E-4],[113,0,71,5.234173367631532E-4],[113,0,72,6.429378263296982E-4],[113,0,73,8.93039206431188E-4],[113,0,74,0.0012796923835002715],[113,0,75,0.001808156096970098],[113,0,76,0.002481764757862609],[113,0,77,0.003300963819597322],[113,0,78,0.0042625919935625365],[113,0,79,0.005359409096734964],[113,1,64,0.002921802323833257],[113,1,65,0.0020055924554840073],[113,1,66,0.0012894959288018348],[113,1,67,7.571085857722581E-4],[113,1,68,3.786406074183515E-4],[113,1,69,1.3298028001011025E-4],[113,1,70,8.813138846340622E-6],[113,1,71,2.1071492985463253E-6],[113,1,72,1.1386045349475927E-4],[113,1,73,3.480937004659877E-4],[113,1,74,7.100885524797395E-4],[113,1,75,0.0012048733960351328],[113,1,76,0.0018359567241343902],[113,1,77,0.0026043081008699388],[113,1,78,0.0035075860742959],[113,1,79,0.004539611873518197],[113,2,64,0.002409656986094949],[113,2,65,0.0014854611708905072],[113,2,66,7.676858386411304E-4],[113,2,67,2.3869865286788096E-4],[113,2,68,-1.340993767855476E-4],[113,2,69,-3.7496449370427135E-4],[113,2,70,-4.97810863609084E-4],[113,2,71,-5.087348402065998E-4],[113,2,72,-4.08295263296057E-4],[113,2,73,-1.9355162520529474E-4],[113,2,74,1.401415397614207E-4],[113,2,75,5.975851244899464E-4],[113,2,76,0.0011824312971456604],[113,2,77,0.001896124693393719],[113,2,78,0.002737088373244698],[113,2,79,0.0037001534331787757],[113,3,64,0.001917639101928497],[113,3,65,9.900857951534706E-4],[113,3,66,2.7284604468103403E-4],[113,3,67,-2.5287848584757517E-4],[113,3,68,-6.219653807823769E-4],[113,3,69,-8.611792286820478E-4],[113,3,70,-9.865476012833013E-4],[113,3,71,-0.00100587560933673],[113,3,72,-9.210318944477692E-4],[113,3,73,-7.299968007350638E-4],[113,3,74,-4.286710451162122E-4],[113,3,75,-1.2443763743672554E-5],[113,3,76,5.224806315238372E-4],[113,3,77,0.0011779968024825942],[113,3,78,0.0019532535156044795],[113,3,79,0.0028440483051108798],[113,4,64,0.0014594033054948648],[113,4,65,5.316604717309623E-4],[113,4,66,-1.8416350696645015E-4],[113,4,67,-7.079951343821412E-4],[113,4,68,-0.0010765124427748155],[113,4,69,-0.0013183924516356387],[113,4,70,-0.0014513030899040657],[113,4,71,-0.0014843945491464575],[113,4,72,-0.0014205740822166618],[113,4,73,-0.0012585486463231532],[113,4,74,-9.946336856266858E-4],[113,4,75,-6.24326898903165E-4],[113,4,76,-1.436463859037427E-4],[113,4,77,4.4976689183645174E-4],[113,4,78,0.0011557818678362849],[113,4,79,0.0019711443593566627],[113,5,64,0.00105366367946503],[113,5,65,1.270050041170351E-4],[113,5,66,-5.882257857201511E-4],[113,5,67,-0.0011130735802107898],[113,5,68,-0.0014856326939424493],[113,5,69,-0.0017359890452840086],[113,5,70,-0.0018830278659230514],[113,5,71,-0.001936895698751346],[113,5,72,-0.0019012546745839516],[113,5,73,-0.001775311010740118],[113,5,74,-0.0015556160083801476],[113,5,75,-0.0012376383657452838],[113,5,76,-8.171071624506281E-4],[113,5,77,-2.911254021806107E-4],[113,5,78,3.409454763415776E-4],[113,5,79,0.001076829201568636],[113,6,64,7.257831230285814E-4],[113,6,65,-2.0089893448353618E-4],[113,6,66,-9.184912021098115E-4],[113,6,67,-0.001449179140331087],[113,6,68,-0.0018322310153019634],[113,6,69,-0.002098791258231199],[113,6,70,-0.0022686321720440175],[113,6,71,-0.002352589621341183],[113,6,72,-0.002354797393371368],[113,6,73,-0.0022747020886496024],[113,6,74,-0.0021088567959182997],[113,6,75,-0.001852492336269931],[113,6,76,-0.0015008653892273137],[113,6,77,-0.0010503833359624597],[113,6,78,-4.995061678701164E-4],[113,6,79,1.5057369165656233E-4],[113,7,64,5.080026299403412E-4],[113,7,65,-4.2193077774951897E-4],[113,7,66,-0.0011467250379474537],[113,7,67,-0.0016897223219324835],[113,7,68,-0.0020912621003862666],[113,7,69,-0.00238337585238396],[113,7,70,-0.0025865110998628178],[113,7,71,-0.0027119517248337752],[113,7,72,-0.0027640423616651748],[113,7,73,-0.0027421988607108025],[113,7,74,-0.002642703042540553],[113,7,75,-0.0024602804837944394],[113,7,76,-0.002189460595450431],[113,7,77,-0.0018257187687271048],[113,7,78,-0.0013664008692767194],[113,7,79,-8.114308528195292E-4],[113,8,64,4.2846770349764043E-4],[113,8,65,-5.066908265606591E-4],[113,8,66,-0.0012422755625725451],[113,8,67,-0.0018026141996881962],[113,8,68,-0.002228931846218804],[113,8,69,-0.0025539951576030225],[113,8,70,-0.0027987556366226643],[113,8,71,-0.0029747592179606235],[113,8,72,-0.00308636651069717],[113,8,73,-0.003132764197027884],[113,8,74,-0.0031097657621355006],[113,8,75,-0.003011400244566157],[113,8,76,-0.0028312882090777156],[113,8,77,-0.0025638046514896576],[113,8,78,-0.0022050290440086295],[113,8,79,-0.001753483215991562],[113,9,64,5.049606953589655E-4],[113,9,65,-4.3532098603473645E-4],[113,9,66,-0.0011832016031636276],[113,9,67,-0.0017636295197178552],[113,9,68,-0.002218400027541878],[113,9,69,-0.002580828043874823],[113,9,70,-0.0028722069354775253],[113,9,71,-0.003104202543127285],[113,9,72,-0.003281067367930792],[113,9,73,-0.0034016511021837093],[113,9,74,-0.0034612056347202253],[113,9,75,-0.0034529831673601463],[113,9,76,-0.0033696265841377327],[113,9,77,-0.0032043517153242406],[113,9,78,-0.0029519216303719844],[113,9,79,-0.00260941357407446],[113,10,64,7.470098798795278E-4],[113,10,65,-1.9652742933824461E-4],[113,10,66,-9.563517099708633E-4],[113,10,67,-0.0015575298794681604],[113,10,68,-0.002042013847752189],[113,10,69,-0.0024434487293577925],[113,10,70,-0.002783315434651959],[113,10,71,-0.0030732963956115983],[113,10,72,-0.0033174750059268383],[113,10,73,-0.0035143371827759803],[113,10,74,-0.003658573141971734],[113,10,75,-0.0037426779753998306],[113,10,76,-0.0037583501155282295],[113,10,77,-0.003697687263197413],[113,10,78,-0.0035541798385551058],[113,10,79,-0.003323502487248094],[113,11,64,0.0011582028931334293],[113,11,65,2.1473705472260628E-4],[113,11,66,-5.550688121862144E-4],[113,11,67,-0.0011758131688518255],[113,11,68,-0.0016891240746970348],[113,11,69,-0.0021287339191106225],[113,11,70,-0.0025161650532597273],[113,11,71,-0.0028630480270643082],[113,11,72,-0.0031732917515092498],[113,11,73,-0.0034450625710744876],[113,11,74,-0.0036725703129761545],[113,11,75,-0.003847659864852951],[113,11,76,-0.003961207316332223],[113,11,77,-0.004004320179627629],[113,11,78,-0.003969341676722119],[113,11,79,-0.0038506595422839484],[113,12,64,0.0017387444990655013],[113,12,65,7.998304907999781E-4],[113,12,66,2.3338337923944163E-5],[113,12,67,-6.142388858506555E-4],[113,12,68,-0.001153688797996458],[113,12,69,-0.0016285718388898388],[113,12,70,-0.00206031589218118],[113,12,71,-0.0024604627645268794],[113,12,72,-0.0028327896448864594],[113,12,73,-0.0031752476459342813],[113,12,74,-0.003481715487956381],[113,12,75,-0.003743566854385018],[113,12,76,-0.003951050415989304],[113,12,77,-0.004094481984883224],[113,12,78,-0.004165248716847395],[113,12,79,-0.00415662572764898],[113,13,64,0.0024882638678553606],[113,13,65,0.0015592238257876004],[113,13,66,7.803615301923593E-4],[113,13,67,1.298749127813428E-4],[113,13,68,-4.3166100309327386E-4],[113,13,69,-9.373698824415861E-4],[113,13,70,-0.001408462775218365],[113,13,71,-0.0018563847892950516],[113,13,72,-0.0022848644881021066],[113,13,73,-0.002691790260793636],[113,13,74,-0.00307091174190772],[113,13,75,-0.003413364805289748],[113,13,76,-0.0037090191041518603],[113,13,77,-0.003947647572915032],[113,13,78,-0.004119917744011616],[113,13,79,-0.004218205160958341],[113,14,64,0.003408876697921465],[113,14,65,0.0024955530094911884],[113,14,66,0.0017193024775924005],[113,14,67,0.0010605880839827896],[113,14,68,4.818448779455665E-4],[113,14,69,-4.9356321170083204E-5],[113,14,70,-5.539054377540845E-4],[113,14,71,-0.0010431694081565396],[113,14,72,-0.0015209432037341236],[113,14,73,-0.0019852397460405095],[113,14,74,-0.0024299168335140107],[113,14,75,-0.0028461396201069486],[113,14,76,-0.003223677606950058],[113,14,77,-0.0035520355259001774],[113,14,78,-0.003821417905980155],[113,14,79,-0.004023527517347107],[113,15,64,0.00451563465333058],[113,15,65,0.0036240315887335734],[113,15,66,0.0028555444115936955],[113,15,67,0.002193368181806519],[113,15,68,0.0016022466863721081],[113,15,69,0.001050691864633782],[113,15,70,5.182292129920272E-4],[113,15,71,-6.457095953083549E-6],[113,15,72,-5.273494917723278E-4],[113,15,73,-0.0010427753330155872],[113,15,74,-0.0015469364705563017],[113,15,75,-0.0020312886236429134],[113,15,76,-0.0024857695327409586],[113,15,77,-0.0028998752387804456],[113,15,78,-0.0032635842191181368],[113,15,79,-0.0035681294837033783],[113,16,64,0.005848198823218525],[113,16,65,0.004984141766329828],[113,16,66,0.0042281226941341754],[113,16,67,0.003566421467432762],[113,16,68,0.002966494612529503],[113,16,69,0.0023980604318783977],[113,16,70,0.0018411912724037882],[113,16,71,0.0012846466916499534],[113,16,72,7.241981331578705E-4],[113,16,73,1.6108434097053713E-4],[113,16,74,-3.9940076693800974E-4],[113,16,75,-9.491863956677549E-4],[113,16,76,-0.001478568319520024],[113,16,77,-0.0019772168034825313],[113,16,78,-0.0024350486699022],[113,16,79,-0.0028429635174311574],[113,17,64,0.007429693923001439],[113,17,65,0.006598721558276861],[113,17,66,0.005859409019065352],[113,17,67,0.005201358487498173],[113,17,68,0.004595096765447045],[113,17,69,0.004011834429943255],[113,17,70,0.003432362966248234],[113,17,71,0.0028455972782434657],[113,17,72,0.0022470705059104003],[113,17,73,0.0016375416226786974],[113,17,74,0.0010217174202027093],[113,17,75,4.070901830378037E-4],[113,17,76,-1.9710794997666617E-4],[113,17,77,-7.80833245393278E-4],[113,17,78,-0.0013340408652810064],[113,17,79,-0.001847377493806339],[113,18,64,0.009260027225378418],[113,18,65,0.008467326968971378],[113,18,66,0.00774858441005169],[113,18,67,0.007096849341724854],[113,18,68,0.006486024288251379],[113,18,69,0.005889110247362845],[113,18,70,0.005287820761800978],[113,18,71,0.004671349783895988],[113,18,72,0.0040350529124272],[113,18,73,0.003379222044295559],[113,18,74,0.0027079549189325883],[113,18,75,0.0020281207766448053],[113,18,76,0.001348423094328362],[113,18,77,6.785601045394566E-4],[113,18,78,2.8483548287506385E-5],[113,18,79,-5.922441401679268E-4],[113,19,64,0.01131962677163335],[113,19,65,0.010569967815886126],[113,19,66,0.009875345009234277],[113,19,67,0.009232273713250952],[113,19,68,0.008618280841099153],[113,19,69,0.008008459460123496],[113,19,70,0.007385668720669745],[113,19,71,0.0067395379002763],[113,19,72,0.006065346512074616],[113,19,73,0.005362977422361307],[113,19,74,0.004635944310603395],[113,19,75,0.0038904946001516866],[113,19,76,0.0031347887813916483],[113,19,77,0.002378156841977693],[113,19,78,0.0016304323123296962],[113,19,79,9.013642300468742E-4],[113,20,64,0.013573014158987677],[113,20,65,0.012870679907125473],[113,20,66,0.012203447631471343],[113,20,67,0.0115712155344944],[113,20,68,0.010955323104877963],[113,20,69,0.010333251807882126],[113,20,70,0.009689240923576927],[113,20,71,0.009013533546252273],[113,20,72,0.00830146426351788],[113,20,73,0.007552598780124087],[113,20,74,0.006769926662225366],[113,20,75,0.005959108226958186],[113,20,76,0.0051277764492270485],[113,20,77,0.0042848946031638175],[113,20,78,0.0034401702006262],[113,20,79,0.0026035256342678086],[113,21,64,0.012606771606439993],[113,21,65,0.013241691886021855],[113,21,66,0.013859784452222579],[113,21,67,0.014064799661054702],[113,21,68,0.013448329930318888],[113,21,69,0.01281483520371209],[113,21,70,0.012150171182513105],[113,21,71,0.011445385956213652],[113,21,72,0.01069602026690173],[113,21,73,0.00990143838572598],[113,21,74,0.009064190608797394],[113,21,75,0.008189408284548913],[113,21,76,0.00728423218650857],[113,21,77,0.006357274944972924],[113,21,78,0.0054181181485939275],[113,21,79,0.004476844622955656],[113,22,64,0.01021043289811265],[113,22,65,0.010791443167994873],[113,22,66,0.01137665913088465],[113,22,67,0.011960053122406208],[113,22,68,0.012552380281256383],[113,22,69,0.013170590708012998],[113,22,70,0.013827018355568309],[113,22,71,0.013978638768471623],[113,22,72,0.01319341145278183],[113,22,73,0.012354940221636947],[113,22,74,0.011465437502558231],[113,22,75,0.010529579167343097],[113,22,76,0.00955406121860348],[113,22,77,0.008547168949780009],[113,22,78,0.007518359230776702],[113,22,79,0.0064778565185942315],[113,23,64,0.007789717697255997],[113,23,65,0.008314415574837706],[113,23,66,0.008864366390660215],[113,23,67,0.009430923547051972],[113,23,68,0.01002084926659464],[113,23,69,0.010647933821487949],[113,23,70,0.011322451124790434],[113,23,71,0.012051199943226548],[113,23,72,0.012837777816278888],[113,23,73,0.013682866273916535],[113,23,74,0.01391507232305999],[113,23,75,0.012922675888147972],[113,23,76,0.011882193855382642],[113,23,77,0.010801609547068717],[113,23,78,0.009690252907627532],[113,23,79,0.008558461528974286],[113,24,64,0.005411416180487319],[113,24,65,0.005878120160589012],[113,24,66,0.00639074862154482],[113,24,67,0.006938426619680821],[113,24,68,0.007523992353932782],[113,24,69,0.008157883909727296],[113,24,70,0.008848122458987376],[113,24,71,0.009600134844584884],[113,24,72,0.010416821127875099],[113,24,73,0.011298653257473808],[113,24,74,0.012243804401016876],[113,24,75,0.013248308412506139],[113,24,76,0.01421051752676178],[113,24,77,0.013064571538973998],[113,24,78,0.011880058986844655],[113,24,79,0.010667390627859217],[113,25,64,0.003142951586567462],[113,25,65,0.003550739463704837],[113,25,66,0.004024360210288535],[113,25,67,0.00455114900249017],[113,25,68,0.005130151024196186],[113,25,69,0.005768303221534277],[113,25,70,0.006471209474830191],[113,25,71,0.007242760565145583],[113,25,72,0.008085004092283422],[113,25,73,0.00899806411130223],[113,25,74,0.009980110219378785],[113,25,75,0.011027375704969058],[113,25,76,0.012134224256473173],[113,25,77,0.013293264619020525],[113,25,78,0.01403257273685784],[113,25,79,0.012751705122976457],[113,26,64,0.0010498683386273285],[113,26,65,0.0013986023740931556],[113,26,66,0.001831944618840296],[113,26,67,0.0023359136501390288],[113,26,68,0.002905951318652325],[113,26,69,0.003545392767111798],[113,26,70,0.004257293347266088],[113,26,71,0.005043865286373952],[113,26,72,0.005906161740408434],[113,26,73,0.006843827621670539],[113,26,74,0.007854917122092046],[113,26,75,0.008935777686459884],[113,26,76,0.010081000028399973],[113,26,77,0.011283433627508421],[113,26,78,0.012534266999815262],[113,26,79,0.013823171897158402],[113,27,64,-8.064906709678249E-4],[113,27,65,-5.161546084164779E-4],[113,27,66,-1.2390681062381077E-4],[113,27,67,3.554493983344959E-4],[113,27,68,9.139960567752486E-4],[113,27,69,0.0015514175700944175],[113,27,70,0.0022681268279286736],[113,27,71,0.0030645407030755255],[113,27,72,0.003940592752241587],[113,27,73,0.004895327928964197],[113,27,74,0.0059265794160328535],[113,27,75,0.007030727474947381],[113,27,76,0.00820254000624708],[113,27,77,0.009435094318475837],[113,27,78,0.010719779416691519],[113,27,79,0.012046377945423755],[113,28,64,-0.002371113555582107],[113,28,65,-0.0021377357542746614],[113,28,66,-0.0017869105062613406],[113,28,67,-0.0013337604330165107],[113,28,68,-7.892722334557704E-4],[113,28,69,-1.574076795051726E-4],[113,28,70,5.595497156486414E-4],[113,28,71,0.0013601334114084608],[113,28,72,0.0022430520979892154],[113,28,73,0.003206643157178938],[113,28,74,0.0042484216128212595],[113,28,75,0.0053647246107864765],[113,28,76,0.00655045122721968],[113,28,77,0.007798897171077845],[113,28,78,0.009101683724212536],[113,28,79,0.010448780051416815],[113,29,64,-0.0035972513257243885],[113,29,65,-0.003418639877332311],[113,29,66,-0.003109056671418878],[113,29,67,-0.0026834465062367443],[113,29,68,-0.002155533984623959],[113,29,69,-0.0015328691590102994],[113,29,70,-8.204446359177374E-4],[113,29,71,-2.1667656279906522E-5],[113,29,72,8.608625906152835E-4],[113,29,73,0.0018246838252260395],[113,29,74,0.002866906165991304],[113,29,75,0.003983754426426682],[113,29,76,0.0051702171271350164],[113,29,77,0.006419801864750119],[113,29,78,0.007724396426453803],[113,29,79,0.009074234798094655],[113,30,64,-0.0044481475753806905],[113,30,65,-0.004321414966505156],[113,30,66,-0.004052381245820573],[113,30,67,-0.0036553347837716276],[113,30,68,-0.0031463768648851667],[113,30,69,-0.0025365369158671033],[113,30,70,-0.001833488386797672],[113,30,71,-0.0010426047503392134],[113,30,72,-1.6785209369156226E-4],[113,30,73,7.874331007829723E-4],[113,30,74,0.0018198816037427743],[113,30,75,0.0029255448280931674],[113,30,76,0.004099463973089344],[113,30,77,0.005335354647680931],[113,30,78,0.006625406419101481],[113,30,79,0.0079601964677322],[113,31,64,-0.004898561057963599],[113,31,65,-0.004820208846954189],[113,31,66,-0.0045905391219547495],[113,31,67,-0.0042227361701576175],[113,31,68,-0.003734897352724874],[113,31,69,-0.0031413763085845945],[113,31,70,-0.0024524601579807813],[113,31,71,-0.0016754824726067797],[113,31,72,-8.158100762847931E-4],[113,31,73,1.222912378013256E-4],[113,31,74,0.001134912836458539],[113,31,75,0.0022178816607063626],[113,31,76,0.003366261045181823],[113,31,77,0.0045739737541529105],[113,31,78,0.005833546748043116],[113,31,79,0.007135976910621872],[113,32,64,-0.00493607596345662],[113,32,65,-0.004902110747337642],[113,32,66,-0.004710173612082159],[113,32,67,-0.004371939640559315],[113,32,68,-0.00390711499097341],[113,32,69,-0.0033331835392484354],[113,32,70,-0.002662943846176497],[113,32,71,-0.0019056529824664071],[113,32,72,-0.0010680864670873256],[113,32,73,-1.5547317350572747E-4],[113,32,74,8.27695689654365E-4],[113,32,75,0.0018769840787683104],[113,32,76,0.0029874553200186812],[113,32,77,0.0041532429203634735],[113,32,78,0.005367247575288163],[113,32,79,0.006620959667006252],[113,33,64,-0.0045621944317279246],[113,33,65,-0.0045682783614127125],[113,33,66,-0.004412076863459332],[113,33,67,-0.004103403713212355],[113,33,68,-0.003663194389472319],[113,33,69,-0.0031118406185707986],[113,33,70,-0.002464520982848273],[113,33,71,-0.00173235131930801],[113,33,72,-9.23497633695878E-4],[113,33,73,-4.4162224677044725E-5],[113,33,74,9.005579896316139E-4],[113,33,75,0.0019059416048646581],[113,33,76,0.0029670416464465687],[113,33,77,0.004078213261517975],[113,33,78,0.005232769861084525],[113,33,79,0.006422767081864108],[113,34,64,-0.003793205572338143],[113,34,65,-0.0038348447155917994],[113,34,66,-0.003712135632600172],[113,34,67,-0.0034327408283040995],[113,34,68,-0.003018469745125821],[113,34,69,-0.002492384800318253],[113,34,70,-0.0018718920093619882],[113,34,71,-0.0011698766175665875],[113,34,72,-3.95850798477729E-4],[113,34,73,4.4302523414150354E-4],[113,34,74,0.0013410498071736773],[113,34,75,0.0022932148205874964],[113,34,76,0.0032945696489051772],[113,34,77,0.004339713996539446],[113,34,78,0.0054224194702923965],[113,34,79,0.00653537932434618],[113,35,64,-0.0026608250135302597],[113,35,65,-0.0027335988940791183],[113,35,66,-0.0026420565587692026],[113,35,67,-0.0023914889164035136],[113,35,68,-0.002004266361817826],[113,35,69,-0.0015058872309895884],[113,35,70,-9.158215467107741E-4],[113,35,71,-2.4861469725307865E-4],[113,35,72,4.849450768709272E-4],[113,35,73,0.001276783952412052],[113,35,74,0.002120625740686525],[113,35,75,0.003011201898990472],[113,35,76,0.00394358884328415],[113,35,77,0.004912672738445801],[113,35,78,0.005912741622177864],[113,35,79,0.006937204411574635],[113,36,64,-0.0012125987771213532],[113,36,65,-0.0013124344346201664],[113,36,66,-0.0012498648271005294],[113,36,67,-0.0010276641801642342],[113,36,68,-6.6851338539739E-4],[113,36,69,-2.0013528725078896E-4],[113,36,70,3.560975392161082E-4],[113,36,71,9.841027665932396E-4],[113,36,72,0.0016719114389790542],[113,36,73,0.0024106128427003083],[113,36,74,0.0031934223909924645],[113,36,75,0.004014873450262681],[113,36,76,0.004870133701729173],[113,36,77,0.005754446306235902],[113,36,78,0.006662695824158432],[113,36,79,0.007589098538996205],[113,37,64,4.8793492402015405E-4],[113,37,65,3.644410050087397E-4],[113,37,66,3.998301129265291E-4],[113,37,67,5.939111220507567E-4],[113,37,68,9.238582751485363E-4],[113,37,69,0.0013598871780071554],[113,37,70,0.0018788667334844135],[113,37,71,0.0024633075539959117],[113,37,72,0.003100179906587598],[113,37,73,0.003779849784167349],[113,37,74,0.0044951344424905525],[113,37,75,0.005240478410418806],[113,37,76,0.006011250654082569],[113,37,77,0.006803163255991513],[113,37,78,0.007611811660057192],[113,37,79,0.00843233623530636],[113,38,64,0.002362910558060213],[113,38,65,0.002218209747507316],[113,38,66,0.002227560660601526],[113,38,67,0.002393346185499977],[113,38,68,0.002692654690743458],[113,38,69,0.0030937251262178863],[113,38,70,0.0035717749995603254],[113,38,71,0.004108033823360428],[113,38,72,0.004688552364885119],[113,38,73,0.005303126461919555],[113,38,74,0.005944336822894984],[113,38,75,0.0066067059045126705],[113,38,76,0.007285972639800001],[113,38,77,0.007978485475996864],[113,38,78,0.008680713876999582],[113,38,79,0.009388878151605058],[113,39,64,0.004354685042934669],[113,39,65,0.004191852516124967],[113,39,66,0.0041771281674560685],[113,39,67,0.004315470846371177],[113,39,68,0.004583871043082143],[113,39,69,0.004948572870920817],[113,39,70,0.005383172997845046],[113,39,71,0.005867693053689611],[113,39,72,0.006387372976112463],[113,39,73,0.006931575684490376],[113,39,74,0.007492804589865351],[113,39,75,0.008065835130110974],[113,39,76,0.00864696120471273],[113,39,77,0.009233357074920324],[113,39,78,0.009822554994595929],[113,39,79,0.010412038547109665],[113,40,64,0.00642964049685569],[113,40,65,0.00625385208700131],[113,40,66,0.006219242499921275],[113,40,67,0.006333417314947417],[113,40,68,0.006573238686226919],[113,40,69,0.006902852576235196],[113,40,70,0.007294181056004991],[113,40,71,0.007726030890143345],[113,40,72,0.008182865368926468],[113,40,73,0.008653684355391014],[113,40,74,0.009131014155584712],[113,40,75,0.009610008506697758],[113,40,76,0.010087661667938399],[113,40,77,0.010562134294662186],[113,40,78,0.011032192479408131],[113,40,79,0.011496760056338182],[113,41,64,0.008549732299094358],[113,41,65,0.008367834404264871],[113,41,66,0.00831939051074032],[113,41,67,0.00841475672838462],[113,41,68,0.008630623638482588],[113,41,69,0.008928884876355049],[113,41,70,0.009279677435676535],[113,41,71,0.009660526613951137],[113,41,72,0.010055092807683297],[113,41,73,0.01045202334976377],[113,41,74,0.0108439111049143],[113,41,75,0.011226361231088045],[113,41,76,0.01159716720974294],[113,41,77,0.011955596947749607],[113,41,78,0.012301789460285347],[113,41,79,0.012636262359544875],[113,42,64,0.010674799802869766],[113,42,65,0.010494786841846583],[113,42,66,0.01043994327575909],[113,42,67,0.010523478633924242],[113,42,68,0.010721858227345619],[113,42,69,0.010994547093962744],[113,42,70,0.011309754468113144],[113,42,71,0.011643617663995742],[113,42,72,0.011978922554633273],[113,42,73,0.01230392570247058],[113,42,74,0.012611279969485639],[113,42,75,0.012897065132732687],[113,42,76,0.013159924731588413],[113,42,77,0.013400310077421072],[113,42,78,0.013619832066795703],[113,42,79,0.0138207211577455],[113,43,64,0.01276648953281751],[113,43,65,0.01259696803732159],[113,43,66,0.012544026343450188],[113,43,67,0.012623800630803232],[113,43,68,0.01281246779601737],[113,43,69,0.01306688893820523],[113,43,70,0.013353190982045727],[113,43,71,0.013645993931760466],[113,43,72,0.013927106041477745],[113,43,73,0.014184316891814331],[113,43,74,0.014410290313212521],[113,43,75,0.01460155880154065],[113,43,76,0.014757620778048234],[113,43,77,0.014880141755679355],[113,43,78,0.01497226018875148],[113,43,79,0.015037998505112962],[113,44,64,0.014792374766953218],[113,44,65,0.014642010466454285],[113,44,66,0.01459957779622419],[113,44,67,0.014684158891002608],[113,44,68,0.014871569195415126],[113,44,69,0.01511590899048011],[113,44,70,0.015381072891992698],[113,44,71,0.015129694628844769],[113,44,72,0.01487796348782222],[113,44,73,0.014662092334933026],[113,44,74,0.014489541994346017],[113,44,75,0.014363443398981587],[113,44,76,0.014283538678408826],[113,44,77,0.01424702207960578],[113,44,78,0.014249279805775186],[113,44,79,0.014284528131448104],[113,45,64,0.014197161465865145],[113,45,65,0.014321292452090406],[113,45,66,0.014343265712281136],[113,45,67,0.014241141298855228],[113,45,68,0.014039586015575449],[113,45,69,0.013787425163336262],[113,45,70,0.013523170660190473],[113,45,71,0.013275688977519974],[113,45,72,0.013065544955101436],[113,45,73,0.01290625674815815],[113,45,74,0.012805459754062094],[113,45,75,0.0127659776430931],[113,45,76,0.012786798894288043],[113,45,77,0.012863957512384927],[113,45,78,0.012991316873565787],[113,45,79,0.013161255914336614],[113,46,64,0.01245602468418737],[113,46,65,0.012546996724195552],[113,46,66,0.012544005513112438],[113,46,67,0.012422367491388458],[113,46,68,0.01220729679558799],[113,46,69,0.011950593727742579],[113,46,70,0.011693241148006787],[113,46,71,0.011466009785685584],[113,46,72,0.011290811941075988],[113,46,73,0.011181971839675961],[113,46,74,0.011147410394315547],[113,46,75,0.011189742395420834],[113,46,76,0.011307284414945126],[113,46,77,0.011494971974057895],[113,46,78,0.01174518478696853],[113,46,79,0.012048479151589327],[113,47,64,0.010814828697996883],[113,47,65,0.010866962529553839],[113,47,66,0.010832892113111616],[113,47,67,0.010685430933785498],[113,47,68,0.010450453509736314],[113,47,69,0.01018277722857355],[113,47,70,0.009925927548125326],[113,47,71,0.009712673778134942],[113,47,72,0.009566384173427587],[113,47,73,0.009502303990854433],[113,47,74,0.009528754187065175],[113,47,75,0.009648248684354542],[113,47,76,0.009858528383501175],[113,47,77,0.010153510354347884],[113,47,78,0.010524150885489785],[113,47,79,0.010959221322269345],[113,48,64,0.009326075373687208],[113,48,65,0.009333915971168819],[113,48,66,0.009262444204222694],[113,48,67,0.009082260076372587],[113,48,68,0.008819991406043943],[113,48,69,0.008533448017667554],[113,48,70,0.008268726207865696],[113,48,71,0.00806066775233658],[113,48,72,0.007934205869198923],[113,48,73,0.007905641195001933],[113,48,74,0.007983845390894957],[113,48,75,0.008171390229819742],[113,48,76,0.00846560025124431],[113,48,77,0.008859527306708342],[113,48,78,0.009342845556066164],[113,48,79,0.009902665709357541],[113,49,64,0.008045836359962755],[113,49,65,0.00800407422928049],[113,49,66,0.007888593545812398],[113,49,67,0.007668108044509094],[113,49,68,0.007370064348259383],[113,49,69,0.007055168438848478],[113,49,70,0.0067720669618784235],[113,49,71,0.006557722228680341],[113,49,72,0.00643873687789454],[113,49,73,0.0064326162296525265],[113,49,74,0.006548965914162179],[113,49,75,0.0067906225708287],[113,49,76,0.007154715631441248],[113,49,77,0.007633658420361002],[113,49,78,0.008216067024985922],[113,49,79,0.008887605609746276],[113,50,64,0.0070178246079665415],[113,50,65,0.006921560271179107],[113,50,66,0.0067555392557033704],[113,50,67,0.006486952138018491],[113,50,68,0.0061441040705229825],[113,50,69,0.005790432097895529],[113,50,70,0.005477062238117595],[113,50,71,0.005243093763655929],[113,50,72,0.005116889363109054],[113,50,73,0.00511731118283809],[113,50,74,0.00525490032223932],[113,50,75,0.005532997549627162],[113,50,76,0.005948803202793698],[113,50,77,0.00649437443828105],[113,50,78,0.0071575581953306],[113,50,79,0.007922858443217915],[113,51,64,0.006273468237580997],[113,51,65,0.006118433446425043],[113,51,66,0.0058957321869473845],[113,51,67,0.005571425512380578],[113,51,68,0.00517469266115133],[113,51,69,0.004771473233944643],[113,51,70,0.004415251913433212],[113,51,71,0.004147246228414142],[113,51,72,0.00399764858585582],[113,51,73,0.0039868227410580605],[113,51,74,0.004126452301435537],[113,51,75,0.004420639030035081],[113,51,76,0.004866948889925721],[113,51,77,0.00545740394928895],[113,51,78,0.006179418448636673],[113,51,79,0.007016677515114445],[113,52,64,0.005832133663048845],[113,52,65,0.00561487025783268],[113,52,66,0.0053300095978703575],[113,52,67,0.004942899088338974],[113,52,68,0.0044835850613589405],[113,52,69,0.004020225369980834],[113,52,70,0.003608495888960106],[113,52,71,0.0032916772005627815],[113,52,72,0.003101834994370769],[113,52,73,0.0030609636883428795],[113,52,74,0.003182090919711461],[113,52,75,0.0034703407008413096],[113,52,76,0.003923953186694677],[113,52,77,0.0045352591564169235],[113,52,78,0.005291607471197534],[113,52,79,0.0061762439331546825],[113,53,64,0.005701501880281727],[113,53,65,0.005419499310306228],[113,53,66,0.005067884195319107],[113,53,67,0.004611717841400211],[113,53,68,0.004081885795634431],[113,53,69,0.0035484335065757593],[113,53,70,0.003069018669247505],[113,53,71,0.002688893737378208],[113,53,72,0.002442011831255416],[113,53,73,0.002352104724253754],[113,53,74,0.0024337306409337217],[113,53,75,0.0026932897211451685],[113,53,76,0.0031300051315102536],[113,53,77,0.0037368679375349733],[113,53,78,0.004501543985987821],[113,53,79,0.005407241187437119],[113,54,64,0.005878101741583576],[113,54,65,0.005529894370409791],[113,54,66,0.005107991570155728],[113,54,67,0.0045775955711071905],[113,54,68,0.003970384109169164],[113,54,69,0.0033579240928385766],[113,54,70,0.0027996102106797593],[113,54,71,0.0023425417924200754],[113,54,72,0.002022542474945006],[113,54,73,0.0018651607268987196],[113,54,74,0.0018866490792406984],[113,54,75,0.002094920005101653],[113,54,76,0.0024904764939913],[113,54,77,0.003067315472508673],[113,54,78,0.0038138023359375194],[113,54,79,0.0047135149719851385],[113,55,64,0.006348003938878871],[113,55,65,0.005933229371797759],[113,55,66,0.0054386999542117955],[113,55,67,0.0048301721690835065],[113,55,68,0.004140051616833216],[113,55,69,0.0034410369486109083],[113,55,70,0.002793987256614732],[113,55,71,0.002247693501869158],[113,55,72,0.0018398017096653977],[113,55,73,0.0015977255771652112],[113,55,74,0.0015395464829403465],[113,55,75,0.0016748989585708234],[113,55,76,0.002005839758679504],[113,55,77,0.002527698747749651],[113,55,78,0.003229909909655071],[113,55,79,0.004096820878697688],[113,56,64,0.007087679283890839],[113,56,65,0.006607099075249517],[113,56,66,0.006038886108992084],[113,56,67,0.005349737294454088],[113,56,68,0.00457270646741503],[113,56,69,0.0037812232218745537],[113,56,70,0.0030373192983524865],[113,56,71,0.00239129650122424],[113,56,72,0.001882545065654656],[113,56,73,0.0015403596216817781],[113,56,74,0.0013847509124806714],[113,56,75,0.001427251468892408],[113,56,76,0.0016717134933236827],[113,56,77,0.002115097263049845],[113,56,78,0.0027482484258320424],[113,56,79,0.0035566626294086783],[113,57,64,0.008065024713159747],[113,57,65,0.007520508937079769],[113,57,66,0.006878881008375086],[113,57,67,0.0061081242252487055],[113,57,68,0.005241847896005281],[113,57,69,0.004353813344888333],[113,57,70,0.0035069231921952375],[113,57,71,0.0027527893368632476],[113,57,72,0.002132440288963522],[113,57,73,0.0016770337839452497],[113,57,74,0.0014085730237814555],[113,57,75,0.0013406249107107819],[113,57,76,0.0014790386657176722],[113,57,77,0.0018226632563077842],[113,57,78,0.00236406209669459],[113,57,79,0.0030902235281795812],[113,58,64,0.009240560257570052],[113,58,65,0.008635037556319464],[113,58,66,0.007921588800519942],[113,58,67,0.007069777484844914],[113,58,68,0.006113664876495602],[113,58,69,0.005126958801633618],[113,58,70,0.004173130323294427],[113,58,71,0.0033048869101405614],[113,58,72,0.0025647648872809937],[113,58,73,0.001985734235179561],[113,58,74,0.0015918142861210372],[113,58,75,0.0013986988649355248],[113,58,76,0.0014143894236442577],[113,58,77,0.001639834728551986],[113,58,78,0.002069575673371284],[113,58,79,0.0026923938133170144],[113,59,64,0.010568800000567499],[113,59,65,0.00990617485962369],[113,59,66,0.009123782328437316],[113,59,67,0.008192997643619065],[113,59,68,0.007148222395317971],[113,59,69,0.006062751337786909],[113,59,70,0.005000330036681364],[113,59,71,0.004014539734053698],[113,59,72,0.003149273554771255],[113,59,73,0.002439231408565967],[113,59,74,0.0019104323524997723],[113,59,75,0.0015807431541394435],[113,59,76,0.0014604217766943466],[113,59,77,0.00155267449404618],[113,59,78,0.0018542253363954648],[113,59,79,0.002355896566376923],[113,60,64,0.011999799807031674],[113,60,65,0.011284838943849218],[113,60,66,0.010437578254642766],[113,60,67,0.00943136646811141],[113,60,68,0.008300828647063817],[113,60,69,0.0071185230328707095],[113,60,70,0.005948192854984537],[113,60,71,0.004844070594128022],[113,60,72,0.0038512391048372103],[113,60,73,0.0030060169824035793],[113,60,74,0.002336367159780006],[113,60,75,0.0018623276757298115],[113,60,76,0.00159646351629377],[113,60,77,0.0015443383978718537],[113,60,78,0.00170500533236077],[113,60,79,0.002071514793167834],[113,61,64,0.01348088433652414],[113,61,65,0.012719074230298869],[113,61,66,0.011812094573570247],[113,61,67,0.010735355333694099],[113,61,68,0.009523586202942714],[113,61,69,0.008248330412833965],[113,61,70,0.006973076771140804],[113,61,71,0.005752491986246277],[113,61,72,0.004632670335167049],[113,61,73,0.0036514122695639616],[113,61,74,0.0028385311658906047],[113,61,75,0.0022161873639619397],[113,61,76,0.0017992485809935185],[113,61,77,0.0015956757359781983],[113,61,78,0.001606933172702705],[113,61,79,0.0018284222291593398],[113,62,64,0.014958555561157444],[113,62,65,0.014155933292506591],[113,62,66,0.013195293006680202],[113,62,67,0.012054119532598573],[113,62,68,0.010767129924743232],[113,62,69,0.009404625510584163],[113,62,70,0.008029619643339116],[113,62,71,0.006697007455040627],[113,62,72,0.005453710014641984],[113,62,73,0.004338851232479189],[113,62,74,0.003383966932084823],[113,62,75,0.00261324543332155],[113,62,76,0.002043798917911946],[113,62,77,0.0016859647801490895],[113,62,78,0.0015436361025079263],[113,62,79,0.0016146203385090895],[113,63,64,0.016304402688781975],[113,63,65,0.015543544402067015],[113,63,66,0.014536008460325293],[113,63,67,0.013337480798023946],[113,63,68,0.01198255409078751],[113,63,69,0.010540116482605895],[113,63,70,0.009072520429084031],[113,63,71,0.0076346996776746326],[113,63,72,0.006274215917104187],[113,63,73,0.005031341095179041],[113,63,74,0.003939175029894591],[113,63,75,0.0030237978491365384],[113,63,76,0.002304456708229495],[113,63,77,0.0017937861526528905],[113,63,78,0.001498061416077604],[113,63,79,0.0014174838720012514],[113,64,64,0.01507672781056881],[113,64,65,0.015969913799611216],[113,64,66,0.015786167386415372],[113,64,67,0.014538100027830398],[113,64,68,0.013123530867183972],[113,64,69,0.01160982006254334],[113,64,70,0.010058511676346906],[113,64,71,0.00852440783000517],[113,64,72,0.007055527533152397],[113,64,73,0.005693103247029072],[113,64,74,0.0044716149954009445],[113,64,75,0.0034188617367688773],[113,64,76,0.0025560696150184834],[113,64,77,0.0018980366126206234],[113,64,78,0.0014533130417200286],[113,64,79,0.0012244172244992389],[113,65,64,0.013994840989634326],[113,65,65,0.014911101168098299],[113,65,66,0.01601756483396763],[113,65,67,0.015613841829082166],[113,65,68,0.014148621898478127],[113,65,69,0.012573307778427996],[113,65,70,0.010948525343139922],[113,65,71,0.009328796436002412],[113,65,72,0.007762420768734282],[113,65,73,0.006291396827410948],[113,65,74,0.004951381768237332],[113,65,75,0.0037716901787843665],[113,65,76,0.0027753314757474152],[113,65,77,0.0019790856086529507],[113,65,78,0.001393616641043936],[113,65,79,0.00102362368709608],[113,66,64,0.013092695874408861],[113,66,65,0.014025944392965319],[113,66,66,0.015158976300817225],[113,66,67,0.016507094483364255],[113,66,68,0.015023784407709585],[113,66,69,0.0133971474801595],[113,66,70,0.011710053643489279],[113,66,71,0.010016617537824807],[113,66,72,0.008365252589154475],[113,66,73,0.006798527047349615],[113,66,74,0.005353059739981857],[113,66,75,0.004059455560623659],[113,66,76,0.002942280599952357],[113,66,77,0.0020200767201082287],[113,66,78,0.0013054152680933967],[113,66,79,8.049895231336843E-4],[113,67,64,0.012392749889978691],[113,67,65,0.013337509314061828],[113,67,66,0.014490261180356602],[113,67,67,0.015864896597507137],[113,67,68,0.015725072788155187],[113,67,69,0.014057541319083329],[113,67,70,0.01231970621881205],[113,67,71,0.010565167634126427],[113,67,72,0.008842297190157397],[113,67,73,0.0071940399438744865],[113,67,74,0.005657756197019234],[113,67,75,0.004265103310138388],[113,67,76,0.0030419575453442013],[113,67,77,0.0020083758533915616],[113,67,78,0.0011785974113214025],[113,67,79,5.610846108678783E-4],[113,68,64,0.011902939477540049],[113,68,65,0.01285461666811655],[113,68,66,0.014021059407131565],[113,68,67,0.015414852868966319],[113,68,68,0.01624153623904949],[113,68,69,0.014543160893363766],[113,68,70,0.012765964510352166],[113,68,71,0.010962940419169879],[113,68,72,0.009182274875037113],[113,68,73,0.007467104876667136],[113,68,74,0.005855315577421273],[113,68,75,0.004379377535660059],[113,68,76,0.003066223933656651],[113,68,77,0.0019371677798721322],[113,68,78,0.001007858997053244],[113,68,79,2.882811890842372E-4],[113,69,64,0.011613467800550612],[113,69,65,0.012568636993011329],[113,69,66,0.013743955351772754],[113,69,67,0.015150702214447614],[113,69,68,0.016578315014562],[113,69,69,0.014858182739808249],[113,69,70,0.0130521370897488],[113,69,71,0.01121247960199016],[113,69,72,0.00938707836670153],[113,69,73,0.0076190898565369975],[113,69,74,0.005946719888563506],[113,69,75,0.004403024051351312],[113,69,76,0.0030157478132017837],[113,69,77,0.001807206411442396],[113,69,78,7.94204508484482E-4],[113,69,79,-1.2004511508730733E-5],[113,70,64,0.011493871742381574],[113,70,65,0.012449374621404793],[113,70,66,0.013629128472995607],[113,70,67,0.015042988911308588],[113,70,68,0.016658934528460446],[113,70,69,0.015031250169026615],[113,70,70,0.013206362193782031],[113,70,71,0.011341275221763087],[113,70,72,0.009483381169843414],[113,70,73,0.007675669931247542],[113,70,74,0.005956460272945264],[113,70,75,0.00435916968936736],[113,70,76,0.0029121235029067327],[113,70,77,0.0016384033849246146],[113,70,78,5.557353556821417E-4],[113,70,79,-3.235827916694159E-4],[113,71,64,0.011505221407296345],[113,71,65,0.012454881929873029],[113,71,66,0.013631595281296077],[113,71,67,0.015043673401753634],[113,71,68,0.016659521670536182],[113,71,69,0.015116040829095847],[113,71,70,0.013284635538268533],[113,71,71,0.011407097080209743],[113,71,72,0.009530067232463996],[113,71,73,0.007696090124611909],[113,71,74,0.005943320636485909],[113,71,75,0.004305270677423997],[113,71,76,0.0028105936977390355],[113,71,77,0.0014829076679827636],[113,71,78,3.406566470697371E-4],[113,71,79,-6.029890525558176E-4],[113,72,64,0.011617715108155987],[113,72,65,0.012552357559857109],[113,72,66,0.013715524067695425],[113,72,67,0.01511389471199791],[113,72,68,0.01671645177001602],[113,72,69,0.01515701423615029],[113,72,70,0.013333795643418475],[113,72,71,0.011458709478122692],[113,72,72,0.009577275920035105],[113,72,73,0.007731232979033134],[113,72,74,0.005958231765653356],[113,72,75,0.004291567562990297],[113,72,76,0.0027599470944945493],[113,72,77,0.0013872922707336705],[113,72,78,1.9258058737165468E-4],[113,72,79,-8.10277762988708E-4],[113,73,64,0.01180982698540105],[113,73,65,0.01271803481704592],[113,73,66,0.013854906284682608],[113,73,67,0.015225439895934268],[113,73,68,0.016799398302986303],[113,73,69,0.015186385966695495],[113,73,70,0.013387779454878563],[113,73,71,0.011531475434314572],[113,73,72,0.009661441814409241],[113,73,73,0.007818199124158882],[113,73,74,0.006038513744652628],[113,73,75,0.004355123526630231],[113,73,76,0.002796496209554213],[113,73,77,0.001386620955088836],[113,73,78,1.4483320453001657E-4],[113,73,79,-9.14327032948492E-4],[113,74,64,0.012065272854655602],[113,74,65,0.012934102551400931],[113,74,66,0.014030438402884607],[113,74,67,0.015357591245312342],[113,74,68,0.01687531602713776],[113,74,69,0.015227310572942132],[113,74,70,0.013470783259572362],[113,74,71,0.011650462345622269],[113,74,72,0.009808307650501632],[113,74,73,0.007983187464778508],[113,74,74,0.006210582355114537],[113,74,75,0.004522316366825927],[113,74,76,0.002946316036648623],[113,74,77,0.0015063975370785726],[113,74,78,2.2208218212073694E-4],[113,74,79,-8.915595672241558E-4],[113,75,64,0.012370081729677245],[113,75,65,0.013185729594086664],[113,75,66,0.014226504513213422],[113,75,67,0.015494070877894018],[113,75,68,0.01688145091697555],[113,75,69,0.015296976879861361],[113,75,70,0.013600343252539459],[113,75,71,0.011833476524783181],[113,75,72,0.010035877440384353],[113,75,73,0.008244328970072316],[113,75,74,0.006492624526677263],[113,75,75,0.004811316874100929],[113,75,76,0.003227488108889348],[113,75,77,0.0017645410191733338],[113,75,78,4.42012050748465E-4],[113,75,79,-7.245939656517832E-4],[113,76,64,0.012709778408781678],[113,76,65,0.013458198196315465],[113,76,66,0.014428265154750203],[113,76,67,0.015620088200711372],[113,76,68,0.01691315112448816],[113,76,69,0.015409610244216353],[113,76,70,0.01379033046686619],[113,76,71,0.012094021540811234],[113,76,72,0.01035730501177439],[113,76,73,0.008614469688808366],[113,76,74,0.006897238957871739],[113,76,75,0.0052345503045429335],[113,76,76,0.003652347357377661],[113,76,77,0.002173384711558287],[113,76,78,8.170457389390281E-4],[113,76,79,-4.0082646455494677E-4],[113,77,64,0.013066682561593025],[113,77,65,0.01373415197792865],[113,77,66,0.014618857926471633],[113,77,67,0.015719495839240566],[113,77,68,0.0169855996390482],[113,77,69,0.015579376228278742],[113,77,70,0.014053854633579643],[113,77,71,0.012444175123546173],[113,77,72,0.010783713007584513],[113,77,73,0.009103898418261635],[113,77,74,0.007434037814744707],[113,77,75,0.005801137437533112],[113,77,76,0.004229728922395996],[113,77,77,0.0027416972567114377],[113,77,78,0.0013561112341958885],[113,77,79,8.905653421329782E-5],[113,78,64,0.01341732977080529],[113,78,65,0.01399096392517345],[113,78,66,0.014776715487442492],[113,78,67,0.015772059685633524],[113,78,68,0.01695387051326467],[113,78,69,0.0158231800440839],[113,78,70,0.014406071422912625],[113,78,71,0.012897379259383432],[113,78,72,0.01132693723910846],[113,78,73,0.009723014281308963],[113,78,74,0.008112205222790539],[113,78,75,0.006519311493260398],[113,78,76,0.004967211848250923],[113,78,77,0.0034767232330994153],[113,78,78,0.002066451855257747],[113,78,79,7.526345423419129E-4],[113,79,64,0.013749909602071229],[113,79,65,0.014217876296048955],[113,79,66,0.014892177915618489],[113,79,67,0.015769292482241917],[113,79,68,0.016827960204756996],[113,79,69,0.016147150457740508],[113,79,70,0.014852175306805156],[113,79,71,0.013458144966269693],[113,79,72,0.011991115304048958],[113,79,73,0.010475935564568115],[113,79,74,0.008936223851507087],[113,79,75,0.00739431902424647],[113,79,76,0.005871208891484146],[113,79,77,0.004386434629163293],[113,79,78,0.0029579713892378375],[113,79,79,0.0016020851003230466],[113,80,64,0.01411829804035652],[113,80,65,0.01446934385348133],[113,80,66,0.01501953308243364],[113,80,67,0.01576452099885136],[113,80,68,0.016684915805140976],[113,80,69,0.01650262417659236],[113,80,70,0.015347362732446277],[113,80,71,0.014086574439760044],[113,80,72,0.012742271696379292],[113,80,73,0.011335561569624182],[113,80,74,0.009886726402055462],[113,80,75,0.008415265617597787],[113,80,76,0.006939898376331212],[113,80,77,0.005478526811350308],[113,80,78,0.004048159660964432],[113,80,79,0.0026647961833103874],[113,81,64,0.01457570824909829],[113,81,65,0.014799513501626635],[113,81,66,0.015213154265943513],[113,81,67,0.015811584763604242],[113,81,68,0.016577195737490384],[113,81,69,0.016839520946636776],[113,81,70,0.015844886380814407],[113,81,71,0.014740272800261509],[113,81,72,0.013543361275892412],[113,81,73,0.01227113884204349],[113,81,74,0.01094010873166292],[113,81,75,0.009566444986965643],[113,81,76,0.008166090796226072],[113,81,77,0.006754800039034287],[113,81,78,0.005348121647895816],[113,81,79,0.00396132651233047],[113,82,64,0.015156049396988332],[113,82,65,0.01524374970923709],[113,82,66,0.015509414817782466],[113,82,67,0.015947382159752888],[113,82,68,0.016541662861216735],[113,82,69,0.01712172220145739],[113,82,70,0.01631004684604723],[113,82,71,0.015386722300014534],[113,82,72,0.01436481945972517],[113,82,73,0.0132568108668427],[113,82,74,0.012074937489160144],[113,82,75,0.010831501540991],[113,82,76,0.009539084327295364],[113,82,77,0.008210688279000268],[113,82,78,0.006859802523355375],[113,82,79,0.005500391501118021],[113,83,64,0.0158764641051411],[113,83,65,0.01582106941801812],[113,83,66,0.015928987924180908],[113,83,67,0.016193999109959396],[113,83,68,0.016601507210801898],[113,83,69,0.01713724289900904],[113,83,70,0.01671876583313983],[113,83,71,0.01600213701780676],[113,83,72,0.015183711927396213],[113,83,73,0.0142710699566776],[113,83,74,0.013271704980887521],[113,83,75,0.012193482764055998],[113,83,76,0.011045003271040004],[113,83,77,0.00983586666885897],[113,83,78,0.008576842034972377],[113,83,79,0.007279938012694322],[113,84,64,0.016739782497734598],[113,84,65,0.016536496956174058],[113,84,66,0.016479070845372475],[113,84,67,0.016560768139114845],[113,84,68,0.016768106152402405],[113,84,69,0.01708982556438733],[113,84,70,0.01705620953866173],[113,84,71,0.016570361011689967],[113,84,72,0.015982922094837582],[113,84,73,0.015296242584297615],[113,84,74,0.01451261476980201],[113,84,75,0.01363492140794259],[113,84,76,0.012667167280058681],[113,84,77,0.011614892671253159],[113,84,78,0.010485467399108325],[113,84,79,0.00928826430224348],[113,85,64,0.016565439962716935],[113,85,65,0.016982179842217532],[113,85,66,0.017155527552866586],[113,85,67,0.01704625195165484],[113,85,68,0.017042816382074246],[113,85,69,0.017136495859595518],[113,85,70,0.017315464555208264],[113,85,71,0.017081811801063003],[113,85,72,0.016750377733634796],[113,85,73,0.01631800902828948],[113,85,74,0.015781398371490764],[113,85,75,0.015137947368387054],[113,85,76,0.014386490779880717],[113,85,77,0.01352787991215243],[113,85,78,0.012565423337165411],[113,85,79,0.011505183466972893],[113,86,64,0.015506305195548966],[113,86,65,0.016074734121963627],[113,86,66,0.016537034124212712],[113,86,67,0.016900905962064568],[113,86,68,0.017178621273081708],[113,86,69,0.0172738673340017],[113,86,70,0.017205262620218473],[113,86,71,0.017217087867815572],[113,86,72,0.017316601566884363],[113,86,73,0.017324958806907792],[113,86,74,0.01706316394565482],[113,86,75,0.01668442958078661],[113,86,76,0.016181912382854293],[113,86,77,0.015551204000129437],[113,86,78,0.014790938103027637],[113,86,79,0.013903228866743982],[113,87,64,0.014356844528493833],[113,87,65,0.015074182326747523],[113,87,66,0.015709864113516225],[113,87,67,0.016272023219793336],[113,87,68,0.01677284534520495],[113,87,69,0.017217632585019838],[113,87,70,0.017158590809534545],[113,87,71,0.016889095279536907],[113,87,72,0.016696382080253383],[113,87,73,0.016595151602043695],[113,87,74,0.01660082854253131],[113,87,75,0.016728207522121365],[113,87,76,0.016990283480780244],[113,87,77,0.017397270231330662],[113,87,78,0.01713172440727965],[113,87,79,0.016448900056839424],[113,88,64,0.01314884873023949],[113,88,65,0.014009760947115214],[113,88,66,0.014814999325477531],[113,88,67,0.015573108783993888],[113,88,68,0.01629655115533287],[113,88,69,0.01698975804240997],[113,88,70,0.017174046004571994],[113,88,71,0.016615334917295027],[113,88,72,0.016119282125945274],[113,88,73,0.015706403999533262],[113,88,74,0.015398400348888657],[113,88,75,0.015216531121494903],[113,88,76,0.015180201083956402],[113,88,77,0.015305756535575522],[113,88,78,0.01560549753806833],[113,88,79,0.01608690860076839],[113,89,64,0.011917588459673315],[113,89,65,0.012914307692489331],[113,89,66,0.01388231289322455],[113,89,67,0.014830542071293498],[113,89,68,0.01577208471153286],[113,89,69,0.01671107570822674],[113,89,70,0.017238987404877858],[113,89,71,0.016388707900719536],[113,89,72,0.015584119395702497],[113,89,73,0.014851469420626108],[113,89,74,0.014218750906495256],[113,89,75,0.01371380060754564],[113,89,76,0.013362628378525917],[113,89,77,0.013187982050391999],[113,89,78,0.013208152021851627],[113,89,79,0.013436019070431042],[113,90,64,0.010699964986711767],[113,90,65,0.011822488921379593],[113,90,66,0.012943671033803613],[113,90,67,0.014072827110324043],[113,90,68,0.015224004311739233],[113,90,69,0.016401594140989302],[113,90,70,0.017338584065697823],[113,90,71,0.01620005911538195],[113,90,72,0.015087879564151157],[113,90,73,0.014033844853270824],[113,90,74,0.013072149659700747],[113,90,75,0.012237199699670454],[113,90,76,0.011561680592260343],[113,90,77,0.011074885248647118],[113,90,78,0.010801304559151511],[113,90,79,0.010759485469687824],[113,91,64,0.0095327746919028],[113,91,65,0.01076913685128632],[113,91,66,0.01203136529464864],[113,91,67,0.013329142345754288],[113,91,68,0.014677771669951795],[113,91,69,0.016082417748591857],[113,91,70,0.017456766130683032],[113,91,71,0.016038913676500868],[113,91,72,0.014626217003938458],[113,91,73,0.013255759155440312],[113,91,74,0.011967738570629665],[113,91,75,0.010803003057237128],[113,91,76,0.00980085806532198],[113,91,77,0.008997155460521818],[113,91,78,0.008422668234238399],[113,91,79,0.008101755843712666],[113,92,64,0.00845109020595038],[113,92,65,0.009787699364825472],[113,92,66,0.011176651832709363],[113,92,67,0.012627989963617109],[113,92,68,0.014158533390154047],[113,92,69,0.01577468454297465],[113,92,70,0.017465391742031672],[113,92,71,0.015894153610444932],[113,92,72,0.014193904992909375],[113,92,73,0.012518377934951825],[113,92,74,0.010913476485657762],[113,92,75,0.00942624916260346],[113,92,76,0.00810244126581833],[113,92,77,0.006984348425482907],[113,92,78,0.006108977486646677],[113,92,79,0.005506520028203374],[113,93,64,0.007486760779274281],[113,93,65,0.0089088049668584],[113,93,66,0.010408400206489508],[113,93,67,0.011995947098205218],[113,93,68,0.013689994981418482],[113,93,69,0.015498586118174382],[113,93,70,0.017410322679066982],[113,93,71,0.015754633305272023],[113,93,72,0.01378523427504753],[113,93,73,0.011821965161773147],[113,93,74,0.009916047053168744],[113,93,75,0.008120381733892958],[113,93,76,0.006486857264233191],[113,93,77,0.005063974042751929],[113,93,78,0.0038947981098937617],[113,93,79,0.003015247586606486],[113,94,64,0.0066670342193758175],[113,94,65,0.00815894520357647],[113,94,66,0.009751853929232397],[113,94,67,0.01145652106442515],[113,94,68,0.013293389410535459],[113,94,69,0.015272471659542885],[113,94,70,0.01738242275636984],[113,94,71,0.015609732406224413],[113,94,72,0.01339435893506065],[113,94,73,0.011166000775706909],[113,94,74,0.008980729769957068],[113,94,75,0.006896859562850054],[113,94,76,0.004972017875360733],[113,94,77,0.003260556829472281],[113,94,78,0.0018113087141069276],[113,94,79,6.656936654430603E-4],[113,95,64,0.006013302498947913],[113,95,65,0.00755927662742607],[113,95,66,0.009227504815291188],[113,95,67,0.011029110557725489],[113,95,68,0.012986542004559327],[113,95,69,0.015112037628597625],[113,95,70,0.017394663431633157],[113,95,71,0.015449844948571552],[113,95,72,0.013015588638167609],[113,95,73,0.010549253619265819],[113,95,74,0.008111233776531172],[113,95,75,0.005764734693327798],[113,95,76,0.0035726296759050805],[113,95,77,0.0015946695771074946],[113,95,78,-1.1494559212477208E-4],[113,95,79,-0.0015096262366893424],[113,96,64,0.005539972919297688],[113,96,65,0.007124544180450758],[113,96,66,0.008850082950370278],[113,96,67,0.01072807457565408],[113,96,68,0.012783033344091792],[113,96,69,0.015029604615521984],[113,96,70,0.017457578489808452],[113,96,71,0.01526680362900233],[113,96,72,0.012643626372274003],[113,96,73,0.009969809087994348],[113,96,74,0.0073094940614752335],[113,96,75,0.004730198874587134],[113,96,76,0.002299476105086532],[113,96,77,8.194067867114029E-5],[113,96,78,-0.0018633265776284112],[113,96,79,-0.003484991634349541],[113,97,64,0.005253466510717827],[113,97,65,0.006862127672084738],[113,97,66,0.00862766392888094],[113,97,67,0.010561910639870954],[113,97,68,0.012691461628116801],[113,97,69,0.015033482709056587],[113,97,70,0.0175787551291084],[113,97,71,0.015054238218387563],[113,97,72,0.012273750909667876],[113,97,73,0.009425050948709332],[113,97,74,0.006575429772081346],[113,97,75,0.0037960982406342455],[113,97,76,0.0011586718543368077],[113,97,77,-0.0012679644179866545],[113,97,78,-0.0034204026300899077],[113,97,79,-0.005243061644057805],[113,98,64,0.005151345163059443],[113,98,65,0.006771212844797616],[113,98,66,0.008560894827304828],[113,98,67,0.01053254373429184],[113,98,68,0.012714805842077159],[113,98,69,0.015127426600809282],[113,98,70,0.01756801175642638],[113,98,71,0.014807867213607747],[113,98,72,0.01190194327997106],[113,98,73,0.00891159683036242],[113,98,74,0.005906664362808527],[113,98,75,0.002961416182330546],[113,98,76,1.508897504125446E-4],[113,98,77,-0.0024523871925772804],[113,98,78,-0.004781274200616953],[113,98,79,-0.006776487925683702],[113,99,64,0.005221568805044146],[113,99,65,0.006842088351416854],[113,99,66,0.008642340220397905],[113,99,67,0.010634727223212907],[113,99,68,0.01284989092195801],[113,99,69,0.0153101815172558],[113,99,70,0.0173647842132583],[113,99,71,0.014525721914693717],[113,99,72,0.011524956615671733],[113,99,73,0.008425186942700377],[113,99,74,0.005298207344886564],[113,99,75,0.002220724393006404],[113,99,76,-7.294396660604223E-4],[113,99,77,-0.003476745048916434],[113,99,78,-0.0059509243177840315],[113,99,79,-0.008089555143672772],[113,100,64,0.005441883789056018],[113,100,65,0.007055569810716699],[113,100,66,0.008855949396606718],[113,100,67,0.010855556872128897],[113,100,68,0.013086955977834665],[113,100,69,0.01557512095739104],[113,100,70,0.01710089448077825],[113,100,71,0.014208302196100793],[113,100,72,0.011140328796398372],[113,100,73,0.007960525624786573],[113,100,74,0.004742097429647963],[113,100,75,0.001563602080795994],[113,100,76,-0.001494955667560583],[113,100,77,-0.004355624920701091],[113,100,78,-0.006945593565647182],[113,100,79,-0.009199848152484444],[113,101,64,0.005779663429431031],[113,101,65,0.007382482972861306],[113,101,66,0.009176178570860992],[113,101,67,0.01117322920202297],[113,101,68,0.01340804699905531],[113,101,69,0.01590827618771476],[113,101,70,0.0167862187993429],[113,101,71,0.013861236923490897],[113,101,72,0.010749351090647683],[113,101,73,0.00751452027924465],[113,101,74,0.004230863789320951],[113,101,75,9.782622520275008E-4],[113,101,76,-0.0021616415208501874],[113,101,77,-0.005109030044993809],[113,101,78,-0.0077890763599025165],[113,101,79,-0.010134677368855326],[113,102,64,0.006198443932775457],[113,102,65,0.007785771175915403],[113,102,66,0.009565551890576465],[113,102,67,0.01154999948867445],[113,102,68,0.013775279840116146],[113,102,69,0.016271754522368384],[113,102,70,0.016458537261294363],[113,102,71,0.013521973225704625],[113,102,72,0.010388903764942127],[113,102,73,0.007123200549712365],[113,102,74,0.003799351534981971],[113,102,75,4.979848653661668E-4],[113,102,76,-0.002698203110176335],[113,102,77,-0.005708103608217789],[113,102,78,-0.008455424002344123],[113,102,79,-0.010871479408655743],[113,103,64,0.006667136770587874],[113,103,65,0.008231301926280892],[113,103,66,0.009987050865666517],[113,103,67,0.011946147443345538],[113,103,68,0.014146370286832256],[113,103,69,0.016620795122550658],[113,103,70,0.016165030950540827],[113,103,71,0.013239953937116508],[113,103,72,0.010110494827197837],[113,103,73,0.006839854257983657],[113,103,74,0.0035022437462785398],[113,103,75,1.783621751080332E-4],[113,103,76,-0.0030487218229722887],[113,103,77,-0.00609726925354288],[113,103,78,-0.008890140732582747],[113,103,79,-0.011357626995589279],[113,104,64,0.0071611495952255255],[113,104,65,0.008692175476458128],[113,104,66,0.010411669256154383],[113,104,67,0.012330800991112185],[113,104,68,0.014488769949552014],[113,104,69,0.01692128768172567],[113,104,70,0.01594132010984811],[113,104,71,0.013052192842510954],[113,104,72,0.009952415753683172],[113,104,73,0.006703885421290487],[113,104,74,0.0033798306144004614],[113,104,75,6.02774928533191E-5],[113,104,76,-0.0031720807234542196],[113,104,77,-0.006235597155887357],[113,104,78,-0.009052956418745591],[113,104,79,-0.011554021333754914],[113,105,64,0.007663226918066646],[113,105,65,0.009149548037063845],[113,105,66,0.010819214391419576],[113,105,67,0.012682706687541219],[113,105,68,0.01478039971171193],[113,105,69,0.01715047034588891],[113,105,70,0.015810794048771087],[113,105,71,0.012982619619558584],[113,105,72,0.009939084840691512],[113,105,73,0.0067401366093014555],[113,105,74,0.003457289616589159],[113,105,75,1.6912111329139604E-4],[113,105,76,-0.003042835003544928],[113,105,77,-0.006097782310739821],[113,105,78,-0.008918932836912292],[113,105,79,-0.011436344665330556],[113,106,64,0.00816476339146683],[113,106,65,0.009593861464009795],[113,106,66,0.011199444864048247],[113,106,67,0.01299126308538337],[113,106,68,0.015010568438676134],[113,106,69,0.017297729637601282],[113,106,70,0.015783928187375465],[113,106,71,0.013041506427541153],[113,106,72,0.010080570912403185],[113,106,73,0.006958492902267013],[113,106,74,0.0037443490648786004],[113,106,75,5.144897055450555E-4],[113,106,76,-0.0026515028445673544],[113,106,77,-0.005674453325510729],[113,106,78,-0.008478818868985999],[113,106,79,-0.010995490369002036],[113,107,64,0.008667571349798899],[113,107,65,0.010026524533631393],[113,107,66,0.011553654522111267],[113,107,67,0.013257992417797654],[113,107,68,0.015181318790781599],[113,107,69,0.017365812286136987],[113,107,70,0.015857208890741884],[113,107,71,0.013224526765949953],[113,107,72,0.01037177862912722],[113,107,73,0.007353181510710033],[113,107,74,0.004234685818104924],[113,107,75,0.001089662372484365],[113,107,76,-0.002005033666121446],[113,107,77,-0.004972609878645193],[113,107,78,-0.007739483619912803],[113,107,79,-0.010238019003057711],[113,108,64,0.009186104531169326],[113,108,65,0.010462047869660233],[113,108,66,0.011896704958664735],[113,108,67,0.013498452925005592],[113,108,68,0.015309202582873611],[113,108,69,0.017372451497736436],[113,108,70,0.016011663502838842],[113,108,71,0.013511443998191788],[113,108,72,0.010791292830552541],[113,108,73,0.007901764590739466],[113,108,74,0.00490505485647505],[113,108,75,0.0018708513122284998],[113,108,76,-0.0011274555212215838],[113,108,77,-0.004016190227002053],[113,108,78,-0.0067244283862212],[113,108,79,-0.009186640710514612],[113,109,64,0.009750139658450634],[113,109,65,0.010930634331509958],[113,109,66,0.012259508432988267],[113,109,67,0.01374459387873196],[113,109,68,0.015427487854027153],[113,109,69,0.017352409918569723],[113,109,70,0.016210993268396732],[113,109,71,0.013864427209505068],[113,109,72,0.011299879610964068],[113,109,73,0.00856382303414122],[113,109,74,0.0057141486399545464],[113,109,75,0.0028162252090906726],[113,109,76,-6.07032382875562E-5],[113,109,77,-0.0028467700233163673],[113,109,78,-0.005474378333679794],[113,109,79,-0.007880724378037034],[113,110,64,0.010407917347071662],[113,110,65,0.011481226450257037],[113,110,66,0.012691962924549478],[113,110,67,0.014047555116260204],[113,110,68,0.015588799561650294],[113,110,69,0.017359941289558155],[113,110,70,0.016399307084970716],[113,110,71,0.014225992317284995],[113,110,72,0.01183864206293424],[113,110,73,0.009279329236981677],[113,110,74,0.006601184375732342],[113,110,75,0.0038647036590220662],[113,110,76,0.001134371235577417],[113,110,77,-0.0015243935961629874],[113,110,78,-0.0040479546738722925],[113,110,79,-0.0063768339178361215],[113,111,64,0.011222350202292307],[113,111,65,0.012177716630037102],[113,111,66,0.013258987176684339],[113,111,67,0.014473334902211088],[113,111,68,0.01586022649459783],[113,111,69,0.017463152069853414],[113,111,70,0.016507672339499697],[113,111,71,0.014526609015741916],[113,111,72,0.012337798640470948],[113,111,73,0.009978680250945],[113,111,74,0.007497241048571094],[113,111,75,0.004948611714913156],[113,111,76,0.002391948981562836],[113,111,77,-1.1238475978755462E-4],[113,111,78,-0.002505335818125163],[113,111,79,-0.00473135934129216],[113,112,64,0.012235822002548505],[113,112,65,0.013064068355699477],[113,112,66,0.014005584624598295],[113,112,67,0.015067395934914319],[113,112,68,0.016287073691495357],[113,112,69,0.01770653185909789],[113,112,70,0.016493130596490612],[113,112,71,0.014725528935712759],[113,112,72,0.012759522521228315],[113,112,73,0.01062767269145205],[113,112,74,0.00837241609088693],[113,112,75,0.006042985423959755],[113,112,76,0.003692588038343301],[113,112,77,0.0013758512423739694],[113,112,78,-8.534574523931301E-4],[113,112,79,-0.0029444276846535586],[113,113,64,0.013466285762815918],[113,113,65,0.014160242821143578],[113,113,66,0.014953240064710034],[113,113,67,0.015852226330646747],[113,113,68,0.01689229976294804],[113,113,69,0.017664277201584175],[113,113,70,0.016333449334429175],[113,113,71,0.014801705157339501],[113,113,72,0.013084513526845422],[113,113,73,0.011209308278587791],[113,113,74,0.00921255360134168],[113,113,75,0.0071370272920641365],[113,113,76,0.005029330424797682],[113,113,77,0.002937631345757613],[113,113,78,9.096512829929721E-4],[113,113,79,-0.0010091017639504176],[113,114,64,0.014913230367359509],[113,114,65,0.01546800708882246],[113,114,66,0.016105724489968158],[113,114,67,0.016833306505578693],[113,114,68,0.017682812827260037],[113,114,69,0.017113662591478934],[113,114,70,0.016019694337429283],[113,114,71,0.014745590216744306],[113,114,72,0.013302909200735744],[113,114,73,0.011713729562280338],[113,114,74,0.010008142706056211],[113,114,75,0.00822193310071878],[113,114,76,0.006394451658905666],[113,114,77,0.004566689384307948],[113,114,78,0.0027795575753821887],[113,114,79,0.0010723803463910313],[113,115,64,0.016560328479509764],[113,115,65,0.016973494967136116],[113,115,66,0.01745153912261545],[113,115,67,0.017639722902052662],[113,115,68,0.017085449685846278],[113,115,69,0.016396013799168545],[113,115,70,0.015554597266896026],[113,115,71,0.014557788023913939],[113,115,72,0.013413246125645106],[113,115,73,0.01213750990056312],[113,115,74,0.010753948954861673],[113,115,75,0.009290870522630605],[113,115,76,0.007779785230313576],[113,115,77,0.006253837914514731],[113,115,78,0.0047464087001507565],[113,115,79,0.003289889114651166],[113,116,64,0.016979923765980127],[113,116,65,0.016812997112103406],[113,116,66,0.01659854623010507],[113,116,67,0.016329582502080064],[113,116,68,0.01598167065170886],[113,116,69,0.015527269768575384],[113,116,70,0.014950921003939294],[113,116,71,0.014247694696641514],[113,116,72,0.013421402314807176],[113,116,73,0.012482918084483636],[113,116,74,0.011448615674387402],[113,116,75,0.010338924984220411],[113,116,76,0.009177013756563065],[113,116,77,0.007987598401233583],[113,116,78,0.0067958880883857405],[113,116,79,0.0056266658349890435],[113,117,64,0.015051361035393531],[113,117,65,0.01502420173828728],[113,117,66,0.01497122002051305],[113,117,67,0.014885316771594857],[113,117,68,0.014746492252006237],[113,117,69,0.014532548385870293],[113,117,70,0.014229823889659968],[113,117,71,0.01383212922663652],[113,117,72,0.013339521356207522],[113,117,73,0.012757158032540782],[113,117,74,0.01209423543054292],[113,117,75,0.011363012650436623],[113,117,76,0.01057792642177052],[113,117,77,0.009754799095297768],[113,117,78,0.00891014277833369],[113,117,79,0.008060562237780023],[113,118,64,0.013040114168234753],[113,118,65,0.013147454905188179],[113,118,66,0.013252114300771493],[113,118,67,0.013346824577936709],[113,118,68,0.01341632696820188],[113,118,69,0.013444284844550871],[113,118,70,0.013419223911700062],[113,118,71,0.01333395483445852],[113,118,72,0.013184918949962484],[113,118,73,0.012971583958059528],[113,118,74,0.012695891752995968],[113,118,75,0.012361760425798915],[113,118,76,0.011974642331830024],[113,118,77,0.011541139982914853],[113,118,78,0.011068681389202487],[113,118,79,0.010565256343672525],[113,119,64,0.011000184280823132],[113,119,65,0.011234353311754217],[113,119,66,0.011490063477263274],[113,119,67,0.011759809691443461],[113,119,68,0.012033276334110592],[113,119,69,0.012300380797774955],[113,119,70,0.012552163808968392],[113,119,71,0.012780691811798153],[113,119,72,0.012978972439757064],[113,119,73,0.013140891393074443],[113,119,74,0.01326117127322196],[113,119,75,0.01333535288239932],[113,119,76,0.013359799453369615],[113,119,77,0.013331724234370736],[113,119,78,0.013249241815415818],[113,119,79,0.01311144354667378],[113,120,64,0.008988807271655873],[113,120,65,0.00933991952521366],[113,120,66,0.009737466490134754],[113,120,67,0.010173627008303827],[113,120,68,0.010643118787522571],[113,120,69,0.011142365324910032],[113,120,70,0.011665177991976776],[113,120,71,0.012203122592631063],[113,120,72,0.012745993900539952],[113,120,73,0.013282284432033236],[113,120,74,0.013799646425609068],[113,120,75,0.014285346040813864],[113,120,76,0.014726708834864672],[113,120,77,0.015111555624849895],[113,120,78,0.015428627896564342],[113,120,79,0.015668001977973516],[113,121,64,0.007064079043038297],[113,121,65,0.007520289781223481],[113,121,66,0.008048058450821812],[113,121,67,0.008639160490233378],[113,121,68,0.00929332018924268],[113,121,69,0.010013568651158652],[113,121,70,0.010796662103468177],[113,121,71,0.011633889738667035],[113,121,72,0.012512087306047786],[113,121,73,0.013414619537797974],[113,121,74,0.014322328857851483],[113,121,75,0.015214447943470676],[113,121,76,0.016069473837513355],[113,121,77,0.016866001443286316],[113,121,78,0.0175835143731903],[113,121,79,0.018203131266423825],[113,122,64,0.005282630496502382],[113,122,65,0.005830447504395271],[113,122,66,0.006474722446441728],[113,122,67,0.007206733798349356],[113,122,68,0.008031067937340635],[113,122,69,0.008957309473323778],[113,122,70,0.009985245972754532],[113,122,71,0.01110608746911515],[113,122,72,0.012303990261077221],[113,122,73,0.013557526230915882],[113,122,74,0.01484109369239662],[113,122,75,0.016126265971978467],[113,122,76,0.017383074130753354],[113,122,77,0.01812868102551489],[113,122,78,0.017097844597705407],[113,122,79,0.016180622295157945],[113,123,64,0.0036973531680677255],[113,123,65,0.004322003434745903],[113,123,66,0.005067342399605122],[113,123,67,0.005924054492698752],[113,123,68,0.006901329508596339],[113,123,69,0.008015096661019152],[113,123,70,0.009268170647176133],[113,123,71,0.010651847309891828],[113,123,72,0.01214790074458925],[113,123,73,0.013730504960843654],[113,123,74,0.015368074774971981],[113,123,75,0.017025020870233123],[113,123,76,0.017992622379547758],[113,123,77,0.016493806002310755],[113,123,78,0.015088057673553146],[113,123,79,0.013811361602444491],[113,124,64,0.0023551762496797453],[113,124,65,0.003041023129925175],[113,124,66,0.0038706977621056995],[113,124,67,0.004834192566237494],[113,124,68,0.005944936165872313],[113,124,69,0.0072248460206780765],[113,124,70,0.00867967011513819],[113,124,71,0.010300918382830619],[113,124,72,0.012068289270561215],[113,124,73,0.013952002434617859],[113,124,74,0.015915031039112973],[113,124,75,0.017915227443734003],[113,124,76,0.016775471586488504],[113,124,77,0.01492118766174132],[113,124,78,0.013165190846578892],[113,124,79,0.011551236022228618],[113,125,64,0.0012948956278996855],[113,125,65,0.0020259025014572724],[113,125,66,0.0029224007144541294],[113,125,67,0.003973593982415974],[113,125,68,0.0051966924792231535],[113,125,69,0.0066191127293622875],[113,125,70,0.008249358267093018],[113,125,71,0.010079242801058014],[113,125,72,0.01208669683388031],[113,125,73,0.01423846465428427],[113,125,74,0.01649268410709894],[113,125,75,0.017821139917675238],[113,125,76,0.015596287567770786],[113,125,77,0.013420104042311656],[113,125,78,0.011345714945718642],[113,125,79,0.009423954778708405],[113,126,64,5.450554598679695E-4],[113,126,65,0.0013052919354526512],[113,126,66,0.0022508764401007442],[113,126,67,0.0033701297886738015],[113,126,68,0.0046835122197480756],[113,126,69,0.006223339966426171],[113,126,70,0.008000621573441778],[113,126,71,0.010007526582324176],[113,126,72,0.012220518968365119],[113,126,73,0.01460336788912653],[113,126,74,0.017110027237704717],[113,126,75,0.01695962851564929],[113,126,76,0.014456481280008194],[113,126,77,0.01199768704174351],[113,126,78,0.009642701456006045],[113,126,79,0.007448637607236416],[113,127,64,1.2188269951664756E-4],[113,127,65,8.96069444106291E-4],[113,127,66,0.0018733869432512706],[113,127,67,0.0030411812839039403],[113,127,68,0.004422581098338392],[113,127,69,0.006054124193391924],[113,127,70,0.007949017891483121],[113,127,71,0.010099806437591171],[113,127,72,0.012481776203097261],[113,127,73,0.015056227782274983],[113,127,74,0.01777360571961615],[113,127,75,0.01609443034256419],[113,127,76,0.013356702891249144],[113,127,77,0.010658674599051166],[113,127,78,0.008065219524915613],[113,127,79,0.005638850828100003],[113,128,64,2.7274883761259198E-5],[113,128,65,8.01363193599745E-4],[113,128,66,0.0017940987822323655],[113,128,67,0.002991761626137309],[113,128,68,0.004419546736401343],[113,128,69,0.006117497455788784],[113,128,70,0.008100681747103131],[113,128,71,0.010362012737468588],[113,128,72,0.012875871161548959],[113,128,73,0.015601586763560585],[113,128,74,0.018116239499316556],[113,128,75,0.015223738837763998],[113,128,76,0.012296973067932409],[113,128,77,0.00940519973628897],[113,128,78,0.0066177681369294986],[113,128,79,0.00400167456125253],[113,129,64,2.468413888227745E-4],[113,129,65,0.0010086236566354306],[113,129,66,0.0020021949962806033],[113,129,67,0.0032126741771965335],[113,129,68,0.004666736172235175],[113,129,69,0.0064072270050865646],[113,129,70,0.008450736370770899],[113,129,71,0.010790528904042928],[113,129,72,0.01340033250540718],[113,129,73,0.01623797991141758],[113,129,74,0.017376057246719697],[113,129,75,0.014347550462526419],[113,129,76,0.011276850606893273],[113,129,77,0.008236616669485806],[113,129,78,0.005299743774408539],[113,129,79,0.002536801512076067],[113,130,64,7.479982707854306E-4],[113,130,65,0.001487745543624876],[113,130,66,0.0024700314122873225],[113,130,67,0.0036787077937577486],[113,130,68,0.005141401124875748],[113,130,69,0.006903132464106939],[113,130,70,0.008981712701478786],[113,130,71,0.011370747420182294],[113,130,72,0.01404354588144033],[113,130,73,0.0169568793761626],[113,130,74,0.016591795366269976],[113,130,75,0.013468184313063522],[113,130,76,0.010295636507359963],[113,130,77,0.007149364172297841],[113,130,78,0.004104943843821126],[113,130,79,0.0012356677074421868],[113,131,64,0.0014781167118798999],[113,131,65,0.0021892395754291435],[113,131,66,0.003151337429337959],[113,131,67,0.004346869189049216],[113,131,68,0.005803991156847739],[113,131,69,0.007569420685343374],[113,131,70,0.009661975506470804],[113,131,71,0.012075622592444334],[113,131,72,0.014783471985168802],[113,131,73,0.017741617445037446],[113,131,74,0.015774489732728384],[113,131,75,0.012590835170833384],[113,131,76,0.00935261456777482],[113,131,77,0.006136866351774144],[113,131,78,0.0030211061089181054],[113,131,79,8.061551165557266E-5],[113,132,64,0.0023627193458914688],[113,132,65,0.003042440478074833],[113,132,66,0.003979439758831115],[113,132,67,0.005154622874860825],[113,132,68,0.0065964168859759895],[113,132,69,0.00835299133766339],[113,132,70,0.010444099616547594],[113,132,71,0.012864152113201069],[113,132,72,0.015586272052105856],[113,132,73,0.018025118251759006],[113,132,74,0.01494175266023832],[113,132,75,0.011724276797086586],[113,132,76,0.00844745712874372],[113,132,77,0.005189610344018122],[113,132,78,0.0020296332218301977],[113,132,79,-9.55754048034263E-4],[113,133,64,0.0033062810526009005],[113,133,65,0.00395492012037708],[113,133,66,0.004865278589949685],[113,133,67,0.006016494130423707],[113,133,68,0.007437168426382627],[113,133,69,0.009176936543988943],[113,133,70,0.011256587729300896],[113,133,71,0.013671150353626836],[113,133,72,0.016393997723661496],[113,133,73,0.017229859733164682],[113,133,74,0.014134486374866688],[113,133,75,0.01089977714054761],[113,133,76,0.00760125341023541],[113,133,77,0.004318131177945667],[113,133,78,0.001130312430397666],[113,133,79,-0.0018844076515246969],[113,134,64,0.0042144223602462675],[113,134,65,0.004832846542380577],[113,134,66,0.005715855242104266],[113,134,67,0.0068405571973041285],[113,134,68,0.008235693607398419],[113,134,69,0.009952504718176776],[113,134,70,0.012013020322511598],[113,134,71,0.014413142077373648],[113,134,72,0.017126787516663956],[113,134,73,0.016519732488615824],[113,134,74,0.013423226986771501],[113,134,75,0.010182132948536067],[113,134,76,0.006872384345706147],[113,134,77,0.00357376598053571],[113,134,78,3.668746518887096E-4],[113,134,79,-0.0026697021672187874],[113,135,64,0.005011784163003116],[113,135,65,0.005601162184379992],[113,135,66,0.00645666568121809],[113,135,67,0.007553115125392652],[113,135,68,0.008919390981497011],[113,135,69,0.010608534383688776],[113,135,70,0.012644069238157533],[113,135,71,0.015023065568852733],[113,135,72,0.01772030885889684],[113,135,73,0.01595588412605488],[113,135,74,0.01286542342675056],[113,135,75,0.009624611456121897],[113,135,76,0.0063094696131699626],[113,135,77,0.003000050032119972],[113,135,78,-2.2262565331805553E-4],[113,135,79,-0.003279409302386053],[113,136,64,0.005642214553225972],[113,136,65,0.006204076751836972],[113,136,66,0.007032501380751599],[113,136,67,0.008099804131737328],[113,136,68,0.009435028321717871],[113,136,69,0.011093220825997646],[113,136,70,0.013099660029445546],[113,136,71,0.015452883104849994],[113,136,72,0.01812886691797778],[113,136,73,0.015581390929317852],[113,136,74,0.012501216800956887],[113,136,75,0.009264143490757068],[113,136,76,0.00594597626787666],[113,136,77,0.0026267604762591793],[113,136,78,-6.122945082262871E-4],[113,136,79,-0.0036916734991834215],[113,137,64,0.006068129250478291],[113,137,65,0.006604368741082499],[113,137,66,0.007406693654442883],[113,137,67,0.00844477215837695],[113,137,68,0.009747847978005793],[113,137,69,0.011373149851105173],[113,137,70,0.013347943628458238],[113,137,71,0.01567250664932679],[113,137,72,0.018258332150847864],[113,137,73,0.015422355521717989],[113,137,74,0.012354508275549897],[113,137,75,0.009122331032695732],[113,137,76,0.005801134562660623],[113,137,77,0.0024707090849632957],[113,137,78,-7.877590212776812E-4],[113,137,79,-0.003894554384394603],[113,138,64,0.006270251403491356],[113,138,65,0.006783065216453279],[113,138,66,0.0075607320156548885],[113,138,67,0.00857022458500593],[113,138,68,0.00984102957192235],[113,138,69,0.011432675344697253],[113,138,70,0.013374594001051352],[113,138,71,0.015669027113055],[113,138,72,0.018295186162227833],[113,138,73,0.015488759972080551],[113,138,74,0.012433818714701448],[113,138,75,0.009206286937490446],[113,138,76,0.005880729943753409],[113,138,77,0.002536458218041663],[113,138,78,-7.455554553409113E-4],[113,138,79,-0.003885545776593767],[113,139,64,0.006247732276799229],[113,139,65,0.006739501384763104],[113,139,66,0.007494258136611359],[113,139,67,0.008476338692526779],[113,139,68,0.009715511642502775],[113,139,69,0.011273642250637156],[113,139,70,0.013182433398157532],[113,139,71,0.015446248757811582],[113,139,72,0.01804624072811437],[113,139,73,0.015775072897477548],[113,139,74,0.012732938737048368],[113,139,75,0.009509305628760338],[113,139,76,0.006177770206894124],[113,139,77,0.002816959171994648],[113,139,78,-4.925453242046957E-4],[113,139,79,-0.003671071535265562],[113,140,64,0.006018654314173672],[113,140,65,0.006491761482637684],[113,140,66,0.007225436939949439],[113,140,67,0.008181548422240064],[113,140,68,0.009390173794556365],[113,140,69,0.010915456516778284],[113,140,70,0.01279138673423852],[113,140,71,0.015024530240883904],[113,140,72,0.017598109207735396],[113,140,73,0.0162606092036297],[113,140,74,0.013231367938786468],[113,140,75,0.010011363645233924],[113,140,76,0.0066730268632648184],[113,140,77,0.0032941121635935936],[113,140,78,-4.5360046126812953E-5],[113,140,79,-0.003265958527672268],[113,141,64,0.005620918075675022],[113,141,65,0.006077502485978194],[113,141,66,0.006791706337863095],[113,141,67,0.007723200947236207],[113,141,68,0.008902380861586711],[113,141,69,0.010395503506711846],[113,141,70,0.012238766565309424],[113,141,71,0.014440933730226094],[113,141,72,0.016987353929472485],[113,141,73,0.01690964117595212],[113,141,74,0.013894542102293777],[113,141,75,0.010679448991968555],[113,141,76,0.007335449822230782],[113,141,77,0.003939247238580446],[113,141,78,5.701253454420126E-4],[113,141,79,-0.002692886979214917],[113,142,64,0.00511351457406976],[113,142,65,0.005555162168618594],[113,142,66,0.006250907140638132],[113,142,67,0.007158586567492594],[113,142,68,0.008308890578764813],[113,142,69,0.009769916348097842],[113,142,70,0.011579890100794963],[113,142,71,0.013749683473829457],[113,142,72,0.01626675753719804],[113,142,73,0.017671259691438613],[113,142,74,0.014673847267378583],[113,142,75,0.01146771830158155],[113,142,76,0.008122454548044751],[113,142,77,0.004713525436749994],[113,142,78,0.0013192889617231992],[113,142,79,-0.0019818184616071464],[113,143,64,0.00456355049956085],[113,143,65,0.004991286447088945],[113,143,66,0.005668935704123576],[113,143,67,0.006552941229684271],[113,143,68,0.007674237957736111],[113,143,69,0.00910238538016017],[113,143,70,0.010877367002098504],[113,143,71,0.013011993744803546],[113,143,72,0.015495759632580488],[113,143,73,0.018298571482738356],[113,143,74,0.015514742803591816],[113,143,75,0.01232478490568441],[113,143,76,0.008986299845722072],[113,143,77,0.005573334624822145],[113,143,78,0.002163109919591266],[113,143,79,-0.0011667544797686143],[113,144,64,0.003996301154047732],[113,144,65,0.004411725619333099],[113,144,66,0.005072217948294863],[113,144,67,0.005933356615731851],[113,144,68,0.0070262655382695325],[113,144,69,0.008421518053816052],[113,144,70,0.010160518737937869],[113,144,71,0.012257792053455775],[113,144,72,0.014704736688380224],[113,144,73,0.01747326105702571],[113,144,74,0.016386608078869262],[113,144,75,0.013220264435718256],[113,144,76,0.009897110651147853],[113,144,77,0.006489591236653377],[113,144,78,0.0030735798464847993],[113,144,79,-2.743504330700081E-4],[113,145,64,0.0034262469393378],[113,145,65,0.003831706924469572],[113,145,66,0.004476747383656648],[113,145,67,0.005316688527275001],[113,145,68,0.006382786999293327],[113,145,69,0.007746126818645338],[113,145,70,0.009449145834603066],[113,145,71,0.011507809425343681],[113,145,72,0.013915250764846074],[113,145,73,0.01664529980825385],[113,145,74,0.01726668492413178],[113,145,75,0.014131063714518496],[113,145,76,0.010831671214030775],[113,145,77,0.007439183160610195],[113,145,78,0.004027924277846751],[113,145,79,6.731926598682738E-4],[113,146,64,0.002868992702521338],[113,146,65,0.0032674094391410328],[113,146,66,0.0038992898664098794],[113,146,67,0.004720355876581014],[113,146,68,0.005761938340003107],[113,146,69,0.007095086851573307],[113,146,70,0.008762843508835352],[113,146,71,0.010782303054927566],[113,146,72,0.013148127002901742],[113,146,73,0.01583595436730883],[113,146,74,0.018133446670200674],[113,146,75,0.015035547975159642],[113,146,76,0.011768436220482978],[113,146,77,0.00840086576639211],[113,146,78,0.005005418697171158],[113,146,79,0.001655892374717509],[113,147,64,0.0023403425360322516],[113,147,65,0.0027350448182559602],[113,147,66,0.003356477049898941],[113,147,67,0.004161452575270047],[113,147,68,0.005181314990293724],[113,147,69,0.006486507621610617],[113,147,70,0.008120218987269777],[113,147,71,0.010100332313244417],[113,147,72,0.012422802442718681],[113,147,73,0.015064937492500803],[113,147,74,0.0179885766564781],[113,147,75,0.015913883665497095],[113,147,76,0.012687741271739435],[113,147,77,0.009355326549497268],[113,147,78,0.0059872951646947736],[113,147,79,0.002655722975155452],[113,148,64,0.0018555021549407323],[113,148,65,0.0022500671736675835],[113,148,66,0.0028640292089887674],[113,148,67,0.003655988395267311],[113,148,68,0.004657236682679342],[113,148,69,0.005937029439978699],[113,148,70,0.007538228862242393],[113,148,71,0.009479147217166178],[113,148,72,0.0117567767952163],[113,148,73,0.014349932900129888],[113,148,74,0.017222301741162176],[113,148,75,0.016748329559244355],[113,148,76,0.013571984471612415],[113,148,77,0.010285246366552226],[113,148,78,0.0069566733693556815],[113,148,79,0.0036564077179815253],[113,149,64,0.0014284091100626166],[113,149,65,0.0018265123680679775],[113,149,66,0.0024361077301680504],[113,149,67,0.003218259108047158],[113,149,68,0.0042041404019737055],[113,149,69,0.005461245316866167],[113,149,70,0.007031636802893751],[113,149,71,0.008933689667690497],[113,149,72,0.011165165451601521],[113,149,73,0.013706208682131732],[113,149,74,0.01652225684935254],[113,149,75,0.01752347603383568],[113,149,76,0.014405779060526994],[113,149,77,0.01117535729222953],[113,149,78,0.007898516242805702],[113,149,79,0.0046432656312042],[113,150,64,0.0010711910864135048],[113,150,65,0.001476466989913846],[113,150,66,0.0020847975462821183],[113,150,67,0.0028603461920445423],[113,150,68,0.003834101710712681],[113,150,69,0.005071248425936558],[113,150,70,0.006612591918941242],[113,150,71,0.00847620774230523],[113,150,72,0.010660354993603483],[113,150,73,0.01314631953978749],[113,150,74,0.01590117972703775],[113,150,75,0.018226432390949752],[113,150,76,0.015176077044333982],[113,150,77,0.012012497131803234],[113,150,78,0.008799610268732435],[113,150,79,0.00560311301041481],[113,151,64,7.93752535708328E-4],[113,151,65,0.0012096672720197398],[113,151,66,0.0018197197891528676],[113,151,67,0.0025917463900924902],[113,151,68,0.0035564847380589186],[113,151,69,0.004776305465407579],[113,151,70,0.0062903280604019755],[113,151,71,0.008115983311013443],[113,151,72,0.010251761450864875],[113,151,73,0.012679898046387575],[113,151,74,0.015368990958811325],[113,151,75,0.01827654191788552],[113,151,76,0.015872263774720383],[113,151,77,0.012785660626526182],[113,151,78,0.00964857061667385],[113,151,79,0.006524219865705232],[113,152,64,6.034898989646787E-4],[113,152,65,0.0010332282215226789],[113,152,66,0.0016477749359242735],[113,152,67,0.0024191313988904304],[113,152,68,0.003377721117734168],[113,152,69,0.004582656200056406],[113,152,70,0.006070984329944837],[113,152,71,0.007859173237128762],[113,152,72,0.009945691542045328],[113,152,73,0.012313535141057812],[113,152,74,0.01493269296327118],[113,152,75,0.017762546112129525],[113,152,76,0.016486223444932214],[113,152,77,0.01348604739197182],[113,152,78,0.010435871226938594],[113,152,79,0.007396321541608105],[113,153,64,5.051356908512461E-4],[113,153,65,9.515032422886341E-4],[113,153,66,0.001573016735838339],[113,153,67,0.0023462379808878845],[113,153,68,0.003301218166460543],[113,153,69,0.00449343947196856],[113,153,70,0.005957547085535769],[113,153,71,0.007708764422562167],[113,153,72,0.009745307132692933],[113,153,73,0.012050750050809501],[113,153,74,0.014596341413268137],[113,153,75,0.017343258821950747],[113,153,76,0.017012375469659863],[113,153,77,0.01410710663225345],[113,153,78,0.011153899972188696],[113,153,79,0.00821068572607647],[113,154,64,5.007317412218574E-4],[113,154,65,9.660745524965684E-4],[113,154,66,0.0015966572233090644],[113,154,67,0.0023738888055985286],[113,154,68,0.003327396608481341],[113,154,69,0.00450874597926728],[113,154,70,0.005949913719650264],[113,154,71,0.00766464296305623],[113,154,72,0.00965069314588023],[113,154,73,0.01189204983829101],[113,154,74,0.014361089230800072],[113,154,75,0.017020692215087802],[113,154,76,0.017447681721258438],[113,154,77,0.01464457867558899],[113,154,78,0.011797039021701372],[113,154,79,0.008960235061417193],[113,155,64,5.897319212911891E-4],[113,155,65,0.0010758747301081873],[113,155,66,0.0017172031506367345],[113,155,67,0.002500144352266726],[113,155,68,0.0034538581740107903],[113,155,69,0.004625798141481454],[113,155,70,0.006045078517609947],[113,155,71,0.007723777691736965],[113,155,72,0.009659029171039347],[113,155,73,0.011835078778753942],[113,155,74,0.014225303309269818],[113,155,75,0.01679418601494886],[113,155,76,0.017791624595953414],[113,155,77,0.015096533379006143],[113,155,78,0.012361770536318617],[113,155,79,0.009639725570395455],[113,156,64,7.692347221285454E-4],[113,156,65,0.0012774397572097164],[113,156,66,0.0019307242095022194],[113,156,67,0.0027205862390138665],[113,156,68,0.0036756834299612],[113,156,69,0.0048392573976746445],[113,156,70,0.006237440921611441],[113,156,71,0.007880518409511884],[113,156,72,0.009764865032442182],[113,156,73,0.011874857781485282],[113,156,74,0.01418475412337704],[113,156,75,0.016660534041341],[113,156,76,0.0180461558833036],[113,156,77,0.015463405452079844],[113,156,78,0.012846807825626937],[113,156,79,0.010245981114465565],[113,157,64,0.0010343461015332297],[113,157,65,0.0015652939807656093],[113,157,66,0.00223125345447732],[113,157,67,0.003028732385078116],[113,157,68,0.003985860240007088],[113,157,69,0.005141659318963258],[113,157,70,0.006519236558756983],[113,157,71,0.008127009128250904],[113,157,72,0.009960500601361645],[113,157,73,0.012004114088401614],[113,157,74,0.014232878399095357],[113,157,75,0.01661416340548994],[113,157,76,0.01821561640991392],[113,157,77,0.015748026751432782],[113,157,78,0.013253252103982142],[113,157,79,0.01077818410828313],[113,158,64,0.0013786730718653082],[113,158,65,0.0019324674621170677],[113,158,66,0.0026113203941562193],[113,158,67,0.0034165844625121343],[113,158,68,0.004375843297959985],[113,158,69,0.005523976960598864],[113,158,70,0.006881091430877063],[113,158,71,0.008453716687361992],[113,158,72,0.01023647016514419],[113,158,73,0.012213701505683702],[113,158,74,0.014361115033029443],[113,158,75,0.016647366473953918],[113,158,76,0.01830662642417132],[113,158,77,0.015955655599282824],[113,158,78,0.013584774988590998],[113,158,79,0.011238222725319215],[113,159,64,0.0017949485659564586],[113,159,65,0.002371146250517162],[113,159,66,0.003062617276090827],[113,159,67,0.003875308151664854],[113,159,68,0.004836245233502566],[113,159,69,0.005976312930348039],[113,159,70,0.007312699711138777],[113,159,71,0.008850075146313415],[113,159,72,0.010582131702233561],[113,159,73,0.012493111453274123],[113,159,74,0.014559314471991332],[113,159,75,0.016750585729891913],[113,159,76,0.018327946682646683],[113,159,77,0.01609400318061057],[113,159,78,0.013847826891004509],[113,159,79,0.011631094843555219],[113,160,64,0.0022757881907387706],[113,160,65,0.0028734561870464343],[113,160,66,0.003576799160433877],[113,160,67,0.004396046780887886],[113,160,68,0.005357659852516049],[113,160,69,0.00648872070942836],[113,160,70,0.007803625647322075],[113,160,71,0.009305246404827622],[113,160,72,0.010986361454585286],[113,160,73,0.012831075151746607],[113,160,74,0.01481622178986038],[113,160,75,0.016912751677414416],[113,160,76,0.018290310190708446],[113,160,77,0.01617325707449925],[113,160,78,0.014051871463032061],[113,160,79,0.011965368997868826],[113,161,64,0.00281457955857114],[113,161,65,0.0034323809242720093],[113,161,66,0.004146418453940266],[113,161,67,0.004970869005064614],[113,161,68,0.005931618145428569],[113,161,69,0.007052155829661585],[113,161,70,0.008344230134141387],[113,161,71,0.009808997558813018],[113,161,72,0.011438354237849864],[113,161,73,0.013216257306446271],[113,161,74,0.01512003372967691],[113,161,75,0.017121673955417725],[113,161,76,0.018206224539817222],[113,161,77,0.01620610197584506],[113,161,78,0.01420964626922221],[113,161,79,0.012253702626795746],[113,162,64,0.0034065049742613694],[113,162,65,0.0040428149338531325],[113,162,66,0.004765994660612113],[113,162,67,0.0055938512596345556],[113,162,68,0.0065516777761013825],[113,162,69,0.007659557585682485],[113,162,70,0.008926722587005895],[113,162,71,0.010352695563541566],[113,162,72,0.011928529985132323],[113,162,73,0.013638041694869317],[113,162,74,0.01545903001446098],[113,162,75,0.017364485851398666],[113,162,76,0.01808974477196712],[113,162,77,0.016207737663981602],[113,162,78,0.014337449870690723],[113,162,79,0.012513417925870926],[113,163,64,0.004049698351316876],[113,163,65,0.004702752368802665],[113,163,66,0.005433220197649231],[113,163,67,0.006262295816636276],[113,163,68,0.007214646850618923],[113,163,69,0.008307062043869249],[113,163,70,0.009546338827033091],[113,163,71,0.010930419846017645],[113,163,72,0.012449547081965185],[113,163,73,0.014087409114921871],[113,163,74,0.015822279270382305],[113,163,75,0.017628142433217104],[113,163,76,0.017956216687756713],[113,163,77,0.016195894274744025],[113,163,78,0.014455455519137623],[113,163,79,0.012767135647639465],[113,164,64,0.004742309209815859],[113,164,65,0.0054099811170091865],[113,164,66,0.006145294293470397],[113,164,67,0.006972707973664666],[113,164,68,0.007916208753687232],[113,164,69,0.008989287003826637],[113,164,70,0.010196306532808733],[113,164,71,0.011533635874840142],[113,164,72,0.012990718130251449],[113,164,73,0.01455113488979578],[113,164,74,0.016193662177652463],[113,164,75,0.017893316389383157],[113,164,76,0.01782845941547376],[113,164,77,0.016197043922247308],[113,164,78,0.014593903332688495],[113,164,79,0.013048901566539919],[113,165,64,0.005456200163905559],[113,165,65,0.006133252891821725],[113,165,66,0.006867765409626038],[113,165,67,0.00768737982173583],[113,165,68,0.008615338436873806],[113,165,69,0.009661811168885339],[113,165,70,0.010828736312846319],[113,165,71,0.012110942516741916],[113,165,72,0.013497130593494375],[113,165,73,0.014970850394901302],[113,165,74,0.016511470883628136],[113,165,75,0.018095141576429417],[113,165,76,0.017774281225014458],[113,165,77,0.016281606862348544],[113,165,78,0.014825471458258549],[113,165,79,0.013433255575606965],[113,166,64,0.006156645327608417],[113,166,65,0.006834039755448396],[113,166,66,0.007558329780998267],[113,166,67,0.008360229635102814],[113,166,68,0.009262180033455684],[113,166,69,0.01027106172180676],[113,166,70,0.011386460861714588],[113,166,71,0.012601772189953996],[113,166,72,0.01390508482845658],[113,166,73,0.015280064564298229],[113,166,74,0.016706830955973397],[113,166,75,0.018162827654264108],[113,166,76,0.017865899761799017],[113,166,77,0.01652264821337582],[113,166,78,0.015223498468287768],[113,166,79,0.013993229650070669],[113,167,64,0.006816787660514412],[113,167,65,0.007482491106993943],[113,167,66,0.008184210044331867],[113,167,67,0.00895557667543539],[113,167,68,0.009818183781009624],[113,167,69,0.010775720735456053],[113,167,70,0.011825565905665246],[113,167,71,0.01295985702254427],[113,167,72,0.014166270019328539],[113,167,73,0.01542879650073489],[113,167,74,0.01672851844842652],[113,167,75,0.018044378793976776],[113,167,76,0.018155606682339738],[113,167,77,0.016972204989392156],[113,167,78,0.015839238036417277],[113,167,79,0.014778774266181904],[113,168,64,0.00741637325175997],[113,168,65,0.008056134739867138],[113,168,66,0.00872081392305754],[113,168,67,0.009446754068263384],[113,168,68,0.010254668639418252],[113,168,69,0.011145227853567793],[113,168,70,0.012113819382854652],[113,168,71,0.013151568399838989],[113,168,72,0.014245996555930358],[113,168,73,0.015381682762475866],[113,168,74,0.016540924665258982],[113,168,75,0.0177043997206893],[113,168,76,0.018678134669004864],[113,168,77,0.017663838224665006],[113,168,78,0.016704605508374794],[113,168,79,0.01581970580597431],[113,169,64,0.007940360762718524],[113,169,65,0.008538443253368316],[113,169,66,0.009150249433493336],[113,169,67,0.009814569538289648],[113,169,68,0.01055122441975574],[113,169,69,0.011358115282915405],[113,169,70,0.012228927596917861],[113,169,71,0.013154080584857529],[113,169,72,0.014121252465714156],[113,169,73,0.015115911880924345],[113,169,74,0.016121854721803434],[113,169,75,0.01712174558121405],[113,169,76,0.01809766306456604],[113,169,77,0.01861531106614904],[113,169,78,0.017835030631400767],[113,169,79,0.017128737566161064],[113,170,64,0.00837749151710763],[113,170,65,0.00891735965787363],[113,170,66,0.009459798349632726],[113,170,67,0.010045723489568281],[113,170,68,0.01069407045997669],[113,170,69,0.011400299147305445],[113,170,70,0.012156748575024795],[113,170,71,0.012953493738927086],[113,170,72,0.013778723035892417],[113,170,73,0.014619127614766088],[113,170,74,0.015460302232961548],[113,170,75,0.01628715719686688],[113,170,76,0.017084340962184266],[113,170,77,0.0178366729723128],[113,170,78,0.018529586319002696],[113,170,79,0.018704471328632576],[113,171,64,0.008718819530115036],[113,171,65,0.00918378148348227],[113,171,66,0.009640347256407706],[113,171,67,0.010131183781828139],[113,171,68,0.010674370221781729],[113,171,69,0.011263326603534397],[113,171,70,0.011889462059975743],[113,171,71,0.012542915806036788],[113,171,72,0.013212773128659596],[113,171,73,0.01388730048909396],[113,171,74,0.014554199730230467],[113,171,75,0.015200881360955116],[113,171,76,0.015814756871400725],[113,171,77,0.016383550017913754],[113,171,78,0.01689562700486868],[113,171,79,0.01734034548252804],[113,172,64,0.008956200690736],[113,172,65,0.009330002621941726],[113,172,66,0.00968477543872883],[113,172,67,0.010064516469047087],[113,172,68,0.010486501095234885],[113,172,69,0.010942578029087793],[113,172,70,0.011423695473096436],[113,172,71,0.011920502629392133],[113,172,72,0.012423391595195458],[113,172,73,0.01292256706859475],[113,172,74,0.013408144306337019],[113,172,75,0.013870275736894346],[113,172,76,0.014299306595251813],[113,172,77,0.014685959911202195],[113,172,78,0.015021551150878614],[113,172,79,0.01529823278234643],[113,173,64,0.009080740233594233],[113,173,65,0.009348112050935073],[113,173,66,0.00958629877020342],[113,173,67,0.00984017168025807],[113,173,68,0.01012627860882733],[113,173,69,0.010435423499827597],[113,173,70,0.010758605090690296],[113,173,71,0.011087455572381026],[113,173,72,0.011414097095864838],[113,173,73,0.01173103631377604],[113,173,74,0.012031097884777258],[113,173,75,0.012307397809506033],[113,173,76,0.012553357408982483],[113,173,77,0.012762758699574432],[113,173,78,0.012929841863696435],[113,173,79,0.013049445463070066],[113,174,64,0.00908119755839413],[113,174,65,0.009228348508718289],[113,174,66,0.009336768681536513],[113,174,67,0.009451723735816025],[113,174,68,0.009589134153048759],[113,174,69,0.009739332683537084],[113,174,70,0.009893911581934508],[113,174,71,0.010045975819104788],[113,174,72,0.010189804535107372],[113,174,73,0.01032056226873231],[113,174,74,0.010434061409783774],[113,174,75,0.010526577239171383],[113,174,76,0.010594716840230447],[113,174,77,0.010635343083394979],[113,174,78,0.010645554806179411],[113,174,79,0.0106227242323005],[113,175,64,0.008950261567229358],[113,175,65,0.008965095637462266],[113,175,66,0.008932336685361137],[113,175,67,0.008897146864873839],[113,175,68,0.008874934938936999],[113,175,69,0.008856163695433463],[113,175,70,0.008833576422827187],[113,175,71,0.008802243493042037],[113,175,72,0.008759020996134598],[113,175,73,0.008702072330100893],[113,175,74,0.008630454738262055],[113,175,75,0.008543772680790818],[113,175,76,0.008441899819489547],[113,175,77,0.008324771286925594],[113,175,78,0.008192247803455437],[113,175,79,0.008044053099662923],[113,176,64,0.00870974999893921],[113,176,65,0.008581405541950554],[113,176,66,0.008397195540546869],[113,176,67,0.00820164361648693],[113,176,68,0.008009745886967805],[113,176,69,0.007812683437144531],[113,176,70,0.007604888646746136],[113,176,71,0.007383866567124504],[113,176,72,0.007149445534688543],[113,176,73,0.006903105077862692],[113,176,74,0.006647383674290559],[113,176,75,0.006385368782702391],[113,176,76,0.0061202714389274335],[113,176,77,0.005855087569157934],[113,176,78,0.005592348036961833],[113,176,79,0.005333959305066958],[113,177,64,0.008390810950029037],[113,177,65,0.00810993436768611],[113,177,66,0.007765435512921585],[113,177,67,0.007400644575624214],[113,177,68,0.007030224350341286],[113,177,69,0.0066466305007363575],[113,177,70,0.006246484007304474],[113,177,71,0.005830152197969072],[113,177,72,0.005400789134585042],[113,177,73,0.0049634684641724205],[113,177,74,0.004524411863131636],[113,177,75,0.004090316042887695],[113,177,76,0.0036677811219140077],[113,177,77,0.0032628430032899023],[113,177,78,0.0028806122302779524],[113,177,79,0.0025250216264819532],[113,178,64,0.008025951791862045],[113,178,65,0.007585127409979639],[113,178,66,0.007073422443811433],[113,178,67,0.0065324253277972075],[113,178,68,0.005976529647988323],[113,178,69,0.005399977545888594],[113,178,70,0.004802026082578305],[113,178,71,0.004186276786744203],[113,178,72,0.003559506818095785],[113,178,73,0.0029306082732086514],[113,178,74,0.002309639330001698],[113,178,75,0.0017069907392506056],[113,178,76,0.0011326709790077944],[113,178,77,5.957131921306892E-4],[113,178,78,1.0370682997639058E-4],[113,178,79,-3.3754327143550546E-4],[113,179,64,0.007648347636494402],[113,179,65,0.007042435184645977],[113,179,66,0.0063589047749286216],[113,179,67,0.005637085717141872],[113,179,68,0.004891154563538053],[113,179,69,0.004117594904808406],[113,179,70,0.00331868265218071],[113,179,71,0.002501557401743789],[113,179,72,0.0016768486688589776],[113,179,73,8.574261267414424E-4],[113,179,74,5.727809921059651E-5],[113,179,75,-7.094776581280914E-4],[113,179,76,-0.0014294470754716536],[113,179,77,-0.002090673197779499],[113,179,78,-0.002683206565148307],[113,179,79,-0.003199529412021115],[113,180,64,0.007291147790177429],[113,180,65,0.006517528501416435],[113,180,66,0.0056601225974841725],[113,180,67,0.004755535816519381],[113,180,68,0.0038177701104658533],[113,180,69,0.0028459364244134222],[113,180,70,0.001845636104582655],[113,180,71,8.277721044579273E-4],[113,180,72,-1.930221655688039E-4],[113,180,73,-0.001199814253480078],[113,180,74,-0.0021746595662941017],[113,180,75,-0.003099739219615459],[113,180,76,-0.003958344549320081],[113,180,77,-0.004735704253041657],[113,180,78,-0.005419650386118766],[113,180,79,-0.006001119693873918],[113,181,64,0.006986779784544163],[113,181,65,0.006045512101201478],[113,181,66,0.005014918265856972],[113,181,67,0.003928488134093568],[113,181,68,0.0028000830777578896],[113,181,69,0.0016317470590602736],[113,181,70,4.326273984930756E-4],[113,181,71,-7.824712731676163E-4],[113,181,72,-0.0019948449055735024],[113,181,73,-0.0031834928875662787],[113,181,74,-0.004326560598470758],[113,181,75,-0.0054026166456519215],[113,181,76,-0.006391760058884329],[113,181,77,-0.007276552994286177],[113,181,78,-0.008042774785821586],[113,181,79,-0.008679993468098352],[113,182,64,0.006766250553925096],[113,182,65,0.0056601363941178005],[113,182,66,0.00445984809021376],[113,182,67,0.0031954555536287898],[113,182,68,0.0018807058423631528],[113,182,69,5.207916988828552E-4],[113,182,70,-8.714669253839029E-4],[113,182,71,-0.0022773183784479912],[113,182,72,-0.0036740104431442068],[113,182,73,-0.005036551864625013],[113,182,74,-0.006339298540402415],[113,182,75,-0.007557358937226693],[113,182,76,-0.008667813601313409],[113,182,77,-0.009650743936676424],[113,182,78,-0.010490065738047904],[113,182,79,-0.0111741632772773],[113,183,64,0.006658444307125594],[113,183,65,0.005393006812627462],[113,183,66,0.004029294598497287],[113,183,67,0.0025937544809057143],[113,183,68,0.0011000379095293313],[113,183,69,-4.4339530584925686E-4],[113,183,70,-0.0020200252090003356],[113,183,71,-0.0036072041132728227],[113,183,72,-0.005178244971457835],[113,183,73,-0.006704326548322381],[113,183,74,-0.008156209261333222],[113,183,75,-0.009505755871511274],[113,183,76,-0.01072725153187486],[113,183,77,-0.011798518033036366],[113,183,78,-0.012701817421474266],[113,183,79,-0.013424540502829808],[113,184,64,0.006689416623520835],[113,184,65,0.00527279027340522],[113,184,66,0.003754578836365855],[113,184,67,0.0021575126463572922],[113,184,68,4.951586200175869E-4],[113,184,69,-0.0012207404848629223],[113,184,70,-0.0029700391633607497],[113,184,71,-0.004726341448546947],[113,184,72,-0.006459228404529399],[113,184,73,-0.008136290057965543],[113,184,74,-0.009724955283618643],[113,184,75,-0.011194113496122525],[113,184,76,-0.012515522346441892],[113,184,77,-0.013664995974911316],[113,184,78,-0.014623368730302911],[113,184,79,-0.015377229622956002],[113,185,64,0.006881684286634412],[113,185,65,0.005324418222828858],[113,185,66,0.0036630721541674937],[113,185,67,0.0019166809944891352],[113,185,68,9.873044437831974E-5],[113,185,69,-0.0017758420299788704],[113,185,70,-0.003683440935772181],[113,185,71,-0.005594163800433153],[113,185,72,-0.00747414805416277],[113,185,73,-0.009287711417927525],[113,185,74,-0.010999279021882047],[113,185,75,-0.01257509083323558],[113,185,76,-0.013984683336896137],[113,185,77,-0.01520213978402706],[113,185,78,-0.01620710369988179],[113,185,79,-0.016985550719644294],[113,186,64,0.007253510353611695],[113,186,65,0.005568285724434873],[113,186,66,0.0037773069130355905],[113,186,67,0.0018960490740410657],[113,186,68,-6.208773087587506E-5],[113,186,69,-0.002079161609483175],[113,186,70,-0.004128399325888965],[113,186,71,-0.006176721494306399],[113,186,72,-0.008187188027486867],[113,186,73,-0.010121227755611625],[113,186,74,-0.011940645212066345],[113,186,75,-0.013609397951104421],[113,186,76,-0.015095138141672036],[113,186,77,-0.016370512568744465],[113,186,78,-0.017414215565233676],[113,186,79,-0.018211789790453858],[113,187,64,0.007818183946382453],[113,187,65,0.006019446032520791],[113,187,66,0.004114085527928087],[113,187,67,0.002114263329403724],[113,187,68,3.328206798722632E-5],[113,187,69,-0.0021081978135606434],[113,187,70,-0.0042805857221746265],[113,187,71,-0.0064480328394698585],[113,187,72,-0.008570954797219303],[113,187,73,-0.010608330907086686],[113,187,74,-0.01251977277561638],[113,187,75,-0.01426735551549026],[113,187,76,-0.015817205155077646],[113,187,77,-0.017140836247375155],[113,187,78,-0.018216234083286893],[113,187,79,-0.01902867631932293],[113,188,64,0.008583294239968592],[113,188,65,0.006686800084457674],[113,188,66,0.0046835872540630695],[113,188,67,0.002582847683693552],[113,188,68,3.9776834366817877E-4],[113,188,69,-0.0018486418335394383],[113,188,70,-0.0041244103287886805],[113,188,71,-0.006391390328609128],[113,188,72,-0.00860783937838309],[113,188,73,-0.010730768759977008],[113,188,74,-0.012718056321749023],[113,188,75,-0.014530315877136404],[113,188,76,-0.016132516687531955],[113,188,77,-0.017495346952883357],[113,188,78,-0.01859631564605657],[113,188,79,-0.01942058744091847],[113,189,64,0.009549998115523031],[113,189,65,0.007572280335419245],[113,189,66,0.0054884721149593575],[113,189,67,0.0033052257973498252],[113,189,68,0.001035589721810769],[113,189,69,-0.0012955159769039452],[113,189,70,-0.003654229245774224],[113,189,71,-0.006000622460482949],[113,189,72,-0.008291316519360081],[113,189,73,-0.010481861625071214],[113,189,74,-0.012528877438639955],[113,189,75,-0.014391945683819974],[113,189,76,-0.016035248684610273],[113,189,77,-0.017428947731798188],[113,189,78,-0.018550295592437743],[113,189,79,-0.019384477895516162],[113,190,64,0.010712280940490936],[113,190,65,0.008670028353348071],[113,190,66,0.006522981365382337],[113,190,67,0.004275744383353441],[113,190,68,0.0019412020795652584],[113,190,69,-4.5429561432125984E-4],[113,190,70,-0.0028755229526454796],[113,190,71,-0.0052813116623847784],[113,190,72,-0.007627181281884024],[113,190,73,-0.009867733881481721],[113,190,74,-0.01195880586252923],[113,190,75,-0.013859369926908631],[113,190,76,-0.015533180716150525],[113,190,77,-0.016950158034587107],[113,190,78,-0.018087501991250254],[113,190,79,-0.01893053481682024],[113,191,64,0.012056209935936398],[113,191,65,0.009965565589264263],[113,191,66,0.007772033881136599],[113,191,67,0.0054786969613992344],[113,191,68,0.0030982525962513744],[113,191,69,6.579848559186647E-4],[113,191,70,-0.0018060467268592609],[113,191,71,-0.004251968760308055],[113,191,72,-0.006634723343755426],[113,191,73,-0.008908461085014998],[113,191,74,-0.0110286905422831],[113,191,75,-0.012954177242919784],[113,191,76,-0.014648585837929731],[113,191,77,-0.016081859365707794],[113,191,78,-0.01723133001827592],[113,191,79,-0.018082556224205494],[113,192,64,0.013559179591771407],[113,192,65,0.011434956738688488],[113,192,66,0.00921031787005529],[113,192,67,0.006887347438800551],[113,192,68,0.004478540123512335],[113,192,69,0.0020116414568143184],[113,192,70,-4.769535040528608E-4],[113,192,71,-0.002945164409410867],[113,192,72,-0.005347839309676214],[113,192,73,-0.007639132665765019],[113,192,74,-0.009774640536016805],[113,192,75,-0.011713286190610324],[113,192,76,-0.013418949807995448],[113,192,77,-0.014861836319636215],[113,192,78,-0.016019575885981685],[113,192,79,-0.016878051904482643],[113,193,64,0.015189148594601657],[113,193,65,0.013043965114253238],[113,193,66,0.010801377304964901],[113,193,67,0.008462952915807974],[113,193,68,0.006040981287183883],[113,193,69,0.0035632649473560088],[113,193,70,0.0010661103437990213],[113,193,71,-0.0014086178552330723],[113,193,72,-0.0038160832596686395],[113,193,73,-0.006110830268941728],[113,193,74,-0.00824889558623216],[113,193,75,-0.010189672114013195],[113,193,76,-0.01189751900819003],[113,193,77,-0.013343112075094081],[113,193,78,-0.0145045291073433],[113,193,79,-0.015368065167561696],[113,194,64,0.01690386774033064],[113,194,65,0.014747199457707078],[113,194,66,0.012496692490061339],[113,194,67,0.010153785127599508],[113,194,68,0.007730581753101286],[113,194,69,0.005254659482841719],[113,194,70,0.0027619358731714155],[113,194,71,2.937566529353093E-4],[113,194,72,-0.002105655701036696],[113,194,73,-0.00439152171266898],[113,194,74,-0.00652058612075104],[113,194,75,-0.008452954081921637],[113,194,76,-0.010153676279234473],[113,194,77,-0.011594077254145355],[113,194,78,-0.01275282168554072],[113,194,79,-0.013616713746382795],[113,195,64,0.018617193142091624],[113,195,65,0.016487787168194393],[113,195,66,0.014235364110640678],[113,195,67,0.011894832737299554],[113,195,68,0.009478166388421272],[113,195,69,0.007012616900887343],[113,195,70,0.004533591220854308],[113,195,71,0.0020817794806040416],[113,195,72,-2.993574901785641E-4],[113,195,73,-0.002565871376566722],[113,195,74,-0.004675373611162249],[113,195,75,-0.006588840301431111],[113,195,76,-0.008272168912950345],[113,195,77,-0.009697481165036501],[113,195,78,-0.010844166994853065],[113,195,79,-0.011699664846808223],[113,196,64,0.016933795646869285],[113,196,65,0.018223906944938893],[113,196,66,0.01597432706954285],[113,196,67,0.013641628708576865],[113,196,68,0.01123775980994221],[113,196,69,0.008789662074891734],[113,196,70,0.006332210473838919],[113,196,71,0.0039053872316525953],[113,196,72,0.0015518125632327825],[113,196,73,-6.854977304803633E-4],[113,196,74,-0.0027651412643801003],[113,196,75,-0.004649098498495638],[113,196,76,-0.0063042568058340786],[113,196,77,-0.007703683778942388],[113,196,78,-0.008827644768764775],[113,196,79,-0.00966436004372705],[113,197,64,0.015275532619795671],[113,197,65,0.01753114454663393],[113,197,66,0.017705417553190324],[113,197,67,0.015389053817745565],[113,197,68,0.01300708076698991],[113,197,69,0.010586105489293732],[113,197,70,0.008160388747323555],[113,197,71,0.005769079443560468],[113,197,72,0.0034537993822856866],[113,197,73,0.001256451814632302],[113,197,74,-7.827398753635376E-4],[113,197,75,-0.0026269573504366997],[113,197,76,-0.004244270746878112],[113,197,77,-0.005608875111705024],[113,197,78,-0.006702074999483249],[113,197,79,-0.007513012764861562],[113,198,64,0.01366038750036934],[113,198,65,0.015897696568778145],[113,198,66,0.018208787249340566],[113,198,67,0.017127737002867165],[113,198,68,0.014779109281090616],[113,198,69,0.012397026918461406],[113,198,70,0.010015003853283145],[113,198,71,0.007671169771302026],[113,198,72,0.005405925335249286],[113,198,73,0.0032598168848538955],[113,198,74,0.0012716367442779414],[113,198,75,-5.232450822286722E-4],[113,198,76,-0.002094312411406906],[113,198,77,-0.0034170925363885937],[113,198,78,-0.004474099370474061],[113,198,79,-0.005255525790422529],[113,199,64,0.012109876168862284],[113,199,65,0.014315398933540575],[113,199,66,0.01659070003866007],[113,199,67,0.018842238857621478],[113,199,68,0.016539945213392488],[113,199,69,0.014209836188568562],[113,199,70,0.011884518032336878],[113,199,71,0.009600878784399802],[113,199,72,0.00739783470981752],[113,199,73,0.005314290210099727],[113,199,74,0.003387317078799582],[113,199,75,0.001650558624832854],[113,199,76,1.3286383262306963E-4],[113,199,77,-0.0011428436324176145],[113,199,78,-0.002160457128665113],[113,199,79,-0.0029113353734044325],[113,200,64,0.010647282301788803],[113,200,65,0.012806027616771883],[113,200,66,0.015031357643431005],[113,200,67,0.01731629890687155],[113,200,68,0.018270934053575022],[113,200,69,0.0160065090665226],[113,200,70,0.013751326783503506],[113,200,71,0.011540794663839024],[113,200,72,0.009412061312938527],[113,200,73,0.00740208341333577],[113,200,74,0.005545903671859445],[113,200,75,0.003875144997151721],[113,200,76,0.002416725782478075],[113,200,77,0.001191800823527757],[113,200,78,2.1493205252346112E-4],[113,200,79,-5.065070785676434E-4],[113,201,64,0.009296046321686577],[113,201,65,0.011392240590982133],[113,201,66,0.013552821240316294],[113,201,67,0.015768323528491075],[113,201,68,0.018023669035225065],[113,201,69,0.017765694720007403],[113,201,70,0.015593990353016592],[113,201,71,0.013469229957821518],[113,201,72,0.01142650781208576],[113,201,73,0.009500522398378135],[113,201,74,0.0077239743422764595],[113,201,75,0.0061261695970132105],[113,201,76,0.004731832404221035],[113,201,77,0.00356013223407534],[113,201,78,0.002623928579160413],[113,201,79,0.0019292371475360234],[113,202,64,0.008078308615645551],[113,202,65,0.010096037579367435],[113,202,66,0.012177063472721312],[113,202,67,0.014308962289945786],[113,202,68,0.01647520110657917],[113,202,69,0.01865178741310726],[113,202,70,0.017389348067589287],[113,202,71,0.01536247478743432],[113,202,72,0.013416837425513176],[113,202,73,0.011584573166763652],[113,202,74,0.009895733907381164],[113,202,75,0.008377018092528894],[113,202,76,0.007050698474721008],[113,202,77,0.005933749621716901],[113,202,78,0.005037178697063085],[113,202,79,0.004365562731124975],[113,203,64,0.007013607852688517],[113,203,65,0.008937373245714456],[113,203,66,0.010924487659452685],[113,203,67,0.01295914429973336],[113,203,68,0.015023066106808116],[113,203,69,0.01709290398411772],[113,203,70,0.01911451560351015],[113,203,71,0.017196946815520038],[113,203,72,0.015358778509055464],[113,203,73,0.013629298853360112],[113,203,74,0.012035617448725899],[113,203,75,0.010601545647267788],[113,203,76,0.00934665637640176],[113,203,77,0.008285526872688765],[113,203,78,0.007427167455167534],[113,203,79,0.006774639189467956],[113,204,64,0.006117735392316633],[113,204,65,0.007932924704858917],[113,204,66,0.00981259774514976],[113,204,67,0.011737197853984407],[113,204,68,0.013686423780005032],[113,204,69,0.01563755189833949],[113,204,70,0.017564837355919377],[113,204,71,0.018951238203707334],[113,204,72,0.017230342515974818],[113,204,73,0.015612248718018794],[113,204,74,0.014120846122397888],[113,204,75,0.012776791195638564],[113,204,76,0.011596716568301317],[113,204,77,0.010592603553987428],[113,204,78,0.009771320872223795],[113,204,79,0.009134332023617612],[113,205,64,0.005401746944425725],[113,205,65,0.007095014400910022],[113,205,66,0.008854819904356936],[113,205,67,0.010657552764298854],[113,205,68,0.01248062215843814],[113,205,69,0.014301880834210842],[113,205,70,0.016097270881883875],[113,205,71,0.017842034729456085],[113,205,72,0.01901395572418382],[113,205,73,0.01751577976643734],[113,205,74,0.016133936471310353],[113,205,75,0.01488566784541047],[113,205,76,0.01378442825311111],[113,205,77,0.012839401090417276],[113,205,78,0.012055159344948442],[113,205,79,0.011431472054546853],[113,206,64,0.004871132813381851],[113,206,65,0.006430689568260502],[113,206,66,0.008059476872768897],[113,206,67,0.009729589752670983],[113,206,68,0.011415900546649066],[113,206,69,0.013096758783594335],[113,206,70,0.014749832740471935],[113,206,71,0.016352982882744758],[113,206,72,0.01788515389049733],[113,206,73,0.019327157768468013],[113,206,74,0.018065164139375086],[113,206,75,0.016919630610777166],[113,206,76,0.0159027417420646],[113,206,77,0.015020666091302629],[113,206,78,0.014275504359023045],[113,206,79,0.013665204515038795],[113,207,64,0.004525787703559601],[113,207,65,0.005941125231180032],[113,207,66,0.0074287445279833594],[113,207,67,0.008956281676614374],[113,207,68,0.010495853789749208],[113,207,69,0.012026202219992782],[113,207,70,0.013526733018609858],[113,207,71,0.01497802722274817],[113,207,72,0.016362436127728804],[113,207,73,0.01766459129294661],[113,207,74,0.018871827555260436],[113,207,75,0.018877746917655404],[113,207,76,0.017952335112441185],[113,207,77,0.017139010618127785],[113,207,78,0.016437212658838615],[113,207,79,0.01584292086593401],[113,208,64,0.004362226066414936],[113,208,65,0.005622576446576311],[113,208,66,0.006958773182314047],[113,208,67,0.008333961570797521],[113,208,68,0.00971735058412769],[113,208,69,0.011087956324662678],[113,208,70,0.012426897919341817],[113,208,71,0.01371752464612182],[113,208,72,0.014945695031054125],[113,208,73,0.016099996040767686],[113,208,74,0.01717190136406519],[113,208,75,0.018155867868933993],[113,208,76,0.01904936941387749],[113,208,77,0.019184658601620726],[113,208,78,0.018529609919391416],[113,208,79,0.017953454297750644],[113,209,64,0.004372741621983924],[113,209,65,0.005467322601751144],[113,209,66,0.006642062389173172],[113,209,67,0.00785572526261744],[113,209,68,0.009074532474932007],[113,209,69,0.010277648865118064],[113,209,70,0.011447842469057192],[113,209,71,0.012571215099981064],[113,209,72,0.013637151018823923],[113,209,73,0.014638232514180253],[113,209,74,0.015570122124429589],[113,209,75,0.016431411284539826],[113,209,76,0.01722343522863856],[113,209,77,0.01795005402620699],[113,209,78,0.018617399674224898],[113,209,79,0.01923358920927416],[113,210,64,0.004544860123518057],[113,210,65,0.005463558527867915],[113,210,66,0.006467662639307039],[113,210,67,0.007511797526583487],[113,210,68,0.008559188284482214],[113,210,69,0.00958901471701129],[113,210,70,0.010585590876548003],[113,210,71,0.011537692658940264],[113,210,72,0.01243816731639954],[113,210,73,0.013283537830846636],[113,210,74,0.014073602626419733],[113,210,75,0.014811031105559359],[113,210,76,0.015500955496036944],[113,210,77,0.01615055949637113],[113,210,78,0.01676866420416261],[113,210,79,0.017365311805858992],[113,211,64,0.0048614136191721235],[113,211,65,0.005595363553731185],[113,211,66,0.006421040963100682],[113,211,67,0.007289293670955403],[113,211,68,0.008160410287697492],[113,211,69,0.00901344626071494],[113,211,70,0.009834122282537584],[113,211,71,0.01061374955551014],[113,211,72,0.011348497157027558],[113,211,73,0.012038682992667919],[113,211,74,0.012688089557351049],[113,211,75,0.013303305685074712],[113,211,76,0.013893095424100865],[113,211,77,0.014467795126885686],[113,211,78,0.015038739792823407],[113,211,79,0.015617719647287004],[113,212,64,0.00530078939572884],[113,212,65,0.005842846177865846],[113,212,66,0.0064841233046896195],[113,212,67,0.007172159550617535],[113,212,68,0.00786443093836556],[113,212,69,0.008539726683720859],[113,212,70,0.009185001791552957],[113,212,71,0.00979390771550638],[113,212,72,0.01036572041179721],[113,212,73,0.010904321092613141],[113,212,74,0.011417231623962585],[113,212,75,0.011914706427531641],[113,212,76,0.012408882655425918],[113,212,77,0.012912990311129791],[113,212,78,0.01344062389023664],[113,212,79,0.014005077011169884],[113,213,64,0.005837356185066405],[113,213,65,0.006182466838817543],[113,213,66,0.006635516052083865],[113,213,67,0.00714129230221932],[113,213,68,0.007654642360394949],[113,213,69,0.008153948324434574],[113,213,70,0.00862719884442521],[113,213,71,0.0090701397794496],[113,213,72,0.009484871551698918],[113,213,73,0.009878528283792333],[113,213,74,0.010262041360570396],[113,213,75,0.010648989925835121],[113,213,76,0.011054540687112905],[113,213,77,0.011494479258377622],[113,213,78,0.011984335122787172],[113,213,79,0.012538602145937027],[113,214,64,0.006442070367106648],[113,214,65,0.006587541418579234],[113,214,66,0.006850909264413613],[113,214,67,0.007174844256757958],[113,214,68,0.0075118009799016675],[113,214,69,0.007839618357308077],[113,214,70,0.008147095156587283],[113,214,71,0.008431781760017971],[113,214,72,0.008698261015591652],[113,214,73,0.00895653950689388],[113,214,74,0.009220552540308114],[113,214,75,0.009506785972568465],[113,214,76,0.009833017818527105],[113,214,77,0.01021718238932143],[113,214,78,0.010676359516284633],[113,214,79,0.011225891217411535],[113,215,64,0.007083265046265592],[113,215,65,0.00702892826008167],[113,215,66,0.007103664286144013],[113,215,67,0.0072487126365268755],[113,215,68,0.007414419829059465],[113,215,69,0.007577954277750546],[113,215,70,0.00772868460912497],[113,215,71,0.007865639650365228],[113,215,72,0.00799549222511034],[113,215,73,0.008130681141167911],[113,215,74,0.008287675276716767],[113,215,75,0.008485383452923979],[113,215,76,0.008743713553574126],[113,215,77,0.009082284117804151],[113,215,78,0.009519291392061275],[113,215,79,0.010070534583803905],[113,216,64,0.007727625009868201],[113,216,65,0.007475901614684361],[113,216,66,0.007365588576599889],[113,216,67,0.0073372177856291364],[113,216,68,0.00733935119901254],[113,216,69,0.007348371795810193],[113,216,70,0.007353967634149886],[113,216,71,0.007356292456467561],[113,216,72,0.00736367664913681],[113,216,73,0.007390502908325715],[113,216,74,0.007455251068964078],[113,216,75,0.007578716293922685],[113,216,76,0.00778240455122883],[113,216,77,0.00808710903015786],[113,216,78,0.008511670864389772],[113,216,79,0.009071927244310734],[113,217,64,0.008341350694323428],[113,217,65,0.00789721455732974],[113,217,66,0.0076079007091780755],[113,217,67,0.007413972813865181],[113,217,68,0.007262562454630989],[113,217,69,0.0071291678880631235],[113,217,70,0.007003542781347285],[113,217,71,0.006886594276471953],[113,217,72,0.006787849474295319],[113,217,73,0.0067231115159390115],[113,217,74,0.006712310203779454],[113,217,75,0.006777551806012451],[113,217,76,0.0069413723803105586],[113,217,77,0.007225198635542875],[113,217,78,0.007648020028233632],[113,217,79,0.008225275464945983],[113,218,64,0.008891514385777184],[113,218,65,0.00826235451318688],[113,218,66,0.007802388605925205],[113,218,67,0.007452947650475243],[113,218,68,0.007160107946211919],[113,218,69,0.0068984018852059825],[113,218,70,0.0066573982862368035],[113,218,71,0.006438378189017767],[113,218,72,0.006251588581755667],[113,218,73,0.006113708674911282],[113,218,74,0.006045534078550207],[113,218,75,0.006069883906954038],[113,218,76,0.006209735489785148],[113,218,77,0.006486591016387091],[113,218,78,0.006919080081392413],[113,218,79,0.007521801738558423],[113,219,64,0.009347611963915847],[113,219,65,0.008542994627675169],[113,219,66,0.007922764167203203],[113,219,67,0.007429730604440896],[113,219,68,0.007009300059889583],[113,219,69,0.006634977586028498],[113,219,70,0.006295906580273764],[113,219,71,0.005993364838203706],[113,219,72,0.00573783966195308],[113,219,73,0.005546336261892042],[113,219,74,0.0054399251504923165],[113,219,75,0.0054415338616150555],[113,219,76,0.0055739879518033894],[113,219,77,0.005858305855083807],[113,219,78,0.006312251772166931],[113,219,79,0.006949150381928178],[113,220,64,0.009683313558024603],[113,220,65,0.008714644279180356],[113,220,66,0.007946217530421481],[113,220,67,0.007322990609298329],[113,220,68,0.0067900825369863515],[113,220,69,0.006319929484206053],[113,220,70,0.0059010247858762716],[113,220,71,0.005534278712734806],[113,220,72,0.005229950415129391],[113,220,73,0.00500483151958632],[113,220,74,0.0048796873438730235],[113,220,75,0.004876961302399243],[113,220,76,0.005018747668791056],[113,220,77,0.005325037449086063],[113,220,78,0.005812241700354966],[113,220,79,0.006491996209043221],[113,221,64,0.009878416520475976],[113,221,65,0.008758502077736905],[113,221,66,0.007855174243479512],[113,221,67,0.007116143389895147],[113,221,68,0.0064866092600226345],[113,221,69,0.005937916269911977],[113,221,70,0.005457704323000638],[113,221,71,0.005046175208026066],[113,221,72,0.004712916884089925],[113,221,73,0.004473995293014757],[113,221,74,0.004349319858179659],[113,221,75,0.004360288410826453],[113,221,76,0.0045277168555018545],[113,221,77,0.004870058448788064],[113,221,78,0.005401917123087318],[113,221,79,0.006132858843570084],[113,222,64,0.009921004131703808],[113,222,65,0.008663514710628989],[113,222,66,0.007639258664823357],[113,222,67,0.006799224823416325],[113,222,68,0.00608903174678547],[113,222,69,0.005478924820772231],[113,222,70,0.004955512815163701],[113,222,71,0.004517981629811988],[113,222,72,0.004174845043404228],[113,222,73,0.003940976385058448],[113,222,74,0.00383492741206542],[113,222,75,0.003876540238431516],[113,222,76,0.004084857709242363],[113,222,77,0.004476337158354677],[113,222,78,0.005063372025015415],[113,222,79,0.005853125342489383],[113,223,64,0.009809813429299754],[113,223,65,0.008428644984167082],[113,223,66,0.0072974668997906516],[113,223,67,0.006370974774237893],[113,223,68,0.005595498610653161],[113,223,69,0.004940187923087542],[113,223,70,0.0043904715187367905],[113,223,71,0.003944255343025871],[113,223,72,0.0036086308233708726],[113,223,73,0.0033968751770006734],[113,223,74,0.0033257500277980774],[113,223,75,0.003413104221630678],[113,223,76,0.0036757862634712933],[113,223,77,0.004127871325978958],[113,223,78,0.004779207301739405],[113,223,79,0.00563428389398915],[113,224,64,0.00955681549897537],[113,224,65,0.008065352366659817],[113,224,66,0.006840552549046829],[113,224,67,0.005841134658578673],[113,224,68,0.005014370232120785],[113,224,69,0.004328318961351358],[113,224,70,0.003767111506722465],[113,224,71,0.0033271622871692275],[113,224,72,0.003013861774213852],[113,224,73,0.002838569696053788],[113,224,74,0.002815915505599915],[113,224,75,0.0029614119973385682],[113,224,76,0.0032893874785148384],[113,224,77,0.0038112414138006634],[113,224,78,0.004534027973045197],[113,224,79,0.005459371422972114],[113,225,64,0.00919001147343266],[113,225,65,0.007600289257498581],[113,225,66,0.0062936284760735095],[113,225,67,0.005232961937186266],[113,225,68,0.004366651839830334],[113,225,69,0.003661666778545648],[113,225,70,0.0031007518137081487],[113,225,71,0.0026786790657189305],[113,225,72,0.002398943572804293],[113,225,73,0.0022707673186625997],[113,225,74,0.0023064177533379427],[113,225,75,0.002518846650569475],[113,225,76,0.0029196546549197697],[113,225,77,0.0035173863756383255],[113,225,78,0.0043161603852836915],[113,225,79,0.00531463798377587],[113,226,64,0.008756447353149354],[113,226,65,0.007078216087784881],[113,226,66,0.005698987693350958],[113,226,67,0.0045859646388974875],[113,226,68,0.0036886481158549347],[113,226,69,0.002972893837959038],[113,226,70,0.0024200026887149133],[113,226,71,0.0020230217687484038],[113,226,72,0.0017834545371329398],[113,226,73,0.0017082852721309022],[113,226,74,0.0018073241209365367],[113,226,75,0.0020908785184741226],[113,226,76,0.0025677562564616844],[113,226,77,0.003243604979284548],[113,226,78,0.004119592376626075],[113,226,79,0.005191430838528846],[113,227,64,0.008324372304807214],[113,227,65,0.006564876617822093],[113,227,66,0.005119617558316471],[113,227,67,0.00396003638381048],[113,227,68,0.0030367428622284395],[113,227,69,0.002314434682507573],[113,227,70,0.0017729342189828849],[113,227,71,0.001403543395377673],[113,227,72,0.0012057702959404647],[113,227,73,0.0011843756830426323],[113,227,74,0.0013467456289384188],[113,227,75,0.0017005959712035332],[113,227,76,0.00225201379437731],[113,227,77,0.003003840628089719],[113,227,78,0.003954401538418236],[113,227,79,0.005096583778726294],[113,228,64,0.007966939232515171],[113,228,65,0.006134091618818483],[113,228,66,0.004629400624797399],[113,228,67,0.003428682654256246],[113,228,68,0.0024837365842011725],[113,228,69,0.0017580933871111817],[113,228,70,0.0012300858385863441],[113,228,71,8.892652900811118E-4],[113,228,72,7.331498446669253E-4],[113,228,73,7.642971300933263E-4],[113,228,74,9.87707801523291E-4],[113,228,75,0.0014085654007507077],[113,228,76,0.0020303176848419165],[113,228,77,0.002853104018587199],[113,228,78,0.003872532905920837],[113,228,79,0.005078813219971241],[113,229,64,0.007738132737799844],[113,229,65,0.005841279627232492],[113,229,66,0.004284603519076637],[113,229,67,0.0030486073643665977],[113,229,68,0.002086503468718153],[113,229,69,0.0013607162743749124],[113,229,70,8.481153467941004E-4],[113,229,71,5.36509703135031E-4],[113,229,72,4.2142856653893984E-4],[113,229,73,5.03229977774311E-4],[113,229,74,7.84543297833024E-4],[113,229,75,0.0012680511242295896],[113,229,76,0.001954615625150006],[113,229,77,0.002841753772868381],[113,229,78,0.003922465435054382],[113,229,79,0.005184417764183414],[113,230,64,0.007671984509107378],[113,230,65,0.005721475008801847],[113,230,66,0.004120835505912066],[113,230,67,0.002855664089150763],[113,230,68,0.0018809215344076184],[113,230,69,0.0011580650951196266],[113,230,70,6.625782552224502E-4],[113,230,71,3.805637472773726E-4],[113,230,72,3.0557280713155907E-4],[113,230,73,4.3576369592383856E-4],[113,230,74,7.713953931765313E-4],[113,230,75,0.0013126618514047843],[113,230,76,0.002057871682152316],[113,230,77,0.003001977619293981],[113,230,78,0.004135459581903746],[113,230,79,0.005443564640446736],[113,231,64,0.0077852786345268205],[113,231,65,0.005792033453596739],[113,231,66,0.00415574706329244],[113,231,67,0.0028675540635001817],[113,231,68,0.0018845797575650829],[113,231,69,0.0011675382907328424],[113,231,70,6.906636191108802E-4],[113,231,71,4.384260040346044E-4],[113,231,72,4.0242962819728905E-4],[113,231,73,5.786387303031327E-4],[113,231,74,9.649379956971103E-4],[113,231,75,0.0015590324279367057],[113,231,76,0.002356691407170132],[113,231,77,0.0033503411191328574],[113,231,78,0.004528009017632422],[113,231,79,0.0058726234680332124],[113,232,64,0.008080112584219487],[113,232,65,0.006055192023909987],[113,232,66,0.004391583624602239],[113,232,67,0.003086381153989301],[113,232,68,0.0020993452525755203],[113,232,69,0.0013907571764490553],[113,232,70,9.338018187569232E-4],[113,232,71,7.114345185722392E-4],[113,232,72,7.133699242871302E-4],[113,232,73,9.333962650942807E-4],[113,232,74,0.0013670205618611308],[113,232,75,0.002009449800677841],[113,232,76,0.0028539125783743854],[113,232,77,0.0038903252129810304],[113,232,78,0.005104305797475338],[113,232,79,0.0064765391666544705],[113,233,64,0.00854631217013188],[113,233,65,0.0065004817076858455],[113,233,66,0.004817592149455876],[113,233,67,0.0035010611995632606],[113,233,68,0.0025137876435595164],[113,233,69,0.0018160139289619959],[113,233,70,0.0013801409316492163],[113,233,71,0.0011877725989525528],[113,233,72,0.0012268211213907255],[113,233,73,0.0014889319388799148],[113,233,74,0.001967233865022475],[113,233,75,0.0026544191133578737],[113,233,76,0.0035411575044823674],[113,233,77,0.004614848626275083],[113,233,78,0.00585871521506575],[113,233,79,0.007251240527813591],[113,234,64,0.009163698896336323],[113,234,65,0.007106990944185454],[113,234,66,0.005412279061570935],[113,234,67,0.004089584342078051],[113,234,68,0.0031054593435091054],[113,234,69,0.0024205802094668123],[113,234,70,0.002006890665039185],[113,234,71,0.0018448515539346176],[113,234,72,0.0019206887818446247],[113,234,73,0.002223953052523278],[113,234,74,0.002745396390733099],[113,234,75,0.003475169958679278],[113,234,76,0.004401347180531656],[113,234,77,0.005508775696594754],[113,234,78,0.006778261178492524],[113,234,79,0.008186085553658799],[113,235,64,0.009904207901634703],[113,235,65,0.007845478380744942],[113,235,66,0.0061455178880671845],[113,235,67,0.00482112876638032],[113,235,68,0.0038430302572332784],[113,235,69,0.0031728750537196766],[113,235,70,0.002782532619173924],[113,235,71,0.002651569303891911],[113,235,72,0.002764666240485649],[113,235,73,0.0031093386090267233],[113,235,74,0.0036739609359700627],[113,235,75,0.004446102619309315],[113,235,76,0.005411177397205378],[113,235,77,0.006551410001815267],[113,235,78,0.007845122767967491],[113,235,79,0.009266344501827364],[113,236,64,0.010733854489964853],[113,236,65,0.008680332917251433],[113,236,66,0.006980504735920982],[113,236,67,0.005658024073095545],[113,236,68,0.0046882752283638396],[113,236,69,0.004034490463820347],[113,236,70,0.0036688954528839323],[113,236,71,0.003570443598823784],[113,236,72,0.003722431194314899],[113,236,73,0.004110401320931549],[113,236,74,0.004720340783752528],[113,236,75,0.00553717392427049],[113,236,76,0.006543556700038622],[113,236,77,0.007718973965177639],[113,236,78,0.009039142435596729],[113,236,79,0.010475721380538533],[113,237,64,0.011614547045822184],[113,237,65,0.00957137890050623],[113,237,66,0.007875559550117215],[113,237,67,0.0065575623176337815],[113,237,68,0.00559791236050782],[113,237,69,0.004962072944090371],[113,237,70,0.004623093327455522],[113,237,71,0.004559618377382283],[113,237,72,0.004753727963132792],[113,237,73,0.005189050511192054],[113,237,74,0.005849154610456547],[113,237,75,0.006716222129156977],[113,237,76,0.007770005873782462],[113,237,77,0.008987074390509234],[113,237,78,0.010340346084549347],[113,237,79,0.011798914416227624],[113,238,64,0.012505743943611598],[113,238,65,0.010475524146249656],[113,238,66,0.008785770916597943],[113,238,67,0.007473654568359923],[113,238,68,0.006525290160545956],[113,238,69,0.005909059037706344],[113,238,70,0.005599325813638394],[113,238,71,0.0055747416030468835],[113,238,72,0.00581633393317735],[113,238,73,0.006305854619880983],[113,238,74,0.0070243890613222466],[113,238,75,0.007951229998866443],[113,238,76,0.009063018390233123],[113,238,77,0.010333153637670772],[113,238,78,0.011731475016934364],[113,238,79,0.013224215764833569],[113,239,64,0.013367926786644531],[113,239,65,0.011351113836779529],[113,239,66,0.009668056777433638],[113,239,67,0.00836241076969701],[113,239,68,0.007426289189811837],[113,239,69,0.006831695564503291],[113,239,70,0.006554814302381223],[113,239,71,0.006574622384994497],[113,239,72,0.006871254465205431],[113,239,73,0.0074246085025238715],[113,239,74,0.008213194923037254],[113,239,75,0.00921323191561868],[113,239,76,0.010397989100483031],[113,239,77,0.011737381433605669],[113,239,78,0.013197814844058466],[113,239,79,0.014742284744341722],[113,240,64,0.014172589489041421],[113,240,65,0.012170580971426025],[113,240,66,0.010495864620864116],[113,240,67,0.009198208578871412],[113,240,68,0.008276035161491982],[113,240,69,0.00770565347862013],[113,240,70,0.007465578791168025],[113,240,71,0.0075354612379174395],[113,240,72,0.007894746020689762],[113,240,73,0.008521555806091777],[113,240,74,0.009391797845295105],[113,240,75,0.010478497966732673],[113,240,76,0.011751363251545847],[113,240,77,0.013176574860613697],[113,240,78,0.014716812147876852],[113,240,79,0.01633150887059281],[113,241,64,0.014901342090500223],[113,241,65,0.012916867128848602],[113,241,66,0.011253335907445506],[113,241,67,0.009966086184345779],[113,241,68,0.009060038924306669],[113,241,69,0.008516445326322253],[113,241,70,0.008316655940123072],[113,241,71,0.008441367848979975],[113,241,72,0.008869593797759066],[113,241,73,0.00957783465597002],[113,241,74,0.010539457219439996],[113,241,75,0.011724279038170818],[113,241,76,0.013098361644606447],[113,241,77,0.014624013248279843],[113,241,78,0.01626000166224964],[113,241,79,0.017961977936804752],[113,242,64,0.01554387561032211],[113,242,65,0.013580545794581879],[113,242,66,0.011931761953979185],[113,242,67,0.010657731255245148],[113,242,68,0.009769934977752814],[113,242,69,0.009255135602048862],[113,242,70,0.009098001205272143],[113,242,71,0.009280665314750532],[113,242,72,0.009782012339339468],[113,242,73,0.010577147231134194],[113,242,74,0.01163705088098618],[113,242,75,0.01292842246623795],[113,242,76,0.014413709688047496],[113,242,77,0.016051327560738637],[113,242,78,0.017796066149202035],[113,242,79,0.019599687395176923],[113,243,64,0.016097113547955837],[113,243,65,0.014159035217251127],[113,243,66,0.012528867444927485],[113,243,67,0.01127084959510162],[113,243,68,0.01040295349043355],[113,243,69,0.009917936004007628],[113,243,70,0.009804227576040183],[113,243,71,0.010045791892211218],[113,243,72,0.010621728199759388],[113,243,73,0.01150603886446454],[113,243,74,0.012667563178740633],[113,243,75,0.014070078177089768],[113,243,76,0.01567256696638239],[113,243,77,0.017429654836769934],[113,243,78,0.019292213186714764],[113,243,79,0.02023916310659744],[113,244,64,0.01656433444614462],[113,244,65,0.014655778710012262],[113,244,66,0.013048057523835857],[113,244,67,0.011808492299773083],[113,244,68,0.01096134446627156],[113,244,69,0.010505745762609908],[113,244,70,0.010434282092356273],[113,244,71,0.010733133446505115],[113,244,72,0.011381986796686068],[113,244,73,0.012354095686422597],[113,244,74,0.01361648705370367],[113,244,75,0.01513031559461955],[113,244,76,0.016851365760654],[113,244,77,0.01873070127317407],[113,244,78,0.02071546183972241],[113,244,79,0.018765432186170106],[113,245,64,0.016954265001464318],[113,245,65,0.015079391823939128],[113,245,66,0.013497627829819444],[113,245,67,0.012278340702163623],[113,245,68,0.011451753236727386],[113,245,69,0.011023636102966491],[113,245,70,0.010991059082061442],[113,245,71,0.01134278541957207],[113,245,72,0.012059482166432796],[113,245,73,0.013114059439782123],[113,245,74,0.014472138685102704],[113,245,75,0.016092649826952833],[113,245,76,0.017928557008824092],[113,245,77,0.019927712444936473],[113,245,78,0.019535134786098814],[113,245,79,0.017394703547601253],[113,246,64,0.017280143319368967],[113,246,65,0.015442775927007615],[113,246,66,0.013889936944639912],[113,246,67,0.012691948479167575],[113,246,68,0.011884546540564124],[113,246,69,0.011480277974470036],[113,246,70,0.011480949116961663],[113,246,71,0.01187824318467088],[113,246,72,0.012654208362163286],[113,246,73,0.013781858092899403],[113,246,74,0.015225883237018534],[113,246,75,0.016943475592631697],[113,246,76,0.018885262119204018],[113,246,77,0.02062588470010717],[113,246,78,0.01841882629045588],[113,246,79,0.016162195145696442],[113,247,64,0.017558752037803525],[113,247,65,0.015762197844310273],[113,247,66,0.014240540831823889],[113,247,67,0.0130639404050642],[113,247,68,0.012273088552812018],[113,247,69,0.011887312269630709],[113,247,70,0.011913322761319258],[113,247,71,0.012346019710627038],[113,247,72,0.01316923127383445],[113,247,73,0.014356550896051286],[113,247,74,0.01587227023140194],[113,247,75,0.017672407313187723],[113,247,76,0.019705828987360976],[113,247,77,0.019774175410966377],[113,247,78,0.01746290903806207],[113,247,79,0.01510013936831406],[113,248,64,0.017809421185752693],[113,248,65,0.016056335353011063],[113,248,66,0.014567288981583392],[113,248,67,0.013411167361444154],[113,248,68,0.012632966342563412],[113,248,69,0.012258661862124856],[113,248,70,0.012299948281290506],[113,248,71,0.012755189538070784],[113,248,72,0.013610379707559843],[113,248,73,0.014840186561443865],[113,248,74,0.016409077083680054],[113,248,75,0.018272523781032366],[113,248,76,0.0203782905189958],[113,248,77,0.019088017290923874],[113,248,78,0.016689980888047087],[113,248,79,0.014236642569251123],[113,249,64,0.018053000801595245],[113,249,65,0.016345288480229373],[113,249,66,0.014889382124986547],[113,249,67,0.013751817357758324],[113,249,68,0.012981164376313697],[113,249,69,0.012609784921855952],[113,249,70,0.012654342599341764],[113,249,71,0.013116858169625805],[113,249,72,0.013985854642251584],[113,249,73,0.015237573304505238],[113,249,74,0.016837259367586763],[113,249,75,0.01874051581243034],[113,249,76,0.020894723930015433],[113,249,77,0.01858008825794922],[113,249,78,0.0161177978293959],[113,249,79,0.013594640509372532],[113,250,64,0.018310803511715573],[113,250,65,0.01664955672449212],[113,250,66,0.01522639154894806],[113,250,67,0.014104482479912287],[113,250,68,0.013335187841068092],[113,250,69,0.012956869114179304],[113,250,70,0.012991054915632695],[113,250,71,0.013443556098746187],[113,250,72,0.014305755684809157],[113,250,73,0.015555959564024825],[113,250,74,0.017160806428393544],[113,250,75,0.019076735316876838],[113,250,76,0.020621002325602093],[113,250,77,0.018258123139109888],[113,250,78,0.01575856309308333],[113,250,79,0.01319095183534623],[113,251,64,0.018603517463313984],[113,251,65,0.016988982512538865],[113,251,66,0.015597240231187632],[113,251,67,0.014487181868136264],[113,251,68,0.013712134740661524],[113,251,69,0.013315966462779815],[113,251,70,0.013324882580385104],[113,251,71,0.013748556849473773],[113,251,72,0.01458152387369956],[113,251,73,0.015804624323626424],[113,251,74,0.017386501040471996],[113,251,75,0.019285144258606862],[113,251,76,0.020485797749220387],[113,251,77,0.018124537064017853],[113,251,78,0.015618319079134624],[113,251,79,0.013035431840245693],[113,252,64,0.018950090217638205],[113,252,65,0.017381661414082265],[113,252,66,0.016019146222416403],[113,252,67,0.014916341030845473],[113,252,68,0.014127716921053973],[113,252,69,0.013702068852553114],[113,252,70,0.013670018989072195],[113,252,71,0.014045118573680042],[113,252,72,0.014825300136539744],[113,252,73,0.0159943760891032],[113,252,74,0.01752358190831218],[113,252,75,0.01937316205549453],[113,252,76,0.02050224824860653],[113,252,77,0.018176154410574453],[113,252,78,0.015696444250020675],[113,252,79,0.0131302288514781],[113,253,64,0.019366584441907204],[113,253,65,0.017842819868687188],[113,253,66,0.016506528932827242],[113,253,67,0.01540572802967081],[113,253,68,0.014595230407232115],[113,253,69,0.01412812437187178],[113,253,70,0.014039133487696349],[113,253,71,0.01434564895536845],[113,253,72,0.015049198892405585],[113,253,73,0.016136959737582147],[113,253,74,0.017583307942119895],[113,253,75,0.019351410057665695],[113,253,76,0.02066039902735362],[113,253,77,0.01840404522541395],[113,253,78,0.015985257176798003],[113,253,79,0.013469145676952825],[113,254,64,0.019865006490901106],[113,254,65,0.018383661432231347],[113,254,66,0.017069879232594017],[113,254,67,0.01596534732353973],[113,254,68,0.015124475687200288],[113,254,69,0.014603994944443918],[113,254,70,0.014442383520291327],[113,254,71,0.014660793405345806],[113,254,72,0.015264496506211181],[113,254,73,0.01624437064760899],[113,254,74,0.01757842340229918],[113,254,75,0.01923335187517434],[113,254,76,0.02094599779604956],[113,254,77,0.01879347100327186],[113,254,78,0.0164697299374154],[113,254,79,0.014037108607878667],[113,255,64,0.02045210924350485],[113,255,65,0.01901018282651256],[113,255,66,0.017714594552705003],[113,255,67,0.01660029233794514],[113,255,68,0.015720628858887552],[113,255,69,0.015135355981296863],[113,255,70,0.014886359526995466],[113,255,71,0.014998446796123215],[113,255,72,0.015480734552897118],[113,255,73,0.016328075746461678],[113,255,74,0.017522523204000478],[113,255,75,0.019034828483644187],[113,255,76,0.020825974035507046],[113,255,77,0.019323941643443688],[113,255,78,0.017127313055200155],[113,255,79,0.014809746523783078],[113,256,64,0.020863061396990963],[113,256,65,0.019721961375648075],[113,256,66,0.018439780474356023],[113,256,67,0.017309558130797424],[113,256,68,0.016383064865258715],[113,256,69,0.015722539095079487],[113,256,70,0.015372963410641422],[113,256,71,0.015362689288526141],[113,256,72,0.015704738135762532],[113,256,73,0.016398141374883185],[113,256,74,0.017429317906162825],[113,256,75,0.018773487231597216],[113,256,76,0.020396116483240898],[113,256,77,0.019969385304945107],[113,256,78,0.017927874127188225],[113,256,79,0.01575308266990531],[113,257,64,0.020166667473954614],[113,257,65,0.020510930036020423],[113,257,66,0.019237034080070325],[113,257,67,0.018084828553611643],[113,257,68,0.01710414642868744],[113,257,69,0.01635933082267806],[113,257,70,0.01589823300438382],[113,257,71,0.015752658342328675],[113,257,72,0.01593956119881878],[113,257,73,0.016462279951952836],[113,257,74,0.017311810606674312],[113,257,75,0.018468117400469684],[113,257,76,0.019901478763066128],[113,257,77,0.020698447739559523],[113,257,78,0.01883376590035395],[113,257,79,0.01682335392759362],[113,258,64,0.019402469592479425],[113,258,65,0.020780308035297585],[113,258,66,0.020089287161351086],[113,258,67,0.01890941692882875],[113,258,68,0.01786824937135425],[113,258,69,0.01703206810024553],[113,258,70,0.016451492328589657],[113,258,71,0.0161617381103853],[113,258,72,0.016183699701866467],[113,258,73,0.016525072368888463],[113,258,74,0.017181515236072403],[113,258,75,0.018137852713752324],[113,258,76,0.019369312987679965],[113,258,77,0.020842802014492495],[113,258,78,0.019800856305730443],[113,258,79,0.017968081725613545],[113,259,64,0.018598362694480463],[113,259,65,0.01995182822747496],[113,259,66,0.020972812445556342],[113,259,67,0.019762446505355694],[113,259,68,0.018657896047390925],[113,259,69,0.017727228318261807],[113,259,70,0.01702369376456659],[113,259,71,0.016585804266676153],[113,259,72,0.016438301484108356],[113,259,73,0.016593167685866914],[113,259,74,0.017050677795712715],[113,259,75,0.017800491318949088],[113,259,76,0.01882278276179754],[113,259,77,0.020089409107383955],[113,259,78,0.020796427002621035],[113,259,79,0.01915053299834476],[113,260,64,0.017783278092765944],[113,260,65,0.01911176010765749],[113,260,66,0.02040637152424761],[113,260,67,0.02062772364616195],[113,260,68,0.019462039599447905],[113,260,69,0.01843906335489066],[113,260,70,0.017614328794964818],[113,260,71,0.017029336167584435],[113,260,72,0.016712410128106488],[113,260,73,0.01667960067422563],[113,260,74,0.01693562583513855],[113,260,75,0.017474854910304923],[113,260,76,0.018282330994268316],[113,260,77,0.01933483147287507],[113,260,78,0.0206019651335965],[113,260,79,0.020351058868150414],[113,261,64,0.01697942427408944],[113,261,65,0.018279152703515624],[113,261,66,0.019566422609769832],[113,261,67,0.02085009283579203],[113,261,68,0.020273962362777505],[113,261,69,0.01916556789966591],[113,261,70,0.018226125706021876],[113,261,71,0.017499653157204406],[113,261,72,0.01701764562245845],[113,261,73,0.01679987120741779],[113,261,74,0.016855206879132056],[113,261,75,0.017182514894415895],[113,261,76,0.0177715583916624],[113,261,77,0.018603954952612606],[113,261,78,0.019654166894653984],[113,261,79,0.020890527016652827],[113,262,64,0.016202593983485888],[113,262,65,0.01746721917026673],[113,262,66,0.018739234647550354],[113,262,67,0.02003508615636165],[113,262,68,0.021090635882103654],[113,262,69,0.019907734241803938],[113,262,70,0.018864203476497605],[113,262,71,0.018005977897335688],[113,262,72,0.017367191933143112],[113,262,73,0.01697087396115769],[113,262,74,0.016829680028021272],[113,262,75,0.016946666502643714],[113,262,76,0.017316100642078846],[113,262,77,0.017924307997318374],[113,262,78,0.01875055553860711],[113,262,79,0.01976796934008513],[113,263,64,0.015462391812792008],[113,263,65,0.0166835246556913],[113,263,66,0.017930060703168132],[113,263,67,0.019225970239069426],[113,263,68,0.020538326889840947],[113,263,69,0.02066938134161205],[113,263,70,0.01953583722762831],[113,263,71,0.0185591069851771],[113,263,72,0.017775341758908852],[113,263,73,0.01721028746910325],[113,263,74,0.016879921578121796],[113,263,75,0.01679112614526295],[113,263,76,0.01694239626857636],[113,263,77,0.01732458295961081],[113,263,78,0.017921669450580532],[113,263,79,0.018711579893547485],[113,264,64,0.01476210273468463],[113,264,65,0.015929815259555426],[113,264,66,0.017138944532769557],[113,264,67,0.01842080591406842],[113,264,68,0.019746730048659678],[113,264,69,0.021048546100046257],[113,264,70,0.02025054424684636],[113,264,71,0.01917138787232059],[113,264,72,0.01825733131510714],[113,264,73,0.01753623514093283],[113,264,74,0.01702688300280487],[113,264,75,0.016739560287302],[113,264,76,0.016676664258577317],[113,264,77,0.01683334486323507],[113,264,78,0.017198175315952902],[113,264,79,0.01775385154807987],[113,265,64,0.01409819849173496],[113,265,65,0.015201485131356938],[113,265,66,0.016360158123198926],[113,265,67,0.017612572455393716],[113,265,68,0.018934712261801163],[113,265,69,0.020260842671894812],[113,265,70,0.02102049288705879],[113,265,71,0.01985700432819757],[113,265,72,0.018829467363801724],[113,265,73,0.017967220469912348],[113,265,74,0.017291303565278138],[113,265,75,0.016814948194958733],[113,265,76,0.016544093927834336],[113,265,77,0.016477930246140242],[113,265,78,0.016609463167535515],[113,265,79,0.016926105807248435],[113,266,64,0.013459479337969487],[113,266,65,0.01448667932764716],[113,266,66,0.015581278415571938],[113,266,67,0.016788241847224297],[113,266,68,0.018088538665615127],[113,266,69,0.019419743500506865],[113,266,70,0.02072714606438042],[113,266,71,0.020632572223701975],[113,266,72,0.0195095482588026],[113,266,73,0.018522338224769667],[113,266,74,0.017693679417032603],[113,266,75,0.01703928049737799],[113,266,76,0.016568249084099023],[113,266,77,0.01628353828943303],[113,266,78,0.016182411565656044],[113,266,79,0.01625692519534137],[113,267,64,0.012825849179278025],[113,267,65,0.01376503058808889],[113,267,66,0.014781901496381157],[113,267,67,0.01592749644172057],[113,267,68,0.01718802394784663],[113,267,69,0.018505201075233114],[113,267,70,0.019827297709102513],[113,267,71,0.021110003938731206],[113,267,72,0.02031758036015807],[113,267,73,0.019221763022301788],[113,267,74,0.018254490651413834],[113,267,75,0.017433495135822916],[113,267,76,0.016770688192206548],[113,267,77,0.016272516087543796],[113,267,78,0.015940324940259706],[113,267,79,0.01577073606694581],[113,268,64,0.012166722669892964],[113,268,65,0.013006028689103385],[113,268,66,0.013931993024777399],[113,268,67,0.015001088879015656],[113,268,68,0.01620493700229965],[113,268,69,0.017490164215859198],[113,268,70,0.018808760585940876],[113,268,71,0.020118965033791254],[113,268,72,0.021276790792322326],[113,268,73,0.020087516311354043],[113,268,74,0.018994687428617672],[113,268,75,0.018017651929544538],[113,268,76,0.017170801907560033],[113,268,77,0.016463839585623256],[113,268,78,0.015902044797571888],[113,268,79,0.015486543730179412],[113,269,64,0.011439063295910048],[113,269,65,0.012167021496295524],[113,269,66,0.012989874111974543],[113,269,67,0.013968843570486476],[113,269,68,0.015101055324691004],[113,269,69,0.016338726560852182],[113,269,70,0.017638216316191134],[113,269,71,0.01896090765227302],[113,269,72,0.02027299197829335],[113,269,73,0.0211445124644632],[113,269,74,0.0199364359653971],[113,269,75,0.018811346673728465],[113,269,76,0.017785869037715677],[113,269,77,0.01687279140697227],[113,269,78,0.01608123619209386],[113,269,79,0.01541682147292828],[113,270,64,0.010585051914118215],[113,270,65,0.011190847262550128],[113,270,66,0.01189984227952881],[113,270,67,0.012777299440847193],[113,270,68,0.013825868894798293],[113,270,69,0.015003934860388394],[113,270,70,0.016272758655293637],[113,270,71,0.017597339513471654],[113,270,72,0.01894623149116062],[113,270,73,0.020291378520642615],[113,270,74,0.021104124888861674],[113,270,75,0.019834365398702633],[113,270,76,0.01863133171082261],[113,270,77,0.01751083651504712],[113,270,78,0.0164858505865471],[113,270,79,0.015566554800866038],[113,271,64,0.00956171815455943],[113,271,65,0.010035592599064141],[113,271,66,0.010621740895810338],[113,271,67,0.011388743814250448],[113,271,68,0.01234471490682597],[113,271,69,0.013454657921826006],[113,271,70,0.014685139185401446],[113,271,71,0.016005113145993375],[113,271,72,0.017385771496066314],[113,271,73,0.01880042233692317],[113,271,74,0.020224399559618144],[113,271,75,0.021093905872421242],[113,271,76,0.01971107345220836],[113,271,77,0.01837901864114831],[113,271,78,0.01711464326558831],[113,271,79,0.01593282325230725],[113,272,64,0.00843857437278991],[113,272,65,0.008772710454756395],[113,272,66,0.009228504033777318],[113,272,67,0.009877010557497692],[113,272,68,0.01073159197141881],[113,272,69,0.011764163852610997],[113,272,70,0.012946881632490801],[113,272,71,0.014252916679616272],[113,272,72,0.01565633558911019],[113,272,73,0.017132021690032778],[113,272,74,0.01865563887809609],[113,272,75,0.02020363781399618],[113,272,76,0.02098706621632378],[113,272,77,0.01944825917595087],[113,272,78,0.017948144919407327],[113,272,79,0.016506262247579014],[113,273,64,0.007304520648012696],[113,273,65,0.007493442350931489],[113,273,66,0.007813047727961714],[113,273,67,0.00833590695809637],[113,273,68,0.009080258616683018],[113,273,69,0.01002505306761876],[113,273,70,0.011148199308872557],[113,273,71,0.012427276613596328],[113,273,72,0.013839439381092836],[113,273,73,0.015361376316277807],[113,273,74,0.016969323982896585],[113,273,75,0.018639134687795732],[113,273,76,0.020346398568408714],[113,273,77,0.02068001753454293],[113,273,78,0.018959094743214104],[113,273,79,0.017271373365568374],[113,274,64,0.006236801586245871],[113,274,65,0.006277554897065786],[113,274,66,0.00645710958270304],[113,274,67,0.006848518636143072],[113,274,68,0.007474390157132482],[113,274,69,0.008320664373766376],[113,274,70,0.00937104434702631],[113,274,71,0.010607628186461267],[113,274,72,0.012010832793402409],[113,274,73,0.013559383661371419],[113,274,74,0.015230370723901676],[113,274,75,0.01699937013162094],[113,274,76,0.018840631735652258],[113,274,77,0.020727331954026595],[113,274,78,0.020115981038316223],[113,274,79,0.018206642356458493],[113,275,64,0.005301845418700514],[113,275,65,0.0051941106796220505],[113,275,66,0.005231940952921841],[113,275,67,0.005487811452187675],[113,275,68,0.005988080240192579],[113,275,69,0.006725469275147182],[113,275,70,0.007689390971783722],[113,275,71,0.00886648672261557],[113,275,72,0.010240561269572445],[113,275,73,0.01179259419112047],[113,275,74,0.013500828450211092],[113,275,75,0.01534093582052971],[113,275,76,0.017286258884899278],[113,275,77,0.019308129181309034],[113,275,78,0.02137626095993903],[113,275,79,0.019285028487430134],[113,276,64,0.004555921887938835],[113,276,65,0.004302055682833323],[113,276,66,0.004198814652028948],[113,276,67,0.004317048259856635],[113,276,68,0.004686156445366571],[113,276,69,0.005305279432147907],[113,276,70,0.006169330936749868],[113,276,71,0.007269430079788257],[113,276,72,0.00859283696941084],[113,276,73,0.010122975531168883],[113,276,74,0.011839543497467402],[113,276,75,0.013718709323738788],[113,276,76,0.01573339565728371],[113,276,77,0.0178536488494359],[113,276,78,0.02004709387353133],[113,276,79,0.02047465162692405],[113,277,64,0.004045617141197776],[113,277,65,0.003650621542598415],[113,277,66,0.003409346585943058],[113,277,67,0.0033900190160580596],[113,277,68,0.003624308577118874],[113,277,69,0.004117266055582726],[113,277,70,0.0048689800551270325],[113,277,71,0.005874891283246476],[113,277,72,0.007125719191589593],[113,277,73,0.0086074848435529],[113,277,74,0.010301629904837729],[113,277,75,0.01218523149022832],[113,277,76,0.014231312442674256],[113,277,77,0.01640924647003925],[113,277,78,0.018685257421935397],[113,277,79,0.02102301185525457],[113,278,64,0.0038081241317845247],[113,278,65,0.0032795412113178664],[113,278,66,0.0029056299816080863],[113,278,67,0.00275108302222031],[113,278,68,0.0028490285433485267],[113,278,69,0.0032097902570253395],[113,278,70,0.003838194983875053],[113,278,71,0.004733760649549048],[113,278,72,0.005890603475137037],[113,278,73,0.007297449039864251],[113,278,74,0.008937747110474788],[113,278,75,0.010789889954905707],[113,278,76,0.012827533686636973],[113,278,77,0.015020022021722758],[113,278,78,0.01733291167439485],[113,278,79,0.019728598470732966],[113,279,64,0.003871347290549484],[113,279,65,0.003219076867366076],[113,279,66,0.0027201811267614957],[113,279,67,0.0024350223094304403],[113,279,68,0.002397360940824675],[113,279,69,0.002622043595293524],[113,279,70,0.003118099627536336],[113,279,71,0.0038887968981346733],[113,279,72,0.004931519013589789],[113,279,73,0.006237752601753266],[113,279,74,0.00779318453282088],[113,279,75,0.009577908807259164],[113,279,76,0.011566742648968113],[113,279,77,0.013729651165971647],[113,279,78,0.01603227977348127],[113,279,79,0.01843659341681757],[113,280,64,0.004253820470420813],[113,280,65,0.003489859138249687],[113,280,66,0.002875695765315825],[113,280,67,0.0024667053988478467],[113,280,68,0.0022964636774378444],[113,280,69,0.0023834982567307998],[113,280,70,0.002740420714349151],[113,280,71,0.0033738469234935765],[113,280,72,0.004284234177885225],[113,280,73,0.005465832929565094],[113,280,74,0.006906753082934518],[113,280,75,0.008589144590167451],[113,280,76,0.010489491900610232],[113,280,77,0.012579021631368568],[113,280,78,0.014824222649529045],[113,280,79,0.01718747758994717],[113,281,64,0.004964437387876921],[113,281,65,0.004102536921374254],[113,281,66,0.003384615499602789],[113,281,67,0.0028605608663883333],[113,281,68,0.0025629781485898943],[113,281,69,0.0025131664835326985],[113,281,70,0.0027266322624507127],[113,281,71,0.003212874054027781],[113,281,72,0.003975170085368854],[113,281,73,0.005010483269042308],[113,281,74,0.006309483770064278],[113,281,75,0.007856688901675927],[113,281,76,0.009630719939334766],[113,281,77,0.011604675249879733],[113,281,78,0.01374661894893232],[113,281,79,0.01602018412586381],[113,282,64,0.006001993985976629],[113,282,65,0.005057237280674651],[113,282,66,0.004248503736839817],[113,282,67,0.003619860317352697],[113,282,68,0.0032022086514476417],[113,282,69,0.0030186690198155575],[113,282,70,0.0030869087979618413],[113,282,71,0.003418794755884289],[113,282,72,0.004020122272464011],[113,282,73,0.004890463374149544],[113,282,74,0.006023133658860489],[113,282,75,0.007405277956991119],[113,282,76,0.009018074377644222],[113,282,77,0.010837056191140875],[113,282,78,0.012832550810039582],[113,282,79,0.014970234951959507],[113,283,64,0.007354542323963556],[113,283,65,0.006342835070960488],[113,283,66,0.005457230882314239],[113,283,67,0.0047358105322094874],[113,283,68,0.004207110865911268],[113,283,69,0.0038951124792094716],[113,283,70,0.0038188873093210484],[113,283,71,0.003992123850812263],[113,283,72,0.004422790627361806],[113,283,73,0.005112918150929703],[113,283,74,0.0060584995116535105],[113,283,75,0.007249509531433721],[113,283,76,0.008670042208670915],[113,283,77,0.01029856598232132],[113,283,78,0.012108296151937249],[113,283,79,0.01406768360823572],[113,284,64,0.008998555758170355],[113,284,65,0.007936032094339955],[113,284,66,0.006987968625591209],[113,284,67,0.006186454678779361],[113,284,68,0.005557089354635579],[113,284,69,0.00512377565010034],[113,284,70,0.004906238023015921],[113,284,71,0.0049194284060577005],[113,284,72,0.005173117816137081],[113,284,73,0.0056716045924839285],[113,284,74,0.0064135395027286645],[113,284,75,0.0073918677472201095],[113,284,76,0.0085938876870282],[113,284,77,0.01000142592189168],[113,284,78,0.011591128152331511],[113,284,79,0.013334865076803735],[113,285,64,0.010897905317533619],[113,285,65,0.009800245724082505],[113,285,66,0.008803993288109381],[113,285,67,0.007935382598182763],[113,285,68,0.007216604135863096],[113,285,69,0.006670604844815694],[113,285,70,0.006317044164402758],[113,285,71,0.006171590521020288],[113,285,72,0.006245436490527245],[113,285,73,0.006544927358217423],[113,285,74,0.007071303423029313],[113,285,75,0.007820556187247984],[113,285,76,0.008783398371138831],[113,285,77,0.009945347495004085],[113,285,78,0.011286922580562806],[113,285,79,0.012783953340809506],[113,286,64,0.013002647293885974],[113,286,65,0.011884307040149844],[113,286,66,0.010853298300221395],[113,286,67,0.009930250261485571],[113,286,68,0.009133586461557533],[113,286,69,0.008484518466413585],[113,286,70,0.00800199092297169],[113,286,71,0.0077018792792063985],[113,286,72,0.007596425597567618],[113,286,73,0.007693783370748837],[113,286,74,0.007997671802557324],[113,286,75,0.008507139816882277],[113,286,76,0.009216439860871253],[113,286,77,0.010115011375572388],[113,286,78,0.01118757361989636],[113,286,79,0.012414327353214495],[113,287,64,0.015247622161616082],[113,287,65,0.014120968606661831],[113,287,66,0.01306701595235749],[113,287,67,0.01210110856030349],[113,287,68,0.011237663988654714],[113,287,69,0.010495521010575626],[113,287,70,0.009892363873478456],[113,287,71,0.009443832154190352],[113,287,72,0.0091628761196256],[113,287,73,0.009059215800604545],[113,287,74,0.009138904363176487],[113,287,75,0.009403996169338272],[113,287,76,0.009852319728628866],[113,287,77,0.01047735555479809],[113,287,78,0.011268218758924621],[113,287,79,0.012209746033327086],[113,288,64,0.0175508650124322],[113,288,65,0.01642522208391836],[113,288,66,0.015357648617693993],[113,288,67,0.014358541636857632],[113,288,68,0.013438195562325238],[113,288,69,0.012612626739569647],[113,288,70,0.011897857111966094],[113,288,71,0.011308946153974316],[113,288,72,0.010859266557240564],[113,288,73,0.010559877781132591],[113,288,74,0.0104189981756794],[113,288,75,0.010441576200762291],[113,288,76,0.010628961082489338],[113,288,77,0.01097867306696207],[113,288,78,0.011484273254345938],[113,288,79,0.012135332823527523],[113,289,64,0.019811827453009273],[113,289,65,0.01869242611923198],[113,289,66,0.01761711038794717],[113,289,67,0.016591616195297382],[113,289,68,0.015622117550788765],[113,289,69,0.014721595450582721],[113,289,70,0.01390419398346925],[113,289,71,0.0131841819934446],[113,289,72,0.012575151803039948],[113,289,73,0.012089309794494116],[113,289,74,0.01173685967845705],[113,289,75,0.011525479104501135],[113,289,76,0.011459890092677486],[113,289,77,0.011541523591577972],[113,289,78,0.011768278296981505],[113,289,79,0.012134373697332203],[113,290,64,0.02093431228983422],[113,290,65,0.020799902559286765],[113,290,66,0.019720405829850858],[113,290,67,0.018673632882659715],[113,290,68,0.017661724355786286],[113,290,69,0.01669464716972001],[113,290,70,0.015784627200364776],[113,290,71,0.014945047678748108],[113,290,72,0.014189577995879821],[113,290,73,0.013531388373134771],[113,290,74,0.012982451341018544],[113,290,75,0.012552930802609885],[113,290,76,0.012250659290985556],[113,290,77,0.01208070386332216],[113,290,78,0.012045020909172267],[113,290,79,0.012142199987695787],[113,291,64,0.019111603036167345],[113,291,65,0.020222101031833157],[113,291,66,0.021308931138696207],[113,291,67,0.02049806413202934],[113,291,68,0.01945540085878368],[113,291,69,0.018435745414661885],[113,291,70,0.017449388819431075],[113,291,71,0.016508698038552264],[113,291,72,0.015627193233592584],[113,291,73,0.014818704205157756],[113,291,74,0.014096607061990483],[113,291,75,0.013473141993689455],[113,291,76,0.0129588128671691],[113,291,77,0.012561869209206914],[113,291,78,0.012287870980146227],[113,291,79,0.012139336388011596],[113,292,64,0.017658712427699695],[113,292,65,0.018746815539081592],[113,292,66,0.019818928254099498],[113,292,67,0.02088307406929417],[113,292,68,0.02092972944958096],[113,292,69,0.019877266720398256],[113,292,70,0.018837211023463182],[113,292,71,0.017820731322320465],[113,292,72,0.01684087976154935],[113,292,73,0.01591171766917332],[113,292,74,0.015047513770974737],[113,292,75,0.014262015562754384],[113,292,76,0.013567794641964101],[113,292,77,0.012975666654359664],[113,292,78,0.01249418636518844],[113,292,79,0.012129218218805226],[113,293,64,0.016640038725964715],[113,293,65,0.017694049866058357],[113,293,66,0.01873657929921802],[113,293,67,0.019780514659222773],[113,293,68,0.02083523348629568],[113,293,69,0.020973560110033488],[113,293,70,0.01990756572924097],[113,293,71,0.018846210978395134],[113,293,72,0.017801693682808883],[113,293,73,0.016787783809545452],[113,293,74,0.015819017106217564],[113,293,75,0.014909951926000494],[113,293,76,0.014074490083615613],[113,293,77,0.013325262457553503],[113,293,78,0.012673079923202886],[113,293,79,0.012126450070564131],[113,294,64,0.016094888971168536],[113,294,65,0.017100928108689795],[113,294,66,0.018096567883636255],[113,294,67,0.01909971977209446],[113,294,68,0.02012326342572542],[113,294,69,0.02116755642118014],[113,294,70,0.020638925860489998],[113,294,71,0.019567887493758252],[113,294,72,0.018497022767814043],[113,294,73,0.017439220440521146],[113,294,74,0.016408573706392718],[113,294,75,0.015419659640757042],[113,294,76,0.014486870277534966],[113,294,77,0.013623796055976979],[113,294,78,0.012842662261860047],[113,294,79,0.012153818977580395],[113,295,64,0.016039156138873266],[113,295,65,0.0169818443158129],[113,295,66,0.01791168767797321],[113,295,67,0.018851720170595103],[113,295,68,0.019818045667032342],[113,295,69,0.020812854831831755],[113,295,70,0.021027220266533368],[113,295,71,0.01998461707829587],[113,295,72,0.01892894537327406],[113,295,73,0.017871582750285855],[113,295,74,0.0168254165314751],[113,295,75,0.01580418668206057],[113,295,76,0.014821865241269074],[113,295,77,0.013892072975958467],[113,295,78,0.013027533885119978],[113,295,79,0.012239568098154721],[113,296,64,0.01646680983514126],[113,296,65,0.01732991445238358],[113,296,66,0.018174249485596265],[113,296,67,0.01902797941681742],[113,296,68,0.019910075886446513],[113,296,69,0.020824158773873266],[113,296,70,0.02108448349104074],[113,296,71,0.020109978325492182],[113,296,72,0.01911279153246705],[113,296,73,0.01810214540047152],[113,296,74,0.01708893414461803],[113,296,75,0.016085173257244557],[113,296,76,0.015103467398626712],[113,296,77,0.014156497468659632],[113,296,78,0.013256527449666277],[113,296,79,0.012414931557098635],[113,297,64,0.017351199049409807],[113,297,65,0.018118238144549405],[113,297,66,0.01885729714921352],[113,297,67,0.019601571187046928],[113,297,68,0.020372466840980763],[113,297,69,0.02117459111297808],[113,297,70,0.02083770142200999],[113,297,71,0.01997108780644202],[113,297,72,0.019075907100456094],[113,297,73,0.018158592932272937],[113,297,74,0.01722726469509716],[113,297,75,0.016291326828893588],[113,297,76,0.015361065815031594],[113,297,77,0.014447245405936882],[113,297,78,0.013560700599876732],[113,297,79,0.01271193085570284],[113,298,64,0.018646165654572635],[113,298,65,0.019300968961269545],[113,298,66,0.01991563111828225],[113,298,67,0.020528163783053607],[113,298,68,0.021161907579270802],[113,298,69,0.021016022901762053],[113,298,70,0.020327853702980292],[113,298,71,0.019607615401221554],[113,298,72,0.01885662168127734],[113,298,73,0.01807791912846446],[113,298,74,0.017276105173340408],[113,298,75,0.01645711983867876],[113,298,76,0.015628011608133995],[113,298,77,0.014796677772137149],[113,298,78,0.01397157963920108],[113,298,79,0.013161433029616872],[113,299,64,0.020286967491718218],[113,299,65,0.020814192130788597],[113,299,66,0.02128663864163516],[113,299,67,0.021072977911625518],[113,299,68,0.02060655601484786],[113,299,69,0.020119957898593065],[113,299,70,0.019609153656913802],[113,299,71,0.019071000041403337],[113,299,72,0.018503420930399583],[113,299,73,0.017905535841579896],[113,299,74,0.017277736363103837],[113,299,75,0.016621710470197504],[113,299,76,0.015940414783578154],[113,299,77,0.015237994912645233],[113,299,78,0.014519654109242299],[113,299,79,0.013791470536359495],[113,300,64,0.020584550453909837],[113,300,65,0.020213222177198755],[113,300,66,0.0199105493843749],[113,300,67,0.019629972849065692],[113,300,68,0.019346003259381836],[113,300,69,0.01905393658993592],[113,300,70,0.018748486368812788],[113,300,71,0.018423866430425092],[113,300,72,0.01807432371521531],[113,300,73,0.017694591682825087],[113,300,74,0.01728026379343375],[113,300,75,0.016828086658387878],[113,300,76,0.016336172605935607],[113,300,77,0.015804131549816955],[113,300,78,0.015233122186659042],[113,300,79,0.014625822681588161],[113,301,64,0.018506672943860304],[113,301,65,0.01828959693651401],[113,301,66,0.018158784866005726],[113,301,67,0.018064103298479652],[113,301,68,0.017979879229012823],[113,301,69,0.017902307406635638],[113,301,70,0.017825045491681242],[113,301,71,0.01773964322530918],[113,301,72,0.01763646452965393],[113,301,73,0.01750550087454581],[113,301,74,0.017337074894742715],[113,301,75,0.01712243344689718],[113,301,76,0.01685422949964638],[113,301,77,0.01652689245192791],[113,301,78,0.016136886672575637],[113,301,79,0.0156828582470861],[113,302,64,0.016381952167376947],[113,302,65,0.016329410940957422],[113,302,66,0.016380959107051715],[113,302,67,0.016483431869298227],[113,302,68,0.01661156336620297],[113,302,69,0.016762870281029487],[113,302,70,0.016930169283749782],[113,302,71,0.017102383104705472],[113,302,72,0.017265881496998484],[113,302,73,0.01740568250202629],[113,302,74,0.017506512489834047],[113,302,75,0.017553723713623116],[113,302,76,0.01753406838497752],[113,302,77,0.01743632854150857],[113,302,78,0.017251801240008715],[113,302,79,0.016974638864120352],[113,303,64,0.014321128664103152],[113,303,65,0.014441291039054002],[113,303,66,0.014682725927193174],[113,303,67,0.014989809330795838],[113,303,68,0.015338240603304106],[113,303,69,0.01572722964218977],[113,303,70,0.016148969276747388],[113,303,71,0.016589842374629498],[113,303,72,0.017032203425773492],[113,303,73,0.01745598815715926],[113,303,74,0.017840149105715037],[113,303,75,0.018163915409559077],[113,303,76,0.018407875410908135],[113,303,77,0.018554880995438366],[113,303,78,0.01859077292061828],[113,303,79,0.01850492670743041],[113,304,64,0.01235782658138399],[113,304,65,0.012657488083328498],[113,304,66,0.013094690363231291],[113,304,67,0.013611990247063848],[113,304,68,0.014186588974795274],[113,304,69,0.01481970064979751],[113,304,70,0.015503086243331417],[113,304,71,0.016220681694933157],[113,304,72,0.016950836333638267],[113,304,73,0.017668346061870795],[113,304,74,0.018346278659215433],[113,304,75,0.018957588963525895],[113,304,76,0.01947652208807571],[113,304,77,0.019879803233430336],[113,304,78,0.020147613049005687],[113,304,79,0.0202643478893567],[113,305,64,0.010513510747205135],[113,305,65,0.010997837330850907],[113,305,66,0.011634879380079226],[113,305,67,0.012366070201611597],[113,305,68,0.013170617543420164],[113,305,69,0.01405198466990591],[113,305,70,0.015001662552073922],[113,305,71,0.01600123432004402],[113,305,72,0.017025080913903468],[113,305,73,0.018042847594590145],[113,305,74,0.019021668082896025],[113,305,75,0.019928143563690544],[113,305,76,0.02073007426324553],[113,305,77,0.021332014160002726],[113,305,78,0.020807674213517015],[113,305,79,0.020461494606490705],[113,306,64,0.008816826652275555],[113,306,65,0.009488900471753286],[113,306,66,0.0103275386999263],[113,306,67,0.011273772615285556],[113,306,68,0.012309270862087598],[113,306,69,0.013439919471329671],[113,306,70,0.014657072022754522],[113,306,71,0.015940060137712424],[113,306,72,0.017259370051462213],[113,306,73,0.018579545912924236],[113,306,74,0.019861815979783225],[113,306,75,0.021066438415179307],[113,306,76,0.020582713060250987],[113,306,77,0.01963304086078817],[113,306,78,0.018864597077593283],[113,306,79,0.018303286640300776],[113,307,64,0.007300286967504516],[113,307,65,0.008160773681353862],[113,307,66,0.009200089021168272],[113,307,67,0.01035958077185181],[113,307,68,0.011623766143930906],[113,307,69,0.013001052077725226],[113,307,70,0.014482758298913899],[113,307,71,0.0160460770831268],[113,307,72,0.017657717163851495],[113,307,73,0.01927724043700478],[113,307,74,0.020860087027671243],[113,307,75,0.02038181615449725],[113,307,76,0.018998631191158074],[113,307,77,0.017782721818198736],[113,307,78,0.016771282978851224],[113,307,79,0.015995296140597207],[113,308,64,0.0059973734350019636],[113,308,65,0.007044308740504958],[113,308,66,0.008280489486773164],[113,308,67,0.00964826844676347],[113,308,68,0.011135318070833579],[113,308,69,0.01275258625592215],[113,308,70,0.014491433117289216],[113,308,71,0.01632703629335137],[113,308,72,0.018222491042498946],[113,308,73,0.020132569850699538],[113,308,74,0.020736627925294907],[113,308,75,0.018941790736844495],[113,308,76,0.01728320861590868],[113,308,77,0.01580881760737096],[113,308,78,0.0145613410453603],[113,308,79,0.013576654869413769],[113,309,64,0.004940053648821894],[113,309,65,0.00616874670751766],[113,309,66,0.007595007860366314],[113,309,67,0.009162828577676606],[113,309,68,0.010863250663484054],[113,309,69,0.012709704052516112],[113,309,70,0.014693633880109871],[113,309,71,0.01678834040779045],[113,309,72,0.018953516606110894],[113,309,73,0.021139413046113404],[113,309,74,0.019446957387761577],[113,309,75,0.01738086869002686],[113,309,76,0.015461665568195298],[113,309,77,0.013742894547227168],[113,309,78,0.012272483620307298],[113,309,79,0.011090905335982766],[113,310,64,0.0041567119699156205],[113,310,65,0.005559763373820213],[113,310,66,0.00716639663954808],[113,310,67,0.008922799210705823],[113,310,68,0.010823495457440524],[113,310,69,0.012884260639924145],[113,310,70,0.015096639814814117],[113,310,71,0.017432204329695045],[113,310,72,0.019847500919168818],[113,310,73,0.020447565639011168],[113,310,74,0.018036686427010812],[113,310,75,0.015720790288252493],[113,310,76,0.013562132435716537],[113,310,77,0.011619412017979197],[113,310,78,0.009945319716072766],[113,310,79,0.00858451361764732],[113,311,64,0.003670493596693375],[113,311,65,0.005237925533170099],[113,311,66,0.007012474155784743],[113,311,67,0.008942985799852648],[113,311,68,0.011027475098305062],[113,311,69,0.013283851628496508],[113,311,70,0.015703745929392054],[113,311,71,0.018257157716851977],[113,311,72,0.020897783811993226],[113,311,73,0.019162554916193168],[113,311,74,0.01652392530326424],[113,311,75,0.013985664747956096],[113,311,76,0.01161478682615179],[113,311,77,0.009474574825096931],[113,311,78,0.007621929971266571],[113,311,79,0.006105178972202503],[113,312,64,0.0034980606412525726],[113,312,65,0.005217556943754716],[113,312,66,0.007145109581554907],[113,312,67,0.00923257883132391],[113,312,68,0.011481371387652541],[113,312,69,0.013911251945500068],[113,312,70,0.01651389394278832],[113,312,71,0.019257888468951396],[113,312,72,0.020631602343293632],[113,312,73,0.01776297110740881],[113,312,74,0.01492890664906399],[113,312,75,0.01220112432767016],[113,312,76,0.009650738490844937],[113,312,77,0.00734495064758845],[113,312,78,0.005344223015544146],[113,312,79,0.003699940012690447],[113,313,64,0.0036487589451262743],[113,313,65,0.005506012767241163],[113,313,66,0.007569610691573357],[113,313,67,0.009794665692768996],[113,313,68,0.01218577678291436],[113,313,69,0.014764225377804453],[113,313,70,0.017521659391462985],[113,313,71,0.020425426527456637],[113,313,72,0.019296477282321575],[113,313,73,0.016265908780967453],[113,313,74,0.013273117888294404],[113,313,75,0.010393208583500993],[113,313,76,0.007700662089243263],[113,313,77,0.005265852397700296],[113,313,78,0.0031520729123521198],[113,313,79,0.0014130769588405544],[113,314,64,0.004124194311051531],[113,314,65,0.006103361232429873],[113,314,66,0.008284513209418375],[113,314,67,0.010626135713264168],[113,314,68,0.013135728382317186],[113,314,69,0.015835703926122307],[113,314,70,0.018717594188386862],[113,314,71,0.0209659443243032],[113,314,72,0.017843649339293517],[113,314,73,0.014689619990902835],[113,314,74,0.011578145927834063],[113,314,75,0.008586978712401095],[113,314,76,0.0057931775484182674],[113,314,77,0.0032694850666361375],[113,314,78,0.0010812370748845355],[113,314,79,-7.161908161840716E-4],[113,315,64,0.004918216832749804],[113,315,65,0.007002471297566648],[113,315,66,0.00928177061760655],[113,315,67,0.01171797736689307],[113,315,68,0.014321123513830965],[113,315,69,0.01711433622815161],[113,315,70,0.02008892404277166],[113,315,71,0.019499308983922974],[113,315,72,0.016289356654968813],[113,315,73,0.013052276292140381],[113,315,74,0.009864234000105302],[113,315,75,0.006804861663849756],[113,315,76,0.0039529774973016294],[113,315,77,0.001382856334149063],[113,315,78,-8.389462669022014E-4],[113,315,79,-0.002656213061589235],[113,316,64,0.00601731207737587],[113,316,65,0.008189505178839731],[113,316,66,0.01054734342225881],[113,316,67,0.013055966765064774],[113,316,68,0.01572751619880173],[113,316,69,0.018585404479709574],[113,316,70,0.021078712158743497],[113,316,71,0.017908718291271247],[113,316,72,0.014649603111219663],[113,316,73,0.011370425111923555],[113,316,74,0.008148550254407926],[113,316,75,0.005064723398294319],[113,316,76,0.002198700931815108],[113,316,77,-3.7455012378902474E-4],[113,316,78,-0.002588082332940045],[113,316,79,-0.004385624245142556],[113,317,64,0.007401398019723183],[113,317,65,0.009644814777660314],[113,317,66,0.012062187047407082],[113,317,67,0.014621746764564913],[113,317,68,0.01733729398067553],[113,317,69,0.020232109520915205],[113,317,70,0.01939973191212539],[113,317,71,0.016209238883897366],[113,317,72,0.012938469032044148],[113,317,73,0.009657139973469247],[113,317,74,0.0064431673587518595],[113,317,75,0.0033776703147684645],[113,317,76,5.405518920003787E-4],[113,317,77,-0.0019933400883265025],[113,317,78,-0.004157467488414121],[113,317,79,-0.0058962683935605],[113,318,64,0.009045026848398747],[113,318,65,0.011344241280856841],[113,318,66,0.013803637793454357],[113,318,67,0.016394296294369195],[113,318,68,0.01913123490142344],[113,318,69,0.020646324235793673],[113,318,70,0.017592435970216282],[113,318,71,0.01441358771743911],[113,318,72,0.011166098269048397],[113,318,73,0.007919863690196404],[113,318,74,0.004752751978507614],[113,318,75,0.001745577457215868],[113,318,76,-0.0010223384975637094],[113,318,77,-0.003477014917081708],[113,318,78,-0.005553062523831367],[113,318,79,-0.007196335575586016],[113,319,64,0.010918991067229303],[113,319,65,0.013260817531063417],[113,319,66,0.015747196634364653],[113,319,67,0.018351789859357284],[113,319,68,0.02109044477768327],[113,319,69,0.01869704767657806],[113,319,70,0.015668938061487343],[113,319,71,0.012529911153642428],[113,319,72,0.009336360606236712],[113,319,73,0.006157943205921344],[113,319,74,0.003071962539969794],[113,319,75,1.583416357800544E-4],[113,319,76,-0.002504808760596707],[113,319,77,-0.004845020736161841],[113,319,78,-0.006798694190313525],[113,319,79,-0.008313712952522421],[114,-64,64,-0.0011084640590358459],[114,-64,65,-0.0012372894834436295],[114,-64,66,-0.0013166143903938533],[114,-64,67,-0.0013560064793389167],[114,-64,68,-0.0013386680710404328],[114,-64,69,-0.0012345604542342034],[114,-64,70,-0.0010208322154139245],[114,-64,71,-6.818311519184363E-4],[114,-64,72,-2.0864022320805318E-4],[114,-64,73,4.0142086164621915E-4],[114,-64,74,0.0011453285111575607],[114,-64,75,0.0020149225658547395],[114,-64,76,0.0029975079561287924],[114,-64,77,0.004076490506044465],[114,-64,78,0.005232046595504331],[114,-64,79,0.006441826307092274],[114,-63,64,-0.0010857835210895922],[114,-63,65,-0.0011757069027679957],[114,-63,66,-0.0012144663788955393],[114,-63,67,-0.001210317323257475],[114,-63,68,-0.001146690911404526],[114,-63,69,-9.951393288486318E-4],[114,-63,70,-7.345141765375256E-4],[114,-63,71,-3.5088916507741957E-4],[114,-63,72,1.6296045155257826E-4],[114,-63,73,8.081080074886166E-4],[114,-63,74,0.0015800550427430824],[114,-63,75,0.002469340235388832],[114,-63,76,0.003462177386383551],[114,-63,77,0.004541122109018936],[114,-63,78,0.005685766793101216],[114,-63,79,0.006873463337010251],[114,-62,64,-8.388043337256013E-4],[114,-62,65,-8.987649689926189E-4],[114,-62,66,-9.074325467744766E-4],[114,-62,67,-8.714637642212989E-4],[114,-62,68,-7.74602094335992E-4],[114,-62,69,-5.902383396577977E-4],[114,-62,70,-2.990109571019483E-4],[114,-62,71,1.1134103128516736E-4],[114,-62,72,6.465293604605432E-4],[114,-62,73,0.0013062938943677995],[114,-62,74,0.0020850058568769353],[114,-62,75,0.0029722966430807203],[114,-62,76,0.003953711848254124],[114,-62,77,0.0050113900719744925],[114,-62,78,0.0061247659799760394],[114,-62,79,0.007271297036787909],[114,-61,64,-3.7896558588940794E-4],[114,-61,65,-4.175726206338969E-4],[114,-61,66,-4.0627818104404997E-4],[114,-61,67,-3.4989696517385673E-4],[114,-61,68,-2.3254644896100206E-4],[114,-61,69,-2.964525863951527E-5],[114,-61,70,2.763412165563522E-4],[114,-61,71,6.96098973519836E-4],[114,-61,72,0.0012340235077195859],[114,-61,73,0.0018888016668467706],[114,-61,74,0.002654016995349159],[114,-61,75,0.003518778236732294],[114,-61,76,0.004468370581590678],[114,-61,77,0.0054849291749447734],[114,-61,78,0.00654813432716439],[114,-61,79,0.007635927809040641],[114,-60,64,2.781295020497478E-4],[114,-60,65,2.529664208487433E-4],[114,-60,66,2.748509058183965E-4],[114,-60,67,3.410008455993835E-4],[114,-60,68,4.668799739701877E-4],[114,-60,69,6.749073828462978E-4],[114,-60,70,9.8078704339756E-4],[114,-60,71,0.0013937397998175732],[114,-60,72,0.001917046953751808],[114,-60,73,0.0025486163489869115],[114,-60,74,0.0032815706919443375],[114,-60,75,0.0041048577652573305],[114,-60,76,0.005003882117309583],[114,-60,77,0.005961157740696345],[114,-60,78,0.006956981187672131],[114,-60,79,0.007970124511244358],[114,-59,64,0.0011137858037835856],[114,-59,65,0.001095260172529724],[114,-59,66,0.0011195686485758088],[114,-59,67,0.0011860899321357473],[114,-59,68,0.0013098335290834767],[114,-59,69,0.0015109682808776973],[114,-59,70,0.0018033888858924236],[114,-59,71,0.002194966896074733],[114,-59,72,0.002688061962935694],[114,-59,73,0.0032800552012835203],[114,-59,74,0.003963904428178255],[114,-59,75,0.004728720960540518],[114,-59,76,0.005560367584393733],[114,-59,77,0.006442077242468013],[114,-59,78,0.007355091925369483],[114,-59,79,0.00827932119519064],[114,-58,64,0.0021075038736877044],[114,-58,65,0.002090350144604362],[114,-58,66,0.002110603300147673],[114,-58,67,0.0021698592139429243],[114,-58,68,0.002282636465199977],[114,-58,69,0.002466798936183116],[114,-58,70,0.0027344629397585488],[114,-58,71,0.003092255682840736],[114,-58,72,0.0035417807331843995],[114,-58,73,0.0040801057920576474],[114,-58,74,0.004700272577213074],[114,-58,75,0.005391828550547438],[114,-58,76,0.0061413801579665],[114,-58,77,0.0069331671858532005],[114,-58,78,0.007749657779693206],[114,-58,79,0.008572163616316457],[114,-57,64,0.003238482803732881],[114,-57,65,0.0032194482225541858],[114,-57,66,0.0032313661924410282],[114,-57,67,0.0032780249359112413],[114,-57,68,0.0033734001972021105],[114,-57,69,0.0035330107702982437],[114,-57,70,0.003767214816236249],[114,-57,71,0.004081468560381437],[114,-57,72,0.004476737762885949],[114,-57,73,0.004949931879098234],[114,-57,74,0.005494360773388275],[114,-57,75,0.006100213783901244],[114,-57,76,0.00675506087242472],[114,-57,77,0.00744437553344902],[114,-57,78,0.00815207908013027],[114,-57,79,0.008861105872713949],[114,-56,64,0.00448391360011274],[114,-56,65,0.004461739978341191],[114,-56,66,0.0044632618502050804],[114,-56,67,0.004494344384074494],[114,-56,68,0.004568339874591257],[114,-56,69,0.004698383342375559],[114,-56,70,0.004893073474578303],[114,-56,71,0.005156728498328555],[114,-56,72,0.0054897405049588715],[114,-56,73,0.005888952669426703],[114,-56,74,0.006348059287586932],[114,-56,75,0.006858028492442569],[114,-56,76,0.007407547451058262],[114,-56,77,0.007983489787052472],[114,-56,78,0.008571404919993768],[114,-56,79,0.00915602896309913],[114,-55,64,0.005799220387419224],[114,-55,65,0.005771306828847214],[114,-55,66,0.005759277897245496],[114,-55,67,0.005770864855522395],[114,-55,68,0.00581870216390538],[114,-55,69,0.0059135626912797876],[114,-55,70,0.0060623417897445],[114,-55,71,0.006268303821086166],[114,-55,72,0.006531374739317092],[114,-55,73,0.006848457831801998],[114,-55,74,0.007213772606486883],[114,-55,75,0.007619216755630868],[114,-55,76,0.008054751070836117],[114,-55,77,0.00850880713065003],[114,-55,78,0.00896871753107124],[114,-55,79,0.00942116838141489],[114,-54,64,0.007134258369923305],[114,-54,65,0.007095504061279606],[114,-54,66,0.007064518936058129],[114,-54,67,0.007050606264601086],[114,-54,68,0.00706558587189752],[114,-54,69,0.007117970379219239],[114,-54,70,0.007213092470171608],[114,-54,71,0.00735332946295706],[114,-54,72,0.007538325742024461],[114,-54,73,0.0077652391381941585],[114,-54,74,0.008029011326469491],[114,-54,75,0.008322662257407796],[114,-54,76,0.008637608585409113],[114,-54,77,0.008964006006161776],[114,-54,78,0.009291115366253037],[114,-54,79,0.009607692361105475],[114,-53,64,0.008445308820461139],[114,-53,65,0.008388662179593684],[114,-53,66,0.008331605755554772],[114,-53,67,0.008284654480631162],[114,-53,68,0.00825871596199186],[114,-53,69,0.008260210014673083],[114,-53,70,0.008293114742789787],[114,-53,71,0.008359151740916953],[114,-53,72,0.008457927028098545],[114,-53,73,0.008587097637327776],[114,-53,74,0.00874256403638844],[114,-53,75,0.008918688505172067],[114,-53,76,0.009108539543798396],[114,-53,77,0.009304162335648118],[114,-53,78,0.009496875240268375],[114,-53,79,0.00967759224355355],[114,-52,64,0.00969549335906948],[114,-52,65,0.009612455895437019],[114,-52,66,0.009520994455560039],[114,-52,67,0.009432425972470097],[114,-52,68,0.009356649656717009],[114,-52,69,0.009298212007955551],[114,-52,70,0.00925999649839871],[114,-52,71,0.009243348351513483],[114,-52,72,0.009248120484618587],[114,-52,73,0.009272748050118768],[114,-52,74,0.009314351888409204],[114,-52,75,0.009368871155549907],[114,-52,76,0.009431225337849172],[114,-52,77,0.009495505814110596],[114,-52,78,0.009555197075021359],[114,-52,79,0.009603427658553433],[114,-51,64,0.010855265245767371],[114,-51,65,0.010736341624585182],[114,-51,66,0.01060135527612648],[114,-51,67,0.01046198284653284],[114,-51,68,0.010327023055770827],[114,-51,69,0.010199408537532742],[114,-51,70,0.010081226117966594],[114,-51,71,0.009973757538025445],[114,-51,72,0.009877415452433659],[114,-51,73,0.009791712461726625],[114,-51,74,0.009715263661226005],[114,-51,75,0.009645823139549599],[114,-51,76,0.009580354805752936],[114,-51,77,0.009515137869105435],[114,-51,78,0.00944590723940238],[114,-51,79,0.00936802905923507],[114,-50,64,0.011903034125247307],[114,-50,65,0.011738128223821837],[114,-50,66,0.011550084147376547],[114,-50,67,0.011350479574686845],[114,-50,68,0.01114692779254846],[114,-50,69,0.010941036247094464],[114,-50,70,0.010734419047281096],[114,-50,71,0.010528628345881067],[114,-50,72,0.010324964570257422],[114,-50,73,0.010124325810579284],[114,-50,74,0.009927097055188405],[114,-50,75,0.00973307990766798],[114,-50,76,0.009541463361355801],[114,-50,77,0.009350836145297565],[114,-50,78,0.009159241091616834],[114,-50,79,0.008964271908711682],[114,-49,64,0.011534696342806546],[114,-49,65,0.011805860807802139],[114,-49,66,0.01210531080387266],[114,-49,67,0.012082391113385585],[114,-49,68,0.011801853223225824],[114,-49,69,0.011509844809196543],[114,-49,70,0.011207832183843221],[114,-49,71,0.01089796540620783],[114,-49,72,0.010582747478401808],[114,-49,73,0.010264750576643734],[114,-49,74,0.009946380244986721],[114,-49,75,0.009629688418106118],[114,-49,76,0.009316236072416958],[114,-49,77,0.009007006233250516],[114,-49,78,0.008702367990612124],[114,-49,79,0.008402092098019296],[114,-48,64,0.010755284335509287],[114,-48,65,0.011087713672697447],[114,-48,66,0.011453420711688252],[114,-48,67,0.01184237522068055],[114,-48,68,0.012249573720877488],[114,-48,69,0.011899003012652646],[114,-48,70,0.011499512924167109],[114,-48,71,0.011084972210509181],[114,-48,72,0.010659312423973442],[114,-48,73,0.010226972901993616],[114,-48,74,0.009792532024646335],[114,-48,75,0.009360397129035674],[114,-48,76,0.008934554119443092],[114,-48,77,0.008518377728023926],[114,-48,78,0.008114503291603884],[114,-48,79,0.007724760816775962],[114,-47,64,0.010153215492659694],[114,-47,65,0.010550990501215518],[114,-47,66,0.010985334617155264],[114,-47,67,0.011447672444538636],[114,-47,68,0.011934492228177765],[114,-47,69,0.012107770470003023],[114,-47,70,0.011613682070634398],[114,-47,71,0.011099030791869921],[114,-47,72,0.01056930377431593],[114,-47,73,0.010030896835207682],[114,-47,74,0.009490609087146511],[114,-47,75,0.00895520710554727],[114,-47,76,0.008431059928051177],[114,-47,77,0.007923846070251272],[114,-47,78,0.007438333636589161],[114,-47,79,0.006978234494380003],[114,-46,64,0.009740032616668687],[114,-46,65,0.010204502253303353],[114,-46,66,0.010706827797190972],[114,-46,67,0.011240304544879638],[114,-46,68,0.011803052220508389],[114,-46,69,0.012141328383840702],[114,-46,70,0.01155963646107754],[114,-46,71,0.01095365527551117],[114,-46,72,0.010330465214307192],[114,-46,73,0.009698415951871731],[114,-46,74,0.009066484447524361],[114,-46,75,0.00844371404867314],[114,-46,76,0.00783873622214428],[114,-46,77,0.007259376320905404],[114,-46,78,0.00671234467003049],[114,-46,79,0.006203014125732016],[114,-45,64,0.009519489782635712],[114,-45,65,0.010049551904401837],[114,-45,66,0.010616561236496189],[114,-45,67,0.01121606676536059],[114,-45,68,0.01184797097027913],[114,-45,69,0.012010181453707806],[114,-45,70,0.01135120756008699],[114,-45,71,0.010666018245080991],[114,-45,72,0.009963244824590801],[114,-45,73,0.00925310768253867],[114,-45,74,0.008546640927820585],[114,-45,75,0.007855009999335706],[114,-45,76,0.007188923967997634],[114,-45,77,0.006558144151561904],[114,-45,78,0.005971090515763446],[114,-45,79,0.005434547185177781],[114,-44,64,0.009488280151715238],[114,-44,65,0.010080658163818468],[114,-44,66,0.010706791167724558],[114,-44,67,0.011364823493238802],[114,-44,68,0.012056597942691842],[114,-44,69,0.011729549312449478],[114,-44,70,0.011006207252817791],[114,-44,71,0.01025646164658176],[114,-44,72,0.009490381715229528],[114,-44,73,0.008719905923575516],[114,-44,74,0.007957939394675878],[114,-44,75,0.007217556044353227],[114,-44,76,0.006511307390677196],[114,-44,77,0.00585063984241822],[114,-44,78,0.005245422108739508],[114,-44,79,0.004703584201933466],[114,-43,64,0.009636769525758574],[114,-43,65,0.010286285812996959],[114,-43,66,0.010964086175914933],[114,-43,67,0.011671202733914138],[114,-43,68,0.012058565571846645],[114,-43,69,0.011318745857480642],[114,-43,70,0.010545859367372649],[114,-43,71,0.009747990943334091],[114,-43,72,0.008936473141621683],[114,-43,73,0.008124751096116442],[114,-43,74,0.007327361176375711],[114,-43,75,0.006559025733830998],[114,-43,76,0.005833866072892068],[114,-43,77,0.005164735614068809],[114,-43,78,0.004562675035164572],[114,-43,79,0.004036490986026898],[114,-42,64,0.009949737777835047],[114,-42,65,0.01064958476866871],[114,-42,66,0.011370053914945348],[114,-42,67,0.01211530130206847],[114,-42,68,0.011575947561832662],[114,-42,69,0.010800544750813029],[114,-42,70,0.009994215358763684],[114,-42,71,0.009165751140840088],[114,-42,72,0.008327520933587679],[114,-42,73,0.007494216721141028],[114,-42,74,0.0066817239878674845],[114,-42,75,0.005906118820173386],[114,-42,76,0.005182794046783186],[114,-42,77,0.0045257165192984184],[114,-42,78,0.0039468174351311594],[114,-42,79,0.0034555173950560573],[114,-41,64,0.01040713036953769],[114,-41,65,0.01114914005425897],[114,-41,66,0.011902079563575935],[114,-41,67,0.011760487303404005],[114,-41,68,0.010996144863732743],[114,-41,69,0.010200529277113997],[114,-41,70,0.009377552500956714],[114,-41,71,0.008536483211906127],[114,-41,72,0.007690455978007006],[114,-41,73,0.0068551114861881675],[114,-41,74,0.006047370597894294],[114,-41,75,0.005284344832878466],[114,-41,76,0.0045823856916253755],[114,-41,77,0.003956275022484045],[114,-41,78,0.0034185584223862743],[114,-41,79,0.0029790234322383926],[114,-40,64,0.010984822233662733],[114,-40,65,0.01175973493272531],[114,-40,66,0.011871219749881508],[114,-40,67,0.011120207007554629],[114,-40,68,0.010346498416782762],[114,-40,69,0.009546424672071906],[114,-40,70,0.008723752854129688],[114,-40,71,0.007887959370468645],[114,-40,72,0.0070526394108152155],[114,-40,73,0.006234055691948536],[114,-40,74,0.005449829382450164],[114,-40,75,0.004717775910763125],[114,-40,76,0.004054888155501636],[114,-40,77,0.0034764692971131733],[114,-40,78,0.0029954173769376354],[114,-40,79,0.0026216633657985267],[114,-39,64,0.01165539635937287],[114,-39,65,0.011928499160250489],[114,-39,66,0.011177657720787682],[114,-39,67,0.010424843646179922],[114,-39,68,0.009656261287304888],[114,-39,69,0.008867410964503435],[114,-39,70,0.008061661202613063],[114,-39,71,0.007248395567820937],[114,-39,72,0.0064413390961445185],[114,-39,73,0.0056570308855383436],[114,-39,74,0.004913445823847058],[114,-39,75,0.004228768224892917],[114,-39,76,0.0036203199272697977],[114,-39,77,0.003103645176996059],[114,-39,78,0.0026917543683298746],[114,-39,79,0.002394528459253968],[114,-38,64,0.011973868017163374],[114,-38,65,0.0111969330075635],[114,-38,66,0.010446568740808883],[114,-38,67,0.009705056247947109],[114,-38,68,0.008955855390697874],[114,-38,69,0.008193414315485419],[114,-38,70,0.007420420095554436],[114,-38,71,0.006645839517894048],[114,-38,72,0.005883179899437036],[114,-38,73,0.0051489014121702285],[114,-38,74,0.004460983935315245],[114,-38,75,0.00383765124177275],[114,-38,76,0.003296255097091237],[114,-38,77,0.002852321604471105],[114,-38,78,0.0025187618711077302],[114,-38,79,0.002305248802083858],[114,-37,64,0.01122758582216113],[114,-37,65,0.01044782827748843],[114,-37,66,0.009709727429257613],[114,-37,67,0.008992272234906137],[114,-37,68,0.008276105723560823],[114,-37,69,0.007554374786948235],[114,-37,70,0.006828780067788584],[114,-37,71,0.0061075324995310334],[114,-37,72,0.005403566198111371],[114,-37,73,0.004732906548837505],[114,-37,74,0.004113196517869144],[114,-37,75,0.003562383997921155],[114,-37,76,0.0030975727600518945],[114,-37,77,0.002734039329890038],[114,-37,78,0.002484417839827272],[114,-37,79,0.0023580546311927574],[114,-36,64,0.010485240089715828],[114,-36,65,0.009713596679593798],[114,-36,66,0.008999181449528569],[114,-36,67,0.008317872696538409],[114,-36,68,0.007647449881018163],[114,-36,69,0.006979488431191555],[114,-36,70,0.0063143830732606135],[114,-36,71,0.005659243133874543],[114,-36,72,0.005026075018381382],[114,-36,73,0.004430121823075094],[114,-36,74,0.003888363089716299],[114,-36,75,0.003418177484353508],[114,-36,76,0.003036170938521668],[114,-36,77,0.0027571725314582025],[114,-36,78,0.002593400119504823],[114,-36,79,0.0025537974360237956],[114,-35,64,0.009779212938171222],[114,-35,65,0.009026353911561273],[114,-35,66,0.008346394580380034],[114,-35,67,0.007712351416340739],[114,-35,68,0.007099120607755497],[114,-35,69,0.006496421562286237],[114,-35,70,0.00590301712826033],[114,-35,71,0.005324571294685032],[114,-35,72,0.004771818140740386],[114,-35,73,0.0042588880674867356],[114,-35,74,0.0038017942694009645],[114,-35,75,0.0034170821733703898],[114,-35,76,0.0031206443254987917],[114,-35,77,0.0029267029437196287],[114,-35,78,0.0028469620792210115],[114,-35,79,0.002889931044736034],[114,-34,64,0.009140978182685002],[114,-34,65,0.008417027532051697],[114,-34,66,0.007781361700377574],[114,-34,67,0.007204445298242122],[114,-34,68,0.0066582991161414085],[114,-34,69,0.0061304950509064255],[114,-34,70,0.0056178401372801645],[114,-34,71,0.005124220279221464],[114,-34,72,0.004658771480031671],[114,-34,73,0.004234206717128125],[114,-34,74,0.003865301342747761],[114,-34,75,0.0035675396609731753],[114,-34,76,0.003355925083850861],[114,-34,77,0.003243956007186867],[114,-34,78,0.0032427692722861137],[114,-34,79,0.0033604527960907813],[114,-33,64,0.00860018344948912],[114,-33,65,0.00791443478355719],[114,-33,66,0.00733169327102341],[114,-33,67,0.006820233840850855],[114,-33,68,0.006349236901717383],[114,-33,69,0.0059038364764205375],[114,-33,70,0.005478570861141566],[114,-33,71,0.005075235347889182],[114,-33,72,0.00470107001957646],[114,-33,73,0.004367099822664215],[114,-33,74,0.004086629701162243],[114,-33,75,0.003873897346867646],[114,-33,76,0.003742885875749853],[114,-33,77,0.003706298481474819],[114,-33,78,0.00377469684656731],[114,-33,79,0.003955804812224554],[114,-32,64,0.008183700474403139],[114,-32,65,0.007544327929996864],[114,-32,66,0.007021666920878938],[114,-32,67,0.0065822053211433565],[114,-32,68,0.00619234379590547],[114,-32,69,0.005834497974680757],[114,-32,70,0.005500644985770199],[114,-32,71,0.005190206732817889],[114,-32,72,0.00490826656314972],[114,-32,73,0.004663933228101327],[114,-32,74,0.0044688548055772034],[114,-32,75,0.004335885030988483],[114,-32,76,0.004277904243320972],[114,-32,77,0.004306796900415163],[114,-32,78,0.004432587353880173],[114,-32,79,0.004662735301915005],[114,-31,64,0.007914641176716542],[114,-31,65,0.00732840470682061],[114,-31,66,0.006871243763476545],[114,-31,67,0.006508287376351411],[114,-31,68,0.006203240018637948],[114,-31,69,0.005935537637522313],[114,-31,70,0.005694334261281511],[114,-31,71,0.005476435219526284],[114,-31,72,0.005284552564340294],[114,-31,73,0.005125701348494722],[114,-31,74,0.005009739306974301],[114,-31,75,0.004948052271451993],[114,-31,76,0.004952387416252282],[114,-31,77,0.005033836190667678],[114,-31,78,0.005201968538414473],[114,-31,79,0.005464119742920324],[114,-30,64,0.007811337148808112],[114,-30,65,0.00728328152880451],[114,-30,66,0.006895047126644068],[114,-30,67,0.006610839714120084],[114,-30,68,0.006391770030396895],[114,-30,69,0.006214062351162826],[114,-30,70,0.006063826705515106],[114,-30,71,0.00593505842251169],[114,-30,72,0.005827939300658353],[114,-30,73,0.00574727198100388],[114,-30,74,0.005701049941612949],[114,-30,75,0.00569916532447307],[114,-30,76,0.0057522565854922275],[114,-30,77,0.0058706977259515],[114,-30,78,0.00606373062163468],[114,-30,79,0.0063387417161201165],[114,-29,64,0.007886280266061857],[114,-29,65,0.007419427163177533],[114,-29,66,0.007101301430666577],[114,-29,67,0.006895606737136199],[114,-29,68,0.006760976034515351],[114,-29,69,0.006670230006137749],[114,-29,70,0.006606265904497061],[114,-29,71,0.006560135905649809],[114,-29,72,0.006529397680345468],[114,-29,73,0.006516589592702385],[114,-29,74,0.006527832817558991],[114,-29,75,0.006571562472763416],[114,-29,76,0.006657389654894745],[114,-29,77,0.006795096047888803],[114,-29,78,0.006993762545661788],[114,-29,79,0.007261033094193258],[114,-28,64,0.008145022201392096],[114,-28,65,0.0077400546538479],[114,-28,66,0.007490729028125167],[114,-28,67,0.007360627940014293],[114,-28,68,0.0073060290471882484],[114,-28,69,0.007296209071778957],[114,-28,70,0.007310747495177774],[114,-28,71,0.007337691342369576],[114,-28,72,0.007371955003871677],[114,-28,73,0.007413835551321439],[114,-28,74,0.00746764571949981],[114,-28,75,0.0075404665459383475],[114,-28,76,0.00764102146543066],[114,-28,77,0.007778673452257641],[114,-28,78,0.007962546589469658],[114,-28,79,0.008200773224092727],[114,-27,64,0.008585030724631602],[114,-27,65,0.008239969376937722],[114,-27,66,0.008055402909932468],[114,-27,67,0.007995104023929793],[114,-27,68,0.008013115535135179],[114,-27,69,0.008075093604212423],[114,-27,70,0.008157270983870354],[114,-27,71,0.00824470996937076],[114,-27,72,0.008329747050267702],[114,-27,73,0.008410543801319448],[114,-27,74,0.00848974608186965],[114,-27,75,0.008573253445210177],[114,-27,76,0.008669100480083375],[114,-27,77,0.008786451616902145],[114,-27,78,0.008934710733027472],[114,-27,79,0.009122746686324464],[114,-26,64,0.009194500779819596],[114,-26,65,0.008904371219255216],[114,-26,66,0.008777553290702992],[114,-26,67,0.008778216778989227],[114,-26,68,0.008858277719935945],[114,-26,69,0.008979771849113194],[114,-26,70,0.009115645137802459],[114,-26,71,0.009248089661885402],[114,-26,72,0.009367023921451759],[114,-26,73,0.009468670538041695],[114,-26,74,0.009554233316708788],[114,-26,75,0.009628675505859791],[114,-26,76,0.009699600922508052],[114,-26,77,0.009776239435366449],[114,-26,78,0.009868538114503785],[114,-26,79,0.009986359165715832],[114,-25,64,0.009951012918071545],[114,-25,65,0.009707559915533258],[114,-25,66,0.00962832949802823],[114,-25,67,0.009677955171134896],[114,-25,68,0.009806311278202836],[114,-25,69,0.009971903708669193],[114,-25,70,0.010144553382062122],[114,-25,71,0.01030380180139844],[114,-25,72,0.010437412795387185],[114,-25,73,0.01053996375124057],[114,-25,74,0.010611528270775574],[114,-25,75,0.010656452040405136],[114,-25,76,0.010682223552766193],[114,-25,77,0.010698441155171188],[114,-25,78,0.01071587772905258],[114,-25,79,0.010745644126572012],[114,-24,64,0.010817358779300665],[114,-24,65,0.010611378896836906],[114,-24,66,0.010568683185188154],[114,-24,67,0.010654381117962256],[114,-24,68,0.010816431071035438],[114,-24,69,0.011010000724332222],[114,-24,70,0.011202032235088219],[114,-24,71,0.011369703128206631],[114,-24,72,0.011498935911569261],[114,-24,73,0.011582990365565546],[114,-24,74,0.011621140410648637],[114,-24,75,0.011617437325080082],[114,-24,76,0.011579560942787474],[114,-24,77,0.011517760309366912],[114,-24,78,0.011443885113833924],[114,-24,79,0.011370509046111026],[114,-23,64,0.01174888724278],[114,-23,65,0.011573744663620988],[114,-23,66,0.011558992834217617],[114,-23,67,0.0116703217630661],[114,-23,68,0.01185403084586145],[114,-23,69,0.012062239412514374],[114,-23,70,0.012259302497405405],[114,-23,71,0.01242032177218166],[114,-23,72,0.012439384756075816],[114,-23,73,0.012388383078317003],[114,-23,74,0.0123966333232434],[114,-23,75,0.012460160750537902],[114,-23,76,0.012384664138568527],[114,-23,77,0.012230739400354634],[114,-23,78,0.01205229909063224],[114,-23,79,0.011863507401668829],[114,-22,64,0.012275661051336277],[114,-22,65,0.012433622754903588],[114,-22,66,0.012434522052975277],[114,-22,67,0.012311901175592572],[114,-22,68,0.012120745230769663],[114,-22,69,0.011911606471294257],[114,-22,70,0.011722391519188734],[114,-22,71,0.011579797020518342],[114,-22,72,0.01150079006850395],[114,-22,73,0.01149401885946667],[114,-22,74,0.011561151706731955],[114,-22,75,0.011698142649469365],[114,-22,76,0.011896422015703463],[114,-22,77,0.012144010430704517],[114,-22,78,0.012426554902766706],[114,-22,79,0.012237194118765702],[114,-21,64,0.011393089202495274],[114,-21,65,0.011524173710609306],[114,-21,66,0.011504937675976948],[114,-21,67,0.011367918502498842],[114,-21,68,0.011168921431949036],[114,-21,69,0.010960718303045921],[114,-21,70,0.010783118943525512],[114,-21,71,0.010664342219830644],[114,-21,72,0.010622477999209984],[114,-21,73,0.010666886599636792],[114,-21,74,0.0107995338737014],[114,-21,75,0.011016260173053837],[114,-21,76,0.011307981550694271],[114,-21,77,0.01166182167885666],[114,-21,78,0.012062173089658783],[114,-21,79,0.012491686483157885],[114,-20,64,0.010563684730377238],[114,-20,65,0.010666605738542776],[114,-20,66,0.010627644925950098],[114,-20,67,0.010478057535084651],[114,-20,68,0.010273933833151925],[114,-20,69,0.010069755974828053],[114,-20,70,0.009906865200603045],[114,-20,71,0.00981475022486837],[114,-20,72,0.00981247206833307],[114,-20,73,0.009910034860286748],[114,-20,74,0.010109700793901538],[114,-20,75,0.010407247504400724],[114,-20,76,0.010793166236675986],[114,-20,77,0.011253799275379495],[114,-20,78,0.011772415226062354],[114,-20,79,0.012330220859793024],[114,-19,64,0.009824371666276406],[114,-19,65,0.009895121292461123],[114,-19,66,0.009833819558871184],[114,-19,67,0.00967014329535657],[114,-19,68,0.009459888065414824],[114,-19,69,0.009258699369867724],[114,-19,70,0.009109078133557807],[114,-19,71,0.009041562051724066],[114,-19,72,0.009076088027304164],[114,-19,73,0.00922331076574778],[114,-19,74,0.009485875770963855],[114,-19,75,0.00985964505550329],[114,-19,76,0.010334873957401024],[114,-19,77,0.010897337545004946],[114,-19,78,0.011529405189197138],[114,-19,79,0.012211061989068846],[114,-18,64,0.009213674636695294],[114,-18,65,0.009245345289924774],[114,-18,66,0.009155767923915334],[114,-18,67,0.008972740725422375],[114,-18,68,0.008751164491754341],[114,-18,69,0.00854728557530169],[114,-18,70,0.008404411340009962],[114,-18,71,0.008353954150264367],[114,-18,72,0.008416699920725731],[114,-18,73,0.008604045181205678],[114,-18,74,0.008919200990616062],[114,-18,75,0.009358362081940776],[114,-18,76,0.009911839677544559],[114,-18,77,0.010565156480885069],[114,-18,78,0.011300102426638679],[114,-18,79,0.012095749856016608],[114,-17,64,0.008755200684651666],[114,-17,65,0.008738654282670193],[114,-17,66,0.008612319415049462],[114,-17,67,0.008401833078521584],[114,-17,68,0.008160600498450757],[114,-17,69,0.007944899169429684],[114,-17,70,0.007798503886444457],[114,-17,71,0.007753559388621244],[114,-17,72,0.007831719462448206],[114,-17,73,0.008045269408566567],[114,-17,74,0.008398230330293044],[114,-17,75,0.008887443723163947],[114,-17,76,0.009503634874860872],[114,-17,77,0.010232453624050713],[114,-17,78,0.011055491075007773],[114,-17,79,0.01195127092227817],[114,-16,64,0.00840772583382951],[114,-16,65,0.008335061236786871],[114,-16,66,0.008165125255683884],[114,-16,67,0.00792116980374254],[114,-16,68,0.007654504114035702],[114,-16,69,0.007420819065667126],[114,-16,70,0.007263953059841608],[114,-16,71,0.007216563924268082],[114,-16,72,0.0073011067105750675],[114,-16,73,0.007530811935085834],[114,-16,74,0.007910662873619342],[114,-16,75,0.008438370510411235],[114,-16,76,0.009105344739027505],[114,-16,77,0.009897660419691572],[114,-16,78,0.01079701691310936],[114,-16,79,0.0117816897358555],[114,-15,64,0.008124829738361051],[114,-15,65,0.007990121238884694],[114,-15,66,0.007772117830585779],[114,-15,67,0.007491523181288789],[114,-15,68,0.007196958369467322],[114,-15,69,0.006942866475935157],[114,-15,70,0.006772677902396993],[114,-15,71,0.006719258497895082],[114,-15,72,0.006805699592152815],[114,-15,73,0.007046127357723391],[114,-15,74,0.00744653028576652],[114,-15,75,0.008005603513757651],[114,-15,76,0.00871560870463524],[114,-15,77,0.009563248146515858],[114,-15,78,0.010530551720813257],[114,-15,79,0.011595775374920755],[114,-14,64,0.007871971265440017],[114,-14,65,0.00767109475761331],[114,-14,66,0.007402561519915698],[114,-14,67,0.007084416637557339],[114,-14,68,0.006762021053988417],[114,-14,69,0.0064878862540338235],[114,-14,70,0.0063045174154630025],[114,-14,71,0.006244620731340018],[114,-14,72,0.006331684389511522],[114,-14,73,0.0065805991293379365],[114,-14,74,0.0069983173505020445],[114,-14,75,0.007584549662761744],[114,-14,76,0.008332497686629066],[114,-14,77,0.009229621844163741],[114,-14,78,0.010258442817357629],[114,-14,79,0.011397375299851941],[114,-13,64,0.007624526865356076],[114,-13,65,0.0073550014613601115],[114,-13,66,0.007035153065632865],[114,-13,67,0.006680303592749315],[114,-13,68,0.0063320141425254805],[114,-13,69,0.006040179124314872],[114,-13,70,0.005845837191640129],[114,-13,71,0.005781126424200352],[114,-13,72,0.005869639947948239],[114,-13,73,0.006126842291263448],[114,-13,74,0.006560545652931792],[114,-13,75,0.007171445129526214],[114,-13,76,0.007953711828139235],[114,-13,77,0.008895642676560364],[114,-13,78,0.009980365638264287],[114,-13,79,0.011186598945247806],[114,-12,64,0.007365994608302121],[114,-12,65,0.007026837265913998],[114,-12,66,0.006656280896163695],[114,-12,67,0.006266899068876669],[114,-12,68,0.005895957554398356],[114,-12,69,0.005590067187896175],[114,-12,70,0.005388255396704222],[114,-12,71,0.00532166328572661],[114,-12,72,0.005413664427497049],[114,-12,73,0.005680066002214364],[114,-12,74,0.006129391670903684],[114,-12,75,0.006763245392748221],[114,-12,76,0.007576755231423196],[114,-12,77,0.008559096036584043],[114,-12,78,0.00969408973720741],[114,-12,79,0.010960881844911391],[114,-11,64,0.007086364194794724],[114,-11,65,0.006677954802355044],[114,-11,66,0.006258443501052355],[114,-11,67,0.005837664073733707],[114,-11,68,0.005448147201980035],[114,-11,69,0.005132592621552592],[114,-11,70,0.004927487983093726],[114,-11,71,0.00486254695914162],[114,-11,72,0.0049605844405079405],[114,-11,73,0.005237495700443237],[114,-11,74,0.005702339120022266],[114,-11,75,0.0063575218511234995],[114,-11,76,0.007199087581686371],[114,-11,77,0.008217105363567899],[114,-11,78,0.009396158268330818],[114,-11,79,0.010715930452719088],[114,-10,64,0.006780653844551779],[114,-10,65,0.006304608089286225],[114,-10,66,0.005838827528344008],[114,-10,67,0.005390443335715693],[114,-10,68,0.004986877816180343],[114,-10,69,0.0046663499715309045],[114,-10,70,0.004462313452249941],[114,-10,71,0.004402639569057492],[114,-10,72,0.004509246717962425],[114,-10,73,0.004797854955176786],[114,-10,74,0.005277865525196791],[114,-10,75,0.005952364883279175],[114,-10,76,0.0068182524963685594],[114,-10,77,0.007866491456533944],[114,-10,78,0.009082480700536247],[114,-10,79,0.010446547400694844],[114,-9,64,0.006447615530409271],[114,-9,65,0.005906662752436599],[114,-9,66,0.005398046825144945],[114,-9,67,0.0049262574922172625],[114,-9,68,0.004513311534615411],[114,-9,69,0.004192452905060117],[114,-9,70,0.003993657895236094],[114,-9,71,0.003942571376420482],[114,-9,72,0.0040598927330587785],[114,-9,73,0.00436090727148473],[114,-9,74,0.004855163113667522],[114,-9,75,0.005546293279608886],[114,-9,76,0.006431982360252597],[114,-9,77,0.007504076888077448],[114,-9,78,0.008748838227638318],[114,-9,79,0.010147336535981025],[114,-8,64,0.006088610545527967],[114,-8,65,0.0054864736548921374],[114,-8,66,0.004939044152517376],[114,-8,67,0.004448251327236458],[114,-8,68,0.004030493704769178],[114,-8,69,0.003713636713221647],[114,-8,70,0.0035238014270376128],[114,-8,71,0.003484066457072467],[114,-8,72,0.0036136169787280804],[114,-8,73,0.003927058308533289],[114,-8,74,0.0044338942397465705],[114,-8,75,0.005138169998821096],[114,-8,76,0.006038279339996115],[114,-8,77,0.007126934957707024],[114,-8,78,0.0083913010689627],[114,-8,79,0.009813286703445973],[114,-7,64,0.005706657869897575],[114,-7,65,0.005047932278969248],[114,-7,66,0.004466157775924677],[114,-7,67,0.003960800108219468],[114,-7,68,0.003542517785028747],[114,-7,69,0.00323349825704205],[114,-7,70,0.003055707487028757],[114,-7,71,0.0030293736272328795],[114,-7,72,0.003171909844513121],[114,-7,73,0.0034970191532898796],[114,-7,74,0.004013981659308629],[114,-7,75,0.004727124228567922],[114,-7,76,0.0056354722109770725],[114,-7,77,0.006732582470498954],[114,-7,78,0.008006556605999388],[114,-7,79,0.009440232893202208],[114,-6,64,0.0053056582321129074],[114,-6,65,0.004595686632217255],[114,-6,66,0.003984355558126025],[114,-6,67,0.0034687764845344935],[114,-6,68,0.00305384161780803],[114,-6,69,0.0027558754110594648],[114,-6,70,0.0025924768034897207],[114,-6,71,0.0025808041195823977],[114,-6,72,0.002736286265725084],[114,-6,73,0.003071531458776877],[114,-6,74,0.0035954340715638675],[114,-6,75,0.004312479755034604],[114,-6,76,0.005222248575206465],[114,-6,77,0.006319115488398231],[114,-6,78,0.007592147074121279],[114,-6,79,0.009025193055106554],[114,-5,64,0.004889797140581347],[114,-5,65,0.004134536831290545],[114,-5,66,0.0034986395589079043],[114,-5,67,0.002976980776594764],[114,-5,68,0.0025687576976056482],[114,-5,69,0.0022843683820057046],[114,-5,70,0.002136928110925412],[114,-5,71,0.002140377764730524],[114,-5,72,0.002308001522030383],[114,-5,73,0.002651155406511977],[114,-5,74,0.0031782074360453263],[114,-5,75,0.0038936896707130212],[114,-5,76,0.00479766200208993],[114,-5,77,0.005885287078740694],[114,-5,78,0.007146615326268995],[114,-5,79,0.008566578598297079],[114,-4,64,0.004463130480709256],[114,-4,65,0.00366900984451281],[114,-4,66,0.0030136244714809345],[114,-4,67,0.002489737801859113],[114,-4,68,0.002091020359277628],[114,-4,69,0.0018220055614116143],[114,-4,70,0.0016913079623813519],[114,-4,71,0.0017095796521928689],[114,-4,72,0.0018878557416132152],[114,-4,73,0.0022361215853740715],[114,-4,74,0.002762102653214687],[114,-4,75,0.0034702774725977716],[114,-4,76,0.004361113584576046],[114,-4,77,0.005430525978902947],[114,-4,78,0.006669557009994169],[114,-4,79,0.008064276345904285],[114,-3,64,0.004029356537066306],[114,-3,65,0.0032031171427894575],[114,-3,66,0.0025332934948005107],[114,-3,67,0.002010663647919836],[114,-3,68,0.0016236330644529748],[114,-3,69,0.0013710568065725235],[114,-3,70,0.0012571321920135882],[114,-3,71,0.0012892294300540558],[114,-3,72,0.0014760888187690393],[114,-3,73,0.0018262479923244425],[114,-3,74,0.002346700266795555],[114,-3,75,0.0030417846245848717],[114,-3,76,0.003912307372308917],[114,-3,77,0.004954895008785327],[114,-3,78,0.00616157735252956],[114,-3,79,0.00751959950626073],[114,-2,64,0.003591778497893377],[114,-2,65,0.0027402992150206452],[114,-2,66,0.0020609354505057996],[114,-2,67,0.001542606009813219],[114,-2,68,0.0011687991632638346],[114,-2,69,9.329972310643084E-4],[114,-2,70,8.351617528565825E-4],[114,-2,71,8.794655506812473E-4],[114,-2,72,0.0010723675751422702],[114,-2,73,0.0014209234526974806],[114,-2,74,0.001931332904023976],[114,-2,75,0.002607724677760318],[114,-2,76,0.003451179121394516],[114,-2,77,0.004458987995475951],[114,-2,78,0.0056241506328114],[114,-2,79,0.006935105055255877],[114,-1,64,0.003153461629324099],[114,-1,65,0.0022835610441150987],[114,-1,66,0.0015992670985158692],[114,-1,67,0.0010877618546248434],[114,-1,68,7.280396506889838E-4],[114,-1,69,5.086247204533315E-4],[114,-1,70,4.255157779834686E-4],[114,-1,71,4.798468785570673E-4],[114,-1,72,6.758670857185857E-4],[114,-1,73,0.0010191588276322165],[114,-1,74,0.0015150962155987145],[114,-1,75,0.0021675440603944568],[114,-1,76,0.002977797787920209],[114,-1,77,0.003943763928367959],[114,-1,78,0.005059380336894172],[114,-1,79,0.006314274803073766],[114,0,64,0.0027175893640264664],[114,0,65,0.0018358027088592422],[114,0,66,0.001150744682440252],[114,0,67,6.479762574363995E-4],[114,0,68,3.0248151806602894E-4],[114,0,69,9.833446752897418E-5],[114,0,70,2.7924786961197626E-5],[114,0,71,8.957414285362806E-5],[114,0,72,2.8544814796893837E-4],[114,0,73,6.197074220869289E-4],[114,0,74,0.0010968991093203422],[114,0,75,0.0017205896656311685],[114,0,76,0.0024922391900319366],[114,0,77,0.0034103170396202168],[114,0,78,0.004469657946228947],[114,0,79,0.005661057345532131],[114,1,64,0.00228802490057826],[114,1,65,0.0014003507215426308],[114,1,66,7.180694841299026E-4],[114,1,67,2.2522649771894966E-4],[114,1,68,-1.0667979346905438E-4],[114,1,69,-2.974464668042201E-4],[114,1,70,-3.578733894146633E-4],[114,1,71,-2.9216656283505114E-4],[114,1,72,-1.0006720932169618E-4],[114,1,73,2.2125625568350602E-4],[114,1,74,6.755547867698729E-4],[114,1,75,0.001266084685677524],[114,1,76,0.0019944333298303877],[114,1,77,0.002859584455773475],[114,1,78,0.0038572222777923755],[114,1,79,0.004979273214000359],[114,2,64,0.0018700839327866355],[114,2,65,9.816935149104913E-4],[114,2,66,3.048890939458883E-4],[114,2,67,-1.7770813769726199E-4],[114,2,68,-4.975443053337627E-4],[114,2,69,-6.776656860209774E-4],[114,2,70,-7.315965289551415E-4],[114,2,71,-6.65740064445697E-4],[114,2,72,-4.8152411444275474E-4],[114,2,73,-1.7731368560477674E-4],[114,2,74,2.499109244726274E-4],[114,2,75,8.031114380444646E-4],[114,2,76,0.0014839847188174904],[114,2,77,0.002291991568316633],[114,2,78,0.0032236205416955365],[114,2,79,0.0042718856233030745],[114,3,64,0.0014714958701796765],[114,3,65,5.864090185139683E-4],[114,3,66,-8.330965431646269E-5],[114,3,67,-5.563892627570496E-4],[114,3,68,-8.666925851968767E-4],[114,3,69,-0.0010398860464356087],[114,3,70,-0.0010917325285668942],[114,3,71,-0.0010304722686834925],[114,3,72,-8.58964135351057E-4],[114,3,73,-5.765996964441845E-4],[114,3,74,-1.8098857639830195E-4],[114,3,75,3.305858683793548E-4],[114,3,76,9.59940999239218E-4],[114,3,77,0.0017069993918446583],[114,3,78,0.002569022789895138],[114,3,79,0.003540074429510363],[114,4,64,0.0011035933209437953],[114,4,65,2.243148732981837E-4],[114,4,66,-4.380928802436458E-4],[114,4,67,-9.036574043116836E-4],[114,4,68,-0.001208178456429613],[114,4,69,-0.0013793493978686436],[114,4,70,-0.0014346958589204698],[114,4,71,-0.0013839244077474286],[114,4,72,-0.0012310440571336229],[114,4,73,-9.762675666367835E-4],[114,4,74,-6.176910163836975E-4],[114,4,75,-1.5275064794449363E-4],[114,4,76,4.205435157125405E-4],[114,4,77,0.0011025972487312761],[114,4,78,0.001891444376349113],[114,4,79,0.0027821806948205934],[114,5,64,7.827282636424144E-4],[114,5,65,-9.016057975701383E-5],[114,5,66,-7.467590122290415E-4],[114,5,67,-0.0012083672033062446],[114,5,68,-0.001512331440021729],[114,5,69,-0.0016878656466315118],[114,5,70,-0.0017538282997980714],[114,5,71,-0.0017210340186088983],[114,5,72,-0.001594347298801978],[114,5,73,-0.001374563597435225],[114,5,74,-0.0010600762268728893],[114,5,75,-6.483280231484687E-4],[114,5,76,-1.3704725745760326E-4],[114,5,77,4.747322426205428E-4],[114,5,78,0.001185866307241521],[114,5,79,0.001992510043947301],[114,6,64,5.319135251552454E-4],[114,6,65,-3.363863516839928E-4],[114,6,66,-9.908039468411371E-4],[114,6,67,-0.0014539176554417828],[114,6,68,-0.001764366328503175],[114,6,69,-0.001952524425329845],[114,6,70,-0.0020382414632322365],[114,6,71,-0.002033120731678531],[114,6,72,-0.001942586966665756],[114,6,73,-0.0017677487026731803],[114,6,74,-0.0015070537392499763],[114,6,75,-0.001157736652833814],[114,6,76,-7.170577756197593E-4],[114,6,77,-1.8333354897124584E-4],[114,6,78,4.432413645426455E-4],[114,6,79,0.0011599793626919925],[114,7,64,3.814955304670297E-4],[114,7,65,-4.86122912853608E-4],[114,7,66,-0.0011438550128736143],[114,7,67,-0.0016155567595372612],[114,7,68,-0.0019410406002511923],[114,7,69,-0.0021516543169641193],[114,7,70,-0.002268010893599831],[114,7,71,-0.002302246288514752],[114,7,72,-0.002260071876728503],[114,7,73,-0.0021426279791339066],[114,7,74,-0.0019481368806993108],[114,7,75,-0.0016733542226669649],[114,7,76,-0.00131481813463648],[114,7,77,-8.698959480874201E-4],[114,7,78,-3.376287999300953E-4],[114,7,79,2.8062511059963617E-4],[114,8,64,3.597217127769827E-4],[114,8,65,-5.099087771029936E-4],[114,8,66,-0.001175237452227934],[114,8,67,-0.0016612085915267423],[114,8,68,-0.0020086080425857273],[114,8,69,-0.002249592210466644],[114,8,70,-0.0024053525481312296],[114,8,71,-0.002488358136049168],[114,8,72,-0.0025043997413819945],[114,8,73,-0.002454440753395369],[114,8,74,-0.0023362733530711737],[114,8,75,-0.0021459787487018876],[114,8,76,-0.00187919078120358],[114,8,77,-0.001532162669971309],[114,8,78,-0.0011026371290216075],[114,8,79,-5.905205303590625E-4],[114,9,64,4.8524893852651516E-4],[114,9,65,-3.8704417720586296E-4],[114,9,66,-0.0010622025439668184],[114,9,67,-0.0015658740774452734],[114,9,68,-0.0019394913356296413],[114,9,69,-0.002215825276674643],[114,9,70,-0.0024164739298145285],[114,9,71,-0.0025540862041530544],[114,9,72,-0.0026343969059703467],[114,9,73,-0.0026580743500486583],[114,9,74,-0.0026223788778572217],[114,9,75,-0.0025226310600577166],[114,9,76,-0.0023534888238207308],[114,9,77,-0.002110033203974817],[114,9,78,-0.0017886628678512814],[114,9,79,-0.0013877980033926009],[114,10,64,7.687821212386567E-4],[114,10,65,-1.0505617951442769E-4],[114,10,66,-7.904202856083611E-4],[114,10,67,-0.0013131385694341992],[114,10,68,-0.001714868856840124],[114,10,69,-0.002028777011526755],[114,10,70,-0.0022767076794767325],[114,10,71,-0.002471377905559933],[114,10,72,-0.002618395811845294],[114,10,73,-0.0027180979986025063],[114,10,74,-0.0027672039417434655],[114,10,75,-0.0027602861146175093],[114,10,76,-0.0026910550149157973],[114,10,77,-0.002553458726161386],[114,10,78,-0.002342597084786569],[114,10,79,-0.0020554509548012783],[114,11,64,0.0012154852076853718],[114,11,65,3.4271857448782243E-4],[114,11,66,-3.5158243715491526E-4],[114,11,67,-8.928179408938561E-4],[114,11,68,-0.001322386154467318],[114,11,69,-0.0016736088862664342],[114,11,70,-0.0019684300047076954],[114,11,71,-0.0022195609843153642],[114,11,72,-0.0024324701781848644],[114,11,73,-0.002607197781285768],[114,11,74,-0.002739994731550488],[114,11,75,-0.002824784236984185],[114,11,76,-0.00285444505726389],[114,11,77,-0.002821916104794031],[114,11,78,-0.0027211223600038296],[114,11,79,-0.002547722515618037],[114,12,64,0.0018276438592286805],[114,12,65,9.597983034559202E-4],[114,12,66,2.592350473455435E-4],[114,12,67,-2.983731778234883E-4],[114,12,68,-7.536477124752398E-4],[114,12,69,-0.0011398166464825093],[114,12,70,-0.0014787904943989122],[114,12,71,-0.001783236634850289],[114,12,72,-0.0020585212136661818],[114,12,73,-0.002304484933402328],[114,12,74,-0.0025170509669113204],[114,12,75,-0.002689663657549058],[114,12,76,-0.0028145570927404955],[114,12,77,-0.002883853058431647],[114,12,78,-0.002890488296625958],[114,12,79,-0.002828971393706157],[114,13,64,0.0026075850894651444],[114,13,65,0.0017494726874429886],[114,13,66,0.0010464548938679194],[114,13,67,4.759108772901044E-4],[114,13,68,-1.4850896322540411E-6],[114,13,69,-4.186178578102759E-4],[114,13,70,-7.972505253371826E-4],[114,13,71,-0.001150000798932026],[114,13,72,-0.0014822135519367127],[114,13,73,-0.0017936770523602253],[114,13,74,-0.002080181110899638],[114,13,75,-0.002334915802952438],[114,13,76,-0.0025497098221891616],[114,13,77,-0.00271610792390434],[114,13,78,-0.0028262873114815925],[114,13,79,-0.0028738132060412563],[114,14,64,0.003560859395914973],[114,14,65,0.002717977138577644],[114,14,66,0.0020171321097724954],[114,14,67,0.0014379879053247572],[114,14,68,9.430036270578602E-4],[114,14,69,4.998740731455653E-4],[114,14,70,8.707415112181084E-5],[114,14,71,-3.0798965670209667E-4],[114,14,72,-6.907574202465383E-4],[114,14,73,-0.0010611492778088438],[114,14,74,-0.0014150526277868743],[114,14,75,-0.0017456616602099125],[114,14,76,-0.0020446682698453257],[114,14,77,-0.0023033037677572155],[114,14,78,-0.002513231178451319],[114,14,79,-0.002667288272509017],[114,15,64,0.004705862242881647],[114,15,65,0.0038840403737260567],[114,15,66,0.0031903195496455214],[114,15,67,0.0026071293125203123],[114,15,68,0.0020991496755674256],[114,15,69,0.0016348753098073766],[114,15,70,0.0011930952162357584],[114,15,71,7.612023646371736E-4],[114,15,72,3.3353629229962374E-4],[114,15,73,-9.014358564641088E-5],[114,15,74,-5.060523018693402E-4],[114,15,75,-9.076399914144612E-4],[114,15,76,-0.001286717913602643],[114,15,77,-0.0016344492231792362],[114,15,78,-0.001942204212133449],[114,15,79,-0.002202280076657434],[114,16,64,0.006082408663394065],[114,16,65,0.0052873457429830914],[114,16,66,0.004605269803314738],[114,16,67,0.004021741632525675],[114,16,68,0.0035040526013294234],[114,16,69,0.0030217358701182763],[114,16,70,0.0025540085654829903],[114,16,71,0.0020882655309025443],[114,16,72,0.0016185656850917873],[114,16,73,0.0011442331892327138],[114,16,74,6.685749929034343E-4],[114,16,75,1.9771602132923348E-4],[114,16,76,-2.604470410687955E-4],[114,16,77,-6.971727222610854E-4],[114,16,78,-0.0011036821440412292],[114,16,79,-0.0014718467660566389],[114,17,64,0.007712919187810936],[114,17,65,0.006950043610363601],[114,17,66,0.00628365511944057],[114,17,67,0.005702694577073288],[114,17,68,0.005177409198637869],[114,17,69,0.0046786314895814205],[114,17,70,0.00418616388406623],[114,17,71,0.0036874770665883995],[114,17,72,0.0031763589917847973],[114,17,73,0.002651661119208105],[114,17,74,0.0021161433322806024],[114,17,75,0.0015754187465670557],[114,17,76,0.0010369993475272152],[114,17,77,5.094431334304388E-4],[114,17,78,1.6031767230396324E-6],[114,17,79,-4.7802124139524214E-4],[114,18,64,0.0095966091359288],[114,18,65,0.00887101902919557],[114,18,66,0.008223985258331335],[114,18,67,0.007647964207793223],[114,18,68,0.007116452350156234],[114,18,69,0.006601856787821469],[114,18,70,0.00608475548840565],[114,18,71,0.005552815286174176],[114,18,72,0.004999618507554421],[114,18,73,0.004423567867876853],[114,18,74,0.0038268709927273673],[114,18,75,0.0032146057004500852],[114,18,76,0.0025938669640667316],[114,18,77,0.0019729962522776964],[114,18,78,0.001360893731529134],[114,18,79,7.664135957932198E-4],[114,19,64,0.011713215834648526],[114,19,65,0.011029615586754466],[114,19,66,0.010405299852874663],[114,19,67,0.009836267549901892],[114,19,68,0.009299502486729797],[114,19,69,0.008769267821610928],[114,19,70,0.008227130439562259],[114,19,71,0.007661108543343718],[114,19,72,0.007064687016227614],[114,19,73,0.006435891125552618],[114,19,74,0.00577641979175046],[114,19,75,0.005090839481103577],[114,19,76,0.004385839612049954],[114,19,77,0.003669550195170263],[114,19,78,0.002950922256965626],[114,19,79,0.002239171428216068],[114,20,64,0.014026563314687296],[114,20,65,0.013389198532168797],[114,20,66,0.012790703479370572],[114,20,67,0.012230544801093547],[114,20,68,0.011689373045672812],[114,20,69,0.01114358675617369],[114,20,70,0.01057596871982964],[114,20,71,0.009975068036260646],[114,20,72,0.009334411661247146],[114,20,73,0.008651753751708163],[114,20,74,0.007928363897063364],[114,20,75,0.007168355208362094],[114,20,76,0.006378053120116678],[114,20,77,0.005565405641116709],[114,20,78,0.004739435670151113],[114,20,79,0.003909735871197661],[114,21,64,0.01187731537682777],[114,21,65,0.012447902432915402],[114,21,66,0.01299853075949488],[114,21,67,0.013526461856513948],[114,21,68,0.014047289984056905],[114,21,69,0.013675566678115588],[114,21,70,0.013082333804005787],[114,21,71,0.012446203134172397],[114,21,72,0.011760904281574606],[114,21,73,0.011024051018675362],[114,21,74,0.010236587883937437],[114,21,75,0.009402255638936942],[114,21,76,0.008527076389613981],[114,21,77,0.007618859118673808],[114,21,78,0.006686726306561096],[114,21,79,0.005740662246041498],[114,22,64,0.009416825617241562],[114,22,65,0.009934569918943637],[114,22,66,0.010454134288823547],[114,22,67,0.010969734078821756],[114,22,68,0.01149312290233298],[114,22,69,0.012042876063648462],[114,22,70,0.012633124215975204],[114,22,71,0.01327370674134879],[114,22,72,0.013970559742848124],[114,22,73,0.013497949377966998],[114,22,74,0.012647613854946659],[114,22,75,0.011740654172756736],[114,22,76,0.010782860175755433],[114,22,77,0.009781950022252944],[114,22,78,0.008747172378196218],[114,22,79,0.007688909558076479],[114,23,64,0.006931197851214933],[114,23,65,0.007393647867691107],[114,23,66,0.007879835495828987],[114,23,67,0.008381256166418402],[114,23,68,0.00890582947565067],[114,23,69,0.009469251928064143],[114,23,70,0.010083764523134604],[114,23,71,0.010758084867400501],[114,23,72,0.011497597621120714],[114,23,73,0.012304568581886083],[114,23,74,0.013178381784842867],[114,23,75,0.014115798951833519],[114,23,76,0.013090654236134338],[114,23,77,0.012002196968295006],[114,23,78,0.010870789120524724],[114,23,79,0.009707204547011827],[114,24,64,0.004487966738161837],[114,24,65,0.004893363682540064],[114,24,66,0.005344154412271674],[114,24,67,0.005829502616229722],[114,24,68,0.006353562225225928],[114,24,69,0.0069289593832257135],[114,24,70,0.007565849233720946],[114,24,71,0.008271639507903595],[114,24,72,0.00905098952953535],[114,24,73,0.009905852029546788],[114,24,74,0.010835557314198706],[114,24,75,0.011836939231850993],[114,24,76,0.012904502290018171],[114,24,77,0.014030629187357741],[114,24,78,0.013004792124170172],[114,24,79,0.011745439736277164],[114,25,64,0.0021552996221409493],[114,25,65,0.002502617652184368],[114,25,66,0.0029163227728333245],[114,25,67,0.0033836846708516894],[114,25,68,0.0039052195780792174],[114,25,69,0.004490330649477859],[114,25,70,0.005146916419101008],[114,25,71,0.005880902187326362],[114,25,72,0.006696056692327916],[114,25,73,0.007593869531087544],[114,25,74,0.008573489039236964],[114,25,75,0.00963172019154206],[114,25,76,0.010763081943430371],[114,25,77,0.011959923299832238],[114,25,78,0.013212597271968536],[114,25,79,0.013752107439461998],[114,26,64,-5.271812603534539E-7],[114,26,65,2.8844672484803347E-4],[114,26,66,6.637513157583558E-4],[114,26,67,0.0011112365996760777],[114,26,68,0.0016279653189263659],[114,26,69,0.002220008865510073],[114,26,70,0.0028928691477492544],[114,26,71,0.0036508372434202433],[114,26,72,0.004496639626832359],[114,26,73,0.005431161546675239],[114,26,74,0.006453247428466602],[114,26,75,0.007559577982880457],[114,26,76,0.008744623515340434],[114,26,77,0.01000067275451565],[114,26,78,0.011317936349269503],[114,26,79,0.01268472402674056],[114,27,64,-0.0019174666906261533],[114,27,65,-0.001686329127936377],[114,27,66,-0.0013503250191417506],[114,27,67,-9.245264866893585E-4],[114,27,68,-4.150885196457622E-4],[114,27,69,1.8066719514025473E-4],[114,27,70,8.657408427134392E-4],[114,27,71,0.001642662513128284],[114,27,72,0.0025129823742025157],[114,27,73,0.003476852591249845],[114,27,74,0.004532701028930135],[114,27,75,0.005676996537129977],[114,27,76,0.006904105396735357],[114,27,77,0.00820623828401816],[114,27,78,0.00957348690591049],[114,27,79,0.010993949264524112],[114,28,64,-0.00353985020037724],[114,28,65,-0.003365274112592502],[114,28,66,-0.0030690203045804208],[114,28,67,-0.0026665757910959652],[114,28,68,-0.002167032063092014],[114,28,69,-0.0015711156852879539],[114,28,70,-8.7839541904226E-4],[114,28,71,-8.820061119505625E-5],[114,28,72,7.997294686040248E-4],[114,28,73,0.0017847006094226965],[114,28,74,0.0028646231502542654],[114,28,75,0.004035675902903998],[114,28,76,0.0052920741673245075],[114,28,77,0.006625941248497395],[114,28,78,0.00802728264385116],[114,28,79,0.009484061843747893],[114,29,64,-0.004820342632003782],[114,29,65,-0.004700313254820192],[114,29,66,-0.004443785274515771],[114,29,67,-0.004066157164243431],[114,29,68,-0.0035791377373774946],[114,29,69,-0.002986820436569462],[114,29,70,-0.0022913707108904737],[114,29,71,-0.0014940451800189035],[114,29,72,-5.95962209459162E-4],[114,29,73,4.012422164153394E-4],[114,29,74,0.0014948736620358318],[114,29,75,0.0026807534887335702],[114,29,76,0.00395290793205789],[114,29,77,0.005303371476272866],[114,29,78,0.006722103725405666],[114,29,79,0.008197018716189698],[114,30,64,-0.00572169978522923],[114,30,65,-0.005653514062477822],[114,30,66,-0.005436205128758001],[114,30,67,-0.005084596522896264],[114,30,68,-0.004612666279465218],[114,30,69,-0.004027788652668819],[114,30,70,-0.0033347139056227456],[114,30,71,-0.0025366618677761204],[114,30,72,-0.0016361942656554804],[114,30,73,-6.35964257792148E-4],[114,30,74,4.6065730225048544E-4],[114,30,75,0.0016490790279500053],[114,30,76,0.002923109425469929],[114,30,77,0.004274700117035644],[114,30,78,0.00569381110465948],[114,30,79,0.007168397040514494],[114,31,64,-0.0062183226895224175],[114,31,65,-0.006198668490884879],[114,31,66,-0.006019602905837249],[114,31,67,-0.00569491794143793],[114,31,68,-0.005240494429671475],[114,31,69,-0.004666857294865096],[114,31,70,-0.0039812915964954525],[114,31,71,-0.003188984158411609],[114,31,72,-0.0022939775842584615],[114,31,73,-0.001299995703157622],[114,31,74,-2.111398440635461E-4],[114,31,75,9.67544321986774E-4],[114,31,76,0.0022296292999762287],[114,31,77,0.003566997255694318],[114,31,78,0.004969659764711635],[114,31,79,0.006425704829870911],[114,32,64,-0.006297603966017015],[114,32,65,-0.006322670189924581],[114,32,66,-0.006180443526284157],[114,32,67,-0.005883269689764359],[114,32,68,-0.005448559799566618],[114,32,69,-0.004889821734871484],[114,32,70,-0.004216790399027457],[114,32,71,-0.0034365920445579142],[114,32,72,-0.0025547600520998115],[114,32,73,-0.0015761186363615182],[114,32,74,-5.055337653948018E-4],[114,32,75,6.51469067887E-4],[114,32,76,0.001888220238635739],[114,32,77,0.003196554230432545],[114,32,78,0.004566590085586536],[114,32,79,0.005986643123219248],[114,33,64,-0.005961060825052142],[114,33,65,-0.006026681715965931],[114,33,66,-0.00591953330284034],[114,33,67,-0.005650153177954655],[114,33,68,-0.005237118092099035],[114,33,69,-0.004696722859129536],[114,33,70,-0.004041037425067774],[114,33,71,-0.0032790704369798],[114,33,72,-0.002417827881263966],[114,33,73,-0.0014632382803970543],[114,33,74,-4.20943636220014E-4],[114,33,75,7.030443334618558E-4],[114,33,76,0.0019018227676449546],[114,33,77,0.0031672108069821002],[114,33,78,0.004489496746627601],[114,33,79,0.0058573183219697445],[114,34,64,-0.0052252490506981475],[114,34,65,-0.005327086105893819],[114,34,66,-0.005253009418560091],[114,34,67,-0.005011449464961782],[114,34,68,-0.004621807542107873],[114,34,69,-0.00410295337520231],[114,34,70,-0.0034691544094099754],[114,34,71,-0.002731218172751106],[114,34,72,-0.0018975768958576782],[114,34,73,-9.752392254655883E-4],[114,34,74,2.939186514557111E-5],[114,34,75,0.0011098355060097812],[114,34,76,0.0022589838862639815],[114,34,77,0.0034686875802569933],[114,34,78,0.0047294747600170745],[114,34,79,0.006030403497345487],[114,35,64,-0.0041224520658903465],[114,35,65,-0.004256216940574912],[114,35,66,-0.004213113593415109],[114,35,67,-0.003999237699820056],[114,35,68,-0.0036345151503494526],[114,35,69,-0.003140178162143458],[114,35,70,-0.0025325406686733114],[114,35,71,-0.0018241032112705053],[114,35,72,-0.0010246498529331068],[114,35,73,-1.422142915831243E-4],[114,35,74,8.160857975579792E-4],[114,35,75,0.001843346804735278],[114,35,76,0.002932309879385678],[114,35,77,0.004074924202216321],[114,35,78,0.005262042437120649],[114,35,79,0.006483247653665325],[114,36,64,-0.0027011389348696583],[114,36,65,-0.0028628607756420736],[114,36,66,-0.0028487438996110228],[114,36,67,-0.0026623995942598013],[114,36,68,-0.0023240390072026057],[114,36,69,-0.0018570632243860938],[114,36,70,-0.0012796797866180183],[114,36,71,-6.059593207939319E-4],[114,36,72,1.5306441712892893E-4],[114,36,73,9.884220671131396E-4],[114,36,74,0.0018923647943989061],[114,36,75,0.0028576497101579393],[114,36,76,0.003876954928113142],[114,36,77,0.004942424269124412],[114,36,78,0.006045341305081662],[114,36,79,0.007175932127387423],[114,37,64,-0.0010261849478397649],[114,37,65,-0.0012125255929014513],[114,37,66,-0.001225778449721968],[114,37,67,-0.0010670037794784485],[114,37,68,-7.565407475956294E-4],[114,37,69,-3.1980754722728564E-4],[114,37,70,2.2323534648243618E-4],[114,37,71,8.570807115186938E-4],[114,37,72,0.0015695745361629535],[114,37,73,0.002350939745777928],[114,37,74,0.0031929248004340374],[114,37,75,0.004088077923182455],[114,37,76,0.005029147384176745],[114,37,77,0.006008607940313041],[114,37,78,0.007018313215955009],[114,37,79,0.008049273510152525],[114,38,64,8.228638615722097E-4],[114,38,65,6.143313731057805E-4],[114,38,66,5.74716647218113E-4],[114,38,67,7.054959086383876E-4],[114,38,68,9.862560234926321E-4],[114,38,69,0.0013896439088230772],[114,38,70,0.0018940564452771813],[114,38,71,0.0024826839871192985],[114,38,72,0.0031424059493502968],[114,38,73,0.0038628064628979495],[114,38,74,0.004635311271314511],[114,38,75,0.005452446708674391],[114,38,76,0.006307221270958657],[114,38,77,0.007192629974331871],[114,38,78,0.008101281385638898],[114,38,79,0.009025146915628262],[114,39,64,0.002789146595302491],[114,39,65,0.002561467226716762],[114,39,66,0.0024973096219585295],[114,39,67,0.0026006817631451734],[114,39,68,0.0028510810355321225],[114,39,69,0.0032192015268423893],[114,39,70,0.0036818336215564272],[114,39,71,0.004220948615788535],[114,39,72,0.004822581911617471],[114,39,73,0.005475832935445257],[114,39,74,0.006171983038623987],[114,39,75,0.006903732311316816],[114,39,76,0.007664555919108954],[114,39,77,0.008448180258379163],[114,39,78,0.009248178923089899],[114,39,79,0.010057688184845554],[114,40,64,0.004842305486414346],[114,40,65,0.004600577305687848],[114,40,66,0.004515866589555042],[114,40,67,0.004594781442314661],[114,40,68,0.004816694807058927],[114,40,69,0.005150240854100612],[114,40,70,0.0055705525887147405],[114,40,71,0.006058383911073054],[114,40,72,0.006598973821462167],[114,40,73,0.007181024174658871],[114,40,74,0.007795792338209929],[114,40,75,0.008436299787870338],[114,40,76,0.009096657357224787],[114,40,77,0.009771507549609254],[114,40,78,0.010455584021002282],[114,40,79,0.011143388054899485],[114,41,64,0.006947261096741598],[114,41,65,0.006698214993292911],[114,41,66,0.006598759101372014],[114,41,67,0.00665820758002029],[114,41,68,0.006855760217417809],[114,41,69,0.007157829062726377],[114,41,70,0.007537778990595777],[114,41,71,0.00797508646977071],[114,41,72,0.00845418013501899],[114,41,73,0.008963391723287629],[114,41,74,0.009494018834826534],[114,41,75,0.01003950066413902],[114,41,76,0.010594707534393455],[114,41,77,0.011155344764355087],[114,41,78,0.011717471101038272],[114,41,79,0.01227713166640825],[114,42,64,0.009066377583219367],[114,42,65,0.008817865271625348],[114,42,66,0.008710828308134966],[114,42,67,0.008757396412180752],[114,42,68,0.008936536239813709],[114,42,69,0.009212249342782216],[114,42,70,0.009555986232096756],[114,42,71,0.009945843518355613],[114,42,72,0.010365378366193986],[114,42,73,0.010802529962850685],[114,42,74,0.011248649574022595],[114,42,75,0.011697640450217966],[114,42,76,0.012145208540861714],[114,42,77,0.012588224673375094],[114,42,78,0.013024198562340081],[114,42,79,0.013450864731873438],[114,43,64,0.011163364266370239],[114,43,65,0.010923831336176849],[114,43,66,0.010817230879514887],[114,43,67,0.01085859239264128],[114,43,68,0.01102657937163164],[114,43,69,0.01128259161639445],[114,43,70,0.011596003824713853],[114,43,71,0.011943404673389984],[114,43,72,0.012307384927744733],[114,43,73,0.012675428912854218],[114,43,74,0.013038911034956264],[114,43,75,0.013392198738194342],[114,43,76,0.013731862981875755],[114,43,77,0.014055997028595715],[114,43,78,0.014363644045818913],[114,43,79,0.014654333744956671],[114,44,64,0.013207376223634743],[114,44,65,0.012985316533634403],[114,44,66,0.01288747522459773],[114,44,67,0.012931816059466868],[114,44,68,0.013096619076480957],[114,44,69,0.013340506079431061],[114,44,70,0.013630615694797801],[114,44,71,0.013941889395170987],[114,44,72,0.014255835276046572],[114,44,73,0.014559391114270761],[114,44,74,0.014843888510864408],[114,44,75,0.01510411962551096],[114,44,76,0.015093484713629023],[114,44,77,0.01485735044993628],[114,44,78,0.014646012894927458],[114,44,79,0.01445815212402492],[114,45,64,0.015177316908140812],[114,45,65,0.014980704676549961],[114,45,66,0.014899651096213353],[114,45,67,0.014955018220834851],[114,45,68,0.01512461024427728],[114,45,69,0.015321986345395836],[114,45,70,0.015035017527679719],[114,45,71,0.014737706391584478],[114,45,72,0.014449800840263066],[114,45,73,0.014185070121611723],[114,45,74,0.013952370103384905],[114,45,75,0.013756610357063107],[114,45,76,0.013599621708545234],[114,45,77,0.013480923194521155],[114,45,78,0.013398387638928647],[114,45,79,0.013348805332286127],[114,46,64,0.01374618326059176],[114,46,65,0.013912047609414653],[114,46,66,0.013968079555173518],[114,46,67,0.013890676197290754],[114,46,68,0.013702653264879247],[114,46,69,0.013451393770077437],[114,46,70,0.013174688227455933],[114,46,71,0.012901336394675608],[114,46,72,0.012652418006973736],[114,46,73,0.012442474156959331],[114,46,74,0.01228059730625706],[114,46,75,0.012171428190227873],[114,46,76,0.012116058150699337],[114,46,77,0.012112835702777889],[114,46,78,0.012158076408734616],[114,46,79,0.012246675392828248],[114,47,64,0.012044133606162924],[114,47,65,0.012173375253219935],[114,47,66,0.012200833742539142],[114,47,67,0.012100347393187045],[114,47,68,0.011895436177272333],[114,47,69,0.011636591592933012],[114,47,70,0.011364200408038264],[114,47,71,0.01110908036798815],[114,47,72,0.010893757515757567],[114,47,73,0.010733660220416719],[114,47,74,0.010638227811154383],[114,47,75,0.010611931974903874],[114,47,76,0.010655209336593521],[114,47,77,0.010765303900345762],[114,47,78,0.01093701828610338],[114,47,79,0.01116337294745563],[114,48,64,0.010480017439883312],[114,48,65,0.010567384233072769],[114,48,66,0.010560220314278855],[114,48,67,0.010430070840622488],[114,48,68,0.010201261425986659],[114,48,69,0.009927395267560405],[114,48,70,0.009651503464688847],[114,48,71,0.009406507721130376],[114,48,72,0.009216494605048085],[114,48,73,0.009097913297566125],[114,48,74,0.009060694654345242],[114,48,75,0.009109289649822426],[114,48,76,0.009243625519636027],[114,48,77,0.009459978161976412],[114,48,78,0.009751759601774344],[114,48,79,0.010110219561180573],[114,49,64,0.009110366644038286],[114,49,65,0.009150759699098003],[114,49,66,0.009102664313698628],[114,49,67,0.008935638322103786],[114,49,68,0.008674888040816384],[114,49,69,0.008377060040776154],[114,49,70,0.008087828641251486],[114,49,71,0.007842278691426308],[114,49,72,0.007666165512936242],[114,49,73,0.007577105726167372],[114,49,74,0.007585696733940326],[114,49,75,0.007696562863387018],[114,49,76,0.007909326395511423],[114,49,77,0.008219501940898221],[114,49,78,0.008619312848055415],[114,49,79,0.009098428556503916],[114,50,64,0.00797978055714955],[114,50,65,0.007968502835643624],[114,50,66,0.007873244499163977],[114,50,67,0.007661920251228364],[114,50,68,0.00736066689003149],[114,50,69,0.007029036493801406],[114,50,70,0.006715294191311391],[114,50,71,0.006456714629436918],[114,50,72,0.006280815302358426],[114,50,73,0.0062065286561913905],[114,50,74,0.006245310717253086],[114,50,75,0.006402184199447807],[114,50,76,0.006676714255786978],[114,50,77,0.007063915249787037],[114,50,78,0.007555087133323737],[114,50,79,0.008138580227170124],[114,51,64,0.007120964941868734],[114,51,65,0.0070539292185275385],[114,51,66,0.006905649102266043],[114,51,67,0.006642773389901173],[114,51,68,0.006292394943819553],[114,51,69,0.005916768545895077],[114,51,70,0.0055666467997105805],[114,51,71,0.005281484788702427],[114,51,72,0.005090634007470071],[114,51,73,0.005014483325094907],[114,51,74,0.005065544731221436],[114,51,75,0.005249481801385106],[114,51,76,0.0055660790067560235],[114,51,77,0.006010150184179],[114,51,78,0.006572384674207289],[114,51,79,0.007240129826607942],[114,52,64,0.006554914876231234],[114,52,65,0.006428811907950915],[114,52,66,0.006222276318210149],[114,52,67,0.005901093075540393],[114,52,68,0.005493313642420376],[114,52,69,0.00506363461721288],[114,52,70,0.004665144391546233],[114,52,71,0.0043394316941197065],[114,52,72,0.004117727370827474],[114,52,73,0.0040220016778521476],[114,52,74,0.004066014870380929],[114,52,75,0.004256319032488874],[114,52,76,0.0045932092601792705],[114,52,77,0.005071622478788612],[114,52,78,0.005681982347196054],[114,52,79,0.006410988873540405],[114,53,64,0.006291245405292599],[114,53,65,0.00610367320811227],[114,53,66,0.005834483530644961],[114,53,67,0.005449014024075671],[114,53,68,0.004976255490796632],[114,53,69,0.0044830361101013865],[114,53,70,0.004024584497093605],[114,53,71,0.003644539230968256],[114,53,72,0.0033760262456673184],[114,53,73,0.003242700293207341],[114,53,74,0.0032597483238709516],[114,53,75,0.0034348527665768376],[114,53,76,0.0037691128359151915],[114,53,77,0.004257922138920461],[114,53,78,0.004891801004054558],[114,53,79,0.005657182106268114],[114,54,64,0.0063286737237966085],[114,54,65,0.006078228965458324],[114,54,66,0.005742989222086296],[114,54,67,0.005288263732369669],[114,54,68,0.004743942969257892],[114,54,69,0.004178637346057662],[114,54,70,0.003649482330041377],[114,54,71,0.003202047596681231],[114,54,72,0.0028713387487069777],[114,54,73,0.0026827715993961343],[114,54,74,0.0026531169546734814],[114,54,75,0.002791413943421125],[114,54,76,0.003099850064655584],[114,54,77,0.0035746062434181426],[114,54,78,0.00420666531391115],[114,54,79,0.004982582477930174],[114,55,64,0.006655656566796778],[114,55,65,0.006341989190529658],[114,55,66,0.005938431441781001],[114,55,67,0.005410672432972853],[114,55,68,0.004789443788237337],[114,55,69,0.0041447610446969626],[114,55,70,0.003535402696536316],[114,55,71,0.0030087192290106815],[114,55,72,0.002601549232069889],[114,55,73,0.0023411163572875753],[114,55,74,0.0022459051700987613],[114,55,75,0.0023265140397629],[114,55,76,0.002586483304575398],[114,55,77,0.003023097049286442],[114,55,78,0.0036281569351657226],[114,55,79,0.004388726630163143],[114,56,64,0.007251186364018146],[114,56,65,0.006875018673387288],[114,56,66,0.006402086595126942],[114,56,67,0.005798843454608068],[114,56,68,0.005096786425090214],[114,56,69,0.004366943350878038],[114,56,70,0.003669449783333183],[114,56,71,0.003053259766712946],[114,56,72,0.0025569680975549196],[114,56,73,0.0022096213558469805],[114,56,74,0.0020315159017212695],[114,56,75,0.002034981097727378],[114,56,76,0.0022251460878858088],[114,56,77,0.0026006885404639343],[114,56,78,0.0031545638416097584],[114,56,79,0.003874713311258256],[114,57,64,0.00808574956525132],[114,57,65,0.007648861119627489],[114,57,66,0.0071067521825387845],[114,57,67,0.0064269877133309285],[114,57,68,0.005641739761123329],[114,57,69,0.0048226523063431065],[114,57,70,0.00403091877446373],[114,57,71,0.003316898011834383],[114,57,72,0.0027208364020021923],[114,57,73,0.0022735862034389365],[114,57,74,0.0019973184649064164],[114,57,75,0.0019062289176440558],[114,57,76,0.002007235291357784],[114,57,77,0.0023006645535153447],[114,57,78,0.002780928628697725],[114,57,79,0.003437187216491682],[114,58,64,0.009122450368411332],[114,58,65,0.008627630163146348],[114,58,66,0.008017796951006255],[114,58,67,0.007261925901940909],[114,58,68,0.006392760488021947],[114,58,69,0.005482173522711373],[114,58,70,0.004592113117075708],[114,58,71,0.00377412874583909],[114,58,72,0.0030699890986205258],[114,58,73,0.002512303008375893],[114,58,74,0.0021251419922961243],[114,58,75,0.0019246629611252238],[114,58,76,0.001919729678323054],[114,58,77,0.0021125315806982546],[114,58,78,0.0024991986071831213],[114,58,79,0.0030704107222140216],[114,59,64,0.010318302879410319],[114,59,65,0.00976927041338688],[114,59,66,0.009094381728757952],[114,59,67,0.008264261759086814],[114,59,68,0.007312111774505462],[114,59,69,0.006309666643438675],[114,59,70,0.005319331098390911],[114,59,71,0.004393622105053962],[114,59,72,0.003575680625626446],[114,59,73,0.0028997926229964647],[114,59,74,0.0023919180318036407],[114,59,75,0.0020702264223724258],[114,59,76,0.001945638088030352],[114,59,77,0.002022369295476298],[114,59,78,0.002298480451856437],[114,59,79,0.002766425961051653],[114,60,64,0.011625694504170659],[114,60,65,0.01102699146922447],[114,60,66,0.010290853992796615],[114,60,67,0.009389729584935752],[114,60,68,0.00835715647666606],[114,60,69,0.007264395983600762],[114,60,70,0.0061740252071971645],[114,60,71,0.005139303044246592],[114,60,72,0.004204576390363124],[114,60,73,0.0034057009773203607],[114,60,74,0.0027704757676313457],[114,60,75,0.002319089810833193],[114,60,76,0.002064580451255414],[114,60,77,0.0020133017667803977],[114,60,78,0.0021654021125484444],[114,60,79,0.002515309642828464],[114,61,64,0.012994023118576744],[114,61,65,0.012350877579500978],[114,61,66,0.011558318971134558],[114,61,67,0.01059071892771692],[114,61,68,0.00948182793941809],[114,61,69,0.008302138508394756],[114,61,70,0.007114137535168023],[114,61,71,0.005971604210765654],[114,61,72,0.004919913504309373],[114,61,73,0.003996358850988703],[114,61,74,0.003230493162513797],[114,61,75,0.0026444872463978818],[114,61,76,0.002253504688554472],[114,61,77,0.002066092225931643],[114,61,78,0.002084584612621076],[114,61,79,0.00230552296426714],[114,62,64,0.014371510282667942],[114,62,65,0.013689675352197367],[114,62,66,0.012846389806971193],[114,62,67,0.011817979095494176],[114,62,68,0.0106382811723311],[114,62,69,0.009376772054536225],[114,62,70,0.008095614225978728],[114,62,71,0.006848895315870491],[114,62,72,0.005682833902288553],[114,62,73,0.004636008225917738],[114,62,74,0.003739607130886363],[114,62,75,0.0030177024993235132],[114,62,76,0.002487542399462346],[114,62,77,0.0021598641240272217],[114,62,78,0.002039226256705428],[114,62,79,0.0021243588699787594],[114,63,64,0.01570719246182315],[114,63,65,0.014992761611200035],[114,63,66,0.014105119011624364],[114,63,67,0.013022505850909798],[114,63,68,0.011778726891516596],[114,63,69,0.010442046413868145],[114,63,70,0.009074101704192221],[114,63,71,0.007729091825112624],[114,63,72,0.006453892728118326],[114,63,73,0.005288198127163165],[114,63,74,0.004264685636199079],[114,63,75,0.003409207611130915],[114,63,76,0.0027410060773276623],[114,63,77,0.002272951067746273],[114,63,78,0.002011801644393407],[114,63,79,0.0019584888275814604],[114,64,64,0.015615902426277787],[114,64,65,0.01621229317253086],[114,64,66,0.015287113107665928],[114,64,67,0.014157612324232889],[114,64,68,0.012857450600983837],[114,64,69,0.011453539586222404],[114,64,70,0.01000682711188344],[114,64,71,0.008571445496488625],[114,64,72,0.0071947445894075535],[114,64,73,0.005917352596330961],[114,64,74,0.004773264361472657],[114,64,75,0.0037899567100989806],[114,64,76,0.0029885303855257442],[114,64,77,0.0023838780480585856],[114,64,78,0.0019848777399821458],[114,64,79,0.0017946111609773395],[114,65,64,0.01459211183780937],[114,65,65,0.01538221263034332],[114,65,66,0.01634983201446246],[114,65,67,0.015181185832826672],[114,65,68,0.013833018542899901],[114,65,69,0.012370801169745881],[114,65,70,0.010854665049742387],[114,65,71,0.009338518974273053],[114,65,72,0.00787000997683494],[114,65,73,0.006490513151021783],[114,65,74,0.005235150330883188],[114,65,75,0.0041328373860405575],[114,65,76,0.0032063598067721775],[114,65,77,0.002472476179409184],[114,65,78,0.001942049080323145],[114,65,79,0.0016202028479058437],[114,66,64,0.013734271641358467],[114,66,65,0.014540435998513287],[114,66,66,0.015547620947197948],[114,66,67,0.016058131924239653],[114,66,68,0.014670671977545027],[114,66,69,0.0131596844925154],[114,66,70,0.011584392361868756],[114,66,71,0.009998346298804167],[114,66,72,0.008449323808792562],[114,66,73,0.0069792577659279305],[114,66,74,0.005624194562240419],[114,66,75,0.004414281714271586],[114,66,76,0.003373784728567757],[114,66,77,0.0025211329469076987],[114,66,78,0.0018689940135570703],[114,66,79,0.0014243765310169817],[114,67,64,0.013066502997782609],[114,67,65,0.013883518563446728],[114,67,66,0.01490948953667557],[114,67,67,0.016159808932995342],[114,67,68,0.01534491086161638],[114,67,69,0.013794868700428096],[114,67,70,0.012171132320680542],[114,67,71,0.010526780818993683],[114,67,72,0.008909567701621166],[114,67,73,0.007361798067096927],[114,67,74,0.00592023550637752],[114,67,75,0.004616038718665489],[114,67,76,0.0034747277549249224],[114,67,77,0.002516179716258302],[114,67,78,0.0017546536513089997],[114,67,79,0.0011988443160664056],[114,68,64,0.012599441798490934],[114,68,65,0.013422944073779508],[114,68,66,0.014462003185746069],[114,68,67,0.015730734965783044],[114,68,68,0.0158422675792016],[114,68,69,0.014262571604298988],[114,68,70,0.012600989161468224],[114,68,71,0.01091003159604622],[114,68,72,0.009237287179795833],[114,68,73,0.0076252560614337266],[114,68,74,0.00611121468049755],[114,68,75,0.004727109739114198],[114,68,76,0.003499481738046522],[114,68,77,0.002449417996110735],[114,68,78,0.0015925349861615641],[114,68,79,9.389897367113999E-4],[114,69,64,0.0123271568308823],[114,69,65,0.013153901194813314],[114,69,66,0.014201502308132009],[114,69,67,0.015482797973510688],[114,69,68,0.016164273934494187],[114,69,69,0.014563457076235884],[114,69,70,0.012873877297628651],[114,69,71,0.011147393110637513],[114,69,72,0.009431299041465908],[114,69,73,0.0077681259256046605],[114,69,74,0.006195470220134421],[114,69,75,0.00474585250928622],[114,69,76,0.0034466052900174733],[114,69,77,0.002319790035630693],[114,69,78,0.0013821434477248843],[114,69,79,6.450527203908919E-4],[114,70,64,0.01222271413257918],[114,70,65,0.013049698186614781],[114,70,66,0.014101629939329504],[114,70,67,0.015389956472835226],[114,70,68,0.016336619711471392],[114,70,69,0.014722894754762055],[114,70,70,0.01301476701455583],[114,70,71,0.01126332271971449],[114,70,72,0.009515411326825655],[114,70,73,0.007813417267763422],[114,70,74,0.006195060149182054],[114,70,75,0.0046932236493582],[114,70,76,0.003335813268181005],[114,70,77,0.0021456429966567785],[114,70,78,0.0011403508835056539],[114,70,79,3.323433886376208E-4],[114,71,64,0.012246424721156803],[114,71,65,0.01306769253389122],[114,71,66,0.014116770282746683],[114,71,67,0.01540359601388654],[114,71,68,0.016410781420106844],[114,71,69,0.014795043118291377],[114,71,70,0.013080100718827462],[114,71,71,0.01131601290103054],[114,71,72,0.0095489182196534],[114,71,73,0.007820785896157723],[114,71,74,0.006169193964329879],[114,71,75,0.0046271350705878135],[114,71,76,0.00322285014109698],[114,71,77,0.00197969003944376],[114,71,78,9.16005250540344E-4],[114,71,79,4.506353899217602E-5],[114,72,64,0.012366916512142301],[114,72,65,0.01317357546729183],[114,72,66,0.014209646581841043],[114,72,67,0.01548346713450769],[114,72,68,0.016429835931621457],[114,72,69,0.01482565507242013],[114,72,70,0.013117970191489248],[114,72,71,0.011355445516406368],[114,72,72,0.009583145804752552],[114,72,73,0.00784227585086554],[114,72,74,0.006169945299462594],[114,72,75,0.004598959102635056],[114,72,76,0.003157633872732398],[114,72,77,0.001869640299181869],[114,72,78,7.538717127233269E-4],[114,72,79,-1.7566120382055735E-4],[114,73,64,0.012561264302001326],[114,73,65,0.013342223154036567],[114,73,66,0.014352932608552376],[114,73,67,0.015600071311013394],[114,73,68,0.01642530806134888],[114,73,69,0.014848187977332648],[114,73,70,0.013163539640841083],[114,73,71,0.011418199738061106],[114,73,72,0.009655736781078169],[114,73,73,0.00791619092370718],[114,73,74,0.006235835771373],[114,73,75,0.004646962534249575],[114,73,76,0.0031776867968304153],[114,73,77,0.001851778100187557],[114,73,78,6.885124557086443E-4],[114,73,79,-2.974521686748234E-4],[114,74,64,0.012811990787166591],[114,74,65,0.013554655065612684],[114,74,66,0.014526174724584886],[114,74,67,0.01573155154369881],[114,74,68,0.016420301300921564],[114,74,69,0.014886936022739243],[114,74,70,0.013242152492678553],[114,74,71,0.011530500240485351],[114,74,72,0.009793602988587358],[114,74,73,0.008069912031586588],[114,74,74,0.006394476810140577],[114,74,75,0.004798733013039876],[114,74,76,0.003310308477506755],[114,74,77,0.0019528470926318273],[114,74,78,7.458508446635909E-4],[114,74,79,-2.95459924271699E-4],[114,75,64,0.013104168448804073],[114,75,65,0.01379509123622355],[114,75,66,0.01471281025336517],[114,75,67,0.015860676206827025],[114,75,68,0.016432539066455188],[114,75,69,0.014960078120028543],[114,75,70,0.013372360276064392],[114,75,71,0.011711195878187105],[114,75,72,0.010015818748292736],[114,75,73,0.008322667694628343],[114,75,74,0.00666517879186437],[114,75,75,0.005073588719157074],[114,75,76,0.003574749395351739],[114,75,77,0.0021919541017997573],[114,75,78,9.447752328613539E-4],[114,75,79,-1.5108623792004064E-4],[114,76,64,0.013422627595815582],[114,76,65,0.014048113758545942],[114,76,66,0.014897287542397965],[114,76,67,0.015971921558388308],[114,76,68,0.016477311080847403],[114,76,69,0.015082635992246622],[114,76,70,0.013568868413246839],[114,76,71,0.011974663864001],[114,76,72,0.010336450323171337],[114,76,73,0.008688253311848202],[114,76,74,0.0070615236455362105],[114,76,75,0.005484968056355641],[114,76,76,0.00398438286254506],[114,76,77,0.0025824908348954733],[114,76,78,0.0012987813798480403],[114,76,79,1.4935412653518436E-4],[114,77,64,0.013749275918303449],[114,77,65,0.014295937936817445],[114,77,66,0.015062293183694479],[114,77,67,0.016048658407977357],[114,77,68,0.016570319389628684],[114,77,69,0.015269337007810605],[114,77,70,0.013845393571488639],[114,77,71,0.012333634295891426],[114,77,72,0.010767316625583865],[114,77,73,0.009177694730991372],[114,77,74,0.007593896897234127],[114,77,75,0.006042795884843845],[114,77,76,0.004548872343476577],[114,77,77,0.0031340713582710586],[114,77,78,0.0018176522037932831],[114,77,79,6.160313722619374E-4],[114,78,64,0.014060534933170235],[114,78,65,0.01451579856018594],[114,78,66,0.01518609191719704],[114,78,67,0.016070448513441613],[114,78,68,0.016730418421713092],[114,78,69,0.015537376199299084],[114,78,70,0.014217427112984371],[114,78,71,0.012801929741302577],[114,78,72,0.011320676140782379],[114,78,73,0.009801851436409043],[114,78,74,0.00827197492632875],[114,78,75,0.006755822617547305],[114,78,76,0.00527633114213418],[114,78,77,0.00385448303254309],[114,78,78,0.0025091733596422305],[114,78,79,0.0012570577574033332],[114,79,64,0.01434459065180381],[114,79,65,0.014696934090797632],[114,79,66,0.015259015243473601],[114,79,67,0.016028786439631626],[114,79,68,0.01696487810386772],[114,79,69,0.015892929134917973],[114,79,70,0.01469022699543766],[114,79,71,0.013384140612726027],[114,79,72,0.012000759552407212],[114,79,73,0.010564944949644925],[114,79,74,0.00910034905855721],[114,79,75,0.00762940313062451],[114,79,76,0.006173273401288796],[114,79,77,0.0047517850280079064],[114,79,78,0.0033833138820505543],[114,79,79,0.00208464614953998],[114,80,64,0.014654892682789635],[114,80,65,0.01489347277006847],[114,80,66,0.015335118789176167],[114,80,67,0.015976854850447704],[114,80,68,0.01679952619153859],[114,80,69,0.016287318796924626],[114,80,70,0.015218906766493064],[114,80,71,0.01404022281912404],[114,80,72,0.012773386930814368],[114,80,73,0.011439616574484477],[114,80,74,0.01005934416195012],[114,80,75,0.008652288137075014],[114,80,76,0.007237477279111549],[114,80,77,0.005833227879018007],[114,80,78,0.004457073549343112],[114,80,79,0.0031256475190627893],[114,81,64,0.015044484140080226],[114,81,65,0.015159484974725768],[114,81,66,0.0154687861870192],[114,81,67,0.015968583830305184],[114,81,68,0.01664150773915281],[114,81,69,0.016670235370075188],[114,81,70,0.015756432103709934],[114,81,71,0.014727444746395264],[114,81,72,0.013601133893832383],[114,81,73,0.012394697561489306],[114,81,74,0.011124910186060552],[114,81,75,0.00980829905062718],[114,81,76,0.008461257412335551],[114,81,77,0.007100093759876128],[114,81,78,0.005741016769634633],[114,81,79,0.004400055662773184],[114,82,64,0.015547535339504875],[114,82,65,0.015530654820113895],[114,82,66,0.015696761711138],[114,82,67,0.01604128745632865],[114,82,68,0.01654848827766227],[114,82,69,0.017005076061962335],[114,82,70,0.016267597433755516],[114,82,71,0.015412768477132511],[114,82,72,0.014453909019438185],[114,82,73,0.013403804248622801],[114,82,74,0.012275091417829514],[114,82,75,0.011080566295760753],[114,82,76,0.00983340829499271],[114,82,77,0.008547323408445499],[114,82,78,0.007236604274572267],[114,82,79,0.005916106872834562],[114,83,64,0.01618183849448815],[114,83,65,0.01602667580106314],[114,83,66,0.01604041446233122],[114,83,67,0.016217760749213522],[114,83,68,0.016544373560867822],[114,83,69,0.017005856152965963],[114,83,70,0.01672761891032872],[114,83,71,0.016071720338709974],[114,83,72,0.015308115622186824],[114,83,73,0.014444798456849183],[114,83,74,0.01348978657894274],[114,83,75,0.01245158399586874],[114,83,76,0.011339542511595042],[114,83,77,0.010164121314698453],[114,83,78,0.008937043641061383],[114,83,79,0.007671349756639655],[114,84,64,0.0169512161383179],[114,84,65,0.01665356354779147],[114,84,66,0.01650792412231159],[114,84,67,0.016508304058715437],[114,84,68,0.0166414880655515],[114,84,69,0.016896205095522053],[114,84,70,0.01712078058441864],[114,84,71,0.016687307866155562],[114,84,72,0.016145854146747986],[114,84,73,0.015499284006324356],[114,84,74,0.014750542093753665],[114,84,75,0.01390329660217184],[114,84,76,0.012962461508144896],[114,84,77,0.011934595915410977],[114,84,78,0.01082817914556449],[114,84,79,0.009653760508115316],[114,85,64,0.016271998230634174],[114,85,65,0.016776235452948304],[114,85,66,0.01709638215570869],[114,85,67,0.016912668979192125],[114,85,68,0.01684233319327825],[114,85,69,0.016876766998989316],[114,85,70,0.017012107005898128],[114,85,71,0.01724785473947953],[114,85,72,0.01695416658179642],[114,85,73,0.016552140245809283],[114,85,74,0.016040378910755607],[114,85,75,0.015417217351310221],[114,85,76,0.014682558321543662],[114,85,77,0.013838433788216907],[114,85,78,0.01288941956801936],[114,85,79,0.011842901932347983],[114,86,64,0.015319706101783912],[114,86,65,0.01596915041271712],[114,86,66,0.01650522541784754],[114,86,67,0.01693530015238495],[114,86,68,0.017141270244944808],[114,86,69,0.016945389639370385],[114,86,70,0.016833873945914117],[114,86,71,0.016810679818353984],[114,86,72,0.016882577366184853],[114,86,73,0.017057755272902795],[114,86,74,0.017343653811118392],[114,86,75,0.0169745789205892],[114,86,76,0.01647825209666584],[114,86,77,0.015851607172633585],[114,86,78,0.015094702821538668],[114,86,79,0.014211124709245604],[114,87,64,0.014280398371516094],[114,87,65,0.015071818895220662],[114,87,66,0.01577382269009308],[114,87,67,0.016394430431509392],[114,87,68,0.016945508359841054],[114,87,69,0.017093900469377574],[114,87,70,0.016726232492382188],[114,87,71,0.01643134430446719],[114,87,72,0.016221140365906703],[114,87,73,0.016109523492083538],[114,87,74,0.016110891458317445],[114,87,75,0.016238816827563576],[114,87,76,0.01650491379957958],[114,87,77,0.01691789537879126],[114,87,78,0.017413496339178634],[114,87,79,0.016724809458971333],[114,88,64,0.013184016084478448],[114,88,65,0.014111706702029112],[114,88,66,0.014975471410286642],[114,88,67,0.01578396594072282],[114,88,68,0.016549312434851627],[114,88,69,0.017275385671240248],[114,88,70,0.01668105009674378],[114,88,71,0.01610678306164347],[114,88,72,0.015603563099330298],[114,88,73,0.015191024175430423],[114,88,74,0.0148897230087761],[114,88,75,0.014719559976686052],[114,88,76,0.014698409354067335],[114,88,77,0.014840962825633214],[114,88,78,0.0151577896527188],[114,88,79,0.01565461633200765],[114,89,64,0.012063909201838394],[114,89,65,0.013119820901335963],[114,89,66,0.014138309950383371],[114,89,67,0.015128649116558071],[114,89,68,0.016103567710602687],[114,89,69,0.017066489649916274],[114,89,70,0.016687001406726843],[114,89,71,0.01583108942306382],[114,89,72,0.015029723276305876],[114,89,73,0.014308189377032512],[114,89,74,0.013693228097188304],[114,89,75,0.013211186193364862],[114,89,76,0.012886400540306167],[114,89,77,0.012739817788310624],[114,89,78,0.012787853934620546],[114,89,79,0.013041497189122309],[114,90,64,0.010955050420740247],[114,90,65,0.01212899704378727],[114,90,66,0.013292476392457437],[114,90,67,0.014455359462200007],[114,90,68,0.015631313259378384],[114,90,69,0.016823865987709085],[114,90,70,0.016730546062435337],[114,90,71,0.015596272715387431],[114,90,72,0.014497636248993157],[114,90,73,0.013465402933448478],[114,90,74,0.012532413260300102],[114,90,75,0.011731461178289812],[114,90,76,0.011093425971272176],[114,90,77,0.010645662087361007],[114,90,78,0.010410651540495851],[114,90,79,0.010404922831489367],[114,91,64,0.009892365694320957],[114,91,65,0.011172299120805038],[114,91,66,0.01246860008810515],[114,91,67,0.01379171919317217],[114,91,68,0.015156561230673252],[114,91,69,0.016567280304119573],[114,91,70,0.016796835344494793],[114,91,71,0.015392954441625532],[114,91,72,0.014003920071420617],[114,91,73,0.012665717078876017],[114,91,74,0.011417096849286195],[114,91,75,0.010297183645580679],[114,91,76,0.009343353985496298],[114,91,77,0.008589395072486775],[114,91,78,0.008063947544311662],[114,91,79,0.007789237066997718],[114,92,64,0.008909184323056997],[114,92,65,0.010281535094431532],[114,92,66,0.011696403274131668],[114,92,67,0.013164801488755692],[114,92,68,0.014703133776484504],[114,92,69,0.016316653621431764],[114,92,70,0.01687054575960211],[114,92,71,0.015211001518870594],[114,92,72,0.01354420698812623],[114,92,73,0.011911023706337842],[114,92,74,0.010355825221734815],[114,92,75,0.00892383577098596],[114,92,76,0.007658761200728403],[114,92,77,0.00660071884733365],[114,92,78,0.005784472282151682],[114,92,79,0.005237976034290072],[114,93,64,0.008035811219513054],[114,93,65,0.009485890567876482],[114,93,66,0.01100341524128217],[114,93,67,0.012599943727524718],[114,93,68,0.014293595684849805],[114,93,69,0.016091137326720715],[114,93,70,0.016936637810421346],[114,93,71,0.015040095101271933],[114,93,72,0.013113500192569997],[114,93,73,0.01120217944497894],[114,93,74,0.009355749808581117],[114,93,75,0.007625199807871739],[114,93,76,0.006060280552604328],[114,93,77,0.004707214177849666],[114,93,78,0.003606726253423355],[114,93,79,0.002792407852738053],[114,94,64,0.00729822369847948],[114,94,65,0.00881068292396676],[114,94,66,0.010413801322187822],[114,94,67,0.012119667869971757],[114,94,68,0.013948284737705381],[114,94,69,0.0159082753981579],[114,94,70,0.016981038347666632],[114,94,71,0.014870233644077146],[114,94,72,0.012706474795229602],[114,94,73,0.010539083796587453],[114,94,74,0.008422464613810875],[114,94,75,0.0064129407470671865],[114,94,76,0.0045659190080373935],[114,94,77,0.0029333875749529975],[114,94,78,0.001561755478036688],[114,94,79,4.900397674252944E-4],[114,95,64,0.006716894911846639],[114,95,65,0.00827623803344249],[114,95,66,0.009947308749902682],[114,95,67,0.011742709950406589],[114,95,68,0.013684441625746587],[114,95,69,0.015783255560252805],[114,95,70,0.016991245043087418],[114,95,71,0.014692168981676667],[114,95,72,0.012317722033921454],[114,95,73,0.009920709642562904],[114,95,74,0.007559803748990567],[114,95,75,0.005296154918269151],[114,95,76,0.0031903451439563245],[114,95,77,0.0012996900247856508],[114,95,78,-3.241019521083769E-4],[114,95,79,-0.0016369062319849842],[114,96,64,0.006305745831330455],[114,96,65,0.00789689142550848],[114,96,66,0.00961833123845083],[114,96,67,0.01148316045324735],[114,96,68,0.01351544108198773],[114,96,69,0.01572825088040919],[114,96,70,0.01695685165358111],[114,96,71,0.014497774301946327],[114,96,72,0.01194193584536467],[114,96,73,0.009345085496077779],[114,96,74,0.006769598645819372],[114,96,75,0.004280884450640805],[114,96,76,0.001944146782473043],[114,96,77,-1.7849217694276736E-4],[114,96,78,-0.0020304974203271186],[114,96,79,-0.003563048382499818],[114,97,64,0.006071227481321372],[114,97,65,0.0076801156182546215],[114,97,66,0.009435093950748564],[114,97,67,0.011349717174608667],[114,97,68,0.01345012573634282],[114,97,69,0.015751853177145916],[114,97,70,0.0168699928693795],[114,97,71,0.014280343001252565],[114,97,72,0.011574040997689843],[114,97,73,0.008809228933365857],[114,97,74,0.006051394628084325],[114,97,75,0.003369597528498974],[114,97,76,8.330588735100549E-4],[114,97,77,-0.0014918740462880227],[114,97,78,-0.003544380754021948],[114,97,79,-0.005271429813978783],[114,98,64,0.006011534937798186],[114,98,65,0.0076257751256533736],[114,98,66,0.009398960346307621],[114,98,67,0.011345052007977889],[114,98,68,0.013492244045099421],[114,98,69,0.01585859947793281],[114,98,70,0.01672570765373048],[114,98,71,0.01403481749971325],[114,98,72,0.011209262058833797],[114,98,73,0.008309030693165076],[114,98,74,0.0054021265597727],[114,98,75,0.0025606343946126086],[114,98,76,-1.4283818470755362E-4],[114,98,77,-0.0026383355637645337],[114,98,78,-0.004861335967035367],[114,98,79,-0.00675513205411882],[114,99,64,0.006115954436561497],[114,99,65,0.00772551048999068],[114,99,66,0.009503862240465245],[114,99,67,0.01146529294201339],[114,99,68,0.013639993510958704],[114,99,69,0.016048592641219453],[114,99,70,0.016522220088240086],[114,99,71,0.013757947185116888],[114,99,72,0.010843132545882397],[114,99,73,0.007839088984573485],[114,99,74,0.004815753318784111],[114,99,75,0.0018476190686589013],[114,99,76,-9.899495981538465E-4],[114,99,77,-0.003624011949804447],[114,99,78,-0.005986943155251417],[114,99,79,-0.008018916553734226],[114,100,64,0.00636434477425786],[114,100,65,0.007962252533070553],[114,100,66,0.009735854257844916],[114,100,67,0.01169962241846422],[114,100,68,0.013885670280786596],[114,100,69,0.016317217142378392],[114,100,70,0.016261136837469006],[114,100,71,0.013448374736634806],[114,100,72,0.010471443665684393],[114,100,73,0.007392493591117007],[114,100,74,0.004282850875776547],[114,100,75,0.0012188367618084326],[114,100,76,-0.0017220264153371793],[114,100,77,-0.004464410170073216],[114,100,78,-0.006938165952510929],[114,100,79,-0.009080893450313326],[114,101,64,0.0067268040119541584],[114,101,65,0.008309535718739318],[114,101,66,0.01007207115140325],[114,101,67,0.012028876178383944],[114,101,68,0.014213908276553291],[114,101,69,0.016653021800261323],[114,101,70,0.015949910525085036],[114,101,71,0.013109426522004902],[114,101,72,0.010093332987170201],[114,101,73,0.006964174032213166],[114,101,74,0.0037941713524375564],[114,101,75,6.609461764093071E-4],[114,101,76,-0.0023563655202411184],[114,101,77,-0.005180593077978252],[114,101,78,-0.00773959614646209],[114,101,79,-0.009968905363412803],[114,102,64,0.007167042914602808],[114,102,65,0.008730519091324685],[114,102,66,0.010475290291325792],[114,102,67,0.012415595774319185],[114,102,68,0.014587137182897735],[114,102,69,0.017018448683617415],[114,102,70,0.015625972839631956],[114,102,71,0.01277819667811536],[114,102,72,0.009745332615259266],[114,102,73,0.006589826619225151],[114,102,74,0.0033842517050188107],[114,102,75,2.069547368991323E-4],[114,102,76,-0.0028618994416696806],[114,102,77,-0.005743874795900415],[114,102,78,-0.008365391172307352],[114,102,79,-0.010660422135997721],[114,103,64,0.007652230046386663],[114,103,65,0.009189398079473504],[114,103,66,0.010906896388687505],[114,103,67,0.01281853878094715],[114,103,68,0.014961625431283532],[114,103,69,0.017367368531473654],[114,103,70,0.015337787316574474],[114,103,71,0.012505317230903383],[114,103,72,0.009480038850807249],[114,103,73,0.006323719909124778],[114,103,74,0.0031086432024310727],[114,103,75,-8.679248785549872E-5],[114,103,76,-0.003182072493715489],[114,103,77,-0.006098155403546509],[114,103,78,-0.008760640399415313],[114,103,79,-0.01110250305399507],[114,104,64,0.008156227162764111],[114,104,65,0.009657770428074476],[114,104,66,0.011336428746035692],[114,104,67,0.013205426893672318],[114,104,68,0.015303467884879336],[114,104,69,0.017664369318235396],[114,104,70,0.015122212069399014],[114,104,71,0.012328966425113797],[114,104,72,0.009336823793677446],[114,104,73,0.006206244738852426],[114,104,74,0.003008520268660391],[114,104,75,-1.7863758459531586E-4],[114,104,76,-0.0032751076807315056],[114,104,77,-0.006201962086458677],[114,104,78,-0.008884647807962887],[114,104,79,-0.011255738070709018],[114,105,64,0.008660492984528782],[114,105,65,0.010115520515837936],[114,105,66,0.011742441601641767],[114,105,67,0.013553773405107206],[114,105,68,0.015589374426977751],[114,105,69,0.01748728231798952],[114,105,70,0.015003779194071122],[114,105,71,0.012274166230217315],[114,105,72,0.009341134983336037],[114,105,73,0.006263197325370119],[114,105,74,0.0031099266183429067],[114,105,75,-4.242192268665626E-5],[114,105,76,-0.0031148984697729836],[114,105,77,-0.006029441316421951],[114,105,78,-0.008712044097881348],[114,105,79,-0.011095497582900838],[114,106,64,0.009155411895166655],[114,106,65,0.010552063523856894],[114,106,66,0.012113655466829097],[114,106,67,0.01385192957341619],[114,106,68,0.015807601194667068],[114,106,69,0.01738934852571493],[114,106,70,0.014994000237265947],[114,106,71,0.012352198051688756],[114,106,72,0.009504009208203833],[114,106,73,0.0065053746688206885],[114,106,74,0.003423432029003856],[114,106,75,3.322087305435258E-4],[114,106,76,-0.0026913013559103343],[114,106,77,-0.005570665983024918],[114,106,78,-0.008233136290978115],[114,106,79,-0.010612352427634343],[114,107,64,0.009642071617085376],[114,107,65,0.010968035866563756],[114,107,66,0.012450549417002547],[114,107,67,0.01410056395832604],[114,107,68,0.015959303587890574],[114,107,69,0.017376116802849093],[114,107,70,0.015090284589132039],[114,107,71,0.01255965564083343],[114,107,72,0.009821252554511013],[114,107,73,0.0069278698777320595],[114,107,74,0.00394352706838093],[114,107,75,9.392789978000865E-4],[114,107,76,-0.0020106032183827057],[114,107,77,-0.004832069310422125],[114,107,78,-0.007454334148400297],[114,107,79,-0.009812519551271185],[114,108,64,0.010134491909343282],[114,108,65,0.011377434067620101],[114,108,66,0.012767396650692082],[114,108,67,0.014314577163252806],[114,108,68,0.01606031360281431],[114,108,69,0.017430653854184863],[114,108,70,0.015274468115345451],[114,108,71,0.012877132512342912],[114,108,72,0.010272284051748733],[114,108,73,0.007509064881877733],[114,108,74,0.004647753417058693],[114,108,75,0.0017557364677915576],[114,108,76,-0.0010961652668948017],[114,108,77,-0.003837006971094688],[114,108,78,-0.006398654358421636],[114,108,79,-0.008718333783591851],[114,109,64,0.010662306090387152],[114,109,65,0.011810204012900062],[114,109,66,0.013094745370888412],[114,109,67,0.014525454153888843],[114,109,68,0.01614334376444455],[114,109,69,0.017518859681632356],[114,109,70,0.015510949618468838],[114,109,71,0.013267541447883245],[114,109,72,0.010818640529544213],[114,109,73,0.008209318239169814],[114,109,74,0.005495567644718876],[114,109,75,0.002740480133541019],[114,109,76,1.0754778503295494E-5],[114,109,77,-0.0026264486914910493],[114,109,78,-0.005106303376151649],[114,109,79,-0.007368746124098303],[114,110,64,0.011273896981304429],[114,110,65,0.012315282293049776],[114,110,66,0.013482346813034899],[114,110,67,0.014784056084878164],[114,110,68,0.01626061968793415],[114,110,69,0.01758701429550454],[114,110,70,0.015744432967965512],[114,110,71,0.013674063908902277],[114,110,72,0.011402140536241516],[114,110,73,0.008969345963674567],[114,110,74,0.006426936498802612],[114,110,75,0.0038331629421881537],[114,110,76,0.0012500007743004994],[114,110,77,-0.0012598005366290246],[114,110,78,-0.003635339729461277],[114,110,79,-0.005819848924651716],[114,111,64,0.012033124489401574],[114,111,65,0.01295736673154156],[114,111,66,0.01399578584056709],[114,111,67,0.015156911975786481],[114,111,68,0.016479630888939445],[114,111,69,0.01756676136194197],[114,111,70,0.015905822381065957],[114,111,71,0.014027111263622015],[114,111,72,0.011953037778160506],[114,111,73,0.009719661537131438],[114,111,74,0.007373123314692635],[114,111,75,0.0049663484311852505],[114,111,76,0.002556032467368811],[114,111,77,1.9991879349967996E-4],[114,111,78,-0.002045623382508827],[114,111,79,-0.004127712521813258],[114,112,64,0.012985271783526865],[114,112,65,0.013783322773745917],[114,112,66,0.014682954339422532],[114,112,67,0.015692340847367692],[114,112,68,0.01684848497839831],[114,112,69,0.017410914355433595],[114,112,70,0.01594953937553933],[114,112,71,0.014283447094516287],[114,112,72,0.012431176760274715],[114,112,73,0.010423918800030138],[114,112,74,0.008302293489916233],[114,112,75,0.006113373758213393],[114,112,76,0.003907961442138314],[114,112,77,0.0017381256225170259],[114,112,78,-3.4498903781218375E-4],[114,112,79,-0.002293076722417779],[114,113,64,0.014150858886112193],[114,113,65,0.014815719807686697],[114,113,66,0.015567974526917468],[114,113,67,0.016415483919998176],[114,113,68,0.017392792551244395],[114,113,69,0.017093984548397435],[114,113,70,0.01585076647888517],[114,113,71,0.014419510719773843],[114,113,72,0.012814841362668118],[114,113,73,0.011062828022762294],[114,113,74,0.009198149979832444],[114,113,75,0.007261474711332526],[114,113,76,0.005297059081247546],[114,113,77,0.003350580840563886],[114,113,78,0.001467207484749864],[114,113,79,-3.1009109515560315E-4],[114,114,64,0.015531129592424434],[114,114,65,0.016058118680410845],[114,114,66,0.016656446985263383],[114,114,67,0.017333684524541256],[114,114,68,0.01744789074720827],[114,114,69,0.016606019205339436],[114,114,70,0.01559865037725975],[114,114,71,0.014423842279886284],[114,114,72,0.013092279414602458],[114,114,73,0.011624681560997538],[114,114,74,0.010049388234446047],[114,114,75,0.008400126422711497],[114,114,76,0.006713968706661089],[114,114,77,0.005029488354478078],[114,114,78,0.003385117460776137],[114,114,79,0.00181771368549102],[114,115,64,0.017110858135630902],[114,115,65,0.017497789814031273],[114,115,66,0.01746517480636316],[114,115,67,0.01706193459380347],[114,115,68,0.016567519163822597],[114,115,69,0.015950585422949404],[114,115,70,0.015194553309580425],[114,115,71,0.014295633909081689],[114,115,72,0.013260580922219005],[114,115,73,0.01210458043758426],[114,115,74,0.010849285692770536],[114,115,75,0.009521003099777265],[114,115,76,0.008149035393850802],[114,115,77,0.006764187344283898],[114,115,78,0.005397439043347345],[114,115,79,0.00407879136861506],[114,116,64,0.01636078125095272],[114,116,65,0.016217394597699508],[114,116,66,0.016037978179684075],[114,116,67,0.01581550448208773],[114,116,68,0.015526049249958394],[114,116,69,0.015142774112666105],[114,116,70,0.014650314060785272],[114,116,71,0.014043280267688411],[114,116,72,0.013324546216653084],[114,116,73,0.0125036426181077],[114,116,74,0.011595266298704571],[114,116,75,0.010617907927764661],[114,116,76,0.00959260312544594],[114,116,77,0.008541811172806895],[114,116,78,0.007488425218921453],[114,116,79,0.006454917556818383],[114,117,64,0.014501171410946643],[114,117,65,0.014495433978537907],[114,117,66,0.014475275461463818],[114,117,67,0.01443388945764447],[114,117,68,0.014351777359391827],[114,117,69,0.014207225587779678],[114,117,70,0.013986519822187857],[114,117,71,0.01368292947565621],[114,117,72,0.013295544806142609],[114,117,73,0.012828193483790752],[114,117,74,0.0122884402454838],[114,117,75,0.011686673044533942],[114,117,76,0.011035278877033925],[114,117,77,0.010347912238704664],[114,117,78,0.009638858938583836],[114,117,79,0.008922497770443575],[114,118,64,0.012558840798876026],[114,118,65,0.01268517094683627],[114,118,66,0.012820085957622098],[114,118,67,0.012956953212198141],[114,118,68,0.013081008065597505],[114,118,69,0.013176178107504377],[114,118,70,0.01323079009627533],[114,118,71,0.01323703541742308],[114,118,72,0.01319036566716166],[114,118,73,0.013088938978695019],[114,118,74,0.012933119150591229],[114,118,75,0.012725029504028831],[114,118,76,0.012468163262556505],[114,118,77,0.01216705211528307],[114,118,78,0.01182699449311315],[114,118,79,0.011453844958969046],[114,119,64,0.010588034059659109],[114,119,65,0.010838436666535887],[114,119,66,0.011121454079336146],[114,119,67,0.011430562808255872],[114,119,68,0.011755937184755776],[114,119,69,0.012087540624972358],[114,119,70,0.012416073735826646],[114,119,71,0.01273291232036513],[114,119,72,0.01303005966214666],[114,119,73,0.013300121881600822],[114,119,74,0.013536306857130594],[114,119,75,0.013732447158811634],[114,119,76,0.013883047399448737],[114,119,77,0.01398335636700055],[114,119,78,0.014029464264428616],[114,119,79,0.014018425348466453],[114,120,64,0.008646331255431645],[114,120,65,0.009010596858102958],[114,120,66,0.009432105837850946],[114,120,67,0.009904361838499763],[114,120,68,0.010422570956550338],[114,120,69,0.010982990884440066],[114,120,70,0.011578960122602896],[114,120,71,0.01220129244298859],[114,120,72,0.012838774724858767],[114,120,73,0.013478661626438551],[114,120,74,0.014107166051084453],[114,120,75,0.014709944404805065],[114,120,76,0.015272575684456493],[114,120,77,0.015781033482769734],[114,120,78,0.016222150047487026],[114,120,79,0.016584071587312295],[114,121,64,0.006792211772624792],[114,121,65,0.0072581784709069615],[114,121,66,0.0078061604774539335],[114,121,67,0.008429590703843033],[114,121,68,0.009128682524705684],[114,121,69,0.009906099914818752],[114,121,70,0.010758005408778075],[114,121,71,0.011674887644558322],[114,121,72,0.012642584408628593],[114,121,73,0.013643278068548832],[114,121,74,0.01465646087648585],[114,121,75,0.015659867742642723],[114,121,76,0.016630374199949127],[114,121,77,0.017544857410110883],[114,121,78,0.01823897104373022],[114,121,79,0.01757716524405089],[114,122,64,0.005082684696185646],[114,122,65,0.0056365585539981744],[114,122,66,0.006296898361755475],[114,122,67,0.007056955097913325],[114,122,68,0.007921806750932061],[114,122,69,0.008900483871650345],[114,122,70,0.009992074664486357],[114,122,71,0.011186955544797572],[114,122,72,0.012468310347497954],[114,122,73,0.013813599567253287],[114,122,74,0.015195975722268109],[114,122,75,0.016585641119874036],[114,122,76,0.017951144497564794],[114,122,77,0.01731282174057019],[114,122,78,0.016169000704245026],[114,122,79,0.01513950826202144],[114,123,64,0.003570986619457955],[114,123,65,0.004197716314650096],[114,123,66,0.00495458610544155],[114,123,67,0.005834543670862603],[114,123,68,0.006847274291414067],[114,123,69,0.008007984087568504],[114,123,70,0.009318700697114322],[114,123,71,0.010769870920433095],[114,123,72,0.012342339135445078],[114,123,73,0.014009255728107337],[114,123,74,0.01573791034535924],[114,123,75,0.017491485026675167],[114,123,76,0.017291227016665776],[114,123,77,0.015688085245588224],[114,123,78,0.014176718708549257],[114,123,79,0.012794655921137581],[114,124,64,0.0023043477308841904],[114,124,65,0.0029880492304749542],[114,124,66,0.0038243598255904244],[114,124,67,0.00480579573478575],[114,124,68,0.00594628576393238],[114,124,69,0.007266876101865246],[114,124,70,0.008772460232043158],[114,124,71,0.010453702924505473],[114,124,72,0.01228943408429185],[114,124,73,0.014248955120650508],[114,124,74,0.016294251484358594],[114,124,75,0.01808350194947007],[114,124,76,0.016084309782719533],[114,124,77,0.01413447825833174],[114,124,78,0.012281288762926687],[114,124,79,0.010569887359271097],[114,125,64,0.001321826896869708],[114,125,65,0.0020462539624942536],[114,125,66,0.0029441672731928526],[114,125,67,0.004007519766398476],[114,125,68,0.005254026735906825],[114,125,69,0.006710108352812795],[114,125,70,0.008383368070258903],[114,125,71,0.010264798654358193],[114,125,72,0.012331542276421097],[114,125,73,0.014549548259381637],[114,125,74,0.016876121106827107],[114,125,75,0.017230107773375424],[114,125,76,0.014922758771985688],[114,125,77,0.012660906554747834],[114,125,78,0.010498824249142407],[114,125,79,0.008488571650422575],[114,126,64,6.522163436020858E-4],[114,126,65,0.0014012727029977024],[114,126,66,0.0023427694964399943],[114,126,67,0.0034679633597472902],[114,126,68,0.004797824168874959],[114,126,69,0.006363571131665485],[114,126,70,0.008175289765416184],[114,126,71,0.010224373534902244],[114,126,72,0.012486597283942835],[114,126,73,0.014925076106958217],[114,126,74,0.017493101420761],[114,126,75,0.016381824345156074],[114,126,76,0.013807356241315388],[114,126,77,0.011273859003381988],[114,126,78,0.008841743269454062],[114,126,79,0.006569168872407265],[114,127,64,3.1201642913552955E-4],[114,127,65,0.001070305483148469],[114,127,66,0.0020378025824512374],[114,127,67,0.003204935182413868],[114,127,68,0.004595344862998497],[114,127,69,0.006244396314626134],[114,127,70,0.008164373291414449],[114,127,71,0.010347108924992462],[114,127,72,0.012767317881326658],[114,127,73,0.015385804329155978],[114,127,74,0.018152536767126703],[114,127,75,0.015534683517214903],[114,127,76,0.012737866659360561],[114,127,77,0.009977152020807468],[114,127,78,0.007318163231157489],[114,127,79,0.004824269279923253],[114,128,64,3.034808904226371E-4],[114,128,65,0.001056888860893234],[114,128,66,0.002033899923213719],[114,128,67,0.0032239793927560517],[114,128,68,0.004652836355955827],[114,128,69,0.006359288308354767],[114,128,70,0.008357500101192674],[114,128,71,0.010639757296433634],[114,128,72,0.013180003033670435],[114,128,73,0.015937243500857713],[114,128,74,0.0176199072251848],[114,128,75,0.014685779440385311],[114,128,76,0.011713154704036466],[114,128,77,0.008771712951736576],[114,128,78,0.005931335363521065],[114,128,79,0.0032596711123486803],[114,129,64,6.12732848065671E-4],[114,129,65,0.0013490413096737548],[114,129,66,0.002320875354468201],[114,129,67,0.003516602883070269],[114,129,68,0.004963410643910171],[114,129,69,0.006702886565708518],[114,129,70,0.008750755908156903],[114,129,71,0.011099755277154436],[114,129,72,0.013723323397606329],[114,129,73,0.016579155431182636],[114,129,74,0.01688973522018459],[114,129,75,0.013833731254001372],[114,129,76,0.010731339050225764],[114,129,77,0.007655402603163142],[114,129,78,0.0046791195169573665],[114,129,79,0.0018734975099485727],[114,130,64,0.0012079517542354112],[114,130,65,0.0019174755325903545],[114,130,66,0.0028719674229797346],[114,130,67,0.00405855562405293],[114,130,68,0.005505371008032821],[114,130,69,0.00725615995122893],[114,130,70,0.009327921453332173],[114,130,71,0.011713844792359318],[114,130,72,0.014387109526276799],[114,130,73,0.017304545743751225],[114,130,74,0.016115310368779466],[114,130,75,0.01297917610688192],[114,130,76,0.00978998205038055],[114,130,77,0.006622877134736525],[114,130,78,0.003553499553066135],[114,130,79,6.553529580358365E-4],[114,131,64,0.002037631376366161],[114,131,65,0.00271387783493722],[114,131,66,0.0036421449479873327],[114,131,67,0.004808164299494588],[114,131,68,0.006240582148227749],[114,131,69,0.007984833160360711],[114,131,70,0.010058983453905478],[114,131,71,0.012456702479928881],[114,131,72,0.01515113692379053],[114,131,73,0.01809864281496038],[114,131,74,0.015305704532981811],[114,131,75,0.012125292525797849],[114,131,76,0.008886315400242263],[114,131,77,0.005665489482344921],[114,131,78,0.0025401395947559735],[114,131,79,-4.144803740010763E-4],[114,132,64,0.0030288933848658123],[114,132,65,0.003669231199910539],[114,132,66,0.004566442605718803],[114,132,67,0.005704679985973159],[114,132,68,0.007112836036986368],[114,132,69,0.00883778856312334],[114,132,70,0.010898599219111647],[114,132,71,0.013289500157626399],[114,132,72,0.01598381934243317],[114,132,73,0.017536633403028815],[114,132,74,0.014476174266063483],[114,132,75,0.01127847815890629],[114,132,76,0.008017636868042782],[114,132,77,0.004771375434964562],[114,132,78,0.0016181349282782718],[114,132,79,-0.0013656456297980637],[114,133,64,0.004086692756756143],[114,133,65,0.0046916263901197845],[114,133,66,0.005556370769421179],[114,133,67,0.0066632710610356645],[114,133,68,0.008041359830101145],[114,133,69,0.009738963351412838],[114,133,70,0.01177623252208062],[114,133,71,0.014148132074445343],[114,133,72,0.01682840556047496],[114,133,73,0.01672201731866556],[114,133,74,0.013666208033093258],[114,133,75,0.01046849322606516],[114,133,76,0.007203445844837812],[114,133,77,0.003949411104740925],[114,133,78,7.855584927411081E-4],[114,133,79,-0.0022108652217861123],[114,134,64,0.005113820861509131],[114,134,65,0.005684427329495383],[114,134,66,0.0065161718551551605],[114,134,67,0.007589324132758398],[114,134,68,0.008933015891336622],[114,134,69,0.010597156896459167],[114,134,70,0.01260318720706441],[114,134,71,0.014947055007620322],[114,134,72,0.017603209918648655],[114,134,73,0.015987588209080167],[114,134,74,0.012947582714458644],[114,134,75,0.009761043339172146],[114,134,76,0.006502679534574035],[114,134,77,0.0032511219919226344],[114,134,78,8.59521595518759E-5],[114,134,79,-0.002915065982434277],[114,135,64,0.006031725544666011],[114,135,65,0.006569404406302746],[114,135,66,0.007368213714256074],[114,135,67,0.008406085355457478],[114,135,68,0.00971224948997408],[114,135,69,0.011338395277046663],[114,135,70,0.013307503651406117],[114,135,71,0.015616798026961401],[114,135,72,0.018194534051615873],[114,135,73,0.015396337681885478],[114,135,74,0.012379253686298245],[114,135,75,0.009210533246232461],[114,135,76,0.005964700008684582],[114,135,77,0.0027203703835616206],[114,135,78,-4.4273178965789373E-4],[114,135,79,-0.0034465579457563546],[114,136,64,0.0067812446544626625],[114,136,65,0.007287772169237138],[114,136,66,0.00805433100396458],[114,136,67,0.009056299003185202],[114,136,68,0.010323032439253487],[114,136,69,0.011908209696054807],[114,136,70,0.013836614090606254],[114,136,71,0.016107041045170224],[114,136,72,0.017759306701243288],[114,136,73,0.014993083983896033],[114,136,74,0.012002779360724365],[114,136,75,0.008854954928950408],[114,136,76,0.0056236526878210786],[114,136,77,0.0023872079658490562],[114,136,78,-7.747435120303054E-4],[114,136,79,-0.003784056633550285],[114,137,64,0.007322078926444521],[114,137,65,0.007799599573018837],[114,137,66,0.008535172618145966],[114,137,67,0.009501481689647784],[114,137,68,0.010728054819069775],[114,137,69,0.012270745333081626],[114,137,70,0.01415637610057143],[114,137,71,0.016385587089627018],[114,137,72,0.017537822739524835],[114,137,73,0.014805558900244958],[114,137,74,0.011843398471351371],[114,137,75,0.00871692588754485],[114,137,76,0.005499435065482539],[114,137,77,0.0022687442017009984],[114,137,78,-8.957976922996097E-4],[114,137,79,-0.003916104241982209],[114,138,64,0.00763265551906649],[114,138,65,0.00808360943308547],[114,138,66,0.008789933632656287],[114,138,67,0.009721573573530326],[114,138,68,0.010908283014075128],[114,138,69,0.01240822193949792],[114,138,70,0.014250438810155249],[114,138,71,0.016437643540894338],[114,138,72,0.017543256714272],[114,138,73,0.014845247707515141],[114,138,74,0.011910898343634591],[114,138,75,0.00880456047763146],[114,138,76,0.0055985441660408395],[114,138,77,0.002369942112649846],[114,138,78,-8.023572822645554E-4],[114,138,79,-0.0038404600345820494],[114,139,64,0.007710383867695257],[114,139,65,0.008137368789327307],[114,139,66,0.008816473489821468],[114,139,67,0.009714968292441317],[114,139,68,0.010862885821815023],[114,139,69,0.012320747929715544],[114,139,70,0.014119943579875718],[114,139,71,0.016265414034427748],[114,139,72,0.017772396055707573],[114,139,73,0.01510798064289883],[114,139,74,0.012200272737188812],[114,139,75,0.009112173044873929],[114,139,76,0.005914801675819141],[114,139,77,0.002684340631221459],[114,139,78,-5.009394634168545E-4],[114,139,79,-0.0035634602207460374],[114,140,64,0.00757230550845034],[114,140,65,0.007977871851715834],[114,140,66,0.008631822108507207],[114,140,67,0.009498923319807336],[114,140,68,0.010609530326015287],[114,140,69,0.01202648965322535],[114,140,70,0.013783560805296085],[114,140,71,0.01588800263855509],[114,140,72,0.018205864534374658],[114,140,73,0.015574274438470334],[114,140,74,0.012692167931122161],[114,140,75,0.00962081168005591],[114,140,76,0.006429955752057346],[114,140,77,0.003194702741499577],[114,140,78,-7.444372161512564E-6],[114,140,79,-0.0030993475878323554],[114,141,64,0.007256139532241261],[114,141,65,0.0076425171982524055],[114,141,66,0.008273075592499471],[114,141,67,0.009110352413772983],[114,141,68,0.010185049193409231],[114,141,69,0.01156219748445161],[114,141,70,0.013277864446546436],[114,141,71,0.015341631857133045],[114,141,72,0.017740417815731026],[114,141,73,0.01620942254197655],[114,141,74,0.01335311579492497],[114,141,75,0.01029862148440273],[114,141,76,0.007114158573757514],[114,141,77,0.003873588672954497],[114,141,78,6.534929047976047E-4],[114,141,79,-0.00246957114217147],[114,142,64,0.006821725363116246],[114,142,65,0.007190480917873107],[114,142,66,0.007798683220374156],[114,142,67,0.008607001825502418],[114,142,68,0.009646481038583208],[114,142,69,0.010984090341733114],[114,142,70,0.01265804584890776],[114,142,71,0.014680175959489379],[114,142,72,0.017039664373057026],[114,142,73,0.01696333270303393],[114,142,74,0.014135552646517],[114,142,75,0.011101036292328113],[114,142,76,0.007926318750510992],[114,142,77,0.004683853455844329],[114,142,78,0.0014491265880344655],[114,142,79,-0.001702055999700988],[114,143,64,0.006338046673367677],[114,143,65,0.006690048833140751],[114,143,66,0.0072761148553952834],[114,143,67,0.008055481720148137],[114,143,68,0.009059502383896079],[114,143,69,0.01035673600453801],[114,143,70,0.011987300192139729],[114,143,71,0.01396511960789881],[114,143,72,0.01628157744471806],[114,143,73,0.017779202351375593],[114,143,74,0.014985694268455398],[114,143,75,0.011977774344911535],[114,143,76,0.008820140869884016],[114,143,77,0.005583657908327581],[114,143,78,0.0023425165974840295],[114,143,79,-8.28439328927653E-4],[114,144,64,0.005832014466292772],[114,144,65,0.006168602201739098],[114,144,66,0.006733211103281483],[114,144,67,0.007484169326148531],[114,144,68,0.00845309953951653],[114,144,69,0.009709732925432398],[114,144,70,0.011295778680369675],[114,144,71,0.013227053386407969],[114,144,72,0.015497028011291275],[114,144,73,0.018080269207737178],[114,144,74,0.015872753345720338],[114,144,75,0.012898436886386372],[114,144,76,0.00976587550230223],[114,144,77,0.006544168988326336],[114,144,78,0.003306012478578596],[114,144,79,1.2506948928933518E-4],[114,145,64,0.005318690521381567],[114,145,65,0.005641887560336962],[114,145,66,0.006186425404664518],[114,145,67,0.006910323889527244],[114,145,68,0.00784543634270373],[114,145,69,0.009062194280541192],[114,145,70,0.010603538023390634],[114,145,71,0.012486926113836295],[114,145,72,0.01470776504415588],[114,145,73,0.017242740945646214],[114,145,74,0.016773818596683227],[114,145,75,0.013839778665207863],[114,145,76,0.010740144212180926],[114,145,77,0.007542089321059846],[114,145,78,0.004316620023800588],[114,145,79,0.001136003774634981],[114,146,64,0.004813413208529973],[114,146,65,0.0051257885190121935],[114,146,66,0.005652209858738271],[114,146,67,0.006351043986685637],[114,146,68,0.007254333628464884],[114,146,69,0.008432696562516016],[114,146,70,0.009929902255270556],[114,146,71,0.011764762113839419],[114,146,72,0.013934429715570698],[114,146,73,0.016417611063833094],[114,146,74,0.017667418803753852],[114,146,75,0.014780142078511005],[114,146,76,0.01172129216346024],[114,146,77,0.008555970733942417],[114,146,78,0.005353311118693581],[114,146,79,0.002183972933514601],[114,147,64,0.004331102739332821],[114,147,65,0.00463563220441562],[114,147,66,0.00514632745078687],[114,147,67,0.005822588924318114],[114,147,68,0.006696604202427816],[114,147,69,0.007838635023650271],[114,147,70,0.009292847737282514],[114,147,71,0.011079086690598526],[114,147,72,0.01319603369519831],[114,147,73,0.015624285912435951],[114,147,74,0.018329344233462375],[114,147,75,0.015699738026765806],[114,147,76,0.012689560504787934],[114,147,77,0.009566264713036302],[114,147,78,0.006396939759016813],[114,147,79,0.0032504328204841105],[114,148,64,0.0038856706512532518],[114,148,65,0.004185601699995485],[114,148,66,0.004683270912331845],[114,148,67,0.005339806973322832],[114,148,68,0.00618749425602809],[114,148,69,0.007295683842128745],[114,148,70,0.008708489240543328],[114,148,71,0.010446446664926562],[114,148,72,0.012509523796295127],[114,148,73,0.014880055594340122],[114,148,74,0.017525599704365347],[114,148,75,0.01658088401594048],[114,148,76,0.01362723625316137],[114,148,77,0.010555373181558938],[114,148,78,0.007430183496258166],[114,148,79,0.0043185085640852425],[114,149,64,0.0034895337627873922],[114,149,65,0.003788254737314437],[114,149,66,0.004275788480976386],[114,149,67,0.004915670715248314],[114,149,68,0.00574023151173397],[114,149,69,0.0068173613038011605],[114,149,70,0.008190667398786147],[114,149,71,0.009881026250687193],[114,149,72,0.011889433230633217],[114,149,73,0.014199788207543767],[114,149,74,0.016781609977797755],[114,149,75,0.01740819938619335],[114,149,76,0.014518779629518136],[114,149,77,0.011507699643459273],[114,149,78,0.008437510459095549],[114,149,79,0.005372870123931521],[114,150,64,0.003153232832588649],[114,150,65,0.0034541488853123935],[114,150,66,0.003934516817734511],[114,150,67,0.004560919768466017],[114,150,68,0.005365680372721892],[114,150,69,0.006414700276759519],[114,150,70,0.007750637805074038],[114,150,71,0.009394358533762633],[114,150,72,0.011347619713191702],[114,150,73,0.013595699281282257],[114,150,74,0.01610996301227677],[114,150,75,0.018168757559060913],[114,150,76,0.01535092880827928],[114,150,77,0.012409700737534555],[114,150,78,0.009405172093072635],[114,150,79,0.006399660831015774],[114,151,64,0.002885156157066548],[114,151,65,0.0031915734839690394],[114,151,66,0.0036677213371216336],[114,151,67,0.0042838111566586],[114,151,68,0.0050721043447884105],[114,151,69,0.006096024247424975],[114,151,70,0.007396862015911108],[114,151,71,0.008995132804001217],[114,151,72,0.010893090644907844],[114,151,73,0.013077196601866311],[114,151,74,0.015520534250450047],[114,151,75,0.01818516671923769],[114,151,76,0.016112782050029948],[114,151,77,0.013249938250048474],[114,151,78,0.010321221756944504],[114,151,79,0.0073864791514189135],[114,152,64,0.0026913683491841004],[114,152,65,0.003006388575160228],[114,152,66,0.003481144209521617],[114,152,67,0.00408997758434505],[114,152,68,0.004865035998333245],[114,152,69,0.005866829184809908],[114,152,70,0.007134900722130584],[114,152,71,0.008689097984637793],[114,152,72,0.010531915594327557],[114,152,73,0.012650800615774867],[114,152,74,0.015020414066092655],[114,152,75,0.017604843457405976],[114,152,76,0.016795857192372282],[114,152,77,0.01401913163635438],[114,152,78,0.01117555931189626],[114,152,79,0.008322413904966398],[114,153,64,0.002575544556086755],[114,153,65,0.0029019710966357443],[114,153,66,0.0033779603063947695],[114,153,67,0.003982393893095769],[114,153,68,0.004747254745049639],[114,153,69,0.005729771504203608],[114,153,70,0.0069674093482339034],[114,153,71,0.008479062403714425],[114,153,72,0.01026722629695164],[114,153,73,0.012320140593797728],[114,153,74,0.01461389620671501],[114,153,75,0.017114502971444984],[114,153,76,0.01739412847847847],[114,153,77,0.01471021110461359],[114,153,78,0.011960001839153954],[114,153,79,0.009198133164940938],[114,154,64,0.0025390103947935143],[114,154,65,0.0028792686249643085],[114,154,66,0.003358841376752263],[114,154,67,0.003961451987832103],[114,154,68,0.004718872717527956],[114,154,69,0.005684762412754542],[114,154,70,0.0068942363505432504],[114,154,71,0.008364990158059802],[114,154,72,0.01009930439446135],[114,154,73,0.012086026740961903],[114,154,74,0.014302527369804778],[114,154,75,0.016716623166569227],[114,154,76,0.01790404070596105],[114,154,77,0.015318371317303833],[114,154,78,0.012668380622396391],[114,154,79,0.010006027062756356],[114,155,64,0.0025808879134635184],[114,155,65,0.002936960980002386],[114,155,66,0.003422128768007922],[114,155,67,0.004025144545174812],[114,155,68,0.004777529060343848],[114,155,69,0.005729168937324149],[114,155,70,0.0069126244996544845],[114,155,71,0.008344194332459854],[114,155,72,0.01002575714487406],[114,155,73,0.011946598442648823],[114,155,74,0.014085218053424817],[114,155,75,0.016411114631993663],[114,155,76,0.01832450068033395],[114,155,77,0.015841125768826996],[114,155,78,0.013296664533853126],[114,155,79,0.010740404722572304],[114,156,64,0.002698347920717313],[114,156,65,0.0030717300369502362],[114,156,66,0.0035641150358426163],[114,156,67,0.004169357845229457],[114,156,68,0.00491869296839638],[114,156,69,0.005858121959608699],[114,156,70,0.007017515454290087],[114,156,71,0.00841162735483179],[114,156,72,0.010041781349097119],[114,156,73,0.01189754884779537],[114,156,74,0.013958414828475447],[114,156,75,0.016195428141505937],[114,156,76,0.01857283291413939],[114,156,77,0.01627836190014981],[114,156,78,0.013843109967050553],[114,156,79,0.01139774555521103],[114,157,64,0.0028869690671009082],[114,157,65,0.003278638132328272],[114,157,66,0.0037794348260520726],[114,157,67,0.0043882741044510955],[114,157,68,0.005136075842268875],[114,157,69,0.006064931614857571],[114,157,70,0.007201957961747786],[114,157,71,0.008560268792496323],[114,157,72,0.010140515759315679],[114,157,73,0.01193242600536751],[114,157,74,0.01391633419039432],[114,157,75,0.016064705747493933],[114,157,76,0.018343648389200967],[114,157,77,0.016632397014017697],[114,157,78,0.01430843746483868],[114,157,79,0.011977005148449195],[114,158,64,0.0031412041109960633],[114,158,65,0.0035516154972095823],[114,158,66,0.004061565456472908],[114,158,67,0.004674883730301653],[114,158,68,0.005422152971198494],[114,158,69,0.0063416104485586045],[114,158,70,0.007457620054727761],[114,158,71,0.008781610925044812],[114,158,72,0.010313482260189829],[114,158,73,0.012043010790428705],[114,158,74,0.013951258162442588],[114,158,75,0.016011975567885355],[114,158,76,0.018193002982657924],[114,158,77,0.016908035056844736],[114,158,78,0.014696035198582742],[114,158,79,0.012479976001801254],[114,159,64,0.00345495385603458],[114,159,65,0.0038840572047189516],[114,159,66,0.004403437678941939],[114,159,67,0.005021607968256945],[114,159,68,0.005768795201825162],[114,159,69,0.0066795047701893465],[114,159,70,0.007775405655387431],[114,159,71,0.009066242465818851],[114,159,72,0.010551116144961016],[114,159,73,0.012219771881122434],[114,159,74,0.014053891841049163],[114,159,75,0.016028390376791598],[114,159,76,0.018112709392435977],[114,159,77,0.017112624335924385],[114,159,78,0.01501218946325671],[114,159,79,0.012911703368312074],[114,160,64,0.0038222493082968015],[114,160,65,0.004269530179089261],[114,160,66,0.00479815715977958],[114,160,67,0.0054210324682818275],[114,160,68,0.006168011105197742],[114,160,69,0.007070034694505141],[114,160,70,0.008146176044980916],[114,160,71,0.009404530846628682],[114,160,72,0.01084338584525177],[114,160,73,0.012452398077726304],[114,160,74,0.014213783095935363],[114,160,75,0.016103510123801908],[114,160,76,0.018092502118214837],[114,160,77,0.017256116243078646],[114,160,78,0.015266342363594783],[114,160,79,0.013280956483614558],[114,161,64,0.004238042669150869],[114,161,65,0.0047025908803435944],[114,161,66,0.00523983728239725],[114,161,67,0.005866752361076177],[114,161,68,0.006612800215457603],[114,161,69,0.007505543418771611],[114,161,70,0.00856157671132178],[114,161,71,0.00978740352897642],[114,161,72,0.01118050251554185],[114,161,73,0.01273040828958479],[114,161,74,0.014419804663904216],[114,161,75,0.01622562852384286],[114,161,76,0.018120182587824555],[114,161,77,0.017351125058242135],[114,161,78,0.015471376878409536],[114,161,79,0.013600755483547031],[114,162,64,0.00469910785339231],[114,162,65,0.005179714351823541],[114,162,66,0.005724543947196667],[114,162,67,0.006354329504095311],[114,162,68,0.007098117981099581],[114,162,69,0.007980256348763641],[114,162,70,0.009014970146489661],[114,162,71,0.010207228859664],[114,162,72,0.011553719920978887],[114,162,73,0.013043839555168305],[114,162,74,0.014660698905252189],[114,162,75,0.0163821438793222],[114,162,76,0.018181787166416517],[114,162,77,0.017412988908795016],[114,162,78,0.0156439295036885],[114,162,79,0.013888954335971555],[114,163,64,0.005205051302236949],[114,163,65,0.005700335397178068],[114,163,66,0.006251353121827142],[114,163,67,0.006882362633442697],[114,163,68,0.007621953143611401],[114,163,69,0.008491350757136732],[114,163,70,0.009502475233582277],[114,163,71,0.010658797049161959],[114,163,72,0.01195622513025295],[114,163,73,0.013384013504670758],[114,163,74,0.01492568552569184],[114,163,75,0.016559974318875275],[114,163,76,0.018261778104771063],[114,163,77,0.017459831962646746],[114,163,78,0.01580473069005896],[114,163,79,0.014168880140004605],[114,164,64,0.005755446827602818],[114,164,65,0.006263625572750408],[114,164,66,0.006818781446294295],[114,164,67,0.0074485763146871515],[114,164,68,0.008181080167061663],[114,164,69,0.009034384361981077],[114,164,70,0.010018091959556075],[114,164,71,0.011134167720905376],[114,164,72,0.012377741544724005],[114,164,73,0.013737932525988624],[114,164,74,0.015198692496434458],[114,164,75,0.01673966789644079],[114,164,76,0.018337078825328163],[114,164,77,0.017518557614939197],[114,164,78,0.015984581168711223],[114,164,79,0.01447524948260279],[114,165,64,0.006325100148345537],[114,165,65,0.00684131889605901],[114,165,66,0.007395376344954473],[114,165,67,0.008018246326219232],[114,165,68,0.008737407912653572],[114,165,69,0.009567787455691921],[114,165,70,0.010516669595348619],[114,165,71,0.011584536806209175],[114,165,72,0.01276578546099733],[114,165,73,0.014049464188361626],[114,165,74,0.015420033591795125],[114,165,75,0.01685814638164356],[114,165,76,0.01834144696393228],[114,165,77,0.017658310056321472],[114,165,78,0.016255154219226103],[114,165,79,0.014881873411333965],[114,166,64,0.006882935238941944],[114,166,65,0.00739859893924264],[114,166,66,0.007942584578407309],[114,166,67,0.008549048414120979],[114,166,68,0.009244808351383344],[114,166,69,0.010041647729065562],[114,166,70,0.010944595682512118],[114,166,71,0.01195274746279416],[114,166,72,0.013059885913127815],[114,166,73,0.014255127249375466],[114,166,74,0.015523590434730368],[114,166,75,0.01684708941814652],[114,166,76,0.018204847491598626],[114,166,77,0.017950339138941118],[114,166,78,0.01668833329310437],[114,166,79,0.01546070385159491],[114,167,64,0.007405518739789151],[114,167,65,0.007909076078450242],[114,167,66,0.008431103630267998],[114,167,67,0.009008759332150605],[114,167,68,0.009668136766382028],[114,167,69,0.010417963672272547],[114,167,70,0.01126114710118088],[114,167,71,0.012195561264054026],[114,167,72,0.013214564248728921],[114,167,73,0.01430754169483234],[114,167,74,0.015460476965288293],[114,167,75,0.016656547326134],[114,167,76,0.01787674562437629],[114,167,77,0.018445289998572],[114,167,78,0.017334333916014875],[114,167,79,0.016261017656164962],[114,168,64,0.007875613157123647],[114,168,65,0.008353309400178813],[114,168,66,0.008839364979439754],[114,168,67,0.009373699960033198],[114,168,68,0.009981632336068608],[114,168,69,0.010668995167941732],[114,168,70,0.011436779399943113],[114,168,71,0.012281872406203502],[114,168,72,0.013197457856083459],[114,168,73,0.014173446080748348],[114,168,74,0.01519693476133377],[114,168,75,0.016252699723407614],[114,168,76,0.017323715591296435],[114,168,77,0.018391706029912212],[114,168,78,0.018224425817167267],[114,168,79,0.017312314921687357],[114,169,64,0.008280585025910779],[114,169,65,0.008717174290648203],[114,169,66,0.009151854936361533],[114,169,67,0.009627008244446964],[114,169,68,0.010167141317993835],[114,169,69,0.010775430797580242],[114,169,70,0.011451228975810704],[114,169,71,0.01219073347552895],[114,169,72,0.012987257147994128],[114,169,73,0.013831533098389928],[114,169,74,0.014712054977083411],[114,169,75,0.01561545262902692],[114,169,76,0.016526903151398858],[114,169,77,0.017430577371713874],[114,169,78,0.018310121725788966],[114,169,79,0.01862729948943868],[114,170,64,0.008610748714532115],[114,170,65,0.008990164473839053],[114,170,66,0.009357369433128388],[114,170,67,0.009756845826016793],[114,170,68,0.010212273983635979],[114,170,69,0.010724489793613496],[114,170,70,0.011291552031506967],[114,170,71,0.011909321673896798],[114,170,72,0.012571588456842421],[114,170,73,0.013270238414712712],[114,170,74,0.013995462894325003],[114,170,75,0.014736009480836318],[114,170,76,0.015479475216176706],[114,170,77,0.016212642438781167],[114,170,78,0.01692185752564099],[114,170,79,0.01759345277499894],[114,171,64,0.008857644920850971],[114,171,65,0.009163627573539897],[114,171,66,0.00944720187216082],[114,171,67,0.009754537489418543],[114,171,68,0.010108494477117385],[114,171,69,0.010507957850340897],[114,171,70,0.010950099569098298],[114,171,71,0.011430844813480966],[114,171,72,0.011944842210586193],[114,171,73,0.012485482223967495],[114,171,74,0.013044964595605182],[114,171,75,0.013614415657166336],[114,171,76,0.014184056255999335],[114,171,77,0.01474342097276234],[114,171,78,0.015281629242602847],[114,171,79,0.015787708931259338],[114,172,64,0.009012252809615887],[114,172,65,0.009228933173208508],[114,172,66,0.009413263034916712],[114,172,67,0.009612642469001785],[114,172,68,0.009849142664749854],[114,172,69,0.01012015589991701],[114,172,70,0.010422427570965195],[114,172,71,0.010752386283072473],[114,172,72,0.01110594565049732],[114,172,73,0.01147836283714793],[114,172,74,0.011864155159500529],[114,172,75,0.012257075983733485],[114,172,76,0.01265015105959138],[114,172,77,0.013035776346056526],[114,172,78,0.013405878299297017],[114,172,79,0.013752137512606628],[114,173,64,0.009063134640070119],[114,173,65,0.009175572244262964],[114,173,66,0.009246131947170062],[114,173,67,0.009322956535728186],[114,173,68,0.009427386934226855],[114,173,69,0.009555840850186103],[114,173,70,0.009705141408990316],[114,173,71,0.009872688077752606],[114,173,72,0.010056079240742729],[114,173,73,0.01025280152543019],[114,173,74,0.010459987667945113],[114,173,75,0.010674244597111908],[114,173,76,0.010891553306486045],[114,173,77,0.011107241975140205],[114,173,78,0.011316033691369],[114,173,79,0.011512170030206768],[114,174,64,0.008994511630471656],[114,174,65,0.00898918670898235],[114,174,66,0.00893303649103011],[114,174,67,0.008874443683103016],[114,174,68,0.008834106792568594],[114,174,69,0.008808037170227774],[114,174,70,0.008793673411041576],[114,174,71,0.008789870871549177],[114,174,72,0.00879633580784552],[114,174,73,0.00881313772219411],[114,174,74,0.008840302204865754],[114,174,75,0.008877486426502754],[114,174,76,0.00892373930392042],[114,174,77,0.008977348230038748],[114,174,78,0.00903577412782519],[114,174,79,0.009095676460112914],[114,175,64,0.008794326577967386],[114,175,65,0.008659374423872632],[114,175,66,0.00846533908335291],[114,175,67,0.008260330738411086],[114,175,68,0.008064514012807803],[114,175,69,0.007874092374780924],[114,175,70,0.007687673517145215],[114,175,71,0.007506056645113891],[114,175,72,0.007331470853446387],[114,175,73,0.007166904561739481],[114,175,74,0.007015528818427887],[114,175,75,0.00688021712901114],[114,175,76,0.006763164306851875],[114,175,77,0.006665606687028947],[114,175,78,0.0065876458866062386],[114,175,79,0.00652817813989578],[114,176,64,0.008486281037186958],[114,176,65,0.00821110159410247],[114,176,66,0.007869171080181725],[114,176,67,0.007507778400942849],[114,176,68,0.007146644984257501],[114,176,69,0.006782749409658133],[114,176,70,0.006416400563118897],[114,176,71,0.006050804531590592],[114,176,72,0.005691102469367136],[114,176,73,0.005343513477315038],[114,176,74,0.0050145858460766655],[114,176,75,0.004710559833963293],[114,176,76,0.004436844966714212],[114,176,77,0.004197614661224733],[114,176,78,0.003995520790374913],[114,176,79,0.0038315306230506173],[114,177,64,0.008104716780581975],[114,177,65,0.007680250387535517],[114,177,66,0.0071818663786065405],[114,177,67,0.0066554633825055024],[114,177,68,0.006120388270979044],[114,177,69,0.005574942511126076],[114,177,70,0.005021627297603146],[114,177,71,0.004466475372707614],[114,177,72,0.003917886625341864],[114,177,73,0.0033855834228309917],[114,177,74,0.0028796895728902126],[114,177,75,0.0024099366063207632],[114,177,76,0.0019850008601398975],[114,177,77,0.0016119746276201797],[114,177,78,0.0012959744279790544],[114,177,79,0.0010398892362834357],[114,178,64,0.007684699564716899],[114,178,65,0.007103839850888238],[114,178,66,0.006442368817403293],[114,178,67,0.005744233077918951],[114,178,68,0.005028456981490933],[114,178,69,0.004295165784592862],[114,178,70,0.003549490259274114],[114,178,71,0.0028006527852983344],[114,178,72,0.0020606021114430878],[114,178,73,0.0013427830006771963],[114,178,74,6.610451974697702E-4],[114,178,75,2.8695922060307117E-5],[114,178,76,-5.423001420480577E-4],[114,178,77,-0.0010419696428315634],[114,178,78,-0.0014628246549842838],[114,178,79,-0.0018001988354922021],[114,179,64,0.007261375319408726],[114,179,65,0.00651929138452134],[114,179,66,0.005690389874911825],[114,179,67,0.004816136177330926],[114,179,68,0.003915271616340846],[114,179,69,0.0029901874203181445],[114,179,70,0.0020490152588216893],[114,179,71,0.0011044613901681532],[114,179,72,1.722452649925586E-4],[114,179,73,-7.303117300866392E-4],[114,179,74,-0.0015855424252443088],[114,179,75,-0.002376530213160076],[114,179,76,-0.003088041150197854],[114,179,77,-0.0037072876455424373],[114,179,78,-0.004224519842356895],[114,179,79,-0.004633441065686112],[114,180,64,0.0068693223571011505],[114,180,65,0.005963691295844557],[114,180,66,0.004965566534007933],[114,180,67,0.003913458230217238],[114,180,68,0.0028258545491955177],[114,180,69,0.0017077846695785473],[114,180,70,5.706755951622674E-4],[114,180,71,-5.690671494081968E-4],[114,180,72,-0.0016918091971780537],[114,180,73,-0.0027762718301522654],[114,180,74,-0.003800945820337746],[114,180,75,-0.004745329443346162],[114,180,76,-0.005590985780084648],[114,180,77,-0.0063224147194336985],[114,180,78,-0.006927735374303784],[114,180,79,-0.00739917492231726],[114,181,64,0.006541899198933611],[114,181,65,0.005473050000226333],[114,181,66,0.004306618864124448],[114,181,67,0.003077761697487917],[114,181,68,0.0018047356706204765],[114,181,69,4.954991129586714E-4],[114,181,70,-8.350174475484529E-4],[114,181,71,-0.002166580703870867],[114,181,72,-0.003475581620998316],[114,181,73,-0.004736782760742169],[114,181,74,-0.0059248799525926],[114,181,75,-0.0070158726933011945],[114,181,76,-0.007988237976008714],[114,181,77,-0.008823902573183334],[114,181,78,-0.009509009123658808],[114,181,79,-0.010034471699693213],[114,182,64,0.00631058759294633],[114,182,65,0.005081557414807112],[114,182,66,0.003750506845235109],[114,182,67,0.0023489300019639008],[114,182,68,8.948686968632399E-4],[114,182,69,-6.00588274442396E-4],[114,182,70,-0.002118892301607923],[114,182,71,-0.0036359463169369243],[114,182,72,-0.005124195533705328],[114,182,73,-0.006554524707105431],[114,182,74,-0.007897955568382058],[114,182,75,-0.009127138415933675],[114,182,76,-0.0102176321889504],[114,182,77,-0.011148967696858197],[114,182,78,-0.01190548902852607],[114,182,79,-0.012476968515698949],[114,183,64,0.006204330280166701],[114,183,65,0.0048208340686390185],[114,183,66,0.0033315859354983235],[114,183,67,0.0017642150635683292],[114,183,68,1.3655762185999252E-4],[114,183,69,-0.0015370627795393739],[114,183,70,-0.003234463517459744],[114,183,71,-0.004927743376319873],[114,183,72,-0.0065855208557645305],[114,183,73,-0.008174966293804292],[114,183,74,-0.00966362108403766],[114,183,75,-0.011020997619527028],[114,183,76,-0.012219953959168368],[114,183,77,-0.013237837582097577],[114,183,78,-0.01405739296872607],[114,183,79,-0.014667428120051947],[114,184,64,0.006248863046129246],[114,184,65,0.004719177432300792],[114,184,66,0.0030807608630510253],[114,184,67,0.0013572877840771465],[114,184,68,-4.3360723046117816E-4],[114,184,69,-0.002274362868001562],[114,184,70,-0.004139247384031236],[114,184,71,-0.005996710797026931],[114,184,72,-0.007811752631994396],[114,184,73,-0.0095480720435924],[114,184,74,-0.011169993280739199],[114,184,75,-0.012644159826933371],[114,184,76,-0.013940990932722394],[114,184,77,-0.015035894645846756],[114,184,78,-0.015910231837335163],[114,184,79,-0.016552026114730185],[114,185,64,0.006466040578844242],[114,185,65,0.004800802951738632],[114,185,66,0.0030246371034372437],[114,185,67,0.0011572909273994622],[114,185,68,-7.838041144918689E-4],[114,185,69,-0.0027779489156746426],[114,185,70,-0.004796047299043739],[114,185,71,-0.006803148706634587],[114,185,72,-0.008760925709625667],[114,185,73,-0.010629923926241623],[114,185,74,-0.012371577052098822],[114,185,75,-0.013949980095481708],[114,185,76,-0.015333414308340843],[114,185,77,-0.016495617709382716],[114,185,78,-0.01741679550510604],[114,185,79,-0.018084365124401407],[114,186,64,0.006873155639494018],[114,186,65,0.005085079254721278],[114,186,66,0.0031846694875183636],[114,186,67,0.0011878938252819083],[114,186,68,-8.88026307429968E-4],[114,186,69,-0.0030194543211377704],[114,186,70,-0.005174209428484588],[114,186,71,-0.007314275124121746],[114,186,72,-0.009398365785983763],[114,186,73,-0.011384257329978942],[114,186,74,-0.013230874427013274],[114,186,75,-0.014900127191878824],[114,186,76,-0.016358490664897293],[114,186,77,-0.017578320826148536],[114,186,78,-0.018538901305156213],[114,186,79,-0.019227215372319365],[114,187,64,0.007482251039406233],[114,187,65,0.005585756984188137],[114,187,66,0.003576307370667653],[114,187,67,0.0014663483252796631],[114,187,68,-7.271206765883629E-4],[114,187,69,-0.002977819573613032],[114,187,70,-0.005250849197266557],[114,187,71,-0.007505538120044917],[114,187,72,-0.009698077236358913],[114,187,73,-0.011783911766156525],[114,187,74,-0.01371988305700381],[114,187,75,-0.015466112970558346],[114,187,76,-0.01698762406060802],[114,187,77,-0.01825568917889322],[114,187,78,-0.01924890457822412],[114,187,79,-0.01995398101614298],[114,188,64,0.008299423906268354],[114,188,65,0.006310190701068881],[114,188,66,0.004208135782764155],[114,188,67,0.0020025453879795865],[114,188,68,-2.898189635296769E-4],[114,188,69,-0.0026404098538231357],[114,188,70,-0.005012049150768842],[114,188,71,-0.007361883935949929],[114,188,72,-0.00964406811334272],[114,188,73,-0.011812196587361429],[114,188,74,-0.013821484314175373],[114,188,75,-0.015630682946888592],[114,188,76,-0.01720372822307788],[114,188,77,-0.018511111679046437],[114,188,78,-0.019530970715356376],[114,188,79,-0.0202498914789046],[114,189,64,0.00932412171430138],[114,189,65,0.007258553290075743],[114,189,66,0.00508101197019944],[114,189,67,0.002798071734033931],[114,189,68,4.2623761758197383E-4],[114,189,69,-0.002004116744154615],[114,189,70,-0.004454028719237038],[114,189,71,-0.006878981524746634],[114,189,72,-0.009231612682316802],[114,189,73,-0.011464171960292226],[114,189,74,-0.013530721093090333],[114,189,75,-0.015389067988448597],[114,189,76,-0.0170024285646658],[114,189,77,-0.01834080979940399],[114,189,78,-0.019382108015471054],[114,189,79,-0.02011291687338614],[114,190,64,0.010548429547408072],[114,190,65,0.008423042295727951],[114,190,66,0.006187196736002935],[114,190,67,0.0038452659387662597],[114,190,68,0.001413479870787126],[114,190,69,-0.001076444618471032],[114,190,70,-0.0035842864037987513],[114,190,71,-0.006064403951254649],[114,190,72,-0.008468451823875824],[114,190,73,-0.010747845287457503],[114,190,74,-0.012855965347427034],[114,190,75,-0.014750096968487987],[114,190,76,-0.016393093660683828],[114,190,77,-0.017754762055551234],[114,190,78,-0.018812960540459493],[114,190,79,-0.019554406464201892],[114,191,64,0.011956348061327044],[114,191,65,0.009787077612660832],[114,191,66,0.007509479982493249],[114,191,67,0.005126273373167507],[114,191,68,0.0026533976068125625],[114,191,69,1.2341772908233488E-4],[114,191,70,-0.002422714883934281],[114,191,71,-0.004938767063109992],[114,191,72,-0.0073759315926550635],[114,191,73,-0.009685283216063078],[114,191,74,-0.0118199753203444],[114,191,75,-0.013737170135866257],[114,191,76,-0.015399695718974156],[114,191,77,-0.016777423422424918],[114,191,78,-0.01784836000089858],[114,191,79,-0.01859944894163901],[114,192,64,0.01352306161075681],[114,192,65,0.011324489954314272],[114,192,66,0.009020299862791476],[114,192,67,0.006612099395225277],[114,192,68,0.00411553154747162],[114,192,69,0.0015635396731136354],[114,192,70,-0.0010026895214851055],[114,192,71,-0.003536825806610948],[114,192,72,-0.005990080173293809],[114,192,73,-0.008313639308420674],[114,192,74,-0.010460842346178275],[114,192,75,-0.01238909285552033],[114,192,76,-0.01406149944885924],[114,192,77,-0.015448238830589852],[114,192,78,-0.016527635541785077],[114,192,79,-0.017286953095670063],[114,193,64,0.01521419601050592],[114,193,65,0.012998699527638597],[114,193,66,0.010680854953339515],[114,193,67,0.00826166020496335],[114,193,68,0.005756469578751799],[114,193,69,0.0031982050422206566],[114,193,70,6.278692944465627E-4],[114,193,71,-0.0019085285198181257],[114,193,72,-0.004362623418127486],[114,193,73,-0.006686097375965488],[114,193,74,-0.008832827010714138],[114,193,75,-0.010760769263243253],[114,193,76,-0.012433578605898029],[114,193,77,-0.013821949732926922],[114,193,78,-0.014904680120895316],[114,193,79,-0.015669447278641925],[114,194,64,0.01698506540614878],[114,194,65,0.014761884348700327],[114,194,66,0.012440208869464606],[114,194,67,0.010020830790529183],[114,194,68,0.007518846804899788],[114,194,69,0.0049668816058683635],[114,194,70,0.002405459554215928],[114,194,71,-1.200294862019203E-4],[114,194,72,-0.002561939087638656],[114,194,73,-0.004872730398592071],[114,194,74,-0.007007084358015322],[114,194,75,-0.008923755258612907],[114,194,76,-0.010587159346811731],[114,194,77,-0.011968692567171056],[114,194,78,-0.013047771983290308],[114,194,79,-0.013812595832029992],[114,195,64,0.01846147013143698],[114,195,65,0.016554695670778188],[114,195,66,0.014235017982596262],[114,195,67,0.01182219227131048],[114,195,68,0.009331121947369788],[114,195,69,0.006794042447214027],[114,195,70,0.004250884757338324],[114,195,71,0.001746287999769324],[114,195,72,-6.729642411621874E-4],[114,195,73,-0.002960265834658237],[114,195,74,-0.005071261311392405],[114,195,75,-0.006965663808241683],[114,195,76,-0.00860881160013869],[114,195,77,-0.00997295748239539],[114,195,78,-0.011038285683850574],[114,195,79,-0.011793651408575087],[114,196,64,0.016739348674934523],[114,196,65,0.018333946763850605],[114,196,66,0.0160208434112582],[114,196,67,0.013619897778706043],[114,196,68,0.011145933619265299],[114,196,69,0.008630817867199983],[114,196,70,0.006113871789217993],[114,196,71,0.003638935523675233],[114,196,72,0.0012518536185046976],[114,196,73,-0.0010018006672572253],[114,196,74,-0.0030787555276586623],[114,196,75,-0.00493981885769067],[114,196,76,-0.006551398601561272],[114,196,77,-0.007886759624068661],[114,196,78,-0.00892701193749095],[114,196,79,-0.009661825526405694],[114,197,64,0.015050794518579508],[114,197,65,0.017363255724964336],[114,197,66,0.017789788435475632],[114,197,67,0.015409013986579982],[114,197,68,0.012961099479113936],[114,197,69,0.010477517776522775],[114,197,70,0.00799689881081584],[114,197,71,0.0055621600487074955],[114,197,72,0.003218051376831591],[114,197,73,0.0010089351791475966],[114,197,74,-0.0010231918228841628],[114,197,75,-0.0028404287779956756],[114,197,76,-0.004410447162319961],[114,197,77,-0.005707708085634105],[114,197,78,-0.0067144154475970415],[114,197,79,-0.007421200346492203],[114,198,64,0.013413151323471671],[114,198,65,0.015704629324803508],[114,198,66,0.01807301517635321],[114,198,67,0.017180597019365636],[114,198,68,0.0147699454945778],[114,198,69,0.012329473698154151],[114,198,70,0.009896984172460526],[114,198,71,0.007514285381594957],[114,198,72,0.005224811431618505],[114,198,73,0.0030714722760248284],[114,198,74,0.001094740742531241],[114,198,75,-6.690176547511652E-4],[114,198,76,-0.002188966535108594],[114,198,77,-0.0034409669082257647],[114,198,78,-0.0044084870648538384],[114,198,79,-0.005083249688729925],[114,199,64,0.011847182441435442],[114,199,65,0.014104611143761036],[114,199,66,0.016434474985199097],[114,199,67,0.018832628794822403],[114,199,68,0.01655909331339631],[114,199,69,0.014174537753262034],[114,199,70,0.011802936796403677],[114,199,71,0.009484765131685544],[114,199,72,0.007261878892440645],[114,199,73,0.005175453975792504],[114,199,74,0.00326415462716085],[114,199,75,0.0015625379866348237],[114,199,76,9.969992463142368E-5],[114,199,77,-0.001101832881099284],[114,199,78,-0.0020269600533947474],[114,199,79,-0.0026686096128389213],[114,200,64,0.010375266412090267],[114,200,65,0.012584102993837692],[114,200,66,0.01486168994594735],[114,200,67,0.01720187604711595],[114,200,68,0.0183106304573323],[114,200,69,0.015995364354334678],[114,200,70,0.013697752195231989],[114,200,71,0.011456691928100568],[114,200,72,0.009312178948066524],[114,200,73,0.007303353107369869],[114,200,74,0.005466767491189755],[114,200,75,0.003834884340333404],[114,200,76,0.0024348031477714367],[114,200,77,0.0012872255962870119],[114,200,78,4.0566164218431287E-4],[114,200,79,-2.0411931178787005E-4],[114,201,64,0.009019741236238691],[114,201,65,0.011164672214501186],[114,201,66,0.013375649784561367],[114,201,67,0.015644003050723766],[114,201,68,0.017952061725232452],[114,201,69,0.0177715692133568],[114,201,70,0.015560897161556878],[114,201,71,0.013409208986978545],[114,201,72,0.011354352548165596],[114,201,73,0.009433125119674441],[114,201,74,0.0076796624450389825],[114,201,75,0.0061240439033478904],[114,201,76,0.0047911184678263155],[114,201,77,0.0036995557941542413],[114,201,78,0.0028611264334068237],[114,201,79,0.0022802148224457335],[114,202,64,0.007801398068522619],[114,202,65,0.009866960862097145],[114,202,66,0.011996968647347426],[114,202,67,0.014179743511611108],[114,202,68,0.016396237831680836],[114,202,69,0.018618091529662064],[114,202,70,0.017370483354301858],[114,202,71,0.015319824463189443],[114,202,72,0.013365211053939315],[114,202,73,0.011540798554785871],[114,202,74,0.009878005975015043],[114,202,75,0.008404248820567416],[114,202,76,0.007141879022457575],[114,202,77,0.00610733584092759],[114,202,78,0.005310511388517094],[114,202,79,0.004754334096562103],[114,203,64,0.006738125123493466],[114,203,65,0.008709243323383594],[114,203,66,0.010744347186664905],[114,203,67,0.01282830877114674],[114,203,68,0.014940424093129819],[114,203,69,0.017053141574522104],[114,203,70,0.01910532991767379],[114,203,71,0.01716662894790821],[114,203,72,0.015322110457115635],[114,203,73,0.013603003696417463],[114,203,74,0.012037724641072374],[114,203,75,0.01065075533440763],[114,203,76,0.009461714023991078],[114,203,77,0.00848461963402296],[114,203,78,0.007727353824981703],[114,203,79,0.007191323599966305],[114,204,64,0.005843702747230516],[114,204,65,0.007706133197834338],[114,204,66,0.00963318018822618],[114,204,67,0.011605879624238834],[114,204,68,0.013601602753231967],[114,204,69,0.015593615582660085],[114,204,70,0.017552603207008015],[114,204,71,0.018930416389666957],[114,204,72,0.017205245700239347],[114,204,73,0.015599440191479205],[114,204,74,0.014138141613678348],[114,204,75,0.01284264067426637],[114,204,76,0.011729593496192868],[114,204,77,0.01081041332091889],[114,204,78,0.01009084027683476],[114,204,79,0.009570691773035718],[114,205,64,0.00512675077061711],[114,205,65,0.006867440451933395],[114,205,66,0.008674310607294868],[114,205,67,0.010524238865180982],[114,205,68,0.012392418892829252],[114,205,69,0.014252913352362822],[114,205,70,0.016078272079036702],[114,205,71,0.017840838871617325],[114,205,72,0.018999865553269525],[114,205,73,0.017515284382590583],[114,205,74,0.016164574076029725],[114,205,75,0.01496558370035035],[114,205,76,0.013931781074484794],[114,205,77,0.013071785219260652],[114,205,78,0.012389054961123913],[114,205,79,0.01188173581886245],[114,206,64,0.004589829429408316],[114,206,65,0.006197180012888298],[114,206,66,0.007872931039113695],[114,206,67,0.00958954541844263],[114,206,68,0.011319805429845564],[114,206,69,0.01303851974835625],[114,206,70,0.014720162763362533],[114,206,71,0.016339846854885383],[114,206,72,0.017874264118076858],[114,206,73,0.019302507292327083],[114,206,74,0.01811089246415412],[114,206,75,0.017014630582080744],[114,206,76,0.016064796452456537],[114,206,77,0.015267011050752361],[114,206,78,0.01462228989400672],[114,206,79,0.014126995363872534],[114,207,64,0.004229797930805786],[114,207,65,0.005693364882570918],[114,207,66,0.007227931202704532],[114,207,67,0.008801366668937627],[114,207,68,0.010383838149041348],[114,207,69,0.011950824806721721],[114,207,70,0.013478759070777882],[114,207,71,0.014945639151207168],[114,207,72,0.01633168126552759],[114,207,73,0.017619874258796426],[114,207,74,0.018796434673377087],[114,207,75,0.01899288740316402],[114,207,76,0.018133366879096766],[114,207,77,0.01740274187570037],[114,207,78,0.01679940959577339],[114,207,79,0.016317817672767757],[114,208,64,0.004041777402651106],[114,208,65,0.0053507309076455175],[114,208,66,0.0067338172429094595],[114,208,67,0.008154270214390517],[114,208,68,0.009579503241742116],[114,208,69,0.01098557805766965],[114,208,70,0.012350883127116869],[114,208,71,0.013656366476462541],[114,208,72,0.01488587953952778],[114,208,73,0.01602644829744465],[114,208,74,0.01706847047674863],[114,208,75,0.018005837681604915],[114,208,76,0.01883598144763933],[114,208,77,0.019471762749916285],[114,208,78,0.0189122991017261],[114,208,79,0.018445573586443668],[114,209,64,0.004017604876458175],[114,209,65,0.005160995662245779],[114,209,66,0.006382423359858292],[114,209,67,0.007640587427731734],[114,209,68,0.008900082904139215],[114,209,69,0.010137455713399026],[114,209,70,0.01133300855404734],[114,209,71,0.012470640495660646],[114,209,72,0.013537868458976199],[114,209,73,0.014525802367812615],[114,209,74,0.015429073464845466],[114,209,75,0.016245715353009112],[114,209,76,0.01697699739269311],[114,209,77,0.01762721015136349],[114,209,78,0.01820340266610746],[114,209,79,0.018715071340182403],[114,210,64,0.004144877649940134],[114,210,65,0.0051123411025165095],[114,210,66,0.006162704985255208],[114,210,67,0.007250371001537437],[114,210,68,0.008337121088472252],[114,210,69,0.00939987654879279],[114,210,70,0.01042077237679344],[114,210,71,0.011386596816546798],[114,210,72,0.012288481757838258],[114,210,73,0.013121574366630842],[114,210,74,0.013884690178005858],[114,210,75,0.01457994790575294],[114,210,76,0.015212386246361719],[114,210,77,0.015789562975797127],[114,210,78,0.0163211366548206],[114,210,79,0.016818431272440922],[114,211,64,0.0044069761148286596],[114,211,65,0.005189329792128337],[114,211,66,0.006060549786291379],[114,211,67,0.0069710997624220184],[114,211,68,0.007880020417615796],[114,211,69,0.008764490382191003],[114,211,70,0.009608356168511202],[114,211,71,0.01040117180550565],[114,211,72,0.01113755493932004],[114,211,73,0.01181655257518924],[114,211,74,0.012441017420997682],[114,211,75,0.013016995774608183],[114,211,76,0.013553127874707393],[114,211,77,0.014060061608658725],[114,211,78,0.014549880440738744],[114,211,79,0.01503554639024224],[114,212,64,0.004783256896443013],[114,212,65,0.005372992396461468],[114,212,66,0.006058761164902937],[114,212,67,0.006787557752866431],[114,212,68,0.0075158156577431095],[114,212,69,0.008220845695184598],[114,212,70,0.008888049004191607],[114,212,71,0.009509563802280917],[114,212,72,0.01008328959367808],[114,212,73,0.010611949892779986],[114,212,74,0.011102195140893733],[114,212,75,0.011563747430718217],[114,212,76,0.012008588584305632],[114,212,77,0.012450193056672833],[114,212,78,0.012902807059263407],[114,212,79,0.013380775215570363],[114,213,64,0.005249418814390721],[114,213,65,0.005641088856055269],[114,213,66,0.006137216569854183],[114,213,67,0.006681889812896612],[114,213,68,0.007229125903294282],[114,213,69,0.007756238471556427],[114,213,70,0.008249994232236154],[114,213,71,0.00870488067054491],[114,213,72,0.009121806345781852],[114,213,73,0.009506868651378644],[114,213,74,0.009870191400811995],[114,213,75,0.010224834500009692],[114,213,76,0.010585777851901994],[114,213,77,0.010968981518126409],[114,213,78,0.011390524037385817],[114,213,79,0.011865820670463316],[114,214,64,0.005778044322342874],[114,214,65,0.005968545800340046],[114,214,66,0.0062732030914250565],[114,214,67,0.006633836048565751],[114,214,68,0.007002287785619866],[114,214,69,0.007355744495378725],[114,214,70,0.0076821222343909],[114,214,71,0.007977975786281998],[114,214,72,0.008246888465436433],[114,214,73,0.008497957975016948],[114,214,74,0.008744381342817135],[114,214,75,0.009002141805421854],[114,214,76,0.009288800350728392],[114,214,77,0.009622394462059279],[114,214,78,0.010020446435042428],[114,214,79,0.010499083462412653],[114,215,64,0.006339319224192282],[114,215,65,0.006328072904684295],[114,215,66,0.006441932953155868],[114,215,67,0.0066211477218697835],[114,215,68,0.006815672167709197],[114,215,69,0.007002437502811106],[114,215,70,0.007170271502677576],[114,215,71,0.0073174747270485785],[114,215,72,0.007449918337277755],[114,215,73,0.007579265813230285],[114,215,74,0.007721322200639357],[114,215,75,0.00789451432375047],[114,215,76,0.008118505193646909],[114,215,77,0.008412945631198026],[114,215,78,0.00879636590662438],[114,215,79,0.009285209976874475],[114,216,64,0.0069019335920487805],[114,216,65,0.006690961025391875],[114,216,66,0.006617241650144846],[114,216,67,0.0066201872355368665],[114,216,68,0.006648186930342193],[114,216,69,0.00667779572932461],[114,216,70,0.006698500513315967],[114,216,71,0.006709995080429516],[114,216,72,0.006720009145764691],[114,216,73,0.0067422879395334576],[114,216,74,0.0067947265865758],[114,216,75,0.006897663212936399],[114,216,76,0.007072334478763698],[114,216,77,0.007339496982879818],[114,216,78,0.007718217724809817],[114,216,79,0.008224836546858842],[114,217,64,0.007434166926272514],[114,217,65,0.007028065066315021],[114,217,66,0.006772471606674412],[114,217,67,0.00660671501396381],[114,217,68,0.006477968587723186],[114,217,69,0.006362299531814644],[114,217,70,0.006249593020309947],[114,217,71,0.006140561937357042],[114,217,72,0.0060443342823554794],[114,217,73,0.005976216361048874],[114,217,74,0.005955636434976319],[114,217,75,0.006004273225683288],[114,217,76,0.00614437338430295],[114,217,77,0.006397261743478872],[114,217,78,0.006782047869278618],[114,217,79,0.007314532128093583],[114,218,64,0.007905160696860859],[114,218,65,0.007310974634992757],[114,218,66,0.006881544335255916],[114,218,67,0.006556866196228033],[114,218,68,0.006283265590968562],[114,218,69,0.0060362228911602514],[114,218,70,0.005805759523168782],[114,218,71,0.005593221773191449],[114,218,72,0.005408657124169045],[114,218,73,0.005268389731986986],[114,218,74,0.0051928001348932745],[114,218,75,0.005204313978193477],[114,218,76,0.0053256042141981525],[114,218,77,0.005578010907255939],[114,218,78,0.005980182437966138],[114,218,79,0.006546941561993092],[114,219,64,0.008286381486525565],[114,219,65,0.00751337563323862],[114,219,66,0.0069202241721021554],[114,219,67,0.006448320156164554],[114,219,68,0.006043516283312121],[114,219,69,0.005680621712824959],[114,219,70,0.005349537781742864],[114,219,71,0.005051857544171391],[114,219,72,0.004798063963888775],[114,219,73,0.004604948499260719],[114,219,74,0.004493255524408879],[114,219,75,0.004485557686197194],[114,219,76,0.004604366941698305],[114,219,77,0.004870485657778705],[114,219,78,0.0053016017860211965],[114,219,79,0.0059111317553395895],[114,220,64,0.008553278016248654],[114,220,65,0.007612605994422973],[114,220,66,0.00686757673811083],[114,220,67,0.006261665945515746],[114,220,68,0.005740624559112568],[114,220,69,0.005278521938619956],[114,220,70,0.004864895353906353],[114,220,71,0.0045012079365587656],[114,220,72,0.004197902986897956],[114,220,73,0.003971697630637327],[114,220,74,0.003843121546382767],[114,220,75,0.0038343061118691476],[114,220,76,0.003967028932868704],[114,220,77,0.00426101832670027],[114,220,78,0.004732521935176697],[114,220,79,0.005393143242861246],[114,221,64,0.008687135371251856],[114,221,65,0.007591408824607693],[114,221,66,0.006707625326968393],[114,221,67,0.005981966816443307],[114,221,68,0.00536043634700462],[114,221,69,0.004816310559069313],[114,221,70,0.004338537216122048],[114,221,71,0.003928093797831536],[114,221,72,0.0035949322909468416],[114,221,73,0.003355179881802867],[114,221,74,0.0032286014772087354],[114,221,75,0.003236329582016108],[114,221,76,0.0033988666525485265],[114,221,77,0.0037343646281183186],[114,221,78,0.004257185921231038],[114,221,79,0.004976749724213286],[114,222,64,0.008677129756412988],[114,222,65,0.007439886224461876],[114,222,66,0.0064312084502371036],[114,222,67,0.005600527016510403],[114,222,68,0.004894420083092774],[114,222,69,0.004285332670181667],[114,222,70,0.0037614215900158635],[114,222,71,0.0033228548508459],[114,222,72,0.0029786800232626076],[114,222,73,0.002743962645754938],[114,222,74,0.0026372007338540553],[114,222,75,0.0026780210373093375],[114,222,76,0.0028851622593560745],[114,222,77,0.0032747500142373395],[114,222,78,0.0038588678570745496],[114,222,79,0.004644428277571689],[114,223,64,0.008522587092215532],[114,223,65,0.007157657060530998],[114,223,66,0.0060380417702924],[114,223,67,0.005116864059624886],[114,223,68,0.004341554359969301],[114,223,69,0.0036836977478604035],[114,223,70,0.0031304871369780708],[114,223,71,0.0026809998399989717],[114,223,72,0.0023430197669237628],[114,223,73,0.0021301414930482935],[114,223,74,0.002059162336984492],[114,223,75,0.0021477681513467867],[114,223,76,0.002412518080747071],[114,223,77,0.0028671330866852193],[114,223,78,0.003521092580271505],[114,223,79,0.004378543045262934],[114,224,64,0.0082354487122479],[114,224,65,0.0067562219148884824],[114,224,66,0.0055389876226822],[114,224,67,0.004540889657327148],[114,224,68,0.0037104259284806147],[114,224,69,0.003018298314594074],[114,224,70,0.0024505946943998097],[114,224,71,0.002005073279964306],[114,224,72,0.0016879643394086112],[114,224,73,0.001511063551468389],[114,224,74,0.0014891231562256689],[114,224,75,0.0016375466138412226],[114,224,76,0.0019703920208239646],[114,224,77,0.0024986890645067794],[114,224,78,0.0032290738245662567],[114,224,79,0.004162745259553594],[114,225,64,0.007842947337857497],[114,225,65,0.006261538368248528],[114,225,66,0.004958535266665645],[114,225,67,0.0038953024429881815],[114,225,68,0.0030215411883344145],[114,225,69,0.0023070441432118537],[114,225,70,0.0017366867081802808],[114,225,71,0.0013067419692641717],[114,225,72,0.0010216811682019686],[114,225,73,8.912738854038653E-4],[114,225,74,9.279940842841E-4],[114,225,75,0.0011447377009586662],[114,225,76,0.0015528569893003825],[114,225,77,0.0021605163513312214],[114,225,78,0.002971373900616327],[114,225,79,0.003983592525746603],[114,226,64,0.0073904963813949945],[114,226,65,0.005716809659862963],[114,226,66,0.004337494902964633],[114,226,67,0.0032181955335551992],[114,226,68,0.0023098542274230076],[114,226,69,0.0015813150779336285],[114,226,70,0.0010161674631516265],[114,226,71,6.091043893155345E-4],[114,226,72,3.627323777221254E-4],[114,226,73,2.846880150385261E-4],[114,226,74,3.8506727625317003E-4],[114,226,75,6.741732542863173E-4],[114,226,76,0.00116058744626607],[114,226,77,0.0018495692570303262],[114,226,78,0.0027417878893357],[114,226,79,0.003832390301680209],[114,227,64,0.006944382860965896],[114,227,65,0.005185894313285984],[114,227,66,0.003737046321693645],[114,227,67,0.0025677263042725774],[114,227,68,0.0016300795968819297],[114,227,69,8.919461295950007E-4],[114,227,70,3.3558487620894E-4],[114,227,71,-4.5920650158076425E-5],[114,227,72,-2.518406261596676E-4],[114,227,73,-2.766641399132486E-4],[114,227,74,-1.1264534475550594E-4],[114,227,75,2.4797503058065487E-4],[114,227,76,8.110778977899126E-4],[114,227,77,0.001579108335165508],[114,227,78,0.002549856509407033],[114,227,79,0.0037155805825457204],[114,228,64,0.006578350698873737],[114,228,65,0.004743280352045697],[114,228,66,0.0032318161922782526],[114,228,67,0.002018213916346618],[114,228,68,0.0010558861024098484],[114,228,69,3.116430486155144E-4],[114,228,70,-2.3361288850922E-4],[114,228,71,-5.884261891670594E-4],[114,228,72,-7.53949151147021E-4],[114,228,73,-7.267844735286207E-4],[114,228,74,-5.015034459999558E-4],[114,228,75,-7.283423980469866E-5],[114,228,76,5.624847025933276E-4],[114,228,77,0.0014041906766768541],[114,228,78,0.0024473261157105224],[114,228,79,0.003681414871329389],[114,229,64,0.006347849202305599],[114,229,65,0.004445916093407762],[114,229,66,0.002879663829511107],[114,229,67,0.0016280095034278005],[114,229,68,6.458322204393225E-4],[114,229,69,-1.0105340587114351E-4],[114,229,70,-6.330977342665387E-4],[114,229,71,-9.604834251334094E-4],[114,229,72,-0.00108625800511323],[114,229,73,-0.0010091441427734758],[114,229,74,-7.26021725929149E-4],[114,229,75,-2.3407633062661577E-4],[114,229,76,4.6739082149335737E-4],[114,229,77,0.0013754958103085928],[114,229,78,0.002482651751498782],[114,229,79,0.0037757986951606442],[114,230,64,0.0062882630811481035],[114,230,65,0.0043302396338284555],[114,230,66,0.0027176483023036635],[114,230,67,0.0014344537109826465],[114,230,68,4.373044955499267E-4],[114,230,69,-3.088750460755301E-4],[114,230,70,-8.258393171500091E-4],[114,230,71,-0.0011253957835597002],[114,230,72,-0.001212493147722282],[114,230,73,-0.001087985266447256],[114,230,74,-7.510650232275453E-4],[114,230,75,-2.0136286810427693E-4],[114,230,76,5.592947523302247E-4],[114,230,77,0.001525471339654331],[114,230,78,0.0026870544162202817],[114,230,79,0.00402854097234612],[114,231,64,0.00641755266038031],[114,231,65,0.0044148183523492045],[114,231,66,0.002764660912818843],[114,231,67,0.0014565090839695955],[114,231,68,4.49160037328989E-4],[114,231,69,-2.931681288876223E-4],[114,231,70,-7.93430335333695E-4],[114,231,71,-0.001065010892225914],[114,231,72,-0.0011147474579646535],[114,231,73,-9.456310134448373E-4],[114,231,74,-5.591762196700405E-4],[114,231,75,4.254297117663857E-5],[114,231,76,8.551970723433438E-4],[114,231,77,0.0018708482966725412],[114,231,78,0.0030769448683655816],[114,231,79,0.004455665508422019],[114,232,64,0.006738753737565994],[114,232,65,0.00470284705746065],[114,232,66,0.003023917068120706],[114,232,67,0.001697253828309104],[114,232,68,6.842336953862964E-4],[114,232,69,-5.136542237765974E-5],[114,232,70,-5.335346881616021E-4],[114,232,71,-7.77145668229103E-4],[114,232,72,-7.908873044571214E-4],[114,232,73,-5.79881618769224E-4],[114,232,74,-1.479727147842166E-4],[114,232,75,5.003158593412273E-4],[114,232,76,0.001358159818696502],[114,232,77,0.002415152845689732],[114,232,78,0.0036563687119323153],[114,232,79,0.005061769741704452],[114,233,64,0.0072423351020874036],[114,233,65,0.005184502439143304],[114,233,66,0.00348530491511761],[114,233,67,0.0021462340529945184],[114,233,68,0.001131706763150376],[114,233,69,4.0540813823565584E-4],[114,233,70,-5.7462133268511745E-5],[114,233,71,-2.731283545466451E-4],[114,233,72,-2.520639299810025E-4],[114,233,73,-1.5004687748129802E-6],[114,233,74,4.7238431222987483E-4],[114,233,75,0.0011626045905812285],[114,233,76,0.002059834553428773],[114,233,77,0.003151210337213994],[114,233,78,0.004419469008680115],[114,233,79,0.005842427316467661],[114,234,64,0.007908412167352441],[114,234,65,0.005839152331298098],[114,234,66,0.004127589316835768],[114,234,67,0.0027816731552273957],[114,234,68,0.00176933597042727],[114,234,69,0.0010545950826899497],[114,234,70,6.121295774952659E-4],[114,234,71,4.2454168078141774E-4],[114,234,72,4.796697301730142E-4],[114,234,73,7.682093424326441E-4],[114,234,74,0.001281647690113633],[114,234,75,0.002010515321331917],[114,234,76,0.0029429594733981963],[114,234,77,0.0040636423471951105],[114,234,78,0.005352967328463407],[114,234,79,0.006786635668787724],[114,235,64,0.008708814964574142],[114,235,65,0.00663741809118781],[114,235,66,0.00492046955341115],[114,235,67,0.0035725368190325144],[114,235,68,0.0025655413340562234],[114,235,69,0.0018643290130567229],[114,235,70,0.0014434039119984089],[114,235,71,0.0012844153788207],[114,235,72,0.0013736359854093277],[114,235,73,0.0016997373928318371],[114,235,74,0.0022518687399997106],[114,235,75,0.0030180416825338714],[114,235,76,0.003983825741902393],[114,235,77,0.005131357158189872],[114,235,78,0.006438663976844702],[114,235,79,0.007879309644515328],[114,236,64,0.009609008549602737],[114,236,65,0.0075430882094273816],[114,236,66,0.00582648894175286],[114,236,67,0.0044804519105062085],[114,236,68,0.0034813512490602023],[114,236,69,0.002795420685666786],[114,236,70,0.0023973847604401035],[114,236,71,0.0022681954609322015],[114,236,72,0.002392702077028963],[114,236,73,0.0027576064586247377],[114,236,74,0.0033497079047659847],[114,236,75,0.004154441468884353],[114,236,76,0.005154713018199454],[114,236,77,0.006330033939548521],[114,236,78,0.007655957942340648],[114,236,79,0.009103821975968108],[114,237,64,0.01056986368477724],[114,237,65,0.008514881078586415],[114,237,66,0.006802794385685564],[114,237,67,0.005461477372203094],[114,237,68,0.004472203021414696],[114,237,69,0.003803204883194113],[114,237,70,0.003429864078026613],[114,237,71,0.0033327165484825744],[114,237,72,0.0034953414123822272],[114,237,73,0.003902520193732837],[114,237,74,0.004538670762999573],[114,237,75,0.0053865593967834],[114,237,76,0.006426293943940162],[114,237,77,0.0076346006636141845],[114,237,78,0.008984386883956435],[114,237,79,0.010444591222199567],[114,238,64,0.011549275478060166],[114,238,65,0.009508054672827324],[114,238,66,0.007802743695735774],[114,238,67,0.006467725047345193],[114,238,68,0.005489596870049434],[114,238,69,0.004839246215096216],[114,238,70,0.004493176235924849],[114,238,71,0.004431802352164395],[114,238,72,0.004637584944222979],[114,238,73,0.0050934167620719836],[114,238,74,0.005781268450497259],[114,238,75,0.006681095196949502],[114,238,76,0.007770007111426225],[114,238,77,0.009021705553415076],[114,238,78,0.010406187232016135],[114,238,79,0.011889717525485717],[114,239,64,0.012504870558426568],[114,239,65,0.010477995497060098],[114,239,66,0.008780203632052664],[114,239,67,0.007452180489544698],[114,239,68,0.006486243675208062],[114,239,69,0.005856612339060823],[114,239,70,0.005541396233018156],[114,239,71,0.005521195513041531],[114,239,72,0.0057775019542729575],[114,239,73,0.0062913374906968895],[114,239,74,0.007042133024684958],[114,239,75,0.008006850083154902],[114,239,76,0.009159347528960186],[114,239,77,0.010469995171194105],[114,239,78,0.011905535759337619],[114,239,79,0.013429196496935551],[114,240,64,0.013402311319297224],[114,240,65,0.011391198332167745],[114,240,66,0.009702591698643341],[114,240,67,0.008383123638728118],[114,240,68,0.00743113795288241],[114,240,69,0.006824853548771575],[114,240,70,0.006544486010676219],[114,240,71,0.006571159360823429],[114,240,72,0.006885595122779687],[114,240,73,0.007467020470346624],[114,240,74,0.008292297930726404],[114,240,75,0.009335278771196606],[114,240,76,0.010566381860645896],[114,240,77,0.011952399463554676],[114,240,78,0.013456531097149916],[114,240,79,0.015038646265628727],[114,241,64,0.014217530186498396],[114,241,65,0.012224832944427447],[114,241,66,0.010548196072871953],[114,241,67,0.009239678651330019],[114,241,68,0.008303846209280501],[114,241,69,0.007723547851462751],[114,241,70,0.007481605549937249],[114,241,71,0.007560038913019177],[114,241,72,0.007939055327948027],[114,241,73,0.008596240465479956],[114,241,74,0.009505951128033329],[114,241,75,0.010638912113579193],[114,241,76,0.011962018460833479],[114,241,77,0.013438344139766988],[114,241,78,0.015027357957585787],[114,241,79,0.01668534716702536],[114,242,64,0.014935513211567667],[114,242,65,0.012964687212465496],[114,242,66,0.011303451648865417],[114,242,67,0.010008622238960846],[114,242,68,0.009091062464967277],[114,242,69,0.008538823870497304],[114,242,70,0.008337820589571254],[114,242,71,0.008471360886957395],[114,242,72,0.00891944510253635],[114,242,73,0.009658245113474007],[114,242,74,0.010659766807483166],[114,242,75,0.011891696781493597],[114,242,76,0.01331743420507059],[114,242,77,0.014896308519020879],[114,242,78,0.016583983379177717],[114,242,79,0.01833304700600935],[114,243,64,0.015549393990935537],[114,243,65,0.013604321844571356],[114,243,66,0.01196216516941135],[114,243,67,0.010683694022833971],[114,243,68,0.00978602232548537],[114,243,69,0.009262898710539537],[114,243,70,0.009103784692137084],[114,243,71,0.009293679633673531],[114,243,72,0.009812726459725295],[114,243,73,0.010635980278397848],[114,243,74,0.01173334092715431],[114,243,75,0.013069650206490289],[114,243,76,0.014604954322271421],[114,243,77,0.016294931821050768],[114,243,78,0.018091487075408853],[114,243,79,0.01994350916072339],[114,244,64,0.016059521927359835],[114,244,65,0.014144195878845035],[114,244,66,0.012524707308953286],[114,244,67,0.011264868792092594],[114,244,68,0.010387872627566765],[114,244,69,0.009893564343268905],[114,244,70,0.009775362543409322],[114,244,71,0.010020357210004067],[114,244,72,0.010609216312079527],[114,244,73,0.01151623729894492],[114,244,74,0.012709544027648912],[114,244,75,0.014151429455512617],[114,244,76,0.01579884421566966],[114,244,77,0.01760403098856994],[114,244,78,0.0195153043873975],[114,244,79,0.020061394067700945],[114,245,64,0.01647250433464147],[114,245,65,0.014590762407684534],[114,245,66,0.012997171085641546],[114,245,67,0.011757589959546753],[114,245,68,0.01090099584792172],[114,245,69,0.010433621581711704],[114,245,70,0.010353193430739172],[114,245,71,0.01064927641595846],[114,245,72,0.011303468202674971],[114,245,73,0.012289720757449555],[114,245,74,0.013574789881902855],[114,245,75,0.015118812545510998],[114,245,76,0.01687601175567366],[114,245,77,0.018795528528393377],[114,245,78,0.020770497532893527],[114,245,79,0.018708488818864093],[114,246,64,0.016800222000243076],[114,246,65,0.014955534076296788],[114,246,66,0.013390496082091025],[114,246,67,0.012171963602316926],[114,246,68,0.011334288546175957],[114,246,69,0.01089026078423403],[114,246,70,0.010842193904757002],[114,246,71,0.011182485666566834],[114,246,72,0.011894079090366457],[114,246,73,0.012951035398307663],[114,246,74,0.014319218512324247],[114,246,75,0.01595709065682635],[114,246,76,0.017816618454698927],[114,246,77,0.019844288758561382],[114,246,78,0.01967853828617314],[114,246,79,0.0175042639281557],[114,247,64,0.01705881794815931],[114,247,65,0.015254118027660924],[114,247,66,0.013719558071158584],[114,247,67,0.012521912584384778],[114,247,68,0.011700393214304335],[114,247,69,0.01127438851903835],[114,247,70,0.01125099870496847],[114,247,71,0.01162577462702454],[114,247,72,0.01238341997141352],[114,247,73,0.013498590842298298],[114,247,74,0.014936792101834673],[114,247,75,0.016655369671856896],[114,247,76,0.018604597873501213],[114,247,77,0.020728860759422225],[114,247,78,0.01875963400854636],[114,247,79,0.016481009463128013],[114,248,64,0.01726765928692817],[114,248,65,0.015505220104452546],[114,248,66,0.014002223775537266],[114,248,67,0.012824290384040747],[114,248,68,0.012014883022981405],[114,248,69,0.011599899527881688],[114,248,70,0.011591339124628123],[114,248,71,0.011988179618590108],[114,248,72,0.012777289178891612],[114,248,73,0.013934422779971459],[114,248,74,0.015425302336674196],[114,248,75,0.017206779448986135],[114,248,76,0.019228079562231222],[114,248,77,0.020348509667203432],[114,248,78,0.018036173215360576],[114,248,79,0.015666557411395405],[114,249,64,0.01744827218578306],[114,249,65,0.0157296182726904],[114,249,66,0.01425837063919526],[114,249,67,0.013097954392725314],[114,249,68,0.012295399091805801],[114,249,69,0.011882893455006285],[114,249,70,0.011877358105263766],[114,249,71,0.012281417901952321],[114,249,72,0.013084487281225615],[114,249,73,0.014263929384258679],[114,249,74,0.015786287749567446],[114,249,75,0.017608589243278218],[114,249,76,0.01967971680929923],[114,249,77,0.01990414099500239],[114,249,78,0.01752533637247999],[114,249,79,0.01508326657352957],[114,250,64,0.017623250196438053],[114,250,65,0.015949105403182305],[114,250,66,0.014508871655639454],[114,250,67,0.013362798613873402],[114,250,68,0.01256074006658407],[114,250,69,0.012140835955325741],[114,250,70,0.012124861487912489],[114,250,71,0.012519250066352065],[114,250,72,0.013316312603610598],[114,250,73,0.01449552176169893],[114,250,74,0.01602485968402903],[114,250,75,0.017862227707071042],[114,250,76,0.019956916459203673],[114,250,77,0.01965870197413501],[114,250,78,0.017238412463183493],[114,250,79,0.014747102959617616],[114,251,64,0.017815136329622693],[114,251,65,0.01618540173607099],[114,251,66,0.014774545483601688],[114,251,67,0.013638745872160617],[114,251,68,0.012829903964006472],[114,251,69,0.012391663966134236],[114,251,70,0.012350505008073146],[114,251,71,0.012716769898341087],[114,251,72,0.013485976522879554],[114,251,73,0.014640187365108203],[114,251,74,0.016149435576240576],[114,251,75,0.01797320594737993],[114,251,76,0.02006196906879536],[114,251,77,0.01961326305302189],[114,251,78,0.017180215648145092],[114,251,79,0.01466681792536141],[114,252,64,0.01804527950504058],[114,252,65,0.01645903756180767],[114,252,66,0.015075072286022454],[114,252,67,0.01394469984613565],[114,252,68,0.013121082443388877],[114,252,69,0.012652835120453452],[114,252,70,0.01257091680620714],[114,252,71,0.012889621275473603],[114,252,72,0.013607937839478574],[114,252,73,0.0147109654202146],[114,252,74,0.01617137835219906],[114,252,75,0.017950942185151073],[114,252,76,0.020002077702209346],[114,252,77,0.019762953789799427],[114,252,78,0.017348604163229715],[114,252,79,0.01484322638334425],[114,253,64,0.018332666221804836],[114,253,65,0.016788206879690563],[114,253,66,0.01542787595422119],[114,253,67,0.01429745746181451],[114,253,68,0.01345060788806442],[114,253,69,0.012940321499154656],[114,253,70,0.012801755437064695],[114,253,71,0.01305314182936687],[114,253,72,0.01369715571167791],[114,253,73,0.014722333576917946],[114,253,74,0.01610454086699469],[114,253,75,0.017808486656201904],[114,253,76,0.01978928372023052],[114,253,77,0.020096818585285496],[114,253,78,0.01773410363483634],[114,253,79,0.01526858750965922],[114,254,64,0.018692728544402737],[114,254,65,0.017187593043605568],[114,254,66,0.01584697362691392],[114,254,67,0.014710582432572863],[114,254,68,0.013831853926825],[114,254,69,0.013267548164721844],[114,254,70,0.013056703600900709],[114,254,71,0.013221433351338912],[114,254,72,0.013768260849048253],[114,254,73,0.014689505184609743],[114,254,74,0.0159647144724141],[114,254,75,0.01756214551749333],[114,254,76,0.01944028800251156],[114,254,77,0.020597778879410958],[114,254,78,0.018319637006253185],[114,254,79,0.01592609043330476],[114,255,64,0.01913612976772489],[114,255,65,0.017667167674764298],[114,255,66,0.01634179368434877],[114,255,67,0.015193241002829169],[114,255,68,0.014274090299943533],[114,255,69,0.01364427719356364],[114,255,70,0.013346398089582144],[114,255,71,0.01340635917423577],[114,255,72,0.01383464490673641],[114,255,73,0.01462763681271666],[114,255,74,0.015768980990993844],[114,255,75,0.01723100267766606],[114,255,76,0.018976166153312567],[114,255,77,0.020958578231810045],[114,255,78,0.01908036325860067],[114,255,79,0.016789447443393914],[114,256,64,0.019667529414626524],[114,256,65,0.018230964414123974],[114,256,66,0.016915963692464647],[114,256,67,0.01574900125089948],[114,256,68,0.014781293276275021],[114,256,69,0.014075438227863248],[114,256,70,0.013677296742614486],[114,256,71,0.013616469058234788],[114,256,72,0.013907468301500393],[114,256,73,0.014550945894773532],[114,256,74,0.015534967601745555],[114,256,75,0.016836338660185142],[114,256,76,0.01842197638594347],[114,256,77,0.020250328579400984],[114,256,78,0.019983627073997454],[114,256,79,0.017822597274997097],[114,257,64,0.020284343525432465],[114,257,65,0.018875842471987255],[114,257,66,0.01756608229551606],[114,257,67,0.016374609046181796],[114,257,68,0.015350923896385054],[114,257,69,0.01455991712124843],[114,257,70,0.014050493436076875],[114,257,71,0.013855862224465897],[114,257,72,0.01399459690207059],[114,257,73,0.014471748953986042],[114,257,74,0.01528001529963911],[114,257,75,0.016400957559655312],[114,257,76,0.017806271728846825],[114,257,77,0.01945910669901543],[114,257,78,0.02098903666165818],[114,257,79,0.018979534763023977],[114,258,64,0.02097541310368478],[114,258,65,0.019590246332974584],[114,258,66,0.018280578221876724],[114,258,67,0.017058941072581397],[114,258,68,0.015972962573956147],[114,258,69,0.01508965805613867],[114,258,70,0.014460872819792662],[114,258,71,0.014123379601790801],[114,258,72,0.014099817022110257],[114,258,73,0.014399685426300731],[114,258,74,0.015020398919210972],[114,258,75,0.01594839229963335],[114,258,76,0.01716028152798218],[114,258,77,0.0186240762908167],[114,258,78,0.020300443167920568],[114,258,79,0.020205366995021033],[114,259,64,0.020471227238071155],[114,259,65,0.020354511810080893],[114,259,66,0.019042117589116957],[114,259,67,0.017787507153592893],[114,259,68,0.01663628893387483],[114,259,69,0.015657433089256316],[114,259,70,0.014905577650440018],[114,259,71,0.014420935315564367],[114,259,72,0.01423011175095255],[114,259,73,0.014346983652660242],[114,259,74,0.014773635505215125],[114,259,75,0.015501353881867484],[114,259,76,0.01651167804643046],[114,259,77,0.01777750554114742],[114,259,78,0.019264251378955585],[114,259,79,0.02093105940291315],[114,260,64,0.019750947972792886],[114,260,65,0.02112278331173183],[114,260,66,0.01983595908756683],[114,260,67,0.018550259629670593],[114,260,68,0.017335908456005297],[114,260,69,0.016263428955894613],[114,260,70,0.015389888452787381],[114,260,71,0.014758620766037872],[114,260,72,0.014399927208887641],[114,260,73,0.014331838997660102],[114,260,74,0.014560940145866315],[114,260,75,0.015083249819984252],[114,260,76,0.015885163043906796],[114,260,77,0.016944448557222335],[114,260,78,0.018231302559569125],[114,260,79,0.019709457010177074],[114,261,64,0.0190149870786827],[114,261,65,0.020361005867870544],[114,261,66,0.02065167793888141],[114,261,67,0.01934083766951722],[114,261,68,0.01806989614028895],[114,261,69,0.016910335666048923],[114,261,70,0.015921107943297274],[114,261,71,0.015148182943690327],[114,261,72,0.014625137252998034],[114,261,73,0.014373804475720686],[114,261,74,0.014404986911152098],[114,261,75,0.014719227606580227],[114,261,76,0.01530764179970914],[114,261,77,0.016152806676020665],[114,261,78,0.017229708288632795],[114,261,79,0.01850674441912035],[114,262,64,0.01827546036964257],[114,262,65,0.019589298429753932],[114,262,66,0.02091221188479706],[114,262,67,0.020155994617055813],[114,262,68,0.018838724510264682],[114,262,69,0.017602571928717864],[114,262,70,0.016507688297996502],[114,262,71,0.015602063904950284],[114,262,72,0.014922009933008082],[114,262,73,0.014492702008894305],[114,262,74,0.014328784591796463],[114,262,75,0.014435035434882471],[114,262,76,0.014807089253708505],[114,262,77,0.015432219647219433],[114,262,78,0.016290178235655622],[114,262,79,0.017354089906577483],[114,263,64,0.01753963736225776],[114,263,65,0.018812915094591758],[114,263,66,0.020113415317093812],[114,263,67,0.020995464637028227],[114,263,68,0.019645123777577603],[114,263,69,0.018346111183494117],[114,263,70,0.01715899333288898],[114,263,71,0.0161330685163957],[114,263,72,0.015306750448124776],[114,263,73,0.01470801147743711],[114,263,74,0.01435488484966987],[114,263,75,0.014256025364154393],[114,263,76,0.014411327683145488],[114,263,77,0.014812601456324482],[114,263,78,0.015444302343232442],[114,263,79,0.016284317941120154],[114,264,64,0.01680980820337782],[114,264,65,0.018032626605227767],[114,264,66,0.019298905215058115],[114,264,67,0.020639638378069067],[114,264,68,0.02049428158092947],[114,264,69,0.019148637255484192],[114,264,70,0.017885378115991845],[114,264,71,0.016754335275363404],[114,264,72,0.015795330808120456],[114,264,73,0.015038528292321563],[114,264,74,0.01450483915552128],[114,264,75,0.014206384284987944],[114,264,76,0.014147010270901147],[114,264,77,0.014322859564723124],[114,264,78,0.014722993754215086],[114,264,79,0.015330069082368666],[114,265,64,0.01608279134820533],[114,265,65,0.017244190633216944],[114,265,66,0.018463330254241204],[114,265,67,0.019778063102841126],[114,265,68,0.02116348746897624],[114,265,69,0.020020031961034055],[114,265,70,0.018698588249065173],[114,265,71,0.017479612385952206],[114,265,72,0.01640360835135565],[114,265,73,0.015502291650191671],[114,265,74,0.01479890671659917],[114,265,75,0.014308594962499942],[114,265,76,0.014038812950264004],[114,265,77,0.013989800087533021],[114,265,78,0.014155095165704583],[114,265,79,0.014522100992578163],[114,266,64,0.01534907954732934],[114,266,65,0.016437460843710252],[114,266,66,0.017595984707472093],[114,266,67,0.018868946692522523],[114,266,68,0.02023638963470701],[114,266,69,0.02097319649401681],[114,266,70,0.019612480578843842],[114,266,71,0.018323840810289437],[114,266,72,0.01714773483168194],[114,266,73,0.016116785207620037],[114,266,74,0.015256015188551146],[114,266,75,0.014583129040738933],[114,266,76,0.014108836527679533],[114,266,77,0.013837221055256362],[114,266,78,0.01376615092312518],[114,266,79,0.01388773305953768],[114,267,64,0.01459162224165974],[114,267,65,0.015595132952851266],[114,267,66,0.016679534007734125],[114,267,67,0.017895037313101138],[114,267,68,0.01922691272593662],[114,267,69,0.020615598998566475],[114,267,70,0.020644066655246648],[114,267,71,0.019304045590801757],[114,267,72,0.0180448573793257],[114,267,73,0.01689941152063413],[114,267,74,0.015893975589323005],[114,267,75,0.015048373527110859],[114,267,76,0.014376220730328525],[114,267,77,0.013885195557965314],[114,267,78,0.013577346825098223],[114,267,79,0.013449436789373874],[114,268,64,0.013784242967968131],[114,268,65,0.01469112648116941],[114,268,66,0.01568837970446808],[114,268,67,0.0168315153319465],[114,268,68,0.01811122908231982],[114,268,69,0.019472964256339518],[114,268,70,0.020866850641269096],[114,268,71,0.020440536348879722],[114,268,72,0.01911411226670571],[114,268,73,0.01786824123609279],[114,268,74,0.01672995248635385],[114,268,75,0.015720791940070106],[114,268,76,0.014856971498346729],[114,268,77,0.014149546249740293],[114,268,78,0.013604619292278993],[114,268,79,0.01322357381115551],[114,269,64,0.012889690845506088],[114,269,65,0.013688601363033898],[114,269,66,0.01458666306738622],[114,269,67,0.015644014446814018],[114,269,68,0.016856892490969267],[114,269,69,0.018176449541114175],[114,269,70,0.019557246308005892],[114,269,71,0.020958366888886172],[114,269,72,0.020377912067584464],[114,269,73,0.019043037692488243],[114,269,74,0.017781190211031417],[114,269,75,0.01661532099551602],[114,269,76,0.0155640025408628],[114,269,77,0.014641512395129638],[114,269,78,0.01385793525949886],[114,269,79,0.013219283040980188],[114,270,64,0.01185732564660599],[114,270,65,0.012537608993295804],[114,270,66,0.013325906998301633],[114,270,67,0.014286287335584786],[114,270,68,0.015420566555376167],[114,270,69,0.016686200527087566],[114,270,70,0.018042727144781834],[114,270,71,0.019452865938978343],[114,270,72,0.020882568385140042],[114,270,73,0.0204465572881657],[114,270,74,0.019065995565133928],[114,270,75,0.017746003426247648],[114,270,76,0.016507391899722043],[114,270,77,0.015367610367386495],[114,270,78,0.014340743879329631],[114,270,79,0.013437518280320122],[114,271,64,0.010651832918834982],[114,271,65,0.011203878656022018],[114,271,66,0.011873561905814465],[114,271,67,0.012728168675471213],[114,271,68,0.013775047638936453],[114,271,69,0.0149784227313706],[114,271,70,0.016303220226823817],[114,271,71,0.017716139387782326],[114,271,72,0.019185744122728936],[114,271,73,0.02068255814677619],[114,271,74,0.020589161180354223],[114,271,75,0.019114307879504404],[114,271,76,0.017685704495576677],[114,271,77,0.016324007995845952],[114,271,78,0.01504739377306682],[114,271,79,0.013871441704472567],[114,272,64,0.00934745581096949],[114,272,65,0.009763371189863502],[114,272,66,0.010306835583960013],[114,272,67,0.011047524373964406],[114,272,68,0.011998118479898139],[114,272,69,0.013129914229320338],[114,272,70,0.014413519850722714],[114,272,71,0.015819883124547823],[114,272,72,0.017320422478454722],[114,272,73,0.018887173289113546],[114,272,74,0.02049294920823319],[114,272,75,0.020672087548052068],[114,272,76,0.019059176841003736],[114,272,77,0.017480118142855806],[114,272,78,0.015957119233409058],[114,272,79,0.014510588091441803],[114,273,64,0.00803666100101718],[114,273,65,0.008310651938486019],[114,273,66,0.008721718063581718],[114,273,67,0.00934098333565048],[114,273,68,0.010186106329782743],[114,273,69,0.011235591542322338],[114,273,70,0.012465904849337973],[114,273,71,0.013852443071560977],[114,273,72,0.015369699754559523],[114,273,73,0.016991457837423698],[114,273,74,0.018691008956848155],[114,273,75,0.020441399095370377],[114,273,76,0.020577912356256653],[114,273,77,0.018796801124312375],[114,273,78,0.017042198726102933],[114,273,79,0.015339114574340125],[114,274,64,0.006799860739125256],[114,274,65,0.006928451597915307],[114,274,66,0.007202701822363475],[114,274,67,0.007694174746235994],[114,274,68,0.008425017769546232],[114,274,69,0.00938091140685089],[114,274,70,0.01054423184812209],[114,274,71,0.011894947118036892],[114,274,72,0.013410810471385051],[114,274,73,0.015067592046367224],[114,274,74,0.01683934845912629],[114,274,75,0.018698729965325338],[114,274,76,0.02061732476074855],[114,274,77,0.020232463463645187],[114,274,78,0.01827066951029676],[114,274,79,0.016335174693858263],[114,275,64,0.005706225577320219],[114,275,65,0.005688409285594309],[114,275,66,0.005823444735462313],[114,275,67,0.006182299357372414],[114,275,68,0.0067910083170574],[114,275,69,0.007642232003470086],[114,275,70,0.00872418458603145],[114,275,71,0.010021441965840474],[114,275,72,0.01151515389876536],[114,275,73,0.013183305166313587],[114,275,74,0.015001025424635835],[114,275,75,0.016940947285833643],[114,275,76,0.01897361211395265],[114,275,77,0.021067922951310557],[114,275,78,0.01960679963321314],[114,275,79,0.017471433004094265],[114,276,64,0.004814320537765482],[114,276,65,0.004651636788837444],[114,276,66,0.004647253166594916],[114,276,67,0.004870520185380212],[114,276,68,0.005350670614900075],[114,276,69,0.00608699183333868],[114,276,70,0.0070733398709853235],[114,276,71,0.008298845536822405],[114,276,72,0.009748135036842505],[114,276,73,0.01140160961066244],[114,276,74,0.01323578377708281],[114,276,75,0.01522368168554213],[114,276,76,0.017335290981712898],[114,276,77,0.019538073512554925],[114,276,78,0.021011751850460118],[114,276,79,0.01871577245125667],[114,277,64,0.0041725629391724025],[114,277,65,0.0038691022967518875],[114,277,66,0.0037273836042251993],[114,277,67,0.0038141711451250555],[114,277,68,0.0041611398506401906],[114,277,69,0.00477370503678015],[114,277,70,0.005651049115689909],[114,277,71,0.006786714045078227],[114,277,72,0.008168819310854964],[114,277,73,0.009780347869150255],[114,277,74,0.011599499614095038],[114,277,75,0.013600111828031851],[114,277,76,0.015752145966588776],[114,277,77,0.01802224003315668],[114,277,78,0.020374325706750435],[114,277,79,0.020032194204034043],[114,278,64,0.0038195003765207907],[114,278,65,0.003381832190411222],[114,278,66,0.003107161511011622],[114,278,67,0.003058782395099337],[114,278,68,0.003270015306776566],[114,278,69,0.003751772182984067],[114,278,70,0.004508134622883263],[114,278,71,0.00553682304888136],[114,278,72,0.006829400443734474],[114,278,73,0.008371551781268237],[114,278,74,0.01014343870985129],[114,278,75,0.012120128923852351],[114,278,76,0.014272099540221041],[114,278,77,0.01656581368600364],[114,278,78,0.018964369399135525],[114,278,79,0.021381909496955762],[114,279,64,0.003783907604931084],[114,279,65,0.0032209297165640134],[114,279,66,0.002819916297736506],[114,279,67,0.0026399214039687113],[114,279,68,0.002715097161982482],[114,279,69,0.0030611057736738196],[114,279,70,0.0036863999915653575],[114,279,71,0.004592561987810569],[114,279,72,0.005774481149059377],[114,279,73,0.0072206139504179066],[114,279,74,0.008913325478433154],[114,279,75,0.010829312037014538],[114,279,76,0.012940104140191082],[114,279,77,0.015212649072603628],[114,279,78,0.017609972083831752],[114,279,79,0.020091915177217482],[114,280,64,0.004084701314664842],[114,280,65,0.0034074096007261634],[114,280,66,0.002888731555844302],[114,280,67,0.0025828489627405466],[114,280,68,0.002523937869217256],[114,280,69,0.0027315698968711374],[114,280,70,0.003217954197804483],[114,280,71,0.0039881418809186685],[114,280,72,0.0050401664452674605],[114,280,73,0.00636527122569926],[114,280,74,0.007948223449996865],[114,280,75,0.009767714360873706],[114,280,76,0.01179684471637858],[114,280,77,0.014003694849551565],[114,280,78,0.01635197834380605],[114,280,79,0.018801778265705102],[114,281,64,0.004730672000824798],[114,281,65,0.003951847866148942],[114,281,66,0.0033260098854632565],[114,281,67,0.002901989560291828],[114,281,68,0.002713207619826625],[114,281,69,0.002782233639679903],[114,281,70,0.0031243490652118357],[114,281,71,0.0037476160116170147],[114,281,72,0.0046529695299617506],[114,281,73,0.005834400304189523],[114,281,74,0.00727922742593589],[114,281,75,0.008968460740733914],[114,281,76,0.010877252111860082],[114,281,77,0.01297543480774453],[114,281,78,0.015228150086833899],[114,281,79,0.017596559931299466],[114,282,64,0.005720032328308353],[114,282,65,0.004853846315804028],[114,282,66,0.004132851838306537],[114,282,67,0.0036002157131885455],[114,282,68,0.0032878735657813187],[114,282,69,0.0032204380212151615],[114,282,70,0.0034155299810572667],[114,282,71,0.003883713554175099],[114,282,72,0.004628530270534888],[114,282,73,0.005646625612104664],[114,282,74,0.0069279675729978524],[114,282,75,0.008456156802810064],[114,282,76,0.010208827734583774],[114,282,77,0.012158139953063366],[114,282,78,0.014271358921175044],[114,282,79,0.01651152505424755],[114,283,64,0.007039781569727202],[114,283,65,0.006101311304971463],[114,283,66,0.005298248656932179],[114,283,67,0.0046679459933194065],[114,283,68,0.004240192614499675],[114,283,69,0.0040406763381852446],[114,283,70,0.0040885998340153135],[114,283,71,0.0043964862051005275],[114,283,72,0.0049701464639265855],[114,283,73,0.00580873970806878],[114,283,74,0.006904925789559675],[114,283,75,0.00824511011112039],[114,283,76,0.009809780027096702],[114,283,77,0.011573932177896573],[114,283,78,0.013507589945299898],[114,283,79,0.015576410083457054],[114,284,64,0.008664885850988973],[114,284,65,0.00766954658189595],[114,284,66,0.006798088633121802],[114,284,67,0.006082056628483253],[114,284,68,0.005548517731884221],[114,284,69,0.005223287925803738],[114,284,70,0.005126396248281947],[114,284,71,0.0052717679697625525],[114,284,72,0.005667118093696115],[114,284,73,0.0063139365154267066],[114,284,74,0.0072075647295246625],[114,284,75,0.008337363815026566],[114,284,76,0.00968697327207321],[114,284,77,0.01123466013322601],[114,284,78,0.012953757629555864],[114,284,79,0.014813192556663664],[114,285,64,0.010557274075604289],[114,285,65,0.009520160102855259],[114,285,66,0.00859397702818172],[114,285,67,0.00780460666127806],[114,285,68,0.007175917788833717],[114,285,69,0.006732965425219664],[114,285,70,0.0064958822658337],[114,285,71,0.00647944831998767],[114,285,72,0.006692904866266627],[114,285,73,0.007139857732641221],[114,285,74,0.007818269900101872],[114,285,75,0.008720543270002734],[114,285,76,0.009833689280811495],[114,285,77,0.011139587910539022],[114,285,78,0.012615334457986155],[114,285,79,0.01423367336027544],[114,286,64,0.01266464951392223],[114,286,65,0.011599784835240752],[114,286,66,0.010631869596153766],[114,286,67,0.00978137673981124],[114,286,68,0.009068611063936992],[114,286,69,0.008517075714863011],[114,286,70,0.00814635068325898],[114,286,71,0.007971558981326253],[114,286,72,0.008003097339508538],[114,286,73,0.008246452790644397],[114,286,74,0.008702105258383278],[114,286,75,0.009365516112126472],[114,286,76,0.010227202499559962],[114,286,77,0.011272897120925043],[114,286,78,0.01248379296768391],[114,286,79,0.013836872413299409],[114,287,64,0.014919117136706135],[114,287,65,0.013838613647177981],[114,287,66,0.012840519826539097],[114,287,67,0.011940221679175638],[114,287,68,0.011154212569595529],[114,287,69,0.010503794706285001],[114,287,70,0.010007442281142434],[114,287,71,0.009680174628524092],[114,287,72,0.009533201965029596],[114,287,73,0.009573652722811719],[114,287,74,0.009804382717398606],[114,287,75,0.010223866241993687],[114,287,76,0.01082616903376842],[114,287,77,0.011601002914626363],[114,287,78,0.012533861770371628],[114,287,79,0.013606238399213027],[114,288,64,0.017235626842892735],[114,288,65,0.01614874844396443],[114,288,66,0.015129740075335739],[114,288,67,0.01418923697446289],[114,288,68,0.01333979539960396],[114,288,69,0.012600056224365665],[114,288,70,0.011986978191559621],[114,288,71,0.011515127763554471],[114,288,72,0.01119624034974646],[114,288,73,0.011038858286109935],[114,288,74,0.011048045934309757],[114,288,75,0.011225182125379532],[114,288,76,0.011567830032245818],[114,288,77,0.012069684417169782],[114,288,78,0.012720596065477926],[114,288,79,0.013506673086739836],[114,289,64,0.019510232761766045],[114,289,65,0.01842236422054261],[114,289,66,0.017388477743757274],[114,289,67,0.016414740917736464],[114,289,68,0.01550976824064084],[114,289,69,0.01468931758812315],[114,289,70,0.013968609463652753],[114,289,71,0.013361541236282483],[114,289,72,0.012880166540437315],[114,289,73,0.012534246412686998],[114,289,74,0.012330872657587146],[114,289,75,0.012274163799130417],[114,289,76,0.012365033839748294],[114,289,77,0.012601033915824471],[114,289,78,0.01297626680823134],[114,289,79,0.013481374139382364],[114,290,64,0.02126725912111252],[114,290,65,0.020534428667101184],[114,290,66,0.019489568078418763],[114,290,67,0.018488050526028],[114,290,68,0.01753462865465247],[114,290,69,0.01664219035200398],[114,290,70,0.01582416983017674],[114,290,71,0.015093693516372462],[114,290,72,0.014462984861076634],[114,290,73,0.013942835844497568],[114,290,74,0.013542145789230832],[114,290,75,0.013267527958696328],[114,290,76,0.01312298429265278],[114,290,77,0.013109648503625258],[114,290,78,0.013225597632209003],[114,290,79,0.013465732035762167],[114,291,64,0.019434876761461144],[114,291,65,0.02052710349150435],[114,291,66,0.02132301683138775],[114,291,67,0.020303550541098895],[114,291,68,0.01931370965258644],[114,291,69,0.018363609124577098],[114,291,70,0.017464867050685444],[114,291,71,0.016629697634223842],[114,291,72,0.01587025979185631],[114,291,73,0.015198066699315015],[114,291,74,0.014623456980799705],[114,291,75,0.014155128123974453],[114,291,76,0.013799732582245032],[114,291,77,0.013561536905759706],[114,291,78,0.013442144123058712],[114,291,79,0.013440279477246039],[114,292,64,0.017972680259933243],[114,292,65,0.019048621982930707],[114,292,66,0.020098355792374484],[114,292,67,0.02112892893287708],[114,292,68,0.02077463850633147],[114,292,69,0.019786994021602018],[114,292,70,0.018830456670913685],[114,292,71,0.0179161323576513],[114,292,72,0.01705578657163985],[114,292,73,0.01626121955188337],[114,292,74,0.015543695965879565],[114,292,75,0.0149134297578082],[114,292,76,0.014379124708773307],[114,292,77,0.013947571142450547],[114,292,78,0.013623299099579659],[114,292,79,0.013408288195391615],[114,293,64,0.016944575515508993],[114,293,65,0.017992131271127976],[114,293,66,0.019017846585648045],[114,293,67,0.020033472335324945],[114,293,68,0.021045365637643677],[114,293,69,0.02086726933100345],[114,293,70,0.019880978125497897],[114,293,71,0.018918603138136716],[114,293,72,0.01799111832747487],[114,293,73,0.017110081463937235],[114,293,74,0.016287055795158482],[114,293,75,0.015533077767775693],[114,293,76,0.014858171393286237],[114,293,77,0.014270909750484607],[114,293,78,0.013778024021079367],[114,293,79,0.013384060358890578],[114,294,64,0.01638976253622059],[114,294,65,0.01739463326426783],[114,294,66,0.018378582566101993],[114,294,67,0.019358240694832145],[114,294,68,0.02034338490003556],[114,294,69,0.021331099196865145],[114,294,70,0.02059509582651268],[114,294,71,0.019620038624842365],[114,294,72,0.01866379332395276],[114,294,73,0.017737078254760796],[114,294,74,0.01685104404825255],[114,294,75,0.016016760887454157],[114,294,76,0.015244740838816691],[114,294,77,0.01454449577629992],[114,294,78,0.013924131334754241],[114,294,79,0.013389977251432003],[114,295,64,0.01632430920317408],[114,295,65,0.017270686945956393],[114,295,66,0.018193507710634917],[114,295,67,0.019114399014556496],[114,295,68,0.020046314240729345],[114,295,69,0.020988163917076672],[114,295,70,0.02096862947445531],[114,295,71,0.020019179606084406],[114,295,72,0.019075758910888887],[114,295,73,0.018147608867232767],[114,295,74,0.017244702677159596],[114,295,75,0.016377292334695467],[114,295,76,0.015555476456310547],[114,295,77,0.014788789364989643],[114,295,78,0.01408581186767898],[114,295,79,0.013453804112376238],[114,296,64,0.016742543027077655],[114,296,65,0.017613765632223586],[114,296,66,0.01845528536831428],[114,296,67,0.019293757240185266],[114,296,68,0.02014499050450245],[114,296,69,0.02100935593262165],[114,296,70,0.021013274773689944],[114,296,71,0.02012926149154142],[114,296,72,0.019241993216981463],[114,296,73,0.018358582814696316],[114,296,74,0.01748703740773523],[114,296,75,0.016635907617689575],[114,296,76,0.015813940373605798],[114,296,77,0.015029735713888983],[114,296,78,0.01429140798483085],[114,296,79,0.013606251816287766],[114,297,64,0.01761825944829753],[114,297,65,0.018397428524875917],[114,297,66,0.019137428513306576],[114,297,67,0.01986986656094186],[114,297,68,0.020613012258100537],[114,297,69,0.02136829206611564],[114,297,70,0.020755515566930796],[114,297,71,0.019976891278725418],[114,297,72,0.019189325463095024],[114,297,73,0.018397161513782852],[114,297,74,0.01760565743732438],[114,297,75,0.01682078016156285],[114,297,76,0.016048983336436937],[114,297,77,0.015296968937477479],[114,297,78,0.014571432998996],[114,297,79,0.013878795817400646],[114,298,64,0.018905745393138412],[114,298,65,0.019576305337070384],[114,298,66,0.02019524219015082],[114,298,67,0.020798927424518773],[114,298,68,0.021407627201168712],[114,298,69,0.020859083928723307],[114,298,70,0.02023572825752016],[114,298,71,0.019601119799136115],[114,298,72,0.0189554556165428],[114,298,73,0.018299704150031636],[114,298,74,0.01763562600062131],[114,298,75,0.016965755252817828],[114,298,76,0.01629334142420539],[114,298,77,0.015622252192119358],[114,298,78,0.014956837107303287],[114,298,79,0.014301752560468221],[114,299,64,0.020540616938857174],[114,299,65,0.021086892902957996],[114,299,66,0.021289977058519163],[114,299,67,0.020844512612733287],[114,299,68,0.02040048669594169],[114,299,69,0.019955693694890274],[114,299,70,0.01950747926450497],[114,299,71,0.01905270991348526],[114,299,72,0.018588173977601548],[114,299,73,0.01811091858712628],[114,299,74,0.0176185222322694],[114,299,75,0.017109302646312066],[114,299,76,0.01658245984029872],[114,299,77,0.0160381542347943],[114,299,78,0.015477519942551024],[114,299,79,0.014902613360147985],[114,300,64,0.0203816088113177],[114,300,65,0.019987814551404137],[114,300,66,0.01967487510813364],[114,300,67,0.01939789448028108],[114,300,68,0.01913422855331341],[114,300,69,0.0188819440127325],[114,300,70,0.01863701615447172],[114,300,71,0.018393601222013382],[114,300,72,0.018144781182042605],[114,300,73,0.017883217717337113],[114,300,74,0.01760171463411871],[114,300,75,0.01729368805011654],[114,300,76,0.01695354389742445],[114,300,77,0.016576962439740797],[114,300,78,0.0161610896656637],[114,300,79,0.015704635577247557],[114,301,64,0.018306507285872325],[114,301,65,0.018064038351236055],[114,301,66,0.017920440745507887],[114,301,67,0.017827215593264917],[114,301,68,0.017761374491668147],[114,301,69,0.017721691207853916],[114,301,70,0.01770295301649916],[114,301,71,0.017696571775931282],[114,301,72,0.01769170901937038],[114,301,73,0.017676281560935467],[114,301,74,0.01763784635801793],[114,301,75,0.017564363598020827],[114,301,76,0.017444837203226836],[114,301,77,0.01726983217126761],[114,301,78,0.017031868388903373],[114,301,79,0.016725690772108337],[114,302,64,0.016183226682399444],[114,302,65,0.016102360091266137],[114,302,66,0.01613863298632623],[114,302,67,0.016240462125165417],[114,302,68,0.016385081542132262],[114,302,69,0.016572377331603994],[114,302,70,0.01679615059330379],[114,302,71,0.01704509722023877],[114,302,72,0.017304342406525265],[114,302,73,0.017556825356699047],[114,302,74,0.017784532442246922],[114,302,75,0.017969577338341963],[114,302,76,0.018095126961009185],[114,302,77,0.01814617231046292],[114,302,78,0.01811014360838203],[114,302,79,0.01797736939358279],[114,303,64,0.014121272655878545],[114,303,65,0.014210076879472604],[114,303,66,0.014433680795430684],[114,303,67,0.014737967389135125],[114,303,68,0.015100932676812244],[114,303,69,0.015523934848300665],[114,303,70,0.015999998086726558],[114,303,71,0.016515184673689242],[114,303,72,0.017050560256412408],[114,303,73,0.017583977710960496],[114,303,74,0.018091677320421953],[114,303,75,0.01854970133782848],[114,303,76,0.01893512135511072],[114,303,77,0.01922707724954409],[114,303,78,0.019407626825795443],[114,303,79,0.01946240561262275],[114,304,64,0.012146417518629136],[114,304,65,0.012411812077211572],[114,304,66,0.012828799068319149],[114,304,67,0.013341348264959687],[114,304,68,0.01392873936407543],[114,304,69,0.014594105375196844],[114,304,70,0.015329878937931243],[114,304,71,0.016119576455336345],[114,304,72,0.016940210214456002],[114,304,73,0.017764486501139872],[114,304,74,0.018562786876191607],[114,304,75,0.01930493019652625],[114,304,76,0.019961713383008638],[114,304,77,0.020506229353620932],[114,304,78,0.020914960954085144],[114,304,79,0.02116865012543251],[114,305,64,0.010273100293381267],[114,305,65,0.010720637939112565],[114,305,66,0.011335523799617341],[114,305,67,0.01206049251245605],[114,305,68,0.01287660028312059],[114,305,69,0.013788994334746046],[114,305,70,0.014789671808052884],[114,305,71,0.015859691340373638],[114,305,72,0.016972042631049258],[114,305,73,0.018094268741628408],[114,305,74,0.019190837727311318],[114,305,75,0.02022526067992885],[114,305,76,0.02116195374865222],[114,305,77,0.020804591719234277],[114,305,78,0.020142311575909264],[114,305,79,0.019662139896747272],[114,306,64,0.008525621521784429],[114,306,65,0.009158982984369344],[114,306,66,0.009974180998642036],[114,306,67,0.010913420986754048],[114,306,68,0.011959981680833627],[114,306,69,0.013121195587858634],[114,306,70,0.014388752513383892],[114,306,71,0.015741348600714074],[114,306,72,0.017148017507908],[114,306,73,0.018571180786779086],[114,306,74,0.019969413478542922],[114,306,75,0.021299921492460808],[114,306,76,0.02025938917430273],[114,306,77,0.019173805666516358],[114,306,78,0.018269902106595647],[114,306,79,0.017577076869335996],[114,307,64,0.006934444885525349],[114,307,65,0.007755058766962547],[114,307,66,0.008770466539755165],[114,307,67,0.009923049559564365],[114,307,68,0.011198691996816295],[114,307,69,0.012607010485097218],[114,307,70,0.01413948840158266],[114,307,71,0.015772566151394173],[114,307,72,0.017471431077906614],[114,307,73,0.019193493183178482],[114,307,74,0.02089154208866452],[114,307,75,0.02026837445127947],[114,307,76,0.018753621711373337],[114,307,77,0.017403233746664783],[114,307,78,0.016257878372409027],[114,307,79,0.015351959779107274],[114,308,64,0.005532936356747439],[114,308,65,0.006539721703387902],[114,308,66,0.00775245502627241],[114,308,67,0.009114371094830768],[114,308,68,0.010614265163267031],[114,308,69,0.012264062072746497],[114,308,70,0.014055112525135026],[114,308,71,0.015961721624368423],[114,308,72,0.01794538727190057],[114,308,73,0.01995869154974674],[114,308,74,0.020838046453411543],[114,308,75,0.018917864880015442],[114,308,76,0.01712785450533297],[114,308,77,0.015519330970803356],[114,308,78,0.014138432978595744],[114,308,79,0.013024397074722052],[114,309,64,0.004354540533772018],[114,309,65,0.005543769571652702],[114,309,66,0.006948037246728378],[114,309,67,0.00851205702758786],[114,309,68,0.010227752102502777],[114,309,69,0.012109303954753193],[114,309,70,0.014147977096155874],[114,309,71,0.01631607584257713],[114,309,72,0.018571613540774773],[114,309,73,0.02086260295660155],[114,309,74,0.0196496020397127],[114,309,75,0.017456872300548158],[114,309,76,0.01540521717360005],[114,309,77,0.013551525458054652],[114,309,78,0.011947093561596438],[114,309,79,0.010635701781115756],[114,310,64,0.0034303935121687812],[114,310,65,0.004795672010565594],[114,310,66,0.006382785540786008],[114,310,67,0.008138477858455884],[114,310,68,0.010057919735548681],[114,310,69,0.012157423131068965],[114,310,70,0.014428185556744336],[114,310,71,0.016840658049274978],[114,310,72,0.019349620416040665],[114,310,73,0.02088062575531715],[114,310,74,0.018349370087490623],[114,310,75,0.015904365473899573],[114,310,76,0.01361107804224261],[114,310,77,0.011531523355870337],[114,310,78,0.009721724206325277],[114,310,79,0.008229602944428201],[114,311,64,0.002787371385484721],[114,311,65,0.004319734114001693],[114,311,66,0.006078246180703093],[114,311,67,0.008012141689372717],[114,311,68,0.010119856654596074],[114,311,69,0.012419636000187488],[114,311,70,0.014902602495786217],[114,311,71,0.017537512174978693],[114,311,72,0.020276204151278815],[114,311,73,0.01971501489028985],[114,311,74,0.016952123199027957],[114,311,75,0.014281175008498733],[114,311,76,0.011772394116385474],[114,311,77,0.0094923653434132],[114,311,78,0.007501295975013719],[114,311,79,0.005850742533819396],[114,312,64,0.0024465732675773362],[114,312,65,0.004134692033985304],[114,312,66,0.006050657716063187],[114,312,67,0.008146549791822173],[114,312,68,0.010423984503066468],[114,312,69,0.012902876631365509],[114,312,70,0.015574240588940212],[114,312,71,0.018405303399531787],[114,312,72,0.021345291791983863],[114,312,73,0.018437642600933307],[114,312,74,0.015474414388791926],[114,312,75,0.012609353683896728],[114,312,76,0.009916794418567186],[114,312,77,0.007467234806225849],[114,312,78,0.005324426508682183],[114,312,79,0.003542957632980483],[114,313,64,0.0024222375830615524],[114,313,65,0.004252739382594267],[114,313,66,0.0063100941278561645],[114,313,67,0.008549468120283251],[114,313,68,0.010975474052723947],[114,313,69,0.013609376383240569],[114,313,70,0.016442023736512587],[114,313,71,0.019439284292532364],[114,313,72,0.02021627450945307],[114,313,73,0.017061644770020527],[114,313,74,0.01393390704946713],[114,313,75,0.010911251437361446],[114,313,76,0.008071396739561055],[114,313,77,0.005488017575975851],[114,313,78,0.0032276884430504004],[114,313,79,0.0013473475119318392],[114,314,64,0.0027210902877438286],[114,314,65,0.004678983159662919],[114,314,66,0.006860031596674389],[114,314,67,0.009222613664498253],[114,314,68,0.011774064971223014],[114,314,69,0.014536633973642174],[114,314,70,0.01750092562721448],[114,314,71,0.020631619894782318],[114,314,72,0.01888619455596977],[114,314,73,0.015601323096082597],[114,314,74,0.01234840073533389],[114,314,75,0.00920830501838681],[114,314,76,0.0062613576333632875],[114,314,77,0.0035836128916281696],[114,314,78,0.0012436861201291412],[114,314,79,-6.998751122345301E-4],[114,315,64,0.0033421236612516027],[114,315,65,0.005411327935155069],[114,315,66,0.007697337712784137],[114,315,67,0.010161754578332344],[114,315,68,0.012814288339424442],[114,315,69,0.01567777519395576],[114,315,70,0.018742483067876462],[114,315,71,0.02078113892080783],[114,315,72,0.017446312218391727],[114,315,73,0.014071076666347486],[114,315,74,0.010734552725572272],[114,315,75,0.007519542079871566],[114,315,76,0.004508155227868628],[114,315,77,0.0017779949554367878],[114,315,78,-6.01100227574895E-4],[114,315,79,-0.0025697496410013653],[114,316,64,0.004276804363890343],[114,316,65,0.006440787086345163],[114,316,66,0.008812682047491286],[114,316,67,0.011357223134697586],[114,316,68,0.014086091109838404],[114,316,69,0.01702230161436677],[114,316,70,0.02015568359383328],[114,316,71,0.019300841665139155],[114,316,72,0.01590898566962697],[114,316,73,0.012484010620243548],[114,316,74,0.009106295064121302],[114,316,75,0.005859799186161188],[114,316,76,0.0028276041123270475],[114,316,77,8.80241259169215E-5],[114,316,78,-0.0022887039940016033],[114,316,79,-0.004243151370377921],[114,317,64,0.005509709573877083],[114,317,65,0.0077522200353176765],[114,317,66,0.0101913671701643],[114,317,67,0.012794840739721364],[114,317,68,0.015575861899986639],[114,317,69,0.018557227847840644],[114,317,70,0.021012212898027918],[114,317,71,0.01769659385354211],[114,317,72,0.01428509876735054],[114,317,73,0.010850221508323444],[114,317,74,0.007472946449144454],[114,317,75,0.004237652874197845],[114,317,76,0.0012276011990502871],[114,317,77,-0.0014789935923548532],[114,317,78,-0.0038122969911467907],[114,317,79,-0.005713595276820748],[114,318,64,0.007019590224661058],[114,318,65,0.009325494656850937],[114,318,66,0.011814579438472894],[114,318,67,0.01445725449987642],[114,318,68,0.017267857791975285],[114,318,69,0.02026860723526954],[114,318,70,0.01929029708458619],[114,318,71,0.015978258677987772],[114,318,72,0.012582168322237129],[114,318,73,0.009174758585001571],[114,318,74,0.005837017960382997],[114,318,75,0.002653062501296073],[114,318,76,-2.9439896321742273E-4],[114,318,77,-0.00292800053874746],[114,318,78,-0.005179051540630753],[114,318,79,-0.0069902620785208605],[114,319,64,0.008780860650521879],[114,319,65,0.011137074335887334],[114,319,66,0.013661059216119502],[114,319,67,0.01632568517827577],[114,319,68,0.01914603216707991],[114,319,69,0.02058311094958072],[114,319,70,0.017431754332936374],[114,319,71,0.014151788987473143],[114,319,72,0.0108021088417385],[114,319,73,0.007455259839454722],[114,319,74,0.004191711162972488],[114,319,75,0.0010947231479972186],[114,319,76,-0.0017541814267146639],[114,319,77,-0.004279137136887813],[114,319,78,-0.006413242397366302],[114,319,79,-0.008101249356098726],[115,-64,64,-0.001221313975571496],[115,-64,65,-0.0013807683713638968],[115,-64,66,-0.001486062617776686],[115,-64,67,-0.0015468629541826372],[115,-64,68,-0.0015461582650719676],[115,-64,69,-0.0014532255776302857],[115,-64,70,-0.0012445449566139077],[115,-64,71,-9.038622876032678E-4],[115,-64,72,-4.2175953691103886E-4],[115,-64,73,2.0481443345291833E-4],[115,-64,74,9.730527417326522E-4],[115,-64,75,0.0018748391945482916],[115,-64,76,0.002897336864867074],[115,-64,77,0.004023616475910636],[115,-64,78,0.005233324428289496],[115,-64,79,0.0065033902123742375],[115,-63,64,-0.0011493677494890775],[115,-63,65,-0.0012684207207755806],[115,-63,66,-0.0013310660286847476],[115,-63,67,-0.0013457467446663517],[115,-63,68,-0.001295758628684389],[115,-63,69,-0.0011520230399358518],[115,-63,70,-8.927898745220856E-4],[115,-63,71,-5.036078272853279E-4],[115,-63,72,2.3165888294431517E-5],[115,-63,73,6.888901035881343E-4],[115,-63,74,0.001489198603365015],[115,-63,75,0.0024145933418996102],[115,-63,76,0.0034510718322147194],[115,-63,77,0.004580788480143716],[115,-63,78,0.005782749544765635],[115,-63,79,0.007033541321047036],[115,-62,64,-8.631883376421538E-4],[115,-62,65,-9.505803826708423E-4],[115,-62,66,-9.808816356341747E-4],[115,-62,67,-9.610185362375932E-4],[115,-62,68,-8.746711912169633E-4],[115,-62,69,-6.946520523517766E-4],[115,-62,70,-4.010656989739153E-4],[115,-62,71,1.879454548460101E-5],[115,-62,72,5.7097211479001E-4],[115,-62,73,0.0012554030699215876],[115,-62,74,0.0020665022721531334],[115,-62,75,0.0029937796998160075],[115,-62,76,0.004022486658594212],[115,-62,77,0.005134291548142882],[115,-62,78,0.006307984765140181],[115,-62,79,0.007520212245171222],[115,-61,64,-3.737210531600438E-4],[115,-61,65,-4.3792883773547726E-4],[115,-61,66,-4.459279878962486E-4],[115,-61,67,-4.0287806235404024E-4],[115,-61,68,-2.9289955670150705E-4],[115,-61,69,-9.088425326043853E-5],[115,-61,70,2.2116846307656269E-4],[115,-61,71,6.543103027288718E-4],[115,-61,72,0.0012131810976956517],[115,-61,73,0.0018965734628292917],[115,-61,74,0.0026980249512475085],[115,-61,75,0.0036064374745022497],[115,-61,76,0.004606723672951497],[115,-61,77,0.005680479840648776],[115,-61,78,0.0068066849326023065],[115,-61,79,0.007962425111017015],[115,-60,64,3.041818128503686E-4],[115,-60,65,2.5530428510262936E-4],[115,-60,66,2.6023345008600315E-4],[115,-60,67,3.157735580002478E-4],[115,-60,68,4.3732423068475033E-4],[115,-60,69,6.477811977899536E-4],[115,-60,70,9.632478268625475E-4],[115,-60,71,0.0013932321185227484],[115,-60,72,0.001941174017610613],[115,-60,73,0.002604998680319386],[115,-60,74,0.0033776955265530143],[115,-60,75,0.0042479228231747405],[115,-60,76,0.0052006374636525765],[115,-60,77,0.006217749533526801],[115,-60,78,0.007278801179722967],[115,-60,79,0.008361669235544017],[115,-59,64,0.0011528100432765427],[115,-59,65,0.0011124243387537088],[115,-59,66,0.0011220155017546514],[115,-59,67,0.0011804851063424852],[115,-59,68,0.001302722353294038],[115,-59,69,0.001509324580600782],[115,-59,70,0.0018145222774047275],[115,-59,71,0.0022263995097508643],[115,-59,72,0.0027473935780330137],[115,-59,73,0.0033748198117821457],[115,-59,74,0.004101421337772418],[115,-59,75,0.004915943578528076],[115,-59,76,0.005803733162649173],[115,-59,77,0.006747360856590136],[115,-59,78,0.007727268060200997],[115,-59,79,0.00872243634600103],[115,-58,64,0.002152852521315155],[115,-58,65,0.00211556262934527],[115,-58,66,0.0021231294147626605],[115,-58,67,0.0021766118458716194],[115,-58,68,0.002290356526639215],[115,-58,69,0.0024826110777733633],[115,-58,70,0.0027657692503830905],[115,-58,71,0.003146602969400219],[115,-58,72,0.0036267205490710885],[115,-58,73,0.004203049817101769],[115,-58,74,0.004868346016249548],[115,-58,75,0.005611724277773719],[115,-58,76,0.006419216389644625],[115,-58,77,0.007274351514403839],[115,-58,78,0.00815876044763694],[115,-58,79,0.009052802948686106],[115,-57,64,0.003284862121462918],[115,-57,65,0.0032471751078701552],[115,-57,66,0.0032481158114778083],[115,-57,67,0.003290877294149194],[115,-57,68,0.003389215869290415],[115,-57,69,0.003558994700060187],[115,-57,70,0.003810799147439017],[115,-57,71,0.004150172640688054],[115,-57,72,0.004578024656690231],[115,-57,73,0.0050910636143205],[115,-57,74,0.005682254599177998],[115,-57,75,0.006341301764195339],[115,-57,76,0.007055155184228539],[115,-57,77,0.007808541878357082],[115,-57,78,0.008584520652842802],[115,-57,79,0.009365060361032415],[115,-56,64,0.004527432748482005],[115,-56,65,0.004487750870986901],[115,-56,66,0.004479581302265732],[115,-56,67,0.004508135022805341],[115,-56,68,0.004586501523325141],[115,-56,69,0.00472812850207852],[115,-56,70,0.004941802635574687],[115,-56,71,0.005231885408651162],[115,-56,72,0.005598666936382798],[115,-56,73,0.00603874458582965],[115,-56,74,0.0065454263616821955],[115,-56,75,0.007109158954915293],[115,-56,76,0.007717980290537956],[115,-56,77,0.008357996350041825],[115,-56,78,0.009013881986747914],[115,-56,79,0.009669405398450327],[115,-55,64,0.005836932529638646],[115,-55,65,0.005792366415116938],[115,-55,66,0.005771555606611214],[115,-55,67,0.005781518631903983],[115,-55,68,0.00583458823992707],[115,-55,69,0.0059418250085617845],[115,-55,70,0.006110282798958024],[115,-55,71,0.006343237361124699],[115,-55,72,0.0066404807457897865],[115,-55,73,0.006998640504947413],[115,-55,74,0.007411523701244012],[115,-55,75,0.007870485686246086],[115,-55,76,0.008364823548910534],[115,-55,77,0.008882194078847803],[115,-55,78,0.009409056034754396],[115,-55,79,0.009931136457213432],[115,-54,64,0.007163941872623597],[115,-54,65,0.007109217319737361],[115,-54,66,0.007070096381481433],[115,-54,67,0.007055114186254971],[115,-54,68,0.007075754945261359],[115,-54,69,0.007140798476437708],[115,-54,70,0.007255713163590887],[115,-54,71,0.007422864384040065],[115,-54,72,0.007641740689763122],[115,-54,73,0.0079092053149205],[115,-54,74,0.008219773103910845],[115,-54,75,0.008565912898211497],[115,-54,76,0.008938375365096172],[115,-54,77,0.009326546197496349],[115,-54,78,0.009718824562301085],[115,-54,79,0.010103026624795714],[115,-53,64,0.008465440204547528],[115,-53,65,0.008393442346887452],[115,-53,66,0.008328745465776602],[115,-53,67,0.008281046361283403],[115,-53,68,0.008260888574260125],[115,-53,69,0.008274941118911302],[115,-53,70,0.008327298853516154],[115,-53,71,0.008419653262961],[115,-53,72,0.008551438891614131],[115,-53,73,0.008720006557817517],[115,-53,74,0.008920823543630935],[115,-53,75,0.00914770090060389],[115,-53,76,0.009393047959427869],[115,-53,77,0.009648154078933883],[115,-53,78,0.009903497618573103],[115,-53,79,0.01014908206879405],[115,-52,64,0.009705173601458233],[115,-52,65,0.009607448863274788],[115,-52,66,0.009508808056958517],[115,-52,67,0.009419707356873502],[115,-52,68,0.009349659216180011],[115,-52,69,0.009303442114386926],[115,-52,70,0.00928403849427986],[115,-52,71,0.009292747082196975],[115,-52,72,0.009329236150318164],[115,-52,73,0.009391626231595594],[115,-52,74,0.009476602610876213],[115,-52,75,0.009579557864300182],[115,-52,76,0.009694764666545801],[115,-52,77,0.009815579032546809],[115,-52,78,0.009934674107482852],[115,-52,79,0.010044304566718638],[115,-51,64,0.010854093261962617],[115,-51,65,0.010721300989673579],[115,-51,66,0.01057968622154781],[115,-51,67,0.010440031267913753],[115,-51,68,0.010310731306316316],[115,-51,69,0.010194932854872768],[115,-51,70,0.010094802349046342],[115,-51,71,0.010011556884654133],[115,-51,72,0.009945409680186475],[115,-51,73,0.00989554911331375],[115,-51,74,0.009860151818196272],[115,-51,75,0.009836430278070503],[115,-51,76,0.009820715293215931],[115,-51,77,0.009808573648465926],[115,-51,78,0.009794961247510888],[115,-51,79,0.009774411923994754],[115,-50,64,0.011890922278908932],[115,-50,65,0.011713235889447728],[115,-50,66,0.01151934010765413],[115,-50,67,0.011319895242032998],[115,-50,68,0.011122100107377401],[115,-50,69,0.010927755374420945],[115,-50,70,0.010738530898624296],[115,-50,71,0.010555890411959225],[115,-50,72,0.010380913951738116],[115,-50,73,0.010214159613820354],[115,-50,74,0.010055565313863871],[115,-50,75,0.009904391185034977],[115,-50,76,0.009759203181731723],[115,-50,77,0.009617898397132422],[115,-50,78,0.009477772538422883],[115,-50,79,0.009335629938112785],[115,-49,64,0.011398358178153186],[115,-49,65,0.011681061302574888],[115,-49,66,0.011985485120490136],[115,-49,67,0.012044237680909757],[115,-49,68,0.011769897315094624],[115,-49,69,0.011489499956992059],[115,-49,70,0.011204536522795695],[115,-49,71,0.01091703563351247],[115,-49,72,0.010629248580741024],[115,-49,73,0.010343381038785758],[115,-49,74,0.010061372435035507],[115,-49,75,0.009784723829516324],[115,-49,76,0.009514375088355643],[115,-49,77,0.009250632065372535],[115,-49,78,0.008993144431907666],[115,-49,79,0.008740934718172244],[115,-48,64,0.010629189499150943],[115,-48,65,0.010971212675324546],[115,-48,66,0.011340309151302231],[115,-48,67,0.011727379901674382],[115,-48,68,0.01212784284987979],[115,-48,69,0.01187360017476539],[115,-48,70,0.011491182705877807],[115,-48,71,0.011098554216762532],[115,-48,72,0.010699352153266384],[115,-48,73,0.010297611621025127],[115,-48,74,0.009897415184616067],[115,-48,75,0.009502600433495543],[115,-48,76,0.009116526329480793],[115,-48,77,0.008741899268641289],[115,-48,78,0.008380659703568886],[115,-48,79,0.008033930081084438],[115,-47,64,0.010037394855230584],[115,-47,65,0.010442302278383478],[115,-47,66,0.010877967854218991],[115,-47,67,0.011336742433642976],[115,-47,68,0.011815534602260177],[115,-47,69,0.012079580489428716],[115,-47,70,0.011602956759411776],[115,-47,71,0.011110085666755002],[115,-47,72,0.010606107306208102],[115,-47,73,0.010096965126841911],[115,-47,74,0.009588923152990932],[115,-47,75,0.009088151192553314],[115,-47,76,0.008600379280994247],[115,-47,77,0.008130622514067496],[115,-47,78,0.007682977320522802],[115,-47,79,0.007260490119044052],[115,-46,64,0.009634213750205617],[115,-46,65,0.010102812302707516],[115,-46,66,0.010603886108140516],[115,-46,67,0.011131646537395611],[115,-46,68,0.011684630976990755],[115,-46,69,0.012112999183975822],[115,-46,70,0.011549528154174147],[115,-46,71,0.01096550646520295],[115,-46,72,0.010367604828429348],[115,-46,73,0.009763663045325896],[115,-46,74,0.009162075326762695],[115,-46,75,0.00857125438325289],[115,-46,76,0.007999175762053943],[115,-46,77,0.0074530037967314],[115,-46,78,0.006938800416728019],[115,-46,79,0.006461317939955725],[115,-45,64,0.0094229508362703],[115,-45,65,0.009953593147087512],[115,-45,66,0.010516270341860576],[115,-45,67,0.011107433950222614],[115,-45,68,0.01172740062543965],[115,-45,69,0.01198480135825635],[115,-45,70,0.011345157824928348],[115,-45,71,0.010682406047168216],[115,-45,72,0.010004696467492155],[115,-45,73,0.009321673950783867],[115,-45,74,0.008643735088071498],[115,-45,75,0.007981375241875513],[115,-45,76,0.00734462702258206],[115,-45,77,0.0067425917590469946],[115,-45,78,0.0061830653913742045],[115,-45,79,0.005672260071014505],[115,-44,64,0.00939975382245915],[115,-44,65,0.00998863500842089],[115,-44,66,0.010606864110115004],[115,-44,67,0.011253472812198531],[115,-44,68,0.011930714420442214],[115,-44,69,0.011710667146968652],[115,-44,70,0.011008100557504112],[115,-44,71,0.010281553433078482],[115,-44,72,0.009540535700417201],[115,-44,73,0.008796337900906517],[115,-44,74,0.008061167115660363],[115,-44,75,0.007347383439713409],[115,-44,76,0.006666838887919832],[115,-44,77,0.006030320472479946],[115,-44,78,0.0054470990392455005],[115,-44,79,0.004924585288715158],[115,-43,64,0.009554391947219222],[115,-43,65,0.010195840894113678],[115,-43,66,0.010861705995012683],[115,-43,67,0.011553891445234684],[115,-43,68,0.012029843176045558],[115,-43,69,0.011310353376308445],[115,-43,70,0.01055999883246404],[115,-43,71,0.009786353072920773],[115,-43,72,0.00900010523167528],[115,-43,73,0.00821397486271365],[115,-43,74,0.0074417354292518004],[115,-43,75,0.0066973486644510815],[115,-43,76,0.005994211853942031],[115,-43,77,0.005344519931491815],[115,-43,78,0.004758744109106626],[115,-43,79,0.004245228583577446],[115,-42,64,0.0098710372932306],[115,-42,65,0.010557803300051708],[115,-42,66,0.011261892015116636],[115,-42,67,0.011988317674910275],[115,-42,68,0.011559376348906976],[115,-42,69,0.010807026802711927],[115,-42,70,0.0100252664260308],[115,-42,71,0.00922228838520749],[115,-42,72,0.008409729906919792],[115,-42,73,0.007601476083445249],[115,-42,74,0.006812581744058598],[115,-42,75,0.006058313742910249],[115,-42,76,0.0053533158525539085],[115,-42,77,0.004710898277527192],[115,-42,78,0.004142453615828611],[115,-42,79,0.003657000899740026],[115,-41,64,0.010329051281294886],[115,-41,65,0.011052586858283904],[115,-41,66,0.011784344786410123],[115,-41,67,0.011735724070920512],[115,-41,68,0.0109961519571205],[115,-41,69,0.010226587011538687],[115,-41,70,0.009430460002091],[115,-41,71,0.008616351405261135],[115,-41,72,0.007796573661857414],[115,-41,73,0.006985877253576804],[115,-41,74,0.0062002832316235944],[115,-41,75,0.005456044669452241],[115,-41,76,0.0047687393364880355],[115,-41,77,0.004152495700197389],[115,-41,78,0.0036193541620475056],[115,-41,79,0.0031787652208105253],[115,-40,64,0.010903778730062789],[115,-40,65,0.011654519310579594],[115,-40,66,0.011836085368885342],[115,-40,67,0.011112837648630905],[115,-40,68,0.010367779270999399],[115,-40,69,0.009596976995601266],[115,-40,70,0.008803636869436577],[115,-40,71,0.00799645689598066],[115,-40,72,0.0071881190625886215],[115,-40,73,0.0063939122444938365],[115,-40,74,0.00563048871712124],[115,-40,75,0.00491475683706484],[115,-40,76,0.004262912264109632],[115,-40,77,0.003689609893972927],[115,-40,78,0.0032072784560246226],[115,-40,79,0.002825579504335055],[115,-39,64,0.011567351909111833],[115,-39,65,0.011878980499039465],[115,-39,66,0.011159910850830318],[115,-39,67,0.010439540572302838],[115,-39,68,0.009703670178500488],[115,-39,69,0.008947479383666097],[115,-39,70,0.008173697026454116],[115,-39,71,0.007390839220036721],[115,-39,72,0.006611627937230697],[115,-39,73,0.005851546144557047],[115,-39,74,0.005127532282244912],[115,-39,75,0.004456816705083493],[115,-39,76,0.0038559024999893564],[115,-39,77,0.003339692882123626],[115,-39,78,0.0029207671444794444],[115,-39,79,0.0026088068983730088],[115,-38,64,0.011904658492251263],[115,-38,65,0.011164030909702792],[115,-38,66,0.010450863664011153],[115,-38,67,0.00974659668782454],[115,-38,68,0.009034283107353441],[115,-38,69,0.008307996247877883],[115,-38,70,0.007569707571676361],[115,-38,71,0.006827430225841442],[115,-38,72,0.0060935815491014594],[115,-38,73,0.005383486264756929],[115,-38,74,0.004714023187269264],[115,-38,75,0.004102418079020788],[115,-38,76,0.0035651850857083946],[115,-38,77,0.003117218955720622],[115,-38,78,0.002771040012858996],[115,-38,79,0.0025361936052770155],[115,-37,64,0.011173573270151687],[115,-37,65,0.010436207502169855],[115,-37,66,0.009740774351761782],[115,-37,67,0.009065411148436963],[115,-37,68,0.008390349357861166],[115,-37,69,0.007708310387035951],[115,-37,70,0.007020207523511225],[115,-37,71,0.006333216361192377],[115,-37,72,0.005659098719734421],[115,-37,73,0.005012669739432288],[115,-37,74,0.004410410976346571],[115,-37,75,0.003869232124621186],[115,-37,76,0.0034053837782290447],[115,-37,77,0.0030335234147300673],[115,-37,78,0.002765936541262636],[115,-37,79,0.0026119146903332497],[115,-36,64,0.010451155838661635],[115,-36,65,0.009727933741273589],[115,-36,66,0.009061615886868523],[115,-36,67,0.008427210849703805],[115,-36,68,0.007802079601672839],[115,-36,69,0.007177325960258626],[115,-36,70,0.006552491066539732],[115,-36,71,0.005933573198675331],[115,-36,72,0.005331330275982582],[115,-36,73,0.004759726309070844],[115,-36,74,0.004234524587020627],[115,-36,75,0.003772030190461364],[115,-36,76,0.003387984200620599],[115,-36,77,0.003096611740993968],[115,-36,78,0.00290982574245219],[115,-36,79,0.0028365880667889465],[115,-35,64,0.009769758800398723],[115,-35,65,0.009071203174035933],[115,-35,66,0.008444644515940854],[115,-35,67,0.007862203375087539],[115,-35,68,0.007298348293084823],[115,-35,69,0.006742286333334596],[115,-35,70,0.006191867225554501],[115,-35,71,0.0056515755362560975],[115,-35,72,0.00513082816997997],[115,-35,73,0.004642414841550732],[115,-35,74,0.004201084248845147],[115,-35,75,0.0038222784716948834],[115,-35,76,0.003521017902481204],[115,-35,77,0.0033109387797022392],[115,-35,78,0.0032034851495202073],[115,-35,79,0.0032072568244383742],[115,-34,64,0.00916068842503388],[115,-34,65,0.008496687303928514],[115,-34,66,0.007919517186407102],[115,-34,67,0.0073987121107541185],[115,-34,68,0.006905853741713898],[115,-34,69,0.006427966998492949],[115,-34,70,0.005960893962505307],[115,-34,71,0.0055072812255043966],[115,-34,72,0.005074887604266946],[115,-34,73,0.004675032125811365],[115,-34,74,0.004321184927357881],[115,-34,75,0.004027703512364457],[115,-34,76,0.003808716585497643],[115,-34,77,0.0036771574572523158],[115,-34,78,0.0036439487652871567],[115,-34,79,0.003717340006760331],[115,-33,64,0.008653288636210683],[115,-33,65,0.008032818021813399],[115,-33,66,0.007513383165039345],[115,-33,67,0.00706228520561903],[115,-33,68,0.006648251609245105],[115,-33,69,0.0062558414379634605],[115,-33,70,0.005878584696269886],[115,-33,71,0.005516986879118315],[115,-33,72,0.0051768604874935665],[115,-33,73,0.004867792458405183],[115,-33,74,0.004601750049027899],[115,-33,75,0.004391827515610107],[115,-33,76,0.004251135713762539],[115,-33,77,0.004191836519681571],[115,-33,78,0.00422432373384952],[115,-33,79,0.004356551882078632],[115,-32,64,0.008273997746263032],[115,-32,65,0.007704842192855821],[115,-32,66,0.007249947489736839],[115,-32,67,0.006874776082417558],[115,-32,68,0.00654525961891665],[115,-32,69,0.006243217823079385],[115,-32,70,0.005959585261208692],[115,-32,71,0.005692453619384065],[115,-32,72,0.00544543854931886],[115,-32,73,0.0052261765391966135],[115,-32,74,0.005044954230670962],[115,-32,75,0.004913472410585965],[115,-32,76,0.004843746699208063],[115,-32,77,0.0048471467376156405],[115,-32,78,0.004933575447361005],[115,-32,79,0.005110789697790527],[115,-31,64,0.008045375574906758],[115,-31,65,0.007533846047167996],[115,-31,66,0.007148503942233067],[115,-31,67,0.006853393248264436],[115,-31,68,0.006611731305003166],[115,-31,69,0.006402344474338248],[115,-31,70,0.006213319348337264],[115,-31,71,0.006040101050461779],[115,-31,72,0.005883904456972617],[115,-31,73,0.0057502481981891295],[115,-31,74,0.00564761373376212],[115,-31,75,0.005586231612501878],[115,-31,76,0.0055769968303487245],[115,-31,77,0.005630514991421956],[115,-31,78,0.005756280758603241],[115,-31,79,0.00596198985386402],[115,-30,64,0.007985098652276134],[115,-30,65,0.007535747084170438],[115,-30,66,0.00722293528898746],[115,-30,67,0.007009717209313457],[115,-30,68,0.006856696681349168],[115,-30,69,0.0067394820543348445],[115,-30,70,0.0066431005132120205],[115,-30,71,0.006560167670484607],[115,-30,72,0.006489349300986855],[115,-30,73,0.006433937491617414],[115,-30,74,0.006400543370599056],[115,-30,75,0.006397908408452336],[115,-30,76,0.006435836097964357],[115,-30,77,0.006524245624490601],[115,-30,78,0.006672348932673288],[115,-30,79,0.006887952383008802],[115,-29,64,0.00810492128509946],[115,-29,65,0.0077202512771846],[115,-29,66,0.0074806786113266605],[115,-29,67,0.007348682364288911],[115,-29,68,0.007282367773545517],[115,-29,69,0.007253940525379177],[115,-29,70,0.007245208887842848],[115,-29,71,0.0072458359849663576],[115,-29,72,0.007251854854409647],[115,-29,73,0.007264288732611517],[115,-29,74,0.007287878605954332],[115,-29,75,0.007329919907149379],[115,-29,76,0.00739921006495624],[115,-29,77,0.007505108433831197],[115,-29,78,0.0076567099397172045],[115,-29,79,0.007862133580695542],[115,-28,64,0.008409600357996103],[115,-28,65,0.00808977345614426],[115,-28,66,0.007921653634463423],[115,-28,67,0.007867521836393556],[115,-28,68,0.007883107039190101],[115,-28,69,0.00793707897746974],[115,-28,70,0.00800793080067982],[115,-28,71,0.0080823206414932],[115,-28,72,0.00815363905894252],[115,-28,73,0.008220672060477897],[115,-28,74,0.008286361625247983],[115,-28,75,0.008356665505878234],[115,-28,76,0.008439517929903271],[115,-28,77,0.008543892655991724],[115,-28,78,0.008678969665572906],[115,-28,79,0.008853406589018578],[115,-27,64,0.00889578185036854],[115,-27,65,0.008638318853086935],[115,-27,66,0.008537152068903599],[115,-27,67,0.008554673302965568],[115,-27,68,0.008644356795400383],[115,-27,69,0.008771266520683593],[115,-27,70,0.008910559589548974],[115,-27,71,0.00904591797770778],[115,-27,72,0.009168163253476514],[115,-27,73,0.009273957203530183],[115,-27,74,0.00936459017895238],[115,-27,75,0.009444858853518548],[115,-27,76,0.009522034945398897],[115,-27,77,0.009604926303230206],[115,-27,78,0.009703031598997668],[115,-27,79,0.009825789704798828],[115,-26,64,0.009550847173723643],[115,-26,65,0.009350323917835333],[115,-26,66,0.009308686097534751],[115,-26,67,0.009388643997846752],[115,-26,68,0.009541527882938137],[115,-26,69,0.009728802539562407],[115,-26,70,0.009922355987929728],[115,-26,71,0.010103015460776047],[115,-26,72,0.010259199736036105],[115,-26,73,0.010385648154032428],[115,-26,74,0.010482228063497443],[115,-26,75,0.01055282232490112],[115,-26,76,0.010604298373633796],[115,-26,77,0.010645560210462906],[115,-26,78,0.010686684543391368],[115,-26,79,0.010738142154836709],[115,-25,64,0.010351621758972343],[115,-25,65,0.010199413292477366],[115,-25,66,0.010206803372201666],[115,-25,67,0.010336891377575987],[115,-25,68,0.010538953425065384],[115,-25,69,0.010770951703966195],[115,-25,70,0.011001672553446066],[115,-25,71,0.011209313072542375],[115,-25,72,0.011380156514090682],[115,-25,73,0.011507316178354344],[115,-25,74,0.011589549500914667],[115,-25,75,0.011630143926461027],[115,-25,76,0.011635876047393951],[115,-25,77,0.01161604536434759],[115,-25,78,0.011581583895744228],[115,-25,79,0.011544242726404677],[115,-24,64,0.011260672173204115],[115,-24,65,0.011147225191973998],[115,-24,66,0.011192265542770419],[115,-24,67,0.011359299310934096],[115,-24,68,0.011595678257613462],[115,-24,69,0.01185605741250055],[115,-24,70,0.012106371540637349],[115,-24,71,0.012322477693029766],[115,-24,72,0.01225840935552159],[115,-24,73,0.012150564478469534],[115,-24,74,0.012101208495364448],[115,-24,75,0.012107338415140504],[115,-24,76,0.012161977678305905],[115,-24,77,0.012255168684910594],[115,-24,78,0.012354275961812919],[115,-24,79,0.01221328935620281],[115,-23,64,0.012233762929185758],[115,-23,65,0.01215201029777107],[115,-23,66,0.012225702967647719],[115,-23,67,0.012352963829475538],[115,-23,68,0.012101234535294807],[115,-23,69,0.011831216865881662],[115,-23,70,0.011579536554628055],[115,-23,71,0.011372389565734428],[115,-23,72,0.01122685374330232],[115,-23,73,0.0111521455676191],[115,-23,74,0.011150820357271812],[115,-23,75,0.011219914337141864],[115,-23,76,0.01135202708339203],[115,-23,77,0.01153634295678685],[115,-23,78,0.011759590244440538],[115,-23,79,0.01200693684655073],[115,-22,64,0.011568812352539409],[115,-22,65,0.011633046410561917],[115,-22,66,0.01154531717675922],[115,-22,67,0.011340899243206186],[115,-22,68,0.011075407253446974],[115,-22,69,0.010799850958262809],[115,-22,70,0.01055308825389896],[115,-22,71,0.010363080239528972],[115,-22,72,0.01024819622566226],[115,-22,73,0.010218470465465698],[115,-22,74,0.010276808953822686],[115,-22,75,0.010420144709852473],[115,-22,76,0.010640540039138504],[115,-22,77,0.010926234361710956],[115,-22,78,0.011262636290381364],[115,-22,79,0.011633258750649857],[115,-21,64,0.010644816233544928],[115,-21,65,0.010682319325351476],[115,-21,66,0.010574708437981212],[115,-21,67,0.010356315630794756],[115,-21,68,0.010083598627553753],[115,-21,69,0.009809771738033785],[115,-21,70,0.009575572471835788],[115,-21,71,0.009410454136140972],[115,-21,72,0.009333873835196252],[115,-21,73,0.009356539421013456],[115,-21,74,0.009481613752414145],[115,-21,75,0.009705874678782004],[115,-21,76,0.010020829233698661],[115,-21,77,0.010413780601809586],[115,-21,78,0.010868846509418566],[115,-21,79,0.011367927784895131],[115,-20,64,0.009773536751819224],[115,-20,65,0.00978354085872491],[115,-20,66,0.009656962544484327],[115,-20,67,0.00942691354100268],[115,-20,68,0.009150171782542606],[115,-20,69,0.008881660661188768],[115,-20,70,0.008663631942817369],[115,-20,71,0.008526779120564303],[115,-20,72,0.00849149109311761],[115,-20,73,0.008569073136726698],[115,-20,74,0.008762933554711198],[115,-20,75,0.009069734433684497],[115,-20,76,0.009480504990620912],[115,-20,77,0.009981716059206348],[115,-20,78,0.010556314337400232],[115,-20,79,0.011184715100411984],[115,-19,64,0.008991032512257593],[115,-19,65,0.008970012795568886],[115,-19,66,0.00882232425456092],[115,-19,67,0.008579562077221946],[115,-19,68,0.008298259774777187],[115,-19,69,0.008034520351187202],[115,-19,70,0.007831747175384278],[115,-19,71,0.0077216550405667045],[115,-19,72,0.0077254657116743826],[115,-19,73,0.007855080701437759],[115,-19,74,0.008114229707042762],[115,-19,75,0.008499593167968056],[115,-19,76,0.009001897443355743],[115,-19,77,0.00960698115445125],[115,-19,78,0.010296831294151692],[115,-19,79,0.011050587771329832],[115,-18,64,0.008334646714079437],[115,-18,65,0.008276110137774687],[115,-18,66,0.008101786733634344],[115,-18,67,0.007841455336373317],[115,-18,68,0.007550822489158152],[115,-18,69,0.007286629179328418],[115,-18,70,0.007093088833306576],[115,-18,71,0.00700276708627394],[115,-18,72,0.007037689194387262],[115,-18,73,0.0072104366726825275],[115,-18,74,0.007525231667113453],[115,-18,75,0.007979007576612303],[115,-18,76,0.008562464457492132],[115,-18,77,0.009261107768200435],[115,-18,78,0.010056269047554911],[115,-18,79,0.010926107164156163],[115,-17,64,0.007827175843041408],[115,-17,65,0.007722346261227353],[115,-17,66,0.007513267075838349],[115,-17,67,0.007227617966537481],[115,-17,68,0.006919696128494352],[115,-17,69,0.006646333578070986],[115,-17,70,0.0064522280166528275],[115,-17,71,0.006370658623367292],[115,-17,72,0.006424471273599824],[115,-17,73,0.006627067366626473],[115,-17,74,0.006983394879076287],[115,-17,75,0.007490940242343488],[115,-17,76,0.008140719632051608],[115,-17,77,0.008918268256721843],[115,-17,78,0.009804626241331198],[115,-17,79,0.010777319719735811],[115,-16,64,0.007429355173681016],[115,-16,65,0.0072708036205457105],[115,-16,66,0.007020593056725294],[115,-16,67,0.006704075244166102],[115,-16,68,0.006373552276534944],[115,-16,69,0.006085349374035233],[115,-16,70,0.005884255254595421],[115,-16,71,0.005804045988999453],[115,-16,72,0.005868317797776237],[115,-16,73,0.006091339941953751],[115,-16,74,0.006478926459162764],[115,-16,75,0.007029325447343324],[115,-16,76,0.0077341245571596225],[115,-16,77,0.008579171321910103],[115,-16,78,0.009545506930922406],[115,-16,79,0.010610312039714832],[115,-15,64,0.007097288192120827],[115,-15,65,0.006879680305508057],[115,-15,66,0.006584455086634667],[115,-15,67,0.0062344633354482325],[115,-15,68,0.005879429879626888],[115,-15,69,0.005574528080935385],[115,-15,70,0.005364173300932916],[115,-15,71,0.005282333322943295],[115,-15,72,0.005353183998971697],[115,-15,73,0.005591803125886571],[115,-15,74,0.006004901456977699],[115,-15,75,0.006591589671243184],[115,-15,76,0.007344180046557764],[115,-15,77,0.008249021515251425],[115,-15,78,0.009287366722575893],[115,-15,79,0.010436269660948747],[115,-14,64,0.006798734128835115],[115,-14,65,0.006518617378638958],[115,-14,66,0.006176574999827456],[115,-14,67,0.005792832336930747],[115,-14,68,0.005413970580051074],[115,-14,69,0.005093339903059642],[115,-14,70,0.004874469379754036],[115,-14,71,0.004791148524270267],[115,-14,72,0.004867886251918065],[115,-14,73,0.005120427396389655],[115,-14,74,0.005556325858302482],[115,-14,75,0.0061755733386408395],[115,-14,76,0.006971282496295116],[115,-14,77,0.007930423262868969],[115,-14,78,0.009034610951548625],[115,-14,79,0.010260944711341974],[115,-13,64,0.006511125186604803],[115,-13,65,0.0061667349141673955],[115,-13,66,0.005777791954942763],[115,-13,67,0.005361813944968133],[115,-13,68,0.004961700233544652],[115,-13,69,0.004628301267852818],[115,-13,70,0.004403720223162471],[115,-13,71,0.004321155870829246],[115,-13,72,0.004405150256716899],[115,-13,73,0.004671913994062035],[115,-13,74,0.005129728424066428],[115,-13,75,0.005779423736184498],[115,-13,76,0.006614931985275861],[115,-13,77,0.007623913796124053],[115,-13,78,0.008788457408927045],[115,-13,79,0.010085848593837458],[115,-12,64,0.006219752241460646],[115,-12,65,0.005810834068722957],[115,-12,66,0.0053763100910583375],[115,-12,67,0.004930944668577481],[115,-12,68,0.004513457519847333],[115,-12,69,0.004171538380452432],[115,-12,70,0.003945319198833846],[115,-12,71,0.0038669738293206288],[115,-12,72,0.003960744561015705],[115,-12,73,0.004243066594020892],[115,-12,74,0.004722789900088962],[115,-12,75,0.005401497702121679],[115,-12,76,0.006273920610312015],[115,-12,77,0.007328445264066768],[115,-12,78,0.00854771615012107],[115,-12,79,0.009909329100425647],[115,-11,64,0.005916119355218154],[115,-11,65,0.005443765411649314],[115,-11,66,0.004966108075289056],[115,-11,67,0.004495144652588466],[115,-11,68,0.004064969663919985],[115,-11,69,0.0037194867828047877],[115,-11,70,0.003496325485989811],[115,-11,71,0.003426198000211156],[115,-11,72,0.0035326993614984425],[115,-11,73,0.0038322255844189575],[115,-11,74,0.004334009564252852],[115,-11,75,0.00504027409051436],[115,-11,76,0.0059465011112823105],[115,-11,77,0.007041816156683671],[115,-11,78,0.008309486608893935],[115,-11,79,0.009727532297495711],[115,-10,64,0.0055964680514740215],[115,-10,65,0.0050629643513607075],[115,-10,66,0.004545511272965611],[115,-10,67,0.004053352750688213],[115,-10,68,0.003615575826367813],[115,-10,69,0.0032717273989514082],[115,-10,70,0.0030564357049647707],[115,-10,71,0.0029985295254481336],[115,-10,72,0.0031206108350985673],[115,-10,73,0.0034387651259411133],[115,-10,74,0.003962409213643735],[115,-10,75,0.00469427604842802],[115,-10,76,0.005630535771617538],[115,-10,77,0.006761051985704048],[115,-10,78,0.008069771943022918],[115,-10,79,0.009535249108381006],[115,-9,64,0.005260472882806646],[115,-9,65,0.004669155066629535],[115,-9,66,0.004115927832050752],[115,-9,67,0.0036073190280441845],[115,-9,68,0.0031670992320669187],[115,-9,69,0.0028299600192736333],[115,-9,70,0.002627078827511855],[115,-9,71,0.002585009649685167],[115,-9,72,0.0027250315441166915],[115,-9,73,0.0030626533821400594],[115,-9,74,0.003607274822883463],[115,-9,75,0.00436200317864578],[115,-9,76,0.00532362551263226],[115,-9,77,0.006482734996886798],[115,-9,78,0.007824010254953022],[115,-9,79,0.009326646124117243],[115,-8,64,0.004910110351492659],[115,-8,65,0.004265224884221789],[115,-8,66,0.0036807504958267616],[115,-8,67,0.003160556377047172],[115,-8,68,0.0027228695826456034],[115,-8,69,0.002397115616776447],[115,-8,70,0.0022106355895319947],[115,-8,71,0.0021873614651014292],[115,-8,72,0.002346947734429964],[115,-8,73,0.002704076512350671],[115,-8,74,0.0032679362255291127],[115,-8,75,0.004041873692606774],[115,-8,76,0.005023219037644969],[115,-8,77,0.006203282525368497],[115,-8,78,0.007567522064989511],[115,-8,79,0.009095879801863964],[115,-7,64,0.004548703735362593],[115,-7,65,0.003855271533000305],[115,-7,66,0.00324442643823906],[115,-7,67,0.0027174533937155587],[115,-7,68,0.002286897737876383],[115,-7,69,0.001976609294711535],[115,-7,70,0.00180978399217196],[115,-7,71,0.0018074401834386356],[115,-7,72,0.001987344600237983],[115,-7,73,0.002363127205720786],[115,-7,74,0.0029435852821505064],[115,-7,75,0.003732176688110677],[115,-7,76,0.004726701823854597],[115,-7,77,0.005919173455017063],[115,-7,78,0.007295873167634255],[115,-7,79,0.008837592864859292],[115,-6,64,0.004180146810480252],[115,-6,65,0.0034438261455592193],[115,-6,66,0.002811697850776392],[115,-6,67,0.0022825510827588543],[115,-6,68,0.0018632050497098375],[115,-6,69,0.0015717360337632307],[115,-6,70,0.0014269728083324087],[115,-6,71,0.0014467935641001455],[115,-6,72,0.0016468608202724604],[115,-6,73,0.002039558705117716],[115,-6,74,0.0026331331006357733],[115,-6,75,0.003431034713614438],[115,-6,76,0.004431464707011652],[115,-6,77,0.0056271221049746635],[115,-6,78,0.007005151775530165],[115,-6,79,0.008547291400878902],[115,-5,64,0.0038083098490337215],[115,-5,65,0.0030352552675934207],[115,-5,66,0.002387016394471647],[115,-5,67,0.0018599863324334017],[115,-5,68,0.0014553100870572978],[115,-5,69,0.0011852117353528659],[115,-5,70,0.001064025306599016],[115,-5,71,0.0011063343815124413],[115,-5,72,0.0013255338770465062],[115,-5,73,0.001732605421808206],[115,-5,74,0.0023351069655158084],[115,-5,75,0.0031363768054537048],[115,-5,76,0.004134951756536413],[115,-5,77,0.005324198742944564],[115,-5,78,0.006692158652175449],[115,-5,79,0.00822160087078571],[115,-4,64,0.003436631600035918],[115,-4,65,0.002633345468467426],[115,-4,66,0.001974134961549461],[115,-4,67,0.0014531054223178254],[115,-4,68,0.001065875795894659],[115,-4,69,8.18862342016949E-4],[115,-4,70,7.218756604594951E-4],[115,-4,71,7.861270358531579E-4],[115,-4,72,0.0010226378504322217],[115,-4,73,0.0014408713743171676],[115,-4,74,0.0020475877127156213],[115,-4,75,0.0028459222057970355],[115,-4,76,0.0038346870973656436],[115,-4,77,0.0050078958165116535],[115,-4,78,0.006354508756127092],[115,-4,79,0.007858398987713582],[115,-3,64,0.0030679012278902406],[115,-3,65,0.002241074419635419],[115,-3,66,0.0015758804643445441],[115,-3,67,0.0010642510940702943],[115,-3,68,6.965203941107752E-4],[115,-3,69,4.734640528599307E-4],[115,-3,70,4.004407243279968E-4],[115,-3,71,4.8529059606046367E-4],[115,-3,72,7.366155274909548E-4],[115,-3,73,0.001162287796177218],[115,-3,74,0.0017681883531989202],[115,-3,75,0.002557174987345278],[115,-3,76,0.0035282802999564043],[115,-3,77,0.0046761389021704545],[115,-3,78,0.005990642767923259],[115,-3,79,0.00745682321364123],[115,-2,64,0.0027042343853070842],[115,-2,65,0.0018605725164629596],[115,-2,66,0.001194111580260978],[115,-2,67,6.947269231518596E-4],[115,-2,68,3.477955000232491E-4],[115,-2,69,1.4873783831607446E-4],[115,-2,70,9.86300262592165E-5],[115,-2,71,2.0202071007675067E-4],[115,-2,72,4.651067898617124E-4],[115,-2,73,8.941413457841284E-4],[115,-2,74,0.001494074802511842],[115,-2,75,0.0022674298254628973],[115,-2,76,0.003213409932032956],[115,-2,77,0.004327241298052403],[115,-2,78,0.005599746748523405],[115,-2,79,0.007017150446524292],[115,-1,64,0.0023472477280575364],[115,-1,65,0.0014932792592754005],[115,-1,66,8.298655265165994E-4],[115,-1,67,3.449428743550958E-4],[115,-1,68,1.9335133798908016E-5],[115,-1,69,-1.5649840966558084E-4],[115,-1,70,-1.85503052878728E-4],[115,-1,71,-6.62670781899168E-5],[115,-1,72,2.0507532592458003E-4],[115,-1,73,6.3317441564872E-4],[115,-1,74,0.0012220296122880023],[115,-1,75,0.001973789169329119],[115,-1,76,0.002887784845360828],[115,-1,77,0.003959801131938559],[115,-1,78,0.005181578086876407],[115,-1,79,0.006540546340805105],[115,0,64,0.0019984362351856554],[115,0,65,0.001140298676733881],[115,0,66,4.83698012955134E-4],[115,0,67,1.4746001665852954E-5],[115,0,68,-2.8982069173093554E-4],[115,0,69,-4.440166819607021E-4],[115,0,70,-4.5446587581329367E-4],[115,0,71,-3.2267000546004875E-4],[115,0,72,-4.696423486412095E-5],[115,0,73,3.7575907631803824E-4],[115,0,74,9.485596233484763E-4],[115,0,75,0.0016731920705482634],[115,0,76,0.002549082758570829],[115,0,77,0.0035725398223333464],[115,0,78,0.004736195836447286],[115,0,79,0.006028681620041597],[115,1,64,0.0016597594202265393],[115,1,65,8.029589083452805E-4],[115,1,66,1.562206850774013E-4],[115,1,67,-2.960600515513416E-4],[115,1,68,-5.807246736808016E-4],[115,1,69,-7.157019396816652E-4],[115,1,70,-7.108846153111775E-4],[115,1,71,-5.704047444582775E-4],[115,1,72,-2.946169647248148E-4],[115,1,73,1.1814632426211959E-4],[115,1,74,6.700491691057545E-4],[115,1,75,0.001362456357267999],[115,1,76,0.002194867991843486],[115,1,77,0.0031640840313586806],[115,1,78,0.0042635979817083735],[115,1,79,0.0054832184449693675],[115,2,64,0.0013344415499685273],[115,2,65,4.8357896451725526E-4],[115,2,66,-1.51162505427951E-4],[115,2,67,-5.870064329915084E-4],[115,2,68,-8.538436497056097E-4],[115,2,69,-9.729123892439699E-4],[115,2,70,-9.569169358573123E-4],[115,2,71,-8.122892272880262E-4],[115,2,72,-5.411771105043479E-4],[115,2,73,-1.4321010786161247E-4],[115,2,74,3.8295857758020965E-4],[115,2,75,0.0010383345774433372],[115,2,76,0.0018224896459046673],[115,2,77,0.0027326934706577146],[115,2,78,0.0037632692671700444],[115,2,79,0.004905171940986273],[115,3,64,0.0010279705024723214],[115,3,65,1.8643763504573571E-4],[115,3,66,-4.3531735330271245E-4],[115,3,67,-8.560534823727115E-4],[115,3,68,-0.0011081918143758906],[115,3,69,-0.0012156648163372276],[115,3,70,-0.0011935077370001975],[115,3,71,-0.001050090357534226],[115,3,72,-7.890910751541468E-4],[115,3,73,-4.1125570724953765E-4],[115,3,74,8.406028421526895E-5],[115,3,75,6.975669487048894E-4],[115,3,76,0.0014289326878117693],[115,3,77,0.0022758945951809866],[115,3,78,0.00323358563079803],[115,3,79,0.004294077499774074],[115,4,64,7.493263118694543E-4],[115,4,65,-8.103363298691756E-5],[115,4,66,-6.902253233546389E-4],[115,4,67,-0.0010984790329407004],[115,4,68,-0.0013402703930755116],[115,4,69,-0.0014416418972223858],[115,4,70,-0.0014194856017575679],[115,4,71,-0.001283734433384788],[115,4,72,-0.0010393083115429968],[115,4,73,-6.878532312006131E-4],[115,4,74,-2.292719859606257E-4],[115,4,75,3.3695430350876227E-4],[115,4,76,0.0010106542086224751],[115,4,77,0.0017900634367348845],[115,4,78,0.002671131110956148],[115,4,79,0.0036470338450696935],[115,5,64,5.124389606479556E-4],[115,5,65,-3.0683451085725425E-4],[115,5,66,-9.056140229511242E-4],[115,5,67,-0.001305561244177188],[115,5,68,-0.0015428143244535359],[115,5,69,-0.001645022005344646],[115,5,70,-0.001630500544202951],[115,5,71,-0.0015103811081195152],[115,5,72,-0.001290521375855234],[115,5,73,-9.732187279580073E-4],[115,5,74,-5.587236884516462E-4],[115,5,75,-4.655275094049363E-5],[115,5,76,5.633998113774495E-4],[115,5,77,0.0012699510916010682],[115,5,78,0.0020699191394286925],[115,5,79,0.0029576120461688275],[115,6,64,3.378755952908575E-4],[115,6,65,-4.7275447908552926E-4],[115,6,66,-0.001065369334952074],[115,6,67,-0.0014630523170112986],[115,6,68,-0.0017033419047224854],[115,6,69,-0.0018151274257244463],[115,6,70,-0.0018177992885342596],[115,6,71,-0.0017233578086319544],[115,6,72,-0.0015382931269890252],[115,6,73,-0.0012652749646706216],[115,6,74,-9.046508553890526E-4],[115,6,75,-4.557519523978543E-4],[115,6,76,8.199404194601151E-5],[115,6,77,7.081428292598746E-4],[115,6,78,0.0014205059186557687],[115,6,79,0.0022146146234010926],[115,7,64,2.5399145140802165E-4],[115,7,65,-5.525097384521621E-4],[115,7,66,-0.0011450336372913572],[115,7,67,-0.0015480692886854434],[115,7,68,-0.0018004224179647547],[115,7,69,-0.0019320223281203482],[115,7,70,-0.0019630925898298885],[115,7,71,-0.001906234138171973],[115,7,72,-0.0017682851373130946],[115,7,73,-0.0015519978727351277],[115,7,74,-0.0012575312782364765],[115,7,75,-8.837581468806233E-4],[115,7,76,-4.293865147097601E-4],[115,7,77,1.061048594834374E-4],[115,7,78,7.217165688763501E-4],[115,7,79,0.0014143634239411756],[115,8,64,2.8921212532197253E-4],[115,8,65,-5.165075114836737E-4],[115,8,66,-0.0011138454520866125],[115,8,67,-0.0015284912612645329],[115,8,68,-0.001800305520272832],[115,8,69,-0.001960082180682595],[115,8,70,-0.0020286813233425043],[115,8,71,-0.0020190933141427366],[115,8,72,-0.001938286429567369],[115,8,73,-0.0017888779293737868],[115,8,74,-0.0015706271399203507],[115,8,75,-0.0012817495427364918],[115,8,76,-9.200512920092553E-4],[115,8,77,-4.8388400899281145E-4],[115,8,78,2.707988209638939E-5],[115,8,79,6.112506066245208E-4],[115,9,64,4.6321126233835963E-4],[115,9,65,-3.4307907757560494E-4],[115,9,66,-9.481355295628631E-4],[115,9,67,-0.001378446670585581],[115,9,68,-0.0016745931385549948],[115,9,69,-0.001868034891042882],[115,9,70,-0.0019800890714775465],[115,9,71,-0.0020239728787251423],[115,9,72,-0.002006639525100562],[115,9,73,-0.0019304438225742394],[115,9,74,-0.0017946359154728563],[115,9,75,-0.0015966820985483798],[115,9,76,-0.001333412078188547],[115,9,77,-0.0010019924491199497],[115,9,78,-6.007265663040521E-4],[115,9,79,-1.2968138869932683E-4],[115,10,64,7.88013776713645E-4],[115,10,65,-1.8443745581233494E-5],[115,10,66,-6.322813132889374E-4],[115,10,67,-0.0010802454910457263],[115,10,68,-0.0014032112434222764],[115,10,69,-0.0016330862387375627],[115,10,70,-0.0017914814159063733],[115,10,71,-0.0018917224919285966],[115,10,72,-0.0019406683751799305],[115,10,73,-0.0019403656251881698],[115,10,74,-0.0018895374372694125],[115,10,75,-0.0017849060396232168],[115,10,76,-0.0016223477983470435],[115,10,77,-0.001397880729800928],[115,10,78,-0.0011084845170449993],[115,10,79,-7.527535146675747E-4],[115,11,64,0.0012704923889179493],[115,11,65,4.657953991376748E-4],[115,11,66,-1.5622149415616126E-4],[115,11,67,-6.219355641858174E-4],[115,11,68,-9.720306479229979E-4],[115,11,69,-0.001238630347811888],[115,11,70,-0.0014434931167693226],[115,11,71,-0.001599975903972013],[115,11,72,-0.0017148234897013588],[115,11,73,-0.0017898009533133864],[115,11,74,-0.0018231677240426742],[115,11,75,-0.0018109920602248605],[115,11,76,-0.0017483051973410455],[115,11,77,-0.0016300947966470002],[115,11,78,-0.0014521377113935348],[115,11,79,-0.0012116724638929319],[115,12,64,0.0019151231133910874],[115,12,65,0.0011154102125959186],[115,12,66,4.8727733473719737E-4],[115,12,67,5.379839828645314E-6],[115,12,68,-3.702608820681788E-4],[115,12,69,-6.717476766303882E-4],[115,12,70,-9.208596754982444E-4],[115,12,71,-0.001130946377705731],[115,12,72,-0.001308671511812941],[115,12,73,-0.0014556081861408854],[115,12,74,-0.0015696837643810523],[115,12,75,-0.0016464732832985331],[115,12,76,-0.0016803406079377798],[115,12,77,-0.0016654268954097368],[115,12,78,-0.0015964863084813776],[115,12,79,-0.0014695692820793453],[115,13,64,0.002727005020543462],[115,13,65,0.0019365657386580238],[115,13,66,0.0013056067008988125],[115,13,67,8.104676670838597E-4],[115,13,68,4.123868795822573E-4],[115,13,69,7.951299261668527E-5],[115,13,70,-2.0985036216786512E-4],[115,13,71,-4.690433322412246E-4],[115,13,72,-7.047277854659227E-4],[115,13,73,-9.184261454991617E-4],[115,13,74,-0.0011079195661981948],[115,13,75,-0.0012685042488017459],[115,13,76,-0.001394105064098616],[115,13,77,-0.0014782459976742002],[115,13,78,-0.0015148772873118858],[115,13,79,-0.001499059465175391],[115,14,64,0.0037151500148853646],[115,14,65,0.0029391036964415782],[115,14,66,0.002309560587162958],[115,14,67,0.001805139422657139],[115,14,68,0.0013887731139140516],[115,14,69,0.001029073553179295],[115,14,70,7.045019202179724E-4],[115,14,71,4.016939883972322E-4],[115,14,72,1.1387178198015903E-4],[115,14,73,-1.6061709744706663E-4],[115,14,74,-4.1963095041315436E-4],[115,14,75,-6.584350730468913E-4],[115,14,76,-8.707716058396809E-4],[115,14,77,-0.001049797609913761],[115,14,78,-0.0011888911698406206],[115,14,79,-0.0012823256423568036],[115,15,64,0.004901252610673224],[115,15,65,0.004145205815130624],[115,15,66,0.0035217813543552013],[115,15,67,0.0030123728070796762],[115,15,68,0.0025820285322379535],[115,15,69,0.0022000142519338073],[115,15,70,0.0018450046650827026],[115,15,71,0.0015035623475808946],[115,15,72,0.0011686640223068049],[115,15,73,8.383409523427493E-4],[115,15,74,5.144349295766326E-4],[115,15,75,2.014710292862143E-4],[115,15,76,-9.435200047759875E-5],[115,15,77,-3.660531462144098E-4],[115,15,78,-6.066420614790799E-4],[115,15,79,-8.097735445705779E-4],[115,16,64,0.0063251525174420386],[115,16,65,0.005594628762746561],[115,16,66,0.004981615374539005],[115,16,67,0.004470659652039073],[115,16,68,0.004029300034053105],[115,16,69,0.0036276646388952666],[115,16,70,0.0032447360554059153],[115,16,71,0.002867008908713705],[115,16,72,0.0024871524186183052],[115,16,73,0.0021027715981782],[115,16,74,0.0017152684925335574],[115,16,75,0.001328804593573856],[115,16,76,9.493653009817773E-4],[115,16,77,5.839270358881692E-4],[115,16,78,2.3972735147335082E-4],[115,16,79,-7.636187285109023E-5],[115,17,64,0.008008436094905287],[115,17,65,0.007308712414245762],[115,17,66,0.006709922722589018],[115,17,67,0.006200030245215248],[115,17,68,0.005749393068281338],[115,17,69,0.005329233851910257],[115,17,70,0.0049189824664042465],[115,17,71,0.0045051317437226415],[115,17,72,0.00408005379021599],[115,17,73,0.0036408978327702496],[115,17,74,0.003188570910496501],[115,17,75,0.002726802501553062],[115,17,76,0.002261293950978688],[115,17,77,0.0017989533417062974],[115,17,78,0.0013472162285270953],[115,17,79,9.134524351720936E-4],[115,18,64,0.009949511669005066],[115,18,65,0.00928556369070333],[115,18,66,0.008704444600702169],[115,18,67,0.008197682188581619],[115,18,68,0.007738734109406129],[115,18,69,0.007300166139106588],[115,18,70,0.0068620299623250456],[115,18,71,0.006410931260420413],[115,18,72,0.005939013274103207],[115,18,73,0.005443003508335927],[115,18,74,0.004923324790812375],[115,18,75,0.004383271718537328],[115,18,76,0.0038282533485011414],[115,18,77,0.00326510280903606],[115,18,78,0.002701454329134974],[115,18,79,0.0021451880049556476],[115,19,64,0.012127322593155266],[115,19,65,0.011503765078748989],[115,19,66,0.010943478868873872],[115,19,67,0.010441596238058796],[115,19,68,0.009974900876915027],[115,19,69,0.00951755913988277],[115,19,70,0.009050444538258274],[115,19,71,0.00856042714368851],[115,19,72,0.008039534129481782],[115,19,73,0.007484154137313956],[115,19,74,0.006894286569203833],[115,19,75,0.00627283677657222],[115,19,76,0.00562495798776063],[115,19,77,0.004957440683100615],[115,19,78,0.004278149993129352],[115,19,79,0.003595511561628299],[115,20,64,0.013561173787208586],[115,20,65,0.013925925903126836],[115,20,66,0.013389401762992829],[115,20,67,0.012894003221882198],[115,20,68,0.012420010041736344],[115,20,69,0.011943447766001562],[115,20,70,0.011446227879956193],[115,20,71,0.010915662554061838],[115,20,72,0.010343808303338357],[115,20,73,0.009726833600373954],[115,20,74,0.00906441142171717],[115,20,75,0.008359137630095088],[115,20,76,0.007615976014516867],[115,20,77,0.00684173072705553],[115,20,78,0.006044546769230958],[115,20,79,0.005233439092858788],[115,21,64,0.011123103288538905],[115,21,65,0.011636515424775116],[115,21,66,0.012126938123229368],[115,21,67,0.012592339018595616],[115,21,68,0.013048860730196144],[115,21,69,0.013518399046171848],[115,21,70,0.013999847099400227],[115,21,71,0.013427594371069879],[115,21,72,0.012803446894327006],[115,21,73,0.012123496264201573],[115,21,74,0.011387210573128892],[115,21,75,0.01059697814048207],[115,21,76,0.009757657622597645],[115,21,77,0.008876135267785077],[115,21,78,0.007960890043465212],[115,21,79,0.007021567321225759],[115,22,64,0.008594294187549116],[115,22,65,0.009056500244718607],[115,22,66,0.009518144891659188],[115,22,67,0.009974052643219593],[115,22,68,0.01043670708565611],[115,22,69,0.010925655436538105],[115,22,70,0.011456276992174523],[115,22,71,0.012039824263800703],[115,22,72,0.01268370827630659],[115,22,73,0.013391799820236807],[115,22,74,0.01380904091830808],[115,22,75,0.012934425494982452],[115,22,76,0.01200003398542694],[115,22,77,0.011012906055027744],[115,22,78,0.00998190511641841],[115,22,79,0.008917337287708217],[115,23,64,0.006039756499653265],[115,23,65,0.0064482453735356425],[115,23,66,0.0068788552659997185],[115,23,67,0.007323584276449425],[115,23,68,0.007791264833645725],[115,23,69,0.00829887912693922],[115,23,70,0.00886011026883669],[115,23,71,0.009485173177688785],[115,23,72,0.010180918291007602],[115,23,73,0.010950970527701364],[115,23,74,0.011795902915686603],[115,23,75,0.012713444224035978],[115,23,76,0.013698719866912689],[115,23,77,0.013200067050696568],[115,23,78,0.012058288241273233],[115,23,79,0.010874331937709505],[115,24,64,0.0035278418584188884],[115,24,65,0.0038807587080071245],[115,24,66,0.004278323942604847],[115,24,67,0.0047100894854608345],[115,24,68,0.00518130330286012],[115,24,69,0.005706194116711302],[115,24,70,0.006296551769932549],[115,24,71,0.006961360914960999],[115,24,72,0.007706729765716433],[115,24,73,0.00853587248590687],[115,24,74,0.009449144768983158],[115,24,75,0.010444132038691075],[115,24,76,0.011515789578968167],[115,24,77,0.01265663378899586],[115,24,78,0.013856983654637793],[115,24,79,0.012843609663244954],[115,25,64,0.0011275296269229872],[115,25,65,0.0014237183904948886],[115,25,66,0.001786513749947883],[115,25,67,0.0022034531244388457],[115,25,68,0.0026763234573178632],[115,25,69,0.0032164454510282916],[115,25,70,0.003833540936231384],[115,25,71,0.004535185828117822],[115,25,72,0.005326573287935337],[115,25,73,0.006210347675631793],[115,25,74,0.007186508988459045],[115,25,75,0.008252387307746821],[115,25,76,0.009402686610302939],[115,25,77,0.010629597143425562],[115,25,78,0.011922975414736083],[115,25,79,0.013270590711394909],[115,26,64,-0.0010941095472977002],[115,26,65,-8.550752325836631E-4],[115,26,66,-5.284474450916577E-4],[115,26,67,-1.2823289117557625E-4],[115,26,68,3.44071272122757E-4],[115,26,69,8.967619619693324E-4],[115,26,70,0.0015373459396209408],[115,26,71,0.002271831459581699],[115,26,72,0.00310433772499648],[115,26,73,0.004036790763180107],[115,26,74,0.005068705554581381],[115,26,75,0.006197054033181099],[115,26,76,0.007416218368574305],[115,26,77,0.008718028741458491],[115,26,78,0.010091884636640626],[115,26,79,0.011524958502729069],[115,27,64,-0.0030742691665574607],[115,27,65,-0.002892069507211541],[115,27,66,-0.002602636397511655],[115,27,67,-0.0022210247538857015],[115,27,68,-0.001751789936152992],[115,27,69,-0.0011897320701062955],[115,27,70,-5.296745188127661E-4],[115,27,71,2.3268835219011354E-4],[115,27,72,0.0011002610408705148],[115,27,73,0.0020741170438225574],[115,27,74,0.003153169229318584],[115,27,75,0.004333940163471957],[115,27,76,0.005610431859226543],[115,27,77,0.006974094182478588],[115,27,78,0.008413890926237271],[115,27,79,0.00991646235435467],[115,28,64,-0.004756577488150102],[115,28,65,-0.004630147519626342],[115,28,66,-0.004378527165021521],[115,28,67,-0.004017311525756688],[115,28,68,-0.0035538451068349184],[115,28,69,-0.0029860534938105005],[115,28,70,-0.0023111700434672944],[115,28,71,-0.00152669925940913],[115,28,72,-6.310705063822663E-4],[115,28,73,3.7582040570040737E-4],[115,28,74,0.0014921818673967152],[115,28,75,0.0027140091574651385],[115,28,76,0.0040348787068368855],[115,28,77,0.005445853205458291],[115,28,78,0.0069354965640521255],[115,28,79,0.008489997503455943],[115,29,64,-0.0060930792087221675],[115,29,65,-0.00602063030934995],[115,29,66,-0.005807002973688584],[115,29,67,-0.005467825847232826],[115,29,68,-0.00501292754675794],[115,29,69,-0.004443341967200304],[115,29,70,-0.003758755203623096],[115,29,71,-0.002958559445644987],[115,29,72,-0.002042612781357637],[115,29,73,-0.001011877151464356],[115,29,74,1.3106576945153407E-4],[115,29,75,0.0013816206728417461],[115,29,76,0.002732906299877848],[115,29,77,0.004175604017094567],[115,29,78,0.005697926311475298],[115,29,79,0.0072857039678943586],[115,30,64,-0.007046023848530426],[115,30,65,-0.007025088963363408],[115,30,66,-0.006849183127400398],[115,30,67,-0.006533476637840056],[115,30,68,-0.006089949830510068],[115,30,69,-0.0055226832951810285],[115,30,70,-0.004833820903448171],[115,30,71,-0.004024688539032273],[115,30,72,-0.003096641512593707],[115,30,73,-0.002051782641118765],[115,30,74,-8.935506537161447E-4],[115,30,75,3.7282107752117943E-4],[115,30,76,0.0017399751554567344],[115,30,77,0.0031982294827910705],[115,30,78,0.004735504350541189],[115,30,79,0.00633737606214722],[115,31,64,-0.007589456160563204],[115,31,65,-0.007616962001269687],[115,31,66,-0.007478060506103759],[115,31,67,-0.007186999514111412],[115,31,68,-0.006757561441849893],[115,31,69,-0.006196770656388688],[115,31,70,-0.00550919703155362],[115,31,71,-0.004698114014229256],[115,31,72,-0.0037664147718847393],[115,31,73,-0.0027173937757133345],[115,31,74,-0.0015553933763419589],[115,31,75,-2.863152819727457E-4],[115,31,76,0.0010820028077854274],[115,31,77,0.0025395448277495247],[115,31,78,0.004074007331237966],[115,31,79,0.0056708226315103525],[115,32,64,-0.007710603592299746],[115,32,65,-0.007782973153184761],[115,32,66,-0.007679944881257971],[115,32,67,-0.007414420327685856],[115,32,68,-0.007001628783326041],[115,32,69,-0.006451399626540137],[115,32,70,-0.00577066263683171],[115,32,71,-0.004964620938867227],[115,32,72,-0.004037717300789309],[115,32,73,-0.0029944628418112815],[115,32,74,-0.001840127612413827],[115,32,75,-5.812928735813512E-4],[115,32,76,7.737347449298642E-4],[115,32,77,0.002214646685856224],[115,32,78,0.003728992657121125],[115,32,79,0.005302176418734288],[115,33,64,-0.007411055535093639],[115,33,65,-0.007524344328003253],[115,33,66,-0.007455706963890913],[115,33,67,-0.007216326906980623],[115,33,68,-0.006822532857694792],[115,33,69,-0.006286792580843515],[115,33,70,-0.0056182995551534755],[115,33,71,-0.004824138326421351],[115,33,72,-0.0039102834864058605],[115,33,73,-0.0028824600987233696],[115,33,74,-0.0017468649530268136],[115,33,75,-5.107483965079013E-4],[115,33,76,8.17143149974316E-4],[115,33,77,0.002226263537636879],[115,33,78,0.0037041013124345223],[115,33,79,0.005236151115778841],[115,34,64,-0.006707728813315407],[115,34,65,-0.0068577982751429675],[115,34,66,-0.006821817796591687],[115,34,67,-0.006608943774575911],[115,34,68,-0.006236279608715737],[115,34,69,-0.0057187477399989455],[115,34,70,-0.005067685094359796],[115,34,71,-0.004291981409370149],[115,34,72,-0.003399095482983695],[115,34,73,-0.0023959337404682135],[115,34,74,-0.0012895904297117752],[115,34,75,-8.794912250707018E-5],[115,34,76,0.0011998544424890209],[115,34,77,0.002563107793207523],[115,34,78,0.003989334720443562],[115,34,79,0.005464244809027904],[115,35,64,-0.0056336135976324045],[115,35,65,-0.005816345163068447],[115,35,66,-0.00581117781088367],[115,35,67,-0.0056250043145906915],[115,35,68,-0.0052754176053184795],[115,35,69,-0.004779607817458019],[115,35,70,-0.0041509190775207904],[115,35,71,-0.003399945545727243],[115,35,72,-0.0025355526761553352],[115,35,73,-0.001565763169689564],[115,35,74,-4.985068678417404E-4],[115,35,75,6.577658015178229E-4],[115,35,76,0.001893606861571018],[115,35,77,0.003198229999812117],[115,35,78,0.004559305321705569],[115,35,79,0.005962888698068155],[115,36,64,-0.004238293678894899],[115,36,65,-0.004449847037611396],[115,36,66,-0.004473729600472682],[115,36,67,-0.00431441458459712],[115,36,68,-0.003989757466613582],[115,36,69,-0.003519042934455386],[115,36,70,-0.0029174802509916143],[115,36,71,-0.0021972471788341812],[115,36,72,-0.0013685083963606217],[115,36,73,-4.4030204781124677E-4],[115,36,74,5.787063812699711E-4],[115,36,75,0.0016796033163731258],[115,36,76,0.002852739580360504],[115,36,77,0.004087375884278818],[115,36,78,0.0053714607710768315],[115,36,79,0.006691540155016694],[115,37,64,-0.0025882348154001875],[115,37,65,-0.002825353886746248],[115,37,66,-0.0028768482132535945],[115,37,67,-0.002744702709379758],[115,37,68,-0.002446887160057398],[115,37,69,-0.002004642198054625],[115,37,70,-0.0014349067883836432],[115,37,71,-7.513069929040652E-4],[115,37,72,3.483048902407267E-5],[115,37,73,9.135926885062114E-4],[115,37,74,0.0018757235097095675],[115,37,75,0.002911996166201783],[115,37,76,0.004012715091538646],[115,37,77,0.005167347176669188],[115,37,78,0.006364281871929537],[115,37,79,0.007590719392364725],[115,38,64,-7.649860988050122E-4],[115,38,65,-0.0010252717325270175],[115,38,66,-0.0011034923538157085],[115,38,67,-9.991629992649753E-4],[115,38,68,-7.30318509262659E-4],[115,38,69,-3.2007671995606073E-4],[115,38,70,2.130059479005039E-4],[115,38,71,8.539959651693545E-4],[115,38,72,0.0015905688594612128],[115,38,73,0.002412119464350578],[115,38,74,0.003308997184587126],[115,38,75,0.004271866870497519],[115,38,76,0.005291195563892118],[115,38,77,0.006356865057049151],[115,38,78,0.007457909898142073],[115,38,79,0.008582380183357335],[115,39,64,0.0011750546686813547],[115,39,65,8.946076009987542E-4],[115,39,66,7.913429869268669E-4],[115,39,67,8.6820549219433E-4],[115,39,68,0.0011070772010444254],[115,39,69,0.0014829460729453654],[115,39,70,0.0019756798953528896],[115,39,71,0.002569130411266402],[115,39,72,0.0032501104413513826],[115,39,73,0.004007491658148656],[115,39,74,0.004831424023822051],[115,39,75,0.005712677571040348],[115,39,76,0.006642106882075137],[115,39,77,0.007610238306256984],[115,39,78,0.008606979652892071],[115,39,79,0.009621451808090785],[115,40,64,0.003204600261887169],[115,40,65,0.002908978602683867],[115,40,66,0.002784443317294173],[115,40,67,0.0028364659533464784],[115,40,68,0.0030468077744277245],[115,40,69,0.003388453611753181],[115,40,70,0.003839648495124825],[115,40,71,0.00438303993875031],[115,40,72,0.005004638512012746],[115,40,73,0.005692895846277783],[115,40,74,0.006437901181811348],[115,40,75,0.00723069723304452],[115,40,76,0.008062715831382062],[115,40,77,0.008925333494676755],[115,40,78,0.009809546773636832],[115,40,79,0.010705766940228404],[115,41,64,0.005291471668471403],[115,41,65,0.004987237550737286],[115,41,66,0.004846960039823501],[115,41,67,0.004878746991196605],[115,41,68,0.005064186863466811],[115,41,69,0.0053740938288441235],[115,41,70,0.00578498092320345],[115,41,71,0.006278238849740465],[115,41,72,0.006839074287415798],[115,41,73,0.007455562464853692],[115,41,74,0.008117815207560624],[115,41,75,0.008817265346159642],[115,41,76,0.009546068059366457],[115,41,77,0.01029661941976838],[115,41,78,0.01106119211528956],[115,41,79,0.011831688036905081],[115,42,64,0.007400603535473935],[115,42,65,0.0070953976172195956],[115,42,66,0.006946218472593856],[115,42,67,0.00696392798624542],[115,42,68,0.0071298780322329655],[115,42,69,0.007412514692887414],[115,42,70,0.007786471427254868],[115,42,71,0.008231785130539335],[115,42,72,0.00873280852206414],[115,42,73,0.009277233523625457],[115,42,74,0.009855226948267957],[115,42,75,0.010458679505114978],[115,42,76,0.01108056881704146],[115,42,77,0.01171443684672413],[115,42,78,0.012353981835049155],[115,42,79,0.01299276457630931],[115,43,64,0.009497911852726894],[115,43,65,0.009199939699407],[115,43,66,0.009049526592425422],[115,43,67,0.009060385533303733],[115,43,68,0.009213557462682697],[115,43,69,0.00947491626602982],[115,43,70,0.00981704982356699],[115,43,71,0.010218515997582627],[115,43,72,0.010662727641912426],[115,43,73,0.01113694508689344],[115,43,74,0.011631377536948134],[115,43,75,0.012138394509868066],[115,43,76,0.012651848143639437],[115,43,77,0.013166506900250797],[115,43,78,0.013677600908377042],[115,43,79,0.014180478910381681],[115,44,64,0.011554364445244717],[115,44,65,0.011271862304985445],[115,44,66,0.011128177717803028],[115,44,67,0.011139926656381216],[115,44,68,0.011287754053169079],[115,44,69,0.01153476878062121],[115,44,70,0.01185134490233568],[115,44,71,0.012214421769297578],[115,44,72,0.012606362429224556],[115,44,73,0.013013915629594938],[115,44,74,0.013427282969863867],[115,44,75,0.013839292457551295],[115,44,76,0.014244679426187774],[115,44,77,0.014639475482419721],[115,44,78,0.015020505866846627],[115,44,79,0.014728236441645259],[115,45,64,0.01355025749619829],[115,45,65,0.013290933765687098],[115,45,66,0.013161650433269681],[115,45,67,0.013181912081596655],[115,45,68,0.013331870124081503],[115,45,69,0.013571699833580007],[115,45,70,0.013869403677857805],[115,45,71,0.014200160797713144],[115,45,72,0.014545161752937371],[115,45,73,0.014890542488175791],[115,45,74,0.015152735705053093],[115,45,75,0.014807822883264802],[115,45,76,0.014481370051431658],[115,45,77,0.014176146878199175],[115,45,78,0.013893774510746998],[115,45,79,0.013635171324085293],[115,46,64,0.01512062407438156],[115,46,65,0.015250149666393771],[115,46,66,0.015142008672846883],[115,46,67,0.015177572473094524],[115,46,68,0.015251352469072223],[115,46,69,0.015002478322648408],[115,46,70,0.014705212098359462],[115,46,71,0.014386313280317113],[115,46,72,0.014065936013339069],[115,46,73,0.013758718952405647],[115,46,74,0.013474779107716649],[115,46,75,0.013220608186157945],[115,46,76,0.012999870209231058],[115,46,77,0.012814099462512002],[115,46,78,0.012663298100702077],[115,46,79,0.01254643299337349],[115,47,64,0.01336345926301717],[115,47,65,0.01356004433771917],[115,47,66,0.013640820146872451],[115,47,67,0.013580922647337278],[115,47,68,0.01340157646655677],[115,47,69,0.013148879980933795],[115,47,70,0.012860000964706637],[115,47,71,0.012563710221463053],[115,47,72,0.01228157772285064],[115,47,73,0.012029080245956645],[115,47,74,0.011816618628397758],[115,47,75,0.011650443029403068],[115,47,76,0.011533484852734477],[115,47,77,0.011466094251572748],[115,47,78,0.011446682394840212],[115,47,79,0.011472267927002127],[115,48,64,0.011729125706696417],[115,48,65,0.011886909035393673],[115,48,66,0.011936455654658715],[115,48,67,0.011850537045163229],[115,48,68,0.011651219472070432],[115,48,69,0.011387797133004356],[115,48,70,0.011100124062391355],[115,48,71,0.010819079542819188],[115,48,72,0.010567767663170373],[115,48,73,0.010362634782159198],[115,48,74,0.010214502931044492],[115,48,75,0.010129517443869786],[115,48,76,0.010110007357336252],[115,48,77,0.010155257373865696],[115,48,78,0.01026219042903093],[115,48,79,0.010425960146608973],[115,49,64,0.01027444050412935],[115,49,65,0.010388598361490803],[115,49,66,0.010400972893010252],[115,49,67,0.010282251790080538],[115,49,68,0.010055426721984928],[115,49,69,0.009772948156289698],[115,49,70,0.0094773749129845],[115,49,71,0.00920176483613499],[115,49,72,0.008970867550006973],[115,49,73,0.008802242116156224],[115,49,74,0.008707297559379067],[115,49,75,0.008692254468332867],[115,49,76,0.008759026114563296],[115,49,77,0.008906017770266126],[115,49,78,0.009128843138980654],[115,49,79,0.009420957042981152],[115,50,64,0.009044733403064558],[115,50,65,0.009110824135519774],[115,50,66,0.009080151279532723],[115,50,67,0.008921639925000826],[115,50,68,0.008659266524300786],[115,50,69,0.008348528877903402],[115,50,70,0.008034657785266157],[115,50,71,0.0077529269679160245],[115,50,72,0.007529827747721594],[115,50,73,0.0073841760985433845],[115,50,74,0.007328149996323905],[115,50,75,0.0073682552121268246],[115,50,76,0.0075062179128910275],[115,50,77,0.00773980265451473],[115,50,78,0.008063554570092682],[115,50,79,0.008469464771258733],[115,51,64,0.008073857804717442],[115,51,65,0.008088015721312831],[115,51,66,0.008008761975904412],[115,51,67,0.007803615625802001],[115,51,68,0.007497573488450592],[115,51,69,0.007149006133942665],[115,51,70,0.006805732157035946],[115,51,71,0.006505242200620353],[115,51,72,0.006275843728897768],[115,51,73,0.0061377459987571265],[115,51,74,0.006104083137232419],[115,51,75,0.0061818734323694224],[115,51,76,0.006372913145803822],[115,51,77,0.006674603356792407],[115,51,78,0.007080708548259919],[115,51,79,0.007582045844337404],[115,52,64,0.007384339031577928],[115,52,65,0.007343431286833659],[115,52,66,0.00721064018255057],[115,52,67,0.006952462775519415],[115,52,68,0.006594928725439783],[115,52,69,0.00619904719665424],[115,52,70,0.005815091130738559],[115,52,71,0.005482731346471215],[115,52,72,0.005232139508528857],[115,52,73,0.005085039338395576],[115,52,74,0.005055703985428969],[115,52,75,0.005151897654217742],[115,52,76,0.005375759764743392],[115,52,77,0.005724630103485518],[115,52,78,0.006191813605562847],[115,52,79,0.006767283589141833],[115,53,64,0.0069876635899219774],[115,53,65,0.00688941086531261],[115,53,66,0.006698899196462697],[115,53,67,0.006382005007331146],[115,53,68,0.005965781005746137],[115,53,69,0.005513589085308109],[115,53,70,0.00507797781914087],[115,53,71,0.004700723935432978],[115,53,72,0.004413881959382691],[115,53,73,0.0042407902223099555],[115,53,74,0.004197031193696954],[115,53,75,0.004291344247972591],[115,53,76,0.004526489136646101],[115,53,77,0.004900058597121615],[115,53,78,0.0054052386914229065],[115,53,79,0.006031515630136888],[115,54,64,0.006884713101921474],[115,54,65,0.006727774987664333],[115,54,66,0.006476290074389327],[115,54,67,0.006095921122939056],[115,54,68,0.005614712838216729],[115,54,69,0.0050980517621339455],[115,54,70,0.004600543712818977],[115,54,71,0.00416596138446447],[115,54,72,0.003828229930453229],[115,54,73,0.003612376979868113],[115,54,74,0.0035354451082576966],[115,54,75,0.003607364916927239],[115,54,76,0.003831787011599407],[115,54,77,0.00420687131037779],[115,54,78,0.004726032251934151],[115,54,79,0.005378638616888783],[115,55,64,0.007066346499364608],[115,55,65,0.006850372579793857],[115,55,66,0.006535710674606826],[115,55,67,0.006088209732074882],[115,55,68,0.0055368553812711946],[115,55,69,0.0049486991723692005],[115,55,70,0.0043801530090292985],[115,55,71,0.0038768431333684413],[115,55,72,0.0034745220790034738],[115,55,73,0.003199952927490465],[115,55,74,0.0030717639800068187],[115,55,75,0.0031012720667378296],[115,55,76,0.003293272830546518],[115,55,77,0.003646796438593093],[115,55,78,0.004155827295157559],[115,55,79,0.004809986450315885],[115,56,64,0.007514133961576563],[115,56,65,0.007239781714955947],[115,56,66,0.006860867753978728],[115,56,67,0.006343806870176398],[115,56,68,0.005718456017708463],[115,56,69,0.005053152016936729],[115,56,70,0.004405836821173137],[115,56,71,0.0038238196628582717],[115,56,72,0.003344607287944096],[115,56,73,0.0029967140357449224],[115,56,74,0.002800449990634168],[115,56,75,0.00276868552006655],[115,56,76,0.0029075906052168604],[115,56,77,0.0032173474656379862],[115,56,78,0.0036928350774195623],[115,56,79,0.004324284284823424],[115,57,64,0.008201245944173987],[115,57,65,0.007870166680746278],[115,57,66,0.007427095672916233],[115,57,67,0.006839360234606708],[115,57,68,0.0061376023160748415],[115,57,69,0.005391056047197948],[115,57,70,0.0046589010991331045],[115,57,71,0.003989936232412263],[115,57,72,0.003423321473667966],[115,57,73,0.0029893072293997805],[115,57,74,0.0027099486981471263],[115,57,75,0.0025998040086858683],[115,57,76,0.0026666145819169845],[115,57,77,0.0029119662876692853],[115,57,78,0.003331930044488581],[115,57,79,0.003917680590212854],[115,58,64,0.009093500482947959],[115,58,65,0.008708294662670897],[115,58,66,0.008202335109205783],[115,58,67,0.007544163535112286],[115,58,68,0.006765105964802837],[115,58,69,0.005934909543466195],[115,58,70,0.0051136919730471265],[115,58,71,0.004351531068801319],[115,58,72,0.0036891144946314034],[115,58,73,0.003158382966478323],[115,58,74,0.0027831654368062264],[115,58,75,0.002579804818659476],[115,58,76,0.0025577728569865384],[115,58,77,0.002720272807722523],[115,58,78,0.0030648286414095495],[115,58,79,0.0035838595476112792],[115,59,64,0.010150571768734858],[115,59,65,0.009714715161793258],[115,59,66,0.009148275002644618],[115,59,67,0.008421254281646365],[115,59,68,0.007565550100220342],[115,59,69,0.006651053482493768],[115,59,70,0.005738522086502107],[115,59,71,0.004879091600700315],[115,59,72,0.004114830747716645],[115,59,73,0.003479295632255522],[115,59,74,0.002998082110234882],[115,59,75,0.002689374882260384],[115,59,76,0.002564492044201804],[115,59,77,0.0026284238608422243],[115,59,78,0.002880364565327409],[115,59,79,0.003314236027258432],[115,60,64,0.011327362775035574],[115,60,65,0.0108451050530815],[115,60,66,0.010221660746355396],[115,60,67,0.009428678132497266],[115,60,68,0.00849850325627021],[115,60,69,0.007500827714110956],[115,60,70,0.0064967613097531435],[115,60,71,0.005538272170539269],[115,60,72,0.004668646887674142],[115,60,73,0.00392295514617114],[115,60,74,0.0033285176933119153],[115,60,75,0.002905376502729628],[115,60,76,0.002666766002938279],[115,60,77,0.0026195842542378342],[115,60,78,0.00276486297652246],[115,60,79,0.003098235352508883],[115,61,64,0.012575544480950059],[115,61,65,0.012051781954289005],[115,61,66,0.011375771407997169],[115,61,67,0.010520922698259137],[115,61,68,0.009519902942709808],[115,61,69,0.008441896253867844],[115,61,70,0.007348095019607061],[115,61,71,0.006291076461847218],[115,61,72,0.005315169924787921],[115,61,73,0.004456833013799114],[115,61,74,0.0037450356083277053],[115,61,75,0.0032016507646971766],[115,61,76,0.002841851520312338],[115,61,77,0.0026745126095691933],[115,61,78,0.00270261610387648],[115,61,79,0.0029236599936022694],[115,62,64,0.01384526396838235],[115,62,65,0.013285388313131793],[115,62,66,0.012562068505435906],[115,62,67,0.011650523443093268],[115,62,68,0.010583611610147446],[115,62,69,0.009429744557315042],[115,62,70,0.008249952900390843],[115,62,71,0.007097207659062035],[115,62,72,0.006016698747535997],[115,62,73,0.005046125862444926],[115,62,74,0.004216000963853285],[115,62,75,0.0035499615240892363],[115,62,76,0.003065093700764202],[115,62,77,0.0027722645748185426],[115,62,78,0.0026764625819574827],[115,62,79,0.0027771452564648792],[115,63,64,0.015087023385277964],[115,63,65,0.014496748333965538],[115,63,66,0.013732018577518048],[115,63,67,0.012769844044629174],[115,63,68,0.011643147485133433],[115,63,69,0.010419351373007535],[115,63,70,0.009159110960434232],[115,63,71,0.007915589107528069],[115,63,72,0.0067346518807607295],[115,63,73,0.005655079277897417],[115,63,74,0.004708790441018711],[115,63,75,0.00392108268674716],[115,63,76,0.003310883652672339],[115,63,77,0.0028910158312897257],[115,63,78,0.002668472737798896],[115,63,79,0.0026447059359392903],[115,64,64,0.01611301192130728],[115,64,65,0.0156388995550067],[115,64,66,0.014839091482250951],[115,64,67,0.013833033268537734],[115,64,68,0.012653592457391422],[115,64,69,0.011367037476096227],[115,64,70,0.010033469171335371],[115,64,71,0.008706057964712265],[115,64,72,0.00743116402617926],[115,64,73,0.006248474511721279],[115,64,74,0.005191157381731286],[115,64,75,0.004286031275017564],[115,64,76,0.003553750873766556],[115,64,77,0.0030090071571900706],[115,64,78,0.0026607419062982213],[115,64,79,0.0025123757893870664],[115,65,64,0.015154348031627891],[115,65,65,0.015816227102470083],[115,65,66,0.01584093602289671],[115,65,67,0.014798160084183191],[115,65,68,0.013573678875001766],[115,65,69,0.012232493263274212],[115,65,70,0.010834006823668677],[115,65,71,0.009431234030186442],[115,65,72,0.008070853641522642],[115,65,73,0.006793280353732704],[115,65,74,0.005632754377195305],[115,65,75,0.004617448546570976],[115,65,76,0.003769592525586186],[115,65,77,0.0031056136231747615],[115,65,78,0.002636293694081404],[115,65,79,0.002366941555623042],[115,66,64,0.014347409191754335],[115,66,65,0.01502426932838517],[115,66,66,0.015901798238809516],[115,66,67,0.01562952839487059],[115,66,68,0.01436805675292007],[115,66,69,0.012980986843791648],[115,66,70,0.011526917353589652],[115,66,71,0.010058565612427503],[115,66,72,0.008622763497893184],[115,66,73,0.007260472163569919],[115,66,74,0.0060068153734547935],[115,66,75,0.00489113117011338],[115,66,76,0.003937041552373994],[115,66,77,0.003162539787449517],[115,66,78,0.00258009493287825],[115,66,79,0.002196773095754638],[115,67,64,0.013717953212137033],[115,67,65,0.014404900986138272],[115,67,66,0.015300136789455236],[115,67,67,0.016300172381192912],[115,67,68,0.015009742526717048],[115,67,69,0.013585753891270556],[115,67,70,0.01208592403095015],[115,67,71,0.010562553935862291],[115,67,72,0.009062475812876813],[115,67,73,0.007627019729270414],[115,67,74,0.006291999004197921],[115,67,75,0.005087714179009004],[115,67,76,0.004038975342049493],[115,67,77,0.0031651425288895985],[115,67,78,0.002480183865199728],[115,67,79,0.001992751066903512],[115,68,64,0.013279378642827798],[115,68,65,0.013972316260321195],[115,68,66,0.014879929187128015],[115,68,67,0.01601789226433318],[115,68,68,0.01548275008807476],[115,68,69,0.014030570128290811],[115,68,70,0.01249477751214166],[115,68,71,0.010927157212835716],[115,68,72,0.009374403190462632],[115,68,73,0.007878045270330581],[115,68,74,0.006474394530475461],[115,68,75,0.005194507116776609],[115,68,76,0.004064166346815368],[115,68,77,0.003103882906592326],[115,68,78,0.002328912887756968],[115,68,79,0.0017492933572478967],[115,69,64,0.013029795876386705],[115,69,65,0.01372567773065703],[115,69,66,0.014641406863577027],[115,69,67,0.015791412206470318],[115,69,68,0.01578490793140191],[115,69,69,0.014312510817448748],[115,69,70,0.01274994013099567],[115,69,71,0.011148379688777398],[115,69,72,0.00955426102811757],[115,69,73,0.008009157498885831],[115,69,74,0.0065496964422824145],[115,69,75,0.0052074894486037766],[115,69,76,0.0040090806278134435],[115,69,77,0.0029759127683339206],[115,69,78,0.0021243112012538506],[115,69,79,0.0014654851292484799],[115,70,64,0.01294604694500554],[115,70,65,0.013642033929424867],[115,70,66,0.01456190175602122],[115,70,67,0.015718725309213408],[115,70,68,0.01593834704123336],[115,70,69,0.014453476713122164],[115,70,70,0.012873028596378558],[115,70,71,0.011247470117583843],[115,70,72,0.009622825886088072],[115,70,73,0.008040544698368306],[115,70,74,0.006537384093226818],[115,70,75,0.005145312512503274],[115,70,76,0.0038914290632676954],[115,70,77,0.002797900818363691],[115,70,78,0.0018819175329324851],[115,70,79,0.0011556635952985773],[115,71,64,0.012987780854203873],[115,71,65,0.013678173966078346],[115,71,66,0.014595323230509763],[115,71,67,0.01575083184348042],[115,71,68,0.015994845011945254],[115,71,69,0.014507850975591395],[115,71,70,0.012920642598475437],[115,71,71,0.01128272207286061],[115,71,72,0.009639450459805153],[115,71,73,0.008031894602119966],[115,71,74,0.006496690547474426],[115,71,75,0.005065923585629747],[115,71,76,0.0037670249463472925],[115,71,77,0.0026226851463922365],[115,71,78,0.0016507839154560333],[115,71,79,8.643365718667877E-4],[115,72,64,0.013122040212736307],[115,72,65,0.013798298163337665],[115,72,66,0.014702999345273996],[115,72,67,0.01584617845055417],[115,72,68,0.015998696190014115],[115,72,69,0.014522522280711152],[115,72,70,0.012941931744435618],[115,72,71,0.011305101647342965],[115,72,72,0.009656377071017611],[115,72,73,0.008036106784388281],[115,72,74,0.0064804934846526205],[115,72,75,0.0050214587435350845],[115,72,76,0.003686522741735183],[115,72,77,0.0024986988199307085],[115,72,78,0.0014764028193685055],[115,72,79,6.333771289805943E-4],[115,73,64,0.013324415893569412],[115,73,65,0.013975865454352027],[115,73,66,0.014856252434482556],[115,73,67,0.015973974936387175],[115,73,68,0.015982662958775054],[115,73,69,0.014532136093807749],[115,73,70,0.012973201500914083],[115,73,71,0.01135228455165388],[115,73,72,0.009712302547804027],[115,73,73,0.008092499742809239],[115,73,74,0.006528293791591216],[115,73,75,0.005051133776229357],[115,73,76,0.0036883699090108375],[115,73,77,0.0024631349669311377],[115,73,78,0.001394237463029628],[115,73,79,4.960665099916498E-4],[115,74,64,0.01357610031759181],[115,74,65,0.014190606674396342],[115,74,66,0.015033379060786507],[115,74,67,0.016111146083531317],[115,74,68,0.015971041698495732],[115,74,69,0.014562158809683947],[115,74,70,0.013040948633008559],[115,74,71,0.011451630414184486],[115,74,72,0.009835255087816809],[115,74,73,0.008229551762319919],[115,74,74,0.00666878108291118],[115,74,75,0.005183595605962215],[115,74,76,0.003800907283483416],[115,74,77,0.0025437621201745498],[115,74,78,0.001431222027328765],[115,74,79,4.7825385786905275E-4],[115,75,64,0.013861035545574042],[115,75,65,0.014425630828267325],[115,75,66,0.01521672059021726],[115,75,67,0.016239371349524592],[115,75,68,0.015982644229355254],[115,75,69,0.014631861838783311],[115,75,70,0.013164822485203783],[115,75,71,0.011623090476703825],[115,75,72,0.010045413851405387],[115,75,73,0.00846759565485699],[115,75,74,0.006922366006496727],[115,75,75,0.0054392550448321446],[115,75,76,0.0040444668223949985],[115,75,77,0.0027607542006114114],[115,75,78,0.001607294771393781],[115,75,79,5.995678063385303E-4],[115,76,64,0.014163161331117476],[115,76,65,0.014664629536691407],[115,76,66,0.015389829623307308],[115,76,67,0.016342217699439224],[115,76,68,0.016033689503419164],[115,76,69,0.01475722046635929],[115,76,70,0.013360507054638126],[115,76,71,0.011882043834227675],[115,76,72,0.0103578667145267],[115,76,73,0.008821463174260327],[115,76,74,0.007303675592620649],[115,76,75,0.0058325976988453125],[115,76,76,0.004433464155332533],[115,76,77,0.0031285332884088894],[115,76,78,0.0019369629767643055],[115,76,79,8.746797000328447E-4],[115,77,64,0.014463768358541323],[115,77,65,0.01488918494957954],[115,77,66,0.015534737614704764],[115,77,67,0.016402370933004767],[115,77,68,0.016140600184370055],[115,77,69,0.014953722169388239],[115,77,70,0.013642518650278204],[115,77,71,0.01224205719684232],[115,77,72,0.01078530142735324],[115,77,73,0.00930307471002354],[115,77,74,0.007824007699762943],[115,77,75,0.006374469611611401],[115,77,76,0.004978483159170135],[115,77,77,0.0036576231097964563],[115,77,78,0.0024308984278650176],[115,77,79,0.0013146179925412047],[115,78,64,0.014738961931485467],[115,78,65,0.01507618646884536],[115,78,66,0.015629329082172547],[115,78,67,0.016398970949603266],[115,78,68,0.01632269865610713],[115,78,69,0.01523907896313364],[115,78,70,0.014026913803318688],[115,78,71,0.01271756300751053],[115,78,72,0.011340625265814173],[115,78,73,0.009923969690649785],[115,78,74,0.008493740424291513],[115,78,75,0.007074334043643709],[115,78,76,0.005688349571328933],[115,78,77,0.004356510954337727],[115,78,78,0.0030975619188973545],[115,78,79,0.0019281331521653635],[115,79,64,0.0149767754404599],[115,79,65,0.015214707987905168],[115,79,66,0.01566375440398584],[115,79,67,0.016323309666295766],[115,79,68,0.016587481772853345],[115,79,69,0.015619719582308372],[115,79,70,0.014519228573880409],[115,79,71,0.013313451180380097],[115,79,72,0.012028384254950078],[115,79,73,0.010688693478569032],[115,79,74,0.009317788579546729],[115,79,75,0.00793785892943281],[115,79,76,0.0065698691696408655],[115,79,77,0.0052335146081470135],[115,79,78,0.003947136204993981],[115,79,79,0.00272759503809567],[115,80,64,0.015230251328285727],[115,80,65,0.015358548330697764],[115,80,66,0.015691813975141623],[115,80,67,0.016228384942057413],[115,80,68,0.016883641212285257],[115,80,69,0.01604701915539516],[115,80,70,0.015074565171539331],[115,80,71,0.013989603049756202],[115,80,72,0.01281425986385223],[115,80,73,0.011569682948154247],[115,80,74,0.010276204007344802],[115,80,75,0.00895344968535228],[115,80,76,0.0076203980461923395],[115,80,77,0.006295380542098702],[115,80,78,0.0049960291601121335],[115,80,79,0.003739168546330864],[115,81,64,0.015552314904952215],[115,81,65,0.015561728949861756],[115,81,66,0.01576790678262354],[115,81,67,0.01616820234912083],[115,81,68,0.01674531119932805],[115,81,69,0.016470483007354382],[115,81,70,0.015645654974653558],[115,81,71,0.014703005541055717],[115,81,72,0.013660500376884531],[115,81,73,0.012535396310128526],[115,81,74,0.01134451687326912],[115,81,75,0.010104458919021968],[115,81,76,0.008831729499712086],[115,81,77,0.007542812369562225],[115,81,78,0.006254163626235471],[115,81,79,0.004982136156062084],[115,82,64,0.015977447957866864],[115,82,65,0.01586027921491793],[115,82,66,0.015929150304117432],[115,82,67,0.01618047253097246],[115,82,68,0.016598568253541918],[115,82,69,0.01685307798681405],[115,82,70,0.016196852187897393],[115,82,71,0.015420174257483772],[115,82,72,0.014536564115536601],[115,82,73,0.01355899695628605],[115,82,74,0.012500315343170358],[115,82,75,0.011373555603067395],[115,82,76,0.01019218739300696],[115,82,77,0.00897026552391408],[115,82,78,0.007722493328987784],[115,82,79,0.006464197057277626],[115,83,64,0.016524148019398204],[115,83,65,0.016274600473736807],[115,83,66,0.016197617203451736],[115,83,67,0.016288684935830633],[115,83,68,0.01653353677713143],[115,83,69,0.01691746299033781],[115,83,70,0.01670273676303148],[115,83,71,0.0161160296698507],[115,83,72,0.015418282772441453],[115,83,73,0.014617811640274776],[115,83,74,0.013723000094457762],[115,83,75,0.012742771287540006],[115,83,76,0.011686953570623479],[115,83,77,0.010566539895390107],[115,83,78,0.009393839752208774],[115,83,79,0.008182522887897543],[115,84,64,0.01668610032275186],[115,84,65,0.016811742767527418],[115,84,66,0.01658248911917674],[115,84,67,0.016504104482428533],[115,84,68,0.016563463364473955],[115,84,69,0.016749113749947836],[115,84,70,0.017053185647799406],[115,84,71,0.016772824067392514],[115,84,72,0.016287069499160384],[115,84,73,0.01569282861464886],[115,84,74,0.014993575437011747],[115,84,75,0.014193581199409873],[115,84,76,0.013298430174689423],[115,84,77,0.012315409161068092],[115,84,78,0.011253769279718552],[115,84,79,0.010124859036148773],[115,85,64,0.015950250146347506],[115,85,65,0.016534470574442545],[115,85,66,0.016978471469113923],[115,85,67,0.01682768517898029],[115,85,68,0.01669198522046858],[115,85,69,0.01666638519012885],[115,85,70,0.01674684482706077],[115,85,71,0.016932545315596757],[115,85,72,0.017129173211190177],[115,85,73,0.01676823667151749],[115,85,74,0.01629447747421402],[115,85,75,0.015707020155582677],[115,85,76,0.015006636307156236],[115,85,77,0.014196285816041265],[115,85,78,0.013281509221440238],[115,85,79,0.01227066979360428],[115,86,64,0.015108394890769124],[115,86,65,0.015830341359281942],[115,86,66,0.01643338710836547],[115,86,67,0.016924818254907],[115,86,68,0.01691478053479386],[115,86,69,0.016668347608227965],[115,86,70,0.01651209147526863],[115,86,71,0.016449642631048797],[115,86,72,0.016487243106285895],[115,86,73,0.016632376900806514],[115,86,74,0.01689255977947064],[115,86,75,0.017263833722091892],[115,86,76,0.016789638927665527],[115,86,77,0.016184921287769632],[115,86,78,0.015450901646973481],[115,86,79,0.014592325882275855],[115,87,64,0.014183329676994509],[115,87,65,0.015039392586455874],[115,87,66,0.015799890407982915],[115,87,67,0.016473014045773685],[115,87,68,0.017070452679770632],[115,87,69,0.016748178753814666],[115,87,70,0.01634626245002081],[115,87,71,0.016023287960964503],[115,87,72,0.015790567084371813],[115,87,73,0.015661179773150295],[115,87,74,0.01564851140286766],[115,87,75,0.01576497348819899],[115,87,76,0.01602091154434831],[115,87,77,0.01642370329052949],[115,87,78,0.01697704990398202],[115,87,79,0.0170563329546387],[115,88,64,0.013203009217098372],[115,88,65,0.01418720030957309],[115,88,66,0.015100719303155664],[115,88,67,0.015952648629994213],[115,88,68,0.016754893116523728],[115,88,69,0.016894456536496995],[115,88,70,0.01624253290639168],[115,88,71,0.015651579471667197],[115,88,72,0.01513787437541451],[115,88,73,0.014720117640347226],[115,88,74,0.01441770183430378],[115,88,75,0.014249186708311143],[115,88,76,0.014230982174970111],[115,88,77,0.014376243433176242],[115,88,78,0.014693981493684505],[115,88,79,0.01518839182280483],[115,89,64,0.012198710773638077],[115,89,65,0.013302804065074373],[115,89,66,0.01436215754848301],[115,89,67,0.015386725967632563],[115,89,68,0.016388977295099607],[115,89,69,0.017092370695587923],[115,89,70,0.01619092549959136],[115,89,71,0.01532980593029314],[115,89,72,0.014530073386845033],[115,89,73,0.013815977473789971],[115,89,74,0.013212950611341725],[115,89,75,0.01274582679796118],[115,89,76,0.012437289596491777],[115,89,77,0.012306553790961948],[115,89,78,0.012368284547022663],[115,89,79,0.012631757309293837],[115,90,64,0.011203315284731247],[115,90,65,0.012417057737162422],[115,90,66,0.013612478719859138],[115,90,67,0.014800380749675329],[115,90,68,0.015994123007326756],[115,90,69,0.017196307150865422],[115,90,70,0.016179245734524877],[115,90,71,0.01505116693507656],[115,90,72,0.013966201448897481],[115,90,73,0.012953984970513276],[115,90,74,0.012045915864321098],[115,90,75,0.011273112909717421],[115,90,76,0.010664622547886705],[115,90,77,0.010245880739954675],[115,90,78,0.010037433870690941],[115,90,79,0.010053922470879537],[115,91,64,0.010249709836697811],[115,91,65,0.011561097859518829],[115,91,66,0.012880502269653165],[115,91,67,0.014219544599268455],[115,91,68,0.015592774265864608],[115,91,69,0.017003217955919678],[115,91,70,0.016193941332900582],[115,91,71,0.014807427082291245],[115,91,72,0.013443853600394812],[115,91,73,0.012137991090573553],[115,91,74,0.010927025664205501],[115,91,75,0.009848255732924522],[115,91,76,0.008937057300421406],[115,91,77,0.008225123936310752],[115,91,78,0.007738986479877805],[115,91,79,0.007498816801151446],[115,92,64,0.009369314378344047],[115,92,65,0.010764932209712601],[115,92,66,0.012194264409603663],[115,92,67,0.013669719710061276],[115,92,68,0.015207299587010954],[115,92,69,0.0168109364502211],[115,92,70,0.016220883664016923],[115,92,71,0.014589502425475725],[115,92,72,0.012959553242185527],[115,92,73,0.011370608979583141],[115,92,74,0.009865366879437131],[115,92,75,0.008487088045344843],[115,92,76,0.00727732409723055],[115,92,77,0.006273937448842195],[115,92,78,0.0055094208714776115],[115,92,79,0.005009521230472367],[115,93,64,0.008590735303052524],[115,93,65,0.010056151292677123],[115,93,66,0.011579806348201962],[115,93,67,0.01317486233242148],[115,93,68,0.014858990902834128],[115,93,69,0.016637454984002924],[115,93,70,0.016246069449143873],[115,93,71,0.01438797771944474],[115,93,72,0.01250906346052795],[115,93,73,0.010653300407992967],[115,93,74,0.008868531013931013],[115,93,75,0.007203658050800462],[115,93,76,0.005706140312400641],[115,93,77,0.004419799524839247],[115,93,78,0.0033829447374281326],[115,93,79,0.002626819634189277],[115,94,64,0.00793854827559926],[115,94,65,0.009458765068044765],[115,94,66,0.011060082178675901],[115,94,67,0.012756378302313206],[115,94,68,0.014567165151936958],[115,94,69,0.01649939582683677],[115,94,70,0.016256241102299552],[115,94,71,0.014193553069381868],[115,94,72,0.012087637924597475],[115,94,73,0.009986410934582765],[115,94,74,0.007942416548789884],[115,94,75,0.006009785344424965],[115,94,76,0.004241510486024779],[115,94,77,0.002687051448268918],[115,94,78,0.0013902718600098069],[115,94,79,3.877174501491009E-4],[115,95,64,0.007432212448880626],[115,95,65,0.008992167051349234],[115,95,66,0.010653988498926091],[115,95,67,0.012432232606411867],[115,95,68,0.014348370413866312],[115,95,69,0.016411334248253612],[115,95,70,0.016239424212879338],[115,95,71,0.013997418724574762],[115,95,72,0.011690210357359992],[115,95,73,0.009369153072359063],[115,95,74,0.0070909873572667205],[115,95,75,0.004914579371442118],[115,95,76,0.002897993395092473],[115,95,77,0.0010959059342137013],[115,95,78,-4.426311002773696E-4],[115,95,79,-0.0016760716412656709],[115,96,64,0.007085118000458928],[115,96,65,0.00867022771012813],[115,96,66,0.010375517644946984],[115,96,67,0.012216174789663244],[115,96,68,0.014215698280448252],[115,96,69,0.01638521708332752],[115,96,70,0.01618538080869509],[115,96,71,0.013791556867655966],[115,96,72,0.011311521667757323],[115,96,73,0.008799536801006657],[115,96,74,0.00631598680615768],[115,96,75,0.003923920267816017],[115,96,76,0.00168593632289107],[115,96,77,-3.38574511278698E-4],[115,96,78,-0.002095827243302976],[115,96,79,-0.0035396700630954273],[115,97,64,0.006903768719020564],[115,97,65,0.00850051888180683],[115,97,66,0.010233036233455674],[115,97,67,0.012117081837108747],[115,97,68,0.014178203997356418],[115,97,69,0.01642987818430001],[115,97,70,0.01608597716210482],[115,97,71,0.01356896935402673],[115,97,72,0.010946183914858545],[115,97,73,0.008274246831449053],[115,97,74,0.005616607197321161],[115,97,75,0.0030399019917026083],[115,97,76,6.106766917500836E-4],[115,97,77,-0.0016075288510649301],[115,97,78,-0.0035567208417697014],[115,97,79,-0.005186610841958984],[115,98,64,0.0068871011856097],[115,98,65,0.008483670760073314],[115,98,66,0.010228690536845306],[115,98,67,0.012138419999641872],[115,98,68,0.014240435760325243],[115,98,69,0.016550652026078957],[115,98,70,0.01593546501760725],[115,98,71,0.013323830452921232],[115,98,72,0.010588680351698172],[115,98,73,0.007788466085198676],[115,98,74,0.004989114240538037],[115,98,75,0.0022602376734234472],[115,98,76,-3.2828877459311153E-4],[115,98,77,-0.0027093779956749654],[115,98,78,-0.0048213969022565095],[115,98,79,-0.006610441428561075],[115,99,64,0.007025941922995324],[115,99,65,0.008612862829433174],[115,99,66,0.010357940053387894],[115,99,67,0.01227782688269451],[115,99,68,0.014402074411925547],[115,99,69,0.016749086609398507],[115,99,70,0.015730675227053674],[115,99,71,0.01305156373173883],[115,99,72,0.010233300868277253],[115,99,73,0.00733564490425038],[115,99,74,0.004426426283586025],[115,99,75,0.001577627128712236],[115,99,76,-0.001138167192050649],[115,99,77,-0.0036509341141163793],[115,99,78,-0.005895988276017917],[115,99,79,-0.00781635604124534],[115,100,64,0.007302603728015121],[115,100,65,0.008873449973052498],[115,100,66,0.010609220487155747],[115,100,67,0.012526814977042914],[115,100,68,0.014657684656149948],[115,100,69,0.017022756690063784],[115,100,70,0.015471122878914157],[115,100,71,0.012748842309176433],[115,100,72,0.009874012219909781],[115,100,73,0.006907215556469659],[115,100,74,0.0039176480572908744],[115,100,75,9.790864952620743E-4],[115,100,76,-0.0018337647938779825],[115,100,77,-0.004448538403863205],[115,100,78,-0.006798069746590535],[115,100,79,-0.008822855770707592],[115,101,64,0.007690382239936523],[115,101,65,0.009242112456110953],[115,101,66,0.010962745281723819],[115,101,67,0.0128692227512326],[115,101,68,0.01499481499463543],[115,101,69,0.01736301672230697],[115,101,70,0.015161590049662355],[115,101,71,0.012416487237565334],[115,101,72,0.009507642453233297],[115,101,73,0.006496023316627312],[115,101,74,0.0034516995260832845],[115,101,75,4.4971725955522234E-4],[115,101,76,-0.002433642821137131],[115,101,77,-0.0051242129342984185],[115,101,78,-0.007552880963755412],[115,101,79,-0.00965811979118964],[115,102,64,0.008153500330776067],[115,102,65,0.009682558092412542],[115,102,66,0.011381872750503742],[115,102,67,0.01326820077334797],[115,102,68,0.015376527249392619],[115,102,69,0.017367071855239443],[115,102,70,0.01483885114137842],[115,102,71,0.012090936765964445],[115,102,72,0.00917008000560446],[115,102,73,0.0061371447864456],[115,102,74,0.003062534250458131],[115,102,75,2.199241727739723E-5],[115,102,76,-0.002907206650243543],[115,102,77,-0.005649670861610051],[115,102,78,-0.008134893071504968],[115,102,79,-0.010299835868106469],[115,103,64,0.008657485736861911],[115,103,65,0.010157428692696764],[115,103,66,0.011826525560702537],[115,103,67,0.01368113606582761],[115,103,68,0.01575781222535354],[115,103,69,0.017055088703551102],[115,103,70,0.014552440419545187],[115,103,71,0.01182377662660684],[115,103,72,0.008914748924306055],[115,103,73,0.005885543030322862],[115,103,74,0.00280625997303003],[115,103,75,-2.473262667843035E-4],[115,103,76,-0.00319762204249178],[115,103,77,-0.005968666728744284],[115,103,78,-0.008489174374978417],[115,103,79,-0.010695154976059731],[115,104,64,0.009174641541672834],[115,104,65,0.01063682019487889],[115,104,66,0.012264802872906074],[115,104,67,0.014074372400444915],[115,104,68,0.016103451447098925],[115,104,69,0.01679631626442478],[115,104,70,0.014340374173528648],[115,104,71,0.011654248210905037],[115,104,72,0.00878197689082287],[115,104,73,0.005782445265042946],[115,104,74,0.0027247584452896297],[115,104,75,-3.1601000492423515E-4],[115,104,76,-0.003262682074631837],[115,104,77,-0.00603944005925001],[115,104,78,-0.008574881504365868],[115,104,79,-0.0108046548588552],[115,105,64,0.009685032889252832],[115,105,65,0.011099248015950353],[115,105,66,0.012673919575164845],[115,105,67,0.014424114546873075],[115,105,68,0.016388880318341622],[115,105,69,0.01661595986275137],[115,105,70,0.014228361516633922],[115,105,71,0.011608481721673137],[115,105,72,0.008798235816384767],[115,105,73,0.005854573367292801],[115,105,74,0.0028448866008472097],[115,105,75,-1.572112805220371E-4],[115,105,76,-0.003075725171034841],[115,105,77,-0.005835722866550889],[115,105,78,-0.008366375016209363],[115,105,79,-0.010603580698027209],[115,106,64,0.010177846820374013],[115,106,65,0.01153292198265708],[115,106,66,0.013041387970503839],[115,106,67,0.014717504695499846],[115,106,68,0.016601149174879093],[115,106,69,0.01652690543843116],[115,106,70,0.014229081109929391],[115,106,71,0.01169888432211149],[115,106,72,0.008975629888896379],[115,106,73,0.006113716041529128],[115,106,74,0.0031781134303753003],[115,106,75,2.402153457209661E-4],[115,106,76,-0.002625938253524403],[115,106,77,-0.005347051357562702],[115,106,78,-0.00785356666769327],[115,106,79,-0.010082255036879963],[115,107,64,0.01065319430334951],[115,107,65,0.011937460688419813],[115,107,66,0.013366633563394133],[115,107,67,0.014954124992462048],[115,107,68,0.0167402992864844],[115,107,69,0.016528478214219267],[115,107,70,0.014341077381095095],[115,107,71,0.011923171787305507],[115,107,72,0.009311055787694048],[115,107,73,0.006556006347476003],[115,107,74,0.003719899642146912],[115,107,75,8.711764430184115E-4],[115,107,76,-0.0019188313987002796],[115,107,77,-0.0045792020611977605],[115,107,78,-0.007042342152191953],[115,107,79,-0.009246513096631092],[115,108,64,0.011124356596887826],[115,108,65,0.01232604755041762],[115,108,66,0.013663047346897323],[115,108,67,0.015147928707985618],[115,108,68,0.016821156433689134],[115,108,69,0.016604798753218967],[115,108,70,0.014547273489401305],[115,108,71,0.012263040911213571],[115,108,72,0.00978503237466957],[115,108,73,0.007160902011911624],[115,108,74,0.004448817714723614],[115,108,75,0.001713584788874568],[115,108,76,-9.768858232136704E-4],[115,108,77,-0.0035547538099842155],[115,108,78,-0.00595506026408499],[115,108,79,-0.008118163928768452],[115,109,64,0.011620477848886682],[115,109,65,0.012728030596271754],[115,109,66,0.013960476738292815],[115,109,67,0.01532960229737375],[115,109,68,0.016875544417995887],[115,109,69,0.016722733970600916],[115,109,70,0.01481309855643858],[115,109,71,0.012682480184583785],[115,109,72,0.010360197421609806],[115,109,73,0.0078898661841448],[115,109,74,0.005325410160981558],[115,109,75,0.002727384361291803],[115,109,76,1.5962313467557434E-4],[115,109,77,-0.002313776888720505],[115,109,78,-0.00463112938877977],[115,109,79,-0.00673547782167517],[115,110,64,0.012189705631903714],[115,110,65,0.013191967795201041],[115,110,66,0.014308157086443393],[115,110,67,0.01554936038086796],[115,110,68,0.016954920624369315],[115,110,69,0.01682944090747227],[115,110,70,0.01508422692551477],[115,110,71,0.013125716498128336],[115,110,72,0.010979469163247012],[115,110,73,0.008684746509826547],[115,110,74,0.006290784018195061],[115,110,75,0.003853353458019603],[115,110,76,0.001431626509302828],[115,110,77,-9.146505586641523E-4],[115,110,78,-0.0031276621477579545],[115,110,79,-0.005153700356509634],[115,111,64,0.01289643696479284],[115,111,65,0.013782954614682302],[115,111,66,0.014771933481849651],[115,111,67,0.015873857317923117],[115,111,68,0.017126768852628028],[115,111,69,0.016856693768041484],[115,111,70,0.015291810581398857],[115,111,71,0.013523516201649545],[115,111,72,0.011573551589919748],[115,111,73,0.009476588490053848],[115,111,74,0.007276801468330247],[115,111,75,0.005024705415808233],[115,111,76,0.0027742683794076384],[115,111,77,5.803088315040813E-4],[115,111,78,-0.0015038142704932032],[115,111,79,-0.0034282110380777866],[115,112,64,0.013788448275992522],[115,112,65,0.014550343416901357],[115,112,66,0.015402165955204127],[115,112,67,0.01635384644717561],[115,112,68,0.017441579491404693],[115,112,69,0.01675499430094386],[115,112,70,0.015388051884099342],[115,112,71,0.013830537858383314],[115,112,72,0.012100319519462705],[115,112,73,0.010227231690599034],[115,112,74,0.00824998734564644],[115,112,75,0.006213326465561194],[115,112,76,0.004165412079749865],[115,112,77,0.0021554817676776015],[115,112,78,2.3176221821426195E-4],[115,112,79,-0.0015603462309688547],[115,113,64,0.014888549437852252],[115,113,65,0.015519021285634652],[115,113,66,0.01622531362184721],[115,113,67,0.01701681484764324],[115,113,68,0.017472818027164994],[115,113,69,0.0164965328567639],[115,113,70,0.015345852558535062],[115,113,71,0.014021000716044322],[115,113,72,0.012535918685017097],[115,113,73,0.010915351082125466],[115,113,74,0.009192132030312935],[115,113,75,0.0074046806723162325],[115,113,76,0.005594713879503916],[115,113,77,0.0038051834929194017],[115,113,78,0.0020784448412941143],[115,113,79,4.5466269103284823E-4],[115,114,64,0.01619960134045831],[115,114,65,0.016694190391226403],[115,114,66,0.01724864132590519],[115,114,67,0.01746420278003014],[115,114,68,0.016834664633757712],[115,114,69,0.016069639188331274],[115,114,70,0.015152639766308656],[115,114,71,0.014081735249130773],[115,114,72,0.01286691016085739],[115,114,73,0.011527588670149757],[115,114,74,0.01009033029823105],[115,114,75,0.008586704632709828],[115,114,76,0.007051351851456101],[115,114,77,0.005520235360242701],[115,114,78,0.004029092345855535],[115,114,79,0.002612087546490221],[115,115,64,0.017357525002777964],[115,115,65,0.0171027497609383],[115,115,66,0.016803401193121858],[115,115,67,0.016451219038173395],[115,115,68,0.01601891538924446],[115,115,69,0.015476646108848186],[115,115,70,0.014808508474886234],[115,115,71,0.01401063857086498],[115,115,72,0.013089068099727765],[115,115,73,0.012057716710466957],[115,115,74,0.010936526237226936],[115,115,75,0.009749742852473743],[115,115,76,0.008524352731479983],[115,115,77,0.007288676417407801],[115,115,78,0.006071126667352315],[115,115,79,0.004899134152876189],[115,116,64,0.01570441105828762],[115,116,65,0.01558784033695584],[115,116,66,0.015446465074020768],[115,116,67,0.01527259079236981],[115,116,68,0.015042900500730596],[115,116,69,0.014731786936427915],[115,116,70,0.014324385987515632],[115,116,71,0.013815140457902346],[115,116,72,0.013206177105841842],[115,116,73,0.012505790578874422],[115,116,74,0.011727039188905006],[115,116,75,0.010886457163570059],[115,116,76,0.010002887698201735],[115,116,77,0.009096440818577748],[115,116,78,0.008187579750363497],[115,116,79,0.0072963391791360495],[115,117,64,0.013921726206127692],[115,117,65,0.013940059456336883],[115,117,66,0.013955011801011647],[115,117,67,0.01395944229987895],[115,117,68,0.013934402742699506],[115,117,69,0.013859128347231416],[115,117,70,0.013720220049456135],[115,117,71,0.013510681159839872],[115,117,72,0.013228830139781834],[115,117,73,0.012877291889151404],[115,117,74,0.012462070988028623],[115,117,75,0.011991710118303167],[115,117,76,0.011476536671092517],[115,117,77,0.010928000325527926],[115,117,78,0.010358104164880111],[115,117,79,0.009778931679064582],[115,118,64,0.012057671976491161],[115,118,65,0.012205060787075792],[115,118,66,0.012371837559918412],[115,118,67,0.012551381205008419],[115,118,68,0.012729420421588967],[115,118,69,0.012890540137074892],[115,118,70,0.01302319184368955],[115,118,71,0.013119202084820328],[115,118,72,0.013173227793654662],[115,118,73,0.013182262418813848],[115,118,74,0.01314519476026775],[115,118,75,0.013062422309495197],[115,118,76,0.012935520758528747],[115,118,77,0.01276697121420523],[115,118,78,0.012559946527638815],[115,118,79,0.012318158025845767],[115,119,64,0.010166401824278323],[115,119,65,0.010434588454506526],[115,119,66,0.010745891344290714],[115,119,67,0.011094151484780263],[115,119,68,0.011469980220439753],[115,119,69,0.011863703274185096],[115,119,70,0.012265955090881443],[115,119,71,0.012667650374664963],[115,119,72,0.013059979718743621],[115,119,73,0.013434429368424759],[115,119,74,0.013782825527842362],[115,119,75,0.01409740357639027],[115,119,76,0.01437090251872878],[115,119,77,0.014596684952958005],[115,119,78,0.014768882805617594],[115,119,79,0.014882569050200816],[115,120,64,0.008305457984544119],[115,120,65,0.008683980976079381],[115,120,66,0.009129870760474447],[115,120,67,0.009637348100424142],[115,120,68,0.010202001310351483],[115,120,69,0.010820157513344301],[115,120,70,0.011484902373663695],[115,120,71,0.012186498307739276],[115,120,72,0.012912908933368508],[115,120,73,0.013650322447108466],[115,120,74,0.014383672860979253],[115,120,75,0.015097158065427364],[115,120,76,0.01577475372604891],[115,120,77,0.016400722066930207],[115,120,78,0.01696011464360493],[115,120,79,0.01743926826362165],[115,121,64,0.0065332906352375255],[115,121,65,0.007009753043561974],[115,121,66,0.0075778893976927225],[115,121,67,0.008232194688636561],[115,121,68,0.008973211992844902],[115,121,69,0.009803389733625436],[115,121,70,0.010718459713988143],[115,121,71,0.011708278394884085],[115,121,72,0.012757859685506133],[115,121,73,0.01384838324421723],[115,121,74,0.014958175801073365],[115,121,75,0.016063663123334637],[115,121,76,0.017140290362907467],[115,121,77,0.0181634086489982],[115,121,78,0.017374395144155307],[115,121,79,0.016603069179763],[115,122,64,0.004906860587070781],[115,122,65,0.0054672563906455925],[115,122,66,0.00614321699775088],[115,122,67,0.006929385497628892],[115,122,68,0.00783112001961896],[115,122,69,0.008856964057962222],[115,122,70,0.01000541034408895],[115,122,71,0.011266134963004618],[115,122,72,0.012621509492752656],[115,122,73,0.014048067314709308],[115,122,74,0.015517920268934096],[115,122,75,0.017000122007138015],[115,122,76,0.017897358687364823],[115,122,77,0.01656903197697107],[115,122,78,0.015324616191584019],[115,122,79,0.014194891482053273],[115,123,64,0.003479326579001793],[115,123,65,0.004108420846560407],[115,123,66,0.004876093527480413],[115,123,67,0.005776992649599367],[115,123,68,0.006821037623278094],[115,123,69,0.008022694712635378],[115,123,70,0.009383248526231912],[115,123,71,0.010892392952089094],[115,123,72,0.012530185931260191],[115,123,73,0.01426893937359927],[115,123,74,0.016075039158435823],[115,123,75,0.017910690401632394],[115,123,76,0.01665457968830282],[115,123,77,0.014962647689286894],[115,123,78,0.013361237609716975],[115,123,79,0.011889114885261736],[115,124,64,0.002297818123376879],[115,124,65,0.0029795765454064876],[115,124,66,0.003821618131463971],[115,124,67,0.004818439693107134],[115,124,68,0.005984162184110253],[115,124,69,0.007338862488125707],[115,124,70,0.00888656419368916],[115,124,71,0.010617144584321066],[115,124,72,0.012508688695180589],[115,124,73,0.014529761962695686],[115,124,74,0.01664159530217868],[115,124,75,0.017535984848482244],[115,124,76,0.01546203817470842],[115,124,77,0.013435032008983354],[115,124,78,0.011503220386514067],[115,124,79,0.009712778309600512],[115,125,64,0.0014012947169498738],[115,125,65,0.0021193581361910346],[115,125,66,0.0030177138226496693],[115,125,67,0.0040905422956324326],[115,125,68,0.005355713353673477],[115,125,69,0.006838475569467821],[115,125,70,0.008545459105065756],[115,125,71,0.010466854498396459],[115,125,72,0.012579117398772825],[115,125,73,0.014847577920660519],[115,125,74,0.017228947481352022],[115,125,75,0.01669094796229834],[115,125,76,0.014321278473719817],[115,125,77,0.011994697895634935],[115,125,78,0.009766228705207942],[115,125,79,0.007688744626090896],[115,126,64,8.18492112498417E-4],[115,126,65,0.0015566917197640698],[115,126,66,0.0024931686539179402],[115,126,67,0.003621616818137485],[115,126,68,0.004963127355575164],[115,126,69,0.006547575414028354],[115,126,70,0.008383995126035045],[115,126,71,0.010462983877993647],[115,126,72,0.012759705544540915],[115,126,73,0.015236786955099182],[115,126,74,0.017847099636800562],[115,126,75,0.015856108993043735],[115,126,76,0.013232525472382099],[115,126,77,0.010647506490215812],[115,126,78,0.008161982193920846],[115,126,79,0.005834705338456672],[115,127,64,5.659562303836774E-4],[115,127,65,0.0013088651257579895],[115,127,66,0.0022657540043078414],[115,127,67,0.003429657409509185],[115,127,68,0.004824309087225629],[115,127,69,0.006483588267365662],[115,127,70,0.008418675176561807],[115,127,71,0.010620634040439648],[115,127,72,0.01306366103244931],[115,127,73,0.015708216582824196],[115,127,74,0.0178266982011297],[115,127,75,0.015026784931747302],[115,127,76,0.012194750820533963],[115,127,77,0.009396403767062321],[115,127,78,0.006697651548077182],[115,127,79,0.004162230013782987],[115,128,64,6.461651799388216E-4],[115,128,65,0.0013796820350610711],[115,128,66,0.0023404205092549166],[115,128,67,0.0035205821591900513],[115,128,68,0.004945942553354066],[115,128,69,0.0066537228233561636],[115,128,70,0.00865695730767702],[115,128,71,0.010947209889856936],[115,128,72,0.013498013537325196],[115,128,73,0.01626818767156402],[115,128,74,0.017151522416283944],[115,128,75,0.014199100780308824],[115,128,76,0.011205773231481725],[115,128,77,0.008241197206162613],[115,128,78,0.005375297950229328],[115,128,79,0.002675861037123605],[115,129,64,0.0010457397568831672],[115,129,65,0.0017577003511565408],[115,129,66,0.0027075720647077675],[115,129,67,0.0038865487509637856],[115,129,68,0.005321860072569548],[115,129,69,0.0070534144529816305],[115,129,70,0.009095802299705717],[115,129,71,0.011441103578361285],[115,129,72,0.014062469033906372],[115,129,73,0.01691757478312607],[115,129,74,0.01642987973083877],[115,129,75,0.013370420225959015],[115,129,76,0.010262392999582587],[115,129,77,0.007178372732097757],[115,129,78,0.00419135666709766],[115,129,79,0.0013722542065862417],[115,130,64,0.0017337426849167682],[115,130,65,0.0024145551267146467],[115,130,66,0.0033414182402607515],[115,130,67,0.004504339969645916],[115,130,68,0.005931470612130569],[115,130,69,0.0076648163469654],[115,130,70,0.009720255103451881],[115,130,71,0.012090398659130076],[115,130,72,0.01474827170155668],[115,130,73,0.017650861484305985],[115,130,74,0.015664048963704713],[115,130,75,0.012539802515019958],[115,130,76,0.0093605608415542],[115,130,77,0.006200952138078679],[115,130,78,0.0031361651607725734],[115,130,79,2.3936562862264855E-4],[115,131,64,0.002660066777155487],[115,131,65,0.003303366260044922],[115,131,66,0.004198405346379986],[115,131,67,0.005333819325260308],[115,131,68,0.006738247523279169],[115,131,69,0.008455337840755913],[115,131,70,0.010502060377148941],[115,131,71,0.0128715949563174],[115,131,72,0.01553707339340098],[115,131,73,0.01788117959535801],[115,131,74,0.014861165467657518],[115,131,75,0.011708485535227646],[115,131,76,0.008495581157821888],[115,131,77,0.005298391187596243],[115,131,78,0.002193536010136019],[115,131,79,-7.44314681725674E-4],[115,132,64,0.003753886244697547],[115,132,65,0.004357197233393744],[115,132,66,0.005215684496726145],[115,132,67,0.006316407153995507],[115,132,68,0.007688217714421418],[115,132,69,0.009376162999954685],[115,132,70,0.011398235485619058],[115,132,71,0.013748267091434159],[115,132,72,0.01639971262596427],[115,132,73,0.017050139487775364],[115,132,74,0.014034091049733183],[115,132,75,0.010880526642900517],[115,132,76,0.0076624914386880525],[115,132,77,0.004456669209460852],[115,132,78,0.0013405331084275056],[115,132,79,-0.0016103181257047148],[115,133,64,0.004921155702031231],[115,133,65,0.005485153566559503],[115,133,66,0.006305804927521716],[115,133,67,0.007368353800271175],[115,133,68,0.008701750603111125],[115,133,69,0.010352439583968654],[115,133,70,0.01233952352233524],[115,133,71,0.014657651903396693],[115,133,72,0.017280834079811437],[115,133,73,0.016215974901230664],[115,133,74,0.013220852843386725],[115,133,75,0.010084216057899376],[115,133,76,0.006879328970315479],[115,133,77,0.0036832242431658235],[115,133,78,5.73830499369562E-4],[115,133,79,-0.0023727131314717374],[115,134,64,0.00606216461478318],[115,134,65,0.006588099222621537],[115,134,66,0.007370527554779582],[115,134,67,0.00839260611536742],[115,134,68,0.009683338538765593],[115,134,69,0.011290697378635157],[115,134,70,0.013235091225397243],[115,134,71,0.01551223375609592],[115,134,72,0.01809697566286019],[115,134,73,0.015457353110496801],[115,134,74,0.01249452649977209],[115,134,75,0.009386283029143842],[115,134,76,0.006205760442962145],[115,134,77,0.003030002715489759],[115,134,78,-6.292701147690591E-5],[115,134,79,-0.002996645803748901],[115,135,64,0.007095413199977168],[115,135,65,0.007584858114973987],[115,135,66,0.008329294784031235],[115,135,67,0.0093095304294121],[115,135,68,0.010554622334224169],[115,135,69,0.01211426785111926],[115,135,70,0.014010431655187222],[115,135,71,0.016240180473058183],[115,135,72,0.017547315401885283],[115,135,73,0.014839140255601735],[115,135,74,0.01191564581076041],[115,135,75,0.008842384006130452],[115,135,76,0.0056920469603951715],[115,135,77,0.002541392685440475],[115,135,78,-5.31649300089806E-4],[115,135,79,-0.003450684616833144],[115,136,64,0.007958919448409109],[115,136,65,0.00841382381985539],[115,136,66,0.009121139982607081],[115,136,67,0.010059113408720123],[115,136,68,0.011256888496072181],[115,136,69,0.012766102793762536],[115,136,70,0.014610540401796239],[115,136,71,0.016788916606740808],[115,136,72,0.017069075546008984],[115,136,73,0.014407932241446555],[115,136,74,0.01152725431205691],[115,136,75,0.008491671957900298],[115,136,76,0.005373143585681309],[115,136,77,0.0022478820850619927],[115,136,78,-8.065399623460245E-4],[115,136,79,-0.0037138982943532486],[115,137,64,0.008609804129633795],[115,137,65,0.009032478432715594],[115,137,66,0.009704138121971517],[115,137,67,0.010600332363648109],[115,137,68,0.011750348132097778],[115,137,69,0.013207959483998676],[115,137,70,0.014999012424144824],[115,137,71,0.01712414403649995],[115,137,72,0.016805850019934072],[115,137,73,0.014193129247359014],[115,137,74,0.011355990735709916],[115,137,75,0.008357864783193175],[115,137,76,0.0052697212546460905],[115,137,77,0.0021670041313715965],[115,137,78,-8.732570906954963E-4],[115,137,79,-0.003775151330448993],[115,138,64,0.009024275617114535],[115,138,65,0.009417309490982746],[115,138,66,0.01005524935605971],[115,138,67,0.010910910360687665],[115,138,68,0.012013789218165538],[115,138,69,0.013419943704559718],[115,138,70,0.015157476682705213],[115,138,71,0.0172291754376508],[115,138,72,0.016772549603371087],[115,138,73,0.014207761917849494],[115,138,74,0.011412965396860306],[115,138,75,0.00845014804865483],[115,138,76,0.005389070006325839],[115,138,77,0.002304213988623382],[115,138,78,-7.280906570771644E-4],[115,138,79,-0.0036323625596757663],[115,139,64,0.009198016352102796],[115,139,65,0.009564126812619632],[115,139,66,0.010170557406611082],[115,139,67,0.010987458024433048],[115,139,68,0.012044604116157324],[115,139,69,0.013400412507934813],[115,139,70,0.015085370423539276],[115,139,71,0.017104582430103224],[115,139,72,0.016967494817980537],[115,139,73,0.01444906760834931],[115,139,74,0.011694426027265684],[115,139,75,0.008763910740628988],[115,139,76,0.005725882423979253],[115,139,77,0.0026536958174186963],[115,139,78,-3.771570887382366E-4],[115,139,79,-0.0032917270536004894],[115,140,64,0.009146972752212398],[115,140,65,0.00948878107584028],[115,140,66,0.01006590459123787],[115,140,67,0.010846003868534718],[115,140,68,0.011859194177086104],[115,140,69,0.013166238541374636],[115,140,70,0.014800054895107969],[115,140,71,0.01676816013233461],[115,140,72,0.01737259979635786],[115,140,73,0.014898815146950987],[115,140,74,0.01218221165260862],[115,140,75,0.009281312794059299],[115,140,76,0.006262916247875977],[115,140,77,0.0031990994005991896],[115,140,78,1.6438841175269123E-4],[115,140,79,-0.0027669016083418318],[115,141,64,0.008908550383402004],[115,141,65,0.009228285966437872],[115,141,66,0.009777925319334762],[115,141,67,0.010522914972186579],[115,141,68,0.011493753229031841],[115,141,69,0.012753437703033249],[115,141,70,0.014337274223622168],[115,141,71,0.01625520978263622],[115,141,72,0.017953268184835103],[115,141,73,0.015523376645679404],[115,141,74,0.012843993182799445],[115,141,75,0.009971683230403266],[115,141,76,0.006971535181931011],[115,141,77,0.003914205585405145],[115,141,78,8.731212855056719E-4],[115,141,79,-0.0020781540714613976],[115,142,64,0.008543216252126515],[115,142,65,0.008842345745323433],[115,142,66,0.009365479894925718],[115,142,67,0.010076209820113348],[115,142,68,0.01100543173822418],[115,142,69,0.012218161876167557],[115,142,70,0.013751959137668099],[115,142,71,0.015619141044722286],[115,142,72,0.017810314864098776],[115,142,73,0.01627354495251092],[115,142,74,0.013633299444332312],[115,142,75,0.01079174779516241],[115,142,76,0.007812126970275846],[115,142,77,0.004763519827066883],[115,142,78,0.0017180982922026836],[115,142,79,-0.0012514767385343572],[115,143,64,0.008121566910971057],[115,143,65,0.008400737935531748],[115,143,66,0.008897382366114991],[115,143,67,0.009573664453245959],[115,143,68,0.010460862395748246],[115,143,69,0.01162569639639863],[115,143,70,0.013107758581597021],[115,143,71,0.01492160803245963],[115,143,72,0.017060206948914185],[115,143,73,0.017092956176183827],[115,143,74,0.014497097194075914],[115,143,75,0.011692285374564836],[115,143,76,0.008739758027906096],[115,143,77,0.005706851927274956],[115,143,78,0.0026642963994592764],[115,143,79,-3.163452267755061E-4],[115,144,64,0.007672081853050672],[115,144,65,0.007932325730040003],[115,144,66,0.008402859970380793],[115,144,67,0.009044936507225529],[115,144,68,0.009890194878204821],[115,144,69,0.011006677188443703],[115,144,70,0.012435729097008307],[115,144,71,0.014193971332719695],[115,144,72,0.01627662806202884],[115,144,73,0.01795017827198626],[115,144,74,0.015404220970779956],[115,144,75,0.012642634319647671],[115,144,76,0.009724518706381385],[115,144,77,0.006715296366407504],[115,144,78,0.0036840636136598074],[115,144,79,7.0108234769997E-4],[115,145,64,0.007210477083796356],[115,145,65,0.007453464519505471],[115,145,66,0.00789893393461342],[115,145,67,0.008507815595059946],[115,145,68,0.009312089746665322],[115,145,69,0.010380685143709477],[115,145,70,0.011756371839077236],[115,145,71,0.01345760789351366],[115,145,72,0.01548174715569213],[115,145,73,0.017808161616408368],[115,145,74,0.016331326751870275],[115,145,75,0.01361909437881501],[115,145,76,0.010742542032905488],[115,145,77,0.007765022378649752],[115,145,78,0.004753816488595174],[115,145,79,0.0017776839130348155],[115,146,64,0.006751977723950767],[115,146,65,0.006979910659189035],[115,146,66,0.007401926292098208],[115,146,67,0.007979278857432189],[115,146,68,0.008744266262584455],[115,146,69,0.009766225906922344],[115,146,70,0.011088981300850507],[115,146,71,0.012732564120751218],[115,146,72,0.014696289111504071],[115,146,73,0.016961751845818968],[115,146,74,0.017256707875616055],[115,146,75,0.014599683955307164],[115,146,76,0.01177175326645922],[115,146,77,0.00883405975156478],[115,146,78,0.005851897849327443],[115,146,79,0.00289232943086857],[115,147,64,0.00631083433617192],[115,147,65,0.006526334419687558],[115,147,66,0.0069269720461416035],[115,147,67,0.007475003605155182],[115,147,68,0.0082030177528184],[115,147,69,0.009180252740145028],[115,147,70,0.01045118275172242],[115,147,71,0.012037116958319237],[115,147,72,0.013939130184921017],[115,147,73,0.01614092512192485],[115,147,74,0.018160593881062982],[115,147,75,0.015564366138151308],[115,147,76,0.012792009486102693],[115,147,77,0.009902338568987375],[115,147,78,0.006958503889918609],[115,147,79,0.004025683506490289],[115,148,64,0.005899921398464086],[115,148,65,0.006105917011242068],[115,148,66,0.006487616394987799],[115,148,67,0.007008965762323997],[115,148,68,0.0077028131233279045],[115,148,69,0.008637774784692836],[115,148,70,0.009858552644006435],[115,148,71,0.011387413382082772],[115,148,72,0.013226964866481773],[115,148,73,0.015362873100881493],[115,148,74,0.017766512967948768],[115,148,75,0.01649524043353987],[115,148,76,0.013785222608024126],[115,148,77,0.010951732557474685],[115,148,78,0.008055637244976762],[115,148,79,0.005160058226842413],[115,149,64,0.005530418129413579],[115,149,65,0.005730031900001809],[115,149,66,0.006095497247351397],[115,149,67,0.006593124349587693],[115,149,68,0.007255984769657289],[115,149,69,0.008151550974003038],[115,149,70,0.009324322239757182],[115,149,71,0.0107971885512274],[115,149,72,0.01257404438481794],[115,149,73,0.0146423522554971],[115,149,74,0.016975649775549943],[115,149,75,0.017376700098708717],[115,149,76,0.014735465803286324],[115,149,77,0.011966106092876561],[115,149,78,0.009127086191021719],[115,149,79,0.006279316496386891],[115,150,64,0.00521157186852216],[115,150,65,0.005408010631260898],[115,150,66,0.005760113252707659],[115,150,67,0.006237192239935987],[115,150,68,0.006872503123424218],[115,150,69,0.007731869839894919],[115,150,70,0.008859164697812935],[115,150,71,0.010277562846966692],[115,150,72,0.01199198706246586],[115,150,73,0.013991511604791102],[115,150,74,0.01625171942512345],[115,150,75,0.01819555499094274],[115,150,76,0.015629063295128906],[115,150,77,0.01293136492534147],[115,150,78,0.010158430128662767],[115,150,79,0.007368826127404938],[115,151,64,0.004950544218518799],[115,151,65,0.005146993376685887],[115,151,66,0.0054886775706946885],[115,151,67,0.005948493417778384],[115,151,68,0.0065598380705956805],[115,151,69,0.007386415449357409],[115,151,70,0.008471065853972833],[115,151,71,0.009836918020057326],[115,151,72,0.011489660725802148],[115,151,73,0.013419782768053105],[115,151,74,0.015604776103746885],[115,151,75,0.018011297086716935],[115,151,76,0.016454663520617727],[115,151,77,0.013835510683055724],[115,151,78,0.011137071493112093],[115,151,79,0.008415464930801992],[115,152,64,0.004752340165339845],[115,152,65,0.004951864429875263],[115,152,66,0.005286057609553582],[115,152,67,0.005731906975856466],[115,152,68,0.006322907479243501],[115,152,69,0.007120219709003587],[115,152,70,0.008165278925290996],[115,152,71,0.009480852664796835],[115,152,72,0.01107313736508446],[115,152,73,0.01293383250835352],[115,152,74,0.01504218760881729],[115,152,75,0.017367017477968878],[115,152,76,0.017203295646401506],[115,152,77,0.014668699217247793],[115,152,78,0.012052294238672843],[115,152,79,0.009407677045998349],[115,153,64,0.004619820405544369],[115,153,65,0.004825272887288],[115,153,66,0.0051548009745236364],[115,153,67,0.005589898093742228],[115,153,68,0.006164113081843245],[115,153,69,0.006935701279720846],[115,153,70,0.007944363372754653],[115,153,71,0.00921221723832477],[115,153,72,0.01074572023969826],[115,153,73,0.012537577927845999],[115,153,74,0.014568634997104967],[115,153,75,0.016809744427868648],[115,153,76,0.017868409432317902],[115,153,77,0.015423302853467845],[115,153,78,0.0128953490425514],[115,153,79,0.010335580744040474],[115,154,64,0.004553797130256835],[115,154,65,0.0047677387696356405],[115,154,66,0.005095247883514286],[115,154,67,0.005522636256335812],[115,154,68,0.006083463970008344],[115,154,69,0.00683279135483178],[115,154,70,0.0078083081651266675],[115,154,71,0.00903122885012134],[115,154,72,0.010508043627303124],[115,154,73,0.012232264478445424],[115,154,74,0.014186162422392049],[115,154,75,0.016342492484333657],[115,154,76,0.018445898439543754],[115,154,77,0.016093976616853346],[115,154,78,0.013659565374653298],[115,154,79,0.011191127936701807],[115,155,64,0.004553213539300573],[115,155,65,0.004777844862253943],[115,155,66,0.005105730329201176],[115,155,67,0.005528200990899056],[115,155,68,0.00607878797785829],[115,155,69,0.006809146571291071],[115,155,70,0.007754739700508489],[115,155,71,0.008935666057635686],[115,155,72,0.010358245423677236],[115,155,73,0.012016606956602744],[115,155,74,0.01389427728331242],[115,155,75,0.01596576528281535],[115,155,76,0.018198140506286768],[115,155,77,0.0166777285020069],[115,155,78,0.014340490582945504],[115,155,79,0.0119683156260967],[115,156,64,0.004615407389006541],[115,156,65,0.004852514581765385],[115,156,66,0.005182858293959804],[115,156,67,0.005602875426773467],[115,156,68,0.006146031254039057],[115,156,69,0.006860449345120165],[115,156,70,0.0077792146612686176],[115,156,71,0.008921143920039254],[115,156,72,0.010292212812745323],[115,156,73,0.011886993660005979],[115,156,74,0.01369010080852665],[115,156,75,0.01567764109916313],[115,156,76,0.01781866677518821],[115,156,77,0.017173993861245896],[115,156,78,0.014936056148517304],[115,156,79,0.012663449534234488],[115,157,64,0.004736458912212166],[115,157,65,0.004987376210478105],[115,157,66,0.005321893356723764],[115,157,67,0.005741528013005981],[115,157,68,0.006279646351725266],[115,157,69,0.006980795949408621],[115,157,70,0.00787559810237168],[115,157,71,0.008981469583178761],[115,157,72,0.010303901243535803],[115,157,73,0.011837753897104642],[115,157,74,0.013568569215054272],[115,157,75,0.01547389337726566],[115,157,76,0.017524611243301402],[115,157,77,0.017584713988307975],[115,157,78,0.0154467712706417],[115,157,79,0.01327546016001164],[115,158,64,0.0049116234891737045],[115,158,65,0.005177213879413718],[115,158,66,0.005517210068918731],[115,158,67,0.005938082765630611],[115,158,68,0.006473069200729761],[115,158,69,0.007163172685788409],[115,158,70,0.008036527102842432],[115,158,71,0.009109078694912525],[115,158,72,0.01038572697266631],[115,158,73,0.011861489057409429],[115,158,74,0.013522685587475217],[115,158,75,0.015348146310208236],[115,158,76,0.017310433487142642],[115,158,77,0.017914418978084965],[115,158,78,0.01587594394991227],[115,158,79,0.01380627152237665],[115,159,64,0.0051358494934505205],[115,159,65,0.0054165057255686514],[115,159,66,0.005762845520034431],[115,159,67,0.0061860784582941485],[115,159,68,0.006719285366101322],[115,159,69,0.007400020538297794],[115,159,70,0.008253960345098253],[115,159,71,0.009295552981156452],[115,159,72,0.010529033457419786],[115,159,73,0.011949467471586194],[115,159,74,0.013543822640839432],[115,159,75,0.015292065562545967],[115,159,76,0.017168283160124573],[115,159,77,0.018170314946636422],[115,159,78,0.01622992974693112],[115,159,79,0.01426122286283216],[115,160,64,0.0054043817872163145],[115,160,65,0.005700049698931238],[115,160,66,0.006053137562101473],[115,160,67,0.006479317217219133],[115,160,68,0.0070114860432587],[115,160,69,0.0076838887419533085],[115,160,70,0.008519814027148501],[115,160,71,0.00953221934911091],[115,160,72,0.010724631915518253],[115,160,73,0.012092083315420282],[115,160,74,0.013622076548468668],[115,160,75,0.015295584232416387],[115,160,76,0.01708807674140877],[115,160,77,0.018362375699550938],[115,160,78,0.016518408405011804],[115,160,79,0.014649543598035726],[115,161,64,0.00571345139581569],[115,161,65,0.006023677549807368],[115,161,66,0.006383452216249279],[115,161,67,0.006812603034085908],[115,161,68,0.00734381429071433],[115,161,69,0.008008177747074682],[115,161,70,0.008826684558129913],[115,161,71,0.009810830925239539],[115,161,72,0.010963416403292925],[115,161,73,0.012279379840751285],[115,161,74,0.013746672037385967],[115,161,75,0.015347164165604235],[115,161,76,0.01705759097052668],[115,161,77,0.018503438940652994],[115,161,78,0.01675468853790265],[115,161,79,0.014984881833987124],[115,162,64,0.006061051951612093],[115,162,65,0.006385057587052476],[115,162,66,0.006751000843544119],[115,162,67,0.007182570768200872],[115,162,68,0.0077122020577040755],[115,162,69,0.00836797211438718],[115,162,70,0.009168658538265114],[115,162,71,0.010124330481578783],[115,162,72,0.011237053804056417],[115,162,73,0.012501637249454679],[115,162,74,0.013906418978870983],[115,162,75,0.015434092749347757],[115,162,76,0.017062572986883896],[115,162,77,0.018609307117126595],[115,162,78,0.016956040597649862],[115,162,79,0.015285886777154492],[115,163,64,0.006447803562150023],[115,163,65,0.006784586862754507],[115,163,66,0.007155747726332316],[115,163,67,0.0075886062721954185],[115,163,68,0.008115298625460168],[115,163,69,0.008760963935064233],[115,163,70,0.009542210580007988],[115,163,71,0.010467696754794597],[115,163,72,0.011538749163037007],[115,163,73,0.012750025563419747],[115,163,74,0.014090220729568287],[115,163,75,0.015542815331607247],[115,163,76,0.017086867200403928],[115,163,77,0.01869784439656851],[115,163,78,0.017144058353324283],[115,163,79,0.01557684540480661],[115,164,64,0.006874174946068351],[115,164,65,0.007222273193742994],[115,164,66,0.007596964984493433],[115,164,67,0.008029080130588243],[115,164,68,0.008550388999771404],[115,164,69,0.009183068610073232],[115,164,70,0.009941535872202365],[115,164,71,0.010833019270598395],[115,164,72,0.011858093579509687],[115,164,73,0.013011260844308764],[115,164,74,0.014281577401524232],[115,164,75,0.015653326651407458],[115,164,76,0.0171067372435994],[115,164,77,0.01861874629052645],[115,164,78,0.01735034965262452],[115,164,79,0.01589331984387806],[115,165,64,0.007317437198968192],[115,165,65,0.007672378889503437],[115,165,66,0.008045771504388021],[115,165,67,0.00847185399328267],[115,165,68,0.00898195190690223],[115,165,69,0.009595242736193828],[115,165,70,0.010323941236440983],[115,165,71,0.011173859503908692],[115,165,72,0.012144855322216137],[115,165,73,0.013231329084665483],[115,165,74,0.01442276927798413],[115,165,75,0.015704346447630083],[115,165,76,0.01705755550530777],[115,165,77,0.018460906186586898],[115,165,78,0.0176453740705328],[115,165,79,0.016308120205948153],[115,166,64,0.007749713296715785],[115,166,65,0.008103386599928151],[115,166,66,0.008466992836144454],[115,166,67,0.008878033074434208],[115,166,68,0.009367306717030465],[115,166,69,0.009951005820519554],[115,166,70,0.010639196191256764],[115,166,71,0.011436357898398869],[115,166,72,0.012341740883867105],[115,166,73,0.013349771701058201],[115,166,74,0.014450511592359012],[115,166,75,0.015630166044127723],[115,166,76,0.016871645891576838],[115,166,77,0.018155179985907457],[115,166,78,0.018099241892052604],[115,166,79,0.01689175078888031],[115,167,64,0.008150545526834887],[115,167,65,0.00849195088342258],[115,167,66,0.008834417949704665],[115,167,67,0.009218504601267889],[115,167,68,0.009674406625721922],[115,167,69,0.010215409278372507],[115,167,70,0.010849552520140042],[115,167,71,0.011580139610598382],[115,167,72,0.012405990757875011],[115,167,73,0.013321750977673772],[115,167,74,0.01431825261802081],[115,167,75,0.015382932927882217],[115,167,76,0.016500306973826314],[115,167,77,0.017652496140421328],[115,167,78,0.018760929212240738],[115,167,79,0.01769257122407299],[115,168,64,0.008505297339504999],[115,168,65,0.00882127107802345],[115,168,66,0.009129137469552143],[115,168,67,0.00947224165651527],[115,168,68,0.009880107638106397],[115,168,69,0.010363265188070077],[115,168,70,0.010927923685416497],[115,168,71,0.01157643287761088],[115,168,72,0.012307423472318267],[115,168,73,0.013116005778015631],[115,168,74,0.013994027125051097],[115,168,75,0.014930388711833432],[115,168,76,0.01591142243767273],[115,168,77,0.01692132820543233],[115,168,78,0.017942672104560825],[115,168,79,0.018739622784256983],[115,169,64,0.008803391476073244],[115,169,65,0.009079291794220165],[115,169,66,0.009337702203892732],[115,169,67,0.009624420553690985],[115,169,68,0.00996824502743655],[115,169,69,0.010377177957349196],[115,169,70,0.010855864749221001],[115,169,71,0.011405988164650308],[115,169,72,0.012026283735059502],[115,169,73,0.012712618007500285],[115,169,74,0.013458130661281898],[115,169,75,0.014253441437428937],[115,169,76,0.01508692272888602],[115,169,77,0.01594503858936217],[115,169,78,0.01681275083379003],[115,169,79,0.017673992824667403],[115,170,64,0.009036459946475508],[115,170,65,0.009256814298969638],[115,170,66,0.00945019246715049],[115,170,67,0.009664449321598769],[115,170,68,0.009927621748654152],[115,170,69,0.0102454898152917],[115,170,70,0.010621469414580118],[115,170,71,0.011056919450596388],[115,170,72,0.011551019663347848],[115,170,73,0.012100717153407782],[115,170,74,0.012700742987209175],[115,170,75,0.013343700154883788],[115,170,76,0.014020224045566701],[115,170,77,0.014719216501414214],[115,170,78,0.015428154412329694],[115,170,79,0.01613347371977233],[115,171,64,0.0091964046760262],[115,171,65,0.009345517643955564],[115,171,66,0.009458197086677961],[115,171,67,0.009583906231534177],[115,171,68,0.009749907788077525],[115,171,69,0.00996013916467151],[115,171,70,0.010217183282397848],[115,171,71,0.01052246681599269],[115,171,72,0.010875988339161617],[115,171,73,0.011276122228681252],[115,171,74,0.011719500084872004],[115,171,75,0.012200971302907638],[115,171,76,0.012713644307507321],[115,171,77,0.013249009844127007],[115,171,78,0.013797147604059957],[115,171,79,0.014347017350209481],[115,172,64,0.009273367522375911],[115,172,65,0.009335888270283667],[115,172,66,0.00935270086295135],[115,172,67,0.009374387178545279],[115,172,68,0.009427449308052522],[115,172,69,0.009514430707602219],[115,172,70,0.00963753229874965],[115,172,71,0.009798679377572544],[115,172,72,0.009999088812597364],[115,172,73,0.01023892032875349],[115,172,74,0.010517014045235116],[115,172,75,0.010830716295865775],[115,172,76,0.011175795621544034],[115,172,77,0.011546450687000942],[115,172,78,0.011935411739774016],[115,172,79,0.012334137099481212],[115,173,64,0.00925360824136145],[115,173,65,0.009215056698344685],[115,173,66,0.009121879128153381],[115,173,67,0.009025260603146843],[115,173,68,0.008950986320180087],[115,173,69,0.008900716132323773],[115,173,70,0.00887676524254425],[115,173,71,0.008882017490250966],[115,173,72,0.008919321554119532],[115,173,73,0.008990980891112171],[115,173,74,0.009098340021435135],[115,173,75,0.00924146961158542],[115,173,76,0.009418952649366078],[115,173,77,0.009627773847311923],[115,173,78,0.009863314255862836],[115,173,79,0.010119452916495865],[115,174,64,0.009117288856467311],[115,174,65,0.008964539786001521],[115,174,66,0.00874879792142342],[115,174,67,0.008521328512537413],[115,174,68,0.008307277493022507],[115,174,69,0.008107984021398527],[115,174,70,0.007926408976775644],[115,174,71,0.007766873012021359],[115,174,72,0.007634273232895355],[115,174,73,0.0075334046261371105],[115,174,74,0.007468389316876322],[115,174,75,0.007442216557712934],[115,174,76,0.007456396172134786],[115,174,77,0.007510727995270214],[115,174,78,0.00760318967696861],[115,174,79,0.007729945037693574],[115,175,64,0.008848046150705781],[115,175,65,0.008569577625126595],[115,175,66,0.008220444119712433],[115,175,67,0.0078514665391566],[115,175,68,0.007487254552226652],[115,175,69,0.00712942195752104],[115,175,70,0.006782123764295695],[115,175,71,0.0064515987888205195],[115,175,72,0.00614520012951504],[115,175,73,0.005870542733781965],[115,175,74,0.005634771631881208],[115,175,75,0.005443954212711045],[115,175,76,0.00530259971326318],[115,175,77,0.0052133088896116325],[115,175,78,0.005176556634425142],[115,175,79,0.005190610106187098],[115,176,64,0.008470902548378106],[115,176,65,0.00805646875510457],[115,176,66,0.007564291114211672],[115,176,67,0.007044186691719262],[115,176,68,0.0065203129235414745],[115,176,69,0.005995135706447161],[115,176,70,0.005474529164338371],[115,176,71,0.004967105248032694],[115,176,72,0.004483053882312174],[115,176,73,0.0040331135864615005],[115,176,74,0.00362767665334533],[115,176,75,0.0032760327476644476],[115,176,76,0.0029857545560311384],[115,176,77,0.0027622288919036822],[115,176,78,0.002608336429256033],[115,176,79,0.002524283012375822],[115,177,64,0.00802270919734426],[115,177,65,0.007463614986035353],[115,177,66,0.006820192756037611],[115,177,67,0.006140676171923327],[115,177,68,0.005448830360597045],[115,177,69,0.0047485125213069515],[115,177,70,0.004047797682089895],[115,177,71,0.0033580812552217714],[115,177,72,0.0026927276888273634],[115,177,73,0.0020658636649024936],[115,177,74,0.0014913204423030967],[115,177,75,9.817296940471281E-4],[115,177,76,5.477769345273118E-4],[115,177,77,1.9761637610988107E-4],[115,177,78,-6.354920166044783E-5],[115,177,79,-2.337202409503062E-4],[115,178,64,0.007540583756535682],[115,178,65,0.006830078814092229],[115,178,66,0.006029120442876516],[115,178,67,0.005183787610828524],[115,178,68,0.004317495143957538],[115,178,69,0.0034359815283697775],[115,178,70,0.0025499490399425177],[115,178,71,0.0016739292159890216],[115,178,72,8.247419694678026E-4],[115,178,73,2.0113676272323567E-5],[115,178,74,-7.22540659304174E-4],[115,178,75,-0.0013871663301119757],[115,178,76,-0.0019599443916209027],[115,178,77,-0.00242998939911695],[115,178,78,-0.002789865431939872],[115,178,79,-0.003035916701597007],[115,179,64,0.007061303756804751],[115,179,65,0.006194888362973861],[115,179,66,0.005232362272358016],[115,179,67,0.004217112664723804],[115,179,68,0.003172232900433078],[115,179,69,0.0021057723287639793],[115,179,70,0.0010314198510644466],[115,179,71,-3.2873338925653725E-5],[115,179,72,-0.0010666190516167384],[115,179,73,-0.002048343969327339],[115,179,74,-0.0029569624909151007],[115,179,75,-0.0037729652579916915],[115,179,76,-0.004479418372837603],[115,179,77,-0.005062768627371275],[115,179,78,-0.0055134503729386405],[115,179,79,-0.0058262899693696385],[115,180,64,0.00662069314643094],[115,180,65,0.005596336609973695],[115,180,66,0.00447071962849869],[115,180,67,0.00328405791407853],[115,180,68,0.0020591425187261488],[115,180,69,8.066919567539842E-4],[115,180,70,-4.563362258477455E-4],[115,180,71,-0.0017083664478874446],[115,180,72,-0.002925106576269503],[115,180,73,-0.0040812618051954234],[115,180,74,-0.0051520548746258115],[115,180,75,-0.006114546894369185],[115,180,76,-0.0069487533703625395],[115,180,77,-0.0076385503644085485],[115,180,78,-0.008172366054975662],[115,180,79,-0.00854365330153437],[115,181,64,0.006253001613185382],[115,181,65,0.005071274462981303],[115,181,66,0.0037837007511073734],[115,181,67,0.002426922604921628],[115,181,68,0.0010234406970270615],[115,181,69,-4.130802631246433E-4],[115,181,70,-0.0018622182884817722],[115,181,71,-0.0032986550948873278],[115,181,72,-0.004694242624513011],[115,181,73,-0.006019868361360035],[115,181,74,-0.0072471129556058575],[115,181,75,-0.0083496940192331],[115,181,76,-0.00930469030900222],[115,181,77,-0.010093540871571263],[115,181,78,-0.010702814086376132],[115,181,79,-0.011124741901450373],[115,182,64,0.005990276253182692],[115,182,65,0.004654397230786334],[115,182,66,0.003208710812749217],[115,182,67,0.001685977745775936],[115,182,68,1.0841463143763477E-4],[115,182,69,-0.001507180444365684],[115,182,70,-0.0031368184129865265],[115,182,71,-0.0047514116951453255],[115,182,72,-0.006318991962330882],[115,182,73,-0.007806713927129922],[115,182,74,-0.009182638296112813],[115,182,75,-0.010417287385463485],[115,182,76,-0.011484967274774128],[115,182,77,-0.012364850755332836],[115,182,78,-0.013041815712588417],[115,182,79,-0.013507033964790804],[115,183,64,0.005861725136235869],[115,183,65,0.004377524006462698],[115,183,66,0.0027802380042274938],[115,183,67,0.00109854604912736],[115,183,68,-6.456176700324614E-4],[115,183,69,-0.0024322309598370897],[115,183,70,-0.004233732781241422],[115,183,71,-0.006017334135326546],[115,183,72,-0.007747370953137152],[115,183,73,-0.009387431335408074],[115,183,74,-0.010902249942550886],[115,183,75,-0.012259362720605328],[115,183,76,-0.013430515543487866],[115,183,77,-0.014392820752662943],[115,183,78,-0.015129655978938098],[115,183,79,-0.015631300033792594],[115,184,64,0.005893072298264502],[115,184,65,0.004268869462560287],[115,184,66,0.0025290351077521265],[115,184,67,6.980821845191252E-4],[115,184,68,-0.0012023399845025064],[115,184,69,-0.003148994883640162],[115,184,70,-0.0051108442155888625],[115,184,71,-0.0070515598273338245],[115,184,72,-0.008931993729494065],[115,184,73,-0.010712412083772622],[115,184,74,-0.012354485680618728],[115,184,75,-0.013823029830855935],[115,184,76,-0.015087487006506578],[115,184,77,-0.016123145984103474],[115,184,78,-0.01691209166490737],[115,184,79,-0.017443880166856024],[115,185,64,0.0061059036736475815],[115,185,65,0.0043523075375039594],[115,185,66,0.0024812960172193774],[115,185,67,5.132527909395642E-4],[115,185,68,-0.001530463937240685],[115,185,69,-0.0036235145971333324],[115,185,70,-0.005731576636030906],[115,185,71,-0.007815036242562086],[115,185,72,-0.00983155608342407],[115,185,73,-0.011738398101765633],[115,185,74,-0.013494493679649574],[115,185,75,-0.015062253882269958],[115,185,76,-0.01640911292711107],[115,185,77,-0.017508798453678292],[115,185,78,-0.01834232260517135],[115,185,79,-0.01889868836861437],[115,186,64,0.006517003464411382],[115,186,65,0.004646626475158604],[115,186,66,0.002657826647497404],[115,186,67,5.670156793934484E-4],[115,186,68,-0.0016047491007814857],[115,186,69,-0.0038282351150996695],[115,186,70,-0.006066121962950295],[115,186,71,-0.008275848395769498],[115,186,72,-0.01041225746864896],[115,186,73,-0.012429989460157633],[115,186,74,-0.014285614703723857],[115,186,75,-0.01593949889986657],[115,186,76,-0.017357393915109827],[115,186,77,-0.018511747517161413],[115,186,78,-0.019382725943163627],[115,186,79,-0.019958943644549993],[115,187,64,0.0071376804290109765],[115,187,65,0.005164774664187857],[115,187,66,0.0030732096595267096],[115,187,67,8.756976426400525E-4],[115,187,68,-0.001407017712012091],[115,187,69,-0.0037431126962989775],[115,187,70,-0.006092639991605761],[115,187,71,-0.00841050374416768],[115,187,72,-0.010649161496144158],[115,187,73,-0.012761068296085927],[115,187,74,-0.014700855033999035],[115,187,75,-0.016427233479834175],[115,187,76,-0.01790462094870063],[115,187,77,-0.019104477967973103],[115,187,78,-0.020006352776938418],[115,187,79,-0.020598626944684874],[115,188,64,0.007973083561347351],[115,188,65,0.005913096710774793],[115,188,66,0.0037349624155732183],[115,188,67,0.0014480702782210552],[115,188,68,-9.271645972757488E-4],[115,188,69,-0.0033567093066733406],[115,188,70,-0.0057984317628217525],[115,188,71,-0.008205174957835442],[115,188,72,-0.010527495285435173],[115,188,73,-0.012716139197860597],[115,188,74,-0.014724250203973877],[115,188,75,-0.0165092986534543],[115,188,76,-0.018034727201257525],[115,188,77,-0.019271305303307035],[115,188,78,-0.020198186554875982],[115,188,79,-0.02080366314323991],[115,189,64,0.009021506620765016],[115,189,65,0.006890559167708893],[115,189,66,0.004642687569351009],[115,189,67,0.0022844232233317444],[115,189,68,-1.641628998920999E-4],[115,189,69,-0.00266727350303209],[115,189,70,-0.0051810869472269875],[115,189,71,-0.007656901001930005],[115,189,72,-0.010043888007941273],[115,189,73,-0.012291586254808537],[115,189,74,-0.014352119597067038],[115,189,75,-0.016182137773775838],[115,189,76,-0.017744470346846262],[115,189,77,-0.019009487632270023],[115,189,78,-0.01995616246070726],[115,189,79,-0.020572827065918002],[115,190,64,0.010273680966309323],[115,190,65,0.008087965334993431],[115,190,66,0.005787215689173824],[115,190,67,0.0033756341960102594],[115,190,68,8.729337951640811E-4],[115,190,69,-0.0016838082999726077],[115,190,70,-0.004249605747974312],[115,190,71,-0.0067747469493403744],[115,190,72,-0.009207548925387415],[115,190,73,-0.011496846930856737],[115,190,74,-0.013594211894111342],[115,190,75,-0.015455888217727223],[115,190,76,-0.017044444922240644],[115,190,77,-0.018330133573336814],[115,190,78,-0.019291946894031926],[115,190,79,-0.019918372424364682],[115,191,64,0.011712056143676703],[115,191,65,0.009487158542202084],[115,191,66,0.007149739309026933],[115,191,67,0.004702235236767785],[115,191,68,0.0021639923485848285],[115,191,69,-4.2712657287211325E-4],[115,191,70,-0.0030254958088977214],[115,191,71,-0.0055809229142391725],[115,191,72,-0.008041385185756492],[115,191,73,-0.010355502865612778],[115,191,74,-0.012474741287200278],[115,191,75,-0.014355334607423496],[115,191,76,-0.01595992421530124],[115,191,77,-0.01725890536069409],[115,191,78,-0.018231476004521067],[115,191,79,-0.018866382349095087],[115,192,64,0.013310067671273967],[115,192,65,0.011060213321036782],[115,192,66,0.008700937802699003],[115,192,67,0.006233474548377888],[115,192,68,0.0036768033835661534],[115,192,69,0.0010691054651717439],[115,192,70,-0.0015438445913861973],[115,192,71,-0.004111862462351553],[115,192,72,-0.006583059591420433],[115,192,73,-0.008906287643553954],[115,192,74,-0.011033314295953648],[115,192,75,-0.012920723155204778],[115,192,76,-0.014531531030221957],[115,192,77,-0.015836516238652756],[115,192,78,-0.016815252076067398],[115,192,79,-0.01745684002864206],[115,193,64,0.015031391472869601],[115,193,65,0.012768613878175444],[115,193,66,0.010400092480138522],[115,193,67,0.007926373339334793],[115,193,68,0.005366086462707799],[115,193,69,0.0027573361947559175],[115,193,70,1.456323462603537E-4],[115,193,71,-0.0024192608126094007],[115,193,72,-0.004885988498999251],[115,193,73,-0.007204011500722038],[115,193,74,-0.009325746932956423],[115,193,75,-0.011208436627841925],[115,193,76,-0.012815736549917214],[115,193,77,-0.014119021070986183],[115,193,78,-0.01509839638219519],[115,193,79,-0.01574341776499087],[115,194,64,0.016829184408658656],[115,194,65,0.014562419283760362],[115,194,66,0.012194191313227127],[115,194,67,0.009724777088708307],[115,194,68,0.007172496573459674],[115,194,69,0.0045751074378599845],[115,194,70,0.0019775667687443516],[115,194,71,-5.710730970834338E-4],[115,194,72,-0.0030202799481182565],[115,194,73,-0.005320402859110502],[115,194,74,-0.00742477186706361],[115,194,75,-0.009291529306701766],[115,194,76,-0.010885186375210533],[115,194,77,-0.012177898928478198],[115,194,78,-0.013150456946932784],[115,194,79,-0.01379298254458249],[115,195,64,0.018569325813780367],[115,195,65,0.016379996457449676],[115,195,66,0.01401767579059494],[115,195,67,0.011559123592022248],[115,195,68,0.00902242266218411],[115,195,69,0.006444899105416254],[115,195,70,0.0038708488811592364],[115,195,71,0.0013484867407787377],[115,195,72,-0.0010726173178585163],[115,195,73,-0.0033438510012242864],[115,195,74,-0.005419615000755599],[115,195,75,-0.007259113935049838],[115,195,76,-0.008827876702831255],[115,195,77,-0.010099000420147454],[115,195,78,-0.011054112542801859],[115,195,79,-0.011684046202144268],[115,196,64,0.01683375198334855],[115,196,65,0.018176921742605788],[115,196,66,0.015824878636133202],[115,196,67,0.013382346510078025],[115,196,68,0.01086729005490623],[115,196,69,0.008316628846700591],[115,196,70,0.005773985885717275],[115,196,71,0.003286694410633031],[115,196,72,9.03289720905209E-4],[115,196,73,-0.0013287519172251836],[115,196,74,-0.0033650204022343615],[115,196,75,-0.005165918487441423],[115,196,76,-0.006698141960552398],[115,196,77,-0.007935887659669552],[115,196,78,-0.008861784092169507],[115,196,79,-0.009467539841662606],[115,197,64,0.015137939421373163],[115,197,65,0.017484772808347114],[115,197,66,0.01760835711106275],[115,197,67,0.015189864754170402],[115,197,68,0.012705158395573733],[115,197,69,0.010190722276306772],[115,197,70,0.0076894246406508295],[115,197,71,0.005247595633779486],[115,197,72,0.0029125838177642637],[115,197,73,7.305557670015032E-4],[115,197,74,-0.001255454592630618],[115,197,75,-0.003007240628381928],[115,197,76,-0.004492855757641095],[115,197,77,-0.005687778853399855],[115,197,78,-0.006575807244513149],[115,197,79,-0.007149672666687251],[115,198,64,0.013498320791799141],[115,198,65,0.015821715188926715],[115,198,66,0.018223021344664723],[115,198,67,0.016973377227097568],[115,198,68,0.014529894523465427],[115,198,69,0.012062933873557741],[115,198,70,0.009614468100479948],[115,198,71,0.0072296378954916935],[115,198,72,0.0049543873443533785],[115,198,73,0.002833337497909491],[115,198,74,9.079044055007676E-4],[115,198,75,-7.853323522585375E-4],[115,198,76,-0.0022160049857539977],[115,198,77,-0.003361071424984781],[115,198,78,-0.004205663005278284],[115,198,79,-0.004743661459451788],[115,199,64,0.011934633548229268],[115,199,65,0.014222005191780858],[115,199,66,0.016582263698474906],[115,199,67,0.01871885481269953],[115,199,68,0.016328859965529713],[115,199,69,0.013921758884081181],[115,199,70,0.0115384526310513],[115,199,71,0.009222665632752739],[115,199,72,0.007018678314048558],[115,199,73,0.004969291291780182],[115,199,74,0.0031140272587595733],[115,199,75,0.0014875763203205028],[115,199,76,1.1849016696666815E-4],[115,199,77,-9.718699173006948E-4],[115,199,78,-0.001770126597624899],[115,199,79,-0.0022714173536898235],[115,200,64,0.010468107489123009],[115,200,65,0.012705436083332135],[115,200,66,0.015011401607245584],[115,200,67,0.017380573873169356],[115,200,68,0.01808509216887639],[115,200,69,0.015750727379159266],[115,200,70,0.0134451578716761],[115,200,71,0.011210444915280176],[115,200,72,0.009088924969656418],[115,200,73,0.007121283537353028],[115,200,74,0.005344858124241243],[115,200,75,0.0037921757514224543],[115,200,76,0.0024897300984267293],[115,200,77,0.0014570029893642821],[115,200,78,7.057345635984455E-4],[115,200,79,2.3944610374453159E-4],[115,201,64,0.009119794775135255],[115,201,65,0.011292306208826644],[115,201,66,0.01353017954679083],[115,201,67,0.015825471822669593],[115,201,68,0.018157670510238793],[115,201,69,0.017530582852319215],[115,201,70,0.015315112726185782],[115,201,71,0.013173098164993511],[115,201,72,0.011144646590070861],[115,201,73,0.009268029344645682],[115,201,74,0.007578104278834449],[115,201,75,0.00610496190861338],[115,201,76,0.004872799880408841],[115,201,77,0.0038990301237057266],[115,201,78,0.0031936227233330147],[115,201,79,0.0027586901939232367],[115,202,64,0.007909043018152626],[115,202,65,0.010001807088137856],[115,202,66,0.012157761182246424],[115,202,67,0.014365951914423237],[115,202,68,0.016604594398950342],[115,202,69,0.01884078506361716],[115,202,70,0.01712779774749514],[115,202,71,0.015089449390456084],[115,202,72,0.013163901215946992],[115,202,73,0.011386718370700504],[115,202,74,0.00978999174041643],[115,202,75,0.008401109796675875],[115,202,76,0.007241745170943831],[115,202,77,0.006327059966860025],[115,202,78,0.005665133494018905],[115,202,79,0.005256615780278847],[115,203,64,0.006852112196563466],[115,203,65,0.008850553410827034],[115,203,66,0.010911162673430307],[115,203,67,0.013019521743682394],[115,203,68,0.015152313597482947],[115,203,69,0.017277618862087157],[115,203,70,0.018863744097096343],[115,203,71,0.016939280345803658],[115,203,72,0.015125700945079755],[115,203,73,0.013455587022554652],[115,203,74,0.011957988034334805],[115,203,75,0.01065733650314339],[115,203,76,0.00957256160118184],[115,203,77,0.008716405176737071],[115,203,78,0.008094943521741768],[115,203,79,0.007707317877786133],[115,204,64,0.005960936303180681],[115,204,65,0.00785125573005857],[115,204,66,0.009803824802677472],[115,204,67,0.011800361974800812],[115,204,68,0.01381576945608041],[115,204,69,0.015819154611295985],[115,204,70,0.017777724938320177],[115,204,71,0.01870549794578772],[115,204,72,0.01701235538741259],[115,204,73,0.015456437895428879],[115,204,74,0.014063493235778414],[115,204,75,0.012854755260032623],[115,204,76,0.011846199304797543],[115,204,77,0.011047981415735085],[115,204,78,0.010464064271953696],[115,204,79,0.010092032416667257],[115,205,64,0.005242030790274907],[115,205,65,0.0070115368076082586],[115,205,66,0.008844324741504098],[115,205,67,0.010717914712470425],[115,205,68,0.012605195247237497],[115,205,69,0.014476314112256824],[115,205,70,0.016300528702121293],[115,205,71,0.018047571545760872],[115,205,72,0.018811743797271067],[115,205,73,0.017377107249602692],[115,205,74,0.016094500383053094],[115,205,75,0.014981721908340694],[115,205,76,0.014051584262412452],[115,205,77,0.01331148842918854],[115,205,78,0.012763164140908475],[115,205,79,0.012402577644962873],[115,206,64,0.0046955470394942495],[115,206,65,0.006332892720697379],[115,206,66,0.008035228424779618],[115,206,67,0.009775606448065658],[115,206,68,0.011524687525290497],[115,206,69,0.013253644341055965],[115,206,70,0.014933868390418228],[115,206,71,0.016538007342744215],[115,206,72,0.018040918646659493],[115,206,73,0.019213881262506963],[115,206,74,0.01804822630798451],[115,206,75,0.01703667512214723],[115,206,76,0.01618865812346468],[115,206,77,0.01550863533178574],[115,206,78,0.014995961128687382],[115,206,79,0.01464489266345509],[115,207,64,0.004315927368579132],[115,207,65,0.005810785279466378],[115,207,66,0.0073727403068678315],[115,207,67,0.008970185857565295],[115,207,68,0.010571370161923886],[115,207,69,0.012148450515237202],[115,207,70,0.013675011613105588],[115,207,71,0.015126750114794807],[115,207,72,0.01648214918945437],[115,207,73,0.017723045421770646],[115,207,74,0.018835085985782384],[115,207,75,0.019026483762159544],[115,207,76,0.01826597819356592],[115,207,77,0.017649950769288998],[115,207,78,0.017175223609754178],[115,207,79,0.01683423275006865],[115,208,64,0.004097207327845465],[115,208,65,0.005438733640078753],[115,208,66,0.0068500200920354705],[115,208,67,0.008294746712689476],[115,208,68,0.009738629764247653],[115,208,69,0.011154757642209207],[115,208,70,0.012518932395109813],[115,208,71,0.013809981834222013],[115,208,72,0.01501013693013683],[115,208,73,0.016105325805098738],[115,208,74,0.017085382918958936],[115,208,75,0.017944172173545304],[115,208,76,0.018679622787042043],[115,208,77,0.01929367691556345],[115,208,78,0.01929535137238037],[115,208,79,0.018964490833585396],[115,209,64,0.004030970730473329],[115,209,65,0.00520809012610714],[115,209,66,0.006458427370676043],[115,209,67,0.0077410403363713754],[115,209,68,0.009019065465549533],[115,209,69,0.01026645615053914],[115,209,70,0.01146121549085213],[115,209,71,0.012585322389133156],[115,209,72,0.013624798293636893],[115,209,73,0.014569716262229047],[115,209,74,0.015414151654368363],[115,209,75,0.016156073843783477],[115,209,76,0.01679717842941231],[115,209,77,0.017342659504854897],[115,209,78,0.017800921626287415],[115,209,79,0.01818323119464253],[115,210,64,0.004105086221698465],[115,210,65,0.0051072143260564905],[115,210,66,0.006187004719774567],[115,210,67,0.007299120734569559],[115,210,68,0.008404139141838836],[115,210,69,0.009476798401249755],[115,210,70,0.010497244439546737],[115,210,71,0.011450563652426703],[115,210,72,0.01232653045755489],[115,210,73,0.013119324116046287],[115,210,74,0.013827214846377646],[115,210,75,0.014452219298577559],[115,210,76,0.01499972549776192],[115,210,77,0.015478087404181228],[115,210,78,0.015898189271459574],[115,210,79,0.01627298001515355],[115,211,64,0.004303683729973718],[115,211,65,0.005121342095404897],[115,211,66,0.006022240237530862],[115,211,67,0.006956999304439643],[115,211,68,0.00788372030582138],[115,211,69,0.008777833110837055],[115,211,70,0.009621526621985597],[115,211,71,0.01040288829360538],[115,211,72,0.011115329182970505],[115,211,73,0.011757006118812079],[115,211,74,0.012330241726641912],[115,211,75,0.012840943050566324],[115,211,76,0.013298019507697097],[115,211,77,0.013712800903654275],[115,211,78,0.014098456225907663],[115,211,79,0.014469413915724833],[115,212,64,0.004607295023492272],[115,212,65,0.005232619624612303],[115,212,66,0.005947996431415645],[115,212,67,0.006700467772452398],[115,212,68,0.007445801673727116],[115,212,69,0.008160013244033653],[115,212,70,0.008827194748815985],[115,212,71,0.00943826798527132],[115,212,72,0.009990088864809982],[115,212,73,0.010484577505913034],[115,212,74,0.010927875278948842],[115,212,75,0.011329530200601599],[115,212,76,0.011701712026593735],[115,212,77,0.012058458337532012],[115,212,78,0.012414952854236152],[115,212,79,0.012786837156112387],[115,213,64,0.004993160784874151],[115,213,65,0.00542030488964745],[115,213,66,0.005945607686306836],[115,213,67,0.006513091507778247],[115,213,68,0.007076387476487437],[115,213,69,0.007611979378931743],[115,213,70,0.008105686717152168],[115,213,71,0.008551042877288542],[115,213,72,0.008948086612126599],[115,213,73,0.009302207586452636],[115,213,74,0.00962304810480911],[115,213,75,0.009923463053057293],[115,213,76,0.010218539990810948],[115,213,77,0.010524681231814787],[115,213,78,0.010858749644329058],[115,213,79,0.011237279794231878],[115,214,64,0.005435706759387559],[115,214,65,0.005661138945908986],[115,214,66,0.005994148685513173],[115,214,67,0.006376375504651718],[115,214,68,0.00675955673779052],[115,214,69,0.007120520700932999],[115,214,70,0.007446605929015449],[115,214,71,0.007733684370844632],[115,214,72,0.007984652330125202],[115,214,73,0.00820800378253967],[115,214,74,0.008416488831958523],[115,214,75,0.008625859936932715],[115,214,76,0.008853708399551321],[115,214,77,0.00911839346335985],[115,214,78,0.009438066216316616],[115,214,79,0.009829790339785604],[115,215,64,0.005907191666072174],[115,215,65,0.005929889662951637],[115,215,66,0.006070876296626973],[115,215,67,0.006270105469550018],[115,215,68,0.006477703887047747],[115,215,69,0.0066707159310634015],[115,215,70,0.006837764317709011],[115,215,71,0.006976743380584842],[115,215,72,0.007093026934654423],[115,215,73,0.007197786190450997],[115,215,74,0.007306421081060249],[115,215,75,0.007437108189801675],[115,215,76,0.00760946828399486],[115,215,77,0.007843356270787662],[115,215,78,0.008157776196076607],[115,215,79,0.008569923708512938],[115,216,64,0.006378529684620792],[115,216,65,0.006200070624249982],[115,216,66,0.006151847564343001],[115,216,67,0.006172866582955025],[115,216,68,0.006211959213367184],[115,216,69,0.006246256636560094],[115,216,70,0.006265410474882134],[115,216,71,0.006268986423701114],[115,216,72,0.006264410984270711],[115,216,73,0.00626505489435891],[115,216,74,0.006288457165877146],[115,216,75,0.006354693423347062],[115,216,76,0.006484892012894781],[115,216,77,0.0066999011200096804],[115,216,78,0.007019109897219128],[115,216,79,0.007459426361920704],[115,217,64,0.006820290441779927],[115,217,65,0.006444838031289079],[115,217,66,0.006212716571606373],[115,217,67,0.006062742629205883],[115,217,68,0.005942791795250566],[115,217,69,0.005829955505311754],[115,217,70,0.00571464540973582],[115,217,71,0.005597722018355746],[115,217,72,0.005488206162874852],[115,217,73,0.005401152415052299],[115,217,74,0.005355688857073084],[115,217,75,0.00537322734646048],[115,217,76,0.005475848154533651],[115,217,77,0.005684862586453505],[115,217,78,0.006019556914325156],[115,217,79,0.006496120674786583],[115,218,64,0.007203879517215469],[115,218,65,0.006638068552444656],[115,218,66,0.006229713036604922],[115,218,67,0.005918198299389753],[115,218,68,0.005650797657808561],[115,218,69,0.005404442288610702],[115,218,70,0.005170028600460511],[115,218,71,0.004949320007991063],[115,218,72,0.004752452185217031],[115,218,73,0.004595623819925685],[115,218,74,0.0044989776874820525],[115,218,75,0.004484676572567532],[115,218,76,0.004575178267696162],[115,218,77,0.004791713569909665],[115,218,78,0.005152970884127679],[115,218,79,0.005673990725691325],[115,219,64,0.007502902567907126],[115,219,65,0.00675562114207594],[115,219,66,0.0061808056038831095],[115,219,67,0.005719147569054445],[115,219,68,0.00531767601252],[115,219,69,0.004953050226447167],[115,219,70,0.004616377114266834],[115,219,71,0.004309926550611097],[115,219,72,0.004044461825947659],[115,219,73,0.0038367771541520878],[115,219,74,0.0037074474148479117],[115,219,75,0.003678794979662019],[115,219,76,0.0037730781388322634],[115,219,77,0.0040109053041003295],[115,219,78,0.004409878818081508],[115,219,79,0.004983471852084532],[115,220,64,0.007694716229818664],[115,220,65,0.006776785921648492],[115,220,66,0.006047052860885511],[115,220,67,0.0054482111324198005],[115,220,68,0.004927396521601744],[115,220,69,0.004460895863893112],[115,220,70,0.004039760673911627],[115,220,71,0.003666377620648086],[115,220,72,0.0033516568879806237],[115,220,73,0.0031124469740086936],[115,220,74,0.0029691813843002045],[115,220,75,0.0029437623221135476],[115,220,76,0.0030576861164842793],[115,220,77,0.0033304147592092066],[115,220,78,0.0037779975470161337],[115,220,79,0.00441194644859841],[115,221,64,0.007762168993226809],[115,221,65,0.006685923259939888],[115,221,66,0.005814145163958645],[115,221,67,0.005092165935143102],[115,221,68,0.0044675605973354335],[115,221,69,0.003916155243409439],[115,221,70,0.003428695632852617],[115,221,71,0.003007313962958911],[115,221,72,0.0026626080251406703],[115,221,73,0.0024109638691971326],[115,221,74,0.002272127644601129],[115,221,75,0.002267031910066469],[115,221,76,0.002415881314757374],[115,221,77,0.002736502159149267],[115,221,78,0.0032429599437565557],[115,221,79,0.003944448612964398],[115,222,64,0.0076955352610592895],[115,222,65,0.006474296210845864],[115,222,66,0.005474140387644131],[115,222,67,0.004643589885949535],[115,222,68,0.003930959793597351],[115,222,69,0.003311539513533089],[115,222,70,0.002775540885436493],[115,222,71,0.002324500511168425],[115,222,72,0.001968281414708592],[115,222,73,0.0017223329490006656],[115,222,74,0.001605214766778093],[115,222,75,0.001636390272474551],[115,222,76,0.0018342945624287355],[115,222,77,0.0022146814435946792],[115,222,78,0.0027892537000597057],[115,222,79,0.003564580355309853],[115,223,64,0.007494645785023922],[115,223,65,0.006142099462146899],[115,223,66,0.0050273967151446735],[115,223,67,0.004102704840733346],[115,223,68,0.0033173343695132584],[115,223,69,0.0026459730265047336],[115,223,70,0.002078098779969196],[115,223,71,0.0016143533331082684],[115,223,72,0.0012634953346657755],[115,223,73,0.0010396243343520305],[115,223,74,9.596813882441455E-4],[115,223,75,0.0010412318006159885],[115,223,76,0.0013005350603236395],[115,223,77,0.001750906594883687],[115,223,78,0.002401375527082264],[115,223,79,0.003255642180970824],[115,224,64,0.007171217629270297],[115,224,65,0.005700687913890855],[115,224,66,0.004484705563217133],[115,224,67,0.003479420938146876],[115,224,68,0.0026353351006788016],[115,224,69,0.0019264770030328153],[115,224,70,0.0013414241181637426],[115,224,71,8.79677191500928E-4],[115,224,72,5.485897351653884E-4],[115,224,73,3.605787413246313E-4],[115,224,74,3.306225568719838E-4],[115,224,75,4.7405142726780026E-4],[115,224,76,8.046357737973514E-4],[115,224,77,0.0013329768187763432],[115,224,78,0.0020652037208486085],[115,224,79,0.003001980931247678],[115,225,64,0.006751386732726451],[115,225,65,0.005175007937717731],[115,225,66,0.0038696276783696834],[115,225,67,0.002795585320142804],[115,225,68,0.0019046913786510006],[115,225,69,0.00117026181843991],[115,225,70,5.798443111729168E-4],[115,225,71,1.3161680515172687E-4],[115,225,72,-1.6868809915524877E-4],[115,225,73,-3.105687419843623E-4],[115,225,74,-2.8124402547398E-4],[115,225,75,-6.784157061437692E-5],[115,225,76,3.407206263520402E-4],[115,225,77,9.521636125376349E-4],[115,225,78,0.0017695920826534843],[115,225,79,0.002790557817606894],[115,226,64,0.006278446025836873],[115,226,65,0.004606234265247922],[115,226,66,0.0032210353498685327],[115,226,67,0.0020874381911684873],[115,226,68,0.0011585885711627103],[115,226,69,4.0703090761559993E-4],[115,226,70,-1.8080628312056127E-4],[115,226,71,-6.081751386006383E-4],[115,226,72,-8.710787233164792E-4],[115,226,73,-9.61043597115063E-4],[115,226,74,-8.675887651204518E-4],[115,226,75,-5.803855542667367E-4],[115,226,76,-9.110342881598733E-5],[115,226,77,6.050627705127603E-4],[115,226,78,0.001508188205625367],[115,226,79,0.002612739609322417],[115,227,64,0.005816027651560387],[115,227,65,0.004055667647544069],[115,227,66,0.0025976490018272506],[115,227,67,0.0014107708349489967],[115,227,68,4.494670300414205E-4],[115,227,69,-3.1455552433103215E-4],[115,227,70,-8.960416030617722E-4],[115,227,71,-0.0012997116770143333],[115,227,72,-0.0015233241420692068],[115,227,73,-0.0015604328154295583],[115,227,74,-0.001402833821702154],[115,227,75,-0.0010426964608892973],[115,227,76,-4.7437312782630644E-4],[115,227,77,3.0411616559556097E-4],[115,227,78,0.0012899286316437027],[115,227,79,0.0024745763986539285],[115,228,64,0.005437619980577045],[115,228,65,0.003597633553892512],[115,228,66,0.002074030193251331],[115,228,67,8.399296413989419E-4],[115,228,68,-1.4889845240849457E-4],[115,228,69,-9.216270231680348E-4],[115,228,70,-0.001494215320397621],[115,228,71,-0.0018728834781215477],[115,228,72,-0.0020571611231439972],[115,228,73,-0.0020426252280063856],[115,228,74,-0.0018233213832259223],[115,228,75,-0.0013938631422432141],[115,228,76,-7.512045786193998E-4],[115,228,77,1.0391831502944387E-4],[115,228,78,0.0011658812669375722],[115,228,79,0.0024234037997798246],[115,229,64,0.00519946946255099],[115,229,65,0.0032899562764081717],[115,229,66,0.001708994556579714],[115,229,67,4.342960947610888E-4],[115,229,68,-5.768617430713784E-4],[115,229,69,-0.0013545248825273587],[115,229,70,-0.0019158860730226334],[115,229,71,-0.0022686938473807246],[115,229,72,-0.0024142762736584808],[115,229,73,-0.002350249485491965],[115,229,74,-0.0020729052430899435],[115,229,75,-0.001579272262767223],[115,229,76,-8.688465454428585E-4],[115,229,77,5.501356967328469E-5],[115,229,78,0.0011840314048184508],[115,229,79,0.0025042982851816694],[115,230,64,0.005137877794886549],[115,230,65,0.0031700536797868144],[115,230,66,0.0015406414760326136],[115,230,67,2.3230445786400308E-4],[115,230,68,-7.959045618278352E-4],[115,230,69,-0.0015748347595144422],[115,230,70,-0.0021228931919225805],[115,230,71,-0.002449366619108925],[115,230,72,-0.002557404483858835],[115,230,73,-0.002446684192503945],[115,230,74,-0.0021157530595921742],[115,230,75,-0.001564041768582704],[115,230,76,-7.93544696702114E-4],[115,230,77,1.898370492432906E-4],[115,230,78,0.0013752935418835971],[115,230,79,0.0027464480510266532],[115,231,64,0.005271752242134908],[115,231,65,0.003257485932507067],[115,231,66,0.0015888958482685382],[115,231,67,2.5398409712229394E-4],[115,231,68,-7.86082931407337E-4],[115,231,69,-0.0015628158903283327],[115,231,70,-0.002095767214789518],[115,231,71,-0.002395740707698452],[115,231,72,-0.0024677140896318273],[115,231,73,-0.0023134436804212836],[115,231,74,-0.0019337457230447935],[115,231,75,-0.0013304493506891117],[115,231,76,-5.080166937336137E-4],[115,231,77,5.251738785945139E-4],[115,231,78,0.0017558848909636593],[115,231,79,0.0031654202880924457],[115,232,64,0.00560502114601602],[115,232,65,0.003556368562139924],[115,232,66,0.0018579150559268056],[115,232,67,5.033691745447436E-4],[115,232,68,-5.436027435111596E-4],[115,232,69,-0.0013149540519503033],[115,232,70,-0.0018312565614989264],[115,232,71,-0.0021047707924613185],[115,232,72,-0.002142285585010689],[115,232,73,-0.0019476421865973015],[115,232,74,-0.001523937516318626],[115,232,75,-8.754017930009403E-4],[115,232,76,-8.946205681133299E-6],[115,232,77,0.001064623201360338],[115,232,78,0.0023297287657836454],[115,232,79,0.003765484418939845],[115,233,64,0.006128912386954612],[115,233,65,0.004057647241207853],[115,233,66,0.0023383582700273564],[115,233,67,9.707725597620072E-4],[115,233,68,-7.85278414944955E-5],[115,233,69,-8.416419105349093E-4],[115,233,70,-0.0013399742324991485],[115,233,71,-0.0015871381883773568],[115,233,72,-0.0015916880883364308],[115,233,73,-0.0013595407439805167],[115,233,74,-8.960814110020368E-4],[115,233,75,-2.0794951323492976E-4],[115,233,76,6.954999569474495E-4],[115,233,77,0.001801062982099373],[115,233,78,0.003090884145324331],[115,233,79,0.0045419880015688165],[115,234,64,0.006824093305722459],[115,234,65,0.004741232866763242],[115,234,66,0.0030095167181356727],[115,234,67,0.0016349226847425728],[115,234,68,5.873782025340281E-4],[115,234,69,-1.649878146273364E-4],[115,234,70,-6.441654442091784E-4],[115,234,71,-8.649726467941224E-4],[115,234,72,-8.376541102677593E-4],[115,234,73,-5.701771094889233E-4],[115,234,74,-7.02195867746796E-5],[115,234,75,6.531538733176733E-4],[115,234,76,0.0015881320296110809],[115,234,77,0.0027191163129207992],[115,234,78,0.004026002411597189],[115,234,79,0.0054837865668784696],[115,235,64,0.007662670401757434],[115,235,65,0.005577995309029465],[115,235,66,0.003841303371374937],[115,235,67,0.0024649618827513454],[115,235,68,0.0014226752584341447],[115,235,69,6.832457289259475E-4],[115,235,70,2.2440270427137373E-4],[115,235,71,3.0313988969181565E-5],[115,235,72,8.914664668343386E-5],[115,235,73,3.90920758877667E-4],[115,235,74,9.256605572985646E-4],[115,235,75,0.0016818469574370286],[115,235,76,0.0026451750643863713],[115,235,77,0.003797619767163613],[115,235,78,0.005116812086195154],[115,235,79,0.006575728495295408],[115,236,64,0.00861004693801099],[115,236,65,0.006531614021917398],[115,236,66,0.004796100324533362],[115,236,67,0.0034223045763758964],[115,236,68,0.002388133222352882],[115,236,69,0.0016635724808723386],[115,236,70,0.0012264282590035576],[115,236,71,0.0010600811654914292],[115,236,72,0.0011512335416410818],[115,236,73,0.0014879369774062476],[115,236,74,0.002057904439420883],[115,236,75,0.0028471107039581495],[115,236,76,0.0038386843519489116],[115,236,77,0.005012094148372007],[115,236,78,0.006342632198028172],[115,236,79,0.007801195847779623],[115,237,64,0.009626636402767123],[115,237,65,0.007560283533006321],[115,237,66,0.0058304619716555255],[115,237,67,0.004462353509033084],[115,237,68,0.0034384803092464378],[115,237,69,0.002730580207968384],[115,237,70,0.0023169366815867505],[115,237,71,0.002180398747913249],[115,237,72,0.0023063401974947736],[115,237,73,0.0026808848706139942],[115,237,74,0.0032894017182692244],[115,237,75,0.004115272974011181],[115,237,76,0.005138938350877703],[115,237,77,0.006337217766779422],[115,237,78,0.0076829146958697905],[115,237,79,0.00914470184635099],[115,238,64,0.010669429608894651],[115,238,65,0.00861827166480089],[115,238,66,0.006896671916748139],[115,238,67,0.0055360720523554615],[115,238,68,0.004524011184341346],[115,238,69,0.0038345939765857032],[115,238,70,0.0034470167358697807],[115,238,71,0.0033438704227933573],[115,238,72,0.003509337356452106],[115,238,73,0.003927637869354639],[115,238,74,0.004581730230844944],[115,238,75,0.0054522667709999495],[115,238,76,0.006516808750391749],[115,238,77,0.007749302137041402],[115,238,78,0.009119816073479088],[115,238,79,0.010594545447533688],[115,239,64,0.011693813590180823],[115,239,65,0.009658623423493405],[115,239,66,0.007946161620062692],[115,239,67,0.006593933959022608],[115,239,68,0.0055948748775790525],[115,239,69,0.004926103841963532],[115,239,70,0.004568190687123453],[115,239,71,0.004503756337651979],[115,239,72,0.004715930566595761],[115,239,73,0.005187042391291241],[115,239,74,0.005897545977629789],[115,239,75,0.006825184565112477],[115,239,76,0.007944394566745758],[115,239,77,0.009225951642867984],[115,239,78,0.010636860199320052],[115,239,79,0.012140487421236601],[115,240,64,0.012659839538345086],[115,240,65,0.010642123109229904],[115,240,66,0.008940555173006645],[115,240,67,0.00759836967333973],[115,240,68,0.006614198146947282],[115,240,69,0.0059688217317309345],[115,240,70,0.005644666992723504],[115,240,71,0.005624712472652442],[115,240,72,0.005891226204050407],[115,240,73,0.00642471773801943],[115,240,74,0.007203107095488287],[115,240,75,0.008201112716523327],[115,240,76,0.009389860154776797],[115,240,77,0.010736712939911627],[115,240,78,0.01220532671355969],[115,240,79,0.013755927437085208],[115,241,64,0.01353789576051976],[115,241,65,0.01154030710696236],[115,241,66,0.009852432919684271],[115,241,67,0.008522745203820792],[115,241,68,0.007555773731453524],[115,241,69,0.006936580900015005],[115,241,70,0.00664994240169136],[115,241,71,0.006679560396371606],[115,241,72,0.007007093380294196],[115,241,73,0.007611382038214629],[115,241,74,0.008467873009897264],[115,241,75,0.009548242201087184],[115,241,76,0.01082021897138162],[115,241,77,0.012247612238831725],[115,241,78,0.013790539256190773],[115,241,79,0.015405857539288902],[115,242,64,0.014308406479856829],[115,242,65,0.012334321384258736],[115,242,66,0.010663519148518989],[115,242,67,0.00934907691553733],[115,242,68,0.008401514105951297],[115,242,69,0.007810745333813102],[115,242,70,0.007564380580355048],[115,242,71,0.00764723847085747],[115,242,72,0.008040674629763957],[115,242,73,0.00872208746037131],[115,242,74,0.009664602804720826],[115,242,75,0.010836938668538802],[115,242,76,0.012203450929327245],[115,242,77,0.0137243606850362],[115,242,78,0.015356163648478983],[115,242,79,0.01705222175135775],[115,243,64,0.014960856315516287],[115,243,65,0.01301400667372988],[115,243,66,0.011363838006483582],[115,243,67,0.010067273372334484],[115,243,68,0.009140798057550737],[115,243,69,0.008579681368941173],[115,243,70,0.008374829339587777],[115,243,71,0.008512584480736317],[115,243,72,0.008974352062079737],[115,243,73,0.009736385605804873],[115,243,74,0.01076973258397436],[115,243,75,0.012040341067519411],[115,243,76,0.013509327838960673],[115,243,77,0.015133408251815987],[115,243,78,0.01686548789961742],[115,243,79,0.018655415948899506],[115,244,64,0.015492794200886603],[115,244,65,0.013576959622118401],[115,244,66,0.011950841598869846],[115,244,67,0.010674344359215333],[115,244,68,0.009769778153002862],[115,244,69,0.009238183167595742],[115,244,70,0.009074184440025402],[115,244,71,0.009266057719993148],[115,244,72,0.00979564636847959],[115,244,73,0.010638419962646858],[115,244,74,0.011763675148679303],[115,244,75,0.013134879071401154],[115,244,76,0.014710155502909758],[115,244,77,0.016442913593754143],[115,244,78,0.01828261898130547],[115,244,79,0.02017570681304392],[115,245,64,0.015908816292539187],[115,245,65,0.014027569397655863],[115,245,66,0.01242850970064028],[115,245,67,0.011173576424302376],[115,245,68,0.010290648327765453],[115,245,69,0.009786851167115375],[115,245,70,0.009660898960057035],[115,245,71,0.009903399400366943],[115,245,72,0.01049704743596554],[115,245,73,0.011416944079672014],[115,245,74,0.01263104057304985],[115,245,75,0.01410070783786645],[115,245,76,0.01578143097101705],[115,245,77,0.017623628368821923],[115,245,78,0.019573594907153727],[115,245,79,0.020054609063233392],[115,246,64,0.016219527537634837],[115,246,65,0.0143760293570129],[115,246,66,0.012806420608548443],[115,246,67,0.011573674375118564],[115,246,68,0.010710870913291336],[115,246,69,0.010231422683672404],[115,246,70,0.010138437271382432],[115,246,71,0.010425230288619618],[115,246,72,0.011075775346853107],[115,246,73,0.0120652641216423],[115,246,74,0.01336077624387203],[115,246,75,0.014922058590127647],[115,246,76,0.016702413391999876],[115,246,77,0.01864969444067452],[115,246,78,0.020707410530822985],[115,246,79,0.018880466218772894],[115,247,64,0.016440481696015866],[115,247,65,0.014637323496604775],[115,247,66,0.013098792780468629],[115,247,67,0.011887868273914469],[115,247,68,0.011042362520227101],[115,247,69,0.010582053944715756],[115,247,70,0.010514672743337337],[115,247,71,0.010836584539863277],[115,247,72,0.01153347058207405],[115,247,73,0.0125811044866328],[115,247,74,0.01394622492153405],[115,247,75,0.015587503476194245],[115,247,76,0.017456606839364015],[115,247,77,0.01949935228533167],[115,247,78,0.020093018430616325],[115,247,79,0.017895154860217304],[115,248,64,0.016591099755602724],[115,248,65,0.01483018755082754],[115,248,66,0.013323497040484225],[115,248,67,0.012132985602257767],[115,248,68,0.011300638312659914],[115,248,69,0.01085255293114941],[115,248,70,0.010801228391277739],[115,248,71,0.011146378772066777],[115,248,72,0.011875812305220236],[115,248,73,0.012966395202116131],[115,248,74,0.014385099392396863],[115,248,75,0.016090133146383086],[115,248,76,0.018032153443573857],[115,248,77,0.020155558850275448],[115,248,78,0.019416194964207534],[115,248,79,0.017126280822381715],[115,249,64,0.016693566836616734],[115,249,65,0.014976044752713885],[115,249,66,0.013501039276057185],[115,249,67,0.012328488407015586],[115,249,68,0.011503914343356859],[115,249,69,0.011059562535673865],[115,249,70,0.011012759797436898],[115,249,71,0.011366815524303209],[115,249,72,0.01211206368255093],[115,249,73,0.013226979872141732],[115,249,74,0.014679372311841302],[115,249,75,0.01642764549014193],[115,249,76,0.018422135132215467],[115,249,77,0.020606513050796308],[115,249,78,0.01896151061625724],[115,249,79,0.01659574782451793],[115,250,64,0.01677170785226282],[115,250,65,0.015097916441281932],[115,250,66,0.013653513717890586],[115,250,67,0.012495475399162327],[115,250,68,0.011672167773207318],[115,250,69,0.011221693688693949],[115,250,70,0.011166179766239192],[115,250,71,0.011512720359805413],[115,250,72,0.012254543293708951],[115,250,73,0.013372243024550454],[115,250,74,0.014835079887264173],[115,250,75,0.016602343993130122],[115,250,76,0.01862478226679491],[115,250,77,0.020846087040046375],[115,250,78,0.018739537136031627],[115,250,79,0.016318858525823328],[115,251,64,0.016849842381457553],[115,251,65,0.015219307885227835],[115,251,66,0.013803527074723397],[115,251,67,0.0126556491544807],[115,251,68,0.011826154970902404],[115,251,69,0.011358608268971063],[115,251,70,0.011279824331501168],[115,251,71,0.011600812016052094],[115,251,72,0.012318021810423392],[115,251,73,0.013414655806644455],[115,251,74,0.014862038122426705],[115,251,75,0.01662104421631639],[115,251,76,0.01864358747083518],[115,251,77,0.020874161357611564],[115,251,78,0.018754112892046298],[115,251,79,0.016303509276766943],[115,252,64,0.01695161941365472],[115,252,65,0.01536306989534897],[115,252,66,0.013973093995123856],[115,252,67,0.012830248762181572],[115,252,68,0.011986387682411597],[115,252,69,0.011490051804087527],[115,252,70,0.011372559911765192],[115,252,71,0.011648905169571138],[115,252,72,0.012319043267823637],[115,252,73,0.013369239102011966],[115,252,74,0.014773470440897699],[115,252,75,0.01649488696267483],[115,252,76,0.018487322971140103],[115,252,77,0.020696862048527914],[115,252,78,0.019001873779031384],[115,252,79,0.01654948087401752],[115,253,64,0.017098832847553144],[115,253,65,0.015550237019021673],[115,253,66,0.014182504547313582],[115,253,67,0.013038948484814525],[115,253,68,0.01217206767527443],[115,253,69,0.011634836177203218],[115,253,70,0.011462831613783682],[115,253,71,0.01167504557468042],[115,253,72,0.012275170427066977],[115,253,73,0.013252943292329913],[115,253,74,0.014585545629016277],[115,253,75,0.016239056786076927],[115,253,76,0.01816995982468559],[115,253,77,0.020326697852711725],[115,253,78,0.019471884156373236],[115,253,79,0.01704782771307216],[115,254,64,0.01731021886513361],[115,254,65,0.015798843349962042],[115,254,66,0.014449164647037552],[115,254,67,0.013298723231598428],[115,254,68,0.012399980501308278],[115,254,69,0.011809772792904415],[115,254,70,0.011567652914479457],[115,254,71,0.011696577554750174],[115,254,72,0.012204153930712048],[115,254,73,0.013083944067987926],[115,254,74,0.014316825189976292],[115,254,75,0.01587240461339438],[115,254,76,0.017710487479793473],[115,254,77,0.019782595595924556],[115,254,78,0.020145369993217394],[115,254,79,0.017780367802783095],[115,255,64,0.01760023656078239],[115,255,65,0.0161227172461934],[115,255,66,0.014786410623428801],[115,255,67,0.013622681908545603],[115,255,68,0.012683349284300354],[115,255,69,0.012028556917627187],[115,255,70,0.011701537210205771],[115,255,71,0.011729144073611539],[115,255,72,0.012123025185669836],[115,255,73,0.012880853902455299],[115,255,74,0.013987619382570104],[115,255,75,0.015416973396973508],[115,255,76,0.01713263222438347],[115,255,77,0.019089831969967563],[115,255,78,0.02099555639111183],[115,255,79,0.01871927615776248],[115,256,64,0.017977833483028824],[115,256,65,0.016530256529545102],[115,256,66,0.015202299394727732],[115,256,67,0.014018869993659793],[115,256,68,0.013030649727959377],[115,256,69,0.012300604200744055],[115,256,70,0.011875372010589587],[115,256,71,0.011785619895424817],[115,256,72,0.012047113174786708],[115,256,73,0.012661849049750895],[115,256,74,0.013619251433242436],[115,256,75,0.014897425893005153],[115,256,76,0.016464473208701043],[115,256,77,0.018279859974283223],[115,256,78,0.02029584461799879],[115,256,79,0.019826784115936618],[115,257,64,0.01844521068330855],[115,257,65,0.017023197747962154],[115,257,66,0.015698386863215046],[115,257,67,0.01448905302754632],[115,257,68,0.013444397195488279],[115,257,69,0.012629849505850149],[115,257,70,0.012095245332507507],[115,257,71,0.01187498698616515],[115,257,72,0.011988994136206148],[115,257,73,0.012443720988401828],[115,257,74,0.013233239030428688],[115,257,75,0.014340384058277483],[115,257,76,0.015737966106833378],[115,257,77,0.017390040828042106],[115,257,78,0.019253240791245317],[115,257,79,0.021055002262751227],[115,258,64,0.01899654759691457],[115,258,65,0.017595428213482908],[115,258,66,0.016268634748520035],[115,258,67,0.015027713134547002],[115,258,68,0.013920220918494234],[115,258,69,0.013013885210860408],[115,258,70,0.01236163370157575],[115,258,71,0.012001557665648935],[115,258,72,0.011957735719235108],[115,258,73,0.012241128336675098],[115,258,74,0.01285054208768995],[115,258,75,0.013773662446302896],[115,258,76,0.014988153923906062],[115,258,77,0.016462826189105495],[115,258,78,0.018158864757688013],[115,258,79,0.02003112476831353],[115,259,64,0.01961714057144893],[115,259,65,0.01823406035869209],[115,259,66,0.016902470298039457],[115,259,67,0.015627087382596907],[115,259,68,0.014453668169627742],[115,259,69,0.013452054178291336],[115,259,70,0.01267810798066304],[115,259,71,0.012173479860350937],[115,259,72,0.011966305798297975],[115,259,73,0.012071979801238135],[115,259,74,0.012493999677573382],[115,259,75,0.013224885249706476],[115,259,76,0.014247167883979808],[115,259,77,0.015534450120268585],[115,259,78,0.01705253409410418],[115,259,79,0.018760617366035386],[115,260,64,0.020291400647127856],[115,260,65,0.018927036188276364],[115,260,66,0.0175918965087391],[115,260,67,0.016283738947178023],[115,260,68,0.01504620187261297],[115,260,69,0.013950821496390832],[115,260,70,0.013056018480587319],[115,260,71,0.012406674840489044],[115,260,72,0.012034708918230956],[115,260,73,0.011959727500805897],[115,260,74,0.012189754329122896],[115,260,75,0.012722034122206958],[115,260,76,0.013543911125267068],[115,260,77,0.014633781083160477],[115,260,78,0.015962115442910256],[115,260,79,0.01749255650147373],[115,261,64,0.021007646893957968],[115,261,65,0.01966571439663025],[115,261,66,0.018331758236469063],[115,261,67,0.016996465945761142],[115,261,68,0.01570092857523378],[115,261,69,0.01451775983294335],[115,261,70,0.013507377076346637],[115,261,71,0.012717399086431797],[115,261,72,0.012183102419483132],[115,261,73,0.011927956644377711],[115,261,74,0.01196423784877294],[115,261,75,0.012293719669887999],[115,261,76,0.012908440984492665],[115,261,77,0.01379154927914518],[115,261,78,0.01491821861682731],[115,261,79,0.01625664102098922],[115,262,64,0.020609377290441985],[115,262,65,0.020444427598839778],[115,262,66,0.019119230992994],[115,262,67,0.01776570731737628],[115,262,68,0.016421909145895194],[115,262,69,0.015160761894010397],[115,262,70,0.014043975899465506],[115,262,71,0.013121279521083206],[115,262,72,0.012430762840825005],[115,262,73,0.011999300719161055],[115,262,74,0.011843054717169864],[115,262,75,0.011968053268241118],[115,262,76,0.012370849357601039],[115,262,77,0.013039254850056078],[115,262,78,0.013953150496502384],[115,262,79,0.015085370548934905],[115,263,64,0.019877183230414437],[115,263,65,0.02117974353154064],[115,263,66,0.019953695005657163],[115,263,67,0.018593432720694893],[115,263,68,0.017214040789963848],[115,263,69,0.01588788749126173],[115,263,70,0.014677170402666846],[115,263,71,0.013633002722997532],[115,263,72,0.012795651724478956],[115,263,73,0.01219485560552676],[115,263,74,0.011850218379345844],[115,263,75,0.011771682303082348],[115,263,76,0.011960077226501165],[115,263,77,0.01240774611950022],[115,263,78,0.013099245925327808],[115,263,79,0.014012122782162932],[115,264,64,0.019114884440699892],[115,264,65,0.020370170451034567],[115,264,66,0.020836957378521582],[115,264,67,0.0194833749246298],[115,264,68,0.018083273784588433],[115,264,69,0.01670753530269712],[115,264,70,0.015417974836072613],[115,264,71,0.01426630208662777],[115,264,72,0.013294262866376758],[115,264,73,0.012533856803721493],[115,264,74,0.01200763074008435],[115,264,75,0.0117290474375388],[115,264,76,0.0117029290938525],[115,264,77,0.01192597504246201],[115,264,78,0.012387352902402747],[115,264,79,0.013069362338092699],[115,265,64,0.018319854966887476],[115,265,65,0.019517194676484842],[115,265,66,0.020773311702786963],[115,265,67,0.020441607156781186],[115,265,68,0.01903716526214953],[115,265,69,0.0176289415426605],[115,265,70,0.016277472262523577],[115,265,71,0.015034244998630958],[115,265,72,0.013941753053911857],[115,265,73,0.01303362182155851],[115,265,74,0.01233480695415425],[115,265,75,0.011861864068008553],[115,265,76,0.011623289593016315],[115,265,77,0.011619932262915685],[115,265,78,0.011845474630904901],[115,265,79,0.012286983892094028],[115,266,64,0.01748459494309995],[115,266,65,0.01861269151708861],[115,266,66,0.019812344404934294],[115,266,67,0.0211268380167752],[115,266,68,0.02008577186917867],[115,266,69,0.01866300727283526],[115,266,70,0.017267540774766207],[115,266,71,0.015949821653471568],[115,266,72,0.01475235790635562],[115,266,73,0.01370975936247089],[115,266,74,0.012848847207089386],[115,266,75,0.012188829751957321],[115,266,76,0.011741544172049338],[115,266,77,0.011511763820311332],[115,266,78,0.011497570627161564],[115,266,79,0.01169079199222012],[115,267,64,0.01659550281964764],[115,267,65,0.017642812726891072],[115,267,66,0.01877288048271],[115,267,67,0.02003471402170318],[115,267,68,0.0212428826601678],[115,267,69,0.019823455636957067],[115,267,70,0.018401897146881667],[115,267,71,0.0170268367194189],[115,267,72,0.015740094038383706],[115,267,73,0.014576646574785251],[115,267,74,0.013564656818255829],[115,267,75,0.0127255590391397],[115,267,76,0.012074205409803414],[115,267,77,0.011619071213055106],[115,267,78,0.011362518768520945],[115,267,79,0.011301119615134093],[115,268,64,0.015631287582618583],[115,268,65,0.01658636542138364],[115,268,66,0.017634192439828188],[115,268,67,0.018828904586444675],[115,268,68,0.020160073273210007],[115,268,69,0.021128319887173588],[115,268,70,0.019697458755293915],[115,268,71,0.01828110468626699],[115,268,72,0.01691974840373367],[115,268,73,0.015648175274662297],[115,268,74,0.014495415662867476],[115,268,75,0.01348474681409649],[115,268,76,0.012633746207579424],[115,268,77,0.011954396219217372],[115,268,78,0.011453239854476474],[115,268,79,0.01113158722515833],[115,269,64,0.014561020109723453],[115,269,65,0.01541283099898669],[115,269,66,0.016366719605436942],[115,269,67,0.01748129536783579],[115,269,68,0.018751700177609226],[115,269,69,0.02012808533708544],[115,269,70,0.021176024240003366],[115,269,71,0.019731949377704165],[115,269,72,0.01830815534284778],[115,269,73,0.016938767735786987],[115,269,74,0.015653297602287602],[115,269,75,0.014476560960460188],[115,269,76,0.013428640810219519],[115,269,77,0.012524891590501675],[115,269,78,0.01177598597420105],[115,269,79,0.011188003817531449],[115,270,64,0.01334182323007464],[115,270,65,0.01408002371196063],[115,270,66,0.01492972010444395],[115,270,67,0.015953318165217698],[115,270,68,0.017151591015599987],[115,270,69,0.01848112935875283],[115,270,70,0.019899932148573482],[115,270,71,0.021368715890550224],[115,270,72,0.019925761554573374],[115,270,73,0.018464662347662694],[115,270,74,0.017050440331439952],[115,270,75,0.015709264885712133],[115,270,76,0.014463614344986065],[115,270,77,0.013332178473938422],[115,270,78,0.012329793713616729],[115,270,79,0.011467411166070656],[115,271,64,0.011946446942750499],[115,271,65,0.012561690672640461],[115,271,66,0.013298588659601946],[115,271,67,0.014222650573604645],[115,271,68,0.015340251831270956],[115,271,69,0.01661490011787063],[115,271,70,0.018010056744247722],[115,271,71,0.019490425755191682],[115,271,72,0.021022266583446282],[115,271,73,0.020227860897682984],[115,271,74,0.01868558318941646],[115,271,75,0.01717869306470909],[115,271,76,0.01573204943585162],[115,271,77,0.014367721474005078],[115,271,78,0.013104808345273488],[115,271,79,0.011959281730506852],[115,272,64,0.010453481222494525],[115,272,65,0.010937909700029447],[115,272,66,0.011554410386459067],[115,272,67,0.012370790759586152],[115,272,68,0.01339884863093908],[115,272,69,0.01460932601933591],[115,272,70,0.015971449725336113],[115,272,71,0.017454186596246868],[115,272,72,0.01902660746173742],[115,272,73,0.020658240758033297],[115,272,74,0.02050124704537808],[115,272,75,0.01883506459306068],[115,272,76,0.017192769417376963],[115,272,77,0.015599725999804857],[115,272,78,0.014079245323941647],[115,272,79,0.012652301567281914],[115,273,64,0.008958479258708166],[115,273,65,0.009306084197048696],[115,273,66,0.009795760587561394],[115,273,67,0.010496700704447899],[115,273,68,0.011425792193540894],[115,273,69,0.012561160879424018],[115,273,70,0.013877985965039159],[115,273,71,0.015349706478917872],[115,273,72,0.01694843173124007],[115,273,73,0.018645352461391564],[115,273,74,0.020411152146442017],[115,273,75,0.020618011869218925],[115,273,76,0.01879547523625311],[115,273,77,0.016988782721209822],[115,273,78,0.015225222933817182],[115,273,79,0.013530553492154403],[115,274,64,0.007544652278825427],[115,274,65,0.007751528291739277],[115,274,66,0.008109496392222065],[115,274,67,0.00868815592489629],[115,274,68,0.009509018541435165],[115,274,69,0.01055757525560151],[115,274,70,0.011815022454759853],[115,274,71,0.013259404071020144],[115,274,72,0.014866061204180447],[115,274,73,0.016608093188229436],[115,274,74,0.018456829495699826],[115,274,75,0.02038231186506787],[115,274,76,0.020489214751667116],[115,274,77,0.018493049582450568],[115,274,78,0.016510647542417312],[115,274,79,0.014572158291629445],[115,275,64,0.00628363940307056],[115,275,65,0.0063481666126477205],[115,275,66,0.006571376087626735],[115,275,67,0.007022272880680498],[115,275,68,0.00772641454027218],[115,275,69,0.008676473761577938],[115,275,70,0.00985960410052385],[115,275,71,0.01125850269702214],[115,275,72,0.01285188964158319],[115,275,73,0.01461500904434258],[115,275,74,0.016520151136551076],[115,275,75,0.01853719470813752],[115,275,76,0.020634169162996523],[115,275,77,0.020068699073863387],[115,275,78,0.01789971369224168],[115,275,79,0.015749814396454204],[115,276,64,0.005236107544075243],[115,276,65,0.005159061875756139],[115,276,66,0.005246505203063286],[115,276,67,0.005565862374784165],[115,276,68,0.00614606862791626],[115,276,69,0.0069866365590114],[115,276,70,0.008080492678653467],[115,276,71,0.009414946492672178],[115,276,72,0.01097218861857963],[115,276,73,0.012729820150467426],[115,276,74,0.014661412551995432],[115,276,75,0.016737097314270335],[115,276,76,0.018924184577693695],[115,276,77,0.021187809884715542],[115,276,78,0.01935358886874765],[115,276,79,0.017031522902229528],[115,277,64,0.004452179598308059],[115,277,65,0.004236768615521441],[115,277,66,0.004189607781575871],[115,277,67,0.004375607498195945],[115,277,68,0.004826345356276945],[115,277,69,0.0055476838528503245],[115,277,70,0.006538017929305027],[115,277,71,0.00778913779628851],[115,277,72,0.009286733710400643],[115,277,73,0.011010940638539827],[115,277,74,0.01293692205529038],[115,277,75,0.015035492060785877],[115,277,76,0.017273774954154355],[115,277,77,0.01961590135150534],[115,277,78,0.020831282734009922],[115,277,79,0.01838149759887984],[115,278,64,0.003971689442258248],[115,278,65,0.0036235116538672904],[115,278,66,0.0034451215275708],[115,278,67,0.003498064916964403],[115,278,68,0.003815782666071569],[115,278,69,0.0044098624430934825],[115,278,70,0.005283749981231103],[115,278,71,0.0064334951159760395],[115,278,72,0.007848250487184712],[115,278,73,0.009510817695505878],[115,278,74,0.011398240142237056],[115,278,75,0.01348244171017066],[115,278,76,0.015730910377476367],[115,278,77,0.018107425797788335],[115,278,78,0.020572829828193973],[115,278,79,0.019761259559229163],[115,279,64,0.0038242624932510205],[115,279,65,0.0033511881428331886],[115,279,66,0.0030471157534944946],[115,279,67,0.0029694885251681565],[115,279,68,0.003152811030851711],[115,279,69,0.003613653591657132],[115,279,70,0.004359992496004871],[115,279,71,0.00539183119541196],[115,279,72,0.00670167997731037],[115,279,73,0.00827508945207989],[115,279,74,0.010091237086140448],[115,279,75,0.012123565929678724],[115,279,76,0.014340474610540829],[115,279,77,0.016706057595708854],[115,279,78,0.01918089465944623],[115,279,79,0.021130915743570698],[115,280,64,0.004029220822912936],[115,280,65,0.0034411922392890188],[115,280,66,0.003019031263922711],[115,280,67,0.0028154746938431367],[115,280,68,0.0028652938033243832],[115,280,69,0.0031892016492846005],[115,280,70,0.0037990960951599685],[115,280,71,0.004698550864611208],[115,280,72,0.0058832634110262344],[115,280,73,0.007341561654104384],[115,280,74,0.009054968837770993],[115,280,75,0.010998825670643591],[115,280,76,0.01314296882354528],[115,280,77,0.01545246477888517],[115,280,78,0.017888397955017597],[115,280,79,0.020408711965812648],[115,281,64,0.00459531202064446],[115,281,65,0.0039040616736570125],[115,281,66,0.003373241511225106],[115,281,67,0.0030504285327742826],[115,281,68,0.0029698882740427884],[115,281,69,0.003155563053963175],[115,281,70,0.0036225917891854363],[115,281,71,0.0043776685061579276],[115,281,72,0.005419446188608256],[115,281,73,0.006739003174950898],[115,281,74,0.008320371401858088],[115,281,75,0.010141125689578766],[115,281,76,0.012173033170163348],[115,281,77,0.014382761872322947],[115,281,78,0.016732647397184216],[115,281,79,0.01918151654859105],[115,282,64,0.005520261194905095],[115,282,65,0.004738945658860528],[115,282,66,0.004110434533315042],[115,282,67,0.0036768507492911003],[115,282,68,0.003471227109835873],[115,282,69,0.0035197754590207135],[115,282,70,0.003840144262954511],[115,282,71,0.004441645091643565],[115,282,72,0.005325601129983976],[115,282,73,0.006485760528557535],[115,282,74,0.00790877395138721],[115,282,75,0.009574735571737596],[115,282,76,0.011457786666972922],[115,282,77,0.013526780870193452],[115,282,78,0.015746010050841596],[115,282,79,0.018075989719619243],[115,283,64,0.006790145671453948],[115,283,65,0.005932893750516166],[115,283,66,0.005218815340633343],[115,283,67,0.004684444835572574],[115,283,68,0.004360919976649387],[115,283,69,0.004275746875708208],[115,283,70,0.004448324987696682],[115,283,71,0.004890044847211533],[115,283,72,0.005604571155442755],[115,283,73,0.0065881916239396],[115,283,74,0.007830231010954007],[115,283,75,0.009313529676835793],[115,283,76,0.011014985881303604],[115,283,77,0.012906160948167001],[115,283,78,0.014953946333213869],[115,283,79,0.017121291549414757],[115,284,64,0.008378592099553708],[115,284,65,0.0074599654143343375],[115,284,66,0.0066731285560745375],[115,284,67,0.006049044443085856],[115,284,68,0.005616375268392668],[115,284,69,0.00540296482123205],[115,284,70,0.005429205224629034],[115,284,71,0.005708011690747391],[115,284,72,0.00624503161926648],[115,284,73,0.007038919062894723],[115,284,74,0.008081674090211781],[115,284,75,0.009359046465675586],[115,284,76,0.010851002961406545],[115,284,77,0.012532257516018315],[115,284,78,0.014372863363265586],[115,284,79,0.016338866168518283],[115,285,64,0.010245795809097251],[115,285,65,0.0092801601813528],[115,285,66,0.008433501227603451],[115,285,67,0.0077313609092138046],[115,285,68,0.00719944195947787],[115,285,69,0.00686502554842525],[115,285,70,0.006748769059380463],[115,285,71,0.0068645656458982155],[115,285,72,0.007219672569383068],[115,285,73,0.00781490332265937],[115,285,74,0.008644883177534913],[115,285,75,0.009698367684945614],[115,285,76,0.010958623551339688],[115,285,77,0.012403871215260992],[115,285,78,0.014007788354552053],[115,285,79,0.015740073468073698],[115,286,64,0.012337362373042018],[115,286,65,0.011338168375376987],[115,286,66,0.010444105828205383],[115,286,67,0.009675550986237267],[115,286,68,0.009054871673361678],[115,286,69,0.008607983496890983],[115,286,70,0.008355146658710856],[115,286,71,0.008310719479083198],[115,286,72,0.008483201235785097],[115,286,73,0.008875336183778133],[115,286,74,0.009484278511722037],[115,286,75,0.010301817884823362],[115,286,76,0.011314665120516081],[115,286,77,0.012504797444957595],[115,286,78,0.01384986268516674],[115,286,79,0.015323641664638878],[115,287,64,0.014582971419738548],[115,287,65,0.013561942479137196],[115,287,66,0.012631643530858022],[115,287,67,0.01180760488592024],[115,287,68,0.011108601111837977],[115,287,69,0.010558521146788168],[115,287,70,0.010176667971012483],[115,287,71,0.009977415824228111],[115,287,72,0.009970165057721206],[115,287,73,0.010159354759665735],[115,287,74,0.010544533035129589],[115,287,75,0.011120484719426326],[115,287,76,0.011877416203737994],[115,287,77,0.012801196955860766],[115,287,78,0.013873657227321805],[115,287,79,0.015072941351732557],[115,288,64,0.016894862807880526],[115,288,65,0.015861089265352728],[115,288,66,0.01490364789656414],[115,288,67,0.014033554793152778],[115,288,68,0.013265855019230458],[115,288,69,0.012621939474599025],[115,288,70,0.012119737098811896],[115,288,71,0.011773285055241483],[115,288,72,0.011592595543671484],[115,288,73,0.011583576457385234],[115,288,74,0.011748005894162193],[115,288,75,0.012083560432753679],[115,288,76,0.012583896990850012],[115,288,77,0.013238787987792617],[115,288,78,0.014034309446065964],[115,288,79,0.014953081580613176],[115,289,64,0.019166145574252124],[115,289,65,0.018125083578492327],[115,289,66,0.017146610338384036],[115,289,67,0.016237505691759427],[115,289,68,0.015409072001145632],[115,289,69,0.014679971789499084],[115,289,70,0.014066530549009],[115,289,71,0.013582227493443172],[115,289,72,0.013237476874327823],[115,289,73,0.013039459032999976],[115,289,74,0.012992001324119106],[115,289,75,0.013095508953736252],[115,289,76,0.013346945684027122],[115,289,77,0.013739864267751136],[115,289,78,0.01426448638906578],[115,289,79,0.014907831804126992],[115,290,64,0.021272667062066066],[115,290,65,0.020227089175950175],[115,290,66,0.01923176238056473],[115,290,67,0.018289368895041035],[115,290,68,0.017407541182225476],[115,290,69,0.0166022185204887],[115,290,70,0.01588806802200482],[115,290,71,0.015277903380341523],[115,290,72,0.014782388026011626],[115,290,73,0.014409783855212004],[115,290,74,0.01416574578469001],[115,290,75,0.01405316229878274],[115,290,76,0.014072042068532575],[115,290,77,0.014219446637778006],[115,290,78,0.014489469087841982],[115,290,79,0.01487325851144944],[115,291,64,0.019826488920369104],[115,291,65,0.020883537330948592],[115,291,66,0.021050372561914714],[115,291,67,0.020084780481670995],[115,291,68,0.019161827807245242],[115,291,69,0.018294812567721305],[115,291,70,0.01749670187428158],[115,291,71,0.016779494057436315],[115,291,72,0.016153861874900956],[115,291,73,0.015628836392418664],[115,291,74,0.01521153188596671],[115,291,75,0.014906912034084637],[115,291,76,0.014717597589440204],[115,291,77,0.014643715639517841],[115,291,78,0.014682790487982057],[115,291,79,0.014829676111323683],[115,292,64,0.018366297377464487],[115,292,65,0.019412566114049987],[115,292,66,0.020423607229520496],[115,292,67,0.021405192307899314],[115,292,68,0.02060072082334347],[115,292,69,0.01969227413142974],[115,292,70,0.018833205926776734],[115,292,71,0.01803449175514637],[115,292,72,0.01730647843770462],[115,292,73,0.01665853019106095],[115,292,74,0.016098709493641773],[115,292,75,0.01563349303870306],[115,292,76,0.015267523044270266],[115,292,77,0.015003394119994263],[115,292,78,0.014841475820748112],[115,292,79,0.01477977094716145],[115,293,64,0.01733760826225625],[115,293,65,0.01836079273876731],[115,293,66,0.019352973415175338],[115,293,67,0.02032442066109322],[115,293,68,0.021278137450360734],[115,293,69,0.02075007172169531],[115,293,70,0.019858107291310555],[115,293,71,0.019008914913385078],[115,293,72,0.018212110231874818],[115,293,73,0.017476859688043977],[115,293,74,0.01681155013833706],[115,293,75,0.01622348530485441],[115,293,76,0.015718609374022748],[115,293,77,0.015301258001952586],[115,293,78,0.014973936927316802],[115,293,79,0.01473712833465799],[115,294,64,0.01677945673772809],[115,294,65,0.017765070283303395],[115,294,66,0.018720449491362496],[115,294,67,0.019660552969912724],[115,294,68,0.020591698442067204],[115,294,69,0.021443080823882882],[115,294,70,0.020550118370363198],[115,294,71,0.019685690392736755],[115,294,72,0.01885822996843351],[115,294,73,0.018076107694414558],[115,294,74,0.017347328307849012],[115,294,75,0.01667924344379834],[115,294,76,0.016078280848739322],[115,294,77,0.01554969032993402],[115,294,78,0.015097306680655013],[115,294,79,0.014723329780252597],[115,295,64,0.01670815135816916],[115,295,65,0.017640209703231238],[115,295,66,0.018539237748116152],[115,295,67,0.019425017864904297],[115,295,68,0.020306972244806695],[115,295,69,0.021180578379917776],[115,295,70,0.020904751555094397],[115,295,71,0.02006322158856253],[115,295,72,0.019246408418590728],[115,295,73,0.018461248450675385],[115,295,74,0.017714604848912553],[115,295,75,0.017013035949816846],[115,295,76,0.016362566703897588],[115,295,77,0.01576846340550463],[115,295,78,0.01523501195480281],[115,295,79,0.014765299877359545],[115,296,64,0.01711855881598068],[115,296,65,0.01798023445192191],[115,296,66,0.018802557212842953],[115,296,67,0.019610184996502755],[115,296,68,0.02041536073862769],[115,296,69,0.0212150465648244],[115,296,70,0.020933117774804867],[115,296,71,0.02015414353704941],[115,296,72,0.019391003482404405],[115,296,73,0.018648547224790493],[115,296,74,0.01793171339594181],[115,296,75,0.017245395089638047],[115,296,76,0.016594292048129365],[115,296,77,0.01598274978812826],[115,296,78,0.015414585876404178],[115,296,79,0.014892903575312706],[115,297,64,0.017985211771657853],[115,297,65,0.018759455991274678],[115,297,66,0.01948468266756213],[115,297,67,0.020190375007301243],[115,297,68,0.02089123935498057],[115,297,69,0.02134593074411555],[115,297,70,0.020660909891023097],[115,297,71,0.019984265939312008],[115,297,72,0.01931804131998087],[115,297,73,0.018664357249401922],[115,297,74,0.018025450561032937],[115,297,75,0.017403678091132163],[115,297,76,0.016801488657351617],[115,297,77,0.016221362719600514],[115,297,78,0.01566571986056105],[115,297,79,0.015136794268275458],[115,298,64,0.01926323851090864],[115,298,65,0.019933368997132432],[115,298,66,0.02054180248687437],[115,298,67,0.021122687837598915],[115,298,68,0.021228059047649843],[115,298,69,0.020672871427283874],[115,298,70,0.020127571790253502],[115,298,71,0.019591704887632812],[115,298,72,0.019064290258925535],[115,298,73,0.018544114641367446],[115,298,74,0.01802997045772545],[115,298,75,0.017520840133335498],[115,298,76,0.017016026087238824],[115,298,77,0.01651522633424456],[115,298,78,0.016018555723912475],[115,298,79,0.015526512928129989],[115,299,64,0.020889113303220134],[115,299,65,0.0214393651908363],[115,299,66,0.020986190597201797],[115,299,67,0.020559388008086352],[115,299,68,0.02015010388079619],[115,299,69,0.019759254234364972],[115,299,70,0.019385653911617284],[115,299,71,0.019026203957225887],[115,299,72,0.01867652806632609],[115,299,73,0.018331531814798418],[115,299,74,0.017985883990921304],[115,299,75,0.017634419490094314],[115,299,76,0.017272463375241194],[115,299,77,0.016896075844334196],[115,299,78,0.016502217982314847],[115,299,79,0.01608883830655345],[115,300,64,0.0200841593405363],[115,300,65,0.019681648028678514],[115,300,66,0.019370630570300782],[115,300,67,0.019108538795077862],[115,300,68,0.01887605550519842],[115,300,69,0.018674210559325305],[115,300,70,0.018500355849800774],[115,300,71,0.018348645228139566],[115,300,72,0.018211003070054688],[115,300,73,0.018077989788853593],[115,300,74,0.017939563227434882],[115,300,75,0.0177857350522912],[115,300,76,0.01760712146543497],[115,300,77,0.017395387740764386],[115,300,78,0.017143586278860763],[115,300,79,0.01684638805728106],[115,301,64,0.018015166613935308],[115,301,65,0.01775954453756683],[115,301,66,0.01761376400366572],[115,301,67,0.017531658662098368],[115,301,68,0.017493419258412427],[115,301,69,0.017500600314708667],[115,301,70,0.01754925660063847],[115,301,71,0.017630750725779912],[115,301,72,0.01773308953327918],[115,301,73,0.017842129704255066],[115,301,74,0.017942651066474642],[115,301,75,0.01801929634925684],[115,301,76,0.018057376374862877],[115,301,77,0.01804353992326188],[115,301,78,0.017966307750590556],[115,301,79,0.017816470480249143],[115,302,64,0.01589561348963514],[115,302,65,0.015797012866826478],[115,302,66,0.01582689341217504],[115,302,67,0.015935978316115842],[115,302,68,0.01610450529589469],[115,302,69,0.016334940928564422],[115,302,70,0.016622232967170723],[115,302,71,0.016954974715879],[115,302,72,0.01731713762857845],[115,302,73,0.017689643798600472],[115,302,74,0.01805177635766109],[115,302,75,0.01838242610925872],[115,302,76,0.018661173029312163],[115,302,77,0.01886920157299363],[115,302,78,0.018990049029640663],[115,302,79,0.019010186465361623],[115,303,64,0.01383315572040553],[115,303,65,0.013899447810086856],[115,303,66,0.014112297276371116],[115,303,67,0.014419838731525183],[115,303,68,0.014802874024831051],[115,303,69,0.015265129930968784],[115,303,70,0.01580064928929086],[115,303,71,0.01639533498190677],[115,303,72,0.017029099485033884],[115,303,73,0.017677823732324027],[115,303,74,0.018315122803250653],[115,303,75,0.018913916318120172],[115,303,76,0.01944780179079838],[115,303,77,0.01989222955869554],[115,303,78,0.020225478274733744],[115,303,79,0.020429430305605227],[115,304,64,0.011846235437760795],[115,304,65,0.012084383091318733],[115,304,66,0.012486356510997948],[115,304,67,0.01299829523823004],[115,304,68,0.013602068147300769],[115,304,69,0.01430295667349186],[115,304,70,0.015094278044644712],[115,304,71,0.015959328121827217],[115,304,72,0.016873963762721458],[115,304,73,0.017808962931735013],[115,304,74,0.018732159540749624],[115,304,75,0.019610350436369793],[115,304,76,0.02041097238316822],[115,304,77,0.021103547325306348],[115,304,78,0.021140284923650037],[115,304,79,0.02072183271923212],[115,305,64,0.0099429099992246],[115,305,65,0.01035878582445786],[115,305,66,0.010954789080694687],[115,305,67,0.011675716963964461],[115,305,68,0.01250498275784835],[115,305,69,0.01344965657455497],[115,305,70,0.014502480662388004],[115,305,71,0.015644226445469506],[115,305,72,0.01684672044018956],[115,305,73,0.018075615678006383],[115,305,74,0.019292905070971256],[115,305,75,0.020459173653238173],[115,305,76,0.02129062988779236],[115,305,77,0.02032613844744415],[115,305,78,0.01951857609610132],[115,305,79,0.01889581717982001],[115,306,64,0.008143603248568068],[115,306,65,0.008741438124612727],[115,306,66,0.009534507701554548],[115,306,67,0.010466949481847251],[115,306,68,0.011524155449755463],[115,306,69,0.012715153266255167],[115,306,70,0.014032234142546183],[115,306,71,0.015453734346751659],[115,306,72,0.016947509332159275],[115,306,73,0.01847412081528676],[115,306,74,0.01998973268132419],[115,306,75,0.021382688350152498],[115,306,76,0.02001367366000219],[115,306,77,0.01878675948025407],[115,306,78,0.017740395870556886],[115,306,79,0.01690742651646655],[115,307,64,0.006477055357678361],[115,307,65,0.007259014609417785],[115,307,66,0.008249854151285603],[115,307,67,0.009393736187228642],[115,307,68,0.010678406597090179],[115,307,69,0.012114950599997351],[115,307,70,0.01369530666621751],[115,307,71,0.015395476828136145],[115,307,72,0.017179446934311133],[115,307,73,0.01900278737205864],[115,307,74,0.020815929574063457],[115,307,75,0.02025755540598712],[115,307,76,0.01860829617032139],[115,307,77,0.01711868049380709],[115,307,78,0.01583272623217794],[115,307,79,0.014788193689974171],[115,308,64,0.004976727896569818],[115,308,65,0.005942612487703901],[115,308,66,0.007129279917455034],[115,308,67,0.008481576773813879],[115,308,68,0.009989904984135425],[115,308,69,0.0116674360133233],[115,308,70,0.01350582865148871],[115,308,71,0.01547886595628928],[115,308,72,0.017546812434719703],[115,308,73,0.01966041969570567],[115,308,74,0.02106230257936543],[115,308,75,0.019016696070429537],[115,308,76,0.01709325825572904],[115,308,77,0.015346474704611014],[115,308,78,0.013825750542574924],[115,308,79,0.012573599778818717],[115,309,64,0.0036776639334998302],[115,309,65,0.004824733986157183],[115,309,66,0.006202472889843905],[115,309,67,0.007757022474982296],[115,309,68,0.009481658411624735],[115,309,69,0.011391594854846233],[115,309,70,0.013478258824144076],[115,309,71,0.015713344795792446],[115,309,72,0.018053592423092724],[115,309,73,0.0204451816231697],[115,309,74,0.019992688212709418],[115,309,75,0.017674372910209443],[115,309,76,0.015489126045352568],[115,309,77,0.013496937633540144],[115,309,78,0.01175230025043477],[115,309,79,0.01030220473369066],[115,310,64,0.002613802629358336],[115,310,65,0.00393672054851171],[115,310,66,0.005497929510625003],[115,310,67,0.007245407469742253],[115,310,68,0.009175428670579817],[115,310,69,0.011305135055369122],[115,310,70,0.013625744694979762],[115,310,71,0.016107008223486294],[115,310,72,0.018702383718744414],[115,310,73,0.02135379913496955],[115,310,74,0.018818448450319582],[115,310,75,0.01624641251573305],[115,310,76,0.013818110655755764],[115,310,77,0.011598606129692525],[115,310,78,0.009647061691963037],[115,310,79,0.008014555628814236],[115,311,64,0.001815747503850783],[115,311,65,0.0033066379770241476],[115,311,66,0.0050409715548397375],[115,311,67,0.00696901563678245],[115,311,68,0.009090070085581303],[115,311,69,0.011423021373076723],[115,311,70,0.013958876705719197],[115,311,71,0.01666559992789855],[115,311,72,0.01949365367272629],[115,311,73,0.020432590683490428],[115,311,74,0.01755074779065652],[115,311,75,0.014750071218784773],[115,311,76,0.012103630242434696],[115,311,77,0.009681019154698831],[115,311,78,0.007545543158583199],[115,311,79,0.0057518724906877846],[115,312,64,0.0013089873187368225],[115,312,65,0.0029576114757003972],[115,312,66,0.004852206526600839],[115,312,67,0.006945681677607031],[115,312,68,0.009240290692910973],[115,312,69,0.011756418331931102],[115,312,70,0.0144848352258328],[115,312,71,0.017391884848766956],[115,312,72,0.02042535728119736],[115,312,73,0.019288408154039618],[115,312,74,0.016202262837454347],[115,312,75,0.013203603555803044],[115,312,76,0.010369594660879243],[115,312,77,0.007773720463389409],[115,312,78,0.0054828022471822505],[115,312,79,0.0035545115974533388],[115,313,64,0.0011125683491808541],[115,313,65,0.0029066094025871495],[115,313,66,0.004946430527100183],[115,313,67,0.007187825524185667],[115,313,68,0.009635835038472563],[115,313,69,0.012312040918234119],[115,313,70,0.015206929556032214],[115,313,71,0.01828539631383016],[115,313,72,0.021311810564484543],[115,313,73,0.01804240703888098],[115,313,74,0.014786714546493968],[115,313,75,0.01162553372225952],[115,313,76,0.00863941284157032],[115,313,77,0.0059050031405545305],[115,313,78,0.00349193330644035],[115,313,79,0.0014602059166642365],[115,314,64,0.0012382167021083013],[115,314,65,0.0031636744483317793],[115,314,66,0.005331972382683579],[115,314,67,0.007701918901617157],[115,314,68,0.010281087559302059],[115,314,69,0.013091912104178738],[115,314,70,0.016124528124120532],[115,314,71,0.01934255718695561],[115,314,72,0.02011063132542705],[115,314,73,0.01670492092157387],[115,314,74,0.01331808374266368],[115,314,75,0.01003363009582456],[115,314,76,0.006934722788857555],[115,314,77,0.0041003957337485625],[115,314,78,0.0016023145491816215],[115,314,79,-4.979179163888506E-4],[115,315,64,0.0016899092946477377],[115,315,65,0.003731600934387792],[115,315,66,0.006010477819102522],[115,315,67,0.00848838293600843],[115,315,68,0.01117509555468936],[115,315,69,0.01409352633281642],[115,315,70,0.017233379148801013],[115,315,71,0.020557174456714435],[115,315,72,0.018789541646363324],[115,315,73,0.01528665176580538],[115,315,74,0.01180950995577256],[115,315,75,0.008443582688039191],[115,315,76,0.0052738438711177485],[115,315,77,0.0023808894561305597],[115,315,78,-1.6238588722077368E-4],[115,315,79,-0.002293546985765638],[115,316,64,0.002463892130937881],[115,316,65,0.004606056971296712],[115,316,66,0.006977132536055717],[115,316,67,0.009541915786465542],[115,316,68,0.012312010862657428],[115,316,69,0.015310418230264619],[115,316,70,0.018526321200854606],[115,316,71,0.020869025916659463],[115,316,72,0.017357438068757353],[115,316,73,0.013797446501931215],[115,316,74,0.010271873375664509],[115,316,75,0.006867383113067474],[115,316,76,0.0036699507760066924],[115,316,77,7.609056184088097E-4],[115,316,78,-0.0017864459852305339],[115,316,79,-0.003909615106570194],[115,317,64,0.003549144616755419],[115,317,65,0.005776150340296616],[115,317,66,0.008221323179059426],[115,317,67,0.0108522494424039],[115,317,68,0.013681949539243211],[115,317,69,0.016733136012450273],[115,317,70,0.019994383312888976],[115,317,71,0.01936130420010352],[115,317,72,0.015822311923209403],[115,317,73,0.012244737155850791],[115,317,74,0.008712059420554247],[115,317,75,0.005311406334598705],[115,317,76,0.002128968156972349],[115,317,77,-7.539979177971877E-4],[115,317,78,-0.003264569433748188],[115,317,79,-0.0053409631213510635],[115,318,64,0.004928288833899854],[115,318,65,0.007225437165341291],[115,318,66,0.009727735428665878],[115,318,67,0.012405335068292571],[115,318,68,0.015272269096507762],[115,318,69,0.018350619329859562],[115,318,70,0.021150999127961943],[115,318,71,0.017720936954655563],[115,318,72,0.014189499670944888],[115,318,73,0.01063164389168991],[115,318,74,0.0071309050435184405],[115,318,75,0.003774193064636311],[115,318,76,6.471845921989508E-4],[115,318,77,-0.002169682894586087],[115,318,78,-0.004604610631617902],[115,318,79,-0.006597228592761356],[115,319,64,0.006578942965716845],[115,319,65,0.008933372733040014],[115,319,66,0.011477888735531037],[115,319,67,0.014184956602739503],[115,319,68,0.017069263195576112],[115,319,69,0.020151981649546274],[115,319,70,0.019358001882808482],[115,319,71,0.015952271685213303],[115,319,72,0.012459576983081706],[115,319,73,0.008954739920543133],[115,319,74,0.005520825466883102],[115,319,75,0.002243931237106466],[115,319,76,-7.914159886562345E-4],[115,319,77,-0.003506251529769743],[115,319,78,-0.005830547475806189],[115,319,79,-0.007705967508994954],[116,-64,64,-0.0013551598689217543],[116,-64,65,-0.0015499373536199674],[116,-64,66,-0.0016856129174365386],[116,-64,67,-0.0017717642674250993],[116,-64,68,-0.0017912931930729595],[116,-64,69,-0.0017130346961401588],[116,-64,70,-0.0015129435111205353],[116,-64,71,-0.001174221301476953],[116,-64,72,-6.869383104225942E-4],[116,-64,73,-4.7609312235165204E-5],[116,-64,74,7.412765813339736E-4],[116,-64,75,0.001671772593609636],[116,-64,76,0.0027310376571857624],[116,-64,77,0.0039019466020230862],[116,-64,78,0.005163747161144482],[116,-64,79,0.006492763691735426],[116,-63,64,-0.0012310008270917457],[116,-63,65,-0.0013848071573814328],[116,-63,66,-0.0014767810959288598],[116,-63,67,-0.0015153787282179676],[116,-63,68,-0.0014838836374454817],[116,-63,69,-0.0013528089324391951],[116,-63,70,-0.0010999187948530537],[116,-63,71,-7.102621668192251E-4],[116,-63,72,-1.7573181653564806E-4],[116,-63,73,5.054169359317119E-4],[116,-63,74,0.0013290880840722073],[116,-63,75,0.002285907537115071],[116,-63,76,0.0033618264997904677],[116,-63,77,0.004538765567814168],[116,-63,78,0.00579529937745631],[116,-63,79,0.007107381551401392],[116,-62,64,-9.019970441816734E-4],[116,-62,65,-0.001023244149508448],[116,-62,66,-0.001081516772343919],[116,-62,67,-0.001083848468796916],[116,-62,68,-0.0010139765649129539],[116,-62,69,-8.443401220516914E-4],[116,-62,70,-5.546016619071089E-4],[116,-62,71,-1.3160536445839388E-4],[116,-62,72,4.31101840806247E-4],[116,-62,73,0.0011337853530398944],[116,-62,74,0.0019710742602167177],[116,-62,75,0.002932548993576445],[116,-62,76,0.004003365190127919],[116,-62,77,0.005164913581359227],[116,-62,78,0.0063955156342164745],[116,-62,79,0.007671154582581115],[116,-61,64,-3.787039151296746E-4],[116,-61,65,-4.7560323002563787E-4],[116,-61,66,-5.099876328603602E-4],[116,-61,67,-4.8721031551910007E-4],[116,-61,68,-3.915132709451334E-4],[116,-61,69,-1.9745117439320833E-4],[116,-61,70,1.1337155866236201E-4],[116,-61,71,5.524004342298996E-4],[116,-61,72,0.0011246246057516186],[116,-61,73,0.0018291037325089245],[116,-61,74,0.0026595279951612547],[116,-61,75,0.0036048111980539403],[116,-61,76,0.0046497167953139275],[116,-61,77,0.005775516588339075],[116,-61,78,0.006960681756794195],[116,-61,79,0.008181605804306867],[116,-60,64,3.246333527658046E-4],[116,-60,65,2.444140337129809E-4],[116,-60,66,2.2468287776982723E-4],[116,-60,67,2.6197125427835944E-4],[116,-60,68,3.714977045122736E-4],[116,-60,69,5.764574931572341E-4],[116,-60,70,8.932995685178847E-4],[116,-60,71,0.0013318675709301758],[116,-60,72,0.0018958874789921567],[116,-60,73,0.002583486371721967],[116,-60,74,0.0033877422879010233],[116,-60,75,0.0042972650740093704],[116,-60,76,0.005296808024883863],[116,-60,77,0.0063679100372714915],[116,-60,78,0.007489567916494069],[116,-60,79,0.008638938401108465],[116,-59,64,0.0011911021442552788],[116,-59,65,0.0011208150585528941],[116,-59,66,0.0011075049530812216],[116,-59,67,0.0011497276821275492],[116,-59,68,0.0012621360834937988],[116,-59,69,0.0014655889236208051],[116,-59,70,0.0017746123511177476],[116,-59,71,0.002197567650639112],[116,-59,72,0.0027371149925504157],[116,-59,73,0.0033907071244904667],[116,-59,74,0.0041511129791154035],[116,-59,75,0.005006971087459556],[116,-59,76,0.005943372604969239],[116,-59,77,0.006942473678080282],[116,-59,78,0.007984136803876198],[116,-59,79,0.009046600764490804],[116,-58,64,0.00220234538413283],[116,-58,65,0.002136572292985759],[116,-58,66,0.0021229113275694623],[116,-58,67,0.00216200781055076],[116,-58,68,0.00226792069168928],[116,-58,69,0.002459121913228833],[116,-58,70,0.0027482529628348666],[116,-58,71,0.00314230754278345],[116,-58,72,0.003643057511023779],[116,-58,73,0.00424750818209686],[116,-58,74,0.004948382981748662],[116,-58,75,0.0057346373691048586],[116,-58,76,0.006592001862488611],[116,-58,77,0.007503553930067543],[116,-58,78,0.008450318435151968],[116,-58,79,0.009411896258734516],[116,-57,64,0.0033399848951163325],[116,-57,65,0.0032750795169743923],[116,-57,66,0.00325624554637699],[116,-57,67,0.003286197157892067],[116,-57,68,0.0033783555475701164],[116,-57,69,0.0035487745826567486],[116,-57,70,0.0038082448677760838],[116,-57,71,0.004162483192961864],[116,-57,72,0.004612511480414294],[116,-57,73,0.005155064769826777],[116,-57,74,0.005783028270512675],[116,-57,75,0.006485903433527075],[116,-57,76,0.007250302923736282],[116,-57,77,0.00806047430102768],[116,-57,78,0.008898852152199708],[116,-57,79,0.00974663835112299],[116,-56,64,0.004583698931132368],[116,-56,65,0.0045177877108269395],[116,-56,66,0.004490952404632642],[116,-56,67,0.004507860168587467],[116,-56,68,0.004581221893914598],[116,-56,69,0.004724648863546233],[116,-56,70,0.004947099628190676],[116,-56,71,0.005253071717264048],[116,-56,72,0.005642929046034563],[116,-56,73,0.006113257966377647],[116,-56,74,0.006657252027629385],[116,-56,75,0.0072651254442025965],[116,-56,76,0.007924555198172582],[116,-56,77,0.008621151638618828],[116,-56,78,0.009338957375731639],[116,-56,79,0.010060974207146725],[116,-55,64,0.0058906024947222345],[116,-55,65,0.005820584427385855],[116,-55,66,0.005781932099081286],[116,-55,67,0.0057810574309476274],[116,-55,68,0.005829876140969565],[116,-55,69,0.005939591250299657],[116,-55,70,0.006117403135318432],[116,-55,71,0.006366695862229152],[116,-55,72,0.006687307333390857],[116,-55,73,0.007075827820130085],[116,-55,74,0.00752592699540583],[116,-55,75,0.008028709515043565],[116,-55,76,0.008573099132473729],[116,-55,77,0.009146251269661423],[116,-55,78,0.009733993906784848],[116,-55,79,0.010321296595791738],[116,-54,64,0.0072119113061235715],[116,-54,65,0.007132440193100857],[116,-54,66,0.007076152906309286],[116,-54,67,0.0070509207696246145],[116,-54,68,0.007067778886835965],[116,-54,69,0.007135632388700288],[116,-54,70,0.007260075741301514],[116,-54,71,0.007443560683675289],[116,-54,72,0.007685600134126399],[116,-54,73,0.007983000780003333],[116,-54,74,0.008330124529600238],[116,-54,75,0.008719178944758398],[116,-54,76,0.009140536712915953],[116,-54,77,0.009583084158447193],[116,-54,78,0.010034598735717609],[116,-54,79,0.01048215539094103],[116,-53,64,0.00850527434526474],[116,-53,65,0.008409289673921379],[116,-53,66,0.008328079482575796],[116,-53,67,0.00827062797838683],[116,-53,68,0.008247004971817727],[116,-53,69,0.008263990093596076],[116,-53,70,0.008325786100710388],[116,-53,71,0.008434151228573947],[116,-53,72,0.008588525466364788],[116,-53,73,0.008786186710158631],[116,-53,74,0.009022437063151749],[116,-53,75,0.00929081949562754],[116,-53,76,0.009583365020193095],[116,-53,77,0.009890870480839654],[116,-53,78,0.01020320699814312],[116,-53,79,0.010509659058013836],[116,-52,64,0.009735102050726297],[116,-52,65,0.009614320906278334],[116,-52,66,0.009499919527040405],[116,-52,67,0.009401603398519382],[116,-52,68,0.009328394924192372],[116,-52,69,0.009285169617319223],[116,-52,70,0.009274999462901124],[116,-52,71,0.009299229458505124],[116,-52,72,0.009357513229943689],[116,-52,73,0.00944788089169668],[116,-52,74,0.009566839541730442],[116,-52,75,0.00970950672562684],[116,-52,76,0.009869777148770884],[116,-52,77,0.010040522858412677],[116,-52,78,0.010213827060317041],[116,-52,79,0.01038125167807089],[116,-51,64,0.010872960144216763],[116,-51,65,0.010718322497918107],[116,-51,66,0.010561920492240839],[116,-51,67,0.010413760160593722],[116,-51,68,0.010281739182602114],[116,-51,69,0.010169087441361146],[116,-51,70,0.010078040057820493],[116,-51,71,0.010009835885992573],[116,-51,72,0.009964648489990072],[116,-51,73,0.00994155311893806],[116,-51,74,0.00993853022173601],[116,-51,75,0.009952505988857656],[116,-51,76,0.009979430351039046],[116,-51,77,0.010014392805506247],[116,-51,78,0.010051776379972286],[116,-51,79,0.010085449983673382],[116,-50,64,0.011898087277599936],[116,-50,65,0.011700154518122542],[116,-50,66,0.011492789599541114],[116,-50,67,0.011285864898004054],[116,-50,68,0.011086083409406672],[116,-50,69,0.010895314209573154],[116,-50,70,0.010715270097041237],[116,-50,71,0.010547404725938616],[116,-50,72,0.010392724615762386],[116,-50,73,0.010251642456443541],[116,-50,74,0.010123872435358474],[116,-50,75,0.010008368255827788],[116,-50,76,0.009903304455657028],[116,-50,77,0.009806101570167801],[116,-50,78,0.009713495617645354],[116,-50,79,0.009621652316955486],[116,-49,64,0.01124779972478847],[116,-49,65,0.011548904070157493],[116,-49,66,0.011865288957422893],[116,-49,67,0.012003520007108505],[116,-49,68,0.011728374490693961],[116,-49,69,0.011452422177137447],[116,-49,70,0.011177164128014535],[116,-49,71,0.010904576809133181],[116,-49,72,0.010636791826346513],[116,-49,73,0.010375823823505693],[116,-49,74,0.010123347483145044],[116,-49,75,0.009880524508555795],[116,-49,76,0.009647881398629167],[116,-49,77,0.009425238755051704],[116,-49,78,0.009211692785914044],[116,-49,79,0.009005649591417999],[116,-48,64,0.010490089169101751],[116,-48,65,0.010847868176228173],[116,-48,66,0.011226619261761427],[116,-48,67,0.011618012856913504],[116,-48,68,0.012017933734291282],[116,-48,69,0.011834156304003737],[116,-48,70,0.011462424384101753],[116,-48,71,0.011085270714627721],[116,-48,72,0.010706154389719672],[116,-48,73,0.010328860530830224],[116,-48,74,0.009957152720317093],[116,-48,75,0.00959448397535664],[116,-48,76,0.009243767289597644],[116,-48,77,0.008907206688092651],[116,-48,78,0.008586189654080385],[116,-48,79,0.008281241695142504],[116,-47,64,0.009909845206120605],[116,-47,65,0.010327279212379864],[116,-47,66,0.010769747980937666],[116,-47,67,0.011230346093489985],[116,-47,68,0.011706424323305941],[116,-47,69,0.012040288875516877],[116,-47,70,0.011575766936856226],[116,-47,71,0.01109932548125576],[116,-47,72,0.01061585606684019],[116,-47,73,0.010130981132335539],[116,-47,74,0.009650579758170857],[116,-47,75,0.009180381370852458],[116,-47,76,0.008725628636133633],[116,-47,77,0.008290810692675761],[116,-47,78,0.007879467777641092],[116,-47,79,0.00749406819011305],[116,-46,64,0.009517956540602732],[116,-46,65,0.009995261972271952],[116,-46,66,0.010499740249059303],[116,-46,67,0.011026312718735764],[116,-46,68,0.01157392891139505],[116,-46,69,0.012076703102178921],[116,-46,70,0.011527160626715808],[116,-46,71,0.010960885883741948],[116,-46,72,0.010384220649561371],[116,-46,73,0.009804602123746776],[116,-46,74,0.00922996353497313],[116,-46,75,0.008668212538960565],[116,-46,76,0.00812678886484877],[116,-46,77,0.007612302559215317],[116,-46,78,0.007130254062136657],[116,-46,79,0.006684837228463357],[116,-45,64,0.009317258752675804],[116,-45,65,0.009852213477496867],[116,-45,66,0.01041436620788369],[116,-45,67,0.011000838836985086],[116,-45,68,0.011612325697988138],[116,-45,69,0.011954705460677723],[116,-45,70,0.011331195697995077],[116,-45,71,0.010687837005823422],[116,-45,72,0.010032361849235826],[116,-45,73,0.009373922045414096],[116,-45,74,0.008722368859569856],[116,-45,75,0.008087620817828569],[116,-45,76,0.007479120889198987],[116,-45,77,0.0069053845675494715],[116,-45,78,0.00637364025444459],[116,-45,79,0.005889563206202762],[116,-44,64,0.009303356165625883],[116,-44,65,0.009891616032712797],[116,-44,66,0.010504895944552103],[116,-44,67,0.01114285456963411],[116,-44,68,0.011808084905848037],[116,-44,69,0.011690338273301149],[116,-44,70,0.0110064507033684],[116,-44,71,0.010301234880790737],[116,-44,72,0.00958368684319137],[116,-44,73,0.008864506654540425],[116,-44,74,0.008155265287755556],[116,-44,75,0.007467668884939514],[116,-44,76,0.006812922222084118],[116,-44,77,0.006201193069486033],[116,-44,78,0.005641178993650611],[116,-44,79,0.0051397779926980695],[116,-43,64,0.009465439691254818],[116,-43,65,0.010100847104971741],[116,-43,66,0.01075689212704155],[116,-43,67,0.011436060810728042],[116,-43,68,0.012004154764213383],[116,-43,69,0.011303690612979634],[116,-43,70,0.010574855921712844],[116,-43,71,0.00982473162227701],[116,-43,72,0.009063392102226802],[116,-43,73,0.008302864010180303],[116,-43,74,0.007556189412968216],[116,-43,75,0.006836595417860173],[116,-43,76,0.006156772235723212],[116,-43,77,0.005528261511209425],[116,-43,78,0.004960956585577835],[116,-43,79,0.00446271618826395],[116,-42,64,0.009787103061612661],[116,-42,65,0.010461988395190493],[116,-42,66,0.01115100263912651],[116,-42,67,0.011859696960677358],[116,-42,68,0.011547846892356158],[116,-42,69,0.010818205565222476],[116,-42,70,0.01006105147702107],[116,-42,71,0.009283993412098679],[116,-42,72,0.008497950066760225],[116,-42,73,0.007716008259787744],[116,-42,74,0.006952393599680595],[116,-42,75,0.006221555854784556],[116,-42,76,0.005537371122331887],[116,-42,77,0.004912462729170965],[116,-42,78,0.0043576426223209275],[116,-42,79,0.003881474823308134],[116,-41,64,0.010247159898873062],[116,-41,65,0.010952636514651764],[116,-41,66,0.011663755562716689],[116,-41,67,0.011717629778513502],[116,-41,68,0.01100293649029441],[116,-41,69,0.010259981829532137],[116,-41,70,0.009491738296777222],[116,-41,71,0.00870610966223883],[116,-41,72,0.007914585189453715],[116,-41,73,0.0071310108665349325],[116,-41,74,0.006370480138944805],[116,-41,75,0.005648346491171468],[116,-41,76,0.004979360062775909],[116,-41,77,0.00437693030868473],[116,-41,78,0.003852516526137531],[116,-41,79,0.0034151478733332927],[116,-40,64,0.010820464109239654],[116,-40,65,0.011546717715583198],[116,-40,66,0.011807829280307965],[116,-40,67,0.011112747958393386],[116,-40,68,0.010397204098985239],[116,-40,69,0.009657067601904445],[116,-40,70,0.008895020006120587],[116,-40,71,0.008118991625063552],[116,-40,72,0.0073407378184261315],[116,-40,73,0.006574537972473275],[116,-40,74,0.005836019761275231],[116,-40,75,0.005141111104735712],[116,-40,76,0.0045051220669504646],[116,-40,77,0.003941958752042494],[116,-40,78,0.0034634710560704106],[116,-40,79,0.0030789359249654502],[116,-39,64,0.011478736111628094],[116,-39,65,0.01183514127172524],[116,-39,66,0.011148645100683748],[116,-39,67,0.010461750338114232],[116,-39,68,0.00976013056640229],[116,-39,69,0.009038744647184937],[116,-39,70,0.008299733819732025],[116,-39,71,0.0075507586899992195],[116,-39,72,0.006803514357969898],[116,-39,73,0.006072372554272237],[116,-39,74,0.005373153402821463],[116,-39,75,0.004722029261206112],[116,-39,76,0.004134562909495507],[116,-39,77,0.003624882162879503],[116,-39,78,0.003204992776020449],[116,-39,79,0.0028842312893398612],[116,-38,64,0.011838257312021759],[116,-38,65,0.011135506089941826],[116,-38,66,0.010460884464925683],[116,-38,67,0.009795437238539036],[116,-38,68,0.00912213179488652],[116,-38,69,0.008434800445734672],[116,-38,70,0.0077347684670446455],[116,-38,71,0.00702911057654301],[116,-38,72,0.00632912211336527],[116,-38,73,0.0056489199960949735],[116,-38,74,0.005004176086916958],[116,-38,75,0.00441098541792148],[116,-38,76,0.003884871547895817],[116,-38,77,0.003439931116036128],[116,-38,78,0.0030881194449063672],[116,-38,79,0.002838678820846748],[116,-37,64,0.011120260208345037],[116,-37,65,0.010427347140945275],[116,-37,66,0.009776385217873336],[116,-37,67,0.009145134771430832],[116,-37,68,0.008513780230703816],[116,-37,69,0.007874786283533046],[116,-37,70,0.007228367168570014],[116,-37,71,0.006580683613093661],[116,-37,72,0.005942287203394158],[116,-37,73,0.005326695678599495],[116,-37,74,0.004749101755024218],[116,-37,75,0.004225217911914123],[116,-37,76,0.0037702593774263746],[116,-37,77,0.0033980673476424533],[116,-37,78,0.003120374253378695],[116,-37,79,0.002946212661737936],[116,-36,64,0.010415413485856645],[116,-36,65,0.009743068777525957],[116,-36,66,0.009127008479802322],[116,-36,67,0.00854187272371836],[116,-36,68,0.007965010836115581],[116,-36,69,0.007387259148917028],[116,-36,70,0.00680741367224655],[116,-36,71,0.006230389279068322],[116,-36,72,0.005665653908877766],[116,-36,73,0.0051257931644598225],[116,-36,74,0.004625207859187477],[116,-36,75,0.004178946893966446],[116,-36,76,0.003801677649104386],[116,-36,77,0.003506795868895371],[116,-36,78,0.0033056767975702807],[116,-36,79,0.0032070690966621873],[116,-35,64,0.009756024752500432],[116,-35,65,0.009114522048830235],[116,-35,66,0.008543778812163567],[116,-35,67,0.008015545157410608],[116,-35,68,0.007504309291293343],[116,-35,69,0.006999005303076473],[116,-35,70,0.006496699359206377],[116,-35,71,0.00600073318456048],[116,-35,72,0.005519163818439194],[116,-35,73,0.005063331549616476],[116,-35,74,0.0046465585127708625],[116,-35,75,0.004282980250625196],[116,-35,76,0.003986512353187894],[116,-35,77,0.0037699540793686066],[116,-35,78,0.0036442306489059633],[116,-35,79,0.0036177756661462],[116,-34,64,0.00917322590950782],[116,-34,65,0.008572113381989563],[116,-34,66,0.00805600508874366],[116,-34,67,0.007594051395191599],[116,-34,68,0.007157880191109955],[116,-34,69,0.006734243405630278],[116,-34,70,0.006318169438652326],[116,-34,71,0.005911112667816035],[116,-34,72,0.005519413134135262],[116,-34,73,0.005152880546086601],[116,-34,74,0.004823504987884352],[116,-34,75,0.004544296542682928],[116,-34,76,0.004328255852157425],[116,-34,77,0.004187477432011267],[116,-34,78,0.004132387350350869],[116,-34,79,0.004171116654633676],[116,-33,64,0.008696059046398336],[116,-33,65,0.008143891880896821],[116,-33,66,0.007690379702147827],[116,-33,67,0.007302415093903154],[116,-33,68,0.006948793030673242],[116,-33,69,0.006613805101557198],[116,-33,70,0.006290146272096045],[116,-33,71,0.0059770912065160555],[116,-33,72,0.005678986510062464],[116,-33,73,0.005403861867036009],[116,-33,74,0.005162162346915664],[116,-33,75,0.004965603981606011],[116,-33,76,0.0048261545339336595],[116,-33,77,0.00475514118263191],[116,-33,78,0.004762486644007476],[116,-33,79,0.004856075037266384],[116,-32,64,0.00835053909563082],[116,-32,65,0.007854612871227492],[116,-32,66,0.007470053782588919],[116,-32,67,0.0071618791521953695],[116,-32,68,0.006896103813890602],[116,-32,69,0.006654291011901241],[116,-32,70,0.00642652789848011],[116,-32,71,0.006209647864696468],[116,-32,72,0.0060057658169518306],[116,-32,73,0.005820925498355948],[116,-32,74,0.005663861002395799],[116,-32,75,0.005544874465188521],[116,-32,76,0.005474831748685568],[116,-32,77,0.005464277741973603],[116,-32,78,0.005522672712992073],[116,-32,79,0.005657750940427472],[116,-31,64,0.008158690921161268],[116,-31,65,0.0077247753830761495],[116,-31,66,0.007413686165625628],[116,-31,67,0.007188974255046924],[116,-31,68,0.0070139501718216365],[116,-31,69,0.006867200118473139],[116,-31,70,0.006735959874149558],[116,-31,71,0.006614400033562692],[116,-31,72,0.006502212255576875],[116,-31,73,0.006403299463640814],[116,-31,74,0.006324572014462805],[116,-31,75,0.006274851700760211],[116,-31,76,0.00626388529137057],[116,-31,77,0.00630146913884277],[116,-31,78,0.006396686202389268],[116,-31,79,0.00655725664450025],[116,-30,64,0.008137558592790112],[116,-30,65,0.007769631338033071],[116,-30,66,0.007534463918204475],[116,-30,67,0.007394558927102544],[116,-30,68,0.007310617942562551],[116,-30,69,0.007258030592696604],[116,-30,70,0.0072209785957166785],[116,-30,71,0.007190797771930009],[116,-30,72,0.007164620281957588],[116,-30,73,0.007144111721665505],[116,-30,74,0.0071343049588739665],[116,-30,75,0.007142532458978767],[116,-30,76,0.00717745869750578],[116,-30,77,0.007248214098520915],[116,-30,78,0.0073636317701340735],[116,-30,79,0.007531588133632394],[116,-29,64,0.008298184689412744],[116,-29,65,0.007998164296625018],[116,-29,66,0.007839092318592937],[116,-29,67,0.007782829049316885],[116,-29,68,0.0077875772423871455],[116,-29,69,0.007825350191277988],[116,-29,70,0.007877124340055225],[116,-29,71,0.007931288111013107],[116,-29,72,0.007982341858321994],[116,-29,73,0.00802968287767698],[116,-29,74,0.00807647723130468],[116,-29,75,0.008128620024031825],[116,-29,76,0.00819378563202043],[116,-29,77,0.008280569242268252],[116,-29,78,0.008397720909286494],[116,-29,79,0.008553473176892283],[116,-28,64,0.008644557579581325],[116,-28,65,0.008412035725257826],[116,-28,66,0.008326752286017392],[116,-28,67,0.008350294889705632],[116,-28,68,0.00843848614931763],[116,-28,69,0.008559834426982792],[116,-28,70,0.008692022334434304],[116,-28,71,0.008820447759264625],[116,-28,72,0.008936979606040594],[116,-28,73,0.009038788442487549],[116,-28,74,0.009127253695992875],[116,-28,75,0.00920694893737633],[116,-28,76,0.009284706670777616],[116,-28,77,0.009368763921492055],[116,-28,78,0.009467989778688105],[116,-28,79,0.009591195908378609],[116,-27,64,0.009172524747605798],[116,-27,65,0.009004496859599902],[116,-27,66,0.008988023370518005],[116,-27,67,0.009084723809566942],[116,-27,68,0.009248160225697475],[116,-27,69,0.009443270821966408],[116,-27,70,0.009644430261642738],[116,-27,71,0.009834082726402814],[116,-27,72,0.010001547510753769],[116,-27,73,0.010141889436956038],[116,-27,74,0.010254855639099237],[116,-27,75,0.010343880172395657],[116,-27,76,0.010415157801906542],[116,-27,77,0.010476788214509104],[116,-27,78,0.010537991779811394],[116,-27,79,0.010608397860957934],[116,-26,64,0.0098686703682529],[116,-26,65,0.00975926437423072],[116,-26,66,0.009803770543203097],[116,-26,67,0.009964046931851015],[116,-26,68,0.010191506226191121],[116,-26,69,0.01044752766433206],[116,-26,70,0.010703250710361205],[116,-26,71,0.010938293482170007],[116,-26,72,0.011139597916157375],[116,-26,73,0.011300330214446415],[116,-26,74,0.011418838049921094],[116,-26,75,0.01149766592700917],[116,-26,76,0.01154263000988597],[116,-26,77,0.01156195363519013],[116,-26,78,0.011565464624113737],[116,-26,79,0.011563855399714879],[116,-25,64,0.010709071924197592],[116,-25,65,0.010649326584322358],[116,-25,66,0.010744009576779713],[116,-25,67,0.010955291315893203],[116,-25,68,0.011232528471413478],[116,-25,69,0.011533642738349975],[116,-25,70,0.01182671043995549],[116,-25,71,0.012088752318797249],[116,-25,72,0.01222919413030176],[116,-25,73,0.012070335176308533],[116,-25,74,0.011967416423125883],[116,-25,75,0.011918475810207278],[116,-25,76,0.011917777476838533],[116,-25,77,0.011956694171282704],[116,-25,78,0.012024536402719494],[116,-25,79,0.012109327305805063],[116,-24,64,0.0116561785476467],[116,-24,65,0.01163623549647559],[116,-24,66,0.011769442919781823],[116,-24,67,0.012018305869149993],[116,-24,68,0.012224910966342642],[116,-24,69,0.01190187471080098],[116,-24,70,0.011594363650436574],[116,-24,71,0.01132766476646285],[116,-24,72,0.011118736750503328],[116,-24,73,0.010977290041564631],[116,-24,74,0.010906825911025337],[116,-24,75,0.010905633235300185],[116,-24,76,0.010967741656230878],[116,-24,77,0.011083829897980688],[116,-24,78,0.011242088085863708],[116,-24,79,0.011429032996578195],[116,-23,64,0.01190057400114881],[116,-23,65,0.011899311610968629],[116,-23,66,0.011746608104753298],[116,-23,67,0.011479509613772742],[116,-23,68,0.011152250645057976],[116,-23,69,0.010813142287639247],[116,-23,70,0.010499437946947023],[116,-23,71,0.01023843759909973],[116,-23,72,0.010048602902001583],[116,-23,73,0.009940639455160268],[116,-23,74,0.009918544799338234],[116,-23,75,0.009980620788011658],[116,-23,76,0.010120449012078305],[116,-23,77,0.010327828017199512],[116,-23,78,0.010589671119307982],[116,-23,79,0.010890863697748925],[116,-22,64,0.010922436078139471],[116,-22,65,0.010892423568794812],[116,-22,66,0.010716052050542664],[116,-22,67,0.010429737682454617],[116,-22,68,0.010089026330221998],[116,-22,69,0.009744839928210049],[116,-22,70,0.00943662652316753],[116,-22,71,0.009193413473311865],[116,-22,72,0.00903491635190533],[116,-22,73,0.008972621658496008],[116,-22,74,0.00901084192754619],[116,-22,75,0.009147741854086329],[116,-22,76,0.009376334094604609],[116,-22,77,0.009685443448602003],[116,-22,78,0.010060638181968083],[116,-22,79,0.010485127317281026],[116,-21,64,0.009960413500959567],[116,-21,65,0.009904049553052614],[116,-21,66,0.009708252960102099],[116,-21,67,0.009408569644735574],[116,-21,68,0.009061413071527868],[116,-21,69,0.008719887787625134],[116,-21,70,0.008425290442252499],[116,-21,71,0.008208103285212402],[116,-21,72,0.00808908789374512],[116,-21,73,0.008080359858725645],[116,-21,74,0.008186443022967513],[116,-21,75,0.008405301882445558],[116,-21,76,0.00872935078798177],[116,-21,77,0.009146438620479187],[116,-21,78,0.009640807657136903],[116,-21,79,0.010194025399087744],[116,-20,64,0.009049959240528288],[116,-20,65,0.008967025833448373],[116,-20,66,0.008753245124765592],[116,-20,67,0.008443017728542801],[116,-20,68,0.008093119487793173],[116,-20,69,0.007758360766844378],[116,-20,70,0.007481530988595736],[116,-20,71,0.007294317177110628],[116,-20,72,0.007218366816069826],[116,-20,73,0.007266339802038172],[116,-20,74,0.0074429481007845],[116,-20,75,0.007745981719196226],[116,-20,76,0.008167319618303621],[116,-20,77,0.008693924214833802],[116,-20,78,0.009308818149701656],[116,-20,79,0.009992042041923959],[116,-19,64,0.00822622103380523],[116,-19,65,0.008113724832881645],[116,-19,66,0.007880331254034872],[116,-19,67,0.00755900259349268],[116,-19,68,0.007206333374026482],[116,-19,69,0.006878333224178372],[116,-19,70,0.006618934115934771],[116,-19,71,0.006460812527662622],[116,-19,72,0.00642639938834167],[116,-19,73,0.006528888710397989],[116,-19,74,0.006773243554383317],[116,-19,75,0.007157197956472102],[116,-19,76,0.007672253446049156],[116,-19,77,0.00830466878595352],[116,-19,78,0.009036441582555415],[116,-19,79,0.009846280436960758],[116,-18,64,0.007525379548201047],[116,-18,65,0.007377307407657966],[116,-18,66,0.007119245573617602],[116,-18,67,0.006782421621792089],[116,-18,68,0.006422689753922787],[116,-18,69,0.0060967438535565275],[116,-18,70,0.005849332077283715],[116,-18,71,0.005713955287834623],[116,-18,72,0.0057137959103436475],[116,-18,73,0.005862657002308955],[116,-18,74,0.006165910241488526],[116,-18,75,0.006621451503270058],[116,-18,76,0.0072206626747213926],[116,-18,77,0.00794937833717335],[116,-18,78,0.008788855943337929],[116,-18,79,0.00971674811902281],[116,-17,64,0.0069694947745488995],[116,-17,65,0.006777507498298309],[116,-17,66,0.0064870880408855],[116,-17,67,0.006127448918303017],[116,-17,68,0.005753146153797413],[116,-17,69,0.00542103971635137],[116,-17,70,0.005176385022635407],[116,-17,71,0.00505337658806964],[116,-17,72,0.0050759635970089225],[116,-17,73,0.005258689469122459],[116,-17,74,0.005607554216887395],[116,-17,75,0.006120898331329016],[116,-17,76,0.006790306883417905],[116,-17,77,0.007601532487694278],[116,-17,78,0.008535435743500928],[116,-17,79,0.009568941748317468],[116,-16,64,0.006521318623943552],[116,-16,65,0.006278513607052722],[116,-16,66,0.005949878820709157],[116,-16,67,0.005562380640326652],[116,-16,68,0.005168712191395307],[116,-16,69,0.004825328295554168],[116,-16,70,0.004577613229514425],[116,-16,71,0.00446024336093532],[116,-16,72,0.004497861165589518],[116,-16,73,0.004705788974557042],[116,-16,74,0.005090781361393118],[116,-16,75,0.005651814992092733],[116,-16,76,0.0063809146812373934],[116,-16,77,0.007264014327018781],[116,-16,78,0.008281851336924512],[116,-16,79,0.009410893105675137],[116,-15,64,0.006139515881796282],[116,-15,65,0.005841177726369037],[116,-15,66,0.0054710506880287215],[116,-15,67,0.005053674381983618],[116,-15,68,0.004639313361452445],[116,-15,69,0.004283395527673859],[116,-15,70,0.004030981787206009],[116,-15,71,0.003916927958983917],[116,-15,72,0.00396639452568456],[116,-15,73,0.0041954133298861005],[116,-15,74,0.0046115102578085715],[116,-15,75,0.005214382833468378],[116,-15,76,0.005996631533400465],[116,-15,77,0.006944543528023052],[116,-15,78,0.008038927461563839],[116,-15,79,0.009255997799474988],[116,-14,64,0.005794175652491404],[116,-14,65,0.005437526880008321],[116,-14,66,0.0050247645399640935],[116,-14,67,0.004577864789923535],[116,-14,68,0.004144109225236191],[116,-14,69,0.0037772473768615984],[116,-14,70,0.003521513456535056],[116,-14,71,0.0034115738465978016],[116,-14,72,0.0034728550414274122],[116,-14,73,0.0037219467593206292],[116,-14,74,0.004167079412854246],[116,-14,75,0.004808674970269185],[116,-14,76,0.005639970091809],[116,-14,77,0.006647710284795365],[116,-14,78,0.007812913691166705],[116,-14,79,0.009111703002809541],[116,-13,64,0.005464811136302462],[116,-13,65,0.005048785087780078],[116,-13,66,0.00459398446876419],[116,-13,67,0.004119723574862945],[116,-13,68,0.0036697703901277905],[116,-13,69,0.003295535875427653],[116,-13,70,0.003039895136794953],[116,-13,71,0.002936912377252763],[116,-13,72,0.0030119743293787866],[116,-13,73,0.003282017630969548],[116,-13,74,0.0037558494850044415],[116,-13,75,0.00443456075224402],[116,-13,76,0.005312030438409617],[116,-13,77,0.006375520359862325],[116,-13,78,0.007606358603966087],[116,-13,79,0.008980710244786182],[116,-12,64,0.005138530197527425],[116,-12,65,0.004663563676458925],[116,-12,66,0.004168716906706861],[116,-12,67,0.0036705773785566426],[116,-12,68,0.0032089048876325623],[116,-12,69,0.0028321234965555907],[116,-12,70,0.002581208760041984],[116,-12,71,0.002489187156889224],[116,-12,72,0.00258106688588008],[116,-12,73,0.0028738814723487465],[116,-12,74,0.0033768456840643415],[116,-12,75,0.004091623023830456],[116,-12,76,0.005012703841066898],[116,-12,77,0.006127892887793339],[116,-12,78,0.007418904938122152],[116,-12,79,0.008862066896831765],[116,-11,64,0.004808377087642194],[116,-11,65,0.004276220195869101],[116,-11,66,0.0037444140166405615],[116,-11,67,0.0032267836079934355],[116,-11,68,0.0027586340201469803],[116,-11,69,0.0023847859032439644],[116,-11,70,0.0021437866425668014],[116,-11,71,0.002067186019809103],[116,-11,72,0.0021792605778533226],[116,-11,73,0.002496869324081136],[116,-11,74,0.003029440429617362],[116,-11,75,0.003779088312109026],[116,-11,76,0.004740860225656059],[116,-11,77,0.005903111225774345],[116,-11,78,0.007248006132337934],[116,-11,79,0.0087521468818892],[116,-10,64,0.004471846314462929],[116,-10,65,0.00388538682098391],[116,-10,66,0.0033205421096542138],[116,-10,67,0.002788364933330174],[116,-10,68,0.0023193182989798312],[116,-10,69,0.001954053626992212],[116,-10,70,0.0017281917796989278],[116,-10,71,0.0016713810362354844],[116,-10,72,0.0018068153499180642],[116,-10,73,0.002150901720819899],[116,-10,74,0.002713076498516377],[116,-10,75,0.003495770122321256],[116,-10,76,0.004494519504239354],[116,-10,77,0.005698226966009789],[116,-10,78,0.007089564358850924],[116,-10,79,0.008645520725735897],[116,-9,64,0.004129570237101507],[116,-9,65,0.0034926697056441957],[116,-9,66,0.0028993164436284576],[116,-9,67,0.0023578036971242597],[116,-9,68,0.0018934346168149063],[116,-9,69,0.0015421937103943114],[116,-9,70,0.0013363240007348487],[116,-9,71,0.0013031773413182018],[116,-9,72,0.0014645308016345542],[116,-9,73,0.001836068810449643],[116,-9,74,0.0024270310262339253],[116,-9,75,0.003240025560070285],[116,-9,76,0.00427100683770853],[116,-9,77,0.0055094170570552745],[116,-9,78,0.006938489878387497],[116,-9,79,0.008535714680149626],[116,-8,64,0.0037841825128888664],[116,-8,65,0.0031015212972093503],[116,-8,66,0.002484604289320474],[116,-8,67,0.0019389979961065777],[116,-8,68,0.0014846062835287368],[116,-8,69,0.0011523327963857465],[116,-8,70,9.706533028054249E-4],[116,-8,71,9.64271921434472E-4],[116,-8,72,0.0011532435696281025],[116,-8,73,0.0015522773297493475],[116,-8,74,0.0021702208521801572],[116,-8,75,0.003009725535636052],[116,-8,76,0.004067091852516364],[116,-8,77,0.005332293822468744],[116,-8,78,0.006789181284454641],[116,-8,79,0.008415858279835804],[116,-7,64,0.003439360022371291],[116,-7,65,0.0027162881201222536],[116,-7,66,0.0020809986402784892],[116,-7,67,0.001536381669317926],[116,-7,68,0.001096788001506427],[116,-7,69,7.87723560138447E-4],[116,-7,70,6.335820529766295E-4],[116,-7,71,6.561238125809734E-4],[116,-7,72,8.734157082303149E-4],[116,-7,73,0.001298965345397018],[116,-7,74,0.001941049814094763],[116,-7,75,0.0028022388384042053],[116,-7,76,0.003879111775470762],[116,-7,77,0.005162167516607872],[116,-7,78,0.00663592595939467],[116,-7,79,0.008279219351532675],[116,-6,64,0.003099046347861382],[116,-6,65,0.0023414369859613526],[116,-6,66,0.0016930653853394508],[116,-6,67,0.0011542108541310937],[116,-6,68,7.336082617529216E-4],[116,-6,69,4.5115675419984513E-4],[116,-6,70,3.2693808382486174E-4],[116,-6,71,3.7953745489769953E-4],[116,-6,72,6.248154969721589E-4],[116,-6,73,0.0010748858418759895],[116,-6,74,0.0017372987003325168],[116,-6,75,0.0026144303978891162],[116,-6,76,0.003703078398378618],[116,-6,77,0.004994260920075994],[116,-6,78,0.006473219838777249],[116,-6,79,0.008119625177127917],[116,-5,64,0.0027668602756332717],[116,-5,65,0.001980962983918293],[116,-5,66,0.0013247671536942664],[116,-5,67,7.960201506141451E-4],[116,-5,68,3.97872001503639E-4],[116,-5,69,1.4452147002816116E-4],[116,-5,70,5.1601006089198965E-5],[116,-5,71,1.3436120426385973E-4],[116,-5,72,4.062923116259637E-4],[116,-5,73,8.779603909049231E-4],[116,-5,74,0.001556058660304714],[116,-5,75,0.0024426740719114006],[116,-5,76,0.0035347687360056143],[116,-5,77,0.004823875352386601],[116,-5,78,0.006296005375886928],[116,-5,79,0.007931768225681288],[116,-4,64,0.002445693127447387],[116,-4,65,0.001637982944594732],[116,-4,66,9.79067378430568E-4],[116,-4,67,4.642517609349673E-4],[116,-4,68,9.122667398299323E-5],[116,-4,69,-1.3148349385532762E-4],[116,-4,70,-1.9273568032036385E-4],[116,-4,71,-8.06967762213712E-5],[116,-4,72,2.1564737532241176E-4],[116,-4,73,7.05204268816088E-4],[116,-4,74,0.0013937089514888404],[116,-4,75,0.0022828803218234842],[116,-4,76,0.003369799196741118],[116,-4,77,0.004646507368015794],[116,-4,78,0.00609982641620924],[116,-4,79,0.007711394614682293],[116,-3,64,0.002137498999305291],[116,-3,65,0.001314518347254925],[116,-3,66,6.577184008958697E-4],[116,-3,67,1.6006124003563243E-4],[116,-3,68,-1.8600486236626068E-4],[116,-3,69,-3.774840288184744E-4],[116,-3,70,-4.076638818568517E-4],[116,-3,71,-2.68132837956108E-4],[116,-3,72,4.960235532459649E-5],[116,-3,73,5.52724497183546E-4],[116,-3,74,0.001245939965247181],[116,-3,75,0.002130539148927289],[116,-3,76,0.003203683045930543],[116,-3,77,0.004457915305329969],[116,-3,78,0.005880898534917489],[116,-3,79,0.007455373241490658],[116,-2,64,0.0018432821897804586],[116,-2,65,0.0010114718518724236],[116,-2,66,3.6123765094172845E-4],[116,-2,67,-1.1669629744447352E-4],[116,-2,68,-4.34821028302805E-4],[116,-2,69,-5.954075644151127E-4],[116,-2,70,-5.960186515524659E-4],[116,-2,71,-4.3158983127897346E-4],[116,-2,72,-9.613211295174513E-5],[116,-2,73,4.157923662526041E-4],[116,-2,74,0.0011078225221422175],[116,-2,75,0.001980778675039449],[116,-2,76,0.003031870907456299],[116,-2,77,0.004254134777098724],[116,-2,78,0.005636093260421292],[116,-2,79,0.007161643344552774],[116,-1,64,0.0015632862324295907],[116,-1,65,7.288017780197443E-4],[116,-1,66,8.907608277956783E-5],[116,-1,67,-3.6729552521346263E-4],[116,-1,68,-6.573640364782863E-4],[116,-1,69,-7.882989250114359E-4],[116,-1,70,-7.616912956455917E-4],[116,-1,71,-5.756741019993467E-4],[116,-1,72,-2.266858124437479E-4],[116,-1,73,2.8899205862031164E-4],[116,-1,74,9.73924459440178E-4],[116,-1,75,0.0018284397531896344],[116,-1,76,0.0028497740202426264],[116,-1,77,0.004031442127672886],[116,-1,78,0.005362834506138165],[116,-1,79,0.006829038113593721],[116,0,64,0.0012973890021076167],[116,0,65,4.6589891837974467E-4],[116,0,66,-1.6001688157752292E-4],[116,0,67,-5.93781744910031E-4],[116,0,68,-8.565644135742676E-4],[116,0,69,-9.599716823933059E-4],[116,0,70,-9.092947056119943E-4],[116,0,71,-7.056447954806544E-4],[116,0,72,-3.4775403633533896E-4],[116,0,73,1.6644702039733265E-4],[116,0,74,8.384755479520813E-4],[116,0,75,0.0016681669913106072],[116,0,76,0.0026527699433311104],[116,0,77,0.003786264836643043],[116,0,78,0.005058905462856352],[116,0,79,0.006456981871480154],[116,1,64,0.001045709454058016],[116,1,65,2.2217029765614837E-4],[116,1,66,-3.8742806678524323E-4],[116,1,67,-7.984200030250211E-4],[116,1,68,-0.0010356048113658225],[116,1,69,-0.0011144926725807185],[116,1,70,-0.001043678879408585],[116,1,71,-8.269736386936316E-4],[116,1,72,-4.6521667212367563E-4],[116,1,73,4.212577175093909E-5],[116,1,74,6.955825104989012E-4],[116,1,75,0.0014945181503073718],[116,1,76,0.0024361929748342027],[116,1,77,0.003515041557182537],[116,1,78,0.004722169183152612],[116,1,79,0.006045064720860273],[116,2,64,8.094305798692998E-4],[116,2,65,-2.1675266250139904E-6],[116,2,66,-5.939137739424722E-4],[116,2,67,-9.829523190606096E-4],[116,2,68,-0.0011972035350055507],[116,2,69,-0.0012555003934103012],[116,2,70,-0.0011692973825544694],[116,2,71,-9.44775763672551E-4],[116,2,72,-5.846514514080162E-4],[116,2,73,-8.977243246927877E-5],[116,2,74,5.394953295531513E-4],[116,2,75,0.0013020940750617072],[116,2,76,0.002195312610585453],[116,2,77,0.003214036478756454],[116,2,78,0.0043502091047341535],[116,2,79,0.005592502644669611],[116,3,64,5.918305266589341E-4],[116,3,65,-2.050836174841249E-4],[116,3,66,-7.786222070898975E-4],[116,3,67,-0.0011476489424894335],[116,3,68,-0.0013427011745696508],[116,3,69,-0.0013853401632281008],[116,3,70,-0.0012894090296992472],[116,3,71,-0.0010630990996761522],[116,3,72,-7.10733963557001E-4],[116,3,73,-2.3435158076104808E-4],[116,3,74,3.6491664890291845E-4],[116,3,75,0.001085670458608758],[116,3,76,0.001925269082889221],[116,3,77,0.00287906311669538],[116,3,78,0.00393982911672083],[116,3,79,0.005097405766761202],[116,4,64,3.9954418188513726E-4],[116,4,65,-3.815031459639348E-4],[116,4,66,-9.378991269232216E-4],[116,4,67,-0.0012901529020188486],[116,4,68,-0.00147095309398745],[116,4,69,-0.0015040206133844253],[116,4,70,-0.0014051195140916204],[116,4,71,-0.0011840755218288704],[116,4,72,-8.465243374389171E-4],[116,4,73,-3.9546734670543973E-4],[116,4,74,1.67366357979884E-4],[116,4,75,8.403522907783517E-4],[116,4,76,0.0016209974225233543],[116,4,77,0.002505161331926721],[116,4,78,0.0034864709939167364],[116,4,79,0.004555928126603272],[116,5,64,2.4405587509485297E-4],[116,5,65,-5.218526417028424E-4],[116,5,66,-0.0010638761116189503],[116,5,67,-0.0014041170786112415],[116,5,68,-0.0015770268315279101],[116,5,69,-0.0016079904413872016],[116,5,70,-0.001514261897603599],[116,5,71,-0.0013069328159301956],[116,5,72,-9.926399933346114E-4],[116,5,73,-5.7508995570096E-4],[116,5,74,-5.6399388028739104E-5],[116,5,75,5.617492332131665E-4],[116,5,76,0.0012771370591286872],[116,5,77,0.002086223171707591],[116,5,78,0.0029835431929156006],[116,5,79,0.003961291222443898],[116,6,64,1.4342491593105497E-4],[116,6,65,-6.103767379575556E-4],[116,6,66,-0.001142837031670193],[116,6,67,-0.0014776286884323482],[116,6,68,-0.0016506989569734845],[116,6,69,-0.001688730007313348],[116,6,70,-0.001610110965593383],[116,6,71,-0.0014268632781481324],[116,6,72,-0.0011463114991539115],[116,6,73,-7.725801324277599E-4],[116,6,74,-3.079153958735895E-4],[116,6,75,2.4616880996941695E-4],[116,6,76,8.87921037760496E-4],[116,6,77,0.001614558437653692],[116,6,78,0.0024216484184172806],[116,6,79,0.0033026649499592184],[116,7,64,1.2393798058253262E-4],[116,7,65,-6.228014157507698E-4],[116,7,66,-0.0011522704668326283],[116,7,67,-0.0014896824356586435],[116,7,68,-0.001672335651386107],[116,7,69,-0.0017279978852381755],[116,7,70,-0.001675941432188546],[116,7,71,-0.001528838775419651],[116,7,72,-0.0012944089559881094],[116,7,73,-9.768978770245012E-4],[116,7,74,-5.783913767873978E-4],[116,7,75,-9.99603034517395E-5],[116,7,76,4.5736277949239067E-4],[116,7,77,0.0010917752375388657],[116,7,78,0.0018000639567139084],[116,7,79,0.002577132108330809],[116,8,64,2.1424305631779892E-4],[116,8,65,-5.293656871872806E-4],[116,8,66,-0.0010612975579744682],[116,8,67,-0.0014080879479223616],[116,8,68,-0.0016081643187764194],[116,8,69,-0.0016901963329292924],[116,8,70,-0.0016741332809072952],[116,8,71,-0.001573077803162333],[116,8,72,-0.0013949165533327066],[116,8,73,-0.0011437917655061965],[116,8,74,-8.214125165412434E-4],[116,8,75,-4.282048606653225E-4],[116,8,76,3.569960247376221E-5],[116,8,77,5.696367858675588E-4],[116,8,78,0.0011717444870623266],[116,8,79,0.0018384574002594661],[116,9,64,4.351294719604668E-4],[116,9,65,-3.073490734686542E-4],[116,9,66,-8.452609422011161E-4],[116,9,67,-0.0012060487653883238],[116,9,68,-0.0014289295554461411],[116,9,69,-0.00154327416692967],[116,9,70,-0.0015695240334433927],[116,9,71,-0.0015210418194758354],[116,9,72,-0.0014057281587507606],[116,9,73,-0.0012274858691697496],[116,9,74,-9.87530390207469E-4],[116,9,75,-6.855455631199916E-4],[116,9,76,-3.2068424698207174E-4],[116,9,77,1.0758636798763847E-4],[116,9,78,5.987945267430153E-4],[116,9,79,0.0011509281803466934],[116,10,64,8.000444379877835E-4],[116,10,65,5.8423405595184466E-5],[116,10,66,-4.8717451448391965E-4],[116,10,67,-8.645441730015323E-4],[116,10,68,-0.0011132658973046793],[116,10,69,-0.0012631975737051357],[116,10,70,-0.0013351083867561848],[116,10,71,-0.00134249770388861],[116,10,72,-0.001293193456206949],[116,10,73,-0.0011908046368827982],[116,10,74,-0.0010360266223329508],[116,10,75,-8.277983837513647E-4],[116,10,76,-5.643110174594318E-4],[116,10,77,-2.4386737969995555E-4],[116,10,78,1.3440703756493263E-4],[116,10,79,5.700015112797945E-4],[116,11,64,0.0013176605403768312],[116,11,65,5.781572313476567E-4],[116,11,66,2.4834726734252525E-5],[116,11,67,-3.6981201533750586E-4],[116,11,68,-6.452446074243434E-4],[116,11,69,-8.315863788903567E-4],[116,11,70,-9.49791291944266E-4],[116,11,71,-0.001013416012782684],[116,11,72,-0.0010301900012842792],[116,11,73,-0.0010034468575675275],[116,11,74,-9.33415600081429E-4],[116,11,75,-8.183708985833408E-4],[116,11,76,-6.556416329043404E-4],[116,11,77,-4.424774926873297E-4],[116,11,78,-1.7677367194914205E-4],[116,11,79,1.423459571910053E-4],[116,12,64,0.001994709263633936],[116,12,65,0.0012599259635056373],[116,12,66,7.003398423932044E-4],[116,12,67,2.894143415249563E-4],[116,12,68,-1.1686499436947224E-5],[116,12,69,-2.331308766647349E-4],[116,12,70,-3.959385905752723E-4],[116,12,71,-5.136860452821312E-4],[116,12,72,-5.940333294879241E-4],[116,12,73,-6.401205999001052E-4],[116,12,74,-6.518324261512758E-4],[116,12,75,-6.269290885287736E-4],[116,12,76,-5.620441513399726E-4],[116,12,77,-4.535479634763982E-4],[116,12,78,-2.982770614815739E-4],[116,12,79,-9.412976677372225E-5],[116,13,64,0.0028390859173746622],[116,13,65,0.0021127755227311282],[116,13,66,0.0015496869794643636],[116,13,67,0.0011249194287671156],[116,13,68,8.007633257945801E-4],[116,13,69,5.472144097897161E-4],[116,13,70,3.4327783439290195E-4],[116,13,71,1.7535464584002525E-4],[116,13,72,3.5776485311356814E-5],[116,13,73,-7.853836384241331E-5],[116,13,74,-1.6730624566821642E-4],[116,13,75,-2.279756918666916E-4],[116,13,76,-2.567005583883494E-4],[116,13,77,-2.491883334887383E-4],[116,13,78,-2.0142351749948475E-4],[116,13,79,-1.1026627315392952E-4],[116,14,64,0.0038632319082840343],[116,14,65,0.00315010109536127],[116,14,66,0.002587334103344922],[116,14,67,0.002152275175791762],[116,14,68,0.0018088043181968849],[116,14,69,0.0015272652364290095],[116,14,70,0.0012867452301402913],[116,14,71,0.0010735807002562412],[116,14,72,8.799757204189129E-4],[116,14,73,7.027308862892543E-4],[116,14,74,5.420837577426563E-4],[116,14,75,4.0066192169732644E-4],[116,14,76,2.825494161298263E-4],[116,14,77,1.9246697039628928E-4],[116,14,78,1.3506623513226507E-4],[116,14,79,1.1433789876914744E-4],[116,15,64,0.005092044334197923],[116,15,65,0.004397422566390736],[116,15,66,0.0038393795258754113],[116,15,67,0.0033980141950885824],[116,15,68,0.0030391989389863578],[116,15,69,0.0027337835224908024],[116,15,70,0.002460971656174699],[116,15,71,0.00220697405730756],[116,15,72,0.0019637344151328703],[116,15,73,0.0017277525442349624],[116,15,74,0.001499005997138657],[116,15,75,0.0012799711505704747],[116,15,76,0.0010747445227992345],[116,15,77,8.88264823591661E-4],[116,15,78,7.256359851717265E-4],[116,15,79,5.915511739387622E-4],[116,16,64,0.006565271407229311],[116,16,65,0.005894455371615029],[116,16,66,0.0053451537432231385],[116,16,67,0.004900613367703821],[116,16,68,0.004529055560511001],[116,16,69,0.004202011553343465],[116,16,70,0.00389887418510955],[116,16,71,0.0036057225650584232],[116,16,72,0.003314175564463841],[116,16,73,0.003020327550620848],[116,16,74,0.0027237675734215704],[116,16,75,0.0024266829938922214],[116,16,76,0.0021330483224194625],[116,16,77,0.0018478998131490141],[116,16,78,0.0015766961415417874],[116,16,79,0.0013247652758254145],[116,17,64,0.008303567595464084],[116,17,65,0.007661638856165668],[116,17,66,0.007124625501019057],[116,17,67,0.00667919966976205],[116,17,68,0.006296244451279859],[116,17,69,0.005948172582685977],[116,17,70,0.005614685154081317],[116,17,71,0.00528178634762256],[116,17,72,0.004940780336664306],[116,17,73,0.004587333937573657],[116,17,74,0.0042206061502343545],[116,17,75,0.0038424455426779905],[116,17,76,0.003456656253379548],[116,17,77,0.003068333202438541],[116,17,78,0.0026832669211785624],[116,17,79,0.0023074182298344205],[116,18,64,0.01030445302519332],[116,18,65,0.009696229034901993],[116,18,66,0.009174705271625354],[116,18,67,0.00873014391229329],[116,18,68,0.008336354849005603],[116,18,69,0.007966850629547153],[116,18,70,0.007601796573617582],[116,18,71,0.007227228720380399],[116,18,72,0.006834206068172787],[116,18,73,0.00641801086849042],[116,18,74,0.005977398025487055],[116,18,75,0.005513894515585725],[116,18,76,0.005031149603204974],[116,18,77,0.004534336488669629],[116,18,78,0.004029605883825155],[116,18,79,0.003523591870576057],[116,19,64,0.012546008488715966],[116,19,65,0.011975987696783727],[116,19,66,0.011472899808670394],[116,19,67,0.011030653718478266],[116,19,68,0.010626200013327708],[116,19,69,0.010234380835664813],[116,19,70,0.009836009239213128],[116,19,71,0.00941729837811822],[116,19,72,0.00896917733429667],[116,19,73,0.008486636443451885],[116,19,74,0.007968103077926812],[116,19,75,0.00741484875459645],[116,19,76,0.0068304283433822475],[116,19,77,0.006220152056994979],[116,19,78,0.005590590805568814],[116,19,79,0.004949115401460551],[116,20,64,0.012871017224945531],[116,20,65,0.013380804238834205],[116,20,66,0.013842492942251934],[116,20,67,0.013542221610357105],[116,20,68,0.013127183787206587],[116,20,69,0.01271210941715101],[116,20,70,0.012278661298293197],[116,20,71,0.011813402684032116],[116,20,72,0.011307281488368263],[116,20,73,0.010755124938460507],[116,20,74,0.010155145533022695],[116,20,75,0.009508459123668047],[116,20,76,0.008818615891408772],[116,20,77,0.008091144942176061],[116,20,78,0.007333113193480459],[116,20,79,0.006552699169349208],[116,21,64,0.010363426533292232],[116,21,65,0.01082739478920228],[116,21,66,0.011265479482398968],[116,21,67,0.011676736069593137],[116,21,68,0.012077537703547565],[116,21,69,0.012489715629284071],[116,21,70,0.012930580578386048],[116,21,71,0.013413066154323404],[116,21,72,0.013799667930139065],[116,21,73,0.013175543095058065],[116,21,74,0.012491730528136978],[116,21,75,0.01174931115531449],[116,21,76,0.010951936505336799],[116,21,77,0.010105446752582316],[116,21,78,0.009217483828971869],[116,21,79,0.008297100352710543],[116,22,64,0.007763737290721466],[116,22,65,0.00817874732234061],[116,22,66,0.008590839291002812],[116,22,67,0.008995832752538435],[116,22,68,0.009406647709804303],[116,22,69,0.009843098619018],[116,22,70,0.010321221399901416],[116,22,71,0.01085320943435541],[116,22,72,0.011447591096946068],[116,22,73,0.01210943497414321],[116,22,74,0.01284058212676364],[116,22,75,0.013639904692930757],[116,22,76,0.013180566081497052],[116,22,77,0.012215592891875047],[116,22,78,0.011198851825896347],[116,22,79,0.010140322380426645],[116,23,64,0.005137818592488265],[116,23,65,0.0055012886653729815],[116,23,66,0.005885165929082717],[116,23,67,0.006282335315568511],[116,23,68,0.006702272020371798],[116,23,69,0.007162568244127207],[116,23,70,0.007677777258567098],[116,23,71,0.008259151632243],[116,23,72,0.008914656750431108],[116,23,73,0.009649030395787225],[116,23,74,0.01046388785519304],[116,23,75,0.01135787191286718],[116,23,76,0.012326846990386013],[116,23,77,0.013364136601757323],[116,23,78,0.013228638754872436],[116,23,79,0.012036849989890241],[116,24,64,0.002554882827044533],[116,24,65,0.0028648420505400242],[116,24,66,0.003218476107565847],[116,24,67,0.0036061016497452745],[116,24,68,0.004033812931103425],[116,24,69,0.0045167971225543325],[116,24,70,0.00506792973528978],[116,24,71,0.005697328284744044],[116,24,72,0.006412208862190036],[116,24,73,0.0072168062247567055],[116,24,74,0.008112356981702932],[116,24,75,0.009097145303124433],[116,24,76,0.010166610432386675],[116,24,77,0.011313515146756506],[116,24,78,0.01252817418322735],[116,24,79,0.01379874152969651],[116,25,64,8.476362267702333E-5],[116,25,65,3.3989735374812544E-4],[116,25,66,6.61490960131579E-4],[116,25,67,0.0010377125969041905],[116,25,68,0.0014713929557881298],[116,25,69,0.001975159729893972],[116,25,70,0.002560034436542823],[116,25,71,0.0032348179335017456],[116,25,72,0.0040057995661180335],[116,25,73,0.004876546066727673],[116,25,74,0.005847769896730464],[116,25,75,0.006917276526569367],[116,25,76,0.008079989961271988],[116,25,77,0.009328055640775485],[116,25,78,0.010651019676548008],[116,25,79,0.012036083230653895],[116,26,64,-0.002204633670072462],[116,26,65,-0.0020049489179451057],[116,26,66,-0.0017169174910097562],[116,26,67,-0.0013540588045667628],[116,26,68,-9.166379480491655E-4],[116,26,69,-3.947080225769464E-4],[116,26,70,2.2074645803768972E-4],[116,26,71,9.370461138685128E-4],[116,26,72,0.0017593901666118881],[116,26,73,0.0026905243912841554],[116,26,74,0.003730503353663105],[116,26,75,0.0048765465001869845],[116,26,76,0.006122987440273359],[116,26,77,0.007461315544410514],[116,26,78,0.008880308776769378],[116,26,79,0.010366256490387948],[116,27,64,-0.004249705550681832],[116,27,65,-0.004105380607845907],[116,27,66,-0.003852111560663153],[116,27,67,-0.003504616141788458],[116,27,68,-0.003066041312482944],[116,27,69,-0.0025292053650960876],[116,27,70,-0.001887222299202031],[116,27,71,-0.0011343927911594725],[116,27,72,-2.667527187021251E-4],[116,27,73,7.174857878358695E-4],[116,27,74,0.001817600678242191],[116,27,75,0.0030301333389722265],[116,27,76,0.0043487683516748084],[116,27,77,0.005764318781167329],[116,27,78,0.007264815882788917],[116,27,79,0.008835701896824675],[116,28,64,-0.00599334433341934],[116,28,65,-0.0059035723166157355],[116,28,66,-0.005685901433991962],[116,28,67,-0.0053557433305314915],[116,28,68,-0.004918872299322024],[116,28,69,-0.004370916725828836],[116,28,70,-0.0037072116046282673],[116,28,71,-0.002923793840331486],[116,28,72,-0.002018057464712492],[116,28,73,-9.892903280926276E-4],[116,28,74,1.6090775031592393E-4],[116,28,75,0.0014283250869264299],[116,28,76,0.002805955915053524],[116,28,77,0.004283934984730206],[116,28,78,0.005849587856853342],[116,28,79,0.007487595517954815],[116,29,64,-0.007386948566651468],[116,29,65,-0.0073502194061994845],[116,29,66,-0.007168583332433434],[116,29,67,-0.006857639716915188],[116,29,68,-0.006425501797735111],[116,29,69,-0.005870612295596378],[116,29,70,-0.005190584520955982],[116,29,71,-0.004383277695920495],[116,29,72,-0.0034475423422113184],[116,29,73,-0.0023838381702198067],[116,29,74,-0.0011947243547232303],[116,29,75,1.1477759023248123E-4],[116,29,76,0.0015369478078664167],[116,29,77,0.003061258132712477],[116,29,78,0.00467438703872101],[116,29,79,0.006360358105869631],[116,30,64,-0.008392245677067348],[116,30,65,-0.008406383470767248],[116,30,66,-0.00826079832848628],[116,30,67,-0.007970782782256495],[116,30,68,-0.007546474915668471],[116,30,69,-0.006989095817448074],[116,30,70,-0.006298559222029713],[116,30,71,-0.005474602089395231],[116,30,72,-0.004517602884240736],[116,30,73,-0.0034292655446928645],[116,30,74,-0.0022131689340050193],[116,30,75,-8.751819154477944E-4],[116,30,76,5.76255472983939E-4],[116,30,77,0.002129983943912204],[116,30,78,0.003772108877841676],[116,30,79,0.005486114834465835],[116,31,64,-0.008982922308436062],[116,31,65,-0.009045148833806582],[116,31,66,-0.008935207507177552],[116,31,67,-0.008667614332308317],[116,31,68,-0.008254201976047579],[116,31,69,-0.007698895993630028],[116,31,70,-0.007003897734839068],[116,31,71,-0.006170845712368583],[116,31,72,-0.0052016892835993825],[116,31,73,-0.004099423387425828],[116,31,74,-0.0028686840455992707],[116,31,75,-0.0015162046989632976],[116,31,76,-5.1133799262842535E-5],[116,31,77,0.0015147855856892571],[116,31,78,0.0031671730745276624],[116,31,79,0.004889103801123311],[116,32,64,-0.009146057520993124],[116,32,65,-0.009253085316363274],[116,32,66,-0.00917797884982088],[116,32,67,-0.008934045724524787],[116,32,68,-0.008534477798589669],[116,32,69,-0.007985797572972035],[116,32,70,-0.007292448009378164],[116,32,71,-0.00645796133677317],[116,32,72,-0.005485871084210106],[116,32,73,-0.004380482652450357],[116,32,74,-0.0031475020588385893],[116,32,75,-0.001794522859298664],[116,32,76,-3.3137161001577597E-4],[116,32,77,0.0012296874232836145],[116,32,78,0.0028738872713197907],[116,32,79,0.004584031635145407],[116,33,64,-0.008883353717263594],[116,33,65,-0.00903151221009692],[116,33,66,-0.008990080895754819],[116,33,67,-0.008770777361030479],[116,33,68,-0.008387824718791242],[116,33,69,-0.007850207852200452],[116,33,70,-0.0071645353936252],[116,33,71,-0.006336194648492151],[116,33,72,-0.005370286119819609],[116,33,73,-0.004272416033316568],[116,33,74,-0.0030493464316396737],[116,33,75,-0.0017095027789883477],[116,33,76,-2.633393791236321E-4],[116,33,77,0.0012764367415428156],[116,33,78,0.0028947825017094325],[116,33,79,0.004574374686292808],[116,34,64,-0.008212159868615685],[116,34,65,-0.008397558085857567],[116,34,66,-0.008388377925633848],[116,34,67,-0.008194427356114864],[116,34,68,-0.007830654472635102],[116,34,69,-0.00730835400035503],[116,34,70,-0.006636199268400166],[116,34,71,-0.005821364961326391],[116,34,72,-0.004870470344873007],[116,34,73,-0.003790381703351698],[116,34,74,-0.0025888734998158365],[116,34,75,-0.001275148141202328],[116,34,76,1.3978540886359377E-4],[116,34,77,0.0016428735796032111],[116,34,78,0.0032189197836049355],[116,34,79,0.004850624414443769],[116,35,64,-0.007166281339290739],[116,35,65,-0.0073850107791194625],[116,35,66,-0.007406521110736942],[116,35,67,-0.0072384639804588214],[116,35,68,-0.006896243763815704],[116,35,69,-0.00639330630121848],[116,35,70,-0.005740270282913417],[116,35,71,-0.004946003667625935],[116,35,72,-0.004018564898501307],[116,35,73,-0.0029660059667167837],[116,35,74,-0.0017970367830062119],[116,35,75,-5.215506829800238E-4],[116,35,76,8.489887525474626E-4],[116,35,77,0.0023012990385913707],[116,35,78,0.0038201674379562474],[116,35,79,0.005388475765336258],[116,36,64,-0.00579657034586193],[116,36,65,-0.006044951622642182],[116,36,66,-0.006095629791459651],[116,36,67,-0.00595393619467778],[116,36,68,-0.005635518034465969],[116,36,69,-0.0051558221089781225],[116,36,70,-0.004527283330780131],[116,36,71,-0.003760345982259346],[116,36,72,-0.0028643964472028793],[116,36,73,-0.0018485614242033238],[116,36,74,-7.223710343608594E-4],[116,36,75,5.037134067027514E-4],[116,36,76,0.0018179068349462397],[116,36,77,0.003206842649518635],[116,36,78,0.00465544891739331],[116,36,79,0.006146957496595668],[116,37,64,-0.004171290854437062],[116,37,65,-0.004446167748605591],[116,37,66,-0.004524756789100107],[116,37,67,-0.004409996316525397],[116,37,68,-0.00411763768479532],[116,37,69,-0.003665005031420631],[116,37,70,-0.0030662211221770506],[116,37,71,-0.0023331712516664175],[116,37,72,-0.0014764265685751879],[116,37,73,-5.060369788793241E-4],[116,37,74,5.678070105127759E-4],[116,37,75,0.0017342437969129945],[116,37,76,0.0029813414863605024],[116,37,77,0.0042958296214211855],[116,37,78,0.005662961144212969],[116,37,79,0.007066503611895177],[116,38,64,-0.002374267349336061],[116,38,65,-0.0026732719352767914],[116,38,66,-0.00277899523213104],[116,38,67,-0.002692003261047494],[116,38,68,-0.0024281068760746037],[116,38,69,-0.0020064330512230295],[116,38,70,-0.0014426794362258591],[116,38,71,-7.500264790041467E-4],[116,38,72,5.9942748416113964E-5],[116,38,73,9.764492184075056E-4],[116,38,74,0.0019888518078436074],[116,38,75,0.0030861087073342924],[116,38,76,0.004256366406646243],[116,38,77,0.005486675964423227],[116,38,78,0.006762835965409295],[116,38,79,0.0080693612801135],[116,39,64,-4.617659172481113E-4],[116,39,65,-7.819428573779307E-4],[116,39,66,-9.132462813315909E-4],[116,39,67,-8.538842298844214E-4],[116,39,68,-6.197464863988846E-4],[116,39,69,-2.3177811842802685E-4],[116,39,70,2.927954685729058E-4],[116,39,71,9.395999614490447E-4],[116,39,72,0.0016961864359907484],[116,39,73,0.0025512286471757978],[116,39,74,0.003493844084336874],[116,39,75,0.004513039230140325],[116,39,76,0.005597279138504124],[116,39,77,0.006734181133822493],[116,39,78,0.007910332134509918],[116,39,79,0.00911122882048501],[116,40,64,0.0015417395852373988],[116,40,65,0.0012052305172507594],[116,40,66,0.0010518874945545176],[116,40,67,0.0010859276380419283],[116,40,68,0.0012913436051482196],[116,40,69,0.0016452637137638955],[116,40,70,0.002128892982312086],[116,40,71,0.002726682835931087],[116,40,72,0.0034253911905233964],[116,40,73,0.004213262295179901],[116,40,74,0.005079327192697677],[116,40,75,0.006012825331670112],[116,40,76,0.007002747545543737],[116,40,77,0.008037500306355255],[116,40,78,0.009104690865923514],[116,40,79,0.010191032617568662],[116,41,64,0.003606851417720116],[116,41,65,0.003260347062911354],[116,41,66,0.0030901754763394624],[116,41,67,0.003103093124308302],[116,41,68,0.0032829222957564026],[116,41,69,0.003604694984350661],[116,41,70,0.004047941008139385],[116,41,71,0.004595893465463571],[116,41,72,0.005234527894299766],[116,41,73,0.005951718061768345],[116,41,74,0.006736509344561303],[116,41,75,0.007578510340458628],[116,41,76,0.008467403038089846],[116,41,77,0.00939257156884248],[116,41,78,0.01034284927358926],[116,41,79,0.011306383540136139],[116,42,64,0.005701080273123703],[116,42,65,0.005351937524115423],[116,42,66,0.005171398961393173],[116,42,67,0.005168887791620254],[116,42,68,0.0053279911147860876],[116,42,69,0.005621441713929108],[116,42,70,0.006026947874810819],[116,42,71,0.006526434394902584],[116,42,72,0.0071050560278199185],[116,42,73,0.007750324394457647],[116,42,74,0.008451349432739452],[116,42,75,0.009198196142847757],[116,42,76,0.009981357076689758],[116,42,77,0.010791340721303073],[116,42,78,0.011618375638104477],[116,42,79,0.01245222994571168],[116,43,64,0.007792664912593803],[116,43,65,0.007448765075395934],[116,43,66,0.007265107944014305],[116,43,67,0.007253895142408572],[116,43,68,0.007398402781555869],[116,43,69,0.007668851140823965],[116,43,70,0.00804095922306113],[116,43,71,0.008495223057257525],[116,43,72,0.00901590075400966],[116,43,73,0.009590107697237763],[116,43,74,0.010207023062167921],[116,43,75,0.010857208540381146],[116,43,76,0.011532039849775801],[116,43,77,0.012223251312640345],[116,43,78,0.012922593500806455],[116,43,79,0.013621603675360736],[116,44,64,0.00985459957979023],[116,44,65,0.009523829856486057],[116,44,66,0.009344576667168739],[116,44,67,0.009331891270623381],[116,44,68,0.009468651733516947],[116,44,69,0.009722359864897659],[116,44,70,0.010066571933104314],[116,44,71,0.010480217565149118],[116,44,72,0.010946555941368239],[116,44,73,0.011452238501686394],[116,44,74,0.011986479474964704],[116,44,75,0.012540335240244099],[116,44,76,0.013106093231565868],[116,44,77,0.013676770808424806],[116,44,78,0.01424572423382315],[116,44,79,0.014806367633586658],[116,45,64,0.011868872665237984],[116,45,65,0.011558581006327291],[116,45,66,0.011390961493793891],[116,45,67,0.01138392453295279],[116,45,68,0.011519850075915362],[116,45,69,0.011763335724363765],[116,45,70,0.012085608245020077],[116,45,71,0.012463887562933705],[116,45,72,0.012880315800163609],[116,45,73,0.013320988778286639],[116,45,74,0.013775091417317935],[116,45,75,0.014234138168658662],[116,45,76,0.014691319329473335],[116,45,77,0.014940025647266895],[116,45,78,0.014470743487199605],[116,45,79,0.014016642552919062],[116,46,64,0.01383091971048122],[116,46,65,0.013547339339844876],[116,46,66,0.013397664270015751],[116,46,67,0.013402593395259463],[116,46,68,0.013543892040788801],[116,46,69,0.013783096377095027],[116,46,70,0.014088952882013643],[116,46,71,0.014436832746259995],[116,46,72,0.014807637497183973],[116,46,73,0.015113802310856827],[116,46,74,0.014714745258102234],[116,46,75,0.014324075132974417],[116,46,76,0.013947794688870743],[116,46,77,0.013590356932923122],[116,46,78,0.013255154825265288],[116,46,79,0.012944908003763286],[116,47,64,0.014756666189705912],[116,47,65,0.015009996392650922],[116,47,66,0.015135238164101584],[116,47,67,0.015109093774967355],[116,47,68,0.01495057886797141],[116,47,69,0.014701377395086462],[116,47,70,0.014395391168432057],[116,47,71,0.01405926928354853],[116,47,72,0.01371352034547015],[116,47,73,0.013373532122262461],[116,47,74,0.013050496966453258],[116,47,75,0.012752241619303132],[116,47,76,0.01248396028428948],[116,47,77,0.012248850122816098],[116,47,78,0.012048648585233652],[116,47,79,0.011884072241837702],[116,48,64,0.013059345259387446],[116,48,65,0.013277641491877356],[116,48,66,0.013375693982739198],[116,48,67,0.013327780600455834],[116,48,68,0.01315377613607727],[116,48,69,0.01289860376536035],[116,48,70,0.012598857318427463],[116,48,71,0.012283268351942109],[116,48,72,0.011973828645092444],[116,48,73,0.011686826045116672],[116,48,74,0.011433791905365741],[116,48,75,0.011222358620263103],[116,48,76,0.011057026020660098],[116,48,77,0.010939835648408823],[116,48,78,0.010870952178833562],[116,48,79,0.010849151502363229],[116,49,64,0.011526236039510977],[116,49,65,0.011705017709748805],[116,49,66,0.011770374221833945],[116,49,67,0.011694410770493215],[116,49,68,0.011497952687167655],[116,49,69,0.011229152055121748],[116,49,70,0.010927332860774377],[116,49,71,0.010623389675020845],[116,49,72,0.010340911353276281],[116,49,73,0.010097224558524777],[116,49,74,0.00990435526976595],[116,49,75,0.009769906684616145],[116,49,76,0.009697852169813575],[116,49,77,0.009689242155523721],[116,49,78,0.009742824107131582],[116,49,79,0.009855574939948314],[116,50,64,0.010203205570335265],[116,50,65,0.010338341581774003],[116,50,66,0.010365540261956496],[116,50,67,0.010255028113617481],[116,50,68,0.01002864933023216],[116,50,69,0.0097377063404831],[116,50,70,0.00942424093692116],[116,50,71,0.009121359005442873],[116,50,72,0.00885434528906615],[116,50,73,0.008641704896052111],[116,50,74,0.008496129654597768],[116,50,75,0.008425387646025816],[116,50,76,0.008433134477539147],[116,50,77,0.008519645082847315],[116,50,78,0.008682465062936347],[116,50,79,0.008916980798383994],[116,51,64,0.009125084937489513],[116,51,65,0.009212972728347512],[116,51,66,0.009196849426325754],[116,51,67,0.009045394319240953],[116,51,68,0.008781515849092805],[116,51,69,0.008459522858490139],[116,51,70,0.00812411160243494],[116,51,71,0.007810611761793482],[116,51,72,0.007546081510747252],[116,51,73,0.007350336582535405],[116,51,74,0.007236911398661141],[116,51,75,0.0072139505383370505],[116,51,76,0.007285029036745712],[116,51,77,0.007449900211477896],[116,51,78,0.007705169925056342],[116,51,79,0.00804489639633433],[116,52,64,0.00831578976130285],[116,52,65,0.008353500365116059],[116,52,66,0.008289406293576551],[116,52,67,0.008091001096681797],[116,52,68,0.007782280169692238],[116,52,69,0.007420354568952338],[116,52,70,0.00705246226570512],[116,52,71,0.006716131722677361],[116,52,72,0.0064402463221076255],[116,52,73,0.00624605025502502],[116,52,74,0.006148093924740308],[116,52,75,0.0061551171098598945],[116,52,76,0.006270868325362557],[116,52,77,0.0064948590133069965],[116,52,78,0.006823051386486643],[116,52,79,0.007248478937534088],[116,53,64,0.007788573493343085],[116,53,65,0.007773963338754131],[116,53,66,0.007657947415238842],[116,53,67,0.007407215340612128],[116,53,68,0.007046849902823795],[116,53,69,0.006636506908753552],[116,53,70,0.006225807330342275],[116,53,71,0.005854415945454089],[116,53,72,0.005553064413062539],[116,53,73,0.005344523353177943],[116,53,74,0.005244521497888694],[116,53,75,0.0052626101521425685],[116,53,76,0.005402971376619891],[116,53,77,0.00566516847929723],[116,53,78,0.0060448375761368595],[116,53,79,0.006534319153620357],[116,54,64,0.007546417055591514],[116,54,65,0.007478207312075964],[116,54,66,0.0073071631272270485],[116,54,67,0.006999561048818902],[116,54,68,0.006581550056349846],[116,54,69,0.006115028562284583],[116,54,70,0.0056518008673867755],[116,54,71,0.005233569704304991],[116,54,72,0.0048929078589745895],[116,54,73,0.004654186290813893],[116,54,74,0.004534456856971388],[116,54,75,0.0045442878975375],[116,54,76,0.004688551092253682],[116,54,77,0.004967158154010165],[116,54,78,0.005375746079532296],[116,54,79,0.005906309832111722],[116,55,64,0.007582558285339704],[116,55,65,0.007460382656295824],[116,55,66,0.007232160085426755],[116,55,67,0.00686414168658036],[116,55,68,0.006383500667666542],[116,55,69,0.005854041037200817],[116,55,70,0.005329516118200408],[116,55,71,0.004853535226383874],[116,55,72,0.0044604746962177986],[116,55,73,0.004176352722278414],[116,55,74,0.004019666184503402],[116,55,75,0.0040021877568250765],[116,55,76,0.0041297217319360875],[116,55,77,0.004402817129841103],[116,55,78,0.004817436793741598],[116,55,79,0.005365581312817975],[116,56,64,0.007881164551166678],[116,56,65,0.007705586516229742],[116,56,66,0.007419068069997805],[116,56,67,0.0069882066138220456],[116,56,68,0.0064411380371135266],[116,56,69,0.00584321077339958],[116,56,70,0.005249865576884837],[116,56,71,0.004706457962388493],[116,56,72,0.004249100758833826],[116,56,73,0.0039054774941182356],[116,56,74,0.0036956248658222128],[116,56,75,0.0036326826626106082],[116,56,76,0.003723609614187073],[116,56,77,0.0039698637626950275],[116,56,78,0.004368046064995457],[116,56,79,0.004910506052554058],[116,57,64,0.00841815178221251],[116,57,65,0.008190652396227373],[116,57,66,0.00784579449114896],[116,57,67,0.007350865086335223],[116,57,68,0.006734883145935331],[116,57,69,0.006064367424607103],[116,57,70,0.005396165321865711],[116,57,71,0.00477719405854776],[116,57,72,0.004245208402016629],[116,57,73,0.0038295458238265176],[116,57,74,0.0035518474501294826],[116,57,75,0.003426753255564347],[116,57,76,0.0034625700445873047],[116,57,77,0.0036619108597116534],[116,57,78,0.004022304553515776],[116,57,79,0.004536774359937634],[116,58,64,0.009162153004523544],[116,58,65,0.008885090470698248],[116,58,66,0.008482929890893883],[116,58,67,0.007923951210674273],[116,58,68,0.007237960718176151],[116,58,69,0.00649227183610261],[116,58,70,0.005744847159677788],[116,58,71,0.005043962600472217],[116,58,72,0.004428895652306774],[116,58,73,0.0039305971726825515],[116,58,74,0.0035723451625154067],[116,58,75,0.003370379098394451],[116,58,76,0.0033345134458340818],[116,58,77,0.0034687290586666204],[116,58,78,0.003771741248532192],[116,58,79,0.004237543388858615],[116,59,64,0.01007563930474027],[116,59,65,0.009752181653435962],[116,59,66,0.009294807570801786],[116,59,67,0.008673043073972573],[116,59,68,0.007917372234543902],[116,59,69,0.007095537098836407],[116,59,70,0.006266322009872293],[116,59,71,0.005479146075389205],[116,59,72,0.004774669211548974],[116,59,73,0.004185387178712883],[116,59,74,0.00373621422741964],[116,59,75,0.0034450520263752697],[116,59,76,0.0033233436006880166],[116,59,77,0.003376611067456477],[116,59,78,0.0036049760169457913],[116,59,79,0.004003661450559802],[116,60,64,0.01111619594321854],[116,60,65,0.010750228264887602],[116,60,66,0.010240720285299038],[116,60,67,0.009558639085064359],[116,60,68,0.008735026027991382],[116,60,69,0.007837705889638847],[116,60,70,0.006925997798399771],[116,60,71,0.0060502423479758],[116,60,72,0.0052523246018049115],[116,60,73,0.004566190888423705],[116,60,74,0.0040183581499233425],[116,60,75,0.003628414643097569],[116,60,76,0.003409510832916864],[116,60,77,0.003368839360367295],[116,60,78,0.003508103011347717],[116,60,79,0.00382396965990482],[116,61,64,0.012237956116322307],[116,61,65,0.011833963916520022],[116,61,66,0.011276296724065115],[116,61,67,0.010537494352322313],[116,61,68,0.009649027385821879],[116,61,69,0.00867848710959398],[116,61,70,0.007685454937962827],[116,61,71,0.006720971266411072],[116,61,72,0.005827976571555185],[116,61,73,0.005041750372176812],[116,61,74,0.004390346961732418],[116,61,75,0.0038950268457419493],[116,61,76,0.003570682842795144],[116,61,77,0.003426259835442953],[116,61,78,0.003465167186909615],[116,61,79,0.0036856828711214697],[116,62,64,0.013393194621717808],[116,62,65,0.012956124987073032],[116,62,66,0.012355040266023248],[116,62,67,0.011564119686991253],[116,62,68,0.010615131351951924],[116,62,69,0.009575154608326086],[116,62,70,0.008503782257982507],[116,62,71,0.007452538809631898],[116,62,72,0.006465242689843942],[116,62,73,0.00557836962801772],[116,62,74,0.0048214162737612466],[116,62,75,0.004217263115607912],[116,62,76,0.0037825357825254265],[116,62,77,0.003527963824132152],[116,62,78,0.0034587360819265498],[116,62,79,0.00357485178197094],[116,63,64,0.01453408341179551],[116,63,65,0.014069185797476914],[116,63,66,0.01343003222201795],[116,63,67,0.012592445559128097],[116,63,68,0.011588360666107666],[116,63,69,0.010484110531409595],[116,63,70,0.009339076004405072],[116,63,71,0.00820506145445092],[116,63,72,0.007126582834808552],[116,63,73,0.006141159472638762],[116,63,74,0.0052796087870179914],[116,63,75,0.004566343136959008],[116,63,76,0.004019668003154124],[116,63,77,0.0036520807105026986],[116,63,78,0.003470568903472756],[116,63,79,0.003476907992837581],[116,64,64,0.015614610729708683],[116,64,65,0.015127259300370892],[116,64,66,0.014455801494273952],[116,64,67,0.01357765304727166],[116,64,68,0.012524790994863604],[116,64,69,0.011362615551973203],[116,64,70,0.010150104261140264],[116,64,71,0.008939153182663749],[116,64,72,0.0077747970367080714],[116,64,73,0.006695434886318229],[116,64,74,0.0057330606983066424],[116,64,75,0.004913498110683285],[116,64,76,0.004256638728316545],[116,64,77,0.0037766832627657686],[116,64,78,0.0034823848277770607],[116,64,79,0.003377293698672029],[116,65,64,0.015667011931172165],[116,65,65,0.0160881647874155],[116,65,66,0.015390362269023919],[116,65,67,0.014478173513492164],[116,65,68,0.013383505303327166],[116,65,69,0.012170687946543936],[116,65,70,0.010898138851119798],[116,65,71,0.009617677264120003],[116,65,72,0.008374683863632954],[116,65,73,0.00720826702156056],[116,65,74,0.006151435197465747],[116,65,75,0.005231274909115181],[116,65,76,0.004469133711690737],[116,65,77,0.003880807604818096],[116,65,78,0.0034767322746453834],[116,65,79,0.003262177567108318],[116,66,64,0.014917570319023866],[116,66,65,0.015463256946546662],[116,66,66,0.016197421025290527],[116,66,67,0.015257858403473799],[116,66,68,0.014128718886839359],[116,66,69,0.012873173150113939],[116,66,70,0.01154895645657987],[116,66,71,0.01020766464267209],[116,66,72,0.008894861241184434],[116,66,73,0.007650191803336325],[116,66,74,0.0065075049889467065],[116,66,75,0.005494979975031547],[116,66,76,0.004635259714703853],[116,66,77,0.003945589560249598],[116,66,78,0.0034379607467519974],[116,66,79,0.0031192582155543987],[116,67,64,0.014332710562582238],[116,67,65,0.01488763228241826],[116,67,66,0.015648623754990845],[116,67,67,0.015888320217813424],[116,67,68,0.014732076230297157],[116,67,69,0.013441985077252472],[116,67,70,0.012075010356078861],[116,67,71,0.01068240041875429],[116,67,72,0.009309751276286627],[116,67,73,0.0079970767429369],[116,67,74,0.0067788854830658106],[116,67,75,0.005684264601806558],[116,67,76,0.004736969399223091],[116,67,77,0.003955518886104363],[116,67,78,0.003353296638136611],[116,67,79,0.0029386565438018894],[116,68,64,0.013928613850944635],[116,68,65,0.014488978577185544],[116,68,66,0.015261552221061982],[116,68,67,0.016263591892858184],[116,68,68,0.015175120489731108],[116,68,69,0.013858520125891565],[116,68,70,0.012457773810960244],[116,68,71,0.011023679566007505],[116,68,72,0.00960173031078603],[116,68,73,0.008232147258282823],[116,68,74,0.006949919991924219],[116,68,75,0.005784852943581398],[116,68,76,0.004761617967180076],[116,68,77,0.0038998126790407545],[116,68,78,0.003214024212117805],[116,68,79,0.0027138980069730655],[116,69,64,0.013707557363053187],[116,69,65,0.014270535567064263],[116,69,66,0.015050729482892981],[116,69,67,0.01606418806570606],[116,69,68,0.015451940010863143],[116,69,69,0.014116248779694009],[116,69,70,0.012690260469491371],[116,69,71,0.011224237633617806],[116,69,72,0.00976345025319284],[116,69,73,0.008348178743693827],[116,69,74,0.007013723253283407],[116,69,75,0.005790419035522321],[116,69,76,0.004703657654800799],[116,69,77,0.003773913757837758],[116,69,78,0.0030167771189914027],[116,69,79,0.002442989640796162],[116,70,64,0.01365037372675569],[116,70,65,0.014213295140672759],[116,70,66,0.01499736738502016],[116,70,67,0.016017326895706188],[116,70,68,0.015580938672713695],[116,70,69,0.01423344526684813],[116,70,70,0.01279058630437942],[116,70,71,0.011301978016131196],[116,70,72,0.00981252979023816],[116,70,73,0.008362422076012418],[116,70,74,0.006987090083651378],[116,70,75,0.005717213116596239],[116,70,76,0.004578709348649158],[116,70,77,0.003592735832312276],[116,70,78,0.0027756934982481516],[116,70,79,0.0021392368781657464],[116,71,64,0.013716186295859448],[116,71,65,0.01427364578951091],[116,71,66,0.015055101015227473],[116,71,67,0.016073857874382234],[116,71,68,0.015613925882734869],[116,71,69,0.014264413070415071],[116,71,70,0.012815169301121084],[116,71,71,0.011314923149256176],[116,71,72,0.009807977049368657],[116,71,73,0.00833416643183984],[116,71,74,0.006928823691043753],[116,71,75,0.0056227468651098705],[116,71,76,0.004442172882865023],[116,71,77,0.003408755208753544],[116,71,78,0.0025395456905374456],[116,71,79,0.0018469803872321775],[116,72,64,0.013870478424982088],[116,72,65,0.014414356609920248],[116,72,66,0.015183958450549536],[116,72,67,0.01619105584374053],[116,72,68,0.015596243268819915],[116,72,69,0.014256967283010142],[116,72,70,0.012813967807626753],[116,72,71,0.011314734696944691],[116,72,72,0.009802623412831392],[116,72,73,0.008316803283694064],[116,72,74,0.006892208797848517],[116,72,75,0.005559493837885257],[116,72,76,0.004344988742673836],[116,72,77,0.003270660062185099],[116,72,78,0.0023540728472869863],[116,72,79,0.0016083552919216892],[116,73,64,0.014087299917762554],[116,73,65,0.014607438474058099],[116,73,66,0.01535390795629713],[116,73,67,0.016336865894298343],[116,73,68,0.01556183278469533],[116,73,69,0.014246850728816061],[116,73,70,0.012824303458411491],[116,73,71,0.011340024251889552],[116,73,72,0.009836022974355778],[116,73,73,0.008350432848511653],[116,73,74,0.006917457349598958],[116,73,75,0.005567317139952588],[116,73,76,0.004326196945617564],[116,73,77,0.0032161922625009993],[116,73,78,0.0022552557625708835],[116,73,79,0.0014571432514683875],[116,74,64,0.01434639128546992],[116,74,65,0.014831231324528741],[116,74,66,0.015541915181111058],[116,74,67,0.016486935939743506],[116,74,68,0.015536218315123728],[116,74,69,0.014260710465205556],[116,74,70,0.012873806334866485],[116,74,71,0.01141923564310048],[116,74,72,0.00993723685439265],[116,74,73,0.008464513184820551],[116,74,74,0.0070341845142593016],[116,74,75,0.005675735107040645],[116,74,76,0.004414957040869858],[116,74,77,0.0032738892389688953],[116,74,78,0.0022707519931105865],[116,74,79,0.0014198768551482973],[116,75,64,0.014630395456441476],[116,75,65,0.015067577228799863],[116,75,66,0.01572908398010282],[116,75,67,0.01660020830215699],[116,75,68,0.015539409065838058],[116,75,69,0.014319000010371494],[116,75,70,0.012983291075658154],[116,75,71,0.011573464912841091],[116,75,72,0.01012756351678305],[116,75,73,0.008680465270046735],[116,75,74,0.007263852247306815],[116,75,75,0.005906167643567184],[116,75,76,0.004632563201630509],[116,75,77,0.003464836523579054],[116,75,78,0.002421358157285749],[116,75,79,0.0015169883517899387],[116,76,64,0.014922161901536791],[116,76,65,0.015299084204981295],[116,76,66,0.015897885905038482],[116,76,67,0.016578283061185143],[116,76,68,0.015588719702177083],[116,76,69,0.014438802319883821],[116,76,70,0.013169559078468793],[116,76,71,0.011819213293131741],[116,76,72,0.010423210684664355],[116,76,73,0.009014230006612159],[116,76,74,0.007622176806907254],[116,76,75,0.006274160119515616],[116,76,76,0.004994451912541854],[116,76,77,0.003804429146838175],[116,76,78,0.002722498323043116],[116,76,79,0.0017640024146045393],[116,77,64,0.01520214822379018],[116,77,65,0.015506485926340815],[116,77,66,0.016029483509517287],[116,77,67,0.01660552457034105],[116,77,68,0.0157015020643543],[116,77,69,0.014636568385551484],[116,77,70,0.013448121771647618],[116,77,71,0.012171068337047643],[116,77,72,0.01083790426729841],[116,77,73,0.009478772909817561],[116,77,74,0.00812149640029264],[116,77,75,0.0067915815212694405],[116,77,76,0.005512199543355344],[116,77,77,0.0043041398494859315],[116,77,78,0.0031857371882426655],[116,77,79,0.0021727724425821956],[116,78,64,0.015445924315271363],[116,78,65,0.015666102479325573],[116,78,66,0.016101152697562002],[116,78,67,0.01670338903655194],[116,78,68,0.01589778317969709],[116,78,69,0.014930766208489314],[116,78,70,0.01383583979900694],[116,78,71,0.01264430821117279],[116,78,72,0.011385429547776625],[116,78,73,0.010086532056968845],[116,78,74,0.008773094958559524],[116,78,75,0.007468793359058054],[116,78,76,0.006195506901307771],[116,78,77,0.0049732918709670575],[116,78,78,0.003820316553170306],[116,78,79,0.0027527596975947684],[116,79,64,0.015641203899776204],[116,79,65,0.0157666640064968],[116,79,66,0.01610267159864954],[116,79,67,0.01665004120413963],[116,79,68,0.016185500998650383],[116,79,69,0.015328301414052307],[116,79,70,0.01433875810132255],[116,79,71,0.013244356923426933],[116,79,72,0.012070882456299739],[116,79,73,0.01084260688463192],[116,79,74,0.009582432068202404],[116,79,75,0.008311984176691588],[116,79,76,0.007051660402701342],[116,79,77,0.005820627369299071],[116,79,78,0.004636770948790952],[116,79,79,0.0035165973025215614],[116,80,64,0.015840633771382538],[116,80,65,0.015861626753311896],[116,80,66,0.016087549361856336],[116,80,67,0.016518004737238946],[116,80,68,0.016513538689845442],[116,80,69,0.01578068976970222],[116,80,70,0.014912065149763055],[116,80,71,0.013931122372352863],[116,80,72,0.012859904392485478],[116,80,73,0.011719319218985164],[116,80,74,0.010529360023243884],[116,80,75,0.00930926489978176],[116,80,76,0.008077615609604794],[116,80,77,0.006852374778332962],[116,80,78,0.005650861154943569],[116,80,79,0.004489662662405965],[116,81,64,0.016097063867470018],[116,81,65,0.016004978124113358],[116,81,66,0.0161101894416556],[116,81,67,0.016411137454933642],[116,81,68,0.016829113577444068],[116,81,69,0.016237323517093488],[116,81,70,0.015508341893752178],[116,81,71,0.014661400589967163],[116,81,72,0.013714507583703024],[116,81,73,0.012684839791781699],[116,81,74,0.011589062355483359],[116,81,75,0.010443573281549559],[116,81,76,0.009264672538081872],[116,81,77,0.008068654884638836],[116,81,78,0.006871825887670205],[116,81,79,0.005690440734689249],[116,82,64,0.016445323017152166],[116,82,65,0.01623310090441931],[116,82,66,0.016208064485913724],[116,82,67,0.016367504021760078],[116,82,68,0.01669563221842477],[116,82,69,0.016660823222407202],[116,82,70,0.016091602005785376],[116,82,71,0.015401371652787066],[116,82,72,0.014603817359396212],[116,82,73,0.013711997173039992],[116,82,74,0.012738784264895997],[116,82,75,0.011697218963929983],[116,82,76,0.01060076936114392],[116,82,77,0.00946349951558286],[116,82,78,0.008300144507956018],[116,82,79,0.007126091791374664],[116,83,64,0.01674145094871762],[116,83,65,0.016567114675127968],[116,83,66,0.01640393487618924],[116,83,67,0.016411247407773593],[116,83,68,0.016574682011721364],[116,83,69,0.016879023356811466],[116,83,70,0.016635893713200296],[116,83,71,0.016125470149017503],[116,83,72,0.015503225432421334],[116,83,73,0.014777721989866703],[116,83,74,0.013957569789596579],[116,83,75,0.013051909596022414],[116,83,76,0.012070787687400265],[116,83,77,0.011025420761742696],[116,83,78,0.009928350016969378],[116,83,79,0.008793483640705679],[116,84,64,0.016225324989243825],[116,84,65,0.01675011610067503],[116,84,66,0.016707978237673997],[116,84,67,0.016554565959091293],[116,84,68,0.016541676416537286],[116,84,69,0.016657498580875667],[116,84,70,0.01689379335871096],[116,84,71,0.016815312215958663],[116,84,72,0.01639359342810682],[116,84,73,0.015862536159036104],[116,84,74,0.015226040080851875],[116,84,75,0.014488815647878593],[116,84,76,0.01365689573872798],[116,84,77,0.012738018974255479],[116,84,78,0.011741883381575733],[116,84,79,0.010680269373447899],[116,85,64,0.015595490387464113],[116,85,65,0.016251042824634635],[116,85,66,0.016763232125874168],[116,85,67,0.016799601167367246],[116,85,68,0.01660134901674933],[116,85,69,0.01651624654070206],[116,85,70,0.016539950836972843],[116,85,71,0.016671236129925892],[116,85,72,0.01691075696096214],[116,85,73,0.016950088170036688],[116,85,74,0.016526213292667454],[116,85,75,0.01598867391208474],[116,85,76,0.015338928925401209],[116,85,77,0.014580628576817151],[116,85,78,0.01371998781767318],[116,85,79,0.012766008905706056],[116,86,64,0.014865923794719042],[116,86,65,0.015650671654897908],[116,86,66,0.01631267421455399],[116,86,67,0.016859365927987233],[116,86,68,0.016750676623963307],[116,86,69,0.01645551701966712],[116,86,70,0.016254030364888334],[116,86,71,0.016149427154493617],[116,86,72,0.016147360436910903],[116,86,73,0.016254590331221144],[116,86,74,0.016477807323056606],[116,86,75,0.0168226177575484],[116,86,76,0.01709480779643166],[116,86,77,0.016529001153686666],[116,86,78,0.01583664202206298],[116,86,79,0.015023332895037742],[116,87,64,0.01405748698004168],[116,87,65,0.014967523727193472],[116,87,66,0.015777450278163872],[116,87,67,0.016495892619463926],[116,87,68,0.01698041220721974],[116,87,69,0.016469819617363803],[116,87,70,0.01603455384581221],[116,87,71,0.01568209760123928],[116,87,72,0.015423091486422156],[116,87,73,0.015269744517737166],[116,87,74,0.01523442201805533],[116,87,75,0.015328414945177688],[116,87,76,0.015560894219793439],[116,87,77,0.015938053126055035],[116,87,78,0.01646244037771726],[116,87,79,0.017132485977013265],[116,88,64,0.013196033212208736],[116,88,65,0.014225188907927538],[116,88,66,0.01517843702902385],[116,88,67,0.016065584366148654],[116,88,68,0.016898436747746885],[116,88,69,0.016549181187455915],[116,88,70,0.015875985967096065],[116,88,71,0.015268461811465345],[116,88,72,0.014742144713146417],[116,88,73,0.014314725871519362],[116,88,74,0.014004390065612927],[116,88,75,0.013828354674232442],[116,88,76,0.013801613534884497],[116,88,77,0.013935889283247347],[116,88,78,0.014238797275842775],[116,88,79,0.014713223674143803],[116,89,64,0.012310634712608641],[116,89,65,0.013450622790401306],[116,89,66,0.014539964922850146],[116,89,67,0.015589626906967479],[116,89,68,0.01661190946443537],[116,89,69,0.016680315691069727],[116,89,70,0.01576970701147021],[116,89,71,0.014904984043182678],[116,89,72,0.014106406616271055],[116,89,73,0.013397088313622945],[116,89,74,0.012801075552213815],[116,89,75,0.012341646224690665],[116,89,76,0.012039832752064418],[116,89,77,0.01191317378991935],[116,89,78,0.011974698232632128],[116,89,79,0.012232144576993538],[116,90,64,0.011431934712275809],[116,90,65,0.01267256448065175],[116,90,66,0.013888324767883434],[116,90,67,0.015091308159422662],[116,90,68,0.016294632796136865],[116,90,69,0.016847703751855948],[116,90,70,0.015704905290366014],[116,90,71,0.014586061812457324],[116,90,72,0.01351591085029333],[116,90,73,0.012522836772111304],[116,90,74,0.011636685468312324],[116,90,75,0.010886816948941764],[116,90,76,0.01030040138345093],[116,90,77,0.009900963447834301],[116,90,78,0.009707179188554923],[116,90,79,0.00973192897180517],[116,91,64,0.010590627336133552],[116,91,65,0.011920078353482952],[116,91,66,0.013250392968801606],[116,91,67,0.014594749199776288],[116,91,68,0.01596737816687543],[116,91,69,0.017034579420250058],[116,91,70,0.01566938700483574],[116,91,71,0.014304636770095719],[116,91,72,0.012969230567554078],[116,91,73,0.01169658472232352],[116,91,74,0.010522180036195952],[116,91,75,0.00948136724474766],[116,91,76,0.008607434148771234],[116,91,77,0.007929939919216556],[116,91,78,0.007473321363337434],[116,91,79,0.007255775242933384],[116,92,64,0.009816068248592297],[116,92,65,0.011221222678976874],[116,92,66,0.012652378228308352],[116,92,67,0.014123749369253764],[116,92,68,0.015650940718778497],[116,92,69,0.017223821861026074],[116,92,70,0.01565030151962773],[116,92,71,0.01405273140705712],[116,92,72,0.012463806473539476],[116,92,73,0.010921656399266205],[116,92,74,0.009467135414720754],[116,92,75,0.008141384087388398],[116,92,76,0.006983669982204922],[116,92,77,0.0060295133295417995],[116,92,78,0.005309103070037906],[116,92,79,0.0048460078955244726],[116,93,64,0.009135018725832963],[116,93,65,0.010601847758833903],[116,93,66,0.012118692279703787],[116,93,67,0.013700747966718859],[116,93,68,0.01536521189934915],[116,93,69,0.017115622450381323],[116,93,70,0.01563478020382343],[116,93,71,0.01382191002329942],[116,93,72,0.011996209338784017],[116,93,73,0.010200132755311526],[116,93,74,0.008479558195510153],[116,93,75,0.006881112880560323],[116,93,76,0.005449794150679992],[116,93,77,0.004226891883363977],[116,93,78,0.0032482184536707045],[116,93,79,0.0025426513809831655],[116,94,64,0.008570525570149427],[116,94,65,0.010084525969108471],[116,94,66,0.01167094699138025],[116,94,67,0.013345904770073186],[116,94,68,0.015128361565250607],[116,94,69,0.017023322969061304],[116,94,70,0.015610487148049914],[116,94,71,0.013603662526649666],[116,94,72,0.011562335817440138],[116,94,73,0.0095328403167305],[116,94,74,0.007565651160117188],[116,94,75,0.0057124874161562965],[116,94,76,0.004023723591028659],[116,94,77,0.0025461179065508423],[116,94,78,0.0013208638546931338],[116,94,79,3.8197068620089914E-4],[116,95,64,0.008140939049459943],[116,95,65,0.009687615880139104],[116,95,66,0.011327079967959713],[116,95,67,0.013076301425446546],[116,95,68,0.014956131514785356],[116,95,69,0.01697335226937854],[116,95,70,0.015566080214337393],[116,95,71,0.013389709751316694],[116,95,72,0.011157536521666735],[116,95,73,0.008919282167488544],[116,95,74,0.006729529818752264],[116,95,75,0.004644617761365724],[116,95,76,0.00271985558049608],[116,95,77,0.0010070707162454483],[116,95,78,-4.475075309970754E-4],[116,95,79,-0.0016050203948556735],[116,96,64,0.007859070829483391],[116,96,65,0.009424462414712462],[116,96,66,0.011100610571728899],[116,96,67,0.012905265554159379],[116,96,68,0.01486124218731486],[116,96,69,0.016977339238747138],[116,96,70,0.01549158101088234],[116,96,71,0.013172229100407813],[116,96,72,0.010776675393394565],[116,96,73,0.008357510358526813],[116,96,74,0.005972889298702464],[116,96,75,0.0036832359177027493],[116,96,76,0.0015482798613718877],[116,96,77,-3.7556329179423123E-4],[116,96,78,-0.0020374620511322177],[116,96,79,-0.003394082428641924],[116,97,64,0.00773149366610788],[116,97,65,0.00930273481077217],[116,97,66,0.011000028101201945],[116,97,67,0.012841819251579742],[116,97,68,0.014852914105956348],[116,97,69,0.01704430187563764],[116,97,70,0.015378652510891103],[116,97,71,0.012943999423763225],[116,97,72,0.010414119501133754],[116,97,73,0.007843939105719053],[116,97,74,0.0052946211946749405],[116,97,75,0.0028300991206526046],[116,97,76,5.139543459244136E-4],[116,97,77,-0.001593352960262618],[116,97,78,-0.00343689243683476],[116,97,79,-0.0049693041081231674],[116,98,64,0.007757984440282215],[116,98,65,0.009323903974438868],[116,98,66,0.011028313690239442],[116,98,67,0.012890253488607213],[116,98,68,0.014936505489320564],[116,98,69,0.017180364176611087],[116,98,70,0.015220783152875943],[116,98,71,0.012698464142044797],[116,98,72,0.010063658469662028],[116,98,73,0.007373098200094138],[116,98,74,0.004690380034148049],[116,98,75,0.002082350670679379],[116,98,76,-3.84155467678157E-4],[116,98,77,-0.0026452167249060043],[116,98,78,-0.004642354489768266],[116,98,79,-0.006324685813328062],[116,99,64,0.00793111194648388],[116,99,65,0.009482860641922648],[116,99,66,0.011182597330389819],[116,99,67,0.013049829774859098],[116,99,68,0.015113267318143137],[116,99,69,0.01738857937884462],[116,99,70,0.01501337636977176],[116,99,71,0.012429711720740368],[116,99,72,0.0097183528250088],[116,99,73,0.006937326109987817],[116,99,74,0.004152099048548319],[116,99,75,0.0014318382064038447],[116,99,76,-0.0011539732342316375],[116,99,77,-0.0035385486511717635],[116,99,78,-0.005660433047730979],[116,99,79,-0.007465752197241038],[116,100,64,0.00823597068772819],[116,100,65,0.009767675614373797],[116,100,66,0.011453951270317425],[116,100,67,0.013314610302074365],[116,100,68,0.015380217012830884],[116,100,69,0.017187749615446595],[116,100,70,0.014753744596466195],[116,100,71,0.012132372683922013],[116,100,72,0.009370310606400426],[116,100,73,0.00652640230672118],[116,100,74,0.0036674549757932983],[116,100,75,8.643893488564844E-4],[116,100,76,-0.001811244518399892],[116,100,77,-0.004290375809015169],[116,100,78,-0.006509136683588778],[116,100,79,-0.008411193061826206],[116,101,64,0.008649515935472935],[116,101,65,0.010158597941414915],[116,101,66,0.01182605024739502],[116,101,67,0.013671778631408851],[116,101,68,0.015728119367905313],[116,101,69,0.01688500941733747],[116,101,70,0.014443785643452478],[116,101,71,0.01180459761601084],[116,101,72,0.009013936778761205],[116,101,73,0.006131028395161464],[116,101,74,0.003223532118515644],[116,101,75,3.6360163083850726E-4],[116,101,76,-0.0023756850946435523],[116,101,77,-0.00492351439817093],[116,101,78,-0.007214134938901167],[116,101,79,-0.009189256667459728],[116,102,64,0.009136857460528346],[116,102,65,0.010620253747043173],[116,102,66,0.012263196730446554],[116,102,67,0.014085451430778256],[116,102,68,0.01612101966001569],[116,102,69,0.016550577340980577],[116,102,70,0.014119278294623451],[116,102,71,0.011481838873864994],[116,102,72,0.008684156257438298],[116,102,73,0.005785353734565227],[116,102,74,0.0028534078693798585],[116,102,75,-3.8861766479100864E-5],[116,102,76,-0.002817428454062619],[116,102,77,-0.005410308995338914],[116,102,78,-0.007750419456536151],[116,102,79,-0.009778027295890555],[116,103,64,0.009662040952105183],[116,103,65,0.011113907411096184],[116,103,66,0.012724044621694222],[116,103,67,0.01451185594072166],[116,103,68,0.0165128605110241],[116,103,69,0.016232720276157207],[116,103,70,0.01383055575532125],[116,103,71,0.011216340673338904],[116,103,72,0.008434901316232571],[116,103,73,0.005544691952704299],[116,103,74,0.002613378812106973],[116,103,75,-2.862120405984119E-4],[116,103,76,-0.0030797708879753993],[116,103,77,-0.005694793612473879],[116,103,78,-0.008063474083238951],[116,103,79,-0.0101251907874692],[116,104,64,0.010195836833601011],[116,104,65,0.011608193515986654],[116,104,66,0.013175307836550387],[116,104,67,0.014916027656813635],[116,104,68,0.016867195558778587],[116,104,69,0.01596925934108914],[116,104,70,0.01361666968145407],[116,104,71,0.011048262849569892],[116,104,72,0.008307286750413425],[116,104,73,0.0054509130301177815],[116,104,74,0.0025458145219976157],[116,104,75,-3.3589491326427957E-4],[116,104,76,-0.003120346001430695],[116,104,77,-0.005735214019998872],[116,104,78,-0.008112623060230638],[116,104,79,-0.010191645570268144],[116,105,64,0.010716830675115517],[116,105,65,0.012080184099508586],[116,105,66,0.013592799250738986],[116,105,67,0.015272812044538592],[116,105,68,0.01715814762495957],[116,105,69,0.015786655144695225],[116,105,70,0.013504513242170781],[116,105,71,0.011004831713505626],[116,105,72,0.008328775093055393],[116,105,73,0.005531606923211574],[116,105,74,0.0026783019610326433],[116,105,75,-1.6048401423167494E-4],[116,105,76,-0.002912074648920078],[116,105,77,-0.005505052607121117],[116,105,78,-0.007872148228114112],[116,105,79,-0.009952728193637374],[116,106,64,0.011212831447681404],[116,106,65,0.012516712243980408],[116,106,66,0.013962661117503106],[116,106,67,0.015567989801931786],[116,106,68,0.017371418674707557],[116,106,69,0.015699117713405177],[116,106,70,0.013508050039741142],[116,106,71,0.01109968203627651],[116,106,72,0.008512621111337507],[116,106,73,0.005799615908286275],[116,106,74,0.0030232474673702833],[116,106,75,2.5196963680165665E-4],[116,106,76,-0.002443489257293429],[116,106,77,-0.004993352478555122],[116,106,78,-0.007331638687735428],[116,106,79,-0.009398614489719228],[116,107,64,0.01168271360243535],[116,107,65,0.012916126663883929],[116,107,66,0.014283021138889964],[116,107,67,0.01579981979328283],[116,107,68,0.0175057063232825],[116,107,69,0.015707324804073473],[116,107,70,0.013627170604555294],[116,107,71,0.011331850284030864],[116,107,72,0.008856995751386798],[116,107,73,0.006252278956175354],[116,107,74,0.0035772274476909916],[116,107,75,8.973771851366089E-4],[116,107,76,-0.0017192256581272409],[116,107,77,-0.004205163122216358],[116,107,78,-0.006496414315005567],[116,107,79,-0.008534745849733396],[116,108,64,0.012138695177046792],[116,108,65,0.01329047962639163],[116,108,66,0.01456607664837819],[116,108,67,0.01598100222491474],[116,108,68,0.01752193154191148],[116,108,69,0.015796745860922754],[116,108,70,0.01384617368676349],[116,108,71,0.011684416333683926],[116,108,72,0.009343786824357957],[116,108,73,0.006870385552262743],[116,108,74,0.004320085373969662],[116,108,75,0.001754838389141754],[116,108,76,-7.606842494853247E-4],[116,108,77,-0.003162109075528366],[116,108,78,-0.005388024099100787],[116,108,79,-0.007382281064736717],[116,109,64,0.012609053905788339],[116,109,65,0.013668150302574808],[116,109,66,0.014840609116381782],[116,109,67,0.01614106438074707],[116,109,68,0.017522618822059716],[116,109,69,0.015935569135569202],[116,109,70,0.014131869825743468],[116,109,71,0.012122791153778985],[116,109,72,0.00993707396935159],[116,109,73,0.007616836603518187],[116,109,74,0.005213772891761353],[116,109,75,0.0027856529965765812],[116,109,76,3.9313784016500284E-4],[116,109,77,-0.0019030829072120405],[116,109,78,-0.0040448202032982725],[116,109,79,-0.005978574154607984],[116,110,64,0.013141283113097788],[116,110,65,0.014096905439472921],[116,110,66,0.015154930972857382],[116,110,67,0.016329171009759953],[116,110,68,0.017507031875152186],[116,110,69,0.01607222972458174],[116,110,70,0.014431304913870253],[116,110,71,0.012592648165628146],[116,110,72,0.010581275650760266],[116,110,73,0.00843501028222981],[116,110,74,0.006200933036079921],[116,110,75,0.00393211524915567],[116,110,76,0.001684642048932047],[116,110,77,-4.850637292548409E-4],[116,110,78,-0.002522608583322871],[116,110,79,-0.004377678585992242],[116,111,64,0.013799863946597163],[116,111,65,0.01464178882606829],[116,111,66,0.015574701715503798],[116,111,67,0.01661165842806717],[116,111,68,0.017408162030680713],[116,111,69,0.01613907370095039],[116,111,70,0.014676319232399659],[116,111,71,0.01302554778905977],[116,111,72,0.011207982593669676],[116,111,73,0.009256916207764513],[116,111,74,0.007214452404589346],[116,111,75,0.005128504743306662],[116,111,76,0.003050061230524465],[116,111,77,0.0010307237268991512],[116,111,78,-8.79469972851719E-4],[116,111,79,-0.0026339341835838453],[116,112,64,0.01463464308469879],[116,112,65,0.01535420647689161],[116,112,66,0.016152309610247034],[116,112,67,0.0170412711945109],[116,112,68,0.017173605638093538],[116,112,69,0.016084728275196844],[116,112,70,0.014817322543188882],[116,112,71,0.013374453521775532],[116,112,72,0.011773486814751556],[116,112,73,0.01004293669695323],[116,112,74,0.008219535478336865],[116,112,75,0.006345533235994908],[116,112,76,0.004466236419921185],[116,112,77,0.0026277931879268254],[116,112,78,8.752326734877707E-4],[116,112,79,-7.492352578669166E-4],[116,113,64,0.015670434441845887],[116,113,65,0.016261062015052816],[116,113,66,0.01691623730233444],[116,113,67,0.017522451128223607],[116,113,68,0.016773424221481783],[116,113,69,0.01587939328077902],[116,113,70,0.014825263662282371],[116,113,71,0.013611684849563009],[116,113,72,0.012252103046364938],[116,113,73,0.010769999425074252],[116,113,74,0.00919632266869451],[116,113,75,0.00756712388965805],[116,113,76,0.00592140144608328],[116,113,77,0.004299162608590012],[116,113,78,0.0027397084621945504],[116,113,79,0.0012801478622346298],[116,114,64,0.01691157058557678],[116,114,65,0.017369036916044824],[116,114,66,0.01722929104288697],[116,114,67,0.01675844447475141],[116,114,68,0.016195637326772927],[116,114,69,0.015509894691682558],[116,114,70,0.014686072682972786],[116,114,71,0.013722591286027317],[116,114,72,0.012628937571329914],[116,114,73,0.01142332776696957],[116,114,74,0.010130535577941783],[116,114,75,0.008779893669867967],[116,114,76,0.007403474757976971],[116,114,77,0.006034458261493488],[116,114,78,0.004705688002109064],[116,114,79,0.0034484259465107974],[116,115,64,0.016587502920222135],[116,115,65,0.016366021889147687],[116,115,66,0.016110926816965097],[116,115,67,0.015812318077043246],[116,115,68,0.0154437269387714],[116,115,69,0.014977437000070568],[116,115,70,0.014398701198687202],[116,115,71,0.013703916616901155],[116,115,72,0.012898607545905277],[116,115,73,0.011995540019677576],[116,115,74,0.011012973870806254],[116,115,75,0.009973057977573797],[116,115,76,0.008900373983131378],[116,115,77,0.007820633376280483],[116,115,78,0.006759532431831325],[116,115,79,0.005741769119677288],[116,116,64,0.015014116199732029],[116,116,65,0.014927654485965855],[116,116,66,0.014827127051207999],[116,116,67,0.014703508685900615],[116,116,68,0.01453420191217022],[116,116,69,0.014295403692585565],[116,116,70,0.01397319800540463],[116,116,71,0.013562185847509286],[116,116,72,0.013063970580780114],[116,116,73,0.012485747198622044],[116,116,74,0.011839000165584727],[116,116,75,0.011138314187357248],[116,116,76,0.01040030196922731],[116,116,77,0.00964265272036254],[116,116,78,0.008883304861053962],[116,116,79,0.00813974609271581],[116,117,64,0.013314331154789071],[116,117,65,0.013359363195796852],[116,117,66,0.013411481851113714],[116,117,67,0.013462546797887028],[116,117,68,0.013494224380033486],[116,117,69,0.013487207614252003],[116,117,70,0.013428821854471933],[116,117,71,0.013312116165973073],[116,117,72,0.01313486559883578],[116,117,73,0.012898650102544724],[116,117,74,0.012608013293501794],[116,117,75,0.012269704078412623],[116,117,76,0.011892003926177059],[116,117,77,0.011484142370525792],[116,117,78,0.011055803116719462],[116,117,79,0.010616722919928339],[116,118,64,0.011535876907479405],[116,118,65,0.011706342788452097],[116,118,66,0.011906332216573126],[116,118,67,0.012128572967221085],[116,118,68,0.012359299950300256],[116,118,69,0.012584192874108549],[116,118,70,0.012792192712487799],[116,118,71,0.01297505314315687],[116,118,72,0.01312686592089741],[116,118,73,0.013243636299712808],[116,118,74,0.013322910257403852],[116,118,75,0.013363455152102723],[116,118,76,0.013364995316993825],[116,118,77,0.01332800397773371],[116,118,78,0.013253552757953183],[116,118,79,0.013143219922868547],[116,119,64,0.009732485801855538],[116,119,65,0.010019934808196716],[116,119,66,0.010360233582842712],[116,119,67,0.010746930521645893],[116,119,68,0.011171033355118945],[116,119,69,0.011623589817966181],[116,119,70,0.012095482875621885],[116,119,71,0.012577433302450234],[116,119,72,0.013060045465620014],[116,119,73,0.013533877646563426],[116,119,74,0.013989537203505082],[116,119,75,0.014417800836237274],[116,119,76,0.014809760174833616],[116,119,77,0.015156992877882575],[116,119,78,0.015451759393571282],[116,119,79,0.015687225509186744],[116,120,64,0.007961284908712578],[116,120,65,0.00835508578810539],[116,120,66,0.008825506296076827],[116,120,67,0.00936683629459211],[116,120,68,0.00997495107885392],[116,120,69,0.010646524470659316],[116,120,70,0.011374649181007312],[116,120,71,0.012149274107991426],[116,120,72,0.012957758886857386],[116,120,73,0.013785428909756824],[116,120,74,0.014616129702669402],[116,120,75,0.015432779581727686],[116,120,76,0.016217919551059872],[116,120,77,0.016954259449380338],[116,120,78,0.01762521940291697],[116,120,79,0.01817097047437634],[116,121,64,0.006280287128784044],[116,121,65,0.0067679004743461035],[116,121,66,0.007355874531263943],[116,121,67,0.008039130841016894],[116,121,68,0.00881839235798508],[116,121,69,0.009696083732442639],[116,121,70,0.010667707457342537],[116,121,71,0.011722692338571195],[116,121,72,0.012845436411099215],[116,121,73,0.014016328023412185],[116,121,74,0.015212742620503799],[116,121,75,0.016410012861927552],[116,121,76,0.017582369825033445],[116,121,77,0.017569554298733015],[116,121,78,0.016600328354741078],[116,121,79,0.015728889901303514],[116,122,64,0.004745983239179123],[116,122,65,0.005313291424882962],[116,122,66,0.006004195013578582],[116,122,67,0.006814109466259296],[116,122,68,0.007748469819488611],[116,122,69,0.00881543750146375],[116,122,70,0.010013050260281785],[116,122,71,0.01133045173597566],[116,122,72,0.012749394078647116],[116,122,73,0.014245698474962758],[116,122,74,0.015790669838278468],[116,122,75,0.017352462088757008],[116,122,76,0.01733092679805925],[116,122,77,0.015916416838869168],[116,122,78,0.014584535776554917],[116,122,79,0.013367235693366388],[116,123,64,0.003411036078918333],[116,123,65,0.004042726201827508],[116,123,66,0.004820276764600887],[116,123,67,0.005739435265736489],[116,123,68,0.006810100903304058],[116,123,69,0.00804601878620605],[116,123,70,0.009447808845315446],[116,123,71,0.011004540740710462],[116,123,72,0.012695660034958835],[116,123,73,0.014492854275466231],[116,123,74,0.016361854069306996],[116,123,75,0.017914124966160107],[116,123,76,0.016102043758089407],[116,123,77,0.014337574772559643],[116,123,78,0.012662311385157833],[116,123,79,0.011115932685893018],[116,124,64,0.0023220779284453762],[116,124,65,0.0030020732389356617],[116,124,66,0.0038487929622416164],[116,124,67,0.004858135248006003],[116,124,68,0.006044111098869436],[116,124,69,0.00742576276818033],[116,124,70,0.009006260241402697],[116,124,71,0.010774781054683569],[116,124,72,0.012708817462842262],[116,124,73,0.014776407933198257],[116,124,74,0.016938286997810127],[116,124,75,0.017059119741176285],[116,124,76,0.014928895000931228],[116,124,77,0.01284365999195484],[116,124,78,0.010852270541088796],[116,124,79,0.009001553998133769],[116,125,64,0.0015176120046812372],[116,125,65,0.002229547335238699],[116,125,66,0.0031272858772527514],[116,125,67,0.004206680494363245],[116,125,68,0.005485409915191088],[116,125,69,0.00698740567572216],[116,125,70,0.008718280202420955],[116,125,71,0.010667467699347948],[116,125,72,0.012810864691799201],[116,125,73,0.015113381812852286],[116,125,74,0.01753139994940045],[116,125,75,0.016224061470965487],[116,125,76,0.013812733480567503],[116,125,77,0.011442771779797464],[116,125,78,0.009169535357026656],[116,125,79,0.007046288101180638],[116,126,64,0.0010260188672683158],[116,126,65,0.0017537556022472333],[116,126,66,0.002684265729647359],[116,126,67,0.0038131511944916076],[116,126,68,0.0051612403982847326],[116,126,69,0.006756844234319241],[116,126,70,0.008607842730356405],[116,126,71,0.010704041168855075],[116,126,72,0.013020092967666859],[116,126,73,0.015518323226558401],[116,126,74,0.01802972000838014],[116,126,75,0.015403504099797072],[116,126,76,0.012753305210896215],[116,126,77,0.010140166145333876],[116,126,78,0.007625089035984923],[116,126,79,0.005266955716257754],[116,127,64,8.636684129101744E-4],[116,127,65,0.0015918445753655699],[116,127,66,0.0025374041949968447],[116,127,67,0.0036954872895428475],[116,127,68,0.005089502908898828],[116,127,69,0.006751556367282253],[116,127,70,0.008691566783924725],[116,127,71,0.010899792210811941],[116,127,72,0.013349982313666008],[116,127,73,0.016002423567122243],[116,127,74,0.017402286128243894],[116,127,75,0.014592192712768506],[116,127,76,0.011748896201893672],[116,127,77,0.008937984938057605],[116,127,78,0.0062251764399688225],[116,127,79,0.003674077224445787],[116,128,64,0.001033138022942337],[116,128,65,0.0017477490899064493],[116,128,66,0.0026918231832349033],[116,128,67,0.0038598253512276957],[116,128,68,0.0052771537770543485],[116,128,69,0.0069790837326437],[116,128,70,0.008977310708858134],[116,128,71,0.011262599702163041],[116,128,72,0.01380811586295627],[116,128,73,0.01657264175831207],[116,128,74,0.01673290766276885],[116,128,75,0.013785432740074655],[116,128,76,0.01079641082432422],[116,128,77,0.007835025028370995],[116,128,78,0.004970751341556523],[116,128,79,0.0022709912058680036],[116,129,64,0.0015215373243321003],[116,129,65,0.0022105434182690844],[116,129,66,0.0031384794111476407],[116,129,67,0.004298922227917617],[116,129,68,0.005718679357989285],[116,129,69,0.007435576597809529],[116,129,70,0.009462814851318469],[116,129,71,0.011791702024436568],[116,129,72,0.014395112992729813],[116,129,73,0.017230832261605548],[116,129,74,0.016018694817985166],[116,129,75,0.012979480118421637],[116,129,76,0.009891481721058288],[116,129,77,0.006826547814213853],[116,129,78,0.0038569707648878062],[116,129,79,0.0010530246654770778],[116,130,64,0.0022989399260787964],[116,130,65,0.002952895067319906],[116,130,66,0.0038526451940588224],[116,130,67,0.004990665896296596],[116,130,68,0.006394645926485696],[116,130,69,0.008104401472610333],[116,130,70,0.01013439274371428],[116,130,71,0.012476502281026295],[116,130,72,0.015103581540677993],[116,130,73,0.017972877843489565],[116,130,74,0.015260500893768271],[116,130,75,0.012171952400370993],[116,130,76,0.009028611371164702],[116,130,77,0.0059041292845774425],[116,130,78,0.0028727367786475565],[116,130,79,6.715443811902649E-6],[116,131,64,0.003316922401379799],[116,131,65,0.003929621543713579],[116,131,66,0.004792485792252238],[116,131,67,0.005896673869686206],[116,131,68,0.007270325763218758],[116,131,69,0.008954811843943597],[116,131,70,0.010965671182561306],[116,131,71,0.01329540763928092],[116,131,72,0.01591708933630262],[116,131,73,0.01743404403106225],[116,131,74,0.014463585095533315],[116,131,75,0.011362260807961714],[116,131,76,0.008201345402673298],[116,131,77,0.005055550844618821],[116,131,78,0.002000286061821514],[116,131,79,-8.909127455724767E-4],[116,132,64,0.004507173881044943],[116,132,65,0.005076305464578351],[116,132,66,0.005897680742224433],[116,132,67,0.006960918602777953],[116,132,68,0.008294330573314345],[116,132,69,0.009940604286957862],[116,132,70,0.011916291957145263],[116,132,71,0.014214605446485359],[116,132,72,0.016809047162865427],[116,132,73,0.016589621850269194],[116,132,74,0.013638413106865026],[116,132,75,0.010552202453525712],[116,132,76,0.007402626107943707],[116,132,77,0.004264887395443747],[116,132,78,0.0012149902593778295],[116,132,79,-0.001672854908860233],[116,133,64,0.005777196416767758],[116,133,65,0.006303588658909648],[116,133,66,0.007082309520294367],[116,133,67,0.008101190508958373],[116,133,68,0.009388592452951691],[116,133,69,0.010988513121797836],[116,133,70,0.012918600815412488],[116,133,71,0.015172936834619183],[116,133,72,0.017725686619361202],[116,133,73,0.01573616504197481],[116,133,74,0.012821525953262707],[116,133,75,0.00976866614582656],[116,133,76,0.006649195495110686],[116,133,77,0.003538407121700563],[116,133,78,5.124954550250364E-4],[116,133,79,-0.002354052372284616],[116,134,64,0.007025167707557775],[116,134,65,0.007510199897898135],[116,134,66,0.008245986894604424],[116,134,67,0.009218299392766685],[116,134,68,0.010455500347146011],[116,134,69,0.012003024815973607],[116,134,70,0.013879808634025584],[116,134,71,0.016081045181106996],[116,134,72,0.01761463276174866],[116,134,73,0.014953873390762902],[116,134,74,0.012087342170183476],[116,134,75,0.009079514213047507],[116,134,76,0.00600162663416026],[116,134,77,0.0029287229436417554],[116,134,78,-6.313608539436463E-5],[116,134,79,-0.0028994876831653043],[116,135,64,0.008166941004768988],[116,135,65,0.008612295552364379],[116,135,66,0.009305483635197214],[116,135,67,0.01022995736568057],[116,135,68,0.011414084884064531],[116,135,69,0.012904935854625665],[116,135,70,0.014722982848999635],[116,135,71,0.01686481770860043],[116,135,72,0.01691251511811837],[116,135,73,0.014309496929097764],[116,135,74,0.011498031304165556],[116,135,75,0.008541761336865739],[116,135,76,0.005511235960406377],[116,135,77,0.0024809546827322033],[116,135,78,-4.7342144187196227E-4],[116,135,79,-0.0032776851960028583],[116,136,64,0.009137946181324415],[116,136,65,0.009545662285810039],[116,136,66,0.010197225504020024],[116,136,67,0.011073563947045522],[116,136,68,0.012203091628113515],[116,136,69,0.013634734166655315],[116,136,70,0.01539076667610203],[116,136,71,0.017469474498084094],[116,136,72,0.016393057880393126],[116,136,73,0.013851429674775156],[116,136,74,0.011098179438978182],[116,136,75,0.00819581603558676],[116,136,76,0.005213919515008442],[116,136,77,0.002226193743436321],[116,136,78,-6.92315907349375E-4],[116,136,79,-0.0034678324091176422],[116,137,64,0.009892885764561345],[116,137,65,0.01026534369790658],[116,137,66,0.010876846566636855],[116,137,67,0.011705672311054965],[116,137,68,0.01278034751854639],[116,137,69,0.01415186145089981],[116,137,70,0.015844540621876815],[116,137,71,0.01785863906567968],[116,137,72,0.016090138349015702],[116,137,73,0.013610769969181537],[116,137,74,0.010915881310498634],[116,137,75,0.008066578228828935],[116,137,76,0.0051312278779244245],[116,137,77,0.0021825264576745486],[116,137,78,-7.052702241371387E-4],[116,137,79,-0.0034589460148048605],[116,138,64,0.010405837640594169],[116,138,65,0.01074567158445544],[116,138,66,0.011319141592382185],[116,138,67,0.012101845949905836],[116,138,68,0.013122505593056786],[116,138,69,0.014434337483909121],[116,138,70,0.016063925015379055],[116,138,71,0.01801372408054391],[116,138,72,0.016020425627670726],[116,138,73,0.013602132227083211],[116,138,74,0.010963624081398237],[116,138,75,0.00816437281837664],[116,138,76,0.005271325015966616],[116,138,77,0.0023559921172807935],[116,138,78,-5.083002354788478E-4],[116,138,79,-0.00324899615319827],[116,139,64,0.010670766392096487],[116,139,65,0.01098070380477474],[116,139,66,0.01151841955260432],[116,139,67,0.01225690777331968],[116,139,68,0.013225170017182347],[116,139,69,0.014478748415713583],[116,139,70,0.01604662553263702],[116,139,71,0.017933634137215236],[116,139,72,0.016183815125681383],[116,139,73,0.013824208389090696],[116,139,74,0.01123896121795319],[116,139,75,0.008485717913483065],[116,139,76,0.005629829895534371],[116,139,77,0.0027414748002642514],[116,139,78,-1.0706955662025159E-4],[116,139,79,-0.0028439891530149647],[116,140,64,0.010702445221900963],[116,140,65,0.010985070726316049],[116,140,66,0.011489260193979502],[116,140,67,0.012185583620385914],[116,140,68,0.013103403384774856],[116,140,69,0.01430060099394048],[116,140,70,0.01580862361087999],[116,140,71,0.017634787413935704],[116,140,72,0.016563575205546438],[116,140,73,0.014260077455143839],[116,140,74,0.011724974996199894],[116,140,75,0.009013926407821489],[116,140,76,0.00619053977869481],[116,140,77,0.003323528152087447],[116,140,78,4.8401416819068713E-4],[116,140,79,-0.0022570090254868847],[116,141,64,0.01053779043096659],[116,141,65,0.010795232220541491],[116,141,66,0.011267675656088246],[116,141,67,0.011923542139626202],[116,141,68,0.012792618222482722],[116,141,69,0.013935044612699135],[116,141,70,0.015384713595234694],[116,141,71,0.017151457985560364],[116,141,72,0.017126204304164887],[116,141,73,0.01487726154991763],[116,141,74,0.012390526237417682],[116,141,75,0.00971953968476321],[116,141,76,0.006926034183797214],[116,141,77,0.004077132334962885],[116,141,78,0.0012426888936847564],[116,141,79,-0.0015072179584871767],[116,142,64,0.010237610461024544],[116,142,65,0.010471147213675869],[116,142,66,0.010912679119539371],[116,142,67,0.011528832997330863],[116,142,68,0.01234985462219778],[116,142,69,0.013437963060878407],[116,142,70,0.014829388426988289],[116,142,71,0.016536440515759004],[116,142,72,0.01782099690842285],[116,142,73,0.015627527028864094],[116,142,74,0.01319028993346389],[116,142,75,0.010560592287641378],[116,142,76,0.007798158547710012],[116,142,77,0.00496838240635159],[116,142,78,0.0021397131942401536],[116,142,79,-6.188160360265878E-4],[116,143,64,0.009873777670406005],[116,143,65,0.010083766154716631],[116,143,66,0.010494132093358456],[116,143,67,0.011070126322519745],[116,143,68,0.011842457458305072],[116,143,69,0.012875146411469121],[116,143,70,0.014206572758711138],[116,143,71,0.015851418860154093],[116,143,72,0.01780388069083946],[116,143,73,0.016455001972590682],[116,143,74,0.014071989917698395],[116,143,75,0.011488880777986262],[116,143,76,0.008763247855287188],[116,143,77,0.005958593090849866],[116,143,78,0.003141786415085052],[116,143,79,3.8063828415956896E-4],[116,144,64,0.009476250575206843],[116,144,65,0.009663364537402115],[116,144,66,0.010042601571188942],[116,144,67,0.010578338093601408],[116,144,68,0.011301744468459796],[116,144,69,0.012278301827050316],[116,144,70,0.013548293760725827],[116,144,71,0.015128622823773964],[116,144,72,0.017015910041528748],[116,144,73,0.017327577864926908],[116,144,74,0.015003869977767285],[116,144,75,0.012473227760464637],[116,144,76,0.009790938771838323],[116,144,77,0.007018452491337311],[116,144,78,0.004220881409833177],[116,144,79,0.0014646260498749988],[116,145,64,0.009061471742687333],[116,145,65,0.009226996891729958],[116,145,66,0.009575786279210149],[116,145,67,0.010071918038232805],[116,145,68,0.010747023147692424],[116,145,69,0.01166764925989399],[116,145,70,0.012875690287311002],[116,145,71,0.014390073390176028],[116,145,72,0.01620973444359385],[116,145,73,0.018221753540389782],[116,145,74,0.01596186664435153],[116,145,75,0.013489167537919218],[116,145,76,0.01085654199971767],[116,145,77,0.008123239996420553],[116,145,78,0.005352447302657854],[116,145,79,0.0026089710225405674],[116,146,64,0.008644712480470393],[116,146,65,0.008790467821961518],[116,146,66,0.009110070060919934],[116,146,67,0.009567929612778105],[116,146,68,0.010196134079759172],[116,146,69,0.011061860928554927],[116,146,70,0.012208278655029825],[116,146,71,0.013656103743000062],[116,146,72,0.01540643983002111],[116,146,73,0.017443551925621675],[116,146,74,0.01692373763738248],[116,146,75,0.014514084362283651],[116,146,76,0.01193724382927675],[116,146,77,0.009250136519741704],[116,146,78,0.006513864414728073],[116,146,79,0.0037914648139596983],[116,147,64,0.008239779098563231],[116,147,65,0.008368030527149541],[116,147,66,0.008660213433316938],[116,147,67,0.009081733975031226],[116,147,68,0.009665127660442346],[116,147,69,0.010477733679729243],[116,147,70,0.011563625916658613],[116,147,71,0.012945040860858978],[116,147,72,0.014625069130556449],[116,147,73,0.016590291068922965],[116,147,74,0.01786929398788934],[116,147,75,0.015527391419342134],[116,147,76,0.013012218731923184],[116,147,77,0.010378257367046593],[116,147,78,0.007684384363487847],[116,147,79,0.004991701830364731],[116,148,64,0.007858780632116716],[116,148,65,0.007972148827196478],[116,148,66,0.008239109935554935],[116,148,67,0.008626739956741297],[116,148,68,0.00916800782131546],[116,148,69,0.009929928470931474],[116,148,70,0.010957088938331855],[116,148,71,0.01227294972623017],[116,148,72,0.013882378680598953],[116,148,73,0.01577413835022968],[116,148,74,0.017923320793373693],[116,148,75,0.016510683423172395],[116,148,76,0.014062730804227454],[116,148,77,0.011488691495942066],[116,148,78,0.008845096183431428],[116,148,79,0.0061909616831603495],[116,149,64,0.0075119581861844715],[116,149,65,0.007613322866849224],[116,149,66,0.007857607451657743],[116,149,67,0.008214220226642721],[116,149,68,0.008716542953253205],[116,149,69,0.00943077717902415],[116,149,70,0.01040161948569518],[116,149,71,0.011653440347897557],[116,149,72,0.013192652050784579],[116,149,73,0.015010039794780503],[116,149,74,0.017083050462261173],[116,149,75,0.01744786274870173],[116,149,76,0.015072224055455006],[116,149,77,0.012564547238957112],[116,149,78,0.009978918631725665],[116,149,79,0.00737213933681688],[116,150,64,0.007207576065067231],[116,150,65,0.007299978669989505],[116,150,66,0.007524394687279018],[116,150,67,0.007853193831440303],[116,150,68,0.008320144224007342],[116,150,69,0.008990156932956985],[116,150,70,0.009907635516566055],[116,150,71,0.011097537786852433],[116,150,72,0.012567571471217004],[116,150,73,0.014310362933568722],[116,150,74,0.01630559396003122],[116,150,75,0.018325239039280274],[116,150,76,0.016026401536445054],[116,150,77,0.01359100456175472],[116,150,78,0.011070618837457922],[116,150,79,0.008519723252429112],[116,151,64,0.006951874854092482],[116,151,65,0.007038421720580405],[116,151,66,0.007245952982992155],[116,151,67,0.007550375303104048],[116,151,68,0.00798581148340166],[116,151,69,0.008615432166565908],[116,151,70,0.009482958873369413],[116,151,71,0.01061361536975161],[116,151,72,0.012016147017239265],[116,151,73,0.013684823101804895],[116,151,74,0.015601417685753925],[116,151,75,0.017737164627113732],[116,151,76,0.016913293312657153],[116,151,77,0.014555373929967615],[116,151,78,0.012106857450253387],[116,151,79,0.009619821776285049],[116,152,64,0.0067490866308272095],[116,152,65,0.006832854754628096],[116,152,66,0.0070265736531573905],[116,152,67,0.007310190525850935],[116,152,68,0.007718146953092431],[116,152,69,0.008311464588922145],[116,152,70,0.009132819568425566],[116,152,71,0.01020739127204498],[116,152,72,0.011544703720044857],[116,152,73,0.013140459782585472],[116,152,74,0.01497836429122819],[116,152,75,0.017031932212714165],[116,152,76,0.017723313288471133],[116,152,77,0.015447161860175904],[116,152,78,0.013076260442551078],[116,152,79,0.01066023801644944],[116,153,64,0.0066015124958015],[116,153,65,0.0066854599595668925],[116,153,66,0.00686844105009611],[116,153,67,0.007134859565398164],[116,153,68,0.007519436905468377],[116,153,69,0.008080691275589772],[116,153,70,0.008859926859108231],[116,153,71,0.00988198865481333],[116,153,72,0.011156926765399254],[116,153,73,0.012681663129627659],[116,153,74,0.014441657319394886],[116,153,75,0.016412568073941494],[116,153,76,0.018449304893440505],[116,153,77,0.01625814323300345],[116,153,78,0.0139695177199649],[116,153,79,0.011630593446891168],[116,154,64,0.006509662629809845],[116,154,65,0.0065965457935579005],[116,154,66,0.006771781568092457],[116,154,67,0.007024546676455628],[116,154,68,0.007389801548121547],[116,154,69,0.007923271094245057],[116,154,70,0.00866460731796386],[116,154,71,0.009638059545207795],[116,154,72,0.010853964947286196],[116,154,73,0.012310250804247637],[116,154,74,0.013993945652287964],[116,154,75,0.015882696486697795],[116,154,76,0.01794628923260451],[116,154,77,0.016982440449160453],[116,154,78,0.014779508695887369],[116,154,79,0.012522500478102643],[116,155,64,0.006472459105748918],[116,155,65,0.006564758657304647],[116,155,66,0.006735078820643198],[116,155,67,0.006977577721992589],[116,155,68,0.007327413346422161],[116,155,69,0.00783729969245314],[116,155,70,0.008545010115115034],[116,155,71,0.009473972660181507],[116,155,72,0.01063459255043944],[116,155,73,0.01202559526618076],[116,155,74,0.013635387864934416],[116,155,75,0.01544343619225838],[116,155,76,0.017421655653855887],[116,155,77,0.017616609512497935],[116,155,78,0.01550145498983162],[116,155,79,0.013329784235509632],[116,156,64,0.006487501707758201],[116,156,65,0.006587359675150538],[116,156,66,0.00675535524741102],[116,156,67,0.006990725259594684],[116,156,68,0.007328784037111896],[116,156,69,0.007819093294030093],[116,156,70,0.00849737974671061],[116,156,71,0.009386065387012107],[116,156,72,0.010495429846535528],[116,156,73,0.011824801665442187],[116,156,74,0.01336377658595406],[116,156,75,0.015093460977648358],[116,156,76,0.016987738499426922],[116,156,77,0.018159733127769338],[116,156,78,0.016133100413966584],[116,156,79,0.014048753792278872],[116,157,64,0.006551397039109724],[116,157,65,0.006660566870393316],[116,157,66,0.00682852043446935],[116,157,67,0.0070595615761906445],[116,157,68,0.00738912061046472],[116,157,69,0.007863541573317813],[116,157,70,0.008516396463815405],[116,157,71,0.00936896015191368],[116,157,72,0.010431222403292407],[116,157,73,0.011702936493187804],[116,157,74,0.013174702972460177],[116,157,75,0.01482908711810578],[116,157,76,0.016641768579325297],[116,157,77,0.01858272171985208],[116,157,78,0.016674918418871323],[116,157,79,0.014678523111411977],[116,158,64,0.00666015123282115],[116,158,65,0.006779963051910761],[116,158,66,0.006949786462642009],[116,158,67,0.007178879982563917],[116,158,68,0.007502750567447332],[116,158,69,0.007964529903868074],[116,158,70,0.008595584680959513],[116,158,71,0.009415945429843104],[116,158,72,0.01043517942386215],[116,158,73,0.011653307163484256],[116,158,74,0.013061761416249856],[116,158,75,0.01464438773496082],[116,158,76,0.016378485339262693],[116,158,77,0.01823588721774707],[116,158,78,0.017130347177700067],[116,158,79,0.015221381963262722],[116,159,64,0.006809626615304572],[116,159,65,0.006940969765304595],[116,159,66,0.007114150634009398],[116,159,67,0.007343184713346863],[116,159,68,0.007663616791423516],[116,159,69,0.008115431309457048],[116,159,70,0.008727789672588379],[116,159,71,0.00951942167442385],[116,159,72,0.010499371355738744],[116,159,73,0.011667792715058935],[116,159,74,0.01301679461023519],[116,159,75,0.014531334128694775],[116,159,76,0.016190157651037596],[116,159,77,0.01796678878900823],[116,159,78,0.01750605249773385],[116,159,79,0.015683217098858462],[116,160,64,0.006996062713453745],[116,160,65,0.007139387701781546],[116,160,66,0.007316945965922595],[116,160,67,0.007547249816578685],[116,160,68,0.007865842411245669],[116,160,69,0.008309668480995399],[116,160,70,0.00890572289883619],[116,160,71,0.009671412476711412],[116,160,72,0.010615187033901052],[116,160,73,0.011737225842455378],[116,160,74,0.013030179118583625],[116,160,75,0.014479964155128536],[116,160,76,0.016066615624203646],[116,160,77,0.01776518952181127],[116,160,78,0.01781221875965557],[116,160,79,0.016073983976615008],[116,161,64,0.007216662039338103],[116,161,65,0.007372004001826266],[116,161,66,0.007554459885067318],[116,161,67,0.0077867474593244545],[116,161,68,0.008104366073999893],[116,161,69,0.008541346262704953],[116,161,70,0.00912257633933758],[116,161,71,0.009864141295269399],[116,161,72,0.010773850652045702],[116,161,73,0.011851826489548594],[116,161,74,0.013091151611102568],[116,161,75,0.014478577722633208],[116,161,76,0.015995293425738674],[116,161,77,0.017617751755531673],[116,161,78,0.018062868097785355],[116,161,79,0.016408229360167618],[116,162,64,0.007470241134034183],[116,162,65,0.0076372669383043355],[116,162,66,0.007824621601177766],[116,162,67,0.008058946122234446],[116,162,68,0.00837564809115606],[116,162,69,0.008805955054845462],[116,162,70,0.009372706255150855],[116,162,71,0.010090674137678642],[116,162,72,0.010966998888514712],[116,162,73,0.012001687265072246],[116,162,74,0.013188175942028493],[116,162,75,0.01451395949998123],[116,162,76,0.015961283097665077],[116,162,77,0.017507899789510617],[116,162,78,0.018276208048973366],[116,162,79,0.016705665128110343],[116,163,64,0.007757947402990171],[116,163,65,0.007936028514872153],[116,163,66,0.008127758690827016],[116,163,67,0.008363479206183445],[116,163,68,0.00867844797133748],[116,163,69,0.00910114562821538],[116,163,70,0.009652386844215828],[116,163,71,0.010345628615097973],[116,163,72,0.01118731854983074],[116,163,73,0.012177310969628503],[116,163,74,0.013309351275529041],[116,163,75,0.014571628937939486],[116,163,76,0.015947399366634883],[116,163,77,0.017415674831987457],[116,163,78,0.01847500791378178],[116,163,79,0.016991793662350513],[116,164,64,0.008080586911321862],[116,164,65,0.008268555986191051],[116,164,66,0.008463306715636183],[116,164,67,0.008698759754005142],[116,164,68,0.009009950684182717],[116,164,69,0.009422579577218286],[116,164,70,0.009955403462297722],[116,164,71,0.010620533846973028],[116,164,72,0.011423701688208047],[116,164,73,0.012364593235105706],[116,164,74,0.013437257415240964],[116,164,75,0.014630585328997995],[116,164,76,0.015928862314223625],[116,164,77,0.017312392948149718],[116,164,78,0.018691929111428796],[116,164,79,0.01730319241749946],[116,165,64,0.008417395252595581],[116,165,65,0.008611164967750712],[116,165,66,0.008804509974247482],[116,165,67,0.00903482174479911],[116,165,68,0.009336828339571071],[116,165,69,0.00973340582272264],[116,165,70,0.010241234825667522],[116,165,71,0.010871085286385767],[116,165,72,0.011627996409347276],[116,165,73,0.012511530383592283],[116,165,74,0.013516100745959384],[116,165,75,0.014631376162708154],[116,165,76,0.01584276029390797],[116,165,77,0.017131948302283588],[116,165,78,0.018477560472971773],[116,165,79,0.017711360895726908],[116,166,64,0.008743217877910419],[116,166,65,0.008935202455015613],[116,166,66,0.00911918225362838],[116,166,67,0.009335856871430499],[116,166,68,0.009619556555910394],[116,166,69,0.009990340957002882],[116,166,70,0.010462858523494947],[116,166,71,0.011046611417037838],[116,166,72,0.011746045035417015],[116,166,73,0.012560714323209652],[116,166,74,0.013485527981013911],[116,166,75,0.014511071564225386],[116,166,76,0.01562401034638666],[116,166,77,0.016807572711814534],[116,166,78,0.01804211473880722],[116,166,79,0.018284946504901804],[116,167,64,0.009040094825207593],[116,167,65,0.009219923290356228],[116,167,66,0.009383796444331387],[116,167,67,0.009575494839644203],[116,167,68,0.009828861967928428],[116,167,69,0.010161212494413504],[116,167,70,0.010585275973998321],[116,167,71,0.011109430647189875],[116,167,72,0.011737694412117602],[116,167,73,0.012469796017365564],[116,167,74,0.0133013278287908],[116,167,75,0.014223981396075534],[116,167,76,0.015225866920948017],[116,167,77,0.016291917610212446],[116,167,78,0.017404379784294665],[116,167,79,0.018543389507323205],[116,168,64,0.009295544453992737],[116,168,65,0.009450747634772326],[116,168,66,0.009581711634032075],[116,168,67,0.009735001916780488],[116,168,68,0.009943893502179332],[116,168,69,0.010223099421692436],[116,168,70,0.010583615146517433],[116,168,71,0.01103290650958008],[116,168,72,0.011574792235626437],[116,168,73,0.01220941074403731],[116,168,74,0.012933272843381966],[116,168,75,0.013739401800967492],[116,168,76,0.014617562137783062],[116,168,77,0.015554578370750435],[116,168,78,0.016534744801469877],[116,168,79,0.017540327335159644],[116,169,64,0.009500666515463229],[116,169,65,0.009617329850649463],[116,169,66,0.009701205159268969],[116,169,67,0.0098012787169806],[116,169,68,0.009950188030826907],[116,169,69,0.010160263897087032],[116,169,70,0.010441023463260693],[116,169,71,0.010799294818271283],[116,169,72,0.01123898020727946],[116,169,73,0.011760908362533655],[116,169,74,0.012362777862850697],[116,169,75,0.013039193288800164],[116,169,76,0.013781795797298201],[116,169,77,0.014579489599624799],[116,169,78,0.015418765692330066],[116,169,79,0.016284124062644578],[116,170,64,0.009648134704320294],[116,170,65,0.009711516116177791],[116,170,66,0.00973339363981039],[116,170,67,0.009764747799405286],[116,170,68,0.009837527373013877],[116,170,69,0.009961977026927877],[116,170,70,0.010146459094437071],[116,170,71,0.010397495407287172],[116,170,72,0.010719400019706176],[116,170,73,0.011114006820907034],[116,170,74,0.011580494271968432],[116,170,75,0.012115309346091546],[116,170,76,0.01271219259567845],[116,170,77,0.013362306117072701],[116,170,78,0.014054466035696062],[116,170,79,0.014775480992364521],[116,171,64,0.009730077300269004],[116,171,65,0.00972518941805624],[116,171,66,0.00967004168768519],[116,171,67,0.009617129823115345],[116,171,68,0.009597685445660285],[116,171,69,0.00962023758741106],[116,171,70,0.009692379589056556],[116,171,71,0.009820707477036178],[116,171,72,0.010010311293613124],[116,171,73,0.01026436812588203],[116,171,74,0.01058383942314529],[116,171,75,0.010967275022035426],[116,171,76,0.011410726129211825],[116,171,77,0.011907769344102495],[116,171,78,0.012449643640642676],[116,171,79,0.013025502069059674],[116,172,64,0.009735844369892593],[116,172,65,0.009648000431304994],[116,172,66,0.009501256845192495],[116,172,67,0.009349106865054186],[116,172,68,0.009222064229290401],[116,172,69,0.009127382424601578],[116,172,70,0.009072326650974053],[116,172,71,0.009063987444356181],[116,172,72,0.00910862045720834],[116,172,73,0.009211095873232674],[116,172,74,0.009374460428778328],[116,172,75,0.009599614828342025],[116,172,76,0.009885109156141197],[116,172,77,0.010227058701709169],[116,172,78,0.010619182436612041],[116,172,79,0.011052966203627366],[116,173,64,0.009649659858932473],[116,173,65,0.009464982653679378],[116,173,66,0.00921306916481461],[116,173,67,0.008947871366579494],[116,173,68,0.008699217074378393],[116,173,69,0.008473587127039404],[116,173,70,0.008278405733233308],[116,173,71,0.008121708058222479],[116,173,72,0.008011319429742914],[116,173,73,0.007954153309738034],[116,173,74,0.007955631415455779],[116,173,75,0.008019229171399852],[116,173,76,0.008146149470341707],[116,173,77,0.008335127518946843],[116,173,78,0.008582369343443598],[116,173,79,0.008881626335228475],[116,174,64,0.009448156761571676],[116,174,65,0.009154050017875531],[116,174,66,0.008784893699450888],[116,174,67,0.008394559029761658],[116,174,68,0.008012257730265645],[116,174,69,0.007644255423341939],[116,174,70,0.007298658983954069],[116,174,71,0.006984917406247051],[116,174,72,0.006712832837300847],[116,174,73,0.006491700768641453],[116,174,74,0.006329583205832797],[116,174,75,0.00623271841553914],[116,174,76,0.006205070626344805],[116,174,77,0.0062480228363693165],[116,174,78,0.006360215659369557],[116,174,79,0.0065375349238092646],[116,175,64,0.009111157931591618],[116,175,65,0.00869656342573058],[116,175,66,0.008199803948126696],[116,175,67,0.0076741364977142785],[116,175,68,0.007148255908517609],[116,175,69,0.006628804151422428],[116,175,70,0.006125112485265681],[116,175,71,0.005648516244285813],[116,175,72,0.00521119187623522],[116,175,73,0.004825134781681986],[116,175,74,0.004501282233593091],[116,175,75,0.004248785414556118],[116,175,76,0.004074434364188333],[116,175,77,0.003982239383570095],[116,175,78,0.003973172199141657],[116,175,79,0.0040450699478374475],[116,176,64,0.008664404155402311],[116,176,65,0.008119529812556212],[116,176,66,0.007485973955451765],[116,176,67,0.006815812661603631],[116,176,68,0.006137303147933206],[116,176,69,0.00545803518250604],[116,176,70,0.0047890809145194795],[116,176,71,0.004144106894860578],[116,176,72,0.0035380338014631527],[116,176,73,0.0029858495697155955],[116,176,74,0.0025015806782851023],[116,176,75,0.002097426076826152],[116,176,76,0.0017830579741768967],[116,176,77,0.001565093436142889],[116,176,78,0.0014467404732218998],[116,176,79,0.0014276220332565702],[116,177,64,0.008146514692547735],[116,177,65,0.007463104425773292],[116,177,66,0.006684991270014802],[116,177,67,0.005862484272832163],[116,177,68,0.005023456365558344],[116,177,69,0.004176975535118873],[116,177,70,0.0033363262030933314],[116,177,71,0.0025179052505758656],[116,177,72,0.0017397039971328086],[116,177,73,0.001019956798617486],[116,177,74,3.7596148719646493E-4],[116,177,75,-1.7692340986151932E-4],[116,177,76,-6.261000277276567E-4],[116,177,77,-9.623667469792701E-4],[116,177,78,-0.001180363944845736],[116,177,79,-0.0012788261482935663],[116,178,64,0.007596105530908516],[116,178,65,0.006767813001717371],[116,178,66,0.005839251800254277],[116,178,67,0.0048583873342429255],[116,178,68,0.0038527424265915535],[116,178,69,0.0028333423457485253],[116,178,70,0.0018160984099469374],[116,178,71,8.204787281489083E-4],[116,178,72,-1.3218497830574228E-4],[116,178,73,-0.0010202104468103844],[116,178,74,-0.0018228921498010123],[116,178,75,-0.002521637398567754],[116,178,76,-0.003100906212428582],[116,178,77,-0.0035489502097203083],[116,178,78,-0.0038583460959125647],[116,178,79,-0.004026319640230244],[116,179,64,0.007051209219448523],[116,179,65,0.006073886129837959],[116,179,66,0.00499119114059398],[116,179,67,0.0038482052877572273],[116,179,68,0.002672121586050352],[116,179,69,0.0014763397118920006],[116,179,70,2.797448095083805E-4],[116,179,71,-8.948520460171502E-4],[116,179,72,-0.0020225765535640612],[116,179,73,-0.003078160339292573],[116,179,74,-0.004037410425439301],[116,179,75,-0.004878473214105419],[116,179,76,-0.005582887524590196],[116,179,77,-0.006136421565548367],[116,179,78,-0.006529689066691275],[116,179,79,-0.006758540135680814],[116,180,64,0.006548684106721131],[116,180,65,0.005420584162199985],[116,180,66,0.004182509643601583],[116,180,67,0.002876175891029106],[116,180,68,0.0015284565064122254],[116,180,69,1.5547048007342042E-4],[116,180,70,-0.0012206538324720303],[116,180,71,-0.002573568999945958],[116,180,72,-0.003874732164254172],[116,180,73,-0.005095222037814211],[116,180,74,-0.006207342698754298],[116,180,75,-0.007186007987780154],[116,180,76,-0.008009900672077293],[116,180,77,-0.008662400907480732],[116,180,78,-0.009132278897148705],[116,180,79,-0.00941414700970294],[116,181,64,0.00612361256058877],[116,181,65,0.004845512220817117],[116,181,66,0.003453390777441553],[116,181,67,0.001985196315467335],[116,181,68,4.67486384001445E-4],[116,181,69,-0.001080637476920003],[116,181,70,-0.002633620225485312],[116,181,71,-0.004161470219068783],[116,181,72,-0.005631932461912176],[116,181,73,-0.007012442724105999],[116,181,74,-0.008271855600129177],[116,181,75,-0.009381939949921755],[116,181,76,-0.010318635548146271],[116,181,77,-0.0110630651548249],[116,181,78,-0.011602296609594316],[116,181,79,-0.0119298499388069],[116,182,64,0.005808687721028712],[116,182,65,0.004383924829729493],[116,182,66,0.002841712281154632],[116,182,67,0.0012159259705417187],[116,182,68,-4.6719431083870047E-4],[116,182,69,-0.0021853909767231817],[116,182,70,-0.0039095912199011654],[116,182,71,-0.005606141801611214],[116,182,72,-0.007239118065011374],[116,182,73,-0.008772402220761186],[116,182,74,-0.010171523635184983],[116,182,75,-0.011405254244838896],[116,182,76,-0.012446952623250084],[116,182,77,-0.013275650632892726],[116,182,78,-0.013876877004627012],[116,182,79,-0.014243212594103664],[116,183,64,0.005633588315284021],[116,183,65,0.004068019674272828],[116,183,66,0.002382249605009841],[116,183,67,6.058865337192642E-4],[116,183,68,-0.0012351530000884263],[116,183,69,-0.0031153777454568793],[116,183,70,-0.005002202650692095],[116,183,71,-0.006858388399338939],[116,183,72,-0.008644470220215219],[116,183,73,-0.010320945475734665],[116,183,74,-0.01185021247058207],[116,183,75,-0.01319825333266193],[116,183,76,-0.014336054237242763],[116,183,77,-0.015240756670005674],[116,183,78,-0.015896533851655],[116,183,79,-0.016295186871971446],[116,184,64,0.005624341043170691],[116,184,65,0.0039262199668753835],[116,184,66,0.0021058710995439955],[116,184,67,1.8855864186492606E-4],[116,184,68,-0.0018001326139631655],[116,184,69,-0.0038314996656922517],[116,184,70,-0.005869548856530524],[116,184,71,-0.007873622890943942],[116,184,72,-0.009800931751393523],[116,184,73,-0.011608833201205069],[116,184,74,-0.013256855081180914],[116,184,75,-0.014708452031498065],[116,184,76,-0.015932489703978057],[116,184,77,-0.016904449969508985],[116,184,78,-0.017607351067506535],[116,184,79,-0.01803237708481643],[116,185,64,0.005802670020241724],[116,185,65,0.003982444877155158],[116,185,66,0.002038724395134728],[116,185,67,-7.5253212881726735E-6],[116,185,68,-0.0021310622193892593],[116,185,69,-0.004300093600416889],[116,185,70,-0.006475417385502418],[116,185,71,-0.008613215644365926],[116,185,72,-0.010667668676713577],[116,185,73,-0.012593310950185106],[116,185,74,-0.014347120925059952],[116,185,75,-0.015890337231283],[116,185,76,-0.01718999410870149],[116,185,77,-0.018220169473186606],[116,185,78,-0.018962939425709206],[116,185,79,-0.01940903347435378],[116,186,64,0.006185332747899834],[116,186,65,0.004255367464246456],[116,186,66,0.002201413394226205],[116,186,67,4.0307074238646255E-5],[116,186,68,-0.0022030652409823176],[116,186,69,-0.004494040353016829],[116,186,70,-0.006790499408155873],[116,186,71,-0.009045803827897813],[116,186,72,-0.011211472870303003],[116,186,73,-0.013239596901757278],[116,186,74,-0.015084978290556567],[116,186,75,-0.01670699227767581],[116,186,76,-0.018071160634293527],[116,186,77,-0.019150431376528887],[116,186,78,-0.01992615827150078],[116,186,79,-0.020388774331081643],[116,187,64,0.006783442062666897],[116,187,65,0.004757659531398699],[116,187,66,0.002608165280881566],[116,187,67,3.479515157276918E-4],[116,187,68,-0.0019984658681796125],[116,187,69,-0.004393862333317212],[116,187,70,-0.006793576363395452],[116,187,71,-0.009148561227846012],[116,187,72,-0.011408106134428227],[116,187,73,-0.013522288605305114],[116,187,74,-0.01544414992775616],[116,187,75,-0.017131585980342482],[116,187,76,-0.01854894619543347],[116,187,77,-0.0196683338859275],[116,187,78,-0.020470601633800947],[116,187,79,-0.02094603590659988],[116,188,64,0.007601773501822066],[116,188,65,0.005495222807136072],[116,188,66,0.0032659869373562957],[116,188,67,9.236044571015322E-4],[116,188,68,-0.0015077942524752625],[116,188,69,-0.0039888105056890295],[116,188,70,-0.0064726833626806484],[116,188,71,-0.008908429022670878],[116,188,72,-0.011243586030745439],[116,188,73,-0.013426688905555354],[116,188,74,-0.0154094620357091],[116,188,75,-0.017148726145083424],[116,188,76,-0.018608010090270664],[116,188,77,-0.01975886122328965],[116,188,78,-0.020581848025537107],[116,188,79,-0.021067249190541096],[116,189,64,0.008638057509733815],[116,189,65,0.006466405843886527],[116,189,66,0.0041738101451234905],[116,189,67,0.001766834303106875],[116,189,68,-7.307911053309431E-4],[116,189,69,-0.0032779411968833563],[116,189,70,-0.005826249872864837],[116,189,71,-0.00832330794972868],[116,189,72,-0.010715413794811257],[116,189,73,-0.012950051233553882],[116,189,74,-0.0149780866260909],[116,189,75,-0.01675567746354387],[116,189,76,-0.018245885297366336],[116,189,77,-0.019419986285028244],[116,189,78,-0.020258473108241033],[116,189,79,-0.02075174249160728],[116,190,64,0.009882255898661771],[116,190,65,0.00766120601421336],[116,190,66,0.005321624938461796],[116,190,67,0.0028676456382450708],[116,190,68,3.2258768990767173E-4],[116,190,69,-0.0022711833384324374],[116,190,70,-0.004864218187691042],[116,190,71,-0.00740321228089693],[116,190,72,-0.009833744626679297],[116,190,73,-0.012102744403937458],[116,190,74,-0.01416067722419144],[116,190,75,-0.015963443517962847],[116,190,76,-0.017473981951872834],[116,190,77,-0.01866357125038539],[116,190,78,-0.019512824266322823],[116,190,79,-0.020012368613274583],[116,191,64,0.011315821969804603],[116,191,65,0.009060455976847915],[116,191,66,0.006689600472586423],[116,191,67,0.004205535867292064],[116,191,68,0.0016311658401209801],[116,191,69,-9.903967109180813E-4],[116,191,70,-0.0036091401822319026],[116,191,71,-0.006171385997320057],[116,191,72,-0.00862250061194135],[116,191,73,-0.01090933700599209],[116,191,74,-0.012982397799078772],[116,191,75,-0.014797712571720615],[116,191,76,-0.01631842242942273],[116,191,77,-0.017516065308982417],[116,191,78,-0.01837155599142699],[116,191,79,-0.018875855249824724],[116,192,64,0.012910943695148171],[116,192,65,0.010634993979867698],[116,192,66,0.00824719276560637],[116,192,67,0.005748543635045325],[116,192,68,0.003161540172289323],[116,192,69,5.29578255044954E-4],[116,192,70,-0.002097252823261313],[116,192,71,-0.004665381521158285],[116,192,72,-0.007120426481969969],[116,192,73,-0.00940960141507072],[116,192,74,-0.011483844736694794],[116,192,75,-0.013299666719625068],[116,192,76,-0.014820707349428365],[116,192,77,-0.016018998539931717],[116,192,78,-0.016875924818502284],[116,192,79,-0.01738287704836836],[116,193,64,0.014629769358504565],[116,193,65,0.01234481736687966],[116,193,66,0.009952238674609412],[116,193,67,0.007452288397847748],[116,193,68,0.0048670723351586015],[116,193,69,0.0022398785838347135],[116,193,70,-3.795328815310642E-4],[116,193,71,-0.002938101323485848],[116,193,72,-0.005382088369399412],[116,193,73,-0.0076594373821046325],[116,193,74,-0.009721861582764927],[116,193,75,-0.011526653865336248],[116,193,76,-0.013038211682006893],[116,193,77,-0.014229270825524354],[116,193,78,-0.015081842383588118],[116,193,79,-0.015587847588543084],[116,194,64,0.016423615055241092],[116,194,65,0.014138218654190425],[116,194,66,0.011750035471159612],[116,194,67,0.009259000528722132],[116,194,68,0.0066868780918485325],[116,194,69,0.004076584251495342],[116,194,70,0.001477268740995197],[116,194,71,-0.0010588026822362256],[116,194,72,-0.0034788156549966152],[116,194,73,-0.005731715082238601],[116,194,74,-0.007770246186916763],[116,194,75,-0.009552721877386814],[116,194,76,-0.011044510005027234],[116,194,77,-0.012219234522083953],[116,194,78,-0.01305968498968241],[116,194,79,-0.013558429324640011],[116,195,64,0.01823268540167284],[116,195,65,0.015951509305897574],[116,195,66,0.013573080160740738],[116,195,67,0.011097283557666936],[116,195,68,0.008545621705727091],[116,195,69,0.005960560093332296],[116,195,70,0.0033905363995026644],[116,195,71,8.86902186114027E-4],[116,195,72,-0.001498585966116912],[116,195,73,-0.0037160199044849705],[116,195,74,-0.005719330865949011],[116,195,75,-0.007468011298419736],[116,195,76,-0.008928561308720875],[116,195,77,-0.010075653932536822],[116,195,78,-0.01089301385238685],[116,195,79,-0.01137400461905977],[116,196,64,0.017232697944796763],[116,196,65,0.017739157723404377],[116,196,66,0.015374625073579786],[116,196,67,0.012919016836687197],[116,196,68,0.01039369498595106],[116,196,69,0.007840702377040902],[116,196,70,0.005307756788271033],[116,196,71,0.0028452561985741237],[116,196,72,5.038315466338163E-4],[116,196,73,-0.0016678490545407871],[116,196,74,-0.003625017791299032],[116,196,75,-0.005328479859678363],[116,196,76,-0.0067460153744481315],[116,196,77,-0.007853504858419413],[116,196,78,-0.008635773115309242],[116,196,79,-0.00908714670973087],[116,197,64,0.015554043884319864],[116,197,65,0.01791089659501228],[116,197,66,0.017147827539970507],[116,197,67,0.014720096299623793],[116,197,68,0.0122295004606202],[116,197,69,0.009717626129568564],[116,197,70,0.007231388483717044],[116,197,71,0.004820112898108462],[116,197,72,0.0025331576984438187],[116,197,73,4.177839994216093E-4],[116,197,74,-0.0014827207419226545],[116,197,75,-0.003130659224264398],[116,197,76,-0.004495275022333809],[116,197,77,-0.0055538321104731374],[116,197,78,-0.006292418182347906],[116,197,79,-0.0067064671701656245],[116,198,64,0.013934323711775965],[116,198,65,0.0162655555301184],[116,198,66,0.01867365074136568],[116,198,67,0.016493048882423655],[116,198,68,0.01404760979981879],[116,198,69,0.011587648588322376],[116,198,70,0.00915913153131265],[116,198,71,0.006810125564221103],[116,198,72,0.004588503945644667],[116,198,73,0.002539893722822957],[116,198,74,7.05871366639486E-4],[116,198,75,-8.775874344344207E-4],[116,198,76,-0.002181398225936357],[116,198,77,-0.003184393288056408],[116,198,78,-0.0038740773895910483],[116,198,79,-0.004247109398430907],[116,199,64,0.01239199113689734],[116,199,65,0.014685567308916202],[116,199,66,0.01705035158287578],[116,199,67,0.018224882452933706],[116,199,68,0.015836324419014093],[116,199,69,0.013440090565610007],[116,199,70,0.011081011993080406],[116,199,71,0.00880566884729291],[116,199,72,0.006660195267693761],[116,199,73,0.0046883195164809845],[116,199,74,0.0029296453730622537],[116,199,75,0.0014181805044239445],[116,199,76,1.8111714084003512E-4],[116,199,77,-7.621299995445708E-4],[116,199,78,-0.001400623981029046],[116,199,79,-0.0017323399446447676],[116,200,64,0.010946890332294559],[116,200,65,0.013189389633460974],[116,200,66,0.015498211058182157],[116,200,67,0.01786851348967811],[116,200,68,0.017579831060102722],[116,200,69,0.015259546056771893],[116,200,70,0.012981768883625792],[116,200,71,0.01079134240179047],[116,200,72,0.00873238596089857],[116,200,73,0.0068464453704598985],[116,200,74,0.00517087556786874],[116,200,75,0.003737461374784305],[116,200,76,0.002571281367667658],[116,200,77,0.0016898195180933366],[116,200,78,0.0011023288872345663],[116,200,79,8.094512899336246E-4],[116,201,64,0.00961860508754965],[116,201,65,0.011795874810293006],[116,201,66,0.014035556258501183],[116,201,67,0.016330342273706527],[116,201,68,0.018656637477636583],[116,201,69,0.017028045175005953],[116,201,70,0.01484314622271418],[116,201,71,0.012748393722172345],[116,201,72,0.010785610959264396],[116,201,73,0.008993873474338308],[116,201,74,0.0074080096824053615],[116,201,75,0.006057328774388755],[116,201,76,0.00496458058128082],[116,201,77,0.004145151731536864],[116,201,78,0.003606502079843796],[116,201,79,0.003347845035680825],[116,202,64,0.008424943091412042],[116,202,65,0.010522669167611296],[116,202,66,0.012680006883359265],[116,202,67,0.01488668498524406],[116,202,68,0.017117969629761715],[116,202,69,0.018727110518484837],[116,202,70,0.01664609050833199],[116,202,71,0.014657060699672337],[116,202,72,0.012799273426799065],[116,202,73,0.01110905276184814],[116,202,74,0.009618430383510124],[116,202,75,0.008353995868869563],[116,202,76,0.007335965705219794],[116,202,77,0.006577474988883211],[116,202,78,0.00608409544801854],[116,202,79,0.005853583099062525],[116,203,64,0.007380556052354544],[116,203,65,0.009384746234753119],[116,203,66,0.01144691101763098],[116,203,67,0.013553358041226886],[116,203,68,0.01567798342164285],[116,203,69,0.017784376020502028],[116,203,70,0.018372853838403928],[116,203,71,0.016498834358299384],[116,203,72,0.014754069323145514],[116,203,73,0.013171863343955962],[116,203,74,0.011781193483827649],[116,203,75,0.010605697334033094],[116,203,76,0.009662864418420347],[116,203,77,0.008963434492605565],[116,203,78,0.008511005999711297],[116,203,79,0.008301857642633418],[116,204,64,0.006495696511556352],[116,204,65,0.008393074432422527],[116,204,66,0.010347911393903453],[116,204,67,0.01234269055615516],[116,204,68,0.014349717579503696],[116,204,69,0.016333831386059615],[116,204,70,0.018258896248046018],[116,204,71,0.01825864215776569],[116,204,72,0.01663434959062666],[116,204,73,0.015166157748785969],[116,204,74,0.013879744061158746],[116,204,75,0.012795571955463691],[116,204,76,0.011928217848538317],[116,204,77,0.011285887060711071],[116,204,78,0.010870121508429155],[116,204,79,0.010675701756285207],[116,205,64,0.005775112352368142],[116,205,65,0.007553420166745549],[116,205,66,0.009389642898020476],[116,205,67,0.01126209692574697],[116,205,68,0.013141292028714962],[116,205,69,0.014993371799972658],[116,205,70,0.016784439548272967],[116,205,71,0.01848194255550922],[116,205,72,0.018430420545437583],[116,205,73,0.01708225983888837],[116,205,74,0.0159046116508617],[116,205,75,0.014914547343027607],[116,205,76,0.014123543745549685],[116,205,77,0.013537127698570139],[116,205,78,0.013154691844055837],[116,205,79,0.012969483843351146],[116,206,64,0.005217080165673823],[116,206,65,0.006865287370802903],[116,206,66,0.008572562220129795],[116,206,67,0.01031277534841059],[116,206,68,0.012054452712660311],[116,206,69,0.013765068425143918],[116,206,70,0.015413077148184878],[116,206,71,0.016968980194764574],[116,206,72,0.01840625110955845],[116,206,73,0.01891942221597747],[116,206,74,0.01785608563266448],[116,206,75,0.01696422819378037],[116,206,76,0.016252027876218215],[116,206,77,0.015722170018283174],[116,206,78,0.015371780342615202],[116,206,79,0.015192508397523449],[116,207,64,0.004814253288002808],[116,207,65,0.006322207332640913],[116,207,66,0.007890800172097177],[116,207,67,0.009489254376788605],[116,207,68,0.011083951808680525],[116,207,69,0.01264369779210597],[116,207,70,0.014139386704656219],[116,207,71,0.015544726105137576],[116,207,72,0.0168368970548947],[116,207,73,0.017997099326382927],[116,207,74,0.019010979336657314],[116,207,75,0.01895494219354358],[116,207,76,0.018325807356936542],[116,207,77,0.017855224461091012],[116,207,78,0.01753791752855305],[116,207,79,0.01736384960038952],[116,208,64,0.004559853301931003],[116,208,65,0.0059167492144910315],[116,208,66,0.0073364326023707335],[116,208,67,0.008783411321134655],[116,208,68,0.010221826071371573],[116,208,69,0.011621799578806866],[116,208,70,0.012956719662836885],[116,208,71,0.014203602222523218],[116,208,72,0.015343469266433266],[116,208,73,0.016361635183417014],[116,208,74,0.017247899753760773],[116,208,75,0.017996646538582833],[116,208,76,0.018606845423318932],[116,208,77,0.01908195822750172],[116,208,78,0.01942974642649634],[116,208,79,0.01947991297105898],[116,209,64,0.004445368602346561],[116,209,65,0.005640050903378852],[116,209,66,0.00690048973526337],[116,209,67,0.00818655677883786],[116,209,68,0.009460123313989174],[116,209,69,0.01069260035066272],[116,209,70,0.01185988147840924],[116,209,71,0.012942331296368738],[116,209,72,0.01392486835911225],[116,209,73,0.014796981203326013],[116,209,74,0.015552676635768255],[116,209,75,0.01619035956219839],[116,209,76,0.016712643734628156],[116,209,77,0.017126092889377605],[116,209,78,0.017440891840090084],[116,209,79,0.01767044717708485],[116,210,64,0.004459097413145229],[116,210,65,0.005480798147580257],[116,210,66,0.006572241389436565],[116,210,67,0.007688877354465155],[116,210,68,0.008790344089507646],[116,210,69,0.009849293881060282],[116,210,70,0.010844094371710735],[116,210,71,0.011758435184132375],[116,210,72,0.01258110761566749],[116,210,73,0.01330574349833818],[116,210,74,0.013930513095125285],[116,210,75,0.014457781961751667],[116,210,76,0.014893726758810474],[116,210,77,0.015247910051296241],[116,210,78,0.015532814180821919],[116,210,79,0.01576333433941435],[116,211,64,0.004586083684287922],[116,211,65,0.00542505276168167],[116,211,66,0.006338918050973227],[116,211,67,0.0072790478682216685],[116,211,68,0.008202942812395971],[116,211,69,0.009084430454323987],[116,211,70,0.009904275966969706],[116,211,71,0.010649406093527644],[116,211,72,0.011312382309385432],[116,211,73,0.011890860183915873],[116,211,74,0.012387035502428983],[116,211,75,0.012807077724879087],[116,211,76,0.01316055137025514],[116,211,77,0.013459825923698978],[116,211,78,0.013719474867042048],[116,211,79,0.013955664432374903],[116,212,64,0.004808208922202825],[116,212,65,0.0054562377109618095],[116,212,66,0.006185590160509998],[116,212,67,0.006944003744832827],[116,212,68,0.007686991640687541],[116,212,69,0.008389471930372046],[116,212,70,0.009034486942401998],[116,212,71,0.009612050179471815],[116,212,72,0.01011831468598011],[116,212,73,0.010554755263276408],[116,212,74,0.010927365770989824],[116,212,75,0.011245872726192405],[116,212,76,0.01152296638052776],[116,212,77,0.01177355041882791],[116,212,78,0.012014011381252312],[116,212,79,0.012261508864739267],[116,213,64,0.005104442242033946],[116,213,65,0.0055552812704345],[116,213,66,0.006095207723718918],[116,213,67,0.006668875615198976],[116,213,68,0.0072300090819149695],[116,213,69,0.007754514471745124],[116,213,70,0.008227549533211831],[116,213,71,0.008642005282278377],[116,213,72,0.008997376338071779],[116,213,73,0.009298673002030858],[116,213,74,0.009555376974999929],[116,213,75,0.00978044253712394],[116,213,76,0.00998934493971552],[116,213,77,0.010199177676906137],[116,213,78,0.010427800218323246],[116,213,79,0.010693037692761295],[116,214,64,0.005451251065180318],[116,214,65,0.00570092259047889],[116,214,66,0.006048802492800422],[116,214,67,0.006437088303770816],[116,214,68,0.006817955429746853],[116,214,69,0.007168180979861113],[116,214,70,0.007474838878654984],[116,214,71,0.007733434745557611],[116,214,72,0.007946489860190073],[116,214,73,0.008122194631959793],[116,214,74,0.008273134092790346],[116,214,75,0.008415087819500493],[116,214,76,0.008565906573086427],[116,214,77,0.00874446781663659],[116,214,78,0.008969712142633464],[116,214,79,0.009259762504858791],[116,215,64,0.005823175012630838],[116,215,65,0.005870181130456491],[116,215,66,0.00602585509865799],[116,215,67,0.006230626509563712],[116,215,68,0.0064353972765301285],[116,215,69,0.006617685429344969],[116,215,70,0.006766249349981599],[116,215,71,0.006878899401466732],[116,215,72,0.006960811824611724],[116,215,73,0.007022939378095454],[116,215,74,0.0070805218240101025],[116,215,75,0.0071516992069505705],[116,215,76,0.007256230712977669],[116,215,77,0.007414321726285965],[116,215,78,0.007645561527321675],[116,215,79,0.007967973897679916],[116,216,64,0.006193565661956173],[116,216,65,0.006038992542261507],[116,216,66,0.006004829637264271],[116,216,67,0.006030469616267038],[116,216,68,0.006065843478602282],[116,216,69,0.006089071425290462],[116,216,70,0.006090338136459054],[116,216,71,0.0060694099555520025],[116,216,72,0.006033699266837754],[116,216,73,0.005996451955195679],[116,216,74,0.005975061584299297],[116,216,75,0.005989513735113978],[116,216,76,0.006060963744042965],[116,216,77,0.006210450870359866],[116,216,78,0.006457751707253615],[116,216,79,0.006820375431496635],[116,217,64,0.006535494941516849],[116,217,65,0.006183013695445259],[116,217,66,0.005963878327493896],[116,217,67,0.005817198185122961],[116,217,68,0.005692255074313814],[116,217,69,0.005567627436458311],[116,217,70,0.005434648499912421],[116,217,71,0.00529466214158348],[116,217,72,0.00515686201225183],[116,217,73,0.005036278826512996],[116,217,74,0.004951919931296586],[116,217,75,0.004925065034599501],[116,217,76,0.004977721734848154],[116,217,77,0.005131244242732152],[116,217,78,0.005405118433243388],[116,217,79,0.005815916107961287],[116,218,64,0.00682283502747585],[116,218,65,0.006278599632401721],[116,218,66,0.005881718959408513],[116,218,67,0.005571774791169635],[116,218,68,0.005297731767214188],[116,218,69,0.005038481275718035],[116,218,70,0.0047862152323189175],[116,218,71,0.004543457146495913],[116,218,72,0.004320703310468639],[116,218,73,0.0041342356574624985],[116,218,74,0.004004110819591218],[116,218,75,0.00395232964769449],[116,218,76,0.004001191178275638],[116,218,77,0.00417183474803599],[116,218,78,0.004482973666506124],[116,218,79,0.004949823564201046],[116,219,64,0.007031512685350667],[116,219,65,0.006303955323906462],[116,219,66,0.005738687939453306],[116,219,67,0.005276501956895644],[116,219,68,0.004866377686633033],[116,219,69,0.004487376505324022],[116,219,70,0.00413225496377229],[116,219,71,0.003804309924628333],[116,219,72,0.003514851368883163],[116,219,73,0.0032808685271723194],[116,219,74,0.0031228942172950814],[116,219,75,0.0030630719687600757],[116,219,76,0.003123430205072274],[116,219,77,0.0033243674369464633],[116,219,78,0.003683352097050384],[116,219,79,0.004213840321809494],[116,220,64,0.007140941055874772],[116,220,65,0.006240465159848955],[116,220,66,0.005517971810058507],[116,220,67,0.004916160015131136],[116,220,68,0.004384349222723447],[116,220,69,0.0039016335366602833],[116,220,70,0.003461044067359041],[116,220,71,0.0030662481266524135],[116,220,72,0.0027288844897060544],[116,220,73,0.0024661115796857933],[116,220,74,0.0022983737409839914],[116,220,75,0.0022473904367526516],[116,220,76,0.0023343728668500786],[116,220,77,0.0025784721553831673],[116,220,78,0.002995462905444262],[116,220,79,0.0035966655652304395],[116,221,64,0.007135631922398009],[116,221,65,0.006074203154847321],[116,221,66,0.005207020173303851],[116,221,67,0.004479327792686506],[116,221,68,0.003841087800503343],[116,221,69,0.003271298269464127],[116,221,70,0.0027629869907241245],[116,221,71,0.0023198044594458242],[116,221,72,0.001953252612856243],[116,221,73,0.0016801439013022393],[116,221,74,0.001520296076359491],[116,221,75,0.0014944677239082992],[116,221,76,0.001622539204434649],[116,221,77,0.0019219432901424734],[116,221,78,0.0024063494116172103],[116,221,79,0.0030846050488287915],[116,222,64,0.0070069915114702],[116,222,65,0.005797626871122722],[116,222,66,0.004799142979145771],[116,222,67,0.0039598890453813726],[116,222,68,0.0032307405050632757],[116,222,69,0.002590481171757714],[116,222,70,0.0020318779088378714],[116,222,71,0.001558205366170598],[116,222,72,0.0011803981479262767],[116,222,73,9.144484986226474E-4],[116,222,74,7.790550465230762E-4],[116,222,75,7.935277647100293E-4],[116,222,76,9.759539220389407E-4],[116,222,77,0.0013416294014158554],[116,222,78,0.0019017593644709949],[116,222,79,0.0026624318429922674],[116,223,64,0.0067553028669175225],[116,223,65,0.005411458058851899],[116,223,66,0.004295295145546616],[116,223,67,0.0033587275910104686],[116,223,68,0.0025537714952215533],[116,223,69,0.0018588897360829167],[116,223,70,0.0012663586359975732],[116,223,71,7.787589682270253E-4],[116,223,72,4.060790392908465E-4],[116,223,73,1.6307632054055594E-4],[116,223,74,6.690326545445599E-5],[116,223,75,1.3500255103523391E-4],[116,223,76,3.832765745200005E-4],[116,223,77,8.245356232570295E-4],[116,223,78,0.00146722871926298],[116,223,79,0.0023144607241029165],[116,224,64,0.006391897797867376],[116,224,65,0.004926752984453072],[116,224,66,0.0037060514579342787],[116,224,67,0.002685614076713496],[116,224,68,0.0018187671427318493],[116,224,69,0.0010835572573590431],[116,224,70,4.715757545917994E-4],[116,224,71,-1.5554760268208994E-5],[116,224,72,-3.691029535718486E-4],[116,224,73,-5.758816862018183E-4],[116,224,74,-6.20625631768594E-4],[116,224,75,-4.880883200778453E-4],[116,224,76,-1.6485375899210933E-4],[116,224,77,3.591417833712455E-4],[116,224,78,0.0010893818230297695],[116,224,79,0.002025839088196575],[116,225,64,0.005941521329895997],[116,225,65,0.0043671653569908675],[116,225,66,0.0030537746458579634],[116,225,67,0.0019612872782468886],[116,225,68,0.0010444378057615483],[116,225,69,2.807708598202197E-4],[116,225,70,-3.3896008934753726E-4],[116,225,71,-8.142886122845258E-4],[116,225,72,-0.001137965766358156],[116,225,73,-0.001298611477238066],[116,225,74,-0.0012830811613510156],[116,225,75,-0.0010785423233899037],[116,225,76,-6.742562996231843E-4],[116,225,77,-6.306075949510842E-5],[116,225,78,7.574509786300752E-4],[116,225,79,0.001784057320484298],[116,226,64,0.005444891482685849],[116,226,65,0.0037714046690451677],[116,226,66,0.0023749794524327295],[116,226,67,0.0012197327577297477],[116,226,68,2.618190856764915E-4],[116,226,69,-5.217983480700709E-4],[116,226,70,-0.001141309811420439],[116,226,71,-0.0015975246158201066],[116,226,72,-0.0018847993535925614],[116,226,73,-0.0019936787634703265],[116,226,74,-0.0019132435440666264],[116,226,75,-0.0016331598758828622],[116,226,76,-0.0011454258609405483],[116,226,77,-4.458105420998438E-4],[116,226,78,4.650183819790165E-4],[116,226,79,0.0015806815793176698],[116,227,64,0.004962312313596592],[116,227,65,0.0031975623261750307],[116,227,66,0.001725297370679292],[116,227,67,5.137693220865344E-4],[116,227,68,-4.795030973002521E-4],[116,227,69,-0.0012782142531269462],[116,227,70,-0.0018935616439214613],[116,227,71,-0.0023276768625735537],[116,227,72,-0.0025765487702216557],[116,227,73,-0.002632651667396193],[116,227,74,-0.0024872728074197743],[116,227,75,-0.0021325340493195655],[116,227,76,-0.0015631029069192084],[116,227,77,-7.775887140844129E-4],[116,227,78,2.203799103578186E-4],[116,227,79,0.001421399654685244],[116,228,64,0.0045661349158592065],[116,228,65,0.0027189373786442044],[116,228,66,0.0011783827997197546],[116,228,67,-8.304737754376331E-5],[116,228,68,-0.0011064404526926655],[116,228,69,-0.0019162074725343067],[116,228,70,-0.0025246090691654014],[116,228,71,-0.002935142884504878],[116,228,72,-0.0031454559559152455],[116,228,73,-0.003149955517641387],[116,228,74,-0.0029421126048957834],[116,228,75,-0.0025164533096136196],[116,228,76,-0.0018702330057567764],[116,228,77,-0.0010047893342201195],[116,228,78,7.342979085052208E-5],[116,228,79,0.0013521664252381148],[116,229,64,0.0043126972611492774],[116,229,65,0.0023935390952470764],[116,229,66,7.933351629481675E-4],[116,229,67,-5.109574046058585E-4],[116,229,68,-0.001558889687214755],[116,229,69,-0.002375610516184306],[116,229,70,-0.0029744859568901815],[116,229,71,-0.003360426988105187],[116,229,72,-0.0035327798923234987],[116,229,73,-0.00348791008572062],[116,229,74,-0.003221473842564916],[116,229,75,-0.0027303728386960367],[116,229,76,-0.002014386914634202],[116,229,77,-0.0010774809375825255],[116,229,78,7.121788076973513E-5],[116,229,79,0.001416775381266867],[116,230,64,0.004238758971765631],[116,230,65,0.0022593189045633133],[116,230,66,6.088633192089975E-4],[116,230,67,-7.308467208456665E-4],[116,230,68,-0.0017975969593527433],[116,230,69,-0.002617241526359733],[116,230,70,-0.0032042631451797325],[116,230,71,-0.003565019574830147],[116,230,72,-0.0037005962704997996],[116,230,73,-0.0036093495494806073],[116,230,74,-0.003289134818674198],[116,230,75,-0.0027392148941657287],[116,230,76,-0.001961843923355741],[116,230,77,-9.635229023173132E-4],[116,230,78,2.440767384354769E-4],[116,230,79,0.0016435245318917329],[116,231,64,0.004363934548871486],[116,231,65,0.0023366011781442778],[116,231,66,6.457096088720201E-4],[116,231,67,-7.218217242314134E-4],[116,231,68,-0.0018017199191594825],[116,231,69,-0.0026204473442102178],[116,231,70,-0.0031935705588551637],[116,231,71,-0.0035289005143988856],[116,231,72,-0.003629288139094942],[116,231,73,-0.003495109857794176],[116,231,74,-0.0031264377417791456],[116,231,75,-0.002524889459866746],[116,231,76,-0.0016951536823417508],[116,231,77,-6.461870713703079E-4],[116,231,78,6.079205286085345E-4],[116,231,79,0.0020474156135888407],[116,232,64,0.0046929990085532985],[116,232,65,0.002630385711503314],[116,232,66,9.089466316994688E-4],[116,232,67,-4.7890873175861215E-4],[116,232,68,-0.001566510975557292],[116,232,69,-0.0023807622149990505],[116,232,70,-0.0029382271582645047],[116,232,71,-0.003248140101004792],[116,232,72,-0.0033151213464377295],[116,232,73,-0.003141585561492559],[116,232,74,-0.0027298369454141535],[116,232,75,-0.0020838465598242793],[116,232,76,-0.001210707646280031],[116,232,77,-1.2176523543814927E-4],[116,232,78,0.0011665831727867555],[116,232,79,0.002632418610359979],[116,233,64,0.005218063474569269],[116,233,65,0.003132519098401974],[116,233,66,0.0013901436619361783],[116,233,67,-1.0881763996620353E-5],[116,233,68,-0.0011011253985968763],[116,233,69,-0.0019076859732543628],[116,233,70,-0.002447982768041902],[116,233,71,-0.0027326018150586363],[116,233,72,-0.0027679091256887513],[116,233,73,-0.0025583605285157632],[116,233,74,-0.0021085032174912688],[116,233,75,-0.0014246645756272789],[116,233,76,-5.163243089699965E-4],[116,233,77,6.028336044567442E-4],[116,233,78,0.0019141921794402293],[116,233,79,0.003393798471621733],[116,234,64,0.0059206193156243125],[116,234,65,0.0038237336414104393],[116,234,66,0.0020694014179884557],[116,234,67,6.617801727844358E-4],[116,234,68,-4.2655535163909367E-4],[116,234,69,-0.0012225826815056655],[116,234,70,-0.0017443726139610993],[116,234,71,-0.0020037475471689843],[116,234,72,-0.0020087662828023435],[116,234,73,-0.001765912782375813],[116,234,74,-0.0012819842423464954],[116,234,75,-5.656743075556438E-4],[116,234,76,3.7115229963156514E-4],[116,234,77,0.0015124969995014728],[116,234,78,0.0028375792356956702],[116,234,79,0.004320505381705855],[116,235,64,0.006773449235301614],[116,235,65,0.004675552266340894],[116,235,66,0.0029172537327040626],[116,235,67,0.001508804942386295],[116,235,68,4.263088840093811E-4],[116,235,69,-3.5670086385765126E-4],[116,235,70,-8.586855642943193E-4],[116,235,71,-0.0010925461103967091],[116,235,72,-0.0010679536173957456],[116,235,73,-7.933938741100726E-4],[116,235,74,-2.779213245748124E-4],[116,235,75,4.6738130968576895E-4],[116,235,76,0.0014282412142267728],[116,235,77,0.002586334479301034],[116,235,78,0.003918728479782112],[116,235,79,0.005397629777917447],[116,236,64,0.007742403548056557],[116,236,65,0.005652057737744548],[116,236,66,0.003896434503570775],[116,236,67,0.002491906743188491],[116,236,68,0.0014184890649767503],[116,236,69,6.506833584818148E-4],[116,236,70,1.6995275956170733E-4],[116,236,71,-3.7486038393186166E-5],[116,236,72,1.7186618206069003E-5],[116,236,73,3.235166232998328E-4],[116,236,74,8.701772540575205E-4],[116,236,75,0.001643651740833217],[116,236,76,0.002627200406018354],[116,236,77,0.003800115092482389],[116,236,78,0.005137263185978706],[116,236,79,0.006608923128142688],[116,237,64,0.008788039706830914],[116,237,65,0.0067115243091226285],[116,237,66,0.00496350814198134],[116,237,67,0.003566431493423561],[116,237,68,0.00250459893549195],[116,237,69,0.0017539987600557513],[116,237,70,0.0012963806714665297],[116,237,71,0.0011173061603949378],[116,237,72,0.0012042032374931244],[116,237,73,0.001544680723237677],[116,237,74,0.002125105700603699],[116,237,75,0.002929447338394763],[116,237,76,0.003938389893403101],[116,237,77,0.0051287173019980105],[116,237,78,0.006472971379480609],[116,237,79,0.007939385262169266],[116,238,64,0.00986712298888087],[116,238,65,0.007807909786854401],[116,238,66,0.00607036158907643],[116,238,67,0.0046828662982692],[116,238,68,0.003634392231081835],[116,238,69,0.002902985505265465],[116,238,70,0.002471083412219109],[116,238,71,0.00232384095008529],[116,238,72,0.0024474154499186467],[116,238,73,0.002827494769628118],[116,238,74,0.003448072252934191],[116,238,75,0.00429047127658622],[116,238,76,0.005332621835150575],[116,238,77,0.0065485912415350995],[116,238,78,0.007908370656116768],[116,238,79,0.00937791880125767],[116,239,64,0.010933459685989263],[116,239,65,0.008892578836893634],[116,239,66,0.007166651102828267],[116,239,67,0.005789829923226562],[116,239,68,0.004756107962294222],[116,239,69,0.004046201106196812],[116,239,70,0.0036436668507690015],[116,239,71,0.0035335214583114803],[116,239,72,0.003700777343759243],[116,239,73,0.004129206833427565],[116,239,74,0.004800335058235712],[116,239,75,0.0056926643962499695],[116,239,76,0.006781132533345981],[116,239,77,0.008036805868312371],[116,239,78,0.009426809652662255],[116,239,79,0.010914495928945446],[116,240,64,0.011941847676684244],[116,240,65,0.009920970207710137],[116,240,66,0.008208579998904173],[116,240,67,0.006844285695719724],[116,240,68,0.0058273999880381],[116,240,69,0.00514192921409795],[116,240,70,0.004773013777822783],[116,240,71,0.004705843903694876],[116,240,72,0.004924467790849895],[116,240,73,0.005410808177885958],[116,240,74,0.006143889627274163],[116,240,75,0.007099278519566665],[116,240,76,0.008248737430936534],[116,240,77,0.009560095255308385],[116,240,78,0.01099733412710637],[116,240,79,0.01252089390539576],[116,241,64,0.012857403635878522],[116,241,65,0.010859263591738076],[116,241,66,0.009163303032452398],[116,241,67,0.007814131918311526],[116,241,68,0.006816589361593073],[116,241,69,0.006158575712404769],[116,241,70,0.005827293961540709],[116,241,71,0.005808464750304547],[116,241,72,0.0060854172593927235],[116,241,73,0.0066383702000282],[116,241,74,0.007443904754789396],[116,241,75,0.00847463102601794],[116,241,76,0.009699049263202522],[116,241,77,0.011081606859493456],[116,241,78,0.012582951833955358],[116,241,79,0.014160383253027221],[116,242,64,0.013656245617332951],[116,242,65,0.011684218396057669],[116,242,66,0.010008089923730848],[116,242,67,0.008676883401227605],[116,242,68,0.007701071454367604],[116,242,69,0.007073013370360728],[116,242,70,0.006782454835284945],[116,242,71,0.006816035571973542],[116,242,72,0.0071566685415970785],[116,242,73,0.0077830909989854875],[116,242,74,0.00866958878853691],[116,242,75,0.009785895007228717],[116,242,76,0.011097263905048853],[116,242,77,0.012564720643083794],[116,242,78,0.014145487287783445],[116,242,79,0.015793585189062855],[116,243,64,0.014324436976259266],[116,243,65,0.012382178759783573],[116,243,66,0.010729402002595046],[116,243,67,0.009418835376635588],[116,243,68,0.008466586288374269],[116,243,69,0.007869979134457711],[116,243,70,0.007621766475197947],[116,243,71,0.007709915604424772],[116,243,72,0.008117275059729093],[116,243,73,0.00882139518582395],[116,243,74,0.009794503687245725],[116,243,75,0.01100363687497378],[116,243,76,0.012410927085084825],[116,243,77,0.013974046528079025],[116,243,78,0.0156468076170744],[116,243,79,0.01737991962393532],[116,244,64,0.01485691681213665],[116,244,65,0.012948061739832347],[116,244,66,0.01132194830879591],[116,244,67,0.010034201918680617],[116,244,68,0.009106457135454937],[116,244,69,0.008541432687980901],[116,244,70,0.008335320561773812],[116,244,71,0.00847783112064458],[116,244,72,0.008952139305452977],[116,244,73,0.00973496789724602],[116,244,74,0.010796808349168035],[116,244,75,0.012102279487412874],[116,244,76,0.01361062418356744],[116,244,77,0.015276343910600357],[116,244,78,0.017049970914351766],[116,244,79,0.01887897756374155],[116,245,64,0.015256416575504701],[116,245,65,0.013384328246632497],[116,245,66,0.011787720661898286],[116,245,67,0.010524228294040237],[116,245,68,0.009620796696906273],[116,245,69,0.009085875468675793],[116,245,70,0.00891948238796451],[116,245,71,0.009113480568282359],[116,245,72,0.009651790237639447],[116,245,73,0.01051072174025666],[116,245,74,0.01165942986004705],[116,245,75,0.013060489387205153],[116,245,76,0.014670591678064771],[116,245,77,0.016441361795831656],[116,245,78,0.018320295667568966],[116,245,79,0.02025181655277691],[116,246,64,0.015532362599556798],[116,246,65,0.013699936422754182],[116,246,66,0.012135007319309837],[116,246,67,0.010896276764455141],[116,246,68,0.010015680264179276],[116,246,69,0.009507629409756814],[116,246,70,0.009376295037338169],[116,246,71,0.009616084452138593],[116,246,72,0.010212098489041713],[116,246,73,0.011140695398914501],[116,246,74,0.012370161290355593],[116,246,75,0.013861486701786909],[116,246,76,0.015569248732013458],[116,246,77,0.017442598019947998],[116,246,78,0.019426349737674632],[116,246,79,0.020254381402450276],[116,247,64,0.01569976444648678],[116,247,65,0.013909277281313078],[116,247,66,0.01237738495842856],[116,247,67,0.011162885472750963],[116,247,68,0.010302285362361342],[116,247,69,0.009816074759304525],[116,247,70,0.00971283493186724],[116,247,71,0.009989879004376466],[116,247,72,0.010633928272630445],[116,247,73,0.01162188265298088],[116,247,74,0.012921684666442413],[116,247,75,0.014493276225164518],[116,247,76,0.0162896473633629],[116,247,77,0.018257975939577026],[116,247,78,0.020340857233311808],[116,247,79,0.019305557825529382],[116,248,64,0.015778089100159653],[116,248,65,0.014031092557847628],[116,248,66,0.01253268884986601],[116,248,67,0.011340800167988621],[116,248,68,0.01049599749402606],[116,248,69,0.010024846438526233],[116,248,70,0.00994051804118491],[116,248,71,0.010243552761201159],[116,248,72,0.010922724935293782],[116,248,73,0.011955990593083835],[116,248,74,0.013311517750269916],[116,248,75,0.014948798183606492],[116,248,76,0.016819839584738785],[116,248,77,0.018870436893550446],[116,248,78,0.020794896585665794],[116,248,79,0.01857798054592701],[116,249,64,0.015790121191277224],[116,249,65,0.014087374879750307],[116,249,66,0.012621961233733887],[116,249,67,0.011449978664326484],[116,249,68,0.010615481732647791],[116,249,69,0.010150988521421735],[116,249,70,0.01007435615479731],[116,249,71,0.010389625258722673],[116,249,72,0.011088037181501378],[116,249,73,0.012149125869484221],[116,249,74,0.013541883289364046],[116,249,75,0.015225997186283513],[116,249,76,0.017153159874691525],[116,249,77,0.01926844667760782],[116,249,78,0.020389864222576506],[116,249,79,0.018093236776052277],[116,250,64,0.015760809609320386],[116,250,65,0.014102250521853937],[116,250,66,0.012668378070776738],[116,250,67,0.011512568082738091],[116,250,68,0.010681720063053792],[116,250,69,0.010214066558184022],[116,250,70,0.010132162747012957],[116,250,71,0.010443767173939748],[116,250,72,0.01114297308391817],[116,250,73,0.012211407883292655],[116,250,74,0.01361949944412899],[116,250,75,0.015327807877952185],[116,250,76,0.017288421323381233],[116,250,77,0.01944641422203898],[116,250,78,0.02022396066082071],[116,250,79,0.01786617727154433],[116,251,64,0.015716101037633122],[116,251,65,0.014100845195984393],[116,251,66,0.012696154515341153],[116,251,67,0.011551855095675495],[116,251,68,0.010717014532247828],[116,251,69,0.010235237623259267],[116,251,70,0.010133708112501751],[116,251,71,0.010424061370659802],[116,251,72,0.011103589113379836],[116,251,73,0.012156507921695406],[116,251,74,0.01355529016554251],[116,251,75,0.015262055845988155],[116,251,76,0.017230023797273494],[116,251,77,0.019405020626746337],[116,251,78,0.020300333795972236],[116,251,79,0.017904119015861066],[116,252,64,0.015681761144569432],[116,252,65,0.014108133516779862],[116,252,66,0.01272942964847354],[116,252,67,0.01159118958290636],[116,252,68,0.01074395645834639],[116,252,69,0.010236278147522758],[116,252,70,0.010099823619727381],[116,252,71,0.010350204466174203],[116,252,72,0.010988211558726726],[116,252,73,0.012001113354147063],[116,252,74,0.013364014384276224],[116,252,75,0.01504127239033626],[116,252,76,0.01698797248798627],[116,252,77,0.019151456689750896],[116,252,78,0.020614732108568297],[116,252,79,0.01820613819166471],[116,253,64,0.015682184375217144],[116,253,65,0.014147772996492386],[116,253,66,0.012791131217579523],[116,253,67,0.011652882312954011],[116,253,68,0.010784362149351998],[116,253,69,0.010238569793704109],[116,253,70,0.01005145512139782],[116,253,71,0.010242648714200574],[116,253,72,0.010816689869452356],[116,253,73,0.011764316146424328],[116,253,74,0.01306381298442323],[116,253,75,0.014682421844264104],[116,253,76,0.01657780525235919],[116,253,77,0.018699567065756248],[116,253,78,0.020990826228078508],[116,253,79,0.01876245579066691],[116,254,64,0.01573919351531465],[116,254,65,0.014240923648406019],[116,254,66,0.012901821354740904],[116,254,67,0.011757077489656991],[116,254,68,0.010858175808042997],[116,254,69,0.010262043856200984],[116,254,70,0.010008665776924117],[116,254,71,0.010121684204542266],[116,254,72,0.010609581642679404],[116,254,73,0.01146692511576643],[116,254,74,0.01267567267322211],[116,254,75,0.014206540238201077],[116,254,76,0.016020427216152874],[116,254,77,0.018069899213034674],[116,254,78,0.020300726159955946],[116,254,79,0.019553918290025066],[116,255,64,0.015870830442109077],[116,255,65,0.014405054522545268],[116,255,66,0.013078524489699582],[116,255,67,0.011920601248208429],[116,255,68,0.01098234054543276],[116,255,69,0.010324084911996947],[116,255,70,0.009989588783109965],[116,255,71,0.010006461611733304],[116,255,72,0.010387269192435378],[116,255,73,0.011130701545003577],[116,255,74,0.012222806024501652],[116,255,75,0.013638284230546914],[116,255,76,0.015341851204681341],[116,255,77,0.01728965533174052],[116,255,78,0.019430757300201423],[116,255,79,0.020551575883343737],[116,256,64,0.016090139736665558],[116,256,65,0.014652738759207872],[116,256,66,0.013333538936488398],[116,256,67,0.012155787450587468],[116,256,68,0.011169638694176842],[116,256,69,0.010438394719883564],[116,256,70,0.010009330777458282],[116,256,71,0.009913955985381109],[116,256,72,0.010169007885490527],[116,256,73,0.010777517998679655],[116,256,74,0.011729947170237474],[116,256,75,0.013005389390425007],[116,256,76,0.014572842682449322],[116,256,77,0.01639254556708928],[116,256,78,0.018417377541989244],[116,256,79,0.02059432195518121],[116,257,64,0.016403958274268875],[116,257,65,0.01499044926562745],[116,257,66,0.013673243287813715],[116,257,67,0.012469290993851188],[116,257,68,0.011427510792379785],[116,257,69,0.010613825010850935],[116,257,70,0.01007883397629496],[116,257,71,0.009857879235279775],[116,257,72,0.009971913676892272],[116,257,73,0.010428447754256987],[116,257,74,0.01122257073703142],[116,257,75,0.012338045813943904],[116,257,76,0.013748477760106003],[116,257,77,0.015418551789533715],[116,257,78,0.017305342130251946],[116,257,79,0.01935968878868067],[116,258,64,0.016811733682623724],[116,258,65,0.015417459403249725],[116,258,66,0.014097086407072074],[116,258,67,0.01286116216002425],[116,258,68,0.011757202770257298],[116,258,69,0.010853584407366215],[116,258,70,0.010204128962418334],[116,258,71,0.00984796481246244],[116,258,72,0.009810266172219851],[116,258,73,0.010103073694587869],[116,258,74,0.010726195403406483],[116,258,75,0.011668186917939558],[116,258,76,0.012907409813006207],[116,258,77,0.014413166852705623],[116,258,78,0.01614691274045479],[116,258,79,0.01806353894478864],[116,259,64,0.017305864360117818],[116,259,65,0.015927966526629957],[116,259,66,0.014601540262882897],[116,259,67,0.01333062157052639],[116,259,68,0.012161155869335308],[116,259,69,0.011163779558027002],[116,259,70,0.01039537083172152],[116,259,71,0.00989871046094587],[116,259,72,0.009703091262100401],[116,259,73,0.009825013489044016],[116,259,74,0.010268965378202214],[116,259,75,0.011028287945676639],[116,259,76,0.012086123008823746],[116,259,77,0.013416443287747762],[116,259,78,0.014985163335403201],[116,259,79,0.016751329949742003],[116,260,64,0.01787826313438807],[116,260,65,0.016517263494760657],[116,260,66,0.01518578427965816],[116,260,67,0.013881215025505779],[116,260,68,0.012647600225901669],[116,260,69,0.011557400529975014],[116,260,70,0.01067016292878592],[116,260,71,0.010031988069955242],[116,260,72,0.009676012299591774],[116,260,73,0.009622979473263498],[116,260,74,0.009881901913707514],[116,260,75,0.010450809750435275],[116,260,76,0.011317587741174247],[116,260,77,0.012460898548294165],[116,260,78,0.01385119132630679],[116,260,79,0.015451794370442157],[116,261,64,0.01852304679987639],[116,261,65,0.017182377854408203],[116,261,66,0.01585018653601423],[116,261,67,0.014517102864925573],[116,261,68,0.013224825442507512],[116,261,69,0.012047001369094947],[116,261,70,0.011045271906229455],[116,261,71,0.010268556712128203],[116,261,72,0.009753412297495009],[116,261,73,0.009524483000965416],[116,261,74,0.009595044002296061],[116,261,75,0.009967635742066038],[116,261,76,0.010634788974018799],[116,261,77,0.011579839541350553],[116,261,78,0.012777831842570005],[116,261,79,0.014196509837262226],[116,262,64,0.019236135478591584],[116,262,65,0.017921613745299554],[116,262,66,0.016595782514688892],[116,262,67,0.015242461360191506],[116,262,68,0.013900492714147944],[116,262,69,0.012643920061110247],[116,262,70,0.011535759970797557],[116,262,71,0.010627117313878054],[116,262,72,0.009957425368125852],[116,262,73,0.009554779889997287],[116,262,74,0.009436366804161388],[116,262,75,0.009608983009569338],[116,262,76,0.010069649652752404],[116,262,77,0.010806317078309565],[116,262,78,0.011798660534305455],[116,262,79,0.013018965587787657],[116,263,64,0.02001511575790672],[116,263,65,0.01873444917550435],[116,263,66,0.017424201930450058],[116,263,67,0.016061423225595596],[116,263,68,0.014681565862559217],[116,263,69,0.013358173686843477],[116,263,70,0.012154815865524955],[116,263,71,0.01112405045774589],[116,263,72,0.010307552698149218],[116,263,73,0.009736337243004123],[116,263,74,0.009431074159049237],[116,263,75,0.009402498279004422],[116,263,76,0.009651911397001922],[116,263,77,0.010171776632959572],[116,263,78,0.010946404158460495],[116,263,79,0.01195272734923245],[116,264,64,0.02085944903367414],[116,264,65,0.019621778039111203],[116,264,66,0.01833793697012344],[116,264,67,0.016978353857754303],[116,264,68,0.015574570242888948],[116,264,69,0.014198671329237189],[116,264,70,0.012913891207027331],[116,264,71,0.011773444937872716],[116,264,72,0.010820552611970756],[116,264,73,0.01008855583501104],[116,264,74,0.00960112654471263],[116,264,75,0.009372567901367713],[116,264,76,0.00940820684589545],[116,264,77,0.009704877773767837],[116,264,78,0.010251496635014621],[116,264,79,0.011029724640523417],[116,265,64,0.020751460898996075],[116,265,65,0.02058649946265138],[116,265,66,0.01934095438512962],[116,265,67,0.017998465598167382],[116,265,68,0.016586181686437038],[116,265,69,0.015173746784629889],[116,265,70,0.01382314414436899],[116,265,71,0.012587418977794867],[116,265,72,0.011510606606885673],[116,265,73,0.010627749957639829],[116,265,74,0.009965006411058531],[116,265,75,0.009539843870588122],[116,265,76,0.009361325757341785],[116,265,77,0.009430484501027025],[116,265,78,0.009740782957254454],[116,265,79,0.01027866305191182],[116,266,64,0.019807862250089736],[116,266,65,0.02095249284546216],[116,266,66,0.020439653357949044],[116,266,67,0.019128771811832843],[116,266,68,0.017724147159038434],[116,266,69,0.016292012665550897],[116,266,70,0.014892191859991062],[116,266,71,0.01357673559298059],[116,266,72,0.012389762835024678],[116,266,73,0.011367386219159342],[116,266,74,0.010537722444691268],[116,266,75,0.009920987512046899],[116,266,76,0.009529676615614031],[116,266,77,0.009368828382449826],[116,266,78,0.009436373010956014],[116,266,79,0.00972356373612687],[116,267,64,0.018779697350819774],[116,267,65,0.0198486413866305],[116,267,66,0.021001061997225595],[116,267,67,0.02037938210723406],[116,267,68,0.01899853836465417],[116,267,69,0.01756353705056721],[116,267,70,0.01613117301993899],[116,267,71,0.014751713185523497],[116,267,72,0.013468658129698548],[116,267,73,0.01231858243860176],[116,267,74,0.011331053972590946],[116,267,75,0.010528632149267301],[116,267,76,0.00992694517991127],[116,267,77,0.009534846068052124],[116,267,78,0.009354647051038036],[116,267,79,0.009382432042842379],[116,268,64,0.01765098318757227],[116,268,65,0.018633330717015735],[116,268,66,0.019709661857395998],[116,268,67,0.020932294363414504],[116,268,68,0.020423339106824784],[116,268,69,0.019001343437433236],[116,268,70,0.017552120899024772],[116,268,71,0.016123432094098257],[116,268,72,0.014757519325916622],[116,268,73,0.013490867439633533],[116,268,74,0.012354036394852056],[116,268,75,0.011371565749482903],[116,268,76,0.010561951109414703],[116,268,77,0.009937692475513004],[116,268,78,0.009505414299723737],[116,268,79,0.009266056946418006],[116,269,64,0.016397564995734117],[116,269,65,0.017282788357539467],[116,269,66,0.018271872788156153],[116,269,67,0.01942142588515132],[116,269,68,0.020725289319402974],[116,269,69,0.020623234388068745],[116,269,70,0.019170647555682728],[116,269,71,0.01770523748772063],[116,269,72,0.01626744430566892],[116,269,73,0.014893202244753993],[116,269,74,0.013613688243725742],[116,269,75,0.012455134266632556],[116,269,76,0.011438703526586953],[116,269,77,0.010580430669547702],[116,269,78,0.009891225866355094],[116,269,79,0.009376942654376656],[116,270,64,0.014984797585509111],[116,270,65,0.01576302436971924],[116,270,66,0.016655080201111276],[116,270,67,0.0177212120308103],[116,270,68,0.018960937523663342],[116,270,69,0.02033006986657384],[116,270,70,0.021007939110389767],[116,270,71,0.01951453868626567],[116,270,72,0.018011962907205695],[116,270,73,0.016535262891857323],[116,270,74,0.01511598019877108],[116,270,75,0.013781866142023924],[116,270,76,0.012556656129131007],[116,270,77,0.011459899212190641],[116,270,78,0.010506842944725075],[116,270,79,0.009708373539850311],[116,271,64,0.013393782749235018],[116,271,65,0.014056056276658796],[116,271,66,0.0148428369973579],[116,271,67,0.015817345345733723],[116,271,68,0.016984769346993122],[116,271,69,0.0183079832766716],[116,271,70,0.019749178267664407],[116,271,71,0.02127134094635117],[116,271,72,0.019989871382637026],[116,271,73,0.01841271903168128],[116,271,74,0.016853741988823175],[116,271,75,0.01534214181412381],[116,271,76,0.013904220650809165],[116,271,77,0.012563096213051366],[116,271,78,0.011338462972583166],[116,271,79,0.010246399704005087],[116,272,64,0.011707037985644191],[116,272,65,0.012245652678873203],[116,272,66,0.012919673980727927],[116,272,67,0.013794521344079665],[116,272,68,0.014880898282769511],[116,272,69,0.016149071392120115],[116,272,70,0.01756706652363231],[116,272,71,0.019102125610018707],[116,272,72,0.020721283124516845],[116,272,73,0.020459691102792114],[116,272,74,0.01876801200830006],[116,272,75,0.01708491314967603],[116,272,76,0.015439152667432733],[116,272,77,0.01385734075515753],[116,272,78,0.012363576723568977],[116,272,79,0.010979123223072864],[116,273,64,0.010022706784056683],[116,273,65,0.010431553040427227],[116,273,66,0.010986246554782577],[116,273,67,0.011753529779269531],[116,273,68,0.012749316280946377],[116,273,69,0.01395142893580222],[116,273,70,0.01533392633094383],[116,273,71,0.016868523153702308],[116,273,72,0.018525227841012914],[116,273,73,0.02027295619135115],[116,273,74,0.020789024660578744],[116,273,75,0.018949654135706213],[116,273,76,0.017111124200851556],[116,273,77,0.015303299316657339],[116,273,78,0.013554457557754605],[116,273,79,0.011890835848767397],[116,274,64,0.008426408659303176],[116,274,65,0.008701251559965515],[116,274,66,0.009131362835057763],[116,274,67,0.009783871010702565],[116,274,68,0.010679461869727909],[116,274,69,0.011803510228830874],[116,274,70,0.013136184214161841],[116,274,71,0.01465381382833361],[116,274,72,0.01632958227563085],[116,274,73,0.018134203104785685],[116,274,74,0.020036582293253058],[116,274,75,0.020876953076963967],[116,274,76,0.018869179934389396],[116,274,77,0.016859245709050442],[116,274,78,0.014879225317098347],[116,274,79,0.012959947506839105],[116,275,64,0.006991950229004815],[116,275,65,0.007130638868069221],[116,275,66,0.007432545745889489],[116,275,67,0.00796422713813805],[116,275,68,0.008750590617223561],[116,275,69,0.00978439276512812],[116,275,70,0.011051863520953727],[116,275,71,0.012534007559887754],[116,275,72,0.014207339428849301],[116,275,73,0.016044613942330335],[116,275,74,0.018015550883596118],[116,275,75,0.02008755307750071],[116,275,76,0.020662153855682687],[116,275,77,0.018481539611453386],[116,275,78,0.016302373995219163],[116,275,79,0.01415954988764871],[116,276,64,0.0057818750636171486],[116,276,65,0.005784480321526578],[116,276,66,0.005956430652216784],[116,276,67,0.006362767887579118],[116,276,68,0.0070319794636141365],[116,276,69,0.007963873700178509],[116,276,70,0.009150570108554825],[116,276,71,0.010577718942024888],[116,276,72,0.01222526844504711],[116,276,73,0.014068236196953866],[116,276,74,0.016077483530911766],[116,276,75,0.018220492015215053],[116,276,76,0.02046214099548906],[116,276,77,0.02012527939065283],[116,276,78,0.017785474239487637],[116,276,79,0.01545815529631437],[116,277,64,0.004847850610894615],[116,277,65,0.004716729281354798],[116,277,66,0.004758997014391318],[116,277,67,0.0050372898537372115],[116,277,68,0.005582963659908403],[116,277,69,0.006402398132038736],[116,277,70,0.007493308970894669],[116,277,71,0.0088458723060467],[116,277,72,0.010443511029680537],[116,277,73,0.012263693276558692],[116,277,74,0.014278741983378836],[116,277,75,0.016456654453385226],[116,277,76,0.018761930850427426],[116,277,77,0.021156410550978336],[116,277,78,0.01928805045026809],[116,277,79,0.016820610403973636],[116,278,64,0.004230890749226483],[116,278,65,0.003970674009658169],[116,278,66,0.0038856327954648155],[116,278,67,0.004035187937351035],[116,278,68,0.0044528052733377975],[116,278,69,0.005150818266602831],[116,278,70,0.006132131037825619],[116,278,71,0.007391236243997309],[116,278,72,0.008915006615106831],[116,278,73,0.01068350575577525],[116,278,74,0.01267081711647153],[116,278,75,0.01484589001913653],[116,278,76,0.017173401608376795],[116,278,77,0.019614633592193707],[116,278,78,0.020768632129354585],[116,278,79,0.018209184438524453],[116,279,64,0.00396141275901551],[116,279,65,0.003578917050241198],[116,279,66,0.0033710305732518133],[116,279,67,0.003393258030091318],[116,279,68,0.0036803924245921308],[116,279,69,0.004249982754203216],[116,279,70,0.005109609562285647],[116,279,71,0.006257787133986082],[116,279,72,0.0076847459596553315],[116,279,73,0.009373240526053362],[116,279,74,0.0112993813315742],[116,279,75,0.013433489991022873],[116,279,76,0.01574097627118153],[116,279,77,0.018183235880904612],[116,279,78,0.020718567829306225],[116,279,79,0.019584831266918123],[116,280,64,0.004059127718151359],[116,280,65,0.003563186169547012],[116,280,66,0.0032389145139089925],[116,280,67,0.0031373301957253593],[116,280,68,0.0032937686086558643],[116,280,69,0.0037301556610730186],[116,280,70,0.004458145676995409],[116,280,71,0.00547990137149655],[116,280,72,0.006788853007906932],[116,280,73,0.008370487796350776],[116,280,74,0.010203168442364427],[116,280,75,0.01225897971444127],[116,280,76,0.01450460186596914],[116,280,77,0.016902209720602506],[116,280,78,0.01941039621123456],[116,280,79,0.02090862475160741],[116,281,64,0.00453276352664018],[116,281,65,0.003933976127926543],[116,281,66,0.0035015975497869785],[116,281,67,0.003281731773591606],[116,281,68,0.003309491618893568],[116,281,69,0.0036102646969207648],[116,281,70,0.004199102849336633],[116,281,71,0.005081376146461412],[116,281,72,0.006253494964930995],[116,281,73,0.007703666010237527],[116,281,74,0.009412681226381829],[116,281,75,0.011354738487591585],[116,281,76,0.013498292926264133],[116,281,77,0.015806937717445676],[116,281,78,0.018240313113890946],[116,281,79,0.02075504250759844],[116,282,64,0.005379619946490656],[116,282,65,0.004690020726359718],[116,282,66,0.004159368271797821],[116,282,67,0.0038285799891354037],[116,282,68,0.003731821743142288],[116,282,69,0.0038969784587502333],[116,282,70,0.004341770091249002],[116,282,71,0.0050742787230778465],[116,282,72,0.0060936206432838326],[116,282,73,0.00739065484015575],[116,282,74,0.008948726903135322],[116,282,75,0.010744447277351568],[116,282,76,0.012748502767661965],[116,282,77,0.014926500149392263],[116,282,78,0.017239840710703714],[116,282,79,0.019646624527238674],[116,283,64,0.006584955205794101],[116,283,65,0.00581759473031521],[116,283,66,0.005199707195259811],[116,283,67,0.0047669037960405185],[116,283,68,0.004551739030640737],[116,283,69,0.00458361257083045],[116,283,70,0.0048821538900352375],[116,283,71,0.0054576242774215305],[116,283,72,0.006311527228593806],[116,283,73,0.007437256495589863],[116,283,74,0.008820780865305244],[116,283,75,0.010441364679152914],[116,283,76,0.012272323056401142],[116,283,77,0.014281810739706023],[116,283,78,0.016433643444527173],[116,283,79,0.018688150564946663],[116,284,64,0.008121203860206757],[116,284,65,0.007289645410073483],[116,284,66,0.006596332187754661],[116,284,67,0.006071594794966738],[116,284,68,0.005745789539263946],[116,284,69,0.0056488647009705],[116,284,70,0.005801598915457918],[116,284,71,0.0062158824264549615],[116,284,72,0.00689525567710284],[116,284,73,0.007835485638562649],[116,284,74,0.00902517903562096],[116,284,75,0.01044643157069912],[116,284,76,0.012075512195134839],[116,284,77,0.013883581430023042],[116,284,78,0.015837442698929224],[116,284,79,0.01790032560196762],[116,285,64,0.009947025730307887],[116,285,65,0.009064753555112359],[116,285,66,0.008308072957517058],[116,285,67,0.007702187174630649],[116,285,68,0.00727476056328496],[116,285,69,0.0070553785135239605],[116,285,70,0.007065237627974754],[116,285,71,0.007317312640538182],[116,285,72,0.007816815006110454],[116,285,73,0.008561688236680267],[116,285,74,0.009543139248330806],[116,285,75,0.010746204925650022],[116,285,76,0.012150353056955358],[116,285,77,0.013730116745994494],[116,285,78,0.015455761364010267],[116,285,79,0.017293983070775502],[116,286,64,0.012006185838962449],[116,286,65,0.0110859239184487],[116,286,66,0.010277574590657017],[116,286,67,0.009601466701316145],[116,286,68,0.009082184912117678],[116,286,69,0.008748136679187467],[116,286,70,0.008620268961732796],[116,286,71,0.008712128769364098],[116,286,72,0.00903023576519674],[116,286,73,0.009574489700217301],[116,286,74,0.010338612060144912],[116,286,75,0.011310621249527648],[116,286,76,0.01247334058559002],[116,286,77,0.013804938326768504],[116,286,78,0.015279498918513202],[116,286,79,0.016867624602277368],[116,287,64,0.014226265358175888],[116,287,65,0.013279205124453925],[116,287,66,0.012429830194392897],[116,287,67,0.011693908842174833],[116,287,68,0.011092674359497049],[116,287,69,0.01065268309995243],[116,287,70,0.010394066283299341],[116,287,71,0.01033049292762366],[116,287,72,0.010469452981641383],[116,287,73,0.010812572644718226],[116,287,74,0.011355961380375845],[116,287,75,0.012090590075330922],[116,287,76,0.013002699745929514],[116,287,77,0.014074240147520931],[116,287,78,0.015283337600383211],[116,287,79,0.0166047913087002],[116,288,64,0.016517203639174576],[116,288,65,0.015552139129789104],[116,288,66,0.014670542750623086],[116,288,67,0.013883946145041319],[116,288,68,0.013210082409487676],[116,288,69,0.012673174523668276],[116,288,70,0.012292114832189912],[116,288,71,0.012080338980788669],[116,288,72,0.012046018856733147],[116,288,73,0.012192284593409514],[116,288,74,0.012517475272842837],[116,288,75,0.013015417909799876],[116,288,76,0.013675734253792685],[116,288,77,0.014484174901023007],[116,288,78,0.015422980167538137],[116,288,79,0.016471267137985714],[116,289,64,0.018769671958836803],[116,289,65,0.017792041326461516],[116,289,66,0.016884317726727483],[116,289,67,0.01605406688271484],[116,289,68,0.015315498844092694],[116,289,69,0.014690264450829734],[116,289,70,0.01419578194999629],[116,289,71,0.013845029294441372],[116,289,72,0.013646649172755746],[116,289,73,0.013605079804194615],[116,289,74,0.013720711258751553],[116,289,75,0.013990067016450307],[116,289,76,0.01440601043582527],[116,289,77,0.01495797575969894],[116,289,78,0.015632223247133464],[116,289,79,0.016412117984158786],[116,290,64,0.020858100830309246],[116,290,65,0.01987088345026258],[116,290,66,0.01894141142677951],[116,290,67,0.018073418673353898],[116,290,68,0.01727765801940525],[116,290,69,0.01657320589900525],[116,290,70,0.015975945557717846],[116,290,71,0.01549828519988944],[116,290,72,0.015149182446241196],[116,290,73,0.014934191180962909],[116,290,74,0.014855530666111814],[116,290,75,0.01491217675925048],[116,290,76,0.015099975029706341],[116,290,77,0.015411775529743774],[116,290,78,0.015837588939645486],[116,290,79,0.016364763770472975],[116,291,64,0.020293454081331222],[116,291,65,0.021296911710310982],[116,291,66,0.020734752152433342],[116,291,67,0.01983922907045438],[116,291,68,0.01899863864245589],[116,291,69,0.018229550447798823],[116,291,70,0.017546260834839036],[116,291,71,0.016960452075180422],[116,291,72,0.016481154076856692],[116,291,73,0.016114724372263016],[116,291,74,0.01586484635497005],[116,291,75,0.015732545703527515],[116,291,76,0.015716224895007822],[116,291,77,0.01581171567643269],[116,291,78,0.016012349328632592],[116,291,79,0.016309044524721594],[116,292,64,0.018845127085889517],[116,292,65,0.019842646320836894],[116,292,66,0.020797148295256956],[116,292,67,0.021276452515387505],[116,292,68,0.02040848548921025],[116,292,69,0.019594948018881696],[116,292,70,0.018848483818736068],[116,292,71,0.0181798336771854],[116,292,72,0.017597762134844437],[116,292,73,0.017108996908786023],[116,292,74,0.016718181100478322],[116,292,75,0.016427838197697185],[116,292,76,0.016238349853555843],[116,292,77,0.016147946398751296],[116,292,78,0.01615271001637657],[116,292,79,0.01624659048232317],[116,293,64,0.01782326884396053],[116,293,65,0.018802558108367153],[116,293,66,0.019742920267446402],[116,293,67,0.020652800739382603],[116,293,68,0.021458654483637],[116,293,69,0.020625351415850895],[116,293,70,0.01984351735528349],[116,293,71,0.019122697261312376],[116,293,72,0.018470982908510177],[116,293,73,0.017894945446827504],[116,293,74,0.01739957331126292],[116,293,75,0.016988215525054636],[116,293,76,0.01666253042554445],[116,293,77,0.016422439826534026],[116,293,78,0.01626608861525655],[116,293,79,0.016189809766059406],[116,294,64,0.017266708449582814],[116,294,65,0.018213343763389796],[116,294,66,0.01912169885953785],[116,294,67,0.02000466581269247],[116,294,68,0.020864768783531325],[116,294,69,0.021295584047764937],[116,294,70,0.020509946875181505],[116,294,71,0.019771754247278384],[116,294,72,0.01908797174147626],[116,294,73,0.018464421170419593],[116,294,74,0.01790574118275686],[116,294,75,0.017415343471099982],[116,294,76,0.016995364622068743],[116,294,77,0.016646613644632734],[116,294,78,0.016368515213315532],[116,294,79,0.016159048662136088],[116,295,64,0.017192080295415864],[116,295,65,0.01809017436676776],[116,295,66,0.01894707548686036],[116,295,67,0.019780273081855364],[116,295,68,0.020595298514461673],[116,295,69,0.021384089012658106],[116,295,70,0.02084275007431411],[116,295,71,0.020124817986216185],[116,295,72,0.019449645235480078],[116,295,73,0.01882167195137126],[116,295,74,0.018244440142478942],[116,295,75,0.01772060082963891],[116,295,76,0.017251904369950655],[116,295,77,0.016839173991355486],[116,295,78,0.016482262579156977],[116,295,79,0.01617999277607387],[116,296,64,0.017594992180411297],[116,296,65,0.018427837883506114],[116,296,66,0.019213050423041597],[116,296,67,0.019972788464932115],[116,296,68,0.020715343349276164],[116,296,69,0.021434154448508127],[116,296,70,0.020852181615258418],[116,296,71,0.02019363968749383],[116,296,72,0.019569445822042737],[116,296,73,0.018982012219281797],[116,296,74,0.018433014491825658],[116,296,75,0.017923489708305654],[116,296,76,0.01745390238883916],[116,296,77,0.017024178413280966],[116,296,78,0.016633706852608208],[116,296,79,0.01628130978073024],[116,297,64,0.01845102525980828],[116,297,65,0.019201711387920376],[116,297,66,0.019894973624715213],[116,297,67,0.020557614666977666],[116,297,68,0.021200367288432536],[116,297,69,0.021151288464029427],[116,297,70,0.020562833816286572],[116,297,71,0.020002923409356076],[116,297,72,0.01947228954661099],[116,297,73,0.018970681326477914],[116,297,74,0.018497143972582154],[116,297,75,0.01805024830684344],[116,297,76,0.01762827014078916],[116,297,77,0.017229319445036285],[116,297,78,0.016851419239325698],[116,297,79,0.01649253422504083],[116,298,64,0.019716564621581775],[116,298,65,0.02036856186125343],[116,298,66,0.020950313271547304],[116,298,67,0.02146085765437676],[116,298,68,0.020949325191051173],[116,298,69,0.020465999324200655],[116,298,70,0.02001287416332287],[116,298,71,0.019589520883121384],[116,298,72,0.019193697769009196],[116,298,73,0.01882189104581153],[116,298,74,0.01846978583034314],[116,298,75,0.018132666674862696],[116,298,76,0.01780574729391595],[116,298,77,0.017484429190874035],[116,298,78,0.017164489021742568],[116,298,79,0.016842194651688566],[116,299,64,0.02132945939282599],[116,299,65,0.021060462579898007],[116,299,66,0.020618781297740897],[116,299,67,0.020224583779149506],[116,299,68,0.019863485598966456],[116,299,69,0.01953966404198122],[116,299,70,0.019253460369818395],[116,299,71,0.019001806826633136],[116,299,72,0.018779113364633063],[116,299,73,0.01857806271270253],[116,299,74,0.018390312811673876],[116,299,75,0.01820710581013606],[116,299,76,0.01801978298447984],[116,299,77,0.017820205115029113],[116,299,78,0.01760107801553233],[116,299,79,0.017356183074847858],[116,300,64,0.019696003230223844],[116,300,65,0.019299863178346945],[116,300,66,0.01900414745513828],[116,300,67,0.018769322027660955],[116,300,68,0.018579871903682554],[116,300,69,0.01843993953167676],[116,300,70,0.018348333620025838],[116,300,71,0.018299235309572157],[116,300,72,0.018283401912337967],[116,300,73,0.018289254417241968],[116,300,74,0.018303847417611305],[116,300,75,0.018313720334206814],[116,300,76,0.018305629026249055],[116,300,77,0.018267157100184863],[116,300,78,0.018187206440324417],[116,300,79,0.01805636669557654],[116,301,64,0.01763706645835309],[116,301,65,0.017381757783504398],[116,301,66,0.017245460047595525],[116,301,67,0.017185086469256948],[116,301,68,0.017184498367513498],[116,301,69,0.017248190567891095],[116,301,70,0.01737359056342994],[116,301,71,0.017552077661788137],[116,301,72,0.017770538278080734],[116,301,73,0.018012778568204175],[116,301,74,0.01826079264358064],[116,301,75,0.018495884879709774],[116,301,76,0.01869964510269147],[116,301,77,0.018854775708351316],[116,301,78,0.01894577003611939],[116,301,79,0.0189594415826401],[116,302,64,0.015523982150705823],[116,302,65,0.015419341955439148],[116,302,66,0.015452637575282629],[116,302,67,0.015577679820588811],[116,302,68,0.015778213974857028],[116,302,69,0.016059456878361918],[116,302,70,0.016417634582972844],[116,302,71,0.016841342366822526],[116,302,72,0.017313478948853437],[116,302,73,0.0178130100892004],[116,302,74,0.018316559365690592],[116,302,75,0.01879982424399521],[116,302,76,0.01923881588707554],[116,302,77,0.01961092147662068],[116,302,78,0.01989578814322201],[116,302,79,0.02007602792099624],[116,303,64,0.013461971306929263],[116,303,65,0.013515568933033378],[116,303,66,0.013725518920581168],[116,303,67,0.014043015349641181],[116,303,68,0.014452178193600519],[116,303,69,0.014959282714796242],[116,303,70,0.015559549278224158],[116,303,71,0.01623886598754518],[116,303,72,0.016976121780837777],[116,303,73,0.017745339748013404],[116,303,74,0.018517607981457927],[116,303,75,0.019262805657083087],[116,303,76,0.019951122430011858],[116,303,77,0.020554369615382373],[116,303,78,0.021047082007958278],[116,303,79,0.021407409571960145],[116,304,64,0.011462806219683494],[116,304,65,0.011681558455759817],[116,304,66,0.012074343646870836],[116,304,67,0.01259029746718358],[116,304,68,0.013214394559687339],[116,304,69,0.013954254820965132],[116,304,70,0.014804266776808156],[116,304,71,0.015747691427626758],[116,304,72,0.016759409723593403],[116,304,73,0.01780844013316797],[116,304,74,0.01886022311474145],[116,304,75,0.0198786697471754],[116,304,76,0.02082797222305833],[116,304,77,0.021180376299948844],[116,304,78,0.02045074587614292],[116,304,79,0.01987933859359687],[116,305,64,0.009528936952477909],[116,305,65,0.009918959442712394],[116,305,66,0.010499812156102909],[116,305,67,0.011219191248400975],[116,305,68,0.012063383986460079],[116,305,69,0.013041583736739932],[116,305,70,0.01414749289551492],[116,305,71,0.015361823040610158],[116,305,72,0.016655467615383314],[116,305,73,0.01799241389171197],[116,305,74,0.019332390502005147],[116,305,75,0.02063324733819493],[116,305,76,0.02100963707386562],[116,305,77,0.01989595199336689],[116,305,78,0.018937168817323845],[116,305,79,0.018164638539725202],[116,306,64,0.007677471719998258],[116,306,65,0.008243486921824023],[116,306,66,0.009016022312564376],[116,306,67,0.009941985365139936],[116,306,68,0.011009394795968559],[116,306,69,0.012229184472603391],[116,306,70,0.013594490699624826],[116,306,71,0.015083559108751612],[116,306,72,0.01666334771073598],[116,306,73,0.018292838053695522],[116,306,74,0.019926050246841406],[116,306,75,0.021353352261399207],[116,306,76,0.01984507497475543],[116,306,77,0.018472894503963583],[116,306,78,0.017278571230220363],[116,306,79,0.016298305174114895],[116,307,64,0.0059358134121715814],[116,307,65,0.00668068749544396],[116,307,66,0.007646394111941157],[116,307,67,0.008779707374942535],[116,307,68,0.010070741558025514],[116,307,69,0.011532272699428218],[116,307,70,0.013156966804946048],[116,307,71,0.014920698351172582],[116,307,72,0.016786582491443897],[116,307,73,0.0187086842001512],[116,307,74,0.02063539957951236],[116,307,75,0.020348767194019974],[116,307,76,0.018563667836540714],[116,307,77,0.016931712994586526],[116,307,78,0.015500103226989035],[116,307,79,0.014309844598443462],[116,308,64,0.004337764117013156],[116,308,65,0.005262169992081053],[116,308,66,0.0064200531038831315],[116,308,67,0.007758688281913098],[116,308,68,0.00927058112397528],[116,308,69,0.010970383738050283],[116,308,70,0.012850364073793405],[116,308,71,0.014884134743691825],[116,308,72,0.017031106385925768],[116,308,73,0.019240587184471553],[116,308,74,0.021408244610306538],[116,308,75,0.019238888088024125],[116,308,76,0.017181835749918516],[116,308,77,0.015294485023966442],[116,308,78,0.013629310000788757],[116,308,79,0.012231972050703852],[116,309,64,0.002920097593818029],[116,309,65,0.004022301196020464],[116,309,66,0.005368672405838857],[116,309,67,0.006907576157268309],[116,309,68,0.00863412559634307],[116,309,69,0.01056481404677078],[116,309,70,0.012691560364452533],[116,309,71,0.014985840276722371],[116,309,72,0.017403545996645613],[116,309,73,0.019889461987623515],[116,309,74,0.020475848964217325],[116,309,75,0.018035011498321762],[116,309,76,0.01571707937898332],[116,309,77,0.013584849483313765],[116,309,78,0.011695785523887173],[116,309,79,0.010099941213952952],[116,310,64,0.0017195992815387988],[116,310,65,0.002995366201698841],[116,310,66,0.0045237728252730414],[116,310,67,0.006254798313076832],[116,310,68,0.008186291709605444],[116,310,69,0.010336484669451597],[116,310,70,0.012696972790485029],[116,310,71,0.015237235108202499],[116,310,72,0.017909878300715554],[116,310,73,0.020655468188525872],[116,310,74,0.01944413890520255],[116,310,75,0.016749432541173014],[116,310,76,0.014188036681664446],[116,310,77,0.011827735189980882],[116,310,78,0.009730581367065009],[116,310,79,0.007950646906307358],[116,311,64,7.705731118993617E-4],[116,311,65,0.0022131926465130377],[116,311,66,0.00391448033809161],[116,311,67,0.0058264712791387735],[116,311,68,0.007949785881353238],[116,311,69,0.010304225920318258],[116,311,70,0.012881066790754445],[116,311,71,0.015647944445485857],[116,311,72,0.018554456199166517],[116,311,73,0.021313366618854978],[116,311,74,0.018320393567809474],[116,311,75,0.015395527400377222],[116,311,76,0.012614255308368039],[116,311,77,0.010048825433483163],[116,311,78,0.007765370850145785],[116,311,79,0.005821501272652848],[116,312,64,1.0281413623171988E-4],[116,312,65,0.0017032378373777232],[116,312,66,0.0035657399563304095],[116,312,67,0.005644757643238706],[116,312,68,0.007943624030043676],[116,312,69,0.010483482446771998],[116,312,70,0.01325526920598792],[116,312,71,0.016224941416020947],[116,312,72,0.019339400748115677],[116,312,73,0.020313204411438],[116,312,74,0.0171132179644056],[116,312,75,0.013987531075797009],[116,312,76,0.011015680969228007],[116,312,77,0.008273758654429107],[116,312,78,0.0058313685907829685],[116,312,79,0.003749083429877592],[116,313,64,-2.59954227085607E-4],[116,313,65,0.0014871376065043714],[116,313,66,0.0034969848614890813],[116,313,67,0.005726668682592539],[116,313,68,0.008182085148700327],[116,313,69,0.01088543773164896],[116,313,70,0.01382728450610971],[116,313,71,0.01697207516444633],[116,313,72,0.02026435941299851],[116,313,73,0.019205779073106083],[116,313,74,0.015832281637188486],[116,313,75,0.01254001067041195],[116,313,76,0.009411861932256783],[116,313,77,0.006527065280944422],[116,313,78,0.0039580053364465006],[116,313,79,0.001767562310940527],[116,314,64,-3.0117965729378114E-4],[116,314,65,0.0015797156145431347],[116,314,66,0.0037212595852064716],[116,314,67,0.006083311642969479],[116,314,68,0.008674097576949487],[116,314,69,0.011516557074932755],[116,314,70,0.014600813317821584],[116,314,71,0.017889983446589534],[116,314,72,0.021326629748189628],[116,314,73,0.017997460244340707],[116,314,74,0.014487732351751678],[116,314,75,0.011067034365714028],[116,314,76,0.007820869641108135],[116,314,77,0.0048308405476391566],[116,314,78,0.0021713577406210953],[116,314,79,-9.310779340430496E-5],[116,315,64,-1.2118513402870604E-5],[116,315,65,0.0019884517687315194],[116,315,66,0.004244795990491456],[116,315,67,0.006719580515789732],[116,315,68,0.009423056930620004],[116,315,69,0.012378548135711542],[116,315,70,0.015575672467582258],[116,315,71,0.01897638908224272],[116,315,72,0.0203117098208094],[116,315,73,0.01669535788628949],[116,315,74,0.01308928496781827],[116,315,75,0.00958103603864624],[116,315,76,0.006257935219431545],[116,315,77,0.0032031528764986153],[116,315,78,4.923324761121922E-4],[116,315,79,-0.0018092197852340327],[116,316,64,6.079870597989881E-4],[116,316,65,0.0027134084447128248],[116,316,66,0.005067040849019069],[116,316,67,0.007634289226914707],[116,316,68,0.010427074733061207],[116,316,69,0.0134687382222852],[116,316,70,0.01674831588519205],[116,316,71,0.020226779782254935],[116,316,72,0.018986496119898406],[116,316,73,0.015306282838436965],[116,316,74,0.011644985396531856],[116,316,75,0.008091375223360784],[116,316,76,0.004733801355974766],[116,316,77,0.0016561871044820245],[116,316,78,-0.0010653962366131498],[116,316,79,-0.0033655755261537083],[116,317,64,0.0015521911712455198],[116,317,65,0.0037476132982136438],[116,317,66,0.0061811339279417765],[116,317,67,0.008820746288574582],[116,317,68,0.0116796569498979],[116,317,69,0.014780867696135387],[116,317,70,0.01811275591178988],[116,317,71,0.02118961657622434],[116,317,72,0.017540457126776012],[116,317,73,0.013835362190194505],[116,317,74,0.010159649268512021],[116,317,75,0.006602591814629248],[116,317,76,0.0032527887376461637],[116,317,77,1.941214962144176E-4],[116,317,78,-0.002497696972673813],[116,317,79,-0.004757978324978895],[116,318,64,0.0028065841959013975],[116,318,65,0.00507789763216097],[116,318,66,0.007574835698485761],[116,318,67,0.010267770182999856],[116,318,68,0.013170811864046797],[116,318,69,0.016306299108685265],[116,318,70,0.01966188482773005],[116,318,71,0.019626396243261825],[116,318,72,0.01597725658578759],[116,318,73,0.0122843089840086],[116,318,74,0.008632974589046185],[116,318,75,0.005112354543276426],[116,318,76,0.0018105758133620251],[116,318,77,-0.001189262921192388],[116,318,78,-0.0038125410213581904],[116,318,79,-0.00599595808284816],[116,319,64,0.004351489833086129],[116,319,65,0.00668618955177552],[116,319,66,0.009231904063866914],[116,319,67,0.011961145048236926],[116,319,68,0.014888587045673685],[116,319,69,0.018035642023396678],[116,319,70,0.02138919676530865],[116,319,71,0.017914751449986346],[116,319,72,0.014296819975904687],[116,319,73,0.010649345369376924],[116,319,74,0.007057327242409824],[116,319,75,0.003609101823848901],[116,319,76,3.916902261962082E-4],[116,319,77,-0.002513242623747592],[116,319,78,-0.005032814056609597],[116,319,79,-0.007105731517034361],[117,-64,64,-0.00149860308068214],[117,-64,65,-0.0017335837001470006],[117,-64,66,-0.001904353014419452],[117,-64,67,-0.0020202282053579427],[117,-64,68,-0.002064174365424014],[117,-64,69,-0.002004851662522114],[117,-64,70,-0.0018178477216457814],[117,-64,71,-0.0014858834337861026],[117,-64,72,-9.985039917286347E-4],[117,-64,73,-3.517168105965657E-4],[117,-64,74,4.5242435722359726E-4],[117,-64,75,0.0014062896850509311],[117,-64,76,0.002497198365540493],[117,-64,77,0.003707998867841052],[117,-64,78,0.005017704571875976],[117,-64,79,0.006402184875660169],[117,-63,64,-0.001321229053031521],[117,-63,65,-0.001515619736357486],[117,-63,66,-0.0016426845237058393],[117,-63,67,-0.001710731681661288],[117,-63,68,-0.0017031791374179984],[117,-63,69,-0.0015903787967383152],[117,-63,70,-0.0013497396478166226],[117,-63,71,-9.658414271621013E-4],[117,-63,72,-4.300630419053481E-4],[117,-63,73,2.5983673568620694E-4],[117,-63,74,0.001100186793119688],[117,-63,75,0.0020819198008009037],[117,-63,76,0.0031911371990857008],[117,-63,77,0.004409723202647453],[117,-63,78,0.005716007864914517],[117,-63,79,0.007085479137265604],[117,-62,64,-9.475357181928154E-4],[117,-62,65,-0.0011092871432109856],[117,-62,66,-0.0012022042203170622],[117,-62,67,-0.0012332777667006553],[117,-62,68,-0.001186445442916557],[117,-62,69,-0.0010340018196307896],[117,-62,70,-7.552731954758703E-4],[117,-62,71,-3.366559794475944E-4],[117,-62,72,2.2879386861881894E-4],[117,-62,73,9.418148479128162E-4],[117,-62,74,0.001797437722302878],[117,-62,75,0.002785527359744361],[117,-62,76,0.003891368736536457],[117,-62,77,0.005096297132189566],[117,-62,78,0.006378372437743834],[117,-62,79,0.007713097400690927],[117,-61,64,-3.8777890383111984E-4],[117,-61,65,-5.247015013202659E-4],[117,-61,66,-5.929110800221815E-4],[117,-61,67,-5.97815074705712E-4],[117,-61,68,-5.239172625516407E-4],[117,-61,69,-3.456483244540925E-4],[117,-61,70,-4.4302237143440536E-5],[117,-61,71,3.9198401122993973E-4],[117,-61,72,9.686576202498578E-4],[117,-61,73,0.0016852174131667184],[117,-61,74,0.002535721757496571],[117,-61,75,0.0035093371160580785],[117,-61,76,0.004590927273228561],[117,-61,77,0.005761683182206682],[117,-61,78,0.006999793282903681],[117,-61,79,0.008281154047519534],[117,-60,64,3.442664542315234E-4],[117,-60,65,2.2482469541975858E-4],[117,-60,66,1.723701879737382E-4],[117,-60,67,1.8329113535808445E-4],[117,-60,68,2.724869002347457E-4],[117,-60,69,4.63252381091791E-4],[117,-60,70,7.723153027782245E-4],[117,-60,71,0.0012098994697646772],[117,-60,72,0.0017801483223182117],[117,-60,73,0.002481586480260004],[117,-60,74,0.003307619467575599],[117,-60,75,0.00424707171432348],[117,-60,76,0.0052847628368021165],[117,-60,77,0.006402122103625571],[117,-60,78,0.007577840905015212],[117,-60,79,0.008788562955981967],[117,-59,64,0.0012322978688060406],[117,-59,65,0.0011238053920431155],[117,-59,66,0.0010790452532849866],[117,-59,67,0.0010963486184312173],[117,-59,68,0.0011899954062352279],[117,-59,69,0.0013809165171177053],[117,-59,70,0.0016838811199821801],[117,-59,71,0.0021075888337219336],[117,-59,72,0.002655072201019446],[117,-59,73,0.003324135704846168],[117,-59,74,0.00410783150181305],[117,-59,75,0.004994971954882964],[117,-59,76,0.005970678957622726],[117,-59,77,0.007016969953955586],[117,-59,78,0.008113380472038755],[117,-59,79,0.00923762290915691],[117,-58,64,0.0022586699473688765],[117,-58,65,0.0021557972426371787],[117,-58,66,0.002111998313925808],[117,-58,67,0.002127618280794599],[117,-58,68,0.0022162928374988957],[117,-58,69,0.00239653715146066],[117,-58,70,0.002681198677102986],[117,-58,71,0.003077566682348271],[117,-58,72,0.003587739833171487],[117,-58,73,0.004209029452254912],[117,-58,74,0.004934398633090369],[117,-58,75,0.005752937304355595],[117,-58,76,0.006650373253961056],[117,-58,77,0.007609619038613543],[117,-58,78,0.008611354623814379],[117,-58,79,0.00963464552161348],[117,-57,64,0.003405771961475855],[117,-57,65,0.0033048086223337763],[117,-57,66,0.0032570321127213414],[117,-57,67,0.0032647846467176176],[117,-57,68,0.0033410172091215377],[117,-57,69,0.003501799527567304],[117,-57,70,0.003758093810603785],[117,-57,71,0.004115873352937313],[117,-57,72,0.004576445843485338],[117,-57,73,0.005136811751462784],[117,-57,74,0.005790057994482492],[117,-57,75,0.00652578701132439],[117,-57,76,0.007330581281463786],[117,-57,77,0.008188503254418176],[117,-57,78,0.009081630575196462],[117,-57,79,0.009990626418314748],[117,-56,64,0.004654024419598047],[117,-56,65,0.0045528868406855705],[117,-56,66,0.004498041410175478],[117,-56,67,0.004493712889878049],[117,-56,68,0.004552098823549542],[117,-56,69,0.004686804245722655],[117,-56,70,0.004906932102262852],[117,-56,71,0.005217205934988591],[117,-56,72,0.005618243894760973],[117,-56,73,0.006106867200945335],[117,-56,74,0.006676443279027784],[117,-56,75,0.00731726373228713],[117,-56,76,0.008016957227932378],[117,-56,77,0.008760937303767357],[117,-56,78,0.009532885028936029],[117,-56,79,0.010315266382324731],[117,-55,64,0.005961077765914364],[117,-55,65,0.005856532339100529],[117,-55,66,0.005790611230067715],[117,-55,67,0.005769217350433286],[117,-55,68,0.005803715547426073],[117,-55,69,0.0059052856774154784],[117,-55,70,0.006081251543664572],[117,-55,71,0.0063351997764748025],[117,-55,72,0.006667198554248205],[117,-55,73,0.007074050298318872],[117,-55,74,0.007549578610575739],[117,-55,75,0.008084949652406678],[117,-55,76,0.008669028092958577],[117,-55,77,0.009288767684857327],[117,-55,78,0.009929636457043405],[117,-55,79,0.010576076447931107],[117,-54,64,0.007278681452839076],[117,-54,65,0.0071654138443869655],[117,-54,66,0.007082566876724629],[117,-54,67,0.007037444310757643],[117,-54,68,0.007040500585909452],[117,-54,69,0.007100604312467601],[117,-54,70,0.007223455570552019],[117,-54,71,0.00741168818287484],[117,-54,72,0.007665024264133375],[117,-54,73,0.007980462813403609],[117,-54,74,0.00835250267411695],[117,-54,75,0.008773400120536264],[117,-54,76,0.009233461263384334],[117,-54,77,0.009721369401132274],[117,-54,78,0.010224547378089739],[117,-54,79,0.010729554946528065],[117,-53,64,0.00856510893515277],[117,-53,65,0.008436233208081975],[117,-53,66,0.008329281304859566],[117,-53,67,0.008252622789362507],[117,-53,68,0.008215726535773066],[117,-53,69,0.008225324679352013],[117,-53,70,0.008285708412967129],[117,-53,71,0.00839879707828381],[117,-53,72,0.008564217582328053],[117,-53,73,0.00877941878236352],[117,-53,74,0.009039821243746877],[117,-53,75,0.009339002713555113],[117,-53,76,0.009668919589607805],[117,-53,77,0.010020164600745658],[117,-53,78,0.010382260850533778],[117,-53,79,0.010743992313619066],[117,-52,64,0.009785453361485568],[117,-52,65,0.009632985534557008],[117,-52,66,0.009493896418461406],[117,-52,67,0.009377243896712522],[117,-52,68,0.00929144010870886],[117,-52,69,0.009241303602151214],[117,-52,70,0.009229976133153463],[117,-52,71,0.009258939304527378],[117,-52,72,0.009328006542659866],[117,-52,73,0.009435352074259275],[117,-52,74,0.009577577416058143],[117,-52,75,0.009749815831041897],[117,-52,76,0.009945875143081165],[117,-52,77,0.010158419238696361],[117,-52,78,0.010379188520752904],[117,-52,79,0.01059925951488416],[117,-51,64,0.010911984678170599],[117,-51,65,0.01072727359680865],[117,-51,66,0.010547591269617901],[117,-51,67,0.010382279259868524],[117,-51,68,0.010238627617423689],[117,-51,69,0.01011980057589383],[117,-51,70,0.010028080983837555],[117,-51,71,0.009964813505098664],[117,-51,72,0.009930296160831806],[117,-51,73,0.009923712200857086],[117,-51,74,0.00994310295596539],[117,-51,75,0.009985382263824725],[117,-51,76,0.010046392998939512],[117,-51,77,0.010121006172434126],[117,-51,78,0.010203263000977991],[117,-51,79,0.010286560276701788],[117,-50,64,0.011924626775333139],[117,-50,65,0.011698742159343278],[117,-50,66,0.011469969801510774],[117,-50,67,0.011247518204445917],[117,-50,68,0.011037497916608867],[117,-50,69,0.010841703768356144],[117,-50,70,0.010661869038775553],[117,-50,71,0.01049951341053291],[117,-50,72,0.010355720972485475],[117,-50,73,0.010230963317662586],[117,-50,74,0.01012496855691203],[117,-50,75,0.010036637007965948],[117,-50,76,0.009964004254680662],[117,-50,77,0.009904252202544428],[117,-50,78,0.009853768684990598],[117,-50,79,0.009808256101431677],[117,-49,64,0.011082923917218962],[117,-49,65,0.011409517927437678],[117,-49,66,0.011745156794741354],[117,-49,67,0.011959391738770742],[117,-49,68,0.011675949734886296],[117,-49,69,0.011396672411516172],[117,-49,70,0.011123047319268038],[117,-49,71,0.010857065979416759],[117,-49,72,0.01060087645434505],[117,-49,73,0.010356487224925694],[117,-49,74,0.010125523390591034],[117,-49,75,0.009909036143427506],[117,-49,76,0.00970736639739573],[117,-49,77,0.009520063378569794],[117,-49,78,0.0093458589029601],[117,-49,79,0.009182697985956402],[117,-48,64,0.01033793126122003],[117,-48,65,0.010717839648038407],[117,-48,66,0.011112800264803154],[117,-48,67,0.011515094358479647],[117,-48,68,0.011921131949851362],[117,-48,69,0.01177878731055551],[117,-48,70,0.011410658680656745],[117,-48,71,0.011041726379129998],[117,-48,72,0.010675390928879864],[117,-48,73,0.010315350755097916],[117,-48,74,0.009965240500936078],[117,-48,75,0.009628330348644364],[117,-48,76,0.009307287424812318],[117,-48,77,0.009004000284433128],[117,-48,78,0.008719467379200235],[117,-48,79,0.008453750321785034],[117,-47,64,0.009770601230849682],[117,-47,65,0.010206152366167792],[117,-47,66,0.010661178654291024],[117,-47,67,0.011129337535888812],[117,-47,68,0.011608455289814055],[117,-47,69,0.01198803505869876],[117,-47,70,0.011529595048732135],[117,-47,71,0.011063461758355911],[117,-47,72,0.010594380642636477],[117,-47,73,0.010127793118237607],[117,-47,74,0.00966935600253137],[117,-47,75,0.00922453039683405],[117,-47,76,0.008798241290209603],[117,-47,77,0.008394609066006331],[117,-47,78,0.008016753992383434],[117,-47,79,0.007666674671706943],[117,-46,64,0.0093914396356386],[117,-46,65,0.009882210540415734],[117,-46,66,0.010395003760484247],[117,-46,67,0.010925244457411509],[117,-46,68,0.011472298552072789],[117,-46,69,0.012030557143039735],[117,-46,70,0.011490037782926588],[117,-46,71,0.010936578682407766],[117,-46,72,0.010376277224431863],[117,-46,73,0.00981628342711058],[117,-46,74,0.009264203051845285],[117,-46,75,0.008727578907920017],[117,-46,76,0.008213451818999422],[117,-46,77,0.007728002611212544],[117,-46,78,0.007276276368948142],[117,-46,79,0.006861990084429017],[117,-45,64,0.009202805940288062],[117,-45,65,0.009745969905019988],[117,-45,66,0.010311640715858548],[117,-45,67,0.010897376425967541],[117,-45,68,0.011504220394653913],[117,-45,69,0.011917930030571011],[117,-45,70,0.01130679444804919],[117,-45,71,0.010679125535543475],[117,-45,72,0.01004230432259348],[117,-45,73,0.009405079635425844],[117,-45,74,0.008776860438003136],[117,-45,75,0.008167095074831605],[117,-45,76,0.0075847390538326],[117,-45,77,0.0070378128897324675],[117,-45,78,0.006533051401729066],[117,-45,79,0.0060756457250775945],[117,-44,64,0.00919977294481014],[117,-44,65,0.009790435566148824],[117,-44,66,0.010401935585868688],[117,-44,67,0.011034294062605011],[117,-44,68,0.011690378581088573],[117,-44,69,0.011666449794799303],[117,-44,70,0.010998638310826448],[117,-44,71,0.010312295655127635],[117,-44,72,0.009615952833902274],[117,-44,73,0.008919783811230863],[117,-44,74,0.008234795166758367],[117,-44,75,0.007572110986258035],[117,-44,76,0.006942354774438444],[117,-44,77,0.006355130049298354],[117,-44,78,0.005818601137529201],[117,-44,79,0.005339175542468645],[117,-43,64,0.009370978475346297],[117,-43,65,0.010002502953902214],[117,-43,66,0.010651036678486072],[117,-43,67,0.011319350697207058],[117,-43,68,0.011979534500510092],[117,-43,69,0.011296419263030594],[117,-43,70,0.010587648697876316],[117,-43,71,0.009859829510930194],[117,-43,72,0.009122453233070232],[117,-43,73,0.008386892467035808],[117,-43,74,0.007665497987100189],[117,-43,75,0.006970798735917827],[117,-43,76,0.006314806633011592],[117,-43,77,0.0057084279674606015],[117,-43,78,0.005160982994966651],[117,-43,79,0.004679835198290943],[117,-42,64,0.009699471611450228],[117,-42,65,0.010363794107654195],[117,-42,66,0.011039211970856118],[117,-42,67,0.01173148281245442],[117,-42,68,0.011539031537806964],[117,-42,69,0.010831435622999774],[117,-42,70,0.010098550310753034],[117,-42,71,0.00934741420277483],[117,-42,72,0.008588243472981271],[117,-42,73,0.007833340631708643],[117,-42,74,0.007096110776110148],[117,-42,75,0.006390187477913874],[117,-42,76,0.005728670319427323],[117,-42,77,0.005123475935734753],[117,-42,78,0.004584804257067104],[117,-42,79,0.004120721472108292],[117,-41,64,0.010163556004935168],[117,-41,65,0.010851491803631885],[117,-41,66,0.011542665090751508],[117,-41,67,0.01170364604501343],[117,-41,68,0.01101372013516952],[117,-41,69,0.010297676393488985],[117,-41,70,0.009558049559628988],[117,-41,71,0.008802078516061441],[117,-41,72,0.00804043089310577],[117,-41,73,0.007286038317769864],[117,-41,74,0.006553044668236742],[117,-41,75,0.005855869560849276],[117,-41,76,0.005208389146794973],[117,-41,77,0.004623236132949363],[117,-41,78,0.004111220767201404],[117,-41,79,0.0036808743449224255],[117,-40,64,0.010737632865751313],[117,-40,65,0.011439174056035093],[117,-40,66,0.011783460371407936],[117,-40,67,0.011116793289325437],[117,-40,68,0.010431454828843308],[117,-40,69,0.009723181637277154],[117,-40,70,0.008994165950371844],[117,-40,71,0.008251581747719219],[117,-40,72,0.00750624654678529],[117,-40,73,0.006771398011720409],[117,-40,74,0.006061587790379861],[117,-40,75,0.005391694850338362],[117,-40,76,0.0047760604270817245],[117,-40,77,0.0042277465266203],[117,-40,78,0.003757919742256266],[117,-40,79,0.0033753619530820476],[117,-39,64,0.011393046201405153],[117,-39,65,0.011793389697976421],[117,-39,66,0.011140160943388384],[117,-39,67,0.010487653367709293],[117,-39,68,0.009821697720835132],[117,-39,69,0.00913713027656525],[117,-39,70,0.008435556540598129],[117,-39,71,0.0077237944952596675],[117,-39,72,0.007012490337822854],[117,-39,73,0.006314851794790768],[117,-39,74,0.005645501444376828],[117,-39,75,0.0050194523306506195],[117,-39,76,0.0044512079890169365],[117,-39,77,0.003953988825505171],[117,-39,78,0.003539086603571963],[117,-39,79,0.00321534859373646],[117,-38,64,0.011770325509366875],[117,-38,65,0.011106953314851467],[117,-38,66,0.010472139148338578],[117,-38,67,0.009846999691574357],[117,-38,68,0.009214747562365155],[117,-38,69,0.008569108361248683],[117,-38,70,0.007910831469052457],[117,-38,71,0.007246069589093516],[117,-38,72,0.006584965343291091],[117,-38,73,0.0059403566872709285],[117,-38,74,0.0053266035639057555],[117,-38,75,0.004758538061692901],[117,-38,76,0.0042505401764140706],[117,-38,77,0.0038157410933056324],[117,-38,78,0.003465355714313626],[117,-38,79,0.003208145952908708],[117,-37,64,0.011062408554706894],[117,-37,65,0.010415952649830517],[117,-37,66,0.009811198994033002],[117,-37,67,0.009226029660499678],[117,-37,68,0.008640959313197673],[117,-37,69,0.008048367139467497],[117,-37,70,0.007447858559774391],[117,-37,71,0.0068446013435446585],[117,-37,72,0.006247899693066509],[117,-37,73,0.005669886801734439],[117,-37,74,0.005124338263814475],[117,-37,75,0.004625608557688995],[117,-37,76,0.004187692654716543],[117,-37,77,0.0038234146230478223],[117,-37,78,0.0035437449017902386],[117,-37,79,0.0033572477177934083],[117,-36,64,0.010371811095809022],[117,-36,65,0.009752751723916576],[117,-36,66,0.00918906202416976],[117,-36,67,0.008655542095547959],[117,-36,68,0.0081299519070204],[117,-36,69,0.007603068788100317],[117,-36,70,0.007073055008309219],[117,-36,71,0.006543771305360633],[117,-36,72,0.006023354377620669],[117,-36,73,0.0055229108892943185],[117,-36,74,0.0050553302967108835],[117,-36,75,0.004634218648996316],[117,-36,76,0.004272955347197979],[117,-36,77,0.003983874664162751],[117,-36,78,0.003777573634944538],[117,-36,79,0.0036623477261796523],[117,-35,64,0.009730791664051955],[117,-35,65,0.00914905009188519],[117,-35,66,0.00863650812661866],[117,-35,67,0.008165101012044726],[117,-35,68,0.007709801973626701],[117,-35,69,0.007259517678661952],[117,-35,70,0.006810664172072123],[117,-35,71,0.0063654786903545495],[117,-35,72,0.005930615364408648],[117,-35,73,0.005515853868869676],[117,-35,74,0.005132923234641222],[117,-35,75,0.00479444288881233],[117,-35,76,0.004512982820105352],[117,-35,77,0.0043002445899585715],[117,-35,78,0.004166364721023774],[117,-35,79,0.004119341798138099],[117,-34,64,0.009170313770313014],[117,-34,65,0.008634992876610726],[117,-34,66,0.008182500595091161],[117,-34,67,0.007782183413005691],[117,-34,68,0.007406221299589149],[117,-34,69,0.007041375081789632],[117,-34,70,0.006682015511249517],[117,-34,71,0.006328453719466082],[117,-34,72,0.005985568420123971],[117,-34,73,0.005661540942612391],[117,-34,74,0.0053667002031254135],[117,-34,75,0.005112479572331327],[117,-34,76,0.004910487438358708],[117,-34,77,0.004771693092225634],[117,-34,78,0.004705729381470659],[117,-34,79,0.0047203133884229104],[117,-33,64,0.00871913345238093],[117,-33,65,0.0082382629062972],[117,-33,66,0.00785329309218754],[117,-33,67,0.007531308829300263],[117,-33,68,0.007241715850785523],[117,-33,69,0.00696885525154606],[117,-33,70,0.006704765760701094],[117,-33,71,0.006447552095376793],[117,-33,72,0.006200055061504997],[117,-33,73,0.005968622921496443],[117,-33,74,0.0057619860110485165],[117,-33,75,0.0055902364475277164],[117,-33,76,0.005463914620499579],[117,-33,77,0.005393203992399406],[117,-33,78,0.005387235565569093],[117,-33,79,0.005453503192608289],[117,-32,64,0.008402867012989831],[117,-32,65,0.007983152608041005],[117,-32,66,0.007671516221189587],[117,-32,67,0.007433148389011057],[117,-32,68,0.0072347242329402145],[117,-32,69,0.007057900879513714],[117,-32,70,0.0068921194575866564],[117,-32,71,0.006733028900221283],[117,-32,72,0.006581208091627994],[117,-32,73,0.006440981413936539],[117,-32,74,0.0063193295432307775],[117,-32,75,0.006224897214446133],[117,-32,76,0.006167099533663827],[117,-32,77,0.006155328265245292],[117,-32,78,0.0061982593615243714],[117,-32,79,0.006303262835954425],[117,-31,64,0.008243036652923379],[117,-31,65,0.007889613385448871],[117,-31,66,0.007655241485495101],[117,-31,67,0.007503611266676239],[117,-31,68,0.007398733530661907],[117,-31,69,0.007319335968489497],[117,-31,70,0.00725202700426409],[117,-31,71,0.007189790244273885],[117,-31,72,0.0071307652220698745],[117,-31,73,0.007077112567527577],[117,-31,74,0.007033965313245724],[117,-31,75,0.0070084679339780884],[117,-31,76,0.007008904586723443],[117,-31,77,0.007043917881672745],[117,-31,78,0.0071218193686691635],[117,-31,79,0.00724999277155705],[117,-30,64,0.008256091793070937],[117,-30,65,0.007972280295015908],[117,-30,66,0.00781702049864108],[117,-30,67,0.007752906443588056],[117,-30,68,0.007741370541695087],[117,-30,69,0.007757994246908193],[117,-30,70,0.007786358511777765],[117,-30,71,0.007816621055138064],[117,-30,72,0.0078443593343311],[117,-30,73,0.007869488099923227],[117,-30,74,0.007895253112546833],[117,-30,75,0.0079273024978946],[117,-30,76,0.007972837102661567],[117,-30,77,0.008039841092267084],[117,-30,78,0.008136393901561472],[117,-30,79,0.008270064513638153],[117,-29,64,0.00845240398182799],[117,-29,65,0.008239469936034364],[117,-29,66,0.008162897404838517],[117,-29,67,0.008184577803472462],[117,-29,68,0.008263466511662416],[117,-29,69,0.008371821328330564],[117,-29,70,0.008490051746377758],[117,-29,71,0.00860538746731293],[117,-29,72,0.008710783996855853],[117,-29,73,0.008803892409867939],[117,-29,74,0.008886094738545375],[117,-29,75,0.00896160634970872],[117,-29,76,0.009036646580013536],[117,-29,77,0.009118678792713539],[117,-29,78,0.009215720907113836],[117,-29,79,0.009335727333080957],[117,-28,64,0.008835233400215088],[117,-28,65,0.008692149582355178],[117,-28,66,0.008691392580245812],[117,-28,67,0.008794510694091297],[117,-28,68,0.008958093575855752],[117,-28,69,0.00915094891582051],[117,-28,70,0.009350232590367347],[117,-28,71,0.009540212353435239],[117,-28,72,0.009711232927235552],[117,-28,73,0.009858734623805272],[117,-28,74,0.009982326839278119],[117,-28,75,0.010084917691057784],[117,-28,76,0.010171900988091455],[117,-28,77,0.010250401636714486],[117,-28,78,0.010328580489762379],[117,-28,79,0.0104149995456584],[117,-27,64,0.009399665106937556],[117,-27,65,0.009322875711767759],[117,-27,66,0.00939245580924939],[117,-27,67,0.009569908205001126],[117,-27,68,0.009809571229046044],[117,-27,69,0.010076739459213694],[117,-27,70,0.010345306529570506],[117,-27,71,0.010596622631388894],[117,-27,72,0.010818512173114147],[117,-27,73,0.011004334507673753],[117,-27,74,0.011152088976060903],[117,-27,75,0.011263565461047802],[117,-27,76,0.01134354158200917],[117,-27,77,0.011399027591534404],[117,-27,78,0.011438559957284492],[117,-27,79,0.011471544529050833],[117,-26,64,0.010131513309740514],[117,-26,65,0.010114700230523374],[117,-26,66,0.01024638726822652],[117,-26,67,0.010488235545298432],[117,-26,68,0.010792441272251109],[117,-26,69,0.011120799794568766],[117,-26,70,0.011444019793259019],[117,-26,71,0.011740667086245339],[117,-26,72,0.011996223880324551],[117,-26,73,0.012130733386126],[117,-26,74,0.011980554892321566],[117,-26,75,0.011881047552313118],[117,-26,76,0.01182780056052436],[117,-26,77,0.011813671307376719],[117,-26,78,0.011829509964124223],[117,-26,79,0.011864844483212974],[117,-25,64,0.011006123159499412],[117,-25,65,0.011040022756873385],[117,-25,66,0.011222749829958651],[117,-25,67,0.011516199922380496],[117,-25,68,0.011870522631394233],[117,-25,69,0.012104241306210217],[117,-25,70,0.011750559654410844],[117,-25,71,0.01143247730405126],[117,-25,72,0.011166585067185607],[117,-25,73,0.010962965992909236],[117,-25,74,0.01082605951899501],[117,-25,75,0.010755498831608923],[117,-25,76,0.010746920349020566],[117,-25,77,0.010792744284395332],[117,-25,78,0.010882925289000724],[117,-25,79,0.011005672230194118],[117,-24,64,0.011985931707031168],[117,-24,65,0.012060425896849336],[117,-24,66,0.012084183819247914],[117,-24,67,0.011762446587534149],[117,-24,68,0.011381490278768938],[117,-24,69,0.0109861072536664],[117,-24,70,0.010611353733858074],[117,-24,71,0.01028347757149342],[117,-24,72,0.010020820583248454],[117,-24,73,0.009834703832619567],[117,-24,74,0.009730294732804533],[117,-24,75,0.00970745485449368],[117,-24,76,0.009761567342207412],[117,-24,77,0.009884342869509764],[117,-24,78,0.010064603097467232],[117,-24,79,0.010289040641966606],[117,-23,64,0.011366883482504933],[117,-23,65,0.011270830659928078],[117,-23,66,0.01102923579125373],[117,-23,67,0.010679568204046239],[117,-23,68,0.010275252966463465],[117,-23,69,0.00986399750585618],[117,-23,70,0.009483323123356199],[117,-23,71,0.009161443675362233],[117,-23,72,0.008918162783311605],[117,-23,73,0.008765760797263338],[117,-23,74,0.008709870382467743],[117,-23,75,0.008750339598576132],[117,-23,76,0.008882081348998375],[117,-23,77,0.009095908093358656],[117,-23,78,0.0093793507391329],[117,-23,79,0.009717460659365866],[117,-22,64,0.010355709715762567],[117,-22,65,0.01023097083676309],[117,-22,66,0.009965850475383675],[117,-22,67,0.009597265453317976],[117,-22,68,0.009179959625437677],[117,-22,69,0.00876420382232163],[117,-22,70,0.008389666082252598],[117,-22,71,0.00808624108492895],[117,-22,72,0.007874941739546448],[117,-22,73,0.00776878719157897],[117,-22,74,0.0077736861081822446],[117,-22,75,0.007889314091265942],[117,-22,76,0.008109984063897296],[117,-22,77,0.008425508480149571],[117,-22,78,0.008822052221025809],[117,-22,79,0.00928297505979466],[117,-21,64,0.009359626728380543],[117,-21,65,0.009209150851406202],[117,-21,66,0.008925262186738368],[117,-21,67,0.008544089988074363],[117,-21,68,0.008121271626462987],[117,-21,69,0.007709231122337056],[117,-21,70,0.007349446328878309],[117,-21,71,0.007073222037421645],[117,-21,72,0.006902568585956601],[117,-21,73,0.006851083910508891],[117,-21,74,0.006924837892636419],[117,-21,75,0.007123257833353684],[117,-21,76,0.0074400138684889375],[117,-21,77,0.007863903133241828],[117,-21,78,0.008379731484919889],[117,-21,79,0.008969191602746368],[117,-20,64,0.008413256551460505],[117,-20,65,0.008237408206481901],[117,-20,66,0.007936743052445228],[117,-20,67,0.007546334047217801],[117,-20,68,0.007122230047136278],[117,-20,69,0.006718554917779836],[117,-20,70,0.006378252990834179],[117,-20,71,0.006133792379725959],[117,-20,72,0.0060080168034148404],[117,-20,73,0.006015008713072765],[117,-20,74,0.006160962578452012],[117,-20,75,0.0064450671542053625],[117,-20,76,0.006860395517566003],[117,-20,77,0.007394801648221202],[117,-20,78,0.008031822309446355],[117,-20,79,0.008751582987013097],[117,-19,64,0.007550813507717926],[117,-19,65,0.007347180409849713],[117,-19,66,0.007028665826213467],[117,-19,67,0.0066290002269998845],[117,-19,68,0.006204127144753003],[117,-19,69,0.005809391932523909],[117,-19,70,0.005488870816915551],[117,-19,71,0.005275984929539796],[117,-19,72,0.005194305373434928],[117,-19,73,0.005258378755767068],[117,-19,74,0.005474572064366851],[117,-19,75,0.005841935712985311],[117,-19,76,0.006353083535168525],[117,-19,77,0.006995088470103489],[117,-19,78,0.007750392656370911],[117,-19,79,0.008597730631834947],[117,-18,64,0.006807361901104398],[117,-18,65,0.006570477440299001],[117,-18,66,0.0062295874913141595],[117,-18,67,0.005816790439125205],[117,-18,68,0.0053873951562808],[117,-18,69,0.004997485688708425],[117,-18,70,0.0046919623078952475],[117,-18,71,0.004505040885139268],[117,-18,72,0.004460985201070254],[117,-18,73,0.004574870661633753],[117,-18,74,0.004853378342374071],[117,-18,75,0.005295618210540533],[117,-18,76,0.005893980309819903],[117,-18,77,0.0066350126362994585],[117,-18,78,0.007500324387477162],[117,-18,79,0.00846751322954274],[117,-17,64,0.006204316129643037],[117,-17,65,0.005926354407624836],[117,-17,66,0.0055559027099474955],[117,-17,67,0.0051231525595918995],[117,-17,68,0.0046822510074870285],[117,-17,69,0.004289537274746836],[117,-17,70,0.003990447099170729],[117,-17,71,0.0038198683763441526],[117,-17,72,0.0038027707341668263],[117,-17,73,0.003954879558010777],[117,-17,74,0.00428339345982169],[117,-17,75,0.004787744088225077],[117,-17,76,0.00546039708784531],[117,-17,77,0.006287692935728886],[117,-17,78,0.007250726312098867],[117,-17,79,0.00832626260267704],[117,-16,64,0.005706461312766737],[117,-16,65,0.005381100902183559],[117,-16,66,0.004975797790193199],[117,-16,67,0.004518606187033466],[117,-16,68,0.0040619741076031324],[117,-16,69,0.003661957838711369],[117,-16,70,0.0033641692182478275],[117,-16,71,0.0032039633366139583],[117,-16,72,0.0032069393995232927],[117,-16,73,0.003389500866810068],[117,-16,74,0.003759473953954806],[117,-16,75,0.004316783458983752],[117,-16,76,0.005054184760490971],[117,-16,77,0.005958050724136288],[117,-16,78,0.007009212156457924],[117,-16,79,0.00818385035749623],[117,-15,64,0.0052750106004585155],[117,-15,65,0.004898182539240797],[117,-15,66,0.004455380473641129],[117,-15,67,0.003972335823043437],[117,-15,68,0.003499255007465715],[117,-15,69,0.0030913199771503736],[117,-15,70,0.002793883408931485],[117,-15,71,0.0026424707793950737],[117,-15,72,0.002663132103497783],[117,-15,73,0.0028728690711864635],[117,-15,74,0.003280136777673809],[117,-15,75,0.00388541908810182],[117,-15,76,0.0046818765292647195],[117,-15,77,0.0056560654614833455],[117,-15,78,0.006788727154265164],[117,-15,79,0.00805564527162896],[117,-14,64,0.0048823685449421745],[117,-14,65,0.004451973081763599],[117,-14,66,0.003971187291388151],[117,-14,67,0.003463273258251744],[117,-14,68,0.0029756599402126845],[117,-14,69,0.002562030744975974],[117,-14,70,0.0022669907322943163],[117,-14,71,0.0021258713158424196],[117,-14,72,0.002164917562661774],[117,-14,73,0.0024015678334521865],[117,-14,74,0.0028448250786987975],[117,-14,75,0.0034957189175747485],[117,-14,76,0.0043478574450966576],[117,-14,77,0.0053880675400081735],[117,-14,78,0.006597122283251869],[117,-14,79,0.007950553946547688],[117,-13,64,0.004510117091711639],[117,-13,65,0.0040257660010144455],[117,-13,66,0.0035082514031666012],[117,-13,67,0.0029782533912324515],[117,-13,68,0.002479906570426775],[117,-13,69,0.002064759334439357],[117,-13,70,0.0017761494039699795],[117,-13,71,0.0016488048334620685],[117,-13,72,0.0017088562567575416],[117,-13,73,0.001973958775406511],[117,-13,74,0.0024535229302075834],[117,-13,75,0.003149053973962345],[117,-13,76,0.004054598447165438],[117,-13,77,0.005157296850556369],[117,-13,78,0.00643804101134489],[117,-13,79,0.007872234555686702],[117,-12,64,0.004147174169311594],[117,-12,65,0.0036099561881438144],[117,-12,66,0.0030583363220619483],[117,-12,67,0.002510329722929119],[117,-12,68,0.002006290970763502],[117,-12,69,0.001595004943449551],[117,-12,70,0.0013180119762430348],[117,-12,71,0.0012090037803989431],[117,-12,72,0.0012936543811303794],[117,-12,73,0.001589577915899624],[117,-12,74,0.0021064128621860146],[117,-12,75,0.0028460320061608224],[117,-12,76,0.0038028772120925042],[117,-12,77,0.004964417809201483],[117,-12,78,0.0063117311805818855],[117,-12,79,0.00782020392021656],[117,-11,64,0.003788125259049503],[117,-11,65,0.003200392099112059],[117,-11,66,0.002618335728553463],[117,-11,67,0.002057249675614127],[117,-11,68,0.0015532659414949923],[117,-11,69,0.0011518049313436179],[117,-11,70,8.920889591209521E-4],[117,-11,71,8.063361578396499E-4],[117,-11,72,9.194079216610076E-4],[117,-11,73,0.0012485999224267706],[117,-11,74,0.0018035763987521757],[117,-11,75,0.002586447123221062],[117,-11,76,0.00359198616656211],[117,-11,77,0.004807991299591229],[117,-11,78,0.006215782606953739],[117,-11,79,0.007790838634101442],[117,-10,64,0.003431728965486455],[117,-10,65,0.0027968992489573554],[117,-10,66,0.0021888401965935293],[117,-10,67,0.0016200904806380268],[117,-10,68,0.0011221713503789066],[117,-10,69,7.365838787919735E-4],[117,-10,70,4.997394393034879E-4],[117,-10,71,4.41958723449186E-4],[117,-10,72,5.869373012614827E-4],[117,-10,73,9.513705756279188E-4],[117,-10,74,0.0015447379561245051],[117,-10,75,0.0023692457514295252],[117,-10,76,0.0034199279588046586],[117,-10,77,0.004684903817167462],[117,-10,78,0.006145790690006609],[117,-10,79,0.00777827055890467],[117,-9,64,0.003079598208959141],[117,-9,65,0.002401976567127344],[117,-9,66,0.0017728722369933978],[117,-9,67,0.001202056939870818],[117,-9,68,7.161176998275662E-4],[117,-9,69,3.5214465730355174E-4],[117,-9,70,1.432896940007688E-4],[117,-9,71,1.1758128611389582E-4],[117,-9,72,2.97213354020784E-4],[117,-9,73,6.980080731521603E-4],[117,-9,74,0.0013290525957137078],[117,-9,75,0.002192509274554477],[117,-9,76,0.003283598627766268],[117,-9,77,0.004590753938648042],[117,-9,78,0.006095946053748616],[117,-9,79,0.007775176625168342],[117,-8,64,0.002735059218434832],[117,-8,65,0.0020196676792770254],[117,-8,66,0.0013747916055816358],[117,-8,67,8.074428880159693E-4],[117,-8,68,3.3902462193678224E-4],[117,-8,69,1.803069475721464E-6],[117,-8,70,-1.7471879508415756E-4],[117,-8,71,-1.6515667606193212E-4],[117,-8,72,5.0875668969702065E-5],[117,-8,73,4.8807401083091257E-4],[117,-8,74,0.0011549382560043701],[117,-8,75,0.0020534537610476405],[117,-8,76,0.0031789586534525073],[117,-8,77,0.004520196084904243],[117,-8,78,0.00605954998188697],[117,-8,79,0.0077734625135123265],[117,-7,64,0.002402191012552057],[117,-7,65,0.0016546096885251373],[117,-7,66,9.99373321472715E-4],[117,-7,67,4.4075866306921084E-4],[117,-7,68,-5.183544079216956E-6],[117,-7,69,-3.1133195963865265E-4],[117,-7,70,-4.5215014662132366E-4],[117,-7,71,-4.051955191849942E-4],[117,-7,72,-1.5215539197841152E-4],[117,-7,73,3.2031507286393434E-4],[117,-7,74,0.001019953204418402],[117,-7,75,0.0019484472166867196],[117,-7,76,0.003101192018171152],[117,-7,77,0.004467241398629833],[117,-7,78,0.006029455167425356],[117,-7,79,0.00776483944738478],[117,-6,64,0.0020850485145635766],[117,-6,65,0.0013112624865264516],[117,-6,66,6.510612903034411E-4],[117,-6,67,1.0602732622508267E-4],[117,-6,68,-3.1322252677912113E-4],[117,-6,69,-5.849302803004872E-4],[117,-6,70,-6.877615824715169E-4],[117,-6,71,-6.024492107027933E-4],[117,-6,72,-3.129714602628608E-4],[117,-6,73,1.9247663709115857E-4],[117,-6,74,9.207195551455563E-4],[117,-6,75,0.0018730448302194213],[117,-6,76,0.00304485335646925],[117,-6,77,0.004425515420963863],[117,-6,78,0.005998431070912498],[117,-6,79,0.007741293013145227],[117,-5,64,0.0017870728487697097],[117,-5,65,9.933220276190087E-4],[117,-5,66,3.33400824334468E-4],[117,-5,67,-1.937472434672636E-4],[117,-5,68,-5.829303207493576E-4],[117,-5,69,-8.178618092100784E-4],[117,-5,70,-8.815552065536355E-4],[117,-5,71,-7.580812738033108E-4],[117,-5,72,-4.3387196008655546E-4],[117,-5,73,1.0118965470953792E-4],[117,-5,74,8.528937899087555E-4],[117,-5,75,0.0018220427026155788],[117,-5,76,0.0030040032217694187],[117,-5,77,0.0043884721245529695],[117,-5,78,0.005959452974979205],[117,-5,79,0.007695442634486411],[117,-4,64,0.0015106927075657843],[117,-4,65,7.033213434596636E-4],[117,-4,66,4.8653691696678684E-5],[117,-4,67,-4.569369244518547E-4],[117,-4,68,-8.135835663992012E-4],[117,-4,69,-0.0010104642290478252],[117,-4,70,-0.0010349913789472712],[117,-4,71,-8.746605704175385E-4],[117,-4,72,-5.184610106742842E-4],[117,-4,73,4.193229426795509E-5],[117,-4,74,8.111852946916681E-4],[117,-4,75,0.001789550567112517],[117,-4,76,0.002972331450340468],[117,-4,77,0.004349563745460028],[117,-4,78,0.005905913637055565],[117,-4,79,0.007620790069721175],[117,-3,64,0.0012571209549658397],[117,-3,65,4.424233565741714E-4],[117,-3,66,-2.0240039349285724E-4],[117,-3,67,-6.834668709953887E-4],[117,-3,68,-0.0010060446113463095],[117,-3,69,-0.001164653872815443],[117,-3,70,-0.0011510607908546133],[117,-3,71,-9.561944112208302E-4],[117,-3,72,-5.716433540738092E-4],[117,-3,73,9.067945678231602E-6],[117,-3,74,7.894239854718761E-4],[117,-3,75,0.0017690840169196371],[117,-3,76,0.002943268558597139],[117,-3,77,0.004302365753927371],[117,-3,78,0.005831756279204419],[117,-3,79,0.007511855074871116],[117,-2,64,0.001026350839911007],[117,-2,65,2.1040976468611166E-4],[117,-2,66,-4.2047171423730234E-4],[117,-2,67,-8.748100380358016E-4],[117,-2,68,-0.001162735553995758],[117,-2,69,-0.0012838763848381778],[117,-2,70,-0.0012342121811417246],[117,-2,71,-0.0010080363402667838],[117,-2,72,-5.995171189414113E-4],[117,-2,73,-4.03874047858889E-6],[117,-2,74,7.806781388212828E-4],[117,-2,75,0.0017536767597780753],[117,-2,76,0.0029100850681079444],[117,-2,77,0.004240656215367642],[117,-2,78,0.005731527515740441],[117,-2,79,0.007364196185521976],[117,-1,64,8.173563262095786E-4],[117,-1,65,5.870409003805553E-6],[117,-1,66,-6.075736565915026E-4],[117,-1,67,-0.0010337946332469533],[117,-1,68,-0.0012874354331873065],[117,-1,69,-0.0013728936236580378],[117,-1,70,-0.0012901325223083433],[117,-1,71,-0.0010366658462313313],[117,-1,72,-6.091611556334407E-4],[117,-1,73,-4.826051712546134E-6],[117,-1,74,7.774235676974197E-4],[117,-1,75,0.0017360134131091229],[117,-1,76,0.0028659786144266987],[117,-1,77,0.004158448719218697],[117,-1,78,0.005600348707694426],[117,-1,79,0.00717431441887316],[117,0,64,6.28501100926459E-4],[117,0,65,-1.73402395759721E-4],[117,0,66,-7.666366377071595E-4],[117,0,67,-0.0011642203450899968],[117,0,68,-0.0013848966578649338],[117,0,69,-0.0014374032071053124],[117,0,70,-0.0013253764463235316],[117,0,71,-0.00104933720467464],[117,0,72,-6.083146423962337E-4],[117,0,73,-1.2579024981230491E-6],[117,0,74,7.717652876572146E-4],[117,0,75,0.0017085833397578445],[117,0,76,0.0028041486612525373],[117,0,77,0.0040499779955737196],[117,0,78,0.005433804150184066],[117,0,79,0.006939437587116158],[117,1,64,4.581612901489086E-4],[117,1,65,-3.298104651839963E-4],[117,1,66,-9.009194971938998E-4],[117,1,67,-0.0012702805710938314],[117,1,68,-0.0014602783485372596],[117,1,69,-0.0014834887017483784],[117,1,70,-0.0013468431356637677],[117,1,71,-0.0010535957958812243],[117,1,72,-6.049473214440722E-4],[117,1,73,-1.463277490455542E-6],[117,1,74,7.557136175750937E-4],[117,1,75,0.0016638577952719758],[117,1,76,0.002717861539764378],[117,1,77,0.003909641511678871],[117,1,78,0.0052277500787522345],[117,1,79,0.0066571900188788944],[117,2,64,3.0556591598733686E-4],[117,2,65,-4.6513512344634005E-4],[117,2,66,-0.0010132175186714294],[117,2,67,-0.001355790649811378],[117,2,68,-0.0015183970317662163],[117,2,69,-0.0015169010059175236],[117,2,70,-0.001361101055092696],[117,2,71,-0.0010566618506862282],[117,2,72,-6.067196648549175E-4],[117,2,73,-1.329085895462043E-5],[117,2,74,7.215173659991618E-4],[117,2,75,0.0015944943254754226],[117,2,76,0.0026005112417330943],[117,2,77,0.0037319041625065237],[117,2,78,0.004978053480181504],[117,2,79,0.00632515871643167],[117,3,64,1.7185423985577E-4],[117,3,65,-5.795024772586867E-4],[117,3,66,-0.0011048512829811479],[117,3,67,-0.0014232020007966394],[117,3,68,-0.0015627726251921485],[117,3,69,-0.0015421490547171974],[117,3,70,-0.0013735409005390877],[117,3,71,-0.0010646662519577805],[117,3,72,-6.203238255263148E-4],[117,3,73,-4.3777879076076795E-5],[117,3,74,6.620449441089104E-4],[117,3,75,0.0014935472479874676],[117,3,76,0.002445640976866561],[117,3,77,0.0035111155362797905],[117,3,78,0.004680193103444982],[117,3,79,0.005940269897719512],[117,4,64,6.136372559903778E-5],[117,4,65,-6.701239400278121E-4],[117,4,66,-0.0011744386986549094],[117,4,67,-0.0014724095200681793],[117,4,68,-0.0015944802236524582],[117,4,69,-0.0015614117223423439],[117,4,70,-0.0013873681966643065],[117,4,71,-0.0010817475327175197],[117,4,72,-6.507103282195988E-4],[117,4,73,-9.853202808826102E-5],[117,4,74,5.712226604362619E-4],[117,4,75,0.001354703515097684],[117,4,76,0.0022469567462695254],[117,4,77,0.003241284785619774],[117,4,78,0.004328783169195922],[117,4,79,0.005498053394361583],[117,5,64,-1.684970687056238E-5],[117,5,65,-7.298103165858658E-4],[117,5,66,-0.0012164483712591625],[117,5,67,-0.0014993501474656154],[117,5,68,-0.0016108053317407658],[117,5,69,-0.0015732683476210134],[117,5,70,-0.0014024328641754195],[117,5,71,-0.0011090074503941935],[117,5,72,-7.001981373385959E-4],[117,5,73,-1.810245337006633E-4],[117,5,74,4.445313698424364E-4],[117,5,75,0.0011725441842273434],[117,5,76,0.001998331986079507],[117,5,77,0.002915810776883396],[117,5,78,0.003917015883217813],[117,5,79,0.0049917892877842235],[117,6,64,-4.7255924095839035E-5],[117,6,65,-7.452547068917159E-4],[117,6,66,-0.0012195284773847848],[117,6,67,-0.0014943860948368444],[117,6,68,-0.0016036957507896356],[117,6,69,-0.0015712412092250482],[117,6,70,-0.0014138896096181853],[117,6,71,-0.0011433199335532766],[117,6,72,-7.674642663771164E-4],[117,6,73,-2.9179237376184745E-4],[117,6,74,2.795612921916041E-4],[117,6,75,9.428286736868645E-4],[117,6,76,0.0016937974254750555],[117,6,77,0.002527158261366489],[117,6,78,0.0034360097684016915],[117,6,79,0.004411519788209124],[117,7,64,-5.688336226477225E-6],[117,7,65,-6.942206438851932E-4],[117,7,66,-0.001163118425811765],[117,7,67,-0.0014383717186699722],[117,7,68,-0.0015552730044299948],[117,7,69,-0.0015387155928102889],[117,7,70,-0.0014064796376134243],[117,7,71,-0.0011709277650258797],[117,7,72,-8.404180194749757E-4],[117,7,73,-4.2056859544750214E-4],[117,7,74,8.462656367405372E-5],[117,7,75,6.718318657381541E-4],[117,7,76,0.0013375540848277838],[117,7,77,0.002077476162237874],[117,7,78,0.0028859403275487694],[117,7,79,0.003755579747578217],[117,8,64,1.3672639333283572E-4],[117,8,65,-5.467834974426207E-4],[117,8,66,-0.0010162329129476985],[117,8,67,-0.0012990643784868262],[117,8,68,-0.0014317659002773904],[117,8,69,-0.0014401504357499123],[117,8,70,-0.0013426975426338787],[117,8,71,-0.0011522248220970086],[117,8,72,-8.772820845865717E-4],[117,8,73,-5.234047362793413E-4],[117,8,74,-9.422542455316767E-5],[117,8,75,4.075566799014659E-4],[117,8,76,9.793492499956648E-4],[117,8,77,0.0016179827718382077],[117,8,78,0.002319168745815899],[117,8,79,0.0030770994329047106],[117,9,64,4.0193559646573E-4],[117,9,65,-2.791452275908348E-4],[117,9,66,-7.532161139527453E-4],[117,9,67,-0.001048747725790631],[117,9,68,-0.0012030826199132265],[117,9,69,-0.0012427529645587653],[117,9,70,-0.0011867494438834775],[117,9,71,-0.001048168591822265],[117,9,72,-8.35591142999375E-4],[117,9,73,-5.543264931309849E-4],[117,9,74,-2.0752226234534878E-4],[117,9,75,2.02861718635286E-4],[117,9,76,6.752153550687546E-4],[117,9,77,0.001207576202873318],[117,9,78,0.0017970630729836831],[117,9,79,0.002439444742160027],[117,10,64,8.04858589644325E-4],[117,10,65,1.2529705074331232E-4],[117,10,66,-3.557005528129125E-4],[117,10,67,-6.670683902026649E-4],[117,10,68,-8.465806357871488E-4],[117,10,69,-9.212811072781612E-4],[117,10,70,-9.105080127131659E-4],[117,10,71,-8.275098908173307E-4],[117,10,72,-6.80805176301627E-4],[117,10,73,-4.754146686882537E-4],[117,10,74,-2.1396585681402597E-4],[117,10,75,1.0233163507045265E-4],[117,10,76,4.7283990160175773E-4],[117,10,77,8.967760245616211E-4],[117,10,78,0.0013726245660416947],[117,10,79,0.001897678803055149],[117,11,64,0.001356008359061246],[117,11,65,6.785813805076907E-4],[117,11,66,1.9000578632833524E-4],[117,11,67,-1.3846372438974152E-4],[117,11,68,-3.445583316787514E-4],[117,11,69,-4.5562469190296137E-4],[117,11,70,-4.912107226229432E-4],[117,11,71,-4.6463663317183434E-4],[117,11,72,-3.843274299453041E-4],[117,11,73,-2.550254490276362E-4],[117,11,74,-7.888183601661545E-5],[117,11,75,1.435738072347349E-4],[117,11,76,4.1258609068258557E-4],[117,11,77,7.284490052611751E-4],[117,11,78,0.0010909034892142811],[117,11,79,0.0014986570048152053],[117,12,64,0.002064386105607201],[117,12,65,0.0013910797186131268],[117,12,66,8.957942179098833E-4],[117,12,67,5.50663142844515E-4],[117,12,68,3.184941368671528E-4],[117,12,69,1.7183951084558935E-4],[117,12,70,9.105092888762938E-5],[117,12,71,6.27719874206172E-5],[117,12,72,7.864571225504603E-5],[117,12,73,1.341341625333228E-4],[117,12,74,2.2745124065310483E-4],[117,12,75,3.5860952355339765E-4],[117,12,76,5.285816479736093E-4],[117,12,77,7.385765021425715E-4],[117,12,78,9.894302007285782E-4],[117,12,79,0.0012811115508547036],[117,13,64,0.002940654065147999],[117,13,65,0.0022746703196407235],[117,13,66,0.00177489690946111],[117,13,67,0.0014150255564187783],[117,13,68,0.0011588889611263123],[117,13,69,9.79122639307562E-4],[117,13,70,8.560543935319702E-4],[117,13,71,7.762834058257151E-4],[117,13,72,7.314447004366904E-4],[117,13,73,7.170766917114929E-4],[117,13,74,7.315929185400626E-4],[117,13,75,7.753588026101413E-4],[117,13,76,8.498740040528571E-4],[117,13,77,9.570606864987416E-4],[117,13,78,0.0010986577458377029],[117,13,79,0.0012757208049874477],[117,14,64,0.0040005927395853555],[117,14,65,0.0033461898617834275],[117,14,66,0.0028453012744514674],[117,14,67,0.0024737987918363],[117,14,68,0.002196985468120352],[117,14,69,0.0019877338897537934],[117,14,70,0.0018263862782256428],[117,14,71,0.0016994462825901699],[117,14,72,0.001598420726578238],[117,14,73,0.0015187538325608324],[117,14,74,0.0014588550076449725],[117,14,75,0.0014192210369218322],[117,14,76,0.0014016532887876434],[117,14,77,0.0014085702986867405],[117,14,78,0.0014424158621284455],[117,14,79,0.0015051625371074724],[117,15,64,0.005272156852323938],[117,15,65,0.004634332484008633],[117,15,66,0.004136378682605725],[117,15,67,0.0037568696874829602],[117,15,68,0.003462961240337201],[117,15,69,0.003227886315223853],[117,15,70,0.0030320129982836018],[117,15,71,0.0028616763007241175],[117,15,72,0.0027081190249952794],[117,15,73,0.002566512578927674],[117,15,74,0.002435058788641411],[117,15,75,0.002314173550064727],[117,15,76,0.0022057529476523564],[117,15,77,0.002112522258519394],[117,15,78,0.0020374680520275157],[117,15,79,0.001983353390345413],[117,16,64,0.006794903659673355],[117,16,65,0.00617867460790223],[117,16,66,0.0056873511615863105],[117,16,67,0.0053026175950787475],[117,16,68,0.004993818831953333],[117,16,69,0.004734687935366483],[117,16,70,0.004505668368377797],[117,16,71,0.004292908694187726],[117,16,72,0.004087320975059989],[117,16,73,0.0038837048303583164],[117,16,74,0.0036799381554876495],[117,16,75,0.0034762353268029127],[117,16,76,0.0032744735400247553],[117,16,77,0.003077587752298659],[117,16,78,0.002889034521814],[117,16,79,0.0027123248650670994],[117,17,64,0.00858849439900918],[117,17,65,0.007998701601336347],[117,17,66,0.007517253944810919],[117,17,67,0.007129239876668536],[117,17,68,0.00680648792204698],[117,17,69,0.006523396274989923],[117,17,70,0.006260580537607383],[117,17,71,0.006004048626934469],[117,17,72,0.005744390863482318],[117,17,73,0.005476019978813812],[117,17,74,0.005196461984043232],[117,17,75,0.004905698702848826],[117,17,76,0.004605562632882988],[117,17,77,0.004299184659020032],[117,17,78,0.003990495001474156],[117,17,79,0.0036837776423603924],[117,18,64,0.010649518650764323],[117,18,65,0.010090784868118576],[117,18,66,0.009622143973258604],[117,18,67,0.009232272055888753],[117,18,68,0.008895730135150317],[117,18,69,0.008587766421081966],[117,18,70,0.008289303540980272],[117,18,71,0.007986305707718737],[117,18,72,0.007669110764867115],[117,18,73,0.0073317952878178185],[117,18,74,0.006971573614873571],[117,18,75,0.0065882315857053435],[117,18,76,0.006183595665969075],[117,18,77,0.0057610380365451085],[117,18,78,0.0053250181243047045],[117,18,79,0.004880660949109486],[117,19,64,0.012955166665103332],[117,19,65,0.012431846716251794],[117,19,66,0.011978728605019036],[117,19,67,0.011588153135035579],[117,19,68,0.011237614313025385],[117,19,69,0.010903409148336138],[117,19,70,0.010566931408039744],[117,19,71,0.010214238121068388],[117,19,72,0.009835530276087521],[117,19,73,0.009424648931255181],[117,19,74,0.008978587535958985],[117,19,75,0.008497021212319295],[117,19,76,0.007981853689111345],[117,19,77,0.007436782522862468],[117,19,78,0.006866883180368146],[117,19,79,0.006278212494007474],[117,20,64,0.012194371030743037],[117,20,65,0.012659905238477617],[117,20,66,0.013074312527759684],[117,20,67,0.013441638257013496],[117,20,68,0.013781335217325262],[117,20,69,0.013431023137405391],[117,20,70,0.013054196138001212],[117,20,71,0.01264869213510741],[117,20,72,0.012204724806156461],[117,20,73,0.011716036307245199],[117,20,74,0.01117952542303393],[117,20,75,0.01059487448987605],[117,20,76,0.009964175797479411],[117,20,77,0.009291558160370536],[117,20,78,0.008582814332321121],[117,20,79,0.007845029914625668],[117,21,64,0.009616917139720745],[117,21,65,0.010039531715924607],[117,21,66,0.010433548906850679],[117,21,67,0.010799491007685102],[117,21,68,0.011153630694748295],[117,21,69,0.011516985368311148],[117,21,70,0.011906687498845436],[117,21,71,0.012336016741942409],[117,21,72,0.012814614810488036],[117,21,73,0.013348721169146288],[117,21,74,0.01352739162321008],[117,21,75,0.012836275354707547],[117,21,76,0.012086787042271356],[117,21,77,0.011283600750497601],[117,21,78,0.010433328712477489],[117,21,79,0.009544175442670218],[117,22,64,0.0069460209797971885],[117,22,65,0.00732255128988486],[117,22,66,0.0076938618891708895],[117,22,67,0.008057155259891651],[117,22,68,0.008425479130077488],[117,22,69,0.008818185694101411],[117,22,70,0.009251352954591936],[117,22,71,0.009737623205902724],[117,22,72,0.010286267928747409],[117,22,73,0.010903291400736396],[117,22,74,0.011591572465541102],[117,22,75,0.012351043817129282],[117,22,76,0.013178908074684588],[117,22,77,0.013365827929144786],[117,22,78,0.012374099919854133],[117,22,79,0.011334315613526396],[117,23,64,0.0042484161991496894],[117,23,65,0.004576198666367852],[117,23,66,0.004922593005968823],[117,23,67,0.0052817617239017175],[117,23,68,0.005663535593476765],[117,23,69,0.006085410123278605],[117,23,70,0.006562209523236961],[117,23,71,0.007105741375484109],[117,23,72,0.007724716590267545],[117,23,73,0.008424725373449612],[117,23,74,0.009208268732977478],[117,23,75,0.01007484492030035],[117,23,76,0.011021090077671988],[117,23,77,0.012040972244763715],[117,23,78,0.013126037769162359],[117,23,79,0.01317089793927469],[117,24,64,0.0015941815818487734],[117,24,65,0.0018711089346415792],[117,24,66,0.002190510030299251],[117,24,67,0.002543853705385924],[117,24,68,0.0029378136362591635],[117,24,69,0.003387854201595688],[117,24,70,0.003907355671748484],[117,24,71,0.004507098260336922],[117,24,72,0.005195044556365174],[117,24,73,0.005976194349438295],[117,24,74,0.006852511460618664],[117,24,75,0.007822922016920636],[117,24,76,0.008883383440165713],[117,24,77,0.010027023262359401],[117,24,78,0.011244346731350378],[117,24,79,0.01252351203376363],[117,25,64,-9.459880818167111E-4],[117,25,65,-7.214179354866112E-4],[117,25,66,-4.3091585719839373E-4],[117,25,67,-8.530486215118422E-5],[117,25,68,3.190414390236158E-4],[117,25,69,7.95404197158973E-4],[117,25,70,0.001355544727837449],[117,25,71,0.0020090341165084936],[117,25,72,0.0027629076923271242],[117,25,73,0.0036214070703681303],[117,25,74,0.004585809459615957],[117,25,75,0.0056543437192365575],[117,25,76,0.006822192438878885],[117,25,77,0.00808157912184228],[117,25,78,0.009421939364618156],[117,25,79,0.010830174754337878],[117,26,64,-0.003303344138857217],[117,26,65,-0.0031319884425901863],[117,26,66,-0.0028720733041663767],[117,26,67,-0.0025362679472384748],[117,26,68,-0.00212383642918334],[117,26,69,-0.001623805942278529],[117,26,70,-0.0010261888027733544],[117,26,71,-3.227885727437692E-4],[117,26,72,4.923379269637868E-4],[117,26,73,0.0014225198798882175],[117,26,74,0.0024682127942954168],[117,26,75,0.0036268394100715654],[117,26,76,0.004892730478757681],[117,26,77,0.00625716447143677],[117,26,78,0.007708505050204423],[117,26,79,0.009232434934910844],[117,27,64,-0.00541347599606545],[117,27,65,-0.005295519644760422],[117,27,66,-0.0050676114882694705],[117,27,67,-0.0047437897784845355],[117,27,68,-0.004326009142227943],[117,27,69,-0.0038056994541602837],[117,27,70,-0.003174776617181342],[117,27,71,-0.0024265636213631632],[117,27,72,-0.0015563559404749721],[117,27,73,-5.618736362252879E-4],[117,27,74,5.563996924257121E-4],[117,27,75,0.0017949906931511335],[117,27,76,0.003147322080903175],[117,27,77,0.0046037095360217046],[117,27,78,0.006151468471720064],[117,27,79,0.007775129230431785],[117,28,64,-0.007218529333402667],[117,28,65,-0.007153472627365182],[117,28,66,-0.006958675081475356],[117,28,67,-0.006649048025688919],[117,28,68,-0.006228998868679678],[117,28,69,-0.005692420953474902],[117,28,70,-0.0050332355170441415],[117,28,71,-0.004246405351894438],[117,28,72,-0.003328589166047595],[117,28,73,-0.002278672506092809],[117,28,74,-0.001098175302257735],[117,28,75,2.0846359322477658E-4],[117,28,76,0.0016337242011530452],[117,28,77,0.0031669645811296106],[117,28,78,0.004794500131129101],[117,28,79,0.006499801527220411],[117,29,64,-0.008669246842686542],[117,29,65,-0.00865591169539743],[117,29,66,-0.008494969980810401],[117,29,67,-0.008201704502547995],[117,29,68,-0.007782706076870177],[117,29,69,-0.007234357163549974],[117,29,70,-0.006552655365979186],[117,29,71,-0.005734296397994535],[117,29,72,-0.0047774020365672675],[117,29,73,-0.0036821164937818934],[117,29,74,-0.0024510711928384973],[117,29,75,-0.0010897182679928093],[117,29,76,3.9346656730820267E-4],[117,29,77,0.001986910828823536],[117,29,78,0.0036760004960865677],[117,29,79,0.0054432621462688685],[117,30,64,-0.009726827431254748],[117,30,65,-0.00976338533428977],[117,30,66,-0.009636655998742588],[117,30,67,-0.009361799774751468],[117,30,68,-0.008947297510356701],[117,30,69,-0.008392011082958558],[117,30,70,-0.007694053330296034],[117,30,71,-0.00685191670533973],[117,30,72,-0.005865258929446488],[117,30,73,-0.004735550993763693],[117,30,74,-0.0034665874246109707],[117,30,75,-0.0020648590812257397],[117,30,76,-5.397890956780517E-4],[117,30,77,0.0010961671076660535],[117,30,78,0.0028275564647391484],[117,30,79,0.004636096056359779],[117,31,64,-0.010364599525168898],[117,31,65,-0.010448624668132655],[117,31,66,-0.010356062384257781],[117,31,67,-0.010101477730799283],[117,31,68,-0.009694933123067588],[117,31,69,-0.009137726160335877],[117,31,70,-0.008430091310578923],[117,31,71,-0.007572351027778328],[117,31,72,-0.006565743195117018],[117,31,73,-0.005413106925846119],[117,31,74,-0.004119426574580086],[117,31,75,-0.0026922341764650404],[117,31,76,-0.0011418708848375942],[117,31,77,5.183916830319386E-4],[117,31,78,0.002272368960533272],[117,31,79,0.00410111827294756],[117,32,64,-0.010569503797375661],[117,32,65,-0.010698054824801741],[117,32,66,-0.010639221718617716],[117,32,67,-0.01040653584087514],[117,32,68,-0.01001132792943786],[117,32,69,-0.009457256716264193],[117,32,70,-0.008746653143956267],[117,32,71,-0.007881671896747091],[117,32,72,-0.00686514529430357],[117,32,73,-0.005701293569871252],[117,32,74,-0.004396291329094802],[117,32,75,-0.002958690357229481],[117,32,76,-0.0013996993021787145],[117,32,77,2.6667889386965333E-4],[117,32,78,0.002023650613317597],[117,32,79,0.00385177472367531],[117,33,64,-0.010343380339052929],[117,33,65,-0.010513114299589461],[117,33,66,-0.01048721740369242],[117,33,67,-0.010277796497480436],[117,33,68,-0.009897144390514985],[117,33,69,-0.00935118051752972],[117,33,70,-0.008644277826987208],[117,33,71,-0.007780394719735415],[117,33,72,-0.006763941311775125],[117,33,73,-0.0056005019844057235],[117,33,74,-0.004297413968212244],[117,33,75,-0.002864202080427206],[117,33,76,-0.0013128700965884179],[117,33,77,3.419504156037218E-4],[117,33,78,0.0020829926425946525],[117,33,79,0.003890486984270832],[117,34,64,-0.009704054992694168],[117,34,65,-0.00991137709811689],[117,34,66,-0.009917339641189045],[117,34,67,-0.009732294505723766],[117,34,68,-0.009369210627658997],[117,34,69,-0.008836149079140671],[117,34,70,-0.008139444681885004],[117,34,71,-0.007284801342575615],[117,34,72,-0.006278158657081928],[117,34,73,-0.005126416356222351],[117,34,74,-0.0038380162954745425],[117,34,75,-0.0024233820613632786],[117,34,76,-8.952166260035105E-4],[117,34,77,7.313411742584169E-4],[117,34,78,0.00243870023279562],[117,34,79,0.0042069394285839555],[117,35,64,-0.00868621927853652],[117,35,65,-0.008927472140813289],[117,35,66,-0.00896404449326527],[117,35,67,-0.00880427547632302],[117,35,68,-0.008461559436115186],[117,35,69,-0.00794597094839498],[117,35,70,-0.0072657060689462205],[117,35,71,-0.0064281280949664435],[117,35,72,-0.005440625455300741],[117,35,73,-0.004311330331303022],[117,35,74,-0.0030496976707111855],[117,35,75,-0.0016669446209235962],[117,35,76,-1.763507606908333E-4],[117,35,77,0.001406580152159957],[117,35,78,0.003064095877536336],[117,35,79,0.004776307492840389],[117,36,64,-0.007342098076528504],[117,36,65,-0.007613794129925396],[117,36,66,-0.007679710323739931],[117,36,67,-0.007545999575271171],[117,36,68,-0.007226282766063364],[117,36,69,-0.0067325229175175146],[117,36,70,-0.006074662939890622],[117,36,71,-0.005261614032983593],[117,36,72,-0.004302099830757513],[117,36,73,-0.0032053650868578347],[117,36,74,-0.0019817485243573698],[117,36,75,-6.431198282527386E-4],[117,36,76,7.96818896602242E-4],[117,36,77,0.0023223665489504075],[117,36,78,0.00391579036865476],[117,36,79,0.005557425925985937],[117,37,64,-0.00574189897859266],[117,37,65,-0.00604099982032099],[117,37,66,-0.006135185648848103],[117,37,67,-0.0060283448051532814],[117,37,68,-0.0057341960530683375],[117,37,69,-0.0052664838211492265],[117,37,70,-0.004636778234368992],[117,37,71,-0.0038554048002194187],[117,37,72,-0.0029322749976421233],[117,37,73,-0.0018775856207272148],[117,37,74,-7.023864575413626E-4],[117,37,75,5.809837700979116E-4],[117,37,76,0.001958592945335698],[117,37,77,0.003414741991374337],[117,37,78,0.004931921315125414],[117,37,79,0.006490896084426535],[117,38,64,-0.00397192200753795],[117,38,65,-0.004296094116241989],[117,38,66,-0.004417866979002048],[117,38,67,-0.004338885679137798],[117,38,68,-0.004072926560072984],[117,38,69,-0.0036354458692983804],[117,38,70,-0.0030395284598018577],[117,38,71,-0.0022967649200224326],[117,38,72,-0.001418075182345529],[117,38,73,-4.1440489645484926E-4],[117,38,74,7.027059056617493E-4],[117,38,75,0.0019206819898171025],[117,38,76,0.003225599755453704],[117,38,77,0.0046020012243748725],[117,38,78,0.006032834381369155],[117,38,79,0.007499518785434434],[117,39,64,-0.002088632335414111],[117,39,65,-0.0024349799119813306],[117,39,66,-0.0025829040390687123],[117,39,67,-0.0025318237500487075],[117,39,68,-0.0022955926448137666],[117,39,69,-0.0018913914140758078],[117,39,70,-0.0013337670754440252],[117,39,71,-6.354663192900524E-4],[117,39,72,1.9173796404457302E-4],[117,39,73,0.0011363438422197461],[117,39,74,0.0021865417259140712],[117,39,75,0.00332976019380562],[117,39,76,0.004552336151308422],[117,39,77,0.005839308909918206],[117,39,78,0.00717433748172675],[117,39,79,0.00853974010860138],[117,40,64,-1.1401722020548609E-4],[117,40,65,-4.7788231211858104E-4],[117,40,66,-6.486653047559164E-4],[117,40,67,-6.234908999859537E-4],[117,40,68,-4.163274512744188E-4],[117,40,69,-4.6185736072330175E-5],[117,40,70,4.708897612236122E-4],[117,40,71,0.0011210252818419162],[117,40,72,0.0018916792797091296],[117,40,73,0.0027709243617400235],[117,40,74,0.003746850307035366],[117,40,75,0.0048070884680563395],[117,40,76,0.005938457543536254],[117,40,77,0.007126730411192092],[117,40,78,0.008356521420597746],[117,40,79,0.009611293275403566],[117,41,64,0.0019251276202806057],[117,41,65,0.0015497993260080508],[117,41,66,0.001361013873811293],[117,41,67,0.0013640609256772133],[117,41,68,0.0015448063494358053],[117,41,69,0.0018822409039692544],[117,41,70,0.002358722970741451],[117,41,71,0.0029592173750637727],[117,41,72,0.0036704372512033137],[117,41,73,0.004480103303264961],[117,41,74,0.005376321185242853],[117,41,75,0.006347077406589191],[117,41,76,0.0073798538613492025],[117,41,77,0.008461360781593387],[117,41,78,0.009577387631861119],[117,41,79,0.010712771193079444],[117,42,64,0.003998846123034849],[117,42,65,0.003619053973488768],[117,42,66,0.0034182935396980963],[117,42,67,0.0034044071336465647],[117,42,68,0.0035630319396957873],[117,42,69,0.0038709559704948777],[117,42,70,0.004308798321915034],[117,42,71,0.00486028124538001],[117,42,72,0.005511346522910466],[117,42,73,0.006249386222997723],[117,42,74,0.007062588670068672],[117,42,75,0.007939400148472815],[117,42,76,0.00886810255822094],[117,42,77,0.009836506946305388],[117,42,78,0.010831762556581236],[117,42,79,0.011840280775295458],[117,43,64,0.006077777986299547],[117,43,65,0.0057009934123879455],[117,43,66,0.00549501784159489],[117,43,67,0.0054703739296570655],[117,43,68,0.0056123960123404485],[117,43,69,0.005895451072013002],[117,43,70,0.006298252611694067],[117,43,71,0.006803166755119828],[117,43,72,0.007395299268491964],[117,43,73,0.00806169386452254],[117,43,74,0.00879064273964738],[117,43,75,0.009571109988704129],[117,43,76,0.010392268242258453],[117,43,77,0.01124314858221822],[117,43,78,0.012112403513577542],[117,43,79,0.012988182506426705],[117,44,64,0.008137128697937089],[117,44,65,0.007770796792185297],[117,44,66,0.00756660852846985],[117,44,67,0.007537859160034565],[117,44,68,0.007669494161515655],[117,44,69,0.007933244359927217],[117,44,70,0.008305742194860825],[117,44,71,0.008767864214477637],[117,44,72,0.009303787017586263],[117,44,73,0.009900151169977589],[117,44,74,0.010545334169383202],[117,44,75,0.011228833232548122],[117,44,76,0.011940758383783615],[117,44,77,0.012671436039030317],[117,44,78,0.013411123005012928],[117,44,79,0.014149830551789661],[117,45,64,0.010160857232796687],[117,45,65,0.009811869059552168],[117,45,66,0.00961616704793581],[117,45,67,0.009589854342998845],[117,45,68,0.009717387721055598],[117,45,69,0.009967662486092595],[117,45,70,0.01031505725635355],[117,45,71,0.010738816497167767],[117,45,72,0.011222075817093525],[117,45,73,0.011750991589015833],[117,45,74,0.012313976095903458],[117,45,75,0.012901039106622028],[117,45,76,0.013503236498889338],[117,45,77,0.01411222626610873],[117,45,78,0.014719931974440492],[117,45,79,0.014484041495142087],[117,46,64,0.012146084794858372],[117,46,65,0.011820216691436292],[117,46,66,0.011638788704400254],[117,46,67,0.011620671325112925],[117,46,68,0.011749715411654586],[117,46,69,0.011991805354963808],[117,46,70,0.012318904888091104],[117,46,71,0.012708484243502483],[117,46,72,0.01314251730772131],[117,46,73,0.013606578966488213],[117,46,74,0.014089043963870835],[117,46,75,0.014580388312332566],[117,46,76,0.014942989031303535],[117,46,77,0.014427402040123466],[117,46,78,0.013922277710992427],[117,46,79,0.013433719626275861],[117,47,64,0.014091012608973372],[117,47,65,0.01379272000255214],[117,47,66,0.01363022480648153],[117,47,67,0.013625042088073032],[117,47,68,0.013760284871106351],[117,47,69,0.013998684674568133],[117,47,70,0.014309650099418177],[117,47,71,0.014668743824392615],[117,47,72,0.015056656052314812],[117,47,73,0.014745545529408377],[117,47,74,0.014320103475820129],[117,47,75,0.013899575019464256],[117,47,76,0.013491157176116271],[117,47,77,0.013100599047299679],[117,47,78,0.012732639576092383],[117,47,79,0.01239134524152205],[117,48,64,0.0144486285347537],[117,48,65,0.014717024850926476],[117,48,66,0.014855019902824939],[117,48,67,0.014838662479275488],[117,48,68,0.014685732723366356],[117,48,69,0.014436775934898465],[117,48,70,0.014125083848435808],[117,48,71,0.013777162311831941],[117,48,72,0.013413775316120985],[117,48,73,0.013050898902541606],[117,48,74,0.012700583395842945],[117,48,75,0.01237172267848539],[117,48,76,0.012070729482318862],[117,48,77,0.011802115931115723],[117,48,78,0.011568978817208541],[117,48,79,0.011373389336542103],[117,49,64,0.012846051089287016],[117,49,65,0.01307981450517824],[117,49,66,0.013190306599275241],[117,49,67,0.013151325392181187],[117,49,68,0.0129816053564149],[117,49,69,0.01272494813335472],[117,49,70,0.012417360902547426],[117,49,71,0.012087463204240092],[117,49,72,0.011757540590623833],[117,49,73,0.011444513981009135],[117,49,74,0.011160823075330523],[117,49,75,0.010915222432836883],[117,49,76,0.010713489072638527],[117,49,77,0.010559040698382366],[117,49,78,0.010453463889090159],[117,49,79,0.010396951830340909],[117,50,64,0.011438026333222441],[117,50,65,0.011633391298917118],[117,50,66,0.011711387661183159],[117,50,67,0.011643825372911516],[117,50,68,0.011450469642266977],[117,50,69,0.011178331311670049],[117,50,70,0.010866141677268642],[117,50,71,0.010544693404402833],[117,50,72,0.010237894902093893],[117,50,73,0.009963746637478345],[117,50,74,0.009735237667459505],[117,50,75,0.009561160902800377],[117,50,76,0.009446845856011105],[117,50,77,0.009394807857235012],[117,50,78,0.009405312950419617],[117,50,79,0.009476857903708204],[117,51,64,0.010260154194556555],[117,51,65,0.010413822164718596],[117,51,66,0.010454569787657023],[117,51,67,0.01035252094749267],[117,51,68,0.010128526401595422],[117,51,69,0.009832694966941988],[117,51,70,0.009506441028605586],[117,51,71,0.009182755210900952],[117,51,72,0.008887249883758061],[117,51,73,0.008639133150269002],[117,51,74,0.008452109535898724],[117,51,75,0.008335205821996547],[117,51,76,0.008293520687339496],[117,51,77,0.008328897040145432],[117,51,78,0.00844051613795551],[117,51,79,0.008625412802462642],[117,52,64,0.00933755797401066],[117,52,65,0.009446830199977453],[117,52,66,0.00944601576863732],[117,52,67,0.00930388688624531],[117,52,68,0.00904241292085555],[117,52,69,0.008714629473566117],[117,52,70,0.008364544299619085],[117,52,71,0.008027334335842077],[117,52,72,0.00773037244698191],[117,52,73,0.007494189387981921],[117,52,74,0.007333369168127028],[117,52,75,0.007257376208265102],[117,52,76,0.0072713128872500385],[117,52,77,0.0073766062771239566],[117,52,78,0.0075716230671430025],[117,52,79,0.007852211873137798],[117,53,64,0.00868510823236313],[117,53,65,0.00874798847602172],[117,53,66,0.008701906795855184],[117,53,67,0.008514641453420787],[117,53,68,0.008209291742084877],[117,53,69,0.007841594883648486],[117,53,70,0.0074580163775759545],[117,53,71,0.007095871085659775],[117,53,72,0.0067843214002287515],[117,53,73,0.0065453174403706385],[117,53,74,0.006394477450756625],[117,53,75,0.00634190676529966],[117,53,76,0.006392953885795176],[117,53,77,0.006548902412786077],[117,53,78,0.006807597751075817],[117,53,79,0.007164007694297767],[117,54,64,0.008307773239976057],[117,54,65,0.00832304113304253],[117,54,66,0.00822873193942488],[117,54,67,0.007992000402380498],[117,54,68,0.00763706553087393],[117,54,69,0.0072220945944915585],[117,54,70,0.006795833628210205],[117,54,71,0.006397651480230507],[117,54,72,0.0060585000083968246],[117,54,73,0.005801823076271689],[117,54,74,0.005644412535516912],[117,54,75,0.005597209550759065],[117,54,76,0.005666049793441641],[117,54,77,0.005852351201310667],[117,54,78,0.0061537431691889395],[117,54,79,0.0065646362034045445],[117,55,64,0.008201099277191403],[117,55,65,0.008168355136994689],[117,55,66,0.008023708231193966],[117,55,67,0.007734061213663635],[117,55,68,0.007324721567851674],[117,55,69,0.006855977458853385],[117,55,70,0.006378642287495699],[117,55,71,0.005934021863398529],[117,55,72,0.005554827981558969],[117,55,73,0.00526604741362905],[117,55,74,0.005085764535358369],[117,55,75,0.005025935962917644],[117,55,76,0.005093115723287577],[117,55,77,0.005289129636722688],[117,55,78,0.005611697741650943],[117,55,79,0.006055003743208319],[117,56,64,0.008351823987953654],[117,56,65,0.008271505993648485],[117,56,66,0.00807533472106945],[117,56,67,0.0077303210051394705],[117,56,68,0.007262809348287601],[117,56,69,0.006734871860892042],[117,56,70,0.006199146846887572],[117,56,71,0.005698730522086925],[117,56,72,0.005268036354711026],[117,56,73,0.004933616167438319],[117,56,74,0.004714941278599747],[117,56,75,0.004625142093271882],[117,56,76,0.004671704689687178],[117,56,77,0.004857123081827748],[117,56,78,0.0051795059745841044],[117,56,79,0.005633136962520601],[117,57,64,0.008738625878702236],[117,57,65,0.008612000609474016],[117,57,66,0.008364083772739247],[117,57,67,0.007962331450095598],[117,57,68,0.007434054688231253],[117,57,69,0.006842755202359427],[117,57,70,0.006242631898038538],[117,57,71,0.005678399770024644],[117,57,72,0.0051860886679977345],[117,57,73,0.004793809798293992],[117,57,74,0.004522488314637773],[117,57,75,0.004386560466355717],[117,57,76,0.004394633889795427],[117,57,77,0.004550109746998528],[117,57,78,0.004851765534490145],[117,57,79,0.005294297503529173],[117,58,64,0.009333012920357202],[117,58,65,0.009162140359058839],[117,58,66,0.008863232740511052],[117,58,67,0.008404493920516022],[117,58,68,0.007814113623879581],[117,58,69,0.00715666213953513],[117,58,70,0.006487620807319539],[117,58,71,0.005853131865465226],[117,58,72,0.005290731779714505],[117,58,73,0.004830057816796109],[117,58,74,0.004493526307087725],[117,58,75,0.004296981139932307],[117,58,76,0.0042503111355749],[117,58,77,0.004358035039464964],[117,58,78,0.004619852987222238],[117,58,79,0.005031163391177665],[117,59,64,0.010100353053288378],[117,59,65,0.009888027264441],[117,59,66,0.009539839019489894],[117,59,67,0.009024997928995707],[117,59,68,0.008372469253569721],[117,59,69,0.007647534781522694],[117,59,70,0.006906674468946659],[117,59,71,0.006197252019934126],[117,59,72,0.005558179541953397],[117,59,73,0.005020560407092871],[117,59,74,0.004608308869022714],[117,59,75,0.004338745068401474],[117,59,76,0.004223164144192622],[117,59,77,0.004267378254452749],[117,59,78,0.004472230397191408],[117,59,79,0.004834079009257572],[117,60,64,0.011001049213856024],[117,60,65,0.010750716013385911],[117,60,66,0.010355861287267138],[117,60,67,0.009786905773926954],[117,60,68,0.009073474509092483],[117,60,69,0.008281217904965102],[117,60,70,0.007467333238179843],[117,60,71,0.00668019161700715],[117,60,72,0.00595993244100855],[117,60,73,0.005339040416194094],[117,60,74,0.004842903790081487],[117,60,75,0.00449035253950914],[117,60,76,0.004294175314275486],[117,60,77,0.004261614011233063],[117,60,78,0.00439483492601228],[117,60,79,0.004691375502541087],[117,61,64,0.011991861296885868],[117,61,65,0.011707514341645494],[117,61,66,0.011269429557049435],[117,61,67,0.010649386099078494],[117,61,68,0.009877543655156033],[117,61,69,0.00901960205916245],[117,61,70,0.008133204973045309],[117,61,71,0.0072675145964657155],[117,61,72,0.0064637361516008745],[117,61,73,0.005755628614356477],[117,61,74,0.005170000476543701],[117,61,75,0.0047271893791546015],[117,61,76,0.004441524514045186],[117,61,77,0.0043217707497286775],[117,61,78,0.0043715534963072985],[117,61,79,0.004589763384348975],[117,62,64,0.013027377241848614],[117,62,65,0.012713434079129027],[117,62,66,0.012236266440187762],[117,62,67,0.011569098860893877],[117,62,68,0.010742495103172075],[117,62,69,0.009821917229311517],[117,62,70,0.008865201914605719],[117,62,71,0.007922089770103953],[117,62,72,0.007034681775775514],[117,62,73,0.006237884965914576],[117,62,74,0.005559846273077292],[117,62,75,0.005022373481269644],[117,62,76,0.004641342284886982],[117,62,77,0.0044270884967069725],[117,62,78,0.00438478449581909],[117,62,79,0.004514799054306832],[117,63,64,0.014061635182239072],[117,63,65,0.013722794912328834],[117,63,66,0.01321126177097061],[117,63,67,0.012501733955308066],[117,63,68,0.011625047888581168],[117,63,69,0.01064617949456888],[117,63,70,0.009622928912335635],[117,63,71,0.008605411621291604],[117,63,72,0.007636450334222694],[117,63,73,0.006751958459606164],[117,63,74,0.005981314158885438],[117,63,75,0.005347724059479502],[117,63,76,0.00486857572046509],[117,63,77,0.004555777984785653],[117,63,78,0.004416088389305666],[117,63,79,0.00445142684165311],[117,64,64,0.015049898328479694],[117,64,65,0.014690982646030568],[117,64,66,0.01415020247902703],[117,64,67,0.01340370549127728],[117,64,68,0.012482473900285259],[117,64,69,0.011450792862419141],[117,64,70,0.010366225253149014],[117,64,71,0.009279071901560965],[117,64,72,0.008232703850147082],[117,64,73,0.0072638878330309395],[117,64,74,0.006403104111673568],[117,64,75,0.005674855834746162],[117,64,76,0.005097969117226154],[117,64,77,0.004685883062581344],[117,64,78,0.004446928980971141],[117,64,79,0.004384598085351214],[117,65,64,0.01595058396548468],[117,65,65,0.015576363457135244],[117,65,66,0.015011659305539788],[117,65,67,0.014234003411285664],[117,65,68,0.01327440766711181],[117,65,69,0.012196308182048981],[117,65,70,0.011056862080654314],[117,65,71,0.00990638407450691],[117,65,72,0.008788625114120506],[117,65,73,0.007741045287779784],[117,65,74,0.006795080210549117],[117,65,75,0.005976400168706972],[117,65,76,0.0053051613072393755],[117,65,77,0.004796248170498264],[117,65,78,0.004459506928523381],[117,65,79,0.00429996864349246],[117,66,64,0.015429599538624255],[117,66,65,0.015842836961918284],[117,66,66,0.015759031649625586],[117,66,67,0.014956203850713749],[117,66,68,0.013964815200424753],[117,66,69,0.012847340737860646],[117,66,70,0.011660397095994328],[117,66,71,0.010454162370816368],[117,66,72,0.009272607943180532],[117,66,73,0.008153725030492555],[117,66,74,0.007129745304103505],[117,66,75,0.006227354926331706],[117,66,76,0.005467901379117974],[117,66,77,0.004867592474134013],[117,66,78,0.004437686951541709],[117,66,79,0.0041846760911999],[117,67,64,0.014895426364520122],[117,67,65,0.015316974961485246],[117,67,66,0.01594095394677402],[117,67,67,0.015540639299081168],[117,67,68,0.014524123064925079],[117,67,69,0.01337464780075379],[117,67,70,0.012148187913952677],[117,67,71,0.010894656909003273],[117,67,72,0.009658099449440639],[117,67,73,0.008476878191231508],[117,67,74,0.007383854803019005],[117,67,75,0.00640656460426928],[117,67,76,0.0055673842676189815],[117,67,77,0.004883692046368364],[117,67,78,0.0043680200019142225],[117,67,79,0.004028197718626141],[117,68,64,0.014531753655871088],[117,68,65,0.014958165176045375],[117,68,66,0.015592873639721658],[117,68,67,0.015966729277889582],[117,68,68,0.014931508502379088],[117,68,69,0.013757367070336177],[117,68,70,0.01249956510878829],[117,68,71,0.011207646005262134],[117,68,72,0.009925595513430419],[117,68,73,0.008691995364793495],[117,68,74,0.007540170868214407],[117,68,75,0.006498331993381986],[117,68,76,0.0055897074478898365],[117,68,77,0.004832671270286265],[117,68,78,0.0042408614729799645],[117,68,79,0.0038232902789297057],[117,69,64,0.014345080896877206],[117,69,65,0.01477375731256095],[117,69,66,0.015415543083081355],[117,69,67,0.016225476001366885],[117,69,68,0.015177355556599933],[117,69,69,0.013985421408024718],[117,69,70,0.012704170749031738],[117,69,71,0.011382691798732915],[117,69,72,0.010064795825987375],[117,69,73,0.008789143272336463],[117,69,74,0.007589363510183545],[117,69,75,0.006494167786174096],[117,69,76,0.005527454912431068],[117,69,77,0.004708409279764648],[117,69,78,0.004051590777000435],[117,69,79,0.0035670162087960058],[117,70,64,0.014320393551837155],[117,70,65,0.014748836834315026],[117,70,66,0.01539419169256484],[117,70,67,0.01627287701585856],[117,70,68,0.015276227053253722],[117,70,69,0.014073355617069195],[117,70,70,0.012776527827371102],[117,70,71,0.01143427037080047],[117,70,72,0.0100900891557609],[117,70,73,0.008782572820612095],[117,70,74,0.007545489431410802],[117,70,75,0.006407875963501719],[117,70,76,0.00539412017359644],[117,70,77,0.004524034479828264],[117,70,78,0.0038129214764181414],[117,70,79,0.0032716307166637945],[117,71,64,0.014416465230405079],[117,71,65,0.014839599514160189],[117,71,66,0.01548242139688534],[117,71,67,0.016333717000024842],[117,71,68,0.015279653816549736],[117,71,69,0.014075047929385116],[117,71,70,0.012772492531371915],[117,71,71,0.011419720031580042],[117,71,72,0.010059695851923942],[117,71,73,0.008730704933649951],[117,71,74,0.0074664305672895274],[117,71,75,0.006296025174389768],[117,71,76,0.005244172682667775],[117,71,77,0.0043311421478402215],[117,71,78,0.0035728322850162256],[117,71,79,0.002980806579826186],[117,72,64,0.014597294206795076],[117,72,65,0.015007491792132892],[117,72,66,0.01563910500106985],[117,72,67,0.016275823540240274],[117,72,68,0.015233803981464074],[117,72,69,0.014038979538659443],[117,72,70,0.012742531715958308],[117,72,71,0.011391058272145042],[117,72,72,0.01002665845364421],[117,72,73,0.008687009301078324],[117,72,74,0.007405432660995984],[117,72,75,0.006210952552540482],[117,72,76,0.005128342555375838],[117,72,77,0.004178162899732448],[117,72,78,0.0033767869517054975],[117,72,79,0.0027364167965231133],[117,73,64,0.014835368599160105],[117,73,65,0.015223082893477848],[117,73,66,0.015832891953866505],[117,73,67,0.016190995202369874],[117,73,68,0.0151737018692938],[117,73,69,0.014001860046890573],[117,73,70,0.01272481771732775],[117,73,71,0.01138763112654645],[117,73,72,0.010031150432999384],[117,73,73,0.008692093808633776],[117,73,74,0.007403109623452563],[117,73,75,0.006192826369504032],[117,73,76,0.005085890002773775],[117,73,77,0.004102988401756078],[117,73,78,0.0032608626591392924],[117,73,79,0.002572304937590625],[117,74,64,0.01510888117500455],[117,74,65,0.015463246072464175],[117,74,66,0.016039363008536946],[117,74,67,0.01610482906163143],[117,74,68,0.015126104771178667],[117,74,69,0.013991496034844241],[117,74,70,0.012748063415160693],[117,74,71,0.01143888449576851],[117,74,72,0.01010315019240431],[117,74,73,0.00877624573658652],[117,74,74,0.007489815941223074],[117,74,75,0.006271814391600535],[117,74,76,0.0051465362372466825],[117,74,77,0.004134634289494379],[117,74,78,0.003253118155811475],[117,74,79,0.0025153361645697116],[117,75,64,0.015399022962947522],[117,75,65,0.01570841711208808],[117,75,66,0.016238260223884894],[117,75,67,0.016038121578495015],[117,75,68,0.01511230914344372],[117,75,69,0.014029592481835206],[117,75,70,0.01283429471011071],[117,75,71,0.01156707877725276],[117,75,72,0.010265065692674893],[117,75,73,0.00896193238330535],[117,75,74,0.007687988741810928],[117,75,75,0.0064702334755256715],[117,75,76,0.00533238841071645],[117,75,77,0.004294910948748229],[117,75,78,0.0033749844090033513],[117,75,79,0.0025864860274388557],[117,76,64,0.015687360399021074],[117,76,65,0.015939934849358964],[117,76,66,0.016410797098838324],[117,76,67,0.01600958372838068],[117,76,68,0.015150881428257514],[117,76,69,0.014134482305475196],[117,76,70,0.013001555799764251],[117,76,71,0.011789942361659101],[117,76,72,0.010534305525110841],[117,76,73,0.009266257256525032],[117,76,74,0.008014456066914855],[117,76,75,0.00680467743865669],[117,76,76,0.005659856180192222],[117,76,77,0.00460010038023995],[117,76,78,0.0036426766870310827],[117,76,79,0.0028019666870275346],[117,77,64,0.015953300830540834],[117,77,65,0.01613746860291979],[117,77,66,0.016537053753396768],[117,77,67,0.01603847320672083],[117,77,68,0.015260308568553036],[117,77,69,0.014323779135264888],[117,77,70,0.013266542467906123],[117,77,71,0.012123259379586991],[117,77,72,0.010925792052836161],[117,77,73,0.009703367779329572],[117,77,74,0.008482707703409378],[117,77,75,0.007288120036555584],[117,77,76,0.00614155729235286],[117,77,77,0.00506263716967863],[117,77,78,0.0040686267850435645],[117,77,79,0.0031743900223557904],[117,78,64,0.016171651268810216],[117,78,65,0.016276537459973466],[117,78,66,0.016593462161310493],[117,78,67,0.016147138670134953],[117,78,68,0.015461563168454871],[117,78,69,0.0146169483036383],[117,78,70,0.013647158459373112],[117,78,71,0.012583386926725044],[117,78,72,0.011454412081604517],[117,78,73,0.01028681028334156],[117,78,74,0.009105124739447032],[117,78,75,0.007931989691931518],[117,78,76,0.006788209387030551],[117,78,77,0.00569279139185588],[117,78,78,0.004662933917397803],[117,78,79,0.003713966896386559],[117,79,64,0.016329626741474167],[117,79,65,0.016345336695028977],[117,79,66,0.016569225438199605],[117,79,67,0.016345257210277058],[117,79,68,0.015763248739577043],[117,79,69,0.015021605241796276],[117,79,70,0.014150196134883965],[117,79,71,0.013176523693780983],[117,79,72,0.012126049912651055],[117,79,73,0.01102247000418824],[117,79,74,0.009887931611000041],[117,79,75,0.008743198942374316],[117,79,76,0.007607761183764111],[117,79,77,0.006499884654897815],[117,79,78,0.005436608314383086],[117,79,79,0.004433682322770386],[117,80,64,0.016479481891999215],[117,80,65,0.016396957134805427],[117,80,66,0.016517513913947658],[117,80,67,0.016580380057054377],[117,80,68,0.016114530689189457],[117,80,69,0.015489513731623494],[117,80,70,0.01473104961136312],[117,80,71,0.013862730117600773],[117,80,72,0.012906433390729973],[117,80,73,0.011882674276404648],[117,80,74,0.010810888904206185],[117,80,75,0.009709652520575023],[117,80,76,0.008596829771037769],[117,80,77,0.007489656786044473],[117,80,78,0.006404754576542635],[117,80,79,0.005358073388282923],[117,81,64,0.016669065035865793],[117,81,65,0.016485352765733912],[117,81,66,0.016492708244092207],[117,81,67,0.016695550058797328],[117,81,68,0.01646262572310742],[117,81,69,0.01597004955048741],[117,81,70,0.015342261520438485],[117,81,71,0.014598733737901605],[117,81,72,0.013757465523366048],[117,81,73,0.0128354312721229],[117,81,74,0.011848949832649202],[117,81,75,0.010813974198077154],[117,81,76,0.009746300505469197],[117,81,77,0.00866169553171408],[117,81,78,0.00757594206065334],[117,81,79,0.006504801671828838],[117,82,64,0.016459637689908144],[117,82,65,0.016647247852189],[117,82,66,0.016532596320064565],[117,82,67,0.01660256443598133],[117,82,68,0.016769239763819135],[117,82,69,0.016425599866101922],[117,82,70,0.01594763619824858],[117,82,71,0.01535052436673426],[117,82,72,0.014648093074629328],[117,82,73,0.013853392873688919],[117,82,74,0.01297917258560186],[117,82,75,0.012038261891661555],[117,82,76,0.01104385883032231],[117,82,77,0.010009721175142521],[117,82,78,0.008950260889597068],[117,82,79,0.007880541068186978],[117,83,64,0.016148572850790723],[117,83,65,0.01662321608491409],[117,83,66,0.01666058401148857],[117,83,67,0.01658775216137669],[117,83,68,0.01667132721826793],[117,83,69,0.016829908613440348],[117,83,70,0.01652082851154478],[117,83,71,0.016092206641680564],[117,83,72,0.015553437424926783],[117,83,73,0.014913272503633671],[117,83,74,0.014180427810460096],[117,83,75,0.013364081576613666],[117,83,76,0.012474261704688239],[117,83,77,0.011522121207418088],[117,83,78,0.010520100679878804],[117,83,79,0.009481977026900942],[117,84,64,0.015728807310400113],[117,84,65,0.01632463847462984],[117,84,66,0.01675815327736853],[117,84,67,0.016664182739746486],[117,84,68,0.016581814693090138],[117,84,69,0.016628354364241798],[117,84,70,0.016795056160276316],[117,84,71,0.016804916425148256],[117,84,72,0.01645398253316986],[117,84,73,0.015995314250731852],[117,84,74,0.015433152754578931],[117,84,75,0.014772504567515266],[117,84,76,0.014019650574332364],[117,84,77,0.013182526250672918],[117,84,78,0.012270971790830209],[117,84,79,0.011296851119799705],[117,85,64,0.015203963395959233],[117,85,65,0.015921310849987286],[117,85,66,0.016493837427393028],[117,85,67,0.01683513698630552],[117,85,68,0.016578306715748826],[117,85,69,0.016435494965611325],[117,85,70,0.016401920486324377],[117,85,71,0.016475850494507487],[117,85,72,0.01665738690999904],[117,85,73,0.016947388778126408],[117,85,74,0.016719152688719947],[117,85,75,0.01624418825438976],[117,85,76,0.015659905457038766],[117,85,77,0.014970426322901626],[117,85,78,0.014182367744608734],[117,85,79,0.013305049199106364],[117,86,64,0.014586266083314875],[117,86,65,0.01542322873234655],[117,86,66,0.016135230346737688],[117,86,67,0.01673005869493882],[117,86,68,0.016659025543841955],[117,86,69,0.016318168732941295],[117,86,70,0.01607223709418652],[117,86,71,0.015923912490795986],[117,86,72,0.015878181315271904],[117,86,73,0.01594104259077505],[117,86,74,0.016118372246418943],[117,86,75,0.01641494686504024],[117,86,76,0.016833629770551552],[117,86,77,0.016861827010673243],[117,86,78,0.016228667896069443],[117,86,79,0.015479731791490467],[117,87,64,0.013894581155949862],[117,87,65,0.014847044153794788],[117,87,66,0.01569641446165906],[117,87,67,0.016451988800709798],[117,87,68,0.016816162902224267],[117,87,69,0.01627216390193863],[117,87,70,0.015805633555575502],[117,87,71,0.015423522853027881],[117,87,72,0.015135705456066519],[117,87,73,0.014953453575156624],[117,87,74,0.014888087078681759],[117,87,75,0.014949799721206384],[117,87,76,0.015146665892758392],[117,87,77,0.015483830814021944],[117,87,78,0.015962886636199065],[117,87,79,0.016581436452682095],[117,88,64,0.013152578707577488],[117,88,65,0.014214298004659],[117,88,66,0.01519636275582672],[117,88,67,0.016109569959968206],[117,88,68,0.016965737503737793],[117,88,69,0.016288931476694364],[117,88,70,0.015597813173057688],[117,88,71,0.014974932953705646],[117,88,72,0.014434974241051503],[117,88,73,0.013994527198861868],[117,88,74,0.013670508509000296],[117,88,75,0.013478775930720407],[117,88,76,0.01343294162012892],[117,88,77,0.01354338765614221],[117,88,78,0.01381648669886325],[117,88,79,0.014254030200698476],[117,89,64,0.012387025924536088],[117,89,65,0.013549777946270476],[117,89,66,0.014657385990679514],[117,89,67,0.01572212193336849],[117,89,68,0.016756206314333628],[117,89,69,0.016356714694568248],[117,89,70,0.015441493482925863],[117,89,71,0.014575733726762583],[117,89,72,0.013778772159577676],[117,89,73,0.013072470502221555],[117,89,74,0.012479395756263839],[117,89,75,0.012021212711533846],[117,89,76,0.011717293252849982],[117,89,77,0.011583546465526035],[117,89,78,0.011631472964512928],[117,89,79,0.011867446312221048],[117,90,64,0.011626212747296106],[117,90,65,0.012880005442652826],[117,90,66,0.014103703842534813],[117,90,67,0.01531101325462203],[117,90,68,0.016514870806386094],[117,90,69,0.016461579777952918],[117,90,70,0.015327256102673237],[117,90,71,0.014221503271215283],[117,90,72,0.01316808027575068],[117,90,73,0.012193983729898782],[117,90,74,0.011327382873075905],[117,90,75,0.01059578374678962],[117,90,76,0.010024427757031468],[117,90,77,0.009634929198291302],[117,90,78,0.009444155686451494],[117,90,79,0.009463354834459835],[117,91,64,0.01089851369671212],[117,91,65,0.012231855159926154],[117,91,66,0.013560143120960474],[117,91,67,0.014898460327318183],[117,91,68,0.01626075019918239],[117,91,69,0.01658834539281384],[117,91,70,0.015244305637774748],[117,91,71,0.013906373887919817],[117,91,72,0.012602432621921176],[117,91,73,0.01136439054926635],[117,91,74,0.010225871030813793],[117,91,75,0.009220145927626693],[117,91,76,0.008378320732468412],[117,91,77,0.007727776148267228],[117,91,78,0.007290870597700013],[117,91,79,0.0070839074826520845],[117,92,64,0.010231088858739083],[117,92,65,0.011631309698357625],[117,92,66,0.01305096596080245],[117,92,67,0.01450644922144498],[117,92,68,0.016012966752553325],[117,92,69,0.01672140844645433],[117,92,70,0.015181135548860025],[117,92,71,0.013623516756404193],[117,92,72,0.01208020053431417],[117,92,73,0.010587705755737137],[117,92,74,0.009184866755788938],[117,92,75,0.007910539162810077],[117,92,76,0.0068015730016473775],[117,92,77,0.005891058824788338],[117,92,78,0.005206851897556675],[117,92,79,0.004770378748472239],[117,93,64,0.009648726749838535],[117,93,65,0.01110235235783261],[117,93,66,0.01259883062689836],[117,93,67,0.014155782699720999],[117,93,68,0.015789898624936467],[117,93,69,0.016845464055128954],[117,93,70,0.015126099054191456],[117,93,71,0.013365542606407883],[117,93,72,0.011598803593899993],[117,93,73,0.009866639457929503],[117,93,74,0.008212765452469004],[117,93,75,0.006681338939166773],[117,93,76,0.0053147258484450175],[117,93,77,0.004151555646785453],[117,93,78,0.003225070374321086],[117,93,79,0.002561772555083291],[117,94,64,0.009172831532994623],[117,94,65,0.01066600039186795],[117,94,66,0.012223887334739988],[117,94,67,0.013865254781687798],[117,94,68,0.01560845100151272],[117,94,69,0.016946117696876425],[117,94,70,0.015067883304481295],[117,94,71,0.01312481687651068],[117,94,72,0.011154845947926277],[117,94,73,0.00920253682203997],[117,94,74,0.007316079610651938],[117,94,75,0.005544561353072011],[117,94,76,0.003935534948044435],[117,94,77,0.002532890806020739],[117,94,78,0.001375037310723074],[117,94,79,4.933953741797998E-4],[117,95,64,0.008820556819964234],[117,95,65,0.010339480976994473],[117,95,66,0.011943011271079237],[117,95,67,0.013650954946748959],[117,95,68,0.015483447469113738],[117,95,69,0.017010387737082574],[117,95,70,0.014995885218205345],[117,95,71,0.012893687980675033],[117,95,72,0.01074417689225631],[117,95,73,0.008595252535407329],[117,95,74,0.006499111150203898],[117,95,75,0.0045093203668808614],[117,95,76,0.0026782030415525046],[117,95,77,0.0010545366444629388],[117,95,78,-3.1842520672908643E-4],[117,95,79,-0.001404603319712494],[117,96,64,0.008604088078049568],[117,96,65,0.010135551912376525],[117,96,66,0.011769174794718331],[117,96,67,0.013525703885050127],[117,96,68,0.015427143436938006],[117,96,69,0.01702709667462213],[117,96,70,0.01490048750640544],[117,96,71,0.012664627423257808],[117,96,72,0.010361874692282048],[117,96,73,0.008042959224356945],[117,96,74,0.00576356740973888],[117,96,75,0.0035812370753733128],[117,96,76,0.0015525714196584469],[117,96,77,-2.692201168952792E-4],[117,96,78,-0.0018364469773182123],[117,96,79,-0.003108722420262562],[117,97,64,0.008530075458297707],[117,97,65,0.010061968867931181],[117,97,66,0.011710960608546775],[117,97,67,0.013498622526390709],[117,97,68,0.015448863236862348],[117,97,69,0.016987149605658402],[117,97,70,0.014773233547122776],[117,97,71,0.012430280614576386],[117,97,72,0.010002152711100177],[117,97,73,0.0075418891313016245],[117,97,74,0.005108120334606561],[117,97,75,0.002761800796043297],[117,97,76,5.632702893909368E-4],[117,97,77,-0.001430347968159186],[117,97,78,-0.003167404800463752],[117,97,79,-0.004603631584211385],[117,98,64,0.008599218675723058],[117,98,65,0.010121100817107579],[117,98,66,0.011772217518469309],[117,98,67,0.01357483591147532],[117,98,68,0.015554762383591662],[117,98,69,0.016883698540962173],[117,98,70,0.014606899891642777],[117,98,71,0.012183427342918128],[117,98,72,0.009658186998238323],[117,98,73,0.007086008421026587],[117,98,74,0.004527908464945143],[117,98,75,0.0020476818234907218],[117,98,76,-2.911718934174199E-4],[117,98,77,-0.0024281756977649472],[117,98,78,-0.004308249462900877],[117,98,79,-0.005883723882954985],[117,99,64,0.008806005400066035],[117,99,65,0.010309695122063567],[117,99,66,0.011951860232422689],[117,99,67,0.01375531331601308],[117,99,68,0.015747716332372336],[117,99,69,0.016712191341548752],[117,99,70,0.014395465298184536],[117,99,71,0.011916850955403584],[117,99,72,0.009321864570844537],[117,99,73,0.006666623546353154],[117,99,74,0.004013981366500394],[117,99,75,0.0014299957123239597],[117,99,76,-0.001019260036004193],[117,99,77,-0.003270532663030486],[117,99,78,-0.005265864068352928],[117,99,79,-0.006954697976709349],[117,100,64,0.009138604457013115],[117,100,65,0.010618793583521545],[117,100,66,0.012243814502524526],[117,100,67,0.014036845895814856],[117,100,68,0.01602733693991673],[117,100,69,0.016470304157032784],[117,100,70,0.014133975293972856],[117,100,71,0.011623115389712859],[117,100,72,0.00898345169218764],[117,100,73,0.006271919159156097],[117,100,74,0.0035526861855247186],[117,100,75,8.935189748774174E-4],[117,100,76,-0.001637504868853839],[117,100,77,-0.00397492393864621],[117,100,78,-0.0060584532005754435],[117,100,79,-0.007835169109132732],[117,101,64,0.009578053464457665],[117,101,65,0.011032595964824494],[117,101,66,0.01263555619107482],[117,101,67,0.014410260063143925],[117,101,68,0.01638786042561223],[117,101,69,0.016160373145973017],[117,101,70,0.013821280451988025],[117,101,71,0.011297588440745139],[117,101,72,0.008634871529761046],[117,101,73,0.005890450504490697],[117,101,74,0.0031293265178887575],[117,101,75,4.204584278508146E-4],[117,101,76,-0.0021666056280937192],[117,101,77,-0.004564732519223268],[117,101,78,-0.006711835361780957],[117,101,79,-0.008553123789276806],[117,102,64,0.010090747758412148],[117,102,65,0.011517039527066569],[117,102,66,0.013092717675586004],[117,102,67,0.014841017315625545],[117,102,68,0.016794687398310044],[117,102,69,0.015816985462296446],[117,102,70,0.013491808022466464],[117,102,71,0.010974390953392772],[117,102,72,0.008309752320513019],[117,102,73,0.0055551215242017745],[117,102,74,0.002775803169265634],[117,102,75,4.138771310249176E-5],[117,102,76,-0.002577679936357252],[117,102,77,-0.005013163707976686],[117,102,78,-0.0072017223781124995],[117,102,79,-0.009087210135887118],[117,103,64,0.010639469637184325],[117,103,65,0.012032247535729401],[117,103,66,0.013572937527926885],[117,103,67,0.015284455915546474],[117,103,68,0.017201001463557786],[117,103,69,0.015489027619590612],[117,103,70,0.0131963602736269],[117,103,71,0.010706073818384303],[117,103,72,0.008062160494017973],[117,103,73,0.005321200517707247],[117,103,74,0.002548185168876608],[117,103,75,-1.8731198935149353E-4],[117,103,76,-0.002814604384981259],[117,103,77,-0.005264991848775405],[117,103,78,-0.007474480808567824],[117,103,79,-0.009386116907903108],[117,104,64,0.01119352850133776],[117,104,65,0.012545479638539438],[117,104,66,0.014041645480643166],[117,104,67,0.01570441900608167],[117,104,68,0.01722979894417875],[117,104,69,0.015215309436577581],[117,104,70,0.012974855820964911],[117,104,71,0.010533525824523328],[117,104,72,0.007933785893635604],[117,104,73,0.005230964613254718],[117,104,74,0.002489070434436558],[117,104,75,-2.230438235368494E-4],[117,104,76,-0.0028351582275496757],[117,104,77,-0.005278794274327707],[117,104,78,-0.0074899452555761145],[117,104,79,-0.009411419967039689],[117,105,64,0.011729975612737163],[117,105,65,0.013032321791460808],[117,105,66,0.014473221839176082],[117,105,67,0.01607437444472919],[117,105,68,0.016966655409212623],[117,105,69,0.015023537437808905],[117,105,70,0.012855345747751443],[117,105,71,0.01048502416335296],[117,105,72,0.007953015122475975],[117,105,73,0.005312782015183988],[117,105,74,0.0026266613322222013],[117,105,75,-3.7942934915628384E-5],[117,105,76,-0.0026120111820922003],[117,105,77,-0.0050279958945425324],[117,105,78,-0.007222535672696526],[117,105,79,-0.009138787067234791],[117,106,64,0.012235078914189365],[117,106,65,0.01347807730520261],[117,106,66,0.014852295947599748],[117,106,67,0.016378608672126562],[117,106,68,0.016783550905289324],[117,106,69,0.014929355858645625],[117,106,70,0.012853174543075383],[117,106,71,0.010575510487456617],[117,106,72,0.008134313506989512],[117,106,73,0.005580586714557403],[117,106,74,0.002974315553563721],[117,106,75,3.8073113891753355E-4],[117,106,76,-0.0021330807627982333],[117,106,77,-0.004501214743322097],[117,106,78,-0.006661615341200671],[117,106,79,-0.008558372748020755],[117,107,64,0.012706221713113244],[117,107,65,0.013879578866032138],[117,107,66,0.015175460269445667],[117,107,67,0.016613828221994902],[117,107,68,0.016683380271366698],[117,107,69,0.014935005880599619],[117,107,70,0.012969778204770556],[117,107,71,0.010805527410027322],[117,107,72,0.008477295139793575],[117,107,73,0.006033073130980948],[117,107,74,0.0035298526929496946],[117,107,75,0.001029997044375192],[117,107,76,-0.0014020524166144044],[117,107,77,-0.003702725758400756],[117,107,78,-0.005811920851066274],[117,107,79,-0.007675238080275952],[117,108,64,0.01315422746391802],[117,108,65,0.014247423892079291],[117,108,66,0.015453402561793688],[117,108,67,0.016791171457619884],[117,108,68,0.016654261182029517],[117,108,69,0.015027600355063328],[117,108,70,0.013191116736053726],[117,108,71,0.011159812690083018],[117,108,72,0.008965478313961179],[117,108,73,0.006652608124098464],[117,108,74,0.004274614155405896],[117,108,75,0.0018903470374017942],[117,108,76,-4.39064260599186E-4],[117,108,77,-0.002653044202706263],[117,108,78,-0.004694065044360775],[117,108,79,-0.00650979571325851],[117,109,64,0.01360611266738364],[117,109,65,0.01460863535964785],[117,109,66,0.01571345838533989],[117,109,67,0.016938632877544185],[117,109,68,0.01666725770797221],[117,109,69,0.015177011523581177],[117,109,70,0.013485738513356865],[117,109,71,0.011605548590621979],[117,109,72,0.009564723893479532],[117,109,73,0.007403858030333452],[117,109,74,0.0051722742174538745],[117,109,75,0.00292473331212945],[117,109,76,7.184419250471913E-4],[117,109,77,-0.001389630029454039],[117,109,78,-0.0033451138113869297],[117,109,79,-0.005098280646253947],[117,110,64,0.014108269717270881],[117,110,65,0.015009750035287789],[117,110,66,0.016002585985033426],[117,110,67,0.017103902117062777],[117,110,68,0.016673699995720336],[117,110,69,0.015333369468238683],[117,110,70,0.013802474228097357],[117,110,71,0.012090264118081643],[117,110,72,0.010221354377011029],[117,110,73,0.008232128579504066],[117,110,74,0.006167400246779796],[117,110,75,0.0040773434441821145],[117,110,76,0.0020147019234207893],[117,110,77,3.228560481963833E-5],[117,110,78,-0.001819237567927881],[117,110,79,-0.0034932471254686738],[117,111,64,0.014724781311391787],[117,111,65,0.015515282363931624],[117,111,66,0.016385786712908225],[117,111,67,0.017352529293812476],[117,111,68,0.016607491306371444],[117,111,69,0.01543005310516575],[117,111,70,0.014074309375850125],[117,111,71,0.012546765500457314],[117,111,72,0.010868292106928266],[117,111,73,0.00907082936576649],[117,111,74,0.007194327489993821],[117,111,75,0.0052839329511639695],[117,111,76,0.0033874292352386744],[117,111,77,0.001552940268381855],[117,111,78,-1.730960513279525E-4],[117,111,79,-0.001747677469675247],[117,112,64,0.01550713422837162],[117,112,65,0.016178250709934155],[117,112,66,0.016917028089000648],[117,112,67,0.01726415047001617],[117,112,68,0.016414741449773337],[117,112,69,0.015414265479058973],[117,112,70,0.014250302383671962],[117,112,71,0.012926747304748718],[117,112,72,0.011460650738710531],[117,112,73,0.009879261248646853],[117,112,74,0.008217280052404498],[117,112,75,0.00651433608623416],[117,112,76,0.004812689528233557],[117,112,77,0.0031551711467992898],[117,112,78,0.0015833642198837931],[117,112,79,1.360351555087873E-4],[117,113,64,0.016481856525402874],[117,113,65,0.017027268585008214],[117,113,66,0.017315225133485147],[117,113,67,0.016740685539102153],[117,113,68,0.016063838300220484],[117,113,69,0.015254560273589695],[117,113,70,0.014299793697372448],[117,113,71,0.013200968960348851],[117,113,72,0.011971243288863086],[117,113,73,0.010632917406395567],[117,113,74,0.009215038274786874],[117,113,75,0.007751195497638906],[117,113,76,0.0062775184307567],[117,113,77,0.0048308805050009005],[117,113,78,0.0034473167271288894],[117,113,79,0.0021606597880477582],[117,114,64,0.017121159721068764],[117,114,65,0.01680460569162649],[117,114,66,0.01644726355468099],[117,114,67,0.016035819608499056],[117,114,68,0.015541516578925522],[117,114,69,0.014936490551028307],[117,114,70,0.014207458433796448],[117,114,71,0.013353549917010777],[117,114,72,0.01238397793733989],[117,114,73,0.01131586146361785],[117,114,74,0.01017220751758737],[117,114,75,0.008980058899038754],[117,114,76,0.0077688136310263],[117,114,77,0.006568721684561717],[117,114,78,0.005409564085891179],[117,114,79,0.004319519056546457],[117,115,64,0.015789355981622174],[117,115,65,0.015605042565633092],[117,115,66,0.015397434315309374],[117,115,67,0.01515433174228412],[117,115,68,0.014850253992586342],[117,115,69,0.014460258327690436],[117,115,70,0.013971250861721922],[117,115,71,0.013380246785197772],[117,115,72,0.012692500429105889],[117,115,73,0.011919761457504351],[117,115,74,0.011078662831976454],[117,115,75,0.010189245827045591],[117,115,76,0.009273627007017605],[117,115,77,0.008354811704064085],[117,115,78,0.007455658167189236],[117,115,79,0.006597996184861665],[117,116,64,0.014297566424851273],[117,116,65,0.014244368043119862],[117,116,66,0.014187135078701056],[117,116,67,0.014114844106585336],[117,116,68,0.014005743009238944],[117,116,69,0.013838427193484408],[117,116,70,0.013600398409149447],[117,116,71,0.01328676608590188],[117,116,72,0.012898858247497815],[117,116,73,0.012442932247070096],[117,116,74,0.011928989633152582],[117,116,75,0.011369699175682745],[117,116,76,0.010779431798065677],[117,116,77,0.010173410877427696],[117,116,78,0.009566981092415813],[117,116,79,0.008974998718569176],[117,117,64,0.012684055320365118],[117,117,65,0.012758265768588146],[117,117,66,0.012849245590048127],[117,117,67,0.01294718386583111],[117,117,68,0.01303444041606657],[117,117,69,0.013093699938465531],[117,117,70,0.013113446931526577],[117,117,71,0.013087114072713698],[117,117,72,0.01301218771158652],[117,117,73,0.012889387174002108],[117,117,74,0.012721920814704427],[117,117,75,0.012514821558263906],[117,117,76,0.012274364470148947],[117,117,77,0.01200756870214266],[117,117,78,0.011721785960824833],[117,117,79,0.01142437745611681],[117,118,64,0.010995833267542695],[117,118,65,0.011191242081421002],[117,118,66,0.011425441306474856],[117,118,67,0.011689836190441715],[117,118,68,0.011971196638193458],[117,118,69,0.012256763002138338],[117,118,70,0.012536358849457778],[117,118,71,0.012801984986321756],[117,118,72,0.013047425072198813],[117,118,73,0.013267899732310864],[117,118,74,0.013459770718038902],[117,118,75,0.013620296548837077],[117,118,76,0.0137474409541583],[117,118,77,0.01383973532101784],[117,118,78,0.01389619624308294],[117,118,79,0.013916299161723397],[117,119,64,0.009285903615748534],[117,119,65,0.009593943055286082],[117,119,66,0.009963609286042603],[117,119,67,0.010387490301320799],[117,119,68,0.010856966640074928],[117,119,69,0.01136419942113603],[117,119,70,0.011900665644255388],[117,119,71,0.012457189003513789],[117,119,72,0.013024042606903612],[117,119,73,0.013591075954485785],[117,119,74,0.014147866346764676],[117,119,75,0.014683894856523298],[117,119,76,0.015188746962277622],[117,119,77,0.01565233791028816],[117,119,78,0.01606516284519194],[117,119,79,0.01641857172740609],[117,120,64,0.007610624429216281],[117,120,65,0.008020582395419286],[117,120,66,0.008515368149753398],[117,120,67,0.009088680313516995],[117,120,68,0.009736604081447432],[117,120,69,0.01045647181744277],[117,120,70,0.011241676084945558],[117,120,71,0.01208212104886954],[117,120,72,0.012964810642904268],[117,120,73,0.01387443817414752],[117,120,74,0.01479397619244589],[117,120,75,0.015705265486842042],[117,120,76,0.016589602112038138],[117,120,77,0.01742832139392542],[117,120,78,0.017977066093914605],[117,120,79,0.01735479767595413],[117,121,64,0.006027187638638989],[117,121,65,0.006526481853230292],[117,121,66,0.007133693766435473],[117,121,67,0.007843522486734105],[117,121,68,0.008656740257477112],[117,121,69,0.009575976842100516],[117,121,70,0.010596741450690837],[117,121,71,0.011708271547360144],[117,121,72,0.01289458636814825],[117,121,73,0.01413552077907122],[117,121,74,0.015407737015171763],[117,121,75,0.01668571194438441],[117,121,76,0.01794269761065717],[117,121,77,0.01699097751496068],[117,121,78,0.015931918046004422],[117,121,79,0.014970185801615228],[117,122,64,0.004591216856049233],[117,122,65,0.005165725656088391],[117,122,66,0.005870652154906736],[117,122,67,0.006701550343570313],[117,122,68,0.007663749217368947],[117,122,69,0.008765172368021988],[117,122,70,0.010003578907735318],[117,122,71,0.011367780109757612],[117,122,72,0.012839130224870583],[117,122,73,0.014392978523784725],[117,122,74,0.016000078899843156],[117,122,75,0.01762795353095163],[117,122,76,0.01685760534581142],[117,122,77,0.015370628758665288],[117,122,78,0.013964683212073135],[117,122,79,0.012672620327421774],[117,123,64,0.0033544851735117834],[117,123,65,0.003988930297479352],[117,123,66,0.004775240950619867],[117,123,67,0.005709648977087366],[117,123,68,0.006801800326926438],[117,123,69,0.008064778609803093],[117,123,70,0.009498654099644495],[117,123,71,0.011092033059879254],[117,123,72,0.012823950616049103],[117,123,73,0.014665707927595362],[117,123,74,0.016582648886883558],[117,123,75,0.017516184879652837],[117,123,76,0.01564997446280349],[117,123,77,0.013829346020234442],[117,123,78,0.012096429794571904],[117,123,79,0.010491491532084063],[117,124,64,0.0023627541191299237],[117,124,65,0.00304113088862329],[117,124,66,0.0038913406447612605],[117,124,67,0.00491008973723081],[117,124,68,0.0061109994180836204],[117,124,69,0.007512054238016535],[117,124,70,0.009115623913554142],[117,124,71,0.01091030563302883],[117,124,72,0.01287317759368233],[117,124,73,0.014971982241720277],[117,124,74,0.01716723345412865],[117,124,75,0.0166701716434774],[117,124,76,0.014502119438682662],[117,124,77,0.012377460433393847],[117,124,78,0.010345278472770636],[117,124,79,0.008452676814838769],[117,125,64,0.001653734805562865],[117,125,65,0.002359785136802543],[117,125,66,0.0032557766722120006],[117,125,67,0.004338666360468702],[117,125,68,0.00562561955201685],[117,125,69,0.00713914845014745],[117,125,70,0.008883840293162323],[117,125,71,0.010848449598385391],[117,125,72,0.013008466138277372],[117,125,73,0.01532860042809879],[117,125,74,0.01776518010488804],[117,125,75,0.015847662094237467],[117,125,76,0.013415044685421361],[117,125,77,0.011022634947590367],[117,125,78,0.008725716625503402],[117,125,79,0.0065775242001891885],[117,126,64,0.001255172176391974],[117,126,65,0.00197289588780129],[117,126,66,0.0028964933006293877],[117,126,67,0.0040229334885485855],[117,126,68,0.00537242231185836],[117,126,69,0.006971529859897105],[117,126,70,0.008826915881112849],[117,126,71,0.01092762698436999],[117,126,72,0.013247929581319718],[117,126,73,0.015750050552343315],[117,126,74,0.0176735291356479],[117,126,75,0.015042979937808638],[117,126,76,0.012388098465832878],[117,126,77,0.00976954790371894],[117,126,78,0.007247960097777698],[117,126,79,0.004881890463241955],[117,127,64,0.001183053134040146],[117,127,65,0.0018972530497952079],[117,127,66,0.002830840155970979],[117,127,67,0.00398054841030078],[117,127,68,0.005369070436099898],[117,127,69,0.007026492970866323],[117,127,70,0.008961352189077586],[117,127,71,0.01116309051505895],[117,127,72,0.013605103666675831],[117,127,73,0.01624768795404469],[117,127,74,0.017049031173099777],[117,127,75,0.01425044841204335],[117,127,76,0.01141899793275799],[117,127,77,0.008619615339340794],[117,127,78,0.005917363034863167],[117,127,79,0.003375234596807045],[117,128,64,0.0014399392193435846],[117,128,65,0.0021367956035636742],[117,128,66,0.0030639721098849526],[117,128,67,0.004217716754778317],[117,128,68,0.005622632504344076],[117,128,69,0.007311742909505606],[117,128,70,0.009295230913133534],[117,128,71,0.011563011297412183],[117,128,72,0.014087941692776659],[117,128,73,0.016828928519233937],[117,128,74,0.01638499171880454],[117,128,75,0.013464717378210382],[117,128,76,0.010503881804771112],[117,128,77,0.007570752319303537],[117,128,78,0.004733876258855398],[117,128,79,0.0020597672767220707],[117,129,64,0.002013424407163956],[117,129,65,0.0026810942988973376],[117,129,66,0.0035873631514053133],[117,129,67,0.00472774276460053],[117,129,68,0.006128180293020861],[117,129,69,0.007824059005575116],[117,129,70,0.009826968934848412],[117,129,71,0.012127354233353763],[117,129,72,0.014697841124960311],[117,129,73,0.017496457342138807],[117,129,74,0.015677636867429644],[117,129,75,0.012681104994272647],[117,129,76,0.009637390789021861],[117,129,77,0.006617173557984923],[117,129,78,0.0036915546162492375],[117,129,79,9.296569195167564E-4],[117,130,64,0.0028747184844960965],[117,130,65,0.0035039555394339975],[117,130,66,0.00437743476921979],[117,130,67,0.0054896846850673265],[117,130,68,0.006867479329951833],[117,130,69,0.008548037726118734],[117,130,70,0.010544137474764178],[117,130,71,0.012846801567514483],[117,130,72,0.015428702016456219],[117,130,73,0.017835429953044532],[117,130,74,0.0149265298268847],[117,130,75,0.011895953940403242],[117,130,76,0.008812775850739975],[117,130,77,0.005749233571518089],[117,130,78,0.002778113680744492],[117,130,79,-2.9707133474446528E-5],[117,131,64,0.003977356387292538],[117,131,65,0.004562146867803064],[117,131,66,0.005394299281355367],[117,131,67,0.006467115717374751],[117,131,68,0.007807773093162656],[117,131,69,0.00945491539107307],[117,131,70,0.011422345794659533],[117,131,71,0.01370172492068645],[117,131,72,0.016266017527143024],[117,131,73,0.01703673031696603],[117,131,74,0.01413515055947269],[117,131,75,0.011107002173547731],[117,131,76,0.008022034419240523],[117,131,77,0.004953306572336025],[117,131,78,0.0019745361533513098],[117,131,79,-8.423938291215532E-4],[117,132,64,0.00525598564976146],[117,132,65,0.00579418818380132],[117,132,66,0.0065805542807022815],[117,132,67,0.007606918704936082],[117,132,68,0.008900580748901373],[117,132,69,0.010501381804867985],[117,132,70,0.01242409128336732],[117,132,71,0.014661097884413669],[117,132,72,0.01718587857813138],[117,132,73,0.01617943497834093],[117,132,74,0.013311613032603682],[117,132,75,0.010313915153736813],[117,132,76,0.00725622966182134],[117,132,77,0.004211868135337117],[117,132,78,0.0012548952959047827],[117,132,79,-0.0015423812188823764],[117,133,64,0.006620204192116094],[117,133,65,0.007112778240883999],[117,133,66,0.00785229810717468],[117,133,67,0.008828877302395175],[117,133,68,0.010069809983742625],[117,133,69,0.011616123385998853],[117,133,70,0.013483631937377682],[117,133,71,0.01566561028293082],[117,133,72,0.017928446286016482],[117,133,73,0.015307458900746486],[117,133,74,0.012490976380534806],[117,133,75,0.009542281838066966],[117,133,76,0.006531011994694276],[117,133,77,0.0035303253925131643],[117,133,78,6.142242433883102E-4],[117,133,79,-0.0021449631390037015],[117,134,64,0.007966521052388667],[117,134,65,0.008414927088237432],[117,134,66,0.009107384937833331],[117,134,67,0.010032015346456669],[117,134,68,0.01121605902557826],[117,134,69,0.012701852787125356],[117,134,70,0.014506443803843614],[117,134,71,0.016624231636598978],[117,134,72,0.017059005347585417],[117,134,73,0.014502490458785221],[117,134,74,0.011749026367997514],[117,134,75,0.008861193689560228],[117,134,76,0.005908031168923304],[117,134,77,0.0029622038463022428],[117,134,78,9.732510056916586E-5],[117,134,79,-0.0026145604576586173],[117,135,64,0.0092084930579366],[117,135,65,0.00961445133543599],[117,135,66,0.010260215340580687],[117,135,67,0.011131662437600925],[117,135,68,0.01225598677237163],[117,135,69,0.013677032921833091],[117,135,70,0.015413329229565668],[117,135,71,0.017460684553587777],[117,135,72,0.016318187442021036],[117,135,73,0.013833146275875024],[117,135,74,0.011149604092989792],[117,135,75,0.00832911418130231],[117,135,76,0.005439805231960009],[117,135,77,0.002553557307285719],[117,135,78,-2.566687586805913E-4],[117,135,79,-0.0029193415580419544],[117,136,64,0.01027923170822582],[117,136,65,0.0106447820171116],[117,136,66,0.011244837453258619],[117,136,67,0.012062836547794588],[117,136,68,0.01312597588170709],[117,136,69,0.01447983523672599],[117,136,70,0.016144692918285485],[117,136,71,0.01791879712887909],[117,136,72,0.015759778325799324],[117,136,73,0.013349618595530948],[117,136,74,0.010738879139809867],[117,136,75,0.007987789673484054],[117,136,76,0.005163294752180942],[117,136,77,0.002336244794440932],[117,136,78,-4.212608125864022E-4],[117,136,79,-0.0030383715797590665],[117,137,64,0.011131208303639834],[117,137,65,0.011458697396712724],[117,137,66,0.012014601673450835],[117,137,67,0.01277980538309906],[117,137,68,0.01378158650598915],[117,137,69,0.015067479592198785],[117,137,70,0.016659769081969537],[117,137,71,0.01750209761816608],[117,137,72,0.015419548326913697],[117,137,73,0.013084719590190853],[117,137,74,0.010546446627376823],[117,137,75,0.007863374791103606],[117,137,76,0.005101030088197544],[117,137,77,0.00232903206229098],[117,137,78,-3.815436334260189E-4],[117,137,79,-0.002960646080738255],[117,138,64,0.011736470150115011],[117,138,65,0.012028464502402412],[117,138,66,0.012542218196757599],[117,138,67,0.013256041449396858],[117,138,68,0.014197391008879377],[117,138,69,0.015415938147869505],[117,138,70,0.016936190913145903],[117,138,71,0.017323129455359753],[117,138,72,0.01531593827640408],[117,138,73,0.013054677961093244],[117,138,74,0.010586217447129275],[117,138,75,0.007967395926959452],[117,138,76,0.0052621251756824056],[117,138,77,0.0025386308134928894],[117,138,78,-1.3316025968534284E-4],[117,138,79,-0.002684079444219436],[117,139,64,0.012087269933950293],[117,139,65,0.012346391516683685],[117,139,66,0.012820219540964413],[117,139,67,0.01348457296519269],[117,139,68,0.01436719180232417],[117,139,69,0.015520005371095448],[117,139,70,0.01696990445465761],[117,139,71,0.017384715072726944],[117,139,72,0.015450459416227325],[117,139,73,0.013259686044794166],[117,139,74,0.010857100068064403],[117,139,75,0.008297551444455202],[117,139,76,0.005643176638436545],[117,139,77,0.0029606746703751395],[117,139,78,3.1872467487187745E-4],[117,139,79,-0.0022144483272713593],[117,140,64,0.01219711035444326],[117,140,65,0.012425793122836846],[117,140,66,0.012861830163304671],[117,140,67,0.013478732723434786],[117,140,68,0.014304624389940407],[117,140,69,0.01539373622268811],[117,140,70,0.01677542886964311],[117,140,71,0.017671916059674306],[117,140,72,0.015807805456253522],[117,140,73,0.01368419572884599],[117,140,74,0.011343472371616635],[117,140,75,0.00883834723444286],[117,140,76,0.0062290471009226875],[117,140,77,0.003580631036421963],[117,140,78,9.604434692521951E-4],[117,140,79,-0.0015642904268260292],[117,141,64,0.012102206121113835],[117,141,65,0.012302370918254629],[117,141,66,0.012702245272774054],[117,141,67,0.013273306986538806],[117,141,68,0.014044147672238484],[117,141,69,0.015071254531724074],[117,141,70,0.01638646506160393],[117,141,71,0.017999015529224397],[117,141,72,0.016355675021731998],[117,141,73,0.014296961551602778],[117,141,74,0.012015442052248342],[117,141,75,0.009561566350797896],[117,141,76,0.006993531643621488],[117,141,77,0.004374648032792388],[117,141,78,0.0017708329947998419],[117,141,79,-7.517588161109824E-4],[117,142,64,0.011863365467155705],[117,142,65,0.012036011037260414],[117,142,66,0.012400320959210398],[117,142,67,0.012926086505325793],[117,142,68,0.013642423562234513],[117,142,69,0.014607933551298987],[117,142,70,0.015856854562162813],[117,142,71,0.01740098653157259],[117,142,72,0.017044302784226962],[117,142,73,0.015050829418966226],[117,142,74,0.012828894180753721],[117,142,75,0.010426571510586222],[117,142,76,0.007899906400302793],[117,142,77,0.005310335745665603],[117,142,78,0.0027222309407367315],[117,142,79,2.005679215045448E-4],[117,143,64,0.011553337091882972],[117,143,65,0.011698457497351222],[117,143,66,0.012026611311107056],[117,143,67,0.012506308662306096],[117,143,68,0.013167213941521129],[117,143,69,0.014069808725269735],[117,143,70,0.015250578562252945],[117,143,71,0.016723810274525408],[117,143,72,0.017815049128470296],[117,143,73,0.015890493153377688],[117,143,74,0.013732328183797342],[117,143,75,0.011386137918042829],[117,143,76,0.008905676838523249],[117,143,77,0.006350356008873729],[117,143,78,0.003782841663120558],[117,143,79,0.0012667725717288116],[117,144,64,0.011203448936336308],[117,144,65,0.011321309323778792],[117,144,66,0.011612958098336913],[117,144,67,0.012046108682937992],[117,144,68,0.012650993416555806],[117,144,69,0.013489677580929544],[117,144,70,0.014600686882964243],[117,144,71,0.0160006732244294],[117,144,72,0.017687276878294952],[117,144,73,0.01678300292968435],[117,144,74,0.01469319109080418],[117,144,75,0.012408324283018107],[117,144,76,0.009979735237375812],[117,144,77,0.007464657460434158],[117,144,78,0.004923888116187382],[117,144,79,0.002419560202370453],[117,145,64,0.010830938790959694],[117,145,65,0.010922407418087442],[117,145,66,0.01117784464873252],[117,145,67,0.011564723807174451],[117,145,68,0.012113864380205225],[117,145,69,0.012888568212270456],[117,145,70,0.01392914695396433],[117,145,71,0.015254453744639086],[117,145,72,0.01686461773906802],[117,145,73,0.01770391357178942],[117,145,74,0.0156864166643652],[117,145,75,0.013467592723569403],[117,145,76,0.011096240221228718],[117,145,77,0.008627277548216988],[117,145,78,0.006119478474735442],[117,145,79,0.003633306592776368],[117,146,64,0.010451283700619554],[117,146,65,0.010517780742751955],[117,146,66,0.010737909365430696],[117,146,67,0.011079512481062969],[117,146,68,0.011574012418965003],[117,146,69,0.012285557332069697],[117,146,70,0.01325594837831441],[117,146,71,0.01450603610474352],[117,146,72,0.01603831518831605],[117,146,73,0.01783946575094759],[117,146,74,0.01668892895623209],[117,146,75,0.014540385914891082],[117,146,76,0.012231323373954918],[117,146,77,0.009814225368613561],[117,146,78,0.007345701525002375],[117,146,79,0.00488439097689837],[117,147,64,0.010078073859860768],[117,147,65,0.010121508331218025],[117,147,66,0.01030779502338125],[117,147,67,0.010605788687108002],[117,147,68,0.011047524362178781],[117,147,69,0.011697573283627012],[117,147,70,0.01259889460024875],[117,147,71,0.013774096750335021],[117,147,72,0.01522788119851214],[117,147,73,0.01694944214281546],[117,147,74,0.01767981789216954],[117,147,75,0.015605267155934216],[117,147,76,0.013363180890581226],[117,147,77,0.01100351165391753],[117,147,78,0.008580581757359044],[117,147,79,0.006151063397595922],[117,148,64,0.009722928802796104],[117,148,65,0.009745625708770586],[117,148,66,0.009900044006930205],[117,148,67,0.010156703816721197],[117,148,68,0.010548255434363095],[117,148,69,0.011139249043455339],[117,148,70,0.011973444249774565],[117,148,71,0.013074938317090945],[117,148,72,0.014450449032455922],[117,148,73,0.01609156339932938],[117,148,74,0.0179769468407973],[117,148,75,0.01664304136444251],[117,148,76,0.014472158956915681],[117,148,77,0.012175187421021394],[117,148,78,0.00980406001113432],[117,148,79,0.007413356230969009],[117,149,64,0.00939545599680089],[117,149,65,0.009400075842516393],[117,149,66,0.00952503961448335],[117,149,67,0.009743176219210387],[117,149,68,0.01008774565390729],[117,149,69,0.01062282536511876],[117,149,70,0.011392602317156109],[117,149,71,0.01242237153904236],[117,149,72,0.013720649975710845],[117,149,73,0.015281266381478345],[117,149,74,0.017085422462658973],[117,149,75,0.017636856957518494],[117,149,76,0.015540832871073636],[117,149,77,0.013311391365871022],[117,149,78,0.010997999840579746],[117,149,79,0.008653040148341876],[117,150,64,0.009103251953045392],[117,150,65,0.009092704741526817],[117,150,66,0.009190993557689231],[117,150,67,0.009373868561720398],[117,150,68,0.009675185619783682],[117,150,69,0.010158104211104718],[117,150,70,0.01086686130539528],[117,150,71,0.011827645194488966],[117,150,72,0.013050534222160359],[117,150,73,0.01453142200704305],[117,150,74,0.01625392490693718],[117,150,75,0.01819126756581339],[117,150,76,0.016554079925260597],[117,150,77,0.01439640608902298],[117,150,78,0.012146219766977258],[117,150,79,0.00985362477315688],[117,151,64,0.008851945973472124],[117,151,65,0.00882930183377885],[117,151,66,0.00890397978692673],[117,151,67,0.00905521313749543],[117,151,68,0.009317431829341997],[117,151,69,0.009752452619414825],[117,151,70,0.010404192506930787],[117,151,71,0.011299424229521824],[117,151,72,0.01244953603909858],[117,151,73,0.013852288527273252],[117,151,74,0.015493564799687472],[117,151,75,0.017349110365163904],[117,151,76,0.017499146070254663],[117,151,77,0.015416723239079007],[117,151,78,0.013234551579391832],[117,151,79,0.01100040428224124],[117,152,64,0.008645286663050498],[117,152,65,0.008613685254900222],[117,152,66,0.008668014782090302],[117,152,67,0.008791485265739411],[117,152,68,0.009019071674732912],[117,152,69,0.009410857154428241],[117,152,70,0.010010087551922084],[117,152,71,0.010843816198514426],[117,152,72,0.011924483336051953],[117,152,73,0.013251503118949211],[117,152,74,0.014812855044325767],[117,152,75,0.016586676703339187],[117,152,76,0.018365706388776614],[117,152,77,0.016361117662754485],[117,152,78,0.014250924845616698],[117,152,79,0.012080548195736335],[117,153,64,0.008485271348069574],[117,153,65,0.008447832194923396],[117,153,66,0.008485184457794072],[117,153,67,0.008584924935271073],[117,153,68,0.008782538273080343],[117,153,69,0.009136029097609457],[117,153,70,0.009687650379746086],[117,153,71,0.010464446163326768],[117,153,72,0.011479651762041743],[117,153,73,0.012734111891431813],[117,153,74,0.014217714135805064],[117,153,75,0.015910835165446714],[117,153,76,0.017785797147206277],[117,153,77,0.017220730652869734],[117,153,78,0.015185477795460848],[117,153,79,0.013083237597460037],[117,154,64,0.008372318555831372],[117,154,65,0.008332054463257278],[117,154,66,0.008355817845144461],[117,154,67,0.008435906856088379],[117,154,68,0.008608275296186435],[117,154,69,0.008928560542789708],[117,154,70,0.009437739792707742],[117,154,71,0.010162580198331413],[117,154,72,0.01111686345924046],[117,154,73,0.012302638409465992],[117,154,74,0.01371149953431778],[117,154,75,0.015325889342268579],[117,154,76,0.01712042252024031],[117,154,77,0.01798916238861315],[117,154,78,0.016030694740686885],[117,154,79,0.013999847027630947],[117,155,64,0.008305483728374884],[117,155,65,0.008265219448891603],[117,155,66,0.00827870772815845],[117,155,67,0.008343159097874633],[117,155,68,0.008494951979316191],[117,155,69,0.008787131573060186],[117,155,70,0.009259162761466544],[117,155,71,0.009937297656736902],[117,155,72,0.0108356306069704],[117,155,73,0.011957190836031579],[117,155,74,0.013295071164728613],[117,155,75,0.014833591229820513],[117,155,76,0.01654949359678525],[117,155,77,0.018413171152854044],[117,155,78,0.01678157019963483],[117,155,79,0.014824172292753015],[117,156,64,0.008282718362813794],[117,156,65,0.008245016672478256],[117,156,66,0.008251378431757689],[117,156,67,0.008304030512429292],[117,156,68,0.008439728505506715],[117,156,69,0.008708768711820114],[117,156,70,0.00914891866536158],[117,156,71,0.009785712365108924],[117,156,72,0.010633343898805046],[117,156,73,0.011695607805504198],[117,156,74,0.012966885111003698],[117,156,75,0.01443317391836381],[117,156,76,0.016073163393350267],[117,156,77,0.017859349952727015],[117,156,78,0.017435799899877223],[117,156,79,0.015552704443064853],[117,157,64,0.008301172793464349],[117,157,65,0.008268270149345312],[117,157,66,0.008270400980009524],[117,157,67,0.00831480715795339],[117,157,68,0.008438571981848166],[117,157,69,0.008689154859194493],[117,157,70,0.009102494667651704],[117,157,71,0.009703242927452354],[117,157,72,0.010505506107142903],[117,157,73,0.011513643145776473],[117,157,74,0.012723117579858978],[117,157,75,0.014121403592300638],[117,157,76,0.015688945238318333],[117,157,77,0.017400168050721497],[117,157,78,0.017993998839131352],[117,157,79,0.016184950176308336],[117,158,64,0.008357542856154681],[117,158,65,0.008331296807677527],[117,158,66,0.008331755867901717],[117,158,67,0.008371077967056566],[117,158,68,0.00848662324728647],[117,158,69,0.008722990946878737],[117,158,70,0.009114212445684134],[117,158,71,0.009683932337730142],[117,158,72,0.010446010904047858],[117,158,73,0.011405189578819969],[117,158,74,0.012557819214732304],[117,158,75,0.013892650865148485],[117,158,76,0.01539168872045389],[117,158,77,0.01703110476480412],[117,158,78,0.018459946593085984],[117,158,79,0.016723798937657703],[117,159,64,0.008448460702920085],[117,159,65,0.0084303112340181],[117,159,66,0.0084312437174099],[117,159,67,0.008468149927262835],[117,159,68,0.008578614777690341],[117,159,69,0.008804409569472791],[117,159,70,0.009177626519164222],[117,159,71,0.00972081712026907],[117,159,72,0.010447467124408876],[117,159,73,0.01136254154246881],[117,159,74,0.012463099850025456],[117,159,75,0.013738981477856434],[117,159,76,0.015173561572122086],[117,159,77,0.01674457692117338],[117,159,78,0.018425021868096608],[117,159,79,0.01717593699950134],[117,160,64,0.008570930065647618],[117,160,65,0.008561877048863565],[117,160,66,0.008564944118898785],[117,160,67,0.00860151307263383],[117,160,68,0.008709339983167952],[117,160,69,0.008927440878502458],[117,160,70,0.009285974445991208],[117,160,71,0.009806346241108401],[117,160,72,0.010501568677541224],[117,160,73,0.011376697291956695],[117,160,74,0.012429343806346709],[117,160,75,0.013650266394076757],[117,160,76,0.01502403744563274],[117,160,77,0.016529789027957386],[117,160,78,0.018142036138513513],[117,160,79,0.01755230882134832],[117,161,64,0.008722806300079117],[117,161,65,0.008723405248374694],[117,161,66,0.008729722991933772],[117,161,67,0.008767355617847139],[117,161,68,0.008874174224862542],[117,161,69,0.009086531056543971],[117,161,70,0.009432679184510169],[117,161,71,0.009932850059957503],[117,161,72,0.010599510336210973],[117,161,73,0.011437700457929852],[117,161,74,0.012445455840211582],[117,161,75,0.013614311332650968],[117,161,76,0.014929889541281827],[117,161,77,0.01637257346671966],[117,161,78,0.017918263811144884],[117,161,79,0.017868626009399945],[117,162,64,0.008903321576857776],[117,162,65,0.00891369988406017],[117,162,66,0.00892378883531675],[117,162,67,0.008963129601615065],[117,162,68,0.009069647913654685],[117,162,69,0.009277113723130198],[117,162,70,0.009611903953476851],[117,162,71,0.010093059622016948],[117,162,72,0.010732449657701383],[117,162,73,0.011535021258288689],[117,162,74,0.012499137876342903],[117,162,75,0.01361700578553692],[117,162,76,0.014875190046361791],[117,162,77,0.01625522056500064],[117,162,78,0.017734288822310252],[117,162,79,0.018145924217295103],[117,163,64,0.009113655623937192],[117,163,65,0.00913355149062997],[117,163,66,0.009147298274526821],[117,163,67,0.009188167444635771],[117,163,68,0.009294072091286678],[117,163,69,0.009496234661359541],[117,163,70,0.009819159956480595],[117,163,71,0.01028067662143326],[117,163,72,0.010892015319909793],[117,163,73,0.011657977584246243],[117,163,74,0.012577196667325433],[117,163,75,0.013642491578677878],[117,163,76,0.014841315345641077],[117,163,77,0.016156298405849083],[117,163,78,0.017565887910862044],[117,163,79,0.018411168354115],[117,164,64,0.009354388895043423],[117,164,65,0.009382904119932282],[117,164,66,0.00939925246812164],[117,164,67,0.009440315672061973],[117,164,68,0.009543916411145376],[117,164,69,0.009738686456357714],[117,164,70,0.010047215188958568],[117,164,71,0.010486078381264557],[117,164,72,0.011065834060707842],[117,164,73,0.011791112679730677],[117,164,74,0.012660803141201002],[117,164,75,0.013668336075704805],[117,164,76,0.014802065618204553],[117,164,77,0.01604575078879817],[117,164,78,0.017379137447265113],[117,164,79,0.01870210870033405],[117,165,64,0.00960621775617036],[117,165,65,0.009639649965297887],[117,165,66,0.009654574570811572],[117,165,67,0.009691368063056064],[117,165,68,0.009787672730797515],[117,165,69,0.009969481294270813],[117,165,70,0.01025744177529064],[117,165,71,0.010666872285563497],[117,165,72,0.011207673586239685],[117,165,73,0.011884339346644417],[117,165,74,0.012696065868348308],[117,165,75,0.01363696288074345],[117,165,76,0.014696366858219756],[117,165,77,0.015859258158579585],[117,165,78,0.01710678313913354],[117,165,79,0.01841688227266388],[117,166,64,0.009846226400017963],[117,166,65,0.009877560064074387],[117,166,66,0.009883672132442832],[117,166,67,0.009908257766811446],[117,166,68,0.009988681924079867],[117,166,69,0.010148300705795735],[117,166,70,0.01040585664101875],[117,166,71,0.010775473458897589],[117,166,72,0.011266480953373363],[117,166,73,0.011883340980483145],[117,166,74,0.012625676576336226],[117,166,75,0.013488406017124385],[117,166,76,0.0144619834791647],[117,166,77,0.015532747798696615],[117,166,78,0.0166833806796579],[117,166,79,0.017893475554691878],[117,167,64,0.010058462921220604],[117,167,65,0.010078035217104507],[117,167,66,0.010065285388644986],[117,167,67,0.01006698160952928],[117,167,68,0.010120114157682525],[117,167,69,0.010245468201615704],[117,167,70,0.010459984619130315],[117,167,71,0.010776724709401546],[117,167,72,0.011204600519759474],[117,167,73,0.011748210012172853],[117,167,74,0.012407779292672706],[117,167,75,0.013179213953021863],[117,167,76,0.01405426140273901],[117,167,77,0.015020785902906652],[117,167,78,0.016063157852775192],[117,167,79,0.017162758727837187],[117,168,64,0.010232140646417576],[117,168,65,0.010228284179825886],[117,168,66,0.010184639578504733],[117,168,67,0.010150729768217561],[117,168,68,0.010163078733246405],[117,168,69,0.010240037564331506],[117,168,70,0.010396919922161048],[117,168,71,0.010645923333517453],[117,168,72,0.010995756512624287],[117,168,73,0.01145137569679571],[117,168,74,0.012013832473568017],[117,168,75,0.012680235394488265],[117,168,76,0.013443827490802914],[117,168,77,0.014294181630267465],[117,168,78,0.015217515483987582],[117,168,79,0.016197127709496592],[117,169,64,0.010359643794194354],[117,169,65,0.010319299100567815],[117,169,66,0.0102313890139779],[117,169,67,0.010147802572871336],[117,169,68,0.010104517432814512],[117,169,69,0.010117662750342662],[117,169,70,0.010201169659190483],[117,169,71,0.010366633178950455],[117,169,72,0.010622827158366198],[117,169,73,0.010975333034851945],[117,169,74,0.011426285163722702],[117,169,75,0.01197423527941638],[117,169,76,0.012614138461152804],[117,169,77,0.013337462788901312],[117,169,78,0.014132424694086357],[117,169,79,0.014984351835129394],[117,170,64,0.010434401862785665],[117,170,65,0.01034369911494468],[117,170,66,0.010197429853827987],[117,170,67,0.010049397283561112],[117,170,68,0.009934969963379527],[117,170,69,0.009868343354409281],[117,170,70,0.00986237809996996],[117,170,71,0.009928384633956261],[117,170,72,0.010075516085944912],[117,170,73,0.010310280563701275],[117,170,74,0.010636175867211316],[117,170,75,0.011053449486634071],[117,170,76,0.011558986535458216],[117,170,77,0.01214632807161738],[117,170,78,0.012805822065317772],[117,170,79,0.013524909084936063],[117,171,64,0.010448631160888113],[117,171,65,0.010293440555441532],[117,171,66,0.010074580093078437],[117,171,67,0.009847263412806034],[117,171,68,0.00964621013820451],[117,171,69,0.009484044350987007],[117,171,70,0.00937293048667154],[117,171,71,0.009324261440327474],[117,171,72,0.009347920008941525],[117,171,73,0.009451666142017756],[117,171,74,0.00964065338019241],[117,171,75,0.00991707764790673],[117,171,76,0.010279961352276927],[117,171,77,0.010725075528272418],[117,171,78,0.011245002562197235],[117,171,79,0.011829341823451451],[117,172,64,0.010390941744497225],[117,172,65,0.010157392083077798],[117,172,66,0.009852125127650267],[117,172,67,0.009531225013742827],[117,172,68,0.00922875128474984],[117,172,69,0.008956188681247623],[117,172,70,0.008725435051874519],[117,172,71,0.008548373089470812],[117,172,72,0.008435991557576572],[117,172,73,0.00839763972123715],[117,172,74,0.008440418712250005],[117,172,75,0.008568713331645432],[117,172,76,0.00878386756387384],[117,172,77,0.009084006850004853],[117,172,78,0.00946400994337032],[117,172,79,0.009915632952812259],[117,173,64,0.01024380786601448],[117,173,65,0.009918772891393556],[117,173,66,0.009514227097972242],[117,173,67,0.009086568200057049],[117,173,68,0.00866921921644771],[117,173,69,0.008273021104772852],[117,173,70,0.007910081754888785],[117,173,71,0.007593211418563556],[117,173,72,0.0073348959943017634],[117,173,73,0.0071464119655275165],[117,173,74,0.0070370870962796],[117,173,75,0.007013710745939616],[117,173,76,0.007080097420072541],[117,173,77,0.007236806930443033],[117,173,78,0.007481024295942165],[117,173,79,0.007806602279963402],[117,174,64,0.00998089988158623],[117,174,65,0.009552451972545744],[117,174,66,0.009037196055503847],[117,174,67,0.00849129200502058],[117,174,68,0.007947590948814864],[117,174,69,0.007416841580811716],[117,174,70,0.006911876097908413],[117,174,71,0.006446889877483351],[117,174,72,0.006036260405345808],[117,174,73,0.00569351744626495],[117,174,74,0.005430468957442921],[117,174,75,0.005256486985598569],[117,174,76,0.00517795752598893],[117,174,77,0.005197898059064586],[117,174,78,0.0053157462199312664],[117,174,79,0.00552732279997262],[117,175,64,0.00957875597729479],[117,175,65,0.009036425968546362],[117,175,66,0.008400689414533617],[117,175,67,0.007726929646659988],[117,175,68,0.007047523184274024],[117,175,69,0.006373713361254009],[117,175,70,0.005719589857281616],[117,175,71,0.005101194405470152],[117,175,72,0.004535180612796004],[117,175,73,0.00403763576794545],[117,175,74,0.0036230695521758637],[117,175,75,0.003303574290290906],[117,175,76,0.0030881610968629897],[117,175,77,0.002982275989885424],[117,175,78,0.0029874997626520277],[117,175,79,0.003101435127614243],[117,176,64,0.009063207730081976],[117,176,65,0.008397759487825875],[117,176,66,0.007632911867995345],[117,176,67,0.006822701787736413],[117,176,68,0.005999107665006025],[117,176,69,0.005174432226941699],[117,176,70,0.004364529111122397],[117,176,71,0.0035877190040144316],[117,176,72,0.002863288024930249],[117,176,73,0.0022101597112976186],[117,176,74,0.001645745945943504],[117,176,75,0.0011849818685752483],[117,176,76,8.395495108430739E-4],[117,176,77,6.172945899154256E-4],[117,176,78,5.218405921095016E-4],[117,176,79,5.524039787429806E-4],[117,177,64,0.008473861943218851],[117,177,65,0.007677553866186608],[117,177,66,0.006776355422523461],[117,177,67,0.0058223688677688625],[117,177,68,0.004847223474605214],[117,177,69,0.003864802642329763],[117,177,70,0.002893183739622624],[117,177,71,0.0019533524538749153],[117,177,72,0.0010675401811011949],[117,177,73,2.5774715269685067E-4],[117,177,74,-4.5554293575397975E-4],[117,177,75,-0.0010544513475709367],[117,177,76,-0.00152459065814505],[117,177,77,-0.0018557442428754909],[117,177,78,-0.002042334430496859],[117,177,79,-0.0020836751746191517],[117,178,64,0.007850244163747938],[117,178,65,0.0069171809500728505],[117,178,66,0.005874198841204589],[117,178,67,0.004770888027176517],[117,178,68,0.0036385572536714304],[117,178,69,0.0024931386430832652],[117,178,70,0.0013553353515044543],[117,178,71,2.4912572967626743E-4],[117,178,72,-8.000569622156748E-4],[117,178,73,-0.0017669467736962025],[117,178,74,-0.0026278630380677415],[117,178,75,-0.003361918262188593],[117,178,76,-0.003952010438425417],[117,178,77,-0.004385594633815198],[117,178,78,-0.004655229059890774],[117,178,79,-0.004758891171572325],[117,179,64,0.007231234492749813],[117,179,65,0.006157637059950047],[117,179,66,0.004969562091183604],[117,179,67,0.0037135477367089722],[117,179,68,0.00242059616675217],[117,179,69,0.00110909303775055],[117,179,70,-1.972987211290609E-4],[117,179,71,-0.0014713491944442724],[117,179,72,-0.002684233253880852],[117,179,73,-0.0038072920503362485],[117,179,74,-0.004813577651923257],[117,179,75,-0.005679174615173252],[117,179,76,-0.00638429264330243],[117,179,77,-0.006914124855474375],[117,179,78,-0.007259466561314515],[117,179,79,-0.007417089802012066],[117,180,64,0.0066544880461816515],[117,180,65,0.005438882781178001],[117,180,66,0.004104749863582557],[117,180,67,0.002695096502029213],[117,180,68,0.0012406219064705155],[117,180,69,-2.375029013132994E-4],[117,180,70,-0.001712398611282923],[117,180,71,-0.0031534022803107373],[117,180,72,-0.0045281816500340084],[117,180,73,-0.005804627367929596],[117,180,74,-0.006952516173873345],[117,180,75,-0.007944938493726841],[117,180,76,-0.008759484267990227],[117,180,77,-0.009379181234073873],[117,180,78,-0.009793180271879542],[117,180,79,-0.00999718281048291],[117,181,64,0.006155839612954902],[117,181,65,0.004799168109451115],[117,181,66,0.0033204836833359247],[117,181,67,0.0017588651583652557],[117,181,68,1.4470525491305002E-4],[117,181,69,-0.0014977897208816938],[117,181,70,-0.0031383527206353696],[117,181,71,-0.004742790486134566],[117,181,72,-0.006275228913775685],[117,181,73,-0.007700125168933072],[117,181,74,-0.00898403928393821],[117,181,75,-0.010097158370483654],[117,181,76,-0.011014566982220267],[117,181,77,-0.011717257572775749],[117,181,78,-0.012192875404837156],[117,181,79,-0.012436192673500395],[117,182,64,0.005768692030181042],[117,182,65,0.004274342449371221],[117,182,66,0.0026551220971780722],[117,182,67,9.458822403461542E-4],[117,182,68,-8.232993074885082E-4],[117,182,69,-0.002625020536012668],[117,182,70,-0.0044255465978363705],[117,182,71,-0.006187145361546052],[117,182,72,-0.007870450053863796],[117,182,73,-0.00943657839718968],[117,182,74,-0.010849000690560013],[117,182,75,-0.012075149695265767],[117,182,76,-0.013087765607951062],[117,182,77,-0.013865969830519695],[117,182,78,-0.014396061673935522],[117,182,79,-0.014672032558062108],[117,183,64,0.0055233877695175125],[117,183,65,0.0038971489371290736],[117,183,66,0.002143868399862355],[117,183,67,2.9398188395245183E-4],[117,183,68,-0.0016227594830483464],[117,183,69,-0.003575692764229144],[117,183,70,-0.0055276303754630066],[117,183,71,-0.007437383608033779],[117,183,72,-0.009262226860846611],[117,183,73,-0.01096010922036059],[117,183,74,-0.012491605598846687],[117,183,75,-0.013821600068771457],[117,183,76,-0.01492069446713287],[117,183,77,-0.0157663357849005],[117,183,78,-0.016343656299538382],[117,183,79,-0.016646020848852063],[117,184,64,0.0054465632035058],[117,184,65,0.0036965025318170257],[117,184,66,0.001817965331963735],[117,184,67,-1.6309630884783177E-4],[117,184,68,-0.00221727209071365],[117,184,69,-0.004310671386961064],[117,184,70,-0.006402765269992408],[117,184,71,-0.008449081051914505],[117,184,72,-0.010403750910192647],[117,184,73,-0.012221799996833576],[117,184,74,-0.013861166056435996],[117,184,75,-0.015284443017272479],[117,184,76,-0.016460341467603147],[117,184,77,-0.01736485938305965],[117,184,78,-0.017982156926284267],[117,184,79,-0.01830512959290449],[117,185,64,0.005560484996900223],[117,185,65,0.003696751294787596],[117,185,66,0.0017038761575388518],[117,185,67,-3.9661603650577114E-4],[117,185,68,-0.002575671638340572],[117,185,69,-0.004796304300669517],[117,185,70,-0.007014849665513572],[117,185,71,-0.0091838104882098],[117,185,72,-0.0112544714068875],[117,185,73,-0.013179246756247534],[117,185,74,-0.014913753320405003],[117,185,75,-0.01641860036745301],[117,185,76,-0.017660889765806813],[117,185,77,-0.018615419445630384],[117,185,78,-0.019265583933757647],[117,185,79,-0.019603966153273797],[117,186,64,0.00588236804542089],[117,186,65,0.00391692025290035],[117,186,66,0.0018224515066873187],[117,186,67,-3.837623111089954E-4],[117,186,68,-0.002673041138939322],[117,186,69,-0.005005530336813094],[117,186,70,-0.007334725314009078],[117,186,71,-0.009610443859838535],[117,186,72,-0.011781488244520905],[117,186,73,-0.013798035452574745],[117,186,74,-0.015613747368631668],[117,186,75,-0.017187593189862606],[117,186,76,-0.018485376803199016],[117,186,77,-0.019480962335534906],[117,186,78,-0.020157191557084717],[117,186,79,-0.02050648728777704],[117,187,64,0.006423674363374119],[117,187,65,0.0043699372197203564],[117,187,66,0.0021880813469314607],[117,187,67,-1.0856935370640783E-4],[117,187,68,-0.0024917257934249488],[117,187,69,-0.004918980542880677],[117,187,70,-0.007341364192683167],[117,187,71,-0.009706419237162487],[117,187,72,-0.01196089064394005],[117,187,73,-0.014053141230754648],[117,187,74,-0.015935283649843406],[117,187,75,-0.01756502123810023],[117,187,76,-0.0189071904589881],[117,187,77,-0.01993499813605118],[117,187,78,-0.020630947153801527],[117,187,79,-0.020987444775456856],[117,188,64,0.007189392302350706],[117,188,65,0.0050618399289400285],[117,188,66,0.0028078314285129745],[117,188,67,4.371409761552958E-4],[117,188,68,-0.0020223501761323795],[117,188,69,-0.004526073325907892],[117,188,70,-0.0070230365618162],[117,188,71,-0.009458973057997325],[117,188,72,-0.011779041721988211],[117,188,73,-0.013930250922110506],[117,188,74,-0.015863597128260232],[117,188,75,-0.017535910758860625],[117,188,76,-0.018911401995452222],[117,188,77,-0.019962899801264016],[117,188,78,-0.02067277785707406],[117,188,79,-0.021033561602445867],[117,189,64,0.00817729546598787],[117,189,65,0.005990963816760586],[117,189,66,0.0036805635324692796],[117,189,67,0.0012528095507675899],[117,189,68,-0.0012648395695652988],[117,189,69,-0.0038261040649515948],[117,189,70,-0.006378460764746803],[117,189,71,-0.008866338077515367],[117,189,72,-0.01123380931951675],[117,189,73,-0.013427008950102176],[117,189,74,-0.015396263631222238],[117,189,75,-0.01709793048540533],[117,189,76,-0.01849593539355375],[117,189,77,-0.019563004647029817],[117,189,78,-0.020281583743723592],[117,189,79,-0.020644437590854787],[117,190,64,0.009377180670815733],[117,190,65,0.007147109774944675],[117,190,66,0.004796038836947712],[117,190,67,0.002328178467974376],[117,190,68,-2.2944610133568297E-4],[117,190,69,-0.0028293297997341598],[117,190,70,-0.00541793530467593],[117,190,71,-0.007938907460928776],[117,190,72,-0.010335743389732947],[117,190,73,-0.012554186786428749],[117,190,74,-0.014544338451633082],[117,190,75,-0.0162624755541192],[117,190,76,-0.01767257258634021],[117,190,77,-0.018747517442391427],[117,190,78,-0.019470016519121454],[117,190,79,-0.01983318320987349],[117,191,64,0.010770084290749686],[117,191,65,0.008510691184001645],[117,191,66,0.006134003706917739],[117,191,67,0.003642316984703568],[117,191,68,0.0010622196612645894],[117,191,69,-0.0015580495988242009],[117,191,70,-0.004164453720819496],[117,191,71,-0.006700365429260806],[117,191,72,-0.00910920021289],[117,191,73,-0.011336776048035551],[117,191,74,-0.013333392091478906],[117,191,75,-0.015055619000710315],[117,191,76,-0.016467793995908964],[117,191,77,-0.017543214240358256],[117,191,78,-0.018265022580382467],[117,191,79,-0.018626780148125997],[117,192,64,0.012327476313093588],[117,192,65,0.010051859526764921],[117,192,66,0.0076632572055223905],[117,192,67,0.0051626342034659925],[117,192,68,0.0025761510053843254],[117,192,69,-4.768120206992548E-5],[117,192,70,-0.0026548027688253896],[117,192,71,-0.005188784839765926],[117,192,72,-0.007593413661291807],[117,192,73,-0.009815005268243892],[117,192,74,-0.011804442958250736],[117,192,75,-0.013518930399583247],[117,192,76,-0.014923453666935127],[117,192,77,-0.015991945953670508],[117,192,78,-0.016708149165111826],[117,192,79,-0.01706616705132488],[117,193,64,0.01401043142730289],[117,193,65,0.011729607876784842],[117,193,66,0.009340699622082073],[117,193,67,0.006843877825753912],[117,193,68,0.004264900608034959],[117,193,69,0.0016521654816812662],[117,193,70,-9.406443871470276E-4],[117,193,71,-0.0034576920475497424],[117,193,72,-0.0058435136895710485],[117,193,73,-0.008045280310117354],[117,193,74,-0.010014786743042176],[117,193,75,-0.011710161107342099],[117,193,76,-0.01309728816645666],[117,193,77,-0.014150940536305692],[117,193,78,-0.014855612126134383],[117,193,79,-0.015206048640496149],[117,194,64,0.015768776464471064],[117,194,65,0.013490851553767284],[117,194,66,0.01111036131251251],[117,194,67,0.008627118291414985],[117,194,68,0.006066528676507046],[117,194,69,0.003476617459514779],[117,194,70,9.104180979865348E-4],[117,194,71,-0.001577099353513348],[117,194,72,-0.003931492169131079],[117,194,73,-0.00610104831733686],[117,194,74,-0.008038722117568915],[117,194,75,-0.009703795459560221],[117,194,76,-0.011063258286238227],[117,194,77,-0.012092902475695104],[117,194,78,-0.012778123693982364],[117,194,79,-0.013114426224516675],[117,195,64,0.01754077229112824],[117,195,65,0.01527011470220299],[117,195,66,0.012903106574121227],[117,195,67,0.010439477445341584],[117,195,68,0.007904365616744655],[117,195,69,0.0053453504928086416],[117,195,70,0.0028147205707345787],[117,195,71,3.664668548051716E-4],[117,195,72,-0.0019461157099531512],[117,195,73,-0.004072570803643972],[117,195,74,-0.005967160374246378],[117,195,75,-0.007590474845864288],[117,195,76,-0.008910767800807176],[117,195,77,-0.009905009468636598],[117,195,78,-0.010559653781596021],[117,195,79,-0.010871114179811587],[117,196,64,0.017937114864900273],[117,196,65,0.017020886713412123],[117,196,66,0.01467125658922114],[117,196,67,0.01223194812907222],[117,196,68,0.009727953654553714],[117,196,69,0.007206436565701915],[117,196,70,0.00471893601533611],[117,196,71,0.002318429316552781],[117,196,72,5.700127833456632E-5],[117,196,73,-0.002016234800393978],[117,196,74,-0.003856957780098165],[117,196,75,-0.005427194677687025],[117,196,76,-0.00669660612616203],[117,196,77,-0.007643495827095991],[117,196,78,-0.00825553894280189],[117,196,79,-0.00853022478923481],[117,197,64,0.016300655323656304],[117,197,65,0.018642153407449867],[117,197,66,0.016408662593947947],[117,197,67,0.01400097593446592],[117,197,68,0.011536087286742755],[117,197,69,0.00906070274085302],[117,197,70,0.006625527917129429],[117,197,71,0.0042824105129189265],[117,197,72,0.0020820848161554064],[117,197,73,7.216321270430514E-5],[117,197,74,-0.0017046188509639948],[117,197,75,-0.0032118983814716784],[117,197,76,-0.004420915161193871],[117,197,77,-0.005311471617860569],[117,197,78,-0.005872617385477323],[117,197,79,-0.0061030541047348294],[117,198,64,0.01472338320257031],[117,198,65,0.017037392027551782],[117,198,66,0.018106662478358224],[117,198,67,0.01574005782024885],[117,198,68,0.013324163950786864],[117,198,69,0.010905126371189738],[117,198,70,0.008532664480598673],[117,198,71,0.006257311774218668],[117,198,72,0.004128246852632733],[117,198,73,0.002191365954100144],[117,198,74,4.8760321114166223E-4],[117,198,75,-9.484955500951789E-4],[117,198,76,-0.0020899400391844016],[117,198,77,-0.0029181987250839246],[117,198,78,-0.0034238334145430694],[117,198,79,-0.0036068609377224773],[117,199,64,0.013222241296738858],[117,199,65,0.01549734070200346],[117,199,66,0.0178399837620303],[117,199,67,0.017437422957827842],[117,199,68,0.01508159413864826],[117,199,69,0.01273000591364819],[117,199,70,0.010431194143724426],[117,199,71,0.008234148965786203],[117,199,72,0.00618624664233962],[117,199,73,0.004331416278386802],[117,199,74,0.0027085473147536263],[117,199,75,0.001350143336382448],[117,199,76,2.81227356890681E-4],[117,199,77,-4.8149664023374627E-4],[117,199,78,-9.30221504763405E-4],[117,199,79,-0.001066350046481823],[117,200,64,0.011815471770822601],[117,200,65,0.014038915285429724],[117,200,66,0.016324315068039465],[117,200,67,0.01866725042156864],[117,200,68,0.01679389255704714],[117,200,69,0.014521167142664056],[117,200,70,0.012306970650818322],[117,200,71,0.010198496361729287],[117,200,72,0.00824104950950937],[117,200,73,0.006476323196403484],[117,200,74,0.00494090662885164],[117,200,75,0.003665030898748172],[117,200,76,0.002671557171063],[117,200,77,0.001975211773562133],[117,200,78,0.0015820723188841156],[117,200,79,0.001489308626972887],[117,201,64,0.010521019717690476],[117,201,65,0.012679357408431355],[117,201,66,0.014895045439486816],[117,201,67,0.01716128660058497],[117,201,68,0.018444663285646423],[117,201,69,0.016262073062927554],[117,201,70,0.01414309377216253],[117,201,71,0.012132860370339385],[117,201,72,0.010274331855332778],[117,201,73,0.008606692573227126],[117,201,74,0.007163975682542361],[117,201,75,0.005973913645546604],[117,201,76,0.005057020272225935],[117,201,77,0.004425908495170602],[117,201,78,0.0040848477066531864],[117,201,79,0.004029564145639787],[117,202,64,0.009355062280982141],[117,202,65,0.011434679526266419],[117,202,66,0.013568163316020811],[117,202,67,0.01574585186437069],[117,202,68,0.01793987257482003],[117,202,69,0.017935837665808977],[117,202,70,0.015922066014536582],[117,202,71,0.014018983671136674],[117,202,72,0.012266933196406026],[117,202,73,0.010702323527910115],[117,202,74,0.009356383677174588],[117,202,75,0.008254131058558899],[117,202,76,0.007413558603501147],[117,202,77,0.006845044487416947],[117,202,78,0.006550987970858327],[117,202,79,0.006525674534537471],[117,203,64,0.008330664002149955],[117,203,65,0.010318233956069742],[117,203,66,0.012357366885832216],[117,203,67,0.014435086184069973],[117,203,68,0.016522348659081275],[117,203,69,0.018578184614568415],[117,203,70,0.017627865599645774],[117,203,71,0.01584008027204204],[117,203,72,0.014201255987863915],[117,203,73,0.012744771542378127],[117,203,74,0.011498815276010686],[117,203,75,0.01048548449842978],[117,203,76,0.009720088954924913],[117,203,77,0.009210661778447798],[117,203,78,0.008957681069191623],[117,203,79,0.008954004945994753],[117,204,64,0.007456559186320097],[117,204,65,0.009339406593031839],[117,204,66,0.011272656008719163],[117,204,67,0.013239615571745458],[117,204,68,0.015209887630220364],[117,204,69,0.017143985733222077],[117,204,70,0.01900261124473927],[117,204,71,0.01758300193314112],[117,204,72,0.016063613939123943],[117,204,73,0.014719879258906048],[117,204,74,0.013576720127110658],[117,204,75,0.01265311746168501],[117,204,76,0.011961541960311666],[117,204,77,0.011507575541923994],[117,204,78,0.011289725886808082],[117,204,79,0.011299436558462033],[117,205,64,0.006736062221137141],[117,205,65,0.008502436130524852],[117,205,66,0.010319045335954544],[117,205,67,0.012165139184296582],[117,205,68,0.014008795135002219],[117,205,69,0.015812111440279355],[117,205,70,0.01753821729851871],[117,205,71,0.01915263433927809],[117,205,72,0.017846529473169764],[117,205,73,0.016620275905538422],[117,205,74,0.015583012352971196],[117,205,75,0.01475040871690058],[117,205,76,0.01413193813467486],[117,205,77,0.013730618270030685],[117,205,78,0.013542926172738213],[117,205,79,0.013558888805430913],[117,206,64,0.0061661069278979245],[117,206,65,0.007805359749599575],[117,206,66,0.009495399452463377],[117,206,67,0.011211132076146942],[117,206,68,0.012918954805754744],[117,206,69,0.014582623553236279],[117,206,70,0.016167839168069482],[117,206,71,0.017643304497654267],[117,206,72,0.018981581450761783],[117,206,73,0.018447846236374448],[117,206,74,0.017520761205140973],[117,206,75,0.016781879830372354],[117,206,76,0.016237502769561603],[117,206,77,0.015887948152815495],[117,206,78,0.015727574524084114],[117,206,79,0.015744957586820547],[117,207,64,0.005738176051660173],[117,207,65,0.007240390253567246],[117,207,66,0.008794379772975605],[117,207,67,0.010370495439361582],[117,207,68,0.011933323380272982],[117,207,69,0.013448324307532556],[117,207,70,0.014883891693545552],[117,207,71,0.0162120816965774],[117,207,72,0.017409222141913278],[117,207,73,0.018456401646668102],[117,207,74,0.01933983673415418],[117,207,75,0.01876099328769021],[117,207,76,0.018293677636783502],[117,207,77,0.017997231678274373],[117,207,78,0.017863786754887732],[117,207,79,0.017880406444606832],[117,208,64,0.005444902500797233],[117,208,65,0.00679936781300376],[117,208,66,0.008207196121708837],[117,208,67,0.009634103909148322],[117,208,68,0.011042795327443717],[117,208,69,0.012400466799331706],[117,208,70,0.01367829088827478],[117,208,71,0.014851800622296196],[117,208,72,0.01590123469165203],[117,208,73,0.016811785035105054],[117,208,74,0.017573745286744512],[117,208,75,0.018182558701126592],[117,208,76,0.01863876431944967],[117,208,77,0.018947840282251348],[117,208,78,0.01911994333336191],[117,208,79,0.019169543694154485],[117,209,64,0.005277782911279219],[117,209,65,0.0064733128559301455],[117,209,66,0.007724641333685791],[117,209,67,0.008992914156896832],[117,209,68,0.010238947278830297],[117,209,69,0.011431685222885915],[117,209,70,0.012545123539540714],[117,209,71,0.013558334430013625],[117,209,72,0.014455536316024063],[117,209,73,0.015226089510527261],[117,209,74,0.015864417106059694],[117,209,75,0.01636985030590302],[117,209,76,0.016746397529883637],[117,209,77,0.017002436730269133],[117,209,78,0.017150330452855547],[117,209,79,0.017205963272875605],[117,210,64,0.005225651859920662],[117,210,65,0.006251334419945217],[117,210,66,0.007336301452746324],[117,210,67,0.008437325972948941],[117,210,68,0.009513389072922478],[117,210,69,0.010535173221907793],[117,210,70,0.011479494414381706],[117,210,71,0.012328961786122682],[117,210,72,0.013071763948644686],[117,210,73,0.013701406391646144],[117,210,74,0.014216399724496374],[117,210,75,0.014619898597378594],[117,210,76,0.014919291209274214],[117,210,77,0.015125739372798562],[117,210,78,0.015253669164262752],[117,210,79,0.015320212240501348],[117,211,64,0.005274583774724616],[117,211,65,0.0061204247659971435],[117,211,66,0.007030243166015125],[117,211,67,0.007956760437551417],[117,211,68,0.008857230253364556],[117,211,69,0.009704037956202522],[117,211,70,0.010476769141630095],[117,211,71,0.011161502006060354],[117,211,72,0.011750307335529812],[117,211,73,0.012240725516271467],[117,211,74,0.012635220992636562],[117,211,75,0.012940614627232134],[117,211,76,0.013167494443394554],[117,211,77,0.01332960525089896],[117,211,78,0.013443217671728248],[117,211,79,0.013526477093411279],[117,212,64,0.005407940597656967],[117,212,65,0.0060654006569455035],[117,212,66,0.006792849270926757],[117,212,67,0.007539388165055418],[117,212,68,0.008260699340790783],[117,212,69,0.008930810135042948],[117,212,70,0.009531976592107779],[117,212,71,0.010053613420220466],[117,212,72,0.010491509160168267],[117,212,73,0.010847045004719481],[117,212,74,0.011126418339259755],[117,212,75,0.011339872062238571],[117,212,76,0.011500930727200582],[117,212,77,0.011625644526202858],[117,212,78,0.0117318421072634],[117,212,79,0.011838393186130298],[117,213,64,0.00560656733513776],[117,213,65,0.006068993346675827],[117,213,66,0.006608804139006056],[117,213,67,0.0071720095136503645],[117,213,68,0.007712917707485366],[117,213,69,0.00820711179037271],[117,213,70,0.008639372479458519],[117,213,71,0.00900225664433084],[117,213,72,0.009295033833008455],[117,213,73,0.009522653409723119],[117,213,74,0.009694744000265052],[117,213,75,0.009824646887464787],[117,213,76,0.00992848494024621],[117,213,77,0.010024268594808611],[117,213,78,0.010131040336190831],[117,213,79,0.01026805905308722],[117,214,64,0.005849137757172468],[117,214,65,0.006112089452690532],[117,214,66,0.006461231269500719],[117,214,67,0.006840088784035354],[117,214,68,0.007201830017896763],[117,214,69,0.007523483699722641],[117,214,70,0.00779216604399513],[117,214,71,0.008003324573638348],[117,214,72,0.008159406725306807],[117,214,73,0.008268585996443378],[117,214,74,0.008343547926381607],[117,214,75,0.008400338109402026],[117,214,76,0.00845727433653707],[117,214,77,0.008533924855565034],[117,214,78,0.008650154625696894],[117,214,79,0.00882524132565527],[117,215,64,0.006112652624561001],[117,215,65,0.0061741250058888544],[117,215,66,0.006331985149215723],[117,215,67,0.006527944556615224],[117,215,68,0.006714293327622438],[117,215,69,0.00686937450199899],[117,215,70,0.006982411818999071],[117,215,71,0.007051441061018849],[117,215,72,0.007081725771544453],[117,215,73,0.007084257043560151],[117,215,74,0.007074340229563266],[117,215,75,0.007070271289587486],[117,215,76,0.007092105351444128],[117,215,77,0.007160519908563189],[117,215,78,0.0072957749263491915],[117,215,79,0.007516771968935314],[117,216,64,0.006373092933320244],[117,216,65,0.006233635083978164],[117,216,66,0.00620209975082972],[117,216,67,0.006219098436384133],[117,216,68,0.006236327057161336],[117,216,69,0.006233293677360486],[117,216,70,0.006201068611432572],[117,216,71,0.006139930376026582],[117,216,72,0.006057547505639657],[117,216,73,0.005967270201169326],[117,216,74,0.00588653517591804],[117,216,75,0.005835386889803802],[117,216,76,0.005835118180710639],[117,216,77,0.005907033113175264],[117,216,78,0.006071334670275364],[117,216,79,0.006346139716084202],[117,217,64,0.006606230764530636],[117,217,65,0.006268961537851575],[117,217,66,0.006052396108822391],[117,217,67,0.005896784585885722],[117,217,68,0.005753526172771433],[117,217,69,0.0056031306835128735],[117,217,70,0.005438227955278002],[117,217,71,0.0052609596731859115],[117,217,72,0.005080949732229217],[117,217,73,0.004913409081586826],[117,217,74,0.004777378877163438],[117,217,75,0.004694115557179311],[117,217,76,0.004685621236152485],[117,217,77,0.00477332258605437],[117,217,78,0.004976901141415498],[117,217,79,0.005313277729467674],[117,218,64,0.006788600414407052],[117,218,65,0.006259121411475308],[117,218,66,0.005864251508077084],[117,218,67,0.00554462252768422],[117,218,68,0.005251640013337904],[117,218,69,0.004966642653075651],[117,218,70,0.004683514413853769],[117,218,71,0.00440585682164122],[117,218,72,0.00414477316347939],[117,218,73,0.003916810393260851],[117,218,74,0.0037420629710104595],[117,218,75,0.003642442619514381],[117,218,76,0.003640117727430073],[117,218,77,0.003756125866177571],[117,218,78,0.00400916262088992],[117,218,79,0.004414549665559678],[117,219,64,0.006898632551443943],[117,219,65,0.006184838733320511],[117,219,66,0.005620532903222367],[117,219,67,0.0051474557866333015],[117,219,68,0.004717319297238053],[117,219,69,0.004312113158193979],[117,219,70,0.003926660215439406],[117,219,71,0.003565606062574164],[117,219,72,0.0032410444721593943],[117,219,73,0.0029703220537491727],[117,219,74,0.002774026711476114],[117,219,75,0.0026741641958300862],[117,219,76,0.0026925267571457417],[117,219,77,0.0028492576141510772],[117,219,78,0.0031616146519289744],[117,219,79,0.0036429364621688824],[117,220,64,0.0069179542029294315],[117,220,65,0.0060297424190958624],[117,220,66,0.005306697254800561],[117,220,67,0.00469235901684773],[117,220,68,0.004139033924736186],[117,220,69,0.003629184637220223],[117,220,70,0.0031582568022986953],[117,220,71,0.002731524063475515],[117,220,72,0.002361583320949146],[117,220,73,0.002066048832988427],[117,220,74,0.0018654500107434986],[117,220,75,0.0017813374522907756],[117,220,76,0.0018346014452914959],[117,220,77,0.002044006844381702],[117,220,78,0.0024249479017578995],[117,220,79,0.002988426300005593],[117,221,64,0.006832857409678122],[117,221,65,0.0057817330692275706],[117,221,66,0.004912061519149495],[117,221,67,0.004169816316424269],[117,221,68,0.003508164257207733],[117,221,69,0.002909867151818184],[117,221,70,0.0023706859544471897],[117,221,71,0.0018961190271333673],[117,221,72,0.0014987960238519392],[117,221,73,0.0011960881805409464],[117,221,74,0.0010079400824852898],[117,221,75,9.549276469275457E-4],[117,221,76,0.0010565467163544341],[117,221,77,0.0013297363089519775],[117,221,78,0.0017876402199020135],[117,221,79,0.002438610313375922],[117,222,64,0.006635939403206465],[117,222,65,0.00543452146791034],[117,222,66,0.0044312450601820515],[117,222,67,0.0035750734723420862],[117,222,68,0.0028202686021843643],[117,222,69,0.002149726198935251],[117,222,70,0.0015592332139329204],[117,222,71,0.0010541355857058956],[117,222,72,6.466585757474011E-4],[117,222,73,3.534589777279138E-4],[117,222,74,1.9341443008659951E-4],[117,222,75,1.8565470550406884E-4],[117,222,76,3.4783948567596306E-4],[117,222,77,6.946867585903694E-4],[117,222,78,0.0012367556010295837],[117,222,79,0.0019794867343475068],[117,223,64,0.006327917151260275],[117,223,65,0.00498934159112658],[117,223,66,0.003865787260564092],[117,223,67,0.0029096668961193064],[117,223,68,0.002076529660340566],[117,223,69,0.0013492523382375582],[117,223,70,7.233863804579498E-4],[117,223,71,2.037882639326219E-4],[117,223,72,-1.981081520276863E-4],[117,223,73,-4.6677397506016745E-4],[117,223,74,-5.848170006846718E-4],[117,223,75,-5.349578472375855E-4],[117,223,76,-3.017459317260738E-4],[117,223,77,1.2698889629816364E-4],[117,223,78,7.589528529569648E-4],[117,223,79,0.0015964762483284597],[117,224,64,0.005919619083029053],[117,224,65,0.004456840906242572],[117,224,66,0.0032259430945740003],[117,224,67,0.0021831320051537637],[117,224,68,0.0012853826945350827],[117,224,69,5.154154092154825E-4],[117,224,70,-1.3167812775940812E-4],[117,224,71,-6.518136722527799E-4],[117,224,72,-0.0010346682113344123],[117,224,73,-0.001266176876769189],[117,224,74,-0.0013307676290686332],[117,224,75,-0.0012133287146302392],[117,224,76,-9.009042995518939E-4],[117,224,77,-3.8411408987264683E-4],[117,224,78,3.4170684392536644E-4],[117,224,79,0.0012756514137410538],[117,225,64,0.005434156741849628],[117,225,65,0.003859150692952151],[117,225,66,0.0025326593824897678],[117,225,67,0.0014148937725385505],[117,225,68,4.643281591649072E-4],[117,225,69,-3.3659389949701403E-4],[117,225,70,-9.934182556669195E-4],[117,225,71,-0.001503047157516732],[117,225,72,-0.0018565025163813692],[117,225,73,-0.002041422365325007],[117,225,74,-0.002044285098412059],[117,225,75,-0.001852356487788209],[117,225,76,-0.001455354890876084],[117,225,77,-8.46830479704168E-4],[117,225,78,-2.5254745306276794E-5],[117,225,79,0.0010051830513086875],[117,226,64,0.004909279017853916],[117,226,65,0.0032321390316039154],[117,226,66,0.0018197343738507639],[117,226,67,6.363421066672606E-4],[117,226,68,-3.580685224829651E-4],[117,226,69,-0.0011814324058825134],[117,226,70,-0.0018400558727626483],[117,226,71,-0.0023319592544575113],[117,226,72,-0.002649640076475361],[117,226,73,-0.0027825605951583756],[117,226,74,-0.002719354271931553],[117,226,75,-0.0024497461988842915],[117,226,76,-0.001966182917121134],[117,226,77,-0.0012651675009223028],[117,226,78,-3.482962128511028E-4],[117,226,79,7.770065361537059E-4],[117,227,64,0.004401345174214624],[117,227,65,0.0026300934278984753],[117,227,66,0.00113913840010696],[117,227,67,-1.0322547951177625E-4],[117,227,68,-0.0011355983923548468],[117,227,69,-0.0019763797566365033],[117,227,70,-0.0026327087263815583],[117,227,71,-0.0031037778973674293],[117,227,72,-0.0033835934746650306],[117,227,73,-0.0034634516386089775],[117,227,74,-0.003334125717561933],[117,227,75,-0.002987759208632359],[117,227,76,-0.002419460126753414],[117,227,77,-0.0016285926050990536],[117,227,78,-6.197621121776777E-4],[117,227,79,5.965089106968315E-4],[117,228,64,0.003980690480302746],[117,228,65,0.002124426135694282],[117,228,66,5.627804134112562E-4],[117,228,67,-7.318580142156415E-4],[117,228,68,-0.0017966478584202847],[117,228,69,-0.0026505288579938406],[117,228,70,-0.0033015432570124956],[117,228,71,-0.0037501116130395948],[117,228,72,-0.003991784137197162],[117,228,73,-0.004019701172051916],[117,228,74,-0.0038267574483597756],[117,228,75,-0.003407465205039529],[117,228,76,-0.0027595117060322714],[117,228,77,-0.0018850071397263615],[117,228,78,-7.914193377772948E-4],[117,228,79,5.078078034723786E-4],[117,229,64,0.003703029082343633],[117,229,65,0.0017726308879211217],[117,229,66,1.4936181075568298E-4],[117,229,67,-0.001190078059291179],[117,229,68,-0.002281295742617114],[117,229,69,-0.0031438210383587734],[117,229,70,-0.0037866650661462285],[117,229,71,-0.004211542046297861],[117,229,72,-0.004415600736410327],[117,229,73,-0.004393859589013197],[117,229,74,-0.004141340330665858],[117,229,75,-0.0036548951143562775],[117,229,76,-0.002934722853993747],[117,229,77,-0.0019855708088843973],[117,229,78,-8.176179436591498E-4],[117,229,79,5.529629587871094E-4],[117,230,64,0.003605114575198099],[117,230,65,0.0016127418032282122],[117,230,66,-6.223436217045372E-5],[117,230,67,-0.0014385098488827132],[117,230,68,-0.0025499527416602496],[117,230,69,-0.0034166891506387043],[117,230,70,-0.004048741496673488],[117,230,71,-0.0044491749730805885],[117,230,72,-0.004616793655123062],[117,230,73,-0.004548536996669611],[117,230,74,-0.004241571507326801],[117,230,75,-0.0036950728599207884],[117,230,76,-0.002911694139702094],[117,230,77,-0.0018987164097396363],[117,230,78,-6.688782279373873E-4],[117,230,79,7.591187940782025E-4],[117,231,64,0.00370702778275157],[117,231,65,0.0016656178971014698],[117,231,66,-5.0665209454218716E-5],[117,231,67,-0.0014555986093161223],[117,231,68,-0.002581066804053883],[117,231,69,-0.003447742086924518],[117,231,70,-0.00406666280880543],[117,231,71,-0.004442279795125342],[117,231,72,-0.004575098245437038],[117,231,73,-0.0044640190919330415],[117,231,74,-0.004108374741468256],[117,231,75,-0.0035096545837438793],[117,231,76,-0.002672916110768392],[117,231,77,-0.0016078779562021994],[117,231,78,-3.2969162398004945E-4],[117,231,79,0.0011406108703544066],[117,232,64,0.004014345863391799],[117,232,65,0.001937108386393695],[117,232,66,1.9003219449130753E-4],[117,232,67,-0.0012354454128496806],[117,232,68,-0.0023689401358061688],[117,232,69,-0.0032315551392959945],[117,232,70,-0.0038353012085848978],[117,232,71,-0.004186016475439109],[117,232,72,-0.004285932605614762],[117,232,73,-0.004135942132498079],[117,232,74,-0.0037375620338486026],[117,232,75,-0.003094589104279531],[117,232,76,-0.002214443135581417],[117,232,77,-0.0011091943769323792],[117,232,78,2.0372779627161015E-4],[117,232,79,0.001701147626819533],[117,233,64,0.0045201901288585925],[117,233,65,0.002420095823889128],[117,233,66,6.524797092232251E-4],[117,233,67,-7.857610802986825E-4],[117,233,68,-0.0019216615979743095],[117,233,69,-0.0027765701968997755],[117,233,70,-0.0033633719152323677],[117,233,71,-0.003689254254906205],[117,233,72,-0.0037581743159632573],[117,233,73,-0.0035730314795135477],[117,233,74,-0.0031375409508459513],[117,233,75,-0.0024578039233734634],[117,233,76,-0.0015435705764378026],[117,233,77,-4.091925722382112E-4],[117,233,78,9.257378343692004E-4],[117,233,79,0.0024360645187110576],[117,234,64,0.00520715126700744],[117,234,65,0.0030964158091205916],[117,234,66,0.0013178745783851726],[117,234,67,-1.2594022413542355E-4],[117,234,68,-0.0012591554858832185],[117,234,69,-0.002103106646977074],[117,234,70,-0.0026713969887830003],[117,234,71,-0.0029724826997748607],[117,234,72,-0.00301201648667171],[117,234,73,-0.0027949038448967585],[117,234,74,-0.0023270675561870894],[117,234,75,-0.001616916419687761],[117,234,76,-6.76514663899572E-4],[117,234,77,4.775510727838828E-4],[117,234,78,0.0018236098690911384],[117,234,79,0.003334652003591375],[117,235,64,0.006049090493419411],[117,235,65,0.003938651860479542],[117,235,66,0.002157782089456476],[117,235,67,7.14743321769394E-4],[117,235,68,-4.113478334309761E-4],[117,235,69,-0.001241484001283971],[117,235,70,-0.0017897727942231085],[117,235,71,-0.002065815785926519],[117,235,72,-0.002076903628217197],[117,235,73,-0.001829933535272961],[117,235,74,-0.0013330449993231507],[117,235,75,-5.969700258410158E-4],[117,235,76,3.639053980803689E-4],[117,235,77,0.0015307714640487057],[117,235,78,0.002879918773542202],[117,235,79,0.004382558670829678],[117,236,64,0.00701281499573318],[117,236,65,0.004911803877020206],[117,236,66,0.003135802954001478],[117,236,67,0.0016988182886152768],[117,236,68,5.835484631287462E-4],[117,236,69,-2.302574219028457E-4],[117,236,70,-7.569421336727919E-4],[117,236,71,-0.0010070898847858352],[117,236,72,-9.895480179989288E-4],[117,236,73,-7.131831518029957E-4],[117,236,74,-1.8836798470082828E-4],[117,236,75,5.718046385443295E-4],[117,236,76,0.0015505833888732853],[117,236,77,0.002726898428591445],[117,236,78,0.004074981886661323],[117,236,79,0.005564270628792257],[117,237,64,0.008059625879831],[117,237,65,0.005974828468015756],[117,237,66,0.004209113772286512],[117,237,67,0.0027821734324696653],[117,237,68,0.001680628260736226],[117,237,69,8.854325296712656E-4],[117,237,70,3.823277672105378E-4],[117,237,71,1.599433236133452E-4],[117,237,72,2.0797259554166512E-4],[117,237,73,5.15600619766909E-4],[117,237,74,0.0010701864711092739],[117,237,75,0.00185620351552591],[117,237,76,0.002854440185226837],[117,237,77,0.0040414635611200015],[117,237,78,0.005389347671915036],[117,237,79,0.006865668052297912],[117,238,64,0.009146736680443277],[117,238,65,0.007082049286157751],[117,238,66,0.005329878806935279],[117,238,67,0.003915488985843122],[117,238,68,0.002829766942321137],[117,238,69,0.0020553944506792833],[117,238,70,0.001578560079955976],[117,238,71,0.0013873278237515733],[117,238,72,0.001470034938863586],[117,238,73,0.00181392531227367],[117,238,74,0.002404021393654976],[117,238,75,0.0032222373713674925],[117,238,76,0.004246735911188074],[117,238,77,0.00545153042142073],[117,238,78,0.006806334458512325],[117,238,79,0.008276659547110645],[117,239,64,0.010227050607692545],[117,239,65,0.008183831172123911],[117,239,66,0.006446658982008497],[117,239,67,0.005046205573733543],[117,239,68,0.003977965434831385],[117,239,69,0.0032269183048690485],[117,239,70,0.002780100094020045],[117,239,71,0.0026252538963297506],[117,239,72,0.002749471480251338],[117,239,73,0.0031380532731410497],[117,239,74,0.003773589454545692],[117,239,75,0.004635264440472896],[117,239,76,0.005698386709565627],[117,239,77,0.0069341455946670336],[117,239,78,0.008309596342423389],[117,239,79,0.009787874432374928],[117,240,64,0.011250589523727837],[117,240,65,0.00923075124085321],[117,240,66,0.007510727332012707],[117,240,67,0.006126317702752025],[117,240,68,0.0050779126388646205],[117,240,69,0.004353378838297183],[117,240,70,0.003941037226835988],[117,240,71,0.00382860424092493],[117,240,72,0.004002094221242303],[117,240,73,0.004444922537659506],[117,240,74,0.005137211621477721],[117,240,75,0.006055301776114329],[117,240,76,0.007171468335007815],[117,240,77,0.008453846437699175],[117,240,78,0.009866564404394809],[117,240,79,0.011370086408641858],[117,241,64,0.01217759444788924],[117,241,65,0.010184031999637272],[117,241,66,0.008484216698690785],[117,241,67,0.007118665637982688],[117,241,68,0.006092876123475991],[117,241,69,0.00539818399511769],[117,241,70,0.005024657497219643],[117,241,71,0.004960329471805354],[117,241,72,0.005190371973136865],[117,241,73,0.0056964535643074],[117,241,74,0.00645628102544979],[117,241,75,0.007443326926968546],[117,241,76,0.008626744248361613],[117,241,77,0.0099714689557426],[117,241,78,0.011438511191467075],[117,241,79,0.012985435479908165],[117,242,64,0.012980231462397192],[117,242,65,0.011016399521284775],[117,242,66,0.009340294930878236],[117,242,67,0.007996616229743184],[117,242,68,0.006996090837138878],[117,242,69,0.0063340776598311875],[117,242,70,0.006002862750314619],[117,242,71,0.005991175848918738],[117,242,72,0.006283642280772698],[117,242,73,0.006860399621361336],[117,242,74,0.0076968804156167265],[117,242,75,0.008763761987909478],[117,242,76,0.010027084137018454],[117,242,77,0.01144853527306829],[117,242,78,0.012985907324694252],[117,242,79,0.014593719526705512],[117,243,64,0.01364144512782971],[117,243,65,0.011710998843454987],[117,243,66,0.010062153383856295],[117,243,67,0.008743140649632993],[117,243,68,0.007769945588969574],[117,243,69,0.00714245565614806],[117,243,70,0.006855637034441421],[117,243,71,0.006899321981178718],[117,243,72,0.007257936639351175],[117,243,73,0.007910376239189333],[117,243,74,0.008830028540732492],[117,243,75,0.009984946148718532],[117,243,76,0.011338168116708349],[117,243,77,0.012848191049949742],[117,243,78,0.014469589718055016],[117,243,79,0.016153787001282168],[117,244,64,0.01415380757036619],[117,244,65,0.012260301840245017],[117,244,66,0.010641984265003783],[117,244,67,0.009349876091447804],[117,244,68,0.00840514731663889],[117,244,69,0.007812652568850404],[117,244,70,0.0075704765111440815],[117,244,71,0.007669971844791898],[117,244,72,0.008095755219535405],[117,244,73,0.008825834060588369],[117,244,74,0.009831864748745174],[117,244,75,0.011079542396850472],[117,244,76,0.012529122279012216],[117,244,77,0.01413607278986165],[117,244,78,0.01585185964167371],[117,244,79,0.017624860849226993],[117,245,64,0.014518363018435123],[117,245,65,0.012665007280226346],[117,245,66,0.011079946469797973],[117,245,67,0.009816170989276268],[117,245,68,0.008899862579471954],[117,245,69,0.00834119870064393],[117,245,70,0.008141782079769252],[117,245,71,0.00829490317062916],[117,245,72,0.00878579003721348],[117,245,73,0.009591973923009995],[117,245,74,0.010683770555201403],[117,245,75,0.012024877064390465],[117,245,76,0.013573084239207627],[117,245,77,0.015281103682435694],[117,245,78,0.017097509292742154],[117,245,79,0.01896779236552217],[117,246,64,0.014743467685392156],[117,246,65,0.012932932898247674],[117,246,66,0.011383119658371653],[117,246,67,0.010148113403022099],[117,246,68,0.009258835803255623],[117,246,69,0.008731046551988845],[117,246,70,0.008570213959552892],[117,246,71,0.008771970299543908],[117,246,72,0.009322595530203665],[117,246,73,0.010199603011342224],[117,246,74,0.011372426913172503],[117,246,75,0.012803210867319798],[117,246,76,0.014447697272128026],[117,246,77,0.016256216535484123],[117,246,78,0.018174775420207394],[117,246,79,0.020146243551212167],[117,247,64,0.014843625024257527],[117,247,65,0.013077899432219514],[117,247,66,0.011564446440122533],[117,247,67,0.01035754233115764],[117,247,68,0.009492483903551296],[117,247,69,0.008990766300754922],[117,247,70,0.008862007547139155],[117,247,71,0.009104560662959558],[117,247,72,0.009706205543481172],[117,247,73,0.010644930937700227],[117,247,74,0.011889805911583421],[117,247,75,0.01340194005405924],[117,247,76,0.015135531566013261],[117,247,77,0.017039002264418644],[117,247,78,0.019056218436835092],[117,247,79,0.02067356362525545],[117,248,64,0.014838316520589161],[117,248,65,0.013118606711079582],[117,248,66,0.011641662662684455],[117,248,67,0.010461041832211854],[117,248,68,0.009615967027476583],[117,248,69,0.009133709861028665],[117,248,70,0.009028249956624395],[117,248,71,0.009301004119028488],[117,248,72,0.00994169577838402],[117,248,73,0.010929304636670181],[117,248,74,0.01223309563641724],[117,248,75,0.013813726261320592],[117,248,76,0.015624431077198516],[117,248,77,0.017612282330935966],[117,248,78,0.019719525345905833],[117,248,79,0.019982226237323996],[117,249,64,0.014750828340551837],[117,249,65,0.01307750202657368],[117,249,66,0.011636215942353534],[117,249,67,0.010478917970879617],[117,249,68,0.009648235280656996],[117,249,69,0.00917714321733773],[117,249,70,0.009084116753582857],[117,249,71,0.009373934463323906],[117,249,72,0.010038690830952908],[117,249,73,0.011058881011998615],[117,249,74,0.012404556951711687],[117,249,75,0.014036553670045695],[117,249,76,0.015907784433420127],[117,249,77,0.017964603456375634],[117,249,78,0.020148234710957294],[117,249,79,0.019535433653736264],[117,250,64,0.014607074313482677],[117,250,65,0.012979641179759761],[117,250,66,0.011572172726281322],[117,250,67,0.010434158752279857],[117,250,68,0.009611051447063219],[117,250,69,0.009141346862807707],[117,250,70,0.009048068515100332],[117,250,71,0.00933960253852304],[117,250,72,0.010010815031369823],[117,250,73,0.011044236335228814],[117,250,74,0.012411310996047345],[117,250,75,0.014073712064186604],[117,250,76,0.015984718312064636],[117,250,77,0.018090652880220687],[117,250,78,0.020332381807130897],[117,250,79,0.019347811538760355],[117,251,64,0.014434415901992214],[117,251,65,0.012851542763585274],[117,251,66,0.011475114342825426],[117,251,67,0.010351377369333854],[117,251,68,0.009527989865435052],[117,251,69,0.00904868431818285],[117,251,70,0.008941006985639216],[117,251,71,0.0092171404910522],[117,251,72,0.009875086401699262],[117,251,73,0.010899911479688577],[117,251,74,0.012265056246868893],[117,251,75,0.013933704421852381],[117,251,76,0.015860211713440275],[117,251,77,0.01799159239236455],[117,251,78,0.02026906201331036],[117,251,79,0.019426390436751047],[117,252,64,0.01426047999815398],[117,252,65,0.01272003642585599],[117,252,66,0.01137102267583446],[117,252,67,0.010255739264050821],[117,252,68,0.009423411797671073],[117,252,69,0.008922638874117417],[117,252,70,0.008785390754644625],[117,252,71,0.009027776865421203],[117,252,72,0.009651253174183671],[117,252,73,0.010643892176036552],[117,252,74,0.011981714081084853],[117,252,75,0.013630077713582938],[117,252,76,0.015545129559795149],[117,252,77,0.01767530934068625],[117,252,78,0.019962910436973076],[117,252,79,0.019769889935467345],[117,253,64,0.01411197558194499],[117,253,65,0.012611106052811327],[117,253,66,0.01128515629183416],[117,253,67,0.010171873694316009],[117,253,68,0.009321417812709612],[117,253,69,0.008786818882627742],[117,253,70,0.008604310557309326],[117,253,71,0.008794002390280138],[117,253,72,0.009361072458664334],[117,253,73,0.010297023599874153],[117,253,74,0.011581001857657439],[117,253,75,0.01318117564797694],[117,253,76,0.015056174080144435],[117,253,77,0.01715658280494398],[117,253,78,0.019426495710241277],[117,253,79,0.020368087990440188],[117,254,64,0.014013510488033735],[117,254,65,0.012548729022673448],[117,254,66,0.01124091805650592],[117,254,67,0.010122770704144746],[117,254,68,0.009244777914779281],[117,254,69,0.008663932126011239],[117,254,70,0.008420524495957095],[117,254,71,0.008538686495383412],[117,254,72,0.009027530816752043],[117,254,73,0.009882358749328728],[117,254,74,0.011085932668032462],[117,254,75,0.012609812192378517],[117,254,76,0.014415752490805307],[117,254,77,0.016457163135808556],[117,254,78,0.018680625857753323],[117,254,79,0.021027469501086467],[117,255,64,0.013986409749536138],[117,255,65,0.012553712901302104],[117,255,66,0.01125871549897173],[117,255,67,0.010128664617897127],[117,255,68,0.009213840368232947],[117,255,69,0.008574730013857846],[117,255,70,0.008255453697251629],[117,255,71,0.008284144807005817],[117,255,72,0.008674006693696074],[117,255,73,0.009424440242697483],[117,255,74,0.01052224104507195],[117,255,75,0.011942864807696517],[117,255,76,0.013651759553791037],[117,255,77,0.01560576308591792],[117,255,78,0.017754564116526518],[117,255,79,0.020042225417324797],[117,256,64,0.014047537222798213],[117,256,65,0.012642531188885291],[117,256,66,0.01135481541974587],[117,256,67,0.010205905418309867],[117,256,68,0.009245420413343681],[117,256,69,0.008536922602047636],[117,256,70,0.008128139161141969],[117,256,71,0.008051158102376608],[117,256,72,0.008323374878133158],[117,256,73,0.008948515365007887],[117,256,74,0.009917734092562754],[117,256,75,0.011210786473701453],[117,256,76,0.01279727369193754],[117,256,77,0.0146379588101972],[117,256,78,0.016686152586954568],[117,256,79,0.018889167419603836],[117,257,64,0.014208132052772837],[117,257,65,0.012826168681198971],[117,257,66,0.011540202349450425],[117,257,67,0.010365826707756256],[117,257,68,0.009351676740563513],[117,257,69,0.008564071583636547],[117,257,70,0.00805416638038585],[117,257,71,0.007857948902765472],[117,257,72,0.00799705896029845],[117,257,73,0.008479690326469728],[117,257,74,0.009301574196493929],[117,257,75,0.010447043067710446],[117,257,76,0.011890173820167884],[117,257,77,0.013596008671409875],[117,257,78,0.015521852587341305],[117,257,79,0.017618645651558667],[117,258,64,0.01447275938581425],[117,258,65,0.013109148619017671],[117,258,66,0.011819688470458325],[117,258,67,0.010613933584992062],[117,258,68,0.009539366306195961],[117,258,69,0.008664899447531016],[117,258,70,0.008045015513833046],[117,258,71,0.0077195592721926885],[117,258,72,0.007714423891883541],[117,258,73,0.008042325745803932],[117,258,74,0.008703667040634258],[117,258,75,0.00968748530795864],[117,258,76,0.010972488662199758],[117,258,77,0.012528175614500104],[117,258,78,0.01431603812598441],[117,258,79,0.01629084649043048],[117,259,64,0.014841147683892348],[117,259,65,0.013492960059901301],[117,259,66,0.012196972790678313],[117,259,67,0.010956585978651406],[117,259,68,0.009817951414041542],[117,259,69,0.008852372444974535],[117,259,70,0.008117487749722355],[117,259,71,0.007656862314355858],[117,259,72,0.0075005410612004],[117,259,73,0.007665696763505757],[117,259,74,0.008157371564442822],[117,259,75,0.008969311272135683],[117,259,76,0.010084891464059598],[117,259,77,0.011478134304960395],[117,259,78,0.013114814863864009],[117,259,79,0.014953655609062592],[117,260,64,0.015313139407368809],[117,260,65,0.013980618570198607],[117,260,66,0.012678724079156727],[117,260,67,0.01140456445085688],[117,260,68,0.010202619686076188],[117,260,69,0.009146133712541613],[117,260,70,0.008295506099171412],[117,260,71,0.007697687667102562],[117,260,72,0.007386603538026948],[117,260,73,0.007383675246693352],[117,260,74,0.007698441383227609],[117,260,75,0.008329276074389519],[117,260,76,0.009264204463824366],[117,260,77,0.01048181421099305],[117,260,78,0.011952261898200617],[117,260,79,0.013638373116342112],[117,261,64,0.015888897191547104],[117,261,65,0.014575021005277166],[117,261,66,0.013270984735364616],[117,261,67,0.011967492000720992],[117,261,68,0.010706892613597788],[117,261,69,0.00956371555627763],[117,261,70,0.008600537404816576],[117,261,71,0.007867192411271822],[117,261,72,0.007401067977079957],[117,261,73,0.007227502863899124],[117,261,74,0.007360287750946525],[117,261,75,0.007802267582985429],[117,261,76,0.008546044995124671],[117,261,77,0.009574783950727972],[117,261,78,0.01086311258843849],[117,261,79,0.012378124144977555],[117,262,64,0.01656849737518582],[117,262,65,0.015278488918765805],[117,262,66,0.013978658085821386],[117,262,67,0.012653251307918664],[117,262,68,0.011341961203177698],[117,262,69,0.010119790710228569],[117,262,70,0.009050763549095777],[117,262,71,0.008186962068786626],[117,262,72,0.007568699299595432],[117,262,73,0.007224796115105476],[117,262,74,0.007172963251358065],[117,262,75,0.007420287759587725],[117,262,76,0.007963823304116952],[117,262,77,0.008791283559711547],[117,262,78,0.009881837814373975],[117,262,79,0.011207007745576153],[117,263,64,0.01735188009692731],[117,263,65,0.016092750686666626],[117,263,66,0.01480551740104198],[117,263,67,0.013468004969869884],[117,263,68,0.01211669488209399],[117,263,69,0.010826144243236788],[117,263,70,0.009660988913845892],[117,263,71,0.008674825549638228],[117,263,72,0.007910265497884593],[117,263,73,0.007399094738855019],[117,263,74,0.00716253975260407],[117,263,75,0.0072116390165300435],[117,263,76,0.007547719669903003],[117,263,77,0.008162978719166237],[117,263,78,0.00904116800371793],[117,263,79,0.010158381997441743],[117,264,64,0.018239136181470817],[117,264,65,0.017019259777085047],[117,264,66,0.015754547612270402],[117,264,67,0.01441654265951885],[117,264,68,0.013037969366841155],[117,264,69,0.011691954190404977],[117,264,70,0.01044284402785296],[117,264,71,0.009344951518087579],[117,264,72,0.008442496998623797],[117,264,73,0.007769655930355781],[117,264,74,0.007350711796709949],[117,264,75,0.007200314308121516],[117,264,76,0.007323842571648267],[117,264,77,0.007717872720542502],[117,264,78,0.008370749341154376],[117,264,79,0.009263259885973723],[117,265,64,0.01923113328621674],[117,265,65,0.018059851513826487],[117,265,66,0.016828621936052342],[117,265,67,0.015502957272389246],[117,265,68,0.0141113154372049],[117,265,69,0.012724382744950267],[117,265,70,0.011405287155550451],[117,265,71,0.010208227876552456],[117,265,72,0.009178312258790953],[117,265,73,0.00835149605135926],[117,265,74,0.007754627143266733],[117,265,75,0.007405592744588399],[117,265,76,0.007313569789519982],[117,265,77,0.007479378178720863],[117,265,78,0.00789593632002277],[117,265,79,0.008548818276294216],[117,266,64,0.020330483261685076],[117,266,65,0.019217740174563215],[117,266,66,0.01803151512117049],[117,266,67,0.01673165165448195],[117,266,68,0.015341890099033308],[117,266,69,0.013929479405486812],[117,266,70,0.012555405158531542],[117,266,71,0.01127292566330803],[117,266,72,0.010127310884600577],[117,266,73,0.009155681146976315],[117,266,74,0.00838694583767095],[117,266,75,0.007841842183515626],[117,266,76,0.007533074006115856],[117,266,77,0.007465550196955126],[117,266,78,0.007636722497396237],[117,266,79,0.008037022018921779],[117,267,64,0.021078483599370663],[117,267,65,0.020498857789557207],[117,267,66,0.01936925457171928],[117,267,67,0.018108677057984118],[117,267,68,0.016735771191548232],[117,267,69,0.015313397064540962],[117,267,70,0.013899514570677922],[117,267,71,0.012545648287519482],[117,267,72,0.01129653520889222],[117,267,73,0.010189867246464222],[117,267,74,0.009256128851615726],[117,267,75,0.008518529944778221],[117,267,76,0.00799303417807552],[117,267,77,0.00768848239944334],[117,267,78,0.007606811033635021],[117,267,79,0.007743364948790701],[117,268,64,0.019779327438287746],[117,268,65,0.02076719742313544],[117,268,66,0.020851810171222437],[117,268,67,0.01964340405874783],[117,268,68,0.018301576098872868],[117,268,69,0.016883921645348274],[117,268,70,0.015444563466519855],[117,268,71,0.014032566681238302],[117,268,72,0.012691500935166682],[117,268,73,0.011459091113325631],[117,268,74,0.010366957045995181],[117,268,75,0.009440442509874648],[117,268,76,0.008698533672989936],[117,268,77,0.008153866981199506],[117,268,78,0.007812826337389216],[117,268,79,0.0076757292826196526],[117,269,64,0.018337528111784008],[117,269,65,0.019235896347325216],[117,269,66,0.020238977989466136],[117,269,67,0.021350526287308724],[117,269,68,0.020052404859616558],[117,269,69,0.018652315544895163],[117,269,70,0.01719983437009367],[117,269,71,0.015740940631967945],[117,269,72,0.014317497155953205],[117,269,73,0.012966811823893388],[117,269,74,0.011721280933066772],[117,269,75,0.010608114804334113],[117,269,76,0.009649145913568283],[117,269,77,0.008860719678678254],[117,269,78,0.008253667895499322],[117,269,79,0.00783336468054025],[117,270,64,0.016727004433042824],[117,270,65,0.017526633851430554],[117,270,66,0.018441487761379296],[117,270,67,0.019529142859228698],[117,270,68,0.020787656238117104],[117,270,69,0.02063547482112108],[117,270,70,0.019178948147390955],[117,270,71,0.0176809262705394],[117,270,72,0.01618115577869346],[117,270,73,0.014716203292162635],[117,270,74,0.013319001464804714],[117,270,75,0.012018469421624687],[117,270,76,0.010839208038414625],[117,270,77,0.009801270337475753],[117,270,78,0.008920007143368708],[117,270,79,0.008205988015059064],[117,271,64,0.014937358839389814],[117,271,65,0.015629811887078737],[117,271,66,0.016448669349655748],[117,271,67,0.017454333985441103],[117,271,68,0.018650594981838697],[117,271,69,0.019999795745645636],[117,271,70,0.021380068295409744],[117,271,71,0.019847688928804553],[117,271,72,0.01827472846805971],[117,271,73,0.016696811389315645],[117,271,74,0.01514727849474471],[117,271,75,0.013656698548917967],[117,271,76,0.012252446613280989],[117,271,77,0.010958349503472893],[117,271,78,0.00979439867377845],[117,271,79,0.008776530713766786],[117,272,64,0.013054581348031594],[117,272,65,0.013632428571536034],[117,272,66,0.014348033170720361],[117,272,67,0.015263890134356306],[117,272,68,0.016389395914445562],[117,272,69,0.017694434012886576],[117,272,70,0.01914602150485388],[117,272,71,0.020709939880525573],[117,272,72,0.020524982218310613],[117,272,73,0.01884147329720577],[117,272,74,0.017146077816863958],[117,272,75,0.015470875696468288],[117,272,76,0.01384591407409598],[117,272,77,0.012298727164769978],[117,272,78,0.01085391547981623],[117,272,79,0.009532784766342877],[117,273,64,0.011178894994378661],[117,273,65,0.011636043378959097],[117,273,66,0.012241795835588206],[117,273,67,0.013059909953256201],[117,273,68,0.014105116233456068],[117,273,69,0.01535501736518676],[117,273,70,0.016782723709502057],[117,273,71,0.018358463263263347],[117,273,72,0.020050428102292538],[117,273,73,0.02107224856257061],[117,273,74,0.01924575811413127],[117,273,75,0.017400728174748074],[117,273,76,0.015569638727022678],[117,273,77,0.013783501727861342],[117,273,78,0.012071310705476401],[117,273,79,0.010459542129125485],[117,274,64,0.009397914375399535],[117,274,65,0.009729904833216623],[117,274,66,0.010220280414715286],[117,274,67,0.010933174672719053],[117,274,68,0.01188824734428224],[117,274,69,0.013070830917228797],[117,274,70,0.014460217710950652],[117,274,71,0.016031233865292892],[117,274,72,0.017755156911559496],[117,274,73,0.0196005949119946],[117,274,74,0.02137948907682105],[117,274,75,0.01938711978835437],[117,274,76,0.017373064126200936],[117,274,77,0.015371446013523991],[117,274,78,0.01341527906827566],[117,274,79,0.011535838874189453],[117,275,64,0.007787283338778247],[117,275,65,0.007991520677948259],[117,275,66,0.008362409062099764],[117,275,67,0.008963551986388398],[117,275,68,0.009819020500938294],[117,275,69,0.010921720765955798],[117,275,70,0.012257091611830119],[117,275,71,0.013804627173866187],[117,275,72,0.015538855380307992],[117,275,73,0.017430286339197135],[117,275,74,0.019446329400492398],[117,275,75,0.02137243290008306],[117,275,76,0.01920550051533471],[117,275,77,0.017019516135020223],[117,275,78,0.014851010514517904],[117,275,79,0.01273554058748902],[117,276,64,0.006411162367783912],[117,276,65,0.0064870756569214635],[117,276,66,0.00673604220096506],[117,276,67,0.007220245697569699],[117,276,68,0.007967557328117266],[117,276,69,0.008978139408329667],[117,276,70,0.010243417175783484],[117,276,71,0.011747535119801304],[117,276,72,0.013468384048472247],[117,276,73,0.015378605878353163],[117,276,74,0.01744657484160325],[117,276,75,0.019637353858829455],[117,276,76,0.02101673792852545],[117,276,77,0.018683522428355383],[117,276,78,0.016340906181779483],[117,276,79,0.014028090189264961],[117,277,64,0.005322564044955371],[117,277,65,0.005271695370880582],[117,277,66,0.005398162836113044],[117,277,67,0.005761889812320845],[117,277,68,0.006393864032609417],[117,277,69,0.007301034043370662],[117,277,70,0.008480529605956343],[117,277,71,0.009921037830411409],[117,277,72,0.011603864876441272],[117,277,73,0.013503982543380514],[117,277,74,0.015591058379935466],[117,277,75,0.017830467986210328],[117,277,76,0.020184288228050854],[117,277,77,0.020318962298767576],[117,277,78,0.017845456405236645],[117,277,79,0.01537941779537023],[117,278,64,0.004563535213657772],[117,278,65,0.004389554908722494],[117,278,66,0.004394904783208698],[117,278,67,0.004636485976018134],[117,278,68,0.00514766832053489],[117,278,69,0.005941576904340395],[117,278,70,0.0070206486716076315],[117,278,71,0.00837791607050036],[117,278,72,0.00999808834152008],[117,278,73,0.011858624072850533],[117,278,74,0.013930793609383497],[117,278,75,0.016180729933100078],[117,278,76,0.018570466669709906],[117,278,77,0.02105896191994254],[117,278,78,0.019324280402779514],[117,278,79,0.016753012145708766],[117,279,64,0.004165184675624665],[117,279,65,0.0038738311652626034],[117,279,66,0.003761423813038166],[117,279,67,0.0038811833501942177],[117,279,68,0.004268098227802493],[117,279,69,0.004940736948236147],[117,279,70,0.005906340636322446],[117,279,71,0.0071620039553714505],[117,279,72,0.008695760325574007],[117,279,73,0.01048766389096024],[117,279,74,0.012510866798952011],[117,279,75,0.014732690378011634],[117,279,76,0.017115688826902467],[117,279,77,0.01961870406371636],[117,279,78,0.020737327187858038],[117,279,79,0.018111153048904233],[117,280,64,0.004147555464963716],[117,280,65,0.0037464979552774198],[117,280,66,0.0035216108993709615],[117,280,67,0.0035219002089526435],[117,280,68,0.0037832022447650657],[117,280,69,0.004328692393666711],[117,280,70,0.005169820595000695],[117,280,71,0.0063073816628839265],[117,280,72,0.007732588642445066],[117,280,73,0.009428147416857264],[117,280,74,0.011369331128864256],[117,280,75,0.013525052993826517],[117,280,76,0.015858936101338622],[117,280,77,0.018330378829317366],[117,280,78,0.020895614528387597],[117,280,79,0.019416304230593692],[117,281,64,0.004519340924723853],[117,281,65,0.004017963213866466],[117,281,66,0.003687646932387241],[117,281,67,0.0035727866993845647],[117,281,68,0.003709310272129508],[117,281,69,0.00412408374457092],[117,281,70,0.004832094962990093],[117,281,71,0.005837407997246657],[117,281,72,0.007134209168658209],[117,281,73,0.008707857796444743],[117,281,74,0.010535940248621162],[117,281,75,0.012589325889897229],[117,281,76,0.014833223532520355],[117,281,77,0.017228237016224345],[117,281,78,0.019731418570826224],[117,281,79,0.020632665926540183],[117,282,64,0.005277443980884254],[117,282,65,0.004686547736353659],[117,282,66,0.004259398415586248],[117,282,67,0.00403552835802853],[117,282,68,0.004050235083663958],[117,282,69,0.004333107065978398],[117,282,70,0.004901943979271513],[117,282,71,0.005763592765291632],[117,282,72,0.006914951638366185],[117,282,73,0.008343981217616234],[117,282,74,0.010030721416352152],[117,282,75,0.011948312720334048],[117,282,76,0.014064020494715977],[117,282,77,0.016340260974345707],[117,282,78,0.01873562761398469],[117,282,79,0.02120591650413829],[117,283,64,0.006406379160296527],[117,283,65,0.005737805056705573],[117,283,66,0.00522365380242714],[117,283,67,0.004898490105267135],[117,283,68,0.004796314091861674],[117,283,69,0.004948447388818706],[117,283,70,0.005374744186201411],[117,283,71,0.00608430901611677],[117,283,72,0.007076445243101312],[117,283,73,0.008341612039029295],[117,283,74,0.0098623885376996],[117,283,75,0.011614443862331594],[117,283,76,0.013567511723531524],[117,283,77,0.015686368296046832],[117,283,78,0.017931812100136356],[117,283,79,0.02026164463784678],[117,284,64,0.007877517033322639],[117,284,65,0.0071436821914072236],[117,284,66,0.00655320024928673],[117,284,67,0.006135700551257137],[117,284,68,0.005923291315069763],[117,284,69,0.00594805221324827],[117,284,70,0.006231130930540335],[117,284,71,0.0067833452667943476],[117,284,72,0.007606064238265264],[117,284,73,0.008692098013569913],[117,284,74,0.010026595463460262],[117,284,75,0.011587948099686536],[117,284,76,0.013348699180158486],[117,284,77,0.01527645676553922],[117,284,78,0.017334809526639582],[117,284,79,0.019484244122712845],[117,285,64,0.009648170878237277],[117,285,65,0.008861521085474233],[117,285,66,0.008205740663218108],[117,285,67,0.007705676540103646],[117,285,68,0.007391039528224631],[117,285,69,0.007293745153625173],[117,285,70,0.007435500993882856],[117,285,71,0.007828297889823359],[117,285,72,0.008475213800902721],[117,285,73,0.009371225920086585],[117,285,74,0.010504029927758745],[117,285,75,0.011854865259764508],[117,285,76,0.013399345265567153],[117,285,77,0.01510829113879325],[117,285,78,0.016948568514463636],[117,285,79,0.01888392564511652],[117,286,64,0.011660525462309643],[117,286,65,0.010832900688192525],[117,286,66,0.010122651005851985],[117,286,67,0.009550087932899359],[117,286,68,0.00914212264362867],[117,286,69,0.00892967982248383],[117,286,70,0.008934355504500127],[117,286,71,0.009168803871504237],[117,286,72,0.00963745640650093],[117,286,73,0.01033724793010938],[117,286,74,0.011258348511976869],[117,286,75,0.012384900246419982],[117,286,76,0.013695757882537254],[117,286,77,0.015165232304790955],[117,286,78,0.01676383587083199],[117,286,79,0.0184590286292752],[117,287,64,0.013840407913186959],[117,287,65,0.012982319657593906],[117,287,66,0.01222757787792534],[117,287,67,0.011592262684276917],[117,287,68,0.011100198412466757],[117,287,69,0.010780634084945204],[117,287,70,0.01065448330630521],[117,287,71,0.010734614163712613],[117,287,72,0.011026478995612685],[117,287,73,0.011528749029386182],[117,287,74,0.012233953003277944],[117,287,75,0.013129118886031542],[117,287,76,0.014196417809754948],[117,287,77,0.015413809337654523],[117,287,78,0.016755687198626933],[117,287,79,0.018193524635383505],[117,288,64,0.016095900712978787],[117,288,65,0.015215719743800895],[117,288,66,0.014424876451549266],[117,288,67,0.013735532300459997],[117,288,68,0.013168261561180904],[117,288,69,0.012750144828118832],[117,288,70,0.012500984963314504],[117,288,71,0.012433507843800077],[117,288,72,0.012553901183157683],[117,288,73,0.012862355786306217],[117,288,74,0.013353608479484703],[117,288,75,0.014017485958026656],[117,288,76,0.014839448798401522],[117,288,77,0.015801134888124662],[117,288,78,0.016880901537675876],[117,288,79,0.018054365552565132],[117,289,64,0.01831579765931116],[117,289,65,0.017418851125073735],[117,289,66,0.01659789045619497],[117,289,67,0.015861419820296194],[117,289,68,0.01522672993480474],[117,289,69,0.014718486227821537],[117,289,70,0.014355140756723428],[117,289,71,0.01414905076515556],[117,289,72,0.01410692845650832],[117,289,73,0.014230290604382974],[117,289,74,0.014515907367453701],[117,289,75,0.014956249679604931],[117,289,76,0.015539934592225298],[117,289,77,0.016252167954014417],[117,289,78,0.017075183824716483],[117,289,79,0.017988680032841563],[117,290,64,0.020373756483065324],[117,290,65,0.019463159623781045],[117,290,66,0.018616583933076844],[117,290,67,0.017839005941275625],[117,290,68,0.017144491897051323],[117,290,69,0.016555282961907655],[117,290,70,0.016088414495056515],[117,290,71,0.01575575986088681],[117,290,72,0.015564398395273814],[117,290,73,0.015516980523008558],[117,290,74,0.015612089510455507],[117,290,75,0.015844599344150386],[117,290,76,0.016206028234501617],[117,290,77,0.016684887253949628],[117,290,78,0.01726702363092513],[117,290,79,0.017935958234691168],[117,291,64,0.020837524493580676],[117,291,65,0.021240016737702698],[117,291,66,0.020375939090222617],[117,291,67,0.019567445118896683],[117,291,68,0.018825414355389956],[117,291,69,0.01816971749987549],[117,291,70,0.017615912640709122],[117,291,71,0.017175229031631503],[117,291,72,0.01685487047722438],[117,291,73,0.01665831246184784],[117,291,74,0.016585592602371323],[117,291,75,0.016633594016282657],[117,291,76,0.016796321209258423],[117,291,77,0.017065168099840995],[117,291,78,0.017429177813488714],[117,291,79,0.017875293893855514],[117,292,64,0.019409361029075964],[117,292,65,0.020338280126383477],[117,292,66,0.021217605438710322],[117,292,67,0.0209731945198374],[117,292,68,0.02020087106760873],[117,292,69,0.019498576348316986],[117,292,70,0.018880312990945967],[117,292,71,0.018356445784099878],[117,292,72,0.017933967036624667],[117,292,73,0.017616750912804614],[117,292,74,0.0174057963872836],[117,292,75,0.017299458483599612],[117,292,76,0.017293667479645922],[117,292,77,0.01738213578325268],[117,292,78,0.01755655220134055],[117,292,79,0.01780676334657558],[117,293,64,0.01840026931048401],[117,293,65,0.019315330973062195],[117,293,66,0.02018477648910758],[117,293,67,0.021014902138261928],[117,293,68,0.02122286456198141],[117,293,69,0.02049821484474967],[117,293,70,0.019842759081249557],[117,293,71,0.019265737796742434],[117,293,72,0.018773527355924375],[117,293,73,0.018369883709666312],[117,293,74,0.018056168169223247],[117,293,75,0.01783155490761987],[117,293,76,0.017693219918146846],[117,293,77,0.017636511190052332],[117,293,78,0.017655099891420518],[117,293,79,0.017741112378648123],[117,294,64,0.01784884523208143],[117,294,65,0.018735947872314227],[117,294,66,0.019577997217753947],[117,294,67,0.02038544227562225],[117,294,68,0.021156726861287698],[117,294,69,0.021143248051229226],[117,294,70,0.020481513683114547],[117,294,71,0.019885365857304573],[117,294,72,0.019360115384309647],[117,294,73,0.01890881906264363],[117,294,74,0.018532523585828322],[117,294,75,0.018230482335962982],[117,294,76,0.01800034480230383],[117,294,77,0.017838318408409715],[117,294,78,0.01773930257572167],[117,294,79,0.017696994894599617],[117,295,64,0.017772147110285862],[117,295,65,0.0186157839069924],[117,295,66,0.01941139351419401],[117,295,67,0.020173740225687575],[117,295,68,0.020904151131901805],[117,295,69,0.021425402187432642],[117,295,70,0.020790775070592283],[117,295,71,0.020212282751637042],[117,295,72,0.01969369765809295],[117,295,73,0.0192367581751848],[117,295,74,0.018841469488649027],[117,295,75,0.018506365961133045],[117,295,76,0.018228734746969056],[117,295,77,0.018004800415358756],[117,295,78,0.017829870415965725],[117,295,79,0.017698441283094273],[117,296,64,0.018166736562632905],[117,296,65,0.01895061715266632],[117,296,66,0.01967998410062441],[117,296,67,0.020374006756595883],[117,296,68,0.0210366842927056],[117,296,69,0.02135252773240264],[117,296,70,0.020779657128688702],[117,296,71,0.020257059124506663],[117,296,72,0.019786492395247043],[117,296,73,0.01936774437090032],[117,296,74,0.01899902981732263],[117,296,75,0.01867733697610655],[117,296,76,0.018398720889426044],[117,296,77,0.018158543627039152],[117,296,78,0.017951661221743874],[117,296,79,0.017772557206338236],[117,297,64,0.019009562277168178],[117,297,65,0.01971721147050951],[117,297,66,0.02036051530172389],[117,297,67,0.020963047062498692],[117,297,68,0.0214703359488432],[117,297,69,0.02094777518678744],[117,297,70,0.020471334237151802],[117,297,71,0.02004297718946285],[117,297,72,0.019661990586615184],[117,297,73,0.019325589500634614],[117,297,74,0.019029455187170023],[117,297,75,0.018768203697684314],[117,297,76,0.01853578495142532],[117,297,77,0.01832581189110604],[117,297,78,0.018131819466032942],[117,297,79,0.01794745330333928],[117,298,64,0.020258685506096743],[117,298,65,0.02087401707673502],[117,298,66,0.0214121347621139],[117,298,67,0.021088515914631907],[117,298,68,0.020645509695479625],[117,298,69,0.020248934368823794],[117,298,70,0.019902351742322976],[117,298,71,0.01960529303981047],[117,298,72,0.01935414977528329],[117,298,73,0.019142978260778726],[117,298,74,0.01896421676117754],[117,298,75,0.01880931446874642],[117,298,76,0.01866927162974519],[117,298,77,0.0185350903136242],[117,298,78,0.01839813547123207],[117,298,79,0.01825040608097187],[117,299,64,0.021097498590648512],[117,299,65,0.020602260051116136],[117,299,66,0.02019713276513651],[117,299,67,0.019850151082372706],[117,299,68,0.019551246921452277],[117,299,69,0.019307938018001437],[117,299,70,0.019122102728041896],[117,299,71,0.018990668206853984],[117,299,72,0.0189067611036764],[117,299,73,0.01886075093418061],[117,299,74,0.018841184848122257],[117,299,75,0.018835612710394318],[117,299,76,0.01883130161452111],[117,299,77,0.01881583914717289],[117,299,78,0.01877762491932021],[117,299,79,0.018706250072864253],[117,300,64,0.019225634921271495],[117,300,65,0.01885172143818994],[117,300,66,0.018585372143937483],[117,300,67,0.01839080277038554],[117,300,68,0.018256740743424923],[117,300,69,0.018190530400973397],[117,300,70,0.018192471714714664],[117,300,71,0.018256771025403094],[117,300,72,0.018372990115695185],[117,300,73,0.018527364964991026],[117,300,74,0.018703992559242967],[117,300,75,0.01888588437489282],[117,300,76,0.019055885402645356],[117,300,77,0.019197457822178146],[117,300,78,0.01929532868164248],[117,300,79,0.019336001174332953],[117,301,64,0.017181235394396505],[117,301,65,0.016940431657155926],[117,301,66,0.016825912101345344],[117,301,67,0.016798432434529373],[117,301,68,0.016845983932190955],[117,301,69,0.016976101555580513],[117,301,70,0.017187645854288933],[117,301,71,0.01747204830074015],[117,301,72,0.017815091729272436],[117,301,73,0.018198535699075143],[117,301,74,0.01860158476690346],[117,301,75,0.01900219795083861],[117,301,76,0.019378237962475016],[117,301,77,0.019708459080061674],[117,301,78,0.019973332827540092],[117,301,79,0.020155710912222912],[117,302,64,0.015077801580195827],[117,302,65,0.014979494342829745],[117,302,66,0.01502658188966779],[117,302,67,0.015176766466102833],[117,302,68,0.015417775891026017],[117,302,69,0.015757687771702403],[117,302,70,0.016194094148857027],[117,302,71,0.016715667726640127],[117,302,72,0.01730429974386586],[117,302,73,0.01793705656294718],[117,302,74,0.01858795254082055],[117,302,75,0.019229537093721532],[117,302,76,0.01983429421649366],[117,302,77,0.020375853065192386],[117,302,78,0.020830008557029035],[117,302,79,0.021175551281996472],[117,303,64,0.013017580224087746],[117,303,65,0.013068928781738173],[117,303,66,0.013284339915440821],[117,303,67,0.013618904415762599],[117,303,68,0.014060546885530715],[117,303,69,0.014618212148607005],[117,303,70,0.015288413986176244],[117,303,71,0.016057142661220894],[117,303,72,0.016902379192907754],[117,303,73,0.017796401000969405],[117,303,74,0.0187078760364578],[117,303,75,0.019603742917450376],[117,303,76,0.02045087499226131],[117,303,77,0.021217526656183226],[117,303,78,0.02100226198200774],[117,303,79,0.020460399208791717],[117,304,64,0.011006452628009934],[117,304,65,0.011214233148438824],[117,304,66,0.011604091578705587],[117,304,67,0.012129022100563998],[117,304,68,0.012777598976223386],[117,304,69,0.013559912223485326],[117,304,70,0.014471566426409418],[117,304,71,0.015495947241085545],[117,304,72,0.016607127075839435],[117,304,73,0.01777253386393238],[117,304,74,0.018955379575300052],[117,304,75,0.020116845572682965],[117,304,76,0.021218022378609317],[117,304,77,0.020666163549085764],[117,304,78,0.019776894827596755],[117,304,79,0.019047372672711747],[117,305,64,0.00904214215669136],[117,305,65,0.009412629387597947],[117,305,66,0.00998242209946052],[117,305,67,0.010702994091966078],[117,305,68,0.01156400366811577],[117,305,69,0.012576909900800435],[117,305,70,0.013736549527477288],[117,305,71,0.015023777124269945],[117,305,72,0.016408773039593785],[117,305,73,0.01785408545256902],[117,305,74,0.01931740271562243],[117,305,75,0.020754052657559755],[117,305,76,0.0207768682525292],[117,305,77,0.01951112198430366],[117,305,78,0.018397191154589192],[117,305,79,0.017469794135015943],[117,306,64,0.00713907651981099],[117,306,65,0.007677417562942909],[117,306,66,0.008431284232595612],[117,306,67,0.009351239933312319],[117,306,68,0.01042842641152301],[117,306,69,0.011675837355963795],[117,306,70,0.013087658192097864],[117,306,71,0.014642290418419145],[117,306,72,0.016306067452013778],[117,306,73,0.018036675232031063],[117,306,74,0.019786273241957017],[117,306,75,0.021397422486120768],[117,306,76,0.01974921678985681],[117,306,77,0.018229824500884367],[117,306,78,0.016884139142476676],[117,306,79,0.015751583652229364],[117,307,64,0.005323753747334347],[117,307,65,0.006033470750081534],[117,307,66,0.0069736533246522485],[117,307,67,0.008094571805496387],[117,307,68,0.009389200762714836],[117,307,69,0.010872172338974103],[117,307,70,0.012537114134508823],[117,307,71,0.01436006308971302],[117,307,72,0.016303588972095596],[117,307,73,0.018320593183100586],[117,307,74,0.020357778042767047],[117,307,75,0.02053601603471965],[117,307,76,0.01861571979162281],[117,307,77,0.016840429870900637],[117,307,78,0.015260317958055275],[117,307,79,0.013919479022322481],[117,308,64,0.0036305837061875704],[117,308,65,0.004513202483611256],[117,308,66,0.005639648332038067],[117,308,67,0.006960498468758424],[117,308,68,0.008470846468843697],[117,308,69,0.01018700266041758],[117,308,70,0.012102108206003681],[117,308,71,0.014189938163537495],[117,308,72,0.016409425962145827],[117,308,73,0.018708834039142665],[117,308,74,0.02102956529651239],[117,308,75,0.019578562050634695],[117,308,76,0.017389849442487323],[117,308,77,0.015361894569291032],[117,308,78,0.013549996013787147],[117,308,79,0.012002783484096002],[117,309,64,0.002098205260296353],[117,309,65,0.0031530067927816098],[117,309,66,0.004463118772288731],[117,309,67,0.005979985392982432],[117,309,68,0.007701031333105093],[117,309,69,0.009644219662651634],[117,309,70,0.011802254833116302],[117,309,71,0.014146768426962171],[117,309,72,0.016633231414479897],[117,309,73,0.019205484051397],[117,309,74,0.021091037316939266],[117,309,75,0.01853290930767979],[117,309,76,0.016085533078344157],[117,309,77,0.013814171145328812],[117,309,78,0.01177898318588402],[117,309,79,0.010032886428363827],[117,310,64,7.662787837597601E-4],[117,310,65,0.0019901704896153655],[117,310,66,0.003478697233892385],[117,310,67,0.005184670669321356],[117,310,68,0.007107976425272188],[117,310,69,0.009268140219025164],[117,310,70,0.011657458095048031],[117,310,71,0.014245552150114395],[117,310,72,0.016984650907703264],[117,310,73,0.019814459803641334],[117,310,74,0.020218055313245085],[117,310,75,0.017407433489549963],[117,310,76,0.014717419669752888],[117,310,77,0.012218140665329696],[117,310,78,0.009974237315531995],[117,310,79,0.008042557390909848],[117,311,64,-3.2724660427889526E-4],[117,311,65,0.0010602570542602113],[117,311,66,0.002719316775097442],[117,311,67,0.004604536026839108],[117,311,68,0.006718303961507217],[117,311,69,0.009081556592547814],[117,311,70,0.011686188787000163],[117,311,71,0.014499961196517535],[117,311,72,0.01747212299450744],[117,311,73,0.020538598518616488],[117,311,74,0.019252204786551444],[117,311,75,0.016211332025393068],[117,311,76,0.013300859664093476],[117,311,77,0.01059527954185713],[117,311,78,0.008163225231346228],[117,311,79,0.006065013483749084],[117,312,64,-0.0011483920013475365],[117,312,65,3.9496119768342317E-4],[117,312,66,0.002214192301171334],[117,312,67,0.004266032062182659],[117,312,68,0.006555326988623836],[117,312,69,0.009104213325323619],[117,312,70,0.011904171686141702],[117,312,71,0.014921260793953032],[117,312,72,0.0181020513567273],[117,312,73,0.021379099265213072],[117,312,74,0.018197839236402252],[117,312,75,0.014954611133221109],[117,312,76,0.011851598509918395],[117,312,77,0.00896706097123046],[117,312,78,0.006373038409196591],[117,312,79,0.0041327602727758385],[117,313,64,-0.001668935026965729],[117,313,65,2.043297531948085E-5],[117,313,66,0.001987264826357158],[117,313,67,0.004190656631558384],[117,313,68,0.006637779875108598],[117,313,69,0.009351710224525304],[117,313,70,0.012323482160083643],[117,313,71,0.015517620190347092],[117,313,72,0.018878348046938526],[117,313,73,0.020538647753201054],[117,313,74,0.017060487621086078],[117,313,75,0.013647765414856908],[117,313,76,0.010385184081349221],[117,313,77,0.00735409106716602],[117,313,78,0.004629263224847947],[117,313,79,0.002276205924380977],[117,314,64,-0.0018677247851174735],[117,314,65,-4.392981904234631E-5],[117,314,66,0.002056107405202375],[117,314,67,0.0043939852562748976],[117,314,68,0.006978988537850034],[117,314,69,0.00983483046319789],[117,314,70,0.012952051237280878],[117,314,71,0.016293813426747294],[117,314,72,0.01980234717214081],[117,314,73,0.019464778380797496],[117,314,74,0.01584647384245298],[117,314,75,0.012301150223337203],[117,314,76,0.00891608806995485],[117,314,77,0.00577497960157067],[117,314,78,0.0029546055532081845],[117,314,79,5.220482189610587E-4],[117,315,64,-0.0017315268973213671],[117,315,65,2.1377767236101496E-4],[117,315,66,0.0024312914622505333],[117,315,67,0.004885152359936381],[117,315,68,0.007586479323631182],[117,315,69,0.010559292828541554],[117,315,70,0.013793578298371315],[117,315,71,0.01725130952510164],[117,315,72,0.020873088467362945],[117,315,73,0.01828193030777491],[117,315,74,0.014562207840671191],[117,315,75,0.010924046851344299],[117,315,76,0.007456541213697554],[117,315,77,0.004244945041336937],[117,315,78,0.001367269222969743],[117,315,79,-0.001108566236871576],[117,316,64,-0.0012554000482093227],[117,316,65,7.976922735650158E-4],[117,316,66,0.0031162122639005418],[117,316,67,0.005666782191492405],[117,316,68,0.008462025522318787],[117,316,69,0.011525927230665376],[117,316,70,0.014847850651038592],[117,316,71,0.01838875151604625],[117,316,72,0.02077616180830032],[117,316,73,0.016994134488836566],[117,316,74,0.013213148321396247],[117,316,75,0.009523420364253713],[117,316,76,0.0060150819843383],[117,316,77,0.002774153299700652],[117,316,78,-1.209124555569305E-4],[117,316,79,-0.00260211157763602],[117,317,64,-4.42605437441319E-4],[117,317,65,0.0017043719685405643],[117,317,66,0.004107372366453471],[117,317,67,0.006735368398523399],[117,317,68,0.009602130618908515],[117,317,69,0.012731272735513567],[117,317,70,0.016111469422738542],[117,317,71,0.019702823925233735],[117,317,72,0.01941813889716422],[117,317,73,0.015604609457046356],[117,317,74,0.011802436878514212],[117,317,75,0.008102369620577999],[117,317,76,0.004594818053144345],[117,317,77,0.0013657892994751813],[117,317,78,-0.0015065932112752994],[117,317,79,-0.0039549823607189375],[117,318,64,6.959495983433606E-4],[117,318,65,0.0029234482523339115],[117,318,66,0.005395122045264415],[117,318,67,0.008082101404485833],[117,318,68,0.010998947599098169],[117,318,69,0.014168597611485539],[117,318,70,0.017578981450094337],[117,318,71,0.02118950860021059],[117,318,72,0.01792271042489958],[117,318,73,0.014114222639427618],[117,318,74,0.010329202954291834],[117,318,75,0.006658268682477483],[117,318,76,0.0031913994965517647],[117,318,77,1.3860070156708335E-5],[117,318,78,-0.0027972798949316264],[117,318,79,-0.005176025103210077],[117,319,64,0.0021427327478569284],[117,319,65,0.004438740744665917],[117,319,66,0.006964855967112007],[117,319,67,0.009694143017602064],[117,319,68,0.012641633913109261],[117,319,69,0.01582934118523563],[117,319,70,0.019244417165749532],[117,319,71,0.020011185938992305],[117,319,72,0.016289886611778995],[117,319,73,0.01251960142623061],[117,319,74,0.008786538691533046],[117,319,75,0.005180598415932336],[117,319,76,0.0017907022851456184],[117,319,77,-0.0012992723317571202],[117,319,78,-0.004013950082645398],[117,319,79,-0.006289303872649279],[118,-64,64,-0.001640808052878378],[118,-64,65,-0.0019208320085080082],[118,-64,66,-0.002131478205279153],[118,-64,67,-0.0022816517897658894],[118,-64,68,-0.0023545507586216247],[118,-64,69,-0.0023189446121194474],[118,-64,70,-0.0021502233363941995],[118,-64,71,-0.001830696074325851],[118,-64,72,-0.0013493697297452612],[118,-64,73,-7.016659382528659E-4],[118,-64,74,1.1092457535211834E-4],[118,-64,75,0.0010812511084914546],[118,-64,76,0.002196976288816716],[118,-64,77,0.0034411141767956557],[118,-64,78,0.00479263363023193],[118,-64,79,0.00622712726766028],[118,-63,64,-0.001411109140005812],[118,-63,65,-0.0016518649668046746],[118,-63,66,-0.0018198387466736644],[118,-63,67,-0.0019230489159650077],[118,-63,68,-0.0019452128262816277],[118,-63,69,-0.0018567854556849766],[118,-63,70,-0.001634962823710928],[118,-63,71,-0.0012638921964716764],[118,-63,72,-7.343900410813389E-4],[118,-63,73,-4.360359196793771E-5],[118,-63,74,8.053847524723191E-4],[118,-63,75,0.001804010864714818],[118,-63,76,0.0029387406945950985],[118,-63,77,0.00419164086502577],[118,-63,78,0.005541008352129479],[118,-63,79,0.0069620594237926004],[118,-62,64,-9.925913118038149E-4],[118,-62,65,-0.0012014377458341985],[118,-62,66,-0.0013357155655745647],[118,-62,67,-0.0014022403195322027],[118,-62,68,-0.0013853110377044456],[118,-62,69,-0.0012573240490299075],[118,-62,70,-9.97387285510125E-4],[118,-62,71,-5.914574268426285E-4],[118,-62,72,-3.2019590137320216E-5],[118,-62,73,6.822851327844242E-4],[118,-62,74,0.0015470849225624039],[118,-62,75,0.0025527557813750964],[118,-62,76,0.0036849537856202207],[118,-62,77,0.00492520132807723],[118,-62,78,0.006251527520539913],[118,-62,79,0.0076391628149117515],[118,-61,64,-3.9528731472515194E-4],[118,-61,65,-5.794999259271011E-4],[118,-61,66,-6.89007111512953E-4],[118,-61,67,-7.291471611269113E-4],[118,-61,68,-6.848432116021922E-4],[118,-61,69,-5.306324041718795E-4],[118,-61,70,-2.475950143747579E-4],[118,-61,71,1.7656616604036968E-4],[118,-61,72,7.478631492522705E-4],[118,-61,73,0.001466408960802436],[118,-61,74,0.0023268532664440155],[118,-61,75,0.003318867835113358],[118,-61,76,0.004427682146758229],[118,-61,77,0.005634669344197676],[118,-61,78,0.006917982620009507],[118,-61,79,0.008253242023561556],[118,-60,64,3.6737021402898984E-4],[118,-60,65,2.0089509976754953E-4],[118,-60,66,1.0763049478947489E-4],[118,-60,67,8.393629936594806E-5],[118,-60,68,1.4423792736991314E-4],[118,-60,69,3.1171279214604615E-4],[118,-60,70,6.032883218424333E-4],[118,-60,71,0.0010296057615340102],[118,-60,72,0.001595355102694807],[118,-60,73,0.00229965652581944],[118,-60,74,0.0031364888208614437],[118,-60,75,0.004095165145998903],[118,-60,76,0.0051608563807756585],[118,-60,77,0.006315162225848892],[118,-60,78,0.007536730099323835],[118,-60,79,0.00880192177986169],[118,-59,64,0.001279504743853636],[118,-59,65,0.0011245758602000517],[118,-59,66,0.0010398003278009225],[118,-59,67,0.0010233917876247885],[118,-59,68,0.0010891046053074403],[118,-59,69,0.0012577355241047798],[118,-59,70,0.0015442318671336811],[118,-59,71,0.0019576853331296088],[118,-59,72,0.002501647726188752],[118,-59,73,0.0031744915686054715],[118,-59,74,0.003969816031807238],[118,-59,75,0.004876898521467293],[118,-59,76,0.005881192153676625],[118,-59,77,0.006964869260501365],[118,-59,78,0.008107410966233389],[118,-59,79,0.009286242781023359],[118,-58,64,0.002323937488512666],[118,-58,65,0.002175423978629457],[118,-58,66,0.0020925660821613555],[118,-58,67,0.0020755091259444156],[118,-58,68,0.0021373144321938328],[118,-58,69,0.0022963425877227856],[118,-58,70,0.0025655931351089008],[118,-58,71,0.002952717285517378],[118,-58,72,0.003460300973739396],[118,-58,73,0.004086191709257482],[118,-58,74,0.004823869654120282],[118,-58,75,0.005662863264722234],[118,-58,76,0.0065892097404690805],[118,-58,77,0.00758596042866378],[118,-58,78,0.008633731242637749],[118,-58,79,0.009711298060027344],[118,-57,64,0.0034835144757079765],[118,-57,65,0.0033377305610872935],[118,-57,66,0.0032518378396056025],[118,-57,67,0.0032279011743487547],[118,-57,68,0.0032782512499681454],[118,-57,69,0.00341878241249626],[118,-57,70,0.003660582880625072],[118,-57,71,0.004009958192964299],[118,-57,72,0.004468672188073561],[118,-57,73,0.005034230963847168],[118,-57,74,0.0057002102583335375],[118,-57,75,0.006456626605718483],[118,-57,76,0.007290352532156404],[118,-57,77,0.008185575967271397],[118,-57,78,0.009124303959315233],[118,-57,79,0.010086910695996789],[118,-56,64,0.004739042059157528],[118,-56,65,0.004593759954020293],[118,-56,66,0.004501558880186837],[118,-56,67,0.004466310948657051],[118,-56,68,0.004499551080429698],[118,-56,69,0.004614692118579421],[118,-56,70,0.00482094211933885],[118,-56,71,0.005123333215161077],[118,-56,72,0.005522915178222164],[118,-56,73,0.006016991139132517],[118,-56,74,0.006599395920322667],[118,-56,75,0.007260817360782467],[118,-56,76,0.00798916092504183],[118,-56,77,0.0087699578053358],[118,-56,78,0.009586816642616482],[118,-56,79,0.010421918910279661],[118,-55,64,0.006048486806894957],[118,-55,65,0.005900419076406689],[118,-55,66,0.0057978047795348205],[118,-55,67,0.005746124299441668],[118,-55,68,0.005756043673329482],[118,-55,69,0.0058385381469853535],[118,-55,70,0.006001020207864953],[118,-55,71,0.006247365944207652],[118,-55,72,0.006578055110039741],[118,-55,73,0.00699035268893163],[118,-55,74,0.007478532443146524],[118,-55,75,0.00803414285754649],[118,-55,76,0.008646315808964567],[118,-55,77,0.00930211821253623],[118,-55,78,0.009986946817504198],[118,-55,79,0.010684966247074134],[118,-54,64,0.007364022388484067],[118,-54,65,0.007207989459171085],[118,-54,66,0.0070891949243346184],[118,-54,67,0.007014460634287472],[118,-54,68,0.006993515115797812],[118,-54,69,0.007035013071642054],[118,-54,70,0.007144728257568953],[118,-54,71,0.007325565033502975],[118,-54,72,0.007577636404764278],[118,-54,73,0.007898383417751448],[118,-54,74,0.008282736441547586],[118,-54,75,0.008723318794636028],[118,-54,76,0.009210693101758363],[118,-54,77,0.009733650690724046],[118,-54,78,0.010279544263464137],[118,-54,79,0.010834664000610917],[118,-53,64,0.008644487600258852],[118,-53,65,0.008473896776591489],[118,-53,66,0.008331980845467461],[118,-53,67,0.008226582586216512],[118,-53,68,0.008166429444247685],[118,-53,69,0.008158032710515248],[118,-53,70,0.008205741320123845],[118,-53,71,0.00831172296622057],[118,-53,72,0.008475969884715363],[118,-53,73,0.00869634664321272],[118,-53,74,0.008968680533492989],[118,-53,75,0.009286895098663631],[118,-53,76,0.009643187255368463],[118,-53,77,0.010028248398995595],[118,-53,78,0.010431529806433283],[118,-53,79,0.010841552577390773],[118,-52,64,0.009855656035369944],[118,-52,65,0.009662948519378937],[118,-52,66,0.009490248858665626],[118,-52,67,0.009346060815669601],[118,-52,68,0.009238053179561672],[118,-52,69,0.009170818661605667],[118,-52,70,0.009147538097609658],[118,-52,71,0.009169913164704856],[118,-52,72,0.00923808864720869],[118,-52,73,0.009350618373569146],[118,-52,74,0.00950447551788022],[118,-52,75,0.00969510789397907],[118,-52,76,0.009916538801346821],[118,-52,77,0.010161513910741759],[118,-52,78,0.010421694604474643],[118,-52,79,0.01068789811231547],[118,-51,64,0.010970563986368339],[118,-51,65,0.010747623373980577],[118,-51,66,0.010536167620218317],[118,-51,67,0.010344976506450306],[118,-51,68,0.010180609885672392],[118,-51,69,0.010046002880502941],[118,-51,70,0.009943454580999345],[118,-51,71,0.009874492989954579],[118,-51,72,0.009839702085761967],[118,-51,73,0.009838595409483],[118,-51,74,0.009869536991366118],[118,-51,75,0.009929710367672607],[118,-51,76,0.010015136370007244],[118,-51,77,0.0101207402972519],[118,-51,78,0.010240469005465255],[118,-51,79,0.010367458374604678],[118,-50,64,0.011794056409349945],[118,-50,65,0.011708477392685894],[118,-50,66,0.011450352100802919],[118,-50,67,0.011204239503950168],[118,-50,68,0.010975549107910166],[118,-50,69,0.010765844891011444],[118,-50,70,0.010576848101599536],[118,-50,71,0.010410214477895207],[118,-50,72,0.01026725453989866],[118,-50,73,0.010148704564814912],[118,-50,74,0.010054549210337953],[118,-50,75,0.009983896684890513],[118,-50,76,0.009934907293294359],[118,-50,77,0.009904776111208432],[118,-50,78,0.009889770462871],[118,-50,79,0.009885322795142053],[118,-49,64,0.010904262464359682],[118,-49,65,0.011263380597835508],[118,-49,66,0.011625582892096786],[118,-49,67,0.011911235773339725],[118,-49,68,0.01161182023023965],[118,-49,69,0.011321158694995831],[118,-49,70,0.011040692069761215],[118,-49,71,0.010772488603005849],[118,-49,72,0.010518847216176045],[118,-49,73,0.01028195697396232],[118,-49,74,0.010063613835405648],[118,-49,75,0.009864995754897405],[118,-49,76,0.00968649712732915],[118,-49,77,0.009527623491145968],[118,-49,78,0.00938694731777314],[118,-49,79,0.009262125626826585],[118,-48,64,0.010173235420516782],[118,-48,65,0.010581605875454005],[118,-48,66,0.010999359617473708],[118,-48,67,0.01141923750506273],[118,-48,68,0.011838244084499234],[118,-48,69,0.01170636395788067],[118,-48,70,0.011334352275857015],[118,-48,71,0.010965869452014148],[118,-48,72,0.010604376038286758],[118,-48,73,0.010253649400929609],[118,-48,74,0.009917390924869868],[118,-48,75,0.009598898347986547],[118,-48,76,0.009300804394147079],[118,-48,77,0.00902488278604152],[118,-48,78,0.008771922625138087],[118,-48,79,0.008541672027545584],[118,-47,64,0.009620204804905396],[118,-47,65,0.010079438097181523],[118,-47,66,0.01055281871040512],[118,-47,67,0.011034392772751946],[118,-47,68,0.011522505613292265],[118,-47,69,0.011921613591879614],[118,-47,70,0.01146283094168663],[118,-47,71,0.011000370313792305],[118,-47,72,0.010538932918122643],[118,-47,73,0.010083921984282618],[118,-47,74,0.009640940748939737],[118,-47,75,0.009215362906553748],[118,-47,76,0.008811976865015333],[118,-47,77,0.008434705051274605],[118,-47,78,0.008086399408522581],[118,-47,79,0.007768714117147525],[118,-46,64,0.00925527701432687],[118,-46,65,0.009764263696866287],[118,-46,66,0.010290339743789952],[118,-46,67,0.01082923380018895],[118,-46,68,0.011380741917129707],[118,-46,69,0.01194633192457253],[118,-46,70,0.01143642491951387],[118,-46,71,0.010890344541240425],[118,-46,72,0.01034092550183511],[118,-46,73,0.009795149397871539],[118,-46,74,0.009260434374596489],[118,-46,75,0.008744107620083156],[118,-46,76,0.008252959327104094],[118,-46,77,0.007792879520423534],[118,-46,78,0.007368579033079479],[118,-46,79,0.0069833957943609476],[118,-45,64,0.009080340722038659],[118,-45,65,0.009635621214810168],[118,-45,66,0.010208925602959327],[118,-45,67,0.010798018716942208],[118,-45,68,0.011404272961981503],[118,-45,69,0.011872956507069652],[118,-45,70,0.01127003934473407],[118,-45,71,0.010653864992837549],[118,-45,72,0.010031530249193905],[118,-45,73,0.009411474805431058],[118,-45,74,0.008802774960952437],[118,-45,75,0.00821452462000184],[118,-45,76,0.007655305220416973],[118,-45,77,0.007132746126597395],[118,-45,78,0.006653176894194139],[118,-45,79,0.006221372681483579],[118,-44,64,0.009089958357631095],[118,-44,65,0.009686078153021404],[118,-44,66,0.0102990561853983],[118,-44,67,0.010929014968356283],[118,-44,68,0.011579039342584769],[118,-44,69,0.01163723102498822],[118,-44,70,0.010982507718274468],[118,-44,71,0.01031210810177927],[118,-44,72,0.009634148254439067],[118,-44,73,0.008958344620640218],[118,-44,74,0.008295217906172582],[118,-44,75,0.007655391084048618],[118,-44,76,0.0070489832810194655],[118,-44,77,0.006485101189644036],[118,-44,78,0.00597142951508392],[118,-44,79,0.005513921821942709],[118,-43,64,0.009272246262042564],[118,-43,65,0.009902097359168107],[118,-43,66,0.010545532480454577],[118,-43,67,0.011205313152557583],[118,-43,68,0.011886378110818262],[118,-43,69,0.01128644689709545],[118,-43,70,0.010595916472233272],[118,-43,71,0.009888740802046847],[118,-43,72,0.00917386223017414],[118,-43,73,0.008462042700798663],[118,-43,74,0.007764988692849586],[118,-43,75,0.007094576325384235],[118,-43,76,0.0064621785010397425],[118,-43,77,0.0058780958190720115],[118,-43,78,0.005351092843845411],[118,-43,79,0.004888041160323592],[118,-42,64,0.009609746146344482],[118,-42,65,0.010264895511236794],[118,-42,66,0.010928313521527405],[118,-42,67,0.011605634638297193],[118,-42,68,0.01153072567228006],[118,-42,69,0.01084423173873449],[118,-42,70,0.010134932044060576],[118,-42,71,0.009409308514228406],[118,-42,72,0.008676893051764036],[118,-42,73,0.007949222581435293],[118,-42,74,0.007238897261944937],[118,-42,75,0.006558743929763774],[118,-42,76,0.005921086709656355],[118,-42,77,0.005337126582633737],[118,-42,78,0.0048164315475628565],[118,-42,79,0.004366538849175548],[118,-41,64,0.01008029050078259],[118,-41,65,0.010751296294719909],[118,-41,66,0.011423348724025643],[118,-41,67,0.011691302130331262],[118,-41,68,0.011025818306622723],[118,-41,69,0.01033672234822129],[118,-41,70,0.009626128463337507],[118,-41,71,0.008900622373804363],[118,-41,72,0.008170054241426807],[118,-41,73,0.007446436343468235],[118,-41,74,0.006742947733053563],[118,-41,75,0.006073047995839402],[118,-41,76,0.005449702075875179],[118,-41,77,0.004884717992638545],[118,-41,78,0.004388199109379922],[118,-41,79,0.003968112441918885],[118,-40,64,0.010657864609363561],[118,-40,65,0.011334580875033144],[118,-40,66,0.011760118231284073],[118,-40,67,0.011121940836830211],[118,-40,68,0.010467294438472389],[118,-40,69,0.009791840108946931],[118,-40,70,0.009097313441211697],[118,-40,71,0.008390143871196104],[118,-40,72,0.007680202759005846],[118,-40,73,0.006979658694220548],[118,-40,74,0.006301942281027685],[118,-40,75,0.005660822529243891],[118,-40,76,0.005069596833479292],[118,-40,77,0.004540396366307156],[118,-40,78,0.004083608543952751],[118,-40,79,0.0037074180465124476],[118,-39,64,0.01131346782469503],[118,-39,65,0.01175038450892982],[118,-39,66,0.011130963024282002],[118,-39,67,0.010513583124478714],[118,-39,68,0.009884514412423663],[118,-39,69,0.009238563765769679],[118,-39,70,0.008576850946110817],[118,-39,71,0.007905365066459169],[118,-39,72,0.007233684460561551],[118,-39,73,0.006573804838925923],[118,-39,74,0.005939077976144677],[118,-39,75,0.005343263040728389],[118,-39,76,0.004799692531281998],[118,-39,77,0.004320554622975087],[118,-39,78,0.003916293557535712],[118,-39,79,0.0035951295302474005],[118,-38,64,0.011696977352575523],[118,-38,65,0.01107433604701677],[118,-38,66,0.010480429250783537],[118,-38,67,0.009896918609793966],[118,-38,68,0.009307591685924358],[118,-38,69,0.00870619740264236],[118,-38,70,0.008092978250741645],[118,-38,71,0.007473182542324585],[118,-38,72,0.006855772586653106],[118,-38,73,0.006252240720533162],[118,-38,74,0.00567553539719515],[118,-38,75,0.005139099402431726],[118,-38,76,0.004656022117829013],[118,-38,77,0.004238307589767753],[118,-38,78,0.0038962599911260332],[118,-38,79,0.003637987882087311],[118,-37,64,0.010995391269205925],[118,-37,65,0.010397229833014119],[118,-37,66,0.009840254050174765],[118,-37,67,0.009302974475157948],[118,-37,68,0.00876661315232128],[118,-37,69,0.008223631459436598],[118,-37,70,0.007673115444932672],[118,-37,71,0.0071192632676841325],[118,-37,72,0.00657009764980495],[118,-37,73,0.006036284212928884],[118,-37,74,0.005530057834366102],[118,-37,75,0.005064259024576675],[118,-37,76,0.004651482179178599],[118,-37,77,0.004303337398661686],[118,-37,78,0.004029827398723444],[118,-37,79,0.0038388408554443296],[118,-36,64,0.010314925416947836],[118,-36,65,0.009751377792029666],[118,-36,66,0.009242001278219492],[118,-36,67,0.008762294314545388],[118,-36,68,0.008290850788105649],[118,-36,69,0.007818594645909284],[118,-36,70,0.007343165426873439],[118,-36,71,0.006867400559840852],[118,-36,72,0.006398067105411923],[118,-36,73,0.005944695866362327],[118,-36,74,0.005518519911788649],[118,-36,75,0.00513151942767664],[118,-36,76,0.004795574661457215],[118,-36,77,0.004521728571693429],[118,-36,78,0.004319560627881751],[118,-36,79,0.004196673031157004],[118,-35,64,0.009687795688695718],[118,-35,65,0.00916832976411805],[118,-35,66,0.008716204031149876],[118,-35,67,0.0083041063492461],[118,-35,68,0.007907962381005662],[118,-35,69,0.007516894640033075],[118,-35,70,0.007126802412060617],[118,-35,71,0.00673885835821035],[118,-35,72,0.006358273212520128],[118,-35,73,0.005993157824142716],[118,-35,74,0.00565348447835318],[118,-35,75,0.005350149302906506],[118,-35,76,0.005094137426720088],[118,-35,77,0.004895792407617816],[118,-35,78,0.004764191286435285],[118,-35,79,0.004706626457763997],[118,-34,64,0.009144814829280791],[118,-34,65,0.008677985182339313],[118,-34,66,0.008291494384305088],[118,-34,67,0.007955478705326103],[118,-34,68,0.007643179137460726],[118,-34,69,0.007341645496798839],[118,-34,70,0.007044747035082731],[118,-34,71,0.006751702054947229],[118,-34,72,0.006465887520793028],[118,-34,73,0.006193739556827216],[118,-34,74,0.00594374664007511],[118,-34,75,0.005725537175817705],[118,-34,76,0.005549063011376233],[118,-34,77,0.0054238803026441735],[118,-34,78,0.00535852899762323],[118,-34,79,0.005360012043952249],[118,-33,64,0.008714481122794862],[118,-33,65,0.00830768975245116],[118,-33,66,0.007993718007921912],[118,-33,67,0.0077404595000544274],[118,-33,68,0.007518478020291541],[118,-33,69,0.007312479742420935],[118,-33,70,0.007114026164582658],[118,-33,71,0.006920114169493379],[118,-33,72,0.006732040457825492],[118,-33,73,0.006554349094396967],[118,-33,74,0.006393863838167264],[118,-33,75,0.006258806816274461],[118,-33,76,0.006158004981245368],[118,-33,77,0.006100185660131471],[118,-33,78,0.006093362365904105],[118,-33,79,0.006144311896344507],[118,-32,64,0.00842205010791912],[118,-32,65,0.008081314805953262],[118,-32,66,0.00784503139241654],[118,-32,67,0.007679199551106721],[118,-32,68,0.00755173673038817],[118,-32,69,0.007444743187963328],[118,-32,70,0.0073472156066436145],[118,-32,71,0.007253693204597872],[118,-32,72,0.007163184537080077],[118,-32,73,0.007078168478582028],[118,-32,74,0.0070036709142612995],[118,-32,75,0.006946418570542516],[118,-32,76,0.006914071306348092],[118,-32,77,0.006914534069408322],[118,-32,78,0.006955349597611995],[118,-32,79,0.007043172814593484],[118,-31,64,0.008288587047367367],[118,-31,65,0.008018317082661635],[118,-31,66,0.007862979496959077],[118,-31,67,0.007787055600372476],[118,-31,68,0.007755869320302034],[118,-31,69,0.007748670566077276],[118,-31,70,0.007751663936764429],[118,-31,71,0.007756734081244153],[118,-31,72,0.007760439761373685],[118,-31,73,0.007763072206805525],[118,-31,74,0.007767779148157353],[118,-31,75,0.007779755830078763],[118,-31,76,0.007805504211958899],[118,-31,77,0.007852161462327896],[118,-31,78,0.007926898744338367],[118,-31,79,0.00803639117510214],[118,-30,64,0.00832999797709935],[118,-30,65,0.008132776795732957],[118,-30,66,0.00805955172868688],[118,-30,67,0.008073672033990249],[118,-30,68,0.008137940513091526],[118,-30,69,0.008228540175137064],[118,-30,70,0.008328695775847465],[118,-30,71,0.008427488619446364],[118,-30,72,0.008518919860326563],[118,-30,73,0.008601027496435033],[118,-30,74,0.008675058304298836],[118,-30,75,0.008744695895945103],[118,-30,76,0.00881534600043128],[118,-30,77,0.008893479987885776],[118,-30,78,0.008986037562595677],[118,-30,79,0.00909988945460994],[118,-29,64,0.008556037273163338],[118,-29,65,0.008432411941424654],[118,-29,66,0.008440214265873677],[118,-29,67,0.008542039182159275],[118,-29,68,0.008698256896977863],[118,-29,69,0.008881805806915312],[118,-29,70,0.009072792911547448],[118,-29,71,0.009257404611360355],[118,-29,72,0.009427038072798984],[118,-29,73,0.009577475263432287],[118,-29,74,0.009708100781119163],[118,-29,75,0.009821164548123026],[118,-29,76,0.009921090381017697],[118,-29,77,0.010013831380361415],[118,-29,78,0.010106273011027908],[118,-29,79,0.010205684665420923],[118,-28,64,0.008969289799227032],[118,-28,65,0.008917566938214015],[118,-28,66,0.009002916857115833],[118,-28,67,0.009187526396669199],[118,-28,68,0.009429433275654922],[118,-28,69,0.009698204337384995],[118,-28,70,0.009970751763239204],[118,-28,71,0.010230342122898535],[118,-28,72,0.01046579126736584],[118,-28,73,0.010670690783338849],[118,-28,74,0.010842667022716026],[118,-28,75,0.010982673685526903],[118,-28,76,0.011094318892506108],[118,-28,77,0.011183227635099102],[118,-28,78,0.011256440436238318],[118,-28,79,0.01132184899521024],[118,-27,64,0.00956412583639233],[118,-27,65,0.009580173815555398],[118,-27,66,0.009737072360463806],[118,-27,67,0.009996888231300682],[118,-27,68,0.010315432575810236],[118,-27,69,0.010658837475610432],[118,-27,70,0.011000815797088611],[118,-27,71,0.011321765760358978],[118,-27,72,0.011608021285615916],[118,-27,73,0.011851123085100427],[118,-27,74,0.012047111425224959],[118,-27,75,0.011950351996812077],[118,-27,76,0.011847912656959354],[118,-27,77,0.011782879116306587],[118,-27,78,0.011747835704789395],[118,-27,79,0.011734050004929776],[118,-26,64,0.010325627149121813],[118,-26,65,0.010402684321898371],[118,-26,66,0.010622507431785338],[118,-26,67,0.010947242190645438],[118,-26,68,0.011330577847916818],[118,-26,69,0.011735226293350864],[118,-26,70,0.012019921682543322],[118,-26,71,0.011661031350128486],[118,-26,72,0.011347159165078904],[118,-26,73,0.01108860149473723],[118,-26,74,0.01089066810207074],[118,-26,75,0.010754353634939706],[118,-26,76,0.010676995893690032],[118,-26,77,0.010652920037592096],[118,-26,78,0.010674067909690959],[118,-26,79,0.010730611684637948],[118,-25,64,0.01122843043429505],[118,-25,65,0.011356964478219092],[118,-25,66,0.011628417633196407],[118,-25,67,0.012005091860262261],[118,-25,68,0.011735744013864414],[118,-25,69,0.011294399456401826],[118,-25,70,0.010867728637693764],[118,-25,71,0.010480561221171454],[118,-25,72,0.010150888230676449],[118,-25,73,0.009890538108969468],[118,-25,74,0.009705850213463258],[118,-25,75,0.009598344908869247],[118,-25,76,0.009565389408198179],[118,-25,77,0.009600858511344136],[118,-25,78,0.009695789394500946],[118,-25,79,0.009839029614025404],[118,-24,64,0.011940856015450078],[118,-24,65,0.011783806669528009],[118,-24,66,0.011484012040891207],[118,-24,67,0.011078979950925874],[118,-24,68,0.010618934360293757],[118,-24,69,0.010147588143457086],[118,-24,70,0.009699974064586394],[118,-24,71,0.00930312426611826],[118,-24,72,0.008976734513992574],[118,-24,73,0.008733834361338426],[118,-24,74,0.008581462411718858],[118,-24,75,0.00852134583574006],[118,-24,76,0.008550583273327682],[118,-24,77,0.008662330238698609],[118,-24,78,0.008846486136350811],[118,-24,79,0.00909038199451973],[118,-23,64,0.010923595365825151],[118,-23,65,0.010732233308140776],[118,-23,66,0.010401494777703552],[118,-23,67,0.009968595843527746],[118,-23,68,0.009485413334371447],[118,-23,69,0.008998501142110432],[118,-23,70,0.00854529137944715],[118,-23,71,0.008154725579879183],[118,-23,72,0.007847913148517623],[118,-23,73,0.007638802625054737],[118,-23,74,0.007534864930386223],[118,-23,75,0.007537787728953765],[118,-23,76,0.0076441800053836766],[118,-23,77,0.007846285927013055],[118,-23,78,0.008132707043893864],[118,-23,79,0.008489131865243898],[118,-22,64,0.009884440232467566],[118,-22,65,0.00966467042702971],[118,-22,66,0.009310733165213832],[118,-22,67,0.00885937615848632],[118,-22,68,0.008363798800943404],[118,-22,69,0.007873059333702135],[118,-22,70,0.007426678438549053],[118,-22,71,0.007055223375546153],[118,-22,72,0.006780961528737338],[118,-22,73,0.006618533397832527],[118,-22,74,0.00657564419005315],[118,-22,75,0.006653773115127676],[118,-22,76,0.006848899441375916],[118,-22,77,0.0071522443325953465],[118,-22,78,0.007551027454672209],[118,-22,79,0.008029237318012226],[118,-21,64,0.008858733411799088],[118,-21,65,0.008614069611502845],[118,-21,66,0.008242211601012933],[118,-21,67,0.007779212573351111],[118,-21,68,0.00727919251444568],[118,-21,69,0.006793325638781342],[118,-21,70,0.0063628957802242085],[118,-21,71,0.006019828163457867],[118,-21,72,0.005787332502777537],[118,-21,73,0.005680572393640346],[118,-21,74,0.005707360134338655],[118,-21,75,0.0058688760517904845],[118,-21,76,0.006160411348412075],[118,-21,77,0.006572133437156968],[118,-21,78,0.00708987268982067],[118,-21,79,0.007695929490281593],[118,-20,64,0.00788020470280779],[118,-20,65,0.0076116255639407234],[118,-20,66,0.007224413034729886],[118,-20,67,0.006753667355652076],[118,-20,68,0.006253975715493068],[118,-20,69,0.005778202853277479],[118,-20,70,0.00536906762004832],[118,-20,71,0.005059610977335347],[118,-20,72,0.004873816986549108],[118,-20,73,0.004827267608902434],[118,-20,74,0.004927830444278781],[118,-20,75,0.005176378460655],[118,-20,76,0.0055675406953861716],[118,-20,77,0.006090482846808372],[118,-20,78,0.006729716620105493],[118,-20,79,0.007465936646024894],[118,-19,64,0.006982136331609664],[118,-19,65,0.0066878589040149684],[118,-19,66,0.006284815401437326],[118,-19,67,0.005806877678127046],[118,-19,68,0.0053086160421407045],[118,-19,69,0.004844140501738629],[118,-19,70,0.004457288913339075],[118,-19,71,0.0041820139400853325],[118,-19,72,0.004042964329700156],[118,-19,73,0.004056108648974522],[118,-19,74,0.004229400608937374],[118,-19,75,0.0045634850223472785],[118,-19,76,0.005052443349359834],[118,-19,77,0.005684577709140773],[118,-19,78,0.006443232165869183],[118,-19,79,0.0073076500379802905],[118,-18,64,0.006198547806611206],[118,-18,65,0.0058737171383872544],[118,-18,66,0.0054509047174465695],[118,-18,67,0.004962474934789584],[118,-18,68,0.00446248751873932],[118,-18,69,0.004005852358261672],[118,-18,70,0.003637240015761549],[118,-18,71,0.003391364575491244],[118,-18,72,0.003293501714400774],[118,-18,73,0.0033600594751426434],[118,-18,74,0.0035992009017066094],[118,-18,75,0.0040115175870280686],[118,-18,76,0.004590753077423992],[118,-18,77,0.005324574982116978],[118,-18,78,0.006195394548651531],[118,-18,79,0.007181232387851151],[118,-17,64,0.0055503124068864455],[118,-17,65,0.005187690498763087],[118,-17,66,0.00473849507065599],[118,-17,67,0.004233317236262687],[118,-17,68,0.0037252156856070378],[118,-17,69,0.003269456769434816],[118,-17,70,0.002911278709906326],[118,-17,71,0.002686043573081533],[118,-17,72,0.002619664719505871],[118,-17,73,0.0027290991292363],[118,-17,74,0.00302290381263649],[118,-17,75,0.0035018553845174026],[118,-17,76,0.004159631752023036],[118,-17,77,0.004983554747510209],[118,-17,78,0.005955392428000848],[118,-17,79,0.007052219663983237],[118,-16,64,0.00500422511747858],[118,-16,65,0.004598124710826238],[118,-16,66,0.004117872715453778],[118,-16,67,0.00359206041858254],[118,-16,68,0.0030722420858651477],[118,-16,69,0.002613541667766177],[118,-16,70,0.0022614285948908855],[118,-16,71,0.0020517169869033883],[118,-16,72,0.002010879111009043],[118,-16,73,0.002156437478869621],[118,-16,74,0.0024974348633788677],[118,-16,75,0.0030349813569252077],[118,-16,76,0.0037628774394230344],[118,-16,77,0.004668311879170055],[118,-16,78,0.005732633154178799],[118,-16,79,0.006932192957674717],[118,-15,64,0.004523985680664047],[118,-15,65,0.004071009928591605],[118,-15,66,0.0035577043888105047],[118,-15,67,0.0030104732475349206],[118,-15,68,0.002478853410064465],[118,-15,69,0.002017272097316853],[118,-15,70,0.0016710162031978455],[118,-15,71,0.0014760633132871257],[118,-15,72,0.0014592633303473497],[118,-15,73,0.0016386136007613442],[118,-15,74,0.002023626906511559],[118,-15,75,0.002615791498848437],[118,-15,76,0.0034091221676430922],[118,-15,77,0.004390801166480662],[118,-15,78,0.005541907649771919],[118,-15,79,0.006838234126451036],[118,-14,64,0.004084256495853088],[118,-14,65,0.00358298437167434],[118,-14,66,0.003036796054677625],[118,-14,67,0.0024697549503289716],[118,-14,68,0.00192886969728449],[118,-14,69,0.0014672808455234185],[118,-14,70,0.0011296241688840947],[118,-14,71,9.51683876013276E-4],[118,-14,72,9.604295421024798E-4],[118,-14,73,0.0011741620264496585],[118,-14,74,0.001602767831864476],[118,-14,75,0.002248081143009128],[118,-14,76,0.0031043525680223916],[118,-14,77,0.0041588234033480805],[118,-14,78,0.005392404047789821],[118,-14,79,0.006780455010633038],[118,-13,64,0.0036686384393761397],[118,-13,65,0.0031193390889901456],[118,-13,66,0.002542157028565702],[118,-13,67,0.001958690222778234],[118,-13,68,0.0014129220684152397],[118,-13,69,9.561007903491972E-4],[118,-13,70,6.317092678787796E-4],[118,-13,71,4.7493603360018174E-4],[118,-13,72,5.125591575719485E-4],[118,-13,73,7.629547698693557E-4],[118,-13,74,0.0012362297733981462],[118,-13,75,0.0019344780484871697],[118,-13,76,0.0028521592065006113],[118,-13,77,0.003976598713877407],[118,-13,78,0.005288607983091661],[118,-13,79,0.006763222815508388],[118,-12,64,0.0032678205730927983],[118,-12,65,0.0026721941622126913],[118,-12,66,0.002067231292490819],[118,-12,67,0.0014719652343061413],[118,-12,68,9.268830341207084E-4],[118,-12,69,4.80738835534181E-4],[118,-12,70,1.7534829514689396E-4],[118,-12,71,4.487763032555948E-5],[118,-12,72,1.1557020188957065E-4],[118,-12,73,4.056131261798118E-4],[118,-12,74,9.251435658236969E-4],[118,-12,75,0.0016763940665893598],[118,-12,76,0.002653976031793385],[118,-12,77,0.0038453001583972695],[118,-12,78,0.005231132402929934],[118,-12,79,0.00678628380346082],[118,-11,64,0.0028779041317416065],[118,-11,65,0.0022388466460644117],[118,-11,66,0.001610296225505018],[118,-11,67,0.0010086448084873278],[118,-11,68,4.704495295813654E-4],[118,-11,69,4.139157794215845E-5],[118,-11,70,-2.388880704423669E-4],[118,-11,71,-3.3767713749713356E-4],[118,-11,72,-2.2962326925851686E-4],[118,-11,73,1.0298949701368734E-4],[118,-11,74,6.701187710469404E-4],[118,-11,75,0.001473995786483157],[118,-11,76,0.0025093104430214436],[118,-11,77,0.003763548242155814],[118,-11,78,0.005217477658520236],[118,-11,79,0.006845786217260678],[118,-10,64,0.0024989018295617192],[118,-10,65,0.0018202911864601283],[118,-10,66,0.0011730296036159098],[118,-10,67,5.708115610221333E-4],[118,-10,68,4.5879398353182945E-5],[118,-10,69,-3.59696622835985E-4],[118,-10,70,-6.089327910261911E-4],[118,-10,71,-6.709898616312854E-4],[118,-10,72,-5.21759165300422E-4],[118,-10,73,-1.4428025497004545E-4],[118,-10,74,4.7100974943380477E-4],[118,-10,75,0.0013261946173898822],[118,-10,76,0.0024159644276014495],[118,-10,77,0.0037278667861171655],[118,-10,78,0.005242722362345365],[118,-10,79,0.006935202962710829],[118,-9,64,0.002133414137348541],[118,-9,65,0.0014199148627420403],[118,-9,66,7.592463142997969E-4],[118,-9,67,1.6236834585157926E-4],[118,-9,68,-3.4311741529543475E-4],[118,-9,69,-7.192320069306692E-4],[118,-9,70,-9.320903178092166E-4],[118,-9,71,-9.531171072457472E-4],[118,-9,72,-7.597819188354026E-4],[118,-9,73,-3.361531871986604E-4],[118,-9,74,3.267283950435543E-4],[118,-9,75,0.001230656813122367],[118,-9,76,0.0023702471680699757],[118,-9,77,0.0037331004614045045],[118,-9,78,0.005300145229124087],[118,-9,79,0.007046154201579644],[118,-8,64,0.0017854847475907189],[118,-8,65,0.0010423683626403337],[118,-8,66,3.738067810279819E-4],[118,-8,67,-2.1199411028643799E-4],[118,-8,68,-6.92331206035015E-4],[118,-8,69,-0.0010337245814674113],[118,-8,70,-0.001205773282143582],[118,-8,71,-0.001182515326139032],[118,-8,72,-9.433024663172263E-4],[118,-8,73,-4.734834440295832E-4],[118,-8,74,2.3510428625916677E-4],[118,-8,75,0.001183833987588872],[118,-8,76,0.002367179464177439],[118,-8,77,0.003772794136948357],[118,-8,78,0.005381777863617026],[118,-8,79,0.0071691296465599035],[118,-7,64,0.00145963796345304],[118,-7,65,6.926161140066505E-4],[118,-7,66,2.1699598206586317E-5],[118,-7,67,-5.476620180806727E-4],[118,-7,68,-9.978461599537997E-4],[118,-7,69,-0.0013001940413323399],[118,-7,70,-0.0014281061696993507],[118,-7,71,-0.0013585298537595687],[118,-7,72,-0.0010729622462616274],[118,-7,73,-5.582530634360303E-4],[118,-7,74,1.9279312254018383E-4],[118,-7,75,0.0011810147060848735],[118,-7,76,0.002400690264250304],[118,-7,77,0.0038395340447129837],[118,-7,78,0.005478888217345741],[118,-7,79,0.007294110011255707],[118,-6,64,0.0011601012128535496],[118,-6,65,3.7516846159409454E-4],[118,-6,66,-2.9269866742342857E-4],[118,-6,67,-8.407929744541277E-4],[118,-6,68,-0.0012566726853616285],[118,-6,69,-0.0015167260088889106],[118,-6,70,-0.001598393774846697],[118,-6,71,-0.0014817660512522457],[118,-6,72,-0.0011506995712441167],[118,-6,73,-5.937281023817008E-4],[118,-6,74,1.952344231783813E-4],[118,-6,75,0.0012163977662428857],[118,-6,76,0.0024638055476480076],[118,-6,77,0.003925250629376386],[118,-6,78,0.005582394210491312],[118,-6,79,0.007411086752293934],[118,-5,64,8.902162973453315E-4],[118,-5,65,9.349938587500604E-5],[118,-5,66,-5.661831507782821E-4],[118,-5,67,-0.0010888368554583798],[118,-5,68,-0.0014672154202015958],[118,-5,69,-0.001682875819363845],[118,-5,70,-0.0017174519294892341],[118,-5,71,-0.0015543403940078138],[118,-5,72,-0.00117991652035391],[118,-5,73,-5.845386069355213E-4],[118,-5,74,2.3665955378496012E-4],[118,-5,75,0.0012831878039060828],[118,-5,76,0.002548829748340692],[118,-5,77,0.004021482820477619],[118,-5,78,0.005683206806427652],[118,-5,79,0.00751047895007108],[118,-4,64,6.520433325288565E-4],[118,-4,65,-1.503463902676425E-4],[118,-4,66,-7.970961353689708E-4],[118,-4,67,-0.0012908796256704878],[118,-4,68,-0.0016295735991509908],[118,-4,69,-0.001799916787955266],[118,-4,70,-0.0017877977410404066],[118,-4,71,-0.001580009086204684],[118,-4,72,-0.001165544320565542],[118,-4,73,-5.366808246608965E-4],[118,-4,74,3.101512195821677E-4],[118,-4,75,0.0013737138724044193],[118,-4,76,0.0026475198583898454],[118,-4,77,0.004119603345752682],[118,-4,78,0.005772501636240505],[118,-4,79,0.007583445911875211],[118,-3,64,4.4616161774256764E-4],[118,-3,65,-3.5595277664635984E-4],[118,-3,66,-9.855142886051934E-4],[118,-3,67,-0.001447806262836612],[118,-3,68,-0.0017456702042848232],[118,-3,69,-0.0018709296558215493],[118,-3,70,-0.0018136963613589905],[118,-3,71,-0.0015641715995214902],[118,-3,72,-0.001114005041089753],[118,-3,73,-4.574399544162385E-4],[118,-3,74,4.0775562020285564E-4],[118,-3,75,0.0014795716482190202],[118,-3,76,0.0027512522996345485],[118,-3,77,0.004211004595633056],[118,-3,78,0.005841918100952108],[118,-3,79,0.007622093848734113],[118,-2,64,2.7167188322567236E-4],[118,-2,65,-5.245338267225122E-4],[118,-2,66,-0.0011332434853300135],[118,-2,67,-0.001562278786498511],[118,-2,68,-0.001819206123991275],[118,-2,69,-0.001900729728730188],[118,-2,70,-0.0018010611456447253],[118,-2,71,-0.001513746396521796],[118,-2,72,-0.0010330673166250022],[118,-2,73,-3.552316543077084E-4],[118,-2,74,5.206484973744559E-4],[118,-2,75,0.0015917899112724463],[118,-2,76,0.0028511826023647213],[118,-2,77,0.00428724445165174],[118,-2,78,0.005883684731792004],[118,-2,79,0.007619574777934831],[118,-1,64,1.2640449811305763E-4],[118,-1,65,-6.587328963432125E-4],[118,-1,66,-0.0012436168749895011],[118,-1,67,-0.0016385252373473799],[118,-1,68,-0.0018554354097917694],[118,-1,69,-0.0018956280981114915],[118,-1,70,-0.0017572039510006458],[118,-1,71,-0.001436916008185029],[118,-1,72,-9.315937460472401E-4],[118,-1,73,-2.3936048404661704E-4],[118,-1,74,6.393563233281053E-4],[118,-1,75,0.0017010219335414829],[118,-1,76,0.0029383978814236152],[118,-1,77,0.004340151406814698],[118,-1,78,0.0058906694655769115],[118,-1,79,0.007570075639421193],[118,0,64,7.3382777571609365E-6],[118,0,65,-7.622148982781037E-4],[118,0,66,-0.0013210917790473173],[118,0,67,-0.001681935384475212],[118,0,68,-0.001860757654004788],[118,0,69,-0.001863023273450935],[118,0,70,-0.0016904322721044023],[118,0,71,-0.001342738593744658],[118,0,72,-8.191775849908172E-4],[118,0,73,-1.1969344533292794E-4],[118,0,74,7.540338727401217E-4],[118,0,75,0.0017977623847846695],[118,0,76,0.003004062053221346],[118,0,77,0.004361888234852275],[118,0,78,0.005856353394918376],[118,0,79,0.007468695488886236],[118,1,64,-8.876559818739902E-5],[118,1,65,-8.390480391133226E-4],[118,1,66,-0.0013706425182827638],[118,1,67,-0.0016984608049952757],[118,1,68,-0.0018421255337016291],[118,1,69,-0.0018108215430987732],[118,1,70,-0.0016094916807242836],[118,1,71,-0.0012406244795394145],[118,1,72,-7.056671382669106E-4],[118,1,73,-6.2468119122271785E-6],[118,1,74,8.54800327608688E-4],[118,1,75,0.001872592375033289],[118,1,76,0.0030395570134591505],[118,1,77,0.004344978156411969],[118,1,78,0.005774732792829037],[118,1,79,0.007311216533588997],[118,2,64,-1.6451107036965E-4],[118,2,65,-8.928733115320749E-4],[118,2,66,-0.0013969486420412956],[118,2,67,-0.0016938195078226707],[118,2,68,-0.0018062679781477113],[118,2,69,-0.0017466864517841517],[118,2,70,-0.0015228535772750184],[118,2,71,-0.0011396770242098335],[118,2,72,-6.005762789929863E-4],[118,2,73,9.131648884367831E-5],[118,2,74,9.321380511940364E-4],[118,2,75,0.001916458390378044],[118,2,76,0.0030366273635103152],[118,2,77,0.004282303118672903],[118,2,78,0.005640161236290508],[118,2,79,0.007093783201001971],[118,3,64,-2.2079005135450372E-4],[118,3,65,-9.258463371398653E-4],[118,3,66,-0.0014033566576096422],[118,3,67,-0.0016724793839233052],[118,3,68,-0.0017587018467006468],[118,3,69,-0.0016770911753489631],[118,3,70,-0.0014378251405109145],[118,3,71,-0.0010478799691561703],[118,3,72,-5.123706626259249E-4],[118,3,73,1.64279861193826E-4],[118,3,74,9.773433786217916E-4],[118,3,75,0.0019209609135779609],[118,3,76,0.002987489040886216],[118,3,77,0.004167017371955284],[118,3,78,0.005447056291275482],[118,3,79,0.006812393662165571],[118,4,64,-2.554750840185665E-4],[118,4,65,-9.373549435809414E-4],[118,4,66,-0.0013906254357465098],[118,4,67,-0.001636435401704558],[118,4,68,-0.0017025498509480289],[118,4,69,-0.0016061924201550538],[118,4,70,-0.0013594990436548793],[118,4,71,-9.711457827099173E-4],[118,4,72,-4.476390359694326E-4],[118,4,73,2.0555418367390526E-4],[118,4,74,9.830364953956501E-4],[118,4,75,0.001878671144113754],[118,4,76,0.0028849336048606964],[118,4,77,0.003992423307466159],[118,4,78,0.005189534647441837],[118,4,79,0.006462286118304877],[118,5,64,-2.618792110718525E-4],[118,5,65,-9.225097665589783E-4],[118,5,66,-0.00135545233938206],[118,5,67,-0.001583777257397234],[118,5,68,-0.0016371610701179159],[118,5,69,-0.0015345218868394303],[118,5,70,-0.001289538780620998],[118,5,71,-9.122208078079334E-4],[118,5,72,-4.101456155292902E-4],[118,5,73,2.1045074725961686E-4],[118,5,74,9.437334181782938E-4],[118,5,75,0.001783477968917868],[118,5,76,0.0027224292322870014],[118,5,77,0.003751809296622698],[118,5,78,0.004860973931964874],[118,5,79,0.00603721640104617],[118,6,64,-2.269784357692648E-4],[118,6,65,-8.704017575064735E-4],[118,6,66,-0.0012887729011628116],[118,6,67,-0.0015070396767467903],[118,6,68,-0.001556526037217208],[118,6,69,-0.0014574874764567598],[118,6,70,-0.0012247924119886315],[118,6,71,-8.694410961508634E-4],[118,6,72,-3.997589404090953E-4],[118,6,73,1.7754861119129004E-4],[118,6,74,8.564802826173071E-4],[118,6,75,0.0016309625408182124],[118,6,76,0.0024942125262828337],[118,6,77,0.0034382400072363634],[118,6,78,0.004453487720803418],[118,6,79,0.005528609170818283],[118,7,64,-1.287481307462235E-4],[118,7,65,-7.608305532499662E-4],[118,7,66,-0.0011719533730118815],[118,7,67,-0.001388890762233826],[118,7,68,-0.0014444530497701035],[118,7,69,-0.0013600076085243927],[118,7,70,-0.0011513457264881984],[118,7,71,-8.301663639042506E-4],[118,7,72,-4.052377299444677E-4],[118,7,73,1.1657063035847618E-4],[118,7,74,7.293858949085253E-4],[118,7,75,0.0014275605196575581],[118,7,76,0.0022050313385052972],[118,7,77,0.0030548089597143523],[118,7,78,0.0039685969214796855],[118,7,79,0.004936539790331564],[118,8,64,6.186657074416926E-5],[118,8,65,-5.637591292370398E-4],[118,8,66,-9.739594478487619E-4],[118,8,67,-0.001197099137019411],[118,8,68,-0.0012672420653849564],[118,8,69,-0.0012066734629035828],[118,8,70,-0.0010318884049864596],[118,8,71,-7.55049892533547E-4],[118,8,72,-3.851289652719504E-4],[118,8,73,7.107686136707356E-5],[118,8,74,6.080475336238833E-4],[118,8,75,0.0012207671783813216],[118,8,76,0.0019040737234569162],[118,8,77,0.00265213125609119],[118,8,78,0.0034580246805677494],[118,8,79,0.00431347596918069],[118,9,64,3.6794878774710463E-4],[118,9,65,-2.543504043091193E-4],[118,9,66,-6.68190439517656E-4],[118,9,67,-9.030970886475134E-4],[118,9,68,-9.940487230810462E-4],[118,9,69,-9.640502697186167E-4],[118,9,70,-8.301106170439808E-4],[118,9,71,-6.046762812348884E-4],[118,9,72,-2.9675417148843585E-4],[118,9,73,8.708019239174721E-5],[118,9,74,5.417897524958744E-4],[118,9,75,0.0010630987408576358],[118,9,76,0.0016468314540089455],[118,9,77,0.0022883668946702368],[118,9,78,0.002982208937071231],[118,9,79,0.0037216714166119916],[118,10,64,8.058805794205103E-4],[118,10,65,1.8540100068985464E-4],[118,10,66,-2.3493838803277536E-4],[118,10,67,-4.852549299267431E-4],[118,10,68,-6.010255552981647E-4],[118,10,69,-6.057759437422879E-4],[118,10,70,-5.168675386097238E-4],[118,10,71,-3.469009605541013E-4],[118,10,72,-1.0481992322756794E-4],[118,10,73,2.030925219490356E-4],[118,10,74,5.723261959634877E-4],[118,10,75,9.993649777226092E-4],[118,10,76,0.001481017223587464],[118,10,77,0.0020138554215470895],[118,10,78,0.0025937648280567136],[118,10,79,0.003215600590490691],[118,11,64,0.0013880004050510436],[118,11,65,7.69334309796568E-4],[118,11,66,3.412599543486794E-4],[118,11,67,7.372626265560224E-5],[118,11,68,-6.877888304216062E-5],[118,11,69,-1.1010791222459723E-4],[118,11,70,-6.784357317131929E-5],[118,11,71,4.533981796418567E-5],[118,11,72,2.205978802992298E-4],[118,11,73,4.5193830191692406E-4],[118,11,74,7.35344422033285E-4],[118,11,75,0.0010680008299191737],[118,11,76,0.0014476213007431047],[118,11,77,0.0018718791434513711],[118,11,78,0.0023379397955591067],[118,11,79,0.00284209526617035],[118,12,64,0.002125539955787569],[118,12,65,0.001510063130854585],[118,12,66,0.0010745395512198315],[118,12,67,7.896811253979186E-4],[118,12,68,6.204215332458262E-4],[118,12,69,5.427626215809152E-4],[118,12,70,5.389987366670631E-4],[118,12,71,5.964146699841865E-4],[118,12,72,7.062436633362836E-4],[118,12,73,8.627184284172786E-4],[118,12,74,0.001062216020887254],[118,12,75,0.001302497175181974],[118,12,76,0.001582040473565464],[118,12,77,0.0018994714927480353],[118,12,78,0.002253086845326598],[118,12,79,0.0026404728130920135],[118,13,64,0.003031845808376627],[118,13,65,0.0024221962225132155],[118,13,66,0.0019808969169741396],[118,13,67,0.0016801103912144994],[118,13,68,0.0014856844018388325],[118,13,69,0.0013736328288556374],[118,13,70,0.0013261884008142265],[118,13,71,0.00133058109267287],[118,13,72,0.0013780476640569228],[118,13,73,0.0014629255970898785],[118,13,74,0.0015818322812839992],[118,13,75,0.0017329300778675216],[118,13,76,0.0019152776815281422],[118,13,77,0.0021282679851281944],[118,13,78,0.0023711524439309593],[118,13,79,0.0026426517318368908],[118,14,64,0.004125892221765382],[118,14,65,0.0035258447929828796],[118,14,66,0.0030816595925173807],[118,14,67,0.0027675812775563805],[118,14,68,0.002550796251266064],[118,14,69,0.0024074524142357573],[118,14,70,0.0023197395037351026],[118,14,71,0.002274772588787146],[118,14,72,0.0022636715348652364],[118,14,73,0.0022807148058748327],[118,14,74,0.0023225684419831],[118,14,75,0.0023875908595401194],[118,14,76,0.002475213927303366],[118,14,77,0.0025854005825211913],[118,14,78,0.002718179062402325],[118,14,79,0.002873253642473579],[118,15,64,0.005438504043341392],[118,15,65,0.0048526707143264096],[118,15,66,0.004409246677847868],[118,15,67,0.004085092194574429],[118,15,68,0.003849091953825721],[118,15,69,0.0036776148998271985],[118,15,70,0.003552795871707983],[118,15,71,0.0034615501194328203],[118,15,72,0.0033947426566453176],[118,15,73,0.0033464200853436164],[118,15,74,0.0033131057061592806],[118,15,75,0.0032931585634668895],[118,15,76,0.003286196909816025],[118,15,77,0.003292586410138119],[118,15,78,0.0033129932438721744],[118,15,79,0.0033480021037309584],[118,16,64,0.007008967702725919],[118,16,65,0.006442033144713449],[118,16,66,0.0060026987653331015],[118,16,67,0.0056708622708999375],[118,16,68,0.00541742125696805],[118,16,69,0.005219067894174848],[118,16,70,0.0050579074356671555],[118,16,71,0.004920625283926061],[118,16,72,0.004797762768464705],[118,16,73,0.004683041880605822],[118,16,74,0.004572739742317588],[118,16,75,0.004465113453922405],[118,16,76,0.004359875832582005],[118,16,77,0.004257722420464626],[118,16,78,0.004159910009203396],[118,16,79,0.004067886796562507],[118,17,64,0.00885592830778273],[118,17,65,0.008312448385145988],[118,17,66,0.00788011374415512],[118,17,67,0.007542171396606361],[118,17,68,0.00727180645934023],[118,17,69,0.007046162172632583],[118,17,70,0.0068473870298634415],[118,17,71,0.0066619704557861125],[118,17,72,0.006480137319703887],[118,17,73,0.006295276544734538],[118,17,74,0.00610340454504014],[118,17,75,0.005902664126956923],[118,17,76,0.0056928593926288355],[118,17,77,0.005475027086440493],[118,17,78,0.005251044725773012],[118,17,79,0.005023275758996587],[118,18,64,0.010975043898209202],[118,18,65,0.010459410756474078],[118,18,66,0.01003671336635789],[118,18,67,0.009693752431989215],[118,18,68,0.009406232329665578],[118,18,69,0.009151896305483678],[118,18,70,0.008913047812886517],[118,18,71,0.00867606572390504],[118,18,72,0.008430926090894563],[118,18,73,0.008170742116198433],[118,18,74,0.00789132301097552],[118,18,75,0.007590752367739561],[118,18,76,0.00726898661235553],[118,18,77,0.0069274740404610706],[118,18,78,0.006568794880750259],[118,18,79,0.006196322763599399],[118,19,64,0.013342629793659836],[118,19,65,0.012859027748528725],[118,19,66,0.012448440591820386],[118,19,67,0.01210132343052121],[118,19,68,0.01179608636574226],[118,19,69,0.011511237650734054],[118,19,70,0.01122937794092566],[118,19,71,0.010936901144398905],[118,19,72,0.01062364852269192],[118,19,73,0.010282564413698271],[118,19,74,0.00990935420373041],[118,19,75,0.009502145160574616],[118,19,76,0.009061150721203734],[118,19,77,0.008588338806586314],[118,19,78,0.008087104711650719],[118,19,79,0.007561949090942775],[118,20,64,0.011545996205716917],[118,20,65,0.011974877786508261],[118,20,66,0.012349951285498933],[118,20,67,0.012677132409435694],[118,20,68,0.012975195714548885],[118,20,69,0.013264724439720463],[118,20,70,0.013562690786408739],[118,20,71,0.013404879047184359],[118,20,72,0.013019002037551217],[118,20,73,0.012591890534156026],[118,20,74,0.012119283726665993],[118,20,75,0.011599486588360563],[118,20,76,0.011033100536250753],[118,20,77,0.010422741196880064],[118,20,78,0.009772743934266108],[118,20,79,0.009088857806365987],[118,21,64,0.008900955679644445],[118,21,65,0.009290435458711081],[118,21,66,0.00964882885801555],[118,21,67,0.009978485990927809],[118,21,68,0.010295245858868063],[118,21,69,0.010618570562003592],[118,21,70,0.010964791419635432],[118,21,71,0.011347036222849192],[118,21,72,0.011775307314875043],[118,21,73,0.012256591978360041],[118,21,74,0.012795004616193716],[118,21,75,0.013391960141720404],[118,21,76,0.013141220190058],[118,21,77,0.012389184528547285],[118,21,78,0.011586602013101006],[118,21,79,0.010740582249129261],[118,22,64,0.0061611345921453444],[118,22,65,0.006508021156731436],[118,22,66,0.006847475308684765],[118,22,67,0.007178457164887173],[118,22,68,0.00751382816559931],[118,22,69,0.007871748772571274],[118,22,70,0.008267722441621168],[118,22,71,0.008714344571377328],[118,22,72,0.009221250387820205],[118,22,73,0.009795111817892898],[118,22,74,0.010439682896725432],[118,22,75,0.011155893139348092],[118,22,76,0.011941988199798761],[118,22,77,0.01279371703928817],[118,22,78,0.013484999521028197],[118,22,79,0.012476570562340432],[118,23,64,0.003394091416907624],[118,23,65,0.003695628411096215],[118,23,66,0.00401392317893022],[118,23,67,0.00434479834096443],[118,23,68,0.0046981445935773795],[118,23,69,0.005090646165706061],[118,23,70,0.005536790957397323],[118,23,71,0.006048451066083664],[118,23,72,0.00663470610302022],[118,23,73,0.00730173156947187],[118,23,74,0.008052751895120272],[118,23,75,0.00888805758585111],[118,23,76,0.009805085779444368],[118,23,77,0.01079856336703701],[118,23,78,0.011860711706855584],[118,23,79,0.012981511835949564],[118,24,64,6.707333878980578E-4],[118,24,65,9.246572834237728E-4],[118,24,66,0.0012196372881812967],[118,24,67,0.0015486786917264948],[118,24,68,0.001918756155895819],[118,24,69,0.0023449142564475126],[118,24,70,0.0028404431839599443],[118,24,71,0.003416303852946287],[118,24,72,0.0040808343312762905],[118,24,73,0.004839536492243488],[118,24,74,0.005694942549321231],[118,24,75,0.006646560938722238],[118,24,76,0.007690900827579423],[118,24,77,0.008821574347480987],[118,24,78,0.010029475485811687],[118,24,79,0.011303034412494998],[118,25,64,-0.0019374177365113169],[118,25,65,-0.0017328247247901931],[118,25,66,-0.0014632099702329411],[118,25,67,-0.0011380077875951576],[118,25,68,-7.530587305823523E-4],[118,25,69,-2.951052229140721E-4],[118,25,70,2.477742583091221E-4],[118,25,71,8.85450613154036E-4],[118,25,72,0.0016253431594170547],[118,25,73,0.0024721128787509187],[118,25,74,0.003427449585263994],[118,25,75,0.004489952501716047],[118,25,76,0.0056551035052057295],[118,25,77,0.0069153320914021295],[118,25,78,0.00826017090577959],[118,25,79,0.009676500503868724],[118,26,64,-0.004360799074870755],[118,26,65,-0.004206663806494686],[118,26,66,-0.003964309921826609],[118,26,67,-0.0036451869397102965],[118,26,68,-0.00324780639567813],[118,26,69,-0.0027608245964611377],[118,26,70,-0.002173843440902162],[118,26,71,-0.0014782466175733253],[118,26,72,-6.676968840998526E-4],[118,26,73,2.6147341993949753E-4],[118,26,74,0.001309978399197765],[118,26,75,0.002475400675291374],[118,26,76,0.003752118757757064],[118,26,77,0.005131338720609233],[118,26,78,0.0066012289611562585],[118,26,79,0.008147156602754984],[118,27,64,-0.006534216145094207],[118,27,65,-0.006431040116417195],[118,27,66,-0.006217632752041595],[118,27,67,-0.005906999288235219],[118,27,68,-0.005500138263649939],[118,27,69,-0.004987722556579548],[118,27,70,-0.0043610117332524186],[118,27,71,-0.0036127899698937117],[118,27,72,-0.0027379472784449816],[118,27,73,-0.0017339430329912477],[118,27,74,-6.011519700634711E-4],[118,27,75,6.569068694198575E-4],[118,27,76,0.002033457504419244],[118,27,77,0.0035184696601681976],[118,27,78,0.005098775415475193],[118,27,79,0.00675829832973543],[118,28,64,-0.008399085210947833],[118,28,65,-0.008346724000569973],[118,28,66,-0.008163683489093208],[118,28,67,-0.007864042255749255],[118,28,68,-0.007451066826142484],[118,28,69,-0.006917522216048989],[118,28,70,-0.006256435853526754],[118,28,71,-0.0054621159700837365],[118,28,72,-0.00453080339148459],[118,28,73,-0.0034611964880519324],[118,28,74,-0.002254849405596202],[118,28,75,-9.164440175908041E-4],[118,28,76,5.460636522007139E-4],[118,28,77,0.002121421492166868],[118,28,78,0.003795182526437173],[118,28,79,0.005549927714637974],[118,29,64,-0.009905504877160241],[118,29,65,-0.009903164730246872],[118,29,66,-0.009751595529290055],[118,29,67,-0.009465456653809556],[118,29,68,-0.00905003437217046],[118,29,69,-0.008500232309295827],[118,29,70,-0.0078109291754639605],[118,29,71,-0.0069780555708676174],[118,29,72,-0.005999302290036809],[118,29,73,-0.00487469455144591],[118,29,74,-0.003607032224137999],[118,29,75,-0.00220219646270774],[118,29,76,-6.69323490022361E-4],[118,29,77,9.791534189273153E-4],[118,29,78,0.002727592401326021],[118,29,79,0.004557360290332424],[118,30,64,-0.011014153060880596],[118,30,65,-0.011060407977023774],[118,30,66,-0.010941058093483924],[118,30,67,-0.010670854026278508],[118,30,68,-0.01025683129105279],[118,30,69,-0.009696048638936399],[118,30,70,-0.008985290865946906],[118,30,71,-0.008122181782035203],[118,30,72,-0.0071059346968733285],[118,30,73,-0.005937963564044476],[118,30,74,-0.004622354809489678],[118,30,75,-0.0031662002245187735],[118,30,76,-0.0015797916462276375],[118,30,77,1.2332152387922336E-4],[118,30,78,0.0019264106016483118],[118,30,79,0.0038097800505643526],[118,31,64,-0.011698005158651442],[118,31,65,-0.011790837947290947],[118,31,66,-0.011704073678624237],[118,31,67,-0.01145208109876711],[118,31,68,-0.011043360434855631],[118,31,69,-0.01047711253703451],[118,31,70,-0.009752053573054224],[118,31,71,-0.008867542389312585],[118,31,72,-0.007824359017042497],[118,31,73,-0.00662534053743225],[118,31,74,-0.005275874289357614],[118,31,75,-0.003784248767674242],[118,31,76,-0.0021618629120491208],[118,31,77,-4.2329482338114826E-4],[118,31,78,0.0014137687358685017],[118,31,79,0.0033287404025467327],[118,32,64,-0.011943868914123414],[118,32,65,-0.012080739771016742],[118,32,66,-0.012026541237369133],[118,32,67,-0.011794817251584887],[118,32,68,-0.011395243690127227],[118,32,69,-0.010829122775753916],[118,32,70,-0.010097097922400152],[118,32,71,-0.009200274930682147],[118,32,72,-0.008141015050698985],[118,32,73,-0.006923584004316305],[118,32,74,-0.005554656912488253],[118,32,75,-0.0040436794422606635],[118,32,76,-0.0024030858447622776],[118,32,77,-6.483748969795837E-4],[118,32,78,0.001201954916450426],[118,32,79,0.003126609342747548],[118,33,64,-0.011753731178414065],[118,33,65,-0.011931677415774021],[118,33,66,-0.011909660487305419],[118,33,67,-0.011700000597184358],[118,33,68,-0.011313266570236671],[118,33,69,-0.010752797024826503],[118,33,70,-0.010021130263720755],[118,33,71,-0.009121100775499227],[118,33,72,-0.008056634698390248],[118,33,73,-0.00683340160356241],[118,33,74,-0.0054593225092047434],[118,33,75,-0.00394493440597169],[118,33,76,-0.0023036119311386485],[118,33,77,-5.516471703558154E-4],[118,33,78,0.0012918111106706566],[118,33,79,0.003204957199847679],[118,34,64,-0.011145911447849743],[118,34,65,-0.011361682079115835],[118,34,66,-0.01137115242508123],[118,34,67,-0.011185077911139565],[118,34,68,-0.01081465630477604],[118,34,69,-0.010265178618606203],[118,34,70,-0.009541019778606228],[118,34,71,-0.008646694827908922],[118,34,72,-0.007587646651918357],[118,34,73,-0.006370891922191275],[118,34,74,-0.005005525139330661],[118,34,75,-0.0035030810204461204],[118,34,76,-0.0018777558296400225],[118,34,77,-1.4648858775766931E-4],[118,34,78,0.0016710965825498833],[118,34,79,0.003552885421481037],[118,35,64,-0.01015601676805448],[118,35,65,-0.010406245705409389],[118,35,66,-0.010446290804873127],[118,35,67,-0.010285073343348104],[118,35,68,-0.00993418857627672],[118,35,69,-0.009400784068297557],[118,35,70,-0.008690990735271999],[118,35,71,-0.00781092705660462],[118,35,72,-0.006767471753519669],[118,35,73,-0.005568897819026496],[118,35,74,-0.004225367750256611],[118,35,75,-0.0027492901919510546],[118,35,76,-0.0011555385457519775],[118,35,77,5.384675690615503E-4],[118,35,78,0.002312816804442972],[118,35,79,0.004145295030337638],[118,36,64,-0.008837692313780385],[118,36,65,-0.009119113982067635],[118,36,66,-0.009188739039917161],[118,36,67,-0.009053470528156127],[118,36,68,-0.008725117741581736],[118,36,69,-0.008212586439740356],[118,36,70,-0.0075236653616120135],[118,36,71,-0.006665971741948673],[118,36,72,-0.005647705401953566],[118,36,73,-0.0044782681607641265],[118,36,74,-0.003168748387625618],[118,36,75,-0.001732270863339538],[118,36,76,-1.842124563245898E-4],[118,36,77,0.0014577155591582384],[118,36,78,0.003173517410105261],[118,36,79,0.004941093539776779],[118,37,64,-0.00726316169496208],[118,37,65,-0.007572872899233947],[118,37,66,-0.007671186704794796],[118,37,67,-0.0075629024228898185],[118,37,68,-0.0072599250799328715],[118,37,69,-0.006772829418092837],[118,37,70,-0.006110952507506729],[118,37,71,-0.005283280032696482],[118,37,72,-0.004299183089703791],[118,37,73,-0.003169024614267855],[118,37,74,-0.0019046352246771512],[118,37,75,-5.196586014251951E-4],[118,37,76,9.702331472909505E-4],[118,37,77,0.0025472533723936174],[118,37,78,0.0041915429651746584],[118,37,79,0.005881339298484936],[118,38,64,-0.005521313900028314],[118,38,65,-0.005857018294015269],[118,38,66,-0.005983416459179202],[118,38,67,-0.005903224375209974],[118,38,68,-0.005628406536508189],[118,38,69,-0.00517114254609863],[118,38,70,-0.00454220693067932],[118,38,71,-0.0037518028582732206],[118,38,72,-0.0028102888104586366],[118,38,73,-0.0017287789574379547],[118,38,74,-5.196169719411601E-4],[118,38,75,8.032766528800916E-4],[118,38,76,0.0022241833984406913],[118,38,77,0.0037254909411279925],[118,38,78,0.005287721822503862],[118,38,79,0.006889685324354446],[118,39,64,-0.0036691321591088583],[118,39,65,-0.004028002591181958],[118,39,66,-0.004181156726895929],[118,39,67,-0.004129246027423139],[118,39,68,-0.003884313190258347],[118,39,69,-0.00346015172462671],[118,39,70,-0.00286891562225498],[118,39,71,-0.002121909732215716],[118,39,72,-0.001230316619379205],[118,39,73,-2.058007052121295E-4],[118,39,74,9.390106362080618E-4],[118,39,75,0.0021901690326516002],[118,39,76,0.0035321698136572704],[118,39,77,0.004947838853327324],[118,39,78,0.006418340671422485],[118,39,79,0.007923306644373154],[118,40,64,-0.0017265105950386367],[118,40,65,-0.0021041058857781372],[118,40,66,-0.002280985191538817],[118,40,67,-0.0022556651112949164],[118,40,68,-0.002040300837354597],[118,40,69,-0.0016503999104394702],[118,40,70,-0.001099523095099953],[118,40,71,-4.000380877139038E-4],[118,40,72,4.361437426781055E-4],[118,40,73,0.0013969501245634415],[118,40,74,0.0024696505712513937],[118,40,75,0.003640479076302772],[118,40,76,0.004894376603332765],[118,40,77,0.0062148528641928075],[118,40,78,0.007583966602271005],[118,40,79,0.008982423337870157],[118,41,64,2.8211673189064293E-4],[118,41,65,-1.0848732016232957E-4],[118,41,66,-3.0462482591845204E-4],[118,41,67,-3.025507836958854E-4],[118,41,68,-1.1457943076769521E-4],[118,41,69,2.4190439681936934E-4],[118,41,70,7.518419775221011E-4],[118,41,71,0.0014017794365611567],[118,41,72,0.0021791126495901004],[118,41,73,0.0030714486984182916],[118,41,74,0.004066084378670239],[118,41,75,0.005149601949646192],[118,41,76,0.006307582016735436],[118,41,77,0.0075244331487776765],[118,41,78,0.008783337559102567],[118,41,79,0.010066311922067535],[118,42,64,0.0023292317437799697],[118,42,65,0.001932188755394907],[118,42,66,0.0017223340885222564],[118,42,67,0.0017058244255939545],[118,42,68,0.0018701285561813239],[118,42,69,0.00219578308594071],[118,42,70,0.002666096544214537],[118,42,71,0.0032664584759060527],[118,42,72,0.003983559109981322],[118,42,73,0.004804722749477549],[118,42,74,0.005717355489663487],[118,42,75,0.006708507566191411],[118,42,76,0.0077645503393827765],[118,42,77,0.008870967636393286],[118,42,78,0.01001226090217548],[118,42,79,0.011171967355305644],[118,43,64,0.004387908700857731],[118,43,65,0.0039914046527647845],[118,43,66,0.0037740377826295563],[118,43,67,0.003744521210475131],[118,43,68,0.00389003743149448],[118,43,69,0.004188825841676793],[118,43,70,0.00462240085632824],[118,43,71,0.005174891145953537],[118,43,72,0.005832229057552001],[118,43,73,0.0065814509368389285],[118,43,74,0.007410109075146639],[118,43,75,0.00830579570451982],[118,43,76,0.009255779172745133],[118,43,77,0.01024675214887805],[118,43,78,0.011264691441449443],[118,43,79,0.012294828758303884],[118,44,64,0.006435711731874291],[118,44,65,0.006046658503679892],[118,44,66,0.00582818473135283],[118,44,67,0.005791674502512601],[118,44,68,0.005923942208468277],[118,44,69,0.00620071022923698],[118,44,70,0.006601524925178006],[118,44,71,0.007109127396976215],[118,44,72,0.007708609688640096],[118,44,73,0.008386678957682128],[118,44,74,0.00913103046060669],[118,44,75,0.009929829906304333],[118,44,76,0.010771305442202722],[118,44,77,0.01164344926012368],[118,44,78,0.012533828542870936],[118,44,79,0.013429505220919203],[118,45,64,0.008458817587974513],[118,45,65,0.008083554805543347],[118,45,66,0.007870057415906124],[118,45,67,0.007832442990724905],[118,45,68,0.007957061152282627],[118,45,69,0.008216908311851973],[118,45,70,0.008589387413035908],[118,45,71,0.009055712922836582],[118,45,72,0.009600032954018225],[118,45,73,0.010208656174267845],[118,45,74,0.010869384478603637],[118,45,75,0.011570952111237752],[118,45,76,0.012302571639906165],[118,45,77,0.013053586911535867],[118,45,78,0.013813232855081344],[118,45,79,0.014570501747661087],[118,46,64,0.010456367309256705],[118,46,65,0.010100120098517143],[118,46,66,0.009896773882993991],[118,46,67,0.009863170888933804],[118,46,68,0.00998508061050949],[118,46,69,0.010232583328083746],[118,46,70,0.010580770297796178],[118,46,71,0.011009186728141135],[118,46,72,0.011500921025838906],[118,46,73,0.012041795251708775],[118,46,74,0.012619657891991615],[118,46,75,0.013223779766640914],[118,46,76,0.013844353618449802],[118,46,77,0.014472097657436789],[118,46,78,0.01464898533153621],[118,46,79,0.014000042285085576],[118,47,64,0.012428240112244629],[118,47,65,0.01209492589801107],[118,47,66,0.011905790170465155],[118,47,67,0.011880312149130719],[118,47,68,0.012003549445818768],[118,47,69,0.01224250432603661],[118,47,70,0.012569804320765583],[118,47,71,0.01296318768253146],[118,47,72,0.013404562902601683],[118,47,73,0.013879165333023497],[118,47,74,0.014374812145251195],[118,47,75,0.014881256580942507],[118,47,76,0.01453531495992448],[118,47,77,0.01400399424723251],[118,47,78,0.01348391075417536],[118,47,79,0.012982090842786025],[118,48,64,0.014324004315055299],[118,48,65,0.014017315066320509],[118,48,66,0.013846574060583993],[118,48,67,0.013833758830455473],[118,48,68,0.013963094008548027],[118,48,69,0.014198394713354634],[118,48,70,0.014509706517641132],[118,48,71,0.014872838238174793],[118,48,72,0.014862409741105542],[118,48,73,0.014430936216717961],[118,48,74,0.013992521338301868],[118,48,75,0.013557082237057698],[118,48,76,0.013132665254824077],[118,48,77,0.012725937955623101],[118,48,78,0.012342584508337591],[118,48,79,0.011987604359931795],[118,49,64,0.014208790453822678],[118,49,65,0.014487665027031858],[118,49,66,0.014635315064410822],[118,49,67,0.014627482162318437],[118,49,68,0.014480914076620395],[118,49,69,0.014235070086372563],[118,49,70,0.013922604965141807],[118,49,71,0.013569784082613216],[118,49,72,0.01319746706391701],[118,49,73,0.0128220040193417],[118,49,74,0.012456042885412926],[118,49,75,0.012109246674504266],[118,49,76,0.01178891968255488],[118,49,77,0.011500541951446204],[118,49,78,0.01124821152242858],[118,49,79,0.011034994247837687],[118,50,64,0.012726629448318589],[118,50,65,0.012973153852946487],[118,50,66,0.01309470978970809],[118,50,67,0.013064951643977838],[118,50,68,0.012901646229004592],[118,50,69,0.012647472454077106],[118,50,70,0.012337772871640083],[118,50,71,0.01200091213293182],[118,50,72,0.011659271426928847],[118,50,73,0.011330160908852558],[118,50,74,0.011026648565817554],[118,50,75,0.010758304211382103],[118,50,76,0.010531857541975262],[118,50,77,0.01035176942487365],[118,50,78,0.01022071581799052],[118,50,79,0.010139983944474719],[118,51,64,0.011459231098013485],[118,51,65,0.011670449492586716],[118,51,66,0.011761607435830088],[118,51,67,0.011704540492460695],[118,51,68,0.011518098213557502],[118,51,69,0.011248102244669229],[118,51,70,0.01093256537154472],[118,51,71,0.010601989455680945],[118,51,72,0.010280362318769658],[118,51,73,0.009986078306084736],[118,51,74,0.009732780900374285],[118,51,75,0.009530125988856051],[118,51,76,0.009384464614751719],[118,51,77,0.009299444269991677],[118,51,78,0.009276528005803529],[118,51,79,0.009315430851225059],[118,52,64,0.0104327028757305],[118,52,65,0.010606171013313945],[118,52,66,0.01066297723714835],[118,52,67,0.010573441246336296],[118,52,68,0.010357538704176753],[118,52,69,0.01006409846334159],[118,52,70,0.009733738917990724],[118,52,71,0.009399102355956175],[118,52,72,0.00908584553117609],[118,52,73,0.008813559777151142],[118,52,74,0.008596618976350256],[118,52,75,0.008444953917444046],[118,52,76,0.008364751787707023],[118,52,77,0.008359079760567524],[118,52,78,0.008428431846743441],[118,52,79,0.008571198380153192],[118,53,64,0.009663337311630549],[118,53,65,0.009797216053316222],[118,53,66,0.009816221643302972],[118,53,67,0.009689487169628757],[118,53,68,0.009438137081941808],[118,53,69,0.009113818165043185],[118,53,70,0.00875964477359215],[118,53,71,0.008410367495525893],[118,53,72,0.008093348566319027],[118,53,73,0.007829472757449017],[118,53,74,0.007633992017972916],[118,53,75,0.007517302350284506],[118,53,76,0.007485651602430524],[118,53,77,0.007541777058589652],[118,53,78,0.007685471905224738],[118,53,79,0.007914079841586508],[118,54,64,0.009157929453127168],[118,54,65,0.009251052261976827],[118,54,66,0.009229440030284596],[118,54,67,0.009061384922681338],[118,54,68,0.008769161962031854],[118,54,69,0.008406999274008932],[118,54,70,0.0080203560382126],[118,54,71,0.007646024410580181],[118,54,72,0.007313081161437137],[118,54,73,0.007043780689033338],[118,54,74,0.006854387672545489],[118,54,75,0.006755947815452214],[118,54,76,0.0067549953168088836],[118,54,77,0.006854195893137118],[118,54,78,0.0070529243562820676],[118,54,79,0.007347775931367136],[118,55,64,0.008914212795681309],[118,55,65,0.008966127944216192],[118,55,66,0.008901811513184381],[118,55,67,0.008689065918426804],[118,55,68,0.008351297738360514],[118,55,69,0.007945040235039141],[118,55,70,0.007517909592936491],[118,55,71,0.0071086401486144405],[118,55,72,0.006748004156431531],[118,55,73,0.006459678697373114],[118,55,74,0.006261058000899218],[118,55,75,0.0061640096212132265],[118,55,76,0.006175573081010692],[118,55,77,0.0062985997665450716],[118,55,78,0.006532333026739988],[118,55,79,0.006872927594879089],[118,56,64,0.008921416677985025],[118,56,65,0.008932404987128304],[118,56,66,0.00882410000218723],[118,56,67,0.008564159560352133],[118,56,68,0.008177082389159278],[118,56,69,0.0077213997704014044],[118,56,70,0.007246666241166655],[118,56,71,0.006793429283037454],[118,56,72,0.006394109906943833],[118,56,73,0.006073835917290434],[118,56,74,0.005851226151047472],[118,56,75,0.005739124143679244],[118,56,76,0.0057452798304719254],[118,56,77,0.005872978048080424],[118,56,78,0.006121612756040251],[118,56,79,0.006487206050479442],[118,57,64,0.009160948037275874],[118,57,65,0.009132017053864926],[118,57,66,0.008979284555186252],[118,57,67,0.00867059147608885],[118,57,68,0.008231469710845991],[118,57,69,0.0077221199473456485],[118,57,70,0.007193792266338625],[118,57,71,0.006688692510374688],[118,57,72,0.006240817399513639],[118,57,73,0.0058767475396125455],[118,57,74,0.005616396662936841],[118,57,75,0.005473715582073556],[118,57,76,0.00545734948011449],[118,57,77,0.005571247301976615],[118,57,78,0.005815222152730846],[118,57,79,0.006185461747907278],[118,58,64,0.009607200300548105],[118,58,65,0.009540055913617961],[118,58,66,0.00934331796909209],[118,58,67,0.008985309754790317],[118,58,68,0.008492519047956672],[118,58,69,0.007926475668544666],[118,58,70,0.007339865540537549],[118,58,71,0.006776376957678498],[118,58,72,0.006271485156404887],[118,58,73,0.00585319958942743],[118,58,74,0.005542772299820466],[118,58,75,0.005355365922405001],[118,58,76,0.005300679967034202],[118,58,77,0.005383534166360199],[118,58,78,0.0056044077980528986],[118,58,79,0.005959934017329573],[118,59,64,0.010228492045399662],[118,59,65,0.01012548863782426],[118,59,66,0.009886016417567945],[118,59,67,0.009479142067295155],[118,59,68,0.008932215463670174],[118,59,69,0.00830775358121739],[118,59,70,0.007659609209201888],[118,59,71,0.007032761226783774],[118,59,72,0.006464044925388445],[118,59,73,0.005982849363573192],[118,59,74,0.0056117802277322075],[118,59,75,0.005367286785468455],[118,59,76,0.005260251632918201],[118,59,77,0.005296542052037937],[118,59,78,0.005477521908211276],[118,59,79,0.00580052313165584],[118,60,64,0.01098813790048678],[118,60,65,0.010852208231640629],[118,60,66,0.010572082785769668],[118,60,67,0.010117786395706093],[118,60,68,0.009517423148651798],[118,60,69,0.008834163260347982],[118,60,70,0.008122755844135913],[118,60,71,0.007429268077349928],[118,60,72,0.006791759034116302],[118,60,73,0.006240924349017283],[118,60,74,0.00580071026869011],[118,60,75,0.005488895749598997],[118,60,76,0.005317641362325972],[118,60,77,0.005294003865126534],[118,60,78,0.005420415411610852],[118,60,79,0.005695126458457276],[118,61,64,0.01184565397044139],[118,61,65,0.011680220086658637],[118,61,66,0.011362266173015445],[118,61,67,0.01086293792369535],[118,61,68,0.010210974695793804],[118,61,69,0.00946988335743883],[118,61,70,0.008695044800338322],[118,61,71,0.007933407502264773],[118,61,72,0.007224104149729782],[118,61,73,0.006599042315059276],[118,61,74,0.0060834678355328065],[118,61,75,0.0056964996324003975],[118,61,76,0.0054516347985695875],[118,61,77,0.005357222874961399],[118,61,78,0.00541690832644287],[118,61,79,0.005630040318127569],[118,62,64,0.012758099864140036],[118,62,65,0.012566966436211429],[118,62,66,0.012214659832574],[118,62,67,0.011673554440959136],[118,62,68,0.010972898675269675],[118,62,69,0.010176245218913114],[118,62,70,0.009339355331919845],[118,62,71,0.008509852777137046],[118,62,72,0.007727784022146154],[118,62,73,0.007026155120910139],[118,62,74,0.006431444016740896],[118,62,75,0.005964087088757932],[118,62,76,0.00563893884523879],[118,62,77,0.005465703748575003],[118,62,78,0.00544933923745978],[118,62,79,0.005590429091761943],[118,63,64,0.01368155917900855],[118,63,65,0.013468790769042368],[118,63,66,0.013086139594474192],[118,63,67,0.012507262395270162],[118,63,68,0.01176178772858076],[118,63,69,0.010913056267996454],[118,63,70,0.01001697781895957],[118,63,71,0.009121651870547781],[118,63,72,0.008267873604287651],[118,63,73,0.007489618606333737],[118,63,74,0.0068145051183408556],[118,63,75,0.00626423273491262],[118,63,76,0.005854996528479482],[118,63,77,0.005597875655304104],[118,63,78,0.00549919556857588],[118,63,79,0.00556086303558854],[118,64,64,0.014572760048316062],[118,64,65,0.014342543911233479],[118,64,66,0.01393394457303937],[118,64,67,0.013321905484111135],[118,64,68,0.012536309162504578],[118,64,69,0.01164006521115462],[118,64,70,0.010689025230982308],[118,64,71,0.00973157638385832],[118,64,72,0.008809096734691133],[118,64,73,0.007956390736966034],[118,64,74,0.007202103787263983],[118,64,75,0.006569114840402037],[118,64,76,0.006074906143090461],[118,64,77,0.005731909209870602],[118,64,78,0.005547826230145061],[118,64,79,0.005525926158708831],[118,65,64,0.015390837093940039],[118,65,65,0.015147333220881607],[118,65,66,0.014717401696446985],[118,65,67,0.014077237415580418],[118,65,68,0.01325685976467427],[118,65,69,0.012318570875514474],[118,65,70,0.011317986704344729],[118,65,71,0.010303609949145472],[118,65,72,0.009317239337870915],[118,65,73,0.008394359958001996],[118,65,74,0.007564513636629071],[118,65,75,0.006851648441500743],[118,65,76,0.006274446434541124],[118,65,77,0.005846628869727145],[118,65,78,0.005577238086502335],[118,65,79,0.005470895407465779],[118,66,64,0.01586867776170445],[118,66,65,0.015846416055943398],[118,66,66,0.015399795311849413],[118,66,67,0.014736760185941637],[118,66,68,0.01388736628267771],[118,66,69,0.012913176207848426],[118,66,70,0.011869424840840763],[118,66,71,0.0108045777518394],[118,66,72,0.009760699846027343],[118,66,73,0.008773805470625444],[118,66,74,0.00787418906873976],[118,66,75,0.007086735521766378],[118,66,76,0.006431209379421675],[118,66,77,0.005922522232802128],[118,66,78,0.005570977540800978],[118,66,79,0.005382492273107417],[118,67,64,0.015390807222646864],[118,67,65,0.015678391265149538],[118,67,66,0.015950382817361133],[118,67,67,0.015269708919694395],[118,67,68,0.014397232708871017],[118,67,69,0.013393688669415236],[118,67,70,0.012313818043980287],[118,67,71,0.011205918561522704],[118,67,72,0.01011217827278551],[118,67,73,0.009068990885374164],[118,67,74,0.008107251746592917],[118,67,75,0.007252633677808414],[118,67,76,0.00652584191894751],[118,67,77,0.005942847495290169],[118,67,78,0.005515098370548819],[118,67,79,0.005249707799717069],[118,68,64,0.015073205537166486],[118,68,65,0.015365055838217916],[118,68,66,0.01586002620306293],[118,68,67,0.015653183998351975],[118,68,68,0.014763435194485211],[118,68,69,0.013737167945103334],[118,68,70,0.012628548898484008],[118,68,71,0.011485600350873367],[118,68,72,0.010350505076309769],[118,68,73,0.009259892426213357],[118,68,74,0.00824510489994502],[118,68,75,0.007332444441938123],[118,68,76,0.006543397774374284],[118,68,77,0.005894840126172504],[118,68,78,0.005399216768840717],[118,68,79,0.005064701816877843],[118,69,64,0.014926568615493432],[118,69,65,0.015220331829884946],[118,69,66,0.01572181248887273],[118,69,67,0.015874435461987267],[118,69,68,0.01497277000622039],[118,69,69,0.013930126776130359],[118,69,70,0.012800044743201906],[118,69,71,0.01163018591937342],[118,69,72,0.01046261640375536],[118,69,73,0.00933406834814623],[118,69,74,0.008276182085084167],[118,69,75,0.007315727715979436],[118,69,76,0.006474805509412819],[118,69,77,0.005771024510406899],[118,69,78,0.005217658809921608],[118,69,79,0.004823780969360766],[118,70,64,0.014940130718526828],[118,70,65,0.015233482178571421],[118,70,66,0.015738193289773324],[118,70,67,0.01594407499788847],[118,70,68,0.015035911200413194],[118,70,69,0.013983343700140474],[118,70,70,0.012839208974876871],[118,70,71,0.011650706939501095],[118,70,72,0.010459662750331887],[118,70,73,0.00930276910844263],[118,70,74,0.0082118083390138],[118,70,75,0.007213853577478154],[118,70,76,0.006331448445410535],[118,70,77,0.005582764649284707],[118,70,78,0.004981736982890203],[118,70,79,0.004538175258733512],[118,71,64,0.01507252890735937],[118,71,65,0.015360754510106017],[118,71,66,0.015863014321410563],[118,71,67,0.015910628593221034],[118,71,68,0.015003766842309373],[118,71,69,0.013949893571597143],[118,71,70,0.012800924738286866],[118,71,71,0.011603375038561455],[118,71,72,0.010398605664108473],[118,71,73,0.009223051784121555],[118,71,74,0.008108429053283088],[118,71,75,0.007081918500922246],[118,71,76,0.006166329209578327],[118,71,77,0.005380238242003132],[118,71,78,0.004738107323717099],[118,71,79,0.0042503758329375555],[118,72,64,0.01528640178845544],[118,72,65,0.015562431887271693],[118,72,66,0.016054187776776925],[118,72,67,0.015818504868153095],[118,72,68,0.014923062654219875],[118,72,69,0.013878616340353237],[118,72,70,0.012735821468118576],[118,72,71,0.011540179682356285],[118,72,72,0.01033227867474612],[118,72,73,0.00914801043798534],[118,72,74,0.008018767142568722],[118,72,75,0.006971614005793094],[118,72,76,0.006029438578386823],[118,72,77,0.0052110759274795],[118,72,78,0.004531409244958583],[118,72,79,0.004001445456927171],[118,73,64,0.015552697224031763],[118,73,65,0.015807690045759645],[118,73,66,0.016279120835033772],[118,73,67,0.015701986921364534],[118,73,68,0.01482976783902309],[118,73,69,0.013807018150865887],[118,73,70,0.012682717864972345],[118,73,71,0.011500962004194022],[118,73,72,0.010301200016890263],[118,73,73,0.00911845122508371],[118,73,74,0.007983495619057757],[118,73,75,0.006923039370488502],[118,73,76,0.005959854497183359],[118,73,77,0.005112892170739648],[118,73,78,0.00439736921337148],[118,73,79,0.0038248273810599902],[118,74,64,0.015847997414330413],[118,74,65,0.016071892680145597],[118,74,66,0.0162212689745987],[118,74,67,0.015587976917156696],[118,74,68,0.014751846446172228],[118,74,69,0.01376401155458509],[118,74,70,0.012671326892977857],[118,74,71,0.0115160559847635],[118,74,72,0.01033611833906429],[118,74,73,0.009165309317470642],[118,74,74,0.00803349204355485],[118,74,75,0.006966760715420075],[118,74,76,0.005987574750606187],[118,74,77,0.00511486325864452],[118,74,78,0.004364099398818165],[118,74,79,0.003747344238462046],[118,75,64,0.016151912922497094],[118,75,65,0.01633395426162921],[118,75,66,0.016084476186012064],[118,75,67,0.01549867672750199],[118,75,68,0.014711947036697318],[118,75,69,0.013772596975301669],[118,75,70,0.012724905954662321],[118,75,71,0.01160887988013689],[118,75,72,0.010460514978956155],[118,75,73,0.009312029994922174],[118,75,74,0.008192065998843671],[118,75,75,0.007125853146503572],[118,75,76,0.0061353437961665334],[118,75,77,0.005239311474381884],[118,75,78,0.004453415251396819],[118,75,79,0.003790229155002472],[118,76,64,0.01636632079822031],[118,76,65,0.01628111817371965],[118,76,66,0.01597994239952344],[118,76,67,0.015454200126328779],[118,76,68,0.014730026161627052],[118,76,69,0.013852480997270775],[118,76,70,0.012862847919198499],[118,76,71,0.011798473740819465],[118,76,72,0.010693058881870459],[118,76,73,0.009576910283068722],[118,76,74,0.008477156343376018],[118,76,75,0.00741792316433101],[118,76,76,0.006420471480512299],[118,76,77,0.005503293745877185],[118,76,78,0.0046821709316489804],[118,76,79,0.003970188671631917],[118,77,64,0.016182256244140814],[118,77,65,0.016162245873066774],[118,77,66,0.015928815431502222],[118,77,67,0.015475111892136358],[118,77,68,0.014825901015666146],[118,77,69,0.01402262688242891],[118,77,70,0.013103208506573876],[118,77,71,0.012101978682281297],[118,77,72,0.011050010049309238],[118,77,73,0.009975397325197451],[118,77,74,0.008903494805051164],[118,77,75,0.007857108345458686],[118,77,76,0.006856641161293486],[118,77,77,0.005920192871911839],[118,77,78,0.00506361133561326],[118,77,79,0.004300496907092001],[118,78,64,0.01605566877471553],[118,78,65,0.016110887118527796],[118,78,66,0.015955682729619853],[118,78,67,0.015584889058834038],[118,78,68,0.015021726500266192],[118,78,69,0.01430373258408636],[118,78,70,0.013465165380561113],[118,78,71,0.01253705340783526],[118,78,72,0.011547567236309798],[118,78,73,0.010522339498361694],[118,78,74,0.009484732293749404],[118,78,75,0.008456051117762983],[118,78,76,0.007455704572027789],[118,78,77,0.006501309245715825],[118,78,78,0.005608739276635823],[118,78,79,0.004792120216023863],[118,79,64,0.015999975471208443],[118,79,65,0.016139524764116567],[118,79,66,0.016072068632741163],[118,79,67,0.015794045764133315],[118,79,68,0.015326999127778053],[118,79,69,0.014704357872038294],[118,79,70,0.013956496912000156],[118,79,71,0.013110910172823304],[118,79,72,0.012192637949580289],[118,79,73,0.011224633871108513],[118,79,74,0.010228070320322078],[118,79,75,0.009222581324222592],[118,79,76,0.008226442083323208],[118,79,77,0.007256684461061779],[118,79,78,0.006329147897728494],[118,79,79,0.005458465349063044],[118,80,64,0.015963316825299126],[118,80,65,0.01619546237231157],[118,80,66,0.0162251952187104],[118,80,67,0.01605052634770693],[118,80,68,0.015691270380200514],[118,80,69,0.015176636987339738],[118,80,70,0.014532939622763232],[118,80,71,0.013783907911655716],[118,80,72,0.012951185866944907],[118,80,73,0.01205475985029773],[118,80,74,0.011113314953535474],[118,80,75,0.010144518664290364],[118,80,76,0.009165230863182777],[118,80,77,0.008191639377037471],[118,80,78,0.007239320482183538],[118,80,79,0.006323223912099149],[118,81,64,0.0158929657846645],[118,81,65,0.016224841494623984],[118,81,66,0.016360795362962276],[118,81,67,0.016300426433351646],[118,81,68,0.016061852766718777],[118,81,69,0.015670047840751378],[118,81,70,0.015147134544081155],[118,81,71,0.014512855640092777],[118,81,72,0.01378516243973483],[118,81,73,0.012980722311818014],[118,81,74,0.012115343479835818],[118,81,75,0.011204315773541815],[118,81,76,0.010262666217607849],[118,81,77,0.009305328547003187],[118,81,78,0.008347225937566826],[118,81,79,0.007403266428783532],[118,82,64,0.015753418107873063],[118,82,65,0.016190678471634197],[118,82,66,0.016440876388159147],[118,82,67,0.016505243983069174],[118,82,68,0.01640030765908455],[118,82,69,0.016146883361564782],[118,82,70,0.015762835988658117],[118,82,71,0.015263728340322961],[118,82,72,0.014663522704978369],[118,82,73,0.013975189388484894],[118,82,74,0.013211220350889764],[118,82,75,0.012384046370177162],[118,82,76,0.011506356400697212],[118,82,77,0.010591318035135695],[118,82,78,0.00965269821088322],[118,82,79,0.008704883522428574],[118,83,64,0.015523981815216161],[118,83,65,0.016070535305777477],[118,83,66,0.01644150366897557],[118,83,67,0.016639810547602413],[118,83,68,0.01668055840658743],[118,83,69,0.01658057684830192],[118,83,70,0.016353474900408584],[118,83,71,0.016010488923331827],[118,83,72,0.01556132094457877],[118,83,73,0.015014871155140441],[118,83,74,0.01437986238884381],[118,83,75,0.013665354697379182],[118,83,76,0.012881148420070014],[118,83,77,0.012038074426187572],[118,83,78,0.011148170476546022],[118,83,79,0.010224742907952965],[118,84,64,0.015196482888258167],[118,84,65,0.01585430348219097],[118,84,66,0.016350692789795486],[118,84,67,0.016690325292802857],[118,84,68,0.016687374060635033],[118,84,69,0.01666641926434114],[118,84,70,0.01676311995546053],[118,84,71,0.016733982723448722],[118,84,72,0.016458871609467043],[118,84,73,0.016079957069029004],[118,84,74,0.015601757222128856],[118,84,75,0.01502945383407889],[118,84,76,0.014369399641100294],[118,84,77,0.013629497941579551],[118,84,78,0.012819453156948104],[118,84,79,0.011950891362648585],[118,85,64,0.014773091764947578],[118,85,65,0.015542105174598055],[118,85,66,0.016166414521755795],[118,85,67,0.016652495825736618],[118,85,68,0.016628627463998957],[118,85,69,0.01643104595444909],[118,85,70,0.01634096210972484],[118,85,71,0.01635602719607399],[118,85,72,0.016475721706056424],[118,85,73,0.016700306481921324],[118,85,74,0.01685873572134337],[118,85,75,0.016457173087583325],[118,85,76,0.01595129486213435],[118,85,77,0.015345498819804421],[118,85,78,0.014646554458040226],[118,85,79,0.013863799931709267],[118,86,64,0.014264275851583094],[118,86,65,0.01514231697831766],[118,86,66,0.01589471761180244],[118,86,67,0.01652979058213068],[118,86,68,0.016647898477538836],[118,86,69,0.01626541277148734],[118,86,70,0.015976985901198202],[118,86,71,0.015784652303826422],[118,86,72,0.015692641684420368],[118,86,73,0.015706140486318302],[118,86,74,0.01583020492162836],[118,86,75,0.016068828713438232],[118,86,76,0.016424168283831836],[118,86,77,0.01689592771210088],[118,86,78,0.01660454260757758],[118,86,79,0.015937451096834896],[118,87,64,0.013686882848948818],[118,87,65,0.014669720899905463],[118,87,66,0.015547973980391172],[118,87,67,0.016331807163190885],[118,87,68,0.01673875101614524],[118,87,69,0.01616649603498259],[118,87,70,0.015671808993309586],[118,87,71,0.015260985001662477],[118,87,72,0.014943022743556071],[118,87,73,0.01472817867539784],[118,87,74,0.014626688067053365],[118,87,75,0.014647656559130928],[118,87,76,0.014798125447816283],[118,87,77,0.015082313450528522],[118,87,78,0.015501037259066734],[118,87,79,0.01605131275471094],[118,88,64,0.013062359294736365],[118,88,65,0.0141437869482767],[118,88,66,0.015143250555156815],[118,88,67,0.016072760661393494],[118,88,68,0.016890303302278628],[118,88,69,0.016127109043900422],[118,88,70,0.015422286858458053],[118,88,71,0.014786200870070309],[118,88,72,0.01423255938972727],[118,88,73,0.013776747582044353],[118,88,74,0.013434342290765488],[118,88,75,0.013219813264125177],[118,88,76,0.013145414507467841],[118,88,77,0.01322026898414638],[118,88,78,0.013449649390246062],[118,88,79,0.01383445724783699],[118,89,64,0.012415108356188344],[118,89,65,0.013587091313694729],[118,89,66,0.01470081162362384],[118,89,67,0.015770095689983065],[118,89,68,0.016807161728993412],[118,89,69,0.016136993536402126],[118,89,70,0.015222419940520489],[118,89,71,0.014358936954502998],[118,89,72,0.01356482484662871],[118,89,73,0.012860567339127264],[118,89,74,0.012267149626366134],[118,89,75,0.011804558532183526],[118,89,76,0.0114904890821502],[118,89,77,0.01133926121117283],[118,89,78,0.011360949782190028],[118,89,79,0.011560730561786907],[118,90,64,0.011770990564009475],[118,90,65,0.013023873787051466],[118,90,66,0.01424275526720667],[118,90,67,0.015443225528048042],[118,90,68,0.016638092677861312],[118,90,69,0.01618380226979112],[118,90,70,0.015064162181290008],[118,90,71,0.013975905632573919],[118,90,72,0.012941672621928007],[118,90,73,0.011986926853146791],[118,90,74,0.011138030325165024],[118,90,75,0.010420535438779441],[118,90,76,0.009857699467450902],[118,90,77,0.009469225635411199],[118,90,78,0.009270234452929774],[118,90,79,0.009270468379936555],[118,91,64,0.011155970859460592],[118,91,65,0.01247873776091366],[118,91,66,0.01379178713990548],[118,91,67,0.015112401510828087],[118,91,68,0.01645426043654611],[118,91,69,0.016253970025487823],[118,91,70,0.014938128506760472],[118,91,71,0.013632418156751458],[118,91,72,0.01236355824138567],[118,91,73,0.011161789057766918],[118,91,74,0.010058720631227971],[118,91,75,0.009085413739869645],[118,91,76,0.008270698697953056],[118,91,77,0.007639736678709189],[118,91,78,0.007212827716303821],[118,91,79,0.007004468900438324],[118,92,64,0.010594915029687046],[118,92,65,0.011975495864402982],[118,92,66,0.013370134576829706],[118,92,67,0.0147977155319889],[118,92,68,0.016273042770704533],[118,92,69,0.01633347056445127],[118,92,70,0.01483419906406128],[118,92,71,0.013322815967175897],[118,92,72,0.01182977958029741],[118,92,73,0.010389825035491358],[118,92,74,0.009039588822711254],[118,92,75,0.007815479704090918],[118,92,76,0.006751802029157894],[118,92,77,0.0058791367741617044],[118,92,78,0.0052229849424123035],[118,92,79,0.00480267729054897],[118,93,64,0.010110538330368202],[118,93,65,0.011536164014781069],[118,93,66,0.012998603758691647],[118,93,67,0.014518238279766645],[118,93,68,0.016111214142464716],[118,93,69,0.016408457264054613],[118,93,70,0.014742018181559265],[118,93,71,0.013040808025095094],[118,93,72,0.011338634350760336],[118,93,73,0.00967437589678776],[118,93,74,0.008089388754583432],[118,93,75,0.006625172056084999],[118,93,76,0.005321299777310726],[118,93,77,0.004213624519973728],[118,93,78,0.00333275840391695],[118,93,79,0.002702835487995538],[118,94,64,0.009722508838454096],[118,94,65,0.011180106418397525],[118,94,66,0.012695782417521605],[118,94,67,0.014291295601012225],[118,94,68,0.01598431312862436],[118,94,69,0.01646578535900712],[118,94,70,0.014651386194057708],[118,94,71,0.0127797125627896],[118,94,72,0.01088749342337382],[118,94,73,0.009017341400229898],[118,94,74,0.007214950206311073],[118,94,75,0.005526563662009629],[118,94,76,0.003996723475362191],[118,94,77,0.0026663021712787474],[118,94,78,0.0015708267888073634],[118,94,79,7.390982103224498E-4],[118,95,64,0.009446707839888867],[118,95,65,0.01092333382126713],[118,95,66,0.012477390344948689],[118,95,67,0.014131885175200268],[118,95,68,0.015906140796703203],[118,95,69,0.01649341388734222],[118,95,70,0.014552542432877348],[118,95,71,0.012532601781359124],[118,95,72,0.010472788773951917],[118,95,73,0.008418994385085005],[118,95,74,0.006420805401859925],[118,95,75,0.004528788628592992],[118,95,76,0.0027920653212736533],[118,95,77,0.001256182744522504],[118,95,78,-3.871106098250756E-5],[118,95,79,-0.00105938400412297],[118,96,64,0.009294649336742487],[118,96,65,0.010777957093931981],[118,96,66,0.012355779756463837],[118,96,67,0.014052235483461222],[118,96,68,0.01588839191658312],[118,96,69,0.016480685608592824],[118,96,70,0.014436337827636703],[118,96,71,0.012292348154000557],[118,96,72,0.010089914950165261],[118,96,73,0.007877720169624255],[118,96,74,0.005708751128718461],[118,96,75,0.0036374145244937807],[118,96,76,0.001716950911396383],[118,96,77,-2.8429937937024567E-6],[118,96,78,-0.001477577645895475],[118,96,79,-0.002669913935081686],[118,97,64,0.009273060554068027],[118,97,65,0.01075179803544593],[118,97,66,0.012339587372183446],[118,97,67,0.014061508874747778],[118,97,68,0.015940420715452028],[118,97,69,0.016418483315764176],[118,97,70,0.014294295703384165],[118,97,71,0.01205157110995108],[118,97,72,0.009733043050168732],[118,97,73,0.007389680144592793],[118,97,74,0.005077345937789604],[118,97,75,0.0028537594673308598],[118,97,76,7.757652666986292E-4],[118,97,77,-0.0011030793852883764],[118,97,78,-0.002734593020131015],[118,97,79,-0.004077728244042341],[118,98,64,0.009383625138186615],[118,98,65,0.010848159096430525],[118,98,66,0.012433539895936298],[118,98,67,0.014165650361580205],[118,98,68,0.016069142725931816],[118,98,69,0.016299261106267164],[118,98,70,0.014118559483964021],[118,98,71,0.011802482983598938],[118,98,72,0.009394846295611511],[118,98,73,0.0069483988620442924],[118,98,74,0.00452134195711777],[118,98,75,0.0021741538516417036],[118,98,76,-3.326782682168875E-5],[118,98,77,-0.0020441383195028908],[118,98,78,-0.0038069852168929907],[118,98,79,-0.00527750873942019],[118,99,64,0.009622890564127528],[118,99,65,0.01106575355036844],[118,99,66,0.012638414409211174],[118,99,67,0.014367383620683674],[118,99,68,0.01627907413092827],[118,99,69,0.016116949310207053],[118,99,70,0.013901726130662423],[118,99,71,0.011536633214833388],[118,99,72,0.009066136365331047],[118,99,73,0.006544273985391979],[118,99,74,0.004031050899692665],[118,99,75,0.0015891465222882858],[118,99,76,-7.190531301439347E-4],[118,99,77,-0.0028340909939510535],[118,99,78,-0.004701734404569768],[118,99,79,-0.006274923650645735],[118,100,64,0.009982341109881802],[118,100,65,0.011398797484906928],[118,100,66,0.012951155043940924],[118,100,67,0.014666355528586101],[118,100,68,0.016572509873295043],[118,100,69,0.015866731897850875],[118,100,70,0.013636564254726334],[118,100,71,0.011244549880890142],[118,100,72,0.00873540973379916],[118,100,73,0.006164008527266497],[118,100,74,0.0035916438891270895],[118,100,75,0.0010826552244968823],[118,100,76,-0.0012986378717482086],[118,100,77,-0.0034906587375465813],[118,100,78,-0.005436950308932826],[118,100,79,-0.007088198248243931],[118,101,64,0.010447457740152778],[118,101,65,0.011835761381528977],[118,101,66,0.013363316571477645],[118,101,67,0.015057270850413187],[118,101,68,0.016947350175486903],[118,101,69,0.015547521673099262],[118,101,70,0.013318777180941441],[118,101,71,0.01091876857136736],[118,101,72,0.008392111660872493],[118,101,73,0.005794070712543],[118,101,74,0.003186759933681292],[118,101,75,6.356693061304111E-4],[118,101,76,-0.0017934750989432261],[118,101,77,-0.0040375071105010815],[118,101,78,-0.006038264476400445],[118,101,79,-0.007744673562489373],[118,102,64,0.010986330738653488],[118,102,65,0.012344296790710986],[118,102,66,0.013842256869821889],[118,102,67,0.015507323858087799],[118,102,68,0.017196166599503366],[118,102,69,0.01519217512225882],[118,102,70,0.012981078617304022],[118,102,71,0.010591728453333058],[118,102,72,0.008068237814789726],[118,102,73,0.005465800224402563],[118,102,74,0.002846824470593425],[118,102,75,2.7739729609309793E-4],[118,102,76,-0.0021759157423229657],[118,102,77,-0.004448921781872775],[118,102,78,-0.006482296013626496],[118,102,79,-0.008223713313253589],[118,103,64,0.011560756452214292],[118,103,65,0.012883680545256807],[118,103,66,0.01434491034678751],[118,103,67,0.015971291582960994],[118,103,68,0.016814815784866547],[118,103,69,0.014849834965013894],[118,103,70,0.012674357349368882],[118,103,71,0.0103158850413895],[118,103,72,0.007817567486646044],[118,103,73,0.005233980537966956],[118,103,74,0.002627223176553255],[118,103,75,6.334343299603289E-5],[118,103,76,-0.0023908958959408407],[118,103,77,-0.004670902089778045],[118,103,78,-0.006716779208621347],[118,103,79,-0.008475488899721103],[118,104,64,0.012138703542295326],[118,104,65,0.01341993221840734],[118,104,66,0.014835571694284035],[118,104,67,0.01641198836567416],[118,104,68,0.01646958299889125],[118,104,69,0.014560104452368676],[118,104,70,0.012439185672725481],[118,104,71,0.010132623415626596],[118,104,72,0.007682112507396218],[118,104,73,0.0051410219865012955],[118,104,74,0.0025704876542061873],[118,104,75,3.5832667581971316E-5],[118,104,76,-0.002396673133857919],[118,104,77,-0.00466270542168516],[118,104,78,-0.006702420288207416],[118,104,79,-0.00846262400098],[118,105,64,0.012695671758666923],[118,105,65,0.013927146529370545],[118,105,66,0.015287195575446734],[118,105,67,0.016801523550236886],[118,105,68,0.01618897783782441],[118,105,69,0.014351889745322106],[118,105,70,0.012304710114107605],[118,105,71,0.010071190982679917],[118,105,72,0.007691082797422834],[118,105,73,0.0052159485911283604],[118,105,74,0.00270529041897672],[118,105,75,2.2299966094418112E-4],[118,105,76,-0.0021658581272777284],[118,105,77,-0.004397914063106081],[118,105,78,-0.006414013661717156],[118,105,79,-0.00816137353149577],[118,106,64,0.013216251705317327],[118,106,65,0.014388970889770867],[118,106,66,0.01568278271807326],[118,106,67,0.017122584009231705],[118,106,68,0.01599036207250209],[118,106,69,0.014242351370417836],[118,106,70,0.012287723813584773],[118,106,71,0.010147887399265636],[118,106,72,0.007860186310433248],[118,106,73,0.005473796759693431],[118,106,74,0.0030459277964719504],[118,106,75,6.383385384877475E-4],[118,106,76,-0.001685817613905638],[118,106,77,-0.003864812128063266],[118,106,78,-0.0058408151056405355],[118,106,79,-0.007562015812587736],[118,107,64,0.013696096978141151],[118,107,65,0.014800492364773855],[118,107,66,0.016017170051917645],[118,107,67,0.017321259248451255],[118,107,68,0.015878396172421434],[118,107,69,0.014235485239854918],[118,107,70,0.012391387108431145],[118,107,71,0.010364925509441701],[118,107,72,0.008190626978454879],[118,107,73,0.005914742991631836],[118,107,74,0.0035915665509175204],[118,107,75,0.0012800544019728637],[118,107,76,-9.592347997516547E-4],[118,107,77,-0.0030668769317432564],[118,107,78,-0.004986984883498406],[118,107,79,-0.006669269362248856],[118,108,64,0.01414431090705635],[118,108,65,0.015170536401361035],[118,108,66,0.016299227352481543],[118,108,67,0.01717519292029283],[118,108,68,0.01584309810948307],[118,108,69,0.014320330532851444],[118,108,70,0.012603593593424407],[118,108,71,0.010708960592025167],[118,108,72,0.008667798026669943],[118,108,73,0.006522958086144357],[118,108,74,0.004325251930819262],[118,108,75,0.0021302145374582754],[118,108,76,-4.828940516140435E-6],[118,108,77,-0.002023386175100533],[118,108,78,-0.0038721017338350996],[118,108,79,-0.0055027347443826116],[118,109,64,0.014586249930324004],[118,109,65,0.015524379461509455],[118,109,66,0.016554462630796497],[118,109,67,0.01706642140082362],[118,109,68,0.015857512030372944],[118,109,69,0.014468801971943519],[118,109,70,0.012894979167846972],[118,109,71,0.011149285444598879],[118,109,72,0.009259668246884624],[118,109,73,0.007265185556422104],[118,109,74,0.005212675004111723],[118,109,75,0.0031536974189736214],[118,109,76,0.0011417642837701397],[118,109,77,-7.701422103999656E-4],[118,109,78,-0.002531748594835694],[118,109,79,-0.0040973618936609845],[118,110,64,0.015066745451068267],[118,110,65,0.015906877509995438],[118,110,66,0.016828038311681313],[118,110,67,0.01694919091172217],[118,110,68,0.01587498459690238],[118,110,69,0.014633144241343501],[118,110,70,0.013216571792701859],[118,110,71,0.011635689039757731],[118,110,72,0.009914859019412116],[118,110,73,0.008089042140957669],[118,110,74,0.006200697326096761],[118,110,75,0.004296937757009081],[118,110,76,0.0024269501102973435],[118,110,77,6.396854362268827E-4],[118,110,78,-0.0010181708750100253],[118,110,79,-0.002503943310118669],[118,111,64,0.01564898361102738],[118,111,65,0.0163815236063303],[118,111,66,0.01718381215211175],[118,111,67,0.016759243713684716],[118,111,68,0.01583080436747071],[118,111,69,0.014748236307637464],[118,111,70,0.013502962276810079],[118,111,71,0.0121026748611531],[118,111,72,0.010568065027832857],[118,111,73,0.008929764880376516],[118,111,74,0.007225514106207697],[118,111,75,0.005497558949250736],[118,111,76,0.003790291891366608],[118,111,77,0.0021481395735037418],[118,111,78,6.137058350744904E-4],[118,111,79,-7.738238971149125E-4],[118,112,64,0.01638566388959627],[118,112,65,0.017002509448884488],[118,112,66,0.017101204422543467],[118,112,67,0.01644123903050277],[118,112,68,0.015670049312926124],[118,112,69,0.014760309382765823],[118,112,70,0.013702302501233705],[118,112,71,0.01250109988114604],[118,112,72,0.011173632951801656],[118,112,73,0.009745957686535222],[118,112,74,0.008250719533475224],[118,112,75,0.006724826918556463],[118,112,76,0.005207340711365843],[118,112,77,0.003737586462523794],[118,112,78,0.002353495639838093],[118,112,79,0.0010901815136274244],[118,113,64,0.017304739389772637],[118,113,65,0.01691560780575835],[118,113,66,0.016471235563977015],[118,113,67,0.015962643864435442],[118,113,68,0.015359777927062506],[118,113,69,0.014636621941207099],[118,113,70,0.01378267804362098],[118,113,71,0.012800514708575954],[118,113,72,0.011703217591295135],[118,113,73,0.010512008997938041],[118,113,74,0.009254043486474251],[118,113,75,0.007960386605355663],[118,113,76,0.006664183273441881],[118,113,77,0.005399021798306981],[118,113,78,0.004197499024206605],[118,113,79,0.003089991599331727],[118,114,64,0.016234275860170292],[118,114,65,0.015962925230442633],[118,114,66,0.01566053076354495],[118,114,67,0.015310587848372059],[118,114,68,0.014885669610066952],[118,114,69,0.014361698472869033],[118,114,70,0.01372776650760136],[118,114,71,0.012984076979487225],[118,114,72,0.012139805070600545],[118,114,73,0.011211102904931719],[118,114,74,0.010219255253443587],[118,114,75,0.00918899187615513],[118,114,76,0.00814696203310349],[118,114,77,0.007120376268714962],[118,114,78,0.006135820147526972],[118,114,79,0.005218244196546462],[118,115,64,0.014976215443982829],[118,115,65,0.01483267067230169],[118,115,66,0.014675292350812849],[118,115,67,0.014488948245858887],[118,115,68,0.014249322105167763],[118,115,69,0.013934884058675517],[118,115,70,0.013534691999878798],[118,115,71,0.013046744805691858],[118,115,72,0.012476279180012892],[118,115,73,0.011834185990428616],[118,115,74,0.01113555127321157],[118,115,75,0.010398326740341437],[118,115,76,0.009642134277402414],[118,115,77,0.008887208575142195],[118,115,78,0.00815348169259408],[118,115,79,0.0074598130086323605],[118,116,64,0.013565083961649583],[118,116,65,0.013548042519482266],[118,116,66,0.01353608215257801],[118,116,67,0.013515538171977405],[118,116,68,0.013465640657353254],[118,116,69,0.013367977495374876],[118,116,70,0.013211943838770373],[118,116,71,0.012993519489897864],[118,116,72,0.012714021835252767],[118,116,73,0.012378953380966317],[118,116,74,0.011996947805554475],[118,116,75,0.011578818184230314],[118,116,76,0.01113671077528487],[118,116,77,0.01068336749518697],[118,116,78,0.010231499947029248],[118,116,79,0.00979327760888879],[118,117,64,0.012038249236551689],[118,117,65,0.012143871963739823],[118,117,66,0.012274966184654946],[118,117,67,0.012419400504243136],[118,117,68,0.012560321226491675],[118,117,69,0.012682945114089898],[118,117,70,0.012777361401371168],[118,117,71,0.012837739130726734],[118,117,72,0.012861548951999592],[118,117,73,0.012848854943227227],[118,117,74,0.012801679074329607],[118,117,75,0.012723440752159023],[118,117,76,0.012618473702049347],[118,117,77,0.012491622258997456],[118,117,78,0.01234791896226744],[118,117,79,0.01219234517213327],[118,118,64,0.010441789560582037],[118,118,65,0.010663779914153503],[118,118,66,0.010932776745336636],[118,118,67,0.011238209759195764],[118,118,68,0.011567429909135753],[118,118,69,0.011909717277770855],[118,118,70,0.01225618687873354],[118,118,71,0.012599424627143314],[118,118,72,0.012933182945030527],[118,118,73,0.013252122500457316],[118,118,74,0.013551601393978832],[118,118,75,0.01382751299970604],[118,118,76,0.0140761735636504],[118,118,77,0.014294260560193577],[118,118,78,0.014478802709347162],[118,118,79,0.014627222464035167],[118,119,64,0.008827707628730714],[118,119,65,0.009157460405598677],[118,119,66,0.009556494066107457],[118,119,67,0.010015784027164675],[118,119,68,0.010527080554477673],[118,119,69,0.011084069391365792],[118,119,70,0.011679187577357523],[118,119,71,0.012303679483356322],[118,119,72,0.012947762977495298],[118,119,73,0.013600818885105352],[118,119,74,0.014251603758479989],[118,119,75,0.014888485939368146],[118,119,76,0.015499704868169597],[118,119,77,0.016073653569180238],[118,119,78,0.0165991842213984],[118,119,79,0.0170659367099512],[118,120,64,0.0072512776777468755],[118,120,65,0.007678092489549441],[118,120,66,0.008196749491590534],[118,120,67,0.00879970888429698],[118,120,68,0.00948321239985315],[118,120,69,0.010245589114763663],[118,120,70,0.01108084928053726],[118,120,71,0.011979144711821986],[118,120,72,0.012927394005623531],[118,120,73,0.013909909588313698],[118,120,74,0.01490902534147986],[118,120,75,0.015905723594261463],[118,120,76,0.01688026031225556],[118,120,77,0.01781278736149855],[118,120,78,0.01736609470768935],[118,120,79,0.016646068079242814],[118,121,64,0.0057685276170260985],[118,121,65,0.006279882414835868],[118,121,66,0.006905451987265513],[118,121,67,0.007639075036834651],[118,121,68,0.008481469399415706],[118,121,69,0.009435731331971333],[118,121,70,0.010497642064316156],[118,121,71,0.011656510033270786],[118,121,72,0.01289623558738142],[118,121,73,0.014196357713418513],[118,121,74,0.015533080327026787],[118,121,75,0.016880275770562513],[118,121,76,0.017727132122686114],[118,121,77,0.01651872673398884],[118,121,78,0.015380440851434989],[118,121,79,0.014338278475138334],[118,122,64,0.004433857766746267],[118,122,65,0.005015737736396716],[118,122,66,0.005733539609751759],[118,122,67,0.006582331297406469],[118,122,68,0.007567182775727992],[118,122,69,0.00869596230020788],[118,122,70,0.00996635984966709],[118,122,71,0.01136708247841953],[118,122,72,0.012879331350065517],[118,122,73,0.014478242889213783],[118,122,74,0.016134290461945946],[118,122,75,0.017814643154440025],[118,122,76,0.016489427379392584],[118,122,77,0.014943586776927902],[118,122,78,0.01347675617847758],[118,122,79,0.012122416758479538],[118,123,64,0.0032977976555846793],[118,123,65,0.003935074830427215],[118,123,66,0.0047288574200147334],[118,123,67,0.0056752543463807524],[118,123,68,0.006783458187697825],[118,123,69,0.008065994279323117],[118,123,70,0.009522534864756493],[118,123,71,0.011141413405997001],[118,123,72,0.012901479941357853],[118,123,73,0.014773904749266901],[118,123,74,0.016723925693387588],[118,123,75,0.017215851147177053],[118,123,76,0.015311391171623463],[118,123,77,0.01345051090322823],[118,123,78,0.0116755533281141],[118,123,79,0.010027052027154001],[118,124,64,0.0024049021777310937],[118,124,65,0.003081761144268295],[118,124,66,0.003934163174377202],[118,124,67,0.004959036592781816],[118,124,68,0.006169368779216519],[118,124,69,0.007582111824890857],[118,124,70,0.00919892808851924],[118,124,71,0.011007984865677568],[118,124,72,0.012986148220780732],[118,124,73,0.015101111535892251],[118,124,74,0.017313453228315966],[118,124,75,0.016383670422237376],[118,124,76,0.014195555141721782],[118,124,77,0.012049450883707066],[118,124,78,0.009994306170619981],[118,124,79,0.008077137645167508],[118,125,64,0.0017917882660468847],[118,125,65,0.0024921933686134095],[118,125,66,0.003385261991413154],[118,125,67,0.0044684933186342],[118,125,68,0.0057582552507872255],[118,125,69,0.007275590817268099],[118,125,70,0.00902409664907051],[118,125,71,0.010991956152322256],[118,125,72,0.013154427383654911],[118,125,73,0.015476254341405489],[118,125,74,0.017913995325647202],[118,125,75,0.015577272860370334],[118,125,76,0.013142710958932262],[118,125,77,0.010747607932801762],[118,125,78,0.008446776365902908],[118,125,79,0.006293021314836264],[118,126,64,0.0014853131048371045],[118,126,65,0.00219351258785774],[118,126,66,0.0031092710644176767],[118,126,67,0.004230390167627481],[118,126,68,0.005576133981140711],[118,126,69,0.00717121119364555],[118,126,70,0.009021039057530086],[118,126,71,0.011113971319412323],[118,126,72,0.013424032647448292],[118,126,73,0.01591356745488933],[118,126,74,0.017406191337353848],[118,126,75,0.01479087599411285],[118,126,76,0.012151888922806109],[118,126,77,0.00954911287197643],[118,126,78,0.007042388255450611],[118,126,79,0.004689513610647628],[118,127,64,0.0015008947815863467],[118,127,65,0.002201957341477041],[118,127,66,0.003123015368986375],[118,127,67,0.004261891923505179],[118,127,68,0.005640214117150961],[118,127,69,0.007285864250484708],[118,127,70,0.009205919069489097],[118,127,71,0.011389028344599053],[118,127,72,0.013808347070695197],[118,127,73,0.016424375239811943],[118,127,74,0.01678539303542505],[118,127,75,0.014018532852236034],[118,127,76,0.011220359192857984],[118,127,77,0.008454742893091323],[118,127,78,0.0057856526270006646],[118,127,79,0.003275015729575374],[118,128,64,0.0018409761619715946],[118,128,65,0.002521355415021484],[118,128,66,0.0034315552031349388],[118,128,67,0.004569133415421019],[118,128,68,0.005957524448146328],[118,128,69,0.00762725528961769],[118,128,70,0.009586868882503445],[118,128,71,0.011825410568797587],[118,128,72,0.014315510017400347],[118,128,73,0.01701636592640592],[118,128,74,0.016127005112916475],[118,128,75,0.013254411008476791],[118,128,76,0.010343655751148127],[118,128,77,0.007461675217188802],[118,128,78,0.004675639842937061],[118,128,79,0.002050707147094299],[118,129,64,0.0024936326663785907],[118,129,65,0.003141755073520492],[118,129,66,0.0040268462932289],[118,129,67,0.005145913286564295],[118,129,68,0.006523650784857786],[118,129,69,0.008192702292581166],[118,129,70,0.010162872298560178],[118,129,71,0.012423680962136596],[118,129,72,0.014947550724938757],[118,129,73,0.01769289266266656],[118,129,74,0.015426546180607197],[118,129,75,0.01249307872062106],[118,129,76,0.009515623193517718],[118,129,77,0.006563277915396902],[118,129,78,0.0037055027771659985],[118,129,79,0.0010097938051207818],[118,130,64,0.003431324528905422],[118,130,65,0.004038196352721386],[118,130,66,0.004886533102684476],[118,130,67,0.005972511268552049],[118,130,68,0.007321584473681229],[118,130,69,0.008968031224397016],[118,130,70,0.010922728405371786],[118,130,71,0.013175739705285783],[118,130,72,0.015699567380874493],[118,130,73,0.017519018781142762],[118,130,74,0.014682450807700897],[118,130,75,0.011729798102192055],[118,130,76,0.008728486435352734],[118,130,77,0.005748938131591335],[118,130,78,0.0028620499611376055],[118,130,79,1.3681739759691312E-4],[118,131,64,0.004609794031373379],[118,131,65,0.0051696229345677405],[118,131,66,0.005972875891893146],[118,131,67,0.007014629517374403],[118,131,68,0.008320682593616579],[118,131,69,0.009926568489967752],[118,131,70,0.011844096259582135],[118,131,71,0.014063945513196245],[118,131,72,0.01655895206383094],[118,131,73,0.016712232555905333],[118,131,74,0.01389655420569214],[118,131,75,0.010960825276513405],[118,131,76,0.007972943409012589],[118,131,77,0.00500392792110379],[118,131,78,0.0021253692977675803],[118,131,79,-5.929737385686795E-4],[118,132,64,0.005967048513230773],[118,132,65,0.006477867354315153],[118,132,66,0.007231736295620532],[118,132,67,0.008222374768987219],[118,132,68,0.009475648348753677],[118,132,69,0.01102813040991691],[118,132,70,0.012892511374614715],[118,132,71,0.015060182123970327],[118,132,72,0.01750453346907601],[118,132,73,0.015843129559961304],[118,132,74,0.01307471319838075],[118,132,75,0.010183872043402833],[118,132,76,0.00723844235987255],[118,132,77,0.004309474996875814],[118,132,78,0.0014686736517926428],[118,132,79,-0.0012140186995037827],[118,133,64,0.0074153064833426124],[118,133,65,0.007878181601319067],[118,133,66,0.008581695163122724],[118,133,67,0.009517951206748492],[118,133,68,0.010712750915225026],[118,133,69,0.012203692800439037],[118,133,70,0.01400442413421444],[118,133,71,0.016107201877844767],[118,133,72,0.017472155742477406],[118,133,73,0.014953935455689559],[118,133,74,0.012250541959055464],[118,133,75,0.009423361946557166],[118,133,76,0.00653977853107093],[118,133,77,0.0036704665101995023],[118,133,78,8.868297149811101E-4],[118,133,79,-0.0017414130242290522],[118,134,64,0.00884989206073132],[118,134,65,0.009266313795890664],[118,134,66,0.009919271582791335],[118,134,67,0.010798987130138752],[118,134,68,0.011931148916624114],[118,134,69,0.013354501100277085],[118,134,70,0.015083832108637204],[118,134,71,0.01711250063673752],[118,134,72,0.016568865068653557],[118,134,73,0.01412775615604676],[118,134,74,0.01150119434455936],[118,134,75,0.008749692212698935],[118,134,76,0.005939833638957548],[118,134,77,0.003141576319496208],[118,134,78,4.2569642012375467E-4],[118,134,79,-0.0021386180966159636],[118,135,64,0.010182457800477846],[118,135,65,0.010554109963307563],[118,135,66,0.011156838469631914],[118,135,67,0.011978741988389035],[118,135,68,0.013045407868935155],[118,135,69,0.014396924818484001],[118,135,70,0.016049470271081622],[118,135,71,0.0179128663235704],[118,135,72,0.015792032776686563],[118,135,73,0.013435028028109145],[118,135,74,0.010892192763698414],[118,135,75,0.008222843573743055],[118,135,76,0.005492455867127943],[118,135,77,0.0027699813604163985],[118,135,78,1.2530709050873715E-4],[118,135,79,-0.0023731375237933208],[118,136,64,0.011344098755424413],[118,136,65,0.011672928854523923],[118,136,66,0.012226328208970256],[118,136,67,0.012990089390132296],[118,136,68,0.013989756616110259],[118,136,69,0.015266996540012344],[118,136,70,0.016839647753379646],[118,136,71,0.017231466412192354],[118,136,72,0.015197359004069055],[118,136,73,0.012927718374785761],[118,136,74,0.010471310685325573],[118,136,75,0.007885965024789037],[118,136,76,0.005235779751942186],[118,136,77,0.0025884619687265207],[118,136,78,1.2807027568455339E-5],[118,136,79,-0.0024236754416840952],[118,137,64,0.01228526394732048],[118,137,65,0.012573478488861858],[118,137,66,0.013078986684072069],[118,137,67,0.013785172071157056],[118,137,68,0.014717627518264513],[118,137,69,0.015919829234693865],[118,137,70,0.01741154120165073],[118,137,71,0.016769127631133543],[118,137,72,0.01482247563690594],[118,137,73,0.012640351841482074],[118,137,74,0.010269672713236531],[118,137,75,0.0077665253236905325],[118,137,76,0.005193404577866979],[118,137,77,0.002616581132359147],[118,137,78,1.0360682832879435E-4],[118,137,79,-0.0022790359398324887],[118,138,64,0.012976080823008178],[118,138,65,0.013226063063874622],[118,138,66,0.013685531476106698],[118,138,67,0.0143354514868934],[118,138,68,0.015201578052075015],[118,138,69,0.016329397464853627],[118,138,70,0.017740829801502427],[118,138,71,0.016548238308257066],[118,138,72,0.014687597408090468],[118,138,73,0.012590791148438304],[118,138,74,0.01030265018402117],[118,138,75,0.007877305139156078],[118,138,76,0.005375461884202503],[118,138,77,0.002861803967753117],[118,138,78,4.025289281711337E-4],[118,138,79,-0.0019369751866015604],[118,139,64,0.013407094908844444],[118,139,65,0.01362124247098148],[118,139,66,0.014036716488131996],[118,139,67,0.014632154284003307],[118,139,68,0.015433596068158513],[118,139,69,0.016488684709312196],[118,139,70,0.01782167414140494],[118,139,71,0.016573354463348785],[118,139,72,0.014795888537305226],[118,139,73,0.012780770297132026],[118,139,74,0.01057055060706213],[118,139,75,0.008217228372141887],[118,139,76,0.005779570848279994],[118,139,77,0.003320556459725482],[118,139,78,9.049467142957622E-4],[118,139,79,-0.0014030065739405566],[118,140,64,0.013590426872372498],[118,140,65,0.01377090663939405],[118,140,66,0.014144305216850818],[118,140,67,0.014687117865587563],[118,140,68,0.015425790898611954],[118,140,69,0.016410198959030984],[118,140,70,0.017667041010893926],[118,140,71,0.01683107545179558],[118,140,72,0.015133543008735472],[118,140,73,0.013196178485573364],[118,140,74,0.011059099351033438],[118,140,75,0.008772031255641953],[118,140,76,0.006391680382062781],[118,140,77,0.003979222563749369],[118,140,78,0.0015979155990560618],[118,140,79,-6.89159176445849E-4],[118,141,64,0.013561349221870644],[118,141,65,0.01370976694025447],[118,141,66,0.014042454892897488],[118,141,67,0.014534037248839431],[118,141,68,0.015211472479507345],[118,141,69,0.016126858699117085],[118,141,70,0.01730937617872602],[118,141,71,0.017289599020552025],[118,141,72,0.015669576650210203],[118,141,73,0.013807093039481199],[118,141,74,0.011739712054673048],[118,141,75,0.009514767909305607],[118,141,76,0.007186796844769384],[118,141,77,0.004815078825938149],[118,141,78,0.0024612954859035865],[118,141,79,1.87310207814493E-4],[118,142,64,0.013380284921800262],[118,142,65,0.01349726691779127],[118,142,66,0.013789513732383643],[118,142,67,0.014230115422524224],[118,142,68,0.014846620648009868],[118,142,69,0.01569325137341165],[118,142,70,0.016801627165124712],[118,142,71,0.01789795386533759],[118,142,72,0.016355329228610747],[118,142,73,0.014567559724110604],[118,142,74,0.012569556301198982],[118,142,75,0.010406151087557856],[118,142,76,0.00812959633363906],[118,142,77,0.005797165729271608],[118,142,78,0.0034688641041078047],[118,142,79,0.0012052511973900957],[118,143,64,0.013120410478992905],[118,143,65,0.01320551687894889],[118,143,66,0.013456327198994856],[118,143,67,0.01384478601522353],[118,143,68,0.01439907770612496],[118,143,69,0.01517536041525156],[118,143,70,0.01620757853968914],[118,143,71,0.017509118660388734],[118,143,72,0.0171326651156991],[118,143,73,0.015422930382387238],[118,143,74,0.013497938051180726],[118,143,75,0.011399901620375855],[118,143,76,0.009178656093617498],[118,143,77,0.006889327028721188],[118,143,78,0.004590099306592872],[118,143,79,0.0023400910751257076],[118,144,64,0.012814296423719573],[118,144,65,0.012867333708551783],[118,144,66,0.013075930223113203],[118,144,67,0.013411348013127126],[118,144,68,0.013902447805386615],[118,144,69,0.014607077004786062],[118,144,70,0.015561339296606889],[118,144,71,0.01678111529814695],[118,144,72,0.017967432792635723],[118,144,73,0.016339263202986815],[118,144,74,0.014491315180576387],[118,144,75,0.012463079196610789],[118,144,76,0.01030184571778655],[118,144,77,0.008060450565270971],[118,144,78,0.005795110498934843],[118,144,79,0.0035633542214572765],[118,145,64,0.012480037677116921],[118,145,65,0.012501425175796575],[118,145,66,0.012667690891162877],[118,145,67,0.01294994621949872],[118,145,68,0.01337776829650792],[118,145,69,0.014010397869322682],[118,145,70,0.01488588693966567],[118,145,71,0.016022480880280496],[118,145,72,0.017421105597530982],[118,145,73,0.017290921359108768],[118,145,74,0.01552334848044855],[118,145,75,0.013568781111282237],[118,145,76,0.011471857066567068],[118,145,77,0.009282995750884284],[118,145,78,0.007056308270556369],[118,145,79,0.004847592322141252],[118,146,64,0.012133470631311627],[118,146,65,0.01212421470018786],[118,146,66,0.012248688598539765],[118,146,67,0.012478435924000206],[118,146,68,0.012843785973591097],[118,146,69,0.013405033891453998],[118,146,70,0.014201926728197574],[118,146,71,0.015254905080817263],[118,146,72,0.016567446909374575],[118,146,73,0.01812836875069508],[118,146,74,0.016569842987729084],[118,146,75,0.014692214578531045],[118,146,76,0.01266346559411154],[118,146,77,0.010531491929835726],[118,146,78,0.00834817645145621],[118,146,79,0.006167454312985058],[118,147,64,0.011788191880396096],[118,147,65,0.011749844291410927],[118,147,66,0.01183369897950904],[118,147,67,0.012012346195619663],[118,147,68,0.01231689603287007],[118,147,69,0.01280832458191326],[118,147,70,0.013527784003032506],[118,147,71,0.01449770326545976],[118,147,72,0.015723977629858672],[118,147,73,0.01719812533561029],[118,147,74,0.017608877312076297],[118,147,75,0.015810806060562167],[118,147,76,0.013853607122746673],[118,147,77,0.011782569455148847],[118,147,78,0.009647244129994818],[118,147,79,0.00749958613331416],[118,148,64,0.011455601686507525],[118,148,65,0.011390204364633179],[118,148,66,0.011435207428819504],[118,148,67,0.01156487368576195],[118,148,68,0.011811113567929197],[118,148,69,0.012235186636984585],[118,148,70,0.012879331173019983],[118,148,71,0.013767725222025058],[118,148,72,0.014908512128664876],[118,148,73,0.01629580360786477],[118,148,74,0.017911655762134344],[118,148,75,0.016904298219540533],[118,148,76,0.015021452653496399],[118,148,77,0.013015001161843825],[118,148,78,0.010932082235069378],[118,148,79,0.008822570827548351],[118,149,64,0.011144972231921983],[118,149,65,0.01105499048943203],[118,149,66,0.011063451279742334],[118,149,67,0.011146907014233098],[118,149,68,0.011338077683421457],[118,149,69,0.011698096670848696],[118,149,70,0.01226994945780469],[118,149,71,0.013079297857749967],[118,149,72,0.014136333734686757],[118,149,73,0.01543762101281283],[118,149,74,0.0169679219193234],[118,149,75,0.017954834479621172],[118,149,76,0.016148481248464703],[118,149,77,0.014209754334369386],[118,149,78,0.01218332485509591],[118,149,79,0.010116909255937652],[118,150,64,0.010863540714006406],[118,150,65,0.010751787135605824],[118,150,66,0.010726490707175467],[118,150,67,0.010767081813466334],[118,150,68,0.010907088310433511],[118,150,69,0.01120710821274339],[118,150,70,0.011710525480381269],[118,150,71,0.012444201955709661],[118,150,72,0.013420153462872468],[118,150,73,0.014637225243953094],[118,150,74,0.01608276322566199],[118,150,75,0.017734277671841665],[118,150,76,0.01721855102444415],[118,150,77,0.015350053266357275],[118,150,78,0.0133837154629072],[118,150,79,0.011365041666798963],[118,151,64,0.010616627347397831],[118,151,65,0.010486178485907422],[118,151,66,0.01043030843021084],[118,151,67,0.010431866510885792],[118,151,68,0.010525175809812277],[118,151,69,0.010769903060438344],[118,151,70,0.011209482802931794],[118,151,71,0.011871683080958352],[118,151,72,0.012770100412822847],[118,151,73,0.013905665300233183],[118,151,74,0.015268155330075672],[118,151,75,0.01683771295867157],[118,151,76,0.018217968300603935],[118,151,77,0.016421452512230175],[118,151,78,0.014518178213810634],[118,151,79,0.012551410376221364],[118,152,64,0.010407778346835896],[118,152,65,0.010261886394183743],[118,152,66,0.010178938296083165],[118,152,67,0.010145678935730663],[118,152,68,0.01019720345493087],[118,152,69,0.010391877085225215],[118,152,70,0.010772848501531004],[118,152,71,0.011368496727400696],[118,152,72,0.012193743919249463],[118,152,73,0.013251389900127385],[118,152,74,0.014533466062037674],[118,152,75,0.016022606262919386],[118,152,76,0.017693432363229206],[118,152,77,0.01741192093224045],[118,152,78,0.015573914483667232],[118,152,79,0.013662563797222202],[118,153,64,0.010238933974712405],[118,153,65,0.010080935577565602],[118,153,66,0.009974622836762495],[118,153,67,0.009911033845029994],[118,153,68,0.009926002892598415],[118,153,69,0.010076260589478817],[118,153,70,0.010404354879566848],[118,153,71,0.010938987798925425],[118,153,72,0.011696147535153127],[118,153,73,0.012680273313338987],[118,153,74,0.013885451285362557],[118,153,75,0.015296639580258602],[118,153,76,0.01689092066515293],[118,153,77,0.018311936635215968],[118,153,78,0.016540524814961988],[118,153,79,0.014687302058765277],[118,154,64,0.010110621749588102],[118,154,65,0.00994384614319856],[118,154,66,0.009817999900593037],[118,154,67,0.009728721473702358],[118,154,68,0.009712542690087008],[118,154,69,0.009824273325836087],[118,154,70,0.010105576426153338],[118,154,71,0.010585204522965509],[118,154,72,0.011279954931287578],[118,154,73,0.012195668671765128],[118,154,74,0.013328271740334793],[118,154,75,0.014664857401871458],[118,154,76,0.0161848081505835],[118,154,77,0.01786095595663236],[118,154,78,0.01741015644143213],[118,154,79,0.015616864455912859],[118,155,64,0.010022174925651632],[118,155,65,0.0098498535635299],[118,155,66,0.009708318474310662],[118,155,67,0.0095980172259533],[118,155,68,0.009556130087562498],[118,155,69,0.009635314297172652],[118,155,70,0.00987610213441863],[118,155,71,0.01030704690140661],[118,155,72,0.01094550780014361],[118,155,73,0.011798488823836393],[118,155,74,0.012863530906307671],[118,155,75,0.014129656506084675],[118,155,76,0.015578365743144714],[118,155,77,0.01718468315788106],[118,155,78,0.018177676565914607],[118,155,79,0.016445158975704244],[118,156,64,0.009971976368383777],[118,156,65,0.00979715622939725],[118,156,66,0.009643683825523282],[118,156,67,0.009516922639292016],[118,156,68,0.009454646088602525],[118,156,69,0.009507186468876418],[118,156,70,0.009713743305385027],[118,156,71,0.010102449812702726],[118,156,72,0.010690995859387094],[118,156,73,0.011487314800575991],[118,156,74,0.012490333918600296],[118,156,75,0.013690788122052686],[118,156,76,0.015072096472407304],[118,156,77,0.016611301035437],[118,156,78,0.01828006749344639],[118,156,79,0.01716903414915806],[118,157,64,0.00995772796849631],[118,157,65,0.009783190727056176],[118,157,66,0.009621332112269456],[118,157,67,0.009482437768547087],[118,157,68,0.009404814036930009],[118,157,69,0.00943635653939118],[118,157,70,0.009614776976188318],[118,157,71,0.009967600890150053],[118,157,72,0.01051263905838586],[118,157,73,0.011258531967687257],[118,157,74,0.012205367576545589],[118,157,75,0.013345372456936497],[118,157,76,0.014663676306790953],[118,157,77,0.016139149730718207],[118,157,78,0.01774531510334606],[118,157,79,0.01778859348808543],[118,158,64,0.009976745754525354],[118,158,65,0.00980493500382657],[118,158,66,0.009637934624573788],[118,158,67,0.009490865155225875],[118,158,68,0.009402501844981315],[118,158,69,0.009418249931634464],[118,158,70,0.009574225126621648],[118,158,71,0.009897193314528782],[118,158,72,0.010404902102184293],[118,158,73,0.011106493945699573],[118,158,74,0.012003001483929961],[118,158,75,0.013087925578919463],[118,158,76,0.01434789644280838],[118,158,77,0.01576341811789104],[118,158,78,0.01730969647342901],[118,158,79,0.01830755277616484],[118,159,64,0.010026280884263295],[118,159,65,0.009859239607219634],[118,159,66,0.009689931842982592],[118,159,67,0.009538145567425601],[118,159,68,0.009443058059463293],[118,159,69,0.009447581186683108],[118,159,70,0.00958616983543898],[118,159,71,0.009884713674762994],[118,159,72,0.010360741420051202],[118,159,73,0.011023714389707995],[118,159,74,0.011875410368849855],[118,159,75,0.012910398650172537],[118,159,76,0.014116606984251667],[118,159,77,0.015475981041458824],[118,159,78,0.01696523686688073],[118,159,79,0.01855670669960968],[118,160,64,0.010103866716465681],[118,160,65,0.009943187204186417],[118,160,66,0.009773897520850876],[118,160,67,0.009620225717228849],[118,160,68,0.009521681970595715],[118,160,69,0.009518719962036069],[118,160,70,0.009644104577487983],[118,160,71,0.009922765067845103],[118,160,72,0.010371884720515343],[118,160,73,0.011001086731514943],[118,160,74,0.011812717637177401],[118,160,75,0.012802229506515703],[118,160,76,0.013958661942787368],[118,160,77,0.015265224797565842],[118,160,78,0.016699982364275803],[118,160,79,0.018236639692321022],[118,161,64,0.010207692186926411],[118,161,65,0.010054480610459564],[118,161,66,0.009886933020617853],[118,161,67,0.009733458186061443],[118,161,68,0.009633827995249299],[118,161,69,0.009626092859772733],[118,161,70,0.009741321874533346],[118,161,71,0.010003425629003368],[118,161,72,0.010429143291601712],[118,161,73,0.011028132000018674],[118,161,74,0.011803160222382968],[118,161,75,0.01275040658403413],[118,161,76,0.013859865489525806],[118,161,77,0.015115860711123117],[118,161,78,0.01649766796522433],[118,161,79,0.017980247358567642],[118,162,64,0.010337001737042746],[118,162,65,0.010191859584811024],[118,162,66,0.01002709215942203],[118,162,67,0.009875033813826354],[118,162,68,0.009775644589644849],[118,162,69,0.00976462133500203],[118,162,70,0.009871337536559418],[118,162,71,0.010118642704946114],[118,162,72,0.010522757223786027],[118,162,73,0.011093274850500663],[118,162,74,0.011833274804423812],[118,162,75,0.012739545197328499],[118,162,76,0.013802919385505258],[118,162,77,0.015008726652904831],[118,162,78,0.016337358473403774],[118,162,79,0.01776495144880619],[118,163,64,0.010492522068336358],[118,163,65,0.010355546669362753],[118,163,66,0.01019383684611381],[118,163,67,0.010043446834700376],[118,163,68,0.00994444797462616],[118,163,69,0.009930195962094497],[118,163,70,0.010028351756362271],[118,163,71,0.010260662906955813],[118,163,72,0.010642773753964045],[118,163,73,0.01118414795001801],[118,163,74,0.011888105481761571],[118,163,75,0.012751976179400706],[118,163,76,0.013767371517682352],[118,163,77,0.014920576332324454],[118,163,78,0.016193061904403602],[118,163,79,0.0175621217034323],[118,164,64,0.010674061123534433],[118,164,65,0.010544596443967356],[118,164,66,0.010385152973536007],[118,164,67,0.010235386128673567],[118,164,68,0.010135396080465113],[118,164,69,0.010116145053860019],[118,164,70,0.010203528589768857],[118,164,71,0.01041814218640033],[118,164,72,0.010775010510939154],[118,164,73,0.01128343306452576],[118,164,74,0.011946948702047065],[118,164,75,0.012763421211406228],[118,164,76,0.013725247963585862],[118,164,77,0.014819693456936733],[118,164,78,0.016029349398679806],[118,164,79,0.017332722795608033],[118,165,64,0.010863288667177683],[118,165,65,0.01073801741991799],[118,165,66,0.01057721259463182],[118,165,67,0.010424009632767059],[118,165,68,0.010318444201286922],[118,165,69,0.010289032803127289],[118,165,70,0.010359873302197863],[118,165,71,0.010550396319053065],[118,165,72,0.010875013172837506],[118,165,73,0.01134288410386174],[118,165,74,0.011957809394515382],[118,165,75,0.01271824580239771],[118,165,76,0.013617450518696141],[118,165,77,0.014643754669004807],[118,165,78,0.015780968184969085],[118,165,79,0.017008917695445096],[118,166,64,0.011039054513755758],[118,166,65,0.0109115750328096],[118,166,66,0.010742633170065245],[118,166,67,0.01057865763252914],[118,166,68,0.0104595184094197],[118,166,69,0.010411284768166844],[118,166,70,0.010456284951281765],[118,166,71,0.010612837431810076],[118,166,72,0.010894814320279361],[118,166,73,0.011311328814085095],[118,166,74,0.011866549524782556],[118,166,75,0.012559644308088484],[118,166,76,0.013384856013169074],[118,166,77,0.014331712364084764],[118,166,78,0.015385371989146796],[118,166,79,0.01652710842556513],[118,167,64,0.011186930957397385],[118,167,65,0.011048367639138067],[118,167,66,0.01086201167036913],[118,167,67,0.010677324842410645],[118,167,68,0.010533908929328971],[118,167,69,0.010455447173827882],[118,167,70,0.010462592796564007],[118,167,71,0.010572671501485087],[118,167,72,0.010799154933405863],[118,167,73,0.011151262076365824],[118,167,74,0.011633691654349385],[118,167,75,0.012246488378201675],[118,167,76,0.012985045666686216],[118,167,77,0.01384024725773703],[118,167,78,0.014798749920179642],[118,167,79,0.01584340927875294],[118,168,64,0.011297368787057187],[118,168,65,0.011136962911774968],[118,168,66,0.010922039823745048],[118,168,67,0.010704758925829025],[118,168,68,0.010524356071863859],[118,168,69,0.010402260073369095],[118,168,70,0.010357613060064616],[118,168,71,0.010406932529911019],[118,168,72,0.010563488022624839],[118,168,73,0.010836809939318808],[118,168,74,0.011232333809154473],[118,168,75,0.011751183078502854],[118,168,76,0.012390093273961487],[118,168,77,0.013141480169857559],[118,168,78,0.013993654375754951],[118,168,79,0.014931184552273564],[118,169,64,0.011363644702593344],[118,169,65,0.011169319504309952],[118,169,66,0.010913400174467652],[118,169,67,0.01065033635475312],[118,169,68,0.010418911143402022],[118,169,69,0.010238504923741206],[118,169,70,0.010126981900057367],[118,169,71,0.010100297504249433],[118,169,72,0.010171770661458752],[118,169,73,0.010351492858670989],[118,169,74,0.0106458775728882],[118,169,75,0.011057353381623699],[118,169,76,0.011584203845216445],[118,169,77,0.012220557020033667],[118,169,78,0.01295652723627311],[118,169,79,0.013778511556164053],[118,170,64,0.011379658465170701],[118,170,65,0.01113855802638551],[118,170,66,0.010828512245093293],[118,170,67,0.010505790006130276],[118,170,68,0.010208651702376382],[118,170,69,0.009954710574602996],[118,170,70,0.009760852692224252],[118,170,71,0.009642773647326484],[118,170,72,0.009614138540575034],[118,170,73,0.009685884002914166],[118,170,74,0.00986566608365398],[118,170,75,0.010157457592232588],[118,170,76,0.010561298237534435],[118,170,77,0.011073200667436736],[118,170,78,0.011685215274558578],[118,170,79,0.012385656404464354],[118,171,64,0.01133757802684304],[118,171,65,0.011036579622775813],[118,171,66,0.010659127152401722],[118,171,67,0.010262786910855038],[118,171,68,0.00988524965368946],[118,171,69,0.009542716246687906],[118,171,70,0.009251456290077878],[118,171,71,0.009027256737756721],[118,171,72,0.008884461942262455],[118,171,73,0.008835161655000215],[118,171,74,0.008888531105434451],[118,171,75,0.009050327029025907],[118,171,76,0.009322543258938585],[118,171,77,0.009703229243334506],[118,171,78,0.01018647460080628],[118,171,79,0.010762562583731136],[118,172,64,0.011225330719254635],[118,172,65,0.010851530284964161],[118,172,66,0.010393768864678243],[118,172,67,0.009910354410983577],[118,172,68,0.009438390514522343],[118,172,69,0.008993089921867757],[118,172,70,0.008590522787723267],[118,172,71,0.008246959135902912],[118,172,72,0.007977781896547163],[118,172,73,0.007796554608094577],[118,172,74,0.007714248220016226],[118,172,75,0.007738631166463799],[118,172,76,0.007873826613560236],[118,172,77,0.008120040516522048],[118,172,78,0.008473463859630012],[118,172,79,0.008926352194930058],[118,173,64,0.01102393841138192],[118,173,65,0.010565108854672257],[118,173,66,0.010015020120180459],[118,173,67,0.00943215281535957],[118,173,68,0.008853042022446092],[118,173,69,0.00829240040840863],[118,173,70,0.007766563153752472],[118,173,71,0.0072927060027906734],[118,173,72,0.006887625137234305],[118,173,73,0.006566679317044343],[118,173,74,0.006342899055566994],[118,173,75,0.006226267316768856],[118,173,76,0.006223175940863915],[118,173,77,0.006336061723317672],[118,173,78,0.006563225793715517],[118,173,79,0.006898839668082644],[118,174,64,0.010704694371783965],[118,174,65,0.01014971650485444],[118,174,66,0.009496650854084621],[118,174,67,0.008803592473379234],[118,174,68,0.008106570089172174],[118,174,69,0.007420341181091845],[118,174,70,0.00676200894591746],[118,174,71,0.00615009804551821],[118,174,72,0.005603196328955493],[118,174,73,0.005138767427051197],[118,174,74,0.004772139335425138],[118,174,75,0.004515673807900014],[118,174,76,0.004378121084997792],[118,174,77,0.004364164184645028],[118,174,78,0.004474156686876659],[118,174,79,0.004704057654203293],[118,175,64,0.010241401802221004],[118,175,65,0.009580520716551664],[118,175,66,0.008815419322172406],[118,175,67,0.008003267429893388],[118,175,68,0.0071796847026203625],[118,175,69,0.006360054524455419],[118,175,70,0.005562770735786989],[118,175,71,0.004808154281685185],[118,175,72,0.0041169533145732325],[118,175,73,0.0035090238170095646],[118,175,74,0.003002196225113565],[118,175,75,0.0026113332226061783],[118,175,76,0.002347583561068252],[118,175,77,0.0022178364465977774],[118,175,78,0.0022243807194174477],[118,175,79,0.002364772744219197],[118,176,64,0.009659346520953722],[118,176,65,0.008883983216630894],[118,176,66,0.00799887997653013],[118,176,67,0.0070597127559857645],[118,176,68,0.0061017679403618475],[118,176,69,0.005141611981018197],[118,176,70,0.004199424104065314],[118,176,71,0.003297739584848841],[118,176,72,0.00245980706458723],[118,176,73,0.0017081367998997643],[118,176,74,0.0010632456971325945],[118,176,75,5.426046553084517E-4],[118,176,76,1.5979340892054007E-4],[118,176,77,-7.613227245970888E-5],[118,176,78,-1.6105650369760494E-4],[118,176,79,-9.599812700001387E-5],[118,177,64,0.008998323200030208],[118,177,65,0.00810132412352784],[118,177,66,0.007089579126417581],[118,177,67,0.006016684614680881],[118,177,68,0.004917640522781353],[118,177,69,0.0038107079962593866],[118,177,70,0.0027182985209499425],[118,177,71,0.0016655328002381606],[118,177,72,6.784567390348431E-4],[118,177,73,-2.1754080011772824E-4],[118,177,74,-9.991022486752715E-4],[118,177,75,-0.001646061717401139],[118,177,76,-0.0021423859925937244],[118,177,77,-0.0024768909739710495],[118,177,78,-0.002643728737520987],[118,177,79,-0.0026426407548710983],[118,178,64,0.008298157378783543],[118,178,65,0.0072741227865264066],[118,178,66,0.006130814530495523],[118,178,67,0.004919175952558319],[118,178,68,0.0036739458817164135],[118,178,69,0.0024155370207086736],[118,178,70,0.0011689817248022464],[118,178,71,-3.770089486004173E-5],[118,178,72,-0.001175426179945681],[118,178,73,-0.002215752410948204],[118,178,74,-0.0031323699947874003],[118,178,75,-0.003902365142260419],[118,178,76,-0.004507252193494098],[118,178,77,-0.004933769122171521],[118,178,78,-0.00517443112137536],[118,178,79,-0.005227837541856757],[118,179,64,0.007598147296226844],[118,179,65,0.00644368205453744],[118,179,66,0.005165904428314251],[118,179,67,0.0038125699142953417],[118,179,68,0.0024181660243660754],[118,179,69,0.0010056496262268253],[118,179,70,-3.9700548133600786E-4],[118,179,71,-0.0017586366874520313],[118,179,72,-0.003046944182880056],[118,179,73,-0.004230319080623749],[118,179,74,-0.005279441133465635],[118,179,75,-0.006168639519823083],[118,179,76,-0.006877010557205747],[118,179,77,-0.007389286593661234],[118,179,78,-0.0076964507184961025],[118,179,79,-0.00779609232055052],[118,180,64,0.006936484647881571],[118,180,65,0.005650372681276661],[118,180,66,0.004237439988738538],[118,180,67,0.0027417817234125196],[118,180,68,0.0011976328815300125],[118,180,69,-3.691863843488527E-4],[118,180,70,-0.001927517062425751],[118,180,71,-0.003442883975742014],[118,180,72,-0.004879668499313807],[118,180,73,-0.006203047460849015],[118,180,74,-0.007380691010081038],[118,180,75,-0.008384212639517495],[118,180,76,-0.009190364944217521],[118,180,77,-0.009781975116708091],[118,180,78,-0.010148614581751304],[118,180,79,-0.010286997580536587],[118,181,64,0.006349653772567867],[118,181,65,0.004932957356731556],[118,181,66,0.003386520660091427],[118,181,67,0.0017503885160974643],[118,181,68,5.853463746942395E-5],[118,181,69,-0.0016601203542738526],[118,181,70,-0.003371072655611496],[118,181,71,-0.005036447753963919],[118,181,72,-0.006617282649933672],[118,181,73,-0.0080755646283877],[118,181,74,-0.009376019094569449],[118,181,75,-0.010487639404172322],[118,181,76,-0.011384952036607682],[118,181,77,-0.01204901088508412],[118,181,78,-0.012468114861877837],[118,181,79,-0.012638243438344668],[118,182,64,0.005871808743590695],[118,182,65,0.004327893822242324],[118,182,66,0.0026519718736688616],[118,182,67,8.797465817161794E-4],[118,182,68,-9.550834943299019E-4],[118,182,69,-0.002820349148902742],[118,182,70,-0.004678132018749703],[118,182,71,-0.006487157950740947],[118,182,72,-0.008205175123872867],[118,182,73,-0.009791079988376937],[118,182,74,-0.011206783311156645],[118,182,75,-0.012418809042764347],[118,182,76,-0.013399619155114452],[118,182,77,-0.014128658037545462],[118,182,78,-0.014593110477871936],[118,182,79,-0.014788367690631622],[118,183,64,0.005534127808142116],[118,183,65,0.0038686164946055983],[118,183,66,0.002069544520078481],[118,183,67,1.6809543167932455E-4],[118,183,68,-0.00180232461638231],[118,183,69,-0.0038062440724918024],[118,183,70,-0.005802353523348521],[118,183,71,-0.007746067160454579],[118,183,72,-0.009591981540322344],[118,183,73,-0.01129607451847514],[118,183,74,-0.012817636465901831],[118,183,75,-0.014120926313841441],[118,183,76,-0.015176545418349457],[118,183,77,-0.015962522686393636],[118,183,78,-0.01646510485633142],[118,183,79,-0.01667924627336428],[118,184,64,0.005364144588845418],[118,184,65,0.003584795993579353],[118,184,66,0.0016710955868230776],[118,184,67,-3.503519120558322E-4],[118,184,68,-0.002446452209412703],[118,184,69,-0.004578474894579871],[118,184,70,-0.006701837215668125],[118,184,71,-0.00876881722646993],[118,184,72,-0.010731076667593441],[118,184,73,-0.012541917620544744],[118,184,74,-0.014158264912482675],[118,184,75,-0.0155423666955666],[118,184,76,-0.016663206079659616],[118,184,77,-0.017497617156941894],[118,184,78,-0.018031099217741528],[118,184,79,-0.018258323414367752],[118,185,64,0.005385055432404459],[118,185,65,0.003501575937254168],[118,185,66,0.0014837493159267192],[118,185,67,-6.463330461474572E-4],[118,185,68,-0.002855909534336701],[118,185,69,-0.005103131578675873],[118,185,70,-0.0073403529896289245],[118,185,71,-0.00951697514966285],[118,185,72,-0.011582016680883604],[118,185,73,-0.013486411847129601],[118,185,74,-0.015185029588801044],[118,185,75,-0.01663840554146949],[118,185,76,-0.01781417985092965],[118,185,77,-0.018688234064090543],[118,185,78,-0.019245520842909123],[118,185,79,-0.019480580713167134],[118,186,64,0.005615002262497955],[118,186,65,0.0036387863411745003],[118,186,66,0.0015290382124060074],[118,186,67,-6.964753965495161E-4],[118,186,68,-0.003005347021043725],[118,186,69,-0.005352844326743615],[118,186,70,-0.007688554431091799],[118,186,71,-0.009959338805355477],[118,186,72,-0.012111932042045618],[118,186,73,-0.014095265763205642],[118,186,74,-0.01586250954036315],[118,186,75,-0.017372821153764678],[118,186,76,-0.018592798984316615],[118,186,77,-0.01949762980267891],[118,186,78,-0.02007192569212601],[118,186,79,-0.0203102443107949],[118,187,64,0.006066330267648383],[118,187,65,0.004010132930127012],[118,187,66,0.001822023208304223],[118,187,67,-4.8425119881546723E-4],[118,187,68,-0.0028766583124584045],[118,187,69,-0.005307902570298931],[118,187,70,-0.007725178904779988],[118,187,71,-0.010073212956291855],[118,187,72,-0.012296871380492682],[118,187,73,-0.01434349518944871],[118,187,74,-0.016164948020925437],[118,187,75,-0.01771937168850842],[118,187,76,-0.01897264183260134],[118,187,77,-0.0198995169649827],[118,187,78,-0.020484474673412908],[118,187,79,-0.020722229223465265],[118,188,64,0.006744819730010791],[118,188,65,0.004622361646383693],[118,188,66,0.002370392263061049],[118,188,67,-9.489578470913391E-7],[118,188,68,-0.002460025650764179],[118,188,69,-0.004957373552604769],[118,188,70,-0.007438234462409576],[118,188,71,-0.009845656048505656],[118,188,72,-0.012123096743857618],[118,188,73,-0.01421675305149791],[118,188,74,-0.016077601226579155],[118,188,75,-0.01766314575896585],[118,188,76,-0.018938867546646414],[118,188,77,-0.01987936512186248],[118,188,78,-0.02046918276464178],[118,188,79,-0.020703319808101882],[118,189,64,0.007648891278153672],[118,189,65,0.005474397615198456],[118,189,66,0.0031735366594921608],[118,189,67,7.533378842163366E-4],[118,189,68,-0.001754975307743952],[118,189,69,-0.004300221156173821],[118,189,70,-0.00682617415321586],[118,189,71,-0.009274698270615132],[118,189,72,-0.011588330569979903],[118,189,73,-0.013712588030271474],[118,189,74,-0.015597989676218248],[118,189,75,-0.017201786545377955],[118,189,76,-0.018489392494490085],[118,189,77,-0.019435509313862974],[118,189,78,-0.020024940087783636],[118,189,79,-0.020253085205078823],[118,190,64,0.008768783826228295],[118,190,65,0.006556457807791882],[118,190,66,0.004221604235880843],[118,190,67,0.0017687043275060206],[118,190,68,-7.714437726841035E-4],[118,190,69,-0.003346425635358985],[118,190,70,-0.005899058315841619],[118,190,71,-0.008370531345117069],[118,190,72,-0.010702954708177094],[118,190,73,-0.012841632171350518],[118,190,74,-0.014737052199323674],[118,190,75,-0.0163465891510777],[118,190,76,-0.017635907901215074],[118,190,77,-0.018580065495464846],[118,190,78,-0.01916430391255001],[118,190,79,-0.019384528464890263],[118,191,64,0.010085704443730132],[118,191,65,0.00784913662422594],[118,191,66,0.005494528778949385],[118,191,67,0.0030244084845206416],[118,191,68,4.691445811094223E-4],[118,191,69,-0.0021181049149318954],[118,191,70,-0.004679705423223905],[118,191,71,-0.007156670502417491],[118,191,72,-0.009491161787403734],[118,191,73,-0.01162871756669935],[118,191,74,-0.013520202431208966],[118,191,75,-0.0151234708667196],[118,191,76,-0.016404738112138276],[118,191,77,-0.017339652060056172],[118,191,78,-0.017914060431782296],[118,191,79,-0.01812446791143319],[118,192,64,0.011570949384647176],[118,192,65,0.009322463603778452],[118,192,66,0.006961034790093167],[118,192,67,0.004487826775381421],[118,192,68,0.0019327876267046097],[118,192,69,-6.506381119667513E-4],[118,192,70,-0.003204832039467228],[118,192,71,-0.005671089064483237],[118,192,72,-0.007992059191736544],[118,192,73,-0.010113922169553752],[118,192,74,-0.011988287646428036],[118,192,75,-0.013573813916501738],[118,192,76,-0.014837538774451929],[118,192,77,-0.015755916445543663],[118,192,78,-0.016315555002768718],[118,192,79,-0.01651364912600368],[118,193,64,0.013184995492525213],[118,193,65,0.010934932459040252],[118,193,66,0.008577616828576745],[118,193,67,0.006113388878248763],[118,193,68,0.003571802687417936],[118,193,69,0.0010062080702035008],[118,193,70,-0.0015261824295203068],[118,193,71,-0.0039673260349960965],[118,193,72,-0.006260725859617515],[118,193,73,-0.008353544743263296],[118,193,74,-0.010198449683159637],[118,193,75,-0.011755180163026652],[118,193,76,-0.01299183411472078],[118,193,77,-0.013885865681544594],[118,193,78,-0.0144247893880915],[118,193,79,-0.014606585754009424],[118,194,64,0.014876561189161667],[118,194,65,0.012632500622298492],[118,194,66,0.01028749263074187],[118,194,67,0.007841491664726651],[118,194,68,0.005323710096589454],[118,194,69,0.002787149441003748],[118,194,70,2.8835166147368356E-4],[118,194,71,-0.002115567056549812],[118,194,72,-0.004369222072325974],[118,194,73,-0.006421008877213666],[118,194,74,-0.008224887625171148],[118,194,75,-0.009741897141134943],[118,194,76,-0.010941392362028865],[118,194,77,-0.011801999589390957],[118,194,78,-0.012312284357415203],[118,194,79,-0.012471127141771425],[118,195,64,0.016582221247790095],[118,195,65,0.014348210326267596],[118,195,66,0.01202024329295105],[118,195,67,0.009598166159742044],[118,195,68,0.007110936182656614],[118,195,69,0.004611138332169577],[118,195,70,0.0021545552897586314],[118,195,71,-2.0272783625796892E-4],[118,195,72,-0.002406557113667323],[118,195,73,-0.004406691124806776],[118,195,74,-0.006158523401228933],[118,195,75,-0.007624539717940018],[118,195,76,-0.008775504420431101],[118,195,77,-0.009591370371562755],[118,195,78,-0.01006190751958383],[118,195,79,-0.010187045499440653],[118,196,64,0.018255617433849836],[118,196,65,0.016034698933240804],[118,196,66,0.013727406653629154],[118,196,67,0.011333685687837112],[118,196,68,0.008882357551727322],[118,196,69,0.006425620630642453],[118,196,70,0.004018496909654599],[118,196,71,0.0017160107156733674],[118,196,72,-4.289707562351848E-4],[118,196,73,-0.0023676493017224694],[118,196,74,-0.0040569535468693105],[118,196,75,-0.005460936757749382],[118,196,76,-0.0065519090090744945],[118,196,77,-0.007311298505035229],[118,196,78,-0.0077302372494812855],[118,196,79,-0.007809866663129653],[118,197,64,0.017365363190765377],[118,197,65,0.017683836428414604],[118,197,66,0.015403561351855648],[118,197,67,0.013045058639275289],[118,197,68,0.01063715141973026],[118,197,69,0.008231601404807349],[118,197,70,0.005882583806847984],[118,197,71,0.003643949967937753],[118,197,72,0.001567148068718695],[118,197,73,-3.006134344422001E-4],[118,197,74,-0.00191795348350346],[118,197,75,-0.003250651427393071],[118,197,76,-0.004272719978847868],[118,197,77,-0.0049672131265975136],[118,197,78,-0.005326764403473866],[118,197,79,-0.005353851300794696],[118,198,64,0.01585308832777955],[118,198,65,0.01812465590626465],[118,198,66,0.01704125415043942],[118,198,67,0.014726841089974107],[118,198,68,0.012371610025992453],[118,198,69,0.010026765020571832],[118,198,70,0.007745474979011064],[118,198,71,0.00558023582681958],[118,198,72,0.0035808809125263386],[118,198,73,0.0017928285662408426],[118,198,74,2.555727110961992E-4],[118,198,75,-9.98577948521439E-4],[118,198,76,-0.001945507017239301],[118,198,77,-0.00257003901486524],[118,198,78,-0.0028664251175727212],[118,198,79,-0.0028385620310718463],[118,199,64,0.014413156199732895],[118,199,65,0.01664496495681474],[118,199,66,0.01862875764759162],[118,199,67,0.016368626369769098],[118,199,68,0.01407638141389729],[118,199,69,0.011802500041692691],[118,199,70,0.009598935852127144],[118,199,71,0.007516600377322802],[118,199,72,0.005603475253161642],[118,199,73,0.003902954933966984],[118,199,74,0.0024524255582909654],[118,199,75,0.001282085211734661],[118,199,76,4.140104661757795E-4],[118,199,77,-1.385262942847627E-4],[118,199,78,-3.714846186784279E-4],[118,199,79,-2.9022502810884795E-4],[118,200,64,0.013062022141134829],[118,200,65,0.015242072478586574],[118,200,66,0.01747787525857641],[118,200,67,0.0179569244416314],[118,200,68,0.015738456561473192],[118,200,69,0.013546002228867489],[118,200,70,0.011430061640210012],[118,200,71,0.009439706338756902],[118,200,72,0.0076208070169710915],[118,200,73,0.006014483945720095],[118,200,74,0.004655785315533332],[118,200,75,0.0035725984280782974],[118,200,76,0.0027847983240922606],[118,200,77,0.002303638080033094],[118,200,78,0.0021313846528146995],[118,200,79,0.002261203803380038],[118,201,64,0.011815843451241715],[118,201,65,0.013931466013067259],[118,201,66,0.016097485177661342],[118,201,67,0.01830744999804599],[118,201,68,0.017343062264509886],[118,201,69,0.015242293146381276],[118,201,70,0.013223428375434075],[118,201,71,0.01133343345446715],[118,201,72,0.00961580141427455],[118,201,73,0.008109124476675464],[118,201,74,0.006845883860458768],[118,201,75,0.0058514623282805754],[118,201,76,0.005143383737526905],[118,201,77,0.004730783521575933],[118,201,78,0.004614113692751526],[118,201,79,0.004785085627616099],[118,202,64,0.010689087815919419],[118,202,65,0.01272744731427151],[118,202,66,0.014811984588313624],[118,202,67,0.016933538449793763],[118,202,68,0.018875459776916185],[118,202,69,0.01687615456156496],[118,202,70,0.01496317199435305],[118,202,71,0.013181107418270851],[118,202,72,0.011570812920666402],[118,202,73,0.010168104279964198],[118,202,74,0.009002674631399013],[118,202,75,0.00809721907633754],[118,202,76,0.007466774144067441],[118,202,77,0.007118275698221791],[118,202,78,0.007050338565103586],[118,202,79,0.007253260850976195],[118,203,64,0.009693256753155874],[118,203,65,0.011641770789523087],[118,203,66,0.013633443704691356],[118,203,67,0.01565597014389674],[118,203,68,0.017677243070219426],[118,203,69,0.01843397875153354],[118,203,70,0.016634995808727043],[118,203,71,0.014967671898113058],[118,203,72,0.013469965210199785],[118,203,73,0.01217467705213071],[118,203,74,0.011108501943597643],[118,203,75,0.010291275104168798],[118,203,76,0.009735420856143671],[118,203,77,0.009445605172752431],[118,203,78,0.009418595309414196],[118,203,79,0.009643329168564597],[118,204,64,0.00883572480906978],[118,204,65,0.010682395183395737],[118,204,66,0.01257037111869454],[118,204,67,0.014483813690733937],[118,204,68,0.01638954046084315],[118,204,69,0.01824374441702921],[118,204,70,0.018228106622785657],[118,204,71,0.016681804165287986],[118,204,72,0.01530145181032499],[118,204,73,0.014116609325707324],[118,204,74,0.01315077099884688],[118,204,75,0.012420746885228826],[118,204,76,0.011936229232404779],[118,204,77,0.011699546919900487],[118,204,78,0.011705610488702362],[118,204,79,0.011942050072335808],[118,205,64,0.00811869535889601],[118,205,65,0.00985234925243452],[118,205,66,0.011626473391022858],[118,205,67,0.013421356776994376],[118,205,68,0.015202613244750854],[118,205,69,0.016928310224216148],[118,205,70,0.01855882379388092],[118,205,71,0.018317974775086655],[118,205,72,0.017059798201098857],[118,205,73,0.015988648199259447],[118,205,74,0.0151246198923779],[118,205,75,0.01448133134731268],[118,205,76,0.014065617287295846],[118,205,77,0.013877392881826517],[118,205,78,0.013909689800531932],[118,205,79,0.01414886648382463],[118,206,64,0.007538274000175832],[118,206,65,0.009148712306447601],[118,206,66,0.01079952492029839],[118,206,67,0.012466842865771651],[118,206,68,0.01411495945128617],[118,206,69,0.015703941701865766],[118,206,70,0.017196955270061362],[118,206,71,0.0185612744236598],[118,206,72,0.018748086022572642],[118,206,73,0.01779497087204535],[118,206,74,0.017035594893988246],[118,206,75,0.016480202512045773],[118,206,76,0.016132624631597346],[118,206,77,0.0159902597491523],[118,206,78,0.01604420721652807],[118,206,79,0.016279554233934814],[118,207,64,0.007085363117391186],[118,207,65,0.00856296366543558],[118,207,66,0.010081296436860124],[118,207,67,0.011612114903858672],[118,207,68,0.013118295308802852],[118,207,69,0.014562002697595788],[118,207,70,0.015909348749046787],[118,207,71,0.017131093469188993],[118,207,72,0.018203166404327797],[118,207,73,0.019107066057546713],[118,207,74,0.018898015081457397],[118,207,75,0.018433623553616788],[118,207,76,0.018155706144735505],[118,207,77,0.01805902137212494],[118,207,78,0.018132657362240845],[118,207,79,0.018360400344998386],[118,208,64,0.006752178206591936],[118,208,65,0.008086382303115414],[118,208,66,0.009462297453930351],[118,208,67,0.010847207853549238],[118,208,68,0.01220253141702376],[118,208,69,0.013492611350305102],[118,208,70,0.014686627319028665],[118,208,71,0.01575897130609628],[118,208,72,0.016689527073250426],[118,208,73,0.017463848737284078],[118,208,74,0.018073236976778564],[118,208,75,0.018514711534359542],[118,208,76,0.018790878827080477],[118,208,77,0.01890969362235257],[118,208,78,0.018884113877422514],[118,208,79,0.01873164797529484],[118,209,64,0.0065302684627726645],[118,209,65,0.0077099094154933585],[118,209,66,0.00893311743451846],[118,209,67,0.01016275425924756],[118,209,68,0.01135879754940551],[118,209,69,0.012487826680381621],[118,209,70,0.013522167365318263],[118,209,71,0.014439929064297937],[118,209,72,0.015225032030167413],[118,209,73,0.01586715581313466],[118,209,74,0.016361608339860202],[118,209,75,0.01670911479687704],[118,209,76,0.016915525659853384],[118,209,77,0.016991443318388328],[118,209,78,0.016951766849582994],[118,209,79,0.016815154591406797],[118,210,64,0.006409053772650313],[118,210,65,0.007423117081400972],[118,210,66,0.008483690862533803],[118,210,67,0.009549391654759721],[118,210,68,0.01057882834168898],[118,210,69,0.011540846808759128],[118,210,70,0.012410947862979195],[118,210,71,0.013170978944856011],[118,210,72,0.01380890190180142],[118,210,73,0.01431850581538224],[118,210,74,0.014699064607708057],[118,210,75,0.014954939229672181],[118,210,76,0.015095124307808024],[118,210,77,0.015132739196398388],[118,210,78,0.015084463446369958],[118,210,79,0.014969916761593713],[118,211,64,0.006375699874550192],[118,211,65,0.007213977172248728],[118,211,66,0.0081029595582638],[118,211,67,0.00899731587445112],[118,211,68,0.009854405051756561],[118,211,69,0.0106453384273605],[118,211,70,0.011348768934460754],[118,211,71,0.01195023550091371],[118,211,72,0.012441668753070326],[118,211,73,0.012820866381060284],[118,211,74,0.013090938501465366],[118,211,75,0.013259723392719249],[118,211,76,0.01333917401368654],[118,211,77,0.013344715746194958],[118,211,78,0.013294575827335139],[118,211,79,0.01320908495661336],[118,212,64,0.006415127114765801],[118,212,65,0.007068764717979925],[118,212,66,0.007778670836301009],[118,212,67,0.008495972305838125],[118,212,68,0.009176938064551153],[118,212,69,0.009794910385649686],[118,212,70,0.01033161833035671],[118,212,71,0.010776178961239492],[118,212,72,0.011124342376805731],[118,212,73,0.011377731744078577],[118,212,74,0.011543079267810829],[118,212,75,0.011631459035473468],[118,212,76,0.011657517672495774],[118,212,77,0.011638703732220312],[118,212,78,0.011594496729510843],[118,212,79,0.011545636705770973],[118,213,64,0.0065101547535231456],[118,213,65,0.006972097596986737],[118,213,66,0.007497313297203371],[118,213,67,0.008033886808620336],[118,213,68,0.008537191810324958],[118,213,69,0.008982733012893606],[118,213,70,0.009355187411167422],[118,213,71,0.009647072138621513],[118,213,72,0.00985773445393831],[118,213,73,0.009992362473598438],[118,213,74,0.010061018174924614],[118,213,75,0.010077694155151104],[118,213,76,0.010059395587314642],[118,213,77,0.010025248763146203],[118,213,78,0.009995637556864253],[118,213,79,0.009991369082035994],[118,214,64,0.006641782888355805],[118,214,65,0.006907114533829429],[118,214,66,0.007244192161940221],[118,214,67,0.00759863814513851],[118,214,68,0.007925153887190924],[118,214,69,0.00820130492151516],[118,214,70,0.008414538336982068],[118,214,71,0.008560532597681015],[118,214,72,0.008641942231681793],[118,214,73,0.008667189085797234],[118,214,74,0.00864930223087525],[118,214,75,0.008604808524037284],[118,214,76,0.008552675749564002],[118,214,77,0.0085133101691777],[118,214,78,0.008507610215795387],[118,214,79,0.008556077962984356],[118,215,64,0.006789614171070439],[118,215,65,0.0068557934990985826],[118,215,66,0.0070036461710668635],[118,215,67,0.0071769738830296725],[118,215,68,0.007330050298140754],[118,215,69,0.007442369159851844],[118,215,70,0.007503924298841629],[118,215,71,0.007513261887436008],[118,215,72,0.0074759935017882605],[118,215,73,0.007403381292209023],[118,215,74,0.007310997872404496],[118,215,75,0.0072174634216281485],[118,215,76,0.007143262369804868],[118,215,77,0.007109641905209345],[118,215,78,0.00713759440811236],[118,215,79,0.0072469257728521785],[118,216,64,0.006932417595004432],[118,216,65,0.006799412709141549],[118,216,66,0.006759408177051038],[118,216,67,0.006755071840915782],[118,216,68,0.006740508826834762],[118,216,69,0.006696980701174711],[118,216,70,0.006616764748633103],[118,216,71,0.0065009337715702786],[118,216,72,0.006357654792935281],[118,216,73,0.006200584783868206],[118,216,74,0.006047366511744467],[118,216,75,0.005918227450148119],[118,216,76,0.005834684530315468],[118,216,77,0.005818357344924993],[118,216,78,0.005889892240883823],[118,216,79,0.006067999559215176],[118,217,64,0.007048836720311264],[118,217,65,0.006719156518027166],[118,217,66,0.006495111656655737],[118,217,67,0.006318949250729822],[118,217,68,0.006144872683991886],[118,217,69,0.005955727368402486],[118,217,70,0.005745777702129326],[118,217,71,0.005518243512267995],[118,217,72,0.005283404819147289],[118,217,73,0.005056827582910532],[118,217,74,0.004857713965631429],[118,217,75,0.004707380452020548],[118,217,76,0.004627866973556464],[118,217,77,0.004640679975856755],[118,217,78,0.004765672158754108],[118,217,79,0.005020061404425455],[118,218,64,0.007118244784865088],[118,218,65,0.006596868578375077],[118,218,66,0.006194945459104892],[118,218,67,0.00585502190409592],[118,218,68,0.005531666655451308],[118,218,69,0.005209106398893299],[118,218,70,0.0048832713005399755],[118,218,71,0.004559120379953569],[118,218,72,0.00424857534812095],[118,218,73,0.0039685981203462445],[118,218,74,0.0037394159223022977],[118,218,75,0.0035828976834034174],[118,218,76,0.003521085179332027],[118,218,77,0.003574882146462029],[118,218,78,0.0037629043468251663],[118,218,79,0.004100493315035421],[118,219,64,0.007121749215180861],[118,219,65,0.006415954719674926],[118,219,66,0.005844459183080829],[118,219,67,0.005350815633204323],[118,219,68,0.004890218072104763],[118,219,69,0.004448058949166792],[118,219,70,0.0040215969178177885],[118,219,71,0.0036171056694533385],[118,219,72,0.003247661767518709],[118,219,73,0.002931097318492554],[118,219,74,0.00268812172702775],[118,219,75,0.0025406165269582794],[118,219,76,0.0025101070159926574],[118,219,77,0.002616414151412791],[118,219,78,0.0028764898890058293],[118,219,79,0.0033034388699333425],[118,220,64,0.007043348103627263],[118,220,65,0.006162438050607849],[118,220,66,0.005431521639577196],[118,220,67,0.004795832547010007],[118,220,68,0.004211434999053536],[118,220,69,0.003664664923530938],[118,220,70,0.0031537661920783616],[118,220,71,0.002685898601051681],[118,220,72,0.002274805731768487],[118,220,73,0.001938667067057026],[118,220,74,0.0016981388826352206],[118,220,75,0.0015745881475523944],[118,220,76,0.0015885233753212883],[118,220,77,0.0017582260684032816],[118,220,78,0.00209858609565616],[118,220,79,0.002620144037631715],[118,221,64,0.006871241253084344],[118,221,65,0.005826168833598918],[118,221,66,0.004947434906212329],[118,221,67,0.004182574499293146],[118,221,68,0.0034887441044806986],[118,221,69,0.002853000581301382],[118,221,70,0.002274234437763717],[118,221,71,0.0017600725705487776],[118,221,72,0.0013244523645337897],[118,221,73,9.85397580943111E-4],[118,221,74,7.630007663189339E-4],[118,221,75,6.776166043797336E-4],[118,221,76,7.482703145418786E-4],[118,221,77,9.91284876580103E-4],[118,221,78,0.0014191305330877723],[118,221,79,0.0020394996927284546],[118,222,64,0.006599298405987762],[118,222,65,0.00540219170330519],[118,222,66,0.004388206509731842],[118,222,67,0.003507726304082319],[118,222,68,0.0027191907157633178],[118,222,69,0.0020101614325010943],[118,222,70,0.0013798529584746644],[118,222,71,8.359642835714204E-4],[118,222,72,3.921845705899511E-4],[118,222,73,6.591621325710726E-5],[118,222,74,-1.2377984446766314E-4],[118,222,75,-1.5801197030529846E-4],[118,222,76,-1.965467018315242E-5],[118,222,77,3.0528949077058296E-4],[118,222,78,8.265663935704327E-4],[118,222,79,0.0015487884685187435],[118,223,64,0.006228687269120399],[118,223,65,0.004892272803713773],[118,223,66,0.0037559822848376675],[118,223,67,0.002773501233898825],[118,223,68,0.0019047035990124442],[118,223,69,0.0011374529693255339],[118,223,70,4.7099282640062495E-4],[118,223,71,-8.726163630306172E-5],[118,223,72,-5.242629270208269E-4],[118,223,73,-8.236396336860904E-4],[118,223,74,-9.677687685460406E-4],[118,223,75,-9.396074345152769E-4],[118,223,76,-7.242795288845492E-4],[118,223,77,-3.1041356555133834E-4],[118,223,78,3.0877193531807164E-4],[118,223,79,0.001134638674409569],[118,224,64,0.005769663916220975],[118,224,65,0.004306589398660739],[118,224,66,0.0030606424468552565],[118,224,67,0.001989151334907375],[118,224,68,0.0010535270061780009],[118,224,69,2.4175179788586207E-4],[118,224,70,-4.4715727941381457E-4],[118,224,71,-0.0010063699410174758],[118,224,72,-0.0014238071654651132],[118,224,73,-0.0016844628058639204],[118,224,74,-0.0017724772141696349],[118,224,75,-0.0016729581876658872],[118,224,76,-0.0013735449242387992],[118,224,77,-8.657110548939422E-4],[118,224,78,-1.4580320528928076E-4],[118,224,79,7.841880803643104E-4],[118,225,64,0.005243528095026568],[118,225,65,0.003665584465445061],[118,225,66,0.0023215633806505922],[118,225,67,0.001172645067906305],[118,225,68,1.818225186231821E-4],[118,225,69,-6.629602706984506E-4],[118,225,70,-0.0013631165796427558],[118,225,71,-0.0019126313153279403],[118,225,72,-0.002300635455457293],[118,225,73,-0.0025137271806535025],[118,225,74,-0.0025380346067907277],[118,225,75,-0.002361015413318327],[118,225,76,-0.001972989055518171],[118,225,77,-0.0013683976444796055],[118,225,78,-5.46791975162091E-4],[118,225,79,4.8646042312340337E-4],[118,226,64,0.0046847458811458305],[118,226,65,0.0030019887082085497],[118,226,66,0.0015695475860462973],[118,226,67,3.525147325625144E-4],[118,226,68,-6.845568249598319E-4],[118,226,69,-0.0015538866415442051],[118,226,70,-0.0022574584706015585],[118,226,71,-0.002790215571553296],[118,226,72,-0.003142636151342337],[118,226,73,-0.00330304620736748],[118,226,74,-0.003259664677210403],[118,226,75,-0.0030023761993011986],[118,226,76,-0.0025242271936157783],[118,226,77,-0.0018226413797287155],[118,226,78,-9.003512577899311E-4],[118,226,79,2.3395751724515637E-4],[118,227,64,0.004145200889463439],[118,227,65,0.0023657767284720257],[118,227,66,8.524170330557404E-4],[118,227,67,-4.2592787478870544E-4],[118,227,68,-0.0015032180101544963],[118,227,69,-0.0023919320984970766],[118,227,70,-0.003094704972443996],[118,227,71,-0.0036074993171862236],[118,227,72,-0.003922179136163449],[118,227,73,-0.004028812047914878],[118,227,74,-0.003917695326321892],[118,227,75,-0.0035811010077850705],[118,227,76,-0.003014735805867672],[118,227,77,-0.0022189119936093303],[118,227,78,-0.0011994258326894678],[118,227,79,3.1859456717518555E-5],[118,228,64,0.0036923707104622996],[118,228,65,0.0018256499148372749],[118,228,66,2.3953268336933585E-4],[118,228,67,-0.0010931153090481792],[118,228,68,-0.0022047759335161923],[118,228,69,-0.003108279363736188],[118,228,70,-0.003806995676693899],[118,228,71,-0.004297973996041247],[118,228,72,-0.004574508173609792],[118,228,73,-0.004628423845295174],[118,228,74,-0.004452081798266693],[118,228,75,-0.004040093008760516],[118,228,76,-0.0033907411371959257],[118,228,77,-0.002507108696927452],[118,228,78,-0.0013979035411414052],[118,228,79,-7.798273550069922E-5],[118,229,64,0.003380646113640505],[118,229,65,0.0014379013915159753],[118,229,66,-2.1146895854630852E-4],[118,229,67,-0.0015904991746608023],[118,229,68,-0.0027301169210218208],[118,229,69,-0.003643582725746775],[118,229,70,-0.0043350912311962125],[118,229,71,-0.004802861823843558],[118,229,72,-0.005041685691238492],[118,229,73,-0.005045188468486459],[118,229,74,-0.004807803462855188],[118,229,75,-0.0043264508760069076],[118,229,76,-0.0036019188789128778],[118,229,77,-0.00263994283157887],[118,229,78,-0.0014519793747553853],[118,229,79,-5.567255001695934E-5],[118,230,64,0.00324632216483947],[118,230,65,0.0012402082665566284],[118,230,66,-4.619551414087551E-4],[118,230,67,-0.0018788496193247665],[118,230,68,-0.003039706270680838],[118,230,69,-0.003958262221306058],[118,230,70,-0.004639610882365372],[118,230,71,-0.005083223146214166],[118,230,72,-0.0052854608373655975],[118,230,73,-0.005241802079387614],[118,230,74,-0.004948773651614125],[118,230,75,-0.0044055858459418566],[118,230,76,-0.0036154657745184103],[118,230,77,-0.002586685520608622],[118,230,78,-0.0013332819637658572],[118,230,79,1.2453445722803916E-4],[118,231,64,0.003309712169455041],[118,231,65,0.001253741523713277],[118,231,66,-4.901926563497157E-4],[118,231,67,-0.0019361473647915065],[118,231,68,-0.003111464717026085],[118,231,69,-0.004030357190945948],[118,231,70,-0.0046988601479520725],[118,231,71,-0.005117759331053221],[118,231,72,-0.005285052442078918],[118,231,73,-0.005198121395505679],[118,231,74,-0.004855610446204387],[118,231,75,-0.004259005826707226],[118,231,76,-0.0034139129714897314],[118,231,77,-0.002331027848048264],[118,231,78,-0.001026799353621624],[118,231,79,4.762198316254325E-4],[118,232,64,0.0035771535216068463],[118,232,65,0.0014851674883701134],[118,232,66,-2.893507122051748E-4],[118,232,67,-0.001755580175592155],[118,232,68,-0.0029387452542929374],[118,232,69,-0.0038534742423803484],[118,232,70,-0.004506744759174563],[118,232,71,-0.0049006914102415556],[118,232,72,-0.005034994744032888],[118,232,73,-0.004908982289594134],[118,232,74,-0.004523437036820766],[118,232,75,-0.003882109156995682],[118,232,76,-0.0029929272006408575],[118,232,77,-0.001868905448850143],[118,232,78,-5.28744529655133E-4],[118,232,79,0.0010028771612614513],[118,233,64,0.0040429027449586956],[118,233,65,0.0019285378039344554],[118,233,66,1.3438575017148756E-4],[118,233,67,-0.001343647380534028],[118,233,68,-0.0025284141790476557],[118,233,69,-0.003434833703079286],[118,233,70,-0.0040707751369357835],[118,233,71,-0.0044397188700115225],[118,233,72,-0.004543050356120738],[118,233,73,-0.0043820702008874534],[118,233,74,-0.003959716044481002],[118,233,75,-0.0032819922370839368],[118,233,76,-0.002359103737031374],[118,233,77,-0.001206291093406513],[118,233,78,1.5563619752281656E-4],[118,233,79,0.0017000702531086943],[118,234,64,0.004690918542636999],[118,234,65,0.0025670667923331906],[118,234,66,7.6359125304988E-4],[118,234,67,-7.1837341085623E-4],[118,234,68,-0.0018990372140388816],[118,234,69,-0.0027934153014096256],[118,234,70,-0.0034101619955500162],[118,234,71,-0.0037540590125058047],[118,234,72,-0.0038281906972533696],[118,234,73,-0.0036358423674823456],[118,234,74,-0.0031821175798454567],[118,234,75,-0.0024752705526209827],[118,234,76,-0.001527750400367792],[118,234,77,-3.5695425653909665E-4],[118,234,78,0.0010143132242950823],[118,234,79,0.002557676085724532],[118,235,64,0.005496531523959121],[118,235,65,0.003374794927019424],[118,235,66,0.0015712622936299178],[118,235,67,9.236854229046718E-5],[118,235,68,-0.0010791717129808103],[118,235,69,-0.001958203954107987],[118,235,70,-0.0025540038070295122],[118,235,71,-0.0028725674524671735],[118,235,72,-0.0029186442608908586],[118,235,73,-0.0026975020347284216],[118,235,74,-0.0022164209580636707],[118,235,75,-0.0014859127595404256],[118,235,76,-5.206620008602822E-4],[118,235,77,6.598131918577838E-4],[118,235,78,0.0020307832368363058],[118,235,79,0.003562213937498044],[118,236,64,0.006427999129973062],[118,236,65,0.004318137005672252],[118,236,66,0.0025223658421441994],[118,236,67,0.0010524215126298567],[118,236,68,-1.0576608188371093E-4],[118,236,69,-9.665366755683868E-4],[118,236,70,-0.0015395669997910737],[118,236,71,-0.0018319404578278277],[118,236,72,-0.001850013240391467],[118,236,73,-0.0016010249487498208],[118,236,74,-0.001094450148181022],[118,236,75,-3.430876619326514E-4],[118,236,76,6.361151962125959E-4],[118,236,77,0.0018215058670633562],[118,236,78,0.0031864393050750105],[118,236,79,0.004699261916521403],[118,237,64,0.007447944139723079],[118,237,65,0.00535731347414822],[118,237,66,0.003575272363536826],[118,237,67,0.0021187970161899174],[118,237,68,9.773323149852575E-4],[118,237,69,1.3744823977021692E-4],[118,237,70,-4.1065990651596333E-4],[118,237,71,-6.749999902866542E-4],[118,237,72,-6.634591860145243E-4],[118,237,73,-3.852386070797071E-4],[118,237,74,1.479567931417569E-4],[118,237,75,9.20975905790389E-4],[118,237,76,0.0019145292266208069],[118,237,77,0.0031047488187168856],[118,237,78,0.004463002247844541],[118,237,79,0.005955961912690579],[118,238,64,0.008514675006387008],[118,238,65,0.006447663224924731],[118,238,66,0.004683071774575939],[118,238,67,0.0032430130867042053],[118,238,68,0.002120759368948939],[118,238,69,0.0013042584781890014],[118,238,70,7.838983844209119E-4],[118,238,71,5.509375492585867E-4],[118,238,72,5.960414722262061E-4],[118,238,73,9.080450905967765E-4],[118,238,74,0.0014729438705249759],[118,238,75,0.002273116085253233],[118,238,76,0.003286778435174276],[118,238,77,0.004487676827043762],[118,238,78,0.0058450137985045485],[118,238,79,0.007323613752417226],[118,239,64,0.009580865081769238],[118,239,65,0.007539227873939853],[118,239,66,0.005793906134632408],[118,239,67,0.004372006097967032],[118,239,68,0.0032709472064339036],[118,239,69,0.002480578912366478],[118,239,70,0.001991845744886092],[118,239,71,0.001795490729207034],[118,239,72,0.0018808257110116589],[118,239,73,0.002234710703269873],[118,239,74,0.002840744685350543],[118,239,75,0.0036786699684240843],[118,239,76,0.004723991927108535],[118,239,77,0.005947815587421361],[118,239,78,0.007316900258021719],[118,239,79,0.00879393309836465],[118,240,64,0.010592335161001231],[118,240,65,0.008578303979904044],[118,240,66,0.006854704702706983],[118,240,67,0.005453394094134267],[118,240,68,0.004376218909076762],[118,240,69,0.0036154820997791187],[118,240,70,0.0031630929777233907],[118,240,71,0.003009551528001166],[118,240,72,0.0031429689409167437],[118,240,73,0.0035482796429466526],[118,240,74,0.004206646833515258],[118,240,75,0.005095063245612563],[118,240,76,0.006186148562525693],[118,240,77,0.007448144642052467],[118,240,78,0.008845109425969177],[118,240,79,0.010337310148921407],[118,241,64,0.011504950626570691],[118,241,65,0.009521659775928707],[118,241,66,0.00782308416933394],[118,241,67,0.006445468915428869],[118,241,68,0.005395303623593869],[118,241,69,0.004667900236643276],[118,241,70,0.004256573190289402],[118,241,71,0.004151905364444868],[118,241,72,0.004341029475974935],[118,241,73,0.0048070832140738795],[118,241,74,0.0055288396949218525],[118,241,75,0.006480514551834865],[118,241,76,0.007631750720266646],[118,241,77,0.008947781725744685],[118,241,78,0.010389774039379346],[118,241,79,0.01191534883244409],[118,242,64,0.012287361405081151],[118,242,65,0.010338422347615683],[118,242,66,0.008668543312092119],[118,242,67,0.007317881487966008],[118,242,68,0.006297708586078249],[118,242,69,0.005606883456590617],[118,242,70,0.005240582000312673],[118,242,71,0.005189838428381999],[118,242,72,0.005441092091970151],[118,242,73,0.0059758904991027905],[118,242,74,0.0067707496679947216],[118,242,75,0.0077971727337262835],[118,242,76,0.009021827497027056],[118,242,77,0.010406883382194481],[118,242,78,0.01191050805781798],[118,242,79,0.013487523771259896],[118,243,64,0.012919756411232637],[118,243,65,0.011008895438983205],[118,243,66,0.009371355932811343],[118,243,67,0.008050626558546157],[118,243,68,0.007062815529252004],[118,243,69,0.006410828899716409],[118,243,70,0.0060921602275800495],[118,243,71,0.006098693956094397],[118,243,72,0.0064165160213105555],[118,243,73,0.00702586369915931],[118,243,74,0.007901215425822568],[118,243,75,0.009011521119305104],[118,243,76,0.010320573330056308],[118,243,77,0.011787519355500554],[118,243,78,0.013367514269285905],[118,243,79,0.015012514643002253],[118,244,64,0.01339262488930941],[118,244,65,0.01152338114081822],[118,244,66,0.009921464155423675],[118,244,67,0.008633022989960968],[118,244,68,0.007678966542757095],[118,244,69,0.007066692309321554],[118,244,70,0.006796451811693388],[118,244,71,0.0068613964382869255],[118,244,72,0.00724764392564826],[118,244,73,0.007934468115909874],[118,244,74,0.008894612326901948],[118,244,75,0.010094726492057483],[118,244,76,0.011495928053750265],[118,244,77,0.013054486428006976],[118,244,78,0.014722630702338181],[118,244,79,0.016449480083588833],[118,245,64,0.013705524607460962],[118,245,65,0.011881005352109172],[118,245,66,0.010317371902353885],[118,245,67,0.009062689339985901],[118,245,68,0.008142538992811352],[118,245,69,0.0075691816328683145],[118,245,70,0.007346036298024811],[118,245,71,0.007467942971159418],[118,245,72,0.007921470934201697],[118,245,73,0.00868533575442627],[118,245,74,0.009730924870828257],[118,245,75,0.011022931592262872],[118,245,76,0.012520097170056133],[118,245,77,0.014176060467318514],[118,245,78,0.015940314616762628],[118,245,79,0.017759269940111747],[118,246,64,0.01386585698092523],[118,246,65,0.012088547019919973],[118,246,66,0.010565038474789162],[118,246,67,0.009344514546138018],[118,246,68,0.00845700919624962],[118,246,69,0.007919932180086799],[118,246,70,0.007740235295878004],[118,246,71,0.00791486100611985],[118,246,72,0.008431272861798848],[118,246,73,0.009268081531990765],[118,246,74,0.010395766071893728],[118,246,75,0.011777489927368054],[118,246,76,0.013370011047021136],[118,246,77,0.015124685354994527],[118,246,78,0.01698856273028683],[118,246,79,0.018905574543193353],[118,247,64,0.013887649329538228],[118,247,65,0.012159271286426254],[118,247,66,0.010676772278595096],[118,247,67,0.0094896236466392],[118,247,68,0.00863200464271651],[118,247,69,0.008126662978217729],[118,247,70,0.00798439238581781],[118,247,71,0.008204631810042879],[118,247,72,0.008776192757945497],[118,247,73,0.009678071093736114],[118,247,74,0.010880342616207855],[118,247,75,0.012345141641000649],[118,247,76,0.014027721701604157],[118,247,77,0.015877597384593302],[118,247,78,0.017839766227214206],[118,247,79,0.0198560095304643],[118,248,64,0.01379034461239714],[118,248,65,0.012111766803916528],[118,248,66,0.010670124863201465],[118,248,67,0.009514338586097605],[118,248,68,0.008682344667958353],[118,248,69,0.0082023140625757],[118,248,70,0.008089126037818636],[118,248,71,0.008345079016413593],[118,248,72,0.008960784987640186],[118,248,73,0.009916139263788074],[118,248,74,0.01118136467172792],[118,248,75,0.01271812916800467],[118,248,76,0.014480735773156216],[118,248,77,0.016417383638506023],[118,248,78,0.018471498987668283],[118,248,79,0.02058313461669676],[118,249,64,0.013597599128442906],[118,249,65,0.011968787619481532],[118,249,66,0.010566785575662055],[118,249,67,0.009439134282501193],[118,249,68,0.008627069601204051],[118,249,69,0.008164164550536868],[118,249,70,0.008069555199022287],[118,249,71,0.008348721729077333],[118,249,72,0.008994516107195632],[118,249,73,0.009988258201268002],[118,249,74,0.011300899236658016],[118,249,75,0.012894251391918089],[118,249,76,0.014722282254020674],[118,249,77,0.016732472782637793],[118,249,78,0.018867237374452134],[118,249,79,0.02088294414270882],[118,250,64,0.013336088826063075],[118,250,65,0.011756100180997386],[118,250,66,0.010391477276496258],[118,250,67,0.009287590270507552],[118,250,68,0.00848845854096089],[118,250,69,0.00803293146927642],[118,250,70,0.007944497320222128],[118,250,71,0.008232091735527167],[118,250,72,0.00889122187500473],[118,250,73,0.009905154385256748],[118,250,74,0.011246165941271041],[118,250,75,0.012876855022884026],[118,250,76,0.014751513514823322],[118,250,77,0.016817556656770545],[118,250,78,0.019017009819673695],[118,250,79,0.020723711367996177],[118,251,64,0.013034325027565007],[118,251,65,0.011501336174912695],[118,251,66,0.01017085371799586],[118,251,67,0.009085338384983405],[118,251,68,0.008291036056596637],[118,251,69,0.00783184944268002],[118,251,70,0.007735638714441534],[118,251,71,0.008015014496595857],[118,251,72,0.0086685198290457],[118,251,73,0.009681873622776184],[118,251,74,0.011029274262580907],[118,251,75,0.012674761929404116],[118,251,76,0.014573638145554192],[118,251,77,0.016673940987706328],[118,251,78,0.018917974366523697],[118,251,79,0.020829641170686277],[118,252,64,0.012721480545530647],[118,252,65,0.011232852074350586],[118,252,66,0.009932399349591796],[118,252,67,0.008859007108574436],[118,252,68,0.008060568268261993],[118,252,69,0.007585731491424346],[118,252,70,0.0074666772799187155],[118,252,71,0.007719853705014645],[118,252,72,0.008347176971043865],[118,252,73,0.009337293360231043],[118,252,74,0.010666901171764815],[118,252,75,0.012302131188000793],[118,252,76,0.014199984130918252],[118,252,77,0.016309823513468057],[118,252,78,0.018574922244310337],[118,252,79,0.020934061311696173],[118,253,64,0.012426227347664659],[118,253,65,0.010978596453237196],[118,253,66,0.00970333248881363],[118,253,67,0.008635163378085862],[118,253,68,0.007823048925494935],[118,253,69,0.0073200113629041915],[118,253,70,0.0071624377742628845],[118,253,71,0.007370719347547446],[118,253,72,0.007950432222747926],[118,253,73,0.008893581682862412],[118,253,74,0.010179908312210799],[118,253,75,0.011778254662235685],[118,253,76,0.013647990891172477],[118,253,77,0.015740497781452874],[118,253,78,0.018000705488537615],[118,253,79,0.020368686338114565],[118,254,64,0.012175587114716377],[118,254,65,0.010764986308588133],[118,254,66,0.009509512980461775],[118,254,67,0.00843925282688039],[118,254,68,0.0076036762856616785],[118,254,69,0.0070597679850829455],[118,254,70,0.006847959997305833],[118,254,71,0.006992639365285862],[118,254,72,0.007503273463885399],[118,254,73,0.008375602509887914],[118,254,74,0.009592897902951024],[118,254,75,0.011127284988120028],[118,254,76,0.012941128749301724],[118,254,77,0.014988480873018798],[118,254,78,0.017216586563949553],[118,254,79,0.019567449449296],[118,255,64,0.011993796232344766],[118,255,65,0.010615793828763858],[118,255,66,0.009374355660988341],[118,255,67,0.008294539634630393],[118,255,68,0.007425821787674615],[118,255,69,0.006828732831096953],[118,255,70,0.006547560428071534],[118,255,71,0.006610695185225634],[118,255,72,0.007031669125239851],[118,255,73,0.007810266636502526],[118,255,74,0.008933706679521215],[118,255,75,0.01037789492832451],[118,255,76,0.012108744433535427],[118,255,77,0.014083563313165032],[118,255,78,0.01625250790863718],[118,255,79,0.018560099788250663],[118,256,64,0.011901186962397314],[118,256,65,0.010551045250523881],[118,256,66,0.009317751149931263],[118,256,67,0.008221047361915446],[118,256,68,0.007309991724682904],[118,256,69,0.006648281190246556],[118,256,70,0.006283868067225741],[118,256,71,0.006249121594540458],[118,256,72,0.006561754495231995],[118,256,73,0.0072258284392427334],[118,256,74,0.008232837323549968],[118,256,75,0.009562867164436191],[118,256,76,0.011185831292617193],[118,256,77,0.013062779448500096],[118,256,78,0.01514727929324993],[118,256,79,0.017386868782799214],[118,257,64,0.011913094754545045],[118,257,65,0.010585940798610501],[118,257,66,0.009355002034472018],[118,257,67,0.008234507955501829],[118,257,68,0.007272788295801754],[118,257,69,0.006536413033383481],[118,257,70,0.006076839627523662],[118,257,71,0.005930375726983776],[118,257,72,0.006118977327475198],[118,257,73,0.006651132852966023],[118,257,74,0.007522832217463416],[118,257,75,0.00871861979695111],[118,257,76,0.01021273012332619],[118,257,77,0.011970305004588339],[118,257,78,0.0139486906795022],[118,257,79,0.01609881353173835],[118,258,64,0.012038979667796532],[118,258,65,0.010730045883702015],[118,258,66,0.009496089251647072],[118,258,67,0.008345698582941487],[118,258,68,0.007326306394816291],[118,258,69,0.006507197673796131],[118,258,70,0.005943239277327887],[118,258,71,0.005674639090666112],[118,258,72,0.005727609947191963],[118,258,73,0.006115126450628953],[118,258,74,0.006837773909703081],[118,258,75,0.00788468845537976],[118,258,76,0.0092345872790493],[118,258,77,0.010856887808114007],[118,258,78,0.01271291452473837],[118,258,79,0.014757192035378187],[118,259,64,0.012286015720696012],[118,259,65,0.010992236135507549],[118,259,66,0.009752010281591002],[118,259,67,0.008568164887277427],[118,259,68,0.007487049337613293],[118,259,69,0.006580452670026631],[118,259,70,0.0059064760193056655],[118,259,71,0.005509090538185433],[118,259,72,0.00541866758587461],[118,259,73,0.005652608249163227],[118,259,74,0.006216071558237077],[118,259,75,0.007102800606222438],[118,259,76,0.008296045636551015],[118,259,77,0.009769583026716556],[118,259,78,0.011488828972335458],[118,259,79,0.013412046563000001],[118,260,64,0.012662262893884921],[118,260,65,0.01138348250614241],[118,260,66,0.01013709818297253],[118,260,67,0.008920038035287441],[118,260,68,0.007777218517772648],[118,260,69,0.006782471461062028],[118,260,70,0.005996732395847586],[118,260,71,0.005467402952185974],[118,260,72,0.005228748521914488],[118,260,73,0.005302400837827084],[118,260,74,0.005697964980508191],[118,260,75,0.006413730159224182],[118,260,76,0.007437483456429389],[118,260,77,0.00874742557754611],[118,260,78,0.010313187510223414],[118,260,79,0.01209694687168529],[118,261,64,0.013174062317396457],[118,261,65,0.01191263681937845],[118,261,66,0.01066310699656101],[118,261,67,0.009416391766229703],[118,261,68,0.008215505747031436],[118,261,69,0.007135653734132066],[118,261,70,0.006240016531469146],[118,261,71,0.005578926825051855],[118,261,72,0.00519013621298747],[118,261,73,0.005099191654566055],[118,261,74,0.005319920994974761],[118,261,75,0.005855027048033016],[118,261,76,0.006696789552260398],[118,261,77,0.007827874156938329],[118,261,78,0.009222247446133962],[118,261,79,0.010846196871372168],[118,262,64,0.013825641671458612],[118,262,65,0.0125859962573159],[118,262,66,0.01133872888976148],[118,262,67,0.010068698483806078],[118,262,68,0.008816477100899955],[118,262,69,0.007657814281567355],[118,262,70,0.006657400116041331],[118,262,71,0.005867866759841811],[118,262,72,0.0053299275738671915],[118,262,73,0.0050726289243697735],[118,262,74,0.005113714441569843],[118,262,75,0.005460101353843482],[118,262,76,0.006108468339107501],[118,262,77,0.007045954167564809],[118,262,78,0.00825096625191616],[118,262,79,0.0096940980739562],[118,263,64,0.014619182609794648],[118,263,65,0.013407400554206451],[118,263,66,0.01216971527611714],[118,263,67,0.010884958789668036],[118,263,68,0.00959068895816807],[118,263,69,0.008362260671707639],[118,263,70,0.007265031179268775],[118,263,71,0.0063532023143270284],[118,263,72,0.005669835379984422],[118,263,73,0.005246980549500705],[118,263,74,0.00510592071926802],[118,263,75,0.0052575295641039375],[118,263,76,0.005702743363434781],[118,263,77,0.006433145992857153],[118,263,78,0.007431666310247929],[118,263,79,0.008673387010511173],[118,264,64,0.01555521459987901],[118,264,65,0.014378654742893413],[118,264,66,0.013159319901034664],[118,264,67,0.011870147088987256],[118,264,68,0.010545112032784118],[118,264,69,0.009258168533856843],[118,264,70,0.008074431777411226],[118,264,71,0.007048878793207637],[118,264,72,0.00622624353012161],[118,264,73,0.005641026848153797],[118,264,74,0.005317621499036045],[118,264,75,0.005270551976495637],[118,264,76,0.005504828932340543],[118,264,77,0.0060164176761526465],[118,264,78,0.006792820106053527],[118,264,79,0.007813769257190335],[118,265,64,0.016633337348531313],[118,265,65,0.015500279505356655],[118,265,66,0.014309065812330138],[118,265,67,0.013026975054760474],[118,265,68,0.011683865065337905],[118,265,69,0.010351256023613474],[118,265,70,0.009093082080864706],[118,265,71,0.00796426942603699],[118,265,72,0.0070105165835852076],[118,265,73,0.006268188564797725],[118,265,74,0.005764325073597886],[118,265,75,0.005516762777311266],[118,265,76,0.0055343714668403335],[118,265,77,0.005817403750412872],[118,265,78,0.006357957752056541],[118,265,79,0.007140552121620036],[118,266,64,0.017853273495244855],[118,266,65,0.016772590702601353],[118,266,66,0.015619837671609228],[118,266,67,0.014356974290955985],[118,266,68,0.013009259412237836],[118,266,69,0.011644758624190446],[118,266,70,0.01032529195952953],[118,266,71,0.00910490999589088],[118,266,72,0.008029564633653624],[118,266,73,0.007136891240186158],[118,266,74,0.006456102487421035],[118,266,75,0.006007994021182852],[118,266,76,0.005805061915908539],[118,266,77,0.005851731688575481],[118,266,78,0.006144698472226961],[118,266,79,0.006673377783824277],[118,267,64,0.0192162527999545],[118,267,65,0.018197109213398868],[118,267,66,0.017093300430375193],[118,267,67,0.01586189911824408],[118,267,68,0.014523155371280221],[118,267,69,0.013140705057752297],[118,267,70,0.01177336079954398],[118,267,71,0.010473506638727056],[118,267,72,0.009286664251870231],[118,267,73,0.008251166718880683],[118,267,74,0.007397940296117391],[118,267,75,0.006750394459360611],[118,267,76,0.006324420300961486],[118,267,77,0.006128497188335807],[118,267,78,0.0061639074192672665],[118,267,79,0.006425058444555103],[118,268,64,0.020726728625789524],[118,268,65,0.01977830179538414],[118,268,66,0.018733644992288034],[118,268,67,0.017545450019049905],[118,268,68,0.016228630711811392],[118,268,69,0.014841494727465604],[118,268,70,0.013439025949060695],[118,268,71,0.012071217214774287],[118,268,72,0.010782535935913332],[118,268,73,0.009611492286153718],[118,268,74,0.008590310533099926],[118,268,75,0.0077447039054679935],[118,268,76,0.007093753213472203],[118,268,77,0.006649889267461139],[118,268,78,0.006418978971774431],[118,268,79,0.006400514808406608],[118,269,64,0.020316467513349944],[118,269,65,0.02120758411545157],[118,269,66,0.02054966110953078],[118,269,67,0.01941531792035611],[118,269,68,0.018131961535388475],[118,269,69,0.01675177678516339],[118,269,70,0.015325199881548157],[118,269,71,0.01389920636040768],[118,269,72,0.012516678216537382],[118,269,73,0.01121586766352835],[118,269,74,0.01002995821200926],[118,269,75,0.008986723589999954],[118,269,76,0.008108284860575403],[118,269,77,0.007410965925729902],[118,269,78,0.006905247442416235],[118,269,79,0.006595819018359321],[118,270,64,0.018507091332933198],[118,270,65,0.01930935540901553],[118,270,66,0.020227529612059633],[118,270,67,0.021316008390976447],[118,270,68,0.020244915278239465],[118,270,69,0.018880630620722785],[118,270,70,0.01743799588203313],[118,270,71,0.015960474061192647],[118,270,72,0.014488958325795328],[118,270,73,0.013061129852278206],[118,270,74,0.011710906465406798],[118,270,75,0.010467982737041689],[118,270,76,0.009357462044075147],[118,270,77,0.00839958092645957],[118,270,78,0.007609525929549826],[118,270,79,0.006997342961597264],[118,271,64,0.016519092856406316],[118,271,65,0.017224714565246553],[118,271,66,0.01805790815218053],[118,271,67,0.019075729286426212],[118,271,68,0.020280366144941803],[118,271,69,0.021221779031991527],[118,271,70,0.019768524699018006],[118,271,71,0.01824351037470095],[118,271,72,0.016685367081965267],[118,271,73,0.015131011219919114],[118,271,74,0.013614976671007053],[118,271,75,0.012168831588276417],[118,271,76,0.01082068051634256],[118,271,77,0.009594752348618637],[118,271,78,0.008511074473436478],[118,271,79,0.00758523331377803],[118,272,64,0.01444144823984744],[118,272,65,0.015043397623732547],[118,272,66,0.015784695362186317],[118,272,67,0.0167243740122005],[118,272,68,0.017870314670952275],[118,272,69,0.019192121290797767],[118,272,70,0.020656001389724437],[118,272,71,0.020668852792382224],[118,272,72,0.019031628355163494],[118,272,73,0.017357513677176604],[118,272,74,0.015681490199436196],[118,272,75,0.014036870121885037],[118,272,76,0.012454667563290271],[118,272,77,0.010963048898907686],[118,272,78,0.009586862801985747],[118,272,79,0.008347250373089263],[118,273,64,0.012375939810836612],[118,273,65,0.012868259415780566],[118,273,66,0.013511142249534237],[118,273,67,0.01436482375078573],[118,273,68,0.015442641833380313],[118,273,69,0.016722066080262988],[118,273,70,0.018175432777078417],[118,273,71,0.019771719247016893],[118,273,72,0.021442955492020216],[118,273,73,0.01966313083870068],[118,273,74,0.01784137179681731],[118,273,75,0.016012496502429932],[118,273,76,0.014210198157948658],[118,273,77,0.012466361430607925],[118,273,78,0.010810452019639082],[118,273,79,0.009268979954446433],[118,274,64,0.010411744593307152],[118,274,65,0.010789858360304473],[118,274,66,0.011328632719981725],[118,274,67,0.012088678949106197],[118,274,68,0.013088424871158291],[118,274,69,0.014313231834962983],[118,274,70,0.015741665216679877],[118,274,71,0.017347251958654518],[118,274,72,0.01909960828987403],[118,274,73,0.020965506299325504],[118,274,74,0.020028367272968074],[118,274,75,0.018037281563379064],[118,274,76,0.016037529039369922],[118,274,77,0.014064355723884831],[118,274,78,0.0121514822781143],[118,274,79,0.01033042861373988],[118,275,64,0.008625985855173825],[118,275,65,0.008886943517344901],[118,275,66,0.009317096350048543],[118,275,67,0.009976586817330381],[118,275,68,0.010888451967810034],[118,275,69,0.012045803551309221],[118,275,70,0.013433412868168097],[118,275,71,0.01502943630013942],[118,275,72,0.016806623957782887],[118,275,73,0.018733474102806968],[118,275,74,0.020775331869738168],[118,275,75,0.02005438957097081],[118,275,76,0.01788688354397632],[118,275,77,0.015715009600252045],[118,275,78,0.013576249768119573],[118,275,79,0.01150662782703707],[118,276,64,0.007084147459566892],[118,276,65,0.007226802483328486],[118,276,66,0.007545280982679366],[118,276,67,0.00809842785669516],[118,276,68,0.00891331338487893],[118,276,69,0.009990495566984935],[118,276,70,0.011320803918230014],[118,276,71,0.01288701786785891],[118,276,72,0.01466514341907859],[118,276,73,0.016625642097909434],[118,276,74,0.018734610613348933],[118,276,75,0.02095490974977094],[118,276,76,0.019709083586341155],[118,276,77,0.017375297253098453],[118,276,78,0.015048430826507602],[118,276,79,0.012768385020371578],[118,277,64,0.005840349509442649],[118,277,65,0.005865468697187821],[118,277,66,0.00607088381007606],[118,277,67,0.00651336019062017],[118,277,68,0.007223349645639524],[118,277,69,0.008208397923162351],[118,277,70,0.009465122900064547],[118,277,71,0.010980831446742754],[118,277,72,0.012734849266297787],[118,277,73,0.014699809004576922],[118,277,74,0.016842894969967305],[118,277,75,0.01912704289102104],[118,277,76,0.021456328745683626],[118,277,77,0.019002020620908798],[118,277,78,0.016529952864268824],[118,277,79,0.014083181043738657],[118,278,64,0.004937483990960893],[118,278,65,0.004847786938066876],[118,278,66,0.004940539813234134],[118,278,67,0.005269720671581602],[118,278,68,0.0058684558570447545],[118,278,69,0.006750678208660985],[118,278,70,0.007918407859976738],[118,278,71,0.009363294445371229],[118,278,72,0.01106798389575994],[118,278,73,0.013007448847421825],[118,278,74,0.015150280940295777],[118,278,75,0.017459943362717743],[118,278,76,0.01989598208649162],[118,278,77,0.020552787532181954],[118,278,78,0.017982011732587455],[118,278,79,0.015416213603546745],[118,279,64,0.0044072093211035],[118,279,65,0.004207335991122281],[118,279,66,0.00418966661730506],[118,279,67,0.004404781918344578],[118,279,68,0.004887741431645973],[118,279,69,0.005658138263793865],[118,279,70,0.006722901871110553],[118,279,71,0.008077754225627317],[118,279,72,0.009708596477353683],[118,279,73,0.011592863842967451],[118,279,74,0.013700846957474462],[118,279,75,0.015996977998375968],[118,279,76,0.018441079971510423],[118,279,77,0.020989577633784808],[118,279,78,0.019366235069979185],[118,279,79,0.016731586102034474],[118,280,64,0.004269802889731408],[118,280,65,0.003966207638072661],[118,280,66,0.0038421649956856168],[118,280,67,0.003944364604375411],[118,280,68,0.004309044629044138],[118,280,69,0.004960625270377172],[118,280,70,0.005910358533422839],[118,280,71,0.0071576890820738434],[118,280,72,0.008691643325749508],[118,280,73,0.0104921905479908],[118,280,74,0.012531574297564574],[118,280,75,0.014775612329071318],[118,280,76,0.01718496345328326],[118,280,77,0.01971635973732255],[118,280,78,0.020645991113307137],[118,280,79,0.017993641280068005],[118,281,64,0.0045338708555657265],[118,281,65,0.004134641293564315],[118,281,66,0.0039099744136175865],[118,281,67,0.0039023044684692552],[118,281,68,0.004148301478173567],[118,281,69,0.004676296887004889],[118,281,70,0.005501201222022525],[118,281,71,0.006625762739319071],[118,281,72,0.008041941648657352],[118,281,73,0.009732259351455703],[118,281,74,0.011671120920981217],[118,281,75,0.01382610911455806],[118,281,76,0.01615924827541942],[118,281,77,0.018628236556369783],[118,281,78,0.021187644978636788],[118,281,79,0.019168439021471903],[118,282,64,0.005195914609313435],[118,282,65,0.004710513756991509],[118,282,66,0.004392483143938935],[118,282,67,0.004279773652701459],[118,282,68,0.004408768767238998],[118,282,69,0.004810740205058667],[118,282,70,0.005503535952777736],[118,282,71,0.0064927323325416515],[118,282,72,0.007772976734657522],[118,282,73,0.009329307469454543],[118,282,74,0.011138448999345399],[118,282,75,0.013170080868755383],[118,282,76,0.015388078713045022],[118,282,77,0.017751725797627873],[118,282,78,0.020216893615162268],[118,282,79,0.02022537765277776],[118,283,64,0.006239753455098927],[118,283,65,0.00567868368188595],[118,283,66,0.005275792613212021],[118,283,67,0.005064456090482762],[118,283,68,0.005080100897154184],[118,283,69,0.0053559444007484835],[118,283,70,0.005912017824331433],[118,283,71,0.006756209916772271],[118,283,72,0.007885562713673801],[118,283,73,0.009287545663304163],[118,283,74,0.010941306433345814],[118,283,75,0.012818896767933389],[118,283,76,0.014886471824620237],[118,283,77,0.01710546148744655],[118,283,78,0.019433712225169455],[118,283,79,0.021138958062296438],[118,284,64,0.007635803183151814],[118,284,65,0.007010190481008297],[118,284,66,0.006531835745389001],[118,284,67,0.006229576768385802],[118,284,68,0.00613728048646694],[118,284,69,0.006289127041353956],[118,284,70,0.006706571068941971],[118,284,71,0.007399277614037436],[118,284,72,0.008366357076887994],[118,284,73,0.009597578945023505],[118,284,74,0.011074562701895886],[118,284,75,0.012771944355618023],[118,284,76,0.014658517089041295],[118,284,77,0.016698344596319453],[118,284,78,0.018851845740966277],[118,284,79,0.02107684924604297],[118,285,64,0.00934021031192623],[118,285,65,0.00866130748441653],[118,285,66,0.008117349162041682],[118,285,67,0.0077327847690865145],[118,285,68,0.007539402690567249],[118,285,69,0.007571414069311047],[118,285,70,0.007850962800418602],[118,285,71,0.008388956553592326],[118,285,72,0.009186229179330117],[118,285,73,0.010234681561362905],[118,285,74,0.011518399400641016],[118,285,75,0.013014746467263295],[118,285,76,0.01469543191346129],[118,285,77,0.016527550302915476],[118,285,78,0.018474593079256082],[118,285,79,0.02049743026938593],[118,286,64,0.011293841865918785],[118,286,65,0.010572449249474725],[118,286,66,0.00997269917239575],[118,286,67,0.009514890068636955],[118,286,68,0.009228313254857786],[118,286,69,0.009146373535248086],[118,286,70,0.00929123058522315],[118,286,71,0.009674529788560622],[118,286,72,0.010298482966870977],[118,286,73,0.01115692655670295],[118,286,74,0.012236355828058812],[118,286,75,0.013516933789459281],[118,286,76,0.014973473481099423],[118,286,77,0.016576392418861243],[118,286,78,0.018292638017930716],[118,286,79,0.020086582895276713],[118,287,64,0.01342113062578342],[118,287,65,0.012666932985365021],[118,287,66,0.012020561542328802],[118,287,67,0.011498454108705066],[118,287,68,0.011127100359859372],[118,287,69,0.010938403179847522],[118,287,70,0.01095396398187924],[118,287,71,0.011185719381672744],[118,287,72,0.011636934169196459],[118,287,73,0.012303170205796745],[118,287,74,0.013173229959303189],[118,287,75,0.014230073442160427],[118,287,76,0.015451707374472727],[118,287,77,0.016812045454809466],[118,287,78,0.0182817386866044],[118,287,79,0.019828974776725405],[118,288,64,0.015628775839162425],[118,288,65,0.014849594099418177],[118,288,66,0.01416445506835327],[118,288,67,0.013586234192616432],[118,288,68,0.01313844033515179],[118,288,69,0.012850971973709092],[118,288,70,0.012744440193367181],[118,288,71,0.012830717842638178],[118,288,72,0.01311384218073663],[118,288,73,0.013590891578666128],[118,288,74,0.014252835110742849],[118,288,75,0.015085353927303572],[118,288,76,0.01606963335715813],[118,288,77,0.017183124749551196],[118,288,78,0.018400276129842633],[118,288,79,0.019693230810504784],[118,289,64,0.01780430043098782],[118,289,65,0.017005257300721176],[118,289,66,0.016287130791974844],[118,289,67,0.015659483944100196],[118,289,68,0.015142799879019007],[118,289,69,0.014764718628233461],[118,289,70,0.014544617184513848],[118,289,71,0.014494077557109578],[118,289,72,0.014617700494304553],[118,289,73,0.014913891253962655],[118,289,74,0.015375616381953675],[118,289,75,0.015991130514417053],[118,289,76,0.016744672278882322],[118,289,77,0.017617128430983408],[118,289,78,0.018586665427682163],[118,289,79,0.019629327704221294],[118,290,64,0.019821276906464028],[118,290,65,0.01900555149436185],[118,290,66,0.018258985809835728],[118,290,67,0.017587955885601983],[118,290,68,0.017009971778660683],[118,290,69,0.016550399775293302],[118,290,70,0.01622731291995958],[118,290,71,0.016051885261725036],[118,290,72,0.016029123697650693],[118,290,73,0.016158569764322898],[118,290,74,0.016434970452123977],[118,290,75,0.016848917175136504],[118,290,76,0.01738745209020932],[118,290,77,0.018034641021309375],[118,290,78,0.018772112309598066],[118,290,79,0.019579560975334333],[118,291,64,0.021455344722522],[118,291,65,0.020744460092470756],[118,291,66,0.01997743922210754],[118,291,67,0.019273055801188297],[118,291,68,0.01864587518268429],[118,291,69,0.01811903072223199],[118,291,70,0.017709223891012368],[118,291,71,0.017427058793913625],[118,291,72,0.017277708543379663],[118,291,73,0.01726154879680758],[118,291,74,0.01737475762730046],[118,291,75,0.01760988095954913],[118,291,76,0.017956362866333345],[118,291,77,0.018401040086169836],[118,291,78,0.01892860018869602],[118,291,79,0.019522002881052703],[118,292,64,0.020054003075182035],[118,292,65,0.020894434133221357],[118,292,66,0.021366340614750616],[118,292,67,0.02064286132987321],[118,292,68,0.019983266308390684],[118,292,69,0.01940852227148086],[118,292,70,0.018933870736447814],[118,292,71,0.01856912402700568],[118,292,72,0.018319291243355105],[118,292,73,0.018185167333094134],[118,292,74,0.018163884498477032],[118,292,75,0.018249425243794377],[118,292,76,0.018433096436138736],[118,292,77,0.018703963823053733],[118,292,78,0.0190492465211816],[118,292,79,0.0194546710605552],[118,293,64,0.019062112303309755],[118,293,65,0.019892554266462775],[118,293,66,0.020671873477850516],[118,293,67,0.021403930214761297],[118,293,68,0.02097464902500775],[118,293,69,0.020375535028846193],[118,293,70,0.01986248768133992],[118,293,71,0.019444266405007297],[118,293,72,0.01912531985520484],[118,293,73,0.018906360842804767],[118,293,74,0.018784897828402595],[118,293,75,0.018755722329649987],[118,293,76,0.01881135166218672],[118,293,77,0.018942426513763287],[118,293,78,0.0191380629300621],[118,293,79,0.019386158368893923],[118,294,64,0.01851802008371841],[118,294,65,0.01932495378845911],[118,294,66,0.0200812917981049],[118,294,67,0.02079470066625789],[118,294,68,0.021459322869398622],[118,294,69,0.020994308036168717],[118,294,70,0.02047280815564299],[118,294,71,0.020034050415617764],[118,294,72,0.019681483052248077],[118,294,73,0.01941517407900303],[118,294,74,0.01923235609565367],[118,294,75,0.01912791914725637],[118,294,76,0.01909485106516603],[118,294,77,0.019124624814486724],[118,294,78,0.019207532464013657],[118,294,79,0.019332965484997855],[118,295,64,0.01843931397468284],[118,295,65,0.01920789683915276],[118,295,66,0.019922914303584918],[118,295,67,0.02059600953319749],[118,295,68,0.021224057514841542],[118,295,69,0.02125563450828906],[118,295,70,0.020757999722900333],[118,295,71,0.020334291533497872],[118,295,72,0.01998649559349562],[118,295,73,0.0197134359356904],[118,295,74,0.01951136960946806],[118,295,75,0.01937451915645945],[118,295,76,0.01929554232882592],[118,295,77,0.019265938564804675],[118,295,78,0.019276391845408847],[118,295,79,0.019317049663491674],[118,296,64,0.018823724044855154],[118,296,65,0.019538379093064856],[118,296,66,0.020193017255167704],[118,296,67,0.0208033628915697],[118,296,68,0.02136884741943147],[118,296,69,0.021165985743991228],[118,296,70,0.020725749339757963],[118,296,71,0.020354081609442957],[118,296,72,0.02005104142847133],[118,296,73,0.019813597265237733],[118,296,74,0.019636310060350878],[118,296,75,0.019511941282379496],[118,296,76,0.01943198549459205],[118,296,77,0.019387126900768083],[118,296,78,0.01936761947017055],[118,296,79,0.01936359037128832],[118,297,64,0.019649881711970844],[118,297,65,0.020294868500809027],[118,297,66,0.020870060660354843],[118,297,67,0.021395284979870074],[118,297,68,0.021161065057301465],[118,297,69,0.020746784157151487],[118,297,70,0.02039749984065409],[118,297,71,0.020114968550029637],[118,297,72,0.019896875233775074],[118,297,73,0.01973773240717873],[118,297,74,0.01962969021443689],[118,297,75,0.019563256551581438],[118,297,76,0.019527926472151413],[118,297,77,0.019512720259360045],[118,297,78,0.019506629708432546],[118,297,79,0.019498972319727213],[118,298,64,0.02087793368485555],[118,298,65,0.02143789932031713],[118,298,66,0.02109939512541571],[118,298,67,0.020687889514150314],[118,298,68,0.02032886530491441],[118,298,69,0.020033826268252772],[118,298,70,0.01980783843304132],[118,298,71,0.01965029101847385],[118,298,72,0.01955608305776081],[118,298,73,0.019516705050677558],[118,298,74,0.019521214320168432],[118,298,75,0.019557102943915133],[118,298,76,0.01961105732774506],[118,298,77,0.01966960868276004],[118,298,78,0.019719673860925588],[118,298,79,0.019748986193281193],[118,299,64,0.02053491145776073],[118,299,65,0.020086684195046712],[118,299,66,0.01973392395616102],[118,299,67,0.019448918706448312],[118,299,68,0.0192262743297962],[118,299,69,0.019076856408221637],[118,299,70,0.019004037897231832],[118,299,71,0.019004668791280398],[118,299,72,0.01907050264681709],[118,299,73,0.019189498941595655],[118,299,74,0.01934699967431385],[118,299,75,0.019526778841945973],[118,299,76,0.019711963665901087],[118,299,77,0.01988582667098045],[118,299,78,0.020032447951615205],[118,299,79,0.02013724718652291],[118,300,64,0.018685852317463305],[118,300,65,0.018350231032005018],[118,300,66,0.018127505294000645],[118,300,67,0.01798633693462025],[118,300,68,0.017920077885817426],[118,300,69,0.01793929181683967],[118,300,70,0.01804575111203911],[118,300,71,0.01823364932734446],[118,300,72,0.018491303942038857],[118,300,73,0.018802713851908966],[118,300,74,0.01914896969114819],[118,300,75,0.019509515345298187],[118,300,76,0.01986325929321535],[118,300,77,0.020189534690922207],[118,300,78,0.020468907382614015],[118,300,79,0.02068383129227417],[118,301,64,0.01666088652499948],[118,301,65,0.01644901121366808],[118,301,66,0.016368768653930218],[118,301,67,0.01638550615493414],[118,301,68,0.01649174883956886],[118,301,69,0.016698099767477624],[118,301,70,0.017004859473493346],[118,301,71,0.01740351104712215],[118,301,72,0.017878730169167623],[118,301,73,0.018410227154826906],[118,301,74,0.018974418734262387],[118,301,75,0.019545927621658497],[118,301,76,0.020098908244966813],[118,301,77,0.020608197329072396],[118,301,78,0.021050288343092697],[118,301,79,0.02140412913592001],[118,302,64,0.014570665733326802],[118,302,65,0.014491318306839798],[118,302,66,0.01456278944323436],[118,302,67,0.01474746879584765],[118,302,68,0.015037489077689339],[118,302,69,0.015443827319417586],[118,302,70,0.01596547573981811],[118,302,71,0.01659122378007131],[118,302,72,0.017301999898270585],[118,302,73,0.018073021294017336],[118,302,74,0.018875748905601248],[118,302,75,0.01967964539023402],[118,302,76,0.020453734167391425],[118,302,77,0.02116795797444449],[118,302,78,0.021119351575751434],[118,302,79,0.02058538756290529],[118,303,64,0.012513981161000626],[118,303,65,0.012573803363652816],[118,303,66,0.01280326251137096],[118,303,67,0.013162181808468622],[118,303,68,0.013642727432146052],[118,303,69,0.014256563028293659],[118,303,70,0.015001558092577418],[118,303,71,0.01586388571944765],[118,303,72,0.016820713937280258],[118,303,73,0.017842679841706878],[118,303,74,0.018896143456833433],[118,303,75,0.019945218672184076],[118,303,76,0.020953579023439233],[118,303,77,0.0210388606737287],[118,303,78,0.020196959760032412],[118,303,79,0.019490629593660172],[118,304,64,0.010491694469738477],[118,304,65,0.010697225573686103],[118,304,66,0.011090653631006154],[118,304,67,0.011629698640662052],[118,304,68,0.012306981909890144],[118,304,69,0.013135123463988327],[118,304,70,0.014111035049873736],[118,304,71,0.015218350154913534],[118,304,72,0.016430479252345993],[118,304,73,0.017713421829923477],[118,304,74,0.019028331698089603],[118,304,75,0.0203338325441775],[118,304,76,0.021345466161850984],[118,304,77,0.020167345851193053],[118,304,78,0.019116415749239838],[118,304,79,0.018226141335355606],[118,305,64,0.008497760271636484],[118,305,65,0.008855345996021158],[118,305,66,0.009418407213639495],[118,305,67,0.010143085470726317],[118,305,68,0.011022863877658976],[118,305,69,0.012071537936276178],[118,305,70,0.013285199252143283],[118,305,71,0.01464501192465521],[118,305,72,0.016120642491679334],[118,305,73,0.01767341995520419],[118,305,74,0.019259221934281076],[118,305,75,0.020831083515204983],[118,305,76,0.020584908305236387],[118,305,77,0.019166489808226213],[118,305,78,0.0178959204411245],[118,305,79,0.016811132826888234],[118,306,64,0.006544613322992527],[118,306,65,0.00705975228933939],[118,306,66,0.007797048850835273],[118,306,67,0.008711626065087928],[118,306,68,0.009798204801992247],[118,306,69,0.0110719205031227],[118,306,70,0.012528158137319624],[118,306,71,0.01414568540620811],[118,306,72,0.01589046353590052],[118,306,73,0.0177191610086703],[118,306,74,0.0195823658195118],[118,306,75,0.021427492420565835],[118,306,76,0.01971812241119594],[118,306,77,0.018051895856429297],[118,306,78,0.01655395086130303],[118,306,79,0.015266755162954029],[118,307,64,0.004658309747307743],[118,307,65,0.005335127490880162],[118,307,66,0.006249613733158347],[118,307,67,0.007356443163035048],[118,307,68,0.008651905289470732],[118,307,69,0.010152582009807608],[118,307,70,0.011853243119111775],[118,307,71,0.013730342183958784],[118,307,72,0.01574620891399722],[118,307,73,0.01785291718101659],[118,307,74,0.019995823804026317],[118,307,75,0.020808513291021468],[118,307,76,0.01875585389591166],[118,307,77,0.016838648428171704],[118,307,78,0.015109787061676788],[118,307,79,0.01361625091617908],[118,308,64,0.0028741459886675795],[118,308,65,0.0037149933620151893],[118,308,66,0.0048075429067280665],[118,308,67,0.006106577850552707],[118,308,68,0.007610229541787293],[118,308,69,0.009336572518123936],[118,308,70,0.0112798319897913],[118,308,71,0.013414242975786514],[118,308,72,0.015698619078406566],[118,308,73,0.018080569774120533],[118,308,74,0.020500360874856738],[118,308,75,0.020024140382073865],[118,308,76,0.017708029342827915],[118,308,77,0.01554196921156902],[118,308,78,0.013583795985817843],[118,308,79,0.011884881203116248],[118,309,64,0.001232755746039024],[118,309,65,0.0022379284761069756],[118,309,66,0.0035070474723798988],[118,309,67,0.004995526960402207],[118,309,68,0.0067035451972896525],[118,309,69,0.008650654034666085],[118,309,70,0.01083058439768162],[118,309,71,0.013215463615167762],[118,309,72,0.01576074928783364],[118,309,73,0.018409785027490702],[118,309,74,0.02109797226631037],[118,309,75,0.01915563470516831],[118,309,76,0.01658450905436663],[118,309,77,0.014177609735369977],[118,309,78,0.011997472659431348],[118,309,79,0.01009962973731526],[118,310,64,-2.2331527500626955E-4],[118,310,65,9.442608319593571E-4],[118,310,66,0.0023859404642158724],[118,310,67,0.004058238193876763],[118,310,68,0.005963508217701215],[118,310,69,0.008122703165243416],[118,310,70,0.010529090000460718],[118,310,71,0.01315281467046483],[118,310,72,0.015946183667453147],[118,310,73,0.018848541625112736],[118,310,74,0.021124512090100613],[118,310,75,0.018207082369272494],[118,310,76,0.015395554696976213],[118,310,77,0.012761980768605609],[118,310,78,0.010373239032691679],[118,310,79,0.008288684151269522],[118,311,64,-0.001452557320652991],[118,311,65,-1.267655660217003E-4],[118,311,66,0.0014809358260411802],[118,311,67,0.003328562367306516],[118,311,68,0.005420692214310829],[118,311,69,0.007779543087946648],[118,311,70,0.010397928692544247],[118,311,71,0.013244154113382409],[118,311,72,0.016267621880549157],[118,311,73,0.019404009347390106],[118,311,74,0.02032937251221375],[118,311,75,0.017183224412813544],[118,311,76,0.014152012432618623],[118,311,77,0.011312018865592214],[118,311,78,0.008734000736423879],[118,311,79,0.006480694775697042],[118,312,64,-0.002416968095524744],[118,312,65,-9.393510086423438E-4],[118,312,66,8.254136389533259E-4],[118,312,67,0.0028371619464001427],[118,312,68,0.005102661394926758],[118,312,69,0.007645204053128039],[118,312,70,0.010457142150857603],[118,312,71,0.013505092326222035],[118,312,72,0.01673583775582714],[118,312,73,0.020081778276091693],[118,312,74,0.019438166197874817],[118,312,75,0.016089651836197847],[118,312,76,0.012865211889043096],[118,312,77,0.009844790315607749],[118,312,78,0.007102461913973395],[118,312,79,0.004703810937603537],[118,313,64,-0.003084048909636622],[118,313,65,-0.0014630283431551442],[118,313,66,4.476505447325489E-4],[118,313,67,0.002609874847339617],[118,313,68,0.005032486154627148],[118,313,69,0.007739611487708549],[118,313,70,0.010723115841264596],[118,313,71,0.013948088665480854],[118,313,72,0.01735900917332542],[118,313,73,0.02088543795011334],[118,313,74,0.018452218704396187],[118,313,75,0.014932694758780111],[118,313,76,0.011546581239422251],[118,313,77,0.008376832646133764],[118,313,78,0.005500198153126182],[118,313,79,0.0029844946759364018],[118,314,64,-0.0034283267501859825],[118,314,65,-0.0016740804450770634],[118,314,66,3.695141615674421E-4],[118,314,67,0.0026665323589503166],[118,314,68,0.005227700233423631],[118,314,69,0.00807770070725252],[118,314,70,0.011207870581090653],[118,314,71,0.014581938780658285],[118,314,72,0.01814241852202661],[118,314,73,0.021083707782512968],[118,314,74,0.01737406571365951],[118,314,75,0.013719005990703368],[118,314,76,0.010206978536772483],[118,314,77,0.006923233676729741],[118,314,78,0.003946487365477217],[118,314,79,0.001346111573340768],[118,315,64,-0.003432403689872768],[118,315,65,-0.0015564882561058314],[118,315,66,6.056202052535096E-4],[118,315,67,0.0030202299793291713],[118,315,68,0.005699698326312764],[118,315,69,0.008668957225915914],[118,315,70,0.011918762765151716],[118,315,71,0.01541165192526617],[118,315,72,0.019088523107162456],[118,315,73,0.020021858901120043],[118,315,74,0.01620695737515841],[118,315,75,0.01245483916461422],[118,315,76,0.008855739277459205],[118,315,77,0.005496447924934852],[118,315,78,0.002456898241877088],[118,315,79,-1.9270183763761054E-4],[118,316,64,-0.0030875351002840478],[118,316,65,-0.001102410778931566],[118,316,66,0.0011629510149072674],[118,316,67,0.003677049967467692],[118,316,68,0.006453573060095164],[118,316,69,0.00951738170577209],[118,316,70,0.012858592437382573],[118,316,71,0.016438717595701997],[118,316,72,0.020197395008343604],[118,316,73,0.01883521229157929],[118,316,74,0.014954035504204736],[118,316,75,0.011145021375703352],[118,316,76,0.007499439948169536],[118,316,77,0.0041048499233987314],[118,316,78,0.0010416356494754712],[118,316,79,-0.00161989491800282],[118,317,64,-0.0023937381203371472],[118,317,65,-3.121983799406043E-4],[118,317,66,0.002040934242330637],[118,317,67,0.004636234490382242],[118,317,68,0.007488390351345233],[118,317,69,0.010621878707507415],[118,317,70,0.014026118531705146],[118,317,71,0.017661760996785156],[118,317,72,0.021425058019081247],[118,317,73,0.017525498890622396],[118,317,74,0.013617183544879785],[118,317,75,0.00979162002770986],[118,317,76,0.006140377039084618],[118,317,77,0.0027510237159608757],[118,317,78,-2.96357974179493E-4],[118,317,79,-0.002932085166702013],[118,318,64,-0.001359431730369908],[118,318,65,8.060593694655828E-4],[118,318,66,0.0032319806036984517],[118,318,67,0.005890808404157168],[118,318,68,0.008797902335924982],[118,318,69,0.011977068598764292],[118,318,70,0.015416980818681448],[118,318,71,0.019077587064646243],[118,318,72,0.019994214596039592],[118,318,73,0.016093322743659745],[118,318,74,0.012195548917625367],[118,318,75,0.00839230327405179],[118,318,76,0.004774760679388356],[118,318,77,0.0014297874566016103],[118,318,78,-0.0015635465343955865],[118,318,79,-0.004136867391889359],[118,319,64,-6.095963575135084E-7],[118,319,65,0.002237450288699537],[118,319,66,0.004722479816824462],[118,319,67,0.0074286509485413125],[118,319,68,0.010371697317677833],[118,319,69,0.013574522249498034],[118,319,70,0.017025028383531073],[118,319,71,0.02068261308283415],[118,319,72,0.01840591135615222],[118,319,73,0.014536488779617373],[118,319,74,0.01068373701741702],[118,319,75,0.00693839307350902],[118,319,76,0.0033906216663306087],[118,319,77,1.2595163589674608E-4],[118,319,78,-0.0027781912170222445],[118,319,79,-0.005255351759897865],[119,-64,64,-0.0017719300467142392],[119,-64,65,-0.0021016060319021574],[119,-64,66,-0.0023567826955359903],[119,-64,67,-0.0025458259489688326],[119,-64,68,-0.0026523500145639836],[119,-64,69,-0.0026455265911204074],[119,-64,70,-0.002500724549221066],[119,-64,71,-0.002199915220978264],[119,-64,72,-0.001731556289747891],[119,-64,73,-0.0010904045234063741],[119,-64,74,-2.772560391791501E-4],[119,-64,75,7.013870815276476E-4],[119,-64,76,0.0018337248741410962],[119,-64,77,0.003103143173958393],[119,-64,78,0.0044887736650341915],[119,-64,79,0.005966130914975777],[119,-63,64,-0.0014925451654966707],[119,-63,65,-0.0017851752595560155],[119,-63,66,-0.001999699992270661],[119,-63,67,-0.0021437283068074468],[119,-63,68,-0.002201455311550341],[119,-63,69,-0.0021437129773896916],[119,-63,70,-0.001947634979979701],[119,-63,71,-0.001596979398604118],[119,-63,72,-0.0010819558257982808],[119,-63,73,-3.9898625962348844E-4],[119,-63,74,4.496013401024406E-4],[119,-63,75,0.001455947824150509],[119,-63,76,0.002607106817103339],[119,-63,77,0.003885558600666766],[119,-63,78,0.00526979451155477],[119,-63,79,0.006734972313258784],[119,-62,64,-0.0010306869513967412],[119,-62,65,-0.0012929136558912733],[119,-62,66,-0.0014750522914898075],[119,-62,67,-0.0015836311653695614],[119,-62,68,-0.001603484481168463],[119,-62,69,-0.0015073669629811733],[119,-62,70,-0.001274295541973836],[119,-62,71,-8.89803137816309E-4],[119,-62,72,-3.4572987194254846E-4],[119,-62,73,3.6004788661468884E-4],[119,-62,74,0.0012239516127229059],[119,-62,75,0.0022370987023990394],[119,-62,76,0.0033857652595232655],[119,-62,77,0.004651914188976025],[119,-62,78,0.006013789065510856],[119,-62,79,0.007446574120273446],[119,-61,64,-3.962276784983727E-4],[119,-61,65,-6.346642296565617E-4],[119,-61,66,-7.92691897572279E-4],[119,-61,67,-8.754753920341423E-4],[119,-61,68,-8.68527057892166E-4],[119,-61,69,-7.467318713987065E-4],[119,-61,70,-4.910635167635709E-4],[119,-61,71,-8.878294067637817E-5],[119,-61,72,4.667864230957417E-4],[119,-61,73,0.0011765424073428886],[119,-61,74,0.002035947706020649],[119,-61,75,0.0030354340560061733],[119,-61,76,0.004160867632962415],[119,-61,77,0.005394076167522341],[119,-61,78,0.006713438166838332],[119,-61,79,0.008094534506044727],[119,-60,64,3.9762482203369124E-4],[119,-60,65,1.7665952204259008E-4],[119,-60,66,3.477446467603015E-5],[119,-60,67,-3.160143517983337E-5],[119,-60,68,-8.68324898558319E-6],[119,-60,69,1.263605866063019E-4],[119,-60,70,3.9056713630173816E-4],[119,-60,71,7.950224668332947E-4],[119,-60,72,0.001345084148435314],[119,-60,73,0.0020406603346569325],[119,-60,74,0.002876546213310044],[119,-60,75,0.0038428185098586427],[119,-60,76,0.004925288610718233],[119,-60,77,0.0061060147588264365],[119,-60,78,0.00736387365854502],[119,-60,79,0.008675191712513878],[119,-59,64,0.0013352425830774012],[119,-59,65,0.0011260161429326088],[119,-59,66,9.929570737518647E-4],[119,-59,67,9.342523258512721E-4],[119,-59,68,9.629668215077501E-4],[119,-59,69,0.0010995454700992655],[119,-59,70,0.0013590374896512224],[119,-59,71,0.0017509698969930352],[119,-59,72,0.002279551798558484],[119,-59,73,0.0029439335284191077],[119,-59,74,0.0037385213877274255],[119,-59,75,0.004653348633417389],[119,-59,76,0.005674503255411213],[119,-59,77,0.00678461297176291],[119,-59,78,0.007963387761173474],[119,-59,79,0.009188220143171276],[119,-58,64,0.002399671152907752],[119,-58,65,0.002197356735054165],[119,-58,66,0.0020668317400803085],[119,-58,67,0.0020081268217160973],[119,-58,68,0.0020335670605265872],[119,-58,69,0.002161149280037032],[119,-58,70,0.0024039596224050314],[119,-58,71,0.0027700667053080327],[119,-58,72,0.003262694776418649],[119,-58,73,0.0038804504768431627],[119,-58,74,0.004617603953015422],[119,-58,75,0.005464424955441406],[119,-58,76,0.006407574459231624],[119,-58,77,0.007430552236562711],[119,-58,78,0.008514200706092047],[119,-58,79,0.009637265279923427],[119,-57,64,0.0035739012128074036],[119,-57,65,0.0033749231841153893],[119,-57,66,0.0032420651603830702],[119,-57,67,0.003177194863731857],[119,-57,68,0.003191862317104818],[119,-57,69,0.0033015839641425985],[119,-57,70,0.0035175167367887104],[119,-57,71,0.003846362984021367],[119,-57,72,0.0042905032579989835],[119,-57,73,0.004848181725698333],[119,-57,74,0.0055137449459449804],[119,-57,75,0.0062779346560005046],[119,-57,76,0.007128235113572435],[119,-57,77,0.008049275440249819],[119,-57,78,0.009023287311930587],[119,-57,79,0.01003061824179348],[119,-56,64,0.004838763847510437],[119,-56,65,0.0046408142635952256],[119,-56,66,0.004502245668942064],[119,-56,67,0.004426653651993058],[119,-56,68,0.004424751401337875],[119,-56,69,0.00450956246292762],[119,-56,70,0.004690348975893553],[119,-56,71,0.004972522893649246],[119,-56,72,0.00535773288210979],[119,-56,73,0.00584400287079496],[119,-56,74,0.0064259230037468406],[119,-56,75,0.007094893647039361],[119,-56,76,0.007839423016685512],[119,-56,77,0.008645478895931384],[119,-56,78,0.009496894815227067],[119,-56,79,0.010375830972563256],[119,-55,64,0.006152321098291073],[119,-55,65,0.005952134820161669],[119,-55,66,0.005803742174506337],[119,-55,67,0.005712274563061493],[119,-55,68,0.0056875418252796605],[119,-55,69,0.0057401221150182305],[119,-55,70,0.005877470136482087],[119,-55,71,0.006103826902616503],[119,-55,72,0.00642025476198402],[119,-55,73,0.006824723269997643],[119,-55,74,0.007312246668167668],[119,-55,75,0.007875073650403713],[119,-55,76,0.00850293000765744],[119,-55,77,0.009183314652241887],[119,-55,78,0.009901849431957953],[119,-55,79,0.01064268305265945],[119,-54,64,0.007467057397164818],[119,-54,65,0.0072596882857278965],[119,-54,66,0.007095898188904234],[119,-54,67,0.006982100331287987],[119,-54,68,0.006927142957910097],[119,-54,69,0.0069392785980635745],[119,-54,70,0.007024311127095499],[119,-54,71,0.007185492525737723],[119,-54,72,0.007423498108238693],[119,-54,73,0.007736452252153376],[119,-54,74,0.008120005426592811],[119,-54,75,0.008567463236194473],[119,-54,76,0.009069968114966317],[119,-54,77,0.009616734218408161],[119,-54,78,0.010195335974839691],[119,-54,79,0.010792050668617367],[119,-53,64,0.008742306686148811],[119,-53,65,0.008521568564597454],[119,-53,66,0.008335800791911693],[119,-53,67,0.008192395300967817],[119,-53,68,0.008099188758342764],[119,-53,69,0.00806228757864594],[119,-53,70,0.008086056343387991],[119,-53,71,0.008172987191285605],[119,-53,72,0.00832360602791629],[119,-53,73,0.00853642960658054],[119,-53,74,0.008807974331276442],[119,-53,75,0.009132817557383533],[119,-53,76,0.009503712086220435],[119,-53,77,0.009911754466998797],[119,-53,78,0.010346607634749191],[119,-53,79,0.010796778326495568],[119,-52,64,0.00994450197925157],[119,-52,65,0.009703381316095164],[119,-52,66,0.009488470729497428],[119,-52,67,0.009307801749884444],[119,-52,68,0.009168158065737371],[119,-52,69,0.009073727234555885],[119,-52,70,0.009027687409735658],[119,-52,71,0.009032033052575984],[119,-52,72,0.009087402212264327],[119,-52,73,0.009192955953099912],[119,-52,74,0.009346310857525492],[119,-52,75,0.009543525461277005],[119,-52,76,0.009779141399878904],[119,-52,77,0.0100462799647228],[119,-52,78,0.010336794682976503],[119,-52,79,0.010641480449545585],[119,-51,64,0.01104748101048319],[119,-51,65,0.010778515457771193],[119,-51,66,0.010527096595179223],[119,-51,67,0.010301533737740736],[119,-51,68,0.010107525429479404],[119,-51,69,0.009947604047617138],[119,-51,70,0.00982404281225715],[119,-51,71,0.009738620398728767],[119,-51,72,0.009692359224994736],[119,-51,73,0.009685318214924295],[119,-51,74,0.00971644106814678],[119,-51,75,0.009783460996505455],[119,-51,76,0.009882862810772407],[119,-51,77,0.01000990316019154],[119,-51,78,0.01015868964251352],[119,-51,79,0.01032231941447152],[119,-50,64,0.01158833983198307],[119,-50,65,0.011728528989597918],[119,-50,66,0.01143338291956765],[119,-50,67,0.011155684063620353],[119,-50,68,0.01090002378842775],[119,-50,69,0.010667568742255214],[119,-50,70,0.010459985554301932],[119,-50,71,0.01027912657222121],[119,-50,72,0.010126669421018385],[119,-50,73,0.010003814521020418],[119,-50,74,0.0099110417217444],[119,-50,75,0.009847927137618777],[119,-50,76,0.009813021193998373],[119,-50,77,0.009803788808719648],[119,-50,78,0.009816612546529192],[119,-50,79,0.009846859492133242],[119,-49,64,0.010712880407278332],[119,-49,65,0.01111125309996128],[119,-49,66,0.011507081992308437],[119,-49,67,0.011858681238236565],[119,-49,68,0.011535714396025982],[119,-49,69,0.011225621715869574],[119,-49,70,0.01092975486971588],[119,-49,71,0.010650311888979505],[119,-49,72,0.01038986976729819],[119,-49,73,0.010150979642178122],[119,-49,74,0.00993582585883751],[119,-49,75,0.009745950146639525],[119,-49,76,0.009582042057862193],[119,-49,77,0.009443796731188244],[119,-49,78,0.009329840949231654],[119,-49,79,0.009237728361763772],[119,-48,64,0.00999700464945574],[119,-48,65,0.010439903179713968],[119,-48,66,0.010886824486662],[119,-48,67,0.011330829009357442],[119,-48,68,0.011769593720975335],[119,-48,69,0.011616504871468768],[119,-48,70,0.011233004488818124],[119,-48,71,0.01085697698502486],[119,-48,72,0.010492055480127849],[119,-48,73,0.010142257867880984],[119,-48,74,0.009811546245558545],[119,-48,75,0.009503457170402069],[119,-48,76,0.009220804039795232],[119,-48,77,0.008965452799056018],[119,-48,78,0.008738172080842519],[119,-48,79,0.008538558774775027],[119,-47,64,0.00945962294086684],[119,-47,65,0.00994787881083127],[119,-47,66,0.010445242591414381],[119,-47,67,0.010945986087768348],[119,-47,68,0.01144902599900807],[119,-47,69,0.011840477751816682],[119,-47,70,0.011374771882696505],[119,-47,71,0.010909092263883487],[119,-47,72,0.01044819287453434],[119,-47,73,0.009997578845182039],[119,-47,74,0.00956296810361315],[119,-47,75,0.0091498299453728],[119,-47,76,0.008763001969091296],[119,-47,77,0.008406386716645379],[119,-47,78,0.008082729250345014],[119,-47,79,0.007793476785156894],[119,-46,64,0.009110440595565518],[119,-46,65,0.009642214649740792],[119,-46,66,0.010186417599571842],[119,-46,67,0.01073889237265308],[119,-46,68,0.011299887867399456],[119,-46,69,0.011871205875330595],[119,-46,70,0.01136536612425512],[119,-46,71,0.010820938716850977],[119,-46,72,0.010276531860458599],[119,-46,73,0.009739076099940238],[119,-46,74,0.009215942752576065],[119,-46,75,0.008714395951583836],[119,-46,76,0.008241129290812102],[119,-46,77,0.0078018885336409586],[119,-46,78,0.007401181732814022],[119,-46,79,0.007042077984496726],[119,-45,64,0.008950892148928172],[119,-45,65,0.009522066506024423],[119,-45,66,0.010107042182824579],[119,-45,67,0.010703572461130198],[119,-45,68,0.01131334803873438],[119,-45,69,0.01181874801390309],[119,-45,70,0.011219666850386584],[119,-45,71,0.010610473319544544],[119,-45,72,0.009998044893977796],[119,-45,73,0.009390605965184692],[119,-45,74,0.008797012093784607],[119,-45,75,0.008226123069713771],[119,-45,76,0.007686266465134857],[119,-45,77,0.007184793247162162],[119,-45,78,0.006727726892656356],[119,-45,79,0.00631950731474411],[119,-44,64,0.008975058911260398],[119,-44,65,0.00957961097859408],[119,-44,66,0.010197293952089367],[119,-44,67,0.010828081791084918],[119,-44,68,0.011475228779399837],[119,-44,69,0.01160131310486564],[119,-44,70,0.01095643261250069],[119,-44,71,0.01029870218526069],[119,-44,72,0.00963587203541485],[119,-44,73,0.008977270986276938],[119,-44,74,0.008333015994781406],[119,-44,75,0.007713315645803492],[119,-44,76,0.007127869389483017],[119,-44,77,0.006585364169624193],[119,-44,78,0.006093069958284915],[119,-44,79,0.00565653557047345],[119,-43,64,0.009170572485186806],[119,-43,65,0.009800931927847362],[119,-43,66,0.01044169671340457],[119,-43,67,0.011095335053656527],[119,-43,68,0.011766794013779884],[119,-43,69,0.011272014390260453],[119,-43,70,0.010597616610076188],[119,-43,71,0.009909059646388255],[119,-43,72,0.009214770476000804],[119,-43,73,0.008524946366500244],[119,-43,74,0.0078507013488946],[119,-43,75,0.0072033109554266155],[119,-43,76,0.0065935570559518455],[119,-43,77,0.0060311744962304415],[119,-43,78,0.005524401101274346],[119,-43,79,0.005079632458118049],[119,-42,64,0.009519506964161234],[119,-42,65,0.010166896434916705],[119,-42,66,0.010819971982386403],[119,-42,67,0.011483925759794183],[119,-42,68,0.011520957384933882],[119,-42,69,0.010854388838539309],[119,-42,70,0.010167687784057926],[119,-42,71,0.009466791419706348],[119,-42,72,0.008760566882741475],[119,-42,73,0.008059808009124194],[119,-42,74,0.007376331582431101],[119,-42,75,0.006722175063497227],[119,-42,76,0.006108897668331147],[119,-42,77,0.005546986526026271],[119,-42,78,0.005045369502192767],[119,-42,79,0.0046110361184966125],[119,-41,64,0.009999262538063861],[119,-41,65,0.01065402290974987],[119,-41,66,0.011307883332026852],[119,-41,67,0.011678345904231942],[119,-41,68,0.011036783295048683],[119,-41,69,0.010374417506822971],[119,-41,70,0.009692955236033826],[119,-41,71,0.008998340002378959],[119,-41,72,0.008299610904913495],[119,-41,73,0.0076078607095296635],[119,-41,74,0.00693529538424517],[119,-41,75,0.006294397083903642],[119,-41,76,0.005697192457675621],[119,-41,77,0.005154628012584933],[119,-41,78,0.004676054115694343],[119,-41,79,0.004268819058236355],[119,-40,64,0.010583443231322036],[119,-40,65,0.011235344011364948],[119,-40,66,0.011735222902168689],[119,-40,67,0.011125434528281585],[119,-40,68,0.010501748133359232],[119,-40,69,0.00985979869016266],[119,-40,70,0.009200893935442139],[119,-40,71,0.008530730443073222],[119,-40,72,0.007858228185383904],[119,-40,73,0.007194465053813636],[119,-40,74,0.006551713439278348],[119,-40,75,0.00594258085491573],[119,-40,76,0.005379256452946785],[119,-40,77,0.004872865144613227],[119,-40,78,0.004432930879063073],[119,-40,79,0.004066950475335865],[119,-39,64,0.011242731489008726],[119,-39,65,0.011703198782165688],[119,-39,66,0.01111794375747881],[119,-39,67,0.010536229405558544],[119,-39,68,0.00994503443713048],[119,-39,69,0.009339221081574789],[119,-39,70,0.008719469680850236],[119,-39,71,0.00809095463713045],[119,-39,72,0.0074621712259442426],[119,-39,73,0.006843861588629939],[119,-39,74,0.006248041959218947],[119,-39,75,0.005687133061958269],[119,-39,76,0.005173195483839386],[119,-39,77,0.004717271683099046],[119,-39,78,0.004328836141209588],[119,-39,79,0.004015355004041499],[119,-38,64,0.011614951201505038],[119,-38,65,0.011034183450401757],[119,-38,66,0.010482071670144318],[119,-38,67,0.00994128720072915],[119,-38,68,0.009396510397774276],[119,-38,69,0.00884163475690821],[119,-38,70,0.008276461292825216],[119,-38,71,0.007705352306301502],[119,-38,72,0.007136066468242669],[119,-38,73,0.006578690840999533],[119,-38,74,0.0060446718198046605],[119,-38,75,0.0055459468589392],[119,-38,76,0.005094178716531442],[119,-38,77,0.004700093810050408],[119,-38,78,0.004372926123064436],[119,-38,79,0.004119967944303845],[119,-37,64,0.010915395162213615],[119,-37,65,0.010367119319021947],[119,-37,66,0.009859252265855772],[119,-37,67,0.009371432184815457],[119,-37,68,0.008885953357588733],[119,-37,69,0.008395517819113437],[119,-37,70,0.007898778035381736],[119,-37,71,0.007398986842501835],[119,-37,72,0.006902855970945358],[119,-37,73,0.006419507786673207],[119,-37,74,0.005959522135686619],[119,-37,75,0.005534080063026185],[119,-37,76,0.005154206049872542],[119,-37,77,0.004830110274457721],[119,-37,78,0.004570632255390964],[119,-37,79,0.004382787081286695],[119,-36,64,0.010240350892612271],[119,-36,65,0.00973426334640619],[119,-36,66,0.009280882941254403],[119,-36,67,0.008856938083571561],[119,-36,68,0.008442267149009985],[119,-36,69,0.008028136565766349],[119,-36,70,0.007611770290674324],[119,-36,71,0.007195014221557131],[119,-36,72,0.006783232089645331],[119,-36,73,0.006384289391504495],[119,-36,74,0.006007627130305652],[119,-36,75,0.005663427025655489],[119,-36,76,0.00536186972948228],[119,-36,77,0.005112487453831233],[119,-36,78,0.004923612276189599],[119,-36,79,0.004801921240595267],[119,-35,64,0.009622007335781264],[119,-35,65,0.00916702716787744],[119,-35,66,0.008777257919285538],[119,-35,67,0.008426701738653552],[119,-35,68,0.008092691041133807],[119,-35,69,0.007764797082036458],[119,-35,70,0.0074385315477696395],[119,-35,71,0.007114043227250179],[119,-35,72,0.006795063598994492],[119,-35,73,0.006487933882394085],[119,-35,74,0.0062007151900716284],[119,-35,75,0.0059423833147639726],[119,-35,76,0.005722109570455028],[119,-35,77,0.005548628984559838],[119,-35,78,0.005429697007064539],[119,-35,79,0.005371635764996968],[119,-34,64,0.00909105409214212],[119,-34,65,0.00869509047032556],[119,-34,66,0.008376702898767555],[119,-34,67,0.008107406282995144],[119,-34,68,0.00786199810879727],[119,-34,69,0.00762808620894998],[119,-34,70,0.007399189811241257],[119,-34,71,0.007173485268375911],[119,-34,72,0.006952811736767344],[119,-34,73,0.00674175044287257],[119,-34,74,0.006546779029419391],[119,-34,75,0.006375502379850984],[119,-34,76,0.006235961215904991],[119,-34,77,0.006136019651399876],[119,-34,78,0.006082832766113226],[119,-34,79,0.0060823951383087264],[119,-33,64,0.00867577052019092],[119,-33,65,0.008345501685438187],[119,-33,66,0.008104696971691201],[119,-33,67,0.007922671595688926],[119,-33,68,0.007771680900143373],[119,-33,69,0.007637099894063138],[119,-33,70,0.007510186589245369],[119,-33,71,0.007386892122216306],[119,-33,72,0.0072669346973038874],[119,-33,73,0.007152938073497796],[119,-33,74,0.0070496359362089075],[119,-33,75,0.006963143412630168],[119,-33,76,0.006900296898518132],[119,-33,77,0.00686806326566502],[119,-33,78,0.006873019414054371],[119,-33,79,0.006920903021736153],[119,-32,64,0.008401100114218196],[119,-32,65,0.008141763685161313],[119,-32,66,0.007982979559792033],[119,-32,67,0.007892189876362131],[119,-32,68,0.00783912234961265],[119,-32,69,0.007806656998807434],[119,-32,70,0.0077835416839218095],[119,-32,71,0.0077632799971014904],[119,-32,72,0.007743279157238262],[119,-32,73,0.007724052409139248],[119,-32,74,0.0077084771155870625],[119,-32,75,0.0077011096618239475],[119,-32,76,0.007707558215660432],[119,-32,77,0.007733914303152009],[119,-32,78,0.00778624407037743],[119,-32,79,0.007870140007158253],[119,-31,64,0.008287707897908558],[119,-31,65,0.008102902255763485],[119,-31,66,0.008028640211388889],[119,-31,67,0.008030844264811562],[119,-31,68,0.00807674996499715],[119,-31,69,0.008146496714070132],[119,-31,70,0.00822610207968162],[119,-31,71,0.008306438374771373],[119,-31,72,0.008382457479819647],[119,-31,73,0.008452459344095584],[119,-31,74,0.008517405204990352],[119,-31,75,0.008580276511199851],[119,-31,76,0.00864548047549115],[119,-31,77,0.00871830311651814],[119,-31,78,0.008804410577233723],[119,-31,79,0.008909399430554691],[119,-30,64,0.008351018680666185],[119,-30,65,0.008242515231598788],[119,-30,66,0.008253189200662073],[119,-30,67,0.008347808528828307],[119,-30,68,0.008491171409849148],[119,-30,69,0.008660457823314403],[119,-30,70,0.008838773307459772],[119,-30,71,0.009014222170340536],[119,-30,72,0.009179209315693895],[119,-30,73,0.009329774382031876],[119,-30,74,0.009464959093591758],[119,-30,75,0.00958620868535445],[119,-30,76,0.009696808222003679],[119,-30,77,0.00980135458272676],[119,-30,78,0.00990526483054185],[119,-30,79,0.010014321626854238],[119,-29,64,0.008600234143814074],[119,-29,65,0.008567800286658945],[119,-29,66,0.008661606984758088],[119,-29,67,0.008845625951998837],[119,-29,68,0.009082289706454659],[119,-29,69,0.009345638151011476],[119,-29,70,0.009615731755603738],[119,-29,71,0.009877825834057375],[119,-29,72,0.010121746397972557],[119,-29,73,0.010341286701134409],[119,-29,74,0.010533625246350134],[119,-29,75,0.010698766008144827],[119,-29,76,0.010839001601044094],[119,-29,77,0.010958400094324992],[119,-29,78,0.011062316140316997],[119,-29,79,0.011156927044851012],[119,-28,64,0.009037326856759752],[119,-28,65,0.0090785595115717],[119,-28,66,0.009251370699652072],[119,-28,67,0.00951926567410782],[119,-28,68,0.009842396400046582],[119,-28,69,0.010191532643627151],[119,-28,70,0.010543616500995504],[119,-28,71,0.01088103811497245],[119,-28,72,0.011191079417981588],[119,-28,73,0.011465367005842367],[119,-28,74,0.011699334806046511],[119,-28,75,0.011891697204143483],[119,-28,76,0.011923902432016843],[119,-28,77,0.011810827660249951],[119,-28,78,0.011727358648590331],[119,-28,79,0.011666711980828253],[119,-27,64,0.009656009469104759],[119,-27,65,0.009766179046147083],[119,-27,66,0.01001145601387838],[119,-27,67,0.010355154869891718],[119,-27,68,0.01075524115224015],[119,-27,69,0.01117914865116513],[119,-27,70,0.011600699347541002],[119,-27,71,0.011966001733882774],[119,-27,72,0.011612871078329066],[119,-27,73,0.011306729061111258],[119,-27,74,0.011053708891212922],[119,-27,75,0.010856185560218659],[119,-27,76,0.010713278139292993],[119,-27,77,0.01062135168070615],[119,-27,78,0.01057451809903247],[119,-27,79,0.01056513540732784],[119,-26,64,0.010440677483814139],[119,-26,65,0.010612582193214938],[119,-26,66,0.010921312810374933],[119,-26,67,0.011330185297616367],[119,-26,68,0.011795076371134531],[119,-26,69,0.01170253672977846],[119,-26,70,0.011235454839420891],[119,-26,71,0.010799193410804882],[119,-26,72,0.010411154585038688],[119,-26,73,0.010083524752396303],[119,-26,74,0.009823750624141123],[119,-26,75,0.0096350265681054],[119,-26,76,0.009516792620968936],[119,-26,77,0.009465242562822579],[119,-26,78,0.009473841417154552],[119,-26,79,0.009533851722207286],[119,-25,64,0.011365290282701989],[119,-25,65,0.011589161883029787],[119,-25,66,0.01194985844670977],[119,-25,67,0.011592122254952745],[119,-25,68,0.011087165329806206],[119,-25,69,0.010565846942240482],[119,-25,70,0.010060240127581457],[119,-25,71,0.009595856980266928],[119,-25,72,0.009192070483570368],[119,-25,73,0.00886255777399243],[119,-25,74,0.008615764350213499],[119,-25,75,0.00845538868465145],[119,-25,76,0.008380886647829986],[119,-25,77,0.008387995112557988],[119,-25,78,0.008469274066907981],[119,-25,79,0.008614666532680415],[119,-24,64,0.0116206688019917],[119,-24,65,0.011368048252646847],[119,-24,66,0.010978918004394898],[119,-24,67,0.010489768926565331],[119,-24,68,0.009948573729029034],[119,-24,69,0.00939745007391984],[119,-24,70,0.00887107553161292],[119,-24,71,0.008397097936978359],[119,-24,72,0.007996542058785132],[119,-24,73,0.007684245503949668],[119,-24,74,0.007469323368436787],[119,-24,75,0.007355661080764933],[119,-24,76,0.007342434822334084],[119,-24,77,0.0074246588519479104],[119,-24,78,0.007593759010653571],[119,-24,79,0.007838171638039574],[119,-23,64,0.010581992543351605],[119,-23,65,0.010295064942792718],[119,-23,66,0.009875063482399417],[119,-23,67,0.009358267957031204],[119,-23,68,0.008794283685322783],[119,-23,69,0.008227981287602945],[119,-23,70,0.007696360391231948],[119,-23,71,0.007228912700553706],[119,-23,72,0.006848022175454635],[119,-23,73,0.006569401398469717],[119,-23,74,0.006402563626126583],[119,-23,75,0.006351329941638552],[119,-23,76,0.006414370851816099],[119,-23,77,0.00658578160205762],[119,-23,78,0.0068556904203554035],[119,-23,79,0.007210898845213886],[119,-22,64,0.0095202073961459],[119,-22,65,0.009205352636388308],[119,-22,66,0.008762649037786277],[119,-22,67,0.008227998370947972],[119,-22,68,0.0076523285982586274],[119,-22,69,0.00708294436150213],[119,-22,70,0.00655886587799903],[119,-22,71,0.006111147479322717],[119,-22,72,0.005763273707050483],[119,-22,73,0.0055315981643371355],[119,-22,74,0.005425824593473847],[119,-22,75,0.005449529558872423],[119,-22,76,0.005600726028804017],[119,-22,77,0.005872467068738171],[119,-22,78,0.006253488785256882],[119,-22,79,0.006728891593192111],[119,-21,64,0.008469645758246642],[119,-21,65,0.008130955089225693],[119,-21,66,0.007671353930183693],[119,-21,67,0.007126152658712863],[119,-21,68,0.006547227787675572],[119,-21,69,0.005983954850345795],[119,-21,70,0.005477062825771441],[119,-21,71,0.0050589048207502815],[119,-21,72,0.004753846546366265],[119,-21,73,0.004578704172467385],[119,-21,74,0.004543231003013539],[119,-21,75,0.0046506523122116835],[119,-21,76,0.004898247583242519],[119,-21,77,0.005277979299308188],[119,-21,78,0.00577716735181023],[119,-21,79,0.006379208053766168],[119,-20,64,0.0074631090902552745],[119,-20,65,0.007102204492867753],[119,-20,66,0.006628868183005155],[119,-20,67,0.00607757516039325],[119,-20,68,0.005500730913350748],[119,-20,69,0.004949388265088081],[119,-20,70,0.004465674375512679],[119,-20,71,0.004083004461821352],[119,-20,72,0.0038264533723813676],[119,-20,73,0.003713183651318658],[119,-20,74,0.003752929514794926],[119,-20,75,0.003948536043732594],[119,-20,76,0.004296552786689185],[119,-20,77,0.004787880861958961],[119,-20,78,0.005408472551046771],[119,-20,79,0.006140082287620469],[119,-19,64,0.00653297204135593],[119,-19,65,0.006148745018352527],[119,-19,66,0.005661831423981977],[119,-19,67,0.005105610358114321],[119,-19,68,0.004532570438217502],[119,-19,69,0.003995033974126922],[119,-19,70,0.0035362314042814364],[119,-19,71,0.003190443297827637],[119,-19,72,0.002983340068522877],[119,-19,73,0.00293238622672782],[119,-19,74,0.003047308580271526],[119,-19,75,0.0033306276637670405],[119,-19,76,0.003778251550135119],[119,-19,77,0.0043801310790663435],[119,-19,78,0.005120975426328275],[119,-19,79,0.005981026836563416],[119,-18,64,0.005712302803036561],[119,-18,65,0.005300571269831156],[119,-18,66,0.004796785087797626],[119,-18,67,0.0042329628261123485],[119,-18,68,0.0036612237851298608],[119,-18,69,0.003134756368526401],[119,-18,70,0.002697632166184482],[119,-18,71,0.0023848557781672945],[119,-18,72,0.0022226519812578054],[119,-18,73,0.002228826881706577],[119,-18,74,0.0024132024726044184],[119,-18,75,0.0027781238653956934],[119,-18,76,0.0033190383216793267],[119,-18,77,0.004025145075175919],[119,-18,78,0.00488011480615491],[119,-18,79,0.005862877513253471],[119,-17,64,0.005021547451681884],[119,-17,65,0.0045757315187100415],[119,-17,66,0.004049095630749152],[119,-17,67,0.003472044582529928],[119,-17,68,0.0028958802333399255],[119,-17,69,0.002374258580246151],[119,-17,70,0.001951853611812982],[119,-17,71,0.0016642908134569905],[119,-17,72,0.0015383572556360555],[119,-17,73,0.0015922968436503256],[119,-17,74,0.0018361901765224936],[119,-17,75,0.0022724182923767842],[119,-17,76,0.0028962094132882173],[119,-17,77,0.003696267645476343],[119,-17,78,0.004655482442755166],[119,-17,79,0.005751717504069194],[119,-16,64,0.004429450776863837],[119,-16,65,0.003944546519377492],[119,-16,66,0.0033910475663920395],[119,-16,67,0.0027975257964529482],[119,-16,68,0.0022140020273305606],[119,-16,69,0.0016941457242874592],[119,-16,70,0.0012829231800093744],[119,-16,71,0.0010163954075095465],[119,-16,72,9.21830671560787E-4],[119,-16,73,0.0010179147414257385],[119,-16,74,0.001315058357774909],[119,-16,75,0.0018158012125252146],[119,-16,76,0.002515311551798155],[119,-16,77,0.0034019803312370766],[119,-16,78,0.00445810868154185],[119,-16,79,0.00566068728225452],[119,-15,64,0.003902093034035127],[119,-15,65,0.003375398423809485],[119,-15,66,0.002793708217685009],[119,-15,67,0.002183575631533948],[119,-15,68,0.0015932632930230797],[119,-15,69,0.0010759429573238958],[119,-15,70,6.764850953428265E-4],[119,-15,71,4.311082314702201E-4],[119,-15,72,3.673788964258846E-4],[119,-15,73,5.043227490199038E-4],[119,-15,74,8.526464156008918E-4],[119,-15,75,0.0014150693755600955],[119,-15,76,0.0021867650064896892],[119,-15,77,0.003155909695619768],[119,-15,78,0.004304338727219061],[119,-15,79,0.005608307470963989],[119,-14,64,0.0034162972467364936],[119,-14,65,0.0028470688702166348],[119,-14,66,0.002238009029778357],[119,-14,67,0.0016134944552926266],[119,-14,68,0.0010195497711131271],[119,-14,69,5.08299769796524E-4],[119,-14,70,1.240749590880357E-4],[119,-14,71,-9.709497954840634E-5],[119,-14,72,-1.2760401915812468E-4],[119,-14,73,5.173241771546683E-5],[119,-14,74,4.518043078556318E-4],[119,-14,75,0.0010754578826206234],[119,-14,76,0.001917869609914697],[119,-14,77,0.0029670421889039667],[119,-14,78,0.00420442121973225],[119,-14,79,0.0056056309997143585],[119,-13,64,0.002957598374157135],[119,-13,65,0.002346740447867878],[119,-13,66,0.0017128093796334066],[119,-13,67,0.0010778712884111836],[119,-13,68,4.8524161672279796E-4],[119,-13,69,-1.4570105676776487E-5],[119,-13,70,-3.78252315480489E-4],[119,-13,71,-5.70356208035411E-4],[119,-13,72,-5.635472807388615E-4],[119,-13,73,-3.387180047922538E-4],[119,-13,74,1.1503804960783252E-4],[119,-13,75,8.005900335344181E-4],[119,-13,76,0.0017130707136148024],[119,-13,77,0.002840313306863032],[119,-13,78,0.004163422871557138],[119,-13,79,0.005657480632366557],[119,-12,64,0.0025183871501623183],[119,-12,65,0.0018681703846291891],[119,-12,66,0.0012131283821605584],[119,-12,67,5.729030864910756E-4],[119,-12,68,-1.2350351106952064E-5],[119,-12,69,-4.943062482586582E-4],[119,-12,70,-8.311656562197794E-4],[119,-12,71,-9.88477429070407E-4],[119,-12,72,-9.395206239974177E-4],[119,-12,73,-6.655346281789108E-4],[119,-12,74,-1.5579727287124573E-4],[119,-12,75,5.924485008977547E-4],[119,-12,76,0.0015742185625963355],[119,-12,77,0.002777160946527138],[119,-12,78,0.004182077210403464],[119,-12,79,0.00576359010488119],[119,-11,64,0.002096228983425024],[119,-11,65,0.0014100367600550553],[119,-11,66,7.385449306149251E-4],[119,-11,67,9.88760517391258E-5],[119,-11,68,-4.7239477017468504E-4],[119,-11,69,-9.296763839496747E-4],[119,-11,70,-0.0012331718743682357],[119,-11,71,-0.0013498501456731733],[119,-11,72,-0.001253957940851596],[119,-11,73,-9.273669980724814E-4],[119,-11,74,-3.597565419003333E-4],[119,-11,75,4.513683625562361E-4],[119,-11,76,0.0015008217397435644],[119,-11,77,0.002776043749401915],[119,-11,78,0.0042575683755688085],[119,-11,79,0.0059196499979371885],[119,-10,64,0.001692358968279897],[119,-10,65,9.744581994580754E-4],[119,-10,66,2.917668455647945E-4],[119,-10,67,-3.41190216427922E-4],[119,-10,68,-8.917954693026947E-4],[119,-10,69,-0.0013177077882751695],[119,-10,70,-0.0015815999194546933],[119,-10,71,-0.0016522715396090337],[119,-10,72,-0.0015052866385497795],[119,-10,73,-0.0011234345990692829],[119,-10,74,-4.970151116070518E-4],[119,-10,75,3.760525836573273E-4],[119,-10,76,0.001490295285075524],[119,-10,77,0.0028329250656139093],[119,-10,78,0.004384250646368869],[119,-10,79,0.006118259085243768],[119,-9,64,0.0013103546753509424],[119,-9,65,5.656886176583706E-4],[119,-9,66,-1.2262939447871886E-4],[119,-9,67,-7.427343473642968E-4],[119,-9,68,-0.0012662915160870736],[119,-9,69,-0.001654674042256444],[119,-9,70,-0.0018734542215724684],[119,-9,71,-0.0018936462057368992],[119,-9,72,-0.0016924617968636817],[119,-9,73,-0.0012538799461379413],[119,-9,74,-5.690300365856684E-4],[119,-9,75,3.636105920861768E-4],[119,-9,76,0.0015382040466736554],[119,-9,77,0.0029417230192949036],[119,-9,78,0.004554304119944792],[119,-9,79,0.006349781527957273],[119,-8,64,9.549889656622432E-4],[119,-8,65,1.8898915091804545E-4],[119,-8,66,-4.992863107665873E-4],[119,-8,67,-0.0011006786816727216],[119,-8,68,-0.0015913997728952173],[119,-8,69,-0.0019369354612056879],[119,-8,70,-0.0021061355783094024],[119,-8,71,-0.0020725720785284],[119,-8,72,-0.0018154038959010115],[119,-8,73,-0.0013200472109998135],[119,-8,74,-5.786511534437171E-4],[119,-8,75,4.0962063623493347E-4],[119,-8,76,0.0016385017703248509],[119,-8,77,0.0030947270065777165],[119,-8,78,0.0047583267047910036],[119,-8,79,0.006603109931234066],[119,-7,64,6.312655975390049E-4],[119,-7,65,-1.5032006232381008E-4],[119,-7,66,-8.329779294018394E-4],[119,-7,67,-0.0014102861983717391],[119,-7,68,-0.0018631976916638636],[119,-7,69,-0.0021616310880170357],[119,-7,70,-0.0022780276607895166],[119,-7,71,-0.0021888088302400603],[119,-7,72,-0.0018753386199411239],[119,-7,73,-0.001324685132808187],[119,-7,74,-5.301810223954074E-4],[119,-7,75,5.082166511220512E-4],[119,-7,76,0.0017837663835354204],[119,-7,77,0.003282980813655658],[119,-7,78,0.0049858623570797666],[119,-7,79,0.006866333942861653],[119,-6,64,3.4364086781072094E-4],[119,-6,65,-4.476251211543132E-4],[119,-6,66,-0.0011193441320552341],[119,-6,67,-0.0016678460311139766],[119,-6,68,-0.0020789436590585527],[119,-6,69,-0.0023272197565451184],[119,-6,70,-0.002388946868230668],[119,-6,71,-0.0022436267241932447],[119,-6,72,-0.001875037003390066],[119,-6,73,-0.0012720727870956555],[119,-6,74,-4.29382631269196E-4],[119,-6,75,6.522003872732729E-4],[119,-6,76,0.0019654318766520037],[119,-6,77,0.003496632404238534],[119,-6,78,0.005225865260789941],[119,-6,79,0.007127313758357918],[119,-5,64,9.543494318602013E-5],[119,-5,65,-6.995970777730332E-4],[119,-5,66,-0.0013554434441494791],[119,-5,67,-0.0018711843259889005],[119,-5,68,-0.002237531833602713],[119,-5,69,-0.002433867389995945],[119,-5,70,-0.002440452956441858],[119,-5,71,-0.0022400336465815177],[119,-5,72,-0.0018189539758502117],[119,-5,73,-0.0011680666353706354],[119,-5,74,-2.834336762564764E-4],[119,-5,75,8.331795759068508E-4],[119,-5,76,0.0021740171294798013],[119,-5,77,0.0037252502942545025],[119,-5,78,0.005467099441365389],[119,-5,79,0.007374157604264342],[119,-4,64,-1.1156311031846364E-4],[119,-4,65,-9.045802313992494E-4],[119,-4,66,-0.0015401205046966153],[119,-4,67,-0.0020199968577895174],[119,-4,68,-0.0023397780994290993],[119,-4,69,-0.002483677407683254],[119,-4,70,-0.002436017606108615],[119,-4,71,-0.0021828778191044515],[119,-4,72,-0.0017132631868424326],[119,-4,73,-0.0010200671518089419],[119,-4,74,-1.008261637175852E-4],[119,-4,75,0.0010417329132132627],[119,-4,76,0.0023993519761033267],[119,-4,77,0.003958106307624993],[119,-4,78,0.005698473107719741],[119,-4,79,0.007595602003942348],[119,-3,64,-2.772923069596189E-4],[119,-3,65,-0.0010627858152649056],[119,-3,66,-0.0016741841774846483],[119,-3,67,-0.002115999546408823],[119,-3,68,-0.002388533501391742],[119,-3,69,-0.002480760874784685],[119,-3,70,-0.002381047884947968],[119,-3,71,-0.0020788235154954753],[119,-3,72,-0.0015657858493840374],[119,-3,73,-8.36903225120651E-4],[119,-3,74,1.0878997332690466E-4],[119,-3,75,0.0012676026452693105],[119,-3,76,0.002630800743696403],[119,-3,77,0.004184424391241301],[119,-3,78,0.0059093068405092625],[119,-3,79,0.007781293390442316],[119,-2,64,-4.03414223488856E-4],[119,-2,65,-0.0011762866737129527],[119,-2,66,-0.0017603920464768143],[119,-2,67,-0.0021628928045814167],[119,-2,68,-0.002388621327507972],[119,-2,69,-0.002431142847685388],[119,-2,70,-0.0022827613973187082],[119,-2,71,-0.0019361969707039363],[119,-2,72,-0.0013858112379465297],[119,-2,73,-6.28632464839387E-4],[119,-2,74,3.348205804271155E-4],[119,-2,75,0.0014999155227348347],[119,-2,76,0.0028574834430475132],[119,-2,77,0.00439359506075629],[119,-2,78,0.00608953458736832],[119,-2,79,0.007921969421411688],[119,-1,64,-4.931003406023637E-4],[119,-1,65,-0.0012488083833134816],[119,-1,66,-0.0018032368937003775],[119,-1,67,-0.0021661355069212576],[119,-1,68,-0.0023465938712702813],[119,-1,69,-0.002342501246019371],[119,-1,70,-0.002149909809176882],[119,-1,71,-0.0017646995851937407],[119,-1,72,-0.0011838064128650598],[119,-1,73,-4.062555039675022E-4],[119,-1,74,5.659996531090695E-4],[119,-1,75,0.0017274328703147225],[119,-1,76,0.003068494729442301],[119,-1,77,0.0045753549523797786],[119,-1,78,0.00622983628996091],[119,-1,79,0.008009538174085045],[119,0,64,-5.506075443954709E-4],[119,0,65,-0.0012853122082019872],[119,0,66,-0.001808530690208591],[119,0,67,-0.0021325243026056257],[119,0,68,-0.0022703048425273447],[119,0,69,-0.0022237345255649425],[119,0,70,-0.0019923473889557463],[119,0,71,-0.0015749854916738684],[119,0,72,-9.71012722667081E-4],[119,0,73,-1.8134238614703316E-4],[119,0,74,7.907217035829068E-4],[119,0,75,0.0019388304793626534],[119,0,76,0.00325312069252893],[119,0,77,0.004719930870417906],[119,0,78,0.006321700854952819],[119,0,79,0.008037053256691781],[119,1,64,-5.806377640828033E-4],[119,1,65,-0.0012913667347188708],[119,1,66,-0.0017827836241054648],[119,1,67,-0.0020695763018497887],[119,1,68,-0.0021682958117377246],[119,1,69,-0.002084356749991743],[119,1,70,-0.0018204432386356474],[119,1,71,-0.0013781020988027667],[119,1,72,-7.589275020098881E-4],[119,1,73,3.443088079311511E-5],[119,1,74,9.974365171423816E-4],[119,1,75,0.002123011334638542],[119,1,76,0.0034010572409520702],[119,1,77,0.0048181529842061385],[119,1,78,0.006357425135204733],[119,1,79,0.007998591628244574],[119,2,64,-5.874787769878672E-4],[119,2,65,-0.0012723068596441397],[119,2,66,-0.00173237791333171],[119,2,67,-0.001984715451003134],[119,2,68,-0.002048997141108055],[119,2,69,-0.001933720274532128],[119,2,70,-0.0016443368452788863],[119,2,71,-0.0011847923448284796],[119,2,72,-5.586685080989502E-4],[119,2,73,2.2983952678904456E-4],[119,2,74,0.0011751119428811824],[119,2,75,0.0022694587835880103],[119,2,76,0.0035026398760023905],[119,2,77,0.004861549354835303],[119,2,78,0.006330063662320042],[119,2,79,0.00788905157313956],[119,3,64,-5.739137685574958E-4],[119,3,65,-0.0012321587538675779],[119,3,66,-0.0016625089741763698],[119,3,67,-0.0018842318414985719],[119,3,68,-0.0019197118234495249],[119,3,69,-0.001780036054765072],[119,3,70,-0.0014730109265658705],[119,3,71,-0.0010046389296511661],[119,3,72,-3.8020996035906604E-4],[119,3,73,3.947612606828861E-4],[119,3,74,0.0013137519651633728],[119,3,75,0.0023686022729615458],[119,3,76,0.0035490399123559134],[119,3,77,0.004842358018849259],[119,3,78,0.006233244986978106],[119,3,79,0.00770376504342138],[119,4,64,-5.399016427230399E-4],[119,4,65,-0.001172341548020719],[119,4,66,-0.0015759112496596588],[119,4,67,-0.0017720357168407893],[119,4,68,-0.0017854064460717724],[119,4,69,-0.0016292162119979842],[119,4,70,-0.0013132045219514433],[119,4,71,-8.450696443881465E-4],[119,4,72,-2.315032695803148E-4],[119,4,73,5.20916721876939E-4],[119,4,74,0.0014049757004915035],[119,4,75,0.0024122139365797012],[119,4,76,0.0035324601382936763],[119,4,77,0.004753506253167737],[119,4,78,0.006060922609581433],[119,4,79,0.007438012189542285],[119,5,64,-4.810246738800905E-4],[119,5,65,-0.0010901421277351268],[119,5,66,-0.0014713647520105933],[119,5,67,-0.0016482018077116495],[119,5,68,-0.0016473044632900886],[119,5,69,-0.0014835336416718174],[119,5,70,-0.0011681608281236214],[119,5,71,-7.102181671079057E-4],[119,5,72,-1.174768897857875E-4],[119,5,73,6.027044242669693E-4],[119,5,74,0.0014426620808898494],[119,5,75,0.002393840033738656],[119,5,76,0.003446332916215247],[119,5,77,0.004588558798637709],[119,5,78,0.005807060850308943],[119,5,79,0.007086436821811229],[119,6,64,-3.866975995273477E-4],[119,6,65,-9.769556748021424E-4],[119,6,66,-0.0013419739431499056],[119,6,67,-0.0015072950399477592],[119,6,68,-0.0015012726663780269],[119,6,69,-0.0013400898358925724],[119,6,70,-0.001036201685465396],[119,6,71,-5.996334324117599E-4],[119,6,72,-3.8910073615552956E-5],[119,6,73,6.381332667448297E-4],[119,6,74,0.0014236606901989954],[119,6,75,0.0023092646520685494],[119,6,76,0.003285514668315661],[119,6,77,0.0043416251403361845],[119,6,78,0.005465241580710262],[119,6,79,0.006642344277409199],[119,7,64,-2.3702882697761594E-4],[119,7,65,-8.14586885213711E-4],[119,7,66,-0.0011709796952091638],[119,7,67,-0.0013337245706264078],[119,7,68,-0.0013327124058995499],[119,7,69,-0.0011852195871398423],[119,7,70,-9.04614785234339E-4],[119,7,71,-5.016202343419016E-4],[119,7,72,1.4793293707454952E-5],[119,7,73,6.366215152646882E-4],[119,7,74,0.0013561520420139494],[119,7,75,0.00216540029427632],[119,7,76,0.003055655792835713],[119,7,77,0.004017138454686357],[119,7,78,0.005038764278630393],[119,7,79,0.006108019576813298],[119,8,64,-2.8749753977652926E-6],[119,8,65,-5.729864157597424E-4],[119,8,66,-9.274045503547183E-4],[119,8,67,-0.0010953818080712133],[119,8,68,-0.001108112033727218],[119,8,69,-9.837686978296793E-4],[119,8,70,-7.364112284905682E-4],[119,8,71,-3.7721984114025015E-4],[119,8,72,8.463325629592814E-5],[119,8,73,6.412145522925892E-4],[119,8,74,0.0012851622364786154],[119,8,75,0.002009121701810421],[119,8,76,0.0028052834887154626],[119,8,77,0.0036650233836107646],[119,8,78,0.004578644158751037],[119,8,79,0.005535218223571219],[119,9,64,3.3989266950927414E-4],[119,9,65,-2.2638386778148632E-4],[119,9,66,-5.838228606722669E-4],[119,9,67,-7.629815369517045E-4],[119,9,68,-7.960227388286963E-4],[119,9,69,-7.018227630174268E-4],[119,9,70,-4.949415330030529E-4],[119,9,71,-1.868334131731583E-4],[119,9,72,2.133001302463035E-4],[119,9,73,6.977524690731478E-4],[119,9,74,0.0012596488195335278],[119,9,75,0.0018923785548361537],[119,9,76,0.0025891228404745577],[119,9,77,0.003342477389802013],[119,9,78,0.004144169924375478],[119,9,79,0.004984871718256885],[119,10,64,8.090478371188772E-4],[119,10,65,2.445421885912088E-4],[119,10,66,-1.1928726591582197E-4],[119,10,67,-3.1373336444472897E-4],[119,10,68,-3.715224222528716E-4],[119,10,69,-3.1204471098817993E-4],[119,10,70,-1.5020286129558614E-4],[119,10,71,1.0240570294375546E-4],[119,10,72,4.3665468545256143E-4],[119,10,73,8.451425482015778E-4],[119,10,74,0.0013215343593445058],[119,10,75,0.0018599921536130537],[119,10,76,0.002454693890278071],[119,10,77,0.003099440887351132],[119,10,78,0.0037873534094568437],[119,10,79,0.00451065389242263],[119,11,64,0.0014186830458678714],[119,11,65,8.553448982650804E-4],[119,11,66,4.833338441270783E-4],[119,11,67,2.712795199385727E-4],[119,11,68,1.8634075859750627E-4],[119,11,69,2.0879114249995902E-4],[119,11,70,3.2350912998406245E-4],[119,11,71,5.18834239857767E-4],[119,11,72,7.857563881218605E-4],[119,11,73,0.00111718604318203],[119,11,74,0.0015073057423221367],[119,11,75,0.0019510033138526563],[119,11,76,0.0024433869527895782],[119,11,77,0.0029793821044119912],[119,11,78,0.0035534099210119794],[119,11,79,0.004159146874122298],[119,12,64,0.0021821688795931613],[119,12,65,0.001620770966492229],[119,12,66,0.001240293446600149],[119,12,67,0.0010099869461630186],[119,12,68,8.973582033006335E-4],[119,12,69,8.825036480807788E-4],[119,12,70,9.501696719732742E-4],[119,12,71,0.0010886626880827863],[119,12,72,0.0012890710431787157],[119,12,73,0.001544560448483786],[119,12,74,0.001849743497119425],[119,12,75,0.0022001236530841345],[119,12,76,0.002591613914981403],[119,12,77,0.0030201301785370946],[119,12,78,0.003481259146533614],[119,12,79,0.003970000464529257],[119,13,64,0.003115404248950811],[119,13,65,0.0025580089524063444],[119,13,66,0.002170182641682277],[119,13,67,0.00192248850220707],[119,13,68,0.0017832284522914673],[119,13,69,0.001732451948983469],[119,13,70,0.0017548189224900336],[119,13,71,0.0018385831866951834],[119,13,72,0.001974859926431903],[119,13,73,0.0021569585675973273],[119,13,74,0.0023797816103888945],[119,13,75,0.0026392898407243733],[119,13,76,0.002932034170621899],[119,13,77,0.0032547541959355394],[119,13,78,0.003604043400494791],[119,13,79,0.003976080780614768],[119,14,64,0.0042403641342119045],[119,14,65,0.003690230493037185],[119,14,66,0.0032974334619434334],[119,14,67,0.00303448668701046],[119,14,68,0.0028708886064649133],[119,14,69,0.002786730953557706],[119,14,70,0.0027665860654335554],[119,14,71,0.0027985865812745086],[119,14,72,0.002873754838550404],[119,14,73,0.002985388218134892],[119,14,74,0.0031285010168486133],[119,14,75,0.003299323282230306],[119,14,76,0.0034948569010484734],[119,14,77,0.0037124890910646448],[119,14,78,0.003949663305797558],[119,14,79,0.0042036074255667015],[119,15,64,0.0055905223231973505],[119,15,65,0.0050518254378137326],[119,15,66,0.004657254861432487],[119,15,67,0.004381817183902886],[119,15,68,0.00419654246916291],[119,15,69,0.004081614798611122],[119,15,70,0.004021483760512486],[119,15,71,0.004004064779490291],[119,15,72,0.004020148352518464],[119,15,73,0.004062854128540287],[119,15,74,0.0041271303952043975],[119,15,75,0.004209299418493278],[119,15,76,0.004306648963264281],[119,15,77,0.004417070205552837],[119,15,78,0.004538742131649248],[119,15,79,0.004669862405296514],[119,16,64,0.007204836317338535],[119,16,65,0.006681879063905833],[119,16,66,0.006288454556078384],[119,16,67,0.0060024976313101785],[119,16,68,0.005796861304234198],[119,16,69,0.00565188570236927],[119,16,70,0.0055518984103774495],[119,16,71,0.005484555478333182],[119,16,72,0.005440345023364515],[119,16,73,0.005412123044801632],[119,16,74,0.005394681991850978],[119,16,75,0.005384352535363592],[119,16,76,0.005378638907187262],[119,16,77,0.005375888082291752],[119,16,78,0.005374992990848432],[119,16,79,0.005375129860335592],[119,17,64,0.009100950748115226],[119,17,65,0.008597961717116706],[119,17,66,0.008208227078177538],[119,17,67,0.007912939980616533],[119,17,68,0.007687030120842921],[119,17,69,0.007511082924451015],[119,17,70,0.007369351892094528],[119,17,71,0.007249254991656547],[119,17,72,0.007140982990321803],[119,17,73,0.0070371261404097146],[119,17,74,0.006932319727793727],[119,17,75,0.006822908938022581],[119,17,76,0.00670663344024234],[119,17,77,0.006582332032864684],[119,17,78,0.0064496676378929954],[119,17,79,0.006308872873247672],[119,18,64,0.01127363264875168],[119,18,65,0.010794739279983069],[119,18,66,0.010411017994537046],[119,18,67,0.010107147215815853],[119,18,68,0.009860347167655716],[119,18,69,0.009651559781817694],[119,18,70,0.00946505151852254],[119,18,71,0.009288074881172255],[119,18,72,0.009110588170543221],[119,18,73,0.008924978810855827],[119,18,74,0.008725790723326224],[119,18,75,0.008509456205527422],[119,18,76,0.008274032755536563],[119,18,77,0.008018945258336081],[119,18,78,0.007744733928249898],[119,18,79,0.007452808375394292],[119,19,64,0.013488048715986108],[119,19,65,0.013247572569178972],[119,19,66,0.012872083831098764],[119,19,67,0.012560206524766988],[119,19,68,0.012291623436743237],[119,19,69,0.012047762113209758],[119,19,70,0.011813020368773823],[119,19,71,0.01157459805679552],[119,19,72,0.011322331693042025],[119,19,73,0.01104851726188528],[119,19,74,0.010747721646272907],[119,19,75,0.010416583143744624],[119,19,76,0.010053601548887393],[119,19,77,0.009658918297469374],[119,19,78,0.009234087178755075],[119,19,79,0.008781836129952045],[119,20,64,0.010938629060873117],[119,20,65,0.01133837034365047],[119,20,66,0.011682015302642557],[119,20,67,0.011977656692100882],[119,20,68,0.01224305021709769],[119,20,69,0.012496172376014698],[119,20,70,0.012752386505484369],[119,20,71,0.013024439927033817],[119,20,72,0.013322513925323192],[119,20,73,0.013368766875501344],[119,20,74,0.012959862094713044],[119,20,75,0.012506983029932544],[119,20,76,0.0120092203419582],[119,20,77,0.01146758028851825],[119,20,78,0.010884777064110151],[119,20,79,0.010265000904393293],[119,21,64,0.008231045054915932],[119,21,65,0.00859549083853713],[119,21,66,0.008926625124813016],[119,21,67,0.009228956136139466],[119,21,68,0.009517564316469895],[119,21,69,0.009809646939708429],[119,21,70,0.01012013508510814],[119,21,71,0.010461522681015406],[119,21,72,0.01084380298702211],[119,21,73,0.011274448230947965],[119,21,74,0.011758432027306986],[119,21,75,0.01229829410380519],[119,21,76,0.012894246767137763],[119,21,77,0.013403889246674782],[119,21,78,0.012658251515473982],[119,21,79,0.011866489536701944],[119,22,64,0.005427350013139821],[119,22,65,0.005753280648630817],[119,22,66,0.006069687323916441],[119,22,67,0.006377636562332777],[119,22,68,0.00668949383070092],[119,22,69,0.007021521552075505],[119,22,70,0.0073880493105188995],[119,22,71,0.0078011413858132695],[119,22,72,0.008270423928308972],[119,22,73,0.008802970616310725],[119,22,74,0.009403246455111166],[119,22,75,0.010073109237557469],[119,22,76,0.010811868052648737],[119,22,77,0.011616398102289456],[119,22,78,0.0124813109681221],[119,22,79,0.013399179361514283],[119,23,64,0.002595840640209914],[119,23,65,0.0028803967189887083],[119,23,66,0.0031798227524204212],[119,23,67,0.003491963151379444],[119,23,68,0.003826473234388025],[119,23,69,0.00419852556359218],[119,23,70,0.00462167512258709],[119,23,71,0.0051073751469670045],[119,23,72,0.005664701144396087],[119,23,73,0.006300148103449341],[119,23,74,0.00701750058159489],[119,23,75,0.007817775185658873],[119,23,76,0.008699234787938099],[119,23,77,0.009657473659248204],[119,23,78,0.010685572548057461],[119,23,79,0.011774322593932528],[119,24,64,-1.9183095351228281E-4],[119,24,65,4.8912062673664E-5],[119,24,66,3.2909473047481756E-4],[119,24,67,6.436275067842383E-4],[119,24,68,9.995040610124182E-4],[119,24,69,0.001410657333573277],[119,24,70,0.0018896965125506024],[119,24,71,0.0024472838122685564],[119,24,72,0.003091763201169306],[119,24,73,0.0038288761293044146],[119,24,74,0.004661563975921022],[119,24,75,0.005589856724829214],[119,24,76,0.006610847170302614],[119,24,77,0.007718749760884884],[119,24,78,0.008905043004363988],[119,24,79,0.010158694186082087],[119,25,64,-0.002863393713485815],[119,25,65,-0.002668423867919506],[119,25,66,-0.0024097144070619222],[119,25,67,-0.002094941165283168],[119,25,68,-0.0017196815756988454],[119,25,69,-0.0012713824257651522],[119,25,70,-7.385443395615485E-4],[119,25,71,-1.1146893306828103E-4],[119,25,72,6.172839492747338E-4],[119,25,73,0.0014525386630394796],[119,25,74,0.0023962456068387767],[119,25,75,0.0034473219835996073],[119,25,76,0.004601590746757203],[119,25,77,0.005851816771793171],[119,25,78,0.007187839080009317],[119,25,79,0.008596797742622682],[119,26,64,-0.005348539957116227],[119,26,65,-0.005200773586503855],[119,26,66,-0.004965680066658088],[119,26,67,-0.004653124268552387],[119,26,68,-0.004261124567905195],[119,26,69,-0.003778633869827305],[119,26,70,-0.003195414725181562],[119,26,71,-0.0025028932408216464],[119,26,72,-0.0016946917330756576],[119,26,73,-7.670504169879761E-4],[119,26,74,2.8086164625824275E-4],[119,26,75,0.0014467458457561278],[119,26,76,0.0027250827973272778],[119,26,77,0.004107149582267988],[119,26,78,0.005581144190772593],[119,26,79,0.007132415688844568],[119,27,64,-0.007581350704740888],[119,27,65,-0.007481646052804652],[119,27,66,-0.00727216292394586],[119,27,67,-0.006964519092906761],[119,27,68,-0.006559007413041483],[119,27,69,-0.006046195980700857],[119,27,70,-0.005417245341931158],[119,27,71,-0.004664850353371133],[119,27,72,-0.0037838367409085936],[119,27,73,-0.002771636947158336],[119,27,74,-0.0016286454631240159],[119,27,75,-3.5845414083509204E-4],[119,27,76,0.0010320317253916162],[119,27,77,0.002532595483446558],[119,27,78,0.00412982804536808],[119,27,79,0.005807362073441488],[119,28,64,-0.009502560934491493],[119,28,65,-0.009451174265838748],[119,28,66,-0.009269084428217363],[119,28,67,-0.008969198559193474],[119,28,68,-0.008553885466159487],[119,28,69,-0.008015417176270693],[119,28,70,-0.007346468723438769],[119,28,71,-0.006541128002110378],[119,28,72,-0.005595544030510285],[119,28,73,-0.004508446453893972],[119,28,74,-0.0032815364571791936],[119,28,75,-0.0019197495793519023],[119,28,76,-4.313912337658739E-4],[119,28,77,0.0011718539635906047],[119,28,78,0.0028750376741628635],[119,28,79,0.004660186478840938],[119,29,64,-0.01106166139192542],[119,29,65,-0.011058232723334482],[119,29,66,-0.01090504719689451],[119,29,67,-0.010615822543253274],[119,29,68,-0.010194778191066674],[119,29,69,-0.00963595619082008],[119,29,70,-0.008933640102346345],[119,29,71,-0.00808341224536485],[119,29,72,-0.007082841083191689],[119,29,73,-0.005932033595841638],[119,29,74,-0.004634052787112783],[119,29,75,-0.0031952008102883703],[119,29,76,-0.001625168525217624],[119,29,77,6.294738684107533E-5],[119,29,78,0.0018527583278066236],[119,29,79,0.003724827007492137],[119,30,64,-0.012218833287387142],[119,30,65,-0.012262391193636648],[119,30,66,-0.01213929690109504],[119,30,67,-0.011863597574709537],[119,30,68,-0.011441117441149411],[119,30,69,-0.01086771053727161],[119,30,70,-0.010139338340842696],[119,30,71,-0.009253153748380578],[119,30,72,-0.008208214957087494],[119,30,73,-0.007006059932433489],[119,30,74,-0.0056511415825935135],[119,30,75,-0.0041511241132532834],[119,30,76,-0.002517041376205848],[119,30,77,-7.633183499883496E-4],[119,30,78,0.0010923428022339475],[119,30,79,0.0030292103660751785],[119,31,64,-0.012946711903071043],[119,31,65,-0.013035700926486581],[119,31,66,-0.012943521917256043],[119,31,67,-0.012684081376566859],[119,31,68,-0.012264549471080211],[119,31,69,-0.011682609534854201],[119,31,70,-0.0109359442438659],[119,31,71,-0.010023326200025886],[119,31,72,-0.008945346046885875],[119,31,73,-0.007704998605786058],[119,31,74,-0.006308127131784595],[119,31,75,-0.00476372614852202],[119,31,76,-0.0030841036682263865],[119,31,77,-0.0012849039346308512],[119,31,78,6.150078601953241E-4],[119,31,79,0.00259379714210753],[119,32,64,-0.013231974814001044],[119,32,65,-0.013364309101874425],[119,32,66,-0.013303486685884575],[119,32,67,-0.01306282837394524],[119,32,68,-0.01265058704215265],[119,32,69,-0.012066268550267975],[119,32,70,-0.011309293240932158],[119,32,71,-0.01038007424222475],[119,32,72,-0.009280748367512607],[119,32,73,-0.00801576423802686],[119,32,74,-0.0065923277071653205],[119,32,75,-0.005020705028209068],[119,32,76,-0.003314384556861343],[119,32,77,-0.0014900981140112649],[119,32,78,4.322965504794109E-4],[119,32,79,0.0024300704582992465],[119,33,64,-0.013076750108596963],[119,33,65,-0.013249896987709524],[119,33,66,-0.01322049438281918],[119,33,67,-0.013000871960152724],[119,33,68,-0.012600107642447081],[119,33,69,-0.012019500760829372],[119,33,70,-0.011260199088581445],[119,33,71,-0.010324247963700269],[119,33,72,-0.009215313866942278],[119,33,73,-0.007939266053005913],[119,33,74,-0.006504616294722274],[119,33,75,-0.004922817161420835],[119,33,76,-0.00320841960088324],[119,33,77,-0.001379090926746625],[119,33,78,5.44505372995813E-4],[119,33,79,0.0025389662985512255],[119,34,64,-0.012499839680688908],[119,34,65,-0.012710936952885714],[119,34,66,-0.012712674176404907],[119,34,67,-0.012516038971188888],[119,34,68,-0.01213069350367928],[119,34,69,-0.01155968240969954],[119,34,70,-0.010805844911518429],[119,34,71,-0.009872820683887463],[119,34,72,-0.008765757959664283],[119,34,73,-0.007491881933738575],[119,34,74,-0.006060923506458946],[119,34,75,-0.004485408763939922],[119,34,76,-0.002780809935805315],[119,34,77,-9.655588983868548E-4],[119,34,78,9.390753996832797E-4],[119,34,79,0.00290924392506446],[119,35,64,-0.011537752360991159],[119,35,65,-0.011783763167663639],[119,35,66,-0.01181608802091154],[119,35,67,-0.011644091490801863],[119,35,68,-0.01127780876442719],[119,35,69,-0.010721967190959497],[119,35,70,-0.009981037571277655],[119,35,71,-0.009060186430207008],[119,35,72,-0.007965963159898783],[119,35,73,-0.0067068508284684756],[119,35,74,-0.005293680675437348],[119,35,75,-0.0037399106636458903],[119,35,76,-0.0020617687925920023],[119,35,77,-2.7826219793677877E-4],[119,35,78,0.0015889466365530819],[119,35,79,0.0035157949479311555],[119,36,64,-0.010245541366970114],[119,36,65,-0.01052345052298838],[119,36,66,-0.01058565162717173],[119,36,67,-0.010439690792136944],[119,36,68,-0.010095808809102219],[119,36,69,-0.00956034508047414],[119,36,70,-0.008839321030927948],[119,36,71,-0.007939333196298881],[119,36,72,-0.006868217386161723],[119,36,73,-0.005635580622317531],[119,36,74,-0.004253200851724621],[119,36,75,-0.002735294770574666],[119,36,76,-0.0010986544217993623],[119,36,77,6.373464612837026E-4],[119,36,78,0.0024508750999079412],[119,36,79,0.004317889766149749],[119,37,64,-0.008697440280196636],[119,37,65,-0.009004496018887134],[119,37,66,-0.009095863960246236],[119,37,67,-0.00897717792322553],[119,37,68,-0.008658776507847177],[119,37,69,-0.008148540621363972],[119,37,70,-0.007453944076951741],[119,37,71,-0.006582887764067923],[119,37,72,-0.005544343209721845],[119,37,73,-0.004348868301298377],[119,37,74,-0.0030089951395180846],[119,37,75,-0.0015394903177229787],[119,37,76,4.2511760957735457E-5],[119,37,77,0.001717501616389195],[119,37,78,0.00346371227872226],[119,37,79,0.005257360271532695],[119,38,64,-0.006984945811945685],[119,38,65,-0.007318891220253209],[119,38,66,-0.007438883520288476],[119,38,67,-0.007348662277055449],[119,38,68,-0.00705863131318254],[119,38,69,-0.006578154786017448],[119,38,70,-0.005916050646087668],[119,38,71,-0.005081372972886445],[119,38,72,-0.004084042618249746],[119,38,73,-0.002935354124600656],[119,38,74,-0.001648358844714015],[119,38,75,-2.381245076629748E-4],[119,38,76,0.0012781282182368428],[119,38,77,0.0028810113227987506],[119,38,78,0.004549076093903668],[119,38,79,0.006259039426614907],[119,39,64,-0.0051658567507151245],[119,39,65,-0.005523941471632382],[119,39,66,-0.005671325273832341],[119,39,67,-0.0056098726985945495],[119,39,68,-0.005350069403599342],[119,39,69,-0.004902767285336537],[119,39,70,-0.004278064994637272],[119,39,71,-0.0034860480243719925],[119,39,72,-0.00253741704613744],[119,39,73,-0.001443996111996212],[119,39,74,-2.191205903359305E-4],[119,39,75,0.0011220949849663846],[119,39,76,0.002562608674196885],[119,39,77,0.004083421737491552],[119,39,78,0.005663667055105891],[119,39,79,0.007280814080928912],[119,40,64,-0.003258427280651215],[119,40,65,-0.0036364590533043417],[119,40,66,-0.003808476196704805],[119,40,67,-0.003774395039133112],[119,40,68,-0.003544812094805748],[119,40,69,-0.0031321588725418997],[119,40,70,-0.002547832497077352],[119,40,71,-0.0018029008339148888],[119,40,72,-9.08738736985958E-4],[119,40,73,1.224526783112722E-4],[119,40,74,0.0012772439414310247],[119,40,75,0.0025406922133818653],[119,40,76,0.0038961729620816004],[119,40,77,0.005325327655129217],[119,40,78,0.006808126534882279],[119,40,79,0.008323045294965309],[119,41,64,-0.0012850283406893297],[119,41,65,-0.0016776815017643175],[119,41,66,-0.001870285547044518],[119,41,67,-0.001860674568808596],[119,41,68,-0.0016595953214427882],[119,41,69,-0.0012812131297763073],[119,41,70,-7.383036535656012E-4],[119,41,71,-4.292808252595558E-5],[119,41,72,7.92913490515846E-4],[119,41,73,0.0017567428366572781],[119,41,74,0.0028351787922387996],[119,41,75,0.004013626890049038],[119,41,76,0.0052760831279587],[119,41,77,0.006605051307132031],[119,41,78,0.007981573111555534],[119,41,79,0.009385369857624025],[119,42,64,7.291117457357333E-4],[119,42,65,3.279098017989582E-4],[119,42,66,1.1972580670175467E-4],[119,42,67,1.0897031253070738E-4],[119,42,68,2.846964471155748E-4],[119,42,69,6.308114825647628E-4],[119,42,70,0.001133037135836682],[119,42,71,0.001778261282562174],[119,42,72,0.0025538596444301025],[119,42,73,0.0034471290041987695],[119,42,74,0.004444832345779175],[119,42,75,0.005532856022675263],[119,42,76,0.00669597877376548],[119,42,77,0.007917752133151898],[119,42,78,0.009180491522840464],[119,42,79,0.010465377075722886],[119,43,64,0.0027594874649590094],[119,43,65,0.0023561421896075457],[119,43,66,0.0021379673488838946],[119,43,67,0.002111780560520835],[119,43,68,0.002266373594482194],[119,43,69,0.002583512236561263],[119,43,70,0.0030472628741246696],[119,43,71,0.0036433698878903134],[119,43,72,0.004358546292568969],[119,43,73,0.005179873405529433],[119,43,74,0.006094310056001507],[119,43,75,0.0070883115569501205],[119,43,76,0.00814755838062046],[119,43,77,0.009256794208994097],[119,43,78,0.010399772774202549],[119,43,79,0.011559312663639538],[119,44,64,0.004786125743777526],[119,44,65,0.004386929780865125],[119,44,66,0.004164500936270641],[119,44,67,0.004128201432558781],[119,44,68,0.004266487280702169],[119,44,69,0.00455876314734693],[119,44,70,0.00498727149389512],[119,44,71,0.005536495990614379],[119,44,72,0.006192416919484664],[119,44,73,0.00694187309955583],[119,44,74,0.007772030971359155],[119,44,75,0.008669961190139231],[119,44,76,0.009622322799489111],[119,44,77,0.010615154789452803],[119,44,78,0.011633774588433378],[119,44,79,0.012662782798585858],[119,45,64,0.006797629389276619],[119,45,65,0.006408281493978234],[119,45,66,0.006186987312972074],[119,45,67,0.006145744297885351],[119,45,68,0.006272582209183662],[119,45,69,0.00654433053744462],[119,45,70,0.006941233549665079],[119,45,71,0.0074463814267308566],[119,45,72,0.008044928261275099],[119,45,73,0.008723413932503175],[119,45,74,0.009469190624508624],[119,45,75,0.010269954471674298],[119,45,76,0.011113382539722313],[119,45,77,0.01198687508585901],[119,45,78,0.01287740278831887],[119,45,79,0.013771458396665385],[119,46,64,0.008795458364778245],[119,46,65,0.00842054307789419],[119,46,66,0.008204861221769826],[119,46,67,0.008163069383078252],[119,46,68,0.008282660221762807],[119,46,69,0.0085376869954614],[119,46,70,0.008906223716724412],[119,46,71,0.009369826837931439],[119,46,72,0.009912715701250432],[119,46,73,0.010521053925074393],[119,46,74,0.011182332626371267],[119,46,75,0.011884856100010586],[119,46,76,0.012617330304922798],[119,46,77,0.013368554244854603],[119,46,78,0.014127214080495325],[119,46,79,0.014627535368261887],[119,47,64,0.010781517491076349],[119,47,65,0.010424329131582772],[119,47,66,0.010217634848509263],[119,47,67,0.010178699052635628],[119,47,68,0.010294347940000281],[119,47,69,0.010535679819992084],[119,47,70,0.010878437575447401],[119,47,71,0.011302504553916978],[119,47,72,0.011791049251784813],[119,47,73,0.01232976755881203],[119,47,74,0.012906223595246454],[119,47,75,0.013509289900969402],[119,47,76,0.014128687469868879],[119,47,77,0.014754625864611908],[119,47,78,0.014284385674282599],[119,47,79,0.013640657389525412],[119,48,64,0.012706617116296464],[119,48,65,0.012370255588667474],[119,48,66,0.012176064151016422],[119,48,67,0.012143814234247055],[119,48,68,0.01225954405066611],[119,48,69,0.012491265351662794],[119,48,70,0.01281225842131347],[119,48,71,0.013200606240675148],[119,48,72,0.013638306935614495],[119,48,73,0.014110479980991113],[119,48,74,0.01460466732175356],[119,48,75,0.014755177128568536],[119,48,76,0.014221398423750437],[119,48,77,0.013691892144323372],[119,48,78,0.013174558553929306],[119,48,79,0.012676927085440192],[119,49,64,0.014515071120775788],[119,49,65,0.014202619219287388],[119,49,66,0.0140247615152216],[119,49,67,0.014003631489091627],[119,49,68,0.014124373519979767],[119,49,69,0.014351837594962053],[119,49,70,0.01465674821503198],[119,49,71,0.01501528094056486],[119,49,72,0.014634907769533608],[119,49,73,0.014204947575128624],[119,49,74,0.013766537424753367],[119,49,75,0.01333000137544644],[119,49,76,0.01290388226953542],[119,49,77,0.012495398423691604],[119,49,78,0.012110806853279026],[119,49,79,0.011755672974181808],[119,50,64,0.014043106906105796],[119,50,65,0.0143317344224585],[119,50,66,0.014489661082765625],[119,50,67,0.014492614976567814],[119,50,68,0.014356471857723074],[119,50,69,0.01411960014987262],[119,50,70,0.013813924825022734],[119,50,71,0.013465304671138765],[119,50,72,0.013094468232425866],[119,50,73,0.012717864646906404],[119,50,74,0.012348427991845046],[119,50,75,0.011996253996005488],[119,50,76,0.011669188222176687],[119,50,77,0.011373325062255996],[119,50,78,0.011113417118747568],[119,50,79,0.010893194769015294],[119,51,64,0.012699015029935314],[119,51,65,0.012959511587704193],[119,51,66,0.013094604466947964],[119,51,67,0.01307808018646832],[119,51,68,0.012926869465216203],[119,51,69,0.01268247786804359],[119,51,70,0.012379443891399151],[119,51,71,0.012045666609867927],[119,51,72,0.011703355702124978],[119,51,73,0.011369901080067078],[119,51,74,0.011058660637270738],[119,51,75,0.010779664871210546],[119,51,76,0.010540237368728507],[119,51,77,0.010345530374539317],[119,51,78,0.01019897488651368],[119,51,79,0.010102644937380303],[119,52,64,0.011580735101489563],[119,52,65,0.01181093251432371],[119,52,66,0.01191961728168455],[119,52,67,0.011878901878033575],[119,52,68,0.011706825455297928],[119,52,69,0.011447933004896521],[119,52,70,0.01113933873156865],[119,52,71,0.010811001362357707],[119,52,72,0.010486680703790375],[119,52,73,0.010184818654700036],[119,52,74,0.00991934311281289],[119,52,75,0.00970039344055182],[119,52,76,0.009534966380319905],[119,52,77,0.009427481530358217],[119,52,78,0.009380265707660046],[119,52,79,0.009393955732734022],[119,53,64,0.010705744066526598],[119,53,65,0.01090396808433068],[119,53,66,0.010983058991493712],[119,53,67,0.010913751864688641],[119,53,68,0.010715228631647032],[119,53,69,0.010434923463206108],[119,53,70,0.010112445174229536],[119,53,71,0.009779798274120857],[119,53,72,0.00946233824514544],[119,53,73,0.00917965619075408],[119,53,74,0.008946391231808433],[119,53,75,0.008772969244377529],[119,53,76,0.008666266746646865],[119,53,77,0.008630198953101239],[119,53,78,0.008666231220140519],[119,53,79,0.008773813307121847],[119,54,64,0.010082456009799094],[119,54,65,0.010247588130525216],[119,54,66,0.010294405410464544],[119,54,67,0.010192582363186731],[119,54,68,0.009962458311796155],[119,54,69,0.00965415902020467],[119,54,70,0.009309666188556904],[119,54,71,0.008962983207019243],[119,54,72,0.008641081371298645],[119,54,73,0.008364780358483707],[119,54,74,0.008149561299478246],[119,54,75,0.008006310988083536],[119,54,76,0.007941995969228961],[119,54,77,0.007960265448684785],[119,54,78,0.008061982162543665],[119,54,79,0.008245680535376703],[119,55,64,0.009710619600542507],[119,55,65,0.00984213707428419],[119,55,66,0.009854600477822167],[119,55,67,0.009716950729474618],[119,55,68,0.009450679097327792],[119,55,69,0.009108364461014443],[119,55,70,0.008734202928733703],[119,55,71,0.008364118183740369],[119,55,72,0.00802669114420799],[119,55,73,0.007744028664767971],[119,55,74,0.0075325695930781094],[119,55,75,0.007403826686375319],[119,55,76,0.0073650630836968045],[119,55,77,0.007419902218126515],[119,55,78,0.007568870238862837],[119,55,79,0.007809870193741755],[119,56,64,0.009581824070574103],[119,56,65,0.009679818840353727],[119,56,66,0.009656517241504629],[119,56,67,0.00948045301411078],[119,56,68,0.009174243830350438],[119,56,69,0.008792649789850438],[119,56,70,0.00838189109028195],[119,56,71,0.007979703790380481],[119,56,72,0.00761624595614928],[119,56,73,0.007314947439399],[119,56,74,0.007093301597265897],[119,56,75,0.006963597440790445],[119,56,76,0.006933590879584624],[119,56,77,0.007007113906963475],[119,56,78,0.007184620744575018],[119,56,79,0.007463670136247962],[119,57,64,0.00968011637946199],[119,57,65,0.00974529378348826],[119,57,66,0.009685530844706419],[119,57,67,0.009469269184162502],[119,57,68,0.009120207628082374],[119,57,69,0.008694990441193547],[119,57,70,0.008241645509847488],[119,57,71,0.007799587252217693],[119,57,72,0.0074004930458424975],[119,57,73,0.007069127611108187],[119,57,74,0.0068241136717089425],[119,57,75,0.006678647380643413],[119,57,76,0.006641157167624436],[119,57,77,0.006715904829852959],[119,57,78,0.0069035278519319065],[119,57,79,0.007201522101061546],[119,58,64,0.009982732115188483],[119,58,65,0.010016390259163059],[119,58,66,0.00992020621195491],[119,58,67,0.00966282276500698],[119,58,68,0.009268955799352717],[119,58,69,0.008796820331155392],[119,58,70,0.00829601586461944],[119,58,71,0.007807479029130273],[119,58,72,0.007364325024283518],[119,58,73,0.006992641008510982],[119,58,74,0.006712229780194862],[119,58,75,0.00653730225623365],[119,58,76,0.006477117409080309],[119,58,77,0.006536568478346364],[119,58,78,0.006716714426218111],[119,58,79,0.007015255756023768],[119,59,64,0.010460942552608392],[119,59,65,0.010464933347366003],[119,59,66,0.010333103011927965],[119,59,67,0.010034557540688405],[119,59,68,0.009594948337290974],[119,59,69,0.00907374048561213],[119,59,70,0.008521856230428898],[119,59,71,0.007981580687003983],[119,59,72,0.007487364134628317],[119,59,73,0.007066579846084195],[119,59,74,0.006740235843116225],[119,59,75,0.006523639113286116],[119,59,76,0.006427010968965021],[119,59,77,0.006456052373769491],[119,59,78,0.0066124582046016185],[119,59,79,0.006894379557532327],[119,60,64,0.011081020146075392],[119,60,65,0.011057693094898591],[119,60,66,0.01089170033410556],[119,60,67,0.010552833815610358],[119,60,68,0.010067583551546806],[119,60,69,0.009496345856459575],[119,60,70,0.008891111138811388],[119,60,71,0.008295326689879588],[119,60,72,0.007744656866645454],[119,60,73,0.007267701959671963],[119,60,74,0.006886674188074979],[119,60,75,0.006618029399053899],[119,60,76,0.0064730531849165485],[119,60,77,0.006458400265242641],[119,60,78,0.006576586114961489],[119,60,79,0.0068264299496472855],[119,61,64,0.011805324567222447],[119,61,65,0.01175745447799261],[119,61,66,0.011559443355743671],[119,61,67,0.011181946583597165],[119,61,68,0.010652183251243418],[119,61,69,0.010031172790674307],[119,61,70,0.00937172063302833],[119,61,71,0.008718242624565326],[119,61,72,0.008107481421298617],[119,61,73,0.007569184239819237],[119,61,74,0.007126740466438172],[119,61,75,0.006797777753219761],[119,61,76,0.006594715355977332],[119,61,77,0.006525273595021863],[119,61,78,0.00659293844361988],[119,61,79,0.006797380370747079],[119,62,64,0.012593511214482664],[119,62,65,0.012524211103792631],[119,62,66,0.012296914094943403],[119,62,67,0.011883267773078712],[119,62,68,0.011311101716819441],[119,62,69,0.01064176944900982],[119,62,70,0.009928646661433197],[119,62,71,0.009216922215147494],[119,62,72,0.008544270375069362],[119,62,73,0.007941486574541452],[119,62,74,0.007433085277021935],[119,62,75,0.00703785862070875],[119,62,76,0.006769394650512199],[119,62,77,0.0066365540595183965],[119,62,78,0.006643904478199787],[119,62,79,0.006792111463180579],[119,63,64,0.013403863918068158],[119,63,65,0.013316484466873061],[119,63,66,0.01306312814523219],[119,63,67,0.012616514539769532],[119,63,68,0.01200496050534044],[119,63,69,0.01128989128245257],[119,63,70,0.01052502296393263],[119,63,71,0.009756125309519624],[119,63,72,0.009021650726879566],[119,63,73,0.008353328456109945],[119,63,74,0.007776722591801103],[119,63,75,0.007311752688846508],[119,63,76,0.006973175810069697],[119,63,77,0.006771028984582405],[119,63,78,0.006711031154886727],[119,63,79,0.006794943797161789],[119,64,64,0.014194753343424245],[119,64,65,0.01409277035605915],[119,64,66,0.013816959067648623],[119,64,67,0.013341145361256967],[119,64,68,0.012694010920252389],[119,64,69,0.01193682346545558],[119,64,70,0.011123430404028864],[119,64,71,0.010299998824069533],[119,64,72,0.009505603323228782],[119,64,73,0.008772780229324121],[119,64,74,0.008128046912851308],[119,64,75,0.007592384998140481],[119,64,76,0.007181686386274387],[119,64,77,0.006907161108026153],[119,64,78,0.0067757061282733445],[119,64,79,0.006790234323699005],[119,65,64,0.014926222358338773],[119,65,65,0.014813113768066637],[119,65,66,0.014518691878453555],[119,65,67,0.014017885451972075],[119,65,68,0.013339625743451284],[119,65,69,0.012544831955958766],[119,65,70,0.011687299475493483],[119,65,71,0.010813422416419576],[119,65,72,0.0099627434497793],[119,65,73,0.009168470761859476],[119,65,74,0.008457960904888371],[119,65,75,0.007853166404539001],[119,65,76,0.007371047091006446],[119,65,77,0.007023944221047274],[119,65,78,0.006819916556817164],[119,65,79,0.006763037662720871],[119,66,64,0.015561699374732767],[119,66,65,0.015440813428655316],[119,66,66,0.015131706815033822],[119,66,67,0.01461038276280609],[119,66,68,0.013905921575628042],[119,66,69,0.013078744603920877],[119,66,70,0.0121824414696901],[119,66,71,0.011263480420134551],[119,66,72,0.0103617241505754],[119,66,73,0.009510913101046847],[119,66,74,0.008739115044144178],[119,66,75,0.008069139881652665],[119,66,76,0.00751891866645011],[119,66,77,0.0071018459634201074],[119,66,78,0.0068270847579291714],[119,66,79,0.006699833211913194],[119,67,64,0.015804443352209242],[119,67,65,0.01594425674993334],[119,67,66,0.015624294290110327],[119,67,67,0.015086995557906694],[119,67,68,0.014361512860826797],[119,67,69,0.013507663463195695],[119,67,70,0.012578709527554322],[119,67,71,0.01162106132016237],[119,67,72,0.010674763589886952],[119,67,73,0.00977394944631092],[119,67,74,0.008947260602313137],[119,67,75,0.008218232944453147],[119,67,76,0.007605646491369619],[119,67,77,0.0071238388952998034],[119,67,78,0.006782981734037984],[119,67,79,0.0065893189292733296],[119,68,64,0.015538048570436074],[119,68,65,0.01569554543306462],[119,68,66,0.01597160165592509],[119,68,67,0.015422712272817687],[119,68,68,0.014681398383861028],[119,68,69,0.013806809176870482],[119,68,70,0.012851790519989689],[119,68,71,0.011862585774136462],[119,68,72,0.01087929750694685],[119,68,73,0.009936316513042153],[119,68,74,0.00906271704442423],[119,68,75,0.008282617251842992],[119,68,76,0.007615503933589211],[119,68,77,0.007076520781561514],[119,68,78,0.0066767194049195755],[119,68,79,0.006423272498257117],[119,69,64,0.015436690270350469],[119,69,65,0.015595757602534878],[119,69,66,0.01595608534745995],[119,69,67,0.015601209077051833],[119,69,68,0.014848986033879073],[119,69,69,0.013959503564391667],[119,69,70,0.012985134163040167],[119,69,71,0.011971869788173628],[119,69,72,0.010959763483207617],[119,69,73,0.009983338015095513],[119,69,74,0.009071960463293186],[119,69,75,0.008250181788910071],[119,69,76,0.0075380405086229],[119,69,77,0.006951329690396562],[119,69,78,0.006501826577379956],[119,69,79,0.006197484231606664],[119,70,64,0.01549387274652837],[119,70,65,0.015652358144729494],[119,70,66,0.01601556665370361],[119,70,67,0.015629118174934835],[119,70,68,0.014871086244192493],[119,70,69,0.013972794268725233],[119,70,70,0.012986068926122625],[119,70,71,0.011956553523729806],[119,70,72,0.010924133663758518],[119,70,73,0.009923329585012507],[119,70,74,0.008983654135448141],[119,70,75,0.008129935426139552],[119,70,76,0.007382603311791958],[119,70,77,0.006757938934941553],[119,70,78,0.006268286659655049],[119,70,79,0.005922227804971546],[119,71,64,0.01566834263274678],[119,71,65,0.01582192235657244],[119,71,66,0.016111502291157712],[119,71,67,0.015554192690806566],[119,71,68,0.0147976151602409],[119,71,69,0.013898552019504358],[119,71,70,0.012908073552737917],[119,71,71,0.011871261881603624],[119,71,72,0.0108276249927063],[119,71,73,0.009811476811547513],[119,71,74,0.008852282290151316],[119,71,75,0.007974966572658906],[119,71,76,0.007200187398427222],[119,71,77,0.006544569994666653],[119,71,78,0.006020903799657621],[119,71,79,0.005638300442158638],[119,72,64,0.01592155515537571],[119,72,65,0.0160637783996993],[119,72,66,0.015967455685537063],[119,72,67,0.015421322632077837],[119,72,68,0.014675544274650556],[119,72,69,0.013785627706406138],[119,72,70,0.01280155631638742],[119,72,71,0.01176753753134468],[119,72,72,0.010722410018172333],[119,72,73,0.009700015772813068],[119,72,74,0.008729536066821204],[119,72,75,0.007835790322308592],[119,72,76,0.007039497083449976],[119,72,77,0.006357496347257862],[119,72,78,0.005802932607167169],[119,72,79,0.005385398049139361],[119,73,64,0.016172372898646845],[119,73,65,0.016087726204904056],[119,73,66,0.01579068424619337],[119,73,67,0.01526573679726231],[119,73,68,0.014541611477534617],[119,73,69,0.013672116825134287],[119,73,70,0.012705742950116002],[119,73,71,0.0116854445581043],[119,73,72,0.010649046730750686],[119,73,73,0.009629613721001108],[119,73,74,0.008655779728136895],[119,73,75,0.007752040721486278],[119,73,76,0.0069390064833708435],[119,73,77,0.006233612140372903],[119,73,78,0.005649288546565917],[119,73,79,0.005196090971946393],[119,74,64,0.01592941693060017],[119,74,65,0.015874992586377253],[119,74,66,0.015608342441161601],[119,74,67,0.015115605650181774],[119,74,68,0.014424926969454716],[119,74,69,0.013587951459039797],[119,74,70,0.012651232143871998],[119,74,71,0.011656060825297793],[119,74,72,0.010638878434580593],[119,74,73,0.009631645690391924],[119,74,74,0.008662173006969451],[119,74,75,0.007754408710317582],[119,74,76,0.006928684728025138],[119,74,77,0.006201919023049813],[119,74,78,0.005587774142294801],[119,74,79,0.005096771345935256],[119,75,64,0.015683720202936593],[119,75,65,0.01566929006168562],[119,75,66,0.015443620185498809],[119,75,67,0.014994590620138266],[119,75,68,0.014349527508780319],[119,75,69,0.01355744308730795],[119,75,70,0.012662505170195093],[119,75,71,0.01170392873058201],[119,75,72,0.010716397328898005],[119,75,73,0.00973044121685015],[119,75,74,0.008772771031270868],[119,75,75,0.00786656611233458],[119,75,76,0.007031716597902795],[119,75,77,0.006285018559244744],[119,75,78,0.005640321552157341],[119,75,79,0.00510862806046362],[119,76,64,0.015456733451747138],[119,76,65,0.015492245057120938],[119,76,66,0.015318218212983285],[119,76,67,0.014924335673728728],[119,76,68,0.01433687485816027],[119,76,69,0.013601772138144386],[119,76,70,0.012760385656326123],[119,76,71,0.011849460527298468],[119,76,72,0.010901568186434929],[119,76,73,0.00994549783278311],[119,76,74,0.009006598832739236],[119,76,75,0.008107073083213626],[119,76,76,0.007266216461901683],[119,76,77,0.006500608617020487],[119,76,78,0.005824250468413927],[119,76,79,0.005248648905075506],[119,77,64,0.015271707279246306],[119,77,65,0.015366866882724171],[119,77,66,0.01525475980374725],[119,77,67,0.014926896854323727],[119,77,68,0.01440829413493791],[119,77,69,0.013741420035922226],[119,77,70,0.012964445342762023],[119,77,71,0.012111294198212105],[119,77,72,0.011212108324172665],[119,77,73,0.010293657807172901],[119,77,74,0.009379697249552163],[119,77,75,0.008491266235019647],[119,77,76,0.007646933200420935],[119,77,77,0.006862981944070297],[119,77,78,0.006153540133767067],[119,77,79,0.005530649303305196],[119,78,64,0.015155980620649332],[119,78,65,0.015319866759546873],[119,78,66,0.015279134459705],[119,78,67,0.015027105358288178],[119,78,68,0.014587347633053055],[119,78,69,0.013998539344062729],[119,78,70,0.013295351511905567],[119,78,71,0.012508595703836837],[119,78,72,0.011665719890582682],[119,78,73,0.010791244423726821],[119,78,74,0.009907136853620681],[119,78,75,0.009033124471459628],[119,78,76,0.00818694361902788],[119,78,77,0.00738452496434511],[119,78,78,0.006640114089765241],[119,78,79,0.005966326879562053],[119,79,64,0.015123839660673483],[119,79,65,0.015364655202330503],[119,79,66,0.01540385518651972],[119,79,67,0.015236528213159704],[119,79,68,0.014884648573948226],[119,79,69,0.014382863459548409],[119,79,70,0.01376210028636806],[119,79,71,0.013049821243630577],[119,79,72,0.012270558269997282],[119,79,73,0.011446380832822126],[119,79,74,0.01059729512773831],[119,79,75,0.009741573499536832],[119,79,76,0.008896013064289538],[119,79,77,0.008076122685976224],[119,79,78,0.007296237627066134],[119,79,79,0.006569561350020045],[119,80,64,0.0151238351593344],[119,80,65,0.015448973288272912],[119,80,66,0.015576606475222458],[119,80,67,0.015503594109874081],[119,80,68,0.015250248466255395],[119,80,69,0.014847030827097265],[119,80,70,0.014320920263822643],[119,80,71,0.01369578916863379],[119,80,72,0.012992989803458992],[119,80,73,0.012231865424321836],[119,80,74,0.011430184464880186],[119,80,75,0.01060449646853765],[119,80,76,0.00977040865950657],[119,80,77,0.008942782237935784],[119,80,78,0.008135847671112334],[119,80,79,0.00736323843008925],[119,81,64,0.01510326954980042],[119,81,65,0.015519040459579268],[119,81,66,0.015743246546192233],[119,81,67,0.015774568869220407],[119,81,68,0.01563166939061162],[119,81,69,0.015340758743722557],[119,81,70,0.014924708006381739],[119,81,71,0.014403562560025007],[119,81,72,0.013795197317024109],[119,81,73,0.013115887376129396],[119,81,74,0.012380792413086397],[119,81,75,0.011604353344686815],[119,81,76,0.010800600030681385],[119,81,77,0.00998336899739102],[119,81,78,0.009166430377727408],[119,81,79,0.008363523462782104],[119,82,64,0.015026304187137995],[119,82,65,0.015537620059776608],[119,82,66,0.015865613165648353],[119,82,67,0.016010863806184328],[119,82,68,0.015990466120995854],[119,82,69,0.015826407911213678],[119,82,70,0.015537350911442255],[119,82,71,0.0151393020522231],[119,82,72,0.014646357561360504],[119,82,73,0.014071352461453962],[119,82,74,0.01342641354359852],[119,82,75,0.012723414157210762],[119,82,76,0.011974329410636878],[119,82,77,0.011191490624699997],[119,82,78,0.01038773811967201],[119,82,79,0.009576471643226158],[119,83,64,0.01487154469612719],[119,83,65,0.015481680862516608],[119,83,66,0.015919292366908228],[119,83,67,0.01618694630739444],[119,83,68,0.016300312639470613],[119,83,69,0.016277275295107148],[119,83,70,0.01613225240318976],[119,83,71,0.015877044390411838],[119,83,72,0.015521688831019493],[119,83,73,0.015075209851098753],[119,83,74,0.01454625988528783],[119,83,75,0.013943651875758063],[119,83,76,0.013276780289819275],[119,83,77,0.01255592961148086],[119,83,78,0.011792469231550973],[119,83,79,0.010998933918089626],[119,84,64,0.014629753396874117],[119,84,65,0.01534018239081118],[119,84,66,0.015891506560604018],[119,84,67,0.016288364014511447],[119,84,68,0.016545195261659047],[119,84,69,0.016675985823811426],[119,84,70,0.016690947816602058],[119,84,71,0.01659756350926743],[119,84,72,0.01640157321903272],[119,84,73,0.01610784621601209],[119,84,74,0.015721132097734812],[119,84,75,0.015246690419258973],[119,84,76,0.0146907966862168],[119,84,77,0.014061123131762141],[119,84,78,0.013366993001846858],[119,84,79,0.012619507364024111],[119,85,64,0.01430169358013657],[119,85,65,0.015111988692816863],[119,85,66,0.015779126532902307],[119,85,67,0.01630988687308647],[119,85,68,0.0167177163187547],[119,85,69,0.01650710556153834],[119,85,70,0.01636244719617138],[119,85,71,0.016318496725085396],[119,85,72,0.01637403598109922],[119,85,73,0.016528693132149847],[119,85,74,0.01678206133253278],[119,85,75,0.016613808165435055],[119,85,76,0.016197152830794218],[119,85,77,0.015687689441484843],[119,85,78,0.015092118639653252],[119,85,79,0.014419528299283751],[119,86,64,0.013896111009748708],[119,86,65,0.01480391588300878],[119,86,66,0.015586812501721881],[119,86,67,0.016253771996308862],[119,86,68,0.016722786195311597],[119,86,69,0.016303562963746587],[119,86,70,0.015975588741880816],[119,86,71,0.015740126368932704],[119,86,72,0.015600550953318628],[119,86,73,0.015561174370576702],[119,86,74,0.015626214776301953],[119,86,75,0.015798914113037008],[119,86,76,0.016080806191339607],[119,86,77,0.01647113753433187],[119,86,78,0.01694390753153149],[119,86,79,0.0163741069529745],[119,87,64,0.01342785759512817],[119,87,65,0.014428918333797319],[119,87,66,0.01532528899289316],[119,87,67,0.01612815590662285],[119,87,68,0.01675593974975369],[119,87,69,0.016161249524845864],[119,87,70,0.01564233367821665],[119,87,71,0.015204700663331584],[119,87,72,0.014856358788790288],[119,87,73,0.01460646129372029],[119,87,74,0.014464109711461436],[119,87,75,0.014437318954238451],[119,87,76,0.014532147111369608],[119,87,77,0.014751992521034825],[119,87,78,0.015097060253845242],[119,87,79,0.01556399973868807],[119,88,64,0.012916161772040226],[119,88,65,0.01400441800762767],[119,88,66,0.01500975791777166],[119,88,67,0.015945578357833074],[119,88,68,0.016824010609265912],[119,88,69,0.01607424089691933],[119,88,70,0.015360567481014881],[119,88,71,0.014714173600099181],[119,88,72,0.01414766304371354],[119,88,73,0.013675105524938154],[119,88,74,0.01331065959916975],[119,88,75,0.013067371186838333],[119,88,76,0.012956151143705527],[119,88,77,0.012984934847101198],[119,88,78,0.013158026301849268],[119,88,79,0.013475628819234208],[119,89,64,0.012383049752757488],[119,89,65,0.013550781051578318],[119,89,66,0.014658453879280638],[119,89,67,0.01572164160439906],[119,89,68,0.016752626642801912],[119,89,69,0.01603370864434753],[119,89,70,0.015125483882035797],[119,89,71,0.01426811557925283],[119,89,72,0.013478687769270237],[119,89,73,0.012776175592481212],[119,89,74,0.012179876676643485],[119,89,75,0.011708031968303098],[119,89,76,0.011376639942039279],[119,89,77,0.011198467595643597],[119,89,78,0.011182261131315431],[119,89,79,0.011332158729201486],[119,90,64,0.011851921455723438],[119,90,65,0.013089945433702312],[119,90,66,0.014291345403027234],[119,90,67,0.015473808671526215],[119,90,68,0.01665005695266025],[119,90,69,0.016028856362793553],[119,90,70,0.014930354328017639],[119,90,71,0.013864296422834899],[119,90,72,0.012852057247139845],[119,90,73,0.011917420029924183],[119,90,74,0.011084808926965395],[119,90,75,0.01037772439121385],[119,90,76,0.009817386049566782],[119,90,77,0.009421586958159717],[119,90,78,0.009203762556947732],[119,90,79,0.009172277107224852],[119,91,64,0.01134628459822722],[119,91,65,0.012644203081292077],[119,91,66,0.013928985482522466],[119,91,67,0.015220343887980785],[119,91,68,0.016531710611286853],[119,91,69,0.01604773227227988],[119,91,70,0.014767184676656405],[119,91,71,0.013499166754900436],[119,91,72,0.01226908520995198],[119,91,73,0.01110535073071802],[119,91,74,0.010037407422193938],[119,91,75,0.009093978521628642],[119,91,76,0.008301533356983382],[119,91,77,0.00768297990023792],[119,91,78,0.007256586674208473],[119,91,79,0.0070351371917382124],[119,92,64,0.010888650131896951],[119,92,65,0.01223513968439113],[119,92,66,0.013591514541179935],[119,92,67,0.014979398671898153],[119,92,68,0.01641318202170005],[119,92,69,0.016077915676046658],[119,92,70,0.014627256783042308],[119,92,71,0.013168235702969815],[119,92,72,0.011729971836889445],[119,92,73,0.010345245207527439],[119,92,74,0.009048323068219292],[119,92,75,0.007873015433955362],[119,92,76,0.0068509650199452465],[119,92,77,0.006010176428829108],[119,92,78,0.005373788792705925],[119,92,79,0.0049590954550391185],[119,93,64,0.01049959191862262],[119,93,65,0.011882735051858767],[119,93,66,0.013297818647351493],[119,93,67,0.014768245306962245],[119,93,68,0.016309579009711816],[119,93,69,0.016107074891721047],[119,93,70,0.014501552821503436],[119,93,71,0.012866343042128907],[119,93,72,0.01123390695352101],[119,93,73,0.009641066518047966],[119,93,74,0.008126631862836882],[119,93,75,0.006729269712765193],[119,93,76,0.005485618666363239],[119,93,77,0.004428656644126355],[119,93,78,0.0035863251647897843],[119,93,79,0.002980414444708796],[119,94,64,0.010196973282543752],[119,94,65,0.011604626650856643],[119,94,66,0.013064845570961162],[119,94,67,0.014602661211051169],[119,94,68,0.016234992207269424],[119,94,69,0.016123394461472533],[119,94,70,0.014381060366225676],[119,94,71,0.01258782405763845],[119,94,72,0.010779077994473986],[119,94,73,0.00899529972258583],[119,94,74,0.007279487855973148],[119,94,75,0.0056748499437292025],[119,94,76,0.004222748750917101],[119,94,77,0.002960912762894811],[119,94,78,0.00192191601230596],[119,94,79,0.001131931630808199],[119,95,64,0.009995342830774023],[119,95,65,0.011415538722587779],[119,95,66,0.012907081040181942],[119,95,67,0.014496465980686804],[119,95,68,0.01620210789253489],[119,95,69,0.016115869634157776],[119,95,70,0.014256956420210487],[119,95,71,0.012326565546055528],[119,95,72,0.010362581408295287],[119,95,73,0.008408703835245415],[119,95,74,0.0065117030731856405],[119,95,75,0.00471893676403865],[119,95,76,0.003076135939251674],[119,95,77,0.001625466303469837],[119,95,78,4.0387033800265003E-4],[119,95,79,-5.58304976758215E-4],[119,96,64,0.009905501710496674],[119,96,65,0.011326879146416337],[119,96,66,0.012836187343035523],[119,96,67,0.014461213291419419],[119,96,68,0.01622196626264202],[119,96,69,0.016074466285835115],[119,96,70,0.014120668736869327],[119,96,71,0.012075951509139154],[119,96,72,0.009980236296349488],[119,96,73,0.007879978320540382],[119,96,74,0.005825253730786259],[119,96,75,0.003867118087469521],[119,96,76,0.002055243427516873],[119,96,77,4.3584062554871526E-4],[119,96,78,-9.5012700756334E-4],[119,96,79,-0.0020684337083844715],[119,97,64,0.009934244261928987],[119,97,65,0.011346506020126232],[119,97,66,0.012860806220815675],[119,97,67,0.014506039545704175],[119,97,68,0.016303866938883794],[119,97,69,0.0159901446061904],[119,97,70,0.013963812922486152],[119,97,71,0.01182869721976385],[119,97,72,0.009626299182314559],[119,97,73,0.007405343270967512],[119,97,74,0.0052187121334333186],[119,97,75,0.003120661160789969],[119,97,76,0.0011643201242469677],[119,97,77,-6.005109797608728E-4],[119,97,78,-0.00212926554780167],[119,97,79,-0.003384207910487373],[119,98,64,0.01008427383452161],[119,98,65,0.01147866573516613],[119,98,66,0.012986527817000625],[119,98,67,0.014637670985089639],[119,98,68,0.016455423340647635],[119,98,69,0.015854745028060377],[119,98,70,0.013778003941522487],[119,98,71,0.01157657045522589],[119,98,72,0.009293078906191599],[119,98,73,0.006978032478887207],[119,98,74,0.004686603703031275],[119,98,75,0.0024757211466088116],[119,98,76,4.014506410597036E-4],[119,98,77,-0.001483321452485071],[119,98,78,-0.0031308962493222475],[119,98,79,-0.004500455743895908],[119,99,64,0.010354295356780573],[119,99,65,0.011724104151444679],[119,99,66,0.013216027276028207],[119,99,67,0.014860590821881771],[119,99,68,0.016682767413033487],[119,99,69,0.015660735015996304],[119,99,70,0.013554540770849657],[119,99,71,0.011309998801168605],[119,99,72,0.008970450727124915],[119,99,73,0.006587698688228391],[119,99,74,0.004218688641456715],[119,99,75,0.001922485963114773],[119,99,76,-2.424479437136064E-4],[119,99,77,-0.0022206701808369484],[119,99,78,-0.003961855011758511],[119,99,79,-0.005422570459876817],[119,100,64,0.010739286087534435],[119,100,65,0.012080352315862875],[119,100,66,0.013549370430265831],[119,100,67,0.01517736779621488],[119,100,68,0.016990906053149568],[119,100,69,0.015400815458211472],[119,100,70,0.013283963063933644],[119,100,71,0.011017562029268442],[119,100,72,0.0086452688030488],[119,100,73,0.006219730378311108],[119,100,74,0.0037991677791426614],[119,100,75,0.0014442571435218238],[119,100,76,-7.846825686033892E-4],[119,100,77,-0.002830187074620394],[119,100,78,-0.0046398221656106],[119,100,79,-0.006168030535800654],[119,101,64,0.01122945279109538],[119,101,65,0.01254039407009932],[119,101,66,0.013982392731787903],[119,101,67,0.01558674580570825],[119,101,68,0.016993424430925726],[119,101,69,0.015070400221632394],[119,101,70,0.012958797324244441],[119,101,71,0.010688982559119823],[119,101,72,0.008304570457043869],[119,101,73,0.005858631410438339],[119,101,74,0.0034101918308188004],[119,101,75,0.0010210365065624618],[119,101,76,-0.001247177518110539],[119,101,77,-0.0033354870963552474],[119,101,78,-0.005189861587426544],[119,101,79,-0.006763107203735252],[119,102,64,0.01179498794961324],[119,102,65,0.01307399610443788],[119,102,66,0.01448457064116647],[119,102,67,0.016058037004560363],[119,102,68,0.016596881401483583],[119,102,69,0.01470024727683487],[119,102,70,0.012609686605940296],[119,102,71,0.010354673682862236],[119,102,72,0.007978390119066075],[119,102,73,0.005533867001642682],[119,102,74,0.003080422266471403],[119,102,75,6.804037318653677E-4],[119,102,76,-0.001603752642911141],[119,102,77,-0.003712140592582439],[119,102,78,-0.005589669671235689],[119,102,79,-0.007188012733651084],[119,103,64,0.012397033408667733],[119,103,65,0.01363993652249355],[119,103,66,0.015012497408874234],[119,103,67,0.016545835447340382],[119,103,68,0.016194807756263238],[119,103,69,0.014339345207569631],[119,103,70,0.012287179267938323],[119,103,71,0.010066552205684403],[119,103,72,0.007719761092460759],[119,103,73,0.0052992630747993015],[119,103,74,0.0028640772532530796],[119,103,75,4.764937914080425E-4],[119,103,76,-0.0018009000061531973],[119,103,77,-0.003907867792960554],[119,103,78,-0.005788838484227007],[119,103,79,-0.0073948796638167065],[119,104,64,0.013002385702777775],[119,104,65,0.014203177323606908],[119,104,66,0.0155295286329458],[119,104,67,0.017012136093076956],[119,104,68,0.015826385985327426],[119,104,69,0.014027852122725585],[119,104,70,0.012032246593163038],[119,104,71,0.009866227825395136],[119,104,72,0.007570728064685494],[119,104,73,0.005197056631523167],[119,104,74,0.0028032988104612143],[119,104,75,4.510210749007858E-4],[119,104,76,-0.0017977075241374237],[119,104,77,-0.003882968857219565],[119,104,78,-0.005749316032233628],[119,104,79,-0.007347753322303803],[119,105,64,0.013585016820721942],[119,105,65,0.014736357410696848],[119,105,66,0.016007240369216875],[119,105,67,0.01704543805479078],[119,105,68,0.015521340198381122],[119,105,69,0.013795789373798942],[119,105,70,0.011875031086760114],[119,105,71,0.009783802076852161],[119,105,72,0.007561190108726809],[119,105,73,0.005256774122225158],[119,105,74,0.0029270562800323653],[119,105,75,6.321965951734131E-4],[119,105,76,-0.0015669400432951842],[119,105,77,-0.0036114154944787208],[119,105,78,-0.005446520551145798],[119,105,79,-0.007023740452208439],[119,106,64,0.014127736956606766],[119,106,65,0.01522137532395304],[119,106,66,0.016426922073040136],[119,106,67,0.016739953587735557],[119,106,68,0.015298658184496506],[119,106,69,0.013661883146264967],[119,106,70,0.01183381000033792],[119,106,71,0.009836952126626029],[119,106,72,0.0077080992598520465],[119,106,73,0.005494535800790649],[119,106,74,0.0032505443123591942],[119,106,75,0.0010342047429395438],[119,106,76,-0.0010955009218774777],[119,106,77,-0.0030812697218070505],[119,106,78,-0.004869736482440725],[119,106,79,-0.00641340309014738],[119,107,64,0.014624256724857225],[119,107,65,0.015651368411179055],[119,107,66,0.016781460599223808],[119,107,67,0.01651022436401869],[119,107,68,0.015164941287315572],[119,107,69,0.013632048321826868],[119,107,70,0.011913619425973826],[119,107,71,0.010029697423499174],[119,107,72,0.008014368200085099],[119,107,73,0.005912099235484873],[119,107,74,0.0037743535540149214],[119,107,75,0.0016564893746020659],[119,107,76,-3.850450678106361E-4],[119,107,77,-0.0022952128699228664],[119,107,78,-0.004022578127030554],[119,107,79,-0.005521176871201787],[119,108,64,0.01508165103445362],[119,108,65,0.016033090742192998],[119,108,66,0.017077617670028952],[119,108,67,0.016349144361492273],[119,108,68,0.015112379519390444],[119,108,69,0.013697511986145394],[119,108,70,0.012104536319912483],[119,108,71,0.010350846591986552],[119,108,72,0.008467484513173288],[119,108,73,0.006495639567802119],[119,108,74,0.004483411814998352],[119,108,75,0.0024828472555611636],[119,108,76,5.472548939181762E-4],[119,108,77,-0.001271186147173337],[119,108,78,-0.002923521871223202],[119,108,79,-0.004365814186138352],[119,109,64,0.015523226626245598],[119,109,65,0.016389691873838288],[119,109,66,0.017204446299752454],[119,109,67,0.016232920629266366],[119,109,68,0.01511634955928541],[119,109,69,0.013832574178475391],[119,109,70,0.012379616036249989],[119,109,71,0.010772122171180055],[119,109,72,0.00903782917853914],[119,109,73,0.007214264302972006],[119,109,74,0.005345693666970148],[119,109,75,0.0034803270328674757],[119,109,76,0.0016677877757483668],[119,109,77,-4.3143978603029297E-5],[119,109,78,-0.001606507818078144],[119,109,79,-0.0029808525929042188],[119,110,64,0.015991795111425147],[119,110,65,0.016763898396637195],[119,110,66,0.016971213774567083],[119,110,67,0.01611813577815117],[119,110,68,0.015132633471746208],[119,110,69,0.013992003679194022],[119,110,70,0.012692483150222913],[119,110,71,0.011245960996726768],[119,110,72,0.00967669716046928],[119,110,73,0.008018260591693728],[119,110,74,0.006310696583671034],[119,110,75,0.004597932050450015],[119,110,76,0.0029254268703354925],[119,110,77,0.001338078750003193],[119,110,78,-1.2161160196714303E-4],[119,110,79,-0.0014151088632269623],[119,111,64,0.016549147164099113],[119,111,65,0.017217690078414997],[119,111,66,0.01666709897743414],[119,111,67,0.015942273415999103],[119,111,68,0.015098373647225664],[119,111,69,0.014112639591506661],[119,111,70,0.012979784105470299],[119,111,71,0.011709002480328445],[119,111,72,0.010320980131829909],[119,111,73,0.008845100763140703],[119,111,74,0.0073168636738103745],[119,111,75,0.005775518291132],[119,111,76,0.004261923396900924],[119,111,77,0.0028166379165649124],[119,111,78,0.0014782495330185178],[119,111,79,2.819467881967136E-4],[119,112,64,0.01721136560817027],[119,112,65,0.016749326783320695],[119,112,66,0.016236332672060583],[119,112,67,0.01564934867824205],[119,112,68,0.014958060532350622],[119,112,69,0.014140184530366497],[119,112,70,0.013189201497374245],[119,112,71,0.012111691634700286],[119,112,72,0.010924665544838084],[119,112,73,0.009653074931991716],[119,112,74,0.008327510777585572],[119,112,75,0.00698209625897223],[119,112,76,0.005652581142694519],[119,112,77,0.004374643844383208],[119,112,78,0.003182406809266661],[119,112,79,0.0021071703342641327],[119,113,64,0.01637148628024274],[119,113,65,0.016027630114338772],[119,113,66,0.015646309545685272],[119,113,67,0.01520580106780526],[119,113,68,0.014677764871257085],[119,113,69,0.01404095175928652],[119,113,70,0.0132879206073678],[119,113,71,0.012422724843173553],[119,113,72,0.011458599370969637],[119,113,73,0.010415805176934339],[119,113,74,0.009319638445536606],[119,113,75,0.00819861055561368],[119,113,76,0.007082804858420506],[119,113,77,0.006002415671643203],[119,113,78,0.004986474456306508],[119,113,79,0.004061767681125981],[119,114,64,0.015351759667916975],[119,114,65,0.015129535218311637],[119,114,66,0.014885002551097917],[119,114,67,0.01459790180910396],[119,114,68,0.014242348408143724],[119,114,69,0.013798690776507255],[119,114,70,0.01325888946666139],[119,114,71,0.012624578001489289],[119,114,72,0.011905134967410965],[119,114,73,0.01111589097274556],[119,114,74,0.010276476247740345],[119,114,75,0.009409314273645088],[119,114,76,0.00853826643538279],[119,114,77,0.00768743229830589],[119,114,78,0.006880109716906365],[119,114,79,0.006137918595149745],[119,115,64,0.014162323032193306],[119,115,65,0.014062765411847524],[119,115,66,0.013957788800366324],[119,115,67,0.013828747711106641],[119,115,68,0.013652671211604841],[119,115,69,0.01341205376534723],[119,115,70,0.01309858821157761],[119,115,71,0.012711618914819055],[119,115,72,0.012256623544918953],[119,115,73,0.011743806468448605],[119,115,74,0.011186808404231127],[119,115,75,0.010601536680855337],[119,115,76,0.010005120116628944],[119,115,77,0.009414992224658582],[119,115,78,0.008848106129829588],[119,115,79,0.0083202842728794],[119,116,64,0.012827978120481828],[119,116,65,0.012849639337424544],[119,116,66,0.012884404912482184],[119,116,67,0.012915375008608817],[119,116,68,0.012922907168216433],[119,116,69,0.012892156559245293],[119,116,70,0.012814877935074132],[119,116,71,0.012688283272916602],[119,116,72,0.012513951838936136],[119,116,73,0.01229682855403013],[119,116,74,0.012044314136947823],[119,116,75,0.011765450261108359],[119,116,76,0.01147020272017945],[119,116,77,0.011168845356867298],[119,116,78,0.010871447271205656],[119,116,79,0.010587465590900774],[119,117,64,0.011385090254520858],[119,117,65,0.011524047417452983],[119,117,66,0.011696034567169458],[119,117,67,0.011885995847670597],[119,117,68,0.012077970172180142],[119,117,69,0.012260236455679686],[119,117,70,0.012424931123692268],[119,117,71,0.01256731599812599],[119,117,72,0.012685128438865599],[119,117,73,0.012777996791093857],[119,117,74,0.01284692340612467],[119,117,75,0.012893837337132688],[119,117,76,0.012921218645398967],[119,117,77,0.012931796088849814],[119,117,78,0.012928319804039702],[119,117,79,0.012913410436811157],[119,118,64,0.009878633928832727],[119,118,65,0.010128570076725223],[119,118,66,0.010432530799697613],[119,118,67,0.01077735987559905],[119,118,68,0.011151053347651872],[119,118,69,0.011545409041735026],[119,118,70,0.011953245619567225],[119,118,71,0.012368079635807936],[119,118,72,0.012783920131809765],[119,118,73,0.013195106212356214],[119,118,74,0.013596188652673603],[119,118,75,0.013981856488606175],[119,118,76,0.014346909450844913],[119,118,77,0.014686277015391238],[119,118,78,0.014995084757869478],[119,118,79,0.015268768619885732],[119,119,64,0.008359387256999936],[119,119,65,0.008711740084385607],[119,119,66,0.009139775366386922],[119,119,67,0.00963224320160053],[119,119,68,0.010181283460413193],[119,119,69,0.010782526031634633],[119,119,70,0.01142974390513841],[119,119,71,0.012114931337759692],[119,119,72,0.012828539523190617],[119,119,73,0.013559733927667055],[119,119,74,0.014296673128544728],[119,119,75,0.01502680896742676],[119,119,76,0.01573720780832775],[119,119,77,0.016414892674946287],[119,119,78,0.01704720602990158],[119,119,79,0.017622192953316965],[119,120,64,0.006881277398426502],[119,120,65,0.007325451166159367],[119,120,66,0.007867177317012287],[119,120,67,0.00849706681075131],[119,120,68,0.009211492505290355],[119,120,69,0.010010135962619335],[119,120,70,0.010887959373423331],[119,120,71,0.011835669876082222],[119,120,72,0.012840385107260462],[119,120,73,0.013886300410108528],[119,120,74,0.014955356359230046],[119,120,75,0.01602790530101494],[119,120,76,0.017083375653546947],[119,120,77,0.017748492347450025],[119,120,78,0.01686230517452725],[119,120,79,0.01605179722029603],[119,121,64,0.005498878905997478],[119,121,65,0.006022514849023272],[119,121,66,0.006665312727974756],[119,121,67,0.007419646340731083],[119,121,68,0.008286108294712742],[119,121,69,0.009268549449700311],[119,121,70,0.01036331111877615],[119,121,71,0.011560054017353051],[119,121,72,0.012842834875299677],[119,121,73,0.014191166274468255],[119,121,74,0.015581057246339094],[119,121,75,0.016986032263806936],[119,121,76,0.017434728937837245],[119,121,77,0.0161602081413608],[119,121,78,0.014952998023264242],[119,121,79,0.013839884383667908],[119,122,64,0.004265066754681623],[119,122,65,0.004854367323310243],[119,122,66,0.005583707378465268],[119,122,67,0.0064470749674071385],[119,122,68,0.00744916572163627],[119,122,69,0.008598010561684147],[119,122,70,0.009891468661628038],[119,122,71,0.01131839348462803],[119,122,72,0.012860094468068201],[119,122,73,0.014491765301842874],[119,122,74,0.01618387528342772],[119,122,75,0.017867750916847266],[119,122,76,0.016234952310792094],[119,122,77,0.01464320058397896],[119,122,78,0.013127912358953492],[119,122,79,0.011722941099724524],[119,123,64,0.0032288256422011263],[119,123,65,0.0038689279409958957],[119,123,66,0.004668763990491632],[119,123,67,0.0056237409914695205],[119,123,68,0.006742440226387385],[119,123,69,0.00803697575014885],[119,123,70,0.009506807905523506],[119,123,71,0.011140213637486558],[119,123,72,0.01291610080164508],[119,123,73,0.014805774408169922],[119,123,74,0.016774650324923427],[119,123,75,0.017023452299814373],[119,123,76,0.015095681094500036],[119,123,77,0.013209379589823588],[119,123,78,0.01140679614422864],[119,123,79,0.009728433398432053],[119,124,64,0.0024332169950541547],[119,124,65,0.003108610813259008],[119,124,66,0.003961835502232057],[119,124,67,0.004989481573570055],[119,124,68,0.006203704861501561],[119,124,69,0.0076205016394538146],[119,124,70,0.009240959515568302],[119,124,71,0.011052994907827235],[119,124,72,0.01303348202196359],[119,124,73,0.015150321200956577],[119,124,74,0.017364441315946753],[119,124,75,0.016211049092319317],[119,124,76,0.014019298200787848],[119,124,77,0.011868232247036955],[119,124,78,0.009806324492734268],[119,124,79,0.007880169581873818],[119,125,64,0.001913504966104795],[119,125,65,0.0026084908250393057],[119,125,66,0.0034974457024313276],[119,125,67,0.004577873929544353],[119,125,68,0.0058651122210920045],[119,125,69,0.007378742869177299],[119,125,70,0.00912145080400011],[119,125,71,0.011080987941255845],[119,125,72,0.013232574573005279],[119,125,73,0.015541229717286395],[119,125,74,0.017828955262830574],[119,125,75,0.015425288965756057],[119,125,76,0.013006408910281014],[119,125,77,0.010626469335466456],[119,125,78,0.008339445499787003],[119,125,79,0.0061973469207947515],[119,126,64,0.0016954425733860352],[119,126,65,0.0023946252489776],[119,126,66,0.003301658421224093],[119,126,67,0.0044146651700651416],[119,126,68,0.005751702381475287],[119,126,69,0.007335561070394149],[119,126,70,0.00917044211080768],[119,126,71,0.01124410531053301],[119,126,72,0.01353049809662736],[119,126,73,0.01599230488723943],[119,126,74,0.01724276417497776],[119,126,75,0.014660397419382501],[119,126,76,0.012055800549430886],[119,126,77,0.009487704955796258],[119,126,78,0.007014774195147308],[119,126,79,0.004693659713084063],[119,127,64,0.0017937190034852178],[119,127,65,0.0024825320156158398],[119,127,66,0.0033905963496633743],[119,127,67,0.004516341850307432],[119,127,68,0.00588003788753301],[119,127,69,0.007507245953782218],[119,127,70,0.009403558575018305],[119,127,71,0.011556890588542153],[119,127,72,0.013940288818258486],[119,127,73,0.01651465622007104],[119,127,74,0.01662740024682749],[119,127,75,0.013910305391497728],[119,127,76,0.011164418853302278],[119,127,77,0.008452169585246258],[119,127,78,0.005836035164912589],[119,127,79,0.00337646948514385],[119,128,64,0.0022105689867232105],[119,128,65,0.0028758255808928037],[119,128,66,0.0037691104461986093],[119,128,67,0.004888840184762933],[119,128,68,0.0062569667144781755],[119,128,69,0.007901349390567258],[119,128,70,0.00982881810535571],[119,128,71,0.012027565493524446],[119,128,72,0.014470092012154007],[119,128,73,0.017116061165824377],[119,128,74,0.01597577181605453],[119,128,75,0.013168875517013158],[119,128,76,0.01032736109561708],[119,128,77,0.007516456846624819],[119,128,78,0.00480155434204717],[119,128,79,0.0022460380515289466],[119,129,64,0.002934545045177392],[119,129,65,0.003565011225681095],[119,129,66,0.004429600783279354],[119,129,67,0.00552639778012052],[119,129,68,0.0068785140372264915],[119,129,69,0.008515633276695675],[119,129,70,0.01044565627735634],[119,129,71,0.012657155748830067],[119,129,72,0.01512241408248023],[119,129,73,0.01780036856243664],[119,129,74,0.015282877964039985],[119,129,75,0.012430126928066578],[119,129,76,0.009537886058607567],[119,129,77,0.006673304250297495],[119,129,78,0.0039038004197068195],[119,129,79,0.0012948240853219181],[119,130,64,0.003939453318342789],[119,130,65,0.004526438525289437],[119,130,66,0.005350989591082288],[119,130,67,0.006410547645065516],[119,130,68,0.007728903549386586],[119,130,69,0.009337131886307803],[119,130,70,0.011244048807676273],[119,130,71,0.013438696233112304],[119,130,72,0.015893434742164435],[119,130,73,0.017295222975893663],[119,130,74,0.014546209112341599],[119,130,75,0.011688458503309521],[119,130,76,0.008787440907057725],[119,130,77,0.005911408142919557],[119,130,78,0.0031289762982912033],[119,130,79,5.068437914164566E-4],[119,131,64,0.00518345358482195],[119,131,65,0.005721414639456327],[119,131,66,0.006497847168034444],[119,131,67,0.007509255149912517],[119,131,68,0.008779708990956052],[119,131,69,0.010341329342555808],[119,131,70,0.012203732185210188],[119,131,71,0.014356515934735876],[119,131,72,0.016772379720198342],[119,131,73,0.01648171298229129],[119,131,74,0.013766126602562065],[119,131,75,0.010938870480420184],[119,131,76,0.008065705023522057],[119,131,77,0.0052152730725893515],[119,131,78,0.0024566609360761353],[119,131,79,-1.4290378277290766E-4],[119,132,64,0.006608253017332227],[119,132,65,0.007095398875471401],[119,132,66,0.007819584113682717],[119,132,67,0.008776103375786562],[119,132,68,0.00998903311152427],[119,132,69,0.011491340909834417],[119,132,70,0.013293402350218204],[119,132,71,0.01538547362444509],[119,132,72,0.017740815975989418],[119,132,73,0.015602383863199372],[119,132,74,0.012946375945819558],[119,132,75,0.010177346243255607],[119,132,76,0.007360818529917844],[119,132,77,0.004565267715292031],[119,132,78,0.0018596764261097967],[119,132,79,-6.8877124174021E-4],[119,133,64,0.00812917018804253],[119,133,65,0.008566647880920887],[119,133,66,0.009237682984735257],[119,133,67,0.010136100222051043],[119,133,68,0.011285848688474024],[119,133,69,0.012720725796486821],[119,133,70,0.01445193971823525],[119,133,71,0.016470556739729074],[119,133,72,0.01710365740142126],[119,133,73,0.014697754666550723],[119,133,74,0.012119197574764925],[119,133,75,0.009427309241996647],[119,133,76,0.006686984893503925],[119,133,77,0.003966122953228487],[119,133,78,0.0013331874611609092],[119,133,79,-0.0011450920612654642],[119,134,64,0.00964085409264825],[119,134,65,0.010030131290810113],[119,134,66,0.010647780629537806],[119,134,67,0.011485896843695326],[119,134,68,0.012568254243841333],[119,134,69,0.013929597413912217],[119,134,70,0.015582148250978825],[119,134,71,0.017518015838588807],[119,134,72,0.016169695562092627],[119,134,73,0.013852251276875416],[119,134,74,0.01136308907047084],[119,134,75,0.00876051544665701],[119,134,76,0.006108451290012895],[119,134,77,0.003473877094544225],[119,134,78,9.244094384230627E-4],[119,134,79,-0.0014739851834642168],[119,135,64,0.011053475819215055],[119,135,65,0.011396124936908888],[119,135,66,0.011960596702006186],[119,135,67,0.012737027309464227],[119,135,68,0.01374903306949183],[119,135,69,0.015032504992457068],[119,135,70,0.01660092605993824],[119,135,71,0.017362393962170646],[119,135,72,0.015359986966669426],[119,135,73,0.013138052899844347],[119,135,74,0.010745235569471318],[119,135,75,0.008238505081299754],[119,135,76,0.0056805008070565915],[119,135,77,0.0031369983933731247],[119,135,78,6.74507289416026E-4],[119,135,79,-0.0016419951248556565],[119,136,64,0.012296439967241817],[119,136,65,0.012594223200543988],[119,136,66,0.013106234829511286],[119,136,67,0.013820483697826229],[119,136,68,0.014760495350286174],[119,136,69,0.015963546158275062],[119,136,70,0.01744465589483138],[119,136,71,0.01663764463203564],[119,136,72,0.01473205562133659],[119,136,73,0.0126088544992808],[119,136,74,0.010315011954487141],[119,136,75,0.007905873445160088],[119,136,76,0.005442532334038032],[119,136,77,0.0029893255279241594],[119,136,78,6.114580386701536E-4],[119,136,79,-0.0016272375056231346],[119,137,64,0.013318399008820847],[119,137,65,0.013573276190118564],[119,137,66,0.014034033287931387],[119,137,67,0.014686462553348116],[119,137,68,0.015554103410830534],[119,137,69,0.01667586106286966],[119,137,70,0.017691381366764885],[119,137,71,0.0161334724886977],[119,137,72,0.014325344534891177],[119,137,73,0.012300873453640226],[119,137,74,0.01010508391370715],[119,137,75,0.007791446531120126],[119,137,76,0.005419288370369556],[119,137,77,0.00305132341362066],[119,137,78,7.513093268570255E-4],[119,137,79,-0.001418163526310028],[119,138,64,0.014087680083704647],[119,138,65,0.014301736476334518],[119,138,66,0.014712818773953643],[119,138,67,0.015304504562415517],[119,138,68,0.016100476579568777],[119,138,69,0.017141488216336414],[119,138,70,0.01733882446367302],[119,138,71,0.015874118003819476],[119,138,72,0.014161831965464087],[119,138,73,0.012233613694859457],[119,138,74,0.010132307632155094],[119,138,75,0.007909300208886154],[119,138,76,0.005621974517355674],[119,138,77,0.0033312813173065254],[119,138,78,0.0010994325926813047],[119,138,79,-0.0010122764947309922],[119,139,64,0.014593126544523327],[119,139,65,0.014768417724918525],[119,139,66,0.015131565624889797],[119,139,67,0.01566402979765205],[119,139,68,0.016389778005316016],[119,139,69,0.017351584326815432],[119,139,70,0.017239768536827595],[119,139,71,0.015865897430732016],[119,139,72,0.014246366213988261],[119,139,73,0.01241038542015773],[119,139,74,0.010398426383082072],[119,139,75,0.008259621452288554],[119,139,76,0.006049269378481181],[119,139,77,0.003826452275241619],[119,139,78,0.0016517702248402578],[119,139,79,-4.1480075551916665E-4],[119,140,64,0.014845356566429385],[119,140,65,0.014983667552774674],[119,140,66,0.015300462810493116],[119,140,67,0.015775270842611887],[119,140,68,0.016432485711748306],[119,140,69,0.017317010388061948],[119,140,70,0.01738291763396706],[119,140,71,0.0160970333710652],[119,140,72,0.014566716994415469],[119,140,73,0.012818578553078535],[119,140,74,0.010890562372299373],[119,140,75,0.008829410170949828],[119,140,76,0.006688223665962948],[119,140,77,0.004524132879431186],[119,140,78,0.0023960760423683636],[119,140,79,3.626966541334893E-4],[119,141,64,0.014878441159127514],[119,141,65,0.014980956944917733],[119,141,66,0.015252391020229347],[119,141,67,0.015670606094510754],[119,141,68,0.016260550148744165],[119,141,69,0.017069286218146133],[119,141,70,0.0177372794194666],[119,141,71,0.016537167398723837],[119,141,72,0.01509334147763158],[119,141,73,0.013429688201767133],[119,141,74,0.011581502261864265],[119,141,75,0.009593020278610585],[119,141,76,0.0075150473785893625],[119,141,77,0.0054026825556142116],[119,141,78,0.0033131485085995532],[119,141,79,0.0013037313306828793],[119,142,64,0.014752003968564204],[119,142,65,0.014818888606296836],[119,142,66,0.015044812193205939],[119,142,67,0.015406295552982823],[119,142,68,0.015928940495901458],[119,142,69,0.016661915635199198],[119,142,70,0.017633656639810837],[119,142,71,0.01713655275480711],[119,142,72,0.015778863156544354],[119,142,73,0.014199090420082335],[119,142,74,0.012429774861466346],[119,142,75,0.010512538693606951],[119,142,76,0.008495783977056436],[119,142,77,0.006432481511989012],[119,142,78,0.004378056130861278],[119,142,79,0.002388373555175376],[119,143,64,0.01453916782577034],[119,143,65,0.014569479324123003],[119,143,66,0.014748430115140071],[119,143,67,0.015051567301827173],[119,143,68,0.015505213613151292],[119,143,69,0.01616050535871309],[119,143,70,0.017048257900801816],[119,143,71,0.017834599388885902],[119,143,72,0.01656581953442951],[119,143,73,0.015072902790061207],[119,143,74,0.013385535251151378],[119,143,75,0.011542606481433538],[119,143,76,0.009589987227759356],[119,143,77,0.007578389417307335],[119,143,78,0.005561313635867807],[119,143,79,0.003593089011773528],[119,144,64,0.014273605354460282],[119,144,65,0.014266644172025616],[119,144,66,0.014397376760713905],[119,144,67,0.014640813514482529],[119,144,68,0.015024060155227247],[119,144,69,0.015600027124749945],[119,144,70,0.01640178886694374],[119,144,71,0.01744396608426052],[119,144,72,0.017418961115569214],[119,144,73,0.016016060072690068],[119,144,74,0.014414079705488409],[119,144,75,0.012649069823877685],[119,144,76,0.010764247043553742],[119,144,77,0.008807933919331724],[119,144,78,0.006831575755791013],[119,144,79,0.004887839751718788],[119,145,64,0.013974320627118295],[119,145,65,0.01393002782768523],[119,145,66,0.014011993850519459],[119,145,67,0.01419519431184813],[119,145,68,0.014507579034055801],[119,145,69,0.015003592045453117],[119,145,70,0.015718402490349413],[119,145,71,0.01666914400650853],[119,145,72,0.01785715054164962],[119,145,73,0.017001506791896243],[119,145,74,0.015487548025922022],[119,145,75,0.013803392261886094],[119,145,76,0.01198949901878729],[119,145,77,0.010091686892368602],[119,145,78,0.00815922677479658],[119,145,79,0.006243006390076848],[119,146,64,0.013657650886076365],[119,146,65,0.013576605560821667],[119,146,66,0.013609974669757845],[119,146,67,0.013733249155637924],[119,146,68,0.013975278834391812],[119,146,69,0.014391758061118106],[119,146,70,0.015019744067371135],[119,146,71,0.015878750757713375],[119,146,72,0.01697283753004549],[119,146,73,0.018004525651158208],[119,146,74,0.016580363435146465],[119,146,75,0.014979275163153569],[119,146,76,0.013238885390656542],[119,146,77,0.011402415038483642],[119,146,78,0.00951685776053136],[119,146,79,0.00763121568522403],[119,147,64,0.013337407552928416],[119,147,65,0.013220804793025403],[119,147,66,0.013206462786470852],[119,147,67,0.013270967982549824],[119,147,68,0.013444117549327221],[119,147,69,0.013782536976102922],[119,147,70,0.01432492678131154],[119,147,71,0.01509300956920174],[119,147,72,0.01609346119614475],[119,147,73,0.017319819704392326],[119,147,74,0.017669325659135936],[119,147,75,0.016152744246389555],[119,147,76,0.014487822775796662],[119,147,77,0.012715115823393465],[119,147,78,0.01087925727026129],[119,147,79,0.009027272544767867],[119,148,64,0.013025026061661017],[119,148,65,0.012874637599365454],[119,148,66,0.012814163557038061],[119,148,67,0.01282187728564795],[119,148,68,0.012928559659692992],[119,148,69,0.013191420939254201],[119,148,70,0.013650528041202134],[119,148,71,0.014329605391475366],[119,148,72,0.015237799181671991],[119,148,73,0.01637143023021855],[119,148,74,0.017715731577660744],[119,148,75,0.017302229782769574],[119,148,76,0.01571407167544547],[119,148,77,0.014007065015393795],[119,148,78,0.012223425130979824],[119,148,79,0.01040812806097007],[119,149,64,0.01272972450407349],[119,149,65,0.012547844145972013],[119,149,66,0.01244346841864313],[119,149,67,0.012397141150438162],[119,149,68,0.012440650574742139],[119,149,69,0.012631428396176172],[119,149,70,0.013010606651909186],[119,149,71,0.013603674657492074],[119,149,72,0.014422068875797467],[119,149,73,0.015464762700539314],[119,149,74,0.01671985282889492],[119,149,75,0.01816613895716021],[119,149,76,0.016897807806420983],[119,149,77,0.015257875936151048],[119,149,78,0.013528609466599834],[119,149,79,0.011752883826053757],[119,150,64,0.012458671083615333],[119,150,65,0.0122480470646647],[119,150,66,0.012102591974331327],[119,150,67,0.012005677257853531],[119,150,68,0.01199010845483883],[119,150,69,0.012113169542431421],[119,150,70,0.012416740850931675],[119,150,71,0.012927816155975335],[119,150,72,0.01365991276292092],[119,150,73,0.014614493156990111],[119,150,74,0.015782395455455418],[119,150,75,0.017145269929104062],[119,150,76,0.018021695318131404],[119,150,77,0.0164495705329954],[119,150,78,0.01477636714285743],[119,150,79,0.013042832770794774],[119,151,64,0.012217160381912858],[119,151,65,0.01198091677329459],[119,151,66,0.011797721883035472],[119,151,67,0.01165428787206916],[119,151,68,0.011584433441322607],[119,151,69,0.011644931309749335],[119,151,70,0.01187808724865339],[119,151,71,0.01231212305229935],[119,151,72,0.012962403748224485],[119,151,73,0.01383268822026345],[119,151,74,0.014916401051780864],[119,151,75,0.016197923399143496],[119,151,76,0.017653900719144314],[119,151,77,0.017566662383861918],[119,151,78,0.01595064779942733],[119,151,79,0.014261536764895943],[119,152,64,0.012008798450921022],[119,152,65,0.011750347758718993],[119,152,66,0.01153318157447475],[119,152,67,0.011347805837674422],[119,152,68,0.01122903432421186],[119,152,69,0.011232781921479938],[119,152,70,0.011401460711458531],[119,152,71,0.011764236095537272],[119,152,72,0.01233807049339583],[119,152,73,0.01312880234394631],[119,152,74,0.014132258788670159],[119,152,75,0.015335400392261207],[119,152,76,0.01671749624037414],[119,152,77,0.018251327750189963],[119,152,78,0.017037901639009406],[119,152,79,0.015394941214868575],[119,153,64,0.011835696752871253],[119,153,65,0.01155864584828991],[119,153,66,0.01131160581718758],[119,153,67,0.011089255618306355],[119,153,68,0.010927372685022661],[119,153,69,0.010880695058937049],[119,153,70,0.010991435231090188],[119,153,71,0.011289418052631691],[119,153,72,0.011792942795644253],[119,153,73,0.012509692291845858],[119,153,74,0.013437688096034805],[119,153,75,0.014566290568562748],[119,153,76,0.01587724272801421],[119,153,77,0.01734575669254527],[119,153,78,0.018027211144804062],[119,153,79,0.016431526894520813],[119,154,64,0.011698674979955812],[119,154,65,0.011406726505372939],[119,154,66,0.011134129177112356],[119,154,67,0.010880029417359036],[119,154,68,0.01068112455967837],[119,154,69,0.010590693686899945],[119,154,70,0.010650465828902075],[119,154,71,0.010890649414328758],[119,154,72,0.011330617045085959],[119,154,73,0.011979648857859189],[119,154,74,0.01283773397194414],[119,154,75,0.013896429444079372],[119,154,76,0.015139776081015662],[119,154,77,0.016545270400344366],[119,154,78,0.01808489198067198],[119,154,79,0.01736249924468484],[119,155,64,0.01159747279598057],[119,155,65,0.011294324194711703],[119,155,66,0.011000587414068898],[119,155,67,0.010720078430823598],[119,155,68,0.010490359675269383],[119,155,69,0.010363013594387672],[119,155,70,0.010379031550230127],[119,155,71,0.010568745422518216],[119,155,72,0.010952341798771439],[119,155,73,0.011540445848724082],[119,155,74,0.012334774913275927],[119,155,75,0.013328861735036914],[119,155,76,0.014508847162185243],[119,155,77,0.015854342071135865],[119,155,78,0.017339358177637793],[119,155,79,0.018182015382529903],[119,156,64,0.011530970553061801],[119,156,65,0.011220212874447763],[119,156,66,0.010909731874254537],[119,156,67,0.010608119292720654],[119,156,68,0.01035373832433248],[119,156,69,0.010196286715929488],[119,156,70,0.01017579961204179],[119,156,71,0.010322494474996745],[119,156,72,0.010657123514128147],[119,156,73,0.011191406352400781],[119,156,74,0.0119285434635376],[119,156,75,0.01286381078666877],[119,156,76,0.01398523580652877],[119,156,77,0.015274355276751016],[119,156,78,0.016707054663254187],[119,156,79,0.01825448929537935],[119,157,64,0.011497419047792862],[119,157,65,0.011182437683249695],[119,157,66,0.010859456948406138],[119,157,67,0.010541855784917788],[119,157,68,0.010268725951315042],[119,157,69,0.01008774430889317],[119,157,70,0.01003781077627407],[119,157,71,0.01014881797139041],[119,157,72,0.010441852490367389],[119,157,73,0.010929486318352836],[119,157,74,0.01161615937449887],[119,157,75,0.012498654046256288],[119,157,76,0.013566662427447711],[119,157,77,0.014803446841834196],[119,157,78,0.01618659411065397],[119,157,79,0.017688863910380194],[119,158,64,0.011494678393154465],[119,158,65,0.011178557903292299],[119,158,66,0.010847040677590698],[119,158,67,0.010518215895378978],[119,158,68,0.01023182553797293],[119,158,69,0.010033440074004075],[119,158,70,0.009960686031856479],[119,158,71,0.010042951673048663],[119,158,72,0.010301449073474578],[119,158,73,0.010749375480640372],[119,158,74,0.011392175380201474],[119,158,75,0.01222790453914209],[119,158,76,0.01324769713264508],[119,158,77,0.014436336908811897],[119,158,78,0.015772933201633504],[119,158,79,0.017231702469647676],[119,159,64,0.01152046609478862],[119,159,65,0.011205901292757135],[119,159,66,0.010869398601670719],[119,159,67,0.010533604322071724],[119,159,68,0.01023882788762675],[119,159,69,0.010028493319000893],[119,159,70,0.009938854680343062],[119,159,71,0.009998648660174496],[119,159,72,0.010229030188790874],[119,159,73,0.010643615660543858],[119,159,74,0.011248635584725017],[119,159,75,0.012043198306024029],[119,159,76,0.013019666257820807],[119,159,77,0.014164146040766793],[119,159,78,0.015457093457071375],[119,159,79,0.016874034479457862],[119,160,64,0.01157261443306333],[119,160,65,0.011261829895062213],[119,160,66,0.010923350959314012],[119,160,67,0.010584170533828256],[119,160,68,0.010285079922437277],[119,160,69,0.010067352279398907],[119,160,70,0.009965803933324675],[119,160,71,0.010008403981260867],[119,160,72,0.010216096274882677],[119,160,73,0.010602736492383798],[119,160,74,0.011175146468774391],[119,160,75,0.011933287759887307],[119,160,76,0.012870556222444051],[119,160,77,0.013974199206028508],[119,160,78,0.015225856774736281],[119,160,79,0.01660222820857491],[119,161,64,0.011649337265593031],[119,161,65,0.011344017446141072],[119,161,66,0.011005903362948858],[119,161,67,0.010666092514392378],[119,161,68,0.010365771123133591],[119,161,69,0.010144077725548697],[119,161,70,0.010034350144340586],[119,161,71,0.010063701103052594],[119,161,72,0.01025273870338074],[119,161,73,0.010615408624297358],[119,161,74,0.011158960524727953],[119,161,75,0.011884040921489987],[119,161,76,0.01278491460810722],[119,161,77,0.013849816480034506],[119,161,78,0.015061435439847724],[119,161,79,0.016397531874161434],[119,162,64,0.011749506378536872],[119,162,65,0.011450738515767776],[119,162,66,0.011114541087294596],[119,162,67,0.010775876331669782],[119,162,68,0.010476238256923273],[119,162,69,0.010252647001575119],[119,162,70,0.010136931813851412],[119,162,71,0.01015528028374245],[119,162,72,0.010327867781757614],[119,162,73,0.010668614454989006],[119,162,74,0.01118507253526864],[119,162,75,0.011878446493416454],[119,162,76,0.012743748356238238],[119,162,77,0.013770090291206639],[119,162,78,0.014941116359816783],[119,162,79,0.01623557514664787],[119,163,64,0.011872937529036504],[119,163,65,0.011581169534125782],[119,163,66,0.011247537125984934],[119,163,67,0.010910671690801895],[119,163,68,0.010612288556598945],[119,163,69,0.010387278659327048],[119,163,70,0.01026592452294336],[119,163,71,0.010273429007917239],[119,163,72,0.01042946144958178],[119,163,73,0.010747836477878367],[119,163,74,0.011236328517108103],[119,163,75,0.011896624734355097],[119,163,76,0.012724418978280987],[119,163,77,0.013709649028243176],[119,163,78,0.014836879259408731],[119,163,79,0.01608583062501463],[119,164,64,0.012018155740881855],[119,164,65,0.011732946792699608],[119,164,66,0.011401319803256154],[119,164,67,0.011065458479264637],[119,164,68,0.010767212807973544],[119,164,69,0.01053928347758925],[119,164,70,0.010410344491021942],[119,164,71,0.010404555193543715],[119,164,72,0.01054102703943644],[119,164,73,0.010833427594883826],[119,164,74,0.011289724999942024],[119,164,75,0.011912075874530217],[119,164,76,0.012696859418008456],[119,164,77,0.013634860221351271],[119,164,78,0.014711602087496],[119,164,79,0.015907834941520288],[119,165,64,0.012167351555233357],[119,165,65,0.011885768827357816],[119,165,66,0.01155291318627043],[119,165,67,0.011214395351058818],[119,165,68,0.010912104735359869],[119,165,69,0.01067649663670137],[119,165,70,0.010534598754410816],[119,165,71,0.010509506672756666],[119,165,72,0.010619771690571237],[119,165,73,0.01087893007391762],[119,165,74,0.011295177168918254],[119,165,75,0.011871189566788174],[119,165,76,0.012604098270078684],[119,165,77,0.013485615570491058],[119,165,78,0.014502318116733984],[119,165,79,0.01563608842822716],[119,166,64,0.012300695337905085],[119,166,65,0.012016992477346512],[119,166,66,0.0116767858609645],[119,166,67,0.011328918880338478],[119,166,68,0.011015217422047521],[119,166,69,0.010763886970985865],[119,166,70,0.010600329572918857],[119,166,71,0.010546619112488168],[119,166,72,0.010620808147838542],[119,166,73,0.010836380181594135],[119,166,74,0.011201851017113193],[119,166,75,0.011720522597047046],[119,166,76,0.012390392470858777],[119,166,77,0.013204221791521432],[119,166,78,0.014149764501540499],[119,166,79,0.01521016013725413],[119,167,64,0.012404822958618757],[119,167,65,0.012110987395591728],[119,167,66,0.011755001840178598],[119,167,67,0.011388672124353074],[119,167,68,0.011053656131198587],[119,167,69,0.010775967286131696],[119,167,70,0.010579467362152954],[119,167,71,0.010485314560733575],[119,167,72,0.010511185511742571],[119,167,73,0.010670646716533453],[119,167,74,0.01097267929805356],[119,167,75,0.011421360663129156],[119,167,76,0.012015706424365119],[119,167,77,0.012749675674831358],[119,167,78,0.013612342460365724],[119,167,79,0.014588236054500452],[119,168,64,0.012470983780760295],[119,168,65,0.012157268308037487],[119,168,66,0.011775336588633457],[119,168,67,0.01137960981249685],[119,168,68,0.011011477912813247],[119,168,69,0.01069488951799943],[119,168,70,0.01045231921205725],[119,168,71,0.010304178608377639],[119,168,72,0.010267948508991216],[119,168,73,0.010357464651662542],[119,168,74,0.010582361130776397],[119,168,75,0.010947675312197046],[119,168,76,0.011453617796939713],[119,168,77,0.012095510726078592],[119,168,78,0.012863897462357755],[119,168,79,0.013744826435137001],[119,169,64,0.0124929692730604],[119,169,65,0.012148402817533181],[119,169,66,0.011729165245324424],[119,169,67,0.011291873461414676],[119,169,68,0.01087756005297478],[119,169,69,0.01050830949322661],[119,169,70,0.010205430125748592],[119,169,71,0.00998881611807712],[119,169,72,0.009875984137806694],[119,169,73,0.009881268026164009],[119,169,74,0.010015175786985067],[119,169,75,0.010283912935725736],[119,169,76,0.010689075979660867],[119,169,77,0.011227519529327748],[119,169,78,0.011891400275132427],[119,169,79,0.012668400804602967],[119,170,64,0.012464874214372196],[119,170,65,0.012077751496100719],[119,170,66,0.011609184118454347],[119,170,67,0.01111750168068989],[119,170,68,0.010643306706621064],[119,170,69,0.010207094410525584],[119,170,70,0.009829293421296074],[119,170,71,0.009529564713366228],[119,170,72,0.009325736972566043],[119,170,73,0.009232904749435234],[119,170,74,0.00926269396152827],[119,170,75,0.009422699024752618],[119,170,76,0.009716095611483642],[119,170,77,0.01014143275270049],[119,170,78,0.010692607725335616],[119,170,79,0.011359026897245621],[119,171,64,0.012378688589494738],[119,171,65,0.011937038414554924],[119,171,66,0.011406963663087313],[119,171,67,0.010847973949968195],[119,171,68,0.010300192075308051],[119,171,69,0.009782871496020435],[119,171,70,0.009315908853801876],[119,171,71,0.008919064701867168],[119,171,72,0.00861079193063706],[119,171,73,0.008407232260903348],[119,171,74,0.008321385622195764],[119,171,75,0.008362456943564474],[119,171,76,0.008535384592022964],[119,171,77,0.008840554403131664],[119,171,78,0.009273702961360656],[119,171,79,0.009826013507853452],[119,172,64,0.01222171809925429],[119,172,65,0.011713750085305221],[119,172,66,0.01111033098097568],[119,172,67,0.0104715859807833],[119,172,68,0.009837138327727053],[119,172,69,0.009225416126951115],[119,172,70,0.008656186861588349],[119,172,71,0.008149683959103008],[119,172,72,0.00772532316362909],[119,172,73,0.0074005928560393185],[119,172,74,0.007190123408680338],[119,172,75,0.007104940361201696],[119,172,76,0.007151905901272998],[119,172,77,0.007333352831953773],[119,172,78,0.00764691490884917],[119,172,79,0.00808555713794654],[119,173,64,0.011973831027375006],[119,173,65,0.011388360614877979],[119,173,66,0.010700579705004747],[119,173,67,0.009970654602386797],[119,173,68,0.009237726290613788],[119,173,69,0.008519877552667653],[119,173,70,0.007837197180497187],[119,173,71,0.007210796146042638],[119,173,72,0.006661407589049973],[119,173,73,0.006208167350373872],[119,173,74,0.005867580420059671],[119,173,75,0.005652678357855246],[119,173,76,0.0055723724293696274],[119,173,77,0.005631006886667809],[119,173,78,0.0058281165105545695],[119,173,79,0.006158392226248499],[119,174,64,0.011604529020758632],[119,174,65,0.010931380677969614],[119,174,66,0.010149504948102912],[119,174,67,0.009318549931223857],[119,174,68,0.008477236761799893],[119,174,69,0.007643840170682141],[119,174,70,0.006839259904872747],[119,174,71,0.006085910474741517],[119,174,72,0.005406201427104265],[119,174,73,0.0048212056102605125],[119,174,74,0.004349521095792727],[119,174,75,0.004006332097857289],[119,174,76,0.0038026739031699884],[119,174,77,0.003744906496792607],[119,174,78,0.0038344012431449415],[119,174,79,0.004067444661605845],[119,175,64,0.011085431578254958],[119,175,65,0.010315685556413878],[119,175,66,0.009431484719985467],[119,175,67,0.008491422957104483],[119,175,68,0.00753390079527848],[119,175,69,0.00657795880046912],[119,175,70,0.005645817595434118],[119,175,71,0.004761626078963471],[119,175,72,0.003949819995157446],[119,175,73,0.0032336768539043288],[119,175,74,0.002634073174432452],[119,175,75,0.0021684496859509885],[119,175,76,0.001849989777440284],[119,175,77,0.0016870161455868457],[119,175,78,0.001682610248777169],[119,175,79,0.001834458839299896],[119,176,64,0.010440650567813422],[119,176,65,0.009566481890284872],[119,176,66,0.008572750412554299],[119,176,67,0.007516433187992024],[119,176,68,0.006435687228417053],[119,176,69,0.005350867415848706],[119,176,70,0.00428599644986583],[119,176,71,0.003267358818487854],[119,176,72,0.002321737820582038],[119,176,73,0.0014748579480053268],[119,176,74,7.500389098764504E-4],[119,176,75,1.670672288371707E-4],[119,176,76,-2.587090180823031E-4],[119,176,77,-5.170571002427543E-4],[119,176,78,-6.033033193360049E-4],[119,176,79,-5.185389762061073E-4],[119,177,64,0.00970937211911106],[119,177,65,0.008724284650220246],[119,177,66,0.0076150557495375],[119,177,67,0.006436467354901823],[119,177,68,0.005226479869566807],[119,177,69,0.004007263813831713],[119,177,70,0.0028050765905904404],[119,177,71,0.001648692560934434],[119,177,72,5.675211069020836E-4],[119,177,73,-4.100606125976055E-4],[119,177,74,-0.0012581536256702373],[119,177,75,-0.001954555611660861],[119,177,76,-0.0024817460190852797],[119,177,77,-0.002827632365567454],[119,177,78,-0.00298605262176679],[119,177,79,-0.0029570289501170926],[119,178,64,0.008931107972546076],[119,178,65,0.007830238174785136],[119,178,66,0.006601149907655322],[119,178,67,0.005295865090563938],[119,178,68,0.003952171825668631],[119,178,69,0.0025945016840771677],[119,178,70,0.0012517210470183826],[119,178,71,-4.46089423713291E-5],[119,178,72,-0.001262228234050745],[119,178,73,-0.0023699496716481764],[119,178,74,-0.0033391998615781263],[119,178,75,-0.004145322616057896],[119,178,76,-0.00476863886360346],[119,178,77,-0.005195257311341556],[119,178,78,-0.005417630533298652],[119,178,79,-0.005434851543988989],[119,179,64,0.008145134232181932],[119,179,65,0.006925482274180528],[119,179,66,0.005574053377503691],[119,179,67,0.004139584207454798],[119,179,68,0.002659698313528572],[119,179,69,0.0011614688080195449],[119,179,70,-3.2332221689728124E-4],[119,179,71,-0.0017600964311747394],[119,179,72,-0.0031135816150272195],[119,179,73,-0.004349680833843684],[119,179,74,-0.005437101295361227],[119,179,75,-0.006348736141184037],[119,179,76,-0.007062792827672023],[119,179,77,-0.007563662157098889],[119,179,78,-0.007842522425201722],[119,179,79,-0.00789767355196049],[119,180,64,0.0073899023857806525],[119,180,65,0.006050491845675503],[119,180,66,0.004576310644111585],[119,180,67,0.003012347877931462],[119,180,68,0.0013960584287012472],[119,180,69,-2.4253624405005996E-4],[119,180,70,-0.0018685073834068561],[119,180,71,-0.003444103146801176],[119,180,72,-0.004930947797355607],[119,180,73,-0.00629199908919817],[119,180,74,-0.007493256464255351],[119,180,75,-0.008505213087825824],[119,180,76,-0.009304045166818011],[119,180,77,-0.009872532414409154],[119,180,78,-0.010200703944348872],[119,180,79,-0.01028620429322268],[119,181,64,0.006702422044373857],[119,181,65,0.005244389442088303],[119,181,66,0.0036492191282543546],[119,181,67,0.0019577731648934677],[119,181,68,2.073253365148813E-4],[119,181,69,-0.0015689294245956763],[119,181,70,-0.003332767432165646],[119,181,71,-0.005043186878400374],[119,181,72,-0.006658692225125325],[119,181,73,-0.008139328858491137],[119,181,74,-0.009448460422244842],[119,181,75,-0.010554281666186953],[119,181,76,-0.01143106007522457],[119,181,77,-0.012060099976824038],[119,181,78,-0.012430423256859365],[119,181,79,-0.012539161241782159],[119,182,64,0.006117614817258105],[119,182,65,0.004544230196942838],[119,182,66,0.0028320337916666436],[119,182,67,0.0010174803136517674],[119,182,68,-8.623556873884275E-4],[119,182,69,-0.002770969071760965],[119,182,70,-0.004666780858131325],[119,182,71,-0.006505546476424207],[119,182,72,-0.00824271201692922],[119,182,73,-0.00983551370348852],[119,182,74,-0.011244812843575203],[119,182,75,-0.012436658939838972],[119,182,76,-0.013383574086963761],[119,182,77,-0.014065552220808264],[119,182,78,-0.014470767229897482],[119,182,79,-0.01459598437825552],[119,183,64,0.005667638701927717],[119,183,65,0.003984258472569687],[119,183,66,0.0021611467719722514],[119,183,67,2.3018217893282372E-4],[119,183,68,-0.0017717819752858799],[119,183,69,-0.0038048869000492803],[119,183,70,-0.00582422898351364],[119,183,71,-0.007782413292369335],[119,183,72,-0.00963196698568079],[119,183,73,-0.011327489963721153],[119,183,74,-0.012827534886368909],[119,183,75,-0.014096209135644735],[119,183,76,-0.015104491744732607],[119,183,77,-0.015831258767655253],[119,183,78,-0.016264011015702354],[119,183,79,-0.016399298534531623],[119,184,64,0.005381182332536633],[119,184,65,0.003595135560669056],[119,184,66,0.0016692413766927095],[119,184,67,-3.6924687456103497E-4],[119,184,68,-0.0024837215865922396],[119,184,69,-0.00463102272664649],[119,184,70,-0.006763044419071292],[119,184,71,-0.008829418027198603],[119,184,72,-0.010779967074870491],[119,184,73,-0.01256689459308259],[119,184,74,-0.014146694954428989],[119,184,75,-0.015481782704193122],[119,184,76,-0.016541831351025573],[119,184,77,-0.01730481553845123],[119,184,78,-0.017757750476944327],[119,184,79,-0.017897122970749205],[119,185,64,0.005282728395253301],[119,185,65,0.0034031377289632423],[119,185,66,0.0013844197303800147],[119,185,67,-7.507232935996878E-4],[119,185,68,-0.0029659555021771746],[119,185,69,-0.005214963570058765],[119,185,70,-0.007446651254534053],[119,185,71,-0.009607933489821021],[119,185,72,-0.011646216611925069],[119,185,73,-0.013511607474138905],[119,185,74,-0.01515884349147621],[119,185,75,-0.016548936102422456],[119,185,76,-0.01765052059451653],[119,185,77,-0.018440905702702355],[119,185,78,-0.018906816852060606],[119,185,79,-0.019044827375179204],[119,186,64,0.005391785484574872],[119,186,65,0.003429323872781532],[119,186,66,0.001329303334985437],[119,186,67,-8.899286076682255E-4],[119,186,68,-0.0031923345975381533],[119,186,69,-0.005528687783632448],[119,186,70,-0.00784519757874171],[119,186,71,-0.010086393781368271],[119,186,72,-0.0121976157859251],[119,186,73,-0.014127228485700456],[119,186,74,-0.01582855692983593],[119,186,75,-0.01726153224729691],[119,186,76,-0.018394041810619148],[119,186,77,-0.01920297707634402],[119,186,78,-0.019674973003447702],[119,186,79,-0.019806833411455695],[119,187,64,0.005722087641611854],[119,187,65,0.003688671997059783],[119,187,66,0.0015201057713435581],[119,187,67,-7.693064079384548E-4],[119,187,68,-0.0031438521256701925],[119,187,69,-0.005551714909247671],[119,187,70,-0.007936780946980596],[119,187,71,-0.010241590430534322],[119,187,72,-0.012409819757637917],[119,187,73,-0.014388489589763576],[119,187,74,-0.01612989089490048],[119,187,75,-0.017593221556628156],[119,187,76,-0.018745926589810637],[119,187,77,-0.019564735466648414],[119,187,78,-0.020036390520488973],[119,187,79,-0.020158060854454474],[119,188,64,0.006280760783786626],[119,188,65,0.004189183722554322],[119,188,66,0.001965676739376091],[119,188,67,-3.790828197170818E-4],[119,188,68,-0.002809732464745237],[119,188,69,-0.005272261955788642],[119,188,70,-0.0077086674257403325],[119,188,71,-0.010059946009751294],[119,188,72,-0.012268555804483904],[119,188,73,-0.014280602187281288],[119,188,74,-0.016047742737495617],[119,188,75,-0.01752880345042392],[119,188,76,-0.018691099390432196],[119,188,77,-0.019511453390206962],[119,188,78,-0.019976906863629837],[119,188,79,-0.020085117256313702],[119,189,64,0.007067455205639925],[119,189,65,0.004930955980410426],[119,189,66,0.002666516606653545],[119,189,67,2.81688720748235E-4],[119,189,68,-0.00218853690683276],[119,189,69,-0.004688406822566645],[119,189,70,-0.007158504853408869],[119,189,71,-0.00953876576119736],[119,189,72,-0.011770898891461243],[119,189,73,-0.013800539968220865],[119,189,74,-0.015579123428499746],[119,189,75,-0.017065468133504534],[119,189,76,-0.01822706974442282],[119,189,77,-0.019041093505888396],[119,189,78,-0.019495061635383785],[119,189,79,-0.019587229968038893],[119,190,64,0.008073443302835418],[119,190,65,0.005905219031914871],[119,190,66,0.0036137606096096966],[119,190,67,0.0012040575520695328],[119,190,68,-0.0012892872815838132],[119,190,69,-0.0038092595994650667],[119,190,70,-0.006295530959076843],[119,190,71,-0.008687467755431558],[119,190,72,-0.010926506041135937],[119,190,73,-0.012958257450015801],[119,190,74,-0.014734338803798798],[119,190,75,-0.01621391841775373],[119,190,76,-0.017364972565102235],[119,190,77,-0.01816524600787855],[119,190,78,-0.01860291094979438],[119,190,79,-0.018676919210487555],[119,191,64,0.009280681646329371],[119,191,65,0.007093339925651943],[119,191,66,0.004788131829342131],[119,191,67,0.0023680798842757775],[119,191,68,-1.3260822271090114E-4],[119,191,69,-0.002656142482854625],[119,191,70,-0.005141776980327429],[119,191,71,-0.007528792093566776],[119,191,72,-0.009758809851363874],[119,191,73,-0.011777844359704146],[119,191,74,-0.013538080092881634],[119,191,75,-0.01499937127034048],[119,191,76,-0.016130455975894444],[119,191,77,-0.016909879114918938],[119,191,78,-0.017326618743952197],[119,191,79,-0.01738041074188892],[119,192,64,0.010660836511382138],[119,192,65,0.008465790482733907],[119,192,66,0.006158862044911271],[119,192,67,0.00374169603914586],[119,192,68,0.0012481111050999013],[119,192,69,-0.0012637790489974214],[119,192,70,-0.0037332674143984055],[119,192,71,-0.00609998964613939],[119,192,72,-0.008306171478338661],[119,192,73,-0.010298615968745676],[119,192,74,-0.01203042360118217],[119,192,75,-0.01346243869277743],[119,192,76,-0.014564415978117756],[119,192,77,-0.015315901671167179],[119,192,78,-0.015706823734309667],[119,192,79,-0.015737786508213666],[119,193,64,0.012174271947045632],[119,193,65,0.009981078882704658],[119,193,66,0.00768257955177093],[119,193,67,0.005279579956274418],[119,193,68,0.0028055349958635008],[119,193,69,3.185063755886151E-4],[119,193,70,-0.002121216525169692],[119,193,71,-0.004453990798041774],[119,193,72,-0.006622993364780403],[119,193,73,-0.008576139435765988],[119,193,74,-0.010267739344820349],[119,193,75,-0.011659887445080185],[119,193,76,-0.012723577165133596],[119,193,77,-0.01343953674233997],[119,193,78,-0.013798780567563687],[119,193,79,-0.01380287148865936],[119,194,64,0.013768999456329142],[119,194,65,0.011584643908502019],[119,194,66,0.00930216302181674],[119,194,67,0.00692196008021791],[119,194,68,0.004477178085061597],[119,194,69,0.002025578514841225],[119,194,70,-3.7322221075386145E-4],[119,194,71,-0.002660554638816865],[119,194,72,-0.004780791948444025],[119,194,73,-0.006683196151242189],[119,194,74,-0.00832350835677087],[119,194,75,-0.009665277029786836],[119,194,76,-0.010680918569627981],[119,194,77,-0.011352504948529988],[119,194,78,-0.011672273551531408],[119,194,79,-0.01164285476219836],[119,195,64,0.015380197927054312],[119,195,65,0.0132083827953005],[119,195,66,0.010946290292017439],[119,195,67,0.008594196995769054],[119,195,68,0.006185021166593247],[119,195,69,0.0037761600079198455],[119,195,70,0.0014264748402698008],[119,195,71,-8.064345813363566E-4],[119,195,72,-0.002868246842764973],[119,195,73,-0.004709691373996315],[119,195,74,-0.006288070457929723],[119,195,75,-0.007568524909571894],[119,195,76,-0.008525037983342478],[119,195,77,-0.00914117246184484],[119,195,78,-0.009410536274251658],[119,195,79,-0.009336972382848861],[119,196,64,0.016960689076760734],[119,196,65,0.014804202698215137],[119,196,66,0.012565858261432722],[119,196,67,0.010246006022316607],[119,196,68,0.007877453878918408],[119,196,69,0.005517263986037571],[119,196,70,0.0032235436815910828],[119,196,71,0.0010527984320818644],[119,196,72,-9.420047071343161E-4],[119,196,73,-0.002713134244233872],[119,196,74,-0.004219546036663833],[119,196,75,-0.0054280841084126275],[119,196,76,-0.006314425279922523],[119,196,77,-0.0068637627770351045],[119,196,78,-0.007071224369580183],[119,196,79,-0.006942020969868148],[119,197,64,0.01850031292632611],[119,197,65,0.01636484906940402],[119,197,66,0.014156140954266648],[119,197,67,0.01187490744216465],[119,197,68,0.009553964707939781],[119,197,69,0.007249979751996914],[119,197,70,0.0050202177826134745],[119,197,71,0.00291998220820004],[119,197,72,0.0010007630507391388],[119,197,73,-6.913802890566086E-4],[119,197,74,-0.0021171961842825987],[119,197,75,-0.0032453724892171306],[119,197,76,-0.0040534178114123775],[119,197,77,-0.004528287733108235],[119,197,78,-0.004666751739960128],[119,197,79,-0.0044754969836952666],[119,198,64,0.0172977764832133],[119,198,65,0.017881992130484744],[119,198,66,0.015710940631719038],[119,198,67,0.013476545915798646],[119,198,68,0.011211751719604264],[119,198,69,0.008972689720218864],[119,198,70,0.006815616533192247],[119,198,71,0.0047944543174056305],[119,198,72,0.0029590316692147],[119,198,73,0.0013535532709424553],[119,198,74,1.5303760807536477E-5],[119,198,75,-0.0010264090657982287],[119,198,76,-0.0017510669754798851],[119,198,77,-0.002147505551561339],[119,198,78,-0.002214225961122549],[119,198,79,-0.001959450567806505],[119,199,64,0.015938676426705982],[119,199,65,0.018103032008659602],[119,199,66,0.017220113862832023],[119,199,67,0.015041972514101493],[119,199,68,0.012842780914077234],[119,199,69,0.010677938567941388],[119,199,70,0.008602472650442549],[119,199,71,0.006668696516077766],[119,199,72,0.004924552647441998],[119,199,73,0.0034121778751890954],[119,199,74,0.002166696051935856],[119,199,75,0.0012152430171151409],[119,199,76,5.762283404314304E-4],[119,199,77,2.5883798104459424E-4],[119,199,78,2.6278165105015526E-4],[119,199,79,5.782883284483764E-4],[119,200,64,0.014660397372041901],[119,200,65,0.01677337377758413],[119,200,66,0.018671212022880676],[119,200,67,0.016559380952613147],[119,200,68,0.014435630102397136],[119,200,69,0.012354393558863745],[119,200,70,0.010369214303596176],[119,200,71,0.008530540419023694],[119,200,72,0.006884181067641267],[119,200,73,0.005469977128872535],[119,200,74,0.004320691365600934],[119,200,75,0.003461122660570771],[119,200,76,0.002907448527561926],[119,200,77,0.0026667997662154492],[119,200,78,0.0027370707956644977],[119,200,79,0.003106968873795364],[119,201,64,0.013477187841703143],[119,201,65,0.015526968177518015],[119,201,66,0.01761857147819251],[119,201,67,0.018015754915370746],[119,201,68,0.01597725175325552],[119,201,69,0.013988733817422015],[119,201,70,0.012101988324804906],[119,201,71,0.010365328520780821],[119,201,72,0.008822174556394155],[119,201,73,0.0075098401004265606],[119,201,74,0.006458529219957934],[119,201,75,0.0056905477466603445],[119,201,76,0.00521973302677209],[119,201,77,0.005051105633147645],[119,201,78,0.005180746300870495],[119,201,79,0.005595901036601016],[119,202,64,0.012401743036888471],[119,202,65,0.014376345387229808],[119,202,66,0.01638777095451116],[119,202,67,0.018427210996473202],[119,202,68,0.01745465485815122],[119,202,69,0.01556746878242662],[119,202,70,0.01378662493521117],[119,202,71,0.01215803121230792],[119,202,72,0.010722464761164363],[119,202,73,0.009514485524632622],[119,202,74,0.00856154933516157],[119,202,75,0.007883324426586057],[119,202,76,0.007491214929500751],[119,202,77,0.007388094615263052],[119,202,78,0.00756825385570883],[119,202,79,0.008017562473483097],[119,203,64,0.011444029118376414],[119,203,65,0.013331689054812385],[119,203,66,0.015252393099830982],[119,203,67,0.01719442315252121],[119,203,68,0.01885650579223572],[119,203,69,0.01707868600948225],[119,203,70,0.01541054436943028],[119,203,71,0.013895320407933665],[119,203,72,0.012570902202326172],[119,203,73,0.011468878025953018],[119,203,74,0.010613775308416265],[119,203,75,0.01002249039147953],[119,203,76,0.009703912289719351],[119,203,77,0.009658743384894176],[119,203,78,0.00987951970620781],[119,203,79,0.010350833177791632],[119,204,64,0.010610210469103723],[119,204,65,0.012399677850249261],[119,204,66,0.014219599282226377],[119,204,67,0.016054977014310443],[119,204,68,0.017869789929403756],[119,204,69,0.018513728423955537],[119,204,70,0.01696460572647006],[119,204,71,0.015567600356246124],[119,204,72,0.014357475334956276],[119,204,73,0.0133626374668438],[119,204,74,0.012604511983627328],[119,204,75,0.012097093780309539],[119,204,76,0.011846678069707258],[119,204,77,0.011851773026481832],[119,204,78,0.012103196738068693],[119,204,79,0.012584360532606767],[119,205,64,0.00990168070355565],[119,205,65,0.011582427977919656],[119,205,66,0.013292080806603237],[119,205,67,0.015012034646400167],[119,205,68,0.01670543102933368],[119,205,69,0.01832637963507925],[119,205,70,0.01844489831094426],[119,205,71,0.01717099615762439],[119,205,72,0.01607850461809391],[119,205,73,0.015192442504722507],[119,205,74,0.014530957890748574],[119,205,75,0.014105009391216266],[119,205,76,0.013918210671500947],[119,205,77,0.013966840374620659],[119,205,78,0.0142400194308089],[119,205,79,0.014720057491302882],[119,206,64,0.00931419830740158],[119,206,65,0.01087653742398082],[119,206,66,0.012466992908999948],[119,206,67,0.014063070424241942],[119,206,68,0.015627001390520378],[119,206,69,0.01711524401600391],[119,206,70,0.01848867860618223],[119,206,71,0.01870930045022717],[119,206,72,0.017738812341799734],[119,206,73,0.016964429408475912],[119,206,74,0.01640083411256925],[119,206,75,0.01605579386129559],[119,206,76,0.01593012702091848],[119,206,77,0.016017816174735078],[119,206,78,0.01630627021582029],[119,206,79,0.01677673667191045],[119,207,64,0.008838628934223557],[119,207,65,0.010273291667398462],[119,207,66,0.011735750612629641],[119,207,67,0.013199396503920277],[119,207,68,0.014625492626411064],[119,207,69,0.015972999446516374],[119,207,70,0.017205990796013503],[119,207,71,0.01829429406668786],[119,207,72,0.019213889086319005],[119,207,73,0.01869317892915096],[119,207,74,0.018230668668787028],[119,207,75,0.01796817900909533],[119,207,76,0.017903598173027196],[119,207,77,0.018028519860979204],[119,207,78,0.018328595115422154],[119,207,79,0.018784013913479475],[119,208,64,0.008466882621082888],[119,208,65,0.009763517887502583],[119,208,66,0.01108827156107215],[119,208,67,0.012410315271608432],[119,208,68,0.013689935690862942],[119,208,69,0.014888728709266507],[119,208,70,0.01597412134760548],[119,208,71,0.016919709958036416],[119,208,72,0.01770544265089044],[119,208,73,0.018317700130441757],[119,208,74,0.018749273569139063],[119,208,75,0.018999238298103995],[119,208,76,0.019072722237821686],[119,208,77,0.01898056813552276],[119,208,78,0.018738888813347357],[119,208,79,0.018368514762515917],[119,209,64,0.00819054406621266],[119,209,65,0.009338055680430456],[119,209,66,0.010514916177753119],[119,209,67,0.011686106325973986],[119,209,68,0.012810980533697927],[119,209,69,0.013853877279065696],[119,209,70,0.01478569114253791],[119,209,71,0.015583897058058481],[119,209,72,0.016232507026144465],[119,209,73,0.016721945980124584],[119,209,74,0.017048845981866793],[119,209,75,0.017215758039280243],[119,209,76,0.017230780950817797],[119,209,77,0.0171071066910223],[119,209,78,0.016862481954692712],[119,209,79,0.016518585574309304],[119,210,64,0.007999606603376046],[119,210,65,0.008986919829468457],[119,210,66,0.01000594035443252],[119,210,67,0.011017611222338297],[119,210,68,0.011980445023709313],[119,210,69,0.012861596870410528],[119,210,70,0.013635491604187124],[119,210,71,0.014283527023477774],[119,210,72,0.014793798960034533],[119,210,73,0.01516076748662363],[119,210,74,0.015384863988544824],[119,210,75,0.015472038913617784],[119,210,76,0.015433250093387797],[119,210,77,0.01528389160173625],[119,210,78,0.01504316318497527],[119,210,79,0.014733380358975355],[119,211,64,0.007882328396390284],[119,211,65,0.008699051938356319],[119,211,66,0.009551141701801963],[119,211,67,0.010395771633133183],[119,211,68,0.011190742383782348],[119,211,69,0.011906061474095486],[119,211,70,0.012519690873717682],[119,211,71,0.01301692729023875],[119,211,72,0.013389893264646813],[119,211,73,0.0136369924030853],[119,211,74,0.013762329035920931],[119,211,75,0.013775092641658946],[119,211,76,0.013688907415196974],[119,211,77,0.013521147396694027],[119,211,78,0.013292217608379243],[119,211,79,0.013024801671367187],[119,212,64,0.007825208201007653],[119,212,65,0.00846219242060275],[119,212,66,0.009139627546418477],[119,212,67,0.009811291395917519],[119,212,68,0.010434435403014477],[119,212,69,0.010981913705266414],[119,212,70,0.011435174372158947],[119,212,71,0.011783320131381192],[119,212,72,0.012022366847809633],[119,212,73,0.012154489918515],[119,212,74,0.012187259426878804],[119,212,75,0.012132864909094026],[119,212,76,0.012007330591225478],[119,212,77,0.011829721954298107],[119,212,78,0.0116213444783113],[119,212,79,0.011404935403398197],[119,213,64,0.00781308243723216],[119,213,65,0.008262874507147456],[119,213,66,0.008759706265463338],[119,213,67,0.009254423980342624],[119,213,68,0.009703918907374032],[119,213,69,0.010083842903885957],[119,213,70,0.010379021157451911],[119,213,71,0.010582201996048783],[119,213,72,0.01069308785105759],[119,213,73,0.010717378402240633],[119,213,74,0.010665827285523347],[119,213,75,0.010553313717731551],[119,213,76,0.010397930359827239],[119,213,77,0.010220088701606615],[119,213,78,0.010041643206335264],[119,213,79,0.009885035403480198],[119,214,64,0.007829345417291815],[119,214,65,0.00808654203812652],[119,214,66,0.00839890365588369],[119,214,67,0.008714887012730729],[119,214,68,0.008991232080471806],[119,214,69,0.009206296541786006],[119,214,70,0.00934811760198642],[119,214,71,0.009412864634414653],[119,214,72,0.00940365138515238],[119,214,73,0.009329384799279533],[119,214,74,0.009203652364960098],[119,214,75,0.009043649808034659],[119,214,76,0.008869150899706791],[119,214,77,0.008701521063569488],[119,214,78,0.008562776386006644],[119,214,79,0.00847468954633835],[119,215,64,0.007856294671193267],[119,215,65,0.007917792903176747],[119,215,66,0.008044106135470361],[119,215,67,0.008181905600789074],[119,215,68,0.00828800233328163],[119,215,69,0.008343326601541353],[119,215,70,0.008338910031248188],[119,215,71,0.0082740596325407],[119,215,72,0.008154963477686942],[119,215,73,0.007993357287890924],[119,215,74,0.007805254311188569],[119,215,75,0.007609740773281002],[119,215,76,0.007427839076092517],[119,215,77,0.007281440805346958],[119,215,78,0.007192311489223585],[119,215,79,0.007181168925924372],[119,216,64,0.007875603401673315],[119,216,65,0.007740750087277477],[119,216,66,0.007681832668981513],[119,216,67,0.007644386300054563],[119,216,68,0.00758552252476016],[119,216,69,0.0074885726999282054],[119,216,70,0.007347298076356871],[119,216,71,0.007163808098046624],[119,216,72,0.006946974968773921],[119,216,73,0.006710932936468445],[119,216,74,0.006473665126459591],[119,216,75,0.006255680618943901],[119,216,76,0.006078784322997564],[119,216,77,0.005964942049913305],[119,216,78,0.005935243033580014],[119,216,79,0.006008961986110959],[119,217,64,0.007868922181980799],[119,217,65,0.007539562364152996],[119,217,66,0.007298637401135702],[119,217,67,0.007091223656562958],[119,217,68,0.006874963432898702],[119,217,69,0.006635383831344463],[119,217,70,0.006368670601107481],[119,217,71,0.006079357350541287],[119,217,72,0.0057785672090171205],[119,217,73,0.0054823622199788305],[119,217,74,0.005210203702957612],[119,217,75,0.004983526652354707],[119,217,76,0.004824431063270525],[119,217,77,0.004754492890630051],[119,217,78,0.0047936971586244465],[119,217,79,0.004959495544433313],[119,218,64,0.007818612081780632],[119,218,65,0.007299036755269304],[119,218,66,0.00688164505870598],[119,218,67,0.006511741345499057],[119,218,68,0.006147723466323646],[119,218,69,0.005777080702785752],[119,218,70,0.00539808616612719],[119,218,71,0.005017286578537105],[119,218,72,0.0046475915273293195],[119,218,73,0.0043064923747945984],[119,218,74,0.004014414421132911],[119,218,75,0.003793205715422411],[119,218,76,0.0036647656994377702],[119,218,77,0.003649816652609947],[119,218,78,0.003766820685100163],[119,218,79,0.004031044801515335],[119,219,64,0.007708611466896728],[119,219,65,0.00700540493780568],[119,219,66,0.006419221254410311],[119,219,67,0.005896270001578157],[119,219,68,0.0053959176885093165],[119,219,69,0.004907360720143646],[119,219,70,0.004430600087262225],[119,219,71,0.003973763525339236],[119,219,72,0.0035510645429741522],[119,219,73,0.0031809116832485318],[119,219,74,0.0028841719246394575],[119,219,75,0.0026825918953307304],[119,219,76,0.002597380334259021],[119,219,77,0.0026479549855730478],[119,219,78,0.0028508568622116464],[119,219,79,0.003218834560973075],[119,220,64,0.007525438765947482],[119,220,65,0.006647225838023226],[119,220,66,0.005901779884183097],[119,220,67,0.005236863902002318],[119,220,68,0.004613008298337891],[119,220,69,0.004020847764061149],[119,220,70,0.0034617402306302016],[119,220,71,0.0029449543584576876],[119,220,72,0.002485521494719179],[119,220,73,0.0021022568837608937],[119,220,74,0.0018159542937880413],[119,220,75,0.001647757962812486],[119,220,76,0.0016177154985162858],[119,220,77,0.0017435150925266508],[119,220,78,0.00203941013168488],[119,220,79,0.0025153340094349504],[119,221,64,0.007259333529321715],[119,221,65,0.006216426685358946],[119,221,66,0.005322729854908172],[119,221,67,0.004528158715213069],[119,221,68,0.0037945787703130745],[119,221,69,0.0031137889605090843],[119,221,70,0.002488133761053298],[119,221,71,0.0019275889585442989],[119,221,72,0.001447529848268354],[119,221,73,0.0010666859969911395],[119,221,74,8.052869396937253E-4],[119,221,75,6.83402892761061E-4],[119,221,76,7.194842727247431E-4],[119,221,77,9.291035108201635E-4],[119,221,78,0.0013239023516489902],[119,221,79,0.0019107475215856986],[119,222,64,0.006905538121554247],[119,222,65,0.0057094848255149966],[119,222,66,0.00467956340997249],[119,222,67,0.0037683725664949294],[119,222,68,0.002939253903361597],[119,222,69,0.0021849007047633354],[119,222,70,0.0015082871219206184],[119,222,71,9.196839327614604E-4],[119,222,72,4.3436551920136954E-4],[119,222,73,7.051894110103389E-5],[119,222,74,-1.5264037021891453E-4],[119,222,75,-2.165420845804499E-4],[119,222,76,-1.0471971302286833E-4],[119,222,77,1.9594896265852176E-4],[119,222,78,6.942230258306344E-4],[119,222,79,0.0013937040584388238],[119,223,64,0.006465722384954723],[119,223,65,0.005128752595774901],[119,223,66,0.00397508833305544],[119,223,67,0.002960452692764148],[119,223,68,0.0020497680568196124],[119,223,69,0.0012363662355253176],[119,223,70,5.235215708425726E-4],[119,223,71,-7.857428826564442E-5],[119,223,72,-5.551458896695675E-4],[119,223,73,-8.889516223195073E-4],[119,223,74,-0.0010621808702479282],[119,223,75,-0.0010581263741245087],[119,223,76,-8.626278333673716E-4],[119,223,77,-4.652831214355019E-4],[119,223,78,1.3957617171738332E-4],[119,223,79,9.521478158059612E-4],[119,224,64,0.005949553588239994],[119,224,65,0.004483927550695113],[119,224,66,0.0032188063043415197],[119,224,67,0.00211336996153874],[119,224,68,0.0011341838638150652],[119,224,69,2.749870764235808E-4],[119,224,70,-4.6093337539582826E-4],[119,224,71,-0.0010637838733723794],[119,224,72,-0.0015196203925575893],[119,224,73,-0.0018124767181268958],[119,224,74,-0.0019262599948520274],[119,224,75,-0.0018464092573564446],[119,224,76,-0.001561312941467985],[119,224,77,-0.0010634817330144157],[119,224,78,-3.5047346743110886E-4],[119,224,79,5.744328514492746E-4],[119,225,64,0.005376413926749386],[119,225,65,0.0037936702890327464],[119,225,66,0.00242843965567697],[119,225,67,0.0012435635109606478],[119,225,68,2.0726370363255506E-4],[119,225,69,-6.865093371601375E-4],[119,225,70,-0.0014346862233663975],[119,225,71,-0.002028117118895323],[119,225,72,-0.0024539369965464303],[119,225,73,-0.0026976922366886195],[119,225,74,-0.002745223835250692],[119,225,75,-0.002584302849827766],[119,225,76,-0.0022060140797775115],[119,225,77,-0.0016058843464657193],[119,225,78,-7.847521103476109E-4],[119,225,79,2.506244708250099E-4],[119,226,64,0.00477726776825889],[119,226,65,0.0030873720709692983],[119,226,66,0.0016316087197780272],[119,226,67,3.765377265154432E-4],[119,226,68,-7.08003816552557E-4],[119,226,69,-0.0016280035494508963],[119,226,70,-0.0023807671619365937],[119,226,71,-0.00295794267049164],[119,226,72,-0.0033478866744596093],[119,226,73,-0.003537782323959313],[119,226,74,-0.003515504254407839],[119,226,75,-0.003271226117575097],[119,226,76,-0.002798766719506949],[119,226,77,-0.0020966711586629314],[119,226,78,-0.0011690237401201248],[119,226,79,-2.5989820397513017E-5],[119,227,64,0.00419910018628336],[119,227,65,0.002410292537065867],[119,227,66,8.716056205576168E-4],[119,227,67,-4.4674139726344605E-4],[119,227,68,-0.001573377949676305],[119,227,69,-0.002514334453479674],[119,227,70,-0.0032673798603285744],[119,227,71,-0.0038250271825984836],[119,227,72,-0.004176897818996454],[119,227,73,-0.004311828689317666],[119,227,74,-0.004219717432960379],[119,227,75,-0.0038931013137821404],[119,227,76,-0.0033284658666733846],[119,227,77,-0.002527279716001001],[119,227,78,-0.001496752389622758],[119,227,79,-2.5031234107019545E-4],[119,228,64,0.0037057546111896778],[119,228,65,0.0018276625434287203],[119,228,66,2.1450390470989037E-4],[119,228,67,-0.0011598071060588686],[119,228,68,-0.002322395696714058],[119,228,69,-0.0032794435093765526],[119,228,70,-0.004029280266048802],[119,228,71,-0.004565361600637261],[119,228,72,-0.004878625713235173],[119,228,73,-0.0049595850641811915],[119,228,74,-0.00480014838053356],[119,228,75,-0.00439516864687756],[119,228,76,-0.0037437131559841953],[119,228,77,-0.002850052099824307],[119,228,78,-0.0017243625845063265],[119,228,79,-3.831453503130408E-4],[119,229,64,0.003349637270423688],[119,229,65,0.001393927078313799],[119,229,66,-2.83755234484037E-4],[119,229,67,-0.0017056513636016367],[119,229,68,-0.002897342260508526],[119,229,69,-0.0038652691952290774],[119,229,70,-0.004608435394876252],[119,229,71,-0.005121340627266811],[119,229,72,-0.00539631968220858],[119,229,73,-0.005425609812721355],[119,229,74,-0.005203142453837033],[119,229,75,-0.004726054944794537],[119,229,76,-0.003995918392429293],[119,229,77,-0.0030196782263456822],[119,229,78,-0.001810304406667357],[119,229,79,-3.8714864916472407E-4],[119,230,64,0.0031661580914047346],[119,230,65,0.0011459917256238848],[119,230,66,-5.851895094608101E-4],[119,230,67,-0.002045574518479626],[119,230,68,-0.0032591051932627907],[119,230,69,-0.004232569639635565],[119,230,70,-0.004965750910308457],[119,230,71,-0.0054542979541715],[119,230,72,-0.005692031513523912],[119,230,73,-0.005672975028707917],[119,230,74,-0.005393105946186758],[119,230,75,-0.0048518232400795325],[119,230,76,-0.004053127374435122],[119,230,77,-0.0030065093510336705],[119,230,78,-0.0017275459018100449],[119,230,79,-2.3819829242276267E-4],[119,231,64,0.003175643394262739],[119,231,65,0.0011051305742892272],[119,231,66,-6.678724811201075E-4],[119,231,67,-0.0021572769932939285],[119,231,68,-0.0033852487175726497],[119,231,69,-0.004358971828330049],[119,231,70,-0.005079091748404191],[119,231,71,-0.005542498842044331],[119,231,72,-0.005744584223477424],[119,231,73,-0.005681219069494388],[119,231,74,-0.005350452948173513],[119,231,75,-0.004753927092042293],[119,231,76,-0.0038979989629270725],[119,231,77,-0.002794574874373298],[119,231,78,-0.0014616478523791947],[119,231,79,7.6461677428362E-5],[119,232,64,0.0033851526418888548],[119,232,65,0.001278798073108281],[119,232,66,-5.241250566587716E-4],[119,232,67,-0.0020330427263230712],[119,232,68,-0.003268175560802132],[119,232,69,-0.004237102231154246],[119,232,70,-0.0049413759191957165],[119,232,71,-0.00537919530423014],[119,232,72,-0.005547590454068919],[119,232,73,-0.005444333374235614],[119,232,74,-0.005069568883632073],[119,232,75,-0.004427161899406533],[119,232,76,-0.0035257576304439033],[119,232,77,-0.0023795515947259284],[119,232,78,-0.0010087667873395747],[119,232,79,5.60164270547557E-4],[119,233,64,0.0037901964935015053],[119,233,65,0.0016623417310218823],[119,233,66,-1.5880493159399665E-4],[119,233,67,-0.0016780180169252148],[119,233,68,-0.002913380198026254],[119,233,69,-0.003872802958565571],[119,233,70,-0.004558745764781682],[119,233,71,-0.004970748289013878],[119,233,72,-0.005107524942331583],[119,233,73,-0.004968787974493245],[119,233,74,-0.004556795006481633],[119,233,75,-0.0038776172694925774],[119,233,76,-0.0029421252345385633],[119,233,77,-0.00176668872573713],[119,233,78,-3.735890144897616E-4],[119,233,79,0.001208859212529012],[119,234,64,0.004376355130198136],[119,234,65,0.0022406146879772266],[119,234,66,4.123051238311205E-4],[119,234,67,-0.001108586587439561],[119,234,68,-0.0023377942143558],[119,234,69,-0.003283434036642321],[119,234,70,-0.003948817118175126],[119,234,71,-0.004334817135630291],[119,234,72,-0.004441851144581998],[119,234,73,-0.004271595565927339],[119,234,74,-0.0038284334949425284],[119,234,75,-0.0031206298339423494],[119,234,76,-0.0021612311492528826],[119,234,77,-9.686875510593039E-4],[119,234,78,4.328057126617507E-4],[119,234,79,0.0020132488730398783],[119,235,64,0.005120795688804497],[119,235,65,0.002989487053929203],[119,235,66,0.001164009109931765],[119,235,67,-3.508417957443997E-4],[119,235,68,-0.001568224618200022],[119,235,69,-0.0024962625109426363],[119,235,70,-0.0031390069299755676],[119,235,71,-0.0034986167042722967],[119,235,72,-0.003577202225896911],[119,235,73,-0.0033784141399868023],[119,235,74,-0.002908772912118704],[119,235,75,-0.0021787360352856066],[119,235,76,-0.001203500023885961],[119,235,77,-3.53472490951127E-6],[119,235,78,0.0013951521463081418],[119,235,79,0.002961021970252989],[119,236,64,0.005993687511582751],[119,236,65,0.0038772547892989453],[119,236,66,0.002063108629942301],[119,236,67,5.608429483691744E-4],[119,236,68,-6.398860563830386E-4],[119,236,69,-0.0015469392109960097],[119,236,70,-0.0021649400547742773],[119,236,71,-0.002497242709642248],[119,236,72,-0.002547616759489613],[119,236,73,-0.002321688314326227],[119,236,74,-0.0018281339472419114],[119,236,75,-0.0010796245592010326],[119,236,76,-9.351659357337755E-5],[119,236,77,0.0011077116137200493],[119,236,78,0.002496280204549466],[119,236,79,0.00403918639676177],[119,237,64,0.006959513795430368],[119,237,65,0.00486594478076993],[119,237,66,0.0030697114485759196],[119,237,67,0.0015851443945501921],[119,237,68,4.0497200120869625E-4],[119,237,69,-4.7806412756750403E-4],[119,237,70,-0.0010689360149673498],[119,237,71,-0.001372065920215853],[119,237,72,-0.0013928296212402183],[119,237,73,-0.0011388296499444774],[119,237,74,-6.209355101970166E-4],[119,237,75,1.4591174527854326E-4],[119,237,76,0.001142132857658948],[119,237,77,0.002343183561122809],[119,237,78,0.0037194692394571668],[119,237,79,0.005236502315237928],[119,238,64,0.007978278106594997],[119,238,65,0.005912514653159723],[119,238,66,0.004138436405542346],[119,238,67,0.002675019012342568],[119,238,68,0.0015183419269496888],[119,238,69,6.621585270830552E-4],[119,238,70,1.0142331470293475E-4],[119,238,71,-1.6919602054851508E-4],[119,238,72,-1.566187108741629E-4],[119,238,73,1.2956359847898E-4],[119,238,74,6.762185765904795E-4],[119,238,75,0.0014660244306069561],[119,238,76,0.002477042582743948],[119,238,77,0.0036825134404831926],[119,238,78,0.0050508765896119835],[119,238,79,0.006546016439083879],[119,239,64,0.009003071005046898],[119,239,65,0.00696733366696424],[119,239,66,0.0052176579726845905],[119,239,67,0.0037775481691184995],[119,239,68,0.002646732159997651],[119,239,69,0.0018204471751241255],[119,239,70,0.0012938979283109225],[119,239,71,0.0010610313676787811],[119,239,72,0.00111345978085371],[119,239,73,0.0014395819314909346],[119,239,74,0.0020239044352278472],[119,239,75,0.0028465652863538084],[119,239,76,0.003883061151964842],[119,239,77,0.005104179760386566],[119,239,78,0.0064761384277266755],[119,239,79,0.007960929493303315],[119,240,64,0.009976158859194685],[119,240,65,0.007973070000256616],[119,240,66,0.006250618074773147],[119,240,67,0.004836633826790234],[119,240,68,0.003734764327894027],[119,240,69,0.0029422403761983898],[119,240,70,0.0024548915100089073],[119,240,71,0.0022661913217577796],[119,240,72,0.0023664193229098983],[119,240,73,0.002742003594927318],[119,240,74,0.003375046027920998],[119,240,75,0.0042430316786624366],[119,240,76,0.005318723512774117],[119,240,77,0.006570243534223474],[119,240,78,0.00796134105104148],[119,240,79,0.009451848582007443],[119,241,64,0.010849611411294046],[119,241,65,0.008882619875038428],[119,241,66,0.007191001127502372],[119,241,67,0.005806605098354291],[119,241,68,0.004737217345389496],[119,241,69,0.0039825859338356384],[119,241,70,0.0035395792495461218],[119,241,71,0.003401502829703914],[119,241,72,0.003557509961148454],[119,241,73,0.003992175631928472],[119,241,74,0.004685235225784551],[119,241,75,0.005611489106668238],[119,241,76,0.006740874001746034],[119,241,77,0.008038701858494736],[119,241,78,0.009466066626602345],[119,241,79,0.010980419200766174],[119,242,64,0.011589059480395802],[119,242,65,0.009662006608428102],[119,242,66,0.008005129683109588],[119,242,67,0.006653887623453549],[119,242,68,0.00562035986116084],[119,242,69,0.0049073287639825785],[119,242,70,0.0045131394116700654],[119,242,71,0.004431282006036155],[119,242,72,0.004650055318615391],[119,242,73,0.005152376314530819],[119,242,74,0.005915736933617827],[119,242,75,0.0069123087944120394],[119,242,76,0.00810919637595576],[119,242,77,0.009468839028215494],[119,242,78,0.010949561966175286],[119,242,79,0.012506276217485145],[119,243,64,0.012172343651662532],[119,243,65,0.01028909450817231],[119,243,66,0.008670756010692962],[119,243,67,0.007355890052922864],[119,243,68,0.006360951883389919],[119,243,69,0.005692248843515029],[119,243,70,0.005350048628019701],[119,243,71,0.0053284146464171395],[119,243,72,0.005615120432693817],[119,243,73,0.006191693722069778],[119,243,74,0.007033590778930057],[119,243,75,0.008110501370856534],[119,243,76,0.009386784600164944],[119,243,77,0.010822035627998388],[119,243,78,0.012371783158607414],[119,243,79,0.01398831739486468],[119,244,64,0.01258818309579187],[119,244,65,0.010752320098197439],[119,244,66,0.009175867605469812],[119,244,67,0.00789989975512619],[119,244,68,0.006945249599212658],[119,244,69,0.006322195468109667],[119,244,70,0.006033366178180851],[119,244,71,0.006073810384494629],[119,244,72,0.006431154060506962],[119,244,73,0.0070858721801997536],[119,244,74,0.008011674809494069],[119,244,75,0.009176007649375841],[119,244,76,0.0105406669152527],[119,244,77,0.012062528286984509],[119,244,78,0.013694389523387621],[119,244,79,0.01538592620552404],[119,245,64,0.01283486469481431],[119,245,65,0.0110494407846911],[119,245,66,0.009517506661862815],[119,245,67,0.00828198768095403],[119,245,68,0.007368013204677266],[119,245,69,0.006790217502563907],[119,245,70,0.00655400680427484],[119,245,71,0.006655837858622849],[119,245,72,0.007083604731814574],[119,245,73,0.007817125724833198],[119,245,74,0.008828730266611785],[119,245,75,0.010083945497971775],[119,245,76,0.011542282126873919],[119,245,77,0.013158119009589485],[119,245,78,0.014881685796388548],[119,245,79,0.016660142875806513],[119,246,64,0.012918952773094673],[119,246,65,0.011186301189255267],[119,246,66,0.0097006036537332],[119,246,67,0.008505922423865738],[119,246,68,0.007631517650792481],[119,246,69,0.0070966893830107375],[119,246,70,0.006910001665050613],[119,246,71,0.0070697403408043836],[119,246,72,0.007564509854316562],[119,246,73,0.008373917760190428],[119,246,74,0.009469346483901572],[119,246,75,0.010814811750752603],[119,246,76,0.012367906988619908],[119,246,77,0.014080832905154217],[119,246,78,0.015901511346009204],[119,246,79,0.0177747824583818],[119,247,64,0.012854019860760043],[119,247,65,0.011175617497825738],[119,247,66,0.009736825279906781],[119,247,67,0.008582093617717605],[119,247,68,0.007744566307594375],[119,247,69,0.007248432714793524],[119,247,70,0.0071057471054463426],[119,247,71,0.00731703133348339],[119,247,72,0.007872057210548811],[119,247,73,0.008750706093287791],[119,247,74,0.009923904951604372],[119,247,75,0.01135463807701712],[119,247,76,0.012999033494393774],[119,247,77,0.014807523054144267],[119,247,78,0.016726075106592037],[119,247,79,0.018697498596992247],[119,248,64,0.012659399050719779],[119,248,65,0.011035780302093196],[119,248,66,0.00964343715422446],[119,248,67,0.008526444928279583],[119,248,68,0.0077215076520019185],[119,248,69,0.007257833402269751],[119,248,70,0.007151240996341894],[119,248,71,0.007404869702236885],[119,248,72,0.008010118229037261],[119,248,73,0.00894765254929224],[119,248,74,0.010188481584949479],[119,248,75,0.01169509969746743],[119,248,76,0.013422694841164255],[119,248,77,0.01532042116739005],[119,248,78,0.01733273480687795],[119,248,79,0.019400791509797462],[119,249,64,0.012358958649697997],[119,249,65,0.01078967654391355],[119,249,66,0.009442181746591569],[119,249,67,0.008359417014307953],[119,249,68,0.007581255196692423],[119,249,69,0.007141954347767495],[119,249,70,0.007061306487152155],[119,249,71,0.007345413984507472],[119,249,72,0.007987752465755582],[119,249,73,0.008970296404036845],[119,249,74,0.010264706242915282],[119,249,75,0.011833575818585736],[119,249,76,0.01363173877671934],[119,249,77,0.01560763261899481],[119,249,78,0.0177047189653526],[119,249,79,0.01986295858165633],[119,250,64,0.011979899968019512],[119,250,65,0.010463531312472824],[119,250,66,0.009158172214784842],[119,250,67,0.008104900960795183],[119,250,68,0.007346310996421578],[119,250,69,0.006921643866584903],[119,250,70,0.006854803111424678],[119,250,71,0.0071551555968605495],[119,250,72,0.007818682795909221],[119,250,73,0.008829190912447427],[119,250,74,0.010159578561685801],[119,250,75,0.01177316064704549],[119,250,76,0.013625047008538787],[119,250,77,0.01566357436400379],[119,250,78,0.01783179002264425],[119,250,79,0.0200689858213063],[119,251,64,0.01155157924194463],[119,251,65,0.010085770388516182],[119,251,66,0.008818802905929983],[119,251,67,0.007789202820501947],[119,251,68,0.007041793195224076],[119,251,69,0.00662064008354309],[119,251,70,0.006553825293109267],[119,251,71,0.006854230756395833],[119,251,72,0.007520740891354525],[119,251,73,0.008539502265510415],[119,251,74,0.009885239196177991],[119,251,75,0.011522623847194775],[119,251,76,0.013407699320489488],[119,251,77,0.015489354189773999],[119,251,78,0.0177108468846757],[119,251,79,0.020011378307706294],[119,252,64,0.011104354835806497],[119,252,65,0.009685904579503909],[119,252,66,0.008452677451412356],[119,252,67,0.007440020040032267],[119,252,68,0.006694468212845906],[119,252,69,0.006264671704427604],[119,252,70,0.006182888419083449],[119,252,71,0.006465711036485882],[119,252,72,0.007115282646301418],[119,252,73,0.008120570374599602],[119,252,74,0.009458695604192277],[119,252,75,0.011096319317227932],[119,252,76,0.012991081024847556],[119,252,77,0.01509308969635421],[119,252,78,0.01734646506017138],[119,252,79,0.019690927621861677],[119,253,64,0.010668461028748874],[119,253,65,0.009293437043869946],[119,253,66,0.008088555529364421],[119,253,67,0.007085430693493044],[119,253,68,0.00633178831168126],[119,253,69,0.005880555692954428],[119,253,70,0.0057681027722956465],[119,253,71,0.006014872593578179],[119,253,72,0.006626573314130356],[119,253,73,0.007595430961408452],[119,253,74,0.008901501562074372],[119,253,75,0.010514041184792927],[119,253,76,0.012392932369365929],[119,253,77,0.014490165357296369],[119,253,78,0.016751372493571816],[119,253,79,0.019117414137387826],[119,254,64,0.010272909852069755],[119,254,65,0.008936794961292325],[119,254,66,0.007754319524543541],[119,254,67,0.006752896600071822],[119,254,68,0.005980935436466088],[119,254,69,0.00549529253090675],[119,254,70,0.005336335759948588],[119,254,71,0.005528444230988577],[119,254,72,0.006081142231957487],[119,254,73,0.006990298525334866],[119,254,74,0.008239389669322842],[119,254,75,0.009800825961614029],[119,254,76,0.01163733852393638],[119,254,77,0.013703425979390584],[119,254,78,0.015946859120609832],[119,254,79,0.018310241926025143],[119,255,64,0.009944422607629832],[119,255,65,0.008642287068703413],[119,255,66,0.007475962476134381],[119,255,67,0.00646828156156447],[119,255,68,0.0056678723780754685],[119,255,69,0.005135159896053792],[119,255,70,0.004914363022931852],[119,255,71,0.0050338346080685895],[119,255,72,0.0055071071378236],[119,255,73,0.006334009868914482],[119,255,74,0.007501856183447141],[119,255,75,0.008986699850452915],[119,255,76,0.010754658790117918],[119,255,77,0.012763304859147569],[119,255,78,0.014963118110035523],[119,255,79,0.01729900392451462],[119,256,64,0.009706392865088424],[119,256,65,0.008433088748355346],[119,256,66,0.0072765988695613765],[119,256,67,0.006254886121902302],[119,256,68,0.005416402480070396],[119,256,69,0.004824805759665849],[119,256,70,0.004528009176710775],[119,256,71,0.004558339059537121],[119,256,72,0.004933468228944495],[119,256,73,0.005657427986851425],[119,256,74,0.006721697626771573],[119,256,75,0.008106370267696906],[119,256,76,0.009781393710801249],[119,256,77,0.011707884926859553],[119,256,78,0.01383951670264842],[119,256,79,0.01612397490803349],[119,257,64,0.009577889297947489],[119,257,65,0.008328262102618294],[119,257,66,0.007175504821614771],[119,257,67,0.006132504559156241],[119,257,68,0.005247242833267563],[119,257,69,0.0045863451972266295],[119,257,70,0.004201281972473792],[119,257,71,0.0041283294820163],[119,257,72,0.0043893752782443105],[119,257,73,0.004992809699671571],[119,257,74,0.0059345028182100105],[119,257,75,0.00719886571249594],[119,257,76,0.008759994885887244],[119,257,77,0.010582898541189054],[119,257,78,0.012624803329257145],[119,257,79,0.014836540106630564],[119,258,64,0.009572984453577089],[119,258,65,0.008342147000753478],[119,258,66,0.0071875756933961615],[119,258,67,0.006116944362699083],[119,258,68,0.005177595637709352],[119,258,69,0.004438972064604687],[119,258,70,0.003956012034357944],[119,258,71,0.0037689099268096355],[119,258,72,0.0039037875455072684],[119,258,73,0.004373459530117007],[119,258,74,0.005178291961343937],[119,258,75,0.006307153232791613],[119,258,76,0.007738456132458606],[119,258,77,0.009441289954824681],[119,258,78,0.011376641354117464],[119,258,79,0.013498702551699873],[119,259,64,0.00970629755091566],[119,259,65,0.008490985903001534],[119,259,66,0.0073310659706402916],[119,259,67,0.006228872632693361],[119,259,68,0.005230917420254239],[119,259,69,0.004409242961289714],[119,259,70,0.003822078699951928],[119,259,71,0.0035134020050501553],[119,259,72,0.003513475955779423],[119,259,73,0.003839488191958948],[119,259,74,0.0044962901948243155],[119,259,75,0.005477236210274114],[119,259,76,0.006765120880658339],[119,259,77,0.00833321451499249],[119,259,78,0.01014639480235364],[119,259,79,0.012162373660554886],[119,260,64,0.009994241572067623],[119,260,65,0.008793788009511975],[119,260,66,0.0076280011919201115],[119,260,67,0.006493743775280718],[119,260,68,0.005436340588805843],[119,260,69,0.00452996477645463],[119,260,70,0.0038357356847333397],[119,260,71,0.003401085936186708],[119,260,72,0.0032601658596492305],[119,260,73,0.003434355248102379],[119,260,74,0.003932881959302805],[119,260,75,0.004753546707792944],[119,260,76,0.005883553238204359],[119,260,77,0.007300442920251576],[119,260,78,0.008973132667014086],[119,260,79,0.01086305495146245],[119,261,64,0.01044934680436832],[119,261,65,0.009265325984798362],[119,261,66,0.008095767145653378],[119,261,67,0.0069319561128880405],[119,261,68,0.005817554966937846],[119,261,69,0.004828187121984982],[119,261,70,0.004027271827601886],[119,261,71,0.0034652050835596907],[119,261,72,0.003179631246723549],[119,261,73,0.003195827199255824],[119,261,74,0.003527198740701175],[119,261,75,0.0041758886891536656],[119,261,76,0.0051334960066651706],[119,261,77,0.006381905102724246],[119,261,78,0.00789422431858483],[119,261,79,0.009635832455941636],[119,262,64,0.011079897952642548],[119,262,65,0.009915743145899701],[119,262,66,0.008746680122743461],[119,262,67,0.007558371675839764],[119,262,68,0.006392266255252283],[119,262,69,0.005324596692170165],[119,262,70,0.004420345119900694],[119,262,71,0.0037322484342853877],[119,262,72,0.0033009381081262608],[119,262,73,0.003155196614080827],[119,262,74,0.0033123302643370683],[119,262,75,0.003778658089065121],[119,262,76,0.004550116196092393],[119,262,77,0.0056129768828703476],[119,262,78,0.006944681610191445],[119,262,79,0.008514786796788921],[119,263,64,0.011890148535360403],[119,263,65,0.010750795221878953],[119,263,66,0.009588249319901248],[119,263,67,0.008382583851884942],[119,263,68,0.0071724476846086556],[119,263,69,0.006033728882895791],[119,263,70,0.005032128747147415],[119,263,71,0.004222005140699352],[119,263,72,0.00364638218023643],[119,263,73,0.0033370792873914264],[119,263,74,0.003314959553816422],[119,263,75,0.003590297178850279],[119,263,76,0.004163263551886195],[119,263,77,0.005024531372090133],[119,263,78,0.0061559960278417545],[119,263,79,0.007531613298691966],[119,264,64,0.01288084943329677],[119,264,65,0.011772405143719779],[119,264,66,0.010623748522412381],[119,264,67,0.009409488286833242],[119,264,68,0.008164886699080904],[119,264,69,0.006964463901143731],[119,264,70,0.005873728730396941],[119,264,71,0.00494787547499139],[119,264,72,0.004231665753305056],[119,264,73,0.0037594311550149606],[119,264,74,0.003555196738196968],[119,264,75,0.0036329252790660554],[119,264,76,0.003996881978649703],[119,264,77,0.004642119145260371],[119,264,78,0.005555080194702348],[119,264,79,0.006714322143236148],[119,265,64,0.014050093400076413],[119,265,65,0.012979532563710811],[119,265,66,0.011853098641250026],[119,265,67,0.010640158488231072],[119,265,68,0.00937202800937562],[119,265,69,0.008120808611897143],[119,265,70,0.006950874342710491],[119,265,71,0.005917439326165122],[119,265,72,0.0050663146551735184],[119,265,73,0.004433786085168046],[119,265,74,0.004046612765588262],[119,265,75,0.003922147043438177],[119,265,76,0.004068575178044078],[119,265,77,0.004485278616892576],[119,265,78,0.005163315300910299],[119,265,79,0.0060860202952657885],[119,266,64,0.015394476894577592],[119,266,65,0.01436935936361883],[119,266,66,0.013274062252946455],[119,266,67,0.012073027173125835],[119,266,68,0.010793113963620404],[119,266,69,0.009502964993882484],[119,266,70,0.008264882119422182],[119,266,71,0.007133283030874918],[119,266,72,0.006154336201858337],[119,266,73,0.005365715366386927],[119,266,74,0.004796473899331749],[119,266,75,0.004467039273095611],[119,266,76,0.0043893275673442],[119,266,77,0.004566977817662342],[119,266,78,0.004995705804924183],[119,266,79,0.005663776711448548],[119,267,64,0.016910580173543088],[119,267,65,0.015938791999143505],[119,267,66,0.01488375089206323],[119,267,67,0.013705374017724793],[119,267,68,0.0124256228157975],[119,267,69,0.011108685726479576],[119,267,70,0.00981389394987837],[119,267,71,0.008594085016926023],[119,267,72,0.007495118612020118],[119,267,73,0.006555509434718993],[119,267,74,0.005806177612024091],[119,267,75,0.005270316974380734],[119,267,76,0.004963381313302974],[119,267,77,0.004893188547802905],[119,267,78,0.00506014254205448],[119,267,79,0.005457572139370596],[119,268,64,0.018596766188253844],[119,268,65,0.01768628114363413],[119,268,66,0.01668044547473475],[119,268,67,0.015535120110427998],[119,268,68,0.01426700513190755],[119,268,69,0.012934917106827664],[119,268,70,0.011594389432293873],[119,268,71,0.010295960449469708],[119,268,72,0.009084572110487379],[119,268,73,0.007999082127207633],[119,268,74,0.007071890252078567],[119,268,75,0.006328679146683372],[119,268,76,0.005788270101227111],[119,268,77,0.005462593679459904],[119,268,78,0.005356775179769296],[119,268,79,0.005469334625763931],[119,269,64,0.02045529846126363],[119,269,65,0.0196139587363134],[119,269,66,0.01866572988706048],[119,269,67,0.017562929079739636],[119,269,68,0.016316718259617197],[119,269,69,0.014979729198042966],[119,269,70,0.013602972391691033],[119,269,71,0.012234064804530188],[119,269,72,0.010916511696379229],[119,269,73,0.009689097513987653],[119,269,74,0.008585386636543036],[119,269,75,0.007633334578062427],[119,269,76,0.0068550100611010426],[119,269,77,0.006266428190806812],[119,269,78,0.005877494776880957],[119,269,79,0.005692061674768737],[119,270,64,0.020265280688207966],[119,270,65,0.021051852956695837],[119,270,66,0.020846937453728856],[119,270,67,0.01979461456455105],[119,270,68,0.018578558498254318],[119,270,69,0.017244532836092286],[119,270,70,0.015838431203081597],[119,270,71,0.014404456051948325],[119,270,72,0.012984281323417458],[119,270,73,0.011616319146970797],[119,270,74,0.0103350915218966],[119,270,75,0.009170707735237912],[119,270,76,0.008148448090500762],[119,270,77,0.007288454339836127],[119,270,78,0.006605527034080154],[119,270,79,0.006109029830749642],[119,271,64,0.01808272010597334],[119,271,65,0.01878486520798279],[119,271,66,0.01961525529565516],[119,271,67,0.02062708140211226],[119,271,68,0.021041298754012328],[119,271,69,0.019715966052610782],[119,271,70,0.018285159878464356],[119,271,71,0.01678931168792539],[119,271,72,0.015267995926864822],[119,271,73,0.013759067701583983],[119,271,74,0.012297900240355864],[119,271,75,0.010916723065732051],[119,271,76,0.009644061620756515],[119,271,77,0.008504278915755318],[119,271,78,0.007517219587544477],[119,271,79,0.006697956590859795],[119,272,64,0.015815008075824828],[119,272,65,0.016426215004014155],[119,272,66,0.01717783576500825],[119,272,67,0.01812491407343468],[119,272,68,0.019273616089030693],[119,272,69,0.020593376890924747],[119,272,70,0.020858621427335012],[119,272,71,0.019308396486167383],[119,272,72,0.01769281409998227],[119,272,73,0.016048969783542383],[119,272,74,0.014412928115769243],[119,272,75,0.012818920093052086],[119,272,76,0.011298636936239632],[119,272,77,0.00988062109712497],[119,272,78,0.008589755039147086],[119,272,79,0.007446848197459461],[119,273,64,0.013564964119079611],[119,273,65,0.014079527154146726],[119,273,66,0.014746048021738251],[119,273,67,0.015620713501724521],[119,273,68,0.016715262726954738],[119,273,69,0.01800711945458149],[119,273,70,0.019468015872147887],[119,273,71,0.021065905960831348],[119,273,72,0.020174706385237613],[119,273,73,0.01840941483359895],[119,273,74,0.016612106348096164],[119,273,75,0.014818783761494736],[119,273,76,0.013064084152439197],[119,273,77,0.011380522399145963],[119,273,78,0.009797827835102085],[119,273,79,0.008342374596608559],[119,274,64,0.011422881454881234],[119,274,65,0.011836213184650777],[119,274,66,0.012411871331848075],[119,274,67,0.013206427102699278],[119,274,68,0.014236868173135972],[119,274,69,0.015488649083054916],[119,274,70,0.016939747980761883],[119,274,71,0.018562585524221704],[119,274,72,0.020325346417521428],[119,274,73,0.020768183798621314],[119,274,74,0.01883020845521033],[119,274,75,0.016859028437122173],[119,274,76,0.01489189127663032],[119,274,77,0.012964937946694859],[119,274,78,0.011112395106477884],[119,274,79,0.009365856605385133],[119,275,64,0.009466981954295128],[119,275,65,0.009775865952321538],[119,275,66,0.010255830271088477],[119,275,67,0.010963055836405479],[119,275,68,0.01191933991711104],[119,275,69,0.013118041923279089],[119,275,70,0.014543375095049401],[119,275,71,0.016172316072209716],[119,275,72,0.01797603002789791],[119,275,73,0.01992121880821548],[119,275,74,0.021005239058053578],[119,275,75,0.018884055371964602],[119,275,76,0.01673363972744983],[119,275,77,0.014593298574142963],[119,275,78,0.012501273358627465],[119,275,79,0.0104938850113574],[119,276,64,0.007763749106041603],[119,276,65,0.00796653046355948],[119,276,66,0.008347194726530859],[119,276,67,0.008960772831540096],[119,276,68,0.009833335124217284],[119,276,69,0.010965856039259526],[119,276,70,0.012348648944546722],[119,276,71,0.013963251214452889],[119,276,72,0.015783939536171614],[119,276,73,0.017779173136064117],[119,276,74,0.01991296309024461],[119,276,75,0.020840540477154428],[119,276,76,0.01854165005115276],[119,276,77,0.016224202804911363],[119,276,78,0.013929864522627284],[119,276,79,0.011699068324887051],[119,277,64,0.006368137613229333],[119,277,65,0.006464849592300837],[119,277,66,0.006744053914371451],[119,277,67,0.007258915348368427],[119,277,68,0.008039161444994369],[119,277,69,0.009092935764382934],[119,277,70,0.010416394680116675],[119,277,71,0.01199555312998054],[119,277,72,0.013807874406090215],[119,277,73,0.015823792372245883],[119,277,74,0.018008164166967242],[119,277,75,0.020321651585424358],[119,277,76,0.020269757742791387],[119,277,77,0.017816238496738367],[119,277,78,0.015362011040642325],[119,277,79,0.01295090875129974],[119,278,64,0.005323658432509891],[119,278,65,0.005316083578577788],[119,278,66,0.005493263379335068],[119,278,67,0.005905849143112654],[119,278,68,0.006586549598112656],[119,278,69,0.007550087202679904],[119,278,70,0.008798087517298945],[119,278,71,0.010320871707212898],[119,278,72,0.012099103414219398],[119,278,73,0.014105372075147027],[119,278,74,0.016305710661782376],[119,278,75,0.01866104594589153],[119,278,76,0.021128579528169763],[119,278,77,0.019328933857234283],[119,278,78,0.016760979584728886],[119,278,79,0.014216805885940374],[119,279,64,0.004662338245124496],[119,279,65,0.004554002363633194],[119,279,66,0.004630264109529927],[119,279,67,0.00493870445831458],[119,279,68,0.0055142970534314455],[119,279,69,0.0063776243163478925],[119,279,70,0.007535299511513199],[119,279,71,0.008981693460344428],[119,279,72,0.010700619931920534],[119,279,73,0.012666960945257884],[119,279,74,0.014848229898397864],[119,279,75,0.0172060705631426],[119,279,76,0.01969769011457857],[119,279,77,0.020723837465326293],[119,279,78,0.01809057294822301],[119,279,79,0.015463187582765827],[119,280,64,0.004404552513501797],[119,280,65,0.0042006499775501015],[119,280,66,0.00417877305483888],[119,280,67,0.004382983010975133],[119,280,68,0.0048497822813364485],[119,280,69,0.005604785167960107],[119,280,70,0.006659016141252901],[119,280,71,0.008010560009124515],[119,280,72,0.00964626665790633],[119,280,73,0.011543398563946967],[119,280,74,0.013671218957056868],[119,280,75,0.0159925186360152],[119,280,76,0.018465079562322587],[119,280,77,0.02104307349079267],[119,280,78,0.019316369600589866],[119,280,79,0.01665676740646887],[119,281,64,0.004558731427299614],[119,281,65,0.004265980341181657],[119,281,66,0.004150344476807766],[119,281,67,0.00425203548312264],[119,281,68,0.00460834915954985],[119,281,69,0.005249018002396907],[119,281,70,0.0061888224831066485],[119,281,71,0.0074291560075241386],[119,281,72,0.008959729789489978],[119,281,73,0.010760222714262704],[119,281,74,0.012801874064937248],[119,281,75,0.01504901710027034],[119,281,76,0.017460551594577597],[119,281,77,0.019991353579156074],[119,281,78,0.020407090360656778],[119,281,79,0.017765928049383473],[119,282,64,0.005120938178938138],[119,282,65,0.004747363975654626],[119,282,66,0.004543801683374246],[119,282,67,0.004546409137718149],[119,282,68,0.0047925612389940996],[119,282,69,0.005315136955472865],[119,282,70,0.006131958855502641],[119,282,71,0.007247266490683622],[119,282,72,0.008653402695267627],[119,282,73,0.010332446439173594],[119,282,74,0.012257790125610327],[119,282,75,0.01439565933655678],[119,282,76,0.01670657314854746],[119,282,77,0.019146743266879703],[119,282,78,0.021336091619700022],[119,282,79,0.01876223007776815],[119,283,64,0.006074319130510333],[119,283,65,0.005628965229625318],[119,283,66,0.0053445388124221775],[119,283,67,0.005253065286212324],[119,283,68,0.005391325665750871],[119,283,69,0.00579434726321019],[119,283,70,0.0064822458861925085],[119,283,71,0.007461603678582048],[119,283,72,0.008727119211877046],[119,283,73,0.010263205043487203],[119,283,74,0.012045530675598397],[119,283,75,0.014042508958309288],[119,283,76,0.0162167240975679],[119,283,77,0.018526299551516266],[119,283,78,0.02092620422782898],[119,283,79,0.019622045367802387],[119,284,64,0.007388425541132509],[119,284,65,0.0068809897364379286],[119,284,66,0.0065236924236846],[119,284,67,0.006344466422251334],[119,284,68,0.006378886636306116],[119,284,69,0.006663139917330076],[119,284,70,0.0072188790212625855],[119,284,71,0.008054503328634333],[119,284,72,0.00916675673222595],[119,284,73,0.010542273281557423],[119,284,74,0.012159068583316748],[119,284,75,0.013987975065595138],[119,284,76,0.015994019328928927],[119,284,77,0.018137739928179214],[119,284,78,0.020376444055842515],[119,284,79,0.020328314600196594],[119,285,64,0.009018406615925222],[119,285,65,0.008458801899977065],[119,285,66,0.008037182738555118],[119,285,67,0.007777532908584204],[119,285,68,0.007713688327693368],[119,285,69,0.007882055768369192],[119,285,70,0.008305092540441787],[119,285,71,0.00899249076745006],[119,285,72,0.009942709281715516],[119,285,73,0.01114445299332131],[119,285,74,0.01257809781773878],[119,285,75,0.014217059355026929],[119,285,76,0.016029103627625458],[119,285,77,0.017977598303271187],[119,285,78,0.020022702954108032],[119,285,79,0.020872428204110026],[119,286,64,0.010904073714356798],[119,286,65,0.010301912278775681],[119,286,66,0.009824624431351157],[119,286,67,0.009492469160589555],[119,286,68,0.009337107292268146],[119,286,69,0.009394319117292002],[119,286,70,0.009686693174067208],[119,286,71,0.010224716753670104],[119,286,72,0.011008230791879825],[119,286,73,0.012027831455579336],[119,286,74,0.01326621661035928],[119,286,75,0.01469947546445201],[119,286,76,0.01629831979777258],[119,286,77,0.018029255303321272],[119,286,78,0.019855691691100897],[119,286,79,0.021256230176659893],[119,287,64,0.012968835616054967],[119,287,65,0.012332834792243204],[119,287,66,0.01180810692290435],[119,287,67,0.01141145930940952],[119,287,68,0.01117205433804947],[119,287,69,0.011124340858933771],[119,287,70,0.011290463430630835],[119,287,71,0.011681263328485424],[119,287,72,0.012297648776866203],[119,287,73,0.013131910703087835],[119,287,74,0.014168982313794279],[119,287,75,0.015387640903559261],[119,287,76,0.0167616504191586],[119,287,77,0.018260843420841007],[119,287,78,0.019852141203523098],[119,287,79,0.021494144254327933],[119,288,64,0.015118504785701533],[119,288,65,0.01445581371001283],[119,288,66,0.013890844157324375],[119,288,67,0.013437232349735432],[119,288,68,0.013121445929121902],[119,288,69,0.01297609124533314],[119,288,70,0.013022434739613861],[119,288,71,0.013271319797372567],[119,288,72,0.013724448596522448],[119,288,73,0.014375608044193232],[119,288,74,0.015211838222866782],[119,288,75,0.016214541877033545],[119,288,76,0.01736053358558184],[119,288,77,0.01862302738272216],[119,288,78,0.01997256171083132],[119,288,79,0.02137786071151627],[119,289,64,0.01723997584895075],[119,289,65,0.01655542199389664],[119,289,66,0.015955695792900515],[119,289,67,0.015451499068515734],[119,289,68,0.015066547761467444],[119,289,69,0.014831345260201398],[119,289,70,0.014766033697924832],[119,289,71,0.014881232375905416],[119,289,72,0.01517923201933077],[119,289,73,0.015655131591081284],[119,289,74,0.016297916204524837],[119,289,75,0.017091474787753823],[119,289,76,0.018015556266408335],[119,289,77,0.019046663149730088],[119,289,78,0.020158881524249606],[119,289,79,0.021324646580833065],[119,290,64,0.01920745363687678],[119,290,65,0.01850420923889423],[119,290,66,0.017874244770541718],[119,290,67,0.017325449101307688],[119,290,68,0.016878833162327092],[119,290,69,0.01656277657069024],[119,290,70,0.01639622437484991],[119,290,71,0.01638945409280774],[119,290,72,0.016545189131779568],[119,290,73,0.016859653145821003],[119,290,74,0.017323563984281375],[119,290,75,0.01792306599680333],[119,290,76,0.01864059957622212],[119,290,77,0.01945570693847584],[119,290,78,0.020345773257951887],[119,290,79,0.02128670239684736],[119,291,64,0.020915443897242314],[119,291,65,0.020199188185100955],[119,291,66,0.019546710619864557],[119,291,67,0.0189630466048406],[119,291,68,0.018466522431876384],[119,291,69,0.018083422557040714],[119,291,70,0.017831421866037596],[119,291,71,0.01772029457940495],[119,291,72,0.017752962222400182],[119,291,73,0.017926480284274175],[119,291,74,0.01823296231324318],[119,291,75,0.018660440309182874],[119,291,76,0.019193660394004414],[119,291,77,0.01981481285912071],[119,291,78,0.020504195809764376],[119,291,79,0.021240811746422134],[119,292,64,0.020768793767293663],[119,292,65,0.02150149446995585],[119,292,66,0.02089894563866583],[119,292,67,0.02029408655391457],[119,292,68,0.01976378929270106],[119,292,69,0.01933229024521782],[119,292,70,0.01901589777847251],[119,292,71,0.01882366270796696],[119,292,72,0.01875838406982291],[119,292,73,0.018817550168523167],[119,292,74,0.018994213712694653],[119,292,75,0.01927779997232068],[119,292,76,0.019654847013457242],[119,292,77,0.02010967719017931],[119,292,78,0.020624999197438255],[119,292,79,0.02118244011196326],[119,293,64,0.01979705684985388],[119,293,65,0.0205231250178618],[119,293,66,0.021193652726128293],[119,293,67,0.02126801149439614],[119,293,68,0.020723581878416702],[119,293,69,0.020266238513639918],[119,293,70,0.019910819532384407],[119,293,71,0.019665393895078834],[119,293,72,0.019532254593462757],[119,293,73,0.01950884214146478],[119,293,74,0.019588597197547297],[119,293,75,0.019761741291716768],[119,293,76,0.020015984761120965],[119,293,77,0.0203371611293634],[119,293,78,0.020709787295627623],[119,293,79,0.021117549029549074],[119,294,64,0.019261214468303086],[119,294,65,0.019967965086014342],[119,294,66,0.020619722327695652],[119,294,67,0.021221083110099924],[119,294,68,0.021316631373978084],[119,294,69,0.020858958915241886],[119,294,70,0.020493182388324465],[119,294,71,0.020226110263199214],[119,294,72,0.020059104728938824],[119,294,73,0.019989020283777883],[119,294,74,0.02000906459382438],[119,294,75,0.020109580596634483],[119,294,76,0.02027874896851884],[119,294,77,0.02050321021718605],[119,294,78,0.020768605803329555],[119,294,79,0.021060037835069673],[119,295,64,0.01917949097585905],[119,295,65,0.019853020309042846],[119,295,66,0.020468663343555737],[119,295,67,0.021034599024970256],[119,295,68,0.021530590713972814],[119,295,69,0.021100087950474907],[119,295,70,0.02075487509962079],[119,295,71,0.020500217557779508],[119,295,72,0.020336101261003176],[119,295,73,0.020258222265248316],[119,295,74,0.02025888963771656],[119,295,75,0.02032784059789348],[119,295,76,0.02045296700574834],[119,295,77,0.02062095245320594],[119,295,78,0.020817819372484142],[119,295,79,0.02102938573014104],[119,296,64,0.019550993538709042],[119,296,65,0.020176724998114813],[119,296,66,0.020738241826506208],[119,296,67,0.02124742056279303],[119,296,68,0.021369304384270534],[119,296,69,0.020994451791783962],[119,296,70,0.020701880149808963],[119,296,71,0.020495039742784053],[119,296,72,0.02037209350434761],[119,296,73,0.02032699535251587],[119,296,74,0.020350470693828223],[119,296,75,0.02043089795430952],[119,296,76,0.020555090174723012],[119,296,77,0.020708975886745036],[119,296,78,0.02087817866431875],[119,296,79,0.021048494919344456],[119,297,64,0.020356337231861886],[119,297,65,0.020919554120943328],[119,297,66,0.02140893439490502],[119,297,67,0.02121772917059282],[119,297,68,0.02085221026669476],[119,297,69,0.02056144435263813],[119,297,70,0.020353609423628804],[119,297,71,0.020230092080990778],[119,297,72,0.020186802598773233],[119,297,73,0.020215380302069347],[119,297,74,0.020304287785809],[119,297,75,0.020439792707047093],[119,297,76,0.02060683608867891],[119,297,77,0.02078978627681164],[119,297,78,0.02097307789649218],[119,297,79,0.021141735349782906],[119,298,64,0.021464893842562238],[119,298,65,0.020990388957749566],[119,298,66,0.020599832402736436],[119,298,67,0.02027392973272624],[119,298,68,0.02001387437658767],[119,298,69,0.01983453950250911],[119,298,70,0.019742376064856525],[119,298,71,0.019736493404616404],[119,298,72,0.019810154076961347],[119,298,73,0.019952143749809963],[119,298,74,0.020148014504068168],[119,298,75,0.020381200100105135],[119,298,76,0.020634002009628796],[119,298,77,0.020888445246068116],[119,298,78,0.021127003258452567],[119,298,79,0.021333191382075376],[119,299,64,0.01991405498041836],[119,299,65,0.019529942422968072],[119,299,66,0.019245012496527134],[119,299,67,0.01903639818473461],[119,299,68,0.01890365926973181],[119,299,69,0.018860938153752085],[119,299,70,0.01891300319502662],[119,299,71,0.019056518196990974],[119,299,72,0.019281754270824458],[119,299,73,0.019574159607035384],[119,299,74,0.01991578524295867],[119,299,75,0.020286565180551303],[119,299,76,0.02066544947732829],[119,299,77,0.02103138920109267],[119,299,78,0.021364172404695205],[119,299,79,0.021295463185134433],[119,300,64,0.018093562005370024],[119,300,65,0.01781196853832951],[119,300,66,0.017646837735623904],[119,300,67,0.01757192965542822],[119,300,68,0.0175855268387042],[119,300,69,0.017701350887739487],[119,300,70,0.017922570104553445],[119,300,71,0.018243289037731574],[119,300,72,0.018650511046635145],[119,300,73,0.019125939887720156],[119,300,74,0.019647618124100638],[119,300,75,0.020191400464317593],[119,300,76,0.020732260442319225],[119,300,77,0.021245429156149163],[119,300,78,0.021247307753792386],[119,300,79,0.02083728679211354],[119,301,64,0.016093183049713675],[119,301,65,0.015924407923143324],[119,301,66,0.01589072622057859],[119,301,67,0.01596278597170086],[119,301,68,0.016137976180045616],[119,301,69,0.01642991674648175],[119,301,70,0.016840296482509415],[119,301,71,0.017360609912720548],[119,301,72,0.01797439930037716],[119,301,73,0.01865931532399229],[119,301,74,0.019388993883863087],[119,301,75,0.020134746862795545],[119,301,76,0.020867065012117478],[119,301,77,0.021409430166915537],[119,301,78,0.020770807166966433],[119,301,79,0.020224792219468764],[119,302,64,0.014020012922795639],[119,302,65,0.013972084661049869],[119,302,66,0.014078392201695293],[119,302,67,0.01430677350893514],[119,302,68,0.014654117193422644],[119,302,69,0.01513425879310084],[119,302,70,0.015747565224082268],[119,302,71,0.016482940856875204],[119,302,72,0.017320371603700112],[119,302,73,0.018233266076356867],[119,302,74,0.01919059094202113],[119,302,75,0.020158797992669435],[119,302,76,0.02110354083411892],[119,302,77,0.0209680677265909],[119,302,78,0.020150723165376416],[119,302,79,0.019448593210150446],[119,303,64,0.011968974288752508],[119,303,65,0.01204791388833071],[119,303,66,0.012299948546195275],[119,303,67,0.012690440041736063],[119,303,68,0.01321616452978045],[119,303,69,0.013891473827410168],[119,303,70,0.014715594715766313],[119,303,71,0.01567492114037084],[119,303,72,0.016745876762064182],[119,303,73,0.017897552046118214],[119,303,74,0.01909411264316132],[119,303,75,0.02029697624890732],[119,303,76,0.021466755565420662],[119,303,77,0.020387161867492364],[119,303,78,0.019378372864930812],[119,303,79,0.01850767656932253],[119,304,64,0.009936840856448219],[119,304,65,0.010148856038134375],[119,304,66,0.010552370453897888],[119,304,67,0.01111067368294103],[119,304,68,0.011820816009439478],[119,304,69,0.012697927107307485],[119,304,70,0.013740255209072894],[119,304,71,0.014931760630610448],[119,304,72,0.016245310386514816],[119,304,73,0.017645623987033208],[119,304,74,0.01909196677733882],[119,304,75,0.020540587660039928],[119,304,76,0.02101405761578544],[119,304,77,0.019677674522013657],[119,304,78,0.018465725302802632],[119,304,79,0.017414895241709173],[119,305,64,0.007914799816317292],[119,305,65,0.008266218018659892],[119,305,66,0.008826973458148007],[119,305,67,0.009558748301800134],[119,305,68,0.01045924194741016],[119,305,69,0.011544576467446152],[119,305,70,0.012812156056300327],[119,305,71,0.014243575220524635],[119,305,72,0.015808156108427382],[119,305,73,0.01746621298736655],[119,305,74,0.019172039820786173],[119,305,75,0.020876617425325688],[119,305,76,0.020423730753356795],[119,305,77,0.01885449656105264],[119,305,78,0.01742849214334154],[119,305,79,0.01618666933932792],[119,306,64,0.00591400828511185],[119,306,65,0.0064106029166788505],[119,306,66,0.007133596506282219],[119,306,67,0.008043564753213916],[119,306,68,0.009139204731175564],[119,306,69,0.010437794641715572],[119,306,70,0.01193600564267664],[119,306,71,0.013613134981636013],[119,306,72,0.015434992658264493],[119,306,73,0.01735749072363665],[119,306,74,0.019329930748508542],[119,306,75,0.021297985570014413],[119,306,76,0.019740371879278934],[119,306,77,0.017930187922703084],[119,306,78,0.01628182763765028],[119,306,79,0.014840583561734545],[119,307,64,0.003960557073125451],[119,307,65,0.0046069986362721575],[119,307,66,0.005495848230789763],[119,307,67,0.0065870888281765305],[119,307,68,0.00788072378006282],[119,307,69,0.009395297107058984],[119,307,70,0.011126836725400673],[119,307,71,0.013052418793892259],[119,307,72,0.015134405492445125],[119,307,73,0.01732436069103195],[119,307,74,0.019566638615365416],[119,307,75,0.02115114201790734],[119,307,76,0.018971213575542708],[119,307,77,0.016916065654790372],[119,307,78,0.015041019086501238],[119,307,79,0.013395696189319543],[119,308,64,0.002090909069116579],[119,308,65,0.002890337812988574],[119,308,66,0.0039468176547413835],[119,308,67,0.005220243667212564],[119,308,68,0.006712182223399783],[119,308,69,0.008442496402995995],[119,308,70,0.010406640817045497],[119,308,71,0.012579558743473968],[119,308,72,0.014920267435296558],[119,308,73,0.017376096606124013],[119,308,74,0.0198865747742272],[119,308,75,0.020558991626973343],[119,308,76,0.01812206864925033],[119,308,77,0.015823035093984646],[119,308,78,0.0137219418036205],[119,308,79,0.011872632732831229],[119,309,64,3.4781263735503054E-4],[119,309,65,0.0013015293167974154],[119,309,66,0.0025252495670368825],[119,309,67,0.003979256796713481],[119,309,68,0.005666875383577272],[119,309,69,0.0076092829416294005],[119,309,70,0.009801411560196508],[119,309,71,0.012216174172187197],[119,309,72,0.014809388162369683],[119,309,73,0.01752432775800261],[119,309,74,0.020295899465444356],[119,309,75,0.019885032101026146],[119,309,76,0.017198267637156404],[119,309,77,0.01466216451611593],[119,309,78,0.012341278917137165],[119,309,79,0.010293464570626543],[119,310,64,-0.0012233100105704649],[119,310,65,-1.160387533655564E-4],[119,310,66,0.0012721844162276032],[119,310,67,0.0029024615874955993],[119,310,68,0.004780000818113294],[119,310,69,0.0069272320216864375],[119,310,70,0.00933859677174516],[119,310,71,0.01198509502800418],[119,310,72,0.014819532152949193],[119,310,73,0.01778137092181525],[119,310,74,0.02080118238622728],[119,310,75,0.019128720560819452],[119,310,76,0.016205317917233595],[119,310,77,0.013445003612298324],[119,310,78,0.010916506334588072],[119,310,79,0.008681372862419892],[119,311,64,-0.002577499890003587],[119,311,65,-0.0013195250427662428],[119,311,66,2.2806223309433473E-4],[119,311,67,0.0020275526219647433],[119,311,68,0.0040860893896038095],[119,311,69,0.0064272365046733],[119,311,70,0.009044958611330577],[119,311,71,0.011908473975408078],[119,311,72,0.014967804582779107],[119,311,73,0.018158908326597886],[119,311,74,0.021408386761293523],[119,311,75,0.018290094901879165],[119,311,76,0.015149284821952698],[119,311,77,0.01218364613211383],[119,311,78,0.009465643152763882],[119,311,79,0.007060097955454418],[119,312,64,-0.0036729245162674027],[119,312,65,-0.002269190651553527],[119,312,66,-5.69710195138678E-4],[119,312,67,0.0013892941939301483],[119,312,68,0.0036168765968722896],[119,312,69,0.006137564404207782],[119,312,70,0.008944841151583425],[119,312,71,0.012006286578867157],[119,312,72,0.01526940451516188],[119,312,73,0.018667011089426824],[119,312,74,0.020809261313160198],[119,312,75,0.017370174202830647],[119,312,76,0.014036895130149515],[119,312,77,0.01089053698664663],[119,312,78,0.00800676771619525],[119,312,79,0.005453174394437309],[119,313,64,-0.004473068405963674],[119,313,65,-0.0029304856080470277],[119,313,66,-0.0010887299086133882],[119,313,67,0.0010176809567287327],[119,313,68,0.0033996132179304494],[119,313,69,0.006082340484130382],[119,313,70,0.009058844501024878],[119,313,71,0.012295218775806686],[119,313,72,0.015736744682325565],[119,313,73,0.019313507492808305],[119,313,74,0.019981094672354847],[119,313,75,0.01637105933324118],[119,313,76,0.012875363257516932],[119,313,77,0.00957802401855962],[119,313,78,0.006557299415268575],[119,313,79,0.003882951508410618],[119,314,64,-0.004948452053501002],[119,314,65,-0.0032756673258978204],[119,314,66,-0.0013031073002958257],[119,314,67,9.365495845824659E-4],[119,314,68,0.0034558141890707636],[119,314,69,0.006280450860455163],[119,314,70,0.009402904556918496],[119,314,71,0.012787940809906579],[119,314,72,0.016378937132164508],[119,314,73,0.02010369549456656],[119,314,74,0.019042795214729416],[119,314,75,0.015295734118694134],[119,314,76,0.01167194036764852],[119,314,77,0.008257654521532985],[119,314,78,0.005133046164811599],[119,314,79,0.0023693993740543443],[119,315,64,-0.0050778807838158],[119,315,65,-0.003284952399188402],[119,315,66,-0.0011945158779594967],[119,315,67,0.0011626402230170267],[119,315,68,0.0038004445783719736],[119,315,69,0.006744869560285038],[119,315,70,0.00998777744856618],[119,315,71,0.013492766804750445],[119,315,72,0.017201644051286432],[119,315,73,0.021040398922257928],[119,315,74,0.017994619409115394],[119,315,75,0.014147567304666302],[119,315,76,0.010433186483697168],[119,315,77,0.006939216424906991],[119,315,78,0.0037470173142945184],[119,315,79,9.286997436505856E-4],[119,316,64,-0.004849224967996782],[119,316,65,-0.002947203154344531],[119,316,66,-7.527836016105853E-4],[119,316,67,0.0017051064810726252],[119,316,68,0.00444154151029849],[119,316,69,0.00748240601148659],[119,316,70,0.010818927775294803],[119,316,71,0.014413699225406843],[119,316,72,0.018207293167165888],[119,316,73,0.020796715459000314],[119,316,74,0.016837677045327598],[119,316,75,0.012929515395803582],[119,316,76,0.009163965492390314],[119,316,77,0.005629523848736733],[119,316,78,0.002408001509145246],[119,316,79,-4.283787252034055E-4],[119,317,64,-0.004259733101001649],[119,317,65,-0.0022601503696069516],[119,317,66,2.3972892710600094E-5],[119,317,67,0.002565472765584645],[119,317,68,0.0053802709653790436],[119,317,69,0.008493872524467334],[119,317,70,0.011896819851760191],[119,317,71,0.015550857605284647],[119,317,72,0.019395657283744965],[119,317,73,0.019564090762604524],[119,317,74,0.015573015743553208],[119,317,75,0.01164302623037504],[119,317,76,0.007866162694542505],[119,317,77,0.004330946477030171],[119,317,78,0.0011189087465931704],[119,317,79,-0.0016983218943974736],[119,318,64,-0.0033158791744598874],[119,318,65,-0.0012301534864478194],[119,318,66,0.0011296699769915454],[119,318,67,0.0037380378810110645],[119,318,68,0.00661141851997921],[119,318,69,0.009774670986435146],[119,318,70,0.013217611350594582],[119,318,71,0.016901291111741514],[119,318,72,0.020764797719978762],[119,318,73,0.018186672134912634],[119,318,74,0.01420038403144322],[119,318,75,0.010286642877750074],[119,318,76,0.00653712426624544],[119,318,77,0.0030396818898097777],[119,318,78,-1.2512445378605312E-4],[119,318,79,-0.00288692951901788],[119,319,64,-0.0020327456269301457],[119,319,65,1.285005329419172E-4],[119,319,66,0.00255103360529515],[119,319,67,0.005210724022470796],[119,319,68,0.008124313311068136],[119,319,69,0.011315798223957296],[119,319,70,0.014774248983516869],[119,319,71,0.01846017479086823],[119,319,72,0.0206060805820263],[119,319,73,0.016664204112817018],[119,319,74,0.01271667248263567],[119,319,75,0.008854307116215265],[119,319,76,0.0051678176493445745],[119,319,77,0.0017437696347681116],[119,319,78,-0.0013388682179036567],[119,319,79,-0.0040115942499369195],[120,-64,64,-0.0018835967083784676],[120,-64,65,-0.0022671417356611313],[120,-64,66,-0.002571198815636417],[120,-64,67,-0.00280349396129985],[120,-64,68,-0.0029482486161971667],[120,-64,69,-0.002975329807579181],[120,-64,70,-0.002860264397121117],[120,-64,71,-0.002584763771331982],[120,-64,72,-0.0021367296746696877],[120,-64,73,-0.0015101784862381854],[120,-64,74,-7.050822573941605E-4],[120,-64,75,2.7287503684349706E-4],[120,-64,76,0.001412627436535157],[120,-64,77,0.0026981443803193983],[120,-64,78,0.004108936634178634],[120,-64,79,0.0056206517085644805],[120,-63,64,-0.0015586738277025588],[120,-63,65,-0.0019082274582086424],[120,-63,66,-0.0021745648361110857],[120,-63,67,-0.0023647901528414303],[120,-63,68,-0.0024637620346858314],[120,-63,69,-0.0024429652294296706],[120,-63,70,-0.0022796264644173265],[120,-63,71,-0.001957164436874409],[120,-63,72,-0.0014651444988240277],[120,-63,73,-7.991562658358469E-4],[120,-63,74,3.938734948505699E-5],[120,-63,75,0.0010435310464505184],[120,-63,76,0.002201139216473044],[120,-63,77,0.003495340279742679],[120,-63,78,0.004905054216374958],[120,-63,79,0.006405604080337992],[120,-62,64,-0.0010563789320989156],[120,-62,65,-0.0013777534640174126],[120,-62,66,-0.001613806767230542],[120,-62,67,-0.001770690372724912],[120,-62,68,-0.0018339546133366099],[120,-62,69,-0.0017769724482208317],[120,-62,70,-0.0015788038069671894],[120,-62,71,-0.001224582569812291],[120,-62,72,-7.054392526296079E-4],[120,-62,73,-1.8350345368886863E-5],[120,-62,74,8.34087050845074E-4],[120,-62,75,0.0018439565149788216],[120,-62,76,0.0029984006193285945],[120,-62,77,0.0042800772205615015],[120,-62,78,0.005667694543586484],[120,-62,79,0.007136625730766867],[120,-61,64,-3.8647304476472906E-4],[120,-61,65,-6.855023133178885E-4],[120,-61,66,-8.987720769962819E-4],[120,-61,67,-0.00103118969322723],[120,-61,68,-0.001069033401565986],[120,-61,69,-9.877816504745912E-4],[120,-61,70,-7.684167941966812E-4],[120,-61,71,-3.977608842552904E-4],[120,-61,72,1.3161532411220652E-4],[120,-61,73,8.21553712637551E-4],[120,-61,74,0.0016685417352044006],[120,-61,75,0.0026640180716669677],[120,-61,76,0.003794751996104885],[120,-61,77,0.005043297323142135],[120,-61,78,0.006388521661232596],[120,-61,79,0.007806211565813276],[120,-60,64,4.379551033227544E-4],[120,-60,65,1.556453223169662E-4],[120,-60,66,-4.212495416343076E-5],[120,-60,67,-1.587795716581693E-4],[120,-60,68,-1.8134711364886178E-4],[120,-60,69,-8.757527094056588E-5],[120,-60,70,1.3958326772838287E-4],[120,-60,71,5.116747102569237E-4],[120,-60,72,0.0010348319445693482],[120,-60,73,0.001709930342789277],[120,-60,74,0.0025328127593669497],[120,-60,75,0.0034945847778709597],[120,-60,76,0.004581981137930035],[120,-60,77,0.005777804147037172],[120,-60,78,0.007061434752852292],[120,-60,79,0.00840941682150611],[120,-59,64,0.0014013587977059578],[120,-59,65,0.00113060434347518],[120,-59,66,9.415734782099725E-4],[120,-59,67,8.324995636242881E-4],[120,-59,68,8.155880760770192E-4],[120,-59,69,9.107088630234875E-4],[120,-59,70,0.0011329266093308582],[120,-59,71,0.0014922337277283356],[120,-59,72,0.0019936200911931288],[120,-59,73,0.0026372090337573486],[120,-59,74,0.00341846074685979],[120,-59,75,0.0043284440848841785],[120,-59,76,0.0053541776753939915],[120,-59,77,0.00647904110798483],[120,-59,78,0.0076832568518420755],[120,-59,79,0.008944443427234113],[120,-58,64,0.002486773955845932],[120,-58,65,0.0022231495111198554],[120,-58,66,0.0020369546603998235],[120,-58,67,0.0019281739361469905],[120,-58,68,0.001908228591184034],[120,-58,69,0.0019945366620162342],[120,-58,70,0.0022001946684483834],[120,-58,71,0.002533730157735862],[120,-58,72,0.0029991412110724636],[120,-58,73,0.0035960008932540517],[120,-58,74,0.004319627748422589],[120,-58,75,0.005161323336433039],[120,-58,76,0.00610867769133563],[120,-58,77,0.007145943466894625],[120,-58,78,0.00825447941515581],[120,-58,79,0.009413263724030176],[120,-57,64,0.0036770303003666053],[120,-57,65,0.003417149984062166],[120,-57,66,0.0032291014457342462],[120,-57,67,0.0031146199075551915],[120,-57,68,0.00308430904757559],[120,-57,69,0.0031530989066746716],[120,-57,70,0.003332146741522751],[120,-57,71,0.003628601803848793],[120,-57,72,0.004045605725972735],[120,-57,73,0.00458235675091044],[120,-57,74,0.005234238899921121],[120,-57,75,0.005993017067289591],[120,-57,76,0.006847098924227652],[120,-57,77,0.00778186440218016],[120,-57,78,0.008780063411689652],[120,-57,79,0.00982228233749235],[120,-56,64,0.004952627637223209],[120,-56,65,0.004694163527739349],[120,-56,66,0.004500852892432514],[120,-56,67,0.004376076230371092],[120,-56,68,0.004329560933038199],[120,-56,69,0.004373738086163479],[120,-56,70,0.0045178615492689166],[120,-56,71,0.0047677794775858005],[120,-56,72,0.0051258900244493906],[120,-56,73,0.005591159809553585],[120,-56,74,0.006159206242705399],[120,-56,75,0.006822444695137885],[120,-56,76,0.007570301407831186],[120,-56,77,0.008389492919767937],[120,-56,78,0.009264372689740117],[120,-56,79,0.01017734547439364],[120,-55,64,0.006271508150638556],[120,-55,65,0.006011288504686329],[120,-55,66,0.005808677003072179],[120,-55,67,0.005668515650955895],[120,-55,68,0.005599596053868543],[120,-55,69,0.005611900697550849],[120,-55,70,0.005712868570222391],[120,-55,71,0.0059071660230260005],[120,-55,72,0.006196592074807753],[120,-55,73,0.006580045553041828],[120,-55,74,0.007053555166495464],[120,-55,75,0.007610373513110906],[120,-55,76,0.008241135929174824],[120,-55,77,0.008934084984236954],[120,-55,78,0.009675361321529947],[120,-55,79,0.010449361436976215],[120,-54,64,0.007586353938928687],[120,-54,65,0.0073197574284511405],[120,-54,66,0.0071025673756057615],[120,-54,67,0.006940848257116488],[120,-54,68,0.006842409235047502],[120,-54,69,0.006814906316069083],[120,-54,70,0.006864118488139387],[120,-54,71,0.006993707398566481],[120,-54,72,0.007205065156455619],[120,-54,73,0.007497223445687979],[120,-54,74,0.007866825064641205],[120,-54,75,0.008308158921804308],[120,-54,76,0.008813259423739147],[120,-54,77,0.009372071094561564],[120,-54,78,0.009972679165333545],[120,-54,79,0.010601606768606869],[120,-53,64,0.008856916489938062],[120,-53,65,0.008578267809374592],[120,-53,66,0.008340393103348167],[120,-53,67,0.008150296342815999],[120,-53,68,0.008014769731902011],[120,-53,69,0.007939324751929041],[120,-53,70,0.00792828825711748],[120,-53,71,0.007984538148824197],[120,-53,72,0.008109285730611265],[120,-53,73,0.008301919460594142],[120,-53,74,0.008559911256177057],[120,-53,75,0.008878786423545747],[120,-53,76,0.009252158195441604],[120,-53,77,0.009671827766834068],[120,-53,78,0.010127950620202015],[120,-53,79,0.010609269831358037],[120,-52,64,0.010050251348766618],[120,-52,65,0.00975319239594967],[120,-52,66,0.009488081721840593],[120,-52,67,0.009262547600983934],[120,-52,68,0.009082342494508143],[120,-52,69,0.008951063557014402],[120,-52,70,0.008871833549863161],[120,-52,71,0.008846998163325272],[120,-52,72,0.008877834645463259],[120,-52,73,0.008964322691287616],[120,-52,74,0.009104978806446831],[120,-52,75,0.009296755280248805],[120,-52,76,0.009535004816655014],[120,-52,77,0.009813511780080442],[120,-52,78,0.01012459091642881],[120,-52,79,0.01045925430993092],[120,-51,64,0.011141007729136],[120,-51,65,0.01081883921082174],[120,-51,66,0.010519846517294682],[120,-51,67,0.010251946829272598],[120,-51,68,0.010019841690935114],[120,-51,69,0.009825481276655204],[120,-51,70,0.00967106034971372],[120,-51,71,0.00955866207656194],[120,-51,72,0.009489884771471929],[120,-51,73,0.009465532663470546],[120,-51,74,0.009485371979756485],[120,-51,75,0.00954795356230361],[120,-51,76,0.009650503149457621],[120,-51,77,0.00978888036308562],[120,-51,78,0.009957607345308156],[120,-51,79,0.010149967888186716],[120,-50,64,0.011370518674965087],[120,-50,65,0.011757824046189778],[120,-50,66,0.011418525812918688],[120,-50,67,0.011101798758936382],[120,-50,68,0.010811294060995081],[120,-50,69,0.010547608835716718],[120,-50,70,0.01031230261515642],[120,-50,71,0.01010747235264308],[120,-50,72,0.009935289648458887],[120,-50,73,0.0097976047436667],[120,-50,74,0.009695618676323013],[120,-50,75,0.009629624917241935],[120,-50,76,0.009598821717188653],[120,-50,77,0.009601196304946416],[120,-50,78,0.009633481977215743],[120,-50,79,0.009691189017960277],[120,-49,64,0.01051028436769008],[120,-49,65,0.010954115473401537],[120,-49,66,0.011390148681265479],[120,-49,67,0.011801624861076903],[120,-49,68,0.011447898667104899],[120,-49,69,0.011110631626075647],[120,-49,70,0.010791034370630483],[120,-49,71,0.01049147633341291],[120,-49,72,0.01021492743625509],[120,-49,73,0.009964470248519736],[120,-49,74,0.009742884125396064],[120,-49,75,0.009552302758654934],[120,-49,76,0.009393946484960464],[120,-49,77,0.009267930601415496],[120,-49,78,0.00917315083572384],[120,-49,79,0.009107247010428062],[120,-48,64,0.009810640142301727],[120,-48,65,0.010293664639264056],[120,-48,66,0.010775701690223585],[120,-48,67,0.011250005558655294],[120,-48,68,0.01171500979518784],[120,-48,69,0.0115095805384085],[120,-48,70,0.011107148351053265],[120,-48,71,0.010715657787268629],[120,-48,72,0.010339016337885143],[120,-48,73,0.009981633741375609],[120,-48,74,0.009647917846341381],[120,-48,75,0.009341848432929796],[120,-48,76,0.00906663045444264],[120,-48,77,0.008824428060598351],[120,-48,78,0.008616180656422133],[120,-48,79,0.008441502136867413],[120,-47,64,0.009290168188541484],[120,-47,65,0.00981238413175198],[120,-47,66,0.010338998845982854],[120,-47,67,0.010864361779875318],[120,-47,68,0.011388020493407019],[120,-47,69,0.011744753953952945],[120,-47,70,0.011265636621230054],[120,-47,71,0.010789852234590638],[120,-47,72,0.01032229556588021],[120,-47,73,0.009868705482346779],[120,-47,74,0.009435076085371662],[120,-47,75,0.009027150555383119],[120,-47,76,0.008649999273497466],[120,-47,77,0.008307683685369284],[120,-47,78,0.008003007259226091],[120,-47,79,0.007737354769488909],[120,-46,64,0.008958184213452567],[120,-46,65,0.009516984769984166],[120,-46,66,0.010083867180667186],[120,-46,67,0.010654615224418677],[120,-46,68,0.011229961635949335],[120,-46,69,0.011812162441933737],[120,-46,70,0.011276715447308707],[120,-46,71,0.010728149815254098],[120,-46,72,0.010182726659358645],[120,-46,73,0.009647436710299512],[120,-46,74,0.009129740714905235],[120,-46,75,0.00863698984704336],[120,-46,76,0.008175935074172636],[120,-46,77,0.007752327034103988],[120,-46,78,0.007370607856691447],[120,-46,79,0.007033696237705058],[120,-45,64,0.008815694718433112],[120,-45,65,0.00940628204227192],[120,-45,66,0.010006747512867875],[120,-45,67,0.010614631162982476],[120,-45,68,0.01123194077352144],[120,-45,69,0.0117547967675542],[120,-45,70,0.011155117428132638],[120,-45,71,0.010548254988991439],[120,-45,72,0.00994092717963239],[120,-45,73,0.009341232963600427],[120,-45,74,0.008757916879082462],[120,-45,75,0.008199724774741374],[120,-45,76,0.007674852680538429],[120,-45,77,0.0071904904369383535],[120,-45,78,0.006752461579940896],[120,-45,79,0.006364960845339267],[120,-44,64,0.008856335343675662],[120,-44,65,0.009472113014012079],[120,-44,66,0.010097582118701083],[120,-44,67,0.010732335570273676],[120,-44,68,0.011379760258601837],[120,-44,69,0.011557799832550491],[120,-44,70,0.010919395255876978],[120,-44,71,0.010270856382739342],[120,-44,72,0.009619613119401762],[120,-44,73,0.008974674773256685],[120,-44,74,0.008345836799436755],[120,-44,75,0.007742982298047105],[120,-44,76,0.007175480052045977],[120,-44,77,0.006651680774295469],[120,-44,78,0.0061785131008612725],[120,-44,79,0.005761180727806618],[120,-43,64,0.009067293061747436],[120,-43,65,0.009700237985362849],[120,-43,66,0.01034068803263292],[120,-43,67,0.010990552723093168],[120,-43,68,0.011654711932621567],[120,-43,69,0.011251795092028774],[120,-43,70,0.010591235065369228],[120,-43,71,0.009919004923291001],[120,-43,72,0.009243048354086644],[120,-43,73,0.008573044255869933],[120,-43,74,0.007919568472780386],[120,-43,75,0.007293352662541189],[120,-43,76,0.006704642109132286],[120,-43,77,0.006162654168555287],[120,-43,78,0.005675138899769211],[120,-43,79,0.005248043288445023],[120,-42,64,0.009430215012703407],[120,-42,65,0.010071229614205434],[120,-42,66,0.01071561859618599],[120,-42,67,0.01136783194362033],[120,-42,68,0.011508108119208903],[120,-42,69,0.010860114480183205],[120,-42,70,0.010194777321625232],[120,-42,71,0.0095174983868534],[120,-42,72,0.008836499461489846],[120,-42,73,0.008161856137110813],[120,-42,74,0.007504628003561703],[120,-42,75,0.00687608719724662],[120,-42,76,0.006287047115423445],[120,-42,77,0.0057472929776938835],[120,-42,78,0.005265115776918996],[120,-42,79,0.004846951014308037],[120,-41,64,0.009922106774719192],[120,-41,65,0.01056135222353793],[120,-41,66,0.011198015877235836],[120,-41,67,0.011662886328407377],[120,-41,68,0.011044559824545701],[120,-41,69,0.010408476472396271],[120,-41,70,0.009755943192179815],[120,-41,71,0.00909227049673366],[120,-41,72,0.00842569423935184],[120,-41,73,0.007766391744742577],[120,-41,74,0.007125594327461457],[120,-41,75,0.006514798095945086],[120,-41,76,0.005945074821306282],[120,-41,77,0.005426484519687091],[120,-41,78,0.004967591256643887],[120,-41,79,0.004575083533346576],[120,-40,64,0.010516222856562318],[120,-40,65,0.011143434007003001],[120,-40,66,0.011706638010009544],[120,-40,67,0.011124973580351598],[120,-40,68,0.010532298622164094],[120,-40,69,0.00992426111472521],[120,-40,70,0.009301764354975353],[120,-40,71,0.008669782706543819],[120,-40,72,0.008036282259602104],[120,-40,73,0.007411234523713752],[120,-40,74,0.006805725101916175],[120,-40,75,0.006231159187615037],[120,-40,76,0.0056985656068498656],[120,-40,77,0.005218000998400214],[120,-40,78,0.00479805558446547],[120,-40,79,0.0044454618368274836],[120,-39,64,0.011182952181015865],[120,-39,65,0.011649500291376291],[120,-39,66,0.011098583154428675],[120,-39,67,0.010552857698363043],[120,-39,68,0.010000262125540789],[120,-39,69,0.009435787091361184],[120,-39,70,0.008859714204123667],[120,-39,71,0.008276416819231164],[120,-39,72,0.007693295813426477],[120,-39,73,0.007119805644651533],[120,-39,74,0.006566572562697168],[120,-39,75,0.006044606730419368],[120,-39,76,0.0055646098980751705],[120,-39,77,0.005136380145528881],[120,-39,78,0.004768315070071733],[120,-39,79,0.004467014652895097],[120,-38,64,0.011521801037735115],[120,-38,65,0.0109838073932291],[120,-38,66,0.010474139794363117],[120,-38,67,0.009976921848362031],[120,-38,68,0.009478022732785132],[120,-38,69,0.008971588641297115],[120,-38,70,0.008457038434957705],[120,-38,71,0.007937866612068661],[120,-38,72,0.00742060962277897],[120,-38,73,0.006913898301312472],[120,-38,74,0.006427598173685962],[120,-38,75,0.005972039296543405],[120,-38,76,0.00555733716934597],[120,-38,77,0.005192806138810262],[120,-38,78,0.0048864665824862145],[120,-38,79,0.004644647019146401],[120,-37,64,0.010819648384258073],[120,-37,65,0.010322554684181402],[120,-37,66,0.009864845668479753],[120,-37,67,0.00942776369201386],[120,-37,68,0.008995016370482148],[120,-37,69,0.008559690163033106],[120,-37,70,0.00812008301669754],[120,-37,71,0.007678526664713783],[120,-37,72,0.00724039772187995],[120,-37,73,0.006813209322358303],[120,-37,74,0.006405784929702712],[120,-37,75,0.006027515851823427],[120,-37,76,0.005687703886216502],[120,-37,77,0.0053949904041602475],[120,-37,78,0.005156873057935956],[120,-37,79,0.004979311163801492],[120,-36,64,0.010144967461897575],[120,-36,65,0.009697949187157365],[120,-36,66,0.009301931511208877],[120,-36,67,0.008935381530451937],[120,-36,68,0.008579767023462095],[120,-36,69,0.00822687638233887],[120,-36,70,0.007873617595966519],[120,-36,71,0.007520876621735982],[120,-36,72,0.007172585946701314],[120,-36,73,0.006834866758327852],[120,-36,74,0.006515246209725995],[120,-36,75,0.0062219511745250835],[120,-36,76,0.005963279787380904],[120,-36,77,0.005747051958510006],[120,-36,78,0.005580139935710506],[120,-36,79,0.005468079866277577],[120,-35,64,0.009529943475664967],[120,-35,65,0.009141283995434362],[120,-35,66,0.008815469198775336],[120,-35,67,0.008528354140454913],[120,-35,68,0.008259104825268775],[120,-35,69,0.007997956003123627],[120,-35,70,0.007740152417536064],[120,-35,71,0.007484859162829793],[120,-35,72,0.007234298511622251],[120,-35,73,0.006992952146014521],[120,-35,74,0.006766830120191884],[120,-35,75,0.006562807801883854],[120,-35,76,0.00638803195142498],[120,-35,77,0.006249397000854095],[120,-35,78,0.006153092492562417],[120,-35,79,0.006104222528522405],[120,-34,64,0.009005178291439753],[120,-34,65,0.00868205318587749],[120,-34,66,0.008433511311957935],[120,-34,67,0.008233012013018851],[120,-34,68,0.008057375541029022],[120,-34,69,0.00789501681557241],[120,-34,70,0.007739246900267272],[120,-34,71,0.007587250003463304],[120,-34,72,0.007439297200505942],[120,-34,73,0.0072980161997539695],[120,-34,74,0.007167718315354528],[120,-34,75,0.007053783741131779],[120,-34,76,0.006962106143851466],[120,-34,77,0.006898597511288981],[120,-34,78,0.0068687541017724086],[120,-34,79,0.006877284248102827],[120,-33,64,0.008598779062707585],[120,-33,65,0.008347055810233654],[120,-33,66,0.00818121979609079],[120,-33,67,0.008072597774440715],[120,-33,68,0.00799563934121317],[120,-33,69,0.007936670299134025],[120,-33,70,0.007886808066481964],[120,-33,71,0.00784101830616513],[120,-33,72,0.007797411754574152],[120,-33,73,0.007756586732519475],[120,-33,74,0.007721018334027014],[120,-33,75,0.007694495233753975],[120,-33,76,0.007681604992327556],[120,-33,77,0.007687268671544975],[120,-33,78,0.00771632549875223],[120,-33,79,0.00777316824256753],[120,-32,64,0.008335433819303672],[120,-32,65,0.008159486653535533],[120,-32,66,0.008079981483167407],[120,-32,67,0.008066413650773712],[120,-32,68,0.008090856841678507],[120,-32,69,0.008137283830933118],[120,-32,70,0.008194377092156481],[120,-32,71,0.008254675948225106],[120,-32,72,0.008313960101809528],[120,-32,73,0.008370667669340064],[120,-32,74,0.008425348549482743],[120,-32,75,0.008480153917675799],[120,-32,76,0.008538362593260695],[120,-32,77,0.008603944975605926],[120,-32,78,0.008681165190826576],[120,-32,79,0.008774222031779607],[120,-31,64,0.008235471760957187],[120,-31,65,0.008138011547883614],[120,-31,66,0.00814650833645167],[120,-31,67,0.008228953928077426],[120,-31,68,0.008355060472647027],[120,-31,69,0.008506198692959098],[120,-31,70,0.008668402323606212],[120,-31,71,0.00883161416546848],[120,-31,72,0.008989157142358713],[120,-31,73,0.009137228081526803],[120,-31,74,0.009274414891966872],[120,-31,75,0.00940123779200836],[120,-31,76,0.009519715210619133],[120,-31,77,0.009632954955379344],[120,-31,78,0.009744771204462883],[120,-31,79,0.00985932784051135],[120,-30,64,0.00831390611313442],[120,-30,65,0.008295825140849276],[120,-30,66,0.008391920385015973],[120,-30,67,0.008569020463537828],[120,-30,68,0.00879450933714656],[120,-30,69,0.009046932164205575],[120,-30,70,0.009309497193944692],[120,-30,71,0.009569426174162914],[120,-30,72,0.009817510881712952],[120,-30,73,0.010047680242645723],[120,-30,74,0.010256578571228327],[120,-30,75,0.010443155452907247],[120,-30,76,0.010608267788348356],[120,-30,77,0.010754294503929009],[120,-30,78,0.010884764418538435],[120,-30,79,0.011003997737370416],[120,-29,64,0.008579457529529926],[120,-29,65,0.008639689140743565],[120,-29,66,0.008820809434383368],[120,-29,67,0.009088819416536041],[120,-29,68,0.009408825828197452],[120,-29,69,0.00975636208704106],[120,-29,70,0.010111681569788634],[120,-29,71,0.01045921446423925],[120,-29,72,0.010787204788485109],[120,-29,73,0.011087345786252423],[120,-29,74,0.011354414099831558],[120,-29,75,0.011585903137069645],[120,-29,76,0.011781656060777267],[120,-29,77,0.01185737836684084],[120,-29,78,0.011729629934227648],[120,-29,79,0.011626429926103925],[120,-28,64,0.009033556164818908],[120,-28,65,0.00916894919629063],[120,-28,66,0.009430281770211367],[120,-28,67,0.009783037494359052],[120,-28,68,0.01019011239390352],[120,-28,69,0.010623892410720471],[120,-28,70,0.011061605165654116],[120,-28,71,0.011484881557040576],[120,-28,72,0.011879465346537119],[120,-28,73,0.011563355075586415],[120,-28,74,0.0112610423143702],[120,-28,75,0.011007340198343166],[120,-28,76,0.010803234059035185],[120,-28,77,0.010647248511315446],[120,-28,78,0.010535814536255317],[120,-28,79,0.0104636479498879],[120,-27,64,0.00966932069322448],[120,-27,65,0.00987452871610317],[120,-27,66,0.010208978214989907],[120,-27,67,0.010637896144733816],[120,-27,68,0.011122046970863142],[120,-27,69,0.011630598339342088],[120,-27,70,0.011663442169001906],[120,-27,71,0.011188125647550413],[120,-27,72,0.010750644011161652],[120,-27,73,0.010363427133178196],[120,-27,74,0.010034973600471123],[120,-27,75,0.00977015388451307],[120,-27,76,0.00957053776540108],[120,-27,77,0.00943474564198815],[120,-27,78,0.009358823316128969],[120,-27,79,0.009336639797867127],[120,-26,64,0.01047051271335151],[120,-26,65,0.010737898094065609],[120,-26,66,0.011136070053318452],[120,-26,67,0.011630182277008714],[120,-26,68,0.011636996467939543],[120,-26,69,0.011078023412518042],[120,-26,70,0.010525850176774553],[120,-26,71,0.010004170381593984],[120,-26,72,0.009531812209588337],[120,-26,73,0.009122954528368955],[120,-26,74,0.008787378435346382],[120,-26,75,0.008530753992861314],[120,-26,76,0.008354961852534823],[120,-26,77,0.008258449400686813],[120,-26,78,0.008236620993257948],[120,-26,79,0.008282261789625666],[120,-25,64,0.011410450874616646],[120,-25,65,0.011730040346290419],[120,-25,66,0.011653609393096532],[120,-25,67,0.011119130755891512],[120,-25,68,0.010530736905845411],[120,-25,69,0.00992556623693],[120,-25,70,0.00933512212329813],[120,-25,71,0.008785451713377407],[120,-25,72,0.008297294437616962],[120,-25,73,0.007886275349005245],[120,-25,74,0.007563143160985771],[120,-25,75,0.007334052758774393],[120,-25,76,0.00720089187355594],[120,-25,77,0.007161651525560797],[120,-25,78,0.007210839762519076],[120,-25,79,0.007339938145376941],[120,-24,64,0.011402604996557649],[120,-24,65,0.011054253775036882],[120,-24,66,0.010575678352913532],[120,-24,67,0.010001683359415295],[120,-24,68,0.009377313158529644],[120,-24,69,0.008742610801605502],[120,-24,70,0.008131590387542575],[120,-24,71,0.007572359426220552],[120,-24,72,0.007087250481165278],[120,-24,73,0.006693005565338425],[120,-24,74,0.006401013151121779],[120,-24,75,0.006217597552240478],[120,-24,76,0.006144360334313688],[120,-24,77,0.006178573313031561],[120,-24,78,0.006313622605714091],[120,-24,79,0.006539503114277781],[120,-23,64,0.010348415006247731],[120,-23,65,0.00996595214555297],[120,-23,66,0.009456739460576463],[120,-23,67,0.008855453354268347],[120,-23,68,0.008208743484981339],[120,-23,69,0.007559304894295279],[120,-23,70,0.006943385934835714],[120,-23,71,0.006390864522571923],[120,-23,72,0.005925372554498079],[120,-23,73,0.0055644800665587335],[120,-23,74,0.005319938970275053],[120,-23,75,0.0051979860898922325],[120,-23,76,0.005199705107787914],[120,-23,77,0.005321446915583753],[120,-23,78,0.005555307763105845],[120,-23,79,0.0058896644982506415],[120,-22,64,0.009269442539314731],[120,-22,65,0.008859717640247582],[120,-22,66,0.008328450468005321],[120,-22,67,0.007710035283311526],[120,-22,68,0.007052440862728094],[120,-22,69,0.006400715368167453],[120,-22,70,0.005793050704092434],[120,-22,71,0.005260817074020865],[120,-22,72,0.004828684216807089],[120,-22,73,0.004514808851090388],[120,-22,74,0.004331088132566365],[120,-22,75,0.004283478799579334],[120,-22,76,0.0043723815562824505],[120,-22,77,0.004593090120617762],[120,-22,78,0.004936304247980058],[120,-22,79,0.005388705931982298],[120,-21,64,0.008198950841010907],[120,-21,65,0.007766643433291869],[120,-21,66,0.00721965760382771],[120,-21,67,0.006591908852492761],[120,-21,68,0.005932343068079095],[120,-21,69,0.005288026530521306],[120,-21,70,0.004698798165784488],[120,-21,71,0.004197261243945507],[120,-21,72,0.0038089000703575206],[120,-21,73,0.003552269239387501],[120,-21,74,0.0034392552175410668],[120,-21,75,0.00347540988124925],[120,-21,76,0.0036603554963375324],[120,-21,77,0.003988260492696919],[120,-21,78,0.004448385260410702],[120,-21,79,0.005025697074020403],[120,-20,64,0.007168802409718598],[120,-20,65,0.006716203611966421],[120,-20,66,0.006157276801285213],[120,-20,67,0.005525233413354215],[120,-20,68,0.004869615411014175],[120,-20,69,0.004239148761334873],[120,-20,70,0.0036750283022464157],[120,-20,71,0.0032108600057838537],[120,-20,72,0.0028727664284997284],[120,-20,73,0.0026795713754642157],[120,-20,74,0.0026430635093759695],[120,-20,75,0.0027683384818175034],[120,-20,76,0.0030542190128565994],[120,-20,77,0.003493752199610472],[120,-20,78,0.004074783195666964],[120,-20,79,0.004780604272990051],[120,-19,64,0.006210509766012425],[120,-19,65,0.005737225997194925],[120,-19,66,0.005167184048435106],[120,-19,67,0.004532649921797324],[120,-19,68,0.003883359054949716],[120,-19,69,0.0032693303959472316],[120,-19,70,0.0027328429610912314],[120,-19,71,0.0023083166735272964],[120,-19,72,0.002022394502500419],[120,-19,73,0.001894111191499897],[120,-19,74,0.001935148280269792],[120,-19,75,0.0021501749568611857],[120,-19,76,0.0025372741110951964],[120,-19,77,0.003088452801715046],[120,-19,78,0.0037902361978879836],[120,-19,79,0.004624343913313333],[120,-18,64,0.005356300028079819],[120,-18,65,0.004858877400395445],[120,-18,66,0.004275116597110679],[120,-18,67,0.0036360920238241168],[120,-18,68,0.0029913264789556545],[120,-18,69,0.0023917743283061836],[120,-18,70,0.0018805629302473452],[120,-18,71,0.0014927944809100754],[120,-18,72,0.001255587231244886],[120,-18,73,0.0011882118512378866],[120,-18,74,0.0013023226343851846],[120,-18,75,0.0016022830501539074],[120,-18,76,0.002085584971053319],[120,-18,77,0.0027433607259766384],[120,-18,78,0.0035609869645701173],[120,-18,79,0.004518779160445739],[120,-17,64,0.00462631039642146],[120,-17,65,0.004098890727712588],[120,-17,66,0.003496128886326691],[120,-17,67,0.0028476707217159653],[120,-17,68,0.002202425681781516],[120,-17,69,0.0016119339998048054],[120,-17,70,0.0011199611592778956],[120,-17,71,7.621995167875206E-4],[120,-17,72,5.662472279629546E-4],[120,-17,73,5.516923866378717E-4],[120,-17,74,7.30302076680586E-4],[120,-17,75,0.0011063158310220737],[120,-17,76,0.0016768427919674057],[120,-17,77,0.0024323616729505096],[120,-17,78,0.003357322436587684],[120,-17,79,0.004430848429294838],[120,-16,64,0.003991144306487239],[120,-16,65,0.0034294507814071782],[120,-16,66,0.0028043734238923064],[120,-16,67,0.0021439214330856438],[120,-16,68,0.0014959724931555953],[120,-16,69,9.12247988724406E-4],[120,-16,70,4.368706780523216E-4],[120,-16,71,1.0594964253588622E-4],[120,-16,72,-5.25204104249517E-5],[120,-16,73,-1.8643404319600957E-5],[120,-16,74,2.195100089669604E-4],[120,-16,75,6.661500032412517E-4],[120,-16,76,0.0013181300536034856],[120,-16,77,0.0021654233880770094],[120,-16,78,0.003191712263546287],[120,-16,79,0.004375088719535472],[120,-15,64,0.0034191197502984223],[120,-15,65,0.002821164144040246],[120,-15,66,0.002173126485383938],[120,-15,67,0.0015011985936822518],[120,-15,68,8.517906521237614E-4],[120,-15,69,2.76342421498775E-4],[120,-15,70,-1.8102504809695943E-4],[120,-15,71,-4.8405139983166224E-4],[120,-15,72,-6.045292776058651E-4],[120,-15,73,-5.223682996407819E-4],[120,-15,74,-2.2553095163552553E-4],[120,-15,75,2.9015909646688213E-4],[120,-15,76,0.0010213355002958613],[120,-15,77,0.001957533589110481],[120,-15,78,0.0030817593349716254],[120,-15,79,0.004371181509393151],[120,-14,64,0.002889089915384914],[120,-14,65,0.002254803202049046],[120,-14,66,0.0015852711134335575],[120,-14,67,9.047093045062258E-4],[120,-14,68,2.5761736041380896E-4],[120,-14,69,-3.0534953028507123E-4],[120,-14,70,-7.404877405041627E-4],[120,-14,71,-0.0010117189995666118],[120,-14,72,-0.001090881678781916],[120,-14,73,-9.57881644353649E-4],[120,-14,74,-6.00702900131283E-4],[120,-14,75,-1.527851778460298E-5],[120,-14,76,7.947773779611078E-4],[120,-14,77,0.001818575538943674],[120,-14,78,0.0030384941558407232],[120,-14,79,0.004430856531886393],[120,-13,64,0.002388409064924465],[120,-13,65,0.0017193076430376559],[120,-13,66,0.0010313638382774158],[120,-13,67,3.46676300749802E-4],[120,-13,68,-2.926059454580934E-4],[120,-13,69,-8.371374617655409E-4],[120,-13,70,-0.0012440839575634701],[120,-13,71,-0.0014779281359208565],[120,-13,72,-0.0015108633357677499],[120,-13,73,-0.0013230348633924405],[120,-13,74,-9.026292042577889E-4],[120,-13,75,-2.4581160571347544E-4],[120,-13,76,6.434871844625427E-4],[120,-13,77,0.0017539339524116316],[120,-13,78,0.003067304478742537],[120,-13,79,0.004559141817097208],[120,-12,64,0.0019110733922532146],[120,-12,65,0.0012099584807213654],[120,-12,66,5.078697297824584E-4],[120,-12,67,-1.7533687297225693E-4],[120,-12,68,-8.002889431607341E-4],[120,-12,69,-0.0013194804842867475],[120,-12,70,-0.0016914151540761728],[120,-12,71,-0.001881540423867077],[120,-12,72,-0.0018627435125717039],[120,-12,73,-0.00161568374063377],[120,-12,74,-0.001128961464850708],[120,-12,75,-3.9912407828707436E-4],[120,-12,76,5.694901225909675E-4],[120,-12,77,0.0017650690919478516],[120,-12,78,0.003168803800234636],[120,-12,79,0.004755522918728565],[120,-11,64,0.0014560372301993163],[120,-11,65,7.267249072489323E-4],[120,-11,66,1.5566022350465218E-5],[120,-11,67,-6.599382727293129E-4],[120,-11,68,-0.0012635936956621136],[120,-11,69,-0.001750250702521237],[120,-11,70,-0.0020802179099624583],[120,-11,71,-0.00222031745979224],[120,-11,72,-0.0021444802093309482],[120,-11,73,-0.001834167028794479],[120,-11,74,-0.001278616338936472],[120,-11,75,-4.749183679057243E-4],[120,-11,76,5.720830537280132E-4],[120,-11,77,0.001850060009673283],[120,-11,78,0.0033396398572326917],[120,-11,79,0.0050150126566538295],[120,-10,64,0.0010257056634683413],[120,-10,65,2.7278493225358334E-4],[120,-10,66,-4.418848029477615E-4],[120,-10,67,-0.0011032567250898549],[120,-10,68,-0.0016786810635271861],[120,-10,69,-0.0021258526725577947],[120,-10,70,-0.0024073336075824225],[120,-10,71,-0.002491719764662769],[120,-10,72,-0.0023543297323599523],[120,-10,73,-0.001977710699182785],[120,-10,74,-0.0013519615252804275],[120,-10,75,-4.748734530048116E-4],[120,-10,76,6.481107090342194E-4],[120,-10,77,0.002004117743064503],[120,-10,78,0.0035732439970334044],[120,-10,79,0.005329132332177944],[120,-9,64,6.246052191178815E-4],[120,-9,65,-1.467786121430281E-4],[120,-9,66,-8.591909899773275E-4],[120,-9,67,-0.001500126350272704],[120,-9,68,-0.0020408009298360564],[120,-9,69,-0.002442197589463278],[120,-9,70,-0.0026695463846988037],[120,-9,71,-0.002693590232226124],[120,-9,72,-0.0024913596296923892],[120,-9,73,-0.002046756902098369],[120,-9,74,-0.0013509500618643685],[120,-9,75,-4.025767532906077E-4],[120,-9,76,7.92240870542618E-4],[120,-9,77,0.0022200691227248857],[120,-9,78,0.0038605220391946873],[120,-9,79,0.0056868050095612915],[120,-8,64,2.582348917232122E-4],[120,-8,65,-5.261045452396239E-4],[120,-8,66,-0.00123051448154934],[120,-8,67,-0.0018451044919801335],[120,-8,68,-0.002345224399708839],[120,-8,69,-0.00269553048339587],[120,-8,70,-0.0028642877700062086],[120,-8,71,-0.0028247206281971343],[120,-8,72,-0.002555863687160088],[120,-8,73,-0.002043216489806931],[120,-8,74,-0.0012792019487428846],[120,-8,75,-2.634290715195345E-4],[120,-8,76,9.972391868482214E-4],[120,-8,77,0.0024888117046522142],[120,-8,78,0.004190487000348451],[120,-8,79,0.006075161108069581],[120,-7,64,-6.789970817974215E-5],[120,-7,65,-8.594996077663851E-4],[120,-7,66,-0.0015503783287381947],[120,-7,67,-0.002133320611447439],[120,-7,68,-0.002588015668931457],[120,-7,69,-0.002883108272837054],[120,-7,70,-0.002990206023360696],[120,-7,71,-0.0028852993558979474],[120,-7,72,-0.002549677412121944],[120,-7,73,-0.001970643756317066],[120,-7,74,-0.0011420319892104468],[120,-7,75,-6.452172043561146E-5],[120,-7,76,0.0012542442371635233],[120,-7,77,0.0027997401964435847],[120,-7,78,0.004550833815493758],[120,-7,79,0.006480256215514683],[120,-6,64,-3.490658157710873E-4],[120,-6,65,-0.0011422013700703568],[120,-6,66,-0.0018143955034008316],[120,-6,67,-0.0023611532559671728],[120,-6,68,-0.002766640834500549],[120,-6,69,-0.003003726135509841],[120,-6,70,-0.0030475978566259047],[120,-6,71,-0.002877238407337943],[120,-6,72,-0.00247639219283144],[120,-6,73,-0.0018343318735421713],[120,-6,74,-9.464226385038713E-4],[120,-6,75,1.8551505364032078E-4],[120,-6,76,0.0015530434033424166],[120,-6,77,0.0031411446077788123],[120,-6,78,0.0049284559627989395],[120,-6,79,0.006887700719050177],[120,-5,64,-5.818928975984644E-4],[120,-5,65,-0.0013709542024283544],[120,-5,66,-0.0020198156718711823],[120,-5,67,-0.0025267318175755307],[120,-5,68,-0.0028804105480018513],[120,-5,69,-0.0030580893157436738],[120,-5,70,-0.00303869990674937],[120,-5,71,-0.002804377159167755],[120,-5,72,-0.0023414661135708927],[120,-5,73,-0.001641327353757959],[120,-5,74,-7.009405636953589E-4],[120,-5,75,4.766932553407343E-4],[120,-5,76,0.0018823500520621541],[120,-5,77,0.0035005802209962236],[120,-5,78,0.005309903684885626],[120,-5,79,0.00728320055408249],[120,-4,64,-7.647679185476226E-4],[120,-4,65,-0.0015443943748130841],[120,-4,66,-0.0021658861373517525],[120,-4,67,-0.0026302594599483206],[120,-4,68,-0.0029307530946176183],[120,-4,69,-0.0030490271951671873],[120,-4,70,-0.0029678370736861263],[120,-4,71,-0.002672560453299074],[120,-4,72,-0.0021522292315854187],[120,-4,73,-0.001400361745525444],[120,-4,74,-4.155955523557275E-4],[120,-4,75,7.978788423746735E-4],[120,-4,76,0.0022300824686827315],[120,-4,77,0.0038652093483317815],[120,-4,78,0.005681783299435957],[120,-4,79,0.007653008099770802],[120,-3,64,-8.980321586669319E-4],[120,-3,65,-0.001663240062903092],[120,-3,66,-0.0022540228720279816],[120,-3,67,-0.002674153315165854],[120,-3,68,-0.002921314220322567],[120,-3,69,-0.002981546215470988],[120,-3,70,-0.0028414246255555574],[120,-3,71,-0.002489588225283755],[120,-3,72,-0.0019177809840620267],[120,-3,73,-0.0011216986764262934],[120,-3,74,-1.0164036235857818E-4],[120,-3,75,0.0011370348471536407],[120,-3,76,0.002583644920379353],[120,-3,77,0.00422211471917976],[120,-3,78,0.00603109690726232],[120,-3,79,0.007984282001993403],[120,-2,64,-9.839750319935202E-4],[120,-2,65,-0.0017302818173406723],[120,-2,66,-0.0022877873419360657],[120,-2,67,-0.0026629978412527062],[120,-2,68,-0.00285787983163901],[120,-2,69,-0.002862718061462666],[120,-2,70,-0.002667820815474036],[120,-2,71,-0.0022650338128890604],[120,-2,72,-0.0016487772945196755],[120,-2,73,-8.168942930883839E-4],[120,-2,74,2.2868991773537475E-4],[120,-2,75,0.0014814967992635587],[120,-2,76,0.002930211158954084],[120,-2,77,0.00455858422429331],[120,-2,78,0.006345521638229399],[120,-2,79,0.008265354484166114],[120,-1,64,-0.0010266202204004104],[120,-1,65,-0.0017501689089718692],[120,-1,66,-0.0022726646827702767],[120,-1,67,-0.002603307090759717],[120,-1,68,-0.002748117560430269],[120,-1,69,-0.002701399393690286],[120,-1,70,-0.002457026652439184],[120,-1,71,-0.0020099279958392387],[120,-1,72,-0.0013571048906421807],[120,-1,73,-4.984691191252011E-4],[120,-1,74,5.625004275076223E-4],[120,-1,75,0.001818281295833028],[120,-1,76,0.0032570106032896295],[120,-1,77,0.004862366634961945],[120,-1,78,0.006613627426201549],[120,-1,79,0.008485904515297408],[120,0,64,-0.001031299378508166],[120,0,65,-0.0017289868988732352],[120,0,66,-0.002215638717830543],[120,0,67,-0.0025030915746720147],[120,0,68,-0.0026011331249289294],[120,0,69,-0.0025077793665532165],[120,0,70,-0.002220229426097591],[120,0,71,-0.0017363057886213597],[120,0,72,-0.001055440332487972],[120,0,73,-1.7948935687856938E-4],[120,0,74,8.866224165930769E-4],[120,0,75,0.002134428518067204],[120,0,76,0.0035516173676976765],[120,0,77,0.005121897814646831],[120,0,78,0.006825032175074796],[120,0,79,0.00863703504553804],[120,1,64,-0.0010040098262311837],[120,1,65,-0.001673623686908912],[120,1,66,-0.002124561715350197],[120,1,67,-0.0023712280863271654],[120,1,68,-0.0024268401608206194],[120,1,69,-0.002292753761618328],[120,1,70,-0.0019691888191388568],[120,1,71,-0.0014566146716175072],[120,1,72,-7.566921340073411E-4],[120,1,73,1.26944441223032E-4],[120,1,74,0.001188065135345328],[120,1,75,0.0024173821429148866],[120,1,76,0.003802246494943849],[120,1,77,0.0053265028297293645],[120,1,78,0.006970500896598547],[120,1,79,0.008711262174766981],[120,2,64,-9.505537169335282E-4],[120,2,65,-0.0015909230530114133],[120,2,66,-0.0020073188494562893],[120,2,67,-0.002216632889297549],[120,2,68,-0.002235143925080878],[120,2,69,-0.0020671257337671906],[120,2,70,-0.001715464825349688],[120,2,71,-0.0011829823490178497],[120,2,72,-4.733226086300974E-4],[120,2,73,4.0830646569248635E-4],[120,2,74,0.0014545409183528337],[120,2,75,0.002655416145685848],[120,2,76,0.003998069436471288],[120,2,77,0.005466588753318097],[120,2,78,0.007042006535769691],[120,2,79,0.00870243702377998],[120,3,64,-8.75440609726249E-4],[120,3,65,-0.00148659909244629],[120,3,66,-0.0018707551801705276],[120,3,67,-0.0020472032525413043],[120,3,68,-0.002034903595157572],[120,3,69,-0.0018406001710964792],[120,3,70,-0.0014694592744656095],[120,3,71,-9.263231368859919E-4],[120,3,72,-2.165383117731213E-4],[120,3,73,6.533514576029104E-4],[120,3,74,0.0016750479193753107],[120,3,75,0.002838076277567199],[120,3,76,0.004129497880651912],[120,3,77,0.005533756790402605],[120,3,78,0.007032659113583166],[120,3,79,0.008605483719012236],[120,4,64,-7.805621714335399E-4],[120,4,65,-0.0013639287832023362],[120,4,66,-0.0017193886816812408],[120,4,67,-0.0018685550211464106],[120,4,68,-0.0018327029353577386],[120,4,69,-0.0016206013751719438],[120,4,70,-0.0012392983757307467],[120,4,71,-6.953057987733819E-4],[120,4,72,4.63504440503227E-6],[120,4,73,8.529106599106632E-4],[120,4,74,0.0018405155674220224],[120,4,75,0.002956655191356087],[120,4,76,0.004188470944979484],[120,4,77,0.0055208867453634515],[120,4,78,0.0069365759471056495],[120,4,79,0.008416047445277068],[120,5,64,-6.63634908932346E-4],[120,5,65,-0.0012222182976668644],[120,5,66,-0.0015539045128350687],[120,5,67,-0.0016825509104130023],[120,5,68,-0.0016314234899558724],[120,5,69,-0.0014109077382399643],[120,5,70,-0.0010295495766662393],[120,5,71,-4.951758954120396E-4],[120,5,72,1.8440018018738878E-4],[120,5,73,0.001000784717086925],[120,5,74,0.0019445191455048309],[120,5,75,0.0030047069746480235],[120,5,76,0.004168750611156995],[120,5,77,0.005422197602067385],[120,5,78,0.006748695397072436],[120,5,79,0.008130053509213218],[120,6,64,-5.164039107277319E-4],[120,6,65,-0.0010550346183546134],[120,6,66,-0.0013694211243901837],[120,6,67,-0.0014856095907269857],[120,6,68,-0.0014286102772496602],[120,6,69,-0.001210093753693596],[120,6,70,-8.397639096751056E-4],[120,6,71,-3.264251452821403E-4],[120,6,72,3.2136402624606433E-4],[120,6,73,0.0010947368975726148],[120,6,74,0.001984064076304993],[120,6,75,0.002978598426817623],[120,6,76,0.004066219066885934],[120,6,77,0.005233273826782286],[120,6,78,0.006464519372344327],[120,6,79,0.007743157997604323],[120,7,64,-3.210722667093444E-4],[120,7,65,-8.461289271976887E-4],[120,7,66,-0.00115097627221408],[120,7,67,-0.0012637851464217635],[120,7,68,-0.0012111428119238323],[120,7,69,-0.0010057753180673305],[120,7,70,-6.582729625243905E-4],[120,7,71,-1.7812001557482434E-4],[120,7,72,4.256889485376207E-4],[120,7,73,0.0011441225965088606],[120,7,74,0.0019676763560303842],[120,7,75,0.002886025804133426],[120,7,76,0.003887769615372367],[120,7,77,0.004960261565486719],[120,7,78,0.0060895308976201615],[120,7,79,0.007260290178746397],[120,8,64,-4.855025597771198E-5],[120,8,65,-5.655881997383563E-4],[120,8,66,-8.678031479314435E-4],[120,8,67,-9.852506154992757E-4],[120,8,68,-9.458617008589199E-4],[120,8,69,-7.632209598472591E-4],[120,8,70,-4.4858015930821665E-4],[120,8,71,-1.1861449606320702E-5],[120,8,72,5.377520251232916E-4],[120,8,73,0.0011913070759954647],[120,8,74,0.001939653115987385],[120,8,75,0.0027730964535349657],[120,8,76,0.0036811359972114144],[120,8,77,0.0046522799552743644],[120,8,78,0.005673942940053201],[120,8,79,0.006732422721442272],[120,9,64,3.2617860949412416E-4],[120,9,65,-1.8688080872658345E-4],[120,9,66,-4.918360429947793E-4],[120,9,67,-6.202007228249017E-4],[120,9,68,-6.009237686709837E-4],[120,9,69,-4.482590531184014E-4],[120,9,70,-1.7393029783737532E-4],[120,9,71,2.1188872096997198E-4],[120,9,72,7.000029958852252E-4],[120,9,73,0.0012816992847353886],[120,9,74,0.0019483234614519123],[120,9,75,0.002690932228530756],[120,9,76,0.0035000190273574523],[120,9,77,0.004365313816037384],[120,9,78,0.005275656223432903],[120,9,79,0.006218941434314038],[120,10,64,8.221480151362502E-4],[120,10,65,3.1048480227706773E-4],[120,10,66,-1.0474601009390576E-6],[120,10,67,-1.448567747610056E-4],[120,10,68,-1.505178311099787E-4],[120,10,69,-3.2775924577070216E-5],[120,10,70,1.963269405123937E-4],[120,10,71,5.26497678767962E-4],[120,10,72,9.486389716351184E-4],[120,10,73,0.001454363447858528],[120,10,74,0.002035575419450124],[120,10,75,0.002684120235923989],[120,10,76,0.0033915011619791223],[120,10,77,0.004148663529909861],[120,10,78,0.004945845769035577],[120,10,79,0.0057724967716830024],[120,11,64,0.001455079115151343],[120,11,65,9.43635532246203E-4],[120,11,66,6.232080766027969E-4],[120,11,67,4.611473011638765E-4],[120,11,68,4.276835467978476E-4],[120,11,69,5.077411182855338E-4],[120,11,70,6.890757437081438E-4],[120,11,71,9.613545408497651E-4],[120,11,72,0.0013156239765446521],[120,11,73,0.0017438384774521045],[120,11,74,0.0022384499515896643],[120,11,75,0.0027920583335800343],[120,11,76,0.0033971231223073944],[120,11,77,0.004045735738489703],[120,11,78,0.004729452392656946],[120,11,79,0.005439187022361045],[120,12,64,0.002240342008787984],[120,12,65,0.0017292959410611143],[120,12,66,0.0013991305310149665],[120,12,67,0.0012176500036861972],[120,12,68,0.0011553313485692246],[120,12,69,0.001196905003346699],[120,12,70,0.0013299996744313722],[120,12,71,0.0015442700322396837],[120,12,72,0.00183089297539438],[120,12,73,0.002182117624361313],[120,12,74,0.002590869331697064],[120,12,75,0.003050407864455122],[120,12,76,0.003554039784319911],[120,12,77,0.004094884923537502],[120,12,78,0.004665696730657581],[120,12,79,0.005258736140532792],[120,13,64,0.0031962139386106374],[120,13,65,0.0026870428134500657],[120,13,66,0.002347696315206007],[120,13,67,0.0021471232549227157],[120,13,68,0.002056470977050364],[120,13,69,0.002060378440155985],[120,13,70,0.002146377493935118],[120,13,71,0.0023040858721473877],[120,13,72,0.0025247426570889067],[120,13,73,0.0028007898823226517],[120,13,74,0.0031255005779133446],[120,13,75,0.003492653447549656],[120,13,76,0.0038962542532622],[120,13,77,0.004330303871652635],[120,13,78,0.004788612876459525],[120,13,79,0.005264662396791826],[120,14,64,0.004347440871366731],[120,14,65,0.0038428586175753066],[120,14,66,0.0034961722820839713],[120,14,67,0.0032781157927699945],[120,14,68,0.0031608829305681983],[120,14,69,0.0031290777356234806],[120,14,70,0.003170114869660077],[120,14,71,0.0032734989845447245],[120,14,72,0.0034304135558577455],[120,14,73,0.003633347123868943],[120,14,74,0.0038757572514317687],[120,14,75,0.00415177241341023],[120,14,76,0.004455931938060055],[120,14,77,0.004782964027837436],[120,14,78,0.005127601796062403],[120,14,79,0.005484437167443251],[120,15,64,0.00572990262946722],[120,15,65,0.005233600711724716],[120,15,66,0.004882279857996716],[120,15,67,0.004649008110982248],[120,15,68,0.004507334867860901],[120,15,69,0.0044418426229591535],[120,15,70,0.004439771203833636],[120,15,71,0.00449040611211492],[120,15,72,0.0045847364986520605],[120,15,73,0.004715140288928308],[120,15,74,0.004875096762720792],[120,15,75,0.00505892682120405],[120,15,76,0.0052615611040892],[120,15,77,0.0054783360493092575],[120,15,78,0.005704817918669185],[120,15,79,0.005936654745307166],[120,16,64,0.007382193001662705],[120,16,65,0.006898046993604538],[120,16,66,0.006544565259394872],[120,16,67,0.006297597437787922],[120,16,68,0.006132315560988517],[120,16,69,0.006033305727422554],[120,16,70,0.005987609402625587],[120,16,71,0.005984239165076664],[120,16,72,0.006013918233121272],[120,16,73,0.006068835497045161],[120,16,74,0.006142416347932891],[120,16,75,0.0062291095521017255],[120,16,76,0.006324190376603772],[120,16,77,0.006423580127695178],[120,16,78,0.006523682220526363],[120,16,79,0.006621234854919697],[120,17,64,0.009321008616605125],[120,17,65,0.00885288119210972],[120,17,66,0.008499389129057688],[120,17,67,0.00823951184564937],[120,17,68,0.008050276139956111],[120,17,69,0.007916321859442537],[120,17,70,0.007824514804784643],[120,17,71,0.007763603144389412],[120,17,72,0.007724046838425631],[120,17,73,0.007697849820349726],[120,17,74,0.007678395212066716],[120,17,75,0.007660283837030378],[120,17,76,0.0076391762825871725],[120,17,77,0.007611638748641631],[120,17,78,0.007574992904271235],[120,17,79,0.007527169957312819],[120,18,64,0.011540305632869294],[120,18,65,0.011092028319801626],[120,18,66,0.010740517976738214],[120,18,67,0.010468134393063815],[120,18,68,0.010253954655285032],[120,18,69,0.010082744887925288],[120,18,70,0.009941256714056995],[120,18,71,0.009818032852112099],[120,18,72,0.009703331262301029],[120,18,73,0.009589038494088386],[120,18,74,0.009468572494814611],[120,18,75,0.009336775161051086],[120,18,76,0.009189794933812378],[120,18,77,0.009024959756022027],[120,18,78,0.008840640725383264],[120,18,79,0.00863610678785191],[120,19,64,0.012984767864544675],[120,19,65,0.013389734289858601],[120,19,66,0.013242640235456635],[120,19,67,0.012958050903037822],[120,19,68,0.012717728706426353],[120,19,69,0.012506657906371284],[120,19,70,0.012311569108273763],[120,19,71,0.0121208982001728],[120,19,72,0.011924807006842366],[120,19,73,0.011715179077329312],[120,19,74,0.011485590851131607],[120,19,75,0.011231258504614521],[120,19,76,0.010948960832816167],[120,19,77,0.010636938571952925],[120,19,78,0.010294770614176378],[120,19,79,0.00992322760799289],[120,20,64,0.010382498417682124],[120,20,65,0.010760279688141847],[120,20,66,0.011080099397561622],[120,20,67,0.011352489399805796],[120,20,68,0.011593868758793596],[120,20,69,0.011818959611458039],[120,20,70,0.012040969153023719],[120,20,71,0.012271477227491289],[120,20,72,0.012520320049446351],[120,20,73,0.01279551307493195],[120,20,74,0.013103212788921525],[120,20,75,0.013306712340679983],[120,20,76,0.012880928773615111],[120,20,77,0.012413360273456575],[120,20,78,0.011904960072405265],[120,20,79,0.011358165034033594],[120,21,64,0.007620151045590635],[120,21,65,0.007967283045001312],[120,21,66,0.008279169922919391],[120,21,67,0.008562767509574113],[120,21,68,0.008832091116301668],[120,21,69,0.00910141738459365],[120,21,70,0.009383720428603425],[120,21,71,0.009690409336986621],[120,21,72,0.010031119296896257],[120,21,73,0.010413556071125313],[120,21,74,0.010843393606057182],[120,21,75,0.011324224420221395],[120,21,76,0.01185756230020952],[120,21,77,0.012442896713548283],[120,21,78,0.013077798237880233],[120,21,79,0.012905952135521048],[120,22,64,0.004760382955461576],[120,22,65,0.005073616566112677],[120,22,66,0.00537538102886501],[120,22,67,0.0056691616662872275],[120,22,68,0.005966532042544196],[120,22,69,0.0062811948006430765],[120,22,70,0.006625741965455408],[120,22,71,0.007011249049054036],[120,22,72,0.0074469785699214095],[120,22,73,0.007940150769386417],[120,22,74,0.008495781310452094],[120,22,75,0.009116585581253302],[120,22,76,0.009802949068322514],[120,22,77,0.010552963114960047],[120,22,78,0.011362525238601505],[120,22,79,0.012225503049494357],[120,23,64,0.001872096812880267],[120,23,65,0.0021484603124546616],[120,23,66,0.0024377951385130808],[120,23,67,0.0027402977021188327],[120,23,68,0.0030651018905233775],[120,23,69,0.0034252033346493754],[120,23,70,0.0038326561428411957],[120,23,71,0.004298033206856771],[120,23,72,0.004830048729466679],[120,23,73,0.005435261165255073],[120,23,74,0.0061178563649375295],[120,23,75,0.006879510516917935],[120,23,76,0.007719332290129948],[120,23,77,0.00863388340100736],[120,23,78,0.009617276656265251],[120,23,79,0.01066135036365797],[120,24,64,-9.724387786590689E-4],[120,24,65,-7.3557582778366E-4],[120,24,66,-4.610677175936924E-4],[120,24,67,-1.5175623602396135E-4],[120,24,68,1.9909416940541266E-4],[120,24,69,6.036385136754985E-4],[120,24,70,0.0010732355623959378],[120,24,71,0.0016177864830144136],[120,24,72,0.002245284345040534],[120,24,73,0.0029614563720327287],[120,24,74,0.00376949873891464],[120,24,75,0.004669903479976365],[120,24,76,0.005660376852661896],[120,24,77,0.0067358482917358065],[120,24,78,0.00788856888947237],[120,24,79,0.00910829815197481],[120,25,64,-0.0037003242060819],[120,25,65,-0.003505188393411442],[120,25,66,-0.003247948137803349],[120,25,67,-0.002934171462588882],[120,25,68,-0.0025594419726588536],[120,25,69,-0.002112575630654005],[120,25,70,-0.0015830632454996358],[120,25,71,-9.618391517443812E-4],[120,25,72,-2.4179567276790624E-4],[120,25,73,5.818064030968422E-4],[120,25,74,0.0015110311289716339],[120,25,75,0.002545064026642337],[120,25,76,0.0036801113246281584],[120,25,77,0.004909400859918658],[120,25,78,0.006223283471938412],[120,25,79,0.007609433508141049],[120,26,64,-0.0062406167724392584],[120,26,65,-0.006088972567147049],[120,26,66,-0.005851426046473053],[120,26,67,-0.005535907024571381],[120,26,68,-0.005140203394968237],[120,26,69,-0.004654225560266898],[120,26,70,-0.004068460587101576],[120,26,71,-0.0033748320963455872],[120,26,72,-0.002567268768422672],[120,26,73,-0.0016421589270576888],[120,26,74,-5.98691404986394E-4],[120,26,75,5.609168219110537E-4],[120,26,76,0.0018313054725504858],[120,26,77,0.0032039672502116577],[120,26,78,0.004667354316686604],[120,26,79,0.0062070934539944994],[120,27,64,-0.008526768996467458],[120,27,65,-0.008419867872151269],[120,27,66,-0.008204357540705604],[120,27,67,-0.007890122358937563],[120,27,68,-0.007477006864240931],[120,27,69,-0.00695612906859856],[120,27,70,-0.006319107527553357],[120,27,71,-0.00555899493343349],[120,27,72,-0.004670890126313052],[120,27,73,-0.003652427714372169],[120,27,74,-0.0025041455065085236],[120,27,75,-0.0012297302651193903],[120,27,76,1.6385741872831726E-4],[120,27,77,0.0016663780443453436],[120,27,78,0.0032644265656594142],[120,27,79,0.004941662604008452],[120,28,64,-0.01049891441381887],[120,28,65,-0.010437454609395432],[120,28,66,-0.010246167315201532],[120,28,67,-0.009936451965058319],[120,28,68,-0.009510033070910829],[120,28,69,-0.00895933609022473],[120,28,70,-0.008277231405527047],[120,28,71,-0.007458023161652282],[120,28,72,-0.006498093882135764],[120,28,73,-0.005396419818108477],[120,28,74,-0.004154957231854337],[120,28,75,-0.0027789001403726744],[120,28,76,-0.0012768103559398969],[120,28,77,3.39379041702001E-4],[120,28,78,0.002054485385861048],[120,28,79,0.0038503215786148777],[120,29,64,-0.012105997730996985],[120,29,65,-0.012090098012789494],[120,29,66,-0.011924993804540393],[120,29,67,-0.01162313942961943],[120,29,68,-0.011187938334136402],[120,29,69,-0.01061320732795717],[120,29,70,-0.009893171097855553],[120,29,71,-0.009023487352286755],[120,29,72,-0.008001913049090478],[120,29,73,-0.0068288361548455795],[120,29,74,-0.0055076731370260045],[120,29,75,-0.004045132727144492],[120,29,76,-0.0024513468179337057],[120,29,77,-7.398696677092901E-4],[120,29,78,0.0010724531223026104],[120,29,79,0.0029657441194446636],[120,30,64,-0.013307745885141742],[120,30,65,-0.013336936793135292],[120,30,66,-0.013199683871091166],[120,30,67,-0.012909027827975731],[120,30,68,-0.012469831255173095],[120,30,69,-0.011877368234752165],[120,30,70,-0.011127299891479061],[120,30,71,-0.01021671694837994],[120,30,72,-0.009144816775658043],[120,30,73,-0.007913442482600844],[120,30,74,-0.006527484252068365],[120,30,75,-0.004995143463662806],[120,30,76,-0.003328060485496599],[120,30,77,-0.0015413073329387812],[120,30,78,3.4675330694798314E-4],[120,30,79,0.0023147409071799232],[120,31,64,-0.014076476250506434],[120,31,65,-0.014149712421216218],[120,31,66,-0.014041633540318036],[120,31,67,-0.013765403196727005],[120,31,68,-0.013327111249996759],[120,31,69,-0.012723535563009746],[120,31,70,-0.011951833503128718],[120,31,71,-0.011010583619526896],[120,31,72,-0.009900463263042092],[120,31,73,-0.008624786455913592],[120,31,74,-0.0071899022086860335],[120,31,75,-0.0056054538331722446],[120,31,76,-0.0038845001389065125],[120,31,77,-0.002043499723282826],[120,31,78,-1.021598697374564E-4],[120,31,79,0.001916848148964318],[120,32,64,-0.014398737911989624],[120,32,65,-0.014514435170925597],[120,32,66,-0.014436470949676207],[120,32,67,-0.014177687433473385],[120,32,68,-0.013745165553162556],[120,32,69,-0.01313721335838953],[120,32,70,-0.012352520459006486],[120,32,71,-0.011391181768732656],[120,32,72,-0.010255366369095525],[120,32,73,-0.008949846451262499],[120,32,74,-0.007482386529729754],[120,32,75,-0.005863993474341083],[120,32,76,-0.004109028246311463],[120,32,77,-0.002235180547103771],[120,32,78,-2.633078933167568E-4],[120,32,79,0.0017828590866952347],[120,33,64,-0.014276781603371662],[120,33,65,-0.01443288261121291],[120,33,66,-0.014385577338469345],[120,33,67,-0.014146976637043148],[120,33,68,-0.013724920941470433],[120,33,69,-0.01311925493454955],[120,33,70,-0.012330211712434301],[120,33,71,-0.011359403463828464],[120,33,72,-0.010210473616150543],[120,33,73,-0.00888961037141824],[120,33,74,-0.007405921821059517],[120,33,75,-0.005771673178406681],[120,33,76,-0.004002387003774635],[120,33,77,-0.0021168076170573623],[120,33,78,-1.3673119387478267E-4],[120,33,79,0.0019132966794028687],[120,34,64,-0.013729853588448089],[120,34,65,-0.013923925906284473],[120,34,66,-0.013907441569421834],[120,34,67,-0.01369142056033938],[120,34,68,-0.013284246083302637],[120,34,69,-0.012687287024252111],[120,34,70,-0.011902306041809144],[120,34,71,-0.010932404739433037],[120,34,72,-0.009782653006733897],[120,34,73,-0.008460582340964862],[120,34,74,-0.006976543330952034],[120,34,75,-0.005343927828991709],[120,34,76,-0.00357925666614213],[120,34,77,-0.001702134080192272],[120,34,78,2.649296793759054E-4],[120,34,79,0.002296825831734466],[120,35,64,-0.012795308452252612],[120,35,65,-0.013024678962148135],[120,35,66,-0.013038843343480768],[120,35,67,-0.012847438513418215],[120,35,68,-0.012459200082469708],[120,35,69,-0.011876991965863304],[120,35,70,-0.011104067438774377],[120,35,71,-0.010144959890602137],[120,35,72,-0.009006085737626963],[120,35,73,-0.0076962149068283804],[120,35,74,-0.006226809062740346],[120,35,75,-0.004612228083636746],[120,35,76,-0.002869805614530398],[120,35,77,-0.0010197948298253127],[120,35,78,9.148141747320075E-4],[120,35,79,0.00290860367567168],[120,36,64,-0.011529535471820633],[120,36,65,-0.01179146514905149],[120,36,66,-0.011835859952290763],[120,36,67,-0.011670766731207385],[120,36,68,-0.011305122458647664],[120,36,69,-0.010743243456838395],[120,36,70,-0.009989810371528202],[120,36,71,-0.009050700060101561],[120,36,72,-0.007933561592791568],[120,36,73,-0.006648264060551036],[120,36,74,-0.005207216345686789],[120,36,75,-0.003625559335317344],[120,36,76,-0.001921231368691724],[120,36,77,-1.1490800487155138E-4],[120,36,78,0.0017701825254076424],[120,36,79,0.003708566563413243],[120,37,64,-0.010008692955911625],[120,37,65,-0.010300596038101758],[120,37,66,-0.010374691112330475],[120,37,67,-0.010237331912789405],[120,37,68,-0.009897559494304207],[120,37,69,-0.009361091091486673],[120,37,70,-0.00863394849460419],[120,37,71,-0.007723232111400494],[120,37,72,-0.006637673492786189],[120,37,73,-0.005388064106390483],[120,37,74,-0.0039875604899921955],[120,37,75,-0.0024518662299558066],[120,37,76,-7.992915102515574E-4],[120,37,77,9.493087370169856E-4],[120,37,78,0.0027707167809728644],[120,37,79,0.004639652595203112],[120,38,64,-0.008326807241026777],[120,38,65,-0.008646467958401073],[120,38,66,-0.008749766519561821],[120,38,67,-0.008641377959104387],[120,38,68,-0.008330418103003636],[120,38,69,-0.007823952941867305],[120,38,70,-0.007129240637920722],[120,38,71,-0.006254455189228648],[120,38,72,-0.00520922359835156],[120,38,73,-0.004005043424769826],[120,38,74,-0.002655580816601562],[120,38,75,-0.0011768494204540422],[120,38,76,4.1272914071860894E-4],[120,38,77,0.0020923822555044755],[120,38,78,0.0038391595521788903],[120,38,79,0.005628220902038463],[120,39,64,-0.006542760644619784],[120,39,65,-0.0068875123998209135],[120,39,66,-0.007018864856573639],[120,39,67,-0.006939832928986477],[120,39,68,-0.006659620568822925],[120,39,69,-0.006186641472531989],[120,39,70,-0.00552932124438657],[120,39,71,-0.004696780519338256],[120,39,72,-0.0036993675762282026],[120,39,73,-0.0025490749181405975],[120,39,74,-0.0012598398633371032],[120,39,75,1.5227051448601215E-4],[120,39,76,0.0016689894744406227],[120,39,77,0.0032698948337549242],[120,39,78,0.004932566186030505],[120,39,79,0.006632853734692756],[120,40,64,-0.004673670122625826],[120,40,65,-0.00503959839231898],[120,40,66,-0.0051965275625945094],[120,40,67,-0.0051457358240278046],[120,40,68,-0.004896537010800006],[120,40,69,-0.004458773392967553],[120,40,70,-0.0038420446894115107],[120,40,71,-0.003056358482670837],[120,40,72,-0.002112668906731917],[120,40,73,-0.0010233023968201757],[120,40,74,1.977295238013004E-4],[120,40,75,0.0015345301560898237],[120,40,76,0.002969229695083713],[120,40,77,0.004482008652056043],[120,40,78,0.00605123157578686],[120,40,79,0.007653689790313261],[120,41,64,-0.0027401939667926747],[120,41,65,-0.0031224106689923337],[120,41,66,-0.003301317115325865],[120,41,67,-0.0032763132005388415],[120,41,68,-0.0030568522461177526],[120,41,69,-0.002654346231321225],[120,41,70,-0.0020796352407355338],[120,41,71,-0.0013436109776718817],[120,41,72,-4.577713817647973E-4],[120,41,73,5.653350051011551E-4],[120,41,74,0.0017117750339439913],[120,41,75,0.002966007130341657],[120,41,76,0.004310767214954004],[120,41,77,0.00572706365531192],[120,41,78,0.00719428029669359],[120,41,79,0.00869038639305478],[120,42,64,-7.6546939334136E-4],[120,42,65,-0.0011584604725691505],[120,42,66,-0.0013549128567559496],[120,42,67,-0.0013521732787086743],[120,42,68,-0.00115987337747698],[120,42,69,-7.911759791276342E-4],[120,42,70,-2.582714932040046E-4],[120,42,71,4.270215210499466E-4],[120,42,72,0.0012526771449321798],[120,42,73,0.002205990777837539],[120,42,74,0.0032732159106907406],[120,42,75,0.004439308923620148],[120,42,76,0.005687781566410776],[120,42,77,0.007000660522968612],[120,42,78,0.008358553218448327],[120,42,79,0.009740818802149982],[120,43,64,0.0012283554210271422],[120,43,65,8.303513666907929E-4],[120,43,66,6.21272551459086E-4],[120,43,67,6.06005605969089E-4],[120,43,68,7.746905860179552E-4],[120,43,69,0.0011122094221047414],[120,43,70,0.0016048811714544893],[120,43,71,0.0022398821355215366],[120,43,72,0.0030046349208386882],[120,43,73,0.0038863032472061542],[120,43,74,0.004871392823778928],[120,43,75,0.005945458336317102],[120,43,76,0.007092916321370668],[120,43,77,0.008296963447570846],[120,43,78,0.009539599482645801],[120,43,79,0.010801753999533818],[120,44,64,0.0032238278776278444],[120,44,65,0.0028264059775255338],[120,44,66,0.0026097057590821035],[120,44,67,0.0025810079446028033],[120,44,68,0.002730160450235488],[120,44,69,0.0030398756120017215],[120,44,70,0.0034948226873946437],[120,44,71,0.0040810679244854195],[120,44,72,0.004785426521579716],[120,44,73,0.005594918305404797],[120,44,74,0.006496327570830764],[120,44,75,0.0074758672502225395],[120,44,76,0.00851894731480211],[120,44,77,0.009610047055916658],[120,44,78,0.010732690652956277],[120,44,79,0.011869525209067205],[120,45,64,0.005212140783511678],[120,45,65,0.004820277382242276],[120,45,66,0.004600579220169235],[120,45,67,0.004562840124000801],[120,45,68,0.004696534531356309],[120,45,69,0.004981990828035043],[120,45,70,0.005402059212765142],[120,45,71,0.0059415723486104825],[120,45,72,0.006586656757412223],[120,45,73,0.007324145881403055],[120,45,74,0.008141095385247665],[120,45,75,0.009024400999132709],[120,45,76,0.009960518939440919],[120,45,77,0.010935288689992802],[120,45,78,0.011933857685869662],[120,45,79,0.012940707215623194],[120,46,64,0.007197329853531548],[120,46,65,0.006814887257066575],[120,46,66,0.006595896002846404],[120,46,67,0.0065527200437300965],[120,46,68,0.006674356652256017],[120,46,69,0.006938542581223846],[120,46,70,0.007326136803376586],[120,46,71,0.007820603550005524],[120,46,72,0.008407281622249211],[120,46,73,0.009072753136368093],[120,46,74,0.00980431241161734],[120,46,75,0.010589535439349004],[120,46,76,0.011415950109837784],[120,46,77,0.012270807120987997],[120,46,78,0.013140951252525814],[120,46,79,0.014012792462648178],[120,47,64,0.00918363870917397],[120,47,65,0.00881321033644005],[120,47,66,0.008597540875988734],[120,47,67,0.008551550032033622],[120,47,68,0.008663633205784735],[120,47,69,0.008908743515710922],[120,47,70,0.009265582255399722],[120,47,71,0.009716107036746784],[120,47,72,0.010244759374296952],[120,47,73,0.010837789139590956],[120,47,74,0.011482676731803138],[120,47,75,0.012167653544413574],[120,47,76,0.012881321048243213],[120,47,77,0.013612368560778208],[120,47,78,0.014349389532240447],[120,47,79,0.014348493524803064],[120,48,64,0.011123394903357986],[120,48,65,0.010767420906617494],[120,48,66,0.01055785394613159],[120,48,67,0.010512107837727781],[120,48,68,0.010617856180710691],[120,48,69,0.0108471170212461],[120,48,70,0.011176291734664334],[120,48,71,0.011585701461053814],[120,48,72,0.012058775009233778],[120,48,73,0.012581330733101836],[120,48,74,0.01314095336282928],[120,48,75,0.013726466511197731],[120,48,76,0.014327501319563826],[120,48,77,0.014678452410824742],[120,48,78,0.014045103047202618],[120,48,79,0.013423420748679063],[120,49,64,0.01296188161767678],[120,49,65,0.012622849365598985],[120,49,66,0.012422532443896014],[120,49,67,0.012380734279290283],[120,49,68,0.012484299286551778],[120,49,69,0.01270220928237675],[120,49,70,0.013008456761015478],[120,49,71,0.013381612939878646],[120,49,72,0.013803979476497414],[120,49,73,0.014260830970948855],[120,49,74,0.014739749367255963],[120,49,75,0.014553917850596206],[120,49,76,0.014036143188358231],[120,49,77,0.013522883567243717],[120,49,78,0.013022188645544825],[120,49,79,0.012541732270874998],[120,50,64,0.014653553963566315],[120,50,65,0.014333863558829988],[120,50,66,0.014146125116454175],[120,50,67,0.01411238321771586],[120,50,68,0.01421855928419245],[120,50,69,0.014430550688611087],[120,50,70,0.014719869590447366],[120,50,71,0.014912251705088139],[120,50,72,0.014518390790050722],[120,50,73,0.014102454204880044],[120,50,74,0.013677042175336473],[120,50,75,0.013252530716334053],[120,50,76,0.012837595609546936],[120,50,77,0.01243964555929511],[120,50,78,0.0120651642579076],[120,50,79,0.011719961312789996],[120,51,64,0.013954414305698977],[120,51,65,0.014256141880822002],[120,51,66,0.014428888618253819],[120,51,67,0.014448593849950777],[120,51,68,0.014330375427911685],[120,51,69,0.01411145492364534],[120,51,70,0.013822874789249378],[120,51,71,0.013489857905290363],[120,51,72,0.013132713300677737],[120,51,73,0.012767658114013083],[120,51,74,0.012407554448634022],[120,51,75,0.01206256001754199],[120,51,76,0.011740691714236567],[120,51,77,0.011448301479566101],[120,51,78,0.011190464061385998],[120,51,79,0.010971276481306774],[120,52,64,0.012759130824058107],[120,52,65,0.013038733493611314],[120,52,66,0.013193658970690011],[120,52,67,0.013198024689621612],[120,52,68,0.013068013767891585],[120,52,69,0.012843868396425056],[120,52,70,0.012559133057770148],[120,52,71,0.012240974051708299],[120,52,72,0.011911104796313424],[120,52,73,0.011586631088245838],[120,52,74,0.01128081487613436],[120,52,75,0.011003755337371763],[120,52,76,0.010762986281655172],[120,52,77,0.010563989132605681],[120,52,78,0.010410620960224352],[120,52,79,0.010305457250066026],[120,53,64,0.011792567298478114],[120,53,65,0.012048541539931866],[120,53,66,0.012182726723727548],[120,53,67,0.012167678724197682],[120,53,68,0.01202069206527592],[120,53,69,0.011784920921814396],[120,53,70,0.011496361421269188],[120,53,71,0.011184129399291295],[120,53,72,0.010871398558150292],[120,53,73,0.010576262351868444],[120,53,74,0.010312518068410579],[120,53,75,0.010090371807726681],[120,53,76,0.009917063280043811],[120,53,77,0.009797409570084325],[120,53,78,0.009734267228352309],[120,53,79,0.009728912258629494],[120,54,64,0.011064506103925233],[120,54,65,0.011295774940503713],[120,54,66,0.011406669811384022],[120,54,67,0.011368469235184664],[120,54,68,0.011199607242221925],[120,54,69,0.010945994917447549],[120,54,70,0.010645990671883081],[120,54,71,0.010330635175519048],[120,54,72,0.010024595470541742],[120,54,73,0.009747036561757886],[120,54,74,0.009512418886965319],[120,54,75,0.009331220290070982],[120,54,76,0.009210581337506069],[120,54,77,0.009154873032529133],[120,54,78,0.009166186190927116],[120,54,79,0.009244741943834575],[120,55,64,0.010576491170857768],[120,55,65,0.01078244239105495],[120,55,66,0.010867954490438467],[120,55,67,0.010803327674310212],[120,55,68,0.010608144748660292],[120,55,69,0.010330877278437824],[120,55,70,0.010012120468758384],[120,55,71,0.009684784961599949],[120,55,72,0.009375040057619455],[120,55,73,0.009103188082723373],[120,55,74,0.00888446825094202],[120,55,75,0.008729788586593457],[120,55,76,0.008646384678321305],[120,55,77,0.008638404244018207],[120,55,78,0.008707416687558981],[120,55,79,0.008852847024144688],[120,56,64,0.010322288245880903],[120,56,65,0.01050279516709977],[120,56,66,0.010561358270676374],[120,56,67,0.010467603581543717],[120,56,68,0.010242252633959835],[120,56,69,0.009936105797734091],[120,56,70,0.009591837310076743],[120,56,71,0.009244144373263593],[120,56,72,0.008920682915762722],[120,56,73,0.008642938019276273],[120,56,74,0.0084270273283871],[120,56,75,0.008284435962261166],[120,56,76,0.00822268164916837],[120,56,77,0.008245909003173329],[120,56,78,0.00835541205693955],[120,56,79,0.008550084353724657],[120,57,64,0.010288441953334004],[120,57,65,0.010443867484545039],[120,57,66,0.010474490377986792],[120,57,67,0.010349561696557702],[120,57,68,0.010090912245169547],[120,57,69,0.009751411231486772],[120,57,70,0.009375626605886249],[120,57,71,0.008999932630585086],[120,57,72,0.008653432090191019],[120,57,73,0.008358816483641915],[120,57,74,0.008133162495112341],[120,57,75,0.00798866323566145],[120,57,76,0.007933292940447008],[120,57,77,0.007971403997017516],[120,57,78,0.008104255367306312],[120,57,79,0.008330471648084084],[120,58,64,0.010454931935821267],[120,58,65,0.010586116768278548],[120,58,66,0.010588412157925385],[120,58,67,0.010430978719167492],[120,58,68,0.010136708049173647],[120,58,69,0.009760257536221964],[120,58,70,0.009347881390322398],[120,58,71,0.008937498545252113],[120,58,72,0.00855959588873834],[120,58,73,0.008238072530345348],[120,58,74,0.007991023400197568],[120,58,75,0.007831460657576454],[120,58,76,0.007767971573407809],[120,58,77,0.007805311733541038],[120,58,78,0.007944932589355596],[120,58,79,0.008185442557260158],[120,59,64,0.01079593024111917],[120,59,65,0.01090416607273547],[120,59,66,0.010878359722463211],[120,59,67,0.010687842073305214],[120,59,68,0.010356498979601277],[120,59,69,0.009940482713164701],[120,59,70,0.009487510125862993],[120,59,71,0.0090368933736468],[120,59,72,0.008620419551978526],[120,59,73,0.008263174120066519],[120,59,74,0.007984306415728842],[120,59,75,0.00779773574075602],[120,59,76,0.007712796673898218],[120,59,77,0.007734822443944281],[120,59,78,0.007865665367679488],[120,59,79,0.008104153525497215],[120,60,64,0.011280661994736214],[120,60,65,0.01136765077221437],[120,60,66,0.011314571019331594],[120,60,67,0.011091152909400565],[120,60,68,0.01072219359389579],[120,60,69,0.010265042584500348],[120,60,70,0.009768645947202689],[120,60,71,0.009273542885083568],[120,60,72,0.008812718106295409],[120,60,73,0.008412400389631536],[120,60,74,0.008092805669424366],[120,60,75,0.007868823132270567],[120,60,76,0.0077506429881110455],[120,60,77,0.0077443247464045765],[120,60,78,0.007852304993458592],[120,60,79,0.008073843828147579],[120,61,64,0.011874371251966867],[120,61,65,0.01194217149469393],[120,61,66,0.01186321936188819],[120,61,67,0.01160783544185863],[120,61,68,0.011201631191734443],[120,61,69,0.010702859696844364],[120,61,70,0.01016145956824284],[120,61,71,0.009619020876573568],[120,61,72,0.009109607615245693],[120,61,73,0.008660528400972626],[120,61,74,0.008293053762319575],[120,61,75,0.008023078531077326],[120,61,76,0.007861728014711869],[120,61,77,0.007815906789770483],[120,61,78,0.007888789114919345],[120,61,79,0.008080250117004705],[120,62,64,0.01253939376097604],[120,62,65,0.012590355111460323],[120,62,66,0.012487455298111171],[120,62,67,0.012201754561952032],[120,62,68,0.011759570893271098],[120,62,69,0.011219779398939759],[120,62,70,0.010633077932767796],[120,62,71,0.010041926228734933],[120,62,72,0.009481336914769848],[120,62,73,0.008979616419738691],[120,62,74,0.008559054159723429],[120,62,75,0.008236558548054492],[120,62,76,0.00802423853113576],[120,62,77,0.007929929507820474],[120,62,78,0.00795766264295416],[120,62,79,0.008108076734476386],[120,63,64,0.013236338189750445],[120,63,65,0.01327302541644127],[120,63,66,0.013148558520592745],[120,63,67,0.012834843492262478],[120,63,68,0.012358790504793812],[120,63,69,0.011779634973921375],[120,63,70,0.011148610527881596],[120,63,71,0.01050886544215683],[120,63,72,0.009896221769648172],[120,63,73,0.009339885634116868],[120,63,74,0.008863107112331845],[120,63,75,0.008483788283831254],[120,63,76,0.008215038179741861],[120,63,77,0.008065673512674856],[120,63,78,0.008040664217334986],[120,63,79,0.00814152297493976],[120,64,64,0.013925377175228399],[120,64,65,0.013950484934298641],[120,64,66,0.013807201325760913],[120,64,67,0.013468343057290362],[120,64,68,0.012961296810786286],[120,64,69,0.01234542352177703],[120,64,70,0.011672285099569638],[120,64,71,0.010985542419974334],[120,64,72,0.010321683222355169],[120,64,73,0.009710702066571568],[120,64,74,0.009176730815892988],[120,64,75,0.00873861826143453],[120,64,76,0.008410457652032221],[120,64,77,0.00820206103973164],[120,64,78,0.008119379494217123],[120,64,79,0.008164868378367838],[120,65,64,0.014567649343174796],[120,65,65,0.014583909085633544],[120,65,66,0.014424824920555647],[120,65,67,0.01406415393651361],[120,65,68,0.013529648725531989],[120,65,69,0.012880594085335305],[120,65,70,0.01216869431222525],[120,65,71,0.011437957070975262],[120,65,72,0.010725391721447859],[120,65,73,0.010061660255893775],[120,65,74,0.009471679352394602],[120,65,75,0.00897517219628037],[120,65,76,0.008587168866441276],[120,65,77,0.008318454226240609],[120,65,78,0.008175962398239018],[120,65,79,0.008163117036969666],[120,66,64,0.015126773223130063],[120,66,65,0.015136853711808887],[120,66,66,0.014965129649092225],[120,66,67,0.014586303041653429],[120,66,68,0.014028394514901319],[120,66,69,0.013350449293775046],[120,66,70,0.012604154679155627],[120,66,71,0.01183371409870914],[120,66,72,0.011076518415258092],[120,66,73,0.010363770094558347],[120,66,74,0.009721058773721024],[120,66,75,0.009168886915651875],[120,66,76,0.008723144377536358],[120,66,77,0.008395530861552597],[120,66,78,0.008193925352660506],[120,66,79,0.008122701780302496],[120,67,64,0.01557047374477398],[120,67,65,0.015576876721610256],[120,67,66,0.01539567997114803],[120,67,67,0.0150025249198481],[120,67,68,0.014425624060431217],[120,67,69,0.013723661561861831],[120,67,70,0.012948178859492473],[120,67,71,0.012143443116296847],[120,67,72,0.011347094778392436],[120,67,73,0.010590747997312983],[120,67,74,0.009900542490461602],[120,67,75,0.009297645553835778],[120,67,76,0.008798703082104876],[120,67,77,0.008416238589408464],[120,67,78,0.008158999358836537],[120,67,79,0.008032248978253116],[120,68,64,0.015872321751168334],[120,68,65,0.015877274368085306],[120,68,66,0.015689624769414896],[120,68,67,0.01528595882961878],[120,68,68,0.014694636883979106],[120,68,69,0.013973904631564536],[120,68,70,0.013175062169229802],[120,68,71,0.012342330984548596],[120,68,72,0.011513481503930757],[120,68,73,0.010720413351672257],[120,68,74,0.009989686914496037],[120,68,75,0.009343004947939177],[120,68,76,0.008797643100893569],[120,68,77,0.008366828371673508],[120,68,78,0.008060064642162228],[120,68,79,0.007883404564674552],[120,69,64,0.01586130659581951],[120,69,65,0.015886665300161276],[120,69,66,0.0158275384359385],[120,69,67,0.015416967258103553],[120,69,68,0.014815732007346639],[120,69,69,0.014081606799747255],[120,69,70,0.013265589861410451],[120,69,71,0.012411773063925555],[120,69,72,0.011557953397286574],[120,69,73,0.010736196930932581],[120,69,74,0.009973353872716135],[120,69,75,0.009291523476939751],[120,69,76,0.008708467691943906],[120,69,77,0.008237972574037087],[120,69,78,0.007890156626816476],[120,69,79,0.007671725351923997],[120,70,64,0.015966925231982072],[120,70,65,0.015991548822800263],[120,70,66,0.015811943622372225],[120,70,67,0.015398292878787254],[120,70,68,0.014791956310708496],[120,70,69,0.014050194053881037],[120,70,70,0.013223632682655095],[120,70,71,0.012356141742868778],[120,70,72,0.011485432899969604],[120,70,73,0.010643611320811047],[120,70,74,0.00985767790660874],[120,70,75,0.009149981135714629],[120,70,76,0.008538617413946336],[120,70,77,0.008037778966136378],[120,70,78,0.007658048434319399],[120,70,79,0.00740663947433575],[120,71,64,0.015861866643783144],[120,71,65,0.015875895107967834],[120,71,66,0.015687502269066587],[120,71,67,0.015276560199095911],[120,71,68,0.014671849732706146],[120,71,69,0.013929920450918995],[120,71,70,0.013100825251293286],[120,71,71,0.01222801027880815],[120,71,72,0.011348905154846012],[120,71,73,0.01049546496863142],[120,71,74,0.009694662650050565],[120,71,75,0.008968930484525548],[120,71,76,0.008336549670175379],[120,71,77,0.007811986953794302],[120,71,78,0.007406177514182426],[120,71,79,0.007126753387843632],[120,72,64,0.01564912481310522],[120,72,65,0.015675234603352156],[120,72,66,0.015497391696394223],[120,72,67,0.015096825542333858],[120,72,68,0.0145022823648607],[120,72,69,0.013769268203093194],[120,72,70,0.012946942925618979],[120,72,71,0.01207803176480407],[120,72,72,0.011199409919490241],[120,72,73,0.010342638044441332],[120,72,74,0.009534447241262236],[120,72,75,0.008797172309012117],[120,72,76,0.008149132153932004],[120,72,77,0.007604956395517532],[120,72,78,0.007175857339538459],[120,72,79,0.006869846616287643],[120,73,64,0.015390108303827985],[120,73,65,0.015435484409992532],[120,73,66,0.015276230775437294],[120,73,67,0.014895079386811116],[120,73,68,0.014320549693085495],[120,73,69,0.013606682815773099],[120,73,70,0.01280134998872196],[120,73,71,0.011946195199216037],[120,73,72,0.0110772175389818],[120,73,73,0.010225303019757487],[120,73,74,0.00941670445811302],[120,73,75,0.008673468180968267],[120,73,76,0.008013806447578911],[120,73,77,0.007452414624529318],[120,73,78,0.0070007322864057255],[120,73,79,0.006667147545046145],[120,74,64,0.015111432734790466],[120,74,65,0.015184218809893462],[120,74,66,0.015052513525157442],[120,74,67,0.014700688705585638],[120,74,68,0.01415681420341517],[120,74,69,0.0134729981389992],[120,74,70,0.012695387350043864],[120,74,71,0.011864151434946346],[120,74,72,0.011014066410356632],[120,74,73,0.010175045764498982],[120,74,74,0.009372617494365203],[120,74,75,0.008628345866665619],[120,74,76,0.007960196791584571],[120,74,77,0.007382845843781694],[120,74,78,0.006907928105581264],[120,74,79,0.006544229141587451],[120,75,64,0.014836850524413723],[120,75,65,0.014945727530957034],[120,75,66,0.014850999100458926],[120,75,67,0.01453879708065626],[120,75,68,0.014036506355466619],[120,75,69,0.013393822839567294],[120,75,70,0.012654724367735947],[120,75,71,0.011857506725531671],[120,75,72,0.011035372370869807],[120,75,73,0.010216963773652228],[120,75,74,0.009426839937484098],[120,75,75,0.008685894826198737],[120,75,76,0.008011716573770644],[120,75,77,0.007418886508018659],[120,75,78,0.006919217165102912],[120,75,79,0.006521928611837263],[120,76,64,0.014589552843846757],[120,76,65,0.014743341237035721],[120,76,66,0.014695054407917275],[120,76,67,0.01443267883098787],[120,76,68,0.01398268118432808],[120,76,69,0.01339188460650087],[120,76,70,0.012701671197326792],[120,76,71,0.011948080414011228],[120,76,72,0.011162406749026644],[120,76,73,0.010371738510890254],[120,76,74,0.009599436239296637],[120,76,75,0.008865549453636918],[120,76,76,0.008187170598410747],[120,76,77,0.007578725209147188],[120,76,78,0.00705219747694084],[120,76,79,0.006617290537151568],[120,77,64,0.014394417932151654],[120,77,65,0.014601704458064286],[120,77,66,0.014608945438286978],[120,77,67,0.014406043236623731],[120,77,68,0.014018326625417242],[120,77,69,0.013489328228337693],[120,77,70,0.012857447890666668],[120,77,71,0.012156123123303213],[120,77,72,0.011414439626289753],[120,77,73,0.010657678663569365],[120,77,74,0.009907799778584327],[120,77,75,0.009183857518724697],[120,77,76,0.008502351011626452],[120,77,77,0.00787750540655923],[120,77,78,0.007321484358291522],[120,77,79,0.006844532887370269],[120,78,64,0.014280201806624775],[120,78,65,0.014548991950497444],[120,78,66,0.014620073277394173],[120,78,67,0.014485284804121076],[120,78,68,0.01416861951066749],[120,78,69,0.013709963525918264],[120,78,70,0.01314440630671202],[120,78,71,0.012502491637943008],[120,78,72,0.011810844683499884],[120,78,73,0.011092730926421147],[120,78,74,0.010368545436355387],[120,78,75,0.009656231093492534],[120,78,76,0.008971624585447044],[120,78,77,0.00832872917569718],[120,78,78,0.007739913417670818],[120,78,79,0.00721603515582128],[120,79,64,0.01426224143730055],[120,79,65,0.014599733199333055],[120,79,66,0.014742139530057383],[120,79,67,0.014683231115939017],[120,79,68,0.014445503764637907],[120,79,69,0.014064915527740845],[120,79,70,0.01357297923766601],[120,79,71,0.012997102210076897],[120,79,72,0.012361234287248392],[120,79,73,0.011686442119372545],[120,79,74,0.010991408058206632],[120,79,75,0.010292852243058703],[120,79,76,0.00960587666054756],[120,79,77,0.00894423015533461],[120,79,78,0.008320493557545933],[120,79,79,0.007746184272181724],[120,80,64,0.01428952197760985],[120,80,65,0.014702156679190486],[120,80,66,0.014923365873452658],[120,80,67,0.014948894003325209],[120,80,68,0.01479965226203377],[120,80,69,0.014507468312195735],[120,80,70,0.014100045517612693],[120,80,71,0.013601403362207776],[120,80,72,0.013032556017338026],[120,80,73,0.012412110752195754],[120,80,74,0.011756784474216115],[120,80,75,0.01108183690879788],[120,80,76,0.01040141914550142],[120,80,77,0.009728836489569112],[120,80,78,0.009076724761430795],[120,80,79,0.008457139380989546],[120,81,64,0.014309393855596894],[120,81,65,0.014802606985723442],[120,81,66,0.01510981117118187],[120,81,67,0.015228812055929866],[120,81,68,0.015178925196387468],[120,81,69,0.014987730850053806],[120,81,70,0.014678930177553177],[120,81,71,0.014272901945981326],[120,81,72,0.01378742598302999],[120,81,73,0.013238319300274517],[120,81,74,0.012639983050003169],[120,81,75,0.012005858721822284],[120,81,76,0.011348792222259433],[120,81,77,0.010681304710938542],[120,81,78,0.010015769288785125],[120,81,79,0.009364492845180624],[120,82,64,0.014285734225558743],[120,82,65,0.014863672350009526],[120,82,66,0.01526324866112729],[120,82,67,0.015484441516117593],[120,82,68,0.015545027823751409],[120,82,69,0.01546831238225273],[120,82,70,0.015273855554328405],[120,82,71,0.014978163850738434],[120,82,72,0.014595475985899546],[120,82,73,0.014138453656183395],[120,82,74,0.013618775039551903],[120,82,75,0.013047629279351951],[120,82,76,0.012436110474146668],[120,82,77,0.011795509947485952],[120,82,78,0.011137505814524875],[120,82,79,0.010474249094280252],[120,83,64,0.014196517026883973],[120,83,65,0.014861825377295992],[120,83,66,0.015358908093118568],[120,83,67,0.015690034228893812],[120,83,68,0.015871558179732806],[120,83,69,0.01592257038387818],[120,83,70,0.015858415777184328],[120,83,71,0.01569153655155342],[120,83,72,0.015432340542782627],[120,83,73,0.015089965664727022],[120,83,74,0.01467293817423131],[120,83,75,0.014189722840660257],[120,83,76,0.013649163377956458],[120,83,77,0.013060811773918431],[120,83,78,0.012435145418664093],[120,83,79,0.011783671189753339],[120,84,64,0.014031522261632921],[120,84,65,0.014785199728959366],[120,84,66,0.015383349396529017],[120,84,67,0.015830641325108405],[120,84,68,0.016142173485958377],[120,84,69,0.016332969298796324],[120,84,70,0.016414153578128518],[120,84,71,0.016393965321233377],[120,84,72,0.016278728982768387],[120,84,73,0.016073712462388062],[120,84,74,0.015783869324578828],[120,84,75,0.015414463087230334],[120,84,76,0.014971571727462192],[120,84,77,0.014462470857694141],[120,84,78,0.01389589431954607],[120,84,79,0.01328217122543438],[120,85,64,0.013790189526717773],[120,85,65,0.014631507682746287],[120,85,66,0.015332472650072612],[120,85,67,0.01590024717440473],[120,85,68,0.01634887947125316],[120,85,69,0.016664683937739743],[120,85,70,0.016468348505124963],[120,85,71,0.016366437538800252],[120,85,72,0.016356952695976645],[120,85,73,0.016438845764127106],[120,85,74,0.016611173391820243],[120,85,75,0.016703872501096725],[120,85,76,0.016384999932960376],[120,85,77,0.015982115750752326],[120,85,78,0.015501662134970898],[120,85,79,0.014952242819717793],[120,86,64,0.01347962137112998],[120,86,65,0.014406104084573206],[120,86,66,0.015209669739482871],[120,86,67,0.015900038784184257],[120,86,68,0.016490447491266304],[120,86,69,0.016435520400920375],[120,86,70,0.016071717211297142],[120,86,71,0.015794996032305504],[120,86,72,0.015607776226036854],[120,86,73,0.015513426516342313],[120,86,74,0.0155152983452014],[120,86,75,0.015615898689660573],[120,86,76,0.01581620474694026],[120,86,77,0.01611512252762348],[120,86,78,0.016509091039436794],[120,86,79,0.016770434631854268],[120,87,64,0.013112741601405053],[120,87,65,0.01412020176772128],[120,87,66,0.01502412266622804],[120,87,67,0.015836815419076566],[120,87,68,0.01657096395494582],[120,87,69,0.016261255540254645],[120,87,70,0.01572260894654096],[120,87,71,0.015260833394028034],[120,87,72,0.014882829073985247],[120,87,73,0.01459655455917877],[120,87,74,0.014409922160938398],[120,87,75,0.014329844180110641],[120,87,76,0.014361432802062592],[120,87,77,0.01450735598350498],[120,87,78,0.014767351286828413],[120,87,79,0.015137899238955421],[120,88,64,0.012706613241808181],[120,88,65,0.013789243107595519],[120,88,66,0.01478925307655414],[120,88,67,0.015721542840796104],[120,88,68,0.016598516216245286],[120,88,69,0.01613709069842721],[120,88,70,0.015419783309695007],[120,88,71,0.014766505948335878],[120,88,72,0.014188626869493627],[120,88,73,0.013698788444918173],[120,88,74,0.013309650141646699],[120,88,75,0.013032794076691674],[120,88,76,0.012877796278096052],[120,88,77,0.012851466344213738],[120,88,78,0.012957257764816914],[120,88,79,0.01319485075289421],[120,89,64,0.01228092046768797],[120,89,65,0.013431432000474199],[120,89,66,0.014521327213153051],[120,89,67,0.015568056219116617],[120,89,68,0.016584018763127626],[120,89,69,0.016055521123620443],[120,89,70,0.015159503417112545],[120,89,71,0.014312374111101065],[120,89,72,0.01352988022336096],[120,89,73,0.012829358748038245],[120,89,74,0.012228315605656345],[120,89,75,0.01174317894204481],[120,89,76,0.011388230318749089],[120,89,77,0.011174716862043757],[120,89,78,0.011110146972297482],[120,89,79,0.011197771743613307],[120,90,64,0.011856618469255056],[120,90,65,0.013066430201057803],[120,90,66,0.014238220149875603],[120,90,67,0.015391915439319726],[120,90,68,0.016540183231730673],[120,90,69,0.016007228415783958],[120,90,70,0.014936269522638204],[120,90,71,0.013897158286456565],[120,90,72,0.012909856941485887],[120,90,73,0.011996324032069919],[120,90,74,0.011178920770523864],[120,90,75,0.010479003447849968],[120,90,76,0.009915705877451378],[120,90,77,0.009504915339395913],[120,90,78,0.009258444989957974],[120,90,79,0.009183405211824218],[120,91,64,0.011454754867076625],[120,91,65,0.012714221624543325],[120,91,66,0.013958342851605056],[120,91,67,0.015209416228404174],[120,91,68,0.01648063549009614],[120,91,69,0.015981835989595895],[120,91,70,0.014743426687157394],[120,91,71,0.013518380421513062],[120,91,72,0.012330641734265586],[120,91,73,0.01120663605797368],[120,91,74,0.010173498240203919],[120,91,75,0.009257498598832459],[120,91,76,0.008482670944434476],[120,91,77,0.007869646456188617],[120,91,78,0.007434696757728955],[120,91,79,0.007188989012707736],[120,92,64,0.011095465988259869],[120,92,65,0.012394147912848293],[120,92,66,0.013699735305164804],[120,92,67,0.015036760240128845],[120,92,68,0.016419182771776838],[120,92,69,0.015968524784823655],[120,92,70,0.014573643986554667],[120,92,71,0.013172689007762806],[120,92,72,0.011793291545420843],[120,92,73,0.010466112721460454],[120,92,74,0.009222891966996638],[120,92,75,0.008094704542375772],[120,92,76,0.007110432594883024],[120,92,77,0.006295454070677078],[120,92,78,0.005670553221230478],[120,92,79,0.005251055881358248],[120,93,64,0.010797151022199159],[120,93,65,0.012124118280084552],[120,93,66,0.013479328691593939],[120,93,67,0.01488938697630761],[120,93,68,0.01636923359370817],[120,93,69,0.015956506680592515],[120,93,70,0.014419262949736255],[120,93,71,0.01285606549543798],[120,93,72,0.011297884774814667],[120,93,73,0.009779317329203131],[120,93,74,0.008336456653409298],[120,93,75,0.007004983296144054],[120,93,76,0.005818479561860566],[120,93,77,0.004806973564578476],[120,93,78,0.003995716773137277],[120,93,79,0.003404198588978019],[120,94,64,0.010575826805562587],[120,94,65,0.011919996388139056],[120,94,66,0.013312379314027267],[120,94,67,0.01478147017747428],[120,94,68,0.01634337296383217],[120,94,69,0.015935353280386304],[120,94,70,0.014272513107389223],[120,94,71,0.012563910252634565],[120,94,72,0.010843462810287502],[120,94,73,0.009149342938220643],[120,94,74,0.007521674646841212],[120,94,75,0.006000460787454464],[120,94,76,0.004623745073309786],[120,94,77,0.0034260143144760257],[120,94,78,0.002436845403649589],[120,94,79,0.001679800958414838],[120,95,64,0.010444665736664945],[120,95,65,0.011795166758049733],[120,95,66,0.013212076757592566],[120,95,67,0.01472558108897739],[120,95,68,0.016353095171052344],[120,95,69,0.01589517793035102],[120,95,70,0.014125592708182994],[120,95,71,0.012291006355264714],[120,95,72,0.010427862414462027],[120,95,73,0.008577500589326794],[120,95,74,0.006783689461845737],[120,95,75,0.0050903976553201054],[120,95,76,0.0035398097255715808],[120,95,77,0.0021705923817142386],[120,95,78,0.0010164159631850147],[120,95,79,1.0473543726411898E-4],[120,96,64,0.010413719088403184],[120,96,65,0.011760282995679125],[120,96,66,0.013189328537131433],[120,96,67,0.014732520797739419],[120,96,68,0.016408696252232513],[120,96,69,0.01582666901555345],[120,96,70,0.013970612822978257],[120,96,71,0.01203135963756956],[120,96,72,0.010047437634469827],[120,96,73,0.008062910364898803],[120,96,74,0.00612475514100024],[120,96,75,0.004280488319341042],[120,96,76,0.002576044196670903],[120,96,77,0.001053913522390194],[120,96,78,-2.484530701287978E-4],[120,96,79,-0.0012999721018258647],[120,97,64,0.010489827775479679],[120,97,65,0.011823199899967163],[120,97,66,0.013252723284173738],[120,97,67,0.014811323639383832],[120,97,68,0.01651932804725389],[120,97,69,0.015720972748024767],[120,97,70,0.013799403209972694],[120,97,71,0.011777913566594493],[120,97,72,0.009696670016105316],[120,97,73,0.007601994293710773],[120,97,74,0.005543600736385822],[120,97,75,0.003572087869102956],[120,97,76,0.001736691631114892],[120,97,77,8.330662751480183E-5],[120,97,78,-0.0013472189357626111],[120,97,79,-0.002520509691083304],[120,98,64,0.010676722434796395],[120,98,65,0.011989091327897121],[120,98,66,0.01340867433558958],[120,98,67,0.014969433494378662],[120,98,68,0.01669321558285176],[120,98,69,0.015569423817419423],[120,98,70,0.013603178455227793],[120,98,71,0.01152213762825799],[120,98,72,0.009367666009479319],[120,98,73,0.0071878702115560095],[120,98,74,0.005034709259601587],[120,98,75,0.0029613663736024086],[120,98,76,0.001019889554186966],[120,98,77,-7.40892289091341E-4],[120,98,78,-0.002277171676479921],[120,98,79,-0.003551678111030869],[120,99,64,0.010975314496813481],[120,99,65,0.012260755511396774],[120,99,66,0.01366174541189763],[120,99,67,0.015213054624499968],[120,99,68,0.016938039368349915],[120,99,69,0.015363122420588151],[120,99,70,0.013372063034259455],[120,99,71,0.011253488027924106],[120,99,72,0.009049540551230887],[120,99,73,0.006809645766160148],[120,99,74,0.0045875105093257755],[120,99,75,0.0024383902525682614],[120,99,76,4.166311977155024E-4],[120,99,77,-0.001426505431172644],[120,99,78,-0.00304473060195976],[120,99,79,-0.004398320655466477],[120,100,64,0.011384179759581179],[120,100,65,0.012639109356989548],[120,100,66,0.014015159912619967],[120,100,67,0.015547678546611774],[120,100,68,0.01692097817772019],[120,100,69,0.015092356320847905],[120,100,70,0.013094474061821546],[120,100,71,0.010958739615131531],[120,100,72,0.008727685899095585],[120,100,73,0.0064516118287172575],[120,100,74,0.004185487241857982],[120,100,75,0.0019861303904745997],[120,100,76,-9.033385895575359E-5],[120,100,77,-0.001990727759406161],[120,100,78,-0.0036667797779933336],[120,100,79,-0.005076783250150903],[120,101,64,0.011898442774981394],[120,101,65,0.01312180472128066],[120,101,66,0.014469150459336673],[120,101,67,0.01597616646179351],[120,101,68,0.016561659874079558],[120,101,69,0.014749041883123709],[120,101,70,0.012759805386746956],[120,101,71,0.01062489068063114],[120,101,72,0.008386867191678169],[120,101,73,0.006096491629132024],[120,101,74,0.0038095341044552355],[120,101,75,0.0015838814379183074],[120,101,76,-5.230739297889656E-4],[120,101,77,-0.002456751802754776],[120,101,78,-0.004167402049194068],[120,101,79,-0.005611816337725742],[120,102,64,0.012490790902353496],[120,102,65,0.013681109788193169],[120,102,66,0.014995690775760406],[120,102,67,0.01647031911242829],[120,102,68,0.01614541452094607],[120,102,69,0.014361485555362105],[120,102,70,0.012396287562763687],[120,102,71,0.010280000247313702],[120,102,72,0.008054845382504113],[120,102,73,0.005771582834815386],[120,102,74,0.0034862778520174864],[120,102,75,0.001257349070165972],[120,102,76,-8.570941145019252E-4],[120,102,77,-0.002801616971252363],[120,102,78,-0.0045255206249447105],[120,102,79,-0.0059845927718217284],[120,103,64,0.013122089059659663],[120,103,65,0.01427569630189229],[120,103,66,0.015551439011271722],[120,103,67,0.016984967121834352],[120,103,68,0.015719107588216374],[120,103,69,0.013978074616186876],[120,103,70,0.012053667737892852],[120,103,71,0.009974972815526947],[120,103,72,0.007783422848725151],[120,103,73,0.0055292597303379255],[120,103,74,0.003268268846896882],[120,103,75,0.0010587961430705277],[120,103,76,-0.0010409435409822747],[120,103,77,-0.002975258861966221],[120,103,78,-0.004693067905548009],[120,103,79,-0.006149671266016321],[120,104,64,0.013758175399623266],[120,104,65,0.014869695223879846],[120,104,66,0.016099050419864768],[120,104,67,0.016811030474482097],[120,104,68,0.015322351578637271],[120,104,69,0.013639245402701545],[120,104,70,0.011773025811755872],[120,104,71,0.009751338273170833],[120,104,72,0.00761435873913793],[120,104,73,0.0054112542237731605],[120,104,74,0.0031969155713373674],[120,104,75,0.0010289721124513184],[120,104,76,-0.001034902900702106],[120,104,77,-0.002939387996455388],[120,104,78,-0.004633603042715153],[120,104,79,-0.006072886176745861],[120,105,64,0.014371559789751564],[120,105,65,0.015434366212305022],[120,105,66,0.016608809805847877],[120,105,67,0.01640572774925564],[120,105,68,0.01498597568676092],[120,105,69,0.013376012821979172],[120,105,70,0.011585365281435285],[120,105,71,0.009639902806911986],[120,105,72,0.007578076353997419],[120,105,73,0.005447414173211975],[120,105,74,0.003301286835025838],[120,105,75,0.0011959508730010765],[120,105,76,-8.121200741503892E-4],[120,105,77,-0.00266860853581947],[120,105,78,-0.004323423603747574],[120,105,79,-0.005732461935337096],[120,106,64,0.014943206734611643],[120,106,65,0.01594980334124226],[120,106,66,0.017060249622117406],[120,106,67,0.016068640925204304],[120,106,68,0.014730619160206274],[120,106,69,0.013208682679688156],[120,106,70,0.01151044848759789],[120,106,71,0.00965970739689144],[120,106,72,0.007692741743868303],[120,106,73,0.005654895685979571],[120,106,74,0.0035974083923034357],[120,106,75,0.0015745196697196774],[120,106,76,-3.5914320476784865E-4],[120,106,77,-0.002150889449428507],[120,106,78,-0.0037519923158215907],[120,106,79,-0.005119413736677128],[120,107,64,0.015464703600897634],[120,107,65,0.016407023023955088],[120,107,66,0.016890941242364278],[120,107,67,0.015808903826077837],[120,107,68,0.014564966597523751],[120,107,69,0.013145220194961414],[120,107,70,0.011555305970090232],[120,107,71,0.009816682125066133],[120,107,72,0.007963063561955067],[120,107,73,0.006037105665188756],[120,107,74,0.004087342053030306],[120,107,75,0.002165385597196868],[120,107,76,3.2340126654981067E-4],[120,107,77,-0.0013881413943218864],[120,107,78,-0.0029224290828840016],[120,107,79,-0.004237972517918585],[120,108,64,0.015940816268036718],[120,108,65,0.01681043636624353],[120,108,66,0.01660897967284595],[120,108,67,0.015621805385947651],[120,108,68,0.0144836227144392],[120,108,69,0.013179272192868696],[120,108,70,0.011712417416901119],[120,108,71,0.010101993813331846],[120,108,72,0.008378811763688961],[120,108,73,0.00658239232482055],[120,108,74,0.004758045188521407],[120,108,75,0.002954197822775659],[120,108,76,0.0012199840314793481],[120,108,77,-3.9690053811540927E-4],[120,108,78,-0.0018520691159043538],[120,108,79,-0.0031060346302509765],[120,109,64,0.016392434150678734],[120,109,65,0.017142941715205303],[120,109,66,0.016368560508900693],[120,109,67,0.015486157920890368],[120,109,68,0.01446462431339483],[120,109,69,0.013287840670656163],[120,109,70,0.011957561893759554],[120,109,71,0.010490084706002038],[120,109,72,0.008913052937017742],[120,109,73,0.007262481571447716],[120,109,74,0.005580008694122718],[120,109,75,0.003910383809054141],[120,109,76,0.0022992003488684224],[120,109,77,7.908795287456886E-4],[120,109,78,-5.730879612192881E-4],[120,109,79,-0.0017556365843093202],[120,110,64,0.0168599063872912],[120,110,65,0.01680155163132638],[120,110,66,0.01612943643375486],[120,110,67,0.015361289851987996],[120,110,68,0.01446658737258674],[120,110,69,0.013428605617851044],[120,110,70,0.012247335225315015],[120,110,71,0.010936400091318466],[120,110,72,0.009520100219741263],[120,110,73,0.00803065731259777],[120,110,74,0.006505671616982991],[120,110,75,0.004985797939446077],[120,110,76,0.003512648129820634],[120,110,77,0.0021269267256449446],[120,110,78,8.668058395866573E-4],[120,110,79,-2.3345522986995852E-4],[120,111,64,0.016898394642116732],[120,111,65,0.016392374929302234],[120,111,66,0.01583149988471169],[120,111,67,0.015186885482699253],[120,111,68,0.014428958234298078],[120,111,69,0.013540806175284427],[120,111,70,0.01252086756850798],[120,111,71,0.011380129431896075],[120,111,72,0.010139439867672486],[120,111,73,0.008827005308549813],[120,111,74,0.0074760804805303754],[120,111,75,0.006122858335115203],[120,111,76,0.00480456665173347],[120,111,77,0.0035577774575209363],[120,111,78,0.002416934859866997],[120,111,79,0.001413106341429353],[120,112,64,0.016258717629213503],[120,112,65,0.015860158060860698],[120,112,66,0.01541869822090388],[120,112,67,0.01490673572861556],[120,112,68,0.014296063366084594],[120,112,69,0.013570039947340433],[120,112,70,0.012725791358303476],[120,112,71,0.011771715191951613],[120,112,72,0.010725093937832861],[120,112,73,0.009609873810117391],[120,112,74,0.008454616205358222],[120,112,75,0.007290628295355348],[120,112,76,0.006150278770223247],[120,112,77,0.005065504255052837],[120,112,78,0.004066511433722664],[120,112,79,0.0031806794290580617],[120,113,64,0.015458712341342877],[120,113,65,0.015172997489348404],[120,113,66,0.014857667327637656],[120,113,67,0.014486572759139633],[120,113,68,0.01403331803969338],[120,113,69,0.013482016778069157],[120,113,70,0.012828739472121625],[120,113,71,0.012079349337729806],[120,113,72,0.01124744642147989],[120,113,73,0.010352456964063277],[120,113,74,0.009417874109331452],[120,113,75,0.00846965563283894],[120,113,76,0.00753478393888781],[120,113,77,0.006639993149297477],[120,113,78,0.0058106676832419745],[120,113,79,0.005069916308701873],[120,114,64,0.014489788493281615],[120,114,65,0.014320105660497311],[120,114,66,0.014135688590050544],[120,114,67,0.013912034547662423],[120,114,68,0.013625008504403137],[120,114,69,0.013259969588926786],[120,114,70,0.012812203638138914],[120,114,71,0.012285112052176505],[120,114,72,0.011688513894888144],[120,114,73,0.011037072103080895],[120,114,74,0.010348848925484423],[120,114,75,0.00964399535855014],[120,114,76,0.00894357898966535],[120,114,77,0.008268554301471548],[120,114,78,0.007638879136191881],[120,114,79,0.0070727806689258],[120,115,64,0.013361237341597073],[120,115,65,0.013308431796882214],[120,115,66,0.013257433200051686],[120,115,67,0.01318557621651062],[120,115,68,0.013071416490851067],[120,115,69,0.012902038393514111],[120,115,70,0.012672222499967068],[120,115,71,0.012383004824477302],[120,115,72,0.012040359577132755],[120,115,73,0.011653984492772336],[120,115,74,0.011236192814482675],[120,115,75,0.010800915729304724],[120,115,76,0.01036281876726575],[120,115,77,0.009936535388770394],[120,115,78,0.00953602070178164],[120,115,79,0.009174027971370406],[120,116,64,0.012096926020358306],[120,116,65,0.012159436224579911],[120,116,66,0.012241852971677878],[120,116,67,0.012323518284866232],[120,116,68,0.01238606858448458],[120,116,69,0.012418765140051063],[120,116,70,0.012416164886593861],[120,116,71,0.012377061967310263],[120,116,72,0.01230356830061662],[120,116,73,0.012200275143615595],[120,116,74,0.0120734986482665],[120,116,75,0.011930612190779843],[120,116,76,0.011779468038839237],[120,116,77,0.011627910706755201],[120,116,78,0.011483384137180617],[120,116,79,0.011352634641377838],[120,117,64,0.010732153104711172],[120,117,65,0.010906021221598738],[120,117,66,0.011119220619362836],[120,117,67,0.011353234688518876],[120,117,68,0.01159311319709277],[120,117,69,0.01183070191385726],[120,117,70,0.012060610568673998],[120,117,71,0.012279542539171871],[120,117,72,0.01248578401942777],[120,117,73,0.012678752917606211],[120,117,74,0.012858609362698234],[120,117,75,0.013025929553285437],[120,117,76,0.013181444535399326],[120,117,77,0.01332584535323822],[120,117,78,0.013459655876928068],[120,117,79,0.013583174477024913],[120,118,64,0.00931066814215213],[120,118,65,0.009589621140681235],[120,118,66,0.009928322224718336],[120,118,67,0.010310483223009197],[120,118,68,0.010724827662806953],[120,118,69,0.011166134848765212],[120,118,70,0.01162933062083734],[120,118,71,0.012109204512450128],[120,118,72,0.012600311371004102],[120,118,73,0.013096912078531009],[120,118,74,0.013592954126414368],[120,118,75,0.014082092717612576],[120,118,76,0.014557752992346152],[120,118,77,0.015013233899541317],[120,118,78,0.015441854167236858],[120,118,79,0.015837140761572374],[120,119,64,0.00788185766395211],[120,119,65,0.00825745433609385],[120,119,66,0.008713804401757893],[120,119,67,0.009236880856707763],[120,119,68,0.009819257794058105],[120,119,69,0.010458925922937687],[120,119,70,0.011151369356756587],[120,119,71,0.011889662898251805],[120,119,72,0.012664782702465294],[120,119,73,0.013465936358051038],[120,119,74,0.014280912024878578],[120,119,75,0.01509644624932483],[120,119,76,0.015898610066772557],[120,119,77,0.016673212994128057],[120,119,78,0.017406224514022],[120,119,79,0.017739597814459707],[120,120,64,0.006498099975713297],[120,120,65,0.006959939214396193],[120,120,66,0.007523678467470936],[120,120,67,0.008177526167096424],[120,120,68,0.008917992052732332],[120,120,69,0.009746474650537058],[120,120,70,0.010659229658890367],[120,120,71,0.011647833416015826],[120,120,72,0.01269989187409432],[120,120,73,0.013799750536767366],[120,120,74,0.014929203912757852],[120,120,75,0.016068203081820408],[120,120,76,0.017195560019173665],[120,120,77,0.017435665262770867],[120,120,78,0.01646855980994846],[120,120,79,0.01557446813524627],[120,121,64,0.005212290825919702],[120,121,65,0.005748276532371281],[120,121,66,0.006406983733739805],[120,121,67,0.007178770971463962],[120,121,68,0.008064072321689979],[120,121,69,0.009067801525657308],[120,121,70,0.010187163387691264],[120,121,71,0.011412463179311964],[120,121,72,0.012728196058522235],[120,121,73,0.014114120469986747],[120,121,74,0.015546313044038676],[120,121,75,0.016998202611293207],[120,121,76,0.01724933511407639],[120,121,77,0.01591885273979056],[120,121,78,0.014652187250023471],[120,121,79,0.013476709303528076],[120,122,64,0.004075541864080719],[120,122,65,0.004672199880824385],[120,122,66,0.005411611857327224],[120,122,67,0.0062861430519636175],[120,122,68,0.007300043101510435],[120,122,69,0.00846175492851527],[120,122,70,0.00976956842532],[120,122,71,0.011212749758661418],[120,122,72,0.012772986664969161],[120,122,73,0.01442580242183242],[120,122,74,0.016141935047659896],[120,122,75,0.017762827125130127],[120,122,76,0.016099048173536076],[120,122,77,0.014473098473941404],[120,122,78,0.012920446085971718],[120,122,79,0.011475083203741241],[120,123,64,0.0031350536252324835],[120,123,65,0.0037778961204028754],[120,123,66,0.004582294016649643],[120,123,67,0.005542421714131309],[120,123,68,0.00666614080644389],[120,123,69,0.007965343065791884],[120,123,70,0.009439493786261074],[120,123,71,0.011077049877489377],[120,123,72,0.012857230433236408],[120,123,73,0.01475174250852153],[120,123,74,0.0167264577767819],[120,123,75,0.01694604273380998],[120,123,76,0.015008332980305128],[120,123,77,0.01310973134424794],[120,123,78,0.011292112978640668],[120,123,79,0.00959568288509613],[120,124,64,0.0024321646147910203],[120,124,65,0.003106097374597306],[120,124,66,0.003958752526947064],[120,124,67,0.004985867767201064],[120,124,68,0.006198624691786006],[120,124,69,0.007612192386932171],[120,124,70,0.009227254111433863],[120,124,71,0.011031678898203308],[120,124,72,0.013002581661835495],[120,124,73,0.015108326991899868],[120,124,74,0.017310471522021153],[120,124,75,0.01616033546738937],[120,124,76,0.013979387710794128],[120,124,77,0.011837683075935797],[120,124,78,0.009782915780028592],[120,124,79,0.007860963108797893],[120,125,64,0.002000577916736491],[120,125,65,0.0026903460353607674],[120,125,66,0.0035740183589854737],[120,125,67,0.004648609373620156],[120,125,68,0.005928250812004006],[120,125,69,0.007431133795942388],[120,125,70,0.009159154753253115],[120,125,71,0.011099802161731613],[120,125,72,0.013228466458562429],[120,125,73,0.015510684107604707],[120,125,74,0.01777402018088308],[120,125,75,0.015400604912174615],[120,125,76,0.013012646399995087],[120,125,77,0.010663141719635926],[120,125,78,0.008404905621718447],[120,125,79,0.006288833391207005],[120,126,64,0.0018647666085933668],[120,126,65,0.0025554340980823167],[120,126,66,0.0034529158903478896],[120,126,67,0.004555185083837795],[120,126,68,0.005878890284726671],[120,126,69,0.007444917863575718],[120,126,70,0.009256328556445358],[120,126,71,0.011300419155510003],[120,126,72,0.013551239829857285],[120,126,73,0.015972038058421314],[120,126,74,0.017195375205967884],[120,126,75,0.01466118478979535],[120,126,76,0.012106720541413152],[120,126,77,0.009589234116106096],[120,126,78,0.00716587597141555],[120,126,79,0.0048918144094770005],[120,127,64,0.0020385591384565107],[120,127,65,0.002716018014779818],[120,127,66,0.0036107160925025403],[120,127,67,0.004721245250548544],[120,127,68,0.006066293020008742],[120,127,69,0.007669060137630045],[120,127,70,0.00953368534314425],[120,127,71,0.011647441401753526],[120,127,72,0.013983416357333786],[120,127,73,0.01650311575242919],[120,127,74,0.016588100529170657],[120,127,75,0.01393602386574087],[120,127,76,0.011258350463421366],[120,127,77,0.008615737642138055],[120,127,78,0.006068829203310455],[120,127,79,0.0036762585686831036],[120,128,64,0.0025239057022383667],[120,128,65,0.0031754101371884937],[120,128,66,0.004051959241046134],[120,128,67,0.0051524129039906535],[120,128,68,0.006496997966982399],[120,128,69,0.00811081754929815],[120,128,70,0.00999897502078857],[120,128,71,0.012148864879838527],[120,128,72,0.01453297514587598],[120,128,73,0.017111606817374662],[120,128,74,0.015945093947557762],[120,128,75,0.013218856042680353],[120,128,76,0.01046236652898562],[120,128,77,0.007738821506916184],[120,128,78,0.005111491182122493],[120,128,79,0.002641635464644727],[120,129,64,0.0033098265532682867],[120,129,65,0.003924547714812094],[120,129,66,0.004769448130709806],[120,129,67,0.005843305066541938],[120,129,68,0.007167390831032192],[120,129,69,0.008768296821034936],[120,129,70,0.01065196514756118],[120,129,71,0.012806037723676137],[120,129,72,0.015202739667620513],[120,129,73,0.01780167737730184],[120,129,74,0.01526102963669436],[120,129,75,0.012503359487397708],[120,129,76,0.009711660199258327],[120,129,77,0.006950817842974119],[120,129,78,0.004285874316872538],[120,129,79,0.0017798829145480313],[120,130,64,0.004371543081284334],[120,130,65,0.004941140316904733],[120,130,66,0.005743412680826216],[120,130,67,0.00677671539066961],[120,130,68,0.008062910123931157],[120,130,69,0.009629695696201162],[120,130,70,0.01148373371250399],[120,130,71,0.013613023867059475],[120,130,72,0.015989833069949774],[120,130,73,0.017181970853316766],[120,130,74,0.01453265736092943],[120,130,75,0.011783304651385133],[120,130,76,0.008997164995492832],[120,130,77,0.006240022812062278],[120,130,78,0.003577889498684831],[120,130,79,0.0010748241680881333],[120,131,64,0.005669792413684065],[120,131,65,0.006188996461736838],[120,131,66,0.00694084673096975],[120,131,67,0.007922958919264946],[120,131,68,0.009157402326949985],[120,131,69,0.01067267773280961],[120,131,70,0.012476077816028443],[120,131,71,0.014556063247121671],[120,131,72,0.01688520946332658],[120,131,73,0.01636359443007808],[120,131,74,0.013759068798269738],[120,131,75,0.011052691055790927],[120,131,76,0.008307847388099001],[120,131,77,0.00559052792370193],[120,131,78,0.00296700729723727],[120,131,79,5.016518551850095E-4],[120,132,64,0.007150244139824078],[120,132,65,0.007617439940155774],[120,132,66,0.008314919502424365],[120,132,67,0.009239273422281365],[120,132,68,0.010412512443783514],[120,132,69,0.011863758546017221],[120,132,70,0.013600907585814196],[120,132,71,0.01561298934369461],[120,132,72,0.017849952117891973],[120,132,73,0.015476036186540835],[120,132,74,0.012942093535377038],[120,132,75,0.010306041454396068],[120,132,76,0.007630880947525384],[120,132,77,0.0049822580280199655],[120,132,78,0.0024261461914850666],[120,132,79,2.6655776858825778E-5],[120,133,64,0.008731731931213333],[120,133,65,0.009148120320750986],[120,133,66,0.009790372830360706],[120,133,67,0.010653793667687816],[120,133,68,0.011760200683177378],[120,133,69,0.013139318633460129],[120,133,70,0.014799717829451676],[120,133,71,0.01673114755837629],[120,133,72,0.016845126281285254],[120,133,73,0.014558131331085269],[120,133,74,0.012112703532480548],[120,133,75,0.009565971790832049],[120,133,76,0.006980160605503399],[120,133,77,0.004420163346365312],[120,133,78,0.0019512368841062774],[120,133,79,-3.6317671819151894E-4],[120,134,64,0.010308748836881515],[120,134,65,0.0106757230418591],[120,134,66,0.011262426745181233],[120,134,67,0.01206262643185858],[120,134,68,0.013097901118240584],[120,134,69,0.014398692452404736],[120,134,70,0.01597442333204538],[120,134,71,0.017815792657820562],[120,134,72,0.01588406486105049],[120,134,73,0.013695504148043701],[120,134,74,0.011350690515009892],[120,134,75,0.008905623509501954],[120,134,76,0.0064214053919210996],[120,134,77,0.003961834976415335],[120,134,78,0.0015911226660689482],[120,134,79,-6.282676317813382E-4],[120,135,64,0.011790424501826748],[120,135,65,0.012109372647402557],[120,135,66,0.012640542049309986],[120,135,67,0.013375946771950888],[120,135,68,0.014336949128778533],[120,135,69,0.015554906695736821],[120,135,70,0.017040341775705663],[120,135,71,0.016926726305920094],[120,135,72,0.015044907303072988],[120,135,73,0.012961971353235274],[120,135,74,0.010724855087543146],[120,135,75,0.008388109951305374],[120,135,76,0.006011409850657996],[120,135,77,0.003657173181060639],[120,135,78,0.0013883052501632103],[120,135,79,-7.339332618921596E-4],[120,136,64,0.013104812897300287],[120,136,65,0.01337722198585546],[120,136,66,0.013853296779625488],[120,136,67,0.014523145583149674],[120,136,68,0.015407990259966104],[120,136,69,0.016540348081016627],[120,136,70,0.017706100762484273],[120,136,71,0.01616296310186523],[120,136,72,0.014386888020511326],[120,136,73,0.01241288479589934],[120,136,74,0.010286147576745966],[120,136,75,0.00805949308845027],[120,136,76,0.0057909048343197335],[120,136,77,0.0035411900797455206],[120,136,78,0.0013717555579190238],[120,136,79,-6.57492525678379E-4],[120,137,64,0.01419900565494678],[120,137,65,0.01442648645596313],[120,137,66,0.014848330392622481],[120,137,67,0.015452665000699629],[120,137,68,0.016260688732126508],[120,137,69,0.017306333327865124],[120,137,70,0.017061983270139486],[120,137,71,0.015620817688325052],[120,137,72,0.013951192824966152],[120,137,73,0.012086116554502434],[120,137,74,0.010068767932871514],[120,137,75,0.007949980998560563],[120,137,76,0.00578583256984197],[120,137,77,0.0036353402146413498],[120,137,78,0.0015582762310362766],[120,137,79,-3.868968746994522E-4],[120,138,64,0.015039654942733962],[120,138,65,0.015223884676302356],[120,138,66,0.015592687692271723],[120,138,67,0.01613222340696384],[120,138,68,0.016863811662760932],[120,138,69,0.017763878322602424],[120,138,70,0.016666461070368614],[120,138,71,0.015326342674627583],[120,138,72,0.013761540370401245],[120,138,73,0.012002805722832879],[120,138,74,0.010091068094428089],[120,138,75,0.008074972178542547],[120,138,76,0.006008515946680358],[120,138,77,0.003948795045348968],[120,138,78,0.0019538593521782883],[120,138,79,8.068706246110547E-5],[120,139,64,0.015613908284581255],[120,139,65,0.015756488002308527],[120,139,66,0.01607356493223127],[120,139,67,0.016549432470922693],[120,139,68,0.017205691409741992],[120,139,69,0.017533079576396653],[120,139,70,0.016529027342399923],[120,139,71,0.015287634351192514],[120,139,72,0.013824486503982037],[120,139,73,0.012167864929266133],[120,139,74,0.010356255040339461],[120,139,75,0.00843594513701515],[120,139,76,0.006458720713358591],[120,139,77,0.004479660335945019],[120,139,78,0.0025550386458104537],[120,139,79,7.403417135014936E-4],[120,140,64,0.015930757725571964],[120,140,65,0.016032981302511465],[120,140,66,0.01629946050029286],[120,140,67,0.016712808611766574],[120,140,68,0.017295068397016177],[120,140,69,0.0175529814406909],[120,140,70,0.016640124778155182],[120,140,71,0.015494622377324704],[120,140,72,0.014129449499867872],[120,140,73,0.012570244716828369],[120,140,74,0.010852892838502711],[120,140,75,0.009021191785253155],[120,140,76,0.00712460934245326],[120,140,77,0.005216135462223089],[120,140,78,0.003350235480167194],[120,140,79,0.001580909308519627],[120,141,64,0.016022805769962078],[120,141,65,0.016085337418836956],[120,141,66,0.01630173259359878],[120,141,67,0.016653181266105106],[120,141,68,0.017162316759203926],[120,141,69,0.017793686453024177],[120,141,70,0.016970367068326574],[120,141,71,0.015918545807405822],[120,141,72,0.014648454217913137],[120,141,73,0.01318295398276523],[120,141,74,0.011555202073049976],[120,141,75,0.009806393219211609],[120,141,76,0.007983585392647737],[120,141,77,0.006137613728109598],[120,141,78,0.004321098041798468],[120,141,79,0.002586548812223249],[120,142,64,0.015948450569884427],[120,142,65,0.015970907773972084],[120,142,66,0.016136566318287776],[120,142,67,0.01642550034988671],[120,142,68,0.016861055139230446],[120,142,69,0.017486783689532905],[120,142,70,0.017469416739623628],[120,142,71,0.016511113407186303],[120,142,72,0.01533559327908115],[120,142,73,0.013962834733632704],[120,142,74,0.012423155094761395],[120,142,75,0.010755036549234577],[120,142,76,0.009003027259264443],[120,142,77,0.007215722838475051],[120,142,78,0.005443833104548154],[120,142,79,0.0037383387548424875],[120,143,64,0.015780265825916445],[120,143,65,0.015761141476271667],[120,143,66,0.015874076045396052],[120,143,67,0.016098371775619753],[120,143,68,0.01645817433844266],[120,143,69,0.016999009824700456],[120,143,70,0.017748057333926686],[120,143,71,0.017212549256551486],[120,143,72,0.016134258822308387],[120,143,73,0.014856889333368583],[120,143,74,0.013407808840423863],[120,143,75,0.011822666550828604],[120,143,76,0.010143377462024018],[120,143,77,0.008416178416034778],[120,143,78,0.0066897602180292],[120,143,79,0.005013480217406682],[120,144,64,0.015552876279103907],[120,144,65,0.015490921612828995],[120,144,66,0.015549382897969508],[120,144,67,0.01570719712863931],[120,144,68,0.015989393746134235],[120,144,69,0.016443334869864552],[120,144,70,0.017098537295047053],[120,144,71,0.017967923826241076],[120,144,72,0.017008033163326525],[120,144,73,0.015828821375678943],[120,144,74,0.014473151184406105],[120,144,75,0.012973729004486071],[120,144,76,0.01136971874357134],[120,144,77,0.009704879880415506],[120,144,78,0.008025771455921623],[120,144,79,0.006380026098693785],[120,145,64,0.015286233966718254],[120,145,65,0.015180885467493715],[120,145,66,0.015183875356686345],[120,145,67,0.015274242272457397],[120,145,68,0.015477981408390726],[120,145,69,0.01584410923562061],[120,145,70,0.016404365274425795],[120,145,71,0.01717431628234956],[120,145,72,0.017929263771820046],[120,145,73,0.01684995841193166],[120,145,74,0.015589583568164072],[120,145,75,0.014177817332997516],[120,145,76,0.012650975335430527],[120,145,77,0.011050238204303429],[120,145,78,0.009419933819389423],[120,145,79,0.007805878166138315],[120,146,64,0.01499729994996622],[120,146,65,0.014848697925337606],[120,146,66,0.014796012565417177],[120,146,67,0.014818895829465573],[120,146,68,0.014944384485491981],[120,146,69,0.015222925537537752],[120,146,70,0.01568832426271102],[120,146,71,0.016358697762928785],[120,146,72,0.017238307152858602],[120,146,73,0.01789409714940885],[120,146,74,0.016729916344526138],[120,146,75,0.015406889347090077],[120,146,76,0.013958412610021356],[120,146,77,0.012423008584500196],[120,146,78,0.010842692240074506],[120,146,79,0.009261383777035106],[120,147,64,0.014700286092360838],[120,147,65,0.014509270391129567],[120,147,66,0.014401516037374077],[120,147,67,0.014357828066940808],[120,147,68,0.014406350639769458],[120,147,69,0.014598700270616211],[120,147,70,0.01497055144410791],[120,147,71,0.015542437617622626],[120,147,72,0.016321422420430113],[120,147,73,0.017302758525778325],[120,147,74,0.017869434984026156],[120,147,75,0.016635338344602995],[120,147,76,0.015265701161045676],[120,147,77,0.013796334649102304],[120,147,78,0.012266880480110282],[120,147,79,0.010719299833189951],[120,148,64,0.01440689138373346],[120,148,65,0.014174976305235946],[120,148,66,0.01401355987883652],[120,148,67,0.01390515062898518],[120,148,68,0.013879052944809444],[120,148,69,0.013987761553753425],[120,148,70,0.01426858852711606],[120,148,71,0.014744311584601051],[120,148,72,0.015424675507686295],[120,148,73,0.01630789258739781],[120,148,74,0.017382138951593285],[120,148,75,0.017840063306552585],[120,148,76,0.01654898582195428],[120,148,77,0.015145804966021076],[120,148,78,0.013667753144890446],[120,148,79,0.012154787993883228],[120,149,64,0.014126532733884197],[120,149,65,0.013855863185037917],[120,149,66,0.013642959463201853],[120,149,67,0.013472577054783498],[120,149,68,0.01337521826696333],[120,149,69,0.013403942906747377],[120,149,70,0.013597440133507386],[120,149,71,0.013980525775560755],[120,149,72,0.014565466967041488],[120,149,73,0.01535331770070172],[120,149,74,0.016335262696536054],[120,149,75,0.017493967016874588],[120,149,76,0.017786959700210575],[120,149,77,0.01644952197118403],[120,149,78,0.015023038979340694],[120,149,79,0.013545441382516264],[120,150,64,0.01386657016863872],[120,150,65,0.013559861128201062],[120,150,66,0.013298358495538018],[120,150,67,0.01306958402992705],[120,150,68,0.012905259075176197],[120,150,69,0.012858683025893627],[120,150,70,0.012969640220598206],[120,150,71,0.013264749857000588],[120,150,72,0.013758608960248844],[120,150,73,0.014454958529684972],[120,150,74,0.015347870835069407],[120,150,75,0.01642295583459438],[120,150,76,0.017658584698873964],[120,150,77,0.017688183435787225],[120,150,78,0.016313015616900094],[120,150,79,0.01487134301712526],[120,151,64,0.013632526369543154],[120,151,65,0.013292987722204271],[120,151,66,0.012986414415199803],[120,151,67,0.012703573324012929],[120,151,68,0.012477408640455026],[120,151,69,0.012361131528171613],[120,151,70,0.01239532651427847],[120,151,71,0.012608159409884016],[120,151,72,0.01301633602960523],[120,151,73,0.013626096579223246],[120,151,74,0.014434244262331714],[120,151,75,0.015429206628854457],[120,151,76,0.016592128170045045],[120,151,77,0.017897992656745198],[120,151,78,0.01752060595011829],[120,151,79,0.016115156191567535],[120,152,64,0.013428300506510123],[120,152,65,0.013059549312360984],[120,152,66,0.0127119820913339],[120,152,67,0.012380034374222122],[120,152,68,0.0120978595918072],[120,152,69,0.011918260638308168],[120,152,70,0.011882322933142694],[120,152,71,0.012019487451160575],[120,152,72,0.012348325056110129],[120,152,73,0.012877359055891269],[120,152,74,0.013605935111307173],[120,152,75,0.0145251375731447],[120,152,76,0.015618751274444957],[120,152,77,0.01686426776669065],[120,152,78,0.01823393496119238],[120,152,79,0.017262247032647757],[120,153,64,0.013256376320480925],[120,153,65,0.012862338588202496],[120,153,66,0.012478295773301253],[120,153,67,0.012102707481161589],[120,153,68,0.011770905801248259],[120,153,69,0.011534982797718191],[120,153,70,0.01143622998749127],[120,153,71,0.011505085102585631],[120,153,72,0.011761724387343537],[120,153,73,0.012216715568868802],[120,153,74,0.012871731206208756],[120,153,75,0.013720322038836259],[120,153,76,0.014748749878126449],[120,153,77,0.01593687951790081],[120,153,78,0.017259129082802208],[120,153,79,0.01830083945877508],[120,154,64,0.013118024420550342],[120,154,65,0.012702828455496923],[120,154,66,0.012287149265146144],[120,154,67,0.011873747589891084],[120,154,68,0.011499087576472822],[120,154,69,0.01121427417942143],[120,154,70,0.011060523140907132],[120,154,71,0.011068991394828443],[120,154,72,0.011261192118853144],[120,154,73,0.01164948264510096],[120,154,74,0.012237625493938982],[120,154,75,0.013021422683452018],[120,154,76,0.01398942336257396],[120,154,77,0.015123704719941974],[120,154,78,0.016400726034547],[120,154,79,0.017792255659367283],[120,155,64,0.013013498766995538],[120,155,65,0.01258136216833707],[120,155,66,0.01213907430022879],[120,155,67,0.011693888635732064],[120,155,68,0.011283340145993841],[120,155,69,0.01095730409851654],[120,155,70,0.010756659126561536],[120,155,71,0.010713012197991206],[120,155,72,0.010848943514448352],[120,155,73,0.011178336032856992],[120,155,74,0.011706790410375636],[120,155,75,0.01243212603657793],[120,155,76,0.01334496868585273],[120,155,77,0.01442942520031215],[120,155,78,0.015663845500357994],[120,155,79,0.01702167211787245],[120,156,64,0.012942227318296928],[120,156,65,0.012497339702680365],[120,156,66,0.012033517099049438],[120,156,67,0.011562608441215046],[120,156,68,0.011123145428027555],[120,156,69,0.0107635703137039],[120,156,70,0.010524190215412958],[120,156,71,0.010436808273435315],[120,156,72,0.010524807553050807],[120,156,73,0.010803330768373516],[120,156,74,0.011279557136996462],[120,156,75,0.01195307751326475],[120,156,76,0.012816368792800199],[120,156,77,0.013855368433233185],[120,156,78,0.015050149797635973],[120,156,79,0.016375698899494442],[120,157,64,0.012902996826487231],[120,157,65,0.012449400359419206],[120,157,66,0.011969013100081423],[120,157,67,0.011478294157317416],[120,157,68,0.011016687081091115],[120,157,69,0.010631040221648978],[120,157,70,0.010360886438999429],[120,157,71,0.010237992446188402],[120,157,72,0.010286292592613896],[120,157,73,0.010521928981343043],[120,157,74,0.010953399702486218],[120,157,75,0.011581816781933664],[120,157,76,0.012401275267172709],[120,157,77,0.013399334701323474],[120,157,78,0.014557614074810255],[120,157,79,0.0158525011930216],[120,158,64,0.012894131771014117],[120,158,65,0.012435601591496107],[120,158,66,0.011943359860097091],[120,158,67,0.011438408248979301],[120,158,68,0.01096100884119194],[120,158,69,0.010556297952674674],[120,158,70,0.01026286577559721],[120,158,71,0.010112235902204865],[120,158,72,0.01012866114511952],[120,158,73,0.010329035416641305],[120,158,74,0.010722923883487407],[120,158,75,0.011312713411086287],[120,158,76,0.01209388511375018],[120,158,77,0.013055410635771713],[120,158,78,0.014180273605743485],[120,158,79,0.015446117534163748],[120,159,64,0.012913667426761307],[120,159,65,0.012453594055767016],[120,159,66,0.011953788127024731],[120,159,67,0.011439655031768766],[120,159,68,0.010952176157633354],[120,159,69,0.010534697383378864],[120,159,70,0.010224732315146213],[120,159,71,0.010053383620394105],[120,159,72,0.010045013760814426],[120,159,73,0.010217040651909967],[120,159,74,0.010579860858602791],[120,159,75,0.011136902716573494],[120,159,76,0.011884811553296078],[120,159,77,0.012813768973062457],[120,159,78,0.013907947968839113],[120,159,79,0.015146105432712862],[120,160,64,0.012959517066913407],[120,160,65,0.0125007928962262],[120,160,66,0.01199713109478638],[120,160,67,0.011478147773473972],[120,160,68,0.010985441146814334],[120,160,69,0.010560521089267067],[120,160,70,0.010239722425502125],[120,160,71,0.010053578955596488],[120,160,72,0.010026382024646905],[120,160,73,0.010175871993411953],[120,160,74,0.010513065570121117],[120,160,75,0.011042221728788435],[120,160,76,0.011760948707960805],[120,160,77,0.01266045435806826],[120,160,78,0.013725941887706502],[120,160,79,0.014937152851564937],[120,161,64,0.013029633305953662],[120,161,65,0.012574545270820695],[120,161,66,0.012069991855820165],[120,161,67,0.01154957638131129],[120,161,68,0.011055410890948672],[120,161,69,0.010627145268361511],[120,161,70,0.010299858950262399],[120,161,71,0.010103397395576757],[120,161,72,0.010061830673311878],[120,161,73,0.01019305203596792],[120,161,74,0.01050851974873834],[120,161,75,0.011013145196943292],[120,161,76,0.011705330049234361],[120,161,77,0.012577155014457336],[120,161,78,0.013614722498053563],[120,161,79,0.014798655241944325],[120,162,64,0.01312216359226053],[120,162,65,0.012672294139408354],[120,162,66,0.012168909073091273],[120,162,67,0.011649375702361778],[120,162,68,0.011156219116374357],[120,162,69,0.010727210674998136],[120,162,70,0.010396113476632024],[120,162,71,0.010191989522626376],[120,162,72,0.010138568847422882],[120,162,73,0.010253764876783419],[120,162,74,0.010549339557811193],[120,162,75,0.011030721545602546],[120,162,76,0.011696980474943245],[120,162,77,0.012540960093922419],[120,162,78,0.01354957279216714],[120,162,79,0.014704257822139603],[120,163,64,0.013235599863497906],[120,163,65,0.012791738335428772],[120,163,66,0.01229052089932226],[120,163,67,0.01177289447176059],[120,163,68,0.011281701294048041],[120,163,69,0.010852799611637843],[120,163,70,0.010518576720532614],[120,163,71,0.010307233218510788],[120,163,72,0.010242070500097728],[120,163,73,0.010340929977588098],[120,163,74,0.010615787815414645],[120,163,75,0.011072508696887973],[120,163,76,0.011710761876061997],[120,163,77,0.012524102505733548],[120,163,78,0.013500220977927063],[120,163,79,0.014621362768285386],[120,164,64,0.01336673001648949],[120,164,65,0.012928624768965443],[120,164,66,0.012429215011227372],[120,164,67,0.011912912914806536],[120,164,68,0.011422787575965342],[120,164,69,0.010992714827313453],[120,164,70,0.010653636167511601],[120,164,71,0.010432824199130743],[120,164,72,0.010353092627654102],[120,164,73,0.010432162888956157],[120,164,74,0.010682191415699508],[120,164,75,0.011109461276680346],[120,164,76,0.011714241648306842],[120,164,77,0.012490818306699273],[120,164,78,0.013427698064992756],[120,164,79,0.01450798982602788],[120,165,64,0.0134978654069749],[120,165,65,0.013062966766410167],[120,165,66,0.012562519832157636],[120,165,67,0.012044274222410183],[120,165,68,0.011551430197222165],[120,165,69,0.011115824006311479],[120,165,70,0.010766908744805431],[120,165,71,0.01053100190045332],[120,165,72,0.010430419007977766],[120,165,73,0.010482768404729998],[120,165,74,0.010700411308927424],[120,165,75,0.01109009115808259],[120,165,76,0.011652735862675649],[120,165,77,0.012383436351323503],[120,165,78,0.01327160451135504],[120,165,79,0.014301313365616611],[120,166,64,0.01361009723243715],[120,166,65,0.013173352224877996],[120,166,66,0.012666435952721813],[120,166,67,0.012140236936279174],[120,166,68,0.011637984270558161],[120,166,69,0.011189468104541847],[120,166,70,0.01082266662496149],[120,166,71,0.010562973385928095],[120,166,72,0.010432253839792642],[120,166,73,0.010448067158874332],[120,166,74,0.010623057773532061],[120,166,75,0.010964520761688619],[120,166,76,0.011474144935192079],[120,166,77,0.012147937182011586],[120,166,78,0.012976331342967553],[120,166,79,0.013944484630364927],[120,167,64,0.013690704903339596],[120,167,65,0.013245034267441901],[120,167,66,0.01272414077928815],[120,167,67,0.01218177642636597],[120,167,68,0.01166109590501624],[120,167,69,0.011189898274234202],[120,167,70,0.010794762801482217],[120,167,71,0.0105002508744415],[120,167,72,0.01032788327332051],[120,167,73,0.010295286769066445],[120,167,74,0.010415514674758562],[120,167,75,0.010696545680698548],[120,167,76,0.011140965007093058],[120,167,77,0.01174583161449239],[120,167,78,0.012502734924110392],[120,167,79,0.013398044220748154],[120,168,64,0.0137313322449146],[120,168,65,0.013268095937954132],[120,168,66,0.012724142057712785],[120,168,67,0.012155733410107328],[120,168,68,0.011605851869587102],[120,168,69,0.011100428913130934],[120,168,70,0.01066478656008424],[120,168,71,0.010322806183962831],[120,168,72,0.010095823524622016],[120,168,73,0.010001697022597445],[120,168,74,0.010054054305403721],[120,168,75,0.010261721352489402],[120,168,76,0.010628338562080496],[120,168,77,0.011152167642089171],[120,168,78,0.011826092951474023],[120,168,79,0.01263782063092218],[120,169,64,0.013725935685733456],[120,169,65,0.013235382955926916],[120,169,66,0.012658197287131703],[120,169,67,0.012052727329957236],[120,169,68,0.011461694325726782],[120,169,69,0.010909357846119398],[120,169,70,0.010419990468924242],[120,169,71,0.010017003728743562],[120,169,72,0.00972175741731444],[120,169,73,0.009552546271203834],[120,169,74,0.009523769082067179],[120,169,75,0.009645284955128458],[120,169,76,0.009921961131082176],[120,169,77,0.010353416478069078],[120,169,78,0.010933964456640324],[120,169,79,0.011652759064775338],[120,170,64,0.013668549771758182],[120,170,65,0.013140253582464735],[120,170,66,0.01251905136923714],[120,170,67,0.011864890094288035],[120,170,68,0.011220159197710283],[120,170,69,0.010607715024479866],[120,170,70,0.01005105272122702],[120,170,71,0.009573377897307589],[120,170,72,0.009196326662481866],[120,170,73,0.008938867290949688],[120,170,74,0.008816388756751937],[120,170,75,0.008839981069275225],[120,170,76,0.009015912019831918],[120,170,77,0.009345304633909386],[120,170,78,0.009824019311646082],[120,170,79,0.010442744334537828],[120,171,64,0.013550867980839923],[120,171,65,0.012974143625331265],[120,171,66,0.012297990585089857],[120,171,67,0.01158341834778119],[120,171,68,0.010872436431622624],[120,171,69,0.010186838090230374],[120,171,70,0.009549673287346449],[120,171,71,0.00898425339103482],[120,171,72,0.008512778592453031],[120,171,73,0.008155151471257456],[120,171,74,0.007927982167949084],[120,171,75,0.007843790299987998],[120,171,76,0.007910408432954076],[120,171,77,0.008130591593334477],[120,171,78,0.008501836988684284],[120,171,79,0.00901641778714503],[120,172,64,0.01335963663066434],[120,172,65,0.012723944431514228],[120,172,66,0.011982210814912344],[120,172,67,0.01119594226471318],[120,172,68,0.010406750225760026],[120,172,69,0.009635772990555798],[120,172,70,0.008906002177149942],[120,172,71,0.008241206954084328],[120,172,72,0.007664465922739373],[120,172,73,0.007196890063888118],[120,172,74,0.006856542430340028],[120,172,75,0.006657559936236132],[120,172,76,0.006609482259579897],[120,172,77,0.006716792540929366],[120,172,78,0.00697867423090573],[120,172,79,0.007388988115574151],[120,173,64,0.013073859484432408],[120,173,65,0.012369191528984495],[120,173,66,0.01155199773262107],[120,173,67,0.010683708678656685],[120,173,68,0.009805557139979765],[120,173,69,0.008938497657653937],[120,173,70,0.008105897950470427],[120,173,71,0.007332368769619466],[120,173,72,0.006642197968731771],[120,173,73,0.006057981083622668],[120,173,74,0.0055994543321976845],[120,173,75,0.005282535604995724],[120,173,76,0.005118578673626498],[120,173,77,0.0051138455009338375],[120,173,78,0.005269201196223701],[120,173,79,0.005580035824697168],[120,174,64,0.01266181046384465],[120,174,65,0.011879061386461083],[120,174,66,0.010977716516805458],[120,174,67,0.010018576175761011],[120,174,68,0.009042559809773794],[120,174,69,0.008070966593170368],[120,174,70,0.00712801444384258],[120,174,71,0.006239561635381962],[120,174,72,0.005431441590311899],[120,174,73,0.004728000308122467],[120,174,74,0.004150842574957075],[120,174,75,0.003717792752126298],[120,174,76,0.0034420755871496012],[120,174,77,0.003331722136848093],[120,174,78,0.003389205540345946],[120,174,79,0.0036113110341339473],[120,175,64,0.012093457219938028],[120,175,65,0.011224655357199907],[120,175,66,0.010231865909086058],[120,175,67,0.009174731584373808],[120,175,68,0.008093961585371064],[120,175,69,0.007011764796125998],[120,175,70,0.0059537042928933335],[120,175,71,0.004947297560306502],[120,175,72,0.0040202516738582494],[120,175,73,0.0031989080101655345],[120,175,74,0.0025069028753598194],[120,175,75,0.001964050081448337],[120,175,76,0.001585451135662682],[120,175,77,0.0013808383418190172],[120,175,78,0.001354155748864506],[120,175,79,0.0015033825236244972],[120,176,64,0.011391136086139942],[120,176,65,0.010429300218250023],[120,176,66,0.009338709337746746],[120,176,67,0.008177296816108586],[120,176,68,0.006985641959372776],[120,176,69,0.005787401894227602],[120,176,70,0.004609950645107326],[120,176,71,0.003482847002966426],[120,176,72,0.0024359717206739974],[120,176,73,0.0014978816517108979],[120,176,74,6.943874657205304E-4],[120,176,75,4.736120244623195E-5],[120,176,76,-4.262204512647661E-4],[120,176,77,-7.149916551464897E-4],[120,176,78,-8.136665502612018E-4],[120,176,79,-7.232572763291122E-4],[120,177,64,0.010592655688154009],[120,177,65,0.009532010358984766],[120,177,66,0.00833839027180266],[120,177,67,0.007067453492673621],[120,177,68,0.0057596985283016764],[120,177,69,0.004440720978708029],[120,177,70,0.003140122819381744],[120,177,71,0.0018898398189238703],[120,177,72,7.221845757632843E-4],[120,177,73,-3.3188586865054757E-4],[120,177,74,-0.0012442709722529463],[120,177,75,-0.0019909897061680414],[120,177,76,-0.0025531995447373892],[120,177,77,-0.002917965727590126],[120,177,78,-0.0030787754790262906],[120,177,79,-0.003035792254151516],[120,178,64,0.009736614371083628],[120,178,65,0.008572868060859652],[120,178,66,0.007272458255139616],[120,178,67,0.0058882160589011035],[120,178,68,0.0044605845669930845],[120,178,69,0.003017531465293072],[120,178,70,0.0015912457396716818],[120,178,71,2.1631967637753813E-4],[120,178,72,-0.001072296247756158],[120,178,73,-0.0022411063218718535],[120,178,74,-0.003259643318751488],[120,178,75,-0.004101796283078667],[120,178,76,-0.004746886100677033],[120,178,77,-0.005180482962293569],[120,178,78,-0.005394960237397148],[120,178,79,-0.005389779670221979],[120,179,64,0.008861827922719528],[120,179,65,0.007592384068040424],[120,179,66,0.00618314488356788],[120,179,67,0.004683602971475185],[120,179,68,0.003134153721668801],[120,179,69,0.0015655053291970687],[120,179,70,1.2726293015803026E-5],[120,179,71,-0.0014867196336623943],[120,179,72,-0.0028950986107015436],[120,179,73,-0.0041762924493101],[120,179,74,-0.005297437641404069],[120,179,75,-0.006230310806139299],[120,179,76,-0.006952454091701189],[120,179,77,-0.0074480344850636196],[120,179,78,-0.0077084313959745855],[120,179,79,-0.007732547289945346],[120,180,64,0.00800672204560833],[120,180,65,0.00663082418182316],[120,180,66,0.005112609133116716],[120,180,67,0.003497782341864811],[120,180,68,0.0018266862323093574],[120,180,69,1.3306441674504444E-4],[120,180,70,-0.0015449168576550005],[120,180,71,-0.0031667790060642014],[120,180,72,-0.004691926347157034],[120,180,73,-0.006081595156056173],[120,180,74,-0.007300549084579421],[120,180,75,-0.008318513919931343],[120,180,76,-0.00911134507504847],[120,180,77,-0.009661921628736664],[120,180,78,-0.009960761157764812],[120,180,79,-0.010006350022171775],[120,181,64,0.0072086889661389835],[120,181,65,0.005727501260953996],[120,181,66,0.004102151426712298],[120,181,67,0.0023741914335721945],[120,181,68,5.838961065727786E-4],[120,181,69,-0.0012317417088475381],[120,181,70,-0.0030313204970015594],[120,181,71,-0.00477128037073407],[120,181,72,-0.006408156754077218],[120,181,73,-0.007900581821703511],[120,181,74,-0.009211026120463005],[120,181,75,-0.010307273222328502],[120,181,76,-0.011163620688799477],[120,181,77,-0.01176180106061964],[120,181,78,-0.012091617019697836],[120,181,79,-0.012151285298295648],[120,182,64,0.00650340752587027],[120,182,65,0.004920031966169265],[120,182,66,0.0031913957827114045],[120,182,67,0.0013546293706905943],[120,182,68,-5.500813746619232E-4],[120,182,69,-0.002482367970636941],[120,182,70,-0.0043975416465409],[120,182,71,-0.006248975039371991],[120,182,72,-0.007990401336199498],[120,182,73,-0.009577955981662438],[120,182,74,-0.010971953283896128],[120,182,75,-0.01213839068305964],[120,182,76,-0.013050173884393392],[120,182,77,-0.013688056498728089],[120,182,78,-0.014041288273688871],[120,182,79,-0.014107966434348201],[120,183,64,0.005924126057172358],[120,183,65,0.004243557543491211],[120,183,66,0.0024174393453481697],[120,183,67,4.783223722697365E-4],[120,183,68,-0.0015337224811067455],[120,183,69,-0.003574916652037366],[120,183,70,-0.005597320485040396],[120,183,71,-0.007551334538946576],[120,183,72,-0.009388030198668953],[120,183,73,-0.011061218654249748],[120,183,74,-0.01252925052942382],[120,183,75,-0.0137565388778648],[120,183,76,-0.01471479870823599],[120,183,77,-0.015383996645463704],[120,183,78,-0.015753004781341128],[120,183,79,-0.01581995320847553],[120,184,64,0.005500907302261978],[120,184,65,0.003729927897322052],[120,184,66,0.0018139685542798408],[120,184,67,-2.190392146072706E-4],[120,184,68,-0.002329168886892381],[120,184,69,-0.00446929160069502],[120,184,70,-0.006588341998469917],[120,184,71,-0.008633924449271397],[120,184,72,-0.010554660502284605],[120,184,73,-0.012302271604745734],[120,184,74,-0.01383338935783383],[120,184,75,-0.015111086023202115],[120,184,76,-0.016106118438998663],[120,184,77,-0.016797878953800565],[120,184,78,-0.017175047435880515],[120,184,79,-0.017235938859443634],[120,185,64,0.00525983459214791],[120,185,65,0.0034068481614669697],[120,185,66,0.0014103411683826091],[120,185,67,-7.062928505251671E-4],[120,185,68,-0.002903303293068652],[120,185,69,-0.005130364455592227],[120,185,70,-0.007333496987940026],[120,185,71,-0.009457761786306688],[120,185,72,-0.011449609413653621],[120,185,73,-0.013258962847172259],[120,185,74,-0.01484102586047053],[120,185,75,-0.016157809788412435],[120,185,76,-0.017179371869887494],[120,185,77,-0.01788475881452901],[120,185,78,-0.018262649689550235],[120,185,79,-0.01831169266823641],[120,186,64,0.0052221784601436],[120,186,65,0.003296986934162292],[120,186,66,0.0012306333180310343],[120,186,67,-9.578255146217051E-4],[120,186,68,-0.0032288475934793203],[120,186,69,-0.005529153622839957],[120,186,70,-0.007802143090734284],[120,186,71,-0.009990656492815974],[120,186,72,-0.012039311994605062],[120,186,73,-0.013896574687557476],[120,186,74,-0.015516550822670078],[120,186,75,-0.016860499844726318],[120,186,76,-0.01789805749671091],[120,186,77,-0.018608163713689403],[120,186,78,-0.018979689474579474],[120,186,79,-0.01901175722457033],[120,187,64,0.005403522823802099],[120,187,65,0.0034170453023475576],[120,187,66,0.0012926507206461853],[120,187,67,-9.546260341570775E-4],[120,187,68,-0.0032854843924736746],[120,187,69,-0.005644016754760323],[120,187,70,-0.007971366492619156],[120,187,71,-0.010208537613527914],[120,187,72,-0.012298704481762214],[120,187,73,-0.014189254608762174],[120,187,74,-0.015833557012691412],[120,187,75,-0.017192449083474188],[120,187,76,-0.018235435333032516],[120,187,77,-0.01894159185712529],[120,187,78,-0.019300170781162616],[120,187,79,-0.019310899403502984],[120,188,64,0.005812849829669496],[120,188,65,0.0037767857410917296],[120,188,66,0.0016069031566157772],[120,188,67,-6.853689112453944E-4],[120,188,68,-0.003061002714105902],[120,188,69,-0.00546185751285436],[120,188,70,-0.007827245028832825],[120,188,71,-0.010096764742767439],[120,188,72,-0.012212573408020162],[120,188,73,-0.014121389286416763],[120,188,74,-0.015776223759439004],[120,188,75,-0.017137833399329692],[120,188,76,-0.018175886023130288],[120,188,77,-0.01886983469424272],[120,188,78,-0.019209494076869883],[120,188,79,-0.019195313984570774],[120,189,64,0.006451582417519201],[120,189,65,0.004378019936658987],[120,189,66,0.0021755412671688157],[120,189,67,-1.475305576961946E-4],[120,189,68,-0.002552468770707718],[120,189,69,-0.004979347417732659],[120,189,70,-0.0073661133861788975],[120,189,71,-0.009651425338332121],[120,189,72,-0.011776871012579628],[120,189,73,-0.013688922007978142],[120,189,74,-0.015340618890982037],[120,189,75,-0.016692979888355046],[120,189,76,-0.017716126861963895],[120,189,77,-0.018390122695749075],[120,189,78,-0.018705514658830597],[120,189,79,-0.018663578737434697],[120,190,64,0.007312583625096649],[120,190,65,0.005213554546549888],[120,190,66,0.00299125470278842],[120,190,67,6.514611214670575E-4],[120,190,68,-0.0017674226836833725],[120,190,69,-0.004204163607773317],[120,190,70,-0.006595831129246427],[120,190,71,-0.008880618496019939],[120,190,72,-0.010999997375039858],[120,190,73,-0.012900613742330654],[120,190,74,-0.014535918066431026],[120,190,75,-0.015867523255188185],[120,190,76,-0.016866284259146887],[120,190,77,-0.017513093650740313],[120,190,78,-0.01779938792338136],[120,190,79,-0.017727359674452867],[120,191,64,0.008379111621264921],[120,191,65,0.006266093877387651],[120,191,66,0.004036130620681699],[120,191,67,0.001693042828884495],[120,191,68,-7.251020706688659E-4],[120,191,69,-0.003156243342785394],[120,191,70,-0.005537054279598077],[120,191,71,-0.0078057257743655685],[120,191,72,-0.009904049691616491],[120,191,73,-0.011779248075570292],[120,191,74,-0.013385541486074704],[120,191,75,-0.014685450158955364],[120,191,76,-0.01565082210118975],[120,191,77,-0.016263582647296854],[120,191,78,-0.016516200418074407],[120,191,79,-0.01641186503249592],[120,192,64,0.009623729425207714],[120,192,65,0.007507098432153308],[120,192,66,0.005280471503106852],[120,192,67,0.002946296670506369],[120,192,68,5.423065695578337E-4],[120,192,69,-0.0018690560989515236],[120,192,70,-0.004224511177515936],[120,192,71,-0.006462669648580796],[120,192,72,-0.008526039087671942],[120,192,73,-0.010362780189564028],[120,192,74,-0.011928207908853723],[120,192,75,-0.013186031153580911],[120,192,76,-0.014109325373324795],[120,192,77,-0.014681232788181151],[120,192,78,-0.014895385408591257],[120,192,79,-0.014756046394420767],[120,193,64,0.01100716824249641],[120,193,65,0.00889559825248547],[120,193,66,0.00668157124544784],[120,193,67,0.0043666946377795765],[120,193,68,0.001988387730239758],[120,193,69,-3.9089410644060717E-4],[120,193,70,-0.0027082833512737875],[120,193,71,-0.004903160156200967],[120,193,72,-0.006919075330301404],[120,193,73,-0.008705430013559964],[120,193,74,-0.010218905842375996],[120,193,75,-0.011424639795361527],[120,193,76,-0.012297138299469037],[120,193,77,-0.012820925569890524],[120,193,78,-0.01299092154895966],[120,193,79,-0.012812545195856655],[120,194,64,0.012477143325794632],[120,194,65,0.010376959960000043],[120,194,66,0.008182448444280975],[120,194,67,0.005894805754091845],[120,194,68,0.003551187075799378],[120,194,69,0.0012138178190821897],[120,194,70,-0.0010550921085568027],[120,194,71,-0.0031959302742257563],[120,194,72,-0.005153519767507186],[120,194,73,-0.006878719625442117],[120,194,74,-0.008329781698791994],[120,194,75,-0.00947345839915456],[120,194,76,-0.01028585614665915],[120,194,77,-0.010753029719717018],[120,194,78,-0.010871313088225936],[120,194,79,-0.010647382686219276],[120,195,64,0.013967752781941114],[120,195,65,0.011882295065600209],[120,195,66,0.009711277493899575],[120,195,67,0.007455758142878629],[120,195,68,0.0051527139456465625],[120,195,69,0.002864079981396654],[120,195,70,6.513330091146782E-4],[120,195,71,-0.0014270094177487125],[120,195,72,-0.0033171415287021194],[120,195,73,-0.004971489686355607],[120,195,74,-0.006349994828899912],[120,195,75,-0.00742115168955821],[120,195,76,-0.008162799846978739],[120,195,77,-0.008562662031137518],[120,195,78,-0.008618625477853224],[120,195,79,-0.008338762488069125],[120,196,64,0.015431089939062555],[120,196,65,0.013362892714309663],[120,196,66,0.011218446178943695],[120,196,67,0.008998859279057565],[120,196,68,0.006741037835229981],[120,196,69,0.004506654150503995],[120,196,70,0.002356455121195828],[120,196,71,3.478441139151692E-4],[120,196,72,-0.0014667854492067718],[120,196,73,-0.0030414893278520997],[120,196,74,-0.004337979091689778],[120,196,75,-0.0053265910629023425],[120,196,76,-0.005987012855700763],[120,196,77,-0.006308763155495186],[120,196,78,-0.006291420738077236],[120,196,79,-0.005944599081194854],[120,197,64,0.016857996465375363],[120,197,65,0.01481229066940145],[120,197,66,0.012699823665079485],[120,197,67,0.010522024170986896],[120,197,68,0.008315823179501745],[120,197,69,0.006142559276784275],[120,197,70,0.00406215933877703],[120,197,71,0.002130810007080782],[120,197,72,3.9938072414012375E-4],[120,197,73,-0.0010879311690658755],[120,197,74,-0.002294728092133951],[120,197,75,-0.003193307805892315],[120,197,76,-0.0037653224282092226],[120,197,77,-0.004002196747956881],[120,197,78,-0.003905302046883958],[120,197,79,-0.003485881980028138],[120,198,64,0.018239242955986786],[120,198,65,0.016223574156593822],[120,198,66,0.014150448721221938],[120,198,67,0.012021951670495024],[120,198,68,0.009875123145399012],[120,198,69,0.007770807799578132],[120,198,70,0.0057679394097733235],[120,198,71,0.0039213131996754455],[120,198,72,0.002280103717951313],[120,198,73,8.865992303831525E-4],[120,198,74,-2.2484245416410032E-4],[120,198,75,-0.0010286121392796095],[120,198,76,-0.0015084371313689089],[120,198,77,-0.0016577349562836839],[120,198,78,-0.0014797293288216706],[120,198,79,-9.873251307669995E-4],[120,199,64,0.01776011282047301],[120,199,65,0.017586893953622267],[120,199,66,0.0155618117683037],[120,199,67,0.013491189416071834],[120,199,68,0.011412248892130907],[120,199,69,0.009385115317828579],[120,199,70,0.0074674970336286095],[120,199,71,0.005712573204630762],[120,199,72,0.004167613418862253],[120,199,73,0.002872807526683358],[120,199,74,0.0018603103646888327],[120,199,75,0.0011535056838650043],[120,199,76,7.664932757019698E-4],[120,199,77,7.038029641882116E-4],[120,199,78,9.603388091246812E-4],[120,199,79,0.00152155655001878],[120,200,64,0.01657134038643401],[120,200,65,0.018594955426151347],[120,200,66,0.016923316005012887],[120,200,67,0.014919689650224414],[120,200,68,0.012917432552150694],[120,200,69,0.010975680345917812],[120,200,70,0.009150644775321284],[120,200,71,0.007493633147345528],[120,200,72,0.0060497775097956615],[120,200,73,0.004856966849597838],[120,200,74,0.003944986659869006],[120,200,75,0.0033348699130202253],[120,200,76,0.0030384631644111777],[120,200,77,0.0030582111990456328],[120,200,78,0.00338716332537538],[120,200,79,0.004009204118380149],[120,201,64,0.015465661009193808],[120,201,65,0.01742784606495398],[120,201,66,0.018223657957207644],[120,201,67,0.01629629052591131],[120,201,68,0.014379423717777036],[120,201,69,0.012530907653035267],[120,201,70,0.010805164728845185],[120,201,71,0.009251358757201865],[120,201,72,0.00791224218644653],[120,201,73,0.006823198012116168],[120,201,74,0.006011480408855479],[120,201,75,0.005495657818659014],[120,201,76,0.005285261932895206],[120,201,77,0.005380645708905627],[120,201,78,0.0057730532692377426],[120,201,79,0.006444904245545295],[120,202,64,0.014453952771478464],[120,202,65,0.01634364564739725],[120,202,66,0.018259461932190184],[120,202,67,0.01761012284043786],[120,202,68,0.015787019528814884],[120,202,69,0.014039075461400442],[120,202,70,0.012418623405708616],[120,202,71,0.010972408005563514],[120,202,72,0.009740559875806446],[120,202,73,0.008755754831169945],[120,202,74,0.008042561942504118],[120,202,75,0.0076169838332205185],[120,202,76,0.007486192347704647],[120,202,77,0.007648462443935792],[120,202,78,0.008093306887270477],[120,202,79,0.008801814053935934],[120,203,64,0.013544676790512902],[120,203,65,0.015350997168443637],[120,203,66,0.017178861395218386],[120,203,67,0.018851942067606844],[120,203,68,0.017130528398566998],[120,203,69,0.015489946731823252],[120,203,70,0.013980143289693662],[120,203,71,0.01264517206220822],[120,203,72,0.01152230487297966],[120,203,73,0.010641315728781763],[120,203,74,0.010023942784986913],[120,203,75,0.009683530996679353],[120,203,76,0.009624858262713372],[120,203,77,0.009844147609487966],[120,203,78,0.010329267705232341],[120,203,79,0.011060123746624736],[120,204,64,0.012742922804040437],[120,204,65,0.014455432825482086],[120,204,66,0.016186118839187014],[120,204,67,0.017920767764288657],[120,204,68,0.018403167350651214],[120,204,69,0.016876324710649183],[120,204,70,0.015482131456629163],[120,204,71,0.014261688212891957],[120,204,72,0.013249177797638007],[120,204,73,0.012471282783352371],[120,204,74,0.011946768104855267],[120,204,75,0.011686231421222888],[120,204,76,0.011692023695719528],[120,204,77,0.011958342218314716],[120,204,78,0.012471498060589753],[120,204,79,0.013210359725172196],[120,205,64,0.012049544276174646],[120,205,65,0.013658422892380973],[120,205,66,0.015283173504408842],[120,205,67,0.01690631755630333],[120,205,68,0.01848853664216608],[120,205,69,0.018195552850069175],[120,205,70,0.016921965607072962],[120,205,71,0.015819525342372465],[120,205,72,0.014919099746703336],[120,205,73,0.014244089390570975],[120,205,74,0.013810138224762986],[120,205,75,0.013624997510213982],[120,205,76,0.01368854527967961],[120,205,77,0.01399296321698157],[120,205,78,0.01452307262794993],[120,205,79,0.015256830972726138],[120,206,64,0.011460383791676956],[120,206,65,0.012956511811203083],[120,206,66,0.01446698519104927],[120,206,67,0.0159707841044805],[120,206,68,0.01742813381933319],[120,206,69,0.018792012438050967],[120,206,70,0.018303637800553337],[120,206,71,0.01732364253954046],[120,206,72,0.016538296984855934],[120,206,73,0.015967517672079476],[120,206,74,0.015623660630404297],[120,206,75,0.015511505674507514],[120,206,76,0.01562838012851945],[120,206,77,0.01596442351217207],[120,206,78,0.016502994532653272],[120,206,79,0.01722122154635615],[120,207,64,0.010966749076104388],[120,207,65,0.012341267272802764],[120,207,66,0.01372908621065932],[120,207,67,0.015105416357218644],[120,207,68,0.01643001079004083],[120,207,69,0.0176587557812912],[120,207,70,0.018753948874224893],[120,207,71,0.018786557015334784],[120,207,72,0.018120961834335196],[120,207,73,0.017657724410261335],[120,207,74,0.017405730374038853],[120,207,75,0.017366640890961977],[120,207,76,0.017535126849706827],[120,207,77,0.017899226122468304],[120,207,78,0.018440824894122923],[120,207,79,0.019136263906056362],[120,208,64,0.010560294487154852],[120,208,65,0.011803112785494268],[120,208,66,0.013058850530004142],[120,208,67,0.014298832239214],[120,208,68,0.015482365743374547],[120,208,69,0.016568434625750007],[120,208,70,0.017522963987235893],[120,208,71,0.01831909329456508],[120,208,72,0.01893723305240672],[120,208,73,0.019324716055792945],[120,208,74,0.019165564264663214],[120,208,75,0.01919882471819529],[120,208,76,0.01941646990124303],[120,208,77,0.0191674693863837],[120,208,78,0.018695221740649113],[120,208,79,0.01809497344533914],[120,209,64,0.010232562830575201],[120,209,65,0.011332704503358949],[120,209,66,0.01244632531459723],[120,209,67,0.01354087209637581],[120,209,68,0.014575279696454497],[120,209,69,0.015511788157715145],[120,209,70,0.01632010243525691],[120,209,71,0.016977379758196815],[120,209,72,0.017468090397777112],[120,209,73,0.017783797536976183],[120,209,74,0.017922855536746652],[120,209,75,0.01789002600826573],[120,209,76,0.017696011211176747],[120,209,77,0.017356904403587618],[120,209,78,0.016893556869399175],[120,209,79,0.01633086144117465],[120,210,64,0.009974048391549415],[120,210,65,0.010920419875631871],[120,210,66,0.011882002110144951],[120,210,67,0.012822490158593342],[120,210,68,0.013700555925105202],[120,210,69,0.014481816332483959],[120,210,70,0.01513985419505177],[120,210,71,0.01565591330544552],[120,210,72,0.016018558478995464],[120,210,73,0.016223274832047743],[120,210,74,0.016272006084917218],[120,210,75,0.016172631763382662],[120,210,76,0.015938383251543432],[120,210,77,0.015587198722539867],[120,210,78,0.015141017041195706],[120,210,79,0.014625010793155447],[120,211,64,0.00977404234506965],[120,211,65,0.010556100797872668],[120,211,66,0.011356456422447805],[120,211,67,0.012135287573288096],[120,211,68,0.012851143775244123],[120,211,69,0.013473093894088992],[120,211,70,0.013978636968498543],[120,211,71,0.014353102868530837],[120,211,72,0.014589109855496706],[120,211,73,0.014685982539705534],[120,211,74,0.014649130524872666],[120,211,75,0.014489388078815366],[120,211,76,0.014222315215972638],[120,211,77,0.01386746061760192],[120,211,78,0.01344758684960965],[120,211,79,0.012987858365237725],[120,212,64,0.009620581992275742],[120,212,65,0.010228901289400693],[120,212,66,0.01086009320416381],[120,212,67,0.011471153513734449],[120,212,68,0.012020673507188615],[120,212,69,0.012481199111081625],[120,212,70,0.012834121182990337],[120,212,71,0.013068784366956647],[120,212,72,0.013181743586101519],[120,212,73,0.013176002909228988],[120,212,74,0.013060237573815161],[120,212,75,0.01284799996522155],[120,212,76,0.012556910363923141],[120,212,77,0.012207833278597632],[120,212,78,0.011824040182749459],[120,212,79,0.011430359465813859],[120,213,64,0.00950050532990188],[120,213,65,0.00992724112841926],[120,213,66,0.010382999615115704],[120,213,67,0.010822015675374995],[120,213,68,0.011203103443619087],[120,213,69,0.011502258467179251],[120,213,70,0.011704675258168491],[120,213,71,0.011803571755567106],[120,213,72,0.011799249371147512],[120,213,73,0.01169815794161311],[120,213,74,0.011511966851289348],[120,213,75,0.011256643573127466],[120,213,76,0.01095154085321673],[120,213,77,0.010618493735308966],[120,213,78,0.010280927587002608],[120,213,79,0.009962978248190752],[120,214,64,0.009399612548133136],[120,214,65,0.00963886696557827],[120,214,66,0.009914906513760166],[120,214,67,0.010179701566504908],[120,214,68,0.010392480787882828],[120,214,69,0.0105326086447981],[120,214,70,0.010588932458819485],[120,214,71,0.010558334538982528],[120,214,72,0.010444603537099058],[120,214,73,0.010257333515226584],[120,214,74,0.01001085245285328],[120,214,75,0.009723181870548523],[120,214,76,0.009415029189620084],[120,214,77,0.009108814383832506],[120,214,78,0.00882773240973821],[120,214,79,0.008594852826940025],[120,215,64,0.009302936135808857],[120,215,65,0.009351022522174325],[120,215,66,0.009445260225133553],[120,215,67,0.009535912090224643],[120,215,68,0.009582817573253135],[120,215,69,0.009568577237279313],[120,215,70,0.009485480755728477],[120,215,71,0.009333803170237623],[120,215,72,0.009120498286700711],[120,215,73,0.0088579425651375],[120,215,74,0.008562731668734981],[120,215,75,0.008254531752606476],[120,215,76,0.00795498748127841],[120,215,77,0.007686688666039839],[120,215,78,0.007472197309632518],[120,215,79,0.00733313673691494],[120,216,64,0.00919512134980667],[120,216,65,0.009050729559569783],[120,216,66,0.008963406213855775],[120,216,67,0.00888230900127499],[120,216,68,0.00876808329447491],[120,216,69,0.008606383720761819],[120,216,70,0.00839267721614546],[120,216,71,0.008130303856174609],[120,216,72,0.007829005747349422],[120,216,73,0.007503528867070764],[120,216,74,0.007172300423736301],[120,216,75,0.006856184190459794],[120,216,76,0.006577316140793135],[120,216,77,0.006358022583422706],[120,216,78,0.006219822855942935],[120,216,79,0.0061825184963784545],[120,217,64,0.009060918876358983],[120,217,65,0.008725181380510103],[120,217,66,0.00845888636841651],[120,217,67,0.008210717903086652],[120,217,68,0.00794231585925039],[120,217,69,0.007642162307974546],[120,217,70,0.007308588542085921],[120,217,71,0.006947624394060017],[120,217,72,0.006571378457588795],[120,217,73,0.006196513089326244],[120,217,74,0.0058428171318477265],[120,217,75,0.005531879148490281],[120,217,76,0.005285863803275736],[120,217,77,0.005126393855464624],[120,217,78,0.005073540069579883],[120,217,79,0.005144921169168198],[120,218,64,0.008885791574716232],[120,218,65,0.008362250689575405],[120,218,66,0.007921851673737346],[120,218,67,0.007513448525852997],[120,218,68,0.007099852577992058],[120,218,69,0.006672108392443992],[120,218,70,0.006231059466662789],[120,218,71,0.005785012761671332],[120,218,72,0.005347988035110531],[120,218,73,0.004938082884934684],[120,218,74,0.004575956773083995],[120,218,75,0.00428343711734937],[120,218,76,0.004082250351401519],[120,218,77,0.003992880658739153],[120,218,78,0.004033558887524223],[120,218,79,0.004219383951391971],[120,219,64,0.00865663724652631],[120,219,65,0.00795111369758503],[120,219,66,0.007343592111482089],[120,219,67,0.006783734094253714],[120,219,68,0.006235682983775668],[120,219,69,0.005692750371306909],[120,219,70,0.0051579108045759344],[120,219,71,0.004641310275254447],[120,219,72,0.004158403867864539],[120,219,73,0.003728228900297245],[120,219,74,0.003371817109329001],[120,219,75,0.003110749224496492],[120,219,76,0.0029658550566068406],[120,219,77,0.0029560620044058235],[120,219,78,0.0030973946561612385],[120,219,79,0.0034021279338871733],[120,220,64,0.008362629416133612],[120,220,65,0.00748299240198749],[120,220,66,0.006717185680386275],[120,220,67,0.0060162916522301],[120,220,68,0.005345925339562095],[120,220,69,0.0047013487066597534],[120,220,70,0.004087269031315871],[120,220,71,0.003515221214792711],[120,220,72,0.0030016137612911367],[120,220,73,0.002565928673951696],[120,220,74,0.0022290790588389933],[120,220,75,0.002011927991544732],[120,220,76,0.0019339719573388736],[120,220,77,0.0020121919268064276],[120,220,78,0.0022600748765286686],[120,220,79,0.0026868083105956353],[120,221,64,0.007996178136107106],[120,221,65,0.006952017010526633],[120,221,66,0.006038268470424278],[120,221,67,0.005208005260369037],[120,221,68,0.004428428744846022],[120,221,69,0.003696424147571497],[120,221,70,0.0030180293349485526],[120,221,71,0.0024057208922966212],[120,221,72,0.0018763885575953934],[120,221,73,0.001449480488182093],[120,221,74,0.0011453233436849283],[120,221,75,9.836209071915076E-4],[120,221,76,9.821346987352192E-4],[120,221,77,0.0011555497624400662],[120,221,78,0.0015145285332125163],[120,221,79,0.002064955412933031],[120,222,64,0.007554012847110258],[120,222,65,0.006356210497218368],[120,222,66,0.005305927753372007],[120,222,67,0.004358734017429815],[120,222,68,0.0034835027973504473],[120,222,69,0.002678417085924542],[120,222,70,0.0019504541428888198],[120,222,71,0.0013126042046222727],[120,222,72,7.817928156317572E-4],[120,222,73,3.769893151217393E-4],[120,222,74,1.1750560893126097E-4],[120,222,75,2.14890737923256E-5],[120,222,76,1.0461315124220396E-4],[120,222,77,3.789688945960304E-4],[120,222,78,8.521604364714358E-4],[120,222,79,0.0015266070488881881],[120,223,64,0.007038389319966782],[120,223,65,0.00569859728615924],[120,223,66,0.004523720066522655],[120,223,67,0.003472246879611526],[120,223,68,0.0025147767954703804],[120,223,69,0.0016504800573561437],[120,223,70,8.869091720332623E-4],[120,223,71,2.3717676580394017E-4],[120,223,72,-2.821562995502939E-4],[120,223,73,-6.529929341765783E-4],[120,223,74,-8.574077152877888E-4],[120,223,75,-8.791467373775227E-4],[120,223,76,-7.049157937174239E-4],[120,223,77,-3.2545357792751787E-4],[120,223,78,2.636130917648848E-4],[120,223,79,0.0010611347105236007],[120,224,64,0.006458422688661365],[120,224,65,0.004988438048142764],[120,224,66,0.003700816264201984],[120,224,67,0.0025572862575300756],[120,224,68,0.0015301904820797633],[120,224,69,6.194054219214822E-4],[120,224,70,-1.6726091786375323E-4],[120,224,71,-8.16909246884475E-4],[120,224,72,-0.0013136797221202756],[120,224,73,-0.0016406705965742055],[120,224,74,-0.0017816404795607844],[120,224,75,-0.0017224902246596482],[120,224,76,-0.0014525207871554924],[120,224,77,-9.654637216974808E-4],[120,224,78,-2.6028132029501437E-4],[120,224,79,6.582662821722851E-4],[120,225,64,0.005831548544181887],[120,225,65,0.004242592565630735],[120,225,66,0.002853275491458662],[120,225,67,0.001628762359694035],[120,225,68,5.431183281679015E-4],[120,225,69,-4.033097342317933E-4],[120,225,70,-0.0012027151725912215],[120,225,71,-0.0018426723759676846],[120,225,72,-0.0023082745603791896],[120,225,73,-0.002584048582137721],[120,225,74,-0.00265564243809699],[120,225,75,-0.002511281445221509],[120,225,76,-0.0021429894326496666],[120,225,77,-0.0015475716226812277],[120,225,78,-7.273562200782082E-4],[120,225,79,3.0930793121806537E-4],[120,226,64,0.005185113998546933],[120,226,65,0.0034870125713198402],[120,226,66,0.002005449993883733],[120,226,67,7.090802205357636E-4],[120,226,68,-4.2637066645827515E-4],[120,226,69,-0.0014002594469587574],[120,226,70,-0.0022049552021118804],[120,226,71,-0.002828670134222757],[120,226,72,-0.0032575973041150045],[120,226,73,-0.003477815522781866],[120,226,74,-0.0034769570353872787],[120,226,75,-0.003245633985559795],[120,226,76,-0.0027786200022261506],[120,226,77,-0.002075783607392541],[120,226,78,-0.001142770498384134],[120,226,79,8.56789098832546E-6],[120,227,64,0.004560905907976052],[120,227,65,0.0027619622983774818],[120,227,66,0.001195840354931743],[120,227,67,-1.653822506905012E-4],[120,227,68,-0.001344408910661049],[120,227,69,-0.00234041332052379],[120,227,70,-0.0031460353231013774],[120,227,71,-0.0037501972805539597],[120,227,72,-0.004140238947516072],[120,227,73,-0.004303810352591409],[120,227,74,-0.004230518320395323],[120,227,75,-0.0039133226292998365],[120,227,76,-0.003349678166910238],[120,227,77,-0.0025424198134132428],[120,227,78,-0.001500387149249146],[120,227,79,-2.387864448615678E-4],[120,228,64,0.004018446289261751],[120,228,65,0.002128530173259192],[120,228,66,4.865791757930784E-4],[120,228,67,-9.31892349658348E-4],[120,228,68,-0.0021480675191231507],[120,228,69,-0.0031610611599084144],[120,228,70,-0.003963894097903433],[120,228,71,-0.0045462863304366755],[120,228,72,-0.0048967834323756995],[120,228,73,-0.005004632969883636],[120,228,74,-0.0048614065665985515],[120,228,75,-0.0044623636414645035],[120,228,76,-0.003807553215308129],[120,228,77,-0.002902650561751455],[120,228,78,-0.0017595258540405825],[120,228,79,-3.965423295298175E-4],[120,229,64,0.0036075535833999667],[120,229,65,0.001638722204821274],[120,229,66,-6.866299991935696E-5],[120,229,67,-0.0015355404211852763],[120,229,68,-0.0027815704475640827],[120,229,69,-0.0038059470550907484],[120,229,70,-0.004602207913432581],[120,229,71,-0.005160989292600455],[120,229,72,-0.00547213393683085],[120,229,73,-0.005526542642453852],[120,229,74,-0.005317765223902067],[120,229,75,-0.004843326935562541],[120,229,76,-0.004105786803613555],[120,229,77,-0.0031135247084723944],[120,229,78,-0.0018812544417888325],[120,229,79,-4.3026033863928964E-4],[120,230,64,0.0033623643073191906],[120,230,65,0.0013282952160752301],[120,230,66,-4.329185426622869E-4],[120,230,67,-0.0019385067587318007],[120,230,68,-0.0032065620494986873],[120,230,69,-0.004236486366223885],[120,230,70,-0.0050224727518001396],[120,230,71,-0.005556202284788365],[120,230,72,-0.005828919700961444],[120,230,73,-0.005833248546643242],[120,230,74,-0.005564741620299692],[120,230,75,-0.005023162848395236],[120,230,76,-0.0042134971334624955],[120,230,77,-0.0031466851037438215],[120,230,78,-0.001840080081376641],[120,230,79,-3.176249664384603E-4],[120,231,64,0.0033030189544542],[120,231,65,0.0012184372848737211],[120,231,66,-5.842461267673712E-4],[120,231,67,-0.002118378039966463],[120,231,68,-0.0034004041705683386],[120,231,69,-0.004430035344612183],[120,231,70,-0.005202242379284158],[120,231,71,-0.005709872251793077],[120,231,72,-0.0059456748656689755],[120,231,73,-0.00590406762750452],[120,231,74,-0.005582633699850525],[120,231,75,-0.004983350187972122],[120,231,76,-0.004113542912023455],[120,231,77,-0.002986564808979433],[120,231,78,-0.0016221953970776864],[120,231,79,-4.675911607000446E-5],[120,232,64,0.0034372655327971533],[120,232,65,0.001317365948770451],[120,232,66,-5.141346936124648E-4],[120,232,67,-0.002066541384432002],[120,232,68,-0.0033545464799355404],[120,232,69,-0.0043782277806151395],[120,232,70,-0.005133425251562449],[120,232,71,-0.005614251826759949],[120,232,72,-0.0058150525607413486],[120,232,73,-0.005732102526699667],[120,232,74,-0.0053650394751527854],[120,232,75,-0.004718027657806019],[120,232,76,-0.0038006496131075354],[120,232,77,-0.002628523100253414],[120,232,78,-0.0012236407537804257],[120,232,79,3.8556959211082076E-4],[120,233,64,0.0037619780136565685],[120,233,65,0.0016218411047653294],[120,233,66,-2.259913462205532E-4],[120,233,67,-0.0017866596540233404],[120,233,68,-0.0030729739018037616],[120,233,69,-0.004085382749258292],[120,233,70,-0.004820644364394947],[120,233,71,-0.005274206660054752],[120,233,72,-0.0054420785854335995],[120,233,73,-0.005322443853275384],[120,233,74,-0.004917013304949609],[120,233,75,-0.004232112500614018],[120,233,76,-0.0032795015074366957],[120,233,77,-0.002076924242528909],[120,233,78,-6.48385105579556E-4],[120,233,79,9.758489942709229E-4],[120,234,64,0.004264588833864238],[120,234,65,0.0021185918038582226],[120,234,66,2.662860988388912E-4],[120,234,67,-0.0012932286353125235],[120,234,68,-0.002570731684822389],[120,234,69,-0.0035669838706166835],[120,234,70,-0.004279660323889178],[120,234,71,-0.004705575323787542],[120,234,72,-0.004842444601255963],[120,234,73,-0.004690396508325845],[120,234,74,-0.00425322848203259],[120,234,75,-0.003539405607486449],[120,234,76,-0.00256279846021138],[120,234,77,-0.001343157780873231],[120,234,78,9.367609721490445E-5],[120,234,79,0.001715830789275641],[120,235,64,0.004924434481155242],[120,235,65,0.0027856560318776763],[120,235,66,9.396510716579014E-4],[120,235,67,-6.10216845319616E-4],[120,235,68,-0.0018725287492640664],[120,235,69,-0.002848230605089562],[120,235,70,-0.0035358580154783064],[120,235,71,-0.003933582007716767],[120,235,72,-0.004040840867323254],[120,235,73,-0.0038597298883625932],[120,235,74,-0.0033961457334332804],[120,235,75,-0.002660682458066661],[120,235,76,-0.0016692766157037039],[120,235,77,-4.4359921779787656E-4],[120,235,78,9.888073241229056E-4],[120,235,79,0.0025946488046822425],[120,236,64,0.005714013082144217],[120,236,65,0.003593632462274358],[120,236,66,0.0017631637883486204],[120,236,67,2.3021119679246573E-4],[120,236,68,-0.0010114200533241288],[120,236,69,-0.001962662207484841],[120,236,70,-0.002622797358300445],[120,236,71,-0.0029913023346655166],[120,236,72,-0.003069328666640026],[120,236,73,-0.0028609519162918003],[120,236,74,-0.0023741873651784155],[120,236,75,-0.0016217693936345194],[120,236,76,-6.216922306089281E-4],[120,236,77,6.024899071263141E-4],[120,236,78,0.0020216049339129203],[120,236,79,0.003601048595691046],[120,237,64,0.006600152805942993],[120,237,65,0.00450684306467215],[120,237,66,0.0026991593377293384],[120,237,67,0.001188887291521251],[120,237,68,-2.7568819686725075E-5],[120,237,69,-9.50855067505899E-4],[120,237,70,-0.001580828741087257],[120,237,71,-0.0019181827402753335],[120,237,72,-0.001965752696840777],[120,237,73,-0.0017296069833149142],[120,237,74,-0.0012199169280325017],[120,237,75,-4.5160487897657873E-4],[120,237,76,5.552319185090717E-4],[120,237,77,0.0017751233465638399],[120,237,78,0.003177255746841382],[120,237,79,0.004725729662240553],[120,238,64,0.00754508979529121],[120,238,65,0.00548440535623774],[120,238,66,0.0037043271894106225],[120,238,67,0.0022207464396298052],[120,238,68,0.00103291043948197],[120,238,69,1.408057332034611E-4],[120,238,70,-4.5577384613656704E-4],[120,238,71,-7.586139823075821E-4],[120,238,72,-7.721938308457561E-4],[120,238,73,-5.045980298046679E-4],[120,238,74,3.177556099484968E-5],[120,238,75,8.197144187025922E-4],[120,238,76,0.0018368979419725834],[120,238,77,0.0030558134948646867],[120,238,78,0.004443883056467768],[120,238,79,0.00596380134516961],[120,239,64,0.00850293263062916],[120,239,65,0.006477621115772203],[120,239,66,0.004727879995743971],[120,239,67,0.0032736193177811362],[120,239,68,0.0021172032427754506],[120,239,69,0.0012596670049190841],[120,239,70,7.007356602717658E-4],[120,239,71,4.3768872535180595E-4],[120,239,72,4.644582817585684E-4],[120,239,73,7.709127199815273E-4],[120,239,74,0.0013423280745225082],[120,239,75,0.002159048626704653],[120,239,76,0.0031963381786386177],[120,239,77,0.004424423133872257],[120,239,78,0.005808728259652043],[120,239,79,0.007310305755042077],[120,240,64,0.009413080809298303],[120,240,65,0.007426222522682812],[120,240,66,0.0057100678333304785],[120,240,67,0.004288389414770566],[120,240,68,0.003166928749519295],[120,240,69,0.002348232657580706],[120,240,70,0.0018322946580002246],[120,240,71,0.0016156790020030532],[120,240,72,0.0016908454411468116],[120,240,73,0.002045642702555037],[120,240,74,0.0026629722350108185],[120,240,75,0.003520623540193828],[120,240,76,0.004591282157430478],[120,240,77,0.005842711129926414],[120,240,78,0.00723810654775625],[120,240,79,0.008736627540258193],[120,241,64,0.010224439062360986],[120,241,65,0.008279866058177772],[120,241,66,0.006601275590559201],[120,241,67,0.005216055840970308],[120,241,68,0.004133548161933555],[120,241,69,0.0033582981559839528],[120,241,70,0.002890951518952731],[120,241,71,0.0027276387330823514],[120,241,72,0.0028595357758596255],[120,241,73,0.0032725764553427896],[120,241,74,0.0039473175428988445],[120,241,75,0.004858957651463791],[120,241,76,0.005977510588977627],[120,241,77,0.0072681337042825945],[120,241,78,0.00869161153850556],[120,241,79,0.010204994900926056],[120,242,64,0.010900153008043296],[120,242,65,0.009002003101747843],[120,242,66,0.007365178421659707],[120,242,67,0.006020344385682875],[120,242,68,0.00498061359008242],[120,242,69,0.004253021999716665],[120,242,70,0.003839282816097802],[120,242,71,0.0037354264276681965],[120,242,72,0.003931600736071774],[120,242,73,0.004412006328066525],[120,242,74,0.005154967275046682],[120,242,75,0.006133138145760106],[120,242,76,0.007313847626541433],[120,242,77,0.008659578958817997],[120,242,78,0.010128587227591964],[120,242,79,0.011675653369007956],[120,243,64,0.011416147050140449],[120,243,65,0.009568485309503948],[120,243,66,0.007977427834973065],[120,243,67,0.0066764920996434125],[120,243,68,0.005682671713581037],[120,243,69,0.005005969806917763],[120,243,70,0.004649598862992955],[120,243,71,0.004609864033367188],[120,243,72,0.004876201020778937],[120,243,73,0.005431332740767068],[120,243,74,0.006251545166994746],[120,243,75,0.007307082594409096],[120,243,76,0.008562662389361975],[120,243,77,0.009978109138120162],[120,243,78,0.01150910795643988],[120,243,79,0.013108076584823748],[120,244,64,0.01175969751356171],[120,244,65,0.009966202672735772],[120,244,66,0.00842436719601647],[120,244,67,0.007170056688535357],[120,244,68,0.006224186313570429],[120,244,69,0.0056001704262431794],[120,244,70,0.005303153935696929],[120,244,71,0.005330120935457352],[120,244,72,0.005670162346506201],[120,244,73,0.00630484736215439],[120,244,74,0.007208698742474378],[120,244,75,0.008349771859072961],[120,244,76,0.009690337250654001],[120,244,77,0.011187666317407334],[120,244,78,0.012794919659232141],[120,244,79,0.014462137450732169],[120,245,64,0.011928041455630048],[120,245,65,0.010191754628420676],[120,245,66,0.00870177693840224],[120,245,67,0.007495750908952203],[120,245,68,0.0065984797424268075],[120,245,69,0.006027184006757852],[120,245,70,0.005789360963149563],[120,245,71,0.0058830947838425865],[120,245,72,0.006297540565784968],[120,245,73,0.007013498593646894],[120,245,74,0.008004078569379847],[120,245,75,0.009235453400337752],[120,245,76,0.010667702020161726],[120,245,77,0.012255740607320027],[120,245,78,0.013950341466710574],[120,245,79,0.01569923875148213],[120,246,64,0.011927021715736527],[120,246,65,0.010250154710473088],[120,246,66,0.008813649884695143],[120,246,67,0.007656302257916021],[120,246,68,0.006806693487360205],[120,246,69,0.00628618203122457],[120,246,70,0.006105010532835544],[120,246,71,0.00626278883503489],[120,246,72,0.006749175668323475],[120,246,73,0.0075446387484942165],[120,246,74,0.00862129270345886],[120,246,75,0.00994381414295526],[120,246,76,0.01147043308683932],[120,246,77,0.013153999878743957],[120,246,78,0.01494312663321996],[120,246,79,0.016783402197323397],[120,247,64,0.011769768892871816],[120,247,65,0.010153569350731901],[120,247,66,0.00877099719171799],[120,247,67,0.0076613383505529644],[120,247,68,0.006856768077088036],[120,247,69,0.006383039398883741],[120,247,70,0.006253494124584808],[120,247,71,0.006469685545592138],[120,247,72,0.007022234228029466],[120,247,73,0.007891752324686994],[120,247,74,0.009049835567719983],[120,247,75,0.010460122012963752],[120,247,76,0.012079416525448219],[120,247,77,0.0138588799239848],[120,247,78,0.015745281641649105],[120,247,79,0.017682314709733],[120,248,64,0.011475421069817004],[120,248,65,0.009920091561502756],[120,248,66,0.008590685550181576],[120,248,67,0.007526298487463386],[120,248,68,0.0067624426778989406],[120,248,69,0.006329438729204587],[120,248,70,0.006244031556728471],[120,248,71,0.006510116208362042],[120,248,72,0.007119739895119537],[120,248,73,0.008054164785341388],[120,248,74,0.009284990507474288],[120,248,75,0.010775335229152501],[120,248,76,0.012481074112235289],[120,248,77,0.01435213388540412],[120,248,78,0.016333842228903432],[120,248,79,0.018368330631062246],[120,249,64,0.011067882233809626],[120,249,65,0.009572550356392737],[120,249,66,0.008294306386382158],[120,249,67,0.007271372023366244],[120,249,68,0.0065422748264311655],[120,249,69,0.0061419871481569015],[120,249,70,0.0060909027055907426],[120,249,71,0.0063956264837275656],[120,249,72,0.007050091574813714],[120,249,73,0.008036731281369936],[120,249,74,0.009327705258589015],[120,249,75,0.010886178403550243],[120,249,76,0.012667651140066198],[120,249,77,0.014621339699749178],[120,249,78,0.016691604963013893],[120,249,79,0.018819428399191356],[120,250,64,0.010574620475715476],[120,250,65,0.009137356892659253],[120,250,66,0.007907077933605738],[120,250,67,0.006920464261369344],[120,250,68,0.006218680851128304],[120,250,69,0.005841345913197815],[120,250,70,0.005812683641498953],[120,250,71,0.0061423377450112145],[120,250,72,0.006826568982903751],[120,250,73,0.007849504778980576],[120,250,74,0.009184439570508431],[120,250,75,0.010795184483467645],[120,250,76,0.012637464873149522],[120,250,77,0.014660364226607468],[120,250,78,0.01680781289268206],[120,250,79,0.019020120087090083],[120,251,64,0.010025507182444481],[120,251,65,0.008643388445720001],[120,251,66,0.007456781162264003],[120,251,67,0.006500190712289663],[120,251,68,0.0058169976423133075],[120,251,69,0.005451373332254596],[120,251,70,0.005431487412163896],[120,251,71,0.005770304230462519],[120,251,72,0.0064668253241369445],[120,251,73,0.007507383089351258],[120,251,74,0.008866984236470532],[120,251,75,0.01051070155177012],[120,251,76,0.012395112436516184],[120,251,77,0.014469782653428962],[120,251,78,0.016678793681706904],[120,251,79,0.018962312065705172],[120,252,64,0.009451698569849204],[120,252,65,0.008120911454201985],[120,252,66,0.006972730680105297],[120,252,67,0.006038900675375738],[120,252,68,0.005364566541835343],[120,252,69,0.00499828153537051],[120,252,70,0.00497220979744733],[120,252,71,0.005302866074021307],[120,252,72,0.005992366902229957],[120,252,73,0.007029734340209896],[120,252,74,0.008392250801741111],[120,252,75,0.010046863493220693],[120,252,76,0.011951636896500967],[120,252,77,0.014057251698200003],[120,252,78,0.016308548535149747],[120,252,79,0.018646114907604063],[120,253,64,0.008884561034925204],[120,253,65,0.007600545001293299],[120,253,66,0.00648478183652482],[120,253,67,0.005565731215109978],[120,253,68,0.00488984023698264],[120,253,69,0.004509807765221124],[120,253,70,0.0044617804582263165],[120,253,71,0.004765998373527506],[120,253,72,0.005428019540796185],[120,253,73,0.00644000047953648],[120,253,74,0.0077820312472574905],[120,253,75,0.009423523533672682],[120,253,76,0.011324650256439861],[120,253,77,0.013437835064996474],[120,253,78,0.015709290122144497],[120,253,79,0.018080600509141623],[120,254,64,0.008354641935970838],[120,254,65,0.007112266224456122],[120,254,66,0.006022375387387232],[120,254,67,0.005109692727963543],[120,254,68,0.004421513659446329],[120,254,69,0.004014400964212308],[120,254,70,0.003928420006279497],[120,254,71,0.004187656548418744],[120,254,72,0.004801381772894378],[120,254,73,0.005765278460714042],[120,254,74,0.007062726981475392],[120,254,75,0.008666149666368713],[120,254,76,0.01053841206748146],[120,254,77,0.01263427954815584],[120,254,78,0.014901927602816702],[120,254,79,0.017284504271408666],[120,255,64,0.007890687536624192],[120,255,65,0.006684459269998649],[120,255,66,0.005613621198199454],[120,255,67,0.004698787412494792],[120,255,68,0.003987680008183959],[120,255,69,0.0035404245511388302],[120,255,70,0.0034009036318563652],[120,255,71,0.003597118339410889],[120,255,72,0.0041422648436618085],[120,255,73,0.0050358788267324366],[120,255,74,0.006265046518132913],[120,255,75,0.007805680996417684],[120,255,76,0.00962386233869581],[120,255,77,0.011677240128618552],[120,255,78,0.013916496774772929],[120,255,79,0.016286870045769418],[120,256,64,0.007518709973537655],[120,256,65,0.006343009530821666],[120,256,66,0.005284422583257111],[120,256,67,0.00435916207548028],[120,256,68,0.003615013134688206],[120,256,69,0.0031153763992300197],[120,256,70,0.0029078320408641835],[120,256,71,0.0030243229104182294],[120,256,72,0.0034821196660027374],[120,256,73,0.0042848614890929684],[120,256,74,0.0054236712728405224],[120,256,75,0.006878344061558224],[120,256,76,0.008618607424524267],[120,256,77,0.010605452362125364],[120,256,78,0.012792533269102718],[120,256,79,0.015127635419415865],[120,257,64,0.007261110042355422],[120,257,65,0.006110449090835933],[120,257,66,0.0050576463737415315],[120,257,67,0.004114299582596155],[120,257,68,0.0033279798878940886],[120,257,69,0.002765129015183047],[120,257,70,0.0024769122509632983],[120,257,71,0.002499209325295375],[120,257,72,0.0028534529176596443],[120,257,73,0.0035475510094259057],[120,257,74,0.004576892114419609],[120,257,75,0.005925432298615232],[120,257,76,0.00756686278880898],[120,257,77,0.009465856869349833],[120,257,78,0.011579394676929377],[120,257,79,0.013858164427262789],[120,258,64,0.0071362466937004545],[120,258,65,0.006005580214084562],[120,258,66,0.004952803384912079],[120,258,67,0.003984751568718973],[120,258,68,0.0031486155978247446],[120,258,69,0.0025137367278852997],[120,258,70,0.0021347847630652883],[120,258,71,0.002051552090842586],[120,258,72,0.002289660097826836],[120,258,73,0.002861357590744883],[120,258,74,0.003766410405701914],[120,258,75,0.004993081253299741],[120,258,76,0.00651919872056486],[120,258,77,0.00831331423411786],[120,258,78,0.010335945683974031],[120,258,79,0.012540906315099604],[120,259,64,0.007166072659346552],[120,259,65,0.006051882914488109],[120,259,66,0.004995256397623161],[120,259,67,0.003998137883585335],[120,259,68,0.0031071411932353217],[120,259,69,0.0023942861927531544],[120,259,70,0.0019175703110924673],[120,259,71,0.0017205674121553215],[120,259,72,0.0018330018072815514],[120,259,73,0.002271421868558579],[120,259,74,0.003039972575733234],[120,259,75,0.004131266179667097],[120,259,76,0.005527350023933312],[120,259,77,0.007200770434585779],[120,259,78,0.009115731467790482],[120,259,79,0.011229347197260871],[120,260,64,0.007375334769601349],[120,260,65,0.0062763370562929485],[120,260,66,0.005214605854687227],[120,260,67,0.0041870681861068595],[120,260,68,0.003239402429888379],[120,260,69,0.002445832415005144],[120,260,70,0.0018672841642961588],[120,260,71,0.001550793707429011],[120,260,72,0.001529947908603695],[120,260,73,0.001825431711015923],[120,260,74,0.0024456812795985725],[120,260,75,0.0033876423605356883],[120,260,76,0.004637633021074633],[120,260,77,0.006172309787591502],[120,260,78,0.007959736065207335],[120,260,79,0.00996055159993767],[120,261,64,0.007782642680050553],[120,261,65,0.006699485129105149],[120,261,66,0.005633676437246477],[120,261,67,0.004577030567192528],[120,261,68,0.003573810959404501],[120,261,69,0.0026997589829579637],[120,261,70,0.002018142865550739],[120,261,71,0.0015789809548969345],[120,261,72,0.0014193483134024192],[120,261,73,0.0015637955969693318],[120,261,74,0.002024879848147206],[120,261,75,0.0028038066590628306],[120,261,76,0.0038911829923430653],[120,261,77,0.005267879789986003],[120,261,78,0.0069060033524052],[120,261,79,0.008769974334146878],[120,262,64,0.00840015891479546],[120,262,65,0.0073351050037053995],[120,262,66,0.006268164787705635],[120,262,67,0.00518600084457211],[120,262,68,0.004130904613031348],[120,262,69,0.0031792864539703742],[120,262,70,0.0023960240166630677],[120,262,71,0.0018335098830945273],[120,262,72,0.0015318229864487232],[120,262,73,0.0015190171031270133],[120,262,74,0.0018115261976876186],[120,262,75,0.0024146862152108995],[120,262,76,0.003323372737733225],[120,262,77,0.004522753751984498],[120,262,78,0.005989156616315716],[120,262,79,0.007691048166929915],[120,263,64,0.009233987981177076],[120,263,65,0.008190623856178657],[120,263,66,0.007127070486425095],[120,263,67,0.0060248752532414],[120,263,68,0.004923761237663718],[120,263,69,0.003899844167554102],[120,263,70,0.003018771561735854],[120,263,71,0.002334605981861783],[120,263,72,0.0018898606824537252],[120,263,73,0.0017156559576813957],[120,263,74,0.0018319961141623471],[120,263,75,0.0022481668059122694],[120,263,76,0.0029632522808457334],[120,263,77,0.003966771909373995],[120,263,78,0.005239435196297549],[120,263,79,0.006754014318884843],[120,264,64,0.01028486560355204],[120,264,65,0.009267830796416784],[120,264,66,0.008213421794966022],[120,264,67,0.007098191722056706],[120,264,68,0.005958692736829962],[120,264,69,0.004869711543412182],[120,264,70,0.0038967574541477986],[120,264,71,0.003094794463575381],[120,264,72,0.0025081409977635036],[120,264,73,0.00217049277207783],[120,264,74,0.0021050688373800757],[120,264,75,0.0023248806951774526],[120,264,76,0.002833124168523417],[120,264,77,0.0036236935289790896],[120,264,78,0.0046818172023127685],[120,264,79,0.005984814208391038],[120,265,64,0.011549149474869716],[120,265,65,0.010563889496994935],[120,265,66,0.009525297347700166],[120,265,67,0.008405140805704358],[120,265,68,0.00723622028431716],[120,265,69,0.006090929747036967],[120,265,70,0.005033700525457096],[120,265,71,0.004119596952365558],[120,265,72,0.0033940804999415533],[120,265,73,0.002892898225877203],[120,265,74,0.002642095759091397],[120,265,75,0.002658154852856701],[120,265,76,0.0029482553343638],[120,265,77,0.0035106610874572858],[120,265,78,0.004335229521113786],[120,265,79,0.005404043801741699],[120,266,64,0.01302011251657703],[120,266,65,0.012072651719730267],[120,266,66,0.011057144587834283],[120,266,67,0.009940866970673293],[120,266,68,0.008752331324183784],[120,266,69,0.007560484269448349],[120,266,70,0.006427743057207003],[120,266,71,0.005408470380950614],[120,266,72,0.0045486034193925814],[120,266,73,0.0038854072198761373],[120,266,74,0.0034473528072899735],[120,266,75,0.003254120196770332],[120,266,76,0.0033167262864526475],[120,266,77,0.003637777410239701],[120,266,78,0.004211846141568276],[120,266,79,0.005025971759011403],[120,267,64,0.01468953925424326],[120,267,65,0.013786272263786196],[120,267,66,0.012801395383302688],[120,267,67,0.011698060588145336],[120,267,68,0.010500018641411882],[120,267,69,0.009271758655391624],[120,267,70,0.008072785262267387],[120,267,71,0.006955988298609723],[120,267,72,0.005967137129248942],[120,267,73,0.005144498272478303],[120,267,74,0.004518576865952703],[120,267,75,0.004111982305679902],[120,267,76,0.003939418186992962],[120,267,77,0.004007796477751615],[120,267,78,0.004316475661797326],[120,267,79,0.004857622406380103],[120,268,64,0.016549625557713797],[120,268,65,0.01569712551042521],[120,268,66,0.014750378921965712],[120,268,67,0.013668840665285637],[120,268,68,0.012471101481755781],[120,268,69,0.011216259325202996],[120,268,70,0.009960077610325404],[120,268,71,0.008753264539039494],[120,268,72,0.007640832402007821],[120,268,73,0.00666157821306883],[120,268,74,0.0058476863738047705],[120,268,75,0.00522445385938742],[120,268,76,0.004810138213335304],[120,268,77,0.004615928439265063],[120,268,78,0.004646038683620774],[120,268,79,0.004897924416176751],[120,269,64,0.0185951816601908],[120,269,65,0.017800023415034307],[120,269,66,0.016898531673692277],[120,269,67,0.015846928048816496],[120,269,68,0.014658328416985455],[120,269,69,0.013385611169097655],[120,269,70,0.012080070681929898],[120,269,71,0.01078961896286757],[120,269,72,0.00955800821331935],[120,269,73,0.00842417202325597],[120,269,74,0.007421686057017087],[120,269,75,0.00657834888651653],[120,269,76,0.0059158834256344585],[120,269,77,0.005449759220230316],[120,269,78,0.0051891356532728795],[120,269,79,0.005136925935476232],[120,270,64,0.02082613806020215],[120,270,65,0.020094734496621],[120,270,66,0.019244903918946555],[120,270,67,0.01823010856071109],[120,270,68,0.017057761392385868],[120,270,69,0.01577382334850037],[120,270,70,0.014424522006723893],[120,270,71,0.013054484776021225],[120,270,72,0.011705820664444432],[120,270,73,0.01041731749184128],[120,270,74,0.009223755578517253],[120,270,75,0.008155338739727916],[120,270,76,0.007237243215420367],[120,270,77,0.0064892849661473614],[120,270,78,0.00592570557090024],[120,270,79,0.005555076772109094],[120,271,64,0.019577523341628756],[120,271,65,0.020260439018108128],[120,271,66,0.021072013582636127],[120,271,67,0.020801688655641186],[120,271,68,0.019651145892682752],[120,271,69,0.018360862603428143],[120,271,70,0.016971545338075242],[120,271,71,0.015524182109017065],[120,271,72,0.01405897746923383],[120,271,73,0.012614399627442797],[120,271,74,0.011226340812082427],[120,271,75,0.009927391898209438],[120,271,76,0.00874623211307585],[120,271,77,0.0077071344387255195],[120,271,78,0.0068295871346863105],[120,271,79,0.006128031612039722],[120,272,64,0.01712814698092078],[120,272,65,0.01773452344486064],[120,272,66,0.018482088926088637],[120,272,67,0.019421394304253502],[120,272,68,0.02055670204122298],[120,272,69,0.02105825015535509],[120,272,70,0.019636117340846963],[120,272,71,0.018118199266554273],[120,272,72,0.01654255290279752],[120,272,73,0.014947131672808091],[120,272,74,0.013368790157840734],[120,272,75,0.011842399942105722],[120,272,76,0.010400077605205883],[120,272,77,0.009070525673518555],[120,272,78,0.007878487146704515],[120,272,79,0.006844314022505547],[120,273,64,0.01470255520819756],[120,273,65,0.01522704807688717],[120,273,66,0.015904564326023152],[120,273,67,0.016786737214427642],[120,273,68,0.01788350629932539],[120,273,69,0.019172331300823874],[120,273,70,0.02062449874958216],[120,273,71,0.020747365389804],[120,273,72,0.01907374491936915],[120,273,73,0.01734025111815018],[120,273,74,0.015584472330504525],[120,273,75,0.01384334136332165],[120,273,76,0.012152204399077533],[120,273,77,0.010544000123967726],[120,273,78,0.009048549879823026],[120,273,79,0.007691959454412023],[120,274,64,0.012391705553264822],[120,274,65,0.012829816602667004],[120,274,66,0.013431546014961496],[120,274,67,0.014248927250476029],[120,274,68,0.015297299130167183],[120,274,69,0.01656226151250096],[120,274,70,0.018021329165903984],[120,274,71,0.019645990221783354],[120,274,72,0.02140320546005629],[120,274,73,0.019722886160480003],[120,274,74,0.017809637167470346],[120,274,75,0.015874506659730392],[120,274,76,0.013955744948016798],[120,274,77,0.012090192678192405],[120,274,78,0.010312413917243475],[120,274,79,0.008653938558527235],[120,275,64,0.01027452142360909],[120,275,65,0.010622853672414676],[120,275,66,0.011143728207056598],[120,275,67,0.011888881752070124],[120,275,68,0.012878659307684089],[120,275,69,0.014106691069148969],[120,275,70,0.015556721508293335],[120,275,71,0.017204684214210536],[120,275,72,0.019020329775724834],[120,275,73,0.020968755315528505],[120,275,74,0.019983844630881882],[120,275,75,0.017881989126675372],[120,275,76,0.015764081748898158],[120,275,77,0.013670414451210927],[120,275,78,0.01163982402503234],[120,275,79,0.009708786631678045],[120,276,64,0.008418137808098958],[120,276,65,0.008674593851614556],[120,276,66,0.00911051682537372],[120,276,67,0.009776663395037863],[120,276,68,0.010697891724926951],[120,276,69,0.011875587820191092],[120,276,70,0.013299604082572731],[120,276,71,0.014950335460068463],[120,276,72,0.016800462057255116],[120,276,73,0.018816596440176844],[120,276,74,0.020960833556211252],[120,276,75,0.019814287130482392],[120,276,76,0.017531500616252492],[120,276,77,0.015245345800551166],[120,276,78,0.012998352256904492],[120,276,79,0.010831341082524678],[120,277,64,0.0068780409187235185],[120,277,65,0.007041962959486088],[120,277,66,0.007390044786744714],[120,277,67,0.007971419263786382],[120,277,68,0.008814881474780602],[120,277,69,0.009929141295145336],[120,277,70,0.011309915532300758],[120,277,71,0.012941990215709713],[120,277,72,0.014801061427538585],[120,277,73,0.016855483587967006],[120,277,74,0.019067922985218214],[120,277,75,0.021396914518699704],[120,277,76,0.019213954790263593],[120,277,77,0.01677583930844895],[120,277,78,0.014354227928239859],[120,277,79,0.011993586456445892],[120,278,64,0.005698100704919725],[120,278,65,0.005770350790885349],[120,278,66,0.006029077919568051],[120,278,67,0.006521209985347847],[120,278,68,0.007278837382940488],[120,278,69,0.008317415736843664],[120,278,70,0.009638166009759606],[120,278,71,0.011230108240794982],[120,278,72,0.01307198202031079],[120,278,73,0.015134076846071315],[120,278,74,0.017379970043654856],[120,278,75,0.019768170109649357],[120,278,76,0.02076993966383417],[120,278,77,0.018223832410732884],[120,278,78,0.01567327604175352],[120,278,79,0.013165606512487509],[120,279,64,0.004910495328337924],[120,279,65,0.004893474369989033],[120,279,66,0.005062810734720498],[120,279,67,0.0054627282295907015],[120,279,68,0.00612792439329292],[120,279,69,0.007079891509784668],[120,279,70,0.008324886339831038],[120,279,71,0.009855921592640786],[120,279,72,0.011654745982143907],[120,279,73,0.013693736216881074],[120,279,74,0.015937698524972822],[120,279,75,0.01834557748874494],[120,279,76,0.02087207014341196],[120,279,77,0.01955336929975236],[120,279,78,0.01692196370259925],[120,279,79,0.014316642808222582],[120,280,64,0.004535526826972861],[120,280,65,0.0044331310215220505],[120,280,66,0.004514551401998906],[120,280,67,0.004820906006167856],[120,280,68,0.005388784324858751],[120,280,69,0.006244894499058515],[120,280,70,0.0073999648936676566],[120,280,71,0.008850680995126932],[120,280,72,0.010581704094417369],[120,280,73,0.012567603551292179],[120,280,74,0.014774700186929389],[120,280,75,0.01716281852320036],[120,280,76,0.019686945764738915],[120,280,77,0.02073173168639957],[120,280,78,0.018068554026051138],[120,280,79,0.015416259220833306],[120,281,64,0.004581327326341626],[120,281,65,0.0043988406701628915],[120,281,66,0.004395295404100609],[120,281,67,0.004608410302068651],[120,281,68,0.005075944625710213],[120,281,69,0.00582891321387378],[120,281,70,0.006881871979527231],[120,281,71,0.00823478968549659],[120,281,72,0.00987508401535264],[120,281,73,0.011779572449491594],[120,281,74,0.01391633546732536],[120,281,75,0.01624648976578415],[120,281,76,0.018725869360719176],[120,281,77,0.021306612620493076],[120,281,78,0.01908436701652116],[120,281,79,0.016435611814977498],[120,282,64,0.005043455271691531],[120,282,65,0.004787376890962444],[120,282,66,0.004703187446939666],[120,282,67,0.004825026704056939],[120,282,68,0.005191114842594201],[120,282,69,0.005835803395383928],[120,282,70,0.006776771635731074],[120,282,71,0.008016824711626437],[120,282,72,0.009545926202958984],[120,282,73,0.011343146277540411],[120,282,74,0.013378522968529392],[120,282,75,0.015614834263816305],[120,282,76,0.018009278872964406],[120,282,77,0.020515063718619986],[120,282,78,0.01994514688272349],[120,282,79,0.01734882346023272],[120,283,64,0.0059043812588424815],[120,283,65,0.005582186332904942],[120,283,66,0.005422871298843352],[120,283,67,0.005456930737560919],[120,283,68,0.005722370605131789],[120,283,69,0.006255880000978432],[120,283,70,0.007077520775142464],[120,283,71,0.008192445708532756],[120,283,72,0.009592907627606756],[120,283,73,0.011260184487660857],[120,283,74,0.013166417975984564],[120,283,75,0.015276363353206642],[120,283,76,0.01754904842511757],[120,283,77,0.01993933971730403],[120,283,78,0.020632535250598678],[120,283,79,0.0181344626034176],[120,284,64,0.0071328631318851145],[120,284,65,0.006752696223794131],[120,284,66,0.00652472731153611],[120,284,67,0.006475846727380564],[120,284,68,0.00664322499004572],[120,284,69,0.007064896496092636],[120,284,70,0.007762555681447759],[120,284,71,0.008743191225611034],[120,284,72,0.010001053417514482],[120,284,73,0.011519537456669268],[120,284,74,0.013272980294640115],[120,284,75,0.015228368788468545],[120,284,76,0.017346957110817716],[120,284,77,0.01958579154053522],[120,284,78,0.021135649743600243],[120,284,79,0.018777125614285073],[120,285,64,0.008683210093211642],[120,285,65,0.008253509737097894],[120,285,66,0.007963997442430445],[120,285,67,0.007838094045518528],[120,285,68,0.007911587183509018],[120,285,69,0.008222911429498728],[120,285,70,0.008794665894444033],[120,285,71,0.00963516270495114],[120,285,72,0.010740336601263665],[120,285,73,0.012095570070001721],[120,285,74,0.013677431692747245],[120,285,75,0.015455325558046051],[120,285,76,0.01739304975701484],[120,285,77,0.019450262160681377],[120,285,78,0.021452767419506587],[120,285,79,0.01926912214734429],[120,286,64,0.010494435634758634],[120,286,65,0.010023489059732988],[120,286,66,0.009679797650095865],[120,286,67,0.009483520657002543],[120,286,68,0.009468608397876608],[120,286,69,0.009673042298424618],[120,286,70,0.01011965554393811],[120,286,71,0.010817596225462049],[120,286,72,0.011764166117966724],[120,286,73,0.01294657427767638],[120,286,74,0.014343603234123446],[120,286,75,0.01592718571921051],[120,286,76,0.017663890047895345],[120,286,77,0.019516312442221156],[120,286,78,0.021444374771530043],[120,286,79,0.019612262998417382],[120,287,64,0.01248929914836298],[120,287,65,0.01198472604347932],[120,287,66,0.01159401757232578],[120,287,67,0.011334323905198692],[120,287,68,0.011237415022195886],[120,287,69,0.011340106725132764],[120,287,70,0.01166489219915536],[120,287,71,0.012221322126882867],[120,287,72,0.013007763257307828],[120,287,73,0.014013070832721406],[120,287,74,0.015218172757224228],[120,287,75,0.016597563557619193],[120,287,76,0.018120706359746597],[120,287,77,0.019753341279737324],[120,287,78,0.021458698809433664],[120,287,79,0.019819749982557932],[120,288,64,0.014573236107143617],[120,288,65,0.014041400351144085],[120,288,66,0.013610107418323763],[120,288,67,0.013293758493164094],[120,288,68,0.013121728993325697],[120,288,69,0.013129150966099906],[120,288,70,0.013337743292054104],[120,288,71,0.013757112611350956],[120,288,72,0.014386426667643419],[120,288,73,0.015216000391357216],[120,288,74,0.016228792721446336],[120,288,75,0.017401812332667757],[120,288,76,0.01870743060777992],[120,288,77,0.020114600369919914],[120,288,78,0.02144657295620107],[120,288,79,0.01991816742075276],[120,289,64,0.016633178177537684],[120,289,65,0.01607852676964088],[120,289,66,0.01561175406437616],[120,289,67,0.015244733971708741],[120,289,68,0.015004378012776803],[120,289,69,0.014923868668766957],[120,289,70,0.015023903279024057],[120,289,71,0.015313920682710497],[120,289,72,0.015793689423200086],[120,289,73,0.016454807523415434],[120,289,74,0.01728211194714553],[120,289,75,0.01825499603016008],[120,289,76,0.01934863333748736],[120,289,77,0.02053510657860246],[120,289,78,0.02125041404610727],[120,289,79,0.019949573048368394],[120,290,64,0.018544694255177182],[120,290,65,0.017970325416746594],[120,290,66,0.017472489725352747],[120,290,67,0.017060651710223612],[120,290,68,0.016759300200108726],[120,290,69,0.016599642505255096],[120,290,70,0.01660127974948789],[120,290,71,0.01677336593229041],[120,290,72,0.01711611737406135],[120,290,73,0.017622232487438192],[120,290,74,0.018278220097721638],[120,290,75,0.019065634705273546],[120,290,76,0.01996221725577501],[120,290,77,0.02094294015945037],[120,290,78,0.021051452606489326],[120,290,79,0.019963937179174836],[120,291,64,0.020205958375538548],[120,291,65,0.0196172248176499],[120,291,66,0.019095670580537023],[120,291,67,0.018648317805482668],[120,291,68,0.01829724649857423],[120,291,69,0.018071705992810088],[120,291,70,0.017990124186203483],[120,291,71,0.018061211274377414],[120,291,72,0.018285404608282242],[120,291,73,0.018656222078656352],[120,291,74,0.019161522341307375],[120,291,75,0.01978467036936195],[120,291,76,0.02050560699333938],[120,291,77,0.02130182126624126],[120,291,78,0.020880042258821604],[120,291,79,0.01998606808981609],[120,292,64,0.021537873723432487],[120,292,65,0.020944056847815824],[120,292,66,0.020409283310607356],[120,292,67,0.01993932002003985],[120,292,68,0.019553826144921682],[120,292,69,0.01928012186589101],[120,292,70,0.01913535962447909],[120,292,71,0.019127590435409125],[120,292,72,0.01925716529498207],[120,292,73,0.019518042292647784],[120,292,74,0.01989899780600272],[120,292,75,0.020384740335855835],[120,292,76,0.020956925716567012],[120,292,77,0.021448833767256637],[120,292,78,0.020748108026828825],[120,292,79,0.02002357250611476],[120,293,64,0.020587837916636757],[120,293,65,0.021191062783437995],[120,293,66,0.021360556184273894],[120,293,67,0.02088375444774427],[120,293,68,0.020482366520754754],[120,293,69,0.02018183596044204],[120,293,70,0.0199979286407938],[120,293,71,0.019937784342794675],[120,293,72,0.020001301538149018],[120,293,73,0.020182423670272086],[120,293,74,0.020470325347495655],[120,293,75,0.020850497046980263],[120,293,76,0.021305727113135595],[120,293,77,0.0212227353725991],[120,293,78,0.020656948669201765],[120,293,79,0.0200736255574675],[120,294,64,0.02006000800198597],[120,294,65,0.020647839567423935],[120,294,66,0.021177298920506182],[120,294,67,0.021449421830599245],[120,294,68,0.021053093766418],[120,294,69,0.020749824037938094],[120,294,70,0.020553885451811332],[120,294,71,0.020471235511050484],[120,294,72,0.0205009157949221],[120,294,73,0.020636346992570633],[120,294,74,0.02086651800335381],[120,294,75,0.021177067710901686],[120,294,76,0.02150032223826006],[120,294,77,0.02106412195776108],[120,294,78,0.020599424078677948],[120,294,79,0.020125405605650848],[120,295,64,0.019973350505267946],[120,295,65,0.020533080405896794],[120,295,66,0.02103169899600033],[120,295,67,0.021473643938321577],[120,295,68,0.02125242578870694],[120,295,69,0.020972352355886525],[120,295,70,0.02079360389522876],[120,295,71,0.020720681402664733],[120,295,72,0.02075134643575857],[120,295,73,0.02087795742291922],[120,295,74,0.02108869235443757],[120,295,75,0.02136865643407839],[120,295,76,0.021345549771895327],[120,295,77,0.02096253834423768],[120,295,78,0.02056197144940026],[120,295,79,0.020162346681445155],[120,296,64,0.020328545367470512],[120,296,65,0.020846865452760818],[120,296,66,0.021297961095196383],[120,296,67,0.021400141670312577],[120,296,68,0.021082378620323746],[120,296,69,0.020852352906611395],[120,296,70,0.02072110218229746],[120,296,71,0.02069140762592923],[120,296,72,0.020759327285543673],[120,296,73,0.020915607916507806],[120,296,74,0.021146973598294212],[120,296,75,0.021437289641609167],[120,296,76,0.021272181230666747],[120,296,77,0.020901945178027907],[120,296,78,0.02052644944525243],[120,296,79,0.020164207769839567],[120,297,64,0.021108468764090324],[120,297,65,0.021496344672046197],[120,297,66,0.021118454312543975],[120,297,67,0.020803653805031394],[120,297,68,0.020560087001957127],[120,297,69,0.020406914156648796],[120,297,70,0.020353485218120287],[120,297,71,0.02040062173209097],[120,297,72,0.02054227187669397],[120,297,73,0.020767032599169497],[120,297,74,0.021059537009472835],[120,297,75,0.02140170543493668],[120,297,76,0.021260855291542594],[120,297,77,0.020862188267694155],[120,297,78,0.02047180979336425],[120,297,79,0.020108958393635207],[120,298,64,0.020771661743167826],[120,298,65,0.020387611952132453],[120,298,66,0.02008998725323199],[120,298,67,0.019864500547114406],[120,298,68,0.01971743998497464],[120,298,69,0.019666888043597362],[120,298,70,0.019720505205990602],[120,298,71,0.019876948288109066],[120,298,72,0.020127683051114845],[120,298,73,0.02045865071342205],[120,298,74,0.02085178634585321],[120,298,75,0.021286387407187548],[120,298,76,0.021287948332162136],[120,298,77,0.02082030533807289],[120,298,78,0.020375595902528618],[120,298,79,0.019974480137587153],[120,299,64,0.019255876464294847],[120,299,65,0.018952014196668282],[120,299,66,0.01874951780863466],[120,299,67,0.01863088934402018],[120,299,68,0.018600832294426436],[120,299,69,0.018676613926213025],[120,299,70,0.01886424118647877],[120,299,71,0.01916004582940838],[120,299,72,0.019552688467808495],[120,299,73,0.020025001639590968],[120,299,74,0.020555669658532873],[120,299,75,0.021120743321895435],[120,299,76,0.02132654959142356],[120,299,77,0.020751669902227897],[120,299,78,0.020215268265820638],[120,299,79,0.019740083930826595],[120,300,64,0.017469781208854212],[120,300,65,0.01725709777594986],[120,300,66,0.017162784299869453],[120,300,67,0.017166285699449443],[120,300,68,0.01727103214894054],[120,300,69,0.01749376013745745],[120,300,70,0.01783889811120629],[120,300,71,0.018300346239777995],[120,300,72,0.018863702507436894],[120,300,73,0.019508311424458833],[120,300,74,0.020209132875929656],[120,300,75,0.020938428961176],[120,300,76,0.02134728270243744],[120,300,77,0.020630972082483854],[120,300,78,0.01996935655014806],[120,300,79,0.01938784306413669],[120,301,64,0.015499199703120633],[120,301,65,0.01538697105618002],[120,301,66,0.015411509113041259],[120,301,67,0.015549409036472391],[120,301,68,0.01580316620675946],[120,301,69,0.016189283759691676],[120,301,70,0.016710726015830825],[120,301,71,0.0173589170634957],[120,301,72,0.018116215014711345],[120,301,73,0.018958191189482203],[120,301,74,0.01985571146094225],[120,301,75,0.020776817364971112],[120,301,76,0.021318973457070144],[120,301,77,0.020433036323742625],[120,301,78,0.019618438402525713],[120,301,79,0.018903742060501615],[120,302,64,0.01344704062067267],[120,302,65,0.013442404071118193],[120,302,66,0.013593509761015893],[120,302,67,0.013874345839625506],[120,302,68,0.014286822296339298],[120,302,69,0.01484750922693645],[120,302,70,0.015558059837354374],[120,302,71,0.016407447228489833],[120,302,72,0.01737470728469747],[120,302,73,0.018431467745789704],[120,302,74,0.019544260383789543],[120,302,75,0.020676613614237564],[120,302,76,0.021209163743419576],[120,302,77,0.020133476038371345],[120,302,78,0.019145945113203094],[120,302,79,0.01827864164190997],[120,303,64,0.011404019887283515],[120,303,65,0.011512280107808746],[120,303,66,0.011795066979572902],[120,303,67,0.012224032492015742],[120,303,68,0.012800848102406356],[120,303,69,0.013542439445411038],[120,303,70,0.01444932731211774],[120,303,71,0.015508117329236768],[120,303,72,0.01669452632179101],[120,303,73,0.017976175282561138],[120,303,74,0.019315145538345655],[120,303,75,0.02067029515090955],[120,303,76,0.02099340730794218],[120,303,77,0.019715744453269794],[120,303,78,0.018543019923464486],[120,303,79,0.017511028537664314],[120,304,64,0.009363776622665842],[120,304,65,0.009590719977257339],[120,304,66,0.01001063020789714],[120,304,67,0.01059316093684365],[120,304,68,0.011340093085401366],[120,304,69,0.01226896124842783],[120,304,70,0.013379312677918816],[120,304,71,0.014655463493883766],[120,304,72,0.01606982122360926],[120,304,73,0.01758595361697863],[120,304,74,0.019161399979169578],[120,304,75,0.02075022175069762],[120,304,76,0.020680114927786177],[120,304,77,0.019188949632047807],[120,304,78,0.017819422322043216],[120,304,79,0.01661122931174373],[120,305,64,0.007315736030322061],[120,305,65,0.007667584563009705],[120,305,66,0.008230396433627628],[120,305,67,0.008972223835069766],[120,305,68,0.00989529675432948],[120,305,69,0.011017968932436352],[120,305,70,0.012338946146323679],[120,305,71,0.013840321364380273],[120,305,72,0.015491203891884728],[120,305,73,0.01725107380135447],[120,305,74,0.019072857525342508],[120,305,75,0.02090572102005472],[120,305,76,0.02028056949065448],[120,305,77,0.018564918666348514],[120,305,78,0.016987488631931454],[120,305,79,0.015592018241523453],[120,306,64,0.005270492790709182],[120,306,65,0.005753217367981551],[120,306,66,0.006464252732912189],[120,306,67,0.007370483050100985],[120,306,68,0.008474904797987714],[120,306,69,0.009796854206793376],[120,306,70,0.011334304633887864],[120,306,71,0.013067190657906189],[120,306,72,0.014961350893911407],[120,306,73,0.016972174589158114],[120,306,74,0.019047947501989532],[120,306,75,0.02113289314046954],[120,306,76,0.019801130636862632],[120,306,77,0.017852401888753013],[120,306,78,0.016058297545287616],[120,306,79,0.014466678681630953],[120,307,64,0.00325464439250465],[120,307,65,0.0038733987702823454],[120,307,66,0.0047368847204224684],[120,307,67,0.0058112668944227605],[120,307,68,0.007100590929616888],[120,307,69,0.008625288876319808],[120,307,70,0.010382690209247715],[120,307,71,0.012350641488409446],[120,307,72,0.014491765712091575],[120,307,73,0.016757403622518815],[120,307,74,0.019091232085387246],[120,307,75,0.02143255528238428],[120,307,76,0.019244879038669508],[120,307,77,0.017058308189643108],[120,307,78,0.015042505501451971],[120,307,79,0.013249453871844523],[120,308,64,0.001306090898650781],[120,308,65,0.002064763191734355],[120,308,66,0.003083340981938201],[120,308,67,0.004327713303783909],[120,308,68,0.005803211795776161],[120,308,69,0.007531425189304479],[120,308,70,0.009509108582683072],[120,308,71,0.01171210122819986],[120,308,72,0.014099900522629178],[120,308,73,0.01661989601927707],[120,308,74,0.019211258200704427],[120,308,75,0.021161934109903947],[120,308,76,0.01861299235325703],[120,308,77,0.01618869459161659],[120,308,78,0.01395095804753834],[120,308,79,0.01195579424283435],[120,309,64,-5.301983214395317E-4],[120,309,65,3.7067962424351756E-4],[120,309,66,0.0015450538506549092],[120,309,67,0.002958959217587901],[120,309,68,0.004619195146956301],[120,309,69,0.006548513969329992],[120,309,70,0.008743147680421249],[120,309,71,0.01117702188007275],[120,309,72,0.01380663740771101],[120,309,73,0.016575590204777658],[120,309,74,0.019418723766582286],[120,309,75,0.020697910627908562],[120,309,76,0.017905853129087646],[120,309,77,0.015249510383095513],[120,309,78,0.012795077494982729],[120,309,79,0.010602401535024914],[120,310,64,-0.0022059508075756907],[120,310,65,-0.001162404465719614],[120,310,66,1.6631648665049506E-4],[120,310,67,0.0017467760681079826],[120,310,68,0.003587361119501361],[120,310,69,0.005711940331718151],[120,310,70,0.008116256060765619],[120,310,71,0.010772427679299746],[120,310,72,0.01363412868966062],[120,310,73,0.016641380653766944],[120,310,74,0.01972495793719858],[120,310,75,0.020147239571724394],[120,310,76,0.01712388901769159],[120,310,77,0.014247096151078333],[120,310,78,0.011587027191372891],[120,310,79,0.009207070021445147],[120,311,64,-0.003672890485832986],[120,311,65,-0.0024881562130046097],[120,311,66,-0.0010087841368647723],[120,311,67,7.326509504423473E-4],[120,311,68,0.002746176174961532],[120,311,69,0.005056676511258194],[120,311,70,0.0076594206861471305],[120,311,71,0.01052484243450181],[120,311,72,0.013603995898998597],[120,311,73,0.016833607065635733],[120,311,74,0.02014071488494855],[120,311,75,0.019505045921331645],[120,311,76,0.016268145682595145],[120,311,77,0.013188438060317146],[120,311,78,0.010339652703488812],[120,311,79,0.007788325073258397],[120,312,64,-0.004885571070633951],[120,312,65,-0.0035630880980416536],[120,312,66,-0.0019389790438467363],[120,312,67,-4.468723740353689E-5],[120,312,68,0.0021314389867674232],[120,312,69,0.0046151510997752354],[120,312,70,0.00740124336686983],[120,312,71,0.010458595949231687],[120,312,72,0.01373588675328992],[120,312,73,0.017166879393903905],[120,312,74,0.020675280597365304],[120,312,75,0.0187676529267367],[120,312,76,0.015340592802372804],[120,312,77,0.012081177700916192],[120,312,78,0.009066200153192676],[120,312,79,0.0063648592252343724],[120,313,64,-0.00580374435309244],[120,313,65,-0.004348827324355212],[120,313,66,-0.002587974820334032],[120,313,67,-5.51297626032234E-4],[120,313,68,0.0017743973582093093],[120,313,69,0.004415533812987391],[120,313,70,0.00736641504146792],[120,313,71,0.010594508744707184],[120,313,72,0.01404638943262021],[120,313,73,0.01765323809064668],[120,313,74,0.02133589213262649],[120,313,75,0.01793289473375928],[120,313,76,0.014344163533688366],[120,313,77,0.01093337776655512],[120,313,78,0.007779811860826631],[120,313,79,0.004954765786036004],[120,314,64,-0.006394264577802504],[120,314,65,-0.004813925014607864],[120,314,66,-0.0029261580908783473],[120,314,67,-7.5961429562726E-4],[120,314,68,0.0017002951035345229],[120,314,69,0.00448043477923699],[120,314,70,0.007574586958297004],[120,314,71,0.01094895423146569],[120,314,72,0.014548303393263346],[120,314,73,0.018301648911092355],[120,314,74,0.020819234104055517],[120,314,75,0.017000139999072194],[120,314,76,0.013282527730561258],[120,314,77,0.009753043729248857],[120,314,78,0.006492799329231626],[120,314,79,0.003574569893073075],[120,315,64,-0.006632530290422197],[120,315,65,-0.004935206570258124],[120,315,66,-0.0029318482022893284],[120,315,67,-6.495915215312611E-4],[120,315,68,0.0019273477292548829],[120,315,69,0.004826017271608329],[120,315,70,0.008039637776609118],[120,315,71,0.011533297456937139],[120,315,72,0.015250265966582154],[120,315,73,0.019117831655698386],[120,315,74,0.019890601348720012],[120,315,75,0.015970026831833004],[120,315,76,0.012159599105636871],[120,315,77,0.008547401541588688],[120,315,78,0.005215693443343858],[120,315,79,0.002238056731889636],[120,316,64,-0.006503465153206136],[120,316,65,-0.004698664634644163],[120,316,66,-0.0025920994851149253],[120,316,67,-2.094086338029871E-4],[120,316,68,0.0024661457195310206],[120,316,69,0.005461522793523851],[120,316,70,0.008769335616581055],[120,316,71,0.012353709590527957],[120,316,72,0.016156734048713973],[120,316,73,0.020104422309713488],[120,316,74,0.01882851742895182],[120,316,75,0.01484390926856736],[120,316,76,0.010978776365407136],[120,316,77,0.00732193122138036],[120,316,78,0.003956071563316083],[120,316,79,9.548964234938172E-4],[120,317,64,-0.006002039270185028],[120,317,65,-0.00409989612415527],[120,317,66,-0.0019030544689451236],[120,317,67,5.642642332189672E-4],[120,317,68,0.0033194842620964463],[120,317,69,0.006389207480268995],[120,317,70,0.00976539416049405],[120,317,71,0.013411357401474071],[120,317,72,0.017268320301617315],[120,317,73,0.021261468176823006],[120,317,74,0.017633607639581373],[120,317,75,0.013623015308674845],[120,317,76,0.009741918151463866],[120,317,77,0.006079155954024632],[120,317,78,0.0027171609509320633],[120,317,79,-2.709351724647057E-4],[120,318,64,-0.005133332532715093],[120,318,65,-0.0031440847419617517],[120,318,66,-8.698493593141842E-4],[120,318,67,0.00166643831109149],[120,318,68,0.004482618354269473],[120,318,69,0.007604688899492754],[120,318,70,0.011023922045738408],[120,318,71,0.01470296714146497],[120,318,72,0.018582483461372007],[120,318,73,0.020354975624572322],[120,318,74,0.01630678126072966],[120,318,75,0.012307316306923579],[120,318,76,0.008448051371069607],[120,318,77,0.004817186082162865],[120,318,78,0.0014962176871970805],[120,318,79,-0.001442940787589969],[120,319,64,-0.003912141384013386],[120,319,65,-0.0018455302580352322],[120,319,66,4.939270636775268E-4],[120,319,67,0.003084415260314129],[120,319,68,0.005943942407153185],[120,319,69,0.009097702527318728],[120,319,70,0.012536264999053661],[120,319,71,0.01622176246813156],[120,319,72,0.020094572589250115],[120,319,73,0.01886278399626506],[120,319,74,0.0148479451988291],[120,319,75,0.010894107233285507],[120,319,76,0.007091812199530502],[120,319,77,0.0035280170371744146],[120,319,78,2.8267991072960293E-4],[120,319,79,-0.0025740925972685875],[121,-64,64,-0.001969442539981586],[121,-64,65,-0.002410550798620125],[121,-64,66,-0.002767383506204914],[121,-64,67,-0.0030469532496025776],[121,-64,68,-0.003234280814258816],[121,-64,69,-0.0033002134775532896],[121,-64,70,-0.003220613179402091],[121,-64,71,-0.002977011991126351],[121,-64,72,-0.002556754956118891],[121,-64,73,-0.0019530502480858238],[121,-64,74,-0.0011649245597518635],[121,-64,75,-1.9708177451321863E-4],[121,-64,76,9.403368766790068E-4],[121,-64,77,0.0022320928124473856],[121,-64,78,0.0036582917258223464],[121,-64,79,0.005194928139466973],[121,-63,64,-0.0016042970476603238],[121,-63,65,-0.0020152061863313066],[121,-63,66,-0.0023380583872291165],[121,-63,67,-0.0025793827922116477],[121,-63,68,-0.0027248884614338],[121,-63,69,-0.0027469827204608297],[121,-63,70,-0.0026231417045599146],[121,-63,71,-0.002336500789789403],[121,-63,72,-0.0018759534815121933],[121,-63,73,-0.0012361615057307357],[121,-63,74,-4.1747418582110957E-4],[121,-63,75,5.742446760916075E-4],[121,-63,76,0.0017278840480257085],[121,-63,77,0.003027448528662146],[121,-63,78,0.004452518141149431],[121,-63,79,0.0059788062175629994],[121,-62,64,-0.0010655952772508101],[121,-62,65,-0.0014511872140272471],[121,-62,66,-0.0017465590402294766],[121,-62,67,-0.0019574189136607216],[121,-62,68,-0.002070215386060953],[121,-62,69,-0.0020591954262357787],[121,-62,70,-0.0019035995044017107],[121,-62,71,-0.001588196474044237],[121,-62,72,-0.0011033557146541669],[121,-62,73,-4.450337661415916E-4],[121,-62,74,3.8532632611125726E-4],[121,-62,75,0.001380984603467034],[121,-62,76,0.0025301842298887938],[121,-62,77,0.0038165233292944303],[121,-62,78,0.005219419828299033],[121,-62,79,0.006714670350316706],[121,-61,64,-3.6302397921797664E-4],[121,-61,65,-7.282500796547785E-4],[121,-61,66,-0.001002757778699066],[121,-61,67,-0.0011911344083517788],[121,-61,68,-0.0012806018450958214],[121,-61,69,-0.0012474751614180342],[121,-61,70,-0.0010728663392526225],[121,-61,71,-7.431733273068516E-4],[121,-61,72,-2.5014196179074796E-4],[121,-61,73,4.091549156934816E-4],[121,-61,74,0.0012324228192101864],[121,-61,75,0.0022123370055005735],[121,-61,76,0.003336821296973988],[121,-61,77,0.0045894156072741445],[121,-61,78,0.005949733287580927],[121,-61,79,0.0073940092598579294],[121,-60,64,4.903541056136835E-4],[121,-60,65,1.40663253179583E-4],[121,-60,66,-1.1947000203394389E-4],[121,-60,67,-2.9326350824282184E-4],[121,-60,68,-3.6873330416503566E-4],[121,-60,69,-3.244384852479084E-4],[121,-60,70,-1.4342829563001274E-4],[121,-60,71,1.8630503391968133E-4],[121,-60,72,6.717592812046243E-4],[121,-60,73,0.001314935865876506],[121,-60,74,0.002112935720447995],[121,-60,75,0.0030581388740062434],[121,-60,76,0.004138469091353666],[121,-60,77,0.005337744771903721],[121,-60,78,0.006636117169527996],[121,-60,79,0.008010596848138183],[121,-59,64,0.0014789192462385432],[121,-59,65,0.0011402644145021923],[121,-59,66,8.884079910135603E-4],[121,-59,67,7.216848017025599E-4],[121,-59,68,6.512701533166212E-4],[121,-59,69,6.962359588968847E-4],[121,-59,70,8.715672342497749E-4],[121,-59,71,0.001187736384116173],[121,-59,72,0.0016506175667210566],[121,-59,73,0.002261479995393723],[121,-59,74,0.0030170617248696965],[121,-59,75,0.0039097253498755645],[121,-59,76,0.0049276969162025865],[121,-59,77,0.006055389211042661],[121,-59,78,0.007273810461287814],[121,-59,79,0.008561059327210449],[121,-58,64,0.0025854773719880364],[121,-58,65,0.002253921302587259],[121,-58,66,0.0020049235964484415],[121,-58,67,0.0018384743798582667],[121,-58,68,0.0017649230105234851],[121,-58,69,0.001800893460845504],[121,-58,70,0.0019594067732118608],[121,-58,71,0.0022494743079831256],[121,-58,72,0.0026759822323850413],[121,-58,73,0.003239653593110804],[121,-58,74,0.003937089487362227],[121,-58,75,0.0047608907319594],[121,-58,76,0.0056998613076746744],[121,-58,77,0.006739294727420198],[121,-58,78,0.007861344343707569],[121,-58,79,0.009045478474311789],[121,-57,64,0.0037924059562585255],[121,-57,65,0.003464823627280595],[121,-57,66,0.003214254449890292],[121,-57,67,0.0030423499864906086],[121,-57,68,0.0029586016686791],[121,-57,69,0.0029771439818688174],[121,-57,70,0.0031090558457370263],[121,-57,71,0.0033619660487251416],[121,-57,72,0.0037398994537472465],[121,-57,73,0.004243199621494444],[121,-57,74,0.004868529346023355],[121,-57,75,0.005608950487330893],[121,-57,76,0.006454084368170299],[121,-57,77,0.007390353878751176],[121,-57,78,0.00840130830452982],[121,-57,79,0.009468031760425748],[121,-56,64,0.005079532459662291],[121,-56,65,0.004753630285605156],[121,-56,66,0.004498116081512837],[121,-56,67,0.004316201787966561],[121,-56,68,0.004216464968432916],[121,-56,69,0.004210540139146655],[121,-56,70,0.004307599781772656],[121,-56,71,0.004513966591403537],[121,-56,72,0.004832915915893176],[121,-56,73,0.005264553467112564],[121,-56,74,0.005805769785434976],[121,-56,75,0.006450272834089104],[121,-56,76,0.007188699987750961],[121,-56,77,0.008008810561145939],[121,-56,78,0.008895759899812805],[121,-56,79,0.00983245592791183],[121,-55,64,0.006404475929893069],[121,-55,65,0.006077239304912181],[121,-55,66,0.005812890462675347],[121,-55,67,0.005616027420120193],[121,-55,68,0.005494261736526154],[121,-55,69,0.005456780486291813],[121,-55,70,0.0055109379808419845],[121,-55,71,0.005661867943025993],[121,-55,72,0.005912236886447584],[121,-55,73,0.0062620717446419194],[121,-55,74,0.006708663226322361],[121,-55,75,0.007246546273549934],[121,-55,76,0.007867558892512538],[121,-55,77,0.008560980512879398],[121,-55,78,0.009313750912701266],[121,-55,79,0.010110770622908462],[121,-54,64,0.00772000805783311],[121,-54,65,0.007387221640019662],[121,-54,66,0.007109146725466717],[121,-54,67,0.00689154523766207],[121,-54,68,0.006741028753131537],[121,-54,69,0.0066644610897681955],[121,-54,70,0.006667530220071854],[121,-54,71,0.006754351085794092],[121,-54,72,0.006927163834379185],[121,-54,73,0.007186105611935538],[121,-54,74,0.007529057396309988],[121,-54,75,0.007951567259424587],[121,-54,76,0.008446851345551312],[121,-54,77,0.00900587374286067],[121,-54,78,0.009617506310641594],[121,-54,79,0.010268769405386707],[121,-53,64,0.008986217290582809],[121,-53,65,0.008642808822508456],[121,-53,66,0.008345475711160288],[121,-53,67,0.008100883386357418],[121,-53,68,0.007914626117135368],[121,-53,69,0.007791428983680912],[121,-53,70,0.007735516732297026],[121,-53,71,0.007750196212074187],[121,-53,72,0.007837493029001366],[121,-53,73,0.007997861559908176],[121,-53,74,0.008229969832250156],[121,-53,75,0.00853056068565669],[121,-53,76,0.008894390532631483],[121,-53,77,0.00931424693002506],[121,-53,78,0.009781046061126532],[121,-53,79,0.01028401111177079],[121,-52,64,0.01017073300351144],[121,-52,65,0.009811096675732425],[121,-52,66,0.00948867031264986],[121,-52,67,0.009210734367985977],[121,-52,68,0.008981863869298409],[121,-52,69,0.00880487884502449],[121,-52,70,0.008682783257578822],[121,-52,71,0.008618314947381498],[121,-52,72,0.008613514305554786],[121,-52,73,0.008669366738707862],[121,-52,74,0.008785520470683745],[121,-52,75,0.00896008113946757],[121,-52,76,0.00918948455188302],[121,-52,77,0.00946844885541947],[121,-52,78,0.00979000727676456],[121,-52,79,0.010145622461690233],[121,-51,64,0.01124900441838483],[121,-51,65,0.010867299390436989],[121,-51,66,0.010513951491649883],[121,-51,67,0.010196550180319102],[121,-51,68,0.00991866370426152],[121,-51,69,0.00968147903690373],[121,-51,70,0.00948704967636365],[121,-51,71,0.009337800480067545],[121,-51,72,0.00923602235149991],[121,-51,73,0.00918344187949611],[121,-51,74,0.009180867530415346],[121,-51,75,0.009227913909137214],[121,-51,76,0.00932280551098196],[121,-51,77,0.009462261284546643],[121,-51,78,0.009641461216306824],[121,-51,79,0.009854096032992284],[121,-50,64,0.011142586952898414],[121,-50,65,0.011606129614616802],[121,-50,66,0.01140530486817656],[121,-50,67,0.011042847089752963],[121,-50,68,0.010710328957983349],[121,-50,69,0.010407604205123712],[121,-50,70,0.010136063163236961],[121,-50,71,0.009898079921245254],[121,-50,72,0.009696427727218803],[121,-50,73,0.00953377130038942],[121,-50,74,0.009412237724480878],[121,-50,75,0.009333067510496855],[121,-50,76,0.009296347323572986],[121,-50,77,0.009300825766077884],[121,-50,78,0.009343813499082759],[121,-50,79,0.009421168867970576],[121,-49,64,0.010298334218273862],[121,-49,65,0.010793103693546935],[121,-49,66,0.011275215381658732],[121,-49,67,0.011737371585896265],[121,-49,68,0.011349191772130392],[121,-49,69,0.010977595733849547],[121,-49,70,0.010626477328124074],[121,-49,71,0.01029840487554641],[121,-49,72,0.009996838718942126],[121,-49,73,0.009725543371369941],[121,-49,74,0.00948808104514892],[121,-49,75,0.009287388233145497],[121,-49,76,0.009125436918850338],[121,-49,77,0.009002981887516985],[121,-49,78,0.008919395498091768],[121,-49,79,0.008872591156234833],[121,-48,64,0.00961585908404012],[121,-48,65,0.01014396017697402],[121,-48,66,0.010666436091769817],[121,-48,67,0.011176625858048139],[121,-48,68,0.0116738075642189],[121,-48,69,0.011386727943980221],[121,-48,70,0.010958365610457266],[121,-48,71,0.010543872521116573],[121,-48,72,0.010147517020282657],[121,-48,73,0.009774235598395145],[121,-48,74,0.009429050776039633],[121,-48,75,0.009116575333396925],[121,-48,76,0.008840604543132697],[121,-48,77,0.008603797957540142],[121,-48,78,0.008407452184640975],[121,-48,79,0.008251365964385722],[121,-47,64,0.00911342128246877],[121,-47,65,0.009673972387934405],[121,-47,66,0.01023456670433487],[121,-47,67,0.010789501391078118],[121,-47,68,0.011339019825183832],[121,-47,69,0.01163526664290209],[121,-47,70,0.011136593055012545],[121,-47,71,0.01064409324619602],[121,-47,72,0.010162877679760852],[121,-47,73,0.009699037029069211],[121,-47,74,0.00925898983000255],[121,-47,75,0.008848919778206918],[121,-47,76,0.00847430440088573],[121,-47,77,0.008139536722125962],[121,-47,78,0.007847641420532802],[121,-47,79,0.0076000868497910715],[121,-46,64,0.008799968798776637],[121,-46,65,0.009389563700326517],[121,-46,66,0.009983230379494114],[121,-46,67,0.010576539737451008],[121,-46,68,0.011170746754657188],[121,-46,69,0.011729542770704902],[121,-46,70,0.011171181434199765],[121,-46,71,0.010612853800567574],[121,-46,72,0.010060471761029961],[121,-46,73,0.009521186492963038],[121,-46,74,0.00900267428399513],[121,-46,75,0.008512514957158787],[121,-46,76,0.008057664681802443],[121,-46,77,0.007644024840460008],[121,-46,78,0.0072761084975291905],[121,-46,79,0.006956805882944992],[121,-45,64,0.00867611289198909],[121,-45,65,0.009289256380993172],[121,-45,66,0.0099086770521948],[121,-45,67,0.010531521459221206],[121,-45,68,0.011160122922478427],[121,-45,69,0.011681182078202427],[121,-45,70,0.011076601587384967],[121,-45,71,0.010467478808788124],[121,-45,72,0.00986042280236765],[121,-45,73,0.009263488874019354],[121,-45,74,0.008685413301873425],[121,-45,75,0.008134942980187469],[121,-45,76,0.007620261798644044],[121,-45,77,0.0071485154569085885],[121,-45,78,0.006725436286250398],[121,-45,79,0.006355069513427298],[121,-44,64,0.008735082548856101],[121,-44,65,0.009364600893579754],[121,-44,66,0.010000680126396967],[121,-44,67,0.01064232299013046],[121,-44,68,0.011293024327468955],[121,-44,69,0.011506349426179386],[121,-44,70,0.010871078967667298],[121,-44,71,0.010228204136366013],[121,-44,72,0.009584873891833523],[121,-44,73,0.008949840927800101],[121,-44,74,0.008332657737904226],[121,-44,75,0.007742969029726742],[121,-44,76,0.007189902312979693],[121,-44,77,0.0066815583669972865],[121,-44,78,0.006224603161765683],[121,-44,79,0.005823962667187293],[121,-43,64,0.00896366121984923],[121,-43,65,0.009601088422761164],[121,-43,66,0.010243417302027545],[121,-43,67,0.01089175866900483],[121,-43,68,0.011550864640439798],[121,-43,69,0.01122500548071847],[121,-43,70,0.01057591034218612],[121,-43,71,0.009917560237760085],[121,-43,72,0.009257443678574933],[121,-43,73,0.008604765161384023],[121,-43,74,0.007969616138598052],[121,-43,75,0.007362242683851779],[121,-43,76,0.006792411660352845],[121,-43,77,0.0062688770768457676],[121,-43,78,0.005798948183472513],[121,-43,79,0.005388160718700437],[121,-42,64,0.009343108692059203],[121,-42,65,0.009979049385130962],[121,-42,66,0.010616338193100422],[121,-42,67,0.011258410477306245],[121,-42,68,0.011491044115102973],[121,-42,69,0.010860173572814071],[121,-42,70,0.010214789587892514],[121,-42,71,0.009559763614788892],[121,-42,72,0.008902689645802842],[121,-42,73,0.008252950305617178],[121,-42,74,0.007620876880739197],[121,-42,75,0.007017005157119486],[121,-42,76,0.0064514288277538285],[121,-42,77,0.00593325210930892],[121,-42,78,0.005470143074153375],[121,-42,79,0.005067989063175748],[121,-41,64,0.0098500709504382],[121,-41,65,0.010474540691794267],[121,-41,66,0.011095021395151177],[121,-41,67,0.011643547262311142],[121,-41,68,0.01104765283996069],[121,-41,69,0.010437214491223475],[121,-41,70,0.00981314052742903],[121,-41,71,0.009180114520004036],[121,-41,72,0.00854557698159862],[121,-41,73,0.007918796926217327],[121,-41,74,0.00731003520793972],[121,-41,75,0.006729801439361029],[121,-41,76,0.006188206180290167],[121,-41,77,0.005694409965774375],[121,-41,78,0.005256170611550655],[121,-41,79,0.004879490096065622],[121,-40,64,0.010457480866084012],[121,-40,65,0.011060224517295634],[121,-40,66,0.01165202365100632],[121,-40,67,0.01111890451620812],[121,-40,68,0.010557095298651741],[121,-40,69,0.009983106985849541],[121,-40,70,0.00939745475951353],[121,-40,71,0.008804399051964857],[121,-40,72,0.008210951400086482],[121,-40,73,0.007625966742030112],[121,-40,74,0.007059323956716257],[121,-40,75,0.0065211963496491785],[121,-40,76,0.006021413680554151],[121,-40,77,0.005568917210040126],[121,-40,78,0.005171309115214512],[121,-40,79,0.004834497489379293],[121,-39,64,0.011135452527888026],[121,-39,65,0.011587748047026338],[121,-39,66,0.011071164611600624],[121,-39,67,0.010561544372281574],[121,-39,68,0.010048007652153199],[121,-39,69,0.00952573177511765],[121,-39,70,0.00899463245522333],[121,-39,71,0.008458293808334775],[121,-39,72,0.007923014287762405],[121,-39,73,0.007396934245638745],[121,-39,74,0.006889246796045022],[121,-39,75,0.006409493563056509],[121,-39,76,0.005966946793339015],[121,-39,77,0.005570079199824873],[121,-39,78,0.005226122781564986],[121,-39,79,0.00494071773646071],[121,-38,64,0.011416108203027483],[121,-38,65,0.010921539057471865],[121,-38,66,0.010454723613696044],[121,-38,67,0.010001645059250514],[121,-38,68,0.00954962625654342],[121,-38,69,0.009093156874977517],[121,-38,70,0.00863132411597851],[121,-38,71,0.00816677128842809],[121,-38,72,0.0077047985780017555],[121,-38,73,0.0072525392535915814],[121,-38,74,0.006818212841592476],[121,-38,75,0.0064104567115857635],[121,-38,76,0.006037737419936471],[121,-38,77,0.005707843052066361],[121,-38,78,0.005427457690817139],[121,-38,79,0.005201819018635033],[121,-37,64,0.010706672043004769],[121,-37,65,0.010261743767357218],[121,-37,66,0.00985494524751766],[121,-37,67,0.009469562612694379],[121,-37,68,0.009091023351606678],[121,-37,69,0.0087129220995777],[121,-37,70,0.008333271321059071],[121,-37,71,0.007953504269475577],[121,-37,72,0.007577643791145706],[121,-37,73,0.007211539050862273],[121,-37,74,0.006862171547428783],[121,-37,75,0.006537031707815111],[121,-37,76,0.006243567260220482],[121,-37,77,0.005988704490131284],[121,-37,78,0.0057784433804616755],[121,-37,79,0.005617527528192024],[121,-36,64,0.010027236511941082],[121,-36,65,0.009640530720781153],[121,-36,66,0.009302900627814565],[121,-36,67,0.008995022298502573],[121,-36,68,0.008700339949614892],[121,-36,69,0.008411320624517169],[121,-36,70,0.008124644532327847],[121,-36,71,0.007840267420587344],[121,-36,72,0.007560668718195228],[121,-36,73,0.007290158836857622],[121,-36,74,0.007034246824019157],[121,-36,75,0.006799069490312914],[121,-36,76,0.006590883056974208],[121,-36,77,0.006415618284213959],[121,-36,78,0.006278499951120278],[121,-36,79,0.006183731462227283],[121,-35,64,0.009410011561967021],[121,-35,65,0.009089100115768647],[121,-35,66,0.008828462343078738],[121,-35,67,0.00860630509028569],[121,-35,68,0.008404013710634579],[121,-35,69,0.008212675553090376],[121,-35,70,0.008027376071667671],[121,-35,71,0.007846334465344466],[121,-35,72,0.007670240273159775],[121,-35,73,0.007501639228435386],[121,-35,74,0.007344369381701292],[121,-35,75,0.007203048443727829],[121,-35,76,0.007082613235375088],[121,-35,77,0.0069879120603941235],[121,-35,78,0.00692335074158136],[121,-35,79,0.0068925929805997675],[121,-34,64,0.008885551688756347],[121,-34,65,0.00863679992764227],[121,-34,66,0.00845944873761934],[121,-34,67,0.008329426917921448],[121,-34,68,0.008225999651930977],[121,-34,69,0.008138609484321935],[121,-34,70,0.008060486442666373],[121,-34,71,0.007987869258306586],[121,-34,72,0.007919437092637894],[121,-34,73,0.007855779629065477],[121,-34,74,0.007798906353721158],[121,-34,75,0.007751795803616491],[121,-34,76,0.007717985511113942],[121,-34,77,0.007701203318882307],[121,-34,78,0.007705040680415832],[121,-34,79,0.007732668498351731],[121,-33,64,0.00848184310096545],[121,-33,65,0.008310232356916514],[121,-33,66,0.008220758603878076],[121,-33,67,0.00818730847889531],[121,-33,68,0.008186981609933636],[121,-33,69,0.008207305149046879],[121,-33,70,0.008239402232490476],[121,-33,71,0.008277309202648042],[121,-33,72,0.008317506521382243],[121,-33,73,0.00835847633255365],[121,-33,74,0.00840028731225249],[121,-33,75,0.008444207416511496],[121,-33,76,0.00849234510320201],[121,-33,77,0.008547319567743324],[121,-33,78,0.008611960491533763],[121,-33,79,0.008689037758051006],[121,-32,64,0.008223379017755314],[121,-32,65,0.008132348289919714],[121,-32,66,0.008133494057435336],[121,-32,67,0.008198933488982211],[121,-32,68,0.008303572454020589],[121,-32,69,0.008432755257049668],[121,-32,70,0.008575263902873278],[121,-32,71,0.008722739505796058],[121,-32,72,0.008869313689549902],[121,-32,73,0.009011254294729678],[121,-32,74,0.009146625854696982],[121,-32,75,0.009274965289424984],[121,-32,76,0.00939697325201247],[121,-32,77,0.009514221544678417],[121,-32,78,0.009628877000114432],[121,-32,79,0.009743442200314202],[121,-31,64,0.008130220832595006],[121,-31,65,0.008121527564332964],[121,-31,66,0.00821406946702927],[121,-31,67,0.008378493344329023],[121,-31,68,0.008587501142288923],[121,-31,69,0.008823999784532268],[121,-31,70,0.009074221860886942],[121,-31,71,0.009327256847495425],[121,-31,72,0.009574781461178737],[121,-31,73,0.009810791577255885],[121,-31,74,0.010031336005973392],[121,-31,75,0.010234252429887698],[121,-31,76,0.01041890580940239],[121,-31,77,0.010585929566079212],[121,-31,78,0.010736969853257273],[121,-31,79,0.010874433220897919],[121,-30,64,0.00821704300145262],[121,-30,65,0.008290642947456482],[121,-30,66,0.0084733044230861],[121,-30,67,0.008734516273383622],[121,-30,68,0.009044784810743398],[121,-30,69,0.009384349027159462],[121,-30,70,0.009736719290870872],[121,-30,71,0.01008832112033386],[121,-30,72,0.010428320114293477],[121,-30,73,0.01074843554432096],[121,-30,74,0.01104274275548279],[121,-30,75,0.011307464547703816],[121,-30,76,0.011540751735758895],[121,-30,77,0.011742453109357157],[121,-30,78,0.011731648074126941],[121,-30,79,0.011592584251655071],[121,-29,64,0.008492159645441859],[121,-29,65,0.008646105862515881],[121,-29,66,0.008915498850983165],[121,-29,67,0.009268979174614307],[121,-29,68,0.009674884199182747],[121,-29,69,0.010110590849844192],[121,-29,70,0.01055676032874469],[121,-29,71,0.010997093996598397],[121,-29,72,0.011418245701060797],[121,-29,73,0.011809709975534044],[121,-29,74,0.011470689202753698],[121,-29,75,0.011167255882054328],[121,-29,76,0.010908223916693431],[121,-29,77,0.010694344750746276],[121,-29,78,0.010524450178409086],[121,-29,79,0.010395707020350396],[121,-28,64,0.008956531002253227],[121,-28,65,0.009186892037950527],[121,-28,66,0.009537488509777512],[121,-28,67,0.009976400464805258],[121,-28,68,0.010469840839715833],[121,-28,69,0.010992180680491969],[121,-28,70,0.011521162269126741],[121,-28,71,0.011592562939475994],[121,-28,72,0.01111407993892741],[121,-28,73,0.010675128945229243],[121,-28,74,0.010285237689248914],[121,-28,75,0.009950960752375169],[121,-28,76,0.00967603613380443],[121,-28,77,0.009461578296941884],[121,-28,78,0.00930630751780154],[121,-28,79,0.009206815296462867],[121,-27,64,0.009602748017499989],[121,-27,65,0.009903545406629128],[121,-27,66,0.010327679263677291],[121,-27,67,0.01084291240313896],[121,-27,68,0.011413394567527088],[121,-27,69,0.01162879714439736],[121,-27,70,0.011041325798748253],[121,-27,71,0.01047289109763044],[121,-27,72,0.009941614910683325],[121,-27,73,0.009462058818602907],[121,-27,74,0.009045265771848714],[121,-27,75,0.008698850230684105],[121,-27,76,0.008427136777664298],[121,-27,77,0.008231347107044224],[121,-27,78,0.008109835210852411],[121,-27,79,0.008058370499503857],[121,-26,64,0.010413993536709661],[121,-26,65,0.010777158746579299],[121,-26,66,0.011265058672370409],[121,-26,67,0.011806367807171614],[121,-26,68,0.011183540664951164],[121,-26,69,0.010536697253392055],[121,-26,70,0.009893848873976223],[121,-26,71,0.009279177047737069],[121,-26,72,0.00871292798103753],[121,-26,73,0.008211365969633467],[121,-26,74,0.007786785956416344],[121,-26,75,0.007447585351497387],[121,-26,76,0.007198395116523124],[121,-26,77,0.00704027000940782],[121,-26,78,0.006970937782141613],[121,-26,79,0.006985107024116607],[121,-25,64,0.011362984867365488],[121,-25,65,0.011778367588313689],[121,-25,66,0.011362207517685543],[121,-25,67,0.010742020445910353],[121,-25,68,0.010068215142782493],[121,-25,69,0.009375553148532847],[121,-25,70,0.008694703483929008],[121,-25,71,0.008052116884656822],[121,-25,72,0.007469886195216407],[121,-25,73,0.006965675082282548],[121,-25,74,0.006552715301448681],[121,-25,75,0.006239872627221169],[121,-25,76,0.006031781432108696],[121,-25,77,0.005929047777933992],[121,-25,78,0.005928520762366703],[121,-25,79,0.006023631747447332],[121,-24,64,0.011287323905654043],[121,-24,65,0.010843362124115534],[121,-24,66,0.01027542118012464],[121,-24,67,0.009615989587238926],[121,-24,68,0.008906567406835994],[121,-24,69,0.008184695973240468],[121,-24,70,0.007483451141029817],[121,-24,71,0.006831261336646291],[121,-24,72,0.006251749289399175],[121,-24,73,0.005763650099389589],[121,-24,74,0.00538080586730942],[121,-24,75,0.005112236971617857],[121,-24,76,0.004962289939417567],[121,-24,77,0.00493086171985733],[121,-24,78,0.005013700034519842],[121,-24,79,0.00520277934947677],[121,-23,64,0.010223310882573361],[121,-23,65,0.009745599831702654],[121,-23,66,0.00914739364094577],[121,-23,67,0.008461136955547068],[121,-23,68,0.007729901413031082],[121,-23,69,0.00699376797403947],[121,-23,70,0.006287949789669093],[121,-23,71,0.005642565457309783],[121,-23,72,0.005082472746968902],[121,-23,73,0.004627185661082071],[121,-23,74,0.0042908750236986025],[121,-23,75,0.004082452641588029],[121,-23,76,0.004005738927093722],[121,-23,77,0.0040597137220118665],[121,-23,78,0.004238849914979136],[121,-23,79,0.00453352930341375],[121,-22,64,0.009132443502514364],[121,-22,65,0.008628297061003484],[121,-22,66,0.008008812664354978],[121,-22,67,0.007306253530734382],[121,-22,68,0.006565003542050399],[121,-22,69,0.005827406339910498],[121,-22,70,0.0051305335456745356],[121,-22,71,0.004505919411981399],[121,-22,72,0.003979392321468907],[121,-22,73,0.0035709959585918543],[121,-22,74,0.003295000308346523],[121,-22,75,0.0031600024694691054],[121,-22,76,0.0031691171044876155],[121,-22,77,0.0033202561865445374],[121,-22,78,0.0036064975448808997],[121,-22,79,0.004016541559011543],[121,-21,64,0.008046888547653277],[121,-21,65,0.007521583107970028],[121,-21,66,0.006887690965807575],[121,-21,67,0.00617711793841173],[121,-21,68,0.005435253930105533],[121,-21,69,0.004706400651938961],[121,-21,70,0.004029208245217792],[121,-21,71,0.0034363724909537274],[121,-21,72,0.0029544650300799826],[121,-21,73,0.0026038593060051423],[121,-21,74,0.0023987523347665947],[121,-21,75,0.002347282229339163],[121,-21,76,0.0024517412274736115],[121,-21,77,0.0027088837985713454],[121,-21,78,0.0031103292363815443],[121,-21,79,0.00364305798258806],[121,-20,64,0.0069975831452832125],[121,-20,65,0.00645410075502814],[121,-20,66,0.005810209666606692],[121,-20,67,0.005097255848681984],[121,-20,68,0.004361296853590115],[121,-20,69,0.0036482717934810597],[121,-20,70,0.0029981391152012205],[121,-20,71,0.002444532517406475],[121,-20,72,0.0020145859592329376],[121,-20,73,0.0017288605316047167],[121,-20,74,0.0016013732475935597],[121,-20,75,0.0016397276168741424],[121,-20,76,0.0018453456799510277],[121,-20,77,0.0022138009923728637],[121,-20,78,0.002735251869558165],[121,-20,79,0.003394974031111982],[121,-19,64,0.006015240194872554],[121,-19,65,0.005453936906688993],[121,-19,66,0.004801569191827678],[121,-19,67,0.004088705151147822],[121,-19,68,0.0033617149886197998],[121,-19,69,0.0026678524380874457],[121,-19,70,0.0020481372061148693],[121,-19,71,0.0015369605992256697],[121,-19,72,0.0011618963402232475],[121,-19,73,9.436198873009233E-4],[121,-19,74,8.959362691236128E-4],[121,-19,75,0.0010259162440925354],[121,-19,76,0.0013341403894944234],[121,-19,77,0.0018150505282146549],[121,-19,78,0.0024574077092531727],[121,-19,79,0.003244855775533829],[121,-18,64,0.0051313659045525905],[121,-18,65,0.004549563916290415],[121,-18,66,0.003886849261493345],[121,-18,67,0.0031727884774553415],[121,-18,68,0.002453709030921159],[121,-18,69,0.0017778705072562543],[121,-18,70,0.0011871458797786303],[121,-18,71,7.165624137295342E-4],[121,-18,72,3.9408398016151157E-4],[121,-18,73,2.4050946161525866E-4],[121,-18,74,2.6948723091493106E-4],[121,-18,75,4.876454640510546E-4],[121,-18,76,8.948378306327408E-4],[121,-18,77,0.001484503892937989],[121,-18,78,0.0022441433394137485],[121,-18,79,0.003155902982835287],[121,-17,64,0.004365905360599661],[121,-17,65,0.003758523365298719],[121,-17,66,0.0030809241051489005],[121,-17,67,0.002361455592365703],[121,-17,68,0.0016460536348012543],[121,-17,69,9.83686194124587E-4],[121,-17,70,4.1689948649504096E-4],[121,-17,71,-1.8723904771998496E-5],[121,-17,72,-2.94829190596409E-4],[121,-17,73,-3.9042858562162515E-4],[121,-17,74,-2.919156014223593E-4],[121,-17,75,7.045302725135818E-6],[121,-17,76,5.057532026768833E-4],[121,-17,77,0.0011968285875786863],[121,-17,78,0.0020666936735704022],[121,-17,79,0.0030961739821434692],[121,-16,64,0.003691206560156767],[121,-16,65,0.0030547320937941947],[121,-16,66,0.0023596648695846855],[121,-16,67,0.0016329409941248912],[121,-16,68,9.197360749644334E-4],[121,-16,69,2.69374856708613E-4],[121,-16,70,-2.7517256296559045E-4],[121,-16,71,-6.779288044075303E-4],[121,-16,72,-9.102338179765397E-4],[121,-16,73,-9.509347597970875E-4],[121,-16,74,-7.864411736517546E-4],[121,-16,75,-4.106457794052161E-4],[121,-16,76,1.752885771816672E-4],[121,-16,77,9.632750099612783E-4],[121,-16,78,0.0019387806701434548],[121,-16,79,0.0030814355446242715],[121,-15,64,0.003077656558732037],[121,-15,65,0.002410830144920297],[121,-15,66,0.0016983443273392656],[121,-15,67,9.655511378722394E-4],[121,-15,68,2.564765681151429E-4],[121,-15,69,-3.796079625101737E-4],[121,-15,70,-8.996354806131583E-4],[121,-15,71,-0.00126748511578372],[121,-15,72,-0.0014543759383263207],[121,-15,73,-0.001439115839928981],[121,-15,74,-0.0012082055014855629],[121,-15,75,-7.557977712432384E-4],[121,-15,76,-8.351305150618235E-5],[121,-15,77,7.998884393553388E-4],[121,-15,78,0.0018789764036360808],[121,-15,79,0.0031322608267308],[121,-14,64,0.0025059842754309274],[121,-14,65,0.0018094063373822534],[121,-14,66,0.0010816039620122737],[121,-14,67,3.4618862690964983E-4],[121,-14,68,-3.5436473652421875E-4],[121,-14,69,-9.712900483445135E-4],[121,-14,70,-0.0014618074739268104],[121,-14,71,-0.001789970974592898],[121,-14,72,-0.0019271357603668723],[121,-14,73,-0.0018522705756423238],[121,-14,74,-0.001552114862740911],[121,-14,75,-0.001021181148543219],[121,-14,76,-2.6160329532592936E-4],[121,-14,77,7.171684541685001E-4],[121,-14,78,0.0018988244285289236],[121,-14,79,0.0032608030015858843],[121,-13,64,0.0019652262309138883],[121,-13,65,0.0012410028980103995],[121,-13,66,5.015265956708737E-4],[121,-13,67,-2.314764468918501E-4],[121,-13,68,-9.174863246325132E-4],[121,-13,69,-0.0015087195353118217],[121,-13,70,-0.001963104661358211],[121,-13,71,-0.0022452338346849745],[121,-13,72,-0.0023269045181511993],[121,-13,73,-0.002187496325849367],[121,-13,74,-0.0018141829293932565],[121,-13,75,-0.0012019794183860098],[121,-13,76,-3.536257996273976E-4],[121,-13,77,7.206923716017842E-4],[121,-13,78,0.0020037849367947444],[121,-13,79,0.0034720580805085673],[121,-12,64,0.0014508671290867467],[121,-12,65,7.022924950367978E-4],[121,-12,66,-4.412274303458567E-5],[121,-12,67,-7.686729989539547E-4],[121,-12,68,-0.0014331899793970956],[121,-12,69,-0.001991358727121021],[121,-12,70,-0.0024022560754737255],[121,-12,71,-0.0026314004857303963],[121,-12,72,-0.0026513658118225525],[121,-12,73,-0.002442221087087793],[121,-12,74,-0.0019917963853050913],[121,-12,75,-0.0012957751489385044],[121,-12,76,-3.5761371313760914E-4],[121,-12,77,8.117109184851299E-4],[121,-12,78,0.0021941236742555677],[121,-12,79,0.0037650427177623852],[121,-11,64,9.631556455578925E-4],[121,-11,65,1.9442796048860383E-4],[121,-11,66,-5.534874731866905E-4],[121,-11,67,-0.0012630330730443084],[121,-11,68,-0.0018987713294829876],[121,-11,69,-0.0024163344825538498],[121,-11,70,-0.0027763884815046767],[121,-11,71,-0.0029457727416456444],[121,-11,72,-0.0028981810208373493],[121,-11,73,-0.002614660394639712],[121,-11,74,-0.002083928390999993],[121,-11,75,-0.001302508703862238],[121,-11,76,-2.7468625812421304E-4],[121,-11,77,9.877172572961522E-4],[121,-11,78,0.0024657459393320038],[121,-11,79,0.004133888538097619],[121,-10,64,5.055964599514806E-4],[121,-10,65,-2.784343447770843E-4],[121,-10,66,-0.0010220407537092323],[121,-10,67,-0.0017099327549874761],[121,-10,68,-0.002309755486926917],[121,-10,69,-0.0027795443972926876],[121,-10,70,-0.0030819802552972775],[121,-10,71,-0.0031856080481323158],[121,-10,72,-0.0030655780319570076],[121,-10,73,-0.00270419832142838],[121,-10,74,-0.00209129909077154],[121,-10,75,-0.0012244088333452038],[121,-10,76,-1.0874349471744632E-4],[121,-10,77,0.0012429903469232736],[121,-10,78,0.002810976733191834],[121,-10,79,0.004568854161384292],[121,-9,64,8.36202019696367E-5],[121,-9,65,-7.104359448114678E-4],[121,-9,66,-0.001443835919459728],[121,-9,67,-0.002103668461927551],[121,-9,68,-0.002660976428728083],[121,-9,69,-0.0030766175038433995],[121,-9,70,-0.003315683110357841],[121,-9,71,-0.0033487838660386914],[121,-9,72,-0.0031528422044265333],[121,-9,73,-0.002711691559973182],[121,-9,74,-0.0020164822053782856],[121,-9,75,-0.0010658942157817546],[121,-9,76,1.3384158535581376E-4],[121,-9,77,0.0015691134734379607],[121,-9,78,0.0032192878807279467],[121,-9,79,0.0050572557430491735],[121,-8,64,-2.9656643166305925E-4],[121,-8,65,-0.0010951402817445909],[121,-8,66,-0.0018125840010782786],[121,-8,67,-0.0024384666463298276],[121,-8,68,-0.002947498263714207],[121,-8,69,-0.0033037277401740963],[121,-8,70,-0.003475010042064695],[121,-8,71,-0.003434344324591602],[121,-8,72,-0.0031607081997017715],[121,-8,73,-0.0026396953532317113],[121,-8,74,-0.0018639566168844816],[121,-8,75,-8.33444996328373E-4],[121,-8,76,4.445344543139344E-4],[121,-8,77,0.001955468642564387],[121,-8,78,0.0036779726984303963],[121,-8,79,0.005584316505061806],[121,-7,64,-6.28947594939119E-4],[121,-7,65,-0.0014264766769084662],[121,-7,66,-0.002122555748896692],[121,-7,67,-0.0027093244551179437],[121,-7,68,-0.00316537605650814],[121,-7,69,-0.0034582580056187096],[121,-7,70,-0.003558887471418841],[121,-7,71,-0.0034429273077331685],[121,-7,72,-0.0030916510352790613],[121,-7,73,-0.002492609842881175],[121,-7,74,-0.001640101732211234],[121,-7,75,-5.354433316618336E-4],[121,-7,76,8.129547009013167E-4],[121,-7,77,0.002389707383247837],[121,-7,78,0.00417276854932224],[121,-7,79,0.00613393540181562],[121,-6,64,-9.084789676261331E-4],[121,-6,65,-0.001699501049274582],[121,-6,66,-0.0023693051129528428],[121,-6,67,-0.0029126784345713534],[121,-6,68,-0.0033122534570046054],[121,-6,69,-0.0035393122336073563],[121,-6,70,-0.003568069224231014],[121,-6,71,-0.0033770698407368455],[121,-6,72,-0.0029500744840708385],[121,-6,73,-0.00227674523042569],[121,-6,74,-0.0013531353100351689],[121,-6,75,-1.8198192502072102E-4],[121,-6,76,0.0012271966518685466],[121,-6,77,0.0028581983712927072],[121,-6,78,0.004688427397964045],[121,-6,79,0.006689374750382728],[121,-5,64,-0.0011316784862640073],[121,-5,65,-0.001910969798871615],[121,-5,66,-0.0025502107184757258],[121,-5,67,-0.003046897975066423],[121,-5,68,-0.0033877940106854312],[121,-5,69,-0.003548072568607533],[121,-5,70,-0.0035054096777790214],[121,-5,71,-0.0032413893859526465],[121,-5,72,-0.0027423947348727044],[121,-5,73,-0.002000303999448033],[121,-5,74,-0.0010129923532131429],[121,-5,75,2.1536047720863315E-4],[121,-5,76,0.0016741556132312976],[121,-5,77,0.0033464521440646523],[121,-5,78,0.00520923426141484],[121,-5,79,0.007233866357326936],[121,-4,64,-0.0012970230692274454],[121,-4,65,-0.002059722903152503],[121,-4,66,-0.002664831523535091],[121,-4,67,-0.0031125998507035334],[121,-4,68,-0.0033939427064113735],[121,-4,69,-0.00348799844307032],[121,-4,70,-0.003375993149153062],[121,-4,71,-0.00304263843897043],[121,-4,72,-0.0024770170583361616],[121,-4,73,-0.0016732783283725623],[121,-4,74,-6.311436073516387E-4],[121,-4,75,6.437776557044406E-4],[121,-4,76,0.002139860316017978],[121,-4,77,0.0038395230423286827],[121,-4,78,0.00571947324629468],[121,-4,79,0.007751135396603763],[121,-3,64,-0.001405146981718614],[121,-3,65,-0.0021468719812254523],[121,-3,66,-0.002715072557412474],[121,-3,67,-0.003112779931683088],[121,-3,68,-0.0033350140581693993],[121,-3,69,-0.0033648641130309648],[121,-3,70,-0.0031871163912428687],[121,-3,71,-0.002789629642778441],[121,-3,72,-0.0021642030890961566],[121,-3,73,-0.0013072607343226276],[121,-3,74,-2.2035216692421294E-4],[121,-3,75,0.0010895295691574333],[121,-3,76,0.0026098120797580174],[121,-3,77,0.004322388384048939],[121,-3,78,0.006203840669091782],[121,-3,79,0.008225841037173784],[121,-2,64,-0.0014588372672960253],[121,-2,65,-0.002175788859156693],[121,-2,66,-0.0027051564192423767],[121,-2,67,-0.0030527579364076868],[121,-2,68,-0.0032176028198361776],[121,-2,69,-0.003186631032236591],[121,-2,70,-0.002948120907180125],[121,-2,71,-0.002493028510779356],[121,-2,72,-0.0018158262409611015],[121,-2,73,-9.151659321421597E-4],[121,-2,74,2.056333250418263E-4],[121,-2,75,0.0015382720706549453],[121,-2,76,0.0030693311301003543],[121,-2,77,0.004780304748030576],[121,-2,78,0.00664780457798005],[121,-2,79,0.008643932586961436],[121,-1,64,-0.0014628215311738226],[121,-1,65,-0.0021518900240052718],[121,-1,66,-0.002641396071287117],[121,-1,67,-0.0029399309502195453],[121,-1,68,-0.0030503133016389927],[121,-1,69,-0.002963151328269819],[121,-1,70,-0.0026700716956709314],[121,-1,71,-0.002165010773011498],[121,-1,72,-0.0014450127210529013],[121,-1,73,-5.108618705354326E-4],[121,-1,74,6.324503877388881E-4],[121,-1,75,0.0019754236293149487],[121,-1,76,0.0035039104245913047],[121,-1,77,0.0051991411233002155],[121,-1,78,0.007037909831096274],[121,-1,79,0.008992919713925004],[121,0,64,-0.0014233433019830205],[121,0,65,-0.002082212289737615],[121,0,66,-0.0025317643946047787],[121,0,67,-0.0027833313730203178],[121,0,68,-0.002843303198011593],[121,0,69,-0.0027056985941663627],[121,0,70,-0.00236527900173138],[121,0,71,-0.001818781336865071],[121,0,72,-0.0010656656032344604],[121,0,73,-1.087079217347288E-4],[121,0,74,0.001045560791023149],[121,0,75,0.002386569935597088],[121,0,76,0.0038995772526619586],[121,0,77,0.005565688563742281],[121,0,78,0.007362027739899429],[121,0,79,0.009262055127487569],[121,1,64,-0.0013475217648775339],[121,1,65,-0.001974777271210421],[121,1,66,-0.0023852587104625607],[121,1,67,-0.0025929879281777687],[121,1,68,-0.0026076408240857767],[121,1,69,-0.0024263249931203283],[121,1,70,-0.0020466620042236595],[121,1,71,-0.001467953558579581],[121,1,72,-6.918702514468937E-4],[121,1,73,2.770020609365253E-4],[121,1,74,0.001430758051729957],[121,1,75,0.0027579103282224333],[121,1,76,0.004243267610224228],[121,1,77,0.005867952553649832],[121,1,78,0.007609557815773505],[121,1,79,0.0094424386991555],[121,2,64,-0.001242493717277634],[121,2,65,-0.001837743926211283],[121,2,66,-0.0022110603569578196],[121,2,67,-0.0023790901400816676],[121,2,68,-0.0023544760343790845],[121,2,69,-0.002137044388059126],[121,2,70,-0.0017269531831535516],[121,2,71,-0.001125786213242644],[121,2,72,-3.371767606764709E-4],[121,2,73,6.326982108303315E-4],[121,2,74,0.0017747531061194717],[121,2,75,0.0030767574695293102],[121,2,76,0.00452322768313068],[121,2,77,0.00609544553574044],[121,2,78,0.0077716023553145615],[121,2,79,0.009527067160958493],[121,3,64,-0.001114314919019252],[121,3,65,-0.001678318280481882],[121,3,66,-0.0020174533295617718],[121,3,67,-0.00215091794964013],[121,3,68,-0.002093986783492922],[121,3,69,-0.0018488064002507337],[121,3,70,-0.001417713886188953],[121,3,71,-8.042569642340712E-4],[121,3,72,-1.3749128604200651E-5],[121,3,73,9.462914586877019E-4],[121,3,74,0.0020658190659396817],[121,3,75,0.0033320529885787647],[121,3,76,0.004729384903169304],[121,3,77,0.006239400000252923],[121,3,78,0.00784101069184832],[121,3,79,0.009510701477000229],[121,4,64,-9.66635291787735E-4],[121,4,65,-0.0015014430226758086],[121,4,66,-0.001810530669819988],[121,4,67,-0.001915568996648417],[121,4,68,-0.001834135569711065],[121,4,69,-0.0015702951005132889],[121,4,70,-0.0011281919038919623],[121,4,71,-5.12997808033788E-4],[121,4,72,2.6860118713857155E-4],[121,4,73,0.0012080213448410892],[121,4,74,0.0022945004787017806],[121,4,75,0.003514919626375024],[121,4,76,0.004853726424515231],[121,4,77,0.006292959289288802],[121,4,78,0.00781237130584231],[121,4,79,0.009389652541558687],[121,5,64,-7.991433023524601E-4],[121,5,65,-0.0013082619350096713],[121,5,66,-0.0015926830698192375],[121,5,67,-0.0016764774529976763],[121,5,68,-0.0015792290391567797],[121,5,69,-0.0013065450438144118],[121,5,70,-8.640132912977101E-4],[121,5,71,-2.5808439845698464E-4],[121,5,72,5.035055789194637E-4],[121,5,73,0.001411403037731344],[121,5,74,0.0024543950249632123],[121,5,75,0.0036192573095894893],[121,5,76,0.004890691704486936],[121,5,77,0.006251351827960685],[121,5,78,0.007681956317702254],[121,5,79,0.009161488344167409],[121,6,64,-6.057715784880626E-4],[121,6,65,-0.0010943498395359096],[121,6,66,-0.0013608594579387475],[121,6,67,-0.0014317136982903665],[121,6,68,-0.001328270010394745],[121,6,69,-0.0010573643459599815],[121,6,70,-6.256990668180336E-4],[121,6,71,-4.067132222174028E-5],[121,6,72,6.89258438784924E-4],[121,6,73,0.0015542770652949606],[121,6,74,0.0025430081979703604],[121,6,75,0.0036423802681346106],[121,6,76,0.004837572442838163],[121,6,77,0.006112037792955073],[121,6,78,0.0074476028062508675],[121,6,79,0.008824642222004813],[121,7,64,-3.7075391605215306E-4],[121,7,65,-8.453227051340292E-4],[121,7,66,-0.0011017961872119546],[121,7,67,-0.001168862668189135],[121,7,68,-0.001069486110883112],[121,7,69,-8.115027838484237E-4],[121,7,70,-4.024585350857283E-4],[121,7,71,1.496004273374377E-4],[121,7,72,8.357984480401436E-4],[121,7,73,0.0016461705959600363],[121,7,74,0.0025694719093276586],[121,7,75,0.0035930553739562054],[121,7,76,0.004702818144963936],[121,7,77,0.0058832153780304045],[121,7,78,0.0071173408994686565],[121,7,79,0.008387073816199759],[121,8,64,-6.524368496254683E-5],[121,8,65,-5.315989389521628E-4],[121,8,66,-7.851366024063076E-4],[121,8,67,-8.565827888047248E-4],[121,8,68,-7.702780940380139E-4],[121,8,69,-5.348626844769966E-4],[121,8,70,-1.585000174116506E-4],[121,8,71,3.5035843731998263E-4],[121,8,72,9.826714640987627E-4],[121,8,73,0.0017285671747204214],[121,8,74,0.002577162740375283],[121,8,75,0.0035164444978127837],[121,8,76,0.00453320801219988],[121,8,77,0.005613057551400258],[121,8,78,0.006740464304920022],[121,8,79,0.007898882566837453],[121,9,64,3.3644137648104104E-4],[121,9,65,-1.261202622958429E-4],[121,9,66,-3.824205700890065E-4],[121,9,67,-4.6480509587794707E-4],[121,9,68,-3.9867544816521287E-4],[121,9,69,-1.9329222171654895E-4],[121,9,70,1.4275166950629168E-4],[121,9,71,6.007876122407027E-4],[121,9,72,0.0011717896166659467],[121,9,73,0.0018461460319527294],[121,9,74,0.002613484548695837],[121,9,75,0.003462550260698029],[121,9,76,0.004381136440467742],[121,9,77,0.00535606756909622],[121,9,78,0.006373234052935775],[121,9,79,0.0074176779578081125],[121,10,64,8.544067088351492E-4],[121,10,65,3.9257419692048613E-4],[121,10,66,1.2924710955128374E-4],[121,10,67,3.101362175978363E-5],[121,10,68,7.17871332473081E-5],[121,10,69,2.4185335240585316E-4],[121,10,70,5.323393337996234E-4],[121,10,71,9.344927892347797E-4],[121,10,72,0.0014394176405086519],[121,10,73,0.002037856233199248],[121,10,74,0.0027200181468355947],[121,10,75,0.003475455429185326],[121,10,76,0.004292983977756119],[121,10,77,0.005160650690710927],[121,10,78,0.006065745913152693],[121,10,79,0.0069948606140993845],[121,11,64,0.001505828294910151],[121,11,65,0.0010429981142739079],[121,11,66,7.698262015092582E-4],[121,11,67,6.524768223353113E-4],[121,11,68,6.645888397684049E-4],[121,11,69,7.961386247520897E-4],[121,11,70,0.0010380816949114443],[121,11,71,0.0013816614375393311],[121,11,72,0.001818163237903796],[121,11,73,0.002338708852181511],[121,11,74,0.0029340909975198648],[121,11,75,0.003594648037677672],[121,11,76,0.004310178551094416],[121,11,77,0.005069895479747894],[121,11,78,0.005862419472560731],[121,11,79,0.006675810957231874],[121,12,64,0.0023078964781526427],[121,12,65,0.0018436603774401124],[121,12,66,0.0015592561465722495],[121,12,67,0.0014211105797391163],[121,12,68,0.0014030061494225367],[121,12,69,0.0014947243898716107],[121,12,70,0.0016871135233885984],[121,12,71,0.0019714380388916085],[121,12,72,0.0023391566042648805],[121,12,73,0.002781733733171226],[121,12,74,0.0032904852090387],[121,12,75,0.0038564571889376682],[121,12,76,0.004470338832031168],[121,12,77,0.005122408221746135],[121,12,78,0.005802511278428132],[121,12,79,0.0065000732906996955],[121,13,64,0.003281061794084288],[121,13,65,0.002816305095163919],[121,13,66,0.002520661993981074],[121,13,67,0.002361507279524553],[121,13,68,0.002313165181927381],[121,13,69,0.0023652976883447104],[121,13,70,0.0025086613516702963],[121,13,71,0.0027345132809312245],[121,13,72,0.0030344215833317885],[121,13,73,0.003400102571746941],[121,13,74,0.003823284761757416],[121,13,75,0.004295599617938035],[121,13,76,0.0048084989462075555],[121,13,77,0.005353198768030786],[121,13,78,0.0059206494536474755],[121,13,79,0.006501531835840688],[121,14,64,0.004452589628103221],[121,14,65,0.003989456010246007],[121,14,66,0.0036838578929130734],[121,14,67,0.0035047572422401765],[121,14,68,0.003427369385230193],[121,14,69,0.0034412616045213862],[121,14,70,0.0035370604678080673],[121,14,71,0.0037059333162823916],[121,14,72,0.003939443166974917],[121,14,73,0.004229422417847713],[121,14,74,0.004567865391584393],[121,14,75,0.004946839707987548],[121,14,76,0.005358416429831011],[121,14,77,0.005794618883188002],[121,14,78,0.006247390011029013],[121,14,79,0.006708578078652013],[121,15,64,0.005860516447338558],[121,15,65,0.005402172644879592],[121,15,66,0.005088797226547677],[121,15,67,0.004891491947925583],[121,15,68,0.004786645585496016],[121,15,69,0.004763708552366132],[121,15,70,0.004813098692417169],[121,15,71,0.004925778969978341],[121,15,72,0.005093170353725417],[121,15,73,0.005307074170678057],[121,15,74,0.005559603969812027],[121,15,75,0.005843126910816828],[121,15,76,0.006150214669950846],[121,15,77,0.006473603831874328],[121,15,78,0.006806165713959548],[121,15,79,0.007140885548105289],[121,16,64,0.007543061825493061],[121,16,65,0.007092916064555796],[121,16,66,0.006773759641183769],[121,16,67,0.006559291989004955],[121,16,68,0.006427317475151197],[121,16,69,0.006367157093803444],[121,16,70,0.006368973117499436],[121,16,71,0.006423459691222251],[121,16,72,0.006521823919315632],[121,16,73,0.006655765849581009],[121,16,74,0.006817457393403283],[121,16,75,0.0069995202221747165],[121,16,76,0.007195002681471319],[121,16,77,0.007397355765295821],[121,16,78,0.007600408193219161],[121,16,79,0.0077983406334418345],[121,17,64,0.009516060202909597],[121,17,65,0.009077575247921079],[121,17,66,0.008754372784200298],[121,17,67,0.008523115562776946],[121,17,68,0.008363233738659085],[121,17,69,0.008263930308500275],[121,17,70,0.008215109805974823],[121,17,71,0.008207193549150433],[121,17,72,0.008231175210427481],[121,17,73,0.008278663744358093],[121,17,74,0.008341913710865893],[121,17,75,0.008413843060873578],[121,17,76,0.008488038479861243],[121,17,77,0.008558748412130437],[121,17,78,0.008620863914298726],[121,17,79,0.008669887510588737],[121,18,64,0.011772772742819404],[121,18,65,0.011349456750335603],[121,18,66,0.011023854959110598],[121,18,67,0.010775868063729854],[121,18,68,0.010586729093935815],[121,18,69,0.010445556806616234],[121,18,70,0.0103420337135486],[121,18,71,0.010266353236365166],[121,18,72,0.010209352696611357],[121,18,73,0.010162621436112578],[121,18,74,0.010118584105674238],[121,18,75,0.010070559219633067],[121,18,76,0.01001279313147758],[121,18,77,0.009940469641149285],[121,18,78,0.009849695497248987],[121,18,79,0.009737462106758979],[121,19,64,0.01252977086325517],[121,19,65,0.012914302176657014],[121,19,66,0.013218356920592613],[121,19,67,0.01329179790146032],[121,19,68,0.013071923693654819],[121,19,69,0.01288594658448569],[121,19,70,0.012723394239284121],[121,19,71,0.012574315666272023],[121,19,72,0.01242949174951531],[121,19,73,0.012280608274868517],[121,19,74,0.012120391490828256],[121,19,75,0.011942706336941273],[121,19,76,0.011742617560440226],[121,19,77,0.011516414026368311],[121,19,78,0.011261596606877117],[121,19,79,0.010976830110951498],[121,20,64,0.00988477782447623],[121,20,65,0.010247185069061646],[121,20,66,0.010550197057141181],[121,20,67,0.010806995102926206],[121,20,68,0.01103237644579346],[121,20,69,0.011237243104467035],[121,20,70,0.011432164559830392],[121,20,71,0.011627160941182208],[121,20,72,0.011831417227881749],[121,20,73,0.012053047730666417],[121,20,74,0.012298910802661791],[121,20,75,0.012574473607606516],[121,20,76,0.01288372665400824],[121,20,77,0.013229147689810374],[121,20,78,0.01282492465952429],[121,20,79,0.012358458668495149],[121,21,64,0.007078010039595034],[121,21,65,0.0074148900753796725],[121,21,66,0.007714893391182899],[121,21,67,0.007987664421727117],[121,21,68,0.00824587453688492],[121,21,69,0.00850029722798052],[121,21,70,0.008761452437780416],[121,21,71,0.009039258901358864],[121,21,72,0.009342677198086803],[121,21,73,0.009679415722028614],[121,21,74,0.010055699508336883],[121,21,75,0.010476101699153638],[121,21,76,0.010943437283168865],[121,21,77,0.01145871859956384],[121,21,78,0.01202117196075451],[121,21,79,0.012628314620394225],[121,22,64,0.004172554766140883],[121,22,65,0.004480628085869546],[121,22,66,0.00477544656998622],[121,22,67,0.005063182125362813],[121,22,68,0.005354343399620255],[121,22,69,0.005659475732330938],[121,22,70,0.005988922790393305],[121,22,71,0.006352354759543366],[121,22,72,0.006758345994835875],[121,22,73,0.00721402783830286],[121,22,74,0.007724816524882631],[121,22,75,0.008294215912882959],[121,22,76,0.008923694596203163],[121,22,77,0.009612636783728496],[121,22,78,0.010358366168152784],[121,22,79,0.011156241853471853],[121,23,64,0.001237746241677601],[121,23,65,0.0015139208736911752],[121,23,66,0.0018011737651690853],[121,23,67,0.002102343485147471],[121,23,68,0.0024257745699529576],[121,23,69,0.0027816752431818656],[121,23,70,0.003180076687169483],[121,23,71,0.003630246356283139],[121,23,72,0.00414020723829484],[121,23,73,0.004716343899998627],[121,23,74,0.00536309521822746],[121,23,75,0.006082733483313526],[121,23,76,0.00687522935479094],[121,23,77,0.007738201950419257],[121,23,78,0.008666953161073885],[121,23,79,0.009654585107430846],[121,24,64,-0.0016537004683299138],[121,24,65,-0.0014122615526016538],[121,24,66,-0.0011351297925168927],[121,24,67,-8.225915337073583E-4],[121,24,68,-4.68432965598951E-4],[121,24,69,-6.289814208722117E-5],[121,24,70,4.035905430327477E-4],[121,24,71,9.397422895850004E-4],[121,24,72,0.0015528667573735196],[121,24,73,0.002248440479369838],[121,24,74,0.0030297707003443825],[121,24,75,0.0038977562782144563],[121,24,76,0.00485074505196781],[121,24,77,0.005884486856399675],[121,24,78,0.00699218115196279],[121,24,79,0.008164618039719141],[121,25,64,-0.004428418307894976],[121,25,65,-0.004224229139271574],[121,25,66,-0.003959899106440617],[121,25,67,-0.0036385683294330685],[121,25,68,-0.0032560867906022565],[121,25,69,-0.0028032689910503714],[121,25,70,-0.0022711326340161694],[121,25,71,-0.0016516786955204344],[121,25,72,-9.384642331037325E-4],[121,25,73,-1.270679394743135E-4],[121,25,74,7.845514133652723E-4],[121,25,75,0.0017958032279438694],[121,25,76,0.0029033193644870357],[121,25,77,0.004100913538773251],[121,25,78,0.005379644687098316],[121,25,79,0.006727982933081778],[121,26,64,-0.007014977562917699],[121,26,65,-0.0068501634793397045],[121,26,66,-0.006601375670689867],[121,26,67,-0.006274281652110178],[121,26,68,-0.005866696548946465],[121,26,69,-0.005370123308206372],[121,26,70,-0.004776313411775268],[121,26,71,-0.004078122057544035],[121,26,72,-0.0032701134347912003],[121,26,73,-0.00234905026336155],[121,26,74,-0.0013142677670674662],[121,26,75,-1.679325393570406E-4],[121,26,76,0.0010848129630104293],[121,26,77,0.002435819296985145],[121,26,78,0.003874011028509533],[121,26,79,0.005385578359236213],[121,27,64,-0.00934633329009301],[121,27,65,-0.009222570750899285],[121,27,66,-0.00899204960699831],[121,27,67,-0.00866259164175119],[121,27,68,-0.008233849254592598],[121,27,69,-0.007698128553191472],[121,27,70,-0.007048046419467461],[121,27,71,-0.006277444764290823],[121,27,72,-0.005382018799470842],[121,27,73,-0.00435982246129051],[121,27,74,-0.003211651180610473],[121,27,75,-0.0019413025003790082],[121,27,76,-5.55715336395035E-4],[121,27,77,9.350110409860422E-4],[121,27,78,0.002517716960271715],[121,27,79,0.004176399645285366],[121,28,64,-0.01136212819878955],[121,28,65,-0.011280593394944412],[121,28,66,-0.011070965343385308],[121,28,67,-0.010742809777567301],[121,28,68,-0.010297462515042962],[121,28,69,-0.00972814126512383],[121,28,70,-0.009028449807527627],[121,28,71,-0.008193334538079142],[121,28,72,-0.007219726230822889],[121,28,73,-0.006107053314717935],[121,28,74,-0.004857626883431569],[121,28,75,-0.003476897977042771],[121,28,76,-0.0019735879831747536],[121,28,77,-3.596932997210574E-4],[121,28,78,0.001349634320653679],[121,28,79,0.0031363300652733207],[121,29,64,-0.01301084806807034],[121,29,65,-0.01297217774461383],[121,29,66,-0.012785888210286181],[121,29,67,-0.012462852312734276],[121,29,68,-0.012005913477036745],[121,29,69,-0.011409300372197128],[121,29,70,-0.010667712066866793],[121,29,71,-0.009777299765250791],[121,29,72,-0.008736312748446079],[121,29,73,-0.0075456117355843],[121,29,74,-0.006209049904958933],[121,29,75,-0.004733722146180176],[121,29,76,-0.003130083433017993],[121,29,77,-0.0014119375103939823],[121,29,78,4.037026246924251E-4],[121,29,79,0.002296880702372996],[121,30,64,-0.014251826484354475],[121,30,65,-0.01425609451367135],[121,30,66,-0.0140953290211662],[121,30,67,-0.013781258458381577],[121,30,68,-0.013318040993756322],[121,30,69,-0.012701003961344244],[121,30,70,-0.01192603429740789],[121,30,71,-0.010990568512108686],[121,30,72,-0.009894233942573676],[121,30,73,-0.008639354896270646],[121,30,74,-0.007231323944086881],[121,30,75,-0.0056788389599521875],[121,30,76,-0.0039940068285122836],[121,30,77,-0.002192315051617258],[121,30,78,-2.924727755128774E-4],[121,30,79,0.0016838769691568014],[121,31,64,-0.015057095372787798],[121,31,65,-0.015103808731727987],[121,31,66,-0.014970423379179438],[121,31,67,-0.014669070252932265],[121,31,68,-0.014205018186298128],[121,31,69,-0.013574766960921759],[121,31,70,-0.012775465702366219],[121,31,71,-0.011805894788741184],[121,31,72,-0.010667094264105266],[121,31,73,-0.009362856152919841],[121,31,74,-0.00790008095118795],[121,31,75,-0.006288998909997218],[121,31,76,-0.004543257054097643],[121,31,77,-0.002679873189226465],[121,31,78,-7.190584443767613E-4],[121,31,79,0.0013160898337039061],[121,32,64,-0.015413077473374275],[121,32,65,-0.015501195383323235],[121,32,66,-0.015396662115451511],[121,32,67,-0.015111570714302395],[121,32,68,-0.014652092234123325],[121,32,69,-0.014015956855484707],[121,32,70,-0.013201629758889952],[121,32,71,-0.012209269888429426],[121,32,72,-0.011041338397087869],[121,32,73,-0.009703071466542416],[121,32,74,-0.008202817789845555],[121,32,75,-0.006552241344360512],[121,32,76,-0.004766390407864482],[121,32,77,-0.0028636340801965533],[121,32,78,-8.654678634328511E-4],[121,32,79,0.0012038098774845398],[121,33,64,-0.015322116587202074],[121,33,65,-0.01545009667340206],[121,33,66,-0.015375468923859652],[121,33,67,-0.015109876528541344],[121,33,68,-0.014660187885210627],[121,33,69,-0.01402540421116383],[121,33,70,-0.013205338182340112],[121,33,71,-0.012201536308207863],[121,33,72,-0.011017861653969415],[121,33,73,-0.009660942738956025],[121,33,74,-0.008140488908337233],[121,33,75,-0.0064694728097214335],[121,33,76,-0.004664180927139509],[121,33,77,-0.0027441334296413413],[121,33,78,-7.31874877550164E-4],[121,33,79,0.0013473624064717945],[121,34,64,-0.014803841094120597],[121,34,65,-0.014969716508393653],[121,34,66,-0.014925620917148028],[121,34,67,-0.014682381184559421],[121,34,68,-0.014247370831836428],[121,34,69,-0.013620884447873434],[121,34,70,-0.012804089465369027],[121,34,71,-0.011799901430046585],[121,34,72,-0.010613537021839639],[121,34,73,-0.009252936186500341],[121,34,74,-0.007729053678732926],[121,34,75,-0.00605602064499189],[121,34,76,-0.004251177187604347],[121,34,77,-0.002334977149282502],[121,34,78,-3.3076663568711403E-4],[121,34,79,0.0017355619492507635],[121,35,64,-0.01389635592615573],[121,35,65,-0.014097847455190186],[121,35,66,-0.01408450749498569],[121,35,67,-0.013866044125692726],[121,35,68,-0.01345016675722304],[121,35,69,-0.012838466955299999],[121,35,70,-0.012033448438549739],[121,35,71,-0.011039347816258245],[121,35,72,-0.009862656174346453],[121,35,73,-0.008512513577122785],[121,35,74,-0.007000976784104755],[121,35,75,-0.005343160798630437],[121,35,76,-0.0035572551690289597],[121,35,77,-0.0016644162512553318],[121,35,78,3.114630885130299E-4],[121,35,79,0.0023441046044452227],[121,36,64,-0.012657257875557338],[121,36,65,-0.01289192512461802],[121,36,66,-0.012909222590893894],[121,36,67,-0.012717521159669749],[121,36,68,-0.012324731526273277],[121,36,69,-0.011733727317732784],[121,36,70,-0.010948302970785934],[121,36,71,-0.009973936651011995],[121,36,72,-0.008818281452632639],[121,36,73,-0.007491533859100803],[121,36,74,-0.006006679754642725],[121,36,75,-0.004379618583446331],[121,36,76,-0.0026291665465727108],[121,36,77,-7.76940004453167E-4],[121,36,78,0.0011528794875327398],[121,36,79,0.0031338968440142428],[121,37,64,-0.011164468827092655],[121,37,65,-0.011429904625938035],[121,37,66,-0.011477485056265325],[121,37,67,-0.011314131053430957],[121,37,68,-0.010947867674508012],[121,37,69,-0.010382818092410137],[121,37,70,-0.009623993609012386],[121,37,71,-0.008678000545946344],[121,37,72,-0.007553505512884881],[121,37,73,-0.006261582415440288],[121,37,74,-0.004815941474166096],[121,37,75,-0.0032330408216045556],[121,37,76,-0.0015320815269442645],[121,37,77,2.651128347304549E-4],[121,37,78,0.0021343307018711183],[121,37,79,0.004049319538288286],[121,38,64,-0.009514372603241275],[121,38,65,-0.009808403518534807],[121,38,66,-0.009885800402908818],[121,38,67,-0.009752043991845453],[121,38,68,-0.009415247242615245],[121,38,69,-0.008880736867820344],[121,38,70,-0.008154640404793861],[121,38,71,-0.007244544778499331],[121,38,72,-0.0061599441142951095],[121,38,73,-0.004912573431884273],[121,38,74,-0.003516628460591286],[121,38,75,-0.00198887210162562],[121,38,76,-3.486283360448399E-4],[121,38,77,0.001382335364585161],[121,38,78,0.003180035826699524],[121,38,79,0.005018610642730428],[121,39,64,-0.007767167005001089],[121,39,65,-0.00808721586074273],[121,39,66,-0.008193350786053757],[121,39,67,-0.008089629342457222],[121,39,68,-0.0077842614324280775],[121,39,69,-0.007283769754642324],[121,39,70,-0.006595323572384101],[121,39,71,-0.005727358990004486],[121,39,72,-0.004690020198803321],[121,39,73,-0.0034954901652138742],[121,39,74,-0.002158210954756243],[121,39,75,-6.949941626635061E-4],[121,39,76,8.749778125470615E-4],[121,39,77,0.0025302586652174303],[121,39,78,0.004247352026610168],[121,39,79,0.0060010308196103606],[121,40,64,-0.005939371263923146],[121,40,65,-0.006281826009749633],[121,40,66,-0.00641450840913428],[121,40,67,-0.006339972513712668],[121,40,68,-0.006066537799891994],[121,40,69,-0.005601990114518671],[121,40,70,-0.004954534456605445],[121,40,71,-0.004133385290308571],[121,40,72,-0.0031492121597720977],[121,40,73,-0.0020144777589900915],[121,40,74,-7.436685872576575E-4],[121,40,75,6.465814080681421E-4],[121,40,76,0.002137473540260779],[121,40,77,0.0037081325364248176],[121,40,78,0.005335798998600428],[121,40,79,0.006996124824865455],[121,41,64,-0.004050324556896166],[121,41,65,-0.004410775475564922],[121,41,66,-0.004566874223753899],[121,41,67,-0.0045195222967482525],[121,41,68,-0.004277166116264932],[121,41,69,-0.00384897878239816],[121,41,70,-0.003244250799696644],[121,41,71,-0.002472956973424766],[121,41,72,-0.0015462167871875467],[121,41,73,-4.7664975347722587E-4],[121,41,74,7.213742113005725E-4],[121,41,75,0.0020315890692443584],[121,41,76,0.0034357910273888153],[121,41,77,0.004913900172651688],[121,41,78,0.006444124333194658],[121,41,79,0.008003223915218634],[121,42,64,-0.002121316921465341],[121,42,65,-0.0024948617615720664],[121,42,66,-0.002670555549371717],[121,42,67,-0.0026474601979813036],[121,42,68,-0.0024341740260368045],[121,42,69,-0.002041421311100986],[121,42,70,-0.001479670470890667],[121,42,71,-7.596824202211902E-4],[121,42,72,1.0700486914944475E-4],[121,42,73,0.001107694745524702],[121,42,74,0.0022282532337932312],[121,42,75,0.003452933150796201],[121,42,76,0.004764300506176604],[121,42,77,0.0061432624753968235],[121,42,78,0.007569196006523089],[121,42,79,0.009020175914365583],[121,43,64,-1.7224874488471894E-4],[121,43,65,-5.538325158203369E-4],[121,43,66,-7.449165838317931E-4],[121,43,67,-7.425256897686246E-4],[121,43,68,-5.55445771132504E-4],[121,43,69,-1.9614182700699594E-4],[121,43,70,3.2361596906183823E-4],[121,43,71,9.922191435529078E-4],[121,43,72,0.0017977040881795208],[121,43,73,0.002727336414741518],[121,43,74,0.0037672966502093675],[121,43,75,0.004902467161246964],[121,43,76,0.006116319946125897],[121,43,77,0.007390904692887431],[121,43,78,0.008706936277753692],[121,43,79,0.01004398066935177],[121,44,64,0.0017819581788474116],[121,44,65,0.001397164775004893],[121,44,66,0.0011949099297075582],[121,44,67,0.0011803895960170092],[121,44,68,0.0013445799699291325],[121,44,69,0.00167307148872062],[121,44,70,0.002152646342393591],[121,44,71,0.002770758737458063],[121,44,72,0.003514979286657141],[121,44,73,0.004372539077846965],[121,44,74,0.005329973692251071],[121,44,75,0.00637286718200904],[121,44,76,0.007485695766205013],[121,44,77,0.008651770765384603],[121,44,78,0.00985328006898792],[121,44,79,0.011071427220286027],[121,45,64,0.003735203094117717],[121,45,65,0.0033513826658827183],[121,45,66,0.003141755003705054],[121,45,67,0.0031138838084573428],[121,45,68,0.0032584380951719404],[121,45,69,0.0035588540865678924],[121,45,70,0.004000306122218108],[121,45,71,0.004569199816569699],[121,45,72,0.005252572936613853],[121,45,73,0.0060375945526185],[121,45,74,0.0069111628612570485],[121,45,75,0.00785960182076214],[121,45,76,0.008868456487003632],[121,45,77,0.00992238669958725],[121,45,78,0.011005158540192668],[121,45,79,0.012099732773530963],[121,46,64,0.005694306989876054],[121,46,65,0.005314528018233838],[121,46,66,0.005100394498922569],[121,46,67,0.005061927736458203],[121,46,68,0.005189395628242267],[121,46,69,0.00546387042280742],[121,46,70,0.005868750187101289],[121,46,71,0.006389265566112413],[121,46,72,0.007011834247095937],[121,46,73,0.0077235122322456195],[121,46,74,0.008511542455460042],[121,46,75,0.009363001019731206],[121,46,76,0.010264541080910688],[121,46,77,0.011202234163097962],[121,46,78,0.012161508462600105],[121,46,79,0.01312718348341552],[121,47,64,0.007666124589207973],[121,47,65,0.0072922113192680025],[121,47,66,0.0070753606459568255],[121,47,67,0.007028073942169415],[121,47,68,0.0071401001794503555],[121,47,69,0.007389946250539749],[121,47,70,0.007759065400340561],[121,47,71,0.008231379268122051],[121,47,72,0.008792584830602863],[121,47,73,0.009429556473472283],[121,47,74,0.01012984386806903],[121,47,75,0.010881266071850897],[121,47,76,0.011671602020882492],[121,47,77,0.012488377341715541],[121,47,78,0.013318747180640526],[121,47,79,0.01414947453239972],[121,48,64,0.009604761945619529],[121,48,65,0.009238435710069107],[121,48,66,0.009020858104588891],[121,48,67,0.008966988671784472],[121,48,68,0.009065941137488086],[121,48,69,0.009293488859517548],[121,48,70,0.009628990003665938],[121,48,71,0.010054927096561191],[121,48,72,0.010556166971365495],[121,48,73,0.011119313932654655],[121,48,74,0.011732156959590841],[121,48,75,0.01238321151002272],[121,48,76,0.013061356238655068],[121,48,77,0.013755564701751849],[121,48,78,0.014454731890825257],[121,48,79,0.014206688716866863],[121,49,64,0.011456750776321245],[121,49,65,0.011099855191303338],[121,49,66,0.01088397092609444],[121,49,67,0.010826452963347107],[121,49,68,0.010915672623592774],[121,49,69,0.011124544769580833],[121,49,70,0.01143020963358129],[121,49,71,0.011813592347970688],[121,49,72,0.01225861784983229],[121,49,73,0.012751516896718485],[121,49,74,0.013280224152981428],[121,49,75,0.013833869051788334],[121,49,76,0.014402359889935478],[121,49,77,0.014560832988208539],[121,49,78,0.013961267875437226],[121,49,79,0.013373286685408636],[121,50,64,0.013177366975586259],[121,50,65,0.012831754265614028],[121,50,66,0.012620252457961396],[121,50,67,0.012562506382749403],[121,50,68,0.012646048041600575],[121,50,69,0.012840855327406248],[121,50,70,0.013121759593971005],[121,50,71,0.013468027646620154],[121,50,72,0.013862534790016274],[121,50,73,0.014291026716232379],[121,50,74,0.014741471327623684],[121,50,75,0.014503944437856542],[121,50,76,0.014014646812091507],[121,50,77,0.013529198128814262],[121,50,78,0.013055468227209873],[121,50,79,0.01260097890957847],[121,51,64,0.01473058470747919],[121,51,65,0.01439801832748545],[121,51,66,0.014193710804827626],[121,51,67,0.014139449059258194],[121,51,68,0.014221840413603644],[121,51,69,0.014407895459764977],[121,51,70,0.014670080716129687],[121,51,71,0.014910851722620053],[121,51,72,0.014544908090392907],[121,51,73,0.014156103514917293],[121,51,74,0.013756616411114168],[121,51,75,0.013356500755218322],[121,51,76,0.012964198620174817],[121,51,77,0.012586962845757929],[121,51,78,0.012231189578169294],[121,51,79,0.011902660632109811],[121,52,64,0.013944685456324159],[121,52,65,0.014266789464419566],[121,52,66,0.01446263737904557],[121,52,67,0.014508521654232545],[121,52,68,0.01441886938788221],[121,52,69,0.014229659508700308],[121,52,70,0.01397085263470977],[121,52,71,0.013666757582246686],[121,52,72,0.013336928673663252],[121,52,73,0.012996979072616271],[121,52,74,0.012659308807780744],[121,52,75,0.012333746390265085],[121,52,76,0.012028103170149807],[121,52,77,0.011748639811803565],[121,52,78,0.01150044449428213],[121,52,79,0.011287722660395376],[121,53,64,0.012903014017645596],[121,53,65,0.01321046055368005],[121,53,66,0.01339495998164943],[121,53,67,0.013431070400450582],[121,53,68,0.01333427384803154],[121,53,69,0.013143433513336475],[121,53,70,0.012890876105681449],[121,53,71,0.01260272999720537],[121,53,72,0.01229984957457434],[121,53,73,0.011998658126372156],[121,53,74,0.011711907821512378],[121,53,75,0.011449355574247004],[121,53,76,0.011218353827872635],[121,53,77,0.011024355520474413],[121,53,78,0.010871332720392347],[121,53,79,0.0107621086347943],[121,54,64,0.01208587936086073],[121,54,65,0.012377626322270279],[121,54,66,0.012548348105315627],[121,54,67,0.012571116721192151],[121,54,68,0.012462511180918352],[121,54,69,0.01226416926401186],[121,54,70,0.012010729248856373],[121,54,71,0.011730138594287353],[121,54,72,0.011444599349795512],[121,54,73,0.011171434598632101],[121,54,74,0.010923874396745713],[121,54,75,0.010711759906189982],[121,54,76,0.010542164654154544],[121,54,77,0.010419932076565382],[121,54,78,0.0103481287267203],[121,54,79,0.010328412742962902],[121,55,64,0.011496358298343],[121,55,65,0.011771687008143293],[121,55,66,0.011926508580375226],[121,55,67,0.011932676700749238],[121,55,68,0.01180789228244684],[121,55,69,0.011596417051692898],[121,55,70,0.0113351115403313],[121,55,71,0.01105371374912735],[121,55,72,0.010775799451882749],[121,55,73,0.010519665973737151],[121,55,74,0.010299137828112754],[121,55,75,0.010124292827696448],[121,55,76,0.01000210751304797],[121,55,77,0.009937020966394636],[121,55,78,0.00993141629641931],[121,55,79,0.009986019290701809],[121,56,64,0.011130162446841748],[121,56,65,0.01138870081287162],[121,56,66,0.011525874596879548],[121,56,67,0.011512597720592217],[121,56,68,0.011367699850014581],[121,56,69,0.011137879675836144],[121,56,70,0.010862098575495888],[121,56,71,0.010571829255453694],[121,56,72,0.010292024802022149],[121,56,73,0.010042013548436604],[121,56,74,0.009836318078444463],[121,56,75,0.009685396912721165],[121,56,76,0.00959630764808387],[121,56,77,0.009573290539337656],[121,56,78,0.00961827172819748],[121,56,79,0.009731285531450983],[121,57,64,0.01097614090294776],[121,57,65,0.011217873592392133],[121,57,66,0.011336079644809285],[121,57,67,0.011301013484827335],[121,57,68,0.011132621698390152],[121,57,69,0.010879822134548883],[121,57,70,0.01058352707518909],[121,57,71,0.010276862402650059],[121,57,72,0.009986139453177976],[121,57,73,0.009731754889044838],[121,57,74,0.009529016859646624],[121,57,75,0.009388895942974086],[121,57,76,0.009318699577872822],[121,57,77,0.009322668913078263],[121,57,78,0.009402497209710573],[121,57,79,0.009557769138149187],[121,58,64,0.011016866299169602],[121,58,65,0.011242132690028652],[121,58,66,0.0113405156287922],[121,58,67,0.011281882947251765],[121,58,68,0.011087267504560515],[121,58,69,0.010807563933773138],[121,58,70,0.010485461255013179],[121,58,71,0.010155633638654259],[121,58,72,0.00984570949258008],[121,58,73,0.009577170594575989],[121,58,74,0.009366179503880637],[121,58,75,0.009224333702129309],[121,58,76,0.009159345128300286],[121,58,77,0.009175643983466006],[121,58,78,0.00927490588777467],[121,58,79,0.009456501672578454],[121,59,64,0.011229306112885671],[121,59,65,0.011438786850139509],[121,59,66,0.011516977144940106],[121,59,67,0.011433615170135131],[121,59,68,0.01121077104924978],[121,59,69,0.010901056111000238],[121,59,70,0.010548742667186714],[121,59,71,0.01018992792418112],[121,59,72,0.009853495266358299],[121,59,73,0.009562007403987062],[121,59,74,0.009332529596072475],[121,59,75,0.00917738137014152],[121,59,76,0.009104815370801607],[121,59,77,0.009119622175736912],[121,59,78,0.009223660120295503],[121,59,79,0.009416309368419223],[121,60,64,0.011585580989596913],[121,60,65,0.011780274041335177],[121,60,66,0.011838393800310487],[121,60,67,0.011729782040689581],[121,60,68,0.011477479922130383],[121,60,69,0.011135544972353872],[121,60,70,0.010749625532129898],[121,60,71,0.010357099796936166],[121,60,72,0.009988024926959074],[121,60,73,0.009666019608793125],[121,60,74,0.009409078267236711],[121,60,75,0.009230315332651333],[121,60,76,0.009138638174849379],[121,60,77,0.00913934751708432],[121,60,78,0.009234664342117779],[121,60,79,0.009424182495008399],[121,61,64,0.012053811716240351],[121,61,65,0.012234998893535357],[121,61,66,0.012273652332799718],[121,61,67,0.012139920651166983],[121,61,68,0.011857734540986209],[121,61,69,0.011482324428976771],[121,61,70,0.011060499468501184],[121,61,71,0.010630764060949227],[121,61,72,0.010224251205797131],[121,61,73,0.009865590639799034],[121,61,74,0.00957370996142681],[121,61,75,0.00936256713967291],[121,61,76,0.009241813007785512],[121,61,77,0.009217382541115244],[121,61,78,0.009292013912719561],[121,61,79,0.00946569450918662],[121,62,64,0.012599056340200707],[121,62,65,0.012768261313527651],[121,62,66,0.012788510151299405],[121,62,67,0.01263042701292858],[121,62,68,0.012318738202500448],[121,62,69,0.011909578689743728],[121,62,70,0.011450701405835158],[121,62,71,0.01098157389656164],[121,62,72,0.010534293199532637],[121,62,73,0.01013443658862187],[121,62,74,0.009801846387383791],[121,62,75,0.009551347252552286],[121,62,76,0.009393394526518935],[121,62,77,0.009334652452618336],[121,62,78,0.009378501237831276],[121,62,79,0.009525472132658905],[121,63,64,0.013184338775497071],[121,63,65,0.013343277689547961],[121,63,66,0.013346601763064396],[121,63,67,0.013165542624009567],[121,63,68,0.012825519734238401],[121,63,69,0.01238331692267734],[121,63,70,0.01188741832350879],[121,63,71,0.011378088051155451],[121,63,72,0.01088826482859541],[121,63,73,0.010444393301199718],[121,63,74,0.010067190249268186],[121,63,75,0.009772344108656461],[121,63,76,0.009571146403459423],[121,63,77,0.009471053886360329],[121,63,78,0.009476180369694179],[121,63,79,0.00958771741201818],[121,64,64,0.013771770069929613],[121,64,65,0.01392229592720836],[121,64,66,0.013910539387906895],[121,64,67,0.013708435244075787],[121,64,68,0.013341990154171661],[121,64,69,0.012868401337424657],[121,64,70,0.012336682303815898],[121,64,71,0.011787728619710754],[121,64,72,0.011255191481362403],[121,64,73,0.010766288541822594],[121,64,74,0.010342550219419721],[121,64,75,0.010000499909566803],[121,64,76,0.009752266713509596],[121,64,77,0.009606129486438702],[121,64,78,0.009566991191892808],[121,64,79,0.009636782728087516],[121,65,64,0.014323763326267542],[121,65,65,0.014467805377348982],[121,65,66,0.014443108877516967],[121,65,67,0.01422237505068512],[121,65,68,0.013832094566158953],[121,65,69,0.013329669966143876],[121,65,70,0.01276445921580272],[121,65,71,0.012177830758030177],[121,65,72,0.011604016197009596],[121,65,73,0.01107090057262259],[121,65,74,0.010600748470106698],[121,65,75,0.010210864400886198],[121,65,76,0.009914186080144228],[121,65,77,0.00971980941317846],[121,65,78,0.009633444184611305],[121,65,79,0.00965779962061963],[121,66,64,0.01480434307748106],[121,66,65,0.014943842521702356],[121,66,66,0.014908561863506208],[121,66,67,0.01467200715698246],[121,66,68,0.01426106032768723],[121,66,69,0.013733155230642871],[121,66,70,0.013137832160670182],[121,66,71,0.012516785490397885],[121,66,72,0.011904696564886215],[121,66,73,0.011330004325266882],[121,66,74,0.010815611921008304],[121,66,75,0.010379527760400326],[121,66,76,0.010035439636808053],[121,66,77,0.009793220752882878],[121,66,78,0.009659366644959698],[121,66,79,0.009637362183817395],[121,67,64,0.015180549711198739],[121,67,65,0.015317393075242299],[121,67,66,0.015274004850262177],[121,67,67,0.015024721263931262],[121,67,68,0.014596742320412548],[121,67,69,0.014047399180101427],[121,67,70,0.013426280609438871],[121,67,71,0.01277527657796676],[121,67,72,0.012129393328684774],[121,67,73,0.011517506159157625],[121,67,74,0.010963048185030754],[121,67,75,0.010484633546533544],[121,67,76,0.010096613705301608],[121,67,77,0.009809565662138567],[121,67,78,0.009630711104874597],[121,67,79,0.00956426566776281],[121,68,64,0.015423939322754654],[121,68,65,0.015559890945472079],[121,68,66,0.015510885749089317],[121,68,67,0.01525211900058897],[121,68,68,0.014811065935262232],[121,68,69,0.014244866066800333],[121,68,70,0.013603055949769748],[121,68,71,0.012927612204821274],[121,68,72,0.012253751480191302],[121,68,73,0.011610668004202712],[121,68,74,0.011022207007395271],[121,68,75,0.010507472481173024],[121,68,76,0.01008136792582183],[121,68,77,0.009755068923123148],[121,68,78,0.00953642654627175],[121,68,79,0.009430300790886675],[121,69,64,0.015512184253400606],[121,69,65,0.015648819556602706],[121,69,66,0.015596583611091461],[121,69,67,0.015331584960119774],[121,69,68,0.014881574016905822],[121,69,69,0.014303458704381919],[121,69,70,0.013646660028187705],[121,69,71,0.012953158135027901],[121,69,72,0.012258280475529567],[121,69,73,0.01159142740415183],[121,69,74,0.010976733495106417],[121,69,75,0.010433663041120096],[121,69,76,0.009977538387361679],[121,69,77,0.009619999934654934],[121,69,78,0.009369396822900458],[121,69,79,0.009231107475915962],[121,70,64,0.015443426851363781],[121,70,65,0.015582571723755741],[121,70,66,0.015529767916310428],[121,70,67,0.01526213654282355],[121,70,68,0.014807723020242334],[121,70,69,0.014223162324916187],[121,70,70,0.013557693074335063],[121,70,71,0.012853210720227026],[121,70,72,0.012145047298579785],[121,70,73,0.011462688453682751],[121,70,74,0.01083042600862486],[121,70,75,0.010267944542403342],[121,70,76,0.009790840619080515],[121,70,77,0.009411073495952573],[121,70,78,0.009137346314154266],[121,70,79,0.00897541694499099],[121,71,64,0.01525780079690121],[121,71,65,0.015402936812196347],[121,71,66,0.015353882373506697],[121,71,67,0.015088905322463276],[121,71,68,0.014636287821037684],[121,71,69,0.014052201311906437],[121,71,70,0.013385509593140957],[121,71,71,0.012677834576420563],[121,71,72,0.011964330093079154],[121,71,73,0.011274392674369266],[121,71,74,0.01063230756751341],[121,71,75,0.010057828437162608],[121,71,76,0.009566689387451761],[121,71,77,0.009171048121602424],[121,71,78,0.008879859232656964],[121,71,79,0.008699176788899554],[121,72,64,0.014995442654999715],[121,72,65,0.015151634931456265],[121,72,66,0.015112220535155568],[121,72,67,0.014856768578195073],[121,72,68,0.014413663926195195],[121,72,69,0.013838288075913816],[121,72,70,0.013178823500449447],[121,72,71,0.012476338587749422],[121,72,72,0.011765557200107957],[121,72,73,0.01107556464146871],[121,72,74,0.010430448280929273],[121,72,75,0.00984987126997358],[121,72,76,0.009349577977552004],[121,72,77,0.00894182994984852],[121,72,78,0.00863577137908496],[121,72,79,0.008437723236469344],[121,73,64,0.014689395345889495],[121,73,65,0.014862894826224295],[121,73,66,0.014840172435503278],[121,73,67,0.014602261840473585],[121,73,68,0.014177464078140667],[121,73,69,0.01361995315918372],[121,73,70,0.012976847421981645],[121,73,71,0.01228832109005011],[121,73,72,0.01158837081000522],[121,73,73,0.01090551766571677],[121,73,74,0.010263442902690444],[121,73,75,0.009681555787875919],[121,73,76,0.00917549221864041],[121,73,77,0.008757542879218132],[121,73,78,0.008437009922189334],[121,73,79,0.008220491324894918],[121,74,64,0.014367841686842592],[121,74,65,0.01456570405445092],[121,74,66,0.014567484872871767],[121,74,67,0.01435584359250476],[121,74,68,0.013958778430946249],[121,74,69,0.013428786379245092],[121,74,70,0.012811495982524169],[121,74,71,0.012145813408837474],[121,74,72,0.011464686926721673],[121,74,73,0.01079580549207446],[121,74,74,0.01016222966330482],[121,74,75,0.00958295325798091],[121,74,76,0.009073394355751382],[121,74,77,0.008645814439753291],[121,74,78,0.00830966465065844],[121,74,79,0.0080718583023628],[121,75,64,0.014056304588320944],[121,75,65,0.014286026817027892],[121,75,66,0.014320490457220824],[121,75,67,0.01414412989196373],[121,75,68,0.013784405944348311],[121,75,69,0.013291650825921365],[121,75,70,0.012709564069042958],[121,75,71,0.012075401077597744],[121,75,72,0.01142073636435817],[121,75,73,0.01077215905123777],[121,75,74,0.0101518988355564],[121,75,75,0.009578380824023982],[121,75,76,0.009066707831847261],[121,75,77,0.008629068935755997],[121,75,78,0.008275073255408976],[121,75,79,0.008012008115954105],[121,76,64,0.013779810590538661],[121,76,65,0.014048986108830826],[121,76,66,0.014124302089111467],[121,76,67,0.013992095586361131],[121,76,68,0.013679053692941433],[121,76,69,0.013232866459680493],[121,76,70,0.01269487690104508],[121,76,71,0.012100319695737891],[121,76,72,0.011479083905754372],[121,76,73,0.01085640561077264],[121,76,74,0.010253488644226514],[121,76,75,0.00968805182151677],[121,76,76,0.00917480125182962],[121,76,77,0.008725826521494348],[121,76,78,0.00835091972725142],[121,76,79,0.008057816520555651],[121,77,64,0.013565013288982469],[121,77,65,0.013881006714511002],[121,77,66,0.014004969381174862],[121,77,67,0.013925238632076922],[121,77,68,0.01366750061667181],[121,77,69,0.013276359881180685],[121,77,70,0.012790408557760043],[121,77,71,0.012242522197667277],[121,77,72,0.011660622562864178],[121,77,73,0.01106836748246855],[121,77,74,0.01048576594244099],[121,77,75,0.009929716787716682],[121,77,76,0.009414469623472498],[121,77,77,0.00895200670484774],[121,77,78,0.008552344800680253],[121,77,79,0.008223756204965292],[121,78,64,0.013442273077242063],[121,78,65,0.01381191544336487],[121,78,66,0.01399159339545571],[121,78,67,0.013971703880938439],[121,78,68,0.013776722084659862],[121,78,69,0.013447776680566875],[121,78,70,0.013020365444241603],[121,78,71,0.012524714132176628],[121,78,72,0.01198653970309975],[121,78,73,0.011427737265541091],[121,78,74,0.01086698890079421],[121,78,75,0.010320292729095903],[121,78,76,0.009801410801881046],[121,78,77,0.00932223461278937],[121,78,78,0.008893067223110226],[121,78,79,0.008522821191775389],[121,79,64,0.013428150586040214],[121,79,65,0.013857541847492707],[121,79,66,0.014099252562773132],[121,79,67,0.014145773856747043],[121,79,68,0.014020191844638713],[121,79,69,0.01375983512290753],[121,79,70,0.013396818172170045],[121,79,71,0.012958469011308968],[121,79,72,0.01246809404937511],[121,79,73,0.01194566283975397],[121,79,74,0.011408410862854757],[121,79,75,0.010871358691268906],[121,79,76,0.01034774611505422],[121,79,77,0.009849380022891548],[121,79,78,0.009386895045654237],[121,79,79,0.008969926170584876],[121,80,64,0.013472101215163146],[121,80,65,0.013966661309199758],[121,80,66,0.014276788276300327],[121,80,67,0.014397148513390709],[121,80,68,0.014349330498798362],[121,80,69,0.014166610681926822],[121,80,70,0.013877458171218842],[121,80,71,0.013506040968062929],[121,80,72,0.013072998829460858],[121,80,73,0.012596131646225386],[121,80,74,0.012091001424753722],[121,80,75,0.011571446198806205],[121,80,76,0.011050004431782612],[121,80,77,0.010538248698014686],[121,80,78,0.010047027651815211],[121,80,79,0.009586615503519589],[121,81,64,0.01352156169500507],[121,81,65,0.014085808289677532],[121,81,66,0.014470550669939328],[121,81,67,0.014672755321516769],[121,81,68,0.014712477060115036],[121,81,69,0.014618767560644223],[121,81,70,0.014416222798884947],[121,81,71,0.014125581493395505],[121,81,72,0.013764517389277945],[121,81,73,0.01334834204426155],[121,81,74,0.012890616140109416],[121,81,75,0.012403667593580001],[121,81,76,0.011899014987775984],[121,81,77,0.011387695084885845],[121,81,78,0.010880493413200028],[121,81,79,0.010388077142851811],[121,82,64,0.013540199439460944],[121,82,65,0.014177495601290387],[121,82,66,0.014642372968234466],[121,82,67,0.014934244430663192],[121,82,68,0.015071659977538092],[121,82,69,0.015079358509158135],[121,82,70,0.01497788435316498],[121,82,71,0.014784293901539989],[121,82,72,0.014512982365668899],[121,82,73,0.014176415367887652],[121,82,74,0.013785763291996605],[121,82,75,0.013351436581732533],[121,82,76,0.012883520437828127],[121,82,77,0.012392107619166436],[121,82,78,0.01188752829967238],[121,82,79,0.011380476167860778],[121,83,64,0.01350545622650564],[121,83,65,0.014217823057066158],[121,83,66,0.01476727554482426],[121,83,67,0.015155822305015013],[121,83,68,0.015400594193288425],[121,83,69,0.01552201589619698],[121,83,70,0.015536461784303698],[121,83,71,0.015457087810011143],[121,83,72,0.015294710167680897],[121,83,73,0.015058582478414581],[121,83,74,0.014757069279986535],[121,83,75,0.014398213886757837],[121,83,76,0.013990198963730596],[121,83,77,0.013541698431213096],[121,83,78,0.01306211957975542],[121,83,79,0.01256173452685373],[121,84,64,0.013406244349203665],[121,84,65,0.014194235324828296],[121,84,66,0.01483131475497698],[121,84,67,0.015322224315668483],[121,84,68,0.015682810052119668],[121,84,69,0.015929266543420337],[121,84,70,0.016073747386605768],[121,84,71,0.016125339397286033],[121,84,72,0.016091011868220307],[121,84,73,0.015976457429544996],[121,84,74,0.01578682210410896],[121,84,75,0.015527322456091713],[121,84,76,0.015203748030748341],[121,84,77,0.014822847575614322],[121,84,78,0.014392597816575498],[121,84,79,0.013922353833508018],[121,85,64,0.013240800573369835],[121,85,65,0.01410343422724574],[121,85,66,0.014829581625671778],[121,85,67,0.015426831141389754],[121,85,68,0.015909918606330682],[121,85,69,0.01629097448464607],[121,85,70,0.016577952183109968],[121,85,71,0.016498811902264297],[121,85,72,0.016424682325765775],[121,85,73,0.016432502783947263],[121,85,74,0.0165207809883113],[121,85,75,0.016687622704331218],[121,85,76,0.016507029907712585],[121,85,77,0.01621850125749904],[121,85,78,0.01586227601115225],[121,85,79,0.01544627948082162],[121,86,64,0.01301470370129964],[121,86,65,0.013949451242020046],[121,86,66,0.01476435604164127],[121,86,67,0.015469934418568813],[121,86,68,0.01608001847571444],[121,86,69,0.01660291644913339],[121,86,70,0.01626473478784259],[121,86,71,0.015949362136160737],[121,86,72,0.01571542007626865],[121,86,73,0.015565263177026206],[121,86,74,0.01550134036673041],[121,86,75,0.015525428141487054],[121,86,76,0.015637995303731864],[121,86,77,0.01583770110939647],[121,86,78,0.01612102837143727],[121,86,79,0.016482052749035674],[121,87,64,0.012739061078726131],[121,87,65,0.01374188550317848],[121,87,66,0.014643421626628796],[121,87,67,0.01545715666178476],[121,87,68,0.016196249027940115],[121,87,69,0.016467031785390752],[121,87,70,0.01591341917862965],[121,87,71,0.015430670813857014],[121,87,72,0.015024463843641837],[121,87,73,0.014701471349462203],[121,87,74,0.014468358284271267],[121,87,75,0.014330915676772643],[121,87,76,0.014293335584976509],[121,87,77,0.014357628918857524],[121,87,78,0.01452318789389383],[121,87,79,0.014786494531747605],[121,88,64,0.012428868951526083],[121,88,65,0.013494312182083308],[121,88,66,0.014478546109779182],[121,88,67,0.015398030085499023],[121,88,68,0.016265494277749235],[121,88,69,0.016317833241450672],[121,88,70,0.015602166525139908],[121,88,71,0.014945694539987717],[121,88,72,0.014358422724301531],[121,88,73,0.013851457726165075],[121,88,74,0.013435880916260906],[121,88,75,0.013121769467842763],[121,88,76,0.012917367796425924],[121,88,77,0.01282841175507869],[121,88,78,0.01285760759412337],[121,88,79,0.013004267319569874],[121,89,64,0.012101551177743055],[121,89,65,0.013222865733382057],[121,89,66,0.014284131585704164],[121,89,67,0.015304738593082722],[121,89,68,0.016297241561106693],[121,89,69,0.016206256175138326],[121,89,70,0.015328154054240966],[121,89,71,0.014495413125084622],[121,89,72,0.01372230697671781],[121,89,73,0.013024411085126395],[121,89,74,0.012417341641423683],[121,89,75,0.011915651485993689],[121,89,76,0.011531886278254383],[121,89,77,0.011275803604870415],[121,89,78,0.01115375731182988],[121,89,79,0.011168248940953817],[121,90,64,0.011775680427331923],[121,90,65,0.012945002124842947],[121,90,66,0.014076038721517792],[121,90,67,0.01519102685990538],[121,90,68,0.01630259872141814],[121,90,69,0.016124351896800455],[121,90,70,0.01508699017182556],[121,90,71,0.014079362876515863],[121,90,72,0.013119877650394518],[121,90,73,0.01222853279054061],[121,90,74,0.011425511729828029],[121,90,75,0.010729944266139654],[121,90,76,0.010158838036156349],[121,90,77,0.009726183269604342],[121,90,78,0.009442233411280445],[121,90,79,0.009312963762080014],[121,91,64,0.011469885654982758],[121,91,65,0.012678443829196083],[121,91,66,0.013870588633419572],[121,91,67,0.015071280121026978],[121,91,68,0.016293473247658476],[121,91,69,0.016063245976219578],[121,91,70,0.01487327597395653],[121,91,71,0.013696041633848324],[121,91,72,0.012553880596035722],[121,91,73,0.011471088234987202],[121,91,74,0.010472360974487022],[121,91,75,0.009581415976183984],[121,91,76,0.008819791080054444],[121,91,77,0.008205828386319999],[121,91,78,0.00775384438835652],[121,91,79,0.007473489098428959],[121,92,64,0.011201949308825707],[121,92,65,0.01244031103912734],[121,92,66,0.013683745847644705],[121,92,67,0.014959777979635193],[121,92,68,0.016281916527323477],[121,92,69,0.01601368437563618],[121,92,70,0.014681023654268726],[121,92,71,0.013343183144012243],[121,92,72,0.012026162788609945],[121,92,73,0.010758353789944986],[121,92,74,0.009568826957140505],[121,92,75,0.008485806903187593],[121,92,76,0.007535336366489643],[121,92,77,0.0067401344150908255],[121,92,78,0.006118651780146076],[121,92,79,0.005684326066053115],[121,93,64,0.010988097438284446],[121,93,65,0.012246442272001978],[121,93,66,0.013530485474394767],[121,93,67,0.014870125278405168],[121,93,68,0.016279636119247147],[121,93,69,0.015966422165432457],[121,93,70,0.014503929320429673],[121,93,71,0.013017898562315396],[121,93,72,0.011537669058701662],[121,93,73,0.010095457699246465],[121,93,74,0.008724491744988554],[121,93,75,0.00745733653072939],[121,93,76,0.006324422904319213],[121,93,77,0.005352778537059799],[121,93,78,0.004564966697760527],[121,93,79,0.003978235553107113],[121,94,64,0.010842485586474422],[121,94,65,0.012110907257389444],[121,94,66,0.013424347457403264],[121,94,67,0.014814862821179255],[121,94,68,0.016297678711341645],[121,94,69,0.015912452325413756],[121,94,70,0.014335497933508355],[121,94,71,0.012716683043154625],[121,94,72,0.011088317480255053],[121,94,73,0.00948611347642066],[121,94,74,0.007947164914380874],[121,94,75,0.006508130453811895],[121,94,76,0.005203625628412868],[121,94,77,0.0040648284266385],[121,94,78,0.003118302297573444],[121,94,79,0.002385039964003193],[121,95,64,0.010776883095079142],[121,95,65,0.01204571474678442],[121,95,66,0.013377180514879084],[121,95,67,0.014805260495618457],[121,95,68,0.016346286205131327],[121,95,69,0.015843072341167153],[121,95,70,0.014169018271333145],[121,95,71,0.012435285549957747],[121,95,72,0.010676751805204098],[121,95,73,0.008932244484726385],[121,95,74,0.007242371890070211],[121,95,75,0.005647566444833214],[121,95,76,0.004186345688103637],[121,95,77,0.002893795879162585],[121,95,78,0.0018002825009170282],[121,95,79,9.303913621786968E-4],[121,96,64,0.010800558211441465],[121,96,65,0.012060717649949482],[121,96,66,0.013399078158613738],[121,96,67,0.014851295127721492],[121,96,68,0.016434927161585976],[121,96,69,0.015749786497068107],[121,96,70,0.013997385991188783],[121,96,71,0.012168440168211734],[121,96,72,0.010299969468187002],[121,96,73,0.008433498488567134],[121,96,74,0.0066127466750103905],[121,96,75,0.004881539046797209],[121,96,76,0.0032819428363635365],[121,96,77,0.0018526352918326054],[121,96,78,6.275072673378864E-4],[121,96,79,-3.6549338732428977E-4],[121,97,64,0.010920366167624762],[121,97,65,0.012163717685004686],[121,97,66,0.01349850896603089],[121,97,67,0.014961815195377846],[121,97,68,0.01657250565030483],[121,97,69,0.01562404194594022],[121,97,70,0.0138127730292225],[121,97,71,0.011909457349014687],[121,97,72,0.009952823808081351],[121,97,73,0.007986651067316702],[121,97,74,0.006057328126121148],[121,97,75,0.004211642128251251],[121,97,76,0.0024947996421050837],[121,97,77,9.486870109981597E-4],[121,97,78,-3.896252783496391E-4],[121,97,79,-0.00148912989771989],[121,98,64,0.011141042198500447],[121,98,65,0.012360771528848485],[121,98,66,0.013682643084013157],[121,98,67,0.015144894339575646],[121,98,68,0.016767749365773486],[121,98,69,0.01545679680090325],[121,98,70,0.013606141724374712],[121,98,71,0.011649673644017977],[121,98,72,0.009627399267965063],[121,98,73,0.007584896877765383],[121,98,74,0.005570759006242808],[121,98,75,0.003634268888610903],[121,98,76,0.001823317281734103],[121,98,77,1.8256557273492368E-4],[121,98,78,-0.0012481395698978224],[121,98,79,-0.0024350954073797983],[121,99,64,0.01146570127964317],[121,99,65,0.012656700269865801],[121,99,66,0.013957876762644863],[121,99,67,0.015408375437742797],[121,99,68,0.01695978667382224],[121,99,69,0.01523791864823609],[121,99,70,0.013366602194118294],[121,99,71,0.011377758616418087],[121,99,72,0.00931225844173565],[121,99,73,0.007217027839758135],[121,99,74,0.005142387111905068],[121,99,75,0.0031396288526930093],[121,99,76,0.0012588426971396392],[121,99,77,-4.530071238361526E-4],[121,99,78,-0.0019537458841678793],[121,99,79,-0.003207389259859539],[121,100,64,0.011896546195205459],[121,100,65,0.013055803795422196],[121,100,66,0.014330556550840343],[121,100,67,0.01576060684327634],[121,100,68,0.016671406994588026],[121,100,69,0.014955412021700875],[121,100,70,0.013080611618282903],[121,100,71,0.011078877727247971],[121,100,72,0.008991559934365458],[121,100,73,0.006866497401414531],[121,100,74,0.004755267840727301],[121,100,75,0.002710681439540246],[121,100,76,7.845269357220552E-4],[121,100,77,-9.744236599989008E-4],[121,100,78,-0.0025221459016978444],[121,100,79,-0.003820824203985377],[121,101,64,0.012433713206073862],[121,101,65,0.013560462234194959],[121,101,66,0.01480533827872103],[121,101,67,0.016208558732321698],[121,101,68,0.01629559305503957],[121,101,69,0.014597775399224052],[121,101,70,0.012734548765743044],[121,101,71,0.010737462267606692],[121,101,72,0.008647994649339777],[121,101,73,0.0065144876569178485],[121,101,74,0.004389320855165558],[121,101,75,0.0023263360691080383],[121,101,76,3.7851890675508806E-4],[121,101,77,-0.001404055898150567],[121,101,78,-0.00297600929916776],[121,101,79,-0.0042981675864359175],[121,102,64,0.013052750716071546],[121,102,65,0.014145805453926645],[121,102,66,0.015357045875156999],[121,102,67,0.016726865762163028],[121,102,68,0.015857837497660517],[121,102,69,0.014190535682635126],[121,102,70,0.012353914736492907],[121,102,71,0.010378913430307956],[121,102,72,0.00830676259693399],[121,102,73,0.0061858603146072045],[121,102,74,0.004068891956852019],[121,102,75,0.002010203505218926],[121,102,76,6.343579387552771E-5],[121,102,77,-0.0017205733726496435],[121,102,78,-0.0032956130105337364],[121,102,79,-0.004621643152332218],[121,103,64,0.013714659954957426],[121,103,65,0.014770825053773407],[121,103,66,0.015942840350852146],[121,103,67,0.016840488515982115],[121,103,68,0.015404131111906931],[121,103,69,0.013781006879524106],[121,103,70,0.011987173145329487],[121,103,71,0.010052632097104407],[121,103,72,0.008017936938737091],[121,103,73,0.005931035443208857],[121,103,74,0.0038443601793255746],[121,103,75,0.0018121739619562389],[121,103,76,-1.1182165511011938E-4],[121,103,77,-0.0018766077556655258],[121,103,78,-0.0034356929457355244],[121,103,79,-0.004748676102704285],[121,104,64,0.014384573944959273],[121,104,65,0.015399085565448892],[121,104,66,0.016524951889085312],[121,104,67,0.016354429239036534],[121,104,68,0.014974219906981385],[121,104,69,0.013409596098146548],[121,104,70,0.011675194028816033],[121,104,71,0.009799739082055076],[121,104,72,0.007822651890149343],[121,104,73,0.005790891465533913],[121,104,74,0.0037560447234984023],[121,104,75,0.0017716710177781917],[121,104,76,-1.0909041704346427E-4],[121,104,77,-0.001835642950198939],[121,104,78,-0.0033617785240568987],[121,104,79,-0.00464724138029796],[121,105,64,0.015033646744508153],[121,105,65,0.01600058359059449],[121,105,66,0.01704872501412965],[121,105,67,0.0159118422796419],[121,105,68,0.01459989277787373],[121,105,69,0.013108155849985936],[121,105,70,0.011449674645343466],[121,105,71,0.009651566078139374],[121,105,72,0.007751663490199747],[121,105,73,0.0057953936911382285],[121,105,74,0.0038328976864588004],[121,105,75,0.0019164036930230234],[121,105,76,9.786032501189035E-5],[121,105,77,-0.0015731628835317971],[121,105,78,-0.003051301166644698],[121,105,79,-0.0042969406762108555],[121,106,64,0.01564097243380549],[121,106,65,0.01655359295164641],[121,106,66,0.016599897272941255],[121,106,67,0.015535152990006728],[121,106,68,0.014303428460343286],[121,106,69,0.012898549171355016],[121,106,70,0.011331828453392331],[121,106,71,0.009628471055978227],[121,106,72,0.00782429089589064],[121,106,73,0.005962658003760797],[121,106,74,0.0040916838390547385],[121,106,75,0.002261653450890142],[121,106,76,5.227122646076633E-4],[121,106,77,-0.001077185424379846],[121,106,78,-0.002494059862645977],[121,106,79,-0.003689415456046456],[121,107,64,0.016195874188933],[121,107,65,0.0170468767609701],[121,107,66,0.01621842621411871],[121,107,67,0.015235709893965766],[121,107,68,0.014095699573282024],[121,107,69,0.012790885856209843],[121,107,70,0.011330762715676812],[121,107,71,0.009738363362152284],[121,107,72,0.008047091937996194],[121,107,73,0.006297776665224299],[121,107,74,0.004535953364394715],[121,107,75,0.0028093875964893917],[121,107,76,0.0011658430087851666],[121,107,77,-3.488972061018244E-4],[121,107,78,-0.0016927494971607372],[121,107,79,-0.0028287842072381693],[121,108,64,0.016700565460384235],[121,108,65,0.01667602652443257],[121,108,66,0.015902542548621466],[121,108,67,0.015011412646695178],[121,108,68,0.013973931425469122],[121,108,69,0.012781427445694262],[121,108,70,0.011441542374320983],[121,108,71,0.009974936198891848],[121,108,72,0.008412270698551378],[121,108,73,0.0067914041200291065],[121,108,74,0.005154805613466847],[121,108,75,0.0035471973512242808],[121,108,76,0.002013431616169331],[121,108,77,5.96609508370614E-4],[121,108,78,-6.635527152475793E-4],[121,108,79,-0.0017321042803337934],[121,109,64,0.01693331061468092],[121,109,65,0.01631875000221367],[121,109,66,0.01563436897769844],[121,109,67,0.014843981973513772],[121,109,68,0.013919113448437947],[121,109,69,0.012850158806103662],[121,109,70,0.011642938026993241],[121,109,71,0.010315604347079938],[121,109,72,0.008895815042364471],[121,109,73,0.007418100845299876],[121,109,74,0.005921442079214282],[121,109,75,0.0044470590060823],[121,109,76,0.003036423287590923],[121,109,77,0.0017294968630963761],[121,109,78,5.632039547181231E-4],[121,109,79,-4.2985867627494097E-4],[121,110,64,0.01649136443055563],[121,110,65,0.015963507432893584],[121,110,66,0.015376701406897501],[121,110,67,0.014695869661244346],[121,110,68,0.013893061281542997],[121,110,69,0.012958024293739783],[121,110,70,0.011894856000440846],[121,110,71,0.010719145157718591],[121,110,72,0.009455362191491444],[121,110,73,0.00813443343729863],[121,110,74,0.006791506923416128],[121,110,75,0.00546391667343944],[121,110,76,0.004189351956328757],[121,110,77,0.003004237362910064],[121,110,78,0.0019423290416030825],[121,110,79,0.0010335318866623623],[121,111,64,0.015985686339733105],[121,111,65,0.01555277297347462],[121,111,66,0.015071965807827459],[121,111,67,0.01450938920174764],[121,111,68,0.01383794365922616],[121,111,69,0.013047070252414772],[121,111,70,0.012139304260543883],[121,111,71,0.011127676897251],[121,111,72,0.01003335373942007],[121,111,73,0.008883440902569442],[121,111,74,0.007708965828695777],[121,111,75,0.006543039060491893],[121,111,76,0.005419202879998944],[121,111,77,0.004369972193168884],[121,111,78,0.0034255725478286774],[121,111,79,0.0026128796847730137],[121,112,64,0.015362361678787347],[121,112,65,0.0150313254278883],[121,112,66,0.014664208952469551],[121,112,67,0.014228496474167756],[121,112,68,0.013698316357836223],[121,112,69,0.01306318349520225],[121,112,70,0.012324256224185572],[121,112,71,0.01149202281615646],[121,112,72,0.010584216554558898],[121,112,73,0.009623880943890174],[121,112,74,0.008637591176221548],[121,112,75,0.007653837546396891],[121,112,76,0.0067015760677085435],[121,112,77,0.0058089511000429805],[121,112,78,0.005002194365189588],[121,112,79,0.004304704292464186],[121,113,64,0.014590846958604112],[121,113,65,0.014366726300573566],[121,113,66,0.014119599129947721],[121,113,67,0.013818521068405098],[121,113,68,0.013439256111888561],[121,113,69,0.012971797383364101],[121,113,70,0.012416126315426414],[121,113,71,0.01178020768291756],[121,113,72,0.011078208712903076],[121,113,73,0.010328849691525373],[121,113,74,0.009553891376569925],[121,113,75,0.008776764147778969],[121,113,76,0.00802134344759721],[121,113,77,0.007310875685617249],[121,113,78,0.006667058403114656],[121,113,79,0.006109278122582047],[121,114,64,0.01366191137932031],[121,114,65,0.013547629568441194],[121,114,66,0.013424936739612649],[121,114,67,0.013264694635150684],[121,114,68,0.013044716955753639],[121,114,69,0.012755887307253088],[121,114,70,0.012397223515389378],[121,114,71,0.011974202080650389],[121,114,72,0.011497306036368839],[121,114,73,0.010980684983062036],[121,114,74,0.010440931718854641],[121,114,75,0.009895979570664315],[121,114,76,0.009364124214033],[121,114,77,0.008863173453187384],[121,114,78,0.008409728119331005],[121,114,79,0.008018596936758932],[121,115,64,0.012584104057915236],[121,115,65,0.012580330933129154],[121,115,66,0.012584324809528653],[121,115,67,0.012568986574658852],[121,115,68,0.01251457757814209],[121,115,69,0.012413276501048112],[121,115,70,0.01226336071045047],[121,115,71,0.01206787690242906],[121,115,72,0.011833538426026916],[121,115,73,0.011569715107643043],[121,115,74,0.011287519048301152],[121,115,75,0.010998989614120895],[121,115,76,0.010716380587653592],[121,115,77,0.010451552196306215],[121,115,78,0.010215470485697058],[121,115,79,0.010017816262497396],[121,116,64,0.011380396496159462],[121,116,65,0.011485487678436063],[121,116,66,0.011616003081533635],[121,116,67,0.011747093620940202],[121,116,68,0.011861830392824521],[121,116,69,0.011954069231610881],[121,116,70,0.012021575278336841],[121,116,71,0.012065051536063263],[121,116,72,0.012087401312528563],[121,116,73,0.012093063460096459],[121,116,74,0.012087422894469211],[121,116,75,0.01207629868495456],[121,116,76,0.012065511821081449],[121,116,77,0.012060534574482423],[121,116,78,0.012066223192638212],[121,116,79,0.012086635483929188],[121,117,64,0.010085003471445203],[121,117,65,0.010295012327714997],[121,117,66,0.010549348825476422],[121,117,67,0.010825586399771792],[121,117,68,0.011109915263341024],[121,117,69,0.011398214100668021],[121,117,70,0.011687963395228585],[121,117,71,0.011977637909834802],[121,117,72,0.012266344031846881],[121,117,73,0.012553510503079549],[121,117,74,0.012838633998121275],[121,117,75,0.013121080888875295],[121,117,76,0.01339994640929323],[121,117,77,0.013673972313580827],[121,117,78,0.01394152400466735],[121,117,79,0.014200627998647151],[121,118,64,0.00874038528069084],[121,118,65,0.009049143048238837],[121,118,66,0.009422047305192239],[121,118,67,0.009839215810176848],[121,118,68,0.010290200605703218],[121,118,69,0.010773200004345144],[121,118,70,0.011285630373698076],[121,118,71,0.01182388242234092],[121,118,72,0.012383336813551506],[121,118,73,0.012958414343946657],[121,118,74,0.013542661124298073],[121,118,75,0.014128869134969694],[121,118,76,0.014709232467176217],[121,118,77,0.0152755395043153],[121,118,78,0.015819401245662067],[121,118,79,0.016332515928534228],[121,119,64,0.007394434030670255],[121,119,65,0.0077936935166992485],[121,119,66,0.008277434592905008],[121,119,67,0.008828381863502018],[121,119,68,0.009439614391425401],[121,119,69,0.010111887109695485],[121,119,70,0.010842759177430043],[121,119,71,0.011626707639087493],[121,119,72,0.01245551795420183],[121,119,73,0.01331869114629636],[121,119,74,0.01420386699176826],[121,119,75,0.015097262663193741],[121,119,76,0.01598412624028458],[121,119,77,0.016849204506048612],[121,119,78,0.017677224455902363],[121,119,79,0.017246422466450594],[121,120,64,0.00609784644613124],[121,120,65,0.006577484741458136],[121,120,66,0.007162015216449524],[121,120,67,0.00783676741135578],[121,120,68,0.008598427383120935],[121,120,69,0.00945047503380463],[121,120,70,0.010390799103736732],[121,120,71,0.011412155505482472],[121,120,72,0.012502922639815093],[121,120,73,0.013647856513871483],[121,120,74,0.014828844094566022],[121,120,75,0.01602565337892307],[121,120,76,0.01721667871829594],[121,120,77,0.017224437565852495],[121,120,78,0.016183270038380344],[121,120,79,0.015211546719645813],[121,121,64,0.00490168545936504],[121,121,65,0.005449961132371966],[121,121,66,0.0061231569244442055],[121,121,67,0.006909139002945766],[121,121,68,0.007808190755875639],[121,121,69,0.008826610246863403],[121,121,70,0.009962776478507593],[121,121,71,0.011207933700041797],[121,121,72,0.01254729477844173],[121,121,73,0.01396112890643646],[121,121,74,0.01542583113964847],[121,121,75,0.016914971354264306],[121,121,76,0.017171541728279373],[121,121,77,0.015793857642914945],[121,121,78,0.014475750633656135],[121,121,79,0.01324500545515506],[121,122,64,0.003855132650983984],[121,122,65,0.0044589929174813055],[121,122,66,0.005206964667859187],[121,122,67,0.006089316933334344],[121,122,68,0.007109830089259705],[121,122,69,0.008277634565916831],[121,122,70,0.009591729070088295],[121,122,71,0.011042066632660172],[121,122,72,0.012610983106435597],[121,122,73,0.014274596073272024],[121,122,74,0.01600417077568226],[121,122,75,0.017767142262203706],[121,122,76,0.01608268886014992],[121,122,77,0.014432358319630158],[121,122,78,0.012851454868926682],[121,122,79,0.011373911412709126],[121,123,64,0.003003433431131698],[121,123,65,0.0036488668271886064],[121,123,66,0.004456335721922051],[121,123,67,0.0054183163764482305],[121,123,68,0.006541897556818732],[121,123,69,0.007838976460505914],[121,123,70,0.00930926579839378],[121,123,71,0.010941652480483996],[121,123,72,0.012715922739854979],[121,123,73,0.014604445419869438],[121,123,74,0.01657380924152314],[121,123,75,0.016987204497321252],[121,123,76,0.015050699352416952],[121,123,77,0.013150539308386736],[121,123,78,0.011327988986720234],[121,123,79,0.009622733508073845],[121,124,64,0.0023860366828293324],[121,124,65,0.0030584668003859694],[121,124,66,0.003909197709644176],[121,124,67,0.004932661340005941],[121,124,68,0.006138983991889235],[121,124,69,0.007542686754839962],[121,124,70,0.009144253193071375],[121,124,71,0.010931727548029568],[121,124,72,0.012882703255380143],[121,124,73,0.014966259157121303],[121,124,74,0.0171448385189654],[121,124,75,0.01623589520563399],[121,124,76,0.014077537149986698],[121,124,77,0.011956682542626216],[121,124,78,0.00991999161519492],[121,124,79,0.008012381697097056],[121,125,64,0.002034930434357253],[121,125,65,0.002719646313056639],[121,125,66,0.003596931137166604],[121,125,67,0.004662873033617001],[121,125,68,0.00593029237038514],[121,125,69,0.0074161201832665434],[121,125,70,0.009121629939565211],[121,125,71,0.011034239138570837],[121,125,72,0.013129724303071843],[121,125,73,0.01537437501971462],[121,125,74,0.017727081532768765],[121,125,75,0.015508303587541197],[121,125,76,0.013163467722198938],[121,125,77,0.010856417273349928],[121,125,78,0.008638538979075386],[121,125,79,0.006559355504343615],[121,126,64,0.001973174985239413],[121,126,65,0.002655793787926364],[121,126,66,0.0035429779113933502],[121,126,67,0.004632134105948523],[121,126,68,0.0059383741226060735],[121,126,69,0.0074807641364665525],[121,126,70,0.009261350744335584],[121,126,71,0.011267128030340124],[121,126,72,0.013472439676109433],[121,126,73,0.01584131328144557],[121,126,74,0.01727282541418057],[121,126,75,0.014798954680632715],[121,126,76,0.012306983293659608],[121,126,77,0.009852409167914097],[121,126,78,0.007490595073705792],[121,126,79,0.005274957091167749],[121,127,64,0.0022136347803488467],[121,127,65,0.0028805924136021273],[121,127,66,0.003761637181830572],[121,127,67,0.004855130081890041],[121,127,68,0.006178029566978065],[121,127,69,0.007751215824860076],[121,127,70,0.00957746065013692],[121,127,71,0.011643521563639387],[121,127,72,0.013922690690248322],[121,127,73,0.016377270739722612],[121,127,74,0.016677096461815692],[121,127,75,0.014101942521563264],[121,127,76,0.011504730087968458],[121,127,77,0.008944073677180761],[121,127,78,0.006478507337515506],[121,127,79,0.004164569671973696],[121,128,64,0.002757910208746013],[121,128,65,0.003396975583176698],[121,128,66,0.004257049731065224],[121,128,67,0.005337069215970309],[121,128,68,0.0066553736488608965],[121,128,69,0.00823430898308717],[121,128,70,0.010077300839092772],[121,128,71,0.012171038263501136],[121,128,72,0.014488129658094172],[121,128,73,0.016989682289591145],[121,128,74,0.0160452265486769],[121,128,75,0.013411042199916618],[121,128,76,0.010751437587072686],[121,128,77,0.00812731391359929],[121,128,78,0.005599548314603111],[121,128,79,0.0032270020240597595],[121,129,64,0.003595470398000731],[121,129,65,0.004196279055408775],[121,129,66,0.0050223720318143894],[121,129,67,0.006072881873815713],[121,129,68,0.007367068067076539],[121,129,69,0.008928391145064201],[121,129,70,0.010760846875270024],[121,129,71,0.012851204847015622],[121,129,72,0.015171734180358403],[121,129,73,0.017682850659155296],[121,129,74,0.015371761394933108],[121,129,75,0.012719800595490738],[121,129,76,0.010039849805500883],[121,129,77,0.007394283260326211],[121,129,78,0.0048455037574982275],[121,129,79,0.0024538997758337187],[121,130,64,0.004702987980872932],[121,130,65,0.00525759084625911],[121,130,66,0.006039140992914601],[121,130,67,0.00704660045915551],[121,130,68,0.00829972077960174],[121,130,69,0.00982275243299069],[121,130,70,0.011620180259530795],[121,130,71,0.013678986394843327],[121,130,72,0.01597141291802732],[121,130,73,0.017193798312759936],[121,130,74,0.014652927776075167],[121,130,75,0.012021605604258164],[121,130,76,0.009360658575258363],[121,130,77,0.006733172910048868],[121,130,78,0.004202307580459206],[121,130,79,0.0018292241003317609],[121,131,64,0.0060438767293211374],[121,131,65,0.006547299774766464],[121,131,66,0.0072768303320008545],[121,131,67,0.008230920819782979],[121,131,68,0.009429453797942342],[121,131,69,0.010897206725814672],[121,131,70,0.012639094097656251],[121,131,71,0.014642430402787236],[121,131,72,0.01687970345587696],[121,131,73,0.016372750941911467],[121,131,74,0.013886780681042394],[121,131,75,0.011309733670981988],[121,131,76,0.008702438833702515],[121,131,77,0.006128024511769252],[121,131,78,0.0036497240359204394],[121,131,79,0.0013287983858848874],[121,132,64,0.007567940280110324],[121,132,65,0.008018742747351378],[121,132,66,0.008692490635714074],[121,132,67,0.009586829168104242],[121,132,68,0.010721515168027891],[121,132,69,0.01212169284877226],[121,132,70,0.013792692244743715],[121,132,71,0.015722275949197218],[121,132,72,0.017739058163467585],[121,132,73,0.015479215115788494],[121,132,74,0.013073474702060484],[121,132,75,0.01057755040357885],[121,132,76,0.00805176421012463],[121,132,77,0.0055587480519446565],[121,132,78,0.0031612571925662978],[121,132,79,9.201008977640769E-4],[121,133,64,0.009197860691279178],[121,133,65,0.009597270943424947],[121,133,66,0.010214403617988765],[121,133,67,0.011045836155344194],[121,133,68,0.012111065422689294],[121,133,69,0.013435583438174298],[121,133,70,0.015025206016814383],[121,133,71,0.016868292875655333],[121,133,72,0.01671490430909261],[121,133,73,0.014550406359141501],[121,133,74,0.012242850898855375],[121,133,75,0.009847079141317897],[121,133,76,0.00742251590770214],[121,133,77,0.005030888935584987],[121,133,78,0.0027340602931004115],[121,133,79,5.919751994315134E-4],[121,134,64,0.010828485012999881],[121,134,65,0.011177772955644948],[121,134,66,0.0117378337006114],[121,134,67,0.012503935695663548],[121,134,68,0.013495271716446555],[121,134,69,0.014737792249413403],[121,134,70,0.016237974102708427],[121,134,71,0.017601600497750627],[121,134,72,0.01573047020072219],[121,134,73,0.013673005989741863],[121,134,74,0.011475921943074075],[121,134,75,0.009192846120322892],[121,134,76,0.006881960076224864],[121,134,77,0.0046037446762746985],[121,134,78,0.00241883783183618],[121,134,79,3.860094218218094E-4],[121,135,64,0.012368342978113806],[121,135,65,0.012668644447789909],[121,135,66,0.013171383092597248],[121,135,67,0.013870318628459121],[121,135,68,0.01478436697270519],[121,135,69,0.01594013512579577],[121,135,70,0.017345006963504557],[121,135,71,0.01662683645059259],[121,135,72,0.01486535189457526],[121,135,73,0.012922338042599133],[121,135,74,0.010843029393754878],[121,135,75,0.008679522002262064],[121,135,76,0.006488447938879113],[121,135,77,0.004328755282988974],[121,135,78,0.0022595992021132707],[121,135,79,3.383493314242555E-4],[121,136,64,0.013744479402003388],[121,136,65,0.013996922865070278],[121,136,66,0.014442412620023595],[121,136,67,0.015073062365629549],[121,136,68,0.01590759576228134],[121,136,69,0.01697352394090912],[121,136,70,0.017264971335373157],[121,136,71,0.015828326672552035],[121,136,72,0.014180361869654656],[121,136,73,0.012355319591529237],[121,136,74,0.010396650385076634],[121,136,75,0.008354631616620005],[121,136,76,0.006284084512086661],[121,136,77,0.004242195094700139],[121,136,78,0.0022864444910054424],[121,136,79,4.72653740249189E-4],[121,137,64,0.01490266245840479],[121,137,65,0.01510841505312132],[121,137,66,0.015497076149915363],[121,137,67,0.016059052553453308],[121,137,68,0.016813004126129953],[121,137,69,0.017681310198613204],[121,137,70,0.016579750815139294],[121,137,71,0.015251869447655506],[121,137,72,0.013718345037866668],[121,137,73,0.012011422493891715],[121,137,74,0.01017249415262839],[121,137,75,0.008249770829122307],[121,137,76,0.006296048424890385],[121,137,77,0.004366575766977443],[121,137,78,0.0025170290360251716],[121,137,79,8.015978164097729E-4],[121,138,64,0.015807996469882974],[121,138,65,0.01596822604846677],[121,138,66,0.016300749326226972],[121,138,67,0.016794288715320252],[121,138,68,0.017467599287645873],[121,138,69,0.017145594984424212],[121,138,70,0.01614507566631118],[121,138,71,0.014925278826604209],[121,138,72,0.013504725389996617],[121,138,73,0.011913401977092127],[121,138,74,0.010190405497380928],[121,138,75,0.00838167383836212],[121,138,76,0.006537808457465581],[121,138,77,0.004711994395725272],[121,138,78,0.002958022931353691],[121,138,79,0.0013284217790083227],[121,139,64,0.016445941682331856],[121,139,65,0.016561691529704475],[121,139,66,0.016838855112952585],[121,139,67,0.017264576363092095],[121,139,68,0.01755865860531136],[121,139,69,0.016873136194729688],[121,139,70,0.015972269709037763],[121,139,71,0.014858443069003476],[121,139,72,0.013547781131720815],[121,139,73,0.012067790072500154],[121,139,74,0.010455073375973832],[121,139,75,0.008753129303717848],[121,139,76,0.007010235447026526],[121,139,77,0.005277425700591986],[121,139,78,0.003606564707060211],[121,139,79,0.0020485245252268285],[121,140,64,0.016823743494531865],[121,140,65,0.016895716408589265],[121,140,66,0.01711808861751569],[121,140,67,0.017476608031071726],[121,140,68,0.01745238557541472],[121,140,69,0.016856687809435802],[121,140,70,0.016053602216475133],[121,140,71,0.015043077324384506],[121,140,72,0.013838646244108103],[121,140,73,0.012465151985997553],[121,140,74,0.010956542889912579],[121,140,75,0.009353743788953197],[121,140,76,0.007702608284799346],[121,140,77,0.00605195725683048],[121,140,78,0.0044517084586857365],[121,140,79,0.002951101776073986],[121,141,64,0.016972273640403303],[121,141,65,0.0170005220546797],[121,141,66,0.017168043669685253],[121,141,67,0.017459435675940976],[121,141,68,0.017574838066598715],[121,141,69,0.01706814479994118],[121,141,70,0.016361467200243042],[121,141,71,0.015452168416645243],[121,141,72,0.014351036467806513],[121,141,73,0.013080103564654614],[121,141,74,0.011670529019407848],[121,141,75,0.010160551078938474],[121,141,76,0.008593512797577344],[121,141,77,0.0070159668278472085],[121,141,78,0.005475863758465668],[121,141,79,0.0040208283685312695],[121,142,64,0.01694828587315089],[121,142,65,0.01693180468631067],[121,142,66,0.01704324365739943],[121,142,67,0.017266336898662606],[121,142,68,0.01762194240636424],[121,142,69,0.017457116837759593],[121,142,70,0.01684722485110809],[121,142,71,0.016039109635701918],[121,142,72,0.01504069775920452],[121,142,73,0.01387108807593099],[121,142,74,0.012558530509798068],[121,142,75,0.01113846599166652],[121,142,76,0.009651632371639934],[121,142,77,0.008142240911355654],[121,142,78,0.006656227733416732],[121,142,79,0.005239584365988595],[121,143,64,0.016823317241982085],[121,143,65,0.016759978255917882],[121,143,66,0.016812771030023252],[121,143,67,0.016964882531848555],[121,143,68,0.017238041230209132],[121,143,69,0.01767170396128385],[121,143,70,0.017449416611916353],[121,143,71,0.016745181248284762],[121,143,72,0.01585206282823667],[121,143,73,0.014786117919536627],[121,143,74,0.013572566906240738],[121,143,75,0.012243930308069978],[121,143,76,0.01083822212135661],[121,143,77,0.009397204483091707],[121,143,78,0.007964707754694565],[121,143,79,0.006585019906027149],[121,144,64,0.016632789852152406],[121,144,65,0.016520757190618608],[121,144,66,0.016512619611465985],[121,144,67,0.016591388984883944],[121,144,68,0.016779768357198462],[121,144,69,0.017119087792336445],[121,144,70,0.01763487577360307],[121,144,71,0.017532859455125657],[121,144,72,0.016747500097121493],[121,144,73,0.01578758539435951],[121,144,74,0.014675201644779182],[121,144,75,0.013439836422913723],[121,144,76,0.012116667145175116],[121,144,77,0.010744900736753563],[121,144,78,0.009366168186210022],[121,144,79,0.008022977582538586],[121,145,64,0.016397625673181076],[121,145,65,0.016235808548477133],[121,145,66,0.016165277289439478],[121,145,67,0.01616929571759916],[121,145,68,0.016271643791940744],[121,145,69,0.01651540473787967],[121,145,70,0.016928437563166702],[121,145,71,0.01752435382468637],[121,145,72,0.01769770512986135],[121,145,73,0.016845039068563383],[121,145,74,0.015834919001073797],[121,145,75,0.01469371199779329],[121,145,76,0.013453667967048707],[121,145,77,0.01215135101036445],[121,145,78,0.010826114104248226],[121,145,79,0.009518620388690426],[121,146,64,0.01613550718572219],[121,146,65,0.01592359767193596],[121,146,66,0.015790092392809228],[121,146,67,0.015718975094802773],[121,146,68,0.01573519790877483],[121,146,69,0.0158834358757326],[121,146,70,0.016193773618500412],[121,146,71,0.01668252643233656],[121,146,72,0.01735381642238094],[121,146,73,0.01793060535994727],[121,146,74,0.017022725781044357],[121,146,75,0.015975574712958594],[121,146,76,0.014818411119892396],[121,146,77,0.013585092114232354],[121,146,78,0.01231263299559905],[121,146,79,0.011039800987383622],[121,147,64,0.015861200350263834],[121,147,65,0.015599685124015526],[121,147,66,0.015403539482433407],[121,147,67,0.015257960790528935],[121,147,68,0.015189157161511577],[121,147,69,0.0152431958402593],[121,147,70,0.015452241346597142],[121,147,71,0.01583521820738196],[121,147,72,0.01639922272288141],[121,147,73,0.017140931700104698],[121,147,74,0.01804800516050414],[121,147,75,0.017257994451282486],[121,147,76,0.01618263425906604],[121,147,77,0.01501723170919592],[121,147,78,0.013796427025004143],[121,147,79,0.012557057155689893],[121,148,64,0.015586859394273515],[121,148,65,0.015277007388362181],[121,148,66,0.015019470850418559],[121,148,67,0.014801164329926253],[121,148,68,0.014649620800062251],[121,148,69,0.0146120668289367],[121,148,70,0.014722563172770379],[121,148,71,0.015002508305421701],[121,148,72,0.015461877562566567],[121,148,73,0.016100471153907763],[121,148,74,0.016909168592947443],[121,148,75,0.017871187126910798],[121,148,76,0.017520698855174516],[121,148,77,0.016421516216417794],[121,148,78,0.01525086403060029],[121,148,79,0.014043633320770152],[121,149,64,0.015322313276414186],[121,149,65,0.014966141194422416],[121,149,66,0.014649353592978694],[121,149,67,0.014361079641515158],[121,149,68,0.014130228477906912],[121,149,69,0.014004926412314727],[121,149,70,0.014020913455699268],[121,149,71,0.014201888764738366],[121,149,72,0.01456057074932908],[121,149,73,0.015099778509587436],[121,149,74,0.015813532716301874],[121,149,75,0.016688174051906306],[121,149,76,0.017703497341934115],[121,149,77,0.017774411384339214],[121,149,78,0.016652047412471012],[121,149,79,0.015475528403160731],[121,150,64,0.015075333696092869],[121,150,65,0.014675551338252654],[121,150,66,0.014302492130618575],[121,150,67,0.013947975500105828],[121,150,68,0.013642318640684228],[121,150,69,0.013434269049340877],[121,150,70,0.013361001706442343],[121,150,71,0.013448309555255944],[121,150,72,0.013711480272028266],[121,150,73,0.014156207240162266],[121,150,74,0.014779533422334103],[121,150,75,0.015570826797204798],[121,150,76,0.016512786009239798],[121,150,77,0.017582474871736593],[121,150,78,0.017978905078925394],[121,150,79,0.016831570179990592],[121,151,64,0.014851884525139395],[121,151,65,0.014411821877736562],[121,151,66,0.013986236057058876],[121,151,67,0.01357007574755415],[121,151,68,0.01319507759201264],[121,151,69,0.012910321214559563],[121,151,70,0.01275415202818065],[121,151,71,0.012754221831146058],[121,151,72,0.012928180249430016],[121,151,73,0.013284413507636723],[121,151,74,0.013822829810092249],[121,151,75,0.014535690556327132],[121,151,76,0.015408486566025106],[121,151,77,0.016420858448551276],[121,151,78,0.017547560222241146],[121,151,79,0.01809351637888026],[121,152,64,0.014656352545767935],[121,152,65,0.014179870588200428],[121,152,66,0.013706173205106791],[121,152,67,0.013233727184666894],[121,152,68,0.012795679137912285],[121,152,69,0.012441150047846778],[121,152,70,0.01220937869629274],[121,152,71,0.012129619313846002],[121,152,72,0.01222164812855871],[121,152,73,0.012496330444210724],[121,152,74,0.012956248117657158],[121,152,75,0.01359638721749957],[121,152,76,0.014404885566614171],[121,152,77,0.015363839799997316],[121,152,78,0.01645017150803032],[121,152,79,0.017636551984575078],[121,153,64,0.01449175938520083],[121,153,65,0.013983146570643354],[121,153,66,0.01346630782360324],[121,153,67,0.012943555033005408],[121,153,68,0.012449414715947063],[121,153,69,0.01203276544116482],[121,153,70,0.011733457801039387],[121,153,71,0.011582077733614997],[121,153,72,0.01160027106328103],[121,153,73,0.011801141672013868],[121,153,74,0.012189723750464789],[121,153,75,0.012763528461972472],[121,153,76,0.013513165243143653],[121,153,77,0.014423037863307366],[121,153,78,0.015472115273209908],[121,153,79,0.01663477719197667],[121,154,64,0.01435995454238826],[121,154,65,0.013823810909988821],[121,154,66,0.013269223764604135],[121,154,67,0.01270260587003692],[121,154,68,0.012159813919406137],[121,154,69,0.01168921548028241],[121,154,70,0.011330994877610894],[121,154,71,0.011116792259036843],[121,154,72,0.011069851403903687],[121,154,73,0.011205253989276747],[121,154,74,0.011530241326188087],[121,154,75,0.012044624435332716],[121,154,76,0.012741283193512917],[121,154,77,0.013606755151758855],[121,154,78,0.014621914504770005],[121,154,79,0.015762741580564094],[121,155,64,0.014261789406120003],[121,155,65,0.013702900284899589],[121,155,66,0.013116232584061607],[121,155,67,0.012512477945029458],[121,155,68,0.011928755330481055],[121,155,69,0.011412675162493146],[121,155,70,0.011004488450556736],[121,155,71,0.010736612845076309],[121,155,72,0.010633611228512186],[121,155,73,0.01071226914945325],[121,155,74,0.010981772653451108],[121,155,75,0.011443987894265551],[121,155,76,0.012093843744309898],[121,155,77,0.012919818465268627],[121,155,78,0.013904531350822456],[121,155,79,0.015025440114828086],[121,156,64,0.014197272166539725],[121,156,65,0.013620473433821346],[121,156,66,0.013007506462502996],[121,156,67,0.012373438786323134],[121,156,68,0.011756567579514205],[121,156,69,0.011203528314126661],[121,156,70,0.010754389421728162],[121,156,71,0.010442077431466539],[121,156,72,0.010292195846766463],[121,156,73,0.010322954658458602],[121,156,74,0.010545212558911556],[121,156,75,0.010962633727174181],[121,156,76,0.011571960865211603],[121,156,77,0.01236340598194276],[121,156,78,0.013321160246893114],[121,156,79,0.014424024070752814],[121,157,64,0.014165703523587548],[121,157,65,0.013575740383981733],[121,157,66,0.012942195854513611],[121,157,67,0.012284530013090846],[121,157,68,0.011642120549951184],[121,157,69,0.011060442634040674],[121,157,70,0.010579156232779443],[121,157,71,0.010231442924310084],[121,157,72,0.01004367620686836],[121,157,73,0.010035213513854654],[121,157,74,0.010218312474459718],[121,157,75,0.010598173742818075],[121,157,76,0.011173112505779346],[121,157,77,0.011934860572583706],[121,157,78,0.012869000751118305],[121,157,79,0.013955535027113115],[121,158,64,0.014165793096216694],[121,158,65,0.013567174351073937],[121,158,66,0.012918531777216124],[121,158,67,0.012243659266429672],[121,158,68,0.011582906650630925],[121,158,69,0.010980437791318354],[121,158,70,0.0104753057350063],[121,158,71,0.01010071389483421],[121,158,72,0.009883550136444747],[121,158,73,0.00984405280852307],[121,158,74,0.009995611693470371],[121,158,75,0.010344706616714609],[121,158,76,0.010890986219591826],[121,158,77,0.01162748917279996],[121,158,78,0.012541009887418512],[121,158,79,0.013612610570685154],[121,159,64,0.014195756435374714],[121,159,65,0.013592606217317055],[121,159,66,0.012933912648424839],[121,159,67,0.012247679175619489],[121,159,68,0.011575112078512936],[121,159,69,0.010958946507093507],[121,159,70,0.010437459700873605],[121,159,71,0.010043668930277617],[121,159,72,0.009804742348181763],[121,159,73,0.009741551120152412],[121,159,74,0.009868366202248492],[121,159,75,0.010192702880506926],[121,159,76,0.010715315934332916],[121,159,77,0.011430348039349414],[121,159,78,0.012325633786255969],[121,159,79,0.01338316146336202],[121,160,64,0.014253392541685651],[121,160,65,0.01364930149448396],[121,160,66,0.012984975584711685],[121,160,67,0.012292453275624423],[121,160,68,0.011613677995847789],[121,160,69,0.010989868551767507],[121,160,70,0.010458386912980696],[121,160,71,0.010051884572886081],[121,160,72,0.009797603141185813],[121,160,73,0.00971682460671855],[121,160,74,0.009824474990024132],[121,160,75,0.010128884834828272],[121,160,76,0.010631709719768807],[121,160,77,0.011328013708668625],[121,160,78,0.012206518402060138],[121,160,79,0.013250020007090359],[121,161,64,0.014336141785512228],[121,161,65,0.013734019676317743],[121,161,66,0.013067652068250514],[121,161,67,0.01237290879139272],[121,161,68,0.011692351546145476],[121,161,69,0.011065617589867297],[121,161,70,0.010529040767437936],[121,161,71,0.010114756783969015],[121,161,72,0.009849905729251845],[121,161,73,0.009755991727078707],[121,161,74,0.009848403738100408],[121,161,75,0.010136101261420408],[121,161,76,0.010621468398546281],[121,161,77,0.011300339466235897],[121,161,78,0.012162199074869142],[121,161,79,0.013190559328989451],[121,162,64,0.01444112412264451],[121,162,65,0.013843055881544426],[121,162,66,0.013177207889027874],[121,162,67,0.01248307620325229],[121,162,68,0.011803726633103237],[121,162,69,0.011177160805440536],[121,162,70,0.01063859232969799],[121,162,71,0.010219519870935192],[121,162,72,0.009946842127510869],[121,162,73,0.009842136504855326],[121,162,74,0.009921105786075414],[121,162,75,0.010193196805429553],[121,162,76,0.010661394837466226],[121,162,77,0.011322197125535864],[121,162,78,0.012165768691240324],[121,162,79,0.013176283294038022],[121,163,64,0.014565157493248623],[121,163,65,0.013972264684425788],[121,163,66,0.013308267265817086],[121,163,67,0.01261611550569677],[121,163,68,0.011939274385917334],[121,163,69,0.011314051241190087],[121,163,70,0.010774458781802066],[121,163,71,0.010351262816189108],[121,163,72,0.010071017529313976],[121,163,73,0.009955270252967816],[121,163,74,0.010019940270458551],[121,163,75,0.010274875893927608],[121,163,76,0.010723593749355389],[121,163,77,0.011363203904962916],[121,163,78,0.012184524186054963],[121,163,79,0.013172386736341591],[121,164,64,0.014702913937784055],[121,164,65,0.014115109999317928],[121,164,66,0.0134527734198619],[121,164,67,0.012762197429848703],[121,164,68,0.012087152841617212],[121,164,69,0.011462175646730645],[121,164,70,0.010920000162892062],[121,164,71,0.010490585794410806],[121,164,72,0.010200076908190935],[121,164,73,0.010069937380033455],[121,164,74,0.010116264574352442],[121,164,75,0.010349287207962838],[121,164,76,0.010773051236785307],[121,164,77,0.011385297595986627],[121,164,78,0.01217753532216763],[121,164,79,0.013135313293778074],[121,165,64,0.014836496044190966],[121,165,65,0.014251612761163057],[121,165,66,0.013588476831939027],[121,165,67,0.012896595891427411],[121,165,68,0.012219951797697644],[121,165,69,0.011591250709911205],[121,165,70,0.01104190169646476],[121,165,71,0.01060102421208557],[121,165,72,0.010294334437252414],[121,165,73,0.010143210977453777],[121,165,74,0.010163944891403518],[121,165,75,0.010367178697665487],[121,165,76,0.01075753868967725],[121,165,77,0.011333464572823162],[121,165,78,0.012087240126988462],[121,165,79,0.013005228297060282],[121,166,64,0.014947578891271377],[121,166,65,0.014361290491139269],[121,166,66,0.013692645645386674],[121,166,67,0.0129941671937061],[121,166,68,0.012309948606589795],[121,166,69,0.011670858143979067],[121,166,70,0.011106986040440248],[121,166,71,0.010646631797412404],[121,166,72,0.010315117545882903],[121,166,73,0.010133785064137714],[121,166,74,0.010119181614813896],[121,166,75,0.010282439439361727],[121,166,76,0.010628853421670335],[121,166,77,0.011157661108992745],[121,166,78,0.011862028960477172],[121,166,79,0.012729248384775058],[121,167,64,0.01502372349513541],[121,167,65,0.014429946944351698],[121,167,66,0.013749268552338045],[121,167,67,0.013036950796499658],[121,167,68,0.012337099770453103],[121,167,69,0.011678798474752628],[121,167,70,0.011090884528685598],[121,167,71,0.010600914028809243],[121,167,72,0.010233901614688854],[121,167,73,0.010011248178306712],[121,167,74,0.009949861568330439],[121,167,75,0.010061475308439862],[121,167,76,0.010352170016231808],[121,167,77,0.01082210187886552],[121,167,78,0.011465442216681452],[121,167,79,0.012270531849791131],[121,168,64,0.015056615087721084],[121,168,65,0.014447903395022705],[121,168,66,0.01374728008291087],[121,168,67,0.013012395344067052],[121,168,68,0.012287274544906223],[121,168,69,0.011599335362382973],[121,168,70,0.010976292272716837],[121,168,71,0.01044509163591687],[121,168,72,0.01003057761764232],[121,168,73,0.009754349521630477],[121,168,74,0.009633816064756731],[121,168,75,0.009681451789343595],[121,168,76,0.009904260468722295],[121,168,77,0.010303450025325279],[121,168,78,0.01087432314889949],[121,168,79,0.01160638747910524],[121,169,64,0.015040066791964957],[121,169,65,0.014407992627852143],[121,169,66,0.013678547664456593],[121,169,67,0.012911346702879797],[121,169,68,0.012150252064903597],[121,169,69,0.011421206791958986],[121,169,70,0.010750995734696674],[121,169,71,0.010166144708902671],[121,169,72,0.009691511192510556],[121,169,73,0.00934907006498625],[121,169,74,0.00915690009750697],[121,169,75,0.00912837655969722],[121,169,76,0.009271574964370297],[121,169,77,0.00958889062884416],[121,169,78,0.010076878393144579],[121,169,79,0.010726316505158623],[121,170,64,0.014967827164861298],[121,170,65,0.014303356647344277],[121,170,66,0.013535663616443717],[121,170,67,0.012725843203123708],[121,170,68,0.011917529136616478],[121,170,69,0.011135452033256077],[121,170,70,0.010405723151637982],[121,170,71,0.009754688947636288],[121,170,72,0.00920744547169354],[121,170,73,0.008786551398145628],[121,170,74,0.0085109455681006],[121,170,75,0.008395074579606226],[121,170,76,0.008448235608900772],[121,170,77,0.008674139297569012],[121,170,78,0.009070697195649504],[121,170,79,0.00963003791359436],[121,171,64,0.014831189483377902],[121,171,65,0.014125046034279347],[121,171,66,0.013309540075645693],[121,171,67,0.012446716154607698],[121,171,68,0.011579936853045987],[121,171,69,0.010733052626907122],[121,171,70,0.009931816181024799],[121,171,71,0.009202682547601303],[121,171,72,0.008571246310543663],[121,171,73,0.008060881113620568],[121,171,74,0.0076915875049273445],[121,171,75,0.007479054817151501],[121,171,76,0.00743394242747554],[121,171,77,0.007561385385793945],[121,171,78,0.007860729048525993],[121,171,79,0.008325497011161248],[121,172,64,0.014616400461447049],[121,172,65,0.013859418694631968],[121,172,66,0.012986804666194906],[121,172,67,0.012060993532221616],[121,172,68,0.011125064020971184],[121,172,69,0.010202385490430052],[121,172,70,0.009318720981339046],[121,172,71,0.00850096207054629],[121,172,72,0.007775488409837056],[121,172,73,0.007166733383359193],[121,172,74,0.00669596210613209],[121,172,75,0.006380267627647503],[121,172,76,0.006231790842929932],[121,172,77,0.0062571692518126895],[121,172,78,0.006457219348914664],[121,172,79,0.006826857075408247],[121,173,64,0.014301865891981954],[121,173,65,0.01348533555464738],[121,173,66,0.012546994541110893],[121,173,67,0.011549104542624724],[121,173,68,0.010534485208753113],[121,173,69,0.009526486065801231],[121,173,70,0.008551296776520705],[121,173,71,0.007636605491570295],[121,173,72,0.006809880681640022],[121,173,73,0.0060968632489879155],[121,173,74,0.005520275311244475],[121,173,75,0.005098751685887328],[121,173,76,0.00484599973568907],[121,173,77,0.00477019286692199],[121,173,78,0.004873602606520818],[121,173,79,0.005152473825352111],[121,174,64,0.013855150506840394],[121,174,65,0.012971150557225],[121,174,66,0.011959546226841799],[121,174,67,0.010881882593168564],[121,174,68,0.009780791039164304],[121,174,69,0.008680119251277891],[121,174,70,0.007606939781822167],[121,174,71,0.006590120451179352],[121,174,72,0.0056585290539279],[121,174,73,0.00483945300237129],[121,174,74,0.00415724047269228],[121,174,75,0.0036321692477946773],[121,174,76,0.0032795490756235917],[121,174,77,0.003109062985648944],[121,174,78,0.0031243526326631766],[121,174,79,0.0033228523697375824],[121,175,64,0.01324505918123386],[121,175,65,0.012286667774245875],[121,175,66,0.011195539920305113],[121,175,67,0.010031990540325988],[121,175,68,0.008838571458348769],[121,175,69,0.007640183005420324],[121,175,70,0.006465258328683235],[121,175,71,0.005344234877203038],[121,175,72,0.0043076834544108185],[121,175,73,0.0033846574754211687],[121,175,74,0.002601269169046639],[121,175,75,0.0019794990855730777],[121,175,76,0.0015362448880711893],[121,175,77,0.0012826150205225199],[121,175,78,0.0012234724638046652],[121,175,79,0.0013572334143334055],[121,176,64,0.012491596573570778],[121,176,65,0.011452756425874065],[121,176,66,0.01027667452043675],[121,176,67,0.009021899748191361],[121,176,68,0.007730989798144342],[121,176,69,0.006430424817559333],[121,176,70,0.005150447039775768],[121,176,71,0.003923424366191004],[121,176,72,0.0027819069767094293],[121,176,73,0.0017569097986973679],[121,176,74,8.764277445559769E-4],[121,176,75,1.6419024117237256E-4],[121,176,76,-3.613388172594534E-4],[121,176,77,-6.877099548604514E-4],[121,176,78,-8.089804912435778E-4],[121,176,79,-7.259454488599744E-4],[121,177,64,0.011630477942152485],[121,177,65,0.010506189946073134],[121,177,66,0.009240722170123046],[121,177,67,0.007890308625940997],[121,177,68,0.006497566099472987],[121,177,69,0.0050910327845425825],[121,177,70,0.003703160003943794],[121,177,71,0.002368561476683685],[121,177,72,0.0011220026452186328],[121,177,73,-3.3783796551644245E-6],[121,177,74,-9.776111877811517E-4],[121,177,75,-0.0017751880789963921],[121,177,76,-0.002376107439602896],[121,177,77,-0.0027666596147585413],[121,177,78,-0.00293994980586034],[121,177,79,-0.0028961529166103253],[121,178,64,0.010698822779154252],[121,178,65,0.009485397836251632],[121,178,66,0.008127419947866227],[121,178,67,0.006678274257908664],[121,178,68,0.005180665052536052],[121,178,69,0.00366560994658607],[121,178,70,0.0021681123335166863],[121,178,71,7.252927347126222E-4],[121,178,72,-6.256821194574423E-4],[121,178,73,-0.001849432972847536],[121,178,74,-0.0029139572828509935],[121,178,75,-0.0037919672104066936],[121,178,76,-0.004461969963562434],[121,178,77,-0.004909084507814377],[121,178,78,-0.005125589065179632],[121,178,79,-0.0051111942271538265],[121,179,64,0.009734564987252408],[121,179,65,0.008429814703649119],[121,179,66,0.006977740537672668],[121,179,67,0.005428384746649974],[121,179,68,0.003824548592818671],[121,179,69,0.002200085469563159],[121,179,70,5.928287627940276E-4],[121,179,71,-9.573953643534948E-4],[121,179,72,-0.0024108903647915287],[121,179,73,-0.0037299692025561278],[121,179,74,-0.00488058442635281],[121,179,75,-0.005833701507998706],[121,179,76,-0.006566408947752334],[121,179,77,-0.0070627590663470885],[121,179,78,-0.007314333819894704],[121,179,79,-0.007320530384710319],[121,180,64,0.008775819522584907],[121,180,65,0.007379187069392279],[121,180,66,0.005833124008390923],[121,180,67,0.0041838977774968505],[121,180,68,0.0024744017971227764],[121,180,69,7.416086595797824E-4],[121,180,70,-9.736125874934145E-4],[121,180,71,-0.0026285998441477137],[121,180,72,-0.004181061526279502],[121,180,73,-0.005590992912913055],[121,180,74,-0.006822337863392304],[121,180,75,-0.007844388911039842],[121,180,76,-0.008632919161608075],[121,180,77,-0.009171039849028515],[121,180,78,-0.009449777823770643],[121,180,79,-0.009468367666516273],[121,181,64,0.00786020481811987],[121,181,65,0.00637283725954265],[121,181,66,0.00473467002644835],[121,181,67,0.00298784474741567],[121,181,68,0.0011753314508362901],[121,181,69,-6.625747770492527E-4],[121,181,70,-0.0024818418082627153],[121,181,71,-0.00423691467758184],[121,181,72,-0.005882908758624583],[121,181,73,-0.007377551691168057],[121,181,74,-0.008682866597656902],[121,181,75,-0.009766589547384436],[121,181,76,-0.010603314653483714],[121,181,77,-0.011175360617037913],[121,181,78,-0.011473352960478274],[121,181,79,-0.01149651661491498],[121,182,64,0.007024120251214198],[121,182,65,0.005448883641783201],[121,182,66,0.0037222897757594815],[121,182,67,0.0018820997517479668],[121,182,68,-2.8663390251842116E-5],[121,182,69,-0.0019662648612855734],[121,182,70,-0.003883464734611232],[121,182,71,-0.005731834650990466],[121,182,72,-0.00746396807014517],[121,182,73,-0.00903543606705659],[121,182,74,-0.010406481193966833],[121,182,75,-0.011543442352776122],[121,182,76,-0.01241990405256011],[121,182,77,-0.013017563859536018],[121,182,78,-0.01332681227812257],[121,182,79,-0.013347019727679935],[121,183,64,0.006301977868358933],[121,183,65,0.0046434164193452105],[121,183,66,0.0028338168082700727],[121,183,67,9.06412673392732E-4],[121,183,68,-0.0010957495674906842],[121,183,69,-0.003125468533846411],[121,183,70,-0.005132337026023125],[121,183,71,-0.007065150191202631],[121,183,72,-0.008874119684625032],[121,183,73,-0.01051283108967496],[121,183,74,-0.01193993713792604],[121,183,75,-0.01312057969578939],[121,183,76,-0.014027533916168674],[121,183,77,-0.014642068387858982],[121,183,78,-0.014954515548462234],[121,183,79,-0.014964547054238048],[121,184,64,0.00572538752915718],[121,184,65,0.003989628142683075],[121,184,66,0.0021040759984737424],[121,184,67,9.740557049112116E-5],[121,184,68,-0.0019873474863891724],[121,184,69,-0.0040995806332978],[121,184,70,-0.006185845446435539],[121,184,71,-0.008192333718460522],[121,184,72,-0.01006708208268296],[121,184,73,-0.011761918601783265],[121,184,74,-0.013234143920247887],[121,184,75,-0.014447940005300213],[121,184,76,-0.015375499932841786],[121,184,77,-0.015997872609190122],[121,184,78,-0.016305516752325326],[121,184,79,-0.016298558883861308],[121,185,64,0.0053222945807731865],[121,185,65,0.0035168980485836246],[121,185,66,0.0015639097256209015],[121,185,67,-5.124684889713421E-4],[121,185,68,-0.0026692490981654006],[121,185,69,-0.004852585421556912],[121,185,70,-0.007006197032649165],[121,185,71,-0.009073918118383777],[121,185,72,-0.01100187919793759],[121,185,73,-0.012740430546672466],[121,185,74,-0.014245800019875281],[121,185,75,-0.01548147839481576],[121,185,76,-0.016419325779580992],[121,185,77,-0.017040393069517372],[121,185,78,-0.01733545286305889],[121,185,79,-0.017305234674195525],[121,186,64,0.0051160691237401535],[121,186,65,0.0032498292861639255],[121,186,66,0.0012391603585459369],[121,186,67,-8.96005043713526E-4],[121,186,68,-0.0031127670541692015],[121,186,69,-0.005354279457573652],[121,186,70,-0.007561716872933761],[121,186,71,-0.009676867952634017],[121,186,72,-0.011644281261569035],[121,186,73,-0.013413153651868693],[121,186,74,-0.014938953959124791],[121,186,75,-0.01618477526650223],[121,186,76,-0.01712240940945975],[121,186,77,-0.017733137822450777],[121,186,78,-0.018008233256087143],[121,186,79,-0.01794916731482416],[121,187,64,0.005124545880524059],[121,187,65,0.0032072380399727064],[121,187,66,0.0011496080704677847],[121,187,67,-0.001032367249861312],[121,187,68,-0.0032959159328388565],[121,187,69,-0.005581516656386268],[121,187,70,-0.007828155247791834],[121,187,71,-0.009975944050284853],[121,187,72,-0.011968219802097068],[121,187,73,-0.01375338583682368],[121,187,74,-0.015286491595634099],[121,187,75,-0.016530542857265636],[121,187,76,-0.017457536512758522],[121,187,77,-0.018049214135040504],[121,187,78,-0.018297529014950187],[121,187,79,-0.01820482175115679],[121,188,64,0.005359013629938247],[121,188,65,0.003401093512500494],[121,188,66,0.0013078629651058543],[121,188,67,-9.082452718590744E-4],[121,188,68,-0.0032046264778569453],[121,188,69,-0.005519476404310848],[121,188,70,-0.00779000491141459],[121,188,71,-0.009955062139893138],[121,188,72,-0.011957177315091572],[121,188,73,-0.013744344688190791],[121,188,74,-0.015271549799779778],[121,188,75,-0.016502029659730265],[121,188,76,-0.017408260851404],[121,188,77,-0.017972669984216504],[121,188,78,-0.018188061332747987],[121,188,79,-0.01805775690906109],[121,189,64,0.0058231531238312146],[121,189,65,0.003835407682270948],[121,189,66,0.001718210451447169],[121,189,67,-5.19057080372698E-4],[121,189,68,-0.0028339938224341307],[121,189,69,-0.005162955631320831],[121,189,70,-0.007441829315018619],[121,189,71,-0.009608646195562745],[121,189,72,-0.011605552119824473],[121,189,73,-0.013380528336097501],[121,189,74,-0.014888856642316779],[121,189,75,-0.01609432261236384],[121,189,76,-0.016970151112586925],[121,189,77,-0.017499668728000423],[121,189,78,-0.01767668812296182],[121,189,79,-0.01750560976066763],[121,190,64,0.006511922357856307],[121,190,65,0.0045050737097564655],[121,190,66,0.0023754087629128035],[121,190,67,1.2980827801969966E-4],[121,190,68,-0.0021895607078087267],[121,190,69,-0.004517685768372819],[121,190,70,-0.006789602591706357],[121,190,71,-0.008942977178670155],[121,190,72,-0.010919998916410536],[121,190,73,-0.012669029047924309],[121,190,74,-0.014145998185291846],[121,190,75,-0.015315546905439278],[121,190,76,-0.016151903863289713],[121,190,77,-0.016639496254555013],[121,190,78,-0.01677328785561404],[121,190,79,-0.01655884025723202],[121,191,64,0.007410388026035599],[121,191,65,0.005394651822104345],[121,191,66,0.0032634374779724907],[121,191,67,0.0010217038397232173],[121,191,68,-0.0012886367336502596],[121,191,69,-0.003601675540108037],[121,191,70,-0.005852062136354731],[121,191,71,-0.007977537860036887],[121,191,72,-0.009920745547487678],[121,191,73,-0.011630799832287186],[121,191,74,-0.013064611929693255],[121,191,75,-0.014187963192997446],[121,191,76,-0.014976322113182824],[121,191,77,-0.015415399819679935],[121,191,78,-0.015501439524037196],[121,191,79,-0.015241235726353042],[121,192,64,0.00849250194972809],[121,192,65,0.006477101469555371],[121,192,66,0.00435419586392148],[121,192,67,0.0021273931807900886],[121,192,68,-1.6165470366270762E-4],[121,192,69,-0.0024465805616049386],[121,192,70,-0.004662074622954681],[121,192,71,-0.006746354404903298],[121,192,72,-0.008642886452751691],[121,192,73,-0.010301874315087983],[121,192,74,-0.011681506925819717],[121,192,75,-0.012748961935607683],[121,192,76,-0.013481158909202493],[121,192,77,-0.013865257679929579],[121,192,78,-0.013898897524694443],[121,192,79,-0.013590173188910159],[121,193,64,0.009719821236055026],[121,193,65,0.007712458512034616],[121,193,66,0.005606149834092062],[121,193,67,0.003403673013489941],[121,193,68,0.0011464348491727568],[121,193,69,-0.001099100721258473],[121,193,70,-0.003268016305442657],[121,193,71,-0.00529933539480391],[121,193,72,-0.007137653282506355],[121,193,73,-0.008734540111577307],[121,193,74,-0.01004971049704702],[121,193,75,-0.011051954524719777],[121,193,76,-0.011719825291464302],[121,193,77,-0.012042078514647054],[121,193,78,-0.0120178600982229],[121,193,79,-0.011656637896669281],[121,194,64,0.011040170889334434],[121,194,65,0.009046456164216125],[121,194,66,0.0069629262817513535],[121,194,67,0.004791948742543086],[121,194,68,0.002574729857094848],[121,194,69,3.7759366005478846E-4],[121,194,70,-0.0017351684459652246],[121,194,71,-0.0037036089460189023],[121,194,72,-0.005473663107557671],[121,194,73,-0.00699846587322013],[121,194,74,-0.008239441464517374],[121,194,75,-0.009167160756884937],[121,194,76,-0.009761961837279783],[121,194,77,-0.010014329506331741],[121,194,78,-0.009925029834796581],[121,194,79,-0.009504996225437164],[121,195,64,0.012386897477209358],[121,195,65,0.010409789711445417],[121,195,66,0.008352602421729183],[121,195,67,0.00621755693116657],[121,195,68,0.0040457419368437495],[121,195,69,0.0019032844947783959],[121,195,70,-1.4621883154562689E-4],[121,195,71,-0.002043927717644753],[121,195,72,-0.003737205117959744],[121,195,73,-0.005180847833134843],[121,195,74,-0.006338095578079998],[121,195,75,-0.007181413861359847],[121,195,76,-0.007693046326200467],[121,195,77,-0.007865332542915349],[121,195,78,-0.007700787578697018],[121,195,79,-0.007211940000331477],[121,196,64,0.013711443965056455],[121,196,65,0.011753227191449798],[121,196,66,0.00972517181618064],[121,196,67,0.0076295289995636905],[121,196,68,0.0055073677825846525],[121,196,69,0.0034246433930303494],[121,196,70,0.001444262749036284],[121,196,71,-3.7605486847373966E-4],[121,196,72,-0.001985132986985548],[121,196,73,-0.003339481790830767],[121,196,74,-0.004404225872431496],[121,196,75,-0.0051538114392012105],[121,196,76,-0.005572488858398518],[121,196,77,-0.005654566751061025],[121,196,78,-0.005404434171309429],[121,196,79,-0.0048363477257300945],[121,197,64,0.01500551719826951],[121,197,65,0.01307094442753607],[121,197,66,0.011076929608235154],[121,197,67,0.009025990928646215],[121,197,68,0.006959248646509759],[121,197,69,0.004942404024892088],[121,197,70,0.0030375824877430955],[121,197,71,0.0013012858443390593],[121,197,72,-2.1686923018063658E-4],[121,197,73,-0.0014752065211345402],[121,197,74,-0.002440834884096371],[121,197,75,-0.003090277932341163],[121,197,76,-0.0034098849153649923],[121,197,77,-0.0033960192201372744],[121,197,78,-0.0030550212409909887],[121,197,79,-0.002402942671326694],[121,198,64,0.016261431328250725],[121,198,65,0.014357368269293416],[121,198,66,0.012404063990679363],[121,198,67,0.010404595372617178],[121,198,68,0.008400178541868105],[121,198,69,0.006456080370852309],[121,198,70,0.004633465818723486],[121,198,71,0.002987450447129598],[121,198,72,0.001565935690620845],[121,198,73,4.0864488865623454E-4],[121,198,74,-4.5363565336548696E-4],[121,198,75,-9.996066140767143E-4],[121,198,76,-0.0012177929658033137],[121,198,77,-0.0011066652998428027],[121,198,78,-6.74542126203159E-4],[121,198,79,6.072959764620226E-5],[121,199,64,0.017469586029065856],[121,199,65,0.015604416611268474],[121,199,66,0.013699689362569245],[121,199,67,0.011759367138685],[121,199,68,0.009824784562678702],[121,199,69,0.007960519599944507],[121,199,70,0.006226533822141881],[121,199,71,0.004676336543071832],[121,199,72,0.0033559209031521564],[121,199,73,0.002302894726191464],[121,199,74,0.001545810150773824],[121,199,75,0.0011036957419797062],[121,199,76,9.857944918686893E-4],[121,199,77,0.0011915108216911828],[121,199,78,0.0017105694079792878],[121,199,79,0.0025233883712897807],[121,200,64,0.01861956581031794],[121,200,65,0.016802666264548752],[121,200,66,0.014955093958744973],[121,200,67,0.0130820440478348],[121,200,68,0.011224974070669875],[121,200,69,0.009447466108811435],[121,200,70,0.00780799168159103],[121,200,71,0.006358200564982403],[121,200,72,0.005141962245935561],[121,200,73,0.004194595404289111],[121,200,74,0.003542289147470209],[121,200,75,0.0032017194385265462],[121,200,76,0.0031798638731576827],[121,200,77,0.0034740176787924513],[121,200,78,0.004072013531091991],[121,200,79,0.004952647513239425],[121,201,64,0.017729396455634715],[121,201,65,0.017942451279488084],[121,201,66,0.01616092232550244],[121,201,67,0.014363358838118052],[121,201,68,0.012591331060370968],[121,201,69,0.01090708488732241],[121,201,70,0.009367288625423131],[121,201,71,0.008021460605035897],[121,201,72,0.006911120860334513],[121,201,73,0.006069123188950636],[121,201,74,0.0055191710257466615],[121,201,75,0.00527552029361576],[121,201,76,0.005342872123026686],[121,201,77,0.005716458063510118],[121,201,78,0.006382320147010662],[121,201,79,0.007317787907583061],[121,202,64,0.01679385984567533],[121,202,65,0.01857950147771241],[121,202,66,0.017308292502151847],[121,202,67,0.01559426210096098],[121,202,68,0.013914461848730669],[121,202,69,0.012329444536198162],[121,202,70,0.010893749876828049],[121,202,71,0.009654485562214281],[121,202,72,0.008650594222668818],[121,202,73,0.007912292110685339],[121,202,74,0.00746068263611635],[121,202,75,0.007307547625028025],[121,202,76,0.00745531891812313],[121,202,77,0.007897232671605149],[121,202,78,0.008617668475859725],[121,202,79,0.009592675167798582],[121,203,64,0.0159438877262863],[121,203,65,0.017650338216940762],[121,203,66,0.018389847707234033],[121,203,67,0.016767086187728212],[121,203,68,0.015186290191499084],[121,203,69,0.013705960228500161],[121,203,70,0.012378181115749202],[121,203,71,0.011247371339607575],[121,203,72,0.010349670590924278],[121,203,73,0.00971248928469933],[121,203,74,0.009354222872307182],[121,203,75,0.00928413351356635],[121,203,76,0.009502401436489795],[121,203,77,0.01000034807653859],[121,203,78,0.010760832856950661],[121,203,79,0.011758825249533209],[121,204,64,0.01518361041711149],[121,204,65,0.01680130032167933],[121,204,66,0.018423820310633943],[121,204,67,0.017876649964914604],[121,204,68,0.01640130187834541],[121,204,69,0.015030796866545989],[121,204,70,0.013814445926702765],[121,204,71,0.012793704807098356],[121,204,72,0.01200168783743591],[121,204,73,0.011462832876560093],[121,204,74,0.011192719849117481],[121,204,75,0.011198045119644659],[121,204,76,0.011476753731323702],[121,204,77,0.012018331319202987],[121,204,78,0.012804257296215475],[121,204,79,0.013808620706985596],[121,205,64,0.014513568044445495],[121,205,65,0.016033436791528296],[121,205,66,0.01755503641115815],[121,205,67,0.018921304231992078],[121,205,68,0.017557738802302443],[121,205,69,0.016302232638710792],[121,205,70,0.015201016670003746],[121,205,71,0.014292316220092494],[121,205,72,0.013605997626741351],[121,205,73,0.013163353951253514],[121,205,74,0.012977031897795071],[121,205,75,0.01305110185731179],[121,205,76,0.01338127278957516],[121,205,77,0.013955253459641605],[121,205,78,0.014753261353919618],[121,205,79,0.015748680418092662],[121,206,64,0.013930051643889113],[121,206,65,0.015343600499563986],[121,206,66,0.01675657389053765],[121,206,67,0.018149468750484433],[121,206,68,0.018658742436807325],[121,206,69,0.017523983126707682],[121,206,70,0.01654249916969334],[121,206,71,0.01574902075152403],[121,206,72,0.015169935876126825],[121,206,73,0.014823203434450524],[121,206,74,0.014718393904421432],[121,206,75,0.014856859247518806],[121,206,76,0.01523203338757798],[121,206,77,0.01582986448203604],[121,206,78,0.016629380026775473],[121,206,79,0.017603385674787555],[121,207,64,0.013425206998479095],[121,207,65,0.014724035686955933],[121,207,66,0.016020475075724065],[121,207,67,0.01729167542593579],[121,207,68,0.018495981667831025],[121,207,69,0.018706224879397305],[121,207,70,0.017850409431555997],[121,207,71,0.017176992084553002],[121,207,72,0.01670864734348777],[121,207,73,0.016459796321223016],[121,207,74,0.01643676783108347],[121,207,75,0.016638073499388076],[121,207,76,0.01705479794013638],[121,207,77,0.017671104882372578],[121,207,78,0.018464859995442093],[121,207,79,0.019408371020129017],[121,208,64,0.012990419911671127],[121,208,65,0.014164748415841102],[121,208,66,0.01533555736608714],[121,208,67,0.01647652266340546],[121,208,68,0.01754611501143174],[121,208,69,0.018500863411329494],[121,208,70,0.01913764764758054],[121,208,71,0.018588900657656626],[121,208,72,0.018234392728733523],[121,208,73,0.01808485527768913],[121,208,74,0.01814326513500631],[121,208,75,0.018405229003074022],[121,208,76,0.01885946615433193],[121,208,77,0.019470448742151387],[121,208,78,0.018757255838221593],[121,208,79,0.01791910040271243],[121,209,64,0.012617057557914221],[121,209,65,0.013656074061498808],[121,209,66,0.014691415785295894],[121,209,67,0.015693271524941297],[121,209,68,0.01662033917855181],[121,209,69,0.017432914211962844],[121,209,70,0.018099747196208302],[121,209,71,0.01859797251395045],[121,209,72,0.01891285056926043],[121,209,73,0.01903743113347998],[121,209,74,0.018972137293857935],[121,209,75,0.01872426958103119],[121,209,76,0.018307429956392434],[121,209,77,0.01774086543982033],[121,209,78,0.01704873125098448],[121,209,79,0.016259273422315135],[121,210,64,0.012295985252970945],[121,210,65,0.01318861631225087],[121,210,66,0.014078636412697925],[121,210,67,0.014932843325360904],[121,210,68,0.015710292191148386],[121,210,69,0.016375213788621067],[121,210,70,0.016900568580408715],[121,210,71,0.0172677155619002],[121,210,72,0.017465987438161728],[121,210,73,0.017492205018973406],[121,210,74,0.017350130726682768],[121,210,75,0.01704986119321347],[121,210,76,0.01660715899931192],[121,210,77,0.016042723680041608],[121,210,78,0.015381402184729668],[121,210,79,0.014651339036116184],[121,211,64,0.012017409483311025],[121,211,65,0.012752990805063485],[121,211,66,0.013488438811454397],[121,211,67,0.014187357639475082],[121,211,68,0.01480931052520982],[121,211,69,0.015322579939799639],[121,211,70,0.015704407434375584],[121,211,71,0.01594040029427049],[121,211,72,0.016023938625032538],[121,211,73,0.01595554076460916],[121,211,74,0.015742187347476864],[121,211,75,0.01539660439905613],[121,211,76,0.014936505885968517],[121,211,77,0.01438379618886666],[121,211,78,0.013763732999038134],[121,211,79,0.013104051167093454],[121,212,64,0.01177080751879071],[121,212,65,0.012339655940776552],[121,212,66,0.012912406994446504],[121,212,67,0.013449761027187208],[121,212,68,0.013911953752591761],[121,212,69,0.014271377319450263],[121,212,70,0.014509558042100159],[121,212,71,0.014616302740651123],[121,212,72,0.014588939289147158],[121,212,73,0.014431535440498112],[121,212,74,0.01415409668219598],[121,212,75,0.013771743899263942],[121,212,76,0.013303871637575697],[121,212,77,0.01277328777116301],[121,212,78,0.012205335381007954],[121,212,79,0.01162699764970529],[121,213,64,0.011544944856788253],[121,213,65,0.011938832056773695],[121,213,66,0.012342310047510971],[121,213,67,0.012713547549591126],[121,213,68,0.0130136239498712],[121,213,69,0.013219036929454107],[121,213,70,0.013315531770578102],[121,213,71,0.013296993509800188],[121,213,72,0.01316452513276954],[121,213,73,0.012925524617724258],[121,213,74,0.012592762001016939],[121,213,75,0.012183457629555616],[121,213,76,0.011718362750549691],[121,213,77,0.01122084356815143],[121,213,78,0.010715969869362192],[121,213,79,0.010229609287818459],[121,214,64,0.011327981818884239],[121,214,65,0.011540510208870475],[121,214,66,0.011770013605113674],[121,214,67,0.011972572226966662],[121,214,68,0.012110280993211547],[121,214,69,0.012163675273341154],[121,214,70,0.012122584335219226],[121,214,71,0.011984779590118197],[121,214,72,0.01175489719044117],[121,214,73,0.011443380420243498],[121,214,74,0.011065443456123064],[121,214,75,0.010640058036425724],[121,214,76,0.01018896453074962],[121,214,77,0.009735708849451656],[121,214,78,0.009304706574417095],[121,214,79,0.008920335627921955],[121,215,64,0.011107670690489435],[121,215,65,0.011134551885174003],[121,215,66,0.011187483446727165],[121,215,67,0.011220958665531031],[121,215,68,0.011198254937600672],[121,215,69,0.011103814354045779],[121,215,70,0.010931348470596437],[121,215,71,0.010682256858556448],[121,215,72,0.010364403295791979],[121,215,73,0.009990932799361672],[121,215,74,0.009579131460776432],[121,215,75,0.009149330974088586],[121,215,76,0.008723859669699942],[121,215,77,0.008326041783215747],[121,215,78,0.007979246599289853],[121,215,79,0.007705989015663222],[121,216,64,0.010871644858515895],[121,216,65,0.010710881041653204],[121,216,66,0.010586882551943688],[121,216,67,0.010453102152948101],[121,216,68,0.010274156755931442],[121,216,69,0.010038203780040365],[121,216,70,0.009742573272800746],[121,216,71,0.009391974578586587],[121,216,72,0.008997137532423144],[121,216,73,0.008573515373710735],[121,216,74,0.008140051698082506],[121,216,75,0.0077180136640898735],[121,216,76,0.0073298935632714595],[121,216,77,0.006998380747920109],[121,216,78,0.006745405791225939],[121,216,79,0.006591258630179919],[121,217,64,0.010607801461238827],[121,217,65,0.010259769911160262],[121,217,66,0.009960763017752821],[121,217,67,0.009663769591960523],[121,217,68,0.009334888787276572],[121,217,69,0.008965746323031482],[121,217,70,0.008556971563787062],[121,217,71,0.008116213257435558],[121,217,72,0.0076566590704994966],[121,217,73,0.007195637278166369],[121,217,74,0.006753303253614514],[121,217,75,0.006351413269759904],[121,217,76,0.006012187988499581],[121,217,77,0.005757267868602466],[121,217,78,0.005606762574578102],[121,217,79,0.005578396316153549],[121,218,64,0.010304779116866485],[121,218,65,0.009772220093637731],[121,218,66,0.009302354301430506],[121,218,67,0.008848297706078171],[121,218,68,0.008377756313344078],[121,218,69,0.00788552834549478],[121,218,70,0.007375176708902929],[121,218,71,0.006856877319432316],[121,218,72,0.006345831883147594],[121,218,73,0.005860782563274015],[121,218,74,0.005422631469577944],[121,218,75,0.0050531677461948254],[121,218,76,0.004773904867239443],[121,218,77,0.004605030577283006],[121,218,78,0.004564471737208254],[121,218,79,0.004667076156337891],[121,219,64,0.009952532341804316],[121,219,65,0.009240440484035859],[121,219,66,0.008605949305938604],[121,219,67,0.008002891009849928],[121,219,68,0.007400681746298675],[121,219,69,0.006796956586463669],[121,219,70,0.0061978103950608],[121,219,71,0.005615504134756498],[121,219,72,0.005066786925276846],[121,219,73,0.0045713387811131935],[121,219,74,0.004150337218037561],[121,219,75,0.003825150731297053],[121,219,76,0.0036161619546302773],[121,219,77,0.003541723110353386],[121,219,78,0.0036172461581793656],[121,219,79,0.003854429845697979],[121,220,64,0.009543004305017448],[121,220,65,0.008658423634917117],[121,220,66,0.007867389870495683],[121,220,67,0.007125021087734903],[121,220,68,0.006402522968755678],[121,220,69,0.005700002858003851],[121,220,70,0.005025662947541497],[121,220,71,0.004393391019876491],[121,220,72,0.0038210084407201503],[121,220,73,0.003328656482762802],[121,220,74,0.0029373243854592538],[121,220,75,0.0026675223430631264],[121,220,76,0.002538102394260855],[121,220,77,0.0025652299631576656],[121,220,78,0.002761508574769693],[121,220,79,0.0031352600403547915],[121,221,64,0.00907089958991854],[121,221,65,0.008022622181519624],[121,221,66,0.007084653265743],[121,221,67,0.0062139287686687975],[121,221,68,0.005383497416483266],[121,221,69,0.004595558261368339],[121,221,70,0.003859987826836264],[121,221,71,0.0031918418961068384],[121,221,72,0.002609546140167353],[121,221,73,0.00213324143510931],[121,221,74,0.001783287448840095],[121,221,75,0.0015789278410993479],[121,221,76,0.001537120178728213],[121,221,77,0.0016715334219674727],[121,221,78,0.0019917155891203578],[121,221,79,0.0025024339582097057],[121,222,64,0.008534558648551939],[121,222,65,0.007332726976917617],[121,222,66,0.006258541319427176],[121,222,67,0.005271230816815443],[121,222,68,0.00434571353488992],[121,222,69,0.003485898579606584],[121,222,70,0.0027029120018758606],[121,222,71,0.0020125353545759426],[121,222,72,0.00143335506074595],[121,222,73,9.85081439096393E-4],[121,222,74,6.87041103359565E-4],[121,222,75,5.568461945270912E-4],[121,222,76,6.092436421211479E-4],[121,222,77,8.55147384124452E-4],[121,222,78,0.001300856207169455],[121,222,79,0.0019474596012668563],[121,223,64,0.007936935633042099],[121,223,65,0.006592548592408849],[121,223,66,0.005393473813316035],[121,223,67,0.00430163278126289],[121,223,68,0.0032938112702722657],[121,223,69,0.0023752625409150224],[121,223,70,0.0015579639409347566],[121,223,71,8.580159278998092E-4],[121,223,72,2.9376497665099317E-4],[121,223,73,-1.1589030406420969E-4],[121,223,74,-3.530060290153021E-4],[121,223,75,-4.0190932787933766E-4],[121,223,76,-2.50320812154342E-4],[121,223,77,1.0971975618889103E-4],[121,223,78,6.811272827237471E-4],[121,223,79,0.001461247049959473],[121,224,64,0.007286681274842669],[121,224,65,0.0058110038319105686],[121,224,66,0.004498387793696015],[121,224,67,0.0033137496570993584],[121,224,68,0.0022357132745646083],[121,224,69,0.0012705446727401882],[121,224,70,4.307209948648198E-4],[121,224,71,-2.676895906267596E-4],[121,224,72,-8.069187227666141E-4],[121,224,73,-0.001169193279505479],[121,224,74,-0.0013382315230820185],[121,224,75,-0.0013005363682879719],[121,224,76,-0.0010464824809556575],[121,224,77,-5.711942147203802E-4],[121,224,78,1.2478830523870183E-4],[121,224,79,0.0010350573447644599],[121,225,64,0.006599332451732999],[121,225,65,0.005003208887442571],[121,225,66,0.003587744424754991],[121,225,67,0.0023210360058615854],[121,225,68,0.001183488506413788],[121,225,69,1.821044789889552E-4],[121,225,70,-6.70422032538242E-4],[121,225,71,-0.0013583289121936255],[121,225,72,-0.0018646807373650337],[121,225,73,-0.0021730571598356425],[121,225,74,-0.002269030975790765],[121,225,75,-0.0021414322674883175],[121,225,76,-0.001783395312558859],[121,225,77,-0.0011931852719072246],[121,225,78,-3.748019813294979E-4],[121,225,79,6.616415174832949E-4],[121,226,64,0.005898610034084252],[121,226,65,0.004191680724058671],[121,226,66,0.002682644984778041],[121,226,67,0.0013428271631209055],[121,226,68,1.5432990011169097E-4],[121,226,69,-8.753063300658447E-4],[121,226,70,-0.001733361327083772],[121,226,71,-0.0024045522215994926],[121,226,72,-0.0028729261745239106],[121,226,73,-0.0031235366590211576],[121,226,74,-0.003143899375869731],[121,226,75,-0.002925224176214404],[121,226,76,-0.0024634196926032422],[121,226,77,-0.0017598677071541016],[121,226,78,-8.219646120023966E-4],[121,226,79,3.36572361010184E-4],[121,227,64,0.005220935011006451],[121,227,65,0.003411537666063807],[121,227,66,0.0018166644874285473],[121,227,67,4.1079586858168687E-4],[121,227,68,-8.223667021909464E-4],[121,227,69,-0.001874866072358583],[121,227,70,-0.0027340569870908773],[121,227,71,-0.003385212499217522],[121,227,72,-0.003813411955916854],[121,227,73,-0.0040052032617854],[121,227,74,-0.003950035458759171],[121,227,75,-0.0036414579999075243],[121,227,76,-0.0030780834336174424],[121,227,77,-0.002264310554635064],[121,227,78,-0.0012108054159837465],[121,227,79,6.52620720537986E-5],[121,228,64,0.004620928993548089],[121,228,65,0.002719160237205423],[121,228,66,0.001047445138725657],[121,228,67,-4.16591110065964E-4],[121,228,68,-0.0016877198176837205],[121,228,69,-0.002757706662325026],[121,228,70,-0.0036141035942022616],[121,228,71,-0.004242836124840134],[121,228,72,-0.00463008120142134],[121,228,73,-0.004763911201125997],[121,228,74,-0.004635700094253006],[121,228,75,-0.004241288173029576],[121,228,76,-0.0035819020935665496],[121,228,77,-0.0026648273288050546],[121,228,78,-0.001503830477570712],[121,228,79,-1.1932921590291091E-4],[121,229,64,0.0041452936765653085],[121,229,65,0.0021635973629220958],[121,229,66,4.258822302754571E-4],[121,229,67,-0.0010870120231069383],[121,229,68,-0.0023883658102352933],[121,229,69,-0.003469835181960506],[121,229,70,-0.004319327846490207],[121,229,71,-0.004923556877077575],[121,229,72,-0.0052698989340225705],[121,229,73,-0.005348012145505631],[121,229,74,-0.0051512097308033045],[121,229,75,-0.004677585806724891],[121,229,76,-0.003930890177318889],[121,229,77,-0.0029211492653510394],[121,229,78,-0.0016650306987134455],[121,229,79,-1.859494125949196E-4],[121,230,64,0.0038265525867611015],[121,230,65,0.0017791272182842537],[121,230,66,-1.2389756029044701E-5],[121,230,67,-0.0015638329669117328],[121,230,68,-0.0028869983452296057],[121,230,69,-0.003973603085041632],[121,230,70,-0.004812081245102485],[121,230,71,-0.0053900850071347765],[121,230,72,-0.005696310324692571],[121,230,73,-0.005722077894390907],[121,230,74,-0.005462665600023212],[121,230,75,-0.004918388943504169],[121,230,76,-0.004095426341398299],[121,230,77,-0.003006386529291443],[121,230,78,-0.0016706156753392546],[121,230,79,-1.1424215572737087E-4],[121,231,64,0.003684487307730944],[121,231,65,0.0015866873741344312],[121,231,66,-2.4556963322857906E-4],[121,231,67,-0.0018246715262025882],[121,231,68,-0.003160910559679488],[121,231,69,-0.004246218392079742],[121,231,70,-0.005069717865011155],[121,231,71,-0.00562014995969262],[121,231,72,-0.005887651295367901],[121,231,73,-0.005865285054002709],[121,231,74,-0.00555032158473826],[121,231,75,-0.004945265307585065],[121,231,76,-0.004058624902744853],[121,231,77,-0.0029054241369855602],[121,231,78,-0.001507451038544923],[121,231,79,1.067565161848147E-4],[121,232,64,0.003727506169175798],[121,232,65,0.001595237788882855],[121,232,66,-2.6432732069866946E-4],[121,232,67,-0.0018600226482711419],[121,232,68,-0.0032005949467049364],[121,232,69,-0.004278309295730862],[121,232,70,-0.00508311519388431],[121,232,71,-0.005604975637042466],[121,232,72,-0.005835578911523095],[121,232,73,-0.005769804561680171],[121,232,74,-0.005406939926375815],[121,232,75,-0.004751644003457106],[121,232,76,-0.0038146557664939453],[121,232,77,-0.002613244420783879],[121,232,78,-0.0011713994428898962],[121,232,79,4.802414035379652E-4],[121,233,64,0.003953942768634748],[121,233,65,0.0018030536761326535],[121,233,66,-7.051024000705895E-5],[121,233,67,-0.001671950270818474],[121,233,68,-0.0030084047170223847],[121,233,69,-0.004072543141041658],[121,233,70,-0.004855242149605164],[121,233,71,-0.005347792392608525],[121,233,72,-0.005543525742414155],[121,233,73,-0.005439200134226967],[121,233,74,-0.005036138641185439],[121,233,75,-0.004341119717270055],[121,233,76,-0.0033670159004560002],[121,233,77,-0.0021331786250036416],[121,233,78,-6.655671423166806E-4],[121,233,79,0.0010033801088388593],[121,234,64,0.004353283664381329],[121,234,65,0.0021989476444727483],[121,234,66,3.2408117463995445E-4],[121,234,67,-0.0012728451476561684],[121,234,68,-0.002597276981535949],[121,234,69,-0.0036423010056894673],[121,234,70,-0.0043997743613936055],[121,234,71,-0.004862385676686593],[121,234,72,-0.0050251779286405495],[121,234,73,-0.0048868351777613065],[121,234,74,-0.00445072996481211],[121,234,75,-0.0037257285104922884],[121,234,76,-0.0027267512078834465],[121,234,77,-0.0014750862437451107],[121,234,78,1.545475394094831E-6],[121,234,79,0.0016691755860172952],[121,235,64,0.004907324485631711],[121,235,65,0.0027634204178143443],[121,235,66,8.988482368387986E-4],[121,235,67,-6.842493989723662E-4],[121,235,68,-0.0019895181814024634],[121,235,69,-0.0030104081888805184],[121,235,70,-0.0037397568853023582],[121,235,71,-0.004171681346134186],[121,235,72,-0.004302976789158991],[121,235,73,-0.004134287792874517],[121,235,74,-0.0036710492448017097],[121,235,75,-0.0029241943988689996],[121,235,76,-0.001910627756768107],[121,235,77,-6.53460820169183E-4],[121,235,78,8.179909139522046E-4],[121,235,79,0.0024684510269488273],[121,236,64,0.00559125361567401],[121,236,65,0.0034697393586008768],[121,236,66,0.0016254783419806114],[121,236,67,6.425160558141461E-5],[121,236,68,-0.0012156522743298783],[121,236,69,-0.002207921002593285],[121,236,70,-0.0029063146140012436],[121,236,71,-0.003306367744170954],[121,236,72,-0.0034066439004395562],[121,236,73,-0.0032097736161362067],[121,236,74,-0.0027232738147697673],[121,236,75,-0.0019601460307361145],[121,236,76,-9.392514515050392E-4],[121,236,77,3.145389395446161E-4],[121,236,78,0.0017704205331685206],[121,236,79,0.0033919586932286802],[121,237,64,0.006374662515936507],[121,237,65,0.004284943933066673],[121,237,66,0.0024689580971533156],[121,237,67,9.360693429556735E-4],[121,237,68,-3.1333226759302547E-4],[121,237,69,-0.001272970344753327],[121,237,70,-0.0019374107327566504],[121,237,71,-0.0023035547561322694],[121,237,72,-0.0023717296890810864],[121,237,73,-0.0021465763574543923],[121,237,74,-0.0016377315128271995],[121,237,75,-8.603029182014418E-4],[121,237,76,1.648646173379981E-4],[121,237,77,0.0014111337244576078],[121,237,78,0.002846230663259937],[121,237,79,0.004432614124006864],[121,238,64,0.007222481675406517],[121,238,65,0.005170777178496322],[121,238,66,0.003388514392529427],[121,238,67,0.0018885834468534925],[121,238,68,6.736842315499793E-4],[121,238,69,-2.496626199689981E-4],[121,238,70,-8.766536678003655E-4],[121,238,71,-0.0012054701516174668],[121,238,72,-0.0012381856958151643],[121,238,73,-9.814860227328518E-4],[121,238,74,-4.471986510089847E-4],[121,238,75,3.4736916644994003E-4],[121,238,76,0.0013792857358087306],[121,238,77,0.002620044648252776],[121,238,78,0.0040358098776194186],[121,238,79,0.005587856936524897],[121,239,64,0.008090373873059473],[121,239,65,0.006080013653372813],[121,239,66,0.004334739574210231],[121,239,67,0.0028709145041388687],[121,239,68,0.0016937975017300828],[121,239,69,8.105098125055916E-4],[121,239,70,2.254578126580558E-4],[121,239,71,-6.06950172787352E-5],[121,239,72,-5.1735371947702054E-5],[121,239,73,2.435646022088435E-4],[121,239,74,8.110856989172543E-4],[121,239,75,0.0016311751253943302],[121,239,76,0.0026786362203076123],[121,239,77,0.003922895335602507],[121,239,78,0.00532834656502302],[121,239,79,0.0068548747757860365],[121,240,64,0.008915564012029871],[121,240,65,0.0069501458071362255],[121,240,66,0.0052455901119884225],[121,240,67,0.003821626259141094],[121,240,68,0.0026863220663445307],[121,240,69,0.001847811448635159],[121,240,70,0.001310400336780997],[121,240,71,0.0010737861807609919],[121,240,72,0.0011325647092314838],[121,240,73,0.0014758921043729488],[121,240,74,0.002087303888618948],[121,240,75,0.002944691592451647],[121,240,76,0.004020438049241039],[121,240,77,0.005281711945802137],[121,240,78,0.006690922047986553],[121,240,79,0.008206331321388758],[121,241,64,0.009644437785833317],[121,241,65,0.007728237366784204],[121,241,66,0.006068797833504749],[121,241,67,0.004689032695959442],[121,241,68,0.0036000438050355034],[121,241,69,0.0028114242739673465],[121,241,70,0.0023277294944230986],[121,241,71,0.002147945836571492],[121,241,72,0.0022652200125319174],[121,241,73,0.002666727151623765],[121,241,74,0.003333678511113989],[121,241,75,0.004241469544839912],[121,241,76,0.005359968855555216],[121,241,77,0.006653948366732275],[121,241,78,0.008083654867703191],[121,241,79,0.009605522914407593],[121,242,64,0.01023819749693145],[121,242,65,0.008375707434429055],[121,242,66,0.0067659267310045575],[121,242,67,0.005434691733916596],[121,242,68,0.00439632543170653],[121,242,69,0.0036623421414360684],[121,242,70,0.0032379359545848924],[121,242,71,0.00312169389070644],[121,242,72,0.0033055511181026803],[121,242,73,0.0037748685162744162],[121,242,74,0.00450863313552943],[121,242,75,0.005479781933482263],[121,242,76,0.006655648998020393],[121,242,77,0.007998536303097003],[121,242,78,0.00946640788910348],[121,242,79,0.011013707215350653],[121,243,64,0.010671285801586734],[121,243,65,0.008866824366259204],[121,243,66,0.0073109509840720574],[121,243,67,0.006032085744571275],[121,243,68,0.005047910418112225],[121,243,69,0.004372319569288867],[121,243,70,0.004011560136253276],[121,243,71,0.003964178035729661],[121,243,72,0.004221197050760873],[121,243,73,0.004766404437229119],[121,243,74,0.005576743448443388],[121,243,75,0.006622812826127096],[121,243,76,0.007869473161368186],[121,243,77,0.009276559891805218],[121,243,78,0.010799702573008248],[121,243,79,0.01239124994425603],[121,244,64,0.01092986148248751],[121,244,65,0.009187249390405737],[121,244,66,0.00768887960461145],[121,244,67,0.006465344199434569],[121,244,68,0.005537763200868129],[121,244,69,0.004922850023650236],[121,244,70,0.00462832898545868],[121,244,71,0.004653098402127008],[121,244,72,0.004987625510901967],[121,244,73,0.005614433610258859],[121,244,74,0.006508681278972162],[121,244,75,0.007638833409273597],[121,244,76,0.00896742366793518],[121,244,77,0.010451907886140902],[121,244,78,0.012045607775389362],[121,244,79,0.013698744273808886],[121,245,64,0.011010327988056786],[121,245,65,0.009332630634666248],[121,245,66,0.007894428293082898],[121,245,67,0.0067280089318677095],[121,245,68,0.005857946027314585],[121,245,69,0.005304173898774474],[121,245,70,0.005076314922469231],[121,245,71,0.005174036639427002],[121,245,72,0.005587649778725679],[121,245,73,0.006298785446202929],[121,245,74,0.00728115103090848],[121,245,75,0.008501364274651103],[121,245,76,0.009919864850591618],[121,245,77,0.011491902705979417],[121,245,78,0.01316860234301132],[121,245,79,0.014898102141659333],[121,246,64,0.010917915602423682],[121,246,65,0.00930724835270935],[121,246,66,0.00793073920416686],[121,246,67,0.0068218425959801435],[121,246,68,0.006008532883560669],[121,246,69,0.005514316482604779],[121,246,70,0.005351117082303797],[121,246,71,0.00551979934938738],[121,246,72,0.006010952086553075],[121,246,73,0.006805739239429192],[121,246,74,0.007876818026071191],[121,246,75,0.009189323374364965],[121,246,76,0.010701917772213842],[121,246,77,0.01236790556393662],[121,246,78,0.014136410664968796],[121,246,79,0.0159536166168521],[121,247,64,0.010665318234787374],[121,247,65,0.009122712254884613],[121,247,66,0.0078081494292394],[121,247,67,0.006755681005101664],[121,247,68,0.005996561036831894],[121,247,69,0.005558156271227431],[121,247,70,0.0054550650328386956],[121,247,71,0.005689775872236868],[121,247,72,0.006253613279206141],[121,247,73,0.007127741893384183],[121,247,74,0.00828422824536908],[121,247,75,0.00968715898791493],[121,247,76,0.011293814512122967],[121,247,77,0.01305589678832866],[121,247,78,0.014920810226658457],[121,247,79,0.016832994318980832],[121,248,64,0.010271385940391528],[121,248,65,0.008796711966201493],[121,248,66,0.007543009111468761],[121,248,67,0.006544330131840753],[121,248,68,0.005835020813337497],[121,248,69,0.005446524072712905],[121,248,70,0.005396445217366065],[121,248,71,0.005689310472986702],[121,248,72,0.006317648609693953],[121,248,73,0.0072631238565596164],[121,248,74,0.008497718938046612],[121,248,75,0.009984967004325116],[121,248,76,0.011681231175020101],[121,248,77,0.013537030373457397],[121,248,78,0.015498410096809205],[121,248,79,0.01750835674760221],[121,249,64,0.009759874406623141],[121,249,65,0.008351821748537464],[121,249,66,0.007156550216177217],[121,249,67,0.006207508650142666],[121,249,68,0.005541884321658841],[121,249,69,0.005195333418204209],[121,249,70,0.005188750432216283],[121,249,71,0.005529089022571683],[121,249,72,0.006210549546765018],[121,249,73,0.0072158129307863215],[121,249,74,0.008517319555368462],[121,249,75,0.01007859178388633],[121,249,76,0.011855598713354077],[121,249,77,0.01379816169640933],[121,249,78,0.015851399159741934],[121,249,79,0.01795720923396516],[121,250,64,0.00915825275588],[121,250,65,0.007814360735761207],[121,250,66,0.0066738070834844],[121,250,67,0.005768836996352131],[121,250,68,0.005139173919487419],[121,250,69,0.004824742875436893],[121,250,70,0.0048499527146218325],[121,250,71,0.005224540317837315],[121,250,72,0.00594483150218241],[121,250,73,0.006995045624513691],[121,250,74,0.008348642452805236],[121,250,75,0.009969709826791628],[121,250,76,0.011814390590122114],[121,250,77,0.01383234724767154],[121,250,78,0.015968262784459848],[121,250,79,0.018163376077638006],[121,251,64,0.00849657113073097],[121,251,65,0.007213310038186949],[121,251,66,0.006122589991213138],[121,251,67,0.005254874020225325],[121,251,68,0.004652071307704265],[121,251,69,0.004358350936601208],[121,251,70,0.004401800080984661],[121,251,71,0.0047952522349280465],[121,251,72,0.005537587418780493],[121,251,73,0.006615075736707069],[121,251,74,0.00800276279478969],[121,251,75,0.00966589544052618],[121,251,76,0.011561386246179459],[121,251,77,0.013639315130818423],[121,251,78,0.01584446649988667],[121,251,79,0.018117900277531088],[121,252,64,0.0078063896354121165],[121,252,65,0.006579288175555889],[121,252,66,0.005532513052614069],[121,252,67,0.0046942023872507625],[121,252,68,0.00410806821955515],[121,252,69,0.003822424228007614],[121,252,70,0.003869137620703633],[121,252,71,0.004264402962212797],[121,252,72,0.005010047195395321],[121,252,73,0.006094879872273451],[121,252,74,0.007496087088530638],[121,252,75,0.009180667564573072],[121,252,76,0.011106909274624065],[121,252,77,0.013225904994765756],[121,252,78,0.015483105122050077],[121,252,79,0.017819906110581117],[121,253,64,0.00711977030971146],[121,253,65,0.00594358639447624],[121,253,66,0.004934077864633664],[121,253,67,0.004116563979618087],[121,253,68,0.0035361597532704014],[121,253,69,0.003245159862787456],[121,253,70,0.003279253515295595],[121,253,71,0.0036582076112586163],[121,253,72,0.004387142961548257],[121,253,73,0.005457859607591521],[121,253,74,0.006850209768426623],[121,253,75,0.008533516880160179],[121,253,76,0.010468039145159286],[121,253,77,0.012606475971114113],[121,253,78,0.014895515654769473],[121,253,79,0.01727742265249606],[121,254,64,0.00646833390552945],[121,254,65,0.00533726551574575],[121,254,66,0.004357814407097372],[121,254,67,0.0035520466237262084],[121,254,68,0.0029660814730659633],[121,254,69,0.0026559828291896656],[121,254,70,0.0026612506162258984],[121,254,71,0.003005380557242728],[121,254,72,0.0036970802531963425],[121,254,73,0.004731540044834851],[121,254,74,0.006091757250518036],[121,254,75,0.007749912304726901],[121,254,76,0.009668795263939932],[121,254,77,0.01180328109939013],[121,254,78,0.01410185216095202],[121,254,79,0.016508166173946345],[121,255,64,0.005882383321561591],[121,255,65,0.004790316037993235],[121,255,66,0.0038334807701563087],[121,255,67,0.0030303235462186525],[121,255,68,0.0024275914751731033],[121,255,69,0.0020848793752309587],[121,255,70,0.0020454442771575976],[121,255,71,0.002336613913278289],[121,255,72,0.0029709151808352562],[121,255,73,0.003947264516403917],[121,255,74,0.005252218877379382],[121,255,75,0.006861285945887172],[121,255,76,0.008740292099729017],[121,255,77,0.01084680663506302],[121,255,78,0.013131620677482829],[121,255,79,0.015540279182976832],[121,256,64,0.005390095626304651],[121,256,65,0.004330883295343344],[121,256,66,0.0033893233554719436],[121,256,67,0.0025799470271205484],[121,256,68,0.0019497986814859347],[121,256,69,0.0015617674148199461],[121,256,70,0.0014627871967316155],[121,256,71,0.001684072596127626],[121,256,72,0.0022421377226599444],[121,256,73,0.0031398852260221682],[121,256,74,0.004367764178148586],[121,256,75,0.005904995568315887],[121,256,76,0.007720864055756058],[121,256,77,0.00977607454966383],[121,256,78,0.01202417212355332],[121,256,79,0.014413023720848045],[121,257,64,0.005016787968573479],[121,257,65,0.003984562162216804],[121,257,66,0.0030514012798004966],[121,257,67,0.0022276992601833277],[121,257,68,0.0015605397254133623],[121,257,69,0.0011159057883787112],[121,257,70,9.443227211151631E-4],[121,257,71,0.0010809072227106417],[121,257,72,0.0015462623648804282],[121,257,73,0.0023474512348614497],[121,257,74,0.0034790482456724158],[121,257,75,0.004924266973281892],[121,257,76,0.006656163279080011],[121,257,77,0.008638912385348826],[121,257,78,0.010829158492398027],[121,257,79,0.013177435459821444],[121,258,64,0.004784756584982213],[121,258,65,0.003774281065512005],[121,258,66,0.002843516898015819],[121,258,67,0.001998564552255442],[121,258,68,0.0012863838507175633],[121,258,69,7.759212828500015E-4],[121,258,70,5.212227880023728E-4],[121,258,71,5.612919645162788E-4],[121,258,72,9.20855702298816E-4],[121,258,73,0.0016112170297960908],[121,258,74,0.002631194294423281],[121,258,75,0.003968145669545134],[121,258,76,0.005599077864159131],[121,258,77,0.007491837804684447],[121,258,78,0.009606385963018734],[121,258,79,0.011896149922522537],[121,259,64,0.0047230771438305725],[121,259,65,0.003730531682426866],[121,259,66,0.0027978987195836193],[121,259,67,0.001926856139586578],[121,259,68,0.0011640406957602772],[121,259,69,5.811392820286773E-4],[121,259,70,2.355436713259682E-4],[121,259,71,1.7001889033400723E-4],[121,259,72,4.1333868887684204E-4],[121,259,73,9.810161889044823E-4],[121,259,74,0.0018761289795872413],[121,259,75,0.0030902377843460916],[121,259,76,0.004604397693604472],[121,259,77,0.0063902608349116615],[121,259,78,0.008411269241255138],[121,259,79,0.0106239365801556],[121,260,64,0.004864664316118285],[121,260,65,0.0038880556730319367],[121,260,66,0.0029514692801224703],[121,260,67,0.002052042169127069],[121,260,68,0.0012357298528039783],[121,260,69,5.764832482703762E-4],[121,260,70,1.3464639773916792E-4],[121,260,71,-4.356194272990909E-5],[121,260,72,7.44550110465804E-5],[121,260,73,5.082778145795437E-4],[121,260,74,0.0012651783811395425],[121,260,75,0.002340928671287647],[121,260,76,0.003720709599194075],[121,260,77,0.00538011913281796],[121,260,78,0.007286278439441285],[121,260,79,0.009399034814879904],[121,261,64,0.0052339863350320025],[121,261,65,0.004272908073925736],[121,261,66,0.0033321981058920852],[121,261,67,0.0024043698853337993],[121,261,68,0.00153421861129151],[121,261,69,7.972710799489589E-4],[121,261,70,2.5624530244304516E-4],[121,261,71,-3.9649769471314756E-5],[121,261,72,-5.434589432732389E-5],[121,261,73,2.3556164463550206E-4],[121,261,74,8.413996255022404E-4],[121,261,75,0.00176311027117494],[121,261,76,0.0029900516681798106],[121,261,77,0.004501904308646582],[121,261,78,0.006269682704014223],[121,261,79,0.008256850891837838],[121,262,64,0.005846829689332264],[121,262,65,0.004902218802148557],[121,262,66,0.003958851402457027],[121,262,67,0.003004590178121734],[121,262,68,0.002082511021540471],[121,262,69,0.0012688655973488092],[121,262,70,6.2802262958908E-4],[121,262,71,2.1159266396177668E-4],[121,262,72,5.8658316873190135E-5],[121,262,73,1.9611882991511765E-4],[121,262,74,6.391486462926524E-4],[121,262,75,0.0013917695476416902],[121,262,76,0.0024475357188751975],[121,262,77,0.0037903309465818517],[121,262,78,0.00539527700465105],[121,262,79,0.007229752140689639],[121,263,64,0.006710887671546966],[121,263,65,0.005784803320592164],[121,263,66,0.004841615889142617],[121,263,67,0.0038645792464727527],[121,263,68,0.002894447491904146],[121,263,69,0.0020072297959795385],[121,263,70,0.0012681160133037122],[121,263,71,7.304353053346506E-4],[121,263,72,4.3574519242268583E-4],[121,263,73,4.140393764597332E-4],[121,263,74,6.840742066963628E-4],[121,263,75,0.0012538134736082545],[121,263,76,0.002120991034704294],[121,263,77,0.0032737906033181233],[121,263,78,0.00469164186831971],[121,263,79,0.0063461319608362505],[121,264,64,0.007826633415377262],[121,264,65,0.006922056054362315],[121,264,66,0.005983001239821673],[121,264,67,0.004988232519907942],[121,264,68,0.003975568086682505],[121,264,69,0.003019734882740855],[121,264,70,0.0021858454105824366],[121,264,71,0.001528200751824678],[121,264,72,0.0010902355842184132],[121,264,73,9.045853998629475E-4],[121,264,74,9.93275957023424E-4],[121,264,75,0.0013680348022714365],[121,264,76,0.002030724510028542],[121,264,77,0.002973897104460695],[121,264,78,0.004181468955676539],[121,264,79,0.005629515279856038],[121,265,64,0.00918847836566626],[121,265,65,0.008309127407073971],[121,265,66,0.0073790218759882745],[121,265,67,0.006372631482856968],[121,265,68,0.0053242400791797435],[121,265,69,0.004306221574095411],[121,265,70,0.003382679909273402],[121,265,71,0.002608108345151092],[121,265,72,0.00202718793230115],[121,265,73,0.0016747105861770317],[121,265,74,0.0015756269614835576],[121,265,75,0.0017452191203434521],[121,265,76,0.0021893977916847356],[121,265,77,0.0029051238293358213],[121,265,78,0.0038809532948113107],[121,265,79,0.005097705419248364],[121,266,64,0.010786216761175232],[121,266,65,0.009936384872417504],[121,266,66,0.009020658516986517],[121,266,67,0.00800948372057985],[121,266,68,0.0069330500041972784],[121,266,69,0.00586031484286731],[121,266,70,0.004853444560386224],[121,266,71,0.003966342540952902],[121,266,72,0.0032442988766387603],[121,266,73,0.002723766037886281],[121,266,74,0.0024322609313753006],[121,266,75,0.002388393502683984],[121,266,76,0.00260202183881756],[121,266,77,0.0030745335293574406],[121,266,78,0.003799252856311297],[121,266,79,0.004761973203265471],[121,267,64,0.012606756369549789],[121,267,65,0.011791158405054987],[121,267,66,0.010895599573437529],[121,267,67,0.009886836200886463],[121,267,68,0.008790460165644932],[121,267,69,0.007670992028596825],[121,267,70,0.006587767130005961],[121,267,71,0.005593345451285563],[121,267,72,0.004733010123474243],[121,267,73,0.004044392484182376],[121,267,74,0.003557224220181736],[121,267,75,0.0032932169224878624],[121,267,76,0.0032660691741941295],[121,267,77,0.003481601089916184],[121,267,78,0.003938016031086278],[121,267,79,0.004626289035035688],[121,268,64,0.01463613539482978],[121,268,65,0.013859769905558548],[121,268,66,0.012990262172891155],[121,268,67,0.011991061522988017],[121,268,68,0.010882729287355758],[121,268,69,0.0097244039750405],[121,268,70,0.008571764431642377],[121,268,71,0.007475333241859947],[121,268,72,0.0064798212929690355],[121,268,73,0.005623598651522645],[121,268,74,0.004938292468955789],[121,268,75,0.0044485124192589565],[121,268,76,0.004171703962214701],[121,268,77,0.004118129520307696],[121,268,78,0.004290977457874736],[121,268,79,0.004686598558875422],[121,269,64,0.01686182518040946],[121,269,65,0.01612984638640763],[121,269,66,0.015292092331223488],[121,269,67,0.014309116603080431],[121,269,68,0.013196096748263584],[121,269,69,0.01200594862704746],[121,269,70,0.01078996768451864],[121,269,71,0.009596035866494478],[121,269,72,0.008467808291712217],[121,269,73,0.007444025422785092],[121,269,74,0.006557951637404445],[121,269,75,0.005836940887454354],[121,269,76,0.005302129921811936],[121,269,77,0.004968259340032046],[121,269,78,0.004843622540372601],[121,269,79,0.004930142428199094],[121,270,64,0.019275318054397757],[121,270,65,0.018592916119905156],[121,270,66,0.01779214352916264],[121,270,67,0.01683107302553533],[121,270,68,0.015719229616647065],[121,270,69,0.014502596307442134],[121,270,70,0.01322748614684208],[121,270,71,0.011938659439906768],[121,270,72,0.010678346587099678],[121,270,73,0.009485395260906755],[121,270,74,0.008394543016874707],[121,270,75,0.007435816221528555],[121,270,76,0.006634055965953959],[121,270,77,0.006008571422453123],[121,270,78,0.005572920894064107],[121,270,79,0.005334820604339579],[121,271,64,0.020962369449869518],[121,271,65,0.02122672675113194],[121,271,66,0.02046771044051629],[121,271,67,0.0195333420432751],[121,271,68,0.01842732099405556],[121,271,69,0.017188137365304636],[121,271,70,0.015856664163399103],[121,271,71,0.014474188628158021],[121,271,72,0.013081263849625822],[121,271,73,0.011716683454347428],[121,271,74,0.010416580665266793],[121,271,75,0.009213652824057417],[121,271,76,0.00813651224926868],[121,271,77,0.007209164089469263],[121,271,78,0.006450611618997346],[121,271,79,0.005874589216423601],[121,272,64,0.018343081531780776],[121,272,65,0.01893177151755114],[121,272,66,0.019662360741660324],[121,272,67,0.020580433790476967],[121,272,68,0.02122900014397121],[121,272,69,0.01997389158951539],[121,272,70,0.0185924923679361],[121,272,71,0.01712232341570299],[121,272,72,0.015602022443572991],[121,272,73,0.014070142807744431],[121,272,74,0.012564075687124721],[121,272,75,0.011119096868115184],[121,272,76,0.009767539221106824],[121,272,77,0.00853809173580069],[121,272,78,0.007455225766866796],[121,272,79,0.0065387489287491215],[121,273,64,0.015754353744055812],[121,273,65,0.016277500560358683],[121,273,66,0.016954634494507504],[121,273,67,0.01783236025721316],[121,273,68,0.018918622355208792],[121,273,69,0.0201909853381329],[121,273,70,0.021342023366696505],[121,273,71,0.01979543769572836],[121,273,72,0.018159499832976645],[121,273,73,0.016472293575006052],[121,273,74,0.014772248488427337],[121,273,75,0.013097010905797056],[121,273,76,0.011482440001661948],[121,273,77,0.009961730023429044],[121,273,78,0.008564659532149395],[121,273,79,0.0073169682904435885],[121,274,64,0.013287359600896196],[121,274,65,0.01374064611464846],[121,274,66,0.014358698444324422],[121,274,67,0.0151885427910622],[121,274,68,0.01624366001007217],[121,274,69,0.017509828476829557],[121,274,70,0.0189641995707587],[121,274,71,0.020577475037263496],[121,274,72,0.02067836321815731],[121,274,73,0.018854061185074312],[121,274,74,0.01697926195132739],[121,274,75,0.015093681605573785],[121,274,76,0.0132363914179232],[121,274,77,0.011444770082342877],[121,274,78,0.009753582810773424],[121,274,79,0.008194188108572344],[121,275,64,0.011021319044814655],[121,275,65,0.011401246767279796],[121,275,66,0.01195498705807201],[121,275,67,0.012729375310235295],[121,275,68,0.013743085173903987],[121,275,69,0.014990015784497475],[121,275,70,0.016453504849125156],[121,275,71,0.018108550782461652],[121,275,72,0.01992363005945165],[121,275,73,0.02115117807268601],[121,275,74,0.01912668653834933],[121,275,75,0.017057339254377277],[121,275,76,0.014985008104236242],[121,275,77,0.012950816813981936],[121,275,78,0.010994061023742396],[121,275,79,0.009151256113016057],[121,276,64,0.009023653637018911],[121,276,65,0.009327744447402017],[121,276,66,0.00981264417576549],[121,276,67,0.010524396906665864],[121,276,68,0.011486423232025292],[121,276,69,0.012700484918215805],[121,276,70,0.014155997961845839],[121,276,71,0.015832284621359972],[121,276,72,0.017700532044241116],[121,276,73,0.01972563351795199],[121,276,74,0.021160056708181975],[121,276,75,0.018938767932594337],[121,276,76,0.016684996334466892],[121,276,77,0.01444307569027771],[121,276,78,0.012256263922138064],[121,276,79,0.010165646834344828],[121,277,64,0.007350054750983046],[121,277,65,0.007577000896989032],[121,277,66,0.007989480083168316],[121,277,67,0.00863217957497506],[121,277,68,0.009532733840712045],[121,277,69,0.010700350819068886],[121,277,70,0.012130295897427262],[121,277,71,0.013806158404680129],[121,277,72,0.0157019342262916],[121,277,73,0.017783991810176054],[121,277,74,0.020012919097360363],[121,277,75,0.020692006278138792],[121,277,76,0.018294897390344612],[121,277,77,0.01588512774759502],[121,277,78,0.013509260974907076],[121,277,79,0.011212266206429379],[121,278,64,0.006044463840937998],[121,278,65,0.0061942249243958575],[121,278,66,0.0065318386771750885],[121,278,67,0.007100125479005612],[121,278,68,0.007930329821632809],[121,278,69,0.009038541735426711],[121,278,70,0.010425530816512448],[121,278,71,0.01207901175624636],[121,278,72,0.013975831207628823],[121,278,73,0.016084038632034427],[121,278,74,0.018364838527876837],[121,278,75,0.020774421663426263],[121,278,76,0.019775920219091227],[121,278,77,0.01724179243189462],[121,278,78,0.014721902905946422],[121,278,79,0.012264340378238361],[121,279,64,0.005138963983253367],[121,279,65,0.005212809692213208],[121,279,66,0.005474374039587277],[121,279,67,0.005964173148421971],[121,279,68,0.006716404491614044],[121,279,69,0.007753343250133011],[121,279,70,0.009080809940177376],[121,279,71,0.010690420080432366],[121,279,72,0.012561853733538209],[121,279,73,0.014665009427874505],[121,279,74,0.016962039756073233],[121,279,75,0.019409266168031014],[121,279,76,0.021092863090574916],[121,279,77,0.018480077916582016],[121,279,78,0.015863788919749624],[121,279,79,0.013294388199108916],[121,280,64,0.004653582004467587],[121,280,65,0.004654079403356509],[121,280,66,0.004839735843191369],[121,280,67,0.005248412100641941],[121,280,68,0.005916567004595757],[121,280,69,0.00687184997752924],[121,280,70,0.008124582904642791],[121,280,71,0.00966998002576882],[121,280,72,0.01149047737034009],[121,280,73,0.013557946776706381],[121,280,74,0.015835791716034695],[121,280,75,0.01828092236313378],[121,280,76,0.020845607585644667],[121,280,77,0.01957021848789499],[121,280,78,0.016906319135377372],[121,280,79,0.01427527682887168],[121,281,64,0.004596000614937408],[121,281,65,0.004526944851240674],[121,281,66,0.004638163111416814],[121,281,67,0.004964605475247691],[121,281,68,0.005544285368313734],[121,281,69,0.006409324675109405],[121,281,70,0.007573916413964975],[121,281,71,0.0090365023254937],[121,281,72,0.010782138873969132],[121,281,73,0.012784747840104128],[121,281,74,0.015009248679342278],[121,281,75,0.017413570042611154],[121,281,76,0.01995053808646688],[121,281,77,0.020486798574575932],[121,281,78,0.01782383173702594],[121,281,79,0.015181359918796851],[121,282,64,0.004961180061595121],[121,282,65,0.004827467390932445],[121,282,66,0.004866985939245712],[121,282,67,0.005111620348876465],[121,282,68,0.0056002368728650526],[121,282,69,0.00636846458243899],[121,282,70,0.007433676082912211],[121,282,71,0.008797111988996595],[121,282,72,0.01044626030556675],[121,282,73,0.012357120214390694],[121,282,74,0.014496347424979966],[121,282,75,0.016823278471267973],[121,282,76,0.01929183156651769],[121,282,77,0.021209962989172472],[121,282,78,0.01859482434618074],[121,282,79,0.015989697811599552],[121,283,64,0.005730888896909591],[121,283,65,0.005538330968119048],[121,283,66,0.0055100348582388945],[121,283,67,0.005674765468175583],[121,283,68,0.0060715657316304655],[121,283,69,0.006738574856516551],[121,283,70,0.007695615411649607],[121,283,71,0.008946255860178512],[121,283,72,0.010480180984938619],[121,283,73,0.01227544635192943],[121,283,74,0.014300613983434542],[121,283,75,0.016516766636553864],[121,283,76,0.018879398314160935],[121,283,77,0.021340178872419784],[121,283,78,0.01920325912555854],[121,283,79,0.016681359218986017],[121,284,64,0.0068731435335503506],[121,284,65,0.006628221911279901],[121,284,66,0.0065369575922229655],[121,284,67,0.0066250361963990706],[121,284,68,0.0069310477867048645],[121,284,69,0.007494649017658934],[121,284,70,0.00833737187168255],[121,284,71,0.009464617589350481],[121,284,72,0.010867997396091417],[121,284,73,0.012527556732581617],[121,284,74,0.014413880201177297],[121,284,75,0.016490074665659413],[121,284,76,0.01871362817320399],[121,284,77,0.02103814260471303],[121,284,78,0.019639951139166868],[121,284,79,0.017242803853822597],[121,285,64,0.008341556315134393],[121,285,65,0.00805111624927564],[121,285,66,0.00790244300201968],[121,285,67,0.007918266515286421],[121,285,68,0.008136162170673795],[121,285,69,0.008596356352886608],[121,285,70,0.009321370108369297],[121,285,71,0.010317940084032732],[121,285,72,0.011579311170736874],[121,285,73,0.013087411971183086],[121,285,74,0.01481491036992942],[121,285,75,0.016727146708824723],[121,285,76,0.018783942303055422],[121,285,77,0.020941281270062378],[121,285,78,0.01990403951619196],[121,285,79,0.01766734552130828],[121,286,64,0.010074591882357844],[121,286,65,0.009745474361229708],[121,286,66,0.009545352057139139],[121,286,67,0.00949418795753288],[121,286,68,0.009628069843792908],[121,286,69,0.009986936244181637],[121,286,70,0.010593632278701146],[121,286,71,0.011455755510377919],[121,286,72,0.012567885275116241],[121,286,73,0.013913694039721921],[121,286,74,0.015467938151676531],[121,286,75,0.0171983255704587],[121,286,76,0.019067258402247933],[121,286,77,0.02103344829653565],[121,286,78,0.02000454099955604],[121,286,79,0.01795669520999623],[121,287,64,0.01199473165031657],[121,287,65,0.01163334279760156],[121,287,66,0.011387755699125436],[121,287,67,0.011275395365948777],[121,287,68,0.011330498939881148],[121,287,69,0.011591999396380276],[121,287,70,0.012082495543446287],[121,287,71,0.012810022910398762],[121,287,72,0.013770208512221029],[121,287,73,0.014948306763226001],[121,287,74,0.016321114004779366],[121,287,75,0.017858759338643334],[121,287,76,0.01952636968959656],[121,287,77,0.021285607257137892],[121,287,78,0.019961985503396642],[121,287,79,0.018122583769652104],[121,288,64,0.01400754623635234],[121,288,65,0.013619363130181625],[121,288,66,0.013333879474671595],[121,288,67,0.013166219382739524],[121,288,68,0.013148536854939018],[121,288,69,0.013318235933242084],[121,288,70,0.013697236719544936],[121,288,71,0.014293673480106862],[121,288,72,0.015103968424831391],[121,288,73,0.016114785715555316],[121,288,74,0.017304863278085173],[121,288,75,0.018646720220144415],[121,288,76,0.02010823788948235],[121,288,77,0.02142041249210241],[121,288,78,0.019810133357959732],[121,288,79,0.018188463819284455],[121,289,64,0.016000677316672127],[121,289,65,0.015589689571549017],[121,289,66,0.015268956946747741],[121,289,67,0.015051507949239774],[121,289,68,0.01496733162342162],[121,289,69,0.015052033145330964],[121,289,70,0.015326607073346817],[121,289,71,0.015799066631255576],[121,289,72,0.01646643579896798],[121,289,73,0.017316620718775978],[121,289,74,0.01833015810302558],[121,289,75,0.019481838557086413],[121,289,76,0.020742202963566096],[121,289,77,0.020994384410288756],[121,289,78,0.01959777219537123],[121,289,79,0.01819128928947763],[121,290,64,0.017851786542155426],[121,290,65,0.01742095719309926],[121,290,66,0.01706922576915498],[121,290,67,0.01680763998927276],[121,290,68,0.0166640602053969],[121,290,69,0.016672263043768457],[121,290,70,0.016852241915845813],[121,290,71,0.017211773764710257],[121,290,72,0.017748335394958757],[121,290,73,0.018450898149135322],[121,290,74,0.019301598720175075],[121,290,75,0.02027728411811163],[121,290,76,0.021350929041573583],[121,290,77,0.02057834352669777],[121,290,78,0.019381185115907865],[121,290,79,0.018176109184000356],[121,291,64,0.019463103460004072],[121,291,65,0.019017357166790837],[121,291,66,0.01864148061611425],[121,291,67,0.018344518204533873],[121,291,68,0.018152210486453556],[121,291,69,0.01809651206973474],[121,291,70,0.01819633566505011],[121,291,71,0.018459067391523004],[121,291,72,0.018882420131710917],[121,291,73,0.0194561638002547],[121,291,74,0.020163730403823868],[121,291,75,0.020983692000532614],[121,291,76,0.02119341431126282],[121,291,77,0.020209743998507012],[121,291,78,0.019192192118379827],[121,291,79,0.01816949102583247],[121,292,64,0.020759830894653327],[121,292,65,0.020306338812542818],[121,292,66,0.019915946963848914],[121,292,67,0.019595577223410317],[121,292,68,0.019368829970867824],[121,292,69,0.0192658492442887],[121,292,70,0.019304360860217168],[121,292,71,0.019491152162112786],[121,292,72,0.019823881157238533],[121,292,73,0.020292760276465798],[121,292,74,0.02088211270058355],[121,292,75,0.02152361578440542],[121,292,76,0.02074278122025214],[121,292,77,0.019908084754837664],[121,292,78,0.019045850770177643],[121,292,79,0.01818248115416031],[121,293,64,0.021411138556239693],[121,293,65,0.021233841753050858],[121,293,66,0.020840779554420874],[121,293,67,0.020511538165361744],[121,293,68,0.020267556172316573],[121,293,69,0.020137196957248374],[121,293,70,0.020136883265060176],[121,293,71,0.020272561352611313],[121,293,72,0.020541489584962738],[121,293,73,0.020933898205678033],[121,293,74,0.021434518262855404],[121,293,75,0.0210677368437656],[121,293,76,0.02039733686731933],[121,293,77,0.01968209433200928],[121,293,78,0.01894670624080243],[121,293,79,0.018215743486177053],[121,294,64,0.02089011361318616],[121,294,65,0.021342176474912447],[121,294,66,0.021381457374932293],[121,294,67,0.021059795966528804],[121,294,68,0.020817982051193652],[121,294,69,0.020682656499043193],[121,294,70,0.020668826612619637],[121,294,71,0.020781337933131288],[121,294,72,0.021016669817780366],[121,294,73,0.021364597370313404],[121,294,74,0.021289936613200656],[121,294,75,0.02075452942782839],[121,294,76,0.02016066414815696],[121,294,77,0.019531545300404414],[121,294,78,0.018890841270071224],[121,294,79,0.018261857828955026],[121,295,64,0.020795917991263867],[121,295,65,0.02122496860883528],[121,295,66,0.021520270270829586],[121,295,67,0.02122389886008055],[121,295,68,0.021005114365521493],[121,295,69,0.020888927810975472],[121,295,70,0.020888833657610656],[121,295,71,0.021008314992175387],[121,295,72,0.021242676354084594],[121,295,73,0.021524285716190816],[121,295,74,0.02108846345487311],[121,295,75,0.020582470036780594],[121,295,76,0.020028256517307396],[121,295,77,0.01944892771686737],[121,295,78,0.01886777470530933],[121,295,79,0.01830745560015367],[121,296,64,0.02113098101592855],[121,296,65,0.021525220025166495],[121,296,66,0.021255898116811323],[121,296,67,0.0210031209018747],[121,296,68,0.020828925795802027],[121,296,69,0.020756824287715973],[121,296,70,0.020798724347869103],[121,296,71,0.020956496311184004],[121,296,72,0.021223874856631686],[121,296,73,0.02151152126365222],[121,296,74,0.02105737887729743],[121,296,75,0.02054221599581104],[121,296,76,0.019988849462577687],[121,296,77,0.019420980838374624],[121,296,78,0.01886220784289731],[121,296,79,0.01833519219374606],[121,297,64,0.02119999695212378],[121,297,65,0.020863684801549792],[121,297,66,0.020603083404395855],[121,297,67,0.020412128367098877],[121,297,68,0.02030400163761932],[121,297,69,0.020300883396166633],[121,297,70,0.02041305185188519],[121,297,71,0.020640537801720406],[121,297,72,0.020975128174820595],[121,297,73,0.021402212236273525],[121,297,74,0.021181111674426926],[121,297,75,0.020617629536122856],[121,297,76,0.020025619226722708],[121,297,77,0.019430082492864976],[121,297,78,0.01885561798726538],[121,297,79,0.018325555422763016],[121,298,64,0.020060870289540268],[121,298,65,0.019782807112901507],[121,298,66,0.01959239805328922],[121,298,67,0.019480740791064363],[121,298,68,0.019459281801529463],[121,298,69,0.019549073817225315],[121,298,70,0.01975875711673353],[121,298,71,0.02008633044815867],[121,298,72,0.02052128793246768],[121,298,73,0.021046587644938382],[121,298,74,0.021436795389116532],[121,298,75,0.02078667721703096],[121,298,76,0.020117248286729426],[121,298,77,0.019455495650033745],[121,298,78,0.018827698804272444],[121,298,79,0.018258509652219354],[121,299,64,0.018585900526882655],[121,299,65,0.01837691347986392],[121,299,66,0.01827010521474714],[121,299,67,0.018253787387654756],[121,299,68,0.018337898818143853],[121,299,69,0.018542599771850382],[121,299,70,0.018874922580324797],[121,299,71,0.0193306853412759],[121,299,72,0.019896792226785198],[121,299,73,0.020553353080742246],[121,299,74,0.02127561976051865],[121,299,75,0.021022204271196804],[121,299,76,0.020238857218885322],[121,299,77,0.019474471868496587],[121,299,78,0.018757647195848427],[121,299,79,0.018114975401939588],[121,300,64,0.016839837829411924],[121,300,65,0.016709587294558077],[121,300,66,0.016698116809703293],[121,300,67,0.016791059552624967],[121,300,68,0.01699711251784145],[121,300,69,0.017335803160631144],[121,300,70,0.01781262562426586],[121,300,71,0.018421121343277665],[121,300,72,0.019145369930393882],[121,300,73,0.01996228570276813],[121,300,74,0.020843717086832546],[121,300,75,0.021292583545324484],[121,300,76,0.02036280268264673],[121,300,77,0.019463211415895364],[121,300,78,0.018625296558750098],[121,300,79,0.017878144350931092],[121,301,64,0.014904081470374102],[121,301,65,0.014860656884885684],[121,301,66,0.014954047533119201],[121,301,67,0.01516736014656326],[121,301,68,0.015508342039772801],[121,301,69,0.01599616412733313],[121,301,70,0.016634892329206365],[121,301,71,0.0174157558929525],[121,301,72,0.018319852047233978],[121,301,73,0.019320641563751004],[121,301,74,0.020386232222039377],[121,301,75,0.02148144756864388],[121,301,76,0.02045934134783699],[121,301,77,0.019397679964996008],[121,301,78,0.018412096412073826],[121,301,79,0.017534629812100473],[121,302,64,0.012876817223421981],[121,302,65,0.012926341885898389],[121,302,66,0.013131366059473144],[121,302,67,0.013472650254520444],[121,302,68,0.013957295824365201],[121,302,69,0.014604400652202481],[121,302,70,0.015416752083936136],[121,302,71,0.016383299441395834],[121,302,72,0.017482090545690897],[121,302,73,0.018682983543100468],[121,302,74,0.019950130759694765],[121,302,75,0.021244231739445698],[121,302,76,0.020497159667538675],[121,302,77,0.019254281861292306],[121,302,78,0.018101938485501384],[121,302,79,0.017075452868236342],[121,303,64,0.01084429356261266],[121,303,65,0.01099127081267241],[121,303,66,0.011312338963111445],[121,303,67,0.011786115429428104],[121,303,68,0.012419358766952436],[121,303,69,0.013231370296733798],[121,303,70,0.014223835124581577],[121,303,71,0.015383511161872788],[121,303,72,0.01668541063928748],[121,303,73,0.018095740620115503],[121,303,74,0.01957459895358622],[121,303,75,0.021078422570184326],[121,303,76,0.02045214845662358],[121,303,77,0.019016408848622955],[121,303,78,0.017685532899736418],[121,303,79,0.016498330403982603],[121,304,64,0.008797944575859466],[121,304,65,0.009047657600183546],[121,304,66,0.009489825492685944],[121,304,67,0.010101188184056874],[121,304,68,0.010888467802178912],[121,304,69,0.011871414401911928],[121,304,70,0.013050767643055338],[121,304,71,0.014411174206237179],[121,304,72,0.01592462598200555],[121,304,73,0.01755364028329751],[121,304,74,0.019254178220089364],[121,304,75,0.020978297870885457],[121,304,76,0.02033041042460902],[121,304,77,0.01869049906247338],[121,304,78,0.01716964312526654],[121,304,79,0.01581030932044226],[121,305,64,0.0067263982050319296],[121,305,65,0.007084882128123846],[121,305,66,0.00765386875114796],[121,305,67,0.008408542578426595],[121,305,68,0.009355890238964673],[121,305,69,0.010516316534468825],[121,305,70,0.011889745921773222],[121,305,71,0.013458779654090291],[121,305,72,0.015192400776746549],[121,305,73,0.017049403532799802],[121,305,74,0.018981543001525294],[121,305,75,0.020936401324249714],[121,305,76,0.020139660357052003],[121,305,77,0.018284490868510642],[121,305,78,0.01656243454477263],[121,305,79,0.01501975514218177],[121,306,64,0.004640370539225537],[121,306,65,0.005113719220130496],[121,306,66,0.005815101809404709],[121,306,67,0.006718505464725599],[121,306,68,0.00783146418742381],[121,306,69,0.00917520079440356],[121,306,70,0.010748932206333345],[121,306,71,0.012533275911211323],[121,306,72,0.014494229244784827],[121,306,73,0.016586854919773825],[121,306,74,0.01875866829996446],[121,306,75,0.020952722483452053],[121,306,76,0.01988204889069261],[121,306,77,0.017802637615189028],[121,306,78,0.01587023921078445],[121,306,79,0.014134998900463765],[121,307,64,0.002567413423897201],[121,307,65,0.003161202074111789],[121,307,66,0.003999760568066273],[121,307,67,0.005056253775156111],[121,307,68,0.006339016381343953],[121,307,69,0.007870206612079622],[121,307,70,0.009648421567613747],[121,307,71,0.011652359930688362],[121,307,72,0.013845079505967625],[121,307,73,0.01617794243298224],[121,307,74,0.01859424323472864],[121,307,75,0.021032515469776844],[121,307,76,0.019555933770275563],[121,307,77,0.017246870423343903],[121,307,78,0.015098518346017309],[121,307,79,0.013164913810925421],[121,308,64,5.471156649636406E-4],[121,308,65,0.0012659355847919908],[121,308,66,0.002245139513773629],[121,308,67,0.003457444601716966],[121,308,68,0.0049121998573536515],[121,308,69,0.006632567905847547],[121,308,70,0.008616595378926705],[121,308,71,0.010841135400021878],[121,308,72,0.013266383244621857],[121,308,73,0.01584008085150604],[121,308,74,0.01850138501092617],[121,308,75,0.02118439469942232],[121,308,76,0.01915739737896576],[121,308,77,0.01661793007638985],[121,308,78,0.014252615916541094],[121,308,79,0.012119303786541866],[121,309,64,-0.0013732415124444262],[121,309,65,-5.261398721921312E-4],[121,309,66,5.954908502745226E-4],[121,309,67,0.0019642784597432195],[121,309,68,0.003590751795114515],[121,309,69,0.005499096818588885],[121,309,70,0.007686861543310033],[121,309,71,0.010129137949912843],[121,309,72,0.012783371142874604],[121,309,73,0.015593818477996856],[121,309,74,0.018495653154222365],[121,309,75,0.021418707444476468],[121,309,76,0.018681510777737227],[121,309,77,0.01591626827660902],[121,309,78,0.013338303562988221],[121,309,79,0.011009104080650504],[121,310,64,-0.0031425745459720145],[121,310,65,-0.0021655340607145716],[121,310,66,-9.016329286177512E-4],[121,310,67,6.219957389238099E-4],[121,310,68,0.0024171714621648304],[121,310,69,0.004509071920568464],[121,310,70,0.006894781306777255],[121,310,71,0.00954772717462897],[121,310,72,0.012422753831975502],[121,310,73,0.015460826971293615],[121,310,74,0.01859336370718971],[121,310,75,0.021232814941145612],[121,310,76,0.018123344578545492],[121,310,77,0.015142718588739166],[121,310,78,0.012362117198595937],[121,310,79,0.009846394348201776],[121,311,64,-0.004709433366024931],[121,311,65,-0.0036025421672580688],[121,311,66,-0.0021985933270245064],[121,311,67,-5.241940000994275E-4],[121,311,68,0.0014338178879736996],[121,311,69,0.003701530475556231],[121,311,70,0.0062755822334300574],[121,311,71,0.009127845025970627],[121,311,72,0.012210747917526611],[121,311,73,0.01546221383642695],[121,311,74,0.018810202955902827],[121,311,75,0.02079631137012456],[121,311,76,0.017478727035727847],[121,311,77,0.01429893741967399],[121,311,78,0.01133148557997684],[121,311,79,0.008644224381859796],[121,312,64,-0.006024983546647955],[121,312,65,-0.004790130350713143],[121,312,66,-0.003250437622924622],[121,312,67,-0.0014317505258967427],[121,312,68,6.80426616907061E-4],[121,312,69,0.0031129641197760473],[121,312,70,0.005862056700063828],[121,312,71,0.008898139955106884],[121,312,72,0.012171446478321874],[121,312,73,0.01561715700599341],[121,312,74,0.019160140163740482],[121,312,75,0.020248615364483462],[121,312,76,0.016744749768343545],[121,312,77,0.013387615381089665],[121,312,78,0.010254651125714626],[121,312,79,0.007416252721764144],[121,313,64,-0.0070455356662556924],[121,313,65,-0.005686372459258465],[121,313,66,-0.0040172290340281845],[121,313,67,-0.0020630101277196522],[121,313,68,1.9204466210778894E-4],[121,313,69,0.002775417101659685],[121,313,70,0.005682845093922609],[121,313,71,0.008883456031419299],[121,313,72,0.012325533323119869],[121,313,73,0.015941860861793652],[121,313,74,0.019654638734689353],[121,313,75,0.01958328053467364],[121,313,76,0.015920021521241105],[121,313,77,0.012412459348495246],[121,313,78,0.009140383197574476],[121,313,79,0.006176198252152861],[121,314,64,-0.007734623029930083],[121,314,65,-0.006256439057902751],[121,314,66,-0.004465936398107489],[121,314,67,-0.0023869625933627394],[121,314,68,-2.617395004109851E-6],[121,314,69,0.00271498607771371],[121,314,70,0.005761102770498807],[121,314,71,0.009103686167722162],[121,314,72,0.012689340217695442],[121,314,73,0.01644883300190113],[121,314,74,0.02030216521305826],[121,314,75,0.018796128060781667],[121,314,76,0.01500467033257711],[121,314,77,0.011377945463755777],[121,314,78,0.00799748396759941],[121,314,79,0.004937104783040061],[121,315,64,-0.008064629110414076],[121,315,65,-0.006474140096366291],[121,315,66,-0.004571884658353768],[121,315,67,-0.002380599213714786],[121,315,68,1.1758266173627289E-4],[121,315,69,0.0029507203594083715],[121,315,70,0.006113549751909116],[121,315,71,0.00957298852982193],[121,315,72,0.013274246268752716],[121,315,73,0.017146481058595824],[121,315,74,0.021107995552867305],[121,315,75,0.017885221942360786],[121,315,76,0.014000094398181015],[121,315,77,0.010288843226569543],[121,315,78,0.006834086869779691],[121,315,79,0.0037104184689980488],[121,316,64,-0.008017966208614264],[121,316,65,-0.006323022671677134],[121,316,66,-0.004319767549795984],[121,316,67,-0.0020298331401374953],[121,316,68,5.65401472457782E-4],[121,316,69,0.0034939214615427655],[121,316,70,0.006749902123888863],[121,316,71,0.010299365208613126],[121,316,72,0.014086418674809711],[121,316,73,0.018039028919736824],[121,316,74,0.020887326189218885],[121,316,75,0.01685057036599748],[121,316,76,0.012908461806223561],[121,316,77,0.00914951068151421],[121,316,78,0.005656747475296794],[121,316,79,0.0025048777379096244],[121,317,64,-0.007587806911672857],[121,317,65,-0.005797025398543794],[121,317,66,-0.0037042239232161624],[121,317,67,-0.001329993442969207],[121,317,68,0.0013448063653704382],[121,317,69,0.004347840817962779],[121,317,70,0.007672684124553607],[121,317,71,0.011284602288286344],[121,317,72,0.015126894130267693],[121,317,73,0.019126751803225504],[121,317,74,0.019759217155419305],[121,317,75,0.01569355338911673],[121,317,76,0.011731959156649494],[121,317,77,0.007962960528837142],[121,317,78,0.004469326433445717],[121,317,79,0.001325215188365739],[121,318,64,-0.0067783699324219],[121,318,65,-0.004900690888288467],[121,318,66,-0.0027299791135046362],[121,318,67,-2.8589417327711165E-4],[121,318,68,0.002450983910677668],[121,318,69,0.005507774610055911],[121,318,70,0.008877420014805461],[121,318,71,0.012524570558542123],[121,318,72,0.01639200030111847],[121,318,73,0.020406529784557755],[121,318,74,0.018474657611377416],[121,318,75,0.014416076952217588],[121,318,76,0.01047178887610153],[121,318,77,0.006729696766666767],[121,318,78,0.003271663883919075],[121,318,79,1.7067066303527652E-4],[121,319,64,-0.005604761842888516],[121,319,65,-0.003648937748583732],[121,319,66,-0.001411552654868963],[121,319,67,0.0010885203894972608],[121,319,68,0.0038707597130807547],[121,319,69,0.006961554801658418],[121,319,70,0.01035320498290933],[121,319,71,0.01400988629601002],[121,319,72,0.01787411698291514],[121,319,73,0.021090587407490535],[121,319,74,0.01703723625802428],[121,319,75,0.013019452994830618],[121,319,76,0.009126914787751838],[121,319,77,0.005446321207135989],[121,319,78,0.0020580444677595396],[121,319,79,-9.666855854315346E-4],[122,-64,64,-0.0020256955552069114],[122,-64,65,-0.0025274339913680098],[122,-64,66,-0.0029403516699822566],[122,-64,67,-0.0032707002995714333],[122,-64,68,-0.0035044862588095994],[122,-64,69,-0.0036138054002362533],[122,-64,70,-0.003575025205586022],[122,-64,71,-0.0033695806263953597],[122,-64,72,-0.0029842669224458052],[122,-64,73,-0.0024114281322280464],[122,-64,74,-0.0016490386559139408],[122,-64,75,-7.006755736601335E-4],[122,-64,76,4.246205225457952E-4],[122,-64,77,0.001712598238511797],[122,-64,78,0.003144163507560783],[122,-64,79,0.004695864834749865],[122,-63,64,-0.0016263611585592421],[122,-63,65,-0.002102311406802967],[122,-63,66,-0.002485663665273177],[122,-63,67,-0.0027823257142180207],[122,-63,68,-0.0029790384541239145],[122,-63,69,-0.0030493878214579093],[122,-63,70,-0.0029712528230169542],[122,-63,71,-0.0027275474706069166],[122,-63,72,-0.0023064781787104703],[122,-63,73,-0.0017016999697056995],[122,-63,74,-9.123691193573651E-4],[122,-63,75,5.69099845234446E-5],[122,-63,76,0.0011962458450365525],[122,-63,77,0.002490730632717339],[122,-63,78,0.003920822475953688],[122,-63,79,0.00546284082696529],[122,-62,64,-0.0010560150957262013],[122,-62,65,-0.0015100453382421938],[122,-62,66,-0.0018693089870927156],[122,-62,67,-0.0021390262553347733],[122,-62,68,-0.0023067207845138497],[122,-62,69,-0.002347758044066547],[122,-62,70,-0.0022416969668833933],[122,-62,71,-0.0019729850873253995],[122,-62,72,-0.001531195589982328],[122,-62,73,-9.111659121731816E-4],[122,-62,74,-1.1303565842307877E-4],[122,-62,75,8.578182775425525E-4],[122,-62,76,0.0019909513389937514],[122,-62,77,0.0032711274776901114],[122,-62,78,0.0046787035010218084],[122,-62,79,0.006190123051953093],[122,-61,64,-3.242965256730382E-4],[122,-61,65,-7.603897708721842E-4],[122,-61,66,-0.0011012051552696223],[122,-61,67,-0.0013509675456658521],[122,-61,68,-0.0014980151886276865],[122,-61,69,-0.0015197337470342024],[122,-61,70,-0.0013974889398368127],[122,-61,71,-0.001117282325089749],[122,-61,72,-6.699825490227561E-4],[122,-61,73,-5.146047180522757E-5],[122,-61,74,7.373739716589101E-4],[122,-61,75,0.0016906351837226042],[122,-61,76,0.0027976274518077856],[122,-61,77,0.004043114340919441],[122,-61,78,0.005407693477870739],[122,-61,79,0.0068682781063348925],[122,-60,64,5.556774402595765E-4],[122,-60,65,1.3357099006340112E-4],[122,-60,66,-1.94399384713079E-4],[122,-60,67,-4.3120541443417496E-4],[122,-60,68,-5.660196503845566E-4],[122,-60,69,-5.784372516785419E-4],[122,-60,70,-4.51716226103239E-4],[122,-60,71,-1.7340137811693265E-4],[122,-60,72,2.644366935176703E-4],[122,-60,73,8.650567934726501E-4],[122,-60,74,0.0016269985877197682],[122,-60,75,0.002544132256378044],[122,-60,76,0.003605808135895591],[122,-60,77,0.004797107995342758],[122,-60,78,0.006099199434570684],[122,-60,79,0.0074897947291904165],[122,-59,64,0.0015680752752451135],[122,-59,65,0.0011562022460061925],[122,-59,66,8.357304945399053E-4],[122,-59,67,6.051341130200227E-4],[122,-59,68,4.743923619817107E-4],[122,-59,69,4.61562539108057E-4],[122,-59,70,5.814476973862611E-4],[122,-59,71,8.449972127841314E-4],[122,-59,72,0.0012590479524071548],[122,-59,73,0.0018261580509262867],[122,-59,74,0.0025445353032021046],[122,-59,75,0.00340806205546166],[122,-59,76,0.00440641834138315],[122,-59,77,0.005525304864523581],[122,-59,78,0.006746767276278126],[122,-59,79,0.008049623040637534],[122,-58,64,0.0026952710995821207],[122,-58,65,0.0022902549712657794],[122,-58,66,0.0019724303320308913],[122,-58,67,0.0017418285472861489],[122,-58,68,0.0016075638933035778],[122,-58,69,0.0015852562430020887],[122,-58,70,0.0016877568496851212],[122,-58,71,0.0019245666133192285],[122,-58,72,0.0023015472503112567],[122,-58,73,0.0028207237411403767],[122,-58,74,0.0034801800229947123],[122,-58,75,0.004274049773613504],[122,-58,76,0.005192604001209695],[122,-58,77,0.006222437015132179],[122,-58,78,0.0073467522043865014],[122,-58,79,0.008545748897898518],[122,-57,64,0.003918920753576562],[122,-57,65,0.0035179574651127395],[122,-57,66,0.0031986785946476652],[122,-57,67,0.0029626858164611635],[122,-57,68,0.0028181973789815074],[122,-57,69,0.0027783476175811256],[122,-57,70,0.0028540490586623345],[122,-57,71,0.0030534223921869215],[122,-57,72,0.003381469850410676],[122,-57,73,0.0038398386724123297],[122,-57,74,0.004426676591916548],[122,-57,75,0.005136581169821001],[122,-57,76,0.00596064466633948],[122,-57,77,0.006886596012228246],[122,-57,78,0.007899041295708124],[122,-57,79,0.008979804033042998],[122,-56,64,0.005217862935453119],[122,-56,65,0.0048187396215460376],[122,-56,66,0.004494723691372473],[122,-56,67,0.004248890846440993],[122,-56,68,0.004088509850787176],[122,-56,69,0.0040242185681945925],[122,-56,70,0.004065024913279559],[122,-56,71,0.004217743388921703],[122,-56,72,0.004486625372997872],[122,-56,73,0.0048730783125348525],[122,-56,74,0.005375475739360605],[122,-56,75,0.0059890599103034495],[122,-56,76,0.0067059387534694915],[122,-56,77,0.007515178671554344],[122,-56,78,0.008402994615023132],[122,-56,79,0.009353038693915038],[122,-55,64,0.006549209113515228],[122,-55,65,0.006149122386670413],[122,-55,66,0.005816691871236907],[122,-55,67,0.00555630345231566],[122,-55,68,0.005374231926433002],[122,-55,69,0.005278672816698335],[122,-55,70,0.005276816238410309],[122,-55,71,0.005374283771443133],[122,-55,72,0.005574710910414727],[122,-55,73,0.0058794173333356166],[122,-55,74,0.00628716688648447],[122,-55,75,0.006794019077279799],[122,-55,76,0.007393273750321898],[122,-55,77,0.008075510495970677],[122,-55,78,0.008828724207281003],[122,-55,79,0.00963855806140864],[122,-54,64,0.007865722611234116],[122,-54,65,0.007460931351449389],[122,-54,66,0.007115656993892682],[122,-54,67,0.006835391932785905],[122,-54,68,0.006625396656263794],[122,-54,69,0.006491550403062604],[122,-54,70,0.006439373229891],[122,-54,71,0.0064734553510706365],[122,-54,72,0.006596986858151135],[122,-54,73,0.006811374411123131],[122,-54,74,0.007115946792453867],[122,-54,75,0.007507751113964677],[122,-54,76,0.00798144135455545],[122,-54,77,0.008529260785336057],[122,-54,78,0.009141119709300233],[122,-54,79,0.009804769806825124],[122,-53,64,0.009127750529377063],[122,-53,65,0.008713862552637052],[122,-53,66,0.008350869493713822],[122,-53,67,0.008045134537449527],[122,-53,68,0.007800905250738436],[122,-53,69,0.007621931861366999],[122,-53,70,0.007512261895201467],[122,-53,71,0.007475652980453927],[122,-53,72,0.007515045095872195],[122,-53,73,0.00763211931142278],[122,-53,74,0.00782694491763437],[122,-53,75,0.008097716742800335],[122,-53,76,0.008440584349202846],[122,-53,77,0.008849574681775893],[122,-53,78,0.009316609616597412],[122,-53,79,0.009831619723830794],[122,-52,64,0.010303440903897646],[122,-52,65,0.009875683238910096],[122,-52,66,0.009489937718934296],[122,-52,67,0.009153178964244613],[122,-52,68,0.008868662519915851],[122,-52,69,0.008638247351697829],[122,-52,70,0.008464744756137024],[122,-52,71,0.008351304974849325],[122,-52,72,0.00830082765793815],[122,-52,73,0.008315458808489384],[122,-52,74,0.008396176121408281],[122,-52,75,0.008542464536365748],[122,-52,76,0.008752083719734223],[122,-52,77,0.009020929075457101],[122,-52,78,0.009342987761223973],[122,-52,79,0.009710391055646242],[122,-51,64,0.011369015267104834],[122,-51,65,0.010922484455728807],[122,-51,66,0.010509057184780169],[122,-51,67,0.010136045450976721],[122,-51,68,0.00980575121821517],[122,-51,69,0.009518419798572625],[122,-51,70,0.009275890616467523],[122,-51,71,0.009080947781546821],[122,-51,72,0.008936665122716127],[122,-51,73,0.008845838235196076],[122,-51,74,0.008810505482970214],[122,-51,75,0.00883155980799717],[122,-51,76,0.008908453094794922],[122,-51,77,0.00903899472579955],[122,-51,78,0.009219245840660428],[122,-51,79,0.0094435106828907],[122,-50,64,0.010906830031875283],[122,-50,65,0.011431208539612341],[122,-50,66,0.01139334944404803],[122,-50,67,0.010979438434508038],[122,-50,68,0.010598713507359706],[122,-50,69,0.010250113370947072],[122,-50,70,0.00993478763912777],[122,-50,71,0.009655401739373176],[122,-50,72,0.009415413749419345],[122,-50,73,0.009218439375264792],[122,-50,74,0.009067707053106814],[122,-50,75,0.008965605068181897],[122,-50,76,0.008913322481644347],[122,-50,77,0.008910585543911838],[122,-50,78,0.00895549115073535],[122,-50,79,0.009044438768157031],[122,-49,64,0.01007915790066954],[122,-49,65,0.010629447620594076],[122,-49,66,0.011162608948220826],[122,-49,67,0.011671464874851304],[122,-49,68,0.011240986291397794],[122,-49,69,0.010828776739202427],[122,-49,70,0.010439198395871187],[122,-49,71,0.010075029135693468],[122,-49,72,0.009740294892241375],[122,-49,73,0.009439567118763526],[122,-49,74,0.009177352099920946],[122,-49,75,0.008957574056042689],[122,-49,76,0.008783153878953351],[122,-49,77,0.00865568522497507],[122,-49,78,0.008575209567352967],[122,-49,79,0.008540091678658214],[122,-48,64,0.00941461516668286],[122,-48,65,0.009991937376761196],[122,-48,66,0.010559367425435855],[122,-48,67,0.011110238449841625],[122,-48,68,0.011644762395512575],[122,-48,69,0.01124987552107077],[122,-48,70,0.01078931523974729],[122,-48,71,0.010344970435080371],[122,-48,72,0.009921536866013181],[122,-48,73,0.009524590108584407],[122,-48,74,0.009159912915874289],[122,-48,75,0.008832918342623872],[122,-48,76,0.008548170517453964],[122,-48,77,0.00830900483057892],[122,-48,78,0.008117249179586025],[122,-48,79,0.007973047781819868],[122,-47,64,0.008931155823873861],[122,-47,65,0.009533712293606993],[122,-47,66,0.010132310715951708],[122,-47,67,0.010721086513249394],[122,-47,68,0.011301047542340677],[122,-47,69,0.01151357335299714],[122,-47,70,0.010989799100317083],[122,-47,71,0.010474527795590457],[122,-47,72,0.009973143144777635],[122,-47,73,0.009492186313176311],[122,-47,74,0.009038628741122998],[122,-47,75,0.008619242499252734],[122,-47,76,0.008240070097320893],[122,-47,77,0.007905995543625142],[122,-47,78,0.007620418324517195],[122,-47,79,0.007385031836970713],[122,-46,64,0.008637388595907791],[122,-46,65,0.009260948843472278],[122,-46,66,0.00988491015341944],[122,-46,67,0.010504499694695706],[122,-46,68,0.011121539570298591],[122,-46,69,0.011626030799663142],[122,-46,70,0.011050384653379453],[122,-46,71,0.01047708380236658],[122,-46,72,0.009912146536458596],[122,-46,73,0.009362968731112179],[122,-46,74,0.008837552339534201],[122,-46,75,0.00834383266900899],[122,-46,76,0.007889106367316039],[122,-46,77,0.007479561926328017],[122,-46,78,0.007119914380341658],[122,-46,79,0.006813145738041695],[122,-45,64,0.008533565290773886],[122,-45,65,0.009171923731194128],[122,-45,66,0.009813283833183542],[122,-45,67,0.010454243976551274],[122,-45,68,0.01109748110898239],[122,-45,69,0.011598638683745522],[122,-45,70,0.010985178836667752],[122,-45,71,0.010369471191077001],[122,-45,72,0.009758055275284769],[122,-45,73,0.009159011989595728],[122,-45,74,0.00858116010132393],[122,-45,75,0.008033351963237612],[122,-45,76,0.0075238703697298286],[122,-45,77,0.007059928344891637],[122,-45,78,0.006647273525812389],[122,-45,79,0.006289898664470337],[122,-44,64,0.008612547442491845],[122,-44,65,0.009257951514026716],[122,-44,66,0.00990709807366351],[122,-44,67,0.01055821899723157],[122,-44,68,0.011214905603409781],[122,-44,69,0.01144726698751428],[122,-44,70,0.010811973571431743],[122,-44,71,0.010171355530169134],[122,-44,72,0.009532311012010297],[122,-44,73,0.008903390021669002],[122,-44,74,0.00829397269162121],[122,-44,75,0.007713546190400385],[122,-44,76,0.007171082144646628],[122,-44,77,0.006674516331152674],[122,-44,78,0.006230332264044757],[122,-44,79,0.005843250162180751],[122,-43,64,0.008860754143358168],[122,-43,65,0.009504304396314774],[122,-43,66,0.010150452007849125],[122,-43,67,0.010799300561906658],[122,-43,68,0.0114554309148223],[122,-43,69,0.011191527099844846],[122,-43,70,0.010551570641976284],[122,-43,71,0.00990462900210527],[122,-43,72,0.00925775703653623],[122,-43,73,0.008619723353947036],[122,-43,74,0.008000184973118888],[122,-43,75,0.007408958837239073],[122,-43,76,0.006855391997336937],[122,-43,77,0.006347832157666473],[122,-43,78,0.005893200145886306],[122,-43,79,0.005496665732285498],[122,-42,64,0.0092590939729568],[122,-42,65,0.00989111700413604],[122,-42,66,0.010522747990882838],[122,-42,67,0.011156169910433701],[122,-42,68,0.011469258495867848],[122,-42,69,0.010854045178862378],[122,-42,70,0.0102271166848221],[122,-42,71,0.00959281342788232],[122,-42,72,0.008958115077948567],[122,-42,73,0.008331734555197536],[122,-42,74,0.007723303959342099],[122,-42,75,0.007142654262201089],[122,-42,76,0.006599190485768456],[122,-42,77,0.00610136397054357],[122,-42,78,0.005656243211740296],[122,-42,79,0.005269184605658397],[122,-41,64,0.009783883923645802],[122,-41,65,0.010394278940833345],[122,-41,66,0.010999550506448654],[122,-41,67,0.011604132289526439],[122,-41,68,0.011045307391858621],[122,-41,69,0.010459744404409247],[122,-41,70,0.00986344624550515],[122,-41,71,0.009260470689399794],[122,-41,72,0.008657469042847714],[122,-41,73,0.008062810419304093],[122,-41,74,0.007485793587418356],[122,-41,75,0.006935948104280227],[122,-41,76,0.006422426340881904],[122,-41,77,0.005953487893893414],[122,-41,78,0.0055360777554194305],[122,-41,79,0.005175499482360384],[122,-40,64,0.010407758206235952],[122,-40,65,0.010986317910833428],[122,-40,66,0.01155343624254136],[122,-40,67,0.011106426507744436],[122,-40,68,0.0105751772158097],[122,-40,69,0.010035133906021692],[122,-40,70,0.009486430874311341],[122,-40,71,0.008932618720772523],[122,-40,72,0.008379754074258039],[122,-40,73,0.007835569484162232],[122,-40,74,0.0073087251355780794],[122,-40,75,0.006808143956798094],[122,-40,76,0.006342431590276852],[122,-40,77,0.0059193825908094915],[122,-40,78,0.005545574099026261],[122,-40,79,0.00522604811570732],[122,-39,64,0.011100569793851137],[122,-39,65,0.01151740478879987],[122,-39,66,0.011035006469891053],[122,-39,67,0.010561427565857052],[122,-39,68,0.010087158049689843],[122,-39,69,0.009607602171328328],[122,-39,70,0.00912233225263982],[122,-39,71,0.008634151262646496],[122,-39,72,0.008148249340494663],[122,-39,73,0.007671433520933809],[122,-39,74,0.007211432150970765],[122,-39,75,0.006776275405154374],[122,-39,76,0.006373753216184812],[122,-39,77,0.006010951838245581],[122,-39,78,0.0056938701537386964],[122,-39,79,0.005427116721192838],[122,-38,64,0.011297712980815852],[122,-38,65,0.010846984865193815],[122,-38,66,0.010423208602319994],[122,-38,67,0.010014586680744588],[122,-38,68,0.009610120601812086],[122,-38,69,0.009204712766901326],[122,-38,70,0.00879715736933748],[122,-38,71,0.008389259603070772],[122,-38,72,0.007985072996193849],[122,-38,73,0.007590201665844702],[122,-38,74,0.007211168797712806],[122,-38,75,0.006854852580104665],[122,-38,76,0.006527990740900413],[122,-38,77,0.006236754746639221],[122,-38,78,0.005986394627392417],[122,-38,79,0.0057809552901046946],[122,-37,64,0.010576555511954988],[122,-37,65,0.010184472838712018],[122,-37,66,0.009829051706693615],[122,-37,67,0.009496011071618562],[122,-37,68,0.009172760137453415],[122,-37,69,0.008853500238832223],[122,-37,70,0.008536013801458978],[122,-37,71,0.00822085456468726],[122,-37,72,0.00791067779642395],[122,-37,73,0.007609625909445651],[122,-37,74,0.007322770583423482],[122,-37,75,0.007055612433653722],[122,-37,76,0.006813639197093168],[122,-37,77,0.006601943329550803],[122,-37,78,0.006424899825626877],[122,-37,79,0.006285904986138452],[122,-36,64,0.009887524480860868],[122,-36,65,0.009562014638852782],[122,-36,66,0.009283459643407772],[122,-36,67,0.009035161518145596],[122,-36,68,0.008802838562618777],[122,-36,69,0.008579764103844386],[122,-36,70,0.008362463196631193],[122,-36,71,0.008149987041039959],[122,-36,72,0.007943345889463344],[122,-36,73,0.0077449867059958535],[122,-36,74,0.0075583164748263395],[122,-36,75,0.007387272003083331],[122,-36,76,0.007235937006462382],[122,-36,77,0.00710820720365632],[122,-36,78,0.0070075040787623355],[122,-36,79,0.006936537900192248],[122,-35,64,0.009262885511213416],[122,-35,65,0.009010746381839548],[122,-35,66,0.008816132528709065],[122,-35,67,0.008660045707783587],[122,-35,68,0.00852642246008041],[122,-35,69,0.00840735889379026],[122,-35,70,0.008297871104714902],[122,-35,71,0.008195265434822374],[122,-35,72,0.008098681364565884],[122,-35,73,0.008008667518429212],[122,-35,74,0.007926791469293147],[122,-35,75,0.007855283989900283],[122,-35,76,0.007796718357883315],[122,-35,77,0.007753725274931822],[122,-35,78,0.0077287439111870795],[122,-35,79,0.007723809533412013],[122,-34,64,0.008733187525742503],[122,-34,65,0.008559911259754955],[122,-34,66,0.00845469539774639],[122,-34,67,0.008396405270196985],[122,-34,68,0.00836711494048458],[122,-34,69,0.008357478277110043],[122,-34,70,0.008360751364929008],[122,-34,71,0.00837226840801291],[122,-34,72,0.008389099187928448],[122,-34,73,0.00840972717226836],[122,-34,74,0.008433748749469337],[122,-34,75,0.008461594044503976],[122,-34,76,0.008494269745360156],[122,-34,77,0.008533124342551551],[122,-34,78,0.008579636153520007],[122,-34,79,0.008635224471016565],[122,-33,64,0.008326347457676532],[122,-33,65,0.008235967553792325],[122,-33,66,0.008223838140663046],[122,-33,67,0.008266894298878584],[122,-33,68,0.008345279244505004],[122,-33,69,0.008447931350443224],[122,-33,70,0.008566103321206643],[122,-33,71,0.008692951418232973],[122,-33,72,0.008823309223227327],[122,-33,73,0.008953468954910103],[122,-33,74,0.009080970612332635],[122,-33,75,0.009204399214055208],[122,-33,76,0.009323190396592098],[122,-33,77,0.009437444627644552],[122,-33,78,0.009547750279836204],[122,-33,79,0.009655015799031275],[122,-32,64,0.008066723804308722],[122,-32,65,0.008061685453254095],[122,-32,66,0.008144444486519296],[122,-32,67,0.008290247247449548],[122,-32,68,0.008477252114952394],[122,-32,69,0.008692409272285661],[122,-32,70,0.008924740213460954],[122,-32,71,0.009165045587442704],[122,-32,72,0.009405794102600252],[122,-32,73,0.009641005464963525],[122,-32,74,0.009866127432183673],[122,-32,75,0.010077907080290093],[122,-32,76,0.010274256394606789],[122,-32,77,0.010454112309363358],[122,-32,78,0.010617291332457134],[122,-32,79,0.010764338902354132],[122,-31,64,0.007974176748601274],[122,-31,65,0.008055230469183638],[122,-31,66,0.00823270791248399],[122,-31,67,0.008480434185955848],[122,-31,68,0.00877454505062321],[122,-31,69,0.009099740498555437],[122,-31,70,0.009442607175812792],[122,-31,71,0.009791447528391445],[122,-31,72,0.010136279789901816],[122,-31,73,0.010468818289811345],[122,-31,74,0.010782433989119771],[122,-31,75,0.011072095185764241],[122,-31,76,0.011334288367536634],[122,-31,77,0.01156691922544068],[122,-31,78,0.01172593933178842],[122,-31,79,0.011560473543458292],[122,-30,64,0.008063112698499393],[122,-30,65,0.008229231350369041],[122,-30,66,0.00849923246959703],[122,-30,67,0.008845801511061114],[122,-30,68,0.009243031656708523],[122,-30,69,0.009673132977374255],[122,-30,70,0.010120087364848252],[122,-30,71,0.010569598841206545],[122,-30,72,0.011009197760551492],[122,-30,73,0.011428311668330199],[122,-30,74,0.011653553168995932],[122,-30,75,0.011309266788435185],[122,-30,76,0.011004391781740465],[122,-30,77,0.01074188590801762],[122,-30,78,0.010522964526304704],[122,-30,79,0.0103472330567234],[122,-29,64,0.008341511229437725],[122,-29,65,0.008589830540140009],[122,-29,66,0.008948116641711412],[122,-29,67,0.009388196323575442],[122,-29,68,0.009882119419998319],[122,-29,69,0.010409401767483199],[122,-29,70,0.010951294841805171],[122,-29,71,0.011490854087275954],[122,-29,72,0.01145712033958489],[122,-29,73,0.010975563058341622],[122,-29,74,0.010533370063002614],[122,-29,75,0.010138754902617236],[122,-29,76,0.009797605242407173],[122,-29,77,0.009513520522238693],[122,-29,78,0.009287897416450065],[122,-29,79,0.009120063076666811],[122,-28,64,0.008809932563621097],[122,-28,65,0.009135715355123895],[122,-28,66,0.009576018491201873],[122,-28,67,0.010102072817475567],[122,-28,68,0.010683904361112485],[122,-28,69,0.01129818066167918],[122,-28,70,0.011549561651974431],[122,-28,71,0.010944592978727581],[122,-28,72,0.010364412657337592],[122,-28,73,0.00982389467198551],[122,-28,74,0.009335285335533065],[122,-28,75,0.008908101503639783],[122,-28,76,0.008549089423667966],[122,-28,77,0.008262244397244317],[122,-28,78,0.008048891333168485],[122,-28,79,0.007907826166392126],[122,-27,64,0.009460503880279941],[122,-27,65,0.009857128222167864],[122,-27,66,0.010371200493906541],[122,-27,67,0.010973579166685855],[122,-27,68,0.011632307150779453],[122,-27,69,0.011170854309666937],[122,-27,70,0.010487491713788695],[122,-27,71,0.009819294732442705],[122,-27,72,0.009185864593872758],[122,-27,73,0.008603975447911453],[122,-27,74,0.008087367470713225],[122,-27,75,0.007646612403942539],[122,-27,76,0.0072890518420137785],[122,-27,77,0.007018808457532782],[122,-27,78,0.0068368702319060665],[122,-27,79,0.006741247636482409],[122,-26,64,0.010275882924486113],[122,-26,65,0.01073485447722299],[122,-26,66,0.01131255262679568],[122,-26,67,0.011523621704336686],[122,-26,68,0.010813205493057724],[122,-26,69,0.010075233915421478],[122,-26,70,0.009336775436909063],[122,-26,71,0.008622394699431353],[122,-26,72,0.00795374915236491],[122,-26,73,0.007349267975320371],[122,-26,74,0.006823913892810126],[122,-26,75,0.0063890283410589985],[122,-26,76,0.00605226030498242],[122,-26,77,0.005817579000262859],[122,-26,78,0.005685370432945873],[122,-26,79,0.005652617728572136],[122,-25,64,0.011228224402648474],[122,-25,65,0.011739239738300798],[122,-25,66,0.011162452466689093],[122,-25,67,0.010456018357858081],[122,-25,68,0.009695100816071087],[122,-25,69,0.008911735429145987],[122,-25,70,0.00813553352457651],[122,-25,71,0.007393238415755202],[122,-25,72,0.006708285842150948],[122,-25,73,0.006100456188562548],[122,-25,74,0.005585619096860707],[122,-25,75,0.0051755709256992456],[122,-25,76,0.004877965353579706],[122,-25,77,0.004696337259981066],[122,-25,78,0.004630219859653969],[122,-25,79,0.004675354908325463],[122,-24,64,0.011268886034925317],[122,-24,65,0.010729638225428459],[122,-24,66,0.010072560153141744],[122,-24,67,0.009327256849481989],[122,-24,68,0.00853115077456639],[122,-24,69,0.00771892190097277],[122,-24,70,0.006922476309515066],[122,-24,71,0.00617044655729589],[122,-24,72,0.005487731571021],[122,-24,73,0.004895136414048647],[122,-24,74,0.004409112526266766],[122,-24,75,0.004041598861873673],[122,-24,76,0.0037999641742557408],[122,-24,77,0.003687050521142921],[122,-24,78,0.0037013178888741396],[122,-24,79,0.00383708966377378],[122,-23,64,0.010200223646990782],[122,-23,65,0.009627727858038029],[122,-23,66,0.00894086805853759],[122,-23,67,0.008169290723287478],[122,-23,68,0.007351950693610818],[122,-23,69,0.006525945689128447],[122,-23,70,0.005725214595345898],[122,-23,71,0.0049799944574661775],[122,-23,72,0.004316351540197138],[122,-23,73,0.003755819247007278],[122,-23,74,0.0033151434624721426],[122,-23,75,0.0030061356928561735],[122,-23,76,0.0028356341901377064],[122,-23,77,0.0028055730551740325],[122,-23,78,0.0029131591285526583],[122,-23,79,0.0031511562948770997],[122,-22,64,0.009102326170809968],[122,-22,65,0.008504355454987551],[122,-22,66,0.007797097030294784],[122,-22,67,0.007010120759802986],[122,-22,68,0.006183683935098182],[122,-22,69,0.005357048320548916],[122,-22,70,0.0045659193894061825],[122,-22,71,0.003841868007954197],[122,-22,72,0.0032118602486059956],[122,-22,73,0.002697900249744527],[122,-22,74,0.002316786635621728],[122,-22,75,0.0020799828078519288],[122,-22,76,0.0019936012173325086],[122,-22,77,0.002058501523780459],[122,-22,78,0.002270502351549359],[122,-22,79,0.0026207061571048955],[122,-21,64,0.008006267577926678],[122,-21,65,0.007388701699455199],[122,-21,66,0.006668451947245298],[122,-21,67,0.005874859940122712],[122,-21,68,0.005049218050180418],[122,-21,69,0.004232679440373858],[122,-21,70,0.0034624536187339654],[122,-21,71,0.002771196434859472],[122,-21,72,0.0021865420172628397],[122,-21,73,0.0017307534709378705],[122,-21,74,0.0014204927891862402],[122,-21,75,0.0012667102194158456],[122,-21,76,0.0012746531079389403],[122,-21,77,0.001443994035849817],[122,-21,78,0.0017690778490322514],[122,-21,79,0.002239286982470935],[122,-20,64,0.0069420946686294905],[122,-20,65,0.006308624087533789],[122,-20,66,0.00558043530289362],[122,-20,67,0.0047864660751161],[122,-20,68,0.003968751550994555],[122,-20,69,0.003170055170743993],[122,-20,70,0.0024288420482148987],[122,-20,71,0.0017786363199416215],[122,-20,72,0.0012475541723161615],[122,-20,73,8.579612188746871E-4],[122,-20,74,6.262546192424708E-4],[122,-20,75,5.627701045842102E-4],[122,-20,76,6.718138479355079E-4],[122,-20,77,9.51818893754148E-4],[122,-20,78,0.001395625641726338],[122,-20,79,0.001990885667644519],[122,-19,64,0.0059397948336808015],[122,-19,65,0.005291553494721068],[122,-19,66,0.004557667182043204],[122,-19,67,0.003766479149630497],[122,-19,68,0.002960463499380898],[122,-19,69,0.0021837170312187237],[122,-19,70,0.001475739044822825],[122,-19,71,8.707502223118928E-4],[122,-19,72,3.972210118142398E-4],[122,-19,73,7.753021519256496E-5],[122,-19,74,-7.224588861404207E-5],[122,-19,75,-4.2413792736596536E-5],[122,-19,76,1.7038746912413616E-4],[122,-19,77,5.633666523499716E-4],[122,-19,78,0.0011278901166329699],[122,-19,79,0.0018499202921408795],[122,-18,64,0.005030274864416936],[122,-18,65,0.0043654003270289],[122,-18,66,0.0036247132112901905],[122,-18,67,0.002835764891716351],[122,-18,68,0.002041167345175369],[122,-18,69,0.0012860927689361634],[122,-18,70,6.108954459025271E-4],[122,-18,71,5.038106497878989E-5],[122,-18,72,-3.6668037316256306E-4],[122,-18,73,-6.1790489056889E-4],[122,-18,74,-6.875078273613345E-4],[122,-18,75,-5.663800723028443E-4],[122,-18,76,-2.520274553059878E-4],[122,-18,77,2.516262228162305E-4],[122,-18,78,9.345718058287618E-4],[122,-18,79,0.0017811820919852812],[122,-17,64,0.004233395968128583],[122,-17,65,0.0035476291125504673],[122,-17,66,0.0027963879700252246],[122,-17,67,0.0020062386789510343],[122,-17,68,0.0012196375159027426],[122,-17,69,4.825888125724223E-4],[122,-17,70,-1.6384696561321964E-4],[122,-17,71,-6.843481630966273E-4],[122,-17,72,-0.0010498489009560874],[122,-17,73,-0.0012379117078139207],[122,-17,74,-0.001232955576065079],[122,-17,75,-0.0010263394744575334],[122,-17,76,-6.163016160397094E-4],[122,-17,77,-7.755044030774333E-6],[122,-17,78,7.880596454323997E-4],[122,-17,79,0.001754063378215303],[122,-16,64,0.0035231245434167897],[122,-16,65,0.0028137472251416992],[122,-16,66,0.0020501249837393083],[122,-16,67,0.001257663632753986],[122,-16,68,4.7834891165004714E-4],[122,-16,69,-2.412785325864236E-4],[122,-16,70,-8.59668386261634E-4],[122,-16,71,-0.0013411300330606268],[122,-16,72,-0.0016563898498662929],[122,-16,73,-0.0017829959138471114],[122,-16,74,-0.0017055699155318397],[122,-16,75,-0.0014159063599688154],[122,-16,76,-9.129194230851269E-4],[122,-16,77,-2.0243811029877761E-4],[122,-16,78,7.031493635608439E-4],[122,-16,79,0.0017854007928170804],[122,-15,64,0.0028717362469821597],[122,-15,65,0.0021382287266232445],[122,-15,66,0.0013629759437870745],[122,-15,67,5.700632567116807E-4],[122,-15,68,-1.993331794423108E-4],[122,-15,69,-8.984906944996926E-4],[122,-15,70,-0.001485662097469538],[122,-15,71,-0.0019250238655662514],[122,-15,72,-0.0021872791968246016],[122,-15,73,-0.0022501000214194895],[122,-15,74,-0.002098407797902668],[122,-15,75,-0.0017244932260670732],[122,-15,76,-0.001127975310783626],[122,-15,77,-3.15600508061496E-4],[122,-15,78,6.991170272547556E-4],[122,-15,79,0.0018964127963982046],[122,-14,64,0.002261669519297348],[122,-14,65,0.0015052958060211364],[122,-14,66,7.211418935535058E-4],[122,-14,67,-6.817825880446282E-5],[122,-14,68,-8.226537789382826E-4],[122,-14,69,-0.0014957775522521342],[122,-14,70,-0.0020459553656632786],[122,-14,71,-0.002437532552459817],[122,-14,72,-0.0026414441044371913],[122,-14,73,-0.0026356955199570067],[122,-14,74,-0.0024056742469930493],[122,-14,75,-0.0019442919036598762],[122,-14,76,-0.0012519577787592818],[122,-14,77,-3.3638442852385037E-4],[122,-14,78,7.877735101853989E-4],[122,-14,79,0.0020994458786998222],[122,-13,64,0.0016834940403281486],[122,-13,65,9.069293617150662E-4],[122,-13,66,1.180544764402751E-4],[122,-13,67,-6.621337420709065E-4],[122,-13,68,-0.0013951536891212467],[122,-13,69,-0.0020351393922468943],[122,-13,70,-0.002541037515511693],[122,-13,71,-0.0028777081948998906],[122,-13,72,-0.003016620178403587],[122,-13,73,-0.002936369089926881],[122,-13,74,-0.002623018712356277],[122,-13,75,-0.0020702655255950228],[122,-13,76,-0.0012794270718608615],[122,-13,77,-2.5925504996729035E-4],[122,-13,78,9.744256406668782E-4],[122,-13,79,0.002399250380298162],[122,-12,64,0.0011340535303830399],[122,-12,65,3.410514908164539E-4],[122,-12,66,-4.473750276246799E-4],[122,-12,67,-0.0012119889778800378],[122,-12,68,-0.0019162013758888012],[122,-12,69,-0.0025152258477976726],[122,-12,70,-0.002968958074800125],[122,-12,71,-0.0032431434409290207],[122,-12,72,-0.003310112522386185],[122,-12,73,-0.0031493330308610236],[122,-12,74,-0.0027477781468855083],[122,-12,75,-0.0021001115351565684],[122,-12,76,-0.0012086896851145924],[122,-12,77,-8.338256364774814E-5],[122,-12,78,0.0012587861008448477],[122,-12,79,0.0027941772661802216],[122,-11,64,6.147832347755274E-4],[122,-11,65,-1.9011984404194169E-4],[122,-11,66,-9.723386517331251E-4],[122,-11,67,-0.0017145366709586467],[122,-11,68,-0.0023823710496663456],[122,-11,69,-0.0029325715774309643],[122,-11,70,-0.0033263946925209207],[122,-11,71,-0.0035308481479184688],[122,-11,72,-0.0035194601173286085],[122,-11,73,-0.003272859309462417],[122,-11,74,-0.0027791660718647546],[122,-11,75,-0.002034194834698304],[122,-11,76,-0.001041468608915424],[122,-11,77,1.8795339119765707E-4],[122,-11,78,0.001635833587581218],[122,-11,79,0.0032772975986596017],[122,-10,64,1.3020310991515268E-4],[122,-10,65,-6.815430311320147E-4],[122,-10,66,-0.0014515458009945082],[122,-10,67,-0.0021645076038094724],[122,-10,68,-0.0027886661426636925],[122,-10,69,-0.003282687895744225],[122,-10,70,-0.0036095900466667375],[122,-10,71,-0.003738010576365275],[122,-10,72,-0.003643002708718266],[122,-10,73,-0.0033066363746645728],[122,-10,74,-0.0027184067252808606],[122,-10,75,-0.0018754501039959617],[122,-10,76,-7.82568262101104E-4],[122,-10,77,5.479380334372647E-4],[122,-10,78,0.002096624498769797],[122,-10,79,0.0038374461018738848],[122,-9,64,-3.1341163403839783E-4],[122,-9,65,-0.0011266503409557743],[122,-9,66,-0.0018784669320326404],[122,-9,67,-0.002555737570746011],[122,-9,68,-0.0031295868281030763],[122,-9,69,-0.0035610090619189127],[122,-9,70,-0.0038151565030300847],[122,-9,71,-0.003862641929297054],[122,-9,72,-0.003680349064929906],[122,-9,73,-0.00325204764619884],[122,-9,74,-0.0025688132361703473],[122,-9,75,-0.0016292522582462218],[122,-9,76,-4.3953309911208804E-4],[122,-9,77,9.867754972304357E-4],[122,-9,78,0.0026290571650468744],[122,-9,79,0.004460189862365113],[122,-8,64,-7.091803870599022E-4],[122,-8,65,-0.001518468619731538],[122,-8,66,-0.0022464047946750883],[122,-8,67,-0.0028821681239378895],[122,-8,68,-0.003400039713272289],[122,-8,69,-0.003763691458498374],[122,-8,70,-0.003940746864264385],[122,-8,71,-0.003904102688870538],[122,-8,72,-0.003632745174972424],[122,-8,73,-0.003112370364055998],[122,-8,74,-0.0023358086311636274],[122,-8,75,-0.0013032539674417917],[122,-8,76,-2.229892231168342E-5],[122,-8,77,0.0014922235090333374],[122,-8,78,0.003218589407221626],[122,-8,79,0.005128722871763201],[122,-7,64,-0.001050584601177291],[122,-7,65,-0.0018505604567379496],[122,-7,66,-0.002549390655403768],[122,-7,67,-0.0031386786665580854],[122,-7,68,-0.0035960873672766774],[122,-7,69,-0.003888263460420386],[122,-7,70,-0.003985589162836467],[122,-7,71,-0.0038635088715393328],[122,-7,72,-0.0035033406871517675],[122,-7,73,-0.0028928932901722258],[122,-7,74,-0.002026888360621054],[122,-7,75,-9.071891229343948E-4],[122,-7,76,4.5716401807415836E-4],[122,-7,77,0.002050109411226149],[122,-7,78,0.0038489099653642926],[122,-7,79,0.005824686790162542],[122,-6,64,-0.0013322495849335226],[122,-6,65,-0.0021177826549025735],[122,-6,66,-0.002782902451524755],[122,-6,67,-0.0033217469767572085],[122,-6,68,-0.003715534920103412],[122,-6,69,-0.003934123405202268],[122,-6,70,-0.0039508831056303696],[122,-6,71,-0.003744016028358826],[122,-6,72,-0.003297351653854137],[122,-6,73,-0.002600951582714415],[122,-6,74,-0.0016515229322657048],[122,-6,75,-4.526411141969763E-4],[122,-6,76,9.852169958364891E-4],[122,-6,77,0.0026448281170607813],[122,-6,78,0.00450256411748315],[122,-6,79,0.006528917994212241],[122,-5,64,-0.0015505369271121708],[122,-5,65,-0.0023168584094763393],[122,-5,66,-0.002944401410320611],[122,-5,67,-0.003429934848425814],[122,-5,68,-0.003758350596100115],[122,-5,69,-0.0039028827333693846],[122,-5,70,-0.0038400554752681744],[122,-5,71,-0.0035509785606130917],[122,-5,72,-0.003022117444407138],[122,-5,73,-0.002245877019530189],[122,-5,74,-0.0012209991614794496],[122,-5,75,4.72252300289524E-5],[122,-5,76,0.001546928646898803],[122,-5,77,0.0032598224398214144],[122,-5,78,0.005161533585268182],[122,-5,79,0.007222120674106805],[122,-4,64,-0.0017039434824935862],[122,-4,65,-0.0024467592374249423],[122,-4,66,-0.0030336833131291182],[122,-4,67,-0.0034641951948453423],[122,-4,68,-0.0037269167262957326],[122,-4,69,-0.003798551077508875],[122,-4,70,-0.003658871537170181],[122,-4,71,-0.003291981706060344],[122,-4,72,-0.0026870495203942116],[122,-4,73,-0.0018388616327389656],[122,-4,74,-7.481984909378653E-4],[122,-4,75,5.779691759955778E-4],[122,-4,76,0.002126461395932518],[122,-4,77,0.0038780460980592994],[122,-4,78,0.005807770612669451],[122,-4,79,0.007885465460470826],[122,-3,64,-0.001793302557034992],[122,-3,65,-0.0025088924049678956],[122,-3,66,-0.0030530402949086595],[122,-3,67,-0.0034279966837647805],[122,-3,68,-0.0036261075243262985],[122,-3,69,-0.00362755984260771],[122,-3,70,-0.0034153992955222967],[122,-3,71,-0.002976743380825018],[122,-3,72,-0.00230346963852812],[122,-3,73,-0.0013927327331830725],[122,-3,74,-2.473107995349028E-4],[122,-3,75,0.0011242182126701273],[122,-3,76,0.0027074691142511737],[122,-3,77,0.004482409559008711],[122,-3,78,0.0064236859013310065],[122,-3,79,0.008501112797524033],[122,-2,64,-0.0018217827078815714],[122,-2,65,-0.0025070893772456923],[122,-2,66,-0.0030072288500301763],[122,-2,67,-0.003327261761640669],[122,-2,68,-0.0034631897143184284],[122,-2,69,-0.003398620643560249],[122,-2,70,-0.003119823289266177],[122,-2,71,-0.0026168829395086016],[122,-2,72,-0.0018843349579390695],[122,-2,73,-9.216372536924186E-4],[122,-2,74,2.6651788685199974E-4],[122,-2,75,0.0016700518525855762],[122,-2,76,0.003273506564724729],[122,-2,77,0.0050562087443142695],[122,-2,78,0.006992589896359342],[122,-2,79,0.009052660034881428],[122,-1,64,-0.0017946794299356862],[122,-1,65,-0.0024473906672435363],[122,-1,66,-0.0029032395695085867],[122,-1,67,-0.0031701137853012698],[122,-1,68,-0.0032475419702594644],[122,-1,69,-0.003122414851942818],[122,-1,70,-0.002784104524651974],[122,-1,71,-0.0022255538446946453],[122,-1,72,-0.001443847484253062],[122,-1,73,-4.4063332603347665E-4],[122,-1,74,7.776053507071345E-4],[122,-1,75,0.0021994261295707742],[122,-1,76,0.003808451094664474],[122,-1,77,0.005583536486534024],[122,-1,78,0.007499086737852949],[122,-1,79,0.009525510988931552],[122,0,64,-0.0017189949403183945],[122,0,65,-0.002337622395756412],[122,0,66,-0.0027498640684469316],[122,0,67,-0.002966428915766236],[122,0,68,-0.0029901890695405195],[122,0,69,-0.0028111104574513723],[122,0,70,-0.002421483107531455],[122,0,71,-0.001816937219986464],[122,0,72,-9.969452849247391E-4],[122,0,73,3.481296975305274E-5],[122,0,74,0.0012702223242751299],[122,0,75,0.002696639742709108],[122,0,76,0.004296936934858671],[122,0,77,0.006049676492045768],[122,0,78,0.007929420029339261],[122,0,79,0.009907166527996957],[122,1,64,-0.0016028031514282754],[122,1,65,-0.0021867624205501998],[122,1,66,-0.002557057532007604],[122,1,67,-0.002727191593719359],[122,1,68,-0.0027031498021508663],[122,1,69,-0.002477705332400271],[122,1,70,-0.0020458225299759673],[122,1,71,-0.0014055949224139005],[122,1,72,-5.586736059959631E-4],[122,1,73,4.89428245187695E-4],[122,1,74,0.0017291542522250727],[122,1,75,0.003146846329524763],[122,1,76,0.004724807798079959],[122,1,77,0.006441486861063398],[122,1,78,0.00827177895902763],[122,1,79,0.0101874463074072],[122,2,64,-0.0014543979194638393],[122,2,65,-0.002004095412347537],[122,2,66,-0.0023350969692108483],[122,2,67,-0.0024636538875423266],[122,2,68,-0.0023985986673840283],[122,2,69,-0.002135196220843649],[122,2,70,-0.0016707937831530021],[122,2,71,-0.0010056787334656043],[122,2,72,-1.4343051500473135E-4],[122,2,73,9.088375575343225E-4],[122,2,74,0.0021403460940334763],[122,2,75,0.00353662628600391],[122,2,76,0.005079604456821931],[122,2,77,0.006747793321744697],[122,2,78,0.008516588570688956],[122,2,79,0.010358669197389593],[122,3,64,-0.001281198039003537],[122,3,65,-0.0017981227899226038],[122,3,66,-0.002093496471371635],[122,3,67,-0.002186258160195544],[122,3,68,-0.002087801630803986],[122,3,69,-0.001795537311319658],[122,3,70,-0.0013088695546336138],[122,3,71,-6.299751503217651E-4],[122,3,72,2.3592143671361004E-4],[122,3,73,0.0012803690722178033],[122,3,74,0.0024916066862597924],[122,3,75,0.0038545750133018616],[122,3,76,0.005351022420300454],[122,3,77,0.006959703716527472],[122,3,78,0.008656670661887035],[122,3,79,0.010415652726635331],[122,4,64,-0.0010884280400600588],[122,4,65,-0.0015752544850941123],[122,4,66,-0.001839712126902492],[122,4,67,-0.0019033592277671774],[122,4,68,-0.001779863456931231],[122,4,69,-0.0014684249118317397],[122,4,70,-9.701615575027354E-4],[122,4,71,-2.8881278376416587E-4],[122,4,72,5.690591844159011E-4],[122,4,73,0.0015939505568155683],[122,4,74,0.002773379410162057],[122,4,75,0.004091930588773014],[122,4,76,0.005531381210680433],[122,4,77,0.007070905755557093],[122,4,78,0.008687359560081936],[122,4,79,0.010355639407488758],[122,5,64,-8.775696714979138E-4],[122,5,65,-0.0013382769766798488],[122,5,66,-0.0015776304577076194],[122,5,67,-0.0016197392178444103],[122,5,68,-0.00148027914450265],[122,5,69,-0.0011599001045283226],[122,5,70,-6.610923017570414E-4],[122,5,71,1.1176767278537043E-5],[122,5,72,8.493281602744265E-4],[122,5,73,0.0018431071985293994],[122,5,74,0.0029795885274563824],[122,5,75,0.004243249868158459],[122,5,76,0.005616113657517349],[122,5,77,0.007077955639342252],[122,5,78,0.008606579343247737],[122,5,79,0.010178155272570478],[122,6,64,-6.445754005305513E-4],[122,6,65,-0.0010845876099983428],[122,6,66,-0.0013058295331006588],[122,6,67,-0.0013349038632712138],[122,6,68,-0.0011892782279850928],[122,6,69,-8.707586555285123E-4],[122,6,70,-3.828916059048302E-4],[122,6,71,2.684527166708732E-4],[122,6,72,0.0010750024126993443],[122,6,73,0.0020260642043003923],[122,6,74,0.003108561525026367],[122,6,75,0.0043071297634595124],[122,6,76,0.005604267923100024],[122,6,77,0.006980545849468131],[122,6,78,0.00841486607176565],[122,6,79,0.009884779212140113],[122,7,64,-3.7562624387326246E-4],[122,7,65,-8.015689514772464E-4],[122,7,66,-0.0010126325709192165],[122,7,67,-0.0010378444561093408],[122,7,68,-8.962991685186315E-4],[122,7,69,-5.907333872435665E-4],[122,7,70,-1.2548090811147556E-4],[122,7,71,4.929812157404402E-4],[122,7,72,0.001255995962326312],[122,7,73,0.002152737916618958],[122,7,74,0.0031702726663560307],[122,7,75,0.004293663447691928],[122,7,76,0.005506124372825334],[122,7,77,0.006789219480009535],[122,7,78,0.008123106761655017],[122,7,79,0.009486826249628148],[122,8,64,-4.235215079852809E-5],[122,8,65,-4.602090848685076E-4],[122,8,66,-6.683348126621953E-4],[122,8,67,-6.97949888493097E-4],[122,8,68,-5.695510509987111E-4],[122,8,69,-2.866105970692773E-4],[122,8,70,1.459762980049044E-4],[122,8,71,7.21370504334974E-4],[122,8,72,0.001430780941306764],[122,8,73,0.002263496346207577],[122,8,74,0.00320695637641849],[122,8,75,0.0042468615292954055],[122,8,76,0.005367321283657081],[122,8,77,0.006551039791821903],[122,8,78,0.007779538382251294],[122,8,79,0.009033414070956765],[122,9,64,3.81314647017566E-4],[122,9,65,-3.321387252850362E-5],[122,9,66,-2.443814731238797E-4],[122,9,67,-2.851958862429706E-4],[122,9,68,-1.772527532088258E-4],[122,9,69,7.541766967167738E-5],[122,9,70,4.6754546501291433E-4],[122,9,71,9.921192097400284E-4],[122,9,72,0.0016403984406032526],[122,9,73,0.002401958499646657],[122,9,74,0.0032647673687159155],[122,9,75,0.004215294033103949],[122,9,76,0.005238647849340902],[122,9,77,0.00631874833154065],[122,9,78,0.007438524715335249],[122,9,79,0.008580144608997427],[122,10,64,9.163134138979854E-4],[122,10,65,5.015983263473906E-4],[122,10,66,2.827322597171064E-4],[122,10,67,2.2545798774901337E-4],[122,10,68,3.074389891104822E-4],[122,10,69,5.242431030231911E-4],[122,10,70,8.703712565028279E-4],[122,10,71,0.0013387746708314904],[122,10,72,0.0019208835856304065],[122,10,73,0.0026066617897518686],[122,10,74,0.0033846866086170197],[122,10,75,0.004242253942689026],[122,10,76,0.005165507900163157],[122,10,77,0.0061395945191534875],[122,10,78,0.007148839031243893],[122,10,79,0.008176946079844557],[122,11,64,0.0015810612125485238],[122,11,65,0.0011639030624388566],[122,11,66,9.340450881201554E-4],[122,11,67,8.566071504463881E-4],[122,11,68,9.089000863258349E-4],[122,11,69,0.0010862184605944561],[122,11,70,0.0013829358769908914],[122,11,71,0.0017920461310682917],[122,11,72,0.002305207820187822],[122,11,73,0.0029128086545958908],[122,11,74,0.00360404915679087],[122,11,75,0.004367045394663456],[122,11,76,0.005188950354965678],[122,11,77,0.006056093527888208],[122,11,78,0.0069541382413611345],[122,11,79,0.007868256255608426],[122,12,64,0.0023943604636815622],[122,12,65,0.00197377324973946],[122,12,66,0.0017310039290281106],[122,12,67,0.0016312220270944399],[122,12,68,0.0016517787461717713],[122,12,69,0.0017877891364268955],[122,12,70,0.00203355394274682],[122,12,71,0.002382134135824778],[122,12,72,0.0028254146360142283],[122,12,73,0.0033541817249440058],[122,12,74,0.003958213864250428],[122,12,75,0.004626385612349092],[122,12,76,0.0053467843040161354],[122,12,77,0.006106839133922101],[122,12,78,0.00689346226449714],[122,12,79,0.007693201560947741],[122,13,64,0.003378613373564839],[122,13,65,0.0029548851411782943],[122,13,66,0.0026986340018310784],[122,13,67,0.002575754359587963],[122,13,68,0.0025640090301951974],[122,13,69,0.0026583833304864215],[122,13,70,0.0028531077776301323],[122,13,71,0.003141279454171941],[122,13,72,0.0035149514251571453],[122,13,73,0.003965229503495008],[122,13,74,0.004482376108121098],[122,13,75,0.005055920945461493],[122,13,76,0.005674778232425618],[122,13,77,0.006327370168779696],[122,13,78,0.007001756358490728],[122,13,79,0.0076857688736951734],[122,14,64,0.004563350184351189],[122,14,65,0.004138033772847777],[122,14,66,0.0038690115586026575],[122,14,67,0.0037235365359549423],[122,14,68,0.0036801048402464627],[122,14,69,0.0037335670450925934],[122,14,70,0.0038780289779719295],[122,14,71,0.004106536903925734],[122,14,72,0.004411202288717933],[122,14,73,0.004783326769065955],[122,14,74,0.005213527092378324],[122,14,75,0.005691859791012456],[122,14,76,0.006207945359893344],[122,14,77,0.006751091711407425],[122,14,78,0.007310416687874612],[122,14,79,0.007874969419678208],[122,15,64,0.005988526828767446],[122,15,65,0.005564229934117019],[122,15,66,0.005284058160266943],[122,15,67,0.005117176126472889],[122,15,68,0.005043068426256779],[122,15,69,0.00505639522022487],[122,15,70,0.005151039809203826],[122,15,71,0.005319876324558675],[122,15,72,0.005554941051213939],[122,15,73,0.0058475956122546364],[122,15,74,0.006188681789596382],[122,15,75,0.006568667777640729],[122,15,76,0.006977785689926358],[122,15,77,0.007406160162392361],[122,15,78,0.007843927920893747],[122,15,79,0.008281348204960855],[122,16,64,0.007692002875735814],[122,16,65,0.007271632863615027],[122,16,66,0.0069818055862106545],[122,16,67,0.006794063374899497],[122,16,68,0.006689096422897896],[122,16,69,0.006661325958921444],[122,16,70,0.006704344174659188],[122,16,71,0.006810779300517341],[122,16,72,0.006972521481381694],[122,16,73,0.00718093108483431],[122,16,74,0.007427029226590791],[122,16,75,0.007701670343092872],[122,16,76,0.007995696686364288],[122,16,77,0.008300074661089271],[122,16,78,0.008606012968125612],[122,16,79,0.008905062562043417],[122,17,64,0.009688864592367959],[122,17,65,0.009275455849340343],[122,17,66,0.008977275127824903],[122,17,67,0.008768624336053419],[122,17,68,0.008631587581113206],[122,17,69,0.008560321123648329],[122,17,70,0.00854810003743759],[122,17,71,0.008587290844899818],[122,17,72,0.008669636142354253],[122,17,73,0.00878651140579669],[122,17,74,0.008929153773964062],[122,17,75,0.009088862675586899],[122,17,76,0.00925717223711034],[122,17,77,0.009425995475286487],[122,17,78,0.00958774034542602],[122,17,79,0.009735397780269989],[122,18,64,0.011971824182613203],[122,18,65,0.0115685384580767],[122,18,66,0.011263295364843684],[122,18,67,0.01103345478049864],[122,18,68,0.010862653576045513],[122,18,69,0.010744778800886269],[122,18,70,0.010672798820998598],[122,18,71,0.010638849482567842],[122,18,72,0.010634578536356817],[122,18,73,0.010651451428732741],[122,18,74,0.010681018272229052],[122,18,75,0.010715141905148898],[122,18,76,0.01074618704476135],[122,18,77,0.010767170631388753],[122,18,78,0.010771873550442422],[122,18,79,0.010754914005545704],[122,19,64,0.012124357562575109],[122,19,65,0.012493772070278882],[122,19,66,0.012782036333986604],[122,19,67,0.013008543642999982],[122,19,68,0.013188005083138294],[122,19,69,0.01318864872592733],[122,19,70,0.013052230116827325],[122,19,71,0.012939076019783538],[122,19,72,0.012840832563810094],[122,19,73,0.012749171857994365],[122,19,74,0.012656095023441926],[122,19,75,0.012554185266858028],[122,19,76,0.012436811075760078],[122,19,77,0.012298279733396042],[122,19,78,0.01213394146518447],[122,19,79,0.01194024463698542],[122,20,64,0.009448974712252119],[122,20,65,0.009801719721751808],[122,20,66,0.010094048523655781],[122,20,67,0.010341945871869585],[122,20,68,0.010558343605196736],[122,20,69,0.010749856611371204],[122,20,70,0.01092401614362833],[122,20,71,0.01108895332107906],[122,20,72,0.01125294179476874],[122,20,73,0.011424001336381261],[122,20,74,0.011609562487433545],[122,20,75,0.0118161922551673],[122,20,76,0.012049380693217359],[122,20,77,0.012313388061651984],[122,20,78,0.012611152123229259],[122,20,79,0.012944255001879438],[122,21,64,0.006610404123534286],[122,21,65,0.006943142914092287],[122,21,66,0.0072376634867225105],[122,21,67,0.007506485911204781],[122,21,68,0.007760695481777631],[122,21,69,0.00800707072302654],[122,21,70,0.008253255507370688],[122,21,71,0.008507331963478486],[122,21,72,0.008777313673583564],[122,21,73,0.009070710774548164],[122,21,74,0.009394167066822402],[122,21,75,0.009753169056588505],[122,21,76,0.010151826682075307],[122,21,77,0.010592725306619241],[122,21,78,0.011076848399852698],[122,21,79,0.011603570175821571],[122,22,64,0.0036719531455198713],[122,22,65,0.003981375311638999],[122,22,66,0.004275912654781539],[122,22,67,0.00456464073214622],[122,22,68,0.004856762017729561],[122,22,69,0.0051591491386902225],[122,22,70,0.005479455645601696],[122,22,71,0.005825584948024682],[122,22,72,0.006205140497637163],[122,22,73,0.006624958437203063],[122,22,74,0.007090722780404354],[122,22,75,0.007606662982464443],[122,22,76,0.008175333562025374],[122,22,77,0.008797475242451674],[122,22,78,0.009471956897158297],[122,22,79,0.010195797410318968],[122,23,64,7.031765361293932E-4],[122,23,65,9.860635263099886E-4],[122,23,66,0.001278146803054126],[122,23,67,0.0015851505823788207],[122,23,68,0.001914389066191176],[122,23,69,0.002272745704179468],[122,23,70,0.0026677690466873076],[122,23,71,0.0031070465519830973],[122,23,72,0.003597619111466291],[122,23,73,0.004145487970070527],[122,23,74,0.004755214063298583],[122,23,75,0.005429609562523631],[122,23,76,0.006169521197109292],[122,23,77,0.006973704707275284],[122,23,78,0.007838789577216372],[122,23,79,0.008759333005595525],[122,24,64,-0.002222970837523277],[122,24,65,-0.0019696745591617367],[122,24,66,-0.00168277958691338],[122,24,67,-0.0013597510067089895],[122,24,68,-9.951380827553584E-4],[122,24,69,-5.821412552864355E-4],[122,24,70,-1.1343949434713416E-4],[122,24,71,4.1809911435405927E-4],[122,24,72,0.0010188042004467474],[122,24,73,0.0016936914370275918],[122,24,74,0.0024460523405078843],[122,24,75,0.003277145264305203],[122,24,76,0.004185987063829442],[122,24,77,0.005169244675248949],[122,24,78,0.006221225627215281],[122,24,79,0.007333966295092772],[122,25,64,-0.0050328515024410155],[122,25,65,-0.004811964566558111],[122,25,66,-0.004533201305186056],[122,25,67,-0.00419699024317966],[122,25,68,-0.003799690046782016],[122,25,69,-0.003334688705442619],[122,25,70,-0.002795019448956525],[122,25,71,-0.0021741434298245786],[122,25,72,-0.001466582274052765],[122,25,73,-6.684410327066418E-4],[122,25,74,2.221783916270268E-4],[122,25,75,0.001204872996673049],[122,25,76,0.0022767429999756756],[122,25,77,0.003432303862550351],[122,25,78,0.004663504913273077],[122,25,79,0.005959853245952046],[122,26,64,-0.00765473112136077],[122,26,65,-0.007468761681781058],[122,26,66,-0.0072012110935083026],[122,26,67,-0.006855187691070575],[122,26,68,-0.006428777719818352],[122,26,69,-0.00591566669054702],[122,26,70,-0.005309369664806511],[122,26,71,-0.004604072506185388],[122,26,72,-0.0037952753824855596],[122,26,73,-0.00288031971308678],[122,26,74,-0.001858798684896714],[122,26,75,-7.328517502414132E-4],[122,26,76,4.926561997880131E-4],[122,26,77,0.0018100700248832177],[122,26,78,0.003208992672490611],[122,26,79,0.004676445209569873],[122,27,64,-0.010021230304708513],[122,27,65,-0.009872305976337611],[122,27,66,-0.009619102177469198],[122,27,67,-0.00926707283073729],[122,27,68,-0.008815924243788324],[122,27,69,-0.008259752974161264],[122,27,70,-0.007592681130082843],[122,27,71,-0.0068097417708878945],[122,27,72,-0.005907525022250722],[122,27,73,-0.004884701945294215],[122,27,74,-0.0037424263313503518],[122,27,75,-0.002484614898240693],[122,27,76,-0.0011181066573529405],[122,27,77,3.472974988436284E-4],[122,27,78,0.0018989136742910847],[122,27,79,0.003521370750311283],[122,28,64,-0.012071640084649452],[122,28,65,-0.011961444722126947],[122,28,66,-0.011725682550979189],[122,28,67,-0.01137177666274757],[122,28,68,-0.010900922914230955],[122,28,69,-0.010307743125555347],[122,28,70,-0.009587086275480442],[122,28,71,-0.008734943093274963],[122,28,72,-0.007749086738169545],[122,28,73,-0.006629586890839955],[122,28,74,-0.00537919747493292],[122,28,75,-0.004003618541475111],[122,28,76,-0.0025116331523581743],[122,28,77,-9.151203885206139E-4],[122,28,78,7.710541185757569E-4],[122,28,79,0.0025292684796229072],[122,29,64,-0.01375409837231048],[122,29,65,-0.013683819153928124],[122,29,66,-0.013468458632444353],[122,29,67,-0.013117000173213614],[122,29,68,-0.012631979070683839],[122,29,69,-0.012008654369883394],[122,29,70,-0.011242713431918376],[122,29,71,-0.010331200599015784],[122,29,72,-0.009273144871450595],[122,29,73,-0.008070058053331547],[122,29,74,-0.006726303628216856],[122,29,75,-0.005249336947556327],[122,29,76,-0.003649817624835078],[122,29,77,-0.001941595323508931],[122,29,78,-1.415704047643103E-4],[122,29,79,0.0017305688408375641],[122,30,64,-0.015027624424986112],[122,30,65,-0.014997912832922355],[122,30,66,-0.014805685606831731],[122,30,67,-0.014461056172042725],[122,30,68,-0.013967733718294042],[122,30,69,-0.01332172122140857],[122,30,70,-0.012519644772524735],[122,30,71,-0.011559681445287405],[122,30,72,-0.010442167081593212],[122,30,73,-0.00917007301134223],[122,30,74,-0.007749352005858701],[122,30,75,-0.006189154090296022],[122,30,76,-0.004501913153310011],[122,30,77,-0.002703305590005171],[122,30,78,-8.120824939746753E-4],[122,30,79,0.0011502228265262953],[122,31,64,-0.015864008038805208],[122,31,65,-0.01587495844597427],[122,31,66,-0.015708281444685102],[122,31,67,-0.015374781690904575],[122,31,68,-0.014879166304153852],[122,31,69,-0.014218280601413134],[122,31,70,-0.013389775758995328],[122,31,71,-0.012393021704364314],[122,31,72,-0.011229689007891078],[122,31,73,-0.009904199548543938],[122,31,74,-0.008424046286755044],[122,31,75,-0.006799982803499587],[122,31,76,-0.005046083577335042],[122,31,77,-0.0031796762681921935],[122,31,78,-0.0012211475554092896],[122,31,79,8.063756648544619E-4],[122,32,64,-0.01624954986002564],[122,32,65,-0.016300699545319482],[122,32,66,-0.0161616012540803],[122,32,67,-0.015843317790635945],[122,32,68,-0.015351373736036423],[122,32,69,-0.014683543811466944],[122,32,70,-0.013838573790201753],[122,32,71,-0.012817065422543317],[122,32,72,-0.011622027544678767],[122,32,73,-0.010259297095791525],[122,32,74,-0.008737830404411846],[122,32,75,-0.007069865427645964],[122,32,76,-0.00527095593623781],[122,32,77,-0.0033598789318140285],[122,32,78,-0.0013584168574699229],[122,32,79,7.089835836317277E-4],[122,33,64,-0.016186648880647077],[122,33,65,-0.016277003397562072],[122,33,66,-0.01616706828024663],[122,33,67,-0.0158677532839645],[122,33,68,-0.015385222387994248],[122,33,69,-0.014718252393688529],[122,33,70,-0.013866733419867775],[122,33,71,-0.012832514602252784],[122,33,72,-0.011619920901448214],[122,33,73,-0.010236142116968055],[122,33,74,-0.008691494489524358],[122,33,75,-0.006999555590380037],[122,33,76,-0.005177173499686086],[122,33,77,-0.0032443515628375365],[122,33,78,-0.001224010282348567],[122,33,79,8.583718501036335E-4],[122,34,64,-0.015695232856768035],[122,34,65,-0.01582332077484782],[122,34,66,-0.01574365752544476],[122,34,67,-0.015466628534046964],[122,34,68,-0.014998869491747304],[122,34,69,-0.014340214567375158],[122,34,70,-0.013491725174853296],[122,34,71,-0.012456487530774973],[122,34,72,-0.011240093309381447],[122,34,73,-0.009850995779645617],[122,34,74,-0.008300741820727646],[122,34,75,-0.006604080520125915],[122,34,76,-0.004778949353454674],[122,34,77,-0.0028463392234481587],[122,34,78,-8.300398959264338E-4],[122,34,79,0.0012437323905529069],[122,35,64,-0.014814027066178978],[122,35,65,-0.014977988189867763],[122,35,66,-0.014929227623759273],[122,35,67,-0.01467729514737492],[122,35,68,-0.014229149969774967],[122,35,69,-0.013585718590565087],[122,35,70,-0.01274923467050081],[122,35,71,-0.011723982553377801],[122,35,72,-0.01051674192349738],[122,35,73,-0.009137111956400901],[122,35,74,-0.0075977153651722185],[122,35,75,-0.00591428304234385],[122,35,76,-0.004105620281864399],[122,35,77,-0.0021934558342624044],[122,35,78,-2.0217529855671472E-4],[122,35,79,0.0018415594159318632],[122,36,64,-0.013601656509806643],[122,36,65,-0.013799367754690877],[122,36,66,-0.013781696276428244],[122,36,67,-0.01355712704571227],[122,36,68,-0.013132824430028276],[122,36,69,-0.012510819060043641],[122,36,70,-0.011694488388713663],[122,36,71,-0.010689244065648248],[122,36,72,-0.00950294315802167],[122,36,73,-0.008146183306126396],[122,36,74,-0.006632482212796332],[122,36,75,-0.004978342152371404],[122,36,76,-0.0032032004582387107],[122,36,77,-0.0013292672059125401],[122,36,78,6.187484513306492E-4],[122,36,79,0.0026140216175321762],[122,37,64,-0.012137576364206447],[122,37,65,-0.012366819535738545],[122,37,66,-0.012380054237578132],[122,37,67,-0.012184578080214063],[122,37,68,-0.011787683717404468],[122,37,69,-0.011192491838073141],[122,37,70,-0.010403462161809884],[122,37,71,-0.009427027183063156],[122,37,72,-0.008271975385102633],[122,37,73,-0.006949722889919435],[122,37,74,-0.0054744739295728975],[122,37,75,-0.003863270799692019],[122,37,76,-0.0021359342182618976],[122,37,77,-3.1489526019799134E-4],[122,37,78,0.0015750797318164083],[122,37,79,0.0035072696495649903],[122,38,64,-0.010520268842462056],[122,38,65,-0.010778913615631833],[122,38,66,-0.010822604457635254],[122,38,67,-0.010657455935322456],[122,38,68,-0.010290864947297617],[122,38,69,-0.009727002253070542],[122,38,70,-0.008971313793229688],[122,38,71,-0.008031108711419634],[122,38,72,-0.00691592332321615],[122,38,73,-0.005637777654024984],[122,38,74,-0.004211324905004317],[122,38,75,-0.002653894471188673],[122,38,76,-9.854293887454795E-4],[122,38,77,7.716806735711811E-4],[122,38,78,0.0025928695424609484],[122,38,79,0.004451766249252937],[122,39,64,-0.008811438238077148],[122,39,65,-0.009097001190511569],[122,39,66,-0.009170129773184332],[122,39,67,-0.009035770294801586],[122,39,68,-0.008701427703368441],[122,39,69,-0.008172307848290539],[122,39,70,-0.00745476266213279],[122,39,71,-0.006556842612876411],[122,39,72,-0.005488652310961234],[122,39,73,-0.004262602211479525],[122,39,74,-0.002893556729142681],[122,39,75,-0.0013988793407095402],[122,39,76,2.016245054074827E-4],[122,39,77,0.0018858656217842096],[122,39,78,0.0036297291918065073],[122,39,79,0.005407431295711541],[122,40,64,-0.007027567850611298],[122,40,65,-0.007336759508062139],[122,40,66,-0.007437425073929524],[122,40,67,-0.007333258492176543],[122,40,68,-0.007031874589175826],[122,40,69,-0.006539565182769319],[122,40,70,-0.005863568014016901],[122,40,71,-0.0050125923899045355],[122,40,72,-0.003997177570961314],[122,40,73,-0.00282995017104689],[122,40,74,-0.0015257808296946925],[122,40,75,-1.0184066830071887E-4],[122,40,76,0.0014224417192754352],[122,40,77,0.0030255217655504887],[122,40,78,0.0046839777317999425],[122,40,79,0.006372845436339299],[122,41,64,-0.005187103414684016],[122,41,65,-0.0055160258512213034],[122,41,66,-0.0056415815588520685],[122,41,67,-0.0055660560314629995],[122,41,68,-0.0052971768897366375],[122,41,69,-0.004842425181560304],[122,41,70,-0.004209955146261106],[122,41,71,-0.003409100303536288],[122,41,72,-0.002450745455027017],[122,41,73,-0.0013476000311709803],[122,41,74,-1.143729704964014E-4],[122,41,75,0.0012321504348504666],[122,41,76,0.0026731290581092637],[122,41,77,0.004187782929970082],[122,41,78,0.005753605605273929],[122,41,79,0.0073466706163832305],[122,42,64,-0.0033097697481126584],[122,42,65,-0.0036541763504217106],[122,42,66,-0.0038014376620269475],[122,42,67,-0.00375223227902518],[122,42,68,-0.0035144091086084426],[122,42,69,-0.003096780511503887],[122,42,70,-0.0025084887396448928],[122,42,71,-0.0017594982605221652],[122,42,72,-8.609914567356106E-4],[122,42,73,1.7433253393125966E-4],[122,42,74,0.0013320557393843603],[122,42,75,0.0025959356923965413],[122,42,76,0.003947895612056291],[122,42,77,0.005368109630764135],[122,42,78,0.006835182064092954],[122,42,79,0.00832641953168886],[122,43,64,-0.0014133715954825967],[122,43,65,-0.0017689652785243702],[122,43,66,-0.0019344778448892317],[122,43,67,-0.0019087669201885542],[122,43,68,-0.0016998213886093108],[122,43,69,-0.001317954539781844],[122,43,70,-7.73400311823665E-4],[122,43,71,-7.679621115518188E-5],[122,43,72,7.603883218346649E-4],[122,43,73,0.0017255190788689552],[122,43,74,0.0028045597859837857],[122,43,75,0.003981930103078013],[122,43,76,0.0052404584491314915],[122,43,77,0.006561428960683163],[122,43,78,0.007924721684602487],[122,43,79,0.009309044915862458],[122,44,64,4.896643630282236E-4],[122,44,65,1.268904936040919E-4],[122,44,66,-5.3482235492997594E-5],[122,44,67,-4.828513862279055E-5],[122,44,68,1.3431905631141667E-4],[122,44,69,4.823280029837137E-4],[122,44,70,9.842876091277278E-4],[122,44,71,0.001628815542505469],[122,44,72,0.002404132631964098],[122,44,73,0.0032976888417306106],[122,44,74,0.004295883938954284],[122,44,75,0.005383882731070235],[122,44,76,0.006545524515852931],[122,44,77,0.007763326164970221],[122,44,78,0.009018578053393107],[122,44,79,0.010291531854204714],[122,45,64,0.0023960117714084276],[122,45,65,0.002029387358867968],[122,45,66,0.0018370783656102485],[122,45,67,0.0018244539082724071],[122,45,68,0.0019831228071455153],[122,45,69,0.0022991937794993294],[122,45,70,0.0027598454626708694],[122,45,71,0.0033528546791034572],[122,45,72,0.004066081633909819],[122,45,73,0.004887048966334668],[122,45,74,0.005802614901722864],[122,45,75,0.0067987405059946],[122,45,76,0.007860350809228306],[122,45,77,0.00897128934064526],[122,45,78,0.010114365406004307],[122,45,79,0.011271493242173788],[122,46,64,0.004315436269185257],[122,46,65,0.003947176345644647],[122,46,66,0.0037449073149682893],[122,46,67,0.0037163204749285955],[122,46,68,0.0038527144527372597],[122,46,69,0.004138101897536047],[122,46,70,0.0045581334197202705],[122,46,71,0.005099630158667289],[122,46,72,0.00575001850269447],[122,46,73,0.006496858016887153],[122,46,74,0.00732746296114252],[122,46,75,0.008228617534596038],[122,46,76,0.009186384745065215],[122,46,77,0.010186008575126838],[122,46,78,0.01121190890183684],[122,46,79,0.01224776842691553],[122,47,64,0.006257630505857545],[122,47,65,0.005888733189048775],[122,47,66,0.0056774129906209106],[122,47,67,0.005633741917159461],[122,47,68,0.005748599645396097],[122,47,69,0.006003696152085776],[122,47,70,0.006382986983664903],[122,47,71,0.006872210690260367],[122,47,72,0.00745827048134598],[122,47,73,0.008128708352137647],[122,47,74,0.008871272205951289],[122,47,75,0.009673576250059573],[122,47,76,0.01052285470294973],[122,47,77,0.011405808621144804],[122,47,78,0.012308545435773127],[122,47,79,0.013216610584847525],[122,48,64,0.008178719637093499],[122,48,65,0.007810138403557643],[122,48,66,0.00759092176429564],[122,48,67,0.007533540119193108],[122,48,68,0.007628343455034714],[122,48,69,0.007854557593143041],[122,48,70,0.008194287705515387],[122,48,71,0.008632061814785102],[122,48,72,0.009154158369623966],[122,48,73,0.009748025437415377],[122,48,74,0.010401792186359903],[122,48,75,0.011103873080189439],[122,48,76,0.01184266496711723],[122,48,77,0.012606337012350958],[122,48,78,0.013382713202279727],[122,48,79,0.01415924694028804],[122,49,64,0.010026754517145943],[122,49,65,0.009659649385432529],[122,49,66,0.009434194675539827],[122,49,67,0.009365238746045244],[122,49,68,0.00944249669838836],[122,49,69,0.009642564026761594],[122,49,70,0.009945560969453612],[122,49,71,0.010334683640863488],[122,49,72,0.01079547793124466],[122,49,73,0.011315204069709815],[122,49,74,0.011882292670498725],[122,49,75,0.012485892832483367],[122,49,76,0.013115512618668175],[122,49,77,0.013760752007820646],[122,49,78,0.014411128186140331],[122,49,79,0.014228310820423435],[122,50,64,0.011758132050652985],[122,50,65,0.01139377681644472],[122,50,66,0.011164108977274994],[122,50,67,0.011086293256612685],[122,50,68,0.01114931128328071],[122,50,69,0.011327021152448408],[122,50,70,0.011597449093844428],[122,50,71,0.01194234997545034],[122,50,72,0.012346429195723237],[122,50,73,0.012796654202929334],[122,50,74,0.013281656607457547],[122,50,75,0.013791225602197508],[122,50,76,0.014315893161475234],[122,50,77,0.014619536499885214],[122,50,78,0.014062250632908883],[122,50,79,0.013514663471380703],[122,51,64,0.013337505436059783],[122,51,65,0.012977207199023155],[122,51,66,0.012745591799117486],[122,51,67,0.012662037123763148],[122,51,68,0.012714700758335848],[122,51,69,0.012874637910442112],[122,51,70,0.01311770078538077],[122,51,71,0.013424110216488983],[122,51,72,0.013777628317863631],[122,51,73,0.014164819666337605],[122,51,74,0.014574402119904337],[122,51,75,0.014639155454014584],[122,51,76,0.014188561952276739],[122,51,77,0.013739568197092763],[122,51,78,0.013299585506973697],[122,51,79,0.012875755124201431],[122,52,64,0.014737638044191275],[122,52,65,0.014382668616063894],[122,52,66,0.014151497176781689],[122,52,67,0.014065571794535171],[122,52,68,0.014112145102776176],[122,52,69,0.014259446756303995],[122,52,70,0.014481106442345291],[122,52,71,0.014755738281843657],[122,52,72,0.014742775776795461],[122,52,73,0.014394333750260158],[122,52,74,0.01403320022169756],[122,52,75,0.013668730720722513],[122,52,76,0.013308778901830695],[122,52,77,0.012960122602968055],[122,52,78,0.01262879875968547],[122,52,79,0.012320347122612332],[122,53,64,0.014016350013171995],[122,53,65,0.01436960499235499],[122,53,66,0.01460008286780308],[122,53,67,0.014684479169056708],[122,53,68,0.014636553233615618],[122,53,69,0.014490921106347343],[122,53,70,0.014276234425250401],[122,53,71,0.014015581867031274],[122,53,72,0.013727403172098834],[122,53,73,0.013426316933559237],[122,53,74,0.013123860782605308],[122,53,75,0.01282914285390798],[122,53,76,0.012549403661341293],[122,53,77,0.012290487754942422],[122,53,78,0.012057224762710069],[122,53,79,0.01185371964384207],[122,54,64,0.013127993675296682],[122,54,65,0.013475058758225293],[122,54,66,0.013701683304741238],[122,54,67,0.013782881251525603],[122,54,68,0.013733442573763757],[122,54,69,0.013590726581160433],[122,54,70,0.013385605243664256],[122,54,71,0.013142849269269508],[122,54,72,0.012882078167009542],[122,54,73,0.012618625222942405],[122,54,74,0.01236431590583766],[122,54,75,0.012128158470045159],[122,54,76,0.011916945769783865],[122,54,77,0.011735767540192921],[122,54,78,0.011588432634253135],[122,54,79,0.01147780092929384],[122,55,64,0.01245395847815306],[122,55,65,0.012793993906615961],[122,55,66,0.013014596241536145],[122,55,67,0.01308933144010803],[122,55,68,0.013034061423945373],[122,55,69,0.012888786971363938],[122,55,70,0.012686549876939322],[122,55,71,0.012453802824687494],[122,55,72,0.01221139003299088],[122,55,73,0.011975443933141238],[122,55,74,0.011758196293864574],[122,55,75,0.01156870245426343],[122,55,76,0.011413477574086606],[122,55,77,0.011297044051500026],[122,55,78,0.011222389492926971],[122,55,79,0.011191334845244249],[122,56,64,0.01199163046832113],[122,56,65,0.012323996087814244],[122,56,66,0.012536624494638845],[122,56,67,0.012601883730757461],[122,56,68,0.012536732572092844],[122,56,69,0.012383674804181379],[122,56,70,0.012177840255812722],[122,56,71,0.011947337979140762],[122,56,72,0.011714261780122892],[122,56,73,0.011495612853283484],[122,56,74,0.011304137840935334],[122,56,75,0.011149080886134099],[122,56,76,0.01103684849454539],[122,56,77,0.01097158626147703],[122,56,78,0.010955666754935707],[122,56,79,0.010990088071912036],[122,57,64,0.011731924604812524],[122,57,65,0.012056196784008452],[122,57,66,0.012259173887667585],[122,57,67,0.012312284470575365],[122,57,68,0.012233591523652278],[122,57,69,0.012067930677301985],[122,57,70,0.01185240902766688],[122,57,71,0.011616741491250917],[122,57,72,0.01138427545217048],[122,57,73,0.01117293351457544],[122,57,74,0.010996072600645966],[122,57,75,0.010863257882595624],[122,57,76,0.010780950282195242],[122,57,77,0.010753106511898345],[122,57,78,0.010781690866081812],[122,57,79,0.010867098197430444],[122,58,64,0.011659806721758863],[122,58,65,0.011975786850610895],[122,58,66,0.012167755310916654],[122,58,67,0.012206459707123571],[122,58,68,0.012111056367087005],[122,58,69,0.011928513684242364],[122,58,70,0.011697779364724182],[122,58,71,0.011450100173387044],[122,58,72,0.011210060019555641],[122,58,73,0.010996537061182572],[122,58,74,0.010823578000611817],[122,58,75,0.010701187991910327],[122,58,76,0.010636034823787636],[122,58,77,0.010632066281908647],[122,58,78,0.010691039828321269],[122,58,79,0.010812963961988805],[122,59,64,0.011754883915124107],[122,59,65,0.012062599243114758],[122,59,66,0.0122425560587946],[122,59,67,0.01226507162184462],[122,59,68,0.012150366367297192],[122,59,69,0.011947319967128783],[122,59,70,0.011696561990324502],[122,59,71,0.011430775588821399],[122,59,72,0.011175743589311263],[122,59,73,0.010951314414105743],[122,59,74,0.01077228594922635],[122,59,75,0.010649205723290991],[122,59,76,0.01058908600364019],[122,59,77,0.010596032654927567],[122,59,78,0.01067178683850622],[122,59,79,0.010816178856600009],[122,60,64,0.011992064800161364],[122,60,65,0.012291762432467228],[122,60,66,0.012459081989694261],[122,60,67,0.012464145627824564],[122,60,68,0.012328190899353364],[122,60,69,0.012101771034567332],[122,60,70,0.01182702107644532],[122,60,71,0.011537946361631416],[122,60,72,0.011261471578193079],[122,60,73,0.011018410348860488],[122,60,74,0.01082435341435057],[122,60,75,0.010690473735384544],[122,60,76,0.010624247073587934],[122,60,77,0.01063008684907037],[122,60,78,0.0107098923045454],[122,60,79,0.010863509230593687],[122,61,64,0.012342290979847906],[122,61,65,0.012634425905950462],[122,61,66,0.01278887194815853],[122,61,67,0.012775769609476453],[122,61,68,0.012617310234782202],[122,61,69,0.012365473385082967],[122,61,70,0.012063710571829207],[122,61,71,0.011747219665859343],[122,61,72,0.011443992409051371],[122,61,73,0.011175783025829873],[122,61,74,0.010958995976022368],[122,61,75,0.010805491133162296],[122,61,76,0.010723304912571063],[122,61,77,0.010717286109876815],[122,61,78,0.01078964544147434],[122,61,79,0.010940418002024792],[122,62,64,0.012773340946240051],[122,62,65,0.013058559032369535],[122,62,66,0.013200285772087105],[122,62,67,0.013168866666357594],[122,62,68,0.012987369579575133],[122,62,69,0.012708950866365422],[122,62,70,0.012378182413153648],[122,62,71,0.012031313357250252],[122,62,72,0.01169731219146042],[122,62,73,0.011398830417396732],[122,62,74,0.01115308576499984],[122,62,75,0.010972663237020388],[122,62,76,0.01086623247610588],[122,62,77,0.010839180187126488],[122,62,78,0.010894156576899879],[122,62,79,0.011031534995757939],[122,63,64,0.013250707506964905],[122,63,65,0.013529824440308433],[122,63,66,0.013659367078464246],[122,63,67,0.013610042595568705],[122,63,68,0.013405707637397749],[122,63,69,0.013100451077517804],[122,63,70,0.012739767951843064],[122,63,71,0.012360810094772185],[122,63,72,0.011993419735646186],[122,63,73,0.011661084968520695],[122,63,74,0.011381815096285457],[122,63,75,0.011168934090148042],[122,63,76,0.011031790643093904],[122,63,77,0.010976383529598812],[122,63,78,0.011005901212035821],[122,63,79,0.011121174855105321],[122,64,64,0.013738549688357101],[122,64,65,0.014012526916760025],[122,64,66,0.014130781880085637],[122,64,67,0.014064509207405453],[122,64,68,0.013838260833522848],[122,64,69,0.013506826985996402],[122,64,70,0.013116433796688939],[122,64,71,0.012704984670355177],[122,64,72,0.012303083124191323],[122,64,73,0.01193497770752921],[122,64,74,0.011619426991913354],[122,64,75,0.011370482860645724],[122,64,76,0.011198190563278932],[122,64,77,0.011109204232939223],[122,64,78,0.011107316791194522],[122,64,79,0.011193903384663001],[122,65,64,0.014200719915497274],[122,65,65,0.014470638680989443],[122,65,66,0.014578833933427128],[122,65,67,0.014497084417522621],[122,65,68,0.014250544185147394],[122,65,69,0.013894494783288035],[122,65,70,0.01347571312771301],[122,65,71,0.013032705624144332],[122,65,72,0.01259671892907793],[122,65,73,0.012192672891761612],[122,65,74,0.011840013660415219],[122,65,75,0.011553485173641888],[122,65,76,0.011343817493311896],[122,65,77,0.011218330666451075],[122,65,78,0.011181453029258015],[122,65,79,0.011235153084511685],[122,66,64,0.014601867108166737],[122,66,65,0.014868901725587153],[122,66,66,0.01496855755464475],[122,66,67,0.014873269896320991],[122,66,68,0.014608709642450217],[122,66,69,0.014230468844031618],[122,66,70,0.013785713380090436],[122,66,71,0.01331341206942449],[122,66,72,0.012845335012700384],[122,66,73,0.012406974128656597],[122,66,74,0.012018383861798104],[122,66,75,0.011694940276023547],[122,66,76,0.011448016983062205],[122,66,77,0.011285576584855237],[122,66,78,0.011212676533511073],[122,66,79,0.011231888529394477],[122,67,64,0.014908616161025833],[122,67,65,0.015174007743818238],[122,67,66,0.01526688846721363],[122,67,67,0.015160406883042743],[122,67,68,0.014880682552444551],[122,67,69,0.014483474482670115],[122,67,70,0.01401620102883137],[122,67,71,0.013518166486598707],[122,67,72,0.01302154769087256],[122,67,73,0.012552302757207862],[122,67,74,0.01213099993684184],[122,67,75,0.011773564792607135],[122,67,76,0.011491944136738985],[122,67,77,0.01129468540103874],[122,67,78,0.011187430333448779],[122,67,79,0.011173322131009513],[122,68,64,0.0150908240967854],[122,68,65,0.015355855980196923],[122,68,66,0.015443913061501665],[122,68,67,0.01532891058873885],[122,68,68,0.015037376714927815],[122,68,69,0.014625139020338476],[122,68,70,0.014139764025793027],[122,68,71,0.013620784069650435],[122,68,72,0.013100673863993379],[122,68,73,0.012605749107823623],[122,68,74,0.012156985118415358],[122,68,75,0.011770753677961033],[122,68,76,0.01145947652585474],[122,68,77,0.011232194155821391],[122,68,78,0.01109504880001775],[122,68,79,0.011051680697380967],[122,69,64,0.01512291848133719],[122,69,65,0.015388894777823688],[122,69,66,0.01547420201901258],[122,69,67,0.01535358931928651],[122,69,68,0.015053994326417195],[122,69,69,0.014631267585094263],[122,69,70,0.014133058382287773],[122,69,71,0.013599045116212068],[122,69,72,0.013061904521912224],[122,69,73,0.012548202869848044],[122,69,74,0.012079207083441547],[122,69,75,0.011671613957248524],[122,69,76,0.011338195890297853],[122,69,77,0.011088361777632958],[122,69,78,0.010928631925585332],[122,69,79,0.010863026070978367],[122,70,64,0.014999172271373784],[122,70,65,0.015267759732056546],[122,70,66,0.015352797336376673],[122,70,67,0.015229968886996292],[122,70,68,0.014926642421477499],[122,70,69,0.014498651745861756],[122,70,70,0.01399366528699801],[122,70,71,0.013451423716879398],[122,70,72,0.012904704892625891],[122,70,73,0.012380210701031133],[122,70,74,0.011899373732266462],[122,70,75,0.011479081942889453],[122,70,76,0.011132319701044256],[122,70,77,0.010868723835081431],[122,70,78,0.010695053529156926],[122,70,79,0.010615573123856234],[122,71,64,0.014758740061260085],[122,71,65,0.015032972483663342],[122,71,66,0.015121581665783505],[122,71,67,0.015001325316105117],[122,71,68,0.014699948292681092],[122,71,69,0.014273084287247056],[122,71,70,0.013768238991228742],[122,71,71,0.013225039401525451],[122,71,72,0.012676195994569176],[122,71,73,0.012148386685911634],[122,71,74,0.011663060476099203],[122,71,75,0.011237158919229676],[122,71,76,0.010883753783416078],[122,71,77,0.010612599500821374],[122,71,78,0.010430599227359451],[122,71,79,0.010342183546738937],[122,72,64,0.014442151930895212],[122,72,65,0.01472634096395248],[122,72,66,0.014823621402103193],[122,72,67,0.014711991086013069],[122,72,68,0.01441944433496983],[122,72,69,0.014001096636678631],[122,72,70,0.01350399888663648],[122,72,71,0.012967403314460875],[122,72,72,0.012423722941182054],[122,72,73,0.011899412584630467],[122,72,74,0.011415769290930014],[122,72,75,0.010989650306114518],[122,72,76,0.010634106935095413],[122,72,77,0.010358932864025023],[122,72,78,0.010171125744901333],[122,72,79,0.010075261056195876],[122,73,64,0.0140834747184812],[122,73,65,0.014382883696946602],[122,73,66,0.014494853717445869],[122,73,67,0.014398803938617736],[122,73,68,0.014122798065821845],[122,73,69,0.013721021625543955],[122,73,70,0.013239702645670908],[122,73,71,0.012717399448538004],[122,73,72,0.012185956377757037],[122,73,73,0.011671380665287034],[122,73,74,0.011194638297596394],[122,73,75,0.010772366976496093],[122,73,76,0.010417504504142545],[122,73,77,0.010139831151208645],[122,73,78,0.009946424790671256],[122,73,79,0.009842027795203205],[122,74,64,0.013712366828072965],[122,74,65,0.014032896389388051],[122,74,66,0.014166158701173288],[122,74,67,0.014093179031665312],[122,74,68,0.013841875959059644],[122,74,69,0.013465035943756304],[122,74,70,0.013007650627928278],[122,74,71,0.012507231824636872],[122,74,72,0.011994761757432974],[122,74,73,0.011495563824211035],[122,74,74,0.011030091730264448],[122,74,75,0.010614635073335627],[122,74,76,0.01026193969844032],[122,74,77,0.009981741370751288],[122,74,78,0.009781211539207444],[122,74,79,0.00966531417989936],[122,75,64,0.013356112971700154],[122,75,65,0.013703999315508848],[122,75,66,0.013865413222347649],[122,75,67,0.013823163752813823],[122,75,68,0.013604790958706885],[122,75,69,0.013261187512851814],[122,75,70,0.012835676766809377],[122,75,71,0.012364360108190343],[122,75,72,0.011877059448717066],[122,75,73,0.011398179387421369],[122,75,74,0.010947486886332219],[122,75,75,0.010540806535378498],[122,75,76,0.010190629719655783],[122,75,77,0.009906636234046584],[122,75,78,0.00969612711577504],[122,75,79,0.009564367682936005],[122,76,64,0.01304163598231966],[122,76,65,0.013423162623759597],[122,76,66,0.013619523643960534],[122,76,67,0.013615472335867039],[122,76,68,0.013437930841049864],[122,76,69,0.013135404994961975],[122,76,70,0.012749123231691506],[122,76,71,0.012313421068941241],[122,76,72,0.011856673227643662],[122,76,73,0.011402144330523362],[122,76,74,0.010968756016278676],[122,76,75,0.010571768547366541],[122,76,76,0.010223375227604995],[122,76,77,0.00993320817930256],[122,76,78,0.00970875425669255],[122,76,79,0.00955568009119106],[122,77,64,0.012797482688194],[122,77,65,0.013218706539188373],[122,77,66,0.013456434357270213],[122,77,67,0.013497497252492302],[122,77,68,0.013367964418387536],[122,77,69,0.013113486474774535],[122,77,70,0.012772795976340082],[122,77,71,0.012378133103004776],[122,77,72,0.011956164519799788],[122,77,73,0.011528819467748705],[122,77,74,0.011114040929011634],[122,77,75,0.010726449953197546],[122,77,76,0.010377921472137114],[122,77,77,0.010078070165852783],[122,77,78,0.009834645171246274],[122,77,79,0.009653832645223511],[122,78,64,0.012655780707979491],[122,78,65,0.013122273295965051],[122,78,66,0.013407108957778677],[122,78,67,0.013499294198681686],[122,78,68,0.013423822417188603],[122,78,69,0.013223064184976338],[122,78,70,0.01293289811297053],[122,78,71,0.012583180861731606],[122,78,72,0.01219864958128223],[122,78,73,0.011799739984962856],[122,78,74,0.011403317914697866],[122,78,75,0.011023322501401166],[122,78,76,0.010671319267101385],[122,78,77,0.010356961753014812],[122,78,78,0.010088360488485729],[122,78,79,0.009872358337500445],[122,79,64,0.012634474507470156],[122,79,65,0.013151159302360054],[122,79,66,0.013488175000661464],[122,79,67,0.01363677747058808],[122,79,68,0.013620688413469702],[122,79,69,0.013478630740999486],[122,79,70,0.01324331764327001],[122,79,71,0.012941970036386015],[122,79,72,0.012597200324887942],[122,79,73,0.012227809935134868],[122,79,74,0.01184949849643805],[122,79,75,0.01147548279622892],[122,79,76,0.011117023881263814],[122,79,77,0.010783860917071914],[122,79,78,0.01048455065074755],[122,79,79,0.010226711545798762],[122,80,64,0.012683539607275255],[122,80,65,0.013254757289534205],[122,80,66,0.013649184159156714],[122,80,67,0.01386044552895723],[122,80,68,0.013910860229659861],[122,80,69,0.013835200110791004],[122,80,70,0.01366272107336739],[122,80,71,0.013417735380443838],[122,80,72,0.013120479788580506],[122,80,73,0.012787895218066942],[122,80,74,0.01243431585169976],[122,80,75,0.01207206580558234],[122,80,76,0.011711961765023204],[122,80,77,0.011363720222376823],[122,80,78,0.011036268189754202],[122,80,79,0.010737956485920224],[122,81,64,0.012750559352619057],[122,81,65,0.013379874862286461],[122,81,66,0.013836883767533765],[122,81,67,0.014117743149147684],[122,81,68,0.014243306087974873],[122,81,69,0.014244162798161515],[122,81,70,0.014145847824441242],[122,81,71,0.013969478763796284],[122,81,72,0.013732617058816229],[122,81,73,0.013450037633563885],[122,81,74,0.013134405256564483],[122,81,75,0.01279685577497708],[122,81,76,0.01244748061912421],[122,81,77,0.012095713225524609],[122,81,78,0.01175061626749588],[122,81,79,0.011421068813217222],[122,82,64,0.012799090624042057],[122,82,65,0.013489070426333395],[122,82,66,0.01401330952809835],[122,82,67,0.014370678195151504],[122,82,68,0.014580562288255756],[122,82,69,0.01466921942844643],[122,82,70,0.014658242419074022],[122,82,71,0.014565278648982702],[122,82,72,0.014404895789543862],[122,82,73,0.014189353111979495],[122,82,74,0.013929276277036395],[122,82,75,0.01363423371627283],[122,82,76,0.013313212986886504],[122,82,77,0.01297499573827139],[122,82,78,0.012628430176377525],[122,82,79,0.012282600149359458],[122,83,64,0.012806170490454278],[122,83,65,0.013558218940654235],[122,83,66,0.014153440543567155],[122,83,67,0.014593599865499225],[122,83,68,0.014896668419680811],[122,83,69,0.015084503672302739],[122,83,70,0.01517459215442934],[122,83,71,0.015180865309948463],[122,83,72,0.015114585113300197],[122,83,73,0.014985131526796095],[122,83,74,0.014800689582879363],[122,83,75,0.014568834153866027],[122,83,76,0.014297010744232386],[122,83,77,0.01399291090643621],[122,83,78,0.013664741138542642],[122,83,79,0.01332138436840475],[122,84,64,0.01275998946626122],[122,84,65,0.013574241015035196],[122,84,66,0.014243013241344415],[122,84,67,0.014771129985680368],[122,84,68,0.015175248443056708],[122,84,69,0.015472842761586038],[122,84,70,0.015677193218617113],[122,84,71,0.0157983147047392],[122,84,72,0.01584387900179448],[122,84,73,0.015820034554745514],[122,84,74,0.01573212141731399],[122,84,75,0.015585279340830979],[122,84,76,0.015384947260555669],[122,84,77,0.015137252711821217],[122,84,78,0.014849289977632144],[122,84,79,0.014529286027530787],[122,85,64,0.012657737041934883],[122,85,65,0.013533000933785063],[122,85,66,0.014276499618418276],[122,85,67,0.014896252549145454],[122,85,68,0.01540774254088342],[122,85,69,0.015824160113280233],[122,85,70,0.01615454931300105],[122,85,71,0.016404864546151855],[122,85,72,0.01657223258518353],[122,85,73,0.016505941091279605],[122,85,74,0.016508744251882496],[122,85,75,0.016578421216876065],[122,85,76,0.01656138753553848],[122,85,77,0.0163925875072348],[122,85,78,0.016167089591697936],[122,85,79,0.015891989215827188],[122,86,64,0.012503625550148853],[122,86,65,0.013437379634983287],[122,86,66,0.014255255732635419],[122,86,67,0.014968567247018014],[122,86,68,0.0155917952051321],[122,86,69,0.01613402518073777],[122,86,70,0.016549037693471196],[122,86,71,0.01619802386244068],[122,86,72,0.015918990520092817],[122,86,73,0.01571320922416258],[122,86,74,0.015582187085711852],[122,86,75,0.015526964757288835],[122,86,76,0.015547534238402102],[122,86,77,0.01564237820613077],[122,86,78,0.015808132277725866],[122,86,79,0.016039371322500127],[122,87,64,0.012307097950533353],[122,87,65,0.013295528203762733],[122,87,66,0.014185845908519299],[122,87,67,0.014992712288063245],[122,87,68,0.015729804618842803],[122,87,69,0.016402355267640247],[122,87,70,0.016210197891652667],[122,87,71,0.015709824774054137],[122,87,72,0.015277336940724258],[122,87,73,0.014918036584354427],[122,87,74,0.014637284406506527],[122,87,75,0.014439727447245258],[122,87,76,0.014328653233916579],[122,87,77,0.014305472129139964],[122,87,78,0.014369329437690625],[122,87,79,0.014516848523018874],[122,88,64,0.012081224669833827],[122,88,65,0.013119306999371024],[122,88,66,0.014078547699284622],[122,88,67,0.014976961401567014],[122,88,68,0.01582763800174007],[122,88,69,0.01661328840460142],[122,88,70,0.015904242167169437],[122,88,71,0.015248217862045789],[122,88,72,0.014653740013776775],[122,88,73,0.01413027961205988],[122,88,74,0.01368726678122784],[122,88,75,0.013333234341610135],[122,88,76,0.013075094698873566],[122,88,77,0.012917552146785022],[122,88,78,0.012862652326974524],[122,88,79,0.012909470258857181],[122,89,64,0.011841294218754161],[122,89,65,0.012922915127097414],[122,89,66,0.013946042249315041],[122,89,67,0.014931999534688664],[122,89,68,0.015893517230290633],[122,89,69,0.0164840432570289],[122,89,70,0.01562907969352316],[122,89,71,0.014814609064693422],[122,89,72,0.014053304887465328],[122,89,73,0.013358868912288872],[122,89,74,0.012744939844740708],[122,89,75,0.012224140130346381],[122,89,76,0.011807263497624588],[122,89,77,0.011502605580714599],[122,89,78,0.011315439577899237],[122,89,79,0.011247638548650712],[122,90,64,0.011603601920076388],[122,90,65,0.01272171458565677],[122,90,66,0.013802294331210056],[122,90,67,0.014869881400725447],[122,90,68,0.015937078707235982],[122,90,69,0.016379654234763313],[122,90,70,0.015381277960150335],[122,90,71,0.014409191680344133],[122,90,72,0.01348011618302285],[122,90,73,0.012611967499262933],[122,90,74,0.011822650845239249],[122,90,75,0.011129000095255085],[122,90,76,0.010545865768319583],[122,90,77,0.010085354112608871],[122,90,78,0.009756219482591571],[122,90,79,0.009563411825267928],[122,91,64,0.011384440723040314],[122,91,65,0.012531253066578367],[122,91,66,0.013661625986900395],[122,91,67,0.014803176703956075],[122,91,68,0.01596861114309995],[122,91,69,0.0162926438488895],[122,91,70,0.015156582011890348],[122,91,71,0.014031319072758522],[122,91,72,0.012937450841059097],[122,91,73,0.011897013392496523],[122,91,74,0.010932153755666562],[122,91,75,0.010063953795840222],[122,91,76,0.00931141058888408],[122,91,77,0.008690576155452694],[122,91,78,0.008213859010626538],[122,91,79,0.0078894895802408],[122,92,64,0.011199297744757987],[122,92,65,0.012366489052889213],[122,92,66,0.013537987381648426],[122,92,67,0.01474430555874099],[122,92,68,0.015998474620999906],[122,92,69,0.016215255432502008],[122,92,70,0.014950274888707017],[122,92,71,0.013679731604442417],[122,92,72,0.012427859037446556],[122,92,73,0.01122064465214587],[122,92,74,0.010084371439245397],[122,92,75,0.00904432039275975],[122,92,76,0.008123637566890147],[122,92,77,0.0073423688866828445],[122,92,78,0.006716665445575878],[122,92,79,0.006258161592919814],[122,93,64,0.011062259869118473],[122,93,65,0.01224122255841694],[122,93,66,0.013444428181532707],[122,93,67,0.014705067333943713],[122,93,68,0.0160367040449485],[122,93,69,0.016139758590316928],[122,93,70,0.014757376574959676],[122,93,71,0.013352635379496686],[122,93,72,0.011953111061378592],[122,93,73,0.010588505090482175],[122,93,74,0.009289053476717091],[122,93,75,0.00808410460652772],[122,93,76,0.007000869752709523],[122,93,77,0.006063349748008423],[122,93,78,0.005291440846267852],[122,93,79,0.004700222338737148],[122,94,64,0.010985631445806271],[122,94,65,0.01216773456498153],[122,94,66,0.013392772487911334],[122,94,67,0.01469636588719715],[122,94,68,0.016092799819486962],[122,94,69,0.01605857831493456],[122,94,70,0.014572678981828369],[122,94,71,0.013047630568762483],[122,94,72,0.011514008214354818],[122,94,73,0.010004929035753465],[122,94,74,0.008554328374556799],[122,94,75,0.007195412392577738],[122,94,76,0.005959291330612989],[122,94,77,0.004873797244396811],[122,94,78,0.003962489539774443],[122,94,79,0.003243851147265422],[122,95,64,0.010979766865429112],[122,95,65,0.01215663795133043],[122,95,66,0.013393500105130225],[122,95,67,0.014728133905882157],[122,95,68,0.016175708373814105],[122,95,69,0.015964245303907373],[122,95,70,0.014390614686103314],[122,95,71,0.012761487268295717],[122,95,72,0.011110055943781715],[122,95,73,0.009472503654810302],[122,95,74,0.00788614897772361],[122,95,75,0.006387775491778865],[122,95,76,0.005012149594173655],[122,95,77,0.003790730900648998],[122,95,78,0.0027505788543173842],[122,95,79,0.0019134586586374966],[122,96,64,0.011053120540156273],[122,96,65,0.01221694246374306],[122,96,66,0.013455836679263342],[122,96,67,0.014809458841829059],[122,96,68,0.016293994925543905],[122,96,69,0.01584916521502073],[122,96,70,0.014204957334354956],[122,96,71,0.012489767008271167],[122,96,72,0.01073899756932287],[122,96,73,0.00899150746225854],[122,96,74,0.007287630007861213],[122,96,75,0.005667384088328501],[122,96,76,0.004168880760630823],[122,96,77,0.0028269302582139173],[122,96,78,0.0016718533013546743],[122,96,79,7.285001061526987E-4],[122,97,64,0.011212516591635179],[122,97,65,0.012356336052730395],[122,97,66,0.013588055024910293],[122,97,67,0.014948912713705907],[122,97,68,0.016456210676902387],[122,97,69,0.015705204785984368],[122,97,70,0.01400835179425362],[122,97,71,0.012226288183953767],[122,97,72,0.010396207094653297],[122,97,73,0.008559223757019186],[122,97,74,0.006758276738628557],[122,97,75,0.005036226874857797],[122,97,76,0.0034341592238811714],[122,97,77,0.001989892817400553],[122,97,78,7.367024169482847E-4],[122,97,79,-2.9774406669926293E-4],[122,98,64,0.011463640338334816],[122,98,65,0.012581684692251528],[122,98,66,0.0137979897531276],[122,98,67,0.015155087853951582],[122,98,68,0.016671456448744033],[122,98,69,0.015523092919846784],[122,98,70,0.013791672295219685],[122,98,71,0.011962433824004895],[122,98,72,0.010073939722397231],[122,98,73,0.008169127832453323],[122,98,74,0.006293103904338146],[122,98,75,0.004491137887791852],[122,98,76,0.002806869887595592],[122,98,77,0.001280730850941106],[122,98,78,-5.1417526982993944E-5],[122,98,79,-0.001159419765220086],[122,99,64,0.011811753481989967],[122,99,65,0.012899752606506052],[122,99,66,0.014093767125600662],[122,99,67,0.015437340495152111],[122,99,68,0.01689936925673265],[122,99,69,0.015291634999568749],[122,99,70,0.013543206949271852],[122,99,71,0.011686300244658695],[122,99,72,0.00976043880621536],[122,99,73,0.007809946904014353],[122,99,74,0.005881644016580398],[122,99,75,0.004022749534680255],[122,99,76,0.0022790032586829227],[122,99,77,6.930070339068955E-4],[122,99,78,-6.972077308819176E-4],[122,99,79,-0.001859382506850044],[122,100,64,0.01226263471672486],[122,100,65,0.013318144653886015],[122,100,66,0.014484751887443218],[122,100,67,0.015806743923243587],[122,100,68,0.01659657409520486],[122,100,69,0.01499673884491105],[122,100,70,0.013247667180430344],[122,100,71,0.011381685261662942],[122,100,72,0.009438898081638204],[122,100,73,0.007464591789023092],[122,100,74,0.005506844336235873],[122,100,75,0.0036143512894851186],[122,100,76,0.0018344730169797502],[122,100,77,2.1150885223956446E-4],[122,100,78,-0.0012147967851511314],[122,100,79,-0.002410511934669566],[122,101,64,0.012821424002726393],[122,101,65,0.013843932323663521],[122,101,66,0.014979957034142458],[122,101,67,0.016274282005963474],[122,101,68,0.016203619178080348],[122,101,69,0.014623640770192244],[122,101,70,0.012888604213649341],[122,101,71,0.011030673490410349],[122,101,72,0.00909018796479358],[122,101,73,0.00711299076156019],[122,101,74,0.005147969975839257],[122,101,75,0.0032448198006055223],[122,101,76,0.0014520280249718256],[122,101,77,-1.8490427539985063E-4],[122,101,78,-0.0016250056618761417],[122,101,79,-0.002833135295099767],[122,102,64,0.013466859095090952],[122,102,65,0.01445543014628937],[122,102,66,0.015557373215795835],[122,102,67,0.01681773297325235],[122,102,68,0.015742882148229408],[122,102,69,0.014194794442455097],[122,102,70,0.012488506409526996],[122,102,71,0.0106557376745982],[122,102,72,0.008736692172846982],[122,102,73,0.006777332318042226],[122,102,74,0.004826869574114548],[122,102,75,0.0029354787188962156],[122,102,76,0.0011522424478752214],[122,102,77,-4.766676752204068E-4],[122,102,78,-0.0019095685508057928],[122,102,79,-0.0031105964164167047],[122,103,64,0.01416051393792756],[122,103,65,0.01511239687423271],[122,103,66,0.016175121204804147],[122,103,67,0.016583906445602186],[122,103,68,0.01525900405640012],[122,103,69,0.013755957270727126],[122,103,70,0.012094063510429673],[122,103,71,0.010304279594693398],[122,103,72,0.00842625651504463],[122,103,73,0.006505584609744409],[122,103,74,0.004591257208927997],[122,103,75,0.002733360180444558],[122,103,76,9.80994161197603E-4],[122,103,77,-6.19564386227194E-4],[122,103,78,-0.0020264577925680704],[122,103,79,-0.003203592609429508],[122,104,64,0.014867101553025043],[122,104,65,0.01577812539950604],[122,104,66,0.01679530978558805],[122,104,67,0.016060595622756843],[122,104,68,0.014791543425048358],[122,104,69,0.013347177622838479],[122,104,70,0.01174559807507155],[122,104,71,0.01001666604800241],[122,104,72,0.008199039190999128],[122,104,73,0.0063374169783855195],[122,104,74,0.004480004751085851],[122,104,75,0.0026762038528747112],[122,104,76,9.745347132062114E-4],[122,104,77,-5.792009141995234E-4],[122,104,78,-0.0019435129864298795],[122,104,79,-0.0030825665394919005],[122,105,64,0.015556564138803174],[122,105,65,0.01642150175926149],[122,105,66,0.016604876916325118],[122,105,67,0.015574919034531788],[122,105,68,0.014373071649293615],[122,105,69,0.013000959786655828],[122,105,70,0.011475306406193386],[122,105,71,0.009824550511809704],[122,105,72,0.008085916364369693],[122,105,73,0.006302691078134229],[122,105,74,0.004521718704731138],[122,105,75,0.0027911182787000027],[122,105,76,0.00115823266504153],[122,105,77,-3.32185584446526E-4],[122,105,78,-0.001639545788826565],[122,105,79,-0.0027287431535267773],[122,106,64,0.016206142350825542],[122,106,65,0.016932569391192125],[122,106,66,0.016110812118967203],[122,106,67,0.015150965999274575],[122,106,68,0.014027457740530018],[122,106,69,0.012740665863908296],[122,106,70,0.011305785185402756],[122,106,71,0.009749529518046226],[122,106,72,0.008107270605803055],[122,106,73,0.006420381040765243],[122,106,74,0.0047337891384918365],[122,106,75,0.0030937531330850173],[122,106,76,0.0015458614364732039],[122,106,77,1.332650891615232E-4],[122,106,78,-0.0011048520835444146],[122,106,79,-0.00213456070081781],[122,107,64,0.016802798633115748],[122,107,65,0.016435623651275398],[122,107,66,0.015683034683773026],[122,107,67,0.014802372177218956],[122,107,68,0.013767826107620208],[122,107,69,0.012578604482384554],[122,107,70,0.011248262005094318],[122,107,71,0.00980152332856209],[122,107,72,0.008271527266895456],[122,107,73,0.0066972682202046385],[122,107,74,0.005121242556500367],[122,107,75,0.003587307105744591],[122,107,76,0.0021387563276588735],[122,107,77,8.166241214329721E-4],[122,107,78,-3.4178434418164996E-4],[122,107,79,-0.0013041259835782353],[122,108,64,0.016599172903046622],[122,108,65,0.015998213306891912],[122,108,66,0.015322551068688068],[122,108,67,0.014529819870102505],[122,108,68,0.0135941852326989],[122,108,69,0.012513804161147868],[122,108,70,0.011300527638648162],[122,108,71,0.009976878792551477],[122,108,72,0.008573436744824432],[122,108,73,0.007126408594893085],[122,108,74,0.005675396948990273],[122,108,75,0.004261369851109928],[122,108,76,0.0029248394080590035],[122,108,77,0.0017042548383912153],[122,108,78,6.346151159377218E-4],[122,108,79,-2.536941727837568E-4],[122,109,64,0.016132534615874043],[122,109,65,0.0156055957754189],[122,109,66,0.015014611565993128],[122,109,67,0.01431819667721101],[122,109,68,0.013490725263565415],[122,109,69,0.012529469329621915],[122,109,70,0.011444568054960122],[122,109,71,0.010256192428289311],[122,109,72,0.008992100750577776],[122,109,73,0.00768537104915147],[122,109,74,0.006372317391215717],[122,109,75,0.005090596563113171],[122,109,76,0.003877511056141409],[122,109,77,0.002768513774216575],[122,109,78,0.001795919356592019],[122,109,79,9.878264939921027E-4],[122,110,64,0.015669238932398456],[122,110,65,0.015223911634482726],[122,110,66,0.014725399623739917],[122,110,67,0.014133410713959188],[122,110,68,0.013422782690836204],[122,110,69,0.012590117149768444],[122,110,70,0.01164389433145554],[122,110,71,0.010601851916425951],[122,110,72,0.009488740832835763],[122,110,73,0.008334244884843581],[122,110,74,0.0071710706774463905],[122,110,75,0.006033213833828041],[122,110,76,0.004954407018412967],[122,110,77,0.003966754795998499],[122,110,78,0.0030995598778044424],[122,110,79,0.0023783448325290766],[122,111,64,0.015154480714666957],[122,111,65,0.01479847388786891],[122,111,66,0.014400268145199187],[122,111,67,0.013920788744500472],[122,111,68,0.013335622662397458],[122,111,69,0.012640963775177885],[122,111,70,0.011843741565977764],[122,111,71,0.010959238078660968],[122,111,72,0.010009069494463958],[122,111,73,0.009019316915005612],[122,111,74,0.008018812237125179],[122,111,75,0.00703758457191477],[122,111,76,0.006105472224600289],[122,111,77,0.005250904816395809],[122,111,78,0.004499859697066257],[122,111,79,0.0038749963708768786],[122,112,64,0.014534632885020589],[122,112,65,0.014274430881702693],[122,112,66,0.013983707936004567],[122,112,67,0.013624802208953566],[122,112,68,0.013174385032783916],[122,112,69,0.01262854151329754],[122,112,70,0.011992778528116272],[122,112,71,0.01127990330823548],[122,112,72,0.01050825611305569],[122,112,73,0.009700076279801665],[122,112,74,0.008880006867075869],[122,112,75,0.008073742729650224],[122,112,76,0.007306826476868995],[122,112,77,0.006603596382729857],[122,112,78,0.005986289934468985],[122,112,79,0.0054743063311644986],[122,113,64,0.013778789585502972],[122,113,65,0.013619068789182447],[122,113,66,0.013441692471693514],[122,113,67,0.013210663349531603],[122,113,68,0.012904104700420771],[122,113,69,0.012518313646147644],[122,113,70,0.012057514756402923],[122,113,71,0.011532022654344068],[122,113,72,0.010956750349743234],[122,113,73,0.010349834193042931],[122,113,74,0.00973137993324612],[122,113,75,0.00912233403336935],[122,113,76,0.008543484066573256],[122,113,77,0.008014591686265043],[122,113,78,0.007553661336748269],[122,113,79,0.00717634754989096],[122,114,64,0.012877262572261412],[122,114,65,0.012820680862679396],[122,114,66,0.012760753344269429],[122,114,67,0.01266342435893327],[122,114,68,0.012508645177066046],[122,114,69,0.01229325407835679],[122,114,70,0.012020345743305549],[122,114,71,0.011697737759400289],[122,114,72,0.01133677687066701],[122,114,73,0.010951244474713007],[122,114,74,0.010556365050137486],[122,114,75,0.010167920923597768],[122,114,76,0.009801476511644312],[122,114,77,0.009471714899571085],[122,114,78,0.009191889349931396],[122,114,79,0.008973392069190393],[122,115,64,0.011837986125463894],[122,115,65,0.011885051252360107],[122,115,66,0.011944582507465856],[122,115,67,0.011984742133195508],[122,115,68,0.011987672502631525],[122,115,69,0.011951077446606277],[122,115,70,0.01187708466074144],[122,115,71,0.011771032291325386],[122,115,72,0.011640591791349948],[122,115,73,0.011494972332299536],[122,115,74,0.01134420960220333],[122,115,75,0.01119854160376306],[122,115,76,0.011067873850063512],[122,115,77,0.010961336141039247],[122,115,78,0.010886932893120094],[122,115,79,0.010851288789085051],[122,116,64,0.010683114052307844],[122,116,65,0.01083212639298314],[122,116,66,0.01101081507768317],[122,116,67,0.011189813898265868],[122,116,68,0.011353787776466262],[122,116,69,0.011501613278923606],[122,116,70,0.011634621564698232],[122,116,71,0.011755716614329826],[122,116,72,0.011868828804849048],[122,116,73,0.011978432327037674],[122,116,74,0.012089128384119161],[122,116,75,0.012205295951597531],[122,116,76,0.012330811720017138],[122,116,77,0.01246884068724884],[122,116,78,0.01262169871578091],[122,116,79,0.012790788224806329],[122,117,64,0.009445812172211366],[122,117,65,0.009692877365052616],[122,117,66,0.00998799606799928],[122,117,67,0.01030448700563986],[122,117,68,0.010629821460506778],[122,117,69,0.010964327159396478],[122,117,70,0.011308712774666385],[122,117,71,0.011663524075626283],[122,117,72,0.012028936997775979],[122,117,73,0.012404597105606069],[122,117,74,0.012789506473000832],[122,117,75,0.013181958902462276],[122,117,76,0.01357952430432028],[122,117,77,0.013979082960755517],[122,117,78,0.014376910307754908],[122,117,79,0.014768812782075914],[122,118,64,0.008167249410854055],[122,118,65,0.008506356378224326],[122,118,66,0.008912734181724174],[122,118,67,0.00936254595242456],[122,118,68,0.009846292384393248],[122,118,69,0.010365991646918092],[122,118,70,0.010921902938438408],[122,118,71,0.011512321125331088],[122,118,72,0.012133712225817038],[122,118,73,0.012780878375347495],[122,118,74,0.013447152374904594],[122,118,75,0.014124621875960803],[122,118,76,0.014804383212264714],[122,118,77,0.015476824849803271],[122,118,78,0.016131940392816804],[122,118,79,0.016759671056284845],[122,119,64,0.006893790383695439],[122,119,65,0.0073169502823929485],[122,119,66,0.007827045556101375],[122,119,67,0.008403179455318176],[122,119,68,0.009039034170318976],[122,119,69,0.009738509501282742],[122,119,70,0.010501582117906303],[122,119,71,0.011324433335304356],[122,119,72,0.012199923794966889],[122,119,73,0.013118081503987335],[122,119,74,0.014066602420879735],[122,119,75,0.01503136278135342],[122,119,76,0.01599694236798771],[122,119,77,0.016947157944209635],[122,119,78,0.017645392946485663],[122,119,79,0.016842628646748566],[122,120,64,0.005674392119308784],[122,120,65,0.006171833784619306],[122,120,66,0.0067758901253581975],[122,120,67,0.007468630195667866],[122,120,68,0.008246991595492465],[122,120,69,0.009116891585846942],[122,120,70,0.010078180066369942],[122,120,71,0.0111250892394909],[122,120,72,0.012247038076037782],[122,120,73,0.013429435032891382],[122,120,74,0.01465447732434342],[122,120,75,0.015901945103401437],[122,120,76,0.017149988970837315],[122,120,77,0.01711001274322881],[122,120,78,0.015999992555881408],[122,120,79,0.014954946548438304],[122,121,64,0.004558207357754767],[122,121,65,0.005118624837424264],[122,121,66,0.00580490306482599],[122,121,67,0.0066020296534616595],[122,121,68,0.007510189222154565],[122,121,69,0.00853739164260122],[122,121,70,0.00968349971214184],[122,121,71,0.010940983783093992],[122,121,72,0.012296040567811006],[122,121,73,0.013729696305896029],[122,121,74,0.015218891751428654],[122,121,75,0.016737546538254162],[122,121,76,0.01719817566123862],[122,121,77,0.015779915589677434],[122,121,78,0.014416198414952126],[122,121,79,0.013135091064654597],[122,122,64,0.003592396658801117],[122,122,65,0.004203244465509328],[122,122,66,0.004958323583837768],[122,122,67,0.005845420261395312],[122,122,68,0.006867874448706237],[122,122,69,0.008035799972492772],[122,122,70,0.009349191716572537],[122,122,71,0.010798963040359722],[122,122,72,0.012368357818230128],[122,122,73,0.01403433433348328],[122,122,74,0.015768917699104306],[122,122,75,0.017540517618785324],[122,122,76,0.016182765274898973],[122,122,77,0.014515240635325817],[122,122,78,0.012912495034887481],[122,122,79,0.011408252487108222],[122,123,64,0.0028201513686551636],[122,123,65,0.0034679831132613686],[122,123,66,0.004277123154178618],[122,123,67,0.0052379669356664655],[122,123,68,0.006356836970326926],[122,123,69,0.007645897900894013],[122,123,70,0.009105371836754727],[122,123,71,0.010724831740642949],[122,123,72,0.012484880513110752],[122,123,73,0.0143587909344237],[122,123,74,0.016314102422193933],[122,123,75,0.01714688675529571],[122,123,76,0.015219785842483747],[122,123,77,0.013325710385557703],[122,123,78,0.011505131432556302],[122,123,79,0.009797049363570894],[122,124,64,0.0022789293216644046],[122,124,65,0.0029497754241161194],[122,124,66,0.0037973350926810982],[122,124,67,0.00481435987756995],[122,124,68,0.006009906483202231],[122,124,69,0.007398074764950635],[122,124,70,0.008979382693843605],[122,124,71,0.010742285029545245],[122,124,72,0.012665088947771836],[122,124,73,0.014717821123818833],[122,124,74,0.016864041599811717],[122,124,75,0.016438224343761205],[122,124,76,0.014310904806307092],[122,124,77,0.012218860503678779],[122,124,78,0.010207524363224934],[122,124,79,0.008320676705044829],[122,125,64,0.0019989049948739477],[122,125,65,0.0026786852047224895],[122,125,66,0.003548587260869718],[122,125,67,0.004603410389062332],[122,125,68,0.005854630322914882],[122,125,69,0.007318109025971763],[122,125,70,0.008994701426989458],[122,125,71,0.010871965786123726],[122,125,72,0.012926282008671484],[122,125,73,0.01512491364766774],[122,125,74,0.017428008384150834],[122,125,75,0.015749405091799288],[122,125,76,0.01345620841792751],[122,125,77,0.011199721393611108],[122,125,78,0.009029703228122202],[122,125,79,0.006994118324983412],[122,126,64,0.0020016356881798186],[122,126,65,0.002676602181648394],[122,126,66,0.003552839501156484],[122,126,67,0.004626841306035585],[122,126,68,0.005912132594505385],[122,126,69,0.007426114985881086],[122,126,70,0.009169994600170544],[122,126,71,0.01113064871834163],[122,126,72,0.013282910709453097],[122,126,73,0.015591792499578908],[122,126,74,0.017480268882578132],[122,126,75,0.015075208616893918],[122,126,76,0.012654113136680563],[122,126,77,0.010270518079209487],[122,126,78,0.007977797215282814],[122,126,79,0.005827424184992421],[122,127,64,0.002298945170909382],[122,127,65,0.0029561520259316176],[122,127,66,0.0038233272978176235],[122,127,67,0.004898273524943677],[122,127,68,0.0061961562290443525],[122,127,69,0.0077356564719103585],[122,127,70,0.009518321624633033],[122,127,71,0.011530552366974698],[122,127,72,0.013746017248697246],[122,127,73,0.016128000194987],[122,127,74,0.01690016369678764],[122,127,75,0.014409985322389622],[122,127,76,0.011901270564425552],[122,127,77,0.009430388607017696],[122,127,78,0.00705356518956783],[122,127,79,0.004825053557408878],[122,128,64,0.002892026116872692],[122,128,65,0.0035198210009983587],[122,128,66,0.004363713031742395],[122,128,67,0.0054224099815774265],[122,128,68,0.0067122892892057745],[122,128,69,0.008253028748127353],[122,128,70,0.010046487863146228],[122,128,71,0.012078780063071708],[122,128,72,0.014322780485115339],[122,128,73,0.016740563522211406],[122,128,74,0.01628243952021805],[122,128,75,0.013747710093903924],[122,128,76,0.011192465865374894],[122,128,77,0.00867512117922608],[122,128,78,0.00625396880701681],[122,128,79,0.0039852847538621025],[122,129,64,0.003770762544182495],[122,129,65,0.004359296482272775],[122,129,66,0.005167446090673529],[122,129,67,0.006194418335123489],[122,129,68,0.007457376744237329],[122,129,69,0.008976709816003224],[122,129,70,0.01075454849382389],[122,129,71,0.01277689080575598],[122,129,72,0.015016168659879734],[122,129,73,0.017433742437880397],[122,129,74,0.015621707034738239],[122,129,75,0.01308200363156269],[122,129,76,0.010520509619822907],[122,129,77,0.007996910204276828],[122,129,78,0.005570789289742868],[122,129,79,0.0032996921103815636],[122,130,64,0.004913273383393734],[122,130,65,0.005455024502154149],[122,130,66,0.0062173330013321725],[122,130,67,0.0071995135161591695],[122,130,68,0.008419118842884116],[122,130,69,0.009896982179038465],[122,130,70,0.011635464130850464],[122,130,71,0.013620600955654424],[122,130,72,0.01582470013526977],[122,130,73,0.01734119768739527],[122,130,74,0.014913896527150158],[122,130,75,0.012406121159330619],[122,130,76,0.009876123060119637],[122,130,77,0.007384131433984279],[122,130,78,0.004990288260438534],[122,130,79,0.0027526908638361076],[122,131,64,0.006285678217770406],[122,131,65,0.006775985391956013],[122,131,66,0.007485318666462847],[122,131,67,0.008412741213957315],[122,131,68,0.00957585713127278],[122,131,69,0.010995726068524945],[122,131,70,0.01267490912713053],[122,131,71,0.014599617574599946],[122,131,72,0.016742312863873506],[122,131,73,0.01651979329172348],[122,131,74,0.01415628234792648],[122,131,75,0.011712908267868945],[122,131,76,0.00924781663634391],[122,131,77,0.006821136338200256],[122,131,78,0.004492913000233177],[122,131,79,0.002321150501492348],[122,132,64,0.007841983820849401],[122,132,65,0.008279577982699909],[122,132,66,0.008932361136540168],[122,132,67,0.009798836707146895],[122,132,68,0.010896414424514502],[122,132,69,0.012246242322436289],[122,132,70,0.013851082746660115],[122,132,71,0.015697445904806616],[122,132,72,0.017758177935933674],[122,132,73,0.015622564330287277],[122,132,74,0.0133476247030651],[122,132,75,0.010994904042641305],[122,132,76,0.008621944398531558],[122,132,77,0.006288248759456191],[122,132,78,0.004053227790549723],[122,132,79,0.0019742548196014283],[122,133,64,0.009508956298531823],[122,133,65,0.00989506917604137],[122,133,66,0.010490471680317089],[122,133,67,0.011292848694267997],[122,133,68,0.012319282283890984],[122,133,69,0.013590989985666121],[122,133,70,0.015111005148086679],[122,133,71,0.016866285040674393],[122,133,72,0.016726509445844886],[122,133,73,0.014685212181024521],[122,133,74,0.012516800689479043],[122,133,75,0.010273770418789581],[122,133,76,0.008012671009009991],[122,133,77,0.005791972978256448],[122,133,78,0.0036700378953731425],[122,133,79,0.0017031969420792993],[122,134,64,0.011182277019715674],[122,134,65,0.011518011520033126],[122,134,66,0.012055397460121365],[122,134,67,0.012791070996328188],[122,134,68,0.013741744213992315],[122,134,69,0.014928810998305914],[122,134,70,0.016355747951982313],[122,134,71,0.017481773821724972],[122,134,72,0.015722274429633837],[122,134,73,0.013795319757616177],[122,134,74,0.011745950090351604],[122,134,75,0.009625390411726697],[122,134,76,0.007488850943800873],[122,134,77,0.005393425818332546],[122,134,78,0.003396095065963348],[122,134,79,0.001551834781619651],[122,135,64,0.0127703010478425],[122,135,65,0.013056480576719237],[122,135,66,0.013535271883260789],[122,135,67,0.014202078123768749],[122,135,68,0.015073273123702494],[122,135,69,0.01617062320701943],[122,135,70,0.017498293185447794],[122,135,71,0.01647795103731808],[122,135,72,0.014834448971314855],[122,135,73,0.013029568634458356],[122,135,74,0.011106856622924524],[122,135,75,0.009115947336873816],[122,135,76,0.0071104040414990445],[122,135,77,0.005145657303002671],[122,135,78,0.0032770459129180442],[122,135,79,0.0015579650942141744],[122,136,64,0.014199393190174556],[122,136,65,0.014436714360445572],[122,136,66,0.014856539351612425],[122,136,67,0.015452917041332606],[122,136,68,0.01624197485087669],[122,136,69,0.01724610176307342],[122,136,70,0.01698259844195573],[122,136,71,0.0156485453921806],[122,136,72,0.014125278062273193],[122,136,73,0.012446332524862923],[122,136,74,0.010653455075385686],[122,136,75,0.008794401137275424],[122,136,76,0.006920824582401859],[122,136,77,0.005086262783534853],[122,136,78,0.003344222415261157],[122,136,79,0.0017463707084009337],[122,137,64,0.01541422754207406],[122,137,65,0.015603330960537481],[122,137,66,0.015964076946744434],[122,137,67,0.016489112653996364],[122,137,68,0.017194457541847556],[122,137,69,0.01727607980064111],[122,137,70,0.01626030654575919],[122,137,71,0.015040923565520543],[122,137,72,0.013639170421200641],[122,137,73,0.012086613853045772],[122,137,74,0.010422922175994625],[122,137,75,0.00869372205726409],[122,137,76,0.006948543135655754],[122,137,77,0.005238855664901617],[122,137,78,0.0036162060736018506],[122,137,79,0.0021304550337669943],[122,138,64,0.016378484678597177],[122,138,65,0.016519940258238247],[122,138,66,0.016821703209552303],[122,138,67,0.01727504992129066],[122,138,68,0.01740619816223773],[122,138,69,0.016699047318959513],[122,138,70,0.015789599072573435],[122,138,71,0.014684601992728917],[122,138,72,0.013403210141236127],[122,138,73,0.01197475311933017],[122,138,74,0.010436579415866442],[122,138,75,0.0088319785905741],[122,138,76,0.00720818757489694],[122,138,77,0.005614486108108073],[122,138,78,0.004100386049583615],[122,138,79,0.002713919020756625],[122,139,64,0.017075949012022754],[122,139,65,0.017170152274599865],[122,139,66,0.017413076554827524],[122,139,67,0.017426774175084713],[122,139,68,0.016998809126776114],[122,139,69,0.016387687903369016],[122,139,70,0.01558363146908209],[122,139,71,0.014591264424887077],[122,139,72,0.013427403453297975],[122,139,73,0.0121189090374093],[122,139,74,0.010700605986204386],[122,139,75,0.009213278075204405],[122,139,76,0.007701741874708841],[122,139,77,0.006213004588140457],[122,139,78,0.004794510461557064],[122,139,79,0.0034924800535441622],[122,140,64,0.017395643344094738],[122,140,65,0.017464631048219603],[122,140,66,0.01739436161656414],[122,140,67,0.01719591772868378],[122,140,68,0.01685252263735753],[122,140,69,0.01633668466564024],[122,140,70,0.015636578119181913],[122,140,71,0.014754480798256949],[122,140,72,0.013704658510824197],[122,140,73,0.012511307504694336],[122,140,74,0.011206560073965201],[122,140,75,0.009828558388637129],[122,140,76,0.00841960137661751],[122,140,77,0.007024369255025142],[122,140,78,0.0056882300639133606],[122,140,79,0.004455632301459879],[122,141,64,0.017217915730477606],[122,141,65,0.017335236110484945],[122,141,66,0.017325084584726865],[122,141,67,0.017199399599311407],[122,141,68,0.016940766443566013],[122,141,69,0.016519906542487472],[122,141,70,0.01592277533948947],[122,141,71,0.015149125245415895],[122,141,72,0.01421049616456255],[122,141,73,0.013128257536101941],[122,141,74,0.011931706832652492],[122,141,75,0.01065622927035074],[122,141,76,0.009341523284379951],[122,141,77,0.008029896111229475],[122,141,78,0.006764633594986762],[122,141,79,0.0055884481007927155],[122,142,64,0.017218000899404624],[122,142,65,0.017385319559304196],[122,142,66,0.017437135216988142],[122,142,67,0.017385977740161655],[122,142,68,0.0172136333090191],[122,142,69,0.016888945436638537],[122,142,70,0.016395533796071667],[122,142,71,0.015730491117845916],[122,142,72,0.014902489744302586],[122,142,73,0.01392993234799988],[122,142,74,0.01283915140707507],[122,142,75,0.01166266186386962],[122,142,76,0.010437471213966367],[122,142,77,0.009203451081692062],[122,142,78,0.00800177413594301],[122,142,79,0.006873419987853942],[122,143,64,0.017325878465131294],[122,143,65,0.0175459646615692],[122,143,66,0.01755470079065354],[122,143,67,0.017640980735182697],[122,143,68,0.01760670308040571],[122,143,69,0.017381364627620525],[122,143,70,0.016994733677305626],[122,143,71,0.01644114742708281],[122,143,72,0.01572629366010481],[122,143,73,0.014865479776923268],[122,143,74,0.013881942002736973],[122,143,75,0.012805198834971799],[122,143,76,0.011669452639987964],[122,143,77,0.010512043139971176],[122,143,78,0.009371956352429907],[122,143,79,0.008288392355994326],[122,144,64,0.017505508713192675],[122,144,65,0.017348085583249753],[122,144,66,0.017278697343061887],[122,144,67,0.017284730937821347],[122,144,68,0.017386390359677966],[122,144,69,0.01761863293501683],[122,144,70,0.017682042435117194],[122,144,71,0.01724244828131328],[122,144,72,0.016643043500780195],[122,144,73,0.01589593171655756],[122,144,74,0.015021136903222109],[122,144,75,0.014045065833525895],[122,144,76,0.012999008402728593],[122,144,77,0.011917679225321415],[122,144,78,0.01083780374558953],[122,144,79,0.009796751940162768],[122,145,64,0.017302262178247867],[122,145,65,0.01708820285945415],[122,145,66,0.016949332614710412],[122,145,67,0.016873257641505043],[122,145,68,0.016881355235451957],[122,145,69,0.017010410836366487],[122,145,70,0.017284064886026036],[122,145,71,0.017713669511956652],[122,145,72,0.017621678649643327],[122,145,73,0.016988939369297414],[122,145,74,0.016223170406699502],[122,145,75,0.01534757732621777],[122,145,76,0.01439045321702665],[122,145,77,0.013383814378340231],[122,145,78,0.012362068496324936],[122,145,79,0.011360718067119836],[122,146,64,0.017067511189019342],[122,146,65,0.016796241684904373],[122,146,66,0.016586930626166715],[122,146,67,0.016428012666583787],[122,146,68,0.01634215236202147],[122,146,69,0.016367866636145367],[122,146,70,0.016531161714138168],[122,146,71,0.016846229062131804],[122,146,72,0.017316767829090144],[122,146,73,0.01793730129807859],[122,146,74,0.01745710363084756],[122,146,75,0.01668066324132267],[122,146,76,0.01581074188573118],[122,146,77,0.014876609076470822],[122,146,78,0.013910317852703717],[122,146,79,0.01294548125571065],[122,147,64,0.016816877418605734],[122,147,65,0.01648853349857536],[122,147,66,0.016208848868180276],[122,147,67,0.015967529328986978],[122,147,68,0.015788627871607046],[122,147,69,0.015712257203185042],[122,147,70,0.015766696439872396],[122,147,71,0.015968922835545112],[122,147,72,0.016325766380719132],[122,147,73,0.01683507013368374],[122,147,74,0.0174868539714344],[122,147,75,0.018014927546838505],[122,147,76,0.017229539202721366],[122,147,77,0.016364998020360746],[122,147,78,0.015450988543586362],[122,147,79,0.014519229558442315],[122,148,64,0.016563114137415142],[122,148,65,0.01617873003834366],[122,148,66,0.01582977630778225],[122,148,67,0.015507681559908861],[122,148,68,0.015237971623523132],[122,148,69,0.015062183210063907],[122,148,70,0.015010734789812548],[122,148,71,0.015103292563569683],[122,148,72,0.015349749585985973],[122,148,73,0.015751223071147916],[122,148,74,0.016301068120644052],[122,148,75,0.016985906121563605],[122,148,76,0.01778666607811297],[122,148,77,0.017820771273179933],[122,148,78,0.016955457173795273],[122,148,79,0.016053195499210807],[122,149,64,0.01631662408316123],[122,149,65,0.01587810618835263],[122,149,66,0.015462005402720644],[122,149,67,0.015061919512263822],[122,149,68,0.014704911707146426],[122,149,69,0.014433739456848997],[122,149,70,0.014280789400345526],[122,149,71,0.01426827808321609],[122,149,72,0.014409049842255642],[122,149,73,0.014707405916916815],[122,149,74,0.015159963601791816],[122,149,75,0.015756544230742093],[122,149,76,0.016481088767997098],[122,149,77,0.017312599775201862],[122,149,78,0.018226108526554],[122,149,79,0.0175217237991],[122,150,64,0.016085757767650703],[122,150,65,0.015595834710870057],[122,150,66,0.015115677931343517],[122,150,67,0.014641481467570503],[122,150,68,0.014201888256377693],[122,150,69,0.01384064769864696],[122,150,70,0.01359191027205793],[122,150,71,0.013480265685832452],[122,150,72,0.013521355891049006],[122,150,73,0.013722532800655976],[122,150,74,0.014083560121755365],[122,150,75,0.014597358647950478],[122,150,76,0.015250794312371304],[122,150,77,0.016025508263263856],[122,150,78,0.016898788194552913],[122,150,79,0.01784448014424647],[122,151,64,0.015877081673506287],[122,151,65,0.015339232675386073],[122,151,66,0.01479900445281891],[122,151,67,0.014255581863978203],[122,151,68,0.013739206405966167],[122,151,69,0.013294371819358669],[122,151,70,0.012956760652628617],[122,151,71,0.01275312459574606],[122,151,72,0.012701711285140183],[122,151,73,0.012812749566316338],[122,151,74,0.013088993211847796],[122,151,75,0.013526323006557076],[122,151,76,0.014114407032675183],[122,151,77,0.014837418916696375],[122,151,78,0.015674813737571295],[122,151,79,0.01660216124374438],[122,152,64,0.015695616159356034],[122,152,65,0.01511397940418831],[122,152,66,0.014518457218737497],[122,152,67,0.01391157527175097],[122,152,68,0.013325168224887492],[122,152,69,0.01280421519784088],[122,152,70,0.012385678206179604],[122,152,71,0.012098231448013837],[122,152,72,0.011962502970934734],[122,152,73,0.011991388626083937],[122,152,74,0.012190438901029796],[122,152,75,0.012558319106566256],[122,152,76,0.01308734328214963],[122,152,77,0.013764082081747425],[122,152,78,0.014570044807673413],[122,152,79,0.015482435675724349],[122,153,64,0.015545042896727052],[122,153,65,0.014924305758436665],[122,153,66,0.014278936361732743],[122,153,67,0.013615096146727474],[122,153,68,0.012966183465584369],[122,153,69,0.01237740011548756],[122,153,70,0.01188672132883849],[122,153,71,0.011524482635067834],[122,153,72,0.011313439864098456],[122,153,73,0.011268915160467612],[122,153,74,0.01139903018449467],[122,153,75,0.011705027530544315],[122,153,76,0.012181681251550341],[122,153,77,0.012817797245048813],[122,153,78,0.013596804130542168],[122,153,79,0.014497435132531123],[122,154,64,0.015427881664703429],[122,154,65,0.014773154591791805],[122,154,66,0.01408390918972752],[122,154,67,0.013370174195030836],[122,154,68,0.012666858970250152],[122,154,69,0.012019129056010424],[122,154,70,0.011465700471209211],[122,154,71,0.011038294391979038],[122,154,72,0.010761521295224648],[122,154,73,0.010652864545456508],[122,154,74,0.010722765168922068],[122,154,75,0.010974809384190919],[122,154,76,0.011406020288264514],[122,154,77,0.012007254933684831],[122,154,78,0.012763707876760363],[122,154,79,0.013655522131614412],[122,155,64,0.015345636329326244],[122,155,65,0.014662312199910705],[122,155,66,0.013935522415754764],[122,155,67,0.01317932518359438],[122,155,68,0.012430066576441589],[122,155,69,0.011732627748908975],[122,155,70,0.011126194328530578],[122,155,71,0.010643590489308625],[122,155,72,0.010310995200584159],[122,155,73,0.010147770884875819],[122,155,74,0.010166406771861865],[122,155,75,0.010372579033942344],[122,155,76,0.010765329591173026],[122,155,77,0.011337365281744435],[122,155,78,0.012075478910557479],[122,155,79,0.012961093514764696],[122,156,64,0.015298909833773185],[122,156,65,0.014592510593652956],[122,156,66,0.01383468715304734],[122,156,67,0.013043617030940757],[122,156,68,0.012256989364195345],[122,156,69,0.011519169807822511],[122,156,70,0.010869550758576544],[122,156,71,0.010341777401126526],[122,156,72,0.00996330593075665],[122,156,73,0.009755086522846547],[122,156,74,0.009731373848483075],[122,156,75,0.00989966770884066],[122,156,76,0.010260786137711645],[122,156,77,0.010809073103896484],[122,156,78,0.011532742735253858],[122,156,79,0.012414361786230715],[122,157,64,0.015287488022506878],[122,157,65,0.01456350042159489],[122,157,66,0.013781136503200949],[122,157,67,0.012962711011056031],[122,157,68,0.012147146085446243],[122,157,69,0.01137808281360768],[122,157,70,0.010694872285777686],[122,157,71,0.010131706813713968],[122,157,72,0.009717031547157908],[122,157,73,0.009473092407581164],[122,157,74,0.009415623614273266],[122,157,75,0.009553677828293907],[122,157,76,0.009889601693141813],[122,157,77,0.010419159309486697],[122,157,78,0.011131805947339793],[122,157,79,0.012011114074982222],[122,158,64,0.015310392117830997],[122,158,65,0.014574094363429572],[122,158,66,0.013773455561689279],[122,158,67,0.01293487790014512],[122,158,68,0.012098393613915227],[122,158,69,0.011306735689596784],[122,158,70,0.01059898604763451],[122,158,71,0.010009625337749207],[122,158,72,0.009567810473179941],[122,158,73,0.009296799173647598],[122,158,74,0.00921352522723107],[122,158,75,0.009328327911318723],[122,158,76,0.009644838745076807],[122,158,77,0.010160028482930399],[122,158,78,0.01086441700292285],[122,158,79,0.01174244849808106],[122,159,64,0.015365899660672614],[122,159,65,0.014622180810069225],[122,159,66,0.013809083659880554],[122,159,67,0.012956988891566264],[122,159,68,0.012106907249775615],[122,159,69,0.011300507213090427],[122,159,70,0.010576398036278837],[122,159,71,0.00996911128343372],[122,159,72,0.009508257362880496],[122,159,73,0.009217838805346424],[122,159,74,0.009115724387698237],[122,159,75,0.009213287916442778],[122,159,76,0.009515215198870433],[122,159,77,0.010019482447815928],[122,159,78,0.010717509091212763],[122,159,79,0.011594487692676786],[122,160,64,0.015451533718899164],[122,160,65,0.01470470763874293],[122,160,66,0.0138842886559502],[122,160,67,0.013024481098302189],[122,160,68,0.012167138708302746],[122,160,69,0.011352735502709797],[122,160,70,0.010619231484006236],[122,160,71,0.010000998354039921],[122,160,72,0.00952786804589028],[122,160,73,0.009224346738965328],[122,160,74,0.009108998808226253],[122,160,75,0.009194004854647534],[122,160,76,0.009484897661560408],[122,160,77,0.009980479623136695],[122,160,78,0.010672924899782683],[122,160,79,0.011548069273537256],[122,161,64,0.015564020156086709],[122,161,65,0.01481763588210452],[122,161,66,0.013994113078714093],[122,161,67,0.01313129745494408],[122,161,68,0.01227175161537311],[122,161,69,0.011454648315789176],[122,161,70,0.010717149236766416],[122,161,71,0.01009328610877006],[122,161,72,0.00961291340247169],[122,161,73,0.009300834256428456],[122,161,74,0.009176104399797245],[122,161,75,0.009251518510589883],[122,161,76,0.009533283133707821],[122,161,77,0.010020879970477367],[122,161,78,0.010707123045592246],[122,161,79,0.011578412961303452],[122,162,64,0.015699212741428797],[122,162,65,0.014955863079374576],[122,162,66,0.014132291918458318],[122,162,67,0.013269800822375286],[122,162,68,0.012411534325138236],[122,162,69,0.01159527398356011],[122,162,70,0.010857259953987501],[122,162,71,0.010231037040638054],[122,162,72,0.009746322017493595],[122,162,73,0.009428051017279648],[122,162,74,0.009295612014356703],[122,162,75,0.009362267099893325],[122,162,76,0.00963476891973165],[122,162,77,0.010113175320840417],[122,162,78,0.010790865934233096],[122,162,79,0.011654764113874483],[122,163,64,0.015851985867420426],[122,163,65,0.015113116084845139],[122,163,66,0.014291141847324152],[122,163,67,0.013430662088155913],[122,163,68,0.012575289866466029],[122,163,69,0.01176133280447699],[122,163,70,0.011024007966740558],[122,163,71,0.01039626010933978],[122,163,72,0.009907551456502753],[122,163,73,0.009582837570051385],[122,163,74,0.009441734576993372],[122,163,75,0.009497882682575377],[122,163,76,0.009758510558234519],[122,163,77,0.010224204859144366],[122,163,78,0.010888888797591974],[122,163,79,0.011740013379511076],[122,164,64,0.016014611610913904],[122,164,65,0.015280279216036924],[122,164,66,0.014459856818636202],[122,164,67,0.013601133212288893],[122,164,68,0.012748094188464195],[122,164,69,0.011935489131387637],[122,164,70,0.011197427678680863],[122,164,71,0.010566174806662996],[122,164,72,0.010070867471035264],[122,164,73,0.009736422730772396],[122,164,74,0.009582642837436189],[122,164,75,0.009623522425937184],[122,164,76,0.009866762596303735],[122,164,77,0.010313496332374446],[122,164,78,0.010958229365727273],[122,164,79,0.011789000264953168],[122,165,64,0.016168742423913442],[122,165,65,0.015437159083127495],[122,165,66,0.01461620884848558],[122,165,67,0.013756742847067922],[122,165,68,0.012903026957513424],[122,165,69,0.012088193030101554],[122,165,70,0.011345192581786316],[122,165,71,0.010705571161818637],[122,165,72,0.010198114432405678],[122,165,73,0.009847690576962009],[122,165,74,0.009674294718214297],[122,165,75,0.009692300675134866],[122,165,76,0.00990992503371878],[122,165,77,0.01032890815514767],[122,165,78,0.010944416399180644],[122,165,79,0.01174516950411651],[122,166,64,0.01629638087178568],[122,166,65,0.015563977088222297],[122,166,66,0.01473853950955682],[122,166,67,0.01387378533720932],[122,166,68,0.01301416604780598],[122,166,69,0.012191186585876833],[122,166,70,0.01143663956376434],[122,166,71,0.010781359513423329],[122,166,72,0.010253800351590098],[122,166,73,0.00987881351078966],[122,166,74,0.009676632603230987],[122,166,75,0.009662070125243198],[122,166,76,0.00984393134942664],[122,166,77,0.010224650193346799],[122,166,78,0.010800151500719982],[122,166,79,0.011559943827136113],[122,167,64,0.01638508360304304],[122,167,65,0.015646826787425603],[122,167,66,0.01481141427832013],[122,167,67,0.013935158767687994],[122,167,68,0.01306260529183605],[122,167,69,0.012223682150975744],[122,167,70,0.01144907890866262],[122,167,71,0.010768979374125654],[122,167,72,0.010211572034345636],[122,167,73,0.00980176502825643],[122,167,74,0.009560111700822462],[122,167,75,0.009501952410111635],[122,167,76,0.009636777894348567],[122,167,77,0.009967819141554838],[122,167,78,0.010491868345142086],[122,167,79,0.011199335178287338],[122,168,64,0.016426291810485723],[122,168,65,0.015676002112998185],[122,168,66,0.014823950013085707],[122,168,67,0.013928698820437948],[122,168,68,0.013034802054567158],[122,168,69,0.012170727490979891],[122,168,70,0.011366177914697911],[122,168,71,0.010650800024029369],[122,168,72,0.010052629258059949],[122,168,73,0.0095967426328448],[122,168,74,0.009304125781612896],[122,168,75,0.009190760025181795],[122,168,76,0.009266934927737946],[122,168,77,0.009536791423457763],[122,168,78,0.009998100234546859],[122,168,79,0.010642279944777696],[122,169,64,0.01641342233962495],[122,169,65,0.0156440848619277],[122,169,66,0.014767902043126375],[122,169,67,0.013845273778121928],[122,169,68,0.012920688771486003],[122,169,69,0.012021339502838905],[122,169,70,0.011176119852941717],[122,169,71,0.010414305606142283],[122,169,72,0.009763935108541746],[122,169,73,0.009250401055796213],[122,169,74,0.008895259751152676],[122,169,75,0.008715263801352739],[122,169,76,0.008721623842708661],[122,169,77,0.008919504515284596],[122,169,78,0.009307759533151496],[122,169,79,0.00987891033679005],[122,170,64,0.016339750854332265],[122,170,65,0.015543824134332324],[122,170,66,0.014635544477766915],[122,170,67,0.01367667509540479],[122,170,68,0.012711583622125697],[122,170,69,0.011766442290220908],[122,170,70,0.01086957448503823],[122,170,71,0.010050101179657267],[122,170,72,0.00933625898674863],[122,170,73,0.008753932195265697],[122,170,74,0.00832540526654184],[122,170,75,0.00806834188802854],[122,170,76,0.007994996303775362],[122,170,77,0.008111662262163455],[122,170,78,0.00841836454683631],[122,170,79,0.008908797689925637],[122,171,64,0.01619608485530422],[122,171,65,0.01536580557166285],[122,171,66,0.014417341651280318],[122,171,67,0.013413301530154702],[122,171,68,0.012397898419343537],[122,171,69,0.011396607777085696],[122,171,70,0.010437478435192311],[122,171,71,0.009549738154635706],[122,171,72,0.008762050851190925],[122,171,73,0.008100990495455377],[122,171,74,0.007589738285653577],[122,171,75,0.007247009312233303],[122,171,76,0.007086214550634084],[122,171,77,0.00711486363611815],[122,171,78,0.007334213495698876],[122,171,79,0.007739167540712749],[122,172,64,0.01596822415758571],[122,172,65,0.015095908058801982],[122,172,66,0.0140994084379434],[122,172,67,0.013041634650712801],[122,172,68,0.011966641624405779],[122,172,69,0.010899596877102997],[122,172,70,0.00986862355614481],[122,172,71,0.008903357384661668],[122,172,72,0.008033145123851382],[122,172,73,0.007285462358426404],[122,172,74,0.006684557318843563],[122,172,75,0.0062503270715692704],[122,172,76,0.005997432022634302],[122,172,77,0.005934654293471291],[122,172,78,0.006064505145026201],[122,172,79,0.006383086250153159],[122,173,64,0.015634206235791034],[122,173,65,0.014712545359841454],[122,173,66,0.013660756981540742],[122,173,67,0.01254150335043521],[122,173,68,0.011398714219024032],[122,173,69,0.010257699064628353],[122,173,70,0.009147051264892892],[122,173,71,0.008097148038889649],[122,173,72,0.007138292541848856],[122,173,73,0.006299078045743305],[122,173,74,0.005604981027866975],[122,173,75,0.005077189604090462],[122,173,76,0.0047316733539879904],[122,173,77,0.004578500194907591],[122,173,78,0.004621405574841944],[122,173,79,0.004857618873442144],[122,174,64,0.015161333640566477],[122,174,65,0.014183689955300517],[122,174,66,0.013070327185700958],[122,174,67,0.011883134807834723],[122,174,68,0.010665995978593548],[122,174,69,0.009444868013088255],[122,174,70,0.00824925065214149],[122,174,71,0.007110620212211721],[122,174,72,0.006060518084303619],[122,174,73,0.005128864384930445],[122,174,74,0.004342503685598698],[122,174,75,0.00372398935829918],[122,174,76,0.003290612681117386],[122,174,77,0.0030536824537359024],[122,174,78,0.0030180604808619413],[122,174,79,0.0031819578962981572],[122,175,64,0.014517668937947077],[122,175,65,0.013478258217914868],[122,175,66,0.01229817632525674],[122,175,67,0.011038045404641024],[122,175,68,0.00974181797842395],[122,175,69,0.008436641181755177],[122,175,70,0.007153379300401673],[122,175,71,0.005924973555673936],[122,175,72,0.004784480407996346],[122,175,73,0.003763338518370041],[122,175,74,0.0028898713955369405],[122,175,75,0.0021880323635149225],[122,175,76,0.0016763980863413624],[122,175,77,0.0013674164877757339],[122,175,78,0.001266914506978284],[122,175,79,0.0013738707406586387],[122,176,64,0.013720393515310075],[122,176,65,0.012614151108486581],[122,176,66,0.011362911229034479],[122,176,67,0.010025513531039223],[122,176,68,0.008646072035558072],[122,176,69,0.007253437980327835],[122,176,70,0.005880269529289956],[122,176,71,0.004561310339240269],[122,176,72,0.0033313825642379284],[122,176,73,0.002223612265419049],[122,176,74,0.0012678943467875237],[122,176,75,4.896037399745834E-4],[122,176,76,-9.144084157960954E-5],[122,176,77,-4.617546625943805E-4],[122,176,78,-6.147007255077432E-4],[122,176,79,-5.507344108820121E-4],[122,177,64,0.01280249326464629],[122,177,65,0.01162524345191754],[122,177,66,0.01029925671153072],[122,177,67,0.008881063053682662],[122,177,68,0.007414997084810503],[122,177,69,0.005932079358018506],[122,177,70,0.004467143567663265],[122,177,71,0.0030570293088976737],[122,177,72,0.0017385363413787885],[122,177,73,5.466149952496294E-4],[122,177,74,-4.87200082417284E-4],[122,177,75,-0.0013361060444264648],[122,177,76,-0.001979091434300484],[122,177,77,-0.002401733270685573],[122,177,78,-0.0025967260515891676],[122,177,79,-0.0025641375055132872],[122,178,64,0.011799098658442078],[122,178,65,0.010547779595029857],[122,178,66,0.009144585601705465],[122,178,67,0.007643224802152233],[122,178,68,0.006088285496862528],[122,178,69,0.004513366160766457],[122,178,70,0.00295580208349669],[122,178,71,0.0014547701667215211],[122,178,72,4.921254942365287E-5],[122,178,73,-0.0012240001135696338],[122,178,74,-0.002331658464751003],[122,178,75,-0.003245550499486101],[122,178,76,-0.003943537425733373],[122,178,77,-0.0044103633026058115],[122,178,78,-0.004638192843444349],[122,178,79,-0.004626872174200743],[122,179,64,0.010746872563529438],[122,179,65,0.009419706537696457],[122,179,66,0.007938180213102601],[122,179,67,0.00635270672972766],[122,179,68,0.004708140887060553],[122,179,69,0.003041003307552272],[122,179,70,0.0013913938913458926],[122,179,71,-1.989909700680722E-4],[122,179,72,-0.0016889559418282224],[122,179,73,-0.00303966153635946],[122,179,74,-0.004216228860126577],[122,179,75,-0.005189087438736033],[122,179,76,-0.005935059656921055],[122,179,77,-0.0064381757661337476],[122,179,78,-0.006690213826818328],[122,179,79,-0.006690959360966743],[122,180,64,0.009683345594183688],[122,180,65,0.008279955933272402],[122,180,66,0.00672044602936145],[122,180,67,0.005051521400960034],[122,180,68,0.003318300319287496],[122,180,69,0.0015604978602107586],[122,180,70,-1.788281820569911E-4],[122,180,71,-0.0018553447215132238],[122,180,72,-0.0034255515061454305],[122,180,73,-0.0048486439384803045],[122,180,74,-0.006088123301670107],[122,180,75,-0.007113147512815873],[122,180,76,-0.00789961594166231],[122,180,77,-0.008430982251183761],[122,180,78,-0.00869878963315221],[122,180,79,-0.00870292322254142],[122,181,64,0.008646198235945701],[122,181,65,0.007167674194700712],[122,181,66,0.005532076857917579],[122,181,67,0.003782070083766449],[122,181,68,0.0019630202173920607],[122,181,69,1.1803034780553607E-4],[122,181,70,-0.0017067658477052164],[122,181,71,-0.003464350698503505],[122,181,72,-0.005108929791958309],[122,181,73,-0.0065977920473828475],[122,181,74,-0.00789291535205805],[122,181,75,-0.008962310910699002],[122,181,76,-0.009781099877079782],[122,181,77,-0.010332316255835187],[122,181,78,-0.010607430479934564],[122,181,79,-0.0106065884809788],[122,182,64,0.007672488913430545],[122,182,65,0.006121399884485935],[122,182,66,0.004413170647415187],[122,182,67,0.0025861826678430307],[122,182,68,6.860252424881125E-4],[122,182,69,-0.0012407013452174539],[122,182,70,-0.0031447489422275353],[122,182,71,-0.004976439392555922],[122,182,72,-0.006687758908627298],[122,182,73,-0.008234204160368384],[122,182,74,-0.00957637288312033],[122,182,75,-0.010681292216932894],[122,182,76,-0.01152347840671953],[122,182,77,-0.012085721911563513],[122,182,78,-0.012359592388400363],[122,182,79,-0.012345658426379203],[122,183,64,0.006797827116292082],[122,183,65,0.005178187507775439],[122,183,66,0.0034022951065232703],[122,183,67,0.0015041125750440672],[122,183,68,-4.70580659506456E-4],[122,183,69,-0.0024716662688982808],[122,183,70,-0.004446824723609116],[122,183,71,-0.0063438142795898605],[122,183,72,-0.00811254023292107],[122,183,73,-0.009706875619747861],[122,183,74,-0.011086226257458484],[122,183,75,-0.012216833432785488],[122,183,76,-0.01307280795754112],[122,183,77,-0.013636889729524378],[122,183,78,-0.013900927350998925],[122,183,79,-0.013866072766089421],[122,184,64,0.006055490637907238],[122,184,65,0.0043726767684170295],[122,184,66,0.002535502203811108],[122,184,67,5.734857713385425E-4],[122,184,68,-0.0014674418891143853],[122,184,69,-0.003533713667340997],[122,184,70,-0.005570063589949012],[122,184,71,-0.0075218547555082685],[122,184,72,-0.00933711133448663],[122,184,73,-0.010968302613881402],[122,184,74,-0.012373872110190604],[122,184,75,-0.013519505180887547],[122,184,76,-0.01437912897622041],[122,184,77,-0.014935638986466247],[122,184,78,-0.015181346850990941],[122,184,79,-0.015118144500698233],[122,185,64,0.005475485921571138],[122,185,65,0.0037361062884321596],[122,185,66,0.0018452905704567984],[122,185,67,-1.7179706560593926E-4],[122,185,68,-0.0022691184048299366],[122,185,69,-0.004389816048088432],[122,185,70,-0.006475881979689165],[122,185,71,-0.008470520558306412],[122,185,72,-0.010320131548688662],[122,185,73,-0.011976046684009617],[122,185,74,-0.013396012941566695],[122,185,75,-0.01454541611642183],[122,185,76,-0.015398238684380191],[122,185,77,-0.015937746353960985],[122,185,78,-0.016156898113039563],[122,185,79,-0.01605847497577716],[122,186,64,0.005083550449412939],[122,186,65,0.003295270732212095],[122,186,66,0.001359514770190005],[122,186,67,-7.027062239003386E-4],[122,186,68,-0.0028452934676677292],[122,186,69,-0.005008342947969913],[122,186,70,-0.007131383252442803],[122,186,71,-0.009155758364963644],[122,186,72,-0.011026550750396684],[122,186,73,-0.012694260332651287],[122,186,74,-0.01411623273694386],[122,186,75,-0.015257830563024533],[122,186,76,-0.016093341856628487],[122,186,77,-0.016606620348141077],[122,186,78,-0.016791452426782396],[122,186,79,-0.016651646211737724],[122,187,64,0.004900096050307477],[122,187,65,0.0030714202183667843],[122,187,66,0.0011002403444525094],[122,187,67,-9.962775341439522E-4],[122,187,68,-0.003172022921026202],[122,187,69,-0.005364366326487688],[122,187,70,-0.007510717387369728],[122,187,71,-0.009550911281212982],[122,187,72,-0.011429061902836504],[122,187,73,-0.013095174139422988],[122,187,74,-0.01450650882931277],[122,187,75,-0.015628694378242585],[122,187,76,-0.01643657939960002],[122,187,77,-0.016914821139069457],[122,187,78,-0.017058204835235645],[122,187,79,-0.016871689552585317],[122,188,64,0.004939091945146597],[122,188,65,0.0030791008449132405],[122,188,66,0.0010825434856792102],[122,188,67,-0.0010368569513906688],[122,188,68,-0.003233027055696683],[122,188,69,-0.0054409985596474515],[122,188,70,-0.007596460370666312],[122,188,71,-0.009638131968138256],[122,188,72,-0.011509537971247416],[122,188,73,-0.013160545794238912],[122,188,74,-0.014548660211089241],[122,188,75,-0.015640069031563213],[122,188,76,-0.016410434474567796],[122,188,77,-0.016845425209322865],[122,188,78,-0.016940984416646716],[122,188,79,-0.016703329597985185],[122,189,64,0.0052068862914497254],[122,189,65,0.0033249350978906407],[122,189,66,0.0013132541383608998],[122,189,67,-8.173962981217924E-4],[122,189,68,-0.0030210261548726455],[122,189,69,-0.005230764045973251],[122,189,70,-0.007381014174738542],[122,189,71,-0.00940980017104063],[122,189,72,-0.011260453801478025],[122,189,73,-0.012883071455717635],[122,189,74,-0.014235732486050466],[122,189,75,-0.015285473847605943],[122,189,76,-0.016009015860617093],[122,189,77,-0.016393234290440425],[122,189,78,-0.016435374312279163],[122,189,79,-0.01614300229222285],[122,190,64,0.005700964934925761],[122,190,65,0.0038063408600171925],[122,190,66,0.0017896412766188374],[122,190,67,-3.4080137112810005E-4],[122,190,68,-0.0025391208561098455],[122,190,69,-0.004737005471896435],[122,190,70,-0.006868028258674216],[122,190,71,-0.00886994543287381],[122,190,72,-0.010686293568610747],[122,190,73,-0.012267759834138131],[122,190,74,-0.013573319629073089],[122,190,75,-0.014571136328112121],[122,190,76,-0.01523921820002923],[122,190,77,-0.015565827933860509],[122,190,78,-0.015549640563979292],[122,190,79,-0.01519964593884658],[122,191,64,0.0064086460237738965],[122,191,65,0.004510187685194337],[122,191,66,0.002498039058933031],[122,191,67,3.786663407421861E-4],[122,191,68,-0.0018022185058439522],[122,191,69,-0.003975325815286804],[122,191,70,-0.006073843542279459],[122,191,71,-0.008035675786376468],[122,191,72,-0.009804944399899235],[122,191,73,-0.011333269383204309],[122,191,74,-0.012580822690571513],[122,191,75,-0.013517150418840114],[122,191,76,-0.014121758702480957],[122,191,77,-0.014384458990039152],[122,191,78,-0.014305468724567007],[122,191,79,-0.013895263791489709],[122,192,64,0.007305709092781158],[122,192,65,0.005411388957068007],[122,192,66,0.0034124125159633576],[122,192,67,0.0013139330405833572],[122,192,68,-8.385067167904681E-4],[122,192,69,-0.002975067193141851],[122,192,70,-0.005028959823786247],[122,192,71,-0.0069386132254889935],[122,192,72,-0.008649076769475652],[122,192,73,-0.0101132089630292],[122,192,74,-0.011292645544182588],[122,192,75,-0.012158542531439777],[122,192,76,-0.012692089810124223],[122,192,77,-0.01288479117595128],[122,192,78,-0.012738507091598692],[122,192,79,-0.012265256740216186],[122,193,64,0.008354957179265474],[122,193,65,0.006471428506097963],[122,193,66,0.004492861386689573],[122,193,67,0.0024235997855643543],[122,193,68,3.090246312053195E-4],[122,193,69,-0.0017808276818797606],[122,193,70,-0.003779527623950341],[122,193,71,-0.00562633675738995],[122,193,72,-0.00726751224919347],[122,193,73,-0.00865740230801429],[122,193,74,-0.00975932773030209],[122,193,75,-0.010546245065986516],[122,193,76,-0.011001187241871423],[122,193,77,-0.011117477807581664],[122,193,78,-0.0108987152914947],[122,193,79,-0.010358524469511247],[122,194,64,0.009504710492223123],[122,194,65,0.007636820220270792],[122,194,66,0.005684060681977927],[122,194,67,0.0036503720721424247],[122,194,68,0.0015810116811079875],[122,194,69,-4.5401725575412217E-4],[122,194,70,-0.0023888654461567357],[122,194,71,-0.004163833831112056],[122,194,72,-0.00572657918029471],[122,194,73,-0.007033116597459771],[122,194,74,-0.008048614394464122],[122,194,75,-0.008747977107162309],[122,194,76,-0.009116212742492802],[122,194,77,-0.00914858066070922],[122,194,78,-0.00885051680698048],[122,194,79,-0.008237333309509919],[122,195,64,0.010687893968759623],[122,195,65,0.008838208156833362],[122,195,66,0.006914387237699148],[122,195,67,0.004920221671485363],[122,195,68,0.0029009235384083927],[122,195,69,9.26408902643713E-4],[122,195,70,-9.381152132128662E-4],[122,195,71,-0.0026340576141943954],[122,195,72,-0.00411055051256754],[122,195,73,-0.005325359619579014],[122,195,74,-0.006245592471609036],[122,195,75,-0.00684820101720741],[122,195,76,-0.007120274796548526],[122,195,77,-0.007059121348103562],[122,195,78,-0.006672130775918606],[122,195,79,-0.005976421701925182],[122,196,64,0.011855358445867712],[122,196,65,0.010025914034106718],[122,196,66,0.00813353087424841],[122,196,67,0.006182009240076969],[122,196,68,0.0042166031936235115],[122,196,69,0.0023071638855504586],[122,196,70,5.182630336876746E-4],[122,196,71,-0.0010926242441708874],[122,196,72,-0.0024761296742557342],[122,196,73,-0.0035918097757715577],[122,196,74,-0.0044087674907427],[122,196,75,-0.00490607376511145],[122,196,76,-0.005072985646234696],[122,196,77,-0.004908957754506066],[122,196,78,-0.004423444274409685],[122,196,79,-0.0036354888900976706],[122,197,64,0.012999466410637286],[122,197,65,0.011194527005207242],[122,197,66,0.009337975503434131],[122,197,67,0.007433822495257149],[122,197,68,0.005527407109130433],[122,197,69,0.00368842237376706],[122,197,70,0.0019807117528128134],[122,197,71,4.60544926198436E-4],[122,197,72,-8.242948923049106E-4],[122,197,73,-0.0018352364301116187],[122,197,74,-0.002543454848408089],[122,197,75,-0.0029302117621653194],[122,197,76,-0.0029869975822050926],[122,197,77,-0.0027154732560838346],[122,197,78,-0.002127208761349226],[122,197,79,-0.0012432159734673805],[122,198,64,0.014113945007805839],[122,198,65,0.01233967119563882],[122,198,66,0.010524902910121014],[122,198,67,0.008674101072992536],[122,198,68,0.00683269214009491],[122,198,69,0.005070010932330178],[122,198,70,0.003448988934724104],[122,198,71,0.0020245290948183664],[122,198,72,8.42691497604735E-4],[122,198,73,-5.993900744238484E-5],[122,198,74,-6.566997009685971E-4],[122,198,75,-9.311081588984438E-4],[122,198,76,-8.769287116416262E-4],[122,198,77,-4.980444923636087E-4],[122,198,78,1.918673648226264E-4],[122,198,79,0.0011698595583513921],[122,199,64,0.015191055025855561],[122,199,65,0.013454968406733334],[122,199,66,0.011688979931349786],[122,199,67,0.00989826756030791],[122,199,68,0.008128314038331242],[122,199,69,0.0064478132935504836],[122,199,70,0.004918532771149353],[122,199,71,0.0035937952669186264],[122,199,72,0.002517764014845887],[122,199,73,0.001724904085684512],[122,199,74,0.001239623371276127],[122,199,75,0.0010760961644037468],[122,199,76,0.0012382720800589633],[122,199,77,0.001720072803567543],[122,199,78,0.002505778896594185],[122,199,79,0.003570608646164194],[122,200,64,0.016222453420645707],[122,200,65,0.01453296484912741],[122,200,66,0.012823362255284269],[122,200,67,0.011099822687777478],[122,200,68,0.009407827803899692],[122,200,69,0.007815087403249293],[122,200,70,0.006381904282258836],[122,200,71,0.005159772425392166],[122,200,72,0.004190762620356966],[122,200,73,0.0035070781867183854],[122,200,74,0.0031307838364453134],[122,200,75,0.0030737104308536894],[122,200,76,0.0033375381459229245],[122,200,77,0.003914060309323692],[122,200,78,0.004785629930176178],[122,200,79,0.005925790708989468],[122,201,64,0.017199999546236716],[122,201,65,0.01556600456901386],[122,201,66,0.013920649443615643],[122,201,67,0.012271398062845367],[122,201,68,0.010663653816411319],[122,201,69,0.00916375844128166],[122,201,70,0.007830218032137714],[122,201,71,0.006712427723947098],[122,201,72,0.005850158928160531],[122,201,73,0.00527320979767748],[122,201,74,0.005001221676820075],[122,201,75,0.0050436640503449945],[122,201,76,0.005399990265353378],[122,201,77,0.006059966064011143],[122,201,78,0.007004172735636195],[122,201,79,0.00820468647627169],[122,202,64,0.01811650482662627],[122,202,65,0.016547049381568195],[122,202,66,0.014973791095394633],[122,202,67,0.01340576649102128],[122,202,68,0.011888209947645171],[122,202,69,0.01048568819584387],[122,202,70,0.009254561510096324],[122,202,71,0.008241845495334686],[122,202,72,0.0074848010609947155],[122,202,73,0.007010679954203578],[122,202,74,0.0068366283391238045],[122,202,75,0.0069697506801872445],[122,202,76,0.007407335960149381],[122,202,77,0.008137248041657748],[122,202,78,0.009138481765617395],[122,202,79,0.010381886173265653],[122,203,64,0.018578196795172922],[122,203,65,0.017470445074610874],[122,203,66,0.0159769440247937],[122,203,67,0.014496809893713948],[122,203,68,0.013075009827364623],[122,203,69,0.011773921151238011],[122,203,70,0.010647403746741122],[122,203,71,0.009739809870359169],[122,203,72,0.009085678185625806],[122,203,73,0.008709574826835514],[122,203,74,0.008626083704613789],[122,203,75,0.00883994804827072],[122,203,76,0.009346364967576008],[122,203,77,0.01013143460918755],[122,203,78,0.011172765282578566],[122,203,79,0.012440235739030376],[122,204,64,0.01786969434095239],[122,204,65,0.018332633590469976],[122,204,66,0.01692628027568835],[122,204,67,0.015540444788581999],[122,204,68,0.014219727399389587],[122,204,69,0.01302390762327051],[122,204,70,0.012003993718755409],[122,204,71,0.011201391799968258],[122,204,72,0.010647705772434388],[122,204,73,0.010364674860343289],[122,204,74,0.010364250649872288],[122,204,75,0.01064881537333295],[122,204,76,0.011211542962362049],[122,204,77,0.012036904207005508],[122,204,78,0.01310131717334106],[122,204,79,0.014373943857207538],[122,205,64,0.017232583044522336],[122,205,65,0.018648685168398797],[122,205,66,0.017820745742314927],[122,205,67,0.016535505250843862],[122,205,68,0.015321227864979158],[122,205,69,0.014234704245115217],[122,205,70,0.013323749074790444],[122,205,71,0.012626541261992249],[122,205,72,0.012171532624814638],[122,205,73,0.011977483770259506],[122,205,74,0.012053628795285577],[122,205,75,0.012399970256032431],[122,205,76,0.013007705671661318],[122,205,77,0.013859786655195909],[122,205,78,0.014931611596970646],[122,205,79,0.01619185266861128],[122,206,64,0.016663882451943394],[122,206,65,0.017980768982009322],[122,206,66,0.018662769107892163],[122,206,67,0.017484583222182798],[122,206,68,0.01638256506548436],[122,206,69,0.015410152069223434],[122,206,70,0.014611635686544307],[122,206,71,0.014021685415680331],[122,206,72,0.013665370716252748],[122,206,73,0.013558298719492705],[122,206,74,0.013706869053854634],[122,206,75,0.01410864694237711],[122,206,76,0.014752855567106305],[122,206,77,0.015620988540525875],[122,206,78,0.01668754317593262],[122,206,79,0.01792087510970928],[122,207,64,0.01615687183366832],[122,207,65,0.01736664492540697],[122,207,66,0.018557524193293814],[122,207,67,0.018395477368551058],[122,207,68,0.01741248259854267],[122,207,69,0.016560261907018092],[122,207,70,0.015879269916226332],[122,207,71,0.01540038660814262],[122,207,72,0.015145058672472865],[122,207,73,0.015125544191116318],[122,207,74,0.015345261658448192],[122,207,75,0.015799244191226067],[122,207,76,0.016474699640819813],[122,207,77,0.01735167718526375],[122,207,78,0.01840384085085617],[122,207,79,0.019420077967399106],[122,208,64,0.015702594785489233],[122,208,65,0.016795827557852024],[122,208,66,0.017868243187348642],[122,208,67,0.018895989492844833],[122,208,68,0.018424532270393357],[122,208,69,0.01769900897472839],[122,208,70,0.017140792559724557],[122,208,71,0.016776732428797018],[122,208,72,0.01662445544684177],[122,208,73,0.0166927220094995],[122,208,74,0.01698187252128352],[122,208,75,0.01748436482161363],[122,208,76,0.018185402978199188],[122,208,77,0.01906365775373328],[122,208,78,0.018920990604901416],[122,208,79,0.01784064492069442],[122,209,64,0.015292059625363716],[122,209,65,0.016258145377904997],[122,209,66,0.017202500696493],[122,209,67,0.01809824783413369],[122,209,68,0.018903998986332167],[122,209,69,0.018837532232469537],[122,209,70,0.018406611539876102],[122,209,71,0.018160104405737534],[122,209,72,0.01811168481798128],[122,209,73,0.018266536059127314],[122,209,74,0.01862189630181219],[122,209,75,0.01916767973558763],[122,209,76,0.019052729896131892],[122,209,77,0.01825046445095042],[122,209,78,0.0173230717667914],[122,209,79,0.01630223824088911],[122,210,64,0.014916321412023158],[122,210,65,0.015744241565600874],[122,210,66,0.016550786857816763],[122,210,67,0.01730611816597821],[122,210,68,0.01796985461364754],[122,210,69,0.018504983504552285],[122,210,70,0.018884038503461476],[122,210,71,0.019088726346762785],[122,210,72,0.019109400475579342],[122,210,73,0.018944475525006697],[122,210,74,0.018599782707990398],[122,210,75,0.018087866209909258],[122,210,76,0.01742722078195535],[122,210,77,0.016641470786987692],[122,210,78,0.01575849100977857],[122,210,79,0.014809469593573928],[122,211,64,0.014566331034175284],[122,211,65,0.01524532703709311],[122,211,66,0.015904780780434773],[122,211,67,0.01651204808891975],[122,211,68,0.017027915753357572],[122,211,69,0.017420010371520977],[122,211,70,0.01766548946192663],[122,211,71,0.017750441416008504],[122,211,72,0.01766922773131633],[122,211,73,0.017423782968828246],[122,211,74,0.01702287283124758],[122,211,75,0.016481310811191592],[122,211,76,0.015819133904418366],[122,211,77,0.015060737922954532],[122,211,78,0.014233972975504576],[122,211,79,0.013369199707174997],[122,212,64,0.014232852391292069],[122,212,65,0.014753002069869056],[122,212,66,0.015257075135636072],[122,212,67,0.015709863288898535],[122,212,68,0.01607348462971941],[122,212,69,0.01632029760072594],[122,212,70,0.016432116576689713],[122,212,71,0.016399386201908846],[122,212,72,0.016220393986782683],[122,212,73,0.015900458363008678],[122,212,74,0.015451092951388088],[122,212,75,0.014889147821668678],[122,212,76,0.014235928543265622],[122,212,77,0.013516293838573407],[122,212,78,0.012757732656475038],[122,212,79,0.011989421482140487],[122,213,64,0.013906448635753731],[122,213,65,0.014259147403546725],[122,213,66,0.014600971495661133],[122,213,67,0.014894465411155189],[122,213,68,0.015103238347525747],[122,213,69,0.01520440153164663],[122,213,70,0.015184384250892243],[122,213,71,0.015037887383586438],[122,213,72,0.014766970151297517],[122,213,73,0.014380130746753811],[122,213,74,0.013891381942275106],[122,213,75,0.01331932278164834],[122,213,76,0.012686207450212376],[122,213,77,0.012017012403261553],[122,213,78,0.011338502811541515],[122,213,79,0.010678299354411447],[122,214,64,0.013577538502732729],[122,214,65,0.013755885778815917],[122,214,66,0.01393034733376255],[122,214,67,0.014061603698885115],[122,214,68,0.014114905181876653],[122,214,69,0.01407206263968074],[122,214,70,0.013924002834812974],[122,214,71,0.013669509571972166],[122,214,72,0.013314190373858625],[122,214,73,0.012869455918517365],[122,214,74,0.012351513682783552],[122,214,75,0.01178037720653561],[122,214,76,0.011178892356292923],[122,214,77,0.010571781924157328],[122,214,78,0.009984709849254569],[122,214,79,0.009443366293755726],[122,215,64,0.013236523808141602],[122,215,65,0.013235614932541565],[122,215,66,0.013239595655784196],[122,215,67,0.01320772133277441],[122,215,68,0.013107018546868788],[122,215,69,0.01292387049729472],[122,215,70,0.012653510321211862],[122,215,71,0.012298561686814887],[122,215,72,0.011867893019193103],[122,215,73,0.011375503608421269],[122,215,74,0.010839443368051618],[122,215,75,0.01028076795424545],[122,215,76,0.00972253089152463],[122,215,77,0.009188814280694681],[122,215,78,0.008703799588210295],[122,215,79,0.008290879934450745],[122,216,64,0.012873989245420023],[122,216,65,0.012691113119601605],[122,216,66,0.01252363828872795],[122,216,67,0.012329877466096345],[122,216,68,0.012078749621388444],[122,216,69,0.01176101130023383],[122,216,70,0.01137594145446661],[122,216,71,0.010929696503487085],[122,216,72,0.010434061417890418],[122,216,73,0.00990525179547207],[122,216,74,0.009362769000763679],[122,216,75,0.008828310353457096],[122,216,76,0.008324736258997732],[122,216,77,0.007875096076654401],[122,216,78,0.007501714417074052],[122,216,79,0.0072253394532943785],[122,217,64,0.01248097565811187],[122,217,65,0.012115718280925187],[122,217,66,0.011778013903922687],[122,217,67,0.011425746006047613],[122,217,68,0.011029819670631593],[122,217,69,0.010585099000790583],[122,217,70,0.010094585314357458],[122,217,71,0.009567604464339612],[122,217,72,0.00901846553342306],[122,217,73,0.008465189373304052],[122,217,74,0.007928309338367481],[122,217,75,0.007429746450117217],[122,217,76,0.006991761109488979],[122,217,77,0.006635983349351472],[122,217,78,0.006382523489948499],[122,217,79,0.006249164926595911],[122,218,64,0.012049328006291205],[122,218,65,0.011503582021656153],[122,218,66,0.010999041900701424],[122,218,67,0.010493692244689984],[122,218,68,0.009960493159591634],[122,218,69,0.009398091153111523],[122,218,70,0.008812832504016174],[122,218,71,0.00821680292388954],[122,218,72,0.007626405769327902],[122,218,73,0.007061028454524898],[122,218,74,0.006541799664172545],[122,218,75,0.006090439827051269],[122,218,76,0.005728207165163953],[122,218,77,0.0054749414826161455],[122,218,78,0.005348207703722084],[122,218,79,0.0053625410121157365],[122,219,64,0.011572119279964441],[122,219,65,0.010849999602441233],[122,219,66,0.0101840633199924],[122,219,67,0.00953292849129801],[122,219,68,0.008871652808609295],[122,219,69,0.00820229063516084],[122,219,70,0.007534113137214796],[122,219,71,0.006881522068909836],[122,219,72,0.006262560217701828],[122,219,73,0.005697527687560152],[122,219,74,0.005207706839759554],[122,219,75,0.004814198546299963],[122,219,76,0.004536872240481105],[122,219,77,0.00439343207399602],[122,219,78,0.004398601311388541],[122,219,79,0.004563426912173335],[122,220,64,0.01104415164073211],[122,220,65,0.010151817179677778],[122,220,66,0.009331759995089837],[122,220,67,0.008543749901246577],[122,220,68,0.007764957790303369],[122,220,69,0.007000434467359998],[122,220,70,0.006261926881892564],[122,220,71,0.0055656888225382225],[122,220,72,0.004930936724405244],[122,220,73,0.004378428040057701],[122,220,74,0.003929165181834792],[122,220,75,0.003603227854548738],[122,220,76,0.0034187364036219144],[122,220,77,0.003390948605619403],[122,220,78,0.003531492127426504],[122,220,79,0.003847734678572224],[122,221,64,0.010462536093172816],[122,221,65,0.009407917556110984],[122,221,66,0.008442553178061326],[122,221,67,0.007527851733774104],[122,221,68,0.006643086310755737],[122,221,69,0.005795870998024412],[122,221,70,0.004999966373509148],[122,221,71,0.004273010104689978],[122,221,72,0.003634931215758081],[122,221,73,0.0031065025781408647],[122,221,74,0.002708034787220108],[122,221,75,0.0024582143772931163],[122,221,76,0.0023730891110727848],[122,221,77,0.002465202860728282],[122,221,78,0.002742882376360834],[122,221,79,0.003209678016662473],[122,222,64,0.009827351998635466],[122,222,65,0.008619785720481775],[122,222,66,0.0075190829038111985],[122,222,67,0.006488729301059813],[122,222,68,0.00551006385471898],[122,222,69,0.004592826769494494],[122,222,70,0.0037523353623929684],[122,222,71,0.0030071568782073],[122,222,72,0.0023774937948405346],[122,222,73,0.0018837218397843906],[122,222,74,0.0015450840036734038],[122,222,75,0.0013785436056708328],[122,222,76,0.0013977992297427133],[122,222,77,0.0016124641122555094],[122,222,78,0.0020274123217089396],[122,222,79,0.0026422938327613286],[122,223,64,0.00914238774523781],[122,223,65,0.007792155462859346],[122,223,66,0.00656676936862658],[122,223,67,0.005432161892925824],[122,223,68,0.004371678403703417],[122,223,69,0.0033967644151323743],[122,223,70,0.002523863002503172],[122,223,71,0.0017720504600239832],[122,223,72,0.001161404171419995],[122,223,73,7.115364618892992E-4],[122,223,74,4.4029781014506196E-4],[122,223,75,3.6265254953544567E-4],[122,223,76,4.897299334405983E-4],[122,223,77,8.280531840788919E-4],[122,223,78,0.001378948887603845],[122,223,79,0.0021381388440971237],[122,224,64,0.008415963877713649],[122,224,65,0.00693373834971028],[122,224,66,0.005594457604953363],[122,224,67,0.004366781973977546],[122,224,68,0.003235983955919272],[122,224,69,0.0022148329649270353],[122,224,70,0.0013205157236898138],[122,224,71,5.722526178482413E-4],[122,224,72,-1.0341963388979653E-5],[122,224,73,-4.087212272525562E-4],[122,224,74,-6.066860737228614E-4],[122,224,75,-5.914805103890635E-4],[122,224,76,-3.546994782124974E-4],[122,224,77,1.0699354772578431E-4],[122,224,78,7.913415473263501E-4],[122,224,79,0.0016901636311295897],[122,225,64,0.007661839968154273],[122,225,65,0.006058036328499244],[122,225,66,0.004615146728025585],[122,225,67,0.0033047309519577462],[122,225,68,0.0021138936870015936],[122,225,69,0.001056411955078119],[122,225,70,1.4990815431872685E-4],[122,225,71,-5.865389959073136E-4],[122,225,72,-0.001134033969828],[122,225,73,-0.0014753148970556005],[122,225,74,-0.0015960114842427538],[122,225,75,-0.0014857071913664023],[122,225,76,-0.0011388027422550994],[122,225,77,-5.551783347797876E-4],[122,225,78,2.593477995130354E-4],[122,225,79,0.0012927665561154446],[122,226,64,0.006900206472328321],[122,226,65,0.005184239204381857],[122,226,66,0.003646805011503143],[122,226,67,0.002262402806200052],[122,226,68,0.001019864088892943],[122,226,69,-6.62492567657048E-5],[122,226,70,-9.7808542541174E-4],[122,226,71,-0.0016968885015040372],[122,226,72,-0.002204633026755389],[122,226,73,-0.0024854594033637684],[122,226,74,-0.0025269066202890955],[122,226,75,-0.0023209390857159844],[122,226,76,-0.0018647646472192754],[122,226,77,-0.0011614411798145095],[122,226,78,-2.2026941850077742E-4],[122,226,79,9.430299965321174E-4],[122,227,64,0.006162085659873083],[122,227,65,0.004342301255446666],[122,227,66,0.002718077624424623],[122,227,67,0.0012667749702720225],[122,227,68,-2.1155679501866365E-5],[122,227,69,-0.0011304961903996556],[122,227,70,-0.002043271772048796],[122,227,71,-0.002741129478229929],[122,227,72,-0.0032069654055097503],[122,227,73,-0.003426343333795055],[122,227,74,-0.0033887012828169682],[122,227,75,-0.0030883427675581928],[122,227,76,-0.002525209846592757],[122,227,77,-0.0017054353679070203],[122,227,78,-6.416721243609875E-4],[122,227,79,6.468030672213726E-4],[122,228,64,0.0054967422328021966],[122,228,65,0.00358345000983096],[122,228,66,0.0018816846255605762],[122,228,67,3.716310950886194E-4],[122,228,68,-9.547332875536319E-4],[122,228,69,-0.0020816884214696733],[122,228,70,-0.002991270147804665],[122,228,71,-0.003665633317801804],[122,228,72,-0.00408866648256638],[122,228,73,-0.004247389779226942],[122,228,74,-0.004133132492625634],[122,228,75,-0.0037424870922099485],[122,228,76,-0.003078036865767377],[122,228,77,-0.002148854592630968],[122,228,78,-9.707700162278343E-4],[122,228,79,4.335958135238816E-4],[122,229,64,0.004947319545993776],[122,229,65,0.0029533448080507813],[122,229,66,0.0011853247589161794],[122,229,67,-3.7370377120008125E-4],[122,229,68,-0.0017303130789024326],[122,229,69,-0.0028684778873318243],[122,229,70,-0.0037704253688456662],[122,229,71,-0.004418969027450747],[122,229,72,-0.004799101940664559],[122,229,73,-0.00489936663752948],[122,229,74,-0.004712998122934212],[122,229,75,-0.004238836888103518],[122,229,76,-0.0034820090777360905],[122,229,77,-0.0024543713133056894],[122,229,78,-0.0011747179966468246],[122,229,79,3.312507648369577E-4],[122,230,64,0.0045444454228914495],[122,230,65,0.002484510606796312],[122,230,66,6.630342820606128E-4],[122,230,67,-9.340360906883804E-4],[122,230,68,-0.002311881422904578],[122,230,69,-0.003454383984487791],[122,230,70,-0.004344164579369177],[122,230,71,-0.004964869321650431],[122,230,72,-0.005302729399851284],[122,230,73,-0.005347893025400657],[122,230,74,-0.005095526137859858],[122,230,75,-0.0045466787752370865],[122,230,76,-0.0037089143540243808],[122,230,77,-0.0025966994377047852],[122,230,78,-0.00123155190153728],[122,230,79,3.580542775973588E-4],[122,231,64,0.004307399162192375],[122,231,65,0.0021974983428995442],[122,231,66,3.3634605276501426E-4],[122,231,67,-0.001287133854180443],[122,231,68,-0.0026767729918520454],[122,231,69,-0.0038165672418904815],[122,231,70,-0.004689733380224414],[122,231,71,-0.005280927981906888],[122,231,72,-0.005577759260343265],[122,231,73,-0.005572069058165777],[122,231,74,-0.005260981659371274],[122,231,75,-0.004647716430899405],[122,231,76,-0.0037421616402815074],[122,231,77,-0.002561207131754451],[122,231,78,-0.0011288338733757655],[122,231,79,5.2404129086243E-4],[122,232,64,0.004245226866865216],[122,232,65,0.002101994269540719],[122,232,66,2.1539958379719393E-4],[122,232,67,-0.0014226023995512302],[122,232,68,-0.002814518199802506],[122,232,69,-0.00394463777865303],[122,232,70,-0.004796958398520214],[122,232,71,-0.005357313222422096],[122,232,72,-0.005614818991123507],[122,232,73,-0.005563094439320218],[122,232,74,-0.005201246254157667],[122,232,75,-0.004534619716836856],[122,232,76,-0.0035753115049093507],[122,232,77,-0.0023424424665240756],[122,232,78,-8.621885054354221E-4],[122,232,79,8.324319660458163E-4],[122,233,64,0.004357802626696656],[122,233,65,0.002197875462646171],[122,233,66,2.999989757523101E-4],[122,233,67,-0.0013408093844363813],[122,233,68,-0.002725735397288551],[122,233,69,-0.0038395023364785974],[122,233,70,-0.004667040222804876],[122,233,71,-0.00519550104283271],[122,233,72,-0.005415624810997531],[122,233,73,-0.005322879670210905],[122,233,74,-0.004918373004737016],[122,233,75,-0.004209530871501521],[122,233,76,-0.003210543387290868],[122,233,77,-0.0019425740369481985],[122,233,78,-4.337311887835877E-4],[122,233,79,0.001281199585029094],[122,234,64,0.004636835108254468],[122,234,65,0.002476211109604346],[122,234,66,5.806184127212071E-4],[122,234,67,-0.0010518591437966346],[122,234,68,-0.002421067953821446],[122,234,69,-0.0035122499020723715],[122,234,70,-0.0043113765822743195],[122,234,71,-0.004807028289100691],[122,234,72,-0.004991660306221993],[122,234,73,-0.0048626492295497925],[122,234,74,-0.004423116505641793],[122,234,75,-0.0036825266885987464],[122,234,76,-0.0026570582405657374],[122,234,77,-0.0013697450186614774],[122,234,78,1.4961309801617517E-4],[122,234,79,0.001864771686672307],[122,235,64,0.005066819035318123],[122,235,65,0.002920209126065939],[122,235,66,0.0010393548426008373],[122,235,67,-5.746167242342328E-4],[122,235,68,-0.0019201664215342071],[122,235,69,-0.002983075997778234],[122,235,70,-0.0037504157141489687],[122,235,71,-0.004212265212879288],[122,235,72,-0.004362861602209761],[122,235,73,-0.004201536150312249],[122,235,74,-0.0037334370079264677],[122,235,75,-0.0029700356899625027],[122,235,76,-0.0019294153547649252],[122,235,77,-6.363392237159945E-4],[122,235,78,8.779022193343729E-4],[122,235,79,0.002575866322531593],[122,236,64,0.005625930973146209],[122,236,65,0.003506107581339697],[122,236,66,0.001650827401618428],[122,236,67,6.421805182838535E-5],[122,236,68,-0.0012507160356584343],[122,236,69,-0.0022802457839870144],[122,236,70,-0.003012539933158088],[122,236,71,-0.003439207395206697],[122,236,72,-0.003556308789007833],[122,236,73,-0.003365167511060047],[122,236,74,-0.0028729780323607738],[122,236,75,-0.0020932094055915286],[122,236,76,-0.0010458022583900142],[122,236,77,2.4284216477898525E-4],[122,236,78,0.0017400820703113498],[122,236,79,0.003407465181651942],[122,237,64,0.006286868762178446],[122,237,65,0.0042040103494833045],[122,237,66,0.002383023081863084],[122,237,67,8.309860784872847E-4],[122,237,68,-4.4750987027294075E-4],[122,237,69,-0.0014390961840951824],[122,237,70,-0.0021329794907574977],[122,237,71,-0.002522286982175871],[122,237,72,-0.002604923391471766],[122,237,73,-0.002384240460366014],[122,237,74,-0.0018695168843504513],[122,237,75,-0.0010762469976802272],[122,237,76,-2.6236731785386734E-5],[122,237,77,0.001252494352919269],[122,237,78,0.002726005903066462],[122,237,79,0.004354925168820775],[122,238,64,0.007017633881688436],[122,238,65,0.004978666342394909],[122,238,66,0.0031980880820408307],[122,238,67,0.0016858935424892355],[122,238,68,4.484319696909255E-4],[122,238,69,-5.010773114900686E-4],[122,238,70,-0.0011527568889898366],[122,238,71,-0.0015012032682128326],[122,238,72,-0.0015461717755012796],[122,238,73,-0.0012930885072854519],[122,238,74,-7.533876326844139E-4],[122,238,75,5.53273901293474E-5],[122,238,76,0.001109299874491555],[122,238,77,0.002378814189959399],[122,238,78,0.003828568982719383],[122,238,79,0.005418229817704192],[122,239,64,0.007775898281353385],[122,239,65,0.0057847816693855315],[122,239,66,0.004048454618293393],[122,239,67,0.0025798106329709544],[122,239,68,0.001387181908534782],[122,239,69,4.8393224156952086E-4],[122,239,70,-1.2079197807049176E-4],[122,239,71,-4.229668753293949E-4],[122,239,72,-4.2418755806062795E-4],[122,239,73,-1.3200727477915447E-4],[122,239,74,4.398820916739865E-4],[122,239,75,0.001271629319611869],[122,239,76,0.0023373638336068934],[122,239,77,0.003605497061035841],[122,239,78,0.005039185631193916],[122,239,79,0.00659695668757873],[122,240,64,0.008497367054287204],[122,240,65,0.006558266864660604],[122,240,66,0.004870444282154407],[122,240,67,0.0034496392113093364],[122,240,68,0.002306405031956173],[122,240,69,0.001454607952630568],[122,240,70,9.029166986391038E-4],[122,240,71,6.541325308558368E-4],[122,240,72,7.048937948672497E-4],[122,240,73,0.0010455215643366503],[122,240,74,0.0016600073830948055],[122,240,75,0.002526143906730847],[122,240,76,0.003615799045399312],[122,240,77,0.004895334016821367],[122,240,78,0.006326165533921041],[122,240,79,0.00786547217717908],[122,241,64,0.009126526287903433],[122,241,65,0.007244212718292887],[122,241,66,0.005609754330360102],[122,241,67,0.004241623856780516],[122,241,68,0.003152823451989889],[122,241,69,0.00235812411655014],[122,241,70,0.0018660301139986348],[122,241,71,0.001678346259455992],[122,241,72,0.0017900913248507188],[122,241,73,0.0021895362325857594],[122,241,74,0.0028583676902003987],[122,241,75,0.0037719777401228234],[122,241,76,0.0048998795254284475],[122,241,77,0.006206249406094088],[122,241,78,0.007650595402259871],[122,241,79,0.009188551793260693],[122,242,64,0.009623150929073147],[122,242,65,0.007802519729077998],[122,242,66,0.006226347658203461],[122,242,67,0.004915659956007631],[122,242,68,0.0038861100909092514],[122,242,69,0.003153802773069651],[122,242,70,0.0027274379475847846],[122,242,71,0.0026081113735478127],[122,242,72,0.0027894397257031637],[122,242,73,0.0032577945371270295],[122,242,74,0.003992645288528906],[122,242,75,0.004967011796226813],[122,242,76,0.006148025903200805],[122,242,77,0.007497602337191331],[122,242,78,0.00897321846809024],[122,242,79,0.010528802575460612],[122,243,64,0.009960612465249449],[122,243,65,0.008206278894476242],[122,243,66,0.00669292150320903],[122,243,67,0.005443869230200804],[122,243,68,0.004477592246822626],[122,243,69,0.003811966866666914],[122,243,70,0.0034562822568894014],[122,243,71,0.0034112643230315496],[122,243,72,0.0036694102206509017],[122,243,73,0.004215416529292289],[122,243,74,0.005026701059783871],[122,243,75,0.0060740181362055065],[122,243,76,0.007322167070753193],[122,243,77,0.008730793434275264],[122,243,78,0.010255282618822756],[122,243,79,0.011847745092541159],[122,244,64,0.010124256864867233],[122,244,65,0.008440220760061226],[122,244,66,0.006993441451350108],[122,244,67,0.005809236192858512],[122,244,68,0.0049090103408364035],[122,244,69,0.004312841832676042],[122,244,70,0.004031022157279284],[122,244,71,0.0040642878180700386],[122,244,72,0.004404356841398008],[122,244,73,0.00503454490678749],[122,244,74,0.0059304607546248],[122,244,75,0.00706078041953576],[122,244,76,0.008388099737482366],[122,244,77,0.009869864482529734],[122,244,78,0.011459377406483924],[122,244,79,0.013106881382411497],[122,245,64,0.010109853849403478],[122,245,65,0.008499233731851212],[122,245,66,0.007121741663780005],[122,245,67,0.0060043063462078905],[122,245,68,0.005171332521634463],[122,245,69,0.0046455061381151805],[122,245,70,0.004438539884010715],[122,245,71,0.004551591160065451],[122,245,72,0.004975988174345738],[122,245,73,0.005694023081818025],[122,245,74,0.006679811534274374],[122,245,75,0.007900217919108886],[122,245,76,0.009315845485948281],[122,245,77,0.010882090489243499],[122,245,78,0.012550259413684076],[122,245,79,0.01426874829878418],[122,246,64,0.009922118695257687],[122,246,65,0.008386952772762083],[122,246,66,0.007080192350895117],[122,246,67,0.006029947023163278],[122,246,68,0.005263625889878033],[122,246,69,0.004806891378463693],[122,246,70,0.004673288666781696],[122,246,71,0.0048648242869247455],[122,246,72,0.005372864660011726],[122,246,73,0.00617909083883668],[122,246,74,0.007256508565284316],[122,246,75,0.008570512679724447],[122,246,76,0.010080004858145516],[122,246,77,0.011738563600382241],[122,246,78,0.013495665350363242],[122,246,79,0.015297955597802936],[122,247,64,0.009573307885516334],[122,247,65,0.008114419718487125],[122,247,66,0.00687843562576353],[122,247,67,0.005894171876782552],[122,247,68,0.005191985188536073],[122,247,69,0.004800832602060408],[122,247,70,0.004736482902540217],[122,247,71,0.005002225827492599],[122,247,72,0.005589921550928125],[122,247,73,0.006481097504389666],[122,247,74,0.007648091418861196],[122,247,75,0.009055239416299484],[122,247,76,0.010660107933045778],[122,247,77,0.012414768220338311],[122,247,78,0.014267112140406286],[122,247,79,0.016162207961024848],[122,248,64,0.009081890048373757],[122,248,65,0.007698816557100904],[122,248,66,0.006532190969325207],[122,248,67,0.00561103010997683],[122,248,68,0.00496851988510566],[122,248,69,0.0046371696009756755],[122,248,70,0.004635331164807365],[122,248,71,0.004968005495891027],[122,248,72,0.005628017650506595],[122,248,73,0.0065972325483048405],[122,248,74,0.007847810000964324],[122,248,75,0.009343497699793465],[122,248,76,0.011040960783977285],[122,248,77,0.012891146586032406],[122,248,78,0.014840683136498948],[122,248,79,0.016833310006723213],[122,249,64,0.0084712937291702],[122,249,65,0.007162273119320711],[122,249,66,0.006062131634078871],[122,249,67,0.005199561623449765],[122,249,68,0.004610400646660235],[122,249,69,0.0043308999702612126],[122,249,70,0.004382312636884181],[122,249,71,0.004771761189508936],[122,249,72,0.005493509970097641],[122,249,73,0.00653027352991531],[122,249,74,0.007854559711761229],[122,249,75,0.009430045927681659],[122,249,76,0.011212987128616429],[122,249,77,0.01315365394547252],[122,249,78,0.01519779947504079],[122,249,79,0.01728815318967999],[122,250,64,0.007768733645288816],[122,250,65,0.006530750721289144],[122,250,66,0.005492833399923552],[122,250,67,0.004682819338304486],[122,250,68,0.004138966277684511],[122,250,69,0.003901384795455308],[122,250,70,0.003994497601191629],[122,250,71,0.0044279311838893885],[122,250,72,0.0051978544532492385],[122,250,73,0.006288351294792471],[122,250,74,0.0076728255027401614],[122,250,75,0.009315436521685344],[122,250,76,0.011172564405004748],[122,250,77,0.01319430238529885],[122,250,78,0.0153259754506235],[122,250,79,0.017509683330555085],[122,251,64,0.007004117166015504],[122,251,65,0.005833003387505455],[122,251,66,0.004851797174030671],[122,251,67,0.004086960020172324],[122,251,68,0.003578892252563557],[122,251,69,0.00337160788011196],[122,251,70,0.003492912656800952],[122,251,71,0.0039552818430849245],[122,251,72,0.004757232924462664],[122,251,73,0.005884732316199729],[122,251,74,0.007312634466592517],[122,251,75,0.009006151738257064],[122,251,76,0.010922353424027443],[122,251,77,0.013011692241780688],[122,251,78,0.01521955665158003],[122,251,79,0.01748784734961393],[122,252,64,0.00620903284135086],[122,252,65,0.005099618356621264],[122,252,66,0.004168546994646469],[122,252,67,0.0034404049927499744],[122,252,68,0.0029574220281844694],[122,252,69,0.0027674894698810877],[122,252,70,0.002901951371063945],[122,252,71,0.003376431284483556],[122,252,72,0.004192206424011743],[122,252,73,0.005337618060792544],[122,252,74,0.006789516558655627],[122,252,75,0.008514739416913084],[122,252,76,0.010471620662191481],[122,252,77,0.012611529915247574],[122,252,78,0.014880439454522752],[122,252,79,0.0172205176061932],[122,253,64,0.005415822873055489],[122,253,65,0.004362137635657271],[122,253,66,0.003473805055060196],[122,253,67,0.0027730721788826575],[122,253,68,0.002303662366122607],[122,253,69,0.002117255466194245],[122,253,70,0.0022488310982264116],[122,253,71,0.0027174094519058266],[122,253,72,0.0035273950900694038],[122,253,73,0.004669961239584382],[122,253,74,0.006124473009005389],[122,253,75,0.007859947927794706],[122,253,76,0.00983655216832163],[122,253,77,0.012007130789117939],[122,253,78,0.01431877032675418],[122,253,79,0.01671439206494348],[122,254,64,0.0046567414761610765],[122,254,65,0.003652262417100326],[122,254,66,0.0027987454070128336],[122,254,67,0.0021156809453050846],[122,254,68,0.0016479439269753145],[122,254,69,0.0014508631497332698],[122,254,70,0.0015630967170149072],[122,254,71,0.0020072550591391466],[122,254,72,0.002791184743862526],[122,254,73,0.003909298782437135],[122,254,74,0.005343951940932048],[122,254,75,0.007066859512685604],[122,254,76,0.009040557963925054],[122,254,77,0.01121990583158678],[122,254,78,0.013553623231058402],[122,254,79,0.01598586832273348],[122,255,64,0.003963201117987926],[122,255,65,0.0030011422065593877],[122,255,66,0.002174328030895627],[122,255,67,0.0014991312513004916],[122,255,68,0.0010212484201762766],[122,255,69,7.994844503584777E-4],[122,255,70,8.761720494007999E-4],[122,255,71,0.0012776498671807596],[122,255,72,0.0020154603222175297],[122,255,73,0.0030876013468704466],[122,255,74,0.004479830664243224],[122,255,75,0.0061670211429842225],[122,255,76,0.00811456571945008],[122,255,77,0.010279830330734863],[122,255,78,0.01261365326780593],[122,255,79,0.015061889336298073],[122,256,64,0.003365108642518688],[122,256,65,0.0024387505243886726],[122,256,66,0.0016307149714739045],[122,256,67,9.53958610255005E-4],[122,256,68,4.547035996280271E-4],[122,256,69,1.9504780478757914E-4],[122,256,70,2.20959723007207E-4],[122,256,71,5.625907514559836E-4],[122,256,72,0.0012353662840249163],[122,256,73,0.002241139139373842],[122,256,74,0.003569404060355576],[122,256,75,0.005198571943728258],[122,256,76,0.00709730238751669],[122,256,77,0.009225893082461377],[122,256,78,0.0115377245247392],[122,256,79,0.01398075849050682],[122,257,64,0.0028902951816337655],[122,257,65,0.001993350351119559],[122,257,66,0.0011967710200655182],[122,257,67,5.098667020989E-4],[122,257,68,-2.0852626675901963E-5],[122,257,69,-3.301605852959297E-4],[122,257,70,-3.6851001754841276E-4],[122,257,71,-1.0190006910133678E-4],[122,257,72,4.890944211392892E-4],[122,257,73,0.0014103647408218243],[122,257,74,0.0026553802173647084],[122,257,75,0.004206369010003529],[122,257,76,0.0060355664786398335],[122,257,77,0.008106529750473417],[122,257,78,0.010375517039997732],[122,257,79,0.012792930225166472],[122,258,64,0.0025646476315709936],[122,258,65,0.0016916610142071117],[122,258,66,9.002658837444595E-4],[122,258,67,1.9595982556732167E-4],[122,258,68,-3.7461796592423594E-4],[122,258,69,-7.432308443282318E-4],[122,258,70,-8.568123977376878E-4],[122,258,71,-6.775175219631211E-4],[122,258,72,-1.8187748391176897E-4],[122,258,73,6.401249670465264E-4],[122,258,74,0.0017860594677147686],[122,258,75,0.003242129805221588],[122,258,76,0.004984332388862315],[122,258,77,0.0069796901486918455],[122,258,78,0.009187560498291175],[122,258,79,0.011561015930088282],[122,259,64,0.00242407556671679],[122,259,65,0.0015708841794050184],[122,259,66,7.799785498155738E-4],[122,259,67,5.291599851229522E-5],[122,259,68,-5.637351172854344E-4],[122,259,69,-9.989510271463246E-4],[122,259,70,-0.0011963170543406831],[122,259,71,-0.0011142619961608266],[122,259,72,-7.25340308415354E-4],[122,259,73,-1.542612719208769E-5],[122,259,74,0.0010171800447866621],[122,259,75,0.0023627310324869006],[122,259,76,0.004001097990226547],[122,259,77,0.005902919528721922],[122,259,78,0.008030833688242102],[122,259,79,0.010340791393795857],[122,260,64,0.0025093661985925468],[122,260,65,0.0016731918701098742],[122,260,66,8.797854275000449E-4],[122,260,67,1.2665715591178833E-4],[122,260,68,-5.400502861735571E-4],[122,260,69,-0.0010470007762236058],[122,260,70,-0.0013348162763628932],[122,260,71,-0.001358492656313412],[122,260,72,-0.0010868123059520362],[122,260,73,-5.016610091735328E-4],[122,260,74,4.0275024003142156E-4],[122,260,75,0.0016207576568782129],[122,260,76,0.0031362103649929],[122,260,77,0.004923528296653406],[122,260,78,0.006948851102889765],[122,260,79,0.009171276782316586],[122,261,64,0.002850531736305104],[122,261,65,0.0020298063050654797],[122,261,66,0.00123242474768387],[122,261,67,4.517832191978913E-4],[122,261,68,-2.668760793011876E-4],[122,261,69,-8.485900308577482E-4],[122,261,70,-0.0012315831214971297],[122,261,71,-0.0013678615445184758],[122,261,72,-0.001222760952746186],[122,261,73,-7.74391608497953E-4],[122,261,74,-1.2981461770821015E-5],[122,261,75,0.0010598821582436494],[122,261,76,0.0024321114065855697],[122,261,77,0.00408207637186048],[122,261,78,0.0059796620159146404],[122,261,79,0.008087422393875908],[122,262,64,0.0034666699382173627],[122,262,65,0.002660872594774652],[122,262,66,0.0018593717626039492],[122,262,67,0.0010514364817371823],[122,262,68,2.808519114693565E-4],[122,262,69,-3.7663997122917706E-4],[122,262,70,-8.575747583309518E-4],[122,262,71,-0.001111533348902624],[122,262,72,-0.0011008303351128946],[122,262,73,-8.000936948660691E-4],[122,262,74,-1.9573616562553646E-4],[122,262,75,7.14681159371706E-4],[122,262,76,0.0019231923121640416],[122,262,77,0.003412276157757941],[122,262,78,0.005155811337950478],[122,262,79,0.007120135332659352],[122,263,64,0.0043667726745886815],[122,263,65,0.003576286604076391],[122,263,66,0.002771675630293656],[122,263,67,0.0019381321142356294],[122,263,68,0.0011173800034242932],[122,263,69,3.8497489257185205E-4],[122,263,70,-1.9474385493805667E-4],[122,263,71,-5.695883053761054E-4],[122,263,72,-6.993567638427824E-4],[122,263,73,-5.555546106154704E-4],[122,263,74,-1.2100137681407528E-4],[122,263,75,6.106755509683814E-4],[122,263,76,0.0016356600368522287],[122,263,77,0.0029406783902283145],[122,263,78,0.004503841773909656],[122,263,79,0.006295598810117839],[122,264,64,0.005550801968400118],[122,264,65,0.0047767882047667146],[122,264,66,0.003971057320703107],[122,264,67,0.0031148431616843247],[122,264,68,0.002247187062166487],[122,264,69,0.0014424192462226823],[122,264,70,7.648710708845112E-4],[122,264,71,2.6777995172801015E-4],[122,264,72,-6.697613731083913E-6],[122,264,73,-2.7354596597218218E-5],[122,264,74,2.26316396159736E-4],[122,264,75,7.644911078916257E-4],[122,264,76,0.0015874993611485063],[122,264,77,0.0026864279453785375],[122,264,78,0.004043839915784574],[122,264,79,0.0056346094026745105],[122,265,64,0.0070110339660570805],[122,265,65,0.006255320284661541],[122,265,66,0.005451268819019221],[122,265,67,0.0045763402192113625],[122,265,68,0.003666280994390193],[122,265,69,0.002793124155883533],[122,265,70,0.0020202763374474303],[122,265,71,0.00140127156153808],[122,265,72,9.79626578745302E-4],[122,265,73,7.888182737938961E-4],[122,265,74,8.523832720609918E-4],[122,265,75,0.001184139684959402],[122,265,76,0.001788530742525197],[122,265,77,0.002661089878590114],[122,265,78,0.0037890266596149846],[122,265,79,0.005151932784120561],[122,266,64,0.008733670974800186],[122,266,65,0.007998653574058049],[122,266,66,0.007199713608446856],[122,266,67,0.006310785695182139],[122,266,68,0.005363740939830569],[122,266,69,0.004427248710365595],[122,266,70,0.003562874591241995],[122,266,71,0.0028236923941203146],[122,266,72,0.0022539765379538446],[122,266,73,0.0018890193688275339],[122,266,74,0.0017550737376233157],[122,266,75,0.0018694209506930426],[122,266,76,0.0022405640106429306],[122,266,77,0.0028685458725503086],[122,266,78,0.0037453922570494045],[122,266,79,0.004855678387266278],[122,267,64,0.010700721408086002],[122,267,65,0.009989277064480375],[122,267,66,0.009199328140695632],[122,267,67,0.008301582309807773],[122,267,68,0.007323504763246133],[122,267,69,0.006329375691043745],[122,267,70,0.005378036664840559],[122,267,71,0.004521370364208488],[122,267,72,0.0038038247962841306],[122,267,73,0.0032620646418757768],[122,267,74,0.0029247502380053956],[122,267,75,0.0028124444976887902],[122,267,76,0.00293764786258455],[122,267,77,0.0033049611844332243],[122,267,78,0.003911376238562716],[122,267,79,0.004746693388693045],[122,268,64,0.012892147203653705],[122,268,65,0.012207553527602699],[122,268,66,0.011430723747336372],[122,268,67,0.010529475236049923],[122,268,68,0.009526401220693483],[122,268,69,0.008480440629116525],[122,268,70,0.007446893166198666],[122,268,71,0.006475775494986327],[122,268,72,0.005611171810872648],[122,268,73,0.004890713162671807],[122,268,74,0.004345186230844157],[122,268,75,0.003998272058546048],[122,268,76,0.0038664150196918786],[122,268,77,0.003958822101297614],[122,268,78,0.004277592376610073],[122,268,79,0.004817976352459703],[122,269,64,0.01528827802134717],[122,269,65,0.01463413939418484],[122,269,66,0.013874588208880372],[122,269,67,0.012974907066563405],[122,269,68,0.011952425965659748],[122,269,69,0.010859893416331952],[122,269,70,0.009748344987250272],[122,269,71,0.008665342964138963],[122,269,72,0.007654146949282195],[122,269,73,0.006753014425280802],[122,269,74,0.0059946322032374474],[122,269,75,0.00540567945610572],[122,269,76,0.005006522820648458],[122,269,77,0.004811043837771699],[122,269,78,0.0048265987924986905],[122,269,79,0.005054110813067257],[122,270,64,0.017872491289043932],[122,270,65,0.017252668023731644],[122,270,66,0.016514345980870867],[122,270,67,0.015620624585747724],[122,270,68,0.0145832603697524],[122,270,69,0.013448091458914239],[122,270,70,0.012261291758198869],[122,270,71,0.01106749821792214],[122,270,72,0.009908793511929519],[122,270,73,0.008823819704459866],[122,270,74,0.007847024047447365],[122,270,75,0.007008037825910572],[122,270,76,0.006331188946125942],[122,270,77,0.005835148740929253],[122,270,78,0.005532713250270775],[122,270,79,0.00543071902461405],[122,271,64,0.02061529233671648],[122,271,65,0.020033877742937377],[122,271,66,0.019320577628591365],[122,271,67,0.018436653765737648],[122,271,68,0.017388072082967856],[122,271,69,0.016213189391445622],[122,271,70,0.014952858562556187],[122,271,71,0.01364844489889465],[122,271,72,0.012340611914858099],[122,271,73,0.01106823915066182],[122,271,74,0.009867473395937437],[122,271,75,0.008770914470132575],[122,271,76,0.007806936478096918],[122,271,77,0.006999145231938458],[122,271,78,0.006365972305976485],[122,271,79,0.0059204059719498115],[122,272,64,0.019435497867486645],[122,272,65,0.01999535342908233],[122,272,66,0.020697956884527413],[122,272,67,0.021329631804952325],[122,272,68,0.020275552616044565],[122,272,69,0.019066793233298792],[122,272,70,0.017738528975137842],[122,272,71,0.016328561719395295],[122,272,72,0.014875904231832503],[122,272,73,0.013419497647774241],[122,272,74,0.011997063724673764],[122,272,75,0.010644093249448188],[122,272,76,0.009392971749490973],[122,272,77,0.008272243421782878],[122,272,78,0.0073060139619697435],[122,272,79,0.006513492746200584],[122,273,64,0.016698990524654546],[122,273,65,0.01721098528896583],[122,273,66,0.01787803619060268],[122,273,67,0.0187412791912448],[122,273,68,0.019806471010887578],[122,273,69,0.021051327634703593],[122,273,70,0.020527187490640517],[122,273,71,0.019022207169465972],[122,273,72,0.017435654000485752],[122,273,73,0.01580630844109829],[122,273,74,0.014173257906020654],[122,273,75,0.012574688999503432],[122,273,76,0.01104681895916809],[122,273,77,0.00962296744917276],[122,273,78,0.008332769599484011],[122,273,79,0.007201530949490871],[122,274,64,0.014091480935358443],[122,274,65,0.014551558515423422],[122,274,66,0.015177616128762447],[122,274,67,0.01601123632100636],[122,274,68,0.017063830325417452],[122,274,69,0.018321360971638247],[122,274,70,0.01976068301577789],[122,274,71,0.021351820813724245],[122,274,72,0.019946620576255777],[122,274,73,0.01816182444848539],[122,274,74,0.016336548501095404],[122,274,75,0.01451138415796527],[122,274,76,0.01272607847787843],[122,274,77,0.011018420139190528],[122,274,78,0.009423269062166917],[122,274,79,0.007971730526721304],[122,275,64,0.011692081843946697],[122,275,65,0.012096711275029063],[122,275,66,0.012676447490412189],[122,275,67,0.013472797711287886],[122,275,68,0.014502536786080598],[122,275,69,0.0157597986566591],[122,275,70,0.017227540677780116],[122,275,71,0.01887989666759971],[122,275,72,0.02068417153103199],[122,275,73,0.020424079013156977],[122,275,74,0.018430953611496725],[122,275,75,0.016404971311641373],[122,275,76,0.01438900691426563],[122,275,77,0.012424890952248253],[122,275,78,0.010552266682082144],[122,275,79,0.00880759415944893],[122,276,64,0.009568128371561116],[122,276,65,0.009914505378792774],[122,276,66,0.010443011173874674],[122,276,67,0.01119456536072669],[122,276,68,0.012190910940276058],[122,276,69,0.013434112378735284],[122,276,70,0.014913135979285704],[122,276,71,0.016606263731229195],[122,276,72,0.018483257286694647],[122,276,73,0.02050738356958143],[122,276,74,0.020404581959899512],[122,276,75,0.01820896391750587],[122,276,76,0.015995163941660315],[122,276,77,0.013808528936033586],[122,276,78,0.011692930229711842],[122,276,79,0.0096896122158302],[122,277,64,0.007775175676710473],[122,277,65,0.008061379660430407],[122,277,66,0.008534419682935633],[122,277,67,0.009234145299896721],[122,277,68,0.010186781019300263],[122,277,69,0.011401922527574234],[122,277,70,0.012874331988876938],[122,277,71,0.014586397059686451],[122,277,72,0.016510446193529888],[122,277,73,0.018610924140310483],[122,277,74,0.020846424930077302],[122,277,75,0.01988027505084287],[122,277,76,0.017506125637018442],[122,277,77,0.01513608033572132],[122,277,78,0.012817592353928799],[122,277,79,0.010596017740881997],[122,278,64,0.006356929401756957],[122,278,65,0.006582035067118267],[122,278,66,0.006996249717840841],[122,278,67,0.0076379180489873095],[122,278,68,0.008537183140303294],[122,278,69,0.009710624028548146],[122,278,70,0.011158470327508946],[122,278,71,0.012867090283228405],[122,278,72,0.01481143653059335],[122,278,73,0.016957350586044372],[122,278,74,0.019263723207378815],[122,278,75,0.021379963996153068],[122,278,76,0.01888626405399275],[122,278,77,0.01637569049635857],[122,278,78,0.013898564064216754],[122,278,79,0.011503600964876407],[122,279,64,0.005345108222239758],[122,279,65,0.005509250824709425],[122,279,66,0.005862305276652765],[122,279,67,0.006440739121533149],[122,279,68,0.007277991084666851],[122,279,69,0.008396941376477507],[122,279,70,0.00980285102334278],[122,279,71,0.011485862875547509],[122,279,72,0.013423554725566453],[122,279,73,0.015583349702854634],[122,279,74,0.017924780945959656],[122,279,75,0.020401607821095902],[122,279,76,0.020103592729072268],[122,279,77,0.017497769675745865],[122,279,78,0.014909009798953356],[122,279,79,0.012388582805897972],[122,280,64,0.004759237904714576],[122,280,65,0.0048636311255947015],[122,280,66,0.005154310767387117],[122,280,67,0.005665569138109522],[122,280,68,0.0064334752902641245],[122,280,69,0.007486412586546612],[122,280,70,0.00883414116746808],[122,280,71,0.010470296350980311],[122,280,72,0.01237502448231354],[122,280,73,0.014517474619571681],[122,280,74,0.016858142956638407],[122,280,75,0.019351067157193196],[122,280,76,0.021130677803111418],[122,280,77,0.018475922376471943],[122,280,78,0.015823883620481233],[122,280,79,0.013227546845616556],[122,281,64,0.004606376358819323],[122,281,65,0.004653281864747259],[122,281,66,0.004881533704951363],[122,281,67,0.005323033182893839],[122,281,68,0.006015790758738104],[122,281,69,0.006992801838407455],[122,281,70,0.008267712225830764],[122,281,71,0.009837299327569687],[122,281,72,0.011684165276314953],[122,281,73,0.01377928448760431],[122,281,74,0.016084402484220727],[122,281,75,0.018554283098477183],[122,281,76,0.021138801445474458],[122,281,77,0.019287939802287542],[122,281,78,0.016620926080237554],[122,281,79,0.0139984292654069],[122,282,64,0.004880769240468667],[122,282,65,0.004873417017874463],[122,282,66,0.005040336631468636],[122,282,67,0.005410909095909316],[122,282,68,0.006024393633541248],[122,282,69,0.006917440638289151],[122,282,70,0.008106905905184134],[122,282,71,0.009592301428834058],[122,282,72,0.011358520266294131],[122,282,73,0.013378414486630696],[122,282,74,0.015615223007007857],[122,282,75,0.01802484639392397],[122,282,76,0.02055796599417903],[122,282,77,0.019916855046914435],[122,282,78,0.017281721305584762],[122,282,79,0.014681566243271903],[122,283,64,0.005563435725240961],[122,283,65,0.005505894314814841],[122,283,66,0.005613657953885657],[122,283,67,0.0059135444443936995],[122,283,68,0.00644538624978558],[122,283,69,0.007248497363425332],[122,283,70,0.008342228504211851],[122,283,71,0.009728376024039115],[122,283,72,0.01139391369081161],[122,283,73,0.01331357628300872],[122,283,74,0.01545229179272834],[122,283,75,0.01776745931551854],[122,283,76,0.020211069993724094],[122,283,77,0.020352060632970133],[122,283,78,0.017792813874466292],[122,283,79,0.015260798330871031],[122,284,64,0.00662168412389262],[122,284,65,0.00651867991109565],[122,284,66,0.006570421438557154],[122,284,67,0.0068012019577871775],[122,284,68,0.0072507904926595],[122,284,69,0.00796017508303043],[122,284,70,0.008950473704805638],[122,284,71,0.010225291824361481],[122,284,72,0.01177343782992722],[122,284,73,0.013571489082908141],[122,284,74,0.015586205413074282],[122,284,75,0.017776787165033073],[122,284,76,0.02009697519368529],[122,284,77,0.020590488035326617],[122,284,78,0.018146885064965194],[122,284,79,0.01572463135466185],[122,285,64,0.008008557055247754],[122,285,65,0.007865241800632895],[122,285,66,0.00786487413849003],[122,285,67,0.008029333242019796],[122,285,68,0.008397749326971123],[122,285,69,0.009011837570077029],[122,285,70,0.009893773772484052],[122,285,71,0.011048493360232456],[122,285,72,0.012466369613871995],[122,285,73,0.014125741418117357],[122,285,74,0.01599528740935817],[122,285,75,0.018036243683998116],[122,285,76,0.020204462522178748],[122,285,77,0.020637848847225502],[122,285,78,0.018343988094578743],[122,285,79,0.016067453416032895],[122,286,64,0.009662205925094178],[122,286,65,0.009483871742530214],[122,286,66,0.009435852554729453],[122,286,67,0.009537780609697413],[122,286,68,0.009827656375863643],[122,286,69,0.010347063427824547],[122,286,70,0.011118579138672133],[122,286,71,0.012148010362902374],[122,286,72,0.013427016952567178],[122,286,73,0.014935583788764363],[122,286,74,0.016644338282836128],[122,286,75,0.01851671058806443],[122,286,76,0.020510934055029233],[122,286,77,0.020509937279278457],[122,286,78,0.018392841998956435],[122,286,79,0.016290807602738096],[122,287,64,0.011505194482786205],[122,287,65,0.011296935494425132],[122,287,66,0.011205976848577721],[122,287,67,0.011249906873030466],[122,287,68,0.011465213431498273],[122,287,69,0.011892628253992444],[122,287,70,0.012554566330583588],[122,287,71,0.013457296060423654],[122,287,72,0.01459349484132594],[122,287,73,0.01594465226335904],[122,287,74,0.01748331795451527],[122,287,75,0.019175191413847385],[122,287,76,0.02098105146022719],[122,287,77,0.020233993721567194],[122,287,78,0.018312183842440304],[122,287,79,0.01640472006836964],[122,288,64,0.013443731239553395],[122,288,65,0.013210051153374133],[122,288,66,0.013080772925481175],[122,288,67,0.01307165294543598],[122,288,68,0.013217415774014417],[122,288,69,0.013557414753146646],[122,288,70,0.014113474196231577],[122,288,71,0.014891994374275382],[122,288,72,0.015886431268625604],[122,288,73,0.017079623102061438],[122,288,74,0.018445960800225057],[122,288,75,0.019953399823373012],[122,288,76,0.021541970943536732],[122,288,77,0.019850129147886118],[122,288,78,0.018132179003444493],[122,288,79,0.01642908318846205],[122,289,64,0.015366832313546571],[122,289,65,0.015111197376895345],[122,289,66,0.014947724376925622],[122,289,67,0.014890525456554294],[122,289,68,0.014972467713811168],[122,289,69,0.015231253395533802],[122,289,70,0.015687871162996518],[122,289,71,0.016348638839597668],[122,289,72,0.017207605768251536],[122,289,73,0.018248801193017732],[122,289,74,0.019448325922769596],[122,289,75,0.0207762848232212],[122,289,76,0.020907998200553723],[122,289,77,0.01941280853700987],[122,289,78,0.0178958881276358],[122,289,79,0.016395092863039126],[122,290,64,0.01715495996284625],[122,290,65,0.016880145219676162],[122,290,66,0.016686505082244327],[122,290,67,0.016586619712456934],[122,290,68,0.016611530635869103],[122,290,69,0.01679725592372639],[122,290,70,0.017163872928191742],[122,290,71,0.01771750458800047],[122,290,72,0.018452649801402165],[122,290,73,0.019354359041416115],[122,290,74,0.020400252569951538],[122,290,75,0.021556156723716257],[122,290,76,0.020296076215784387],[122,290,77,0.018983644943590897],[122,290,78,0.017654051928943235],[122,290,79,0.0163422613601114],[122,291,64,0.018714733310062664],[122,291,65,0.018425148465338943],[122,291,66,0.018207609822606694],[122,291,67,0.01807315640608408],[122,291,68,0.018051009589031237],[122,291,69,0.018175499818651082],[122,291,70,0.018465712243577466],[122,291,71,0.01892742639335103],[122,291,72,0.01955538582225968],[122,291,73,0.02033541185444064],[122,291,74,0.02124635887174071],[122,291,75,0.02085455435588388],[122,291,76,0.01975042611098959],[122,291,77,0.018601368467843427],[122,291,78,0.01744013075739526],[122,291,79,0.01629910163445608],[122,292,64,0.019974487051980617],[122,292,65,0.019676391766142467],[122,292,66,0.019443579320405538],[122,292,67,0.01928545058306186],[122,292,68,0.019229380246145598],[122,292,69,0.019308006015779745],[122,292,70,0.01953931233305811],[122,292,71,0.019928537091255607],[122,292,72,0.02047039669890517],[122,292,73,0.02115115343344947],[122,292,74,0.021175022338596805],[122,292,75,0.02027020453520764],[122,292,76,0.019298006666266077],[122,292,77,0.018288588493562106],[122,292,78,0.01727267255854108],[122,292,79,0.016280465151256605],[122,293,64,0.020879911655494365],[122,293,65,0.020581066046365643],[122,293,66,0.02034349404193821],[122,293,67,0.020174813712439822],[122,293,68,0.020100521040459576],[122,293,69,0.02015156920481481],[122,293,70,0.02034472270470453],[122,293,71,0.020684448080934895],[122,293,72,0.021165114637203393],[122,293,73,0.021359102690077767],[122,293,74,0.020633863949811686],[122,293,75,0.0198233657327942],[122,293,76,0.01895490511731114],[122,293,77,0.018057326536137328],[122,293,78,0.01715981444038403],[122,293,79,0.016290856601594995],[122,294,64,0.021393668550536652],[122,294,65,0.02110297835526781],[122,294,66,0.020872578080933464],[122,294,67,0.02070814344351971],[122,294,68,0.020633274720780703],[122,294,69,0.020677273243220676],[122,294,70,0.02085556760189185],[122,294,71,0.021171608032466246],[122,294,72,0.021517083138800876],[122,294,73,0.020944414143824388],[122,294,74,0.020272094573561165],[122,294,75,0.019524281570727296],[122,294,76,0.018727779070998606],[122,294,77,0.017910680386672043],[122,294,78,0.017101184131046884],[122,294,79,0.016326584391580492],[122,295,64,0.02149507437302677],[122,295,65,0.021222231856275777],[122,295,66,0.021011873772801025],[122,295,67,0.020867584555091388],[122,295,68,0.02081108180177349],[122,295,69,0.020870079715054113],[122,295,70,0.021058569635868513],[122,295,71,0.021378739773536177],[122,295,72,0.021308572411966133],[122,295,73,0.020746725663970327],[122,295,74,0.020093801143352415],[122,295,75,0.019374317145963053],[122,295,76,0.01861518841465814],[122,295,77,0.01784436866173527],[122,295,78,0.017089671395701066],[122,295,79,0.016377769933061514],[122,296,64,0.021179855095176493],[122,296,65,0.020934976771359717],[122,296,66,0.020757987835772398],[122,296,67,0.020650261870444626],[122,296,68,0.020631686662687696],[122,296,69,0.020728490372188206],[122,296,70,0.02095314932517282],[122,296,71,0.021306356074187714],[122,296,72,0.021347453298274827],[122,296,73,0.020762876741410096],[122,296,74,0.020094231364163682],[122,296,75,0.019366993223099743],[122,296,76,0.01860881647885413],[122,296,77,0.017848155008993064],[122,296,78,0.01711306865429812],[122,296,79,0.016430214970772166],[122,297,64,0.020459970840916334],[122,297,65,0.020253233059291404],[122,297,66,0.020122909794239884],[122,297,67,0.020068085869482798],[122,297,68,0.020106917003429845],[122,297,69,0.020264284146767387],[122,297,70,0.020551101213397184],[122,297,71,0.020966354986548936],[122,297,72,0.021499462331529433],[122,297,73,0.02098049358926308],[122,297,74,0.020260564048098832],[122,297,75,0.019488917675667145],[122,297,76,0.018694579840329344],[122,297,77,0.017907151363182085],[122,297,78,0.017155580204017532],[122,297,79,0.016467126361761543],[122,298,64,0.01936351215526476],[122,298,65,0.019204785576848783],[122,298,66,0.019133903409296923],[122,298,67,0.019147631697635205],[122,298,68,0.01926253733274488],[122,298,69,0.019502329385532032],[122,298,70,0.019876347192787518],[122,298,71,0.020381695344827862],[122,298,72,0.02100570830759686],[122,298,73,0.021378527918969038],[122,298,74,0.02057258368636914],[122,298,75,0.01972061365601759],[122,298,76,0.018853626268086628],[122,298,77,0.018002999780048767],[122,298,78,0.017199199601024975],[122,298,79,0.01647069789150171],[122,299,64,0.017934668478562073],[122,299,65,0.017833152453432918],[122,299,66,0.017833471822113936],[122,299,67,0.017930092250407464],[122,299,68,0.018138177139702973],[122,299,69,0.01848047192882093],[122,299,70,0.018964767627335625],[122,299,71,0.01958615298919838],[122,299,72,0.02032961242838563],[122,299,73,0.02117242280602222],[122,299,74,0.021003258791682987],[122,299,75,0.02003724406401629],[122,299,76,0.01906322042123833],[122,299,77,0.018114932497931044],[122,299,78,0.017224954895134228],[122,299,79,0.016423548867239544],[122,300,64,0.01623376957013381],[122,300,65,0.01619762740249197],[122,300,66,0.016279397107830603],[122,300,67,0.016471306002786318],[122,300,68,0.016787334387126845],[122,300,69,0.017249499640010484],[122,300,70,0.017864110845761443],[122,300,71,0.018624158245939715],[122,300,72,0.019512067889020265],[122,300,73,0.020502244461567346],[122,300,74,0.021519223610541306],[122,300,75,0.020409231964370174],[122,300,76,0.019297517002146675],[122,300,77,0.018220709987544687],[122,300,78,0.017214021538270143],[122,300,79,0.016310019372988007],[122,301,64,0.01433740063165029],[122,301,65,0.01437339669810778],[122,301,66,0.014544854941598226],[122,301,67,0.014841860254796961],[122,301,68,0.015277454964495493],[122,301,69,0.015873183985303196],[122,301,70,0.01663398156248083],[122,301,71,0.01755071517568749],[122,301,72,0.018603116916101184],[122,301,73,0.019762491514688823],[122,301,74,0.020994197788466274],[122,301,75,0.02080277667133718],[122,301,76,0.0195282211522851],[122,301,77,0.018297436850066635],[122,301,78,0.017148702903095264],[122,301,79,0.016117322201942192],[122,302,64,0.012338591898804393],[122,302,65,0.01245173156267702],[122,302,66,0.012718605094833297],[122,302,67,0.013127270478845075],[122,302,68,0.013690088748744614],[122,302,69,0.014428399269631778],[122,302,70,0.01534590878378541],[122,302,71,0.016431403092351186],[122,302,72,0.01766187070076795],[122,302,73,0.019005390906905957],[122,302,74,0.020423782875756313],[122,302,75,0.021180265277409342],[122,302,76,0.019725135950889837],[122,302,77,0.018322255511542918],[122,302,78,0.01701327845158611],[122,302,79,0.015836551600894744],[122,303,64,0.010318939256545919],[122,303,65,0.01051285266078076],[122,303,66,0.010878781602499466],[122,303,67,0.011402888987753334],[122,303,68,0.0120971120043878],[122,303,69,0.012982848794228431],[122,303,70,0.01406275315981346],[122,303,71,0.015323623782535732],[122,303,72,0.01673973139808634],[122,303,73,0.018275897656811948],[122,303,74,0.01989032197476042],[122,303,75,0.021510606213679027],[122,303,76,0.019864280864368443],[122,303,77,0.01827827097008328],[122,303,78,0.016797788267403236],[122,303,79,0.015464411469755026],[122,304,64,0.008268524886148449],[122,304,65,0.00854792125020714],[122,304,66,0.009017508309963219],[122,304,67,0.009661742455351808],[122,304,68,0.010492399298411214],[122,304,69,0.011531172957045602],[122,304,70,0.012779819560516258],[122,304,71,0.014223233982661083],[122,304,72,0.01583299111076811],[122,304,73,0.017570625458166653],[122,304,74,0.01939064517402852],[122,304,75,0.021243277005752004],[122,304,76,0.01994871578183344],[122,304,77,0.018168544146524794],[122,304,78,0.016505323067063333],[122,304,79,0.015004025816684658],[122,305,64,0.006176052925961558],[122,305,65,0.006546708176036114],[122,305,66,0.007125544236898916],[122,305,67,0.007895552210451167],[122,305,68,0.008868605603058943],[122,305,69,0.010066896505995028],[122,305,70,0.011491412364894028],[122,305,71,0.013125210340060254],[122,305,72,0.014937182430357453],[122,305,73,0.01688554499110706],[122,305,74,0.018921048433949542],[122,305,75,0.020989903427107163],[122,305,76,0.019981852166064244],[122,305,77,0.017996416479237557],[122,305,78,0.016139198910011872],[122,305,79,0.014458705569029957],[122,306,64,0.004052978572545106],[122,306,65,0.004521041885510392],[122,306,66,0.005214895252997547],[122,306,67,0.006116340465074129],[122,306,68,0.007237594253793978],[122,306,69,0.008601510144653315],[122,306,70,0.01020841369981212],[122,306,71,0.01203958360201856],[122,306,72,0.014061248493667413],[122,306,73,0.016228293680039994],[122,306,74,0.018487673208154747],[122,306,75,0.020781523392871995],[122,306,76,0.01996103101968605],[122,306,77,0.017761058055501586],[122,306,78,0.015700432363641693],[122,306,79,0.013831281169453771],[122,307,64,0.001928210091564424],[122,307,65,0.0024996201520616212],[122,307,66,0.003313769306702567],[122,307,67,0.004351564282795956],[122,307,68,0.00562578592121196],[122,307,69,0.007160070996420724],[122,307,70,0.008954170509839363],[122,307,71,0.0109876446480781],[122,307,72,0.013224096428714173],[122,307,73,0.015615100173512017],[122,307,74,0.01810382003630933],[122,307,75,0.020628314403671747],[122,307,76,0.01987940138660838],[122,307,77,0.01745894008863249],[122,307,78,0.01518881417895941],[122,307,79,0.013124790875400536],[122,308,64,-1.5675247595323951E-4],[122,308,65,5.232546107067791E-4],[122,308,66,0.0014619574189420022],[122,308,67,0.002639665193458603],[122,308,68,0.004069910263662655],[122,308,69,0.005777190207218359],[122,308,70,0.007760750958683552],[122,308,71,0.00999850012830758],[122,308,72,0.012451479135413062],[122,308,73,0.01506801473489486],[122,308,74,0.017787544876237984],[122,308,75,0.02054411445668126],[122,308,76,0.01972756306113702],[122,308,77,0.01708509457170424],[122,308,78,0.014603792261063784],[122,308,79,0.01234299926336426],[122,309,64,-0.002152241133559395],[122,309,65,-0.0013594512102172937],[122,309,66,-2.933589664934E-4],[122,309,67,0.0010260349527289327],[122,309,68,0.002613160666244102],[122,309,69,0.0044934080006734526],[122,309,70,0.006665570386667936],[122,309,71,0.009105977846047416],[122,309,72,0.011773205458648567],[122,309,73,0.014612445527082074],[122,309,74,0.017559538091968772],[122,309,75,0.02054465510414165],[122,309,76,0.019494973693762182],[122,309,77,0.016634161334444453],[122,309,78,0.013945164188049005],[122,309,79,0.011490746208212757],[122,310,64,-0.004004405958115495],[122,310,65,-0.003095990118376181],[122,310,66,-0.001901374105250618],[122,310,67,-4.4060245200871736E-4],[122,310,68,0.0013017521013392501],[122,310,69,0.0033519561580679616],[122,310,70,0.00570838673790725],[122,310,71,0.00834588174545524],[122,310,72,0.011220678567035422],[122,310,73,0.014275000564812068],[122,310,74,0.01744128583975265],[122,310,75,0.020646053320625204],[122,310,76,0.019171120587975626],[122,310,77,0.016101222802029167],[122,310,78,0.013213579572382417],[122,310,79,0.010574126618387775],[122,311,64,-0.005658763440960331],[122,311,65,-0.004633405907553384],[122,311,66,-0.0033109977579508613],[122,311,67,-0.0017113928057535667],[122,311,68,1.8188181368949616E-4],[122,311,69,0.002395907590909584],[122,311,70,0.004928665096070066],[122,311,71,0.007753596120611679],[122,311,72,0.010824762139501275],[122,311,73,0.014081634930162389],[122,311,74,0.01745351344944322],[122,311,75,0.020863561786869038],[122,311,76,0.01874645756132866],[122,311,77,0.015482426801824335],[122,311,78,0.012410852576021862],[122,311,79,0.009600501196678513],[122,312,64,-0.007063307623445668],[122,312,65,-0.005921314947903725],[122,312,66,-0.004473769228391409],[122,312,67,-0.0027401382524573415],[122,312,68,-7.02907758465341E-4],[122,312,69,0.001665712409087517],[122,312,70,0.0043633107309836525],[122,312,71,0.00736203845599411],[122,312,72,0.010613973785605036],[122,312,73,0.014056102701936975],[122,312,74,0.01761491028542261],[122,312,75,0.021210577116224115],[122,312,76,0.018213107294919453],[122,312,77,0.014775397785307185],[122,312,78,0.011540084883304113],[122,312,79,0.008578338462292947],[122,313,64,-0.008171184841105406],[122,313,65,-0.006914495549456208],[122,313,66,-0.0053463464773462295],[122,313,67,-0.0034856693081231427],[122,313,68,-0.001313964662656426],[122,313,69,0.001197119664801569],[122,313,70,0.004044769862299509],[122,313,71,0.007199960140084675],[122,313,72,0.01061300498640517],[122,313,73,0.014218712940088743],[122,313,74,0.017941135491388358],[122,313,75,0.02128346439506702],[122,313,76,0.01756532961697245],[122,313,77,0.013979436825944219],[122,313,78,0.010605599402543917],[122,313,79,0.0075168882118033685],[122,314,64,-0.00894293317358829],[122,314,65,-0.007575046196473055],[122,314,66,-0.005892571399714398],[122,314,67,-0.003913803368337966],[122,314,68,-0.0016193627498459651],[122,314,69,0.001019483774681813],[122,314,70,0.003999497193703991],[122,314,71,0.0072905941672889605],[122,314,72,0.010841566743076738],[122,314,73,0.014585388994185254],[122,314,74,0.01844410397881383],[122,314,75,0.020643982147846223],[122,314,76,0.016799756156404416],[122,314,77,0.013095510718091017],[122,314,78,0.009612684906835459],[122,314,79,0.00642568651282284],[122,315,64,-0.009348287927063041],[122,315,65,-0.007874113961765274],[122,315,66,-0.006085112545279496],[122,315,67,-0.003998890950762813],[122,315,68,-0.0015953378201488528],[122,315,69,0.0011544544928909254],[122,315,70,0.004246789164692773],[122,315,71,0.007650648860980629],[122,315,72,0.011313560062939047],[122,315,73,0.015167030372647666],[122,315,74,0.01913155201199693],[122,315,75,0.01985278613392094],[122,315,76,0.01591539175935675],[122,315,77,0.012126030435252505],[122,315,78,0.008567151735113163],[122,315,79,0.005313892213461669],[122,316,64,-0.009367554647938921],[122,316,65,-0.007793194564492649],[122,316,66,-0.005906686699613132],[122,316,67,-0.003724951030711863],[122,316,68,-0.001227325884538647],[122,316,69,0.0016150492299597597],[122,316,70,0.004797981809970646],[122,316,71,0.008289646615397118],[122,316,72,0.01203657039993537],[122,316,73,0.015969176419710397],[122,316,74,0.0200068817757629],[122,316,75,0.018908769473624784],[122,316,76,0.014913382983512156],[122,316,77,0.01107441910635962],[122,316,78,0.007474698554311135],[122,316,79,0.004189454811048426],[122,317,64,-0.008992551276966637],[122,317,65,-0.007325005627969517],[122,317,66,-0.005350860817446473],[122,317,67,-0.0030863968864703454],[122,317,68,-5.106048713815551E-4],[122,317,69,0.0024051064893418125],[122,317,70,0.005656012112572577],[122,317,71,0.009209606669554185],[122,317,72,0.013011685201944869],[122,317,73,0.016991971102585796],[122,317,74,0.021069284387698863],[122,317,75,0.017813791519994446],[122,317,76,0.01379655386939525],[122,317,77,0.00994446953404764],[122,317,78,0.006340090030589513],[122,317,79,0.0030581133535550337],[122,318,64,-0.008227121096293066],[122,318,65,-0.006473934720858557],[122,318,66,-0.004422435811583884],[122,318,67,-0.002088353866036991],[122,318,68,5.494589139693146E-4],[122,318,69,0.0035191192301735723],[122,318,70,0.006815341789592587],[122,318,71,0.01040507099585768],[122,318,72,0.014233633803905434],[122,318,73,0.018230428315241534],[122,318,74,0.020662766817897468],[122,318,75,0.016572132365384264],[122,318,76,0.012568709032370116],[122,318,77,0.00873949110704362],[122,318,78,0.005166145070027771],[122,318,79,0.001922225844751111],[122,319,64,-0.007087218093700249],[122,319,65,-0.005256063720835672],[122,319,66,-0.0031374136412605684],[122,319,67,-7.465704138286575E-4],[122,319,68,0.0019375583549256592],[122,319,69,0.004942447064765422],[122,319,70,0.008262242562983232],[122,319,71,0.01186347251344815],[122,319,72,0.015691249047108016],[122,319,73,0.019674997260780303],[122,319,74,0.019243389182921095],[122,319,75,0.015189692114603312],[122,319,76,0.011233703921126716],[122,319,77,0.007461245747328086],[122,319,78,0.003952535064755923],[122,319,79,7.794283873402196E-4],[123,-64,64,-0.002051815594321634],[123,-64,65,-0.002616544051969664],[123,-64,66,-0.0030881561671577775],[123,-64,67,-0.003472118641830226],[123,-64,68,-0.003755596441548835],[123,-64,69,-0.003912177531757876],[123,-64,70,-0.003918894297345115],[123,-64,71,-0.0037571672265751],[123,-64,72,-0.003413258233969574],[123,-64,73,-0.0028786075450903245],[123,-64,74,-0.002150051169888568],[123,-64,75,-0.0012299161349105907],[123,-64,76,-1.2599080436455075E-4],[123,-64,77,0.0011486322059442102],[123,-64,78,0.0025758428314424844],[123,-64,79,0.00413293219129508],[123,-63,64,-0.0016244821005308972],[123,-63,65,-0.002168309760817549],[123,-63,66,-0.002615291895094125],[123,-63,67,-0.002970690055416463],[123,-63,68,-0.0032224458808747013],[123,-63,69,-0.0033455585833535566],[123,-63,70,-0.003318456847668687],[123,-63,71,-0.0031239008563053216],[123,-63,72,-0.002749409702212304],[123,-63,73,-0.002187574740853506],[123,-63,74,-0.0014362560401430227],[123,-63,75,-4.986592291327116E-4],[123,-63,76,6.167097961194992E-4],[123,-63,77,0.0018962146799731188],[123,-63,78,0.003321385115656262],[123,-63,79,0.004869342050073824],[123,-62,64,-0.0010274881271737331],[123,-62,65,-0.0015532055081923881],[123,-62,66,-0.0019799435223310825],[123,-62,67,-0.002312409532493544],[123,-62,68,-0.002539367292897831],[123,-62,69,-0.002637526940366942],[123,-62,70,-0.0025869010726789605],[123,-62,71,-0.002371669711717807],[123,-62,72,-0.001980594650003297],[123,-62,73,-0.0014073218610414664],[123,-62,74,-6.505692444227643E-4],[123,-62,75,2.858028833345753E-4],[123,-62,76,0.0013928409864232705],[123,-62,77,0.002656669462367886],[123,-62,78,0.004058785837322673],[123,-62,79,0.005576481903801079],[123,-61,64,-2.704445198653203E-4],[123,-61,65,-7.810003550610701E-4],[123,-61,66,-0.0011920881242279422],[123,-61,67,-0.0015075458192214046],[123,-61,68,-0.0017169894966705017],[123,-61,69,-0.00179909367073876],[123,-61,70,-0.0017356025631902437],[123,-61,71,-0.0015121630243818101],[123,-61,72,-0.0011187382512056236],[123,-61,73,-5.499114402297639E-4],[123,-61,74,1.9492325961847177E-4],[123,-61,75,0.0011114849932745469],[123,-61,76,0.0021906479916569675],[123,-61,77,0.0034186030927068917],[123,-61,78,0.00477714099972571],[123,-61,79,0.00624405910199728],[123,-60,64,6.334089722780948E-4],[123,-60,65,1.3501032897593454E-4],[123,-60,66,-2.6507306781413923E-4],[123,-60,67,-5.695432803420753E-4],[123,-60,68,-7.688875772880677E-4],[123,-60,69,-8.439483018071452E-4],[123,-60,70,-7.783078803894457E-4],[123,-60,71,-5.590949956437909E-4],[123,-60,72,-1.7740933032007802E-4],[123,-60,73,3.713621214235512E-4],[123,-60,74,0.001087339735199044],[123,-60,75,0.0019660593559357982],[123,-60,76,0.0029984960940243155],[123,-60,77,0.0041712059363645535],[123,-60,78,0.005466587120306132],[123,-60,79,0.006863263039644662],[123,-59,64,0.0016679075133873974],[123,-59,65,0.0011787208280550402],[123,-59,66,7.851151306686024E-4],[123,-59,67,4.8572627587530574E-4],[123,-59,68,2.8918212740412395E-4],[123,-59,69,2.1232050586785875E-4],[123,-59,70,2.6965454762670427E-4],[123,-59,71,4.725878732150056E-4],[123,-59,72,8.289683218443061E-4],[123,-59,73,0.0013427486949153782],[123,-59,74,0.002013757007611829],[123,-59,75,0.002837578617787415],[123,-59,76,0.0038055524577647543],[123,-59,77,0.004904883439017424],[123,-59,78,0.006118872933805306],[123,-59,79,0.007427269063555835],[123,-58,64,0.0028148145187538182],[123,-58,65,0.002332080124957507],[123,-58,66,0.001940730087898138],[123,-58,67,0.0016408584198702697],[123,-58,68,0.0014401914322992124],[123,-58,69,0.0013531453689630153],[123,-58,70,0.001392300037479348],[123,-58,71,0.0015676299724755292],[123,-58,72,0.0018860276825282236],[123,-58,73,0.002350932639353341],[123,-58,74,0.0029620684602669136],[123,-58,75,0.003715290609344098],[123,-58,76,0.004602546803470886],[123,-58,77,0.005611952158270316],[123,-58,78,0.006727980947460544],[123,-58,79,0.007931776679429424],[123,-57,64,0.004054823886781571],[123,-57,65,0.0035761053537214957],[123,-57,66,0.0031832922732241997],[123,-57,67,0.0028779568588110428],[123,-57,68,0.0026668933986082567],[123,-57,69,0.0025620409964633877],[123,-57,70,0.0025740491328146136],[123,-57,71,0.002711519720141647],[123,-57,72,0.002980492783629626],[123,-57,73,0.003384036699450109],[123,-57,74,0.003921945402741254],[123,-57,75,0.004590544856315115],[123,-57,76,0.005382610936449736],[123,-57,77,0.0062874007454697],[123,-57,78,0.0072907992039232625],[123,-57,79,0.008375582609871262],[123,-56,64,0.005365503204800652],[123,-56,65,0.004888704748910469],[123,-56,66,0.00449128011262799],[123,-56,67,0.004176188481887214],[123,-56,68,0.003949240903013536],[123,-56,69,0.0038198872256284574],[123,-56,70,0.003796878067343831],[123,-56,71,0.003887512938984896],[123,-56,72,0.004097083320745197],[123,-56,73,0.004428419112481011],[123,-56,74,0.004881540836864479],[123,-56,75,0.005453419857796285],[123,-56,76,0.006137848746521121],[123,-56,77,0.006925423785898387],[123,-56,78,0.007803641450969069],[123,-56,79,0.008757110543151784],[123,-55,64,0.006703297576625432],[123,-55,65,0.006225869177995374],[123,-55,66,0.005820416355723791],[123,-55,67,0.0054911326570321155],[123,-55,68,0.005242809297739626],[123,-55,69,0.0050824621872737966],[123,-55,70,0.0050170275294383684],[123,-55,71,0.0050526105532964685],[123,-55,72,0.0051938818888077115],[123,-55,73,0.0054435761815910194],[123,-55,74,0.005802095297791486],[123,-55,75,0.006267218358452914],[123,-55,76,0.00683392071752027],[123,-55,77,0.007494303860196156],[123,-55,78,0.00823763805053487],[123,-55,79,0.009050519400679437],[123,-54,64,0.008020879692161873],[123,-54,65,0.007539607171856585],[123,-54,66,0.007122217527578806],[123,-54,67,0.006773954805300589],[123,-54,68,0.006498584504585335],[123,-54,69,0.006300816452069177],[123,-54,70,0.006185915345538511],[123,-54,71,0.0061589437827869594],[123,-54,72,0.006224108360705227],[123,-54,73,0.006384207025179275],[123,-54,74,0.006640180001916538],[123,-54,75,0.006990766531257571],[123,-54,76,0.007432269509165554],[123,-54,77,0.007958430003468367],[123,-54,78,0.008560413470711339],[123,-54,79,0.009226909346445596],[123,-53,64,0.009278785490213702],[123,-53,65,0.008790015900406893],[123,-53,66,0.008356535597611238],[123,-53,67,0.0079844298091557],[123,-53,68,0.007676459715927237],[123,-53,69,0.007435219363350098],[123,-53,70,0.007264493354979863],[123,-53,71,0.00716848735527381],[123,-53,72,0.007151121018429935],[123,-53,73,0.0072154214087969855],[123,-53,74,0.007363019229621953],[123,-53,75,0.007593750073912415],[123,-53,76,0.007905362794257848],[123,-53,77,0.008293336959101828],[123,-53,78,0.008750811222813178],[123,-53,79,0.009268624287733097],[123,-52,64,0.01044562678088711],[123,-52,65,0.00994548154459924],[123,-52,66,0.009491742888707673],[123,-52,67,0.009091108983942452],[123,-52,68,0.008745382113397522],[123,-52,69,0.00845528296043635],[123,-52,70,0.008223345918927016],[123,-52,71,0.008053130048525392],[123,-52,72,0.007948456763852111],[123,-52,73,0.007912747552002084],[123,-52,74,0.00794846402935194],[123,-52,75,0.008056652549080867],[123,-52,76,0.008236595457150905],[123,-52,77,0.00848557096820725],[123,-52,78,0.008798723495563649],[123,-52,79,0.009169046122882198],[123,-51,64,0.011498360662171112],[123,-51,65,0.010982933705857241],[123,-51,66,0.010504967924428305],[123,-51,67,0.01007153446941954],[123,-51,68,0.009683543136145986],[123,-51,69,0.009340125396029762],[123,-51,70,0.009042823848665787],[123,-51,71,0.008794776716042105],[123,-51,72,0.008599899165367363],[123,-51,73,0.008462164545167246],[123,-51,74,0.008384987846905813],[123,-51,75,0.008370713607473764],[123,-51,76,0.008420210356650153],[123,-51,77,0.00853257358957445],[123,-51,78,0.008704939108951525],[123,-51,79,0.008932408436893993],[123,-50,64,0.010665736600976666],[123,-50,65,0.01125477801909615],[123,-50,66,0.011382440296141938],[123,-50,67,0.01091256146084504],[123,-50,68,0.010478675024587632],[123,-50,69,0.010078638774717171],[123,-50,70,0.009713280700567352],[123,-50,71,0.009385550509019921],[123,-50,72,0.009099644491682964],[123,-50,73,0.008860230576618057],[123,-50,74,0.008671775884355056],[123,-50,75,0.008537979012707954],[123,-50,76,0.008461309165139694],[123,-50,77,0.008442654114595527],[123,-50,78,0.008481078860413209],[123,-50,79,0.008573696691862052],[123,-49,64,0.009855069114024178],[123,-49,65,0.010464409822957583],[123,-49,66,0.011052505824087094],[123,-49,67,0.011606993906795234],[123,-49,68,0.011125277293238056],[123,-49,69,0.010667321197446754],[123,-49,70,0.010233513353979715],[123,-49,71,0.00982683223315065],[123,-49,72,0.009451917181473578],[123,-49,73,0.009114239352591874],[123,-49,74,0.008819375759024507],[123,-49,75,0.008572388680536157],[123,-49,76,0.008377312555659407],[123,-49,77,0.008236750360340184],[123,-49,78,0.008151581343417695],[123,-49,79,0.00812078184442874],[123,-48,64,0.009209021572190303],[123,-48,65,0.009838762886822682],[123,-48,66,0.010454685517966094],[123,-48,67,0.011050045388925877],[123,-48,68,0.011614596503631489],[123,-48,69,0.011101778114751772],[123,-48,70,0.010603775056485234],[123,-48,71,0.010123742261081497],[123,-48,72,0.009666844816661736],[123,-48,73,0.009239380861504757],[123,-48,74,0.00884800819805155],[123,-48,75,0.008499076866526385],[123,-48,76,0.008198069808645066],[123,-48,77,0.007949153629030087],[123,-48,78,0.007754841327251889],[123,-48,79,0.007615768728609236],[123,-47,64,0.008745264778999427],[123,-47,65,0.009392664709383394],[123,-47,66,0.010032433427316058],[123,-47,67,0.010658457252776761],[123,-47,68,0.011272579125538432],[123,-47,69,0.011382009662219042],[123,-47,70,0.010828456403525276],[123,-47,71,0.010285204700471787],[123,-47,72,0.0097579472943464],[123,-47,73,0.009253749333695134],[123,-47,74,0.008780237054651292],[123,-47,75,0.008344892616903663],[123,-47,76,0.007954457213732126],[123,-47,77,0.007614444451303987],[123,-47,78,0.00732876585731315],[123,-47,79,0.007099470233797205],[123,-46,64,0.008472098236279793],[123,-46,65,0.00913208413392011],[123,-46,66,0.009789116978111903],[123,-46,67,0.01043797458746364],[123,-46,68,0.011081096517511964],[123,-46,69,0.01151393531274327],[123,-46,70,0.010916927890524673],[123,-46,71,0.010324115330648259],[123,-46,72,0.009741651913963228],[123,-46,73,0.009177241150964537],[123,-46,74,0.008639298659382483],[123,-46,75,0.008136220671142433],[123,-46,76,0.007675760253415084],[123,-46,77,0.007264513205207],[123,-46,78,0.006907515455918221],[123,-46,79,0.006607953647245238],[123,-45,64,0.008389448436563848],[123,-45,65,0.009055095474217],[123,-45,66,0.009720774151680834],[123,-45,67,0.010382408746464193],[123,-45,68,0.011043047398167978],[123,-45,69,0.01150863519339061],[123,-45,70,0.010882849257152093],[123,-45,71,0.010256724551633982],[123,-45,72,0.009636754522795513],[123,-45,73,0.009031097630733153],[123,-45,74,0.008448728427507313],[123,-45,75,0.007898692763429919],[123,-45,76,0.007389469147655109],[123,-45,77,0.006928438166353971],[123,-45,78,0.00652146172773379],[123,-45,79,0.0061725737593803665],[123,-44,64,0.008489844686236947],[123,-44,65,0.00915282132461804],[123,-44,66,0.009817016451543797],[123,-44,67,0.01047974300490833],[123,-44,68,0.01114469128796021],[123,-44,69,0.01138160747499901],[123,-44,70,0.01074349356890817],[123,-44,71,0.010102033913086408],[123,-44,72,0.00946389333892978],[123,-44,73,0.008837459903210738],[123,-44,74,0.008231999342067309],[123,-44,75,0.007656910984797095],[123,-44,76,0.007121087067640967],[123,-44,77,0.006632377266989208],[123,-44,78,0.00619716013969776],[123,-44,79,0.005820023017116138],[123,-43,64,0.008759375407013749],[123,-43,65,0.009410356885594488],[123,-43,66,0.01006191439302812],[123,-43,67,0.010712972526908957],[123,-43,68,0.011367916319536956],[123,-43,69,0.011152039621347525],[123,-43,70,0.010519084009775397],[123,-43,71,0.00988120439146738],[123,-43,72,0.009245033818479659],[123,-43,73,0.008618934446761354],[123,-43,74,0.008012171071933282],[123,-43,75,0.007434182150957365],[123,-43,76,0.00689395013747045],[123,-43,77,0.006399472841018029],[123,-43,78,0.005957337392528643],[123,-43,79,0.005572398261702896],[123,-42,64,0.009178627864568733],[123,-42,65,0.009807678639468537],[123,-42,66,0.010434868218962957],[123,-42,67,0.011060930538732435],[123,-42,68,0.011443023901993992],[123,-42,69,0.010842091283061529],[123,-42,70,0.010232141361371015],[123,-42,71,0.009616974590687291],[123,-42,72,0.009002962948042379],[123,-42,73,0.008398167870092215],[123,-42,74,0.007811548518932078],[123,-42,75,0.007252262169131736],[123,-42,76,0.006729058406004498],[123,-42,77,0.006249768712462413],[123,-42,78,0.00582089289958165],[123,-42,79,0.005447283705704758],[123,-41,64,0.009723614264990235],[123,-41,65,0.0103205402051066],[123,-41,66,0.010911466540058156],[123,-41,67,0.01149910325935016],[123,-41,68,0.011037700545692756],[123,-41,69,0.010476186627005269],[123,-41,70,0.009906840152393084],[123,-41,71,0.009333087054360433],[123,-41,72,0.008760791362757352],[123,-41,73,0.008197429557865527],[123,-41,74,0.007651348626748664],[123,-41,75,0.007131109448357733],[123,-41,76,0.006644917036849469],[123,-41,77,0.006200139066653549],[123,-41,78,0.005802913988261065],[123,-41,79,0.005457849921888539],[123,-40,64,0.01036668714197319],[123,-40,65,0.010921358185266227],[123,-40,66,0.011464335584936137],[123,-40,67,0.011087809971808006],[123,-40,68,0.010586709804752905],[123,-40,69,0.010080313904931146],[123,-40,70,0.009568371477298691],[123,-40,71,0.009053720896806849],[123,-40,72,0.008541461715091186],[123,-40,73,0.008038200828855403],[123,-40,74,0.007551374326624834],[123,-40,75,0.007088646451883879],[123,-40,76,0.006657387032175269],[123,-40,77,0.006264228626564987],[123,-40,78,0.005914704539096036],[123,-40,79,0.0056129687347188],[123,-39,64,0.0110774469300691],[123,-39,65,0.011439165264748228],[123,-39,66,0.010990709232786278],[123,-39,67,0.010552973705103781],[123,-39,68,0.010117963910505191],[123,-39,69,0.009681330085806303],[123,-39,70,0.009242310505277922],[123,-39,71,0.008802928985179124],[123,-39,72,0.008367261749677661],[123,-39,73,0.00794076929289285],[123,-39,74,0.007529694540908722],[123,-39,75,0.0071405285471549266],[123,-39,76,0.00677954487571042],[123,-39,77,0.006452403740756783],[123,-39,78,0.006163826877584341],[123,-39,79,0.005917344022330887],[123,-38,64,0.011167965744147582],[123,-38,65,0.01076130152052031],[123,-38,66,0.010380573243013797],[123,-38,67,0.01001650333667655],[123,-38,68,0.009659948828290788],[123,-38,69,0.009306268404672207],[123,-38,70,0.008953986729812027],[123,-38,71,0.008604077936669988],[123,-38,72,0.008259340575239377],[123,-38,73,0.007923827134555273],[123,-38,74,0.007602329215181992],[123,-38,75,0.007299919368452963],[123,-38,76,0.007021550551548029],[123,-38,77,0.006771714074134846],[123,-38,78,0.006554156833602917],[123,-38,79,0.006371658552798905],[123,-37,64,0.01043125509996102],[123,-37,65,0.010092433388992343],[123,-37,66,0.009788608018190665],[123,-37,67,0.009508256471544659],[123,-37,68,0.009240977317921032],[123,-37,69,0.00898164671733429],[123,-37,70,0.00872785504562498],[123,-37,71,0.008479289232829923],[123,-37,72,0.008237226665926998],[123,-37,73,0.008004072097922412],[123,-37,74,0.007782938403000349],[123,-37,75,0.0075772719693965795],[123,-37,76,0.0073905234681859765],[123,-37,77,0.007225864677875747],[123,-37,78,0.0070859519822236575],[123,-37,79,0.0069727370927737805],[123,-36,64,0.009728453731673702],[123,-36,65,0.009464701843734543],[123,-36,66,0.009245605280125455],[123,-36,67,0.009057441635299073],[123,-36,68,0.00888844073028495],[123,-36,69,0.008732774594791593],[123,-36,70,0.008586865783793848],[123,-36,71,0.008448879797696282],[123,-36,72,0.008318346171390089],[123,-36,73,0.008195809997741261],[123,-36,74,0.008082514484164102],[123,-36,75,0.00798011510707738],[123,-36,76,0.007890425891288971],[123,-36,77,0.0078151983001131],[123,-36,78,0.007755933177746596],[123,-36,79,0.007713726138624118],[123,-35,64,0.009091912818232588],[123,-35,65,0.008909207375994528],[123,-35,66,0.008781119716836823],[123,-35,67,0.00869181852568867],[123,-35,68,0.008628057352893868],[123,-35,69,0.008583057144288917],[123,-35,70,0.008551831887336464],[123,-35,71,0.008530800437832704],[123,-35,72,0.00851754016762008],[123,-35,73,0.00851055763804186],[123,-35,74,0.008509076657846426],[123,-35,75,0.008512844066508995],[123,-35,76,0.008521953563792884],[123,-35,77,0.008536687884026327],[123,-35,78,0.008557379589268862],[123,-35,79,0.008584290729560294],[123,-34,64,0.008552214668242844],[123,-34,65,0.008455127159750874],[123,-34,66,0.00842262161287631],[123,-34,67,0.008436892504212859],[123,-34,68,0.008483115181745608],[123,-34,69,0.008553293605392137],[123,-34,70,0.008640791468902904],[123,-34,71,0.008740070600621225],[123,-34,72,0.008846579539155805],[123,-34,73,0.00895664507964072],[123,-34,74,0.009067366915795712],[123,-34,75,0.009176515503149772],[123,-34,76,0.009282433267956301],[123,-34,77,0.009383939284503482],[123,-34,78,0.009480237540730947],[123,-34,79,0.00957082890833831],[123,-33,64,0.008137254048917113],[123,-33,65,0.008128823782577043],[123,-33,66,0.008194641254662476],[123,-33,67,0.0083151011336976],[123,-33,68,0.008473707070906425],[123,-33,69,0.00866096883973442],[123,-33,70,0.0088683640594175],[123,-33,71,0.009088207972359631],[123,-33,72,0.009313676247687561],[123,-33,73,0.00953881626307248],[123,-33,74,0.009758546768140015],[123,-33,75,0.009968645852400617],[123,-33,76,0.01016572716057522],[123,-33,77,0.010347204318243628],[123,-33,78,0.010511243550693493],[123,-33,79,0.01065670449748285],[123,-32,64,0.007871308709186843],[123,-32,65,0.007952943212576733],[123,-32,66,0.008117902883562008],[123,-32,67,0.008344990656269325],[123,-32,68,0.008615956294857082],[123,-32,69,0.008919535912247348],[123,-32,70,0.00924509893181213],[123,-32,71,0.009582651510017984],[123,-32,72,0.00992298981251398],[123,-32,73,0.010257827063322573],[123,-32,74,0.010579894065003866],[123,-32,75,0.010883012928041332],[123,-32,76,0.01116214378959117],[123,-32,77,0.011413404344699103],[123,-32,78,0.011634062056669343],[123,-32,79,0.011539868131813538],[123,-31,64,0.007774096804235587],[123,-31,65,0.007945499780971274],[123,-31,66,0.008208446073624533],[123,-31,67,0.00854038040501482],[123,-31,68,0.008921230652121727],[123,-31,69,0.009337688049948415],[123,-31,70,0.009776813967504131],[123,-31,71,0.010226176580007018],[123,-31,72,0.01067412790475355],[123,-31,73,0.011110039927288587],[123,-31,74,0.011524499331124661],[123,-31,75,0.01142024177159732],[123,-31,76,0.011082176471490094],[123,-31,77,0.010784033661208498],[123,-31,78,0.010529271214142287],[123,-31,79,0.01031979447056099],[123,-30,64,0.00785981905521693],[123,-30,65,0.008118946080864066],[123,-30,66,0.00847673252623986],[123,-30,67,0.008909513252150045],[123,-30,68,0.00939534334220699],[123,-30,69,0.00991861836189744],[123,-30,70,0.01046392362516727],[123,-30,71,0.011016300964132864],[123,-30,72,0.011561640039766284],[123,-30,73,0.011234179772935225],[123,-30,74,0.010751736653097192],[123,-30,75,0.010309311884376395],[123,-30,76,0.00991483298698075],[123,-30,77,0.009574266869414729],[123,-30,78,0.009291568511154619],[123,-30,79,0.009068687533170838],[123,-29,64,0.008136183616562315],[123,-29,65,0.008479225815507235],[123,-29,66,0.008926736400764223],[123,-29,67,0.009454190316933175],[123,-29,68,0.010037738961627888],[123,-29,69,0.01065926581094519],[123,-29,70,0.011300754671779456],[123,-29,71,0.011372606043251531],[123,-29,72,0.010755024818046863],[123,-29,73,0.01016547653998648],[123,-29,74,0.009617331217641798],[123,-29,75,0.009121913743278824],[123,-29,76,0.00868829154253345],[123,-29,77,0.008323133922078776],[123,-29,78,0.008030643446302516],[123,-29,79,0.007812559557804894],[123,-28,64,0.00860341177429327],[123,-28,65,0.009024807774276783],[123,-28,66,0.009555016438575528],[123,-28,67,0.010168888288056815],[123,-28,68,0.010840663088982443],[123,-28,69,0.011549546044551435],[123,-28,70,0.011055908564849578],[123,-28,71,0.01034609174155074],[123,-28,72,0.009657600032683195],[123,-28,73,0.009007623778260603],[123,-28,74,0.008411245731099231],[123,-28,75,0.007881109036212497],[123,-28,76,0.0074271698623053365],[123,-28,77,0.00705653516615033],[123,-28,78,0.006773385931946008],[123,-28,79,0.006578986088839985],[123,-27,64,0.009253222762355524],[123,-27,65,0.009745699271756208],[123,-27,66,0.010349768288292125],[123,-27,67,0.011039857858057719],[123,-27,68,0.01154778705669973],[123,-27,69,0.010777217095527715],[123,-27,70,0.009993990133229377],[123,-27,71,0.009220652937116505],[123,-27,72,0.00847828348687021],[123,-27,73,0.007785931386606776],[123,-27,74,0.0071601538100086425],[123,-27,75,0.006614647779195364],[123,-27,76,0.006159979422308889],[123,-27,77,0.005803410695978331],[123,-27,78,0.0055488238985133805],[123,-27,79,0.005396744139549369],[123,-26,64,0.010067796160431177],[123,-26,65,0.010622437555078683],[123,-26,66,0.01128985560226498],[123,-26,67,0.011314658060349049],[123,-26,68,0.010515248633930089],[123,-26,69,0.009683530099643768],[123,-26,70,0.008845461788127148],[123,-26,71,0.008025909948814035],[123,-26,72,0.007247937988442695],[123,-26,73,0.006532202267877423],[123,-26,74,0.005896454447852641],[123,-26,75,0.005355151202796623],[123,-26,76,0.0049191719457881145],[123,-26,77,0.004595645028669275],[123,-26,78,0.004387882701184338],[123,-26,79,0.004295424933634477],[123,-25,64,0.011018757881762757],[123,-25,65,0.011625126241318853],[123,-25,66,0.011041933161255965],[123,-25,67,0.010248894094454336],[123,-25,68,0.009399520098971437],[123,-25,69,0.008522851007244892],[123,-25,70,0.007647267666914247],[123,-25,71,0.006799720010433983],[123,-25,72,0.006004978913462824],[123,-25,73,0.005285003187046776],[123,-25,74,0.004658422702168729],[123,-25,75,0.004140138455093955],[123,-25,76,0.0037410401873380315],[123,-25,77,0.003467841976915596],[123,-25,78,0.003323036019775049],[123,-25,79,0.0033049646240662267],[123,-24,64,0.011333714552792631],[123,-24,65,0.010699586588754015],[123,-24,66,0.009953672304290348],[123,-24,67,0.009122211723929081],[123,-24,68,0.008238119755648322],[123,-24,69,0.007332937272756482],[123,-24,70,0.006437221737452476],[123,-24,71,0.00557971972990964],[123,-24,72,0.0047865963026700285],[123,-24,73,0.004080787625214751],[123,-24,74,0.0034814778976436883],[123,-24,75,0.0030037013054786243],[123,-24,76,0.0026580695765875666],[123,-24,77,0.002450625488156984],[123,-24,78,0.002382822458650662],[123,-24,79,0.002451630149026294],[123,-23,64,0.01026471574933451],[123,-23,65,0.009597947089987843],[123,-23,66,0.008822816808479841],[123,-23,67,0.007965692255178557],[123,-23,68,0.007060977254561907],[123,-23,69,0.006142501238476321],[123,-23,70,0.005242744281397461],[123,-23,71,0.004391967749249429],[123,-23,72,0.0036174339437339015],[123,-23,73,0.0029427559962129316],[123,-23,74,0.002387378948284823],[123,-23,75,0.001966192734200143],[123,-23,76,0.0016892775546720256],[123,-23,77,0.0015617819046138156],[123,-23,78,0.001583933291166104],[123,-23,79,0.001751181455428997],[123,-22,64,0.00916391274382974],[123,-22,65,0.008472731601287226],[123,-22,66,0.007678158127593129],[123,-22,67,0.0068065912909642335],[123,-22,68,0.005893725265510155],[123,-22,69,0.004975448313573981],[123,-22,70,0.004085909846056011],[123,-22,71,0.0032566192042333786],[123,-22,72,0.00251566504304794],[123,-22,73,0.0018870709809591679],[123,-22,74,0.0013902883949616304],[123,-22,75,0.0010398270037051713],[123,-22,76,8.450236429889979E-4],[123,-22,77,8.09949398518516E-4],[123,-22,78,9.334550231188476E-4],[123,-22,79,0.0012093543320896116],[123,-21,64,0.008061319481414694],[123,-21,65,0.007352213839625279],[123,-21,66,0.006546142669116377],[123,-21,67,0.005669412625648229],[123,-21,68,0.004758782051762534],[123,-21,69,0.003851958194949776],[123,-21,70,0.00298451497479448],[123,-21,71,0.0021889660838901735],[123,-21,72,0.0014939899780904075],[123,-21,73,9.237964884137969E-4],[123,-21,74,4.976358632233123E-4],[123,-21,75,2.2945080099633596E-4],[123,-21,76,1.2767178335478392E-4],[123,-21,77,1.9515576743181493E-4],[123,-21,78,4.292680486310136E-4],[123,-21,79,8.221068619946364E-4],[123,-20,64,0.006986144738869914],[123,-20,65,0.0062635266917923935],[123,-20,66,0.005451662521526273],[123,-20,67,0.004576621432233632],[123,-20,68,0.003675982273441469],[123,-20,69,0.002789030629182945],[123,-20,70,0.0019525386172226456],[123,-20,71,0.0011998143662555604],[123,-20,72,5.599345711818403E-4],[123,-20,73,5.712368034319768E-5],[123,-20,74,-2.89719552790759E-4],[123,-20,75,-4.6734768139431495E-4],[123,-20,76,-4.683421304638007E-4],[123,-20,77,-2.9114276653517283E-4],[123,-20,78,6.007021922360103E-5],[123,-20,79,5.756415542058067E-4],[123,-19,64,0.00596772908362925],[123,-19,65,0.0052335319143183645],[123,-19,66,0.00441885202906006],[123,-19,67,0.0035493616141629232],[123,-19,68,0.0026632100705845114],[123,-19,69,0.001801031253809936],[123,-19,70,0.0010006000206627577],[123,-19,71,2.958555854314375E-4],[123,-19,72,-2.8386073690299184E-4],[123,-19,73,-7.144161249505557E-4],[123,-19,74,-9.773445271681908E-4],[123,-19,75,-0.0010601522370883485],[123,-19,76,-9.564706579954975E-4],[123,-19,77,-6.660564193355185E-4],[123,-19,78,-1.9463927455119732E-4],[123,-19,79,4.4638152977866764E-4],[123,-18,64,0.0050364923329263315],[123,-18,65,0.0042896988259020765],[123,-18,66,0.003471891740515257],[123,-18,67,0.0026081787869000534],[123,-18,68,0.0017370358227423955],[123,-18,69,9.002388401735759E-4],[123,-18,70,1.364153453808869E-4],[123,-18,71,-5.199660103546868E-4],[123,-18,72,-0.001039359736796872],[123,-18,73,-0.0013977506733557354],[123,-18,74,-0.0015771034369396013],[123,-18,75,-0.001565653851328072],[123,-18,76,-0.0013580423460637996],[123,-18,77,-9.552895961237729E-4],[123,-18,78,-3.646149515782279E-4],[123,-18,79,4.009015238604358E-4],[123,-17,64,0.004212303534653784],[123,-17,65,0.003449511165221421],[123,-17,66,0.0026256374531683124],[123,-17,67,0.0017650592731587931],[123,-17,68,9.063433558056424E-4],[123,-17,69,9.221988254129457E-5],[123,-17,70,-6.379481856222954E-4],[123,-17,71,-0.0012492203807502476],[123,-17,72,-0.0017118557743275855],[123,-17,73,-0.0020019266513971127],[123,-17,74,-0.0021017682935081028],[123,-17,75,-0.0020002646513271024],[123,-17,76,-0.0016929699871788397],[123,-17,77,-0.0011820668639585385],[123,-17,78,-4.761611468082196E-4],[123,-17,79,4.100850353866237E-4],[123,-16,64,0.0034706229060261166],[123,-16,65,0.002689930192704168],[123,-16,66,0.0018589369128457038],[123,-16,67,0.001001135682605022],[123,-16,68,1.5492584486990164E-4],[123,-16,69,-6.362467552688262E-4],[123,-16,70,-0.0013324662205166967],[123,-16,71,-0.0018984535634882522],[123,-16,72,-0.002304363320350944],[123,-16,73,-0.0025264101360735858],[123,-16,74,-0.0025473248626652484],[123,-16,75,-0.002356640026846898],[123,-16,76,-0.0019508048375779456],[123,-16,77,-0.001333130213816617],[123,-16,78,-5.135646157143287E-4],[123,-16,79,4.916982450705292E-4],[123,-15,64,0.0027854399837658234],[123,-15,65,0.0019870744278846584],[123,-15,66,0.0011504171401408002],[123,-15,67,2.979316730687103E-4],[123,-15,68,-5.324356410681387E-4],[123,-15,69,-0.001296819830336929],[123,-15,70,-0.0019550097822386863],[123,-15,71,-0.0024716081951904815],[123,-15,72,-0.002816849749101574],[123,-15,73,-0.002967242633165515],[123,-15,74,-0.0029060330333999613],[123,-15,75,-0.0026234925128030334],[123,-15,76,-0.0021170285455811987],[123,-15,77,-0.001391118790669557],[123,-15,78,-4.5707000546801717E-4],[123,-15,79,6.673971949806003E-4],[123,-14,64,0.0021407399202493706],[123,-14,65,0.001326623488294487],[123,-14,66,4.8765062184123634E-4],[123,-14,67,-3.5488653223518654E-4],[123,-14,68,-0.001163801495947498],[123,-14,69,-0.0018951510545047452],[123,-14,70,-0.0025087430168544253],[123,-14,71,-0.002969346031675497],[123,-14,72,-0.0032475274602505044],[123,-14,73,-0.0033203084427100263],[123,-14,74,-0.003171635825099669],[123,-14,75,-0.0027926709596428276],[123,-14,76,-0.0021818957330397852],[123,-14,77,-0.001345036514474841],[123,-14,78,-2.948070428280696E-4],[123,-14,79,9.49528412054991E-4],[123,-13,64,0.001528477171652387],[123,-13,65,7.018370950278717E-4],[123,-13,66,-1.3475243124185408E-4],[123,-13,67,-9.613146139558788E-4],[123,-13,68,-0.001741743787780646],[123,-13,69,-0.0024323899495407738],[123,-13,70,-0.002993432527829592],[123,-13,71,-0.0033901334615010674],[123,-13,72,-0.003593689946989116],[123,-13,73,-0.0035818990197217767],[123,-13,74,-0.0033396337073937177],[123,-13,75,-0.002859130850981428],[123,-13,76,-0.002140091044318246],[123,-13,77,-0.0011895914915083176],[123,-13,78,-2.181291997066969E-5],[123,-13,79,0.0013424179881108187],[123,-12,64,9.467227504816487E-4],[123,-12,65,1.1174521088393349E-4],[123,-12,66,-7.168847675491168E-4],[123,-12,67,-0.0015206535261332666],[123,-12,68,-0.0022648634618557986],[123,-12,69,-0.002906546123855734],[123,-12,70,-0.003406627001823082],[123,-12,71,-0.0037312126290287235],[123,-12,72,-0.0038524511607080187],[123,-12,73,-0.003749200531290927],[123,-12,74,-0.0034075040044437904],[123,-12,75,-0.0028208732992025076],[123,-12,76,-0.0019903798408461705],[123,-12,77,-9.2455504321999E-4],[123,-12,78,3.608991236041269E-4],[123,-12,79,0.0018435876938152436],[123,-11,64,3.979853519163499E-4],[123,-11,65,-4.4049044181960546E-4],[123,-11,66,-0.001255115510022312],[123,-11,67,-0.0020289915681561484],[123,-11,68,-0.0027291543229167243],[123,-11,69,-0.003313708716780904],[123,-11,70,-0.0037447068059361308],[123,-11,71,-0.003989457755944661],[123,-11,72,-0.0040213876455222185],[123,-11,73,-0.0038207039432914675],[123,-11,74,-0.0033748645531684633],[123,-11,75,-0.002678851702007035],[123,-11,76,-0.0017352513163799376],[123,-11,77,-5.541389004918374E-4],[123,-11,78,8.472267194403977E-4],[123,-11,79,0.0024449000811857125],[123,-10,64,-1.1229265402870563E-4],[123,-10,65,-9.490425646419121E-4],[123,-10,66,-0.0017434954408492077],[123,-10,67,-0.002480524335503192],[123,-10,68,-0.003129212994419898],[123,-10,69,-0.003649122214429695],[123,-10,70,-0.004003802751049637],[123,-10,71,-0.00416211583116394],[123,-10,72,-0.004099082572213615],[123,-10,73,-0.0037965367098031903],[123,-10,74,-0.0032435806154973938],[123,-10,75,-0.0024368449702095183],[123,-10,76,-0.001380552836736911],[123,-10,77,-8.638924421831596E-5],[123,-10,78,0.0014268222461072916],[123,-10,79,0.003133634184258722],[123,-9,64,-5.770627313977567E-4],[123,-9,65,-0.0014067106168235944],[123,-9,66,-0.0021749926788418267],[123,-9,67,-0.0028687111371244927],[123,-9,68,-0.003459293499488954],[123,-9,69,-0.003908117332164787],[123,-9,70,-0.004180582760862047],[123,-9,71,-0.004247430447229719],[123,-9,72,-0.004085570481245681],[123,-9,73,-0.003678714898253136],[123,-9,74,-0.003017813891412836],[123,-9,75,-0.002101296176286078],[123,-9,76,-9.351143439943669E-4],[123,-9,77,4.674035905458992E-4],[123,-9,78,0.002085894882133747],[123,-9,79,0.0038934930878483133],[123,-8,64,-9.888189598618008E-4],[123,-8,65,-0.0018060371616547197],[123,-8,66,-0.002542556701349365],[123,-8,67,-0.0031872659201653926],[123,-8,68,-0.003714204593860995],[123,-8,69,-0.00408689518624914],[123,-8,70,-0.004272904764738985],[123,-8,71,-0.004245147199562095],[123,-8,72,-0.00398268125078663],[123,-8,73,-0.0034713143651704235],[123,-8,74,-0.00270401234367679],[123,-8,75,-0.0016811154251314294],[123,-8,76,-4.1036170924529627E-4],[123,-8,77,0.001093280790376181],[123,-8,78,0.002807971819241158],[123,-8,79,0.0047055443014259865],[123,-7,64,-0.0013405653155769996],[123,-7,65,-0.0021402455495072963],[123,-7,66,-0.002840008138766711],[123,-7,67,-0.0034309802410130005],[123,-7,68,-0.003890047509842028],[123,-7,69,-0.004183162545003149],[123,-7,70,-0.004280333747818642],[123,-7,71,-0.004156898736148891],[123,-7,72,-0.003794281540659345],[123,-7,73,-0.003180559403336698],[123,-7,74,-0.0023108394282426014],[123,-7,75,-0.0011874457140886915],[123,-7,76,1.8008202972877145E-4],[123,-7,77,0.0017751770208676344],[123,-7,78,0.0035746193861992204],[123,-7,79,0.005549093550719585],[123,-6,64,-0.0016265981877043906],[123,-6,65,-0.002403995776989403],[123,-6,66,-0.003062751297565361],[123,-6,67,-0.0035963753695132917],[123,-6,68,-0.003984791346006655],[123,-6,69,-0.004196615561403402],[123,-6,70,-0.00420452054734175],[123,-6,71,-0.003986467252477011],[123,-6,72,-0.0035264117293521556],[123,-6,73,-0.002814827113041805],[123,-6,74,-0.0018490412279056907],[123,-6,75,-6.333905294900036E-4],[123,-6,76,8.208085487722279E-4],[123,-6,77,0.002495469423188329],[123,-6,78,0.0043661246045825775],[123,-6,79,0.006402492285298302],[123,-5,64,-0.0018431004360661026],[123,-5,65,-0.0025939549349753453],[123,-5,66,-0.003208305951766066],[123,-5,67,-0.003682180214926279],[123,-5,68,-0.003998682964141176],[123,-5,69,-0.0041292690483230605],[123,-5,70,-0.0040494396833407765],[123,-5,71,-0.0037399219727351743],[123,-5,72,-0.003187316161277446],[123,-5,73,-0.0023845656102177426],[123,-5,74,-0.0013312499122995092],[123,-5,75,-3.3701922627372784E-5],[123,-5,76,0.0014950501690533698],[123,-5,77,0.0032355142613617544],[123,-5,78,0.0051621374736541305],[123,-5,79,0.007243878897887371],[123,-4,64,-0.0019885429285303124],[123,-4,65,-0.0027091782940989375],[123,-4,66,-0.003276654587376911],[123,-4,67,-0.0036896314220841346],[123,-4,68,-0.0039344879368517615],[123,-4,69,-0.003985628068366745],[123,-4,70,-0.003821483258131831],[123,-4,71,-0.003425628946678288],[123,-4,72,-0.0027873643579996096],[123,-4,73,-0.0019021240745497946],[123,-4,74,-7.717218964511241E-4],[123,-4,75,5.955721797861257E-4],[123,-4,76,0.002185120694953249],[123,-4,77,0.00397617168430704],[123,-4,78,0.00594227406359344],[123,-4,79,0.008051853362177518],[123,-3,64,-0.002063889198616026],[123,-3,65,-0.002751296779362296],[123,-3,66,-0.00327040099411705],[123,-3,67,-0.0036225917087080737],[123,-3,68,-0.0037975588305357187],[123,-3,69,-0.0037726983764088964],[123,-3,70,-0.003529407756073519],[123,-3,71,-0.0030541303251926],[123,-3,72,-0.002338860722859526],[123,-3,73,-0.0013814925634178807],[123,-3,74,-1.8600904436139496E-4],[123,-3,75,0.0012374826460403406],[123,-3,76,0.002872871924975136],[123,-3,77,0.004698318917962719],[123,-3,78,0.006686680285394729],[123,-3,79,0.008806084722230375],[123,-2,64,-0.002072598639323561],[123,-2,65,-0.0027245063605770043],[123,-2,66,-0.0031947358783912263],[123,-2,67,-0.003487482304417353],[123,-2,68,-0.0035957269133159056],[123,-2,69,-0.0034998320784924825],[123,-2,70,-0.0031841304264312023],[123,-2,71,-0.0026378901597656386],[123,-2,72,-0.0018557401860525753],[123,-2,73,-8.37949474917761E-4],[123,-2,74,4.0943873490413725E-4],[123,-2,75,0.0018746169581321619],[123,-2,76,0.0035401665048172184],[123,-2,77,0.005383352053330233],[123,-2,78,0.00737655600307311],[123,-2,79,0.009487850610048075],[123,-1,64,-0.002020423503272244],[123,-1,65,-0.002635354737290789],[123,-1,66,-0.0030572050257265796],[123,-1,67,-0.0032930252132114843],[123,-1,68,-0.003339013250423342],[123,-1,69,-0.0031784047597510183],[123,-1,70,-0.0027983718416202384],[123,-1,71,-0.0021909037050308723],[123,-1,72,-0.0013531471995647337],[123,-1,73,-2.876145374984861E-4],[123,-1,74,9.97741121692925E-4],[123,-1,75,0.0024895812787520764],[123,-1,76,0.004169367684044178],[123,-1,77,0.006013676446398452],[123,-1,78,0.007994638960470103],[123,-1,79,0.010080507730337656],[123,0,64,-0.0019149949168733235],[123,0,65,-0.002492320630599279],[123,0,66,-0.002867275474552827],[123,0,67,-0.003049790958776383],[123,0,68,-0.0030391550948028713],[123,0,69,-0.0028213202906085394],[123,0,70,-0.0023861411943657544],[123,0,71,-0.0017281671926613674],[123,0,72,-8.46895501283024E-4],[123,0,73,2.5309476278073803E-4],[123,0,74,0.0015621268143606723],[123,0,75,0.0030655277787258197],[123,0,76,0.0047438464197354195],[123,0,77,0.006573185596041353],[123,0,78,0.008525647812070087],[123,0,79,0.010569892034831121],[123,1,64,-0.00176519520717805],[123,1,65,-0.0023051837102805416],[123,1,66,-0.0026356982623730553],[123,1,67,-0.002769550727499115],[123,1,68,-0.0027089466683356293],[123,1,69,-0.0024423424022548814],[123,1,70,-0.0019620632261202445],[123,1,71,-0.001265006569961932],[123,1,72,-3.5280653996643744E-4],[123,1,73,7.681062282786535E-4],[123,1,74,0.0020865486603660736],[123,1,75,0.0035867323152266916],[123,1,76,0.005248512269023316],[123,1,77,0.007047736444062475],[123,1,78,0.008956693831984965],[123,1,79,0.010944659891542806],[123,2,64,-0.00158031470173495],[123,2,65,-0.0020841844896238924],[123,2,66,-0.0023736676727854063],[123,2,67,-0.0024644329276016564],[123,2,68,-0.002361393974112465],[123,2,69,-0.002055251820462265],[123,2,70,-0.001540544253576998],[123,2,71,-8.162608886082796E-4],[123,2,72,1.1407997342334608E-4],[123,2,73,0.0012424446329713196],[123,2,74,0.0025563866554340602],[123,2,75,0.0040392379557777705],[123,2,76,0.005670387171582869],[123,2,77,0.007425644024122694],[123,2,78,0.009277688211388276],[123,2,79,0.011196601235185016],[123,3,64,-0.0013689639353376135],[123,3,65,-0.0018389380868388241],[123,3,66,-0.0020917367664223937],[123,3,67,-0.0021458425815527216],[123,3,68,-0.002008643404427768],[123,3,69,-0.0016727929263781096],[123,3,70,-0.0011347484121806003],[123,3,71,-3.9530158665352993E-4],[123,3,72,5.404290831346999E-4],[123,3,73,0.001663081839514619],[123,3,74,0.0029592100369941025],[123,3,75,0.00441151455765436],[123,3,76,0.005999149152771074],[123,3,77,0.007698097485762289],[123,3,78,0.009481620524051044],[123,3,79,0.011320772812572112],[123,4,64,-0.0011377637311455618],[123,4,65,-0.001577131885504551],[123,4,66,-0.001798524574821963],[123,4,67,-0.0018231821220993853],[123,4,68,-0.0016607236925091607],[123,4,69,-0.0013054480505871012],[123,4,70,-7.554181995673426E-4],[123,4,71,-1.2915034252721835E-5],[123,4,72,9.156492536718256E-4],[123,4,73,0.002019879599929646],[123,4,74,0.0032856075340139284],[123,4,75,0.004695160773913598],[123,4,76,0.006227691916690323],[123,4,77,0.007859565082182574],[123,4,78,0.009564799266858662],[123,4,79,0.011315567075937885],[123,5,64,-8.89807683202642E-4],[123,5,65,-0.0013030011033263748],[123,5,66,-0.0014992083202328822],[123,5,67,-0.001502366227466494],[123,5,68,-0.0013240930894971258],[123,5,69,-9.600305509388875E-4],[123,5,70,-4.095298077440757E-4],[123,5,71,3.239617185317539E-4],[123,5,72,0.0012330571468358582],[123,5,73,0.0023066357290637595],[123,5,74,0.0035300964859107027],[123,5,75,0.0048856590049830345],[123,5,76,0.006352710428589293],[123,5,77,0.007908197574972953],[123,5,78,0.009527063061986798],[123,5,79,0.011182724237481345],[123,6,64,-6.228878708871376E-4],[123,6,65,-0.0010155718472655748],[123,6,66,-0.0011937894348209948],[123,6,67,-0.001184119102488866],[123,6,68,-9.99980259441364E-4],[123,6,69,-6.380857477200052E-4],[123,6,70,-9.877342428181621E-5],[123,6,71,6.13660160636092E-4],[123,6,72,0.0014911744792619986],[123,6,73,0.0025222368779729103],[123,6,74,0.003692110796906424],[123,6,75,0.00498317951659345],[123,6,76,0.006375304523961196],[123,6,77,0.007846217530256619],[123,6,78,0.009371945121481314],[123,6,79,0.010927264978718135],[123,7,64,-3.250378752120852E-4],[123,7,65,-7.038873761193879E-4],[123,7,66,-8.720619775424928E-4],[123,7,67,-8.58712965621697E-4],[123,7,68,-6.788997694256244E-4],[123,7,69,-3.301851166839714E-4],[123,7,70,1.8637205103386048E-4],[123,7,71,8.659192182701259E-4],[123,7,72,0.0017000677956496282],[123,7,73,0.0026771777069610264],[123,7,74,0.0037826683214126564],[123,7,75,0.004999354938059013],[123,7,76,0.006307809983843447],[123,7,77,0.007686748047271253],[123,7,78,0.009113433837119296],[123,7,79,0.010564112130506238],[123,8,64,3.1362192006998085E-5],[123,8,65,-3.3978276005559865E-4],[123,8,66,-5.052529175368366E-4],[123,8,67,-4.965493200930001E-4],[123,8,68,-3.3015314841649716E-4],[123,8,69,-4.283729330205067E-6],[123,8,70,4.795045123431565E-4],[123,8,71,0.0011160483763176055],[123,8,72,0.0018968632527709992],[123,8,73,0.002810449034422483],[123,8,74,0.0038426138671129257],[123,8,75,0.004976814998769483],[123,8,76,0.0061945159590459185],[123,8,77,0.007475559279663235],[123,8,78,0.008798553949066422],[123,8,79,0.010141276784987524],[123,9,64,4.724348350231983E-4],[123,9,65,1.0393305139559677E-4],[123,9,66,-6.505840458338708E-5],[123,9,67,-6.800038574277686E-5],[123,9,68,7.749375623093491E-5],[123,9,69,3.727204534223906E-4],[123,9,70,8.158152627746827E-4],[123,9,71,0.0014014959371396168],[123,9,72,0.0021213705022414737],[123,9,73,0.0029642565681858046],[123,9,74,0.003916511206492625],[123,9,75,0.004962370707138533],[123,9,76,0.006084299517861404],[123,9,77,0.007263347660315745],[123,9,78,0.008479515914953814],[123,9,79,0.00971212806911788],[123,10,64,0.0010196743800769193],[123,10,65,6.498754352577569E-4],[123,10,66,4.7234180733913113E-4],[123,10,67,4.5217057279401334E-4],[123,10,68,5.70954961147768E-4],[123,10,69,8.296537374963224E-4],[123,10,70,0.0012262351518382945],[123,10,71,0.0017554350380695248],[123,10,72,0.002409080069538283],[123,10,73,0.0031764158735183437],[123,10,74,0.004044439375124493],[123,10,75,0.004998234738724586],[123,10,76,0.0060213122761072465],[123,10,77,0.007095949695721028],[123,10,78,0.008203535076465904],[123,10,79,0.009324910963026295],[123,11,64,0.0016924962278751414],[123,11,65,0.0013186303584328954],[123,11,66,0.0011288059812258023],[123,11,67,0.0010872840602806316],[123,11,68,0.001175229294916117],[123,11,69,0.001393377410884757],[123,11,70,0.00173962597565763],[123,11,71,0.002208810564338768],[123,11,72,0.0027930411413315728],[123,11,73,0.0034820375413124522],[123,11,74,0.004263463457665468],[123,11,75,0.005123258356881137],[123,11,76,0.006045966750890252],[123,11,77,0.007015064275951928],[123,11,78,0.008013280046682537],[123,11,79,0.009022914777209073],[123,12,64,0.0025110917576321875],[123,12,65,0.002131602130708167],[123,12,66,0.0019270469259994125],[123,12,67,0.0018615048217953051],[123,12,68,0.0019160789322685548],[123,12,69,0.0020913570977638823],[123,12,70,0.002385212732186395],[123,12,71,0.0027926064256558695],[123,12,72,0.0033059367260261053],[123,12,73,0.003915384517536174],[123,12,74,0.004609250438367821],[123,12,75,0.005374284801697914],[123,12,76,0.0061960095102367935],[123,12,77,0.0070590314821864265],[123,12,78,0.007947347137062428],[123,12,79,0.00884463752289303],[123,13,64,0.003499594562993705],[123,13,65,0.003114168213928642],[123,13,66,0.002893748845229226],[123,13,67,0.0028028931661501],[123,13,68,0.002822986417874126],[123,13,69,0.0029544952798986703],[123,13,70,0.003195260800385658],[123,13,71,0.0035403367232150827],[123,13,72,0.003982359094239352],[123,13,73,0.004511903810404338],[123,13,74,0.00511783158195066],[123,13,75,0.005787619813813496],[123,13,76,0.006507680950308939],[123,13,77,0.007263666867076785],[123,13,78,0.008040758935950978],[123,13,79,0.008823943431826459],[123,14,64,0.0046895651066698775],[123,14,65,0.004299148166340789],[123,14,66,0.004062991516342895],[123,14,67,0.003946754012837138],[123,14,68,0.003932396832078592],[123,14,69,0.00402023333576752],[123,14,70,0.004208004006778029],[123,14,71,0.00449076629908092],[123,14,72,0.0048612904380780225],[123,14,73,0.005310436884351968],[123,14,74,0.0058275149542544894],[123,14,75,0.0064006221415081315],[123,14,76,0.007016963736273838],[123,14,77,0.0076631523916673005],[123,14,78,0.008325487342271582],[123,14,79,0.008990213034540714],[123,15,64,0.006122676146435008],[123,15,65,0.005729290581985653],[123,15,66,0.005478441172447689],[123,15,67,0.0053374389942893955],[123,15,68,0.005289049215663226],[123,15,69,0.005333345538315893],[123,15,70,0.005467853469109307],[123,15,71,0.00568750827142204],[123,15,72,0.0059850858473121694],[123,15,73,0.006351607972027581],[123,15,74,0.006776721394001517],[123,15,75,0.0072490503817919435],[123,15,76,0.007756522368673552],[123,15,77,0.008286666415361597],[123,15,78,0.008826884281272394],[123,15,79,0.009364693964408078],[123,16,64,0.007836466109548296],[123,16,65,0.007442492277473232],[123,16,66,0.007177923954018187],[123,16,67,0.00701219613578506],[123,16,68,0.006929070443809291],[123,16,69,0.006928298978233212],[123,16,70,0.007007104117636354],[123,16,71,0.007160217553196213],[123,16,72,0.007380352010281648],[123,16,73,0.007658639091095281],[123,16,74,0.00798503277176802],[123,16,75,0.008348678175606953],[123,16,76,0.008738245332751755],[123,16,77,0.009142227724741497],[123,16,78,0.009549205499903355],[123,16,79,0.009948073331486125],[123,17,64,0.009845408583343405],[123,17,65,0.009453430208667988],[123,17,66,0.009175999949439146],[123,17,67,0.008985073041001296],[123,17,68,0.008865574407417677],[123,17,69,0.008816873152541196],[123,17,70,0.008835840336195548],[123,17,71,0.00891697764508382],[123,17,72,0.009052932076104707],[123,17,73,0.009234967835814277],[123,17,74,0.009453395013669142],[123,17,75,0.009697954696727875],[123,17,76,0.009958160303023617],[123,17,77,0.010223595019123427],[123,17,78,0.010484165333748408],[123,17,79,0.010730310763005764],[123,18,64,0.012141835839419829],[123,18,65,0.01175465014509181],[123,18,66,0.011465286512322936],[123,18,67,0.011248541626744091],[123,18,68,0.011090644818042174],[123,18,69,0.010990541545095456],[123,18,70,0.010944737783877447],[123,18,71,0.010947522997360133],[123,18,72,0.01099152696371976],[123,18,73,0.011068224484640236],[123,18,74,0.011168387561801243],[123,18,75,0.011282484762555741],[123,18,76,0.011401027627368816],[123,18,77,0.011514864100899346],[123,18,78,0.011615419094758904],[123,18,79,0.011694882412052092],[123,19,64,0.011765865180653154],[123,19,65,0.012124396005094315],[123,19,66,0.012401563751257262],[123,19,67,0.0126195110901582],[123,19,68,0.012790618715014251],[123,19,69,0.012916416774342087],[123,19,70,0.013000783178745765],[123,19,71,0.013049625126712844],[123,19,72,0.013070283321313868],[123,19,73,0.013070997838918874],[123,19,74,0.013060436023940787],[123,19,75,0.013047282627282433],[123,19,76,0.013039892252121087],[123,19,77,0.012991762975037006],[123,19,78,0.012919590192010128],[123,19,79,0.012819542169941207],[123,20,64,0.009074258083688926],[123,20,65,0.009421881266816595],[123,20,66,0.009708428451223293],[123,20,67,0.009952782909009672],[123,20,68,0.0101658173415038],[123,20,69,0.010349505715669572],[123,20,70,0.01050803543305605],[123,20,71,0.01064739501333141],[123,20,72,0.010774744223584543],[123,20,73,0.010897855359740648],[123,20,74,0.011024626008331283],[123,20,75,0.011162663437186148],[123,20,76,0.01131894058722688],[123,20,77,0.011499523465716737],[123,20,78,0.011709369575303724],[123,20,79,0.011952196854349001],[123,21,64,0.006218403497392246],[123,21,65,0.006551853343387947],[123,21,66,0.00684599407383315],[123,21,67,0.007116351102336915],[123,21,68,0.007372226529416672],[123,21,69,0.007616018118179638],[123,21,70,0.00785216154115775],[123,21,71,0.008086628500755873],[123,21,72,0.008326268994446561],[123,21,73,0.008578233985814046],[123,21,74,0.008849478756364734],[123,21,75,0.009146347010624176],[123,21,76,0.009474235608972014],[123,21,77,0.009837339610387654],[123,21,78,0.010238477122235176],[123,21,79,0.010678993277961086],[123,22,64,0.0032615900618291104],[123,22,65,0.0035775252863815975],[123,22,66,0.003877075958116883],[123,22,67,0.0041723835472625755],[123,22,68,0.004471143334045543],[123,22,69,0.004776138069203062],[123,22,70,0.005091973505608731],[123,22,71,0.005424493435180466],[123,22,72,0.0057801012064545906],[123,22,73,0.006165170454381983],[123,22,74,0.00658554525724301],[123,22,75,0.007046129711584363],[123,22,76,0.007550566697491314],[123,22,77,0.00810100539496175],[123,22,78,0.008697956909280612],[123,22,79,0.009340237170845181],[123,23,64,2.733522572214772E-4],[123,23,65,5.68423252174252E-4],[123,23,66,8.708101372993354E-4],[123,23,67,0.0011893149071277721],[123,23,68,0.001530016028841922],[123,23,69,0.001896024815456247],[123,23,70,0.002292025365012913],[123,23,71,0.0027236148541004276],[123,23,72,0.0031966119624962756],[123,23,73,0.0037164626845772467],[123,23,74,0.004287743676945577],[123,23,75,0.004913763047728182],[123,23,76,0.005596258255503529],[123,23,77,0.0063351905566015046],[123,23,78,0.007128635220426971],[123,23,79,0.007972766525390905],[123,24,64,-0.0026733521217743796],[123,24,65,-0.00240242820225576],[123,24,66,-0.0021001334656591507],[123,24,67,-0.0017608929469756821],[123,24,68,-0.001380229185660747],[123,24,69,-9.547749009419544E-4],[123,24,70,-4.798697706069235E-4],[123,24,71,4.9715000566299165E-5],[123,24,72,6.39079900923113E-4],[123,24,73,0.001292605096109405],[123,24,74,0.002013463257439564],[123,24,75,0.0028032370526148934],[123,24,76,0.003661640862540428],[123,24,77,0.004586346043093816],[123,24,78,0.0055729088173135585],[123,24,79,0.006614799663668545],[123,25,64,-0.005504842342366886],[123,25,65,-0.005261201604556914],[123,25,66,-0.004962222816893945],[123,25,67,-0.004605381096536064],[123,25,68,-0.004187759143409397],[123,25,69,-0.003705820738924879],[123,25,70,-0.0031550388923226656],[123,25,71,-0.002530674154020407],[123,25,72,-0.0018284687383269549],[123,25,73,-0.0010452294458827634],[123,25,74,-1.7929937716420588E-4],[123,25,75,7.690812940486341E-4],[123,25,76,0.0017975249493659626],[123,25,77,0.0029013557604804924],[123,25,78,0.0040735774882345996],[123,25,79,0.005304948574025036],[123,26,64,-0.00814929122122189],[123,26,65,-0.007935841246505091],[123,26,66,-0.007643619112926712],[123,26,67,-0.007272913105347596],[123,26,68,-0.006822301356492432],[123,26,69,-0.0062881781456028156],[123,26,70,-0.005666263996831337],[123,26,71,-0.004952425684033487],[123,26,72,-0.00414336008428393],[123,26,73,-0.0032371614556481678],[123,26,74,-0.0022337722023634994],[123,26,75,-0.001135317481052794],[123,26,76,5.367571748928681E-5],[123,26,77,0.0013261741072582854],[123,26,78,0.002672647107980322],[123,26,79,0.004081187910560995],[123,27,64,-0.01053917578808815],[123,27,65,-0.010358515270129756],[123,27,66,-0.010076614068709442],[123,27,67,-0.009696282501810835],[123,27,68,-0.009217507150256078],[123,27,69,-0.008636722295039824],[123,27,70,-0.007950012058124307],[123,27,71,-0.007153959408648806],[123,27,72,-0.006246312577267121],[123,27,73,-0.005226530672835133],[123,27,74,-0.004096208634996625],[123,27,75,-0.0028593819566764414],[123,27,76,-0.0015227119005106168],[123,27,77,-9.555221050460353E-5],[123,27,78,0.001410101417673351],[123,27,79,0.0029797775998249712],[123,28,64,-0.01261359995565692],[123,28,65,-0.012467943132989155],[123,28,66,-0.012199947293871668],[123,28,67,-0.011814606553729151],[123,28,68,-0.011313208858472968],[123,28,69,-0.010692345404615968],[123,28,70,-0.00994857917551852],[123,28,71,-0.009079309930583028],[123,28,72,-0.008083416621266593],[123,28,73,-0.0069617760043986015],[123,28,74,-0.005717657653646377],[123,28,75,-0.004356995877349348],[123,28,76,-0.0028885393470960237],[123,28,77,-0.0013238795239522818],[123,28,78,3.2264076430572826E-4],[123,28,79,0.002034136993763965],[123,29,64,-0.01432048675989524],[123,29,65,-0.01421159615344682],[123,29,66,-0.013961001623724626],[123,29,67,-0.013575504400193892],[123,29,68,-0.013057569374499967],[123,29,69,-0.012404065988326983],[123,29,70,-0.01161214775040951],[123,29,71,-0.010680120185993692],[123,29,72,-0.009608053458647363],[123,29,73,-0.008398269432189716],[123,29,74,-0.0070557034362516285],[123,29,75,-0.005588141310122675],[123,29,76,-0.004006332598798716],[123,29,77,-0.002323981060063217],[123,29,78,-5.576139094877142E-4],[123,29,79,0.0012736685211485555],[123,30,64,-0.01561863744440322],[123,30,65,-0.015547768539957721],[123,30,66,-0.01531787397120491],[123,30,67,-0.014937157304174647],[123,30,68,-0.014409122056007017],[123,30,69,-0.013731038314181493],[123,30,70,-0.012900755261852642],[123,30,71,-0.011917559408591547],[123,30,72,-0.010782752528861038],[123,30,73,-0.009500103527169623],[123,30,74,-0.0080761745501129],[123,30,75,-0.006520521977294574],[123,30,76,-0.004845773222479937],[123,30,77,-0.003067580560793812],[123,30,78,-0.0012044534647686687],[123,30,79,7.225288210189433E-4],[123,31,64,-0.016479654353338435],[123,31,65,-0.01644751599273675],[123,31,66,-0.016241318946395696],[123,31,67,-0.01587024846896946],[123,31,68,-0.015338698662770756],[123,31,69,-0.014644460020749877],[123,31,70,-0.013786172908803716],[123,31,71,-0.012764164122565655],[123,31,72,-0.011580986302265575],[123,31,73,-0.010241831962461754],[123,31,74,-0.008754822506442718],[123,31,75,-0.007131172904504032],[123,31,76,-0.005385233011892793],[123,31,77,-0.003534406783496265],[123,31,78,-0.001598950905759586],[123,31,79,3.9834539074768663E-4],[123,32,64,-0.016889724276112055],[123,32,65,-0.016896458637722846],[123,32,66,-0.016716562157438417],[123,32,67,-0.016359779527487794],[123,32,68,-0.015831242674781833],[123,32,69,-0.015129375521232398],[123,32,70,-0.014253692069580931],[123,32,71,-0.01320560047508198],[123,32,72,-0.011988901293808342],[123,32,73,-0.010610162152623878],[123,32,74,-0.009078969252160968],[123,32,75,-0.0074080564183795624],[123,32,76,-0.005613312709449031],[123,32,77,-0.00371366986031599],[123,32,78,-0.0017308711048451702],[123,32,79,3.1087684772868686E-4],[123,33,64,-0.01685125855912082],[123,33,65,-0.016896444717181335],[123,33,66,-0.01674497976619193],[123,33,67,-0.016406760470966855],[123,33,68,-0.015887504996874243],[123,33,69,-0.015186372487275031],[123,33,70,-0.014303816201694245],[123,33,71,-0.013242345904397863],[123,33,72,-0.012006983663343282],[123,33,73,-0.010605598869268616],[123,33,74,-0.009049122918975779],[123,33,75,-0.007351644303483607],[123,33,76,-0.005530385125155088],[123,33,77,-0.0036055603357085663],[123,33,78,-0.001600121236690219],[123,33,79,4.6061498701903923E-4],[123,34,64,-0.016384385970530924],[123,34,65,-0.016467071123890446],[123,34,66,-0.016345640529136434],[123,34,67,-0.016029769438284793],[123,34,68,-0.015525618711215277],[123,34,69,-0.014833168363934305],[123,34,70,-0.013953855472123989],[123,34,71,-0.012891287818222427],[123,34,72,-0.011651657503553056],[123,34,73,-0.010244037396910108],[123,34,74,-0.008680560886900128],[123,34,75,-0.006976485692355925],[123,34,76,-0.005150142758974365],[123,34,77,-0.0032227715286109447],[123,34,78,-0.001218243107934857],[123,34,79,8.373269170654731E-4],[123,35,64,-0.015528293978633598],[123,35,65,-0.01564705653168939],[123,35,66,-0.015556706213762924],[123,35,67,-0.015266378443441427],[123,35,68,-0.014782549195065718],[123,35,69,-0.0141060835262476],[123,35,70,-0.013239421073751558],[123,35,71,-0.012187236632891476],[123,35,72,-0.010956813606539748],[123,35,73,-0.009558304500990336],[123,35,74,-0.008004878949141555],[123,35,75,-0.0063127600174877774],[123,35,76,-0.004501149816382095],[123,35,77,-0.0025920456806501372],[123,35,78,-6.099484175162752E-4],[123,35,79,0.0014185356714529053],[123,36,64,-0.014342413787215992],[123,36,65,-0.014495462548891185],[123,36,66,-0.01443668594766108],[123,36,67,-0.014174440781572609],[123,36,68,-0.013715415582642805],[123,36,69,-0.013061397351047558],[123,36,70,-0.012215815851970267],[123,36,71,-0.011184350200964685],[123,36,72,-0.009975266189573026],[123,36,73,-0.008599645185535331],[123,36,74,-0.007071505090476466],[123,36,75,-0.0054078141023465075],[123,36,76,-0.003628398281456726],[123,36,77,-0.0017557441554717247],[123,36,78,1.8530218211166126E-4],[123,36,79,0.0021679378259630414],[123,37,64,-0.012907444167094655],[123,37,65,-0.013092758007052493],[123,37,66,-0.013065539736053431],[123,37,67,-0.012833235527309594],[123,37,68,-0.012402679220847453],[123,37,69,-0.011776583148956892],[123,37,70,-0.010959317540326693],[123,37,71,-0.009957466336545744],[123,37,72,-0.008780134752512797],[123,37,73,-0.007439152923755645],[123,37,74,-0.005949176114372865],[123,37,75,-0.00432768221232603],[123,37,76,-0.002594867479302875],[123,37,77,-7.734417481991834E-4],[123,37,78,0.001111675529786264],[123,37,79,0.0030337567966154558],[123,38,64,-0.011323630342388539],[123,38,65,-0.01153912255263114],[123,38,66,-0.011543017785936211],[123,38,67,-0.011341850031429372],[123,38,68,-0.01094257640859937],[123,38,69,-0.01034880029863215],[123,38,70,-0.00956574111931022],[123,38,71,-0.008600747436765742],[123,38,72,-0.00746358374697829],[123,38,73,-0.0061666174582299385],[123,38,74,-0.004724906526275864],[123,38,75,-0.003156188436932662],[123,38,76,-0.0014807714615546772],[123,38,77,2.786706726092976E-4],[123,38,78,0.002097399355041591],[123,38,79,0.003949005383812241],[123,39,64,-0.009654329777226078],[123,39,65,-0.009897613756967271],[123,39,66,-0.009931654744753137],[123,39,67,-0.009762086669756375],[123,39,68,-0.009395987722763923],[123,39,69,-0.00883782906218639],[123,39,70,-0.00809359313457579],[123,39,71,-0.0071712542858220945],[123,39,72,-0.006081055565010517],[123,39,73,-0.004835689211055678],[123,39,74,-0.0034503812376584027],[123,39,75,-0.001942880766969206],[123,39,76,-3.3335498537491795E-4],[123,39,77,0.0013558091959503932],[123,39,78,0.003100295499731885],[123,39,79,0.0048742392091148095],[123,40,64,-0.007916558312166944],[123,40,65,-0.008184682286812118],[123,40,66,-0.00824725934528356],[123,40,67,-0.008108935755329519],[123,40,68,-0.007776900384882804],[123,40,69,-0.007256524373305666],[123,40,70,-0.006554517338809738],[123,40,71,-0.005679384644148676],[123,40,72,-0.004641705485035218],[123,40,73,-0.0034543174728583186],[123,40,74,-0.0021324080757493696],[123,40,75,-6.935135108742987E-4],[123,40,76,8.425741017573523E-4],[123,40,77,0.0024539903096195063],[123,40,78,0.004117071419086278],[123,40,79,0.005806715733576891],[123,41,64,-0.006128313674295163],[123,41,65,-0.0064179168766153585],[123,41,66,-0.006506878248043572],[123,41,67,-0.006398694082983503],[123,41,68,-0.0061006504696882805],[123,41,69,-0.005619097381838715],[123,41,70,-0.00496148074154961],[123,41,71,-0.004136784278748353],[123,41,72,-0.003155820086385984],[123,41,73,-0.0020314278064368575],[123,41,74,-7.785827436270848E-4],[123,41,75,5.855865712288646E-4],[123,41,76,0.002041870632469041],[123,41,77,0.0035691400885554778],[123,41,78,0.0051445946257457],[123,41,79,0.006744098314082224],[123,42,64,-0.004308066525881606],[123,42,65,-0.00461559140764772],[123,42,66,-0.004728408247940879],[123,42,67,-0.004648654680813382],[123,42,68,-0.004383703798137644],[123,42,69,-0.0039410002792685216],[123,42,70,-0.0033287737813229904],[123,42,71,-0.002556472083459312],[123,42,72,-0.0016350747687157257],[123,42,73,-5.773170217416279E-4],[123,42,74,6.021762430879901E-4],[123,42,75,0.0018868454855760317],[123,42,76,0.0032582402254995838],[123,42,77,0.004696150460091226],[123,42,78,0.0061788247772648405],[123,42,79,0.00768327395921273],[123,43,64,-0.0024717147985225505],[123,43,65,-0.0027936616022044745],[123,43,66,-0.002927655713109245],[123,43,67,-0.0028742469658005155],[123,43,68,-0.00264089468099488],[123,43,69,-0.0022362830828534627],[123,43,70,-0.0016695054148833227],[123,43,71,-9.504937868578732E-4],[123,43,72,-9.036574553971504E-5],[123,43,73,8.983181500153E-4],[123,43,74,0.0020013856311243373],[123,43,75,0.0032029725594898994],[123,43,76,0.0044855307509072285],[123,43,77,0.005829923027974332],[123,43,78,0.007215604559930512],[123,43,79,0.008620889376357448],[123,44,64,-6.292684297453753E-4],[123,44,65,-9.624961332311705E-4],[123,44,66,-0.001115136195395145],[123,44,67,-0.0010859250325427935],[123,44,68,-8.824231961471672E-4],[123,44,69,-5.147218264263417E-4],[123,44,70,7.11509269213531E-6],[123,44,71,6.726200478163803E-4],[123,44,72,0.001470533971273609],[123,44,73,0.0023885068300623443],[123,44,74,0.003412886821671137],[123,44,75,0.004528597944976863],[123,44,76,0.005719105499258269],[123,44,77,0.006966468860707762],[123,44,78,0.008251480695550126],[123,44,79,0.009553891593898188],[123,45,64,0.0012187412983099277],[123,45,65,8.766636919472835E-4],[123,45,66,7.073916256946877E-4],[123,45,67,7.142017026751937E-4],[123,45,68,8.893946520281416E-4],[123,45,69,0.0012212872981434884],[123,45,70,0.0016987148658467062],[123,45,71,0.0023105965808969805],[123,45,72,0.0030454990381592493],[123,45,73,0.003891288181880185],[123,45,74,0.0048348700139359034],[123,45,75,0.005862019918045053],[123,45,76,0.00695730026931922],[123,45,77,0.008104065790958372],[123,45,78,0.009284555925230703],[123,45,79,0.010480073306017884],[123,46,64,0.0030851333501227826],[123,46,65,0.0027355212530142115],[123,46,66,0.0025506632496471193],[123,46,67,0.0025360010353305154],[123,46,68,0.002683629308308363],[123,46,69,0.002980073081555768],[123,46,70,0.0034129175822712795],[123,46,71,0.003970368465377076],[123,46,72,0.004640760956490668],[123,46,73,0.005412157817116206],[123,46,74,0.006272036381608563],[123,46,75,0.007207064683785941],[123,46,76,0.008202966468164302],[123,46,77,0.009244474668456218],[123,46,78,0.010315372736044116],[123,46,79,0.011398623015519147],[123,47,64,0.0049826171395096815],[123,47,65,0.004625598303517545],[123,47,66,0.004425143160514768],[123,47,67,0.0043889516591656816],[123,47,68,0.004508814763678369],[123,47,69,0.004769258137733963],[123,47,70,0.005156455120579711],[123,47,71,0.0056577809345535],[123,47,72,0.006261263544805606],[123,47,73,0.006955123591544028],[123,47,74,0.007727403787440657],[123,47,75,0.008565687937019987],[123,47,76,0.009456909507302873],[123,47,77,0.0103872494614829],[123,47,78,0.011342122861787469],[123,47,79,0.012306253555837988],[123,48,64,0.006869550720216039],[123,48,65,0.006505272761356209],[123,48,66,0.006289506350969623],[123,48,67,0.006232266066530275],[123,48,68,0.006324935834779023],[123,48,69,0.006549850867461108],[123,48,70,0.006891615346552785],[123,48,71,0.007336650741784502],[123,48,72,0.00787258583709985],[123,48,73,0.008487736083249327],[123,48,74,0.009170672818931634],[123,48,75,0.009909882662775742],[123,48,76,0.010693517146073432],[123,48,77,0.011509232433303094],[123,48,78,0.012344118765936492],[123,48,79,0.013184719066711518],[123,49,64,0.008695758193984007],[123,49,65,0.008324666750173949],[123,49,66,0.008094460374889268],[123,49,67,0.008017489852159628],[123,49,68,0.008084630503865303],[123,49,69,0.008275862659752903],[123,49,70,0.008574077508194944],[123,49,71,0.008964620148192248],[123,49,72,0.009434617641806874],[123,49,73,0.009972396650160345],[123,49,74,0.010566991349004113],[123,49,75,0.011207742075358452],[123,49,76,0.011883984919403413],[123,49,77,0.012584832247461153],[123,49,78,0.013299043924327498],[123,49,79,0.014014988798317425],[123,50,64,0.010419047664894373],[123,50,65,0.01004181456088401],[123,50,66,0.0097985114227791],[123,50,67,0.009703807933868948],[123,50,68,0.009747971948913553],[123,50,69,0.009908495378588341],[123,50,70,0.010166430917894886],[123,50,71,0.010505930802586536],[123,50,72,0.010913513044162508],[123,50,73,0.011377417509845302],[123,50,74,0.01188705269828622],[123,50,75,0.012432533812830611],[123,50,76,0.013004312491925324],[123,50,77,0.01359289832243002],[123,50,78,0.014188672037986464],[123,50,79,0.014437558983337087],[123,51,64,0.012005067307459958],[123,51,65,0.011622526966282498],[123,51,66,0.011367835880777496],[123,51,67,0.011257924799158062],[123,51,68,0.011282359403020624],[123,51,69,0.011416043789163517],[123,51,70,0.011638089032932543],[123,51,71,0.011931348829449785],[123,51,72,0.012281625245778577],[123,51,73,0.012676964583340342],[123,51,74,0.01310704435475253],[123,51,75,0.013562652125998824],[123,51,76,0.014035256727731983],[123,51,77,0.014516672100304266],[123,51,78,0.014372888372751495],[123,51,79,0.01386757501304567],[123,52,64,0.013427119769927007],[123,52,65,0.013040213456876615],[123,52,66,0.01277610987772941],[123,52,67,0.012653903013462479],[123,52,68,0.012662367635377024],[123,52,69,0.012773757062214567],[123,52,70,0.012965163174513995],[123,52,71,0.013218050221972704],[123,52,72,0.013517402479300873],[123,52,73,0.013850962281032565],[123,52,74,0.01420855958934886],[123,52,75,0.014581533991489004],[123,52,76,0.014583453519442225],[123,52,77,0.014176483075829123],[123,52,78,0.013773453381797416],[123,52,79,0.013380971877660302],[123,53,64,0.014665933467446735],[123,53,65,0.014275660914921958],[123,53,66,0.014004295315064325],[123,53,67,0.013872958470373497],[123,53,68,0.013869553524587012],[123,53,69,0.013963657823437801],[123,53,70,0.014130294355138554],[123,53,71,0.014349465019651885],[123,53,72,0.014605243494426552],[123,53,73,0.014839848800528136],[123,53,74,0.01452841788699111],[123,53,75,0.014209239908627264],[123,53,76,0.013889256237861811],[123,53,77,0.013574493563976962],[123,53,78,0.013270412850338047],[123,53,79,0.012982163643676792],[123,54,64,0.014172770302444446],[123,54,65,0.01457081889884476],[123,54,66,0.0148500124006036],[123,54,67,0.01490321087749754],[123,54,68,0.01489221820628285],[123,54,69,0.014909144535469609],[123,54,70,0.014753727072575601],[123,54,71,0.01455138054654594],[123,54,72,0.014319071559651312],[123,54,73,0.014070041110808876],[123,54,74,0.0138145792059326],[123,54,75,0.013560705939511931],[123,54,76,0.013314758137706975],[123,54,77,0.013081880907274697],[123,54,78,0.012866423680341611],[123,54,79,0.012672240580488514],[123,55,64,0.013433025545324453],[123,55,65,0.013833803398729937],[123,55,66,0.014117131937850554],[123,55,67,0.014258403776152851],[123,55,68,0.014271695976124961],[123,55,69,0.014192747063452978],[123,55,70,0.014050746203707193],[123,55,71,0.013868797432359688],[123,55,72,0.013664923520950318],[123,55,73,0.013452978646370921],[123,55,74,0.01324346829921355],[123,55,75,0.013044275135968597],[123,55,76,0.012861289744300317],[123,55,77,0.012698945548921975],[123,55,78,0.012560657335934268],[123,55,79,0.012449163113936762],[123,56,64,0.012892396867364939],[123,56,65,0.013294978399456883],[123,56,66,0.013580268291027682],[123,56,67,0.013722216584077579],[123,56,68,0.013735944539143246],[123,56,69,0.013659716174441658],[123,56,70,0.013524760645923454],[123,56,71,0.013355733617847235],[123,56,72,0.01317176188234205],[123,56,73,0.012987396508968772],[123,56,74,0.012813472841545145],[123,56,75,0.012657875931552312],[123,56,76,0.012526210265415843],[123,56,77,0.01242237290510356],[123,56,78,0.01234902941599505],[123,56,79,0.012307992200898664],[123,57,64,0.012543588310541353],[123,57,65,0.012947118551479609],[123,57,66,0.013232312934458063],[123,57,67,0.013371912965321166],[123,57,68,0.013382111939345675],[123,57,69,0.013303578627705724],[123,57,70,0.013169513774515248],[123,57,71,0.013006107753944516],[123,57,72,0.012833620378773385],[123,57,73,0.012667368968357571],[123,57,74,0.012518622885246328],[123,57,75,0.01239540302461089],[123,57,76,0.012303185011757837],[123,57,77,0.012245505128556478],[123,57,78,0.012224468247791737],[123,57,79,0.012241157303291296],[123,58,64,0.01237371656207448],[123,58,65,0.012777430790365885],[123,58,66,0.013060644658629012],[123,58,67,0.013195132725824793],[123,58,68,0.013198170839474666],[123,58,69,0.01311268109716967],[123,58,70,0.012973740338007167],[123,58,71,0.01280903340105476],[123,58,72,0.012639962367282815],[123,58,73,0.01248266379486011],[123,58,74,0.012348932060217768],[123,58,75,0.012247047194712313],[123,58,76,0.012182505880556497],[123,58,77,0.012158654538179194],[123,58,78,0.012177223698504061],[123,58,79,0.012238763105811526],[123,59,64,0.012364826975170976],[123,59,65,0.012768066558937597],[123,59,66,0.013047634724554419],[123,59,67,0.01317458083107424],[123,59,68,0.013167255755486013],[123,59,69,0.013070656866498196],[123,59,70,0.012921617069816494],[123,59,71,0.012749253158816216],[123,59,72,0.01257609869706545],[123,59,73,0.012419144634985932],[123,59,74,0.012290785687641822],[123,59,75,0.012199670780199703],[123,59,76,0.01215145614373954],[123,59,77,0.012149459915047976],[123,59,78,0.012195217357969437],[123,59,79,0.012288936078818005],[123,60,64,0.012494461716796301],[123,60,65,0.012896686907478751],[123,60,66,0.01317120504878911],[123,60,67,0.013288575113972937],[123,60,68,0.01326819743442431],[123,60,69,0.013156944859811934],[123,60,70,0.012993265119635422],[123,60,71,0.01280762393773002],[123,60,72,0.012623655880451614],[123,60,73,0.012459222689177745],[123,60,74,0.012327377050018377],[123,60,75,0.012237230034934212],[123,60,76,0.012194720726468352],[123,60,77,0.01220328681123434],[123,60,78,0.012264435193337881],[123,60,79,0.012378211936014613],[123,61,64,0.012736281054277064],[123,61,65,0.013137081528599789],[123,61,66,0.013405440507949156],[123,61,67,0.01351164802169256],[123,61,68,0.013476111072070937],[123,61,69,0.013347362171652293],[123,61,70,0.013165305484502813],[123,61,71,0.01296165456240962],[123,61,72,0.0127610957569284],[123,61,73,0.012582358878191794],[123,61,74,0.012439192990169757],[123,61,75,0.012341245514756863],[123,61,76,0.01229484309652716],[123,61,77,0.012303672954460396],[123,61,78,0.01236936371456253],[123,61,79,0.012491964976035701],[123,62,64,0.013060738695288938],[123,62,65,0.013459842685728442],[123,62,66,0.013721256354428965],[123,62,67,0.013815203421816635],[123,62,68,0.01376303941772523],[123,62,69,0.013614731167183848],[123,62,70,0.013411468529150672],[123,62,71,0.013186096808320188],[123,62,72,0.012964287757080604],[123,62,73,0.012765617602075674],[123,62,74,0.012604549931997246],[123,62,75,0.012491321566944583],[123,62,76,0.012432729810217005],[123,62,77,0.01243281975896344],[123,62,78,0.012493470618845183],[123,62,79,0.012614880227715265],[123,63,64,0.01343581198992571],[123,63,65,0.013833094887629972],[123,63,66,0.014087121628665532],[123,63,67,0.014168229382633775],[123,63,68,0.014098651709389723],[123,63,69,0.013929562121325715],[123,63,70,0.013703258585062364],[123,63,71,0.01345359087615583],[123,63,72,0.013207134778234628],[123,63,73,0.012984273103356531],[123,63,74,0.012800181326196565],[123,63,75,0.012665715909084871],[123,63,76,0.012588203676148414],[123,63,77,0.01257213087106934],[123,63,78,0.012619730802393748],[123,63,79,0.012731469240829863],[123,64,64,0.013827787689462129],[123,64,65,0.014223281046229221],[123,64,66,0.014469839338155153],[123,64,67,0.014538067727971208],[123,64,68,0.01445099926934805],[123,64,69,0.014260792253856082],[123,64,70,0.01401067450805674],[123,64,71,0.013735366200725109],[123,64,72,0.013462253578901176],[123,64,73,0.013212469344119671],[123,64,74,0.013001877425042259],[123,64,75,0.012841960187529079],[123,64,76,0.012740606404810883],[123,64,77,0.012702798587042197],[123,64,78,0.012731198539260571],[123,64,79,0.01282663027755267],[123,65,64,0.01420210383449039],[123,65,65,0.014596005731673186],[123,65,66,0.014835384049822369],[123,65,67,0.014891241043813798],[123,65,68,0.01478732846795873],[123,65,69,0.014576581896824752],[123,65,70,0.014302986955383769],[123,65,71,0.014001998374628634],[123,65,72,0.013701710485058267],[123,65,73,0.013423934195348399],[123,65,74,0.01318517818191811],[123,65,75,0.012997532300075297],[123,65,76,0.012869451509173992],[123,65,77,0.012806438880920135],[123,65,78,0.012811626529738785],[123,65,79,0.012886253564856546],[123,66,64,0.014524248215800692],[123,66,65,0.014916936007498466],[123,66,66,0.015149797410723316],[123,66,67,0.015194337682559884],[123,66,68,0.015074951632851337],[123,66,69,0.01484516840122879],[123,66,70,0.014549573015650798],[123,66,71,0.014224222841460975],[123,66,72,0.013897813078215426],[123,66,73,0.013592748616507394],[123,66,74,0.013326119953776472],[123,66,75,0.013110581153028942],[123,66,76,0.01295512811007517],[123,66,77,0.012865775671476008],[123,66,78,0.01284613241499277],[123,66,79,0.012897872164834064],[123,67,64,0.014760713715115175],[123,67,65,0.015152760190367346],[123,67,66,0.015380141972835942],[123,67,67,0.015414955171506435],[123,67,68,0.015282176341967825],[123,67,69,0.015035778252200064],[123,67,70,0.014720808688718482],[123,67,71,0.01437380587905609],[123,67,72,0.014023958403333916],[123,67,73,0.013694171374144571],[123,67,74,0.0134020365583923],[123,67,75,0.01316070439951157],[123,67,76,0.012979656179972928],[123,67,77,0.0128653748403388],[123,67,78,0.012821913240454076],[123,67,79,0.012851358908515645],[123,68,64,0.01488001069010027],[123,68,65,0.01527220473362699],[123,68,66,0.015495513551351682],[123,68,67,0.015522702285518006],[123,68,68,0.015379293392508462],[123,68,69,0.015119597716366843],[123,68,70,0.014789019568434586],[123,68,71,0.014424473250819022],[123,68,72,0.01405553809442214],[123,68,73,0.01370551971060938],[123,68,74,0.013392415103464216],[123,68,75,0.013129779574138896],[123,68,76,0.012927493630070378],[123,68,77,0.012792428387935373],[123,68,78,0.0127290082282646],[123,68,79,0.012739669719482571],[123,69,64,0.014853742212862366],[123,69,65,0.015247115158089044],[123,69,66,0.015468118145540222],[123,69,67,0.015490265916623667],[123,69,68,0.015339629668217818],[123,69,69,0.015070808296588155],[123,69,70,0.01472949600096922],[123,69,71,0.014352902726677412],[123,69,72,0.013970906470029713],[123,69,73,0.013607111782388066],[123,69,74,0.01327981208917677],[123,69,75,0.013002853724100868],[123,69,76,0.012786399859883892],[123,69,77,0.012637592792792498],[123,69,78,0.012561113307111444],[123,69,79,0.01255963610542869],[123,70,64,0.014672587835503454],[123,70,65,0.015068652644358967],[123,70,66,0.015289659543403463],[123,70,67,0.015309975749015138],[123,70,68,0.015156243751703519],[123,70,69,0.014883313026710776],[123,70,70,0.014537107513916939],[123,70,71,0.014155053420104927],[123,70,72,0.01376723151826085],[123,70,73,0.013397435673381641],[123,70,74,0.013064135173950622],[123,70,75,0.012781338732503636],[123,70,76,0.012559358299733887],[123,70,77,0.012405471112515862],[123,70,78,0.012324478665155049],[123,70,79,0.012319161552936558],[123,71,64,0.01437441735614907],[123,71,65,0.014775750199083086],[123,71,66,0.015000123669447248],[123,71,67,0.015022901777944585],[123,71,68,0.014871250085227654],[123,71,69,0.014600093619883344],[123,71,70,0.014255415609403868],[123,71,71,0.013874696038887264],[123,71,72,0.013488064512906031],[123,71,73,0.013119359411602497],[123,71,74,0.012787090882873586],[123,71,75,0.01250530549659676],[123,71,76,0.012284350667770564],[123,71,77,0.01213153723134055],[123,71,78,0.012051698820439336],[123,71,79,0.012047646959630658],[123,72,64,0.01399982963236243],[123,72,65,0.01440996193763793],[123,72,66,0.014641991450823719],[123,72,67,0.014672456457342496],[123,72,68,0.014528925621806011],[123,72,69,0.014266091439668038],[123,72,70,0.013929720275762975],[123,72,71,0.013557104876822587],[123,72,72,0.013178216166074981],[123,72,73,0.01281676143761506],[123,72,74,0.012491146459589753],[123,72,75,0.012215339278975345],[123,72,76,0.011999633801360937],[123,72,77,0.011851311494831797],[123,72,78,0.011775199835855104],[123,72,79,0.011774126374848825],[123,73,64,0.013583696011241543],[123,73,65,0.014006863014093882],[123,73,66,0.014251500148138476],[123,73,67,0.014295518283017299],[123,73,68,0.014166716226998029],[123,73,69,0.013919149916574012],[123,73,70,0.013598017340902917],[123,73,71,0.013240127962663623],[123,73,72,0.012875050136259709],[123,73,73,0.01252616506618562],[123,73,74,0.012211624790187137],[123,73,75,0.011945211954951126],[123,73,76,0.011737099432117601],[123,73,77,0.011594508097562144],[123,73,78,0.011522261365234201],[123,73,79,0.011523235326198903],[123,74,64,0.013157024361901888],[123,74,65,0.013597920442821017],[123,74,66,0.013860515086794747],[123,74,67,0.013924299084746116],[123,74,68,0.013817091870738237],[123,74,69,0.013591846130175873],[123,74,70,0.013292792065598335],[123,74,71,0.01295592636663779],[123,74,72,0.012610150697312302],[123,74,73,0.012278316895093554],[123,74,74,0.011978176353322432],[123,74,75,0.01172323134067062],[123,74,76,0.011523486290451595],[123,74,77,0.011386097366813503],[123,74,78,0.011315918882285756],[123,74,79,0.011315945399647141],[123,75,64,0.01274881668670887],[123,75,65,0.013212358221338876],[123,75,66,0.013498396434906837],[123,75,67,0.013588207095608321],[123,75,68,0.01350939835131653],[123,75,69,0.013313319781651985],[123,75,70,0.013042811148558923],[123,75,71,0.01273271314448192],[123,75,72,0.012410991500104374],[123,75,73,0.012099768002146221],[123,75,74,0.01181625589321694],[123,75,75,0.011573597406471058],[123,75,76,0.011381601465532715],[123,75,77,0.011247379852991677],[123,75,78,0.011175880416812067],[123,75,79,0.011170316141089898],[123,76,64,0.012387917924322577],[123,76,65,0.01287901436570423],[123,76,66,0.013193858647085303],[123,76,67,0.013315703434960406],[123,76,68,0.013271703217489864],[123,76,69,0.013111097270414783],[123,76,70,0.012874910927017329],[123,76,71,0.012596489798117944],[123,76,72,0.012302603428407895],[123,76,73,0.012014456081953688],[123,76,74,0.01174860214425305],[123,76,75,0.011517763907171505],[123,76,76,0.011331549778952229],[123,76,77,0.01119707123242112],[123,76,78,0.011119457068593089],[123,76,79,0.01110226382798445],[123,77,64,0.012104853405273891],[123,77,65,0.01262818731065797],[123,77,66,0.0129768200279971],[123,77,67,0.013136149470160091],[123,77,68,0.013132633378189268],[123,77,69,0.013012908407789694],[123,77,70,0.012815779373020763],[123,77,71,0.012572777947336654],[123,77,72,0.01230923936643054],[123,77,73,0.012045286492588755],[123,77,74,0.011796718759270566],[123,77,75,0.011575803791331957],[123,77,76,0.01139196976982647],[123,77,77,0.011252396878798112],[123,77,78,0.01116250643302034],[123,77,79,0.011126346538103158],[123,78,64,0.011933652279636536],[123,78,65,0.012493468978762115],[123,78,66,0.012880239715143205],[123,78,67,0.013081642361624235],[123,78,68,0.013123201723318054],[123,78,69,0.013048493130236746],[123,78,70,0.012893729311905428],[123,78,71,0.012688343731415992],[123,78,72,0.012456033519981475],[123,78,73,0.012215710008657009],[123,78,74,0.011982354423893275],[123,78,75,0.01176777658759466],[123,78,76,0.011581274733014799],[123,78,77,0.0114301948132989],[123,78,78,0.011320387937864199],[123,78,79,0.011256564820982631],[123,79,64,0.011893787130295512],[123,79,65,0.012493771779164418],[123,79,66,0.012922447362541943],[123,79,67,0.013169884088297753],[123,79,68,0.013260459315253362],[123,79,69,0.01323427605013009],[123,79,70,0.01312462154440955],[123,79,71,0.0129585756106846],[123,79,72,0.012758013934105913],[123,79,73,0.012540519181999004],[123,79,74,0.012320197540780288],[123,79,75,0.012108398580302942],[123,79,76,0.011914336613212955],[123,79,77,0.011745611978956752],[123,79,78,0.011608630936846038],[123,79,79,0.011508923097949849],[123,80,64,0.01193582061781789],[123,80,65,0.01257918926813413],[123,80,66,0.013053804551328433],[123,80,67,0.013352287292738511],[123,80,68,0.013497712511681829],[123,80,69,0.013526355524406933],[123,80,70,0.013468256471483083],[123,80,71,0.013347858526020712],[123,80,72,0.013184971164087433],[123,80,73,0.012995641268959031],[123,80,74,0.012792929763596497],[123,80,75,0.01258759173409351],[123,80,76,0.012388658271413507],[123,80,77,0.01220391851769916],[123,80,78,0.012040300654878393],[123,80,79,0.011904150815118007],[123,81,64,0.012007567759219129],[123,81,65,0.012696905663092665],[123,81,66,0.013221577484529371],[123,81,67,0.013576953947886076],[123,81,68,0.013784716615596044],[123,81,69,0.013877023316415894],[123,81,70,0.013880366121717645],[123,81,71,0.013816248801049787],[123,81,72,0.013702115109231952],[123,81,73,0.013552184649212254],[123,81,74,0.013378194061074504],[123,81,75,0.013190041554297764],[123,81,76,0.012996333063099065],[123,81,77,0.01280482856159664],[123,81,78,0.01262278732469763],[123,81,79,0.012457211159956254],[123,82,64,0.012072599455129436],[123,82,65,0.012809666918998357],[123,82,66,0.013388163404382031],[123,82,67,0.013806425763105425],[123,82,68,0.014084708717555206],[123,82,69,0.014250836819195362],[123,82,70,0.014327490652666785],[123,82,71,0.014332936005961371],[123,82,72,0.014281926505179485],[123,82,73,0.014186513173149349],[123,82,74,0.014056758699284376],[123,82,75,0.013901354474651203],[123,82,76,0.013728138708663943],[123,82,77,0.013544514200268547],[123,82,78,0.01335776458500192],[123,82,79,0.013175268117821593],[123,83,64,0.012107702256443639],[123,83,65,0.012893293614826835],[123,83,66,0.013528686544260538],[123,83,67,0.014015396913725525],[123,83,68,0.014372270883173277],[123,83,69,0.014622663639967838],[123,83,70,0.014785231837420568],[123,83,71,0.014874728881621963],[123,83,72,0.01490289442915229],[123,83,73,0.014879249688807737],[123,83,74,0.014811796325113499],[123,83,75,0.0147076170297634],[123,83,76,0.014573376091235454],[123,83,77,0.014415718550828403],[123,83,78,0.01424156678329374],[123,83,79,0.014058313580010107],[123,84,64,0.01210051950288868],[123,84,65,0.012934371956358822],[123,84,66,0.013628767715325018],[123,84,67,0.014188594525527948],[123,84,68,0.014631353838855932],[123,84,69,0.01497587819974307],[123,84,70,0.01523664902740954],[123,84,71,0.015424673329868417],[123,84,72,0.015548374784639128],[123,84,73,0.015614388985323961],[123,84,74,0.0156282606300182],[123,84,75,0.015595040699802411],[123,84,76,0.015519781943554212],[123,84,77,0.015407931247140015],[123,84,78,0.015265617718720838],[123,84,79,0.015099835565326718],[123,85,64,0.012047379864080021],[123,85,65,0.012928128844515871],[123,85,66,0.013682473330860364],[123,85,67,0.014318832495676065],[123,85,68,0.014853466435954088],[123,85,69,0.015300715247335303],[123,85,70,0.01567080203329616],[123,85,71,0.015970806383091878],[123,85,72,0.016205573085905967],[123,85,73,0.016378522825686196],[123,85,74,0.016492362574853665],[123,85,75,0.016537472032288364],[123,85,76,0.01655351593518653],[123,85,77,0.016507626107582593],[123,85,78,0.016416909838005776],[123,85,79,0.016287525841150674],[123,86,64,0.011951319638349285],[123,86,65,0.012876497344553766],[123,86,66,0.01369045011249298],[123,86,67,0.014405244720981019],[123,86,68,0.015036036705538944],[123,86,69,0.01559278575866294],[123,86,70,0.016081445975710304],[123,86,71,0.016505050714685502],[123,86,72,0.01620756170580046],[123,86,73,0.015947004073941007],[123,86,74,0.015748590697140543],[123,86,75,0.015612614377978666],[123,86,76,0.01553860725853729],[123,86,77,0.015524922665114727],[123,86,78,0.01556842678417034],[123,86,79,0.01566430117349102],[123,87,64,0.011820304667374161],[123,87,65,0.012786378401575932],[123,87,66,0.013658251245075331],[123,87,67,0.014451703345156263],[123,87,68,0.015180949880671032],[123,87,69,0.01585176028615295],[123,87,70,0.01646588278569014],[123,87,71,0.016087452054790542],[123,87,72,0.015630706431330813],[123,87,73,0.015235941611873931],[123,87,74,0.01490716263247096],[123,87,75,0.014647848896133289],[123,87,76,0.014460390642166452],[123,87,77,0.014345637746438744],[123,87,78,0.014302562205482438],[123,87,79,0.014328035387597344],[123,88,64,0.011665657261396602],[123,88,65,0.01266810419134152],[123,88,66,0.013594859302017837],[123,88,67,0.014465427208514526],[123,88,68,0.015293268357035258],[123,88,69,0.016080224444298245],[123,88,70,0.016316066406729213],[123,88,71,0.015663717930153954],[123,88,72,0.015064105845731304],[123,88,73,0.014524979032659986],[123,88,74,0.01405405320503579],[123,88,75,0.013658282118892676],[123,88,76,0.013343243768523553],[123,88,77,0.01311264333812978],[123,88,78,0.012967934381279567],[123,88,79,0.012908059417205369],[123,89,64,0.011500693098476778],[123,89,65,0.012534108070133446],[123,89,66,0.013511410848182246],[123,89,67,0.014455785284430018],[123,89,68,0.015380138184257333],[123,89,69,0.016282710864141278],[123,89,70,0.01605307347396157],[123,89,71,0.015260156270251062],[123,89,72,0.014512742929936187],[123,89,73,0.013822565293453805],[123,89,74,0.013201211017023198],[123,89,75,0.012659327205143263],[123,89,76,0.012205943911019243],[123,89,77,0.011847919434296922],[123,89,78,0.011589509036167947],[123,89,79,0.011432058392559735],[123,90,64,0.01133957265977134],[123,90,65,0.012397805691505587],[123,90,66,0.013420127241148478],[123,90,67,0.01443329951490177],[123,90,68,0.015449886327262326],[123,90,69,0.016464911619945365],[123,90,70,0.01581069717425024],[123,90,71,0.014877438847542824],[123,90,72,0.01398084121991653],[123,90,73,0.013136634158233346],[123,90,74,0.01236036225236056],[123,90,75,0.011666509329278478],[123,90,76,0.011067748242620528],[123,90,77,0.010574318058332083],[123,90,78,0.010193530430209994],[123,90,79,0.009929406641936062],[123,91,64,0.011196371389452472],[123,91,65,0.012272691489269908],[123,91,66,0.01333345579198787],[123,91,67,0.01440885111102595],[123,91,68,0.01551131260807983],[123,91,69,0.01663307482406586],[123,91,70,0.015585689335966045],[123,91,71,0.014515632742454324],[123,91,72,0.013472061635052164],[123,91,73,0.012474643303818637],[123,91,74,0.011542885843297424],[123,91,75,0.010695173780200908],[123,91,76,0.009947934841244841],[123,91,77,0.009314940198186357],[123,91,78,0.00880674018104117],[123,91,79,0.008430237113938817],[123,92,64,0.011084372420860474],[123,92,65,0.012171654383387001],[123,92,66,0.013263425111923643],[123,92,67,0.014393094061473202],[123,92,68,0.015573179931971068],[123,92,69,0.016567572881574365],[123,92,70,0.01537450614017803],[123,92,71,0.01417438403287897],[123,92,72,0.01298955243355232],[123,92,73,0.011843482165830466],[123,92,74,0.010759573565162679],[123,92,75,0.00976009547236248],[123,92,76,0.008865261606645462],[123,92,77,0.008092446893054037],[123,92,78,0.007455545952752737],[123,92,79,0.006964475607591518],[123,93,64,0.011015585388252149],[123,93,65,0.01210651624694662],[123,93,66,0.013221218159924109],[123,93,67,0.014396079291709126],[123,93,68,0.015643906116258974],[123,93,69,0.016471654073173306],[123,93,70,0.015173436371173875],[123,93,71,0.013852937201699356],[123,93,72,0.012535849963004945],[123,93,73,0.011249246543049391],[123,93,74,0.010020273458670136],[123,93,75,0.008874988672755638],[123,93,76,0.007837342313380225],[123,93,77,0.006928304124976537],[123,93,78,0.006165140094075307],[123,93,79,0.00556084031368334],[123,94,64,0.011000494544625117],[123,94,65,0.012087796376736145],[123,94,66,0.013216966216951367],[123,94,67,0.014427092637334868],[123,94,68,0.01573146037448958],[123,94,69,0.01636958629587514],[123,94,70,0.014978548773851744],[123,94,71,0.013549987822385609],[123,94,72,0.01211262805454335],[123,94,73,0.010696878131949224],[123,94,74,0.009333415104017298],[123,94,75,0.008051915843375463],[123,94,76,0.00687993909051557],[123,94,77,0.005841961205644987],[123,94,78,0.0049585683166483326],[123,94,79,0.004245807151848543],[123,95,64,0.01104803912925068],[123,95,65,0.01212470493569377],[123,95,66,0.013259766744004477],[123,95,67,0.014494709535328899],[123,95,68,0.015843467261371046],[123,95,69,0.016255165416868122],[123,95,70,0.014785456042254742],[123,95,71,0.013263366274485319],[123,95,72,0.0117202940774706],[123,95,73,0.010189667306360697],[123,95,74,0.008705415387736027],[123,95,75,0.007300594588115366],[123,95,76,0.006006170680589827],[123,95,77,0.004849962383185483],[123,95,78,0.003855748511997027],[123,95,79,0.0030425413701922793],[123,96,64,0.011165828672533058],[123,96,65,0.012225368081640202],[123,96,66,0.01335792783208699],[123,96,67,0.014607069096017744],[123,96,68,0.015987520654257223],[123,96,69,0.01612177473015158],[123,96,70,0.014588893161796618],[123,96,71,0.012989550419527804],[123,96,72,0.011357429828219695],[123,96,73,0.009728617590893466],[123,96,74,0.008139963512308359],[123,96,75,0.006627601776703241],[123,96,76,0.005225635888274325],[123,96,77,0.003964991426050836],[123,96,78,0.0028724398132224703],[123,96,79,0.001969795857770733],[123,97,64,0.011360595689539848],[123,97,65,0.012397287261998147],[123,97,66,0.013519441721738872],[123,97,67,0.014772369995272957],[123,97,68,0.016171710133798582],[123,97,69,0.015961820513897638],[123,97,70,0.014382108012122875],[123,97,71,0.012723005334228226],[123,97,72,0.01102007557385164],[123,97,73,0.00931167040140382],[123,97,74,0.007637184100337905],[123,97,75,0.006035473996395623],[123,97,76,0.00454345168327342],[123,97,77,0.0031948489713411895],[123,97,78,0.002019162014248151],[123,97,79,0.0010407766046745214],[123,98,64,0.0116388879960523],[123,98,65,0.01264803493779065],[123,98,66,0.013752689656871476],[123,98,67,0.014999590419829102],[123,98,68,0.016405361928927234],[123,98,69,0.015765964555556237],[123,98,70,0.014156062308808903],[123,98,71,0.012455348352555726],[123,98,72,0.010700855706474511],[123,98,73,0.008932788741911307],[123,98,74,0.00719267733993321],[123,98,75,0.0055217035549812304],[123,98,76,0.003959205472440384],[123,98,77,0.0025413624529669276],[123,98,78,0.0013000654656802413],[123,98,79,2.619757296695556E-4],[123,99,64,0.012008002681386363],[123,99,65,0.012986188801190044],[123,99,66,0.0140673801414874],[123,99,67,0.015299434107932516],[123,99,68,0.01669999640880718],[123,99,69,0.015522151755298128],[123,99,70,0.01389844112086053],[123,99,71,0.01217433781179306],[123,99,72,0.010387944591489676],[123,99,73,0.008580898655336212],[123,99,74,0.006796435206214086],[123,99,75,0.00507762932640315],[123,99,76,0.0034658211029545655],[123,99,77,0.001999228451049331],[123,99,78,7.117515718286197E-4],[123,99,79,-3.6802751887938937E-4],[123,100,64,0.012477163589762887],[123,100,65,0.013422506368507602],[123,100,66,0.014475722487710452],[123,100,67,0.015685504352045684],[123,100,68,0.01669582623154748],[123,100,69,0.015214431077064132],[123,100,70,0.013592469347798572],[123,100,71,0.011862684030643483],[123,100,72,0.01006387130984455],[123,100,73,0.008238687325579676],[123,100,74,0.0064316328757402595],[123,100,75,0.004687221793149543],[123,100,76,0.003048338201777116],[123,100,77,0.0015547873278089557],[123,100,78,2.4204401809474322E-4],[123,100,79,-8.597973969306692E-4],[123,101,64,0.01305640375530321],[123,101,65,0.013968616723723312],[123,101,66,0.014990930085164448],[123,101,67,0.01617261891258927],[123,101,68,0.016285292146235354],[123,101,69,0.014825003713319813],[123,101,70,0.013219122105384151],[123,101,71,0.011500401076096766],[123,101,72,0.009707986574903483],[123,101,73,0.007885154187991388],[123,101,74,0.006077229150871739],[123,101,75,0.0043296948951293684],[123,101,76,0.002686495550564918],[123,101,77,0.0011885372834242829],[123,101,78,-1.2760718486012492E-4],[123,101,79,-0.00123078706234801],[123,102,64,0.013727930058650554],[123,102,65,0.014606294488057612],[123,102,66,0.015594430449376537],[123,102,67,0.016741964074502232],[123,102,68,0.0158004127363552],[123,102,69,0.014372999197107252],[123,102,70,0.012797633206036121],[123,102,71,0.011106802635220157],[123,102,72,0.009339640808532331],[123,102,73,0.007539613721447578],[123,102,74,0.005752393577846342],[123,102,75,0.004023924792824016],[123,102,76,0.0023986880598965386],[123,102,77,9.181675310403821E-4],[123,102,78,-3.8047438773411386E-4],[123,102,79,-0.0014655106603692152],[123,103,64,0.014454334682936599],[123,103,65,0.015296519757573084],[123,103,66,0.01624576566889704],[123,103,67,0.01649544641433362],[123,103,68,0.015284004388415656],[123,103,69,0.013902137978901535],[123,103,70,0.012372434396440502],[123,103,71,0.010726805789737557],[123,103,72,0.009003968261758954],[123,103,73,0.007247102726246819],[123,103,74,0.00550170443397854],[123,103,75,0.003813627445765297],[123,103,76,0.002227329773971225],[123,103,77,7.843243597183806E-4],[123,103,78,-4.781594974855646E-4],[123,103,79,-0.0015283001834104496],[123,104,64,0.01520021844662435],[123,104,65,0.01600262935785983],[123,104,66,0.016907245647592047],[123,104,67,0.015931327291792863],[123,104,68,0.014775102461901538],[123,104,69,0.013451768020102882],[123,104,70,0.011982953972901401],[123,104,71,0.010399672687682006],[123,104,72,0.00873979831015141],[123,104,73,0.007045728535164034],[123,104,74,0.0053622356172860495],[123,104,75,0.0037345129561618625],[123,104,76,0.0022064230376408357],[123,104,77,8.189519580804851E-4],[123,104,78,-3.911247901314507E-4],[123,104,79,-0.001392361135189444],[123,105,64,0.01593448873895803],[123,105,65,0.016692582786598548],[123,105,66,0.016317886610527767],[123,105,67,0.015397249260679445],[123,105,68,0.014306857289077235],[123,105,69,0.013054835368008819],[123,105,70,0.01166167100380107],[123,105,71,0.010157156449931395],[123,105,72,0.008577899882684677],[123,105,73,0.006965017473821729],[123,105,74,0.005362013219204921],[123,105,75,0.003812852838463268],[123,105,76,0.0023602375141194096],[123,105,77,0.0010440826925030991],[123,105,78,-9.979337318293173E-5],[123,105,79,-0.0010407671913115358],[123,106,64,0.0166325913794736],[123,106,65,0.01648578499870628],[123,106,66,0.015771735033469594],[123,106,67,0.014918887391596901],[123,106,68,0.013904643180164563],[123,106,69,0.012736109121609957],[123,106,70,0.011432465875680111],[123,106,71,0.010021984892015914],[123,106,72,0.008539603727814114],[123,106,73,0.007024678685422925],[123,106,74,0.005518921511918495],[123,106,75,0.004064526372855008],[123,106,76,0.002702492779812427],[123,106,77,0.001471149619380713],[123,106,78,4.048849033244653E-4],[123,106,79,-4.669146604114995E-4],[123,107,64,0.01650464107936421],[123,107,65,0.015937039374373616],[123,107,66,0.015288993106722212],[123,107,67,0.01451219241119028],[123,107,68,0.01358385696494439],[123,107,69,0.012510109457689085],[123,107,70,0.011308690521288727],[123,107,71,0.01000608363141604],[123,107,72,0.008635186724543545],[123,107,73,0.007233155392679035],[123,107,74,0.005839424189879862],[123,107,75,0.00449391207531018],[123,107,76,0.0032354175057640994],[123,107,77,0.0021002081793603917],[123,107,78,0.0011208099249161861],[123,107,79,3.2499873193443023E-4],[123,108,64,0.015953528053653073],[123,108,65,0.015448652731216159],[123,108,66,0.014873572654693723],[123,108,67,0.014180751220060172],[123,108,68,0.013347404139369532],[123,108,69,0.012378736772627784],[123,108,70,0.011290956398237451],[123,108,71,0.010108536692393368],[123,108,72,0.008862016427126777],[123,108,73,0.007585961897464776],[123,108,74,0.006317099314414523],[123,108,75,0.005092622918071445],[123,108,76,0.003948684080369439],[123,108,77,0.00291906618289494],[123,108,78,0.002034049575013941],[123,108,79,0.0013194704447612787],[123,109,64,0.015444819482065884],[123,109,65,0.015009190221611656],[123,109,66,0.01451406472115579],[123,109,67,0.013912822763380373],[123,109,68,0.013182870829961972],[123,109,69,0.012328600140554721],[123,109,70,0.01136463843080986],[123,109,71,0.010313282860473194],[123,109,72,0.009202454165558085],[123,109,73,0.00806380474292329],[123,109,74,0.006930986522408674],[123,109,75,0.005838084031832678],[123,109,76,0.004818217608193973],[123,109,77,0.003902321257224473],[123,109,78,0.0031180992160565373],[123,109,79,0.0024891648334432713],[123,110,64,0.01494784985491366],[123,110,65,0.01458840515785563],[123,110,66,0.01418032646341563],[123,110,67,0.013678047622243379],[123,110,68,0.013059379915818087],[123,110,69,0.01232804341745539],[123,110,70,0.011497093256218786],[123,110,71,0.010586546164723225],[123,110,72,0.009621515144755935],[123,110,73,0.008630486575557336],[123,110,74,0.007643745162304003],[123,110,75,0.006691951709922922],[123,110,76,0.0058048782931576694],[123,110,77,0.005010304980473623],[123,110,78,0.004333081859747011],[123,110,79,0.0037943597107449284],[123,111,64,0.014410906725054644],[123,111,65,0.01413479185885052],[123,111,66,0.013820972628336377],[123,111,67,0.013425092488394866],[123,111,68,0.012925610542527381],[123,111,69,0.012325759725223972],[123,111,70,0.011637078030570442],[123,111,71,0.01087725051605217],[123,111,72,0.010068446500338573],[123,111,73,0.009235786343513233],[123,111,74,0.00840594268221148],[123,111,75,0.00760588062108992],[123,111,76,0.006861741009602958],[123,111,77,0.006197870561639175],[123,111,78,0.005636002207735143],[123,111,79,0.005194588708083333],[123,112,64,0.01378093743448742],[123,112,65,0.013594162596896624],[123,112,66,0.013381238626823375],[123,112,67,0.01309925008777528],[123,112,68,0.012727596179242595],[123,112,69,0.012269238109995466],[123,112,70,0.011734267036956172],[123,112,71,0.01113798314865246],[123,112,72,0.010499457499331618],[123,112,73,0.009840209475306791],[123,112,74,0.009183004175338336],[123,112,75,0.008550773660493559],[123,112,76,0.00796566570164115],[123,112,77,0.007448223326709067],[123,112,78,0.007016698147349323],[123,112,79,0.006686500128166962],[123,113,64,0.01302690380070162],[123,113,65,0.012933769958034833],[123,113,66,0.012827155777755221],[123,113,67,0.012665878485466457],[123,113,68,0.012430602919780287],[123,113,69,0.0121242532797117],[123,113,70,0.01175555281528258],[123,113,71,0.011337360926646372],[123,113,72,0.010885481273182968],[123,113,73,0.010417570742143995],[123,113,74,0.009952152905680245],[123,113,75,0.00950773931606636],[123,113,76,0.009102061709603244],[123,113,77,0.008751417911946592],[123,113,78,0.008470133963470902],[123,113,79,0.008270144714879642],[123,114,64,0.012138850214888483],[123,114,65,0.012141748561394761],[123,114,66,0.01214520080302137],[123,114,67,0.012110076514157115],[123,114,68,0.01201864219332328],[123,114,69,0.01187402799760452],[123,114,70,0.011683678544327997],[123,114,71,0.011457966865849403],[123,114,72,0.011209268516189207],[123,114,73,0.010951121212333857],[123,114,74,0.01069747293044996],[123,114,75,0.010462021147522045],[123,114,76,0.010257645689615494],[123,114,77,0.010095937420731083],[123,114,78,0.009986824782742643],[123,114,79,0.009938299979021887],[123,115,64,0.011124249832130837],[123,115,65,0.01122353669841444],[123,115,66,0.011338832590197074],[123,115,67,0.011433379761278268],[123,115,68,0.011491372623046028],[123,115,69,0.01151638792942071],[123,115,70,0.011514691511076538],[123,115,71,0.01149414467793563],[123,115,72,0.011463560933395692],[123,115,73,0.011432132614847663],[123,115,74,0.01140892962606735],[123,115,75,0.011402472247753384],[123,115,76,0.011420379834483685],[123,115,77,0.011469097031040276],[123,115,78,0.01155369896978524],[123,115,79,0.011677776745058972],[123,116,64,0.010004559543163974],[123,116,65,0.01019850236284877],[123,116,66,0.010425226391158426],[123,116,67,0.010650644342100793],[123,116,68,0.010861177388539518],[123,116,69,0.011061077263186739],[123,116,70,0.011255540410478854],[123,116,71,0.011449918275709854],[123,116,72,0.011649369173555309],[123,116,73,0.01185856445402904],[123,116,74,0.012081450342490996],[123,116,75,0.012321066701759404],[123,116,76,0.012579423838137866],[123,116,77,0.012857438350334243],[123,116,78,0.013154928901893565],[123,116,79,0.013470672685062565],[123,117,64,0.008811987330540607],[123,117,65,0.009096777296683352],[123,117,66,0.009432209056819496],[123,117,67,0.00978712197969611],[123,117,68,0.010150420474492385],[123,117,69,0.010527238283754601],[123,117,70,0.010921819395191082],[123,117,71,0.01133703883501277],[123,117,72,0.011774357460203506],[123,117,73,0.012233815652134283],[123,117,74,0.012714066478319507],[123,117,75,0.013212448810781399],[123,117,76,0.013725100814599248],[123,117,77,0.01424711414958624],[123,117,78,0.014772729162424919],[123,117,79,0.015295571286849904],[123,118,64,0.007586475339676473],[123,118,65,0.007956302408414172],[123,118,66,0.008395398646477172],[123,118,67,0.008875729661526607],[123,118,68,0.009388884951267473],[123,118,69,0.009941057865605873],[123,118,70,0.010535661597718658],[123,118,71,0.011173161836616582],[123,118,72,0.011851336989645394],[123,118,73,0.012565562382529658],[123,118,74,0.013309118187635255],[123,118,75,0.014073520801693617],[123,118,76,0.014848877369446747],[123,118,77,0.015624263130084935],[123,118,78,0.016388121249432362],[123,118,79,0.01712868479312302],[123,119,64,0.006372901740127425],[123,119,65,0.006820087668166461],[123,119,66,0.007355551504467231],[123,119,67,0.007954516906260707],[123,119,68,0.00861139621001817],[123,119,69,0.009333583641139603],[123,119,70,0.01012378466132023],[123,119,71,0.010980156348774913],[123,119,72,0.011896870028194366],[123,119,73,0.012864683648595467],[123,119,74,0.013871522852424326],[123,119,75,0.014903069696620561],[123,119,76,0.015943358009612885],[123,119,77,0.016975374397686833],[123,119,78,0.017412141783535156],[123,119,79,0.01651604955501413],[123,120,64,0.00521850421391802],[123,120,65,0.005733689348184864],[123,120,66,0.0063561196663652515],[123,120,67,0.0070643334526253624],[123,120,68,0.007855632865281455],[123,120,69,0.008738712407442008],[123,120,70,0.009715690640579243],[123,120,71,0.010782548657506637],[123,120,72,0.011929986512057036],[123,120,73,0.013144276061468596],[123,120,74,0.014408108381450756],[123,120,75,0.015701433975193007],[123,120,76,0.017002294066071254],[123,120,77,0.017083166046831494],[123,120,78,0.01590698726401499],[123,120,79,0.014790443060269139],[123,121,64,0.004170527685239502],[123,121,65,0.004742907256773947],[123,121,66,0.005441021241265602],[123,121,67,0.006246699974195179],[123,121,68,0.007160127841072707],[123,121,69,0.008191353151876659],[123,121,70,0.009342022467310881],[123,121,71,0.010606102206852227],[123,121,72,0.011971014831514058],[123,121,73,0.013418759173445358],[123,121,74,0.014927012327504527],[123,121,75,0.01647021062169076],[123,121,76,0.017322133991728078],[123,121,77,0.015866932067785503],[123,121,78,0.014460407923026223],[123,121,79,0.013130831948742617],[123,122,64,0.003274098698885003],[123,122,65,0.0038917044083388802],[123,122,66,0.004652626215292898],[123,122,67,0.005541884229545983],[123,122,68,0.006562461971991075],[123,122,69,0.00772576690537557],[123,122,70,0.009033079022114034],[123,122,71,0.010476535674960813],[123,122,72,0.012040528366268982],[123,122,73,0.013703072632985697],[123,122,74,0.015437147749858889],[123,122,75,0.017212003111489058],[123,122,76,0.01639190933505817],[123,122,77,0.014710922754242102],[123,122,78,0.013089225634689347],[123,122,79,0.011560246021020402],[123,123,64,0.0025703286629906305],[123,123,65,0.003220351381380849],[123,123,66,0.004029959934068322],[123,123,67,0.00498718487581764],[123,123,68,0.006097652278396068],[123,123,69,0.007374085471757178],[123,123,70,0.008817490706137356],[123,123,71,0.010418380883721809],[123,123,72,0.012158409230843754],[123,123,73,0.014011966341670484],[123,123,74,0.015947736687474436],[123,123,75,0.017421281421504856],[123,123,76,0.01550806620222608],[123,123,77,0.013623838932060555],[123,123,78,0.011808162090321615],[123,123,79,0.010099257497744308],[123,124,64,0.0020946479946612573],[123,124,65,0.0027637974398066582],[123,124,66,0.0036071263480471354],[123,124,67,0.0046154250051289],[123,124,68,0.005796736914045573],[123,124,69,0.007165010931477613],[123,124,70,0.008721057271262685],[123,124,71,0.010453982119531321],[123,124,72,0.012343030587507655],[123,124,73,0.014359384713017048],[123,124,74,0.01646791205086223],[123,124,75,0.01676378947519646],[123,124,76,0.014671901524541932],[123,124,77,0.012612373086467482],[123,124,78,0.010629291112308856],[123,124,79,0.008765200423932605],[123,125,64,0.0018753730446145396],[123,125,65,0.002550270330464945],[123,125,66,0.0034119529442231265],[123,125,67,0.004453657307243659],[123,125,68,0.0056855586354910845],[123,125,69,0.007122697678757643],[123,125,70,0.008765749539762545],[123,125,71,0.01060263833055345],[123,125,72,0.01261055878933663],[123,125,73,0.01475794605768609],[123,125,74,0.017006388686528665],[123,125,75,0.01612067318267518],[123,125,76,0.013883297735861328],[123,125,77,0.011680912393000533],[123,125,78,0.009561529380086668],[123,125,79,0.007571454124408243],[123,126,64,0.0019325075288645444],[123,126,65,0.00260010652121923],[123,126,66,0.0034648591404710417],[123,126,67,0.004522082618225142],[123,126,68,0.005783748504842125],[123,126,69,0.007265818621869691],[123,126,70,0.008968876526430386],[123,126,71,0.01087988956138673],[123,126,72,0.012974376527520553],[123,126,73,0.015218518049243672],[123,126,74,0.017571204317522494],[123,126,75,0.015487008046683619],[123,126,76,0.013140623646840856],[123,126,77,0.01083125378089942],[123,126,78,0.008610166095449364],[123,126,79,0.006526791576519049],[123,127,64,0.0022767800615293614],[123,127,65,0.0029248135089624525],[123,127,66,0.0037779497846285055],[123,127,67,0.004833183483402496],[123,127,68,0.006103911411122449],[123,127,69,0.007606817057413244],[123,127,70,0.009342419367119879],[123,127,71,0.011296948889298402],[123,127,72,0.013444628074900879],[123,127,73,0.015749890159224025],[123,127,74,0.017258949049452705],[123,127,75,0.014857492095373912],[123,127,76,0.012440619829260612],[123,127,77,0.010062331207378402],[123,127,78,0.007776432075357673],[123,127,79,0.00563479350487809],[123,128,64,0.0029089192629870946],[123,128,65,0.003526365705681255],[123,128,66,0.004354335279230314],[123,128,67,0.0053910742437513455],[123,128,68,0.006651014880294167],[123,128,69,0.008151345620614254],[123,128,70,0.009892533357538438],[123,128,71,0.011860281037130604],[123,128,72,0.014027887641930744],[123,128,73,0.016358543889783583],[123,128,74,0.01665866390511906],[123,128,75,0.014226442464696423],[123,128,76,0.011778268396124817],[123,128,77,0.009369955305048585],[123,128,78,0.007057108722992382],[123,128,79,0.004893328944111995],[123,129,64,0.003819167811760033],[123,129,65,0.004396735302937699],[123,129,66,0.005187679744553793],[123,129,67,0.0061910690477157086],[123,129,68,0.007421982540090361],[123,129,69,0.008897893615027892],[123,129,70,0.010619219314997073],[123,129,71,0.012571328756594117],[123,129,72,0.014726951791786643],[123,129,73,0.017048521576728475],[123,129,74,0.01601297210863175],[123,129,75,0.013587748031392],[123,129,76,0.011146647067039746],[123,129,77,0.008746565549030043],[123,129,78,0.006444177292011591],[123,129,79,0.00429410295959597],[123,130,64,0.0049870367166568765],[123,130,65,0.005517659420940461],[123,130,66,0.006261978537313207],[123,130,67,0.007219469095581661],[123,130,68,0.008405493513085917],[123,130,69,0.009837603936523824],[123,130,70,0.01151616539364728],[123,130,71,0.013426388001972822],[123,130,72,0.015540756798251412],[123,130,73,0.017630058348556906],[123,130,74,0.01531773716970353],[123,130,75,0.012934777764943619],[123,130,76,0.01053676741129872],[123,130,77,0.00818099507499593],[123,130,78,0.005924508824816976],[123,130,79,0.003822272162891197],[123,131,64,0.006381301007875763],[123,131,65,0.006860644767765721],[123,131,66,0.007551566360001169],[123,131,67,0.008453570340807605],[123,131,68,0.009581988930012187],[123,131,69,0.010954280728155928],[123,131,70,0.01257076041060588],[123,131,71,0.014416632848335477],[123,131,72,0.01646442177330147],[123,131,73,0.016810446231895062],[123,131,74,0.014569725448314953],[123,131,75,0.012260244484802688],[123,131,76,0.009937397163166706],[123,131,77,0.007658248264523326],[123,131,78,0.0054795951131334005],[123,131,79,0.0034561286081118926],[123,132,64,0.007960126843817509],[123,132,65,0.008387091622887248],[123,132,66,0.009021229737472092],[123,132,67,0.009861757402131988],[123,132,68,0.010923743267233273],[123,132,69,0.012224437493917766],[123,132,70,0.013764120680054144],[123,132,71,0.015528124884617168],[123,132,72,0.017489245740960117],[123,132,73,0.015911558725000934],[123,132,74,0.013766615792436498],[123,132,75,0.01155620864653092],[123,132,76,0.009335052419374023],[123,132,77,0.007159476233178089],[123,132,78,0.00508550315397261],[123,132,79,0.0031670298190390905],[123,133,64,0.009654487528248854],[123,133,65,0.010030288104765778],[123,133,66,0.010606795244075859],[123,133,67,0.011382680584538465],[123,133,68,0.01237261735936834],[123,133,69,0.013593628850110102],[123,133,70,0.015046031237790785],[123,133,71,0.016715431358109555],[123,133,72,0.016887734295624703],[123,133,73,0.014967729015550307],[123,133,74,0.012936513808195655],[123,133,75,0.010844211461322008],[123,133,76,0.008744470999421852],[123,133,77,0.006692480740715432],[123,133,78,0.004743076705306805],[123,133,79,0.0029489508899965323],[123,134,64,0.011361327381238235],[123,134,65,0.011686863666454468],[123,134,66,0.012204887908027942],[123,134,67,0.012913308415434293],[123,134,68,0.013826362219073211],[123,134,69,0.014960948224784956],[123,134,70,0.016317587295722587],[123,134,71,0.017517570808891738],[123,134,72,0.015866730563245612],[123,134,73,0.014067279159456403],[123,134,74,0.012162576107085685],[123,134,75,0.01020143853493867],[123,134,76,0.008236100845151584],[123,134,77,0.006320264834832143],[123,134,78,0.004507245050959018],[123,134,79,0.0028482138408776098],[123,135,64,0.012989216058312039],[123,135,65,0.013264949854831879],[123,135,66,0.013723533390770846],[123,135,67,0.014361942769018308],[123,135,68,0.015194014065152129],[123,135,69,0.016236714796508147],[123,135,70,0.017491013770792107],[123,135,71,0.01648833697627133],[123,135,72,0.01495885262863414],[123,135,73,0.01328808568076023],[123,135,74,0.01151790980254354],[123,135,75,0.009695514014696118],[123,135,76,0.007871408071898588],[123,135,77,0.006097517596030643],[123,135,78,0.004425373643713504],[123,135,79,0.0029044010957014195],[123,136,64,0.014464139578607692],[123,136,65,0.014690275955852577],[123,136,66,0.015088538373208836],[123,136,67,0.015654864824358076],[123,136,68,0.0164027880646655],[123,136,69,0.017349595558789434],[123,136,70,0.01686725608598076],[123,136,71,0.015631046114307757],[123,136,72,0.014227626327361957],[123,136,73,0.012689858690867757],[123,136,74,0.011057820975763372],[123,136,75,0.009376782534194347],[123,136,76,0.007695263337746391],[123,136,77,0.006063181132675695],[123,136,78,0.00453009128906948],[123,136,79,0.003143523632936213],[123,137,64,0.01572988842233601],[123,137,65,0.015906474155157533],[123,137,66,0.016243697366899332],[123,137,67,0.016736422697028967],[123,137,68,0.017398026162465986],[123,137,69,0.01704616965195145],[123,137,70,0.016110875876480024],[123,137,71,0.014994510958134328],[123,137,72,0.013718922254452912],[123,137,73,0.012315051345967023],[123,137,74,0.010820897535147563],[123,137,75,0.009279557051085617],[123,137,76,0.007737342925098215],[123,137,77,0.006241990246527241],[123,137,78,0.004840951240945295],[123,137,79,0.0035797843361153564],[123,138,64,0.016748834953996157],[123,138,65,0.016875770274552948],[123,138,66,0.017151377991913352],[123,138,67,0.01754009855524144],[123,138,68,0.017073704839714775],[123,138,69,0.01643041851492391],[123,138,70,0.015606166742045052],[123,138,71,0.014609886102463443],[123,138,72,0.013461431788599055],[123,138,73,0.01218954867034532],[123,138,74,0.010829909462316574],[123,138,75,0.009423224998998213],[123,138,76,0.008013431393871501],[123,138,77,0.006645958615568591],[123,138,78,0.005366084760279705],[123,138,79,0.004217380036240252],[123,139,64,0.017297267776554194],[123,139,65,0.017335176882648847],[123,139,66,0.017234384863000777],[123,139,67,0.01700200145729809],[123,139,68,0.016624408916702964],[123,139,69,0.016081678894116432],[123,139,70,0.015368109011895175],[123,139,71,0.014490645783575822],[123,139,72,0.013466885674600337],[123,139,73,0.012323133707600313],[123,139,74,0.011092524585217721],[123,139,75,0.009813211099927811],[123,139,76,0.008526624384340655],[123,139,77,0.0072758103278393925],[123,139,78,0.006103846247262058],[123,139,79,0.0050523416518220956],[123,140,64,0.016831253359883253],[123,140,65,0.016920370040169833],[123,140,66,0.016883095051119124],[123,140,67,0.016727299154466305],[123,140,68,0.016438924357242462],[123,140,69,0.0159966343878836],[123,140,70,0.015392846649597797],[123,140,71,0.01463227103273596],[123,140,72,0.01373001305177798],[123,140,73,0.012709729042359341],[123,140,74,0.011601838101109986],[123,140,75,0.010441795264574345],[123,140,76,0.009268430224950325],[123,140,77,0.008122355670582063],[123,140,78,0.007044449119056108],[123,140,79,0.006074411881452368],[123,141,64,0.01659975736833005],[123,141,65,0.01674144644345008],[123,141,66,0.016769096906091976],[123,141,67,0.016691127647654163],[123,141,68,0.016492837512192764],[123,141,69,0.016151284609964487],[123,141,70,0.015656798249201017],[123,141,71,0.015011644013015694],[123,141,72,0.014228238878082932],[123,141,73,0.013327411803341066],[123,141,74,0.012336714144336205],[123,141,75,0.011288784081586335],[123,141,76,0.010219769072540841],[123,141,77,0.00916781014698301],[123,141,78,0.008171591665939577],[123,141,79,0.007268959955264501],[123,142,64,0.01655045474881737],[123,142,65,0.016747121984510123],[123,142,66,0.016842243447921956],[123,142,67,0.01684454842220248],[123,142,68,0.016738514035491252],[123,142,69,0.016499452434383423],[123,142,70,0.016115445875649746],[123,142,71,0.015586147388579384],[123,142,72,0.014921117746932576],[123,142,73,0.014138200314305932],[123,142,74,0.013261937755736877],[123,142,75,0.012322034462417523],[123,142,76,0.011351868379348533],[123,142,77,0.010387055758154698],[123,142,78,0.009464072179829237],[123,142,79,0.00861893300567479],[123,143,64,0.016615210174011852],[123,143,65,0.016870331041334154],[123,143,66,0.017036731127059623],[123,143,67,0.017123200698008174],[123,143,68,0.017113248227019436],[123,143,69,0.01698035911630467],[123,143,70,0.016710256893596006],[123,143,71,0.01629984814282027],[123,143,72,0.015755691567520824],[123,143,73,0.01509249642513779],[123,143,74,0.014331653927154808],[123,143,75,0.013499805077243129],[123,143,76,0.012627448286089162],[123,143,77,0.011747589957948187],[123,143,78,0.010894441090691431],[123,143,79,0.010102162768846526],[123,144,64,0.016757489282945664],[123,144,65,0.01707413506875339],[123,144,66,0.01731521062221387],[123,144,67,0.017489275877349306],[123,144,68,0.01757872825918451],[123,144,69,0.017555182957730692],[123,144,70,0.017401925885695703],[123,144,71,0.017113011136529938],[123,144,72,0.01669187276302958],[123,144,73,0.0161499564804871],[123,144,74,0.015505374455080963],[123,144,75,0.014781586240224171],[123,144,76,0.014006108815598023],[123,144,77,0.013209258565796637],[123,144,78,0.01242292790829081],[123,144,79,0.011679399144249357],[123,145,64,0.01695447801614293],[123,145,65,0.0173348188849039],[123,145,66,0.01754274376634267],[123,145,67,0.017391997315996558],[123,145,68,0.01731216000091325],[123,145,69,0.01733350808870498],[123,145,70,0.01747525305742281],[123,145,71,0.017746284306777722],[123,145,72,0.017696788469352753],[123,145,73,0.017276266629065958],[123,145,74,0.01674740384185399],[123,145,75,0.016130386860027386],[123,145,76,0.01544967366974951],[123,145,77,0.014732832114945525],[123,145,78,0.014009400670181825],[123,145,79,0.013309773602620848],[123,146,64,0.017186922676443974],[123,146,65,0.01747588807326787],[123,146,66,0.017195068765715846],[123,146,67,0.016953745016598656],[123,146,68,0.01677216382471455],[123,146,69,0.016682448924412775],[123,146,70,0.016706296855820674],[123,146,71,0.016855553777804136],[123,146,72,0.017133287671282985],[123,146,73,0.01753486239948835],[123,146,74,0.018024771673383445],[123,146,75,0.01751195767668242],[123,146,76,0.01692276874939899],[123,146,77,0.0162819917145474],[123,146,78,0.015616797376896634],[123,146,79,0.014955699442820318],[123,147,64,0.017438690693653957],[123,147,65,0.017186848284156075],[123,147,66,0.016827806605302247],[123,147,67,0.016496117857713762],[123,147,68,0.01621352949858276],[123,147,69,0.016013942669706974],[123,147,70,0.015921500289132248],[123,147,71,0.015950993703150847],[123,147,72,0.016108763430602923],[123,147,73,0.016393614001954673],[123,147,74,0.016797741246335603],[123,147,75,0.01730767039280604],[123,147,76,0.01790520337340092],[123,147,77,0.017823412666755398],[123,147,78,0.017211202880625623],[123,147,79,0.016582928342089773],[123,148,64,0.01734895542587459],[123,148,65,0.016892873299758852],[123,148,66,0.01645657830629107],[123,148,67,0.016036050388633816],[123,148,68,0.015654636862715073],[123,148,69,0.015347907582869994],[123,148,70,0.015142370036849796],[123,148,71,0.015055703581893396],[123,148,72,0.015097481771839456],[123,148,73,0.01526992178172224],[123,148,74,0.015568659846466248],[123,148,75,0.015983551612447206],[123,148,76,0.016499496290371354],[123,148,77,0.017097283495704677],[123,148,78,0.017754461669245828],[123,148,79,0.01816062175339721],[123,149,64,0.017124263757674157],[123,149,65,0.016606039621749332],[123,149,66,0.016094608615004547],[123,149,67,0.01558805730044004],[123,149,68,0.015111410279441304],[123,149,69,0.014701761380911732],[123,149,70,0.014387859061170983],[123,149,71,0.014190168149391877],[123,149,72,0.014121408704694962],[123,149,73,0.014187135597060866],[123,149,74,0.014386358312271063],[123,149,75,0.014712200431546052],[123,149,76,0.015152598193869072],[123,149,77,0.015691037513950453],[123,149,78,0.01630732880213097],[123,149,79,0.016978418914887477],[123,150,64,0.016913934785559043],[123,150,65,0.016336335000725996],[123,150,66,0.015752986118289306],[123,150,67,0.015164456114938779],[123,150,68,0.014597499657249982],[123,150,69,0.014090557744503197],[123,150,70,0.013674457349035161],[123,150,71,0.01337230285816145],[123,150,72,0.013199828549924606],[123,150,73,0.013165805876821125],[123,150,74,0.013272505654416261],[123,150,75,0.01351621517016662],[123,150,76,0.013887810152363449],[123,150,77,0.014373381470899154],[123,150,78,0.014954916381523495],[123,150,79,0.015611034074301273],[123,151,64,0.016725236056902845],[123,151,65,0.01609191197167415],[123,151,66,0.015440886367105838],[123,151,67,0.014775555366553979],[123,151,68,0.014124430049467004],[123,151,69,0.013527094801935605],[123,151,70,0.013016258113086335],[123,151,71,0.012617478158579843],[123,151,72,0.012349328279767575],[123,151,73,0.012223631629374655],[123,151,74,0.012245765682738326],[123,151,75,0.012415037200071172],[123,151,76,0.01272512811715894],[123,151,77,0.013164612740589268],[123,151,78,0.013717546530271345],[123,151,79,0.014364126667818831],[123,152,64,0.016563909137649255],[123,152,65,0.015879302273393747],[123,152,66,0.015165757761991151],[123,152,67,0.014429808036182237],[123,152,68,0.013701719596140947],[123,152,69,0.013021995373251622],[123,152,70,0.012424999247186229],[123,152,71,0.01193852239028219],[123,152,72,0.01158376350289978],[123,152,73,0.01137539265401471],[123,152,74,0.01132170002560466],[123,152,75,0.01142483071436711],[123,152,76,0.011681106604108857],[123,152,77,0.012081436188251967],[123,152,78,0.012611813095787737],[123,152,79,0.013253903957118902],[123,153,64,0.016434366639689786],[123,153,65,0.015703591907598843],[123,153,66,0.014933469957326877],[123,153,67,0.014133929998967261],[123,153,68,0.013336965580143339],[123,153,69,0.012583758757443803],[123,153,70,0.011910079832953452],[123,153,71,0.011345703094910543],[123,153,72,0.010914205918331704],[123,153,73,0.010632865791549666],[123,153,74,0.010512657156101269],[123,153,75,0.010558349771854766],[123,153,76,0.010768710147879123],[123,153,77,0.011136807414035183],[123,153,78,0.011650424850339744],[123,153,79,0.012292578142519823],[123,154,64,0.01633984801105816],[123,154,65,0.015568556594371962],[123,154,66,0.014748424542342584],[123,154,67,0.01389298324881575],[123,154,68,0.013035898369064498],[123,154,69,0.012218783845701717],[123,154,70,0.011478551493216053],[123,154,71,0.0108466865594667],[123,154,72,0.01034887206033343],[123,154,73,0.010004725047542585],[123,154,74,0.009827647267517566],[123,154,75,0.009824792464363095],[123,154,76,0.009997152378870283],[123,154,77,0.010339763299647779],[123,154,78,0.010842034834111395],[123,154,79,0.011488202388058739],[123,155,64,0.01628253384393079],[123,155,65,0.01547675737921663],[123,155,66,0.014613627755500291],[123,155,67,0.013710423661231765],[123,155,68,0.012802403013155775],[123,155,69,0.011931363342096213],[123,155,70,0.01113508438621838],[123,155,71,0.010446475396851231],[123,155,72,0.009893033153066309],[123,155,73,0.009496425417461908],[123,155,74,0.009272202835661127],[123,155,75,0.009229642049798991],[123,155,76,0.009371722566939784],[123,155,77,0.009695239699064285],[123,155,78,0.010191055674194401],[123,155,79,0.010844490810584709],[123,156,64,0.0162636184511103],[123,156,65,0.015429596143138106],[123,156,66,0.014530724985386597],[123,156,67,0.013588113052739858],[123,156,68,0.012638508266383226],[123,156,69,0.01172364886986417],[123,156,70,0.010881907630970905],[123,156,71,0.010147323966312351],[123,156,72,0.009548905889193056],[123,156,73,0.009110070237973281],[123,156,74,0.0088482246998679],[123,156,75,0.008774494887419288],[123,156,76,0.008893599469472756],[123,156,77,0.009203876107721548],[123,156,78,0.009697460706181181],[123,156,79,0.010360622246739384],[123,157,64,0.016283340454813097],[123,157,65,0.015427330760948274],[123,157,66,0.01449999680543513],[123,157,67,0.01352629528974973],[123,157,68,0.012544342792571099],[123,157,69,0.011595586736557527],[123,157,70,0.010718723949231665],[123,157,71,0.009948631431436577],[123,157,72,0.009315523941291745],[123,157,73,0.008844261882687691],[123,157,74,0.00855381348814753],[123,157,75,0.008456875004934868],[123,157,76,0.008559652314100927],[123,157,77,0.008861807137254084],[123,157,78,0.009356570717811902],[123,157,79,0.010031027605013162],[123,158,64,0.016340971122192533],[123,158,65,0.015469049644343695],[123,158,66,0.014520316281723011],[123,158,67,0.013523536192197075],[123,158,68,0.012518058311636429],[123,158,69,0.01154482412475905],[123,158,70,0.010642598303277686],[123,158,71,0.009846812247011118],[123,158,72,0.00918859000843656],[123,158,73,0.00869393561391384],[123,158,74,0.008383086204747965],[123,158,75,0.008270035119505609],[123,158,76,0.008362228738499915],[123,158,77,0.008660440614790021],[123,158,78,0.009158826126195087],[123,158,79,0.009845160602551084],[123,159,64,0.016434760170144353],[123,159,65,0.015552605395284014],[123,159,66,0.014589067282766415],[123,159,67,0.013576626967710989],[123,159,68,0.012555719432082467],[123,159,69,0.011566585466877242],[123,159,70,0.010647820300896553],[123,159,71,0.009835143858607297],[123,159,72,0.009160308192866552],[123,159,73,0.008650176394381766],[123,159,74,0.008325977790581177],[123,159,75,0.008202743926528403],[123,159,76,0.008288929501252483],[123,159,77,0.008586222117213013],[123,159,78,0.009089544391527845],[123,159,79,0.009787251678091139],[123,160,64,0.016561838747549573],[123,160,65,0.015674507281786692],[123,160,66,0.014702023507668449],[123,160,67,0.013680450900394518],[123,160,68,0.012651159905215816],[123,160,69,0.011653518752704251],[123,160,70,0.010725740129895023],[123,160,71,0.009903591390072436],[123,160,72,0.009219196493239707],[123,160,73,0.008700018454510176],[123,160,74,0.008368027458423218],[123,160,75,0.008239059461360127],[123,160,76,0.008322369768751002],[123,160,77,0.00862038574158858],[123,160,78,0.009128662460987653],[123,160,79,0.009836044863341602],[123,161,64,0.016718079286229336],[123,161,65,0.015829772232473272],[123,161,66,0.014853187934166779],[123,161,67,0.013827813004581944],[123,161,68,0.012795805024002564],[123,161,69,0.011795511506976252],[123,161,70,0.010864577773908047],[123,161,71,0.010038609084300194],[123,161,72,0.009349879191595],[123,161,73,0.008826227401615885],[123,161,74,0.008490149595626346],[123,161,75,0.008358088329795552],[123,161,76,0.008439926773572038],[123,161,77,0.008738690903202007],[123,161,78,0.009250464026597233],[123,161,79,0.00996451738528968],[123,162,64,0.016897911892578384],[123,162,65,0.016011734028107686],[123,162,66,0.015034592371141055],[123,162,67,0.01400923233820291],[123,162,68,0.012978459875126124],[123,162,69,0.01197947616115755],[123,162,70,0.011049205249437984],[123,162,71,0.010222918251717316],[123,162,72,0.009532858900858452],[123,162,73,0.009007064647550285],[123,162,74,0.008668389017298047],[123,162,75,0.008533730593278303],[123,162,76,0.008613473629732589],[123,162,77,0.008911144942405698],[123,162,78,0.009423291370426216],[123,162,79,0.010139581761428132],[123,163,64,0.017094096930131204],[123,163,65,0.01621181034798189],[123,163,66,0.015236056780995884],[123,163,67,0.014212696652664376],[123,163,68,0.013185063136681148],[123,163,69,0.012189104529105217],[123,163,70,0.011260901590888772],[123,163,71,0.010435261468907045],[123,163,72,0.009744268028563477],[123,163,73,0.009216033920629784],[123,163,74,0.008873660342549862],[123,163,75,0.008734410084500243],[123,163,76,0.008809099079770524],[123,163,77,0.009101711310763734],[123,163,78,0.00960924155952325],[123,163,79,0.010321770138722463],[123,164,64,0.017296336328723096],[123,164,65,0.016418125931865726],[123,164,66,0.015443839727976347],[123,164,67,0.014422349983617291],[123,164,68,0.013397419421563882],[123,164,69,0.012403652363658974],[123,164,70,0.011476195675386228],[123,164,71,0.010649307272933181],[123,164,72,0.009954835712323947],[123,164,73,0.009420907062742264],[123,164,74,0.009070825236508033],[123,164,75,0.008922191570138236],[123,164,76,0.008986249071733692],[123,164,77,0.009267456372919002],[123,164,78,0.009763296052202374],[123,164,79,0.010464321634561234],[123,165,64,0.017485697502014882],[123,165,65,0.016610154083922468],[123,165,66,0.015635633021478912],[123,165,67,0.01461389366014263],[123,165,68,0.013589038806761475],[123,165,69,0.012594268984681013],[123,165,70,0.011663742853207709],[123,165,71,0.01083112352057194],[123,165,72,0.01012799066994552],[123,165,73,0.009582464918279942],[123,165,74,0.00921805077361328],[123,165,75,0.009052704171571415],[123,165,76,0.00909813018533949],[123,165,77,0.009359316118794607],[123,165,78,0.009834304813315325],[123,165,79,0.010514212628741592],[123,166,64,0.01764435306765313],[123,166,65,0.01676868758100683],[123,166,66,0.015790744435522166],[123,166,67,0.014764980235625556],[123,166,68,0.01373575006132991],[123,166,69,0.012734839866848665],[123,166,70,0.01179541178776701],[123,166,71,0.010950530443754294],[123,166,72,0.010231510962812345],[123,166,73,0.009666483568388687],[123,166,74,0.009279181268536444],[123,166,75,0.009087956795689989],[123,166,76,0.009105034553107924],[123,166,77,0.009336002933055159],[123,166,78,0.009779551985951552],[123,166,79,0.010427461042796602],[123,167,64,0.017759663705826295],[123,167,65,0.016879938637312585],[123,167,66,0.01589416616695092],[123,167,67,0.0148592395195959],[123,167,68,0.013819683255144639],[123,167,69,0.012805916224241765],[123,167,70,0.011850148720185177],[123,167,71,0.010984889829598634],[123,167,72,0.010241234903308409],[123,167,73,0.009647373300358633],[123,167,74,0.009227323097725556],[123,167,75,0.008999899063156964],[123,167,76,0.008977919791142536],[123,167,77,0.009167659505796061],[123,167,78,0.009568549643039931],[123,167,79,0.010173134941772586],[123,168,64,0.017822625702311787],[123,168,65,0.016933989151086667],[123,168,66,0.015935029638456593],[123,168,67,0.014884745298515602],[123,168,68,0.013827756083202384],[123,168,69,0.012793225346101807],[123,168,70,0.011812513392529951],[123,168,71,0.010917665760627793],[123,168,72,0.010139643931212581],[123,168,73,0.00950677941935407],[123,168,74,0.009043458073210843],[123,168,75,0.008769041007116453],[123,168,76,0.008697028194691163],[123,168,77,0.008834470347382519],[123,168,78,0.00918163430797715],[123,168,79,0.009731926801165861],[123,169,64,0.01782607590784472],[123,169,65,0.016922998356388334],[123,169,66,0.01590481936917708],[123,169,67,0.014832243974910127],[123,169,68,0.013749926230515753],[123,169,69,0.012685952823026774],[123,169,70,0.011670994756174086],[123,169,71,0.010736775261037626],[123,169,72,0.009914247803562906],[123,169,73,0.009232000021064607],[123,169,74,0.008714890525955643],[123,169,75,0.008382925114000291],[123,169,76,0.008250378510402973],[123,169,77,0.00832516738353981],[123,169,78,0.008608479956807996],[123,169,79,0.009094667157829377],[123,170,64,0.0177626783140645],[123,170,65,0.01683919200972151],[123,170,66,0.01579536967067562],[123,170,67,0.014693168410492239],[123,170,68,0.013577232548969767],[123,170,69,0.01247481884166583],[123,170,70,0.011416127967474456],[123,170,71,0.010432749618387421],[123,170,72,0.0095557921254352],[123,170,73,0.008814240065509718],[123,170,74,0.008233546880357366],[123,170,75,0.007834469136582032],[123,170,76,0.007632148649634677],[123,170,77,0.007635448289026173],[123,170,78,0.007846546880087058],[123,170,79,0.008260798223452267],[123,171,64,0.017622689978893935],[123,171,65,0.016672630898137957],[123,171,66,0.015596642020168703],[123,171,67,0.014457434901149365],[123,171,68,0.013299623061333981],[123,171,69,0.012149946663293157],[123,171,70,0.011038410900129563],[123,171,71,0.00999670473818455],[123,171,72,0.00905628672117825],[123,171,73,0.008246700406916888],[123,171,74,0.007594126542448919],[123,171,75,0.007120178680307478],[123,171,76,0.006840948531466593],[123,171,77,0.0067663069434034185],[123,171,78,0.006899465987906339],[123,171,79,0.0072368072469521615],[123,172,64,0.017391503844090477],[123,172,65,0.01640875626935677],[123,172,66,0.015294280781777529],[123,172,67,0.014111021036351295],[123,172,68,0.012903567638939902],[123,172,69,0.011698521240466267],[123,172,70,0.010526018250744779],[123,172,71,0.009418118745079432],[123,172,72,0.008406853211530205],[123,172,73,0.007522500310484102],[123,172,74,0.006792102810400927],[123,172,75,0.006238228460057584],[123,172,76,0.005877982149975183],[123,172,77,0.00572227530751983],[123,172,78,0.005775358065128325],[123,172,79,0.0060346193431826695],[123,173,64,0.017046965788621582],[123,173,65,0.016025709589233723],[123,173,66,0.014866944756200704],[123,173,67,0.013633322010869614],[123,173,68,0.012369453021483198],[123,173,69,0.011102235755505228],[123,173,70,0.009862311152188564],[123,173,71,0.008682414891811896],[123,173,72,0.007595390019535214],[123,173,73,0.006632431854908518],[123,173,74,0.0058215723948573375],[123,173,75,0.005186411014340293],[123,173,76,0.004745097860859925],[123,173,77,0.004509575930142189],[123,173,78,0.00448508740428855],[123,173,79,0.004669949434507682],[123,174,64,0.016556463054225378],[123,174,65,0.015491423828294158],[123,174,66,0.014283411840284215],[123,174,67,0.012994282763394385],[123,174,68,0.011668757660678646],[123,174,69,0.010334523685417978],[123,174,70,0.009023140038877614],[123,174,71,0.007768347676237906],[123,174,72,0.006604052877828025],[123,174,73,0.005562544480313114],[123,174,74,0.00467295200890835],[123,174,75,0.00395995154787621],[123,174,76,0.0034427257781098077],[123,174,77,0.00313418420104859],[123,174,78,0.0030404491612173066],[123,174,79,0.0031606128792865396],[123,175,64,0.01588763933660853],[123,175,65,0.014774242093755986],[123,175,66,0.013513019407882366],[123,175,67,0.012164561385932715],[123,175,68,0.010773823122119486],[123,175,69,0.009369808447800785],[123,175,70,0.007985431299011124],[123,175,71,0.006655777351568448],[123,175,72,0.005416063957954942],[123,175,73,0.004299835379145557],[123,175,74,0.0033374005772261986],[123,175,75,0.0025545204302846944],[123,175,76,0.001971350821867947],[123,175,77,0.0016016476468099106],[123,175,78,0.001452239367155893],[123,175,79,0.0015227723502054338],[123,176,64,0.015054444750067321],[123,176,65,0.013888673228646427],[123,176,66,0.012570844350585609],[123,176,67,0.011159792842297601],[123,176,68,0.009700808068270205],[123,176,69,0.00822471032477762],[123,176,70,0.006766176667879237],[123,176,71,0.005361949900094962],[123,176,72,0.004048781523323045],[123,176,73,0.0028616117124527236],[123,176,74,0.001831993587248352],[123,176,75,9.86768655109131E-4],[123,176,76,3.4699988736411043E-4],[123,176,77,-7.283151962191124E-5],[123,176,78,-2.6536005636347044E-4],[123,176,79,-2.3059524588534076E-4],[123,177,64,0.014086607231991332],[123,177,65,0.012865146940968788],[123,177,66,0.011488002458105832],[123,177,67,0.010011751886032566],[123,177,68,0.00848208523647447],[123,177,69,0.0069320903540904906],[123,177,70,0.005398569409227217],[123,177,71,0.003920192575877292],[123,177,72,0.0025354320074563665],[123,177,73,0.0012807344290537003],[123,177,74,1.8893961699908708E-4],[123,177,75,-7.120483687170964E-4],[123,177,76,-0.001400330743997936],[123,177,77,-0.001860818308887111],[123,177,78,-0.0020857648709255096],[123,177,79,-0.0020750245535716126],[123,178,64,0.013016835409183074],[123,178,65,0.011737271282102581],[123,178,66,0.010299035239966553],[123,178,67,0.008755961880661245],[123,178,68,0.007154181058910369],[123,178,69,0.0055294433787116],[123,178,70,0.003920984458016173],[123,178,71,0.002369622660016967],[123,178,72,9.15693285806134E-4],[123,178,73,-4.027773315119287E-4],[123,178,74,-0.0015516505899692817],[123,178,75,-0.0025020004029358313],[123,178,76,-0.00323117757832812],[123,178,77,-0.0037236077785065993],[123,178,78,-0.003971317456113264],[123,178,79,-0.003974182564555104],[123,179,64,0.011880181188888781],[123,179,65,0.010541147365752223],[123,179,66,0.009041160068859452],[123,179,67,0.007430861082180119],[123,179,68,0.00575683748623831],[123,179,69,0.004057834581641862],[123,179,70,0.0023757692217793143],[123,179,71,7.537730312953795E-4],[123,179,72,-7.65863022088625E-4],[123,179,73,-0.002143503324718995],[123,179,74,-0.0033437343974969547],[123,179,75,-0.0043366769781419505],[123,179,76,-0.005099037032781727],[123,179,77,-0.00561488973508833],[123,179,78,-0.005876190859683084],[123,179,79,-0.005883010438931429],[123,180,64,0.010713340455634601],[123,180,65,0.00931462354854785],[123,180,66,0.0077534631336325125],[123,180,67,0.006076916834656154],[123,180,68,0.004332028771931356],[123,180,69,0.002560800431606592],[123,180,70,8.080109694999541E-4],[123,180,71,-8.807905826420415E-4],[123,180,72,-0.0024613194936410764],[123,180,73,-0.0038923485158625947],[123,180,74,-0.005137252973019993],[123,180,75,-0.006165301053238026],[123,180,76,-0.006952683014867861],[123,180,77,-0.007483273421094055],[123,180,78,-0.0077491209257094995],[123,180,79,-0.007750660532641172],[123,181,64,0.009553891016117621],[123,181,65,0.008096488225252262],[123,181,66,0.006476034377175801],[123,181,67,0.00473568688522375],[123,181,68,0.0029229324647175956],[123,181,69,0.001083213342262348],[123,181,70,-7.357198172796554E-4],[123,181,71,-0.002485861208018546],[123,181,72,-0.00412095151146641],[123,181,73,-0.005598238917794355],[123,181,74,-0.006879992551720513],[123,181,75,-0.007934761713871339],[123,181,76,-0.008738374752336974],[123,181,77,-0.009274671784393831],[123,181,78,-0.00953596589131905],[123,181,79,-0.00952322780599339],[123,182,64,0.008439466867826024],[123,182,65,0.006925600325426532],[123,182,66,0.0052490435297000955],[123,182,67,0.0034488269617842767],[123,182,68,0.0015728537957599817],[123,182,69,-3.2989071052362133E-4],[123,182,70,-0.0022086508110903146],[123,182,71,-0.004012991666766628],[123,182,72,-0.00569475700915362],[123,182,73,-0.007209787287015974],[123,182,74,-0.008519391450012723],[123,182,75,-0.009591565919551875],[123,182,76,-0.01040195469605218],[123,182,77,-0.010934544952608635],[123,182,78,-0.011182092863345159],[123,182,79,-0.011146274806767912],[123,183,64,0.007406867799201772],[123,183,65,0.00583995653110255],[123,183,66,0.00411175628212887],[123,183,67,0.002257043693029729],[123,183,68,3.241025861352375E-4],[123,183,69,-0.0016345224264951968],[123,183,70,-0.003565114656508137],[123,183,71,-0.0054149056914369114],[123,183,72,-0.007133977868140269],[123,183,73,-0.008676929050850936],[123,183,74,-0.010004293040803643],[123,183,75,-0.011083709333923658],[123,183,76,-0.011890836336958642],[123,183,77,-0.012410002547345774],[123,183,78,-0.012634590594425303],[123,183,79,-0.012567149425574643],[123,184,64,0.006491103260412224],[123,184,65,0.0048756941668978105],[123,184,66,0.003101489577929543],[123,184,67,0.001198991886405358],[123,184,68,-7.831782607963854E-4],[123,184,69,-0.002788988144188281],[123,184,70,-0.004761882025330943],[123,184,71,-0.0066469197936669935],[123,184,72,-0.008392613519259535],[123,184,73,-0.009952528871219104],[123,184,74,-0.011286644928165003],[123,184,75,-0.01236246629007655],[123,184,76,-0.013155881787984375],[123,184,77,-0.013651764475805628],[123,184,78,-0.013844307973697083],[123,184,79,-0.013737094610890312],[123,185,64,0.005724369374552337],[123,185,65,0.004066028645479611],[123,185,66,0.0022525049350913587],[123,185,67,3.101151156931709E-4],[123,185,68,-0.0017122336780235137],[123,185,69,-0.003755178455779053],[123,185,70,-0.005759521745353558],[123,185,71,-0.007668376610640992],[123,185,72,-0.009428927338906046],[123,185,73,-0.010993958278556912],[123,185,74,-0.012323144578135175],[123,185,75,-0.013384098952617027],[123,185,76,-0.014153168982249156],[123,185,77,-0.014615979828742676],[123,185,78,-0.014767717630242044],[123,185,79,-0.014613149206459567],[123,186,64,0.005134957889760588],[123,186,65,0.0034401242827465203],[123,186,66,0.0015948386435111809],[123,186,67,-3.785714935747931E-4],[123,186,68,-0.0024309678200339765],[123,186,69,-0.004499897454563303],[123,186,70,-0.006523788887597281],[123,186,71,-0.008444090495011984],[123,186,72,-0.010206946462262542],[123,186,73,-0.011764644832423104],[123,186,74,-0.013076831675149699],[123,186,75,-0.014111485740327084],[123,186,76,-0.014845648330242827],[123,186,77,-0.015265903494366703],[123,186,78,-0.015368604017793101],[123,186,79,-0.01515983903460843],[123,187,64,0.004746095803810149],[123,187,65,0.0030218972290513555],[123,187,66,0.001153067617273147],[123,187,67,-8.417574551960515E-4],[123,187,68,-0.0029132670283005856],[123,187,69,-0.004996233648860245],[123,187,70,-0.007027041742840344],[123,187,71,-0.008945806151542867],[123,187,72,-0.010697955664333705],[123,187,73,-0.012235593283057145],[123,187,74,-0.013518627479885805],[123,187,75,-0.014515669067505822],[123,187,76,-0.015204688660603188],[123,187,77,-0.015573430067489718],[123,187,78,-0.015619575307055178],[123,187,79,-0.015350657295639286],[123,188,64,0.004574714324661289],[123,188,65,0.0028287491956732924],[123,188,66,9.450096166285939E-4],[123,188,67,-0.0010611733253624088],[123,188,68,-0.0031403755474905012],[123,188,69,-0.005224973626746262],[123,188,70,-0.00724968866145474],[123,188,71,-0.00915367115792287],[123,188,72,-0.01088198598336307],[123,188,73,-0.012386879220380296],[123,188,74,-0.013628821463929179],[123,188,75,-0.014577322448404553],[123,188,76,-0.01521151224174757],[123,188,77,-0.01552048459210261],[123,188,78,-0.015503398357410525],[123,188,79,-0.015169333286053945],[123,189,64,0.004630145763798402],[123,189,65,0.0028702305901273195],[123,189,66,9.803564914663738E-4],[123,189,67,-0.0010269886124580452],[123,189,68,-0.0031023252170943186],[123,189,69,-0.005176059603912128],[123,189,70,-0.007181665770410354],[123,189,71,-0.009057723237407835],[123,189,72,-0.010749298780198088],[123,189,73,-0.012209115703352607],[123,189,74,-0.013398505489410018],[123,189,75,-0.01428813698739997],[123,189,76,-0.014858518644848903],[123,189,77,-0.015100269623664682],[123,189,78,-0.01501415597295048],[123,189,79,-0.01461088835715245],[123,190,64,0.0049127468944822955],[123,190,65,0.003146631610323861],[123,190,66,0.001259239037236742],[123,190,67,-7.392725451757221E-4],[123,190,68,-0.002799420414738091],[123,190,69,-0.004850092031666349],[123,190,70,-0.006823946617474003],[123,190,71,-0.008659393176793753],[123,190,72,-0.010301865941065056],[123,190,73,-0.011704893363051054],[123,190,74,-0.012830955787532608],[123,190,75,-0.013652127247720738],[123,190,76,-0.01415049716262114],[123,190,77,-0.014318368034934564],[123,190,78,-0.014158225569032873],[123,190,79,-0.013682477941023174],[123,191,64,0.005412447244921716],[123,191,65,0.003647499786664765],[123,191,66,0.0017707219962580705],[123,191,67,-2.0951910436227574E-4],[123,191,68,-0.0022437795756998086],[123,191,69,-0.004259878483133248],[123,191,70,-0.006190084824607656],[123,191,71,-0.007973024304313727],[123,191,72,-0.00955484693964072],[123,191,73,-0.010890194467020687],[123,191,74,-0.01194296296853485],[123,191,75,-0.012686856453556473],[123,191,76,-0.013105727443113042],[123,191,77,-0.013193700916317568],[123,191,78,-0.012955078285190104],[123,191,79,-0.012404018363493663],[123,192,64,0.0061072207374371955],[123,192,65,0.004350082403509402],[123,192,66,0.0024912276827062626],[123,192,67,5.377622257717058E-4],[123,192,68,-0.0014609346575323542],[123,192,69,-0.003432030072493655],[123,192,70,-0.005307790859884995],[123,192,71,-0.007027409457948318],[123,192,72,-0.008538063476942661],[123,192,73,-0.00979578142014722],[123,192,74,-0.010766110266953446],[123,192,75,-0.011424580934245731],[123,192,76,-0.011756967933345462],[123,192,77,-0.011759339838724393],[123,192,78,-0.011437897478626597],[123,192,79,-0.010808597043812039],[123,193,64,0.006961479029664696],[123,193,65,0.005217692177769979],[123,193,66,0.003382886659045821],[123,193,67,0.00146338848547533],[123,193,68,-4.914899585889724E-4],[123,193,69,-0.002408606694128741],[123,193,70,-0.004220544059407881],[123,193,71,-0.005867346384949262],[123,193,72,-0.007297472414096863],[123,193,73,-0.008468560158315708],[123,193,74,-0.009348000190068716],[123,193,75,-0.009913313665037268],[123,193,76,-0.010152331654393361],[123,193,77,-0.010063172654224592],[123,193,78,-0.009654015420300541],[123,193,79,-0.008942664549399347],[123,194,64,0.007924384863411623],[123,194,65,0.006197994523390235],[123,194,66,0.004391813845896117],[123,194,67,0.002511776503673369],[123,194,68,6.071582659982416E-4],[123,194,69,-0.0012488123951420183],[123,194,70,-0.0029892410471579417],[123,194,71,-0.004555212517615253],[123,194,72,-0.0058966377030893425],[123,194,73,-0.006972918865176134],[123,194,74,-0.007753429693915869],[123,194,75,-0.008217806696645041],[123,194,76,-0.008356048747567766],[123,194,77,-0.008168421907656721],[123,194,78,-0.007665166893188326],[123,194,79,-0.006866006831640419],[123,195,64,0.00892875632887328],[123,195,65,0.007221925835736356],[123,195,66,0.0054470550338635276],[123,195,67,0.0036099268392579195],[123,195,68,0.0017598532114582884],[123,195,69,-2.9901884684716253E-5],[123,195,70,-0.0016930222645545484],[123,195,71,-0.0031716916220240615],[123,195,72,-0.00441733638130454],[123,195,73,-0.0053911926615848975],[123,195,74,-0.0060646938999307145],[123,195,75,-0.006419675945260618],[123,195,76,-0.006448396702579721],[123,195,77,-0.006153367669633545],[123,195,78,-0.005546994965166127],[123,195,79,-0.004651027696472752],[123,196,64,0.009924883290392364],[123,196,65,0.008239406267297402],[123,196,66,0.0064980538160769406],[123,196,67,0.004706598982798121],[123,196,68,0.0029144651846284768],[123,196,69,0.0011949710317982552],[123,196,70,-3.8613678915041E-4],[123,196,71,-0.0017721431931892126],[123,196,72,-0.002916004973556249],[123,196,73,-0.0037808203808297456],[123,196,74,-0.004340124803396595],[123,196,75,-0.004578009606091167],[123,196,76,-0.004489061439986577],[123,196,77,-0.004078119588712584],[123,196,78,-0.0033598491627432575],[123,196,79,-0.002358128190378812],[123,197,64,0.010905502923382637],[123,197,65,0.009245144966180192],[123,197,66,0.0075411796205458095],[123,197,67,0.005799529756740624],[123,197,68,0.004069743929824385],[123,197,69,0.0024250917399596087],[123,197,70,9.306571954123862E-4],[123,197,71,-3.5802709637403453E-4],[123,197,72,-0.001395518993316167],[123,197,73,-0.0021468401852056907],[123,197,74,-0.002587680906688197],[123,197,75,-0.002704433289631794],[123,197,76,-0.0024940508942521834],[123,197,77,-0.0019637322005473744],[123,197,78,-0.0011304260770924669],[123,197,79,-2.015747067156132E-5],[123,198,64,0.011865551936240495],[123,198,65,0.010235748660607771],[123,198,66,0.008574384018242884],[123,198,67,0.006887713391780366],[123,198,68,0.00522536832440001],[123,198,69,0.003660350929173922],[123,198,70,0.0022568956045397786],[123,198,71,0.0010692003652496024],[123,198,72,1.4098738893869678E-4],[123,198,73,-4.94775770168376E-4],[123,198,74,-8.159915847163772E-4],[123,198,75,-8.11382098378815E-4],[123,198,76,-4.802703709922123E-4],[123,198,77,1.6780818300604682E-4],[123,198,78,0.0011136663454971636],[123,198,79,0.0023291991019554377],[123,199,64,0.012799033389538857],[123,199,65,0.011206416055028607],[123,199,66,0.009593752657638675],[123,199,67,0.007967830506654285],[123,199,68,0.00637827710618932],[123,199,69,0.004897517888530749],[123,199,70,0.0035886784205611875],[123,199,71,0.0025044174195559777],[123,199,72,0.0016865849238663886],[123,199,73,0.0011660358902087248],[123,199,74,9.626016972862732E-4],[123,199,75,0.0010852218056547408],[123,199,76,0.001532237596898963],[123,199,77,0.0022918501934353205],[123,199,78,0.003342743845878795],[123,199,79,0.004654876270134362],[123,200,64,0.013699617707314728],[123,200,65,0.012151598253978867],[123,200,66,0.0105942397049874],[123,200,67,0.009035071785329606],[123,200,68,0.007523596261859257],[123,200,69,0.006131284231752933],[123,200,70,0.004919840078764622],[123,200,71,0.003940141569340914],[123,200,72,0.0032319932334744852],[123,200,73,0.0028240295797996567],[123,200,74,0.002733770391371078],[123,200,75,0.0029678301285883126],[123,200,76,0.003522283249172171],[123,200,77,0.004383187044008134],[123,200,78,0.005527263384255709],[123,200,79,0.0069227405815140445],[123,201,64,0.014561204166171477],[123,201,65,0.013065622850129377],[123,201,66,0.0115703706106509],[123,201,67,0.01008393640973724],[123,201,68,0.008655549499304433],[123,201,69,0.007355300926503332],[123,201,70,0.006243125199540941],[123,201,71,0.005367853420461551],[123,201,72,0.004767059108055587],[123,201,73,0.004467047798383097],[123,201,74,0.004482992437922245],[123,201,75,0.004819216374794136],[123,201,76,0.005469625547792168],[123,201,77,0.00641829127302524],[123,201,78,0.007640184835990646],[123,201,79,0.009102064914868155],[123,202,64,0.015378442663490408],[123,202,65,0.013943281556019108],[123,202,66,0.012516913182318653],[123,202,67,0.011109005356221231],[123,202,68,0.009768352065380775],[123,202,69,0.008563209065896051],[123,202,70,0.007551370301096823],[123,202,71,0.006779340441586705],[123,202,72,0.006282270222015008],[123,202,73,0.006084028945370028],[123,202,74,0.006197415939466349],[123,202,75,0.0066245125518687225],[123,202,76,0.0073571760752780225],[123,202,77,0.008377676807285206],[123,202,78,0.009659479268405099],[123,202,79,0.011168168432379619],[123,203,64,0.016147215526793813],[123,203,65,0.014780381224052013],[123,203,66,0.013429516916418721],[123,203,67,0.01210568964094243],[123,203,68,0.010857088155298272],[123,203,69,0.009749664814244857],[123,203,70,0.008838692131710912],[123,203,71,0.00816806151865199],[123,203,72,0.007770305368478272],[123,203,73,0.0076667490738792565],[123,203,74,0.007867794529519039],[123,203,75,0.008373336488591206],[123,203,76,0.009173312959287873],[123,203,77,0.010248390651647753],[123,203,78,0.011570786317928239],[123,203,79,0.013105224672439188],[123,204,64,0.016865079084648],[123,204,65,0.015574258061716105],[123,204,66,0.014305320506394522],[123,204,67,0.013070953573049533],[123,204,68,0.011918572141026486],[123,204,69,0.010911358948762164],[123,204,70,0.0101016832599056],[123,204,71,0.009530533177145696],[123,204,72,0.009227622333965914],[123,204,73,0.009211618593036767],[123,204,74,0.009490496074254567],[123,204,75,0.010062011661807643],[123,204,76,0.010914306970872608],[123,204,77,0.01202663659231287],[123,204,78,0.013370223279879127],[123,204,79,0.014909240600630065],[123,205,64,0.017531664675599835],[123,205,65,0.016324254808785334],[123,205,66,0.015143527410894886],[123,205,67,0.01400401304448319],[123,205,68,0.01295219382298016],[123,205,69,0.012048031403817003],[123,205,70,0.011340615554801751],[123,205,71,0.01086773834912956],[123,205,72,0.010656084548805823],[123,205,73,0.01072153532189926],[123,205,74,0.011069586381787023],[123,205,75,0.01169588147679068],[123,205,76,0.012586862003956131],[123,205,77,0.013720533372793886],[123,205,78,0.015067348605257477],[123,205,79,0.016591209528707802],[123,206,64,0.018149038725805137],[123,206,65,0.01703216060073554],[123,206,66,0.015945949326470903],[123,206,67,0.014907008851899864],[123,206,68,0.013960747882028285],[123,206,69,0.013163481204324567],[123,206,70,0.012560652177025379],[123,206,71,0.012186558558973055],[123,206,72,0.012064627655695144],[123,206,73,0.012207795315344891],[123,206,74,0.012618989621351948],[123,206,75,0.013291719983849917],[123,206,76,0.014210772192528037],[123,206,77,0.015353009860976903],[123,206,78,0.016688282568416007],[123,206,79,0.0181804408903862],[123,207,64,0.018722601819291345],[123,207,65,0.01770360311167287],[123,207,66,0.01671875021030777],[123,207,67,0.01578694472921555],[123,207,68,0.01495239726831899],[123,207,69,0.014267381391437031],[123,207,70,0.013773341164017256],[123,207,71,0.013500779802992104],[123,207,72,0.01346962282111005],[123,207,73,0.013689674642915433],[123,207,74,0.014161169288004784],[123,207,75,0.014875415588635057],[123,207,76,0.015815537285806966],[123,207,77,0.01695730823194755],[123,207,78,0.01827008282067902],[123,207,79,0.019288175863585933],[123,208,64,0.01863003719256841],[123,208,65,0.018349679397972975],[123,208,66,0.01747449048330677],[123,208,67,0.016657552267172377],[123,208,68,0.015941734173807585],[123,208,69,0.01537490343616505],[123,208,70,0.014994185379359131],[123,208,71,0.014826024974821916],[123,208,72,0.014886641013471062],[123,208,73,0.015182562371050574],[123,208,74,0.015711246699670445],[123,208,75,0.01646178176863262],[123,208,76,0.01741566957251071],[123,208,77,0.0185476932263681],[123,208,78,0.019172748871463918],[123,208,79,0.017849242041948758],[123,209,64,0.018193389714498194],[123,209,65,0.018981281202393268],[123,209,66,0.018225067949094974],[123,209,67,0.01753131903489014],[123,209,68,0.01694140095524638],[123,209,69,0.016498450615545623],[123,209,70,0.016235004632914874],[123,209,71,0.01617324170196476],[123,209,72,0.01632552975793821],[123,209,73,0.01669504279560796],[123,209,74,0.017276447407298504],[123,209,75,0.018056659011515687],[123,209,76,0.019015667657785503],[123,209,77,0.018867342399806253],[123,209,78,0.01770145082023186],[123,209,79,0.016447532148834477],[123,210,64,0.017773684115117427],[123,210,65,0.018528164351199403],[123,210,66,0.018980306396518182],[123,210,67,0.018417998414858493],[123,210,68,0.01796070955612959],[123,210,69,0.017646577182066032],[123,210,70,0.017503340033882372],[123,210,71,0.01754876677617573],[123,210,72,0.01779129687115551],[123,210,73,0.018230737620909997],[123,210,74,0.01885901716365113],[123,210,75,0.019260943501011103],[123,210,76,0.01837616566555288],[123,210,77,0.01736410503692866],[123,210,78,0.016255738695125865],[123,210,79,0.015085333480884318],[123,211,64,0.017362399249232496],[123,211,65,0.017976790857030734],[123,211,66,0.01855163075174137],[123,211,67,0.019058240865696484],[123,211,68,0.019006165427994104],[123,211,69,0.018824613697418537],[123,211,70,0.01880317841905973],[123,211,71,0.018955145050069122],[123,211,72,0.01928501707403212],[123,211,73,0.019058754488268062],[123,211,74,0.018462424275442604],[123,211,75,0.01771778987804249],[123,211,76,0.016847331140352775],[123,211,77,0.01587802802388208],[123,211,78,0.014840384905837778],[123,211,79,0.013767416770708904],[123,212,64,0.016951384019053686],[123,212,65,0.017415540733475822],[123,212,66,0.017843008404198488],[123,212,67,0.018202939179093557],[123,212,68,0.018459491565454202],[123,212,69,0.018585066612098272],[123,212,70,0.018561870226893807],[123,212,71,0.018381107626745802],[123,212,72,0.018042158393148607],[123,212,73,0.017551725204337985],[123,212,74,0.016922957020906595],[123,212,75,0.016174547528610896],[123,212,76,0.015329809662623015],[123,212,77,0.014415727051119404],[123,212,78,0.013461983222382479],[123,212,79,0.01249996941806519],[123,213,64,0.01653281876593591],[123,213,65,0.016837766170289942],[123,213,66,0.017110713199772212],[123,213,67,0.01731889926082086],[123,213,68,0.01742863610837214],[123,213,69,0.017417703956893394],[123,213,70,0.01727329286809813],[123,213,71,0.01699101233721824],[123,213,72,0.016573978743118705],[123,213,73,0.016031892580115885],[123,213,74,0.01538010652647536],[123,213,75,0.014638685407675822],[123,213,76,0.013831459109298448],[123,213,77,0.012985069484481599],[123,213,78,0.012128012284021286],[123,213,79,0.011289675113157397],[123,214,64,0.016099226689719637],[123,214,65,0.016237558590622037],[123,214,66,0.016350463177008497],[123,214,67,0.016403584984105282],[123,214,68,0.016365515832040874],[123,214,69,0.016219378616509867],[123,214,70,0.01595724940621314],[123,214,71,0.015578988649037171],[123,214,72,0.01509124581392554],[123,214,73,0.014506470484008627],[123,214,74,0.013841931226722295],[123,214,75,0.013118743545363708],[123,214,76,0.012360908188976562],[123,214,77,0.011594361063472449],[123,214,78,0.010846035946460152],[123,214,79,0.010142941161352283],[123,215,64,0.015643536049047956],[123,215,65,0.015609719634317946],[123,215,66,0.015558937534955611],[123,215,67,0.01545560927711334],[123,215,68,0.015270708525533402],[123,215,69,0.014992579429532986],[123,215,70,0.014618005598997764],[123,215,71,0.014150872318888383],[123,215,72,0.013601094439548775],[123,215,73,0.012983567753516069],[123,215,74,0.012317145444110694],[123,215,75,0.011623641145060414],[123,215,76,0.010926860098239283],[123,215,77,0.010251659838333933],[123,215,78,0.009623041769094155],[123,215,79,0.00906527492599445],[123,216,64,0.015159193931410927],[123,216,65,0.0149497838329777],[123,216,66,0.014733710173612719],[123,216,67,0.014474579482014829],[123,216,68,0.014145820630936154],[123,216,69,0.013740794747033656],[123,216,70,0.013260737932403609],[123,216,71,0.012713266568904697],[123,216,72,0.012111235632500755],[123,216,73,0.011471637681743242],[123,216,74,0.010814544350378095],[123,216,75,0.010162092103246445],[123,216,76,0.009537513937877993],[123,216,77,0.008964218631708067],[123,216,78,0.00846491904712607],[123,216,79,0.008060810914028492],[123,217,64,0.014640332414137905],[123,217,65,0.014254093745604593],[123,217,66,0.013873236774985311],[123,217,67,0.013460998292446234],[123,217,68,0.012993305121669822],[123,217,69,0.012468253215038059],[123,217,70,0.011891205894935527],[123,217,71,0.011273156718074523],[123,217,72,0.010629526327411452],[123,217,73,0.009979017098910638],[123,217,74,0.009342527639724183],[123,217,75,0.008742129099013236],[123,217,76,0.008200105151591301],[123,217,77,0.007738057408290459],[123,217,78,0.007376077896109444],[123,217,79,0.0071319901364731856],[123,218,64,0.014081987966591495],[123,218,65,0.013519928355795952],[123,218,66,0.012976896194175429],[123,218,67,0.012416221023446507],[123,218,68,0.011816338731167279],[123,218,69,0.011179727996127197],[123,218,70,0.010515492885354374],[123,218,71,0.009837599741307549],[123,218,72,0.009163621404938066],[123,218,73,0.008513556070722838],[123,218,74,0.007908723035907395],[123,218,75,0.007370737486887983],[123,218,76,0.006920566340964508],[123,218,77,0.006577667032283289],[123,218,78,0.0063592109975597316],[123,218,79,0.006279393481029221],[123,219,64,0.013480374968693205],[123,219,65,0.012745685559993643],[123,219,66,0.012045086962692573],[123,219,67,0.011342470005427608],[123,219,68,0.010618759329598626],[123,219,69,0.009880405251897453],[123,219,70,0.009139816617799487],[123,219,71,0.008413489680546556],[123,219,72,0.0077207089976748435],[123,219,73,0.007082339307983009],[123,219,74,0.006519710833747534],[123,219,75,0.006053600310556677],[123,219,76,0.0057033098996808074],[123,219,77,0.005485845986298504],[123,219,78,0.005415199712272003],[123,219,79,0.0055017309356394884],[123,220,64,0.012833214241051423],[123,220,65,0.01193111960077279],[123,220,66,0.011079379735370728],[123,220,67,0.010242906928158556],[123,220,68,0.009405064286397636],[123,220,69,0.008575817754033847],[123,220,70,0.007770409940564855],[123,220,71,0.007007399890655622],[123,220,72,0.00630733014418826],[123,220,73,0.005691500452198404],[123,220,74,0.005180850751486123],[123,220,75,0.004794955836214756],[123,220,76,0.004551133995738923],[123,220,77,0.004463671715297341],[123,220,78,0.004543166361396274],[123,220,79,0.004795988598035338],[123,221,64,0.012140117496586566],[123,221,65,0.011077634318746069],[123,221,66,0.010082726537176543],[123,221,67,0.009121763991343129],[123,221,68,0.008180470692996154],[123,221,69,0.007271844534656511],[123,221,70,0.0064134730339875465],[123,221,71,0.005625503158273229],[123,221,72,0.004929283918777604],[123,221,73,0.004346130469075289],[123,221,74,0.0038962124428387453],[123,221,75,0.003597569081342531],[123,221,76,0.003465253511583362],[123,221,77,0.003510608343665811],[123,221,78,0.0037406745624942316],[123,221,79,0.0041577354953867525],[123,222,64,0.011403028632001279],[123,222,65,0.010188633110757538],[123,222,66,0.009059727686154108],[123,222,67,0.007984534744507847],[123,222,68,0.006951038352740524],[123,222,69,0.005974777525686022],[123,222,70,0.005075197998433752],[123,222,71,0.004273570783556848],[123,222,72,0.0035916192221401686],[123,222,73,0.003050281444726118],[123,222,74,0.002668611085242611],[123,222,75,0.002462818886428502],[123,222,76,0.0024454576270833963],[123,222,77,0.0026247525910623164],[123,222,78,0.0030040795870241075],[123,222,79,0.003581592318262532],[123,223,64,0.010626722778887529],[123,223,65,0.009269926489819936],[123,223,66,0.00801695728296839],[123,223,67,0.006838225519780124],[123,223,68,0.005723856472619091],[123,223,69,0.0046914561713747565],[123,223,70,0.0037618668842862983],[123,223,71,0.0029570517617864022],[123,223,72,0.0022987144707409812],[123,223,73,0.00180706713694579],[123,223,74,0.0014997495224800214],[123,223,75,0.0013909021421389482],[123,223,76,0.0014903957976724383],[123,223,77,0.0018032197815265542],[123,223,78,0.002329030775106184],[123,223,79,0.0030618642421636],[123,224,64,0.009819364027884112],[123,224,65,0.008330198142919753],[123,224,66,0.0069633481651928415],[123,224,67,0.005691668375927152],[123,224,68,0.004507295013350891],[123,224,69,0.0034294710270058445],[123,224,70,0.0024800242512276905],[123,224,71,0.0016812332431411212],[123,224,72,0.001054446469259424],[123,224,73,6.188616848538123E-4],[123,224,74,3.904684942135427E-4],[123,224,75,3.811568411833833E-4],[123,224,76,5.979939380530381E-4],[123,224,77,0.0010426718987146752],[123,224,78,0.0017111281010436241],[123,224,79,0.0025933400657753105],[123,225,64,0.008993122724293125],[123,225,65,0.007381530375586038],[123,225,66,0.005910637224849611],[123,225,67,0.004555896479943295],[123,225,68,0.0033113216697407298],[123,225,69,0.0021974373791921772],[123,225,70,0.001236725373031412],[123,225,71,4.514834835915045E-4],[123,225,72,-1.3755021011913927E-4],[123,225,73,-5.124020767011564E-4],[123,225,74,-6.588934693819807E-4],[123,225,75,-5.674943288817733E-4],[123,225,76,-2.3399733101492484E-4],[123,225,77,3.399896861518972E-4],[123,225,78,0.0011467350268580259],[123,225,79,0.00217225993555265],[123,226,64,0.008164853208975557],[123,226,65,0.006439989816056457],[123,226,66,0.0048738719798217586],[123,226,67,0.0034445828525749137],[123,226,68,0.00214788546102697],[123,226,69,0.0010053399382005843],[123,226,70,3.986122544511683E-5],[123,226,71,-7.264214734051019E-4],[123,226,72,-0.0012735319868438667],[123,226,73,-0.0015848332177069145],[123,226,74,-0.0016480288742903382],[123,226,75,-0.0014559781001206593],[123,226,76,-0.0010073204810507907],[123,226,77,-3.069091769690083E-4],[123,226,78,6.339498088147205E-4],[123,226,79,0.0017974539488780782],[123,227,64,0.007360278125645249],[123,227,65,0.0055304778443878155],[123,227,66,0.003876889958439057],[123,227,67,0.0023801429542905017],[123,227,68,0.0010376338781190098],[123,227,69,-1.2817696741731284E-4],[123,227,70,-0.0010940525035736035],[123,227,71,-0.001838115056511497],[123,227,72,-0.002341202971218337],[123,227,73,-0.0025880365500265514],[123,227,74,-0.002568190242307886],[123,227,75,-0.002276868292538794],[123,227,76,-0.0017154813354978166],[123,227,77,-8.920217077473254E-4],[123,227,78,1.7876447867595959E-4],[123,227,79,0.0014754101837968002],[123,228,64,0.006622980695131567],[123,228,65,0.004698753560875208],[123,228,66,0.002967184088335783],[123,228,67,0.0014113836715868421],[123,228,68,3.0268440555276043E-5],[123,228,69,-0.0011529696680375263],[123,228,70,-0.002114915770324752],[123,228,71,-0.002834056143829107],[123,228,72,-0.0032921193251117635],[123,228,73,-0.003475218251056192],[123,228,74,-0.003374790373154431],[123,228,75,-0.0029883329662059844],[123,228,76,-0.002319931145293281],[123,228,77,-0.0013805763955409048],[123,228,78,-1.8827370544283086E-4],[123,228,79,0.0012320643261744368],[123,229,64,0.005992201396289919],[123,229,65,0.0039867493873861504],[123,229,66,0.0021889279582218645],[123,229,67,5.84314439952659E-4],[123,229,68,-8.267717610990918E-4],[123,229,69,-0.002020632684699028],[123,229,70,-0.002973877878441341],[123,229,71,-0.0036655234669343765],[123,229,72,-0.004078309454107201],[123,229,73,-0.004199811456950472],[123,229,74,-0.004023343828062873],[123,229,75,-0.0035486514255064503],[123,229,76,-0.002782387589494718],[123,229,77,-0.0017383761840387188],[123,229,78,-4.3765585521652646E-4],[123,229,79,0.001091695056511177],[123,230,64,0.005496452409632681],[123,230,65,0.00342502358340477],[123,230,66,0.0015743535396996308],[123,230,67,-6.750944346830184E-5],[123,230,68,-0.001498954922060957],[123,230,69,-0.002696033309618702],[123,230,70,-0.003635612074714471],[123,230,71,-0.004297432889413825],[123,230,72,-0.004665394068308728],[123,230,73,-0.004728622911030483],[123,230,74,-0.004482334963871234],[123,230,75,-0.003928477523417452],[123,230,76,-0.0030761550117483554],[123,230,77,-0.0019418341564102271],[123,230,78,-5.493272063420491E-4],[123,230,79,0.0010704482955901195],[123,231,64,0.005154399785512472],[123,231,65,0.003033635255251899],[123,231,66,0.0011446263979160215],[123,231,67,-5.220985312904462E-4],[123,231,68,-0.0019637421118618697],[123,231,69,-0.003156361855936316],[123,231,70,-0.004077325023118736],[123,231,71,-0.004707304269199274],[123,231,72,-0.005031511984325946],[123,231,73,-0.005040722396367046],[123,231,74,-0.004732078546795686],[123,231,75,-0.004109681556435209],[123,231,76,-0.00318495990728688],[123,231,77,-0.0019768167720209933],[123,231,78,-5.11553721817474E-4],[123,231,79,0.0011774305667319475],[123,232,64,0.004975710584162284],[123,232,65,0.0028229852662853398],[123,232,66,9.106889684724301E-4],[123,232,67,-7.681695056168E-4],[123,232,68,-0.0022096966817414833],[123,232,69,-0.003390199292165548],[123,232,70,-0.004287775343353561],[123,232,71,-0.00488422707303052],[123,232,72,-0.0051662323546986955],[123,232,73,-0.0051263043156515465],[123,232,74,-0.004763536402498699],[123,232,75,-0.004084130437237459],[123,232,76,-0.003101705514319954],[123,232,77,-0.0018373858925690367],[123,232,78,-3.196663324613825E-4],[123,232,79,0.0014159463836009346],[123,233,64,0.004961862747012611],[123,233,65,0.0027946204797284083],[123,233,66,8.740690446327188E-4],[123,233,67,-8.04317147377338E-4],[123,233,68,-0.002235620851073238],[123,233,69,-0.0033966058121994674],[123,233,70,-0.004266304887628158],[123,233,71,-0.0048278284551141895],[123,233,72,-0.005069456976941518],[123,233,73,-0.00498552490191699],[123,233,74,-0.004577093301467571],[123,233,75,-0.0038524089397599932],[123,233,76,-0.002827147779846847],[123,233,77,-0.0015244412254802277],[123,233,78,2.53163112717574E-5],[123,233,79,0.0017848796459069237],[123,234,64,0.005106917484857115],[123,234,65,0.0029420011785371994],[123,234,66,0.001027653390936556],[123,234,67,-6.382179959784374E-4],[123,234,68,-0.0020497193767123867],[123,234,69,-0.0031842301307901644],[123,234,70,-0.004021882412731446],[123,234,71,-0.0045472433050503915],[123,234,72,-0.00475031201732865],[123,234,73,-0.004627314209447442],[123,234,74,-0.00418129103037815],[123,234,75,-0.0034224807593513464],[123,234,76,-0.0023684912291139083],[123,234,77,-0.0010442614990317123],[123,234,78,5.181884736235517E-4],[123,234,79,0.0022802211454703127],[123,235,64,0.005398253920122397],[123,235,65,0.0032512314627925194],[123,235,66,0.001356426358522432],[123,235,67,-2.858657393953374E-4],[123,235,68,-0.001668790248992153],[123,235,69,-0.0027704393361610157],[123,235,70,-0.0035721593492833836],[123,235,71,-0.00406008581900863],[123,235,72,-0.004226028538178667],[123,235,73,-0.0040681620930024765],[123,235,74,-0.003591519664239083],[123,235,75,-0.0028082882000812835],[123,235,76,-0.0017379033423938004],[123,235,77,-4.0694276272916355E-4],[123,235,78,0.0011511831684047685],[123,235,79,0.002896744198836371],[123,236,64,0.005817265672507875],[123,236,65,0.0037017523814430586],[123,236,66,0.0018381733365841436],[123,236,67,2.2916158498901315E-4],[123,236,68,-0.001117442399687503],[123,236,69,-0.002180469176299007],[123,236,70,-0.0029425374198407605],[123,236,71,-0.003391422204102171],[123,236,72,-0.0035208112805686304],[123,236,73,-0.003330877454574261],[123,236,74,-0.0028286651335523642],[123,236,75,-0.0020282893892140147],[123,236,76,-9.509461390657159E-4],[123,236,77,3.752676892526701E-4],[123,236,78,0.0019157248971657355],[123,236,79,0.0036298303044825426],[123,237,64,0.006340019030103239],[123,237,65,0.004266997512318886],[123,237,66,0.002444148833862958],[123,237,67,8.764024579486623E-4],[123,237,68,-4.273404503505519E-4],[123,237,69,-0.0014465947033772122],[123,237,70,-0.002165247912259238],[123,237,71,-0.002572744189173571],[123,237,72,-0.0026646952275916464],[123,237,73,-0.0024433201210518835],[123,237,74,-0.001917712276562104],[123,237,75,-0.0011039320267336975],[123,237,76,-2.4923788912265876E-5],[123,237,77,0.0012897431420743775],[123,237,78,0.0028043108506250383],[123,237,79,0.0044774465696827866],[123,238,64,0.006937872302274487],[123,238,65,0.004915010662679138],[123,238,66,0.00313970894438337],[123,238,67,0.0016191806530166729],[123,238,68,3.635234263176489E-4],[123,238,69,-6.073212514887448E-4],[123,238,70,-0.001278442474379937],[123,238,71,-0.0016409430859587687],[123,238,72,-0.0016923895569199983],[123,238,73,-0.0014371048141326663],[123,238,74,-8.863026799705823E-4],[123,238,75,-5.8062807069256695E-5],[123,238,76,0.0010228547840470381],[123,238,77,0.00232535624086104],[123,238,78,0.003812521956685694],[123,238,79,0.00544227646116213],[123,239,64,0.007570865699900779],[123,239,65,0.005602791722563093],[123,239,66,0.0038794892636333034],[123,239,67,0.0024104792319502863],[123,239,68,0.0012072553029469316],[123,239,69,2.894442504677571E-4],[123,239,70,-3.2910988897171174E-4],[123,239,71,-6.411150600655335E-4],[123,239,72,-6.461048515056459E-4],[123,239,73,-3.505703857508338E-4],[123,239,74,2.3205058642534736E-4],[123,239,75,0.0010815282054826973],[123,239,76,0.002171139257061722],[123,239,77,0.0034681105884752585],[123,239,78,0.004934207432038155],[123,239,79,0.006526466705952373],[123,240,64,0.0081737529661426],[123,240,65,0.006265239719873494],[123,240,66,0.004598746896974999],[123,240,67,0.003186106745687615],[123,240,68,0.002040435672272023],[123,240,69,0.0011813471286809508],[123,240,70,6.218264292938257E-4],[123,240,71,3.676838585480026E-4],[123,240,72,4.1746874246254917E-4],[123,240,73,7.625094700282218E-4],[123,240,74,0.0013870801580076553],[123,240,75,0.002268694473600738],[123,240,76,0.0033785269555979907],[123,240,77,0.004681962007562149],[123,240,78,0.006139270577953641],[123,240,79,0.00770641439372284],[123,241,64,0.008689664333312561],[123,241,65,0.006846016031278611],[123,241,66,0.00524168617360241],[123,241,67,0.003890776586710772],[123,241,68,0.0028082560619971096],[123,241,69,0.0020140802931247906],[123,241,70,0.001520650172731509],[123,241,71,0.0013324899294615768],[123,241,72,0.001446356034754623],[123,241,73,0.0018514561682271369],[123,241,74,0.0025297786046552307],[123,241,75,0.0034565322310132237],[123,241,76,0.004600697253248924],[123,241,77,0.005925686510811586],[123,241,78,0.007390117183916233],[123,241,79,0.00894869255570897],[123,242,64,0.009077397989125482],[123,242,65,0.007303950885321073],[123,242,66,0.005767113703876526],[123,242,67,0.004483161703163855],[123,242,68,0.0034691337775488505],[123,242,69,0.002745720924470813],[123,242,70,0.0023250683291196027],[123,242,71,0.0022106753951016017],[123,242,72,0.0023977019198588487],[123,242,73,0.002873368813196029],[123,242,74,0.003617453396840666],[123,242,75,0.004602879192558854],[123,242,76,0.005796399982262041],[123,242,77,0.007159377806940052],[123,242,78,0.00864865446348868],[123,242,79,0.01021751596095777],[123,243,64,0.009309610858655774],[123,243,65,0.007611310479306534],[123,243,66,0.0061467974364023854],[123,243,67,0.004934365053408461],[123,243,68,0.003993315246598117],[123,243,69,0.003345488319673947],[123,243,70,0.0030031443246221748],[123,243,71,0.002969076115825824],[123,243,72,0.0032371104333642165],[123,243,73,0.0037926887950260808],[123,243,74,0.0046135279222780405],[123,243,75,0.005670359318154693],[123,243,76,0.006927747514617538],[123,243,77,0.008344986414387552],[123,243,78,0.009877073068771752],[123,243,79,0.011475758159791334],[123,244,64,0.00937109902969484],[123,244,65,0.007752152045620143],[123,244,66,0.006363910875843616],[123,244,67,0.0052264709742522635],[123,244,68,0.004361554630402973],[123,244,69,0.0037925702924167773],[123,244,70,0.0035322922594710504],[123,244,71,0.0035831723752201366],[123,244,72,0.003938028860693042],[123,244,73,0.004580801366268381],[123,244,74,0.005487371674145342],[123,244,75,0.006626449396972434],[123,244,76,0.007960521939925493],[123,244,77,0.009446867923429848],[123,244,78,0.011038633202928255],[123,244,79,0.012685968571655173],[123,245,64,0.009257169254485878],[123,245,65,0.007720768230416228],[123,245,66,0.006411563735407327],[123,245,67,0.00535117862271115],[123,245,68,0.004563868724767121],[123,245,69,0.0040750189984364886],[123,245,70,0.00389833294483612],[123,245,71,0.004036323399905253],[123,245,72,0.0044811772814750675],[123,245,73,0.005215674429363683],[123,245,74,0.006214159700831926],[123,245,75,0.00744356741735657],[123,245,76,0.008864497200196074],[123,245,77,0.010432340182411235],[123,245,78,0.012098454544753025],[123,245,79,0.013811389293047208],[123,246,64,0.008972103086945632],[123,246,65,0.007520222265290972],[123,246,66,0.00629142040603214],[123,246,67,0.005308518748368529],[123,246,68,0.004598369258135097],[123,246,69,0.0041887171262836535],[123,246,70,0.004094612503895841],[123,246,71,0.004319056175154671],[123,246,72,0.004854023950835283],[123,246,73,0.005681534762973203],[123,246,74,0.006774761383898636],[123,246,75,0.008099182643217717],[123,246,76,0.009613775975093277],[123,246,77,0.011272249095998376],[123,246,78,0.013024309590770219],[123,246,79,0.014816971173057188],[123,247,64,0.008527715332951977],[123,247,65,0.0071609755225470525],[123,247,66,0.006012407724865117],[123,247,67,0.005105655143335886],[123,247,68,0.004470173772223251],[123,247,69,0.004136415458187824],[123,247,70,0.004121184348717128],[123,247,71,0.004428409168958126],[123,247,72,0.0050503069313480664],[123,247,73,0.005968581907673431],[123,247,74,0.007155658581949574],[123,247,75,0.008575947266679899],[123,247,76,0.010187141038034628],[123,247,77,0.011941542627882136],[123,247,78,0.01378741990310217],[123,247,79,0.01567038856588808],[123,248,64,0.007942008600355006],[123,248,65,0.006659609145306571],[123,248,66,0.005589513616991899],[123,248,67,0.004755772197957261],[123,248,68,0.004190396340184636],[123,248,69,0.003926842862130599],[123,248,70,0.00398405538600131],[123,248,71,0.004367331601802513],[123,248,72,0.005069602395502384],[123,248,73,0.006072739917482557],[123,248,74,0.007348893142763272],[123,248,75,0.008861849449114965],[123,248,76,0.010568420722995958],[123,248,77,0.012419852496824623],[123,248,78,0.014363254625032388],[123,248,79,0.01634305202125129],[123,249,64,0.007237925833316867],[123,249,65,0.0060376415333179044],[123,249,66,0.005042678264938233],[123,249,67,0.004277050061171003],[123,249,68,0.0037752194371738],[123,249,69,0.003573889823631432],[123,249,70,0.0036944973378729216],[123,249,71,0.004144138916357642],[123,249,72,0.004916940017347443],[123,249,73,0.005995447162685722],[123,249,74,0.007352043743709663],[123,249,75,0.008950387497872794],[123,249,76,0.010746868053730367],[123,249,77,0.01269208294304772],[123,249,78,0.014732330490520728],[123,249,79,0.016811118014496355],[123,250,64,0.006442202800575272],[123,250,65,0.005320443542035902],[123,250,66,0.004395779528446714],[123,250,67,0.003691728963185889],[123,250,68,0.003245048326768701],[123,250,69,0.0030958666627250286],[123,250,70,0.0032684240874212302],[123,250,71,0.003772025109341718],[123,250,72,0.004602465862598921],[123,250,73,0.005743484340624266],[123,250,74,0.007168231970534675],[123,250,75,0.008840764853483353],[123,250,76,0.010717552990895243],[123,250,77,0.012749005821356794],[123,250,78,0.014881012408650867],[123,250,79,0.017056494648523636],[123,251,64,0.005584322577293248],[123,251,65,0.0045362533145122935],[123,251,66,0.003675714390594053],[123,251,67,0.003025264303087146],[123,251,68,0.00262374936238957],[123,251,69,0.0025148376066670432],[123,251,70,0.0027258359713246516],[123,251,71,0.003268632585943323],[123,251,72,0.004141153167885107],[123,251,73,0.0053288408136717026],[123,251,74,0.006806157486330518],[123,251,75,0.008538105481300096],[123,251,76,0.010481767147839985],[123,251,77,0.01258786114771311],[123,251,78,0.01480231354878683],[123,251,79,0.017067842078653004],[123,252,64,0.004695574113273177],[123,252,65,0.0037152927108220694],[123,252,66,0.0029115782435239312],[123,252,67,0.0023055741333310974],[123,252,68,0.001937973623928528],[123,252,69,0.0018560319004994016],[123,252,70,0.0020903319422158387],[123,252,71,0.0026556801840843533],[123,252,72,0.0035525613709694354],[123,252,73,0.00476861934667332],[123,252,74,0.006280162075222221],[123,252,75,0.008053689171909224],[123,252,76,0.010047440212100026],[123,252,77,0.012212962086868428],[123,252,78,0.014496693686812554],[123,252,79,0.016841566219455848],[123,253,64,0.0038082170143626886],[123,253,65,0.0028889873260956084],[123,253,66,0.0021339438459147763],[123,253,67,0.0015623806849001257],[123,253,68,0.001216567314486795],[123,253,69,0.001147333134113644],[123,253,70,0.0013886905100301597],[123,253,71,0.001958649990256938],[123,253,72,0.0028606437136180773],[123,253,73,0.00408497925877272],[123,253,74,0.005610322268252652],[123,253,75,0.007405206155561012],[123,253,76,0.009429567186513072],[123,253,77,0.011636303219805692],[123,253,78,0.013972854396960157],[123,253,79,0.016382804088886538],[123,254,64,0.0029547546766061947],[123,254,65,0.0020892920935146942],[123,254,66,0.0013742417826451408],[123,254,67,8.266475691475899E-4],[123,254,68,4.900703285284929E-4],[123,254,69,4.1884794415927254E-4],[123,254,70,6.505203428961855E-4],[123,254,71,0.0012065335293209016],[123,254,72,0.002093603686144524],[123,254,73,0.0033051179358290026],[123,254,74,0.004822570171353087],[123,254,75,0.006617030326756389],[123,254,76,0.008650645430824565],[123,254,77,0.010878170770702716],[123,254,78,0.013248529487087664],[123,254,79,0.01570639892961014],[123,255,64,0.0021673179017668324],[123,255,65,0.0013481244505758852],[123,255,66,6.642442327457869E-4],[123,255,67,1.301142629608234E-4],[123,255,68,-2.0969563105559616E-4],[123,255,69,-2.974447897283573E-4],[123,255,70,-9.201863741779856E-5],[123,255,71,4.316378561165351E-4],[123,255,72,0.0012838005163695637],[123,255,73,0.0024612905685500066],[123,255,74,0.003948842016335595],[123,255,75,0.0057205102553010475],[123,255,76,0.0077411203411811924],[123,255,77,0.00996775330356714],[123,255,78,0.012351268877552201],[123,255,79,0.014837863019981556],[123,256,64,0.001477161085842339],[123,256,65,6.969070031534348E-4],[123,256,66,3.565380233844647E-5],[123,256,67,-4.950705693750205E-4],[123,256,68,-8.499480655554797E-4],[123,256,69,-9.679631942087353E-4],[123,256,70,-8.044228945389603E-4],[123,256,71,-3.3054799440487923E-4],[123,256,72,4.6770382456228133E-4],[123,256,73,0.001590867887016583],[123,256,74,0.0030272538447205363],[123,256,75,0.004754277028984519],[123,256,76,0.006739838350545477],[123,256,77,0.008943751218234916],[123,256,78,0.01131921391479407],[123,256,79,0.013814325847509627],[123,257,64,9.142736016083155E-4],[123,257,65,1.662216584567691E-4],[123,257,66,-4.802012123572612E-4],[123,257,67,-0.001016616112330332],[123,257,68,-0.0013971735039122115],[123,257,69,-0.0015577101500388313],[123,257,70,-0.0014499819276400671],[123,257,71,-0.001041426525212898],[123,257,72,-3.1410274143231173E-4],[123,257,73,7.36432047221215E-4],[123,257,74,0.0021023050241511265],[123,257,75,0.0037645703696520404],[123,257,76,0.005694509620380912],[123,257,77,0.007854988513995334],[123,257,78,0.01020186883265795],[123,257,79,0.01268547372245949],[123,258,64,5.078197055471284E-4],[123,258,65,-2.1372514317274152E-4],[123,258,66,-8.518781587440859E-4],[123,258,67,-0.0014015825212496226],[123,258,68,-0.0018166104651043643],[123,258,69,-0.002029755723639284],[123,258,70,-0.001989270317199497],[123,258,71,-0.0016588032181258825],[123,258,72,-0.0010164610454261708],[123,258,73,-5.3798073888534074E-5],[123,258,74,0.0012252633586682178],[123,258,75,0.0028055808664155745],[123,258,76,0.004662007186528147],[123,258,77,0.00676067116345856],[123,258,78,0.009060323138651266],[123,258,79,0.011513743285146752],[123,259,64,3.0020387757660543E-4],[123,259,65,-3.9937041788948215E-4],[123,259,66,-0.001034406508589059],[123,259,67,-0.0016032957815806082],[123,259,68,-0.002059631442822305],[123,259,69,-0.0023333857903194036],[123,259,70,-0.002369472575374347],[123,259,71,-0.0021278615370555346],[123,259,72,-0.0015827625841293898],[123,259,73,-7.217309365468855E-4],[123,259,74,4.5530583137180943E-4],[123,259,75,0.001937097793056365],[123,259,76,0.0037021985621701454],[123,259,77,0.005720165828600939],[123,259,78,0.007952835210412004],[123,259,79,0.01035566602584341],[123,260,64,3.396883798763104E-4],[123,260,65,-3.415377438097857E-4],[123,260,66,-9.77410736163489E-4],[123,260,67,-0.0015698632317333197],[123,260,68,-0.002072658101134297],[123,260,69,-0.002413416176203115],[123,260,70,-0.0025340862560363536],[123,260,71,-0.0023912349270834225],[123,260,72,-0.0019553589258737313],[123,260,73,-0.0012101106461248296],[123,260,74,-1.514375875699034E-4],[123,260,75,0.0012133633310148408],[123,260,76,0.002866675555529002],[123,260,77,0.004781675631135569],[123,260,78,0.00692352764605677],[123,260,79,0.00925065805934394],[123,261,64,6.614457353745415E-4],[123,261,65,-4.245632001064999E-6],[123,261,66,-6.438159028680926E-4],[123,261,67,-0.001262787797391136],[123,261,68,-0.0018155605828900862],[123,261,69,-0.0022280818204041685],[123,261,70,-0.0024398848022779683],[123,261,71,-0.002404552391627497],[123,261,72,-0.0020891642742171075],[123,261,73,-0.001473650104238155],[123,261,74,-5.500491902783394E-4],[123,261,75,6.78322493509599E-4],[123,261,76,0.002197797055472728],[123,261,77,0.003985370157040177],[123,261,78,0.006009806058729161],[123,261,79,0.008232830996112363],[123,262,64,0.0012875346908429557],[123,262,65,6.352968949009094E-4],[123,262,66,-9.82555216229188E-6],[123,262,67,-6.569415697042673E-4],[123,262,68,-0.001261636787254735],[123,262,69,-0.0017490255227711154],[123,262,70,-0.0020569146441472607],[123,262,71,-0.0021364391970888808],[123,262,72,-0.0019516525132415642],[123,262,73,-0.001479015546495474],[123,262,74,-7.067859243917953E-4],[123,262,75,3.6569264689372384E-4],[123,262,76,0.0017287998416487538],[123,262,77,0.0033635461205887016],[123,262,78,0.005242577042011985],[123,262,79,0.00733127332372547],[123,263,64,0.0022279441452884674],[123,263,65,0.0015877506060744645],[123,263,66,9.361432447820194E-4],[123,263,67,2.6048828365715426E-4],[123,263,68,-3.96587726450478E-4],[123,263,69,-9.60323202806698E-4],[123,263,70,-0.0013675915341957985],[123,263,71,-0.0015677051629353978],[123,263,72,-0.0015221571586793927],[123,263,73,-0.0012042559501841358],[123,263,74,-5.9865353297594E-4],[123,263,75,2.9923236553596415E-4],[123,263,76,0.001483901525485051],[123,263,77,0.0029405590925154043],[123,263,78,0.00464600713028049],[123,263,79,0.0065696388167660056],[123,264,64,0.0034818864145337316],[123,264,65,0.0028529532432340766],[123,264,66,0.002194767115221077],[123,264,67,0.0014912891566906345],[123,264,68,7.82733719847162E-4],[123,264,69,1.4270609024566913E-4],[123,264,70,-3.655954677524017E-4],[123,264,71,-6.9034782219041E-4],[123,264,72,-7.910047997819611E-4],[123,264,73,-6.380866924281797E-4],[123,264,74,-2.1285758259450158E-4],[123,264,75,4.931091989669773E-4],[123,264,76,0.0014784770012949769],[123,264,77,0.0027328025247810505],[123,264,78,0.004237302442862964],[123,264,79,0.00596572904028422],[123,265,64,0.005039339765732441],[123,265,65,0.0044214734367581075],[123,265,66,0.0037573656628933118],[123,265,67,0.003027747898082491],[123,265,68,0.002269800292301187],[123,265,69,0.0015549050032391907],[123,265,70,9.454353625885028E-4],[123,265,71,4.936290799879146E-4],[123,265,72,2.4151750190028082E-4],[123,265,73,2.2097209677294895E-4],[123,265,74,4.5386821786200525E-4],[123,265,75,9.523660097155405E-4],[123,265,76,0.001719308144736452],[123,265,77,0.002748733903914374],[123,265,78,0.00402650895227431],[123,265,79,0.005531070006282297],[123,266,64,0.006882839891167205],[123,266,65,0.006276410960286576],[123,266,66,0.005607692334908011],[123,266,67,0.0048544104352231466],[123,266,68,0.004050113507731274],[123,266,69,0.003262896930895746],[123,266,70,0.002553410949891562],[123,266,71,0.001973581122265411],[123,266,72,0.0015663602508719833],[123,266,73,0.0013656019227177337],[123,266,74,0.001396055905848069],[123,266,75,0.0016734854612265025],[123,266,76,0.002204906436411402],[123,266,77,0.0029889478241933096],[123,266,78,0.004016333293783291],[123,266,79,0.00527048303612143],[123,267,64,0.008989519742564699],[123,267,65,0.00839544268817076],[123,267,66,0.00772396618736207],[123,267,67,0.006950075391792492],[123,267,68,0.006103131710143047],[123,267,69,0.005246918501115136],[123,267,70,0.004439495399767141],[123,267,71,0.0037317720033278367],[123,267,72,0.003167074258970346],[123,267,73,0.0027808363821154617],[123,267,74,0.0026004187690310447],[123,267,75,0.002645052163106196],[123,267,76,0.00292590813400147],[123,267,77,0.0034462957343857604],[123,267,78,0.004201984011749216],[123,267,79,0.005181649874344695],[123,268,64,0.011333396915210642],[123,268,65,0.010753113397646015],[123,268,66,0.010081143648557393],[123,268,67,0.00929002076357381],[123,268,68,0.008404422060653012],[123,268,69,0.007482864533472996],[123,268,70,0.006580011456272849],[123,268,71,0.0057451046896081805],[123,268,72,0.005021337238392266],[123,268,73,0.00444535491439958],[123,268,74,0.004046887789841882],[123,268,75,0.0038485119154718504],[123,268,76,0.0038655415668313606],[123,268,77,0.004106052077228973],[123,268,78,0.004571033117395999],[123,268,79,0.005254672091074795],[123,269,64,0.01388790755536755],[123,269,65,0.013323370351253923],[123,269,66,0.012653429183648597],[123,269,67,0.0118484625348547],[123,269,68,0.010928035341577137],[123,269,69,0.009944544356979472],[123,269,70,0.008948542543860549],[123,269,71,0.007987033883835103],[123,269,72,0.007102643289488627],[123,269,73,0.0063329189857830774],[123,269,74,0.005709768282180369],[123,269,75,0.0052590274352256995],[123,269,76,0.005000166081973226],[123,269,77,0.0049461265091416936],[123,269,78,0.005103297812850068],[123,269,79,0.0054716248007749225],[123,270,64,0.016628685565040408],[123,270,65,0.016082340404984293],[123,270,66,0.015417023585587181],[123,270,67,0.014601243951168432],[123,270,68,0.01364910229666851],[123,270,69,0.012606148233981526],[123,270,70,0.011518231117844979],[123,270,71,0.010429658674052246],[123,270,72,0.009382154231627611],[123,270,73,0.008413949763541982],[123,270,74,0.007559015905826153],[123,270,75,0.006846429894519809],[123,270,76,0.006299882130834356],[123,270,77,0.005937321858713259],[123,270,78,0.00577074221723844],[123,270,79,0.005806104714653762],[123,271,64,0.01951944772125254],[123,271,65,0.01899424440416811],[123,271,66,0.018336300425611428],[123,271,67,0.017512526790402945],[123,271,68,0.016531297893558162],[123,271,69,0.015430736217872566],[123,271,70,0.01425152825252589],[123,271,71,0.01303494600715272],[123,271,72,0.011821580938751144],[123,271,73,0.010650217182569281],[123,271,74,0.009556845519387507],[123,271,75,0.008573819272065438],[123,271,76,0.0077291530849769976],[123,271,77,0.007045965302527651],[123,271,78,0.006542064428930542],[123,271,79,0.006229679922439788],[123,272,64,0.02039901190059466],[123,272,65,0.02092106611829822],[123,272,66,0.02131658368393687],[123,272,67,0.020489231794707578],[123,272,68,0.019483832429934622],[123,272,69,0.018330651999026497],[123,272,70,0.017064854134538673],[123,272,71,0.015724386156865913],[123,272,72,0.014348483835552345],[123,272,73,0.012976319121013179],[123,272,74,0.01164579254987487],[123,272,75,0.0103924717780677],[123,272,76,0.009248677445958703],[123,272,77,0.008242717330716128],[123,272,78,0.007398269494345565],[123,272,79,0.006733914893092378],[123,273,64,0.01753236707157286],[123,273,65,0.018025310754504063],[123,273,66,0.018674658673432428],[123,273,67,0.019515673943508244],[123,273,68,0.020551730065878],[123,273,69,0.02121253365926666],[123,273,70,0.019869341269582102],[123,273,71,0.01841472933246247],[123,273,72,0.01688634782353296],[123,273,73,0.015323542274211495],[123,273,74,0.013765924885893002],[123,273,75,0.012252096103846333],[123,273,76,0.010818518106205745],[123,273,77,0.009498541402454956],[123,273,78,0.008321585476113787],[123,273,79,0.007312474149640542],[123,274,64,0.014802299246266241],[123,274,65,0.015262400521793942],[123,274,66,0.01588994295567084],[123,274,67,0.016720663508601696],[123,274,68,0.017763684847994152],[123,274,69,0.019005122774142687],[123,274,70,0.020421558106319945],[123,274,71,0.02102969992753612],[123,274,72,0.01936443806693404],[123,274,73,0.017627670350806236],[123,274,74,0.015860454405091207],[123,274,75,0.01410414306419796],[123,274,76,0.012399051230469579],[123,274,77,0.010783280726470756],[123,274,78,0.009291704295058207],[123,274,79,0.007955109631634504],[123,275,64,0.012287420924088872],[123,275,65,0.012711171714996645],[123,275,66,0.013311534358278957],[123,275,67,0.01412429266120556],[123,275,68,0.015164082752173125],[123,275,69,0.01642519806849422],[123,275,70,0.01789019678691642],[123,275,71,0.01953237189699434],[123,275,72,0.02131791267919459],[123,275,73,0.01982945764333257],[123,275,74,0.017876257230855258],[123,275,75,0.015902364731690075],[123,275,76,0.013951555843008378],[123,275,77,0.012066269555987868],[123,275,78,0.010286405933497321],[123,275,79,0.008648289191998738],[123,276,64,0.01005460898268762],[123,276,65,0.01043892273915111],[123,276,66,0.011006856890249642],[123,276,67,0.011793822236905607],[123,276,68,0.012819626045728054],[123,276,69,0.014086517556410657],[123,276,70,0.015582953815234947],[123,276,71,0.017286163238877567],[123,276,72,0.019164505558647807],[123,276,73,0.021179673303736313],[123,276,74,0.019764439808824728],[123,276,75,0.017603417894159364],[123,276,76,0.015438845824942895],[123,276,77,0.013316984583700517],[123,276,78,0.011282220062147352],[123,276,79,0.009375859515603652],[123,277,64,0.00815893502782873],[123,277,65,0.00850130830367886],[123,277,66,0.009031951059097253],[123,277,67,0.009785505548837647],[123,277,68,0.01078651283760118],[123,277,69,0.012044797634808427],[123,277,70,0.01355451992404573],[123,277,71,0.015296816240040692],[123,277,72,0.017242339353865842],[123,277,73,0.019353635684149738],[123,277,74,0.02148095068964522],[123,277,75,0.01916751162595305],[123,277,76,0.016825944020494674],[123,277,77,0.014505736048775307],[123,277,78,0.01225512462199295],[123,277,79,0.010119742917148908],[123,278,64,0.006643550445108316],[123,278,65,0.006942187480550454],[123,278,66,0.007431277711402172],[123,278,67,0.008144338558103844],[123,278,68,0.009110125806364968],[123,278,69,0.01034551035940077],[123,278,70,0.011850045387819289],[123,278,71,0.013608668522166145],[123,278,72,0.01559439928909012],[123,278,73,0.01777087059693431],[123,278,74,0.02009469114143628],[123,278,75,0.020559098749658843],[123,278,76,0.018080798144681106],[123,278,77,0.01560439816929251],[123,278,78,0.013181280901196605],[123,278,79,0.010860667491602286],[123,279,64,0.0055395255951094955],[123,279,65,0.0057934251040246895],[123,279,66,0.006237474720029366],[123,279,67,0.006903762445046879],[123,279,68,0.007824672889549715],[123,279,69,0.009023458630312798],[123,279,70,0.010504649634056156],[123,279,71,0.012256799087305046],[123,279,72,0.014255313991008559],[123,279,73,0.01646511631786299],[123,279,74,0.018843131447223986],[123,279,75,0.0213406009066097],[123,279,76,0.019175038182850396],[123,279,77,0.016587178518290013],[123,279,78,0.014037804658547672],[123,279,79,0.011578930108174028],[123,280,64,0.004865642654100823],[123,280,65,0.00507464604806632],[123,280,66,0.00547106609777842],[123,280,67,0.006085318215909542],[123,280,68,0.0069527796334659725],[123,280,69,0.008102302792696815],[123,280,70,0.00954288224844363],[123,280,71,0.011266426895945472],[123,280,72,0.01325069724180685],[123,280,73,0.015462069989360814],[123,280,74,0.017858126530311432],[123,280,75,0.02039006225600173],[123,280,76,0.020084774974338852],[123,280,77,0.017431425969843956],[123,280,78,0.014803572859288221],[123,280,79,0.012255191758813871],[123,281,64,0.004628141656034276],[123,281,65,0.004792941969186635],[123,281,66,0.00514012316593928],[123,281,67,0.005698253024423867],[123,281,68,0.0065050329433389],[123,281,69,0.007594038458960674],[123,281,70,0.008978135251455618],[123,281,71,0.010652261066821963],[123,281,72,0.012596442057291662],[123,281,73,0.014778633467892708],[123,281,74,0.01715738117237593],[123,281,75,0.019684300889686146],[123,281,76,0.02079143967879831],[123,281,77,0.018118476853672377],[123,281,78,0.015460065606650345],[123,281,79,0.01287130479474104],[123,282,64,0.004820419338352605],[123,282,65,0.004942530147095801],[123,282,66,0.005239877447913502],[123,282,67,0.005739077925854853],[123,282,68,0.006479476007213062],[123,282,69,0.007498425387997615],[123,282,70,0.008812006547506317],[123,282,71,0.010417802667243164],[123,282,72,0.01229796712692828],[123,282,73,0.01442211269133499],[123,282,74,0.016750018837282582],[123,282,75,0.019234154003709602],[123,282,76,0.021282663834552292],[123,282,77,0.01863453897276719],[123,282,78,0.015992242873287224],[123,282,79,0.013411171609744919],[123,283,64,0.00542268043379393],[123,283,65,0.005504364093034229],[123,283,66,0.005752284992538767],[123,283,67,0.006191076811780769],[123,283,68,0.0068610541935170705],[123,283,69,0.007802367278432715],[123,283,70,0.009033614464235958],[123,283,71,0.010554598073785441],[123,283,72,0.012349415658189054],[123,283,73,0.014389370670382772],[123,283,74,0.016635698938824106],[123,283,75,0.01904210770922305],[123,283,76,0.021553199733960495],[123,283,77,0.018971613158807056],[123,283,78,0.016389455661232233],[123,283,79,0.013861634357172877],[123,284,64,0.006401541082769115],[123,284,65,0.006445695625742196],[123,284,66,0.006645541858792975],[123,284,67,0.007023766297183409],[123,284,68,0.0076210117411448725],[123,284,69,0.008479242347112984],[123,284,70,0.00961886330866852],[123,284,71,0.011041443887147614],[123,284,72,0.012732806666295563],[123,284,73,0.014665934201534992],[123,284,74,0.016803689506158903],[123,284,75,0.019101347158813783],[123,284,76,0.02150893216548886],[123,284,77,0.019128452064911358],[123,284,78,0.0166463912473933],[123,284,79,0.014213395318948576],[123,285,64,0.007709584065776467],[123,285,65,0.007719588137514809],[123,285,66,0.007873550512930122],[123,285,67,0.008192306347012594],[123,285,68,0.008716239072164667],[123,285,69,0.00948818457059953],[123,285,70,0.01052965986855808],[123,285,71,0.011843543381488596],[123,285,72,0.013417138741946019],[123,285,73,0.015225054385833802],[123,285,74,0.017231895381270308],[123,285,75,0.01939476432929349],[123,285,76,0.021452622166855506],[123,285,77,0.019111555924921805],[123,285,78,0.01676405220413826],[123,285,79,0.014461967579889034],[123,286,64,0.009284865572408738],[123,286,65,0.009264380787367498],[123,286,66,0.009375336900497879],[123,286,67,0.009636861436953047],[123,286,68,0.010088570560467825],[123,286,69,0.01077331546591963],[123,286,70,0.01171308078086641],[123,286,71,0.012911614457303745],[123,286,72,0.014357446313572563],[123,286,73,0.01602672101693423],[123,286,74,0.0178858420579407],[123,286,75,0.01989392361472844],[123,286,76,0.021115459975921055],[123,286,77,0.018936205043203633],[123,286,78,0.016750768921593977],[123,286,79,0.014608655699333374],[123,287,64,0.011050373232506861],[123,287,65,0.011003103364704541],[123,287,66,0.011074417958798734],[123,287,67,0.011281912042340915],[123,287,68,0.011664032584489002],[123,287,69,0.012262926276960372],[123,287,70,0.01310049067463784],[123,287,71,0.01418094904747455],[123,287,72,0.015493808396704861],[123,287,73,0.01701663087387762],[123,287,74,0.01871761523970863],[123,287,75,0.02055798534813698],[123,287,76,0.020627631383527016],[123,287,77,0.01862752881932278],[123,287,78,0.01662324540022932],[123,287,79,0.014661566115001893],[123,288,64,0.01291343513556615],[123,288,65,0.012842841564676296],[123,288,66,0.012878119329809415],[123,288,67,0.013035516239667082],[123,288,68,0.013352041678166771],[123,288,69,0.013868610414222252],[123,288,70,0.01460661097213193],[123,288,71,0.015570423898114654],[123,288,72,0.016750309790681237],[123,288,73,0.018125109917689702],[123,288,74,0.01966475615460616],[123,288,75,0.021332587327766342],[123,288,76,0.020034693013005627],[123,288,77,0.018221611158245617],[123,288,78,0.016407638129469704],[123,288,79,0.014636647061401333],[123,289,64,0.014765081456546297],[123,289,65,0.014674054442687146],[123,289,66,0.01467684519714987],[123,289,67,0.014788523505354527],[123,289,68,0.015044555017261572],[123,289,69,0.015484348509244919],[123,289,70,0.016128541789651264],[123,289,71,0.016981465189574302],[123,289,72,0.018033957147120628],[123,289,73,0.01926599170492389],[123,289,74,0.02064911475564214],[123,289,75,0.02098604000497239],[123,289,76,0.019395677598471],[123,289,77,0.017766631113259247],[123,289,78,0.016140667350669134],[123,289,79,0.01455875780280367],[123,290,64,0.01648924460245864],[123,290,65,0.016380329168307294],[123,290,66,0.016354393622536455],[123,290,67,0.016425439975136763],[123,290,68,0.01662741820964595],[123,290,69,0.016998195244057043],[123,290,70,0.017557583202514503],[123,290,71,0.018309753386220685],[123,290,72,0.019245984256186743],[123,290,73,0.020347220661220158],[123,290,74,0.02155854196371028],[123,290,75,0.020202823428132437],[123,290,76,0.01877643056839971],[123,290,77,0.01731807967868835],[123,290,78,0.015866953853046623],[123,290,79,0.014461328474960204],[123,291,64,0.017997207401694033],[123,291,65,0.01787422963450088],[123,291,66,0.017825176602358904],[123,291,67,0.017862989495673606],[123,291,68,0.018020105983075414],[123,291,69,0.018332838263168696],[123,291,70,0.01882009150451312],[123,291,71,0.019485736737214612],[123,291,72,0.02032130084465578],[123,291,73,0.02130846688944716],[123,291,74,0.020722001466918924],[123,291,75,0.01950297960673132],[123,291,76,0.01822213117148866],[123,291,77,0.01691607960390667],[123,291,78,0.015621730641067992],[123,291,79,0.014374960431973203],[123,292,64,0.019220548263382868],[123,292,65,0.01908875771520262],[123,292,66,0.01902409912617411],[123,292,67,0.019038382455481607],[123,292,68,0.019162502488432636],[123,292,69,0.01943119569716035],[123,292,70,0.019862350801702504],[123,292,71,0.020459351880065375],[123,292,72,0.021213723729166297],[123,292,73,0.02104310677047675],[123,292,74,0.020025054548324255],[123,292,75,0.018920457121991956],[123,292,76,0.017762677063676964],[123,292,77,0.016586630986792694],[123,292,78,0.015427327235327274],[123,292,79,0.014318606821773322],[123,293,64,0.0201065623865078],[123,293,65,0.01997237118677843],[123,293,66,0.01990115680281826],[123,293,67,0.019903483118525342],[123,293,68,0.02000866213164528],[123,293,69,0.020249841865320455],[123,293,70,0.02064377390688367],[123,293,71,0.021193140521551267],[123,293,72,0.021266319590510584],[123,293,73,0.020433685676473905],[123,293,74,0.019494554674873217],[123,293,75,0.01847833183121987],[123,293,76,0.01741736542294399],[123,293,77,0.016345319949966346],[123,293,78,0.015295753177014277],[123,293,79,0.014300898112855098],[123,294,64,0.020618105913897615],[123,294,65,0.020488818222085228],[123,294,66,0.020421258212263305],[123,294,67,0.020424611267755282],[123,294,68,0.020526576599716847],[123,294,69,0.02075872182481911],[123,294,70,0.021136543654934007],[123,294,71,0.021495895880464983],[123,294,72,0.020826926446743794],[123,294,73,0.020035750128469042],[123,294,74,0.01914701775288204],[123,294,75,0.01818987899803094],[123,294,76,0.01719617292549945],[123,294,77,0.016198823561559293],[123,294,78,0.015230441926675393],[123,294,79,0.014322135553625067],[123,295,64,0.020733487414669217],[123,295,65,0.02061702002807136],[123,295,66,0.02056409587817743],[123,295,67,0.020582392865708416],[123,295,68,0.02069799154428703],[123,295,69,0.02094091676694025],[123,295,70,0.021325307042578255],[123,295,71,0.021301911608040534],[123,295,72,0.020637884886755144],[123,295,73,0.01985867833577209],[123,295,74,0.018989434786605714],[123,295,75,0.018059566615278],[123,295,76,0.017100948337375056],[123,295,77,0.016146317804322477],[123,295,78,0.015227887377783831],[123,295,79,0.014376166093515023],[123,296,64,0.020446407375488],[123,296,65,0.020351002298265138],[123,296,66,0.020324066520230197],[123,296,67,0.020371660379170774],[123,296,68,0.02051827356043036],[123,296,69,0.02079246089282321],[123,296,70,0.021206922824512794],[123,296,71,0.021388074048041064],[123,296,72,0.02070023075999813],[123,296,73,0.019902170023267787],[123,296,74,0.01902001254746087],[123,296,75,0.018083969227544603],[123,296,76,0.017126517008937782],[123,296,77,0.01618078786160776],[123,296,78,0.015279172236332546],[123,296,79,0.014452138002664497],[123,297,64,0.019765946367510414],[123,297,65,0.019699876136845405],[123,297,66,0.019710241229271924],[123,297,67,0.01980140339708523],[123,297,68,0.019996328077530517],[123,297,69,0.020322210375704745],[123,297,70,0.020790263165961744],[123,297,71,0.021398151291444314],[123,297,72,0.021004834062822407],[123,297,73,0.020156767149110435],[123,297,74,0.0192288416557113],[123,297,75,0.018252601652137143],[123,297,76,0.017261696668812415],[123,297,77,0.016290240115700336],[123,297,78,0.015371387663330943],[123,297,79,0.014536136591792901],[123,298,64,0.018716602551021956],[123,298,65,0.018687869104950988],[123,298,66,0.01874638620111082],[123,298,67,0.018894770161411778],[123,298,68,0.019154568766338715],[123,298,69,0.019551764999135936],[123,298,70,0.020096069927677523],[123,298,71,0.020783429806803574],[123,298,72,0.02153273029770281],[123,298,73,0.020604307859011732],[123,298,74,0.01959849154521984],[123,298,75,0.01854867208161013],[123,298,76,0.017490224014344212],[123,298,77,0.01645881537210662],[123,298,78,0.015488943713327272],[123,298,79,0.014612699588534261],[123,299,64,0.017338379183922642],[123,299,65,0.01735440704278876],[123,299,66,0.017471034666021224],[123,299,67,0.017689120629801765],[123,299,68,0.018028939062007848],[123,299,69,0.01851544305132015],[123,299,70,0.01915686614331837],[123,299,71,0.019947319878495354],[123,299,72,0.020869688190488428],[123,299,73,0.021218313183453744],[123,299,74,0.02010453184281863],[123,299,75,0.018949754126916636],[123,299,76,0.01779159168801384],[123,299,77,0.016667802932727564],[123,299,78,0.015614770228955268],[123,299,79,0.014666211871111159],[123,300,64,0.015686922813760457],[123,300,65,0.015754247333352792],[123,300,66,0.01593761066173841],[123,300,67,0.016236131697112008],[123,300,68,0.016668986407346743],[123,300,69,0.01726031005491091],[123,300,70,0.018016923241345986],[123,300,71,0.018931035695203696],[123,300,72,0.019983261657833512],[123,300,73,0.02114540560406513],[123,300,74,0.020715979746829902],[123,300,75,0.019428377428202838],[123,300,76,0.01814179531308835],[123,300,77,0.016896555241367572],[123,300,78,0.01573140796905578],[123,300,79,0.014682179394867937],[123,301,64,0.013833712856384843],[123,301,65,0.013957664295575179],[123,301,66,0.014214605317919383],[123,301,67,0.014601955220330153],[123,301,68,0.015137989834109916],[123,301,69,0.015846261919646495],[123,301,70,0.016732284564386735],[123,301,71,0.01778635453525072],[123,301,72,0.01898670524594401],[123,301,73,0.020302421920922943],[123,301,74,0.02139567303406798],[123,301,75,0.01995253651988305],[123,301,76,0.018513990337113855],[123,301,77,0.01712330291663747],[123,301,78,0.01582198985608591],[123,301,79,0.014648382271838959],[123,302,64,0.011866303297965047],[123,302,65,0.012050687426959122],[123,302,66,0.01238580635032954],[123,302,67,0.012867429518844252],[123,302,68,0.013513141523241044],[123,302,69,0.014346163122469141],[123,302,70,0.015370845748749364],[123,302,71,0.01657562442620486],[123,302,72,0.017936321140260048],[123,302,73,0.019419201799629388],[123,302,74,0.020983783166139962],[123,302,75,0.02048611768772263],[123,302,76,0.018879058498439346],[123,302,77,0.017325870069854636],[123,302,78,0.015871112327180855],[123,302,79,0.014555907078113666],[123,303,64,0.009861520910807069],[123,303,65,0.010109038171658855],[123,303,66,0.010525151221028402],[123,303,67,0.011104037858636718],[123,303,68,0.011862801789957541],[123,303,69,0.012824583932957469],[123,303,70,0.013992747332136336],[123,303,71,0.01535396670296086],[123,303,72,0.01688169149562387],[123,303,73,0.018539353556170864],[123,303,74,0.020283315571353457],[123,303,75,0.020998428764471354],[123,303,76,0.01921296514837731],[123,303,77,0.017486880936927497],[123,303,78,0.01586794433099891],[123,303,79,0.01440024087077815],[123,304,64,0.007808812578448396],[123,304,65,0.008123541429003218],[123,304,66,0.008624743997949902],[123,304,67,0.009305114352335683],[123,304,68,0.010181491642377371],[123,304,69,0.011277166070276748],[123,304,70,0.012594666483803488],[123,304,71,0.014118994490385443],[123,304,72,0.01582125657178482],[123,304,73,0.017662031314852507],[123,304,74,0.019594467743316073],[123,304,75,0.021489288118443365],[123,304,76,0.0195151346842485],[123,304,77,0.017605452174088012],[123,304,78,0.015811364845917],[123,304,79,0.014180076132160248],[123,305,64,0.005697684316304947],[123,305,65,0.006085082329344176],[123,305,66,0.006676780064229362],[123,305,67,0.007464143573502301],[123,305,68,0.008463963271156894],[123,305,69,0.009699876747366496],[123,305,70,0.011173706862478552],[123,305,71,0.012868849213999485],[123,305,72,0.01475408263359468],[123,305,73,0.01678710474389434],[123,305,74,0.01891778834632075],[123,305,75,0.021091154939306203],[123,305,76,0.019784087001204285],[123,305,77,0.017679764917636353],[123,305,78,0.015699304312190885],[123,305,79,0.01389316207237452],[123,306,64,0.0035408434904267453],[123,306,65,0.00400705868812502],[123,306,66,0.0046951565315212895],[123,306,67,0.005595363372644359],[123,306,68,0.006724626226066357],[123,306,69,0.008107093930819369],[123,306,70,0.009743989737786951],[123,306,71,0.011617160637712422],[123,306,72,0.013693074452476903],[123,306,73,0.01592653131897453],[123,306,74,0.01826408511218753],[123,306,75,0.020647170904584868],[123,306,76,0.02001187459201961],[123,306,77,0.017703441054235797],[123,306,78,0.01552701524445943],[123,306,79,0.013536398805033465],[123,307,64,0.0013688882233558498],[123,307,65,0.0019201732094504876],[123,307,66,0.0027104010739845193],[123,307,67,0.003728865686470181],[123,307,68,0.004992856491876598],[123,307,69,0.006527160092940021],[123,307,70,0.008332487435878921],[123,307,71,0.010389192319296192],[123,307,72,0.012661461292133464],[123,307,73,0.015101206675945007],[123,307,74,0.017651658025101116],[123,307,75,0.02025064791251661],[123,307,76,0.020186052148742643],[123,307,77,0.017667110871780314],[123,307,78,0.015288244112121051],[123,307,79,0.01310662572874348],[123,308,64,-7.745866815392361E-4],[123,308,65,-1.3236185767382126E-4],[123,308,66,7.650061348961892E-4],[123,308,67,0.001906092610707183],[123,308,68,0.003308687865326639],[123,308,69,0.004998302718390425],[123,308,70,0.0069752057208023735],[123,308,71,0.009218316256454799],[123,308,72,0.011689590786539382],[123,308,73,0.014338100397354423],[123,308,74,0.017103794727122628],[123,308,75,0.019920947945734974],[123,308,76,0.02029143099318289],[123,308,77,0.0175597885673241],[123,308,78,0.014976233258311945],[123,308,79,0.01260126092332727],[123,309,64,-0.0028374664094970715],[123,309,65,-0.0020992068183314314],[123,309,66,-0.0010908307985355004],[123,309,67,1.7572833499333106E-4],[123,309,68,0.0017188861345170583],[123,309,69,0.0035649219702501107],[123,309,70,0.005713715421730583],[123,309,71,0.008142816942069744],[123,309,72,0.010812030841970088],[123,309,73,0.013667677283875282],[123,309,74,0.016646528122394106],[123,309,75,0.019679412050698123],[123,309,76,0.020311618477160617],[123,309,77,0.017370055797291],[123,309,78,0.014584553076371638],[123,309,79,0.012018791802744797],[123,310,64,-0.004763174973602098],[123,310,65,-0.003924863040076102],[123,310,66,-0.0028030605825895482],[123,310,67,-0.0014100128647469116],[123,310,68,2.734061843946678E-4],[123,310,69,0.0022742455704100025],[123,310,70,0.004592033296092574],[123,310,71,0.007203024758716191],[123,310,72,0.01006497943921174],[123,310,73,0.013121603939889825],[123,310,74,0.016306655970354415],[123,310,75,0.019547704530445995],[123,310,76,0.020230342613575324],[123,310,77,0.01708705354279363],[123,310,78,0.014107764719157258],[123,310,79,0.011359117293763326],[123,311,64,-0.006494316227291913],[123,311,65,-0.005553227934767254],[123,311,66,-0.004317229587046364],[123,311,67,-0.0027987027486508745],[123,311,68,-9.777681910531231E-4],[123,311,69,0.0011733506328745842],[123,311,70,0.003653851830911685],[123,311,71,0.006438778384983781],[123,311,72,0.009483981985923793],[123,311,73,0.012730740308466802],[123,311,74,0.016110022096757406],[123,311,75,0.019546395105665665],[123,311,76,0.02003256229664941],[123,311,77,0.01670128262930737],[123,311,78,0.013541913653428718],[123,311,79,0.010623741818390658],[123,312,64,-0.007975897442075183],[123,312,65,-0.0069307368489572715],[123,312,66,-0.005581521119621391],[123,312,67,-0.003940619852036567],[123,312,68,-0.0019874022955081515],[123,312,69,3.0655190782513816E-4],[123,312,70,0.0029401174311577487],[123,312,71,0.005887215661288421],[123,312,72,0.009101955674015264],[123,312,73,0.012523415626292405],[123,312,74,0.01608005871734265],[123,312,75,0.019693778571641403],[123,312,76,0.019705363542976945],[123,312,77,0.0162052132840599],[123,312,78,0.012884854387745347],[123,312,79,0.009815821347970363],[123,313,64,-0.009158136188977154],[123,313,65,-0.008009092627217445],[123,313,66,-0.00654939188684493],[123,313,67,-0.004791275632737327],[123,313,68,-0.002713407148443969],[123,313,69,-2.868443484274246E-4],[123,313,70,0.0024869562268832507],[123,313,71,0.005580892172796621],[123,313,72,0.008947520134776362],[123,313,73,0.012523988135569177],[123,313,74,0.016236589264279858],[123,313,75,0.020004931402624233],[123,313,76,0.01923864223286612],[123,313,77,0.015593704135034235],[123,313,78,0.012136406696708247],[123,313,79,0.008940061766543621],[123,314,64,-0.009998851563620325],[123,314,65,-0.00874758389714056],[123,314,66,-0.007181804539281747],[123,314,67,-0.005313547064104851],[123,314,68,-0.003120855731923042],[123,314,69,-5.744218645547876E-4],[123,314,70,0.0023239465528202773],[123,314,71,0.005546226654106401],[123,314,72,0.009043633557510014],[123,314,73,0.012751687789434057],[123,314,74,0.016594891031796698],[123,314,75,0.020491004708065863],[123,314,76,0.018625573852399734],[123,314,77,0.01486423105105986],[123,314,78,0.011298343635683288],[123,314,79,0.008002469729441276],[123,315,64,-0.010465441047492752],[123,315,65,-0.009114993360698488],[123,315,66,-0.007449057567154614],[123,315,67,-0.005479416910531208],[123,315,68,-0.003183620062882053],[123,315,69,-5.321723518948329E-4],[123,315,70,0.002472737017672829],[123,315,71,0.005802272206964009],[123,315,72,0.009406533347873315],[123,315,73,0.013219741122229024],[123,315,74,0.01716501691668936],[123,315,75,0.02115875292884016],[123,315,76,0.01786287072899928],[123,315,77,0.01401692619157407],[123,315,78,0.010374211586965339],[123,315,79,0.0070099561288089595],[123,316,64,-0.01053644449796519],[123,316,65,-0.009091097560369533],[123,316,66,-0.007332213979242934],[123,316,67,-0.0052713230716063385],[123,316,68,-0.0028856304187157267],[123,316,69,-1.456512660671616E-4],[123,316,70,0.0029460089885185114],[123,316,71,0.006359812251312656],[123,316,72,0.010044980352633074],[123,316,73,0.013934777428351114],[123,316,74,0.017951375523876885],[123,316,75,0.02097607273574167],[123,316,76,0.016950827215235578],[123,316,77,0.013054427575603225],[123,316,78,0.00936898249916786],[123,316,79,0.005969792179489228],[123,317,64,-0.010202696902806183],[123,317,65,-0.008667759715896811],[123,317,66,-0.006824130309413555],[123,317,67,-0.004683118476367851],[123,317,68,-0.0022217581227992043],[123,317,69,5.89227348377354E-4],[123,317,70,0.0037467822717384045],[123,317,71,0.007220780104353926],[123,317,72,0.01095980567082891],[123,317,73,0.014896515405960686],[123,317,74,0.018952568939131303],[123,317,75,0.019941559136770527],[123,317,76,0.01589315320524734],[123,317,77,0.011981539390581908],[123,317,78,0.008288538374843344],[123,317,79,0.004888918014927937],[123,318,64,-0.009468071616807648],[123,318,65,-0.007849617294299631],[123,318,66,-0.00593008754705006],[123,318,67,-0.003720643046420203],[123,318,68,-0.0011983233193506792],[123,318,69,0.0016657556032301619],[123,318,70,0.0048680627791897885],[123,318,71,0.008378001105288416],[123,318,72,0.012143759110419783],[123,318,73,0.016097729477304073],[123,318,74,0.020161487543133023],[123,318,75,0.018733719886044883],[123,318,76,0.014696596263297423],[123,318,77,0.010804703140877238],[123,318,78,0.007138987925213585],[123,318,79,0.0037731035319473966],[123,319,64,-0.00834981581384853],[123,319,65,-0.0066543659771211875],[123,319,66,-0.004668025575408131],[123,319,67,-0.0024019092216141227],[123,319,68,1.667708704540768E-4],[123,319,69,0.0030663548245987446],[123,319,70,0.0062928310306404256],[123,319,71,0.009815256278456492],[123,319,72,0.013581658437580253],[123,319,73,0.01752449509876923],[123,319,74,0.021426338058329292],[123,319,75,0.017363500180116263],[123,319,76,0.013370352502456669],[123,319,77,0.009531279581266226],[123,319,78,0.005925815143554864],[123,319,79,0.002625961043646913],[124,-64,64,-0.002051183938012983],[124,-64,65,-0.0026804978375446022],[124,-64,66,-0.0032126143791344733],[124,-64,67,-0.0036522099739848502],[124,-64,68,-0.003987760177186594],[124,-64,69,-0.004194555934232539],[124,-64,70,-0.0042504385607310515],[124,-64,71,-0.004136896320899733],[124,-64,72,-0.003839685835296991],[124,-64,73,-0.003349324772440183],[124,-64,74,-0.0026614523827814584],[124,-64,75,-0.001777054576875919],[124,-64,76,-7.025504122131304E-4],[124,-64,77,5.50262966845407E-4],[124,-64,78,0.001964409696368314],[124,-64,79,0.0035180814194777565],[124,-63,64,-0.001601516190930283],[124,-63,65,-0.0022151293995505837],[124,-63,66,-0.0027278935811813616],[124,-63,67,-0.0031444164957219536],[124,-63,68,-0.0034539896303625605],[124,-63,69,-0.0036332314679756446],[124,-63,70,-0.0036612569718775627],[124,-63,71,-0.003520745464193963],[124,-63,72,-0.003198546333902273],[124,-63,73,-0.0026861575504005036],[124,-63,74,-0.0019800736508435125],[124,-63,75,-0.001082000012224755],[124,-63,76,1.0696194325333382E-6],[124,-63,77,0.0012569151923014436],[124,-63,78,0.0026682946611673555],[124,-63,79,0.004213293000583263],[124,-62,64,-9.82494001392598E-4],[124,-62,65,-0.0015820770724028184],[124,-62,66,-0.002078738687424642],[124,-62,67,-0.0024766642770258887],[124,-62,68,-0.0027660040332561694],[124,-62,69,-0.002925013862510936],[124,-62,70,-0.0029342896042769276],[124,-62,71,-0.0027778082127405926],[124,-62,72,-0.002443528270852239],[124,-62,73,-0.0019238647611445182],[124,-62,74,-0.0012160348590461107],[124,-62,75,-3.2227165568462997E-4],[124,-62,76,7.500971234359592E-4],[124,-62,77,0.0019887081618794804],[124,-62,78,0.003376361926054286],[124,-62,79,0.004891364735744393],[124,-61,64,-2.0371576050295253E-4],[124,-61,65,-7.911396136086573E-4],[124,-61,66,-0.0012751991198973285],[124,-61,67,-0.0016593354402161778],[124,-61,68,-0.0019345861431562241],[124,-61,69,-0.0020811109366415765],[124,-61,70,-0.002081155655152216],[124,-61,71,-0.0019200692544985992],[124,-61,72,-0.0015869093657887227],[124,-61,73,-0.0010749234803953938],[124,-61,74,-3.819026171298516E-4],[124,-61,75,4.895955381697407E-4],[124,-61,76,0.0015321568736874154],[124,-61,77,0.002733557153786846],[124,-61,78,0.004076946876365173],[124,-61,79,0.005541176981455677],[124,-60,64,7.213983550237174E-4],[124,-60,65,1.4411840077631813E-4],[124,-60,66,-3.309803891679636E-4],[124,-60,67,-7.063200904001274E-4],[124,-60,68,-9.73843971584343E-4],[124,-60,69,-0.0011158334152361906],[124,-60,70,-0.001116312590150444],[124,-60,71,-9.620442385993176E-4],[124,-60,72,-6.43149940045075E-4],[124,-60,73,-1.5360730267835617E-4],[124,-60,74,5.083789919381135E-4],[124,-60,75,0.0013401352297482234],[124,-60,76,0.002334408575702127],[124,-60,77,0.0034793914718843177],[124,-60,78,0.004758882955646142],[124,-60,79,0.0061525891370794545],[124,-59,64,0.0017762469001240749],[124,-59,65,0.0012070148244913534],[124,-59,66,7.372151731029187E-4],[124,-59,67,3.6565587796850117E-4],[124,-59,68,9.94743081114137E-5],[124,-59,69,-4.5898948147130355E-5],[124,-59,70,-5.635297503889967E-5],[124,-59,71,7.992548281735244E-5],[124,-59,72,3.718082285693934E-4],[124,-59,73,8.247036663488695E-4],[124,-59,74,0.0014401597105249953],[124,-59,75,0.0022155944293253418],[124,-59,76,0.003144157151285199],[124,-59,77,0.0042147225977446235],[124,-59,78,0.005412020425995582],[124,-59,79,0.006716902377808176],[124,-58,64,0.002941830301154379],[124,-58,65,0.002378540321369452],[124,-58,66,0.001910488852739493],[124,-58,67,0.001537842653330669],[124,-58,68,0.0012668029063294245],[124,-58,69,0.0011103981023070793],[124,-58,70,0.0010808285127561145],[124,-58,71,0.0011885022057901533],[124,-58,72,0.0014413600366123475],[124,-58,73,0.0018443213076465698],[124,-58,74,0.002398853054384234],[124,-58,75,0.0031026657842278846],[124,-58,76,0.0039495383497468875],[124,-58,77,0.004929274476632203],[124,-58,78,0.0060277932922212524],[124,-58,79,0.007227356014861171],[124,-57,64,0.004197675868159887],[124,-57,65,0.003638290069549313],[124,-57,66,0.0031686863176809614],[124,-57,67,0.002790417193951639],[124,-57,68,0.002508717549722828],[124,-57,69,0.002334150254918889],[124,-57,70,0.002276997077331679],[124,-57,71,0.0023463045583268405],[124,-57,72,0.0025491714869158794],[124,-57,73,0.002890155889208781],[124,-57,74,0.003370804441277405],[124,-57,75,0.003989307088861528],[124,-57,76,0.0047402795157316276],[124,-57,77,0.005614675945692597],[124,-57,78,0.006599834593119415],[124,-57,79,0.007679657895642262],[124,-56,64,0.005519840780693432],[124,-56,65,0.004962404675612776],[124,-56,66,0.004488263304800774],[124,-56,67,0.00410026903455215],[124,-56,68,0.0038026412241745516],[124,-56,69,0.003603463352467308],[124,-56,70,0.003511126790139548],[124,-56,71,0.0035333820892174],[124,-56,72,0.0036765842185536536],[124,-56,73,0.0039450561451952835],[124,-56,74,0.004340573626386333],[124,-56,75,0.004861973956748359],[124,-56,76,0.0055048912779618545],[124,-56,77,0.006261620905850073],[124,-56,78,0.007121114964062835],[124,-56,79,0.008069111436634057],[124,-55,64,0.006863977488928196],[124,-55,65,0.006306222402656896],[124,-55,66,0.00582441981922362],[124,-55,67,0.005422581061484607],[124,-55,68,0.005103881512763899],[124,-55,69,0.004873981528864217],[124,-55,70,0.004739463612040931],[124,-55,71,0.0047068844877863],[124,-55,72,0.004781974720264782],[124,-55,73,0.004968955507104705],[124,-55,74,0.005269975479057981],[124,-55,75,0.00568467021418237],[124,-55,76,0.006209847043368679],[124,-55,77,0.006839297575980657],[124,-55,78,0.007563740212989007],[124,-55,79,0.008370894742304142],[124,-54,64,0.008182607606379597],[124,-54,65,0.00762188108147674],[124,-54,66,0.0071290675247862876],[124,-54,67,0.006709174142496765],[124,-54,68,0.006364341587632656],[124,-54,69,0.006097936837174734],[124,-54,70,0.005914871221173239],[124,-54,71,0.00582064863272083],[124,-54,72,0.005820517350876478],[124,-54,73,0.0059187379222537485],[124,-54,74,0.006117969891266427],[124,-54,75,0.0064187800573661715],[124,-54,76,0.006819274808963043],[124,-54,77,0.00731485893981474],[124,-54,78,0.007898123196364251],[124,-54,79,0.008558862635817866],[124,-53,64,0.009436401824608365],[124,-53,65,0.008869828994667548],[124,-53,66,0.008362613178017106],[124,-53,67,0.007920575844381748],[124,-53,68,0.007544865384508312],[124,-53,69,0.007236749103606295],[124,-53,70,0.006999652270366202],[124,-53,71,0.006838197921993272],[124,-53,72,0.006757309946655115],[124,-53,73,0.006761431188093398],[124,-53,74,0.0068538593301991375],[124,-53,75,0.0070362032115352],[124,-53,76,0.0073079620949674075],[124,-53,77,0.007666230277434047],[124,-53,78,0.008105529271273084],[124,-53,79,0.008617769623433797],[124,-52,64,0.010594389408532532],[124,-52,65,0.010019026321388015],[124,-52,66,0.009494148592458259],[124,-52,67,0.009026196348513685],[124,-52,68,0.00861539702586031],[124,-52,69,0.008261165992981214],[124,-52,70,0.007965665948298676],[124,-52,71,0.007732834045873964],[124,-52,72,0.007567436516736404],[124,-52,73,0.007474237393724893],[124,-52,74,0.0074572840681790325],[124,-52,75,0.007519312302328441],[124,-52,76,0.007661273199712632],[124,-52,77,0.007881984499090956],[124,-52,78,0.008177908406875416],[124,-52,79,0.008543058021113607],[124,-51,64,0.011359543560229762],[124,-51,65,0.01104720343577995],[124,-51,66,0.010501695177054947],[124,-51,67,0.010004556237224],[124,-51,68,0.009555189075153495],[124,-51,69,0.009151448705979668],[124,-51,70,0.008794487978746643],[124,-51,71,0.00848776815998869],[124,-51,72,0.008236066589731507],[124,-51,73,0.008044597669000463],[124,-51,74,0.007918249879690096],[124,-51,75,0.007860941435834466],[124,-51,76,0.007875097046464446],[124,-51,77,0.007961248135991871],[124,-51,78,0.008117758720199377],[124,-51,79,0.008340678976395097],[124,-50,64,0.01042191346015182],[124,-50,65,0.011078158567197982],[124,-50,66,0.011372557140858677],[124,-50,67,0.010843621620788455],[124,-50,68,0.01035311643698396],[124,-50,69,0.009897661373342482],[124,-50,70,0.009477672223205223],[124,-50,71,0.009096351524146756],[124,-50,72,0.008758651935861842],[124,-50,73,0.00847035234804398],[124,-50,74,0.00823724939271476],[124,-50,75,0.00806446693555351],[124,-50,76,0.007955886003835316],[124,-50,77,0.007913697476238761],[124,-50,78,0.0079380797137879],[124,-50,79,0.008027003153485479],[124,-49,64,0.009628487596331815],[124,-49,65,0.01029922511248009],[124,-49,66,0.010944885711801916],[124,-49,67,0.01153723470143859],[124,-49,68,0.011004697863771796],[124,-49,69,0.010497297917377845],[124,-49,70,0.010014985381577328],[124,-49,71,0.00956090771286609],[124,-49,72,0.009140332949357814],[124,-49,73,0.008759685596988018],[124,-49,74,0.008425697403813992],[124,-49,75,0.008144675569950178],[124,-49,76,0.007921890824900007],[124,-49,77,0.007761087672891497],[124,-49,78,0.0076641189620318345],[124,-49,79,0.007630706776590746],[124,-48,64,0.009001276169921404],[124,-48,65,0.009685564263041605],[124,-48,66,0.01035238386848453],[124,-48,67,0.010994861842267448],[124,-48,68,0.011501356709033175],[124,-48,69,0.010946061687313711],[124,-48,70,0.010406696090249799],[124,-48,71,0.009886488836678033],[124,-48,72,0.009391086661922078],[124,-48,73,0.008927558389530656],[124,-48,74,0.008503513335533284],[124,-48,75,0.008126336354389752],[124,-48,76,0.007802541920792444],[124,-48,77,0.007537249511217696],[124,-48,78,0.007333782405330623],[124,-48,79,0.007193391871933573],[124,-47,64,0.008557688572868682],[124,-47,65,0.009251824352943104],[124,-47,66,0.009934926068473966],[124,-47,67,0.01060056641864684],[124,-47,68,0.01125149423908714],[124,-47,69,0.011243743787832217],[124,-47,70,0.010656876561578814],[124,-47,71,0.010081591305868618],[124,-47,72,0.009523899137088706],[124,-47,73,0.008991431391405243],[124,-47,74,0.008492537328831021],[124,-47,75,0.008035497064836465],[124,-47,76,0.0076278520667972],[124,-47,77,0.0072758554233631895],[124,-47,78,0.006984043952347254],[124,-47,79,0.006754934058843763],[124,-46,64,0.00830574048407995],[124,-46,65,0.00900379798987687],[124,-46,66,0.009695812707593631],[124,-46,67,0.010376034224157482],[124,-46,68,0.011047574294466182],[124,-46,69,0.01139597190011337],[124,-46,70,0.010774478715546239],[124,-46,71,0.010158566546796829],[124,-46,72,0.009554532077887614],[124,-46,73,0.008970422418931027],[124,-46,74,0.008415126214280763],[124,-46,75,0.007897577647032758],[124,-46,76,0.00742607559610427],[124,-46,77,0.007007720074554724],[124,-46,78,0.006647967937385351],[124,-46,79,0.006350309695603764],[124,-45,64,0.0082450598948359],[124,-45,65,0.008939389770359069],[124,-45,66,0.009631039765750797],[124,-45,67,0.010315165236109087],[124,-45,68,0.010995222314029652],[124,-45,69,0.011413462448383057],[124,-45,70,0.010772657447531479],[124,-45,71,0.010133020542316249],[124,-45,72,0.009501002697873078],[124,-45,73,0.00888486941916753],[124,-45,74,0.008293800997784546],[124,-45,75,0.007737102178122968],[124,-45,76,0.0072235233912723105],[124,-45,77,0.0067606955798961855],[124,-45,78,0.006354680500228669],[124,-45,79,0.006009638239585524],[124,-44,64,0.008367870173485127],[124,-44,65,0.009049562259826225],[124,-44,66,0.009730201167177916],[124,-44,67,0.01040606873881579],[124,-44,68,0.011080971411896252],[124,-44,69,0.011311289030169737],[124,-44,70,0.010668108841949709],[124,-44,71,0.010023227236766696],[124,-44,72,0.009383076699134393],[124,-44,73,0.008755906193867328],[124,-44,74,0.008150907175491209],[124,-44,75,0.0075774442292338385],[124,-44,76,0.007044392356283872],[124,-44,77,0.006559582794964431],[124,-44,78,0.006129359136938826],[124,-44,79,0.005758245355246938],[124,-43,64,0.008659953154151351],[124,-43,65,0.009319263092402061],[124,-43,66,0.009977373326257534],[124,-43,67,0.010631898799895125],[124,-43,68,0.011287024740568245],[124,-43,69,0.011108164920456782],[124,-43,70,0.01048042133807976],[124,-43,71,0.009849554013820592],[124,-43,72,0.009221772769044416],[124,-43,73,0.008605049479379515],[124,-43,74,0.008008286682780315],[124,-43,75,0.007440584614456472],[124,-43,76,0.006910608519015517],[124,-43,77,0.006426057974620146],[124,-43,78,0.0059932398378697615],[124,-43,79,0.005616746283079544],[124,-42,64,0.009101595234945649],[124,-42,65,0.009728336047955323],[124,-42,66,0.010351984592593228],[124,-42,67,0.010971675671997732],[124,-42,68,0.011413555615946997],[124,-42,69,0.01082573745883615],[124,-42,70,0.010231437857104399],[124,-42,71,0.009633897464041221],[124,-42,72,0.009038877024238664],[124,-42,73,0.008453796021940366],[124,-42,74,0.007886960322379883],[124,-42,75,0.0073468805670872436],[124,-42,76,0.0068416829866744895],[124,-42,77,0.0063786141863658285],[124,-42,78,0.005963641341841525],[124,-42,79,0.005601149117294411],[124,-41,64,0.009668519462408445],[124,-41,65,0.010252418957747223],[124,-41,66,0.010829672303880378],[124,-41,67,0.011401095669536765],[124,-41,68,0.011026145288832327],[124,-41,69,0.010487892134845571],[124,-41,70,0.009944626908594111],[124,-41,71,0.009399127673388111],[124,-41,72,0.008856465852112591],[124,-41,73,0.008323228319352581],[124,-41,74,0.007806819560383562],[124,-41,75,0.007314845442100228],[124,-41,76,0.00685458005141694],[124,-41,77,0.006432516957704905],[124,-41,78,0.006054006148630024],[124,-41,79,0.005722977774650283],[124,-40,64,0.010332806560425487],[124,-40,65,0.01086383127427619],[124,-40,66,0.011383130141074043],[124,-40,67,0.011064628402084454],[124,-40,68,0.010593235345798592],[124,-40,69,0.010120064200085063],[124,-40,70,0.009644460710535853],[124,-40,71,0.009168539284205251],[124,-40,72,0.008696435627048808],[124,-40,73,0.00823362773591458],[124,-40,74,0.007786326626066768],[124,-40,75,0.007360938104510129],[124,-40,76,0.00696359681974449],[124,-40,77,0.006599773730973397],[124,-40,78,0.006273958045262531],[124,-40,79,0.00598941457085125],[124,-39,64,0.011063807833419002],[124,-39,65,0.011355200194286206],[124,-39,66,0.010940418392041245],[124,-39,67,0.010538259650434362],[124,-39,68,0.010142341819844813],[124,-39,69,0.009748555656653382],[124,-39,70,0.00935579837970646],[124,-39,71,0.008965307606578937],[124,-39,72,0.008580037810718703],[124,-39,73,0.008204093737636607],[124,-39,74,0.007842221901922545],[124,-39,75,0.007499361226413487],[124,-39,76,0.007180253817157908],[124,-39,77,0.00688911679371226],[124,-39,78,0.0066293760146414055],[124,-39,79,0.006403462453841487],[124,-38,64,0.011029997468726061],[124,-38,65,0.010667490040145947],[124,-38,66,0.01032970514123006],[124,-38,67,0.010010116097336607],[124,-38,68,0.009701556691466778],[124,-38,69,0.009399855500067642],[124,-38,70,0.009103272278834083],[124,-38,71,0.008811948090433525],[124,-38,72,0.008527417983175209],[124,-38,73,0.008252168039242608],[124,-38,74,0.007989237644147081],[124,-38,75,0.007741867780887653],[124,-38,76,0.007513196098658898],[124,-38,77,0.0073059994474574215],[124,-38,78,0.007122484507278446],[124,-38,79,0.006964127074520252],[124,-37,64,0.01027491583914747],[124,-37,65,0.009989571392382973],[124,-37,66,0.009737373726817367],[124,-37,67,0.009509809276124789],[124,-37,68,0.009298810565040895],[124,-37,69,0.009099961131345976],[124,-37,70,0.008910675643767822],[124,-37,71,0.008729777507492176],[124,-37,72,0.008557157394162025],[124,-37,73,0.008393462503240093],[124,-37,74,0.008239817130863605],[124,-37,75,0.00809757508845802],[124,-37,76,0.007968104475816877],[124,-37,77,0.007852605272525652],[124,-37,78,0.007751960167979943],[124,-37,79,0.007666619004345668],[124,-36,64,0.00955528041964599],[124,-36,65,0.009353596459719626],[124,-36,66,0.009194098327649761],[124,-36,67,0.009066308163660615],[124,-36,68,0.008961134410404126],[124,-36,69,0.008873698897505871],[124,-36,70,0.008800349657917365],[124,-36,71,0.008738375237359363],[124,-36,72,0.008685815672151622],[124,-36,73,0.008641289684425133],[124,-36,74,0.008603838395588028],[124,-36,75,0.008572785841338072],[124,-36,76,0.008547616551985928],[124,-36,77,0.008527870440594238],[124,-36,78,0.008513055218694224],[124,-36,79,0.008502576535392388],[124,-35,64,0.008903552601578288],[124,-35,65,0.008790653923255145],[124,-35,66,0.00872931114452356],[124,-35,67,0.008707146237840864],[124,-35,68,0.008713918196676055],[124,-35,69,0.008744041772540411],[124,-35,70,0.008792568192682829],[124,-35,71,0.008855043103593016],[124,-35,72,0.008927473382149576],[124,-35,73,0.009006294970571928],[124,-35,74,0.00908834176673124],[124,-35,75,0.009170815601936434],[124,-35,76,0.009251257338603712],[124,-35,77,0.009327519120240138],[124,-35,78,0.009397737805934458],[124,-35,79,0.009460309621070554],[124,-34,64,0.008350379117396818],[124,-34,65,0.00832988592980528],[124,-34,66,0.008370358596516771],[124,-34,67,0.008457623079191188],[124,-34,68,0.008580164309853321],[124,-34,69,0.00873142225216446],[124,-34,70,0.008904918491622492],[124,-34,71,0.009094262263838752],[124,-34,72,0.009293273182324814],[124,-34,73,0.009496089331730611],[124,-34,74,0.00969726050021918],[124,-34,75,0.009891826345041594],[124,-34,76,0.010075379307061996],[124,-34,77,0.010244112112745944],[124,-34,78,0.010394849725730347],[124,-34,79,0.01052506563429138],[124,-33,64,0.007923669248941357],[124,-33,65,0.007997596847890939],[124,-33,66,0.008141649547169555],[124,-33,67,0.008339998326517183],[124,-33,68,0.00857973371953848],[124,-33,69,0.0088530386054488],[124,-33,70,0.009151676142848798],[124,-33,71,0.009467145723000997],[124,-33,72,0.009790958394095545],[124,-33,73,0.01011488175650749],[124,-33,74,0.010431153861498583],[124,-33,75,0.010732665687453362],[124,-33,76,0.01101311181212111],[124,-33,77,0.011267108945996893],[124,-33,78,0.011490282040425633],[124,-33,79,0.011551971542800963],[124,-32,64,0.0076476613343960855],[124,-32,65,0.007816351441852037],[124,-32,66,0.008063793328084164],[124,-32,67,0.008372675885175885],[124,-32,68,0.008728582943551465],[124,-32,69,0.009122152705069369],[124,-32,70,0.009543172758756324],[124,-32,71,0.009980885110139883],[124,-32,72,0.010424407870479083],[124,-32,73,0.010863110523924229],[124,-32,74,0.011286942085200645],[124,-32,75,0.011499303735114694],[124,-32,76,0.011144712918039819],[124,-32,77,0.010827974277971195],[124,-32,78,0.010554509496462045],[124,-32,79,0.010328248225767615],[124,-31,64,0.007541976257975507],[124,-31,65,0.0078040602301158585],[124,-31,66,0.008152725432346176],[124,-31,67,0.00856937638553133],[124,-31,68,0.009037989952301064],[124,-31,69,0.009547377745456023],[124,-31,70,0.010085154864804165],[124,-31,71,0.01063819043840011],[124,-31,72,0.011193166123336236],[124,-31,73,0.011432637466293642],[124,-31,74,0.010925671047233706],[124,-31,75,0.010452045633263794],[124,-31,76,0.010021503108403088],[124,-31,77,0.009642129879582467],[124,-31,78,0.00932018227946038],[124,-31,79,0.009059977936693844],[124,-30,64,0.007620655734908166],[124,-30,65,0.007973049915905615],[124,-30,66,0.00841881886621433],[124,-30,67,0.008938295998791366],[124,-30,68,0.009513767257874992],[124,-30,69,0.010131954254819477],[124,-30,70,0.010778132589855044],[124,-30,71,0.01143672165291158],[124,-30,72,0.011080555478279271],[124,-30,73,0.01045705669221192],[124,-30,74,0.009865419931187431],[124,-30,75,0.009318600351530058],[124,-30,76,0.00882777812803537],[124,-30,77,0.008402070923393774],[124,-30,78,0.008048327672581202],[124,-30,79,0.007771004127512389],[124,-29,64,0.007891183345070303],[124,-29,65,0.008329116912865179],[124,-29,66,0.008865979275011192],[124,-29,67,0.00948124983790381],[124,-29,68,0.010155460546042338],[124,-29,69,0.010873012913045757],[124,-29,70,0.011549699479365974],[124,-29,71,0.010811678175506743],[124,-29,72,0.010082531179756824],[124,-29,73,0.009379775165945996],[124,-29,74,0.00871969679247338],[124,-29,75,0.008116838019323535],[124,-29,76,0.0075835762548963235],[124,-29,77,0.007129800091554765],[124,-29,78,0.006762681238811154],[124,-29,79,0.0064865431110138995],[124,-28,64,0.00835348642191072],[124,-28,65,0.0088705621344278],[124,-28,66,0.009490722098290844],[124,-28,67,0.010192798302726399],[124,-28,68,0.010955531332942643],[124,-28,69,0.011418428815204645],[124,-28,70,0.01060364346330662],[124,-28,71,0.00978536151096264],[124,-28,72,0.008984006757122992],[124,-28,73,0.008219127432417725],[124,-28,74,0.00750872097486033],[124,-28,75,0.006868666431876668],[124,-28,76,0.00631226544762544],[124,-28,77,0.005849892624443805],[124,-28,78,0.0054887558735017715],[124,-28,79,0.005232767194222971],[124,-27,64,0.008998917069332105],[124,-27,65,0.009587205374500194],[124,-27,66,0.010281230160387697],[124,-27,67,0.01105935487149248],[124,-27,68,0.011298127018699488],[124,-27,69,0.010431564241232325],[124,-27,70,0.0095457418392586],[124,-27,71,0.00866355310991418],[124,-27,72,0.007807550854483671],[124,-27,73,0.006999101827735543],[124,-27,74,0.006257660150375264],[124,-27,75,0.0056001608528856005],[124,-27,76,0.005040534531677872],[124,-27,77,0.004589343905833957],[124,-27,78,0.0042535428667155725],[124,-27,79,0.004036358415420486],[124,-26,64,0.009809210758197448],[124,-26,65,0.010459377778415165],[124,-26,66,0.011216390265600958],[124,-26,67,0.011160193017774399],[124,-26,68,0.010270848093051479],[124,-26,69,0.009343582441024815],[124,-26,70,0.008403136946155916],[124,-26,71,0.007474625752269553],[124,-26,72,0.006582514885620987],[124,-26,73,0.0057497295840702204],[124,-26,74,0.004996891714627485],[124,-26,75,0.004341688460334221],[124,-26,76,0.0037983732490665992],[124,-26,77,0.003377399683415622],[124,-26,78,0.0030851890144485213],[124,-26,79,0.002924031485160997],[124,-25,64,0.010755488368142179],[124,-25,65,0.011456973697014212],[124,-25,66,0.010979649219959935],[124,-25,67,0.010099802540845085],[124,-25,68,0.009161058713309665],[124,-25,69,0.008189284774103264],[124,-25,70,0.007211517822897511],[124,-25,71,0.006254858104119697],[124,-25,72,0.0053454070087580975],[124,-25,73,0.004507343434433294],[124,-25,74,0.0037621398886254175],[124,-25,75,0.003127919499271337],[124,-25,76,0.0026189548694457703],[124,-25,77,0.002245309480708838],[124,-25,78,0.0020126221152565104],[124,-25,79,0.0019220345327041301],[124,-24,64,0.011459493829025674],[124,-24,65,0.010730804682368705],[124,-24,66,0.009896319103102926],[124,-24,67,0.008978539955857727],[124,-24,68,0.00800556789755077],[124,-24,69,0.007005622662665448],[124,-24,70,0.006007796088664058],[124,-24,71,0.005040890007294681],[124,-24,72,0.004132329731696284],[124,-24,73,0.003307224110198676],[124,-24,74,0.002587573506717933],[124,-24,75,0.0019916268294980334],[124,-24,76,0.0015333884854021693],[124,-24,77,0.0012222758883532739],[124,-24,78,0.0010629279003382534],[124,-24,79,0.001055164334236521],[124,-23,64,0.010393228690207],[124,-23,65,0.00963257471283891],[124,-23,66,0.008769489757202825],[124,-23,67,0.007826690327111365],[124,-23,68,0.006833719753951845],[124,-23,69,0.005820952323821143],[124,-23,70,0.004819288595753169],[124,-23,71,0.003858952947389437],[124,-23,72,0.0029683964349738814],[124,-23,73,0.002173353143584209],[124,-23,74,0.0014960513393544037],[124,-23,75,9.545804816142437E-4],[124,-23,76,5.624148932137537E-4],[124,-23,77,3.280946242832319E-4],[124,-23,78,2.550637809185325E-4],[124,-23,79,3.416663285255121E-4],[124,-22,64,0.00929255666407581],[124,-22,65,0.008508619273750115],[124,-22,66,0.007627093674322893],[124,-22,67,0.006670839058710772],[124,-22,68,0.005670675514476085],[124,-22,69,0.004658926232760003],[124,-22,70,0.0036680600725359307],[124,-22,71,0.002729460774874188],[124,-22,72,0.0018723305345549242],[124,-22,73,0.0011227528977560592],[124,-22,74,5.029162308321888E-4],[124,-22,75,3.0498737294027174E-5],[124,-22,76,-2.817842729594644E-4],[124,-22,77,-4.264704337273752E-4],[124,-22,78,-4.0147753893388864E-4],[124,-22,79,-2.100680448294239E-4],[124,-21,64,0.008186490516099496],[124,-21,65,0.00738636978622872],[124,-21,66,0.0064948882663673655],[124,-21,67,0.005534954496660873],[124,-21,68,0.004538481842980124],[124,-21,69,0.0035395354196178794],[124,-21,70,0.002571925108195318],[124,-21,71,0.0016679552619034775],[124,-21,72,8.573373933510642E-4],[124,-21,73,1.662671715318783E-4],[124,-21,74,-3.8333310772141173E-4],[124,-21,75,-7.744056940963889E-4],[124,-21,76,-9.951815993302319E-4],[124,-21,77,-0.0010394375460278623],[124,-21,78,-9.065856225057553E-4],[124,-21,79,-6.01595898898752E-4],[124,-20,64,0.0071034649942014645],[124,-20,65,0.006292303972585482],[124,-20,66,0.005397229336562475],[124,-20,67,0.004441087474948797],[124,-20,68,0.0034566916726225185],[124,-20,69,0.0024796488283676953],[124,-20,70,0.0015449054205322443],[124,-20,71,6.854828610272214E-4],[124,-20,72,-6.859570044471108E-5],[124,-20,73,-6.912098499726353E-4],[124,-20,74,-0.001160876586176382],[124,-20,75,-0.0014613144179476724],[124,-20,76,-0.0015818363971227252],[124,-20,77,-0.0015175718968956622],[124,-20,78,-0.0012695172415129752],[124,-20,79,-8.444155822992834E-4],[124,-19,64,0.006072248494324294],[124,-19,65,0.00525279442640202],[124,-19,66,0.004357850195652839],[124,-19,67,0.003410074822862656],[124,-19,68,0.0024429871377005087],[124,-19,69,0.0014935526325177567],[124,-19,70,5.976846106118801E-4],[124,-19,71,-2.1103388970323975E-4],[124,-19,72,-9.024081373847131E-4],[124,-19,73,-0.0014505168445028392],[124,-19,74,-0.00183442341470067],[124,-19,75,-0.0020387126272805372],[124,-19,76,-0.0020538523866171846],[124,-19,77,-0.0018763804731582686],[124,-19,78,-0.0015089165356615148],[124,-19,79,-9.599998613685037E-4],[124,-18,64,0.005122865031084454],[124,-18,65,0.004294965936354203],[124,-18,66,0.0034006479081471063],[124,-18,67,0.002462248266919543],[124,-18,68,0.0015138059750073247],[124,-18,69,5.934908185618861E-4],[124,-18,70,-2.6193835356438027E-4],[124,-18,71,-0.0010184291445315171],[124,-18,72,-0.001645682074300255],[124,-18,73,-0.00211801977232233],[124,-18,74,-0.0024150780096376715],[124,-18,75,-0.002522317997574551],[124,-18,76,-0.0024313596978484345],[124,-18,77,-0.0021401362053991998],[124,-18,78,-0.0016528695776516973],[124,-18,79,-9.798687887693737E-4],[124,-17,64,0.0042752576365739665],[124,-17,65,0.003436390405955365],[124,-17,66,0.0025405911844200587],[124,-17,67,0.0016097393051876148],[124,-17,68,6.782179387107022E-4],[124,-17,69,-2.1473141289990208E-4],[124,-17,70,-0.0010315902087493565],[124,-17,71,-0.0017378833740670301],[124,-17,72,-0.002303221107494667],[124,-17,73,-0.0027021585584126795],[124,-17,74,-0.002914872573510544],[124,-17,75,-0.0029276550401099812],[124,-17,76,-0.0027332226831434073],[124,-17,77,-0.002330843500110781],[124,-17,78,-0.0017262803405364798],[124,-17,79,-9.315524500569845E-4],[124,-16,64,0.003506273925995771],[124,-16,65,0.0026553684846853114],[124,-16,66,0.001757819887513156],[124,-16,67,8.349207762148215E-4],[124,-16,68,-7.88013301630441E-5],[124,-16,69,-9.43214098239604E-4],[124,-16,70,-0.0017201879821636165],[124,-16,71,-0.0023749450439376043],[124,-16,72,-0.002877099243470671],[124,-16,73,-0.003201509579347396],[124,-16,74,-0.0033289453664687753],[124,-16,75,-0.003246563277959264],[124,-16,76,-0.002948196120239524],[124,-16,77,-0.0024344536487722022],[124,-16,78,-0.0017126360643400385],[124,-16,79,-7.964611523356643E-4],[124,-15,64,0.002791469409114361],[124,-15,65,0.0019295053630540599],[124,-15,66,0.0010323694048438926],[124,-15,67,1.2064096920976854E-4],[124,-15,68,-7.712383167970818E-4],[124,-15,69,-0.0016024834063934502],[124,-15,70,-0.0023345758953497806],[124,-15,71,-0.002932639281567814],[124,-15,72,-0.0033664762440985046],[124,-15,73,-0.003611414039624766],[124,-15,74,-0.0036489573930391967],[124,-15,75,-0.0034672486124488985],[124,-15,76,-0.0030613350120592105],[124,-15,77,-0.0024332440756655717],[124,-15,78,-0.0015918671354545064],[124,-15,79,-5.52652671900693E-4],[124,-14,64,0.002116234763019449],[124,-14,65,0.0012457881562839084],[124,-14,66,3.530258029441508E-4],[124,-14,67,-5.42317047790615E-4],[124,-14,68,-0.001406140644669358],[124,-14,69,-0.002197290486575142],[124,-14,70,-0.002877137136695792],[124,-14,71,-0.0034109719876108196],[124,-14,72,-0.0037690364836418548],[124,-14,73,-0.0039273553996184],[124,-14,74,-0.0038683736492744346],[124,-14,75,-0.003581396461454608],[124,-14,76,-0.003062833125808334],[124,-14,77,-0.0023162448683396687],[124,-14,78,-0.0013521977675043852],[124,-14,79,-1.87921959828641E-4],[124,-13,64,0.0014737768736900745],[124,-13,65,5.986154284514449E-4],[124,-13,66,-2.8456886656468954E-4],[124,-13,67,-0.0011570246936362305],[124,-13,68,-0.0019852701369412816],[124,-13,69,-0.0027280974176757708],[124,-13,70,-0.0033470827458659657],[124,-13,71,-0.003807993617500708],[124,-13,72,-0.004081802333744617],[124,-13,73,-0.004145500513153764],[124,-13,74,-0.003982714173976129],[124,-13,75,-0.0035841193379881763],[124,-13,76,-0.0029476584793117137],[124,-13,77,-0.002078558507855832],[124,-13,78,-9.891513338037773E-4],[124,-13,79,3.015015968362396E-4],[124,-12,64,8.632724860200174E-4],[124,-12,65,-1.200310036650471E-5],[124,-12,66,-8.796451047189258E-4],[124,-12,67,-0.0017220368777051227],[124,-12,68,-0.0025066036152553315],[124,-12,69,-0.0031924211757989925],[124,-12,70,-0.003741611158824935],[124,-12,71,-0.004120748619684712],[124,-12,72,-0.004301850466170278],[124,-12,73,-0.0042631630480979305],[124,-12,74,-0.003989748628142985],[124,-12,75,-0.0034738708035210028],[124,-12,76,-0.0027151793261526954],[124,-12,77,-0.0017206951402152359],[124,-12,78,-5.045968167840491E-4],[124,-12,79,9.121900881990696E-4],[124,-11,64,2.8819474040160084E-4],[124,-11,65,-5.820764419233837E-4],[124,-11,66,-0.0014278681557953604],[124,-11,67,-0.002232860554595219],[124,-11,68,-0.002965681225522717],[124,-11,69,-0.0035860353584764543],[124,-11,70,-0.004056938073466968],[124,-11,71,-0.0043461100845934904],[124,-11,72,-0.004426930494260479],[124,-11,73,-0.004279188451307809],[124,-11,74,-0.0038896334788590683],[124,-11,75,-0.0032523246631265194],[124,-11,76,-0.002368779275596023],[124,-11,77,-0.0012479217744580768],[124,-11,78,9.416550686460639E-5],[124,-11,79,0.0016346883295540546],[124,-10,64,-2.451864407514364E-4],[124,-10,65,-0.0011050909267108495],[124,-10,66,-0.001922733005308975],[124,-10,67,-0.002683262016598692],[124,-10,68,-0.003356801491427362],[124,-10,69,-0.003904028862520142],[124,-10,70,-0.0042891958112589905],[124,-10,71,-0.004481498740176071],[124,-10,72,-0.004455985030997468],[124,-10,73,-0.00419425945926864],[124,-10,74,-0.0036849906937423834],[124,-10,75,-0.0029242181949497097],[124,-10,76,-0.0019154602084375922],[124,-10,77,-6.696239205536407E-4],[124,-10,78,7.95280795331744E-4],[124,-10,79,0.0024546222704880704],[124,-9,64,-7.291285093725291E-4],[124,-9,65,-0.0015732959605502797],[124,-9,66,-0.0023567907245125525],[124,-9,67,-0.0030664115217262727],[124,-9,68,-0.0036740617430155937],[124,-9,69,-0.004141720204104714],[124,-9,70,-0.004435200896300201],[124,-9,71,-0.004525485039226763],[124,-9,72,-0.004389569922827833],[124,-9,73,-0.004011120916548168],[124,-9,74,-0.0033809266990181327],[124,-9,75,-0.002497158145049933],[124,-9,76,-0.0013654316841777106],[124,-9,77,1.3216871334629243E-6],[124,-9,78,0.0015831802028121941],[124,-9,79,0.0033537460595930825],[124,-8,64,-0.0011555627859133745],[124,-8,65,-0.0019788148326675735],[124,-8,66,-0.002722704128230452],[124,-8,67,-0.0033758633075514554],[124,-8,68,-0.003912242053716133],[124,-8,69,-0.004295425698107845],[124,-8,70,-0.00449308815305365],[124,-8,71,-0.004478272723654444],[124,-8,72,-0.004230173126498873],[124,-8,73,-0.003734722447786082],[124,-8,74,-0.0029849902197442452],[124,-8,75,-0.001981388171243373],[124,-8,76,-7.316855786086822E-4],[124,-8,77,7.491644975568361E-4],[124,-8,78,0.0024393864578643614],[124,-8,79,0.004310928932077909],[124,-7,64,-0.0015170605386160233],[124,-7,65,-0.002314577917302963],[124,-7,66,-0.0030141301881037984],[124,-7,67,-0.003606368539226222],[124,-7,68,-0.004067530348352322],[124,-7,69,-0.004363079282622019],[124,-7,70,-0.0044628092410519005],[124,-7,71,-0.004342061924254352],[124,-7,72,-0.0039824304336141215],[124,-7,73,-0.003372277337399189],[124,-7,74,-0.0025070675062447713],[124,-7,75,-0.001389516387180669],[124,-7,76,-2.9554744442585232E-5],[124,-7,77,0.0015558887565956584],[124,-7,78,0.0033432854124437394],[124,-7,79,0.005303082766110931],[124,-6,64,-0.0018076154023796726],[124,-6,65,-0.0025750751246513643],[124,-6,66,-0.003226426170394345],[124,-6,67,-0.0037545182878496413],[124,-6,68,-0.004138085921129029],[124,-6,69,-0.004344701387585989],[124,-6,70,-0.0043464932024985595],[124,-6,71,-0.004121289564439332],[124,-6,72,-0.0036532360169971106],[124,-6,73,-0.0029332358065914813],[124,-6,74,-0.001959213357952978],[124,-6,75,-7.362016415212573E-4],[124,-6,76,7.237454486277611E-4],[124,-6,77,0.0024018142548703552],[124,-6,78,0.0042728642847625125],[124,-6,79,0.00630603083954726],[124,-5,64,-0.002023238458334384],[124,-5,65,-0.0027569240287100296],[124,-5,66,-0.0033571760508253703],[124,-5,67,-0.0038192132372279826],[124,-5,68,-0.004124438230269517],[124,-5,69,-0.004242713907467806],[124,-5,70,-0.004148666300351772],[124,-5,71,-0.003822744585857517],[124,-5,72,-0.003251745576906317],[124,-5,73,-0.0024291707417642434],[124,-5,74,-0.0013554162862360881],[124,-5,75,-3.779716773264003E-5],[124,-5,76,0.0015095937636321966],[124,-5,77,0.0032661899875493544],[124,-5,78,0.005205417091219467],[124,-5,79,0.007295318013320638],[124,-4,64,-0.0021623619259568583],[124,-4,65,-0.002859249734041941],[124,-4,66,-0.003406533403031802],[124,-4,67,-0.0038019564772923376],[124,-4,68,-0.004029717519071994],[124,-4,69,-0.0040620980507225495],[124,-4,70,-0.0038763281737103487],[124,-4,71,-0.0034555553059975016],[124,-4,72,-0.002789269706348842],[124,-4,73,-0.001873573824198751],[124,-4,74,-7.11296112991227E-4],[124,-4,75,6.880497412191729E-4],[124,-4,76,0.0023084589195303522],[124,-4,77,0.0041277813495079144],[124,-4,78,0.0061182175380263765],[124,-4,79,0.008246962272779565],[124,-3,64,-0.0022260471191749838],[124,-3,65,-0.002883872245257193],[124,-3,66,-0.003377376666645862],[124,-3,67,-0.003706965465469705],[124,-3,68,-0.0038597135558641085],[124,-3,69,-0.0038103916072787175],[124,-3,70,-0.003538881137719664],[124,-3,71,-0.0030310460559517523],[124,-3,72,-0.002279054975926589],[124,-3,73,-0.0012815599401495782],[124,-3,74,-4.373228351981973E-5],[124,-3,75,0.0014228433411636366],[124,-3,76,0.0031004154747417026],[124,-3,77,0.004965451331131918],[124,-3,78,0.006989159422742125],[124,-3,79,0.009138147275206204],[124,-2,64,-0.002217992091265281],[124,-2,65,-0.0028352968769589067],[124,-2,66,-0.0032752724805337786],[124,-2,67,-0.0035410990276489923],[124,-2,68,-0.0036227585919497607],[124,-2,69,-0.0034975220035901],[124,-2,70,-0.0031479093104402186],[124,-2,71,-0.002562460133732471],[124,-2,72,-0.0017359501626072783],[124,-2,73,-6.694777155059915E-4],[124,-2,74,6.295788179021171E-4],[124,-2,75,0.002147731577825405],[124,-2,76,0.003865680549012088],[124,-2,77,0.005758736018598857],[124,-2,78,0.00779736438065802],[124,-2,79,0.009947855282314493],[124,-1,64,-0.0021443342454133627],[124,-1,65,-0.0027205030928839414],[124,-1,66,-0.003108242620995517],[124,-1,67,-0.003313595132645955],[124,-1,68,-0.00332943051154089],[124,-1,69,-0.003135471406911324],[124,-1,70,-0.0027168041629100992],[124,-1,71,-0.0020645460482279993],[124,-1,72,-0.0011759550163802722],[124,-1,73,-5.442402225370907E-5],[124,-1,74,0.0012906392215244634],[124,-1,75,0.002844045931218108],[124,-1,76,0.004585172040519136],[124,-1,77,0.006488414537883217],[124,-1,78,0.008523756601828622],[124,-1,79,0.010657439602357452],[124,0,64,-0.0020132431236140748],[124,0,65,-0.0025485270959523004],[124,0,66,-0.0028863300186852347],[124,0,67,-0.0030356151129240757],[124,0,68,-0.0029920720952917516],[124,0,69,-0.0027377701005657866],[124,0,70,-0.002260233064776453],[124,0,71,-0.001553004024422619],[124,0,72,-6.156489768196887E-4],[124,0,73,5.463396525580471E-4],[124,0,74,0.0019217389949897387],[124,0,75,0.003493890032097539],[124,0,76,0.005241088861265893],[124,0,77,0.0071370734142855215],[124,0,78,0.009151603942484977],[124,0,79,0.011251135429272073],[124,1,64,-0.0018343007831489607],[124,1,65,-0.00232983626892567],[124,1,66,-0.0026209624484166438],[124,1,67,-0.0027195932424801364],[124,1,68,-0.0026241254483446203],[124,1,69,-0.0023188171270768203],[124,1,70,-0.0017934495612783464],[124,1,71,-0.0010437910296081899],[124,1,72,-7.149740561297297E-5],[124,1,73,0.0011160723178978314],[124,1,74,0.0025061245937135195],[124,1,75,0.0040807828181023695],[124,1,76,0.005817520443776983],[124,1,77,0.007689674239278909],[124,1,78,0.009667036088208257],[124,1,79,0.011716521598521165],[124,2,64,-0.0016176677979185367],[124,2,65,-0.002075494554561732],[124,2,66,-0.0023241134621622725],[124,2,67,-0.0023783912233308713],[124,2,68,-0.002239280651659023],[124,2,69,-0.0018930262709766807],[124,2,70,-0.0013314419652069353],[124,2,71,-5.522789218894599E-4],[124,2,72,4.4097252007073033E-4],[124,2,73,0.0016393508237327855],[124,2,74,0.0030287599913016014],[124,2,75,0.004590373929113501],[124,2,76,0.006301107154455405],[124,2,77,0.008134150438659045],[124,2,78,0.010059569873226345],[124,2,79,0.012044967751553677],[124,3,64,-0.0013730045003149045],[124,3,65,-0.0017960819015206953],[124,3,66,-0.0020072200840246506],[124,3,67,-0.00202421621639498],[124,3,68,-0.0018503991306813962],[124,3,69,-0.001473762678023237],[124,3,70,-8.878934338459357E-4],[124,3,71,-9.224987836399676E-5],[124,3,72,9.081280318530981E-4],[124,3,73,0.0021029641927410294],[124,3,74,0.0034771455447942918],[124,3,75,0.0050111739840548305],[124,3,76,0.006681669749165544],[124,3,77,0.008461924952599398],[124,3,78,0.010322505846044687],[124,3,79,0.012231902343996697],[124,4,64,-0.0011081721682322408],[124,4,65,-0.0015003996703923112],[124,4,66,-0.0016798941595073955],[124,4,67,-0.001667342165767104],[124,4,68,-0.0014682521066002854],[124,4,69,-0.0010721086021641812],[124,4,70,-4.739874694101208E-4],[124,4,71,3.25244309184822E-4],[124,4,72,0.0013193027195523726],[124,4,73,0.0024969015600425915],[124,4,74,0.0038422069497591684],[124,4,75,0.005335330379079821],[124,4,76,0.006952859111679642],[124,4,77,0.008668422687614584],[124,4,78,0.010453294227077626],[124,4,79,0.012277025195348214],[124,5,64,-8.277083837785014E-4],[124,5,65,-0.0011939556373421684],[124,5,66,-0.00134842027971245],[124,5,67,-0.0013146265408522167],[124,5,68,-0.0011000654290025543],[124,5,69,-6.95448766590527E-4],[124,5,70,-9.70485718706152E-5],[124,5,71,6.931700050129501E-4],[124,5,72,0.0016679956718484734],[124,5,73,0.002815445557438165],[124,5,74,0.004119266304766782],[124,5,75,0.0055594606033503875],[124,5,76,0.0071128380293522106],[124,5,77,0.008753589029473426],[124,5,78,0.010453880860764727],[124,5,79,0.012184474284138718],[124,6,64,-5.310671102854387E-4],[124,6,65,-8.772179541234182E-4],[124,6,66,-0.0010140288924795056],[124,6,67,-9.678107954364578E-4],[124,6,68,-7.478592314011362E-4],[124,6,69,-3.4586442696213815E-4],[124,6,70,2.4099168197846336E-4],[124,6,71,0.0010099545480230356],[124,6,72,0.001953203481536885],[124,6,73,0.003058373954326717],[124,6,74,0.004309094708160113],[124,6,75,0.005685538616645486],[124,6,76,0.007164986233663934],[124,6,77,0.00872240095327493],[124,6,78,0.01033101470537498],[124,6,79,0.011962923118917071],[124,7,64,-2.080391365132886E-4],[124,7,65,-5.407877798520126E-4],[124,7,66,-6.678757049472181E-4],[124,7,67,-6.183330675784323E-4],[124,7,68,-4.0310355692411016E-4],[124,7,69,-1.4639453983290515E-5],[124,7,70,5.492288981876388E-4],[124,7,71,0.0012852473781950987],[124,7,72,0.002185288701699798],[124,7,73,0.0032369087950275544],[124,7,74,0.0044239079218282825],[124,7,75,0.005726895558035987],[124,7,76,0.007123858016710923],[124,7,77,0.008590727836875336],[124,7,78,0.010101953969560637],[124,7,79,0.011631071820304368],[124,8,64,1.679358051171954E-4],[124,8,65,-1.5765926017306507E-4],[124,8,66,-2.8243299389526285E-4],[124,8,67,-2.379222739891981E-4],[124,8,68,-3.650792106478162E-5],[124,8,69,3.2878744679841585E-4],[124,8,70,8.597103746202492E-4],[124,8,71,0.0015527529028503905],[124,8,72,0.0023997340628758345],[124,8,73,0.003388378605931504],[124,8,74,0.004502891992600841],[124,8,75,0.005724530689528334],[124,8,76,0.007032166844640661],[124,8,77,0.008402846442224474],[124,8,78,0.009812340074841582],[124,8,79,0.011235685510436537],[124,9,64,6.22662719920772E-4],[124,9,65,2.988777448627675E-4],[124,9,66,1.6997023462963075E-4],[124,9,67,2.0226732391671743E-4],[124,9,68,3.822263046332966E-4],[124,9,69,7.164224284158012E-4],[124,9,70,0.001206364294134448],[124,9,71,0.0018484842015057152],[124,9,72,0.0026347405216441007],[124,9,73,0.0035532100919982556],[124,9,74,0.004588669699707591],[124,9,75,0.005723165753048224],[124,9,76,0.006936571280867003],[124,9,77,0.008207129444726093],[124,9,78,0.009511982797956857],[124,9,79,0.010827687579956372],[124,10,64,0.0011778820158911709],[124,10,65,8.515577498332999E-4],[124,10,66,7.131505857874863E-4],[124,10,67,7.273456436533325E-4],[124,10,68,8.79757325096764E-4],[124,10,69,0.0011766977621354925],[124,10,70,0.0016195789734261832],[124,10,71,0.0022049139704202153],[124,10,72,0.002924933193557367],[124,10,73,0.003768184820263957],[124,10,74,0.004720118047106819],[124,10,75,0.005763648498047523],[124,10,76,0.006879704964319565],[124,10,77,0.008047756738890256],[124,10,78,0.00924632086969999],[124,10,79,0.01045344872076672],[124,11,64,0.0018537488609854653],[124,11,65,0.0015216126779231955],[124,11,66,0.0013695163895057084],[124,11,67,0.0013610841871131126],[124,11,68,0.0014814288116382452],[124,11,69,0.0017367024084810076],[124,11,70,0.002128313873383436],[124,11,71,0.0026529418714466737],[124,11,72,0.0033031616573403247],[124,11,73,0.0040680503768966226],[124,11,74,0.004933769989764523],[124,11,75,0.005884127014783752],[124,11,76,0.006901108365133331],[124,11,77,0.007965392608878925],[124,11,78,0.009056836062106924],[124,11,79,0.010154933196144045],[124,12,64,0.0026716222594495515],[124,12,65,0.0023315505034199983],[124,12,66,0.002162812847474028],[124,12,67,0.0021286032311660435],[124,12,68,0.0022138735061975915],[124,12,69,0.0024246753254791803],[124,12,70,0.002762455482577375],[124,12,71,0.0032240861164898565],[124,12,72,0.003802501281350124],[124,12,73,0.004487307028630727],[124,12,74,0.005265364176114239],[124,12,75,0.006121343011501575],[124,12,76,0.007038249254989548],[124,12,77,0.007997920684139933],[124,12,78,0.008981493905593208],[124,12,79,0.009969840841297229],[124,13,64,0.0036571696200025762],[124,13,65,0.003308245183269566],[124,13,66,0.0031211717582859213],[124,13,67,0.0030593541495409615],[124,13,68,0.0031078996116238374],[124,13,69,0.003272766229924612],[124,13,70,0.0035554223505353992],[124,13,71,0.003952903043515323],[124,13,72,0.004458458730637412],[124,13,73,0.005062172379604748],[124,13,74,0.00575154447003334],[124,13,75,0.006512045021872427],[124,13,76,0.007327632064633917],[124,13,77,0.008181236015398632],[124,13,78,0.009055209524666027],[124,13,79,0.009931742441254828],[124,14,64,0.004843794028033965],[124,14,65,0.004486345082111175],[124,14,66,0.004280472955341303],[124,14,67,0.004190403858686625],[124,14,68,0.004201666739248222],[124,14,69,0.0043200702771888505],[124,14,70,0.004547025344250029],[124,14,71,0.004879640279589315],[124,14,72,0.005311386689014138],[124,14,73,0.005832728418808284],[124,14,74,0.0064317129371757],[124,14,75,0.007094524454734207],[124,14,76,0.00780599821567764],[124,14,77,0.008550095492650093],[124,14,78,0.0093103389205346],[124,14,79,0.010070207906677753],[124,15,64,0.006274743101444561],[124,15,65,0.005910187390658956],[124,15,66,0.00568597148507729],[124,15,67,0.005567686647529742],[124,15,68,0.005541485133235954],[124,15,69,0.005612912736952566],[124,15,70,0.005783194843879828],[124,15,71,0.006049384922913439],[124,15,72,0.006405054077621642],[124,15,73,0.006840937525705621],[124,15,74,0.007345537266363682],[124,15,75,0.00790568030863684],[124,15,76,0.008507031948644793],[124,15,77,0.009134563698966838],[124,15,78,0.009772975588646787],[124,15,79,0.010407072666704018],[124,16,64,0.007987297132661214],[124,16,65,0.0076174698181375455],[124,16,66,0.007375352920756089],[124,16,67,0.007228377175970857],[124,16,68,0.007163486664135198],[124,16,69,0.007185852202712641],[124,16,70,0.007296408645656682],[124,16,71,0.007492067627215002],[124,16,72,0.007766434412033988],[124,16,73,0.008110474675323408],[124,16,74,0.008513130501598019],[124,16,75,0.00896188502133608],[124,16,76,0.00944327523621393],[124,16,77,0.009943352714594556],[124,16,78,0.010448091968886674],[124,16,79,0.010943746454406137],[124,17,64,0.009995465768724957],[124,17,65,0.009622484264171153],[124,17,66,0.009362871102744242],[124,17,67,0.009186304990921173],[124,17,68,0.009080667977897604],[124,17,69,0.00905066200683331],[124,17,70,0.009096863277330803],[124,17,71,0.00921600614084018],[124,17,72,0.009401727330692417],[124,17,73,0.009645252603146193],[124,17,74,0.009936025113088873],[124,17,75,0.010262274997328054],[124,17,76,0.01061152978743967],[124,17,77,0.010971065421959659],[124,17,78,0.01132829777338159],[124,17,79,0.011671114747955668],[124,18,64,0.01229138477948313],[124,18,65,0.011917668890446464],[124,18,66,0.01164112168159251],[124,18,67,0.01143401224176628],[124,18,68,0.011285284690142991],[124,18,69,0.01119909740374388],[124,18,70,0.011175631761906462],[124,18,71,0.011211450533768349],[124,18,72,0.011300266842931478],[124,18,73,0.01143364772671564],[124,18,74,0.01160165165693135],[124,18,75,0.011793399557590492],[124,18,76,0.0119975790223494],[124,18,77,0.012202881599648835],[124,18,78,0.01239837317537368],[124,18,79,0.012573797640246243],[124,19,64,0.011446994502974314],[124,19,65,0.011797482911038045],[124,19,66,0.012066752007892293],[124,19,67,0.012279693744802646],[124,19,68,0.01244622936440478],[124,19,69,0.012562830756116493],[124,19,70,0.01262975440907237],[124,19,71,0.01265060829101609],[124,19,72,0.012631562913907298],[124,19,73,0.012580635706476452],[124,19,74,0.012507049274249827],[124,19,75,0.012420663939706873],[124,19,76,0.01233148476942016],[124,19,77,0.012249243112519797],[124,19,78,0.012183052496844628],[124,19,79,0.012141138557062623],[124,20,64,0.008754726024011355],[124,20,65,0.009100282214210588],[124,20,66,0.009384374258319995],[124,20,67,0.009628819602918302],[124,20,68,0.009842295386880895],[124,20,69,0.010021906294006526],[124,20,70,0.010168297531937579],[124,20,71,0.010285149228232858],[124,20,72,0.010378373680864651],[124,20,73,0.010455393699925968],[124,20,74,0.010524502559021388],[124,20,75,0.010594305867955527],[124,20,76,0.010673245474506838],[124,20,77,0.010769205303696745],[124,20,78,0.010889198849431557],[124,20,79,0.011039137847243093],[124,21,64,0.005897575986298445],[124,21,65,0.006235009092439387],[124,21,66,0.006532220824996464],[124,21,67,0.006807812951926293],[124,21,68,0.007069160037067056],[124,21,69,0.007314012597199763],[124,21,70,0.007543368918509902],[124,21,71,0.007760901453661795],[124,21,72,0.007972147448813994],[124,21,73,0.008183788142378799],[124,21,74,0.008403016982970989],[124,21,75,0.008636997088968468],[124,21,76,0.008892407951151886],[124,21,77,0.00917508116457328],[124,21,78,0.009489724767691086],[124,21,79,0.009839735567596541],[124,22,64,0.0029385550746493672],[124,22,65,0.0032644936138582032],[124,22,66,0.003572626491675825],[124,22,67,0.0038782664096974214],[124,22,68,0.004187448748673982],[124,22,69,0.004498561819647309],[124,22,70,0.004812903880074219],[124,22,71,0.005134047832306587],[124,22,72,0.005467032969829163],[124,22,73,0.00581765230039337],[124,22,74,0.006191835814581751],[124,22,75,0.006595129826425812],[124,22,76,0.007032272275916606],[124,22,77,0.007506863653315026],[124,22,78,0.008021132983815547],[124,22,79,0.008575798100192595],[124,23,64,-5.3085091996801484E-5],[124,23,65,2.578758117976769E-4],[124,23,66,5.742450760080259E-4],[124,23,67,9.080404493989539E-4],[124,23,68,0.0012639432717637946],[124,23,69,0.0016409507496834399],[124,23,70,0.00204059317138163],[124,23,71,0.002466244692536236],[124,23,72,0.0029223241236944653],[124,23,73,0.003413597669959121],[124,23,74,0.003944583906235642],[124,23,75,0.004519061014189475],[124,23,76,0.005139676056120408],[124,23,77,0.005807655818078206],[124,23,78,0.00652261852160255],[124,23,79,0.007282485482463039],[124,24,64,-0.0030046435027213285],[124,24,65,-0.002712175782434833],[124,24,66,-0.002390702281528919],[124,24,67,-0.0020314395539549647],[124,24,68,-0.0016310536872265588],[124,24,69,-0.0011899877763076685],[124,24,70,-7.065598804022584E-4],[124,24,71,-1.776971806409942E-4],[124,24,72,4.002816359906033E-4],[124,24,73,0.001030991555220879],[124,24,74,0.0017174141701343905],[124,24,75,0.0024614382950940883],[124,24,76,0.003263507919028364],[124,24,77,0.004122376904287761],[124,24,78,0.005034969594658103],[124,24,79,0.00599634626688109],[124,25,64,-0.00584264680704531],[124,25,65,-0.00557213408130247],[124,25,66,-0.005249071444086314],[124,25,67,-0.004867784412808226],[124,25,68,-0.004426258929692456],[124,25,69,-0.003924446939719321],[124,25,70,-0.00336060542273254],[124,25,71,-0.00273206562274842],[124,25,72,-0.0020359912115430695],[124,25,73,-0.001270024159223442],[124,25,74,-4.32818210320048E-4],[124,25,75,4.755398547367962E-4],[124,25,76,0.0014532207198336936],[124,25,77,0.0024964540794656844],[124,25,78,0.003599440265302051],[124,25,79,0.0047543707517879105],[124,26,64,-0.008495410362249614],[124,26,65,-0.00825017049549626],[124,26,66,-0.007929331031926631],[124,26,67,-0.007530139360739504],[124,26,68,-0.007051853562136168],[124,26,69,-0.006494020954603273],[124,26,70,-0.005854936027524296],[124,26,71,-0.005132434233632162],[124,26,72,-0.004324619151164144],[124,26,73,-0.003430473594093606],[124,26,74,-0.0024503546613379784],[124,26,75,-0.001386373005623308],[124,26,76,-2.4265688325294962E-4],[124,26,77,9.744981848184276E-4],[124,26,78,0.0022565930547153146],[124,26,79,0.003593000578787307],[124,27,64,-0.01089548157165985],[124,27,65,-0.010678597546423977],[124,27,66,-0.010363988219338299],[124,27,67,-0.009951578243768766],[124,27,68,-0.009441831162704068],[124,27,69,-0.008833992314031798],[124,27,70,-0.008126498092061837],[124,27,71,-0.007317783417243649],[124,27,72,-0.0064069719007388845],[124,27,73,-0.0053944472371470755],[124,27,74,-0.004282305906746304],[124,27,75,-0.0030746915641968837],[124,27,76,-0.0017780117761605047],[124,27,77,-4.0103804343281967E-4],[124,27,78,0.0010451096983609164],[124,27,79,0.002547092664098872],[124,28,64,-0.012981963582078803],[124,28,65,-0.012796195249517726],[124,28,66,-0.012491902956412509],[124,28,67,-0.012071392247720478],[124,28,68,-0.011536248121414069],[124,28,69,-0.010885530324831477],[124,28,70,-0.010117925023287717],[124,28,71,-0.009232554943859089],[124,28,72,-0.008229627471321265],[124,28,73,-0.007110962332196995],[124,28,74,-0.005880399034785714],[124,28,75,-0.004544084531701603],[124,28,76,-0.0031106418592519026],[124,28,77,-0.0015912207826108114],[124,28,78,5.682652116146994E-7],[124,28,79,0.001648835421592556],[124,29,64,-0.01470271714833204],[124,29,65,-0.014550419215882075],[124,29,66,-0.01426048872921599],[124,29,67,-0.013837271472337277],[124,29,68,-0.013283374694036943],[124,29,69,-0.012597799729761551],[124,29,70,-0.011779591290172847],[124,29,71,-0.010828639427447415],[124,29,72,-0.009746281529026282],[124,29,73,-0.00853578335173663],[124,29,74,-0.007202699344826535],[124,29,75,-0.005755112809426648],[124,29,76,-0.004203756729425836],[124,29,77,-0.0025620163823551483],[124,29,78,-8.458150961769072E-4],[124,29,79,9.26615243604843E-4],[124,30,64,-0.016016438186898668],[124,30,65,-0.015899488128328147],[124,30,66,-0.015627797677508968],[124,30,67,-0.015207377368468831],[124,30,68,-0.014641745018482843],[124,30,69,-0.01392997793187201],[124,30,70,-0.013071586155019235],[124,30,71,-0.012067295851353157],[124,30,72,-0.010919602288110643],[124,30,73,-0.009633202389936753],[124,30,74,-0.00821530718101738],[124,30,75,-0.006675834734048492],[124,30,76,-0.005027484528932811],[124,30,77,-0.0032856943942805657],[124,30,78,-0.0014684814581216574],[124,30,79,4.0383123177444675E-4],[124,31,64,-0.016894608235111835],[124,31,65,-0.016814347936402484],[124,31,66,-0.01656448757444693],[124,31,67,-0.016152303739678363],[124,31,68,-0.01558210403059918],[124,31,69,-0.014853179030467123],[124,31,70,-0.013965605599674738],[124,31,71,-0.012921001994937365],[124,31,72,-0.011723030149923874],[124,31,73,-0.01037777907264368],[124,31,74,-0.00889402974550713],[124,31,75,-0.00728340220568825],[124,31,76,-0.005560385762722582],[124,31,77,-0.0037422535747983605],[124,31,78,-0.0018488630524975747],[124,31,79,9.765621365554143E-5],[124,32,64,-0.017323314713305178],[124,32,65,-0.017280509789469135],[124,32,66,-0.017055667843437098],[124,32,67,-0.016656923679646937],[124,32,68,-0.016089248888951267],[124,32,69,-0.015352282557013663],[124,32,70,-0.014446760651633413],[124,32,71,-0.013375234316844247],[124,32,72,-0.012142521023416434],[124,32,73,-0.010756039323917001],[124,32,74,-0.009226027652389888],[124,32,75,-0.007565647893240464],[124,32,76,-0.005790974715775767],[124,32,77,-0.003920871927721322],[124,32,78,-0.0019767573404863353],[124,32,79,1.774214145320936E-5],[124,33,64,-0.01730493756018057],[124,33,65,-0.017299758392844946],[124,33,66,-0.017102621449033607],[124,33,67,-0.01672211947723085],[124,33,68,-0.016163762180674113],[124,33,69,-0.015427664467478515],[124,33,70,-0.014515299992576966],[124,33,71,-0.013430175541515208],[124,33,72,-0.01217823197118358],[124,33,73,-0.010768132058172022],[124,33,74,-0.009211435738007243],[124,33,75,-0.007522663493906726],[124,33,76,-0.005719248916294503],[124,33,77,-0.003821381701869361],[124,33,78,-0.001851742591127684],[124,33,79,1.6486804646436532E-4],[124,34,64,-0.0168596984817817],[124,34,65,-0.016891727134610512],[124,34,66,-0.01672439915657384],[124,34,67,-0.016366392176955687],[124,34,68,-0.015823633837708812],[124,34,69,-0.015096827609603297],[124,34,70,-0.014188244402465976],[124,34,71,-0.0131023478785273],[124,34,72,-0.011846147524295383],[124,34,73,-0.010429442586439283],[124,34,74,-0.00886495738657207],[124,34,75,-0.007168368794535033],[124,34,76,-0.005358226891745456],[124,34,77,-0.0034557700931461977],[124,34,78,-0.0014846362159788825],[124,34,79,5.295288163223406E-4],[124,35,64,-0.016027068726762107],[124,35,65,-0.01609533599499426],[124,35,66,-0.015959282314105417],[124,35,67,-0.015627347138934558],[124,35,68,-0.01510576834934442],[124,35,69,-0.01439592854400115],[124,35,70,-0.013500930260045315],[124,35,71,-0.012426169483227193],[124,35,72,-0.011179644703016394],[124,35,73,-0.009772161237849096],[124,35,74,-0.008217431365066256],[124,35,75,-0.0065320710431684215],[124,35,76,-0.004735494254467603],[124,35,77,-0.0028497062218900827],[124,35,78,-8.989969623474631E-4],[124,35,79,0.0010904631714927192],[124,36,64,-0.014867030979732644],[124,36,65,-0.014970087920748009],[124,36,66,-0.014866109974572415],[124,36,67,-0.01456305160313643],[124,36,68,-0.014067373517303411],[124,36,69,-0.013381197260843046],[124,36,70,-0.012508458989512698],[124,36,71,-0.011455431445624218],[124,36,72,-0.010230994472301287],[124,36,73,-0.00884680540619178],[124,36,74,-0.007317369890627846],[124,36,75,-0.005660013892350999],[124,36,76,-0.003894757933652992],[124,36,77,-0.0020440947660429008],[124,36,78,-1.3267190919104887E-4],[124,36,79,0.0018131193422312104],[124,37,64,-0.01346119065467104],[124,37,65,-0.013597219028007772],[124,37,66,-0.013525465850496137],[124,37,67,-0.01325325993279798],[124,37,68,-0.01278722666771345],[124,37,69,-0.0121302460032046],[124,37,70,-0.011287049016826336],[124,37,71,-0.010264692276063806],[124,37,72,-0.009072797053849795],[124,37,73,-0.007723692939158339],[124,37,74,-0.00623246637969539],[124,37,75,-0.004616914923360845],[124,37,76,-0.0028974081427153194],[124,37,77,-0.0010966564301500214],[124,37,78,7.606109612319439E-4],[124,37,79,0.0026480570869260953],[124,38,64,-0.01191115793318518],[124,38,65,-0.012078115111795545],[124,38,66,-0.01203813942008708],[124,38,67,-0.011797926517374097],[124,38,68,-0.011364246105994485],[124,38,69,-0.010740707467823876],[124,38,70,-0.009932750001933083],[124,38,71,-0.008948078156999904],[124,38,72,-0.007796878512395962],[124,38,73,-0.006491945343281251],[124,38,74,-0.005048715189087943],[124,38,75,-0.003485211164334238],[124,38,76,-0.00182189795851484],[124,38,77,-8.144866593779541E-5],[124,38,78,0.0017115752351574733],[124,38,79,0.0035311292740490842],[124,39,64,-0.010282043946564734],[124,39,65,-0.010477642107510461],[124,39,66,-0.01046852024737714],[124,39,67,-0.010260750236992772],[124,39,68,-0.009861237290801652],[124,39,69,-0.009274287673192933],[124,39,70,-0.008505956705413396],[124,39,71,-0.007564454486346455],[124,39,72,-0.006460351502973724],[124,39,73,-0.005206696157173463],[124,39,74,-0.003819044697069392],[124,39,75,-0.0023154042526217543],[124,39,76,-7.160898752353915E-4],[124,39,77,9.565033320148949E-4],[124,39,78,0.0026782117352784304],[124,39,79,0.004423496929099508],[124,40,64,-0.00859195616583461],[124,40,65,-0.008813591225448057],[124,40,66,-0.008834004674558762],[124,40,67,-0.008658554122286801],[124,40,68,-0.008294256557547541],[124,40,69,-0.007746126609021044],[124,40,70,-0.007020782569350851],[124,40,71,-0.006126832426507952],[124,40,72,-0.005075079317030223],[124,40,73,-0.003878641596192797],[124,40,74,-0.002552987967613041],[124,40,75,-0.0011158883204317514],[124,40,76,4.127188831733963E-4],[124,40,77,0.0020109416456032614],[124,40,78,0.003655230704936364],[124,40,79,0.005320755697301802],[124,41,64,-0.006858896218127044],[124,41,65,-0.007103761455509705],[124,41,66,-0.007152059666003785],[124,41,67,-0.0070082668634423445],[124,41,68,-0.006679480436207838],[124,41,69,-0.006171474596507642],[124,41,70,-0.0054914158654386655],[124,41,71,-0.004648238021614742],[124,41,72,-0.003652858851691571],[124,41,73,-0.0025183134509536194],[124,41,74,-0.0012598044557290706],[124,41,75,1.0533020844973712E-4],[124,41,76,0.0015577312875185174],[124,41,77,0.003076212913870531],[124,41,78,0.004638036956263899],[124,41,79,0.006219265736396125],[124,42,64,-0.005100410599356112],[124,42,65,-0.005365659910447212],[124,42,66,-0.00543998108430081],[124,42,67,-0.005326751241318462],[124,42,68,-0.005033117400939447],[124,42,69,-0.004565699021269815],[124,42,70,-0.003932231222036704],[124,42,71,-0.00314193623896655],[124,42,72,-0.002205762627864663],[124,42,73,-0.001136542184775075],[124,42,74,5.093511178854152E-5],[124,42,75,0.0013399276295286485],[124,42,76,0.0027118293842010766],[124,42,77,0.0041463372380884525],[124,42,78,0.005621696953611204],[124,42,79,0.0071150269111580336],[124,43,64,-0.0033307084586359026],[124,43,65,-0.003613665947811436],[124,43,66,-0.0037121238633048377],[124,43,67,-0.0036281181409931816],[124,43,68,-0.0033688231685883555],[124,43,69,-0.0029418192195908434],[124,43,70,-0.0023554626158793905],[124,43,71,-0.0016192601694069405],[124,43,72,-7.441413189303856E-4],[124,43,73,2.573515794560732E-4],[124,43,74,0.0013709545924400623],[124,43,75,0.002580654762575951],[124,43,76,0.003868743264400419],[124,43,77,0.005215948373003213],[124,43,78,0.00660164728718984],[124,43,79,0.00800415569721966],[124,44,64,-0.0015574988524039326],[124,44,65,-0.0018559187900619922],[124,44,66,-0.00197686150341718],[124,44,67,-0.0019207779320228949],[124,44,68,-0.0016948638737197977],[124,44,69,-0.00130780229082012],[124,44,70,-7.686528608011551E-4],[124,44,71,-8.723471592536474E-5],[124,44,72,7.255589947048657E-4],[124,44,73,0.0016575286000466928],[124,44,74,0.002695017347910958],[124,44,75,0.0038228424753000002],[124,44,76,0.005024307396167373],[124,44,77,0.006281294309934764],[124,44,78,0.007574436362520055],[124,44,79,0.008883368334793865],[124,45,64,2.214586960901424E-4],[124,45,65,-9.092244141455897E-5],[124,45,66,-2.332686968886518E-4],[124,45,67,-2.0422309100332444E-4],[124,45,68,-1.1021130739962664E-5],[124,45,69,3.363859463821811E-4],[124,45,70,8.28125906950142E-4],[124,45,71,0.0014540103729398562],[124,45,72,0.002203169558264593],[124,45,73,0.003063769798007104],[124,45,74,0.004022813877026535],[124,45,75,0.005066023954501388],[124,45,76,0.006177806679985426],[124,45,77,0.007341299906421749],[124,45,78,0.00853850022801598],[124,45,79,0.00975047040770435],[124,46,64,0.002022096251997354],[124,46,65,0.0016961380629889084],[124,46,66,0.0015324788808812127],[124,46,67,0.001534463839825766],[124,46,68,0.001694766799155275],[124,46,69,0.0020019804409588966],[124,46,70,0.0024452860645488893],[124,46,71,0.0030140430988374513],[124,46,72,0.0036973662196653025],[124,46,73,0.004483786350422915],[124,46,74,0.005360995682902347],[124,46,75,0.006315676639119619],[124,46,76,0.007333414487405094],[124,46,77,0.008398693129087835],[124,46,78,0.009494973387338318],[124,46,79,0.010604852958993393],[124,47,64,0.003860270567139131],[124,47,65,0.003519962185474982],[124,47,66,0.003334032779010715],[124,47,67,0.0033079413965827957],[124,47,68,0.0034341864105983224],[124,47,69,0.0036997002443657596],[124,47,70,0.004092564542438564],[124,47,71,0.004601582494425735],[124,47,72,0.00521579283314667],[124,47,73,0.0059240689830923395],[124,47,74,0.0067148036378789555],[124,47,75,0.007575678822369128],[124,47,76,0.008493521280465193],[124,47,77,0.009454242824973955],[124,47,78,0.010442865093150266],[124,47,79,0.011443627972380946],[124,48,64,0.00569675433245679],[124,48,65,0.005341411136726802],[124,48,66,0.005132607088447931],[124,48,67,0.005078008611349924],[124,48,68,0.005169844403124284],[124,48,69,0.005393189723694752],[124,48,70,0.005734870472025029],[124,48,71,0.006183017312292846],[124,48,72,0.0067265124956016956],[124,48,73,0.007354523226751757],[124,48,74,0.00805612200568556],[124,48,75,0.00881999414284716],[124,48,76,0.009634232425224152],[124,48,77,0.010486218697015976],[124,48,78,0.011362591917449255],[124,48,79,0.012249302070098705],[124,49,64,0.0074833749873135244],[124,49,65,0.007112706691079777],[124,49,66,0.006881096239463207],[124,49,67,0.006798479920745387],[124,49,68,0.006856720340063504],[124,49,69,0.0070388561244472065],[124,49,70,0.007330306916892501],[124,49,71,0.007718408956474059],[124,49,72,0.008191792062776164],[124,49,73,0.008739844672746147],[124,49,74,0.009352267517124148],[124,49,75,0.01001871628542182],[124,49,76,0.010728533397709846],[124,49,77,0.011470568779979148],[124,49,78,0.012233089329336993],[124,49,79,0.013003776557673838],[124,50,64,0.009179623375648207],[124,50,65,0.008793683125680496],[124,50,66,0.008539916703224442],[124,50,67,0.008430556642898617],[124,50,68,0.008457001622286915],[124,50,69,0.008600096158742137],[124,50,70,0.008843713719466927],[124,50,71,0.00917427393394781],[124,50,72,0.009580048407640741],[124,50,73,0.010050556189502277],[124,50,74,0.010576049642217634],[124,50,75,0.011147091217673958],[124,50,76,0.011754221400956855],[124,50,77,0.01238771785567696],[124,50,78,0.013037445583550853],[124,50,79,0.013692797703785974],[124,51,64,0.010752446173760987],[124,51,65,0.010351583833740357],[124,51,66,0.010076807023820316],[124,51,67,0.009942631950381963],[124,51,68,0.009939895555804504],[124,51,69,0.010047116708995904],[124,51,70,0.010246497825863008],[124,51,71,0.01052342430679386],[124,51,72,0.010865699096768842],[124,51,73,0.011262868573497287],[124,51,74,0.011705640675969126],[124,51,75,0.012185395931192718],[124,51,76,0.012693791788881694],[124,51,77,0.01322246043424074],[124,51,78,0.013762800019591796],[124,51,79,0.014305859038331344],[124,52,64,0.012176011506682937],[124,52,65,0.01176083070060055],[124,52,66,0.011466600594021291],[124,52,67,0.011310068746135164],[124,52,68,0.011281414525560965],[124,52,69,0.011356728843316023],[124,52,70,0.0115164370972655],[124,52,71,0.011744781748226966],[124,52,72,0.012028986709506381],[124,52,73,0.012358514788002657],[124,52,74,0.012724419252470632],[124,52,75,0.01311879034153013],[124,52,76,0.013534297267215696],[124,52,77,0.013963826021081555],[124,52,78,0.01440021305094259],[124,52,79,0.014445699415610684],[124,53,64,0.013431446716257149],[124,53,65,0.013002765173487458],[124,53,66,0.012690970086675787],[124,53,67,0.012514949342235304],[124,53,68,0.012464133166696954],[124,53,69,0.012512114028048239],[124,53,70,0.012637456489568048],[124,53,71,0.012823164081993082],[124,53,72,0.013055775678045023],[124,53,73,0.013324556666601765],[124,53,74,0.013620786162936093],[124,53,75,0.013937141220117015],[124,53,76,0.01426717874117348],[124,53,77,0.014604915533786787],[124,53,78,0.014488615166135237],[124,53,79,0.014124436586552632],[124,54,64,0.014506547266140398],[124,54,65,0.014065359977186661],[124,54,66,0.013738142474283075],[124,54,67,0.013545795861115399],[124,54,68,0.01347691644315373],[124,54,69,0.01350256144020817],[124,54,70,0.013599375498857702],[124,54,71,0.013749043198997649],[124,54,72,0.013937320539400742],[124,54,73,0.014153162969905021],[124,54,74,0.01438795136325407],[124,54,75,0.014634817040139667],[124,54,76,0.014715863187614059],[124,54,77,0.014437671717405228],[124,54,78,0.014160769444201778],[124,54,79,0.013889839918624391],[124,55,64,0.0144180249505988],[124,55,65,0.014876654992894098],[124,55,66,0.014602583597979824],[124,55,67,0.014397260306668522],[124,55,68,0.014314617570194968],[124,55,69,0.014323175307892845],[124,55,70,0.014397625794242091],[124,55,71,0.014518273267427294],[124,55,72,0.014670004511164549],[124,55,73,0.014841357703258801],[124,55,74,0.014737914280309985],[124,55,75,0.014533054688277787],[124,55,76,0.014326729663987398],[124,55,77,0.01412315878804134],[124,55,78,0.013926051233484494],[124,55,79,0.013738924795323614],[124,56,64,0.013818349996083128],[124,56,65,0.01428849745170274],[124,56,66,0.014644334157182762],[124,56,67,0.014861472426565022],[124,56,68,0.014953235917728182],[124,56,69,0.01495364971193428],[124,56,70,0.014890022091026692],[124,56,71,0.014783516327784157],[124,56,72,0.014650236340090715],[124,56,73,0.014502212411243907],[124,56,74,0.014348285289422112],[124,56,75,0.014194887274095512],[124,56,76,0.014046719187032252],[124,56,77,0.013907322408620982],[124,56,78,0.013779545434521987],[124,56,79,0.013665904671059086],[124,57,64,0.013398598958846727],[124,57,65,0.013878962687544603],[124,57,66,0.014244403848505432],[124,57,67,0.01446907456734005],[124,57,68,0.014567320568036283],[124,57,69,0.01457560390996493],[124,57,70,0.014523166332808772],[124,57,71,0.014432610787036627],[124,57,72,0.014321037937255122],[124,57,73,0.014201081140256578],[124,57,74,0.014081838076187786],[124,57,75,0.013969697512974626],[124,57,76,0.013869059981183658],[124,57,77,0.013782951426957478],[124,57,78,0.013713529192515454],[124,57,79,0.013662479944809878],[124,58,64,0.013147762130400618],[124,58,65,0.013636992907681127],[124,58,66,0.01400960969916672],[124,58,67,0.014238526787102263],[124,58,68,0.014339145167935892],[124,58,69,0.014350263712841356],[124,58,70,0.014303006276233593],[124,58,71,0.014221411346069579],[124,58,72,0.014123613598565189],[124,58,73,0.01402292243520621],[124,58,74,0.013928795555599829],[124,58,75,0.013847705927780913],[124,58,76,0.013783900821186494],[124,58,77,0.013740051864687488],[124,58,78,0.013717795380781977],[124,58,79,0.01371816252511013],[124,59,64,0.013050082692636153],[124,59,65,0.013546814515017042],[124,59,66,0.013924261539705178],[124,59,67,0.01415433067671775],[124,59,68,0.014253493945493278],[124,59,69,0.014262756531784429],[124,59,70,0.014215046493206377],[124,59,71,0.014135810925687962],[124,59,72,0.014044236456638081],[124,59,73,0.013954365347372115],[124,59,74,0.013876105143957193],[124,59,75,0.013816130129401511],[124,59,76,0.013778673139567148],[124,59,77,0.013766206608347462],[124,59,78,0.01378001200245505],[124,59,79,0.013820637090374368],[124,60,64,0.013085540187774686],[124,60,65,0.013588422423913084],[124,60,66,0.013968497213544288],[124,60,67,0.014196896011953085],[124,60,68,0.014291159497939026],[124,60,69,0.014294341850740444],[124,60,70,0.014241072951458269],[124,60,71,0.01415815951402174],[124,60,72,0.014065838251189563],[124,60,73,0.013978923413645398],[124,60,74,0.013907846537933902],[124,60,75,0.013859586557734243],[124,60,76,0.013838488747526986],[124,60,77,0.013846971276074649],[124,60,78,0.013886118447212416],[124,60,79,0.013956159994958212],[124,61,64,0.013230368712337843],[124,61,65,0.01373809982671797],[124,61,66,0.01411880003436098],[124,61,67,0.014343052316853164],[124,61,68,0.01442944574689128],[124,61,69,0.014422903909514274],[124,61,70,0.014359634667767577],[124,61,71,0.014267734799432115],[124,61,72,0.014168469591108571],[124,61,73,0.014077445720214984],[124,61,74,0.014005675168371342],[124,61,75,0.013960528232628965],[124,61,76,0.013946574019885496],[124,61,77,0.013966307122578984],[124,61,78,0.01402075947826164],[124,61,79,0.014109996709601405],[124,62,64,0.013457610413660106],[124,62,65,0.013968974021371322],[124,62,66,0.014348552533267342],[124,62,67,0.014566596712160191],[124,62,68,0.014642707109183454],[124,62,69,0.014623480512984309],[124,62,70,0.014546561413397158],[124,62,71,0.014441248827366844],[124,62,72,0.01432979628223484],[124,62,73,0.014228604162932475],[124,62,74,0.014149302085234922],[124,62,75,0.014099719283684344],[124,62,76,0.014084741325203966],[124,62,77,0.014107051775748764],[124,62,78,0.014167757755433226],[124,62,79,0.014266898615096304],[124,63,64,0.013737704784450756],[124,63,65,0.01425160882625963],[124,63,66,0.014628627043182948],[124,63,67,0.014838878614368058],[124,63,68,0.014902924467053956],[124,63,69,0.014868828567946727],[124,63,70,0.01477551809043477],[124,63,71,0.01465339131617251],[124,63,72,0.01452563237127756],[124,63,73,0.014409417569339755],[124,63,74,0.014317010952456733],[124,63,75,0.014256746950679964],[124,63,76,0.014233898405422163],[124,63,77,0.014251428521473323],[124,63,78,0.014310625623138229],[124,63,79,0.014411619890269982],[124,64,64,0.014039114162609055],[124,64,65,0.014554634018800127],[124,64,66,0.014928013577531799],[124,64,67,0.015129421760843352],[124,64,68,0.015180318431788067],[124,64,69,0.015130026860244743],[124,64,70,0.0150185963097717],[124,64,71,0.014877410179919637],[124,64,72,0.014730510470325336],[124,64,73,0.014595813262205713],[124,64,74,0.01448621274691272],[124,64,75,0.014410571662373377],[124,64,76,0.014374596325422536],[124,64,77,0.01438159476915348],[124,64,78,0.014433116807286518],[124,64,79,0.014529475149788555],[124,65,64,0.014328985750214318],[124,65,65,0.014845412139285311],[124,65,66,0.015214485364747007],[124,65,67,0.015406583940734967],[124,65,68,0.015444000299551622],[124,65,69,0.015377116490132502],[124,65,70,0.015246943607554814],[124,65,71,0.015085729713255705],[124,65,72,0.014918289834175471],[124,65,73,0.014763226552886945],[124,65,74,0.014634038664744702],[124,65,75,0.014540115710587323],[124,65,76,0.014487616522057663],[124,65,77,0.01448023023907112],[124,65,78,0.01451981857316772],[124,65,79,0.014606938394011225],[124,66,64,0.014573850367755867],[124,66,65,0.01509074290174425],[124,66,66,0.015455302299399993],[124,66,67,0.015338489815625685],[124,66,68,0.015328733678625289],[124,66,69,0.015423690064021],[124,66,70,0.015431430637432882],[124,66,71,0.01525060679449166],[124,66,72,0.015062802564553982],[124,66,73,0.01488723855518745],[124,66,74,0.014737971640901532],[124,66,75,0.014624890939204643],[124,66,76,0.014554597384571695],[124,66,77,0.014531165314520113],[124,66,78,0.014556784796968472],[124,66,79,0.014632283732321043],[124,67,64,0.01474035805756863],[124,67,65,0.015257605349291386],[124,67,66,0.015440181962469475],[124,67,67,0.015284400378394838],[124,67,68,0.015287930534638141],[124,67,69,0.015398830697540446],[124,67,70,0.015543356571061937],[124,67,71,0.015344825358805665],[124,67,72,0.015138538211451804],[124,67,73,0.014944252606872616],[124,67,74,0.014776516784354514],[124,67,75,0.014645665764079824],[124,67,76,0.01455870069420343],[124,67,77,0.01452004989653882],[124,67,78,0.01453221029720404],[124,67,79,0.014596268233197405],[124,68,64,0.014796050544527916],[124,68,65,0.01531393778306457],[124,68,66,0.015484788403428141],[124,68,67,0.015337388305247529],[124,68,68,0.015352034855655027],[124,68,69,0.015476173547182817],[124,68,70,0.01555519282949643],[124,68,71,0.01534242928395918],[124,68,72,0.015121366932595089],[124,68,73,0.01491220947690671],[124,68,74,0.014729910922238148],[124,68,75,0.01458517173024644],[124,68,76,0.014485318140343328],[124,68,77,0.014435062987479156],[124,68,78,0.014437146659113246],[124,68,79,0.014492857138988992],[124,69,64,0.014710176465606207],[124,69,65,0.015229461417633778],[124,69,66,0.015584567721172683],[124,69,67,0.01552632578524841],[124,69,68,0.01554902467131291],[124,69,69,0.01562795842487364],[124,69,70,0.015441371070487975],[124,69,71,0.015219499474137546],[124,69,72,0.014989306785746467],[124,69,73,0.014771346647396539],[124,69,74,0.01458087618159413],[124,69,75,0.014428854103447318],[124,69,76,0.014322821913098392],[124,69,77,0.01426766644853997],[124,69,78,0.014266262394551678],[124,69,79,0.014319993648462963],[124,70,64,0.014470155747104724],[124,70,65,0.014992201786605618],[124,70,66,0.015347569093030772],[124,70,67,0.015509447144716705],[124,70,68,0.015503703995170376],[124,70,69,0.015384017479184265],[124,70,70,0.01519440197706304],[124,70,71,0.014969830271578059],[124,70,72,0.014737573206445491],[124,70,73,0.014518429671583948],[124,70,74,0.01432784415590787],[124,70,75,0.014176909441885146],[124,70,76,0.014073252345846402],[124,70,77,0.01402180073194599],[124,70,78,0.014025430343520866],[124,70,79,0.014085490300898857],[124,71,64,0.014112274768841028],[124,71,65,0.014639194317920804],[124,71,66,0.014997706520683404],[124,71,67,0.015161917301130071],[124,71,68,0.01515836779132524],[124,71,69,0.015041094878509726],[124,71,70,0.014854400618686307],[124,71,71,0.014633483902254347],[124,71,72,0.014405784106178958],[124,71,73,0.014192215329996991],[124,71,74,0.014008288405308067],[124,71,75,0.013865118201448756],[124,71,76,0.013770314079513098],[124,71,77,0.013728751670634238],[124,71,78,0.013743224470260036],[124,71,79,0.01381497404556641],[124,72,64,0.013676861681013244],[124,72,65,0.014211388185261771],[124,72,66,0.014576513305683186],[124,72,67,0.014747447248799743],[124,72,68,0.014751292135769084],[124,72,69,0.014642147380030964],[124,72,70,0.01446434377722907],[124,72,71,0.014253086389033472],[124,72,72,0.014035798869723226],[124,72,73,0.013833358833178586],[124,72,74,0.013661221406654074],[124,72,75,0.013530428449661756],[124,72,76,0.013448501244802262],[124,72,77,0.013420214790315315],[124,72,78,0.013448252139269538],[124,72,79,0.013533737535203304],[124,73,64,0.013199349164474555],[124,73,65,0.013744662425898902],[124,73,66,0.014120264716249385],[124,73,67,0.014302684607006266],[124,73,68,0.014319419806911628],[124,73,69,0.01422423784426633],[124,73,70,0.014061164959226241],[124,73,71,0.01386514079829132],[124,73,72,0.013663357785317203],[124,73,73,0.01347649223680906],[124,73,74,0.013319824337795683],[124,73,75,0.013204244424525821],[124,73,76,0.013137143346847418],[124,73,77,0.013123185004311082],[124,73,78,0.0131649594635801],[124,73,79,0.013263515368173256],[124,74,64,0.012711938421980993],[124,74,65,0.013271491650948387],[124,74,66,0.013661639930236126],[124,74,67,0.013860458403400647],[124,74,68,0.013895636193320482],[124,74,69,0.013820146684224006],[124,74,70,0.013677328106230617],[124,74,71,0.013501549903096531],[124,74,72,0.013319539756015322],[124,74,73,0.01315160333458767],[124,74,74,0.013012733878626505],[124,74,75,0.012913609041287273],[124,74,76,0.012861472747613897],[124,74,77,0.01286090014087337],[124,74,78,0.012914443999832279],[124,74,79,0.01302316131096604],[124,75,64,0.012245270535387051],[124,75,65,0.012822619704517039],[124,75,66,0.013231392491383108],[124,75,67,0.013451441157021408],[124,75,68,0.013510416025152547],[124,75,69,0.013459993345014692],[124,75,70,0.013342411829962713],[124,75,71,0.01319114988066729],[124,75,72,0.013032231576779645],[124,75,73,0.012885426674364585],[124,75,74,0.012765341720817568],[124,75,75,0.01268239972145578],[124,75,76,0.012643706111295585],[124,75,77,0.012653799099628079],[124,75,78,0.01271528276171742],[124,75,79,0.012829341548861502],[124,76,64,0.011830103297777781],[124,76,65,0.012428739386167375],[124,76,66,0.012860027407056404],[124,76,67,0.013105818153178914],[124,76,68,0.013193477829131429],[124,76,69,0.013172866042551796],[124,76,70,0.013084702462829728],[124,76,71,0.012961253413937189],[124,76,72,0.012827607244297818],[124,76,73,0.01270284527938947],[124,76,74,0.01260110549990548],[124,76,75,0.01253253640512913],[124,76,76,0.012504138834885875],[124,76,77,0.012520493831983528],[124,76,78,0.012584374928299242],[124,76,79,0.012697243529245656],[124,77,64,0.011498991472120518],[124,77,65,0.012122176188173276],[124,77,66,0.012579482847631513],[124,77,67,0.012854961887757796],[124,77,68,0.0129754441131146],[124,77,69,0.012988457810580363],[124,77,70,0.012932794033561523],[124,77,71,0.012839200386426705],[124,77,72,0.012731615587864406],[124,77,73,0.012628301481802535],[124,77,74,0.01254286969454332],[124,77,75,0.012485200446638287],[124,77,76,0.012462251334764219],[124,77,77,0.01247875420045044],[124,77,78,0.012537798496851505],[124,77,79,0.012641299849522144],[124,78,64,0.011287968278502505],[124,78,65,0.011938573843790093],[124,78,66,0.012424814247135279],[124,78,67,0.012733109493122698],[124,78,68,0.012889505116778518],[124,78,69,0.012938706732637214],[124,78,70,0.012917193103269406],[124,78,71,0.01285391418492699],[124,78,72,0.012771474336454503],[124,78,73,0.01268721510560583],[124,78,74,0.012614194873045617],[124,78,75,0.012562062935939143],[124,78,76,0.012537825911451988],[124,78,77,0.012546504633719471],[124,78,78,0.012591680003843628],[124,78,79,0.012675926528948212],[124,79,64,0.011218160400811807],[124,79,65,0.011898589767802501],[124,79,66,0.012416184524120317],[124,79,67,0.012759883251271602],[124,79,68,0.012954712562662554],[124,79,69,0.01304210182625497],[124,79,70,0.013055863258885213],[124,79,71,0.01302289169938054],[124,79,72,0.012964286929130141],[124,79,73,0.01289637790532337],[124,79,74,0.012831646292631069],[124,79,75,0.012779546971396346],[124,79,76,0.01274722348935718],[124,79,77,0.012740116707615854],[124,79,78,0.012762465167981098],[124,79,79,0.01281769597570799],[124,80,64,0.011240805887854201],[124,80,65,0.01195311788542428],[124,80,66,0.012504875761871625],[124,80,67,0.012887731633603438],[124,80,68,0.013125513855044952],[124,80,69,0.013255968528453187],[124,80,70,0.013309890534190556],[124,80,71,0.01331182732359482],[124,80,72,0.013281136392150072],[124,80,73,0.013232947046355515],[124,80,74,0.013179023967705126],[124,80,75,0.013128530359801681],[124,80,76,0.013088688743752864],[124,80,77,0.013065337740751349],[124,80,78,0.013063383447149161],[124,80,79,0.013087144264229985],[124,81,64,0.011304064684628384],[124,81,65,0.012049844997592552],[124,81,66,0.012638811505217415],[124,81,67,0.013065564876134549],[124,81,68,0.013352614956733755],[124,81,69,0.01353367536378115],[124,81,70,0.013636185922628156],[124,81,71,0.01368202755887997],[124,81,72,0.01368851667751427],[124,81,73,0.013669306099079697],[124,81,74,0.013635190173816375],[124,81,75,0.01359481196788298],[124,81,76,0.013555270685586833],[124,81,77,0.013522627755753188],[124,81,78,0.013502310267206464],[124,81,79,0.013499410685657168],[124,82,64,0.011371672551054243],[124,82,65,0.012151867474490628],[124,82,66,0.012780925087774033],[124,82,67,0.013256644766764839],[124,82,68,0.013600151520979611],[124,82,69,0.013840845163326914],[124,82,70,0.014002503677051456],[124,82,71,0.014104019805518496],[124,82,72,0.014160338696925194],[124,82,73,0.014183304111945823],[124,82,74,0.014182410922079591],[124,82,75,0.014165461891581887],[124,82,76,0.014139126997226123],[124,82,77,0.014109403795965076],[124,82,78,0.014081977598942906],[124,82,79,0.014062480449198918],[124,83,64,0.011420345223902088],[124,83,65,0.012235142490722797],[124,83,66,0.012906687677550488],[124,83,67,0.013436223007228618],[124,83,68,0.01384347119760723],[124,83,69,0.014153312482154515],[124,83,70,0.014385601860326743],[124,83,71,0.014555940381462901],[124,83,72,0.014676566017899061],[124,83,73,0.014757154731956506],[124,83,74,0.014805529552600376],[124,83,75,0.014828275735985988],[124,83,76,0.014831260338718363],[124,83,77,0.014820054781682584],[124,83,78,0.014800259223896843],[124,83,79,0.014777727797995712],[124,84,64,0.011437379094309773],[124,84,65,0.012286132519115261],[124,84,66,0.013001825065534387],[124,84,67,0.013589362397424849],[124,84,68,0.014067091415832162],[124,84,69,0.014455247793689046],[124,84,70,0.01476955972686589],[124,84,71,0.015022068317768504],[124,84,72,0.01522198433743352],[124,84,73,0.015376456341674649],[124,84,74,0.01549124801955861],[124,84,75,0.015571322906145582],[124,84,76,0.015621334841265046],[124,84,77,0.015646022800377808],[124,84,78,0.015650508960463758],[124,84,79,0.015640499091414115],[124,85,64,0.01141845481493649],[124,85,65,0.012299649423253053],[124,85,66,0.013060229397312145],[124,85,67,0.013708946826060692],[124,85,68,0.014262838330001394],[124,85,69,0.014737453766661992],[124,85,70,0.015144256778619287],[124,85,71,0.01549150923477356],[124,85,72,0.015785108426595165],[124,85,73,0.016029336232642796],[124,85,74,0.016227518161530705],[124,85,75,0.0163825904346231],[124,85,76,0.01645979415896857],[124,85,77,0.016404811366699013],[124,85,78,0.01638004705000856],[124,85,79,0.01638040928498254],[124,86,64,0.011365650511366104],[124,86,65,0.012276904816404885],[124,86,66,0.013082072436895997],[124,86,67,0.013793886495961484],[124,86,68,0.014428173109478156],[124,86,69,0.0149958394737319],[124,86,70,0.015504018931123747],[124,86,71,0.01595703424522124],[124,86,72,0.016357230934258695],[124,86,73,0.01624863744637076],[124,86,74,0.01598312364878746],[124,86,75,0.015765912714970957],[124,86,76,0.015596082218496087],[124,86,77,0.015471882172442131],[124,86,78,0.015390456302950677],[124,86,79,0.015347660229675606],[124,87,64,0.01128567075600671],[124,87,65,0.01222377284473383],[124,87,66,0.013072126453821414],[124,87,67,0.01384752433159857],[124,87,68,0.014564711296176234],[124,87,69,0.015230077951784186],[124,87,70,0.015846436829805816],[124,87,71,0.016414078473425898],[124,87,72,0.016066164626594732],[124,87,73,0.015636798475594127],[124,87,74,0.015260002755348228],[124,87,75,0.014938068343100134],[124,87,76,0.014672489569268863],[124,87,77,0.014463580608652748],[124,87,78,0.014310188679705061],[124,87,79,0.014209504968262843],[124,88,64,0.01118829698159929],[124,88,65,0.012149271077570793],[124,88,66,0.013038298360178457],[124,88,67,0.01387624906800545],[124,88,68,0.014676940526293553],[124,88,69,0.015442452133545876],[124,88,70,0.016171360987742824],[124,88,71,0.01617422025142044],[124,88,72,0.015571034822560129],[124,88,73,0.015016913419541655],[124,88,74,0.014517808493081303],[124,88,75,0.0140790679227814],[124,88,76,0.013704932795086512],[124,88,77,0.01339813239807372],[124,88,78,0.013159577633403379],[124,88,79,0.012988153811156472],[124,89,64,0.011085064563371026],[124,89,65,0.012064264744874762],[124,89,66,0.01299038229141863],[124,89,67,0.013888320102218098],[124,89,68,0.014771141514607488],[124,89,69,0.015636893796643524],[124,89,70,0.016480078071736636],[124,89,71,0.015814267144097473],[124,89,72,0.015082171736914332],[124,89,73,0.014396724611684118],[124,89,74,0.013767406835749013],[124,89,75,0.013202857989325197],[124,89,76,0.012710338237244281],[124,89,77,0.012295289961216762],[124,89,78,0.011961000235137019],[124,89,79,0.01170836518298545],[124,90,64,0.010988171381746426],[124,90,65,0.011980399149726186],[124,90,66,0.012939035421469462],[124,90,67,0.013892908798675918],[124,90,68,0.01485451682834336],[124,90,69,0.01581821982775747],[124,90,70,0.016358822526623414],[124,90,71,0.015466591219785122],[124,90,72,0.0146037430391488],[124,90,73,0.013783740239967026],[124,90,74,0.013019705645679747],[124,90,75,0.012323736168175808],[124,90,76,0.011706317348416874],[124,90,77,0.011175840570477257],[124,90,78,0.010738224340128154],[124,90,79,0.010396640765334494],[124,91,64,0.010909622289510066],[124,91,65,0.011909264699956413],[124,91,66,0.012894981427082662],[124,91,67,0.013899360576895918],[124,91,68,0.014934531631426438],[124,91,69,0.015991569774491815],[124,91,70,0.016144606792841198],[124,91,71,0.015131814287969217],[124,91,72,0.0141396330705997],[124,91,73,0.013185275643327263],[124,91,74,0.012285545619728805],[124,91,75,0.011456089439207081],[124,91,76,0.010710752797805348],[124,91,77,0.010061043594448702],[124,91,78,0.00951570291738948],[124,91,79,0.009080385328871883],[124,92,64,0.010860613546601177],[124,92,65,0.011861798646018568],[124,92,66,0.012868445666675108],[124,92,67,0.013916681771470074],[124,92,68,0.015018470257231162],[124,92,69,0.016162048354433488],[124,92,70,0.01593818697877024],[124,92,71,0.014810368007243562],[124,92,72,0.013693467019995884],[124,92,73,0.012608349252184773],[124,92,74,0.011575463699112252],[124,92,75,0.010614023317243749],[124,92,76,0.009741294282350477],[124,92,77,0.008971996275560055],[124,92,78,0.00831781547873889],[124,92,79,0.00778703167894026],[124,93,64,0.0108511609507135],[124,93,65,0.011847927280364025],[124,93,66,0.012868825813632355],[124,93,67,0.013953254939513847],[124,93,68,0.015113212167293947],[124,93,69,0.016334576308241724],[124,93,70,0.01573704374741132],[124,93,71,0.014502458534286696],[124,93,72,0.013268470262870603],[124,93,73,0.012059430954624186],[124,93,74,0.010899327117423986],[124,93,75,0.009810880544016649],[124,93,76,0.008814763081117696],[124,93,77,0.007928927533194519],[124,93,78,0.007168056559323903],[124,93,79,0.006543131123305183],[124,94,64,0.010889975081084394],[124,94,65,0.011876452045423515],[124,94,66,0.012904601381675688],[124,94,67,0.014016785997701594],[124,94,68,0.01522523057350521],[124,94,69,0.016513952720219466],[124,94,70,0.01553849211152167],[124,94,71,0.01420784762415622],[124,94,72,0.012867160484229917],[124,94,73,0.011544040837804099],[124,94,74,0.010265836399757996],[124,94,75,0.009058647995000916],[124,94,76,0.007946464467201871],[124,94,77,0.006950419330606621],[124,94,78,0.00608817121733754],[124,94,79,0.005373409856627823],[124,95,64,0.010984586784942052],[124,95,65,0.011955182711469699],[124,95,66,0.012983485299135419],[124,95,67,0.014114486298687045],[124,95,68,0.015360816740825673],[124,95,69,0.01670305596107445],[124,95,70,0.015339344001741527],[124,95,71,0.013925447715619495],[124,95,72,0.012490870386287822],[124,95,73,0.011066196410976224],[124,95,74,0.00968189575552688],[124,95,75,0.008367250605954753],[124,95,76,0.0071494071639392484],[124,95,77,0.0060525551873435385],[124,95,78,0.005097237535330317],[124,95,79,0.004299791643164843],[124,96,64,0.011141725769806007],[124,96,65,0.01209132052093388],[124,96,66,0.013112820428623103],[124,96,67,0.01425349250386213],[124,96,68,0.01552653274546898],[124,96,69,0.016555146771285546],[124,96,70,0.015135367287161474],[124,96,71,0.013652728727273416],[124,96,72,0.012139098953345497],[124,96,73,0.0106277065630395],[124,96,74,0.009151849428843438],[124,96,75,0.00774373121888613],[124,96,76,0.006433429100124416],[124,96,77,0.00524799545962986],[124,96,78,0.004210696119437807],[124,96,79,0.003340387167056881],[124,97,64,0.011367954919094758],[124,97,65,0.012292093951064407],[124,97,66,0.01330022368757429],[124,97,67,0.014441526875006858],[124,97,68,0.015729895238758795],[124,97,69,0.016381659829247965],[124,97,70,0.014920538962621011],[124,97,71,0.013384934469073151],[124,97,72,0.011808689404652262],[124,97,73,0.010227310644333529],[124,97,74,0.008676582683639428],[124,97,75,0.007191315335933748],[124,97,76,0.005804228782498541],[124,97,77,0.004544979049356431],[124,97,78,0.0034393266058876867],[124,97,79,0.002508450408166025],[124,98,64,0.011670562722302241],[124,98,65,0.01256564952117331],[124,98,66,0.01355448020248617],[124,98,67,0.014687800390505568],[124,98,68,0.01598029255862567],[124,98,69,0.016173362914359002],[124,98,70,0.014686090399841503],[124,98,71,0.013114106740287148],[124,98,72,0.01149283211394959],[124,98,73,0.009859661189903278],[124,98,74,0.00825248620644183],[124,98,75,0.0067083598525523695],[124,98,76,0.005262301663182529],[124,98,77,0.003946251237988613],[124,98,78,0.0027881711962781425],[124,98,79,0.0018113023906027748],[124,99,64,0.01205871600347707],[124,99,65,0.012922199863245791],[124,99,66,0.013886689724545499],[124,99,67,0.015004160891623625],[124,99,68,0.016290137338172538],[124,99,69,0.015917568208789968],[124,99,70,0.01441934272903862],[124,99,71,0.012827915339421491],[124,99,72,0.011179890911879996],[124,99,73,0.009514148920167918],[124,99,74,0.007870282808241582],[124,99,75,0.006287184918673944],[124,99,76,0.004801780935107235],[124,99,77,0.0034479173749080707],[124,99,78,0.0022554052542573407],[124,99,79,0.001249222640672671],[124,100,64,0.012544874942093784],[124,100,65,0.013375431084611379],[124,100,66,0.014311667345974517],[124,100,67,0.015406488280123372],[124,100,68,0.016676256583213343],[124,100,69,0.015596748203752273],[124,100,70,0.014102330574498771],[124,100,71,0.012508292354813806],[124,100,72,0.01085205131497485],[124,100,73,0.009173568765157574],[124,100,74,0.007513715398448222],[124,100,75,0.005912788148361002],[124,100,76,0.004409182239938503],[124,100,77,0.003038222180429819],[124,100,78,0.0018311550062985991],[124,100,79,8.143086808006148E-4],[124,101,64,0.01314375436431985],[124,101,65,0.013941302109681484],[124,101,66,0.014846583164673131],[124,101,67,0.01591317471043524],[124,101,68,0.01653001880308446],[124,101,69,0.01519036031774982],[124,101,70,0.013713760076870952],[124,101,71,0.012133503804594502],[124,101,72,0.01048748146384089],[124,101,73,0.008816342007216742],[124,101,74,0.007161799293204927],[124,101,75,0.005565093991804407],[124,101,76,0.004065615856694555],[124,101,77,0.002699690294861736],[124,101,78,0.0014995327223165018],[124,101,79,4.923737590370284E-4],[124,102,64,0.013841251607037829],[124,102,65,0.014605265982264954],[124,102,66,0.015476516218660481],[124,102,67,0.01650902519960492],[124,102,68,0.016020089898615662],[124,102,69,0.014714009294547218],[124,102,70,0.013269416903960683],[124,102,71,0.011719519640682305],[124,102,72,0.010102324827981035],[124,102,73,0.008458748725636324],[124,102,74,0.006830880155280518],[124,102,75,0.005260404217347002],[124,102,76,0.0037871906360972276],[124,102,77,0.0024480508132631714],[124,102,78,0.0012756672187691333],[124,102,79,2.976983018627985E-4],[124,103,64,0.014601416648922205],[124,103,65,0.015329970091941224],[124,103,66,0.016162881013418652],[124,103,67,0.01656599916426486],[124,103,68,0.015469196704309643],[124,103,69,0.014208915963161007],[124,103,70,0.012811011353171857],[124,103,71,0.01130831060805004],[124,103,72,0.00973854740331133],[124,103,73,0.008142446159754202],[124,103,74,0.006561964598500519],[124,103,75,0.005038699155787171],[124,103,76,0.0036124579034462504],[124,103,77,0.0023200051596959166],[124,103,78,0.0011939815174753514],[124,103,79,2.6200256723049007E-4],[124,104,64,0.015389058175730162],[124,104,65,0.016079121050394878],[124,104,66,0.016825329346212215],[124,104,67,0.015957962956411244],[124,104,68,0.01491551169782682],[124,104,69,0.013713384681005268],[124,104,70,0.012376732059469505],[124,104,71,0.010937688309907568],[124,104,72,0.009433305433514255],[124,104,73,0.007903639319515939],[124,104,74,0.006389994890584203],[124,104,75,0.004933335189298841],[124,104,76,0.0035728591024121485],[124,104,77,0.0023447519582380076],[124,104,78,0.0012811127750564854],[124,104,79,4.090614881508319E-4],[124,105,64,0.01617225319557593],[124,105,65,0.016819961456285077],[124,105,66,0.01618053726417492],[124,105,67,0.015370748384484798],[124,105,68,0.014392540678973482],[124,105,69,0.013260575676989277],[124,105,70,0.011999109803432129],[124,105,71,0.010639271876645363],[124,105,72,0.009217025543564896],[124,105,73,0.007771284071351198],[124,105,74,0.006342183090201017],[124,105,75,0.004969516427014826],[124,105,76,0.003691339712796559],[124,105,77,0.002542745990916895],[124,105,78,0.0015548171016818275],[124,105,79,7.537541741687878E-4],[124,106,64,0.01669750582279292],[124,106,65,0.016180102636698498],[124,106,66,0.015576025343526227],[124,106,67,0.014831502929825402],[124,106,68,0.01392704508369739],[124,106,69,0.012876542031028653],[124,106,70,0.011703180899007693],[124,106,71,0.0104367880726209],[124,106,72,0.009111850111048998],[124,106,73,0.007765684297797178],[124,106,74,0.006436764314207098],[124,106,75,0.005163206082460181],[124,106,76,0.003981418379003422],[124,106,77,0.00292492237529679],[124,106,78,0.0020233438228458973],[124,106,79,0.00130158116674779],[124,107,64,0.016036020271134942],[124,107,65,0.015571711894262192],[124,107,66,0.015030284328953614],[124,107,67,0.01435847420227768],[124,107,68,0.013536670618237316],[124,107,69,0.012577986230684433],[124,107,70,0.011504386308941763],[124,107,71,0.010344126115139615],[124,107,72,0.009129859013896693],[124,107,73,0.007896889539667957],[124,107,74,0.006681576725626084],[124,107,75,0.0055198925718098766],[124,107,76,0.004446140102687744],[124,107,77,0.003491835037950771],[124,107,78,0.0026847546781265798],[124,107,79,0.0020481571915040614],[124,108,64,0.01542865967188205],[124,108,65,0.015022819758351453],[124,108,66,0.014550203920616412],[124,108,67,0.013958220503624602],[124,108,68,0.013227280521070653],[124,108,69,0.012369734608557],[124,108,70,0.01140620481108796],[124,108,71,0.010363145574650453],[124,108,72,0.009271066197569778],[124,108,73,0.00816289166729812],[124,108,74,0.007072466922358634],[124,108,75,0.006033209176064243],[124,108,76,0.005076912534306334],[124,108,77,0.004232708736751099],[124,108,78,0.003526187451920165],[124,108,79,0.0029786791647469194],[124,109,64,0.014867041490946841],[124,109,65,0.014525453671802127],[124,109,66,0.014127864366088896],[124,109,67,0.013622514086030895],[124,109,68,0.01298999188305914],[124,109,69,0.012241928087653935],[124,109,70,0.011397518661169061],[124,109,71,0.01048123584407971],[124,109,72,0.009521189617881886],[124,109,73,0.008547619232435934],[124,109,74,0.007591519501265008],[124,109,75,0.006683406192320127],[124,109,76,0.0058522244657788795],[124,109,77,0.005124403935991766],[124,109,78,0.004523063564294224],[124,109,79,0.004067369225773982],[124,110,64,0.014324271900622229],[124,110,65,0.014053201840202086],[124,110,66,0.013737011689207844],[124,110,67,0.013324935661461354],[124,110,68,0.012797913563454475],[124,110,69,0.01216692777090942],[124,110,70,0.011449710306261688],[124,110,71,0.010668625771570187],[124,110,72,0.009849193217403343],[124,110,73,0.009018728247313021],[124,110,74,0.008205109658168291],[124,110,75,0.007435674574024957],[124,110,76,0.0067362456879805944],[124,110,77,0.006130293884869376],[124,110,78,0.005638239180057762],[124,110,79,0.00527689257851842],[124,111,64,0.013752004230140032],[124,111,65,0.013558008475246467],[124,111,66,0.013329785541920396],[124,111,67,0.013017748771243435],[124,111,68,0.012603388745387266],[124,111,69,0.01209714570028043],[124,111,70,0.011515291240145633],[124,111,71,0.010878003092785724],[124,111,72,0.010208065884484889],[124,111,73,0.009529681110247247],[124,111,74,0.008867390140518934],[124,111,75,0.008245113798774472],[124,111,76,0.007685311737318803],[124,111,77,0.00720826453342606],[124,111,78,0.006831481126655581],[124,111,79,0.006569233923136137],[124,112,64,0.013098002973208154],[124,112,65,0.012986597950515492],[124,112,66,0.012852418600411461],[124,112,67,0.012647323928346383],[124,112,68,0.012353603959664216],[124,112,69,0.011981288512846668],[124,112,70,0.011545201404341328],[124,112,71,0.011063246727476684],[124,112,72,0.010555307344046335],[124,112,73,0.010042240573656472],[124,112,74,0.00954497440717348],[124,112,75,0.00908370730254807],[124,112,76,0.008677214353415374],[124,112,77,0.008342262355024927],[124,112,78,0.00809313603015343],[124,112,79,0.007941277421728456],[124,113,64,0.012331314231250971],[124,113,65,0.012306414282957538],[124,113,66,0.012271232885267496],[124,113,67,0.012179405525372127],[124,113,68,0.012014304228400916],[124,113,69,0.011785696231182136],[124,113,70,0.011506974704847461],[124,113,71,0.01119367597850076],[124,113,72,0.01086259440757609],[124,113,73,0.010530981721801298],[124,113,74,0.010215833610926857],[124,113,75,0.009933266079352337],[124,113,76,0.009697983874493327],[124,113,77,0.009522843069800224],[124,113,78,0.00941850966342755],[124,113,79,0.009393215839426913],[124,114,64,0.011441915368813973],[124,114,65,0.011505642444583151],[124,114,66,0.01157286768238519],[124,114,67,0.01159936516714194],[124,114,68,0.011569883825910164],[124,114,69,0.011494083698722356],[124,114,70,0.011383952442014608],[124,114,71,0.011252571270758122],[124,114,72,0.01111346334570795],[124,114,73,0.010980013438541271],[124,114,74,0.010864961016992651],[124,114,75,0.01077996870780063],[124,114,76,0.010735267912397553],[124,114,77,0.010739383170186705],[124,114,78,0.010798936688357966],[124,114,79,0.010918534286988772],[124,115,64,0.01043700262939675],[124,115,65,0.01058956772980257],[124,115,66,0.010760750419004872],[124,115,67,0.010908828074611925],[124,115,68,0.011020214743988517],[124,115,69,0.011104618215689087],[124,115,70,0.011172655886401185],[124,115,71,0.011234884422773395],[124,115,72,0.011301396167304752],[124,115,73,0.011381473370863131],[124,115,74,0.011483301738119796],[124,115,75,0.011613744631645613],[124,115,76,0.011778179142074942],[124,115,77,0.011980395096751265],[124,115,78,0.012222557948758272],[124,115,79,0.01250523636342586],[124,116,64,0.009337504083176535],[124,116,65,0.009577156212617585],[124,116,66,0.009851781752250047],[124,116,67,0.010122504110725608],[124,116,68,0.01037766750654907],[124,116,69,0.010627174667553274],[124,116,70,0.010880319075198956],[124,116,71,0.011145089682811676],[124,116,72,0.011428026306463467],[124,116,73,0.011734119369471382],[124,116,74,0.012066754801383308],[124,116,75,0.012427704795831133],[124,116,76,0.012817165038246491],[124,116,77,0.01323383892506011],[124,116,78,0.01367506921151286],[124,116,79,0.014137017446527017],[124,117,64,0.0081748217323995],[124,117,65,0.00849786014724137],[124,117,66,0.008873238703027406],[124,117,67,0.009265227185037786],[124,117,68,0.009664327954079758],[124,117,69,0.010080771566549065],[124,117,70,0.01052258498483869],[124,117,71,0.01099517835588754],[124,117,72,0.011501466152620427],[124,117,73,0.012042019392662641],[124,117,74,0.012615249031886929],[124,117,75,0.01321762057748571],[124,117,76,0.013843899916499548],[124,117,77,0.014487430311744915],[124,117,78,0.015140440478480876],[124,117,79,0.015794383622589923],[124,118,64,0.006987806317890991],[124,118,65,0.0073886518866557995],[124,118,66,0.007859899395633425],[124,118,67,0.008369206531595617],[124,118,68,0.0089094133699873],[124,118,69,0.009491191196063155],[124,118,70,0.010121368026127113],[124,118,71,0.010802799663670861],[124,118,72,0.011534758702632259],[124,118,73,0.012313341734184816],[124,118,74,0.01313189414612036],[124,118,75,0.013981451893505262],[124,118,76,0.014851199614083568],[124,118,77,0.01572894446231279],[124,118,78,0.016601605042306962],[124,118,79,0.01745571483271573],[124,119,64,0.0058199681058427235],[124,119,65,0.006291289632026314],[124,119,66,0.006851392707627178],[124,119,67,0.00747149310798707],[124,119,68,0.008146891087103621],[124,119,69,0.008888786830359008],[124,119,70,0.009702885610862301],[124,119,71,0.010589550305193028],[124,119,72,0.011544455465954171],[124,119,73,0.012559247317031778],[124,119,74,0.013622208360165984],[124,119,75,0.01471892531171348],[124,119,76,0.015832959125051924],[124,119,77,0.016946515897170472],[124,119,78,0.017238684501306573],[124,119,79,0.016248056126997715],[124,120,64,0.004716926687142478],[124,120,65,0.005249818081158578],[124,120,66,0.005889775894862555],[124,120,67,0.0066116641320908345],[124,120,68,0.007413302492945795],[124,120,69,0.008306479797560294],[124,120,70,0.00929586135288503],[124,120,71,0.010379415022032374],[124,120,72,0.011549322614524009],[124,120,73,0.012792885682911356],[124,120,74,0.014093423735199529],[124,120,75,0.015431162940979267],[124,120,76,0.016784113485078817],[124,120,77,0.017129920198485346],[124,120,78,0.015886736652888207],[124,120,79,0.014697036805081354],[124,121,64,0.003724102591460536],[124,121,65,0.0043083068157482324],[124,121,66,0.005017343032489973],[124,121,67,0.005829728556367059],[124,121,68,0.006745795146243082],[124,121,69,0.0077779489616571305],[124,121,70,0.008929902291534546],[124,121,71,0.01019736031694235],[124,121,72,0.011569177237374004],[124,121,73,0.013028496201193637],[124,121,74,0.014553870404583771],[124,121,75,0.016120362826986607],[124,121,76,0.017532216693321865],[124,121,77,0.016039729363851247],[124,121,78,0.014589197107616326],[124,121,79,0.013209084549922132],[124,122,64,0.002884653304631106],[124,122,65,0.003508829054588904],[124,122,66,0.004274666903796874],[124,122,67,0.005164256077096166],[124,122,68,0.006180365524380453],[124,122,69,0.007336015019150028],[124,122,70,0.00863405236116301],[124,122,71,0.01006808332939683],[124,122,72,0.011623855436097248],[124,122,73,0.013280615921314909],[124,122,74,0.015012440753185663],[124,122,75,0.01678953153452278],[124,122,76,0.01669832975445558],[124,122,77,0.015003233108381125],[124,122,78,0.013361039685548503],[124,122,79,0.011804872527415357],[124,123,64,0.0022376560801809294],[124,123,65,0.0028896832027900314],[124,123,66,0.003698876774597977],[124,123,67,0.004650732087461529],[124,123,68,0.005750314741441034],[124,123,69,0.007011221837520257],[124,123,70,0.008435524176467424],[124,123,71,0.010014917735044244],[124,123,72,0.011732313880913817],[124,123,73,0.013563395398743867],[124,123,74,0.01547813455026537],[124,123,75,0.01744226955413289],[124,123,76,0.015903321598193056],[124,123,77,0.014027972952644395],[124,123,78,0.01221530917686647],[124,123,79,0.010502765334392766],[124,124,64,0.0018165397538331036],[124,124,65,0.002483859445094915],[124,124,66,0.003322174311201956],[124,124,67,0.004320140808486523],[124,124,68,0.0054849194091807765],[124,124,69,0.006830616905754782],[124,124,70,0.008358611059687628],[124,124,71,0.010058898408380467],[124,124,72,0.01191186633803429],[124,124,73,0.013890023736566118],[124,124,74,0.015959685972279657],[124,124,75,0.017204913801208505],[124,124,76,0.015148034094464618],[124,124,77,0.013119702243299043],[124,124,78,0.011162628619832748],[124,124,79,0.00931811606477243],[124,125,64,0.0016477676032068086],[124,125,65,0.0023177534643464906],[124,125,66,0.0031705897345483463],[124,125,67,0.004197778670371286],[124,125,68,0.005408319658351662],[124,125,69,0.006816732821492516],[124,125,70,0.008423781102050809],[124,125,71,0.010217986468950396],[124,125,72,0.012177556577217518],[124,125,73,0.014272264002449301],[124,125,74,0.016465273391179803],[124,125,75,0.016614477301339914],[124,125,76,0.01443210682193709],[124,125,77,0.012282115566581901],[124,125,78,0.010210741367313337],[124,125,79,0.008262626992248456],[124,126,64,0.0017497731435516895],[124,126,65,0.002410129213840826],[124,126,66,0.0032629801517571697],[124,126,67,0.004302299868570665],[124,126,68,0.005538626195157851],[124,126,69,0.006986771604865901],[124,126,70,0.008646954928102808],[124,126,71,0.010506456220974437],[124,126,72,0.012541668973783733],[124,126,73,0.014720100104153045],[124,126,74,0.017002312747223528],[124,126,75,0.016026813077539503],[124,126,76,0.013753871419482788],[124,126,77,0.011516583562499027],[124,126,78,0.009364088430342962],[124,126,79,0.0073437747211754665],[124,127,64,0.0021321506140599593],[124,127,65,0.0027713325346076737],[124,127,66,0.003610271868942118],[124,127,67,0.004644995883901406],[124,127,68,0.005887248137183665],[124,127,69,0.007351993505698525],[124,127,70,0.009038968717677247],[124,127,71,0.01093444539440272],[124,127,72,0.013013378031822505],[124,127,73,0.015241496135805013],[124,127,74,0.017577335272931673],[124,127,75,0.015437035086866259],[124,127,76,0.013110221054806824],[124,127,77,0.010821893261582604],[124,127,78,0.008623421552011389],[124,127,79,0.0065643005987774845],[124,128,64,0.0027951017880178215],[124,128,65,0.003402757285500009],[124,128,66,0.0042149483656567],[124,128,67,0.005229310634024965],[124,128,68,0.0064584432548457195],[124,128,69,0.007917311858372213],[124,128,70,0.009605223936211785],[124,128,71,0.011507670002034988],[124,128,72,0.013598537974944617],[124,128,73,0.015842269141903474],[124,128,74,0.017171219798319166],[124,128,75,0.014839924400131268],[124,128,76,0.012496454824174268],[124,128,77,0.010193994054168848],[124,128,78,0.007985452431199061],[124,128,79,0.0059217671259616704],[124,129,64,0.003729140633746967],[124,129,65,0.0042965655453278085],[124,129,66,0.005070785501744869],[124,129,67,0.0060505928148042645],[124,129,68,0.007249092138281424],[124,129,69,0.008681095437386249],[124,129,70,0.010345525129923564],[124,129,71,0.012227305042506345],[124,129,72,0.014299613477667093],[124,129,73,0.01652607618642718],[124,129,74,0.016542816590246815],[124,129,75,0.014229815530635454],[124,129,76,0.011906096905171498],[124,129,77,0.009625749390365887],[124,129,78,0.007442538483397238],[124,129,79,0.005408181050865583],[124,130,64,0.004915057261952461],[124,130,65,0.005435663352149521],[124,130,66,0.006162835431677687],[124,130,67,0.007096086894308705],[124,130,68,0.008248697715631158],[124,130,69,0.009635179676442496],[124,130,70,0.01125410705804827],[124,130,71,0.013090032202675725],[124,130,72,0.015115752544438468],[124,130,73,0.01729451656057676],[124,130,74,0.01586156027691079],[124,130,75,0.013600426448360082],[124,130,76,0.01133069029112798],[124,130,77,0.009106694297210186],[124,130,78,0.006982405495017376],[124,130,79,0.005009683778832188],[124,131,64,0.006324142518784967],[124,131,65,0.0067939333652989676],[124,131,66,0.007467660619746235],[124,131,67,0.008345164139722912],[124,131,68,0.00943961146698699],[124,131,69,0.010765088034891537],[124,131,70,0.012319852360023044],[124,131,71,0.0140882556453575],[124,131,72,0.016043002484494747],[124,131,73,0.01724501433275381],[124,131,74,0.015123991546581646],[124,131,75,0.01294463188772647],[124,131,76,0.010759564941194734],[124,131,77,0.00862279878795149],[124,131,78,0.006587907498239916],[124,131,79,0.004706309684825163],[124,132,64,0.007918555725749659],[124,132,65,0.008336598753486846],[124,132,66,0.008953684220314586],[124,132,67,0.009769651925204624],[124,132,68,0.010797336579943383],[124,132,69,0.012050305921654493],[124,132,70,0.013526534704470449],[124,132,71,0.015210313978430512],[124,132,72,0.017074491097013436],[124,132,73,0.01634590865613763],[124,132,74,0.014327045125982702],[124,132,75,0.012254368048512102],[124,132,76,0.010179768540513544],[124,132,77,0.008156423520270293],[124,132,78,0.006237006356890236],[124,132,79,0.0044719888824960585],[124,133,64,0.009633473694870805],[124,133,65,0.010000952224659477],[124,133,66,0.010560517460305691],[124,133,67,0.01131175589570954],[124,133,68,0.012267039239414693],[124,133,69,0.01343939964997732],[124,133,70,0.014826597850003157],[124,133,71,0.01641301198787962],[124,133,72,0.017199830775239264],[124,133,73,0.015397028748952754],[124,133,74,0.013498268704516918],[124,133,75,0.011551298216160254],[124,133,76,0.009606883937172659],[124,133,77,0.0077169679428481],[124,133,78,0.005932911569023026],[124,133,79,0.004303830887076226],[124,134,64,0.011367457066615471],[124,134,65,0.011685042376857233],[124,134,66,0.012185993192813327],[124,134,67,0.012869435312082003],[124,134,68,0.013747237605097978],[124,134,69,0.014831994122355465],[124,134,70,0.016121417123172548],[124,134,71,0.017600193522925002],[124,134,72,0.016164090990859626],[124,134,73,0.01448727455043289],[124,134,74,0.012721714207921817],[124,134,75,0.01091383226834219],[124,134,76,0.009112920354987706],[124,134,77,0.007369337615548286],[124,134,78,0.005732796380570802],[124,134,79,0.004250739353401755],[124,135,64,0.013029621954940132],[124,135,65,0.01329737932195573],[124,135,66,0.013738341612190449],[124,135,67,0.014351019844333561],[124,135,68,0.01514681755543259],[124,135,69,0.016138079253322463],[124,135,70,0.017322709505613307],[124,135,71,0.016658167096029467],[124,135,72,0.015237781472021606],[124,135,73,0.013695550217259394],[124,135,74,0.012071678883300975],[124,135,75,0.01041093889905519],[124,135,76,0.008760833372619202],[124,135,77,0.007169845326083253],[124,135,78,0.005685772632642932],[124,135,79,0.0043541536512799175],[124,136,64,0.014545831798501338],[124,136,65,0.014763432425552721],[124,136,66,0.01514297227628893],[124,136,67,0.015682255924398678],[124,136,68,0.016392323188150943],[124,136,69,0.017285519776979834],[124,136,70,0.01691789836518821],[124,136,71,0.015774660301371382],[124,136,72,0.014485559482102362],[124,136,73,0.013082776777868338],[124,136,74,0.01160474085345661],[124,136,75,0.010094276426011699],[124,136,76,0.008596828937928843],[124,136,77,0.007158770052748748],[124,136,78,0.005825788126248053],[124,136,79,0.004641367539735584],[124,137,64,0.015859172986775267],[124,137,65,0.01602602215245803],[124,137,66,0.01634276542519009],[124,137,67,0.016806476229875404],[124,137,68,0.017427983210232617],[124,137,69,0.016988368534344312],[124,137,70,0.016128831609636452],[124,137,71,0.015110116098826041],[124,137,72,0.013954654917896997],[124,137,73,0.012692772283519243],[124,137,74,0.011360831517420006],[124,137,75,0.009999452177975389],[124,137,76,0.008651801005926071],[124,137,77,0.0073619609361454015],[124,137,78,0.006173382182353762],[124,137,79,0.005127419147763246],[124,138,64,0.016930810515992958],[124,138,65,0.01704608800455006],[124,138,66,0.017298732195050744],[124,138,67,0.01734258323507575],[124,138,68,0.01691866125270449],[124,138,69,0.016334754821329033],[124,138,70,0.015590593530815478],[124,138,71,0.014697261805320138],[124,138,72,0.013675309386596545],[124,138,73,0.012552918305949118],[124,138,74,0.011364131041454307],[124,138,75,0.01014714435759442],[124,138,76,0.008942673113366703],[124,138,77,0.007792388103069102],[124,138,78,0.0067374317623991415],[124,138,79,0.005817015332355165],[124,139,64,0.016980243319991012],[124,139,65,0.017031905077650285],[124,139,66,0.016956736726913044],[124,139,67,0.016758949343214834],[124,139,68,0.016427555512812816],[124,139,69,0.015948459110701977],[124,139,70,0.015319974960103235],[124,139,71,0.014551348838005193],[124,139,72,0.013660965824715458],[124,139,73,0.012674610735784977],[124,139,74,0.01162378506776175],[124,139,75,0.010544084704565408],[124,139,76,0.009473642435483749],[124,139,77,0.00845163912962808],[124,139,78,0.007516887196136828],[124,139,79,0.006706489735523312],[124,140,64,0.016457793531590104],[124,140,65,0.01656416824954213],[124,140,66,0.016556560525843943],[124,140,67,0.016439610719425662],[124,140,68,0.01620191529252648],[124,140,69,0.015828216166818246],[124,140,70,0.015315134919230118],[124,140,71,0.014669808647243805],[124,140,72,0.013908206539867162],[124,140,73,0.013053492914791241],[124,140,74,0.012134440849262216],[124,140,75,0.011183900364863844],[124,140,76,0.010237324948429985],[124,140,77,0.009331360003346601],[124,140,78,0.008502496628442753],[124,140,79,0.007785793916439423],[124,141,64,0.016170753681695543],[124,141,65,0.016334004841124614],[124,141,66,0.016396132831116655],[124,141,67,0.016362015211978918],[124,141,68,0.016219615559774993],[124,141,69,0.015952275873919692],[124,141,70,0.015554681601016272],[124,141,71,0.015031624549428023],[124,141,72,0.014396437616674656],[124,141,73,0.013669469202004045],[124,141,74,0.01287660109023189],[124,141,75,0.012047813445289646],[124,141,76,0.011215800394120628],[124,141,77,0.010414639514157354],[124,141,78,0.00967851836135707],[124,141,79,0.009040520991465609],[124,142,64,0.01606942203416312],[124,142,65,0.01629273241484405],[124,142,66,0.01642787341405084],[124,142,67,0.016479751731823655],[124,142,68,0.016435504232963628],[124,142,69,0.016276884194932437],[124,142,70,0.015996440400000943],[124,142,71,0.015596417299756533],[124,142,72,0.015087317674370887],[124,142,73,0.014486497128744254],[124,142,74,0.013816793834211983],[124,142,75,0.013105196798642459],[124,142,76,0.012381555812258251],[124,142,77,0.011677336071783827],[124,142,78,0.011024420332173346],[124,142,79,0.01045396127385263],[124,143,64,0.016087850233043537],[124,143,65,0.0163754281292441],[124,143,66,0.01658806495282],[124,143,67,0.016730485077848353],[124,143,68,0.016788835399204578],[124,143,69,0.016743144186091692],[124,143,70,0.01658366471214089],[124,143,71,0.016309922273982935],[124,143,72,0.01592941479817021],[124,143,73,0.015456336470257816],[124,143,74,0.014910327382217307],[124,143,75,0.014315252092182979],[124,143,76,0.013698009879247807],[124,143,77,0.013087379355898822],[124,143,78,0.012512899972155048],[124,143,79,0.012003792809030508],[124,144,64,0.016189146015335443],[124,144,65,0.016544724772345257],[124,144,66,0.01683884758800293],[124,144,67,0.01707581040276015],[124,144,68,0.017240610833383074],[124,144,69,0.017311447620910355],[124,144,70,0.017276148193774925],[124,144,71,0.017131371732935982],[124,144,72,0.01688145800258528],[124,144,73,0.01653728938619651],[124,144,74,0.01611516867528541],[124,144,75,0.015635715081659635],[124,144,76,0.015122780858799093],[124,144,77,0.01460239082442148],[124,144,78,0.014101706974518331],[124,144,79,0.013648020269495771],[124,145,64,0.016349604291586335],[124,145,65,0.01677592593946041],[124,145,66,0.01715442901261361],[124,145,67,0.017488697369329256],[124,145,68,0.0175834931029195],[124,145,69,0.01750249114637344],[124,145,70,0.017518332806296194],[124,145,71,0.017637359100184005],[124,145,72,0.017858532286715096],[124,145,73,0.017693066867836487],[124,145,74,0.01739347221974851],[124,145,75,0.017027258097327254],[124,145,76,0.016615158969361304],[124,145,77,0.016180402068273772],[124,145,78,0.015747758448354698],[124,145,79,0.015342607884383672],[124,146,64,0.01654918668702515],[124,146,65,0.01704791547538571],[124,146,66,0.01751249125432823],[124,146,67,0.01731942027984831],[124,146,68,0.017046786553062934],[124,146,69,0.01684704758959084],[124,146,70,0.016737499203776224],[124,146,71,0.016727538847772713],[124,146,72,0.016819491238597512],[124,146,73,0.01700944346066277],[124,146,74,0.017288088000477802],[124,146,75,0.017641572190183426],[124,146,76,0.018052352563897485],[124,146,77,0.017782571726815986],[124,146,78,0.017411312014183222],[124,146,79,0.0170471321547866],[124,147,64,0.01677103822713612],[124,147,65,0.017342708606214046],[124,147,66,0.017287264840126694],[124,147,67,0.016869050805658835],[124,147,68,0.016487473389091078],[124,147,69,0.016170123157456605],[124,147,70,0.015936895240410053],[124,147,71,0.015800274503885953],[124,147,72,0.015765985887965576],[124,147,73,0.015833666974872044],[124,147,74,0.01599756179321993],[124,147,75,0.01624723485396711],[124,147,76,0.016568304409564354],[124,147,77,0.016943193931057747],[124,147,78,0.01735190080876915],[124,147,79,0.017772781301000525],[124,148,64,0.017001053149570716],[124,148,65,0.01744945848531818],[124,148,66,0.01692865979900014],[124,148,67,0.016413533772044724],[124,148,68,0.015925145286097234],[124,148,69,0.015492975513588641],[124,148,70,0.015139489861924378],[124,148,71,0.014880243896179125],[124,148,72,0.014724352141263846],[124,148,73,0.014674992668332146],[124,148,74,0.01472994704615581],[124,148,75,0.014882175195727574],[124,148,76,0.015120424649969363],[124,148,77,0.015429873690839507],[124,148,78,0.01579280781398638],[124,148,79,0.01618932895697924],[124,149,64,0.017227490179921458],[124,149,65,0.01718165057629271],[124,149,66,0.016577662071987898],[124,149,67,0.015968476239347336],[124,149,68,0.015376950334202359],[124,149,69,0.014834371465196856],[124,149,70,0.014365700587663545],[124,149,71,0.013989498502465893],[124,149,72,0.013718208820998393],[124,149,73,0.013558490917740754],[124,149,74,0.013511603044551113],[124,149,75,0.0135738357058574],[124,149,76,0.013736995324327404],[124,149,77,0.013988938163400813],[124,149,78,0.01431415441714638],[124,149,79,0.014694402330117767],[124,150,64,0.01744063759782246],[124,150,65,0.016930159766899718],[124,150,66,0.016246336614180734],[124,150,67,0.015547304611696542],[124,150,68,0.01485777671536121],[124,150,69,0.01421072297851156],[124,150,70,0.013633480825848945],[124,150,71,0.01314750285349216],[124,150,72,0.012768451812587046],[124,150,73,0.012506360257332339],[124,150,74,0.01236585563673552],[124,150,75,0.012346451501492252],[124,150,76,0.012442905394264701],[124,150,77,0.012645643894487014],[124,150,78,0.012941255198804525],[124,150,79,0.013313049536481988],[124,151,64,0.017431398374672193],[124,151,65,0.016704000731366492],[124,151,66,0.015944851697884888],[124,151,67,0.015161448808047512],[124,151,68,0.014380395055333261],[124,151,69,0.013636185425769871],[124,151,70,0.012958373245700334],[124,151,71,0.012371143918563523],[124,151,72,0.011893222070559638],[124,151,73,0.0115378583172585],[124,151,74,0.011312897039506987],[124,151,75,0.011220926416284837],[124,151,76,0.01125951182561012],[124,151,77,0.011421513593615018],[124,151,78,0.011695489947915274],[124,151,79,0.012066185915782734],[124,152,64,0.01729685461192716],[124,152,65,0.016510579307421756],[124,152,66,0.015681654146044534],[124,152,67,0.014820481698177923],[124,152,68,0.013955559151713946],[124,152,69,0.013122717778694514],[124,152,70,0.01235352893846646],[124,152,71,0.011674710225324727],[124,152,72,0.011107847255816363],[124,152,73,0.010669210108214592],[124,152,74,0.010369666407425692],[124,152,75,0.010214692875654517],[124,152,76,0.010204486999744054],[124,152,77,0.0103341803018653],[124,152,78,0.010594154542845891],[124,152,79,0.010970462038560714],[124,153,64,0.017195440959857276],[124,153,65,0.016355850369761202],[124,153,66,0.01546359706721794],[124,153,67,0.01453221349624347],[124,153,68,0.01359206478027569],[124,153,69,0.012680104464140822],[124,153,70,0.01182969209937052],[124,153,71,0.011069840464040975],[124,153,72,0.010424756773730604],[124,153,73,0.009913493441675405],[124,153,74,0.009549710974098746],[124,153,75,0.00934155538252322],[124,153,76,0.009291652293611162],[124,153,77,0.009397219740608802],[124,153,78,0.009650301430720112],[124,153,79,0.010038122101656135],[124,154,64,0.017131118773544757],[124,154,65,0.01624442609390994],[124,154,66,0.01529601977883199],[124,154,67,0.014302740803585089],[124,154,68,0.013296766280750215],[124,154,69,0.012315938596088543],[124,154,70,0.011395149960439064],[124,154,71,0.01056544132403006],[124,154,72,0.00985336997944494],[124,154,73,0.009280501270918656],[124,154,74,0.00886302756868854],[124,154,75,0.00861151743313329],[124,154,76,0.008530797661755504],[124,154,77,0.008619970684804882],[124,154,78,0.008872569554682536],[124,154,79,0.009276852562421384],[124,155,64,0.01710673661333623],[124,155,65,0.016179634292460783],[124,155,66,0.015182779601722821],[124,155,67,0.014136449988871837],[124,155,68,0.013074550619570401],[124,155,69,0.01203556629439448],[124,155,70,0.011055647700128653],[124,155,71,0.010167574305423518],[124,155,72,0.009399957311739779],[124,155,73,0.008776580732522394],[124,155,74,0.008315884304902496],[124,155,75,0.008030591676198795],[124,155,76,0.007927487047206364],[124,155,77,0.00800734319804377],[124,155,78,0.008265003572597275],[124,155,79,0.008689620856815579],[124,156,64,0.017124059805006916],[124,156,65,0.016163526498769856],[124,156,66,0.015126235202420074],[124,156,67,0.014035974587393269],[124,156,68,0.012928268621027259],[124,156,69,0.01184199179474808],[124,156,70,0.010814268049645172],[124,156,71,0.009879311243248179],[124,156,72,0.009067474110411398],[124,156,73,0.008404448661283523],[124,156,74,0.00791062223270693],[124,156,75,0.007600593121434508],[124,156,76,0.007482849440798989],[124,156,77,0.007559614559447402],[124,156,78,0.007826862204102903],[124,156,79,0.008274504040736342],[124,157,64,0.017183747976434214],[124,157,65,0.016196835463277055],[124,157,66,0.015127181150201193],[124,157,67,0.014002106392338256],[124,157,68,0.01285862304973974],[124,157,69,0.011735743046039407],[124,157,70,0.010671275307822997],[124,157,71,0.009700558272876662],[124,157,72,0.008855366864142006],[124,157,73,0.008162983343484411],[124,157,74,0.007645436734918768],[124,157,75,0.007318915195409562],[124,157,76,0.007193355400531598],[124,157,77,0.007272212704862085],[124,157,78,0.007552415535817603],[124,157,79,0.008024507187672609],[124,158,64,0.017285280222175764],[124,158,65,0.016278881714700617],[124,158,66,0.015184733343641265],[124,158,67,0.014033659899224987],[124,158,68,0.01286401321629623],[124,158,69,0.011714697480874859],[124,158,70,0.010623923466414508],[124,158,71,0.009627847956219546],[124,158,72,0.008759351626406457],[124,158,73,0.008046992264163628],[124,158,74,0.007514138441701734],[124,158,75,0.007178288433720007],[124,158,76,0.007050578833874622],[124,158,77,0.007135486996512971],[124,158,78,0.007430731106860382],[124,158,79,0.007927371369038642],[124,159,64,0.017426827530628353],[124,159,65,0.016407428822476422],[124,159,66,0.015296164946255578],[124,159,67,0.014127289750319363],[124,159,68,0.012940335764443684],[124,159,69,0.011773867632296991],[124,159,70,0.010666228135671672],[124,159,71,0.009654099276659372],[124,159,72,0.008771164326074613],[124,159,73,0.008046955593563837],[124,159,74,0.0075058934258672595],[124,159,75,0.007166521588710507],[124,159,76,0.00704094383660689],[124,159,77,0.007134466126491265],[124,159,78,0.007445448588775753],[124,159,79,0.007965371036422248],[124,160,64,0.01760507208864719],[124,160,65,0.01657848697796632],[124,160,66,0.015456692452867763],[124,160,67,0.014277260808889487],[124,160,68,0.0130807412822691],[124,160,69,0.011905146254876002],[124,160,70,0.010788701946177915],[124,160,71,0.009768345197657919],[124,160,72,0.008878282687039163],[124,160,73,0.008148745146240007],[124,160,74,0.007604942430763247],[124,160,75,0.007266224921407035],[124,160,76,0.007145456371763161],[124,160,77,0.007248602950117537],[124,160,78,0.0075745428654238126],[124,160,79,0.008115100617451684],[124,161,64,0.01756123699135962],[124,161,65,0.01678606449017347],[124,161,66,0.015659211487566344],[124,161,67,0.014475170473521736],[124,161,68,0.01327534636146763],[124,161,69,0.012097010591275588],[124,161,70,0.010978053087044568],[124,161,71,0.009955427465239518],[124,161,72,0.009063619457463297],[124,161,73,0.00833331853345544],[124,161,74,0.007790298870468178],[124,161,75,0.0074545154349963455],[124,161,76,0.007339420561686641],[124,161,77,0.007451506035416757],[124,161,78,0.007790075309475943],[124,161,79,0.008347250129102288],[124,162,64,0.017360370684839876],[124,162,65,0.01702186676704781],[124,162,66,0.015893981910601776],[124,162,67,0.014709622820531041],[124,162,68,0.013510900708081225],[124,162,69,0.012334185406207116],[124,162,70,0.011216846622872267],[124,162,71,0.01019565831821224],[124,162,72,0.009305186634148505],[124,162,73,0.008576388215517053],[124,162,74,0.008035425329039525],[124,162,75,0.0077027037951481305],[124,162,76,0.007592139355032305],[124,162,77,0.007710657704697413],[124,162,78,0.008057933042879228],[124,162,79,0.008626369604068256],[124,163,64,0.017144844043724076],[124,163,65,0.017274942325978024],[124,163,66,0.0161482617853634],[124,163,67,0.01496585413777315],[124,163,68,0.013770408885059267],[124,163,69,0.01259726438841527],[124,163,70,0.011483128212336362],[124,163,71,0.010464448752080285],[124,163,72,0.009575730351114484],[124,163,73,0.008848065145651124],[124,163,74,0.00830788827174091],[124,163,75,0.007975962669769644],[124,163,76,0.007866599318908896],[124,163,77,0.00798711833359108],[124,163,78,0.008337555959063119],[124,163,79,0.008910622117353184],[124,164,64,0.016927586347133993],[124,164,65,0.017530612940459833],[124,164,66,0.016405326817265604],[124,164,67,0.015224851220033768],[124,164,68,0.01403235487024957],[124,164,69,0.012862047167215562],[124,164,70,0.011749877105310887],[124,164,71,0.010731877195448462],[124,164,72,0.009842410310842436],[124,164,73,0.009112638932938873],[124,164,74,0.008569223639935343],[124,164,75,0.008233257271753482],[124,164,76,0.008119440794759876],[124,164,77,0.008235506480505118],[124,164,78,0.008581893608998187],[124,164,79,0.009151681512475987],[124,165,64,0.016728149070295857],[124,165,65,0.017768021092231984],[124,165,66,0.016642803538054342],[124,165,67,0.015462516994424863],[124,165,68,0.014270723901041605],[124,165,69,0.013100444346929413],[124,165,70,0.011986810819549335],[124,165,71,0.010965388427795188],[124,165,72,0.010070357455504586],[124,165,73,0.009332923332670872],[124,165,74,0.008779961052539913],[124,165,75,0.008432900647587057],[124,165,76,0.00830685991982773],[124,165,77,0.008410030204630495],[124,165,78,0.008743320535968843],[124,165,79,0.009300265178867879],[124,166,64,0.016564252936238043],[124,166,65,0.017700377912503295],[124,166,66,0.016840963315178353],[124,166,67,0.015657878958175282],[124,166,68,0.014463133508676127],[124,166,69,0.013288545110179599],[124,166,70,0.012168413323004753],[124,166,71,0.011137819469404014],[124,166,72,0.010230749691314102],[124,166,73,0.009478449711686867],[124,166,74,0.008908018489272047],[124,166,75,0.00854124753632154],[124,166,76,0.00839371224558093],[124,166,77,0.008474121150787446],[124,166,78,0.008783928627549977],[124,166,79,0.009317216133011104],[124,167,64,0.016448835287696167],[124,167,65,0.017586902263694238],[124,167,66,0.016985177234910016],[124,167,67,0.015795267166787762],[124,167,68,0.014592736581472027],[124,167,69,0.01340824549032386],[124,167,70,0.012275292995531657],[124,167,71,0.011228501126565309],[124,167,72,0.010301683954729171],[124,167,73,0.009526151917577105],[124,167,74,0.008929258678441547],[124,167,75,0.008533197422179775],[124,167,76,0.008354053061044727],[124,167,77,0.008401116398038767],[124,167,78,0.008676465873089498],[124,167,79,0.009174822104010228],[124,168,64,0.01639146725530571],[124,168,65,0.017534927227909763],[124,168,66,0.01706451658277614],[124,168,67,0.015862932095133096],[124,168,68,0.014646864528813176],[124,168,69,0.013445921682800524],[124,168,70,0.012292888219869237],[124,168,71,0.011221995695878116],[124,168,72,0.010266943941426725],[124,168,73,0.009459160362885645],[124,168,74,0.008826304595643252],[124,168,75,0.008391025515983546],[124,168,76,0.008169977188197897],[124,168,77,0.008173099894051909],[124,168,78,0.008403171966484536],[124,168,79,0.008855637732554914],[124,169,64,0.016400015674240053],[124,169,65,0.017552831063255375],[124,169,66,0.01707011298773158],[124,169,67,0.015851426342460662],[124,169,68,0.014615439719140057],[124,169,69,0.013390879710863167],[124,169,70,0.012209958320608056],[124,169,71,0.011106631054447095],[124,169,72,0.010114577318634008],[124,169,73,0.00926542066463648],[124,169,74,0.008587196394111868],[124,169,75,0.008103073608528811],[124,169,76,0.007830338357135366],[124,169,77,0.007779644105987307],[124,169,78,0.007954535323695047],[124,169,79,0.00835124956058732],[124,170,64,0.016482532859071995],[124,170,65,0.017649010089651734],[124,170,66,0.016993291931130448],[124,170,67,0.015751762079781215],[124,170,68,0.014489167264180682],[124,170,69,0.013233589672034944],[124,170,70,0.012016866250159292],[124,170,71,0.01087283579221057],[124,170,72,0.009835285504159578],[124,170,73,0.008936138616702718],[124,170,74,0.008203890607583853],[124,170,75,0.00766230116993504],[124,170,76,0.00732934863187068],[124,170,77,0.007216453101404665],[124,170,78,0.007327974183216843],[124,170,79,0.007660988694041308],[124,171,64,0.016649376555813937],[124,171,65,0.0178339895346378],[124,171,66,0.016823477417918446],[124,171,67,0.01555334211157333],[124,171,68,0.014257504107131891],[124,171,69,0.012963702621561992],[124,171,70,0.01170365119033567],[124,171,71,0.010511273681457963],[124,171,72,0.009420624447580335],[124,171,73,0.00846405008418544],[124,171,74,0.007670600380809698],[124,171,75,0.007064695626963791],[124,171,76,0.006665057004818789],[124,171,77,0.0064839063705519505],[124,171,78,0.006526441299391007],[124,171,79,0.0067905908500176864],[124,172,64,0.01691556257965965],[124,172,65,0.017774254533647418],[124,172,66,0.01654586542807181],[124,172,67,0.015241662250691158],[124,172,68,0.013906403206593117],[124,172,69,0.012567847991267459],[124,172,70,0.011257889089123334],[124,172,71,0.010010775639118195],[124,172,72,0.0088610147196582],[124,172,73,0.00784151429002091],[124,172,74,0.006981975374467229],[124,172,75,0.006307540652349836],[124,172,76,0.0058377061901390935],[124,172,77,0.0055855026230564354],[124,172,78,0.005556951668809063],[124,172,79,0.005750803437895542],[124,173,64,0.017303352846156316],[124,173,65,0.017400137933139322],[124,173,66,0.016138863576947948],[124,173,67,0.014795782522248706],[124,173,68,0.013415830432107836],[124,173,69,0.012027209274368962],[124,173,70,0.010662338993416311],[124,173,71,0.00935606718844556],[124,173,72,0.008143559077627874],[124,173,73,0.007058428836599995],[124,173,74,0.006131119875039354],[124,173,75,0.005387541195259766],[124,173,76,0.004847966552215306],[124,173,77,0.004526202708683871],[124,173,78,0.004429032656568618],[124,173,79,0.004555939259315735],[124,174,64,0.01784508171160774],[124,174,65,0.016869027889626433],[124,174,66,0.015571294214612839],[124,174,67,0.014185564519825567],[124,174,68,0.01275705160185791],[124,174,69,0.01131487552966387],[124,174,70,0.009892372870501575],[124,174,71,0.00852528926886287],[124,174,72,0.007249665527041463],[124,174,73,0.006099964669743651],[124,174,74,0.005107447516676609],[124,174,75,0.004298803870482566],[124,174,76,0.003695046005952735],[124,174,77,0.0033106707237796204],[124,174,78,0.0031530958120115204],[124,174,79,0.003222376344941715],[124,175,64,0.01733150126051864],[124,175,65,0.01614888266865095],[124,175,66,0.014811954947157584],[124,175,67,0.013380977543024123],[124,175,68,0.011901574868853378],[124,175,69,0.010404296086182844],[124,175,70,0.008923807106713564],[124,175,71,0.007497062765209017],[124,175,72,0.006161196507781639],[124,175,73,0.0049516507491205],[124,175,74,0.003900555368607663],[124,175,75,0.0030353614018908868],[124,175,76,0.0023777365661494573],[124,175,77,0.0019427288376090586],[124,175,78,0.0017382038826247092],[124,175,79,0.001764561732909782],[124,176,64,0.016470408807361902],[124,176,65,0.015250501471694823],[124,176,66,0.013872064847628244],[124,176,67,0.01239367582001672],[124,176,68,0.010861479875694365],[124,176,69,0.009307938911352958],[124,176,70,0.007769433939064212],[124,176,71,0.006284414661034557],[124,176,72,0.004891301212275019],[124,176,73,0.003626626192266998],[124,176,74,0.0025234243839554467],[124,176,75,0.001609877148356825],[124,176,76,9.082180680537705E-4],[124,176,77,4.339059964343536E-4],[124,176,78,1.9507125548838384E-4],[124,176,79,1.9224031731395478E-4],[124,177,64,0.01546008318562962],[124,177,65,0.014200462390085546],[124,177,66,0.012778712972604763],[124,177,67,0.01125125764431315],[124,177,68,0.009664837730211949],[124,177,69,0.00805426362290613],[124,177,70,0.00645797252256023],[124,177,71,0.004916154764167894],[124,177,72,0.0034686770980342924],[124,177,73,0.002153245627646472],[124,177,74,0.0010038157097828349],[124,177,75,4.9255715443269896E-5],[124,177,76,-6.877288610184062E-4],[124,177,77,-0.0011914048697684268],[124,177,78,-0.001453548885824331],[124,177,79,-0.0014737072412111334],[124,178,64,0.014330478334399804],[124,178,65,0.013029390716013566],[124,178,66,0.011563251361863116],[124,178,67,0.009985870329703812],[124,178,68,0.008344631080667263],[124,178,69,0.0066770735847944745],[124,178,70,0.005023981031144819],[124,178,71,0.003427483839938666],[124,178,72,0.001929014780492723],[124,178,73,5.675027190513086E-4],[124,178,74,-6.221878170327247E-4],[124,178,75,-0.0016105644741520547],[124,178,76,-0.0023745559283867503],[124,178,77,-0.002898295792580538],[124,178,78,-0.0031736360102156873],[124,178,79,-0.00320038457106053],[124,179,64,0.013114762040038181],[124,179,65,0.011771254852804086],[124,179,66,0.010260533724330716],[124,179,67,0.00863337277962511],[124,179,68,0.006937820455489891],[124,179,69,0.005214465672866476],[124,179,70,0.003506669824469949],[124,179,71,0.0018586509837777159],[124,179,72,3.1348171909450367E-4],[124,179,73,-0.0010886759920050715],[124,179,74,-0.002312091706623912],[124,179,75,-0.0033267366742451114],[124,179,76,-0.004109296964821561],[124,179,77,-0.004643923726357385],[124,179,78,-0.004922715131109185],[124,179,79,-0.004945924963229663],[124,180,64,0.011848580964007234],[124,180,65,0.01046259192607865],[124,180,66,0.008908087172482104],[124,180,67,0.007232436196308671],[124,180,68,0.005484355763474133],[124,180,69,0.003707734594182764],[124,180,70,0.001948681245028327],[124,180,71,2.535925645419796E-4],[124,180,72,-0.0013327946621889313],[124,180,73,-0.002769117072310661],[124,180,74,-0.004018856219031091],[124,180,75,-0.005051561722565314],[124,180,76,-0.005843819995175399],[124,180,77,-0.006379962853216037],[124,180,78,-0.006652510722462912],[124,180,79,-0.006662345529983186],[124,181,64,0.010569253038302725],[124,181,65,0.00914166216079436],[124,181,66,0.007545216098338861],[124,181,67,0.005823582059945795],[124,181,68,0.004026132132063101],[124,181,69,0.0022002309992223104],[124,181,70,3.948353635361133E-4],[124,181,71,-0.0013414478461354475],[124,181,72,-0.002962244887615564],[124,181,73,-0.004425066342495346],[124,181,74,-0.005692719308799981],[124,181,75,-0.006734474364509328],[124,181,76,-0.007526981404721945],[124,181,77,-0.008054928843584492],[124,181,78,-0.008311441057711234],[124,181,79,-0.008298209326952747],[124,182,64,0.009314886201808295],[124,182,65,0.007847531014931648],[124,182,66,0.006212037211792549],[124,182,67,0.004448156437879316],[124,182,68,0.002605889193765481],[124,182,69,7.361725618348587E-4],[124,182,70,-0.0011091590701486117],[124,182,71,-0.0028793191994338687],[124,182,72,-0.004526376894890079],[124,182,73,-0.0060068355596425895],[124,182,74,-0.007282976328255885],[124,182,75,-0.008323960032262719],[124,182,76,-0.009106682046956804],[124,182,77,-0.009616374712035119],[124,182,78,-0.00984695239541361],[124,182,79,-0.009801094639695215],[124,183,64,0.00812342237399643],[124,183,65,0.006619077984731848],[124,183,66,0.0049484446880499605],[124,183,67,0.003147239612431108],[124,183,68,0.001266052862392957],[124,183,69,-6.405928628158169E-4],[124,183,70,-0.0025180292733960304],[124,183,71,-0.004313383045728039],[124,183,72,-0.005977297621102101],[124,183,73,-0.007465430057348851],[124,183,74,-0.008739716742790475],[124,183,75,-0.00976940214822008],[124,183,76,-0.010531825162356493],[124,183,77,-0.011012957926202],[124,183,78,-0.01120769244854257],[124,183,79,-0.011119870644920067],[124,184,64,0.0070316054842618665],[124,184,65,0.005493930919292203],[124,184,66,0.0037930042960251215],[124,184,67,0.0019604899437903616],[124,184,68,4.7518572063124384E-5],[124,184,69,-0.0018878729565384306],[124,184,70,-0.003788299536565743],[124,184,71,-0.005598954710832528],[124,184,72,-0.0072692373240243885],[124,184,73,-0.008754157802565209],[124,184,74,-0.010015518142663844],[124,184,75,-0.011022860044890703],[124,184,76,-0.01175417599308298],[124,184,77,-0.012196378434715884],[124,184,78,-0.012345522575781087],[124,184,79,-0.012206778652229931],[124,185,64,0.006073872296183358],[124,185,65,0.00450732460444271],[124,185,66,0.0027817753039026754],[124,185,67,9.249208118507076E-4],[124,185,68,-0.0010116251167948016],[124,185,69,-0.0029664665507571648],[124,185,70,-0.004879689708308292],[124,185,71,-0.006694766372328726],[124,185,72,-0.008360077296747483],[124,185,73,-0.009830220363329215],[124,185,74,-0.011067097861517803],[124,185,75,-0.01204077760983398],[124,185,76,-0.012730122985664448],[124,185,77,-0.013123187278126992],[124,185,78,-0.013217368122811938],[124,185,79,-0.013019318114244388],[124,186,64,0.005281164686620023],[124,186,65,0.003690882297604192],[124,186,66,0.0019470588823153193],[124,186,67,7.360940842684321E-5],[124,186,68,-0.0018774337084497687],[124,186,69,-0.0038415502145888515],[124,186,70,-0.005756552037002914],[124,186,71,-0.007564452884952062],[124,186,72,-0.009212881673616636],[124,186,73,-0.010656286311821516],[124,186,74,-0.011856922531798444],[124,186,75,-0.012785622773456302],[124,186,76,-0.013422340472162243],[124,186,77,-0.013756465434663353],[124,186,78,-0.013786906319358838],[124,186,79,-0.01352193656143844],[124,187,64,0.0046796619603325],[124,187,65,0.0030713188173235434],[124,187,66,0.0013160716501613332],[124,187,67,-5.656639205687879E-4],[124,187,68,-0.00252150599120935],[124,187,69,-0.004484116960949587],[124,187,70,-0.006389347399330196],[124,187,71,-0.008178061249978205],[124,187,72,-0.009797434061733052],[124,187,73,-0.01120204761277231],[124,187,74,-0.012354775921369895],[124,187,75,-0.013227457959562115],[124,187,76,-0.0138013527101599],[124,187,77,-0.014067372530370487],[124,187,78,-0.014026091103734904],[124,187,79,-0.013687522573043787],[124,188,64,0.004289431702252066],[124,188,65,0.0026690637138799527],[124,188,66,9.095429335135735E-4],[124,188,67,-9.718471541834313E-4],[124,188,68,-0.002922446582291441],[124,188,69,-0.004872468272938897],[124,188,70,-0.006756161998934759],[124,188,71,-0.008513584666344701],[124,188,72,-0.01009177976456154],[124,188,73,-0.011445759567827677],[124,188,74,-0.012539285403561027],[124,188,75,-0.013345441613243471],[124,188,76,-0.013846999143013924],[124,188,77,-0.014036565010707438],[124,188,78,-0.013916514200952138],[124,188,79,-0.013498700837098273],[124,189,64,0.004122997592243623],[124,189,65,0.0024968029713920846],[124,189,66,7.4023423496358E-4],[124,189,67,-0.0011321203369995321],[124,189,68,-0.003067393159312398],[124,189,69,-0.004993760709976829],[124,189,70,-0.0068442656671224966],[124,189,71,-0.008558522140410819],[124,189,72,-0.010083774392041705],[124,189,73,-0.011375764901727065],[124,189,74,-0.012399407414459858],[124,189,75,-0.013129260907844144],[124,189,76,-0.013549800714109168],[124,189,77,-0.013655483328048477],[124,189,78,-0.013450601723164507],[124,189,79,-0.01294892828140204],[124,190,64,0.004183822531838934],[124,190,65,0.002557937617839089],[124,190,66,8.113793396967402E-4],[124,190,67,-0.001043473088349249],[124,190,68,-0.0029536098008270425],[124,190,69,-0.004845608407480042],[124,190,70,-0.006651712943118886],[124,190,71,-0.008311464666411056],[124,190,72,-0.009772639674722111],[124,190,73,-0.010992002585815742],[124,190,74,-0.011935872246325802],[124,190,75,-0.012580495712306959],[124,190,76,-0.012912227032428128],[124,190,77,-0.012927507646934764],[124,190,78,-0.012632645492636051],[124,190,79,-0.012043390173136857],[124,191,64,0.004464705359629548],[124,191,65,0.0028449575480176607],[124,191,66,0.001115043416274754],[124,191,67,-7.143574512197376E-4],[124,191,68,-0.002590147916536545],[124,191,69,-0.00443774283465291],[124,191,70,-0.006188988153029481],[124,191,71,-0.007783709020299631],[124,191,72,-0.009170527317397892],[124,191,73,-0.010307501998172675],[124,191,74,-0.011162588514275434],[124,191,75,-0.01171391387206804],[124,191,76,-0.01194986414155189],[124,191,77,-0.011868981506434003],[124,191,78,-0.011479668207774065],[124,191,79,-0.010799694988586867],[124,192,64,0.004946089362511159],[124,192,65,0.003337728796391443],[124,192,66,0.0016303994051995135],[124,192,67,-1.6641771225712644E-4],[124,192,68,-0.001999576302158849],[124,192,69,-0.0037937312216491425],[124,192,70,-0.005480695743757247],[124,192,71,-0.007000900235344178],[124,192,72,-0.008304091740148992],[124,192,73,-0.009349863017195596],[124,192,74,-0.010108007614743016],[124,192,75,-0.010558697820745025],[124,192,76,-0.01069248259033641],[124,192,77,-0.01051010280681399],[124,192,78,-0.010022121482399981],[124,192,79,-0.009248366746261663],[124,193,64,0.00559428072455844],[124,193,65,0.00400169243283824],[124,193,66,0.0023219199276091544],[124,193,67,5.637011196682086E-4],[124,193,68,-0.0012197819038420358],[124,193,69,-0.0029527551092929055],[124,193,70,-0.0045672971601790876],[124,193,71,-0.006004703848033581],[124,193,72,-0.0072160725611725976],[124,193,73,-0.008162722636583436],[124,193,74,-0.008816448468487668],[124,193,75,-0.00915960249618772],[124,193,76,-0.009185005441111572],[124,193,77,-0.008895681406232953],[124,193,78,-0.00830441568782413],[124,193,79,-0.007433133377406245],[124,194,64,0.006359574994759676],[124,194,65,0.0047859731952423195],[124,194,66,0.003137482890687917],[124,194,67,0.0014224644378801347],[124,194,68,-3.058429216677109E-4],[124,194,69,-0.0019714505110513553],[124,194,70,-0.0035068955802364807],[124,194,71,-0.0048545090170598795],[124,194,72,-0.005966887675920757],[124,194,73,-0.006807208673952487],[124,194,74,-0.007349382807901422],[124,194,75,-0.007578044482948241],[124,194,76,-0.007488375780419034],[124,194,77,-0.007085762522553347],[124,194,78,-0.006385280416879266],[124,194,79,-0.005411009578000829],[124,195,64,0.007174965347781252],[124,195,65,0.005622103204719229],[124,195,66,0.004007125189305982],[124,195,67,0.002338241299469245],[124,195,68,6.688142769051591E-4],[124,195,69,-9.250003958454531E-4],[124,195,70,-0.002376246281295312],[124,195,71,-0.003628337238818379],[124,195,72,-0.004635420032393525],[124,195,73,-0.005362584520870339],[124,195,74,-0.005785918849568334],[124,195,75,-0.005892407289786784],[124,195,76,-0.005679668597738951],[124,195,77,-0.0051555329844160495],[124,195,78,-0.0043374560006665275],[124,195,79,-0.003251767845148265],[124,196,64,0.00799017639323176],[124,196,65,0.006459606800325914],[124,196,66,0.0048800591527132],[124,196,67,0.0032597137131642954],[124,196,68,0.0016521193836541428],[124,196,69,1.3361459533114392E-4],[124,196,70,-0.001229339798913927],[124,196,71,-0.002381236850976665],[124,196,72,-0.003277778489152289],[124,196,73,-0.0038859832263165046],[124,196,74,-0.004184144275928267],[124,196,75,-0.004161635965433186],[124,196,76,-0.0038185665516086483],[124,196,77,-0.00316527575194363],[124,196,78,-0.0022216755080963963],[124,196,79,-0.001016432689707098],[124,197,64,0.0087979702277571],[124,197,65,0.007292953881021495],[124,197,66,0.0057521731132368385],[124,197,67,0.00418389420194415],[124,197,68,0.0026418356938116214],[124,197,69,0.001202405999920654],[124,197,70,-6.852186630890438E-5],[124,197,71,-0.0011165921791302946],[124,197,72,-0.0018991167996824647],[124,197,73,-0.0023850830911336255],[124,197,74,-0.002555017361670835],[124,197,75,-0.002400701956655502],[124,197,76,-0.0019247443267817372],[124,197,77,-0.0011399965987236515],[124,197,78,-6.882436641316994E-5],[124,197,79,0.0012577763972832434],[124,198,64,0.009594218527821649],[124,198,65,0.008119450580199057],[124,198,66,0.006621898457959863],[124,198,67,0.005110035407380038],[124,198,68,0.0036376621598194357],[124,198,69,0.0022810222138926212],[124,198,70,0.001105212550059992],[124,198,71,1.6329655890174062E-4],[124,198,72,-5.037456066814619E-4],[124,198,73,-8.669290673050756E-4],[124,198,74,-9.090367825873293E-4],[124,198,75,-6.242509886534364E-4],[124,198,76,-1.7642046392067323E-5],[124,198,77,8.954865707406604E-4],[124,198,78,0.00209039823888018],[124,198,79,0.003533869014017764],[124,199,64,0.010374482858757103],[124,199,65,0.008935682477597372],[124,199,66,0.007486544699557054],[124,199,67,0.006035876589867339],[124,199,68,0.0046374170690808665],[124,199,69,0.0033669115687793307],[124,199,70,0.002288417141635937],[124,199,71,0.001453511161912829],[124,199,72,9.013372677548891E-4],[124,199,73,6.587841133018267E-4],[124,199,74,7.407985698354105E-4],[124,199,75,0.0011508348230040272],[124,199,76,0.0018814406258453212],[124,199,77,0.0029149817867173866],[124,199,78,0.004224505799343151],[124,199,79,0.005774745360856968],[124,200,64,0.01113433499632403],[124,200,65,0.009737889203794437],[124,200,66,0.008342744782712424],[124,200,67,0.006958175775788932],[124,200,68,0.005637672243887338],[124,200,69,0.004456072364735871],[124,200,70,0.003476071983489085],[124,200,71,0.0027475304183478635],[124,200,72,0.0023076060105675098],[124,200,73,0.002181019539464765],[124,200,74,0.0023804469327178943],[124,200,75,0.002907042518753739],[124,200,76,0.0037510938897894887],[124,200,77,0.0048928092729413845],[124,200,78,0.0063032381446509935],[124,200,79,0.007945325672325977],[124,201,64,0.011869654983590803],[124,201,65,0.010522320167800275],[124,201,66,0.009186886302821539],[124,201,67,0.007873234351699718],[124,201,68,0.006634388096246502],[124,201,69,0.005543813989681497],[124,201,70,0.0046624842949939335],[124,201,71,0.004038281628927732],[124,201,72,0.0037062174446578023],[124,201,73,0.003688773198472382],[124,201,74,0.003996365431735247],[124,201,75,0.004627935824805763],[124,201,76,0.0055716671106421254],[124,201,77,0.0068058255742352745],[124,201,78,0.00829973071166991],[124,201,79,0.01001485248122132],[124,202,64,0.01257690679644885],[124,202,65,0.011285571356948326],[124,202,66,0.010015528685407058],[124,202,67,0.008777414279555121],[124,202,68,0.007623549863328591],[124,202,69,0.006625529625326372],[124,202,70,0.005842212931279818],[124,202,71,0.005319229585624242],[124,202,72,0.00508927422357698],[124,202,73,0.005172517890115858],[124,202,74,0.005577137847378675],[124,202,75,0.006299966486661052],[124,202,76,0.007327260061800862],[124,202,77,0.008635587808968366],[124,202,78,0.010192841875504751],[124,202,79,0.011959368349127438],[124,203,64,0.01325339146883725],[124,203,65,0.012024903139911657],[124,203,66,0.010825806361123558],[124,203,67,0.009667648099496225],[124,203,68,0.008601805349049954],[124,203,69,0.007697481049148527],[124,203,70,0.007011017318987821],[124,203,71,0.006585503941730867],[124,203,72,0.006451141762121226],[124,203,73,0.00662571738574377],[124,203,74,0.007115190039819761],[124,203,75,0.007914391299787845],[124,203,76,0.009007838236496073],[124,203,77,0.010370660397204164],[124,203,78,0.01196964090146061],[124,203,79,0.013764371811852416],[124,204,64,0.01389747750521436],[124,204,65,0.012738538983746316],[124,204,66,0.011615817955785495],[124,204,67,0.010541941876890181],[124,204,68,0.009567104494328104],[124,204,69,0.008757596046324983],[124,204,70,0.008166831563681549],[124,204,71,0.007835065931251202],[124,204,72,0.007789820104715829],[124,204,73,0.008046412285736472],[124,204,74,0.00860859473996503],[124,204,75,0.009469296797043074],[124,204,76,0.010611474432759319],[124,204,77,0.012009066702505322],[124,204,78,0.013628059173657434],[124,204,79,0.015427654394011557],[124,205,64,0.01450880838307162],[124,205,65,0.013425944974426878],[124,205,66,0.012385001497496259],[124,205,67,0.011399871238101714],[124,205,68,0.010519341092572045],[124,205,69,0.009806278946920948],[124,205,70,0.009310764465723497],[124,205,71,0.009069915414201367],[124,205,72,0.00910837196133815],[124,205,73,0.009438879066519011],[124,205,74,0.010062967462166941],[124,205,75,0.010971733610449228],[124,205,76,0.012146718884284695],[124,205,77,0.013560888103027467],[124,205,78,0.015179707442836149],[124,205,79,0.01696232164225497],[124,206,64,0.015088486922531185],[124,206,65,0.014088090007535808],[124,206,66,0.013134495623766021],[124,206,67,0.012243070624835815],[124,206,68,0.011460996957901759],[124,206,69,0.010847234801065392],[124,206,70,0.01044812618616489],[124,206,71,0.01029733923716101],[124,206,72,0.01041640816201579],[124,206,73,0.010815363838458613],[124,206,74,0.011493455333451771],[124,206,75,0.01243996257355972],[124,206,76,0.013635100267487122],[124,206,77,0.015051013074122863],[124,206,78,0.01665286191090393],[124,206,79,0.018400001209488464],[124,207,64,0.015640560765187862],[124,207,65,0.01472941206161945],[124,207,66,0.013869441260201834],[124,207,67,0.01307770714160226],[124,207,68,0.01239961333649949],[124,207,69,0.011889758566380148],[124,207,70,0.011590356591327356],[124,207,71,0.011531307060331217],[124,207,72,0.011730791401630688],[124,207,73,0.012195951093834291],[124,207,74,0.012923648479773328],[124,207,75,0.013901310175227385],[124,207,76,0.015107853021608107],[124,207,77,0.016514692436637102],[124,207,78,0.018086832931282056],[124,207,79,0.019208219004499098],[124,208,64,0.016175100711205603],[124,208,65,0.015361811331303227],[124,208,66,0.014603337665142152],[124,208,67,0.013918586624604781],[124,208,68,0.013351000606489288],[124,208,69,0.01295039373816934],[124,208,70,0.012754493258784456],[124,208,71,0.012789145177284475],[124,208,72,0.01306896651526354],[124,208,73,0.013598070855232921],[124,208,74,0.014370867171592883],[124,208,75,0.015372931825727958],[124,208,76,0.016581953517637967],[124,208,77,0.017968750905462554],[124,208,78,0.01948744414626408],[124,208,79,0.017922412484059572],[124,209,64,0.016702500580424127],[124,209,65,0.01599716499373484],[124,209,66,0.015349201727744234],[124,209,67,0.014779443687098878],[124,209,68,0.014329179950978594],[124,209,69,0.014043060918577871],[124,209,70,0.013954018710355119],[124,209,71,0.01408361427950983],[124,209,72,0.014442745888044875],[124,209,73,0.015032420859300429],[124,209,74,0.01584459039279492],[124,209,75,0.016863047146636688],[124,209,76,0.018064385219049357],[124,209,77,0.019419022094698982],[124,209,78,0.018156835540363497],[124,209,79,0.01667031958577646],[124,210,64,0.017232014714448057],[124,210,65,0.016645453026001945],[124,210,66,0.0161174460700703],[124,210,67,0.015670755978235338],[124,210,68,0.015344328022023622],[124,210,69,0.015177329026884043],[124,210,70,0.015197649529459139],[124,210,71,0.015422397103112466],[124,210,72,0.015858660258918904],[124,210,73,0.016504324607894444],[124,210,74,0.017348940873134253],[124,210,75,0.01837464427652652],[124,210,76,0.019420347147880768],[124,210,77,0.018179510708531885],[124,210,78,0.016844191532148625],[124,210,79,0.015451743855496197],[124,211,64,0.01777187214797066],[124,211,65,0.017314960584935177],[124,211,66,0.016916173015117327],[124,211,67,0.016600133531454703],[124,211,68,0.016403264157249946],[124,211,69,0.016359000336637054],[124,211,70,0.016490016731937895],[124,211,71,0.016808869385392063],[124,211,72,0.017318813478631682],[124,211,73,0.018014661371638433],[124,211,74,0.01888368030862833],[124,211,75,0.01906906921500281],[124,211,76,0.01798651116593092],[124,211,77,0.016803134903719333],[124,211,78,0.015552133601566239],[124,211,79,0.014269189044368842],[124,212,64,0.01832936225428601],[124,212,65,0.018012451645945227],[124,212,66,0.017751438581264423],[124,212,67,0.01757267598940394],[124,212,68,0.017509902379352307],[124,212,69,0.01759065614342032],[124,212,70,0.01783230148799891],[124,212,71,0.018242819742848606],[124,212,72,0.01882167862813387],[124,212,73,0.019343299722284425],[124,212,74,0.01853012675478823],[124,212,75,0.017590587530466512],[124,212,76,0.016550061847217915],[124,212,77,0.015437705137365434],[124,212,78,0.014285427556123524],[124,212,79,0.013126850834261213],[124,213,64,0.018910891492974355],[124,213,65,0.018743313582112682],[124,213,66,0.018627486221870628],[124,213,67,0.01859129744827224],[124,213,68,0.018665667931765616],[124,213,69,0.01887216281092656],[124,213,70,0.01922282592001559],[124,213,71,0.01911020523081263],[124,213,72,0.018541866276144684],[124,213,73,0.0178393977815188],[124,213,74,0.01701954423339125],[124,213,75,0.01610388673208671],[124,213,76,0.015117876659273928],[124,213,77,0.014089859717440518],[124,213,78,0.013050091347869991],[124,213,79,0.012029744512779718],[124,214,64,0.018832112236734002],[124,214,65,0.01892649106862453],[124,214,66,0.01897355767998024],[124,214,67,0.01894413780473433],[124,214,68,0.01881023423774298],[124,214,69,0.01855624217296412],[124,214,70,0.01817536810073441],[124,214,71,0.017668548948043213],[124,214,72,0.01704348994688561],[124,214,73,0.016313703124029282],[124,214,74,0.015497547629129539],[124,214,75,0.014617273104637802],[124,214,76,0.013698067281191188],[124,214,77,0.01276710895591298],[124,214,78,0.011852627478195817],[124,214,79,0.010982969827982664],[124,215,64,0.018271001497470202],[124,215,65,0.018200871296891828],[124,215,66,0.01809155586523188],[124,215,67,0.017912890515194495],[124,215,68,0.01763986672855241],[124,215,69,0.01726272232262471],[124,215,70,0.016779743628526352],[124,215,71,0.01619604893386754],[124,215,72,0.015522586308745173],[124,215,73,0.01477514688926804],[124,215,74,0.013973395028239674],[124,215,75,0.01313991668784935],[124,215,76,0.012299287408463103],[124,215,77,0.011477161140813118],[124,215,78,0.010699381176161432],[124,215,79,0.0099911143504618],[124,216,64,0.017672745571823897],[124,216,65,0.017433909407059498],[124,216,66,0.017165965889029643],[124,216,67,0.01683809618469583],[124,216,68,0.016428310351806218],[124,216,69,0.0159324821240165],[124,216,70,0.015353730716508387],[124,216,71,0.014701077625407018],[124,216,72,0.013988409448946148],[124,216,73,0.01323347132016811],[124,216,74,0.012456892544515747],[124,216,75,0.01168124597932328],[124,216,76,0.010930142630216192],[124,216,77,0.010227362871921856],[124,216,78,0.009596025628288506],[124,216,79,0.009057796768713915],[124,217,64,0.017034466304834437],[124,217,65,0.01662484472547396],[124,217,66,0.016198046459761462],[124,217,67,0.01572296609782289],[124,217,68,0.01518062327797538],[124,217,69,0.014572232243723398],[124,217,70,0.01390542086875497],[124,217,71,0.013192771844727762],[124,217,72,0.012450755951866661],[124,217,73,0.01169871122292071],[124,217,74,0.010957869766096763],[124,217,75,0.010250433934634018],[124,217,76,0.009598703447471494],[124,217,77,0.009024254977313918],[124,217,78,0.00854717562984664],[124,217,79,0.008185351641396494],[124,218,64,0.016354330476285345],[124,218,65,0.015774016691659325],[124,218,66,0.015190163310405663],[124,218,67,0.014571767251051035],[124,218,68,0.01390281028912579],[124,218,69,0.013189471412419572],[124,218,70,0.012443494685572994],[124,218,71,0.011680627534183752],[124,218,72,0.010919530192237114],[124,218,73,0.01018074625977667],[124,218,74,0.009485736295007173],[124,218,75,0.00885597626570234],[124,218,76,0.00831212258064626],[124,218,77,0.007873245313381854],[124,218,78,0.007556131118507411],[124,218,79,0.007374657225869691],[124,219,64,0.01563167533530807],[124,219,65,0.01488290249265906],[124,219,66,0.014145744176569986],[124,219,67,0.013389698634664481],[124,219,68,0.012601625850734894],[124,219,69,0.011792225288920107],[124,219,70,0.01097690854588106],[124,219,71,0.010174148738045],[124,219,72,0.009404371969954785],[124,219,73,0.008688924877142033],[124,219,74,0.00804912031078416],[124,219,75,0.00750536311121105],[124,219,76,0.007076357792781767],[124,219,77,0.006778399834455941],[124,219,78,0.006624752139477173],[124,219,79,0.006625108094887633],[124,220,64,0.014867166174089294],[124,220,65,0.013954186575706556],[124,220,66,0.01306926665618836],[124,220,67,0.012182802443145672],[124,220,68,0.0112844152310237],[124,220,69,0.010388827695012667],[124,220,70,0.009514629265861179],[124,220,71,0.008682551472980481],[124,220,72,0.007914347229873058],[124,220,73,0.007231760731234849],[124,220,74,0.006655590155201114],[124,220,75,0.0062048452238577115],[124,220,76,0.005896001530947679],[124,220,77,0.005742353398551072],[124,220,78,0.005753466875539792],[124,220,79,0.0059347343409298795],[124,221,64,0.014062986443551162],[124,221,65,0.012991862509652036],[124,221,66,0.011966279409807197],[124,221,67,0.010957910679820994],[124,221,68,0.009958994158830984],[124,221,69,0.008987744757496908],[124,221,70,0.008065417336614361],[124,221,71,0.007214523177118245],[124,221,72,0.006457702662901032],[124,221,73,0.005816702532087773],[124,221,74,0.005311459998766315],[124,221,75,0.004959295887586994],[124,221,76,0.0047742187607534075],[124,221,77,0.004766341851781864],[124,221,78,0.004941414454338411],[124,221,79,0.005300469248782253],[124,222,64,0.01322306091892788],[124,222,65,0.012001367675827778],[124,222,66,0.010843457176128196],[124,222,67,0.009722627643098914],[124,222,68,0.00863356753867922],[124,222,69,0.0075974425276395825],[124,222,70,0.006637659383418615],[124,222,71,0.005778038473137964],[124,222,72,0.005041685035997511],[124,222,73,0.004449978282981226],[124,222,74,0.004021680710468208],[124,222,75,0.0037721698425953703],[124,222,76,0.0037127944367134455],[124,222,77,0.003850357004242775],[124,222,78,0.004186724317174697],[124,222,79,0.0047185673898759795],[124,223,64,0.012353312424331577],[124,223,65,0.010989751276053254],[124,223,66,0.009708690090493034],[124,223,67,0.00848534880088332],[124,223,68,0.007316687767298236],[124,223,69,0.006226298680179485],[124,223,70,0.005239250527178226],[124,223,71,0.004380232024498119],[124,223,72,0.0036724261474009013],[124,223,73,0.003136514945598854],[124,223,74,0.002789817109146336],[124,223,75,0.0026455605556956695],[124,223,76,0.002712292113043865],[124,223,77,0.0029934261731493395],[124,223,78,0.0034869339969151817],[124,223,79,0.004185175154689958],[124,224,64,0.01146195262221927],[124,224,65,0.009965876148821055],[124,224,66,0.008571207803857214],[124,224,67,0.007255316576238843],[124,224,68,0.006017253219009323],[124,224,69,0.004882558923569272],[124,224,70,0.003877527364185449],[124,224,71,0.003027329304795976],[124,224,72,0.002354894348932283],[124,224,73,0.0018799346104159107],[124,224,74,0.0016181128268492222],[124,224,75,0.0015803572273659892],[124,224,76,0.0017723252539311408],[124,224,77,0.0021940180232102127],[124,224,78,0.002839547205498054],[124,224,79,0.0036970557902391943],[124,225,64,0.010559807365716432],[124,225,65,0.008940654883955972],[124,225,66,0.007441738906098287],[124,225,67,0.00604271358070229],[124,225,68,0.004744547487574249],[124,225,69,0.0035743387798166356],[124,225,70,0.002559252312816006],[124,225,71,0.0017246361377362752],[124,225,72,0.001092913618663486],[124,225,73,6.826282961460322E-4],[124,225,74,5.076440605271876E-4],[124,225,75,5.765029732431243E-4],[124,225,76,8.919428479795766E-4],[124,225,77,0.001450576477913273],[124,225,78,0.0022427341721850463],[124,225,79,0.003252471046249117],[124,226,64,0.009660677098438014],[124,226,65,0.007927320720643427],[124,226,66,0.006332706159682147],[124,226,67,0.004858793841209964],[124,226,68,0.0035083199887869045],[124,226,69,0.0023096714154443804],[124,226,70,0.001290650104536732],[124,226,71,4.765878984430342E-4],[124,226,72,-1.107487962625047E-4],[124,226,73,-4.5409145957123556E-4],[124,226,74,-5.414364728135202E-4],[124,226,75,-3.666443444358169E-4],[124,226,76,7.01309668239261E-5],[124,226,77,7.621845068666056E-4],[124,226,78,0.0016961762000843412],[124,226,79,0.0028522215538069155],[124,227,64,0.008785207821930839],[124,227,65,0.006945954419921694],[124,227,66,0.00526337991766657],[124,227,67,0.003721659369270214],[124,227,68,0.0023251731563912106],[124,227,69,0.0011034551574087288],[124,227,70,8.482942816999854E-5],[124,227,71,-7.054734222690451E-4],[124,227,72,-0.0012463970776993149],[124,227,73,-0.001521968105796962],[124,227,74,-0.0015220296854657085],[124,227,75,-0.0012427981135007416],[124,227,76,-6.872399852309413E-4],[124,227,77,1.3473180654136478E-4],[124,227,78,0.0012062448645327013],[124,227,79,0.0025036382431567143],[124,228,64,0.007971113317934467],[124,228,65,0.0060366655154808],[124,228,66,0.004275852314447441],[124,228,67,0.0026749746206692856],[124,228,68,0.001239920448486367],[124,228,69,1.1884416818279595E-6],[124,228,70,-0.0010125297724007671],[124,228,71,-0.001776224265845572],[124,228,72,-0.0022696287067091162],[124,228,73,-0.002478101720975912],[124,228,74,-0.002393325112284319],[124,228,75,-0.0020138165947312346],[124,228,76,-0.0013452549564118333],[124,228,77,-4.0061583107370345E-4],[124,228,78,7.998834899833688E-4],[124,228,79,0.002229031526230344],[124,229,64,0.00725348991192153],[124,229,65,0.005237423511329767],[124,229,66,0.0034105419556789674],[124,229,67,0.0017612103764584452],[124,229,68,2.966686344903136E-4],[124,229,69,-9.51873760125126E-4],[124,229,70,-0.001955580767883642],[124,229,71,-0.002689843434344661],[124,229,72,-0.0031353152562719226],[124,229,73,-0.003278760381283668],[124,229,74,-0.003113712058835771],[124,229,75,-0.0026409390322741115],[124,229,76,-0.0018687178324742603],[124,229,77,-8.129092011280244E-4],[124,229,78,5.031628663984306E-4],[124,229,79,0.0020490307149944463],[124,230,64,0.006658580530403294],[124,230,65,0.004576671082923907],[124,230,66,0.002697732894493281],[124,230,67,0.0010121458011054503],[124,230,68,-4.7166401518736705E-4],[124,230,69,-0.0017220717372195319],[124,230,70,-0.0027103609728930307],[124,230,71,-0.003412540519683717],[124,230,72,-0.003810343139443665],[124,230,73,-0.0038920325895633427],[124,230,74,-0.0036530163828720694],[124,230,75,-0.003096262026645396],[124,230,76,-0.002232514767433722],[124,230,77,-0.0010803151409566386],[124,230,78,3.341851074743902E-4],[124,230,79,0.0019776099091792813],[124,231,64,0.0062043608197456645],[124,231,65,0.004073902554387473],[124,231,66,0.0021581548756957817],[124,231,67,4.49464039351091E-4],[124,231,68,-0.0010427235468230167],[124,231,69,-0.002286678703112009],[124,231,70,-0.0032540855135191264],[124,231,71,-0.003921802911544438],[124,231,72,-0.0042728148866550885],[124,231,73,-0.004296986723980578],[124,231,74,-0.0039916248361495585],[124,231,75,-0.0033618380269180665],[124,231,76,-0.0024206983048346265],[124,231,77,-0.0011891996394409517],[124,231,78,3.039866801119448E-4],[124,231,79,0.0020229611662200375],[124,232,64,0.00590110742016903],[124,232,65,0.003740225747124799],[124,232,66,0.0018035492874438187],[124,232,67,8.533701684196577E-5],[124,232,68,-0.0014041020828968582],[124,232,69,-0.002633237920739385],[124,232,70,-0.0035744319758760678],[124,232,71,-0.004205623818762486],[124,232,72,-0.004511219375492598],[124,232,73,-0.004482785549098585],[124,232,74,-0.004119548876525294],[124,232,75,-0.0034286961798719916],[124,232,76,-0.002425475447730126],[124,232,77,-0.001133095454864611],[124,232,78,4.175771064408587E-4],[124,232,79,0.0021885239549069243],[124,233,64,0.005751946443646079],[124,233,65,0.0035789049267154274],[124,233,66,0.0016372182602974006],[124,233,67,-7.70033819372265E-5],[124,233,68,-0.0015527285879708508],[124,233,69,-0.0027589025393472883],[124,233,70,-0.0036688196977960985],[124,233,71,-0.004261714687317734],[124,233,72,-0.004523574312044775],[124,233,73,-0.004447758889260636],[124,233,74,-0.004035430729377139],[124,233,75,-0.003295787869844702],[124,233,76,-0.002246101442086318],[124,233,77,-9.115553174270248E-4],[124,233,78,6.751130628607387E-4],[124,233,79,0.002474171519406473],[124,234,64,0.0057533821859662125],[124,234,65,0.0035858849378880777],[124,234,66,0.0016545570740987088],[124,234,67,-4.270751637708751E-5],[124,234,68,-0.0014942683040616179],[124,234,69,-0.002669777695243635],[124,234,70,-0.003543683027183553],[124,234,71,-0.004096701292331633],[124,234,72,-0.004316540078837155],[124,234,73,-0.004198433402807856],[124,234,74,-0.0037454904491466524],[124,234,75,-0.0029688555045034237],[124,234,76,-0.001887677629112894],[124,234,77,-5.288888719212701E-4],[124,234,78,0.0010732099169943133],[124,234,79,0.002877556383621328],[124,235,64,0.00589580607799425],[124,235,65,0.0037502965964056065],[124,235,66,0.0018435700150296835],[124,235,67,1.7523665190141629E-4],[124,235,68,-0.00124253053643331],[124,235,69,-0.0023802644485998487],[124,235,70,-0.003213737994156926],[124,235,71,-0.0037253028096566687],[124,235,72,-0.003904504097883744],[124,235,73,-0.003748518435011162],[124,235,74,-0.003262412777282383],[124,235,75,-0.002459223153425322],[124,235,76,-0.001359851779723205],[124,235,77,7.218420530227349E-6],[124,235,78,0.0016063926749078144],[124,235,79,0.0033956171528508796],[124,236,64,0.006163985855391408],[124,236,65,0.004054943385142916],[124,236,66,0.0021853698061550003],[124,236,67,5.565352514059427E-4],[124,236,68,-8.188844911339137E-4],[124,236,69,-0.0019124051525291597],[124,236,70,-0.002701241873456548],[124,236,71,-0.0031694932086576474],[124,236,72,-0.0033086349011503162],[124,236,73,-0.0031178469799167385],[124,236,74,-0.0026041726542524977],[124,236,75,-0.001782507717068714],[124,236,76,-6.75419404287759E-4],[124,236,77,6.872061138671572E-4],[124,236,78,0.0022686882136222033],[124,236,79,0.00402624866476073],[124,237,64,0.006537534900040813],[124,237,65,0.00447676947972939],[124,237,66,0.002654660714958424],[124,237,67,0.0010741074300602796],[124,237,68,-2.5168288860058676E-4],[124,237,69,-0.0012952298788381153],[124,237,70,-0.0020352451489724786],[124,237,71,-0.0024576443521301416],[124,237,72,-0.002555905155486906],[124,237,73,-0.002331270847602617],[124,237,74,-0.001792798321910134],[124,237,75,-9.572493950858368E-4],[124,237,76,1.5117536493986446E-4],[124,237,77,0.0015012609169729593],[124,237,78,0.0030553605450768465],[124,237,79,0.004770137401633545],[124,238,64,0.006991361680357417],[124,238,65,0.0049873091070725475],[124,238,66,0.0032202054210054374],[124,238,67,0.0016945916861194985],[124,238,68,4.2430689675988786E-4],[124,238,69,-5.641035572313256E-4],[124,238,70,-0.0012508354339231488],[124,238,71,-0.0016236502424579748],[124,238,72,-0.0016780829555711266],[124,238,73,-0.0014175092146317511],[124,238,74,-8.530710496664293E-4],[124,238,75,-3.4603366535492035E-6],[124,238,76,0.0011054405908108367],[124,238,77,0.0024410615702261476],[124,238,78,0.003964790694436267],[124,238,79,0.0056327638974651515],[124,239,64,0.007488125181218548],[124,239,65,0.0055461084867001595],[124,239,66,0.0038390962485978963],[124,239,67,0.0023733370568211577],[124,239,68,0.0011634763251926132],[124,239,69,2.3528753107384832E-4],[124,239,70,-3.9282586204001323E-4],[124,239,71,-7.104542800834104E-4],[124,239,72,-7.152258634937236E-4],[124,239,73,-4.1272467417079406E-4],[124,239,74,1.8371739374940544E-4],[124,239,75,0.0010533555000985853],[124,239,76,0.002168493870783649],[124,239,77,0.0034950750997674506],[124,239,78,0.004993396748558052],[124,239,79,0.006618955104878813],[124,240,64,0.007962053887761054],[124,240,65,0.00608748199299949],[124,240,66,0.004445951919045684],[124,240,67,0.003045482653590719],[124,240,68,0.0019017412983828583],[124,240,69,0.0010399727498848692],[124,240,70,4.7734143132939765E-4],[124,240,71,2.2251678823221918E-4],[124,240,72,2.7580378835482936E-4],[124,240,73,6.293836257219862E-4],[124,240,74,0.00126766499903613],[124,240,75,0.0021677461810680368],[124,240,76,0.003299987947680149],[124,240,77,0.004628697294388514],[124,240,78,0.006112921736322859],[124,240,79,0.0077073538656631125],[124,241,64,0.008355333209508162],[124,241,65,0.006554071815051786],[124,241,66,0.00498389196025282],[124,241,67,0.0036546153993220146],[124,241,68,0.002583162622276808],[124,241,69,0.0017945569509610724],[124,241,70,0.0013049577451458279],[124,241,71,0.0011214585233651356],[124,241,72,0.0012423981424171582],[124,241,73,0.0016577667168685268],[124,241,74,0.002349706340128509],[124,241,75,0.003293106538680034],[124,241,76,0.004456294267357431],[124,241,77,0.00580181813732005],[124,241,78,0.007287326460937441],[124,241,79,0.008866538600548621],[124,242,64,0.008626124323568608],[124,242,65,0.006903975505821544],[124,242,66,0.005410901179865116],[124,242,67,0.004158516165479708],[124,242,68,0.003165227122176247],[124,242,69,0.0024561911179147525],[124,242,70,0.0020468581667260058],[124,242,71,0.0019429797370303452],[124,242,72,0.002141102638823048],[124,242,73,0.0026291425749029275],[124,242,74,0.003387037114810976],[124,242,75,0.004387477743546146],[124,242,76,0.005596720537264355],[124,242,77,0.006975474926062683],[124,242,78,0.008479869920783069],[124,242,79,0.010062497107727312],[124,243,64,0.00874663775375455],[124,243,65,0.007108899297058807],[124,243,66,0.005698079119466683],[124,243,67,0.004527525357787432],[124,243,68,0.003617351110404929],[124,243,69,0.0029932353586135355],[124,243,70,0.0026702647379155493],[124,243,71,0.0026531447426889386],[124,243,72,0.002936873897271593],[124,243,73,0.0035074833020729804],[124,243,74,0.004342841022884196],[124,243,75,0.005413520707312333],[124,243,76,0.006683733735218116],[124,243,77,0.008112324141061989],[124,243,78,0.009653825486179927],[124,243,79,0.011259578809231351],[124,244,64,0.008701316802253783],[124,244,65,0.00715241989061313],[124,244,66,0.005827995370949501],[124,244,67,0.0047430102460065265],[124,244,68,0.003919480055836393],[124,244,69,0.0033840114306754685],[124,244,70,0.003151711643709898],[124,244,71,0.0032265895434177194],[124,244,72,0.0036024031250936847],[124,244,73,0.004263559332151935],[124,244,74,0.005186065283328822],[124,244,75,0.006338530058421066],[124,244,76,0.0076832161193587665],[124,244,77,0.009177139395975854],[124,244,78,0.010773217027669242],[124,244,79,0.012421461724091434],[124,245,64,0.008485132647307292],[124,245,65,0.007028356468582182],[124,245,66,0.005793152404755749],[124,245,67,0.004795935568904677],[124,245,68,0.004060785844496624],[124,245,69,0.0036156460309016416],[124,245,70,0.003476053485806844],[124,245,71,0.003645712846887193],[124,245,72,0.004117505770816898],[124,245,73,0.004874541212391885],[124,245,74,0.005891245191753254],[124,245,75,0.007134488952859314],[124,245,76,0.0085647543796033],[124,245,77,0.010137335507947683],[124,245,78,0.011803574953882366],[124,245,79,0.013512134068632038],[124,246,64,0.00810199304656147],[124,246,65,0.006739254781881354],[124,246,66,0.0055945576667171225],[124,246,67,0.004685539041062301],[124,246,68,0.004038463102975846],[124,246,69,0.003683006147339553],[124,246,70,0.0036355577551334516],[124,246,71,0.0038999428313785662],[124,246,72,0.004468578157291025],[124,246,73,0.005323659512139036],[124,246,74,0.006438378093378568],[124,246,75,0.007778164934884412],[124,246,76,0.00930196200283862],[124,246,77,0.010963518637629845],[124,246,78,0.012712712008582587],[124,246,79,0.014496890257074006],[124,247,64,0.00756326670036718],[124,247,65,0.006294985282287756],[124,247,66,0.005240406795610942],[124,247,67,0.004418113472325385],[124,247,68,0.0038566261278888264],[124,247,69,0.003587727829927075],[124,247,70,0.003629082658768937],[124,247,71,0.003985080610716369],[124,247,72,0.004648121833561715],[124,247,73,0.00559992339290296],[124,247,74,0.006812847111187245],[124,247,75,0.008251247005793116],[124,247,76,0.009872834845727098],[124,247,77,0.01163006234912746],[124,247,78,0.013471518556280695],[124,247,79,0.015343340935766496],[124,248,64,0.006886425430140328],[124,248,65,0.005711457354671458],[124,248,66,0.004744879895263417],[124,248,67,0.00400589728151244],[124,248,68,0.0035253080232453666],[124,248,69,0.003337339780590682],[124,248,70,0.003461341486277289],[124,248,71,0.0039027213586386575],[124,248,72,0.0046543363788825705],[124,248,73,0.005697898349145797],[124,248,74,0.0070053949225926185],[124,248,75,0.008540523991093542],[124,248,76,0.01026013981951779],[124,248,77,0.012115709328807891],[124,248,78,0.014054776953258578],[124,248,79,0.01602243653122447],[124,249,64,0.006093806411806797],[124,249,65,0.005009451781831122],[124,249,66,0.004127052860959125],[124,249,67,0.0034660752414050326],[124,249,68,0.003059563691425916],[124,249,69,0.002944483194484884],[124,249,70,0.003142254716636196],[124,249,71,0.003659754052987579],[124,249,72,0.004490781374204008],[124,249,73,0.005617543591653939],[124,249,74,0.0070121478200371595],[124,249,75,0.00863810421705109],[124,249,76,0.010451836489873896],[124,249,77,0.012404198378357479],[124,249,78,0.014441994455275995],[124,249,79,0.01650950362514998],[124,250,64,0.005211496771046847],[124,250,65,0.004213573631839378],[124,250,66,0.003409925807849955],[124,250,67,0.0028198913299632465],[124,250,68,0.002478678350478351],[124,250,69,0.0024262292988731773],[124,250,70,0.0026863910679609405],[124,250,71,0.003267940785599307],[124,250,72,0.004166108224749579],[124,250,73,0.005364109494816108],[124,250,74,0.006834690220194737],[124,250,75,0.008541676415544357],[124,250,76,0.010441531280608358],[124,250,77,0.012484916160838872],[124,250,78,0.014618253954048746],[124,250,79,0.01678529328819707],[124,251,64,0.004268342893095341],[124,251,65,0.0033513277946750236],[124,251,66,0.002619570676656058],[124,251,67,0.0020918755808615247],[124,251,68,0.001805483258535936],[124,251,69,0.0018034960329829856],[124,251,70,0.0021124986762515664],[124,251,71,0.002743576553246572],[124,251,72,0.003693862470401838],[124,251,73,0.004948095464135623],[124,251,74,0.00648018970177089],[124,251,75,0.008254811670467987],[124,251,76,0.010228963842472827],[124,251,77,0.012353573028027877],[124,251,78,0.014575081661075271],[124,251,79,0.016837040307766005],[124,252,64,0.003295086822724229],[124,252,65,0.0024523194086828563],[124,252,66,0.0017844000967826789],[124,252,67,0.0013091868224962633],[124,252,68,0.0010657803130873814],[124,252,69,0.001100565288951936],[124,252,70,0.0014431275545388207],[124,252,71,0.0021072303967187554],[124,252,72,0.0030923571570277172],[124,252,73,0.004385268499489132],[124,252,74,0.005961572552073951],[124,252,75,0.007787306098520292],[124,252,76,0.009820525005879039],[124,252,77,0.01201290209221757],[124,252,78,0.014311330668882278],[124,252,79,0.01665953203298754],[124,253,64,0.0023236321271034015],[124,253,65,0.0015475814054562431],[124,253,66,9.345595664951289E-4],[124,253,67,5.010731661239323E-4],[124,253,68,2.8787715628628266E-4],[124,253,69,3.4470208855404507E-4],[124,253,70,7.043444280771087E-4],[124,253,71,0.001383568687304104],[124,253,72,0.0023846177599602977],[124,253,73,0.0036967426315776698],[124,253,74,0.005297749686318906],[124,253,75,0.0071555638210369366],[124,253,76,0.009229805578719295],[124,253,77,0.011473380525175315],[124,253,78,0.013834079115574563],[124,253,79,0.0162561853316792],[124,254,64,0.001386441562718175],[124,254,65,6.690313613320193E-4],[124,254,66,1.0144496131872655E-4],[124,254,67,-3.015479518291313E-4],[124,254,68,-4.977656449676242E-4],[124,254,69,-4.341229995193358E-4],[124,254,70,-7.445903745730112E-5],[124,254,71,6.012612706745228E-4],[124,254,72,0.0015983990489230188],[124,254,73,0.0029091192921997023],[124,254,74,0.004513892669712157],[124,254,75,0.006383019630435425],[124,254,76,0.008478175076308367],[124,254,77,0.010753971870174297],[124,254,78,0.013159541457965043],[124,254,79,0.015640129908763244],[124,255,64,5.160688245344257E-4],[124,255,65,-1.5094022802633278E-4],[124,255,66,-6.826526974231305E-4],[124,255,67,-0.0010663884536648292],[124,255,68,-0.0012587738663449226],[124,255,69,-0.0012034069938128525],[124,255,70,-8.606637016315282E-4],[124,255,71,-2.0702893450775877E-4],[124,255,72,7.662741599719755E-4],[124,255,73,0.0020546885418506015],[124,255,74,0.003641759419389189],[124,255,75,0.005500600583645084],[124,255,76,0.007595389278885548],[124,255,77,0.009882887939131347],[124,255,78,0.012313991120786351],[124,255,79,0.014835295972776196],[124,256,64,-2.5517344185206425E-4],[124,256,65,-8.797482394671403E-4],[124,256,66,-0.0013847733949467215],[124,256,67,-0.0017599654289096743],[124,256,68,-0.0019609839849576067],[124,256,69,-0.0019281821037563983],[124,256,70,-0.0016184253268750606],[124,256,71,-0.0010045724240828877],[124,256,72,-7.420400728376941E-5],[124,256,73,0.0011716909191162642],[124,256,74,0.0027200689898467406],[124,256,75,0.004547225564422358],[124,256,76,0.006620225302082875],[124,256,77,0.00889836863501754],[124,256,78,0.011334692533826988],[124,256,79,0.0138775039560611],[124,257,64,-8.954078986461242E-4],[124,257,65,-0.0014847568774101307],[124,257,66,-0.001971384811226415],[124,257,67,-0.0023476541540956527],[124,257,68,-0.002568453114588433],[124,257,69,-0.0025709785709017432],[124,257,70,-0.002308582771459124],[124,257,71,-0.0017504165480335876],[124,257,72,-8.802697066905067E-4],[124,257,73,3.046396967267554E-4],[124,257,74,0.0017949258501331387],[124,257,75,0.003570344039459895],[124,257,76,0.005601146402970356],[124,257,77,0.007849483082940612],[124,257,78,0.01027084724121732],[124,257,79,0.012815562386382847],[124,258,64,-0.0013724363381977754],[124,258,65,-0.0019325086201212721],[124,258,66,-0.002407600138439446],[124,258,67,-0.0027929002728662856],[124,258,68,-0.003042673160002722],[124,258,69,-0.003091049950249818],[124,258,70,-0.0028879039932850777],[124,258,71,-0.002398661357158665],[124,258,72,-0.0016032579444226552],[124,258,73,-4.95036601211116E-4],[124,258,74,9.204145723152196E-4],[124,258,75,0.002626481424486757],[124,258,76,0.004596799113938872],[124,258,77,0.006796582219253683],[124,258,78,0.009184008138347891],[124,258,79,0.011711652284968614],[124,259,64,-0.0016377117637703502],[124,259,65,-0.0021734380408386777],[124,259,66,-0.002642623072042577],[124,259,67,-0.00304340600776808],[124,259,68,-0.0033296239095593374],[124,259,69,-0.0034325608009545287],[124,259,70,-0.003298770052877197],[124,259,71,-0.0028900527371675797],[124,259,72,-0.002182534225125877],[124,259,73,-0.001165672350528783],[124,259,74,1.588017927246749E-4],[124,259,75,0.001778009256065171],[124,259,76,0.003669113599411792],[124,259,77,0.005800574893536217],[124,259,78,0.008133465981114757],[124,259,79,0.01062284956598409],[124,260,64,-0.0016359601493913392],[124,260,65,-0.0021518477304177572],[124,260,66,-0.0026200826197823467],[124,260,67,-0.003041831367547987],[124,260,68,-0.003370843997488849],[124,260,69,-0.003536019687121334],[124,260,70,-0.0034809510184054173],[124,260,71,-0.003164070924989677],[124,260,72,-0.0025578548910027564],[124,260,73,-0.0016479467206502538],[124,260,74,-4.3220880566421444E-4],[124,260,75,0.0010803020758553316],[124,260,76,0.0028704322978539147],[124,260,77,0.004910101042592075],[124,260,78,0.007163540778260138],[124,260,79,0.009588607196286188],[124,261,64,-0.0013272692601513536],[124,261,65,-0.001827434680625846],[124,261,66,-0.002299021818896616],[124,261,67,-0.0027462532210192976],[124,261,68,-0.0031232472627755405],[124,261,69,-0.003357185267745701],[124,261,70,-0.003389228467565417],[124,261,71,-0.0031748342586012815],[124,261,72,-0.002683092755335637],[124,261,73,-0.001895979324933364],[124,261,74,-8.075238783558931E-4],[124,261,75,5.771021861689059E-4],[124,261,76,0.00224258037936539],[124,261,77,0.00416451974616809],[124,261,78,0.006310610517374774],[124,261,79,0.008641855504861896],[124,262,64,-6.869806598542866E-4],[124,262,65,-0.0011751368215201505],[124,262,66,-0.0016537108029230467],[124,262,67,-0.0021299583561609835],[124,262,68,-0.0025589057183188877],[124,262,69,-0.002866843393330021],[124,262,70,-0.0029931665218787137],[124,262,71,-0.00289086074077898],[124,262,72,-0.002525983589665439],[124,262,73,-0.0018770546908763797],[124,262,74,-9.34355315035322E-4],[124,262,75,3.008619211571392E-4],[124,262,76,0.0018172523522426273],[124,262,77,0.003594346566652679],[124,262,78,0.005603604618171408],[124,262,79,0.007809555954520697],[124,263,64,2.955985963089269E-4],[124,263,65,-1.838313502644565E-4],[124,263,66,-6.723450227439411E-4],[124,263,67,-0.0011801572675558796],[124,263,68,-0.0016637968417608695],[124,263,69,-0.0020496074281509363],[124,263,70,-0.002275985202375635],[124,263,71,-0.0022940339246289823],[124,263,72,-0.0020672026946203185],[124,263,73,-0.0015708256340535563],[124,263,74,-7.915639334202401E-4],[124,263,75,2.7324915288132504E-4],[124,263,76,0.0016163596391865632],[124,263,77,0.0032214396137340974],[124,263,78,0.005064028539776471],[124,263,79,0.007112567965887001],[124,264,64,0.0016187146097786337],[124,264,65,0.0011451944364695547],[124,264,66,6.444791766058985E-4],[124,264,67,1.035177779288524E-4],[124,264,68,-4.363442989747588E-4],[124,264,69,-9.025235893863119E-4],[124,264,70,-0.0012332529004414473],[124,264,71,-0.0013784045062520264],[124,264,72,-0.0012992961505471246],[124,264,73,-9.68392471818279E-4],[124,264,74,-3.68902098318481E-4],[124,264,75,5.057291796605004E-4],[124,264,76,0.0016524285994264911],[124,264,77,0.003059209271277525],[124,264,78,0.004705984837575619],[124,264,79,0.006565484978283434],[124,265,64,0.0032699150281223135],[124,265,65,0.0027999991415910363],[124,265,66,0.0022855108939559207],[124,265,67,0.0017107296075192647],[124,265,68,0.0011142470578151327],[124,265,69,5.665178143834051E-4],[124,265,70,1.286011275872103E-4],[124,265,71,-1.488285428691272E-4],[124,265,72,-2.25467658617934E-4],[124,265,73,-7.125896206902156E-5],[124,265,74,3.338438916054619E-4],[124,265,75,0.001000222213515831],[124,265,76,0.0019290482880602352],[124,265,77,0.003112850965561282],[124,265,78,0.004536190147798035],[124,265,79,0.0061764393335067965],[124,266,64,0.005228026364090557],[124,266,65,0.004759969229932909],[124,266,66,0.0042308120035504755],[124,266,67,0.0036223669726821134],[124,266,68,0.002969860911722936],[124,266,69,0.0023405642157887114],[124,266,70,0.0017939532045047164],[124,266,71,0.001380556675480269],[124,266,72,0.0011417780272445343],[124,266,73,0.0011098340786965416],[124,266,74,0.0013078107589843836],[124,266,75,0.0017498356567503108],[124,266,76,0.0024413672379406705],[124,266,77,0.003379600368300709],[124,266,78,0.00455398761176975],[124,266,79,0.005946875620676398],[124,267,64,0.007465359232882097],[124,267,65,0.006998025895556183],[124,267,66,0.006453944380046099],[124,267,67,0.00581268820890548],[124,267,68,0.005105542765776546],[124,267,69,0.004395574527421512],[124,267,70,0.003739829459082815],[124,267,71,0.003188017972330712],[124,267,72,0.0027821339959011996],[124,267,73,0.002556196461730047],[124,267,74,0.0025361136118157287],[124,267,75,0.002739670334377109],[124,267,76,0.003176638545016027],[124,267,77,0.003849010441702926],[124,267,78,0.0047513542829265565],[124,267,79,0.005871292167755108],[124,268,64,0.009950140310125886],[124,268,65,0.009483055598925878],[124,268,66,0.008924375751138814],[124,268,67,0.008251676437839733],[124,268,68,0.007491775494273469],[124,268,69,0.0067025834977479624],[124,268,70,0.005937926571994426],[124,268,71,0.005246071630198188],[124,268,72,0.004669131247111039],[124,268,73,0.004242596545165518],[124,268,74,0.003994998745968236],[124,268,75,0.003947699829203336],[124,268,76,0.0041148125351465215],[124,268,77,0.00450324974616346],[124,268,78,0.0051129030883240835],[124,268,79,0.005936950408129087],[124,269,64,0.01264916964038705],[124,269,65,0.012182562875461173],[124,269,66,0.011610102759454592],[124,269,67,0.010907604884191891],[124,269,68,0.010096955737884475],[124,269,69,0.009230055282734866],[124,269,70,0.00835680767996352],[124,269,71,0.007523487434692942],[124,269,72,0.006771918712409986],[124,269,73,0.00613878826578256],[124,269,74,0.0056550928833487045],[124,269,75,0.005345722049880968],[124,269,76,0.005229176289076684],[124,269,77,0.005317421444154296],[124,269,78,0.005615878942557167],[124,269,79,0.006123551888856268],[124,270,64,0.015530701767017778],[124,270,65,0.015065543867194168],[124,270,66,0.014480489676192252],[124,270,67,0.01374981075243789],[124,270,68,0.012890069604973941],[124,270,69,0.011946424730939428],[124,270,70,0.010964271990852752],[124,270,71,0.009987450045396525],[124,270,72,0.009057181952300824],[124,270,73,0.008211156121533595],[124,270,74,0.0074827478158467475],[124,270,75,0.0069003821491839985],[124,270,76,0.006487039302467341],[124,270,77,0.006259902446396097],[124,270,78,0.006230148635750236],[124,270,79,0.0064028827209239554],[124,271,64,0.01855210972222118],[124,271,65,0.018090157561648716],[124,271,66,0.017494169000543323],[124,271,67,0.01673706669696714],[124,271,68,0.01582978160216158],[124,271,69,0.014810143755510465],[124,271,70,0.013718583488689887],[124,271,71,0.012596172697858506],[124,271,72,0.011483316414401],[124,271,73,0.010418589780552821],[124,271,74,0.009437721907963936],[124,271,75,0.008572727849179168],[124,271,76,0.007851189664429247],[124,271,77,0.007295687320623237],[124,271,78,0.00692337991767649],[124,271,79,0.006745737500991357],[124,272,64,0.02124994636537278],[124,272,65,0.021160881291172325],[124,272,66,0.02055690576999387],[124,272,67,0.019776982877735532],[124,272,68,0.018826225042015803],[124,272,69,0.01773469443151818],[124,272,70,0.016537493759856147],[124,272,71,0.01527264325576595],[124,272,72,0.013979515005794856],[124,272,73,0.012697419021376317],[124,272,74,0.01146434280853418],[124,272,75,0.010315845956239324],[124,272,76,0.009284110996644133],[124,272,77,0.008397151528659068],[124,272,78,0.007678178337309692],[124,272,79,0.0071451239867811],[124,273,64,0.01827227604565453],[124,273,65,0.018740614869970574],[124,273,66,0.01936711123907141],[124,273,67,0.020180784479222835],[124,273,68,0.021182418108134256],[124,273,69,0.020629171265326946],[124,273,70,0.019334761077473513],[124,273,71,0.01793637425859455],[124,273,72,0.01647212468095165],[124,273,73,0.014981851788385377],[124,273,74,0.013505615270714455],[124,273,75,0.012082351855454554],[124,273,76,0.010748695741682114],[124,273,77,0.009537963922497953],[124,273,78,0.008479307365913956],[124,273,79,0.007597028750923356],[124,274,64,0.015439095770786778],[124,274,65,0.01589447720992934],[124,274,66,0.01651914267012427],[124,274,67,0.017342613296396976],[124,274,68,0.018371489230221732],[124,274,69,0.019591958131104353],[124,274,70,0.02098029304165799],[124,274,71,0.020513826181881814],[124,274,72,0.018893297521406404],[124,274,73,0.017210673583914125],[124,274,74,0.015507828117311741],[124,274,75,0.013826805687199845],[124,274,76,0.012208416877988423],[124,274,77,0.010691006083041034],[124,274,78,0.009309393085041886],[124,274,79,0.008093989336215614],[124,275,64,0.01282814439430517],[124,275,65,0.013267121127946743],[124,275,66,0.01388456984633898],[124,275,67,0.014710184645523303],[124,275,68,0.015756203711001872],[124,275,69,0.017016952753975405],[124,275,70,0.018474515567734655],[124,275,71,0.02010131069175859],[124,275,72,0.02118144557090106],[124,275,73,0.019327746876096095],[124,275,74,0.017421091889038898],[124,275,75,0.015506281133298765],[124,275,76,0.013627920284749353],[124,275,77,0.011828980522538675],[124,275,78,0.010149540543107903],[124,275,79,0.008625711348553554],[124,276,64,0.010505479249914114],[124,276,65,0.010924711857608975],[124,276,66,0.011529382208547686],[124,276,67,0.012349032963827744],[124,276,68,0.013401253420476293],[124,276,69,0.014688305554663278],[124,276,70,0.016198021500361214],[124,276,71,0.01790650761101358],[124,276,72,0.01978069302924367],[124,276,73,0.021282533427117542],[124,276,74,0.019199897944001197],[124,276,75,0.017080953698390525],[124,276,76,0.014973634169366418],[124,276,77,0.012925033065758826],[124,276,78,0.01097996099392468],[124,276,79,0.009179692771847948],[124,277,64,0.008525344525796227],[124,277,65,0.008921766031786514],[124,277,66,0.00950818483988943],[124,277,67,0.010313686264556806],[124,277,68,0.011360825186316148],[124,277,69,0.012659440443143299],[124,277,70,0.014202935239671657],[124,277,71,0.01597109272361372],[124,277,72,0.017932833256090068],[124,277,73,0.02004878740816026],[124,277,74,0.020803698822842352],[124,277,75,0.018514708215820467],[124,277,76,0.016214395205117794],[124,277,77,0.013953388980107041],[124,277,78,0.011780609515358663],[124,277,79,0.009741854937069947],[124,278,64,0.0069300171264124995],[124,278,65,0.007300969409039723],[124,278,66,0.00786398074424147],[124,278,67,0.008647403696470818],[124,278,68,0.009678286205157208],[124,278,69,0.010973535865047764],[124,278,70,0.012531837929722048],[124,278,71,0.014336564952259852],[124,278,72,0.016358719680720796],[124,278,73,0.01855968766214579],[124,278,74,0.020893796174799462],[124,278,75,0.019775765318072666],[124,278,76,0.017322091044434263],[124,278,77,0.014890002449887425],[124,278,78,0.01253183253818736],[124,278,79,0.01029717961619632],[124,279,64,0.005749629590728516],[124,279,65,0.00609297109293779],[124,279,66,0.006627929197317461],[124,279,67,0.007381888752004106],[124,279,68,0.008385844696796867],[124,279,69,0.009663129651419983],[124,279,70,0.011217316752472355],[124,279,71,0.013035204889931118],[124,279,72,0.015089921154117114],[124,279,73,0.017343827356439624],[124,279,74,0.019751227062088494],[124,279,75,0.020837326624595927],[124,279,76,0.0182723188925947],[124,279,77,0.015713219015733082],[124,279,78,0.013215024847354177],[124,279,79,0.010830351749922626],[124,280,64,0.00500196966725082],[124,280,65,0.005316153869607549],[124,280,66,0.00581907983020041],[124,280,67,0.006536977829279663],[124,280,68,0.007504185561599098],[124,280,69,0.00874969868155272],[124,280,70,0.010281489114447902],[124,280,71,0.012089546951360823],[124,280,72,0.014149114126748418],[124,280,73,0.01642371699664074],[124,280,74,0.01886799410874717],[124,280,75,0.021430315825760594],[124,280,76,0.01904505984772001],[124,280,77,0.016404450627134776],[124,280,78,0.01381329565031351],[124,280,79,0.011326407355787264],[124,281,64,0.0046922561728448735],[124,281,65,0.004976380314057661],[124,281,66,0.0054440821282379],[124,281,67,0.006120303873566108],[124,281,68,0.0070420808184129225],[124,281,69,0.008243213194321008],[124,281,70,0.009735501623709342],[124,281,71,0.011511826812952621],[124,281,72,0.013549484709579965],[124,281,73,0.015813315913785597],[124,281,74,0.018258625525232015],[124,281,75,0.020833889985766633],[124,281,76,0.01962536873598059],[124,281,77,0.016948862984214785],[124,281,78,0.014312143340289388],[124,281,79,0.011771386201041971],[124,282,64,0.004812890783950645],[124,282,65,0.0050667143360752075],[124,282,66,0.005496870046409424],[124,282,67,0.006126934839209583],[124,282,68,0.006995974612411107],[124,282,69,0.008141665591658433],[124,282,70,0.009579003758715673],[124,282,71,0.011303404102553212],[124,282,72,0.013294106959287422],[124,282,73,0.015517374536196908],[124,282,74,0.017929473727594045],[124,282,75,0.02047944171832069],[124,282,76,0.020004079196094364],[124,282,77,0.01733607487460056],[124,282,78,0.014700138616210801],[124,282,79,0.012152988862394161],[124,283,64,0.005343185425384326],[124,283,65,0.0055671178516309445],[124,283,66,0.005958321455337131],[124,283,67,0.00653898672341022],[124,283,68,0.0073495425892883045],[124,283,69,0.008430573581086148],[124,283,70,0.009799596129792004],[124,283,71,0.011454160295238417],[124,283,72,0.013375297399550684],[124,283,73,0.015530754380274145],[124,283,74,0.017878010934394357],[124,283,75,0.020367075919410765],[124,283,76,0.020178523794710867],[124,283,77,0.017560869242677225],[124,283,78,0.01496961565605875],[124,283,79,0.012461237832849364],[124,284,64,0.006249064933252907],[124,284,65,0.006444122275588173],[124,284,66,0.006795892139874598],[124,284,67,0.0073252109282531215],[124,284,68,0.008073225434024322],[124,284,69,0.009082457502274441],[124,284,70,0.01037225322799151],[124,284,71,0.011941871761173752],[124,284,72,0.01377394577595896],[124,284,73,0.01583772580842253],[124,284,74,0.018092104532542196],[124,284,75,0.020488417444337027],[124,284,76,0.0201532689844398],[124,284,77,0.01762391576191411],[124,284,78,0.015117371076623014],[124,284,79,0.012689142374539242],[124,285,64,0.007482744674467513],[124,285,65,0.007650474535936326],[124,285,66,0.007963224074514443],[124,285,67,0.008440555706976835],[124,285,68,0.009123736368730198],[124,285,69,0.010056291675294059],[124,285,70,0.011258720544950378],[124,285,71,0.012731557896445502],[124,285,72,0.014458822022928705],[124,285,73,0.016411243579334354],[124,285,74,0.01854927228268643],[124,285,75,0.020825857829538774],[124,285,76,0.01994086474928719],[124,285,77,0.01753250471656625],[124,285,78,0.01514537045041734],[124,285,79,0.012833366855826363],[124,286,64,0.008982382805705564],[124,286,65,0.00912475730854187],[124,286,66,0.00939972769647284],[124,286,67,0.009825701444324259],[124,286,68,0.010443542394697978],[124,286,69,0.011296929595230872],[124,286,70,0.012406885930594592],[124,286,71,0.013774804247234224],[124,286,72,0.015385859396821223],[124,286,73,0.01721220018813041],[124,286,74,0.01921591740388449],[124,286,75,0.02135178444685089],[124,286,76,0.01956260881839566],[124,286,77,0.01730129203711945],[124,286,78,0.015061462189994239],[124,286,79,0.01289490235136343],[124,287,64,0.010671706849246938],[124,287,65,0.010790983164324827],[124,287,66,0.011030137888029432],[124,287,67,0.011406569508754549],[124,287,68,0.011960319048437246],[124,287,69,0.012734502778948064],[124,287,70,0.013750125033015884],[124,287,71,0.015009060511559178],[124,287,72,0.016497413699883223],[124,287,73,0.01818865696117669],[124,287,74,0.020046543541829998],[124,287,75,0.021118258667589533],[124,287,76,0.019049325368541037],[124,287,77,0.016953055374655208],[124,287,78,0.014880098651396],[124,287,79,0.01287974132539482],[124,288,64,0.012459614251651594],[124,288,65,0.012558162307578414],[124,288,66,0.012764043364263618],[124,288,67,0.013093804396026103],[124,288,68,0.013586378419916641],[124,288,69,0.014283793044685416],[124,288,70,0.015206620636174383],[124,288,71,0.016356913270732708],[124,288,72,0.01772149848438764],[124,288,73,0.019275052832373782],[124,288,74,0.020982949584606028],[124,288,75,0.02034312327943169],[124,288,76,0.01844215817908001],[124,288,77,0.01651946114311275],[124,288,78,0.014623064352213434],[124,288,79,0.012799555261639443],[124,289,64,0.01423974856210159],[124,289,65,0.014319845630714008],[124,289,66,0.014495391287362682],[124,289,67,0.01478223108645903],[124,289,68,0.015218072447262749],[124,289,69,0.015843580301444816],[124,289,70,0.016678657990115326],[124,289,71,0.017725335506458165],[124,289,72,0.018970998189937055],[124,289,73,0.020391392582403627],[124,289,74,0.021204495033604037],[124,289,75,0.019529384136114932],[124,289,76,0.017793377382229046],[124,289,77,0.01604184210452442],[124,289,78,0.01432021136235817],[124,289,79,0.012672375822746407],[124,290,64,0.015900127291939174],[124,290,65,0.01596405953167021],[124,290,66,0.016112733110467216],[124,290,67,0.0163614008953697],[124,290,68,0.016746569444417297],[124,290,69,0.01730750285937218],[124,290,70,0.018063361744321122],[124,290,71,0.019016049418652536],[124,290,72,0.020153377801955263],[124,290,73,0.021452009854863188],[124,290,74,0.020277189035112317],[124,290,75,0.01874594524023902],[124,290,76,0.017162183062484924],[124,290,77,0.015569037397688551],[124,290,78,0.01400954207867263],[124,290,79,0.012525086937160665],[124,291,64,0.017356906651493424],[124,291,65,0.01740786959540802],[124,291,66,0.01753456835407927],[124,291,67,0.017751688627270654],[124,291,68,0.018094538631971087],[124,291,69,0.018600959771108806],[124,291,70,0.019289288933988243],[124,291,71,0.02016116968382501],[124,291,72,0.021204663219247154],[124,291,73,0.020768245744058063],[124,291,74,0.01944803378147012],[124,291,75,0.018043630476116825],[124,291,76,0.016594767990216006],[124,291,77,0.015142633394439529],[124,291,78,0.013728145652630057],[124,291,79,0.012390471013619227],[124,292,64,0.018544976062740977],[124,292,65,0.01858714165130712],[124,292,66,0.018698189884939594],[124,292,67,0.01889219951172018],[124,292,68,0.019203247710640237],[124,292,69,0.019667716771884503],[124,292,70,0.020303010310865403],[124,292,71,0.02111033826822365],[124,292,72,0.02109317379579808],[124,292,73,0.019980291720458856],[124,292,74,0.018757167281557626],[124,292,75,0.017459006978567393],[124,292,76,0.01612416408952539],[124,292,77,0.01479222724518405],[124,292,78,0.01350234670934515],[124,292,79,0.012291799628939098],[124,293,64,0.01941325316041662],[124,293,65,0.019451601340959263],[124,293,66,0.019554491079228194],[124,293,67,0.019735314163644657],[124,293,68,0.020026871296519033],[124,293,69,0.020464052543104003],[124,293,70,0.021063207234221882],[124,293,71,0.021349090353218157],[124,293,72,0.020431453553046076],[124,293,73,0.019383267398410727],[124,293,74,0.018234005292584832],[124,293,75,0.017018147262366296],[124,293,76,0.01577306918222711],[124,293,77,0.014537169128603292],[124,293,78,0.013348232484328357],[124,293,79,0.012242036998731897],[124,294,64,0.019924764142502573],[124,294,65,0.019964900534992683],[124,294,66,0.020068013868800274],[124,294,67,0.020246709254803083],[124,294,68,0.020532470476642473],[124,294,69,0.02095867937383436],[124,294,70,0.02154051274550335],[124,294,71,0.020893245772190445],[124,294,72,0.020007611335359863],[124,294,73,0.018999369672470554],[124,294,74,0.01789794861398668],[124,294,75,0.016737529159063826],[124,294,76,0.015554958429331875],[124,294,77,0.014387901328232446],[124,294,78,0.013273232483041367],[124,294,79,0.012245669629992474],[124,295,64,0.020056748889830008],[124,295,65,0.02010470904998167],[124,295,66,0.020217022440082014],[124,295,67,0.02040540416369747],[124,295,68,0.020699998916128007],[124,295,69,0.02113269149780207],[124,295,70,0.021453432755538855],[124,295,71,0.020714383086035935],[124,295,72,0.01983586328145037],[124,295,73,0.018840816584998636],[124,295,74,0.01775904251910254],[124,295,75,0.016624880438740355],[124,295,76,0.015475131912338614],[124,295,77,0.014347223905720666],[124,295,78,0.0132776143189943],[124,295,79,0.012300441005979282],[124,296,64,0.019800791369053855],[124,296,65,0.019862832180380898],[124,296,66,0.01999360309920828],[124,296,67,0.02020383411672146],[124,296,68,0.02052233603167505],[124,296,69,0.02097954162685317],[124,296,70,0.021578466686877816],[124,296,71,0.02081748807026125],[124,296,72,0.019920132060845717],[124,296,73,0.018910299306407058],[124,296,74,0.017818587703042767],[124,296,75,0.016679967465639173],[124,296,76,0.015531697673480836],[124,296,77,0.014411486261229216],[124,296,78,0.013355894994668846],[124,296,79,0.012398990545362348],[124,297,64,0.019162975846830257],[124,297,65,0.01924535457241051],[124,297,66,0.01940379082705598],[124,297,67,0.019647950340790508],[124,297,68,0.020005347749885022],[124,297,69,0.020505046200215225],[124,297,70,0.02115818176944171],[124,297,71,0.021196678779678818],[124,297,72,0.020254322582218712],[124,297,73,0.019201391406797372],[124,297,74,0.01806970218135025],[124,297,75,0.016895327309049947],[124,297,76,0.015716489624062212],[124,297,77,0.014571703979995984],[124,297,78,0.013498167017419085],[124,297,79,0.012530396225151239],[124,298,64,0.018164069463232426],[124,298,65,0.01827281098535792],[124,298,66,0.0184677230643117],[124,298,67,0.018757347761370103],[124,298,68,0.019167975378552676],[124,298,69,0.01972741987307124],[124,298,70,0.020445395136569827],[124,298,71,0.021316399030424406],[124,298,72,0.020822559636811226],[124,298,73,0.01969891490290545],[124,298,74,0.018497833624805705],[124,298,75,0.017256942797557857],[124,298,76,0.01601591981396243],[124,298,77,0.01481460046615529],[124,298,78,0.013691338863262936],[124,298,79,0.012681620396626524],[124,299,64,0.016839731739540124],[124,299,65,0.01698038451110423],[124,299,66,0.017219821289846584],[124,299,67,0.017565420799933635],[124,299,68,0.01804235313497068],[124,299,69,0.018677339778084667],[124,299,70,0.019478695990082204],[124,299,71,0.020439277809529255],[124,299,72,0.02153966974185701],[124,299,73,0.020379262595015307],[124,299,74,0.019081221660933997],[124,299,75,0.01774486006579916],[124,299,76,0.01641176463332255],[124,299,77,0.015123572960517636],[124,299,78,0.013920289415244227],[124,299,79,0.01283885845554417],[124,300,64,0.015240751629863566],[124,300,65,0.015418132855148108],[124,300,66,0.01570900098576069],[124,300,67,0.01611954785172851],[124,300,68,0.01667395489765077],[124,300,69,0.01739804010984914],[124,300,70,0.018298783945728696],[124,300,71,0.019367350673156213],[124,300,72,0.020582359933815072],[124,300,73,0.02121067623371277],[124,300,74,0.019791309712400906],[124,300,75,0.01833374819816177],[124,300,76,0.01688188458935295],[124,300,77,0.015479582628249373],[124,300,78,0.014168936109922464],[124,300,79,0.01298879015241099],[124,301,64,0.013433312767913307],[124,301,65,0.01365124332227836],[124,301,66,0.01399891061978499],[124,301,67,0.014481305058570417],[124,301,68,0.015121770776942009],[124,301,69,0.01594543760499491],[124,301,70,0.01695805582697343],[124,301,71,0.01814910117226976],[124,301,72,0.019495143301079456],[124,301,73,0.020962961845881763],[124,301,74,0.020593105976426496],[124,301,75,0.018993400623354053],[124,301,76,0.017400877367092633],[124,301,77,0.01586196848522459],[124,301,78,0.01442121662554855],[124,301,79,0.013119733445688692],[124,302,64,0.011499287609960697],[124,302,65,0.01176031719768777],[124,302,66,0.012168200320622635],[124,302,67,0.012726710032536325],[124,302,68,0.013458514136109689],[124,302,69,0.01438828852013685],[124,302,70,0.015520698264860055],[124,302,71,0.01684359284207983],[124,302,72,0.018331481509938765],[124,302,73,0.01994875141384568],[124,302,74,0.021445493177443986],[124,302,75,0.01968917795732367],[124,302,76,0.017940663942703806],[124,302,77,0.01624918500819973],[124,302,78,0.014661984038585938],[124,302,79,0.013222700910382747],[124,303,64,0.009510673335369249],[124,303,65,0.009816533403514722],[124,303,66,0.010286586614679794],[124,303,67,0.010923372173848369],[124,303,68,0.011749044113684957],[124,303,69,0.012788064360518573],[124,303,70,0.014044185099233062],[124,303,71,0.01550373844750125],[124,303,72,0.017139226002229682],[124,303,73,0.018912646017328658],[124,303,74,0.020778554294621332],[124,303,75,0.020390656241830965],[124,303,76,0.018477015028879388],[124,303,77,0.016623228602575767],[124,303,78,0.01487938550937689],[124,303,79,0.013291811570277737],[124,304,64,0.007456793770801028],[124,304,65,0.007810892109312314],[124,304,66,0.008346664748567201],[124,304,67,0.009065442111418671],[124,304,68,0.009989033699423189],[124,304,69,0.011141908539069694],[124,304,70,0.012527059357878425],[124,304,71,0.014129392554062032],[124,304,72,0.015919439981792304],[124,304,73,0.01785680290988732],[124,304,74,0.01989332408591753],[124,304,75,0.021093928007184834],[124,304,76,0.01900530441966446],[124,304,77,0.016978876168004378],[124,304,78,0.015067714169668059],[124,304,79,0.0133209752838662],[124,305,64,0.005328472044882555],[124,305,65,0.005735905952930207],[124,305,66,0.006342577570022401],[124,305,67,0.007148675502693389],[124,305,68,0.008175835363243261],[124,305,69,0.009448727565692951],[124,305,70,0.010969713147000425],[124,305,71,0.012722341407122365],[124,305,72,0.014675192789368718],[124,305,73,0.01678544793843604],[124,305,74,0.019002178706864707],[124,305,75,0.021269357405592815],[124,305,76,0.019518749777767155],[124,305,77,0.01730875672346167],[124,305,78,0.015219143477910578],[124,305,79,0.013302030136896481],[124,306,64,0.003140033764059171],[124,306,65,0.0036069097525698204],[124,306,66,0.004290482923136516],[124,306,67,0.005189896588421474],[124,306,68,0.006326775977227532],[124,306,69,0.007726157285414824],[124,306,70,0.009389876132949485],[124,306,71,0.01130018072806166],[124,306,72,0.013423714382987301],[124,306,73,0.015715217571283312],[124,306,74,0.018120945125428146],[124,306,75,0.020581794713101908],[124,306,76,0.02000377874441747],[124,306,77,0.017600618461009243],[124,306,78,0.015322849012252364],[124,306,79,0.013225647400309333],[124,307,64,9.240068764442723E-4],[124,307,65,0.001456855688573662],[124,307,66,0.0022234779121892297],[124,307,67,0.003222086896767999],[124,307,68,0.004474446186568181],[124,307,69,0.006006089154513516],[124,307,70,0.007818413559045547],[124,307,71,0.009892417673056807],[124,307,72,0.012192829769110212],[124,307,73,0.014671949813945387],[124,307,74,0.017273198789850733],[124,307,75,0.019934371616173105],[124,307,76,0.02044207863659286],[124,307,77,0.017838981736670402],[124,307,78,0.015366269830225097],[124,307,79,0.013082212296216245],[124,308,64,-0.0012737844307418944],[124,308,65,-6.685017297045838E-4],[124,308,66,1.8690584715075768E-4],[124,308,67,0.0012898465473015646],[124,308,68,0.002662349444466819],[124,308,69,0.0043305406588369216],[124,308,70,0.006295450608451697],[124,308,71,0.008536879413082553],[124,308,72,0.011017678774217355],[124,308,73,0.013687738021210278],[124,308,74,0.0164876695534177],[124,308,75,0.019352189481076646],[124,308,76,0.020812453490479953],[124,308,77,0.018006622437172014],[124,308,78,0.01533622239121962],[124,308,79,0.012862578311858846],[124,309,64,-0.0033987308111061475],[124,309,65,-0.0027150300199765827],[124,309,66,-0.0017659533361347763],[124,309,67,-5.54771152270799E-4],[124,309,68,9.409113031574101E-4],[124,309,69,0.002747870365996845],[124,309,70,0.004866823505692237],[124,309,71,0.0072764286314475285],[124,309,72,0.00993772136120484],[124,309,73,0.012798247723772192],[124,309,74,0.015795887332595],[124,309,75,0.018862362660979768],[124,309,76,0.021092488542399514],[124,309,77,0.018085885864110883],[124,309,78,0.015219867222970255],[124,309,79,0.012558695271716385],[124,310,64,-0.0053915532914925405],[124,310,65,-0.004624251961906143],[124,310,66,-0.0035778088168646523],[124,310,67,-0.0022560515308378934],[124,310,68,-6.361508296297576E-4],[124,310,69,0.0013093377468691091],[124,310,70,0.0035808574218346508],[124,310,71,0.0061559859380243675],[124,310,72,0.008994028429576717],[124,310,73,0.012040296355011674],[124,310,74,0.015230067338465759],[124,310,75,0.01849222137686675],[124,310,76,0.021260022372378],[124,310,77,0.018059831379335336],[124,310,78,0.015005528585055907],[124,310,79,0.012164111420896335],[124,311,64,-0.007192023163604755],[124,311,65,-0.006336987682052675],[124,311,66,-0.0051909008237307494],[124,311,67,-0.0037580368898558303],[124,311,68,-0.002015097611610706],[124,311,69,6.60075751903092E-5],[124,311,70,0.002485470949146956],[124,311,71,0.005219858929148736],[124,311,72,0.00822685779847309],[124,311,73,0.011449695554626346],[124,311,74,0.014821234543976452],[124,311,75,0.018267730171033454],[124,311,76,0.021294427050572294],[124,311,77,0.017913208140246717],[124,311,78,0.014683367438446894],[124,311,79,0.011674349801608171],[124,312,64,-0.008742286538349145],[124,312,65,-0.007796605940769633],[124,312,66,-0.006550159157688162],[124,312,67,-0.005007571782258505],[124,312,68,-0.0031450778266643247],[124,312,69,-9.340015811490955E-4],[124,312,70,0.00162560664190053],[124,312,71,0.004509377380516066],[124,312,72,0.00767351485854059],[124,312,73,0.011059355542131931],[124,312,74,0.014597586895520239],[124,312,75,0.018212121465651435],[124,312,76,0.021177696721877443],[124,312,77,0.017633262320438155],[124,312,78,0.014245908069569066],[124,312,79,0.011087159218130622],[124,313,64,-0.009989794225611998],[124,313,65,-0.00895188531625228],[124,313,66,-0.007605979023309875],[124,313,67,-0.005956975971919787],[124,313,68,-0.00398067933229441],[124,313,69,-0.0016479255251339307],[124,313,70,0.0010409868828850967],[124,313,71,0.004060833849113626],[124,313,72,0.007366497194177857],[124,313,73,0.010897650896267515],[124,313,74,0.014583096648201899],[124,313,75,0.01834474365746691],[124,313,76,0.020895345138128154],[124,313,77,0.017210376258566275],[124,313,78,0.013688418739285816],[124,313,79,0.010402640083383199],[124,314,64,-0.010889837920806528],[124,314,65,-0.009759486283940688],[124,314,66,-0.008316615174826103],[124,314,67,-0.006566346078478986],[124,314,68,-0.004484121887953884],[124,314,69,-0.002040420225655851],[124,314,70,7.641941323549681E-4],[124,314,71,0.00390372878133747],[124,314,72,0.0073319223236550796],[124,314,73,0.010987046947765217],[124,314,74,0.014796349101299715],[124,314,75,0.01868012310257396],[124,314,76,0.02043711269908824],[124,314,77,0.016638540005465906],[124,314,78,0.013009146730591241],[124,314,79,0.009623245421077451],[124,315,64,-0.011407693954283335],[124,315,65,-0.010186035449021181],[124,315,66,-0.008650195626034923],[124,315,67,-0.006805487137889504],[124,315,68,-0.004627093065252836],[124,315,69,-0.002085286403321521],[124,315,70,8.190744499650938E-4],[124,315,71,0.004059319080204632],[124,315,72,0.007588237583076824],[124,315,73,0.0113429858946624],[124,315,74,0.015249617935669816],[124,315,75,0.019227239293919493],[124,315,76,0.019797483591530923],[124,315,77,0.015915655745030507],[124,315,78,0.012209408152555052],[124,315,79,0.00875365726044936],[124,316,64,-0.011520376087003011],[124,316,65,-0.010209823402341169],[124,316,66,-0.008586356370250372],[124,316,67,-0.006655475489727788],[124,316,68,-0.004392228604685725],[124,316,69,-0.001766854213471191],[124,316,70,0.001219463053453616],[124,316,71,0.004539468977451853],[124,316,72,0.008145211093397598],[124,316,73,0.011973031683412558],[124,316,74,0.01594817631000261],[124,316,75,0.019989012510450658],[124,316,76,0.01897601361861244],[124,316,77,0.015043675546914676],[124,316,78,0.011293532820921891],[124,316,79,0.00780053860464793],[124,317,64,-0.011217999011846539],[124,317,65,-0.00982211783188537],[124,317,66,-0.008117498703682039],[124,317,67,-0.006109854534621148],[124,317,68,-0.0037742387005285385],[124,317,69,-0.0010810294339587386],[124,317,70,0.0019682305932818556],[124,317,71,0.005345801988994324],[124,317,72,0.009003202700173388],[124,317,73,0.012876272667735746],[124,317,74,0.016889842859974254],[124,317,75,0.020962003222436867],[124,317,76,0.017977469287794843],[124,317,77,0.014028572867207236],[124,317,78,0.01026866447644156],[124,317,79,0.006772161077809616],[124,318,64,-0.010504754340419852],[124,318,65,-0.009028093628995749],[124,318,66,-0.007249670839193115],[124,318,67,-0.005175464985358911],[124,318,68,-0.002780681762409253],[124,318,69,-3.600261846278298E-5],[124,318,70,0.003056648783287491],[124,318,71,0.006469152707603202],[124,318,72,0.0101527137661068],[124,318,73,0.014042981062873374],[124,318,74,0.01806476176564592],[124,318,75,0.02085952546421325],[124,318,76,0.016811778672997903],[124,318,77,0.012880148145278254],[124,318,78,0.009144416519065529],[124,318,79,0.005677908258409448],[124,319,64,-0.009399500915715085],[124,319,65,-0.007847381776386725],[124,319,66,-0.0060030755330414045],[124,319,67,-0.003872911259300706],[124,319,68,-0.0014323872149031608],[124,319,69,0.0013473773221972186],[124,319,70,0.004464074037015924],[124,319,71,0.007889317207874792],[124,319,72,0.011574214729591545],[124,319,73,0.015454528258299518],[124,319,74,0.019455416110325512],[124,319,75,0.019500361941674687],[124,319,76,0.015493794483531775],[124,319,77,0.011611668749306645],[124,319,78,0.007932383328064037],[124,319,79,0.004527654586289666],[125,-64,64,-0.00203188575236324],[125,-64,65,-0.0027265750500849065],[125,-64,66,-0.003320113928800562],[125,-64,67,-0.003816395893565777],[125,-64,68,-0.004205330188730279],[125,-64,69,-0.004464081622467502],[125,-64,70,-0.004571425447273921],[125,-64,71,-0.00450899918791735],[125,-64,72,-0.004262096498913397],[125,-64,73,-0.0038203199928356036],[125,-64,74,-0.003178089122749839],[125,-64,75,-0.002334999343585464],[125,-64,76,-0.0012960289413302387],[125,-64,77,-7.159010349035886E-5],[125,-64,78,0.001322578992962912],[125,-64,79,0.002865684081314184],[125,-63,64,-0.001564214703270629],[125,-63,65,-0.0022485330878768846],[125,-63,66,-0.002828141349501347],[125,-63,67,-0.0033069974788978067],[125,-63,68,-0.0036758647262796203],[125,-63,69,-0.003913151419252638],[125,-63,70,-0.003998782134111422],[125,-63,71,-0.003915434051306196],[125,-63,72,-0.003649325625637351],[125,-63,73,-0.0031908648709787035],[125,-63,74,-0.0025351534295242027],[125,-63,75,-0.0016823427371504178],[125,-63,76,-6.378387601683608E-4],[125,-63,77,5.876480375683269E-4],[125,-63,78,0.0019782106367772466],[125,-63,79,0.0035130142368289406],[125,-62,64,-9.266755590816342E-4],[125,-62,65,-0.0016011547161155193],[125,-62,66,-0.0021689253389738897],[125,-62,67,-0.0026336523679419536],[125,-62,68,-0.002986993137563272],[125,-62,69,-0.003208919153102292],[125,-62,70,-0.0032807309858805134],[125,-62,71,-0.0031862785358389195],[125,-62,72,-0.002912752638884517],[125,-62,73,-0.002451337046329964],[125,-62,74,-0.0017977170284083075],[125,-62,75,-9.524409946119096E-4],[125,-62,76,7.886831394965607E-5],[125,-62,77,0.0012854563229177283],[125,-62,78,0.002651535877094573],[125,-62,79,0.004156546095792782],[125,-61,64,-1.2887208245266238E-4],[125,-61,65,-7.942859509694295E-4],[125,-61,66,-0.001352604776237345],[125,-61,67,-0.0018068724626725278],[125,-61,68,-0.002149667587375],[125,-61,69,-0.002362803786914857],[125,-61,70,-0.0024291480606902015],[125,-61,71,-0.002333824909487237],[125,-61,72,-0.002065018866469285],[125,-61,73,-0.0016146382590919988],[125,-61,74,-9.788365308904714E-4],[125,-61,75,-1.5838759119344233E-4],[125,-61,76,8.410881787324634E-4],[125,-61,77,0.002009050454873042],[125,-61,78,0.003330121029974317],[125,-61,79,0.00478432418689263],[125,-60,64,8.155449013836121E-4],[125,-60,65,1.5818879344361747E-4],[125,-60,66,-3.932942347108373E-4],[125,-60,67,-8.410446007451237E-4],[125,-60,68,-0.0011785798907079288],[125,-60,69,-0.0013897879131066827],[125,-60,70,-0.0014592521806000487],[125,-60,71,-0.0013734405567785422],[125,-60,72,-0.0011215263533116769],[125,-60,73,-6.960716034703825E-4],[125,-60,74,-9.356891275606056E-5],[125,-60,75,6.851615759046202E-4],[125,-60,76,0.001634723407152352],[125,-60,77,0.002745046356320972],[125,-60,78,0.0040014432250350075],[125,-60,79,0.00538482361557496],[125,-59,64,0.0018894520251046898],[125,-59,65,0.0012389244848905322],[125,-59,66,6.915005889918901E-4],[125,-59,67,2.461627591461696E-4],[125,-59,68,-9.155932286637943E-5],[125,-59,69,-3.078081908627843E-4],[125,-59,70,-3.889908685828673E-4],[125,-59,71,-3.2295340222845373E-4],[125,-59,72,-9.982762540825426E-5],[125,-59,73,2.872588830993193E-4],[125,-59,74,8.416131814129803E-4],[125,-59,75,0.0015625510853492111],[125,-59,76,0.002445118272278821],[125,-59,77,0.0034799614389640693],[125,-59,78,0.004653352394288926],[125,-59,79,0.005947367763521139],[125,-58,64,0.00307296369404642],[125,-58,65,0.00242782850646933],[125,-58,66,0.001881601722732765],[125,-58,67,0.0014345256375373114],[125,-58,68,0.0010911601607987926],[125,-58,69,8.629816722383033E-4],[125,-58,70,7.616969243233487E-4],[125,-58,71,7.980804087745419E-4],[125,-58,72,9.810955459809067E-4],[125,-58,73,0.0013171516095578945],[125,-58,74,0.0018094998570451748],[125,-58,75,0.0024577722074507627],[125,-58,76,0.0032576656553894396],[125,-58,77,0.004200775441939223],[125,-58,78,0.005274579816229003],[125,-58,79,0.006462579021511121],[125,-57,64,0.004344277314495602],[125,-57,65,0.003702907994246847],[125,-57,66,0.0031550110463432796],[125,-57,67,0.0027021223943354553],[125,-57,68,0.0023478022578305546],[125,-57,69,0.00210107436334891],[125,-57,70,0.0019717402980019222],[125,-57,71,0.0019692256169657005],[125,-57,72,0.0021016634971931267],[125,-57,73,0.002375113012512115],[125,-57,74,0.0027929154440450078],[125,-57,75,0.0033551919133736024],[125,-57,76,0.00405848547882338],[125,-57,77,0.00489555066962814],[125,-57,78,0.00585529325071661],[125,-57,79,0.006922862814756319],[125,-56,64,0.005677751658431737],[125,-56,65,0.005038345019125652],[125,-56,66,0.004485967548630516],[125,-56,67,0.004023367963636227],[125,-56,68,0.0036530596145565343],[125,-56,69,0.003381597977236179],[125,-56,70,0.003216903955287115],[125,-56,71,0.003167114681475545],[125,-56,72,0.003239625251677636],[125,-56,73,0.0034402639332453615],[125,-56,74,0.0037726042085525786],[125,-56,75,0.004237416891943407],[125,-56,76,0.004832265415311139],[125,-56,77,0.005551247216049264],[125,-56,78,0.006384883983264416],[125,-56,79,0.0073201633262244955],[125,-55,64,0.00702815943995068],[125,-55,65,0.006388739842246548],[125,-55,66,0.0058290643865274785],[125,-55,67,0.005352965863879],[125,-55,68,0.004961890579371434],[125,-55,69,0.004659982988404074],[125,-55,70,0.004453361774757126],[125,-55,71,0.004348971587767329],[125,-55,72,0.004353580217499538],[125,-55,73,0.0044729080531869915],[125,-55,74,0.004710893134824722],[125,-55,75,0.005069094989234459],[125,-55,76,0.005546240302986302],[125,-55,77,0.006137913327189508],[125,-55,78,0.006836393735448136],[125,-55,79,0.007630644468497387],[125,-54,64,0.008347839230662738],[125,-54,65,0.007706330599204931],[125,-54,66,0.007136581914280011],[125,-54,67,0.006643368382748631],[125,-54,68,0.006227094185846219],[125,-54,69,0.005889624665317543],[125,-54,70,0.005635408808297598],[125,-54,71,0.005470328959835949],[125,-54,72,0.005400652707941648],[125,-54,73,0.005432115803665654],[125,-54,74,0.0055691393757434406],[125,-54,75,0.00581418458459503],[125,-54,76,0.006167247725470955],[125,-54,77,0.006625498637138012],[125,-54,78,0.007183065102783389],[125,-54,79,0.007830965746035576],[125,-53,64,0.009597566451054291],[125,-53,65,0.008951888404239125],[125,-53,66,0.008369454713447754],[125,-53,67,0.007855829929107834],[125,-53,68,0.007410440464628407],[125,-53,69,0.00703307016471995],[125,-53,70,0.0067266773342709455],[125,-53,71,0.006496240220601857],[125,-53,72,0.0063476646499693815],[125,-53,73,0.006286821388028882],[125,-53,74,0.00631871643246707],[125,-53,75,0.00644679733484732],[125,-53,76,0.006672398517361086],[125,-53,77,0.006994328400516876],[125,-53,78,0.007408600991856323],[125,-53,79,0.00790831440579382],[125,-52,64,0.010746760043496463],[125,-52,65,0.010094920216928049],[125,-52,66,0.009497466985665413],[125,-52,67,0.008960592275320294],[125,-52,68,0.008482842953226766],[125,-52,69,0.008062175112571667],[125,-52,70,0.0077002738282507715],[125,-52,71,0.00740139293099549],[125,-52,72,0.007171221070470503],[125,-52,73,0.007015876128789538],[125,-52,74,0.0069410311391686465],[125,-52,75,0.006951174756411585],[125,-52,76,0.007049009197855486],[125,-52,77,0.007234988427132594],[125,-52,78,0.007506999190624061],[125,-52,79,0.007860187339995646],[125,-51,64,0.011100408716897554],[125,-51,65,0.011113931783516516],[125,-51,66,0.010499506564533849],[125,-51,67,0.0099371265341389],[125,-51,68,0.009424585735309703],[125,-51,69,0.008958312376312163],[125,-51,70,0.00853896581909261],[125,-51,71,0.00817026988255162],[125,-51,72,0.007857841497700361],[125,-51,73,0.007608146282776568],[125,-51,74,0.007427584136331704],[125,-51,75,0.007321707840901785],[125,-51,76,0.007294577544617864],[125,-51,77,0.007348253844801782],[125,-51,78,0.007482432038193982],[125,-51,79,0.007694219929143807],[125,-50,64,0.010178002915574325],[125,-50,65,0.010902582662910576],[125,-50,66,0.011363927351335158],[125,-50,67,0.010774482080061754],[125,-50,68,0.010225655590114038],[125,-50,69,0.00971268389441615],[125,-50,70,0.009235469660137805],[125,-50,71,0.008797408991264567],[125,-50,72,0.008404188184009578],[125,-50,73,0.008062705924584895],[125,-50,74,0.007780123966553383],[125,-50,75,0.007563049221600979],[125,-50,76,0.00741685007457029],[125,-50,77,0.007345109592753208],[125,-50,78,0.007349218142683302],[125,-50,79,0.0074281077571395505],[125,-49,64,0.009401861715664863],[125,-49,65,0.010135040590112818],[125,-49,66,0.010839483614631648],[125,-49,67,0.01146751430957106],[125,-49,68,0.01088256166272509],[125,-49,69,0.010323746489303556],[125,-49,70,0.009790484688113695],[125,-49,71,0.009286035078562996],[125,-49,72,0.008816271656818775],[125,-49,73,0.008388579707222664],[125,-49,74,0.008010878738773325],[125,-49,75,0.00769077511451994],[125,-49,76,0.007434847120435922],[125,-49,77,0.007248065081509087],[125,-49,78,0.00713334897828858],[125,-49,79,0.007091265849079302],[125,-48,64,0.008793588698964714],[125,-48,65,0.009533371988240134],[125,-48,66,0.010252211184397312],[125,-48,67,0.01094307095478838],[125,-48,68,0.01138688332722131],[125,-48,69,0.010787279343978601],[125,-48,70,0.010204271962271501],[125,-48,71,0.00964110855746144],[125,-48,72,0.00910389495601994],[125,-48,73,0.00860047662775814],[125,-48,74,0.008139444586644479],[125,-48,75,0.007729268786504265],[125,-48,76,0.007377561678165775],[125,-48,77,0.0070904744577409435],[125,-48,78,0.006872228383563188],[125,-48,79,0.006724783373920852],[125,-47,64,0.008370344878190359],[125,-47,65,0.009112061468064614],[125,-47,66,0.0098395169883476],[125,-47,67,0.010545928703611936],[125,-47,68,0.011235020695861393],[125,-47,69,0.011102843178802538],[125,-47,70,0.010480563383464155],[125,-47,71,0.009870676008532548],[125,-47,72,0.009279488352920208],[125,-47,73,0.00871520238355741],[125,-47,74,0.008186917470241034],[125,-47,75,0.00770375758298019],[125,-47,76,0.0072741255158117754],[125,-47,77,0.006905086566543689],[125,-47,78,0.00660188395261485],[125,-47,79,0.006367588081258807],[125,-46,64,0.00813987552607203],[125,-46,65,0.008876741248341187],[125,-46,66,0.009604652331726833],[125,-46,67,0.010317278538236009],[125,-46,68,0.011018461937221008],[125,-46,69,0.01127575109138272],[125,-46,70,0.010627868226989716],[125,-46,71,0.009986519303910132],[125,-46,72,0.009358121768735706],[125,-46,73,0.008751069213202524],[125,-46,74,0.008174747051896072],[125,-46,75,0.007638668517630009],[125,-46,76,0.007151733409123232],[125,-46,77,0.006721611894263365],[125,-46,78,0.0063542555268746295],[125,-46,79,0.006053537477455864],[125,-45,64,0.008101523081413752],[125,-45,65,0.008825161562698306],[125,-45,66,0.009543588660398734],[125,-45,67,0.010251128446357805],[125,-45,68,0.010951690753744766],[125,-45,69,0.011316332758708006],[125,-45,70,0.01065881164368062],[125,-45,71,0.010003573197805884],[125,-45,72,0.009357005003276565],[125,-45,73,0.0087274809011102],[125,-45,74,0.008124407105277034],[125,-45,75,0.00755738317242088],[125,-45,76,0.007035480103840887],[125,-45,77,0.006566637729426136],[125,-45,78,0.006157183383136533],[125,-45,79,0.005811473728264806],[125,-44,64,0.008247216717145149],[125,-44,65,0.00894813903034687],[125,-44,66,0.009645918489873116],[125,-44,67,0.010335731858942385],[125,-44,68,0.011021533981699104],[125,-44,69,0.011239214953935634],[125,-44,70,0.010589488168349516],[125,-44,71,0.00993935691187561],[125,-44,72,0.009295001338322655],[125,-44,73,0.008664531007552594],[125,-44,74,0.008057079530938087],[125,-44,75,0.007482007156153106],[125,-44,76,0.00694821338152122],[125,-44,77,0.006463561569025843],[125,-44,78,0.006034417391939214],[125,-44,79,0.005665302809604443],[125,-43,64,0.008562441589375679],[125,-43,65,0.009230485865563192],[125,-43,66,0.009895738301744068],[125,-43,67,0.010554417879007938],[125,-43,68,0.01121052800686205],[125,-43,69,0.01106261621601972],[125,-43,70,0.010438828279586788],[125,-43,71,0.009813417969214387],[125,-43,72,0.009192152978365705],[125,-43,73,0.00858261298963795],[125,-43,74,0.007993350835663531],[125,-43,75,0.007433153154607246],[125,-43,76,0.006910402417325536],[125,-43,77,0.006432542089740492],[125,-43,78,0.006005646569706257],[125,-43,79,0.005634097404224141],[125,-42,64,0.009027190787177621],[125,-42,65,0.009651922803794219],[125,-42,66,0.010272516128489973],[125,-42,67,0.010886407275804772],[125,-42,68,0.011383172090615915],[125,-42,69,0.010807653509390818],[125,-42,70,0.01022797605810927],[125,-42,71,0.009646786540499126],[125,-42,72,0.00906921681024354],[125,-42,73,0.008502040909453081],[125,-42,74,0.007952919978029363],[125,-42,75,0.007429736667519813],[125,-42,76,0.006940020699769822],[125,-42,77,0.006490467106724572],[125,-42,78,0.006086548574424171],[125,-42,79,0.005732223193030531],[125,-41,64,0.00961690299390179],[125,-41,65,0.010187978615878336],[125,-41,66,0.010751946542543819],[125,-41,67,0.01130761678905985],[125,-41,68,0.011013285882741749],[125,-41,69,0.010497658716975914],[125,-41,70,0.009979676000433549],[125,-41,71,0.009461438581161559],[125,-41,72,0.008947208986884092],[125,-41,73,0.00844267946024426],[125,-41,74,0.007954316530935882],[125,-41,75,0.007488783592173863],[125,-41,76,0.0070524428656237185],[125,-41,77,0.006650938046605256],[125,-41,78,0.006288858821245552],[125,-41,79,0.005969488340556255],[125,-40,64,0.010303388852073976],[125,-40,65,0.010810879066079613],[125,-40,66,0.011306795751524776],[125,-40,67,0.011039974118216367],[125,-40,68,0.01059790739453616],[125,-40,69,0.01015750282316412],[125,-40,70,0.009717667060738809],[125,-40,71,0.00927976605957366],[125,-40,72,0.00884695686896563],[125,-40,73,0.008423582080212119],[125,-40,74,0.008014628163321267],[125,-40,75,0.007625248880187263],[125,-40,76,0.007260354887707989],[125,-40,77,0.0069242705658306945],[125,-40,78,0.006620459020781218],[125,-40,79,0.006351316123831221],[125,-39,64,0.01105574899507785],[125,-39,65,0.011269380677024297],[125,-39,66,0.010888065071323677],[125,-39,67,0.010521230771187039],[125,-39,68,0.010164151675353086],[125,-39,69,0.009812925664066347],[125,-39,70,0.009466082016551232],[125,-39,71,0.009124052603176528],[125,-39,72,0.00878865689185018],[125,-39,73,0.008462635966216934],[125,-39,74,0.008149236497775486],[125,-39,75,0.007851845562948887],[125,-39,76,0.007573677139002217],[125,-39,77,0.007317511050201198],[125,-39,78,0.007085485068498225],[125,-39,79,0.0068789408021584396],[125,-38,64,0.010888967864096738],[125,-38,65,0.010570663119177627],[125,-38,66,0.010275686684581186],[125,-38,67,0.01000041461611997],[125,-38,68,0.009739716143115081],[125,-38,69,0.00948986915073131],[125,-38,70,0.00924885028343892],[125,-38,71,0.009015952922355058],[125,-38,72,0.008791436963675025],[125,-38,73,0.008576212846384492],[125,-38,74,0.0083715604582078],[125,-38,75,0.008178883511875594],[125,-38,76,0.00799949994292182],[125,-38,77,0.007834468835835618],[125,-38,78,0.007684454338029707],[125,-38,79,0.0075496269713367275],[125,-37,64,0.010114163672136177],[125,-37,65,0.009882401496879236],[125,-37,66,0.009681759151924188],[125,-37,67,0.009506896338323759],[125,-37,68,0.009352152986491743],[125,-37,69,0.009213811907078257],[125,-37,70,0.009089102340431952],[125,-37,71,0.008975974410789246],[125,-37,72,0.008872922044072926],[125,-37,73,0.008778824421279748],[125,-37,74,0.008692806282008666],[125,-37,75,0.008614117372074789],[125,-37,76,0.008542031306585963],[125,-37,77,0.008475764095599603],[125,-37,78,0.008414412553820626],[125,-37,79,0.008356912789076104],[125,-36,64,0.009376234299138345],[125,-36,65,0.009236770071832118],[125,-36,66,0.009136849242519868],[125,-36,67,0.0090694146508979],[125,-36,68,0.009028140848273324],[125,-36,69,0.009009103308348324],[125,-36,70,0.009008573971504983],[125,-36,71,0.009022959366083416],[125,-36,72,0.009048801601663457],[125,-36,73,0.009082781437935646],[125,-36,74,0.009121723434166446],[125,-36,75,0.009162603181884615],[125,-36,76,0.009202556621056776],[125,-36,77,0.009238891437718687],[125,-36,78,0.009269100538825847],[125,-36,79,0.009290877598035537],[125,-35,64,0.008707765907919841],[125,-35,65,0.008664859881217435],[125,-35,66,0.008670280436350366],[125,-35,67,0.008715290007160441],[125,-35,68,0.008792753631648626],[125,-35,69,0.008898294958038662],[125,-35,70,0.009027008579322903],[125,-35,71,0.009173566325785667],[125,-35,72,0.009332397702256003],[125,-35,73,0.009497855419557366],[125,-35,74,0.009664365726436306],[125,-35,75,0.009826563265914141],[125,-35,76,0.009979410199564935],[125,-35,77,0.010118299364476419],[125,-35,78,0.010239141250376818],[125,-35,79,0.010338434608375382],[125,-34,64,0.008139486933506612],[125,-34,65,0.00819579525870357],[125,-34,66,0.008309292403563139],[125,-34,67,0.008469633051162198],[125,-34,68,0.008668724335013143],[125,-34,69,0.008901467701747651],[125,-34,70,0.009161555885702576],[125,-34,71,0.009441749071564807],[125,-34,72,0.009734232538676146],[125,-34,73,0.01003094213614255],[125,-34,74,0.01032385701280293],[125,-34,75,0.010605259065412527],[125,-34,76,0.010867958611330936],[125,-34,77,0.011105485838121503],[125,-34,78,0.01131224763127724],[125,-34,79,0.011483649432261558],[125,-33,64,0.007699340745081643],[125,-33,65,0.007855842207393732],[125,-33,66,0.008078192659606203],[125,-33,67,0.008354545619511506],[125,-33,68,0.00867570189413383],[125,-33,69,0.009035552345297918],[125,-33,70,0.00942616539902253],[125,-33,71,0.00983823191840242],[125,-33,72,0.010261594277301523],[125,-33,73,0.01068572596752259],[125,-33,74,0.011100160902999508],[125,-33,75,0.011494871646826171],[125,-33,76,0.011205252153467384],[125,-33,77,0.01089087441798709],[125,-33,78,0.010619575003970625],[125,-33,79,0.010396897922959066],[125,-32,64,0.00741154760260338],[125,-32,65,0.007667506263851523],[125,-32,66,0.007997498157200892],[125,-32,67,0.008388312196066882],[125,-32,68,0.008829499093188089],[125,-32,69,0.0093136423221012],[125,-32,70,0.009830973102270048],[125,-32,71,0.010369979976289138],[125,-32,72,0.010918100165818423],[125,-32,73,0.01146234438041266],[125,-32,74,0.011052295773503223],[125,-32,75,0.010568382588752314],[125,-32,76,0.010123531804695426],[125,-32,77,0.009727562553016702],[125,-32,78,0.009388631163349506],[125,-32,79,0.009113024951072007],[125,-31,64,0.007295653566856143],[125,-31,65,0.007648617603772651],[125,-31,66,0.008083064681318858],[125,-31,67,0.008584579819787537],[125,-31,68,0.0091413296985632],[125,-31,69,0.00974429664114674],[125,-31,70,0.01038167989667671],[125,-31,71,0.011039663149164465],[125,-31,72,0.011320379154214986],[125,-31,73,0.010681745395386024],[125,-31,74,0.01006693057933799],[125,-31,75,0.009490239285791012],[125,-31,76,0.008964630559705084],[125,-31,77,0.008501303983620116],[125,-31,78,0.008109374107840838],[125,-31,79,0.007795633894467703],[125,-30,64,0.007365564151885131],[125,-30,65,0.007811401263104187],[125,-30,66,0.008345202029704882],[125,-30,67,0.008951524555387757],[125,-30,68,0.00961703307155833],[125,-30,69,0.010330831542419702],[125,-30,70,0.011078920425111315],[125,-30,71,0.011180722492449405],[125,-30,72,0.010428442245936472],[125,-30,73,0.009692050388334908],[125,-30,74,0.008988836023531566],[125,-30,75,0.008334971775698365],[125,-30,76,0.007744941757961897],[125,-30,77,0.007231073555421991],[125,-30,78,0.006803175079270673],[125,-30,79,0.006468276987981584],[125,-29,64,0.007628560651402782],[125,-29,65,0.008161530483682608],[125,-29,66,0.00878777308934742],[125,-29,67,0.009491002756637366],[125,-29,68,0.010256284628474456],[125,-29,69,0.011070599391163664],[125,-29,70,0.01111527838955425],[125,-29,71,0.010268237174070289],[125,-29,72,0.009425659509484456],[125,-29,73,0.008607463820694699],[125,-29,74,0.007832884604145074],[125,-29,75,0.007119724734420198],[125,-29,76,0.00648372609918068],[125,-29,77,0.005938059635609636],[125,-29,78,0.0054929356587345496],[125,-29,79,0.0051553351854685585],[125,-28,64,0.008084297226060059],[125,-28,65,0.008697161340000193],[125,-28,66,0.009407275058867891],[125,-28,67,0.010197685483395117],[125,-28,68,0.01105179063919972],[125,-28,69,0.011090451715120388],[125,-28,70,0.010171993853327567],[125,-28,71,0.009243690388208806],[125,-28,72,0.00832750665634083],[125,-28,73,0.007445365751262979],[125,-28,74,0.00661821219829844],[125,-28,75,0.005865206762933446],[125,-28,76,0.005203053693391988],[125,-28,77,0.004645461496253182],[125,-28,78,0.004202738136594088],[125,-28,79,0.0038815213434056166],[125,-27,64,0.008723777006690869],[125,-27,65,0.009407946963749192],[125,-27,66,0.010191901218303281],[125,-27,67,0.011058174575971457],[125,-27,68,0.01107265438563784],[125,-27,69,0.010109324002876379],[125,-27,70,0.009119721634386261],[125,-27,71,0.008127066323626796],[125,-27,72,0.007155384896120429],[125,-27,73,0.006228378544956055],[125,-27,74,0.005368431721605646],[125,-27,75,0.004595764866658246],[125,-27,76,0.0039277322976350925],[125,-27,77,0.0033782663460775212],[125,-27,78,0.0029574686058649754],[125,-27,79,0.0026713489216545127],[125,-26,64,0.009528305650008055],[125,-26,65,0.010274029855584113],[125,-26,66,0.011120581811436771],[125,-26,67,0.011031904060462838],[125,-26,68,0.010052220021040741],[125,-26,69,0.009028620930108195],[125,-26,70,0.007984585102519271],[125,-26,71,0.006945452891003069],[125,-26,72,0.005937091845991034],[125,-26,73,0.004984713640449421],[125,-26,74,0.0041118445306270466],[125,-26,75,0.003339450894063164],[125,-26,76,0.0026852211470932163],[125,-26,77,0.002163005097755361],[125,-26,78,0.0017824115389068376],[125,-26,79,0.0015485646331457699],[125,-25,64,0.010468506972591518],[125,-25,65,0.01126510664288606],[125,-25,66,0.010945095146013781],[125,-25,67,0.009978365329834125],[125,-25,68,0.008949851705092614],[125,-25,69,0.00788217674718146],[125,-25,70,0.006800988409682661],[125,-25,71,0.005733514818510713],[125,-25,72,0.0047071865438648944],[125,-25,73,0.0037484203627984325],[125,-25,74,0.0028815662804535557],[125,-25,75,0.002128019328372299],[125,-25,76,0.0015054973994296484],[125,-25,77,0.0010274861133308744],[125,-25,78,7.028514369190047E-4],[125,-25,79,5.35620512572833E-4],[125,-24,64,0.01150891426009311],[125,-24,65,0.010791053573007406],[125,-24,66,0.009868103255737016],[125,-24,67,0.00886394203321894],[125,-24,68,0.007801691603872536],[125,-24,69,0.006706177002303684],[125,-24,70,0.005604977754480757],[125,-24,71,0.0045269277278982365],[125,-24,72,0.003500710851717724],[125,-24,73,0.002553626585515412],[125,-24,74,0.0017105268742113378],[125,-24,75,9.929260589298956E-4],[125,-24,76,4.1828493698171606E-4],[125,-24,77,-5.301185026280035E-7],[125,-24,78,-2.5561235470848774E-4],[125,-24,79,-3.442038127269254E-4],[125,-23,64,0.010552155220172096],[125,-23,65,0.00969768045010925],[125,-23,66,0.008746765891996576],[125,-23,67,0.007718238311244775],[125,-23,68,0.006636614835258489],[125,-23,69,0.005528738951493477],[125,-23,70,0.004423883435845194],[125,-23,71,0.003352211404631272],[125,-23,72,0.00234336046428385],[125,-23,73,0.0014252034949943763],[125,-23,74,6.227877512829587E-4],[125,-23,75,-4.254632166680493E-5],[125,-23,76,-5.538654492911744E-4],[125,-23,77,-8.991622574861718E-4],[125,-23,78,-0.0010716918618812667],[125,-23,79,-0.0010701261066287861],[125,-22,64,0.009453192650090817],[125,-22,65,0.008576592087578048],[125,-22,66,0.007608257480049627],[125,-22,67,0.006567271792706979],[125,-22,68,0.00547941484148307],[125,-22,69,0.004373366459877974],[125,-22,70,0.0032798645936312474],[125,-22,71,0.002230141597294145],[125,-22,72,0.001254510043543911],[125,-22,73,3.811308182769849E-4],[125,-22,74,-3.6503489054517143E-4],[125,-22,75,-9.63088400969372E-4],[125,-22,76,-0.0013968701386913537],[125,-22,77,-0.0016554493393431187],[125,-22,78,-0.001733426470327163],[125,-22,79,-0.0016310483010727901],[125,-21,64,0.008345471359295049],[125,-21,65,0.007454460896987358],[125,-21,66,0.006477731471305131],[125,-21,67,0.005434561766867094],[125,-21,68,0.0043518541310967294],[125,-21,69,0.0032599498977278563],[125,-21,70,0.0021908417770724192],[125,-21,71,0.0011765968901307137],[125,-21,72,2.4795518177512615E-4],[125,-21,73,-5.668852731536952E-4],[125,-21,74,-0.0012432945541846871],[125,-21,75,-0.001761047564893912],[125,-21,76,-0.002104970200858942],[125,-21,77,-0.0022653944503582832],[125,-21,78,-0.002238422184145085],[125,-21,79,-0.0020259977094806204],[125,-20,64,0.0072567209711627235],[125,-20,65,0.006357180604701665],[125,-20,66,0.005379080177840795],[125,-20,67,0.004341818788971898],[125,-20,68,0.0032732789287421016],[125,-20,69,0.002205302941934274],[125,-20,70,0.0011709549660364115],[125,-20,71,2.0293900792994773E-4],[125,-20,72,-6.677819925212142E-4],[125,-20,73,-0.0014131763955316495],[125,-20,74,-0.002009141977668651],[125,-20,75,-0.002436310841086666],[125,-20,76,-0.0026806603541995647],[125,-20,77,-0.002733929693486458],[125,-20,78,-0.0025938418865718493],[125,-20,79,-0.0022641315829705186],[125,-19,64,0.006215198374067175],[125,-19,65,0.005310697369956944],[125,-19,66,0.00433570019421125],[125,-19,67,0.003309638188793774],[125,-19,68,0.0022612358800180154],[125,-19,69,0.0012236993592270183],[125,-19,70,2.3101923486308753E-4],[125,-19,71,-6.836118632752024E-4],[125,-19,72,-0.0014891551132139172],[125,-19,73,-0.002157887296021666],[125,-19,74,-0.002666367253956802],[125,-19,75,-0.002996206042415832],[125,-19,76,-0.0031346401451159403],[125,-19,77,-0.003074907461948626],[125,-19,78,-0.0028164261170435115],[125,-19,79,-0.0023647764672798497],[125,-18,64,0.005250587933836386],[125,-18,65,0.004341849572661924],[125,-18,66,0.003371264859659415],[125,-18,67,0.0023581988932111757],[125,-18,68,0.001332092174381587],[125,-18,69,3.2741108069101393E-4],[125,-18,70,-6.210206891823833E-4],[125,-18,71,-0.0014796055477089268],[125,-18,72,-0.0022173026483166716],[125,-18,73,-0.0028067612347604178],[125,-18,74,-0.003225255519242991],[125,-18,75,-0.0034554202430623813],[125,-18,76,-0.0034857864217426424],[125,-18,77,-0.003311117125177874],[125,-18,78,-0.0029325434888498453],[125,-18,79,-0.0023575014910902185],[125,-17,64,0.004382937592351497],[125,-17,65,0.0034683290656418193],[125,-17,66,0.002500888323734142],[125,-17,67,0.0014998106672443614],[125,-17,68,4.951369568116578E-4],[125,-17,69,-4.774843348900912E-4],[125,-17,70,-0.0013824518280280715],[125,-17,71,-0.0021857994792807856],[125,-17,72,-0.002856505154294954],[125,-17,73,-0.0033675984510148508],[125,-17,74,-0.0036970666938836417],[125,-17,75,-0.0038285583744310943],[125,-17,76,-0.0037518836719056636],[125,-17,77,-0.0034633120450842637],[125,-17,78,-0.0029656672396872626],[125,-17,79,-0.002268220401274653],[125,-16,64,0.0035904143323315873],[125,-16,65,0.002669704432603291],[125,-16,66,0.0017059280115198036],[125,-16,67,7.180092043219661E-4],[125,-16,68,-2.635515106690091E-4],[125,-16,69,-0.0012020476445845818],[125,-16,70,-0.0020612157538500648],[125,-16,71,-0.002806828316364259],[125,-16,72,-0.0034079796960706323],[125,-16,73,-0.0038381679902518215],[125,-16,74,-0.004076171792595522],[125,-16,75,-0.004106721271311503],[125,-16,76,-0.003920963329449647],[125,-16,77,-0.0035167209807012863],[125,-16,78,-0.0028985474347629644],[125,-16,79,-0.002077575738056747],[125,-15,64,0.002850043638759625],[125,-15,65,0.0019249673767274603],[125,-15,66,9.67723858749799E-4],[125,-15,67,-3.1396629590016375E-6],[125,-15,68,-9.568371762749481E-4],[125,-15,69,-0.001855784524545531],[125,-15,70,-0.0026632433662042315],[125,-15,71,-0.003344913595231712],[125,-15,72,-0.003870191720146453],[125,-15,73,-0.0042132222890351],[125,-15,74,-0.004353741512874125],[125,-15,75,-0.004277712615344157],[125,-15,76,-0.003977752813903414],[125,-15,77,-0.003453352210620303],[125,-15,78,-0.0027108852384927595],[125,-15,79,-0.0017634156658832576],[125,-14,64,0.0021485236010689883],[125,-14,65,0.0012223106509547132],[125,-14,66,2.761704801661077E-4],[125,-14,67,-6.718438439392806E-4],[125,-14,68,-0.0015908651030801112],[125,-14,69,-0.0024426575655131823],[125,-14,70,-0.003190249928240882],[125,-14,71,-0.003799518510996526],[125,-14,72,-0.004240409815444924],[125,-14,73,-0.004487954187990653],[125,-14,74,-0.0045230698659823486],[125,-14,75,-0.004333157071064994],[125,-14,76,-0.003912482196952241],[125,-14,77,-0.003262352518461841],[125,-14,78,-0.002391082220542513],[125,-14,79,-0.0013137509063416068],[125,-13,64,0.001480215046157375],[125,-13,65,5.571698389827874E-4],[125,-13,66,-3.7216275532990197E-4],[125,-13,67,-0.0012903573536792153],[125,-13,68,-0.0021666957069064545],[125,-13,69,-0.002962551673011793],[125,-13,70,-0.003641001896889995],[125,-13,71,-0.004168388412862554],[125,-13,72,-0.004515494923747882],[125,-13,73,-0.004658513431544647],[125,-13,74,-0.00457980063611209],[125,-13,75,-0.004268423907889751],[125,-13,76,-0.003720497028822201],[125,-13,77,-0.00293930627869863],[125,-13,78,-0.001935227818302349],[125,-13,79,-7.254376821736844E-4],[125,-12,64,8.453032749358251E-4],[125,-12,65,-6.956568001045151E-5],[125,-12,66,-9.757464458224044E-4],[125,-12,67,-0.0018565933021698117],[125,-12,68,-0.002681787526328875],[125,-12,69,-0.0034125981305953936],[125,-12,70,-0.004012454829333866],[125,-12,71,-0.004448477047369639],[125,-12,72,-0.004692592129903989],[125,-12,73,-0.004722444573988826],[125,-12,74,-0.004522095843143734],[125,-12,75,-0.004082514719212471],[125,-12,76,-0.003401858535425358],[125,-12,77,-0.0024855460182972608],[125,-12,78,-0.001346122839649816],[125,-12,79,-2.9213397674802353E-6],[125,-11,64,2.481316509370508E-4],[125,-11,65,-6.531723841004299E-4],[125,-11,66,-0.0015296404992339268],[125,-11,67,-0.0023655773310730602],[125,-11,68,-0.003131328315010943],[125,-11,69,-0.0037883570551573344],[125,-11,70,-0.004300762003793615],[125,-11,71,-0.004636758066778679],[125,-11,72,-0.004769724398520086],[125,-11,73,-0.0046790454794926155],[125,-11,74,-0.004350745190304678],[125,-11,75,-0.003777913988428794],[125,-11,76,-0.0029609296820727825],[125,-11,77,-0.0019074726767209166],[125,-11,78,-6.323369398289767E-4],[125,-11,79,8.429617159068862E-4],[125,-10,64,-3.0429202316654215E-4],[125,-10,65,-0.0011865420049144964],[125,-10,66,-0.002026877268241445],[125,-10,67,-0.002810740693770531],[125,-10,68,-0.0035094136583410213],[125,-10,69,-0.004084857432772291],[125,-10,70,-0.004502152909361579],[125,-10,71,-0.004730920902866152],[125,-10,72,-0.004746287281907645],[125,-10,73,-0.004529645344269334],[125,-10,74,-0.004069215307647453],[125,-10,75,-0.003360401175571735],[125,-10,76,-0.002405945621520253],[125,-10,77,-0.0012158839092034478],[125,-10,78,1.9270177017103766E-4],[125,-10,79,0.0017961258159940984],[125,-9,64,-8.036147594548932E-4],[125,-9,65,-0.0016614591589475406],[125,-9,66,-0.0024596770316653756],[125,-9,67,-0.0031850515857154388],[125,-9,68,-0.0038100717637502704],[125,-9,69,-0.004297493416443366],[125,-9,70,-0.004613680307234493],[125,-9,71,-0.0047299497175992645],[125,-9,72,-0.004623443307062135],[125,-9,73,-0.004277800931282239],[125,-9,74,-0.0036836374499269724],[125,-9,75,-0.0028388229364790314],[125,-9,76,-0.001748567076664826],[125,-9,77,-4.2530890739674845E-4],[125,-9,78,0.0011115865996961444],[125,-9,79,0.002836323270716044],[125,-8,64,-0.001241281087435402],[125,-8,65,-0.0020697051154192443],[125,-8,66,-0.0028204938041115992],[125,-8,67,-0.003481982784887755],[125,-8,68,-0.004028132561009],[125,-8,69,-0.004422775097069143],[125,-8,70,-0.00463383414751927],[125,-8,71,-0.004634583784350711],[125,-8,72,-0.004404414459909396],[125,-8,73,-0.00392940949368171],[125,-8,74,-0.0032027321746911515],[125,-8,75,-0.002224824040000133],[125,-8,76,-0.0010034152518038017],[125,-8,77,4.4665165262160574E-4],[125,-8,78,0.0021037830258783313],[125,-8,79,0.003940178457595646],[125,-7,64,-0.0016094964742580712],[125,-7,65,-0.00240398506138039],[125,-7,66,-0.003102888930607564],[125,-7,67,-0.0036963131606671837],[125,-7,68,-0.004159938779136867],[125,-7,69,-0.004458931529592777],[125,-7,70,-0.004563020245149588],[125,-7,71,-0.0044476573294778225],[125,-7,72,-0.004094670925534078],[125,-7,73,-0.003492736674710197],[125,-7,74,-0.0026376694148171663],[125,-7,75,-0.0015325355187650682],[125,-7,76,-1.8758692150161322E-4],[125,-7,77,0.0013799817825009635],[125,-7,78,0.0031464514686182035],[125,-7,79,0.005082169833388097],[125,-6,64,-0.001902008236458712],[125,-6,65,-0.0026586757375154178],[125,-6,66,-0.003302229449862645],[125,-6,67,-0.0038247601578481477],[125,-6,68,-0.004203896244301805],[125,-6,69,-0.004406363411360802],[125,-6,70,-0.004403901278764818],[125,-6,71,-0.004174316577258947],[125,-6,72,-0.00370201401621049],[125,-6,73,-0.0029783575112234746],[125,-6,74,-0.002001862270939807],[125,-6,75,-7.782185765404417E-4],[125,-6,76,6.79851586728788E-4],[125,-6,77,0.0023529035724591603],[125,-6,78,0.004215243017514657],[125,-6,79,0.006235560634019064],[125,-5,64,-0.0021147002819240346],[125,-5,65,-0.0028303898889425715],[125,-5,66,-0.003416207793048509],[125,-5,67,-0.003866439965115113],[125,-5,68,-0.0041608602723046196],[125,-5,69,-0.0042679424730211225],[125,-5,70,-0.004161597381156209],[125,-5,71,-0.003822111494464902],[125,-5,72,-0.0032365510274669817],[125,-5,73,-0.0023990085374535667],[125,-5,74,-0.0013106927848996431],[125,-5,75,2.0137218703497533E-5],[125,-5,76,0.0015783927200194348],[125,-5,77,0.003342528743946867],[125,-5,78,0.0052850688031378925],[125,-5,79,0.007373278718428611],[125,-4,64,-0.002245997649649641],[125,-4,65,-0.0029183536089091625],[125,-4,66,-0.003445179029154051],[125,-4,67,-0.003823151738434414],[125,-4,68,-0.004034354714095501],[125,-4,69,-0.004049154357701229],[125,-4,70,-0.003843743342624403],[125,-4,71,-0.003400959527402523],[125,-4,72,-0.0027105596088463834],[125,-4,73,-0.001769348887402626],[125,-4,74,-5.811679171723466E-4],[125,-4,75,8.432629010853971E-4],[125,-4,76,0.0024866394493528268],[125,-4,77,0.004325509145590236],[125,-4,78,0.0063308434735035585],[125,-4,79,0.008468745710956778],[125,-3,64,-0.002297076512710679],[125,-3,65,-0.002924592354344016],[125,-3,66,-0.0033923115776324127],[125,-3,67,-0.003699481973946318],[125,-3,68,-0.003830619957473624],[125,-3,69,-0.003758081535680635],[125,-3,70,-0.003460399252931311],[125,-3,71,-0.0029229784673206437],[125,-3,72,-0.0021382391232461577],[125,-3,73,-0.0011056282305749923],[125,-3,74,1.6849605905422125E-4],[125,-3,75,0.0016711076308895576],[125,-3,76,0.003382881445394971],[125,-3,77,0.005278686806018353],[125,-3,78,0.007328203006304964],[125,-3,79,0.009496655304182942],[125,-2,64,-0.0022718750815584644],[125,-2,65,-0.002853921185565453],[125,-2,66,-0.0032635470889164435],[125,-2,67,-0.0035027249165877077],[125,-2,68,-0.003558485996991372],[125,-2,69,-0.003405222633336047],[125,-2,70,-0.003023811267158584],[125,-2,71,-0.0024021854729046614],[125,-2,72,-0.0015353463995615118],[125,-2,73,-4.2525934894342194E-4],[125,-2,74,9.19362515153747E-4],[125,-2,75,0.002483386106205987],[125,-2,76,0.004245696565552968],[125,-2,77,0.006179743983287605],[125,-2,78,0.008254196859187629],[125,-2,79,0.01043370030140417],[125,-1,64,-0.0021769006952753267],[125,-1,65,-0.0027137346329574393],[125,-1,66,-0.0030673650482212172],[125,-1,67,-0.0032426147544600326],[125,-1,68,-0.0032290665615129603],[125,-1,69,-0.0030031444508999733],[125,-1,70,-0.0025480190994598743],[125,-1,71,-0.0018540592245496462],[125,-1,72,-9.187132606897525E-4],[125,-1,73,2.5370682454165015E-4],[125,-1,74,0.0016523384929383867],[125,-1,75,0.003260177100096677],[125,-1,76,0.005054578401809262],[125,-1,77,0.00700785347080891],[125,-1,78,0.009087954234914784],[125,-1,79,0.011259247706691507],[125,0,64,-0.0020208283228149416],[125,0,65,-0.002513591526095964],[125,0,66,-0.0028143475927376884],[125,0,67,-0.0029308652895690835],[125,0,68,-0.002855270239325649],[125,0,69,-0.002565962907704609],[125,0,70,-0.002048306830234279],[125,0,71,-0.001294962187596041],[125,0,72,-3.056432357106706E-4],[125,0,73,9.13205831558163E-4],[125,0,74,0.002348815432416179],[125,0,75,0.0039825742450661575],[125,0,76,0.005790590488666993],[125,0,77,0.007744329234093985],[125,0,78,0.009811324016486992],[125,0,79,0.011955960912200067],[125,1,64,-0.0018138878934208695],[125,1,65,-0.002264592853975701],[125,1,66,-0.002516543066335364],[125,1,67,-0.0025805158883820665],[125,1,68,-0.0024511275038715764],[125,1,69,-0.002108651715019558],[125,1,70,-0.0015404955047443672],[125,1,71,-7.414209116998999E-4],[125,1,72,2.8681539907573627E-4],[125,1,73,0.0015358878439020475],[125,1,74,0.00299139169567979],[125,1,75,0.004633395589819073],[125,1,76,0.006437055308003395],[125,1,77,0.008373287282021495],[125,1,78,0.010409500167730585],[125,1,79,0.011835013438045265],[125,2,64,-0.0015670381379834302],[125,2,65,-0.00197855126605201],[125,2,66,-0.0021866272870445006],[125,2,67,-0.0022050825598068464],[125,2,68,-0.002030931881341159],[125,2,69,-0.001646175897350577],[125,2,70,-0.0010400729934898652],[125,2,71,-2.0925765862232678E-4],[125,2,72,8.427296438097572E-4],[125,2,73,0.0021059619014240044],[125,2,74,0.0035646930239825424],[125,2,75,0.005197972016577111],[125,2,76,0.006980302429164758],[125,2,77,0.008882345584821127],[125,2,78,0.010871666028970845],[125,2,79,0.01149288000439738],[125,3,64,-0.0012908964545930383],[125,3,65,-0.0016669158043073498],[125,3,66,-0.0018368230291517813],[125,3,67,-0.0018174742667728915],[125,3,68,-0.0016081577343242275],[125,3,69,-0.0011924180298550182],[125,3,70,-5.611375619601729E-4],[125,3,71,2.8743836940737545E-4],[125,3,72,0.0013482715615659939],[125,3,73,0.0026101348260769677],[125,3,74,0.004056248556664744],[125,3,75,0.005664948612115263],[125,3,76,0.007410384128474908],[125,3,77,0.009263243834916403],[125,3,78,0.011191509418407202],[125,3,79,0.011306780660006408],[125,4,64,-9.94450669675402E-4],[125,4,65,-0.0013394845325677485],[125,4,66,-0.0014776150241601936],[125,4,67,-0.0014287142918744248],[125,4,68,-0.0011941947360986909],[125,4,69,-7.589349663688625E-4],[125,4,70,-1.151878561731234E-4],[125,4,71,7.374754595667833E-4],[125,4,72,0.001792823993676411],[125,4,73,0.0030386447894300435],[125,4,74,0.004457438987369128],[125,4,75,0.006027134759868595],[125,4,76,0.007721815778394381],[125,4,77,0.009512463868614107],[125,4,78,0.011367714508357206],[125,4,79,0.011275727391906644],[125,5,64,-6.835466215322392E-4],[125,5,65,-0.001002898329105101],[125,5,66,-0.0011162529590552184],[125,5,67,-0.0010464582705723934],[125,5,68,-7.968897514638631E-4],[125,5,69,-3.535348793070685E-4],[125,5,70,2.90251729174917E-4],[125,5,71,0.0011338712866960842],[125,5,72,0.002170214678026384],[125,5,73,0.00338640252659761],[125,5,74,0.004764530196394471],[125,5,75,0.006282416442773712],[125,5,76,0.007914354435823882],[125,5,77,0.009631863897866058],[125,5,78,0.011404443123163806],[125,5,79,0.011393182499027954],[125,6,64,-3.591420243814713E-4],[125,6,65,-6.589051804609688E-4],[125,6,66,-7.550311225094316E-4],[125,6,67,-6.732972839490574E-4],[125,6,68,-4.1888471448513E-4],[125,6,69,2.1336087460553157E-5],[125,6,70,6.531797372165155E-4],[125,6,71,0.0014753198837577095],[125,6,72,0.0024800839651022487],[125,6,73,0.0036542424194033907],[125,6,74,0.004979791075402907],[125,6,75,0.006434725474574635],[125,6,76,0.007993805912885642],[125,6,77,0.00962931203281712],[125,6,78,0.011311785846356373],[125,6,79,0.011646796103749643],[125,7,64,-1.2700868818690362E-5],[125,7,65,-2.995767893932215E-4],[125,7,66,-3.8637703319032487E-4],[125,7,67,-3.0174347377404814E-4],[125,7,68,-5.251136339024621E-5],[125,7,69,3.73777020954126E-4],[125,7,70,9.823628170046751E-4],[125,7,71,0.0017714784432578065],[125,7,72,0.0027331877826426362],[125,7,73,0.0038542107345077227],[125,7,74,0.005116730881412315],[125,7,75,0.006499185068677566],[125,7,76,0.007977033752343618],[125,7,77,0.009523511035096893],[125,7,78,0.011110353379921278],[125,7,79,0.01201409761605146],[125,8,64,3.8093662728829657E-4],[125,8,65,1.0059125145187775E-4],[125,8,66,1.5648912119877962E-5],[125,8,67,9.480392745323335E-5],[125,8,68,3.2977044200551363E-4],[125,8,69,7.32525326626784E-4],[125,8,70,0.0013079618171397932],[125,8,71,0.002054117696052541],[125,8,72,0.0029630473214992694],[125,8,73,0.004021669529359467],[125,8,74,0.005212590185529437],[125,8,75,0.006514898236180229],[125,8,76,0.007904934180237707],[125,8,77,0.009357029970095613],[125,8,78,0.010844219433595944],[125,8,79,0.012338918402376355],[125,9,64,8.468544826677175E-4],[125,9,65,5.67421852138948E-4],[125,9,66,4.776771121262498E-4],[125,9,67,5.439999750802679E-4],[125,9,68,7.569150496914795E-4],[125,9,69,0.0011280842293531974],[125,9,70,0.0016622391448640364],[125,9,71,0.0023574205406322593],[125,9,72,0.0032058713376504097],[125,9,73,0.00419489847465661],[125,9,74,0.005307702339486515],[125,9,75,0.006524172689884728],[125,9,76,0.007821650055183971],[125,9,77,0.009175651706966529],[125,9,78,0.010560561387824834],[125,9,79,0.0119502820922785],[125,10,64,0.0014067122814459424],[125,10,65,0.0011234390424599279],[125,10,66,0.0010231893107848515],[125,10,67,0.001070495401888781],[125,10,68,0.0012549920224899113],[125,10,69,0.0015881601775109115],[125,10,70,0.0020747120122779203],[125,10,71,0.002712836557911522],[125,10,72,0.003495105795589396],[125,10,73,0.0044093435793625705],[125,10,74,0.005439456266448242],[125,10,75,0.00656622400507473],[125,10,76,0.007768051735349328],[125,10,77,0.009021679067829235],[125,10,78,0.01030284831710613],[125,10,79,0.01158693008327608],[125,11,64,0.002081145940370897],[125,11,65,0.0017902589642419494],[125,11,66,0.001674880307530968],[125,11,67,0.0016982476548155873],[125,11,68,0.001849423970051973],[125,11,69,0.0021398042732921427],[125,11,70,0.0025741741224232146],[125,11,71,0.003150960994344351],[125,11,72,0.0038631480994805486],[125,11,73,0.004699146042597471],[125,11,74,0.005643621215535751],[125,11,75,0.006678279920600068],[125,11,76,0.007782607340103136],[125,11,77,0.008934560587446827],[125,11,78,0.010111215197620215],[125,11,79,0.011289364539505438],[125,12,64,0.002892482059499086],[125,12,65,0.0025912903906960293],[125,12,66,0.002457322629339851],[125,12,67,0.002453125651590034],[125,12,68,0.0025675060339078806],[125,12,69,0.002811820354251622],[125,12,70,0.0031909660680818366],[125,12,71,0.003703641680426442],[125,12,72,0.004343265830388878],[125,12,73,0.005098849795099016],[125,12,74,0.005955822333793585],[125,12,75,0.0068968059165983924],[125,12,76,0.007902343509557893],[125,12,77,0.008951575216894535],[125,12,78,0.010022864212781845],[125,12,79,0.01109437152738062],[125,13,64,0.0038677717508280897],[125,13,65,0.003554750596551055],[125,13,66,0.003399939871040797],[125,13,67,0.0033658137825521173],[125,13,68,0.0034412122941843487],[125,13,69,0.0036374446574579285],[125,13,70,0.003959498955288627],[125,13,71,0.004406317896685435],[125,13,72,0.00497172342561334],[125,13,73,0.005645290520787342],[125,13,74,0.006413169140007284],[125,13,75,0.007258853396992044],[125,13,76,0.008163897195563678],[125,13,77,0.009108575684756457],[125,13,78,0.010072492038288323],[125,13,79,0.011035129202038656],[125,14,64,0.005042151280141159],[125,14,65,0.004717003906209343],[125,14,66,0.004540295959405893],[125,14,67,0.004475022268676798],[125,14,68,0.004510295984436851],[125,14,69,0.004657303642879663],[125,14,70,0.004921037430784616],[125,14,71,0.005300596881692215],[125,14,72,0.0057901219254436],[125,14,73,0.006379670635064368],[125,14,74,0.007056040655948443],[125,14,75,0.007803533447877144],[125,14,76,0.008604660617975072],[125,14,77,0.009440791771454278],[125,14,78,0.010292743456138766],[125,14,79,0.011141308925400604],[125,15,64,0.006460391253635243],[125,15,65,0.006123921231634429],[125,15,66,0.0059251771256198784],[125,15,67,0.005828208165601726],[125,15,68,0.005822576987977906],[125,15,69,0.00591921091375201],[125,15,70,0.006122967944030567],[125,15,71,0.0064329765553061274],[125,15,72,0.006843581516809132],[125,15,73,0.007345229236993666],[125,15,74,0.007925291656082259],[125,15,75,0.008568827860110342],[125,15,76,0.009259282751807494],[125,15,77,0.009979122274020067],[125,15,78,0.010710404841314861],[125,15,79,0.011435288793903231],[125,16,64,0.008159598876148687],[125,16,65,0.007813086341430655],[125,16,66,0.0075922140646056575],[125,16,67,0.007462559699748155],[125,16,68,0.007414281059370717],[125,16,69,0.007457907892780988],[125,16,70,0.007598045185061718],[125,16,71,0.007833760108482534],[125,16,72,0.008159541999260965],[125,16,73,0.008566196113028873],[125,16,74,0.009041670212540579],[125,16,75,0.009571813214034787],[125,16,76,0.010141065292241782],[125,16,77,0.010733079017282734],[125,16,78,0.011331271268612254],[125,16,79,0.011919305840582725],[125,17,64,0.010153471278070711],[125,17,65,0.00979855860061008],[125,17,66,0.009555508163697813],[125,17,67,0.009391843995509123],[125,17,68,0.009298445576126952],[125,17,69,0.009285322198610654],[125,17,70,0.009356740552576119],[125,17,71,0.009511664059213824],[125,17,72,0.009744725100488134],[125,17,73,0.010047124910858884],[125,17,74,0.010407460229560048],[125,17,75,0.010812475999552406],[125,17,76,0.011247743587295677],[125,17,77,0.011698264184308853],[125,17,78,0.012148997235942779],[125,17,79,0.01258531392362194],[125,18,64,0.012434135224555913],[125,18,65,0.012072857316195989],[125,18,66,0.011807823258067576],[125,18,67,0.01160886479251328],[125,18,68,0.011467691124917889],[125,18,69,0.011393685404615942],[125,18,70,0.011390719834269607],[125,18,71,0.011457649393695084],[125,18,72,0.011589291898461732],[125,18,73,0.011777329442792158],[125,18,74,0.012011130379223559],[125,18,75,0.012278491191082729],[125,18,76,0.01256629781653076],[125,18,77,0.012753595523741461],[125,18,78,0.01241944030523301],[125,18,79,0.012102726402008747],[125,19,64,0.011154915635750053],[125,19,65,0.01149850725086229],[125,19,66,0.01176123410080585],[125,19,67,0.011970680529238626],[125,19,68,0.0121342472079563],[125,19,69,0.012243296069807182],[125,19,70,0.01229441477701183],[125,19,71,0.012288869337405191],[125,19,72,0.012231622510687589],[125,19,73,0.012130437081517436],[125,19,74,0.011995064781661062],[125,19,75,0.011836521424493316],[125,19,76,0.01166644859803134],[125,19,77,0.011496562048802802],[125,19,78,0.011338186679595033],[125,19,79,0.011201877881077734],[125,20,64,0.008478507218879338],[125,20,65,0.00882325648364337],[125,20,66,0.009106298430471583],[125,20,67,0.009352362367582698],[125,20,68,0.009567857242535296],[125,20,69,0.009744925024351387],[125,20,70,0.009880587922330457],[125,20,71,0.009976150182067314],[125,20,72,0.010036222358956733],[125,20,73,0.010067836506261578],[125,20,74,0.010079652983640712],[125,20,75,0.010081259358449158],[125,20,76,0.01008256164131702],[125,20,77,0.01009326787103886],[125,20,78,0.010122463843200192],[125,20,79,0.010178280563942179],[125,21,64,0.0056370887172099305],[125,21,65,0.005979882640609485],[125,21,66,0.006281617734493221],[125,21,67,0.006563985023420609],[125,21,68,0.006832346880888709],[125,21,69,0.007079670178293908],[125,21,70,0.0073034007350579215],[125,21,71,0.007504818976874883],[125,21,72,0.007688078205262512],[125,21,73,0.00785933946777674],[125,21,74,0.008026003648170561],[125,21,75,0.00819604114859134],[125,21,76,0.00837741929251493],[125,21,77,0.008577627339191029],[125,21,78,0.008803298769602404],[125,21,79,0.009059930282155924],[125,22,64,0.0026931217551356564],[125,22,65,0.0030305600968610407],[125,22,66,0.003348772866299178],[125,22,67,0.003666292169301663],[125,22,68,0.003987396475232697],[125,22,69,0.004305899742345536],[125,22,70,0.004619643054344547],[125,22,71,0.004929810250385894],[125,22,72,0.00523998853742168],[125,22,73,0.005555330885744712],[125,22,74,0.005881820731409344],[125,22,75,0.006225639249832547],[125,22,76,0.006592635210336894],[125,22,77,0.006987897173486874],[125,22,78,0.007415427553604664],[125,22,79,0.007877917839787484],[125,23,64,-2.847013600192847E-4],[125,23,65,4.376469133223923E-5],[125,23,66,3.756567881370734E-4],[125,23,67,7.262913500093186E-4],[125,23,68,0.0010988430781397138],[125,23,69,0.0014879717988396214],[125,23,70,0.0018918699537348556],[125,23,71,0.00231154541622923],[125,23,72,0.0027499126234041735],[125,23,73,0.003210990046135869],[125,23,74,0.0036992044182993793],[125,23,75,0.004218801876097032],[125,23,76,0.004773365894587124],[125,23,77,0.0053654416523157555],[125,23,78,0.005996266208504194],[125,23,79,0.006665603642582996],[125,24,64,-0.0032242117981730826],[125,24,65,-0.002908468075495981],[125,24,66,-0.0025662356247218928],[125,24,67,-0.0021854059523657896],[125,24,68,-0.0017639106484977204],[125,24,69,-0.0013062689688560691],[125,24,70,-8.139949550064608E-4],[125,24,71,-2.8633939623128274E-4],[125,24,72,2.7883950615378405E-4],[125,24,73,8.843156352357903E-4],[125,24,74,0.0015328449286963431],[125,24,75,0.0022266258574440835],[125,24,76,0.002966870175950416],[125,24,77,0.0037534834450422636],[125,24,78,0.0045848545763556734],[125,24,79,0.005457753409225375],[125,25,64,-0.006052411437698217],[125,25,65,-0.005753180911517188],[125,25,66,-0.005404417934012428],[125,25,67,-0.004997149839052675],[125,25,68,-0.004530399956263809],[125,25,69,-0.004007915165150968],[125,25,70,-0.0034309862518537614],[125,25,71,-0.0027992060485272823],[125,25,72,-0.0021112949642957874],[125,25,73,-0.0013658133503307854],[125,25,74,-5.617604966096789E-4],[125,25,75,3.0093965745464597E-4],[125,25,76,0.0012210657395695433],[125,25,77,0.0021958384625915253],[125,25,78,0.003220771563673426],[125,25,79,0.004289633043900253],[125,26,64,-0.008698011870686771],[125,26,65,-0.008419027527719133],[125,26,66,-0.008067921671537002],[125,26,67,-0.007638722323624823],[125,26,68,-0.00713151340362599],[125,26,69,-0.006549340862591425],[125,26,70,-0.005893353393831862],[125,26,71,-0.00516356781566048],[125,26,72,-0.004359643500864972],[125,26,73,-0.0034815415164226723],[125,26,74,-0.002530068381788018],[125,26,75,-0.001507304642725042],[125,26,76,-4.169187374963255E-4],[125,26,77,7.356330989199282E-4],[125,26,78,0.0019430198912499508],[125,26,79,0.00319606069948771],[125,27,64,-0.011093863704805291],[125,27,65,-0.01083869903071655],[125,27,66,-0.010489703898087779],[125,27,67,-0.010043711506648682],[125,27,68,-0.009501819376470056],[125,27,69,-0.008866465570737999],[125,27,70,-0.00813874710982596],[125,27,71,-0.007319183547801823],[125,27,72,-0.006408435450572906],[125,27,73,-0.00540790638324935],[125,27,74,-0.004320228423557595],[125,27,75,-0.0031496315084036395],[125,27,76,-0.0019021972013081425],[125,27,77,-5.859977371841615E-4],[125,27,78,7.888785444733535E-4],[125,27,79,0.0022104140288212574],[125,28,64,-0.013179274463854387],[125,28,65,-0.012951242361695673],[125,28,66,-0.012608951404772183],[125,28,67,-0.012151788407614756],[125,28,68,-0.011581802770345009],[125,28,69,-0.010900937275338881],[125,28,70,-0.010110335053842134],[125,28,71,-0.009211092402404288],[125,28,72,-0.008204917690416095],[125,28,73,-0.007094673516933654],[125,28,74,-0.005884802237456798],[125,28,75,-0.004581635270822995],[125,28,76,-0.003193586875483588],[125,28,77,-0.001731233350886249],[125,28,78,-2.0727887117767465E-4],[125,28,79,0.0013635906074129472],[125,29,64,-0.014902213135604074],[125,29,65,-0.014704268972455104],[125,29,66,-0.014373279913349165],[125,29,67,-0.013910885006636505],[125,29,68,-0.013320010613699671],[125,29,69,-0.012602233581487376],[125,29,70,-0.01175884602826477],[125,29,71,-0.010791588754830692],[125,29,72,-0.009703248266148696],[125,29,73,-0.008498137717062353],[125,29,74,-0.0071824619997075834],[125,29,75,-0.00576456747660495],[125,29,76,-0.00425507713876849],[125,29,77,-0.0026669122302307824],[125,29,78,-0.0010152016268184176],[125,29,79,6.829195145647682E-4],[125,30,64,-0.016221399135214278],[125,30,65,-0.016056051644177383],[125,30,66,-0.01574082634485475],[125,30,67,-0.015279271761720154],[125,30,68,-0.014675105128606557],[125,30,69,-0.013929679719047072],[125,30,70,-0.013044541824273713],[125,30,71,-0.012022136645935565],[125,30,72,-0.010866342460862285],[125,30,73,-0.009582890287190251],[125,30,74,-0.008179669357539441],[125,30,75,-0.006666918985940704],[125,30,76,-0.005057307684706805],[125,30,77,-0.0033659006431464838],[125,30,78,-0.0016100169196004888],[125,30,79,1.910220806342227E-4],[125,31,64,-0.01710827315171452],[125,31,65,-0.016977507048484525],[125,31,66,-0.016682231917090014],[125,31,67,-0.01622753255908599],[125,31,68,-0.015617822420852455],[125,31,69,-0.0148543818712974],[125,31,70,-0.013939115440279724],[125,31,71,-0.01287522285357689],[125,31,72,-0.011667670727427693],[125,31,73,-0.01032355218472053],[125,31,74,-0.008852334776039585],[125,31,75,-0.007265997362385013],[125,31,76,-0.00557905687810062],[125,31,77,-0.0038084861401251353],[125,31,78,-0.001973524100815307],[125,31,79,-9.538015393440777E-5],[125,32,64,-0.017548847029354307],[125,32,65,-0.017454061328930313],[125,32,66,-0.01718251350709263],[125,32,67,-0.016740434729549333],[125,32,68,-0.016132834670127237],[125,32,69,-0.015361073973539219],[125,32,70,-0.014427514135749515],[125,32,71,-0.013336147386141205],[125,32,72,-0.01209300764841914],[125,32,73,-0.010706472598331847],[125,32,74,-0.009187457267059896],[125,32,75,-0.007549499903520881],[125,32,76,-0.0058087410611253045],[125,32,77,-0.003983797112471514],[125,32,78,-0.0020955296168187966],[125,32,79,-1.6671216763517778E-4],[125,33,64,-0.01754542951066028],[125,33,65,-0.017487395649851623],[125,33,66,-0.01724282037992689],[125,33,67,-0.016818691428636456],[125,33,68,-0.016220513358469215],[125,33,69,-0.015449875802179535],[125,33,70,-0.01450968546170534],[125,33,71,-0.01340474989409269],[125,33,72,-0.01214213080295442],[125,33,73,-0.010731392238592319],[125,33,74,-0.009184744208405985],[125,33,75,-0.007517082452952707],[125,33,76,-0.005745925384544068],[125,33,77,-0.0038912494124113857],[125,33,78,-0.0019752240890246217],[125,33,79,-2.1848703883267178E-5],[125,34,64,-0.01711822433884872],[125,34,65,-0.01709706832351769],[125,34,66,-0.016882073045020755],[125,34,67,-0.016480613336816313],[125,34,68,-0.015898590735864856],[125,34,69,-0.01513795984110562],[125,34,70,-0.014202244084754661],[125,34,71,-0.013097070184243605],[125,34,72,-0.011830468125537367],[125,34,73,-0.01041307035377961],[125,34,74,-0.008858210712214808],[125,34,75,-0.007181923912364256],[125,34,76,-0.005402846548266314],[125,34,77,-0.003542020883141137],[125,34,78,-0.001622602835957608],[125,34,79,3.3052422408432234E-4],[125,35,64,-0.016306796888737565],[125,35,65,-0.016322009790659193],[125,35,66,-0.016138480660673225],[125,35,67,-0.015763646293689718],[125,35,68,-0.015203716380516982],[125,35,69,-0.014461124075329845],[125,35,70,-0.013540056892852113],[125,35,71,-0.012446940704716384],[125,35,72,-0.011190692040969199],[125,35,73,-0.009782874201328751],[125,35,74,-0.008237757742800327],[125,35,75,-0.006572286140011966],[125,35,76,-0.00480594763233177],[125,35,77,-0.002960554475454314],[125,35,78,-0.0010599310026320663],[125,35,79,8.704879299926996E-4],[125,36,64,-0.015171405172001148],[125,36,65,-0.015221886398238248],[125,36,66,-0.015070933070708946],[125,36,67,-0.014725791140563485],[125,36,68,-0.014192905372021065],[125,36,69,-0.013475267525984918],[125,36,70,-0.012577743541940934],[125,36,71,-0.011507508549979522],[125,36,72,-0.010274258354947904],[125,36,73,-0.008890329418652842],[125,36,74,-0.007370727918833691],[125,36,75,-0.0057330686811332045],[125,36,76,-0.003997424985971996],[125,36,77,-0.0021860904441463355],[125,36,78,-3.232543111410065E-4],[125,36,79,0.0015654082314050847],[125,37,64,-0.013794190748754907],[125,37,65,-0.013878328595970272],[125,37,66,-0.013760263228766816],[125,37,67,-0.013446901713659521],[125,37,68,-0.012944874262516708],[125,37,69,-0.012257765009605702],[125,37,70,-0.011391089276787263],[125,37,71,-0.01035268421826666],[125,37,72,-0.009152887575191232],[125,37,73,-0.007804629448099762],[125,37,74,-0.006323437664947489],[125,37,75,-0.0047273575283816385],[125,37,76,-0.0030367869203593617],[125,37,77,-0.001274227923229443],[125,37,78,5.360437178508554E-4],[125,37,79,0.00236838981771896],[125,38,64,-0.012277683451528335],[125,38,65,-0.01239348000475906],[125,38,66,-0.012307849787375022],[125,38,67,-0.012027347902627177],[125,38,68,-0.011558771019043821],[125,38,69,-0.01090627112835956],[125,38,70,-0.01007593060182859],[125,38,71,-0.009076116764121529],[125,38,72,-0.007917637234075167],[125,38,73,-0.0066138123462514496],[125,38,74,-0.0051804652175462705],[125,38,75,-0.0036358302189337696],[125,38,76,-0.00200038079707483],[125,38,77,-2.9657776218251346E-4],[125,38,78,0.0014514606845906467],[125,38,79,0.003218365770713838],[125,39,64,-0.010688801479543502],[125,39,65,-0.010834068714948969],[125,39,66,-0.010779991361409315],[125,39,67,-0.010532779436674656],[125,39,68,-0.0100993803349279],[125,39,69,-0.009484471774724695],[125,39,70,-0.008694604110139762],[125,39,71,-0.007738529047186803],[125,39,72,-0.006627342067867748],[125,39,73,-0.005374545317424192],[125,39,74,-0.003996031492817995],[125,39,75,-0.0025099894582634053],[125,39,76,-9.3673249057312E-4],[125,39,77,7.015497785458465E-4],[125,39,78,0.002381114506046432],[125,39,79,0.0040770625157390585],[125,40,64,-0.009047277099536313],[125,40,65,-0.00921976346560672],[125,40,66,-0.009196211402104245],[125,40,67,-0.008982393500185848],[125,40,68,-0.00858537003256092],[125,40,69,-0.008010333153509892],[125,40,70,-0.007264229801506063],[125,40,71,-0.006356074439068153],[125,40,72,-0.005297089879996121],[125,40,73,-0.004100771168881977],[125,40,74,-0.0027828730110296936],[125,40,75,-0.0013613214330476374],[125,40,76,1.439494739986183E-4],[125,40,77,0.0017112347175244635],[125,40,78,0.003317368315494662],[125,40,79,0.0049381046705922315],[125,41,64,-0.007371559894993026],[125,41,65,-0.007569020932009044],[125,41,66,-0.007574846991632042],[125,41,67,-0.007394202494682384],[125,41,68,-0.0070342101882754715],[125,41,69,-0.0065005974437231445],[125,41,70,-0.005800667039681698],[125,41,71,-0.004943603197619635],[125,41,72,-0.0039406224825134575],[125,41,73,-0.0028050494843195046],[125,41,74,-0.0015523177241828754],[125,41,75,-1.998964083897224E-4],[125,41,76,0.00123285617804585],[125,41,77,0.002724911689164361],[125,41,78,0.004253862054535506],[125,41,79,0.0057962799131433835],[125,42,64,-0.00567860945920213],[125,42,65,-0.00589892149665153],[125,42,66,-0.005932935258488891],[125,42,67,-0.005784983156686192],[125,42,68,-0.005462197726190914],[125,42,69,-0.004970893490027778],[125,42,70,-0.004318719663542658],[125,42,71,-0.0035149679753572766],[125,42,72,-0.0025707452301423814],[125,42,73,-0.0014990714966705376],[125,42,74,-3.1490429639378074E-4],[125,42,75,9.649106535921521E-4],[125,42,76,0.0023217614205470706],[125,42,77,0.0037354636790355783],[125,42,78,0.00518452535248851],[125,42,79,0.006646480919387896],[125,43,64,-0.003981184085602496],[125,43,65,-0.00422250827219051],[125,43,66,-0.004283621764980038],[125,43,67,-0.004167771918972253],[125,43,68,-0.0038820557673493058],[125,43,69,-0.0034334572706060822],[125,43,70,-0.002829994307453642],[125,43,71,-0.0020810358365604704],[125,43,72,-0.0011975072496202594],[125,43,73,-1.9202133244859798E-4],[125,43,74,9.210648739002531E-4],[125,43,75,0.002125666839216411],[125,43,76,0.00340406229336185],[125,43,77,0.004737053154410246],[125,43,78,0.00610419868399274],[125,43,79,0.007484118784999816],[125,44,64,-0.00228483802074934],[125,44,65,-0.0025458387301863627],[125,44,66,-0.0026332873913518344],[125,44,67,-0.0025490868946187782],[125,44,68,-0.0023002702189820813],[125,44,69,-0.001894602829570519],[125,44,70,-0.0013405250315575287],[125,44,71,-6.474849732032601E-4],[125,44,72,1.7381285830232474E-4],[125,44,73,0.0011112343420903571],[125,44,74,0.002151117435573756],[125,44,75,0.003278248513357126],[125,44,76,0.004475912777171925],[125,44,77,0.005726018015552431],[125,44,78,0.007009290839014537],[125,44,79,0.008305544377594494],[125,45,64,-5.846207597181004E-4],[125,45,65,-8.647423828526901E-4],[125,45,66,-9.783871796804418E-4],[125,45,67,-9.258700227063101E-4],[125,45,68,-7.141572871864001E-4],[125,45,69,-3.519375762387404E-4],[125,45,70,1.518415387514672E-4],[125,45,71,7.876193053857351E-4],[125,45,72,0.0015449208165787336],[125,45,73,0.0024121327193301857],[125,45,74,0.0033763555232562566],[125,45,75,0.004423332234132153],[125,45,76,0.005537452854557192],[125,45,77,0.0067018341212392064],[125,45,78,0.007898473687926831],[125,45,79,0.00910847781636073],[125,46,64,0.0011385279175202894],[125,46,65,8.387218245218432E-4],[125,46,66,6.980051986216276E-4],[125,46,67,7.178568955794776E-4],[125,46,68,8.913442255187264E-4],[125,46,69,0.0012086839806001125],[125,46,70,0.0016603062119225811],[125,46,71,0.0022364745942759206],[125,46,72,0.0029269248146899327],[125,46,73,0.00372058162530407],[125,46,74,0.004605354603443032],[125,46,75,0.00556801246138657],[125,46,76,0.006594135556551703],[125,46,77,0.007668146071289199],[125,46,78,0.008773415161877322],[125,46,79,0.009892446220274811],[125,47,64,0.0029036961648555883],[125,47,65,0.0025825153619748794],[125,47,66,0.0024128120950717338],[125,47,67,0.002398014730670525],[125,47,68,0.00253115379466136],[125,47,69,0.00280115482325837],[125,47,70,0.003197684380646608],[125,47,71,0.003710741890618259],[125,47,72,0.004330230495090014],[125,47,73,0.005045608874178481],[125,47,74,0.005845624209707359],[125,47,75,0.006718126264130968],[125,47,76,0.007649962345282151],[125,47,77,0.008626952735744311],[125,47,78,0.00963394598568003],[125,47,79,0.010654953301363849],[125,48,64,0.00467421634970005],[125,48,65,0.004330129450921972],[125,48,66,0.0041299351768966834],[125,48,67,0.004079139666502408],[125,48,68,0.004170653032769794],[125,48,69,0.004391910680712778],[125,48,70,0.004731663866688213],[125,48,71,0.005179540835400856],[125,48,72,0.0057255446296412636],[125,48,73,0.006359634413718583],[125,48,74,0.007071390642949414],[125,48,75,0.0078497641912389],[125,48,76,0.008682909336451296],[125,48,77,0.009558100300600949],[125,48,78,0.010461730850608867],[125,48,79,0.011379396287253265],[125,49,64,0.006404118098356244],[125,49,65,0.006036086416141463],[125,49,66,0.00580465876162044],[125,49,67,0.005717520534375201],[125,49,68,0.005767371480011028],[125,49,69,0.005939965742360233],[125,49,70,0.006222984794018089],[125,49,71,0.006605566534462529],[125,49,72,0.007077725911465937],[125,49,73,0.007629861832343093],[125,49,74,0.008252350857128237],[125,49,75,0.008935227934220821],[125,49,76,0.009667954215140379],[125,49,77,0.010439271770510317],[125,49,78,0.011237144825994328],[125,49,79,0.012048786946478738],[125,50,64,0.008054819600537331],[125,50,65,0.007662267243834732],[125,50,66,0.007399558217734407],[125,50,67,0.00727662574815486],[125,50,68,0.007285863544405661],[125,50,69,0.0074111659032816656],[125,50,70,0.007638992428188373],[125,50,71,0.007957864456683852],[125,50,72,0.008357705705130442],[125,50,73,0.008829272165859546],[125,50,74,0.009363671915719208],[125,50,75,0.009951975251464362],[125,50,76,0.010584915331368067],[125,50,77,0.011252679275441102],[125,50,78,0.01194478946053778],[125,50,79,0.012650074543297177],[125,51,64,0.00959484802480652],[125,51,65,0.009177632121820323],[125,51,66,0.008884220141228454],[125,51,67,0.008726824750931755],[125,51,68,0.008697433641440397],[125,51,69,0.008777919784818042],[125,51,70,0.00895337603393691],[125,51,71,0.00921157887037011],[125,51,72,0.009542247599338721],[125,51,73,0.00993639590364879],[125,51,74,0.010385776587158587],[125,51,75,0.010882420082601572],[125,51,76,0.011418267049887515],[125,51,77,0.01198489515111919],[125,51,78,0.012573339859331838],[125,51,79,0.01317400894135126],[125,52,64,0.010999547897638219],[125,52,65,0.010557928499806192],[125,52,66,0.010234949940349304],[125,52,67,0.01004509690710296],[125,52,68,0.009979848816960016],[125,52,69,0.01001891718351149],[125,52,70,0.010145894940181322],[125,52,71,0.010347688044497058],[125,52,72,0.010613693021280093],[125,52,73,0.010935070068402981],[125,52,74,0.011304112730116885],[125,52,75,0.011713714874670994],[125,52,76,0.012156935451374683],[125,52,77,0.012626661249245297],[125,52,78,0.01311536763682824],[125,52,79,0.013614977032700438],[125,53,64,0.012250776824192353],[125,53,65,0.011785386020591329],[125,53,66,0.011434466163249052],[125,53,67,0.011214727164332187],[125,53,68,0.01111703816959201],[125,53,69,0.011118834256098742],[125,53,70,0.011202091109151342],[125,53,71,0.011352725496577154],[125,53,72,0.011559692173987666],[125,53,73,0.011814179603912494],[125,53,74,0.012108905669023468],[125,53,75,0.01243751427874162],[125,53,76,0.012794073494029765],[125,53,77,0.013172675529013765],[125,53,78,0.013567138732186962],[125,53,79,0.013970811406435402],[125,54,64,0.013336587956314424],[125,54,65,0.012848397700776575],[125,54,66,0.012471580931261963],[125,54,67,0.012224987838089348],[125,54,68,0.012098778417114384],[125,54,69,0.012068024776067415],[125,54,70,0.012112987533662039],[125,54,71,0.012218486595352813],[125,54,72,0.0123729195834623],[125,54,73,0.012567382329489481],[125,54,74,0.012794892782783247],[125,54,75,0.01304971939632956],[125,54,76,0.013326814763135037],[125,54,77,0.013621354997545613],[125,54,78,0.013928385086811776],[125,54,79,0.014242570181472812],[125,55,64,0.01425089864580835],[125,55,65,0.013741186772542347],[125,55,66,0.013340865873935398],[125,55,67,0.013070805905049013],[125,55,68,0.012920364984664034],[125,55,69,0.01286219683043864],[125,55,70,0.012874771819130958],[125,55,71,0.012941719858363463],[125,55,72,0.013050773573194327],[125,55,73,0.01319281674932344],[125,55,74,0.013361039557950384],[125,55,75,0.013550201781660482],[125,55,76,0.013756004961007163],[125,55,77,0.013974574089689057],[125,55,78,0.014202049204439352],[125,55,79,0.014434286946194582],[125,56,64,0.014756367788789543],[125,56,65,0.014463458635870214],[125,56,66,0.014042303000237018],[125,56,67,0.013752415230138523],[125,56,68,0.013582268031114023],[125,56,69,0.013502074363550443],[125,56,70,0.013488464344533626],[125,56,71,0.01352380232133286],[125,56,72,0.01359505901976348],[125,56,73,0.01369279204010832],[125,56,74,0.013810236391512317],[125,56,75,0.013942506438407113],[125,56,76,0.014085910320888783],[125,56,77,0.01423737760711714],[125,56,78,0.014394000641835413],[125,56,79,0.014552689773339057],[125,57,64,0.014284871939542365],[125,57,65,0.014840906864260704],[125,57,66,0.014580919983294346],[125,57,67,0.014274993195203436],[125,57,68,0.014089772873060387],[125,57,69,0.013993043017431366],[125,57,70,0.01395957043883425],[125,57,71,0.013970398398055693],[125,57,72,0.014011652784209929],[125,57,73,0.014073459580477298],[125,57,74,0.014148975467729266],[125,57,75,0.014233533087831877],[125,57,76,0.014323902165544812],[125,57,77,0.014417667372702721],[125,57,78,0.014512723512940355],[125,57,79,0.014606888311987308],[125,58,64,0.013971056142976937],[125,58,65,0.014544761101672184],[125,58,66,0.01496640938326536],[125,58,67,0.01464828124477679],[125,58,68,0.014452604313337298],[125,58,69,0.014344779765568161],[125,58,70,0.014297716056228385],[125,58,71,0.014291101695752165],[125,58,72,0.014310151259589938],[125,58,73,0.014344465430897504],[125,58,74,0.014387007077964467],[125,58,75,0.01443319502911321],[125,58,76,0.014480116874520605],[125,58,77,0.01452586179866831],[125,58,78,0.01456897413112851],[125,58,79,0.014608027999590375],[125,59,64,0.013801089280180803],[125,59,65,0.014390381305557993],[125,59,66,0.014864791362010323],[125,59,67,0.014886188916010425],[125,59,68,0.014684534432539885],[125,59,69,0.014570865888209576],[125,59,70,0.014516266484529342],[125,59,71,0.014499059301456717],[125,59,72,0.014503499525324032],[125,59,73,0.014518583222496844],[125,59,74,0.014536974801934057],[125,59,75,0.01455405496185935],[125,59,76,0.014567090573037523],[125,59,77,0.01457452761587737],[125,59,78,0.014575407963016814],[125,59,79,0.01456891048570121],[125,60,64,0.013757156436368819],[125,60,65,0.014359862725781172],[125,60,66,0.01484462338593488],[125,60,67,0.015006380975135764],[125,60,68,0.014802973457369731],[125,60,69,0.01468838289251356],[125,60,70,0.01463192767593365],[125,60,71,0.014610578109640457],[125,60,72,0.014607601653360834],[125,60,73,0.014611326967585676],[125,60,74,0.014614029023092504],[125,60,75,0.014610937195232215],[125,60,76,0.014599367910190649],[125,60,77,0.014577983066729793],[125,60,78,0.014546175122888588],[125,60,79,0.014503579415353534],[125,61,64,0.013817882632191669],[125,61,65,0.014431797765517115],[125,61,66,0.014924005742628988],[125,61,67,0.015029847341594849],[125,61,68,0.014828543378460053],[125,61,69,0.014717491039575795],[125,61,70,0.014664329847962723],[125,61,71,0.01464471281969763],[125,61,72,0.014640911769589569],[125,61,73,0.01464054336318704],[125,61,74,0.014635418309756303],[125,61,75,0.01462051572754074],[125,61,76,0.014593084354320445],[125,61,77,0.014551871925316994],[125,61,78,0.014496483699181205],[125,61,79,0.01442687078378953],[125,62,64,0.013958773034706082],[125,62,65,0.014581722346605224],[125,62,66,0.015078661434788221],[125,62,67,0.014980455542881058],[125,62,68,0.014784634052355736],[125,62,69,0.014680990202352983],[125,62,70,0.014635593064287616],[125,62,71,0.014622835293857335],[125,62,72,0.014624005536057062],[125,62,73,0.014625983221435268],[125,62,74,0.014620058256810807],[125,62,75,0.014600877744395153],[125,62,76,0.014565521498954483],[125,62,77,0.014512707775607162],[125,62,78,0.014442130273474735],[125,62,79,0.014353927145361609],[125,63,64,0.01415266980600952],[125,63,65,0.014782579614987587],[125,63,66,0.015211242708413134],[125,63,67,0.014884485507897624],[125,63,68,0.014696941587266543],[125,63,69,0.014603862843470572],[125,63,70,0.014569874570166123],[125,63,71,0.01456818503128736],[125,63,72,0.014579131785166543],[125,63,73,0.014588851727042542],[125,63,74,0.0145880774502519],[125,63,75,0.014571062152365461],[125,63,76,0.01453463494339876],[125,63,77,0.014477388051326753],[125,63,78,0.014398997067891274],[125,63,79,0.014299675037818252],[125,64,64,0.014370225683714355],[125,64,65,0.015005201096175402],[125,64,66,0.015090541264596668],[125,64,67,0.014770146573960051],[125,64,68,0.014592988879767045],[125,64,69,0.014512798969576881],[125,64,70,0.014492897725061564],[125,64,71,0.014505400582352983],[125,64,72,0.014529744105883126],[125,64,73,0.014551337291907404],[125,64,74,0.014560340288145398],[125,64,75,0.014550572838334462],[125,64,76,0.014518554387692983],[125,64,77,0.014462677419694274],[125,64,78,0.014382515238604583],[125,64,79,0.014278265068687719],[125,65,64,0.01458039432163252],[125,65,65,0.015218805342911782],[125,65,66,0.014979649234033374],[125,65,67,0.014667076652145122],[125,65,68,0.014501628239498542],[125,65,69,0.014435702988995465],[125,65,70,0.014431462445399982],[125,65,71,0.014460031797919827],[125,65,72,0.014500012253795049],[125,65,73,0.0145361188501092],[125,65,74,0.014557946466610568],[125,65,75,0.014558866422159046],[125,65,76,0.014535055662026113],[125,65,77,0.01448466017505405],[125,65,78,0.014407093921090852],[125,65,79,0.014302474202934823],[125,66,64,0.01475093735160557],[125,66,65,0.015386183306015041],[125,66,66,0.014909829768117064],[125,66,67,0.014605823567237886],[125,66,68,0.014452526110856097],[125,66,69,0.014401182471662222],[125,66,70,0.014412937143092967],[125,66,71,0.014458032881988707],[125,66,72,0.014514313331431628],[125,66,73,0.01456585151275875],[125,66,74,0.014601707017926084],[125,66,75,0.014614814351639813],[125,66,76,0.014601004495634656],[125,66,77,0.014558161397564034],[125,66,78,0.01448551472665076],[125,66,79,0.014383069890328472],[125,67,64,0.014848948058596519],[125,67,65,0.015384623681158088],[125,67,66,0.01491281071220059],[125,67,67,0.014617308661755594],[125,67,68,0.014475629974330908],[125,67,69,0.014438018884432599],[125,67,70,0.014464732220132313],[125,67,71,0.014525236291557934],[125,67,72,0.014596702762262244],[125,67,73,0.014662630581211169],[125,67,74,0.014711596869573752],[125,67,75,0.01473613927391401],[125,67,76,0.014731771919453174],[125,67,77,0.014696136726196917],[125,67,78,0.014628291489394372],[125,67,79,0.014528135776826172],[125,68,64,0.014841391491296735],[125,68,65,0.015484465367528765],[125,68,66,0.015020229933574806],[125,68,67,0.014732272828150305],[125,68,68,0.014600617585345305],[125,68,69,0.01457462045053482],[125,68,70,0.014613755255986863],[125,68,71,0.014686807605165077],[125,68,72,0.01477036516104431],[125,68,73,0.014847433998746076],[125,68,74,0.014906183977742963],[125,68,75,0.014938825706004188],[125,68,76,0.014940621290134714],[125,68,77,0.014909030694208271],[125,68,78,0.014842995168105902],[125,68,79,0.014742358856567897],[125,69,64,0.014695666902343701],[125,69,65,0.015340360213710777],[125,69,66,0.015263057350053457],[125,69,67,0.014980699205563707],[125,69,68,0.014856322851166764],[125,69,69,0.014838451532025313],[125,69,70,0.014885842433940916],[125,69,71,0.014966676112272771],[125,69,72,0.015057040122591021],[125,69,73,0.015139538597746059],[125,69,74,0.015202030790133592],[125,69,75,0.015236501214994943],[125,69,76,0.015238063652082062],[125,69,77,0.015204100891350096],[125,69,78,0.01513354174601548],[125,69,79,0.015026276506161949],[125,70,64,0.014396315535149022],[125,70,65,0.015043843888853528],[125,70,66,0.015532796351394068],[125,70,67,0.015375498406945453],[125,70,68,0.015254622427026233],[125,70,69,0.015240219218403442],[125,70,70,0.015290381685086457],[125,70,71,0.015372755720178087],[125,70,72,0.01546301503415504],[125,70,73,0.015543461714265832],[125,70,74,0.015601755601891039],[125,70,75,0.015629775191810285],[125,70,76,0.015622612378685282],[125,70,77,0.015577703004111054],[125,70,78,0.01549409479480645],[125,70,79,0.01537185393174175],[125,71,64,0.013977758430904206],[125,71,65,0.014629767108120325],[125,71,66,0.015121644716395198],[125,71,67,0.015426390310512636],[125,71,68,0.015569872367467994],[125,71,69,0.015605053955561101],[125,71,70,0.01557440280132266],[125,71,71,0.015510718358712264],[125,71,72,0.0154386645273577],[125,71,73,0.015376177086089854],[125,71,74,0.015335742689800069],[125,71,75,0.015325546659874489],[125,71,76,0.015350487176621212],[125,71,77,0.015413053853797005],[125,71,78,0.015514069038035485],[125,71,79,0.015653290526881778],[125,72,64,0.013479710005415126],[125,72,65,0.014138124993413366],[125,72,66,0.014635569518202161],[125,72,67,0.014946073669160391],[125,72,68,0.015096226403175983],[125,72,69,0.015139353024185188],[125,72,70,0.01511819930997514],[125,72,71,0.015065767042152534],[125,72,72,0.015006849210313578],[125,72,73,0.014959440741129698],[125,72,74,0.014936021546345045],[125,72,75,0.014944709064084816],[125,72,76,0.014990277844410429],[125,72,77,0.01507504410033867],[125,72,78,0.01519961350705413],[125,72,79,0.01536349088200311],[125,73,64,0.012937905699368897],[125,73,65,0.013604836772683919],[125,73,66,0.014110615873754334],[125,73,67,0.014430532043230783],[125,73,68,0.014591737058177689],[125,73,69,0.01464753541224611],[125,73,70,0.014640637322099751],[125,73,71,0.014604000905939054],[125,73,72,0.01456236192608411],[125,73,73,0.014533640329548549],[125,73,74,0.014530220344479306],[125,73,75,0.014560101267338048],[125,73,76,0.014627916449034965],[125,73,77,0.014735818355524179],[125,73,78,0.014884227937143522],[125,73,79,0.015072446888466097],[125,74,64,0.012385559654235965],[125,74,65,0.013063200092339154],[125,74,66,0.013580088440377851],[125,74,67,0.013913019435797801],[125,74,68,0.014089508984901293],[125,74,69,0.014162384929611855],[125,74,70,0.014173956117673287],[125,74,71,0.014156858260098302],[125,74,72,0.014135567982510637],[125,74,73,0.014127795478763945],[125,74,74,0.014145752512028648],[125,74,75,0.014197292880261428],[125,74,76,0.014286922831213002],[125,74,77,0.014416679274551154],[125,74,78,0.01458687399282177],[125,74,79,0.014796702396110913],[125,75,64,0.01185484345874329],[125,75,65,0.01254536684010814],[125,75,66,0.01307601918972758],[125,75,67,0.013425354386723886],[125,75,68,0.013621024028551287],[125,75,69,0.01371487527053974],[125,75,70,0.013748417042081166],[125,75,71,0.013753665655538181],[125,75,72,0.013754631239622195],[125,75,73,0.013768685148976936],[125,75,74,0.013807805110268382],[125,75,75,0.01387969522945391],[125,75,76,0.013988778345953254],[125,75,77,0.01413705857487477],[125,75,78,0.014324852225851559],[125,75,79,0.014551385623732082],[125,76,64,0.011378384581944238],[125,76,65,0.012083839106792922],[125,76,66,0.012630655721704393],[125,76,67,0.012999395629953897],[125,76,68,0.013217597856466801],[125,76,69,0.013335599144405024],[125,76,70,0.013393695273850498],[125,76,71,0.01342298168813068],[125,76,72,0.013446799191443927],[125,76,73,0.013482063577699129],[125,76,74,0.013540475997062016],[125,76,75,0.013629611221545738],[125,76,76,0.013753881322630094],[125,76,77,0.013915372620098305],[125,76,78,0.014114554099686762],[125,76,79,0.014350855825132845],[125,77,64,0.010990782948174438],[125,77,65,0.011712983750255593],[125,77,66,0.012277968597146133],[125,77,67,0.012668537145898719],[125,77,68,0.012911856295646307],[125,77,69,0.01305621732598707],[125,77,70,0.013140291591986849],[125,77,71,0.013193960730337725],[125,77,72,0.013239707738811007],[125,77,73,0.01329389550970717],[125,77,74,0.013367929703408011],[125,77,75,0.013469303191260417],[125,77,76,0.013602519637024227],[125,77,77,0.01376989412081884],[125,77,78,0.013972229036614424],[125,77,79,0.014209363811291759],[125,78,64,0.01073014395294891],[125,78,65,0.011470563864186004],[125,78,66,0.012055176003217635],[125,78,67,0.012469220942633226],[125,78,68,0.012739229741709459],[125,78,69,0.012910926029415945],[125,78,70,0.013020962599986344],[125,78,71,0.013097735112786972],[125,78,72,0.013162704252983269],[125,78,73,0.013231609400887563],[125,78,74,0.01331557081064151],[125,78,75,0.013422077628149384],[125,78,76,0.013555859404340908],[125,78,77,0.013719639080798618],[125,78,78,0.013914765738321724],[125,78,79,0.014141725702660994],[125,79,64,0.01061935389055045],[125,79,65,0.011379088518353838],[125,79,66,0.01198438133931809],[125,79,67,0.01242309698939131],[125,79,68,0.012720877646497715],[125,79,69,0.012920384696292666],[125,79,70,0.013055878705821351],[125,79,71,0.013154011129048404],[125,79,72,0.01323506431298757],[125,79,73,0.013314087517589437],[125,79,74,0.013401926097791717],[125,79,75,0.013506141309656413],[125,79,76,0.013631818512899909],[125,79,77,0.013782261847341814],[125,79,78,0.013959573758728118],[125,79,79,0.014165118037669462],[125,80,64,0.010610439890459927],[125,80,65,0.01139037079876296],[125,80,66,0.012017910793574026],[125,80,67,0.012483777988442262],[125,80,68,0.012812521573694422],[125,80,69,0.013043283256089161],[125,80,70,0.013207552595514916],[125,80,71,0.01332993632715208],[125,80,72,0.013429308690339323],[125,80,73,0.013519862537467446],[125,80,74,0.01361205854052435],[125,80,75,0.013713470109633669],[125,80,76,0.01382952193144191],[125,80,77,0.013964120323578346],[125,80,78,0.014120173882600671],[125,80,79,0.014300003174601469],[125,81,64,0.010652051712326874],[125,81,65,0.0114527508759171],[125,81,66,0.012104501595891477],[125,81,67,0.012601144343337351],[125,81,68,0.012965985547913474],[125,81,69,0.01323423946873309],[125,81,70,0.01343425102845356],[125,81,71,0.013588247500038439],[125,81,72,0.013713397585939436],[125,81,73,0.01382277610561748],[125,81,74,0.013926231787096585],[125,81,75,0.01403115593796526],[125,81,76,0.014143150047683389],[125,81,77,0.014266590644371321],[125,81,78,0.014405089993508764],[125,81,79,0.014561851481018474],[125,82,64,0.010708267810519673],[125,82,65,0.01152985909399067],[125,82,66,0.012207811971627847],[125,82,67,0.012739371876245346],[125,82,68,0.013146502754021898],[125,82,69,0.01346014506080581],[125,82,70,0.013705149436057048],[125,82,71,0.013901019441328093],[125,82,72,0.014062882757939274],[125,82,73,0.014202372702901927],[125,82,74,0.014328417734870189],[125,82,75,0.014447936885172537],[125,82,76,0.014566439308913933],[125,82,77,0.014688526405992205],[125,82,78,0.01481829520978632],[125,82,79,0.01495964198022689],[125,83,64,0.010755936661424189],[125,83,65,0.01159799829120151],[125,83,66,0.012303874010292584],[125,83,67,0.01287448855885572],[125,83,68,0.013330409721837966],[125,83,69,0.01369802878761931],[125,83,70,0.013998392438245303],[125,83,71,0.014247948096578355],[125,83,72,0.01445943463420097],[125,83,73,0.014642687827590213],[125,83,74,0.014805358399255966],[125,83,75,0.014953540728536425],[125,83,76,0.015092310561396144],[125,83,77,0.015226170288204048],[125,83,78,0.015359400591318382],[125,83,79,0.015496317488459208],[125,84,64,0.01078222986325874],[125,84,65,0.011643734628689662],[125,84,66,0.012378750486904231],[125,84,67,0.012992129228008062],[125,84,68,0.013503031053574975],[125,84,69,0.013933101112951415],[125,84,70,0.014299325613743698],[125,84,71,0.01461479325719638],[125,84,72,0.014889516040690803],[125,84,73,0.015131168816454241],[125,84,74,0.015345745589230565],[125,84,75,0.015538130770105902],[125,84,76,0.015712583834800873],[125,84,77,0.015873136060944655],[125,84,78,0.016023898238453425],[125,84,79,0.016169278458338102],[125,85,64,0.010782413821481983],[125,85,65,0.011661703674521526],[125,85,66,0.01242640224880616],[125,85,67,0.013085494688074177],[125,85,68,0.013656760801903091],[125,85,69,0.014156986233692258],[125,85,70,0.014598903784327696],[125,85,71,0.014991985506142266],[125,85,72,0.015343206625402351],[125,85,73,0.015657731684313902],[125,85,74,0.01593952100622683],[125,85,75,0.01619185581074074],[125,85,76,0.016387332166048766],[125,85,77,0.016207358892816232],[125,85,78,0.01604492815943837],[125,85,79,0.01589596569233254],[125,86,64,0.010757847034642944],[125,86,65,0.01165263876383878],[125,86,66,0.012446773123186556],[125,86,67,0.013153522007032136],[125,86,68,0.013789347069975737],[125,86,69,0.014366147697717097],[125,86,70,0.014892281653032897],[125,86,71,0.01537340276621652],[125,86,72,0.01581318276470767],[125,86,73,0.016213958138421258],[125,86,74,0.016259149847165047],[125,86,75,0.01596068438309095],[125,86,76,0.015694649961666127],[125,86,77,0.015459201269393354],[125,86,78,0.015251777677976473],[125,86,79,0.015068936795706185],[125,87,64,0.010714209459610947],[125,87,65,0.011621628126094139],[125,87,66,0.012444098781324518],[125,87,67,0.013199272310421593],[125,87,68,0.01390238592429134],[125,87,69,0.014560513410759335],[125,87,70,0.015177592217110267],[125,87,71,0.01575532142069782],[125,87,72,0.016293857400588245],[125,87,73,0.016093261807660627],[125,87,74,0.015668395698478697],[125,87,75,0.01528333111216296],[125,87,76,0.014938665400683601],[125,87,77,0.014634188757749331],[125,87,78,0.014368648001845466],[125,87,79,0.01413959069153975],[125,88,64,0.010659969935643526],[125,88,65,0.011576606776118718],[125,88,66,0.0124254455113681],[125,88,67,0.013228541908393697],[125,88,68,0.014000030262951817],[125,88,69,0.014742305405710929],[125,88,70,0.015454917985139198],[125,88,71,0.01613554662031642],[125,88,72,0.016147263376165552],[125,88,73,0.015578243276907395],[125,88,74,0.015050523750980194],[125,88,75,0.014567831568483059],[125,88,76,0.014133070801635488],[125,88,77,0.013748010005018498],[125,88,78,0.013413047606936115],[125,88,79,0.01312705625898083],[125,89,64,0.01060509718144993],[125,89,65,0.01152708870520103],[125,89,66,0.012399484400018831],[125,89,67,0.013248702153695032],[125,89,68,0.014087918863643306],[125,89,69,0.014915079353637747],[125,89,70,0.015725459662365004],[125,89,71,0.01645047978238439],[125,89,72,0.015734091337115955],[125,89,73,0.015053184473623155],[125,89,74,0.014415100102551101],[125,89,75,0.013826453626274257],[125,89,76,0.013292736100511038],[125,89,77,0.012817992280215138],[125,89,78,0.012404576499371262],[125,89,79,0.012052987148575212],[125,90,64,0.010560019446114045],[125,90,65,0.01148314447925676],[125,90,66,0.01237550600270805],[125,90,67,0.013267773020557897],[125,90,68,0.01417233044547921],[125,90,69,0.015082978427939172],[125,90,70,0.015990906627200253],[125,90,71,0.016150153951518243],[125,90,72,0.015321236374704996],[125,90,73,0.014524970293997084],[125,90,74,0.013772019967887739],[125,90,75,0.013072077542177886],[125,90,76,0.01243344284989414],[125,90,77,0.011862680685666975],[125,90,78,0.011364356548356037],[125,90,79,0.010940851656236943],[125,91,64,0.010534837491541205],[125,91,65,0.011454628951625115],[125,91,66,0.012362680189819333],[125,91,67,0.0132937350142718],[125,91,68,0.014259567214941465],[125,91,69,0.01525020578982763],[125,91,70,0.016253013203358445],[125,91,71,0.015853452083928538],[125,91,72,0.014912635847056788],[125,91,73,0.014000605325391385],[125,91,74,0.013131420204344588],[125,91,75,0.01231797005300658],[125,91,76,0.011571520927041359],[125,91,77,0.010901341016136535],[125,91,78,0.010314406400406022],[125,91,79,0.009815187784096529],[125,92,64,0.010538795209135952],[125,92,65,0.01145066342619333],[125,92,66,0.012369565491414394],[125,92,67,0.013334083666900587],[125,92,68,0.014355572026816374],[125,92,69,0.015420719643022524],[125,92,70,0.016513384434748108],[125,92,71,0.015561455311315444],[125,92,72,0.014512256890331627],[125,92,73,0.013487103628885699],[125,92,74,0.012503451715245766],[125,92,75,0.011577438807352547],[125,92,76,0.010723386695489851],[125,92,77,0.009953385528865094],[125,92,78,0.009276960766695942],[125,92,79,0.008700823809120671],[125,93,64,0.010580011825059552],[125,93,65,0.011479376260788411],[125,93,66,0.012403871923138242],[125,93,67,0.013395630544607682],[125,93,68,0.014465782974724981],[125,93,69,0.015598154506804022],[125,93,70,0.016423598748952526],[125,93,71,0.015275236481638763],[125,93,72,0.014123919941132525],[125,93,73,0.012991216445878249],[125,93,74,0.011897909665652098],[125,93,75,0.010863365504947846],[125,93,76,0.009904981459165149],[125,93,77,0.009037720946941686],[125,93,78,0.008273733899411854],[125,93,79,0.0076220646702773375],[125,94,64,0.010665479325125217],[125,94,65,0.011547905579558107],[125,94,66,0.01247248096000963],[125,94,67,0.013484554384892813],[125,94,68,0.014595228931187598],[125,94,69,0.01578597207802074],[125,94,70,0.016228158318205566],[125,94,71,0.014995575028990085],[125,94,72,0.013750938968994396],[125,94,73,0.012518995540801173],[125,94,74,0.011323719598236541],[125,94,75,0.01018761623881814],[125,94,76,0.009131109136609814],[125,94,77,0.008172018074131808],[125,94,78,0.007325127095930968],[125,94,79,0.006601844475848894],[125,95,64,0.010801328430794791],[125,95,65,0.011662667465025768],[125,95,66,0.01258172603129628],[125,95,67,0.013606705696413361],[125,95,68,0.014748869282872744],[125,95,69,0.01598784479309595],[125,95,70,0.016028193414128353],[125,95,71,0.014722468530968499],[125,95,72,0.013395575989907472],[125,95,73,0.012075190062878738],[125,95,74,0.010788277679865217],[125,95,75,0.009560327648839158],[125,95,76,0.008414672166187447],[125,95,77,0.007371902451752572],[125,95,78,0.00644938009139782],[125,95,79,0.005660845424122313],[125,96,64,0.010993366180580088],[125,96,65,0.011829892724389302],[125,96,66,0.01273793663739426],[125,96,67,0.013768167888757635],[125,96,68,0.014932180851609252],[125,96,69,0.016208274959439408],[125,96,70,0.015820562731312885],[125,96,71,0.014454438458513895],[125,96,72,0.013058307615739964],[125,96,73,0.01166247496964365],[125,96,74,0.010296643443305118],[125,96,75,0.008989067601759744],[125,96,76,0.007765804731252589],[125,96,77,0.006650065537528141],[125,96,78,0.005661666220840173],[125,96,79,0.004816583422990714],[125,97,64,0.01124788791530092],[125,97,65,0.012056435069323914],[125,97,66,0.01294824893747342],[125,97,67,0.013976077753483964],[125,97,68,0.01515199475485536],[125,97,69,0.016453452100973605],[125,97,70,0.015600090881955386],[125,97,71,0.014187627814990755],[125,97,72,0.01273690156604978],[125,97,73,0.01128050920421078],[125,97,74,0.009850583513654509],[125,97,75,0.008477869212448549],[125,97,76,0.007190902467544427],[125,97,77,0.006015295932703268],[125,97,78,0.004973131251348445],[125,97,79,0.0040824606868349505],[125,98,64,0.011572766230109227],[125,98,65,0.012350853313047186],[125,98,66,0.013221685423640285],[125,98,67,0.014239707889989135],[125,98,68,0.015417585739715134],[125,98,69,0.016722898590910727],[125,98,70,0.015358462092363757],[125,98,71,0.013914688539913855],[125,98,72,0.01242530122876184],[125,98,73,0.010924821957641207],[125,98,74,0.009447464926062282],[125,98,75,0.00802613711438743],[125,98,76,0.006691547883679201],[125,98,77,0.005471430227133914],[125,98,78,0.004389875803010631],[125,98,79,0.0034667855822822042],[125,99,64,0.011978819240065712],[125,99,65,0.012724769971831628],[125,99,66,0.013570506082637726],[125,99,67,0.014571813459482635],[125,99,68,0.015742016321466743],[125,99,69,0.016455576398446782],[125,99,70,0.015082885250801524],[125,99,71,0.013623456718689083],[125,99,72,0.012112316505078121],[125,99,73,0.010585525477568598],[125,99,74,0.009078996750433204],[125,99,75,0.0076274249745397205],[125,99,76,0.006263330789747544],[125,99,77,0.0050162230726737336],[125,99,78,0.0039118812942071915],[125,99,79,0.0029717599879162697],[125,100,64,0.012481460308564347],[125,100,65,0.013194508459720936],[125,100,66,0.014011833248881377],[125,100,67,0.014990245456776316],[125,100,68,0.016143737870210277],[125,100,69,0.016121501853703427],[125,100,70,0.014754528355565285],[125,100,71,0.013295413793634473],[125,100,72,0.011780119312242085],[125,100,73,0.010245853004988145],[125,100,74,0.008729818840407376],[125,100,75,0.007268083328878544],[125,100,76,0.005894563088791825],[125,100,77,0.004640136132965344],[125,100,78,0.0035318793624699242],[125,100,79,0.002592434426592133],[125,101,64,0.013099778886590405],[125,101,65,0.013780041354158787],[125,101,66,0.014566469506666247],[125,101,67,0.015516638495906425],[125,101,68,0.016645151105450732],[125,101,69,0.015697735021277512],[125,101,70,0.014350181107672505],[125,101,71,0.012907435210518804],[125,101,72,0.011406056184728586],[125,101,73,0.009884010439125282],[125,101,74,0.008379365723181955],[125,101,75,0.00692910774964793],[125,101,76,0.005568082989166235],[125,101,77,0.004328070622682774],[125,101,78,0.003236986290410687],[125,101,79,0.0023182199346547024],[125,102,64,0.013823517185410002],[125,102,65,0.014470653261039683],[125,102,66,0.015223296928421184],[125,102,67,0.016139566039620863],[125,102,68,0.01638068613131448],[125,102,69,0.015196211378347613],[125,102,70,0.013882040831170433],[125,102,71,0.01247201277282779],[125,102,72,0.011002936714938221],[125,102,73,0.009513125842119828],[125,102,74,0.008041052729473525],[125,102,75,0.006624132172133158],[125,102,76,0.005297634604345966],[125,102,77,0.00409373322506135],[125,102,78,0.0030406875899081113],[125,102,79,0.0021621660781345176],[125,103,64,0.014618601386584974],[125,103,65,0.015231081439509965],[125,103,66,0.015946028067851142],[125,103,67,0.01677521927462574],[125,103,68,0.01579374787329501],[125,103,69,0.014655221477017802],[125,103,70,0.013388667489171733],[125,103,71,0.012027746579898921],[125,103,72,0.0106091421672423],[125,103,73,0.009171071823608124],[125,103,74,0.007751924914601565],[125,103,75,0.006389030410648347],[125,103,76,0.0051175584440749655],[125,103,77,0.0039695588177343375],[125,103,78,0.002973139308217843],[125,103,79,0.0021517862496586242],[125,104,64,0.015450369543503891],[125,104,65,0.01602572753051777],[125,104,66,0.01669836481775081],[125,104,67,0.016120615129354757],[125,104,68,0.015192532885655188],[125,104,69,0.014111692052227086],[125,104,70,0.012906676587086805],[125,104,71,0.011610666835945372],[125,104,72,0.010259829825051258],[125,104,73,0.00889183293300519],[125,104,74,0.0075444852936330355],[125,104,75,0.0062545109138278775],[125,104,76,0.005056457121089449],[125,104,77,0.003981741587590834],[125,104,78,0.003057840813404988],[125,104,79,0.002307622593533011],[125,105,64,0.01628629364210335],[125,105,65,0.016720805658624497],[125,105,66,0.01617418762389755],[125,105,67,0.015476182715815237],[125,105,68,0.014610666079070517],[125,105,69,0.013598759522113243],[125,105,70,0.012468412039907594],[125,105,71,0.011252020875722704],[125,105,72,0.009984848583511645],[125,105,73,0.008703563326062924],[125,105,74,0.007444906737977995],[125,105,75,0.0062444933179505654],[125,105,76,0.005135744949391173],[125,105,77,0.004148963784445777],[125,105,78,0.003310546366317608],[125,105,79,0.002642341511025143],[125,106,64,0.01640691590143446],[125,106,65,0.015998472143722058],[125,106,66,0.015505744565577689],[125,106,67,0.014870396563853838],[125,106,68,0.014076148111352285],[125,106,69,0.013143610831327555],[125,106,70,0.012099914300815041],[125,106,71,0.010976381679556432],[125,106,72,0.009806999658791298],[125,106,73,0.008627009793271169],[125,106,74,0.007471625451875259],[125,106,75,0.00637487826655114],[125,106,76,0.005368597602991337],[125,106,77,0.004481526221750292],[125,106,78,0.0037385749477887344],[125,106,79,0.0031602188221787307],[125,107,64,0.01568224574626988],[125,107,65,0.015323312543830294],[125,107,66,0.01488979387034304],[125,107,67,0.014323736412896143],[125,107,68,0.01360880599217275],[125,107,69,0.012765060399199649],[125,107,70,0.011818640267342227],[125,107,71,0.01079952642373522],[125,107,72,0.00974008799295018],[125,107,73,0.008673748294273727],[125,107,74,0.00763377260390924],[125,107,75,0.006652181511940697],[125,107,76,0.005758793262002796],[125,107,77,0.004980398121488423],[125,107,78,0.004340067494105713],[125,107,79,0.003856600157077719],[125,108,64,0.015009999294315077],[125,108,65,0.014705167895790648],[125,108,66,0.01433621391768091],[125,108,67,0.01384573980101454],[125,108,68,0.0132174653778524],[125,108,69,0.01247086174719594],[125,108,70,0.011630933565093815],[125,108,71,0.010726083713807677],[125,108,72,0.009786763072384493],[125,108,73,0.008844232810041082],[125,108,74,0.007929443042169946],[125,108,75,0.007072031366442889],[125,108,76,0.006299444474004405],[125,108,77,0.005636185710220467],[125,108,78,0.005103191143089468],[125,108,79,0.0047173363875310115],[125,109,64,0.014385301306153928],[125,109,65,0.014139606662630403],[125,109,66,0.013840649884622901],[125,109,67,0.013431764758417838],[125,109,68,0.012896843226684118],[125,109,69,0.012254752481775842],[125,109,70,0.01152924390951882],[125,109,71,0.010746948245774886],[125,109,72,0.00993614797033295],[125,109,73,0.009125655410193103],[125,109,74,0.00834380009863519],[125,109,75,0.007617528637709224],[125,109,76,0.006971620013176211],[125,109,77,0.006428019014453615],[125,109,78,0.006005290119854742],[125,109,79,0.00571819392151848],[125,110,64,0.013785168539960159],[125,110,65,0.013604188110734676],[125,110,66,0.013380869534624674],[125,110,67,0.013059461371387715],[125,110,68,0.012624159572432056],[125,110,69,0.01209323139737706],[125,110,70,0.011489094334628532],[125,110,71,0.010836461726548249],[125,110,72,0.010161255506460496],[125,110,73,0.009489616509702984],[125,110,74,0.008847015557709802],[125,110,75,0.008257468242646901],[125,110,76,0.007742856069120773],[125,110,77,0.007322356340794077],[125,110,78,0.007011982915281878],[125,110,79,0.006824239692464287],[125,111,64,0.013164804215710027],[125,111,65,0.01305448866503127],[125,111,66,0.012912717276534676],[125,111,67,0.012684867017232803],[125,111,68,0.012355595244129906],[125,111,69,0.0119425987995897],[125,111,70,0.011466914563655744],[125,111,71,0.010951232746358935],[125,111,72,0.01041896492879859],[125,111,73,0.009893400497090676],[125,111,74,0.009396954274491748],[125,111,75,0.00895050791573192],[125,111,76,0.008572847387139534],[125,111,77,0.008280198618193683],[125,111,78,0.008085863176432338],[125,111,79,0.007999955589979433],[125,112,64,0.012472988698127067],[125,112,65,0.012438346416433618],[125,112,66,0.012383626960147713],[125,112,67,0.012255635882725067],[125,112,68,0.012039697200377288],[125,112,69,0.011752986760300387],[125,112,70,0.011415117087082231],[125,112,71,0.011046636069903214],[125,112,72,0.010668265806384499],[125,112,73,0.010300219837054916],[125,112,74,0.009961601136314086],[125,112,75,0.009669883017122058],[125,112,76,0.009440474899242157],[125,112,77,0.009286374686206288],[125,112,78,0.009217909295796198],[125,112,79,0.009242564694340002],[125,113,64,0.011679060024800042],[125,113,65,0.011723608837806598],[125,113,66,0.01176042723402106],[125,113,67,0.011738118388793864],[125,113,68,0.011642912553371269],[125,113,69,0.011491526378368026],[125,113,70,0.011302104198128366],[125,113,71,0.011092919980148759],[125,113,72,0.010881802636382417],[125,113,73,0.010685629106735125],[125,113,74,0.010519887096812182],[125,113,75,0.010398309177940764],[125,113,76,0.010332579785209],[125,113,77,0.010332116480044751],[125,113,78,0.010403926679030312],[125,113,79,0.01055254089159423],[125,114,64,0.010773144086830647],[125,114,65,0.010898731401360566],[125,114,66,0.011030144324210452],[125,114,67,0.011118187548327033],[125,114,68,0.011150251181564381],[125,114,69,0.011142660767085567],[125,114,70,0.011112053753539243],[125,114,71,0.011074301388570127],[125,114,72,0.011044135044705321],[125,114,73,0.011034829285569736],[125,114,74,0.011057943030571513],[125,114,75,0.011123120038236239],[125,114,76,0.011237949792766553],[125,114,77,0.011407889746279208],[125,114,78,0.011636249741633367],[125,114,79,0.011924239318965234],[125,115,64,0.009762379917230552],[125,115,65,0.00996907080024446],[125,115,66,0.010196403009155697],[125,115,67,0.01039779159402595],[125,115,68,0.010562036394165943],[125,115,69,0.010705140835440215],[125,115,70,0.01084220596945403],[125,115,71,0.01098658671007888],[125,115,72,0.01114973155170524],[125,115,73,0.011341067780826374],[125,115,74,0.011567932981754512],[125,115,75,0.01183555353626667],[125,115,76,0.012147070719043713],[125,115,77,0.012503614896820454],[125,115,78,0.012904428250095166],[125,115,79,0.013347036352975161],[125,116,64,0.008667386803102917],[125,116,65,0.008953415904500394],[125,116,66,0.009276058535008323],[125,116,67,0.009591728024566584],[125,116,68,0.009890864762776577],[125,116,69,0.010189215267727418],[125,116,70,0.010500326828162742],[125,116,71,0.010834949320430068],[125,116,72,0.011201097696824171],[125,116,73,0.011604148696731178],[125,116,74,0.012046971999175288],[125,116,75,0.01253009597160419],[125,116,76,0.013051908109857884],[125,116,77,0.013608890208967231],[125,116,78,0.014195888254392167],[125,116,79,0.014806416979223075],[125,117,64,0.007518977282292915],[125,117,65,0.007880760545648626],[125,117,66,0.00829606354942867],[125,117,67,0.008724643074637594],[125,117,68,0.009158778991785828],[125,117,69,0.009614018373711819],[125,117,70,0.010102351501009138],[125,117,71,0.010631866666918316],[125,117,72,0.011207041192974401],[125,117,73,0.011829055556061506],[125,117,74,0.012496130248367772],[125,117,75,0.013203884964870141],[125,117,76,0.013945719690872535],[125,117,77,0.01471321724529847],[125,117,78,0.01549656682435081],[125,117,79,0.01628500808525734],[125,118,64,0.0063551197926231765],[125,118,65,0.006787321934434078],[125,118,66,0.007290573848301425],[125,118,67,0.007828260340608902],[125,118,68,0.008394657438888389],[125,118,69,0.009005159238662656],[125,118,70,0.009670210971052843],[125,118,71,0.010395219906384964],[125,118,72,0.011181076612822666],[125,118,73,0.01202468854563098],[125,118,74,0.012919524987413585],[125,118,75,0.013856172368758995],[125,118,76,0.014822899013527053],[125,118,77,0.015806228373844346],[125,118,78,0.016791519846995718],[125,118,79,0.017419327763423642],[125,119,64,0.005218154468061019],[125,119,65,0.005713808244773492],[125,119,66,0.006298296463734165],[125,119,67,0.0069388420363170715],[125,119,68,0.007631823652217415],[125,119,69,0.008392515373829618],[125,119,70,0.009229844830084984],[125,119,71,0.010146558758771485],[125,119,72,0.011139971949827467],[125,119,73,0.012202718227104682],[125,119,74,0.01332350189507947],[125,119,75,0.014487848120512197],[125,119,76,0.015678850769264115],[125,119,77,0.01687791627553513],[125,119,78,0.01710356375716558],[125,119,79,0.016013085411630983],[125,120,64,0.004152265320567302],[125,120,65,0.004702938643077385],[125,120,66,0.005360083372514635],[125,120,67,0.006094886112162441],[125,120,68,0.0069058790606127615],[125,120,69,0.0078082338527693555],[125,120,70,0.008809403027752277],[125,120,71,0.009909534089287365],[125,120,72,0.011102439246502085],[125,120,73,0.012376557531788648],[125,120,74,0.013715907146994675],[125,120,75,0.015101025965083672],[125,120,76,0.016509898197972814],[125,120,77,0.017231276063330716],[125,120,78,0.015915620836211255],[125,120,79,0.014646572145632029],[125,121,64,0.003201211808403732],[125,121,65,0.003797218805343382],[125,121,66,0.004516773871379675],[125,121,67,0.00533506224488801],[125,121,68,0.006252761737954005],[125,121,69,0.007284942716931458],[125,121,70,0.008437639165472225],[125,121,71,0.009708500567344699],[125,121,72,0.011087971340632014],[125,121,73,0.012560453742182785],[125,121,74,0.014105451547977288],[125,121,75,0.01569869192076214],[125,121,76,0.017313222990662003],[125,121,77,0.016277818312001015],[125,121,78,0.014777066484696419],[125,121,79,0.013339407305474674],[125,122,64,0.002406322570872952],[125,122,65,0.0030369747442824118],[125,122,66,0.003807288448562562],[125,122,67,0.004696389494639709],[125,122,68,0.005707033960905192],[125,122,69,0.006854175244707674],[125,122,70,0.008142497754194178],[125,122,71,0.009567291595466008],[125,122,72,0.011115826646828074],[125,122,73,0.012768702053983588],[125,122,74,0.014501167946062488],[125,122,75,0.016284416304904327],[125,122,76,0.017085626254312654],[125,122,77,0.015370463195995509],[125,122,78,0.013700873108632999],[125,122,79,0.012109758552037175],[125,123,64,0.001804753905466771],[125,123,65,0.0024586475648889373],[125,123,66,0.003266976779791228],[125,123,67,0.004212658229865934],[125,123,68,0.005300401091536071],[125,123,69,0.006545009501462383],[125,123,70,0.00794989769263132],[125,123,71,0.009508168556183333],[125,123,72,0.011204163765671345],[125,123,73,0.013014982209737801],[125,123,74,0.01491196307620351],[125,123,75,0.01686213008664113],[125,123,76,0.01638846709235629],[125,123,77,0.014515465078405189],[125,123,78,0.01269828254578366],[125,123,79,0.010973659323383105],[125,124,64,0.0014280153758906148],[125,124,65,0.0020933515789980646],[125,124,66,0.002926222290914062],[125,124,67,0.003913098739020344],[125,124,68,0.00506046414183951],[125,124,69,0.006382925423650217],[125,124,70,0.00788271407113356],[125,124,71,0.00955094628931823],[125,124,72,0.011369327595633345],[125,124,73,0.013311819599342807],[125,124,74,0.015346264908901175],[125,124,75,0.017435966285871095],[125,124,76,0.0157217425139282],[125,124,77,0.013717544215700452],[125,124,78,0.01177837323990433],[125,124,79,0.00994438846390881],[125,125,64,0.001300764768193683],[125,125,65,0.001965698037271417],[125,125,66,0.0028093055584319827],[125,125,67,0.003821298780699332],[125,125,68,0.005009708215986296],[125,125,69,0.006388881537838762],[125,125,70,0.00795996026576334],[125,125,71,0.00971229658585931],[125,125,72,0.011625288513854958],[125,125,73,0.013670172133007955],[125,125,74,0.01581176651114123],[125,125,75,0.017218564079800176],[125,125,76,0.015084795448181166],[125,125,77,0.012979647344080714],[125,125,78,0.010947658445948746],[125,125,79,0.009031912917416333],[125,126,64,0.0014398744570950064],[125,126,65,0.0020928865805608225],[125,126,66,0.0029335286632645465],[125,126,67,0.00395437217063608],[125,126,68,0.0051647288781218464],[125,126,69,0.006578613275178002],[125,126,70,0.008196172157277451],[125,126,71,0.010005231367854178],[125,126,72,0.011983236090674297],[125,126,73,0.014099144109085705],[125,126,74,0.016315267363948976],[125,126,75,0.01668223797715489],[125,126,76,0.014475911129940466],[125,126,77,0.012302706881999257],[125,126,78,0.01020971591030135],[125,126,79,0.008242394317165258],[125,127,64,0.001853771105438367],[125,127,65,0.0024840663716053464],[125,127,66,0.0033086024719752383],[125,127,67,0.00432238036479646],[125,127,68,0.0055356983585339945],[125,127,69,0.006962154713525047],[125,127,70,0.008600996190550715],[125,127,71,0.010438767116258692],[125,127,72,0.012451328709470232],[125,127,73,0.014605828222322608],[125,127,74,0.01686261302258579],[125,127,75,0.016136158725916706],[125,127,76,0.013892175084035238],[125,127,77,0.011685398807369156],[125,127,78,0.009564849438968322],[125,127,79,0.00757776025052988],[125,128,64,0.0025420504964878553],[125,128,65,0.003139968742487675],[125,128,66,0.003936298693402503],[125,128,67,0.004928008872665935],[125,128,68,0.006126073389105843],[125,128,69,0.007543585463050892],[125,128,70,0.009178982881519518],[125,128,71,0.011017772010566293],[125,128,72,0.013034600377969701],[125,128,73,0.015195276787611971],[125,128,74,0.01745873395196288],[125,128,75,0.015575668054297888],[125,128,76,0.013329296399432658],[125,128,77,0.01112389926055474],[125,128,78,0.009009782736791417],[125,128,79,0.007035340923096697],[125,129,64,0.00349536919147161],[125,129,65,0.004052813083200008],[125,129,66,0.004810368447185443],[125,129,67,0.005766500223684688],[125,129,68,0.006932546350122475],[125,129,69,0.008321004306740976],[125,129,70,0.00992958728099358],[125,129,71,0.011742997155292655],[125,129,72,0.013735025939672612],[125,129,73,0.015870603190267226],[125,129,74,0.017203209914990376],[125,129,75,0.014995700806633882],[125,129,76,0.01278139604024405],[125,129,77,0.01061163991666917],[125,129,78,0.00853738587216568],[125,129,79,0.006607571896904814],[125,130,64,0.004695614613422243],[125,130,65,0.005206487602086352],[125,130,66,0.005916728984085835],[125,130,67,0.0068258451127374544],[125,130,68,0.007945241314787804],[125,130,69,0.00928673111481986],[125,130,70,0.010847377817752113],[125,130,71,0.012611293189086027],[125,130,72,0.014551745824544002],[125,130,73,0.0166332145162384],[125,130,74,0.016536938389514883],[125,130,75,0.014390540426064132],[125,130,76,0.012240759951432178],[125,130,77,0.010139062162918114],[125,130,78,0.008136434694444776],[125,130,79,0.006281763530086642],[125,131,64,0.006116355083027812],[125,131,65,0.006577006509927662],[125,131,66,0.007233920116389578],[125,131,67,0.008087233267742211],[125,131,68,0.009148156495342313],[125,131,69,0.010427738471900516],[125,131,70,0.011922454867323993],[125,131,71,0.01361601350248718],[125,131,72,0.015481451416720847],[125,131,73,0.017483176264667964],[125,131,74,0.015810189514265157],[125,131,75,0.013753505413899117],[125,131,76,0.011697556726039043],[125,131,77,0.009693370108742971],[125,131,78,0.0077914035052224695],[125,131,79,0.006039937700448593],[125,132,64,0.007723446070461497],[125,132,65,0.008133111682926863],[125,132,66,0.008733690376983192],[125,132,67,0.009525616052210679],[125,132,68,0.01051969715115823],[125,132,69,0.011726149378603206],[125,132,70,0.013140908202668613],[125,132,71,0.014747426766837875],[125,132,72,0.016518748303335915],[125,132,73,0.016918844238354803],[125,132,74,0.015019506468609042],[125,132,75,0.013076757285917841],[125,132,76,0.011139709433305181],[125,132,77,0.00925846911446225],[125,132,78,0.007482472696257151],[125,132,79,0.005858906482998634],[125,133,64,0.009456124482521769],[125,133,65,0.009815949545936712],[125,133,66,0.010359277429002337],[125,133,67,0.011086588401362719],[125,133,68,0.012008160227012787],[125,133,69,0.013133358148857126],[125,133,70,0.014457647137722546],[125,133,71,0.015964372537994306],[125,133,72,0.017626798042532796],[125,133,73,0.01596532334333281],[125,133,74,0.014192108777447565],[125,133,75,0.012382318671789797],[125,133,76,0.010583889601668554],[125,133,77,0.008845605016256862],[125,133,78,0.007215469753426754],[125,133,79,0.005739167992106789],[125,134,64,0.01121482174148742],[125,134,65,0.011525236380169652],[125,134,66,0.012009964596480197],[125,134,67,0.012669336491235781],[125,134,68,0.013513059411462514],[125,134,69,0.01454973970973928],[125,134,70,0.01577453329256408],[125,134,71,0.017170896909726334],[125,134,72,0.016606633136637575],[125,134,73,0.015046468658821404],[125,134,74,0.01341281680406064],[125,134,75,0.011749724022914432],[125,134,76,0.010103597727694837],[125,134,77,0.008521547709774096],[125,134,78,0.007049807257120217],[125,134,79,0.005732237680173458],[125,135,64,0.01290945321593581],[125,135,65,0.013170108799665821],[125,135,66,0.013594429682201639],[125,135,67,0.014182455448523144],[125,135,68,0.014943361257367798],[125,135,69,0.015885177236098554],[125,135,70,0.017002987451598874],[125,135,71,0.016978332982442366],[125,135,72,0.015662007209731415],[125,135,73,0.014242048718337117],[125,135,74,0.012756976358293344],[125,135,75,0.011249169263948405],[125,135,76,0.00976318811360885],[125,135,77,0.008344171528911135],[125,135,78,0.007036311480973079],[125,135,79,0.005881411318645505],[125,136,64,0.014465953712592858],[125,136,65,0.014675966322676393],[125,136,66,0.015037871319231256],[125,136,67,0.015551338795680169],[125,136,68,0.016225115266316318],[125,136,69,0.017066902885695453],[125,136,70,0.017122777365842667],[125,136,71,0.016068398979041932],[125,136,72,0.014888350495153298],[125,136,73,0.013614071762438267],[125,136,74,0.012282330399397355],[125,136,75,0.010933537533527587],[125,136,76,0.009610133124262217],[125,136,77,0.008355044844561352],[125,136,78,0.00721022426128542],[125,136,79,0.006215263811771256],[125,137,64,0.015826842089580365],[125,137,65,0.01598495142921224],[125,137,66,0.016282386426653382],[125,137,67,0.01671843156008628],[125,137,68,0.0173015607863544],[125,137,69,0.017087306520837387],[125,137,70,0.01630027608689164],[125,137,71,0.015374920921245806],[125,137,72,0.014334155398801306],[125,137,73,0.013207633991843434],[125,137,74,0.012030078396372618],[125,137,75,0.010839667614993734],[125,137,76,0.009676495018002747],[125,137,77,0.008581096190114932],[125,137,78,0.007593051147038436],[125,137,79,0.0067496642748673145],[125,138,64,0.016952156197338787],[125,138,65,0.017056795825290696],[125,138,66,0.017287706596028754],[125,138,67,0.01730470158628314],[125,138,68,0.016921413007996912],[125,138,69,0.01639438088330472],[125,138,70,0.015726927801320404],[125,138,71,0.014932136363046451],[125,138,72,0.014031156072071905],[125,138,73,0.013051561311639207],[125,138,74,0.012025764589147888],[125,138,75,0.010989489048256265],[125,138,76,0.009980304057487222],[125,138,77,0.009036227483371372],[125,138,78,0.008194398046642435],[125,138,79,0.0074898209428245635],[125,139,64,0.016824466972623263],[125,139,65,0.01688886606809903],[125,139,66,0.0168380602646101],[125,139,67,0.016673360187687575],[125,139,68,0.016386238020741253],[125,139,69,0.01596817616420966],[125,139,70,0.01542131182985987],[125,139,71,0.014757052529868198],[125,139,72,0.013994486965110995],[125,139,73,0.013158842520572782],[125,139,74,0.012279993270518957],[125,139,75,0.011391022230210147],[125,139,76,0.010526841415237636],[125,139,77,0.009722873084687854],[125,139,78,0.009013795351186439],[125,139,79,0.008432355140329136],[125,140,64,0.016242482880202018],[125,140,65,0.016365128863433654],[125,140,66,0.016385919201292228],[125,140,67,0.01630626627832068],[125,140,68,0.016117265365465244],[125,140,69,0.015809502074492852],[125,140,70,0.015383623464652493],[125,140,71,0.014849069403611258],[125,140,72,0.014222598013298397],[125,140,73,0.013526851976486677],[125,140,74,0.0127889692886802],[125,140,75,0.01203924189166486],[125,140,76,0.011309825467558291],[125,140,77,0.010633503505928309],[125,140,78,0.010042508582310634],[125,140,79,0.009567403605037793],[125,141,64,0.015895862265833588],[125,141,65,0.016079740615314038],[125,141,66,0.016175090647253806],[125,141,67,0.016183257987687123],[125,141,68,0.01609473300842282],[125,141,69,0.01589892818799635],[125,141,70,0.015594723901875886],[125,141,71,0.015189327715131373],[125,141,72,0.014696924398574571],[125,141,73,0.014137359834563826],[125,141,74,0.013534862040779801],[125,141,75,0.012916802412178076],[125,141,76,0.012312500144440353],[125,141,77,0.011752072657021825],[125,141,78,0.01126533468097262],[125,141,79,0.010880748516755067],[125,142,64,0.015737669868259318],[125,142,65,0.015986760106816125],[125,142,66,0.01616069615200417],[125,142,67,0.016260581187591647],[125,142,68,0.01627609398834796],[125,142,69,0.016195238263041364],[125,142,70,0.016014886773213693],[125,142,71,0.015739779685086448],[125,142,72,0.015381308872325266],[125,142,73,0.014956328009101306],[125,142,74,0.014485991289115747],[125,142,75,0.013994623500473166],[125,142,76,0.01350862407225895],[125,142,77,0.013055407586702893],[125,142,78,0.012662383121390858],[125,142,79,0.01235597464962236],[125,143,64,0.015704321641462706],[125,143,65,0.016023579868524925],[125,143,66,0.01628127145686412],[125,143,67,0.016478086190280686],[125,143,68,0.016602713775680598],[125,143,69,0.01664155864826219],[125,143,70,0.01658928091979228],[125,143,71,0.016447944352065893],[125,143,72,0.016225944763221],[125,143,73,0.015936955098088745],[125,143,74,0.015598889570377542],[125,143,75,0.01523288920300315],[125,143,76,0.014862331003693849],[125,143,77,0.014511862916275481],[125,143,78,0.014206466584103256],[125,143,79,0.013970549851284717],[125,144,64,0.015758686497859775],[125,144,65,0.01615251904421449],[125,144,66,0.016498557008196177],[125,144,67,0.01679687832818316],[125,144,68,0.017035009229111685],[125,144,69,0.017197590239191086],[125,144,70,0.017276887758526985],[125,144,71,0.01727210180910547],[125,144,72,0.017188448485896773],[125,144,73,0.017036248885678274],[125,144,74,0.016830026457397732],[125,144,75,0.01658761466268576],[125,144,76,0.016329276772790096],[125,144,77,0.016076839558731425],[125,144,78,0.01585284255501212],[125,144,79,0.015679704493882878],[125,145,64,0.015876260415394243],[125,145,65,0.016347988655806694],[125,145,66,0.0167857653128032],[125,145,67,0.01718882629393385],[125,145,68,0.017543361508750455],[125,145,69,0.017550188543516806],[125,145,70,0.01744342245676069],[125,145,71,0.01741447218791388],[125,145,72,0.01746147700979882],[125,145,73,0.01757763374977759],[125,145,74,0.017751958960450953],[125,145,75,0.017970053017953],[125,145,76,0.017866243165462373],[125,145,77,0.01770564360574829],[125,145,78,0.017555478239307188],[125,145,79,0.017436223515939056],[125,146,64,0.016036304968133158],[125,146,65,0.016588064017152484],[125,146,66,0.0171196548881353],[125,146,67,0.017565644283074985],[125,146,68,0.017203951563556478],[125,146,69,0.016896767261746885],[125,146,70,0.01665704727354828],[125,146,71,0.016491771809617747],[125,146,72,0.01640252724992775],[125,146,73,0.01638610509629636],[125,146,74,0.01643511711174893],[125,146,75,0.01653862573260856],[125,146,76,0.016682788842172037],[125,146,77,0.01685151800410948],[125,146,78,0.01702714926963915],[125,146,79,0.01719112569535648],[125,147,64,0.016221321386790385],[125,147,65,0.016853995871782608],[125,147,66,0.01748008521562969],[125,147,67,0.017129226496926005],[125,147,68,0.016650638858682457],[125,147,69,0.016218070586892792],[125,147,70,0.015847209080447473],[125,147,71,0.015548247882519144],[125,147,72,0.015326289115010319],[125,147,73,0.01518177627848969],[125,147,74,0.015110957068841222],[125,147,75,0.015106375827406874],[125,147,76,0.015157395212269106],[125,147,77,0.015250746655111117],[125,147,78,0.015371109151357469],[125,147,79,0.015501715921563996],[125,148,64,0.016416582823127645],[125,148,65,0.017129778484047183],[125,148,66,0.017293394005337748],[125,148,67,0.016685126817409225],[125,148,68,0.01609172733541366],[125,148,69,0.015536628338731852],[125,148,70,0.015038272959116663],[125,148,71,0.014610092201227975],[125,148,72,0.014260722439043574],[125,148,73,0.013994267377949565],[125,148,74,0.013810604720059582],[125,148,75,0.013705737703225125],[125,148,76,0.013672191621805371],[125,148,77,0.013699455380405635],[125,148,78,0.013774468081270131],[125,148,79,0.013882150602614314],[125,149,64,0.016609725224107023],[125,149,65,0.01740177509269048],[125,149,66,0.01696036160025558],[125,149,67,0.01624997923305212],[125,149,68,0.015545523549551936],[125,149,69,0.01487249135012958],[125,149,70,0.014252056436908701],[125,149,71,0.013700859509255514],[125,149,72,0.013231037193787064],[125,149,73,0.012850310313549678],[125,149,74,0.012562132237715308],[125,149,75,0.012365898052653267],[125,149,76,0.01225721519881889],[125,149,77,0.012228236126638379],[125,149,78,0.012268053439522374],[125,149,79,0.012363157914371122],[125,150,64,0.016790397210052203],[125,150,65,0.017429850018455168],[125,150,66,0.01664636965720877],[125,150,67,0.01583825643666015],[125,150,68,0.015028091226615843],[125,150,69,0.014243366973364363],[125,150,70,0.013507913517491223],[125,150,71,0.012841501130889079],[125,150,72,0.012259679728811935],[125,150,73,0.01177369258232329],[125,150,74,0.011390465986451702],[125,150,75,0.011112676205154003],[125,150,76,0.010938894883431203],[125,150,77,0.01086381399097141],[125,150,78,0.010878551241835486],[125,150,79,0.010971036822297296],[125,151,64,0.01694996934300955],[125,151,65,0.01722901645909729],[125,151,66,0.01636251939414677],[125,151,67,0.015462449976086635],[125,151,68,0.014553386468088542],[125,151,69,0.013664707320121008],[125,151,70,0.012822775593592102],[125,151,71,0.012050359973762732],[125,151,72,0.011366285094420198],[125,151,73,0.010785171907564181],[125,151,74,0.010317270169710695],[125,151,75,0.009968384948624147],[125,151,76,0.009739898889345754],[125,151,77,0.00962889181786884],[125,151,78,0.009628359106319337],[125,151,79,0.009727530076657895],[125,152,64,0.017081303167063997],[125,152,65,0.017061766141706996],[125,152,66,0.016118199538848375],[125,152,67,0.015133195969659709],[125,152,68,0.014133341634576439],[125,152,69,0.013149749881230363],[125,152,70,0.012211148907685411],[125,152,71,0.011343126591305961],[125,152,72,0.010567595162790827],[125,152,73,0.00990236153756111],[125,152,74,0.00936080598663527],[125,152,75,0.008951671628356347],[125,152,76,0.008678967023829287],[125,152,77,0.008541983964498429],[125,152,78,0.008535432351816974],[125,152,79,0.00864969388834079],[125,153,64,0.017178580401585465],[125,153,65,0.016934869660576845],[125,153,66,0.015921193903628162],[125,153,67,0.014859346007248251],[125,153,68,0.013777897536988005],[125,153,69,0.012709510172140805],[125,153,70,0.011685068225663262],[125,153,71,0.010732755992692924],[125,153,72,0.009877342260297154],[125,153,73,0.009139585935102232],[125,153,74,0.00853576606764625],[125,153,75,0.008077339319621457],[125,153,76,0.007770727689182641],[125,153,77,0.007617239082256007],[125,153,78,0.007613123096425901],[125,153,79,0.007749764170689912],[125,154,64,0.017237192671254096],[125,154,65,0.016853727229114854],[125,154,66,0.0157777313576012],[125,154,67,0.014647982855486621],[125,154,68,0.013494983564236729],[125,154,69,0.012352726047215781],[125,154,70,0.011254006385235887],[125,154,71,0.010229344884101823],[125,154,72,0.009306098019559844],[125,154,73,0.008507706592933761],[125,154,74,0.007853083951454613],[125,154,75,0.007356147864193104],[125,154,76,0.007025499382546816],[125,154,77,0.00686425175570819],[125,154,78,0.006870012218838075],[125,154,79,0.007035019227251332],[125,155,64,0.01725369216325705],[125,155,65,0.016822390848869787],[125,155,66,0.015692477804197667],[125,155,67,0.01450438057993201],[125,155,68,0.013290445370295336],[125,155,69,0.012085753320235409],[125,155,70,0.010924739374940099],[125,155,71,0.009839969019004446],[125,155,72,0.008861087153435651],[125,155,73,0.008013917703711494],[125,155,74,0.007319718359387643],[125,155,75,0.006794594554110387],[125,155,76,0.006449076503868224],[125,155,77,0.006287862833424918],[125,155,78,0.006309734038754153],[125,155,79,0.006507638759660201],[125,156,64,0.017225803612288544],[125,156,65,0.016843526377090107],[125,156,66,0.015668469762296595],[125,156,67,0.01443190868794441],[125,156,68,0.013167919734728353],[125,156,69,0.011912412319984201],[125,156,70,0.01070116659126605],[125,156,71,0.00956848032689301],[125,156,72,0.008545965844846364],[125,156,73,0.007661511404703174],[125,156,74,0.006938412014680524],[125,156,75,0.006394674237888083],[125,156,76,0.006042499274032102],[125,156,77,0.005887948277808525],[125,156,78,0.005930793565931057],[125,156,79,0.006164559064122981],[125,157,64,0.017152498027898398],[125,157,65,0.016918315076965052],[125,157,66,0.015706989136566235],[125,157,67,0.014431879883809824],[125,157,68,0.013128656199058055],[125,157,69,0.011833784998488407],[125,157,70,0.010584085910488332],[125,157,71,0.0094152634792737],[125,157,72,0.008360564436089745],[125,157,73,0.0074496123075504725],[125,157,74,0.0067074247447853255],[125,157,75,0.006153618615209462],[125,157,76,0.0058018075565436965],[125,157,77,0.005659196353100297],[125,157,78,0.005726376160397923],[125,157,79,0.00599732427905844],[125,158,64,0.017034128596301306],[125,158,65,0.017046294217811366],[125,158,66,0.015807378746370823],[125,158,67,0.01450334101208552],[125,158,68,0.013171285066491487],[125,158,69,0.011847962195340189],[125,158,70,0.010570923198332489],[125,158,71,0.009376951538937302],[125,158,72,0.008300594089069966],[125,158,73,0.00737288101181144],[125,158,74,0.00662024059380925],[125,158,75,0.006063614475911664],[125,158,76,0.005717778366730375],[125,158,77,0.00559087296229993],[125,158,78,0.005684149439067259],[125,158,79,0.005991933540496495],[125,159,64,0.01687262921000492],[125,159,65,0.01722513627205752],[125,159,66,0.015966798162978347],[125,159,67,0.014642806746378153],[125,159,68,0.013291531334695614],[125,159,69,0.011949740644655682],[125,159,70,0.010655415864660645],[125,159,71,0.009446100323497228],[125,159,72,0.008357317073780427],[125,159,73,0.007421186287818449],[125,159,74,0.006665248659955437],[125,159,75,0.006111500627840367],[125,159,76,0.005775646842300314],[125,159,77,0.005666574934813934],[125,159,78,0.005786057256421079],[125,159,79,0.006128683895841833],[125,160,64,0.01667177610346785],[125,160,65,0.01745036623193495],[125,160,66,0.016179919381776806],[125,160,67,0.014843935558768537],[125,160,68,0.013481874110453531],[125,160,69,0.012130269291558174],[125,160,70,0.010827250051922708],[125,160,71,0.009610821096967691],[125,160,72,0.00851718032637162],[125,160,73,0.007579245599611694],[125,160,74,0.006825397359313568],[125,160,75,0.006278443245921306],[125,160,76,0.005954810438236258],[125,160,77,0.00586397105726862],[125,160,78,0.006008105579179427],[125,160,79,0.006382008820600878],[125,161,64,0.016437513101413958],[125,161,65,0.0177150165413505],[125,161,66,0.01643856182981787],[125,161,67,0.015097147479909754],[125,161,68,0.013731151031206078],[125,161,69,0.012376644462698932],[125,161,70,0.011071651025235996],[125,161,71,0.009854371183785095],[125,161,72,0.008761411900289293],[125,161,73,0.007826233622391357],[125,161,74,0.007077821802582782],[125,161,75,0.006539589361621245],[125,161,76,0.006228516097478343],[125,161,77,0.006154530630132081],[125,161,78,0.006320140066909207],[125,161,79,0.006720312176693084],[125,162,64,0.01617834101840343],[125,162,65,0.017466947865322213],[125,162,66,0.01673126617933389],[125,162,67,0.015389183131522289],[125,162,68,0.01402410719174975],[125,162,69,0.012671453410289692],[125,162,70,0.01136892630868474],[125,162,71,0.010154702078208745],[125,162,72,0.009065579914324188],[125,162,73,0.008135358391124045],[125,162,74,0.007393443955353557],[125,162,75,0.006863698197896019],[125,162,76,0.006563530136700157],[125,162,77,0.006503239322630451],[125,162,78,0.006685615162446024],[125,162,79,0.007105797445058827],[125,163,64,0.015905771783665274],[125,163,65,0.01719141712606788],[125,163,66,0.01704280640496809],[125,163,67,0.01570260348164326],[125,163,68,0.014340888044776675],[125,163,69,0.012992265721478043],[125,163,70,0.011693961086828712],[125,163,71,0.010483964598530996],[125,163,72,0.009399113580033],[125,163,73,0.008473404697696734],[125,163,74,0.007736545235485846],[125,163,75,0.007212750039804552],[125,163,76,0.006919790573762965],[125,163,77,0.006868302087966127],[125,163,78,0.0070613544878256095],[125,163,79,0.007494292059476217],[125,164,64,0.015635224992646184],[125,164,65,0.01691746809346664],[125,164,66,0.017353585709451096],[125,164,67,0.01601534744224234],[125,164,68,0.014656765843623585],[125,164,69,0.013311533496600617],[125,164,70,0.012016293048072156],[125,164,71,0.010808754111299305],[125,164,72,0.009725708484012307],[125,164,73,0.008801282640688834],[125,164,74,0.008065435003946471],[125,164,75,0.007542705061404084],[125,164,76,0.0072512209529480166],[125,164,77,0.007201971712851541],[125,164,78,0.007398349915618719],[125,164,79,0.007835970047949644],[125,165,64,0.015386712011661422],[125,165,65,0.016666171377448347],[125,165,66,0.017641314676373678],[125,165,67,0.016303676423619354],[125,165,68,0.014946365938800025],[125,165,69,0.013602101579908528],[125,165,70,0.012306882229386269],[125,165,71,0.011098078974950826],[125,165,72,0.0100123892377193],[125,165,73,0.009084033245039388],[125,165,74,0.008343200531111705],[125,165,75,0.007814753703564421],[125,165,76,0.007517196266064766],[125,165,77,0.007461910839644797],[125,165,78,0.007652673682722781],[125,165,79,0.008085450976087647],[125,166,64,0.01517772458582039],[125,166,65,0.016455547540895815],[125,166,66,0.017848845927083412],[125,166,67,0.016548123110263536],[125,166,68,0.015189235800847915],[125,166,69,0.013842414946059743],[125,166,70,0.012542990317417933],[125,166,71,0.01132796465637218],[125,166,72,0.010233912949436999],[125,166,73,0.009295128272867222],[125,166,74,0.00854202203959801],[125,166,75,0.007999786031542921],[125,166,76,0.007687323147240129],[125,166,77,0.0076164533421286965],[125,166,78,0.007791400790514828],[125,166,79,0.008208567858882873],[125,167,64,0.01502141974103493],[125,167,65,0.016299233276659383],[125,167,66,0.01769573496741508],[125,167,67,0.01673379869434874],[125,167,68,0.015369641304864876],[125,167,69,0.014015813995797164],[125,167,70,0.012706996413964434],[125,167,71,0.011479827837486812],[125,167,72,0.010370759167483307],[125,167,73,0.009414154772859258],[125,167,74,0.008640652138046887],[125,167,75,0.008075786810993532],[125,167,76,0.007738889692339101],[125,167,77,0.007642263250486624],[125,167,78,0.007790642795269687],[125,167,79,0.008180948499532568],[125,168,64,0.014927891703240163],[125,168,65,0.01620774038192483],[125,168,66,0.017610047010597905],[125,168,67,0.016849171941229448],[125,168,68,0.01547537671833816],[125,168,69,0.014109380686405297],[125,168,70,0.012785281931363567],[125,168,71,0.011539400443880108],[125,168,72,0.010408091474816828],[125,168,73,0.009425811032933858],[125,168,74,0.008623441556602805],[125,168,75,0.008026885337617565],[125,168,76,0.007655932817432748],[125,168,77,0.007523412418237328],[125,168,78,0.007634628117321781],[125,168,79,0.007987090527617277],[125,169,64,0.014905690254966353],[125,169,65,0.01618995831781436],[125,169,66,0.01760101951391428],[125,169,67,0.016884614567091963],[125,169,68,0.015496347747003586],[125,169,69,0.01411256603278817],[125,169,70,0.01276690694567512],[125,169,71,0.011495457073191816],[125,169,72,0.010334536250026803],[125,169,73,0.009318735166687738],[125,169,74,0.008479214482946335],[125,169,75,0.007842273070084381],[125,169,76,0.007428192548626298],[125,169,77,0.007250364830478424],[125,169,78,0.007314708920327538],[125,169,79,0.0076193827851831],[125,170,64,0.014963576000205231],[125,170,65,0.016254893730416244],[125,170,66,0.017677867705245973],[125,170,67,0.016830713301490545],[125,170,68,0.015422924848023758],[125,170,69,0.014015593065332043],[125,170,70,0.012642069091676679],[125,170,71,0.011338334133057033],[125,170,72,0.010140764481607627],[125,170,73,0.009084150280153885],[125,170,74,0.008199976118342158],[125,170,75,0.007514971095196465],[125,170,76,0.007049935527801177],[125,170,77,0.0068188510299609555],[125,170,78,0.006828280232262969],[125,170,79,0.007077061970350928],[125,171,64,0.01511251490503879],[125,171,65,0.016413649249864888],[125,171,66,0.017851741136130726],[125,171,67,0.016676346452737256],[125,171,68,0.015244064712052176],[125,171,69,0.013807633242391378],[125,171,70,0.012400343107429386],[125,171,71,0.011058238920288203],[125,171,72,0.009817875005011358],[125,171,73,0.008714324739408552],[125,171,74,0.007779451137504368],[125,171,75,0.007040446283218644],[125,171,76,0.0065186467755071606],[125,171,77,0.006228631892863801],[125,171,78,0.006177610735914739],[125,171,79,0.006365104165176537],[125,172,64,0.015367914669726668],[125,172,65,0.01668164406712881],[125,172,66,0.017829970390899785],[125,172,67,0.016406522624004098],[125,172,68,0.01494519765331514],[125,172,69,0.013474754161328116],[125,172,70,0.012028698991582107],[125,172,71,0.01064334673840137],[125,172,72,0.009355577407891367],[125,172,73,0.008200845946303376],[125,172,74,0.007211451633724529],[125,172,75,0.006415074899691282],[125,172,76,0.0058335886710159405],[125,172,77,0.005482150914679198],[125,172,78,0.005368584594117383],[125,172,79,0.00549305081993226],[125,173,64,0.015752105686508085],[125,173,65,0.017081078981705904],[125,173,66,0.017450605952067946],[125,173,67,0.015999979047183786],[125,173,68,0.014505878473707892],[125,173,69,0.012997636247506291],[125,173,70,0.011509296581560191],[125,173,71,0.01007768400586818],[125,173,72,0.008740172715164514],[125,173,73,0.0075327059071878585],[125,173,74,0.006488073019884886],[125,173,75,0.005634452340784394],[125,173,76,0.004994226021573967],[125,173,77,0.004583074089426071],[125,173,78,0.004409353607839157],[125,173,79,0.004473768707938646],[125,174,64,0.016297069545502724],[125,174,65,0.017643648816728374],[125,174,66,0.01690670879352156],[125,174,67,0.015426536810732102],[125,174,68,0.013897198183721917],[125,174,69,0.012349055926122605],[125,174,70,0.010817054195918566],[125,174,71,0.009338795153170428],[125,174,72,0.007952329822536358],[125,174,73,0.006694196748390277],[125,174,74,0.005597716237106699],[125,174,75,0.004691547552696662],[125,174,76,0.003998515998497774],[125,174,77,0.003534716382761448],[125,174,78,0.003308898933670395],[125,174,79,0.0033221433037527457],[125,175,64,0.017035596035903777],[125,175,65,0.017576996627407124],[125,175,66,0.016166563015811746],[125,175,67,0.014655497147723181],[125,175,68,0.01308984555991471],[125,175,69,0.01150149477663651],[125,175,70,0.009926676028563123],[125,175,71,0.008404050335106956],[125,175,72,0.00697253046589722],[125,175,73,0.005669348382672435],[125,175,74,0.0045283758223916126],[125,175,75,0.003578705260960815],[125,175,76,0.0028434980704954006],[125,175,77,0.0023391062551550565],[125,175,78,0.002074473725169115],[125,175,79,0.0020508226498411166],[125,176,64,0.017945771632910907],[125,176,65,0.016673853611828816],[125,176,66,0.015237332576653282],[125,176,67,0.013694330875192834],[125,176,68,0.012091613578455934],[125,176,69,0.01046305656634342],[125,176,70,0.008846539730123532],[125,176,71,0.007282040548966241],[125,176,72,0.00580949740773225],[125,176,73,0.004466915859651301],[125,176,74,0.0032887253386237824],[125,176,75,0.0023043934118223276],[125,176,76,0.0015373042442411455],[125,176,77,0.0010039075264440436],[125,176,78,7.131436988067038E-4],[125,176,79,6.66150894090951E-4],[125,177,64,0.016900562553560712],[125,177,65,0.01560532702875554],[125,177,66,0.014141836321322654],[125,177,67,0.012566210746399575],[125,177,68,0.010926017768684364],[125,177,69,0.009257541798650973],[125,177,70,0.007600630387464354],[125,177,71,0.005996797717280497],[125,177,72,0.004487140244246176],[125,177,73,0.0031104923758126443],[125,177,74,0.0019018295057127558],[125,177,75,8.909253238415617E-4],[125,177,76,1.0126990736368378E-4],[125,177,77,-4.50745312812668E-4],[125,177,78,-7.563700257618017E-4],[125,177,79,-8.14759673284817E-4],[125,178,64,0.015718474934252064],[125,178,65,0.014398841680724365],[125,178,66,0.012908012375212056],[125,178,67,0.01129967758328337],[125,178,68,0.009622261158689608],[125,178,69,0.007914822143231432],[125,178,70,0.006219446214094161],[125,178,71,0.004579361628904353],[125,178,72,0.003036918602408197],[125,178,73,0.0016318053253983598],[125,178,74,3.9950774081994186E-4],[125,178,75,-6.299802054287384E-4],[125,178,76,-0.0014331895234787604],[125,178,77,-0.001993946435833407],[125,178,78,-0.0023038744191823768],[125,178,79,-0.002362622913873789],[125,179,64,0.014430604303740756],[125,179,65,0.013086036813678568],[125,179,66,0.011568147473508207],[125,179,67,0.009927801387962865],[125,179,68,0.008214307551252523],[125,179,69,0.00646980602043781],[125,179,70,0.004738836833077608],[125,179,71,0.0030664720149803674],[125,179,72,0.001496370243202765],[125,179,73,6.906421118995393E-5],[125,179,74,-0.0011795124249760788],[125,179,75,-0.0022192520281452514],[125,179,76,-0.003026847790588284],[125,179,77,-0.003586510667573534],[125,179,78,-0.0038904231185614255],[125,179,79,-0.003938924724405738],[125,180,64,0.013071382973372842],[125,180,65,0.011701964922574018],[125,180,66,0.010158029390894706],[125,180,67,0.008487270633144108],[125,180,68,0.006739889971453993],[125,180,69,0.0049613486914883735],[125,180,70,0.0031987980391609064],[125,180,71,0.0014992318869117157],[125,180,72,-9.237192857255962E-5],[125,180,73,-0.0015346820863702416],[125,180,74,-0.0027914094630076096],[125,180,75,-0.003832461777266358],[125,180,76,-0.004634851341011887],[125,180,77,-0.005183350440998454],[125,180,78,-0.005470889255777403],[125,180,79,-0.005498691584423327],[125,181,64,0.011677728286067229],[125,181,65,0.010284209284142616],[125,181,66,0.008716021479765962],[125,181,67,0.007017408782863095],[125,181,68,0.005239453390824958],[125,181,69,0.0034311060270851325],[125,181,70,0.0016422222976329817],[125,181,71,-7.825850254333652E-5],[125,181,72,-0.0016840744637727952],[125,181,73,-0.003133179055038863],[125,181,74,-0.004389049708519751],[125,181,75,-0.005421761033809719],[125,181,76,-0.006208817070115558],[125,181,77,-0.006735737354830886],[125,181,78,-0.006996391953881444],[125,181,79,-0.006993080959527761],[125,182,64,0.01028810702979739],[125,182,65,0.00887191910910974],[125,182,66,0.0072820582453765005],[125,182,67,0.0055591170176001155],[125,182,68,0.0037550307586179817],[125,182,69,0.001922331056477136],[125,182,70,1.1360417100422218E-4],[125,182,71,-0.0016202977756467408],[125,182,72,-0.0032319101500229547],[125,182,73,-0.00467859173616079],[125,182,74,-0.005923737225397684],[125,182,75,-0.0069377606047763924],[125,182,76,-0.0076988441389684486],[125,182,77,-0.00819344799792356],[125,182,78,-0.008416575936345436],[125,182,79,-0.008371792778142234],[125,183,64,0.008941514798304184],[125,183,65,0.007504761121752571],[125,183,66,0.005896560804322404],[125,183,67,0.004153742058728147],[125,183,68,0.002329051295188298],[125,183,69,4.786123275573071E-4],[125,183,70,-0.0013423002019355575],[125,183,71,-0.003081010385052721],[125,183,72,-0.004688977601667217],[125,183,73,-0.006123121822404193],[125,183,74,-0.00734693197375164],[125,183,75,-0.008331352021212898],[125,183,76,-0.0090554397702408],[125,183,77,-0.009506793728370096],[125,183,78,-0.009681743711949152],[125,183,79,-0.009585301213833754],[125,184,64,0.007676368994230641],[125,184,65,0.006221786288621155],[125,184,66,0.004599270989215685],[125,184,67,0.002841867906925363],[125,184,68,0.0010030799259958013],[125,184,69,-8.574469632152219E-4],[125,184,70,-0.0026818605163517195],[125,184,71,-0.004415805229532463],[125,184,72,-0.006009834338433284],[125,184,73,-0.007420617185697619],[125,184,74,-0.008611936617055137],[125,184,75,-0.009555471394907863],[125,184,76,-0.010231358948508833],[125,184,77,-0.010628534109286198],[125,184,78,-0.010744839805261988],[125,184,79,-0.010586906006686903],[125,185,64,0.006529314081108237],[125,185,65,0.005060210330994542],[125,185,66,0.003428002777833983],[125,185,67,0.0016620302280556784],[125,185,68,-1.83513342168293E-4],[125,185,69,-0.0020456101840067333],[125,185,70,-0.003864007608089309],[125,185,71,-0.005582866809730962],[125,185,72,-0.007152044082941017],[125,185,73,-0.008528174394700931],[125,185,74,-0.009675552337778125],[125,185,75,-0.010566805795041238],[125,185,76,-0.011183357964340964],[125,185,77,-0.011515673707700538],[125,185,78,-0.011563286498846805],[125,185,79,-0.01133460254594781],[125,186,64,0.005533937601143844],[125,186,65,0.004054106567705852],[125,186,66,0.0024173096398925433],[125,186,67,6.493520385722489E-4],[125,186,68,-0.0011949553780104415],[125,186,69,-0.003049450008085873],[125,186,70,-0.004851717728494618],[125,186,71,-0.006544679860079509],[125,186,72,-0.008077739054634504],[125,186,73,-0.009407734818758342],[125,186,74,-0.010499704057638797],[125,186,75,-0.011327442322525432],[125,186,76,-0.011873861747167808],[125,186,77,-0.012131141958097034],[125,186,78,-0.012100670538450176],[125,186,79,-0.011792769912164255],[125,187,64,0.004719395386184301],[125,187,65,0.003233009546960431],[125,187,66,0.0015970663094947947],[125,187,67,-1.6590073869191774E-4],[125,187,68,-0.0020005445672042627],[125,187,69,-0.003837853935967053],[125,187,70,-0.005613546921750704],[125,187,71,-0.007269588447112043],[125,187,72,-0.008755198081986519],[125,187,73,-0.010027674948712944],[125,187,74,-0.011053035480452897],[125,187,75,-0.011806460069602561],[125,187,76,-0.012272544929587697],[125,187,77,-0.012445355777793895],[125,187,78,-0.012328280226563784],[125,187,79,-0.01193367604042329],[125,188,64,0.00410894430010215],[125,188,65,0.0026204278382206273],[125,188,66,9.90963406794715E-4],[125,188,67,-7.598453579032452E-4],[125,188,68,-0.002576199565316],[125,188,69,-0.004386593922315346],[125,188,70,-0.006125216699910754],[125,188,71,-0.007733390575836037],[125,188,72,-0.009160441395553873],[125,188,73,-0.010364391593903278],[125,188,74,-0.011312474391843826],[125,188,75,-0.011981465155315786],[125,188,76,-0.012357826575325971],[125,188,77,-0.01243766459750033],[125,188,78,-0.012226492292891307],[125,188,79,-0.011738799117153687],[125,189,64,0.0037183807628576727],[125,189,65,0.0022322642688398296],[125,189,66,6.149132491373342E-4],[125,189,67,-0.0011165915613147851],[125,189,68,-0.0029060836625111734],[125,189,69,-0.004679961497313525],[125,189,70,-0.006371252268966697],[125,189,71,-0.00792096939396927],[125,189,72,-0.009278843001199046],[125,189,73,-0.010403882638731763],[125,189,74,-0.011264768660490115],[125,189,75,-0.011840069023540813],[125,189,76,-0.012118278484429864],[125,189,77,-0.012097677437035005],[125,189,78,-0.011786007882509357],[125,189,79,-0.011199964261490081],[125,190,64,0.003554383220336769],[125,190,65,0.0020751418055732183],[125,190,66,4.753651105872407E-4],[125,190,67,-0.0012299357835137748],[125,190,68,-0.0029843063315650007],[125,190,69,-0.004712469836139544],[125,190,70,-0.0063466746143340845],[125,190,71,-0.007827962128340252],[125,190,72,-0.009106761565174057],[125,190,73,-0.01014332406111187],[125,190,74,-0.010907993389939584],[125,190,75,-0.011381310179253692],[125,190,76,-0.01155394696245061],[125,190,77,-0.011426471613437239],[125,190,78,-0.01100893694409013],[125,190,79,-0.010320294468714766],[125,191,64,0.003612756640488376],[125,191,65,0.0021446331991213288],[125,191,66,5.675281100478969E-4],[125,191,67,-0.0011051419884071684],[125,191,68,-0.0028167035988859233],[125,191,69,-0.004490624290829689],[125,191,70,-0.0060587478054517216],[125,191,71,-0.0074624679280059],[125,191,72,-0.00865319077030675],[125,191,73,-0.00959264392847291],[125,191,74,-0.01025302966801345],[125,191,75,-0.010617019520435592],[125,191,76,-0.010677587905268288],[125,191,77,-0.0104376826166005],[125,191,78,-0.009909730231634365],[125,191,79,-0.009114974708106563],[125,192,64,0.003876577036077961],[125,192,65,0.00242339243125404],[125,192,66,8.73499832878542E-4],[125,192,67,-7.608109491231584E-4],[125,192,68,-0.0024226989427351634],[125,192,69,-0.004034762955450764],[125,192,70,-0.00552878292618663],[125,192,71,-0.006846795824137702],[125,192,72,-0.007941430124793614],[125,192,73,-0.00877609409447988],[125,192,74,-0.00932501535222607],[125,192,75,-0.009573129397358195],[125,192,76,-0.009515815007867842],[125,192,77,-0.00915847462626075],[125,192,78,-0.008515958054034947],[125,192,79,-0.007611827971062228],[125,193,64,0.004314233938416278],[125,193,65,0.0028791859296875087],[125,193,66,0.0013602987198758742],[125,193,67,-2.30839847269962E-4],[125,193,68,-0.001837246482819438],[125,193,69,-0.0033809688874661087],[125,193,70,-0.004794000079764489],[125,193,71,-0.006019254046916158],[125,193,72,-0.007010777221639746],[125,193,73,-0.007733820320882894],[125,193,74,-0.008164768314253256],[125,193,75,-0.008290926497893853],[125,193,76,-0.00811016085386284],[125,193,77,-0.007630391073917782],[125,193,78,-0.006868934817852588],[125,193,79,-0.005851701958172548],[125,194,64,0.004877368675584468],[125,194,65,0.0034628214466154625],[125,194,66,0.001977798191563255],[125,194,67,4.3352587091689837E-4],[125,194,68,-0.001112858280141587],[125,194,69,-0.0025830556546912013],[125,194,70,-0.003909449953310179],[125,194,71,-0.0050359819639306845],[125,194,72,-0.005918242457067123],[125,194,73,-0.006523431543531016],[125,194,74,-0.0068301825440112915],[125,194,75,-0.006828248616815258],[125,194,76,-0.00651805058290734],[125,194,77,-0.005910084574246074],[125,194,78,-0.005024188310297355],[125,194,79,-0.003888664976571727],[125,195,64,0.005499379023681674],[125,195,65,0.004106669588296523],[125,195,66,0.002657279909919762],[125,195,67,0.0011622874363136641],[125,195,68,-3.20957213557089E-4],[125,195,69,-0.001713853424591396],[125,195,70,-0.0029492156292147548],[125,195,71,-0.003972048427908462],[125,195,72,-0.004739524089320218],[125,195,73,-0.005220832101764048],[125,195,74,-0.005396899090965882],[125,195,75,-0.005259977605786591],[125,195,76,-0.004813102455890871],[125,195,77,-0.004069413461104468],[125,195,78,-0.0030513436395789724],[125,195,79,-0.0017896720190342743],[125,196,64,0.006129374984942825],[125,196,65,0.004759815428807104],[125,196,66,0.0033476865613345508],[125,196,67,0.0019040157352285727],[125,196,68,4.864168457112186E-4],[125,196,69,-8.261939177908513E-4],[125,196,70,-0.0019670486111517107],[125,196,71,-0.002882205372850508],[125,196,72,-0.0035304133133043434],[125,196,73,-0.003882854559172993],[125,196,74,-0.003922762018306676],[125,196,75,-0.0036449116086787418],[125,196,76,-0.0030549878671184546],[125,196,77,-0.002168822019176856],[125,196,78,-0.001011501748155849],[125,196,79,3.836479525409389E-4],[125,197,64,0.006759727910385258],[125,197,65,0.005416067341741451],[125,197,66,0.004043998150101758],[125,197,67,0.0026545673527784528],[125,197,68,0.0013056054892164664],[125,197,69,7.622368301614961E-5],[125,197,70,-9.673176265197714E-4],[125,197,71,-0.0017721916999283488],[125,197,72,-0.0022987623354432246],[125,197,73,-0.0025202226051026315],[125,197,74,-0.002422114290213956],[125,197,75,-0.002001726986400697],[125,197,76,-0.0012673760118399931],[125,197,77,-2.375584082454495E-4],[125,197,78,0.0010600135291408456],[125,197,79,0.0025895016204855524],[125,198,64,0.007386901106905556],[125,198,65,0.006073081555517085],[125,198,66,0.00474477205334751],[125,198,67,0.0034130955065736226],[125,198,68,0.0021359665957610043],[125,198,69,9.924427278221004E-4],[125,198,70,4.8089710881181327E-5],[125,198,71,-6.45509004538761E-4],[125,198,72,-0.0010504075465996836],[125,198,73,-0.0011418392369859501],[125,198,74,-9.076436196706265E-4],[125,198,75,-3.4757808484654556E-4],[125,198,76,5.274865759252974E-4],[125,198,77,0.0016964872003657162],[125,198,78,0.0031292062516370994],[125,198,79,0.004787427033653284],[125,199,64,0.008007767599896258],[125,199,65,0.006728579106861853],[125,199,66,0.005448286926123197],[125,199,67,0.004178140473646247],[125,199,68,0.00297593801727615],[125,199,69,0.0019203295240300062],[125,199,70,0.001075920570857736],[125,199,71,4.928711316151808E-4],[125,199,72,2.0733384354366927E-4],[125,199,73,2.420015370274878E-4],[125,199,74,6.067648066401697E-4],[125,199,75,0.00129948024813694],[125,199,76,0.0023068498393966396],[125,199,77,0.0036054118049513146],[125,199,78,0.00516264317534885],[125,199,79,0.006938174135715307],[125,200,64,0.008619636966663277],[125,200,65,0.007380421630958746],[125,200,66,0.006152685724869207],[125,200,67,0.004947856920164466],[125,200,68,0.0038233651859537242],[125,200,69,0.0028570162064063855],[125,200,70,0.0021121285088002515],[125,200,71,0.0016372189817888052],[125,200,72,0.0014665250847954562],[125,200,73,0.0016206320478300655],[125,200,74,0.0021072056557936703],[125,200,75,0.002921831065457174],[125,200,76,0.0040489579645142],[125,200,77,0.005462952251955156],[125,200,78,0.007129254299114717],[125,200,79,0.009005643742588628],[125,201,64,0.00922027740328071],[125,201,65,0.0080266859739026],[125,201,66,0.00685612246722937],[125,201,67,0.005720251603511288],[125,201,68,0.0046758475754496995],[125,201,69,0.003799372695284441],[125,201,70,0.003152486001320632],[125,201,71,0.002781812726519183],[125,201,72,0.002719539874207686],[125,201,73,0.0029841125073475235],[125,201,74,0.0035810311794953077],[125,201,75,0.004503750797065704],[125,201,76,0.005734681071391504],[125,201,77,0.007246288596871088],[125,201,78,0.00900230047976208],[125,201,79,0.010959009342342105],[125,202,64,0.009807932974537527],[125,202,65,0.008665737650923802],[125,202,66,0.007556912848969733],[125,202,67,0.006493431691523869],[125,202,68,0.00553110441135352],[125,202,69,0.00474450831195864],[125,202,70,0.004193238677919543],[125,202,71,0.00392175968835634],[125,202,72,0.003960062244722704],[125,202,73,0.004324418160858513],[125,202,74,0.005018230995026669],[125,202,75,0.006032983672459571],[125,202,76,0.007349282923409956],[125,202,77,0.008938000447273671],[125,202,78,0.010761510609535624],[125,202,79,0.012775024386445092],[125,203,64,0.010381335991222483],[125,203,65,0.009296303171821835],[125,203,66,0.00825368884100506],[125,203,67,0.007265863951373342],[125,203,68,0.006387360040448352],[125,203,69,0.005690303642250333],[125,203,70,0.0052318020416807776],[125,203,71,0.005053873760267245],[125,203,72,0.005184157595870225],[125,203,73,0.005636713527522583],[125,203,74,0.006412915632888749],[125,203,75,0.007502437042055583],[125,203,76,0.008884326835433642],[125,203,77,0.010528178686836592],[125,203,78,0.012395390956762526],[125,203,79,0.014440517856821723],[125,204,64,0.010939714453456843],[125,204,65,0.009917541252682488],[125,204,66,0.008945557391112725],[125,204,67,0.008036645067181571],[125,204,68,0.007243749381086487],[125,204,69,0.006635973259203021],[125,204,70,0.006267501499985216],[125,204,71,0.006177610075647857],[125,204,72,0.006391416153493579],[125,204,73,0.006920715262265061],[125,204,74,0.007764905632580563],[125,204,75,0.00891199962437828],[125,204,76,0.010339722046103846],[125,204,77,0.012016695071449023],[125,204,78,0.013903709371165224],[125,204,79,0.015955081001068443],[125,205,64,0.011482794493128144],[125,205,65,0.010529112930189807],[125,205,66,0.009632263355721869],[125,205,67,0.008805783350847278],[125,205,68,0.008100743888001716],[125,205,69,0.007582659933404888],[125,205,70,0.007302356551085678],[125,205,71,0.00729605800064822],[125,205,72,0.007586170186619993],[125,205,73,0.008182145221944067],[125,205,74,0.009081428026474828],[125,205,75,0.010270484773209767],[125,205,76,0.011725912894839565],[125,205,77,0.013415632272287242],[125,205,78,0.015300157146538474],[125,205,79,0.017333948226408272],[125,206,64,0.012010797742794746],[125,206,65,0.011131250591733302],[125,206,66,0.010314356787186377],[125,206,67,0.009574492114586816],[125,206,68,0.00896059847387093],[125,206,69,0.008534060974206099],[125,206,70,0.00834190999362204],[125,206,71,0.008416993557768192],[125,206,72,0.008778786345257418],[125,206,73,0.009434275362060297],[125,206,74,0.010378922102858262],[125,206,75,0.011597700917682113],[125,206,76,0.013066213210541296],[125,206,77,0.014751877014285805],[125,206,78,0.016615191413860784],[125,206,79,0.01861107522951189],[125,207,64,0.012526529153688197],[125,207,65,0.011727314126610202],[125,207,66,0.010996067798136293],[125,207,67,0.010348214580679978],[125,207,68,0.009830345842440177],[125,207,69,0.00949920618466457],[125,207,70,0.009397605117475552],[125,207,71,0.009554678862227361],[125,207,72,0.00998672308674947],[125,207,73,0.010698096315885385],[125,207,74,0.011682193731866861],[125,207,75,0.012922490988781702],[125,207,76,0.014393657583021583],[125,207,77,0.016062739248259076],[125,207,78,0.017890408780336913],[125,207,79,0.019146059335457793],[125,208,64,0.013040933452106261],[125,208,65,0.012330229573820828],[125,208,66,0.011692057802104142],[125,208,67,0.011143054398949194],[125,208,68,0.01072723795379267],[125,208,69,0.010496233281343888],[125,208,70,0.010488233676389545],[125,208,71,0.010728358393835747],[125,208,72,0.01122950697680733],[125,208,73,0.01199327754684116],[125,208,74,0.013010948664122602],[125,208,75,0.01426452428571403],[125,208,76,0.01572784127754588],[125,208,77,0.017367738872628026],[125,208,78,0.019145289414529518],[125,208,79,0.0180232226904034],[125,209,64,0.013565500260587332],[125,209,65,0.012953125014675439],[125,209,66,0.01241672962580194],[125,209,67,0.011974261069965629],[125,209,68,0.011666943174964025],[125,209,69,0.011540847925262544],[125,209,70,0.011629206312920123],[125,209,71,0.011952866838338337],[125,209,72,0.012521169213369026],[125,209,73,0.013332874466302809],[125,209,74,0.014377150945740486],[125,209,75,0.01563461565176688],[125,209,76,0.017078430261954828],[125,209,77,0.01867545116747692],[125,209,78,0.018648233519081125],[125,209,79,0.016930861243800624],[125,210,64,0.014110046390433104],[125,210,65,0.013606704598909678],[125,210,66,0.013181362947842465],[125,210,67,0.01285331654255634],[125,210,68,0.012660784259985822],[125,210,69,0.012643915309490088],[125,210,70,0.012830695158705033],[125,210,71,0.013237509182469643],[125,210,72,0.013870033382611318],[125,210,73,0.014724173030844882],[125,210,74,0.015787048616184657],[125,210,75,0.017038028422318444],[125,210,76,0.018449807011952365],[125,210,77,0.019043016140464854],[125,210,78,0.017480475975636373],[125,210,79,0.01586615332637209],[125,211,64,0.014682800121777662],[125,211,65,0.014299416799399367],[125,211,66,0.013994370458163615],[125,211,67,0.01378828324523431],[125,211,68,0.013716180663278947],[125,211,69,0.013811996568699443],[125,211,70,0.014098261725023096],[125,211,71,0.014586775271939119],[125,211,72,0.015279509936757016],[125,211,73,0.016169555750726906],[125,211,74,0.017242101531742413],[125,211,75,0.018475453352850082],[125,211,76,0.019188862135532753],[125,211,77,0.01778951610184265],[125,211,78,0.01632350406942538],[125,211,79,0.014829185001510098],[125,212,64,0.0152904774014813],[125,212,65,0.015037614509444559],[125,212,66,0.01486154468001232],[125,212,67,0.014784140652520025],[125,212,68,0.014837076280197503],[125,212,69,0.015047866364489095],[125,212,70,0.015433460466487938],[125,212,71,0.01600102323682134],[125,212,72,0.016748851429708497],[125,212,73,0.01766731908825142],[125,212,74,0.018739850039233914],[125,212,75,0.019086968352666527],[125,212,76,0.01784757630900457],[125,212,77,0.016533890358205187],[125,212,78,0.015180074634391886],[125,212,79,0.01382200576857029],[125,213,64,0.01593834989639727],[125,213,65,0.015825706967674876],[125,213,66,0.015786295470081105],[125,213,67,0.015843110418452346],[125,213,68,0.01602435264928848],[125,213,69,0.016351011665929196],[125,213,70,0.016834418003010117],[125,213,71,0.017477131715193123],[125,213,72,0.01827386836726653],[125,213,73,0.019212442009879174],[125,213,74,0.018757618994477525],[125,213,75,0.017663939331155093],[125,213,76,0.016495154841001503],[125,213,77,0.015281346965991885],[125,213,78,0.014054566471616388],[125,213,79,0.012847809488536399],[125,214,64,0.016630304835683275],[125,214,65,0.016666303491041243],[125,214,66,0.016769878206167363],[125,214,67,0.016964970100941255],[125,214,68,0.017276227639012924],[125,214,69,0.017718111728995463],[125,214,70,0.01829638796459987],[125,214,71,0.01900912077975783],[125,214,72,0.019116412577532497],[125,214,73,0.018238012959951054],[125,214,74,0.017266211427286446],[125,214,75,0.016224401926269998],[125,214,76,0.015138982529650936],[125,214,77,0.014038409260405893],[125,214,78,0.012952250311323764],[125,214,79,0.01191024167728758],[125,215,64,0.01736889657205579],[125,215,65,0.017560348991438362],[125,215,66,0.01781161266476027],[125,215,67,0.018147355490837354],[125,215,68,0.018588639628354456],[125,215,69,0.01914349926093704],[125,215,70,0.019082259019891197],[125,215,71,0.01837925314828339],[125,215,72,0.017578821862014475],[125,215,73,0.01669760936023083],[125,215,74,0.015756072254777428],[125,215,75,0.01477757074331626],[125,215,76,0.013787470944954302],[125,215,77,0.012812259546724254],[125,215,78,0.011878671867643232],[125,215,79,0.011012834399455544],[125,216,64,0.01815538978825114],[125,216,65,0.018507251246269476],[125,216,66,0.018909092583271475],[125,216,67,0.019360412428547098],[125,216,68,0.01886818858726478],[125,216,69,0.01827986325832127],[125,216,70,0.017600279463738135],[125,216,71,0.016839740330796],[125,216,72,0.016013073801723204],[125,216,73,0.01513871792848656],[125,216,74,0.014237828111639766],[125,216,75,0.01333340760009437],[125,216,76,0.012449462521224862],[125,216,77,0.01161018265791838],[125,216,78,0.010839149131217663],[125,216,79,0.010158570084250619],[125,217,64,0.018989794271511658],[125,217,65,0.01916712937529332],[125,217,66,0.018693342404299516],[125,217,67,0.018154360686697003],[125,217,68,0.017536211346878976],[125,217,69,0.016843002524048432],[125,217,70,0.01608444002211123],[125,217,71,0.015274548454562916],[125,217,72,0.014430738568678816],[125,217,73,0.013572908538181652],[125,217,74,0.01272258070015198],[125,217,75,0.011902075151239176],[125,217,76,0.011133721552679601],[125,217,77,0.010439110423418066],[125,217,78,0.009838385126135312],[125,217,79,0.009349575672555467],[125,218,64,0.018807347171008786],[125,218,65,0.018208134676796703],[125,218,66,0.01758265837914945],[125,218,67,0.016905729212865844],[125,218,68,0.016166781980267986],[125,218,69,0.015375445626577723],[125,218,70,0.014545893818731151],[125,218,71,0.01369548703680431],[125,218,72,0.012843845142321673],[125,218,73,0.012011967456071065],[125,218,74,0.01122140193163132],[125,218,75,0.010493464931404729],[125,218,76,0.009848513028239409],[125,218,77,0.009305268168084137],[125,218,78,0.008880197438106868],[125,218,79,0.008586948590858545],[125,219,64,0.017970236457000303],[125,219,65,0.017206972822066964],[125,219,66,0.01643267991733178],[125,219,67,0.015622623350401568],[125,219,68,0.014769498744791587],[125,219,69,0.013887982688050892],[125,219,70,0.012996259091435054],[125,219,71,0.012114592178765187],[125,219,72,0.011264406689359553],[125,219,73,0.010467429119523473],[125,219,74,0.009744891691435333],[125,219,75,0.009116800640280337],[125,219,76,0.008601270308783214],[125,219,77,0.008213924433403845],[125,219,78,0.00796736589914129],[125,219,79,0.0078707161308597],[125,220,64,0.017093305180299646],[125,220,65,0.016169244083957424],[125,220,66,0.015250775259073765],[125,220,67,0.01431394752112167],[125,220,68,0.013354534551231093],[125,220,69,0.012391726414781182],[125,220,70,0.01144721269608135],[125,220,71,0.010543697093019616],[125,220,72,0.009703987357790525],[125,220,73,0.00895015962900758],[125,220,74,0.008302798937645869],[125,220,75,0.007780317553055461],[125,220,76,0.007398352715960111],[125,220,77,0.007169245183609462],[125,220,78,0.007101599889025788],[125,220,79,0.007199929892480861],[125,221,64,0.01618134995636525],[125,221,65,0.015101572274211614],[125,221,66,0.01404512904014873],[125,221,67,0.012989171597674966],[125,221,68,0.01193234048426941],[125,221,69,0.010897765254024042],[125,221,70,0.00991010897290994],[125,221,71,0.008994035497773395],[125,221,72,0.008173310942020192],[125,221,73,0.007469992557428477],[125,221,74,0.006903706898173232],[125,221,75,0.006491018999265819],[125,221,76,0.006244894165217507],[125,221,77,0.006174253826692453],[125,221,78,0.006283626784344192],[125,221,79,0.006572897021012472],[125,222,64,0.015240375372645993],[125,222,65,0.014011527830276784],[125,222,66,0.012824589181809561],[125,222,67,0.01165810893419396],[125,222,68,0.010513364250673094],[125,222,69,0.009416836093566668],[125,222,70,0.008395624240669794],[125,222,71,0.007475878250382503],[125,222,72,0.006681911920460276],[125,222,73,0.006035417727258131],[125,222,74,0.005554783184552969],[125,222,75,0.005254510910184676],[125,222,76,0.005144744036006113],[125,222,77,0.0052308984430030694],[125,222,78,0.005513403150230428],[125,222,79,0.005987550034669004],[125,223,64,0.014277611508483865],[125,223,65,0.012907559515633717],[125,223,66,0.011598523398030086],[125,223,67,0.010330706155062338],[125,223,68,0.009107783699413273],[125,223,69,0.007959016714694851],[125,223,70,0.006913427218350715],[125,223,71,0.005998203632044201],[125,223,72,0.0052378294114054464],[125,223,73,0.004653323654834274],[125,223,74,0.004261595692432899],[125,223,75,0.0040749154891674706],[125,223,76,0.004100501528081913],[125,223,77,0.004340227670993195],[125,223,78,0.00479045032704202],[125,223,79,0.005441957095182628],[125,224,64,0.013301540485933043],[125,224,65,0.011798934808980558],[125,224,66,0.010376685406506896],[125,224,67,0.009016844819199843],[125,224,68,0.007725255581707986],[125,224,69,0.006533438238756128],[125,224,70,0.005471875709460082],[125,224,71,0.0045684017355164894],[125,224,72,0.0038473446368883966],[125,224,73,0.0033287944082177633],[125,224,74,0.0030279952079158433],[125,224,75,0.0029548651096833333],[125,224,76,0.0031136448033107903],[125,224,77,0.0035026767493337918],[125,224,78,0.004114316112079457],[125,224,79,0.004934974619427728],[125,225,64,0.01232193213760531],[125,225,65,0.010695689062671217],[125,225,66,0.00916909094144825],[125,225,67,0.007726155095336697],[125,225,68,0.006374679743380703],[125,225,69,0.005148017837837558],[125,225,70,0.004077739919264669],[125,225,71,0.0031920134474731285],[125,225,72,0.0025147625271795338],[125,225,73,0.0020649616700187724],[125,225,74,0.0018560656847800092],[125,225,75,0.0018955775912251963],[125,225,76,0.0021847562562307397],[125,225,77,0.002718465255725608],[125,225,78,0.0034851642737391613],[125,225,79,0.004467044162558354],[125,226,64,0.011349888874912723],[125,226,65,0.009608583515386133],[125,226,66,0.007985903677738259],[125,226,67,0.006467841602123736],[125,226,68,0.005063978966790825],[125,226,69,0.0038092120107469764],[125,226,70,0.002735952810930575],[125,226,71,0.001872504556265278],[125,226,72,0.001242238140059704],[125,226,73,8.629128389077893E-4],[125,226,74,7.461431992469433E-4],[125,226,75,8.970140427851562E-4],[125,226,76,0.0013138452925233566],[125,226,77,0.001988108113670426],[125,226,78,0.0029044936602684044],[125,226,79,0.004041135520695557],[125,227,64,0.01040131430876206],[125,227,65,0.008553219093231652],[125,227,66,0.006842172933110539],[125,227,67,0.005256044076953089],[125,227,68,0.0038060663420112465],[125,227,69,0.0025285319033767385],[125,227,70,0.001456575747601159],[125,227,71,6.185500568855978E-4],[125,227,72,3.721922481747922E-5],[125,227,73,-2.708916596723247E-4],[125,227,74,-2.959927210217533E-4],[125,227,75,-3.5367681827871434E-5],[125,227,76,5.064469713848827E-4],[125,227,77,0.0013176435177698895],[125,227,78,0.002379286489503115],[125,227,79,0.003665619172023025],[125,228,64,0.009508001695676366],[125,228,65,0.007564009206250257],[125,228,66,0.005774548016857844],[125,228,67,0.004129247172396539],[125,228,68,0.0026408347183796647],[125,228,69,0.0013468031028034699],[125,228,70,2.8084594583789997E-4],[125,228,71,-5.287616821746578E-4],[125,228,72,-0.0010599456669122443],[125,228,73,-0.0012974535258113247],[125,228,74,-0.0012333112137251179],[125,228,75,-8.671141524565017E-4],[125,228,76,-2.0615081011718817E-4],[125,228,77,7.34642615141407E-4],[125,228,78,0.0019328976294211123],[125,228,79,0.0033592000023952443],[125,229,64,0.008700768177776817],[125,229,65,0.006674828796217096],[125,229,66,0.004819564531164806],[125,229,67,0.0031262588513601055],[125,229,68,0.001608938577681889],[125,229,69,3.0601482020539797E-4],[125,229,70,-7.485036997422059E-4],[125,229,71,-0.0015266132118374634],[125,229,72,-0.002007067855636469],[125,229,73,-0.0021759642711594285],[125,229,74,-0.0020271557046424448],[125,229,75,-0.0015624937553118524],[125,229,76,-7.918961293151027E-4],[125,229,77,2.667609968063812E-4],[125,229,78,0.0015879271707143416],[125,229,79,0.0031388393630240193],[125,230,64,0.008003501701907783],[125,230,65,0.005911922216836459],[125,230,66,0.004005478942179556],[125,230,67,0.002277005720706154],[125,230,68,7.416097584226611E-4],[125,230,69,-5.617152107264894E-4],[125,230,70,-0.0015989393494862095],[125,230,71,-0.0023425674624030558],[125,230,72,-0.002772353468870272],[125,230,73,-0.0028758418926926738],[125,230,74,-0.002648734302595734],[125,230,75,-0.002095078886496661],[125,230,76,-0.0012272815881150085],[125,230,77,-6.5937475656139E-5],[125,230,78,0.001360518753434018],[125,230,79,0.0030163440025613715],[125,231,64,0.00743344466264299],[125,231,65,0.005294178765872146],[125,231,66,0.0033525474865312163],[125,231,67,0.0016028296112323172],[125,231,68,6.098512835075807E-5],[125,231,69,-0.001233772040285776],[125,231,70,-0.002247710043607551],[125,231,71,-0.0029541009754899218],[125,231,72,-0.003333886162692381],[125,231,73,-0.0033761661695672477],[125,231,74,-0.0030785135354052294],[125,231,75,-0.002447106511418648],[125,231,76,-0.0014966823123770284],[125,231,77,-2.503086407946411E-4],[125,231,78,0.0012610275229914297],[125,231,79,0.002999014645853382],[125,232,64,0.0070014771460854604],[125,232,65,0.004833409326359366],[125,232,66,0.0028733086955868596],[125,232,67,0.001116791402346159],[125,232,68,-4.195535408533483E-4],[125,232,69,-0.0016966560847877195],[125,232,70,-0.002681404567909339],[125,232,71,-0.003348100163286437],[125,232,72,-0.003679061085165336],[125,232,73,-0.0036650517165108796],[125,232,74,-0.003305534786398745],[125,232,75,-0.002608744976465661],[125,232,76,-0.0015915825823771934],[125,232,77,-2.793260974360946E-4],[125,232,78,0.0012948371812961893],[125,232,79,0.0030904632009872554],[125,233,64,0.0067123981672975565],[125,233,65,0.004534622194287399],[125,233,66,0.0025728673286152595],[125,233,67,8.239796152897876E-4],[125,233,68,-6.950302100997451E-4],[125,233,69,-0.0019455798782924405],[125,233,70,-0.002895484356262928],[125,233,71,-0.003520323595589745],[125,233,72,-0.00380397297538144],[125,233,73,-0.00373896145972007],[125,233,74,-0.003326655742843891],[125,233,75,-0.0025772689011328564],[125,233,76,-0.001509692312800001],[125,233,77,-1.5114984203921876E-4],[125,233,78,0.001463326488054061],[125,233,79,0.0032915998924925847],[125,234,64,0.006565205185421039],[125,234,65,0.004396298437146402],[125,234,66,0.0024491801289073037],[125,234,67,7.218242689552381E-4],[125,234,68,-7.685151338198223E-4],[125,234,69,-0.0019840482992257713],[125,234,70,-0.0028937916108787644],[125,234,71,-0.0034748293556252337],[125,234,72,-0.0037127572845729695],[125,234,73,-0.003601959254818305],[125,234,74,-0.003145715399445944],[125,234,75,-0.00235614051103695],[125,234,76,-0.0012539515571860945],[125,234,77,1.319365265334768E-4],[125,234,78,0.0017649874023397563],[125,234,79,0.0036017926833414354],[125,235,64,0.006553372178594883],[125,235,65,0.0044106671299265696],[125,235,66,0.0024933438216661647],[125,235,67,8.004164978149745E-4],[125,235,68,-6.507547541091929E-4],[125,235,69,-0.0018234215753785436],[125,235,70,-0.0026880318236734532],[125,235,71,-0.003223366512994513],[125,235,72,-0.003416883219018972],[125,235,73,-0.0032649003862754607],[125,235,74,-0.0027726211868330177],[125,235,75,-0.001953995806120811],[125,235,76,-8.314212526620268E-4],[125,235,77,5.647219969354588E-4],[125,235,78,0.002196697000568506],[125,235,79,0.004020201288709991],[125,236,64,0.006665126557466153],[125,236,65,0.00456398081591342],[125,236,66,0.0026898857754536444],[125,236,67,0.0010428344345249322],[125,236,68,-3.5979033594859357E-4],[125,236,69,-0.0014824603738561998],[125,236,70,-0.002297229890848216],[125,236,71,-0.0027847297780629818],[125,236,72,-0.0029343976287565707],[125,236,73,-0.0027445587211617503],[125,236,74,-0.0022223568382219],[125,236,75,-0.0013835340117451154],[125,236,76,-2.5205848433613846E-4],[125,236,77,0.0011403996185593904],[125,236,78,0.0027551452240308413],[125,236,79,0.0045472879927655205],[125,237,64,0.0068837251914124105],[125,237,65,0.00483679153890551],[125,237,66,0.003017057750078841],[125,237,67,0.001425475860180142],[125,237,68,7.943524585292352E-5],[125,237,69,-9.868522908552434E-4],[125,237,70,-0.0017471590287060042],[125,237,71,-0.002184076427425668],[125,237,72,-0.002289118702354221],[125,237,73,-0.002062689338465379],[125,237,74,-0.0015139096687730078],[125,237,75,-6.603088351468527E-4],[125,237,76,4.726253628349183E-4],[125,237,77,0.0018520350447909398],[125,237,78,0.0034384203943050883],[125,237,79,0.005186507352738407],[125,238,64,0.007187729815496579],[125,238,65,0.005204227791217168],[125,238,66,0.003447133152929168],[125,238,67,0.0019183981228401601],[125,238,68,6.354831505845213E-4],[125,238,69,-3.687190700571682E-4],[125,238,70,-0.0010697417223101706],[125,238,71,-0.0014522046255468143],[125,238,72,-0.0015097784772316219],[125,238,73,-0.0012450255197257343],[125,238,74,-6.691160230939252E-4],[125,238,75,1.985798521472489E-4],[125,238,76,0.0013310250813269285],[125,238,77,0.002694173800072721],[125,238,78,0.0042477542850515955],[125,238,79,0.005946176708761731],[125,239,64,0.007542549812402173],[125,239,65,0.005628514219871282],[125,239,66,0.003939793082648879],[125,239,67,0.002479447752782047],[125,239,68,0.0012651606346466464],[125,239,69,3.286021616336315E-4],[125,239,70,-3.0748983081064986E-4],[125,239,71,-6.297833963748638E-4],[125,239,72,-6.341651491408114E-4],[125,239,73,-3.2544385214994915E-4],[125,239,74,2.830554059531137E-4],[125,239,75,0.0011700066244968992],[125,239,76,0.0023067079279925646],[125,239,77,0.0036578161228815855],[125,239,78,0.005182190541123064],[125,239,79,0.006833845819751194],[125,240,64,0.00788211133003957],[125,240,65,0.0060436029337910735],[125,240,66,0.00442923902577771],[125,240,67,0.003043313580288705],[125,240,68,0.0019039352625015208],[125,240,69,0.0010417370094654773],[125,240,70,4.778425996002007E-4],[125,240,71,2.2358970997645366E-4],[125,240,72,2.80878163304693E-4],[125,240,73,6.426122631354482E-4],[125,240,74,0.0012932372598351163],[125,240,75,0.002209369861753309],[125,240,76,0.0033605225842496932],[125,240,77,0.004709921615067602],[125,240,78,0.006215417769279943],[125,240,79,0.00783049001203523],[125,241,64,0.008147870849003981],[125,241,65,0.006391331470682782],[125,241,66,0.004857718304748386],[125,241,67,0.0035526660454348745],[125,241,68,0.0024949436642688625],[125,241,69,0.0017144043364185995],[125,241,70,0.0012307508570696863],[125,241,71,0.0010534589010969036],[125,241,72,0.0011822917917621238],[125,241,73,0.0016078943298740323],[125,241,74,0.0023124654390799877],[125,241,75,0.003270509277834523],[125,241,76,0.004449664370226406],[125,241,77,0.00581161021726037],[125,241,78,0.007313050768555989],[125,241,79,0.008906774062906402],[125,242,64,0.008297531889504061],[125,242,65,0.006629242085076809],[125,242,66,0.005182568939631406],[125,242,67,0.003964566095020699],[125,242,68,0.0029949108196907046],[125,242,69,0.002302993227603921],[125,242,70,0.0019073571300895285],[125,242,71,0.00181582218584477],[125,242,72,0.0020261668128217095],[125,242,73,0.0025268755309986015],[125,242,74,0.0032979502110941417],[125,242,75,0.004311784621760979],[125,242,76,0.005534101592411863],[125,242,77,0.006924952041452499],[125,242,78,0.008439775061324225],[125,242,79,0.010030518203382983],[125,243,64,0.00830300094054012],[125,243,65,0.006728620906121829],[125,243,66,0.005374359231363726],[125,243,67,0.004248725710378289],[125,243,68,0.0033725535303724004],[125,243,69,0.0027751310736442176],[125,243,70,0.0024741636970066444],[125,243,71,0.0024760882911700204],[125,243,72,0.0027769218504641795],[125,243,73,0.0033631606337782335],[125,243,74,0.0042127291235523915],[125,243,75,0.005295977928715409],[125,243,76,0.006576729724038662],[125,243,77,0.008013372273201404],[125,243,78,0.00955999754677676],[125,243,79,0.011167585920172538],[125,244,64,0.008148473915658776],[125,244,65,0.00667266657083301],[125,244,66,0.005415154384459452],[125,244,67,0.004385891488112958],[125,244,68,0.0036071015091528446],[125,244,69,0.003108362645926758],[125,244,70,0.0029069095464468657],[125,244,71,0.003008128757124137],[125,244,72,0.0034065663458591406],[125,244,73,0.004086973416049927],[125,244,74,0.0050253884681410186],[125,244,75,0.006190255524397417],[125,244,76,0.007543576899544457],[125,244,77,0.009042099475369748],[125,244,78,0.010638533322039949],[125,244,79,0.012282801503407582],[125,245,64,0.007828655340788035],[125,245,65,0.0064547904663067],[125,245,66,0.0052969122062368245],[125,245,67,0.004366353187614757],[125,245,68,0.00368693785364869],[125,245,69,0.0032889417666864887],[125,245,70,0.0031895318563178736],[125,245,71,0.0033934264569582136],[125,245,72,0.003894051360482921],[125,245,73,0.004674722503272137],[125,245,74,0.005709854017150691],[125,245,75,0.0069661903506904954],[125,245,76,0.00840406115258995],[125,245,77,0.009978657602849569],[125,245,78,0.011641328880802375],[125,245,79,0.013340897472261437],[125,246,64,0.007347112605833438],[125,246,65,0.006077050830925828],[125,246,66,0.005020010025375146],[125,246,67,0.004188579252882098],[125,246,68,0.0036083607511259576],[125,246,69,0.003310737241827184],[125,246,70,0.0033132338073541523],[125,246,71,0.0036203218195208216],[125,246,72,0.004224708989754476],[125,246,73,0.005108646497446491],[125,246,74,0.006245251726313873],[125,246,75,0.007599845130990609],[125,246,76,0.009131299757071776],[125,246,77,0.010793401947854926],[125,246,78,0.012536221790532806],[125,246,79,0.014307491884005822],[125,247,64,0.006714767722253991],[125,247,65,0.005548723065294314],[125,247,66,0.004591905062611691],[125,247,67,0.0038579813943195084],[125,247,68,0.0033744683267061147],[125,247,69,0.0031742547744797495],[125,247,70,0.003275660241013786],[125,247,71,0.0036833580473996028],[125,247,72,0.004389781461825862],[125,247,73,0.005376539256672077],[125,247,74,0.006615839054653518],[125,247,75,0.008071916830275088],[125,247,76,0.009702470946705479],[125,247,77,0.011460099131307598],[125,247,78,0.013293736825843927],[125,247,79,0.015150095390141814],[125,248,64,0.005948529121167233],[125,248,65,0.004885008686009864],[125,248,66,0.004025930558110105],[125,248,67,0.0033858103762904957],[125,248,68,0.0029941685942006325],[125,248,69,0.002885776610342813],[125,248,70,0.003080182688883161],[125,248,71,0.0035827266244968926],[125,248,72,0.004386040978059334],[125,248,73,0.005471556146610293],[125,248,74,0.006811007494484223],[125,248,75,0.008367942786780169],[125,248,76,0.010099228189846895],[125,248,77,0.011956551136469287],[125,248,78,0.013887918396293124],[125,248,79,0.015839147744972817],[125,249,64,0.005070066098039569],[125,249,65,0.0041058854168157955],[125,249,66,0.0033402300109252347],[125,249,67,0.0027881851958502634],[125,249,68,0.002481316496218693],[125,249,69,0.0024566206796083146],[125,249,70,0.0027352952994911845],[125,249,71,0.0033238143890448896],[125,249,72,0.004215501316290386],[125,249,73,0.005392102030820784],[125,249,74,0.006825356830612241],[125,249,75,0.008478568797680356],[125,249,76,0.01030816708108151],[125,249,77,0.012265263245223175],[125,249,78,0.014297198950937914],[125,249,79,0.016349083296507114],[125,250,64,0.004104728557957696],[125,250,65,0.0032351009494330876],[125,250,66,0.002556831913367795],[125,250,67,0.0020852578546382175],[125,250,68,0.001853980025101296],[125,250,69,0.0019025209923684873],[125,250,70,0.0022541231663519555],[125,250,71,0.0029168534103827587],[125,250,72,0.0038852221633150236],[125,250,73,0.00514180169405004],[125,250,74,0.006658841555652925],[125,250,75,0.008399879329018244],[125,250,76,0.010321344778483467],[125,250,77,0.012374155584153194],[125,250,78,0.014505302868272148],[125,250,79,0.016659424795967607],[125,251,64,0.00308061473693385],[125,251,65,0.002299312917572486],[125,251,66,0.0017008673640989407],[125,251,67,0.0013005159166295422],[125,251,68,0.0011338373960705556],[125,251,69,0.0012431310123413434],[125,251,70,0.0016540445158141992],[125,251,71,0.00237667484797629],[125,251,72,0.0034072070671649518],[125,251,73,0.004729553299303593],[125,251,74,0.006316989756583049],[125,251,75,0.008133789888840573],[125,251,76,0.010136851763998131],[125,251,77,0.01227731781561325],[125,251,78,0.014502185147675126],[125,251,79,0.01675590464945108],[125,252,64,0.0020277895666538158],[125,252,65,0.0013273776092659997],[125,252,66,7.999329155141737E-4],[125,252,67,4.6022500646971336E-4],[125,252,68,3.4570719600849313E-4],[125,252,69,5.016516749482849E-4],[125,252,70,9.564281424709592E-4],[125,252,71,0.0017225678869136635],[125,252,72,0.002798395800585884],[125,252,73,0.004169665364037186],[125,252,74,0.005811194654482652],[125,252,75,0.00768850145054223],[125,252,76,0.009759435532785559],[125,252,77,0.011975806317117322],[125,252,78,0.014285004006132139],[125,252,79,0.01663161250244939],[125,253,64,9.776563093768034E-4],[125,253,65,3.4978989159946416E-4],[125,253,66,-1.1639904967766707E-4],[125,253,67,-4.069866665498915E-4],[125,253,68,-4.8278664737710615E-4],[125,253,69,-2.9541437248952515E-4],[125,253,70,1.8648738092916822E-4],[125,253,71,9.782447331001078E-4],[125,253,72,0.002080751802549432],[125,253,73,0.0034820776010987017],[125,253,74,0.005159078823127955],[125,253,75,0.007079016639224029],[125,253,76,0.009201175624169866],[125,253,77,0.011478482979368121],[125,253,78,0.013859126250623922],[125,253,79,0.016288167794025973],[125,254,64,-3.751598698350464E-5],[125,254,65,-6.017232651240092E-4],[125,254,66,-0.0010169202140479982],[125,254,67,-0.0012703997783108476],[125,254,68,-0.0013214133435833202],[125,254,69,-0.001118380851239925],[125,254,70,-6.26748227003402E-4],[125,254,71,1.719125111391577E-4],[125,254,72,0.0012814452123505937],[125,254,73,0.0026926658040884793],[125,254,74,0.004384930930822995],[125,254,75,0.006327717195772953],[125,254,76,0.008482209190591226],[125,254,77,0.010802894517754647],[125,254,78,0.013239164041050883],[125,254,79,0.015736915641364535],[125,255,64,-9.849067796717697E-4],[125,255,65,-0.0014944534032275616],[125,255,66,-0.001868974429837286],[125,255,67,-0.0020973295154999615],[125,255,68,-0.0021373955812739667],[125,255,69,-0.0019343669509709629],[125,255,70,-0.0014503425739534192],[125,255,71,-6.635472641352266E-4],[125,255,72,4.3313182852193965E-4],[125,255,73,0.0018336307624484168],[125,255,74,0.003520214641682562],[125,255,75,0.005465002009659734],[125,255,76,0.007631506060127513],[125,255,77,0.009976190932836167],[125,255,78,0.012450041379653254],[125,255,79,0.01500014411609725],[125,256,64,-0.0018312977929874972],[125,256,65,-0.0022948032423965392],[125,256,66,-0.00263849214650126],[125,256,67,-0.0028531037031464994],[125,256,68,-0.002895330340123381],[125,256,69,-0.0027071563416949823],[125,256,70,-0.0022472431414111743],[125,256,71,-0.0014902911779834003],[125,256,72,-4.2567189000158434E-4],[125,256,73,9.43970966637268E-4],[125,256,74,0.0026041490755293883],[125,256,75,0.004529984760364209],[125,256,76,0.0066876919811927815],[125,256,77,0.00903608147083017],[125,256,78,0.01152808835941687],[125,256,79,0.014112320650220568],[125,257,64,-0.0025430658173841705],[125,257,65,-0.0029682214336240386],[125,257,66,-0.003289871629982884],[125,257,67,-0.003500894284076365],[125,257,68,-0.003556971330255956],[125,257,69,-0.0033969274484885533],[125,257,70,-0.0029759530631692584],[125,257,71,-0.0022651196384733305],[125,257,72,-0.001250118738503326],[125,257,73,7.003865228020173E-5],[125,257,74,0.0016843610768001885],[125,257,75,0.0035712523071513634],[125,257,76,0.005699922253221571],[125,257,77,0.008031831508066481],[125,257,78,0.010522167948075683],[125,257,79,0.013121353805703157],[125,258,64,-0.003085111594349821],[125,258,65,-0.00347812724385355],[125,258,66,-0.003784905103418878],[125,258,67,-0.004000650699964697],[125,258,68,-0.0040801767828035915],[125,258,69,-0.003959224304953381],[125,258,70,-0.0035895340460243893],[125,258,71,-0.0029385202675003973],[125,258,72,-0.0019881216742276752],[125,258,73,-7.336037418304552E-4],[125,258,74,8.176862524979298E-4],[125,258,75,0.0026476101006312797],[125,258,76,0.004728573991918925],[125,258,77,0.007024906817362039],[125,258,78,0.009494279940174629],[125,258,79,0.012089166907661437],[125,259,64,-0.0034030686025345483],[125,259,65,-0.0037692789676392834],[125,259,66,-0.004067300216298383],[125,259,67,-0.004294784523582621],[125,259,68,-0.004405869333822194],[125,259,69,-0.00433342641413321],[125,259,70,-0.004025898255694177],[125,259,71,-0.0034471312583429477],[125,259,72,-0.0025753420216018817],[125,259,73,-0.0014020265308885846],[125,259,74,6.9186558643217E-5],[125,259,75,0.0018237372657373815],[125,259,76,0.003837388915846363],[125,259,77,0.006077534671376733],[125,259,78,0.008504554525087247],[125,259,79,0.01107322129153636],[125,260,64,-0.003435136451485271],[125,260,65,-0.0037799549091192372],[125,260,66,-0.004075198597005024],[125,260,67,-0.004321027629976905],[125,260,68,-0.0044712336052164766],[125,260,69,-0.004456271285792139],[125,260,70,-0.004221627899711736],[125,260,71,-0.0037278179835906547],[125,260,72,-0.0029494725494835943],[125,260,73,-0.001874363001057979],[125,260,74,-5.023608600840775E-4],[125,260,75,0.0011556655489160408],[125,260,76,0.003079016229909107],[125,260,77,0.0052383851681607665],[125,260,78,0.007597145152706427],[125,260,79,0.010112690370656183],[125,261,64,-0.00313708292538654],[125,261,65,-0.0034659599213472886],[125,261,66,-0.0037642001773290595],[125,261,67,-0.004034478993878512],[125,261,68,-0.0042306834847984425],[125,261,69,-0.004281503705664499],[125,261,70,-0.004129978096022524],[125,261,71,-0.003733652718865835],[125,261,72,-0.003063804107271899],[125,261,73,-0.002104588951197672],[125,261,74,-8.521215330276287E-4],[125,261,75,6.865200783832149E-4],[125,261,76,0.002494357972677437],[125,261,77,0.004545647296184796],[125,261,78,0.00680707684482125],[125,261,79,0.009239036032006457],[125,262,64,-0.0024819916438501115],[125,262,65,-0.002800310183731372],[125,262,66,-0.0031069983699161335],[125,262,67,-0.0034072038537151877],[125,262,68,-0.003655435120302728],[125,262,69,-0.0037794272645207106],[125,262,70,-0.0037204077333687084],[125,262,71,-0.0034334228279912504],[125,262,72,-0.002886707264031038],[125,262,73,-0.002060972833403226],[125,262,74,-9.4861690965829E-4],[125,262,75,4.471483454896751E-4],[125,262,76,0.002113245109443466],[125,262,77,0.0040277562964267264],[125,262,78,0.006161028074148432],[125,262,79,0.008476847271214926],[125,263,64,-0.0014587277869966338],[125,263,65,-0.0017716886357339227],[125,263,66,-0.0020918400471623432],[125,263,67,-0.002426714090414846],[125,263,68,-0.002732024989748531],[125,263,69,-0.0029354786977733617],[125,263,70,-0.002977228871107222],[125,263,71,-0.002810373285930927],[125,263,72,-0.0024004844963680105],[125,263,73,-0.0017250519756282332],[125,263,74,-7.728362995982396E-4],[125,263,75,4.56863937704932E-4],[125,263,76,0.001955031665112129],[125,263,77,0.0037038364063559],[125,263,78,0.005677623854092962],[125,263,79,0.007843988824059654],[125,264,64,-7.019303202205292E-5],[125,264,65,-3.826928598844605E-4],[125,264,66,-7.207830733377952E-4],[125,264,67,-0.001094253285757385],[125,264,68,-0.001460642016877956],[125,264,69,-0.0017486280882791918],[125,264,70,-0.0018980963681401036],[125,264,71,-0.0018608063316072879],[125,264,72,-0.0016000988333255996],[125,264,73,-0.0010905068233367456],[125,264,74,-3.172703663909927E-4],[125,264,75,7.242435311011747E-4],[125,264,76,0.0020292156449129143],[125,264,77,0.003584143036840392],[125,264,78,0.00536770044793193],[125,264,79,0.007351693581320381],[125,265,64,0.0016686291639529793],[125,265,65,0.0013521233955141585],[125,265,66,9.922473689143038E-4],[125,265,67,5.771122528371041E-4],[125,265,68,1.4672494294905815E-4],[125,265,69,-2.2960628580956122E-4],[125,265,70,-4.923391098300137E-4],[125,265,71,-5.925396206892888E-4],[125,265,72,-4.917803146656097E-4],[125,265,73,-1.61934527775111E-4],[125,265,74,4.1513254080934785E-4],[125,265,75,0.0012479759152838614],[125,265,76,0.0023360855853631745],[125,265,77,0.0036705033045697794],[125,265,78,0.0052345407088856735],[125,265,79,0.007004597893839389],[125,266,64,0.0037328366391337054],[125,266,65,0.003408413712183897],[125,266,66,0.003023602276204795],[125,266,67,0.002564595086659832],[125,266,68,0.0020683228080570298],[125,266,69,0.0016010390066386307],[125,266,70,0.0012208657193591883],[125,266,71,9.767756918910245E-4],[125,266,72,9.084883417618954E-4],[125,266,73,0.001046476773439656],[125,266,74,0.001412085937145716],[125,266,75,0.002017761849494688],[125,266,76,0.002867391625783604],[125,266,77,0.003956753912265379],[125,266,78,0.0052740791534855525],[125,266,79,0.006800718986082473],[125,267,64,0.006089978514256972],[125,267,65,0.005754406033179375],[125,267,66,0.005342250634330633],[125,267,67,0.004837979326914408],[125,267,68,0.004274851624780185],[125,267,69,0.0037150569412412716],[125,267,70,0.0032144737983970675],[125,267,71,0.002821475456670266],[125,267,72,0.002576605433635275],[125,267,73,0.002512371623196967],[125,267,74,0.002653159358671115],[125,267,75,0.003015263574441731],[125,267,76,0.003607040036580451],[125,267,77,0.004429175434537578],[125,267,78,0.0054750759552585045],[125,267,79,0.0067313737992617285],[125,268,64,0.008702630505540633],[125,268,65,0.008353471615901848],[125,268,66,0.007912317908533596],[125,268,67,0.007362102762404007],[125,268,68,0.006731861934056046],[125,268,69,0.006078775410243157],[125,268,70,0.005455708684534244],[125,268,71,0.004909840091826926],[125,268,72,0.0044821018697782785],[125,268,73,0.004206747488178255],[125,268,74,0.004111045858382499],[125,268,75,0.004215102830425655],[125,268,76,0.004531810184636916],[125,268,77,0.005066922128959218],[125,268,78,0.005819259124291206],[125,268,79,0.006781038679524775],[125,269,64,0.011531173847845144],[125,269,65,0.011166894172856547],[125,269,66,0.010695819472365383],[125,269,67,0.010099526695289284],[125,269,68,0.009402330428408484],[125,269,69,0.008655549418087466],[125,269,70,0.007908349041607832],[125,269,71,0.00720618763284563],[125,269,72,0.006590009185057272],[125,269,73,0.006095570200479863],[125,269,74,0.005752901584154037],[125,269,75,0.005585906258679174],[125,269,76,0.005612092958660132],[125,269,77,0.005842446449937612],[125,269,78,0.006281434210925167],[125,269,79,0.006927149413083257],[125,270,64,0.014536775994336852],[125,270,65,0.014156837357057058],[125,270,66,0.013655587134463658],[125,270,67,0.013013391658799394],[125,270,68,0.01224941210207633],[125,270,69,0.011408374189446183],[125,270,70,0.010535166394978215],[125,270,71,0.009673100666447408],[125,270,72,0.008862842473633819],[125,270,73,0.008141483216501724],[125,270,74,0.007541756193145888],[125,270,75,0.00709139708969267],[125,270,76,0.0068126497183870465],[125,270,77,0.00672191749747528],[125,270,78,0.00682956093887556],[125,270,79,0.007139841188682393],[125,271,64,0.017670814070013557],[125,271,65,0.01727575197481383],[125,271,66,0.016744871596206592],[125,271,67,0.016057445461751783],[125,271,68,0.01522712903623207],[125,271,69,0.014291463258664283],[125,271,70,0.013290606433781856],[125,271,71,0.012265403327080726],[125,271,72,0.011256038569230863],[125,271,73,0.01030084107846491],[125,271,74,0.009435241020037845],[125,271,75,0.008690880566161992],[125,271,76,0.008094879464824354],[125,271,77,0.007669256173235558],[125,271,78,0.007430505063072709],[125,271,79,0.007389329961917624],[125,272,64,0.0208372481980318],[125,272,65,0.020428633999146573],[125,272,66,0.019870216006053865],[125,272,67,0.019140326083257442],[125,272,68,0.018246876477131108],[125,272,69,0.01721977499194096],[125,272,70,0.016094086935410833],[125,272,71,0.014907910197174145],[125,272,72,0.013700743458781752],[125,272,73,0.012512014458028567],[125,272,74,0.011379770155965328],[125,272,75,0.010339530380472244],[125,272,76,0.009423306245401922],[125,272,77,0.008658784370760285],[125,272,78,0.008068677658977315],[125,272,79,0.007670243116878761],[125,273,64,0.018962433200801855],[125,273,65,0.019403394250946983],[125,273,66,0.020004735158728647],[125,273,67,0.020788886500411677],[125,273,68,0.021216737060235427],[125,273,69,0.02010520185831529],[125,273,70,0.01886233105597291],[125,273,71,0.017523230393013036],[125,273,72,0.0161264927508066],[125,273,73,0.014712448513913403],[125,273,74,0.013321587453668847],[125,273,75,0.011993154019641603],[125,273,76,0.010763917629622132],[125,273,77,0.009667119253890978],[125,273,78,0.00873159529679686],[125,273,79,0.007981079490103588],[125,274,64,0.016046118437313354],[125,274,65,0.01649447266613337],[125,274,66,0.017114410421846717],[125,274,67,0.01792889159688848],[125,274,68,0.01894173426461292],[125,274,69,0.02013905326870864],[125,274,70,0.02149670987724467],[125,274,71,0.020040912935232434],[125,274,72,0.018468671428739956],[125,274,73,0.016844266935162888],[125,274,74,0.015210382245244493],[125,274,75,0.013609728429843112],[125,274,76,0.01208357163230321],[125,274,77,0.010670446739758236],[125,274,78,0.0094050591783061],[125,274,79,0.00831737576526239],[125,275,64,0.013359044499658962],[125,275,65,0.01381142191467621],[125,275,66,0.014444573507944196],[125,275,67,0.015281759659959997],[125,275,68,0.016332532605897735],[125,275,69,0.017591058877031416],[125,275,70,0.019038804021165805],[125,275,71,0.020647209893989497],[125,275,72,0.02066899595450327],[125,275,73,0.01885478971513483],[125,275,74,0.016999837077432012],[125,275,75,0.015149971410097858],[125,275,76,0.013350585165240953],[125,275,77,0.011645120361469643],[125,275,78,0.010073757927645307],[125,275,79,0.008672307047928256],[125,276,64,0.010966106638653463],[125,276,65,0.011418925975253154],[125,276,66,0.012059425948561025],[125,276,67,0.012910940325112061],[125,276,68,0.013988525717275876],[125,276,69,0.015294220003600085],[125,276,70,0.01681504775998616],[125,276,71,0.01852585946710102],[125,276,72,0.020392064211545432],[125,276,73,0.02069704931499728],[125,276,74,0.01864817196357319],[125,276,75,0.01657790709756355],[125,276,76,0.01453531361759443],[125,276,77,0.012568247790199298],[125,276,78,0.010721854111820221],[125,276,79,0.009037266838607194],[125,277,64,0.008920390306997702],[125,277,65,0.009370025872261805],[125,277,66,0.010011793995655795],[125,277,67,0.010868887214387394],[125,277,68,0.011961534930495971],[125,277,69,0.013299309998709364],[125,277,70,0.014874639093134554],[125,277,71,0.01666578786134778],[125,277,72,0.018639831295292147],[125,277,73,0.020755417903514314],[125,277,74,0.02011868489713772],[125,277,75,0.017861425214889683],[125,277,76,0.015610721163666701],[125,277,77,0.013418264547135334],[125,277,78,0.011333553957589238],[125,277,79,0.00940242581215088],[125,278,64,0.007262985487959468],[125,278,65,0.007705914991697592],[125,278,66,0.008342897517137017],[125,278,67,0.009196791320432073],[125,278,68,0.010292575062531579],[125,278,69,0.011646872395546253],[125,278,70,0.0132572460345124],[125,278,71,0.015105310764105677],[125,278,72,0.017159917346372847],[125,278,73,0.019380121800757346],[125,278,74,0.021380288400714893],[125,278,75,0.01897283378562105],[125,278,76,0.016552941438942637],[125,278,77,0.014175494484671798],[125,278,78,0.011893659787036846],[125,278,79,0.00975726887380186],[125,279,64,0.006022801504751754],[125,279,65,0.006455734559549256],[125,279,66,0.007082118712522271],[125,279,67,0.007924313810426709],[125,279,68,0.009011544240244881],[125,279,69,0.010366864845671392],[125,279,70,0.01199260517919895],[125,279,71,0.013873590702103604],[125,279,72,0.01598051270231944],[125,279,73,0.018273075733523145],[125,279,74,0.02070291874489888],[125,279,75,0.019889405058916055],[125,279,76,0.017341828266550282],[125,279,77,0.014822696663559261],[125,279,78,0.012388104747382089],[125,279,79,0.010091110021089823],[125,280,64,0.005216382008643166],[125,280,65,0.005636368996278611],[125,280,66,0.006246770387187707],[125,280,67,0.007069318024069512],[125,280,68,0.008136912594457498],[125,280,69,0.009478301791508026],[125,280,70,0.011100119190775732],[125,280,71,0.012990192996835907],[125,280,72,0.015121071839093558],[125,280,73,0.017453320925214746],[125,280,74,0.019938584551457434],[125,280,75,0.020593914420070546],[125,280,76,0.01796149615691114],[125,280,77,0.015345598298652669],[125,280,78,0.012804469461674127],[125,280,79,0.010393584596840161],[125,281,64,0.004847719843125735],[125,281,65,0.005252240859547252],[125,281,66,0.005841863521054869],[125,281,67,0.006637600435348311],[125,281,68,0.007675409635977381],[125,281,69,0.008988895737471655],[125,281,70,0.010588453124045076],[125,281,71,0.012464641205450069],[125,281,72,0.014591834221335784],[125,281,73,0.016931635017038548],[125,281,74,0.01943604865851287],[125,281,75,0.02107517209875388],[125,281,76,0.018400850343488775],[125,281,77,0.01573341349065993],[125,281,78,0.013132480276219743],[125,281,79,0.010655118571902648],[125,282,64,0.004908071477788919],[125,282,65,0.005295105082997991],[125,282,66,0.005859873862031678],[125,282,67,0.006622620340545804],[125,282,68,0.0076217101164934384],[125,282,69,0.008894696968881947],[125,282,70,0.010455129482138656],[125,282,71,0.012295971997848416],[125,282,72,0.014393345771354626],[125,282,73,0.016710028557055417],[125,282,74,0.01919870839800327],[125,282,75,0.021328547522605747],[125,282,76,0.018654106157376442],[125,282,77,0.015979347505051714],[125,282,78,0.01336448882802856],[125,282,79,0.010867374547020988],[125,283,64,0.005375770698816557],[125,283,65,0.005743842211500315],[125,283,66,0.006280507265976183],[125,283,67,0.007005228024653405],[125,283,68,0.007958118164705964],[125,283,69,0.009179731552517768],[125,283,70,0.0106861218886253],[125,283,71,0.012472289398973232],[125,283,72,0.014515980934485253],[125,283,73,0.016781243838092572],[125,283,74,0.0192217293017855],[125,283,75,0.02135648620009943],[125,283,76,0.018721297583173327],[125,283,77,0.016081086402228776],[125,283,78,0.013495932701434914],[125,283,79,0.011023674211724819],[125,284,64,0.0062160412331338805],[125,284,65,0.006564250322718294],[125,284,66,0.007070463493271389],[125,284,67,0.007753391144998263],[125,284,68,0.008654249472473143],[125,284,69,0.009815637434457895],[125,284,70,0.01125544723407427],[125,284,71,0.012970318300956577],[125,284,72,0.01493946529092137],[125,284,73,0.017128256079290714],[125,284,74,0.01949153545467865],[125,284,75,0.021169019053582754],[125,284,76,0.018608774878407924],[125,284,77,0.016041271865370042],[125,284,78,0.013525776987557019],[125,284,79,0.011119397044413646],[125,285,64,0.007380807970111119],[125,285,65,0.007708835311077013],[125,285,66,0.008183198157196541],[125,285,67,0.008821919054313886],[125,285,68,0.009666711287004241],[125,285,69,0.010761298429559378],[125,285,70,0.012124756132460784],[125,285,71,0.013754957122844037],[125,285,72,0.015632398634230306],[125,285,73,0.01772377691332184],[125,285,74,0.019985304528969572],[125,285,75,0.020784264161287307],[125,285,76,0.018329691178805944],[125,285,77,0.015867961114231083],[125,285,78,0.01345693660351394],[125,285,79,0.011152355082045432],[125,286,64,0.008808506428254387],[125,286,65,0.009116599193059393],[125,286,66,0.009558682501017896],[125,286,67,0.010152184765556748],[125,286,68,0.010938779943055801],[125,286,69,0.011962475872387367],[125,286,70,0.013242921495626635],[125,286,71,0.014778829465750057],[125,286,72,0.01655177840430145],[125,286,73,0.018529760106409953],[125,286,74,0.02067046746581768],[125,286,75,0.020228920906052675],[125,286,76,0.017904478052159],[125,286,77,0.015575071834707408],[125,286,78,0.013296679270499392],[125,286,79,0.01112314363018279],[125,287,64,0.01042389009439614],[125,287,65,0.010712826072166228],[125,287,66,0.011123160658997863],[125,287,67,0.011671844237378224],[125,287,68,0.012400075643563801],[125,287,69,0.013351437671487068],[125,287,70,0.01454562500358507],[125,287,71,0.01598183457841854],[125,287,72,0.017642523327294695],[125,287,73,0.019496909401065486],[125,287,74,0.021504212730077132],[125,287,75,0.019538756568740462],[125,287,76,0.017361310004614272],[125,287,77,0.01518281209538664],[125,287,78,0.01305700909105896],[125,287,79,0.011035467824718015],[125,288,64,0.012137835239414183],[125,288,65,0.012408865377688896],[125,288,66,0.01278890403119745],[125,288,67,0.013294552632151641],[125,288,68,0.013966234168006051],[125,288,69,0.014846584477400388],[125,288,70,0.01595494121458946],[125,288,71,0.017290696412039206],[125,288,72,0.018836997077035195],[125,288,73,0.020564188331686203],[125,288,74,0.02073392097787979],[125,288,75,0.018759085445964347],[125,288,76,0.01673655798501519],[125,288,77,0.01471809526372027],[125,288,78,0.012755030706349164],[125,288,79,0.010896444995493089],[125,289,64,0.013847144831877238],[125,289,65,0.014101914024792446],[125,289,66,0.014453964453627505],[125,289,67,0.014919679267656763],[125,289,68,0.015538577259478388],[125,289,69,0.01635207471515258],[125,289,70,0.01737892101977062],[125,289,71,0.01861851286666707],[125,289,72,0.02005453339448184],[125,289,73,0.02151785164220369],[125,289,74,0.019775459942302207],[125,289,75,0.01794523994741207],[125,289,76,0.01607523176233945],[125,289,77,0.01421494026772107],[125,289,78,0.012413294892645518],[125,289,79,0.010716884237214319],[125,290,64,0.015444468403644674],[125,290,65,0.015684990587944155],[125,290,66,0.01601220440794905],[125,290,67,0.016442382366964246],[125,290,68,0.017014160852833846],[125,290,69,0.017767696499985008],[125,290,70,0.018721078318714016],[125,290,71,0.019873607643023254],[125,290,72,0.021209379440709667],[125,290,73,0.020475614752287583],[125,290,74,0.018856489575161547],[125,290,75,0.017159026136386583],[125,290,76,0.015429412521736652],[125,290,77,0.01371509038338089],[125,290,78,0.012062774684119272],[125,290,79,0.010516748353504336],[125,291,64,0.016850979585786664],[125,291,65,0.017079797743881773],[125,291,66,0.017386335152066102],[125,291,67,0.01778679980347579],[125,291,68,0.018318948358823146],[125,291,69,0.019021647115605913],[125,291,70,0.019912244351803873],[125,291,71,0.020989821556253816],[125,291,72,0.02094383821276998],[125,291,73,0.01954350706731568],[125,291,74,0.018032374535853223],[125,291,75,0.016451780246508705],[125,291,76,0.01484631353290093],[125,291,77,0.013261613522057774],[125,291,78,0.011742442798277637],[125,291,79,0.0103310360799838],[125,292,64,0.01800490400035665],[125,292,65,0.01822508020896242],[125,292,66,0.0185160399534876],[125,292,67,0.018893921002781464],[125,292,68,0.01939556706569315],[125,292,69,0.02005850251219796],[125,292,70,0.020899225722077665],[125,292,71,0.021270005813462153],[125,292,72,0.020086593148415037],[125,292,73,0.018766777058908064],[125,292,74,0.017345415069990332],[125,292,75,0.01586279653065425],[125,292,76,0.014362217203740165],[125,292,77,0.012887825834866085],[125,292,78,0.011482744543290329],[125,292,79,0.01018746440459353],[125,293,64,0.018856780348351337],[125,293,65,0.019071821763706334],[125,293,66,0.01935309037890684],[125,293,67,0.019716612969749955],[125,293,68,0.02019827133962416],[125,293,69,0.020834194689401918],[125,293,70,0.02154786998896219],[125,293,71,0.02057087815017473],[125,293,72,0.019439492671345787],[125,293,73,0.018180294172210527],[125,293,74,0.016827689004293694],[125,293,75,0.015421251311479636],[125,293,76,0.014003335205277261],[125,293,77,0.012616959319590185],[125,293,78,0.011303965530926401],[125,293,79,0.010103453156885418],[125,294,64,0.019369781540977585],[125,294,65,0.019583548201458537],[125,294,66,0.01986162459612429],[125,294,67,0.02021986447902186],[125,294,68,0.02069313913064449],[125,294,69,0.021316142820109935],[125,294,70,0.021081880514755992],[125,294,71,0.020129562217646283],[125,294,72,0.01902965824106155],[125,294,73,0.017808898605368863],[125,294,74,0.016501578327652304],[125,294,75,0.015146926728236573],[125,294,76,0.013786747402449548],[125,294,77,0.012463331078378452],[125,294,78,0.011217643101567506],[125,294,79,0.010087786813884982],[125,295,64,0.019520037566553596],[125,295,65,0.01973663225126823],[125,295,66,0.020018427873055775],[125,295,67,0.020381032713797775],[125,295,68,0.020858271428734036],[125,295,69,0.021483388378915846],[125,295,70,0.020912177994131777],[125,295,71,0.019964553465382378],[125,295,72,0.01887400819759569],[125,295,73,0.01766773344646123],[125,295,74,0.016380271879972288],[125,295,75,0.01505090318156078],[125,295,76,0.013721300972921159],[125,295,77,0.01243346324702791],[125,295,78,0.011227918020574853],[125,295,79,0.010142205440110423],[125,296,64,0.01929696043404807],[125,296,65,0.019520600826597994],[125,296,66,0.019813215635351118],[125,296,67,0.02019009272525827],[125,296,68,0.02068399505606246],[125,296,69,0.021326734679117585],[125,296,70,0.02104739053449875],[125,296,71,0.020083692819796873],[125,296,72,0.018979427181145245],[125,296,73,0.01776255864289842],[125,296,74,0.016468243584324985],[125,296,75,0.015136219870997362],[125,296,76,0.013808469068211775],[125,296,77,0.012527152911569915],[125,296,78,0.011332825726535342],[125,296,79,0.010262924011938892],[125,297,64,0.018703571575532433],[125,297,65,0.018938444990747736],[125,297,66,0.019248919480862617],[125,297,67,0.01964989011833852],[125,297,68,0.020173069210226033],[125,297,69,0.020848891245087743],[125,297,70,0.021484848457652795],[125,297,71,0.02048420270912525],[125,297,72,0.019342922007006148],[125,297,73,0.018090046298125557],[125,297,74,0.016761705693065194],[125,297,75,0.015398502872078047],[125,297,76,0.014043168441686994],[125,297,77,0.012738491417295637],[125,297,78,0.01152552652119706],[125,297,79,0.01044207950597489],[125,298,64,0.017756832135710904],[125,298,65,0.01800693307364116],[125,298,66,0.018341976590235152],[125,298,67,0.018776397407069222],[125,298,68,0.01934089620612749],[125,298,69,0.020064623473369056],[125,298,70,0.020956890605484255],[125,298,71,0.02115271303624019],[125,298,72,0.019951763517037976],[125,298,73,0.01863805680717331],[125,298,74,0.01724903655054847],[125,298,75,0.01582656024840792],[125,298,76,0.014414535534458154],[125,298,77,0.013056832560596601],[125,298,78,0.011795474195418069],[125,298,79,0.010669105255067007],[125,299,64,0.016487976627377367],[125,299,65,0.016756927423043095],[125,299,66,0.01712262301839725],[125,299,67,0.017598974524428237],[125,299,68,0.01821573690090517],[125,299,69,0.019000908066110888],[125,299,70,0.01996248450880309],[125,299,71,0.021091759444012526],[125,299,72,0.020783613928827813],[125,299,73,0.01938589535617916],[125,299,74,0.01791118240383283],[125,299,75,0.016402943739491083],[125,299,76,0.014906660573084396],[125,299,77,0.013467709235162093],[125,299,78,0.01212952268536135],[125,299,79,0.01093203219434957],[125,300,64,0.01494285048736025],[125,300,65,0.015233705326578681],[125,300,66,0.015635191401926155],[125,300,67,0.01616063401781968],[125,300,68,0.016838931327239615],[125,300,69,0.01769709475459508],[125,300,70,0.018741869502311093],[125,300,71,0.01996307479885011],[125,300,72,0.021337126146283428],[125,300,73,0.020304548321433698],[125,300,74,0.018722032818341602],[125,300,75,0.017104476606994313],[125,300,76,0.01549927929225646],[125,300,77,0.01395369818130836],[125,300,78,0.012512970448645145],[125,300,79,0.01121871673336475],[125,301,64,0.013182252128443811],[125,301,65,0.013497284699287689],[125,301,66,0.013938413672305885],[125,301,67,0.014518311512059075],[125,301,68,0.01526512510557671],[125,301,69,0.01620507486871403],[125,301,70,0.017343758986771943],[125,301,71,0.01866954099836372],[125,301,72,0.020157127429797226],[125,301,73,0.021356899110759192],[125,301,74,0.01964876927787309],[125,301,75,0.017902747260825018],[125,301,76,0.016168421951411768],[125,301,77,0.014495232560583611],[125,301,78,0.012930542341302106],[125,301,79,0.011517995099079428],[125,302,64,0.011282280149121138],[125,302,65,0.011622755195084317],[125,302,66,0.012105729425197751],[125,302,67,0.012743142077280901],[125,302,68,0.013562502255473957],[125,302,69,0.01458945735050519],[125,302,70,0.015828602917372],[125,302,71,0.0172669206511317],[125,302,72,0.018877418495605404],[125,302,73,0.020622502446603366],[125,302,74,0.020652186567543553],[125,302,75,0.018764568321786503],[125,302,76,0.016887019366508355],[125,302,77,0.015071362147348761],[125,302,78,0.013367308863288428],[125,302,79,0.011820764098552216],[125,303,64,0.009310078454360953],[125,303,65,0.009676737805541446],[125,303,66,0.010202628528174258],[125,303,67,0.010898865662168857],[125,303,68,0.011792435292725311],[125,303,69,0.012908639569423177],[125,303,70,0.014251242950377727],[125,303,71,0.015805961992721253],[125,303,72,0.017544173080906608],[125,303,73,0.01942635078939347],[125,303,74,0.021405232870681266],[125,303,75,0.019659709567764194],[125,303,76,0.017630568444704064],[125,303,77,0.015663373139921524],[125,303,78,0.013810311381869842],[125,303,79,0.01211969072263945],[125,304,64,0.007255082426338276],[125,304,65,0.007650642916353301],[125,304,66,0.008222433281174859],[125,304,67,0.008980685837306128],[125,304,68,0.00995198537729481],[125,304,69,0.011161501806520882],[125,304,70,0.012612321337409547],[125,304,71,0.014288991747939826],[125,304,72,0.016161304511155907],[125,304,73,0.01818780622240429],[125,304,74,0.020319035216924082],[125,304,75,0.020580327069977755],[125,304,76,0.018390189398878955],[125,304,77,0.016261508430217505],[125,304,78,0.014249072717664688],[125,304,79,0.012403728535893818],[125,305,64,0.005109670573406234],[125,305,65,0.005538848724632274],[125,305,66,0.006161472417147089],[125,305,67,0.006986867792052598],[125,305,68,0.008041343017107749],[125,305,69,0.009350126249061416],[125,305,70,0.010915752940256521],[125,305,71,0.01272167248915047],[125,305,72,0.014736113127530877],[125,305,73,0.01691567427041036],[125,305,74,0.01920864211229812],[125,305,75,0.02151514246982925],[125,305,76,0.019153593035687855],[125,305,77,0.01685264857859204],[125,305,78,0.014669822288960391],[125,305,79,0.012658627690910093],[125,306,64,0.002889960900190006],[125,306,65,0.0033588026728621034],[125,306,66,0.004038342358647752],[125,306,67,0.004937002139796976],[125,306,68,0.0060809340962438],[125,306,69,0.007495589612097019],[125,306,70,0.009183059688587758],[125,306,71,0.011125750148455541],[125,306,72,0.013290338138369136],[125,306,73,0.015631453590085765],[125,306,74,0.018095081304384444],[125,306,75,0.020621679850162156],[125,306,76,0.019901406635575186],[125,306,77,0.01741849711910817],[125,306,78,0.015055493398949758],[125,306,79,0.012868671993631326],[125,307,64,6.305314634329003E-4],[125,307,65,0.0011458295651026501],[125,307,66,0.0018888365228340329],[125,307,67,0.002867090733058976],[125,307,68,0.004106698318423509],[125,307,69,0.005633470234121267],[125,307,70,0.007449140941220688],[125,307,71,0.009535119696511234],[125,307,72,0.011856547129592802],[125,307,73,0.01436607348289648],[125,307,74,0.017007354049152906],[125,307,75,0.019718257877613228],[125,307,76,0.020609299507191276],[125,307,77,0.017937315213333683],[125,307,78,0.015387070923411838],[125,307,79,0.01301764938392635],[125,308,64,-0.0016204886843633956],[125,308,65,-0.001051694361754989],[125,308,66,-2.3876654075389935E-4],[125,308,67,8.249812651572702E-4],[125,308,68,0.0021657035386853742],[125,308,69,0.003809675577537263],[125,308,70,0.0057583464950313615],[125,308,71,0.00799217378320821],[125,308,72,0.01047478729471874],[125,308,73,0.013156870720648896],[125,308,74,0.01597975596110129],[125,308,75,0.018878726332092022],[125,308,76,0.021249939374192634],[125,308,77,0.018385510140332087],[125,308,78,0.01564481499965721],[125,308,79,0.013089719384889903],[125,309,64,-0.003805957078355691],[125,309,65,-0.0031768004244842394],[125,309,66,-0.0022880552932570417],[125,309,67,-0.0011338485578513994],[125,309,68,3.1209666329329625E-4],[125,309,69,0.0020765907101220594],[125,309,70,0.004160852714826832],[125,309,71,0.00654443471311698],[125,309,72,0.009189498660930844],[125,309,73,0.012044805869313044],[125,309,74,0.01504941411070194],[125,309,75,0.018136078208090385],[125,309,76,0.021234350481575823],[125,309,77,0.01873907771838825],[125,309,78,0.01580936085742884],[125,309,79,0.013070177695892334],[125,310,64,-0.005863883329791027],[125,310,65,-0.005168018998632959],[125,310,66,-0.0041984771743339856],[125,310,67,-0.00295015690109054],[125,310,68,-0.0013966085889174848],[125,310,69,4.895479821986181E-4],[125,310,70,0.00270934192348069],[125,310,71,0.005241469823775239],[125,310,72,0.00804668931342225],[125,310,73,0.011071919053957519],[125,310,74,0.01425404026015821],[125,310,75,0.01752339543212563],[125,310,76,0.020806980551298378],[125,310,77,0.01897489887026209],[125,310,78,0.015862695019008596],[125,310,79,0.01294611816277666],[125,311,64,-0.007731222331989514],[125,311,65,-0.006963103422751893],[125,311,66,-0.005908970340903517],[125,311,67,-0.004564453749129642],[125,311,68,-0.002902907130768322],[125,311,69,-8.963822217070959E-4],[125,311,70,0.0014559848818955883],[125,311,71,0.004132090052956192],[125,311,72,0.007091372367323292],[125,311,73,0.010279024884643734],[125,311,74,0.013629899935834472],[125,311,75,0.017072104462279077],[125,311,76,0.0205302815425223],[125,311,77,0.01907189064671262],[125,311,78,0.015789008170553336],[125,311,79,0.012706992406612796],[125,312,64,-0.009347295400355388],[125,312,65,-0.008502386571432105],[125,312,66,-0.007361235495111832],[125,312,67,-0.005920167280138958],[125,312,68,-0.004152341555440135],[125,312,69,-0.0020292800867500412],[125,312,70,4.497259043633201E-4],[125,312,71,0.0032618312233336304],[125,312,72,0.006365264206217116],[125,312,73,0.009703646061006902],[125,312,74,0.013209996862207776],[125,312,75,0.01681042361531573],[125,312,76,0.020427486414094947],[125,312,77,0.01901201211202355],[125,312,78,0.015575425069088553],[125,312,79,0.012345067429541588],[125,313,64,-0.010656839933754556],[125,313,65,-0.009731770723213656],[125,313,66,-0.008502648459747122],[125,313,67,-0.006966461349077416],[125,313,68,-0.00509620549010595],[125,313,69,-0.0028629450370339683],[125,313,70,-2.661301016497001E-4],[125,313,71,0.002670717341002582],[125,313,72,0.0059047432999068915],[125,313,73,0.009378184993249794],[125,313,74,0.013022472128904082],[125,313,75,0.016762001535289922],[125,313,76,0.020517581060454586],[125,313,77,0.018781125569520767],[125,313,78,0.015212611898943051],[125,313,79,0.011855781541876893],[125,314,64,-0.011612688519644034],[125,314,65,-0.010605351670339672],[125,314,66,-0.009288814464407201],[125,314,67,-0.00766070505079955],[125,314,68,-0.005693912223898305],[125,314,69,-0.0033591454288248498],[125,314,70,-6.560296094118182E-4],[125,314,71,0.0023913049998993204],[125,314,72,0.0057390687333439844],[125,314,73,0.00932833262083439],[125,314,74,0.01308921733061094],[125,314,75,0.016944746110490207],[125,314,76,0.02081435755064478],[125,314,77,0.018369713663732013],[125,314,78,0.01469526152695587],[125,314,79,0.011237998968111793],[125,315,64,-0.012178078701586574],[125,315,65,-0.011087678299889572],[125,315,66,-0.009685765373212706],[125,315,67,-0.007970595585207976],[125,315,68,-0.005915029813480432],[125,315,69,-0.0034895504415785273],[125,315,70,-6.939825942674342E-4],[125,315,71,0.002447007809243852],[125,315,72,0.005888857425223309],[125,315,73,0.009571713478864177],[125,315,74,0.013424700810816204],[125,315,75,0.01736984305925728],[125,315,76,0.02132563371760837],[125,315,77,0.017773452937950598],[125,315,78,0.014022457126696147],[125,315,79,0.01049416349007365],[125,316,64,-0.012328594881964477],[125,316,65,-0.011155649116863389],[125,316,66,-0.00967180131169861],[125,316,67,-0.00787593585841569],[125,316,68,-0.0057409840655320565],[125,316,69,-0.003237345519994403],[125,316,70,-3.6507609787743395E-4],[125,316,71,0.002850699617857512],[125,316,72,0.006364818890653934],[125,316,73,0.010116765957760381],[125,316,74,0.014035006055970236],[125,316,75,0.018040963341000547],[125,316,76,0.020943268115773087],[125,316,77,0.01699364445045727],[125,316,78,0.013197914647278675],[125,316,79,0.0096303514723782],[125,317,64,-0.012053744041273257],[125,317,65,-0.010800047375862794],[125,317,66,-0.00923897833339962],[125,317,67,-0.0073700684231592],[125,317,68,-0.005166430950702288],[125,317,69,-0.0025985328609055406],[125,317,70,3.333093439053244E-4],[125,317,71,0.0036035951999463583],[125,317,72,0.007166746309662148],[125,317,73,0.01096185662627503],[125,317,74,0.014917081228523811],[125,317,75,0.018953658508158926],[125,317,76,0.02000468753821188],[125,317,77,0.016037502058376337],[125,317,78,0.012230104591132364],[125,317,79,0.008656224587684787],[125,318,64,-0.011358167114515596],[125,318,65,-0.010026716635420069],[125,318,66,-0.008394243901999766],[125,318,67,-0.0064609674850162595],[125,318,68,-0.004200300114809046],[125,318,69,-0.0015829185376620674],[125,318,70,0.0013905789027650979],[125,318,71,0.0046944069942406845],[125,318,72,0.008282762604397555],[125,318,73,0.012094627443238956],[125,318,74,0.016058198797217316],[125,318,75,0.02009494309954513],[125,318,76,0.018870361964538767],[125,318,77,0.014918298963840306],[125,318,78,0.011132253536201531],[125,318,79,0.007584882516112061],[125,319,64,-0.010262487970817765],[125,319,65,-0.008857378643767481],[125,319,66,-0.007160222048894379],[125,319,67,-0.005171990774653583],[125,319,68,-0.0028665112168024787],[125,319,69,-2.1478790851048546E-4],[125,319,70,0.002782296738728175],[125,319,71,0.006098776455005611],[125,319,72,0.009688820205304673],[125,319,73,0.013491574671975617],[125,319,74,0.01743562422300492],[125,319,75,0.02144306318726334],[125,319,76,0.017560967908278668],[125,319,77,0.013655373081446568],[125,319,78,0.00992222579034976],[125,319,79,0.006432615833521685],[126,-64,64,-0.0020086655139618854],[126,-64,65,-0.002768446164744543],[126,-64,66,-0.0034230894568751786],[126,-64,67,-0.0039757238004771815],[126,-64,68,-0.004417786011603316],[126,-64,69,-0.004728448118856157],[126,-64,70,-0.004887532099328262],[126,-64,71,-0.00487691577918335],[126,-64,72,-0.004681499434596846],[126,-64,73,-0.004290019242270053],[126,-64,74,-0.0036957031901084267],[126,-64,75,-0.0028967651967652997],[126,-64,76,-0.001896733352721618],[126,-64,77,-7.046083832021439E-4],[126,-64,78,6.651513578911329E-4],[126,-64,79,0.0021928218262842357],[126,-63,64,-0.0015250627938431633],[126,-63,65,-0.002279778900057705],[126,-63,66,-0.0029258971733144485],[126,-63,67,-0.003466739513028236],[126,-63,68,-0.0038946350140088813],[126,-63,69,-0.00418991863812729],[126,-63,70,-0.004333440301984465],[126,-63,71,-0.004307968440395537],[126,-63,72,-0.004099161932344194],[126,-63,73,-0.00369638864974489],[126,-63,74,-0.0030933863032023704],[126,-63,75,-0.0022887613977643976],[126,-63,76,-0.001286322276017495],[126,-63,77,-9.524241356891184E-5],[126,-63,78,0.0012699496594294841],[126,-63,79,0.002789557210110096],[126,-62,64,-8.7051906271407E-4],[126,-62,65,-0.0016195669695058894],[126,-62,66,-0.0022580988688463534],[126,-62,67,-0.0027892695413972166],[126,-62,68,-0.0032063376188610484],[126,-62,69,-0.0034911296419863013],[126,-62,70,-0.003625768899901042],[126,-62,71,-0.0035940734325064605],[126,-62,72,-0.0033825390259141093],[126,-62,73,-0.0029811689003226326],[126,-62,74,-0.0023841458309659122],[126,-62,75,-0.0015903425813311115],[126,-62,76,-6.036666916632632E-4],[126,-62,77,5.667641473681574E-4],[126,-62,78,0.001906619698490157],[126,-62,79,0.003396531096283074],[126,-61,64,-5.467798309536723E-5],[126,-61,65,-7.977382886640305E-4],[126,-61,66,-0.0014299576417153084],[126,-61,67,-0.001953990429920601],[126,-61,68,-0.002364050340221199],[126,-61,69,-0.00264374625820002],[126,-61,70,-0.002776685931397402],[126,-61,71,-0.0027478658579783424],[126,-61,72,-0.0025446710918992322],[126,-61,73,-0.0021577220879636363],[126,-61,74,-0.0015815643958366598],[126,-61,75,-8.151971495467445E-4],[126,-61,76,1.3756353856306534E-4],[126,-61,77,0.0012678899852727559],[126,-61,78,0.002561920645606042],[126,-61,79,0.004000913400631673],[126,-60,64,9.085230584373234E-4],[126,-60,65,1.7144707381631214E-4],[126,-60,66,-4.560529068676279E-4],[126,-60,67,-9.758414854505262E-4],[126,-60,68,-0.0013831044937085508],[126,-60,69,-0.0016634786640919782],[126,-60,70,-0.0018022274227194827],[126,-60,71,-0.001785620967358149],[126,-60,72,-0.0016019584984351114],[126,-60,73,-0.001242438086471416],[126,-60,74,-7.018700544893486E-4],[126,-60,75,2.0770110474929134E-5],[126,-60,76,9.219531423234051E-4],[126,-60,77,0.001993375320066536],[126,-60,78,0.0032219091710423858],[126,-60,79,0.004589728772574979],[126,-59,64,0.0020013602145792678],[126,-59,65,0.0012699029864852171],[126,-59,66,6.452282895525577E-4],[126,-59,67,1.2648849634774143E-4],[126,-59,68,-2.824880496788635E-4],[126,-59,69,-5.695600717232072E-4],[126,-59,70,-7.21773563682464E-4],[126,-59,71,-7.267314195482951E-4],[126,-59,72,-5.736434758202272E-4],[126,-59,73,-2.5422499723120473E-4],[126,-59,74,2.3656044617666327E-4],[126,-59,75,8.999176295358186E-4],[126,-59,76,0.0017327996125698865],[126,-59,77,0.0027276545494812872],[126,-59,78,0.003872342751109876],[126,-59,79,0.005150227164103543],[126,-58,64,0.0032029594762103043],[126,-58,65,0.0024763517924901754],[126,-58,66,0.001852327411058603],[126,-58,67,0.0013312004719921028],[126,-58,68,9.157963167460388E-4],[126,-58,69,6.158960421189535E-4],[126,-58,70,4.4259179016627415E-4],[126,-58,71,4.0692692128234354E-4],[126,-58,72,5.188130938686529E-4],[126,-58,73,7.860979319193596E-4],[126,-58,74,0.001213787264105213],[126,-58,75,0.0018034257879196037],[126,-58,76,0.0025526398581570318],[126,-58,77,0.003454845922590935],[126,-58,78,0.004499127931581267],[126,-58,79,0.00567028683504093],[126,-57,64,0.004490060992266073],[126,-57,65,0.0037670862000701386],[126,-57,66,0.003141276875559561],[126,-57,67,0.002614149167759823],[126,-57,68,0.0021874957662386964],[126,-57,69,0.0018686582462539268],[126,-57,70,0.0016668370933061744],[126,-57,71,0.0015917394993643183],[126,-57,72,0.0016524588830934444],[126,-57,73,0.0018565039252677387],[126,-57,74,0.0022089810368431766],[126,-57,75,0.002711934050527341],[126,-57,76,0.003363844775949974],[126,-57,77,0.004159297885852789],[126,-57,78,0.005088813408432896],[126,-57,79,0.006138849891643484],[126,-56,64,0.0058351864333138345],[126,-56,65,0.005114192153023049],[126,-56,66,0.004483962112978381],[126,-56,67,0.003947138789982694],[126,-56,68,0.0035044370425688105],[126,-56,69,0.0031607415662467287],[126,-56,70,0.0029233821030457603],[126,-56,71,0.002800785211645983],[126,-56,72,0.0028013121822594088],[126,-56,73,0.0029322453429213922],[126,-56,74,0.0031989266115855083],[126,-56,75,0.003604052025328663],[126,-56,76,0.004147125830945019],[126,-56,77,0.004824077552356207],[126,-56,78,0.005627045261918546],[126,-56,79,0.006544328077398135],[126,-55,64,0.007192179290390474],[126,-55,65,0.00647148204933209],[126,-55,66,0.0058343189518903224],[126,-55,67,0.005284342357980363],[126,-55,68,0.0048211776112326715],[126,-55,69,0.004447310894436381],[126,-55,70,0.00416827675294082],[126,-55,71,0.003991310947431357],[126,-55,72,0.003924144866257755],[126,-55,73,0.00397394711449213],[126,-55,74,0.004146416071603273],[126,-55,75,0.004445027090117316],[126,-55,76,0.004870437864326666],[126,-55,77,0.005420055333102802],[126,-55,78,0.006087767296460983],[126,-55,79,0.006863841724227392],[126,-54,64,0.00851319248241395],[126,-54,65,0.00779129069069437],[126,-54,66,0.007144991611028976],[126,-54,67,0.0065788375703468875],[126,-54,68,0.00609140539012819],[126,-54,69,0.005682917202478418],[126,-54,70,0.005357240041636867],[126,-54,71,0.0051205385090328905],[126,-54,72,0.004980026391031238],[126,-54,73,0.004942864079730514],[126,-54,74,0.005015205523505165],[126,-54,75,0.005201398317920597],[126,-54,76,0.0055033404079771935],[126,-54,77,0.005919996711414836],[126,-54,78,0.006447078792299924],[126,-54,79,0.0070768905168069095],[126,-53,64,0.009759105862583104],[126,-53,65,0.00903471081974945],[126,-53,66,0.008377440264429669],[126,-53,67,0.0077926024151892806],[126,-53,68,0.007277812368656825],[126,-53,69,0.006831230290660764],[126,-53,70,0.006455229101674288],[126,-53,71,0.006155047075241279],[126,-53,72,0.005937499689325123],[126,-53,73,0.00580983569857253],[126,-53,74,0.005778741083778802],[126,-53,75,0.005849494422008329],[126,-53,76,0.0060252770846073705],[126,-53,77,0.006306641512774998],[126,-53,78,0.00669114064366115],[126,-53,79,0.007173121366593184],[126,-52,64,0.010899730033907054],[126,-52,65,0.010171797377775646],[126,-52,66,0.009502141826220717],[126,-52,67,0.008896709691614985],[126,-52,68,0.008352280144153575],[126,-52,69,0.007865211814807647],[126,-52,70,0.007436595506867215],[126,-52,71,0.007070908038727375],[126,-52,72,0.006774689395619453],[126,-52,73,0.006555362279098642],[126,-52,74,0.006420197633097559],[126,-52,75,0.006375429615425578],[126,-52,76,0.006425523350578514],[126,-52,77,0.006572598645615665],[126,-52,78,0.006816012677850683],[126,-52,79,0.007152104473609703],[126,-51,64,0.010843973777731252],[126,-51,65,0.01118183530462594],[126,-51,66,0.010498853638650425],[126,-51,67,0.009871583360830948],[126,-51,68,0.009296125909984587],[126,-51,69,0.008767347281048842],[126,-51,70,0.008285299123995856],[126,-51,71,0.00785387615897512],[126,-51,72,0.007479465458261961],[126,-51,73,0.007169736044293681],[126,-51,74,0.006932572296743857],[126,-51,75,0.006775154554154522],[126,-51,76,0.006703190165510561],[126,-51,77,0.006720298096256125],[126,-51,78,0.006827550023765287],[126,-51,79,0.007023170671570111],[126,-50,64,0.009936624309934626],[126,-50,65,0.010729181680159327],[126,-50,66,0.011356985362904923],[126,-50,67,0.010707361462702222],[126,-50,68,0.010100453030238732],[126,-50,69,0.00952998046492777],[126,-50,70,0.008995222191854972],[126,-50,71,0.00849967884550532],[126,-50,72,0.00804970300465025],[126,-50,73,0.007653266898983168],[126,-50,74,0.007318871485374816],[126,-50,75,0.0070546001862215706],[126,-50,76,0.0068673204547302765],[126,-50,77,0.0067620361840393705],[126,-50,78,0.0067413938109166715],[126,-50,79,0.00680534478273821],[126,-49,64,0.009177609376418878],[126,-49,65,0.009972891163800995],[126,-49,66,0.01073580325480527],[126,-49,67,0.011399918184508724],[126,-49,68,0.010762765917000275],[126,-49,69,0.01015253513672454],[126,-49,70,0.00956799980786415],[126,-49,71,0.009012444282402715],[126,-49,72,0.008492283736601318],[126,-49,73,0.008015819904738928],[126,-49,74,0.007592135401443532],[126,-49,75,0.007230129820129138],[126,-49,76,0.006937700669596899],[126,-49,77,0.006721072065627879],[126,-49,78,0.006584273931442654],[126,-49,79,0.006528774282517653],[126,-48,64,0.008588128652327899],[126,-48,65,0.009383092767080329],[126,-48,66,0.01015366866339709],[126,-48,67,0.01089264238730304],[126,-48,68,0.011274795277828004],[126,-48,69,0.01063086064465615],[126,-48,70,0.010003878557724978],[126,-48,71,0.009397032810232402],[126,-48,72,0.008816826604975072],[126,-48,73,0.00827184003547043],[126,-48,74,0.007771622692091444],[126,-48,75,0.007325724456046536],[126,-48,76,0.006942867420771483],[126,-48,77,0.006630261737959529],[126,-48,78,0.006393068026036128],[126,-48,79,0.006234008804614141],[126,-47,64,0.008185099411242546],[126,-47,65,0.008974112067565772],[126,-47,66,0.009745675461810778],[126,-47,67,0.0104926301821938],[126,-47,68,0.011219740662784498],[126,-47,69,0.010964281156983405],[126,-47,70,0.010306242900106101],[126,-47,71,0.009661032774577872],[126,-47,72,0.009035196085336572],[126,-47,73,0.008437466095896412],[126,-47,74,0.007877670981990135],[126,-47,75,0.007365774338386115],[126,-47,76,0.006911052030059257],[126,-47,77,0.006521408040072186],[126,-47,78,0.006202831811447512],[126,-47,79,0.005958999411137153],[126,-46,64,0.0079760001854057],[126,-46,65,0.008751424399045695],[126,-46,66,0.009515029215850622],[126,-46,67,0.010259878094175612],[126,-46,68,0.01099060216541777],[126,-46,69,0.011157791523014826],[126,-46,70,0.010483155191147469],[126,-46,71,0.009815651265242819],[126,-46,72,0.009161763760965173],[126,-46,73,0.008530196473044756],[126,-46,74,0.0079308123831693],[126,-46,75,0.00737370068047987],[126,-46,76,0.006868374008166279],[126,-46,77,0.006423098415384471],[126,-46,78,0.006044358344219176],[126,-46,79,0.00573645881874897],[126,-45,64,0.007959890570874975],[126,-45,65,0.008712627989334787],[126,-45,66,0.00945767879903087],[126,-45,67,0.010188503719158365],[126,-45,68,0.010909518205980174],[126,-45,69,0.011221333319449129],[126,-45,70,0.010546709189239278],[126,-45,71,0.009875149495687375],[126,-45,72,0.009212928625814782],[126,-45,73,0.00856849587124118],[126,-45,74,0.007951466535784305],[126,-45,75,0.007371733228040543],[126,-45,76,0.006838699744452798],[126,-45,77,0.006360639820031818],[126,-45,78,0.00594418288155966],[126,-45,79,0.005593928783710988],[126,-44,64,0.008128407325217381],[126,-44,65,0.008848394769867853],[126,-44,66,0.00956321596969057],[126,-44,67,0.010266904674909535],[126,-44,68,0.010963608874837069],[126,-44,69,0.011169087254047512],[126,-44,70,0.01051239862142593],[126,-44,71,0.009856292301593472],[126,-44,72,0.00920665102523587],[126,-44,73,0.008571415750946243],[126,-44,74,0.00795964803106453],[126,-44,75,0.00738070353883573],[126,-44,76,0.006843518925100822],[126,-44,77,0.006356014052005263],[126,-44,78,0.005924611517903665],[126,-44,79,0.00555387524355486],[126,-43,64,0.008466739810917452],[126,-43,65,0.009143401752054104],[126,-43,66,0.00981575670675237],[126,-43,67,0.010478583708932461],[126,-43,68,0.011135741660781084],[126,-43,69,0.011018779792881225],[126,-43,70,0.010398498893055259],[126,-43,71,0.009777810057660492],[126,-43,72,0.009161998747727433],[126,-43,73,0.008558227189895778],[126,-43,74,0.007974687125493532],[126,-43,75,0.007419853058337744],[126,-43,76,0.006901837905530929],[126,-43,77,0.00642785284432548],[126,-43,78,0.006003773025937658],[126,-43,79,0.005633810695644159],[126,-42,64,0.00895458783837621],[126,-42,65,0.00957724586832205],[126,-42,66,0.010194807032199164],[126,-42,67,0.010802959420930142],[126,-42,68,0.01135449360894182],[126,-42,69,0.010791001876513615],[126,-42,70,0.01022546002600483],[126,-42,71,0.009659871322651102],[126,-42,72,0.009098703801978034],[126,-42,73,0.008548064919045613],[126,-42,74,0.00801496270534877],[126,-42,75,0.007506655140076083],[126,-42,76,0.007030089353393377],[126,-42,77,0.006591432179836027],[126,-42,78,0.0061956934710474185],[126,-42,79,0.005846443460428896],[126,-41,64,0.009567104953328912],[126,-41,65,0.010125345169424465],[126,-41,66,0.010676116043391528],[126,-41,67,0.011216165139498534],[126,-41,68,0.011001870380306637],[126,-41,69,0.01050853759655131],[126,-41,70,0.01001530892075872],[126,-41,71,0.009523564539072101],[126,-41,72,0.009036728439069115],[126,-41,73,0.008559581323646965],[126,-41,74,0.008097646513740231],[126,-41,75,0.007656650230493322],[126,-41,76,0.00724205757027422],[126,-41,77,0.006858685400154329],[126,-41,78,0.006510393308280052],[126,-41,79,0.006199853644144547],[126,-40,64,0.010275830194506059],[126,-40,65,0.010759829253699367],[126,-40,66,0.011232518864393984],[126,-40,67,0.011016736156926095],[126,-40,68,0.010603731853070035],[126,-40,69,0.010195700717210467],[126,-40,70,0.009791059053922158],[126,-40,71,0.009390387135784394],[126,-40,72,0.008995839009993905],[126,-40,73,0.008610609241357599],[126,-40,74,0.008238457708125117],[126,-40,75,0.007883293511086407],[126,-40,76,0.007548818993091282],[126,-40,77,0.007238234796454642],[126,-40,78,0.006954006810465385],[126,-40,79,0.006697695781396997],[126,-39,64,0.011049611318148272],[126,-39,65,0.01118522425037309],[126,-39,66,0.010837157566411824],[126,-39,67,0.01050537503813762],[126,-39,68,0.010186799019303675],[126,-39,69,0.009877676947077415],[126,-39,70,0.009576125745599335],[126,-39,71,0.009281740409396019],[126,-39,72,0.008995186283637636],[126,-39,73,0.008717832434599178],[126,-39,74,0.008451426874828114],[126,-39,75,0.008197814365294313],[126,-39,76,0.007958697469688443],[126,-39,77,0.007735441484636154],[126,-39,78,0.007528923814544149],[126,-39,79,0.007339428301806039],[126,-38,64,0.010749627998947305],[126,-38,65,0.010475378046892463],[126,-38,66,0.010222926743526251],[126,-38,67,0.009991626873190483],[126,-38,68,0.009778382354423312],[126,-38,69,0.009579869894240993],[126,-38,70,0.00939374516053005],[126,-38,71,0.009218428593564613],[126,-38,72,0.009052890890073023],[126,-38,73,0.008896462663335214],[126,-38,74,0.008748668688209752],[126,-38,75,0.008609087113717426],[126,-38,76,0.008477233997008017],[126,-38,77,0.00835247348157008],[126,-38,78,0.008233953909794993],[126,-38,79,0.008120570125910009],[126,-37,64,0.009955018844664843],[126,-37,65,0.009776638518158003],[126,-37,66,0.009627204225325876],[126,-37,67,0.009504628307494734],[126,-37,68,0.00940566372575589],[126,-37,69,0.00932724867364509],[126,-37,70,0.009266395243156558],[126,-37,71,0.009220160564444507],[126,-37,72,0.009185632598510445],[126,-37,73,0.009159922337051124],[126,-37,74,0.009140162465693262],[126,-37,75,0.009123512538614728],[126,-37,76,0.009107170704105381],[126,-37,77,0.009088392012071348],[126,-37,78,0.009064513325951812],[126,-37,79,0.009032984853134888],[126,-36,64,0.009198701431796722],[126,-36,65,0.00912120672793427],[126,-36,66,0.009080455244341428],[126,-36,67,0.009072894890945224],[126,-36,68,0.009094977789826783],[126,-36,69,0.009143695179012343],[126,-36,70,0.009215216829995402],[126,-36,71,0.009305052675534973],[126,-36,72,0.00940824218851981],[126,-36,73,0.009519531780907564],[126,-36,74,0.00963353993573354],[126,-36,75,0.009744909796970107],[126,-36,76,0.009848448955800693],[126,-36,77,0.009939256187510794],[126,-36,78,0.010012834910532212],[126,-36,79,0.010065193158035593],[126,-35,64,0.008513390837899657],[126,-35,65,0.00854018109502731],[126,-35,66,0.00861190062081573],[126,-35,67,0.008723541247386689],[126,-35,68,0.008871090734748422],[126,-35,69,0.009051349083196304],[126,-35,70,0.009259433232956638],[126,-35,71,0.009489131266205734],[126,-35,72,0.009733294727232706],[126,-35,73,0.009984200210754402],[126,-35,74,0.010233879603840583],[126,-35,75,0.010474418400490904],[126,-35,76,0.010698221545561406],[126,-35,77,0.010898246306063583],[126,-35,78,0.011068201712405393],[126,-35,79,0.011202714159426001],[126,-34,64,0.00792990159077849],[126,-34,65,0.008062673308284259],[126,-34,66,0.00824867935629144],[126,-34,67,0.00848149616743325],[126,-34,68,0.008756474287426964],[126,-34,69,0.009069948690509635],[126,-34,70,0.009415766644728991],[126,-34,71,0.009785833445288777],[126,-34,72,0.010170703124170911],[126,-34,73,0.010560119574888224],[126,-34,74,0.010943507171814306],[126,-34,75,0.011310410020454527],[126,-34,76,0.011290018311562101],[126,-34,77,0.011001509686494469],[126,-34,78,0.010755464743539783],[126,-34,79,0.01055852917286244],[126,-33,64,0.007476215673016493],[126,-33,65,0.007714916174248065],[126,-33,66,0.008015003540115362],[126,-33,67,0.00836871044109727],[126,-33,68,0.008770572977858918],[126,-33,69,0.009216165832618117],[126,-33,70,0.009697849782162815],[126,-33,71,0.010205504814410491],[126,-33,72,0.010727310899142235],[126,-33,73,0.011250460487041347],[126,-33,74,0.01114733140101481],[126,-33,75,0.010677546292169751],[126,-33,76,0.01024360940931662],[126,-33,77,0.009856563007254548],[126,-33,78,0.009525939601493031],[126,-33,79,0.009259481253772135],[126,-32,64,0.007176539808958234],[126,-32,65,0.007519361020176379],[126,-32,66,0.007931303323335914],[126,-32,67,0.008403355334740409],[126,-32,68,0.008929062734772194],[126,-32,69,0.009502933076166922],[126,-32,70,0.010115631255881836],[126,-32,71,0.01075489286529148],[126,-32,72,0.011406483167329598],[126,-32,73,0.01084500344842846],[126,-32,74,0.010231250763692568],[126,-32,75,0.009650322330890351],[126,-32,76,0.00911649896557801],[126,-32,77,0.008642564279089745],[126,-32,78,0.0082393843786871],[126,-32,79,0.00791558101599817],[126,-31,64,0.007050349667433039],[126,-31,65,0.007493762387421716],[126,-31,66,0.00801335981985114],[126,-31,67,0.00859900971530749],[126,-31,68,0.009243098978461378],[126,-31,69,0.009938761595575113],[126,-31,70,0.01067477323425589],[126,-31,71,0.01143663486112802],[126,-31,72,0.010688442167672658],[126,-31,73,0.009941542129572996],[126,-31,74,0.009220137281293778],[126,-31,75,0.008541654764525725],[126,-31,76,0.007922244575053314],[126,-31,77,0.007376193184550505],[126,-31,78,0.006915448145136868],[126,-31,79,0.0065492545855424565],[126,-30,64,0.007111418745373109],[126,-30,65,0.007650247874363596],[126,-30,66,0.008271423911351593],[126,-30,67,0.00896383393386781],[126,-30,68,0.00971855247808447],[126,-30,69,0.01052704815858028],[126,-30,70,0.011376040057518617],[126,-30,71,0.01064848401275842],[126,-30,72,0.009786099659709876],[126,-30,73,0.008938049252918065],[126,-30,74,0.008124525783493873],[126,-30,75,0.007364893283842118],[126,-30,76,0.0066769125687411585],[126,-30,77,0.0060760940850568],[126,-30,78,0.005575179010410686],[126,-30,79,0.005183749548418042],[126,-29,64,0.007366829841954702],[126,-29,65,0.007994371124420205],[126,-29,66,0.008709319060824365],[126,-29,67,0.009499728700385866],[126,-29,68,0.010355231352127946],[126,-29,69,0.011265369775311174],[126,-29,70,0.01068854247518054],[126,-29,71,0.009733606732310713],[126,-29,72,0.008778798473021363],[126,-29,73,0.007846417811696543],[126,-29,74,0.006958622622522018],[126,-29,75,0.006136449591055484],[126,-29,76,0.005398976911232131],[126,-29,77,0.004762630012807103],[126,-29,78,0.004240631490214122],[126,-29,79,0.0038425961844234403],[126,-28,64,0.007815967190209654],[126,-28,65,0.008524146103380438],[126,-28,66,0.009323526379365227],[126,-28,67,0.010201477312583257],[126,-28,68,0.01114608771239915],[126,-28,69,0.010769238274777193],[126,-28,70,0.009748165065858365],[126,-28,71,0.008710986968211397],[126,-28,72,0.007681196499508045],[126,-28,73,0.006683070805469198],[126,-28,74,0.005740476215492152],[126,-28,75,0.004875827257995163],[126,-28,76,0.004109201773437997],[126,-28,77,0.0034576135311668163],[126,-28,78,0.002934443516876005],[126,-28,79,0.00254903081313984],[126,-27,64,0.008449487483455422],[126,-27,65,0.009229060971624781],[126,-27,66,0.010102250343014485],[126,-27,67,0.011055869743953905],[126,-27,68,0.010853035561184887],[126,-27,69,0.009793912369433673],[126,-27,70,0.008701602968366631],[126,-27,71,0.007599646394298133],[126,-27,72,0.0065135288996260275],[126,-27,73,0.005469264876582362],[126,-27,74,0.0044921432515695825],[126,-27,75,0.0036056412447437593],[126,-27,76,0.0028305071436195922],[126,-27,77,0.002184013483814507],[126,-27,78,0.0016793817672120796],[126,-27,79,0.0013253795806013144],[126,-26,64,0.009248268217629375],[126,-26,65,0.010089070030997542],[126,-26,66,0.011024463720532385],[126,-26,67,0.01090859089509105],[126,-26,68,0.009839456059042274],[126,-26,69,0.008720507088485636],[126,-26,70,0.007573965813097354],[126,-26,71,0.006425393355352039],[126,-26,72,0.005302044238089659],[126,-26,73,0.004231395146518658],[126,-26,74,0.0032398504960303933],[126,-26,75,0.002351626701013249],[126,-26,76,0.0015878167716615944],[126,-26,77,9.656365881754263E-4],[126,-26,78,4.978539175349133E-4],[126,-26,79,1.9240095021181208E-4],[126,-25,64,0.01018243524505479],[126,-25,65,0.01107366970086593],[126,-25,66,0.010914676117223836],[126,-25,67,0.009861877055486148],[126,-25,68,0.00874448536010302],[126,-25,69,0.007581898750911087],[126,-25,70,0.006398382914096749],[126,-25,71,0.0052212888998583295],[126,-25,72,0.004079362110450291],[126,-25,73,0.0030012357418420415],[126,-25,74,0.0020141108217812975],[126,-25,75,0.0011426247100832403],[126,-25,76,4.0790963837368196E-4],[126,-25,77,-1.731574309333188E-4],[126,-25,78,-5.885126499692415E-4],[126,-25,79,-8.312701646223729E-4],[126,-24,64,0.011216733056103477],[126,-24,65,0.010854747058555948],[126,-24,66,0.009844035853399904],[126,-24,67,0.008754306817626577],[126,-24,68,0.007603670821694517],[126,-24,69,0.0064135789416191755],[126,-24,70,0.005210105948841248],[126,-24,71,0.004022113219956442],[126,-24,72,0.0028795291616033397],[126,-24,73,0.001811822397065416],[126,-24,74,8.466698212003465E-4],[126,-24,75,8.821334427456506E-6],[126,-24,76,-6.808372404455134E-4],[126,-24,77,-0.001206021869871501],[126,-24,78,-0.001555587781112652],[126,-24,79,-0.0017238661468868858],[126,-23,64,0.01071424841497139],[126,-23,65,0.00976643533311804],[126,-23,66,0.008728392956823788],[126,-23,67,0.007614948859652751],[126,-23,68,0.00644556245444879],[126,-23,69,0.005243567438159427],[126,-23,70,0.0040366165548837065],[126,-23,71,0.0028548072585342513],[126,-23,72,0.0017289496280070526],[126,-23,73,6.890338925948144E-4],[126,-23,74,-2.371003869744175E-4],[126,-23,75,-0.0010248917493257302],[126,-23,76,-0.0016539794656930484],[126,-23,77,-0.002108920296773082],[126,-23,78,-0.0023796986288308467],[126,-23,79,-0.0024620295797818897],[126,-22,64,0.009617519004809432],[126,-22,65,0.008648735607968656],[126,-22,66,0.0075942885494399166],[126,-22,67,0.006469376642484655],[126,-22,68,0.005294708087035411],[126,-22,69,0.004095339555011141],[126,-22,70,0.0029002852294781082],[126,-22,71,0.0017406212845229529],[126,-22,72,6.477563795835146E-4],[126,-22,73,-3.480927656162242E-4],[126,-22,74,-0.001219218753496825],[126,-22,75,-0.0019415322142040219],[126,-22,76,-0.002495460537443951],[126,-22,77,-0.002866635677342954],[126,-22,78,-0.003046370423723712],[126,-22,79,-0.003031922879171949],[126,-21,64,0.008509082643360536],[126,-21,65,0.007527659436961161],[126,-21,66,0.006466369507988257],[126,-21,67,0.00534075687269835],[126,-21,68,0.004172681431255593],[126,-21,69,0.002988778715397474],[126,-21,70,0.0018192297705176095],[126,-21,71,6.958586093961987E-4],[126,-21,72,-3.4958127143384194E-4],[126,-21,73,-0.0012869110595438295],[126,-21,74,-0.002088819618640809],[126,-21,75,-0.0027319437856478924],[126,-21,76,-0.0031977348031788106],[126,-21,77,-0.003473110072518216],[126,-21,78,-0.0035508897687934757],[126,-21,79,-0.003430018214716217],[126,-20,64,0.007416036849326596],[126,-20,65,0.006428589345935923],[126,-20,66,0.005368136860612514],[126,-20,67,0.004250531354848295],[126,-20,68,0.0030986927149292106],[126,-20,69,0.0019407128401396293],[126,-20,70,8.077761572584188E-4],[126,-20,71,-2.6773850988113656E-4],[126,-20,72,-0.0012539443562640422],[126,-20,73,-0.0021209204824867156],[126,-20,74,-0.002841971509010144],[126,-20,75,-0.003394671526802742],[126,-20,76,-0.003761691353201238],[126,-20,77,-0.0039314084258926085],[126,-20,78,-0.00389829903260278],[126,-20,79,-0.0036631129355992912],[126,-19,64,0.006366176847483484],[126,-19,65,0.005377094708900079],[126,-19,66,0.004322699714256224],[126,-19,67,0.0032191026860588566],[126,-19,68,0.0020902013240851162],[126,-19,69,9.65450732264502E-4],[126,-19,70,-1.2308278662312555E-4],[126,-19,71,-0.0011426076042934425],[126,-19,72,-0.0020612582897505216],[126,-19,73,-0.0028495321189359302],[126,-19,74,-0.0034815089544359946],[126,-19,75,-0.003935853241055682],[126,-19,76,-0.004196597232087636],[126,-19,77,-0.0042537049331387855],[126,-19,78,-0.004103416621783216],[126,-19,79,-0.0037483741682559136],[126,-18,64,0.005388876245574065],[126,-18,65,0.004399756220273161],[126,-18,66,0.0033535361401239978],[126,-18,67,0.0022665251879926077],[126,-18,68,0.0011635318117247516],[126,-18,69,7.531977195939471E-5],[126,-18,70,-9.652296794690908E-4],[126,-18,71,-0.0019249881432912455],[126,-18,72,-0.0027721929954487813],[126,-18,73,-0.003477843160630597],[126,-18,74,-0.004016876251627104],[126,-18,75,-0.004369125961578903],[126,-18,76,-0.004520058973635541],[126,-18,77,-0.004461291031808544],[126,-18,78,-0.004190882194193452],[126,-18,79,-0.003713411661352969],[126,-17,64,0.004504304700453667],[126,-17,65,0.00351440210087394],[126,-17,66,0.0024759216401688557],[126,-17,67,0.001405302195947085],[126,-17,68,3.2820728616137445E-4],[126,-17,69,-7.233164357221859E-4],[126,-17,70,-0.0017155992001009048],[126,-17,71,-0.002615203141985007],[126,-17,72,-0.0033904960417011757],[126,-17,73,-0.004013005826801434],[126,-17,74,-0.004458554483423733],[126,-17,75,-0.00470817040684927],[126,-17,76,-0.004748778606662329],[126,-17,77,-0.004573668568214947],[126,-17,78,-0.004182739955258464],[126,-17,79,-0.0035825267146709344],[126,-16,64,0.0036919697388390887],[126,-16,65,0.002701888836890758],[126,-16,66,0.0016724494645159464],[126,-16,67,6.20148226822747E-4],[126,-16,68,-4.285782992726723E-4],[126,-16,69,-0.0014404697567232528],[126,-16,70,-0.002381151813076586],[126,-16,71,-0.0032169721871187443],[126,-16,72,-0.00391653102298241],[126,-16,73,-0.004451990296753481],[126,-16,74,-0.004800161042203146],[126,-16,75,-0.004943367572377801],[126,-16,76,-0.0048700882668911505],[126,-16,77,-0.004575372887296187],[126,-16,78,-0.004061036771038204],[126,-16,79,-0.0033356326341897054],[126,-15,64,0.0029303652261701346],[126,-15,65,0.0019425919628776474],[126,-15,66,9.257599563882624E-4],[126,-15,67,-1.0365946776833143E-4],[126,-15,68,-0.0011185749885356615],[126,-15,69,-0.0020846369373555113],[126,-15,70,-0.0029669199076367858],[126,-15,71,-0.003731731502037893],[126,-15,72,-0.004348090935986266],[126,-15,73,-0.004788985720271386],[126,-15,74,-0.0050324053563323866],[126,-15,75,-0.005062151375059008],[126,-15,76,-0.004868423448933671],[126,-15,77,-0.004448181704532431],[126,-15,78,-0.0038052857538913064],[126,-15,79,-0.002950411344976573],[126,-14,64,0.0022074678718758136],[126,-14,65,0.0012258803579337676],[126,-14,66,2.2682592404040848E-4],[126,-14,67,-7.73351289663517E-4],[126,-14,68,-0.001747058262211147],[126,-14,69,-0.002659026600332999],[126,-14,70,-0.0034739870409164248],[126,-14,71,-0.004158439328209796],[126,-14,72,-0.004682067680119968],[126,-14,73,-0.005018934494927991],[126,-14,74,-0.005148451389424118],[126,-14,75,-0.0050561270615585375],[126,-14,76,-0.004734091873375548],[126,-14,77,-0.004181399449585901],[126,-14,78,-0.003404105979721574],[126,-14,79,-0.002415128293328674],[126,-13,64,0.0015187401812165376],[126,-13,65,5.481739770283909E-4],[126,-13,66,-4.2690888398207015E-4],[126,-13,67,-0.0013904172115263627],[126,-13,68,-0.002314441019627176],[126,-13,69,-0.0031630008071769707],[126,-13,70,-0.0039007296040252893],[126,-13,71,-0.004494590239619709],[126,-13,72,-0.004915214450472081],[126,-13,73,-0.005138021771198972],[126,-13,74,-0.005144117468194579],[126,-13,75,-0.0049209691792120565],[126,-13,76,-0.00446286232565618],[126,-13,77,-0.003771134763556806],[126,-13,78,-0.0028541915300771587],[126,-13,79,-0.0017273009209296585],[126,-12,64,8.653039414767613E-4],[126,-12,65,-8.883029805255725E-5],[126,-12,66,-0.001033227117336169],[126,-12,67,-0.0019522002712215201],[126,-12,68,-0.002817734950191825],[126,-12,69,-0.0035933759886973646],[126,-12,70,-0.004243930037542542],[126,-12,71,-0.004737115350978741],[126,-12,72,-0.005044810423991725],[126,-12,73,-0.005144085535513794],[126,-12,74,-0.005018016634441392],[126,-12,75,-0.004656281408432201],[126,-12,76,-0.004055537776575442],[126,-12,77,-0.003219585442521818],[126,-12,78,-0.0021593115306194986],[126,-12,79,-8.924216999720491E-4],[126,-11,64,2.5228446881021827E-4],[126,-11,65,-6.797645050252244E-4],[126,-11,66,-0.0015866708102937244],[126,-11,67,-0.0024533314667378246],[126,-11,68,-0.0032518610773584846],[126,-11,69,-0.003945582955790627],[126,-11,70,-0.004499761205528295],[126,-11,71,-0.004883167893477496],[126,-11,72,-0.005069227045439416],[126,-11,73,-0.005036946379974714],[126,-11,74,-0.0047716364032653015],[126,-11,75,-0.004265416885953759],[126,-11,76,-0.003517511138054054],[126,-11,77,-0.0025343288862790417],[126,-11,78,-0.0013293389356612657],[126,-11,79,7.726683985054352E-5],[126,-10,64,-3.126734696193681E-4],[126,-10,65,-0.0012170262863346382],[126,-10,66,-0.002079909195661868],[126,-10,67,-0.002887005249935386],[126,-10,68,-0.0036108086719396706],[126,-10,69,-0.0042146851641833485],[126,-10,70,-0.00466464105600721],[126,-10,71,-0.004930793217072274],[126,-10,72,-0.0049883948795496685],[126,-10,73,-0.004818655809261754],[126,-10,74,-0.004409356639491213],[126,-10,75,-0.0037552575709631887],[126,-10,76,-0.0028583020267973127],[126,-10,77,-0.0017276162284808863],[126,-10,78,-3.793060243493575E-4],[126,-10,79,0.0011639473482422588],[126,-9,64,-8.207164967289186E-4],[126,-9,65,-0.0016920449201474435],[126,-9,66,-0.0025049399104189163],[126,-9,67,-0.003246094229781755],[126,-9,68,-0.003888641180626701],[126,-9,69,-0.004396253901835991],[126,-9,70,-0.004735956245987794],[126,-9,71,-0.004879481892081764],[126,-9,72,-0.004804169681297456],[126,-9,73,-0.004493661699426201],[126,-9,74,-0.003938404113138726],[126,-9,75,-0.0031359511444953273],[126,-9,76,-0.0020910729396623148],[126,-9,77,-8.156684502289614E-4],[126,-9,78,6.715152048509076E-4],[126,-9,79,0.0023453550956382225],[126,-8,64,-0.0012629180674405922],[126,-8,65,-0.0020963746139659356],[126,-8,66,-0.0028541215852990664],[126,-8,67,-0.0035241011498537258],[126,-8,68,-0.004080347304399473],[126,-8,69,-0.004487098600099918],[126,-8,70,-0.004712652993737179],[126,-8,71,-0.0047306042281342765],[126,-8,72,-0.004520596049710886],[126,-8,73,-0.004068889311935445],[126,-8,74,-0.003368742164343485],[126,-8,75,-0.002420603887516484],[126,-8,76,-0.0012321232883441716],[126,-8,77,1.820270862816839E-4],[126,-8,78,0.001800509329006345],[126,-8,79,0.003595859243546255],[126,-7,64,-0.001631235798481072],[126,-7,65,-0.002422612436886376],[126,-7,66,-0.0031210352862757924],[126,-7,67,-0.003715945704847946],[126,-7,68,-0.004182534893957535],[126,-7,69,-0.004485850043074058],[126,-7,70,-0.004595693043609602],[126,-7,71,-0.0044877242082554765],[126,-7,72,-0.0041440667749320145],[126,-7,73,-0.003553736081628297],[126,-7,74,-0.0027128938000084927],[126,-7,75,-0.0016249279559954804],[126,-7,76,-3.0035979807939504E-4],[126,-7,77,0.0012434211043084419],[126,-7,78,0.002982591842730738],[126,-7,79,0.00488749925285027],[126,-6,64,-0.0019192874774252287],[126,-6,65,-0.0026651377793206147],[126,-6,66,-0.0033011718036496736],[126,-6,67,-0.0038185833108579166],[126,-6,68,-0.004193964909358521],[126,-6,69,-0.004393393867661895],[126,-6,70,-0.004388372292640688],[126,-6,71,-0.004156790553171481],[126,-6,72,-0.0036833757658282233],[126,-6,73,-0.002959978241343099],[126,-6,74,-0.001985696460340241],[126,-6,75,-7.668414631337003E-4],[126,-6,76,6.832581540021418E-4],[126,-6,77,0.0023446091476924955],[126,-6,78,0.004191062671858488],[126,-6,79,0.00619097742490235],[126,-5,64,-0.0021229421062104264],[126,-5,65,-0.002820669799990484],[126,-5,66,-0.003392441368698969],[126,-5,67,-0.003831452548539824],[126,-5,68,-0.004115922322806648],[126,-5,69,-0.004213151413416891],[126,-5,70,-0.004096499336882379],[126,-5,71,-0.003746202388863099],[126,-5,72,-0.0031496622591147914],[126,-5,73,-0.0023015872211378297],[126,-5,74,-0.0012039866350343127],[126,-5,75,1.339802090271082E-4],[126,-5,76,0.00169629959983988],[126,-5,77,0.0034605416924220435],[126,-5,78,0.005398439746968942],[126,-5,79,0.007476608258755827],[126,-4,64,-0.002240721962443202],[126,-4,65,-0.00288863895382999],[126,-4,66,-0.0033955020231298916],[126,-4,67,-0.0037567476613749266],[126,-4,68,-0.003952420531150071],[126,-4,69,-0.003951204700274013],[126,-4,70,-0.0037284309526289306],[126,-4,71,-0.003266746792227013],[126,-4,72,-0.0025562438634162193],[126,-4,73,-0.001594453668502321],[126,-4,74,-3.86212477966571E-4],[126,-4,75,0.001056603412984529],[126,-4,76,0.002715470679199142],[126,-4,77,0.0045657385732146664],[126,-4,78,0.006577273286288507],[126,-4,79,0.008715225000282658],[126,-3,64,-0.0022740113589644366],[126,-3,65,-0.0028713683958272573],[126,-3,66,-0.0033139025774902306],[126,-3,67,-0.0035995122175005775],[126,-3,68,-0.003710235592363333],[126,-3,69,-0.0036162620876635677],[126,-3,70,-0.0032949613369078557],[126,-3,71,-0.002731405338625878],[126,-3,72,-0.0019183358857746597],[126,-3,73,-8.560168800834824E-4],[126,-3,74,4.480274323953995E-4],[126,-3,75,0.0019793870425025167],[126,-3,76,0.003717252098509052],[126,-3,77,0.005635008485717033],[126,-3,78,0.007700941197067237],[126,-3,79,0.00987904345638699],[126,-2,64,-0.002227067553222649],[126,-2,65,-0.002774060829624713],[126,-2,66,-0.0031540358759900213],[126,-2,67,-0.003367549837568313],[126,-2,68,-0.0033987664124332795],[126,-2,69,-0.0032194610043382726],[126,-2,70,-0.0028090617965909844],[126,-2,71,-0.002155026674456931],[126,-2,72,-0.0012526543266749],[126,-2,73,-1.0479741757225503E-4],[126,-2,74,0.0012785210101971623],[126,-2,75,0.0028805865512092086],[126,-2,76,0.004678566339537043],[126,-2,77,0.006644174138196239],[126,-2,78,0.00874442576296434],[126,-2,79,0.010942482851345435],[126,-1,64,-0.002106829108019869],[126,-1,65,-0.0026045862207902297],[126,-1,66,-0.002924897941607013],[126,-1,67,-0.0030711477574279483],[126,-1,68,-0.003029716890041982],[126,-1,69,-0.002774004038638257],[126,-1,70,-0.0022854674999990237],[126,-1,71,-0.0015538620910132812],[126,-1,72,-5.768999156127306E-4],[126,-1,73,6.401692970585041E-4],[126,-1,74,0.0020850570179651853],[126,-1,75,0.003739012486660973],[126,-1,76,0.005577475458140711],[126,-1,77,0.007570803431135497],[126,-1,78,0.009685071542927045],[126,-1,79,0.011882943213763012],[126,0,64,-0.0019225169392092529],[126,0,65,-0.002373065728066444],[126,0,66,-0.002637648511817673],[126,0,67,-0.002722608937836609],[126,0,68,-0.002616595980725707],[126,0,69,-0.002294624648061455],[126,0,70,-0.0017401078927677268],[126,0,71,-9.449610862838702E-4],[126,0,72,9.087940444858603E-5],[126,0,73,0.0013600005463760717],[126,0,74,0.002848118524667737],[126,0,75,0.004534744712163838],[126,0,76,0.006393910146186107],[126,0,77,0.008394946838940253],[126,0,78,0.010503324165160659],[126,0,79,0.011453957542832568],[126,1,64,-0.0016850253524706778],[126,1,65,-0.0020912497621713814],[126,1,66,-0.0023049712908565093],[126,1,67,-0.002335591289409031],[126,1,68,-0.002174034308925622],[126,1,69,-0.0017968809664258996],[126,1,70,-0.0011893788759327394],[126,1,71,-3.454243909018844E-4],[126,1,72,7.330509336798108E-4],[126,1,73,0.002036739538141196],[126,1,74,0.0035496612954297167],[126,1,75,0.005249909688623802],[126,1,76,0.007110439156850334],[126,1,77,0.00909989197758333],[126,1,78,0.011183463005654289],[126,1,79,0.010871355089583543],[126,2,64,-0.0014061000635624845],[126,2,65,-0.0017716879687222787],[126,2,66,-0.0019402319650046141],[126,2,67,-0.0019242518246555716],[126,2,68,-0.0017169144230547797],[126,2,69,-0.0012962735554001314],[126,2,70,-6.492507880736336E-4],[126,2,71,2.28493862785582E-4],[126,2,72,0.0013332958353857315],[126,2,73,0.002654248906307331],[126,2,74,0.004173995587444748],[126,2,75,0.005869543523046398],[126,2,76,0.007713106338006319],[126,2,77,0.009672967363172717],[126,2,78,0.011714364649633893],[126,2,79,0.010454926029556359],[126,3,64,-0.0010972741474739995],[126,3,65,-0.0014266567342984134],[126,3,66,-0.001556397010442394],[126,3,67,-0.0015021588514202604],[126,3,68,-0.0012592806721231187],[126,3,69,-8.071590402678609E-4],[126,3,70,-1.341933835465223E-4],[126,3,71,7.624410225010241E-4],[126,3,72,0.0018776341800220368],[126,3,73,0.0031991956463743665],[126,3,74,0.004708720465600302],[126,3,75,0.006382465244573297],[126,3,76,0.008192232862554376],[126,3,77,0.010106264310749909],[126,3,78,0.012090136176811449],[126,3,79,0.010208441859183055],[126,4,64,-7.685877354665702E-4],[126,4,65,-0.0010668764255405434],[126,4,66,-0.0011647497805533447],[126,4,67,-0.001081010874104865],[126,4,68,-8.130672709901423E-4],[126,4,69,-3.414954867730705E-4],[126,4,70,3.440518943669493E-4],[126,4,71,0.0012451560935225394],[126,4,72,0.0023555662293095387],[126,4,73,0.0036621318500441487],[126,4,74,0.005145732392775326],[126,4,75,0.006782202077422399],[126,4,76,0.008543248774220231],[126,4,77,0.01039736542158898],[126,4,78,0.012106356069451102],[126,4,79,0.010129495614073296],[126,5,64,-4.2708502289401606E-4],[126,5,65,-7.000111907070418E-4],[126,5,66,-7.733958435435959E-4],[126,5,67,-6.691532400732987E-4],[126,5,68,-3.8663462277979503E-4],[126,5,69,9.259138814851015E-5],[126,5,70,7.778642024754472E-4],[126,5,71,0.0016698079580762767],[126,5,72,0.002761343499993421],[126,5,73,0.00403868544303345],[126,5,74,0.005482322804013161],[126,5,75,0.007067981741026847],[126,5,76,0.008767568996316913],[126,5,77,0.010550094706578387],[126,5,78,0.01209765834007402],[126,5,79,0.010209025295214537],[126,6,64,-7.507918316443902E-5],[126,6,65,-3.2894086776006314E-4],[126,6,66,-3.8554648630023767E-4],[126,6,67,-2.698812416281044E-4],[126,6,68,1.6897138946206094E-5],[126,6,69,4.92431437825694E-4],[126,6,70,0.001165309082702933],[126,6,71,0.0020354886555008335],[126,6,72,0.003095374125523899],[126,6,73,0.004330862373136386],[126,6,74,0.0057223625014950165],[126,6,75,0.007245785511915453],[126,6,76,0.008873503003726534],[126,6,77,0.010575273651842108],[126,6,78,0.012225106585009082],[126,6,79,0.010430886964641901],[126,7,64,2.943809298164475E-4],[126,7,65,5.2880142372055546E-5],[126,7,66,5.185566855501201E-6],[126,7,67,1.233040522175219E-4],[126,7,68,4.0441779167629664E-4],[126,7,69,8.655873493631063E-4],[126,7,70,0.0015149013248590905],[126,7,71,0.0023519355266657925],[126,7,72,0.0033688738457116297],[126,7,73,0.0045515923246132114],[126,7,74,0.005880704941720045],[126,7,75,0.00733256973027145],[126,7,76,0.008880253960784651],[126,7,77,0.010494457228764126],[126,7,78,0.012144391409688456],[126,7,79,0.010768762455669809],[126,8,64,7.047147123197367E-4],[126,8,65,4.6911453618515424E-4],[126,8,66,4.2281199969860806E-4],[126,8,67,5.349940277087757E-4],[126,8,68,8.013793971831778E-4],[126,8,69,0.0012386377017505163],[126,8,70,0.0018545853349999362],[126,8,71,0.0026486632211036843],[126,8,72,0.0036130904667020696],[126,8,73,0.004733972745884728],[126,8,74,0.005992363966060898],[126,8,75,0.007365279883601453],[126,8,76,0.008826662464994146],[126,8,77,0.010348293921410148],[126,8,78,0.011900659481579343],[126,8,79,0.011178918241284164],[126,9,64,0.001179886500000438],[126,9,65,9.442989196779497E-4],[126,9,66,8.925242610468777E-4],[126,9,67,9.912557544453932E-4],[126,9,68,0.0012349964792689732],[126,9,69,0.0016401907870377212],[126,9,70,0.002214571901664223],[126,9,71,0.0029576480079293115],[126,9,72,0.0038618771229452205],[126,9,73,0.004913789721352375],[126,9,74,0.006095057695306836],[126,9,75,0.0073835083680183],[126,9,76,0.008754082422376795],[126,9,77,0.010179734753451557],[126,9,78,0.011632277404760319],[126,9,79,0.011615957693781775],[126,10,64,0.0017411640134394153],[126,10,65,0.0015004353073286376],[126,10,66,0.0014371580228277358],[126,10,67,0.0015159700751356977],[126,10,68,0.001730440236866081],[126,10,69,0.0020969198286964605],[126,10,70,0.0026232040635309067],[126,10,71,0.003309020125788013],[126,10,72,0.0041472140806801],[126,10,73,0.0051248798508972656],[126,10,74,0.006224428877170817],[126,10,75,0.007424599230716077],[126,10,76,0.008701403101502875],[126,10,77,0.010029011745947364],[126,10,78,0.011380577140243181],[126,10,79,0.012037793346732342],[126,11,64,0.0024094347448165333],[126,11,65,0.0021592942727079087],[126,11,66,0.0020794646896444557],[126,11,67,0.002133050485777203],[126,11,68,0.0023129825524790177],[126,11,69,0.0026356095529383476],[126,11,70,0.00310888383538091],[126,11,71,0.003732848889189009],[126,11,72,0.004500831557053943],[126,11,73,0.005400571679575197],[126,11,74,0.0064152878245511335],[126,11,75,0.007524677916281861],[126,11,76,0.008705853747093581],[126,11,77,0.009934208523171444],[126,11,78,0.011184216768833837],[126,11,79,0.012405557632496131],[126,12,64,0.0032078395135920284],[126,12,65,0.002945031270983258],[126,12,66,0.00284468953199786],[126,12,67,0.0028689594125817447],[126,12,68,0.0030104253448036233],[126,12,69,0.0032854730901405874],[126,12,70,0.0037022512660600127],[126,12,71,0.00426115922702497],[126,12,72,0.004956040345862313],[126,12,73,0.005775308840740207],[126,12,74,0.006703008835026826],[126,12,75,0.007719804510324245],[126,12,76,0.008803900389234185],[126,12,77,0.009931890963007266],[126,12,78,0.011079539059245622],[126,12,79,0.012222482525226864],[126,13,64,0.004164729237164574],[126,13,65,0.00388712212986885],[126,13,66,0.0037634623406033836],[126,13,67,0.003755527619043141],[126,13,68,0.0038558207596959162],[126,13,69,0.004080744381524751],[126,13,70,0.004438620603368393],[126,13,71,0.004930183948265947],[126,13,72,0.005549773989279237],[126,13,73,0.006286458026962646],[126,13,74,0.007125082519821116],[126,13,75,0.008047252171303951],[126,13,76,0.00903223576177965],[126,13,77,0.010057798000538657],[126,13,78,0.011100956860185423],[126,13,79,0.012138666042683304],[126,14,64,0.0053169523722090195],[126,14,65,0.005023625156157758],[126,14,66,0.0048750079751212014],[126,14,67,0.004833083969237309],[126,14,68,0.00489048919776126],[126,14,69,0.005063552775396449],[126,14,70,0.005360679847461029],[126,14,71,0.005782857525090317],[126,14,72,0.006324847708667774],[126,14,73,0.006976306343929762],[126,14,74,0.00772282786605931],[126,14,75,0.008546913778755733],[126,14,76,0.009428864509072207],[126,14,77,0.010347593873684486],[126,14,78,0.011281365687117496],[126,14,79,0.012208452236102226],[126,15,64,0.00671082662322529],[126,15,65,0.006401968337979327],[126,15,66,0.006227666182822038],[126,15,67,0.00615062931564198],[126,15,68,0.00616377960159373],[126,15,69,0.0062832176742166675],[126,15,70,0.006517286671110152],[126,15,71,0.00686710119146632],[126,15,72,0.007327742461719629],[126,15,73,0.007889375839389697],[126,15,74,0.008538289446741374],[126,15,75,0.00925785292822665],[126,15,76,0.010029395529542979],[126,15,77,0.010833002900386227],[126,15,78,0.011648232226424056],[126,15,79,0.01245474549736693],[126,16,64,0.008383324704168959],[126,16,65,0.008059660558490566],[126,16,66,0.007859052339532983],[126,16,67,0.007745405665181116],[126,16,68,0.00771205253157462],[126,16,69,0.007774704793632789],[126,16,70,0.007941514313186014],[126,16,71,0.008213632022796954],[126,16,72,0.008586404758467819],[126,16,73,0.0090504899232809],[126,16,74,0.009592886816248522],[126,16,75,0.01019788367459636],[126,16,76,0.0108479196925105],[126,16,77,0.011524361493791],[126,16,78,0.012208193748597128],[126,16,79,0.012320821929799395],[126,17,64,0.010347926066536402],[126,17,65,0.010010624025831581],[126,17,66,0.0097832112155574],[126,17,67,0.009631214126810013],[126,17,68,0.009548483042597214],[126,17,69,0.009550193139893477],[126,17,70,0.009644205627361966],[126,17,71,0.00983166047484564],[126,17,72,0.01010817110371902],[126,17,73,0.010464932189171017],[126,17,74,0.01088973946086581],[126,17,75,0.011367920614375079],[126,17,76,0.011883176671837317],[126,17,77,0.01241833335511874],[126,17,78,0.0123699952473455],[126,17,79,0.011799937809181394],[126,18,64,0.012596903883612069],[126,18,65,0.012247614900830883],[126,18,66,0.011993230512846438],[126,18,67,0.011801275635950266],[126,18,68,0.011666211989360497],[126,18,69,0.011602544905772842],[126,18,70,0.011617771416491281],[126,18,71,0.011713007323465982],[126,18,72,0.011884173625043355],[126,18,73,0.012123091306964524],[126,18,74,0.012418483448706583],[126,18,75,0.012756883833102032],[126,18,76,0.0123718470243091],[126,18,77,0.011948477569979686],[126,18,78,0.011526408819539832],[126,18,79,0.01112072118237241],[126,19,64,0.010864698193646822],[126,19,65,0.011201835386312671],[126,19,66,0.011458819591602708],[126,19,67,0.011665826022808747],[126,19,68,0.011827732375038457],[126,19,69,0.01193085136646829],[126,19,70,0.011968135589220179],[126,19,71,0.011938517786450869],[126,19,72,0.01184574044574421],[126,19,73,0.011697281635709917],[126,19,74,0.01150337805969419],[126,19,75,0.011276146051306557],[126,19,76,0.011028800988867016],[126,19,77,0.010774975361456449],[126,19,78,0.010528135479577705],[126,19,79,0.010301096590276212],[126,20,64,0.00822283415299723],[126,20,65,0.008567207721318285],[126,20,66,0.008849926882406938],[126,20,67,0.009098562256590366],[126,20,68,0.009317236527756793],[126,20,69,0.009493145494709945],[126,20,70,0.009619688109117555],[126,20,71,0.009695777522705886],[126,20,72,0.009724695292652007],[126,20,73,0.009713046150116762],[126,20,74,0.009669814217493109],[126,20,75,0.009605521300339436],[126,20,76,0.009531487622904797],[126,20,77,0.00945919512331629],[126,20,78,0.009399753177569145],[126,20,79,0.009363466382312386],[126,21,64,0.005416549742795567],[126,21,65,0.005765123819566002],[126,21,66,0.006072033415302229],[126,21,67,0.006362020760593985],[126,21,68,0.006638401864917787],[126,21,69,0.006889330631722903],[126,21,70,0.007108664887625098],[126,21,71,0.007295253073689259],[126,21,72,0.007451822084993395],[126,21,73,0.007583969574755583],[126,21,74,0.007699261508776674],[126,21,75,0.007806435487221658],[126,21,76,0.007914710085555379],[126,21,77,0.008033200206550939],[126,21,78,0.00817043818249128],[126,21,79,0.008334000122958598],[126,22,64,0.0025074515352837695],[126,22,65,0.0028567966630318312],[126,22,66,0.003185661669070705],[126,22,67,0.0035157935475434773],[126,22,68,0.003849663410386568],[126,22,69,0.004176434726042629],[126,22,70,0.0044904199182818835],[126,22,71,0.0047903486140534685],[126,22,72,0.0050782980391467945],[126,22,73,0.005358731249013842],[126,22,74,0.005637643870671398],[126,22,75,0.0059218197553053045],[126,22,76,0.006218195669429074],[126,22,77,0.0065333348870870046],[126,22,78,0.006873009288530617],[126,22,79,0.007241889324096381],[126,23,64,-4.3664837133356116E-4],[126,23,65,-9.028265266582307E-5],[126,23,66,2.576245948623389E-4],[126,23,67,6.257179973693361E-4],[126,23,68,0.0010155989962552633],[126,23,69,0.0014174668867967626],[126,23,70,0.0018260686993698157],[126,23,71,0.0022399556424334637],[126,23,72,0.002660464472849362],[126,23,73,0.0030908094475008184],[126,23,74,0.003535285414274526],[126,23,75,0.00399858231838755],[126,23,76,0.004485211123494938],[126,23,77,0.004999040877964847],[126,23,78,0.00554294639714405],[126,23,79,0.0061185657844939805],[126,24,64,-0.0033444400941876964],[126,24,65,-0.003005038049569283],[126,24,66,-0.0026416341213926385],[126,24,67,-0.0022387311997040314],[126,24,68,-0.001795608810013042],[126,24,69,-0.0013210319764812555],[126,24,70,-8.198539046574224E-4],[126,24,71,-2.937642456682657E-4],[126,24,72,2.577508330622729E-4],[126,24,73,8.365612053831328E-4],[126,24,74,0.0014451584068322842],[126,24,75,0.0020860344665424527],[126,24,76,0.002761173819887506],[126,24,77,0.0034716579002875645],[126,24,78,0.004217381748383405],[126,24,79,0.004996881729409347],[126,25,64,-0.006143724358781706],[126,25,65,-0.005815405275809324],[126,25,66,-0.00544060750265844],[126,25,67,-0.005006963144624719],[126,25,68,-0.004514630542147576],[126,25,69,-0.003971366270836672],[126,25,70,-0.003381672689157723],[126,25,71,-0.0027475435819347867],[126,25,72,-0.0020693591849473545],[126,25,73,-0.0013466672888566439],[126,25,74,-5.788501144352656E-4],[126,25,75,2.343230612425065E-4],[126,25,76,0.001092257267777736],[126,25,77,0.0019932066630705264],[126,25,78,0.002934062024120017],[126,25,79,0.003910249872529303],[126,26,64,-0.008763920460669589],[126,26,65,-0.008450831462255433],[126,26,66,-0.008069199670939832],[126,26,67,-0.007609704306303974],[126,26,68,-0.007073367077565433],[126,26,69,-0.006466990463630216],[126,26,70,-0.005794788131430614],[126,26,71,-0.005059120599408022],[126,26,72,-0.004261320025225032],[126,26,73,-0.0034024005709528704],[126,26,74,-0.0024836541645028506],[126,26,75,-0.0015071317634040473],[126,26,76,-4.7601050600908236E-4],[126,26,77,6.051525963081174E-4],[126,26,78,0.0017302795165973492],[126,26,79,0.0028917414692176445],[126,27,64,-0.0111384725410879],[126,27,65,-0.01084467632386238],[126,27,66,-0.01046110624839174],[126,27,67,-0.009981343829645179],[126,27,68,-0.009407245756835924],[126,27,69,-0.008744741158229223],[126,27,70,-0.007997829362253843],[126,27,71,-0.007169298366618669],[126,27,72,-0.006261475634943204],[126,27,73,-0.00527686477556838],[126,27,74,-0.004218668045589789],[126,27,75,-0.0030911949080212266],[126,27,76,-0.0019001571457010502],[126,27,77,-6.528512999269215E-4],[126,27,78,6.417705473725416E-4],[126,27,79,0.0019731403941482956],[126,28,64,-0.013207152709868098],[126,28,65,-0.012936513686886088],[126,28,66,-0.012556099617304497],[126,28,67,-0.012062189615438717],[126,28,68,-0.011457434640062325],[126,28,69,-0.01074699600302404],[126,28,70,-0.00993474384665278],[126,28,71,-0.009023951511621988],[126,28,72,-0.00801797011064877],[126,28,73,-0.0069207900913832564],[126,28,74,-0.005737489850581953],[126,28,75,-0.004474571741990423],[126,28,76,-0.003140186090824951],[126,28,77,-0.0017442440861521501],[126,28,78,-2.984206665886813E-4],[126,28,79,0.00118395125772269],[126,29,64,-0.01491825930322717],[126,29,65,-0.01467433177374153],[126,29,66,-0.014302217636073646],[126,29,67,-0.013800633963319021],[126,29,68,-0.01317297391518059],[126,29,69,-0.012423758697957725],[126,29,70,-0.011556823307688502],[126,29,71,-0.01057598035437931],[126,29,72,-0.009485617739518021],[126,29,73,-0.008291185207105018],[126,29,74,-0.00699956994159907],[126,29,75,-0.0056193616600191095],[126,29,76,-0.00416100790882208],[126,29,77,-0.0026368605269082622],[126,29,78,-0.0010611144719587624],[126,29,79,5.503595740005338E-4],[126,30,64,-0.01623070829078646],[126,30,65,-0.016016630399956246],[126,30,66,-0.015657854129310565],[126,30,67,-0.015155227291314317],[126,30,68,-0.014512823200047457],[126,30,69,-0.013734669097613623],[126,30,70,-0.012824665173442487],[126,30,71,-0.011787212027421716],[126,30,72,-0.010627732328295392],[126,30,73,-0.009353083960991085],[126,30,74,-0.00797186493756683],[126,30,75,-0.006494610612034036],[126,30,76,-0.0049338839939376215],[126,30,77,-0.003304260197097655],[126,30,78,-0.001622206286126145],[126,30,79,9.414200802413344E-5],[126,31,64,-0.017116015551388388],[126,31,65,-0.016934412938375616],[126,31,66,-0.016593749168995576],[126,31,67,-0.016096658145312782],[126,31,68,-0.01544782318436484],[126,31,69,-0.01465093712200836],[126,31,70,-0.013710068551076532],[126,31,71,-0.012630247903730317],[126,31,72,-0.01141791547051838],[126,31,73,-0.010081264186804453],[126,31,74,-0.008630477550613965],[126,31,75,-0.0070778632916654325],[126,31,76,-0.005437883655778916],[126,31,77,-0.003727083399869335],[126,31,78,-0.00196391680815987],[126,31,79,-1.684752378863452E-4],[126,32,64,-0.017560167426570728],[126,32,65,-0.017413070590061332],[126,32,66,-0.017094876845490443],[126,32,67,-0.016609637394351163],[126,32,68,-0.01596256974409586],[126,32,69,-0.015157198880465045],[126,32,70,-0.014197863437424784],[126,32,71,-0.013090256371470144],[126,32,72,-0.011841803142180226],[126,32,73,-0.010461938511087317],[126,32,74,-0.008962282398817682],[126,32,75,-0.007356715485022984],[126,32,76,-0.005661355468682188],[126,32,77,-0.003894435125836916],[126,32,78,-0.002076083505606799],[126,32,79,-2.2801179127062237E-4],[126,33,64,-0.01756537663929909],[126,33,65,-0.01745415617454137],[126,33,66,-0.01716222789758284],[126,33,67,-0.016694684178145815],[126,33,68,-0.016057198335028167],[126,33,69,-0.015253293095012036],[126,33,70,-0.014287671567459083],[126,33,71,-0.013166709701716734],[126,33,72,-0.011898769740862052],[126,33,73,-0.01049441660351986],[126,33,74,-0.008966537695094914],[126,33,75,-0.007330366882194743],[126,33,76,-0.005603413584869502],[126,33,77,-0.0038052981485439345],[126,33,78,-0.001957494849106165],[126,33,79,-8.298405847845671E-5],[126,34,64,-0.01715172033873272],[126,34,65,-0.01707704431917222],[126,34,66,-0.01681448423441628],[126,34,67,-0.0163698108364958],[126,34,68,-0.01574907613812927],[126,34,69,-0.014955955582047814],[126,34,70,-0.013995596984274163],[126,34,71,-0.012875063451413182],[126,34,72,-0.011603588397022118],[126,34,73,-0.010192738116984375],[126,34,74,-0.008656482471509594],[126,34,75,-0.007011174441104818],[126,34,76,-0.0052754395320312696],[126,34,77,-0.003469976201436432],[126,34,78,-0.00161726865155024],[126,34,79,2.5878649593211146E-4],[126,35,64,-0.016358656704195285],[126,35,65,-0.016320474593128523],[126,35,66,-0.01608958204386752],[126,35,67,-0.015672103710690433],[126,35,68,-0.015074399091759304],[126,35,69,-0.01430042921876852],[126,35,70,-0.013355844090952073],[126,35,71,-0.012248376533186894],[126,35,72,-0.010988046091920362],[126,35,73,-0.009587275279767446],[126,35,74,-0.008060918747524518],[126,35,75,-0.0064262061692051745],[126,35,76,-0.004702599821149186],[126,35,77,-0.0029115680184282336],[126,35,78,-0.001076275738773014],[126,35,79,7.788060858266023E-4],[126,36,64,-0.015246416217568075],[126,36,65,-0.015243973800351621],[126,36,66,-0.015046159846027076],[126,36,67,-0.014659196369110273],[126,36,68,-0.01408969060877664],[126,36,69,-0.013341986488007952],[126,36,70,-0.01242226061949277],[126,36,71,-0.011338869769773626],[126,36,72,-0.010102511817708876],[126,36,73,-0.008726303821887419],[126,36,74,-0.00722577779218228],[126,36,75,-0.005618794954968217],[126,36,76,-0.003925379484685687],[126,36,77,-0.0021674728446299412],[126,36,78,-3.6861003526692687E-4],[126,36,79,0.0014464808127832981],[126,37,64,-0.01389726339717738],[126,37,65,-0.013929153321815813],[126,37,66,-0.013764887521019318],[126,37,67,-0.013410631476836493],[126,37,68,-0.01287319844398423],[126,37,69,-0.012157361365413651],[126,37,70,-0.011269802628454818],[126,37,71,-0.010219420436911113],[126,37,72,-0.009017455714517172],[126,37,73,-0.007677540633499366],[126,37,74,-0.006215669366174249],[126,37,75,-0.004650091840243277],[126,37,76,-0.003001131450277695],[126,37,77,-0.0012909278371352564],[126,37,78,4.5689400801349927E-4],[126,37,79,0.0022176269294731134],[126,38,64,-0.01241414255473525],[126,38,65,-0.01247840903527369],[126,38,66,-0.012347228574922616],[126,38,67,-0.012026692084443905],[126,38,68,-0.011523801045850933],[126,38,69,-0.010843736800079285],[126,38,70,-0.009993608997778474],[126,38,71,-0.008982729273289091],[126,38,72,-0.00782271353284538],[126,38,73,-0.006527509899305871],[126,38,74,-0.005113352901843393],[126,38,75,-0.003598644671650908],[126,38,76,-0.0020037640667837906],[126,38,77,-3.5080479913708715E-4],[126,38,78,0.0013367562273961372],[126,38,79,0.0030344590379673543],[126,39,64,-0.01086575209044734],[126,39,65,-0.010960303893659953],[126,39,66,-0.010861363305439816],[126,39,67,-0.010574951559131325],[126,39,68,-0.010108235616623107],[126,39,69,-0.009466752872231964],[126,39,70,-0.00865793423631351],[126,39,71,-0.007691355308448379],[126,39,72,-0.006578824357160178],[126,39,73,-0.005334399284469203],[126,39,74,-0.003974334142318264],[126,39,75,-0.002516955932529955],[126,39,76,-9.824725763519216E-4],[126,39,77,6.072869177423237E-4],[126,39,78,0.0022291989300813097],[126,39,79,0.0038592370774267128],[126,40,64,-0.009273904465828611],[126,40,65,-0.009396839450905591],[126,40,66,-0.009329396408890871],[126,40,67,-0.009077433917052225],[126,40,68,-0.008648232103099408],[126,40,69,-0.008047649112481172],[126,40,70,-0.007283346288690151],[126,40,71,-0.006365027073480399],[126,40,72,-0.005304521963656129],[126,40,73,-0.004115804927595837],[126,40,74,-0.0028149418144269665],[126,40,75,-0.0014199714479071267],[126,40,76,4.9279753687778475E-5],[126,40,77,0.0015714486525315306],[126,40,78,0.0031239506570252865],[126,40,79,0.004683358163882543],[126,41,64,-0.007657882956600542],[126,41,65,-0.0078075159974460105],[126,41,66,-0.00777092032812752],[126,41,67,-0.007553619582015388],[126,41,68,-0.007162937017994028],[126,41,69,-0.0066050397404935545],[126,41,70,-0.005887751169262131],[126,41,71,-0.005020787594564404],[126,41,72,-0.004015851942072072],[126,41,73,-0.0028866605201967794],[126,41,74,-0.0016489032352589097],[126,41,75,-3.2013791634855396E-4],[126,41,76,0.0010803804613889034],[126,41,77,0.002531934730496092],[126,41,78,0.0040126436141589596],[126,41,79,0.0054998217813207635],[126,42,64,-0.00603435860444225],[126,42,65,-0.006209285982664253],[126,42,66,-0.006203012029737956],[126,42,67,-0.00602049742548178],[126,42,68,-0.005669033155344036],[126,42,69,-0.005155110712417362],[126,42,70,-0.004486674291989804],[126,42,71,-0.003673364385833762],[126,42,72,-0.0027266323107370542],[126,42,73,-0.0016597882426821696],[126,42,74,-4.879831806649362E-4],[126,42,75,7.718745791264576E-4],[126,42,76,0.0021012677306249485],[126,42,77,0.0034802821418762142],[126,42,78,0.004887881946449061],[126,42,79,0.006302246442254692],[126,43,64,-0.004414857219606825],[126,43,65,-0.004614075289481429],[126,43,66,-0.004637826882584656],[126,43,67,-0.0044902486627807475],[126,43,68,-0.004178530069503601],[126,43,69,-0.0037095327160823963],[126,43,70,-0.0030913109014072903],[126,43,71,-0.0023333708682509793],[126,43,72,-0.0014468178005022196],[126,43,73,-4.444358552217845E-4],[126,43,74,6.592984221034561E-4],[126,43,75,0.0018482687907936815],[126,43,76,0.0031048374574926454],[126,43,77,0.0044100278683791225],[126,43,78,0.005743771223065135],[126,43,79,0.007085215667194241],[126,44,64,-0.002802924614685322],[126,44,65,-0.0030260067955441053],[126,44,66,-0.003079900775615055],[126,44,67,-0.0029676471893616617],[126,44,68,-0.002696281709593352],[126,44,69,-0.0022731147083745185],[126,44,70,-0.0017063331496541402],[126,44,71,-0.0010052832013861094],[126,44,72,-1.8066083797191651E-4],[126,44,73,7.553659276709E-4],[126,44,74,0.0017891029241149496],[126,44,75,0.00290534338926044],[126,44,76,0.004087448644642606],[126,44,77,0.005317495148024979],[126,44,78,0.006576487061041635],[126,44,79,0.007844633346867266],[126,45,64,-0.0011909832151695845],[126,45,65,-0.0014383193391880392],[126,45,66,-0.0015231536163162961],[126,45,67,-0.001447169582678889],[126,45,68,-0.0012172245893316786],[126,45,69,-8.411916059841252E-4],[126,45,70,-3.274477429278394E-4],[126,45,71,3.148131543441726E-4],[126,45,72,0.0010753359796233264],[126,45,73,0.001942630435012697],[126,45,74,0.0029038675409730533],[126,45,75,0.003944846259414794],[126,45,76,0.00505002973603687],[126,45,77,0.006202650512408123],[126,45,78,0.007384883914207109],[126,45,79,0.008578088691120162],[126,46,64,4.431266156662967E-4],[126,46,65,1.7002460901227804E-4],[126,46,66,5.241247677324806E-5],[126,46,67,9.019184431689032E-5],[126,46,68,2.766699798785863E-4],[126,46,69,6.032601242082399E-4],[126,46,70,0.001061301797235909],[126,46,71,0.0016417127181826325],[126,46,72,0.0023346810286254916],[126,46,73,0.003129430980390114],[126,46,74,0.0040140620545566705],[126,46,75,0.004975461292848104],[126,46,76,0.005999288446079496],[126,46,77,0.007070033377721631],[126,46,78,0.008171145005517085],[126,46,79,0.009285230922072247],[126,47,64,0.002121743840072979],[126,47,65,0.001820267319109041],[126,47,66,0.0016670087803775983],[126,47,67,0.0016636377930198615],[126,47,68,0.0018035713858671656],[126,47,69,0.002077323793338118],[126,47,70,0.0024758252125572935],[126,47,71,0.0029900338561661037],[126,47,72,0.0036105567085726116],[126,47,73,0.004327347072055683],[126,47,74,0.005129479003940346],[126,47,75,0.00600499854890942],[126,47,76,0.006940851481585379],[126,47,77,0.007922887095389021],[126,47,78,0.00893593740595525],[126,47,79,0.009963970982710789],[126,48,64,0.003810843230459556],[126,48,65,0.003478612994173176],[126,48,66,0.0032873075707276394],[126,48,67,0.0032405246801992904],[126,48,68,0.003331719222862254],[126,48,69,0.003550309311361833],[126,48,70,0.0038866712136568816],[126,48,71,0.004331708212844379],[126,48,72,0.0048763929805472304],[126,48,73,0.005511390447865229],[126,48,74,0.0062267614236540215],[126,48,75,0.007011746999279949],[126,48,76,0.007854633576387687],[126,48,77,0.008742698161249311],[126,48,78,0.009662233387591123],[126,48,79,0.010598651561139302],[126,49,64,0.005466806642998397],[126,49,65,0.005102034825317122],[126,49,66,0.004871133292376958],[126,49,67,0.004779765785002253],[126,49,68,0.00482134267363684],[126,49,69,0.004983986597255158],[126,49,70,0.005257364172696922],[126,49,71,0.00563220930909381],[126,49,72,0.006099781637772546],[126,49,73,0.006651409483563884],[126,49,74,0.007278117787529745],[126,49,75,0.00797034116589273],[126,49,76,0.008717722072514936],[126,49,77,0.009508993824322154],[126,49,78,0.010331948052322232],[126,49,79,0.011173485957122002],[126,50,64,0.007053187983888057],[126,50,65,0.006654668982041351],[126,50,66,0.006383428285609051],[126,50,67,0.006247304096316227],[126,50,68,0.006239569720152674],[126,50,69,0.006346855679070052],[126,50,70,0.006557957108217069],[126,50,71,0.0068633100704562095],[126,50,72,0.007254361848720836],[126,50,73,0.007723030103462769],[126,50,74,0.008261251475222138],[126,50,75,0.008860619971577013],[126,50,76,0.009512115244536181],[126,50,77,0.010205920640583973],[126,50,78,0.010931330692859969],[126,50,79,0.011676747525240954],[126,51,64,0.008540352746921259],[126,51,65,0.008107450262563303],[126,51,66,0.007795884361534357],[126,51,67,0.0076157415711782025],[126,51,68,0.007560056794375156],[126,51,69,0.007613779601004363],[126,51,70,0.007764670813732657],[126,51,71,0.008002731198840358],[126,51,72,0.008319480797584804],[126,51,73,0.008707331662082053],[126,51,74,0.009159054753575663],[126,51,75,0.009667341503937228],[126,51,76,0.010224460291596574],[126,51,77,0.010822007842660306],[126,51,78,0.01145075533860729],[126,51,79,0.012100588795624825],[126,52,64,0.00990512009516591],[126,52,65,0.00943774982214093],[126,52,66,0.0090865762464982],[126,52,67,0.008863970173642067],[126,52,68,0.008762620078380395],[126,52,69,0.00876561866193944],[126,52,70,0.008859533700486201],[126,52,71,0.009033789257961191],[126,52,72,0.009279852598098997],[126,52,73,0.009590519186174222],[126,52,74,0.009959296722004414],[126,52,75,0.010379888872010327],[126,52,76,0.010845779101589612],[126,52,77,0.01134991475160396],[126,52,78,0.011884491256354827],[126,52,79,0.012440836167099146],[126,53,64,0.011130407282285938],[126,53,65,0.010629014752216129],[126,53,66,0.010239596654735386],[126,53,67,0.009976804444154084],[126,53,68,0.009832868195457973],[126,53,69,0.009788865715312126],[126,53,70,0.009830022065528394],[126,53,71,0.009945044155438582],[126,53,72,0.010125215123731877],[126,53,73,0.010363591567116413],[126,53,74,0.010654304744793605],[126,53,75,0.010991966597095908],[126,53,76,0.011371181133009807],[126,53,77,0.011786161466661173],[126,53,78,0.012230452519206672],[126,53,79,0.012696759152120233],[126,54,64,0.012204876243874039],[126,54,65,0.011670409319429894],[126,54,66,0.01124469278586041],[126,54,67,0.010944615388400672],[126,54,68,0.010761836073806598],[126,54,69,0.010675282300737013],[126,54,70,0.010668700537133797],[126,54,71,0.010729945745148389],[126,54,72,0.01084998443727913],[126,54,73,0.011022005332444375],[126,54,74,0.011240638930168197],[126,54,75,0.011501287013572408],[126,54,76,0.011799562791229554],[126,54,77,0.01213084209618889],[126,54,78,0.012489925779750766],[126,54,79,0.012870813170103955],[126,55,64,0.013122582226456146],[126,55,65,0.012556457712335573],[126,55,66,0.012096904084028571],[126,55,67,0.011762965516107367],[126,55,68,0.011545619806910993],[126,55,69,0.011421535420959824],[126,55,70,0.011372862493063435],[126,55,71,0.011386479316894758],[126,55,72,0.011452906545913294],[126,55,73,0.01156533366740127],[126,55,74,0.01171875925662908],[126,55,75,0.011909246194159616],[126,55,76,0.01213329271198674],[126,55,77,0.01238731982571037],[126,55,78,0.012667275412473828],[126,55,79,0.012968354910298423],[126,56,64,0.013882624361014126],[126,56,65,0.013286688184415248],[126,56,66,0.012796201137898398],[126,56,67,0.012432244903837947],[126,56,68,0.012185012379237694],[126,56,69,0.012028834822972144],[126,56,70,0.011944170292854982],[126,56,71,0.011916809786258621],[126,56,72,0.011936706253314984],[126,56,73,0.011996920402357523],[126,56,74,0.012092684991041679],[126,56,75,0.012220588956623856],[126,56,76,0.012377882405475873],[126,56,77,0.012561903157267712],[126,56,78,0.012769625225643325],[126,56,79,0.012997329317112605],[126,57,64,0.014488798128569512],[126,57,65,0.013865278524392526],[126,57,66,0.013347125644469007],[126,57,67,0.012957308201066194],[126,57,68,0.012685140172091484],[126,57,69,0.012502570689052679],[126,57,70,0.012388295212760126],[126,57,71,0.012326924445196032],[126,57,72,0.012307732928270428],[126,57,73,0.012323528729493431],[126,57,74,0.012369646089977565],[126,57,75,0.012443062555087935],[126,57,76,0.01254164175939078],[126,57,77,0.012663502697589512],[126,57,78,0.012806515984239226],[126,57,79,0.012967927289764402],[126,58,64,0.014844368809943945],[126,58,65,0.014300702828405083],[126,58,66,0.013758431405027199],[126,58,67,0.013347112545235391],[126,58,68,0.013055100211901026],[126,58,69,0.012851951691693392],[126,58,70,0.012714557020741294],[126,58,71,0.012626274183208674],[126,58,72,0.012575603058685497],[126,58,73,0.01255498446186706],[126,58,74,0.012559726325530906],[126,58,75,0.012587058708617689],[126,58,76,0.012635318948331824],[126,58,77,0.012703267920948981],[126,58,78,0.012789538032882472],[126,58,79,0.012892213234181745],[126,59,64,0.014620403041088432],[126,59,65,0.014605379592979195],[126,59,66,0.014042726367439803],[126,59,67,0.013614356398804288],[126,59,68,0.013307598171472888],[126,59,69,0.013089643415444285],[126,59,70,0.012935563178715907],[126,59,71,0.012827413139328182],[126,59,72,0.01275283951099357],[126,59,73,0.01270381369959111],[126,59,74,0.012675497928960453],[126,59,75,0.012665243672342032],[126,59,76,0.012671724349930686],[126,59,77,0.01269420338575104],[126,59,78,0.012731938360930256],[126,59,79,0.012783721658183568],[126,60,64,0.01451367310461662],[126,60,65,0.0147953211925542],[126,60,66,0.014216115775482718],[126,60,67,0.013775119369013114],[126,60,68,0.0134585871834801],[126,60,69,0.013231407198285309],[126,60,70,0.013066847709620447],[126,60,71,0.012945636796382696],[126,60,72,0.012854507467076766],[126,60,73,0.012784874820989223],[126,60,74,0.012731647599743198],[126,60,75,0.012692176111754027],[126,60,76,0.012665338124629692],[126,60,77,0.012650763941666235],[126,60,78,0.012648201510846993],[126,60,79,0.0126570220609941],[126,61,64,0.01450497002024217],[126,61,65,0.014889784850220002],[126,61,66,0.01429784653248459],[126,61,67,0.013848503118965584],[126,61,68,0.013526907574307865],[126,61,69,0.013295739494882271],[126,61,70,0.013126509817538736],[126,61,71,0.012998618580734233],[126,61,72,0.012897847063773818],[126,61,73,0.012814984771004035],[126,61,74,0.01274459378369798],[126,61,75,0.012683912598790505],[126,61,76,0.012631901176059833],[126,61,77,0.012588428526334629],[126,61,78,0.012553603795460682],[126,61,79,0.012527251434988328],[126,62,64,0.014572096371753369],[126,62,65,0.01491092525498502],[126,62,66,0.014309952932909736],[126,62,67,0.013856273526237391],[126,62,68,0.013533927674993904],[126,62,69,0.013303511913638693],[126,62,70,0.01313485239973654],[126,62,71,0.013006045082537516],[126,62,72,0.012901902813473693],[126,62,73,0.012812539674464387],[126,62,74,0.012732095181441585],[126,62,75,0.012657600608515207],[126,62,76,0.012587989272138271],[126,62,77,0.012523252217074154],[126,62,78,0.012463740359592383],[126,62,79,0.012409613771086089],[126,63,64,0.014690201290235327],[126,63,65,0.01488344902302456],[126,63,66,0.014276903961342319],[126,63,67,0.013822504292318528],[126,63,68,0.013503185914099772],[126,63,69,0.013277612128542862],[126,63,70,0.013114020639696971],[126,63,71,0.012989250063306965],[126,63,72,0.012887149937930891],[126,63,73,0.012797129857833753],[126,63,74,0.012712850507337028],[126,63,75,0.012631058957510759],[126,63,76,0.012550570173146928],[126,63,77,0.012471396273460177],[126,63,78,0.012394024696643108],[126,63,79,0.012318846039275686],[126,64,64,0.014832112725872586],[126,64,65,0.014834271243652957],[126,64,66,0.014225252403343304],[126,64,67,0.013773222252453025],[126,64,68,0.013460034444612275],[126,64,69,0.013242585915111104],[126,64,70,0.013087640919844198],[126,64,71,0.01297084746888055],[126,64,72,0.01287511780098673],[126,64,73,0.012789149419468118],[126,64,74,0.012706089579006718],[126,64,75,0.012622345689158912],[126,64,76,0.012536543681917344],[126,64,77,0.012448635980878598],[126,64,78,0.01235916031084607],[126,64,79,0.012268650202194446],[126,65,64,0.014968666725447062],[126,65,65,0.014792174392953151],[126,65,66,0.014183286056563185],[126,65,67,0.013736054680585162],[126,65,68,0.013431284603128438],[126,65,69,0.0132242806069732],[126,65,70,0.013080460341306544],[126,65,71,0.012974363716470916],[126,65,72,0.01288801067907688],[126,65,73,0.01280940054495102],[126,65,74,0.012731155878161919],[126,65,75,0.012649313476613617],[126,65,76,0.012562264602604045],[126,65,77,0.012469846182978417],[126,65,78,0.012372584300843712],[126,65,79,0.012271090912344084],[126,66,64,0.01506903339419646],[126,66,65,0.014787469938836355],[126,66,66,0.01418068137305541],[126,66,67,0.013739878927899784],[126,66,68,0.013444854544366886],[126,66,69,0.013249490315577008],[126,66,70,0.013117987185548985],[126,66,71,0.013023869574141261],[126,66,72,0.0129483261610006],[126,66,73,0.01287869282050118],[126,66,74,0.012807080784706767],[126,66,75,0.012729152681219012],[126,66,76,0.012643048668159717],[126,66,77,0.012548464472154882],[126,66,78,0.012445882729839484],[126,66,79,0.012335958642202688],[126,67,64,0.015101039183855858],[126,67,65,0.014851663000557576],[126,67,66,0.014248159904707772],[126,67,67,0.013814474775615211],[126,67,68,0.013529419437231434],[126,67,69,0.013345603299865791],[126,67,70,0.01322613269875896],[126,67,71,0.01314361199949713],[126,67,72,0.013078471520181026],[126,67,73,0.013017437853526605],[126,67,74,0.012952149747571768],[126,67,75,0.012877922272160105],[126,67,76,0.012792661572301408],[126,67,77,0.012695932091558448],[126,67,78,0.01258817774158806],[126,67,79,0.012470098101007614],[126,68,64,0.01503148511373022],[126,68,65,0.015017120463165546],[126,68,66,0.014417147962873234],[126,68,67,0.013990179923028076],[126,68,68,0.013714064650005423],[126,68,69,0.013540251915378929],[126,68,70,0.013430854624272714],[126,68,71,0.013357646351419325],[126,68,72,0.01330037845333366],[126,68,73,0.013245239564902719],[126,68,74,0.013183460717296761],[126,68,75,0.013110068882036115],[126,68,76,0.013022791319260017],[126,68,77,0.01292111268943481],[126,68,78,0.012805486479720185],[126,68,79,0.012676701902130563],[126,69,64,0.014826466679728128],[126,69,65,0.015316736899758366],[126,69,66,0.014719433968541348],[126,69,67,0.014297543215199071],[126,69,68,0.014027936670142542],[126,69,69,0.01386096006121959],[126,69,70,0.013757797619361701],[126,69,71,0.013689464381497308],[126,69,72,0.013635111917919555],[126,69,73,0.01358047626544387],[126,69,74,0.01351647138308834],[126,69,75,0.013437931014730956],[126,69,76,0.013342501416021352],[126,69,77,0.013229686983445952],[126,69,78,0.01310005041467842],[126,69,79,0.012954568634344096],[126,70,64,0.014468085559800042],[126,70,65,0.015240201432670143],[126,70,66,0.015171018416614328],[126,70,67,0.014751495584012344],[126,70,68,0.014484781303822912],[126,70,69,0.014320145245059184],[126,70,70,0.014217891031988407],[126,70,71,0.014148340806827867],[126,70,72,0.014090127705266802],[126,70,73,0.014028630233674061],[126,70,74,0.013954551948605275],[126,70,75,0.013862649406925335],[126,70,76,0.013750610927444337],[126,70,77,0.013618088285123358],[126,70,78,0.013465883049449182],[126,70,79,0.013295288882662447],[126,71,64,0.0139886648759546],[126,71,65,0.014764869740883238],[126,71,66,0.015388814968024385],[126,71,67,0.015319320937252454],[126,71,68,0.015051790854697416],[126,71,69,0.014885055765828775],[126,71,70,0.014778670770147575],[126,71,71,0.014702384482725303],[126,71,72,0.014634420494543936],[126,71,73,0.01455990010426456],[126,71,74,0.01446940980131595],[126,71,75,0.014357716548784927],[126,71,76,0.014222633487810186],[126,71,77,0.014064038265715843],[126,71,78,0.013883045780771501],[126,71,79,0.013681336740383456],[126,72,64,0.013426992688134565],[126,72,65,0.01420840805999603],[126,72,66,0.014836884524394233],[126,72,67,0.01528543281390606],[126,72,68,0.01558007711278374],[126,72,69,0.01551767398111196],[126,72,70,0.015402776127854616],[126,72,71,0.015315230478098048],[126,72,72,0.015232987299055459],[126,72,73,0.015141013797107378],[126,72,74,0.015029854992879914],[126,72,75,0.014894341369931254],[126,72,76,0.014732445988578357],[126,72,77,0.014544293338914951],[126,72,78,0.014331321799398186],[126,72,79,0.01409560117264996],[126,73,64,0.012818862343719135],[126,73,65,0.013606530208931296],[126,73,66,0.014241215071703256],[126,73,67,0.014697122780927278],[126,73,68,0.015001006613558708],[126,73,69,0.01520552093021996],[126,73,70,0.015351913857454881],[126,73,71,0.015471058009276856],[126,73,72,0.015585167564007872],[126,73,73,0.015709377067772402],[126,73,74,0.015607690943717657],[126,73,75,0.015446535928771378],[126,73,76,0.01525649923070839],[126,73,77,0.015037922996259688],[126,73,78,0.014792523367441319],[126,73,79,0.014522702075397185],[126,74,64,0.012198319051959845],[126,74,65,0.01299317402642673],[126,74,66,0.013635553609247128],[126,74,67,0.014101121143898745],[126,74,68,0.01441716571691589],[126,74,69,0.014636185835603827],[126,74,70,0.014799317201458558],[126,74,71,0.014937359123697896],[126,74,72,0.01507247268823147],[126,74,73,0.015219743275516584],[126,74,74,0.015388603826547461],[126,74,75,0.015584115672901225],[126,74,76,0.01577305146411658],[126,74,77,0.015525614449765976],[126,74,78,0.015249867661355963],[126,74,79,0.014948436004288487],[126,75,64,0.01159894073859266],[126,75,65,0.012401774121546801],[126,75,66,0.013053084518549325],[126,75,67,0.013530265897214035],[126,75,68,0.013860916426163704],[126,75,69,0.014096875798842124],[126,75,70,0.014278783368949215],[126,75,71,0.01443709319831087],[126,75,72,0.014593738189538975],[126,75,73,0.01476366203382537],[126,75,74,0.014956215394529453],[126,75,75,0.015176413153566173],[126,75,76,0.015426049950388224],[126,75,77,0.015704671640062777],[126,75,78,0.015687335884472305],[126,75,79,0.015359208587480402],[126,76,64,0.01105515230524952],[126,76,65,0.011866568340834879],[126,76,66,0.012527723423056686],[126,76,67,0.013018013712086164],[126,76,68,0.01336509520510579],[126,76,69,0.013619611104629876],[126,76,70,0.013821299275580172],[126,76,71,0.013999987922171251],[126,76,72,0.014177209079577967],[126,76,73,0.014367684251385033],[126,76,74,0.014580678673792046],[126,76,75,0.014821221080511397],[126,76,76,0.015091186231920005],[126,76,77,0.015390237855866363],[126,76,78,0.015716630023008424],[126,76,79,0.015741454031602438],[126,77,64,0.010603572256427461],[126,77,65,0.011423936930696292],[126,77,66,0.012095443985998836],[126,77,67,0.012599749503501458],[126,77,68,0.012964299461977158],[126,77,69,0.01323798748533032],[126,77,70,0.013459238824533381],[126,77,71,0.013656977941559805],[126,77,72,0.013852173820720511],[126,77,73,0.014059262604882765],[126,77,74,0.014287444139780978],[126,77,75,0.014541849386134944],[126,77,76,0.014824576032633147],[126,77,77,0.015135590010666994],[126,77,78,0.015473490971533058],[126,77,79,0.015836140135902874],[126,78,64,0.010284390496017126],[126,78,65,0.011113773209472875],[126,78,66,0.011795636479851115],[126,78,67,0.012314127978040417],[126,78,68,0.01269620611382659],[126,78,69,0.012988464237722888],[126,78,70,0.01322761224320357],[126,78,71,0.013441406790075222],[126,78,72,0.013650110421154531],[126,78,73,0.013867833982639011],[126,78,74,0.014103759077494208],[126,78,75,0.014363237638237781],[126,78,76,0.01464876605951344],[126,78,77,0.014960831679574836],[126,78,78,0.01529862974087279],[126,78,79,0.01566064929073335],[126,79,64,0.010122300151219994],[126,79,65,0.010960484146204161],[126,79,66,0.011652389811455638],[126,79,67,0.012184870553887313],[126,79,68,0.012584124822491398],[126,79,69,0.012893912332183526],[126,79,70,0.013148836338457977],[126,79,71,0.01337522803168819],[126,79,72,0.013592502557199664],[126,79,73,0.01381440501428494],[126,79,74,0.014050143351952763],[126,79,75,0.014305405414135079],[126,79,76,0.014583257719021423],[126,79,77,0.014884923884030987],[126,79,78,0.015210440927427227],[126,79,79,0.015559191987247324],[126,80,64,0.010070208260208408],[126,80,65,0.01091689392971483],[126,80,66,0.011619166782859151],[126,80,67,0.012166846966556143],[126,80,68,0.012585144159287897],[126,80,69,0.012914478696011544],[126,80,70,0.013186942124720467],[126,80,71,0.013427132674329493],[126,80,72,0.013653397121846163],[126,80,73,0.013878969791595317],[126,80,74,0.014113005823394984],[126,80,75,0.014361506157616855],[126,80,76,0.014628131993136588],[126,80,77,0.014914906777298733],[126,80,78,0.015222804083085555],[126,80,79,0.015552220015363253],[126,81,64,0.010077384298281885],[126,81,65,0.010932127531002643],[126,81,66,0.011645650611834273],[126,81,67,0.012211040660042836],[126,81,68,0.012652339376789279],[126,81,69,0.013006163305488885],[126,81,70,0.01330168429805627],[126,81,71,0.013561418446185919],[126,81,72,0.013802348921119397],[126,81,73,0.01403695334169737],[126,81,74,0.014274133044480625],[126,81,75,0.014520041916054554],[126,81,76,0.01477881273100891],[126,81,77,0.015053179217658252],[126,81,78,0.015344992345377756],[126,81,79,0.01565562959031479],[126,82,64,0.010108411611763344],[126,82,65,0.010970512872784234],[126,82,66,0.01169638872403908],[126,82,67,0.012282706230521797],[126,82,68,0.012752206113215047],[126,82,69,0.013137291381623558],[126,82,70,0.013463823046485463],[126,82,71,0.013751869263312797],[126,82,72,0.014016709538427834],[126,82,73,0.01426975088171996],[126,82,74,0.014519353523230628],[126,82,75,0.014771564072352018],[126,82,76,0.015030754257170134],[126,82,77,0.015300163635581043],[126,82,78,0.015582344917446414],[126,82,79,0.01587951077623992],[126,83,64,0.010140460777395478],[126,83,65,0.01100888911406234],[126,83,66,0.011748165344950547],[126,83,67,0.012358839442010638],[126,83,68,0.012862261380497635],[126,83,69,0.013286277031869118],[126,83,70,0.013653079485199783],[126,83,71,0.013979928496859606],[126,83,72,0.014280040893544068],[126,83,73,0.014563400157130415],[126,83,74,0.014837483048271219],[126,83,75,0.015107901363482891],[126,83,76,0.01537895715543949],[126,83,77,0.015654109976663895],[126,83,78,0.015936354931150143],[126,83,79,0.01622851053482811],[126,84,64,0.010160789759659245],[126,84,65,0.011034138457606358],[126,84,66,0.011787593015876143],[126,84,67,0.012425860149028807],[126,84,68,0.012968849920485708],[126,84,69,0.01343958311081208],[126,84,70,0.01385627653277476],[126,84,71,0.014233045319567157],[126,84,72,0.014580688036129722],[126,84,73,0.014907397835516025],[126,84,74,0.015219397744825317],[126,84,75,0.015521498380726953],[126,84,76,0.015817576607281406],[126,84,77,0.01611097385717026],[126,84,78,0.016201508671199436],[126,84,79,0.01592037565001222],[126,85,64,0.010164478084064309],[126,85,65,0.01104094863932284],[126,85,66,0.011808930065345759],[126,85,67,0.012477514952051672],[126,85,68,0.013065162464419241],[126,85,69,0.013589883454267732],[126,85,70,0.014065670910455028],[126,85,71,0.014503199250970945],[126,85,72,0.01491051564448788],[126,85,73,0.015293663698334348],[126,85,74,0.015657237805345003],[126,85,75,0.01600486663727034],[126,85,76,0.01631712953362236],[126,85,77,0.016014406970782605],[126,85,78,0.015716668698957246],[126,85,79,0.015420841794459657],[126,86,64,0.010152402395317669],[126,86,65,0.011029813487694952],[126,86,66,0.011812131370958502],[126,86,67,0.012513006785035091],[126,86,68,0.013149472870901383],[126,86,69,0.01373443414800893],[126,86,70,0.01427748252254594],[126,86,71,0.014785608670024116],[126,86,72,0.015263813428025883],[126,86,73,0.015715657185167778],[126,86,74,0.016143745740633052],[126,86,75,0.016168477176028123],[126,86,76,0.01580762720870744],[126,86,77,0.015462374316075318],[126,86,78,0.01513045119108534],[126,86,79,0.014809113502204825],[126,87,64,0.01012946021400539],[126,87,65,0.011005278391270284],[126,87,66,0.01180113920663594],[126,87,67,0.012535358109811306],[126,87,68,0.013223600614581573],[126,87,69,0.013873660016601641],[126,87,70,0.014490627033055694],[126,87,71,0.015077628659078883],[126,87,72,0.01563637527001143],[126,87,73,0.016167650530144215],[126,87,74,0.016101851134506975],[126,87,75,0.01565434399532469],[126,87,76,0.015231252543853154],[126,87,77,0.014831850274410927],[126,87,78,0.014454791768028927],[126,87,79,0.014097989302330104],[126,88,64,0.010103048187708668],[126,88,65,0.010974436999032984],[126,88,66,0.011782420466344725],[126,88,67,0.01255001390274028],[126,88,68,0.013291604628262305],[126,88,69,0.014009962073657749],[126,88,70,0.014705657040150154],[126,88,71,0.015377843165078522],[126,88,72,0.0160247566090728],[126,88,73,0.016177483106663382],[126,88,74,0.01562131703177085],[126,88,75,0.015094721190337711],[126,88,76,0.014599273659654915],[126,88,77,0.014135797576797223],[126,88,78,0.013704197279269732],[126,88,79,0.013303353106949755],[126,89,64,0.010081800649992145],[126,89,65,0.010945685000079211],[126,89,66,0.011763756085389258],[126,89,67,0.012563690162378504],[126,89,68,0.013358714062956563],[126,89,69,0.014146751260145923],[126,89,70,0.014923916863738777],[126,89,71,0.015685356110600075],[126,89,72,0.016425714241892472],[126,89,73,0.01576054430566879],[126,89,74,0.015113319757683858],[126,89,75,0.014499996320495279],[126,89,76,0.013924312133876644],[126,89,77,0.013388937327737143],[126,89,78,0.012895321693125643],[126,89,79,0.012443597790819503],[126,90,64,0.010074593851211778],[126,90,65,0.010927736383086199],[126,90,66,0.011753288042118178],[126,90,67,0.012583473240921069],[126,90,68,0.01343050112144328],[126,90,69,0.01428771341020831],[126,90,70,0.015146915600706549],[126,90,71,0.01599928575729408],[126,90,72,0.01610244134767627],[126,90,73,0.015329310749329115],[126,90,74,0.014586546078111374],[126,90,75,0.013881444476668253],[126,90,76,0.013220141114165324],[126,90,77,0.012607404442270095],[126,90,78,0.012046484431241579],[126,90,79,0.011539014269297007],[126,91,64,0.010089820806621477],[126,91,65,0.010928907160654673],[126,91,66,0.011758828914387353],[126,91,67,0.012616174904872404],[126,91,68,0.013512300739246197],[126,91,69,0.014436310022451508],[126,91,70,0.01537592276529085],[126,91,71,0.016318466315773366],[126,91,72,0.01576102291647629],[126,91,73,0.014890294579421282],[126,91,74,0.01405025349353587],[126,91,75,0.013251044047514622],[126,91,76,0.012501378185997277],[126,91,77,0.011808321359889221],[126,91,78,0.011177130755341871],[126,91,79,0.010611146293390446],[126,92,64,0.010134941317909258],[126,92,65,0.01095667115680893],[126,92,66,0.011787438584489971],[126,92,67,0.012667947659957903],[126,92,68,0.013608881530909096],[126,92,69,0.014595519077209037],[126,92,70,0.015611790517270413],[126,92,71,0.016399444874696457],[126,92,72,0.015416965929666916],[126,92,73,0.014450350946312786],[126,92,74,0.013514057812660836],[126,92,75,0.01262116233028333],[126,92,76,0.011783071520929497],[126,92,77,0.011009289110859567],[126,92,78,0.010307233847695274],[126,92,79,0.009682111175235998],[126,93,64,0.01021631136238032],[126,93,65,0.01101749209607478],[126,93,66,0.011845272331833684],[126,93,67,0.012744164530069215],[126,93,68,0.013724372087376717],[126,93,69,0.014767819825302177],[126,93,70,0.015855006186574594],[126,93,71,0.016144500432759987],[126,93,72,0.01507456128307563],[126,93,73,0.01401639153916353],[126,93,74,0.012987565805876601],[126,93,75,0.012004109128136523],[126,93,76,0.01108017793677554],[126,93,77,0.010227794879873986],[126,93,78,0.009456638258872233],[126,93,79,0.008773886652654257],[126,94,64,0.010339295707957509],[126,94,65,0.0111169358980552],[126,94,66,0.011937704222865398],[126,94,67,0.012849567158523622],[126,94,68,0.013862446400752206],[126,94,69,0.014955425179963759],[126,94,70,0.01610597852832998],[126,94,71,0.015888005439486402],[126,94,72,0.014737835716935013],[126,94,73,0.0135949191028107],[126,94,74,0.012479850789435448],[126,94,75,0.011411556610193357],[126,94,76,0.010406931601487545],[126,94,77,0.009480535277403163],[126,94,78,0.008644344426862445],[126,94,79,0.007907564097377952],[126,95,64,0.010508667300591308],[126,95,65,0.011260066770890356],[126,95,66,0.012069729401232715],[126,95,67,0.012988685800759596],[126,95,68,0.01402677190438141],[126,95,69,0.015160765069591452],[126,95,70,0.016365560886074902],[126,95,71,0.015631005569121944],[126,95,72,0.014409944965212872],[126,95,73,0.013191380588517154],[126,95,74,0.011998769147522029],[126,95,75,0.010853823836379324],[126,95,76,0.00977610220666582],[126,95,77,0.008782654590728654],[126,95,78,0.007887734000512946],[126,95,79,0.007102568268002625],[126,96,64,0.010729296682274939],[126,96,65,0.011452130409138669],[126,96,66,0.012246648596659308],[126,96,67,0.01316653449954698],[126,96,68,0.014221723347917197],[126,96,69,0.015387223853728944],[126,96,70,0.016624183112022836],[126,96,71,0.015373092528554032],[126,96,72,0.014092362490129965],[126,96,73,0.012809336758950518],[126,96,74,0.011550115945919285],[126,96,75,0.010339024467294466],[126,96,76,0.009198141525102168],[126,96,77,0.008146897344709659],[126,96,78,0.007201735727607418],[126,96,79,0.006375843805598744],[126,97,64,0.011007134431505387],[126,97,65,0.01169952733531017],[126,97,66,0.012475037907373724],[126,97,67,0.013389584475761862],[126,97,68,0.014453365477684263],[126,97,69,0.015640134667130046],[126,97,70,0.01640238277970461],[126,97,71,0.015111390023407355],[126,97,72,0.01378386151143606],[126,97,73,0.012449446229732859],[126,97,74,0.011136617928175574],[126,97,75,0.009872076290088865],[126,97,76,0.008680217349864083],[126,97,77,0.0075826745569667195],[126,97,78,0.006597931693745485],[126,97,79,0.005741008667118579],[126,98,64,0.011350489372706097],[126,98,65,0.012011079178514404],[126,98,66,0.012764006667172582],[126,98,67,0.013667018528793897],[126,98,68,0.014730707261363855],[126,98,69,0.015928033336059258],[126,98,70,0.016156722237510864],[126,98,71,0.014839311616065016],[126,98,72,0.013479288212359731],[126,98,73,0.012108262081250395],[126,98,74,0.010756762313560474],[126,98,75,0.009453571295126488],[126,98,76,0.008225133890399514],[126,98,77,0.007095043123504967],[126,98,78,0.006083603722511566],[126,98,79,0.005207474689125592],[126,99,64,0.011771605075938633],[126,99,65,0.012399590457562887],[126,99,66,0.013126745983443057],[126,99,67,0.014012269019863665],[126,99,68,0.015067230181930274],[126,99,69,0.016264174306351138],[126,99,70,0.01587452856188254],[126,99,71,0.0145450883203982],[126,99,72,0.013168124164713265],[126,99,73,0.011776839315626533],[126,99,74,0.01040345993605096],[126,99,75,0.009078505135329278],[126,99,76,0.007830137774184375],[126,99,77,0.006683597818938257],[126,99,78,0.005660719770233171],[126,99,79,0.004779535471852162],[126,100,64,0.01228853696238892],[126,100,65,0.012883708228604279],[126,100,66,0.013582370325941473],[126,100,67,0.014444841808175821],[126,100,68,0.015482692928173471],[126,100,69,0.016668310833505385],[126,100,70,0.015536418917367005],[126,100,71,0.014210063942939444],[126,100,72,0.012832836164904151],[126,100,73,0.011439151565248346],[126,100,74,0.010062541375443834],[126,100,75,0.008734864890761532],[126,100,76,0.0074856088706971744],[126,100,77,0.006341275440473359],[126,100,78,0.005324860169884765],[126,100,79,0.004455421771026271],[126,101,64,0.012924390875536262],[126,101,65,0.01348705761030955],[126,101,66,0.014154952042227636],[126,101,67,0.014989250005206976],[126,101,68,0.016001967301439816],[126,101,69,0.01633779110123597],[126,101,70,0.015117629993559553],[126,101,71,0.0138100836461953],[126,101,72,0.012450304317253824],[126,101,73,0.011073537296546648],[126,101,74,0.009714198935382709],[126,101,75,0.008405044312653029],[126,101,76,0.007176426851403376],[126,101,77,0.006055651945482094],[126,101,78,0.005066426403830442],[126,101,79,0.004228405272196506],[126,102,64,0.01367286749555246],[126,102,65,0.014202867554673523],[126,102,66,0.014837288049365984],[126,102,67,0.01563794615857003],[126,102,68,0.016617217637418538],[126,102,69,0.01581219043439837],[126,102,70,0.014626667684195618],[126,102,71,0.013354062793512658],[126,102,72,0.012029912251750331],[126,102,73,0.010689888149978021],[126,102,74,0.009368842368542176],[126,102,75,0.008099944843610957],[126,102,76,0.0069139183500636124],[126,102,77,0.00583837197297443],[126,102,78,0.004897235177585628],[126,102,79,0.004110294129843782],[126,103,64,0.014502178441044358],[126,103,65,0.014998375290468319],[126,103,66,0.015595798800962986],[126,103,67,0.016356713722716472],[126,103,68,0.01625371125063752],[126,103,69,0.015235626522937445],[126,103,70,0.014098544040377275],[126,103,71,0.012876842506006356],[126,103,72,0.011606080868614107],[126,103,73,0.010321932818265739],[126,103,74,0.009059215915958834],[126,103,75,0.0078510181487902],[126,103,76,0.006727924428793518],[126,103,77,0.005717345281648459],[126,103,78,0.004842949702548045],[126,103,79,0.004124203892444027],[126,104,64,0.015378522050166208],[126,104,65,0.015839009409968418],[126,104,66,0.016395378264124034],[126,104,67,0.016418961099208512],[126,104,68,0.01560426892143247],[126,104,69,0.014643320793346805],[126,104,70,0.013567978570714212],[126,104,71,0.01241235608527062],[126,104,72,0.01121166318706523],[126,104,73,0.010001143280001758],[126,104,74,0.008815107453317412],[126,104,75,0.007686068036059768],[126,104,76,0.006643974125689056],[126,104,77,0.005715551367482498],[126,104,78,0.004923747990265687],[126,104,79,0.004287288837989784],[126,105,64,0.016269013983266054],[126,105,65,0.016691285855169973],[126,105,66,0.016302349842926552],[126,105,67,0.01571531292807994],[126,105,68,0.01496144473658101],[126,105,69,0.014068137989529892],[126,105,70,0.013066883864625123],[126,105,71,0.011991239972783245],[126,105,72,0.010875698820165895],[126,105,73,0.009754650279564894],[126,105,74,0.008661441152303336],[126,105,75,0.007627534627823077],[126,105,76,0.0066817721741055805],[126,105,77,0.005849740119767783],[126,105,78,0.005153242919917059],[126,105,79,0.004609884834500583],[126,106,64,0.016247832384100724],[126,106,65,0.015948434009304447],[126,106,66,0.015566479418454385],[126,106,67,0.015039441306118295],[126,106,68,0.014354305952860025],[126,106,69,0.013538227111160575],[126,106,70,0.01262213467134687],[126,106,71,0.011638746877572326],[126,106,72,0.010621486241090126],[126,106,73,0.009603488479366425],[126,106,74,0.00861670747920104],[126,106,75,0.0076911190144106825],[126,106,76,0.006854025681242444],[126,106,77,0.00612946524926268],[126,106,78,0.005537724363821487],[126,106,79,0.0050949592801712565],[126,107,64,0.015454905939996582],[126,107,65,0.015201393862532806],[126,107,66,0.014875171155382024],[126,107,67,0.014413959288550042],[126,107,68,0.013804761372593264],[126,107,69,0.01307441480391241],[126,107,70,0.012253104616431898],[126,107,71,0.011372444064518667],[126,107,72,0.01046445986016784],[126,107,73,0.009560667933871331],[126,107,74,0.008691242574117217],[126,107,75,0.007884281543824144],[126,107,76,0.00716516951588552],[126,107,77,0.0065560419160828705],[126,107,78,0.006075351011690282],[126,107,79,0.00573753583993151],[126,108,64,0.014711022003422034],[126,108,65,0.014507203343696444],[126,108,66,0.014241264595089315],[126,108,67,0.013851354619243472],[126,108,68,0.013324568611619719],[126,108,69,0.012687350064063734],[126,108,70,0.011968969449288892],[126,108,71,0.0111996957454131],[126,108,72,0.010409870920765823],[126,108,73,0.00962907097629002],[126,108,74,0.008885356200577683],[126,108,75,0.008204613051194663],[126,108,76,0.007609989835392633],[126,108,77,0.007121428125205161],[126,108,78,0.00675529160796832],[126,108,79,0.006524093845213574],[126,109,64,0.01401485537250001],[126,109,65,0.01386501272823384],[126,109,66,0.013664008590898363],[126,109,67,0.013350607731364643],[126,109,68,0.012912078894489294],[126,109,69,0.012374399199796007],[126,109,70,0.01176577579404396],[126,109,71,0.01111492859098627],[126,109,72,0.010450271294025586],[126,109,73,0.009799173675187317],[126,109,74,0.009187307514610237],[126,109,75,0.008638078382427512],[126,109,76,0.008172145223735723],[126,109,77,0.0078070294888637],[126,109,78,0.007556815336942052],[126,109,79,0.00743194223244942],[126,110,64,0.013347439085945665],[126,110,65,0.01325645576513459],[126,110,66,0.013125293490216648],[126,110,67,0.012893536130223806],[126,110,68,0.012548718372157826],[126,110,69,0.01211629005984715],[126,110,70,0.011623274444143347],[126,110,71,0.011096679448605188],[126,110,72,0.010562799315827594],[126,110,73,0.010046591077049959],[126,110,74,0.009571127955302865],[126,110,75,0.009157131612196355],[126,110,76,0.008822584949784372],[126,110,77,0.00858242698318584],[126,110,78,0.00844833110825999],[126,110,79,0.008428567903104249],[126,111,64,0.012667688974287352],[126,111,65,0.012640901851844941],[126,111,66,0.012584826736510207],[126,111,67,0.012440106437923447],[126,111,68,0.012194657540547677],[126,111,69,0.011873359037494603],[126,111,70,0.01150195594786105],[126,111,71,0.01110561394410314],[126,111,72,0.010708353082457189],[126,111,73,0.01033254904439304],[126,111,74,0.009998503669617432],[126,111,75,0.009724086385539397],[126,111,76,0.009524447964345612],[126,111,77,0.00941180786820888],[126,111,78,0.009395316276980906],[126,111,79,0.009480991732333228],[126,112,64,0.01192559823981788],[126,112,65,0.011967500420836677],[126,112,66,0.011991441000777314],[126,112,67,0.011939453733784104],[126,112,68,0.011799999947730337],[126,112,69,0.011597357722680371],[126,112,70,0.011355896021425348],[126,112,71,0.01109878841036457],[126,112,72,0.010847591092288118],[126,112,73,0.010621880454881587],[126,112,74,0.010438951549795085],[126,112,75,0.010313578768056051],[126,112,76,0.010257839830785234],[126,112,77,0.010281004070753835],[126,112,78,0.010389485841453662],[126,112,79,0.010586863757208922],[126,113,64,0.011091007090610006],[126,113,65,0.011204714229367797],[126,113,66,0.011312684437062594],[126,113,67,0.011358748101167432],[126,113,68,0.01133210870225439],[126,113,69,0.011256421517640619],[126,113,70,0.01115457656914176],[126,113,71,0.011047587730916849],[126,113,72,0.010954327759208212],[126,113,73,0.010891314332152544],[126,113,74,0.0108725481133337],[126,113,75,0.010909403731866035],[126,113,76,0.011010574453629338],[126,113,77,0.011182071203828067],[126,113,78,0.011427276491309089],[126,113,79,0.011747053681036757],[126,114,64,0.010154409444532405],[126,114,65,0.010341490580773329],[126,114,66,0.010536192927168795],[126,114,67,0.010684587931073528],[126,114,68,0.0107768341808073],[126,114,69,0.010835946769662753],[126,114,70,0.010883235759730556],[126,114,71,0.010937386250051317],[126,114,72,0.011014362374359108],[126,114,73,0.011127353461041548],[126,114,74,0.011286762935425496],[126,114,75,0.011500240453014617],[126,114,76,0.01177275766408938],[126,114,77,0.012106727925981508],[126,114,78,0.012502170200171038],[126,114,79,0.012956917297937397],[126,115,64,0.009123113153929501],[126,115,65,0.009383485597915351],[126,115,66,0.00966601826450397],[126,115,67,0.009919475761352565],[126,115,68,0.010135183724382891],[126,115,69,0.010335501356794613],[126,115,70,0.010540065521978467],[126,115,71,0.010765075556160388],[126,115,72,0.011023376502418702],[126,115,73,0.011324575479117797],[126,115,74,0.011675191302195463],[126,115,75,0.0120788374194084],[126,115,76,0.012536438157212474],[126,115,77,0.013046478228122872],[126,115,78,0.01360528539880584],[126,115,79,0.01420734617742688],[126,116,64,0.008017658218767723],[126,116,65,0.00834954254903807],[126,116,66,0.0087192036835127],[126,116,67,0.009078532014524321],[126,116,68,0.009420217013314648],[126,116,69,0.00976594588526564],[126,116,70,0.0101336017665117],[126,116,71,0.010536764411640684],[126,116,72,0.01098498045909725],[126,116,73,0.011484057778344384],[126,116,74,0.012036383537415884],[126,116,75,0.01264126559856796],[126,116,76,0.013295296823432596],[126,116,77,0.013992741847924733],[126,116,78,0.014725945871624072],[126,116,79,0.01548576499688618],[126,117,64,0.006868497293245235],[126,117,65,0.0072684285705616365],[126,117,66,0.007722611067619959],[126,117,67,0.008186450898438762],[126,117,68,0.008654171254102044],[126,117,69,0.009146769432831638],[126,117,70,0.009680310999049651],[126,117,71,0.010265654155083057],[126,117,72,0.010908911786515565],[126,117,73,0.011611928658372947],[126,117,74,0.012372772908065172],[126,117,75,0.013186240980243121],[126,117,76,0.014044375153362402],[126,117,77,0.014936992818162433],[126,117,78,0.015852226684757602],[126,117,79,0.016777075117863333],[126,118,64,0.005712942487938921],[126,118,65,0.006175833830840264],[126,118,66,0.006710003873884585],[126,118,67,0.007274702448652651],[126,118,68,0.007865820038764619],[126,118,69,0.008503643517155409],[126,118,70,0.009202376756415286],[126,118,71,0.009970092692192978],[126,118,72,0.010809388462201938],[126,118,73,0.011718047023584033],[126,118,74,0.012689703898985296],[126,118,75,0.013714517730343528],[126,118,76,0.01477984335426139],[126,118,77,0.015870906154174347],[126,118,78,0.016971476492443408],[126,118,79,0.017008953427402326],[126,119,64,0.004592382186150829],[126,119,65,0.005111636897363737],[126,119,66,0.005719389536040491],[126,119,67,0.00637898442331421],[126,119,68,0.007088069481413925],[126,119,69,0.007866197728072162],[126,119,70,0.008725689075847632],[126,119,71,0.009671809994322695],[126,119,72,0.010703619406462837],[126,119,73,0.011814812774671477],[126,119,74,0.012994562537928363],[126,119,75,0.01422835311822501],[126,119,76,0.015498808778422354],[126,119,77,0.016786512684744428],[126,119,78,0.01699085897650151],[126,119,79,0.015796255804074615],[126,120,64,0.0035497713285968474],[126,120,65,0.004117439806686705],[126,120,66,0.004790624848706226],[126,120,67,0.005536927509968776],[126,120,68,0.0063557949962964235],[126,120,69,0.007266020236661456],[126,120,70,0.008278040000331499],[126,120,71,0.009394337837255623],[126,120,72,0.010610474691520452],[126,120,73,0.011916109912081542],[126,120,74,0.01329601034928719],[126,120,75,0.014731045309039818],[126,120,76,0.016199165227717582],[126,120,77,0.017368386108058697],[126,120,78,0.01597547601929254],[126,120,79,0.014621667093072358],[126,121,64,0.0026273983744206737],[126,121,65,0.00323437609099766],[126,121,66,0.003963287593747339],[126,121,67,0.004786057068522615],[126,121,68,0.005703921856254726],[126,121,69,0.0067348861820097],[126,121,70,0.007887527927321064],[126,121,71,0.009161616337596566],[126,121,72,0.010549317703750843],[126,121,73,0.012036384242692445],[126,121,74,0.013603323417573936],[126,121,75,0.015226545046466314],[126,121,76,0.01687948366466514],[126,121,77,0.01656054572744415],[126,121,78,0.015003784270390615],[126,121,79,0.013502081761492996],[126,122,64,0.0018649319182766585],[126,122,65,0.0025011947872608828],[126,122,66,0.003274817444665465],[126,122,67,0.004162014415230184],[126,122,68,0.005165752460002039],[126,122,69,0.006303216738049635],[126,122,70,0.0075811734250700235],[126,122,71,0.00899678967951146],[126,122,72,0.010539001367364886],[126,122,73,0.012189857462570177],[126,122,74,0.013925837950107229],[126,122,75,0.015719142188596262],[126,122,76,0.01753144583145632],[126,122,77,0.01579035619957417],[126,122,78,0.014086629698566852],[126,122,79,0.012453049962224242],[126,123,64,0.0012977497325597268],[126,123,65,0.0019526232439408644],[126,123,66,0.0027589289761367187],[126,123,67,0.0036970404486916185],[126,123,68,0.004771543040516627],[126,123,69,0.005998771477640707],[126,123,70,0.007383748969555768],[126,123,71,0.008921193270422125],[126,123,72,0.010597030403780811],[126,123,73,0.012389879277330009],[126,123,74,0.014272503642300644],[126,123,75,0.01621322800102546],[126,123,76,0.016939993669573033],[126,123,77,0.01506267133896467],[126,123,78,0.013233347890694793],[126,123,79,0.011488181857475263],[126,124,64,9.555528104784212E-4],[126,124,65,0.0016180113461653203],[126,124,66,0.002444299413154405],[126,124,67,0.0034187242301996347],[126,124,68,0.004547332364990735],[126,124,69,0.005845576478876159],[126,124,70,0.007316824895488424],[126,124,71,0.008953534420409305],[126,124,72,0.010738891475582204],[126,124,73,0.012648419117437902],[126,124,74,0.014651546068310761],[126,124,75,0.016713134056194297],[126,124,76,0.016368565973503623],[126,124,77,0.014381092772842356],[126,124,78,0.012451395240889212],[126,124,79,0.010618613519986915],[126,125,64,8.612668093666395E-4],[126,125,65,0.0015202596026097157],[126,125,66,0.002353533577468346],[126,125,67,0.0033490189571919846],[126,125,68,0.004514024808961821],[126,125,69,0.005863090459337355],[126,125,70,0.007398033707015331],[126,125,71,0.009109268506419663],[126,125,72,0.010977552947269325],[126,125,73,0.012975698908656337],[126,125,74,0.015070239244578948],[126,125,75,0.017223048536758507],[126,125,76,0.01581615077171988],[126,125,77,0.01374776617993502],[126,125,78,0.011746007376351151],[126,125,79,0.009852535277808615],[126,126,64,0.0010302331342685103],[126,126,65,0.0016750333762572305],[126,126,66,0.0025024083280292073],[126,126,67,0.003503527609932028],[126,126,68,0.004686730033409483],[126,126,69,0.006065611077571663],[126,126,70,0.007640554757389722],[126,126,71,0.009400172458845332],[126,126,72,0.011323135886944653],[126,126,73,0.013379968267737625],[126,126,74,0.015534789443963486],[126,126,75,0.017428124809403662],[126,126,76,0.015280967912926933],[126,126,77,0.01316316934978707],[126,126,78,0.011119885214855808],[126,126,79,0.009194783313701271],[126,127,64,0.0014696917593142128],[126,127,65,0.002090265396418891],[126,127,66,0.002899398646864477],[126,127,67,0.0038910604077886423],[126,127,68,0.00507436135366139],[126,127,69,0.006461923407399157],[126,127,70,0.008052821182030035],[126,127,71,0.009834117294617542],[126,127,72,0.011782757833603285],[126,127,73,0.013867423410380435],[126,127,74,0.01605033127369947],[126,127,75,0.016929404350968843],[126,127,76,0.01476032042691168],[126,127,77,0.012625892052054272],[126,127,78,0.010572909021878126],[126,127,79,0.008646495277996252],[126,128,64,0.002178557758715857],[126,128,65,0.0027659485609818403],[126,128,66,0.003545487392238264],[126,128,67,0.004513466082632482],[126,128,68,0.005679494762940515],[126,128,69,0.00705519246978963],[126,128,70,0.008638450856096186],[126,128,71,0.010415041317679737],[126,128,72,0.012360550763881574],[126,128,73,0.014442270982451067],[126,128,74,0.016621036971403425],[126,128,75,0.01640803383855601],[126,128,76,0.014250401540084055],[126,128,77,0.012132407702520439],[126,128,78,0.01010188080950976],[126,128,79,0.008204830624104128],[126,129,64,0.00314749341035761],[126,129,65,0.0036942209258052417],[126,129,66,0.0044342606271009],[126,129,67,0.005365738862937014],[126,129,68,0.0064984904613389575],[126,129,69,0.007843101599034136],[126,129,70,0.009396403045992567],[126,129,71,0.01114312551462044],[126,129,72,0.01305785460999096],[126,129,73,0.015106937956564034],[126,129,74,0.017250339819784667],[126,129,75,0.015859682646172036],[126,129,76,0.013746057011770858],[126,129,77,0.011676836809386335],[126,129,78,0.009700295394589413],[126,129,79,0.007862756328852033],[126,130,64,0.004359277642988031],[126,130,65,0.004859744682567792],[126,130,66,0.0055522903327934236],[126,130,67,0.006436402963254117],[126,130,68,0.007521878643009583],[126,130,69,0.008818238324856462],[126,130,70,0.010321362334168088],[126,130,71,0.012015172590445098],[126,130,72,0.013873587607216888],[126,130,73,0.015862428674395742],[126,130,74,0.017318697335837373],[126,130,75,0.015279396283224892],[126,130,76,0.013240502472400802],[126,130,77,0.011250702179688547],[126,130,78,0.00935814040985287],[126,130,79,0.007608898615469036],[126,131,64,0.005789474523053304],[126,131,65,0.00624038084730862],[126,131,66,0.006879806235863829],[126,131,67,0.007708176289960904],[126,131,68,0.008735011210568489],[126,131,69,0.00996872937011685],[126,131,70,0.011404351318367601],[126,131,71,0.0130251910170916],[126,131,72,0.014804794684929812],[126,131,73,0.016708830060695675],[126,131,74,0.016603145536881418],[126,131,75,0.014661201322416759],[126,131,76,0.01272499545758982],[126,131,77,0.010842675861499815],[126,131,78,0.009061725539424713],[126,131,79,0.007427461255381886],[126,132,64,0.00740727214948184],[126,132,65,0.007808022812639995],[126,132,66,0.008391511870893053],[126,132,67,0.009158760494726359],[126,132,68,0.010118818646499269],[126,132,69,0.01127895642758662],[126,132,70,0.012633396787237836],[126,132,71,0.014165002715163166],[126,132,72,0.015847187588995396],[126,132,73,0.01760539559313782],[126,132,74,0.01581886761913102],[126,132,75,0.013997820863331258],[126,132,76,0.012188652153586834],[126,132,77,0.010438503951283408],[126,132,78,0.008793721142927645],[126,132,79,0.007298382587501906],[126,133,64,0.009155748676360289],[126,133,65,0.009507448276277789],[126,133,66,0.01003404590001006],[126,133,67,0.010736911217756365],[126,133,68,0.011624496759256838],[126,133,69,0.012702906970132143],[126,133,70,0.013965636641898108],[126,133,71,0.015395244103638179],[126,133,72,0.01696522333480108],[126,133,73,0.016647648961016632],[126,133,74,0.014992986058068085],[126,133,75,0.013311862071840574],[126,133,76,0.011649450151471005],[126,133,77,0.010051486415946043],[126,133,78,0.008562769079514074],[126,133,79,0.007225732792640558],[126,134,64,0.010937415510769257],[126,134,65,0.011240248146698063],[126,134,66,0.011708347279886072],[126,134,67,0.012343244644870414],[126,134,68,0.013152754773646315],[126,134,69,0.014141901282418408],[126,134,70,0.01530360743963004],[126,134,71,0.016620343160948563],[126,134,72,0.01716916875821768],[126,134,73,0.01571995009175835],[126,134,74,0.014210952187405248],[126,134,75,0.01268386553911185],[126,134,76,0.01118228405485261],[126,134,77,0.009750183566094583],[126,134,78,0.00843047225008957],[126,134,79,0.007263616315751916],[126,135,64,0.01266321393162402],[126,135,65,0.01291641040080573],[126,135,66,0.013323764772424035],[126,135,67,0.01388684285560155],[126,135,68,0.014612858528006674],[126,135,69,0.01550592990781402],[126,135,70,0.016558641308427796],[126,135,71,0.01742304222472231],[126,135,72,0.016206371281884853],[126,135,73,0.014902759002404073],[126,135,74,0.013549004298915018],[126,135,75,0.01218511767741813],[126,135,76,0.010852791818184425],[126,135,77,0.009593939954912856],[126,135,78,0.008449305530909211],[126,135,79,0.007457146381437043],[126,136,64,0.014259332583538564],[126,136,65,0.014461445732874117],[126,136,66,0.01480546580051094],[126,136,67,0.015292924511808033],[126,136,68,0.01593053842045319],[126,136,69,0.016721764020042586],[126,136,70,0.017455164431685342],[126,136,71,0.016486494621448234],[126,136,72,0.015410915594746204],[126,136,73,0.014259033954571829],[126,136,74,0.013065926809736523],[126,136,75,0.011869618885236835],[126,136,76,0.010709622324656658],[126,136,77,0.009625542739581818],[126,136,78,0.008655754848136857],[126,136,79,0.00783615082427985],[126,137,64,0.015667861283898403],[126,137,65,0.015816956087637182],[126,137,66,0.01609490040798246],[126,137,67,0.016503182103357137],[126,137,68,0.01704817750092752],[126,137,69,0.017315063643642954],[126,137,70,0.0165985214439795],[126,137,71,0.015763235083344547],[126,137,72,0.014832444324753082],[126,137,73,0.013835046032184717],[126,137,74,0.012804094588134017],[126,137,75,0.011775358822414338],[126,137,76,0.010785939022849649],[126,137,77,0.009872947404983816],[126,137,78,0.009072255216330628],[126,137,79,0.008417309441905196],[126,138,64,0.016847805217389503],[126,138,65,0.016941559282111343],[126,138,66,0.01715061396251702],[126,138,67,0.01739569863907973],[126,138,68,0.017052697568249692],[126,138,69,0.016581452733425952],[126,138,70,0.015988577494558134],[126,138,71,0.015288929270410754],[126,138,72,0.014504107039131952],[126,138,73,0.013660994421551872],[126,138,74,0.012790352026838656],[126,138,75,0.011925462577854618],[126,138,76,0.011100832162110878],[126,138,77,0.01035095077424834],[126,138,78,0.009709115128343609],[126,138,79,0.00920631652390675],[126,139,64,0.016795287006871065],[126,139,65,0.016872655391016206],[126,139,66,0.016846284591891567],[126,139,67,0.01671460760895695],[126,139,68,0.01647132022401416],[126,139,69,0.016113112927970564],[126,139,70,0.015645653007779273],[126,139,71,0.0150822945952312],[126,139,72,0.0144426863797817],[126,139,73,0.0137514203543589],[126,139,74,0.013036724981913349],[126,139,75,0.01232920602344839],[126,139,76,0.011660638112651212],[126,139,77,0.011062809998584848],[126,139,78,0.010566426206979215],[126,139,79,0.010200067693243676],[126,140,64,0.016150956717541458],[126,140,65,0.016290097870107174],[126,140,66,0.016339314356145013],[126,140,67,0.016296824919689833],[126,140,68,0.016156002549607664],[126,140,69,0.015912920292241874],[126,140,70,0.015571970234278932],[126,140,71,0.015144689534419248],[126,140,72,0.014648489154326795],[126,140,73,0.014105417749266984],[126,140,74,0.013540963773697177],[126,140,75,0.012982898728041136],[126,140,76,0.012460164335805449],[126,140,77,0.012001806295541716],[126,140,78,0.011635957100592686],[126,140,79,0.011388870261735778],[126,141,64,0.015741067638873743],[126,141,65,0.015945796962895192],[126,141,66,0.016074358685898536],[126,141,67,0.016124614880528576],[126,141,68,0.016089379351081942],[126,141,69,0.015963795423472888],[126,141,70,0.015750671693379133],[126,141,71,0.015459437005820378],[126,141,72,0.01510500033252429],[126,141,73,0.014706638651986037],[126,141,74,0.01428691551607087],[126,141,75,0.01387063287851749],[126,141,76,0.013483818644725115],[126,141,77,0.013152752279088305],[126,141,78,0.01290303067641778],[126,141,79,0.01275867636816549],[126,142,64,0.015521538008414309],[126,142,65,0.015796637657945724],[126,142,66,0.016009323501814422],[126,142,67,0.01615695997684582],[126,142,68,0.01623158474666797],[126,142,69,0.016227131219200403],[126,142,70,0.01614454495164131],[126,142,71,0.0159908796618721],[126,142,72,0.015778297941593498],[126,142,73,0.015523091626766327],[126,142,74,0.0152447241009516],[126,142,75,0.014964896721497116],[126,142,76,0.014706641465946954],[126,142,77,0.014493441796758526],[126,142,78,0.014348383636780858],[126,142,79,0.014293338236330966],[126,143,64,0.015431269771048474],[126,143,65,0.015782447021210323],[126,143,66,0.01608511388862188],[126,143,67,0.016336008796940134],[126,143,68,0.01652620391672897],[126,143,69,0.016648180057247247],[126,143,70,0.01670077013110585],[126,143,71,0.01668840774100558],[126,143,72,0.0166202783717583],[126,143,73,0.016509480807787986],[126,143,74,0.016372200608062736],[126,143,75,0.016226897409665396],[126,143,76,0.016093507764118414],[126,143,77,0.015992665137184375],[126,143,78,0.015944938623375336],[126,143,79,0.01597009184099675],[126,144,64,0.015432996562494526],[126,144,65,0.01586533259675424],[126,144,66,0.016263171567211472],[126,144,67,0.016622476932104398],[126,144,68,0.0169331678792627],[126,144,69,0.017186049636077293],[126,144,70,0.01737761208750282],[126,144,71,0.01750944207430672],[126,144,72,0.017587534690554567],[126,144,73,0.01762160425774026],[126,144,74,0.017624396327916212],[126,144,75,0.017611002034394002],[126,144,76,0.01759817606903921],[126,144,77,0.0176036595197503],[126,144,78,0.01764550875040499],[126,144,79,0.01774143144835462],[126,145,64,0.015501517330947958],[126,145,65,0.016018913742549618],[126,145,66,0.01651581450206754],[126,145,67,0.01698723294727443],[126,145,68,0.017421748575574464],[126,145,69,0.01750448511403282],[126,145,70,0.017277434643565206],[126,145,71,0.017103813446456468],[126,145,72,0.016981023660689893],[126,145,73,0.01690292250658227],[126,145,74,0.01686036503375796],[126,145,75,0.01684175720315859],[126,145,76,0.016833618481388108],[126,145,77,0.016821153140163435],[126,145,78,0.016788829474804482],[126,145,79,0.016720966182776506],[126,146,64,0.015615502400693794],[126,146,65,0.016220565238043612],[126,146,66,0.016818985688348925],[126,146,67,0.017404631860475216],[126,146,68,0.017272865586140593],[126,146,69,0.016859745598248124],[126,146,70,0.016492158770218434],[126,146,71,0.016174790555553684],[126,146,72,0.015908562957200986],[126,146,73,0.01569100163733069],[126,146,74,0.015516627513837917],[126,146,75,0.015377372527528438],[126,146,76,0.015263019242576503],[126,146,77,0.01516166392654835],[126,146,78,0.015060202745518602],[126,146,79,0.01494484070503005],[126,147,64,0.015756923037121347],[126,147,65,0.016450886528781638],[126,147,66,0.01715176906443011],[126,147,67,0.017307072024550944],[126,147,68,0.01673241962847505],[126,147,69,0.016186167992752798],[126,147,70,0.015679950986270303],[126,147,71,0.01522177686630393],[126,147,72,0.014816186785697934],[126,147,73,0.01446445184721978],[126,147,74,0.014164808990752358],[126,147,75,0.013912735940754059],[126,147,76,0.013701265387138964],[126,147,77,0.01352133852314826],[126,147,78,0.013362198019595433],[126,147,79,0.013211820476788929],[126,148,64,0.015910548156512504],[126,148,65,0.016693237065526074],[126,148,66,0.017495969912270225],[126,148,67,0.016881322007474477],[126,148,68,0.016183909374662617],[126,148,69,0.015507435355518344],[126,148,70,0.014866453760833724],[126,148,71,0.014272360521686484],[126,148,72,0.01373336357864253],[126,148,73,0.013254505953462562],[126,148,74,0.012837742887488849],[126,148,75,0.01248207383918388],[126,148,76,0.012183730044936095],[126,148,77,0.011936418263221964],[126,148,78,0.011731621243473829],[126,148,79,0.011558955388536674],[126,149,64,0.016063508658375157],[126,149,65,0.016933338220526416],[126,149,66,0.017273924670634048],[126,149,67,0.01646301968647593],[126,149,68,0.015646680248881564],[126,149,69,0.014844762430805798],[126,149,70,0.014074764744236998],[126,149,71,0.013351480890777142],[126,149,72,0.012686778279111669],[126,149,73,0.012089445056919175],[126,149,74,0.011565107155996882],[126,149,75,0.011116216723440632],[126,149,76,0.010742113188532897],[126,149,77,0.010439158095787052],[126,149,78,0.010200944720597618],[126,149,79,0.010018583376422094],[126,150,64,0.01620492984566469],[126,150,65,0.017158942251276368],[126,150,66,0.016984033477761635],[126,150,67,0.016067566588681654],[126,150,68,0.015137853169590744],[126,150,69,0.014217033152908294],[126,150,70,0.01332552005942376],[126,150,71,0.012481458990565953],[126,150,72,0.011700313221028083],[126,150,73,0.010994535139040864],[126,150,74,0.0103733236563134],[126,150,75,0.00984247004919127],[126,150,76,0.009404294034278777],[126,150,77,0.00905767172711542],[126,150,78,0.008798156982990928],[126,150,79,0.008618197476184959],[126,151,64,0.016325632389900965],[126,151,65,0.017359568773763108],[126,151,66,0.016724360986970898],[126,151,67,0.015708402159734073],[126,151,68,0.014672455165282676],[126,151,69,0.013640881479211922],[126,151,70,0.012636925382502244],[126,151,71,0.011681980734773738],[126,151,72,0.010794987369596316],[126,151,73,0.009991927957296998],[126,151,74,0.009285428081240735],[126,151,75,0.008684462078737423],[126,151,76,0.008194167004501636],[126,151,77,0.007815766884694358],[126,151,78,0.007546609244794696],[126,151,79,0.007380315716732253],[126,152,64,0.01641790229403086],[126,152,65,0.017526309202957238],[126,152,66,0.016505131244063345],[126,152,67,0.015397118369206474],[126,152,68,0.014263489068414896],[126,152,69,0.0131307151264948],[126,152,70,0.012024734408728813],[126,152,71,0.010970032633532498],[126,152,72,0.009988853577964953],[126,152,73,0.009100525931020271],[126,152,74,0.008320910157211163],[126,152,75,0.007661968504440809],[126,152,76,0.007131461062689017],[126,152,77,0.006732770555599283],[126,152,78,0.006464858327709975],[126,152,79,0.006322353777966322],[126,153,64,0.01647533030593679],[126,153,65,0.017469629782395874],[126,153,66,0.01633496111101451],[126,153,67,0.015143509835748708],[126,153,68,0.013921941844526617],[126,153,69,0.012698681783722238],[126,153,70,0.011502174298964567],[126,153,71,0.010359789565862518],[126,153,72,0.009296853513451506],[126,153,73,0.008335810706143126],[126,153,74,0.007495523847748633],[126,153,75,0.006790713610070981],[126,153,76,0.006231542227999442],[126,153,77,0.0058233440452292486],[126,153,78,0.005566505942006017],[126,153,79,0.005456500331088276],[126,154,64,0.01649272123975047],[126,154,65,0.01742401137198289],[126,154,66,0.016220883076024966],[126,154,67,0.014955559014742196],[126,154,68,0.013656731109731519],[126,154,69,0.012354577370582886],[126,154,70,0.01107981769733498],[126,154,71,0.009862454242199465],[126,154,72,0.008730629901572856],[126,154,73,0.007709635081782019],[126,154,74,0.006821067280027481],[126,154,75,0.006082147729923724],[126,154,76,0.005505199068980259],[126,154,77,0.005097287695796756],[126,154,78,0.0048600342002642],[126,154,79,0.004789594973376632],[126,155,64,0.016466073670621632],[126,155,65,0.01743078997847762],[126,155,66,0.016168300310930504],[126,155,67,0.014839355983651544],[126,155,68,0.013474589382324603],[126,155,69,0.012105695903616766],[126,155,70,0.01076540090342105],[126,155,71,0.009486047966770014],[126,155,72,0.008298295728596606],[126,155,73,0.007229977974036069],[126,155,74,0.006305132107416524],[126,155,75,0.005543200757997867],[126,155,76,0.004958410968962821],[126,155,77,0.0045593350968455475],[126,155,78,0.004348637234355639],[126,155,79,0.004323008663391747],[126,156,64,0.01639263048133574],[126,156,65,0.01749319231722235],[126,156,66,0.01618087349440339],[126,156,67,0.014798952348860927],[126,156,68,0.01337988560319596],[126,156,69,0.011956620521055707],[126,156,70,0.010563587771862887],[126,156,71,0.009235152299434722],[126,156,72,0.008004160033420875],[126,156,73,0.006900662082758761],[126,156,74,0.005950822011643141],[126,156,75,0.0051760114506996645],[126,156,76,0.004592098947328299],[126,156,77,0.004208936612462553],[126,156,78,0.004030048779363809],[126,156,79,0.004052526556757009],[126,157,64,0.016271000756154945],[126,157,65,0.01761281532779315],[126,157,66,0.01626033890355256],[126,157,67,0.014836148782525893],[126,157,68,0.01337438344505839],[126,157,69,0.011908955203382547],[126,157,70,0.010475678898719427],[126,157,71,0.009110601203669265],[126,157,72,0.00784840990726168],[126,157,73,0.006721033915400405],[126,157,74,0.0057564400372863015],[126,157,75,0.004977632256442349],[126,157,76,0.004401858811668116],[126,157,77,0.0040400320417406385],[126,157,78,0.0038963655812551184],[126,157,79,0.003968233137116296],[126,158,64,0.016101353538449163],[126,158,65,0.017496794886634616],[126,158,66,0.01640625725669045],[126,158,67,0.014950215678870865],[126,158,68,0.013456935912185558],[126,158,69,0.011960996709137021],[126,158,70,0.010499265637319899],[126,158,71,0.009109123251664016],[126,158,72,0.00782674830490701],[126,158,73,0.0066856058083367975],[126,158,74,0.005715144438744993],[126,158,75,0.00493970939416112],[126,158,76,0.004377676405842918],[126,158,77,0.00404081222047928],[126,158,78,0.003933866478116721],[126,158,79,0.004054399531609834],[126,159,64,0.01588568399410982],[126,159,65,0.017299684770764042],[126,159,66,0.01661569276623024],[126,159,67,0.01513754639646897],[126,159,68,0.013623115710469402],[126,159,69,0.012107346224696275],[126,159,70,0.010627828466708601],[126,159,71,0.009222933439128568],[126,159,72,0.007929987254224086],[126,159,73,0.00678365957043522],[126,159,74,0.00581457270566747],[126,159,75,0.005048137890213015],[126,159,76,0.004503624708115699],[126,159,77,0.004193469363125869],[126,159,78,0.004122826997765947],[126,159,79,0.004289372895295015],[126,160,64,0.015628152552320536],[126,160,65,0.017053336048291116],[126,160,66,0.016882821832910053],[126,160,67,0.015391242526355325],[126,160,68,0.013864780842143022],[126,160,69,0.012338460202642901],[126,160,70,0.010850279213128861],[126,160,71,0.009439274141299895],[126,160,72,0.008143596031192822],[126,160,73,0.006998811355976171],[126,160,74,0.0060364334170854355],[126,160,75,0.005282691269392136],[126,160,76,0.004757542521915297],[126,160,77,0.0044739359345784884],[126,160,78,0.004437329307509663],[126,160,79,0.004645467744383048],[126,161,64,0.015335497628946143],[126,161,65,0.0167656342136756],[126,161,66,0.01719847078085876],[126,161,67,0.015700630595395684],[126,161,68,0.01416957485052609],[126,161,69,0.012640139835950295],[126,161,70,0.01115044659936644],[126,161,71,0.009739904717923456],[126,161,72,0.008447203846035551],[126,161,73,0.007308537354500594],[126,161,74,0.00635606555722555],[126,161,75,0.0056166255809183795],[126,161,76,0.005110694489430674],[126,161,77,0.0048516118317454135],[126,161,78,0.004845067344844692],[126,161,79,0.00508885911401484],[126,162,64,0.01501752257557488],[126,162,65,0.01644792507190298],[126,162,66,0.017549581997509382],[126,162,67,0.01605070958024331],[126,162,68,0.014520361107713792],[126,162,69,0.012992958584639992],[126,162,70,0.011506504568244763],[126,162,71,0.010100539248666732],[126,162,72,0.008814056562080785],[126,162,73,0.00768365986374297],[126,162,74,0.006741964907222411],[126,162,75,0.006016257424298372],[126,162,76,0.005527412145186162],[126,162,77,0.005289079644726055],[126,162,78,0.005307146950979281],[126,162,79,0.005579477412594713],[126,163,64,0.01468765753897118],[126,163,65,0.016115599936645967],[126,163,66,0.017659260396630037],[126,163,67,0.01642152856953331],[126,163,68,0.014894590502312482],[126,163,69,0.013371627137863665],[126,163,70,0.011890342795202572],[126,163,71,0.01049023185160548],[126,163,72,0.009210426942903461],[126,163,73,0.008087793288607318],[126,163,74,0.007155277106795812],[126,163,75,0.0064405156229746865],[126,163,76,0.0059647157130642515],[126,163,77,0.0057418077571992155],[126,163,78,0.005777880822270662],[126,163,79,0.006070904841480445],[126,164,64,0.014363605916823738],[126,164,65,0.01578853676051788],[126,164,66,0.01733086839016498],[126,164,67,0.016788186195920634],[126,164,68,0.01526453239824308],[126,164,69,0.013745459461667279],[126,164,70,0.012268266135296602],[126,164,71,0.010872301231600231],[126,164,72,0.00959674854721262],[126,164,73,0.008478663788627466],[126,164,74,0.007551271663756121],[126,164,75,0.006842530832059086],[126,164,76,0.006373973934074278],[126,164,77,0.006159829449631],[126,164,78,0.006206431667076103],[126,164,79,0.006511924587912061],[126,165,64,0.01406562400936669],[126,165,65,0.015487776527879422],[126,165,66,0.01702932122680707],[126,165,67,0.017127525424444755],[126,165,68,0.015605677726320122],[126,165,69,0.014088461742718376],[126,165,70,0.012612704518605808],[126,165,71,0.011217545127049526],[126,165,72,0.009942161675927217],[126,165,73,0.00882375543614798],[126,165,74,0.007895800422958229],[126,165,75,0.007186566287616605],[126,165,76,0.006717921898508927],[126,165,77,0.006504426512670606],[126,165,78,0.006552714964976124],[126,165,79,0.006861182837481347],[126,166,64,0.013810799830503317],[126,166,65,0.015230500198050495],[126,166,66,0.01677202275570819],[126,166,67,0.017421769213679154],[126,166,68,0.01589969178372462],[126,166,69,0.014381624842631079],[126,166,70,0.012903888541331199],[126,166,71,0.0115053682082751],[126,166,72,0.010225191109805392],[126,166,73,0.009100664488793604],[126,166,74,0.008165483350810637],[126,166,75,0.007448215988627427],[126,166,76,0.006971074753149042],[126,166,77,0.0067489790960533445],[126,166,78,0.006788917430765956],[126,166,79,0.0070896138885517155],[126,167,64,0.01361237807554882],[126,167,65,0.015030089223233581],[126,167,66,0.016572585630044784],[126,167,67,0.017656950717767014],[126,167,68,0.01613209678702963],[126,167,69,0.014609879000475338],[126,167,70,0.013126114791175885],[126,167,71,0.011719419933320258],[126,167,72,0.010428844629841163],[126,167,73,0.009291773931714363],[126,167,74,0.008342101057242254],[126,167,75,0.007608681699037781],[126,167,76,0.007114076921335731],[126,167,77,0.00687359176477897],[126,167,78,0.006894616194316167],[126,167,79,0.0071762745529367206],[126,168,64,0.013480882331452004],[126,168,65,0.014897229636978931],[126,168,66,0.016441914824712568],[126,168,67,0.017821857939920596],[126,168,68,0.016291252973433232],[126,168,69,0.014761116934997591],[126,168,70,0.013266814012707264],[126,168,71,0.011846708624502017],[126,168,72,0.010539771902051085],[126,168,73,0.009383454367154641],[126,168,74,0.008411833425359904],[126,168,75,0.0076540438209630355],[126,168,76,0.007132998712296016],[126,168,77,0.0068644085402892255],[126,168,78,0.006856104381121277],[126,168,79,0.0071076719999626494],[126,169,64,0.0134254852396364],[126,169,65,0.014841259782700495],[126,169,66,0.016389529047614898],[126,169,67,0.017906747358003534],[126,169,68,0.016367116734160563],[126,169,69,0.014825003519987879],[126,169,70,0.01331541702045331],[126,169,71,0.011876526130230566],[126,169,72,0.010547248372465607],[126,169,73,0.009365105763968266],[126,169,74,0.00836435614301655],[126,169,75,0.007574408117714854],[126,169,76,0.007018527309633385],[126,169,77,0.006712841083373051],[126,169,78,0.006665648472099294],[126,169,79,0.006877041536605785],[126,170,64,0.013455624440935354],[126,170,65,0.014871763863291754],[126,170,66,0.016425126697959324],[126,170,67,0.01790181535076393],[126,170,68,0.016349760104281342],[126,170,69,0.01479155195304692],[126,170,70,0.013261994099487421],[126,170,71,0.01179915500280738],[126,170,72,0.010441952827096698],[126,170,73,0.009228006144205827],[126,170,74,0.008191759493664463],[126,170,75,0.007362891928082816],[126,170,76,0.006765016193489359],[126,170,77,0.006414675713993384],[126,170,78,0.006320646073332391],[126,170,79,0.006483547216876959],[126,171,64,0.013582866719387719],[126,171,65,0.015000413679670367],[126,171,66,0.016560398679436768],[126,171,67,0.017795425186998316],[126,171,68,0.016227649452275304],[126,171,69,0.014649464354630428],[126,171,70,0.0130956659374011],[126,171,71,0.011604356356988728],[126,171,72,0.010214536916282385],[126,171,73,0.008963965653916163],[126,171,74,0.00788728801350758],[126,171,75,0.007014448649553352],[126,171,76,0.006369391953907453],[126,171,77,0.005969058412753283],[126,171,78,0.005822683432973208],[126,171,79,0.005931404813366532],[126,172,64,0.013823022948109734],[126,172,65,0.015243061106782082],[126,172,66,0.016811090550286702],[126,172,67,0.017572087173192134],[126,172,68,0.015985681054117334],[126,172,69,0.014384234584690705],[126,172,70,0.012802783991779842],[126,172,71,0.011279636444737893],[126,172,72,0.0098539848243444],[126,172,73,0.008563784358014104],[126,172,74,0.007443899525902997],[126,172,75,0.006524529183126959],[126,172,76,0.005829917378535709],[126,172,77,0.005377356884310457],[126,172,78,0.005176491987275691],[126,172,79,0.005228926636715911],[126,173,64,0.014198516637933036],[126,173,65,0.01562208404748733],[126,173,66,0.01719931667767081],[126,173,67,0.017210189377075902],[126,173,68,0.015602971066728496],[126,173,69,0.013976010903402489],[126,173,70,0.012364878046427446],[126,173,71,0.010808289841444198],[126,173,72,0.00934576113667508],[126,173,73,0.008015511981971101],[126,173,74,0.006852641958764255],[126,173,75,0.005887578939029055],[126,173,76,0.005144809615959742],[126,173,77,0.004641898692180915],[126,173,78,0.004388803157048922],[126,173,79,0.004387487637365176],[126,174,64,0.014741009097246658],[126,174,65,0.01616898880710634],[126,174,66,0.017756129259778045],[126,174,67,0.016679476155733106],[126,174,68,0.015050397234993896],[126,174,69,0.013397215930961394],[126,174,70,0.011756368548199597],[126,174,71,0.010167216988490163],[126,174,72,0.008669744817680004],[126,174,73,0.007302507696625983],[126,174,74,0.006100846236784971],[126,174,75,0.005095368901250456],[126,174,76,0.004310712126971239],[126,174,77,0.0037645843973058033],[126,174,78,0.003467100549999773],[126,174,79,0.0034204121684243373],[126,175,64,0.015483502941150218],[126,175,65,0.01691657298301324],[126,175,66,0.017538522883472314],[126,175,67,0.01594855040093684],[126,175,68,0.014297795560404456],[126,175,69,0.012619326411193017],[126,175,70,0.010950806359126946],[126,175,71,0.00933249193312589],[126,175,72,0.007804987264026135],[126,175,73,0.0064072486041307705],[126,175,74,0.005174846734705062],[126,175,75,0.004138494679659601],[126,175,76,0.003322847709504038],[126,175,77,0.0027455821840267312],[126,175,78,0.002416759349001622],[126,175,79,0.0023384797757434843],[126,176,64,0.016423043783332553],[126,176,65,0.017861858160678697],[126,176,66,0.016627052721887223],[126,176,67,0.015020697613410097],[126,176,68,0.013348667642236632],[126,176,69,0.011646074298395554],[126,176,70,0.009952144188141247],[126,176,71,0.008308256969215989],[126,176,72,0.0067557702947623815],[126,176,73,0.005334090091867554],[126,176,74,0.0040789937816217885],[126,176,75,0.00302121362997122],[126,176,76,0.0021852869960629477],[126,176,77,0.00158867982085289],[126,176,78,0.0012411892773167418],[126,176,79,0.001144631088765366],[126,177,64,0.017541352388930127],[126,177,65,0.01704111171204906],[126,177,66,0.015537098355384691],[126,177,67,0.013914641335408566],[126,177,68,0.012221947351006133],[126,177,69,0.01049657267582124],[126,177,70,0.008779603001291296],[126,177,71,0.007113735057691865],[126,177,72,0.00554118446399461],[126,177,73,0.004101833707161875],[126,177,74,0.002831627588644643],[126,177,75,0.0017612230703724474],[126,177,76,9.149000423493124E-4],[126,177,77,3.097391226358233E-4],[126,177,78,-4.492780825215246E-5],[126,177,79,-1.4778903868682483E-4],[126,178,64,0.0171443461232805],[126,178,65,0.01580732731175415],[126,178,66,0.01429313175820479],[126,178,67,0.012655261534936655],[126,178,68,0.010943001573754342],[126,178,69,0.009196703173192112],[126,178,70,0.007459561534847367],[126,178,71,0.005775745237753094],[126,178,72,0.004188399499953904],[126,178,73,0.0027378837968210193],[126,178,74,0.0014602508755856092],[126,178,75,3.859738130508941E-4],[126,178,76,-4.6107263342010123E-4],[126,178,77,-0.0010643705293157245],[126,178,78,-0.0014152516635051156],[126,178,79,-0.0015131197770729562],[126,179,64,0.01579270799648095],[126,179,65,0.014448423473026693],[126,179,66,0.012924794495577041],[126,179,67,0.01127275913613089],[126,179,68,0.00954271529844848],[126,179,69,0.007778102212541591],[126,179,70,0.006024424474473423],[126,179,71,0.004327434084855326],[126,179,72,0.0027312413596995433],[126,179,73,0.001276653831116766],[126,179,74,-2.501492373346018E-7],[126,179,75,-0.001069306769775194],[126,179,76,-0.0019072051300969858],[126,179,77,-0.0024981730552985607],[126,179,78,-0.0028344051654618364],[126,179,79,-0.002916228385997366],[126,180,64,0.014349192272238487],[126,180,65,0.012997870866164775],[126,180,66,0.0114660357019785],[126,180,67,0.00980173875747538],[126,180,68,0.008056501873776262],[126,180,69,0.0062770817073908025],[126,180,70,0.0045114369609233155],[126,180,71,0.002806968123457493],[126,180,72,0.0012087476668640935],[126,180,73,-2.4202872007343475E-4],[126,180,74,-0.0015093634996522997],[126,180,75,-0.0025635452594024674],[126,180,76,-0.0033819976639831058],[126,180,77,-0.003949884124182968],[126,180,78,-0.0042604632869915875],[126,180,79,-0.00431519080857714],[126,181,64,0.012850205333533279],[126,181,65,0.011492462254718618],[126,181,66,0.009954162121779027],[126,181,67,0.008280208629771826],[126,181,68,0.006523237475436289],[126,181,69,0.004733483319959016],[126,181,70,0.0029614446176151566],[126,181,71,0.0012561864991836422],[126,181,72,-3.362990342862149E-4],[126,181,73,-0.0017745193778903748],[126,181,74,-0.0030226880655002284],[126,181,75,-0.004051706353415764],[126,181,76,-0.004839914361529907],[126,181,77,-0.005373606839979766],[126,181,78,-0.005647308977289776],[126,181,79,-0.005663808007164598],[126,182,64,0.011334450759031087],[126,182,65,0.009971305458814498],[126,182,66,0.008428799048315665],[126,182,67,0.006748496581553238],[126,182,68,0.004984118729344431],[126,182,69,0.003189465304512166],[126,182,70,0.0014175982234812417],[126,182,71,-2.807868517778566E-4],[126,182,72,-0.001858860836557886],[126,182,73,-0.0032749559865115512],[126,182,74,-0.004493649512572537],[126,182,75,-0.005486630792096519],[126,182,76,-0.00623334725578758],[126,182,77,-0.006721424364485736],[126,182,78,-0.006946855420610862],[126,182,79,-0.00691395728272664],[126,183,64,0.009841848776321417],[126,183,65,0.008474722487290589],[126,183,66,0.006930760907602229],[126,183,67,0.005248080893185554],[126,183,68,0.003481442359655069],[126,183,69,0.0016882208870296262],[126,183,70,-7.599791813014202E-5],[126,183,71,-0.0017589723648859677],[126,183,72,-0.0033131575275920588],[126,183,73,-0.004696860914605852],[126,183,74,-0.005875195777984409],[126,183,75,-0.00682082720261246],[126,183,76,-0.007514506431383942],[126,183,77,-0.007945389200066301],[126,183,78,-0.008111134168322818],[126,183,79,-0.008017777838957194],[126,184,64,0.008412358929434191],[126,184,65,0.007043053445219913],[126,184,66,0.005500830141067573],[126,184,67,0.0038203347327121504],[126,184,68,0.0020573056455820463],[126,184,69,2.726270525393776E-4],[126,184,70,-0.001475694936614285],[126,184,71,-0.003134006236064522],[126,184,72,-0.00465420389469992],[126,184,73,-0.005994746705093356],[126,184,74,-0.007121472553018289],[126,184,75,-0.008008218049643516],[126,184,76,-0.008637236289423963],[126,184,77,-0.008999408875870142],[126,184,78,-0.009094248651979164],[126,184,79,-0.008929689859216995],[126,185,64,0.007084704435381441],[126,185,65,0.0057153637270417855],[126,185,66,0.004178442948429082],[126,185,67,0.0025051827970564945],[126,185,68,7.522263861779662E-4],[126,185,69,-0.0010161774677983485],[126,185,70,-0.0027397667721585028],[126,185,71,-0.004363654997323095],[126,185,72,-0.0058393720806541715],[126,185,73,-0.007125725799968125],[126,185,74,-0.00818947918398552],[126,185,75,-0.009005839910104736],[126,185,76,-0.00955875792334441],[126,185,77,-0.009841027791478031],[126,185,78,-0.009854192587571033],[126,185,79,-0.009608246359561383],[126,186,64,0.005894996605132612],[126,186,65,0.004528052908115535],[126,186,66,0.0030002803575720984],[126,186,67,0.001339668692019298],[126,186,68,-3.9631901301362844E-4],[126,186,69,-0.002140286297019016],[126,186,70,-0.0038299371416037125],[126,186,71,-0.005409374303230722],[126,186,72,-0.006829979848948527],[126,186,73,-0.008051125011567862],[126,186,74,-0.009040705455737378],[126,186,75,-0.009775498312903698],[126,186,76,-0.01024133760926075],[126,186,77,-0.010433104974045674],[126,186,78,-0.010354532773352543],[126,186,79,-0.01001781706440903],[126,187,64,0.00487525760471904],[126,187,65,0.00351336364972023],[126,187,66,0.0019987629937772236],[126,187,67,3.5643149421880606E-4],[126,187,68,-0.0013554408025804553],[126,187,69,-0.0030665929658973013],[126,187,70,-0.004712967329996813],[126,187,71,-0.006237913014313784],[126,187,72,-0.007592905669010854],[126,187,73,-0.008738105452674375],[126,187,74,-0.009642749751809752],[126,187,75,-0.01028537740198803],[126,187,76,-0.010653881419544793],[126,187,77,-0.010745387498319393],[126,187,78,-0.010565955765610402],[126,187,79,-0.010130103522872342],[126,188,64,0.004051839732657838],[126,188,65,0.002697788834931251],[126,188,66,0.0012004478263826196],[126,188,67,-4.179101517178326E-4],[126,188,68,-0.002098466056624898],[126,188,69,-0.0037684333630428717],[126,188,70,-0.005362306115040363],[126,188,71,-0.0068229637232016],[126,188,72,-0.008102231580777136],[126,188,73,-0.009161288674864758],[126,188,74,-0.009970919109532331],[126,188,75,-0.010511604692087962],[126,188,76,-0.010773455966134781],[126,188,77,-0.010755979303418317],[126,188,78,-0.010467677888481191],[126,188,79,-0.009925484643496626],[126,189,64,0.003443739291359416],[126,189,65,0.002100375056171965],[126,189,66,6.243250777380038E-4],[126,189,67,-9.644681360715661E-4],[126,189,68,-0.002606655383316688],[126,189,69,-0.00422730460064572],[126,189,70,-0.0057598031987326345],[126,189,71,-0.007146860926261712],[126,189,72,-0.00834091484340718],[126,189,73,-0.009304389797180866],[126,189,74,-0.010009811707431975],[126,189,75,-0.010439771191286048],[126,189,76,-0.01058673527024202],[126,189,77,-0.010452705115925238],[126,189,78,-0.010048717995442935],[126,189,79,-0.009394191773271063],[126,190,64,0.003060803033389894],[126,190,65,0.0017309204803075894],[126,190,66,2.8001338781690545E-4],[126,190,67,-0.0012738910092208002],[126,190,68,-0.002871007897870152],[126,190,69,-0.004434661888347172],[126,190,70,-0.005897487584782115],[126,190,71,-0.007202328097063183],[126,190,72,-0.008302489414332696],[126,190,73,-0.009161858435111398],[126,190,74,-0.009754882335667847],[126,190,75,-0.010066407162706029],[126,190,76,-0.010091373737637617],[126,190,77,-0.009834369155666102],[126,190,78,-0.009309032351581016],[126,190,79,-0.008537312383544082],[126,191,64,0.0029018250692220424],[126,191,65,0.0015880650247353078],[126,191,66,1.6585123890969688E-4],[126,191,67,-0.0013482680354263048],[126,191,68,-0.0028941562552214153],[126,191,69,-0.004393795077992138],[126,191,70,-0.005779412401206456],[126,191,71,-0.006994274967673939],[126,191,72,-0.00799279834174316],[126,191,73,-0.00874052826264387],[126,191,74,-0.009213991407708035],[126,191,75,-0.00940041378896719],[126,191,76,-0.009297305193455747],[126,191,77,-0.008911908258589108],[126,191,78,-0.008260510947280596],[126,191,79,-0.0073676213511500175],[126,192,64,0.0029525320322899905],[126,192,65,0.0016572706888857073],[126,192,66,2.6688255925629733E-4],[126,192,67,-0.001203133162238462],[126,192,68,-0.0026923536140987343],[126,192,69,-0.004121786608474366],[126,192,70,-0.005423567724223647],[126,192,71,-0.006541646368946789],[126,192,72,-0.007431758185531205],[126,192,73,-0.00806127605733782],[126,192,74,-0.008408938072701972],[126,192,75,-0.008464450987428436],[126,192,76,-0.008227967897393749],[126,192,77,-0.007709439000464265],[126,192,78,-0.006927834485850289],[126,192,79,-0.0059102387379958285],[126,193,64,0.0031834542107336034],[126,193,65,0.001908689800839114],[126,193,66,5.527343432211461E-4],[126,193,67,-8.695709689151028E-4],[126,193,68,-0.002297554474156059],[126,193,69,-0.0036515526417354965],[126,193,70,-0.0048638630114038245],[126,193,71,-0.005879324020957865],[126,193,72,-0.006655156608119655],[126,193,73,-0.007160691089595553],[126,193,74,-0.0073769779827444195],[126,193,75,-0.00729628160151274],[126,193,76,-0.006921455419335987],[126,193,77,-0.0062651983458808],[126,193,78,-0.005349191210058601],[126,193,79,-0.004203112877039338],[126,194,64,0.0035476802741358383],[126,194,65,0.00229491885933183],[126,194,66,9.75384049605426E-4],[126,194,67,-3.9642672833758687E-4],[126,194,68,-0.0017595913924896057],[126,194,69,-0.003033969237386876],[126,194,70,-0.004152180798300338],[126,194,71,-0.005060082698939628],[126,194,72,-0.005716484296884233],[126,194,73,-0.006092755722085114],[126,194,74,-0.006172326257123636],[126,194,75,-0.00595007216335693],[126,194,76,-0.005431593206734469],[126,194,77,-0.0046323772793430635],[126,194,78,-0.0035768526459558944],[126,194,79,-0.0022973274674845247],[126,195,64,0.003979156717843658],[126,195,65,0.002749316276580641],[126,195,66,0.0014675108072014949],[126,195,67,1.4808857638755278E-4],[126,195,68,-0.001147725484772588],[126,195,69,-0.0023393537270618814],[126,195,70,-0.003359771639213841],[126,195,71,-0.004155879887867818],[126,195,72,-0.004688099952518711],[126,195,73,-0.004929866714897042],[126,195,74,-0.004867017216787903],[126,195,75,-0.004497074945903993],[126,195,76,-0.003828429148658066],[126,195,77,-0.0028794088000065306],[126,195,78,-0.001677250982364022],[126,195,79,-2.569635364622619E-4],[126,196,64,0.004426262927174837],[126,196,65,0.003220413950344853],[126,196,66,0.0019776751285897546],[126,196,67,7.12323479855858E-4],[126,196,68,-5.140757845889942E-4],[126,196,69,-0.001620496396275662],[126,196,70,-0.0025402527844079325],[126,196,71,-0.0032212725273332373],[126,196,72,-0.0036255744492260304],[126,196,73,-0.0037286487225835743],[126,196,74,-0.0035187384396851195],[126,196,75,-0.0029960222528109233],[126,196,76,-0.002171697812702494],[126,196,77,-0.0010669658560049648],[126,196,78,2.880850962617519E-4],[126,196,79,0.0018556933671835636],[126,197,64,0.004880491572394504],[126,197,65,0.0037008676553120564],[126,197,66,0.002499455714333623],[126,197,67,0.0012904843478744844],[126,197,68,1.3578317838165523E-4],[126,197,69,-8.832992004094635E-4],[126,197,70,-0.0017005020593790854],[126,197,71,-0.0022648298399500495],[126,197,72,-0.00253991884038914],[126,197,73,-0.002503310512459954],[126,197,74,-0.0021456310617562814],[126,197,75,-0.0014696771735170648],[126,197,76,-4.894078066783618E-4],[126,197,77,7.711578890555386E-4],[126,197,78,0.0022791363767100644],[126,197,79,0.003994069009772622],[126,198,64,0.005338481016196242],[126,198,65,0.004188264319569212],[126,198,66,0.0030311148370885587],[126,198,67,0.001881202703471953],[126,198,68,8.00445757764235E-4],[126,198,69,-1.2974432474290173E-4],[126,198,70,-8.437151750555421E-4],[126,198,71,-0.001291661418679385],[126,198,72,-0.001438888759733311],[126,198,73,-0.0012649888902504084],[126,198,74,-7.629251264282019E-4],[126,198,75,6.197120540000661E-5],[126,198,76,0.001193093497321383],[126,198,77,0.0026037414635846617],[126,198,78,0.004258391287398618],[126,198,79,0.006114053897928209],[126,199,64,0.0057981026993694645],[126,199,65,0.004681145305018046],[126,199,66,0.0035715839131127067],[126,199,67,0.0024835025954205374],[126,199,68,0.0014786520053918814],[126,199,69,6.381366430610895E-4],[126,199,70,2.6736460115982596E-5],[126,199,71,-3.070976076953877E-4],[126,199,72,-3.3041626922776225E-4],[126,199,73,-2.4859209763366457E-5],[126,199,74,6.143427877672765E-4],[126,199,75,0.001579450731750091],[126,199,76,0.002851385014914172],[126,199,77,0.0044009773093836935],[126,199,78,0.006190306276965356],[126,199,79,0.00817411653548121],[126,200,64,0.0062581891610985155],[126,200,65,0.005178777984377471],[126,200,66,0.004120298783010302],[126,200,67,0.003096717590705688],[126,200,68,0.0021693031147786437],[126,200,69,0.0014183928275971274],[126,200,70,9.075656518803069E-4],[126,200,71,6.837137269225645E-4],[126,200,72,7.779481860391452E-4],[126,200,73,0.001206586637754582],[126,200,74,0.0019722221054907117],[126,200,75,0.0030648730725920327],[126,200,76,0.004463214180457112],[126,200,77,0.006135887038597877],[126,200,78,0.008042890527946808],[126,200,79,0.010137049913817349],[126,201,64,0.006718274791214724],[126,201,65,0.005680943837918475],[126,201,66,0.004677056548736409],[126,201,67,0.0037204360579499865],[126,201,68,0.0028715137082261028],[126,201,69,0.002209331258090482],[126,201,70,0.0017958881483171065],[126,201,71,0.0016762822797460057],[126,201,72,0.0018796797807235093],[126,201,73,0.002420363115432507],[126,201,74,0.0032988571549664265],[126,201,75,0.004503132730867895],[126,201,76,0.006009887097854337],[126,201,77,0.007785900649822206],[126,201,78,0.00978946916223814],[126,201,79,0.011971910775786597],[126,202,64,0.007178349344859444],[126,202,65,0.006187743172418796],[126,202,66,0.005241894164989491],[126,202,67,0.0043544750626500145],[126,202,68,0.003584701437742214],[126,202,69,0.0030097417812770463],[126,202,70,0.0026896010191804097],[126,202,71,0.002667323283679604],[126,202,72,0.0029700105294440033],[126,202,73,0.0036099162971188134],[126,202,74,0.004585614138939551],[126,202,75,0.005883240124385079],[126,202,76,0.007477808756422417],[126,202,77,0.00933460155201437],[126,202,78,0.011410627475438653],[126,202,79,0.013656154360658776],[126,203,64,0.007638624260930704],[126,203,65,0.006699416578650581],[126,203,66,0.005814989000638314],[126,203,67,0.004998883217426267],[126,203,68,0.004308714398271655],[126,203,69,0.003819170372838575],[126,203,70,0.003587821564201999],[126,203,71,0.0036553794759674055],[126,203,72,0.004046749043994222],[126,203,73,0.004772153040541882],[126,203,74,0.005828327962566646],[126,203,75,0.007199790744302273],[126,203,76,0.008860175552082954],[126,203,77,0.01077363984777717],[126,203,78,0.01289633884738805],[126,203,79,0.015177967454356078],[126,204,64,0.008099311837652895],[126,204,65,0.007216183258392832],[126,204,66,0.006396581603910067],[126,204,67,0.005653972853011998],[126,204,68,0.005043996879792819],[126,204,69,0.004638241559932886],[126,204,70,0.0044913876697759685],[126,204,71,0.004641518195066717],[126,204,72,0.005111190204587805],[126,204,73,0.005908575695205518],[126,204,74,0.007028670778457636],[126,204,75,0.008454572492226076],[126,204,76,0.010158822443873432],[126,204,77,0.01210481642461332],[126,204,78,0.014248279079978105],[126,204,79,0.01653880267902229],[126,205,64,0.008560417331562637],[126,205,65,0.007738096367384971],[126,205,66,0.0069869209235420915],[126,205,67,0.006320381898177],[126,205,68,0.00579179401229264],[126,205,69,0.005469030700623313],[126,205,70,0.005403420573163616],[126,205,71,0.005630104797592862],[126,205,72,0.0061691161760855555],[126,205,73,0.007026524024251681],[126,205,74,0.008195644177802774],[126,205,75,0.009658313370994353],[126,205,76,0.011386227158702756],[126,205,77,0.013342340492244906],[126,205,78,0.015482330008842995],[126,205,79,0.01775611705691295],[126,206,64,0.009021544060135755],[126,206,65,0.008264915536753197],[126,206,66,0.007586232256854729],[126,206,67,0.006999165878999494],[126,206,68,0.006554395884189927],[126,206,69,0.006315486897633158],[126,206,70,0.006329951030603482],[126,206,71,0.0066296536278152105],[126,206,72,0.007231890249723691],[126,206,73,0.008140526075503968],[126,206,74,0.009347197018895673],[126,206,75,0.01083257177285276],[126,206,76,0.012567673931901498],[126,206,77,0.014515263284338534],[126,206,78,0.0166312753209411],[126,206,79,0.018866317973613596],[126,207,64,0.009484546779717194],[126,207,65,0.008799215744400513],[126,207,66,0.00819812790244189],[126,207,67,0.007695336397957951],[126,207,68,0.007338617372276267],[126,207,69,0.007186662554339124],[126,207,70,0.00728270865528614],[126,207,71,0.0076549950501519385],[126,207,72,0.008317832844321246],[126,207,73,0.00927273260658648],[126,207,74,0.010509590031947047],[126,207,75,0.012007928726842606],[126,207,76,0.013738199248094959],[126,207,77,0.015663133475448347],[126,207,78,0.01773915335723606],[126,207,79,0.019046553255280946],[126,208,64,0.00996146363966874],[126,208,65,0.009355168096260557],[126,208,66,0.008838649857104912],[126,208,67,0.008426512441739484],[126,208,68,0.008163368275990693],[126,208,69,0.008102503566492678],[126,208,70,0.008282449451407098],[126,208,71,0.008727495912775877],[126,208,72,0.009448748231397254],[126,208,73,0.010445237778660769],[126,208,74,0.011705086379818985],[126,208,75,0.013206723419310253],[126,208,76,0.014920154803680828],[126,208,77,0.01680828285233486],[126,208,78,0.018828276151691754],[126,208,79,0.018093928968218792],[126,209,64,0.010465110162981052],[126,209,65,0.00994738163096725],[126,209,66,0.009523816358478406],[126,209,67,0.009209687206085847],[126,209,68,0.009046191924128824],[126,209,69,0.009080726293534536],[126,209,70,0.009346733964900353],[126,209,71,0.009864280630636638],[126,209,72,0.010641093575442129],[126,209,73,0.011673650494629121],[126,209,74,0.012948316784135657],[126,209,75,0.014442530449770164],[126,209,76,0.016126033735455323],[126,209,77,0.017962150531859407],[126,209,78,0.019112973460152106],[126,209,79,0.017168893358583872],[126,210,64,0.011006127938056935],[126,210,65,0.010587547439868703],[126,210,66,0.010266036724554416],[126,210,67,0.010057609150051574],[126,210,68,0.009999818515093059],[126,210,69,0.010133751380451353],[126,210,70,0.010487444938878468],[126,210,71,0.011076524935175146],[126,210,72,0.011905224418044561],[126,210,73,0.012967445840560405],[126,210,74,0.014247865678883085],[126,210,75,0.01572308069125826],[126,210,76,0.01736279489990904],[126,210,77,0.019131046347997588],[126,210,78,0.01809990060822745],[126,210,79,0.01626591035083394],[126,211,64,0.011593029294926897],[126,211,65,0.011284563008724394],[126,211,66,0.011074319871833533],[126,211,67,0.010979078854103779],[126,211,68,0.011032552677538379],[126,211,69,0.011269181749066777],[126,211,70,0.011711353061305224],[126,211,71,0.012370104581186385],[126,211,72,0.013246119723854545],[126,211,73,0.014330758343960647],[126,211,74,0.015607123375298742],[126,211,75,0.01705116221200684],[126,211,76,0.01863280189462174],[126,211,77,0.018768857242971827],[126,211,78,0.017087985720052587],[126,211,79,0.015382544772904617],[126,212,64,0.012232254517579132],[126,212,65,0.012044669160333022],[126,212,66,0.011954494306252724],[126,212,67,0.011979255243847147],[126,212,68,0.012148667272124398],[126,212,69,0.012490282476278224],[126,212,70,0.013020678869231243],[126,212,71,0.013746233022935964],[126,212,72,0.014664087231222898],[126,212,73,0.015763145429227805],[126,212,74,0.017025096956777185],[126,212,75,0.018425467226469976],[126,212,76,0.019151408098863832],[126,212,77,0.017634821532938903],[126,212,78,0.0160778313543359],[126,212,79,0.014518586456016494],[126,213,64,0.012928241840917268],[126,213,65,0.012871599888478143],[126,213,66,0.012909439900944656],[126,213,67,0.013059971502778975],[126,213,68,0.013348803752036287],[126,213,69,0.013796462852420213],[126,213,70,0.014413651057240257],[126,213,71,0.015202088239557104],[126,213,72,0.016155449197917334],[126,213,73,0.017260321050107892],[126,213,74,0.018497179753933106],[126,213,75,0.019246369676455957],[126,213,76,0.01789193835978384],[126,213,77,0.016489196538367577],[126,213,78,0.015072026391604355],[126,213,79,0.013675288738985084],[126,214,64,0.013683510495139415],[126,214,65,0.013766745387182398],[126,214,66,0.01393933178678608],[126,214,67,0.014220061006858272],[126,214,68,0.01463037940600747],[126,214,69,0.0151837609148326],[126,214,70,0.015885061434583698],[126,214,71,0.01673142888063611],[126,214,72,0.01771320861641979],[126,214,73,0.018814859455554257],[126,214,74,0.01907504490991087],[126,214,75,0.017868001138074237],[126,214,76,0.016612173894885722],[126,214,77,0.015337339074509347],[126,214,78,0.014074458652011077],[126,214,79,0.01285472243384896],[126,215,64,0.014498757073925509],[126,215,65,0.014729328591788191],[126,215,66,0.015041896692159428],[126,215,67,0.015455693621273173],[126,215,68,0.01598800181154966],[126,215,69,0.016645330751238287],[126,215,70,0.01742681676972577],[126,215,71,0.01832519989104452],[126,215,72,0.01932769595461112],[126,215,73,0.018678732522518955],[126,215,74,0.017593370376112707],[126,215,75,0.016465091136879283],[126,215,76,0.015320086744202314],[126,215,77,0.014185732260636819],[126,215,78,0.013089727817845823],[126,215,79,0.012059246387654201],[126,216,64,0.015372965515550188],[126,216,65,0.015756595559642098],[126,216,66,0.016212682077187165],[126,216,67,0.016760722705422025],[126,216,68,0.0174138908277959],[126,216,69,0.01817193286454085],[126,216,70,0.019028487752569108],[126,216,71,0.019058280743512204],[126,216,72,0.018114576495296894],[126,216,73,0.01711687892547069],[126,216,74,0.016086848723025585],[126,216,75,0.015047932278938296],[126,216,76,0.014024573059436532],[126,216,77,0.013041437966188256],[126,216,78,0.012122659669750199],[126,216,79,0.011291095853865021],[126,217,64,0.016303530997711646],[126,217,65,0.016844020027933563],[126,217,66,0.017445338414672818],[126,217,67,0.018127043175554962],[126,217,68,0.01889830845656789],[126,217,69,0.01921160590271049],[126,217,70,0.018359698542083216],[126,217,71,0.017450115038830743],[126,217,72,0.016501088306481605],[126,217,73,0.015533007522852919],[126,217,74,0.014567660006096241],[126,217,75,0.013627497551228709],[126,217,76,0.012734928326387724],[126,217,77,0.011911635375391355],[126,217,78,0.011177922716336143],[126,217,79,0.010552089965105454],[126,218,64,0.017286398057380147],[126,218,65,0.01798552249440421],[126,218,66,0.018731914974969857],[126,218,67,0.01935140883689962],[126,218,68,0.018542096965511304],[126,218,69,0.017671868132088236],[126,218,70,0.016757067924427816],[126,218,71,0.01581647722004211],[126,218,72,0.01487054257254069],[126,218,73,0.0139406405662239],[126,218,74,0.013048377392489508],[126,218,75,0.012214924841840499],[126,218,76,0.011460393841665225],[126,218,77,0.010803246602740832],[126,218,78,0.0102597483669874],[126,218,79,0.009843459675720485],[126,219,64,0.018316213256037373],[126,219,65,0.019173704172892644],[126,219,66,0.018842119469007983],[126,219,67,0.017977987049551943],[126,219,68,0.017059521830411706],[126,219,69,0.016105023896696852],[126,219,70,0.015135167917214112],[126,219,71,0.014171798297687895],[126,219,72,0.013237192509160679],[126,219,73,0.012353370461345088],[126,219,74,0.011541451236760838],[126,219,75,0.010821058425410365],[126,219,76,0.010209775220540703],[126,219,77,0.00972265035406365],[126,219,78,0.009371755866033563],[126,219,79,0.009165797616726496],[126,220,64,0.019386492718200064],[126,220,65,0.018515480979305214],[126,220,66,0.017563513597817833],[126,220,67,0.01657637068429224],[126,220,68,0.015555733135852248],[126,220,69,0.01452488062616232],[126,220,70,0.013508301631191225],[126,220,71,0.012530445997328906],[126,220,72,0.011615019684178506],[126,220,73,0.010784337705510766],[126,220,74,0.010058736645239359],[126,220,75,0.009456048032912783],[126,220,76,0.008991133768408682],[126,220,77,0.008675484688773927],[126,220,78,0.008516883272225016],[126,220,79,0.008519131375890547],[126,221,64,0.01843739392069843],[126,221,65,0.01734916642729185],[126,221,66,0.016262035098041968],[126,221,67,0.015158649464682128],[126,221,68,0.014043798493188455],[126,221,69,0.012945129585535928],[126,221,70,0.011890397217524652],[126,221,71,0.010906179878579754],[126,221,72,0.010017204285174578],[126,221,73,0.009245739871684889],[126,221,74,0.008611064994279102],[126,221,75,0.00812900617497758],[126,221,76,0.007811551602768569],[126,221,77,0.007666539997322788],[126,221,78,0.007697425829318427],[126,221,79,0.007903121780525704],[126,222,64,0.017400107340120735],[126,222,65,0.016164438338375685],[126,222,66,0.01494876092363759],[126,222,67,0.013736900801428718],[126,222,68,0.012536462522400073],[126,222,69,0.01137883148255451],[126,222,70,0.010294472143776557],[126,222,71,0.009311616432896318],[126,222,72,0.008455615223607833],[126,222,73,0.0077483719601094845],[126,222,74,0.007207859913461594],[126,222,75,0.006847724437424512],[126,222,76,0.00667697146519767],[126,222,77,0.006699743362854759],[126,222,78,0.006915183130444424],[126,222,79,0.007317387818717759],[126,223,64,0.0163473727976844],[126,223,65,0.014971282023938024],[126,223,66,0.013634672719254145],[126,223,67,0.012322758115646424],[126,223,68,0.01104566321972514],[126,223,69,0.009837897301186132],[126,223,70,0.00873209922669569],[126,223,71,0.007757704199906874],[126,223,72,0.006940320265925588],[126,223,73,0.006301198481229115],[126,223,74,0.005856798290962581],[126,223,75,0.005618449516048412],[126,223,76,0.005592112212588929],[126,223,77,0.005778235526601762],[126,223,78,0.006171716529443459],[126,223,79,0.006761959884529715],[126,224,64,0.015288167210558794],[126,224,65,0.013779594160535506],[126,224,66,0.012330272483671826],[126,224,67,0.010926965787631703],[126,224,68,0.009582038425157646],[126,224,69,0.008332564204070029],[126,224,70,0.0072128743696611985],[126,224,71,0.006253208980324616],[126,224,72,0.005479116423790219],[126,224,73,0.004910957678045373],[126,224,74,0.004563516904170455],[126,224,75,0.004445719804192507],[126,224,76,0.004560461023096489],[126,224,77,0.004904541721455669],[126,224,78,0.0054687182951453205],[126,224,79,0.006237863072624562],[126,225,64,0.014231522784239678],[126,225,65,0.012598852072747907],[126,225,66,0.011045182308339377],[126,225,67,0.009558920458273194],[126,225,68,0.00815442217979105],[126,225,69,0.006870866379565624],[126,225,70,0.005743885990305626],[126,225,71,0.004804209264774197],[126,225,72,0.004077080879367057],[126,225,73,0.0035817983411276927],[126,225,74,0.003331365323824508],[126,225,75,0.003332263390657386],[126,225,76,0.0035843433938730286],[126,225,77,0.004080837676310848],[126,225,78,0.004808494038213263],[126,225,79,0.005747832276004524],[126,226,64,0.013186263121965212],[126,226,65,0.011437765706673124],[126,226,66,0.009787727895543915],[126,226,67,0.008226198436436556],[126,226,68,0.006769330795109713],[126,226,69,0.005458100746413303],[126,226,70,0.004329186165253973],[126,226,71,0.003413602042125926],[126,226,72,0.0027361427672945335],[126,226,73,0.0023149497150742864],[126,226,74,0.0021612057838458877],[126,226,75,0.0022789583662054997],[126,226,76,0.0026650720437483106],[126,226,77,0.0033093121238485135],[126,226,78,0.004194559963085126],[126,226,79,0.00529716085530722],[126,227,64,0.01216399077201797],[126,227,65,0.01030789933211888],[126,227,66,0.00856918134616538],[126,227,67,0.006939421156970848],[126,227,68,0.005436431181399708],[126,227,69,0.004102831428085929],[126,227,70,0.002976222882304549],[126,227,71,0.002087819083780052],[126,227,72,0.0014619108492465722],[126,227,73,0.0011154656422066808],[126,227,74,0.0010578632646388523],[126,227,75,0.001290769351799993],[126,227,76,0.0018081479596061731],[126,227,77,0.002596414345862819],[126,227,78,0.0036347288636598115],[126,227,79,0.004895432709308952],[126,228,64,0.011190677436066176],[126,228,65,0.009238069729244082],[126,228,66,0.007420848479974763],[126,228,67,0.005731992387506507],[126,228,68,0.004190794000571307],[126,228,69,0.002841308978403807],[126,228,70,0.0017218877081107897],[126,228,71,8.638097602494162E-4],[126,228,72,2.9077486271312673E-4],[126,228,73,1.8536761954370472E-5],[126,228,74,5.468164832927588E-5],[126,228,75,3.985526178829897E-4],[126,228,76,0.0010413214409331155],[126,228,77,0.001966208709971482],[126,228,78,0.0031488532476084685],[126,228,79,0.004557831471407767],[126,229,64,0.010292853310743052],[126,229,65,0.008258049520826878],[126,229,66,0.00637537368584223],[126,229,67,0.004639048426791172],[126,229,68,0.003069612120788467],[126,229,69,0.0017122475165658587],[126,229,70,6.057910992529959E-4],[126,229,71,-2.1861916709030457E-4],[126,229,72,-7.380204494904483E-4],[126,229,73,-9.379521289118859E-4],[126,229,74,-8.126316998900635E-4],[126,229,75,-3.6497804402523307E-4],[126,229,76,3.935191554976318E-4],[126,229,77,0.0014430848858686142],[126,229,78,0.0027560999920324563],[126,229,79,0.004297698718601935],[126,230,64,0.009492057424261678],[126,230,65,0.00739189082337213],[126,230,66,0.005458991528458664],[126,230,67,0.0036886684192631294],[126,230,68,0.0021024355300654405],[126,230,69,7.462271844566614E-4],[126,230,70,-3.4095714610304825E-4],[126,230,71,-0.001128378273081266],[126,230,72,-0.0015939934594252447],[126,230,73,-0.0017247384107052888],[126,230,74,-0.0015166534802001745],[126,230,75,-9.748526983211134E-4],[126,230,76,-1.1333445225127282E-4],[126,230,77,0.001045367148177315],[126,230,78,0.002470690979613404],[126,230,79,0.004124718257284564],[126,231,64,0.008804816275393425],[126,231,65,0.006657895352951751],[126,231,66,0.0046915018889634365],[126,231,67,0.002901869548748852],[126,231,68,0.001311200197894608],[126,231,69,-3.42330204739021E-5],[126,231,70,-0.0010956240849823323],[126,231,71,-0.001842916913524665],[126,231,72,-0.00225519165816677],[126,231,73,-0.00232089444820053],[126,231,74,-0.00203790904907632],[126,231,75,-0.001413469126723539],[126,231,76,-4.639100245044252E-4],[126,231,77,7.857408280756647E-4],[126,231,78,0.0023023355518651148],[126,231,79,0.004045339982867323],[126,232,64,0.008242639277464488],[126,232,65,0.006068603140354186],[126,232,66,0.004086266400697036],[126,232,67,0.0022926272904918426],[126,232,68,7.102870625513683E-4],[126,232,69,-6.145657141638596E-4],[126,232,70,-0.0016436849300062548],[126,232,71,-0.0023479899033002935],[126,232,72,-0.002707891371480469],[126,232,73,-0.0027134610159019624],[126,232,74,-0.0023644430942695144],[126,232,75,-0.0016701069756959656],[126,232,76,-6.489395899760771E-4],[126,232,77,6.718229870741814E-4],[126,232,78,0.0022568253885200695],[126,232,79,0.004063384636426375],[126,233,64,0.007812029787320591],[126,233,65,0.005630798326814813],[126,233,66,0.0036502243662120287],[126,233,67,0.0018679186396544601],[126,233,68,3.0660882597591683E-4],[126,233,69,-9.880113908516716E-4],[126,233,70,-0.001978612039535806],[126,233,71,-0.002637372003027355],[126,233,72,-0.00294623363425843],[126,233,73,-0.0028970035340768596],[126,233,74,-0.0024912982010097356],[126,233,75,-0.0017403334792459822],[126,233,76,-6.645569430902643E-4],[126,233,77,7.068774386888456E-4],[126,233,78,0.0023367928187978683],[126,233,79,0.004180831442266047],[126,234,64,0.007514512258194357],[126,234,65,0.005345532640603211],[126,234,66,0.0033839288246430375],[126,234,67,0.0016277890639484211],[126,234,68,9.972539478202083E-5],[126,234,69,-0.0011554395402595431],[126,234,70,-0.0021016205339246443],[126,234,71,-0.002712519016474925],[126,234,72,-0.0029717948790266434],[126,234,73,-0.002873089613432398],[126,234,74,-0.0024198996420735667],[126,234,75,-0.001625298919788836],[126,234,76,-5.11510093763365E-4],[126,234,77,8.906762962005531E-4],[126,234,78,0.0025426349070394256],[126,234,79,0.00439879112487262],[126,235,64,0.007346676076744246],[126,235,65,0.005208167180071514],[126,235,66,0.00328160346612386],[126,235,67,0.0015654439560030297],[126,235,68,8.198883243613474E-5],[126,235,69,-0.0011251336499387599],[126,235,70,-0.002021369455300007],[126,235,71,-0.002582174287607935],[126,235,72,-0.0027930910870787367],[126,235,73,-0.0026496864068360063],[126,235,74,-0.0021573447326343055],[126,235,75,-0.0013309200060435764],[126,235,76,-1.9424380339938261E-4],[126,235,77,0.0012205101925054167],[126,235,78,0.002873605615518534],[126,235,79,0.004718666757138606],[126,236,64,0.007300236663732299],[126,236,65,0.005208433151869896],[126,236,66,0.003331221114948338],[126,236,67,0.0016673653857905862],[126,236,68,2.3871870989891313E-4],[126,236,69,-9.125391078475644E-4],[126,236,70,-0.001753617376635313],[126,236,71,-0.0022619193821617123],[126,236,72,-0.002425014055695538],[126,236,73,-0.002240476281243432],[126,236,74,-0.0017155951161241286],[126,236,75,-8.669493831957287E-4],[126,236,76,2.8014972993969776E-4],[126,236,77,0.0016923492597806986],[126,236,78,0.003329078278440528],[126,236,79,0.005143504813075785],[126,237,64,0.007362114434615371],[126,237,65,0.005330512233622301],[126,237,66,0.003514604525256809],[126,237,67,0.0019134549744783123],[126,237,68,5.484087595043736E-4],[126,237,69,-5.399730086608239E-4],[126,237,70,-0.0013208313623388293],[126,237,71,-0.0017736677449866588],[126,237,72,-0.0018881984527104347],[126,237,73,-0.001664089353503107],[126,237,74,-0.0011105703914679763],[126,237,75,-2.459295488972585E-4],[126,237,76,9.031139014442619E-4],[126,237,77,0.002302156869568247],[126,237,78,0.003909980520110988],[126,237,79,0.005679538684060372],[126,238,64,0.007514532230404388],[126,238,65,0.005553137248069049],[126,238,66,0.0038075502517951384],[126,238,67,0.002277203728001566],[126,238,68,9.829657490134213E-4],[126,238,69,-3.629486267571255E-5],[126,238,70,-7.517481880069429E-4],[126,238,71,-0.0011451001421413504],[126,238,72,-0.0012083183616614702],[126,238,73,-9.4325148150199E-4],[126,238,74,-3.6114155684784636E-4],[126,238,75,5.179704687391429E-4],[126,238,76,0.0016659462080601567],[126,238,77,0.003047358015020274],[126,238,78,0.004620403613740457],[126,238,79,0.0063379267643239425],[126,239,64,0.007725674351796653],[126,239,65,0.005841237328486052],[126,239,66,0.004172355886660272],[126,239,67,0.00271898503668817],[126,239,68,0.0015016435431689005],[126,239,69,5.575392157696811E-4],[126,239,70,-8.654609489507957E-5],[126,239,71,-4.1457908103906336E-4],[126,239,72,-4.208614572030818E-4],[126,239,73,-1.0952392023601864E-4],[126,239,74,5.060723950814868E-4],[126,239,75,0.001404026824758511],[126,239,76,0.0025546821904372983],[126,239,77,0.003921499551720312],[126,239,78,0.0054620242260667575],[126,239,79,0.0071289425155166624],[126,240,64,0.007929299341505944],[126,240,65,0.006128534026647102],[126,240,66,0.004542934145458042],[126,240,67,0.0031731622546543885],[126,240,68,0.002039581876921497],[126,240,69,0.0011778664420564924],[126,240,70,6.128181981293473E-4],[126,240,71,3.582291021299304E-4],[126,240,72,4.174420103209138E-4],[126,240,73,7.839898180576696E-4],[126,240,74,0.0014423122681550963],[126,240,75,0.0023685500440827523],[126,240,76,0.003531415668384904],[126,240,77,0.004893140638756251],[126,240,78,0.0064104981553260686],[126,240,79,0.0080359007240443],[126,241,64,0.008066275049958202],[126,241,65,0.006356196743936294],[126,241,66,0.004860792675375707],[126,241,67,0.003581617465638793],[126,241,68,0.002539116268614383],[126,241,69,0.0017676368243868985],[126,241,70,0.0012901541526898243],[126,241,71,0.0011183193779904829],[126,241,72,0.0012531734427084793],[126,241,73,0.0016859241832355956],[126,241,74,0.002398786222663146],[126,241,75,0.0033658830535809427],[126,241,76,0.004554210610971341],[126,241,77,0.005924661569936095],[126,241,78,0.007433109546761784],[126,241,79,0.009031552335602523],[126,242,64,0.008093960106817557],[126,242,65,0.006481321933671922],[126,242,66,0.005082728864296324],[126,242,67,0.0039007942034162022],[126,242,68,0.002956308171043217],[126,242,69,0.0022825709140010383],[126,242,70,0.0019009585509426827],[126,242,71,0.0018211595486456536],[126,242,72,0.002042042169726004],[126,242,73,0.0025525711045530017],[126,242,74,0.003332772482779555],[126,242,75,0.004354746401187135],[126,242,76,0.005583726053325582],[126,242,77,0.006979182503418762],[126,242,78,0.008495974113038329],[126,242,79,0.010085539604900572],[126,243,64,0.007984043272184464],[126,243,65,0.006474859160055512],[126,243,66,0.005178860585338198],[126,243,67,0.004099853919255121],[126,243,68,0.003259249407277804],[126,243,69,0.002689633901204286],[126,243,70,0.0024110795981072447],[126,243,71,0.002431562696857784],[126,243,72,0.0027479820267594258],[126,243,73,0.0033472134743576234],[126,243,74,0.004207199157725291],[126,243,75,0.0052980702596119944],[126,243,76,0.006583302400733305],[126,243,77,0.0080209024127436],[126,243,78,0.009564625357758235],[126,243,79,0.011165220638287756],[126,244,64,0.007720534110235724],[126,244,65,0.0063196877547682245],[126,244,66,0.0051308052817667675],[126,244,67,0.004158976934811995],[126,244,68,0.0034265057624351587],[126,244,69,0.0029656422851988278],[126,244,70,0.002795505986730788],[126,244,71,0.0029226761757282457],[126,244,72,0.0033423554602576857],[126,244,73,0.004039556768775074],[126,244,74,0.004990312638639039],[126,244,75,0.006162905474219659],[126,244,76,0.007519117466140593],[126,244,77,0.0090154988611888],[126,244,78,0.010604653279521651],[126,244,79,0.012236538792467439],[126,245,64,0.007297907587077081],[126,245,65,0.00600884660004518],[126,245,66,0.0049300098208677375],[126,245,67,0.004067810181238187],[126,245,68,0.003445701880463072],[126,245,69,0.003096005096941886],[126,245,70,0.003037282719634837],[126,245,71,0.0032750887465554895],[126,245,72,0.003803266577527298],[126,245,73,0.004605260033728806],[126,245,74,0.005655435618512727],[126,245,75,0.006920414532513105],[126,245,76,0.008360412962985892],[126,245,77,0.009930589183014477],[126,245,78,0.011582396021069061],[126,245,79,0.013264937295778536],[126,246,64,0.006719405320593796],[126,246,65,0.00554391968279007],[126,246,66,0.004576233649767389],[126,246,67,0.00382406411699522],[126,246,68,0.0033122496925387587],[126,246,69,0.0030736017161428417],[126,246,70,0.003126555533353614],[126,246,71,0.003476057499206357],[126,246,72,0.004114984564946556],[126,246,73,0.00502556745235682],[126,246,74,0.006180815750151891],[126,246,75,0.007545943280167639],[126,246,76,0.00907979210301886],[126,246,77,0.010736253563805684],[126,246,78,0.012465684818620973],[126,246,79,0.014216319332286429],[126,247,64,0.005995496316439757],[126,247,65,0.004933580160126369],[126,247,66,0.00407618787065046],[126,247,67,0.0034322612888146556],[126,247,68,0.0030282226617441323],[126,247,69,0.0028977983662851806],[126,247,70,0.0030597457900293696],[126,247,71,0.0035188561976800606],[126,247,72,0.0042674788882264905],[126,247,73,0.00528704167994678],[126,247,74,0.0065495659072681315],[126,247,75,0.008019174138693698],[126,247,76,0.009653588859137424],[126,247,77,0.011405620403295232],[126,247,78,0.013224642479356964],[126,247,79,0.015058053684576642],[126,248,64,0.00514250010800744],[126,248,65,0.004192295749739725],[126,248,66,0.0034423329144270334],[126,248,67,0.0029026390495417447],[126,248,68,0.0026013781644889937],[126,248,69,0.002573605392579059],[126,248,70,0.0028388577106721645],[126,248,71,0.0034022466812241364],[126,248,72,0.00425606765775187],[126,248,73,0.005381400082866243],[126,248,74,0.006749696944611106],[126,248,75,0.008324361490854915],[126,248,76,0.010062309344677365],[126,248,77,0.011915514216239164],[126,248,78,0.013832535468697709],[126,248,79,0.01576002586742064],[126,249,64,0.0041813752762106665],[126,249,65,0.0033391983054021847],[126,249,66,0.002691837527630614],[126,249,67,0.002250208970335369],[126,249,68,0.0020443303398852294],[126,249,69,0.002110977424309609],[126,249,70,0.0024709198038587324],[126,249,71,0.0031300749159678463],[126,249,72,0.004081180489045359],[126,249,73,0.005305454946538564],[126,249,74,0.0067742437625924745],[126,249,75,0.008450649790168194],[126,249,76,0.010291145631430255],[126,249,77,0.012247166178689347],[126,249,78,0.014266679522346087],[126,249,79,0.016295734500170758],[126,250,64,0.003136676353984381],[126,250,65,0.002397120455979623],[126,250,66,0.0018457017940263388],[126,250,67,0.0014939754797664985],[126,250,68,0.0013738757209378],[126,250,69,0.0015242584922819304],[126,250,70,0.0019675622986227324],[126,250,71,0.002710993231021659],[126,250,72,0.003748237110633645],[126,250,73,0.005061158622108875],[126,250,74,0.00662148536812269],[126,250,75,0.008392474818325144],[126,250,76,0.010330562177268115],[126,250,77,0.012386987256837009],[126,250,78,0.014509398509525628],[126,250,79,0.016643432459583794],[126,251,64,0.0020356821171638156],[126,251,65,0.001391802171630769],[126,251,66,9.280468867393131E-4],[126,251,67,6.563162255162048E-4],[126,251,68,6.104739128780035E-4],[126,251,69,8.317741109810232E-4],[126,251,70,0.0013447323156381141],[126,251,71,0.0021583101836827245],[126,251,72,0.003267642866570314],[126,251,73,0.004655754459756967],[126,251,74,0.00629525948425659],[126,251,75,0.008150048357258187],[126,251,76,0.010176954858845767],[126,251,77,0.012327403661872025],[126,251,78,0.014549036062052541],[126,251,79,0.01678731212541656],[126,252,64,9.076982243327552E-4],[126,252,65,3.5127007030145996E-4],[126,252,66,-3.4425814781039184E-5],[126,252,67,-2.3747341775496808E-4],[126,252,68,-2.221144990399326E-4],[126,252,69,5.5572240545513774E-5],[126,252,70,6.225484038677166E-4],[126,252,71,0.0014899693780183294],[126,252,72,0.0026549021260081082],[126,252,73,0.004102034226263631],[126,252,74,0.005805372094541035],[126,252,75,0.007729926358839904],[126,252,76,0.009833382403627872],[126,252,77,0.0120677541553814],[126,252,78,0.014381019247309383],[126,252,79,0.016718733777235407],[126,253,64,-2.164629103527069E-4],[126,253,65,-6.946078126688999E-4],[126,253,66,-0.0010128037095900745],[126,253,67,-0.0011594693817530883],[126,253,68,-0.0010970307508473252],[126,253,69,-7.786850875724826E-4],[126,253,70,-1.7470407245884537E-4],[126,253,71,7.286584067615803E-4],[126,253,72,0.0019308504448070647],[126,253,73,0.0034187025229266196],[126,253,74,0.005168102111390405],[126,253,75,0.0071456604827686175],[126,253,76,0.00931036978656267],[126,253,77,0.011615248483994992],[126,253,78,0.014008973300322424],[126,253,79,0.01643749592104953],[126,254,64,-0.0013048222493158648],[126,254,65,-0.0017143892028279122],[126,254,66,-0.0019761576726884376],[126,254,67,-0.0020792393199848104],[126,254,68,-0.0019843595111856426],[126,254,69,-0.0016416778687333882],[126,254,70,-0.0010184353925878264],[126,254,71,-9.795110488156872E-5],[126,254,72,0.0011220061213957652],[126,254,73,0.002630848504649192],[126,254,74,0.004406801128994694],[126,254,75,0.006418532629878983],[126,254,76,0.008626782898120943],[126,254,77,0.010985985947487014],[126,254,78,0.013445886139357162],[126,254,79,0.01595314601714085],[126,255,64,-0.002324391675974786],[126,255,65,-0.002675144305116048],[126,255,66,-0.0028915602672651168],[126,255,67,-0.0029637924460122647],[126,255,68,-0.002851007611070158],[126,255,69,-0.0025002305495069065],[126,255,70,-0.0018754707026367966],[126,255,71,-9.568316064025461E-4],[126,255,72,2.610415480367259E-4],[126,255,73,0.0017705249492796838],[126,255,74,0.00355258795771185],[126,255,75,0.005578371821667715],[126,255,76,0.007810773500094822],[126,255,77,0.010206032799516223],[126,255,78,0.012715321069078385],[126,255,79,0.015286329744318811],[126,256,64,-0.003241146579601189],[126,256,65,-0.003542359887960843],[126,256,66,-0.0037239255166003665],[126,256,67,-0.003777357085506258],[126,256,68,-0.0036604184570663404],[126,256,69,-0.00331695964320405],[126,256,70,-0.002707625190923951],[126,256,71,-0.0018090954079441751],[126,256,72,-6.126255237603402E-4],[126,256,73,8.774344352643855E-4],[126,256,74,0.0026451373360528605],[126,256,75,0.004664452464924772],[126,256,76,0.006900793161421139],[126,256,77,0.009312556842765385],[126,256,78,0.011852675723698865],[126,256,79,0.014470176569280763],[126,257,64,-0.004019813954509518],[126,257,65,-0.004279661592207029],[126,257,66,-0.004435671433673532],[126,257,67,-0.004480987431981921],[126,257,68,-0.004372123835845795],[126,257,69,-0.004049768348204574],[126,257,70,-0.0034711369843013593],[126,257,71,-0.0026093597022242366],[126,257,72,-0.0014521219651408839],[126,257,73,-2.7794773185189724E-7],[126,257,74,0.0017335630205439904],[126,257,75,0.0037264751591756093],[126,257,76,0.0059466784570536965],[126,257,77,0.0083550227753755],[126,257,78,0.01090649220541407],[126,257,79,0.013551728071442663],[126,258,64,-0.004622494534653483],[126,258,65,-0.004847442659907569],[126,258,66,-0.004985362924205013],[126,258,67,-0.005031226710783094],[126,258,68,-0.00494043405747165],[126,258,69,-0.004650571792204345],[126,258,70,-0.004115435854585602],[126,258,71,-0.0033045663514221415],[126,258,72,-0.002201996241845355],[126,258,73,-8.049627726217437E-4],[126,258,74,8.774168740748496E-4],[126,258,75,0.0028255042196807943],[126,258,76,0.005010530885106684],[126,258,77,0.007396021194303187],[126,258,78,0.009939244427901582],[126,258,79,0.01259269517211687],[126,259,64,-0.004989361909661822],[126,259,65,-0.005185143306250025],[126,259,66,-0.0053115685224346],[126,259,67,-0.005365551319363393],[126,259,68,-0.005301567690526607],[126,259,69,-0.005054313304521195],[126,259,70,-0.004574307239651406],[126,259,71,-0.003827578269983449],[126,259,72,-0.002794524759463741],[126,259,73,-0.001468728795905484],[126,259,74,1.4427410481207165E-4],[126,259,75,0.0020282683409683145],[126,259,76,0.004157673186335305],[126,259,77,0.006498897909223673],[126,259,78,0.009011735564446293],[126,259,79,0.011650793961361303],[126,260,64,-0.005052649326399305],[126,260,65,-0.005225578649883366],[126,260,66,-0.005347504548692112],[126,260,67,-0.005417327764526136],[126,260,68,-0.0053889176510695785],[126,260,69,-0.00519451880462788],[126,260,70,-0.004781698736746186],[126,260,71,-0.004113188884710364],[126,260,72,-0.0031658646612835488],[126,260,73,-0.0019296714480158547],[126,260,74,-4.064977224975961E-4],[126,260,75,0.0013910034226052104],[126,260,76,0.0034406430522271906],[126,260,77,0.005711974087800878],[126,260,78,0.00816761652848744],[126,260,79,0.01076462876379576],[126,261,64,-0.00476426824816231],[126,261,65,-0.0049211260277475626],[126,261,66,-0.005045793254724014],[126,261,67,-0.005139143108271181],[126,261,68,-0.0051548634724932095],[126,261,69,-0.005023382482880837],[126,261,70,-0.004689797231228591],[126,261,71,-0.004113874251106159],[126,261,72,-0.0032691625365753696],[126,261,73,-0.002142044276062833],[126,261,74,-7.307243385830527E-4],[126,261,75,9.558403684205841E-4],[126,261,76,0.0028990704767403153],[126,261,77,0.0050719514135118835],[126,261,78,0.0074402770249324705],[126,261,79,0.009963948214230594],[126,262,64,-0.004095401855408113],[126,262,65,-0.004243238141064672],[126,262,66,-0.004377910211340403],[126,262,67,-0.004502200322639887],[126,262,68,-0.004570124411059962],[126,262,69,-0.004511082872631572],[126,262,70,-0.004268309747684585],[126,262,71,-0.003799038113729617],[126,262,72,-0.0030737615927406967],[126,262,73,-0.002075425302687137],[126,262,74,-7.985471204847612E-4],[126,262,75,7.517297794408529E-4],[126,262,76,0.002560652057811475],[126,262,77,0.004604937881315518],[126,262,78,0.006853923928796348],[126,262,79,0.009270776471352984],[126,263,64,-0.0030347284674048488],[126,263,65,-0.0031806593289362786],[126,263,66,-0.003332409866383888],[126,263,67,-0.0034945691767924916],[126,263,68,-0.0036220523037465233],[126,263,69,-0.0036441352842741504],[126,263,70,-0.0035028930040141445],[126,263,71,-0.0031535351623170394],[126,263,72,-0.002563833485785761],[126,263,73,-0.0017134699910134519],[126,263,74,-5.933069744670276E-4],[126,263,75,7.954204800778797E-4],[126,263,76,0.0024419885812378204],[126,263,77,0.004327144505297375],[126,263,78,0.006424140589061767],[126,263,79,0.00869984188666167],[126,264,64,-0.0015864539711911354],[126,264,65,-0.0017374544822135168],[126,264,66,-0.0019129690995037482],[126,264,67,-0.0021192624515200334],[126,264,68,-0.00231275933017399],[126,264,69,-0.002423591194701676],[126,264,70,-0.002393444552806891],[126,264,71,-0.0021760730820433675],[126,264,72,-0.0017369086227284347],[126,264,73,-0.0010525846406763586],[126,264,74,-1.103726280141047E-4],[126,264,75,0.0010924679611839239],[126,264,76,0.0025494255221970106],[126,264,77,0.004245557026292226],[126,264,78,0.0061583927271092265],[126,264,79,0.008258923817700613],[126,265,64,2.3184507962402835E-4],[126,265,65,6.914769438890419E-5],[126,265,66,-1.3625051869992278E-4],[126,265,67,-3.9213925728075937E-4],[126,265,68,-6.570824793697191E-4],[126,265,69,-8.630864085421783E-4],[126,265,70,-9.522573311578925E-4],[126,265,71,-8.774952119207825E-4],[126,265,72,-6.023067303928533E-4],[126,265,73,-1.0052197753295472E-4],[126,265,74,6.440849500463161E-4],[126,265,75,0.0016382710752606783],[126,265,76,0.0028798948634841206],[126,265,77,0.004358581090245325],[126,265,78,0.006056479478282896],[126,265,79,0.00794911621616664],[126,266,64,0.002391565924016708],[126,266,65,0.0022110952637007207],[126,266,66,0.001970412666849894],[126,266,67,0.0016603626909483132],[126,266,68,0.0013196134148386754],[126,266,69,0.0010132601453463426],[126,266,70,7.979605304725912E-4],[126,266,71,7.210543644332115E-4],[126,266,72,8.205305252979683E-4],[126,266,73,0.001125099332365637],[126,266,74,0.0016543703368385972],[126,266,75,0.002419135396817],[126,266,76,0.0034217567306482496],[126,266,77,0.004656659492570426],[126,266,78,0.006110928272763695],[126,266,79,0.007765006791639981],[126,267,64,0.004855609736175899],[126,267,65,0.004652035579814883],[126,267,66,0.004371508280676317],[126,267,67,0.004003663918195394],[126,267,68,0.003583792149076522],[126,267,69,0.003173095076927818],[126,267,70,0.002826198764758534],[126,267,71,0.0025900814645093946],[126,267,72,0.002503803097733217],[126,267,73,0.0025983495464248158],[126,267,74,0.002896592038949667],[126,267,75,0.003413361735300335],[126,267,76,0.004155639439935213],[126,267,77,0.005122860200626191],[126,267,78,0.0063073323895215215],[126,267,79,0.0076947707093869494],[126,268,64,0.007581095482553354],[126,268,65,0.007350017767515949],[126,268,66,0.0070260113274685145],[126,268,67,0.006597647166019432],[126,268,68,0.006096260165071872],[126,268,69,0.005578224716323227],[126,268,70,0.005095388993476082],[126,268,71,0.0046938063545914266],[126,268,72,0.00441321053845043],[126,268,73,0.004286615421779788],[126,268,74,0.004340039913136185],[126,268,75,0.004592358359487043],[126,268,76,0.0050552766456324035],[126,268,77,0.005733433976061633],[126,268,78,0.006624630145168957],[126,268,79,0.007720177926435383],[126,269,64,0.010522255437845239],[126,269,65,0.01026037309341529],[126,269,66,0.009890222596521687],[126,269,67,0.009399426457415615],[126,269,68,0.00881483608865909],[126,269,69,0.008187152842065061],[126,269,70,0.0075647778117665715],[126,269,71,0.006992340365392075],[126,269,72,0.006509902656137685],[126,269,73,0.006152298873264617],[126,269,74,0.005948610116619915],[126,269,75,0.005921775561006738],[126,269,76,0.006088340359385402],[126,269,77,0.006458340521520681],[126,269,78,0.007035324798424342],[126,269,79,0.007816513404356339],[126,270,64,0.013633510226618253],[126,270,65,0.013338771095872467],[126,270,66,0.012920777601398042],[126,270,67,0.012366279157999378],[126,270,68,0.011697173741461198],[126,270,69,0.010957759961177637],[126,270,70,0.010192427009623953],[126,270,71,0.009443972746319251],[126,270,72,0.008752521135394849],[126,270,73,0.008154585117496008],[126,270,74,0.007682276130312365],[126,270,75,0.007362661251108558],[126,270,76,0.007217268695636615],[126,270,77,0.007261742172386558],[126,270,78,0.007505644360977285],[126,270,79,0.007952409560301707],[126,271,64,0.016860627097560716],[126,271,65,0.0165323386275586],[126,271,66,0.016065927289580777],[126,271,67,0.015447307576064499],[126,271,68,0.014693028417874014],[126,271,69,0.013840391499793414],[126,271,70,0.012929326709192003],[126,271,71,0.012000491167356967],[126,271,72,0.011093883948602916],[126,271,73,0.010247617522319157],[126,271,74,0.009496847478840194],[126,271,75,0.008872861836684625],[126,271,76,0.008402330966260845],[126,271,77,0.008106718905300743],[126,271,78,0.00800185658584904],[126,271,79,0.008097677243424911],[126,272,64,0.020108179583784073],[126,272,65,0.019746945041763216],[126,272,66,0.019233347696354545],[126,272,67,0.018552531975370785],[126,272,68,0.017715410596879345],[126,272,69,0.016751832688918035],[126,272,70,0.015696906612268798],[126,272,71,0.014588875296517319],[126,272,72,0.013467418360064213],[126,272,73,0.012372122726247704],[126,272,74,0.011341123653938344],[126,272,75,0.010409917814187899],[126,272,76,0.009610349757571844],[126,272,77,0.00896977283156246],[126,272,78,0.008510385325493768],[126,272,79,0.008248742344379579],[126,273,64,0.019620284682138424],[126,273,65,0.020034197568373963],[126,273,66,0.020611224253822443],[126,273,67,0.021366908228532273],[126,273,68,0.02067535632471804],[126,273,69,0.019607125439626748],[126,273,70,0.018415202614287873],[126,273,71,0.017135172528317352],[126,273,72,0.015806181344328412],[126,273,73,0.014469103816386582],[126,273,74,0.01316489325982951],[126,273,75,0.011933116349985354],[126,273,76,0.010810674405241182],[126,273,77,0.009830712498516664],[126,273,78,0.009021717432472112],[126,273,79,0.008406805309806906],[126,274,64,0.016641652494645165],[126,274,65,0.017083421350949472],[126,274,66,0.017699578822647107],[126,274,67,0.018506222889741592],[126,274,68,0.01950412493275658],[126,274,69,0.020679137635470777],[126,274,70,0.021012135775016958],[126,274,71,0.01957236954832908],[126,274,72,0.018049131375135738],[126,274,73,0.016484351681930815],[126,274,74,0.014921560465379324],[126,274,75,0.013404147768933087],[126,274,76,0.011973823851424224],[126,274,77,0.010669280670382714],[126,274,78,0.00952505596700067],[126,274,79,0.008570600907921914],[126,275,64,0.013898996082990991],[126,275,65,0.0143653305021726],[126,275,66,0.015015240633357886],[126,275,67,0.01586525074032637],[126,275,68,0.016921931259095305],[126,275,69,0.018179053912700006],[126,275,70,0.019617272918204042],[126,275,71,0.021206900700165485],[126,275,72,0.02014163024349699],[126,275,73,0.01836897376009084],[126,275,74,0.016568695660966755],[126,275,75,0.014787672688853995],[126,275,76,0.013072064683708048],[126,275,77,0.011465737783946297],[126,275,78,0.010008903846681716],[126,275,79,0.008736977254480749],[126,276,64,0.011455706771466486],[126,276,65,0.011942784129762449],[126,276,66,0.01262027798738531],[126,276,67,0.013505009667624168],[126,276,68,0.014609177205293587],[126,276,69,0.015934313837411323],[126,276,70,0.017466407299388302],[126,276,71,0.019178871973976976],[126,276,72,0.02103546344674864],[126,276,73,0.020079896521536276],[126,276,74,0.018068557582122047],[126,276,75,0.016051857731559895],[126,276,76,0.014079954261407507],[126,276,77,0.01220140644073043],[126,276,78,0.010461603973797839],[126,276,79,0.008901426316852007],[126,277,64,0.009363387221133704],[126,277,65,0.009867021733888516],[126,277,66,0.010565410581666084],[126,277,67,0.011475549412663641],[126,277,68,0.012614987860307507],[126,277,69,0.013992709421759234],[126,277,70,0.015599900418166631],[126,277,71,0.0174131025329122],[126,277,72,0.01939739349708902],[126,277,73,0.021509339433619188],[126,277,74,0.019388586578444257],[126,277,75,0.017168879425040855],[126,277,76,0.014974848481778628],[126,277,77,0.01285917642890123],[126,277,78,0.010871835277683964],[126,277,79,0.009058565282292288],[126,278,64,0.0076616419360474],[126,278,65,0.008177443890191335],[126,278,66,0.008889772871041673],[126,278,67,0.009815688706884585],[126,278,68,0.010977720162302935],[126,278,69,0.012391843490763235],[126,278,70,0.014054202701479225],[126,278,71,0.015944423758520877],[126,278,72,0.018029036242500303],[126,278,73,0.02026465581011664],[126,278,74,0.020501868760532223],[126,278,75,0.0181153959716461],[126,278,76,0.015737373805167088],[126,278,77,0.013423969841016254],[126,278,78,0.01122906418898656],[126,278,79,0.009202568262195404],[126,279,64,0.006377891799623979],[126,279,65,0.006901416891574917],[126,279,66,0.007620701124839867],[126,279,67,0.0085527757255748],[126,279,68,0.00972469001877731],[126,279,69,0.01115882087496859],[126,279,70,0.012855928426844777],[126,279,71,0.0147986110871859],[126,279,72,0.01695493925029546],[126,279,73,0.01928183970444332],[126,279,74,0.02138757080999137],[126,279,75,0.01887298661473844],[126,279,76,0.016351863221295587],[126,279,77,0.013883165922533976],[126,279,78,0.011523951137046228],[126,279,79,0.00932754788401298],[126,280,64,0.005527212435151331],[126,280,65,0.006054101148780957],[126,280,66,0.006773543992833953],[126,280,67,0.007702471699031347],[126,280,68,0.008871922284011676],[126,280,69,0.010309962383502418],[126,280,70,0.012021534804892613],[126,280,71,0.013992032015179786],[126,280,72,0.016191109987362555],[126,280,73,0.018576243585627053],[126,280,74,0.021096019204864376],[126,280,75,0.019428558391588805],[126,280,76,0.016806755899008288],[126,280,77,0.014226985350982607],[126,280,78,0.01174871173142462],[126,280,79,0.009427886396979007],[126,281,64,0.0051121961566326455],[126,281,65,0.00563830312191024],[126,281,66,0.00635149636756535],[126,281,67,0.007268557493365083],[126,281,68,0.008423923439488475],[126,281,69,0.009850541443049043],[126,281,70,0.011557024056669776],[126,281,71,0.013531317897378953],[126,281,72,0.015744663703132322],[126,281,73,0.018155289785201884],[126,281,74,0.020711834440117895],[126,281,75,0.019774720113421747],[126,281,76,0.017094960319061592],[126,281,77,0.014448833707059027],[126,281,78,0.011897432353958461],[126,281,79,0.009498515986926413],[126,282,64,0.0051228372473429],[126,282,65,0.005644350526264996],[126,282,66,0.006345456300930616],[126,282,67,0.0072427629429860614],[126,282,68,0.008373476791675796],[126,282,69,0.009774543255175927],[126,282,70,0.011457668379762066],[126,282,71,0.013413059477191439],[126,282,72,0.01561349643098718],[126,282,73,0.018018129368129666],[126,282,74,0.02057599814970955],[126,282,75,0.01991012346463188],[126,282,76,0.017214180744095704],[126,282,77,0.014545603956821427],[126,282,78,0.011966339948798801],[126,282,79,0.009535148059504983],[126,283,64,0.005536440273605306],[126,283,65,0.006049990526100521],[126,283,66,0.00673390470291815],[126,283,67,0.0076046186860651115],[126,283,68,0.008701459969582229],[126,283,69,0.010064446290732804],[126,283,70,0.011707757661468062],[126,283,71,0.0136235260470582],[126,283,72,0.015785983048950732],[126,283,73,0.018155328081453988],[126,283,74,0.02068131242706898],[126,283,75,0.019839771162409037],[126,283,76,0.017167206931883505],[126,283,77,0.014517937818693248],[126,283,78,0.011954025854821849],[126,283,79,0.009534451310132787],[126,284,64,0.006317551110330556],[126,284,65,0.006820310599054617],[126,284,66,0.007482807519384801],[126,284,67,0.008321330222606943],[126,284,68,0.009376684471657744],[126,284,69,0.010691025905643158],[126,284,70,0.012280369760971766],[126,284,71,0.014138408100481867],[126,284,72,0.016240700299837776],[126,284,73,0.018548579319420458],[126,284,74,0.021012769117445398],[126,284,75,0.019575292165496798],[126,284,76,0.016962167047485],[126,284,77,0.014370445940354176],[126,284,78,0.011861623577707972],[126,284,79,0.00949417845315468],[126,285,64,0.0074179103228079685],[126,285,65,0.007907681722165563],[126,285,66,0.008545540053776097],[126,285,67,0.009347673882165244],[126,285,68,0.010355756977913359],[126,285,69,0.011613179827246954],[126,285,70,0.013137163145597439],[126,285,71,0.014922583297827705],[126,285,72,0.016946174630437898],[126,285,73,0.019170444001324963],[126,285,74,0.02154729287006506],[126,285,75,0.01913518396661858],[126,285,76,0.016612743777092],[126,285,77,0.01411188685881118],[126,285,78,0.011692940447934569],[126,285,79,0.009413241531996401],[126,286,64,0.00877642851606824],[126,286,65,0.009251723497463855],[126,286,66,0.009862833064675723],[126,286,67,0.01062591435462989],[126,286,68,0.0115829621084909],[126,286,69,0.01277777522436218],[126,286,70,0.014228191628710448],[126,286,71,0.015929905529034234],[126,286,72,0.01786065466865121],[126,286,73,0.019984117216276243],[126,286,74,0.020915717682239394],[126,286,75,0.018545022047336508],[126,286,76,0.01613835369121923],[126,286,77,0.013755304762097279],[126,286,78,0.01145454315597701],[126,286,79,0.009291735776635663],[126,287,64,0.010319183228877996],[126,287,65,0.010779290801148988],[126,287,66,0.011362740237034258],[126,287,67,0.01208574340292283],[126,287,68,0.01299016627432358],[126,287,69,0.014119517037384968],[126,287,70,0.015491740918619728],[126,287,71,0.017103016816827056],[126,287,72,0.018931908116749833],[126,287,73,0.020943221447340604],[126,287,74,0.02008050066139495],[126,287,75,0.017837636616841457],[126,287,76,0.015564289947550252],[126,287,77,0.013318126113187122],[126,287,78,0.011155797197194594],[126,287,79,0.00913091201447858],[126,288,64,0.011959436914082442],[126,288,65,0.012404481505340379],[126,288,66,0.012960626589861916],[126,288,67,0.013644239340827211],[126,288,68,0.014496742228948763],[126,288,69,0.015560837206990575],[126,288,70,0.01685418664886923],[126,288,71,0.01837318176396725],[126,288,72,0.02009704279801861],[126,288,73,0.02119039461383584],[126,288,74,0.019160921661516398],[126,288,75,0.017053256797431745],[126,288,76,0.014921828464196376],[126,288,77,0.012822215235852199],[126,288,78,0.010808860296183507],[126,288,79,0.008933097675702488],[126,289,64,0.013597677579468566],[126,289,65,0.014028666809871217],[126,289,66,0.014559179329519134],[126,289,67,0.015205848762451492],[126,289,68,0.016009515775247472],[126,289,69,0.01701180619157424],[126,289,70,0.018229875170238562],[126,289,71,0.019660145658684357],[126,289,72,0.021282352742708874],[126,289,73,0.020119948585447783],[126,289,74,0.018214356481729605],[126,289,75,0.016239622429967036],[126,289,76,0.014248298201023779],[126,289,77,0.012293890007955598],[126,289,78,0.010428631497870275],[126,289,79,0.008701568645593537],[126,290,64,0.01513169627953181],[126,290,65,0.015550369494187616],[126,290,66,0.016058085820497753],[126,290,67,0.016671852141639607],[126,290,68,0.017431946424280156],[126,290,69,0.01837887653066664],[126,290,70,0.019529220106951593],[126,290,71,0.020879336577651463],[126,290,72,0.020780975141253592],[126,290,73,0.019096592954639287],[126,290,74,0.017304070846142397],[126,290,75,0.015451009970025673],[126,290,76,0.013588257896713713],[126,290,77,0.011767426098492772],[126,290,78,0.01003871778999795],[126,290,79,0.008449067724243442],[126,291,64,0.016487802332953876],[126,291,65,0.01689604749922576],[126,291,66,0.017384385207991928],[126,291,67,0.017970263888015352],[126,291,68,0.01869340235599829],[126,291,69,0.019593151038643054],[126,291,70,0.020685430401847834],[126,291,71,0.021228617088062392],[126,291,72,0.019773509585463856],[126,291,73,0.01817887552759672],[126,291,74,0.01648531720984215],[126,291,75,0.01473919225532204],[126,291,76,0.01298987252380613],[126,291,77,0.011287311344557167],[126,291,78,0.009679921133644983],[126,291,79,0.008212762923363778],[126,292,64,0.01760757924334132],[126,292,65,0.01800734544748325],[126,292,66,0.01848016977224297],[126,292,67,0.019043973259084253],[126,292,68,0.019737883077560886],[126,292,69,0.02060002548961046],[126,292,70,0.021551711876989267],[126,292,71,0.02032381788519215],[126,292,72,0.018933993076980155],[126,292,73,0.01741361654448233],[126,292,74,0.015802562328312383],[126,292,75,0.014146197008421308],[126,292,76,0.012492683012563198],[126,292,77,0.010890590175595656],[126,292,78,0.009386817544088983],[126,292,79,0.00802482688859912],[126,293,64,0.018443199540270825],[126,293,65,0.018836517417347914],[126,293,66,0.0192980995476833],[126,293,67,0.01984634164514934],[126,293,68,0.020519728421424514],[126,293,69,0.021355088647989715],[126,293,70,0.020829095203268852],[126,293,71,0.019642462494012924],[126,293,72,0.018301662919838195],[126,293,73,0.016837889953835533],[126,293,74,0.01529055273245882],[126,293,75,0.01370431242215597],[126,293,76,0.012126424060802984],[126,293,77,0.01060438634936547],[126,293,78,0.00918390133099073],[126,293,79,0.007907145363476944],[126,294,64,0.018957987301873095],[126,294,65,0.01934696706407969],[126,294,66,0.019801911510512013],[126,294,67,0.020341670883805382],[126,294,68,0.021004032579386878],[126,294,69,0.02137039300104197],[126,294,70,0.020377207861597874],[126,294,71,0.01921570612081977],[126,294,72,0.017905945575320586],[126,294,73,0.016479186846962868],[126,294,74,0.014974660199453683],[126,294,75,0.013436634343907109],[126,294,76,0.01191179020194228],[126,294,77,0.010446902053657859],[126,294,78,0.009086827960307527],[126,294,79,0.007872810821210805],[126,295,64,0.019126959283351595],[126,295,65,0.019513766288468747],[126,295,66,0.019966907402585846],[126,295,67,0.020505650382447074],[126,295,68,0.021167037369738854],[126,295,69,0.02120680014885764],[126,295,70,0.02021818220817737],[126,295,71,0.019064532929429466],[126,295,72,0.017766471051736826],[126,295,73,0.016355585322720977],[126,295,74,0.01487122746327576],[126,295,75,0.013357606341965315],[126,295,76,0.011861186289619317],[126,295,77,0.01042839194417549],[126,295,78,0.009103621479198538],[126,295,79,0.007927569540289486],[126,296,64,0.01893734481456045],[126,296,65,0.019324152636914546],[126,296,66,0.01978042039670777],[126,296,67,0.02032578327646249],[126,296,68,0.020996504990602773],[126,296,69,0.021362984804888942],[126,296,70,0.020363409065182504],[126,296,71,0.019199651406035276],[126,296,72,0.017893098323972796],[126,296,73,0.01647592632976414],[126,296,74,0.014987913660638263],[126,296,75,0.013473552097497395],[126,296,76,0.011979461791175343],[126,296,77,0.01055211146224098],[126,296,78,0.00923584580331168],[126,296,79,0.008071221384804053],[126,297,64,0.01838908469887422],[126,297,65,0.018778005683385376],[126,297,66,0.019242260871925935],[126,297,67,0.019801791910296244],[126,297,68,0.020492070566898345],[126,297,69,0.021344366100505826],[126,297,70,0.02081334117098404],[126,297,71,0.019621404250170175],[126,297,72,0.018285951362419544],[126,297,73,0.016839995031113122],[126,297,74,0.015324039021783047],[126,297,75,0.013783199596969432],[126,297,76,0.012264628332405589],[126,297,77,0.01081523884591576],[126,297,78,0.009479739256140754],[126,297,79,0.008298971661437029],[126,298,64,0.017495309417319183],[126,298,65,0.017888302712887643],[126,298,66,0.018365141633238623],[126,298,67,0.018946002990091214],[126,298,68,0.019665574854486893],[126,298,69,0.020553808534049766],[126,298,70,0.02155731357336522],[126,298,71,0.020319692374440274],[126,298,72,0.018935465333510593],[126,298,73,0.01743870723280364],[126,298,74,0.015870928328449125],[126,298,75,0.014278196630055383],[126,298,76,0.012708559984666882],[126,298,77,0.011209770316121519],[126,298,78,0.009827311837992935],[126,298,79,0.008602734532879481],[126,299,64,0.016282797016394564],[126,299,65,0.016681554097784466],[126,299,66,0.017175082978209803],[126,299,67,0.01778371282021178],[126,299,68,0.018541377522937573],[126,299,69,0.019476816634877818],[126,299,70,0.02059727754847974],[126,299,71,0.021273912564782862],[126,299,72,0.01982244251581204],[126,299,73,0.01825430041443021],[126,299,74,0.01661225267326808],[126,299,75,0.014943617127202644],[126,299,76,0.013297675832798152],[126,299,77,0.011723387985665705],[126,299,78,0.010267404787734458],[126,299,79,0.008972387572419152],[126,300,64,0.014792411135327085],[126,300,65,0.01519821883267798],[126,300,66,0.015711798083547248],[126,300,67,0.01635353310171336],[126,300,68,0.0171566514981194],[126,300,69,0.01814882426099385],[126,300,70,0.01933613266413155],[126,300,71,0.020706726804751083],[126,300,72,0.020918117456488115],[126,300,73,0.019260528894708685],[126,300,74,0.01752436906602129],[126,300,75,0.01575845789928298],[126,300,76,0.014013604408552014],[126,300,77,0.012340300103891942],[126,300,78,0.010786712084132477],[126,300,79,0.009396977146834351],[126,301,64,0.013079519708738942],[126,301,65,0.013493100770667121],[126,301,66,0.01402905925772844],[126,301,67,0.014707717838786034],[126,301,68,0.01556165890746152],[126,301,69,0.01661766054043766],[126,301,70,0.017880741880056287],[126,301,71,0.019337832870838883],[126,301,72,0.02096155439666285],[126,301,73,0.020422862659798632],[126,301,74,0.01857665744270004],[126,301,75,0.016696125369240564],[126,301,76,0.014833829619489024],[126,301,77,0.01304205331316781],[126,301,78,0.011370763615472873],[126,301,79,0.009865874414749084],[126,302,64,0.011214394963961207],[126,302,65,0.011635726183695903],[126,302,66,0.012195045681349497],[126,302,67,0.012912471969418091],[126,302,68,0.013820009234281094],[126,302,69,0.014943744400048524],[126,302,70,0.01628777833888545],[126,302,71,0.01783790636479218],[126,302,72,0.01956541612549361],[126,302,73,0.02143060592476877],[126,302,74,0.019731854643234282],[126,302,75,0.017724911912475754],[126,302,76,0.01573231784768917],[126,302,77,0.0138083166557483],[126,302,78,0.012004869826389082],[126,302,79,0.010369881825459537],[126,303,64,0.009259290295876839],[126,303,65,0.009688121275002091],[126,303,66,0.010270985221785957],[126,303,67,0.011027632571218178],[126,303,68,0.01198955694739196],[126,303,69,0.013182369720044105],[126,303,70,0.014609424298262216],[126,303,71,0.016255505961832447],[126,303,72,0.018090650540923084],[126,303,73,0.02007368650892422],[126,303,74,0.020954860963803595],[126,303,75,0.01881479761068124],[126,303,76,0.01668430693714828],[126,303,77,0.014619679241497638],[126,303,78,0.012674978024438968],[126,303,79,0.010900224954215599],[126,304,64,0.007203793866484552],[126,304,65,0.007642146368276327],[126,304,66,0.008250966532355561],[126,304,67,0.009049495380612692],[126,304,68,0.010068790570836362],[126,304,69,0.011334192916877607],[126,304,70,0.01284846072997303],[126,304,71,0.014595470464996835],[126,304,72,0.016544061649769654],[126,304,73,0.01865160804242814],[126,304,74,0.02086731088203115],[126,304,75,0.019953958211397355],[126,304,76,0.017676618131903306],[126,304,77,0.015461802871292962],[126,304,78,0.01336579180292497],[126,304,79,0.01144085022619588],[126,305,64,0.005041882312846784],[126,305,65,0.005494086557024176],[126,305,66,0.006133545326444859],[126,305,67,0.006978876402605295],[126,305,68,0.00806078025285134],[126,305,69,0.00940451396714319],[126,305,70,0.011012368115048443],[126,305,71,0.01286738266445413],[126,305,72,0.014937226004270334],[126,305,73,0.017177802553332355],[126,305,74,0.01953658476315564],[126,305,75,0.02112583828210363],[126,305,76,0.01869140210453971],[126,305,77,0.016315763800300705],[126,305,78,0.014057537991741403],[126,305,79,0.011971358533546446],[126,306,64,0.002791489949049284],[126,306,65,0.0032635250264741057],[126,306,66,0.003939780183081651],[126,306,67,0.004838157178685106],[126,306,68,0.005989076635509559],[126,306,69,0.007417877653611105],[126,306,70,0.009126489590318853],[126,306,71,0.011097169700112137],[126,306,72,0.013296425415066987],[126,306,73,0.015678666874282845],[126,306,74,0.018189585441681578],[126,306,75,0.02076925446880558],[126,306,76,0.019703440578598273],[126,306,77,0.01715717238817716],[126,306,78,0.01472685575802587],[126,306,79,0.012469591052902174],[126,307,64,4.892540246976863E-4],[126,307,65,9.881680303533175E-4],[126,307,66,0.0017081706823489054],[126,307,67,0.002666371330480351],[126,307,68,0.0038929817901531467],[126,307,69,0.005413564676029417],[126,307,70,0.007229776602459159],[126,307,71,0.009323135141309514],[126,307,72,0.011658993938298088],[126,307,73,0.014190248855371054],[126,307,74,0.01686077079960215],[126,307,75,0.0196085614171835],[126,307,76,0.02068234653309487],[126,307,77,0.017957988493093345],[126,307,78,0.01534822996778101],[126,307,79,0.012912689034822608],[126,308,64,-0.001814393718533447],[126,308,65,-0.0012809884493431237],[126,308,66,-5.100699121799491E-4],[126,308,67,5.146156476129674E-4],[126,308,68,0.001823131846502816],[126,308,69,0.0034413790233886548],[126,308,70,0.00537081312046672],[126,308,71,0.007592249995667371],[126,308,72,0.010069902607601908],[126,308,73,0.01275514897357239],[126,308,74,0.015590026472457828],[126,308,75,0.018510448585033767],[126,308,76,0.021449140689565736],[126,308,77,0.018688214397761617],[126,308,78,0.015895324197489256],[126,308,79,0.01327807416814644],[126,309,64,-0.004059788014864609],[126,309,65,-0.0034841492806004528],[126,309,66,-0.002655406447292671],[126,309,67,-0.0015582134082937787],[126,309,68,-1.6260791878837668E-4],[126,309,69,0.001557732266637966],[126,309,70,0.003604118959396572],[126,309,71,0.0059567030958333645],[126,309,72,0.008578582259326418],[126,309,73,0.011419637591879122],[126,309,74,0.014420095570166727],[126,309,75,0.01751381064630975],[126,309,76,0.02063126528374729],[126,309,77,0.019317465315044424],[126,309,78,0.016342213493556235],[126,309,79,0.01354434965646973],[126,310,64,-0.006182242850643686],[126,310,65,-0.005556867366071747],[126,310,66,-0.004664037604503045],[126,310,67,-0.0034893573232353766],[126,310,68,-0.0020029351583576867],[126,310,69,-1.7797493504410658E-4],[126,310,70,0.0019867324284831966],[126,310,71,0.004470711001100297],[126,310,72,0.0072359845168094685],[126,310,73,0.010230987869090158],[126,310,74,0.013394200793514832],[126,310,75,0.01665749964244184],[126,310,76,0.019949223692441988],[126,310,77,0.01981641765045223],[126,310,78,0.01666451707822909],[126,310,79,0.013692122217232703],[126,311,64,-0.008115915769280873],[126,311,65,-0.0074338472256867015],[126,311,66,-0.006471615416087298],[126,311,67,-0.005215807202222451],[126,311,68,-0.0036365896868462535],[126,311,69,-0.0017066741657935241],[126,311,70,5.750721972388836E-4],[126,311,71,0.0031875872578864717],[126,311,72,0.006091880734411174],[126,311,73,0.0092350240847457],[126,311,74,0.012553858682416319],[126,311,75,0.015978418096860902],[126,311,76,0.019435060829149465],[126,311,77,0.020158135319310093],[126,311,78,0.0168404312936793],[126,311,79,0.013704745280797993],[126,312,64,-0.009797323835625999],[126,312,65,-0.009052405165587085],[126,312,66,-0.00801662881520231],[126,312,67,-0.0066775897840121905],[126,312,68,-0.005005520205341651],[126,312,69,-0.002972653795497237],[126,312,70,-5.779220250469113E-4],[126,312,71,0.0021570705899137408],[126,312,72,0.005192398455006537],[126,312,73,0.008473884923725661],[126,312,74,0.011936885539561619],[126,312,75,0.015509780201944311],[126,312,76,0.019117170519796865],[126,312,77,0.0203192745271723],[126,312,78,0.016851663160862958],[126,312,79,0.013568983727120048],[126,313,64,-0.011168511772295147],[126,313,65,-0.01035558659050085],[126,313,66,-0.00924345181608553],[126,313,67,-0.007820728427324848],[126,313,68,-0.006057739170611015],[126,313,69,-0.003926287403563166],[126,313,70,-0.0014253706763411355],[126,313,71,0.0014229113368895174],[126,313,72,0.004577794707007634],[126,313,73,0.007984001062545062],[126,313,74,0.011575594396183468],[126,313,75,0.015279540478401943],[126,313,76,0.019018965059584517],[126,313,77,0.02028116752268715],[126,313,78,0.01668426500616189],[126,313,79,0.013275600550803584],[126,314,64,-0.012179873131234378],[126,314,65,-0.011294941354797354],[126,314,66,-0.010105057244013088],[126,314,67,-0.008599880004340183],[126,314,68,-0.006749866752328335],[126,314,69,-0.004526467025652759],[126,314,70,-0.0019287583262570934],[126,314,71,0.001020715231087302],[126,314,72,0.0042804652600072065],[126,314,73,0.007794286215540651],[126,314,74,0.011495182226398558],[126,314,75,0.015308989170554068],[126,314,76,0.019157688099840402],[126,314,77,0.020030785921960233],[126,314,78,0.01632937067617137],[126,314,79,0.01281986589111993],[126,315,64,-0.012792625680927058],[126,315,65,-0.011832958352440167],[126,315,66,-0.010565397225987509],[126,315,67,-0.008980648913635411],[126,315,68,-0.007049365081779773],[126,315,69,-0.004742742408010114],[126,315,70,-0.0020599616132107213],[126,315,71,9.760433960752086E-4],[126,315,72,0.004323188773287902],[126,315,73,0.007924540635239305],[126,315,74,0.011712306474037386],[126,315,75,0.015611513519939037],[126,315,76,0.019543370093881764],[126,315,77,0.019561584281878146],[126,315,78,0.01578383391879731],[126,315,79,0.012201988901460284],[126,316,64,-0.012980942470167508],[126,316,65,-0.01194516081503022],[126,316,66,-0.010601451909320624],[126,316,67,-0.008941579667239742],[126,316,68,-0.006936464223542815],[126,316,69,-0.004557167666616989],[126,316,70,-0.0018030024860069783],[126,316,71,0.001302767272796105],[126,316,72,0.004717604610352769],[126,316,73,0.00838406591866171],[126,316,74,0.01223384983230045],[126,316,75,0.016191523955287945],[126,316,76,0.02017792544566374],[126,316,77,0.018874224666079725],[126,316,78,0.01505076955643668],[126,316,79,0.011427472962247446],[126,317,64,-0.01273374027003162],[126,317,65,-0.011621864017010973],[126,317,66,-0.010204948093398952],[126,317,67,-0.008475829712322457],[126,317,68,-0.00640578149473638],[126,317,69,-0.003965856928142016],[126,317,70,-0.0011555282671989228],[126,317,71,0.0020016770272834002],[126,317,72,0.005462922957115597],[126,317,73,0.009170489851742816],[126,317,74,0.013055872113363483],[126,317,75,0.017043544150307465],[126,317,76,0.02105439043512093],[126,317,77,0.017977183000466326],[126,317,78,0.01413999811375804],[126,317,79,0.010507394761953087],[126,318,64,-0.01205612729312644],[126,318,65,-0.010869597274551427],[126,318,66,-0.009383749636764792],[126,318,67,-0.007592524314162187],[126,318,68,-0.005467635911777334],[126,318,69,-0.0029802506738904155],[126,318,70,-1.3002018824412898E-4],[126,318,71,0.0030593418736957175],[126,318,72,0.006544865773403069],[126,318,73,0.010268799929172602],[126,318,74,0.014162747963704939],[126,318,75,0.018151463833212436],[126,318,76,0.020843423763651555],[126,318,77,0.016887238054421633],[126,318,78,0.013068394587733668],[126,318,79,0.00945860778197811],[126,319,64,-0.010970512239664883],[126,319,65,-0.00971219226601661],[126,319,66,-0.008162921633745875],[126,319,67,-0.006317795450166227],[126,319,68,-0.004149059659058409],[126,319,69,-0.0016280946138225371],[126,319,70,0.001245267856470674],[126,319,71,0.004447220658464691],[126,319,72,0.007934837029108887],[126,319,73,0.011650584118670801],[126,319,74,0.01552648912309474],[126,319,75,0.019487953184966145],[126,319,76,0.01954278450973543],[126,319,77,0.015629843908259194],[126,319,78,0.01186014206027582],[126,319,79,0.008303870722083167],[127,-64,64,-0.001997663681203298],[127,-64,65,-0.0028208546542617123],[127,-64,66,-0.0035347070171483],[127,-64,67,-0.004141618841601891],[127,-64,68,-0.00463462650052267],[127,-64,69,-0.004995013254626882],[127,-64,70,-0.005203758169298685],[127,-64,71,-0.005243090644007246],[127,-64,72,-0.005097625284646515],[127,-64,73,-0.004755332000095737],[127,-64,74,-0.004208336475308226],[127,-64,75,-0.0034535463063750786],[127,-64,76,-0.0024930982452599846],[127,-64,77,-0.0013346221909454365],[127,-64,78,8.682222985330827E-6],[127,-64,79,0.0015181603595256765],[127,-63,64,-0.0014979424707742917],[127,-63,65,-0.0023212661212535513],[127,-63,66,-0.0030319013019796757],[127,-63,67,-0.003632563492187876],[127,-63,68,-0.004117219998241983],[127,-63,69,-0.004468241601585105],[127,-63,70,-0.004667518973056898],[127,-63,71,-0.004698027716879871],[127,-63,72,-0.004544978931434168],[127,-63,73,-0.004196803920362027],[127,-63,74,-0.0036459682471099457],[127,-63,75,-0.002889610460372977],[127,-63,76,-0.0019300009812183508],[127,-63,77,-7.748168325995143E-4],[127,-63,78,5.627718940516499E-4],[127,-63,79,0.0020642077052180157],[127,-62,64,-8.258552385091225E-4],[127,-62,65,-0.001647595113977849],[127,-62,66,-0.0023548193931544163],[127,-62,67,-0.0029501980927879204],[127,-62,68,-0.0034286637473397393],[127,-62,69,-0.0037740112897243876],[127,-62,70,-0.003969306147369866],[127,-62,71,-0.003998454034876606],[127,-62,72,-0.0038473706064635032],[127,-62,73,-0.0035049846591066365],[127,-62,74,-0.0029640701305681813],[127,-62,75,-0.002221902271141983],[127,-62,76,-0.0012807335313406824],[127,-62,77,-1.4808489756952542E-4],[127,-62,78,0.0011631513785170615],[127,-62,79,0.002634801476589515],[127,-61,64,8.854082878067431E-6],[127,-61,65,-8.099111330612248E-4],[127,-61,66,-0.0015139074662932383],[127,-61,67,-0.002105421706156863],[127,-61,68,-0.0025803753235423303],[127,-61,69,-0.0029242889545977482],[127,-61,70,-0.003121633471955114],[127,-61,71,-0.0031573995111228454],[127,-61,72,-0.0030182897446700114],[127,-61,73,-0.002693744557276535],[127,-61,74,-0.0021767964258452],[127,-61,75,-0.001464748442884646],[127,-61,76,-5.596725839404869E-4],[127,-61,77,5.312764913762226E-4],[127,-61,78,0.0017957361028338764],[127,-61,79,0.0032162024423823725],[127,-60,64,9.918898090796016E-4],[127,-60,65,1.77080024153577E-4],[127,-60,66,-5.242780970591203E-4],[127,-60,67,-0.0011137925279930698],[127,-60,68,-0.001588389904717965],[127,-60,69,-0.0019355745362767951],[127,-60,70,-0.002141414094483367],[127,-60,71,-0.0021921049020733876],[127,-60,72,-0.002075190450337197],[127,-60,73,-0.0017806135751128895],[127,-60,74,-0.0013015976625084169],[127,-60,75,-6.353523883180524E-4],[127,-60,76,2.1640034398364468E-4],[127,-60,77,0.0012470844148954447],[127,-60,78,0.0024451153881416246],[127,-60,79,0.0037939380046210455],[127,-59,64,0.002104845174083663],[127,-59,65,0.0012944714299501913],[127,-59,66,5.947233897861319E-4],[127,-59,67,4.906271938432435E-6],[127,-59,68,-4.7292518027101406E-4],[127,-59,69,-8.284657896361442E-4],[127,-59,70,-0.0010495259199545632],[127,-59,71,-0.0011235899188267475],[127,-59,72,-0.0010390645747006247],[127,-59,73,-7.863618358237258E-4],[127,-59,74,-3.588112347433516E-4],[127,-59,75,2.4660240750571825E-4],[127,-59,76,0.0010286802648107858],[127,-59,77,0.0019816338599565886],[127,-59,78,0.0030948963646584],[127,-59,79,0.004353124493306208],[127,-58,64,0.0033257654261263695],[127,-58,65,0.002519711983945678],[127,-58,66,0.0018200733562935992],[127,-58,67,0.0012272200071059237],[127,-58,68,7.421709019882496E-4],[127,-58,69,3.728914015313254E-4],[127,-58,70,1.2973327039485455E-4],[127,-58,71,2.388396767419494E-5],[127,-58,72,6.608447572838507E-5],[127,-58,73,2.655119982328228E-4],[127,-58,74,6.288320088418801E-4],[127,-58,75,0.0011594240039775492],[127,-58,76,0.0018567851575588203],[127,-58,77,0.002716115894272098],[127,-58,78,0.0037280911938178066],[127,-58,79,0.004878821214239987],[127,-57,64,0.004629832202673057],[127,-57,65,0.003827283925205415],[127,-57,66,0.0031257437676927885],[127,-57,67,0.0025266938761502396],[127,-57,68,0.0020300881660648847],[127,-57,69,0.0016414655097375],[127,-57,70,0.0013692995852248823],[127,-57,71,0.0012234546785684691],[127,-57,72,0.0012138659144234174],[127,-57,73,0.0013493833225727886],[127,-57,74,0.0016367841467327664],[127,-57,75,0.0020799576771703505],[127,-57,76,0.002679266736170368],[127,-57,77,0.003431089767602108],[127,-57,78,0.004327547281287488],[127,-57,79,0.005356416182333827],[127,-56,64,0.005987631817186739],[127,-56,65,0.005187084185607809],[127,-56,66,0.004481178738474835],[127,-56,67,0.0038724387357406127],[127,-56,68,0.003359709913849273],[127,-56,69,0.002946085670299175],[127,-56,70,0.0026381790642788696],[127,-56,71,0.0024445818732632676],[127,-56,72,0.0023745035142656045],[127,-56,73,0.0024365726993809283],[127,-56,74,0.0026378061592132046],[127,-56,75,0.002982748646037036],[127,-56,76,0.0034727882794155615],[127,-56,77,0.0041056511227533],[127,-56,78,0.004875078682420706],[127,-56,79,0.005770691804399263],[127,-55,64,0.007352056524622104],[127,-55,65,0.006552112889811835],[127,-55,66,0.0058396299400556295],[127,-55,67,0.005218067951426399],[127,-55,68,0.004685161395097173],[127,-55,69,0.004241617869908488],[127,-55,70,0.003892262630692273],[127,-55,71,0.003644498861749732],[127,-55,72,0.0035069041227906335],[127,-55,73,0.0034879882912758112],[127,-55,74,0.003595117260845997],[127,-55,75,0.0038336065369328318],[127,-55,76,0.004205988724894258],[127,-55,77,0.004711458735344525],[127,-55,78,0.005345500338243843],[127,-55,79,0.006099697484506001],[127,-54,64,0.008675091170090242],[127,-54,65,0.007874813798773039],[127,-54,66,0.007154112550214284],[127,-54,67,0.006517286644334895],[127,-54,68,0.005961016538825833],[127,-54,69,0.005483761395395121],[127,-54,70,0.005088681894545212],[127,-54,71,0.004782102117486825],[127,-54,72,0.004572065641207362],[127,-54,73,0.004467051633908379],[127,-54,74,0.004474855130745385],[127,-54,75,0.004601635554272763],[127,-54,76,0.004851137401571102],[127,-54,77,0.005224086852931512],[127,-54,78,0.005717767867642755],[127,-54,79,0.00632578112357669],[127,-53,64,0.009917743582994815],[127,-53,65,0.009116620642753523],[127,-53,66,0.008386627563575423],[127,-53,67,0.007732807545473923],[127,-53,68,0.0071508965057814474],[127,-53,69,0.0066373121799385],[127,-53,70,0.006193718976099559],[127,-53,71,0.005825493873059637],[127,-53,72,0.0055402471463553635],[127,-53,73,0.0053465012484819946],[127,-53,74,0.005252531934029848],[127,-53,75,0.005265375607883061],[127,-53,76,0.005390006735420161],[127,-53,77,0.005628688990093084],[127,-53,78,0.00598050362825033],[127,-53,79,0.006441058376281979],[127,-52,64,0.011050246203701503],[127,-52,65,0.010248163359592898],[127,-52,66,0.009508368464349019],[127,-52,67,0.008836555184898339],[127,-52,68,0.00822766852313747],[127,-52,69,0.00767635242770525],[127,-52,70,0.007182982185147347],[127,-52,71,0.006752138384223097],[127,-52,72,0.006391099690651065],[127,-52,73,0.006108491514806303],[127,-52,74,0.005913094562181969],[127,-52,75,0.0058128171463785235],[127,-52,76,0.005813835008248898],[127,-52,77,0.0059199022247496645],[127,-52,78,0.006131836609393949],[127,-52,79,0.006447182805600406],[127,-51,64,0.010593030755428624],[127,-51,65,0.011249541511769587],[127,-51,66,0.010499995233074273],[127,-51,67,0.009809937129240286],[127,-51,68,0.009173711192978475],[127,-51,69,0.008584506058834445],[127,-51,70,0.008041646955936389],[127,-51,71,0.007549083101235086],[127,-51,72,0.007113861970296911],[127,-51,73,0.006744756744995959],[127,-51,74,0.006451050813492426],[127,-51,75,0.006241483090134701],[127,-51,76,0.006123357789664477],[127,-51,77,0.006101822133434476],[127,-51,78,0.00617931528758335],[127,-51,79,0.006355191636832188],[127,-50,64,0.00970039400384669],[127,-50,65,0.010559145549147733],[127,-50,66,0.01135201635319571],[127,-50,67,0.010644221419404075],[127,-50,68,0.009981283871773085],[127,-50,69,0.009355295946021816],[127,-50,70,0.008764796311975517],[127,-50,71,0.008213277277476899],[127,-50,72,0.0077076516414304845],[127,-50,73,0.007256869535006411],[127,-50,74,0.0068706889977268835],[127,-50,75,0.006558603929360888],[127,-50,76,0.006328932927953111],[127,-50,77,0.006188072370959009],[127,-50,78,0.006139916922608805],[127,-50,79,0.006185450458802447],[127,-49,64,0.008958139111898293],[127,-49,65,0.009813851185181592],[127,-49,66,0.010633452170351922],[127,-49,67,0.011336341148649709],[127,-49,68,0.010648924331681948],[127,-49,69,0.009989148396347592],[127,-49,70,0.009355033696728392],[127,-49,71,0.00874978154925629],[127,-49,72,0.008180246710379632],[127,-49,73,0.007655556108481449],[127,-49,74,0.007185877431915814],[127,-49,75,0.006781341070877007],[127,-49,76,0.0064511187827162985],[127,-49,77,0.006202662300262967],[127,-49,78,0.006041104932887483],[127,-49,79,0.005968829022923293],[127,-48,64,0.00838705778347897],[127,-48,65,0.00923566416880934],[127,-48,66,0.010056335613796005],[127,-48,67,0.010841679363843584],[127,-48,68,0.01116851110007543],[127,-48,69,0.010481975357630307],[127,-48,70,0.00981257866421109],[127,-48,71,0.009163337714807726],[127,-48,72,0.008541056791335808],[127,-48,73,0.007954964605556612],[127,-48,74,0.007415496221995648],[127,-48,75,0.006933223391567721],[127,-48,76,0.006517936501213136],[127,-48,77,0.006177881198472267],[127,-48,78,0.005919152584696229],[127,-48,79,0.005745249688889501],[127,-47,64,0.008003830093340467],[127,-47,65,0.008838757484183982],[127,-47,66,0.009652951149873383],[127,-47,67,0.010438873163515702],[127,-47,68,0.011202385244395914],[127,-47,69,0.010832851420846256],[127,-47,70,0.010140451494008858],[127,-47,71,0.009461054550939447],[127,-47,72,0.008801353768292804],[127,-47,73,0.008170533860728866],[127,-47,74,0.007579084546545896],[127,-47,75,0.007037756228177266],[127,-47,76,0.0065566608994216255],[127,-47,77,0.006144521149408979],[127,-47,78,0.005808069973701534],[127,-47,79,0.005551603927868855],[127,-46,64,0.007815674124626209],[127,-46,65,0.00862845484488173],[127,-46,66,0.009426463278908283],[127,-46,67,0.010202153261823338],[127,-46,68,0.010960999935726072],[127,-46,69,0.011046447078000409],[127,-46,70,0.01034625972502047],[127,-46,71,0.009653553931532366],[127,-46,72,0.008974797147263031],[127,-46,73,0.008318930590949613],[127,-46,74,0.00769623431314179],[127,-46,75,0.007117326784090762],[127,-46,76,0.006592301793403704],[127,-46,77,0.006130005312012319],[127,-46,78,0.005737454814468925],[127,-46,79,0.005419403392805348],[127,-45,64,0.007821372633938263],[127,-45,65,0.008602206645140883],[127,-45,66,0.009372800911759568],[127,-45,67,0.010125748212576878],[127,-45,68,0.010866022718658046],[127,-45,69,0.011132315789204204],[127,-45,70,0.010441565603935722],[127,-45,71,0.009754422689718148],[127,-45,72,0.009076972878029745],[127,-45,73,0.008417676059788244],[127,-45,74,0.007786303794144454],[127,-45,75,0.007193002100682132],[127,-45,76,0.006647481964583984],[127,-45,77,0.006158339955496308],[127,-45,78,0.005732511217138671],[127,-45,79,0.005374856928176106],[127,-44,64,0.008012275639786367],[127,-44,65,0.008750543289128922],[127,-44,66,0.009481555818852249],[127,-44,67,0.010198198342031705],[127,-44,68,0.010904863409276572],[127,-44,69,0.0111041974768023],[127,-44,70,0.010441268686091265],[127,-44,71,0.009779678769972114],[127,-44,72,0.009124946133535674],[127,-44,73,0.008484786990991505],[127,-44,74,0.007868146497520332],[127,-44,75,0.007284343989273328],[127,-44,76,0.006742334573902802],[127,-44,77,0.006250089194333221],[127,-44,78,0.005814095155689307],[127,-44,79,0.005438978961232188],[127,-43,64,0.00837328202147403],[127,-43,65,0.00905800881321787],[127,-43,66,0.00973686262388694],[127,-43,67,0.010403176117476322],[127,-43,68,0.01106071365632415],[127,-43,69,0.0109793363389248],[127,-43,70,0.010363001705340685],[127,-43,71,0.00974725001118703],[127,-43,72,0.009136826606617677],[127,-43,73,0.00853842949781297],[127,-43,74,0.007959854227659475],[127,-43,75,0.007409240043495589],[127,-43,76,0.006894419280607964],[127,-43,77,0.006422371781708479],[127,-43,78,0.005998786052959923],[127,-43,79,0.005627728727892884],[127,-42,64,0.00888380321616428],[127,-42,65,0.009504077719253016],[127,-42,66,0.010118263077739732],[127,-42,67,0.010720291969915825],[127,-42,68,0.01131328804872327],[127,-42,69,0.010777810874128383],[127,-42,70,0.010226537833892463],[127,-42,71,0.00967646391401231],[127,-42,72,0.009131344907067117],[127,-42,73,0.008596584832091796],[127,-42,74,0.008078513346375236],[127,-42,75,0.0075837499278064895],[127,-42,76,0.00711865642106243],[127,-42,77,0.006688879445919335],[127,-42,78,0.0062989840617944815],[127,-42,79,0.005952179970698143],[127,-41,64,0.009518712092683365],[127,-41,65,0.010064057930417336],[127,-41,66,0.010601557343176263],[127,-41,67,0.011125888106164857],[127,-41,68,0.01099293819556591],[127,-41,69,0.0105218740149448],[127,-41,70,0.010053207463484702],[127,-41,71,0.00958754676323524],[127,-41,72,0.009127438669681381],[127,-41,73,0.008676725798204587],[127,-41,74,0.008239973302151296],[127,-41,75,0.007821966215708189],[127,-41,76,0.007427278703595961],[127,-41,77,0.007059916380336649],[127,-41,78,0.006723032775558379],[127,-41,79,0.006418720929637885],[127,-40,64,0.010249280061363652],[127,-40,65,0.010709982765326554],[127,-40,66,0.01115964500708335],[127,-40,67,0.010995494272517576],[127,-40,68,0.010611314546637213],[127,-40,69,0.010235301281349177],[127,-40,70,0.009865322655912752],[127,-40,71,0.009501130498836049],[127,-40,72,0.009143847016100654],[127,-40,73,0.008795502721651643],[127,-40,74,0.008458626556118684],[127,-40,75,0.008135889130593136],[127,-40,76,0.00782979997676329],[127,-40,77,0.007542459623537189],[127,-40,78,0.007275367254246978],[127,-40,79,0.007029284628518021],[127,-39,64,0.01104410544963558],[127,-39,65,0.011103590780273077],[127,-39,66,0.010788302892969007],[127,-39,67,0.010491082828924286],[127,-39,68,0.010210454367683473],[127,-39,69,0.009942744885576029],[127,-39,70,0.009685607433950935],[127,-39,71,0.009437765757660237],[127,-39,72,0.009198712049825055],[127,-39,73,0.008968437910118669],[127,-39,74,0.008747199096051796],[127,-39,75,0.008535314622862401],[127,-39,76,0.008333000730019963],[127,-39,77,0.008140240191542778],[127,-39,78,0.00795668740381888],[127,-39,79,0.007781609639006402],[127,-38,64,0.010613622557314423],[127,-38,65,0.010382736335177516],[127,-38,66,0.010172069683720338],[127,-38,67,0.009983959465746432],[127,-38,68,0.009817297217439552],[127,-38,69,0.009669091747487464],[127,-38,70,0.009536632113214843],[127,-38,71,0.009417439541473425],[127,-38,72,0.009309186104869686],[127,-38,73,0.009209627596288168],[127,-38,74,0.009116550794686049],[127,-38,75,0.00902773529872994],[127,-38,76,0.008940930087379803],[127,-38,77,0.008853844948233117],[127,-38,78,0.008764156895563726],[127,-38,79,0.00866953168080237],[127,-37,64,0.009799551229556192],[127,-37,65,0.00967362333930483],[127,-37,66,0.00957439485128794],[127,-37,67,0.009503037871488056],[127,-37,68,0.009458670975345551],[127,-37,69,0.009438823415041037],[127,-37,70,0.00944024991166203],[127,-37,71,0.009459096006607257],[127,-37,72,0.009491043514082597],[127,-37,73,0.009531450406420125],[127,-37,74,0.009575484935740558],[127,-37,75,0.009618253798689073],[127,-37,76,0.009654924155696076],[127,-37,77,0.009680839322412593],[127,-37,78,0.009691627958590545],[127,-37,79,0.009683306588670284],[127,-36,64,0.009025161741682936],[127,-36,65,0.009008481899799494],[127,-36,66,0.00902564855095964],[127,-36,67,0.009076621526246097],[127,-36,68,0.009160582474585037],[127,-36,69,0.009275375927468998],[127,-36,70,0.009417034116343108],[127,-36,71,0.00958015891553651],[127,-36,72,0.009758295713222585],[127,-36,73,0.009944281456697901],[127,-36,74,0.010130566299998964],[127,-36,75,0.01030950830668654],[127,-36,76,0.010473640689395169],[127,-36,77,0.010615911100156156],[127,-36,78,0.010729892521197824],[127,-36,79,0.010809965344517803],[127,-35,64,0.008323297195946154],[127,-35,65,0.008418420427899174],[127,-35,66,0.008554955430869902],[127,-35,67,0.008731630007146145],[127,-35,68,0.00894750571147519],[127,-35,69,0.009200497709735144],[127,-35,70,0.00948571413682127],[127,-35,71,0.00979605434162018],[127,-35,72,0.010122808551473938],[127,-35,73,0.01045621124045857],[127,-35,74,0.010785947274473141],[127,-35,75,0.011101609954317974],[127,-35,76,0.011393110132351345],[127,-35,77,0.011191780911203817],[127,-35,78,0.010993549344073844],[127,-35,79,0.010843471393542605],[127,-34,64,0.007724858087308053],[127,-34,65,0.007932540887591995],[127,-34,66,0.008189360157279807],[127,-34,67,0.008492820407838187],[127,-34,68,0.008841665564328794],[127,-34,69,0.00923360364585816],[127,-34,70,0.00966260883151495],[127,-34,71,0.01011973227497969],[127,-34,72,0.010593920738179654],[127,-34,73,0.011072768533629481],[127,-34,74,0.011240976678701003],[127,-34,75,0.010811140203746374],[127,-34,76,0.010414435757237387],[127,-34,77,0.010062538166744775],[127,-34,78,0.009765758736541407],[127,-34,79,0.00953271705132726],[127,-33,64,0.00725786570591656],[127,-33,65,0.007577046060326501],[127,-33,66,0.007952985393263227],[127,-33,67,0.008382001691433431],[127,-33,68,0.008862315026896685],[127,-33,69,0.009391123545944163],[127,-33,70,0.009961055557206569],[127,-33,71,0.010561185840139427],[127,-33,72,0.01117806241919651],[127,-33,73,0.010972707801067993],[127,-33,74,0.010386552812932525],[127,-33,75,0.009829154483789543],[127,-33,76,0.009315562807838863],[127,-33,77,0.008859553144153596],[127,-33,78,0.008473141011934991],[127,-33,79,0.00816619125651164],[127,-32,64,0.006946514813179803],[127,-32,65,0.007374336432218431],[127,-32,66,0.007866179978677453],[127,-32,67,0.008417239884098088],[127,-32,68,0.009025004042852341],[127,-32,69,0.009685843297437689],[127,-32,70,0.01039083346324346],[127,-32,71,0.011126966904707061],[127,-32,72,0.010881392345643818],[127,-32,73,0.010150030930816465],[127,-32,74,0.009438313316304316],[127,-32,75,0.008764447568709087],[127,-32,76,0.008145703916931002],[127,-32,77,0.007597741822850063],[127,-32,78,0.007134050872197784],[127,-32,79,0.006765506568485659],[127,-31,64,0.006810213199561609],[127,-31,65,0.007342094423355007],[127,-31,66,0.007944655164971738],[127,-31,67,0.008612052114734576],[127,-31,68,0.009340838118682247],[127,-31,69,0.010126237075332391],[127,-31,70,0.010957579630642636],[127,-31,71,0.010935619451745936],[127,-31,72,0.010078060107117993],[127,-31,73,0.009227027267420855],[127,-31,74,0.008403310447060571],[127,-31,75,0.007627371069271982],[127,-31,76,0.0069184562621638695],[127,-31,77,0.006293844446400279],[127,-31,78,0.005768224066649738],[127,-31,79,0.005353206625514983],[127,-30,64,0.006862605865754309],[127,-30,65,0.00749235380396084],[127,-30,66,0.008198606875415012],[127,-30,67,0.008974587615005218],[127,-30,68,0.009815724993005474],[127,-30,69,0.01071578907906236],[127,-30,70,0.011093706526075102],[127,-30,71,0.010134786073877583],[127,-30,72,0.00916643082789579],[127,-30,73,0.008211087328263056],[127,-30,74,0.007291769324955728],[127,-30,75,0.006430938349559091],[127,-30,76,0.005649532368996323],[127,-30,77,0.0049661441551892916],[127,-30,78,0.004396350789235577],[127,-30,79,0.003952195496084939],[127,-29,64,0.007110581715193511],[127,-29,65,0.007830552279600798],[127,-29,66,0.00863182208993427],[127,-29,67,0.009506793913602981],[127,-29,68,0.01044960775096188],[127,-29,69,0.011309108188312447],[127,-29,70,0.010277043644366844],[127,-29,71,0.009218222478657959],[127,-29,72,0.00815550690308095],[127,-29,73,0.007113508392354967],[127,-29,74,0.006117220808560321],[127,-29,75,0.005190816064268845],[127,-29,76,0.004356604246863042],[127,-29,77,0.0036341598931549503],[127,-29,78,0.003039615860259666],[127,-29,79,0.002585125988500244],[127,-28,64,0.0075532608052011315],[127,-28,65,0.008354565377490205],[127,-28,66,0.009240767594174365],[127,-28,67,0.010203566589360702],[127,-28,68,0.011235682893071293],[127,-28,69,0.01045986508072389],[127,-28,70,0.009339949597707129],[127,-28,71,0.008198048339903655],[127,-28,72,0.0070591323110564316],[127,-28,73,0.00594975972634194],[127,-28,74,0.004896628025992174],[127,-28,75,0.003925303167316729],[127,-28,76,0.0030591281602409016],[127,-28,77,0.0023183125517496498],[127,-28,78,0.001719204295408845],[127,-28,79,0.0012737451663315585],[127,-27,64,0.008180960376621695],[127,-27,65,0.009053719928603812],[127,-27,66,0.01001365948484903],[127,-27,67,0.011051881089731715],[127,-27,68,0.010641937332475683],[127,-27,69,0.00949047782958858],[127,-27,70,0.008299329969997481],[127,-27,71,0.0070923354442048395],[127,-27,72,0.0058963902401585975],[127,-27,73,0.0047397471643585015],[127,-27,74,0.0036505064925093675],[127,-27,75,0.0026552969918640394],[127,-27,76,0.0017781492851660537],[127,-27,77,0.001039563241892286],[127,-27,78,4.5577078921431617E-4],[127,-27,79,3.819523588721104E-5],[127,-26,64,0.008974138067909565],[127,-26,65,0.009907785615876347],[127,-26,66,0.010929511988198175],[127,-26,67,0.01079066975289045],[127,-26,68,0.009635194068408898],[127,-26,69,0.008424407303341567],[127,-26,70,0.007179299158310284],[127,-26,71,0.00592563472959564],[127,-26,72,0.004692005471153629],[127,-26,73,0.003508077201358297],[127,-26,74,0.0024030376713876245],[127,-26,75,0.0014042459314334615],[127,-26,76,5.360854357535946E-4],[127,-26,77,-1.809774791285149E-4],[127,-26,78,-7.311284239239208E-4],[127,-26,79,-0.001103732094865728],[127,-25,64,0.009902429642486584],[127,-25,65,0.010886060410304599],[127,-25,66,0.010886742593551792],[127,-25,67,0.009750674743640001],[127,-25,68,0.008547542502797737],[127,-25,69,0.007293594303955188],[127,-25,70,0.0060117397868769875],[127,-25,71,0.00472943705378768],[127,-25,72,0.0034766964091428416],[127,-25,73,0.002284291011248521],[127,-25,74,0.001182176938088216],[127,-25,75,1.9812486750121536E-4],[127,-25,76,-6.434347443391988E-4],[127,-25,77,-0.001322351429326283],[127,-25,78,-0.0018234781966452909],[127,-25,79,-0.002137177861639524],[127,-24,64,0.010930717085249684],[127,-24,65,0.010918313303910002],[127,-24,66,0.009822374390203259],[127,-24,67,0.008649887765478178],[127,-24,68,0.007414018286579831],[127,-24,69,0.006132921226583896],[127,-24,70,0.004831194678927472],[127,-24,71,0.00353771273420961],[127,-24,72,0.002283598745782673],[127,-24,73,0.0011004138613004675],[127,-24,74,1.856328049371976E-5],[127,-24,75,-9.340776224062822E-4],[127,-24,76,-0.0017333155083796533],[127,-24,77,-0.002359568157610722],[127,-24,78,-0.0027985693219737895],[127,-24,79,-0.003041848595297258],[127,-23,64,0.010874114174672688],[127,-23,65,0.009835199075776884],[127,-23,66,0.008712556645851941],[127,-23,67,0.0075170017851197675],[127,-23,68,0.006263001768407198],[127,-23,69,0.0049704605080177905],[127,-23,70,0.0036654401929072876],[127,-23,71,0.0023779587820353483],[127,-23,72,0.0011399498670968651],[127,-23,73,-1.6555388264234186E-5],[127,-23,74,-0.0010610218404732603],[127,-23,75,-0.001965777436439776],[127,-23,76,-0.0027071520615517875],[127,-23,77,-0.0032663868256884985],[127,-23,78,-0.003630312814600012],[127,-23,79,-0.0037917987027281854],[127,-22,64,0.009780137862954353],[127,-22,65,0.008721388623227617],[127,-22,66,0.0075833364059402705],[127,-22,67,0.0063772819519634484],[127,-22,68,0.005118927415454752],[127,-22,69,0.0038297867564660976],[127,-22,70,0.0025371804161910777],[127,-22,71,0.0012720151589992394],[127,-22,72,6.674740344282035E-5],[127,-22,73,-0.0010464260784158138],[127,-22,74,-0.0020371477927767913],[127,-22,75,-0.002878247541308876],[127,-22,76,-0.0035468572446700018],[127,-22,77,-0.004025291367968592],[127,-22,78,-0.004301692123034722],[127,-22,79,-0.004370439002162912],[127,-21,64,0.008671995937872379],[127,-21,65,0.007602343546190216],[127,-21,66,0.006458962464940004],[127,-21,67,0.005253648603272408],[127,-21,68,0.004003283994556476],[127,-21,69,0.002730877383438282],[127,-21,70,0.0014648275193237402],[127,-21,71,2.3670210453312476E-4],[127,-21,72,-9.207795585314822E-4],[127,-21,73,-0.001975532680714451],[127,-21,74,-0.0028976596718395444],[127,-21,75,-0.0036607675790060537],[127,-21,76,-0.004243048836434221],[127,-21,77,-0.004628124271728621],[127,-21,78,-0.004805647702570126],[127,-21,79,-0.004771671846215309],[127,-20,64,0.007576236778654322],[127,-20,65,0.006503016680898322],[127,-20,66,0.005362624605545823],[127,-20,67,0.004167353585109101],[127,-20,68,0.0029352233467166223],[127,-20,69,0.0016906506681035214],[127,-20,70,4.62967505566697E-4],[127,-20,71,-7.157864413445909E-4],[127,-20,72,-0.001812847827149214],[127,-20,73,-0.0027964798884925596],[127,-20,74,-0.0036374867444757177],[127,-20,75,-0.004310490090400568],[127,-20,76,-0.004794966995114835],[127,-20,77,-0.005076047907009557],[127,-20,78,-0.005145074370553287],[127,-20,79,-0.004999916349937234],[127,-19,64,0.00652024910074304],[127,-19,65,0.005448655058543762],[127,-19,66,0.0043171982944330166],[127,-19,67,0.003138660331316052],[127,-19,68,0.001932171094460507],[127,-19,69,7.235037915666371E-4],[127,-19,70,-4.5717616879971065E-4],[127,-19,71,-0.0015774937690280788],[127,-19,72,-0.0026048041430550956],[127,-19,73,-0.003507896810675576],[127,-19,74,-0.004258462469566805],[127,-19,75,-0.004832320818344215],[127,-19,76,-0.005210408281495068],[127,-19,77,-0.005379524909115983],[127,-19,78,-0.005332840127082714],[127,-19,79,-0.005070157412450977],[127,-18,64,0.005533125478908844],[127,-18,65,0.004465611380142753],[127,-18,66,0.0033459962428749527],[127,-18,67,0.0021875290864087744],[127,-18,68,0.0010104406400456235],[127,-18,69,-1.5814783321292094E-4],[127,-18,70,-0.0012872798134607884],[127,-18,71,-0.0023443144325040258],[127,-18,72,-0.0032968146906603188],[127,-18,73,-0.004114199096392807],[127,-18,74,-0.004769154963181517],[127,-18,75,-0.005238811995937773],[127,-18,76,-0.005505675204110665],[127,-18,77,-0.0055583165867178035],[127,-18,78,-0.005391825441878107],[127,-18,79,-0.005008017555830854],[127,-17,64,0.004635199256877536],[127,-17,65,0.0035718918685795254],[127,-17,66,0.00246449642729111],[127,-17,67,0.0013266972550668697],[127,-17,68,1.7982878202542924E-4],[127,-17,69,-9.476158503236673E-4],[127,-17,70,-0.0020238884112343224],[127,-17,71,-0.003016101413265475],[127,-17,72,-0.003892060595983568],[127,-17,73,-0.00462186009057185],[127,-17,74,-0.005179238654618819],[127,-17,75,-0.005542695772147892],[127,-17,76,-0.005696366825398744],[127,-17,77,-0.005630656958231292],[127,-17,78,-0.0053426336622714446],[127,-17,79,-0.00483617852181454],[127,-16,64,0.003807461571554902],[127,-16,65,0.0027497808876037013],[127,-16,66,0.0016566627549474782],[127,-16,67,5.421856721191366E-4],[127,-16,68,-5.712369192360984E-4],[127,-16,69,-0.0016537571091287163],[127,-16,70,-0.0026728890900021003],[127,-16,71,-0.0035955828287690763],[127,-16,72,-0.004389993125166276],[127,-16,73,-0.005027011224467562],[127,-16,74,-0.005481557536352403],[127,-16,75,-0.005733634424151736],[127,-16,76,-0.005769138445462655],[127,-16,77,-0.0055804318424493154],[127,-16,78,-0.005166673493970672],[127,-16,79,-0.004533909947725752],[127,-15,64,0.003029982908704698],[127,-15,65,0.001981143524345051],[127,-15,66,9.065372473120743E-4],[127,-15,67,-1.7942228021795959E-4],[127,-15,68,-0.0012533065564029236],[127,-15,69,-0.002283984028779355],[127,-15,70,-0.003238352797355554],[127,-15,71,-0.004083360731190745],[127,-15,72,-0.004787699404725596],[127,-15,73,-0.005323261474866922],[127,-15,74,-0.005666360223979318],[127,-15,75,-0.005798710410992028],[127,-15,76,-0.005708169992864983],[127,-15,77,-0.00538924269786642],[127,-15,78,-0.004843341846413469],[127,-15,79,-0.004078816220332657],[127,-14,64,0.002292060011190547],[127,-14,65,0.0012565651130942842],[127,-14,66,2.0620887851195742E-4],[127,-14,67,-8.443453188494878E-4],[127,-14,68,-0.0018707570203360423],[127,-14,69,-0.002840728609550535],[127,-14,70,-0.0037207160718325067],[127,-14,71,-0.0044778812353696695],[127,-14,72,-0.005081696220859499],[127,-14,73,-0.005505313547563962],[127,-14,74,-0.005726700806469847],[127,-14,75,-0.005729539230286357],[127,-14,76,-0.005503885910605593],[127,-14,77,-0.005046599830910601],[127,-14,78,-0.004361532296156056],[127,-14,79,-0.003459482741091896],[127,-13,64,0.0015902403364650847],[127,-13,65,5.734334395097263E-4],[127,-13,66,-4.460212626897202E-4],[127,-13,67,-0.0014533277572108905],[127,-13,68,-0.002423374150699526],[127,-13,69,-0.0033228530710712784],[127,-13,70,-0.004117991041143159],[127,-13,71,-0.004776416821763079],[127,-13,72,-0.005268660521480487],[127,-13,73,-0.005569422145713713],[127,-13,74,-0.005658608693755144],[127,-13,75,-0.005522139329726799],[127,-13,76,-0.005152518571508771],[127,-13,77,-0.004549177855922914],[127,-13,78,-0.0037185862450029284],[127,-13,79,-0.0026741314327784903],[127,-12,64,9.265156845621126E-4],[127,-12,65,-6.581229289734823E-5],[127,-12,66,-0.0010473119315700021],[127,-12,67,-0.002003205813445761],[127,-12,68,-0.0029077854043269135],[127,-12,69,-0.00372692082140472],[127,-12,70,-0.004426847684568831],[127,-12,71,-0.004975934902605433],[127,-12,72,-0.0053460621289132355],[127,-12,73,-0.00551377217105857],[127,-12,74,-0.005461197670859092],[127,-12,75,-0.005176761784570704],[127,-12,76,-0.004655653004328758],[127,-12,77,-0.0039000746685195413],[127,-12,78,-0.0029192701062232184],[127,-12,79,-0.0017293247450965716],[127,-11,64,3.0668521439445706E-4],[127,-11,65,-6.552655527636771E-4],[127,-11,66,-0.0015917906359382895],[127,-11,67,-0.0024883165408270008],[127,-11,68,-0.0033187428048493924],[127,-11,69,-0.004048327439973057],[127,-11,70,-0.004643567928142305],[127,-11,71,-0.005073852071200485],[127,-11,72,-0.005312697900723593],[127,-11,73,-0.005338775880673186],[127,-11,74,-0.005136712936330657],[127,-11,75,-0.004697678247033396],[127,-11,76,-0.004019751141547856],[127,-11,77,-0.0031080718298170454],[127,-11,78,-0.001974776089385695],[127,-11,79,-6.387153949509405E-4],[127,-10,64,-2.6111124687546675E-4],[127,-10,65,-0.0011869687730549753],[127,-10,66,-0.0020718986717882565],[127,-10,67,-0.0029017485698574793],[127,-10,68,-0.0036502553540198705],[127,-10,69,-0.004282290822588763],[127,-10,70,-0.004764870663998347],[127,-10,71,-0.005068673043254347],[127,-10,72,-0.005169126239251103],[127,-10,73,-0.005047287766041387],[127,-10,74,-0.004690514733727857],[127,-10,75,-0.004092925595760644],[127,-10,76,-0.0032556538163998994],[127,-10,77,-0.0021868943713746493],[127,-10,78,-9.017443625279383E-4],[127,-10,79,5.781606204722234E-4],[127,-9,64,-7.676880511732918E-4],[127,-9,65,-0.001652160358543239],[127,-9,66,-0.0024795708509055916],[127,-9,67,-0.0032364332672320207],[127,-9,68,-0.0038965695381057933],[127,-9,69,-0.0044246991360587734],[127,-9,70,-0.004788606339658992],[127,-9,71,-0.004960512917140556],[127,-9,72,-0.004918000539715466],[127,-9,73,-0.004644735688653747],[127,-9,74,-0.0041309970359896505],[127,-9,75,-0.0033740056527164965],[127,-9,76,-0.002378058766867857],[127,-9,77,-0.0011544681535229845],[127,-9,78,2.78695414145153E-4],[127,-9,79,0.0018970498929344163],[127,-8,64,-0.0012039345837970919],[127,-8,65,-0.0020423503339363877],[127,-8,66,-0.002807247916164338],[127,-8,67,-0.003486074374432527],[127,-8,68,-0.004052996055525914],[127,-8,69,-0.004472814766576325],[127,-8,70,-0.004714319352291235],[127,-8,71,-0.004751501029924037],[127,-8,72,-0.004564299884813029],[127,-8,73,-0.004139166599014421],[127,-8,74,-0.003469439615353513],[127,-8,75,-0.0025555382920172147],[127,-8,76,-0.0014049729489071523],[127,-8,77,-3.217304310698012E-5],[127,-8,78,0.0015418649664973867],[127,-8,79,0.0032901081997700537],[127,-7,64,-0.0015617594257106913],[127,-7,65,-0.002350222019461524],[127,-7,66,-0.0030487191189494177],[127,-7,67,-0.00364591369229631],[127,-7,68,-0.004116580428508101],[127,-7,69,-0.004425832024092731],[127,-7,70,-0.004543676110531089],[127,-7,71,-0.004446064370895647],[127,-7,72,-0.004115455043152185],[127,-7,73,-0.003541204986172871],[127,-7,74,-0.002719791727764608],[127,-7,75,-0.0016548662417034286],[127,-7,76,-3.571375206400525E-4],[127,-7,77,0.0011559096792639165],[127,-7,78,0.002860462251272059],[127,-7,79,0.004726989360581688],[127,-6,64,-0.0018348546306294952],[127,-6,65,-0.002570356635813075],[127,-6,66,-0.0031997919639660554],[127,-6,67,-0.003713329931640436],[127,-6,68,-0.004086614745937446],[127,-6,69,-0.004285285987802096],[127,-6,70,-0.004280756295731568],[127,-6,71,-0.0040510882373478415],[127,-6,72,-0.003581367612355444],[127,-6,73,-0.0028639220548620095],[127,-6,74,-0.001898385562203078],[127,-6,75,-6.916098763822496E-4],[127,-6,76,7.42576065571598E-4],[127,-6,77,0.0023837571174626375],[127,-6,78,0.004205471587235913],[127,-6,79,0.006175897572861221],[127,-5,64,-0.0020192764889399883],[127,-5,65,-0.0026997773137207265],[127,-5,66,-0.00325878571409879],[127,-5,67,-0.003688267458247271],[127,-5,68,-0.003964987420845805],[127,-5,69,-0.004055309549615285],[127,-5,70,-0.003932204568990121],[127,-5,71,-0.0035759515815170376],[127,-5,72,-0.0029743199679309433],[127,-5,73,-0.0021226135093211896],[127,-5,74,-0.001023577553829184],[127,-5,75,3.1282968263574164E-4],[127,-5,76,0.0018698003347106425],[127,-5,77,0.003624173032689582],[127,-5,78,0.00554706015187911],[127,-5,79,0.00760460413114005],[127,-4,64,-0.0021138387800031227],[127,-4,65,-0.002738308619611545],[127,-4,66,-0.003226844896495035],[127,-4,67,-0.0035734913275923823],[127,-4,68,-0.0037563675383278424],[127,-4,69,-0.003742735436942482],[127,-4,70,-0.0035072397336192436],[127,-4,71,-0.00303243430623216],[127,-4,72,-0.0023087735388655356],[127,-4,73,-0.0013344837392226926],[127,-4,74,-1.1531563711612288E-4],[127,-4,75,0.0013358208013660288],[127,-4,76,0.0029993377872231065],[127,-4,77,0.004849565682983479],[127,-4,78,0.006855461677158491],[127,-4,79,0.008981429120617163],[127,-3,64,-0.002120314212965337],[127,-3,65,-0.0026887474126758067],[127,-3,66,-0.0031080687652966085],[127,-3,67,-0.003374664735088378],[127,-3,68,-0.0034682201223022115],[127,-3,69,-0.003357039777221656],[127,-3,70,-0.0030175181784912945],[127,-3,71,-0.0024344936231098014],[127,-3,72,-0.0016010528331552448],[127,-3,73,-5.182341561672065E-4],[127,-3,74,8.053694769418196E-4],[127,-3,75,0.0023541064769685275],[127,-3,76,0.004105859860052056],[127,-3,77,0.006032736133148791],[127,-3,78,0.0081018479272718],[127,-3,79,0.010276188364180898],[127,-2,64,-0.0020434395287349315],[127,-2,65,-0.0025568406249192334],[127,-2,66,-0.0029094524611367953],[127,-2,67,-0.003100244805874885],[127,-2,68,-0.003110648466799506],[127,-2,69,-0.0029101236084793604],[127,-2,70,-0.0024768482996393023],[127,-2,71,-0.001797906494461864],[127,-2,72,-8.689125840631945E-4],[127,-2,73,3.064465786215623E-4],[127,-2,74,0.0017169508750093086],[127,-2,75,0.0033444658752893723],[127,-2,76,0.005164639941898282],[127,-2,77,0.0071476777391168474],[127,-2,78,0.00925918828666393],[127,-2,79,0.011461105592412467],[127,-1,64,-0.00189071958727191],[127,-1,65,-0.0023510654094168596],[127,-1,66,-0.0026406354674649913],[127,-1,67,-0.0027611925189431822],[127,-1,68,-0.0026960595637658138],[127,-1,69,-0.0024159286469237766],[127,-1,70,-0.0019007525294230557],[127,-1,71,-0.0011397751418292573],[127,-1,72,-1.3098538373092276E-4],[127,-1,73,0.0011194926610360758],[127,-1,74,0.0025980716675440053],[127,-1,75,0.0042844336273772975],[127,-1,76,0.006152321369623285],[127,-1,77,0.008170387299466847],[127,-1,78,0.010303097527869839],[127,-1,79,0.011420090352691268],[127,0,64,-0.0016720256998613845],[127,0,65,-0.0020822070379747557],[127,0,66,-0.002313452903837214],[127,0,67,-0.0023704925083556775],[127,0,68,-0.0022386486192074576],[127,0,69,-0.0018898835983469024],[127,0,70,-0.0013058735983298236],[127,0,71,-4.778926236785659E-4],[127,0,72,5.938927821365631E-4],[127,0,73,0.0019011737330877645],[127,0,74,0.003428292556155131],[127,0,75,0.005153078103177305],[127,0,76,0.007047721148224426],[127,0,77,0.009079688143843466],[127,0,78,0.011212671566881863],[127,0,79,0.010582596201969241],[127,1,64,-0.0013989852071260012],[127,1,65,-0.0017627321150971396],[127,1,66,-0.001941287602388464],[127,1,67,-0.001942480896332807],[127,1,68,-0.0017537008377044854],[127,1,69,-0.0013481790021049732],[127,1,70,-7.092225874353132E-4],[127,1,71,1.7003464260702166E-4],[127,1,72,0.001287483161502248],[127,1,73,0.0026329152047622675],[127,1,74,0.004188927416084497],[127,1,75,0.005931846974396699],[127,1,76,0.007832679532086982],[127,1,77,0.009858077276816809],[127,1,78,0.011971325423760214],[127,1,79,0.009915658725261277],[127,2,64,-0.001084158111950999],[127,2,65,-0.0014059535971965088],[127,2,66,-0.001538219598230361],[127,2,67,-0.0014919774582343047],[127,2,68,-0.001256705962799325],[127,2,69,-8.068647378374796E-4],[127,2,70,-1.2726096626211966E-4],[127,2,71,7.873177383900267E-4],[127,2,72,0.0019330844317460032],[127,2,73,0.0032982433216616224],[127,2,74,0.004863987978844136],[127,2,75,0.006605505617153446],[127,2,76,0.008492985793641402],[127,2,77,0.010492631897003854],[127,2,78,0.01157820998326309],[127,2,79,0.009428962176048286],[127,3,64,-7.399754400988575E-4],[127,3,65,-0.0010249575057485823],[127,3,66,-0.0011179408402162284],[127,3,67,-0.0010331904452876828],[127,3,68,-7.622571986417496E-4],[127,3,69,-2.807482698129173E-4],[127,3,70,4.2519548553887545E-4],[127,3,71,0.0013593683023097874],[127,3,72,0.002516594593591611],[127,3,73,0.003883817166263624],[127,3,74,0.005441176873568187],[127,3,75,0.0071630820473770306],[127,3,76,0.009019266096071248],[127,3,77,0.010975831707016145],[127,3,78,0.011210474610998495],[127,3,79,0.009125772937871804],[127,4,64,-3.774633182901041E-4],[127,4,65,-6.31321319051135E-4],[127,4,66,-6.924690429714051E-4],[127,4,67,-5.784298587529061E-4],[127,4,68,-2.8276989440405195E-4],[127,4,69,2.178740557054685E-4],[127,4,70,9.362245352201561E-4],[127,4,71,0.001874916487390338],[127,4,72,0.00302768939196465],[127,4,73,0.004380557586830854],[127,4,74,0.005912957066147395],[127,4,75,0.007598867113801658],[127,4,76,0.009407905207012044],[127,4,77,0.01130639370980065],[127,4,78,0.011009910380906164],[127,4,79,0.00900224584541634],[127,5,64,-4.745856624414159E-6],[127,5,65,-2.336163246013481E-4],[127,5,66,-2.7065203540001373E-4],[127,5,67,-1.366195326966256E-4],[127,5,68,1.7299068628036246E-4],[127,5,69,6.80664388037211E-4],[127,5,70,0.0013982098979464488],[127,5,71,0.0023273775737968076],[127,5,72,0.0034611319327051446],[127,5,73,0.004784888520625256],[127,5,74,0.006277713814431251],[127,5,75,0.007913486544150269],[127,5,76,0.009662018928683264],[127,5,77,0.011490136432086186],[127,5,78,0.010967924973637513],[127,5,79,0.009046796515214854],[127,6,64,3.746820975159083E-4],[127,6,65,1.6431598530651542E-4],[127,6,66,1.4354788519617005E-4],[127,6,67,2.8840262428101376E-4],[127,6,68,6.015828628997369E-4],[127,6,69,0.001104878955739019],[127,6,70,0.001809426324030289],[127,6,71,0.0027163734000313087],[127,6,72,0.0038182170859695783],[127,6,73,0.005100091155037611],[127,6,74,0.006541005895340289],[127,6,75,0.008115037422486229],[127,6,76,0.009792465218717432],[127,6,77,0.011540856595671396],[127,6,78,0.011067747134616212],[127,6,79,0.009239513619727458],[127,7,64,7.663170935347166E-4],[127,7,65,5.677650516889137E-4],[127,7,66,5.554548419423563E-4],[127,7,67,7.022638087938678E-4],[127,7,68,0.0010092295729086738],[127,7,69,0.0014976487791086251],[127,7,70,0.00217823273364832],[127,7,71,0.003051806589585792],[127,7,72,0.004110692456041513],[127,7,73,0.0053400353617593325],[127,7,74,0.006719070394414377],[127,7,75,0.008222329485554737],[127,7,76,0.009820786466151537],[127,7,77,0.01148293917886477],[127,7,78,0.011282178867976231],[127,7,79,0.009550299004162264],[127,8,64,0.001191548848219097],[127,8,65,9.98263397480672E-4],[127,8,66,9.868653085997223E-4],[127,8,67,0.0011272598280739942],[127,8,68,0.0014190099494772858],[127,8,69,0.0018831111285317335],[127,8,70,0.0025300785893719586],[127,8,71,0.0033606632281353603],[127,8,72,0.004367268310344794],[127,8,73,0.005535300603493088],[127,8,74,0.006844454293599771],[127,8,75,0.008269926203084125],[127,8,76,0.009783561001769128],[127,8,77,0.011354925282435053],[127,8,78,0.011570897759129778],[127,8,79,0.009937116425804155],[127,9,64,0.0016728752958496318],[127,9,65,0.0014787161432368906],[127,9,66,0.0014611886131204062],[127,9,67,0.0015875284401805538],[127,9,68,0.0018560594964670092],[127,9,69,0.00228764365233415],[127,9,70,0.0028927930127786517],[127,9,71,0.0036723913307958665],[127,9,72,0.004619132091049448],[127,9,73,0.005718884171955687],[127,9,74,0.00695198346656861],[127,9,75,0.008294449028014976],[127,9,76,0.009719122495770999],[127,9,77,0.01119672975389677],[127,9,78,0.011892657270159855],[127,9,79,0.01035752710479809],[127,10,64,0.002230914264570561],[127,10,65,0.0020303458307143595],[127,10,66,0.0020003576316423516],[127,10,67,0.0021059241891198425],[127,10,68,0.002344394881037363],[127,10,69,0.002736631230171147],[127,10,70,0.00329329230127299],[127,10,71,0.00401555378754296],[127,10,72,0.004896557273259047],[127,10,73,0.005922781624056707],[127,10,74,0.007075334919078875],[127,10,75,0.008331165538323661],[127,10,76,0.009664191222132324],[127,10,77,0.01104634512687039],[127,10,78,0.012208479185637255],[127,10,79,0.010771746716762802],[127,11,64,0.0028866296332940968],[127,11,65,0.0026749019447558525],[127,11,66,0.002627004376122482],[127,11,67,0.0027061394839261108],[127,11,68,0.0029089585706165216],[127,11,69,0.003256412262087113],[127,11,70,0.0037594064291035997],[127,11,71,0.004419514523819638],[127,11,72,0.005230429938193951],[127,11,73,0.006179336229705246],[127,11,74,0.007248193663118965],[127,11,75,0.00841494072730796],[127,11,76,0.009654609500261707],[127,11,77,0.01094035395233075],[127,11,78,0.012244390496317738],[127,11,79,0.011142588243584163],[127,12,64,0.0036638775669440775],[127,12,65,0.0034371865864479194],[127,12,66,0.0033669452184728155],[127,12,67,0.003415126123931904],[127,12,68,0.0035779519048043436],[127,12,69,0.0038764983994955364],[127,12,70,0.004321960972691543],[127,12,71,0.0049163591101298075],[127,12,72,0.0056539860272027745],[127,12,73,0.00652277279042628],[127,12,74,0.007505565434949362],[127,12,75,0.008581313780675852],[127,12,76,0.009726170872266758],[127,12,77,0.010914502193114663],[127,12,78,0.012119804029119228],[127,12,79,0.011435409867465185],[127,13,64,0.004592279048693387],[127,13,65,0.004347902487660097],[127,13,66,0.004251981859976348],[127,13,67,0.004265823231733404],[127,13,68,0.004385462341605377],[127,13,69,0.004632073156311732],[127,13,70,0.005017119516962937],[127,13,71,0.005543054416707676],[127,13,72,0.006204763336722431],[127,13,73,0.006990919283408459],[127,13,74,0.007885248044358127],[127,13,75,0.008867702407993443],[127,13,76,0.009915544321874088],[127,13,77,0.011004334196270664],[127,13,78,0.012108826791423069],[127,13,79,0.011618069015616716],[127,14,64,0.005710426273539183],[127,14,65,0.005446830922059967],[127,14,66,0.00532302552514803],[127,14,67,0.005300198923177863],[127,14,68,0.005374391976516065],[127,14,69,0.005566776181066564],[127,14,70,0.005888992916057133],[127,14,71,0.006343853189452772],[127,14,72,0.006926773546200877],[127,14,73,0.007627120957023924],[127,14,74,0.008429465240824543],[127,14,75,0.009314737808865584],[127,14,76,0.010261295756185318],[127,14,77,0.011245890563889908],[127,14,78,0.012244540913682015],[127,14,79,0.011660883104766439],[127,15,64,0.007066217899368727],[127,15,65,0.006782988726233083],[127,15,66,0.006629998432194211],[127,15,67,0.006568823077893047],[127,15,68,0.0065956393545284564],[127,15,69,0.006731447616185562],[127,15,70,0.0069879185765165585],[127,15,71,0.0073681013467210826],[127,15,72,0.007867852045726858],[127,15,73,0.008477168350317223],[127,15,74,0.009181428577549024],[127,15,75,0.00996253413537645],[127,15,76,0.01079995442257464],[127,15,77,0.01167167350445038],[127,15,78,0.01245923194137089],[127,15,79,0.011540526866615828],[127,16,64,0.008696399579132161],[127,16,65,0.008393718625444208],[127,16,66,0.008210411550432834],[127,16,67,0.008108905455948728],[127,16,68,0.008085617597233646],[127,16,69,0.008161199507205768],[127,16,70,0.008347214881721942],[127,16,71,0.008646861066916145],[127,16,72,0.009056387761413804],[127,16,73,0.009566418370413365],[127,16,74,0.010163172651029711],[127,16,75,0.01082958954081021],[127,16,76,0.011546349314800251],[127,16,77,0.012292794469482317],[127,16,78,0.012042261913966741],[127,16,79,0.011253168754686389],[127,17,64,0.010614210191122245],[127,17,65,0.01029278393159194],[127,17,66,0.010078233278700204],[127,17,67,0.00993426427857177],[127,17,68,0.009857626127042074],[127,17,69,0.009868452808214882],[127,17,70,0.009978090537441925],[127,17,71,0.01018983464189194],[127,17,72,0.010500332777134443],[127,17,73,0.0109008874450124],[127,17,74,0.011378656510130088],[127,17,75,0.01191775067369965],[127,17,76,0.012500227125133826],[127,17,77,0.012105763211832368],[127,17,78,0.011448751220222991],[127,17,79,0.010804675525724807],[127,18,64,0.012812158397036576],[127,18,65,0.012473266801421629],[127,18,66,0.0122269646956308],[127,18,67,0.01203862798650767],[127,18,68,0.01190541734522997],[127,18,69,0.01184679227548573],[127,18,70,0.011873793272612959],[127,18,71,0.011989793501160417],[127,18,72,0.012191878834618086],[127,18,73,0.012472123947414884],[127,18,74,0.012600890461186696],[127,18,75,0.01216140627559513],[127,18,76,0.011684791065940928],[127,18,77,0.011188422635478736],[127,18,78,0.010689905245287866],[127,18,79,0.010206433745900254],[127,19,64,0.010547129661547857],[127,19,65,0.010879251542922722],[127,19,66,0.011132835769314255],[127,19,67,0.011340512544719593],[127,19,68,0.011504670826370852],[127,19,69,0.011606699913400142],[127,19,70,0.011635968370992615],[127,19,71,0.011589060155982166],[127,19,72,0.011468426847933439],[127,19,73,0.0112811468328195],[127,19,74,0.011037792586987236],[127,19,75,0.010751406931741602],[127,19,76,0.010436588852948498],[127,19,77,0.01010868920728048],[127,19,78,0.009783116368835384],[127,19,79,0.009474751608800746],[127,20,64,0.00796217346470743],[127,20,65,0.008307444499473253],[127,20,66,0.008591938362987843],[127,20,67,0.008845955462446353],[127,20,68,0.009071346463175764],[127,20,69,0.009250442054746419],[127,20,70,0.009373036962002217],[127,20,71,0.009435617825587632],[127,20,72,0.009440057380293016],[127,20,73,0.009392418222329012],[127,20,74,0.009301867215479607],[127,20,75,0.009179701302413199],[127,20,76,0.009038485206094002],[127,20,77,0.008891301229038636],[127,20,78,0.008751111086917071],[127,20,79,0.008630229449731788],[127,21,64,0.005214436965253757],[127,21,65,0.0055698901337249565],[127,21,66,0.005883812190141963],[127,21,67,0.0061839115135568605],[127,21,68,0.0064714516734486775],[127,21,69,0.0067298081103133855],[127,21,70,0.006949236502543095],[127,21,71,0.007126097423208726],[127,21,72,0.007261602292269962],[127,21,73,0.007360671083409946],[127,21,74,0.007430902725183587],[127,21,75,0.007481658847668398],[127,21,76,0.007523261240580104],[127,21,77,0.007566303108743247],[127,21,78,0.007621073937781717],[127,21,79,0.0076970975190113625],[127,22,64,0.002364298470865858],[127,22,65,0.00272646948548029],[127,22,66,0.0030675546240671917],[127,22,67,0.0034124589372568938],[127,22,68,0.003761819806493062],[127,22,69,0.004100137079645116],[127,22,70,0.0044181465453001076],[127,22,71,0.004712047045265029],[127,22,72,0.004982307629844847],[127,22,73,0.00523258807962674],[127,22,74,0.0054687736122880325],[127,22,75,0.0056981243013005415],[127,22,76,0.005928539445991998],[127,22,77,0.006167936851194536],[127,22,78,0.006423746701625327],[127,22,79,0.006702519453358123],[127,23,64,-5.217155891384938E-4],[127,23,65,-1.567135901491556E-4],[127,23,66,2.0850043681417625E-4],[127,23,67,5.958720728530574E-4],[127,23,68,0.001005383204612792],[127,23,69,0.001422711521140387],[127,23,70,0.0018390767671178357],[127,23,71,0.0022504763471861864],[127,23,72,0.0026565623001675543],[127,23,73,0.003059632633913322],[127,23,74,0.0034637377093596385],[127,23,75,0.0038739020694119708],[127,23,76,0.004295461820514376],[127,23,77,0.004733517394191053],[127,23,78,0.0051925012445055395],[127,23,79,0.005675859777465375],[127,24,64,-0.0033735773369034778],[127,24,65,-0.0030099623715349267],[127,24,66,-0.0026243731657645637],[127,24,67,-0.002197920753583867],[127,24,68,-0.0017312980952689913],[127,24,69,-0.0012376245281894244],[127,24,70,-7.252077173944878E-4],[127,24,71,-1.9829341494590757E-4],[127,24,72,3.4188879815660037E-4],[127,24,73,8.961944618720808E-4],[127,24,74,0.001466748431270103],[127,24,75,0.0020562445750155],[127,24,76,0.0026673609520413357],[127,24,77,0.0033022901622276413],[127,24,78,0.003962384299129044],[127,24,79,0.004647913677514576],[127,25,64,-0.006120312785191602],[127,25,65,-0.005762528930547544],[127,25,66,-0.0053609571815205655],[127,25,67,-0.004899800247689481],[127,25,68,-0.004380435141463985],[127,25,69,-0.0038147828963037986],[127,25,70,-0.003210705132459748],[127,25,71,-0.0025727331296024536],[127,25,72,-0.0019030302337903389],[127,25,73,-0.001202239931160667],[127,25,74,-4.702191754358961E-4],[127,25,75,2.933431538614997E-4],[127,25,76,0.001088422502823713],[127,25,77,0.0019142691708893035],[127,25,78,0.0027691324191643344],[127,25,79,0.003650097214676178],[127,26,64,-0.008692464975419817],[127,26,65,-0.008345066790048268],[127,26,66,-0.0079324365744632],[127,26,67,-0.007441839708863582],[127,26,68,-0.0068753361732119935],[127,26,69,-0.006243683947580909],[127,26,70,-0.00555434020100671],[127,26,71,-0.004812163886080833],[127,26,72,-0.004020290365324239],[127,26,73,-0.003180892761464126],[127,26,74,-0.002295829758613316],[127,26,75,-0.0013671798666725166],[127,26,76,-3.97662438721618E-4],[127,26,77,6.09054001365117E-4],[127,26,78,0.001648155308497715],[127,26,79,0.00271359608958838],[127,27,64,-0.01102446388597394],[127,27,65,-0.010691993701331413],[127,27,66,-0.010273630450092329],[127,27,67,-0.009759608611489046],[127,27,68,-0.009152659737902772],[127,27,69,-0.008462444494869959],[127,27,70,-0.00769607183871685],[127,27,71,-0.006858769736161546],[127,27,72,-0.005954669294203126],[127,27,73,-0.0049874773610815585],[127,27,74,-0.00396103746256697],[127,27,75,-0.0028797792168191046],[127,27,76,-0.0017490566414050791],[127,27,77,-5.753760256635304E-4],[127,27,78,6.334857116942053E-4],[127,27,79,0.0018684710282970954],[127,28,64,-0.013056901880221681],[127,28,65,-0.012743763459402539],[127,28,66,-0.012325245726285385],[127,28,67,-0.01179439547751406],[127,28,68,-0.0111545943069167],[127,28,69,-0.010414500674048525],[127,28,70,-0.009580945353076412],[127,28,71,-0.008659565389152711],[127,28,72,-0.007655496806478599],[127,28,73,-0.006573958198761656],[127,28,74,-0.005420725197971416],[127,28,75,-0.0042024960882070085],[127,28,76,-0.002927149093099139],[127,28,77,-0.0016038921153688488],[127,28,78,-2.4330594381453705E-4],[127,28,79,0.0011427178361269926],[127,29,64,-0.014738713227520947],[127,29,65,-0.014449045434919002],[127,29,66,-0.014036043142595588],[127,29,67,-0.013495349074778182],[127,29,68,-0.01283096364444686],[127,29,69,-0.012050665278570656],[127,29,70,-0.011161088905424513],[127,29,71,-0.0101683188702819],[127,29,72,-0.009078491088271497],[127,29,73,-0.007898289112375766],[127,29,74,-0.006635334235721877],[127,29,75,-0.005298470008586406],[127,29,76,-0.003897941801943469],[127,29,77,-0.002445472288848498],[127,29,78,-9.542339403428032E-4],[127,29,79,5.612801582952083E-4],[127,30,64,-0.016029255966272332],[127,30,65,-0.015766810234055347],[127,30,66,-0.01536491418229105],[127,30,67,-0.014821536708876573],[127,30,68,-0.01414125692226351],[127,30,69,-0.013331118798662873],[127,30,70,-0.012397653753178726],[127,30,71,-0.011347428947024053],[127,30,72,-0.010187561489970735],[127,30,73,-0.008926130152721298],[127,30,74,-0.007572484820691758],[127,30,75,-0.006137454170968577],[127,30,76,-0.00463345229417049],[127,30,77,-0.0030744852105599563],[127,30,78,-0.0014760584429237013],[127,30,79,1.4501299465709738E-4],[127,31,64,-0.01690029409148434],[127,31,65,-0.016668319607223703],[127,31,66,-0.016282867189866778],[127,31,67,-0.015743918086487466],[127,31,68,-0.01505658228857177],[127,31,69,-0.014227333133573699],[127,31,70,-0.013262697525304165],[127,31,71,-0.012169756879536522],[127,31,72,-0.01095657761442515],[127,31,73,-0.009632543231771328],[127,31,74,-0.008208588319917757],[127,31,75,-0.006697335047218625],[127,31,76,-0.005113132942574556],[127,31,77,-0.0034720029744381643],[127,31,78,-0.0017914871399532504],[127,31,79,-9.040495941724859E-5],[127,32,64,-0.017337877745825438],[127,32,65,-0.01713901841985527],[127,32,66,-0.01677492065737632],[127,32,67,-0.01624723292007388],[127,32,68,-0.015561542295830028],[127,32,69,-0.014723926650287189],[127,32,70,-0.01374100950103838],[127,32,71,-0.01262041178391688],[127,32,72,-0.011371104352402855],[127,32,73,-0.010003666542669602],[127,32,74,-0.008530451219605347],[127,32,75,-0.006965656944382904],[127,32,76,-0.00532530811856816],[127,32,77,-0.003627144161418207],[127,32,78,-0.0018904189639494717],[127,32,79,-1.3561203355717366E-4],[127,33,64,-0.017344118777947736],[127,33,65,-0.01718032617850821],[127,33,66,-0.016841901330851554],[127,33,67,-0.016331800122670482],[127,33,68,-0.015656029275414228],[127,33,69,-0.014820448952904304],[127,33,70,-0.013831876564137301],[127,33,71,-0.012698488614413564],[127,33,72,-0.01143010222479465],[127,33,73,-0.010038367477210933],[127,33,74,-0.008536871069211343],[127,33,75,-0.006941151974152964],[127,33,76,-0.0052686300035454684],[127,33,77,-0.0035384483564232573],[127,33,78,-0.0017712314141165846],[127,33,79,1.1240804281150618E-5],[127,34,64,-0.01693885870981169],[127,34,65,-0.016811325278208753],[127,34,66,-0.01650214445802842],[127,34,67,-0.016015226111682872],[127,34,68,-0.015356938420760077],[127,34,69,-0.014533093407689475],[127,34,70,-0.013550788196407251],[127,34,71,-0.012418757476633511],[127,34,72,-0.01114759211501473],[127,34,73,-0.009749873512080343],[127,34,74,-0.00824022424119345],[127,34,75,-0.0066352757039043675],[127,34,76,-0.0049535537234995175],[127,34,77,-0.003215283173285503],[127,34,78,-0.0014421128964382244],[127,34,79,3.4323768174516627E-4],[127,35,64,-0.01616122583047498],[127,35,65,-0.016070342806779443],[127,35,66,-0.015793093165133915],[127,35,67,-0.015334019406704969],[127,35,68,-0.014699796009381115],[127,35,69,-0.013896335143653366],[127,35,70,-0.012931078558866937],[127,35,71,-0.011813302681741161],[127,35,72,-0.010554283190009598],[127,35,73,-0.00916738027059022],[127,35,74,-0.0076680451342643315],[127,35,75,-0.006073748543732655],[127,35,76,-0.004403832286110145],[127,35,77,-0.0026792846827045813],[127,35,78,-9.224413765656504E-4],[127,35,79,8.433872299436081E-4],[127,36,64,-0.015071077811633082],[127,36,65,-0.015016422413243814],[127,36,66,-0.014772793617836733],[127,36,67,-0.014345108372423828],[127,36,68,-0.013740299861922281],[127,36,69,-0.01296449192128834],[127,36,70,-0.012025503390101345],[127,36,71,-0.01093310964492143],[127,36,72,-0.009699162517207035],[127,36,73,-0.008337635694698954],[127,36,74,-0.006864596198430954],[127,36,75,-0.005298102699733026],[127,36,76,-0.003658031603332424],[127,36,77,-0.0019658319723004905],[127,36,78,-2.442105064958408E-4],[127,36,79,0.0014832520933282275],[127,37,64,-0.013750325924168333],[127,37,65,-0.013730682424254943],[127,37,66,-0.013521282293605174],[127,37,67,-0.013127258627626415],[127,37,68,-0.012555768806934677],[127,37,69,-0.011813204936287949],[127,37,70,-0.010907749132612679],[127,37,71,-0.009849597423122242],[127,37,72,-0.008651044590478886],[127,37,73,-0.00732649898525773],[127,37,74,-0.005892427903939757],[127,37,75,-0.004367234291279716],[127,37,76,-0.0027710656763369123],[127,37,77,-0.0011255563901730564],[127,37,78,5.464957613473595E-4],[127,37,79,0.0022215170856294667],[127,38,64,-0.012301739933291238],[127,38,65,-0.012315184494811369],[127,38,66,-0.012139525545476409],[127,38,67,-0.01178008990261521],[127,38,68,-0.011244242461294254],[127,38,69,-0.010538626431547713],[127,38,70,-0.009671712438610605],[127,38,71,-0.008653993229938525],[127,38,72,-0.007498042950590294],[127,38,73,-0.0062185103614440206],[127,38,74,-0.0048320465925950845],[127,38,75,-0.003357168174888236],[127,38,76,-0.0018140562332820444],[127,38,77,-2.242928551580825E-4],[127,38,78,0.001389464236711865],[127,38,79,0.0030038674745167596],[127,39,64,-0.010795647369040675],[127,39,65,-0.010840174574287037],[127,39,66,-0.010697433479017422],[127,39,67,-0.0103729479796068],[127,39,68,-0.009874260902168724],[127,39,69,-0.009208204068669273],[127,39,70,-0.008383423974936886],[127,39,71,-0.00741055744064171],[127,39,72,-0.006302275379554836],[127,39,73,-0.0050732637670563106],[127,39,74,-0.0037401423803612903],[127,39,75,-0.0023213220296444863],[127,39,76,-8.368011314182518E-4],[127,39,77,6.920974022523949E-4],[127,39,78,0.0022430478752468435],[127,39,79,0.003793100940050603],[127,40,64,-0.009256256672722557],[127,40,65,-0.009330299305470718],[127,40,66,-0.009220000236358274],[127,40,67,-0.00893098800436805],[127,40,68,-0.008470916664190602],[127,40,69,-0.007846746783458787],[127,40,70,-0.007067190306045667],[127,40,71,-0.006142877668961182],[127,40,72,-0.005086397249205822],[127,40,73,-0.00391227435414626],[127,40,74,-0.002636890302325861],[127,40,75,-0.0012783422790795243],[127,40,76,1.4375522044982522E-4],[127,40,77,0.0016085264306617824],[127,40,78,0.003094146801304359],[127,40,79,0.004578210801458274],[127,41,64,-0.007703952775203132],[127,41,65,-0.0078063681582420915],[127,41,66,-0.0077283363366321255],[127,41,67,-0.007475418514186758],[127,41,68,-0.007055290267154854],[127,41,69,-0.006474995375051585],[127,41,70,-0.005743214611966305],[127,41,71,-0.004870434862288511],[127,41,72,-0.00386899615170823],[127,41,73,-0.002753079530053925],[127,41,74,-0.0015386363119395516],[127,41,75,-2.4325931640099878E-4],[127,41,76,0.00111400312704331],[127,41,77,0.002512889522505281],[127,41,78,0.003932222914258931],[127,41,79,0.0053502628765272515],[127,42,64,-0.006155324353656107],[127,42,65,-0.006285410565776248],[127,42,66,-0.0062397619354207495],[127,42,67,-0.006023642570115559],[127,42,68,-0.005644651279725145],[127,42,69,-0.005109892255609509],[127,42,70,-0.004427940809399585],[127,42,71,-0.0036090247157223388],[127,42,72,-0.0026650910551594543],[127,42,73,-0.001609814108377416],[127,42,74,-4.5854475340940547E-4],[127,42,75,7.717980457553748E-4],[127,42,76,0.0020628929436640906],[127,42,77,0.0033952382779490016],[127,42,78,0.004748429554847766],[127,42,79,0.006101491323224424],[127,43,64,-0.00462081996743981],[127,43,65,-0.00477839011159112],[127,43,66,-0.0047655966628458645],[127,43,67,-0.004587140423357031],[127,43,68,-0.004250449887348447],[127,43,69,-0.003762696616605448],[127,43,70,-0.0031323053870277616],[127,43,71,-0.0023691574068294484],[127,43,72,-0.0014846891525115715],[127,43,73,-4.919313348849762E-4],[127,43,74,5.945116205608869E-4],[127,43,75,0.0017585410542411732],[127,43,76,0.0029827018574336036],[127,43,77,0.004248377783017932],[127,43,78,0.005536043392567307],[127,43,79,0.006825571652036302],[127,44,64,-0.003102093669624931],[127,44,65,-0.0032876122515379225],[127,44,66,-0.003308648995466227],[127,44,67,-0.003169059968417353],[127,44,68,-0.0028760270305381768],[127,44,69,-0.0024368316757072592],[127,44,70,-0.0018597376352612635],[127,44,71,-0.0011542248108556187],[127,44,72,-3.3113192098509507E-4],[127,44,73,5.972627150912423E-4],[127,44,74,0.0016172219537615882],[127,44,75,0.0027135917137583966],[127,44,76,0.0038699033836831808],[127,44,77,0.005068536031234103],[127,44,78,0.00629093757643063],[127,44,79,0.007517903985000098],[127,45,64,-0.0015890329515116622],[127,45,65,-0.0018038184065193375],[127,45,66,-0.0018603980288084084],[127,45,67,-0.0017615079429408275],[127,45,68,-0.0015140362378130165],[127,45,69,-0.0011254573719019188],[127,45,70,-6.039019649198307E-4],[127,45,71,4.157069726321669E-5],[127,45,72,8.0077500617602E-4],[127,45,73,0.001662266190760075],[127,45,74,0.0026132720887008724],[127,45,75,0.0036396891658720333],[127,45,76,0.004726142270898476],[127,45,77,0.005856107471725034],[127,45,78,0.0070120971920205645],[127,45,79,0.008175906748670898],[127,46,64,-5.646204116727337E-5],[127,46,65,-3.0295941521760184E-4],[127,46,66,-3.978606594275386E-4],[127,46,67,-3.4253496376126895E-4],[127,46,68,-1.435703941015013E-4],[127,46,69,1.91238020315085E-4],[127,46,70,6.538239006180963E-4],[127,46,71,0.001235531670242854],[127,46,72,0.001926853487799112],[127,46,73,0.0027172347386692133],[127,46,74,0.003594947993272309],[127,46,75,0.004547035169135082],[127,46,76,0.005559317471294525],[127,46,77,0.006616472532575472],[127,46,78,0.007702178033387222],[127,46,79,0.008799320951355476],[127,47,64,0.0015211301799557262],[127,47,65,0.0012394079101449831],[127,47,66,0.0011023823000526878],[127,47,67,0.0011102575248390558],[127,47,68,0.001256707182518086],[127,47,69,0.001533445406719399],[127,47,70,0.0019323619262409852],[127,47,71,0.0024451532322515594],[127,47,72,0.003062984650569971],[127,47,73,0.0037762253070550717],[127,47,74,0.004574256023713045],[127,47,75,0.005445349997635778],[127,47,76,0.006376625937476356],[127,47,77,0.007354073164361812],[127,47,78,0.008362648027462062],[127,47,79,0.009386440840443912],[127,48,64,0.0031123527590728797],[127,48,65,0.0027921932798235277],[127,48,66,0.0026097668046788113],[127,48,67,0.0025670397586561476],[127,48,68,0.002657888173001374],[127,48,69,0.002873343511315513],[127,48,70,0.0032051169076959783],[127,48,71,0.003645174866437559],[127,48,72,0.004185318243769789],[127,48,73,0.004816838966081146],[127,48,74,0.00553025466741696],[127,48,75,0.0063151212271381684],[127,48,76,0.007159922994717836],[127,48,77,0.008052040304320215],[127,48,78,0.008977793708656664],[127,48,79,0.009922564201302357],[127,49,64,0.004676025908003684],[127,49,65,0.004314907150572865],[127,49,66,0.004084743759408609],[127,49,67,0.0039894355369956185],[127,49,68,0.004022986994479327],[127,49,69,0.0041755427564252115],[127,49,70,0.0044384810110334825],[127,49,71,0.004803930385081025],[127,49,72,0.005264258930220169],[127,49,73,0.005811646136297127],[127,49,74,0.006437738313598375],[127,49,75,0.007133387466136788],[127,49,76,0.007888473566188756],[127,49,77,0.0086918099379585],[127,49,78,0.009531131267169885],[127,49,79,0.010393163575328197],[127,50,64,0.006178006032040771],[127,50,65,0.005774107020131073],[127,50,66,0.005494787463282798],[127,50,67,0.005346025958099704],[127,50,68,0.005321866939199575],[127,50,69,0.005411356685261574],[127,50,70,0.0056053713374124925],[127,50,71,0.0058960726712900865],[127,50,72,0.006276301556104451],[127,50,73,0.006739060103686708],[127,50,74,0.0072770830208617075],[127,50,75,0.007882498439551255],[127,50,76,0.008546578267892076],[127,50,77,0.009259577884097136],[127,50,78,0.010010664784589094],[127,50,79,0.010787935600962171],[127,51,64,0.007590732998328691],[127,51,65,0.007142936947766823],[127,51,66,0.006813927517872824],[127,51,67,0.006611875616777737],[127,51,68,0.00653076367619634],[127,51,69,0.006558326331996374],[127,51,70,0.006684759163617518],[127,51,71,0.006902112119756223],[127,51,72,0.007203583333210333],[127,51,73,0.007582907576063938],[127,51,74,0.008033840050551348],[127,51,75,0.008549735951921097],[127,51,76,0.009123225988329991],[127,51,77,0.009745987801086656],[127,51,78,0.01040861299832584],[127,51,79,0.01110056929841909],[127,52,64,0.008892794367727679],[127,52,65,0.008400683544041778],[127,52,66,0.008022296895119583],[127,52,67,0.007768074742069306],[127,52,68,0.007631824388644482],[127,52,69,0.007599759644578073],[127,52,70,0.007661213222806864],[127,52,71,0.007807967564970371],[127,52,72,0.008033446341774438],[127,52,73,0.008332006738621434],[127,52,74,0.00869833341256972],[127,52,75,0.009126934726930378],[127,52,76,0.009611741597708293],[127,52,77,0.010145809023598648],[127,52,78,0.01072112012035992],[127,52,79,0.011328492243214049],[127,53,64,0.010068506805756406],[127,53,65,0.009532348626661611],[127,53,66,0.009105696349284058],[127,53,67,0.00880129745151224],[127,53,68,0.00861266271438151],[127,53,69,0.008524286112103426],[127,53,70,0.008524457150339587],[127,53,71,0.008604529779806296],[127,53,72,0.008758010377131005],[127,53,73,0.008979752752471521],[127,53,74,0.009265261267425298],[127,53,75,0.009610102845936745],[127,53,76,0.010009428367677332],[127,53,77,0.010457603649779365],[127,53,78,0.010947949950961851],[127,53,79,0.011472593674237943],[127,54,64,0.011107514932861376],[127,54,65,0.010528238786427495],[127,54,66,0.010055175407396272],[127,54,67,0.009703376350620177],[127,54,68,0.009465929711172478],[127,54,69,0.009325426804281752],[127,54,70,0.00926894127637686],[127,54,71,0.009287237684680748],[127,54,72,0.009373756220343431],[127,54,73,0.009523710695775161],[127,54,74,0.00973330108180602],[127,54,75,0.009999041558414365],[127,54,76,0.01031720472840681],[127,54,77,0.010683382338751496],[127,54,78,0.011092162561490506],[127,54,79,0.011536923607657956],[127,55,64,0.01200440791871077],[127,55,65,0.011383572154310777],[127,55,66,0.01086663022215718],[127,55,67,0.010470893758106902],[127,55,68,0.010188901122282264],[127,55,69,0.010001180086202202],[127,55,70,0.009893429003846405],[127,55,71,0.009855667465056877],[127,55,72,0.009881119470558303],[127,55,73,0.00996521600385844],[127,55,74,0.01010471849017034],[127,55,75,0.010296964289879694],[127,55,76,0.010539235038926295],[127,55,77,0.010828248323036183],[127,55,78,0.0111597728593684],[127,55,79,0.011528367060329982],[127,56,64,0.012758354168767137],[127,56,65,0.012098102706859942],[127,56,66,0.011540418620014588],[127,56,67,0.01110478988851817],[127,56,68,0.010783081271095547],[127,56,69,0.010553623326513733],[127,56,70,0.010400598066601438],[127,56,71,0.0103131348521944],[127,56,72,0.010284095134323329],[127,56,73,0.010308982521968837],[127,56,74,0.010384979871156873],[127,56,75,0.010510114727465967],[127,56,76,0.01068255409872133],[127,56,77,0.010900029189117914],[127,56,78,0.011159390392692667],[127,56,79,0.011456292525587138],[127,57,64,0.013372754493537316],[127,57,65,0.01267576249197927],[127,57,66,0.012080992724554936],[127,57,67,0.011609988373691097],[127,57,68,0.011253823965327155],[127,57,69,0.010988530970693097],[127,57,70,0.010796657017641065],[127,57,71,0.010666310878222136],[127,57,72,0.010589853224029023],[127,57,73,0.010562718341531333],[127,57,74,0.010582368704581771],[127,57,75,0.010647383919444428],[127,57,76,0.010756685183214812],[127,57,77,0.010908896031819415],[127,57,78,0.01110183980145521],[127,57,79,0.011332173890110785],[127,58,64,0.013854914191099084],[127,58,65,0.013124322200052012],[127,58,66,0.012496549580877323],[127,58,67,0.011995039552298747],[127,58,68,0.011609970841230806],[127,58,69,0.011315009402745027],[127,58,70,0.011090977350530202],[127,58,71,0.010924851471271833],[127,58,72,0.010808365673446577],[127,58,73,0.010736749647432741],[127,58,74,0.010707605831965084],[127,58,75,0.010719926382250925],[127,58,76,0.01077325144263612],[127,58,77,0.010866969644109112],[127,58,78,0.010999761376813256],[127,58,79,0.011169185032975119],[127,59,64,0.014215734511307528],[127,59,65,0.013455070545951554],[127,59,66,0.012798700249767548],[127,59,67,0.012271782002166364],[127,59,68,0.011863507625649363],[127,59,69,0.01154514906795518],[127,59,70,0.011295741708170338],[127,59,71,0.011101041309081277],[127,59,72,0.010952044932569276],[127,59,73,0.010843652859542814],[127,59,74,0.010773473800483824],[127,59,75,0.01074077526658257],[127,59,76,0.0107455805625495],[127,59,77,0.010787913463149697],[127,59,78,0.010867191249055521],[127,59,79,0.010981766406737013],[127,60,64,0.01446942400504497],[127,60,65,0.013682512965236154],[127,60,66,0.013002157880801151],[127,60,67,0.01245502283259134],[127,60,68,0.012029238838275922],[127,60,69,0.011693694375719606],[127,60,70,0.011425608681351115],[127,60,71,0.011209452399680986],[127,60,72,0.011035394656169798],[127,60,73,0.010897895405942134],[127,60,74,0.010794445526589485],[127,60,75,0.010724456692519382],[127,60,76,0.010688302644662296],[127,60,77,0.010686513055548423],[127,60,78,0.010719120788645002],[127,60,79,0.010785162965484539],[127,61,64,0.01463323029363825],[127,61,65,0.01382409016238343],[127,61,66,0.01312444531059253],[127,61,67,0.012562237293166972],[127,61,68,0.012124481497709125],[127,61,69,0.011777731944598134],[127,61,70,0.011497394744648318],[127,61,71,0.011266617905118804],[127,61,72,0.011074672950264966],[127,61,73,0.0109154855177872],[127,61,74,0.010786317570889827],[127,61,75,0.010686603422063299],[127,61,76,0.0106169413281608],[127,61,77,0.010578241989628654],[127,61,78,0.010571034872775857],[127,61,79,0.0105949328759037],[127,62,64,0.014727192821729898],[127,62,65,0.013899917079886694],[127,62,66,0.013185622765857117],[127,62,67,0.012613288291180186],[127,62,68,0.012168778432363999],[127,62,69,0.011816397791155961],[127,62,70,0.01152977391880239],[127,62,71,0.011290721768229843],[127,62,72,0.011087568687622411],[127,62,73,0.010913631486008612],[127,62,74,0.01076584836990457],[127,62,75,0.010643568095626098],[127,62,76,0.01054749823441251],[127,62,77,0.01047881400983185],[127,62,78,0.010438428742029947],[127,62,79,0.010426426524495751],[127,63,64,0.014773917181191842],[127,63,65,0.013932542884125503],[127,63,66,0.013208036280474542],[127,63,67,0.012630166441222184],[127,63,68,0.01218363183072887],[127,63,69,0.01183060409954978],[127,63,70,0.011542995786389293],[127,63,71,0.01130130474290293],[127,63,72,0.011092891447230782],[127,63,73,0.010910410867793187],[127,63,74,0.010750401822658878],[127,63,75,0.010612036316549991],[127,63,76,0.010496030881163309],[127,63,77,0.010403721497842362],[127,63,78,0.010336303247753016],[127,63,79,0.01029423541691318],[127,64,64,0.0147983716138049],[127,64,65,0.013946732586821912],[127,64,66,0.013216087461004701],[127,64,67,0.012636751297883317],[127,64,68,0.012192257694498923],[127,64,69,0.011842786239837505],[127,64,70,0.011558622521038212],[127,64,71,0.011318987464783764],[127,64,72,0.011110275672944174],[127,64,73,0.010924450175713977],[127,64,74,0.010757596680456512],[127,64,75,0.010608639924406558],[127,64,76,0.010478224276063276],[127,64,77,0.010367760276447929],[127,64,78,0.010278638370468102],[127,64,79,0.010211610653792719],[127,65,64,0.014827706316162162],[127,65,65,0.013969270939355509],[127,65,66,0.013236025255860347],[127,65,67,0.012658594445035564],[127,65,68,0.012219361882496081],[127,65,69,0.011876670729365987],[127,65,70,0.011599285619373635],[127,65,71,0.011365211231603233],[127,65,72,0.011159899683016542],[127,65,73,0.010974615624155198],[127,65,74,0.010804962236293297],[127,65,75,0.010649570853315157],[127,65,76,0.010508956463211061],[127,65,77,0.010384540885257672],[127,65,78,0.01027784497277603],[127,65,79,0.010189850761248022],[127,66,64,0.014891096181387037],[127,66,65,0.014028789251019637],[127,66,66,0.013295760399351195],[127,66,67,0.01272272513299895],[127,66,68,0.012290938452756665],[127,66,69,0.011957064853066938],[127,66,70,0.011688463049006831],[127,66,71,0.011461997190066114],[127,66,72,0.011262220194698254],[127,66,73,0.011079715546070096],[127,66,74,0.010909600855970033],[127,66,75,0.01075019602559617],[127,66,76,0.01060185836016943],[127,66,77,0.01046598653196523],[127,66,78,0.010344194836546649],[127,66,79,0.01023765875315123],[127,67,64,0.015019607618616971],[127,67,65,0.014155615791275056],[127,67,66,0.013424703212893654],[127,67,67,0.012857479167642323],[127,67,68,0.01243409102452621],[127,67,69,0.012109668674853018],[127,67,70,0.011850277545051744],[127,67,71,0.011631724649251893],[127,67,72,0.011437723056241848],[127,67,73,0.011258215127868754],[127,67,74,0.011087857935800641],[127,67,75,0.010924673783483897],[127,67,76,0.010768868286329938],[127,67,77,0.010621817998629728],[127,67,78,0.010485229123549466],[127,67,79,0.010360468406264547],[127,68,64,0.015246090092655434],[127,68,65,0.014381650440045817],[127,68,66,0.013653625451663525],[127,68,67,0.013092351763010986],[127,68,68,0.012676877890961908],[127,68,69,0.01236091018336463],[127,68,70,0.01210931680159631],[127,68,71,0.011896929258563414],[127,68,72,0.011706690902346053],[127,68,73,0.01152796414114384],[127,68,74,0.011354999911662911],[127,68,75,0.011185572412142611],[127,68,76,0.011019781646367636],[127,68,77,0.010859025859226606],[127,68,78,0.010705145490791039],[127,68,79,0.010559739837971007],[127,69,64,0.015130857522528834],[127,69,65,0.014740258276360493],[127,69,66,0.014014541086015275],[127,69,67,0.013457869450909826],[127,69,68,0.013048176192336397],[127,69,69,0.012737799127538455],[127,69,70,0.012490471399472059],[127,69,71,0.012280117222935106],[127,69,72,0.012088984283247211],[127,69,73,0.011905934641884598],[127,69,74,0.011724897747230489],[127,69,75,0.011543488667295087],[127,69,76,0.011361794185805985],[127,69,77,0.011181328936448496],[127,69,78,0.011004163295375968],[127,69,79,0.010832224312889981],[127,70,64,0.014714061962135825],[127,70,65,0.015250206781027648],[127,70,66,0.014525106020232229],[127,70,67,0.013970473639130246],[127,70,68,0.013563094917469907],[127,70,69,0.013253963306289356],[127,70,70,0.013005720488419682],[127,70,71,0.012791444134547336],[127,70,72,0.01259276261877953],[127,70,73,0.012398127853674796],[127,70,74,0.012201249942521523],[127,70,75,0.01199969686524704],[127,70,76,0.011793661938515516],[127,70,77,0.01158490132330065],[127,70,78,0.01137584339762312],[127,70,79,0.011168871371704229],[127,71,64,0.014173932238425876],[127,71,65,0.01507037766015059],[127,71,66,0.015155596799396704],[127,71,67,0.01460063337231992],[127,71,68,0.01419232357038668],[127,71,69,0.013880449680250609],[127,71,70,0.013626680337998635],[127,71,71,0.013403351114441662],[127,71,72,0.01319156468009329],[127,71,73,0.012979448281697769],[127,71,74,0.012760572321525259],[127,71,75,0.012532533350344367],[127,71,76,0.012295704309938885],[127,71,77,0.012052154394219791],[127,71,78,0.011804740442507372],[127,71,79,0.011556371337894588],[127,72,64,0.013548088282383923],[127,72,65,0.014448541941255931],[127,72,66,0.015203586476239659],[127,72,67,0.015311963400918718],[127,72,68,0.01490000049769728],[127,72,69,0.014582109988268489],[127,72,70,0.01431918895791925],[127,72,71,0.014082983450028662],[127,72,72,0.01385418235108256],[127,72,73,0.01362066708887703],[127,72,74,0.01337592101130399],[127,72,75,0.013117601836031896],[127,72,76,0.012846280089242513],[127,72,77,0.012564345987296964],[127,72,78,0.012275086761867055],[127,72,79,0.011981935990130846],[127,73,64,0.0128721849169613],[127,73,65,0.013776646357698792],[127,73,66,0.014535802685946569],[127,73,67,0.015122946407165334],[127,73,68,0.015564377966243577],[127,73,69,0.015325652279839246],[127,73,70,0.015050925198209447],[127,73,71,0.01479928763052733],[127,73,72,0.014551141352529844],[127,73,73,0.014294194335711581],[127,73,74,0.014021871567963478],[127,73,75,0.013731886658838661],[127,73,76,0.013424977208822846],[127,73,77,0.013103806463049537],[127,73,78,0.012772033321474445],[127,73,79,0.012433552343018189],[127,74,64,0.012180941919652442],[127,74,65,0.013089114126062253],[127,74,66,0.013852611211401437],[127,74,67,0.014446128534516905],[127,74,68,0.014896670333027147],[127,74,69,0.015256213915073102],[127,74,70,0.01556457880567432],[127,74,71,0.01552216893052759],[127,74,72,0.015253902707491218],[127,74,73,0.014973326790752183],[127,74,74,0.014673814508467732],[127,74,75,0.014353096248688293],[127,74,76,0.014012003188832603],[127,74,77,0.013653373999824666],[127,74,78,0.013281126647073305],[127,74,79,0.012899496983668213],[127,75,64,0.011509220432231166],[127,75,65,0.012420539656213408],[127,75,66,0.013188226714869168],[127,75,67,0.013788668957086433],[127,75,68,0.01424934922443206],[127,75,69,0.01462190818003063],[127,75,70,0.014945971629090933],[127,75,71,0.01525033516600376],[127,75,72,0.015554802071637194],[127,75,73,0.01563145764224523],[127,75,74,0.015307216064950406],[127,75,75,0.01495897569112234],[127,75,76,0.014587549036907914],[127,75,77,0.01419580813088195],[127,75,78,0.013787769117995225],[127,75,79,0.01336783914761609],[127,76,64,0.010893145341016956],[127,76,65,0.011806797920764167],[127,76,66,0.012578133495283141],[127,76,67,0.01318552246369576],[127,76,68,0.013656671954005077],[127,76,69,0.014042342732871547],[127,76,70,0.014381571522126846],[127,76,71,0.014702822084871087],[127,76,72,0.015025762950860458],[127,76,73,0.015362905363854828],[127,76,74,0.015721097619504847],[127,76,75,0.015526588538051576],[127,76,76,0.015131126798900855],[127,76,77,0.014713181774277695],[127,76,78,0.014276662950603555],[127,76,79,0.013825932942462706],[127,77,64,0.010371273091201835],[127,77,65,0.011286199450591044],[127,77,66,0.012060223119848173],[127,77,67,0.012673977916653529],[127,77,68,0.013155119160969992],[127,77,69,0.013552959206767662],[127,77,70,0.013905536585751053],[127,77,71,0.014240721549916693],[127,77,72,0.014577912524455845],[127,77,73,0.014929599589770198],[127,77,74,0.015302791284424922],[127,77,75,0.015700301430874707],[127,77,76,0.015620881070297929],[127,77,77,0.015186252109520557],[127,77,78,0.014731238285294896],[127,77,79,0.014259899207701179],[127,78,64,0.009985804236743539],[127,78,65,0.010900690278803082],[127,78,66,0.011675977099558268],[127,78,67,0.012294818932579577],[127,78,68,0.012784528085472242],[127,78,69,0.013192392066994265],[127,78,70,0.013555041864784114],[127,78,71,0.013899499517906599],[127,78,72,0.014244771665366108],[127,78,73,0.014603317995058778],[127,78,74,0.014982391060716029],[127,78,75,0.015385244319483767],[127,78,76,0.015812205624821902],[127,78,77,0.015593810759883538],[127,78,78,0.015133065883447688],[127,78,79,0.014654097579424631],[127,79,64,0.00976317627603885],[127,79,65,0.010676509480883261],[127,79,66,0.011451400742374636],[127,79,67,0.012073766170095188],[127,79,68,0.012570283638194792],[127,79,69,0.012985646542763287],[127,79,70,0.01335467151962203],[127,79,71,0.013703276617323379],[127,79,72,0.014049951465649302],[127,79,73,0.014407111155584611],[127,79,74,0.014782330525222714],[127,79,75,0.01517945590277694],[127,79,76,0.01559959171169484],[127,79,77,0.015915578914041266],[127,79,78,0.015462749020330941],[127,79,79,0.014990082519758979],[127,80,64,0.009657181900515044],[127,80,65,0.01056749940874743],[127,80,66,0.011341100805792214],[127,80,67,0.011966953212970444],[127,80,68,0.012470846986201512],[127,80,69,0.01289433025498781],[127,80,70,0.013269976121436199],[127,80,71,0.013622285637607078],[127,80,72,0.013969020084471012],[127,80,73,0.014322426466015024],[127,80,74,0.014690353179374137],[127,80,75,0.015077253147727213],[127,80,76,0.01548507202578817],[127,80,77,0.01591401940599727],[127,80,78,0.015706043945257125],[127,80,79,0.01524740600658757],[127,81,64,0.009617766282435884],[127,81,65,0.010523627547672451],[127,81,66,0.011295764805970413],[127,81,67,0.01192652464507818],[127,81,68,0.012440601789378206],[127,81,69,0.012875880902861183],[127,81,70,0.013262251414897881],[127,81,71,0.01362243533298721],[127,81,72,0.013973173521498334],[127,81,73,0.01432631512249609],[127,81,74,0.01468980737240024],[127,81,75,0.015068583361824747],[127,81,76,0.015465345576869668],[127,81,77,0.015881243346528774],[127,81,78,0.015852938701671294],[127,81,79,0.0154097573669417],[127,82,64,0.009610110784285522],[127,82,65,0.010510013324032227],[127,82,66,0.011280923126800443],[127,82,67,0.011918906896961049],[127,82,68,0.012447398064888895],[127,82,69,0.012900147429163816],[127,82,70,0.013303930265579553],[127,82,71,0.013679303776732382],[127,82,72,0.014041644840917952],[127,82,73,0.014402100992850957],[127,82,74,0.014768452197482556],[127,82,75,0.015145881239081354],[127,82,76,0.015537650806063905],[127,82,77,0.01594568560613062],[127,82,78,0.015896706732972367],[127,82,79,0.01546591617544222],[127,83,64,0.0096118359911601],[127,83,65,0.010504160083085839],[127,83,66,0.01127423912251386],[127,83,67,0.011922189344202788],[127,83,68,0.012470057733455478],[127,83,69,0.012947051902846831],[127,83,70,0.013376430534288197],[127,83,71,0.013776199080043027],[127,83,72,0.014160001287792802],[127,83,73,0.014537933961379592],[127,83,74,0.014917282830004175],[127,83,75,0.015303177627301656],[127,83,76,0.015699164707895386],[127,83,77,0.016107695751252166],[127,83,78,0.01583392190629627],[127,83,79,0.015409483675500294],[127,84,64,0.009610445892085418],[127,84,65,0.010493424931523323],[127,84,66,0.011263032449007173],[127,84,67,0.01192373257759006],[127,84,68,0.012496099715582023],[127,84,69,0.0130044615986545],[127,84,70,0.013468201984543486],[127,84,71,0.013902406168921777],[127,84,72,0.014318612746188794],[127,84,73,0.01472549828983242],[127,84,74,0.01512949313100518],[127,84,75,0.015535326611617632],[127,84,76,0.015946500383569026],[127,84,77,0.016076114392631225],[127,84,78,0.015664419358485088],[127,84,79,0.015238580969003011],[127,85,64,0.009601020826544486],[127,85,65,0.010472734009190101],[127,85,66,0.011242043066721363],[127,85,67,0.011918011087790625],[127,85,68,0.01251969153355499],[127,85,69,0.013066277849296338],[127,85,70,0.01357297832174636],[127,85,71,0.014051625144009284],[127,85,72,0.014511296397007318],[127,85,73,0.014958880097835017],[127,85,74,0.015399578785254435],[127,85,75,0.015837353281226305],[127,85,76,0.016237012256296746],[127,85,77,0.015817663762865197],[127,85,78,0.015391199940866799],[127,85,79,0.014955512751385],[127,86,64,0.009584166923767096],[127,86,65,0.01044255094966507],[127,86,66,0.011211443634160823],[127,86,67,0.011904697960324504],[127,86,68,0.012539834802614436],[127,86,69,0.013130748748836017],[127,86,70,0.013688241044949393],[127,86,71,0.014220607415308775],[127,86,72,0.014734143191368001],[127,86,73,0.015233598921768418],[127,86,74,0.015722585203672795],[127,86,75,0.016203925617489064],[127,86,76,0.015921079195105985],[127,86,77,0.015471149221481427],[127,86,78,0.01502027745033207],[127,86,79,0.014566396692167263],[127,87,64,0.00956422918863533],[127,87,65,0.010407105720000188],[127,87,66,0.011175107451077778],[127,87,67,0.011886998631367362],[127,87,68,0.012558791470090576],[127,87,69,0.013199012287914796],[127,87,70,0.01381390132646491],[127,87,71,0.014407995375979763],[127,87,72,0.01498453137071341],[127,87,73,0.015545807974084735],[127,87,74,0.016093504134367054],[127,87,75,0.01603265202429453],[127,87,76,0.015534834874532909],[127,87,77,0.015044583984471584],[127,87,78,0.014560467890952666],[127,87,79,0.014080758559566642],[127,88,64,0.009547774852914926],[127,88,65,0.010372890498665735],[127,88,66,0.0111391385876271],[127,88,67,0.011870240245909887],[127,88,68,0.012580757171434606],[127,88,69,0.013273876036248047],[127,88,70,0.01395120569950491],[127,88,71,0.014613370979679498],[127,88,72,0.01526033190525563],[127,88,73,0.015891667409926306],[127,88,74,0.016208530298407728],[127,88,75,0.015640410730616144],[127,88,76,0.015086943948536347],[127,88,77,0.014548036663258154],[127,88,78,0.014023120063822003],[127,88,79,0.013511093186793954],[127,89,64,0.009542353111538582],[127,89,65,0.010347428755183602],[127,89,66,0.0111106703480244],[127,89,67,0.011860722684653328],[127,89,68,0.012610787614657787],[127,89,69,0.013358839053332192],[127,89,70,0.014101870927564928],[127,89,71,0.014836518212344694],[127,89,72,0.01555931038620584],[127,89,73,0.016266894613170633],[127,89,74,0.01584024438195645],[127,89,75,0.01520364173596592],[127,89,76,0.014587599274237964],[127,89,77,0.013993454045698529],[127,89,78,0.013421786833179608],[127,89,79,0.012872391377146956],[127,90,64,0.009555536898547148],[127,90,65,0.010338323232767217],[127,90,66,0.011096937762128369],[127,90,67,0.011864836882495983],[127,90,68,0.012653983477535824],[127,90,69,0.0134573613023715],[127,90,70,0.014267453049353524],[127,90,71,0.015076904099988254],[127,90,72,0.015878729592740032],[127,90,73,0.016173937782398177],[127,90,74,0.01544168465785683],[127,90,75,0.014731827207659705],[127,90,76,0.014048389740972422],[127,90,77,0.013394398076515823],[127,90,78,0.012771836464457465],[127,90,79,0.012181632844946182],[127,91,64,0.009594251924017335],[127,91,65,0.01035258810449634],[127,91,66,0.011104629373902736],[127,91,67,0.011888455647579947],[127,91,68,0.012714938903114637],[127,91,69,0.013572385463238206],[127,91,70,0.014448955237991933],[127,91,71,0.015333382567426961],[127,91,72,0.016215156660399337],[127,91,73,0.015832517947822613],[127,91,74,0.015021040466196465],[127,91,75,0.014235479322474676],[127,91,76,0.01348205508208996],[127,91,77,0.012765695832085405],[127,91,78,0.01209000347487304],[127,91,79,0.011457245289729592],[127,92,64,0.009664397789922355],[127,92,65,0.010396270172184016],[127,92,66,0.011139523199954968],[127,92,67,0.01193660180371409],[127,92,68,0.012797458306715368],[127,92,69,0.013706115686037943],[127,92,70,0.014646678781287753],[127,92,71,0.015604125157300891],[127,92,72,0.016387026453321334],[127,92,73,0.015477632397814989],[127,92,74,0.014587220034943015],[127,92,75,0.013725863435873958],[127,92,76,0.012902125966619143],[127,92,77,0.01212300136917356],[127,92,78,0.011393878479791376],[127,92,79,0.010718529701884904],[127,93,64,0.009770765627665165],[127,93,65,0.010474363603418892],[127,93,66,0.01120641136258408],[127,93,67,0.012013398118883432],[127,93,68,0.012904545860145139],[127,93,69,0.013860057495999563],[127,93,70,0.014860321179645315],[127,93,71,0.01588678233292682],[127,93,72,0.016101937274702403],[127,93,73,0.015116195154114536],[127,93,74,0.014149492647572271],[127,93,75,0.013214578766175137],[127,93,76,0.012322447786627935],[127,93,77,0.011482268406999315],[127,93,78,0.010701336558428028],[127,93,79,0.009985051998993346],[127,94,64,0.009917256351392022],[127,94,65,0.010591022354683767],[127,94,66,0.011309317558407566],[127,94,67,0.012122303146935657],[127,94,68,0.013038671694660312],[127,94,69,0.014035322751494331],[127,94,70,0.015089325068249154],[127,94,71,0.01617887882118591],[127,94,72,0.015811796188002793],[127,94,73,0.014755033502965005],[127,94,74,0.013716961089887318],[127,94,75,0.012712994642289054],[127,94,76,0.011756586667824767],[127,94,77,0.010859132877218156],[127,94,78,0.010029903700721621],[127,94,79,0.009276001093546907],[127,95,64,0.010107403297717324],[127,95,65,0.010750074105540306],[127,95,66,0.011452011204265821],[127,95,67,0.012266636797013626],[127,95,68,0.013202318562055972],[127,95,69,0.01423320326872789],[127,95,70,0.015333481399335248],[127,95,71,0.01647844620166173],[127,95,72,0.015520560380178136],[127,95,73,0.014400205658566166],[127,95,74,0.01329786215073825],[127,95,75,0.01223154050182835],[127,95,76,0.011217116336033584],[127,95,77,0.010268204447363144],[127,95,78,0.009396060933457732],[127,95,79,0.00860951349430506],[127,96,64,0.010345202722863194],[127,96,65,0.010955839229320134],[127,96,66,0.011638821805423324],[127,96,67,0.01245039915460917],[127,96,68,0.013398812411836932],[127,96,69,0.014456016457863683],[127,96,70,0.015593790067543904],[127,96,71,0.016399761974686938],[127,96,72,0.015230658070817618],[127,96,73,0.014056120140639767],[127,96,74,0.012898693110517272],[127,96,75,0.011778847956196116],[127,96,76,0.010714784571072866],[127,96,77,0.009722266190183798],[127,96,78,0.008814485758076538],[127,96,79,0.008001964545316523],[127,97,64,0.010636255351288223],[127,97,65,0.011214258048425643],[127,97,66,0.011875756815959327],[127,97,67,0.01267938580812527],[127,97,68,0.01363344008067873],[127,97,69,0.014708226064994891],[127,97,70,0.015873580925557382],[127,97,71,0.016150592748829018],[127,97,72,0.01494188556326958],[127,97,73,0.013724454629415565],[127,97,74,0.012523162300537832],[127,97,75,0.011360743361153619],[127,97,76,0.010257558072580091],[127,97,77,0.009231381634377827],[127,97,78,0.00829723056509198],[127,97,79,0.007467226408461176],[127,98,64,0.010989221914629263],[127,98,65,0.011534329366195865],[127,98,66,0.012171926006654498],[127,98,67,0.012962602684565666],[127,98,68,0.013914857047355384],[127,98,69,0.014997840881574007],[127,98,70,0.01617989791761509],[127,98,71,0.015885689489463093],[127,98,72,0.014650079007160805],[127,98,73,0.013402872224722662],[127,98,74,0.012170961956229924],[127,98,75,0.010979089445743842],[127,98,76,0.009849544649745624],[127,98,77,0.008801908491587003],[127,98,78,0.00785283772073785],[127,98,79,0.007015892897186863],[127,99,64,0.011417595385315338],[127,99,65,0.011929863031444998],[127,99,66,0.012541275120752846],[127,99,67,0.013313983166556947],[127,99,68,0.01425678798116425],[127,99,69,0.015338094066845548],[127,99,70,0.016525148854332115],[127,99,71,0.015593848786858348],[127,99,72,0.014345558712434123],[127,99,73,0.013083533188514221],[127,99,74,0.011836361717927126],[127,99,75,0.010630474659646404],[127,99,76,0.009489791728982917],[127,99,77,0.008435418410352866],[127,99,78,0.007485391050354734],[127,99,79,0.0066544712708391275],[127,100,64,0.011941792394745337],[127,100,65,0.01242154907544436],[127,100,66,0.013004631381931897],[127,100,67,0.01375441004959069],[127,100,68,0.014680022603881996],[127,100,69,0.015749405528812942],[127,100,70,0.01645536456694222],[127,100,71,0.01525654153379051],[127,100,72,0.014011344015412035],[127,100,73,0.012751400392493199],[127,100,74,0.011506621255235043],[127,100,75,0.010304748999327686],[127,100,76,0.009170960250444758],[127,100,77,0.008127522160085495],[127,100,78,0.00719350347013418],[127,100,79,0.006384541100506546],[127,101,64,0.012588582395140163],[127,101,65,0.013036313115424953],[127,101,66,0.013588986906045354],[127,101,67,0.014310927184270525],[127,101,68,0.015211558515778791],[127,101,69,0.016258464192879556],[127,101,70,0.016026954381760196],[127,101,71,0.014848912049832562],[127,101,72,0.0136241686217823],[127,101,73,0.012385253194138504],[127,101,74,0.01116298503370169],[127,101,75,0.009985982786490651],[127,101,76,0.00888023195153321],[127,101,77,0.007868711787049176],[127,101,78,0.0069710826577166875],[127,101,79,0.006203434675660596],[127,102,64,0.013355733692016248],[127,102,65,0.01377143513528164],[127,102,66,0.014291157472487583],[127,102,67,0.014979967089006048],[127,102,68,0.015847492582140927],[127,102,69,0.01657970383090304],[127,102,70,0.01551755107572118],[127,102,71,0.014376220436109586],[127,102,72,0.013189919962055516],[127,102,73,0.011991686436826127],[127,102,74,0.010812807923026135],[127,102,75,0.009682307835052525],[127,102,76,0.008626491971441956],[127,102,77,0.007668559769056554],[127,102,78,0.006828280871623886],[127,102,79,0.0061217379389086665],[127,103,64,0.01421416331267775],[127,103,65,0.014597068240406054],[127,103,66,0.015080681962293388],[127,103,67,0.015730630976755942],[127,103,68,0.01655667350927666],[127,103,69,0.0159715034311715],[127,103,70,0.0149582456769759],[127,103,71,0.013869192505531997],[127,103,72,0.012738722799179484],[127,103,73,0.011599973484773774],[127,103,74,0.010484249961244186],[127,103,75,0.009420501666655505],[127,103,76,0.008434864284653709],[127,103,77,0.0075502699111693],[127,103,78,0.006786126325693094],[127,103,79,0.006158066338474837],[127,104,64,0.01513128361078084],[127,104,65,0.015480018986214285],[127,104,66,0.015923993458437268],[127,104,67,0.016529225653867878],[127,104,68,0.016179383884747024],[127,104,69,0.01533319177515279],[127,104,70,0.014381545327617998],[127,104,71,0.013359362680760174],[127,104,72,0.012300841709983279],[127,104,73,0.011238810800822199],[127,104,74,0.010204145486983791],[127,104,75,0.009225252660948209],[127,104,76,0.008327623880796543],[127,104,77,0.007533459114302552],[127,104,78,0.006861362081489491],[127,104,79,0.006326108181006604],[127,105,64,0.016074130862404078],[127,105,65,0.016386840564336095],[127,105,66,0.01660455509041908],[127,105,67,0.016124130983987975],[127,105,68,0.015477192765445765],[127,105,69,0.014697102628099427],[127,105,70,0.013818680697074408],[127,105,71,0.012876517364667406],[127,105,72,0.01190428224175873],[127,105,73,0.01093409823740672],[127,105,74,0.009995982638495403],[127,105,75,0.009117356876569541],[127,105,76,0.008322626484918093],[127,105,77,0.007632832566779261],[127,105,78,0.007065375916486657],[127,105,79,0.006633814760681776],[127,106,64,0.016270425341573254],[127,106,65,0.016076783578727306],[127,106,66,0.01580149864520121],[127,106,67,0.015378278954428108],[127,106,68,0.014797365669615228],[127,106,69,0.01409215824074679],[127,106,70,0.013297177963159563],[127,106,71,0.012446414281817308],[127,106,72,0.011572675923737761],[127,106,73,0.010707007024255977],[127,106,74,0.009878170045961043],[127,106,75,0.009112197108295828],[127,106,76,0.008432011165949108],[127,106,77,0.007857118296519881],[127,106,78,0.007403372183744261],[127,106,79,0.007082811713071902],[127,107,64,0.015407757380759586],[127,107,65,0.01525633145849551],[127,107,66,0.015033231079388629],[127,107,67,0.014672268731618445],[127,107,68,0.014163775451439606],[127,107,69,0.013541081150681403],[127,107,70,0.012838213992439144],[127,107,71,0.012088301784163221],[127,107,72,0.011322983861973654],[127,107,73,0.010571886533955618],[127,107,74,0.00986216375785918],[127,107,75,0.009218104555600001],[127,107,76,0.008660808495263203],[127,107,77,0.008207930402151967],[127,107,78,0.007873495295020173],[127,107,79,0.007667784383182346],[127,108,64,0.01458882255779144],[127,108,65,0.014482657842959195],[127,108,66,0.014315517137067897],[127,108,67,0.014021499714542461],[127,108,68,0.013591070987379777],[127,108,69,0.013057373671756497],[127,108,70,0.012453753918106696],[127,108,71,0.01181223736798694],[127,108,72,0.01116301822513934],[127,108,73,0.010534009203701665],[127,108,74,0.00995045385930234],[127,108,75,0.009434602647203269],[127,108,76,0.009005453891765684],[127,108,77,0.008678560694472842],[127,108,78,0.008465904654721348],[127,108,79,0.008375837129735766],[127,109,64,0.01381590366906582],[127,109,65,0.013758547625133672],[127,109,66,0.013651257174906102],[127,109,67,0.013428617664711793],[127,109,68,0.013081275880214425],[127,109,69,0.012642064292244173],[127,109,70,0.012143470370979308],[127,109,71,0.011616204704292516],[127,109,72,0.011088780980621587],[127,109,73,0.010587153039059913],[127,109,74,0.01013441028244347],[127,109,75,0.009750532602245534],[127,109,76,0.00945220581917223],[127,109,77,0.00925269850157418],[127,109,78,0.009161800886251861],[127,109,79,0.009185826494004653],[127,110,64,0.013074197872209526],[127,110,65,0.013069849880406343],[127,110,66,0.013026597790653459],[127,110,67,0.012879733744183839],[127,110,68,0.01262014087950065],[127,110,69,0.01228022025087136],[127,110,70,0.011891443667514072],[127,110,71,0.01148302853185561],[127,110,72,0.011081619284869422],[127,110,73,0.010711021166696656],[127,110,74,0.010391987345824905],[127,110,75,0.010142060340270095],[127,110,76,0.009975468526780556],[127,110,77,0.009903078410071908],[127,110,78,0.009932403204513145],[127,110,79,0.010067668166492488],[127,111,64,0.012326565926994769],[127,111,65,0.01237995223904922],[127,111,66,0.0124053269781363],[127,111,67,0.012338952848080792],[127,111,68,0.012172025773272397],[127,111,69,0.011936403121400116],[127,111,70,0.011662402469913678],[127,111,71,0.011377595651885201],[127,111,72,0.01110659971625381],[127,111,73,0.010870914738238776],[127,111,74,0.010688809265064374],[127,111,75,0.01057525407130465],[127,111,76,0.01054190479008361],[127,111,77,0.010597133881973112],[127,111,78,0.010746112303617696],[127,111,79,0.010990941143745088],[127,112,64,0.011524467040167078],[127,112,65,0.011639567957583308],[127,112,66,0.011737926893908948],[127,112,67,0.011757138619434108],[127,112,68,0.011688833944937246],[127,112,69,0.011564221049333624],[127,112,70,0.01141231453133324],[127,112,71,0.011258862408135449],[127,112,72,0.011126255610678329],[127,112,73,0.01103347831808285],[127,112,74,0.010996099621914853],[127,112,75,0.011026306920602096],[127,112,76,0.011132981357209814],[127,112,77,0.011321815530608674],[127,112,78,0.011595473631647342],[127,112,79,0.011953794083008673],[127,113,64,0.010638469804453274],[127,113,65,0.010818002648304563],[127,113,66,0.010992893388338781],[127,113,67,0.011102508961131359],[127,113,68,0.01113907170375245],[127,113,69,0.011133038627779448],[127,113,70,0.011111962250327142],[127,113,71,0.01109956527034113],[127,113,72,0.011115778394556375],[127,113,73,0.011176812586279086],[127,113,74,0.011295265906253531],[127,113,75,0.011480265046434355],[127,113,76,0.011737641592638024],[127,113,77,0.012070142991496065],[127,113,78,0.012477678141536027],[127,113,79,0.012957597478184984],[127,114,64,0.00965963894310316],[127,114,65,0.009904899805751885],[127,114,66,0.010158677671196008],[127,114,67,0.01036259456831707],[127,114,68,0.01050963778521648],[127,114,69,0.010629413389055745],[127,114,70,0.010747850901570516],[127,114,71,0.010886440120386864],[127,114,72,0.011062406730684822],[127,114,73,0.011288915651482299],[127,114,74,0.011575301939564239],[127,114,75,0.011927329028462894],[127,114,76,0.012347474038377982],[127,114,77,0.01283523985609624],[127,114,78,0.013387493652357328],[127,114,79,0.013998831478193807],[127,115,64,0.008595636285056054],[127,115,65,0.008906401836898543],[127,115,66,0.009239947191117728],[127,115,67,0.00954064311840723],[127,115,68,0.009802416739958264],[127,115,69,0.010053925256053043],[127,115,70,0.010319320182321312],[127,115,71,0.010617659486852858],[127,115,72,0.010963229194970631],[127,115,73,0.011365885894945069],[127,115,74,0.011831419600482526],[127,115,75,0.012361936403644],[127,115,76,0.012956260334349339],[127,115,77,0.013610353830266786],[127,115,78,0.014317756214074143],[127,115,79,0.01507003957414668],[127,116,64,0.007467094757262038],[127,116,65,0.007841580335722737],[127,116,66,0.008254109159820049],[127,116,67,0.008652276764219629],[127,116,68,0.009031113478786549],[127,116,69,0.009418232038488506],[127,116,70,0.00983586368833783],[127,116,71,0.01030045666112158],[127,116,72,0.010823150024818689],[127,116,73,0.011410261570587882],[127,116,74,0.012063788814452728],[127,116,75,0.012781922187310607],[127,116,76,0.013559569494705263],[127,116,77,0.014388890740280814],[127,116,78,0.015259842425242505],[127,116,79,0.016160730460691046],[127,117,64,0.006304269941309499],[127,117,65,0.006739140194776669],[127,117,66,0.007228101306805389],[127,117,67,0.007722407451297732],[127,117,68,0.00821833336674685],[127,117,69,0.00874235516949154],[127,117,70,0.009314660244624053],[127,117,71,0.009948940276383883],[127,117,72,0.010653021103328946],[127,117,73,0.011429499837802268],[127,117,74,0.01227638793114758],[127,117,75,0.01318775889114436],[127,117,76,0.014154399389150734],[127,117,77,0.015164462531698113],[127,117,78,0.016204122114909514],[127,117,79,0.017258226730184532],[127,118,64,0.005143973428889916],[127,118,65,0.005634401835770985],[127,118,66,0.006195454145108209],[127,118,67,0.006782414284286168],[127,118,68,0.007392911975587251],[127,118,69,0.00805219961126351],[127,118,70,0.00877832077045197],[127,118,71,0.009582102709664886],[127,118,72,0.010467943150660158],[127,118,73,0.011434597742682009],[127,118,74,0.012475966487158258],[127,118,75,0.01358187746092095],[127,118,76,0.014738866228720731],[127,118,77,0.015930949397359687],[127,118,78,0.017140390832180417],[127,118,79,0.016619093817238417],[127,119,64,0.004026791918124278],[127,119,65,0.004566565550156804],[127,119,66,0.005193628742248345],[127,119,67,0.005867586888894903],[127,119,68,0.006587498337368934],[127,119,69,0.007377311607334449],[127,119,70,0.00825285412617847],[127,119,71,0.009222025458118137],[127,119,72,0.010285738911688283],[127,119,73,0.011438857511081887],[127,119,74,0.012671122232008813],[127,119,75,0.013968070472746518],[127,119,76,0.015311942808529154],[127,119,77,0.01668257616238057],[127,119,78,0.01689942232186648],[127,119,79,0.015605559852892213],[127,120,64,0.0029945957197752924],[127,120,65,0.003576261668624187],[127,120,66,0.004261633722427724],[127,120,67,0.005014838454999682],[127,120,68,0.005836395291534912],[127,120,69,0.006748877722694911],[127,120,70,0.007765855170980677],[127,120,71,0.008892284443910832],[127,120,72,0.010125600957080696],[127,120,73,0.011456798373001967],[127,120,74,0.012871494182586547],[127,120,75,0.014350978846884946],[127,120,76,0.01587324621563917],[127,120,77,0.01741400304628616],[127,120,78,0.01606277324992296],[127,120,79,0.01462787350911885],[127,121,64,0.002088340088362356],[127,121,65,0.002703390024831006],[127,121,66,0.0034379249756141357],[127,121,67,0.004260691902283537],[127,121,68,0.005173660283107302],[127,121,69,0.0061979683913756444],[127,121,70,0.007344918055375884],[127,121,71,0.008616558016681443],[127,121,72,0.010006916552808283],[127,121,73,0.011503217002025262],[127,121,74,0.013087073364402693],[127,121,75,0.014735663263058718],[127,121,76,0.016422875668357168],[127,121,77,0.016873119360872355],[127,121,78,0.01526338694734986],[127,121,79,0.013700093917393373],[127,122,64,0.0013461625577617705],[127,122,65,0.0019852519431184236],[127,122,66,0.0027585913161032325],[127,122,67,0.003639542382141491],[127,122,68,0.0046314697504538605],[127,122,69,0.0057540289835424675],[127,122,70,0.0070162775799612566],[127,122,71,0.00841744024852204],[127,122,72,0.00994827190069361],[127,122,73,0.011592398525709736],[127,122,74,0.013327632797565473],[127,122,75,0.015127261390200144],[127,122,76,0.016961301113877576],[127,122,77,0.01624586895598421],[127,122,78,0.014509880150882361],[127,122,79,0.012835062367918178],[127,123,64,8.017792436903007E-4],[127,123,65,0.0014549777621431258],[127,123,66,0.002255829117131557],[127,123,67,0.00318219911805855],[127,123,68,0.004238750036977062],[127,123,69,0.005443621210617871],[127,123,70,0.006803681271981245],[127,123,71,0.008315461953524944],[127,123,72,0.009966637909681862],[127,123,73,0.011737479942823925],[127,123,74,0.013602278190868518],[127,123,75,0.015530731976980724],[127,123,76,0.017489303174288335],[127,123,77,0.015650360084935148],[127,123,78,0.013809601752948817],[127,123,79,0.012043896901513853],[127,124,64,4.831828762679907E-4],[127,124,65,0.0011402527059998662],[127,124,66,0.001956708748876686],[127,124,67,0.0029147093910859975],[127,124,68,0.004020077571903711],[127,124,69,0.005289417507122526],[127,124,70,0.006727494663912375],[127,124,71,0.008328321711966135],[127,124,72,0.010076739523974176],[127,124,73,0.01194996767099568],[127,124,74,0.01391912071887546],[127,124,75,0.015950686786986124],[127,124,76,0.017059430360611062],[127,124,77,0.015089010905529263],[127,124,78,0.013168331519829653],[127,124,79,0.011335547566865398],[127,125,64,4.116451444621309E-4],[127,125,65,0.0010623437313554607],[127,125,66,0.0018822354645694737],[127,125,67,0.0028574672972409188],[127,125,68,0.003994850890962163],[127,125,69,0.005309450861735955],[127,125,70,0.006804042103151595],[127,125,71,0.008470329038098657],[127,125,72,0.010290610509922775],[127,125,73,0.012239410843679226],[127,125,74,0.014285073174299263],[127,125,75,0.01639131130413432],[127,125,76,0.01659551126117792],[127,125,77,0.014563131049769728],[127,125,78,0.012590002095421098],[127,125,79,0.010716413177834741],[127,126,64,6.010257705110857E-4],[127,126,65,0.0012354298132587183],[127,126,66,0.0020467072133586906],[127,126,67,0.0030246097395477613],[127,126,68,0.004176736908047439],[127,126,69,0.005516622417437552],[127,126,70,0.007045185279047804],[127,126,71,0.008752061700253198],[127,126,72,0.010617335488620046],[127,126,73,0.012613231878312649],[127,126,74,0.014705770711318683],[127,126,75,0.016856375079851032],[127,126,76,0.016136966576378427],[127,126,77,0.014072742438947251],[127,126,78,0.012076444630731077],[127,126,79,0.010190020354202946],[127,127,64,0.0010573905863486774],[127,127,65,0.0016662379835709297],[127,127,66,0.0024573717089591916],[127,127,67,0.0034237019689872844],[127,127,68,0.004573393703958199],[127,127,69,0.005918469021481751],[127,127,70,0.0074581415229096094],[127,127,71,0.009180239082479428],[127,127,72,0.01106298089541538],[127,127,73,0.013076715748137164],[127,127,74,0.015185617324748144],[127,127,75,0.017349332543622878],[127,127,76,0.015681347370416352],[127,127,77,0.013616385039863763],[127,127,78,0.011627158356667635],[127,127,79,0.009756765580391959],[127,128,64,0.0017789407556087651],[127,128,65,0.002353987304402341],[127,128,66,0.003114384950015034],[127,128,67,0.004055714855860172],[127,128,68,0.00518647196799685],[127,128,69,0.006517192780445376],[127,128,70,0.008045543818323486],[127,128,71,0.009757813368383576],[127,128,72,0.011630716451239597],[127,128,73,0.013633159308457302],[127,128,74,0.015727959145254964],[127,128,75,0.017297175585275864],[127,128,76,0.015225405822111881],[127,128,77,0.013190907479333333],[127,128,78,0.01123910439604214],[127,128,79,0.009413720970441197],[127,129,64,0.002756255174019007],[127,129,65,0.0032906428445824663],[127,129,66,0.00401107327156784],[127,129,67,0.004915295956065851],[127,129,68,0.006011897112714809],[127,129,69,0.007309954563724427],[127,129,70,0.008805744353189744],[127,129,71,0.010484280230188736],[127,129,72,0.0123211286436667],[127,129,73,0.014284181954189776],[127,129,74,0.016335385572142345],[127,129,75,0.016781626035947267],[127,129,76,0.014764836570514708],[127,129,77,0.01279124243547009],[127,129,78,0.010906524090008847],[127,129,79,0.009154504383811903],[127,130,64,0.0039728479879774],[127,130,65,0.004461481630132687],[127,130,66,0.005134500907142595],[127,130,67,0.005991336335654194],[127,130,68,0.007040433981477814],[127,130,69,0.008289433300773445],[127,130,70,0.009733363351450896],[127,130,71,0.011356210619481786],[127,130,72,0.013132727638207423],[127,130,73,0.015030198819477767],[127,130,74,0.01701015921267169],[127,130,75,0.016226768603946024],[127,130,76,0.014293963409855967],[127,130,77,0.012410166724847594],[127,130,78,0.010620782094406497],[127,130,79,0.008969214495501634],[127,131,64,0.005406043095980777],[127,131,65,0.005845972460095014],[127,131,66,0.0064663449579063755],[127,131,67,0.007267835031893292],[127,131,68,0.00825853598299122],[127,131,69,0.009444652833245436],[127,131,70,0.0108200848417193],[127,131,71,0.012368005180782496],[127,131,72,0.01406264897256699],[127,131,73,0.015871057672083258],[127,131,74,0.017459340153453896],[127,131,75,0.01562758611513638],[127,131,76,0.013805370950551942],[127,131,77,0.01203804600437598],[127,131,78,0.010370234482671265],[127,131,79,0.008844431385526274],[127,132,64,0.007028033483630123],[127,132,65,0.007418829220631966],[127,132,66,0.007983929382366072],[127,132,67,0.00872490479093944],[127,132,68,0.009649314442762711],[127,132,69,0.010761904671522646],[127,132,70,0.012055520977744962],[127,132,71,0.013512687164017686],[127,132,72,0.01510736143910548],[127,132,73,0.016806647950223234],[127,132,74,0.016682509963711217],[127,132,75,0.014977682626665823],[127,132,76,0.013289670711238669],[127,132,77,0.011662748810617253],[127,132,78,0.01014029974794676],[127,132,79,0.008763451668017506],[127,133,64,0.008785548953819864],[127,133,65,0.009128268555522935],[127,133,66,0.00963709865167735],[127,133,67,0.010314262766930083],[127,133,68,0.011166659851416466],[127,133,69,0.01219756018578404],[127,133,70,0.013398824562751684],[127,133,71,0.014752472986332674],[127,133,72,0.0162323991507874],[127,133,73,0.017400559009645773],[127,133,74,0.015859356178208748],[127,133,75,0.014300460051394574],[127,133,76,0.012766349324408524],[127,133,77,0.011299822803218907],[127,133,78,0.009942616236210539],[127,133,79,0.008734086433660493],[127,134,64,0.01058343870815494],[127,134,65,0.010878012413347196],[127,134,66,0.011328702045517239],[127,134,67,0.011938206779168032],[127,134,68,0.012712723437798798],[127,134,69,0.013654123816394187],[127,134,70,0.014753435418444625],[127,134,71,0.015992387402394875],[127,134,72,0.01734507218444784],[127,134,73,0.01646614147761183],[127,134,74,0.015075804279186299],[127,134,75,0.013677333079309443],[127,134,76,0.01231159049919503],[127,134,77,0.011019542630532786],[127,134,78,0.009840931475759382],[127,134,79,0.00881301480594142],[127,135,64,0.012333961878673217],[127,135,65,0.01257919090395768],[127,135,66,0.01296904824721051],[127,135,67,0.013506591564259452],[127,135,68,0.014197350583284099],[127,135,69,0.01504196554310251],[127,135,70,0.016030857761593825],[127,135,71,0.01714573833298629],[127,135,72,0.016830753750452856],[127,135,73,0.01563810860394405],[127,135,74,0.014408803622678186],[127,135,75,0.013180525102938092],[127,135,76,0.011992192933399681],[127,135,77,0.01088263302222107],[127,135,78,0.009889313552635521],[127,135,79,0.00904714797112394],[127,136,64,0.013963817523748865],[127,136,65,0.014157681524864449],[127,136,66,0.014483527319051916],[127,136,67,0.014944711556797267],[127,136,68,0.01554619796049922],[127,136,69,0.016287633149447905],[127,136,70,0.01715911582960484],[127,136,71,0.016991554137739263],[127,136,72,0.01601582885631391],[127,136,73,0.014980192372041382],[127,136,74,0.013918026772556354],[127,136,75,0.01286502619912258],[127,136,76,0.011857882600771464],[127,136,77,0.01093303068476015],[127,136,78,0.010125455030042994],[127,136,79,0.009467562131307807],[127,137,64,0.015414880542952257],[127,137,65,0.015554759283571936],[127,137,66,0.015813154612221735],[127,137,67,0.016193716168070332],[127,137,68,0.016700997284172292],[127,137,69,0.01733394240920311],[127,137,70,0.01698989524849306],[127,137,71,0.01624092496632985],[127,137,72,0.015414832942987618],[127,137,73,0.014539693295017867],[127,137,74,0.013646898375875181],[127,137,75,0.012769873490209326],[127,137,76,0.011942845032211089],[127,137,77,0.011199665018832976],[127,137,78,0.010572694807877692],[127,137,79,0.01009175060368894],[127,138,64,0.016645287315732008],[127,138,65,0.01672809208618719],[127,138,66,0.016915452555025984],[127,138,67,0.017211352280138356],[127,138,68,0.01728383390100917],[127,138,69,0.0168667155229016],[127,138,70,0.016345550469240206],[127,138,71,0.0157367430133172],[127,138,72,0.015062204191989415],[127,138,73,0.014348070286407059],[127,138,74,0.013623464748519252],[127,138,75,0.012919306633859477],[127,138,76,0.012267168448765823],[127,138,77,0.011698186160331057],[127,138,78,0.01124202395076991],[127,138,79,0.010925896125267828],[127,139,64,0.016870265296324724],[127,139,65,0.016960539630083857],[127,139,66,0.01695823357411306],[127,139,67,0.016858962349806394],[127,139,68,0.01665838434542951],[127,139,69,0.01635797051429041],[127,139,70,0.01596659612004844],[127,139,71,0.015499341224747764],[127,139,72,0.014976285160890536],[127,139,73,0.014421336624993805],[127,139,74,0.013861102292499664],[127,139,75,0.013323796725101072],[127,139,76,0.01283819620528663],[127,139,77,0.012432638989659092],[127,139,78,0.012134074323021053],[127,139,79,0.011967162399986249],[127,140,64,0.016165599248552452],[127,140,65,0.016321051037491957],[127,140,66,0.016398122121838367],[127,140,67,0.01639191077004455],[127,140,68,0.016297818102734247],[127,140,69,0.016116984921459895],[127,140,70,0.015857234553826795],[127,140,71,0.015531989392915965],[127,140,72,0.015159192705093603],[127,140,73,0.014760260061078159],[127,140,74,0.014359062943512984],[127,140,75,0.01398094697380011],[127,140,76,0.013651787083599787],[127,140,77,0.013397081832554407],[127,140,78,0.013241088944019245],[127,140,79,0.013206003995395302],[127,141,64,0.015693411896775786],[127,141,65,0.01591869015226713],[127,141,66,0.01607969529686675],[127,141,67,0.016170894825790053],[127,141,68,0.01618719079848199],[127,141,69,0.016129048481566776],[127,141,70,0.01600290134680006],[127,141,71,0.015820197567809856],[127,141,72,0.015596459454987305],[127,141,73,0.015350365174184455],[127,141,74,0.015102854916107817],[127,141,75,0.01487626359377183],[127,141,76,0.014693482049579659],[127,141,77,0.014577148651775307],[127,141,78,0.014548873052585832],[127,141,79,0.014628493767725261],[127,142,64,0.015412605200150786],[127,142,65,0.01571329313410736],[127,142,66,0.01596376200329021],[127,142,67,0.016157744349383992],[127,142,68,0.01628941875193426],[127,142,69,0.01635825299907959],[127,142,70,0.016368974733184497],[127,142,71,0.016330760969136254],[127,142,72,0.01625644485735248],[127,142,73,0.016161736144330946],[127,142,74,0.01606445707390789],[127,142,75,0.01598379540622677],[127,142,76,0.015939576159571946],[127,142,77,0.01595155360279177],[127,142,78,0.016038724943292643],[127,142,79,0.016218667067741888],[127,143,64,0.015264755630279701],[127,143,65,0.015647304001256915],[127,143,66,0.01599377165137914],[127,143,67,0.016297071924304175],[127,143,68,0.016550461185624924],[127,143,69,0.016752117618267424],[127,143,70,0.016904771062783614],[127,143,71,0.01701504809182029],[127,143,72,0.017092835597892892],[127,143,73,0.01715064834832704],[127,143,74,0.017203001791222805],[127,143,75,0.017265791355637976],[127,143,76,0.017355679443438157],[127,143,77,0.017489491259367072],[127,143,78,0.017683620569940165],[127,143,79,0.017953446420784953],[127,144,64,0.015212554233624208],[127,144,65,0.015682708791993932],[127,144,66,0.016130955569124777],[127,144,67,0.01654929049611156],[127,144,68,0.0169298494389421],[127,144,69,0.01726924226293876],[127,144,70,0.017567923421083046],[127,144,71,0.01758940925542325],[127,144,72,0.017458235298825547],[127,144,73,0.017346141248579226],[127,144,74,0.017242120918233603],[127,144,75,0.01713373331408814],[127,144,76,0.01700759602023302],[127,144,77,0.016849882460765117],[127,144,78,0.016646822330315662],[127,144,79,0.01638520451610853],[127,145,64,0.015230166473959155],[127,145,65,0.015792398052078917],[127,145,66,0.016346800858650107],[127,145,67,0.016884334264969984],[127,145,68,0.01739581509098775],[127,145,69,0.017369909157435828],[127,145,70,0.017028053851256924],[127,145,71,0.016716738101166726],[127,145,72,0.016432688079893436],[127,145,73,0.016170408517371292],[127,145,74,0.01592251597173903],[127,145,75,0.015680090586486166],[127,145,76,0.015433046045523095],[127,145,77,0.015170517429492774],[127,145,78,0.01488126667283841],[127,145,79,0.014554105322382056],[127,146,64,0.015295740251818716],[127,146,65,0.01595311503925214],[127,146,66,0.016616505741178532],[127,146,67,0.01727569965308243],[127,146,68,0.017252109921905946],[127,146,69,0.01673751286060499],[127,146,70,0.01624785536843591],[127,146,71,0.015785655820192205],[127,146,72,0.015351218163444503],[127,146,73,0.01494277730849641],[127,146,74,0.014556677061355848],[127,146,75,0.014187580854512011],[127,146,76,0.013828715485404515],[127,146,77,0.013472148031487424],[127,146,78,0.013109096074311205],[127,146,79,0.012730271333704852],[127,147,64,0.015390791457214045],[127,147,65,0.016144883420466147],[127,147,66,0.016918456580661365],[127,147,67,0.017395353615885296],[127,147,68,0.016728296625911118],[127,147,69,0.016073139204465733],[127,147,70,0.015437658991346795],[127,147,71,0.014827787914774064],[127,147,72,0.014247537049330244],[127,147,73,0.013698967969941878],[127,147,74,0.013182211494008266],[127,147,75,0.012695534622515405],[127,147,76,0.012235456412378658],[127,147,77,0.011796913437216672],[127,147,78,0.01137347542310968],[127,147,79,0.01095761158053595],[127,148,64,0.015499665161794348],[127,148,65,0.016350509762531818],[127,148,66,0.017233778198600357],[127,148,67,0.016991749357142667],[127,148,68,0.01619429463667848],[127,148,69,0.015401525385179153],[127,148,70,0.014624280212792874],[127,148,71,0.01387200950031462],[127,148,72,0.013152507878905428],[127,148,73,0.012471708356440871],[127,148,74,0.0118335395932766],[127,148,75,0.01123984771467128],[127,148,76,0.010690383933650401],[127,148,77,0.010182859147845127],[127,148,78,0.009713066567906811],[127,148,79,0.009275073334657635],[127,149,64,0.015609073001605227],[127,149,65,0.016555161374024494],[127,149,66,0.01750235955549379],[127,149,67,0.01659434283936618],[127,149,68,0.01567038782818815],[127,149,69,0.014744944528633787],[127,149,70,0.013831986363848657],[127,149,71,0.012944529731014351],[127,149,72,0.012094172105524421],[127,149,73,0.011290707659743665],[127,149,74,0.010541822524517547],[127,149,75,0.00985287167102599],[127,149,76,0.009226739241519701],[127,149,77,0.008663784011307667],[127,149,78,0.008161871522468573],[127,149,79,0.007716494293604854],[127,150,64,0.01570770728814274],[127,150,65,0.016746020042915057],[127,150,66,0.01724049879631567],[127,150,67,0.016219363820347086],[127,150,68,0.015174648901659312],[127,150,69,0.014123346971991867],[127,150,70,0.013082581172468915],[127,150,71,0.01206892123399623],[127,150,72,0.011097727434989003],[127,150,73,0.01018258845412318],[127,150,74,0.009334855878781733],[127,150,75,0.00856327794399392],[127,150,76,0.007873734891752858],[127,150,77,0.007269078158271727],[127,150,78,0.00674907541867594],[127,150,79,0.006310463346593742],[127,151,64,0.015785932376553204],[127,151,65,0.01691201220551915],[127,151,66,0.01700899902276862],[127,151,67,0.01588109566301502],[127,151,68,0.014723067355446411],[127,151,69,0.013554435832703694],[127,151,70,0.012395428344198324],[127,151,71,0.01126609410763019],[127,151,72,0.010185456630828803],[127,151,73,0.009170776596921065],[127,151,74,0.008236928705106],[127,151,75,0.0073958956383632125],[127,151,76,0.006656382108891852],[127,151,77,0.006023551713858467],[127,151,78,0.005498889120090222],[127,151,79,0.0050801898887500785],[127,152,64,0.015835553815676022],[127,152,65,0.01704361607808575],[127,152,66,0.016818818335388695],[127,152,67,0.015591980991123926],[127,152,68,0.014329607324180663],[127,152,69,0.013053676365304745],[127,152,70,0.011787413690142124],[127,152,71,0.01055421404090494],[127,152,72,0.009376606779349626],[127,152,73,0.008275348622869005],[127,152,74,0.007268647678512422],[127,152,75,0.006371522534431222],[127,152,76,0.005595299912839093],[127,152,77,0.004947254135227135],[127,152,78,0.0044303914015333306],[127,152,79,0.0040433816426025115],[127,153,64,0.01584966580520563],[127,153,65,0.01713274628271242],[127,153,66,0.016679306279900174],[127,153,67,0.015362653609310968],[127,153,68,0.014006194769053619],[127,153,69,0.01263423860534294],[127,153,70,0.011272845325890313],[127,153,71,0.009948564108630997],[127,153,72,0.008687218606654458],[127,153,73,0.007512836267476177],[127,153,74,0.006446726086867262],[127,153,75,0.005506709128978702],[127,153,76,0.0047065058554366605],[127,153,77,0.004055284018848924],[127,153,78,0.0035573705932846716],[127,153,79,0.0032121309384297177],[127,154,64,0.015822577490563955],[127,154,65,0.017172716504285018],[127,154,66,0.016598202342665912],[127,154,67,0.015201896154037973],[127,154,68,0.013762633496414477],[127,154,69,0.012306872794940287],[127,154,70,0.010863291460051648],[127,154,71,0.009461349791974116],[127,154,72,0.00812990543427594],[127,154,73,0.0068959877489130645],[127,154,74,0.005783737313603497],[127,154,75,0.004813515422378496],[127,154,76,0.0040011881491235565],[127,154,77,0.0033575892144972696],[127,154,78,0.0028881655816044823],[127,154,79,0.0025928093981494884],[127,155,64,0.015749818636154628],[127,155,65,0.01715828072482391],[127,155,66,0.016581557361510076],[127,155,67,0.015116522932823928],[127,155,68,0.013606449472948744],[127,155,69,0.012079717075736128],[127,155,70,0.010567355282412169],[127,155,71,0.009101446765280167],[127,155,72,0.007713581351628484],[127,155,73,0.006433485429519593],[127,155,74,0.005287832485172827],[127,155,75,0.004299240172208714],[127,155,76,0.0034854589621008112],[127,155,77,0.0028587570756673213],[127,155,78,0.0024255060503948715],[127,155,79,0.0021859709610359706],[127,156,64,0.01562822523253735],[127,156,65,0.01708575359600318],[127,156,66,0.01663357729074537],[127,156,67,0.015111187395722625],[127,156,68,0.013542662892666871],[127,156,69,0.011958036922331201],[127,156,70,0.010390386449530586],[127,156,71,0.008874090978405642],[127,156,72,0.0074431381722412805],[127,156,73,0.006129619467374401],[127,156,74,0.0049624219420218475],[127,156,75,0.0039661223243624205],[127,156,76,0.0031600886458250962],[127,156,77,0.00255779466837769],[127,156,78,0.002166351841979545],[127,156,79,0.0019862631837299976],[127,157,64,0.015456105612699122],[127,157,65,0.016953210529677635],[127,157,66,0.016756388740765342],[127,157,67,0.015188113665139388],[127,157,68,0.013573487433705792],[127,157,69,0.011943895772803848],[127,157,70,0.010334128649772463],[127,157,71,0.008780510548769214],[127,157,72,0.0073190707266307335],[127,157,73,0.005983917055246191],[127,157,74,0.004805820179854217],[127,157,75,0.0038110143217908914],[127,157,76,0.0030202206510715045],[127,157,77,0.0024478987520930467],[127,157,78,0.0021017313082201277],[127,157,79,0.0019823467417725807],[127,158,64,0.015233487676984873],[127,158,65,0.01676076810998272],[127,158,66,0.01694972568952835],[127,158,67,0.015346751527831102],[127,158,68,0.013697956121550914],[127,158,69,0.012035756292419526],[127,158,70,0.01039630271038773],[127,158,71,0.008817498959112772],[127,158,72,0.007337050027738078],[127,158,73,0.005990726828737575],[127,158,74,0.004810853893977569],[127,158,75,0.0038250269787251045],[127,158,76,0.0030550668782963336],[127,158,77,0.0025162153378825445],[127,158,78,0.002216578516539831],[127,158,79,0.002156823055297037],[127,159,64,0.014962447855399116],[127,159,65,0.016510945458983035],[127,159,66,0.017210536735719567],[127,159,67,0.015583354266346161],[127,159,68,0.013911473189770056],[127,159,69,0.01222801168234979],[127,159,70,0.010570124686295122],[127,159,71,0.008976929035546245],[127,159,72,0.007487443825137207],[127,159,73,0.006138758007567297],[127,159,74,0.0049644327436832785],[127,159,75,0.003993145594528602],[127,159,76,0.003247583196631785],[127,159,77,0.0027435886199384265],[127,159,78,0.0024895691689382875],[127,159,79,0.0024861699576055876],[127,160,64,0.014647522469822575],[127,160,65,0.016209107220858065],[127,160,66,0.0175325122313351],[127,160,67,0.015890478676241878],[127,160,68,0.014205291299721402],[127,160,69,0.0125104464170642],[127,160,70,0.010843758343763136],[127,160,71,0.009245207155862316],[127,160,72,0.007754784041721368],[127,160,73,0.006410573813732677],[127,160,74,0.005247082435883928],[127,160,75,0.004293816966264506],[127,160,76,0.003574124853578533],[127,160,77,0.0031042990672443555],[127,160,78,0.0028929550857792596],[127,160,79,0.0029406853221589017],[127,161,64,0.014296202197145636],[127,161,65,0.01586398886716869],[127,161,66,0.017550991601968404],[127,161,67,0.016256406580220106],[127,161,68,0.014565913447008501],[127,161,69,0.012867625762114707],[127,161,70,0.011199701422226207],[127,161,71,0.009602667110401109],[127,161,72,0.008117180561364084],[127,161,73,0.0067820386878102165],[127,161,74,0.005632439707697128],[127,161,75,0.004698506942668487],[127,161,76,0.004004081484385298],[127,161,77,0.0035657904525598564],[127,161,78,0.0033923971000681882],[127,161,79,0.0034844385610710944],[127,162,64,0.013919510377374595],[127,162,65,0.015488305067823425],[127,162,66,0.01717769388507402],[127,162,67,0.0166644871109422],[127,162,68,0.014974418844797017],[127,162,69,0.013278213388379131],[127,162,70,0.011614105024123246],[127,162,71,0.01002290300699165],[127,162,72,0.008545680808183072],[127,162,73,0.007221718799944739],[127,162,74,0.006086708766367143],[127,162,75,0.005171228144553064],[127,162,76,0.004499491416257744],[127,162,77,0.004088385586011163],[127,162,78,0.003946796202142163],[127,162,79,0.0040752299065570305],[127,163,64,0.013532665958267832],[127,163,65,0.015099441918806543],[127,163,66,0.016788107048372174],[127,163,67,0.017092398990797293],[127,163,68,0.015405712032555691],[127,163,69,0.013714216359546552],[127,163,70,0.012056025445972937],[127,163,71,0.010472040577775213],[127,163,72,0.009003574527594442],[127,163,73,0.007690235325224807],[127,163,74,0.006568078721931349],[127,163,75,0.0056680374577992906],[127,163,76,0.005014634947990701],[127,163,77,0.0046249905105126025],[127,163,78,0.004508122769225067],[127,163,79,0.004664557385970839],[127,164,64,0.013155477886832787],[127,164,65,0.014719581174009445],[127,164,66,0.01640699966747937],[127,164,67,0.017512591505440062],[127,164,68,0.015829257068659137],[127,164,69,0.014142014730018308],[127,164,70,0.012488744834046266],[127,164,71,0.010910336556866912],[127,164,72,0.009448250692390435],[127,164,73,0.008142348494147857],[127,164,74,0.0070289953618204925],[127,164,75,0.006139447664999477],[127,164,76,0.00549853049583409],[127,164,77,0.005123613641163534],[127,164,78,0.005023892567930322],[127,164,79,0.005199980727865294],[127,165,64,0.012808272006181372],[127,165,65,0.014369559714634121],[127,165,66,0.016055902769550198],[127,165,67,0.017816293968164275],[127,165,68,0.016221584636875952],[127,165,69,0.014536950910978593],[127,165,70,0.012886337976706998],[127,165,71,0.011310551997484222],[127,165,72,0.009851136725764039],[127,165,73,0.008548152641872059],[127,165,74,0.007438236245668449],[127,165,75,0.0065529479510689145],[127,165,76,0.005917416526602243],[127,165,77,0.00554928751791698],[127,165,78,0.0054579825849942355],[127,165,79,0.0056442761925717885],[127,166,64,0.012507596437493246],[127,166,65,0.014065584793343619],[127,166,66,0.015750823032350997],[127,166,67,0.01751034280730605],[127,166,68,0.016566605928863005],[127,166,69,0.014882688680064968],[127,166,70,0.013232130139996252],[127,166,71,0.011655594688663859],[127,166,72,0.01019464632955433],[127,166,73,0.008889486123352655],[127,166,74,0.007776973974244805],[127,166,75,0.00688894334119694],[127,166,76,0.006250816935825153],[127,166,77,0.0058805309570563145],[127,166,78,0.005787774905294636],[127,166,79,0.005973553520096908],[127,167,64,0.012266679163833415],[127,167,65,0.013820679502789254],[127,167,66,0.015504682191918197],[127,167,67,0.017263937169086526],[127,167,68,0.01685119969497289],[127,167,69,0.015165848373624672],[127,167,70,0.013512435693534948],[127,167,71,0.011931446893955925],[127,167,72,0.010464414775741348],[127,167,73,0.00915162570550657],[127,167,74,0.008030112865559142],[127,167,75,0.007131945402033667],[127,167,76,0.006482821611346278],[127,167,77,0.006100973791906847],[127,167,78,0.0059963918785740635],[127,167,79,0.0061703724764860255],[127,168,64,0.012096396016870539],[127,168,65,0.013645627552712206],[127,168,66,0.015328236092653796],[127,168,67,0.017087918336655444],[127,168,68,0.017064368143955764],[127,168,69,0.015375210226249469],[127,168,70,0.0137158122879312],[127,168,71,0.012126471586444141],[127,168,72,0.010648656452938485],[127,168,73,0.009322692923444911],[127,168,74,0.00818574007232113],[127,168,75,0.007270062733078738],[127,168,76,0.006601609780411991],[127,168,77,0.006198905634891661],[127,168,78,0.006072262142935575],[127,168,79,0.006223317484203858],[127,169,64,0.01200648768178402],[127,169,65,0.013550161307495203],[127,169,66,0.015231229905228285],[127,169,67,0.016992113877219044],[127,169,68,0.017196174188172725],[127,169,69,0.015500709782311509],[127,169,70,0.013832119319011288],[127,169,71,0.012230536653022183],[127,169,72,0.010737355412199364],[127,169,73,0.009392909613359635],[127,169,74,0.008234442937954108],[127,169,75,0.007294375334995547],[127,169,76,0.006598875111065688],[127,169,77,0.006166744158343778],[127,169,78,0.006008623465999768],[127,169,79,0.006126525562839543],[127,170,64,0.01200703084514447],[127,170,65,0.01354440399581561],[127,170,66,0.015223806259955909],[127,170,67,0.016986701957824205],[127,170,68,0.017236431599177322],[127,170,69,0.015532191276436801],[127,170,70,0.013851341232798488],[127,170,71,0.012233912792299496],[127,170,72,0.010721240519811086],[127,170,73,0.009353651024709158],[127,170,74,0.008168438888496174],[127,170,75,0.007198138314847834],[127,170,76,0.006469098599202105],[127,170,77,0.006000371012212836],[127,170,78,0.005802914191661947],[127,170,79,0.005879124645571244],[127,171,64,0.012110165949396678],[127,171,65,0.013640568509357808],[127,171,66,0.015318168655212653],[127,171,67,0.01708382855109839],[127,171,68,0.01717314585932497],[127,171,69,0.015457916858734606],[127,171,70,0.013762173650444614],[127,171,71,0.012125943202363008],[127,171,72,0.010590543443842923],[127,171,73,0.009196294881968997],[127,171,74,0.007980516386151028],[127,171,75,0.006975813620227848],[127,171,76,0.006208668108605787],[127,171,77,0.005698334428706066],[127,171,78,0.005456052530608175],[127,171,79,0.00548458170098773],[127,172,64,0.012332084201596934],[127,172,65,0.013854915385284026],[127,172,66,0.01553050267113406],[127,172,67,0.017299479986016005],[127,172,68,0.016990703340911788],[127,172,69,0.015262829395880166],[127,172,70,0.013550370157775842],[127,172,71,0.01189348303086823],[127,172,72,0.01033353758869871],[127,172,73,0.008910864665163174],[127,172,74,0.007662785380682772],[127,172,75,0.006621928415940428],[127,172,76,0.005814843363805116],[127,172,77,0.005260917506552971],[127,172,78,0.004971602884668519],[127,172,79,0.004949960050008975],[127,173,64,0.012695276679783811],[127,173,65,0.014209972756766283],[127,173,66,0.015883157701449505],[127,173,67,0.017655613473581945],[127,173,68,0.016667806278175278],[127,173,69,0.014926566422513164],[127,173,70,0.01319684745785041],[127,173,71,0.011519106424765708],[127,173,72,0.009934855968409989],[127,173,73,0.008484465266894356],[127,173,74,0.007205235595496853],[127,173,75,0.006129758629592374],[127,173,76,0.005284565119946382],[127,173,77,0.004689071103062095],[127,173,78,0.004354828340872995],[127,173,79,0.004285085222751554],[127,174,64,0.013231048587053762],[127,174,65,0.014737021256628105],[127,174,66,0.016407092110186924],[127,174,67,0.017899577100106357],[127,174,68,0.016175150819938068],[127,174,69,0.014421222649456736],[127,174,70,0.012675546427495046],[127,174,71,0.010979078870897403],[127,174,72,0.009373585875371022],[127,174,73,0.007899509062067472],[127,174,74,0.006594100876486738],[127,174,75,0.005489836096438516],[127,174,76,0.004613107150413163],[127,174,77,0.003983210190686168],[127,174,78,0.0036116284109275368],[127,174,79,0.0035016186504091915],[127,175,64,0.013972517660123007],[127,175,65,0.015469139920521452],[127,175,66,0.017135028430101326],[127,175,67,0.017213407831607606],[127,175,68,0.015481810143966114],[127,175,69,0.01371735212229493],[127,175,70,0.011958936690500412],[127,175,71,0.010248238327644531],[127,175,72,0.00862739449919534],[127,175,73,0.007136951017286629],[127,175,74,0.005814069345200966],[127,175,75,0.004691003425942799],[127,175,76,0.0037938531741270997],[127,175,77,0.0031416013282393306],[127,175,78,0.0027454399206262286],[127,175,79,0.00260839218961432],[127,176,64,0.014920188714840328],[127,176,65,0.016406991511133662],[127,176,66,0.017990138831016727],[127,176,67,0.016324477686779446],[127,176,68,0.014587245275040293],[127,176,69,0.012814560574720421],[127,176,70,0.011046785208695654],[127,176,71,0.009326510223525881],[127,176,72,0.007696346452887365],[127,176,73,0.0061969619527003856],[127,176,74,0.004865374200154058],[127,176,75,0.00373350432880895],[127,176,76,0.002827000246955784],[127,176,77,0.0021643350600732323],[127,176,78,0.0017561867944311518],[127,176,79,0.0016051050017446616],[127,177,64,0.016059460048074264],[127,177,65,0.01753610389492765],[127,177,66,0.016912677013768532],[127,177,67,0.015247279636114906],[127,177,68,0.013506025107801809],[127,177,69,0.01172748761651975],[127,177,70,0.009953759535836694],[127,177,71,0.00822851576045614],[127,177,72,0.00659491687275467],[127,177,73,0.005093751901680011],[127,177,74,0.003761828010990412],[127,177,75,0.0026306140500295836],[127,177,76,0.0017251444918554625],[127,177,77,0.0010631898740990032],[127,177,78,6.546994511553046E-4],[127,177,79,5.01521366166505E-4],[127,178,64,0.017369250155877012],[127,178,65,0.017200952610426708],[127,178,66,0.015666855097588694],[127,178,67,0.014003168637827723],[127,178,68,0.012259815574831428],[127,178,69,0.010478158953495085],[127,178,70,0.008702251856443648],[127,178,71,0.006976985075923584],[127,178,72,0.005346116651653363],[127,178,73,0.0038505328689048286],[127,178,74,0.002526747667286916],[127,178,75,0.0014056470240712347],[127,178,76,5.114844851442511E-4],[127,178,77,-1.3886637481548615E-4],[127,178,78,-5.363971699656461E-4],[127,178,79,-6.801825877380216E-4],[127,179,64,0.01714676931601944],[127,179,65,0.015805793939587073],[127,179,66,0.014279729230769062],[127,179,67,0.012619537228683114],[127,179,68,0.010876484018492652],[127,179,69,0.009095000568526683],[127,179,70,0.007321284080139145],[127,179,71,0.005601534793420197],[127,179,72,0.003980124792429789],[127,179,73,0.0024979894984973605],[127,179,74,0.0011912483865168864],[127,179,75,9.006109055273127E-5],[127,179,76,-7.822753071274254E-4],[127,179,77,-0.0014099823820099078],[127,179,78,-0.0017852048161302418],[127,179,79,-0.001908158500259475],[127,180,64,0.01563029036942365],[127,180,65,0.014300000873897744],[127,180,66,0.012783401606369137],[127,180,67,0.011128899515003263],[127,180,68,0.009389118908310247],[127,180,69,0.007611777473569564],[127,180,70,0.005845349284194416],[127,180,71,0.004137396399870421],[127,180,72,0.002532888806286386],[127,180,73,0.0010727376801853222],[127,180,74,-2.0745192649231287E-4],[127,180,75,-0.0012784032394452544],[127,180,76,-0.0021179593607270585],[127,180,77,-0.002711639274944622],[127,180,78,-0.0030529535738482985],[127,180,79,-0.0031434755526874784],[127,181,64,0.014038630462500474],[127,181,65,0.012719505308741488],[127,181,66,0.011214054100768483],[127,181,67,0.009567882457627422],[127,181,68,0.007834963862120991],[127,181,69,0.006066456069739521],[127,181,70,0.004313188637365851],[127,181,71,0.0026240946975844425],[127,181,72,0.0010446925371520037],[127,181,73,-3.842293729571735E-4],[127,181,74,-0.0016277182645378693],[127,181,75,-0.0026575485752566006],[127,181,76,-0.0034528940997550473],[127,181,77,-0.004000776152806629],[127,181,78,-0.0042962834370013775],[127,181,79,-0.004342559628861578],[127,182,64,0.01241060632597883],[127,182,65,0.011103251360530562],[127,182,66,0.009610882837188106],[127,182,67,0.007976123254088837],[127,182,68,0.0062542648427215755],[127,182,69,0.0044999890706561956],[127,182,70,0.002766502861169089],[127,182,71,0.0011040755068275328],[127,182,72,-4.413092724865181E-4],[127,182,73,-0.0018291081013262706],[127,182,74,-0.003025174397234891],[127,182,75,-0.0040025116538394264],[127,182,76,-0.004741819028533175],[127,182,77,-0.005231825015920773],[127,182,78,-0.0054694052951904685],[127,182,79,-0.0054594811393791996],[127,183,64,0.01078689568642206],[127,183,65,0.009492050572027658],[127,183,66,0.008014932323106181],[127,183,67,0.00639507152801384],[127,183,68,0.004689029312841211],[127,183,69,0.0029550218603310997],[127,183,70,0.0012485972065525795],[127,183,71,-3.787182767843311E-4],[127,183,72,-0.0018805904239438957],[127,183,73,-0.003216865214359414],[127,183,74,-0.004354369445159797],[127,183,75,-0.0052675197635109845],[127,183,76,-0.005938735976844925],[127,183,77,-0.006358654848851219],[127,183,78,-0.006526140874346162],[127,183,79,-0.00644809080395385],[127,184,64,0.009208798335629927],[127,184,65,0.007927331690185927],[127,184,66,0.006467827710956548],[127,184,67,0.004866694940252343],[127,184,68,0.0031816960404610806],[127,184,69,0.0014745190715664707],[127,184,70,-1.970411550797827E-4],[127,184,71,-0.001780323237792757],[127,184,72,-0.0032287875267823425],[127,184,73,-0.0045028325851719725],[127,184,74,-0.005570435597467813],[127,184,75,-0.006407612824921019],[127,184,76,-0.0069986964780826035],[127,184,77,-0.007336424645291221],[127,184,78,-0.007421841179251513],[127,184,79,-0.00726400269959415],[127,185,64,0.007716888504635219],[127,185,65,0.006449783406778033],[127,185,66,0.005010403630040399],[127,185,67,0.003432086739034157],[127,185,68,0.0017737141542953643],[127,185,69,1.0031008455479805E-4],[127,185,70,-0.001528234506922982],[127,185,71,-0.0030582856486009724],[127,185,72,-0.004443269962210341],[127,185,73,-0.005644317118371837],[127,185,74,-0.006630737465801561],[127,185,75,-0.00738033140469015],[127,185,76,-0.007879527325198471],[127,185,77,-0.008123345179297062],[127,185,78,-0.008115182995951873],[127,185,79,-0.007866423883457896],[127,186,64,0.006349556781430254],[127,186,65,0.005097888345727648],[127,186,66,0.003681227934770884],[127,186,67,0.0021299736680626576],[127,186,68,5.040299561687114E-4],[127,186,69,-0.0011284479413561932],[127,186,70,-0.002705675987592274],[127,186,71,-0.004173246439410712],[127,186,72,-0.005484746483603445],[127,186,73,-0.006602226336300803],[127,186,74,-0.0074965136078007245],[127,186,75,-0.008147370966791835],[127,186,76,-0.0085434943682641],[127,186,77,-0.008682349335975262],[127,186,78,-0.008569843010902002],[127,186,79,-0.00821982988937316],[127,187,64,0.0051414397022009105],[127,187,65,0.003906346473988886],[127,187,66,0.0025150186109084084],[127,187,67,9.951225525818674E-4],[127,187,68,-5.925200962815829E-4],[127,187,69,-0.0021768909763357908],[127,187,70,-0.003694562355990212],[127,187,71,-0.005090582109843267],[127,187,72,-0.006318909451491725],[127,187,73,-0.0073427104770250285],[127,187,74,-0.008134510789885346],[127,187,75,-0.008676202691085396],[127,187,76,-0.00895890462972152],[127,187,77,-0.008982670815258977],[127,187,78,-0.008756049093075102],[127,187,79,-0.00829548537612606],[127,188,64,0.0041217350364409246],[127,188,65,0.002904386005663451],[127,188,66,0.0015409519779454727],[127,188,67,5.6643784683391946E-5],[127,188,68,-0.0014869119161075937],[127,188,69,-0.0030161545286392496],[127,188,70,-0.004466299535893617],[127,188,71,-0.005782102829303323],[127,188,72,-0.006918117756980445],[127,188,73,-0.007838821942038625],[127,188,74,-0.008518611590908574],[127,188,75,-0.008941661207171568],[127,188,76,-0.009101646818891971],[127,188,77,-0.009001331014812677],[127,188,78,-0.008652008265107211],[127,188,79,-0.008072809173737747],[127,189,64,0.00331240067770114],[127,189,65,0.00211395976262667],[127,189,66,7.80860223067427E-4],[127,189,67,-6.638101687649097E-4],[127,189,68,-0.002157733594142984],[127,189,69,-0.0036251671969713952],[127,189,70,-0.005000282431475099],[127,189,71,-0.0062278090383405885],[127,189,72,-0.007263119541100762],[127,189,73,-0.00807219297239051],[127,189,74,-0.008631455975379797],[127,189,75,-0.008927499604650797],[127,189,76,-0.00895667032579456],[127,189,77,-0.008724533882281213],[127,189,78,-0.008245210859867532],[127,189,79,-0.007540582931181954],[127,190,64,0.0027262349447167706],[127,190,65,0.0015478248500527276],[127,190,66,2.473162009285258E-4],[127,190,67,-0.001153953208438651],[127,190,68,-0.0025930843481207174],[127,190,69,-0.003992533092898163],[127,190,70,-0.005285750578053282],[127,190,71,-0.006417707925507662],[127,190,72,-0.0073448158675608515],[127,190,73,-0.008034732468413177],[127,190,74,-0.008466057486952368],[127,190,75,-0.008627912087721776],[127,190,76,-0.008519402765720961],[127,190,77,-0.008148968503055081],[127,190,78,-0.007533610319736566],[127,190,79,-0.006698002515533909],[127,191,64,0.002364835993138571],[127,191,65,0.0012075034027713035],[127,191,66,-5.839666529282206E-5],[127,191,67,-0.0014128830617717387],[127,191,68,-0.002792574562679546],[127,191,69,-0.00411850493906069],[127,191,70,-0.00532372126226283],[127,191,71,-0.0063536912128495885],[127,191,72,-0.007166066552204252],[127,191,73,-0.00773034289993283],[127,191,74,-0.008027414729363297],[127,191,75,-0.008049024642580139],[127,191,76,-0.007797106130148081],[127,191,77,-0.007283019157411989],[127,191,78,-0.006526678047417509],[127,191,79,-0.00555557124859332],[127,192,64,0.002216437937014399],[127,192,65,0.0010811220592787006],[127,192,66,-1.484316415539183E-4],[127,192,67,-0.0014532099161377844],[127,192,68,-0.0027694289530933803],[127,192,69,-0.0040170497248081995],[127,192,70,-0.0051290018118289775],[127,192,71,-0.006051475737541064],[127,192,72,-0.006743539393625146],[127,192,73,-0.007176658280315654],[127,192,74,-0.007334118812654667],[127,192,75,-0.007210354080038808],[127,192,76,-0.006810171576345613],[127,192,77,-0.0061478825403459446],[127,192,78,-0.005246332659464595],[127,192,79,-0.004135833992883252],[127,193,64,0.0022536211825734073],[127,193,65,0.0011411277255004718],[127,193,66,-5.0645450454488746E-5],[127,193,67,-0.0013032984691797272],[127,193,68,-0.0025526949651556883],[127,193,69,-0.0037180088722324213],[127,193,70,-0.004732282816439881],[127,193,71,-0.005542608366624785],[127,193,72,-0.006109604085251435],[127,193,73,-0.0064068041984834245],[127,193,74,-0.00641995744696028],[127,193,75,-0.0061462358029875505],[127,193,76,-0.005593352857393329],[127,193,77,-0.004778591788701611],[127,193,78,-0.00372774292713106],[127,193,79,-0.002473951014992876],[127,194,64,0.0024308943858036593],[127,194,65,0.0013418771010972883],[127,194,66,1.8901301448122083E-4],[127,194,67,-0.0010096257202709391],[127,194,68,-0.0021895585979220494],[127,194,69,-0.0032693549315557977],[127,194,70,-0.004182314097000167],[127,194,71,-0.004876536825542713],[127,194,72,-0.005314272119134228],[127,194,73,-0.005471180917580656],[127,194,74,-0.005335516363999817],[127,194,75,-0.004907220628482245],[127,194,76,-0.004196938356159124],[127,194,77,-0.0032249469034526957],[127,194,78,-0.0020200036138461283],[127,194,79,-6.181104609004048E-4],[127,195,64,0.0026827935040398105],[127,195,65,0.001617755419007371],[127,195,66,5.046565664315238E-4],[127,195,67,-6.38581294088661E-4],[127,195,68,-0.0017470879687038392],[127,195,69,-0.0027388637745555952],[127,195,70,-0.0035474884003563255],[127,195,71,-0.004122086363636188],[127,195,72,-0.004426547470827249],[127,195,73,-0.004438669564883893],[127,195,74,-0.004149223671758877],[127,195,75,-0.003560941761092406],[127,195,76,-0.0026874274324902034],[127,195,77,-0.001551989925543279],[127,195,78,-1.8640192802706282E-4],[127,195,79,0.0013704182785652772],[127,196,64,0.002956776362057747],[127,196,65,0.0019165498584145441],[127,196,66,8.442710044021281E-4],[127,196,67,-2.4223218113529762E-4],[127,196,68,-0.0012776742174598473],[127,196,69,-0.0021794758772831703],[127,196,70,-0.002881477778803322],[127,196,71,-0.0033338040521044576],[127,196,72,-0.0035019604763292266],[127,196,73,-0.0033658599051454106],[127,196,74,-0.0029187753392075797],[127,196,75,-0.0021662210996371447],[127,196,76,-0.0011247626432390099],[127,196,77,1.7924436292453622E-4],[127,196,78,0.0017109850240575582],[127,196,79,0.003428585519764429],[127,197,64,0.003242902255928442],[127,197,65,0.0022292103581635016],[127,197,66,0.0011994829072332787],[127,197,67,1.7143017346002234E-4],[127,197,68,-7.893506755252854E-4],[127,197,69,-0.0015998306612198922],[127,197,70,-0.002194191729669758],[127,197,71,-0.0025235950218652097],[127,197,72,-0.0025551643264273053],[127,197,73,-0.002270901288194427],[127,197,74,-0.0016665329563173644],[127,197,75,-7.502923429990642E-4],[127,197,76,4.5836725766019943E-4],[127,197,77,0.0019301233732423781],[127,197,78,0.003627200004985211],[127,197,79,0.0055048469099444304],[127,198,64,0.00353750016818016],[127,198,65,0.002552771391979169],[127,198,66,0.001567778492606403],[127,198,67,6.000375483397747E-4],[127,198,68,-2.8476023198555203E-4],[127,198,69,-0.0010034025722995717],[127,198,70,-0.0014905901996036207],[127,198,71,-0.0016986181697582902],[127,198,72,-0.0015962557325903566],[127,198,73,-0.0011675618894890182],[127,198,74,-4.1063742499292745E-4],[127,198,75,6.636857254706985E-4],[127,198,76,0.0020332168385952323],[127,198,77,0.0036658395037042573],[127,198,78,0.005521004419241413],[127,198,79,0.007551280808206612],[127,199,64,0.003839065469797325],[127,199,65,0.00288622108657398],[127,199,66,0.0019483700323661153],[127,199,67,0.0010427280296347859],[127,199,68,2.3477287792160345E-4],[127,199,69,-3.9248229131496736E-4],[127,199,70,-7.74516306511039E-4],[127,199,71,-8.649043741477908E-4],[127,199,72,-6.341084148628639E-4],[127,199,73,-6.820650838809154E-5],[127,199,74,8.324376038212195E-4],[127,199,75,0.002054563934692514],[127,199,76,0.003573463498260837],[127,199,77,0.005354482245546507],[127,199,78,0.0073545805070121045],[127,199,79,0.009523946730995273],[127,200,64,0.004147691810336501],[127,200,65,0.003229971276695088],[127,200,66,0.002341726064155312],[127,200,67,0.0014997552992780266],[127,200,68,7.689489326053566E-4],[127,200,69,2.3164315263630547E-4],[127,200,70,-4.8745632790887847E-5],[127,200,71,-2.725941508467451E-5],[127,200,72,3.2388417489649586E-4],[127,200,73,0.0010166325999194502],[127,200,74,0.0020484960394079473],[127,200,75,0.0034040007494692192],[127,200,76,0.005056196947828416],[127,200,77,0.006968219963973224],[127,200,78,0.009094903359726814],[127,200,79,0.011384442703708557],[127,201,64,0.004464533004829069],[127,201,65,0.0035853615377317463],[127,201,66,0.0027491407347212966],[127,201,67,0.001972143883565961],[127,201,68,0.0013182531631907783],[127,201,69,8.685750782669085E-4],[127,201,70,6.850409207896238E-4],[127,201,71,8.10922340972017E-4],[127,201,72,0.0012721690781099205],[127,201,73,0.002078802209911919],[127,201,74,0.003226361736549244],[127,201,75,0.004697407250282288],[127,201,76,0.006463070386882772],[127,201,77,0.008484657712170055],[127,201,78,0.010715302666798328],[127,201,79,0.013101665175738025],[127,202,64,0.00479129503340688],[127,202,65,0.0039541973823918755],[127,202,66,0.0031723425556512163],[127,202,67,0.0024613907643814773],[127,202,68,0.001883771322716664],[127,202,69,0.0015187533802524659],[127,202,70,0.001426361633739552],[127,202,71,0.0016479346103804677],[127,202,72,0.002207498336830246],[127,202,73,0.0031131934834176837],[127,202,74,0.0043587547332166405],[127,202,75,0.0059250410636975115],[127,202,76,0.0077816155776872275],[127,202,77,0.009888373481218165],[127,202,78,0.012197216779508632],[127,202,79,0.014653774249535467],[127,203,64,0.005129758295977023],[127,203,65,0.004338322836772709],[127,203,66,0.003613142884243075],[127,203,67,0.0029692137916553256],[127,203,68,0.0024670609778053364],[127,203,69,0.0021834730595940532],[127,203,70,0.0021761167847573894],[127,203,71,0.0024841273959494486],[127,203,72,0.003129499186878259],[127,203,73,0.0041185278316145605],[127,203,74,0.005443303202161051],[127,203,75,0.007083251330343748],[127,203,76,0.009006724121985634],[127,203,77,0.011172635395083572],[127,203,78,0.013532141790266853],[127,203,79,0.016030367091897646],[127,204,64,0.005481330292876644],[127,204,65,0.00473922764201109],[127,204,66,0.004073124475939398],[127,204,67,0.0034973473732209472],[127,204,68,0.0030700791576109172],[127,204,69,0.0028649678745304463],[127,204,70,0.002936850813148344],[127,204,71,0.0033223679666713117],[127,204,72,0.004041351408516172],[127,204,73,0.0050982649887528235],[127,204,74,0.00648369306013821],[127,204,75,0.00817587688643925],[127,204,76,0.010142297339963614],[127,204,77,0.012341302461205574],[127,204,78,0.014723778432182057],[127,204,79,0.017234862507096018],[127,205,64,0.005846628933120873],[127,205,65,0.005157689360426657],[127,205,66,0.004553370490012735],[127,205,67,0.004047385956905547],[127,205,68,0.003695167037899046],[127,205,69,0.0035665619784739423],[127,205,70,0.003713094898738266],[127,205,71,0.004168595914982062],[127,205,72,0.004950573372310996],[127,205,73,0.006061635077121],[127,205,74,0.007490957256723389],[127,205,75,0.009215799918935277],[127,205,76,0.011203067240623097],[127,205,77,0.013410911581937749],[127,205,78,0.015790379703197546],[127,205,79,0.01828709975476411],[127,206,64,0.006225096704510237],[127,206,65,0.005593450699515504],[127,206,66,0.005054234366785307],[127,206,67,0.0046206758592094565],[127,206,68,0.0043450923813537195],[127,206,69,0.0042928904590429735],[127,206,70,0.0045117910886732955],[127,206,71,0.005032473650446564],[127,206,72,0.005869918380513669],[127,206,73,0.007024796510641188],[127,206,74,0.00848490683760553],[127,206,75,0.010226657432118903],[127,206,76,0.012216591155106862],[127,206,77,0.014412953618481161],[127,206,78,0.016767302209050094],[127,206,79,0.019226154788575013],[127,207,64,0.006618113960271775],[127,207,65,0.006048774433135861],[127,207,66,0.005579178991015554],[127,207,67,0.005222259897477102],[127,207,68,0.005026907829440519],[127,207,69,0.005053474401564749],[127,207,70,0.0053453892094066716],[127,207,71,0.005929818554103394],[127,207,72,0.0068189694271074035],[127,207,73,0.008011439631965073],[127,207,74,0.009493612849289117],[127,207,75,0.011241097401035245],[127,207,76,0.013220207430258186],[127,207,77,0.015389485183564906],[127,207,78,0.01770126306634254],[127,207,79,0.018847263153109518],[127,208,64,0.007038975239171475],[127,208,65,0.006539232727255785],[127,208,66,0.006145776086891588],[127,208,67,0.005871415021069035],[127,208,68,0.005761317118754337],[127,208,69,0.005870196813963202],[127,208,70,0.006236730162343214],[127,208,71,0.006884230733022997],[127,208,72,0.007821907925818963],[127,208,73,0.009046169462401745],[127,208,74,0.010541966905462214],[127,208,75,0.012284183012820553],[127,208,76,0.01423905969606288],[127,208,77,0.016365665326516524],[127,208,78,0.018617400115989266],[127,208,79,0.018070038538171244],[127,209,64,0.007501969519577794],[127,209,65,0.007081056224009164],[127,209,66,0.006771793235295956],[127,209,67,0.0065870057941247034],[127,209,68,0.006567860030043225],[127,209,69,0.006762899417792959],[127,209,70,0.007205631029325093],[127,209,71,0.00791522131884037],[127,209,72,0.008897702462232157],[127,209,73,0.010147220275288995],[127,209,74,0.011647322612955946],[127,209,75,0.013372287108642742],[127,209,76,0.015288487078567265],[127,209,77,0.0173557943922482],[127,209,78,0.01947948784445471],[127,209,79,0.01731808614800866],[127,210,64,0.008018785955567953],[127,210,65,0.007687140013243953],[127,210,66,0.007470980599530746],[127,210,67,0.007383252675750341],[127,210,68,0.007460873671775483],[127,210,69,0.007745750630602305],[127,210,70,0.008265868592278769],[127,210,71,0.009036009124699233],[127,210,72,0.010058899293998513],[127,210,73,0.011326398837248173],[127,210,74,0.012820724485540776],[127,210,75,0.014515710347051567],[127,210,76,0.016378103229997276],[127,210,77,0.018368891765337587],[127,210,78,0.018629610317657672],[127,210,79,0.01658316014930012],[127,211,64,0.008598503772346338],[127,211,65,0.008367108848568576],[127,211,66,0.008253216605407558],[127,211,67,0.008269962577001515],[127,211,68,0.008449810298861224],[127,211,69,0.008827650381326988],[127,211,70,0.00942566852156849],[127,211,71,0.010254089545828191],[127,211,72,0.01131226459576042],[127,211,73,0.01258979225714531],[127,211,74,0.01406767262017327],[127,211,75,0.015719493227967472],[127,211,76,0.01751264584576983],[127,211,77,0.01940957296796822],[127,211,78,0.01777184695184776],[127,211,79,0.01586026994843443],[127,212,64,0.009247615553502009],[127,212,65,0.009127415956144887],[127,212,66,0.009124686132289997],[127,212,67,0.009252789833986088],[127,212,68,0.00953958239524812],[127,212,69,0.010012657719644338],[127,212,70,0.010688211385847088],[127,212,71,0.011571812697624823],[127,212,72,0.012659426706662438],[127,212,73,0.013938464975487994],[127,212,74,0.015388864104485837],[127,212,75,0.016984191021637295],[127,212,76,0.018692774015981548],[127,212,77,0.018662267609965012],[127,212,78,0.016904543590976217],[127,212,79,0.01514687895360899],[127,213,64,0.00997008447866535],[127,213,65,0.009971476031101675],[127,213,66,0.010088091826834561],[127,213,67,0.010333528210908039],[127,213,68,0.010730935620549376],[127,213,69,0.011300441785709225],[127,213,70,0.012052155993233294],[127,213,71,0.012986971220323884],[127,213,72,0.01409751870459948],[127,213,73,0.01536914509039827],[127,213,74,0.01678091120259695],[127,213,75,0.01830661148230129],[127,213,76,0.019227074452033362],[127,213,77,0.017635567362700916],[127,213,78,0.01602836899311398],[127,213,79,0.01444220685186567],[127,214,64,0.010767436102861974],[127,214,65,0.010899833048499128],[127,214,66,0.011142899181428405],[127,214,67,0.011510434574458423],[127,214,68,0.012020850244960503],[127,214,69,0.012686756726372777],[127,214,70,0.013512180587915949],[127,214,71,0.014493398187196638],[127,214,72,0.015619821631870996],[127,214,73,0.01687490020860629],[127,214,74,0.018237036349656628],[127,214,75,0.019465653285253823],[127,214,76,0.01803772265265413],[127,214,77,0.016586932507289525],[127,214,78,0.015145677427920988],[127,214,79,0.013746636367123907],[127,215,64,0.011638885300212759],[127,215,65,0.011910363546101886],[127,215,66,0.012285616047532607],[127,215,67,0.012778584906208314],[127,215,68,0.013402971718213296],[127,215,69,0.01416394116083531],[127,215,70,0.015059542437569611],[127,215,71,0.016081575558026064],[127,215,72,0.017216408694350045],[127,215,73,0.018445802999201615],[127,215,74,0.019403215642245317],[127,215,75,0.01812210620681438],[127,215,76,0.016818908457482754],[127,215,77,0.015521948664573959],[127,215,78,0.014259958708618592],[127,215,79,0.01306122553370876],[127,216,64,0.012581499024204976],[127,216,65,0.012998516064412456],[127,216,66,0.01351010727990237],[127,216,67,0.014130263342169568],[127,216,68,0.01486807103681544],[127,216,69,0.0157214428123502],[127,216,70,0.01668265635494806],[127,216,71,0.017739253621071278],[127,216,72,0.018874790750453348],[127,216,73,0.01908766138188965],[127,216,74,0.017924643670508486],[127,216,75,0.016746889260796254],[127,216,76,0.015579349334803512],[127,216,77,0.014447252503737292],[127,216,78,0.013375376529630343],[127,216,79,0.012387326588864624],[127,217,64,0.013590395564125692],[127,217,65,0.014157587455020371],[127,217,66,0.01480794523050163],[127,217,67,0.015555384947995436],[127,217,68,0.0164045355888783],[127,217,69,0.017346368932648064],[127,217,70,0.018367692701323227],[127,217,71,0.019452081864561977],[127,217,72,0.01858445341266206],[127,217,73,0.017502046168493535],[127,217,74,0.016416859707991067],[127,217,75,0.015351536035873274],[127,217,76,0.014328646900793588],[127,217,77,0.013370072607045957],[127,217,78,0.012496396041137359],[127,217,79,0.011726312656383516],[127,218,64,0.0146589810020356],[127,218,65,0.01537903679094623],[127,218,66,0.01616879683046841],[127,218,67,0.017041952954011702],[127,218,68,0.017998891167081508],[127,218,69,0.0190240631518687],[127,218,70,0.019003631415596606],[127,218,71,0.01796999337253884],[127,218,72,0.016925977697017026],[127,218,73,0.015893313475199487],[127,218,74,0.014893690296023178],[127,218,75,0.013948201335711011],[127,218,76,0.013076810197506429],[127,218,77,0.012297842311902778],[127,218,78,0.011627501651528536],[127,218,79,0.01107941346082594],[127,219,64,0.01577922359632925],[127,219,65,0.016652837631741874],[127,219,66,0.017580848014147214],[127,219,67,0.01857655118583203],[127,219,68,0.019403057316301174],[127,219,69,0.0183742797114068],[127,219,70,0.017324186886082737],[127,219,71,0.016276027430577485],[127,219,72,0.015252833739323669],[127,219,73,0.014276888352570283],[127,219,74,0.013369222944800243],[127,219,75,0.012549150866306587],[127,219,76,0.011833834086374699],[127,219,77,0.011237885326183179],[127,219,78,0.010773006107190052],[127,219,79,0.010447661376734859],[127,220,64,0.016941966836077994],[127,220,65,0.017967869411229624],[127,220,66,0.019031266250566198],[127,220,67,0.018905570166350732],[127,220,68,0.01782311755091506],[127,220,69,0.016723010870873464],[127,220,70,0.01563224565803101],[127,220,71,0.014576823465839852],[127,220,72,0.01358123904024732],[127,220,73,0.012668010122635413],[127,220,74,0.011857250875330962],[127,220,75,0.011166289850480925],[127,220,76,0.010609333351560016],[127,220,77,0.010197174963747663],[127,220,78,0.009936951955433924],[127,220,79,0.009831949178664425],[127,221,64,0.018137281924380803],[127,221,65,0.019312348726295572],[127,221,66,0.018556118486393706],[127,221,67,0.01740517371934007],[127,221,68,0.016231912788853928],[127,221,69,0.01506807508756721],[127,221,70,0.013944193131738789],[127,221,71,0.012888550124365766],[127,221,72,0.011926714097800965],[127,221,73,0.011081125813135025],[127,221,74,0.010370741440866143],[127,221,75,0.009810730963145423],[127,221,76,0.009412233152548105],[127,221,77,0.00918216789636755],[127,221,78,0.009123106549577096],[127,221,79,0.009233200914485816],[127,222,64,0.019354860458418974],[127,222,65,0.018402206267796234],[127,222,66,0.01715786005905707],[127,222,67,0.015900750324472156],[127,222,68,0.01464445893398134],[127,222,69,0.013424827854676965],[127,222,70,0.012275355564871202],[127,222,71,0.011226133867189873],[127,222,72,0.010303423259124256],[127,222,73,0.009529293213234648],[127,222,74,0.00892132842935476],[127,222,75,0.008492402022357157],[127,222,76,0.008250516509862355],[127,222,77,0.008198713365343512],[127,222,78,0.008335051804271316],[127,222,79,0.00865265737504863],[127,223,64,0.018507011666324246],[127,223,65,0.017125121361758713],[127,223,66,0.015761302193202202],[127,223,67,0.014405699792838421],[127,223,68,0.013074529053359702],[127,223,69,0.011807083198200893],[127,223,70,0.010639273922333206],[127,223,71,0.009602550842363526],[127,223,72,0.008723512544142113],[127,223,73,0.008023593575808107],[127,223,74,0.007518828488415691],[127,223,75,0.007219693913117086],[127,223,76,0.007131029551008096],[127,223,77,0.007252038839949544],[127,223,78,0.007576369952996472],[127,223,79,0.008092277676441004],[127,224,64,0.017367609552042817],[127,224,65,0.015853622965628533],[127,224,66,0.014377894004794167],[127,224,67,0.012931822779229508],[127,224,68,0.011533929768571054],[127,224,69,0.010226365193386669],[127,224,70,0.009046954672423712],[127,224,71,0.008028104662891125],[127,224,72,0.007196444311291723],[127,224,73,0.006572554032132767],[127,224,74,0.00617078195621021],[127,224,75,0.005999149262960878],[127,224,76,0.006059345285126142],[127,224,77,0.006346813149595799],[127,224,78,0.00685092659698409],[127,224,79,0.0075552585053302],[127,225,64,0.01623519393736165],[127,225,65,0.01459696160866837],[127,225,66,0.013017189289198691],[127,225,67,0.011488601664522856],[127,225,68,0.010031741755892859],[127,225,69,0.008691128883031222],[127,225,70,0.007506097123523036],[127,225,71,0.006509689831768501],[127,225,72,0.0057283286791749615],[127,225,73,0.00518157982916448],[127,225,74,0.004882018425323351],[127,225,75,0.004835192430276019],[127,225,76,0.005039686713698829],[127,225,77,0.005487288151361451],[127,225,78,0.006163252364522503],[127,225,79,0.00704667260165823],[127,226,64,0.01511678488997205],[127,226,65,0.013362265745302129],[127,226,66,0.011686139262356803],[127,226,67,0.01008244122412262],[127,226,68,0.008573523773564124],[127,226,69,0.007205950114277302],[127,226,70,0.006020296941638044],[127,226,71,0.005050040603503501],[127,226,72,0.004321251666802751],[127,226,73,0.003852396547402956],[127,226,74,0.003654247412041066],[127,226,75,0.0037299014074394054],[127,226,76,0.004074910120234174],[127,226,77,0.0046775200232317534],[127,226,78,0.00551902452023244],[127,226,79,0.006574228064614163],[127,227,64,0.014020231564361663],[127,227,65,0.012157605076012276],[127,227,66,0.010392774122205874],[127,227,67,0.008720972548612382],[127,227,68,0.007166215860841885],[127,227,69,0.005776953904262658],[127,227,70,0.004594881411787274],[127,227,71,0.0036538183282586556],[127,227,72,0.002979430876607479],[127,227,73,0.0025890689860839067],[127,227,74,0.0024917213113386243],[127,227,75,0.0026880889053409953],[127,227,76,0.003170778446110822],[127,227,77,0.003924615758318169],[127,227,78,0.004927080217565813],[127,227,79,0.006148860479132154],[127,228,64,0.01296595013535883],[127,228,65,0.01100645983609934],[127,228,66,0.009163309002861306],[127,228,67,0.007432763430717932],[127,228,68,0.005840303256381381],[127,228,69,0.00443604418418435],[127,228,70,0.003262616347849214],[127,228,71,0.0023540446575385345],[127,228,72,0.0017354998479046848],[127,228,73,0.0014231740938820498],[127,228,74,0.0014242824262900738],[127,228,75,0.0017371910028775954],[127,228,76,0.002351673117352047],[127,228,77,0.0032492936606246937],[127,228,78,0.004403922586670278],[127,228,79,0.005782377781684475],[127,229,64,0.01197632983773966],[127,229,65,0.009934640818067884],[127,229,66,0.008026630915159993],[127,229,67,0.006249405101288224],[127,229,68,0.0046296365781796295],[127,229,69,0.0032187726045387562],[127,229,70,0.0020600965356406343],[127,229,71,0.0011876177637698084],[127,229,72,6.258582256507604E-4],[127,229,73,3.8977010847965696E-4],[127,229,74,4.847859679879968E-4],[127,229,75,9.070022870257624E-4],[127,229,76,0.0016434973221112394],[127,229,77,0.0026727839097689682],[127,229,78,0.003965397736063273],[127,229,79,0.005484621413267487],[127,230,64,0.011070689547476482],[127,230,65,0.008964132009848575],[127,230,66,0.007007071025669051],[127,230,67,0.00519724157295325],[127,230,68,0.003562189996145333],[127,230,69,0.002154281720278999],[127,230,70,0.0010171023035847023],[127,230,71,1.8436941581911559E-4],[127,230,72,-3.202381610092754E-4],[127,230,73,-4.831156574874375E-4],[127,230,74,-3.0063039789558234E-4],[127,230,75,2.211181410082463E-4],[127,230,76,0.0010666770857420988],[127,230,77,0.0022117583482784953],[127,230,78,0.0036238966740554843],[127,230,79,0.00526324783241791],[127,231,64,0.010264951365217177],[127,231,65,0.008112755383013483],[127,231,66,0.006124076285258812],[127,231,67,0.004297063854660075],[127,231,68,0.002659791863167585],[127,231,69,0.0012650827379684553],[127,231,70,1.564319448733296E-4],[127,231,71,-6.3304345145883E-4],[127,231,72,-0.0010807251035714603],[127,231,73,-0.001174475381647863],[127,231,74,-9.124799605992E-4],[127,231,75,-3.0295008954858764E-4],[127,231,76,6.363161719610324E-4],[127,231,77,0.0018785142846406797],[127,231,78,0.0033885554869666733],[127,231,79,0.0051239311760963805],[127,232,64,0.009571347170426067],[127,232,65,0.007393870756756429],[127,232,66,0.005391919006379583],[127,232,67,0.00356384602886961],[127,232,68,0.0019379024052370024],[127,232,69,5.668869691469392E-4],[127,232,70,-5.062039623093976E-4],[127,232,71,-0.001249175506663775],[127,232,72,-0.0016406948581276688],[127,232,73,-0.0016702135872884807],[127,232,74,-0.0013377506004280972],[127,232,75,-6.535349532896274E-4],[127,232,76,3.6249209837097273E-4],[127,232,77,0.0016813162485599836],[127,232,78,0.0032656307565738876],[127,232,79,0.005070758632738412],[127,233,64,0.008998157337857398],[127,233,65,0.006816109627827604],[127,233,66,0.004819442995657575],[127,233,67,0.0030065215298848754],[127,233,68,0.0014054365742872063],[127,233,69,6.848892250026651E-5],[127,233,70,-9.622284862789493E-4],[127,233,71,-0.001655760254318022],[127,233,72,-0.0019922800045786685],[127,233,73,-0.001962945986029734],[127,233,74,-0.0015696199343623847],[127,233,75,-8.244485061356617E-4],[127,233,76,2.506932126250057E-4],[127,233,77,0.0016248964466839017],[127,233,78,0.003259051877548344],[127,233,79,0.00510682119652768],[127,234,64,0.008549482398153545],[127,234,65,0.006383143810890543],[127,234,66,0.004409847154644334],[127,234,67,0.0026278006136964886],[127,234,68,0.0010646331436648547],[127,234,69,-2.2829778240696455E-4],[127,234,70,-0.0012101832259666708],[127,234,71,-0.0018516063022984792],[127,234,72,-0.0021344547530616834],[127,234,73,-0.0020517025909783863],[127,234,74,-0.0016070600994435532],[127,234,75,-8.14491650913314E-4],[127,234,76,3.0239901703870065E-4],[127,234,77,0.001711116261682936],[127,234,78,0.0033711527668084987],[127,234,79,0.0052350024350153535],[127,235,64,0.00822504846893915],[127,235,65,0.006093489782153656],[127,235,66,0.004160507511857048],[127,235,67,0.0024240300600099035],[127,235,68,9.109711745497834E-4],[127,235,69,-3.2865045218030334E-4],[127,235,70,-0.0012556508086442185],[127,235,71,-0.0018424212024547994],[127,235,72,-0.002072752103063471],[127,235,73,-0.0019415333650979968],[127,235,74,-0.0014543302924112007],[127,235,75,-6.268351729980022E-4],[127,235,76,5.158059212994597E-4],[127,235,77,0.0019397911204378437],[127,235,78,0.0036035854309221732],[127,235,79,0.005458967868259644],[127,236,64,0.00802004732464218],[127,236,65,0.005940349664688708],[127,236,66,0.00406283869636408],[127,236,67,0.0023850961935427176],[127,236,68,9.331350252006407E-4],[127,236,69,-2.4469204108573266E-4],[127,236,70,-0.001111113630211778],[127,236,71,-0.00164056137882318],[127,236,72,-0.0018188952464001686],[127,236,73,-0.0016430146658139315],[127,236,74,-0.0011203551916734956],[127,236,75,-2.6827046079251746E-4],[127,236,76,8.867005714577112E-4],[127,236,77,0.0023096810136695413],[127,236,78,0.00395841780266514],[127,236,79,0.005784357491634675],[127,237,64,0.007925012011927128],[127,237,65,0.005911489836059962],[127,237,66,0.004102195906519408],[127,237,67,0.0024943723535910587],[127,237,68,0.0011130291128330161],[127,237,69,4.610740941368783E-6],[127,237,70,-7.95747443931048E-4],[127,237,71,-0.001264706645184689],[127,237,72,-0.0013903416046230133],[127,237,73,-0.001171654759601757],[127,237,74,-6.179874147716435E-4],[127,237,75,2.516720580640341E-4],[127,237,76,0.001409482846011531],[127,237,77,0.002819648876713127],[127,237,78,0.004439418170328668],[127,237,79,0.006220183872768163],[127,238,64,0.00792572895247681],[127,238,65,0.005989158177127414],[127,238,66,0.004257818466367652],[127,238,67,0.0027287119775301137],[127,238,68,0.001425843669421249],[127,238,69,3.9360725521523575E-4],[127,238,70,-3.35148390479766E-4],[127,238,71,-7.394578135220522E-4],[127,238,72,-8.097379059965239E-4],[127,238,73,-5.471967113001444E-4],[127,238,74,3.684778686547434E-5],[127,238,75,9.217386667436176E-4],[127,238,76,0.0020783405238702073],[127,238,77,0.0034699889361954847],[127,238,78,0.005053528399914361],[127,238,79,0.006780438111904283],[127,239,64,0.00799310320623001],[127,239,65,0.006140940901162058],[127,239,66,0.004494580358506436],[127,239,67,0.0030509826491720584],[127,239,68,0.0018332536953307257],[127,239,69,8.837035989963885E-4],[127,239,70,2.3282602584403858E-4],[127,239,71,-1.008787689034102E-4],[127,239,72,-1.1027527922760382E-4],[127,239,73,2.011123438572802E-4],[127,239,74,8.198814700958694E-4],[127,239,75,0.0017236078083142372],[127,239,76,0.00288177732757323],[127,239,77,0.004256792659002658],[127,239,78,0.005805053281042115],[127,239,79,0.007478108726111567],[127,240,64,0.008061000242228751],[127,240,65,0.006300596813968182],[127,240,66,0.004746366024061187],[127,240,67,0.0033954743231811553],[127,240,68,0.002270313219234673],[127,240,69,0.0014111789462889776],[127,240,70,8.462329841366214E-4],[127,240,71,5.914960699976962E-4],[127,240,72,6.516116415588565E-4],[127,240,73,0.0010206715643338313],[127,240,74,0.0016831035526577991],[127,240,75,0.0026146196151672846],[127,240,76,0.0037832247845295897],[127,240,77,0.005150285328317178],[127,240,78,0.006671655584265366],[127,240,79,0.008298862519629238],[127,241,64,0.008069999748388313],[127,241,65,0.006408919178269113],[127,241,66,0.00495422628126517],[127,241,67,0.0037035532356639914],[127,241,68,0.002678817190851592],[127,241,69,0.0019184610915301192],[127,241,70,0.0014484267297447354],[127,241,71,0.0012823248009828714],[127,241,72,0.0014223372388600007],[127,241,73,0.0018601676872884916],[127,241,74,0.0025780392754414455],[127,241,75,0.0035497388038592875],[127,241,76,0.0047417064006690475],[127,241,77,0.006114169665794766],[127,241,78,0.007622321289057334],[127,241,79,0.009217539105943836],[127,242,64,0.007977347103813596],[127,242,65,0.006422783918822644],[127,242,66,0.005074636350988753],[127,242,67,0.003931256262448835],[127,242,68,0.0030143652408060346],[127,242,69,0.002360793035022601],[127,242,70,0.001994457008616931],[127,242,71,0.0019267087680534096],[127,242,72,0.002157376188005604],[127,242,73,0.0026758398449703504],[127,242,74,0.0034621427876292054],[127,242,75,0.004488132536441295],[127,242,76,0.005718634176847261],[127,242,77,0.007112653390729863],[127,242,78,0.008624608260074757],[127,242,79,0.010205588675690729],[127,243,64,0.007754681868617087],[127,243,65,0.006312968157855241],[127,243,66,0.005077423165770803],[127,243,67,0.004047348534019047],[127,243,68,0.003244572077851645],[127,243,69,0.0027046178721371384],[127,243,70,0.002449648645036199],[127,243,71,0.0024889848909313934],[127,243,72,0.002820283952171656],[127,243,73,0.003430740575066204],[127,243,74,0.0042983076439857834],[127,243,75,0.005392935781549096],[127,243,76,0.006677830495029458],[127,243,77,0.008110725549743842],[127,243,78,0.009645171259795339],[127,243,79,0.011231836405559735],[127,244,64,0.007385938223312367],[127,244,65,0.006062140295686894],[127,244,66,0.00494386214100967],[127,244,67,0.004031546785186588],[127,244,68,0.0033474383937431088],[127,244,69,0.002926117647861143],[127,244,70,0.002788327419314304],[127,244,71,0.002941655703956674],[127,244,72,0.0033818456729402565],[127,244,73,0.004094115393692305],[127,244,74,0.005054485717158346],[127,244,75,0.006231114830426902],[127,244,76,0.007585637984730641],[127,244,77,0.009074510928284034],[127,244,78,0.010650355601845065],[127,244,79,0.012263306692565408],[127,245,64,0.0068654203549019886],[127,245,65,0.0056630245597407165],[127,245,66,0.004664946227486366],[127,245,67,0.003872911126235848],[127,245,68,0.0033098848058253356],[127,245,69,0.0030099085311519292],[127,245,70,0.0029926944106217724],[127,245,71,0.0032644590717388],[127,245,72,0.003819355222440441],[127,245,73,0.0046409024968516715],[127,245,74,0.005703415896058469],[127,245,75,0.006973430153592225],[127,245,76,0.008411118382905277],[127,245,77,0.009971703400423882],[127,245,78,0.01160686016304557],[127,245,79,0.013266107813366738],[127,246,64,0.006196055912260708],[127,246,65,0.005116743059723069],[127,246,66,0.004239830167057704],[127,246,67,0.0035684080116656076],[127,246,68,0.0031264514420675346],[127,246,69,0.0029478947220712435],[127,246,70,0.003051851011255442],[127,246,71,0.0034435795716440476],[127,246,72,0.00411602618660628],[127,246,73,0.005051354140006661],[127,246,74,0.0062224639053960855],[127,246,75,0.007594499728190591],[127,246,76,0.00912634132565999],[127,246,77,0.010772078980284146],[127,246,78,0.01248247036178836],[127,246,79,0.014206377482002066],[127,247,64,0.005387830755254732],[127,247,65,0.004431338477393751],[127,247,66,0.0036744529519841373],[127,247,67,0.0031216472481268324],[127,247,68,0.0027981658242539464],[127,247,69,0.0027382835398713007],[127,247,70,0.0029609768368538043],[127,247,71,0.0034710035334079],[127,247,72,0.0042605365305221615],[127,247,73,0.0053107812075679555],[127,247,74,0.006593574524099733],[127,247,75,0.00807296388937153],[127,247,76,0.009706763914483012],[127,247,77,0.011448089224474546],[127,247,78,0.013246861579187898],[127,247,79,0.015051289632278662],[127,248,64,0.0044564082968205345],[127,248,65,0.003620480582616975],[127,248,66,0.002980341539579467],[127,248,67,0.0025417959214008726],[127,248,68,0.0023315817291533905],[127,248,69,0.0023847641489890318],[127,248,70,0.0027206627494141215],[127,248,71,0.0033440197010875753],[127,248,72,0.0042467086535543245],[127,248,73,0.005409422422105483],[127,248,74,0.006803337399381596],[127,248,75,0.008391752659098403],[127,248,76,0.010131701781157312],[127,248,77,0.011975535498447239],[127,248,78,0.013872473345879434],[127,248,79,0.01577012258154673],[127,249,64,0.003421936781457465],[127,249,65,0.0027023597998014326],[127,249,66,0.002173598894233978],[127,249,67,0.0018426721299017843],[127,249,68,0.0017379917014390097],[127,249,69,0.0018958523591207628],[127,249,70,0.002336401173422685],[127,249,71,0.0030648674293437005],[127,249,72,0.004073326471298494],[127,249,73,0.0053424395544248455],[127,249,74,0.006843167546250304],[127,249,75,0.008538456380523614],[127,249,76,0.010384892232163446],[127,249,77,0.01233432445873518],[127,249,78,0.014335454439637808],[127,249,79,0.016335388539157343],[127,250,64,0.0023080478536057084],[127,250,65,0.0016987710467337527],[127,250,66,0.0012740794147338204],[127,250,67,0.001042021385650659],[127,250,68,0.0010328158524500776],[127,250,69,0.001284403881851847],[127,250,70,0.0018182358167862088],[127,250,71,0.0026405342416365796],[127,250,72,0.003744091060455831],[127,250,73,0.0051100398776636234],[127,250,74,0.00670960148687012],[127,250,75,0.008505800333138462],[127,250,76,0.0104551498830904],[127,250,77,0.012509304915804383],[127,250,78,0.014616678835453166],[127,250,79,0.016724024203958725],[127,251,64,0.0011410497413127654],[127,251,65,6.343910273226312E-4],[127,251,66,3.0475475235873463E-4],[127,251,67,1.6097847921799506E-4],[127,251,68,2.3516950194709605E-4],[127,251,69,5.672983362079807E-4],[127,251,70,0.0011805728042094056],[127,251,71,0.0020827044591757923],[127,251,72,0.003267716268605375],[127,251,73,0.004717726958459677],[127,251,74,0.0064047098177220955],[127,251,75,0.00829222382094917],[127,251,76,0.010337114994153367],[127,251,77,0.012491186026655714],[127,251,78,0.014702832218449122],[127,251,79,0.01691864194901496],[127,252,64,-5.0681689571133726E-5],[127,252,65,-4.6374792310935017E-4],[127,252,66,-7.087270694814235E-4],[127,252,67,-7.762825011271799E-4],[127,252,68,-6.323878979667934E-4],[127,252,69,-2.3470383465757627E-4],[127,252,70,4.4215508773079676E-4],[127,252,71,0.0014078604530857646],[127,252,72,0.002658165520381735],[127,252,73,0.004176680693147037],[127,252,74,0.005936626792370955],[127,252,75,0.007902564010477089],[127,252,76,0.01003209448711048],[127,252,77,0.012277536520306654],[127,252,78,0.014587568509190098],[127,252,79,0.016908840816622212],[127,253,64,-0.0012371108718831256],[127,253,65,-0.0015665844708194823],[127,253,66,-0.0017382864644694968],[127,253,67,-0.0017427074579627999],[127,253,68,-0.001543920280563411],[127,253,69,-0.001096929547440124],[127,253,70,-3.7379818633745556E-4],[127,253,71,6.37537874794457E-4],[127,253,72,0.001935030841550341],[127,253,73,0.0035042672738205996],[127,253,74,0.005320197270980735],[127,253,75,0.007348844544855157],[127,253,76,0.009548995359318904],[127,253,77,0.011873864380720533],[127,253,78,0.014272735558545243],[127,253,79,0.016692576240877176],[127,254,64,-0.0023867464926808427],[127,254,65,-0.0026431526062076663],[127,254,66,-0.002753458443799901],[127,254,67,-0.002708328545131039],[127,254,68,-0.0024699968597566785],[127,254,69,-0.0019905845969683325],[127,254,70,-0.0012392859066095092],[127,254,71,-2.0126402247150902E-4],[127,254,72,0.0011240548695270274],[127,254,73,0.0027246795048324127],[127,254,74,0.0045777411116361974],[127,254,75,0.006651168672007064],[127,254,76,0.008905349909909372],[127,254,77,0.011294776098376258],[127,254,78,0.013769668843302349],[127,254,79,0.01627758707664476],[127,255,64,-0.0034666387185668833],[127,255,65,-0.0036605011032197626],[127,255,66,-0.0037212377973595873],[127,255,67,-0.0036400353210393217],[127,255,68,-0.0033773866043591235],[127,255,69,-0.0028823670162569674],[127,255,70,-0.0021210516565704773],[127,255,71,-0.001075516148731698],[127,255,72,2.577963195026064E-4],[127,255,73,0.0018697075815655006],[127,255,74,0.00373993475998421],[127,255,75,0.0058387162960608745],[127,255,76,0.008128431853535662],[127,255,77,0.010565214251161872],[127,255,78,0.0131005516320439],[127,255,79,0.015682878140858805],[127,256,64,-0.004442167223946711],[127,256,65,-0.004583405859143301],[127,256,66,-0.004605721272463822],[127,256,67,-0.004501149031863085],[127,256,68,-0.004228563816198164],[127,256,69,-0.003733901115877418],[127,256,70,-0.002979941976310781],[127,256,71,-0.001945436949303361],[127,256,72,-6.235609741369201E-4],[127,256,73,9.796400867867871E-4],[127,256,74,0.002846809429579337],[127,256,75,0.0049508439888953],[127,256,76,0.007256462016255979],[127,256,77,0.009721771785258494],[127,256,78,0.012299839691266249],[127,256,79,0.014940256062737021],[127,257,64,-0.005276621254535178],[127,257,65,-0.005373876645803502],[127,257,66,-0.005367548533067577],[127,257,67,-0.005250802012601424],[127,257,68,-0.004981026931574779],[127,257,69,-0.004500994340093098],[127,257,70,-0.003770098236803763],[127,257,71,-0.0027636151012055943],[127,257,72,-0.0014712566848107875],[127,257,73,1.0429462022819922E-4],[127,257,74,0.001948866131805397],[127,257,75,0.0040382892391572405],[127,257,76,0.006339906069959147],[127,257,77,0.008814086772207803],[127,257,78,0.011415755744061486],[127,257,79,0.014095925179735598],[127,258,64,-0.005929525523853703],[127,258,65,-0.005989500442493691],[127,258,66,-0.005962272424535741],[127,258,67,-0.005842341285172493],[127,258,68,-0.005585741725678044],[127,258,69,-0.005132127648937888],[127,258,70,-0.004437501879880454],[127,258,71,-0.0034736163920794606],[127,258,72,-0.0022266276117320232],[127,258,73,-6.957254054969594E-4],[127,258,74,0.0011082626714713818],[127,258,75,0.0031642902707723327],[127,258,76,0.005442532681817348],[127,258,77,0.007905847190115627],[127,258,78,0.010511251763537002],[127,258,79,0.01321142048751252],[127,259,64,-0.006336125148412812],[127,259,65,-0.006364923252126311],[127,259,66,-0.006323838093302299],[127,259,67,-0.0062088148480727015],[127,259,68,-0.005974718925600767],[127,259,69,-0.005558291273682929],[127,259,70,-0.0049122782011002866],[127,259,71,-0.0040049747194192895],[127,259,72,-0.002818987074632991],[127,259,73,-0.001349960413161932],[127,259,74,3.947269705315692E-4],[127,259,75,0.002397301322887468],[127,259,76,0.0046309615493966725],[127,259,77,0.007061276238821999],[127,259,78,0.009647608065017204],[127,259,79,0.012344564043491464],[127,260,64,-0.006423434987064987],[127,260,65,-0.006428234453796278],[127,260,66,-0.006381262657270766],[127,260,67,-0.006279937779911559],[127,260,68,-0.006078259902120187],[127,260,69,-0.00571048317953577],[127,260,70,-0.005126403715736771],[127,260,71,-0.004291050841410301],[127,260,72,-0.0031835671629496403],[127,260,73,-0.0017960453000524024],[127,260,74,-1.323226209353239E-4],[127,260,75,0.0017932646671633395],[127,260,76,0.003957166674274342],[127,260,77,0.0063279428022010665],[127,260,78,0.008867621088365018],[127,260,79,0.011533092460812343],[127,261,64,-0.006140115064990932],[127,261,65,-0.006128979787638071],[127,261,66,-0.006084777038569811],[127,261,67,-0.006006361342437911],[127,261,68,-0.0058472743737780645],[127,261,69,-0.005539897673332862],[127,261,70,-0.00503153102595822],[127,261,71,-0.004284238392554575],[127,261,72,-0.0032738602173380364],[127,261,73,-0.001988973879363734],[127,261,74,-4.298034428842449E-4],[127,261,75,0.0013929200748991502],[127,261,76,0.0034591466446522753],[127,261,77,0.005740742054125099],[127,261,78,0.008202768269704341],[127,261,79,0.010804807949261796],[127,262,64,-0.005455898769638977],[127,262,65,-0.005437492056241744],[127,262,66,-0.005405075094036307],[127,262,67,-0.005358854424544948],[127,262,68,-0.005252403912124484],[127,262,69,-0.005016996722756624],[127,262,70,-0.004598010808921974],[127,262,71,-0.003954937432940282],[127,262,72,-0.0030605436392200877],[127,262,73,-0.0018999740724979389],[127,262,74,-4.697931230858294E-4],[127,262,75,0.0012230315402572173],[127,262,76,0.0031622029177133834],[127,262,77,0.005323224911483279],[127,262,78,0.007674587597527331],[127,262,79,0.010179006247284354],[127,263,64,-0.0043595785953558985],[127,263,65,-0.004342872989552207],[127,263,66,-0.004331309625399041],[127,263,67,-0.004326329946030412],[127,263,68,-0.004282094743452405],[127,263,69,-0.004129645789571531],[127,263,70,-0.003813106968205037],[127,263,71,-0.0032898640007239296],[127,263,72,-0.002529897022641334],[127,263,73,-0.0015150433417358694],[127,263,74,-2.381911629686827E-4],[127,263,75,0.001297594838429874],[127,263,76,0.0030800151258302062],[127,263,77,0.005088543042306191],[127,263,78,0.007295497564090737],[127,263,79,0.009667179886925652],[127,264,64,-0.002856820609128268],[127,264,65,-0.0028508078545354644],[127,264,66,-0.002868926740561816],[127,264,67,-0.002913717144962721],[127,264,68,-0.0029405262189171563],[127,264,69,-0.002881117611679196],[127,264,70,-0.002679094626326542],[127,264,71,-0.0022902600113437256],[127,264,72,-0.0016821396521532871],[127,264,73,-8.334268341527691E-4],[127,264,74,2.666523568658157E-4],[127,264,75,0.0016190518173689944],[127,264,76,0.0032156956056488854],[127,264,77,0.00504034463369959],[127,264,78,0.007069538897655869],[127,264,79,0.009273614194190993],[127,265,64,-9.678098133178489E-4],[127,265,65,-9.812150208302335E-4],[127,265,66,-0.0010373408004842484],[127,265,67,-0.0011396819997148441],[127,265,68,-0.0012453972149722894],[127,265,69,-0.0012879661991493235],[127,265,70,-0.0012112432177874021],[127,265,71,-9.70005747519742E-4],[127,265,72,-5.296905856261018E-4],[127,265,73,1.3395957892881709E-4],[127,265,74,0.0010353388105357388],[127,265,75,0.002179509333279799],[127,265,76,0.0035628211178623166],[127,265,77,0.005173618950059825],[127,265,78,0.006993036172178951],[127,265,79,0.008995874189393368],[127,266,64,0.001275271358755438],[127,266,65,0.001234267255853969],[127,266,66,0.0011325477736657714],[127,266,67,9.658019349881524E-4],[127,266,68,7.744272593931698E-4],[127,266,69,6.222266916909486E-4],[127,266,70,5.643130765077866E-4],[127,266,71,6.463628536993132E-4],[127,266,72,9.046465177135285E-4],[127,266,73,0.001366159263446897],[127,266,74,0.002048851763347228],[127,266,75,0.002961960868313638],[127,266,76,0.004106439878422238],[127,266,77,0.005475487889951902],[127,266,78,0.007055177593922273],[127,266,79,0.0088251807795869],[127,267,64,0.003830929123182038],[127,267,65,0.0037549545247547436],[127,267,66,0.003600989522453127],[127,267,67,0.0033640299741973193],[127,267,68,0.0030814069608319727],[127,267,69,0.0028132303455980245],[127,267,70,0.002612815332678355],[127,267,71,0.0025257299487409382],[127,267,72,0.002589571721306736],[127,267,73,0.0028338557597215653],[127,267,74,0.0032800144736428406],[127,267,75,0.003941508990653597],[127,267,76,0.004824052166200751],[127,267,77,0.005925942916899603],[127,267,78,0.007238511453775154],[127,267,79,0.008746674846543435],[127,268,64,0.006651206660314519],[127,268,65,0.006533947956489236],[127,268,66,0.006322175457257476],[127,268,67,0.006010287707004491],[127,268,68,0.005631952519803954],[127,268,69,0.005242666883134076],[127,268,70,0.004893228126398412],[127,268,71,0.004628566440972465],[127,268,72,0.00448724824158472],[127,268,73,0.004501102745772061],[127,268,74,0.004694972318448411],[127,268,75,0.005086586932944486],[127,268,76,0.005686562908214957],[127,268,77,0.006498525895739337],[127,268,78,0.007519357910489785],[127,268,79,0.008739568029651264],[127,269,64,0.009684692277991689],[127,269,65,0.009521121900177329],[127,269,66,0.009247176688383478],[127,269,67,0.008856715019404502],[127,269,68,0.008379184459792783],[127,269,69,0.007864633818532488],[127,269,70,0.007360693840172661],[127,269,71,0.006911185450720882],[127,269,72,0.006555330995563875],[127,269,73,0.006327101151538468],[127,269,74,0.006254698393363527],[127,269,75,0.006360177675220503],[127,269,76,0.006659204771944543],[127,269,77,0.007160952512630177],[127,269,78,0.007868134934098237],[127,269,79,0.008777179184197825],[127,270,64,0.012879684998635958],[127,270,65,0.012666264766864084],[127,270,66,0.012327031783672894],[127,270,67,0.011855310386013127],[127,270,68,0.011275822829802686],[127,270,69,0.010632445150145907],[127,270,70,0.009969090888250697],[127,270,71,0.009328084554493738],[127,270,72,0.008749062333677785],[127,270,73,0.008268021621490458],[127,270,74,0.00791652062602392],[127,270,75,0.0077210290235789555],[127,270,76,0.007702430415463334],[127,270,77,0.007875677093777322],[127,270,78,0.008249597391002481],[127,270,79,0.008826855662304416],[127,271,64,0.0161770223336696],[127,271,65,0.01591184667185326],[127,271,66,0.015505644747657893],[127,271,67,0.014951167458688368],[127,271,68,0.014267975007149634],[127,271,69,0.01349317649069166],[127,271,70,0.01266652854330904],[127,271,71,0.011828562872977347],[127,271,72,0.011019159191908821],[127,271,73,0.010276280874221607],[127,271,74,0.009634874947486983],[127,271,75,0.009125937753234222],[127,271,76,0.008775747341209755],[127,271,77,0.008605263394791542],[127,271,78,0.008629695222312],[127,271,79,0.00885823809302932],[127,272,64,0.01948239682662043],[127,272,65,0.019165109859939505],[127,272,66,0.01869231703059977],[127,272,67,0.018056173382408874],[127,272,68,0.017270741945185242],[127,272,69,0.016365903748792952],[127,272,70,0.015376898275835969],[127,272,71,0.014342198204166117],[127,272,72,0.013301743389288068],[127,272,73,0.012295352060469387],[127,272,74,0.011361311221244345],[127,272,75,0.010535147945638366],[127,272,76,0.009848582962144341],[127,272,77,0.00932866762015093],[127,272,78,0.008997105040143156],[127,272,79,0.008869755961613067],[127,273,64,0.0201959733917621],[127,273,65,0.02058603811423227],[127,273,66,0.021142522448017023],[127,273,67,0.02108141881647691],[127,273,68,0.020198534705366894],[127,273,69,0.019169231931172655],[127,273,70,0.01802395215546607],[127,273,71,0.016798866831852374],[127,273,72,0.015533768266002659],[127,273,73,0.014270152751042993],[127,273,74,0.013049498156214649],[127,273,75,0.011911738018588917],[127,273,76,0.010893933858530862],[127,273,77,0.01002914711157797],[127,273,78,0.009345511744545391],[127,273,79,0.00886550830420315],[127,274,64,0.01717787232965526],[127,274,65,0.01761602120661394],[127,274,66,0.018231926275435576],[127,274,67,0.01903461551427876],[127,274,68,0.02002159661997324],[127,274,69,0.021178279155344686],[127,274,70,0.02053926401045949],[127,274,71,0.019135369867501296],[127,274,72,0.017658128225885403],[127,274,73,0.016150486383989106],[127,274,74,0.014656880294814234],[127,274,75,0.01322141483308657],[127,274,76,0.011886258352554963],[127,274,77,0.010690253218008193],[127,274,78,0.009667743639988577],[127,274,79,0.008847621788470188],[127,275,64,0.014401659753243848],[127,275,65,0.014884684757066974],[127,275,66,0.015554643009264093],[127,275,67,0.01642110829290099],[127,275,68,0.01748741820820661],[127,275,69,0.018746723683194095],[127,275,70,0.020178677809063465],[127,275,71,0.02129592578375481],[127,275,72,0.019624173250976363],[127,275,73,0.01789157503354696],[127,275,74,0.01614522475258504],[127,275,75,0.014433069882586587],[127,275,76,0.012802037644200967],[127,275,77,0.01129639309107645],[127,275,78,0.009956330966870605],[127,275,79,0.008816802524952283],[127,276,64,0.011928859016979128],[127,276,65,0.01245270250183764],[127,276,66,0.013170250654318113],[127,276,67,0.014091591006314337],[127,276,68,0.015225778344094368],[127,276,69,0.016573571322614465],[127,276,70,0.018119697943338522],[127,276,71,0.019835959092229617],[127,276,72,0.021388174845043104],[127,276,73,0.019454541637266825],[127,276,74,0.0174811147656593],[127,276,75,0.01551927895897635],[127,276,76,0.013620276434149274],[127,276,77,0.01183332636216712],[127,276,78,0.010203994154117662],[127,276,79,0.008772811959900036],[127,277,64,0.009809265058355153],[127,277,65,0.010369190759833604],[127,277,66,0.011127043710374642],[127,277,67,0.012093393744667537],[127,277,68,0.013282793367958914],[127,277,69,0.014703324590582741],[127,277,70,0.016344678689543053],[127,277,71,0.018181474002940845],[127,277,72,0.020176643741789926],[127,277,73,0.020806841350570888],[127,277,74,0.01863638966188117],[127,277,75,0.016456744857744097],[127,277,76,0.014322942543819306],[127,277,77,0.012288596160677191],[127,277,78,0.01040406120471704],[127,277,79,0.00871486621707989],[127,278,64,0.008080717261643998],[127,278,65,0.008671480606469238],[127,278,66,0.009461797096753355],[127,278,67,0.01046269117235174],[127,278,68,0.011693893110044375],[127,278,69,0.013170379860582459],[127,278,70,0.014886592039082245],[127,278,71,0.016819946640601276],[127,278,72,0.01893449234274192],[127,278,73,0.021184300891428722],[127,278,74,0.019588530950217835],[127,278,75,0.01722668276907531],[127,278,76,0.014895345132776409],[127,278,77,0.01265189402931376],[127,278,78,0.010550813728416188],[127,278,79,0.008641958364633984],[127,279,64,0.00676891962223008],[127,279,65,0.007384937519128226],[127,279,66,0.008199577357402513],[127,279,67,0.009224296430562546],[127,279,68,0.010483591108259865],[127,279,69,0.011998771609352615],[127,279,70,0.013768716216775343],[127,279,71,0.01577355692443975],[127,279,72,0.017978571957444588],[127,279,73,0.020337802070524005],[127,279,74,0.02032099429782218],[127,279,75,0.017815148081103533],[127,279,76,0.015326451198263114],[127,279,77,0.012915358382030352],[127,279,78,0.010639761230931228],[127,279,79,0.00855310318350951],[127,280,64,0.005887308100448572],[127,280,65,0.006522828379641615],[127,280,66,0.007353601037291242],[127,280,67,0.008391501866649054],[127,280,68,0.00966530136864302],[127,280,69,0.011201963174527516],[127,280,70,0.01300440180197771],[127,280,71,0.015055317223734509],[127,280,72,0.017321291031287097],[127,280,73,0.01975659521137568],[127,280,74,0.020823487234911862],[127,280,75,0.018213306396428208],[127,280,76,0.015609140120800438],[127,280,77,0.013073806233816128],[127,280,78,0.01066784335707066],[127,280,79,0.008447504106418272],[127,281,64,0.005436964999503052],[127,281,65,0.006086235665432063],[127,281,66,0.006925140067625114],[127,281,67,0.007965966443613052],[127,281,68,0.009241201546375016],[127,281,69,0.010782683931533515],[127,281,70,0.012596884676836992],[127,281,71,0.014668865538190082],[127,281,72,0.016966542847594343],[127,281,73,0.01944465413717594],[127,281,74,0.021092192494709554],[127,281,75,0.018417645633496033],[127,281,76,0.01574039609383593],[127,281,77,0.013124898009187735],[127,281,78,0.010633559866391988],[127,281,79,0.008324642080961977],[127,282,64,0.005406580148591503],[127,282,65,0.006064018608230976],[127,282,66,0.006903473945226689],[127,282,67,0.00793764963109683],[127,282,68,0.009202142372777129],[127,282,69,0.010732812744830695],[127,282,70,0.012539145689966082],[127,282,71,0.01460830636089204],[127,282,72,0.016909534584131584],[127,282,73,0.019398233542060415],[127,282,74,0.021129936959109818],[127,282,75,0.018430130150601024],[127,282,76,0.015721438344378943],[127,282,77,0.013069235307992996],[127,282,78,0.010537028194479311],[127,282,79,0.008184286187580605],[127,283,64,0.005772458619817521],[127,283,65,0.006432821047537576],[127,283,66,0.007265888440352982],[127,283,67,0.008284791528379104],[127,283,68,0.009527603102649006],[127,283,69,0.011033307496816643],[127,283,70,0.012813816870951922],[127,283,71,0.014858099092971998],[127,283,72,0.017136665529099867],[127,283,73,0.019605745978285183],[127,283,74,0.02094630624058831],[127,283,75,0.01825829689218273],[127,283,76,0.01555778911555241],[127,283,77,0.012910391573112174],[127,283,78,0.010379968520750326],[127,283,79,0.008026425912441086],[127,284,64,0.006498574655837385],[127,284,65,0.0071571256552890915],[127,284,66,0.007977720517280575],[127,284,67,0.008973938920298484],[127,284,68,0.010185692706572755],[127,284,69,0.01165418044743726],[127,284,70,0.013393133979987124],[127,284,71,0.015392993826874807],[127,284,72,0.01762545430637408],[127,284,73,0.020047690148603813],[127,284,74,0.020557704987240275],[127,284,75,0.017915293614876995],[127,284,76,0.015259279441080902],[127,284,77,0.012654875664900886],[127,284,78,0.010165616324927589],[127,284,79,0.00785112503732576],[127,285,64,0.007536671434578769],[127,285,65,0.008189354158625628],[127,285,66,0.008992449103244328],[127,285,67,0.00996001691869638],[127,285,68,0.011133196484441586],[127,285,69,0.012554519128795011],[127,285,70,0.014238935127513579],[127,285,71,0.01617801426491232],[127,285,72,0.018344514908632006],[127,285,73,0.02069663033386713],[127,285,74,0.019987363050697968],[127,285,75,0.01741985930437591],[127,285,76,0.014839992795906693],[127,285,77,0.012312028401743055],[127,285,78,0.009898562468922761],[127,285,79,0.007658297162988297],[127,286,64,0.008826406247837282],[127,286,65,0.009470013139234696],[127,286,66,0.010251831293829668],[127,286,67,0.011186445794966703],[127,286,68,0.012315667729514384],[127,286,69,0.013682552431833188],[127,286,70,0.01530270515111778],[127,286,71,0.017168487491620876],[127,286,72,0.019253581288346238],[127,286,73,0.021517226736768227],[127,286,74,0.01926528770603175],[127,286,75,0.01679624694357523],[127,286,76,0.014318146756361106],[127,286,77,0.011893852174839438],[127,286,78,0.009584520888841321],[127,286,79,0.0074474029292585595],[127,287,64,0.010295540622257108],[127,287,65,0.010927884940686045],[127,287,66,0.011686083536823443],[127,287,67,0.012585302563739225],[127,287,68,0.013667564026856231],[127,287,69,0.014975761496601757],[127,287,70,0.016525665391103433],[127,287,71,0.01831012027239312],[127,287,72,0.020303580210439022],[127,287,73,0.020717713724000893],[127,287,74,0.018428162158557422],[127,287,75,0.01607408883769077],[127,287,76,0.01371591284756603],[127,287,77,0.011414773788282602],[127,287,78,0.009230024023032322],[127,287,79,0.007217069034296187],[127,288,64,0.011860174864265443],[127,288,65,0.012480263169549647],[127,288,66,0.013214107291943153],[127,288,67,0.014077526833712092],[127,288,68,0.015112427726188486],[127,288,69,0.016361034973748592],[127,288,70,0.017838908462246165],[127,288,71,0.01953912150697645],[127,288,72,0.021436752026773368],[127,288,73,0.01969345414733533],[127,288,74,0.017519190614651035],[127,288,75,0.015288204742900836],[127,288,76,0.013059174794883185],[127,288,77,0.01089134071243244],[127,288,78,0.00884204613644375],[127,288,79,0.006964629186658895],[127,289,64,0.013425028528464389],[127,289,65,0.014033234190855027],[127,289,66,0.014743760476705075],[127,289,67,0.015573172151464861],[127,289,68,0.01656311172007443],[127,289,69,0.017754869661701377],[127,289,70,0.019163578853207238],[127,289,71,0.020782371440370633],[127,289,72,0.02060750063580477],[127,289,73,0.018648879082942896],[127,289,74,0.016587890363409092],[127,289,75,0.01447835370727185],[127,289,76,0.012377226595170805],[127,289,77,0.010341852709088535],[127,289,78,0.008427557067782617],[127,289,79,0.006685590098830469],[127,290,64,0.01489354542274629],[127,290,65,0.01549133263262421],[127,290,66,0.016181059250599695],[127,290,67,0.016980141267325603],[127,290,68,0.017929974355217218],[127,290,69,0.01907087108533919],[127,290,70,0.02041746903104804],[127,290,71,0.021236958460354217],[127,290,72,0.019512155631968692],[127,290,73,0.01764754238011573],[127,290,74,0.015689632435388172],[127,290,75,0.013690905273097813],[127,290,76,0.011706758725402298],[127,290,77,0.009792806635293682],[127,290,78,0.008002523819181267],[127,290,79,0.006385240012753182],[127,291,64,0.016197310682532492],[127,291,65,0.0167859179481659],[127,291,66,0.01745752168744389],[127,291,67,0.018230480519512],[127,291,68,0.01914594820027485],[127,291,69,0.02024321113121882],[127,291,70,0.021536332602445803],[127,291,71,0.02018183559176409],[127,291,72,0.018529828005406524],[127,291,73,0.01674713847102379],[127,291,74,0.014879385100491837],[127,291,75,0.012977898553771768],[127,291,76,0.011096720545671991],[127,291,77,0.009289947351438697],[127,291,78,0.007609420506427866],[127,291,79,0.006102766303757271],[127,292,64,0.017281328940396617],[127,292,65,0.01786160482093981],[127,292,66,0.018517724813176335],[127,292,67,0.019269059921878683],[127,292,68,0.02015649118866707],[127,292,69,0.021218196992083736],[127,292,70,0.02073506325329982],[127,292,71,0.01930217792055965],[127,292,72,0.01771042452872055],[127,292,73,0.015995946674117276],[127,292,74,0.014203664381425476],[127,292,75,0.01238397351209241],[127,292,76,0.01058978698971876],[127,292,77,0.008873920570794348],[127,292,78,0.007286825291020495],[127,292,79,0.0058746681272428495],[127,293,64,0.018099471700208054],[127,293,65,0.018671988256749983],[127,293,66,0.019315292205557822],[127,293,67,0.020049814521595873],[127,293,68,0.020916112233119545],[127,293,69,0.02125146983092415],[127,293,70,0.02003383896403854],[127,293,71,0.018640351006670247],[127,293,72,0.017094810736334023],[127,293,73,0.015433138976080072],[127,293,74,0.013699774873362477],[127,293,75,0.011944415793253794],[127,293,76,0.010219098096011256],[127,293,77,0.00857562146795171],[127,293,78,0.007063318877892993],[127,293,79,0.005727173642980875],[127,294,64,0.018615276462421625],[127,294,65,0.019180416182379617],[127,294,66,0.019813629459493935],[127,294,67,0.020536432309639082],[127,294,68,0.021388998333787636],[127,294,69,0.02079379264298438],[127,294,70,0.019597123682381895],[127,294,71,0.018229381605913145],[127,294,72,0.01671462600347418],[127,294,73,0.015088761309976263],[127,294,74,0.013395978270540636],[127,294,75,0.011685531503277329],[127,294,76,0.010008856375189388],[127,294,77,0.008417027807757127],[127,294,78,0.006958563034355422],[127,294,79,0.0056775697457332455],[127,295,64,0.018802701612245787],[127,295,65,0.0193607174499722],[127,295,66,0.019986615006478973],[127,295,67,0.020702997568821505],[127,295,68,0.021549597461276944],[127,295,69,0.020637385611006462],[127,295,70,0.019449248742286963],[127,295,71,0.018092667898958442],[127,295,72,0.01659213387349285],[127,295,73,0.014983745163995985],[127,295,74,0.013311686114060257],[127,295,75,0.011625038926613672],[127,295,76,0.00997493271974077],[127,295,77,0.00841203219651299],[127,295,78,0.006984367909666438],[127,295,79,0.005735509519368429],[127,296,64,0.018646837054398856],[127,296,65,0.01919788526140171],[127,296,66,0.019819246335116288],[127,296,67,0.020534589740662208],[127,296,68,0.02138315733303579],[127,296,69,0.020796771774092036],[127,296,70,0.019604312886610718],[127,296,71,0.01824372845852269],[127,296,72,0.016740107315620884],[127,296,73,0.01512994914172094],[127,296,74,0.013457676318538133],[127,296,75,0.011772476676973022],[127,296,76,0.010125480287915427],[127,296,77,0.008567272828811706],[127,296,78,0.007145747475181371],[127,296,79,0.005904296687839119],[127,297,64,0.018144570674628175],[127,297,65,0.018688716120580685],[127,297,66,0.019308241749599234],[127,297,67,0.020027837977639247],[127,297,68,0.02088622028105215],[127,297,69,0.02127551323071771],[127,297,70,0.020065856702898933],[127,297,71,0.018685989642460748],[127,297,72,0.017161748556278743],[127,297,73,0.015530230070751818],[127,297,74,0.01383633302782577],[127,297,75,0.012129627786145881],[127,297,76,0.010461555823980473],[127,297,77,0.008882962153793183],[127,297,78,0.007441962476356431],[127,297,79,0.0061821464288685036],[127,298,64,0.01730521080532331],[127,298,65,0.017842404515833726],[127,298,66,0.018462597893203436],[127,298,67,0.019191431632601147],[127,298,68,0.02006707448792236],[127,298,69,0.021119719831630943],[127,298,70,0.020826577901284705],[127,298,71,0.019412611049557355],[127,298,72,0.017850643089345475],[127,298,73,0.016178543233765812],[127,298,74,0.014441909343806878],[127,298,75,0.01269095924736735],[127,298,76,0.010977747907814665],[127,298,77,0.009353712935427437],[127,298,78,0.007867550359075992],[127,298,79,0.00656342200786156],[127,299,64,0.016151064970410987],[127,299,65,0.01668109362911624],[127,299,66,0.017304103354233786],[127,299,67,0.018046587022279216],[127,299,68,0.018946161947128105],[127,299,69,0.020031749209314706],[127,299,70,0.021309408370270115],[127,299,71,0.020406348625121112],[127,299,72,0.018790747434403933],[127,299,73,0.017060071274717044],[127,299,74,0.015260812467494401],[127,299,75,0.01344407654283584],[127,299,76,0.01166281165875574],[127,299,77,0.009969361232873272],[127,299,78,0.008413341704094145],[127,299,79,0.007039846780741702],[127,300,64,0.014717975283307259],[127,300,65,0.015240382464005152],[127,300,66,0.015867808762500376],[127,300,67,0.016627470886953363],[127,300,68,0.017556443581742926],[127,300,69,0.01868249600176359],[127,300,70,0.020010604881624677],[127,300,71,0.021526927761082525],[127,300,72,0.019956410177095797],[127,300,73,0.018151381313142766],[127,300,74,0.016271910788465394],[127,300,75,0.014370192699561515],[127,300,76,0.012500309451808713],[127,300,77,0.01071578587934689],[127,300,78,0.009067462775165519],[127,300,79,0.007601691205462648],[127,301,64,0.01305581097096597],[127,301,65,0.013569789879967159],[127,301,66,0.014202453875192698],[127,301,67,0.014981581053289643],[127,301,68,0.015943722033686342],[127,301,69,0.01711564989508353],[127,301,70,0.018501362112714286],[127,301,71,0.02008602952367171],[127,301,72,0.02131242579248106],[127,301,73,0.01942060978156423],[127,301,74,0.017446862457293873],[127,301,75,0.015444611434006923],[127,301,76,0.013469257239038579],[127,301,77,0.01157572409151135],[127,301,78,0.009816323858968093],[127,301,79,0.008238934593165307],[127,302,64,0.011228918596959635],[127,302,65,0.011733176116367552],[127,302,66,0.01237085224191638],[127,302,67,0.013170084892108922],[127,302,68,0.014166922712956847],[127,302,69,0.01538732827172187],[127,302,70,0.01683446300346467],[127,302,71,0.018492608037153416],[127,302,72,0.020331112371553824],[127,302,73,0.020827674484970263],[127,302,74,0.01875046497628799],[127,302,75,0.016637223964229817],[127,302,76,0.014544776105463817],[127,302,77,0.012529582896444505],[127,302,78,0.010645593148484372],[127,302,79,0.008942401421649405],[127,303,64,0.00929457569458808],[127,303,65,0.00978788225041452],[127,303,66,0.010429875211380231],[127,303,67,0.011248818201917801],[127,303,68,0.012280279795519138],[127,303,69,0.013549615524596317],[127,303,70,0.015059320819450354],[127,303,71,0.016792919477163562],[127,303,72,0.018718886108546932],[127,303,73,0.020794284382303258],[127,303,74,0.020148439570206476],[127,303,75,0.017918342371028247],[127,303,76,0.01570196706916288],[127,303,77,0.013557376284094622],[127,303,78,0.011540244740950409],[127,303,79,0.00970199471545946],[127,304,64,0.007242580767631587],[127,304,65,0.00772626703136706],[127,304,66,0.00837441802978522],[127,304,67,0.00921520122854607],[127,304,68,0.01028373383556086],[127,304,69,0.011604961603791132],[127,304,70,0.013180866028863704],[127,304,71,0.014994319779991936],[127,304,72,0.0170129875575486],[127,304,73,0.019192949677091436],[127,304,74,0.02148204422927793],[127,304,75,0.019272166071900354],[127,304,76,0.016923354259108972],[127,304,77,0.014640182695986628],[127,304,78,0.012480154617100697],[127,304,79,0.010496637311484161],[127,305,64,0.005068550234920429],[127,305,65,0.005546555188534746],[127,305,66,0.006205288361891205],[127,305,67,0.007072618633094816],[127,305,68,0.008183245821678547],[127,305,69,0.009561889519196646],[127,305,70,0.011210144935391905],[127,305,71,0.013110308274181392],[127,305,72,0.015229263313471214],[127,305,73,0.017522097229357523],[127,305,74,0.019935441506541203],[127,305,75,0.020676865843637978],[127,305,76,0.018185526636375637],[127,305,77,0.01575326559536996],[127,305,78,0.013439529603550219],[127,305,79,0.011299752570516087],[127,306,64,0.0027922202665134985],[127,306,65,0.0032704435817247153],[127,306,66,0.003945978703252701],[127,306,67,0.004846209358025448],[127,306,68,0.006005453028813606],[127,306,69,0.00744837023974125],[127,306,70,0.009176277266330675],[127,306,71,0.0111709471612261],[127,306,72,0.01339849149437654],[127,306,73,0.015812977139405986],[127,306,74,0.018359773929596913],[127,306,75,0.02097862951384365],[127,306,76,0.019457450858555842],[127,306,77,0.016866164311701154],[127,306,78,0.014388726815020837],[127,306,79,0.01208273946110316],[127,307,64,4.522273757619344E-4],[127,307,65,9.379535963768747E-4],[127,307,66,0.0016376237392555192],[127,307,67,0.002577964049659266],[127,307,68,0.003792942282715289],[127,307,69,0.00530730727545252],[127,307,70,0.007122186131058067],[127,307,71,0.009218868505753161],[127,307,72,0.011562694162482028],[127,307,73,0.014106680400194258],[127,307,74,0.016794885152282175],[127,307,75,0.019565502048053202],[127,307,76,0.020702740711706243],[127,307,77,0.017944585417794385],[127,307,78,0.015295768590795721],[127,307,79,0.012816118199273948],[127,308,64,-0.0018987893164557719],[127,308,65,-0.0013973995750555402],[127,308,66,-6.657325436676641E-4],[127,308,67,3.221222949536443E-4],[127,308,68,0.0015998102642591633],[127,308,69,0.003192292953397504],[127,308,70,0.005100582066239044],[127,308,71,0.00730551578770442],[127,308,72,0.009771663234753964],[127,308,73,0.012450972431784871],[127,308,74,0.015286157562833568],[127,308,75,0.018213821748731825],[127,308,76,0.02116731209755039],[127,308,77,0.018952195288675096],[127,308,78,0.01612778061395675],[127,308,79,0.013470619884691597],[127,309,64,-0.004198762882062522],[127,309,65,-0.0036731196006553955],[127,309,66,-0.0029015589330308386],[127,309,67,-0.0018591293720876241],[127,309,68,-5.124882991413877E-4],[127,309,69,0.0011636371256276803],[127,309,70,0.003170201797010318],[127,309,71,0.005487620538597372],[127,309,72,0.008079700301295387],[127,309,73,0.010897318193786726],[127,309,74,0.013881841045706595],[127,309,75,0.016968282697790153],[127,309,76,0.02008819571141727],[127,309,77,0.01985231384113565],[127,309,78,0.016852353267374963],[127,309,79,0.014018220231268112],[127,310,64,-0.006380449645265304],[127,310,65,-0.005821922906041965],[127,310,66,-0.005002947620035588],[127,310,67,-0.0038996581512719133],[127,310,68,-0.0024790040996011957],[127,310,69,-7.15331321745902E-4],[127,310,70,0.0013923019992841484],[127,310,71,0.003823914266476928],[127,310,72,0.0065425704803048655],[127,310,73,0.009498098934642426],[127,310,74,0.012630550237173275],[127,310,75,0.015873394788013154],[127,310,76,0.01915645534884543],[127,310,77,0.02060950959529194],[127,310,78,0.01743882639463386],[127,310,79,0.014433117577650555],[127,311,64,-0.00837535613314958],[127,311,65,-0.007775613506416403],[127,311,66,-0.00690241316286566],[127,311,67,-0.0057330841942556075],[127,311,68,-0.004234868290311394],[127,311,69,-0.0023816901409359085],[127,311,70,-1.7259197977631942E-4],[127,311,71,0.002372075571329573],[127,311,72,0.005214670162073453],[127,311,73,0.0083040203877739],[127,311,74,0.011578930049877052],[127,311,75,0.014971420071274607],[127,311,76,0.018409704636288982],[127,311,77,0.021191096336514226],[127,311,78,0.017859497744497976],[127,311,79,0.01469265544793341],[127,312,64,-0.010117341964619886],[127,312,65,-0.00946863888251864],[127,312,66,-0.008535379951287074],[127,312,67,-0.007296178582095644],[127,312,68,-0.00571857937441444],[127,312,69,-0.003776076892239647],[127,312,70,-0.001467682797149605],[127,312,71,0.0011859120653555106],[127,312,72,0.00414640823201547],[127,312,73,0.007361711987896932],[127,312,74,0.010769489031125658],[127,312,75,0.014300453436619277],[127,312,76,0.017881388425926927],[127,312,77,0.021437895959673336],[127,312,78,0.018090755484074607],[127,312,79,0.014778190015388413],[127,313,64,-0.011545899116221364],[127,313,65,-0.010841327389034497],[127,313,66,-0.009843358706230581],[127,313,67,-0.008531960634900474],[127,313,68,-0.006875002545845704],[127,313,69,-0.004845570240738918],[127,313,70,-0.0024426438321995514],[127,313,71,3.127764415860702E-4],[127,313,72,0.0033818001149413944],[127,313,73,0.006711516456958272],[127,313,74,0.010238599920287786],[127,313,75,0.013892647008136243],[127,313,76,0.01759924100556018],[127,313,77,0.02128274153815819],[127,313,78,0.01811413526830932],[127,313,79,0.01467590290185805],[127,314,64,-0.012609108368549813],[127,314,65,-0.011842808038004632],[127,314,66,-0.010776812888980913],[127,314,67,-0.009392495452415552],[127,314,68,-0.007658082396841875],[127,314,69,-0.005546300301915517],[127,314,70,-0.0030561088681730557],[127,314,71,-2.087842188992224E-4],[127,314,72,0.0029562737507240794],[127,314,73,0.00638546889901983],[127,314,74,0.010014666582956735],[127,314,75,0.013772577487507237],[127,314,76,0.017583863927975136],[127,314,77,0.02137196554073506],[127,314,78,0.01791730245167653],[127,314,79,0.014377559822588315],[127,315,64,-0.013266274073642847],[127,315,65,-0.01243361382587281],[127,315,66,-0.011297716208415132],[127,315,67,-0.009841392884606687],[127,315,68,-0.00803327019227412],[127,315,69,-0.005845789227649043],[127,315,70,-0.0032779099097274005],[127,315,71,-3.51147045115627E-4],[127,315,72,0.0028946863963414593],[127,315,73,0.006405464347994568],[127,315,74,0.010116456324365532],[127,315,75,0.01395575551144731],[127,315,76,0.01784742260618193],[127,315,77,0.021279315478576647],[127,315,78,0.017494960121631653],[127,315,79,0.013881215660533183],[127,316,64,-0.013490238689338076],[127,316,65,-0.012587970068471463],[127,316,66,-0.011381802699039434],[127,316,67,-0.00985600940327289],[127,316,68,-0.007979667169746598],[127,316,69,-0.005725023468735311],[127,316,70,-0.0030910645388884748],[127,316,71,-9.950123732996937E-5],[127,316,72,0.0032095509523035475],[127,316,73,0.0067816125325349495],[127,316,74,0.01055159642279966],[127,316,75,0.01444727595070207],[127,316,76,0.018392460695704677],[127,316,77,0.020681117160437933],[127,316,78,0.016849683722272395],[127,316,79,0.013191866625350015],[127,317,64,-0.013269378798231181],[127,317,65,-0.012295769470724893],[127,317,66,-0.011020511094746508],[127,317,67,-0.00942935458695713],[127,317,68,-0.007491885554210325],[127,317,69,-0.005180259367811827],[127,317,70,-0.002493514416818186],[127,317,71,5.464932596302931E-4],[127,317,72,0.0038994703341634946],[127,317,73,0.00751077845985064],[127,317,74,0.011315233576514276],[127,317,75,0.015240607945687965],[127,317,76,0.01921083116942749],[127,317,77,0.019840386888249354],[127,317,78,0.015992683120348267],[127,317,79,0.012322050220184797],[127,318,64,-0.01260928456349141],[127,318,65,-0.011564235884195475],[127,318,66,-0.010222625440425936],[127,318,67,-0.00857170413926144],[127,318,68,-0.006581629174198357],[127,318,69,-0.004224563925126605],[127,318,70,-0.0014996167170435188],[127,318,71,0.0015712745543294351],[127,318,72,0.0049477782537687195],[127,318,73,0.008575307276155037],[127,318,74,0.012388854826068845],[127,318,75,0.016316523355196344],[127,318,76,0.020282742885120577],[127,318,77,0.018777412834861958],[127,318,78,0.014944493043868084],[127,318,79,0.01129239380366246],[127,319,64,-0.011534124768055423],[127,319,65,-0.010419278892581053],[127,319,66,-0.009015614062727892],[127,319,67,-0.007311921532201773],[127,319,68,-0.005278995730978018],[127,319,69,-0.0028890927364450428],[127,319,70,-1.4139042511278354E-4],[127,319,71,0.0029421732199534606],[127,319,72,0.006321384641894109],[127,319,73,0.00994193173733031],[127,319,74,0.013739268399321838],[127,319,75,0.017642162189875746],[127,319,76,0.021427522386287756],[127,319,77,0.017523733427214774],[127,319,78,0.013735592895613963],[127,319,79,0.010132112594937714]] diff --git a/pumpkin-world/assets/converted_depth_7_4.json b/pumpkin-world/assets/converted_depth_7_4.json new file mode 100644 index 000000000..0bc670005 --- /dev/null +++ b/pumpkin-world/assets/converted_depth_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,0.9828989170491695],[112,-64,65,0.9849592233076692],[112,-64,66,0.9864341113716364],[112,-64,67,0.987198674120009],[112,-64,68,0.9874751977622509],[112,-64,69,0.9875950114801526],[112,-64,70,0.9877549726516008],[112,-64,71,0.9882121114060283],[112,-64,72,0.9893035846762359],[112,-64,73,0.990743980742991],[112,-64,74,0.9919771458953619],[112,-64,75,0.993125684093684],[112,-64,76,0.994226528564468],[112,-64,77,0.9952019691700116],[112,-64,78,0.9960440458671656],[112,-64,79,0.9968163992161863],[112,-63,64,0.9750864170491695],[112,-63,65,0.9771467233076692],[112,-63,66,0.9786216113716364],[112,-63,67,0.979386174120009],[112,-63,68,0.9796626977622509],[112,-63,69,0.9797825114801526],[112,-63,70,0.9799424726516008],[112,-63,71,0.9803996114060283],[112,-63,72,0.9814910846762359],[112,-63,73,0.982931480742991],[112,-63,74,0.9841646458953619],[112,-63,75,0.985313184093684],[112,-63,76,0.986414028564468],[112,-63,77,0.9873894691700116],[112,-63,78,0.9882315458671656],[112,-63,79,0.9890038992161863],[112,-62,64,0.9672739170491695],[112,-62,65,0.9693342233076692],[112,-62,66,0.9708091113716364],[112,-62,67,0.971573674120009],[112,-62,68,0.9718501977622509],[112,-62,69,0.9719700114801526],[112,-62,70,0.9721299726516008],[112,-62,71,0.9725871114060283],[112,-62,72,0.9736785846762359],[112,-62,73,0.975118980742991],[112,-62,74,0.9763521458953619],[112,-62,75,0.977500684093684],[112,-62,76,0.978601528564468],[112,-62,77,0.9795769691700116],[112,-62,78,0.9804190458671656],[112,-62,79,0.9811913992161863],[112,-61,64,0.9594614170491695],[112,-61,65,0.9615217233076692],[112,-61,66,0.9629966113716364],[112,-61,67,0.963761174120009],[112,-61,68,0.9640376977622509],[112,-61,69,0.9641575114801526],[112,-61,70,0.9643174726516008],[112,-61,71,0.9647746114060283],[112,-61,72,0.9658660846762359],[112,-61,73,0.967306480742991],[112,-61,74,0.9685396458953619],[112,-61,75,0.969688184093684],[112,-61,76,0.970789028564468],[112,-61,77,0.9717644691700116],[112,-61,78,0.9726065458671656],[112,-61,79,0.9733788992161863],[112,-60,64,0.9516489170491695],[112,-60,65,0.9537092233076692],[112,-60,66,0.9551841113716364],[112,-60,67,0.955948674120009],[112,-60,68,0.9562251977622509],[112,-60,69,0.9563450114801526],[112,-60,70,0.9565049726516008],[112,-60,71,0.9569621114060283],[112,-60,72,0.9580535846762359],[112,-60,73,0.959493980742991],[112,-60,74,0.9607271458953619],[112,-60,75,0.961875684093684],[112,-60,76,0.962976528564468],[112,-60,77,0.9639519691700116],[112,-60,78,0.9647940458671656],[112,-60,79,0.9655663992161863],[112,-59,64,0.9438364170491695],[112,-59,65,0.9458967233076692],[112,-59,66,0.9473716113716364],[112,-59,67,0.948136174120009],[112,-59,68,0.9484126977622509],[112,-59,69,0.9485325114801526],[112,-59,70,0.9486924726516008],[112,-59,71,0.9491496114060283],[112,-59,72,0.9502410846762359],[112,-59,73,0.951681480742991],[112,-59,74,0.9529146458953619],[112,-59,75,0.954063184093684],[112,-59,76,0.955164028564468],[112,-59,77,0.9561394691700116],[112,-59,78,0.9569815458671656],[112,-59,79,0.9577538992161863],[112,-58,64,0.9360239170491695],[112,-58,65,0.9380842233076692],[112,-58,66,0.9395591113716364],[112,-58,67,0.940323674120009],[112,-58,68,0.9406001977622509],[112,-58,69,0.9407200114801526],[112,-58,70,0.9408799726516008],[112,-58,71,0.9413371114060283],[112,-58,72,0.9424285846762359],[112,-58,73,0.943868980742991],[112,-58,74,0.9451021458953619],[112,-58,75,0.946250684093684],[112,-58,76,0.947351528564468],[112,-58,77,0.9483269691700116],[112,-58,78,0.9491690458671656],[112,-58,79,0.9499413992161863],[112,-57,64,0.9282114170491695],[112,-57,65,0.9302717233076692],[112,-57,66,0.9317466113716364],[112,-57,67,0.932511174120009],[112,-57,68,0.9327876977622509],[112,-57,69,0.9329075114801526],[112,-57,70,0.9330674726516008],[112,-57,71,0.9335246114060283],[112,-57,72,0.9346160846762359],[112,-57,73,0.936056480742991],[112,-57,74,0.9372896458953619],[112,-57,75,0.938438184093684],[112,-57,76,0.939539028564468],[112,-57,77,0.9405144691700116],[112,-57,78,0.9413565458671656],[112,-57,79,0.9421288992161863],[112,-56,64,0.9203989170491695],[112,-56,65,0.9224592233076692],[112,-56,66,0.9239341113716364],[112,-56,67,0.924698674120009],[112,-56,68,0.9249751977622509],[112,-56,69,0.9250950114801526],[112,-56,70,0.9252549726516008],[112,-56,71,0.9257121114060283],[112,-56,72,0.9268035846762359],[112,-56,73,0.928243980742991],[112,-56,74,0.9294771458953619],[112,-56,75,0.930625684093684],[112,-56,76,0.931726528564468],[112,-56,77,0.9327019691700116],[112,-56,78,0.9335440458671656],[112,-56,79,0.9343163992161863],[112,-55,64,0.9125864170491695],[112,-55,65,0.9146467233076692],[112,-55,66,0.9161216113716364],[112,-55,67,0.916886174120009],[112,-55,68,0.9171626977622509],[112,-55,69,0.9172825114801526],[112,-55,70,0.9174424726516008],[112,-55,71,0.9178996114060283],[112,-55,72,0.9189910846762359],[112,-55,73,0.920431480742991],[112,-55,74,0.9216646458953619],[112,-55,75,0.922813184093684],[112,-55,76,0.923914028564468],[112,-55,77,0.9248894691700116],[112,-55,78,0.9257315458671656],[112,-55,79,0.9265038992161863],[112,-54,64,0.9047739170491695],[112,-54,65,0.9068342233076692],[112,-54,66,0.9083091113716364],[112,-54,67,0.909073674120009],[112,-54,68,0.9093501977622509],[112,-54,69,0.9094700114801526],[112,-54,70,0.9096299726516008],[112,-54,71,0.9100871114060283],[112,-54,72,0.9111785846762359],[112,-54,73,0.912618980742991],[112,-54,74,0.9138521458953619],[112,-54,75,0.915000684093684],[112,-54,76,0.916101528564468],[112,-54,77,0.9170769691700116],[112,-54,78,0.9179190458671656],[112,-54,79,0.9186913992161863],[112,-53,64,0.8969614170491695],[112,-53,65,0.8990217233076692],[112,-53,66,0.9004966113716364],[112,-53,67,0.901261174120009],[112,-53,68,0.9015376977622509],[112,-53,69,0.9016575114801526],[112,-53,70,0.9018174726516008],[112,-53,71,0.9022746114060283],[112,-53,72,0.9033660846762359],[112,-53,73,0.904806480742991],[112,-53,74,0.9060396458953619],[112,-53,75,0.907188184093684],[112,-53,76,0.908289028564468],[112,-53,77,0.9092644691700116],[112,-53,78,0.9101065458671656],[112,-53,79,0.9108788992161863],[112,-52,64,0.8891489170491695],[112,-52,65,0.8912092233076692],[112,-52,66,0.8926841113716364],[112,-52,67,0.893448674120009],[112,-52,68,0.8937251977622509],[112,-52,69,0.8938450114801526],[112,-52,70,0.8940049726516008],[112,-52,71,0.8944621114060283],[112,-52,72,0.8955535846762359],[112,-52,73,0.896993980742991],[112,-52,74,0.8982271458953619],[112,-52,75,0.899375684093684],[112,-52,76,0.900476528564468],[112,-52,77,0.9014519691700116],[112,-52,78,0.9022940458671656],[112,-52,79,0.9030663992161863],[112,-51,64,0.8813364170491695],[112,-51,65,0.8833967233076692],[112,-51,66,0.8848716113716364],[112,-51,67,0.885636174120009],[112,-51,68,0.8859126977622509],[112,-51,69,0.8860325114801526],[112,-51,70,0.8861924726516008],[112,-51,71,0.8866496114060283],[112,-51,72,0.8877410846762359],[112,-51,73,0.889181480742991],[112,-51,74,0.8904146458953619],[112,-51,75,0.891563184093684],[112,-51,76,0.892664028564468],[112,-51,77,0.8936394691700116],[112,-51,78,0.8944815458671656],[112,-51,79,0.8952538992161863],[112,-50,64,0.8735239170491695],[112,-50,65,0.8755842233076692],[112,-50,66,0.8770591113716364],[112,-50,67,0.877823674120009],[112,-50,68,0.8781001977622509],[112,-50,69,0.8782200114801526],[112,-50,70,0.8783799726516008],[112,-50,71,0.8788371114060283],[112,-50,72,0.8799285846762359],[112,-50,73,0.881368980742991],[112,-50,74,0.8826021458953619],[112,-50,75,0.883750684093684],[112,-50,76,0.884851528564468],[112,-50,77,0.8858269691700116],[112,-50,78,0.8866690458671656],[112,-50,79,0.8874413992161863],[112,-49,64,0.8657114170491695],[112,-49,65,0.8677717233076692],[112,-49,66,0.8692466113716364],[112,-49,67,0.870011174120009],[112,-49,68,0.8702876977622509],[112,-49,69,0.8704075114801526],[112,-49,70,0.8705674726516008],[112,-49,71,0.8710246114060283],[112,-49,72,0.8721160846762359],[112,-49,73,0.873556480742991],[112,-49,74,0.8747896458953619],[112,-49,75,0.875938184093684],[112,-49,76,0.877039028564468],[112,-49,77,0.8780144691700116],[112,-49,78,0.8788565458671656],[112,-49,79,0.8796288992161863],[112,-48,64,0.8578989170491695],[112,-48,65,0.8599592233076692],[112,-48,66,0.8614341113716364],[112,-48,67,0.862198674120009],[112,-48,68,0.8624751977622509],[112,-48,69,0.8625950114801526],[112,-48,70,0.8627549726516008],[112,-48,71,0.8632121114060283],[112,-48,72,0.8643035846762359],[112,-48,73,0.865743980742991],[112,-48,74,0.8669771458953619],[112,-48,75,0.868125684093684],[112,-48,76,0.869226528564468],[112,-48,77,0.8702019691700116],[112,-48,78,0.8710440458671656],[112,-48,79,0.8718163992161863],[112,-47,64,0.8500864170491695],[112,-47,65,0.8521467233076692],[112,-47,66,0.8536216113716364],[112,-47,67,0.854386174120009],[112,-47,68,0.8546626977622509],[112,-47,69,0.8547825114801526],[112,-47,70,0.8549424726516008],[112,-47,71,0.8553996114060283],[112,-47,72,0.8564910846762359],[112,-47,73,0.857931480742991],[112,-47,74,0.8591646458953619],[112,-47,75,0.860313184093684],[112,-47,76,0.861414028564468],[112,-47,77,0.8623894691700116],[112,-47,78,0.8632315458671656],[112,-47,79,0.8640038992161863],[112,-46,64,0.8422739170491695],[112,-46,65,0.8443342233076692],[112,-46,66,0.8458091113716364],[112,-46,67,0.846573674120009],[112,-46,68,0.8468501977622509],[112,-46,69,0.8469700114801526],[112,-46,70,0.8471299726516008],[112,-46,71,0.8475871114060283],[112,-46,72,0.8486785846762359],[112,-46,73,0.850118980742991],[112,-46,74,0.8513521458953619],[112,-46,75,0.852500684093684],[112,-46,76,0.853601528564468],[112,-46,77,0.8545769691700116],[112,-46,78,0.8554190458671656],[112,-46,79,0.8561913992161863],[112,-45,64,0.8344614170491695],[112,-45,65,0.8365217233076692],[112,-45,66,0.8379966113716364],[112,-45,67,0.838761174120009],[112,-45,68,0.8390376977622509],[112,-45,69,0.8391575114801526],[112,-45,70,0.8393174726516008],[112,-45,71,0.8397746114060283],[112,-45,72,0.8408660846762359],[112,-45,73,0.842306480742991],[112,-45,74,0.8435396458953619],[112,-45,75,0.844688184093684],[112,-45,76,0.845789028564468],[112,-45,77,0.8467644691700116],[112,-45,78,0.8476065458671656],[112,-45,79,0.8483788992161863],[112,-44,64,0.8266489170491695],[112,-44,65,0.8287092233076692],[112,-44,66,0.8301841113716364],[112,-44,67,0.830948674120009],[112,-44,68,0.8312251977622509],[112,-44,69,0.8313450114801526],[112,-44,70,0.8315049726516008],[112,-44,71,0.8319621114060283],[112,-44,72,0.8330535846762359],[112,-44,73,0.834493980742991],[112,-44,74,0.8357271458953619],[112,-44,75,0.836875684093684],[112,-44,76,0.837976528564468],[112,-44,77,0.8389519691700116],[112,-44,78,0.8397940458671656],[112,-44,79,0.8405663992161863],[112,-43,64,0.8188364170491695],[112,-43,65,0.8208967233076692],[112,-43,66,0.8223716113716364],[112,-43,67,0.823136174120009],[112,-43,68,0.8234126977622509],[112,-43,69,0.8235325114801526],[112,-43,70,0.8236924726516008],[112,-43,71,0.8241496114060283],[112,-43,72,0.8252410846762359],[112,-43,73,0.826681480742991],[112,-43,74,0.8279146458953619],[112,-43,75,0.829063184093684],[112,-43,76,0.830164028564468],[112,-43,77,0.8311394691700116],[112,-43,78,0.8319815458671656],[112,-43,79,0.8327538992161863],[112,-42,64,0.8110239170491695],[112,-42,65,0.8130842233076692],[112,-42,66,0.8145591113716364],[112,-42,67,0.815323674120009],[112,-42,68,0.8156001977622509],[112,-42,69,0.8157200114801526],[112,-42,70,0.8158799726516008],[112,-42,71,0.8163371114060283],[112,-42,72,0.8174285846762359],[112,-42,73,0.818868980742991],[112,-42,74,0.8201021458953619],[112,-42,75,0.821250684093684],[112,-42,76,0.822351528564468],[112,-42,77,0.8233269691700116],[112,-42,78,0.8241690458671656],[112,-42,79,0.8249413992161863],[112,-41,64,0.8032114170491695],[112,-41,65,0.8052717233076692],[112,-41,66,0.8067466113716364],[112,-41,67,0.807511174120009],[112,-41,68,0.8077876977622509],[112,-41,69,0.8079075114801526],[112,-41,70,0.8080674726516008],[112,-41,71,0.8085246114060283],[112,-41,72,0.8096160846762359],[112,-41,73,0.811056480742991],[112,-41,74,0.8122896458953619],[112,-41,75,0.813438184093684],[112,-41,76,0.814539028564468],[112,-41,77,0.8155144691700116],[112,-41,78,0.8163565458671656],[112,-41,79,0.8171288992161863],[112,-40,64,0.7953989170491695],[112,-40,65,0.7974592233076692],[112,-40,66,0.7989341113716364],[112,-40,67,0.799698674120009],[112,-40,68,0.7999751977622509],[112,-40,69,0.8000950114801526],[112,-40,70,0.8002549726516008],[112,-40,71,0.8007121114060283],[112,-40,72,0.8018035846762359],[112,-40,73,0.803243980742991],[112,-40,74,0.8044771458953619],[112,-40,75,0.805625684093684],[112,-40,76,0.806726528564468],[112,-40,77,0.8077019691700116],[112,-40,78,0.8085440458671656],[112,-40,79,0.8093163992161863],[112,-39,64,0.7875864170491695],[112,-39,65,0.7896467233076692],[112,-39,66,0.7911216113716364],[112,-39,67,0.791886174120009],[112,-39,68,0.7921626977622509],[112,-39,69,0.7922825114801526],[112,-39,70,0.7924424726516008],[112,-39,71,0.7928996114060283],[112,-39,72,0.7939910846762359],[112,-39,73,0.795431480742991],[112,-39,74,0.7966646458953619],[112,-39,75,0.797813184093684],[112,-39,76,0.798914028564468],[112,-39,77,0.7998894691700116],[112,-39,78,0.8007315458671656],[112,-39,79,0.8015038992161863],[112,-38,64,0.7797739170491695],[112,-38,65,0.7818342233076692],[112,-38,66,0.7833091113716364],[112,-38,67,0.784073674120009],[112,-38,68,0.7843501977622509],[112,-38,69,0.7844700114801526],[112,-38,70,0.7846299726516008],[112,-38,71,0.7850871114060283],[112,-38,72,0.7861785846762359],[112,-38,73,0.787618980742991],[112,-38,74,0.7888521458953619],[112,-38,75,0.790000684093684],[112,-38,76,0.791101528564468],[112,-38,77,0.7920769691700116],[112,-38,78,0.7929190458671656],[112,-38,79,0.7936913992161863],[112,-37,64,0.7719614170491695],[112,-37,65,0.7740217233076692],[112,-37,66,0.7754966113716364],[112,-37,67,0.776261174120009],[112,-37,68,0.7765376977622509],[112,-37,69,0.7766575114801526],[112,-37,70,0.7768174726516008],[112,-37,71,0.7772746114060283],[112,-37,72,0.7783660846762359],[112,-37,73,0.779806480742991],[112,-37,74,0.7810396458953619],[112,-37,75,0.782188184093684],[112,-37,76,0.783289028564468],[112,-37,77,0.7842644691700116],[112,-37,78,0.7851065458671656],[112,-37,79,0.7858788992161863],[112,-36,64,0.7641489170491695],[112,-36,65,0.7662092233076692],[112,-36,66,0.7676841113716364],[112,-36,67,0.768448674120009],[112,-36,68,0.7687251977622509],[112,-36,69,0.7688450114801526],[112,-36,70,0.7690049726516008],[112,-36,71,0.7694621114060283],[112,-36,72,0.7705535846762359],[112,-36,73,0.771993980742991],[112,-36,74,0.7732271458953619],[112,-36,75,0.774375684093684],[112,-36,76,0.775476528564468],[112,-36,77,0.7764519691700116],[112,-36,78,0.7772940458671656],[112,-36,79,0.7780663992161863],[112,-35,64,0.7563364170491695],[112,-35,65,0.7583967233076692],[112,-35,66,0.7598716113716364],[112,-35,67,0.760636174120009],[112,-35,68,0.7609126977622509],[112,-35,69,0.7610325114801526],[112,-35,70,0.7611924726516008],[112,-35,71,0.7616496114060283],[112,-35,72,0.7627410846762359],[112,-35,73,0.764181480742991],[112,-35,74,0.7654146458953619],[112,-35,75,0.766563184093684],[112,-35,76,0.767664028564468],[112,-35,77,0.7686394691700116],[112,-35,78,0.7694815458671656],[112,-35,79,0.7702538992161863],[112,-34,64,0.7485239170491695],[112,-34,65,0.7505842233076692],[112,-34,66,0.7520591113716364],[112,-34,67,0.752823674120009],[112,-34,68,0.7531001977622509],[112,-34,69,0.7532200114801526],[112,-34,70,0.7533799726516008],[112,-34,71,0.7538371114060283],[112,-34,72,0.7549285846762359],[112,-34,73,0.756368980742991],[112,-34,74,0.7576021458953619],[112,-34,75,0.758750684093684],[112,-34,76,0.759851528564468],[112,-34,77,0.7608269691700116],[112,-34,78,0.7616690458671656],[112,-34,79,0.7624413992161863],[112,-33,64,0.7407114170491695],[112,-33,65,0.7427717233076692],[112,-33,66,0.7442466113716364],[112,-33,67,0.745011174120009],[112,-33,68,0.7452876977622509],[112,-33,69,0.7454075114801526],[112,-33,70,0.7455674726516008],[112,-33,71,0.7460246114060283],[112,-33,72,0.7471160846762359],[112,-33,73,0.748556480742991],[112,-33,74,0.7497896458953619],[112,-33,75,0.750938184093684],[112,-33,76,0.752039028564468],[112,-33,77,0.7530144691700116],[112,-33,78,0.7538565458671656],[112,-33,79,0.7546288992161863],[112,-32,64,0.7328989170491695],[112,-32,65,0.7349592233076692],[112,-32,66,0.7364341113716364],[112,-32,67,0.737198674120009],[112,-32,68,0.7374751977622509],[112,-32,69,0.7375950114801526],[112,-32,70,0.7377549726516008],[112,-32,71,0.7382121114060283],[112,-32,72,0.7393035846762359],[112,-32,73,0.740743980742991],[112,-32,74,0.7419771458953619],[112,-32,75,0.743125684093684],[112,-32,76,0.744226528564468],[112,-32,77,0.7452019691700116],[112,-32,78,0.7460440458671656],[112,-32,79,0.7468163992161863],[112,-31,64,0.7250864170491695],[112,-31,65,0.7271467233076692],[112,-31,66,0.7286216113716364],[112,-31,67,0.729386174120009],[112,-31,68,0.7296626977622509],[112,-31,69,0.7297825114801526],[112,-31,70,0.7299424726516008],[112,-31,71,0.7303996114060283],[112,-31,72,0.7314910846762359],[112,-31,73,0.732931480742991],[112,-31,74,0.7341646458953619],[112,-31,75,0.735313184093684],[112,-31,76,0.736414028564468],[112,-31,77,0.7373894691700116],[112,-31,78,0.7382315458671656],[112,-31,79,0.7390038992161863],[112,-30,64,0.7172739170491695],[112,-30,65,0.7193342233076692],[112,-30,66,0.7208091113716364],[112,-30,67,0.721573674120009],[112,-30,68,0.7218501977622509],[112,-30,69,0.7219700114801526],[112,-30,70,0.7221299726516008],[112,-30,71,0.7225871114060283],[112,-30,72,0.7236785846762359],[112,-30,73,0.725118980742991],[112,-30,74,0.7263521458953619],[112,-30,75,0.727500684093684],[112,-30,76,0.728601528564468],[112,-30,77,0.7295769691700116],[112,-30,78,0.7304190458671656],[112,-30,79,0.7311913992161863],[112,-29,64,0.7094614170491695],[112,-29,65,0.7115217233076692],[112,-29,66,0.7129966113716364],[112,-29,67,0.713761174120009],[112,-29,68,0.7140376977622509],[112,-29,69,0.7141575114801526],[112,-29,70,0.7143174726516008],[112,-29,71,0.7147746114060283],[112,-29,72,0.7158660846762359],[112,-29,73,0.717306480742991],[112,-29,74,0.7185396458953619],[112,-29,75,0.719688184093684],[112,-29,76,0.720789028564468],[112,-29,77,0.7217644691700116],[112,-29,78,0.7226065458671656],[112,-29,79,0.7233788992161863],[112,-28,64,0.7016489170491695],[112,-28,65,0.7037092233076692],[112,-28,66,0.7051841113716364],[112,-28,67,0.705948674120009],[112,-28,68,0.7062251977622509],[112,-28,69,0.7063450114801526],[112,-28,70,0.7065049726516008],[112,-28,71,0.7069621114060283],[112,-28,72,0.7080535846762359],[112,-28,73,0.709493980742991],[112,-28,74,0.7107271458953619],[112,-28,75,0.711875684093684],[112,-28,76,0.712976528564468],[112,-28,77,0.7139519691700116],[112,-28,78,0.7147940458671656],[112,-28,79,0.7155663992161863],[112,-27,64,0.6938364170491695],[112,-27,65,0.6958967233076692],[112,-27,66,0.6973716113716364],[112,-27,67,0.698136174120009],[112,-27,68,0.6984126977622509],[112,-27,69,0.6985325114801526],[112,-27,70,0.6986924726516008],[112,-27,71,0.6991496114060283],[112,-27,72,0.7002410846762359],[112,-27,73,0.701681480742991],[112,-27,74,0.7029146458953619],[112,-27,75,0.704063184093684],[112,-27,76,0.705164028564468],[112,-27,77,0.7061394691700116],[112,-27,78,0.7069815458671656],[112,-27,79,0.7077538992161863],[112,-26,64,0.6860239170491695],[112,-26,65,0.6880842233076692],[112,-26,66,0.6895591113716364],[112,-26,67,0.690323674120009],[112,-26,68,0.6906001977622509],[112,-26,69,0.6907200114801526],[112,-26,70,0.6908799726516008],[112,-26,71,0.6913371114060283],[112,-26,72,0.6924285846762359],[112,-26,73,0.693868980742991],[112,-26,74,0.6951021458953619],[112,-26,75,0.696250684093684],[112,-26,76,0.697351528564468],[112,-26,77,0.6983269691700116],[112,-26,78,0.6991690458671656],[112,-26,79,0.6999413992161863],[112,-25,64,0.6782114170491695],[112,-25,65,0.6802717233076692],[112,-25,66,0.6817466113716364],[112,-25,67,0.682511174120009],[112,-25,68,0.6827876977622509],[112,-25,69,0.6829075114801526],[112,-25,70,0.6830674726516008],[112,-25,71,0.6835246114060283],[112,-25,72,0.6846160846762359],[112,-25,73,0.686056480742991],[112,-25,74,0.6872896458953619],[112,-25,75,0.688438184093684],[112,-25,76,0.689539028564468],[112,-25,77,0.6905144691700116],[112,-25,78,0.6913565458671656],[112,-25,79,0.6921288992161863],[112,-24,64,0.6703989170491695],[112,-24,65,0.6724592233076692],[112,-24,66,0.6739341113716364],[112,-24,67,0.674698674120009],[112,-24,68,0.6749751977622509],[112,-24,69,0.6750950114801526],[112,-24,70,0.6752549726516008],[112,-24,71,0.6757121114060283],[112,-24,72,0.6768035846762359],[112,-24,73,0.678243980742991],[112,-24,74,0.6794771458953619],[112,-24,75,0.680625684093684],[112,-24,76,0.681726528564468],[112,-24,77,0.6827019691700116],[112,-24,78,0.6835440458671656],[112,-24,79,0.6843163992161863],[112,-23,64,0.6625864170491695],[112,-23,65,0.6646467233076692],[112,-23,66,0.6661216113716364],[112,-23,67,0.666886174120009],[112,-23,68,0.6671626977622509],[112,-23,69,0.6672825114801526],[112,-23,70,0.6674424726516008],[112,-23,71,0.6678996114060283],[112,-23,72,0.6689910846762359],[112,-23,73,0.670431480742991],[112,-23,74,0.6716646458953619],[112,-23,75,0.672813184093684],[112,-23,76,0.673914028564468],[112,-23,77,0.6748894691700116],[112,-23,78,0.6757315458671656],[112,-23,79,0.6765038992161863],[112,-22,64,0.6547739170491695],[112,-22,65,0.6568342233076692],[112,-22,66,0.6583091113716364],[112,-22,67,0.659073674120009],[112,-22,68,0.6593501977622509],[112,-22,69,0.6594700114801526],[112,-22,70,0.6596299726516008],[112,-22,71,0.6600871114060283],[112,-22,72,0.6611785846762359],[112,-22,73,0.662618980742991],[112,-22,74,0.6638521458953619],[112,-22,75,0.665000684093684],[112,-22,76,0.666101528564468],[112,-22,77,0.6670769691700116],[112,-22,78,0.6679190458671656],[112,-22,79,0.6686913992161863],[112,-21,64,0.6469614170491695],[112,-21,65,0.6490217233076692],[112,-21,66,0.6504966113716364],[112,-21,67,0.651261174120009],[112,-21,68,0.6515376977622509],[112,-21,69,0.6516575114801526],[112,-21,70,0.6518174726516008],[112,-21,71,0.6522746114060283],[112,-21,72,0.6533660846762359],[112,-21,73,0.654806480742991],[112,-21,74,0.6560396458953619],[112,-21,75,0.657188184093684],[112,-21,76,0.658289028564468],[112,-21,77,0.6592644691700116],[112,-21,78,0.6601065458671656],[112,-21,79,0.6608788992161863],[112,-20,64,0.6391489170491695],[112,-20,65,0.6412092233076692],[112,-20,66,0.6426841113716364],[112,-20,67,0.643448674120009],[112,-20,68,0.6437251977622509],[112,-20,69,0.6438450114801526],[112,-20,70,0.6440049726516008],[112,-20,71,0.6444621114060283],[112,-20,72,0.6455535846762359],[112,-20,73,0.646993980742991],[112,-20,74,0.6482271458953619],[112,-20,75,0.649375684093684],[112,-20,76,0.650476528564468],[112,-20,77,0.6514519691700116],[112,-20,78,0.6522940458671656],[112,-20,79,0.6530663992161863],[112,-19,64,0.6313364170491695],[112,-19,65,0.6333967233076692],[112,-19,66,0.6348716113716364],[112,-19,67,0.635636174120009],[112,-19,68,0.6359126977622509],[112,-19,69,0.6360325114801526],[112,-19,70,0.6361924726516008],[112,-19,71,0.6366496114060283],[112,-19,72,0.6377410846762359],[112,-19,73,0.639181480742991],[112,-19,74,0.6404146458953619],[112,-19,75,0.641563184093684],[112,-19,76,0.642664028564468],[112,-19,77,0.6436394691700116],[112,-19,78,0.6444815458671656],[112,-19,79,0.6452538992161863],[112,-18,64,0.6235239170491695],[112,-18,65,0.6255842233076692],[112,-18,66,0.6270591113716364],[112,-18,67,0.627823674120009],[112,-18,68,0.6281001977622509],[112,-18,69,0.6282200114801526],[112,-18,70,0.6283799726516008],[112,-18,71,0.6288371114060283],[112,-18,72,0.6299285846762359],[112,-18,73,0.631368980742991],[112,-18,74,0.6326021458953619],[112,-18,75,0.633750684093684],[112,-18,76,0.634851528564468],[112,-18,77,0.6358269691700116],[112,-18,78,0.6366690458671656],[112,-18,79,0.6374413992161863],[112,-17,64,0.6157114170491695],[112,-17,65,0.6177717233076692],[112,-17,66,0.6192466113716364],[112,-17,67,0.620011174120009],[112,-17,68,0.6202876977622509],[112,-17,69,0.6204075114801526],[112,-17,70,0.6205674726516008],[112,-17,71,0.6210246114060283],[112,-17,72,0.6221160846762359],[112,-17,73,0.623556480742991],[112,-17,74,0.6247896458953619],[112,-17,75,0.625938184093684],[112,-17,76,0.627039028564468],[112,-17,77,0.6280144691700116],[112,-17,78,0.6288565458671656],[112,-17,79,0.6296288992161863],[112,-16,64,0.6078989170491695],[112,-16,65,0.6099592233076692],[112,-16,66,0.6114341113716364],[112,-16,67,0.612198674120009],[112,-16,68,0.6124751977622509],[112,-16,69,0.6125950114801526],[112,-16,70,0.6127549726516008],[112,-16,71,0.6132121114060283],[112,-16,72,0.6143035846762359],[112,-16,73,0.615743980742991],[112,-16,74,0.6169771458953619],[112,-16,75,0.618125684093684],[112,-16,76,0.619226528564468],[112,-16,77,0.6202019691700116],[112,-16,78,0.6210440458671656],[112,-16,79,0.6218163992161863],[112,-15,64,0.6000864170491695],[112,-15,65,0.6021467233076692],[112,-15,66,0.6036216113716364],[112,-15,67,0.604386174120009],[112,-15,68,0.6046626977622509],[112,-15,69,0.6047825114801526],[112,-15,70,0.6049424726516008],[112,-15,71,0.6053996114060283],[112,-15,72,0.6064910846762359],[112,-15,73,0.607931480742991],[112,-15,74,0.6091646458953619],[112,-15,75,0.610313184093684],[112,-15,76,0.611414028564468],[112,-15,77,0.6123894691700116],[112,-15,78,0.6132315458671656],[112,-15,79,0.6140038992161863],[112,-14,64,0.5922739170491695],[112,-14,65,0.5943342233076692],[112,-14,66,0.5958091113716364],[112,-14,67,0.596573674120009],[112,-14,68,0.5968501977622509],[112,-14,69,0.5969700114801526],[112,-14,70,0.5971299726516008],[112,-14,71,0.5975871114060283],[112,-14,72,0.5986785846762359],[112,-14,73,0.600118980742991],[112,-14,74,0.6013521458953619],[112,-14,75,0.602500684093684],[112,-14,76,0.603601528564468],[112,-14,77,0.6045769691700116],[112,-14,78,0.6054190458671656],[112,-14,79,0.6061913992161863],[112,-13,64,0.5844614170491695],[112,-13,65,0.5865217233076692],[112,-13,66,0.5879966113716364],[112,-13,67,0.588761174120009],[112,-13,68,0.5890376977622509],[112,-13,69,0.5891575114801526],[112,-13,70,0.5893174726516008],[112,-13,71,0.5897746114060283],[112,-13,72,0.5908660846762359],[112,-13,73,0.592306480742991],[112,-13,74,0.5935396458953619],[112,-13,75,0.594688184093684],[112,-13,76,0.595789028564468],[112,-13,77,0.5967644691700116],[112,-13,78,0.5976065458671656],[112,-13,79,0.5983788992161863],[112,-12,64,0.5766489170491695],[112,-12,65,0.5787092233076692],[112,-12,66,0.5801841113716364],[112,-12,67,0.580948674120009],[112,-12,68,0.5812251977622509],[112,-12,69,0.5813450114801526],[112,-12,70,0.5815049726516008],[112,-12,71,0.5819621114060283],[112,-12,72,0.5830535846762359],[112,-12,73,0.584493980742991],[112,-12,74,0.5857271458953619],[112,-12,75,0.586875684093684],[112,-12,76,0.587976528564468],[112,-12,77,0.5889519691700116],[112,-12,78,0.5897940458671656],[112,-12,79,0.5905663992161863],[112,-11,64,0.5688364170491695],[112,-11,65,0.5708967233076692],[112,-11,66,0.5723716113716364],[112,-11,67,0.573136174120009],[112,-11,68,0.5734126977622509],[112,-11,69,0.5735325114801526],[112,-11,70,0.5736924726516008],[112,-11,71,0.5741496114060283],[112,-11,72,0.5752410846762359],[112,-11,73,0.576681480742991],[112,-11,74,0.5779146458953619],[112,-11,75,0.579063184093684],[112,-11,76,0.580164028564468],[112,-11,77,0.5811394691700116],[112,-11,78,0.5819815458671656],[112,-11,79,0.5827538992161863],[112,-10,64,0.5610239170491695],[112,-10,65,0.5630842233076692],[112,-10,66,0.5645591113716364],[112,-10,67,0.565323674120009],[112,-10,68,0.5656001977622509],[112,-10,69,0.5657200114801526],[112,-10,70,0.5658799726516008],[112,-10,71,0.5663371114060283],[112,-10,72,0.5674285846762359],[112,-10,73,0.568868980742991],[112,-10,74,0.5701021458953619],[112,-10,75,0.571250684093684],[112,-10,76,0.572351528564468],[112,-10,77,0.5733269691700116],[112,-10,78,0.5741690458671656],[112,-10,79,0.5749413992161863],[112,-9,64,0.5532114170491695],[112,-9,65,0.5552717233076692],[112,-9,66,0.5567466113716364],[112,-9,67,0.557511174120009],[112,-9,68,0.5577876977622509],[112,-9,69,0.5579075114801526],[112,-9,70,0.5580674726516008],[112,-9,71,0.5585246114060283],[112,-9,72,0.5596160846762359],[112,-9,73,0.561056480742991],[112,-9,74,0.5622896458953619],[112,-9,75,0.563438184093684],[112,-9,76,0.564539028564468],[112,-9,77,0.5655144691700116],[112,-9,78,0.5663565458671656],[112,-9,79,0.5671288992161863],[112,-8,64,0.5453989170491695],[112,-8,65,0.5474592233076692],[112,-8,66,0.5489341113716364],[112,-8,67,0.549698674120009],[112,-8,68,0.5499751977622509],[112,-8,69,0.5500950114801526],[112,-8,70,0.5502549726516008],[112,-8,71,0.5507121114060283],[112,-8,72,0.5518035846762359],[112,-8,73,0.553243980742991],[112,-8,74,0.5544771458953619],[112,-8,75,0.555625684093684],[112,-8,76,0.556726528564468],[112,-8,77,0.5577019691700116],[112,-8,78,0.5585440458671656],[112,-8,79,0.5593163992161863],[112,-7,64,0.5375864170491695],[112,-7,65,0.5396467233076692],[112,-7,66,0.5411216113716364],[112,-7,67,0.541886174120009],[112,-7,68,0.5421626977622509],[112,-7,69,0.5422825114801526],[112,-7,70,0.5424424726516008],[112,-7,71,0.5428996114060283],[112,-7,72,0.5439910846762359],[112,-7,73,0.545431480742991],[112,-7,74,0.5466646458953619],[112,-7,75,0.547813184093684],[112,-7,76,0.548914028564468],[112,-7,77,0.5498894691700116],[112,-7,78,0.5507315458671656],[112,-7,79,0.5515038992161863],[112,-6,64,0.5297739170491695],[112,-6,65,0.5318342233076692],[112,-6,66,0.5333091113716364],[112,-6,67,0.534073674120009],[112,-6,68,0.5343501977622509],[112,-6,69,0.5344700114801526],[112,-6,70,0.5346299726516008],[112,-6,71,0.5350871114060283],[112,-6,72,0.5361785846762359],[112,-6,73,0.537618980742991],[112,-6,74,0.5388521458953619],[112,-6,75,0.540000684093684],[112,-6,76,0.541101528564468],[112,-6,77,0.5420769691700116],[112,-6,78,0.5429190458671656],[112,-6,79,0.5436913992161863],[112,-5,64,0.5219614170491695],[112,-5,65,0.5240217233076692],[112,-5,66,0.5254966113716364],[112,-5,67,0.526261174120009],[112,-5,68,0.5265376977622509],[112,-5,69,0.5266575114801526],[112,-5,70,0.5268174726516008],[112,-5,71,0.5272746114060283],[112,-5,72,0.5283660846762359],[112,-5,73,0.529806480742991],[112,-5,74,0.5310396458953619],[112,-5,75,0.532188184093684],[112,-5,76,0.533289028564468],[112,-5,77,0.5342644691700116],[112,-5,78,0.5351065458671656],[112,-5,79,0.5358788992161863],[112,-4,64,0.5141489170491695],[112,-4,65,0.5162092233076692],[112,-4,66,0.5176841113716364],[112,-4,67,0.518448674120009],[112,-4,68,0.5187251977622509],[112,-4,69,0.5188450114801526],[112,-4,70,0.5190049726516008],[112,-4,71,0.5194621114060283],[112,-4,72,0.5205535846762359],[112,-4,73,0.521993980742991],[112,-4,74,0.5232271458953619],[112,-4,75,0.524375684093684],[112,-4,76,0.525476528564468],[112,-4,77,0.5264519691700116],[112,-4,78,0.5272940458671656],[112,-4,79,0.5280663992161863],[112,-3,64,0.5063364170491695],[112,-3,65,0.5083967233076692],[112,-3,66,0.5098716113716364],[112,-3,67,0.510636174120009],[112,-3,68,0.5109126977622509],[112,-3,69,0.5110325114801526],[112,-3,70,0.5111924726516008],[112,-3,71,0.5116496114060283],[112,-3,72,0.5127410846762359],[112,-3,73,0.514181480742991],[112,-3,74,0.5154146458953619],[112,-3,75,0.516563184093684],[112,-3,76,0.517664028564468],[112,-3,77,0.5186394691700116],[112,-3,78,0.5194815458671656],[112,-3,79,0.5202538992161863],[112,-2,64,0.49852391704916954],[112,-2,65,0.5005842233076692],[112,-2,66,0.5020591113716364],[112,-2,67,0.502823674120009],[112,-2,68,0.5031001977622509],[112,-2,69,0.5032200114801526],[112,-2,70,0.5033799726516008],[112,-2,71,0.5038371114060283],[112,-2,72,0.5049285846762359],[112,-2,73,0.506368980742991],[112,-2,74,0.5076021458953619],[112,-2,75,0.508750684093684],[112,-2,76,0.509851528564468],[112,-2,77,0.5108269691700116],[112,-2,78,0.5116690458671656],[112,-2,79,0.5124413992161863],[112,-1,64,0.49071141704916954],[112,-1,65,0.49277172330766916],[112,-1,66,0.4942466113716364],[112,-1,67,0.49501117412000895],[112,-1,68,0.4952876977622509],[112,-1,69,0.4954075114801526],[112,-1,70,0.49556747265160084],[112,-1,71,0.49602461140602827],[112,-1,72,0.4971160846762359],[112,-1,73,0.49855648074299097],[112,-1,74,0.4997896458953619],[112,-1,75,0.500938184093684],[112,-1,76,0.502039028564468],[112,-1,77,0.5030144691700116],[112,-1,78,0.5038565458671656],[112,-1,79,0.5046288992161863],[112,0,64,0.48289891704916954],[112,0,65,0.48495922330766916],[112,0,66,0.4864341113716364],[112,0,67,0.48719867412000895],[112,0,68,0.4874751977622509],[112,0,69,0.4875950114801526],[112,0,70,0.48775497265160084],[112,0,71,0.48821211140602827],[112,0,72,0.4893035846762359],[112,0,73,0.49074398074299097],[112,0,74,0.4919771458953619],[112,0,75,0.49312568409368396],[112,0,76,0.494226528564468],[112,0,77,0.4952019691700116],[112,0,78,0.49604404586716555],[112,0,79,0.49681639921618626],[112,1,64,0.47508641704916954],[112,1,65,0.47714672330766916],[112,1,66,0.4786216113716364],[112,1,67,0.47938617412000895],[112,1,68,0.4796626977622509],[112,1,69,0.4797825114801526],[112,1,70,0.47994247265160084],[112,1,71,0.48039961140602827],[112,1,72,0.4814910846762359],[112,1,73,0.48293148074299097],[112,1,74,0.4841646458953619],[112,1,75,0.48531318409368396],[112,1,76,0.486414028564468],[112,1,77,0.4873894691700116],[112,1,78,0.48823154586716555],[112,1,79,0.48900389921618626],[112,2,64,0.46727391704916954],[112,2,65,0.46933422330766916],[112,2,66,0.4708091113716364],[112,2,67,0.47157367412000895],[112,2,68,0.4718501977622509],[112,2,69,0.4719700114801526],[112,2,70,0.47212997265160084],[112,2,71,0.47258711140602827],[112,2,72,0.4736785846762359],[112,2,73,0.47511898074299097],[112,2,74,0.4763521458953619],[112,2,75,0.47750068409368396],[112,2,76,0.478601528564468],[112,2,77,0.4795769691700116],[112,2,78,0.48041904586716555],[112,2,79,0.48119139921618626],[112,3,64,0.45946141704916954],[112,3,65,0.46152172330766916],[112,3,66,0.4629966113716364],[112,3,67,0.46376117412000895],[112,3,68,0.4640376977622509],[112,3,69,0.4641575114801526],[112,3,70,0.46431747265160084],[112,3,71,0.46477461140602827],[112,3,72,0.4658660846762359],[112,3,73,0.46730648074299097],[112,3,74,0.4685396458953619],[112,3,75,0.46968818409368396],[112,3,76,0.470789028564468],[112,3,77,0.4717644691700116],[112,3,78,0.47260654586716555],[112,3,79,0.47337889921618626],[112,4,64,0.45164891704916954],[112,4,65,0.45370922330766916],[112,4,66,0.4551841113716364],[112,4,67,0.45594867412000895],[112,4,68,0.4562251977622509],[112,4,69,0.4563450114801526],[112,4,70,0.45650497265160084],[112,4,71,0.45696211140602827],[112,4,72,0.4580535846762359],[112,4,73,0.45949398074299097],[112,4,74,0.4607271458953619],[112,4,75,0.46187568409368396],[112,4,76,0.462976528564468],[112,4,77,0.4639519691700116],[112,4,78,0.46479404586716555],[112,4,79,0.46556639921618626],[112,5,64,0.44383641704916954],[112,5,65,0.44589672330766916],[112,5,66,0.4473716113716364],[112,5,67,0.44813617412000895],[112,5,68,0.4484126977622509],[112,5,69,0.4485325114801526],[112,5,70,0.44869247265160084],[112,5,71,0.44914961140602827],[112,5,72,0.4502410846762359],[112,5,73,0.45168148074299097],[112,5,74,0.4529146458953619],[112,5,75,0.45406318409368396],[112,5,76,0.455164028564468],[112,5,77,0.4561394691700116],[112,5,78,0.45698154586716555],[112,5,79,0.45775389921618626],[112,6,64,0.43602391704916954],[112,6,65,0.43808422330766916],[112,6,66,0.4395591113716364],[112,6,67,0.44032367412000895],[112,6,68,0.4406001977622509],[112,6,69,0.4407200114801526],[112,6,70,0.44087997265160084],[112,6,71,0.44133711140602827],[112,6,72,0.4424285846762359],[112,6,73,0.44386898074299097],[112,6,74,0.4451021458953619],[112,6,75,0.44625068409368396],[112,6,76,0.447351528564468],[112,6,77,0.4483269691700116],[112,6,78,0.44916904586716555],[112,6,79,0.44994139921618626],[112,7,64,0.42821141704916954],[112,7,65,0.43027172330766916],[112,7,66,0.4317466113716364],[112,7,67,0.43251117412000895],[112,7,68,0.4327876977622509],[112,7,69,0.4329075114801526],[112,7,70,0.43306747265160084],[112,7,71,0.43352461140602827],[112,7,72,0.4346160846762359],[112,7,73,0.43605648074299097],[112,7,74,0.4372896458953619],[112,7,75,0.43843818409368396],[112,7,76,0.439539028564468],[112,7,77,0.4405144691700116],[112,7,78,0.44135654586716555],[112,7,79,0.44212889921618626],[112,8,64,0.42039891704916954],[112,8,65,0.42245922330766916],[112,8,66,0.4239341113716364],[112,8,67,0.42469867412000895],[112,8,68,0.4249751977622509],[112,8,69,0.4250950114801526],[112,8,70,0.42525497265160084],[112,8,71,0.42571211140602827],[112,8,72,0.4268035846762359],[112,8,73,0.42824398074299097],[112,8,74,0.4294771458953619],[112,8,75,0.43062568409368396],[112,8,76,0.431726528564468],[112,8,77,0.4327019691700116],[112,8,78,0.43354404586716555],[112,8,79,0.43431639921618626],[112,9,64,0.41258641704916954],[112,9,65,0.41464672330766916],[112,9,66,0.4161216113716364],[112,9,67,0.41688617412000895],[112,9,68,0.4171626977622509],[112,9,69,0.4172825114801526],[112,9,70,0.41744247265160084],[112,9,71,0.41789961140602827],[112,9,72,0.4189910846762359],[112,9,73,0.42043148074299097],[112,9,74,0.4216646458953619],[112,9,75,0.42281318409368396],[112,9,76,0.423914028564468],[112,9,77,0.4248894691700116],[112,9,78,0.42573154586716555],[112,9,79,0.42650389921618626],[112,10,64,0.40477391704916954],[112,10,65,0.40683422330766916],[112,10,66,0.4083091113716364],[112,10,67,0.40907367412000895],[112,10,68,0.4093501977622509],[112,10,69,0.4094700114801526],[112,10,70,0.40962997265160084],[112,10,71,0.41008711140602827],[112,10,72,0.4111785846762359],[112,10,73,0.41261898074299097],[112,10,74,0.4138521458953619],[112,10,75,0.41500068409368396],[112,10,76,0.416101528564468],[112,10,77,0.4170769691700116],[112,10,78,0.41791904586716555],[112,10,79,0.41869139921618626],[112,11,64,0.39696141704916954],[112,11,65,0.39902172330766916],[112,11,66,0.4004966113716364],[112,11,67,0.40126117412000895],[112,11,68,0.4015376977622509],[112,11,69,0.4016575114801526],[112,11,70,0.40181747265160084],[112,11,71,0.40227461140602827],[112,11,72,0.4033660846762359],[112,11,73,0.40480648074299097],[112,11,74,0.4060396458953619],[112,11,75,0.40718818409368396],[112,11,76,0.408289028564468],[112,11,77,0.4092644691700116],[112,11,78,0.41010654586716555],[112,11,79,0.41087889921618626],[112,12,64,0.38914891704916954],[112,12,65,0.39120922330766916],[112,12,66,0.3926841113716364],[112,12,67,0.39344867412000895],[112,12,68,0.3937251977622509],[112,12,69,0.3938450114801526],[112,12,70,0.39400497265160084],[112,12,71,0.39446211140602827],[112,12,72,0.3955535846762359],[112,12,73,0.39699398074299097],[112,12,74,0.3982271458953619],[112,12,75,0.39937568409368396],[112,12,76,0.400476528564468],[112,12,77,0.4014519691700116],[112,12,78,0.40229404586716555],[112,12,79,0.40306639921618626],[112,13,64,0.38133641704916954],[112,13,65,0.38339672330766916],[112,13,66,0.3848716113716364],[112,13,67,0.38563617412000895],[112,13,68,0.3859126977622509],[112,13,69,0.3860325114801526],[112,13,70,0.38619247265160084],[112,13,71,0.38664961140602827],[112,13,72,0.3877410846762359],[112,13,73,0.38918148074299097],[112,13,74,0.3904146458953619],[112,13,75,0.39156318409368396],[112,13,76,0.392664028564468],[112,13,77,0.3936394691700116],[112,13,78,0.39448154586716555],[112,13,79,0.39525389921618626],[112,14,64,0.37352391704916954],[112,14,65,0.37558422330766916],[112,14,66,0.3770591113716364],[112,14,67,0.37782367412000895],[112,14,68,0.3781001977622509],[112,14,69,0.3782200114801526],[112,14,70,0.37837997265160084],[112,14,71,0.37883711140602827],[112,14,72,0.3799285846762359],[112,14,73,0.38136898074299097],[112,14,74,0.3826021458953619],[112,14,75,0.38375068409368396],[112,14,76,0.384851528564468],[112,14,77,0.3858269691700116],[112,14,78,0.38666904586716555],[112,14,79,0.38744139921618626],[112,15,64,0.36571141704916954],[112,15,65,0.36777172330766916],[112,15,66,0.3692466113716364],[112,15,67,0.37001117412000895],[112,15,68,0.3702876977622509],[112,15,69,0.3704075114801526],[112,15,70,0.37056747265160084],[112,15,71,0.37102461140602827],[112,15,72,0.3721160846762359],[112,15,73,0.37355648074299097],[112,15,74,0.3747896458953619],[112,15,75,0.37593818409368396],[112,15,76,0.377039028564468],[112,15,77,0.3780144691700116],[112,15,78,0.37885654586716555],[112,15,79,0.37962889921618626],[112,16,64,0.35789891704916954],[112,16,65,0.35995922330766916],[112,16,66,0.3614341113716364],[112,16,67,0.36219867412000895],[112,16,68,0.3624751977622509],[112,16,69,0.3625950114801526],[112,16,70,0.36275497265160084],[112,16,71,0.36321211140602827],[112,16,72,0.3643035846762359],[112,16,73,0.36574398074299097],[112,16,74,0.3669771458953619],[112,16,75,0.36812568409368396],[112,16,76,0.369226528564468],[112,16,77,0.3702019691700116],[112,16,78,0.37104404586716555],[112,16,79,0.37181639921618626],[112,17,64,0.35008641704916954],[112,17,65,0.35214672330766916],[112,17,66,0.3536216113716364],[112,17,67,0.35438617412000895],[112,17,68,0.3546626977622509],[112,17,69,0.3547825114801526],[112,17,70,0.35494247265160084],[112,17,71,0.35539961140602827],[112,17,72,0.3564910846762359],[112,17,73,0.35793148074299097],[112,17,74,0.3591646458953619],[112,17,75,0.36031318409368396],[112,17,76,0.361414028564468],[112,17,77,0.3623894691700116],[112,17,78,0.36323154586716555],[112,17,79,0.36400389921618626],[112,18,64,0.34227391704916954],[112,18,65,0.34433422330766916],[112,18,66,0.3458091113716364],[112,18,67,0.34657367412000895],[112,18,68,0.3468501977622509],[112,18,69,0.3469700114801526],[112,18,70,0.34712997265160084],[112,18,71,0.34758711140602827],[112,18,72,0.3486785846762359],[112,18,73,0.35011898074299097],[112,18,74,0.3513521458953619],[112,18,75,0.35250068409368396],[112,18,76,0.353601528564468],[112,18,77,0.3545769691700116],[112,18,78,0.35541904586716555],[112,18,79,0.35619139921618626],[112,19,64,0.33446141704916954],[112,19,65,0.33652172330766916],[112,19,66,0.3379966113716364],[112,19,67,0.33876117412000895],[112,19,68,0.3390376977622509],[112,19,69,0.3391575114801526],[112,19,70,0.33931747265160084],[112,19,71,0.33977461140602827],[112,19,72,0.3408660846762359],[112,19,73,0.34230648074299097],[112,19,74,0.3435396458953619],[112,19,75,0.34468818409368396],[112,19,76,0.345789028564468],[112,19,77,0.3467644691700116],[112,19,78,0.34760654586716555],[112,19,79,0.34837889921618626],[112,20,64,0.32664891704916954],[112,20,65,0.32870922330766916],[112,20,66,0.3301841113716364],[112,20,67,0.33094867412000895],[112,20,68,0.3312251977622509],[112,20,69,0.3313450114801526],[112,20,70,0.33150497265160084],[112,20,71,0.33196211140602827],[112,20,72,0.3330535846762359],[112,20,73,0.33449398074299097],[112,20,74,0.3357271458953619],[112,20,75,0.33687568409368396],[112,20,76,0.337976528564468],[112,20,77,0.3389519691700116],[112,20,78,0.33979404586716555],[112,20,79,0.34056639921618626],[112,21,64,0.31883641704916954],[112,21,65,0.32089672330766916],[112,21,66,0.3223716113716364],[112,21,67,0.32313617412000895],[112,21,68,0.3234126977622509],[112,21,69,0.3235325114801526],[112,21,70,0.32369247265160084],[112,21,71,0.32414961140602827],[112,21,72,0.3252410846762359],[112,21,73,0.32668148074299097],[112,21,74,0.3279146458953619],[112,21,75,0.32906318409368396],[112,21,76,0.330164028564468],[112,21,77,0.3311394691700116],[112,21,78,0.33198154586716555],[112,21,79,0.33275389921618626],[112,22,64,0.31102391704916954],[112,22,65,0.31308422330766916],[112,22,66,0.3145591113716364],[112,22,67,0.31532367412000895],[112,22,68,0.3156001977622509],[112,22,69,0.3157200114801526],[112,22,70,0.31587997265160084],[112,22,71,0.31633711140602827],[112,22,72,0.3174285846762359],[112,22,73,0.31886898074299097],[112,22,74,0.3201021458953619],[112,22,75,0.32125068409368396],[112,22,76,0.322351528564468],[112,22,77,0.3233269691700116],[112,22,78,0.32416904586716555],[112,22,79,0.32494139921618626],[112,23,64,0.30321141704916954],[112,23,65,0.30527172330766916],[112,23,66,0.3067466113716364],[112,23,67,0.30751117412000895],[112,23,68,0.3077876977622509],[112,23,69,0.3079075114801526],[112,23,70,0.30806747265160084],[112,23,71,0.30852461140602827],[112,23,72,0.3096160846762359],[112,23,73,0.31105648074299097],[112,23,74,0.3122896458953619],[112,23,75,0.31343818409368396],[112,23,76,0.314539028564468],[112,23,77,0.3155144691700116],[112,23,78,0.31635654586716555],[112,23,79,0.31712889921618626],[112,24,64,0.29539891704916954],[112,24,65,0.29745922330766916],[112,24,66,0.2989341113716364],[112,24,67,0.29969867412000895],[112,24,68,0.2999751977622509],[112,24,69,0.3000950114801526],[112,24,70,0.30025497265160084],[112,24,71,0.30071211140602827],[112,24,72,0.3018035846762359],[112,24,73,0.30324398074299097],[112,24,74,0.3044771458953619],[112,24,75,0.30562568409368396],[112,24,76,0.306726528564468],[112,24,77,0.3077019691700116],[112,24,78,0.30854404586716555],[112,24,79,0.30931639921618626],[112,25,64,0.28758641704916954],[112,25,65,0.28964672330766916],[112,25,66,0.2911216113716364],[112,25,67,0.29188617412000895],[112,25,68,0.2921626977622509],[112,25,69,0.2922825114801526],[112,25,70,0.29244247265160084],[112,25,71,0.29289961140602827],[112,25,72,0.2939910846762359],[112,25,73,0.29543148074299097],[112,25,74,0.2966646458953619],[112,25,75,0.29781318409368396],[112,25,76,0.298914028564468],[112,25,77,0.2998894691700116],[112,25,78,0.30073154586716555],[112,25,79,0.30150389921618626],[112,26,64,0.27977391704916954],[112,26,65,0.28183422330766916],[112,26,66,0.2833091113716364],[112,26,67,0.28407367412000895],[112,26,68,0.2843501977622509],[112,26,69,0.2844700114801526],[112,26,70,0.28462997265160084],[112,26,71,0.28508711140602827],[112,26,72,0.2861785846762359],[112,26,73,0.28761898074299097],[112,26,74,0.2888521458953619],[112,26,75,0.29000068409368396],[112,26,76,0.291101528564468],[112,26,77,0.2920769691700116],[112,26,78,0.29291904586716555],[112,26,79,0.29369139921618626],[112,27,64,0.27196141704916954],[112,27,65,0.27402172330766916],[112,27,66,0.2754966113716364],[112,27,67,0.27626117412000895],[112,27,68,0.2765376977622509],[112,27,69,0.2766575114801526],[112,27,70,0.27681747265160084],[112,27,71,0.27727461140602827],[112,27,72,0.2783660846762359],[112,27,73,0.27980648074299097],[112,27,74,0.2810396458953619],[112,27,75,0.28218818409368396],[112,27,76,0.283289028564468],[112,27,77,0.2842644691700116],[112,27,78,0.28510654586716555],[112,27,79,0.28587889921618626],[112,28,64,0.26414891704916954],[112,28,65,0.26620922330766916],[112,28,66,0.2676841113716364],[112,28,67,0.26844867412000895],[112,28,68,0.2687251977622509],[112,28,69,0.2688450114801526],[112,28,70,0.26900497265160084],[112,28,71,0.26946211140602827],[112,28,72,0.2705535846762359],[112,28,73,0.27199398074299097],[112,28,74,0.2732271458953619],[112,28,75,0.27437568409368396],[112,28,76,0.275476528564468],[112,28,77,0.2764519691700116],[112,28,78,0.27729404586716555],[112,28,79,0.27806639921618626],[112,29,64,0.25633641704916954],[112,29,65,0.25839672330766916],[112,29,66,0.2598716113716364],[112,29,67,0.26063617412000895],[112,29,68,0.2609126977622509],[112,29,69,0.2610325114801526],[112,29,70,0.26119247265160084],[112,29,71,0.26164961140602827],[112,29,72,0.2627410846762359],[112,29,73,0.26418148074299097],[112,29,74,0.2654146458953619],[112,29,75,0.26656318409368396],[112,29,76,0.267664028564468],[112,29,77,0.2686394691700116],[112,29,78,0.26948154586716555],[112,29,79,0.27025389921618626],[112,30,64,0.24852391704916954],[112,30,65,0.25058422330766916],[112,30,66,0.2520591113716364],[112,30,67,0.25282367412000895],[112,30,68,0.2531001977622509],[112,30,69,0.2532200114801526],[112,30,70,0.25337997265160084],[112,30,71,0.25383711140602827],[112,30,72,0.2549285846762359],[112,30,73,0.25636898074299097],[112,30,74,0.2576021458953619],[112,30,75,0.25875068409368396],[112,30,76,0.259851528564468],[112,30,77,0.2608269691700116],[112,30,78,0.26166904586716555],[112,30,79,0.26244139921618626],[112,31,64,0.24071141704916954],[112,31,65,0.24277172330766916],[112,31,66,0.2442466113716364],[112,31,67,0.24501117412000895],[112,31,68,0.2452876977622509],[112,31,69,0.2454075114801526],[112,31,70,0.24556747265160084],[112,31,71,0.24602461140602827],[112,31,72,0.24711608467623591],[112,31,73,0.24855648074299097],[112,31,74,0.2497896458953619],[112,31,75,0.25093818409368396],[112,31,76,0.252039028564468],[112,31,77,0.2530144691700116],[112,31,78,0.25385654586716555],[112,31,79,0.25462889921618626],[112,32,64,0.23289891704916954],[112,32,65,0.23495922330766916],[112,32,66,0.2364341113716364],[112,32,67,0.23719867412000895],[112,32,68,0.2374751977622509],[112,32,69,0.2375950114801526],[112,32,70,0.23775497265160084],[112,32,71,0.23821211140602827],[112,32,72,0.23930358467623591],[112,32,73,0.24074398074299097],[112,32,74,0.2419771458953619],[112,32,75,0.24312568409368396],[112,32,76,0.24422652856446803],[112,32,77,0.24520196917001158],[112,32,78,0.24604404586716555],[112,32,79,0.24681639921618626],[112,33,64,0.22508641704916954],[112,33,65,0.22714672330766916],[112,33,66,0.2286216113716364],[112,33,67,0.22938617412000895],[112,33,68,0.2296626977622509],[112,33,69,0.2297825114801526],[112,33,70,0.22994247265160084],[112,33,71,0.23039961140602827],[112,33,72,0.23149108467623591],[112,33,73,0.23293148074299097],[112,33,74,0.2341646458953619],[112,33,75,0.23531318409368396],[112,33,76,0.23641402856446803],[112,33,77,0.23738946917001158],[112,33,78,0.23823154586716555],[112,33,79,0.23900389921618626],[112,34,64,0.21727391704916954],[112,34,65,0.21933422330766916],[112,34,66,0.2208091113716364],[112,34,67,0.22157367412000895],[112,34,68,0.2218501977622509],[112,34,69,0.2219700114801526],[112,34,70,0.22212997265160084],[112,34,71,0.22258711140602827],[112,34,72,0.22367858467623591],[112,34,73,0.22511898074299097],[112,34,74,0.2263521458953619],[112,34,75,0.22750068409368396],[112,34,76,0.22860152856446803],[112,34,77,0.22957696917001158],[112,34,78,0.23041904586716555],[112,34,79,0.23119139921618626],[112,35,64,0.20946141704916954],[112,35,65,0.21152172330766916],[112,35,66,0.2129966113716364],[112,35,67,0.21376117412000895],[112,35,68,0.2140376977622509],[112,35,69,0.2141575114801526],[112,35,70,0.21431747265160084],[112,35,71,0.21477461140602827],[112,35,72,0.21586608467623591],[112,35,73,0.21730648074299097],[112,35,74,0.2185396458953619],[112,35,75,0.21968818409368396],[112,35,76,0.22078902856446803],[112,35,77,0.22176446917001158],[112,35,78,0.22260654586716555],[112,35,79,0.22337889921618626],[112,36,64,0.20164891704916954],[112,36,65,0.20370922330766916],[112,36,66,0.2051841113716364],[112,36,67,0.20594867412000895],[112,36,68,0.2062251977622509],[112,36,69,0.2063450114801526],[112,36,70,0.20650497265160084],[112,36,71,0.20696211140602827],[112,36,72,0.20805358467623591],[112,36,73,0.20949398074299097],[112,36,74,0.2107271458953619],[112,36,75,0.21187568409368396],[112,36,76,0.21297652856446803],[112,36,77,0.21395196917001158],[112,36,78,0.21479404586716555],[112,36,79,0.21556639921618626],[112,37,64,0.19383641704916954],[112,37,65,0.19589672330766916],[112,37,66,0.1973716113716364],[112,37,67,0.19813617412000895],[112,37,68,0.1984126977622509],[112,37,69,0.1985325114801526],[112,37,70,0.19869247265160084],[112,37,71,0.19914961140602827],[112,37,72,0.20024108467623591],[112,37,73,0.20168148074299097],[112,37,74,0.2029146458953619],[112,37,75,0.20406318409368396],[112,37,76,0.20516402856446803],[112,37,77,0.20613946917001158],[112,37,78,0.20698154586716555],[112,37,79,0.20775389921618626],[112,38,64,0.18602391704916954],[112,38,65,0.18808422330766916],[112,38,66,0.1895591113716364],[112,38,67,0.19032367412000895],[112,38,68,0.1906001977622509],[112,38,69,0.1907200114801526],[112,38,70,0.19087997265160084],[112,38,71,0.19133711140602827],[112,38,72,0.19242858467623591],[112,38,73,0.19386898074299097],[112,38,74,0.1951021458953619],[112,38,75,0.19625068409368396],[112,38,76,0.19735152856446803],[112,38,77,0.19832696917001158],[112,38,78,0.19916904586716555],[112,38,79,0.19994139921618626],[112,39,64,0.17821141704916954],[112,39,65,0.18027172330766916],[112,39,66,0.1817466113716364],[112,39,67,0.18251117412000895],[112,39,68,0.1827876977622509],[112,39,69,0.1829075114801526],[112,39,70,0.18306747265160084],[112,39,71,0.18352461140602827],[112,39,72,0.18461608467623591],[112,39,73,0.18605648074299097],[112,39,74,0.1872896458953619],[112,39,75,0.18843818409368396],[112,39,76,0.18953902856446803],[112,39,77,0.19051446917001158],[112,39,78,0.19135654586716555],[112,39,79,0.19212889921618626],[112,40,64,0.17039891704916954],[112,40,65,0.17245922330766916],[112,40,66,0.1739341113716364],[112,40,67,0.17469867412000895],[112,40,68,0.1749751977622509],[112,40,69,0.1750950114801526],[112,40,70,0.17525497265160084],[112,40,71,0.17571211140602827],[112,40,72,0.17680358467623591],[112,40,73,0.17824398074299097],[112,40,74,0.1794771458953619],[112,40,75,0.18062568409368396],[112,40,76,0.18172652856446803],[112,40,77,0.18270196917001158],[112,40,78,0.18354404586716555],[112,40,79,0.18431639921618626],[112,41,64,0.16258641704916954],[112,41,65,0.16464672330766916],[112,41,66,0.1661216113716364],[112,41,67,0.16688617412000895],[112,41,68,0.1671626977622509],[112,41,69,0.1672825114801526],[112,41,70,0.16744247265160084],[112,41,71,0.16789961140602827],[112,41,72,0.16899108467623591],[112,41,73,0.17043148074299097],[112,41,74,0.1716646458953619],[112,41,75,0.17281318409368396],[112,41,76,0.17391402856446803],[112,41,77,0.17488946917001158],[112,41,78,0.17573154586716555],[112,41,79,0.17650389921618626],[112,42,64,0.15477391704916954],[112,42,65,0.15683422330766916],[112,42,66,0.1583091113716364],[112,42,67,0.15907367412000895],[112,42,68,0.1593501977622509],[112,42,69,0.1594700114801526],[112,42,70,0.15962997265160084],[112,42,71,0.16008711140602827],[112,42,72,0.16117858467623591],[112,42,73,0.16261898074299097],[112,42,74,0.1638521458953619],[112,42,75,0.16500068409368396],[112,42,76,0.16610152856446803],[112,42,77,0.16707696917001158],[112,42,78,0.16791904586716555],[112,42,79,0.16869139921618626],[112,43,64,0.14696141704916954],[112,43,65,0.14902172330766916],[112,43,66,0.1504966113716364],[112,43,67,0.15126117412000895],[112,43,68,0.1515376977622509],[112,43,69,0.1516575114801526],[112,43,70,0.15181747265160084],[112,43,71,0.15227461140602827],[112,43,72,0.15336608467623591],[112,43,73,0.15480648074299097],[112,43,74,0.1560396458953619],[112,43,75,0.15718818409368396],[112,43,76,0.15828902856446803],[112,43,77,0.15926446917001158],[112,43,78,0.16010654586716555],[112,43,79,0.16087889921618626],[112,44,64,0.13914891704916954],[112,44,65,0.14120922330766916],[112,44,66,0.1426841113716364],[112,44,67,0.14344867412000895],[112,44,68,0.1437251977622509],[112,44,69,0.1438450114801526],[112,44,70,0.14400497265160084],[112,44,71,0.14446211140602827],[112,44,72,0.14555358467623591],[112,44,73,0.14699398074299097],[112,44,74,0.1482271458953619],[112,44,75,0.14937568409368396],[112,44,76,0.15047652856446803],[112,44,77,0.15145196917001158],[112,44,78,0.15229404586716555],[112,44,79,0.15306639921618626],[112,45,64,0.13133641704916954],[112,45,65,0.13339672330766916],[112,45,66,0.1348716113716364],[112,45,67,0.13563617412000895],[112,45,68,0.1359126977622509],[112,45,69,0.1360325114801526],[112,45,70,0.13619247265160084],[112,45,71,0.13664961140602827],[112,45,72,0.13774108467623591],[112,45,73,0.13918148074299097],[112,45,74,0.1404146458953619],[112,45,75,0.14156318409368396],[112,45,76,0.14266402856446803],[112,45,77,0.14363946917001158],[112,45,78,0.14448154586716555],[112,45,79,0.14525389921618626],[112,46,64,0.12352391704916954],[112,46,65,0.12558422330766916],[112,46,66,0.1270591113716364],[112,46,67,0.12782367412000895],[112,46,68,0.1281001977622509],[112,46,69,0.1282200114801526],[112,46,70,0.12837997265160084],[112,46,71,0.12883711140602827],[112,46,72,0.12992858467623591],[112,46,73,0.13136898074299097],[112,46,74,0.1326021458953619],[112,46,75,0.13375068409368396],[112,46,76,0.13485152856446803],[112,46,77,0.13582696917001158],[112,46,78,0.13666904586716555],[112,46,79,0.13744139921618626],[112,47,64,0.11571141704916954],[112,47,65,0.11777172330766916],[112,47,66,0.11924661137163639],[112,47,67,0.12001117412000895],[112,47,68,0.1202876977622509],[112,47,69,0.12040751148015261],[112,47,70,0.12056747265160084],[112,47,71,0.12102461140602827],[112,47,72,0.12211608467623591],[112,47,73,0.12355648074299097],[112,47,74,0.1247896458953619],[112,47,75,0.12593818409368396],[112,47,76,0.12703902856446803],[112,47,77,0.12801446917001158],[112,47,78,0.12885654586716555],[112,47,79,0.12962889921618626],[112,48,64,0.10789891704916954],[112,48,65,0.10995922330766916],[112,48,66,0.11143411137163639],[112,48,67,0.11219867412000895],[112,48,68,0.1124751977622509],[112,48,69,0.11259501148015261],[112,48,70,0.11275497265160084],[112,48,71,0.11321211140602827],[112,48,72,0.11430358467623591],[112,48,73,0.11574398074299097],[112,48,74,0.1169771458953619],[112,48,75,0.11812568409368396],[112,48,76,0.11922652856446803],[112,48,77,0.12020196917001158],[112,48,78,0.12104404586716555],[112,48,79,0.12181639921618626],[112,49,64,0.10008641704916954],[112,49,65,0.10214672330766916],[112,49,66,0.10362161137163639],[112,49,67,0.10438617412000895],[112,49,68,0.1046626977622509],[112,49,69,0.10478251148015261],[112,49,70,0.10494247265160084],[112,49,71,0.10539961140602827],[112,49,72,0.10649108467623591],[112,49,73,0.10793148074299097],[112,49,74,0.1091646458953619],[112,49,75,0.11031318409368396],[112,49,76,0.11141402856446803],[112,49,77,0.11238946917001158],[112,49,78,0.11323154586716555],[112,49,79,0.11400389921618626],[112,50,64,0.09227391704916954],[112,50,65,0.09433422330766916],[112,50,66,0.09580911137163639],[112,50,67,0.09657367412000895],[112,50,68,0.0968501977622509],[112,50,69,0.09697001148015261],[112,50,70,0.09712997265160084],[112,50,71,0.09758711140602827],[112,50,72,0.09867858467623591],[112,50,73,0.10011898074299097],[112,50,74,0.1013521458953619],[112,50,75,0.10250068409368396],[112,50,76,0.10360152856446803],[112,50,77,0.10457696917001158],[112,50,78,0.10541904586716555],[112,50,79,0.10619139921618626],[112,51,64,0.08446141704916954],[112,51,65,0.08652172330766916],[112,51,66,0.08799661137163639],[112,51,67,0.08876117412000895],[112,51,68,0.0890376977622509],[112,51,69,0.08915751148015261],[112,51,70,0.08931747265160084],[112,51,71,0.08977461140602827],[112,51,72,0.09086608467623591],[112,51,73,0.09230648074299097],[112,51,74,0.0935396458953619],[112,51,75,0.09468818409368396],[112,51,76,0.09578902856446803],[112,51,77,0.09676446917001158],[112,51,78,0.09760654586716555],[112,51,79,0.09837889921618626],[112,52,64,0.07664891704916954],[112,52,65,0.07870922330766916],[112,52,66,0.08018411137163639],[112,52,67,0.08094867412000895],[112,52,68,0.0812251977622509],[112,52,69,0.08134501148015261],[112,52,70,0.08150497265160084],[112,52,71,0.08196211140602827],[112,52,72,0.08305358467623591],[112,52,73,0.08449398074299097],[112,52,74,0.0857271458953619],[112,52,75,0.08687568409368396],[112,52,76,0.08797652856446803],[112,52,77,0.08895196917001158],[112,52,78,0.08979404586716555],[112,52,79,0.09056639921618626],[112,53,64,0.06883641704916954],[112,53,65,0.07089672330766916],[112,53,66,0.07237161137163639],[112,53,67,0.07313617412000895],[112,53,68,0.0734126977622509],[112,53,69,0.07353251148015261],[112,53,70,0.07369247265160084],[112,53,71,0.07414961140602827],[112,53,72,0.07524108467623591],[112,53,73,0.07668148074299097],[112,53,74,0.0779146458953619],[112,53,75,0.07906318409368396],[112,53,76,0.08016402856446803],[112,53,77,0.08113946917001158],[112,53,78,0.08198154586716555],[112,53,79,0.08275389921618626],[112,54,64,0.06102391704916954],[112,54,65,0.06308422330766916],[112,54,66,0.06455911137163639],[112,54,67,0.06532367412000895],[112,54,68,0.0656001977622509],[112,54,69,0.06572001148015261],[112,54,70,0.06587997265160084],[112,54,71,0.06633711140602827],[112,54,72,0.06742858467623591],[112,54,73,0.06886898074299097],[112,54,74,0.0701021458953619],[112,54,75,0.07125068409368396],[112,54,76,0.07235152856446803],[112,54,77,0.07332696917001158],[112,54,78,0.07416904586716555],[112,54,79,0.07494139921618626],[112,55,64,0.05321141704916954],[112,55,65,0.05527172330766916],[112,55,66,0.05674661137163639],[112,55,67,0.057511174120008945],[112,55,68,0.0577876977622509],[112,55,69,0.05790751148015261],[112,55,70,0.05806747265160084],[112,55,71,0.05852461140602827],[112,55,72,0.059616084676235914],[112,55,73,0.06105648074299097],[112,55,74,0.0622896458953619],[112,55,75,0.06343818409368396],[112,55,76,0.06453902856446803],[112,55,77,0.06551446917001158],[112,55,78,0.06635654586716555],[112,55,79,0.06712889921618626],[112,56,64,0.04539891704916954],[112,56,65,0.04745922330766916],[112,56,66,0.04893411137163639],[112,56,67,0.049698674120008945],[112,56,68,0.0499751977622509],[112,56,69,0.05009501148015261],[112,56,70,0.05025497265160084],[112,56,71,0.05071211140602827],[112,56,72,0.051803584676235914],[112,56,73,0.05324398074299097],[112,56,74,0.0544771458953619],[112,56,75,0.05562568409368396],[112,56,76,0.056726528564468026],[112,56,77,0.05770196917001158],[112,56,78,0.05854404586716555],[112,56,79,0.059316399216186255],[112,57,64,0.03758641704916954],[112,57,65,0.03964672330766916],[112,57,66,0.04112161137163639],[112,57,67,0.041886174120008945],[112,57,68,0.0421626977622509],[112,57,69,0.04228251148015261],[112,57,70,0.04244247265160084],[112,57,71,0.04289961140602827],[112,57,72,0.043991084676235914],[112,57,73,0.04543148074299097],[112,57,74,0.0466646458953619],[112,57,75,0.04781318409368396],[112,57,76,0.048914028564468026],[112,57,77,0.04988946917001158],[112,57,78,0.05073154586716555],[112,57,79,0.051503899216186255],[112,58,64,0.02977391704916954],[112,58,65,0.03183422330766916],[112,58,66,0.03330911137163639],[112,58,67,0.034073674120008945],[112,58,68,0.0343501977622509],[112,58,69,0.03447001148015261],[112,58,70,0.03462997265160084],[112,58,71,0.03508711140602827],[112,58,72,0.036178584676235914],[112,58,73,0.03761898074299097],[112,58,74,0.0388521458953619],[112,58,75,0.04000068409368396],[112,58,76,0.041101528564468026],[112,58,77,0.04207696917001158],[112,58,78,0.04291904586716555],[112,58,79,0.043691399216186255],[112,59,64,0.02196141704916954],[112,59,65,0.024021723307669163],[112,59,66,0.02549661137163639],[112,59,67,0.026261174120008945],[112,59,68,0.0265376977622509],[112,59,69,0.026657511480152607],[112,59,70,0.026817472651600838],[112,59,71,0.02727461140602827],[112,59,72,0.028366084676235914],[112,59,73,0.02980648074299097],[112,59,74,0.0310396458953619],[112,59,75,0.03218818409368396],[112,59,76,0.033289028564468026],[112,59,77,0.03426446917001158],[112,59,78,0.03510654586716555],[112,59,79,0.035878899216186255],[112,60,64,0.01414891704916954],[112,60,65,0.016209223307669163],[112,60,66,0.01768411137163639],[112,60,67,0.018448674120008945],[112,60,68,0.0187251977622509],[112,60,69,0.018845011480152607],[112,60,70,0.019004972651600838],[112,60,71,0.01946211140602827],[112,60,72,0.020553584676235914],[112,60,73,0.02199398074299097],[112,60,74,0.0232271458953619],[112,60,75,0.024375684093683958],[112,60,76,0.025476528564468026],[112,60,77,0.02645196917001158],[112,60,78,0.02729404586716555],[112,60,79,0.028066399216186255],[112,61,64,0.00633641704916954],[112,61,65,0.008396723307669163],[112,61,66,0.00987161137163639],[112,61,67,0.010636174120008945],[112,61,68,0.0109126977622509],[112,61,69,0.011032511480152607],[112,61,70,0.011192472651600838],[112,61,71,0.01164961140602827],[112,61,72,0.012741084676235914],[112,61,73,0.01418148074299097],[112,61,74,0.0154146458953619],[112,61,75,0.016563184093683958],[112,61,76,0.017664028564468026],[112,61,77,0.01863946917001158],[112,61,78,0.01948154586716555],[112,61,79,0.020253899216186255],[112,62,64,-0.0014760829508304596],[112,62,65,5.842233076691628E-4],[112,62,66,0.0020591113716363907],[112,62,67,0.0028236741200089455],[112,62,68,0.0031001977622509003],[112,62,69,0.003220011480152607],[112,62,70,0.0033799726516008377],[112,62,71,0.0038371114060282707],[112,62,72,0.004928584676235914],[112,62,73,0.006368980742990971],[112,62,74,0.0076021458953619],[112,62,75,0.008750684093683958],[112,62,76,0.009851528564468026],[112,62,77,0.01082696917001158],[112,62,78,0.01166904586716555],[112,62,79,0.012441399216186255],[112,63,64,-0.00928858295083046],[112,63,65,-0.007228276692330837],[112,63,66,-0.005753388628363609],[112,63,67,-0.0049888258799910545],[112,63,68,-0.0047123022377491],[112,63,69,-0.004592488519847393],[112,63,70,-0.004432527348399162],[112,63,71,-0.003975388593971729],[112,63,72,-0.0028839153237640858],[112,63,73,-0.0014435192570090294],[112,63,74,-2.1035410463809967E-4],[112,63,75,9.38184093683958E-4],[112,63,76,0.002039028564468026],[112,63,77,0.00301446917001158],[112,63,78,0.0038565458671655506],[112,63,79,0.004628899216186255],[112,64,64,-0.01710108295083046],[112,64,65,-0.015040776692330837],[112,64,66,-0.01356588862836361],[112,64,67,-0.012801325879991055],[112,64,68,-0.0125248022377491],[112,64,69,-0.012404988519847393],[112,64,70,-0.012245027348399162],[112,64,71,-0.01178788859397173],[112,64,72,-0.010696415323764086],[112,64,73,-0.00925601925700903],[112,64,74,-0.0080228541046381],[112,64,75,-0.006874315906316042],[112,64,76,-0.005773471435531974],[112,64,77,-0.00479803082998842],[112,64,78,-0.003955954132834449],[112,64,79,-0.003183600783813745],[112,65,64,-0.02491358295083046],[112,65,65,-0.022853276692330837],[112,65,66,-0.02137838862836361],[112,65,67,-0.020613825879991055],[112,65,68,-0.0203373022377491],[112,65,69,-0.020217488519847393],[112,65,70,-0.020057527348399162],[112,65,71,-0.01960038859397173],[112,65,72,-0.018508915323764086],[112,65,73,-0.01706851925700903],[112,65,74,-0.0158353541046381],[112,65,75,-0.014686815906316042],[112,65,76,-0.013585971435531974],[112,65,77,-0.01261053082998842],[112,65,78,-0.01176845413283445],[112,65,79,-0.010996100783813745],[112,66,64,-0.03272608295083046],[112,66,65,-0.030665776692330837],[112,66,66,-0.02919088862836361],[112,66,67,-0.028426325879991055],[112,66,68,-0.0281498022377491],[112,66,69,-0.028029988519847393],[112,66,70,-0.027870027348399162],[112,66,71,-0.02741288859397173],[112,66,72,-0.026321415323764086],[112,66,73,-0.02488101925700903],[112,66,74,-0.0236478541046381],[112,66,75,-0.022499315906316042],[112,66,76,-0.021398471435531974],[112,66,77,-0.02042303082998842],[112,66,78,-0.01958095413283445],[112,66,79,-0.018808600783813745],[112,67,64,-0.04053858295083046],[112,67,65,-0.03847827669233084],[112,67,66,-0.03700338862836361],[112,67,67,-0.036238825879991055],[112,67,68,-0.0359623022377491],[112,67,69,-0.03584248851984739],[112,67,70,-0.03568252734839916],[112,67,71,-0.03522538859397173],[112,67,72,-0.034133915323764086],[112,67,73,-0.03269351925700903],[112,67,74,-0.0314603541046381],[112,67,75,-0.030311815906316042],[112,67,76,-0.029210971435531974],[112,67,77,-0.02823553082998842],[112,67,78,-0.02739345413283445],[112,67,79,-0.026621100783813745],[112,68,64,-0.04835108295083046],[112,68,65,-0.04629077669233084],[112,68,66,-0.04481588862836361],[112,68,67,-0.044051325879991055],[112,68,68,-0.0437748022377491],[112,68,69,-0.04365498851984739],[112,68,70,-0.04349502734839916],[112,68,71,-0.04303788859397173],[112,68,72,-0.041946415323764086],[112,68,73,-0.04050601925700903],[112,68,74,-0.0392728541046381],[112,68,75,-0.03812431590631604],[112,68,76,-0.037023471435531974],[112,68,77,-0.03604803082998842],[112,68,78,-0.03520595413283445],[112,68,79,-0.034433600783813745],[112,69,64,-0.05616358295083046],[112,69,65,-0.05410327669233084],[112,69,66,-0.05262838862836361],[112,69,67,-0.051863825879991055],[112,69,68,-0.0515873022377491],[112,69,69,-0.05146748851984739],[112,69,70,-0.05130752734839916],[112,69,71,-0.05085038859397173],[112,69,72,-0.049758915323764086],[112,69,73,-0.04831851925700903],[112,69,74,-0.0470853541046381],[112,69,75,-0.04593681590631604],[112,69,76,-0.044835971435531974],[112,69,77,-0.04386053082998842],[112,69,78,-0.04301845413283445],[112,69,79,-0.042246100783813745],[112,70,64,-0.06397608295083046],[112,70,65,-0.06191577669233084],[112,70,66,-0.06044088862836361],[112,70,67,-0.059676325879991055],[112,70,68,-0.0593998022377491],[112,70,69,-0.05927998851984739],[112,70,70,-0.05912002734839916],[112,70,71,-0.05866288859397173],[112,70,72,-0.057571415323764086],[112,70,73,-0.05613101925700903],[112,70,74,-0.0548978541046381],[112,70,75,-0.05374931590631604],[112,70,76,-0.052648471435531974],[112,70,77,-0.05167303082998842],[112,70,78,-0.05083095413283445],[112,70,79,-0.050058600783813745],[112,71,64,-0.07178858295083046],[112,71,65,-0.06972827669233084],[112,71,66,-0.06825338862836361],[112,71,67,-0.06748882587999105],[112,71,68,-0.0672123022377491],[112,71,69,-0.06709248851984739],[112,71,70,-0.06693252734839916],[112,71,71,-0.06647538859397173],[112,71,72,-0.06538391532376409],[112,71,73,-0.06394351925700903],[112,71,74,-0.0627103541046381],[112,71,75,-0.06156181590631604],[112,71,76,-0.060460971435531974],[112,71,77,-0.05948553082998842],[112,71,78,-0.05864345413283445],[112,71,79,-0.057871100783813745],[112,72,64,-0.07960108295083046],[112,72,65,-0.07754077669233084],[112,72,66,-0.07606588862836361],[112,72,67,-0.07530132587999105],[112,72,68,-0.0750248022377491],[112,72,69,-0.07490498851984739],[112,72,70,-0.07474502734839916],[112,72,71,-0.07428788859397173],[112,72,72,-0.07319641532376409],[112,72,73,-0.07175601925700903],[112,72,74,-0.0705228541046381],[112,72,75,-0.06937431590631604],[112,72,76,-0.06827347143553197],[112,72,77,-0.06729803082998842],[112,72,78,-0.06645595413283445],[112,72,79,-0.06568360078381374],[112,73,64,-0.08741358295083046],[112,73,65,-0.08535327669233084],[112,73,66,-0.08387838862836361],[112,73,67,-0.08311382587999105],[112,73,68,-0.0828373022377491],[112,73,69,-0.08271748851984739],[112,73,70,-0.08255752734839916],[112,73,71,-0.08210038859397173],[112,73,72,-0.08100891532376409],[112,73,73,-0.07956851925700903],[112,73,74,-0.0783353541046381],[112,73,75,-0.07718681590631604],[112,73,76,-0.07608597143553197],[112,73,77,-0.07511053082998842],[112,73,78,-0.07426845413283445],[112,73,79,-0.07349610078381374],[112,74,64,-0.09522608295083046],[112,74,65,-0.09316577669233084],[112,74,66,-0.09169088862836361],[112,74,67,-0.09092632587999105],[112,74,68,-0.0906498022377491],[112,74,69,-0.09052998851984739],[112,74,70,-0.09037002734839916],[112,74,71,-0.08991288859397173],[112,74,72,-0.08882141532376409],[112,74,73,-0.08738101925700903],[112,74,74,-0.0861478541046381],[112,74,75,-0.08499931590631604],[112,74,76,-0.08389847143553197],[112,74,77,-0.08292303082998842],[112,74,78,-0.08208095413283445],[112,74,79,-0.08130860078381374],[112,75,64,-0.10303858295083046],[112,75,65,-0.10097827669233084],[112,75,66,-0.09950338862836361],[112,75,67,-0.09873882587999105],[112,75,68,-0.0984623022377491],[112,75,69,-0.09834248851984739],[112,75,70,-0.09818252734839916],[112,75,71,-0.09772538859397173],[112,75,72,-0.09663391532376409],[112,75,73,-0.09519351925700903],[112,75,74,-0.0939603541046381],[112,75,75,-0.09281181590631604],[112,75,76,-0.09171097143553197],[112,75,77,-0.09073553082998842],[112,75,78,-0.08989345413283445],[112,75,79,-0.08912110078381374],[112,76,64,-0.11085108295083046],[112,76,65,-0.10879077669233084],[112,76,66,-0.10731588862836361],[112,76,67,-0.10655132587999105],[112,76,68,-0.1062748022377491],[112,76,69,-0.10615498851984739],[112,76,70,-0.10599502734839916],[112,76,71,-0.10553788859397173],[112,76,72,-0.10444641532376409],[112,76,73,-0.10300601925700903],[112,76,74,-0.1017728541046381],[112,76,75,-0.10062431590631604],[112,76,76,-0.09952347143553197],[112,76,77,-0.09854803082998842],[112,76,78,-0.09770595413283445],[112,76,79,-0.09693360078381374],[112,77,64,-0.11866358295083046],[112,77,65,-0.11660327669233084],[112,77,66,-0.11512838862836361],[112,77,67,-0.11436382587999105],[112,77,68,-0.1140873022377491],[112,77,69,-0.11396748851984739],[112,77,70,-0.11380752734839916],[112,77,71,-0.11335038859397173],[112,77,72,-0.11225891532376409],[112,77,73,-0.11081851925700903],[112,77,74,-0.1095853541046381],[112,77,75,-0.10843681590631604],[112,77,76,-0.10733597143553197],[112,77,77,-0.10636053082998842],[112,77,78,-0.10551845413283445],[112,77,79,-0.10474610078381374],[112,78,64,-0.12647608295083046],[112,78,65,-0.12441577669233084],[112,78,66,-0.12294088862836361],[112,78,67,-0.12217632587999105],[112,78,68,-0.1218998022377491],[112,78,69,-0.12177998851984739],[112,78,70,-0.12162002734839916],[112,78,71,-0.12116288859397173],[112,78,72,-0.12007141532376409],[112,78,73,-0.11863101925700903],[112,78,74,-0.1173978541046381],[112,78,75,-0.11624931590631604],[112,78,76,-0.11514847143553197],[112,78,77,-0.11417303082998842],[112,78,78,-0.11333095413283445],[112,78,79,-0.11255860078381374],[112,79,64,-0.13428858295083046],[112,79,65,-0.13222827669233084],[112,79,66,-0.1307533886283636],[112,79,67,-0.12998882587999105],[112,79,68,-0.1297123022377491],[112,79,69,-0.1295924885198474],[112,79,70,-0.12943252734839916],[112,79,71,-0.12897538859397173],[112,79,72,-0.12788391532376409],[112,79,73,-0.12644351925700903],[112,79,74,-0.1252103541046381],[112,79,75,-0.12406181590631604],[112,79,76,-0.12296097143553197],[112,79,77,-0.12198553082998842],[112,79,78,-0.12114345413283445],[112,79,79,-0.12037110078381374],[112,80,64,-0.14210108295083046],[112,80,65,-0.14004077669233084],[112,80,66,-0.1385658886283636],[112,80,67,-0.13780132587999105],[112,80,68,-0.1375248022377491],[112,80,69,-0.1374049885198474],[112,80,70,-0.13724502734839916],[112,80,71,-0.13678788859397173],[112,80,72,-0.13569641532376409],[112,80,73,-0.13425601925700903],[112,80,74,-0.1330228541046381],[112,80,75,-0.13187431590631604],[112,80,76,-0.13077347143553197],[112,80,77,-0.12979803082998842],[112,80,78,-0.12895595413283445],[112,80,79,-0.12818360078381374],[112,81,64,-0.14991358295083046],[112,81,65,-0.14785327669233084],[112,81,66,-0.1463783886283636],[112,81,67,-0.14561382587999105],[112,81,68,-0.1453373022377491],[112,81,69,-0.1452174885198474],[112,81,70,-0.14505752734839916],[112,81,71,-0.14460038859397173],[112,81,72,-0.14350891532376409],[112,81,73,-0.14206851925700903],[112,81,74,-0.1408353541046381],[112,81,75,-0.13968681590631604],[112,81,76,-0.13858597143553197],[112,81,77,-0.13761053082998842],[112,81,78,-0.13676845413283445],[112,81,79,-0.13599610078381374],[112,82,64,-0.15772608295083046],[112,82,65,-0.15566577669233084],[112,82,66,-0.1541908886283636],[112,82,67,-0.15342632587999105],[112,82,68,-0.1531498022377491],[112,82,69,-0.1530299885198474],[112,82,70,-0.15287002734839916],[112,82,71,-0.15241288859397173],[112,82,72,-0.15132141532376409],[112,82,73,-0.14988101925700903],[112,82,74,-0.1486478541046381],[112,82,75,-0.14749931590631604],[112,82,76,-0.14639847143553197],[112,82,77,-0.14542303082998842],[112,82,78,-0.14458095413283445],[112,82,79,-0.14380860078381374],[112,83,64,-0.16553858295083046],[112,83,65,-0.16347827669233084],[112,83,66,-0.1620033886283636],[112,83,67,-0.16123882587999105],[112,83,68,-0.1609623022377491],[112,83,69,-0.1608424885198474],[112,83,70,-0.16068252734839916],[112,83,71,-0.16022538859397173],[112,83,72,-0.15913391532376409],[112,83,73,-0.15769351925700903],[112,83,74,-0.1564603541046381],[112,83,75,-0.15531181590631604],[112,83,76,-0.15421097143553197],[112,83,77,-0.15323553082998842],[112,83,78,-0.15239345413283445],[112,83,79,-0.15162110078381374],[112,84,64,-0.17335108295083046],[112,84,65,-0.17129077669233084],[112,84,66,-0.1698158886283636],[112,84,67,-0.16905132587999105],[112,84,68,-0.1687748022377491],[112,84,69,-0.1686549885198474],[112,84,70,-0.16849502734839916],[112,84,71,-0.16803788859397173],[112,84,72,-0.16694641532376409],[112,84,73,-0.16550601925700903],[112,84,74,-0.1642728541046381],[112,84,75,-0.16312431590631604],[112,84,76,-0.16202347143553197],[112,84,77,-0.16104803082998842],[112,84,78,-0.16020595413283445],[112,84,79,-0.15943360078381374],[112,85,64,-0.18116358295083046],[112,85,65,-0.17910327669233084],[112,85,66,-0.1776283886283636],[112,85,67,-0.17686382587999105],[112,85,68,-0.1765873022377491],[112,85,69,-0.1764674885198474],[112,85,70,-0.17630752734839916],[112,85,71,-0.17585038859397173],[112,85,72,-0.17475891532376409],[112,85,73,-0.17331851925700903],[112,85,74,-0.1720853541046381],[112,85,75,-0.17093681590631604],[112,85,76,-0.16983597143553197],[112,85,77,-0.16886053082998842],[112,85,78,-0.16801845413283445],[112,85,79,-0.16724610078381374],[112,86,64,-0.18897608295083046],[112,86,65,-0.18691577669233084],[112,86,66,-0.1854408886283636],[112,86,67,-0.18467632587999105],[112,86,68,-0.1843998022377491],[112,86,69,-0.1842799885198474],[112,86,70,-0.18412002734839916],[112,86,71,-0.18366288859397173],[112,86,72,-0.18257141532376409],[112,86,73,-0.18113101925700903],[112,86,74,-0.1798978541046381],[112,86,75,-0.17874931590631604],[112,86,76,-0.17764847143553197],[112,86,77,-0.17667303082998842],[112,86,78,-0.17583095413283445],[112,86,79,-0.17505860078381374],[112,87,64,-0.19678858295083046],[112,87,65,-0.19472827669233084],[112,87,66,-0.1932533886283636],[112,87,67,-0.19248882587999105],[112,87,68,-0.1922123022377491],[112,87,69,-0.1920924885198474],[112,87,70,-0.19193252734839916],[112,87,71,-0.19147538859397173],[112,87,72,-0.19038391532376409],[112,87,73,-0.18894351925700903],[112,87,74,-0.1877103541046381],[112,87,75,-0.18656181590631604],[112,87,76,-0.18546097143553197],[112,87,77,-0.18448553082998842],[112,87,78,-0.18364345413283445],[112,87,79,-0.18287110078381374],[112,88,64,-0.20460108295083046],[112,88,65,-0.20254077669233084],[112,88,66,-0.2010658886283636],[112,88,67,-0.20030132587999105],[112,88,68,-0.2000248022377491],[112,88,69,-0.1999049885198474],[112,88,70,-0.19974502734839916],[112,88,71,-0.19928788859397173],[112,88,72,-0.19819641532376409],[112,88,73,-0.19675601925700903],[112,88,74,-0.1955228541046381],[112,88,75,-0.19437431590631604],[112,88,76,-0.19327347143553197],[112,88,77,-0.19229803082998842],[112,88,78,-0.19145595413283445],[112,88,79,-0.19068360078381374],[112,89,64,-0.21241358295083046],[112,89,65,-0.21035327669233084],[112,89,66,-0.2088783886283636],[112,89,67,-0.20811382587999105],[112,89,68,-0.2078373022377491],[112,89,69,-0.2077174885198474],[112,89,70,-0.20755752734839916],[112,89,71,-0.20710038859397173],[112,89,72,-0.20600891532376409],[112,89,73,-0.20456851925700903],[112,89,74,-0.2033353541046381],[112,89,75,-0.20218681590631604],[112,89,76,-0.20108597143553197],[112,89,77,-0.20011053082998842],[112,89,78,-0.19926845413283445],[112,89,79,-0.19849610078381374],[112,90,64,-0.22022608295083046],[112,90,65,-0.21816577669233084],[112,90,66,-0.2166908886283636],[112,90,67,-0.21592632587999105],[112,90,68,-0.2156498022377491],[112,90,69,-0.2155299885198474],[112,90,70,-0.21537002734839916],[112,90,71,-0.21491288859397173],[112,90,72,-0.21382141532376409],[112,90,73,-0.21238101925700903],[112,90,74,-0.2111478541046381],[112,90,75,-0.20999931590631604],[112,90,76,-0.20889847143553197],[112,90,77,-0.20792303082998842],[112,90,78,-0.20708095413283445],[112,90,79,-0.20630860078381374],[112,91,64,-0.22803858295083046],[112,91,65,-0.22597827669233084],[112,91,66,-0.2245033886283636],[112,91,67,-0.22373882587999105],[112,91,68,-0.2234623022377491],[112,91,69,-0.2233424885198474],[112,91,70,-0.22318252734839916],[112,91,71,-0.22272538859397173],[112,91,72,-0.22163391532376409],[112,91,73,-0.22019351925700903],[112,91,74,-0.2189603541046381],[112,91,75,-0.21781181590631604],[112,91,76,-0.21671097143553197],[112,91,77,-0.21573553082998842],[112,91,78,-0.21489345413283445],[112,91,79,-0.21412110078381374],[112,92,64,-0.23585108295083046],[112,92,65,-0.23379077669233084],[112,92,66,-0.2323158886283636],[112,92,67,-0.23155132587999105],[112,92,68,-0.2312748022377491],[112,92,69,-0.2311549885198474],[112,92,70,-0.23099502734839916],[112,92,71,-0.23053788859397173],[112,92,72,-0.22944641532376409],[112,92,73,-0.22800601925700903],[112,92,74,-0.2267728541046381],[112,92,75,-0.22562431590631604],[112,92,76,-0.22452347143553197],[112,92,77,-0.22354803082998842],[112,92,78,-0.22270595413283445],[112,92,79,-0.22193360078381374],[112,93,64,-0.24366358295083046],[112,93,65,-0.24160327669233084],[112,93,66,-0.2401283886283636],[112,93,67,-0.23936382587999105],[112,93,68,-0.2390873022377491],[112,93,69,-0.2389674885198474],[112,93,70,-0.23880752734839916],[112,93,71,-0.23835038859397173],[112,93,72,-0.23725891532376409],[112,93,73,-0.23581851925700903],[112,93,74,-0.2345853541046381],[112,93,75,-0.23343681590631604],[112,93,76,-0.23233597143553197],[112,93,77,-0.23136053082998842],[112,93,78,-0.23051845413283445],[112,93,79,-0.22974610078381374],[112,94,64,-0.25147608295083046],[112,94,65,-0.24941577669233084],[112,94,66,-0.2479408886283636],[112,94,67,-0.24717632587999105],[112,94,68,-0.2468998022377491],[112,94,69,-0.2467799885198474],[112,94,70,-0.24662002734839916],[112,94,71,-0.24616288859397173],[112,94,72,-0.24507141532376409],[112,94,73,-0.24363101925700903],[112,94,74,-0.2423978541046381],[112,94,75,-0.24124931590631604],[112,94,76,-0.24014847143553197],[112,94,77,-0.23917303082998842],[112,94,78,-0.23833095413283445],[112,94,79,-0.23755860078381374],[112,95,64,-0.25928858295083046],[112,95,65,-0.25722827669233084],[112,95,66,-0.2557533886283636],[112,95,67,-0.25498882587999105],[112,95,68,-0.2547123022377491],[112,95,69,-0.2545924885198474],[112,95,70,-0.25443252734839916],[112,95,71,-0.25397538859397173],[112,95,72,-0.2528839153237641],[112,95,73,-0.25144351925700903],[112,95,74,-0.2502103541046381],[112,95,75,-0.24906181590631604],[112,95,76,-0.24796097143553197],[112,95,77,-0.24698553082998842],[112,95,78,-0.24614345413283445],[112,95,79,-0.24537110078381374],[112,96,64,-0.26710108295083046],[112,96,65,-0.26504077669233084],[112,96,66,-0.2635658886283636],[112,96,67,-0.26280132587999105],[112,96,68,-0.2625248022377491],[112,96,69,-0.2624049885198474],[112,96,70,-0.26224502734839916],[112,96,71,-0.26178788859397173],[112,96,72,-0.2606964153237641],[112,96,73,-0.25925601925700903],[112,96,74,-0.2580228541046381],[112,96,75,-0.25687431590631604],[112,96,76,-0.255773471435532],[112,96,77,-0.2547980308299884],[112,96,78,-0.25395595413283445],[112,96,79,-0.25318360078381374],[112,97,64,-0.27491358295083046],[112,97,65,-0.27285327669233084],[112,97,66,-0.2713783886283636],[112,97,67,-0.27061382587999105],[112,97,68,-0.2703373022377491],[112,97,69,-0.2702174885198474],[112,97,70,-0.27005752734839916],[112,97,71,-0.26960038859397173],[112,97,72,-0.2685089153237641],[112,97,73,-0.26706851925700903],[112,97,74,-0.2658353541046381],[112,97,75,-0.26468681590631604],[112,97,76,-0.263585971435532],[112,97,77,-0.2626105308299884],[112,97,78,-0.26176845413283445],[112,97,79,-0.26099610078381374],[112,98,64,-0.28272608295083046],[112,98,65,-0.28066577669233084],[112,98,66,-0.2791908886283636],[112,98,67,-0.27842632587999105],[112,98,68,-0.2781498022377491],[112,98,69,-0.2780299885198474],[112,98,70,-0.27787002734839916],[112,98,71,-0.27741288859397173],[112,98,72,-0.2763214153237641],[112,98,73,-0.27488101925700903],[112,98,74,-0.2736478541046381],[112,98,75,-0.27249931590631604],[112,98,76,-0.271398471435532],[112,98,77,-0.2704230308299884],[112,98,78,-0.26958095413283445],[112,98,79,-0.26880860078381374],[112,99,64,-0.29053858295083046],[112,99,65,-0.28847827669233084],[112,99,66,-0.2870033886283636],[112,99,67,-0.28623882587999105],[112,99,68,-0.2859623022377491],[112,99,69,-0.2858424885198474],[112,99,70,-0.28568252734839916],[112,99,71,-0.28522538859397173],[112,99,72,-0.2841339153237641],[112,99,73,-0.28269351925700903],[112,99,74,-0.2814603541046381],[112,99,75,-0.28031181590631604],[112,99,76,-0.279210971435532],[112,99,77,-0.2782355308299884],[112,99,78,-0.27739345413283445],[112,99,79,-0.27662110078381374],[112,100,64,-0.29835108295083046],[112,100,65,-0.29629077669233084],[112,100,66,-0.2948158886283636],[112,100,67,-0.29405132587999105],[112,100,68,-0.2937748022377491],[112,100,69,-0.2936549885198474],[112,100,70,-0.29349502734839916],[112,100,71,-0.29303788859397173],[112,100,72,-0.2919464153237641],[112,100,73,-0.29050601925700903],[112,100,74,-0.2892728541046381],[112,100,75,-0.28812431590631604],[112,100,76,-0.287023471435532],[112,100,77,-0.2860480308299884],[112,100,78,-0.28520595413283445],[112,100,79,-0.28443360078381374],[112,101,64,-0.30616358295083046],[112,101,65,-0.30410327669233084],[112,101,66,-0.3026283886283636],[112,101,67,-0.30186382587999105],[112,101,68,-0.3015873022377491],[112,101,69,-0.3014674885198474],[112,101,70,-0.30130752734839916],[112,101,71,-0.30085038859397173],[112,101,72,-0.2997589153237641],[112,101,73,-0.29831851925700903],[112,101,74,-0.2970853541046381],[112,101,75,-0.29593681590631604],[112,101,76,-0.294835971435532],[112,101,77,-0.2938605308299884],[112,101,78,-0.29301845413283445],[112,101,79,-0.29224610078381374],[112,102,64,-0.31397608295083046],[112,102,65,-0.31191577669233084],[112,102,66,-0.3104408886283636],[112,102,67,-0.30967632587999105],[112,102,68,-0.3093998022377491],[112,102,69,-0.3092799885198474],[112,102,70,-0.30912002734839916],[112,102,71,-0.30866288859397173],[112,102,72,-0.3075714153237641],[112,102,73,-0.30613101925700903],[112,102,74,-0.3048978541046381],[112,102,75,-0.30374931590631604],[112,102,76,-0.302648471435532],[112,102,77,-0.3016730308299884],[112,102,78,-0.30083095413283445],[112,102,79,-0.30005860078381374],[112,103,64,-0.32178858295083046],[112,103,65,-0.31972827669233084],[112,103,66,-0.3182533886283636],[112,103,67,-0.31748882587999105],[112,103,68,-0.3172123022377491],[112,103,69,-0.3170924885198474],[112,103,70,-0.31693252734839916],[112,103,71,-0.31647538859397173],[112,103,72,-0.3153839153237641],[112,103,73,-0.31394351925700903],[112,103,74,-0.3127103541046381],[112,103,75,-0.31156181590631604],[112,103,76,-0.310460971435532],[112,103,77,-0.3094855308299884],[112,103,78,-0.30864345413283445],[112,103,79,-0.30787110078381374],[112,104,64,-0.32960108295083046],[112,104,65,-0.32754077669233084],[112,104,66,-0.3260658886283636],[112,104,67,-0.32530132587999105],[112,104,68,-0.3250248022377491],[112,104,69,-0.3249049885198474],[112,104,70,-0.32474502734839916],[112,104,71,-0.32428788859397173],[112,104,72,-0.3231964153237641],[112,104,73,-0.32175601925700903],[112,104,74,-0.3205228541046381],[112,104,75,-0.31937431590631604],[112,104,76,-0.318273471435532],[112,104,77,-0.3172980308299884],[112,104,78,-0.31645595413283445],[112,104,79,-0.31568360078381374],[112,105,64,-0.33741358295083046],[112,105,65,-0.33535327669233084],[112,105,66,-0.3338783886283636],[112,105,67,-0.33311382587999105],[112,105,68,-0.3328373022377491],[112,105,69,-0.3327174885198474],[112,105,70,-0.33255752734839916],[112,105,71,-0.33210038859397173],[112,105,72,-0.3310089153237641],[112,105,73,-0.32956851925700903],[112,105,74,-0.3283353541046381],[112,105,75,-0.32718681590631604],[112,105,76,-0.326085971435532],[112,105,77,-0.3251105308299884],[112,105,78,-0.32426845413283445],[112,105,79,-0.32349610078381374],[112,106,64,-0.34522608295083046],[112,106,65,-0.34316577669233084],[112,106,66,-0.3416908886283636],[112,106,67,-0.34092632587999105],[112,106,68,-0.3406498022377491],[112,106,69,-0.3405299885198474],[112,106,70,-0.34037002734839916],[112,106,71,-0.33991288859397173],[112,106,72,-0.3388214153237641],[112,106,73,-0.33738101925700903],[112,106,74,-0.3361478541046381],[112,106,75,-0.33499931590631604],[112,106,76,-0.333898471435532],[112,106,77,-0.3329230308299884],[112,106,78,-0.33208095413283445],[112,106,79,-0.33130860078381374],[112,107,64,-0.35303858295083046],[112,107,65,-0.35097827669233084],[112,107,66,-0.3495033886283636],[112,107,67,-0.34873882587999105],[112,107,68,-0.3484623022377491],[112,107,69,-0.3483424885198474],[112,107,70,-0.34818252734839916],[112,107,71,-0.34772538859397173],[112,107,72,-0.3466339153237641],[112,107,73,-0.34519351925700903],[112,107,74,-0.3439603541046381],[112,107,75,-0.34281181590631604],[112,107,76,-0.341710971435532],[112,107,77,-0.3407355308299884],[112,107,78,-0.33989345413283445],[112,107,79,-0.33912110078381374],[112,108,64,-0.36085108295083046],[112,108,65,-0.35879077669233084],[112,108,66,-0.3573158886283636],[112,108,67,-0.35655132587999105],[112,108,68,-0.3562748022377491],[112,108,69,-0.3561549885198474],[112,108,70,-0.35599502734839916],[112,108,71,-0.35553788859397173],[112,108,72,-0.3544464153237641],[112,108,73,-0.35300601925700903],[112,108,74,-0.3517728541046381],[112,108,75,-0.35062431590631604],[112,108,76,-0.349523471435532],[112,108,77,-0.3485480308299884],[112,108,78,-0.34770595413283445],[112,108,79,-0.34693360078381374],[112,109,64,-0.36866358295083046],[112,109,65,-0.36660327669233084],[112,109,66,-0.3651283886283636],[112,109,67,-0.36436382587999105],[112,109,68,-0.3640873022377491],[112,109,69,-0.3639674885198474],[112,109,70,-0.36380752734839916],[112,109,71,-0.36335038859397173],[112,109,72,-0.3622589153237641],[112,109,73,-0.36081851925700903],[112,109,74,-0.3595853541046381],[112,109,75,-0.35843681590631604],[112,109,76,-0.357335971435532],[112,109,77,-0.3563605308299884],[112,109,78,-0.35551845413283445],[112,109,79,-0.35474610078381374],[112,110,64,-0.37647608295083046],[112,110,65,-0.37441577669233084],[112,110,66,-0.3729408886283636],[112,110,67,-0.37217632587999105],[112,110,68,-0.3718998022377491],[112,110,69,-0.3717799885198474],[112,110,70,-0.37162002734839916],[112,110,71,-0.37116288859397173],[112,110,72,-0.3700714153237641],[112,110,73,-0.36863101925700903],[112,110,74,-0.3673978541046381],[112,110,75,-0.36624931590631604],[112,110,76,-0.365148471435532],[112,110,77,-0.3641730308299884],[112,110,78,-0.36333095413283445],[112,110,79,-0.36255860078381374],[112,111,64,-0.38428858295083046],[112,111,65,-0.38222827669233084],[112,111,66,-0.3807533886283636],[112,111,67,-0.37998882587999105],[112,111,68,-0.3797123022377491],[112,111,69,-0.3795924885198474],[112,111,70,-0.37943252734839916],[112,111,71,-0.37897538859397173],[112,111,72,-0.3778839153237641],[112,111,73,-0.37644351925700903],[112,111,74,-0.3752103541046381],[112,111,75,-0.37406181590631604],[112,111,76,-0.372960971435532],[112,111,77,-0.3719855308299884],[112,111,78,-0.37114345413283445],[112,111,79,-0.37037110078381374],[112,112,64,-0.39210108295083046],[112,112,65,-0.39004077669233084],[112,112,66,-0.3885658886283636],[112,112,67,-0.38780132587999105],[112,112,68,-0.3875248022377491],[112,112,69,-0.3874049885198474],[112,112,70,-0.38724502734839916],[112,112,71,-0.38678788859397173],[112,112,72,-0.3856964153237641],[112,112,73,-0.38425601925700903],[112,112,74,-0.3830228541046381],[112,112,75,-0.38187431590631604],[112,112,76,-0.380773471435532],[112,112,77,-0.3797980308299884],[112,112,78,-0.37895595413283445],[112,112,79,-0.37818360078381374],[112,113,64,-0.39991358295083046],[112,113,65,-0.39785327669233084],[112,113,66,-0.3963783886283636],[112,113,67,-0.39561382587999105],[112,113,68,-0.3953373022377491],[112,113,69,-0.3952174885198474],[112,113,70,-0.39505752734839916],[112,113,71,-0.39460038859397173],[112,113,72,-0.3935089153237641],[112,113,73,-0.39206851925700903],[112,113,74,-0.3908353541046381],[112,113,75,-0.38968681590631604],[112,113,76,-0.388585971435532],[112,113,77,-0.3876105308299884],[112,113,78,-0.38676845413283445],[112,113,79,-0.38599610078381374],[112,114,64,-0.40772608295083046],[112,114,65,-0.40566577669233084],[112,114,66,-0.4041908886283636],[112,114,67,-0.40342632587999105],[112,114,68,-0.4031498022377491],[112,114,69,-0.4030299885198474],[112,114,70,-0.40287002734839916],[112,114,71,-0.40241288859397173],[112,114,72,-0.4013214153237641],[112,114,73,-0.39988101925700903],[112,114,74,-0.3986478541046381],[112,114,75,-0.39749931590631604],[112,114,76,-0.396398471435532],[112,114,77,-0.3954230308299884],[112,114,78,-0.39458095413283445],[112,114,79,-0.39380860078381374],[112,115,64,-0.41553858295083046],[112,115,65,-0.41347827669233084],[112,115,66,-0.4120033886283636],[112,115,67,-0.41123882587999105],[112,115,68,-0.4109623022377491],[112,115,69,-0.4108424885198474],[112,115,70,-0.41068252734839916],[112,115,71,-0.41022538859397173],[112,115,72,-0.4091339153237641],[112,115,73,-0.40769351925700903],[112,115,74,-0.4064603541046381],[112,115,75,-0.40531181590631604],[112,115,76,-0.404210971435532],[112,115,77,-0.4032355308299884],[112,115,78,-0.40239345413283445],[112,115,79,-0.40162110078381374],[112,116,64,-0.42335108295083046],[112,116,65,-0.42129077669233084],[112,116,66,-0.4198158886283636],[112,116,67,-0.41905132587999105],[112,116,68,-0.4187748022377491],[112,116,69,-0.4186549885198474],[112,116,70,-0.41849502734839916],[112,116,71,-0.41803788859397173],[112,116,72,-0.4169464153237641],[112,116,73,-0.41550601925700903],[112,116,74,-0.4142728541046381],[112,116,75,-0.41312431590631604],[112,116,76,-0.412023471435532],[112,116,77,-0.4110480308299884],[112,116,78,-0.41020595413283445],[112,116,79,-0.40943360078381374],[112,117,64,-0.43116358295083046],[112,117,65,-0.42910327669233084],[112,117,66,-0.4276283886283636],[112,117,67,-0.42686382587999105],[112,117,68,-0.4265873022377491],[112,117,69,-0.4264674885198474],[112,117,70,-0.42630752734839916],[112,117,71,-0.42585038859397173],[112,117,72,-0.4247589153237641],[112,117,73,-0.42331851925700903],[112,117,74,-0.4220853541046381],[112,117,75,-0.42093681590631604],[112,117,76,-0.419835971435532],[112,117,77,-0.4188605308299884],[112,117,78,-0.41801845413283445],[112,117,79,-0.41724610078381374],[112,118,64,-0.43897608295083046],[112,118,65,-0.43691577669233084],[112,118,66,-0.4354408886283636],[112,118,67,-0.43467632587999105],[112,118,68,-0.4343998022377491],[112,118,69,-0.4342799885198474],[112,118,70,-0.43412002734839916],[112,118,71,-0.43366288859397173],[112,118,72,-0.4325714153237641],[112,118,73,-0.43113101925700903],[112,118,74,-0.4298978541046381],[112,118,75,-0.42874931590631604],[112,118,76,-0.427648471435532],[112,118,77,-0.4266730308299884],[112,118,78,-0.42583095413283445],[112,118,79,-0.42505860078381374],[112,119,64,-0.44678858295083046],[112,119,65,-0.44472827669233084],[112,119,66,-0.4432533886283636],[112,119,67,-0.44248882587999105],[112,119,68,-0.4422123022377491],[112,119,69,-0.4420924885198474],[112,119,70,-0.44193252734839916],[112,119,71,-0.44147538859397173],[112,119,72,-0.4403839153237641],[112,119,73,-0.43894351925700903],[112,119,74,-0.4377103541046381],[112,119,75,-0.43656181590631604],[112,119,76,-0.435460971435532],[112,119,77,-0.4344855308299884],[112,119,78,-0.43364345413283445],[112,119,79,-0.43287110078381374],[112,120,64,-0.45460108295083046],[112,120,65,-0.45254077669233084],[112,120,66,-0.4510658886283636],[112,120,67,-0.45030132587999105],[112,120,68,-0.4500248022377491],[112,120,69,-0.4499049885198474],[112,120,70,-0.44974502734839916],[112,120,71,-0.44928788859397173],[112,120,72,-0.4481964153237641],[112,120,73,-0.44675601925700903],[112,120,74,-0.4455228541046381],[112,120,75,-0.44437431590631604],[112,120,76,-0.443273471435532],[112,120,77,-0.4422980308299884],[112,120,78,-0.44145595413283445],[112,120,79,-0.44068360078381374],[112,121,64,-0.46241358295083046],[112,121,65,-0.46035327669233084],[112,121,66,-0.4588783886283636],[112,121,67,-0.45811382587999105],[112,121,68,-0.4578373022377491],[112,121,69,-0.4577174885198474],[112,121,70,-0.45755752734839916],[112,121,71,-0.45710038859397173],[112,121,72,-0.4560089153237641],[112,121,73,-0.45456851925700903],[112,121,74,-0.4533353541046381],[112,121,75,-0.45218681590631604],[112,121,76,-0.451085971435532],[112,121,77,-0.4501105308299884],[112,121,78,-0.44926845413283445],[112,121,79,-0.44849610078381374],[112,122,64,-0.47022608295083046],[112,122,65,-0.46816577669233084],[112,122,66,-0.4666908886283636],[112,122,67,-0.46592632587999105],[112,122,68,-0.4656498022377491],[112,122,69,-0.4655299885198474],[112,122,70,-0.46537002734839916],[112,122,71,-0.46491288859397173],[112,122,72,-0.4638214153237641],[112,122,73,-0.46238101925700903],[112,122,74,-0.4611478541046381],[112,122,75,-0.45999931590631604],[112,122,76,-0.458898471435532],[112,122,77,-0.4579230308299884],[112,122,78,-0.45708095413283445],[112,122,79,-0.45630860078381374],[112,123,64,-0.47803858295083046],[112,123,65,-0.47597827669233084],[112,123,66,-0.4745033886283636],[112,123,67,-0.47373882587999105],[112,123,68,-0.4734623022377491],[112,123,69,-0.4733424885198474],[112,123,70,-0.47318252734839916],[112,123,71,-0.47272538859397173],[112,123,72,-0.4716339153237641],[112,123,73,-0.47019351925700903],[112,123,74,-0.4689603541046381],[112,123,75,-0.46781181590631604],[112,123,76,-0.466710971435532],[112,123,77,-0.4657355308299884],[112,123,78,-0.46489345413283445],[112,123,79,-0.46412110078381374],[112,124,64,-0.48585108295083046],[112,124,65,-0.48379077669233084],[112,124,66,-0.4823158886283636],[112,124,67,-0.48155132587999105],[112,124,68,-0.4812748022377491],[112,124,69,-0.4811549885198474],[112,124,70,-0.48099502734839916],[112,124,71,-0.48053788859397173],[112,124,72,-0.4794464153237641],[112,124,73,-0.47800601925700903],[112,124,74,-0.4767728541046381],[112,124,75,-0.47562431590631604],[112,124,76,-0.474523471435532],[112,124,77,-0.4735480308299884],[112,124,78,-0.47270595413283445],[112,124,79,-0.47193360078381374],[112,125,64,-0.49366358295083046],[112,125,65,-0.49160327669233084],[112,125,66,-0.4901283886283636],[112,125,67,-0.48936382587999105],[112,125,68,-0.4890873022377491],[112,125,69,-0.4889674885198474],[112,125,70,-0.48880752734839916],[112,125,71,-0.48835038859397173],[112,125,72,-0.4872589153237641],[112,125,73,-0.48581851925700903],[112,125,74,-0.4845853541046381],[112,125,75,-0.48343681590631604],[112,125,76,-0.482335971435532],[112,125,77,-0.4813605308299884],[112,125,78,-0.48051845413283445],[112,125,79,-0.47974610078381374],[112,126,64,-0.5014760829508305],[112,126,65,-0.49941577669233084],[112,126,66,-0.4979408886283636],[112,126,67,-0.49717632587999105],[112,126,68,-0.4968998022377491],[112,126,69,-0.4967799885198474],[112,126,70,-0.49662002734839916],[112,126,71,-0.49616288859397173],[112,126,72,-0.4950714153237641],[112,126,73,-0.49363101925700903],[112,126,74,-0.4923978541046381],[112,126,75,-0.49124931590631604],[112,126,76,-0.490148471435532],[112,126,77,-0.4891730308299884],[112,126,78,-0.48833095413283445],[112,126,79,-0.48755860078381374],[112,127,64,-0.5092885829508305],[112,127,65,-0.5072282766923308],[112,127,66,-0.5057533886283636],[112,127,67,-0.504988825879991],[112,127,68,-0.5047123022377491],[112,127,69,-0.5045924885198474],[112,127,70,-0.5044325273483992],[112,127,71,-0.5039753885939717],[112,127,72,-0.5028839153237641],[112,127,73,-0.501443519257009],[112,127,74,-0.5002103541046381],[112,127,75,-0.49906181590631604],[112,127,76,-0.497960971435532],[112,127,77,-0.4969855308299884],[112,127,78,-0.49614345413283445],[112,127,79,-0.49537110078381374],[112,128,64,-0.5171010829508305],[112,128,65,-0.5150407766923308],[112,128,66,-0.5135658886283636],[112,128,67,-0.512801325879991],[112,128,68,-0.5125248022377491],[112,128,69,-0.5124049885198474],[112,128,70,-0.5122450273483992],[112,128,71,-0.5117878885939717],[112,128,72,-0.5106964153237641],[112,128,73,-0.509256019257009],[112,128,74,-0.5080228541046381],[112,128,75,-0.506874315906316],[112,128,76,-0.505773471435532],[112,128,77,-0.5047980308299884],[112,128,78,-0.5039559541328344],[112,128,79,-0.5031836007838137],[112,129,64,-0.5249135829508305],[112,129,65,-0.5228532766923308],[112,129,66,-0.5213783886283636],[112,129,67,-0.520613825879991],[112,129,68,-0.5203373022377491],[112,129,69,-0.5202174885198474],[112,129,70,-0.5200575273483992],[112,129,71,-0.5196003885939717],[112,129,72,-0.5185089153237641],[112,129,73,-0.517068519257009],[112,129,74,-0.5158353541046381],[112,129,75,-0.514686815906316],[112,129,76,-0.513585971435532],[112,129,77,-0.5126105308299884],[112,129,78,-0.5117684541328344],[112,129,79,-0.5109961007838137],[112,130,64,-0.5327260829508305],[112,130,65,-0.5306657766923308],[112,130,66,-0.5291908886283636],[112,130,67,-0.528426325879991],[112,130,68,-0.5281498022377491],[112,130,69,-0.5280299885198474],[112,130,70,-0.5278700273483992],[112,130,71,-0.5274128885939717],[112,130,72,-0.5263214153237641],[112,130,73,-0.524881019257009],[112,130,74,-0.5236478541046381],[112,130,75,-0.522499315906316],[112,130,76,-0.521398471435532],[112,130,77,-0.5204230308299884],[112,130,78,-0.5195809541328344],[112,130,79,-0.5188086007838137],[112,131,64,-0.5405385829508305],[112,131,65,-0.5384782766923308],[112,131,66,-0.5370033886283636],[112,131,67,-0.536238825879991],[112,131,68,-0.5359623022377491],[112,131,69,-0.5358424885198474],[112,131,70,-0.5356825273483992],[112,131,71,-0.5352253885939717],[112,131,72,-0.5341339153237641],[112,131,73,-0.532693519257009],[112,131,74,-0.5314603541046381],[112,131,75,-0.530311815906316],[112,131,76,-0.529210971435532],[112,131,77,-0.5282355308299884],[112,131,78,-0.5273934541328344],[112,131,79,-0.5266211007838137],[112,132,64,-0.5483510829508305],[112,132,65,-0.5462907766923308],[112,132,66,-0.5448158886283636],[112,132,67,-0.544051325879991],[112,132,68,-0.5437748022377491],[112,132,69,-0.5436549885198474],[112,132,70,-0.5434950273483992],[112,132,71,-0.5430378885939717],[112,132,72,-0.5419464153237641],[112,132,73,-0.540506019257009],[112,132,74,-0.5392728541046381],[112,132,75,-0.538124315906316],[112,132,76,-0.537023471435532],[112,132,77,-0.5360480308299884],[112,132,78,-0.5352059541328344],[112,132,79,-0.5344336007838137],[112,133,64,-0.5561635829508305],[112,133,65,-0.5541032766923308],[112,133,66,-0.5526283886283636],[112,133,67,-0.551863825879991],[112,133,68,-0.5515873022377491],[112,133,69,-0.5514674885198474],[112,133,70,-0.5513075273483992],[112,133,71,-0.5508503885939717],[112,133,72,-0.5497589153237641],[112,133,73,-0.548318519257009],[112,133,74,-0.5470853541046381],[112,133,75,-0.545936815906316],[112,133,76,-0.544835971435532],[112,133,77,-0.5438605308299884],[112,133,78,-0.5430184541328344],[112,133,79,-0.5422461007838137],[112,134,64,-0.5639760829508305],[112,134,65,-0.5619157766923308],[112,134,66,-0.5604408886283636],[112,134,67,-0.559676325879991],[112,134,68,-0.5593998022377491],[112,134,69,-0.5592799885198474],[112,134,70,-0.5591200273483992],[112,134,71,-0.5586628885939717],[112,134,72,-0.5575714153237641],[112,134,73,-0.556131019257009],[112,134,74,-0.5548978541046381],[112,134,75,-0.553749315906316],[112,134,76,-0.552648471435532],[112,134,77,-0.5516730308299884],[112,134,78,-0.5508309541328344],[112,134,79,-0.5500586007838137],[112,135,64,-0.5717885829508305],[112,135,65,-0.5697282766923308],[112,135,66,-0.5682533886283636],[112,135,67,-0.567488825879991],[112,135,68,-0.5672123022377491],[112,135,69,-0.5670924885198474],[112,135,70,-0.5669325273483992],[112,135,71,-0.5664753885939717],[112,135,72,-0.5653839153237641],[112,135,73,-0.563943519257009],[112,135,74,-0.5627103541046381],[112,135,75,-0.561561815906316],[112,135,76,-0.560460971435532],[112,135,77,-0.5594855308299884],[112,135,78,-0.5586434541328344],[112,135,79,-0.5578711007838137],[112,136,64,-0.5796010829508305],[112,136,65,-0.5775407766923308],[112,136,66,-0.5760658886283636],[112,136,67,-0.575301325879991],[112,136,68,-0.5750248022377491],[112,136,69,-0.5749049885198474],[112,136,70,-0.5747450273483992],[112,136,71,-0.5742878885939717],[112,136,72,-0.5731964153237641],[112,136,73,-0.571756019257009],[112,136,74,-0.5705228541046381],[112,136,75,-0.569374315906316],[112,136,76,-0.568273471435532],[112,136,77,-0.5672980308299884],[112,136,78,-0.5664559541328344],[112,136,79,-0.5656836007838137],[112,137,64,-0.5874135829508305],[112,137,65,-0.5853532766923308],[112,137,66,-0.5838783886283636],[112,137,67,-0.583113825879991],[112,137,68,-0.5828373022377491],[112,137,69,-0.5827174885198474],[112,137,70,-0.5825575273483992],[112,137,71,-0.5821003885939717],[112,137,72,-0.5810089153237641],[112,137,73,-0.579568519257009],[112,137,74,-0.5783353541046381],[112,137,75,-0.577186815906316],[112,137,76,-0.576085971435532],[112,137,77,-0.5751105308299884],[112,137,78,-0.5742684541328344],[112,137,79,-0.5734961007838137],[112,138,64,-0.5952260829508305],[112,138,65,-0.5931657766923308],[112,138,66,-0.5916908886283636],[112,138,67,-0.590926325879991],[112,138,68,-0.5906498022377491],[112,138,69,-0.5905299885198474],[112,138,70,-0.5903700273483992],[112,138,71,-0.5899128885939717],[112,138,72,-0.5888214153237641],[112,138,73,-0.587381019257009],[112,138,74,-0.5861478541046381],[112,138,75,-0.584999315906316],[112,138,76,-0.583898471435532],[112,138,77,-0.5829230308299884],[112,138,78,-0.5820809541328344],[112,138,79,-0.5813086007838137],[112,139,64,-0.6030385829508305],[112,139,65,-0.6009782766923308],[112,139,66,-0.5995033886283636],[112,139,67,-0.598738825879991],[112,139,68,-0.5984623022377491],[112,139,69,-0.5983424885198474],[112,139,70,-0.5981825273483992],[112,139,71,-0.5977253885939717],[112,139,72,-0.5966339153237641],[112,139,73,-0.595193519257009],[112,139,74,-0.5939603541046381],[112,139,75,-0.592811815906316],[112,139,76,-0.591710971435532],[112,139,77,-0.5907355308299884],[112,139,78,-0.5898934541328344],[112,139,79,-0.5891211007838137],[112,140,64,-0.6108510829508305],[112,140,65,-0.6087907766923308],[112,140,66,-0.6073158886283636],[112,140,67,-0.606551325879991],[112,140,68,-0.6062748022377491],[112,140,69,-0.6061549885198474],[112,140,70,-0.6059950273483992],[112,140,71,-0.6055378885939717],[112,140,72,-0.6044464153237641],[112,140,73,-0.603006019257009],[112,140,74,-0.6017728541046381],[112,140,75,-0.600624315906316],[112,140,76,-0.599523471435532],[112,140,77,-0.5985480308299884],[112,140,78,-0.5977059541328344],[112,140,79,-0.5969336007838137],[112,141,64,-0.6186635829508305],[112,141,65,-0.6166032766923308],[112,141,66,-0.6151283886283636],[112,141,67,-0.614363825879991],[112,141,68,-0.6140873022377491],[112,141,69,-0.6139674885198474],[112,141,70,-0.6138075273483992],[112,141,71,-0.6133503885939717],[112,141,72,-0.6122589153237641],[112,141,73,-0.610818519257009],[112,141,74,-0.6095853541046381],[112,141,75,-0.608436815906316],[112,141,76,-0.607335971435532],[112,141,77,-0.6063605308299884],[112,141,78,-0.6055184541328344],[112,141,79,-0.6047461007838137],[112,142,64,-0.6264760829508305],[112,142,65,-0.6244157766923308],[112,142,66,-0.6229408886283636],[112,142,67,-0.622176325879991],[112,142,68,-0.6218998022377491],[112,142,69,-0.6217799885198474],[112,142,70,-0.6216200273483992],[112,142,71,-0.6211628885939717],[112,142,72,-0.6200714153237641],[112,142,73,-0.618631019257009],[112,142,74,-0.6173978541046381],[112,142,75,-0.616249315906316],[112,142,76,-0.615148471435532],[112,142,77,-0.6141730308299884],[112,142,78,-0.6133309541328344],[112,142,79,-0.6125586007838137],[112,143,64,-0.6342885829508305],[112,143,65,-0.6322282766923308],[112,143,66,-0.6307533886283636],[112,143,67,-0.629988825879991],[112,143,68,-0.6297123022377491],[112,143,69,-0.6295924885198474],[112,143,70,-0.6294325273483992],[112,143,71,-0.6289753885939717],[112,143,72,-0.6278839153237641],[112,143,73,-0.626443519257009],[112,143,74,-0.6252103541046381],[112,143,75,-0.624061815906316],[112,143,76,-0.622960971435532],[112,143,77,-0.6219855308299884],[112,143,78,-0.6211434541328344],[112,143,79,-0.6203711007838137],[112,144,64,-0.6421010829508305],[112,144,65,-0.6400407766923308],[112,144,66,-0.6385658886283636],[112,144,67,-0.637801325879991],[112,144,68,-0.6375248022377491],[112,144,69,-0.6374049885198474],[112,144,70,-0.6372450273483992],[112,144,71,-0.6367878885939717],[112,144,72,-0.6356964153237641],[112,144,73,-0.634256019257009],[112,144,74,-0.6330228541046381],[112,144,75,-0.631874315906316],[112,144,76,-0.630773471435532],[112,144,77,-0.6297980308299884],[112,144,78,-0.6289559541328344],[112,144,79,-0.6281836007838137],[112,145,64,-0.6499135829508305],[112,145,65,-0.6478532766923308],[112,145,66,-0.6463783886283636],[112,145,67,-0.645613825879991],[112,145,68,-0.6453373022377491],[112,145,69,-0.6452174885198474],[112,145,70,-0.6450575273483992],[112,145,71,-0.6446003885939717],[112,145,72,-0.6435089153237641],[112,145,73,-0.642068519257009],[112,145,74,-0.6408353541046381],[112,145,75,-0.639686815906316],[112,145,76,-0.638585971435532],[112,145,77,-0.6376105308299884],[112,145,78,-0.6367684541328344],[112,145,79,-0.6359961007838137],[112,146,64,-0.6577260829508305],[112,146,65,-0.6556657766923308],[112,146,66,-0.6541908886283636],[112,146,67,-0.653426325879991],[112,146,68,-0.6531498022377491],[112,146,69,-0.6530299885198474],[112,146,70,-0.6528700273483992],[112,146,71,-0.6524128885939717],[112,146,72,-0.6513214153237641],[112,146,73,-0.649881019257009],[112,146,74,-0.6486478541046381],[112,146,75,-0.647499315906316],[112,146,76,-0.646398471435532],[112,146,77,-0.6454230308299884],[112,146,78,-0.6445809541328344],[112,146,79,-0.6438086007838137],[112,147,64,-0.6655385829508305],[112,147,65,-0.6634782766923308],[112,147,66,-0.6620033886283636],[112,147,67,-0.661238825879991],[112,147,68,-0.6609623022377491],[112,147,69,-0.6608424885198474],[112,147,70,-0.6606825273483992],[112,147,71,-0.6602253885939717],[112,147,72,-0.6591339153237641],[112,147,73,-0.657693519257009],[112,147,74,-0.6564603541046381],[112,147,75,-0.655311815906316],[112,147,76,-0.654210971435532],[112,147,77,-0.6532355308299884],[112,147,78,-0.6523934541328344],[112,147,79,-0.6516211007838137],[112,148,64,-0.6733510829508305],[112,148,65,-0.6712907766923308],[112,148,66,-0.6698158886283636],[112,148,67,-0.669051325879991],[112,148,68,-0.6687748022377491],[112,148,69,-0.6686549885198474],[112,148,70,-0.6684950273483992],[112,148,71,-0.6680378885939717],[112,148,72,-0.6669464153237641],[112,148,73,-0.665506019257009],[112,148,74,-0.6642728541046381],[112,148,75,-0.663124315906316],[112,148,76,-0.662023471435532],[112,148,77,-0.6610480308299884],[112,148,78,-0.6602059541328344],[112,148,79,-0.6594336007838137],[112,149,64,-0.6811635829508305],[112,149,65,-0.6791032766923308],[112,149,66,-0.6776283886283636],[112,149,67,-0.676863825879991],[112,149,68,-0.6765873022377491],[112,149,69,-0.6764674885198474],[112,149,70,-0.6763075273483992],[112,149,71,-0.6758503885939717],[112,149,72,-0.6747589153237641],[112,149,73,-0.673318519257009],[112,149,74,-0.6720853541046381],[112,149,75,-0.670936815906316],[112,149,76,-0.669835971435532],[112,149,77,-0.6688605308299884],[112,149,78,-0.6680184541328344],[112,149,79,-0.6672461007838137],[112,150,64,-0.6889760829508305],[112,150,65,-0.6869157766923308],[112,150,66,-0.6854408886283636],[112,150,67,-0.684676325879991],[112,150,68,-0.6843998022377491],[112,150,69,-0.6842799885198474],[112,150,70,-0.6841200273483992],[112,150,71,-0.6836628885939717],[112,150,72,-0.6825714153237641],[112,150,73,-0.681131019257009],[112,150,74,-0.6798978541046381],[112,150,75,-0.678749315906316],[112,150,76,-0.677648471435532],[112,150,77,-0.6766730308299884],[112,150,78,-0.6758309541328344],[112,150,79,-0.6750586007838137],[112,151,64,-0.6967885829508305],[112,151,65,-0.6947282766923308],[112,151,66,-0.6932533886283636],[112,151,67,-0.692488825879991],[112,151,68,-0.6922123022377491],[112,151,69,-0.6920924885198474],[112,151,70,-0.6919325273483992],[112,151,71,-0.6914753885939717],[112,151,72,-0.6903839153237641],[112,151,73,-0.688943519257009],[112,151,74,-0.6877103541046381],[112,151,75,-0.686561815906316],[112,151,76,-0.685460971435532],[112,151,77,-0.6844855308299884],[112,151,78,-0.6836434541328344],[112,151,79,-0.6828711007838137],[112,152,64,-0.7046010829508305],[112,152,65,-0.7025407766923308],[112,152,66,-0.7010658886283636],[112,152,67,-0.700301325879991],[112,152,68,-0.7000248022377491],[112,152,69,-0.6999049885198474],[112,152,70,-0.6997450273483992],[112,152,71,-0.6992878885939717],[112,152,72,-0.6981964153237641],[112,152,73,-0.696756019257009],[112,152,74,-0.6955228541046381],[112,152,75,-0.694374315906316],[112,152,76,-0.693273471435532],[112,152,77,-0.6922980308299884],[112,152,78,-0.6914559541328344],[112,152,79,-0.6906836007838137],[112,153,64,-0.7124135829508305],[112,153,65,-0.7103532766923308],[112,153,66,-0.7088783886283636],[112,153,67,-0.708113825879991],[112,153,68,-0.7078373022377491],[112,153,69,-0.7077174885198474],[112,153,70,-0.7075575273483992],[112,153,71,-0.7071003885939717],[112,153,72,-0.7060089153237641],[112,153,73,-0.704568519257009],[112,153,74,-0.7033353541046381],[112,153,75,-0.702186815906316],[112,153,76,-0.701085971435532],[112,153,77,-0.7001105308299884],[112,153,78,-0.6992684541328344],[112,153,79,-0.6984961007838137],[112,154,64,-0.7202260829508305],[112,154,65,-0.7181657766923308],[112,154,66,-0.7166908886283636],[112,154,67,-0.715926325879991],[112,154,68,-0.7156498022377491],[112,154,69,-0.7155299885198474],[112,154,70,-0.7153700273483992],[112,154,71,-0.7149128885939717],[112,154,72,-0.7138214153237641],[112,154,73,-0.712381019257009],[112,154,74,-0.7111478541046381],[112,154,75,-0.709999315906316],[112,154,76,-0.708898471435532],[112,154,77,-0.7079230308299884],[112,154,78,-0.7070809541328344],[112,154,79,-0.7063086007838137],[112,155,64,-0.7280385829508305],[112,155,65,-0.7259782766923308],[112,155,66,-0.7245033886283636],[112,155,67,-0.723738825879991],[112,155,68,-0.7234623022377491],[112,155,69,-0.7233424885198474],[112,155,70,-0.7231825273483992],[112,155,71,-0.7227253885939717],[112,155,72,-0.7216339153237641],[112,155,73,-0.720193519257009],[112,155,74,-0.7189603541046381],[112,155,75,-0.717811815906316],[112,155,76,-0.716710971435532],[112,155,77,-0.7157355308299884],[112,155,78,-0.7148934541328344],[112,155,79,-0.7141211007838137],[112,156,64,-0.7358510829508305],[112,156,65,-0.7337907766923308],[112,156,66,-0.7323158886283636],[112,156,67,-0.731551325879991],[112,156,68,-0.7312748022377491],[112,156,69,-0.7311549885198474],[112,156,70,-0.7309950273483992],[112,156,71,-0.7305378885939717],[112,156,72,-0.7294464153237641],[112,156,73,-0.728006019257009],[112,156,74,-0.7267728541046381],[112,156,75,-0.725624315906316],[112,156,76,-0.724523471435532],[112,156,77,-0.7235480308299884],[112,156,78,-0.7227059541328344],[112,156,79,-0.7219336007838137],[112,157,64,-0.7436635829508305],[112,157,65,-0.7416032766923308],[112,157,66,-0.7401283886283636],[112,157,67,-0.739363825879991],[112,157,68,-0.7390873022377491],[112,157,69,-0.7389674885198474],[112,157,70,-0.7388075273483992],[112,157,71,-0.7383503885939717],[112,157,72,-0.7372589153237641],[112,157,73,-0.735818519257009],[112,157,74,-0.7345853541046381],[112,157,75,-0.733436815906316],[112,157,76,-0.732335971435532],[112,157,77,-0.7313605308299884],[112,157,78,-0.7305184541328344],[112,157,79,-0.7297461007838137],[112,158,64,-0.7514760829508305],[112,158,65,-0.7494157766923308],[112,158,66,-0.7479408886283636],[112,158,67,-0.747176325879991],[112,158,68,-0.7468998022377491],[112,158,69,-0.7467799885198474],[112,158,70,-0.7466200273483992],[112,158,71,-0.7461628885939717],[112,158,72,-0.7450714153237641],[112,158,73,-0.743631019257009],[112,158,74,-0.7423978541046381],[112,158,75,-0.741249315906316],[112,158,76,-0.740148471435532],[112,158,77,-0.7391730308299884],[112,158,78,-0.7383309541328344],[112,158,79,-0.7375586007838137],[112,159,64,-0.7592885829508305],[112,159,65,-0.7572282766923308],[112,159,66,-0.7557533886283636],[112,159,67,-0.754988825879991],[112,159,68,-0.7547123022377491],[112,159,69,-0.7545924885198474],[112,159,70,-0.7544325273483992],[112,159,71,-0.7539753885939717],[112,159,72,-0.7528839153237641],[112,159,73,-0.751443519257009],[112,159,74,-0.7502103541046381],[112,159,75,-0.749061815906316],[112,159,76,-0.747960971435532],[112,159,77,-0.7469855308299884],[112,159,78,-0.7461434541328344],[112,159,79,-0.7453711007838137],[112,160,64,-0.7671010829508305],[112,160,65,-0.7650407766923308],[112,160,66,-0.7635658886283636],[112,160,67,-0.762801325879991],[112,160,68,-0.7625248022377491],[112,160,69,-0.7624049885198474],[112,160,70,-0.7622450273483992],[112,160,71,-0.7617878885939717],[112,160,72,-0.7606964153237641],[112,160,73,-0.759256019257009],[112,160,74,-0.7580228541046381],[112,160,75,-0.756874315906316],[112,160,76,-0.755773471435532],[112,160,77,-0.7547980308299884],[112,160,78,-0.7539559541328344],[112,160,79,-0.7531836007838137],[112,161,64,-0.7749135829508305],[112,161,65,-0.7728532766923308],[112,161,66,-0.7713783886283636],[112,161,67,-0.770613825879991],[112,161,68,-0.7703373022377491],[112,161,69,-0.7702174885198474],[112,161,70,-0.7700575273483992],[112,161,71,-0.7696003885939717],[112,161,72,-0.7685089153237641],[112,161,73,-0.767068519257009],[112,161,74,-0.7658353541046381],[112,161,75,-0.764686815906316],[112,161,76,-0.763585971435532],[112,161,77,-0.7626105308299884],[112,161,78,-0.7617684541328344],[112,161,79,-0.7609961007838137],[112,162,64,-0.7827260829508305],[112,162,65,-0.7806657766923308],[112,162,66,-0.7791908886283636],[112,162,67,-0.778426325879991],[112,162,68,-0.7781498022377491],[112,162,69,-0.7780299885198474],[112,162,70,-0.7778700273483992],[112,162,71,-0.7774128885939717],[112,162,72,-0.7763214153237641],[112,162,73,-0.774881019257009],[112,162,74,-0.7736478541046381],[112,162,75,-0.772499315906316],[112,162,76,-0.771398471435532],[112,162,77,-0.7704230308299884],[112,162,78,-0.7695809541328344],[112,162,79,-0.7688086007838137],[112,163,64,-0.7905385829508305],[112,163,65,-0.7884782766923308],[112,163,66,-0.7870033886283636],[112,163,67,-0.786238825879991],[112,163,68,-0.7859623022377491],[112,163,69,-0.7858424885198474],[112,163,70,-0.7856825273483992],[112,163,71,-0.7852253885939717],[112,163,72,-0.7841339153237641],[112,163,73,-0.782693519257009],[112,163,74,-0.7814603541046381],[112,163,75,-0.780311815906316],[112,163,76,-0.779210971435532],[112,163,77,-0.7782355308299884],[112,163,78,-0.7773934541328344],[112,163,79,-0.7766211007838137],[112,164,64,-0.7983510829508305],[112,164,65,-0.7962907766923308],[112,164,66,-0.7948158886283636],[112,164,67,-0.794051325879991],[112,164,68,-0.7937748022377491],[112,164,69,-0.7936549885198474],[112,164,70,-0.7934950273483992],[112,164,71,-0.7930378885939717],[112,164,72,-0.7919464153237641],[112,164,73,-0.790506019257009],[112,164,74,-0.7892728541046381],[112,164,75,-0.788124315906316],[112,164,76,-0.787023471435532],[112,164,77,-0.7860480308299884],[112,164,78,-0.7852059541328344],[112,164,79,-0.7844336007838137],[112,165,64,-0.8061635829508305],[112,165,65,-0.8041032766923308],[112,165,66,-0.8026283886283636],[112,165,67,-0.801863825879991],[112,165,68,-0.8015873022377491],[112,165,69,-0.8014674885198474],[112,165,70,-0.8013075273483992],[112,165,71,-0.8008503885939717],[112,165,72,-0.7997589153237641],[112,165,73,-0.798318519257009],[112,165,74,-0.7970853541046381],[112,165,75,-0.795936815906316],[112,165,76,-0.794835971435532],[112,165,77,-0.7938605308299884],[112,165,78,-0.7930184541328344],[112,165,79,-0.7922461007838137],[112,166,64,-0.8139760829508305],[112,166,65,-0.8119157766923308],[112,166,66,-0.8104408886283636],[112,166,67,-0.809676325879991],[112,166,68,-0.8093998022377491],[112,166,69,-0.8092799885198474],[112,166,70,-0.8091200273483992],[112,166,71,-0.8086628885939717],[112,166,72,-0.8075714153237641],[112,166,73,-0.806131019257009],[112,166,74,-0.8048978541046381],[112,166,75,-0.803749315906316],[112,166,76,-0.802648471435532],[112,166,77,-0.8016730308299884],[112,166,78,-0.8008309541328344],[112,166,79,-0.8000586007838137],[112,167,64,-0.8217885829508305],[112,167,65,-0.8197282766923308],[112,167,66,-0.8182533886283636],[112,167,67,-0.817488825879991],[112,167,68,-0.8172123022377491],[112,167,69,-0.8170924885198474],[112,167,70,-0.8169325273483992],[112,167,71,-0.8164753885939717],[112,167,72,-0.8153839153237641],[112,167,73,-0.813943519257009],[112,167,74,-0.8127103541046381],[112,167,75,-0.811561815906316],[112,167,76,-0.810460971435532],[112,167,77,-0.8094855308299884],[112,167,78,-0.8086434541328344],[112,167,79,-0.8078711007838137],[112,168,64,-0.8296010829508305],[112,168,65,-0.8275407766923308],[112,168,66,-0.8260658886283636],[112,168,67,-0.825301325879991],[112,168,68,-0.8250248022377491],[112,168,69,-0.8249049885198474],[112,168,70,-0.8247450273483992],[112,168,71,-0.8242878885939717],[112,168,72,-0.8231964153237641],[112,168,73,-0.821756019257009],[112,168,74,-0.8205228541046381],[112,168,75,-0.819374315906316],[112,168,76,-0.818273471435532],[112,168,77,-0.8172980308299884],[112,168,78,-0.8164559541328344],[112,168,79,-0.8156836007838137],[112,169,64,-0.8374135829508305],[112,169,65,-0.8353532766923308],[112,169,66,-0.8338783886283636],[112,169,67,-0.833113825879991],[112,169,68,-0.8328373022377491],[112,169,69,-0.8327174885198474],[112,169,70,-0.8325575273483992],[112,169,71,-0.8321003885939717],[112,169,72,-0.8310089153237641],[112,169,73,-0.829568519257009],[112,169,74,-0.8283353541046381],[112,169,75,-0.827186815906316],[112,169,76,-0.826085971435532],[112,169,77,-0.8251105308299884],[112,169,78,-0.8242684541328344],[112,169,79,-0.8234961007838137],[112,170,64,-0.8452260829508305],[112,170,65,-0.8431657766923308],[112,170,66,-0.8416908886283636],[112,170,67,-0.840926325879991],[112,170,68,-0.8406498022377491],[112,170,69,-0.8405299885198474],[112,170,70,-0.8403700273483992],[112,170,71,-0.8399128885939717],[112,170,72,-0.8388214153237641],[112,170,73,-0.837381019257009],[112,170,74,-0.8361478541046381],[112,170,75,-0.834999315906316],[112,170,76,-0.833898471435532],[112,170,77,-0.8329230308299884],[112,170,78,-0.8320809541328344],[112,170,79,-0.8313086007838137],[112,171,64,-0.8530385829508305],[112,171,65,-0.8509782766923308],[112,171,66,-0.8495033886283636],[112,171,67,-0.848738825879991],[112,171,68,-0.8484623022377491],[112,171,69,-0.8483424885198474],[112,171,70,-0.8481825273483992],[112,171,71,-0.8477253885939717],[112,171,72,-0.8466339153237641],[112,171,73,-0.845193519257009],[112,171,74,-0.8439603541046381],[112,171,75,-0.842811815906316],[112,171,76,-0.841710971435532],[112,171,77,-0.8407355308299884],[112,171,78,-0.8398934541328344],[112,171,79,-0.8391211007838137],[112,172,64,-0.8608510829508305],[112,172,65,-0.8587907766923308],[112,172,66,-0.8573158886283636],[112,172,67,-0.856551325879991],[112,172,68,-0.8562748022377491],[112,172,69,-0.8561549885198474],[112,172,70,-0.8559950273483992],[112,172,71,-0.8555378885939717],[112,172,72,-0.8544464153237641],[112,172,73,-0.853006019257009],[112,172,74,-0.8517728541046381],[112,172,75,-0.850624315906316],[112,172,76,-0.849523471435532],[112,172,77,-0.8485480308299884],[112,172,78,-0.8477059541328344],[112,172,79,-0.8469336007838137],[112,173,64,-0.8686635829508305],[112,173,65,-0.8666032766923308],[112,173,66,-0.8651283886283636],[112,173,67,-0.864363825879991],[112,173,68,-0.8640873022377491],[112,173,69,-0.8639674885198474],[112,173,70,-0.8638075273483992],[112,173,71,-0.8633503885939717],[112,173,72,-0.8622589153237641],[112,173,73,-0.860818519257009],[112,173,74,-0.8595853541046381],[112,173,75,-0.858436815906316],[112,173,76,-0.857335971435532],[112,173,77,-0.8563605308299884],[112,173,78,-0.8555184541328344],[112,173,79,-0.8547461007838137],[112,174,64,-0.8764760829508305],[112,174,65,-0.8744157766923308],[112,174,66,-0.8729408886283636],[112,174,67,-0.872176325879991],[112,174,68,-0.8718998022377491],[112,174,69,-0.8717799885198474],[112,174,70,-0.8716200273483992],[112,174,71,-0.8711628885939717],[112,174,72,-0.8700714153237641],[112,174,73,-0.868631019257009],[112,174,74,-0.8673978541046381],[112,174,75,-0.866249315906316],[112,174,76,-0.865148471435532],[112,174,77,-0.8641730308299884],[112,174,78,-0.8633309541328344],[112,174,79,-0.8625586007838137],[112,175,64,-0.8842885829508305],[112,175,65,-0.8822282766923308],[112,175,66,-0.8807533886283636],[112,175,67,-0.879988825879991],[112,175,68,-0.8797123022377491],[112,175,69,-0.8795924885198474],[112,175,70,-0.8794325273483992],[112,175,71,-0.8789753885939717],[112,175,72,-0.8778839153237641],[112,175,73,-0.876443519257009],[112,175,74,-0.8752103541046381],[112,175,75,-0.874061815906316],[112,175,76,-0.872960971435532],[112,175,77,-0.8719855308299884],[112,175,78,-0.8711434541328344],[112,175,79,-0.8703711007838137],[112,176,64,-0.8921010829508305],[112,176,65,-0.8900407766923308],[112,176,66,-0.8885658886283636],[112,176,67,-0.887801325879991],[112,176,68,-0.8875248022377491],[112,176,69,-0.8874049885198474],[112,176,70,-0.8872450273483992],[112,176,71,-0.8867878885939717],[112,176,72,-0.8856964153237641],[112,176,73,-0.884256019257009],[112,176,74,-0.8830228541046381],[112,176,75,-0.881874315906316],[112,176,76,-0.880773471435532],[112,176,77,-0.8797980308299884],[112,176,78,-0.8789559541328344],[112,176,79,-0.8781836007838137],[112,177,64,-0.8999135829508305],[112,177,65,-0.8978532766923308],[112,177,66,-0.8963783886283636],[112,177,67,-0.895613825879991],[112,177,68,-0.8953373022377491],[112,177,69,-0.8952174885198474],[112,177,70,-0.8950575273483992],[112,177,71,-0.8946003885939717],[112,177,72,-0.8935089153237641],[112,177,73,-0.892068519257009],[112,177,74,-0.8908353541046381],[112,177,75,-0.889686815906316],[112,177,76,-0.888585971435532],[112,177,77,-0.8876105308299884],[112,177,78,-0.8867684541328344],[112,177,79,-0.8859961007838137],[112,178,64,-0.9077260829508305],[112,178,65,-0.9056657766923308],[112,178,66,-0.9041908886283636],[112,178,67,-0.903426325879991],[112,178,68,-0.9031498022377491],[112,178,69,-0.9030299885198474],[112,178,70,-0.9028700273483992],[112,178,71,-0.9024128885939717],[112,178,72,-0.9013214153237641],[112,178,73,-0.899881019257009],[112,178,74,-0.8986478541046381],[112,178,75,-0.897499315906316],[112,178,76,-0.896398471435532],[112,178,77,-0.8954230308299884],[112,178,78,-0.8945809541328344],[112,178,79,-0.8938086007838137],[112,179,64,-0.9155385829508305],[112,179,65,-0.9134782766923308],[112,179,66,-0.9120033886283636],[112,179,67,-0.911238825879991],[112,179,68,-0.9109623022377491],[112,179,69,-0.9108424885198474],[112,179,70,-0.9106825273483992],[112,179,71,-0.9102253885939717],[112,179,72,-0.9091339153237641],[112,179,73,-0.907693519257009],[112,179,74,-0.9064603541046381],[112,179,75,-0.905311815906316],[112,179,76,-0.904210971435532],[112,179,77,-0.9032355308299884],[112,179,78,-0.9023934541328344],[112,179,79,-0.9016211007838137],[112,180,64,-0.9233510829508305],[112,180,65,-0.9212907766923308],[112,180,66,-0.9198158886283636],[112,180,67,-0.919051325879991],[112,180,68,-0.9187748022377491],[112,180,69,-0.9186549885198474],[112,180,70,-0.9184950273483992],[112,180,71,-0.9180378885939717],[112,180,72,-0.9169464153237641],[112,180,73,-0.915506019257009],[112,180,74,-0.9142728541046381],[112,180,75,-0.913124315906316],[112,180,76,-0.912023471435532],[112,180,77,-0.9110480308299884],[112,180,78,-0.9102059541328344],[112,180,79,-0.9094336007838137],[112,181,64,-0.9311635829508305],[112,181,65,-0.9291032766923308],[112,181,66,-0.9276283886283636],[112,181,67,-0.926863825879991],[112,181,68,-0.9265873022377491],[112,181,69,-0.9264674885198474],[112,181,70,-0.9263075273483992],[112,181,71,-0.9258503885939717],[112,181,72,-0.9247589153237641],[112,181,73,-0.923318519257009],[112,181,74,-0.9220853541046381],[112,181,75,-0.920936815906316],[112,181,76,-0.919835971435532],[112,181,77,-0.9188605308299884],[112,181,78,-0.9180184541328344],[112,181,79,-0.9172461007838137],[112,182,64,-0.9389760829508305],[112,182,65,-0.9369157766923308],[112,182,66,-0.9354408886283636],[112,182,67,-0.934676325879991],[112,182,68,-0.9343998022377491],[112,182,69,-0.9342799885198474],[112,182,70,-0.9341200273483992],[112,182,71,-0.9336628885939717],[112,182,72,-0.9325714153237641],[112,182,73,-0.931131019257009],[112,182,74,-0.9298978541046381],[112,182,75,-0.928749315906316],[112,182,76,-0.927648471435532],[112,182,77,-0.9266730308299884],[112,182,78,-0.9258309541328344],[112,182,79,-0.9250586007838137],[112,183,64,-0.9467885829508305],[112,183,65,-0.9447282766923308],[112,183,66,-0.9432533886283636],[112,183,67,-0.942488825879991],[112,183,68,-0.9422123022377491],[112,183,69,-0.9420924885198474],[112,183,70,-0.9419325273483992],[112,183,71,-0.9414753885939717],[112,183,72,-0.9403839153237641],[112,183,73,-0.938943519257009],[112,183,74,-0.9377103541046381],[112,183,75,-0.936561815906316],[112,183,76,-0.935460971435532],[112,183,77,-0.9344855308299884],[112,183,78,-0.9336434541328344],[112,183,79,-0.9328711007838137],[112,184,64,-0.9546010829508305],[112,184,65,-0.9525407766923308],[112,184,66,-0.9510658886283636],[112,184,67,-0.950301325879991],[112,184,68,-0.9500248022377491],[112,184,69,-0.9499049885198474],[112,184,70,-0.9497450273483992],[112,184,71,-0.9492878885939717],[112,184,72,-0.9481964153237641],[112,184,73,-0.946756019257009],[112,184,74,-0.9455228541046381],[112,184,75,-0.944374315906316],[112,184,76,-0.943273471435532],[112,184,77,-0.9422980308299884],[112,184,78,-0.9414559541328344],[112,184,79,-0.9406836007838137],[112,185,64,-0.9624135829508305],[112,185,65,-0.9603532766923308],[112,185,66,-0.9588783886283636],[112,185,67,-0.958113825879991],[112,185,68,-0.9578373022377491],[112,185,69,-0.9577174885198474],[112,185,70,-0.9575575273483992],[112,185,71,-0.9571003885939717],[112,185,72,-0.9560089153237641],[112,185,73,-0.954568519257009],[112,185,74,-0.9533353541046381],[112,185,75,-0.952186815906316],[112,185,76,-0.951085971435532],[112,185,77,-0.9501105308299884],[112,185,78,-0.9492684541328344],[112,185,79,-0.9484961007838137],[112,186,64,-0.9702260829508305],[112,186,65,-0.9681657766923308],[112,186,66,-0.9666908886283636],[112,186,67,-0.965926325879991],[112,186,68,-0.9656498022377491],[112,186,69,-0.9655299885198474],[112,186,70,-0.9653700273483992],[112,186,71,-0.9649128885939717],[112,186,72,-0.9638214153237641],[112,186,73,-0.962381019257009],[112,186,74,-0.9611478541046381],[112,186,75,-0.959999315906316],[112,186,76,-0.958898471435532],[112,186,77,-0.9579230308299884],[112,186,78,-0.9570809541328344],[112,186,79,-0.9563086007838137],[112,187,64,-0.9780385829508305],[112,187,65,-0.9759782766923308],[112,187,66,-0.9745033886283636],[112,187,67,-0.973738825879991],[112,187,68,-0.9734623022377491],[112,187,69,-0.9733424885198474],[112,187,70,-0.9731825273483992],[112,187,71,-0.9727253885939717],[112,187,72,-0.9716339153237641],[112,187,73,-0.970193519257009],[112,187,74,-0.9689603541046381],[112,187,75,-0.967811815906316],[112,187,76,-0.966710971435532],[112,187,77,-0.9657355308299884],[112,187,78,-0.9648934541328344],[112,187,79,-0.9641211007838137],[112,188,64,-0.9858510829508305],[112,188,65,-0.9837907766923308],[112,188,66,-0.9823158886283636],[112,188,67,-0.981551325879991],[112,188,68,-0.9812748022377491],[112,188,69,-0.9811549885198474],[112,188,70,-0.9809950273483992],[112,188,71,-0.9805378885939717],[112,188,72,-0.9794464153237641],[112,188,73,-0.978006019257009],[112,188,74,-0.9767728541046381],[112,188,75,-0.975624315906316],[112,188,76,-0.974523471435532],[112,188,77,-0.9735480308299884],[112,188,78,-0.9727059541328344],[112,188,79,-0.9719336007838137],[112,189,64,-0.9936635829508305],[112,189,65,-0.9916032766923308],[112,189,66,-0.9901283886283636],[112,189,67,-0.989363825879991],[112,189,68,-0.9890873022377491],[112,189,69,-0.9889674885198474],[112,189,70,-0.9888075273483992],[112,189,71,-0.9883503885939717],[112,189,72,-0.9872589153237641],[112,189,73,-0.985818519257009],[112,189,74,-0.9845853541046381],[112,189,75,-0.983436815906316],[112,189,76,-0.982335971435532],[112,189,77,-0.9813605308299884],[112,189,78,-0.9805184541328344],[112,189,79,-0.9797461007838137],[112,190,64,-1.0014760829508305],[112,190,65,-0.9994157766923308],[112,190,66,-0.9979408886283636],[112,190,67,-0.997176325879991],[112,190,68,-0.9968998022377491],[112,190,69,-0.9967799885198474],[112,190,70,-0.9966200273483992],[112,190,71,-0.9961628885939717],[112,190,72,-0.9950714153237641],[112,190,73,-0.993631019257009],[112,190,74,-0.9923978541046381],[112,190,75,-0.991249315906316],[112,190,76,-0.990148471435532],[112,190,77,-0.9891730308299884],[112,190,78,-0.9883309541328344],[112,190,79,-0.9875586007838137],[112,191,64,-1.0092885829508305],[112,191,65,-1.0072282766923308],[112,191,66,-1.0057533886283636],[112,191,67,-1.004988825879991],[112,191,68,-1.004712302237749],[112,191,69,-1.0045924885198474],[112,191,70,-1.0044325273483992],[112,191,71,-1.0039753885939717],[112,191,72,-1.002883915323764],[112,191,73,-1.001443519257009],[112,191,74,-1.000210354104638],[112,191,75,-0.999061815906316],[112,191,76,-0.997960971435532],[112,191,77,-0.9969855308299884],[112,191,78,-0.9961434541328344],[112,191,79,-0.9953711007838137],[112,192,64,-1.0171010829508305],[112,192,65,-1.0150407766923308],[112,192,66,-1.0135658886283636],[112,192,67,-1.012801325879991],[112,192,68,-1.012524802237749],[112,192,69,-1.0124049885198474],[112,192,70,-1.0122450273483992],[112,192,71,-1.0117878885939717],[112,192,72,-1.010696415323764],[112,192,73,-1.009256019257009],[112,192,74,-1.008022854104638],[112,192,75,-1.006874315906316],[112,192,76,-1.005773471435532],[112,192,77,-1.0047980308299884],[112,192,78,-1.0039559541328344],[112,192,79,-1.0031836007838137],[112,193,64,-1.0249135829508305],[112,193,65,-1.0228532766923308],[112,193,66,-1.0213783886283636],[112,193,67,-1.020613825879991],[112,193,68,-1.020337302237749],[112,193,69,-1.0202174885198474],[112,193,70,-1.0200575273483992],[112,193,71,-1.0196003885939717],[112,193,72,-1.018508915323764],[112,193,73,-1.017068519257009],[112,193,74,-1.015835354104638],[112,193,75,-1.014686815906316],[112,193,76,-1.013585971435532],[112,193,77,-1.0126105308299884],[112,193,78,-1.0117684541328344],[112,193,79,-1.0109961007838137],[112,194,64,-1.0327260829508305],[112,194,65,-1.0306657766923308],[112,194,66,-1.0291908886283636],[112,194,67,-1.028426325879991],[112,194,68,-1.028149802237749],[112,194,69,-1.0280299885198474],[112,194,70,-1.0278700273483992],[112,194,71,-1.0274128885939717],[112,194,72,-1.026321415323764],[112,194,73,-1.024881019257009],[112,194,74,-1.023647854104638],[112,194,75,-1.022499315906316],[112,194,76,-1.021398471435532],[112,194,77,-1.0204230308299884],[112,194,78,-1.0195809541328344],[112,194,79,-1.0188086007838137],[112,195,64,-1.0405385829508305],[112,195,65,-1.0384782766923308],[112,195,66,-1.0370033886283636],[112,195,67,-1.036238825879991],[112,195,68,-1.035962302237749],[112,195,69,-1.0358424885198474],[112,195,70,-1.0356825273483992],[112,195,71,-1.0352253885939717],[112,195,72,-1.034133915323764],[112,195,73,-1.032693519257009],[112,195,74,-1.031460354104638],[112,195,75,-1.030311815906316],[112,195,76,-1.029210971435532],[112,195,77,-1.0282355308299884],[112,195,78,-1.0273934541328344],[112,195,79,-1.0266211007838137],[112,196,64,-1.0483510829508305],[112,196,65,-1.0462907766923308],[112,196,66,-1.0448158886283636],[112,196,67,-1.044051325879991],[112,196,68,-1.043774802237749],[112,196,69,-1.0436549885198474],[112,196,70,-1.0434950273483992],[112,196,71,-1.0430378885939717],[112,196,72,-1.041946415323764],[112,196,73,-1.040506019257009],[112,196,74,-1.039272854104638],[112,196,75,-1.038124315906316],[112,196,76,-1.037023471435532],[112,196,77,-1.0360480308299884],[112,196,78,-1.0352059541328344],[112,196,79,-1.0344336007838137],[112,197,64,-1.0561635829508305],[112,197,65,-1.0541032766923308],[112,197,66,-1.0526283886283636],[112,197,67,-1.051863825879991],[112,197,68,-1.051587302237749],[112,197,69,-1.0514674885198474],[112,197,70,-1.0513075273483992],[112,197,71,-1.0508503885939717],[112,197,72,-1.049758915323764],[112,197,73,-1.048318519257009],[112,197,74,-1.047085354104638],[112,197,75,-1.045936815906316],[112,197,76,-1.044835971435532],[112,197,77,-1.0438605308299884],[112,197,78,-1.0430184541328344],[112,197,79,-1.0422461007838137],[112,198,64,-1.0639760829508305],[112,198,65,-1.0619157766923308],[112,198,66,-1.0604408886283636],[112,198,67,-1.059676325879991],[112,198,68,-1.059399802237749],[112,198,69,-1.0592799885198474],[112,198,70,-1.0591200273483992],[112,198,71,-1.0586628885939717],[112,198,72,-1.057571415323764],[112,198,73,-1.056131019257009],[112,198,74,-1.054897854104638],[112,198,75,-1.053749315906316],[112,198,76,-1.052648471435532],[112,198,77,-1.0516730308299884],[112,198,78,-1.0508309541328344],[112,198,79,-1.0500586007838137],[112,199,64,-1.0717885829508305],[112,199,65,-1.0697282766923308],[112,199,66,-1.0682533886283636],[112,199,67,-1.067488825879991],[112,199,68,-1.067212302237749],[112,199,69,-1.0670924885198474],[112,199,70,-1.0669325273483992],[112,199,71,-1.0664753885939717],[112,199,72,-1.065383915323764],[112,199,73,-1.063943519257009],[112,199,74,-1.062710354104638],[112,199,75,-1.061561815906316],[112,199,76,-1.060460971435532],[112,199,77,-1.0594855308299884],[112,199,78,-1.0586434541328344],[112,199,79,-1.0578711007838137],[112,200,64,-1.0796010829508305],[112,200,65,-1.0775407766923308],[112,200,66,-1.0760658886283636],[112,200,67,-1.075301325879991],[112,200,68,-1.075024802237749],[112,200,69,-1.0749049885198474],[112,200,70,-1.0747450273483992],[112,200,71,-1.0742878885939717],[112,200,72,-1.073196415323764],[112,200,73,-1.071756019257009],[112,200,74,-1.070522854104638],[112,200,75,-1.069374315906316],[112,200,76,-1.068273471435532],[112,200,77,-1.0672980308299884],[112,200,78,-1.0664559541328344],[112,200,79,-1.0656836007838137],[112,201,64,-1.0874135829508305],[112,201,65,-1.0853532766923308],[112,201,66,-1.0838783886283636],[112,201,67,-1.083113825879991],[112,201,68,-1.082837302237749],[112,201,69,-1.0827174885198474],[112,201,70,-1.0825575273483992],[112,201,71,-1.0821003885939717],[112,201,72,-1.081008915323764],[112,201,73,-1.079568519257009],[112,201,74,-1.078335354104638],[112,201,75,-1.077186815906316],[112,201,76,-1.076085971435532],[112,201,77,-1.0751105308299884],[112,201,78,-1.0742684541328344],[112,201,79,-1.0734961007838137],[112,202,64,-1.0952260829508305],[112,202,65,-1.0931657766923308],[112,202,66,-1.0916908886283636],[112,202,67,-1.090926325879991],[112,202,68,-1.090649802237749],[112,202,69,-1.0905299885198474],[112,202,70,-1.0903700273483992],[112,202,71,-1.0899128885939717],[112,202,72,-1.088821415323764],[112,202,73,-1.087381019257009],[112,202,74,-1.086147854104638],[112,202,75,-1.084999315906316],[112,202,76,-1.083898471435532],[112,202,77,-1.0829230308299884],[112,202,78,-1.0820809541328344],[112,202,79,-1.0813086007838137],[112,203,64,-1.1030385829508305],[112,203,65,-1.1009782766923308],[112,203,66,-1.0995033886283636],[112,203,67,-1.098738825879991],[112,203,68,-1.098462302237749],[112,203,69,-1.0983424885198474],[112,203,70,-1.0981825273483992],[112,203,71,-1.0977253885939717],[112,203,72,-1.096633915323764],[112,203,73,-1.095193519257009],[112,203,74,-1.093960354104638],[112,203,75,-1.092811815906316],[112,203,76,-1.091710971435532],[112,203,77,-1.0907355308299884],[112,203,78,-1.0898934541328344],[112,203,79,-1.0891211007838137],[112,204,64,-1.1108510829508305],[112,204,65,-1.1087907766923308],[112,204,66,-1.1073158886283636],[112,204,67,-1.106551325879991],[112,204,68,-1.106274802237749],[112,204,69,-1.1061549885198474],[112,204,70,-1.1059950273483992],[112,204,71,-1.1055378885939717],[112,204,72,-1.104446415323764],[112,204,73,-1.103006019257009],[112,204,74,-1.101772854104638],[112,204,75,-1.100624315906316],[112,204,76,-1.099523471435532],[112,204,77,-1.0985480308299884],[112,204,78,-1.0977059541328344],[112,204,79,-1.0969336007838137],[112,205,64,-1.1186635829508305],[112,205,65,-1.1166032766923308],[112,205,66,-1.1151283886283636],[112,205,67,-1.114363825879991],[112,205,68,-1.114087302237749],[112,205,69,-1.1139674885198474],[112,205,70,-1.1138075273483992],[112,205,71,-1.1133503885939717],[112,205,72,-1.112258915323764],[112,205,73,-1.110818519257009],[112,205,74,-1.109585354104638],[112,205,75,-1.108436815906316],[112,205,76,-1.107335971435532],[112,205,77,-1.1063605308299884],[112,205,78,-1.1055184541328344],[112,205,79,-1.1047461007838137],[112,206,64,-1.1264760829508305],[112,206,65,-1.1244157766923308],[112,206,66,-1.1229408886283636],[112,206,67,-1.122176325879991],[112,206,68,-1.121899802237749],[112,206,69,-1.1217799885198474],[112,206,70,-1.1216200273483992],[112,206,71,-1.1211628885939717],[112,206,72,-1.120071415323764],[112,206,73,-1.118631019257009],[112,206,74,-1.117397854104638],[112,206,75,-1.116249315906316],[112,206,76,-1.115148471435532],[112,206,77,-1.1141730308299884],[112,206,78,-1.1133309541328344],[112,206,79,-1.1125586007838137],[112,207,64,-1.1342885829508305],[112,207,65,-1.1322282766923308],[112,207,66,-1.1307533886283636],[112,207,67,-1.129988825879991],[112,207,68,-1.129712302237749],[112,207,69,-1.1295924885198474],[112,207,70,-1.1294325273483992],[112,207,71,-1.1289753885939717],[112,207,72,-1.127883915323764],[112,207,73,-1.126443519257009],[112,207,74,-1.125210354104638],[112,207,75,-1.124061815906316],[112,207,76,-1.122960971435532],[112,207,77,-1.1219855308299884],[112,207,78,-1.1211434541328344],[112,207,79,-1.1203711007838137],[112,208,64,-1.1421010829508305],[112,208,65,-1.1400407766923308],[112,208,66,-1.1385658886283636],[112,208,67,-1.137801325879991],[112,208,68,-1.137524802237749],[112,208,69,-1.1374049885198474],[112,208,70,-1.1372450273483992],[112,208,71,-1.1367878885939717],[112,208,72,-1.135696415323764],[112,208,73,-1.134256019257009],[112,208,74,-1.133022854104638],[112,208,75,-1.131874315906316],[112,208,76,-1.130773471435532],[112,208,77,-1.1297980308299884],[112,208,78,-1.1289559541328344],[112,208,79,-1.1281836007838137],[112,209,64,-1.1499135829508305],[112,209,65,-1.1478532766923308],[112,209,66,-1.1463783886283636],[112,209,67,-1.145613825879991],[112,209,68,-1.145337302237749],[112,209,69,-1.1452174885198474],[112,209,70,-1.1450575273483992],[112,209,71,-1.1446003885939717],[112,209,72,-1.143508915323764],[112,209,73,-1.142068519257009],[112,209,74,-1.140835354104638],[112,209,75,-1.139686815906316],[112,209,76,-1.138585971435532],[112,209,77,-1.1376105308299884],[112,209,78,-1.1367684541328344],[112,209,79,-1.1359961007838137],[112,210,64,-1.1577260829508305],[112,210,65,-1.1556657766923308],[112,210,66,-1.1541908886283636],[112,210,67,-1.153426325879991],[112,210,68,-1.153149802237749],[112,210,69,-1.1530299885198474],[112,210,70,-1.1528700273483992],[112,210,71,-1.1524128885939717],[112,210,72,-1.151321415323764],[112,210,73,-1.149881019257009],[112,210,74,-1.148647854104638],[112,210,75,-1.147499315906316],[112,210,76,-1.146398471435532],[112,210,77,-1.1454230308299884],[112,210,78,-1.1445809541328344],[112,210,79,-1.1438086007838137],[112,211,64,-1.1655385829508305],[112,211,65,-1.1634782766923308],[112,211,66,-1.1620033886283636],[112,211,67,-1.161238825879991],[112,211,68,-1.160962302237749],[112,211,69,-1.1608424885198474],[112,211,70,-1.1606825273483992],[112,211,71,-1.1602253885939717],[112,211,72,-1.159133915323764],[112,211,73,-1.157693519257009],[112,211,74,-1.156460354104638],[112,211,75,-1.155311815906316],[112,211,76,-1.154210971435532],[112,211,77,-1.1532355308299884],[112,211,78,-1.1523934541328344],[112,211,79,-1.1516211007838137],[112,212,64,-1.1733510829508305],[112,212,65,-1.1712907766923308],[112,212,66,-1.1698158886283636],[112,212,67,-1.169051325879991],[112,212,68,-1.168774802237749],[112,212,69,-1.1686549885198474],[112,212,70,-1.1684950273483992],[112,212,71,-1.1680378885939717],[112,212,72,-1.166946415323764],[112,212,73,-1.165506019257009],[112,212,74,-1.164272854104638],[112,212,75,-1.163124315906316],[112,212,76,-1.162023471435532],[112,212,77,-1.1610480308299884],[112,212,78,-1.1602059541328344],[112,212,79,-1.1594336007838137],[112,213,64,-1.1811635829508305],[112,213,65,-1.1791032766923308],[112,213,66,-1.1776283886283636],[112,213,67,-1.176863825879991],[112,213,68,-1.176587302237749],[112,213,69,-1.1764674885198474],[112,213,70,-1.1763075273483992],[112,213,71,-1.1758503885939717],[112,213,72,-1.174758915323764],[112,213,73,-1.173318519257009],[112,213,74,-1.172085354104638],[112,213,75,-1.170936815906316],[112,213,76,-1.169835971435532],[112,213,77,-1.1688605308299884],[112,213,78,-1.1680184541328344],[112,213,79,-1.1672461007838137],[112,214,64,-1.1889760829508305],[112,214,65,-1.1869157766923308],[112,214,66,-1.1854408886283636],[112,214,67,-1.184676325879991],[112,214,68,-1.184399802237749],[112,214,69,-1.1842799885198474],[112,214,70,-1.1841200273483992],[112,214,71,-1.1836628885939717],[112,214,72,-1.182571415323764],[112,214,73,-1.181131019257009],[112,214,74,-1.179897854104638],[112,214,75,-1.178749315906316],[112,214,76,-1.177648471435532],[112,214,77,-1.1766730308299884],[112,214,78,-1.1758309541328344],[112,214,79,-1.1750586007838137],[112,215,64,-1.1967885829508305],[112,215,65,-1.1947282766923308],[112,215,66,-1.1932533886283636],[112,215,67,-1.192488825879991],[112,215,68,-1.192212302237749],[112,215,69,-1.1920924885198474],[112,215,70,-1.1919325273483992],[112,215,71,-1.1914753885939717],[112,215,72,-1.190383915323764],[112,215,73,-1.188943519257009],[112,215,74,-1.187710354104638],[112,215,75,-1.186561815906316],[112,215,76,-1.185460971435532],[112,215,77,-1.1844855308299884],[112,215,78,-1.1836434541328344],[112,215,79,-1.1828711007838137],[112,216,64,-1.2046010829508305],[112,216,65,-1.2025407766923308],[112,216,66,-1.2010658886283636],[112,216,67,-1.200301325879991],[112,216,68,-1.200024802237749],[112,216,69,-1.1999049885198474],[112,216,70,-1.1997450273483992],[112,216,71,-1.1992878885939717],[112,216,72,-1.198196415323764],[112,216,73,-1.196756019257009],[112,216,74,-1.195522854104638],[112,216,75,-1.194374315906316],[112,216,76,-1.193273471435532],[112,216,77,-1.1922980308299884],[112,216,78,-1.1914559541328344],[112,216,79,-1.1906836007838137],[112,217,64,-1.2124135829508305],[112,217,65,-1.2103532766923308],[112,217,66,-1.2088783886283636],[112,217,67,-1.208113825879991],[112,217,68,-1.207837302237749],[112,217,69,-1.2077174885198474],[112,217,70,-1.2075575273483992],[112,217,71,-1.2071003885939717],[112,217,72,-1.206008915323764],[112,217,73,-1.204568519257009],[112,217,74,-1.203335354104638],[112,217,75,-1.202186815906316],[112,217,76,-1.201085971435532],[112,217,77,-1.2001105308299884],[112,217,78,-1.1992684541328344],[112,217,79,-1.1984961007838137],[112,218,64,-1.2202260829508305],[112,218,65,-1.2181657766923308],[112,218,66,-1.2166908886283636],[112,218,67,-1.215926325879991],[112,218,68,-1.215649802237749],[112,218,69,-1.2155299885198474],[112,218,70,-1.2153700273483992],[112,218,71,-1.2149128885939717],[112,218,72,-1.213821415323764],[112,218,73,-1.212381019257009],[112,218,74,-1.211147854104638],[112,218,75,-1.209999315906316],[112,218,76,-1.208898471435532],[112,218,77,-1.2079230308299884],[112,218,78,-1.2070809541328344],[112,218,79,-1.2063086007838137],[112,219,64,-1.2280385829508305],[112,219,65,-1.2259782766923308],[112,219,66,-1.2245033886283636],[112,219,67,-1.223738825879991],[112,219,68,-1.223462302237749],[112,219,69,-1.2233424885198474],[112,219,70,-1.2231825273483992],[112,219,71,-1.2227253885939717],[112,219,72,-1.221633915323764],[112,219,73,-1.220193519257009],[112,219,74,-1.218960354104638],[112,219,75,-1.217811815906316],[112,219,76,-1.216710971435532],[112,219,77,-1.2157355308299884],[112,219,78,-1.2148934541328344],[112,219,79,-1.2141211007838137],[112,220,64,-1.2358510829508305],[112,220,65,-1.2337907766923308],[112,220,66,-1.2323158886283636],[112,220,67,-1.231551325879991],[112,220,68,-1.231274802237749],[112,220,69,-1.2311549885198474],[112,220,70,-1.2309950273483992],[112,220,71,-1.2305378885939717],[112,220,72,-1.229446415323764],[112,220,73,-1.228006019257009],[112,220,74,-1.226772854104638],[112,220,75,-1.225624315906316],[112,220,76,-1.224523471435532],[112,220,77,-1.2235480308299884],[112,220,78,-1.2227059541328344],[112,220,79,-1.2219336007838137],[112,221,64,-1.2436635829508305],[112,221,65,-1.2416032766923308],[112,221,66,-1.2401283886283636],[112,221,67,-1.239363825879991],[112,221,68,-1.239087302237749],[112,221,69,-1.2389674885198474],[112,221,70,-1.2388075273483992],[112,221,71,-1.2383503885939717],[112,221,72,-1.237258915323764],[112,221,73,-1.235818519257009],[112,221,74,-1.234585354104638],[112,221,75,-1.233436815906316],[112,221,76,-1.232335971435532],[112,221,77,-1.2313605308299884],[112,221,78,-1.2305184541328344],[112,221,79,-1.2297461007838137],[112,222,64,-1.2514760829508305],[112,222,65,-1.2494157766923308],[112,222,66,-1.2479408886283636],[112,222,67,-1.247176325879991],[112,222,68,-1.246899802237749],[112,222,69,-1.2467799885198474],[112,222,70,-1.2466200273483992],[112,222,71,-1.2461628885939717],[112,222,72,-1.245071415323764],[112,222,73,-1.243631019257009],[112,222,74,-1.242397854104638],[112,222,75,-1.241249315906316],[112,222,76,-1.240148471435532],[112,222,77,-1.2391730308299884],[112,222,78,-1.2383309541328344],[112,222,79,-1.2375586007838137],[112,223,64,-1.2592885829508305],[112,223,65,-1.2572282766923308],[112,223,66,-1.2557533886283636],[112,223,67,-1.254988825879991],[112,223,68,-1.254712302237749],[112,223,69,-1.2545924885198474],[112,223,70,-1.2544325273483992],[112,223,71,-1.2539753885939717],[112,223,72,-1.252883915323764],[112,223,73,-1.251443519257009],[112,223,74,-1.250210354104638],[112,223,75,-1.249061815906316],[112,223,76,-1.247960971435532],[112,223,77,-1.2469855308299884],[112,223,78,-1.2461434541328344],[112,223,79,-1.2453711007838137],[112,224,64,-1.2671010829508305],[112,224,65,-1.2650407766923308],[112,224,66,-1.2635658886283636],[112,224,67,-1.262801325879991],[112,224,68,-1.262524802237749],[112,224,69,-1.2624049885198474],[112,224,70,-1.2622450273483992],[112,224,71,-1.2617878885939717],[112,224,72,-1.260696415323764],[112,224,73,-1.259256019257009],[112,224,74,-1.258022854104638],[112,224,75,-1.256874315906316],[112,224,76,-1.255773471435532],[112,224,77,-1.2547980308299884],[112,224,78,-1.2539559541328344],[112,224,79,-1.2531836007838137],[112,225,64,-1.2749135829508305],[112,225,65,-1.2728532766923308],[112,225,66,-1.2713783886283636],[112,225,67,-1.270613825879991],[112,225,68,-1.270337302237749],[112,225,69,-1.2702174885198474],[112,225,70,-1.2700575273483992],[112,225,71,-1.2696003885939717],[112,225,72,-1.268508915323764],[112,225,73,-1.267068519257009],[112,225,74,-1.265835354104638],[112,225,75,-1.264686815906316],[112,225,76,-1.263585971435532],[112,225,77,-1.2626105308299884],[112,225,78,-1.2617684541328344],[112,225,79,-1.2609961007838137],[112,226,64,-1.2827260829508305],[112,226,65,-1.2806657766923308],[112,226,66,-1.2791908886283636],[112,226,67,-1.278426325879991],[112,226,68,-1.278149802237749],[112,226,69,-1.2780299885198474],[112,226,70,-1.2778700273483992],[112,226,71,-1.2774128885939717],[112,226,72,-1.276321415323764],[112,226,73,-1.274881019257009],[112,226,74,-1.273647854104638],[112,226,75,-1.272499315906316],[112,226,76,-1.271398471435532],[112,226,77,-1.2704230308299884],[112,226,78,-1.2695809541328344],[112,226,79,-1.2688086007838137],[112,227,64,-1.2905385829508305],[112,227,65,-1.2884782766923308],[112,227,66,-1.2870033886283636],[112,227,67,-1.286238825879991],[112,227,68,-1.285962302237749],[112,227,69,-1.2858424885198474],[112,227,70,-1.2856825273483992],[112,227,71,-1.2852253885939717],[112,227,72,-1.284133915323764],[112,227,73,-1.282693519257009],[112,227,74,-1.281460354104638],[112,227,75,-1.280311815906316],[112,227,76,-1.279210971435532],[112,227,77,-1.2782355308299884],[112,227,78,-1.2773934541328344],[112,227,79,-1.2766211007838137],[112,228,64,-1.2983510829508305],[112,228,65,-1.2962907766923308],[112,228,66,-1.2948158886283636],[112,228,67,-1.294051325879991],[112,228,68,-1.293774802237749],[112,228,69,-1.2936549885198474],[112,228,70,-1.2934950273483992],[112,228,71,-1.2930378885939717],[112,228,72,-1.291946415323764],[112,228,73,-1.290506019257009],[112,228,74,-1.289272854104638],[112,228,75,-1.288124315906316],[112,228,76,-1.287023471435532],[112,228,77,-1.2860480308299884],[112,228,78,-1.2852059541328344],[112,228,79,-1.2844336007838137],[112,229,64,-1.3061635829508305],[112,229,65,-1.3041032766923308],[112,229,66,-1.3026283886283636],[112,229,67,-1.301863825879991],[112,229,68,-1.301587302237749],[112,229,69,-1.3014674885198474],[112,229,70,-1.3013075273483992],[112,229,71,-1.3008503885939717],[112,229,72,-1.299758915323764],[112,229,73,-1.298318519257009],[112,229,74,-1.297085354104638],[112,229,75,-1.295936815906316],[112,229,76,-1.294835971435532],[112,229,77,-1.2938605308299884],[112,229,78,-1.2930184541328344],[112,229,79,-1.2922461007838137],[112,230,64,-1.3139760829508305],[112,230,65,-1.3119157766923308],[112,230,66,-1.3104408886283636],[112,230,67,-1.309676325879991],[112,230,68,-1.309399802237749],[112,230,69,-1.3092799885198474],[112,230,70,-1.3091200273483992],[112,230,71,-1.3086628885939717],[112,230,72,-1.307571415323764],[112,230,73,-1.306131019257009],[112,230,74,-1.304897854104638],[112,230,75,-1.303749315906316],[112,230,76,-1.302648471435532],[112,230,77,-1.3016730308299884],[112,230,78,-1.3008309541328344],[112,230,79,-1.3000586007838137],[112,231,64,-1.3217885829508305],[112,231,65,-1.3197282766923308],[112,231,66,-1.3182533886283636],[112,231,67,-1.317488825879991],[112,231,68,-1.317212302237749],[112,231,69,-1.3170924885198474],[112,231,70,-1.3169325273483992],[112,231,71,-1.3164753885939717],[112,231,72,-1.315383915323764],[112,231,73,-1.313943519257009],[112,231,74,-1.312710354104638],[112,231,75,-1.311561815906316],[112,231,76,-1.310460971435532],[112,231,77,-1.3094855308299884],[112,231,78,-1.3086434541328344],[112,231,79,-1.3078711007838137],[112,232,64,-1.3296010829508305],[112,232,65,-1.3275407766923308],[112,232,66,-1.3260658886283636],[112,232,67,-1.325301325879991],[112,232,68,-1.325024802237749],[112,232,69,-1.3249049885198474],[112,232,70,-1.3247450273483992],[112,232,71,-1.3242878885939717],[112,232,72,-1.323196415323764],[112,232,73,-1.321756019257009],[112,232,74,-1.320522854104638],[112,232,75,-1.319374315906316],[112,232,76,-1.318273471435532],[112,232,77,-1.3172980308299884],[112,232,78,-1.3164559541328344],[112,232,79,-1.3156836007838137],[112,233,64,-1.3374135829508305],[112,233,65,-1.3353532766923308],[112,233,66,-1.3338783886283636],[112,233,67,-1.333113825879991],[112,233,68,-1.332837302237749],[112,233,69,-1.3327174885198474],[112,233,70,-1.3325575273483992],[112,233,71,-1.3321003885939717],[112,233,72,-1.331008915323764],[112,233,73,-1.329568519257009],[112,233,74,-1.328335354104638],[112,233,75,-1.327186815906316],[112,233,76,-1.326085971435532],[112,233,77,-1.3251105308299884],[112,233,78,-1.3242684541328344],[112,233,79,-1.3234961007838137],[112,234,64,-1.3452260829508305],[112,234,65,-1.3431657766923308],[112,234,66,-1.3416908886283636],[112,234,67,-1.340926325879991],[112,234,68,-1.340649802237749],[112,234,69,-1.3405299885198474],[112,234,70,-1.3403700273483992],[112,234,71,-1.3399128885939717],[112,234,72,-1.338821415323764],[112,234,73,-1.337381019257009],[112,234,74,-1.336147854104638],[112,234,75,-1.334999315906316],[112,234,76,-1.333898471435532],[112,234,77,-1.3329230308299884],[112,234,78,-1.3320809541328344],[112,234,79,-1.3313086007838137],[112,235,64,-1.3530385829508305],[112,235,65,-1.3509782766923308],[112,235,66,-1.3495033886283636],[112,235,67,-1.348738825879991],[112,235,68,-1.348462302237749],[112,235,69,-1.3483424885198474],[112,235,70,-1.3481825273483992],[112,235,71,-1.3477253885939717],[112,235,72,-1.346633915323764],[112,235,73,-1.345193519257009],[112,235,74,-1.343960354104638],[112,235,75,-1.342811815906316],[112,235,76,-1.341710971435532],[112,235,77,-1.3407355308299884],[112,235,78,-1.3398934541328344],[112,235,79,-1.3391211007838137],[112,236,64,-1.3608510829508305],[112,236,65,-1.3587907766923308],[112,236,66,-1.3573158886283636],[112,236,67,-1.356551325879991],[112,236,68,-1.356274802237749],[112,236,69,-1.3561549885198474],[112,236,70,-1.3559950273483992],[112,236,71,-1.3555378885939717],[112,236,72,-1.354446415323764],[112,236,73,-1.353006019257009],[112,236,74,-1.351772854104638],[112,236,75,-1.350624315906316],[112,236,76,-1.349523471435532],[112,236,77,-1.3485480308299884],[112,236,78,-1.3477059541328344],[112,236,79,-1.3469336007838137],[112,237,64,-1.3686635829508305],[112,237,65,-1.3666032766923308],[112,237,66,-1.3651283886283636],[112,237,67,-1.364363825879991],[112,237,68,-1.364087302237749],[112,237,69,-1.3639674885198474],[112,237,70,-1.3638075273483992],[112,237,71,-1.3633503885939717],[112,237,72,-1.362258915323764],[112,237,73,-1.360818519257009],[112,237,74,-1.359585354104638],[112,237,75,-1.358436815906316],[112,237,76,-1.357335971435532],[112,237,77,-1.3563605308299884],[112,237,78,-1.3555184541328344],[112,237,79,-1.3547461007838137],[112,238,64,-1.3764760829508305],[112,238,65,-1.3744157766923308],[112,238,66,-1.3729408886283636],[112,238,67,-1.372176325879991],[112,238,68,-1.371899802237749],[112,238,69,-1.3717799885198474],[112,238,70,-1.3716200273483992],[112,238,71,-1.3711628885939717],[112,238,72,-1.370071415323764],[112,238,73,-1.368631019257009],[112,238,74,-1.367397854104638],[112,238,75,-1.366249315906316],[112,238,76,-1.365148471435532],[112,238,77,-1.3641730308299884],[112,238,78,-1.3633309541328344],[112,238,79,-1.3625586007838137],[112,239,64,-1.3842885829508305],[112,239,65,-1.3822282766923308],[112,239,66,-1.3807533886283636],[112,239,67,-1.379988825879991],[112,239,68,-1.379712302237749],[112,239,69,-1.3795924885198474],[112,239,70,-1.3794325273483992],[112,239,71,-1.3789753885939717],[112,239,72,-1.377883915323764],[112,239,73,-1.376443519257009],[112,239,74,-1.375210354104638],[112,239,75,-1.374061815906316],[112,239,76,-1.372960971435532],[112,239,77,-1.3719855308299884],[112,239,78,-1.3711434541328344],[112,239,79,-1.3703711007838137],[112,240,64,-1.3921010829508305],[112,240,65,-1.3900407766923308],[112,240,66,-1.3885658886283636],[112,240,67,-1.387801325879991],[112,240,68,-1.387524802237749],[112,240,69,-1.3874049885198474],[112,240,70,-1.3872450273483992],[112,240,71,-1.3867878885939717],[112,240,72,-1.385696415323764],[112,240,73,-1.384256019257009],[112,240,74,-1.383022854104638],[112,240,75,-1.381874315906316],[112,240,76,-1.380773471435532],[112,240,77,-1.3797980308299884],[112,240,78,-1.3789559541328344],[112,240,79,-1.3781836007838137],[112,241,64,-1.3999135829508305],[112,241,65,-1.3978532766923308],[112,241,66,-1.3963783886283636],[112,241,67,-1.395613825879991],[112,241,68,-1.395337302237749],[112,241,69,-1.3952174885198474],[112,241,70,-1.3950575273483992],[112,241,71,-1.3946003885939717],[112,241,72,-1.393508915323764],[112,241,73,-1.392068519257009],[112,241,74,-1.390835354104638],[112,241,75,-1.389686815906316],[112,241,76,-1.388585971435532],[112,241,77,-1.3876105308299884],[112,241,78,-1.3867684541328344],[112,241,79,-1.3859961007838137],[112,242,64,-1.4077260829508305],[112,242,65,-1.4056657766923308],[112,242,66,-1.4041908886283636],[112,242,67,-1.403426325879991],[112,242,68,-1.403149802237749],[112,242,69,-1.4030299885198474],[112,242,70,-1.4028700273483992],[112,242,71,-1.4024128885939717],[112,242,72,-1.401321415323764],[112,242,73,-1.399881019257009],[112,242,74,-1.398647854104638],[112,242,75,-1.397499315906316],[112,242,76,-1.396398471435532],[112,242,77,-1.3954230308299884],[112,242,78,-1.3945809541328344],[112,242,79,-1.3938086007838137],[112,243,64,-1.4155385829508305],[112,243,65,-1.4134782766923308],[112,243,66,-1.4120033886283636],[112,243,67,-1.411238825879991],[112,243,68,-1.410962302237749],[112,243,69,-1.4108424885198474],[112,243,70,-1.4106825273483992],[112,243,71,-1.4102253885939717],[112,243,72,-1.409133915323764],[112,243,73,-1.407693519257009],[112,243,74,-1.406460354104638],[112,243,75,-1.405311815906316],[112,243,76,-1.404210971435532],[112,243,77,-1.4032355308299884],[112,243,78,-1.4023934541328344],[112,243,79,-1.4016211007838137],[112,244,64,-1.4233510829508305],[112,244,65,-1.4212907766923308],[112,244,66,-1.4198158886283636],[112,244,67,-1.419051325879991],[112,244,68,-1.418774802237749],[112,244,69,-1.4186549885198474],[112,244,70,-1.4184950273483992],[112,244,71,-1.4180378885939717],[112,244,72,-1.416946415323764],[112,244,73,-1.415506019257009],[112,244,74,-1.414272854104638],[112,244,75,-1.413124315906316],[112,244,76,-1.412023471435532],[112,244,77,-1.4110480308299884],[112,244,78,-1.4102059541328344],[112,244,79,-1.4094336007838137],[112,245,64,-1.4311635829508305],[112,245,65,-1.4291032766923308],[112,245,66,-1.4276283886283636],[112,245,67,-1.426863825879991],[112,245,68,-1.426587302237749],[112,245,69,-1.4264674885198474],[112,245,70,-1.4263075273483992],[112,245,71,-1.4258503885939717],[112,245,72,-1.424758915323764],[112,245,73,-1.423318519257009],[112,245,74,-1.422085354104638],[112,245,75,-1.420936815906316],[112,245,76,-1.419835971435532],[112,245,77,-1.4188605308299884],[112,245,78,-1.4180184541328344],[112,245,79,-1.4172461007838137],[112,246,64,-1.4389760829508305],[112,246,65,-1.4369157766923308],[112,246,66,-1.4354408886283636],[112,246,67,-1.434676325879991],[112,246,68,-1.434399802237749],[112,246,69,-1.4342799885198474],[112,246,70,-1.4341200273483992],[112,246,71,-1.4336628885939717],[112,246,72,-1.432571415323764],[112,246,73,-1.431131019257009],[112,246,74,-1.429897854104638],[112,246,75,-1.428749315906316],[112,246,76,-1.427648471435532],[112,246,77,-1.4266730308299884],[112,246,78,-1.4258309541328344],[112,246,79,-1.4250586007838137],[112,247,64,-1.4467885829508305],[112,247,65,-1.4447282766923308],[112,247,66,-1.4432533886283636],[112,247,67,-1.442488825879991],[112,247,68,-1.442212302237749],[112,247,69,-1.4420924885198474],[112,247,70,-1.4419325273483992],[112,247,71,-1.4414753885939717],[112,247,72,-1.440383915323764],[112,247,73,-1.438943519257009],[112,247,74,-1.437710354104638],[112,247,75,-1.436561815906316],[112,247,76,-1.435460971435532],[112,247,77,-1.4344855308299884],[112,247,78,-1.4336434541328344],[112,247,79,-1.4328711007838137],[112,248,64,-1.4546010829508305],[112,248,65,-1.4525407766923308],[112,248,66,-1.4510658886283636],[112,248,67,-1.450301325879991],[112,248,68,-1.450024802237749],[112,248,69,-1.4499049885198474],[112,248,70,-1.4497450273483992],[112,248,71,-1.4492878885939717],[112,248,72,-1.448196415323764],[112,248,73,-1.446756019257009],[112,248,74,-1.445522854104638],[112,248,75,-1.444374315906316],[112,248,76,-1.443273471435532],[112,248,77,-1.4422980308299884],[112,248,78,-1.4414559541328344],[112,248,79,-1.4406836007838137],[112,249,64,-1.4624135829508305],[112,249,65,-1.4603532766923308],[112,249,66,-1.4588783886283636],[112,249,67,-1.458113825879991],[112,249,68,-1.457837302237749],[112,249,69,-1.4577174885198474],[112,249,70,-1.4575575273483992],[112,249,71,-1.4571003885939717],[112,249,72,-1.456008915323764],[112,249,73,-1.454568519257009],[112,249,74,-1.453335354104638],[112,249,75,-1.452186815906316],[112,249,76,-1.451085971435532],[112,249,77,-1.4501105308299884],[112,249,78,-1.4492684541328344],[112,249,79,-1.4484961007838137],[112,250,64,-1.4702260829508305],[112,250,65,-1.4681657766923308],[112,250,66,-1.4666908886283636],[112,250,67,-1.465926325879991],[112,250,68,-1.465649802237749],[112,250,69,-1.4655299885198474],[112,250,70,-1.4653700273483992],[112,250,71,-1.4649128885939717],[112,250,72,-1.463821415323764],[112,250,73,-1.462381019257009],[112,250,74,-1.461147854104638],[112,250,75,-1.459999315906316],[112,250,76,-1.458898471435532],[112,250,77,-1.4579230308299884],[112,250,78,-1.4570809541328344],[112,250,79,-1.4563086007838137],[112,251,64,-1.4780385829508305],[112,251,65,-1.4759782766923308],[112,251,66,-1.4745033886283636],[112,251,67,-1.473738825879991],[112,251,68,-1.473462302237749],[112,251,69,-1.4733424885198474],[112,251,70,-1.4731825273483992],[112,251,71,-1.4727253885939717],[112,251,72,-1.471633915323764],[112,251,73,-1.470193519257009],[112,251,74,-1.468960354104638],[112,251,75,-1.467811815906316],[112,251,76,-1.466710971435532],[112,251,77,-1.4657355308299884],[112,251,78,-1.4648934541328344],[112,251,79,-1.4641211007838137],[112,252,64,-1.4858510829508305],[112,252,65,-1.4837907766923308],[112,252,66,-1.4823158886283636],[112,252,67,-1.481551325879991],[112,252,68,-1.481274802237749],[112,252,69,-1.4811549885198474],[112,252,70,-1.4809950273483992],[112,252,71,-1.4805378885939717],[112,252,72,-1.479446415323764],[112,252,73,-1.478006019257009],[112,252,74,-1.476772854104638],[112,252,75,-1.475624315906316],[112,252,76,-1.474523471435532],[112,252,77,-1.4735480308299884],[112,252,78,-1.4727059541328344],[112,252,79,-1.4719336007838137],[112,253,64,-1.4936635829508305],[112,253,65,-1.4916032766923308],[112,253,66,-1.4901283886283636],[112,253,67,-1.489363825879991],[112,253,68,-1.489087302237749],[112,253,69,-1.4889674885198474],[112,253,70,-1.4888075273483992],[112,253,71,-1.4883503885939717],[112,253,72,-1.487258915323764],[112,253,73,-1.485818519257009],[112,253,74,-1.484585354104638],[112,253,75,-1.483436815906316],[112,253,76,-1.482335971435532],[112,253,77,-1.4813605308299884],[112,253,78,-1.4805184541328344],[112,253,79,-1.4797461007838137],[112,254,64,-1.5014760829508305],[112,254,65,-1.4994157766923308],[112,254,66,-1.4979408886283636],[112,254,67,-1.497176325879991],[112,254,68,-1.496899802237749],[112,254,69,-1.4967799885198474],[112,254,70,-1.4966200273483992],[112,254,71,-1.4961628885939717],[112,254,72,-1.495071415323764],[112,254,73,-1.493631019257009],[112,254,74,-1.492397854104638],[112,254,75,-1.491249315906316],[112,254,76,-1.490148471435532],[112,254,77,-1.4891730308299884],[112,254,78,-1.4883309541328344],[112,254,79,-1.4875586007838137],[112,255,64,-1.5092885829508305],[112,255,65,-1.5072282766923308],[112,255,66,-1.5057533886283636],[112,255,67,-1.504988825879991],[112,255,68,-1.504712302237749],[112,255,69,-1.5045924885198474],[112,255,70,-1.5044325273483992],[112,255,71,-1.5039753885939717],[112,255,72,-1.502883915323764],[112,255,73,-1.501443519257009],[112,255,74,-1.500210354104638],[112,255,75,-1.499061815906316],[112,255,76,-1.497960971435532],[112,255,77,-1.4969855308299884],[112,255,78,-1.4961434541328344],[112,255,79,-1.4953711007838137],[112,256,64,-1.5171010829508305],[112,256,65,-1.5150407766923308],[112,256,66,-1.5135658886283636],[112,256,67,-1.512801325879991],[112,256,68,-1.512524802237749],[112,256,69,-1.5124049885198474],[112,256,70,-1.5122450273483992],[112,256,71,-1.5117878885939717],[112,256,72,-1.510696415323764],[112,256,73,-1.509256019257009],[112,256,74,-1.508022854104638],[112,256,75,-1.506874315906316],[112,256,76,-1.505773471435532],[112,256,77,-1.5047980308299884],[112,256,78,-1.5039559541328344],[112,256,79,-1.5031836007838137],[112,257,64,-1.5249135829508305],[112,257,65,-1.5228532766923308],[112,257,66,-1.5213783886283636],[112,257,67,-1.520613825879991],[112,257,68,-1.520337302237749],[112,257,69,-1.5202174885198474],[112,257,70,-1.5200575273483992],[112,257,71,-1.5196003885939717],[112,257,72,-1.518508915323764],[112,257,73,-1.517068519257009],[112,257,74,-1.515835354104638],[112,257,75,-1.514686815906316],[112,257,76,-1.513585971435532],[112,257,77,-1.5126105308299884],[112,257,78,-1.5117684541328344],[112,257,79,-1.5109961007838137],[112,258,64,-1.5327260829508305],[112,258,65,-1.5306657766923308],[112,258,66,-1.5291908886283636],[112,258,67,-1.528426325879991],[112,258,68,-1.528149802237749],[112,258,69,-1.5280299885198474],[112,258,70,-1.5278700273483992],[112,258,71,-1.5274128885939717],[112,258,72,-1.526321415323764],[112,258,73,-1.524881019257009],[112,258,74,-1.523647854104638],[112,258,75,-1.522499315906316],[112,258,76,-1.521398471435532],[112,258,77,-1.5204230308299884],[112,258,78,-1.5195809541328344],[112,258,79,-1.5188086007838137],[112,259,64,-1.5405385829508305],[112,259,65,-1.5384782766923308],[112,259,66,-1.5370033886283636],[112,259,67,-1.536238825879991],[112,259,68,-1.535962302237749],[112,259,69,-1.5358424885198474],[112,259,70,-1.5356825273483992],[112,259,71,-1.5352253885939717],[112,259,72,-1.534133915323764],[112,259,73,-1.532693519257009],[112,259,74,-1.531460354104638],[112,259,75,-1.530311815906316],[112,259,76,-1.529210971435532],[112,259,77,-1.5282355308299884],[112,259,78,-1.5273934541328344],[112,259,79,-1.5266211007838137],[112,260,64,-1.5483510829508305],[112,260,65,-1.5462907766923308],[112,260,66,-1.5448158886283636],[112,260,67,-1.544051325879991],[112,260,68,-1.543774802237749],[112,260,69,-1.5436549885198474],[112,260,70,-1.5434950273483992],[112,260,71,-1.5430378885939717],[112,260,72,-1.541946415323764],[112,260,73,-1.540506019257009],[112,260,74,-1.539272854104638],[112,260,75,-1.538124315906316],[112,260,76,-1.537023471435532],[112,260,77,-1.5360480308299884],[112,260,78,-1.5352059541328344],[112,260,79,-1.5344336007838137],[112,261,64,-1.5561635829508305],[112,261,65,-1.5541032766923308],[112,261,66,-1.5526283886283636],[112,261,67,-1.551863825879991],[112,261,68,-1.551587302237749],[112,261,69,-1.5514674885198474],[112,261,70,-1.5513075273483992],[112,261,71,-1.5508503885939717],[112,261,72,-1.549758915323764],[112,261,73,-1.548318519257009],[112,261,74,-1.547085354104638],[112,261,75,-1.545936815906316],[112,261,76,-1.544835971435532],[112,261,77,-1.5438605308299884],[112,261,78,-1.5430184541328344],[112,261,79,-1.5422461007838137],[112,262,64,-1.5639760829508305],[112,262,65,-1.5619157766923308],[112,262,66,-1.5604408886283636],[112,262,67,-1.559676325879991],[112,262,68,-1.559399802237749],[112,262,69,-1.5592799885198474],[112,262,70,-1.5591200273483992],[112,262,71,-1.5586628885939717],[112,262,72,-1.557571415323764],[112,262,73,-1.556131019257009],[112,262,74,-1.554897854104638],[112,262,75,-1.553749315906316],[112,262,76,-1.552648471435532],[112,262,77,-1.5516730308299884],[112,262,78,-1.5508309541328344],[112,262,79,-1.5500586007838137],[112,263,64,-1.5717885829508305],[112,263,65,-1.5697282766923308],[112,263,66,-1.5682533886283636],[112,263,67,-1.567488825879991],[112,263,68,-1.567212302237749],[112,263,69,-1.5670924885198474],[112,263,70,-1.5669325273483992],[112,263,71,-1.5664753885939717],[112,263,72,-1.565383915323764],[112,263,73,-1.563943519257009],[112,263,74,-1.562710354104638],[112,263,75,-1.561561815906316],[112,263,76,-1.560460971435532],[112,263,77,-1.5594855308299884],[112,263,78,-1.5586434541328344],[112,263,79,-1.5578711007838137],[112,264,64,-1.5796010829508305],[112,264,65,-1.5775407766923308],[112,264,66,-1.5760658886283636],[112,264,67,-1.575301325879991],[112,264,68,-1.575024802237749],[112,264,69,-1.5749049885198474],[112,264,70,-1.5747450273483992],[112,264,71,-1.5742878885939717],[112,264,72,-1.573196415323764],[112,264,73,-1.571756019257009],[112,264,74,-1.570522854104638],[112,264,75,-1.569374315906316],[112,264,76,-1.568273471435532],[112,264,77,-1.5672980308299884],[112,264,78,-1.5664559541328344],[112,264,79,-1.5656836007838137],[112,265,64,-1.5874135829508305],[112,265,65,-1.5853532766923308],[112,265,66,-1.5838783886283636],[112,265,67,-1.583113825879991],[112,265,68,-1.582837302237749],[112,265,69,-1.5827174885198474],[112,265,70,-1.5825575273483992],[112,265,71,-1.5821003885939717],[112,265,72,-1.581008915323764],[112,265,73,-1.579568519257009],[112,265,74,-1.578335354104638],[112,265,75,-1.577186815906316],[112,265,76,-1.576085971435532],[112,265,77,-1.5751105308299884],[112,265,78,-1.5742684541328344],[112,265,79,-1.5734961007838137],[112,266,64,-1.5952260829508305],[112,266,65,-1.5931657766923308],[112,266,66,-1.5916908886283636],[112,266,67,-1.590926325879991],[112,266,68,-1.590649802237749],[112,266,69,-1.5905299885198474],[112,266,70,-1.5903700273483992],[112,266,71,-1.5899128885939717],[112,266,72,-1.588821415323764],[112,266,73,-1.587381019257009],[112,266,74,-1.586147854104638],[112,266,75,-1.584999315906316],[112,266,76,-1.583898471435532],[112,266,77,-1.5829230308299884],[112,266,78,-1.5820809541328344],[112,266,79,-1.5813086007838137],[112,267,64,-1.6030385829508305],[112,267,65,-1.6009782766923308],[112,267,66,-1.5995033886283636],[112,267,67,-1.598738825879991],[112,267,68,-1.598462302237749],[112,267,69,-1.5983424885198474],[112,267,70,-1.5981825273483992],[112,267,71,-1.5977253885939717],[112,267,72,-1.596633915323764],[112,267,73,-1.595193519257009],[112,267,74,-1.593960354104638],[112,267,75,-1.592811815906316],[112,267,76,-1.591710971435532],[112,267,77,-1.5907355308299884],[112,267,78,-1.5898934541328344],[112,267,79,-1.5891211007838137],[112,268,64,-1.6108510829508305],[112,268,65,-1.6087907766923308],[112,268,66,-1.6073158886283636],[112,268,67,-1.606551325879991],[112,268,68,-1.606274802237749],[112,268,69,-1.6061549885198474],[112,268,70,-1.6059950273483992],[112,268,71,-1.6055378885939717],[112,268,72,-1.604446415323764],[112,268,73,-1.603006019257009],[112,268,74,-1.601772854104638],[112,268,75,-1.600624315906316],[112,268,76,-1.599523471435532],[112,268,77,-1.5985480308299884],[112,268,78,-1.5977059541328344],[112,268,79,-1.5969336007838137],[112,269,64,-1.6186635829508305],[112,269,65,-1.6166032766923308],[112,269,66,-1.6151283886283636],[112,269,67,-1.614363825879991],[112,269,68,-1.614087302237749],[112,269,69,-1.6139674885198474],[112,269,70,-1.6138075273483992],[112,269,71,-1.6133503885939717],[112,269,72,-1.612258915323764],[112,269,73,-1.610818519257009],[112,269,74,-1.609585354104638],[112,269,75,-1.608436815906316],[112,269,76,-1.607335971435532],[112,269,77,-1.6063605308299884],[112,269,78,-1.6055184541328344],[112,269,79,-1.6047461007838137],[112,270,64,-1.6264760829508305],[112,270,65,-1.6244157766923308],[112,270,66,-1.6229408886283636],[112,270,67,-1.622176325879991],[112,270,68,-1.621899802237749],[112,270,69,-1.6217799885198474],[112,270,70,-1.6216200273483992],[112,270,71,-1.6211628885939717],[112,270,72,-1.620071415323764],[112,270,73,-1.618631019257009],[112,270,74,-1.617397854104638],[112,270,75,-1.616249315906316],[112,270,76,-1.615148471435532],[112,270,77,-1.6141730308299884],[112,270,78,-1.6133309541328344],[112,270,79,-1.6125586007838137],[112,271,64,-1.6342885829508305],[112,271,65,-1.6322282766923308],[112,271,66,-1.6307533886283636],[112,271,67,-1.629988825879991],[112,271,68,-1.629712302237749],[112,271,69,-1.6295924885198474],[112,271,70,-1.6294325273483992],[112,271,71,-1.6289753885939717],[112,271,72,-1.627883915323764],[112,271,73,-1.626443519257009],[112,271,74,-1.625210354104638],[112,271,75,-1.624061815906316],[112,271,76,-1.622960971435532],[112,271,77,-1.6219855308299884],[112,271,78,-1.6211434541328344],[112,271,79,-1.6203711007838137],[112,272,64,-1.6421010829508305],[112,272,65,-1.6400407766923308],[112,272,66,-1.6385658886283636],[112,272,67,-1.637801325879991],[112,272,68,-1.637524802237749],[112,272,69,-1.6374049885198474],[112,272,70,-1.6372450273483992],[112,272,71,-1.6367878885939717],[112,272,72,-1.635696415323764],[112,272,73,-1.634256019257009],[112,272,74,-1.633022854104638],[112,272,75,-1.631874315906316],[112,272,76,-1.630773471435532],[112,272,77,-1.6297980308299884],[112,272,78,-1.6289559541328344],[112,272,79,-1.6281836007838137],[112,273,64,-1.6499135829508305],[112,273,65,-1.6478532766923308],[112,273,66,-1.6463783886283636],[112,273,67,-1.645613825879991],[112,273,68,-1.645337302237749],[112,273,69,-1.6452174885198474],[112,273,70,-1.6450575273483992],[112,273,71,-1.6446003885939717],[112,273,72,-1.643508915323764],[112,273,73,-1.642068519257009],[112,273,74,-1.640835354104638],[112,273,75,-1.639686815906316],[112,273,76,-1.638585971435532],[112,273,77,-1.6376105308299884],[112,273,78,-1.6367684541328344],[112,273,79,-1.6359961007838137],[112,274,64,-1.6577260829508305],[112,274,65,-1.6556657766923308],[112,274,66,-1.6541908886283636],[112,274,67,-1.653426325879991],[112,274,68,-1.653149802237749],[112,274,69,-1.6530299885198474],[112,274,70,-1.6528700273483992],[112,274,71,-1.6524128885939717],[112,274,72,-1.651321415323764],[112,274,73,-1.649881019257009],[112,274,74,-1.648647854104638],[112,274,75,-1.647499315906316],[112,274,76,-1.646398471435532],[112,274,77,-1.6454230308299884],[112,274,78,-1.6445809541328344],[112,274,79,-1.6438086007838137],[112,275,64,-1.6655385829508305],[112,275,65,-1.6634782766923308],[112,275,66,-1.6620033886283636],[112,275,67,-1.661238825879991],[112,275,68,-1.660962302237749],[112,275,69,-1.6608424885198474],[112,275,70,-1.6606825273483992],[112,275,71,-1.6602253885939717],[112,275,72,-1.659133915323764],[112,275,73,-1.657693519257009],[112,275,74,-1.656460354104638],[112,275,75,-1.655311815906316],[112,275,76,-1.654210971435532],[112,275,77,-1.6532355308299884],[112,275,78,-1.6523934541328344],[112,275,79,-1.6516211007838137],[112,276,64,-1.6733510829508305],[112,276,65,-1.6712907766923308],[112,276,66,-1.6698158886283636],[112,276,67,-1.669051325879991],[112,276,68,-1.668774802237749],[112,276,69,-1.6686549885198474],[112,276,70,-1.6684950273483992],[112,276,71,-1.6680378885939717],[112,276,72,-1.666946415323764],[112,276,73,-1.665506019257009],[112,276,74,-1.664272854104638],[112,276,75,-1.663124315906316],[112,276,76,-1.662023471435532],[112,276,77,-1.6610480308299884],[112,276,78,-1.6602059541328344],[112,276,79,-1.6594336007838137],[112,277,64,-1.6811635829508305],[112,277,65,-1.6791032766923308],[112,277,66,-1.6776283886283636],[112,277,67,-1.676863825879991],[112,277,68,-1.676587302237749],[112,277,69,-1.6764674885198474],[112,277,70,-1.6763075273483992],[112,277,71,-1.6758503885939717],[112,277,72,-1.674758915323764],[112,277,73,-1.673318519257009],[112,277,74,-1.672085354104638],[112,277,75,-1.670936815906316],[112,277,76,-1.669835971435532],[112,277,77,-1.6688605308299884],[112,277,78,-1.6680184541328344],[112,277,79,-1.6672461007838137],[112,278,64,-1.6889760829508305],[112,278,65,-1.6869157766923308],[112,278,66,-1.6854408886283636],[112,278,67,-1.684676325879991],[112,278,68,-1.684399802237749],[112,278,69,-1.6842799885198474],[112,278,70,-1.6841200273483992],[112,278,71,-1.6836628885939717],[112,278,72,-1.682571415323764],[112,278,73,-1.681131019257009],[112,278,74,-1.679897854104638],[112,278,75,-1.678749315906316],[112,278,76,-1.677648471435532],[112,278,77,-1.6766730308299884],[112,278,78,-1.6758309541328344],[112,278,79,-1.6750586007838137],[112,279,64,-1.6967885829508305],[112,279,65,-1.6947282766923308],[112,279,66,-1.6932533886283636],[112,279,67,-1.692488825879991],[112,279,68,-1.692212302237749],[112,279,69,-1.6920924885198474],[112,279,70,-1.6919325273483992],[112,279,71,-1.6914753885939717],[112,279,72,-1.690383915323764],[112,279,73,-1.688943519257009],[112,279,74,-1.687710354104638],[112,279,75,-1.686561815906316],[112,279,76,-1.685460971435532],[112,279,77,-1.6844855308299884],[112,279,78,-1.6836434541328344],[112,279,79,-1.6828711007838137],[112,280,64,-1.7046010829508305],[112,280,65,-1.7025407766923308],[112,280,66,-1.7010658886283636],[112,280,67,-1.700301325879991],[112,280,68,-1.700024802237749],[112,280,69,-1.6999049885198474],[112,280,70,-1.6997450273483992],[112,280,71,-1.6992878885939717],[112,280,72,-1.698196415323764],[112,280,73,-1.696756019257009],[112,280,74,-1.695522854104638],[112,280,75,-1.694374315906316],[112,280,76,-1.693273471435532],[112,280,77,-1.6922980308299884],[112,280,78,-1.6914559541328344],[112,280,79,-1.6906836007838137],[112,281,64,-1.7124135829508305],[112,281,65,-1.7103532766923308],[112,281,66,-1.7088783886283636],[112,281,67,-1.708113825879991],[112,281,68,-1.707837302237749],[112,281,69,-1.7077174885198474],[112,281,70,-1.7075575273483992],[112,281,71,-1.7071003885939717],[112,281,72,-1.706008915323764],[112,281,73,-1.704568519257009],[112,281,74,-1.703335354104638],[112,281,75,-1.702186815906316],[112,281,76,-1.701085971435532],[112,281,77,-1.7001105308299884],[112,281,78,-1.6992684541328344],[112,281,79,-1.6984961007838137],[112,282,64,-1.7202260829508305],[112,282,65,-1.7181657766923308],[112,282,66,-1.7166908886283636],[112,282,67,-1.715926325879991],[112,282,68,-1.715649802237749],[112,282,69,-1.7155299885198474],[112,282,70,-1.7153700273483992],[112,282,71,-1.7149128885939717],[112,282,72,-1.713821415323764],[112,282,73,-1.712381019257009],[112,282,74,-1.711147854104638],[112,282,75,-1.709999315906316],[112,282,76,-1.708898471435532],[112,282,77,-1.7079230308299884],[112,282,78,-1.7070809541328344],[112,282,79,-1.7063086007838137],[112,283,64,-1.7280385829508305],[112,283,65,-1.7259782766923308],[112,283,66,-1.7245033886283636],[112,283,67,-1.723738825879991],[112,283,68,-1.723462302237749],[112,283,69,-1.7233424885198474],[112,283,70,-1.7231825273483992],[112,283,71,-1.7227253885939717],[112,283,72,-1.721633915323764],[112,283,73,-1.720193519257009],[112,283,74,-1.718960354104638],[112,283,75,-1.717811815906316],[112,283,76,-1.716710971435532],[112,283,77,-1.7157355308299884],[112,283,78,-1.7148934541328344],[112,283,79,-1.7141211007838137],[112,284,64,-1.7358510829508305],[112,284,65,-1.7337907766923308],[112,284,66,-1.7323158886283636],[112,284,67,-1.731551325879991],[112,284,68,-1.731274802237749],[112,284,69,-1.7311549885198474],[112,284,70,-1.7309950273483992],[112,284,71,-1.7305378885939717],[112,284,72,-1.729446415323764],[112,284,73,-1.728006019257009],[112,284,74,-1.726772854104638],[112,284,75,-1.725624315906316],[112,284,76,-1.724523471435532],[112,284,77,-1.7235480308299884],[112,284,78,-1.7227059541328344],[112,284,79,-1.7219336007838137],[112,285,64,-1.7436635829508305],[112,285,65,-1.7416032766923308],[112,285,66,-1.7401283886283636],[112,285,67,-1.739363825879991],[112,285,68,-1.739087302237749],[112,285,69,-1.7389674885198474],[112,285,70,-1.7388075273483992],[112,285,71,-1.7383503885939717],[112,285,72,-1.737258915323764],[112,285,73,-1.735818519257009],[112,285,74,-1.734585354104638],[112,285,75,-1.733436815906316],[112,285,76,-1.732335971435532],[112,285,77,-1.7313605308299884],[112,285,78,-1.7305184541328344],[112,285,79,-1.7297461007838137],[112,286,64,-1.7514760829508305],[112,286,65,-1.7494157766923308],[112,286,66,-1.7479408886283636],[112,286,67,-1.747176325879991],[112,286,68,-1.746899802237749],[112,286,69,-1.7467799885198474],[112,286,70,-1.7466200273483992],[112,286,71,-1.7461628885939717],[112,286,72,-1.745071415323764],[112,286,73,-1.743631019257009],[112,286,74,-1.742397854104638],[112,286,75,-1.741249315906316],[112,286,76,-1.740148471435532],[112,286,77,-1.7391730308299884],[112,286,78,-1.7383309541328344],[112,286,79,-1.7375586007838137],[112,287,64,-1.7592885829508305],[112,287,65,-1.7572282766923308],[112,287,66,-1.7557533886283636],[112,287,67,-1.754988825879991],[112,287,68,-1.754712302237749],[112,287,69,-1.7545924885198474],[112,287,70,-1.7544325273483992],[112,287,71,-1.7539753885939717],[112,287,72,-1.752883915323764],[112,287,73,-1.751443519257009],[112,287,74,-1.750210354104638],[112,287,75,-1.749061815906316],[112,287,76,-1.747960971435532],[112,287,77,-1.7469855308299884],[112,287,78,-1.7461434541328344],[112,287,79,-1.7453711007838137],[112,288,64,-1.7671010829508305],[112,288,65,-1.7650407766923308],[112,288,66,-1.7635658886283636],[112,288,67,-1.762801325879991],[112,288,68,-1.762524802237749],[112,288,69,-1.7624049885198474],[112,288,70,-1.7622450273483992],[112,288,71,-1.7617878885939717],[112,288,72,-1.760696415323764],[112,288,73,-1.759256019257009],[112,288,74,-1.758022854104638],[112,288,75,-1.756874315906316],[112,288,76,-1.755773471435532],[112,288,77,-1.7547980308299884],[112,288,78,-1.7539559541328344],[112,288,79,-1.7531836007838137],[112,289,64,-1.7749135829508305],[112,289,65,-1.7728532766923308],[112,289,66,-1.7713783886283636],[112,289,67,-1.770613825879991],[112,289,68,-1.770337302237749],[112,289,69,-1.7702174885198474],[112,289,70,-1.7700575273483992],[112,289,71,-1.7696003885939717],[112,289,72,-1.768508915323764],[112,289,73,-1.767068519257009],[112,289,74,-1.765835354104638],[112,289,75,-1.764686815906316],[112,289,76,-1.763585971435532],[112,289,77,-1.7626105308299884],[112,289,78,-1.7617684541328344],[112,289,79,-1.7609961007838137],[112,290,64,-1.7827260829508305],[112,290,65,-1.7806657766923308],[112,290,66,-1.7791908886283636],[112,290,67,-1.778426325879991],[112,290,68,-1.778149802237749],[112,290,69,-1.7780299885198474],[112,290,70,-1.7778700273483992],[112,290,71,-1.7774128885939717],[112,290,72,-1.776321415323764],[112,290,73,-1.774881019257009],[112,290,74,-1.773647854104638],[112,290,75,-1.772499315906316],[112,290,76,-1.771398471435532],[112,290,77,-1.7704230308299884],[112,290,78,-1.7695809541328344],[112,290,79,-1.7688086007838137],[112,291,64,-1.7905385829508305],[112,291,65,-1.7884782766923308],[112,291,66,-1.7870033886283636],[112,291,67,-1.786238825879991],[112,291,68,-1.785962302237749],[112,291,69,-1.7858424885198474],[112,291,70,-1.7856825273483992],[112,291,71,-1.7852253885939717],[112,291,72,-1.784133915323764],[112,291,73,-1.782693519257009],[112,291,74,-1.781460354104638],[112,291,75,-1.780311815906316],[112,291,76,-1.779210971435532],[112,291,77,-1.7782355308299884],[112,291,78,-1.7773934541328344],[112,291,79,-1.7766211007838137],[112,292,64,-1.7983510829508305],[112,292,65,-1.7962907766923308],[112,292,66,-1.7948158886283636],[112,292,67,-1.794051325879991],[112,292,68,-1.793774802237749],[112,292,69,-1.7936549885198474],[112,292,70,-1.7934950273483992],[112,292,71,-1.7930378885939717],[112,292,72,-1.791946415323764],[112,292,73,-1.790506019257009],[112,292,74,-1.789272854104638],[112,292,75,-1.788124315906316],[112,292,76,-1.787023471435532],[112,292,77,-1.7860480308299884],[112,292,78,-1.7852059541328344],[112,292,79,-1.7844336007838137],[112,293,64,-1.8061635829508305],[112,293,65,-1.8041032766923308],[112,293,66,-1.8026283886283636],[112,293,67,-1.801863825879991],[112,293,68,-1.801587302237749],[112,293,69,-1.8014674885198474],[112,293,70,-1.8013075273483992],[112,293,71,-1.8008503885939717],[112,293,72,-1.799758915323764],[112,293,73,-1.798318519257009],[112,293,74,-1.797085354104638],[112,293,75,-1.795936815906316],[112,293,76,-1.794835971435532],[112,293,77,-1.7938605308299884],[112,293,78,-1.7930184541328344],[112,293,79,-1.7922461007838137],[112,294,64,-1.8139760829508305],[112,294,65,-1.8119157766923308],[112,294,66,-1.8104408886283636],[112,294,67,-1.809676325879991],[112,294,68,-1.809399802237749],[112,294,69,-1.8092799885198474],[112,294,70,-1.8091200273483992],[112,294,71,-1.8086628885939717],[112,294,72,-1.807571415323764],[112,294,73,-1.806131019257009],[112,294,74,-1.804897854104638],[112,294,75,-1.803749315906316],[112,294,76,-1.802648471435532],[112,294,77,-1.8016730308299884],[112,294,78,-1.8008309541328344],[112,294,79,-1.8000586007838137],[112,295,64,-1.8217885829508305],[112,295,65,-1.8197282766923308],[112,295,66,-1.8182533886283636],[112,295,67,-1.817488825879991],[112,295,68,-1.817212302237749],[112,295,69,-1.8170924885198474],[112,295,70,-1.8169325273483992],[112,295,71,-1.8164753885939717],[112,295,72,-1.815383915323764],[112,295,73,-1.813943519257009],[112,295,74,-1.812710354104638],[112,295,75,-1.811561815906316],[112,295,76,-1.810460971435532],[112,295,77,-1.8094855308299884],[112,295,78,-1.8086434541328344],[112,295,79,-1.8078711007838137],[112,296,64,-1.8296010829508305],[112,296,65,-1.8275407766923308],[112,296,66,-1.8260658886283636],[112,296,67,-1.825301325879991],[112,296,68,-1.825024802237749],[112,296,69,-1.8249049885198474],[112,296,70,-1.8247450273483992],[112,296,71,-1.8242878885939717],[112,296,72,-1.823196415323764],[112,296,73,-1.821756019257009],[112,296,74,-1.820522854104638],[112,296,75,-1.819374315906316],[112,296,76,-1.818273471435532],[112,296,77,-1.8172980308299884],[112,296,78,-1.8164559541328344],[112,296,79,-1.8156836007838137],[112,297,64,-1.8374135829508305],[112,297,65,-1.8353532766923308],[112,297,66,-1.8338783886283636],[112,297,67,-1.833113825879991],[112,297,68,-1.832837302237749],[112,297,69,-1.8327174885198474],[112,297,70,-1.8325575273483992],[112,297,71,-1.8321003885939717],[112,297,72,-1.831008915323764],[112,297,73,-1.829568519257009],[112,297,74,-1.828335354104638],[112,297,75,-1.827186815906316],[112,297,76,-1.826085971435532],[112,297,77,-1.8251105308299884],[112,297,78,-1.8242684541328344],[112,297,79,-1.8234961007838137],[112,298,64,-1.8452260829508305],[112,298,65,-1.8431657766923308],[112,298,66,-1.8416908886283636],[112,298,67,-1.840926325879991],[112,298,68,-1.840649802237749],[112,298,69,-1.8405299885198474],[112,298,70,-1.8403700273483992],[112,298,71,-1.8399128885939717],[112,298,72,-1.838821415323764],[112,298,73,-1.837381019257009],[112,298,74,-1.836147854104638],[112,298,75,-1.834999315906316],[112,298,76,-1.833898471435532],[112,298,77,-1.8329230308299884],[112,298,78,-1.8320809541328344],[112,298,79,-1.8313086007838137],[112,299,64,-1.8530385829508305],[112,299,65,-1.8509782766923308],[112,299,66,-1.8495033886283636],[112,299,67,-1.848738825879991],[112,299,68,-1.848462302237749],[112,299,69,-1.8483424885198474],[112,299,70,-1.8481825273483992],[112,299,71,-1.8477253885939717],[112,299,72,-1.846633915323764],[112,299,73,-1.845193519257009],[112,299,74,-1.843960354104638],[112,299,75,-1.842811815906316],[112,299,76,-1.841710971435532],[112,299,77,-1.8407355308299884],[112,299,78,-1.8398934541328344],[112,299,79,-1.8391211007838137],[112,300,64,-1.8608510829508305],[112,300,65,-1.8587907766923308],[112,300,66,-1.8573158886283636],[112,300,67,-1.856551325879991],[112,300,68,-1.856274802237749],[112,300,69,-1.8561549885198474],[112,300,70,-1.8559950273483992],[112,300,71,-1.8555378885939717],[112,300,72,-1.854446415323764],[112,300,73,-1.853006019257009],[112,300,74,-1.851772854104638],[112,300,75,-1.850624315906316],[112,300,76,-1.849523471435532],[112,300,77,-1.8485480308299884],[112,300,78,-1.8477059541328344],[112,300,79,-1.8469336007838137],[112,301,64,-1.8686635829508305],[112,301,65,-1.8666032766923308],[112,301,66,-1.8651283886283636],[112,301,67,-1.864363825879991],[112,301,68,-1.864087302237749],[112,301,69,-1.8639674885198474],[112,301,70,-1.8638075273483992],[112,301,71,-1.8633503885939717],[112,301,72,-1.862258915323764],[112,301,73,-1.860818519257009],[112,301,74,-1.859585354104638],[112,301,75,-1.858436815906316],[112,301,76,-1.857335971435532],[112,301,77,-1.8563605308299884],[112,301,78,-1.8555184541328344],[112,301,79,-1.8547461007838137],[112,302,64,-1.8764760829508305],[112,302,65,-1.8744157766923308],[112,302,66,-1.8729408886283636],[112,302,67,-1.872176325879991],[112,302,68,-1.871899802237749],[112,302,69,-1.8717799885198474],[112,302,70,-1.8716200273483992],[112,302,71,-1.8711628885939717],[112,302,72,-1.870071415323764],[112,302,73,-1.868631019257009],[112,302,74,-1.867397854104638],[112,302,75,-1.866249315906316],[112,302,76,-1.865148471435532],[112,302,77,-1.8641730308299884],[112,302,78,-1.8633309541328344],[112,302,79,-1.8625586007838137],[112,303,64,-1.8842885829508305],[112,303,65,-1.8822282766923308],[112,303,66,-1.8807533886283636],[112,303,67,-1.879988825879991],[112,303,68,-1.879712302237749],[112,303,69,-1.8795924885198474],[112,303,70,-1.8794325273483992],[112,303,71,-1.8789753885939717],[112,303,72,-1.877883915323764],[112,303,73,-1.876443519257009],[112,303,74,-1.875210354104638],[112,303,75,-1.874061815906316],[112,303,76,-1.872960971435532],[112,303,77,-1.8719855308299884],[112,303,78,-1.8711434541328344],[112,303,79,-1.8703711007838137],[112,304,64,-1.8921010829508305],[112,304,65,-1.8900407766923308],[112,304,66,-1.8885658886283636],[112,304,67,-1.887801325879991],[112,304,68,-1.887524802237749],[112,304,69,-1.8874049885198474],[112,304,70,-1.8872450273483992],[112,304,71,-1.8867878885939717],[112,304,72,-1.885696415323764],[112,304,73,-1.884256019257009],[112,304,74,-1.883022854104638],[112,304,75,-1.881874315906316],[112,304,76,-1.880773471435532],[112,304,77,-1.8797980308299884],[112,304,78,-1.8789559541328344],[112,304,79,-1.8781836007838137],[112,305,64,-1.8999135829508305],[112,305,65,-1.8978532766923308],[112,305,66,-1.8963783886283636],[112,305,67,-1.895613825879991],[112,305,68,-1.895337302237749],[112,305,69,-1.8952174885198474],[112,305,70,-1.8950575273483992],[112,305,71,-1.8946003885939717],[112,305,72,-1.893508915323764],[112,305,73,-1.892068519257009],[112,305,74,-1.890835354104638],[112,305,75,-1.889686815906316],[112,305,76,-1.888585971435532],[112,305,77,-1.8876105308299884],[112,305,78,-1.8867684541328344],[112,305,79,-1.8859961007838137],[112,306,64,-1.9077260829508305],[112,306,65,-1.9056657766923308],[112,306,66,-1.9041908886283636],[112,306,67,-1.903426325879991],[112,306,68,-1.903149802237749],[112,306,69,-1.9030299885198474],[112,306,70,-1.9028700273483992],[112,306,71,-1.9024128885939717],[112,306,72,-1.901321415323764],[112,306,73,-1.899881019257009],[112,306,74,-1.898647854104638],[112,306,75,-1.897499315906316],[112,306,76,-1.896398471435532],[112,306,77,-1.8954230308299884],[112,306,78,-1.8945809541328344],[112,306,79,-1.8938086007838137],[112,307,64,-1.9155385829508305],[112,307,65,-1.9134782766923308],[112,307,66,-1.9120033886283636],[112,307,67,-1.911238825879991],[112,307,68,-1.910962302237749],[112,307,69,-1.9108424885198474],[112,307,70,-1.9106825273483992],[112,307,71,-1.9102253885939717],[112,307,72,-1.909133915323764],[112,307,73,-1.907693519257009],[112,307,74,-1.906460354104638],[112,307,75,-1.905311815906316],[112,307,76,-1.904210971435532],[112,307,77,-1.9032355308299884],[112,307,78,-1.9023934541328344],[112,307,79,-1.9016211007838137],[112,308,64,-1.9233510829508305],[112,308,65,-1.9212907766923308],[112,308,66,-1.9198158886283636],[112,308,67,-1.919051325879991],[112,308,68,-1.918774802237749],[112,308,69,-1.9186549885198474],[112,308,70,-1.9184950273483992],[112,308,71,-1.9180378885939717],[112,308,72,-1.916946415323764],[112,308,73,-1.915506019257009],[112,308,74,-1.914272854104638],[112,308,75,-1.913124315906316],[112,308,76,-1.912023471435532],[112,308,77,-1.9110480308299884],[112,308,78,-1.9102059541328344],[112,308,79,-1.9094336007838137],[112,309,64,-1.9311635829508305],[112,309,65,-1.9291032766923308],[112,309,66,-1.9276283886283636],[112,309,67,-1.926863825879991],[112,309,68,-1.926587302237749],[112,309,69,-1.9264674885198474],[112,309,70,-1.9263075273483992],[112,309,71,-1.9258503885939717],[112,309,72,-1.924758915323764],[112,309,73,-1.923318519257009],[112,309,74,-1.922085354104638],[112,309,75,-1.920936815906316],[112,309,76,-1.919835971435532],[112,309,77,-1.9188605308299884],[112,309,78,-1.9180184541328344],[112,309,79,-1.9172461007838137],[112,310,64,-1.9389760829508305],[112,310,65,-1.9369157766923308],[112,310,66,-1.9354408886283636],[112,310,67,-1.934676325879991],[112,310,68,-1.934399802237749],[112,310,69,-1.9342799885198474],[112,310,70,-1.9341200273483992],[112,310,71,-1.9336628885939717],[112,310,72,-1.932571415323764],[112,310,73,-1.931131019257009],[112,310,74,-1.929897854104638],[112,310,75,-1.928749315906316],[112,310,76,-1.927648471435532],[112,310,77,-1.9266730308299884],[112,310,78,-1.9258309541328344],[112,310,79,-1.9250586007838137],[112,311,64,-1.9467885829508305],[112,311,65,-1.9447282766923308],[112,311,66,-1.9432533886283636],[112,311,67,-1.942488825879991],[112,311,68,-1.942212302237749],[112,311,69,-1.9420924885198474],[112,311,70,-1.9419325273483992],[112,311,71,-1.9414753885939717],[112,311,72,-1.940383915323764],[112,311,73,-1.938943519257009],[112,311,74,-1.937710354104638],[112,311,75,-1.936561815906316],[112,311,76,-1.935460971435532],[112,311,77,-1.9344855308299884],[112,311,78,-1.9336434541328344],[112,311,79,-1.9328711007838137],[112,312,64,-1.9546010829508305],[112,312,65,-1.9525407766923308],[112,312,66,-1.9510658886283636],[112,312,67,-1.950301325879991],[112,312,68,-1.950024802237749],[112,312,69,-1.9499049885198474],[112,312,70,-1.9497450273483992],[112,312,71,-1.9492878885939717],[112,312,72,-1.948196415323764],[112,312,73,-1.946756019257009],[112,312,74,-1.945522854104638],[112,312,75,-1.944374315906316],[112,312,76,-1.943273471435532],[112,312,77,-1.9422980308299884],[112,312,78,-1.9414559541328344],[112,312,79,-1.9406836007838137],[112,313,64,-1.9624135829508305],[112,313,65,-1.9603532766923308],[112,313,66,-1.9588783886283636],[112,313,67,-1.958113825879991],[112,313,68,-1.957837302237749],[112,313,69,-1.9577174885198474],[112,313,70,-1.9575575273483992],[112,313,71,-1.9571003885939717],[112,313,72,-1.956008915323764],[112,313,73,-1.954568519257009],[112,313,74,-1.953335354104638],[112,313,75,-1.952186815906316],[112,313,76,-1.951085971435532],[112,313,77,-1.9501105308299884],[112,313,78,-1.9492684541328344],[112,313,79,-1.9484961007838137],[112,314,64,-1.9702260829508305],[112,314,65,-1.9681657766923308],[112,314,66,-1.9666908886283636],[112,314,67,-1.965926325879991],[112,314,68,-1.965649802237749],[112,314,69,-1.9655299885198474],[112,314,70,-1.9653700273483992],[112,314,71,-1.9649128885939717],[112,314,72,-1.963821415323764],[112,314,73,-1.962381019257009],[112,314,74,-1.961147854104638],[112,314,75,-1.959999315906316],[112,314,76,-1.958898471435532],[112,314,77,-1.9579230308299884],[112,314,78,-1.9570809541328344],[112,314,79,-1.9563086007838137],[112,315,64,-1.9780385829508305],[112,315,65,-1.9759782766923308],[112,315,66,-1.9745033886283636],[112,315,67,-1.973738825879991],[112,315,68,-1.973462302237749],[112,315,69,-1.9733424885198474],[112,315,70,-1.9731825273483992],[112,315,71,-1.9727253885939717],[112,315,72,-1.971633915323764],[112,315,73,-1.970193519257009],[112,315,74,-1.968960354104638],[112,315,75,-1.967811815906316],[112,315,76,-1.966710971435532],[112,315,77,-1.9657355308299884],[112,315,78,-1.9648934541328344],[112,315,79,-1.9641211007838137],[112,316,64,-1.9858510829508305],[112,316,65,-1.9837907766923308],[112,316,66,-1.9823158886283636],[112,316,67,-1.981551325879991],[112,316,68,-1.981274802237749],[112,316,69,-1.9811549885198474],[112,316,70,-1.9809950273483992],[112,316,71,-1.9805378885939717],[112,316,72,-1.979446415323764],[112,316,73,-1.978006019257009],[112,316,74,-1.976772854104638],[112,316,75,-1.975624315906316],[112,316,76,-1.974523471435532],[112,316,77,-1.9735480308299884],[112,316,78,-1.9727059541328344],[112,316,79,-1.9719336007838137],[112,317,64,-1.9936635829508305],[112,317,65,-1.9916032766923308],[112,317,66,-1.9901283886283636],[112,317,67,-1.989363825879991],[112,317,68,-1.989087302237749],[112,317,69,-1.9889674885198474],[112,317,70,-1.9888075273483992],[112,317,71,-1.9883503885939717],[112,317,72,-1.987258915323764],[112,317,73,-1.985818519257009],[112,317,74,-1.984585354104638],[112,317,75,-1.983436815906316],[112,317,76,-1.982335971435532],[112,317,77,-1.9813605308299884],[112,317,78,-1.9805184541328344],[112,317,79,-1.9797461007838137],[112,318,64,-2.0014760829508305],[112,318,65,-1.9994157766923308],[112,318,66,-1.9979408886283636],[112,318,67,-1.997176325879991],[112,318,68,-1.996899802237749],[112,318,69,-1.9967799885198474],[112,318,70,-1.9966200273483992],[112,318,71,-1.9961628885939717],[112,318,72,-1.995071415323764],[112,318,73,-1.993631019257009],[112,318,74,-1.992397854104638],[112,318,75,-1.991249315906316],[112,318,76,-1.990148471435532],[112,318,77,-1.9891730308299884],[112,318,78,-1.9883309541328344],[112,318,79,-1.9875586007838137],[112,319,64,-2.0092885829508305],[112,319,65,-2.007228276692331],[112,319,66,-2.0057533886283636],[112,319,67,-2.004988825879991],[112,319,68,-2.004712302237749],[112,319,69,-2.0045924885198474],[112,319,70,-2.004432527348399],[112,319,71,-2.0039753885939717],[112,319,72,-2.002883915323764],[112,319,73,-2.001443519257009],[112,319,74,-2.000210354104638],[112,319,75,-1.999061815906316],[112,319,76,-1.997960971435532],[112,319,77,-1.9969855308299884],[112,319,78,-1.9961434541328344],[112,319,79,-1.9953711007838137],[113,-64,64,0.9772704131901264],[113,-64,65,0.979179885238409],[113,-64,66,0.9806861812248826],[113,-64,67,0.9816237557679415],[113,-64,68,0.9821600541472435],[113,-64,69,0.9827179424464703],[113,-64,70,0.9833741681650281],[113,-64,71,0.9842592952772975],[113,-64,72,0.9857482621446252],[113,-64,73,0.9877511356025934],[113,-64,74,0.9894983735866845],[113,-64,75,0.9907085453160107],[113,-64,76,0.9916512328200042],[113,-64,77,0.9925470417365432],[113,-64,78,0.9935299421194941],[113,-64,79,0.9946909281425178],[113,-63,64,0.9694579131901264],[113,-63,65,0.971367385238409],[113,-63,66,0.9728736812248826],[113,-63,67,0.9738112557679415],[113,-63,68,0.9743475541472435],[113,-63,69,0.9749054424464703],[113,-63,70,0.9755616681650281],[113,-63,71,0.9764467952772975],[113,-63,72,0.9779357621446252],[113,-63,73,0.9799386356025934],[113,-63,74,0.9816858735866845],[113,-63,75,0.9828960453160107],[113,-63,76,0.9838387328200042],[113,-63,77,0.9847345417365432],[113,-63,78,0.9857174421194941],[113,-63,79,0.9868784281425178],[113,-62,64,0.9616454131901264],[113,-62,65,0.963554885238409],[113,-62,66,0.9650611812248826],[113,-62,67,0.9659987557679415],[113,-62,68,0.9665350541472435],[113,-62,69,0.9670929424464703],[113,-62,70,0.9677491681650281],[113,-62,71,0.9686342952772975],[113,-62,72,0.9701232621446252],[113,-62,73,0.9721261356025934],[113,-62,74,0.9738733735866845],[113,-62,75,0.9750835453160107],[113,-62,76,0.9760262328200042],[113,-62,77,0.9769220417365432],[113,-62,78,0.9779049421194941],[113,-62,79,0.9790659281425178],[113,-61,64,0.9538329131901264],[113,-61,65,0.955742385238409],[113,-61,66,0.9572486812248826],[113,-61,67,0.9581862557679415],[113,-61,68,0.9587225541472435],[113,-61,69,0.9592804424464703],[113,-61,70,0.9599366681650281],[113,-61,71,0.9608217952772975],[113,-61,72,0.9623107621446252],[113,-61,73,0.9643136356025934],[113,-61,74,0.9660608735866845],[113,-61,75,0.9672710453160107],[113,-61,76,0.9682137328200042],[113,-61,77,0.9691095417365432],[113,-61,78,0.9700924421194941],[113,-61,79,0.9712534281425178],[113,-60,64,0.9460204131901264],[113,-60,65,0.947929885238409],[113,-60,66,0.9494361812248826],[113,-60,67,0.9503737557679415],[113,-60,68,0.9509100541472435],[113,-60,69,0.9514679424464703],[113,-60,70,0.9521241681650281],[113,-60,71,0.9530092952772975],[113,-60,72,0.9544982621446252],[113,-60,73,0.9565011356025934],[113,-60,74,0.9582483735866845],[113,-60,75,0.9594585453160107],[113,-60,76,0.9604012328200042],[113,-60,77,0.9612970417365432],[113,-60,78,0.9622799421194941],[113,-60,79,0.9634409281425178],[113,-59,64,0.9382079131901264],[113,-59,65,0.940117385238409],[113,-59,66,0.9416236812248826],[113,-59,67,0.9425612557679415],[113,-59,68,0.9430975541472435],[113,-59,69,0.9436554424464703],[113,-59,70,0.9443116681650281],[113,-59,71,0.9451967952772975],[113,-59,72,0.9466857621446252],[113,-59,73,0.9486886356025934],[113,-59,74,0.9504358735866845],[113,-59,75,0.9516460453160107],[113,-59,76,0.9525887328200042],[113,-59,77,0.9534845417365432],[113,-59,78,0.9544674421194941],[113,-59,79,0.9556284281425178],[113,-58,64,0.9303954131901264],[113,-58,65,0.932304885238409],[113,-58,66,0.9338111812248826],[113,-58,67,0.9347487557679415],[113,-58,68,0.9352850541472435],[113,-58,69,0.9358429424464703],[113,-58,70,0.9364991681650281],[113,-58,71,0.9373842952772975],[113,-58,72,0.9388732621446252],[113,-58,73,0.9408761356025934],[113,-58,74,0.9426233735866845],[113,-58,75,0.9438335453160107],[113,-58,76,0.9447762328200042],[113,-58,77,0.9456720417365432],[113,-58,78,0.9466549421194941],[113,-58,79,0.9478159281425178],[113,-57,64,0.9225829131901264],[113,-57,65,0.924492385238409],[113,-57,66,0.9259986812248826],[113,-57,67,0.9269362557679415],[113,-57,68,0.9274725541472435],[113,-57,69,0.9280304424464703],[113,-57,70,0.9286866681650281],[113,-57,71,0.9295717952772975],[113,-57,72,0.9310607621446252],[113,-57,73,0.9330636356025934],[113,-57,74,0.9348108735866845],[113,-57,75,0.9360210453160107],[113,-57,76,0.9369637328200042],[113,-57,77,0.9378595417365432],[113,-57,78,0.9388424421194941],[113,-57,79,0.9400034281425178],[113,-56,64,0.9147704131901264],[113,-56,65,0.916679885238409],[113,-56,66,0.9181861812248826],[113,-56,67,0.9191237557679415],[113,-56,68,0.9196600541472435],[113,-56,69,0.9202179424464703],[113,-56,70,0.9208741681650281],[113,-56,71,0.9217592952772975],[113,-56,72,0.9232482621446252],[113,-56,73,0.9252511356025934],[113,-56,74,0.9269983735866845],[113,-56,75,0.9282085453160107],[113,-56,76,0.9291512328200042],[113,-56,77,0.9300470417365432],[113,-56,78,0.9310299421194941],[113,-56,79,0.9321909281425178],[113,-55,64,0.9069579131901264],[113,-55,65,0.908867385238409],[113,-55,66,0.9103736812248826],[113,-55,67,0.9113112557679415],[113,-55,68,0.9118475541472435],[113,-55,69,0.9124054424464703],[113,-55,70,0.9130616681650281],[113,-55,71,0.9139467952772975],[113,-55,72,0.9154357621446252],[113,-55,73,0.9174386356025934],[113,-55,74,0.9191858735866845],[113,-55,75,0.9203960453160107],[113,-55,76,0.9213387328200042],[113,-55,77,0.9222345417365432],[113,-55,78,0.9232174421194941],[113,-55,79,0.9243784281425178],[113,-54,64,0.8991454131901264],[113,-54,65,0.901054885238409],[113,-54,66,0.9025611812248826],[113,-54,67,0.9034987557679415],[113,-54,68,0.9040350541472435],[113,-54,69,0.9045929424464703],[113,-54,70,0.9052491681650281],[113,-54,71,0.9061342952772975],[113,-54,72,0.9076232621446252],[113,-54,73,0.9096261356025934],[113,-54,74,0.9113733735866845],[113,-54,75,0.9125835453160107],[113,-54,76,0.9135262328200042],[113,-54,77,0.9144220417365432],[113,-54,78,0.9154049421194941],[113,-54,79,0.9165659281425178],[113,-53,64,0.8913329131901264],[113,-53,65,0.893242385238409],[113,-53,66,0.8947486812248826],[113,-53,67,0.8956862557679415],[113,-53,68,0.8962225541472435],[113,-53,69,0.8967804424464703],[113,-53,70,0.8974366681650281],[113,-53,71,0.8983217952772975],[113,-53,72,0.8998107621446252],[113,-53,73,0.9018136356025934],[113,-53,74,0.9035608735866845],[113,-53,75,0.9047710453160107],[113,-53,76,0.9057137328200042],[113,-53,77,0.9066095417365432],[113,-53,78,0.9075924421194941],[113,-53,79,0.9087534281425178],[113,-52,64,0.8835204131901264],[113,-52,65,0.885429885238409],[113,-52,66,0.8869361812248826],[113,-52,67,0.8878737557679415],[113,-52,68,0.8884100541472435],[113,-52,69,0.8889679424464703],[113,-52,70,0.8896241681650281],[113,-52,71,0.8905092952772975],[113,-52,72,0.8919982621446252],[113,-52,73,0.8940011356025934],[113,-52,74,0.8957483735866845],[113,-52,75,0.8969585453160107],[113,-52,76,0.8979012328200042],[113,-52,77,0.8987970417365432],[113,-52,78,0.8997799421194941],[113,-52,79,0.9009409281425178],[113,-51,64,0.8757079131901264],[113,-51,65,0.877617385238409],[113,-51,66,0.8791236812248826],[113,-51,67,0.8800612557679415],[113,-51,68,0.8805975541472435],[113,-51,69,0.8811554424464703],[113,-51,70,0.8818116681650281],[113,-51,71,0.8826967952772975],[113,-51,72,0.8841857621446252],[113,-51,73,0.8861886356025934],[113,-51,74,0.8879358735866845],[113,-51,75,0.8891460453160107],[113,-51,76,0.8900887328200042],[113,-51,77,0.8909845417365432],[113,-51,78,0.8919674421194941],[113,-51,79,0.8931284281425178],[113,-50,64,0.8678954131901264],[113,-50,65,0.869804885238409],[113,-50,66,0.8713111812248826],[113,-50,67,0.8722487557679415],[113,-50,68,0.8727850541472435],[113,-50,69,0.8733429424464703],[113,-50,70,0.8739991681650281],[113,-50,71,0.8748842952772975],[113,-50,72,0.8763732621446252],[113,-50,73,0.8783761356025934],[113,-50,74,0.8801233735866845],[113,-50,75,0.8813335453160107],[113,-50,76,0.8822762328200042],[113,-50,77,0.8831720417365432],[113,-50,78,0.8841549421194941],[113,-50,79,0.8853159281425178],[113,-49,64,0.8600829131901264],[113,-49,65,0.861992385238409],[113,-49,66,0.8634986812248826],[113,-49,67,0.8644362557679415],[113,-49,68,0.8649725541472435],[113,-49,69,0.8655304424464703],[113,-49,70,0.8661866681650281],[113,-49,71,0.8670717952772975],[113,-49,72,0.8685607621446252],[113,-49,73,0.8705636356025934],[113,-49,74,0.8723108735866845],[113,-49,75,0.8735210453160107],[113,-49,76,0.8744637328200042],[113,-49,77,0.8753595417365432],[113,-49,78,0.8763424421194941],[113,-49,79,0.8775034281425178],[113,-48,64,0.8522704131901264],[113,-48,65,0.854179885238409],[113,-48,66,0.8556861812248826],[113,-48,67,0.8566237557679415],[113,-48,68,0.8571600541472435],[113,-48,69,0.8577179424464703],[113,-48,70,0.8583741681650281],[113,-48,71,0.8592592952772975],[113,-48,72,0.8607482621446252],[113,-48,73,0.8627511356025934],[113,-48,74,0.8644983735866845],[113,-48,75,0.8657085453160107],[113,-48,76,0.8666512328200042],[113,-48,77,0.8675470417365432],[113,-48,78,0.8685299421194941],[113,-48,79,0.8696909281425178],[113,-47,64,0.8444579131901264],[113,-47,65,0.846367385238409],[113,-47,66,0.8478736812248826],[113,-47,67,0.8488112557679415],[113,-47,68,0.8493475541472435],[113,-47,69,0.8499054424464703],[113,-47,70,0.8505616681650281],[113,-47,71,0.8514467952772975],[113,-47,72,0.8529357621446252],[113,-47,73,0.8549386356025934],[113,-47,74,0.8566858735866845],[113,-47,75,0.8578960453160107],[113,-47,76,0.8588387328200042],[113,-47,77,0.8597345417365432],[113,-47,78,0.8607174421194941],[113,-47,79,0.8618784281425178],[113,-46,64,0.8366454131901264],[113,-46,65,0.838554885238409],[113,-46,66,0.8400611812248826],[113,-46,67,0.8409987557679415],[113,-46,68,0.8415350541472435],[113,-46,69,0.8420929424464703],[113,-46,70,0.8427491681650281],[113,-46,71,0.8436342952772975],[113,-46,72,0.8451232621446252],[113,-46,73,0.8471261356025934],[113,-46,74,0.8488733735866845],[113,-46,75,0.8500835453160107],[113,-46,76,0.8510262328200042],[113,-46,77,0.8519220417365432],[113,-46,78,0.8529049421194941],[113,-46,79,0.8540659281425178],[113,-45,64,0.8288329131901264],[113,-45,65,0.830742385238409],[113,-45,66,0.8322486812248826],[113,-45,67,0.8331862557679415],[113,-45,68,0.8337225541472435],[113,-45,69,0.8342804424464703],[113,-45,70,0.8349366681650281],[113,-45,71,0.8358217952772975],[113,-45,72,0.8373107621446252],[113,-45,73,0.8393136356025934],[113,-45,74,0.8410608735866845],[113,-45,75,0.8422710453160107],[113,-45,76,0.8432137328200042],[113,-45,77,0.8441095417365432],[113,-45,78,0.8450924421194941],[113,-45,79,0.8462534281425178],[113,-44,64,0.8210204131901264],[113,-44,65,0.822929885238409],[113,-44,66,0.8244361812248826],[113,-44,67,0.8253737557679415],[113,-44,68,0.8259100541472435],[113,-44,69,0.8264679424464703],[113,-44,70,0.8271241681650281],[113,-44,71,0.8280092952772975],[113,-44,72,0.8294982621446252],[113,-44,73,0.8315011356025934],[113,-44,74,0.8332483735866845],[113,-44,75,0.8344585453160107],[113,-44,76,0.8354012328200042],[113,-44,77,0.8362970417365432],[113,-44,78,0.8372799421194941],[113,-44,79,0.8384409281425178],[113,-43,64,0.8132079131901264],[113,-43,65,0.815117385238409],[113,-43,66,0.8166236812248826],[113,-43,67,0.8175612557679415],[113,-43,68,0.8180975541472435],[113,-43,69,0.8186554424464703],[113,-43,70,0.8193116681650281],[113,-43,71,0.8201967952772975],[113,-43,72,0.8216857621446252],[113,-43,73,0.8236886356025934],[113,-43,74,0.8254358735866845],[113,-43,75,0.8266460453160107],[113,-43,76,0.8275887328200042],[113,-43,77,0.8284845417365432],[113,-43,78,0.8294674421194941],[113,-43,79,0.8306284281425178],[113,-42,64,0.8053954131901264],[113,-42,65,0.807304885238409],[113,-42,66,0.8088111812248826],[113,-42,67,0.8097487557679415],[113,-42,68,0.8102850541472435],[113,-42,69,0.8108429424464703],[113,-42,70,0.8114991681650281],[113,-42,71,0.8123842952772975],[113,-42,72,0.8138732621446252],[113,-42,73,0.8158761356025934],[113,-42,74,0.8176233735866845],[113,-42,75,0.8188335453160107],[113,-42,76,0.8197762328200042],[113,-42,77,0.8206720417365432],[113,-42,78,0.8216549421194941],[113,-42,79,0.8228159281425178],[113,-41,64,0.7975829131901264],[113,-41,65,0.799492385238409],[113,-41,66,0.8009986812248826],[113,-41,67,0.8019362557679415],[113,-41,68,0.8024725541472435],[113,-41,69,0.8030304424464703],[113,-41,70,0.8036866681650281],[113,-41,71,0.8045717952772975],[113,-41,72,0.8060607621446252],[113,-41,73,0.8080636356025934],[113,-41,74,0.8098108735866845],[113,-41,75,0.8110210453160107],[113,-41,76,0.8119637328200042],[113,-41,77,0.8128595417365432],[113,-41,78,0.8138424421194941],[113,-41,79,0.8150034281425178],[113,-40,64,0.7897704131901264],[113,-40,65,0.791679885238409],[113,-40,66,0.7931861812248826],[113,-40,67,0.7941237557679415],[113,-40,68,0.7946600541472435],[113,-40,69,0.7952179424464703],[113,-40,70,0.7958741681650281],[113,-40,71,0.7967592952772975],[113,-40,72,0.7982482621446252],[113,-40,73,0.8002511356025934],[113,-40,74,0.8019983735866845],[113,-40,75,0.8032085453160107],[113,-40,76,0.8041512328200042],[113,-40,77,0.8050470417365432],[113,-40,78,0.8060299421194941],[113,-40,79,0.8071909281425178],[113,-39,64,0.7819579131901264],[113,-39,65,0.783867385238409],[113,-39,66,0.7853736812248826],[113,-39,67,0.7863112557679415],[113,-39,68,0.7868475541472435],[113,-39,69,0.7874054424464703],[113,-39,70,0.7880616681650281],[113,-39,71,0.7889467952772975],[113,-39,72,0.7904357621446252],[113,-39,73,0.7924386356025934],[113,-39,74,0.7941858735866845],[113,-39,75,0.7953960453160107],[113,-39,76,0.7963387328200042],[113,-39,77,0.7972345417365432],[113,-39,78,0.7982174421194941],[113,-39,79,0.7993784281425178],[113,-38,64,0.7741454131901264],[113,-38,65,0.776054885238409],[113,-38,66,0.7775611812248826],[113,-38,67,0.7784987557679415],[113,-38,68,0.7790350541472435],[113,-38,69,0.7795929424464703],[113,-38,70,0.7802491681650281],[113,-38,71,0.7811342952772975],[113,-38,72,0.7826232621446252],[113,-38,73,0.7846261356025934],[113,-38,74,0.7863733735866845],[113,-38,75,0.7875835453160107],[113,-38,76,0.7885262328200042],[113,-38,77,0.7894220417365432],[113,-38,78,0.7904049421194941],[113,-38,79,0.7915659281425178],[113,-37,64,0.7663329131901264],[113,-37,65,0.768242385238409],[113,-37,66,0.7697486812248826],[113,-37,67,0.7706862557679415],[113,-37,68,0.7712225541472435],[113,-37,69,0.7717804424464703],[113,-37,70,0.7724366681650281],[113,-37,71,0.7733217952772975],[113,-37,72,0.7748107621446252],[113,-37,73,0.7768136356025934],[113,-37,74,0.7785608735866845],[113,-37,75,0.7797710453160107],[113,-37,76,0.7807137328200042],[113,-37,77,0.7816095417365432],[113,-37,78,0.7825924421194941],[113,-37,79,0.7837534281425178],[113,-36,64,0.7585204131901264],[113,-36,65,0.760429885238409],[113,-36,66,0.7619361812248826],[113,-36,67,0.7628737557679415],[113,-36,68,0.7634100541472435],[113,-36,69,0.7639679424464703],[113,-36,70,0.7646241681650281],[113,-36,71,0.7655092952772975],[113,-36,72,0.7669982621446252],[113,-36,73,0.7690011356025934],[113,-36,74,0.7707483735866845],[113,-36,75,0.7719585453160107],[113,-36,76,0.7729012328200042],[113,-36,77,0.7737970417365432],[113,-36,78,0.7747799421194941],[113,-36,79,0.7759409281425178],[113,-35,64,0.7507079131901264],[113,-35,65,0.752617385238409],[113,-35,66,0.7541236812248826],[113,-35,67,0.7550612557679415],[113,-35,68,0.7555975541472435],[113,-35,69,0.7561554424464703],[113,-35,70,0.7568116681650281],[113,-35,71,0.7576967952772975],[113,-35,72,0.7591857621446252],[113,-35,73,0.7611886356025934],[113,-35,74,0.7629358735866845],[113,-35,75,0.7641460453160107],[113,-35,76,0.7650887328200042],[113,-35,77,0.7659845417365432],[113,-35,78,0.7669674421194941],[113,-35,79,0.7681284281425178],[113,-34,64,0.7428954131901264],[113,-34,65,0.744804885238409],[113,-34,66,0.7463111812248826],[113,-34,67,0.7472487557679415],[113,-34,68,0.7477850541472435],[113,-34,69,0.7483429424464703],[113,-34,70,0.7489991681650281],[113,-34,71,0.7498842952772975],[113,-34,72,0.7513732621446252],[113,-34,73,0.7533761356025934],[113,-34,74,0.7551233735866845],[113,-34,75,0.7563335453160107],[113,-34,76,0.7572762328200042],[113,-34,77,0.7581720417365432],[113,-34,78,0.7591549421194941],[113,-34,79,0.7603159281425178],[113,-33,64,0.7350829131901264],[113,-33,65,0.736992385238409],[113,-33,66,0.7384986812248826],[113,-33,67,0.7394362557679415],[113,-33,68,0.7399725541472435],[113,-33,69,0.7405304424464703],[113,-33,70,0.7411866681650281],[113,-33,71,0.7420717952772975],[113,-33,72,0.7435607621446252],[113,-33,73,0.7455636356025934],[113,-33,74,0.7473108735866845],[113,-33,75,0.7485210453160107],[113,-33,76,0.7494637328200042],[113,-33,77,0.7503595417365432],[113,-33,78,0.7513424421194941],[113,-33,79,0.7525034281425178],[113,-32,64,0.7272704131901264],[113,-32,65,0.729179885238409],[113,-32,66,0.7306861812248826],[113,-32,67,0.7316237557679415],[113,-32,68,0.7321600541472435],[113,-32,69,0.7327179424464703],[113,-32,70,0.7333741681650281],[113,-32,71,0.7342592952772975],[113,-32,72,0.7357482621446252],[113,-32,73,0.7377511356025934],[113,-32,74,0.7394983735866845],[113,-32,75,0.7407085453160107],[113,-32,76,0.7416512328200042],[113,-32,77,0.7425470417365432],[113,-32,78,0.7435299421194941],[113,-32,79,0.7446909281425178],[113,-31,64,0.7194579131901264],[113,-31,65,0.721367385238409],[113,-31,66,0.7228736812248826],[113,-31,67,0.7238112557679415],[113,-31,68,0.7243475541472435],[113,-31,69,0.7249054424464703],[113,-31,70,0.7255616681650281],[113,-31,71,0.7264467952772975],[113,-31,72,0.7279357621446252],[113,-31,73,0.7299386356025934],[113,-31,74,0.7316858735866845],[113,-31,75,0.7328960453160107],[113,-31,76,0.7338387328200042],[113,-31,77,0.7347345417365432],[113,-31,78,0.7357174421194941],[113,-31,79,0.7368784281425178],[113,-30,64,0.7116454131901264],[113,-30,65,0.713554885238409],[113,-30,66,0.7150611812248826],[113,-30,67,0.7159987557679415],[113,-30,68,0.7165350541472435],[113,-30,69,0.7170929424464703],[113,-30,70,0.7177491681650281],[113,-30,71,0.7186342952772975],[113,-30,72,0.7201232621446252],[113,-30,73,0.7221261356025934],[113,-30,74,0.7238733735866845],[113,-30,75,0.7250835453160107],[113,-30,76,0.7260262328200042],[113,-30,77,0.7269220417365432],[113,-30,78,0.7279049421194941],[113,-30,79,0.7290659281425178],[113,-29,64,0.7038329131901264],[113,-29,65,0.705742385238409],[113,-29,66,0.7072486812248826],[113,-29,67,0.7081862557679415],[113,-29,68,0.7087225541472435],[113,-29,69,0.7092804424464703],[113,-29,70,0.7099366681650281],[113,-29,71,0.7108217952772975],[113,-29,72,0.7123107621446252],[113,-29,73,0.7143136356025934],[113,-29,74,0.7160608735866845],[113,-29,75,0.7172710453160107],[113,-29,76,0.7182137328200042],[113,-29,77,0.7191095417365432],[113,-29,78,0.7200924421194941],[113,-29,79,0.7212534281425178],[113,-28,64,0.6960204131901264],[113,-28,65,0.697929885238409],[113,-28,66,0.6994361812248826],[113,-28,67,0.7003737557679415],[113,-28,68,0.7009100541472435],[113,-28,69,0.7014679424464703],[113,-28,70,0.7021241681650281],[113,-28,71,0.7030092952772975],[113,-28,72,0.7044982621446252],[113,-28,73,0.7065011356025934],[113,-28,74,0.7082483735866845],[113,-28,75,0.7094585453160107],[113,-28,76,0.7104012328200042],[113,-28,77,0.7112970417365432],[113,-28,78,0.7122799421194941],[113,-28,79,0.7134409281425178],[113,-27,64,0.6882079131901264],[113,-27,65,0.690117385238409],[113,-27,66,0.6916236812248826],[113,-27,67,0.6925612557679415],[113,-27,68,0.6930975541472435],[113,-27,69,0.6936554424464703],[113,-27,70,0.6943116681650281],[113,-27,71,0.6951967952772975],[113,-27,72,0.6966857621446252],[113,-27,73,0.6986886356025934],[113,-27,74,0.7004358735866845],[113,-27,75,0.7016460453160107],[113,-27,76,0.7025887328200042],[113,-27,77,0.7034845417365432],[113,-27,78,0.7044674421194941],[113,-27,79,0.7056284281425178],[113,-26,64,0.6803954131901264],[113,-26,65,0.682304885238409],[113,-26,66,0.6838111812248826],[113,-26,67,0.6847487557679415],[113,-26,68,0.6852850541472435],[113,-26,69,0.6858429424464703],[113,-26,70,0.6864991681650281],[113,-26,71,0.6873842952772975],[113,-26,72,0.6888732621446252],[113,-26,73,0.6908761356025934],[113,-26,74,0.6926233735866845],[113,-26,75,0.6938335453160107],[113,-26,76,0.6947762328200042],[113,-26,77,0.6956720417365432],[113,-26,78,0.6966549421194941],[113,-26,79,0.6978159281425178],[113,-25,64,0.6725829131901264],[113,-25,65,0.674492385238409],[113,-25,66,0.6759986812248826],[113,-25,67,0.6769362557679415],[113,-25,68,0.6774725541472435],[113,-25,69,0.6780304424464703],[113,-25,70,0.6786866681650281],[113,-25,71,0.6795717952772975],[113,-25,72,0.6810607621446252],[113,-25,73,0.6830636356025934],[113,-25,74,0.6848108735866845],[113,-25,75,0.6860210453160107],[113,-25,76,0.6869637328200042],[113,-25,77,0.6878595417365432],[113,-25,78,0.6888424421194941],[113,-25,79,0.6900034281425178],[113,-24,64,0.6647704131901264],[113,-24,65,0.666679885238409],[113,-24,66,0.6681861812248826],[113,-24,67,0.6691237557679415],[113,-24,68,0.6696600541472435],[113,-24,69,0.6702179424464703],[113,-24,70,0.6708741681650281],[113,-24,71,0.6717592952772975],[113,-24,72,0.6732482621446252],[113,-24,73,0.6752511356025934],[113,-24,74,0.6769983735866845],[113,-24,75,0.6782085453160107],[113,-24,76,0.6791512328200042],[113,-24,77,0.6800470417365432],[113,-24,78,0.6810299421194941],[113,-24,79,0.6821909281425178],[113,-23,64,0.6569579131901264],[113,-23,65,0.658867385238409],[113,-23,66,0.6603736812248826],[113,-23,67,0.6613112557679415],[113,-23,68,0.6618475541472435],[113,-23,69,0.6624054424464703],[113,-23,70,0.6630616681650281],[113,-23,71,0.6639467952772975],[113,-23,72,0.6654357621446252],[113,-23,73,0.6674386356025934],[113,-23,74,0.6691858735866845],[113,-23,75,0.6703960453160107],[113,-23,76,0.6713387328200042],[113,-23,77,0.6722345417365432],[113,-23,78,0.6732174421194941],[113,-23,79,0.6743784281425178],[113,-22,64,0.6491454131901264],[113,-22,65,0.651054885238409],[113,-22,66,0.6525611812248826],[113,-22,67,0.6534987557679415],[113,-22,68,0.6540350541472435],[113,-22,69,0.6545929424464703],[113,-22,70,0.6552491681650281],[113,-22,71,0.6561342952772975],[113,-22,72,0.6576232621446252],[113,-22,73,0.6596261356025934],[113,-22,74,0.6613733735866845],[113,-22,75,0.6625835453160107],[113,-22,76,0.6635262328200042],[113,-22,77,0.6644220417365432],[113,-22,78,0.6654049421194941],[113,-22,79,0.6665659281425178],[113,-21,64,0.6413329131901264],[113,-21,65,0.643242385238409],[113,-21,66,0.6447486812248826],[113,-21,67,0.6456862557679415],[113,-21,68,0.6462225541472435],[113,-21,69,0.6467804424464703],[113,-21,70,0.6474366681650281],[113,-21,71,0.6483217952772975],[113,-21,72,0.6498107621446252],[113,-21,73,0.6518136356025934],[113,-21,74,0.6535608735866845],[113,-21,75,0.6547710453160107],[113,-21,76,0.6557137328200042],[113,-21,77,0.6566095417365432],[113,-21,78,0.6575924421194941],[113,-21,79,0.6587534281425178],[113,-20,64,0.6335204131901264],[113,-20,65,0.635429885238409],[113,-20,66,0.6369361812248826],[113,-20,67,0.6378737557679415],[113,-20,68,0.6384100541472435],[113,-20,69,0.6389679424464703],[113,-20,70,0.6396241681650281],[113,-20,71,0.6405092952772975],[113,-20,72,0.6419982621446252],[113,-20,73,0.6440011356025934],[113,-20,74,0.6457483735866845],[113,-20,75,0.6469585453160107],[113,-20,76,0.6479012328200042],[113,-20,77,0.6487970417365432],[113,-20,78,0.6497799421194941],[113,-20,79,0.6509409281425178],[113,-19,64,0.6257079131901264],[113,-19,65,0.627617385238409],[113,-19,66,0.6291236812248826],[113,-19,67,0.6300612557679415],[113,-19,68,0.6305975541472435],[113,-19,69,0.6311554424464703],[113,-19,70,0.6318116681650281],[113,-19,71,0.6326967952772975],[113,-19,72,0.6341857621446252],[113,-19,73,0.6361886356025934],[113,-19,74,0.6379358735866845],[113,-19,75,0.6391460453160107],[113,-19,76,0.6400887328200042],[113,-19,77,0.6409845417365432],[113,-19,78,0.6419674421194941],[113,-19,79,0.6431284281425178],[113,-18,64,0.6178954131901264],[113,-18,65,0.619804885238409],[113,-18,66,0.6213111812248826],[113,-18,67,0.6222487557679415],[113,-18,68,0.6227850541472435],[113,-18,69,0.6233429424464703],[113,-18,70,0.6239991681650281],[113,-18,71,0.6248842952772975],[113,-18,72,0.6263732621446252],[113,-18,73,0.6283761356025934],[113,-18,74,0.6301233735866845],[113,-18,75,0.6313335453160107],[113,-18,76,0.6322762328200042],[113,-18,77,0.6331720417365432],[113,-18,78,0.6341549421194941],[113,-18,79,0.6353159281425178],[113,-17,64,0.6100829131901264],[113,-17,65,0.611992385238409],[113,-17,66,0.6134986812248826],[113,-17,67,0.6144362557679415],[113,-17,68,0.6149725541472435],[113,-17,69,0.6155304424464703],[113,-17,70,0.6161866681650281],[113,-17,71,0.6170717952772975],[113,-17,72,0.6185607621446252],[113,-17,73,0.6205636356025934],[113,-17,74,0.6223108735866845],[113,-17,75,0.6235210453160107],[113,-17,76,0.6244637328200042],[113,-17,77,0.6253595417365432],[113,-17,78,0.6263424421194941],[113,-17,79,0.6275034281425178],[113,-16,64,0.6022704131901264],[113,-16,65,0.604179885238409],[113,-16,66,0.6056861812248826],[113,-16,67,0.6066237557679415],[113,-16,68,0.6071600541472435],[113,-16,69,0.6077179424464703],[113,-16,70,0.6083741681650281],[113,-16,71,0.6092592952772975],[113,-16,72,0.6107482621446252],[113,-16,73,0.6127511356025934],[113,-16,74,0.6144983735866845],[113,-16,75,0.6157085453160107],[113,-16,76,0.6166512328200042],[113,-16,77,0.6175470417365432],[113,-16,78,0.6185299421194941],[113,-16,79,0.6196909281425178],[113,-15,64,0.5944579131901264],[113,-15,65,0.596367385238409],[113,-15,66,0.5978736812248826],[113,-15,67,0.5988112557679415],[113,-15,68,0.5993475541472435],[113,-15,69,0.5999054424464703],[113,-15,70,0.6005616681650281],[113,-15,71,0.6014467952772975],[113,-15,72,0.6029357621446252],[113,-15,73,0.6049386356025934],[113,-15,74,0.6066858735866845],[113,-15,75,0.6078960453160107],[113,-15,76,0.6088387328200042],[113,-15,77,0.6097345417365432],[113,-15,78,0.6107174421194941],[113,-15,79,0.6118784281425178],[113,-14,64,0.5866454131901264],[113,-14,65,0.588554885238409],[113,-14,66,0.5900611812248826],[113,-14,67,0.5909987557679415],[113,-14,68,0.5915350541472435],[113,-14,69,0.5920929424464703],[113,-14,70,0.5927491681650281],[113,-14,71,0.5936342952772975],[113,-14,72,0.5951232621446252],[113,-14,73,0.5971261356025934],[113,-14,74,0.5988733735866845],[113,-14,75,0.6000835453160107],[113,-14,76,0.6010262328200042],[113,-14,77,0.6019220417365432],[113,-14,78,0.6029049421194941],[113,-14,79,0.6040659281425178],[113,-13,64,0.5788329131901264],[113,-13,65,0.580742385238409],[113,-13,66,0.5822486812248826],[113,-13,67,0.5831862557679415],[113,-13,68,0.5837225541472435],[113,-13,69,0.5842804424464703],[113,-13,70,0.5849366681650281],[113,-13,71,0.5858217952772975],[113,-13,72,0.5873107621446252],[113,-13,73,0.5893136356025934],[113,-13,74,0.5910608735866845],[113,-13,75,0.5922710453160107],[113,-13,76,0.5932137328200042],[113,-13,77,0.5941095417365432],[113,-13,78,0.5950924421194941],[113,-13,79,0.5962534281425178],[113,-12,64,0.5710204131901264],[113,-12,65,0.572929885238409],[113,-12,66,0.5744361812248826],[113,-12,67,0.5753737557679415],[113,-12,68,0.5759100541472435],[113,-12,69,0.5764679424464703],[113,-12,70,0.5771241681650281],[113,-12,71,0.5780092952772975],[113,-12,72,0.5794982621446252],[113,-12,73,0.5815011356025934],[113,-12,74,0.5832483735866845],[113,-12,75,0.5844585453160107],[113,-12,76,0.5854012328200042],[113,-12,77,0.5862970417365432],[113,-12,78,0.5872799421194941],[113,-12,79,0.5884409281425178],[113,-11,64,0.5632079131901264],[113,-11,65,0.565117385238409],[113,-11,66,0.5666236812248826],[113,-11,67,0.5675612557679415],[113,-11,68,0.5680975541472435],[113,-11,69,0.5686554424464703],[113,-11,70,0.5693116681650281],[113,-11,71,0.5701967952772975],[113,-11,72,0.5716857621446252],[113,-11,73,0.5736886356025934],[113,-11,74,0.5754358735866845],[113,-11,75,0.5766460453160107],[113,-11,76,0.5775887328200042],[113,-11,77,0.5784845417365432],[113,-11,78,0.5794674421194941],[113,-11,79,0.5806284281425178],[113,-10,64,0.5553954131901264],[113,-10,65,0.557304885238409],[113,-10,66,0.5588111812248826],[113,-10,67,0.5597487557679415],[113,-10,68,0.5602850541472435],[113,-10,69,0.5608429424464703],[113,-10,70,0.5614991681650281],[113,-10,71,0.5623842952772975],[113,-10,72,0.5638732621446252],[113,-10,73,0.5658761356025934],[113,-10,74,0.5676233735866845],[113,-10,75,0.5688335453160107],[113,-10,76,0.5697762328200042],[113,-10,77,0.5706720417365432],[113,-10,78,0.5716549421194941],[113,-10,79,0.5728159281425178],[113,-9,64,0.5475829131901264],[113,-9,65,0.549492385238409],[113,-9,66,0.5509986812248826],[113,-9,67,0.5519362557679415],[113,-9,68,0.5524725541472435],[113,-9,69,0.5530304424464703],[113,-9,70,0.5536866681650281],[113,-9,71,0.5545717952772975],[113,-9,72,0.5560607621446252],[113,-9,73,0.5580636356025934],[113,-9,74,0.5598108735866845],[113,-9,75,0.5610210453160107],[113,-9,76,0.5619637328200042],[113,-9,77,0.5628595417365432],[113,-9,78,0.5638424421194941],[113,-9,79,0.5650034281425178],[113,-8,64,0.5397704131901264],[113,-8,65,0.541679885238409],[113,-8,66,0.5431861812248826],[113,-8,67,0.5441237557679415],[113,-8,68,0.5446600541472435],[113,-8,69,0.5452179424464703],[113,-8,70,0.5458741681650281],[113,-8,71,0.5467592952772975],[113,-8,72,0.5482482621446252],[113,-8,73,0.5502511356025934],[113,-8,74,0.5519983735866845],[113,-8,75,0.5532085453160107],[113,-8,76,0.5541512328200042],[113,-8,77,0.5550470417365432],[113,-8,78,0.5560299421194941],[113,-8,79,0.5571909281425178],[113,-7,64,0.5319579131901264],[113,-7,65,0.533867385238409],[113,-7,66,0.5353736812248826],[113,-7,67,0.5363112557679415],[113,-7,68,0.5368475541472435],[113,-7,69,0.5374054424464703],[113,-7,70,0.5380616681650281],[113,-7,71,0.5389467952772975],[113,-7,72,0.5404357621446252],[113,-7,73,0.5424386356025934],[113,-7,74,0.5441858735866845],[113,-7,75,0.5453960453160107],[113,-7,76,0.5463387328200042],[113,-7,77,0.5472345417365432],[113,-7,78,0.5482174421194941],[113,-7,79,0.5493784281425178],[113,-6,64,0.5241454131901264],[113,-6,65,0.526054885238409],[113,-6,66,0.5275611812248826],[113,-6,67,0.5284987557679415],[113,-6,68,0.5290350541472435],[113,-6,69,0.5295929424464703],[113,-6,70,0.5302491681650281],[113,-6,71,0.5311342952772975],[113,-6,72,0.5326232621446252],[113,-6,73,0.5346261356025934],[113,-6,74,0.5363733735866845],[113,-6,75,0.5375835453160107],[113,-6,76,0.5385262328200042],[113,-6,77,0.5394220417365432],[113,-6,78,0.5404049421194941],[113,-6,79,0.5415659281425178],[113,-5,64,0.5163329131901264],[113,-5,65,0.518242385238409],[113,-5,66,0.5197486812248826],[113,-5,67,0.5206862557679415],[113,-5,68,0.5212225541472435],[113,-5,69,0.5217804424464703],[113,-5,70,0.5224366681650281],[113,-5,71,0.5233217952772975],[113,-5,72,0.5248107621446252],[113,-5,73,0.5268136356025934],[113,-5,74,0.5285608735866845],[113,-5,75,0.5297710453160107],[113,-5,76,0.5307137328200042],[113,-5,77,0.5316095417365432],[113,-5,78,0.5325924421194941],[113,-5,79,0.5337534281425178],[113,-4,64,0.5085204131901264],[113,-4,65,0.510429885238409],[113,-4,66,0.5119361812248826],[113,-4,67,0.5128737557679415],[113,-4,68,0.5134100541472435],[113,-4,69,0.5139679424464703],[113,-4,70,0.5146241681650281],[113,-4,71,0.5155092952772975],[113,-4,72,0.5169982621446252],[113,-4,73,0.5190011356025934],[113,-4,74,0.5207483735866845],[113,-4,75,0.5219585453160107],[113,-4,76,0.5229012328200042],[113,-4,77,0.5237970417365432],[113,-4,78,0.5247799421194941],[113,-4,79,0.5259409281425178],[113,-3,64,0.5007079131901264],[113,-3,65,0.502617385238409],[113,-3,66,0.5041236812248826],[113,-3,67,0.5050612557679415],[113,-3,68,0.5055975541472435],[113,-3,69,0.5061554424464703],[113,-3,70,0.5068116681650281],[113,-3,71,0.5076967952772975],[113,-3,72,0.5091857621446252],[113,-3,73,0.5111886356025934],[113,-3,74,0.5129358735866845],[113,-3,75,0.5141460453160107],[113,-3,76,0.5150887328200042],[113,-3,77,0.5159845417365432],[113,-3,78,0.5169674421194941],[113,-3,79,0.5181284281425178],[113,-2,64,0.4928954131901264],[113,-2,65,0.49480488523840904],[113,-2,66,0.4963111812248826],[113,-2,67,0.4972487557679415],[113,-2,68,0.4977850541472435],[113,-2,69,0.49834294244647026],[113,-2,70,0.4989991681650281],[113,-2,71,0.4998842952772975],[113,-2,72,0.5013732621446252],[113,-2,73,0.5033761356025934],[113,-2,74,0.5051233735866845],[113,-2,75,0.5063335453160107],[113,-2,76,0.5072762328200042],[113,-2,77,0.5081720417365432],[113,-2,78,0.5091549421194941],[113,-2,79,0.5103159281425178],[113,-1,64,0.4850829131901264],[113,-1,65,0.48699238523840904],[113,-1,66,0.4884986812248826],[113,-1,67,0.4894362557679415],[113,-1,68,0.4899725541472435],[113,-1,69,0.49053044244647026],[113,-1,70,0.4911866681650281],[113,-1,71,0.4920717952772975],[113,-1,72,0.4935607621446252],[113,-1,73,0.4955636356025934],[113,-1,74,0.49731087358668447],[113,-1,75,0.4985210453160107],[113,-1,76,0.4994637328200042],[113,-1,77,0.5003595417365432],[113,-1,78,0.5013424421194941],[113,-1,79,0.5025034281425178],[113,0,64,0.4772704131901264],[113,0,65,0.47917988523840904],[113,0,66,0.4806861812248826],[113,0,67,0.4816237557679415],[113,0,68,0.4821600541472435],[113,0,69,0.48271794244647026],[113,0,70,0.4833741681650281],[113,0,71,0.4842592952772975],[113,0,72,0.4857482621446252],[113,0,73,0.4877511356025934],[113,0,74,0.48949837358668447],[113,0,75,0.4907085453160107],[113,0,76,0.4916512328200042],[113,0,77,0.4925470417365432],[113,0,78,0.4935299421194941],[113,0,79,0.4946909281425178],[113,1,64,0.4694579131901264],[113,1,65,0.47136738523840904],[113,1,66,0.4728736812248826],[113,1,67,0.4738112557679415],[113,1,68,0.4743475541472435],[113,1,69,0.47490544244647026],[113,1,70,0.4755616681650281],[113,1,71,0.4764467952772975],[113,1,72,0.4779357621446252],[113,1,73,0.4799386356025934],[113,1,74,0.48168587358668447],[113,1,75,0.4828960453160107],[113,1,76,0.4838387328200042],[113,1,77,0.4847345417365432],[113,1,78,0.4857174421194941],[113,1,79,0.4868784281425178],[113,2,64,0.4616454131901264],[113,2,65,0.46355488523840904],[113,2,66,0.4650611812248826],[113,2,67,0.4659987557679415],[113,2,68,0.4665350541472435],[113,2,69,0.46709294244647026],[113,2,70,0.4677491681650281],[113,2,71,0.4686342952772975],[113,2,72,0.4701232621446252],[113,2,73,0.4721261356025934],[113,2,74,0.47387337358668447],[113,2,75,0.4750835453160107],[113,2,76,0.4760262328200042],[113,2,77,0.4769220417365432],[113,2,78,0.4779049421194941],[113,2,79,0.4790659281425178],[113,3,64,0.4538329131901264],[113,3,65,0.45574238523840904],[113,3,66,0.4572486812248826],[113,3,67,0.4581862557679415],[113,3,68,0.4587225541472435],[113,3,69,0.45928044244647026],[113,3,70,0.4599366681650281],[113,3,71,0.4608217952772975],[113,3,72,0.4623107621446252],[113,3,73,0.4643136356025934],[113,3,74,0.46606087358668447],[113,3,75,0.4672710453160107],[113,3,76,0.4682137328200042],[113,3,77,0.4691095417365432],[113,3,78,0.4700924421194941],[113,3,79,0.4712534281425178],[113,4,64,0.4460204131901264],[113,4,65,0.44792988523840904],[113,4,66,0.4494361812248826],[113,4,67,0.4503737557679415],[113,4,68,0.4509100541472435],[113,4,69,0.45146794244647026],[113,4,70,0.4521241681650281],[113,4,71,0.4530092952772975],[113,4,72,0.4544982621446252],[113,4,73,0.4565011356025934],[113,4,74,0.45824837358668447],[113,4,75,0.4594585453160107],[113,4,76,0.4604012328200042],[113,4,77,0.4612970417365432],[113,4,78,0.4622799421194941],[113,4,79,0.4634409281425178],[113,5,64,0.4382079131901264],[113,5,65,0.44011738523840904],[113,5,66,0.4416236812248826],[113,5,67,0.4425612557679415],[113,5,68,0.4430975541472435],[113,5,69,0.44365544244647026],[113,5,70,0.4443116681650281],[113,5,71,0.4451967952772975],[113,5,72,0.4466857621446252],[113,5,73,0.4486886356025934],[113,5,74,0.45043587358668447],[113,5,75,0.4516460453160107],[113,5,76,0.4525887328200042],[113,5,77,0.4534845417365432],[113,5,78,0.4544674421194941],[113,5,79,0.4556284281425178],[113,6,64,0.4303954131901264],[113,6,65,0.43230488523840904],[113,6,66,0.4338111812248826],[113,6,67,0.4347487557679415],[113,6,68,0.4352850541472435],[113,6,69,0.43584294244647026],[113,6,70,0.4364991681650281],[113,6,71,0.4373842952772975],[113,6,72,0.4388732621446252],[113,6,73,0.4408761356025934],[113,6,74,0.44262337358668447],[113,6,75,0.4438335453160107],[113,6,76,0.4447762328200042],[113,6,77,0.4456720417365432],[113,6,78,0.4466549421194941],[113,6,79,0.4478159281425178],[113,7,64,0.4225829131901264],[113,7,65,0.42449238523840904],[113,7,66,0.4259986812248826],[113,7,67,0.4269362557679415],[113,7,68,0.4274725541472435],[113,7,69,0.42803044244647026],[113,7,70,0.4286866681650281],[113,7,71,0.4295717952772975],[113,7,72,0.4310607621446252],[113,7,73,0.4330636356025934],[113,7,74,0.43481087358668447],[113,7,75,0.4360210453160107],[113,7,76,0.4369637328200042],[113,7,77,0.4378595417365432],[113,7,78,0.4388424421194941],[113,7,79,0.4400034281425178],[113,8,64,0.4147704131901264],[113,8,65,0.41667988523840904],[113,8,66,0.4181861812248826],[113,8,67,0.4191237557679415],[113,8,68,0.4196600541472435],[113,8,69,0.42021794244647026],[113,8,70,0.4208741681650281],[113,8,71,0.4217592952772975],[113,8,72,0.4232482621446252],[113,8,73,0.4252511356025934],[113,8,74,0.42699837358668447],[113,8,75,0.4282085453160107],[113,8,76,0.4291512328200042],[113,8,77,0.4300470417365432],[113,8,78,0.4310299421194941],[113,8,79,0.4321909281425178],[113,9,64,0.4069579131901264],[113,9,65,0.40886738523840904],[113,9,66,0.4103736812248826],[113,9,67,0.4113112557679415],[113,9,68,0.4118475541472435],[113,9,69,0.41240544244647026],[113,9,70,0.4130616681650281],[113,9,71,0.4139467952772975],[113,9,72,0.4154357621446252],[113,9,73,0.4174386356025934],[113,9,74,0.41918587358668447],[113,9,75,0.4203960453160107],[113,9,76,0.4213387328200042],[113,9,77,0.4222345417365432],[113,9,78,0.4232174421194941],[113,9,79,0.4243784281425178],[113,10,64,0.3991454131901264],[113,10,65,0.40105488523840904],[113,10,66,0.4025611812248826],[113,10,67,0.4034987557679415],[113,10,68,0.4040350541472435],[113,10,69,0.40459294244647026],[113,10,70,0.4052491681650281],[113,10,71,0.4061342952772975],[113,10,72,0.4076232621446252],[113,10,73,0.4096261356025934],[113,10,74,0.41137337358668447],[113,10,75,0.4125835453160107],[113,10,76,0.4135262328200042],[113,10,77,0.4144220417365432],[113,10,78,0.4154049421194941],[113,10,79,0.4165659281425178],[113,11,64,0.3913329131901264],[113,11,65,0.39324238523840904],[113,11,66,0.3947486812248826],[113,11,67,0.3956862557679415],[113,11,68,0.3962225541472435],[113,11,69,0.39678044244647026],[113,11,70,0.3974366681650281],[113,11,71,0.3983217952772975],[113,11,72,0.3998107621446252],[113,11,73,0.4018136356025934],[113,11,74,0.40356087358668447],[113,11,75,0.4047710453160107],[113,11,76,0.4057137328200042],[113,11,77,0.4066095417365432],[113,11,78,0.4075924421194941],[113,11,79,0.4087534281425178],[113,12,64,0.3835204131901264],[113,12,65,0.38542988523840904],[113,12,66,0.3869361812248826],[113,12,67,0.3878737557679415],[113,12,68,0.3884100541472435],[113,12,69,0.38896794244647026],[113,12,70,0.3896241681650281],[113,12,71,0.3905092952772975],[113,12,72,0.3919982621446252],[113,12,73,0.3940011356025934],[113,12,74,0.39574837358668447],[113,12,75,0.3969585453160107],[113,12,76,0.3979012328200042],[113,12,77,0.3987970417365432],[113,12,78,0.3997799421194941],[113,12,79,0.4009409281425178],[113,13,64,0.3757079131901264],[113,13,65,0.37761738523840904],[113,13,66,0.3791236812248826],[113,13,67,0.3800612557679415],[113,13,68,0.3805975541472435],[113,13,69,0.38115544244647026],[113,13,70,0.3818116681650281],[113,13,71,0.3826967952772975],[113,13,72,0.3841857621446252],[113,13,73,0.3861886356025934],[113,13,74,0.38793587358668447],[113,13,75,0.3891460453160107],[113,13,76,0.3900887328200042],[113,13,77,0.3909845417365432],[113,13,78,0.3919674421194941],[113,13,79,0.3931284281425178],[113,14,64,0.3678954131901264],[113,14,65,0.36980488523840904],[113,14,66,0.3713111812248826],[113,14,67,0.3722487557679415],[113,14,68,0.3727850541472435],[113,14,69,0.37334294244647026],[113,14,70,0.3739991681650281],[113,14,71,0.3748842952772975],[113,14,72,0.3763732621446252],[113,14,73,0.3783761356025934],[113,14,74,0.38012337358668447],[113,14,75,0.3813335453160107],[113,14,76,0.3822762328200042],[113,14,77,0.3831720417365432],[113,14,78,0.3841549421194941],[113,14,79,0.3853159281425178],[113,15,64,0.3600829131901264],[113,15,65,0.36199238523840904],[113,15,66,0.3634986812248826],[113,15,67,0.3644362557679415],[113,15,68,0.3649725541472435],[113,15,69,0.36553044244647026],[113,15,70,0.3661866681650281],[113,15,71,0.3670717952772975],[113,15,72,0.3685607621446252],[113,15,73,0.3705636356025934],[113,15,74,0.37231087358668447],[113,15,75,0.3735210453160107],[113,15,76,0.3744637328200042],[113,15,77,0.3753595417365432],[113,15,78,0.3763424421194941],[113,15,79,0.3775034281425178],[113,16,64,0.3522704131901264],[113,16,65,0.35417988523840904],[113,16,66,0.3556861812248826],[113,16,67,0.3566237557679415],[113,16,68,0.3571600541472435],[113,16,69,0.35771794244647026],[113,16,70,0.3583741681650281],[113,16,71,0.3592592952772975],[113,16,72,0.3607482621446252],[113,16,73,0.3627511356025934],[113,16,74,0.36449837358668447],[113,16,75,0.3657085453160107],[113,16,76,0.3666512328200042],[113,16,77,0.3675470417365432],[113,16,78,0.3685299421194941],[113,16,79,0.3696909281425178],[113,17,64,0.3444579131901264],[113,17,65,0.34636738523840904],[113,17,66,0.3478736812248826],[113,17,67,0.3488112557679415],[113,17,68,0.3493475541472435],[113,17,69,0.34990544244647026],[113,17,70,0.3505616681650281],[113,17,71,0.3514467952772975],[113,17,72,0.3529357621446252],[113,17,73,0.3549386356025934],[113,17,74,0.35668587358668447],[113,17,75,0.3578960453160107],[113,17,76,0.3588387328200042],[113,17,77,0.3597345417365432],[113,17,78,0.3607174421194941],[113,17,79,0.3618784281425178],[113,18,64,0.3366454131901264],[113,18,65,0.33855488523840904],[113,18,66,0.3400611812248826],[113,18,67,0.3409987557679415],[113,18,68,0.3415350541472435],[113,18,69,0.34209294244647026],[113,18,70,0.3427491681650281],[113,18,71,0.3436342952772975],[113,18,72,0.3451232621446252],[113,18,73,0.3471261356025934],[113,18,74,0.34887337358668447],[113,18,75,0.3500835453160107],[113,18,76,0.3510262328200042],[113,18,77,0.3519220417365432],[113,18,78,0.3529049421194941],[113,18,79,0.3540659281425178],[113,19,64,0.3288329131901264],[113,19,65,0.33074238523840904],[113,19,66,0.3322486812248826],[113,19,67,0.3331862557679415],[113,19,68,0.3337225541472435],[113,19,69,0.33428044244647026],[113,19,70,0.3349366681650281],[113,19,71,0.3358217952772975],[113,19,72,0.3373107621446252],[113,19,73,0.3393136356025934],[113,19,74,0.34106087358668447],[113,19,75,0.3422710453160107],[113,19,76,0.3432137328200042],[113,19,77,0.3441095417365432],[113,19,78,0.3450924421194941],[113,19,79,0.3462534281425178],[113,20,64,0.3210204131901264],[113,20,65,0.32292988523840904],[113,20,66,0.3244361812248826],[113,20,67,0.3253737557679415],[113,20,68,0.3259100541472435],[113,20,69,0.32646794244647026],[113,20,70,0.3271241681650281],[113,20,71,0.3280092952772975],[113,20,72,0.3294982621446252],[113,20,73,0.3315011356025934],[113,20,74,0.33324837358668447],[113,20,75,0.3344585453160107],[113,20,76,0.3354012328200042],[113,20,77,0.3362970417365432],[113,20,78,0.3372799421194941],[113,20,79,0.3384409281425178],[113,21,64,0.3132079131901264],[113,21,65,0.31511738523840904],[113,21,66,0.3166236812248826],[113,21,67,0.3175612557679415],[113,21,68,0.3180975541472435],[113,21,69,0.31865544244647026],[113,21,70,0.3193116681650281],[113,21,71,0.3201967952772975],[113,21,72,0.3216857621446252],[113,21,73,0.3236886356025934],[113,21,74,0.32543587358668447],[113,21,75,0.3266460453160107],[113,21,76,0.3275887328200042],[113,21,77,0.3284845417365432],[113,21,78,0.3294674421194941],[113,21,79,0.3306284281425178],[113,22,64,0.3053954131901264],[113,22,65,0.30730488523840904],[113,22,66,0.3088111812248826],[113,22,67,0.3097487557679415],[113,22,68,0.3102850541472435],[113,22,69,0.31084294244647026],[113,22,70,0.3114991681650281],[113,22,71,0.3123842952772975],[113,22,72,0.3138732621446252],[113,22,73,0.3158761356025934],[113,22,74,0.31762337358668447],[113,22,75,0.3188335453160107],[113,22,76,0.3197762328200042],[113,22,77,0.3206720417365432],[113,22,78,0.3216549421194941],[113,22,79,0.3228159281425178],[113,23,64,0.2975829131901264],[113,23,65,0.29949238523840904],[113,23,66,0.3009986812248826],[113,23,67,0.3019362557679415],[113,23,68,0.3024725541472435],[113,23,69,0.30303044244647026],[113,23,70,0.3036866681650281],[113,23,71,0.3045717952772975],[113,23,72,0.3060607621446252],[113,23,73,0.3080636356025934],[113,23,74,0.30981087358668447],[113,23,75,0.3110210453160107],[113,23,76,0.3119637328200042],[113,23,77,0.3128595417365432],[113,23,78,0.3138424421194941],[113,23,79,0.3150034281425178],[113,24,64,0.2897704131901264],[113,24,65,0.29167988523840904],[113,24,66,0.2931861812248826],[113,24,67,0.2941237557679415],[113,24,68,0.2946600541472435],[113,24,69,0.29521794244647026],[113,24,70,0.2958741681650281],[113,24,71,0.2967592952772975],[113,24,72,0.2982482621446252],[113,24,73,0.3002511356025934],[113,24,74,0.30199837358668447],[113,24,75,0.3032085453160107],[113,24,76,0.3041512328200042],[113,24,77,0.3050470417365432],[113,24,78,0.3060299421194941],[113,24,79,0.3071909281425178],[113,25,64,0.2819579131901264],[113,25,65,0.28386738523840904],[113,25,66,0.2853736812248826],[113,25,67,0.2863112557679415],[113,25,68,0.2868475541472435],[113,25,69,0.28740544244647026],[113,25,70,0.2880616681650281],[113,25,71,0.2889467952772975],[113,25,72,0.2904357621446252],[113,25,73,0.2924386356025934],[113,25,74,0.29418587358668447],[113,25,75,0.2953960453160107],[113,25,76,0.2963387328200042],[113,25,77,0.2972345417365432],[113,25,78,0.2982174421194941],[113,25,79,0.2993784281425178],[113,26,64,0.2741454131901264],[113,26,65,0.27605488523840904],[113,26,66,0.2775611812248826],[113,26,67,0.2784987557679415],[113,26,68,0.2790350541472435],[113,26,69,0.27959294244647026],[113,26,70,0.2802491681650281],[113,26,71,0.2811342952772975],[113,26,72,0.2826232621446252],[113,26,73,0.2846261356025934],[113,26,74,0.28637337358668447],[113,26,75,0.2875835453160107],[113,26,76,0.2885262328200042],[113,26,77,0.2894220417365432],[113,26,78,0.2904049421194941],[113,26,79,0.2915659281425178],[113,27,64,0.2663329131901264],[113,27,65,0.26824238523840904],[113,27,66,0.2697486812248826],[113,27,67,0.2706862557679415],[113,27,68,0.2712225541472435],[113,27,69,0.27178044244647026],[113,27,70,0.2724366681650281],[113,27,71,0.2733217952772975],[113,27,72,0.2748107621446252],[113,27,73,0.2768136356025934],[113,27,74,0.27856087358668447],[113,27,75,0.2797710453160107],[113,27,76,0.2807137328200042],[113,27,77,0.2816095417365432],[113,27,78,0.2825924421194941],[113,27,79,0.2837534281425178],[113,28,64,0.2585204131901264],[113,28,65,0.26042988523840904],[113,28,66,0.2619361812248826],[113,28,67,0.2628737557679415],[113,28,68,0.2634100541472435],[113,28,69,0.26396794244647026],[113,28,70,0.2646241681650281],[113,28,71,0.2655092952772975],[113,28,72,0.2669982621446252],[113,28,73,0.2690011356025934],[113,28,74,0.27074837358668447],[113,28,75,0.2719585453160107],[113,28,76,0.2729012328200042],[113,28,77,0.2737970417365432],[113,28,78,0.2747799421194941],[113,28,79,0.2759409281425178],[113,29,64,0.2507079131901264],[113,29,65,0.25261738523840904],[113,29,66,0.2541236812248826],[113,29,67,0.2550612557679415],[113,29,68,0.2555975541472435],[113,29,69,0.25615544244647026],[113,29,70,0.2568116681650281],[113,29,71,0.2576967952772975],[113,29,72,0.2591857621446252],[113,29,73,0.2611886356025934],[113,29,74,0.26293587358668447],[113,29,75,0.2641460453160107],[113,29,76,0.2650887328200042],[113,29,77,0.2659845417365432],[113,29,78,0.2669674421194941],[113,29,79,0.2681284281425178],[113,30,64,0.24289541319012642],[113,30,65,0.24480488523840904],[113,30,66,0.2463111812248826],[113,30,67,0.24724875576794147],[113,30,68,0.2477850541472435],[113,30,69,0.24834294244647026],[113,30,70,0.2489991681650281],[113,30,71,0.2498842952772975],[113,30,72,0.2513732621446252],[113,30,73,0.2533761356025934],[113,30,74,0.25512337358668447],[113,30,75,0.2563335453160107],[113,30,76,0.2572762328200042],[113,30,77,0.2581720417365432],[113,30,78,0.2591549421194941],[113,30,79,0.2603159281425178],[113,31,64,0.23508291319012642],[113,31,65,0.23699238523840904],[113,31,66,0.2384986812248826],[113,31,67,0.23943625576794147],[113,31,68,0.2399725541472435],[113,31,69,0.24053044244647026],[113,31,70,0.2411866681650281],[113,31,71,0.2420717952772975],[113,31,72,0.2435607621446252],[113,31,73,0.24556363560259342],[113,31,74,0.24731087358668447],[113,31,75,0.2485210453160107],[113,31,76,0.24946373282000422],[113,31,77,0.2503595417365432],[113,31,78,0.2513424421194941],[113,31,79,0.2525034281425178],[113,32,64,0.22727041319012642],[113,32,65,0.22917988523840904],[113,32,66,0.2306861812248826],[113,32,67,0.23162375576794147],[113,32,68,0.2321600541472435],[113,32,69,0.23271794244647026],[113,32,70,0.2333741681650281],[113,32,71,0.2342592952772975],[113,32,72,0.2357482621446252],[113,32,73,0.23775113560259342],[113,32,74,0.23949837358668447],[113,32,75,0.2407085453160107],[113,32,76,0.24165123282000422],[113,32,77,0.24254704173654318],[113,32,78,0.24352994211949408],[113,32,79,0.2446909281425178],[113,33,64,0.21945791319012642],[113,33,65,0.22136738523840904],[113,33,66,0.2228736812248826],[113,33,67,0.22381125576794147],[113,33,68,0.2243475541472435],[113,33,69,0.22490544244647026],[113,33,70,0.2255616681650281],[113,33,71,0.2264467952772975],[113,33,72,0.2279357621446252],[113,33,73,0.22993863560259342],[113,33,74,0.23168587358668447],[113,33,75,0.2328960453160107],[113,33,76,0.23383873282000422],[113,33,77,0.23473454173654318],[113,33,78,0.23571744211949408],[113,33,79,0.2368784281425178],[113,34,64,0.21164541319012642],[113,34,65,0.21355488523840904],[113,34,66,0.2150611812248826],[113,34,67,0.21599875576794147],[113,34,68,0.2165350541472435],[113,34,69,0.21709294244647026],[113,34,70,0.2177491681650281],[113,34,71,0.2186342952772975],[113,34,72,0.2201232621446252],[113,34,73,0.22212613560259342],[113,34,74,0.22387337358668447],[113,34,75,0.2250835453160107],[113,34,76,0.22602623282000422],[113,34,77,0.22692204173654318],[113,34,78,0.22790494211949408],[113,34,79,0.2290659281425178],[113,35,64,0.20383291319012642],[113,35,65,0.20574238523840904],[113,35,66,0.2072486812248826],[113,35,67,0.20818625576794147],[113,35,68,0.2087225541472435],[113,35,69,0.20928044244647026],[113,35,70,0.2099366681650281],[113,35,71,0.2108217952772975],[113,35,72,0.2123107621446252],[113,35,73,0.21431363560259342],[113,35,74,0.21606087358668447],[113,35,75,0.2172710453160107],[113,35,76,0.21821373282000422],[113,35,77,0.21910954173654318],[113,35,78,0.22009244211949408],[113,35,79,0.2212534281425178],[113,36,64,0.19602041319012642],[113,36,65,0.19792988523840904],[113,36,66,0.1994361812248826],[113,36,67,0.20037375576794147],[113,36,68,0.2009100541472435],[113,36,69,0.20146794244647026],[113,36,70,0.2021241681650281],[113,36,71,0.2030092952772975],[113,36,72,0.2044982621446252],[113,36,73,0.20650113560259342],[113,36,74,0.20824837358668447],[113,36,75,0.2094585453160107],[113,36,76,0.21040123282000422],[113,36,77,0.21129704173654318],[113,36,78,0.21227994211949408],[113,36,79,0.2134409281425178],[113,37,64,0.18820791319012642],[113,37,65,0.19011738523840904],[113,37,66,0.1916236812248826],[113,37,67,0.19256125576794147],[113,37,68,0.1930975541472435],[113,37,69,0.19365544244647026],[113,37,70,0.1943116681650281],[113,37,71,0.1951967952772975],[113,37,72,0.1966857621446252],[113,37,73,0.19868863560259342],[113,37,74,0.20043587358668447],[113,37,75,0.2016460453160107],[113,37,76,0.20258873282000422],[113,37,77,0.20348454173654318],[113,37,78,0.20446744211949408],[113,37,79,0.2056284281425178],[113,38,64,0.18039541319012642],[113,38,65,0.18230488523840904],[113,38,66,0.1838111812248826],[113,38,67,0.18474875576794147],[113,38,68,0.1852850541472435],[113,38,69,0.18584294244647026],[113,38,70,0.1864991681650281],[113,38,71,0.1873842952772975],[113,38,72,0.1888732621446252],[113,38,73,0.19087613560259342],[113,38,74,0.19262337358668447],[113,38,75,0.1938335453160107],[113,38,76,0.19477623282000422],[113,38,77,0.19567204173654318],[113,38,78,0.19665494211949408],[113,38,79,0.1978159281425178],[113,39,64,0.17258291319012642],[113,39,65,0.17449238523840904],[113,39,66,0.1759986812248826],[113,39,67,0.17693625576794147],[113,39,68,0.1774725541472435],[113,39,69,0.17803044244647026],[113,39,70,0.1786866681650281],[113,39,71,0.1795717952772975],[113,39,72,0.1810607621446252],[113,39,73,0.18306363560259342],[113,39,74,0.18481087358668447],[113,39,75,0.1860210453160107],[113,39,76,0.18696373282000422],[113,39,77,0.18785954173654318],[113,39,78,0.18884244211949408],[113,39,79,0.1900034281425178],[113,40,64,0.16477041319012642],[113,40,65,0.16667988523840904],[113,40,66,0.1681861812248826],[113,40,67,0.16912375576794147],[113,40,68,0.1696600541472435],[113,40,69,0.17021794244647026],[113,40,70,0.1708741681650281],[113,40,71,0.1717592952772975],[113,40,72,0.1732482621446252],[113,40,73,0.17525113560259342],[113,40,74,0.17699837358668447],[113,40,75,0.1782085453160107],[113,40,76,0.17915123282000422],[113,40,77,0.18004704173654318],[113,40,78,0.18102994211949408],[113,40,79,0.1821909281425178],[113,41,64,0.15695791319012642],[113,41,65,0.15886738523840904],[113,41,66,0.1603736812248826],[113,41,67,0.16131125576794147],[113,41,68,0.1618475541472435],[113,41,69,0.16240544244647026],[113,41,70,0.1630616681650281],[113,41,71,0.1639467952772975],[113,41,72,0.1654357621446252],[113,41,73,0.16743863560259342],[113,41,74,0.16918587358668447],[113,41,75,0.1703960453160107],[113,41,76,0.17133873282000422],[113,41,77,0.17223454173654318],[113,41,78,0.17321744211949408],[113,41,79,0.1743784281425178],[113,42,64,0.14914541319012642],[113,42,65,0.15105488523840904],[113,42,66,0.1525611812248826],[113,42,67,0.15349875576794147],[113,42,68,0.1540350541472435],[113,42,69,0.15459294244647026],[113,42,70,0.1552491681650281],[113,42,71,0.1561342952772975],[113,42,72,0.1576232621446252],[113,42,73,0.15962613560259342],[113,42,74,0.16137337358668447],[113,42,75,0.1625835453160107],[113,42,76,0.16352623282000422],[113,42,77,0.16442204173654318],[113,42,78,0.16540494211949408],[113,42,79,0.1665659281425178],[113,43,64,0.14133291319012642],[113,43,65,0.14324238523840904],[113,43,66,0.1447486812248826],[113,43,67,0.14568625576794147],[113,43,68,0.1462225541472435],[113,43,69,0.14678044244647026],[113,43,70,0.1474366681650281],[113,43,71,0.1483217952772975],[113,43,72,0.1498107621446252],[113,43,73,0.15181363560259342],[113,43,74,0.15356087358668447],[113,43,75,0.1547710453160107],[113,43,76,0.15571373282000422],[113,43,77,0.15660954173654318],[113,43,78,0.15759244211949408],[113,43,79,0.1587534281425178],[113,44,64,0.13352041319012642],[113,44,65,0.13542988523840904],[113,44,66,0.1369361812248826],[113,44,67,0.13787375576794147],[113,44,68,0.1384100541472435],[113,44,69,0.13896794244647026],[113,44,70,0.1396241681650281],[113,44,71,0.1405092952772975],[113,44,72,0.1419982621446252],[113,44,73,0.14400113560259342],[113,44,74,0.14574837358668447],[113,44,75,0.1469585453160107],[113,44,76,0.14790123282000422],[113,44,77,0.14879704173654318],[113,44,78,0.14977994211949408],[113,44,79,0.1509409281425178],[113,45,64,0.12570791319012642],[113,45,65,0.12761738523840904],[113,45,66,0.1291236812248826],[113,45,67,0.13006125576794147],[113,45,68,0.1305975541472435],[113,45,69,0.13115544244647026],[113,45,70,0.1318116681650281],[113,45,71,0.1326967952772975],[113,45,72,0.1341857621446252],[113,45,73,0.13618863560259342],[113,45,74,0.13793587358668447],[113,45,75,0.1391460453160107],[113,45,76,0.14008873282000422],[113,45,77,0.14098454173654318],[113,45,78,0.14196744211949408],[113,45,79,0.1431284281425178],[113,46,64,0.11789541319012642],[113,46,65,0.11980488523840904],[113,46,66,0.1213111812248826],[113,46,67,0.12224875576794147],[113,46,68,0.1227850541472435],[113,46,69,0.12334294244647026],[113,46,70,0.1239991681650281],[113,46,71,0.1248842952772975],[113,46,72,0.1263732621446252],[113,46,73,0.12837613560259342],[113,46,74,0.13012337358668447],[113,46,75,0.1313335453160107],[113,46,76,0.13227623282000422],[113,46,77,0.13317204173654318],[113,46,78,0.13415494211949408],[113,46,79,0.1353159281425178],[113,47,64,0.11008291319012642],[113,47,65,0.11199238523840904],[113,47,66,0.1134986812248826],[113,47,67,0.11443625576794147],[113,47,68,0.1149725541472435],[113,47,69,0.11553044244647026],[113,47,70,0.1161866681650281],[113,47,71,0.1170717952772975],[113,47,72,0.11856076214462519],[113,47,73,0.12056363560259342],[113,47,74,0.12231087358668447],[113,47,75,0.12352104531601071],[113,47,76,0.12446373282000422],[113,47,77,0.12535954173654318],[113,47,78,0.12634244211949408],[113,47,79,0.1275034281425178],[113,48,64,0.10227041319012642],[113,48,65,0.10417988523840904],[113,48,66,0.1056861812248826],[113,48,67,0.10662375576794147],[113,48,68,0.1071600541472435],[113,48,69,0.10771794244647026],[113,48,70,0.1083741681650281],[113,48,71,0.1092592952772975],[113,48,72,0.11074826214462519],[113,48,73,0.11275113560259342],[113,48,74,0.11449837358668447],[113,48,75,0.11570854531601071],[113,48,76,0.11665123282000422],[113,48,77,0.11754704173654318],[113,48,78,0.11852994211949408],[113,48,79,0.1196909281425178],[113,49,64,0.09445791319012642],[113,49,65,0.09636738523840904],[113,49,66,0.0978736812248826],[113,49,67,0.09881125576794147],[113,49,68,0.0993475541472435],[113,49,69,0.09990544244647026],[113,49,70,0.1005616681650281],[113,49,71,0.1014467952772975],[113,49,72,0.10293576214462519],[113,49,73,0.10493863560259342],[113,49,74,0.10668587358668447],[113,49,75,0.10789604531601071],[113,49,76,0.10883873282000422],[113,49,77,0.10973454173654318],[113,49,78,0.11071744211949408],[113,49,79,0.1118784281425178],[113,50,64,0.08664541319012642],[113,50,65,0.08855488523840904],[113,50,66,0.0900611812248826],[113,50,67,0.09099875576794147],[113,50,68,0.0915350541472435],[113,50,69,0.09209294244647026],[113,50,70,0.0927491681650281],[113,50,71,0.0936342952772975],[113,50,72,0.09512326214462519],[113,50,73,0.09712613560259342],[113,50,74,0.09887337358668447],[113,50,75,0.10008354531601071],[113,50,76,0.10102623282000422],[113,50,77,0.10192204173654318],[113,50,78,0.10290494211949408],[113,50,79,0.1040659281425178],[113,51,64,0.07883291319012642],[113,51,65,0.08074238523840904],[113,51,66,0.0822486812248826],[113,51,67,0.08318625576794147],[113,51,68,0.0837225541472435],[113,51,69,0.08428044244647026],[113,51,70,0.0849366681650281],[113,51,71,0.0858217952772975],[113,51,72,0.08731076214462519],[113,51,73,0.08931363560259342],[113,51,74,0.09106087358668447],[113,51,75,0.09227104531601071],[113,51,76,0.09321373282000422],[113,51,77,0.09410954173654318],[113,51,78,0.09509244211949408],[113,51,79,0.0962534281425178],[113,52,64,0.07102041319012642],[113,52,65,0.07292988523840904],[113,52,66,0.0744361812248826],[113,52,67,0.07537375576794147],[113,52,68,0.0759100541472435],[113,52,69,0.07646794244647026],[113,52,70,0.0771241681650281],[113,52,71,0.0780092952772975],[113,52,72,0.07949826214462519],[113,52,73,0.08150113560259342],[113,52,74,0.08324837358668447],[113,52,75,0.08445854531601071],[113,52,76,0.08540123282000422],[113,52,77,0.08629704173654318],[113,52,78,0.08727994211949408],[113,52,79,0.0884409281425178],[113,53,64,0.06320791319012642],[113,53,65,0.06511738523840904],[113,53,66,0.0666236812248826],[113,53,67,0.06756125576794147],[113,53,68,0.0680975541472435],[113,53,69,0.06865544244647026],[113,53,70,0.0693116681650281],[113,53,71,0.0701967952772975],[113,53,72,0.07168576214462519],[113,53,73,0.07368863560259342],[113,53,74,0.07543587358668447],[113,53,75,0.07664604531601071],[113,53,76,0.07758873282000422],[113,53,77,0.07848454173654318],[113,53,78,0.07946744211949408],[113,53,79,0.0806284281425178],[113,54,64,0.05539541319012642],[113,54,65,0.05730488523840904],[113,54,66,0.0588111812248826],[113,54,67,0.059748755767941475],[113,54,68,0.0602850541472435],[113,54,69,0.06084294244647026],[113,54,70,0.061499168165028095],[113,54,71,0.0623842952772975],[113,54,72,0.06387326214462519],[113,54,73,0.06587613560259342],[113,54,74,0.06762337358668447],[113,54,75,0.06883354531601071],[113,54,76,0.06977623282000422],[113,54,77,0.07067204173654318],[113,54,78,0.07165494211949408],[113,54,79,0.0728159281425178],[113,55,64,0.04758291319012642],[113,55,65,0.04949238523840904],[113,55,66,0.0509986812248826],[113,55,67,0.051936255767941475],[113,55,68,0.0524725541472435],[113,55,69,0.05303044244647026],[113,55,70,0.053686668165028095],[113,55,71,0.0545717952772975],[113,55,72,0.05606076214462519],[113,55,73,0.05806363560259342],[113,55,74,0.059810873586684465],[113,55,75,0.061021045316010714],[113,55,76,0.061963732820004225],[113,55,77,0.06285954173654318],[113,55,78,0.06384244211949408],[113,55,79,0.0650034281425178],[113,56,64,0.03977041319012642],[113,56,65,0.04167988523840904],[113,56,66,0.0431861812248826],[113,56,67,0.044123755767941475],[113,56,68,0.0446600541472435],[113,56,69,0.04521794244647026],[113,56,70,0.045874168165028095],[113,56,71,0.0467592952772975],[113,56,72,0.04824826214462519],[113,56,73,0.05025113560259342],[113,56,74,0.051998373586684465],[113,56,75,0.053208545316010714],[113,56,76,0.054151232820004225],[113,56,77,0.05504704173654318],[113,56,78,0.05602994211949408],[113,56,79,0.057190928142517805],[113,57,64,0.03195791319012642],[113,57,65,0.03386738523840904],[113,57,66,0.0353736812248826],[113,57,67,0.036311255767941475],[113,57,68,0.0368475541472435],[113,57,69,0.03740544244647026],[113,57,70,0.038061668165028095],[113,57,71,0.0389467952772975],[113,57,72,0.04043576214462519],[113,57,73,0.04243863560259342],[113,57,74,0.044185873586684465],[113,57,75,0.045396045316010714],[113,57,76,0.046338732820004225],[113,57,77,0.04723454173654318],[113,57,78,0.04821744211949408],[113,57,79,0.049378428142517805],[113,58,64,0.02414541319012642],[113,58,65,0.026054885238409042],[113,58,66,0.027561181224882603],[113,58,67,0.028498755767941475],[113,58,68,0.0290350541472435],[113,58,69,0.02959294244647026],[113,58,70,0.030249168165028095],[113,58,71,0.031134295277297497],[113,58,72,0.03262326214462519],[113,58,73,0.03462613560259342],[113,58,74,0.036373373586684465],[113,58,75,0.037583545316010714],[113,58,76,0.038526232820004225],[113,58,77,0.03942204173654318],[113,58,78,0.04040494211949408],[113,58,79,0.041565928142517805],[113,59,64,0.01633291319012642],[113,59,65,0.018242385238409042],[113,59,66,0.019748681224882603],[113,59,67,0.020686255767941475],[113,59,68,0.0212225541472435],[113,59,69,0.02178044244647026],[113,59,70,0.022436668165028095],[113,59,71,0.023321795277297497],[113,59,72,0.024810762144625187],[113,59,73,0.026813635602593422],[113,59,74,0.028560873586684465],[113,59,75,0.029771045316010714],[113,59,76,0.030713732820004225],[113,59,77,0.03160954173654318],[113,59,78,0.03259244211949408],[113,59,79,0.033753428142517805],[113,60,64,0.008520413190126419],[113,60,65,0.010429885238409042],[113,60,66,0.011936181224882603],[113,60,67,0.012873755767941475],[113,60,68,0.0134100541472435],[113,60,69,0.01396794244647026],[113,60,70,0.014624168165028095],[113,60,71,0.015509295277297497],[113,60,72,0.016998262144625187],[113,60,73,0.019001135602593422],[113,60,74,0.020748373586684465],[113,60,75,0.021958545316010714],[113,60,76,0.022901232820004225],[113,60,77,0.02379704173654318],[113,60,78,0.02477994211949408],[113,60,79,0.025940928142517805],[113,61,64,7.079131901264191E-4],[113,61,65,0.0026173852384090424],[113,61,66,0.004123681224882603],[113,61,67,0.005061255767941475],[113,61,68,0.0055975541472435],[113,61,69,0.006155442446470261],[113,61,70,0.006811668165028095],[113,61,71,0.007696795277297497],[113,61,72,0.009185762144625187],[113,61,73,0.011188635602593422],[113,61,74,0.012935873586684465],[113,61,75,0.014146045316010714],[113,61,76,0.015088732820004225],[113,61,77,0.01598454173654318],[113,61,78,0.01696744211949408],[113,61,79,0.018128428142517805],[113,62,64,-0.007104586809873581],[113,62,65,-0.005195114761590958],[113,62,66,-0.0036888187751173973],[113,62,67,-0.002751244232058525],[113,62,68,-0.0022149458527565002],[113,62,69,-0.0016570575535297394],[113,62,70,-0.0010008318349719048],[113,62,71,-1.157047227025032E-4],[113,62,72,0.001373262144625187],[113,62,73,0.003376135602593422],[113,62,74,0.005123373586684465],[113,62,75,0.006333545316010714],[113,62,76,0.007276232820004225],[113,62,77,0.008172041736543179],[113,62,78,0.00915494211949408],[113,62,79,0.010315928142517805],[113,63,64,-0.014917086809873581],[113,63,65,-0.013007614761590958],[113,63,66,-0.011501318775117397],[113,63,67,-0.010563744232058525],[113,63,68,-0.0100274458527565],[113,63,69,-0.00946955755352974],[113,63,70,-0.008813331834971905],[113,63,71,-0.007928204722702503],[113,63,72,-0.006439237855374813],[113,63,73,-0.004436364397406578],[113,63,74,-0.0026891264133155346],[113,63,75,-0.0014789546839892864],[113,63,76,-5.362671799957752E-4],[113,63,77,3.5954173654317856E-4],[113,63,78,0.0013424421194940805],[113,63,79,0.002503428142517805],[113,64,64,-0.02272958680987358],[113,64,65,-0.020820114761590958],[113,64,66,-0.019313818775117397],[113,64,67,-0.018376244232058525],[113,64,68,-0.0178399458527565],[113,64,69,-0.01728205755352974],[113,64,70,-0.016625831834971905],[113,64,71,-0.015740704722702503],[113,64,72,-0.014251737855374813],[113,64,73,-0.012248864397406578],[113,64,74,-0.010501626413315535],[113,64,75,-0.009291454683989286],[113,64,76,-0.008348767179995775],[113,64,77,-0.0074529582634568214],[113,64,78,-0.0064700578805059195],[113,64,79,-0.005309071857482195],[113,65,64,-0.03054208680987358],[113,65,65,-0.028632614761590958],[113,65,66,-0.027126318775117397],[113,65,67,-0.026188744232058525],[113,65,68,-0.0256524458527565],[113,65,69,-0.02509455755352974],[113,65,70,-0.024438331834971905],[113,65,71,-0.023553204722702503],[113,65,72,-0.022064237855374813],[113,65,73,-0.020061364397406578],[113,65,74,-0.018314126413315535],[113,65,75,-0.017103954683989286],[113,65,76,-0.016161267179995775],[113,65,77,-0.015265458263456821],[113,65,78,-0.01428255788050592],[113,65,79,-0.013121571857482195],[113,66,64,-0.03835458680987358],[113,66,65,-0.03644511476159096],[113,66,66,-0.0349388187751174],[113,66,67,-0.034001244232058525],[113,66,68,-0.0334649458527565],[113,66,69,-0.03290705755352974],[113,66,70,-0.032250831834971905],[113,66,71,-0.0313657047227025],[113,66,72,-0.029876737855374813],[113,66,73,-0.027873864397406578],[113,66,74,-0.026126626413315535],[113,66,75,-0.024916454683989286],[113,66,76,-0.023973767179995775],[113,66,77,-0.02307795826345682],[113,66,78,-0.02209505788050592],[113,66,79,-0.020934071857482195],[113,67,64,-0.04616708680987358],[113,67,65,-0.04425761476159096],[113,67,66,-0.0427513187751174],[113,67,67,-0.041813744232058525],[113,67,68,-0.0412774458527565],[113,67,69,-0.04071955755352974],[113,67,70,-0.040063331834971905],[113,67,71,-0.0391782047227025],[113,67,72,-0.03768923785537481],[113,67,73,-0.03568636439740658],[113,67,74,-0.033939126413315535],[113,67,75,-0.032728954683989286],[113,67,76,-0.031786267179995775],[113,67,77,-0.03089045826345682],[113,67,78,-0.02990755788050592],[113,67,79,-0.028746571857482195],[113,68,64,-0.05397958680987358],[113,68,65,-0.05207011476159096],[113,68,66,-0.0505638187751174],[113,68,67,-0.049626244232058525],[113,68,68,-0.0490899458527565],[113,68,69,-0.04853205755352974],[113,68,70,-0.047875831834971905],[113,68,71,-0.0469907047227025],[113,68,72,-0.04550173785537481],[113,68,73,-0.04349886439740658],[113,68,74,-0.041751626413315535],[113,68,75,-0.040541454683989286],[113,68,76,-0.039598767179995775],[113,68,77,-0.03870295826345682],[113,68,78,-0.03772005788050592],[113,68,79,-0.036559071857482195],[113,69,64,-0.06179208680987358],[113,69,65,-0.05988261476159096],[113,69,66,-0.0583763187751174],[113,69,67,-0.057438744232058525],[113,69,68,-0.0569024458527565],[113,69,69,-0.05634455755352974],[113,69,70,-0.055688331834971905],[113,69,71,-0.0548032047227025],[113,69,72,-0.05331423785537481],[113,69,73,-0.05131136439740658],[113,69,74,-0.049564126413315535],[113,69,75,-0.048353954683989286],[113,69,76,-0.047411267179995775],[113,69,77,-0.04651545826345682],[113,69,78,-0.04553255788050592],[113,69,79,-0.044371571857482195],[113,70,64,-0.06960458680987358],[113,70,65,-0.06769511476159096],[113,70,66,-0.0661888187751174],[113,70,67,-0.06525124423205853],[113,70,68,-0.0647149458527565],[113,70,69,-0.06415705755352974],[113,70,70,-0.0635008318349719],[113,70,71,-0.0626157047227025],[113,70,72,-0.06112673785537481],[113,70,73,-0.05912386439740658],[113,70,74,-0.057376626413315535],[113,70,75,-0.056166454683989286],[113,70,76,-0.055223767179995775],[113,70,77,-0.05432795826345682],[113,70,78,-0.05334505788050592],[113,70,79,-0.052184071857482195],[113,71,64,-0.07741708680987358],[113,71,65,-0.07550761476159096],[113,71,66,-0.0740013187751174],[113,71,67,-0.07306374423205853],[113,71,68,-0.0725274458527565],[113,71,69,-0.07196955755352974],[113,71,70,-0.0713133318349719],[113,71,71,-0.0704282047227025],[113,71,72,-0.06893923785537481],[113,71,73,-0.06693636439740658],[113,71,74,-0.06518912641331553],[113,71,75,-0.06397895468398929],[113,71,76,-0.06303626717999578],[113,71,77,-0.06214045826345682],[113,71,78,-0.06115755788050592],[113,71,79,-0.059996571857482195],[113,72,64,-0.08522958680987358],[113,72,65,-0.08332011476159096],[113,72,66,-0.0818138187751174],[113,72,67,-0.08087624423205853],[113,72,68,-0.0803399458527565],[113,72,69,-0.07978205755352974],[113,72,70,-0.0791258318349719],[113,72,71,-0.0782407047227025],[113,72,72,-0.07675173785537481],[113,72,73,-0.07474886439740658],[113,72,74,-0.07300162641331553],[113,72,75,-0.07179145468398929],[113,72,76,-0.07084876717999578],[113,72,77,-0.06995295826345682],[113,72,78,-0.06897005788050592],[113,72,79,-0.0678090718574822],[113,73,64,-0.09304208680987358],[113,73,65,-0.09113261476159096],[113,73,66,-0.0896263187751174],[113,73,67,-0.08868874423205853],[113,73,68,-0.0881524458527565],[113,73,69,-0.08759455755352974],[113,73,70,-0.0869383318349719],[113,73,71,-0.0860532047227025],[113,73,72,-0.08456423785537481],[113,73,73,-0.08256136439740658],[113,73,74,-0.08081412641331553],[113,73,75,-0.07960395468398929],[113,73,76,-0.07866126717999578],[113,73,77,-0.07776545826345682],[113,73,78,-0.07678255788050592],[113,73,79,-0.0756215718574822],[113,74,64,-0.10085458680987358],[113,74,65,-0.09894511476159096],[113,74,66,-0.0974388187751174],[113,74,67,-0.09650124423205853],[113,74,68,-0.0959649458527565],[113,74,69,-0.09540705755352974],[113,74,70,-0.0947508318349719],[113,74,71,-0.0938657047227025],[113,74,72,-0.09237673785537481],[113,74,73,-0.09037386439740658],[113,74,74,-0.08862662641331553],[113,74,75,-0.08741645468398929],[113,74,76,-0.08647376717999578],[113,74,77,-0.08557795826345682],[113,74,78,-0.08459505788050592],[113,74,79,-0.0834340718574822],[113,75,64,-0.10866708680987358],[113,75,65,-0.10675761476159096],[113,75,66,-0.1052513187751174],[113,75,67,-0.10431374423205853],[113,75,68,-0.1037774458527565],[113,75,69,-0.10321955755352974],[113,75,70,-0.1025633318349719],[113,75,71,-0.1016782047227025],[113,75,72,-0.10018923785537481],[113,75,73,-0.09818636439740658],[113,75,74,-0.09643912641331553],[113,75,75,-0.09522895468398929],[113,75,76,-0.09428626717999578],[113,75,77,-0.09339045826345682],[113,75,78,-0.09240755788050592],[113,75,79,-0.0912465718574822],[113,76,64,-0.11647958680987358],[113,76,65,-0.11457011476159096],[113,76,66,-0.1130638187751174],[113,76,67,-0.11212624423205853],[113,76,68,-0.1115899458527565],[113,76,69,-0.11103205755352974],[113,76,70,-0.1103758318349719],[113,76,71,-0.1094907047227025],[113,76,72,-0.10800173785537481],[113,76,73,-0.10599886439740658],[113,76,74,-0.10425162641331553],[113,76,75,-0.10304145468398929],[113,76,76,-0.10209876717999578],[113,76,77,-0.10120295826345682],[113,76,78,-0.10022005788050592],[113,76,79,-0.0990590718574822],[113,77,64,-0.12429208680987358],[113,77,65,-0.12238261476159096],[113,77,66,-0.1208763187751174],[113,77,67,-0.11993874423205853],[113,77,68,-0.1194024458527565],[113,77,69,-0.11884455755352974],[113,77,70,-0.1181883318349719],[113,77,71,-0.1173032047227025],[113,77,72,-0.11581423785537481],[113,77,73,-0.11381136439740658],[113,77,74,-0.11206412641331553],[113,77,75,-0.11085395468398929],[113,77,76,-0.10991126717999578],[113,77,77,-0.10901545826345682],[113,77,78,-0.10803255788050592],[113,77,79,-0.1068715718574822],[113,78,64,-0.13210458680987358],[113,78,65,-0.13019511476159096],[113,78,66,-0.1286888187751174],[113,78,67,-0.12775124423205853],[113,78,68,-0.1272149458527565],[113,78,69,-0.12665705755352974],[113,78,70,-0.1260008318349719],[113,78,71,-0.1251157047227025],[113,78,72,-0.12362673785537481],[113,78,73,-0.12162386439740658],[113,78,74,-0.11987662641331553],[113,78,75,-0.11866645468398929],[113,78,76,-0.11772376717999578],[113,78,77,-0.11682795826345682],[113,78,78,-0.11584505788050592],[113,78,79,-0.1146840718574822],[113,79,64,-0.13991708680987358],[113,79,65,-0.13800761476159096],[113,79,66,-0.1365013187751174],[113,79,67,-0.13556374423205853],[113,79,68,-0.1350274458527565],[113,79,69,-0.13446955755352974],[113,79,70,-0.1338133318349719],[113,79,71,-0.1329282047227025],[113,79,72,-0.1314392378553748],[113,79,73,-0.12943636439740658],[113,79,74,-0.12768912641331553],[113,79,75,-0.1264789546839893],[113,79,76,-0.12553626717999578],[113,79,77,-0.12464045826345682],[113,79,78,-0.12365755788050592],[113,79,79,-0.1224965718574822],[113,80,64,-0.14772958680987358],[113,80,65,-0.14582011476159096],[113,80,66,-0.1443138187751174],[113,80,67,-0.14337624423205853],[113,80,68,-0.1428399458527565],[113,80,69,-0.14228205755352974],[113,80,70,-0.1416258318349719],[113,80,71,-0.1407407047227025],[113,80,72,-0.1392517378553748],[113,80,73,-0.13724886439740658],[113,80,74,-0.13550162641331553],[113,80,75,-0.1342914546839893],[113,80,76,-0.13334876717999578],[113,80,77,-0.13245295826345682],[113,80,78,-0.13147005788050592],[113,80,79,-0.1303090718574822],[113,81,64,-0.15554208680987358],[113,81,65,-0.15363261476159096],[113,81,66,-0.1521263187751174],[113,81,67,-0.15118874423205853],[113,81,68,-0.1506524458527565],[113,81,69,-0.15009455755352974],[113,81,70,-0.1494383318349719],[113,81,71,-0.1485532047227025],[113,81,72,-0.1470642378553748],[113,81,73,-0.14506136439740658],[113,81,74,-0.14331412641331553],[113,81,75,-0.1421039546839893],[113,81,76,-0.14116126717999578],[113,81,77,-0.14026545826345682],[113,81,78,-0.13928255788050592],[113,81,79,-0.1381215718574822],[113,82,64,-0.16335458680987358],[113,82,65,-0.16144511476159096],[113,82,66,-0.1599388187751174],[113,82,67,-0.15900124423205853],[113,82,68,-0.1584649458527565],[113,82,69,-0.15790705755352974],[113,82,70,-0.1572508318349719],[113,82,71,-0.1563657047227025],[113,82,72,-0.1548767378553748],[113,82,73,-0.15287386439740658],[113,82,74,-0.15112662641331553],[113,82,75,-0.1499164546839893],[113,82,76,-0.14897376717999578],[113,82,77,-0.14807795826345682],[113,82,78,-0.14709505788050592],[113,82,79,-0.1459340718574822],[113,83,64,-0.17116708680987358],[113,83,65,-0.16925761476159096],[113,83,66,-0.1677513187751174],[113,83,67,-0.16681374423205853],[113,83,68,-0.1662774458527565],[113,83,69,-0.16571955755352974],[113,83,70,-0.1650633318349719],[113,83,71,-0.1641782047227025],[113,83,72,-0.1626892378553748],[113,83,73,-0.16068636439740658],[113,83,74,-0.15893912641331553],[113,83,75,-0.1577289546839893],[113,83,76,-0.15678626717999578],[113,83,77,-0.15589045826345682],[113,83,78,-0.15490755788050592],[113,83,79,-0.1537465718574822],[113,84,64,-0.17897958680987358],[113,84,65,-0.17707011476159096],[113,84,66,-0.1755638187751174],[113,84,67,-0.17462624423205853],[113,84,68,-0.1740899458527565],[113,84,69,-0.17353205755352974],[113,84,70,-0.1728758318349719],[113,84,71,-0.1719907047227025],[113,84,72,-0.1705017378553748],[113,84,73,-0.16849886439740658],[113,84,74,-0.16675162641331553],[113,84,75,-0.1655414546839893],[113,84,76,-0.16459876717999578],[113,84,77,-0.16370295826345682],[113,84,78,-0.16272005788050592],[113,84,79,-0.1615590718574822],[113,85,64,-0.18679208680987358],[113,85,65,-0.18488261476159096],[113,85,66,-0.1833763187751174],[113,85,67,-0.18243874423205853],[113,85,68,-0.1819024458527565],[113,85,69,-0.18134455755352974],[113,85,70,-0.1806883318349719],[113,85,71,-0.1798032047227025],[113,85,72,-0.1783142378553748],[113,85,73,-0.17631136439740658],[113,85,74,-0.17456412641331553],[113,85,75,-0.1733539546839893],[113,85,76,-0.17241126717999578],[113,85,77,-0.17151545826345682],[113,85,78,-0.17053255788050592],[113,85,79,-0.1693715718574822],[113,86,64,-0.19460458680987358],[113,86,65,-0.19269511476159096],[113,86,66,-0.1911888187751174],[113,86,67,-0.19025124423205853],[113,86,68,-0.1897149458527565],[113,86,69,-0.18915705755352974],[113,86,70,-0.1885008318349719],[113,86,71,-0.1876157047227025],[113,86,72,-0.1861267378553748],[113,86,73,-0.18412386439740658],[113,86,74,-0.18237662641331553],[113,86,75,-0.1811664546839893],[113,86,76,-0.18022376717999578],[113,86,77,-0.17932795826345682],[113,86,78,-0.17834505788050592],[113,86,79,-0.1771840718574822],[113,87,64,-0.20241708680987358],[113,87,65,-0.20050761476159096],[113,87,66,-0.1990013187751174],[113,87,67,-0.19806374423205853],[113,87,68,-0.1975274458527565],[113,87,69,-0.19696955755352974],[113,87,70,-0.1963133318349719],[113,87,71,-0.1954282047227025],[113,87,72,-0.1939392378553748],[113,87,73,-0.19193636439740658],[113,87,74,-0.19018912641331553],[113,87,75,-0.1889789546839893],[113,87,76,-0.18803626717999578],[113,87,77,-0.18714045826345682],[113,87,78,-0.18615755788050592],[113,87,79,-0.1849965718574822],[113,88,64,-0.21022958680987358],[113,88,65,-0.20832011476159096],[113,88,66,-0.2068138187751174],[113,88,67,-0.20587624423205853],[113,88,68,-0.2053399458527565],[113,88,69,-0.20478205755352974],[113,88,70,-0.2041258318349719],[113,88,71,-0.2032407047227025],[113,88,72,-0.2017517378553748],[113,88,73,-0.19974886439740658],[113,88,74,-0.19800162641331553],[113,88,75,-0.1967914546839893],[113,88,76,-0.19584876717999578],[113,88,77,-0.19495295826345682],[113,88,78,-0.19397005788050592],[113,88,79,-0.1928090718574822],[113,89,64,-0.21804208680987358],[113,89,65,-0.21613261476159096],[113,89,66,-0.2146263187751174],[113,89,67,-0.21368874423205853],[113,89,68,-0.2131524458527565],[113,89,69,-0.21259455755352974],[113,89,70,-0.2119383318349719],[113,89,71,-0.2110532047227025],[113,89,72,-0.2095642378553748],[113,89,73,-0.20756136439740658],[113,89,74,-0.20581412641331553],[113,89,75,-0.2046039546839893],[113,89,76,-0.20366126717999578],[113,89,77,-0.20276545826345682],[113,89,78,-0.20178255788050592],[113,89,79,-0.2006215718574822],[113,90,64,-0.22585458680987358],[113,90,65,-0.22394511476159096],[113,90,66,-0.2224388187751174],[113,90,67,-0.22150124423205853],[113,90,68,-0.2209649458527565],[113,90,69,-0.22040705755352974],[113,90,70,-0.2197508318349719],[113,90,71,-0.2188657047227025],[113,90,72,-0.2173767378553748],[113,90,73,-0.21537386439740658],[113,90,74,-0.21362662641331553],[113,90,75,-0.2124164546839893],[113,90,76,-0.21147376717999578],[113,90,77,-0.21057795826345682],[113,90,78,-0.20959505788050592],[113,90,79,-0.2084340718574822],[113,91,64,-0.23366708680987358],[113,91,65,-0.23175761476159096],[113,91,66,-0.2302513187751174],[113,91,67,-0.22931374423205853],[113,91,68,-0.2287774458527565],[113,91,69,-0.22821955755352974],[113,91,70,-0.2275633318349719],[113,91,71,-0.2266782047227025],[113,91,72,-0.2251892378553748],[113,91,73,-0.22318636439740658],[113,91,74,-0.22143912641331553],[113,91,75,-0.2202289546839893],[113,91,76,-0.21928626717999578],[113,91,77,-0.21839045826345682],[113,91,78,-0.21740755788050592],[113,91,79,-0.2162465718574822],[113,92,64,-0.24147958680987358],[113,92,65,-0.23957011476159096],[113,92,66,-0.2380638187751174],[113,92,67,-0.23712624423205853],[113,92,68,-0.2365899458527565],[113,92,69,-0.23603205755352974],[113,92,70,-0.2353758318349719],[113,92,71,-0.2344907047227025],[113,92,72,-0.2330017378553748],[113,92,73,-0.23099886439740658],[113,92,74,-0.22925162641331553],[113,92,75,-0.2280414546839893],[113,92,76,-0.22709876717999578],[113,92,77,-0.22620295826345682],[113,92,78,-0.22522005788050592],[113,92,79,-0.2240590718574822],[113,93,64,-0.24929208680987358],[113,93,65,-0.24738261476159096],[113,93,66,-0.2458763187751174],[113,93,67,-0.24493874423205853],[113,93,68,-0.2444024458527565],[113,93,69,-0.24384455755352974],[113,93,70,-0.2431883318349719],[113,93,71,-0.2423032047227025],[113,93,72,-0.2408142378553748],[113,93,73,-0.23881136439740658],[113,93,74,-0.23706412641331553],[113,93,75,-0.2358539546839893],[113,93,76,-0.23491126717999578],[113,93,77,-0.23401545826345682],[113,93,78,-0.23303255788050592],[113,93,79,-0.2318715718574822],[113,94,64,-0.2571045868098736],[113,94,65,-0.25519511476159096],[113,94,66,-0.2536888187751174],[113,94,67,-0.2527512442320585],[113,94,68,-0.2522149458527565],[113,94,69,-0.25165705755352974],[113,94,70,-0.2510008318349719],[113,94,71,-0.2501157047227025],[113,94,72,-0.2486267378553748],[113,94,73,-0.24662386439740658],[113,94,74,-0.24487662641331553],[113,94,75,-0.2436664546839893],[113,94,76,-0.24272376717999578],[113,94,77,-0.24182795826345682],[113,94,78,-0.24084505788050592],[113,94,79,-0.2396840718574822],[113,95,64,-0.2649170868098736],[113,95,65,-0.26300761476159096],[113,95,66,-0.2615013187751174],[113,95,67,-0.2605637442320585],[113,95,68,-0.2600274458527565],[113,95,69,-0.25946955755352974],[113,95,70,-0.2588133318349719],[113,95,71,-0.2579282047227025],[113,95,72,-0.2564392378553748],[113,95,73,-0.2544363643974066],[113,95,74,-0.25268912641331553],[113,95,75,-0.2514789546839893],[113,95,76,-0.2505362671799958],[113,95,77,-0.24964045826345682],[113,95,78,-0.24865755788050592],[113,95,79,-0.2474965718574822],[113,96,64,-0.2727295868098736],[113,96,65,-0.27082011476159096],[113,96,66,-0.2693138187751174],[113,96,67,-0.2683762442320585],[113,96,68,-0.2678399458527565],[113,96,69,-0.26728205755352974],[113,96,70,-0.2666258318349719],[113,96,71,-0.2657407047227025],[113,96,72,-0.2642517378553748],[113,96,73,-0.2622488643974066],[113,96,74,-0.26050162641331553],[113,96,75,-0.2592914546839893],[113,96,76,-0.2583487671799958],[113,96,77,-0.2574529582634568],[113,96,78,-0.2564700578805059],[113,96,79,-0.2553090718574822],[113,97,64,-0.2805420868098736],[113,97,65,-0.27863261476159096],[113,97,66,-0.2771263187751174],[113,97,67,-0.2761887442320585],[113,97,68,-0.2756524458527565],[113,97,69,-0.27509455755352974],[113,97,70,-0.2744383318349719],[113,97,71,-0.2735532047227025],[113,97,72,-0.2720642378553748],[113,97,73,-0.2700613643974066],[113,97,74,-0.26831412641331553],[113,97,75,-0.2671039546839893],[113,97,76,-0.2661612671799958],[113,97,77,-0.2652654582634568],[113,97,78,-0.2642825578805059],[113,97,79,-0.2631215718574822],[113,98,64,-0.2883545868098736],[113,98,65,-0.28644511476159096],[113,98,66,-0.2849388187751174],[113,98,67,-0.2840012442320585],[113,98,68,-0.2834649458527565],[113,98,69,-0.28290705755352974],[113,98,70,-0.2822508318349719],[113,98,71,-0.2813657047227025],[113,98,72,-0.2798767378553748],[113,98,73,-0.2778738643974066],[113,98,74,-0.27612662641331553],[113,98,75,-0.2749164546839893],[113,98,76,-0.2739737671799958],[113,98,77,-0.2730779582634568],[113,98,78,-0.2720950578805059],[113,98,79,-0.2709340718574822],[113,99,64,-0.2961670868098736],[113,99,65,-0.29425761476159096],[113,99,66,-0.2927513187751174],[113,99,67,-0.2918137442320585],[113,99,68,-0.2912774458527565],[113,99,69,-0.29071955755352974],[113,99,70,-0.2900633318349719],[113,99,71,-0.2891782047227025],[113,99,72,-0.2876892378553748],[113,99,73,-0.2856863643974066],[113,99,74,-0.28393912641331553],[113,99,75,-0.2827289546839893],[113,99,76,-0.2817862671799958],[113,99,77,-0.2808904582634568],[113,99,78,-0.2799075578805059],[113,99,79,-0.2787465718574822],[113,100,64,-0.3039795868098736],[113,100,65,-0.30207011476159096],[113,100,66,-0.3005638187751174],[113,100,67,-0.2996262442320585],[113,100,68,-0.2990899458527565],[113,100,69,-0.29853205755352974],[113,100,70,-0.2978758318349719],[113,100,71,-0.2969907047227025],[113,100,72,-0.2955017378553748],[113,100,73,-0.2934988643974066],[113,100,74,-0.29175162641331553],[113,100,75,-0.2905414546839893],[113,100,76,-0.2895987671799958],[113,100,77,-0.2887029582634568],[113,100,78,-0.2877200578805059],[113,100,79,-0.2865590718574822],[113,101,64,-0.3117920868098736],[113,101,65,-0.30988261476159096],[113,101,66,-0.3083763187751174],[113,101,67,-0.3074387442320585],[113,101,68,-0.3069024458527565],[113,101,69,-0.30634455755352974],[113,101,70,-0.3056883318349719],[113,101,71,-0.3048032047227025],[113,101,72,-0.3033142378553748],[113,101,73,-0.3013113643974066],[113,101,74,-0.29956412641331553],[113,101,75,-0.2983539546839893],[113,101,76,-0.2974112671799958],[113,101,77,-0.2965154582634568],[113,101,78,-0.2955325578805059],[113,101,79,-0.2943715718574822],[113,102,64,-0.3196045868098736],[113,102,65,-0.31769511476159096],[113,102,66,-0.3161888187751174],[113,102,67,-0.3152512442320585],[113,102,68,-0.3147149458527565],[113,102,69,-0.31415705755352974],[113,102,70,-0.3135008318349719],[113,102,71,-0.3126157047227025],[113,102,72,-0.3111267378553748],[113,102,73,-0.3091238643974066],[113,102,74,-0.30737662641331553],[113,102,75,-0.3061664546839893],[113,102,76,-0.3052237671799958],[113,102,77,-0.3043279582634568],[113,102,78,-0.3033450578805059],[113,102,79,-0.3021840718574822],[113,103,64,-0.3274170868098736],[113,103,65,-0.32550761476159096],[113,103,66,-0.3240013187751174],[113,103,67,-0.3230637442320585],[113,103,68,-0.3225274458527565],[113,103,69,-0.32196955755352974],[113,103,70,-0.3213133318349719],[113,103,71,-0.3204282047227025],[113,103,72,-0.3189392378553748],[113,103,73,-0.3169363643974066],[113,103,74,-0.31518912641331553],[113,103,75,-0.3139789546839893],[113,103,76,-0.3130362671799958],[113,103,77,-0.3121404582634568],[113,103,78,-0.3111575578805059],[113,103,79,-0.3099965718574822],[113,104,64,-0.3352295868098736],[113,104,65,-0.33332011476159096],[113,104,66,-0.3318138187751174],[113,104,67,-0.3308762442320585],[113,104,68,-0.3303399458527565],[113,104,69,-0.32978205755352974],[113,104,70,-0.3291258318349719],[113,104,71,-0.3282407047227025],[113,104,72,-0.3267517378553748],[113,104,73,-0.3247488643974066],[113,104,74,-0.32300162641331553],[113,104,75,-0.3217914546839893],[113,104,76,-0.3208487671799958],[113,104,77,-0.3199529582634568],[113,104,78,-0.3189700578805059],[113,104,79,-0.3178090718574822],[113,105,64,-0.3430420868098736],[113,105,65,-0.34113261476159096],[113,105,66,-0.3396263187751174],[113,105,67,-0.3386887442320585],[113,105,68,-0.3381524458527565],[113,105,69,-0.33759455755352974],[113,105,70,-0.3369383318349719],[113,105,71,-0.3360532047227025],[113,105,72,-0.3345642378553748],[113,105,73,-0.3325613643974066],[113,105,74,-0.33081412641331553],[113,105,75,-0.3296039546839893],[113,105,76,-0.3286612671799958],[113,105,77,-0.3277654582634568],[113,105,78,-0.3267825578805059],[113,105,79,-0.3256215718574822],[113,106,64,-0.3508545868098736],[113,106,65,-0.34894511476159096],[113,106,66,-0.3474388187751174],[113,106,67,-0.3465012442320585],[113,106,68,-0.3459649458527565],[113,106,69,-0.34540705755352974],[113,106,70,-0.3447508318349719],[113,106,71,-0.3438657047227025],[113,106,72,-0.3423767378553748],[113,106,73,-0.3403738643974066],[113,106,74,-0.33862662641331553],[113,106,75,-0.3374164546839893],[113,106,76,-0.3364737671799958],[113,106,77,-0.3355779582634568],[113,106,78,-0.3345950578805059],[113,106,79,-0.3334340718574822],[113,107,64,-0.3586670868098736],[113,107,65,-0.35675761476159096],[113,107,66,-0.3552513187751174],[113,107,67,-0.3543137442320585],[113,107,68,-0.3537774458527565],[113,107,69,-0.35321955755352974],[113,107,70,-0.3525633318349719],[113,107,71,-0.3516782047227025],[113,107,72,-0.3501892378553748],[113,107,73,-0.3481863643974066],[113,107,74,-0.34643912641331553],[113,107,75,-0.3452289546839893],[113,107,76,-0.3442862671799958],[113,107,77,-0.3433904582634568],[113,107,78,-0.3424075578805059],[113,107,79,-0.3412465718574822],[113,108,64,-0.3664795868098736],[113,108,65,-0.36457011476159096],[113,108,66,-0.3630638187751174],[113,108,67,-0.3621262442320585],[113,108,68,-0.3615899458527565],[113,108,69,-0.36103205755352974],[113,108,70,-0.3603758318349719],[113,108,71,-0.3594907047227025],[113,108,72,-0.3580017378553748],[113,108,73,-0.3559988643974066],[113,108,74,-0.35425162641331553],[113,108,75,-0.3530414546839893],[113,108,76,-0.3520987671799958],[113,108,77,-0.3512029582634568],[113,108,78,-0.3502200578805059],[113,108,79,-0.3490590718574822],[113,109,64,-0.3742920868098736],[113,109,65,-0.37238261476159096],[113,109,66,-0.3708763187751174],[113,109,67,-0.3699387442320585],[113,109,68,-0.3694024458527565],[113,109,69,-0.36884455755352974],[113,109,70,-0.3681883318349719],[113,109,71,-0.3673032047227025],[113,109,72,-0.3658142378553748],[113,109,73,-0.3638113643974066],[113,109,74,-0.36206412641331553],[113,109,75,-0.3608539546839893],[113,109,76,-0.3599112671799958],[113,109,77,-0.3590154582634568],[113,109,78,-0.3580325578805059],[113,109,79,-0.3568715718574822],[113,110,64,-0.3821045868098736],[113,110,65,-0.38019511476159096],[113,110,66,-0.3786888187751174],[113,110,67,-0.3777512442320585],[113,110,68,-0.3772149458527565],[113,110,69,-0.37665705755352974],[113,110,70,-0.3760008318349719],[113,110,71,-0.3751157047227025],[113,110,72,-0.3736267378553748],[113,110,73,-0.3716238643974066],[113,110,74,-0.36987662641331553],[113,110,75,-0.3686664546839893],[113,110,76,-0.3677237671799958],[113,110,77,-0.3668279582634568],[113,110,78,-0.3658450578805059],[113,110,79,-0.3646840718574822],[113,111,64,-0.3899170868098736],[113,111,65,-0.38800761476159096],[113,111,66,-0.3865013187751174],[113,111,67,-0.3855637442320585],[113,111,68,-0.3850274458527565],[113,111,69,-0.38446955755352974],[113,111,70,-0.3838133318349719],[113,111,71,-0.3829282047227025],[113,111,72,-0.3814392378553748],[113,111,73,-0.3794363643974066],[113,111,74,-0.37768912641331553],[113,111,75,-0.3764789546839893],[113,111,76,-0.3755362671799958],[113,111,77,-0.3746404582634568],[113,111,78,-0.3736575578805059],[113,111,79,-0.3724965718574822],[113,112,64,-0.3977295868098736],[113,112,65,-0.39582011476159096],[113,112,66,-0.3943138187751174],[113,112,67,-0.3933762442320585],[113,112,68,-0.3928399458527565],[113,112,69,-0.39228205755352974],[113,112,70,-0.3916258318349719],[113,112,71,-0.3907407047227025],[113,112,72,-0.3892517378553748],[113,112,73,-0.3872488643974066],[113,112,74,-0.38550162641331553],[113,112,75,-0.3842914546839893],[113,112,76,-0.3833487671799958],[113,112,77,-0.3824529582634568],[113,112,78,-0.3814700578805059],[113,112,79,-0.3803090718574822],[113,113,64,-0.4055420868098736],[113,113,65,-0.40363261476159096],[113,113,66,-0.4021263187751174],[113,113,67,-0.4011887442320585],[113,113,68,-0.4006524458527565],[113,113,69,-0.40009455755352974],[113,113,70,-0.3994383318349719],[113,113,71,-0.3985532047227025],[113,113,72,-0.3970642378553748],[113,113,73,-0.3950613643974066],[113,113,74,-0.39331412641331553],[113,113,75,-0.3921039546839893],[113,113,76,-0.3911612671799958],[113,113,77,-0.3902654582634568],[113,113,78,-0.3892825578805059],[113,113,79,-0.3881215718574822],[113,114,64,-0.4133545868098736],[113,114,65,-0.41144511476159096],[113,114,66,-0.4099388187751174],[113,114,67,-0.4090012442320585],[113,114,68,-0.4084649458527565],[113,114,69,-0.40790705755352974],[113,114,70,-0.4072508318349719],[113,114,71,-0.4063657047227025],[113,114,72,-0.4048767378553748],[113,114,73,-0.4028738643974066],[113,114,74,-0.40112662641331553],[113,114,75,-0.3999164546839893],[113,114,76,-0.3989737671799958],[113,114,77,-0.3980779582634568],[113,114,78,-0.3970950578805059],[113,114,79,-0.3959340718574822],[113,115,64,-0.4211670868098736],[113,115,65,-0.41925761476159096],[113,115,66,-0.4177513187751174],[113,115,67,-0.4168137442320585],[113,115,68,-0.4162774458527565],[113,115,69,-0.41571955755352974],[113,115,70,-0.4150633318349719],[113,115,71,-0.4141782047227025],[113,115,72,-0.4126892378553748],[113,115,73,-0.4106863643974066],[113,115,74,-0.40893912641331553],[113,115,75,-0.4077289546839893],[113,115,76,-0.4067862671799958],[113,115,77,-0.4058904582634568],[113,115,78,-0.4049075578805059],[113,115,79,-0.4037465718574822],[113,116,64,-0.4289795868098736],[113,116,65,-0.42707011476159096],[113,116,66,-0.4255638187751174],[113,116,67,-0.4246262442320585],[113,116,68,-0.4240899458527565],[113,116,69,-0.42353205755352974],[113,116,70,-0.4228758318349719],[113,116,71,-0.4219907047227025],[113,116,72,-0.4205017378553748],[113,116,73,-0.4184988643974066],[113,116,74,-0.41675162641331553],[113,116,75,-0.4155414546839893],[113,116,76,-0.4145987671799958],[113,116,77,-0.4137029582634568],[113,116,78,-0.4127200578805059],[113,116,79,-0.4115590718574822],[113,117,64,-0.4367920868098736],[113,117,65,-0.43488261476159096],[113,117,66,-0.4333763187751174],[113,117,67,-0.4324387442320585],[113,117,68,-0.4319024458527565],[113,117,69,-0.43134455755352974],[113,117,70,-0.4306883318349719],[113,117,71,-0.4298032047227025],[113,117,72,-0.4283142378553748],[113,117,73,-0.4263113643974066],[113,117,74,-0.42456412641331553],[113,117,75,-0.4233539546839893],[113,117,76,-0.4224112671799958],[113,117,77,-0.4215154582634568],[113,117,78,-0.4205325578805059],[113,117,79,-0.4193715718574822],[113,118,64,-0.4446045868098736],[113,118,65,-0.44269511476159096],[113,118,66,-0.4411888187751174],[113,118,67,-0.4402512442320585],[113,118,68,-0.4397149458527565],[113,118,69,-0.43915705755352974],[113,118,70,-0.4385008318349719],[113,118,71,-0.4376157047227025],[113,118,72,-0.4361267378553748],[113,118,73,-0.4341238643974066],[113,118,74,-0.43237662641331553],[113,118,75,-0.4311664546839893],[113,118,76,-0.4302237671799958],[113,118,77,-0.4293279582634568],[113,118,78,-0.4283450578805059],[113,118,79,-0.4271840718574822],[113,119,64,-0.4524170868098736],[113,119,65,-0.45050761476159096],[113,119,66,-0.4490013187751174],[113,119,67,-0.4480637442320585],[113,119,68,-0.4475274458527565],[113,119,69,-0.44696955755352974],[113,119,70,-0.4463133318349719],[113,119,71,-0.4454282047227025],[113,119,72,-0.4439392378553748],[113,119,73,-0.4419363643974066],[113,119,74,-0.44018912641331553],[113,119,75,-0.4389789546839893],[113,119,76,-0.4380362671799958],[113,119,77,-0.4371404582634568],[113,119,78,-0.4361575578805059],[113,119,79,-0.4349965718574822],[113,120,64,-0.4602295868098736],[113,120,65,-0.45832011476159096],[113,120,66,-0.4568138187751174],[113,120,67,-0.4558762442320585],[113,120,68,-0.4553399458527565],[113,120,69,-0.45478205755352974],[113,120,70,-0.4541258318349719],[113,120,71,-0.4532407047227025],[113,120,72,-0.4517517378553748],[113,120,73,-0.4497488643974066],[113,120,74,-0.44800162641331553],[113,120,75,-0.4467914546839893],[113,120,76,-0.4458487671799958],[113,120,77,-0.4449529582634568],[113,120,78,-0.4439700578805059],[113,120,79,-0.4428090718574822],[113,121,64,-0.4680420868098736],[113,121,65,-0.46613261476159096],[113,121,66,-0.4646263187751174],[113,121,67,-0.4636887442320585],[113,121,68,-0.4631524458527565],[113,121,69,-0.46259455755352974],[113,121,70,-0.4619383318349719],[113,121,71,-0.4610532047227025],[113,121,72,-0.4595642378553748],[113,121,73,-0.4575613643974066],[113,121,74,-0.45581412641331553],[113,121,75,-0.4546039546839893],[113,121,76,-0.4536612671799958],[113,121,77,-0.4527654582634568],[113,121,78,-0.4517825578805059],[113,121,79,-0.4506215718574822],[113,122,64,-0.4758545868098736],[113,122,65,-0.47394511476159096],[113,122,66,-0.4724388187751174],[113,122,67,-0.4715012442320585],[113,122,68,-0.4709649458527565],[113,122,69,-0.47040705755352974],[113,122,70,-0.4697508318349719],[113,122,71,-0.4688657047227025],[113,122,72,-0.4673767378553748],[113,122,73,-0.4653738643974066],[113,122,74,-0.46362662641331553],[113,122,75,-0.4624164546839893],[113,122,76,-0.4614737671799958],[113,122,77,-0.4605779582634568],[113,122,78,-0.4595950578805059],[113,122,79,-0.4584340718574822],[113,123,64,-0.4836670868098736],[113,123,65,-0.48175761476159096],[113,123,66,-0.4802513187751174],[113,123,67,-0.4793137442320585],[113,123,68,-0.4787774458527565],[113,123,69,-0.47821955755352974],[113,123,70,-0.4775633318349719],[113,123,71,-0.4766782047227025],[113,123,72,-0.4751892378553748],[113,123,73,-0.4731863643974066],[113,123,74,-0.47143912641331553],[113,123,75,-0.4702289546839893],[113,123,76,-0.4692862671799958],[113,123,77,-0.4683904582634568],[113,123,78,-0.4674075578805059],[113,123,79,-0.4662465718574822],[113,124,64,-0.4914795868098736],[113,124,65,-0.48957011476159096],[113,124,66,-0.4880638187751174],[113,124,67,-0.4871262442320585],[113,124,68,-0.4865899458527565],[113,124,69,-0.48603205755352974],[113,124,70,-0.4853758318349719],[113,124,71,-0.4844907047227025],[113,124,72,-0.4830017378553748],[113,124,73,-0.4809988643974066],[113,124,74,-0.47925162641331553],[113,124,75,-0.4780414546839893],[113,124,76,-0.4770987671799958],[113,124,77,-0.4762029582634568],[113,124,78,-0.4752200578805059],[113,124,79,-0.4740590718574822],[113,125,64,-0.4992920868098736],[113,125,65,-0.49738261476159096],[113,125,66,-0.4958763187751174],[113,125,67,-0.4949387442320585],[113,125,68,-0.4944024458527565],[113,125,69,-0.49384455755352974],[113,125,70,-0.4931883318349719],[113,125,71,-0.4923032047227025],[113,125,72,-0.4908142378553748],[113,125,73,-0.4888113643974066],[113,125,74,-0.48706412641331553],[113,125,75,-0.4858539546839893],[113,125,76,-0.4849112671799958],[113,125,77,-0.4840154582634568],[113,125,78,-0.4830325578805059],[113,125,79,-0.4818715718574822],[113,126,64,-0.5071045868098736],[113,126,65,-0.505195114761591],[113,126,66,-0.5036888187751174],[113,126,67,-0.5027512442320585],[113,126,68,-0.5022149458527565],[113,126,69,-0.5016570575535297],[113,126,70,-0.5010008318349719],[113,126,71,-0.5001157047227025],[113,126,72,-0.4986267378553748],[113,126,73,-0.4966238643974066],[113,126,74,-0.49487662641331553],[113,126,75,-0.4936664546839893],[113,126,76,-0.4927237671799958],[113,126,77,-0.4918279582634568],[113,126,78,-0.4908450578805059],[113,126,79,-0.4896840718574822],[113,127,64,-0.5149170868098736],[113,127,65,-0.513007614761591],[113,127,66,-0.5115013187751174],[113,127,67,-0.5105637442320585],[113,127,68,-0.5100274458527565],[113,127,69,-0.5094695575535297],[113,127,70,-0.5088133318349719],[113,127,71,-0.5079282047227025],[113,127,72,-0.5064392378553748],[113,127,73,-0.5044363643974066],[113,127,74,-0.5026891264133155],[113,127,75,-0.5014789546839893],[113,127,76,-0.5005362671799958],[113,127,77,-0.4996404582634568],[113,127,78,-0.4986575578805059],[113,127,79,-0.4974965718574822],[113,128,64,-0.5227295868098736],[113,128,65,-0.520820114761591],[113,128,66,-0.5193138187751174],[113,128,67,-0.5183762442320585],[113,128,68,-0.5178399458527565],[113,128,69,-0.5172820575535297],[113,128,70,-0.5166258318349719],[113,128,71,-0.5157407047227025],[113,128,72,-0.5142517378553748],[113,128,73,-0.5122488643974066],[113,128,74,-0.5105016264133155],[113,128,75,-0.5092914546839893],[113,128,76,-0.5083487671799958],[113,128,77,-0.5074529582634568],[113,128,78,-0.5064700578805059],[113,128,79,-0.5053090718574822],[113,129,64,-0.5305420868098736],[113,129,65,-0.528632614761591],[113,129,66,-0.5271263187751174],[113,129,67,-0.5261887442320585],[113,129,68,-0.5256524458527565],[113,129,69,-0.5250945575535297],[113,129,70,-0.5244383318349719],[113,129,71,-0.5235532047227025],[113,129,72,-0.5220642378553748],[113,129,73,-0.5200613643974066],[113,129,74,-0.5183141264133155],[113,129,75,-0.5171039546839893],[113,129,76,-0.5161612671799958],[113,129,77,-0.5152654582634568],[113,129,78,-0.5142825578805059],[113,129,79,-0.5131215718574822],[113,130,64,-0.5383545868098736],[113,130,65,-0.536445114761591],[113,130,66,-0.5349388187751174],[113,130,67,-0.5340012442320585],[113,130,68,-0.5334649458527565],[113,130,69,-0.5329070575535297],[113,130,70,-0.5322508318349719],[113,130,71,-0.5313657047227025],[113,130,72,-0.5298767378553748],[113,130,73,-0.5278738643974066],[113,130,74,-0.5261266264133155],[113,130,75,-0.5249164546839893],[113,130,76,-0.5239737671799958],[113,130,77,-0.5230779582634568],[113,130,78,-0.5220950578805059],[113,130,79,-0.5209340718574822],[113,131,64,-0.5461670868098736],[113,131,65,-0.544257614761591],[113,131,66,-0.5427513187751174],[113,131,67,-0.5418137442320585],[113,131,68,-0.5412774458527565],[113,131,69,-0.5407195575535297],[113,131,70,-0.5400633318349719],[113,131,71,-0.5391782047227025],[113,131,72,-0.5376892378553748],[113,131,73,-0.5356863643974066],[113,131,74,-0.5339391264133155],[113,131,75,-0.5327289546839893],[113,131,76,-0.5317862671799958],[113,131,77,-0.5308904582634568],[113,131,78,-0.5299075578805059],[113,131,79,-0.5287465718574822],[113,132,64,-0.5539795868098736],[113,132,65,-0.552070114761591],[113,132,66,-0.5505638187751174],[113,132,67,-0.5496262442320585],[113,132,68,-0.5490899458527565],[113,132,69,-0.5485320575535297],[113,132,70,-0.5478758318349719],[113,132,71,-0.5469907047227025],[113,132,72,-0.5455017378553748],[113,132,73,-0.5434988643974066],[113,132,74,-0.5417516264133155],[113,132,75,-0.5405414546839893],[113,132,76,-0.5395987671799958],[113,132,77,-0.5387029582634568],[113,132,78,-0.5377200578805059],[113,132,79,-0.5365590718574822],[113,133,64,-0.5617920868098736],[113,133,65,-0.559882614761591],[113,133,66,-0.5583763187751174],[113,133,67,-0.5574387442320585],[113,133,68,-0.5569024458527565],[113,133,69,-0.5563445575535297],[113,133,70,-0.5556883318349719],[113,133,71,-0.5548032047227025],[113,133,72,-0.5533142378553748],[113,133,73,-0.5513113643974066],[113,133,74,-0.5495641264133155],[113,133,75,-0.5483539546839893],[113,133,76,-0.5474112671799958],[113,133,77,-0.5465154582634568],[113,133,78,-0.5455325578805059],[113,133,79,-0.5443715718574822],[113,134,64,-0.5696045868098736],[113,134,65,-0.567695114761591],[113,134,66,-0.5661888187751174],[113,134,67,-0.5652512442320585],[113,134,68,-0.5647149458527565],[113,134,69,-0.5641570575535297],[113,134,70,-0.5635008318349719],[113,134,71,-0.5626157047227025],[113,134,72,-0.5611267378553748],[113,134,73,-0.5591238643974066],[113,134,74,-0.5573766264133155],[113,134,75,-0.5561664546839893],[113,134,76,-0.5552237671799958],[113,134,77,-0.5543279582634568],[113,134,78,-0.5533450578805059],[113,134,79,-0.5521840718574822],[113,135,64,-0.5774170868098736],[113,135,65,-0.575507614761591],[113,135,66,-0.5740013187751174],[113,135,67,-0.5730637442320585],[113,135,68,-0.5725274458527565],[113,135,69,-0.5719695575535297],[113,135,70,-0.5713133318349719],[113,135,71,-0.5704282047227025],[113,135,72,-0.5689392378553748],[113,135,73,-0.5669363643974066],[113,135,74,-0.5651891264133155],[113,135,75,-0.5639789546839893],[113,135,76,-0.5630362671799958],[113,135,77,-0.5621404582634568],[113,135,78,-0.5611575578805059],[113,135,79,-0.5599965718574822],[113,136,64,-0.5852295868098736],[113,136,65,-0.583320114761591],[113,136,66,-0.5818138187751174],[113,136,67,-0.5808762442320585],[113,136,68,-0.5803399458527565],[113,136,69,-0.5797820575535297],[113,136,70,-0.5791258318349719],[113,136,71,-0.5782407047227025],[113,136,72,-0.5767517378553748],[113,136,73,-0.5747488643974066],[113,136,74,-0.5730016264133155],[113,136,75,-0.5717914546839893],[113,136,76,-0.5708487671799958],[113,136,77,-0.5699529582634568],[113,136,78,-0.5689700578805059],[113,136,79,-0.5678090718574822],[113,137,64,-0.5930420868098736],[113,137,65,-0.591132614761591],[113,137,66,-0.5896263187751174],[113,137,67,-0.5886887442320585],[113,137,68,-0.5881524458527565],[113,137,69,-0.5875945575535297],[113,137,70,-0.5869383318349719],[113,137,71,-0.5860532047227025],[113,137,72,-0.5845642378553748],[113,137,73,-0.5825613643974066],[113,137,74,-0.5808141264133155],[113,137,75,-0.5796039546839893],[113,137,76,-0.5786612671799958],[113,137,77,-0.5777654582634568],[113,137,78,-0.5767825578805059],[113,137,79,-0.5756215718574822],[113,138,64,-0.6008545868098736],[113,138,65,-0.598945114761591],[113,138,66,-0.5974388187751174],[113,138,67,-0.5965012442320585],[113,138,68,-0.5959649458527565],[113,138,69,-0.5954070575535297],[113,138,70,-0.5947508318349719],[113,138,71,-0.5938657047227025],[113,138,72,-0.5923767378553748],[113,138,73,-0.5903738643974066],[113,138,74,-0.5886266264133155],[113,138,75,-0.5874164546839893],[113,138,76,-0.5864737671799958],[113,138,77,-0.5855779582634568],[113,138,78,-0.5845950578805059],[113,138,79,-0.5834340718574822],[113,139,64,-0.6086670868098736],[113,139,65,-0.606757614761591],[113,139,66,-0.6052513187751174],[113,139,67,-0.6043137442320585],[113,139,68,-0.6037774458527565],[113,139,69,-0.6032195575535297],[113,139,70,-0.6025633318349719],[113,139,71,-0.6016782047227025],[113,139,72,-0.6001892378553748],[113,139,73,-0.5981863643974066],[113,139,74,-0.5964391264133155],[113,139,75,-0.5952289546839893],[113,139,76,-0.5942862671799958],[113,139,77,-0.5933904582634568],[113,139,78,-0.5924075578805059],[113,139,79,-0.5912465718574822],[113,140,64,-0.6164795868098736],[113,140,65,-0.614570114761591],[113,140,66,-0.6130638187751174],[113,140,67,-0.6121262442320585],[113,140,68,-0.6115899458527565],[113,140,69,-0.6110320575535297],[113,140,70,-0.6103758318349719],[113,140,71,-0.6094907047227025],[113,140,72,-0.6080017378553748],[113,140,73,-0.6059988643974066],[113,140,74,-0.6042516264133155],[113,140,75,-0.6030414546839893],[113,140,76,-0.6020987671799958],[113,140,77,-0.6012029582634568],[113,140,78,-0.6002200578805059],[113,140,79,-0.5990590718574822],[113,141,64,-0.6242920868098736],[113,141,65,-0.622382614761591],[113,141,66,-0.6208763187751174],[113,141,67,-0.6199387442320585],[113,141,68,-0.6194024458527565],[113,141,69,-0.6188445575535297],[113,141,70,-0.6181883318349719],[113,141,71,-0.6173032047227025],[113,141,72,-0.6158142378553748],[113,141,73,-0.6138113643974066],[113,141,74,-0.6120641264133155],[113,141,75,-0.6108539546839893],[113,141,76,-0.6099112671799958],[113,141,77,-0.6090154582634568],[113,141,78,-0.6080325578805059],[113,141,79,-0.6068715718574822],[113,142,64,-0.6321045868098736],[113,142,65,-0.630195114761591],[113,142,66,-0.6286888187751174],[113,142,67,-0.6277512442320585],[113,142,68,-0.6272149458527565],[113,142,69,-0.6266570575535297],[113,142,70,-0.6260008318349719],[113,142,71,-0.6251157047227025],[113,142,72,-0.6236267378553748],[113,142,73,-0.6216238643974066],[113,142,74,-0.6198766264133155],[113,142,75,-0.6186664546839893],[113,142,76,-0.6177237671799958],[113,142,77,-0.6168279582634568],[113,142,78,-0.6158450578805059],[113,142,79,-0.6146840718574822],[113,143,64,-0.6399170868098736],[113,143,65,-0.638007614761591],[113,143,66,-0.6365013187751174],[113,143,67,-0.6355637442320585],[113,143,68,-0.6350274458527565],[113,143,69,-0.6344695575535297],[113,143,70,-0.6338133318349719],[113,143,71,-0.6329282047227025],[113,143,72,-0.6314392378553748],[113,143,73,-0.6294363643974066],[113,143,74,-0.6276891264133155],[113,143,75,-0.6264789546839893],[113,143,76,-0.6255362671799958],[113,143,77,-0.6246404582634568],[113,143,78,-0.6236575578805059],[113,143,79,-0.6224965718574822],[113,144,64,-0.6477295868098736],[113,144,65,-0.645820114761591],[113,144,66,-0.6443138187751174],[113,144,67,-0.6433762442320585],[113,144,68,-0.6428399458527565],[113,144,69,-0.6422820575535297],[113,144,70,-0.6416258318349719],[113,144,71,-0.6407407047227025],[113,144,72,-0.6392517378553748],[113,144,73,-0.6372488643974066],[113,144,74,-0.6355016264133155],[113,144,75,-0.6342914546839893],[113,144,76,-0.6333487671799958],[113,144,77,-0.6324529582634568],[113,144,78,-0.6314700578805059],[113,144,79,-0.6303090718574822],[113,145,64,-0.6555420868098736],[113,145,65,-0.653632614761591],[113,145,66,-0.6521263187751174],[113,145,67,-0.6511887442320585],[113,145,68,-0.6506524458527565],[113,145,69,-0.6500945575535297],[113,145,70,-0.6494383318349719],[113,145,71,-0.6485532047227025],[113,145,72,-0.6470642378553748],[113,145,73,-0.6450613643974066],[113,145,74,-0.6433141264133155],[113,145,75,-0.6421039546839893],[113,145,76,-0.6411612671799958],[113,145,77,-0.6402654582634568],[113,145,78,-0.6392825578805059],[113,145,79,-0.6381215718574822],[113,146,64,-0.6633545868098736],[113,146,65,-0.661445114761591],[113,146,66,-0.6599388187751174],[113,146,67,-0.6590012442320585],[113,146,68,-0.6584649458527565],[113,146,69,-0.6579070575535297],[113,146,70,-0.6572508318349719],[113,146,71,-0.6563657047227025],[113,146,72,-0.6548767378553748],[113,146,73,-0.6528738643974066],[113,146,74,-0.6511266264133155],[113,146,75,-0.6499164546839893],[113,146,76,-0.6489737671799958],[113,146,77,-0.6480779582634568],[113,146,78,-0.6470950578805059],[113,146,79,-0.6459340718574822],[113,147,64,-0.6711670868098736],[113,147,65,-0.669257614761591],[113,147,66,-0.6677513187751174],[113,147,67,-0.6668137442320585],[113,147,68,-0.6662774458527565],[113,147,69,-0.6657195575535297],[113,147,70,-0.6650633318349719],[113,147,71,-0.6641782047227025],[113,147,72,-0.6626892378553748],[113,147,73,-0.6606863643974066],[113,147,74,-0.6589391264133155],[113,147,75,-0.6577289546839893],[113,147,76,-0.6567862671799958],[113,147,77,-0.6558904582634568],[113,147,78,-0.6549075578805059],[113,147,79,-0.6537465718574822],[113,148,64,-0.6789795868098736],[113,148,65,-0.677070114761591],[113,148,66,-0.6755638187751174],[113,148,67,-0.6746262442320585],[113,148,68,-0.6740899458527565],[113,148,69,-0.6735320575535297],[113,148,70,-0.6728758318349719],[113,148,71,-0.6719907047227025],[113,148,72,-0.6705017378553748],[113,148,73,-0.6684988643974066],[113,148,74,-0.6667516264133155],[113,148,75,-0.6655414546839893],[113,148,76,-0.6645987671799958],[113,148,77,-0.6637029582634568],[113,148,78,-0.6627200578805059],[113,148,79,-0.6615590718574822],[113,149,64,-0.6867920868098736],[113,149,65,-0.684882614761591],[113,149,66,-0.6833763187751174],[113,149,67,-0.6824387442320585],[113,149,68,-0.6819024458527565],[113,149,69,-0.6813445575535297],[113,149,70,-0.6806883318349719],[113,149,71,-0.6798032047227025],[113,149,72,-0.6783142378553748],[113,149,73,-0.6763113643974066],[113,149,74,-0.6745641264133155],[113,149,75,-0.6733539546839893],[113,149,76,-0.6724112671799958],[113,149,77,-0.6715154582634568],[113,149,78,-0.6705325578805059],[113,149,79,-0.6693715718574822],[113,150,64,-0.6946045868098736],[113,150,65,-0.692695114761591],[113,150,66,-0.6911888187751174],[113,150,67,-0.6902512442320585],[113,150,68,-0.6897149458527565],[113,150,69,-0.6891570575535297],[113,150,70,-0.6885008318349719],[113,150,71,-0.6876157047227025],[113,150,72,-0.6861267378553748],[113,150,73,-0.6841238643974066],[113,150,74,-0.6823766264133155],[113,150,75,-0.6811664546839893],[113,150,76,-0.6802237671799958],[113,150,77,-0.6793279582634568],[113,150,78,-0.6783450578805059],[113,150,79,-0.6771840718574822],[113,151,64,-0.7024170868098736],[113,151,65,-0.700507614761591],[113,151,66,-0.6990013187751174],[113,151,67,-0.6980637442320585],[113,151,68,-0.6975274458527565],[113,151,69,-0.6969695575535297],[113,151,70,-0.6963133318349719],[113,151,71,-0.6954282047227025],[113,151,72,-0.6939392378553748],[113,151,73,-0.6919363643974066],[113,151,74,-0.6901891264133155],[113,151,75,-0.6889789546839893],[113,151,76,-0.6880362671799958],[113,151,77,-0.6871404582634568],[113,151,78,-0.6861575578805059],[113,151,79,-0.6849965718574822],[113,152,64,-0.7102295868098736],[113,152,65,-0.708320114761591],[113,152,66,-0.7068138187751174],[113,152,67,-0.7058762442320585],[113,152,68,-0.7053399458527565],[113,152,69,-0.7047820575535297],[113,152,70,-0.7041258318349719],[113,152,71,-0.7032407047227025],[113,152,72,-0.7017517378553748],[113,152,73,-0.6997488643974066],[113,152,74,-0.6980016264133155],[113,152,75,-0.6967914546839893],[113,152,76,-0.6958487671799958],[113,152,77,-0.6949529582634568],[113,152,78,-0.6939700578805059],[113,152,79,-0.6928090718574822],[113,153,64,-0.7180420868098736],[113,153,65,-0.716132614761591],[113,153,66,-0.7146263187751174],[113,153,67,-0.7136887442320585],[113,153,68,-0.7131524458527565],[113,153,69,-0.7125945575535297],[113,153,70,-0.7119383318349719],[113,153,71,-0.7110532047227025],[113,153,72,-0.7095642378553748],[113,153,73,-0.7075613643974066],[113,153,74,-0.7058141264133155],[113,153,75,-0.7046039546839893],[113,153,76,-0.7036612671799958],[113,153,77,-0.7027654582634568],[113,153,78,-0.7017825578805059],[113,153,79,-0.7006215718574822],[113,154,64,-0.7258545868098736],[113,154,65,-0.723945114761591],[113,154,66,-0.7224388187751174],[113,154,67,-0.7215012442320585],[113,154,68,-0.7209649458527565],[113,154,69,-0.7204070575535297],[113,154,70,-0.7197508318349719],[113,154,71,-0.7188657047227025],[113,154,72,-0.7173767378553748],[113,154,73,-0.7153738643974066],[113,154,74,-0.7136266264133155],[113,154,75,-0.7124164546839893],[113,154,76,-0.7114737671799958],[113,154,77,-0.7105779582634568],[113,154,78,-0.7095950578805059],[113,154,79,-0.7084340718574822],[113,155,64,-0.7336670868098736],[113,155,65,-0.731757614761591],[113,155,66,-0.7302513187751174],[113,155,67,-0.7293137442320585],[113,155,68,-0.7287774458527565],[113,155,69,-0.7282195575535297],[113,155,70,-0.7275633318349719],[113,155,71,-0.7266782047227025],[113,155,72,-0.7251892378553748],[113,155,73,-0.7231863643974066],[113,155,74,-0.7214391264133155],[113,155,75,-0.7202289546839893],[113,155,76,-0.7192862671799958],[113,155,77,-0.7183904582634568],[113,155,78,-0.7174075578805059],[113,155,79,-0.7162465718574822],[113,156,64,-0.7414795868098736],[113,156,65,-0.739570114761591],[113,156,66,-0.7380638187751174],[113,156,67,-0.7371262442320585],[113,156,68,-0.7365899458527565],[113,156,69,-0.7360320575535297],[113,156,70,-0.7353758318349719],[113,156,71,-0.7344907047227025],[113,156,72,-0.7330017378553748],[113,156,73,-0.7309988643974066],[113,156,74,-0.7292516264133155],[113,156,75,-0.7280414546839893],[113,156,76,-0.7270987671799958],[113,156,77,-0.7262029582634568],[113,156,78,-0.7252200578805059],[113,156,79,-0.7240590718574822],[113,157,64,-0.7492920868098736],[113,157,65,-0.747382614761591],[113,157,66,-0.7458763187751174],[113,157,67,-0.7449387442320585],[113,157,68,-0.7444024458527565],[113,157,69,-0.7438445575535297],[113,157,70,-0.7431883318349719],[113,157,71,-0.7423032047227025],[113,157,72,-0.7408142378553748],[113,157,73,-0.7388113643974066],[113,157,74,-0.7370641264133155],[113,157,75,-0.7358539546839893],[113,157,76,-0.7349112671799958],[113,157,77,-0.7340154582634568],[113,157,78,-0.7330325578805059],[113,157,79,-0.7318715718574822],[113,158,64,-0.7571045868098736],[113,158,65,-0.755195114761591],[113,158,66,-0.7536888187751174],[113,158,67,-0.7527512442320585],[113,158,68,-0.7522149458527565],[113,158,69,-0.7516570575535297],[113,158,70,-0.7510008318349719],[113,158,71,-0.7501157047227025],[113,158,72,-0.7486267378553748],[113,158,73,-0.7466238643974066],[113,158,74,-0.7448766264133155],[113,158,75,-0.7436664546839893],[113,158,76,-0.7427237671799958],[113,158,77,-0.7418279582634568],[113,158,78,-0.7408450578805059],[113,158,79,-0.7396840718574822],[113,159,64,-0.7649170868098736],[113,159,65,-0.763007614761591],[113,159,66,-0.7615013187751174],[113,159,67,-0.7605637442320585],[113,159,68,-0.7600274458527565],[113,159,69,-0.7594695575535297],[113,159,70,-0.7588133318349719],[113,159,71,-0.7579282047227025],[113,159,72,-0.7564392378553748],[113,159,73,-0.7544363643974066],[113,159,74,-0.7526891264133155],[113,159,75,-0.7514789546839893],[113,159,76,-0.7505362671799958],[113,159,77,-0.7496404582634568],[113,159,78,-0.7486575578805059],[113,159,79,-0.7474965718574822],[113,160,64,-0.7727295868098736],[113,160,65,-0.770820114761591],[113,160,66,-0.7693138187751174],[113,160,67,-0.7683762442320585],[113,160,68,-0.7678399458527565],[113,160,69,-0.7672820575535297],[113,160,70,-0.7666258318349719],[113,160,71,-0.7657407047227025],[113,160,72,-0.7642517378553748],[113,160,73,-0.7622488643974066],[113,160,74,-0.7605016264133155],[113,160,75,-0.7592914546839893],[113,160,76,-0.7583487671799958],[113,160,77,-0.7574529582634568],[113,160,78,-0.7564700578805059],[113,160,79,-0.7553090718574822],[113,161,64,-0.7805420868098736],[113,161,65,-0.778632614761591],[113,161,66,-0.7771263187751174],[113,161,67,-0.7761887442320585],[113,161,68,-0.7756524458527565],[113,161,69,-0.7750945575535297],[113,161,70,-0.7744383318349719],[113,161,71,-0.7735532047227025],[113,161,72,-0.7720642378553748],[113,161,73,-0.7700613643974066],[113,161,74,-0.7683141264133155],[113,161,75,-0.7671039546839893],[113,161,76,-0.7661612671799958],[113,161,77,-0.7652654582634568],[113,161,78,-0.7642825578805059],[113,161,79,-0.7631215718574822],[113,162,64,-0.7883545868098736],[113,162,65,-0.786445114761591],[113,162,66,-0.7849388187751174],[113,162,67,-0.7840012442320585],[113,162,68,-0.7834649458527565],[113,162,69,-0.7829070575535297],[113,162,70,-0.7822508318349719],[113,162,71,-0.7813657047227025],[113,162,72,-0.7798767378553748],[113,162,73,-0.7778738643974066],[113,162,74,-0.7761266264133155],[113,162,75,-0.7749164546839893],[113,162,76,-0.7739737671799958],[113,162,77,-0.7730779582634568],[113,162,78,-0.7720950578805059],[113,162,79,-0.7709340718574822],[113,163,64,-0.7961670868098736],[113,163,65,-0.794257614761591],[113,163,66,-0.7927513187751174],[113,163,67,-0.7918137442320585],[113,163,68,-0.7912774458527565],[113,163,69,-0.7907195575535297],[113,163,70,-0.7900633318349719],[113,163,71,-0.7891782047227025],[113,163,72,-0.7876892378553748],[113,163,73,-0.7856863643974066],[113,163,74,-0.7839391264133155],[113,163,75,-0.7827289546839893],[113,163,76,-0.7817862671799958],[113,163,77,-0.7808904582634568],[113,163,78,-0.7799075578805059],[113,163,79,-0.7787465718574822],[113,164,64,-0.8039795868098736],[113,164,65,-0.802070114761591],[113,164,66,-0.8005638187751174],[113,164,67,-0.7996262442320585],[113,164,68,-0.7990899458527565],[113,164,69,-0.7985320575535297],[113,164,70,-0.7978758318349719],[113,164,71,-0.7969907047227025],[113,164,72,-0.7955017378553748],[113,164,73,-0.7934988643974066],[113,164,74,-0.7917516264133155],[113,164,75,-0.7905414546839893],[113,164,76,-0.7895987671799958],[113,164,77,-0.7887029582634568],[113,164,78,-0.7877200578805059],[113,164,79,-0.7865590718574822],[113,165,64,-0.8117920868098736],[113,165,65,-0.809882614761591],[113,165,66,-0.8083763187751174],[113,165,67,-0.8074387442320585],[113,165,68,-0.8069024458527565],[113,165,69,-0.8063445575535297],[113,165,70,-0.8056883318349719],[113,165,71,-0.8048032047227025],[113,165,72,-0.8033142378553748],[113,165,73,-0.8013113643974066],[113,165,74,-0.7995641264133155],[113,165,75,-0.7983539546839893],[113,165,76,-0.7974112671799958],[113,165,77,-0.7965154582634568],[113,165,78,-0.7955325578805059],[113,165,79,-0.7943715718574822],[113,166,64,-0.8196045868098736],[113,166,65,-0.817695114761591],[113,166,66,-0.8161888187751174],[113,166,67,-0.8152512442320585],[113,166,68,-0.8147149458527565],[113,166,69,-0.8141570575535297],[113,166,70,-0.8135008318349719],[113,166,71,-0.8126157047227025],[113,166,72,-0.8111267378553748],[113,166,73,-0.8091238643974066],[113,166,74,-0.8073766264133155],[113,166,75,-0.8061664546839893],[113,166,76,-0.8052237671799958],[113,166,77,-0.8043279582634568],[113,166,78,-0.8033450578805059],[113,166,79,-0.8021840718574822],[113,167,64,-0.8274170868098736],[113,167,65,-0.825507614761591],[113,167,66,-0.8240013187751174],[113,167,67,-0.8230637442320585],[113,167,68,-0.8225274458527565],[113,167,69,-0.8219695575535297],[113,167,70,-0.8213133318349719],[113,167,71,-0.8204282047227025],[113,167,72,-0.8189392378553748],[113,167,73,-0.8169363643974066],[113,167,74,-0.8151891264133155],[113,167,75,-0.8139789546839893],[113,167,76,-0.8130362671799958],[113,167,77,-0.8121404582634568],[113,167,78,-0.8111575578805059],[113,167,79,-0.8099965718574822],[113,168,64,-0.8352295868098736],[113,168,65,-0.833320114761591],[113,168,66,-0.8318138187751174],[113,168,67,-0.8308762442320585],[113,168,68,-0.8303399458527565],[113,168,69,-0.8297820575535297],[113,168,70,-0.8291258318349719],[113,168,71,-0.8282407047227025],[113,168,72,-0.8267517378553748],[113,168,73,-0.8247488643974066],[113,168,74,-0.8230016264133155],[113,168,75,-0.8217914546839893],[113,168,76,-0.8208487671799958],[113,168,77,-0.8199529582634568],[113,168,78,-0.8189700578805059],[113,168,79,-0.8178090718574822],[113,169,64,-0.8430420868098736],[113,169,65,-0.841132614761591],[113,169,66,-0.8396263187751174],[113,169,67,-0.8386887442320585],[113,169,68,-0.8381524458527565],[113,169,69,-0.8375945575535297],[113,169,70,-0.8369383318349719],[113,169,71,-0.8360532047227025],[113,169,72,-0.8345642378553748],[113,169,73,-0.8325613643974066],[113,169,74,-0.8308141264133155],[113,169,75,-0.8296039546839893],[113,169,76,-0.8286612671799958],[113,169,77,-0.8277654582634568],[113,169,78,-0.8267825578805059],[113,169,79,-0.8256215718574822],[113,170,64,-0.8508545868098736],[113,170,65,-0.848945114761591],[113,170,66,-0.8474388187751174],[113,170,67,-0.8465012442320585],[113,170,68,-0.8459649458527565],[113,170,69,-0.8454070575535297],[113,170,70,-0.8447508318349719],[113,170,71,-0.8438657047227025],[113,170,72,-0.8423767378553748],[113,170,73,-0.8403738643974066],[113,170,74,-0.8386266264133155],[113,170,75,-0.8374164546839893],[113,170,76,-0.8364737671799958],[113,170,77,-0.8355779582634568],[113,170,78,-0.8345950578805059],[113,170,79,-0.8334340718574822],[113,171,64,-0.8586670868098736],[113,171,65,-0.856757614761591],[113,171,66,-0.8552513187751174],[113,171,67,-0.8543137442320585],[113,171,68,-0.8537774458527565],[113,171,69,-0.8532195575535297],[113,171,70,-0.8525633318349719],[113,171,71,-0.8516782047227025],[113,171,72,-0.8501892378553748],[113,171,73,-0.8481863643974066],[113,171,74,-0.8464391264133155],[113,171,75,-0.8452289546839893],[113,171,76,-0.8442862671799958],[113,171,77,-0.8433904582634568],[113,171,78,-0.8424075578805059],[113,171,79,-0.8412465718574822],[113,172,64,-0.8664795868098736],[113,172,65,-0.864570114761591],[113,172,66,-0.8630638187751174],[113,172,67,-0.8621262442320585],[113,172,68,-0.8615899458527565],[113,172,69,-0.8610320575535297],[113,172,70,-0.8603758318349719],[113,172,71,-0.8594907047227025],[113,172,72,-0.8580017378553748],[113,172,73,-0.8559988643974066],[113,172,74,-0.8542516264133155],[113,172,75,-0.8530414546839893],[113,172,76,-0.8520987671799958],[113,172,77,-0.8512029582634568],[113,172,78,-0.8502200578805059],[113,172,79,-0.8490590718574822],[113,173,64,-0.8742920868098736],[113,173,65,-0.872382614761591],[113,173,66,-0.8708763187751174],[113,173,67,-0.8699387442320585],[113,173,68,-0.8694024458527565],[113,173,69,-0.8688445575535297],[113,173,70,-0.8681883318349719],[113,173,71,-0.8673032047227025],[113,173,72,-0.8658142378553748],[113,173,73,-0.8638113643974066],[113,173,74,-0.8620641264133155],[113,173,75,-0.8608539546839893],[113,173,76,-0.8599112671799958],[113,173,77,-0.8590154582634568],[113,173,78,-0.8580325578805059],[113,173,79,-0.8568715718574822],[113,174,64,-0.8821045868098736],[113,174,65,-0.880195114761591],[113,174,66,-0.8786888187751174],[113,174,67,-0.8777512442320585],[113,174,68,-0.8772149458527565],[113,174,69,-0.8766570575535297],[113,174,70,-0.8760008318349719],[113,174,71,-0.8751157047227025],[113,174,72,-0.8736267378553748],[113,174,73,-0.8716238643974066],[113,174,74,-0.8698766264133155],[113,174,75,-0.8686664546839893],[113,174,76,-0.8677237671799958],[113,174,77,-0.8668279582634568],[113,174,78,-0.8658450578805059],[113,174,79,-0.8646840718574822],[113,175,64,-0.8899170868098736],[113,175,65,-0.888007614761591],[113,175,66,-0.8865013187751174],[113,175,67,-0.8855637442320585],[113,175,68,-0.8850274458527565],[113,175,69,-0.8844695575535297],[113,175,70,-0.8838133318349719],[113,175,71,-0.8829282047227025],[113,175,72,-0.8814392378553748],[113,175,73,-0.8794363643974066],[113,175,74,-0.8776891264133155],[113,175,75,-0.8764789546839893],[113,175,76,-0.8755362671799958],[113,175,77,-0.8746404582634568],[113,175,78,-0.8736575578805059],[113,175,79,-0.8724965718574822],[113,176,64,-0.8977295868098736],[113,176,65,-0.895820114761591],[113,176,66,-0.8943138187751174],[113,176,67,-0.8933762442320585],[113,176,68,-0.8928399458527565],[113,176,69,-0.8922820575535297],[113,176,70,-0.8916258318349719],[113,176,71,-0.8907407047227025],[113,176,72,-0.8892517378553748],[113,176,73,-0.8872488643974066],[113,176,74,-0.8855016264133155],[113,176,75,-0.8842914546839893],[113,176,76,-0.8833487671799958],[113,176,77,-0.8824529582634568],[113,176,78,-0.8814700578805059],[113,176,79,-0.8803090718574822],[113,177,64,-0.9055420868098736],[113,177,65,-0.903632614761591],[113,177,66,-0.9021263187751174],[113,177,67,-0.9011887442320585],[113,177,68,-0.9006524458527565],[113,177,69,-0.9000945575535297],[113,177,70,-0.8994383318349719],[113,177,71,-0.8985532047227025],[113,177,72,-0.8970642378553748],[113,177,73,-0.8950613643974066],[113,177,74,-0.8933141264133155],[113,177,75,-0.8921039546839893],[113,177,76,-0.8911612671799958],[113,177,77,-0.8902654582634568],[113,177,78,-0.8892825578805059],[113,177,79,-0.8881215718574822],[113,178,64,-0.9133545868098736],[113,178,65,-0.911445114761591],[113,178,66,-0.9099388187751174],[113,178,67,-0.9090012442320585],[113,178,68,-0.9084649458527565],[113,178,69,-0.9079070575535297],[113,178,70,-0.9072508318349719],[113,178,71,-0.9063657047227025],[113,178,72,-0.9048767378553748],[113,178,73,-0.9028738643974066],[113,178,74,-0.9011266264133155],[113,178,75,-0.8999164546839893],[113,178,76,-0.8989737671799958],[113,178,77,-0.8980779582634568],[113,178,78,-0.8970950578805059],[113,178,79,-0.8959340718574822],[113,179,64,-0.9211670868098736],[113,179,65,-0.919257614761591],[113,179,66,-0.9177513187751174],[113,179,67,-0.9168137442320585],[113,179,68,-0.9162774458527565],[113,179,69,-0.9157195575535297],[113,179,70,-0.9150633318349719],[113,179,71,-0.9141782047227025],[113,179,72,-0.9126892378553748],[113,179,73,-0.9106863643974066],[113,179,74,-0.9089391264133155],[113,179,75,-0.9077289546839893],[113,179,76,-0.9067862671799958],[113,179,77,-0.9058904582634568],[113,179,78,-0.9049075578805059],[113,179,79,-0.9037465718574822],[113,180,64,-0.9289795868098736],[113,180,65,-0.927070114761591],[113,180,66,-0.9255638187751174],[113,180,67,-0.9246262442320585],[113,180,68,-0.9240899458527565],[113,180,69,-0.9235320575535297],[113,180,70,-0.9228758318349719],[113,180,71,-0.9219907047227025],[113,180,72,-0.9205017378553748],[113,180,73,-0.9184988643974066],[113,180,74,-0.9167516264133155],[113,180,75,-0.9155414546839893],[113,180,76,-0.9145987671799958],[113,180,77,-0.9137029582634568],[113,180,78,-0.9127200578805059],[113,180,79,-0.9115590718574822],[113,181,64,-0.9367920868098736],[113,181,65,-0.934882614761591],[113,181,66,-0.9333763187751174],[113,181,67,-0.9324387442320585],[113,181,68,-0.9319024458527565],[113,181,69,-0.9313445575535297],[113,181,70,-0.9306883318349719],[113,181,71,-0.9298032047227025],[113,181,72,-0.9283142378553748],[113,181,73,-0.9263113643974066],[113,181,74,-0.9245641264133155],[113,181,75,-0.9233539546839893],[113,181,76,-0.9224112671799958],[113,181,77,-0.9215154582634568],[113,181,78,-0.9205325578805059],[113,181,79,-0.9193715718574822],[113,182,64,-0.9446045868098736],[113,182,65,-0.942695114761591],[113,182,66,-0.9411888187751174],[113,182,67,-0.9402512442320585],[113,182,68,-0.9397149458527565],[113,182,69,-0.9391570575535297],[113,182,70,-0.9385008318349719],[113,182,71,-0.9376157047227025],[113,182,72,-0.9361267378553748],[113,182,73,-0.9341238643974066],[113,182,74,-0.9323766264133155],[113,182,75,-0.9311664546839893],[113,182,76,-0.9302237671799958],[113,182,77,-0.9293279582634568],[113,182,78,-0.9283450578805059],[113,182,79,-0.9271840718574822],[113,183,64,-0.9524170868098736],[113,183,65,-0.950507614761591],[113,183,66,-0.9490013187751174],[113,183,67,-0.9480637442320585],[113,183,68,-0.9475274458527565],[113,183,69,-0.9469695575535297],[113,183,70,-0.9463133318349719],[113,183,71,-0.9454282047227025],[113,183,72,-0.9439392378553748],[113,183,73,-0.9419363643974066],[113,183,74,-0.9401891264133155],[113,183,75,-0.9389789546839893],[113,183,76,-0.9380362671799958],[113,183,77,-0.9371404582634568],[113,183,78,-0.9361575578805059],[113,183,79,-0.9349965718574822],[113,184,64,-0.9602295868098736],[113,184,65,-0.958320114761591],[113,184,66,-0.9568138187751174],[113,184,67,-0.9558762442320585],[113,184,68,-0.9553399458527565],[113,184,69,-0.9547820575535297],[113,184,70,-0.9541258318349719],[113,184,71,-0.9532407047227025],[113,184,72,-0.9517517378553748],[113,184,73,-0.9497488643974066],[113,184,74,-0.9480016264133155],[113,184,75,-0.9467914546839893],[113,184,76,-0.9458487671799958],[113,184,77,-0.9449529582634568],[113,184,78,-0.9439700578805059],[113,184,79,-0.9428090718574822],[113,185,64,-0.9680420868098736],[113,185,65,-0.966132614761591],[113,185,66,-0.9646263187751174],[113,185,67,-0.9636887442320585],[113,185,68,-0.9631524458527565],[113,185,69,-0.9625945575535297],[113,185,70,-0.9619383318349719],[113,185,71,-0.9610532047227025],[113,185,72,-0.9595642378553748],[113,185,73,-0.9575613643974066],[113,185,74,-0.9558141264133155],[113,185,75,-0.9546039546839893],[113,185,76,-0.9536612671799958],[113,185,77,-0.9527654582634568],[113,185,78,-0.9517825578805059],[113,185,79,-0.9506215718574822],[113,186,64,-0.9758545868098736],[113,186,65,-0.973945114761591],[113,186,66,-0.9724388187751174],[113,186,67,-0.9715012442320585],[113,186,68,-0.9709649458527565],[113,186,69,-0.9704070575535297],[113,186,70,-0.9697508318349719],[113,186,71,-0.9688657047227025],[113,186,72,-0.9673767378553748],[113,186,73,-0.9653738643974066],[113,186,74,-0.9636266264133155],[113,186,75,-0.9624164546839893],[113,186,76,-0.9614737671799958],[113,186,77,-0.9605779582634568],[113,186,78,-0.9595950578805059],[113,186,79,-0.9584340718574822],[113,187,64,-0.9836670868098736],[113,187,65,-0.981757614761591],[113,187,66,-0.9802513187751174],[113,187,67,-0.9793137442320585],[113,187,68,-0.9787774458527565],[113,187,69,-0.9782195575535297],[113,187,70,-0.9775633318349719],[113,187,71,-0.9766782047227025],[113,187,72,-0.9751892378553748],[113,187,73,-0.9731863643974066],[113,187,74,-0.9714391264133155],[113,187,75,-0.9702289546839893],[113,187,76,-0.9692862671799958],[113,187,77,-0.9683904582634568],[113,187,78,-0.9674075578805059],[113,187,79,-0.9662465718574822],[113,188,64,-0.9914795868098736],[113,188,65,-0.989570114761591],[113,188,66,-0.9880638187751174],[113,188,67,-0.9871262442320585],[113,188,68,-0.9865899458527565],[113,188,69,-0.9860320575535297],[113,188,70,-0.9853758318349719],[113,188,71,-0.9844907047227025],[113,188,72,-0.9830017378553748],[113,188,73,-0.9809988643974066],[113,188,74,-0.9792516264133155],[113,188,75,-0.9780414546839893],[113,188,76,-0.9770987671799958],[113,188,77,-0.9762029582634568],[113,188,78,-0.9752200578805059],[113,188,79,-0.9740590718574822],[113,189,64,-0.9992920868098736],[113,189,65,-0.997382614761591],[113,189,66,-0.9958763187751174],[113,189,67,-0.9949387442320585],[113,189,68,-0.9944024458527565],[113,189,69,-0.9938445575535297],[113,189,70,-0.9931883318349719],[113,189,71,-0.9923032047227025],[113,189,72,-0.9908142378553748],[113,189,73,-0.9888113643974066],[113,189,74,-0.9870641264133155],[113,189,75,-0.9858539546839893],[113,189,76,-0.9849112671799958],[113,189,77,-0.9840154582634568],[113,189,78,-0.9830325578805059],[113,189,79,-0.9818715718574822],[113,190,64,-1.0071045868098736],[113,190,65,-1.005195114761591],[113,190,66,-1.0036888187751174],[113,190,67,-1.0027512442320585],[113,190,68,-1.0022149458527565],[113,190,69,-1.0016570575535297],[113,190,70,-1.001000831834972],[113,190,71,-1.0001157047227025],[113,190,72,-0.9986267378553748],[113,190,73,-0.9966238643974066],[113,190,74,-0.9948766264133155],[113,190,75,-0.9936664546839893],[113,190,76,-0.9927237671799958],[113,190,77,-0.9918279582634568],[113,190,78,-0.9908450578805059],[113,190,79,-0.9896840718574822],[113,191,64,-1.0149170868098736],[113,191,65,-1.013007614761591],[113,191,66,-1.0115013187751174],[113,191,67,-1.0105637442320585],[113,191,68,-1.0100274458527565],[113,191,69,-1.0094695575535297],[113,191,70,-1.008813331834972],[113,191,71,-1.0079282047227025],[113,191,72,-1.0064392378553748],[113,191,73,-1.0044363643974066],[113,191,74,-1.0026891264133155],[113,191,75,-1.0014789546839893],[113,191,76,-1.0005362671799958],[113,191,77,-0.9996404582634568],[113,191,78,-0.9986575578805059],[113,191,79,-0.9974965718574822],[113,192,64,-1.0227295868098736],[113,192,65,-1.020820114761591],[113,192,66,-1.0193138187751174],[113,192,67,-1.0183762442320585],[113,192,68,-1.0178399458527565],[113,192,69,-1.0172820575535297],[113,192,70,-1.016625831834972],[113,192,71,-1.0157407047227025],[113,192,72,-1.0142517378553748],[113,192,73,-1.0122488643974066],[113,192,74,-1.0105016264133155],[113,192,75,-1.0092914546839893],[113,192,76,-1.0083487671799958],[113,192,77,-1.0074529582634568],[113,192,78,-1.006470057880506],[113,192,79,-1.0053090718574822],[113,193,64,-1.0305420868098736],[113,193,65,-1.028632614761591],[113,193,66,-1.0271263187751174],[113,193,67,-1.0261887442320585],[113,193,68,-1.0256524458527565],[113,193,69,-1.0250945575535297],[113,193,70,-1.024438331834972],[113,193,71,-1.0235532047227025],[113,193,72,-1.0220642378553748],[113,193,73,-1.0200613643974066],[113,193,74,-1.0183141264133155],[113,193,75,-1.0171039546839893],[113,193,76,-1.0161612671799958],[113,193,77,-1.0152654582634568],[113,193,78,-1.014282557880506],[113,193,79,-1.0131215718574822],[113,194,64,-1.0383545868098736],[113,194,65,-1.036445114761591],[113,194,66,-1.0349388187751174],[113,194,67,-1.0340012442320585],[113,194,68,-1.0334649458527565],[113,194,69,-1.0329070575535297],[113,194,70,-1.032250831834972],[113,194,71,-1.0313657047227025],[113,194,72,-1.0298767378553748],[113,194,73,-1.0278738643974066],[113,194,74,-1.0261266264133155],[113,194,75,-1.0249164546839893],[113,194,76,-1.0239737671799958],[113,194,77,-1.0230779582634568],[113,194,78,-1.022095057880506],[113,194,79,-1.0209340718574822],[113,195,64,-1.0461670868098736],[113,195,65,-1.044257614761591],[113,195,66,-1.0427513187751174],[113,195,67,-1.0418137442320585],[113,195,68,-1.0412774458527565],[113,195,69,-1.0407195575535297],[113,195,70,-1.040063331834972],[113,195,71,-1.0391782047227025],[113,195,72,-1.0376892378553748],[113,195,73,-1.0356863643974066],[113,195,74,-1.0339391264133155],[113,195,75,-1.0327289546839893],[113,195,76,-1.0317862671799958],[113,195,77,-1.0308904582634568],[113,195,78,-1.029907557880506],[113,195,79,-1.0287465718574822],[113,196,64,-1.0539795868098736],[113,196,65,-1.052070114761591],[113,196,66,-1.0505638187751174],[113,196,67,-1.0496262442320585],[113,196,68,-1.0490899458527565],[113,196,69,-1.0485320575535297],[113,196,70,-1.047875831834972],[113,196,71,-1.0469907047227025],[113,196,72,-1.0455017378553748],[113,196,73,-1.0434988643974066],[113,196,74,-1.0417516264133155],[113,196,75,-1.0405414546839893],[113,196,76,-1.0395987671799958],[113,196,77,-1.0387029582634568],[113,196,78,-1.037720057880506],[113,196,79,-1.0365590718574822],[113,197,64,-1.0617920868098736],[113,197,65,-1.059882614761591],[113,197,66,-1.0583763187751174],[113,197,67,-1.0574387442320585],[113,197,68,-1.0569024458527565],[113,197,69,-1.0563445575535297],[113,197,70,-1.055688331834972],[113,197,71,-1.0548032047227025],[113,197,72,-1.0533142378553748],[113,197,73,-1.0513113643974066],[113,197,74,-1.0495641264133155],[113,197,75,-1.0483539546839893],[113,197,76,-1.0474112671799958],[113,197,77,-1.0465154582634568],[113,197,78,-1.045532557880506],[113,197,79,-1.0443715718574822],[113,198,64,-1.0696045868098736],[113,198,65,-1.067695114761591],[113,198,66,-1.0661888187751174],[113,198,67,-1.0652512442320585],[113,198,68,-1.0647149458527565],[113,198,69,-1.0641570575535297],[113,198,70,-1.063500831834972],[113,198,71,-1.0626157047227025],[113,198,72,-1.0611267378553748],[113,198,73,-1.0591238643974066],[113,198,74,-1.0573766264133155],[113,198,75,-1.0561664546839893],[113,198,76,-1.0552237671799958],[113,198,77,-1.0543279582634568],[113,198,78,-1.053345057880506],[113,198,79,-1.0521840718574822],[113,199,64,-1.0774170868098736],[113,199,65,-1.075507614761591],[113,199,66,-1.0740013187751174],[113,199,67,-1.0730637442320585],[113,199,68,-1.0725274458527565],[113,199,69,-1.0719695575535297],[113,199,70,-1.071313331834972],[113,199,71,-1.0704282047227025],[113,199,72,-1.0689392378553748],[113,199,73,-1.0669363643974066],[113,199,74,-1.0651891264133155],[113,199,75,-1.0639789546839893],[113,199,76,-1.0630362671799958],[113,199,77,-1.0621404582634568],[113,199,78,-1.061157557880506],[113,199,79,-1.0599965718574822],[113,200,64,-1.0852295868098736],[113,200,65,-1.083320114761591],[113,200,66,-1.0818138187751174],[113,200,67,-1.0808762442320585],[113,200,68,-1.0803399458527565],[113,200,69,-1.0797820575535297],[113,200,70,-1.079125831834972],[113,200,71,-1.0782407047227025],[113,200,72,-1.0767517378553748],[113,200,73,-1.0747488643974066],[113,200,74,-1.0730016264133155],[113,200,75,-1.0717914546839893],[113,200,76,-1.0708487671799958],[113,200,77,-1.0699529582634568],[113,200,78,-1.068970057880506],[113,200,79,-1.0678090718574822],[113,201,64,-1.0930420868098736],[113,201,65,-1.091132614761591],[113,201,66,-1.0896263187751174],[113,201,67,-1.0886887442320585],[113,201,68,-1.0881524458527565],[113,201,69,-1.0875945575535297],[113,201,70,-1.086938331834972],[113,201,71,-1.0860532047227025],[113,201,72,-1.0845642378553748],[113,201,73,-1.0825613643974066],[113,201,74,-1.0808141264133155],[113,201,75,-1.0796039546839893],[113,201,76,-1.0786612671799958],[113,201,77,-1.0777654582634568],[113,201,78,-1.076782557880506],[113,201,79,-1.0756215718574822],[113,202,64,-1.1008545868098736],[113,202,65,-1.098945114761591],[113,202,66,-1.0974388187751174],[113,202,67,-1.0965012442320585],[113,202,68,-1.0959649458527565],[113,202,69,-1.0954070575535297],[113,202,70,-1.094750831834972],[113,202,71,-1.0938657047227025],[113,202,72,-1.0923767378553748],[113,202,73,-1.0903738643974066],[113,202,74,-1.0886266264133155],[113,202,75,-1.0874164546839893],[113,202,76,-1.0864737671799958],[113,202,77,-1.0855779582634568],[113,202,78,-1.084595057880506],[113,202,79,-1.0834340718574822],[113,203,64,-1.1086670868098736],[113,203,65,-1.106757614761591],[113,203,66,-1.1052513187751174],[113,203,67,-1.1043137442320585],[113,203,68,-1.1037774458527565],[113,203,69,-1.1032195575535297],[113,203,70,-1.102563331834972],[113,203,71,-1.1016782047227025],[113,203,72,-1.1001892378553748],[113,203,73,-1.0981863643974066],[113,203,74,-1.0964391264133155],[113,203,75,-1.0952289546839893],[113,203,76,-1.0942862671799958],[113,203,77,-1.0933904582634568],[113,203,78,-1.092407557880506],[113,203,79,-1.0912465718574822],[113,204,64,-1.1164795868098736],[113,204,65,-1.114570114761591],[113,204,66,-1.1130638187751174],[113,204,67,-1.1121262442320585],[113,204,68,-1.1115899458527565],[113,204,69,-1.1110320575535297],[113,204,70,-1.110375831834972],[113,204,71,-1.1094907047227025],[113,204,72,-1.1080017378553748],[113,204,73,-1.1059988643974066],[113,204,74,-1.1042516264133155],[113,204,75,-1.1030414546839893],[113,204,76,-1.1020987671799958],[113,204,77,-1.1012029582634568],[113,204,78,-1.100220057880506],[113,204,79,-1.0990590718574822],[113,205,64,-1.1242920868098736],[113,205,65,-1.122382614761591],[113,205,66,-1.1208763187751174],[113,205,67,-1.1199387442320585],[113,205,68,-1.1194024458527565],[113,205,69,-1.1188445575535297],[113,205,70,-1.118188331834972],[113,205,71,-1.1173032047227025],[113,205,72,-1.1158142378553748],[113,205,73,-1.1138113643974066],[113,205,74,-1.1120641264133155],[113,205,75,-1.1108539546839893],[113,205,76,-1.1099112671799958],[113,205,77,-1.1090154582634568],[113,205,78,-1.108032557880506],[113,205,79,-1.1068715718574822],[113,206,64,-1.1321045868098736],[113,206,65,-1.130195114761591],[113,206,66,-1.1286888187751174],[113,206,67,-1.1277512442320585],[113,206,68,-1.1272149458527565],[113,206,69,-1.1266570575535297],[113,206,70,-1.126000831834972],[113,206,71,-1.1251157047227025],[113,206,72,-1.1236267378553748],[113,206,73,-1.1216238643974066],[113,206,74,-1.1198766264133155],[113,206,75,-1.1186664546839893],[113,206,76,-1.1177237671799958],[113,206,77,-1.1168279582634568],[113,206,78,-1.115845057880506],[113,206,79,-1.1146840718574822],[113,207,64,-1.1399170868098736],[113,207,65,-1.138007614761591],[113,207,66,-1.1365013187751174],[113,207,67,-1.1355637442320585],[113,207,68,-1.1350274458527565],[113,207,69,-1.1344695575535297],[113,207,70,-1.133813331834972],[113,207,71,-1.1329282047227025],[113,207,72,-1.1314392378553748],[113,207,73,-1.1294363643974066],[113,207,74,-1.1276891264133155],[113,207,75,-1.1264789546839893],[113,207,76,-1.1255362671799958],[113,207,77,-1.1246404582634568],[113,207,78,-1.123657557880506],[113,207,79,-1.1224965718574822],[113,208,64,-1.1477295868098736],[113,208,65,-1.145820114761591],[113,208,66,-1.1443138187751174],[113,208,67,-1.1433762442320585],[113,208,68,-1.1428399458527565],[113,208,69,-1.1422820575535297],[113,208,70,-1.141625831834972],[113,208,71,-1.1407407047227025],[113,208,72,-1.1392517378553748],[113,208,73,-1.1372488643974066],[113,208,74,-1.1355016264133155],[113,208,75,-1.1342914546839893],[113,208,76,-1.1333487671799958],[113,208,77,-1.1324529582634568],[113,208,78,-1.131470057880506],[113,208,79,-1.1303090718574822],[113,209,64,-1.1555420868098736],[113,209,65,-1.153632614761591],[113,209,66,-1.1521263187751174],[113,209,67,-1.1511887442320585],[113,209,68,-1.1506524458527565],[113,209,69,-1.1500945575535297],[113,209,70,-1.149438331834972],[113,209,71,-1.1485532047227025],[113,209,72,-1.1470642378553748],[113,209,73,-1.1450613643974066],[113,209,74,-1.1433141264133155],[113,209,75,-1.1421039546839893],[113,209,76,-1.1411612671799958],[113,209,77,-1.1402654582634568],[113,209,78,-1.139282557880506],[113,209,79,-1.1381215718574822],[113,210,64,-1.1633545868098736],[113,210,65,-1.161445114761591],[113,210,66,-1.1599388187751174],[113,210,67,-1.1590012442320585],[113,210,68,-1.1584649458527565],[113,210,69,-1.1579070575535297],[113,210,70,-1.157250831834972],[113,210,71,-1.1563657047227025],[113,210,72,-1.1548767378553748],[113,210,73,-1.1528738643974066],[113,210,74,-1.1511266264133155],[113,210,75,-1.1499164546839893],[113,210,76,-1.1489737671799958],[113,210,77,-1.1480779582634568],[113,210,78,-1.147095057880506],[113,210,79,-1.1459340718574822],[113,211,64,-1.1711670868098736],[113,211,65,-1.169257614761591],[113,211,66,-1.1677513187751174],[113,211,67,-1.1668137442320585],[113,211,68,-1.1662774458527565],[113,211,69,-1.1657195575535297],[113,211,70,-1.165063331834972],[113,211,71,-1.1641782047227025],[113,211,72,-1.1626892378553748],[113,211,73,-1.1606863643974066],[113,211,74,-1.1589391264133155],[113,211,75,-1.1577289546839893],[113,211,76,-1.1567862671799958],[113,211,77,-1.1558904582634568],[113,211,78,-1.154907557880506],[113,211,79,-1.1537465718574822],[113,212,64,-1.1789795868098736],[113,212,65,-1.177070114761591],[113,212,66,-1.1755638187751174],[113,212,67,-1.1746262442320585],[113,212,68,-1.1740899458527565],[113,212,69,-1.1735320575535297],[113,212,70,-1.172875831834972],[113,212,71,-1.1719907047227025],[113,212,72,-1.1705017378553748],[113,212,73,-1.1684988643974066],[113,212,74,-1.1667516264133155],[113,212,75,-1.1655414546839893],[113,212,76,-1.1645987671799958],[113,212,77,-1.1637029582634568],[113,212,78,-1.162720057880506],[113,212,79,-1.1615590718574822],[113,213,64,-1.1867920868098736],[113,213,65,-1.184882614761591],[113,213,66,-1.1833763187751174],[113,213,67,-1.1824387442320585],[113,213,68,-1.1819024458527565],[113,213,69,-1.1813445575535297],[113,213,70,-1.180688331834972],[113,213,71,-1.1798032047227025],[113,213,72,-1.1783142378553748],[113,213,73,-1.1763113643974066],[113,213,74,-1.1745641264133155],[113,213,75,-1.1733539546839893],[113,213,76,-1.1724112671799958],[113,213,77,-1.1715154582634568],[113,213,78,-1.170532557880506],[113,213,79,-1.1693715718574822],[113,214,64,-1.1946045868098736],[113,214,65,-1.192695114761591],[113,214,66,-1.1911888187751174],[113,214,67,-1.1902512442320585],[113,214,68,-1.1897149458527565],[113,214,69,-1.1891570575535297],[113,214,70,-1.188500831834972],[113,214,71,-1.1876157047227025],[113,214,72,-1.1861267378553748],[113,214,73,-1.1841238643974066],[113,214,74,-1.1823766264133155],[113,214,75,-1.1811664546839893],[113,214,76,-1.1802237671799958],[113,214,77,-1.1793279582634568],[113,214,78,-1.178345057880506],[113,214,79,-1.1771840718574822],[113,215,64,-1.2024170868098736],[113,215,65,-1.200507614761591],[113,215,66,-1.1990013187751174],[113,215,67,-1.1980637442320585],[113,215,68,-1.1975274458527565],[113,215,69,-1.1969695575535297],[113,215,70,-1.196313331834972],[113,215,71,-1.1954282047227025],[113,215,72,-1.1939392378553748],[113,215,73,-1.1919363643974066],[113,215,74,-1.1901891264133155],[113,215,75,-1.1889789546839893],[113,215,76,-1.1880362671799958],[113,215,77,-1.1871404582634568],[113,215,78,-1.186157557880506],[113,215,79,-1.1849965718574822],[113,216,64,-1.2102295868098736],[113,216,65,-1.208320114761591],[113,216,66,-1.2068138187751174],[113,216,67,-1.2058762442320585],[113,216,68,-1.2053399458527565],[113,216,69,-1.2047820575535297],[113,216,70,-1.204125831834972],[113,216,71,-1.2032407047227025],[113,216,72,-1.2017517378553748],[113,216,73,-1.1997488643974066],[113,216,74,-1.1980016264133155],[113,216,75,-1.1967914546839893],[113,216,76,-1.1958487671799958],[113,216,77,-1.1949529582634568],[113,216,78,-1.193970057880506],[113,216,79,-1.1928090718574822],[113,217,64,-1.2180420868098736],[113,217,65,-1.216132614761591],[113,217,66,-1.2146263187751174],[113,217,67,-1.2136887442320585],[113,217,68,-1.2131524458527565],[113,217,69,-1.2125945575535297],[113,217,70,-1.211938331834972],[113,217,71,-1.2110532047227025],[113,217,72,-1.2095642378553748],[113,217,73,-1.2075613643974066],[113,217,74,-1.2058141264133155],[113,217,75,-1.2046039546839893],[113,217,76,-1.2036612671799958],[113,217,77,-1.2027654582634568],[113,217,78,-1.201782557880506],[113,217,79,-1.2006215718574822],[113,218,64,-1.2258545868098736],[113,218,65,-1.223945114761591],[113,218,66,-1.2224388187751174],[113,218,67,-1.2215012442320585],[113,218,68,-1.2209649458527565],[113,218,69,-1.2204070575535297],[113,218,70,-1.219750831834972],[113,218,71,-1.2188657047227025],[113,218,72,-1.2173767378553748],[113,218,73,-1.2153738643974066],[113,218,74,-1.2136266264133155],[113,218,75,-1.2124164546839893],[113,218,76,-1.2114737671799958],[113,218,77,-1.2105779582634568],[113,218,78,-1.209595057880506],[113,218,79,-1.2084340718574822],[113,219,64,-1.2336670868098736],[113,219,65,-1.231757614761591],[113,219,66,-1.2302513187751174],[113,219,67,-1.2293137442320585],[113,219,68,-1.2287774458527565],[113,219,69,-1.2282195575535297],[113,219,70,-1.227563331834972],[113,219,71,-1.2266782047227025],[113,219,72,-1.2251892378553748],[113,219,73,-1.2231863643974066],[113,219,74,-1.2214391264133155],[113,219,75,-1.2202289546839893],[113,219,76,-1.2192862671799958],[113,219,77,-1.2183904582634568],[113,219,78,-1.217407557880506],[113,219,79,-1.2162465718574822],[113,220,64,-1.2414795868098736],[113,220,65,-1.239570114761591],[113,220,66,-1.2380638187751174],[113,220,67,-1.2371262442320585],[113,220,68,-1.2365899458527565],[113,220,69,-1.2360320575535297],[113,220,70,-1.235375831834972],[113,220,71,-1.2344907047227025],[113,220,72,-1.2330017378553748],[113,220,73,-1.2309988643974066],[113,220,74,-1.2292516264133155],[113,220,75,-1.2280414546839893],[113,220,76,-1.2270987671799958],[113,220,77,-1.2262029582634568],[113,220,78,-1.225220057880506],[113,220,79,-1.2240590718574822],[113,221,64,-1.2492920868098736],[113,221,65,-1.247382614761591],[113,221,66,-1.2458763187751174],[113,221,67,-1.2449387442320585],[113,221,68,-1.2444024458527565],[113,221,69,-1.2438445575535297],[113,221,70,-1.243188331834972],[113,221,71,-1.2423032047227025],[113,221,72,-1.2408142378553748],[113,221,73,-1.2388113643974066],[113,221,74,-1.2370641264133155],[113,221,75,-1.2358539546839893],[113,221,76,-1.2349112671799958],[113,221,77,-1.2340154582634568],[113,221,78,-1.233032557880506],[113,221,79,-1.2318715718574822],[113,222,64,-1.2571045868098736],[113,222,65,-1.255195114761591],[113,222,66,-1.2536888187751174],[113,222,67,-1.2527512442320585],[113,222,68,-1.2522149458527565],[113,222,69,-1.2516570575535297],[113,222,70,-1.251000831834972],[113,222,71,-1.2501157047227025],[113,222,72,-1.2486267378553748],[113,222,73,-1.2466238643974066],[113,222,74,-1.2448766264133155],[113,222,75,-1.2436664546839893],[113,222,76,-1.2427237671799958],[113,222,77,-1.2418279582634568],[113,222,78,-1.240845057880506],[113,222,79,-1.2396840718574822],[113,223,64,-1.2649170868098736],[113,223,65,-1.263007614761591],[113,223,66,-1.2615013187751174],[113,223,67,-1.2605637442320585],[113,223,68,-1.2600274458527565],[113,223,69,-1.2594695575535297],[113,223,70,-1.258813331834972],[113,223,71,-1.2579282047227025],[113,223,72,-1.2564392378553748],[113,223,73,-1.2544363643974066],[113,223,74,-1.2526891264133155],[113,223,75,-1.2514789546839893],[113,223,76,-1.2505362671799958],[113,223,77,-1.2496404582634568],[113,223,78,-1.248657557880506],[113,223,79,-1.2474965718574822],[113,224,64,-1.2727295868098736],[113,224,65,-1.270820114761591],[113,224,66,-1.2693138187751174],[113,224,67,-1.2683762442320585],[113,224,68,-1.2678399458527565],[113,224,69,-1.2672820575535297],[113,224,70,-1.266625831834972],[113,224,71,-1.2657407047227025],[113,224,72,-1.2642517378553748],[113,224,73,-1.2622488643974066],[113,224,74,-1.2605016264133155],[113,224,75,-1.2592914546839893],[113,224,76,-1.2583487671799958],[113,224,77,-1.2574529582634568],[113,224,78,-1.256470057880506],[113,224,79,-1.2553090718574822],[113,225,64,-1.2805420868098736],[113,225,65,-1.278632614761591],[113,225,66,-1.2771263187751174],[113,225,67,-1.2761887442320585],[113,225,68,-1.2756524458527565],[113,225,69,-1.2750945575535297],[113,225,70,-1.274438331834972],[113,225,71,-1.2735532047227025],[113,225,72,-1.2720642378553748],[113,225,73,-1.2700613643974066],[113,225,74,-1.2683141264133155],[113,225,75,-1.2671039546839893],[113,225,76,-1.2661612671799958],[113,225,77,-1.2652654582634568],[113,225,78,-1.264282557880506],[113,225,79,-1.2631215718574822],[113,226,64,-1.2883545868098736],[113,226,65,-1.286445114761591],[113,226,66,-1.2849388187751174],[113,226,67,-1.2840012442320585],[113,226,68,-1.2834649458527565],[113,226,69,-1.2829070575535297],[113,226,70,-1.282250831834972],[113,226,71,-1.2813657047227025],[113,226,72,-1.2798767378553748],[113,226,73,-1.2778738643974066],[113,226,74,-1.2761266264133155],[113,226,75,-1.2749164546839893],[113,226,76,-1.2739737671799958],[113,226,77,-1.2730779582634568],[113,226,78,-1.272095057880506],[113,226,79,-1.2709340718574822],[113,227,64,-1.2961670868098736],[113,227,65,-1.294257614761591],[113,227,66,-1.2927513187751174],[113,227,67,-1.2918137442320585],[113,227,68,-1.2912774458527565],[113,227,69,-1.2907195575535297],[113,227,70,-1.290063331834972],[113,227,71,-1.2891782047227025],[113,227,72,-1.2876892378553748],[113,227,73,-1.2856863643974066],[113,227,74,-1.2839391264133155],[113,227,75,-1.2827289546839893],[113,227,76,-1.2817862671799958],[113,227,77,-1.2808904582634568],[113,227,78,-1.279907557880506],[113,227,79,-1.2787465718574822],[113,228,64,-1.3039795868098736],[113,228,65,-1.302070114761591],[113,228,66,-1.3005638187751174],[113,228,67,-1.2996262442320585],[113,228,68,-1.2990899458527565],[113,228,69,-1.2985320575535297],[113,228,70,-1.297875831834972],[113,228,71,-1.2969907047227025],[113,228,72,-1.2955017378553748],[113,228,73,-1.2934988643974066],[113,228,74,-1.2917516264133155],[113,228,75,-1.2905414546839893],[113,228,76,-1.2895987671799958],[113,228,77,-1.2887029582634568],[113,228,78,-1.287720057880506],[113,228,79,-1.2865590718574822],[113,229,64,-1.3117920868098736],[113,229,65,-1.309882614761591],[113,229,66,-1.3083763187751174],[113,229,67,-1.3074387442320585],[113,229,68,-1.3069024458527565],[113,229,69,-1.3063445575535297],[113,229,70,-1.305688331834972],[113,229,71,-1.3048032047227025],[113,229,72,-1.3033142378553748],[113,229,73,-1.3013113643974066],[113,229,74,-1.2995641264133155],[113,229,75,-1.2983539546839893],[113,229,76,-1.2974112671799958],[113,229,77,-1.2965154582634568],[113,229,78,-1.295532557880506],[113,229,79,-1.2943715718574822],[113,230,64,-1.3196045868098736],[113,230,65,-1.317695114761591],[113,230,66,-1.3161888187751174],[113,230,67,-1.3152512442320585],[113,230,68,-1.3147149458527565],[113,230,69,-1.3141570575535297],[113,230,70,-1.313500831834972],[113,230,71,-1.3126157047227025],[113,230,72,-1.3111267378553748],[113,230,73,-1.3091238643974066],[113,230,74,-1.3073766264133155],[113,230,75,-1.3061664546839893],[113,230,76,-1.3052237671799958],[113,230,77,-1.3043279582634568],[113,230,78,-1.303345057880506],[113,230,79,-1.3021840718574822],[113,231,64,-1.3274170868098736],[113,231,65,-1.325507614761591],[113,231,66,-1.3240013187751174],[113,231,67,-1.3230637442320585],[113,231,68,-1.3225274458527565],[113,231,69,-1.3219695575535297],[113,231,70,-1.321313331834972],[113,231,71,-1.3204282047227025],[113,231,72,-1.3189392378553748],[113,231,73,-1.3169363643974066],[113,231,74,-1.3151891264133155],[113,231,75,-1.3139789546839893],[113,231,76,-1.3130362671799958],[113,231,77,-1.3121404582634568],[113,231,78,-1.311157557880506],[113,231,79,-1.3099965718574822],[113,232,64,-1.3352295868098736],[113,232,65,-1.333320114761591],[113,232,66,-1.3318138187751174],[113,232,67,-1.3308762442320585],[113,232,68,-1.3303399458527565],[113,232,69,-1.3297820575535297],[113,232,70,-1.329125831834972],[113,232,71,-1.3282407047227025],[113,232,72,-1.3267517378553748],[113,232,73,-1.3247488643974066],[113,232,74,-1.3230016264133155],[113,232,75,-1.3217914546839893],[113,232,76,-1.3208487671799958],[113,232,77,-1.3199529582634568],[113,232,78,-1.318970057880506],[113,232,79,-1.3178090718574822],[113,233,64,-1.3430420868098736],[113,233,65,-1.341132614761591],[113,233,66,-1.3396263187751174],[113,233,67,-1.3386887442320585],[113,233,68,-1.3381524458527565],[113,233,69,-1.3375945575535297],[113,233,70,-1.336938331834972],[113,233,71,-1.3360532047227025],[113,233,72,-1.3345642378553748],[113,233,73,-1.3325613643974066],[113,233,74,-1.3308141264133155],[113,233,75,-1.3296039546839893],[113,233,76,-1.3286612671799958],[113,233,77,-1.3277654582634568],[113,233,78,-1.326782557880506],[113,233,79,-1.3256215718574822],[113,234,64,-1.3508545868098736],[113,234,65,-1.348945114761591],[113,234,66,-1.3474388187751174],[113,234,67,-1.3465012442320585],[113,234,68,-1.3459649458527565],[113,234,69,-1.3454070575535297],[113,234,70,-1.344750831834972],[113,234,71,-1.3438657047227025],[113,234,72,-1.3423767378553748],[113,234,73,-1.3403738643974066],[113,234,74,-1.3386266264133155],[113,234,75,-1.3374164546839893],[113,234,76,-1.3364737671799958],[113,234,77,-1.3355779582634568],[113,234,78,-1.334595057880506],[113,234,79,-1.3334340718574822],[113,235,64,-1.3586670868098736],[113,235,65,-1.356757614761591],[113,235,66,-1.3552513187751174],[113,235,67,-1.3543137442320585],[113,235,68,-1.3537774458527565],[113,235,69,-1.3532195575535297],[113,235,70,-1.352563331834972],[113,235,71,-1.3516782047227025],[113,235,72,-1.3501892378553748],[113,235,73,-1.3481863643974066],[113,235,74,-1.3464391264133155],[113,235,75,-1.3452289546839893],[113,235,76,-1.3442862671799958],[113,235,77,-1.3433904582634568],[113,235,78,-1.342407557880506],[113,235,79,-1.3412465718574822],[113,236,64,-1.3664795868098736],[113,236,65,-1.364570114761591],[113,236,66,-1.3630638187751174],[113,236,67,-1.3621262442320585],[113,236,68,-1.3615899458527565],[113,236,69,-1.3610320575535297],[113,236,70,-1.360375831834972],[113,236,71,-1.3594907047227025],[113,236,72,-1.3580017378553748],[113,236,73,-1.3559988643974066],[113,236,74,-1.3542516264133155],[113,236,75,-1.3530414546839893],[113,236,76,-1.3520987671799958],[113,236,77,-1.3512029582634568],[113,236,78,-1.350220057880506],[113,236,79,-1.3490590718574822],[113,237,64,-1.3742920868098736],[113,237,65,-1.372382614761591],[113,237,66,-1.3708763187751174],[113,237,67,-1.3699387442320585],[113,237,68,-1.3694024458527565],[113,237,69,-1.3688445575535297],[113,237,70,-1.368188331834972],[113,237,71,-1.3673032047227025],[113,237,72,-1.3658142378553748],[113,237,73,-1.3638113643974066],[113,237,74,-1.3620641264133155],[113,237,75,-1.3608539546839893],[113,237,76,-1.3599112671799958],[113,237,77,-1.3590154582634568],[113,237,78,-1.358032557880506],[113,237,79,-1.3568715718574822],[113,238,64,-1.3821045868098736],[113,238,65,-1.380195114761591],[113,238,66,-1.3786888187751174],[113,238,67,-1.3777512442320585],[113,238,68,-1.3772149458527565],[113,238,69,-1.3766570575535297],[113,238,70,-1.376000831834972],[113,238,71,-1.3751157047227025],[113,238,72,-1.3736267378553748],[113,238,73,-1.3716238643974066],[113,238,74,-1.3698766264133155],[113,238,75,-1.3686664546839893],[113,238,76,-1.3677237671799958],[113,238,77,-1.3668279582634568],[113,238,78,-1.365845057880506],[113,238,79,-1.3646840718574822],[113,239,64,-1.3899170868098736],[113,239,65,-1.388007614761591],[113,239,66,-1.3865013187751174],[113,239,67,-1.3855637442320585],[113,239,68,-1.3850274458527565],[113,239,69,-1.3844695575535297],[113,239,70,-1.383813331834972],[113,239,71,-1.3829282047227025],[113,239,72,-1.3814392378553748],[113,239,73,-1.3794363643974066],[113,239,74,-1.3776891264133155],[113,239,75,-1.3764789546839893],[113,239,76,-1.3755362671799958],[113,239,77,-1.3746404582634568],[113,239,78,-1.373657557880506],[113,239,79,-1.3724965718574822],[113,240,64,-1.3977295868098736],[113,240,65,-1.395820114761591],[113,240,66,-1.3943138187751174],[113,240,67,-1.3933762442320585],[113,240,68,-1.3928399458527565],[113,240,69,-1.3922820575535297],[113,240,70,-1.391625831834972],[113,240,71,-1.3907407047227025],[113,240,72,-1.3892517378553748],[113,240,73,-1.3872488643974066],[113,240,74,-1.3855016264133155],[113,240,75,-1.3842914546839893],[113,240,76,-1.3833487671799958],[113,240,77,-1.3824529582634568],[113,240,78,-1.381470057880506],[113,240,79,-1.3803090718574822],[113,241,64,-1.4055420868098736],[113,241,65,-1.403632614761591],[113,241,66,-1.4021263187751174],[113,241,67,-1.4011887442320585],[113,241,68,-1.4006524458527565],[113,241,69,-1.4000945575535297],[113,241,70,-1.399438331834972],[113,241,71,-1.3985532047227025],[113,241,72,-1.3970642378553748],[113,241,73,-1.3950613643974066],[113,241,74,-1.3933141264133155],[113,241,75,-1.3921039546839893],[113,241,76,-1.3911612671799958],[113,241,77,-1.3902654582634568],[113,241,78,-1.389282557880506],[113,241,79,-1.3881215718574822],[113,242,64,-1.4133545868098736],[113,242,65,-1.411445114761591],[113,242,66,-1.4099388187751174],[113,242,67,-1.4090012442320585],[113,242,68,-1.4084649458527565],[113,242,69,-1.4079070575535297],[113,242,70,-1.407250831834972],[113,242,71,-1.4063657047227025],[113,242,72,-1.4048767378553748],[113,242,73,-1.4028738643974066],[113,242,74,-1.4011266264133155],[113,242,75,-1.3999164546839893],[113,242,76,-1.3989737671799958],[113,242,77,-1.3980779582634568],[113,242,78,-1.397095057880506],[113,242,79,-1.3959340718574822],[113,243,64,-1.4211670868098736],[113,243,65,-1.419257614761591],[113,243,66,-1.4177513187751174],[113,243,67,-1.4168137442320585],[113,243,68,-1.4162774458527565],[113,243,69,-1.4157195575535297],[113,243,70,-1.415063331834972],[113,243,71,-1.4141782047227025],[113,243,72,-1.4126892378553748],[113,243,73,-1.4106863643974066],[113,243,74,-1.4089391264133155],[113,243,75,-1.4077289546839893],[113,243,76,-1.4067862671799958],[113,243,77,-1.4058904582634568],[113,243,78,-1.404907557880506],[113,243,79,-1.4037465718574822],[113,244,64,-1.4289795868098736],[113,244,65,-1.427070114761591],[113,244,66,-1.4255638187751174],[113,244,67,-1.4246262442320585],[113,244,68,-1.4240899458527565],[113,244,69,-1.4235320575535297],[113,244,70,-1.422875831834972],[113,244,71,-1.4219907047227025],[113,244,72,-1.4205017378553748],[113,244,73,-1.4184988643974066],[113,244,74,-1.4167516264133155],[113,244,75,-1.4155414546839893],[113,244,76,-1.4145987671799958],[113,244,77,-1.4137029582634568],[113,244,78,-1.412720057880506],[113,244,79,-1.4115590718574822],[113,245,64,-1.4367920868098736],[113,245,65,-1.434882614761591],[113,245,66,-1.4333763187751174],[113,245,67,-1.4324387442320585],[113,245,68,-1.4319024458527565],[113,245,69,-1.4313445575535297],[113,245,70,-1.430688331834972],[113,245,71,-1.4298032047227025],[113,245,72,-1.4283142378553748],[113,245,73,-1.4263113643974066],[113,245,74,-1.4245641264133155],[113,245,75,-1.4233539546839893],[113,245,76,-1.4224112671799958],[113,245,77,-1.4215154582634568],[113,245,78,-1.420532557880506],[113,245,79,-1.4193715718574822],[113,246,64,-1.4446045868098736],[113,246,65,-1.442695114761591],[113,246,66,-1.4411888187751174],[113,246,67,-1.4402512442320585],[113,246,68,-1.4397149458527565],[113,246,69,-1.4391570575535297],[113,246,70,-1.438500831834972],[113,246,71,-1.4376157047227025],[113,246,72,-1.4361267378553748],[113,246,73,-1.4341238643974066],[113,246,74,-1.4323766264133155],[113,246,75,-1.4311664546839893],[113,246,76,-1.4302237671799958],[113,246,77,-1.4293279582634568],[113,246,78,-1.428345057880506],[113,246,79,-1.4271840718574822],[113,247,64,-1.4524170868098736],[113,247,65,-1.450507614761591],[113,247,66,-1.4490013187751174],[113,247,67,-1.4480637442320585],[113,247,68,-1.4475274458527565],[113,247,69,-1.4469695575535297],[113,247,70,-1.446313331834972],[113,247,71,-1.4454282047227025],[113,247,72,-1.4439392378553748],[113,247,73,-1.4419363643974066],[113,247,74,-1.4401891264133155],[113,247,75,-1.4389789546839893],[113,247,76,-1.4380362671799958],[113,247,77,-1.4371404582634568],[113,247,78,-1.436157557880506],[113,247,79,-1.4349965718574822],[113,248,64,-1.4602295868098736],[113,248,65,-1.458320114761591],[113,248,66,-1.4568138187751174],[113,248,67,-1.4558762442320585],[113,248,68,-1.4553399458527565],[113,248,69,-1.4547820575535297],[113,248,70,-1.454125831834972],[113,248,71,-1.4532407047227025],[113,248,72,-1.4517517378553748],[113,248,73,-1.4497488643974066],[113,248,74,-1.4480016264133155],[113,248,75,-1.4467914546839893],[113,248,76,-1.4458487671799958],[113,248,77,-1.4449529582634568],[113,248,78,-1.443970057880506],[113,248,79,-1.4428090718574822],[113,249,64,-1.4680420868098736],[113,249,65,-1.466132614761591],[113,249,66,-1.4646263187751174],[113,249,67,-1.4636887442320585],[113,249,68,-1.4631524458527565],[113,249,69,-1.4625945575535297],[113,249,70,-1.461938331834972],[113,249,71,-1.4610532047227025],[113,249,72,-1.4595642378553748],[113,249,73,-1.4575613643974066],[113,249,74,-1.4558141264133155],[113,249,75,-1.4546039546839893],[113,249,76,-1.4536612671799958],[113,249,77,-1.4527654582634568],[113,249,78,-1.451782557880506],[113,249,79,-1.4506215718574822],[113,250,64,-1.4758545868098736],[113,250,65,-1.473945114761591],[113,250,66,-1.4724388187751174],[113,250,67,-1.4715012442320585],[113,250,68,-1.4709649458527565],[113,250,69,-1.4704070575535297],[113,250,70,-1.469750831834972],[113,250,71,-1.4688657047227025],[113,250,72,-1.4673767378553748],[113,250,73,-1.4653738643974066],[113,250,74,-1.4636266264133155],[113,250,75,-1.4624164546839893],[113,250,76,-1.4614737671799958],[113,250,77,-1.4605779582634568],[113,250,78,-1.459595057880506],[113,250,79,-1.4584340718574822],[113,251,64,-1.4836670868098736],[113,251,65,-1.481757614761591],[113,251,66,-1.4802513187751174],[113,251,67,-1.4793137442320585],[113,251,68,-1.4787774458527565],[113,251,69,-1.4782195575535297],[113,251,70,-1.477563331834972],[113,251,71,-1.4766782047227025],[113,251,72,-1.4751892378553748],[113,251,73,-1.4731863643974066],[113,251,74,-1.4714391264133155],[113,251,75,-1.4702289546839893],[113,251,76,-1.4692862671799958],[113,251,77,-1.4683904582634568],[113,251,78,-1.467407557880506],[113,251,79,-1.4662465718574822],[113,252,64,-1.4914795868098736],[113,252,65,-1.489570114761591],[113,252,66,-1.4880638187751174],[113,252,67,-1.4871262442320585],[113,252,68,-1.4865899458527565],[113,252,69,-1.4860320575535297],[113,252,70,-1.485375831834972],[113,252,71,-1.4844907047227025],[113,252,72,-1.4830017378553748],[113,252,73,-1.4809988643974066],[113,252,74,-1.4792516264133155],[113,252,75,-1.4780414546839893],[113,252,76,-1.4770987671799958],[113,252,77,-1.4762029582634568],[113,252,78,-1.475220057880506],[113,252,79,-1.4740590718574822],[113,253,64,-1.4992920868098736],[113,253,65,-1.497382614761591],[113,253,66,-1.4958763187751174],[113,253,67,-1.4949387442320585],[113,253,68,-1.4944024458527565],[113,253,69,-1.4938445575535297],[113,253,70,-1.493188331834972],[113,253,71,-1.4923032047227025],[113,253,72,-1.4908142378553748],[113,253,73,-1.4888113643974066],[113,253,74,-1.4870641264133155],[113,253,75,-1.4858539546839893],[113,253,76,-1.4849112671799958],[113,253,77,-1.4840154582634568],[113,253,78,-1.483032557880506],[113,253,79,-1.4818715718574822],[113,254,64,-1.5071045868098736],[113,254,65,-1.505195114761591],[113,254,66,-1.5036888187751174],[113,254,67,-1.5027512442320585],[113,254,68,-1.5022149458527565],[113,254,69,-1.5016570575535297],[113,254,70,-1.501000831834972],[113,254,71,-1.5001157047227025],[113,254,72,-1.4986267378553748],[113,254,73,-1.4966238643974066],[113,254,74,-1.4948766264133155],[113,254,75,-1.4936664546839893],[113,254,76,-1.4927237671799958],[113,254,77,-1.4918279582634568],[113,254,78,-1.490845057880506],[113,254,79,-1.4896840718574822],[113,255,64,-1.5149170868098736],[113,255,65,-1.513007614761591],[113,255,66,-1.5115013187751174],[113,255,67,-1.5105637442320585],[113,255,68,-1.5100274458527565],[113,255,69,-1.5094695575535297],[113,255,70,-1.508813331834972],[113,255,71,-1.5079282047227025],[113,255,72,-1.5064392378553748],[113,255,73,-1.5044363643974066],[113,255,74,-1.5026891264133155],[113,255,75,-1.5014789546839893],[113,255,76,-1.5005362671799958],[113,255,77,-1.4996404582634568],[113,255,78,-1.498657557880506],[113,255,79,-1.4974965718574822],[113,256,64,-1.5227295868098736],[113,256,65,-1.520820114761591],[113,256,66,-1.5193138187751174],[113,256,67,-1.5183762442320585],[113,256,68,-1.5178399458527565],[113,256,69,-1.5172820575535297],[113,256,70,-1.516625831834972],[113,256,71,-1.5157407047227025],[113,256,72,-1.5142517378553748],[113,256,73,-1.5122488643974066],[113,256,74,-1.5105016264133155],[113,256,75,-1.5092914546839893],[113,256,76,-1.5083487671799958],[113,256,77,-1.5074529582634568],[113,256,78,-1.506470057880506],[113,256,79,-1.5053090718574822],[113,257,64,-1.5305420868098736],[113,257,65,-1.528632614761591],[113,257,66,-1.5271263187751174],[113,257,67,-1.5261887442320585],[113,257,68,-1.5256524458527565],[113,257,69,-1.5250945575535297],[113,257,70,-1.524438331834972],[113,257,71,-1.5235532047227025],[113,257,72,-1.5220642378553748],[113,257,73,-1.5200613643974066],[113,257,74,-1.5183141264133155],[113,257,75,-1.5171039546839893],[113,257,76,-1.5161612671799958],[113,257,77,-1.5152654582634568],[113,257,78,-1.514282557880506],[113,257,79,-1.5131215718574822],[113,258,64,-1.5383545868098736],[113,258,65,-1.536445114761591],[113,258,66,-1.5349388187751174],[113,258,67,-1.5340012442320585],[113,258,68,-1.5334649458527565],[113,258,69,-1.5329070575535297],[113,258,70,-1.532250831834972],[113,258,71,-1.5313657047227025],[113,258,72,-1.5298767378553748],[113,258,73,-1.5278738643974066],[113,258,74,-1.5261266264133155],[113,258,75,-1.5249164546839893],[113,258,76,-1.5239737671799958],[113,258,77,-1.5230779582634568],[113,258,78,-1.522095057880506],[113,258,79,-1.5209340718574822],[113,259,64,-1.5461670868098736],[113,259,65,-1.544257614761591],[113,259,66,-1.5427513187751174],[113,259,67,-1.5418137442320585],[113,259,68,-1.5412774458527565],[113,259,69,-1.5407195575535297],[113,259,70,-1.540063331834972],[113,259,71,-1.5391782047227025],[113,259,72,-1.5376892378553748],[113,259,73,-1.5356863643974066],[113,259,74,-1.5339391264133155],[113,259,75,-1.5327289546839893],[113,259,76,-1.5317862671799958],[113,259,77,-1.5308904582634568],[113,259,78,-1.529907557880506],[113,259,79,-1.5287465718574822],[113,260,64,-1.5539795868098736],[113,260,65,-1.552070114761591],[113,260,66,-1.5505638187751174],[113,260,67,-1.5496262442320585],[113,260,68,-1.5490899458527565],[113,260,69,-1.5485320575535297],[113,260,70,-1.547875831834972],[113,260,71,-1.5469907047227025],[113,260,72,-1.5455017378553748],[113,260,73,-1.5434988643974066],[113,260,74,-1.5417516264133155],[113,260,75,-1.5405414546839893],[113,260,76,-1.5395987671799958],[113,260,77,-1.5387029582634568],[113,260,78,-1.537720057880506],[113,260,79,-1.5365590718574822],[113,261,64,-1.5617920868098736],[113,261,65,-1.559882614761591],[113,261,66,-1.5583763187751174],[113,261,67,-1.5574387442320585],[113,261,68,-1.5569024458527565],[113,261,69,-1.5563445575535297],[113,261,70,-1.555688331834972],[113,261,71,-1.5548032047227025],[113,261,72,-1.5533142378553748],[113,261,73,-1.5513113643974066],[113,261,74,-1.5495641264133155],[113,261,75,-1.5483539546839893],[113,261,76,-1.5474112671799958],[113,261,77,-1.5465154582634568],[113,261,78,-1.545532557880506],[113,261,79,-1.5443715718574822],[113,262,64,-1.5696045868098736],[113,262,65,-1.567695114761591],[113,262,66,-1.5661888187751174],[113,262,67,-1.5652512442320585],[113,262,68,-1.5647149458527565],[113,262,69,-1.5641570575535297],[113,262,70,-1.563500831834972],[113,262,71,-1.5626157047227025],[113,262,72,-1.5611267378553748],[113,262,73,-1.5591238643974066],[113,262,74,-1.5573766264133155],[113,262,75,-1.5561664546839893],[113,262,76,-1.5552237671799958],[113,262,77,-1.5543279582634568],[113,262,78,-1.553345057880506],[113,262,79,-1.5521840718574822],[113,263,64,-1.5774170868098736],[113,263,65,-1.575507614761591],[113,263,66,-1.5740013187751174],[113,263,67,-1.5730637442320585],[113,263,68,-1.5725274458527565],[113,263,69,-1.5719695575535297],[113,263,70,-1.571313331834972],[113,263,71,-1.5704282047227025],[113,263,72,-1.5689392378553748],[113,263,73,-1.5669363643974066],[113,263,74,-1.5651891264133155],[113,263,75,-1.5639789546839893],[113,263,76,-1.5630362671799958],[113,263,77,-1.5621404582634568],[113,263,78,-1.561157557880506],[113,263,79,-1.5599965718574822],[113,264,64,-1.5852295868098736],[113,264,65,-1.583320114761591],[113,264,66,-1.5818138187751174],[113,264,67,-1.5808762442320585],[113,264,68,-1.5803399458527565],[113,264,69,-1.5797820575535297],[113,264,70,-1.579125831834972],[113,264,71,-1.5782407047227025],[113,264,72,-1.5767517378553748],[113,264,73,-1.5747488643974066],[113,264,74,-1.5730016264133155],[113,264,75,-1.5717914546839893],[113,264,76,-1.5708487671799958],[113,264,77,-1.5699529582634568],[113,264,78,-1.568970057880506],[113,264,79,-1.5678090718574822],[113,265,64,-1.5930420868098736],[113,265,65,-1.591132614761591],[113,265,66,-1.5896263187751174],[113,265,67,-1.5886887442320585],[113,265,68,-1.5881524458527565],[113,265,69,-1.5875945575535297],[113,265,70,-1.586938331834972],[113,265,71,-1.5860532047227025],[113,265,72,-1.5845642378553748],[113,265,73,-1.5825613643974066],[113,265,74,-1.5808141264133155],[113,265,75,-1.5796039546839893],[113,265,76,-1.5786612671799958],[113,265,77,-1.5777654582634568],[113,265,78,-1.576782557880506],[113,265,79,-1.5756215718574822],[113,266,64,-1.6008545868098736],[113,266,65,-1.598945114761591],[113,266,66,-1.5974388187751174],[113,266,67,-1.5965012442320585],[113,266,68,-1.5959649458527565],[113,266,69,-1.5954070575535297],[113,266,70,-1.594750831834972],[113,266,71,-1.5938657047227025],[113,266,72,-1.5923767378553748],[113,266,73,-1.5903738643974066],[113,266,74,-1.5886266264133155],[113,266,75,-1.5874164546839893],[113,266,76,-1.5864737671799958],[113,266,77,-1.5855779582634568],[113,266,78,-1.584595057880506],[113,266,79,-1.5834340718574822],[113,267,64,-1.6086670868098736],[113,267,65,-1.606757614761591],[113,267,66,-1.6052513187751174],[113,267,67,-1.6043137442320585],[113,267,68,-1.6037774458527565],[113,267,69,-1.6032195575535297],[113,267,70,-1.602563331834972],[113,267,71,-1.6016782047227025],[113,267,72,-1.6001892378553748],[113,267,73,-1.5981863643974066],[113,267,74,-1.5964391264133155],[113,267,75,-1.5952289546839893],[113,267,76,-1.5942862671799958],[113,267,77,-1.5933904582634568],[113,267,78,-1.592407557880506],[113,267,79,-1.5912465718574822],[113,268,64,-1.6164795868098736],[113,268,65,-1.614570114761591],[113,268,66,-1.6130638187751174],[113,268,67,-1.6121262442320585],[113,268,68,-1.6115899458527565],[113,268,69,-1.6110320575535297],[113,268,70,-1.610375831834972],[113,268,71,-1.6094907047227025],[113,268,72,-1.6080017378553748],[113,268,73,-1.6059988643974066],[113,268,74,-1.6042516264133155],[113,268,75,-1.6030414546839893],[113,268,76,-1.6020987671799958],[113,268,77,-1.6012029582634568],[113,268,78,-1.600220057880506],[113,268,79,-1.5990590718574822],[113,269,64,-1.6242920868098736],[113,269,65,-1.622382614761591],[113,269,66,-1.6208763187751174],[113,269,67,-1.6199387442320585],[113,269,68,-1.6194024458527565],[113,269,69,-1.6188445575535297],[113,269,70,-1.618188331834972],[113,269,71,-1.6173032047227025],[113,269,72,-1.6158142378553748],[113,269,73,-1.6138113643974066],[113,269,74,-1.6120641264133155],[113,269,75,-1.6108539546839893],[113,269,76,-1.6099112671799958],[113,269,77,-1.6090154582634568],[113,269,78,-1.608032557880506],[113,269,79,-1.6068715718574822],[113,270,64,-1.6321045868098736],[113,270,65,-1.630195114761591],[113,270,66,-1.6286888187751174],[113,270,67,-1.6277512442320585],[113,270,68,-1.6272149458527565],[113,270,69,-1.6266570575535297],[113,270,70,-1.626000831834972],[113,270,71,-1.6251157047227025],[113,270,72,-1.6236267378553748],[113,270,73,-1.6216238643974066],[113,270,74,-1.6198766264133155],[113,270,75,-1.6186664546839893],[113,270,76,-1.6177237671799958],[113,270,77,-1.6168279582634568],[113,270,78,-1.615845057880506],[113,270,79,-1.6146840718574822],[113,271,64,-1.6399170868098736],[113,271,65,-1.638007614761591],[113,271,66,-1.6365013187751174],[113,271,67,-1.6355637442320585],[113,271,68,-1.6350274458527565],[113,271,69,-1.6344695575535297],[113,271,70,-1.633813331834972],[113,271,71,-1.6329282047227025],[113,271,72,-1.6314392378553748],[113,271,73,-1.6294363643974066],[113,271,74,-1.6276891264133155],[113,271,75,-1.6264789546839893],[113,271,76,-1.6255362671799958],[113,271,77,-1.6246404582634568],[113,271,78,-1.623657557880506],[113,271,79,-1.6224965718574822],[113,272,64,-1.6477295868098736],[113,272,65,-1.645820114761591],[113,272,66,-1.6443138187751174],[113,272,67,-1.6433762442320585],[113,272,68,-1.6428399458527565],[113,272,69,-1.6422820575535297],[113,272,70,-1.641625831834972],[113,272,71,-1.6407407047227025],[113,272,72,-1.6392517378553748],[113,272,73,-1.6372488643974066],[113,272,74,-1.6355016264133155],[113,272,75,-1.6342914546839893],[113,272,76,-1.6333487671799958],[113,272,77,-1.6324529582634568],[113,272,78,-1.631470057880506],[113,272,79,-1.6303090718574822],[113,273,64,-1.6555420868098736],[113,273,65,-1.653632614761591],[113,273,66,-1.6521263187751174],[113,273,67,-1.6511887442320585],[113,273,68,-1.6506524458527565],[113,273,69,-1.6500945575535297],[113,273,70,-1.649438331834972],[113,273,71,-1.6485532047227025],[113,273,72,-1.6470642378553748],[113,273,73,-1.6450613643974066],[113,273,74,-1.6433141264133155],[113,273,75,-1.6421039546839893],[113,273,76,-1.6411612671799958],[113,273,77,-1.6402654582634568],[113,273,78,-1.639282557880506],[113,273,79,-1.6381215718574822],[113,274,64,-1.6633545868098736],[113,274,65,-1.661445114761591],[113,274,66,-1.6599388187751174],[113,274,67,-1.6590012442320585],[113,274,68,-1.6584649458527565],[113,274,69,-1.6579070575535297],[113,274,70,-1.657250831834972],[113,274,71,-1.6563657047227025],[113,274,72,-1.6548767378553748],[113,274,73,-1.6528738643974066],[113,274,74,-1.6511266264133155],[113,274,75,-1.6499164546839893],[113,274,76,-1.6489737671799958],[113,274,77,-1.6480779582634568],[113,274,78,-1.647095057880506],[113,274,79,-1.6459340718574822],[113,275,64,-1.6711670868098736],[113,275,65,-1.669257614761591],[113,275,66,-1.6677513187751174],[113,275,67,-1.6668137442320585],[113,275,68,-1.6662774458527565],[113,275,69,-1.6657195575535297],[113,275,70,-1.665063331834972],[113,275,71,-1.6641782047227025],[113,275,72,-1.6626892378553748],[113,275,73,-1.6606863643974066],[113,275,74,-1.6589391264133155],[113,275,75,-1.6577289546839893],[113,275,76,-1.6567862671799958],[113,275,77,-1.6558904582634568],[113,275,78,-1.654907557880506],[113,275,79,-1.6537465718574822],[113,276,64,-1.6789795868098736],[113,276,65,-1.677070114761591],[113,276,66,-1.6755638187751174],[113,276,67,-1.6746262442320585],[113,276,68,-1.6740899458527565],[113,276,69,-1.6735320575535297],[113,276,70,-1.672875831834972],[113,276,71,-1.6719907047227025],[113,276,72,-1.6705017378553748],[113,276,73,-1.6684988643974066],[113,276,74,-1.6667516264133155],[113,276,75,-1.6655414546839893],[113,276,76,-1.6645987671799958],[113,276,77,-1.6637029582634568],[113,276,78,-1.662720057880506],[113,276,79,-1.6615590718574822],[113,277,64,-1.6867920868098736],[113,277,65,-1.684882614761591],[113,277,66,-1.6833763187751174],[113,277,67,-1.6824387442320585],[113,277,68,-1.6819024458527565],[113,277,69,-1.6813445575535297],[113,277,70,-1.680688331834972],[113,277,71,-1.6798032047227025],[113,277,72,-1.6783142378553748],[113,277,73,-1.6763113643974066],[113,277,74,-1.6745641264133155],[113,277,75,-1.6733539546839893],[113,277,76,-1.6724112671799958],[113,277,77,-1.6715154582634568],[113,277,78,-1.670532557880506],[113,277,79,-1.6693715718574822],[113,278,64,-1.6946045868098736],[113,278,65,-1.692695114761591],[113,278,66,-1.6911888187751174],[113,278,67,-1.6902512442320585],[113,278,68,-1.6897149458527565],[113,278,69,-1.6891570575535297],[113,278,70,-1.688500831834972],[113,278,71,-1.6876157047227025],[113,278,72,-1.6861267378553748],[113,278,73,-1.6841238643974066],[113,278,74,-1.6823766264133155],[113,278,75,-1.6811664546839893],[113,278,76,-1.6802237671799958],[113,278,77,-1.6793279582634568],[113,278,78,-1.678345057880506],[113,278,79,-1.6771840718574822],[113,279,64,-1.7024170868098736],[113,279,65,-1.700507614761591],[113,279,66,-1.6990013187751174],[113,279,67,-1.6980637442320585],[113,279,68,-1.6975274458527565],[113,279,69,-1.6969695575535297],[113,279,70,-1.696313331834972],[113,279,71,-1.6954282047227025],[113,279,72,-1.6939392378553748],[113,279,73,-1.6919363643974066],[113,279,74,-1.6901891264133155],[113,279,75,-1.6889789546839893],[113,279,76,-1.6880362671799958],[113,279,77,-1.6871404582634568],[113,279,78,-1.686157557880506],[113,279,79,-1.6849965718574822],[113,280,64,-1.7102295868098736],[113,280,65,-1.708320114761591],[113,280,66,-1.7068138187751174],[113,280,67,-1.7058762442320585],[113,280,68,-1.7053399458527565],[113,280,69,-1.7047820575535297],[113,280,70,-1.704125831834972],[113,280,71,-1.7032407047227025],[113,280,72,-1.7017517378553748],[113,280,73,-1.6997488643974066],[113,280,74,-1.6980016264133155],[113,280,75,-1.6967914546839893],[113,280,76,-1.6958487671799958],[113,280,77,-1.6949529582634568],[113,280,78,-1.693970057880506],[113,280,79,-1.6928090718574822],[113,281,64,-1.7180420868098736],[113,281,65,-1.716132614761591],[113,281,66,-1.7146263187751174],[113,281,67,-1.7136887442320585],[113,281,68,-1.7131524458527565],[113,281,69,-1.7125945575535297],[113,281,70,-1.711938331834972],[113,281,71,-1.7110532047227025],[113,281,72,-1.7095642378553748],[113,281,73,-1.7075613643974066],[113,281,74,-1.7058141264133155],[113,281,75,-1.7046039546839893],[113,281,76,-1.7036612671799958],[113,281,77,-1.7027654582634568],[113,281,78,-1.701782557880506],[113,281,79,-1.7006215718574822],[113,282,64,-1.7258545868098736],[113,282,65,-1.723945114761591],[113,282,66,-1.7224388187751174],[113,282,67,-1.7215012442320585],[113,282,68,-1.7209649458527565],[113,282,69,-1.7204070575535297],[113,282,70,-1.719750831834972],[113,282,71,-1.7188657047227025],[113,282,72,-1.7173767378553748],[113,282,73,-1.7153738643974066],[113,282,74,-1.7136266264133155],[113,282,75,-1.7124164546839893],[113,282,76,-1.7114737671799958],[113,282,77,-1.7105779582634568],[113,282,78,-1.709595057880506],[113,282,79,-1.7084340718574822],[113,283,64,-1.7336670868098736],[113,283,65,-1.731757614761591],[113,283,66,-1.7302513187751174],[113,283,67,-1.7293137442320585],[113,283,68,-1.7287774458527565],[113,283,69,-1.7282195575535297],[113,283,70,-1.727563331834972],[113,283,71,-1.7266782047227025],[113,283,72,-1.7251892378553748],[113,283,73,-1.7231863643974066],[113,283,74,-1.7214391264133155],[113,283,75,-1.7202289546839893],[113,283,76,-1.7192862671799958],[113,283,77,-1.7183904582634568],[113,283,78,-1.717407557880506],[113,283,79,-1.7162465718574822],[113,284,64,-1.7414795868098736],[113,284,65,-1.739570114761591],[113,284,66,-1.7380638187751174],[113,284,67,-1.7371262442320585],[113,284,68,-1.7365899458527565],[113,284,69,-1.7360320575535297],[113,284,70,-1.735375831834972],[113,284,71,-1.7344907047227025],[113,284,72,-1.7330017378553748],[113,284,73,-1.7309988643974066],[113,284,74,-1.7292516264133155],[113,284,75,-1.7280414546839893],[113,284,76,-1.7270987671799958],[113,284,77,-1.7262029582634568],[113,284,78,-1.725220057880506],[113,284,79,-1.7240590718574822],[113,285,64,-1.7492920868098736],[113,285,65,-1.747382614761591],[113,285,66,-1.7458763187751174],[113,285,67,-1.7449387442320585],[113,285,68,-1.7444024458527565],[113,285,69,-1.7438445575535297],[113,285,70,-1.743188331834972],[113,285,71,-1.7423032047227025],[113,285,72,-1.7408142378553748],[113,285,73,-1.7388113643974066],[113,285,74,-1.7370641264133155],[113,285,75,-1.7358539546839893],[113,285,76,-1.7349112671799958],[113,285,77,-1.7340154582634568],[113,285,78,-1.733032557880506],[113,285,79,-1.7318715718574822],[113,286,64,-1.7571045868098736],[113,286,65,-1.755195114761591],[113,286,66,-1.7536888187751174],[113,286,67,-1.7527512442320585],[113,286,68,-1.7522149458527565],[113,286,69,-1.7516570575535297],[113,286,70,-1.751000831834972],[113,286,71,-1.7501157047227025],[113,286,72,-1.7486267378553748],[113,286,73,-1.7466238643974066],[113,286,74,-1.7448766264133155],[113,286,75,-1.7436664546839893],[113,286,76,-1.7427237671799958],[113,286,77,-1.7418279582634568],[113,286,78,-1.740845057880506],[113,286,79,-1.7396840718574822],[113,287,64,-1.7649170868098736],[113,287,65,-1.763007614761591],[113,287,66,-1.7615013187751174],[113,287,67,-1.7605637442320585],[113,287,68,-1.7600274458527565],[113,287,69,-1.7594695575535297],[113,287,70,-1.758813331834972],[113,287,71,-1.7579282047227025],[113,287,72,-1.7564392378553748],[113,287,73,-1.7544363643974066],[113,287,74,-1.7526891264133155],[113,287,75,-1.7514789546839893],[113,287,76,-1.7505362671799958],[113,287,77,-1.7496404582634568],[113,287,78,-1.748657557880506],[113,287,79,-1.7474965718574822],[113,288,64,-1.7727295868098736],[113,288,65,-1.770820114761591],[113,288,66,-1.7693138187751174],[113,288,67,-1.7683762442320585],[113,288,68,-1.7678399458527565],[113,288,69,-1.7672820575535297],[113,288,70,-1.766625831834972],[113,288,71,-1.7657407047227025],[113,288,72,-1.7642517378553748],[113,288,73,-1.7622488643974066],[113,288,74,-1.7605016264133155],[113,288,75,-1.7592914546839893],[113,288,76,-1.7583487671799958],[113,288,77,-1.7574529582634568],[113,288,78,-1.756470057880506],[113,288,79,-1.7553090718574822],[113,289,64,-1.7805420868098736],[113,289,65,-1.778632614761591],[113,289,66,-1.7771263187751174],[113,289,67,-1.7761887442320585],[113,289,68,-1.7756524458527565],[113,289,69,-1.7750945575535297],[113,289,70,-1.774438331834972],[113,289,71,-1.7735532047227025],[113,289,72,-1.7720642378553748],[113,289,73,-1.7700613643974066],[113,289,74,-1.7683141264133155],[113,289,75,-1.7671039546839893],[113,289,76,-1.7661612671799958],[113,289,77,-1.7652654582634568],[113,289,78,-1.764282557880506],[113,289,79,-1.7631215718574822],[113,290,64,-1.7883545868098736],[113,290,65,-1.786445114761591],[113,290,66,-1.7849388187751174],[113,290,67,-1.7840012442320585],[113,290,68,-1.7834649458527565],[113,290,69,-1.7829070575535297],[113,290,70,-1.782250831834972],[113,290,71,-1.7813657047227025],[113,290,72,-1.7798767378553748],[113,290,73,-1.7778738643974066],[113,290,74,-1.7761266264133155],[113,290,75,-1.7749164546839893],[113,290,76,-1.7739737671799958],[113,290,77,-1.7730779582634568],[113,290,78,-1.772095057880506],[113,290,79,-1.7709340718574822],[113,291,64,-1.7961670868098736],[113,291,65,-1.794257614761591],[113,291,66,-1.7927513187751174],[113,291,67,-1.7918137442320585],[113,291,68,-1.7912774458527565],[113,291,69,-1.7907195575535297],[113,291,70,-1.790063331834972],[113,291,71,-1.7891782047227025],[113,291,72,-1.7876892378553748],[113,291,73,-1.7856863643974066],[113,291,74,-1.7839391264133155],[113,291,75,-1.7827289546839893],[113,291,76,-1.7817862671799958],[113,291,77,-1.7808904582634568],[113,291,78,-1.779907557880506],[113,291,79,-1.7787465718574822],[113,292,64,-1.8039795868098736],[113,292,65,-1.802070114761591],[113,292,66,-1.8005638187751174],[113,292,67,-1.7996262442320585],[113,292,68,-1.7990899458527565],[113,292,69,-1.7985320575535297],[113,292,70,-1.797875831834972],[113,292,71,-1.7969907047227025],[113,292,72,-1.7955017378553748],[113,292,73,-1.7934988643974066],[113,292,74,-1.7917516264133155],[113,292,75,-1.7905414546839893],[113,292,76,-1.7895987671799958],[113,292,77,-1.7887029582634568],[113,292,78,-1.787720057880506],[113,292,79,-1.7865590718574822],[113,293,64,-1.8117920868098736],[113,293,65,-1.809882614761591],[113,293,66,-1.8083763187751174],[113,293,67,-1.8074387442320585],[113,293,68,-1.8069024458527565],[113,293,69,-1.8063445575535297],[113,293,70,-1.805688331834972],[113,293,71,-1.8048032047227025],[113,293,72,-1.8033142378553748],[113,293,73,-1.8013113643974066],[113,293,74,-1.7995641264133155],[113,293,75,-1.7983539546839893],[113,293,76,-1.7974112671799958],[113,293,77,-1.7965154582634568],[113,293,78,-1.795532557880506],[113,293,79,-1.7943715718574822],[113,294,64,-1.8196045868098736],[113,294,65,-1.817695114761591],[113,294,66,-1.8161888187751174],[113,294,67,-1.8152512442320585],[113,294,68,-1.8147149458527565],[113,294,69,-1.8141570575535297],[113,294,70,-1.813500831834972],[113,294,71,-1.8126157047227025],[113,294,72,-1.8111267378553748],[113,294,73,-1.8091238643974066],[113,294,74,-1.8073766264133155],[113,294,75,-1.8061664546839893],[113,294,76,-1.8052237671799958],[113,294,77,-1.8043279582634568],[113,294,78,-1.803345057880506],[113,294,79,-1.8021840718574822],[113,295,64,-1.8274170868098736],[113,295,65,-1.825507614761591],[113,295,66,-1.8240013187751174],[113,295,67,-1.8230637442320585],[113,295,68,-1.8225274458527565],[113,295,69,-1.8219695575535297],[113,295,70,-1.821313331834972],[113,295,71,-1.8204282047227025],[113,295,72,-1.8189392378553748],[113,295,73,-1.8169363643974066],[113,295,74,-1.8151891264133155],[113,295,75,-1.8139789546839893],[113,295,76,-1.8130362671799958],[113,295,77,-1.8121404582634568],[113,295,78,-1.811157557880506],[113,295,79,-1.8099965718574822],[113,296,64,-1.8352295868098736],[113,296,65,-1.833320114761591],[113,296,66,-1.8318138187751174],[113,296,67,-1.8308762442320585],[113,296,68,-1.8303399458527565],[113,296,69,-1.8297820575535297],[113,296,70,-1.829125831834972],[113,296,71,-1.8282407047227025],[113,296,72,-1.8267517378553748],[113,296,73,-1.8247488643974066],[113,296,74,-1.8230016264133155],[113,296,75,-1.8217914546839893],[113,296,76,-1.8208487671799958],[113,296,77,-1.8199529582634568],[113,296,78,-1.818970057880506],[113,296,79,-1.8178090718574822],[113,297,64,-1.8430420868098736],[113,297,65,-1.841132614761591],[113,297,66,-1.8396263187751174],[113,297,67,-1.8386887442320585],[113,297,68,-1.8381524458527565],[113,297,69,-1.8375945575535297],[113,297,70,-1.836938331834972],[113,297,71,-1.8360532047227025],[113,297,72,-1.8345642378553748],[113,297,73,-1.8325613643974066],[113,297,74,-1.8308141264133155],[113,297,75,-1.8296039546839893],[113,297,76,-1.8286612671799958],[113,297,77,-1.8277654582634568],[113,297,78,-1.826782557880506],[113,297,79,-1.8256215718574822],[113,298,64,-1.8508545868098736],[113,298,65,-1.848945114761591],[113,298,66,-1.8474388187751174],[113,298,67,-1.8465012442320585],[113,298,68,-1.8459649458527565],[113,298,69,-1.8454070575535297],[113,298,70,-1.844750831834972],[113,298,71,-1.8438657047227025],[113,298,72,-1.8423767378553748],[113,298,73,-1.8403738643974066],[113,298,74,-1.8386266264133155],[113,298,75,-1.8374164546839893],[113,298,76,-1.8364737671799958],[113,298,77,-1.8355779582634568],[113,298,78,-1.834595057880506],[113,298,79,-1.8334340718574822],[113,299,64,-1.8586670868098736],[113,299,65,-1.856757614761591],[113,299,66,-1.8552513187751174],[113,299,67,-1.8543137442320585],[113,299,68,-1.8537774458527565],[113,299,69,-1.8532195575535297],[113,299,70,-1.852563331834972],[113,299,71,-1.8516782047227025],[113,299,72,-1.8501892378553748],[113,299,73,-1.8481863643974066],[113,299,74,-1.8464391264133155],[113,299,75,-1.8452289546839893],[113,299,76,-1.8442862671799958],[113,299,77,-1.8433904582634568],[113,299,78,-1.842407557880506],[113,299,79,-1.8412465718574822],[113,300,64,-1.8664795868098736],[113,300,65,-1.864570114761591],[113,300,66,-1.8630638187751174],[113,300,67,-1.8621262442320585],[113,300,68,-1.8615899458527565],[113,300,69,-1.8610320575535297],[113,300,70,-1.860375831834972],[113,300,71,-1.8594907047227025],[113,300,72,-1.8580017378553748],[113,300,73,-1.8559988643974066],[113,300,74,-1.8542516264133155],[113,300,75,-1.8530414546839893],[113,300,76,-1.8520987671799958],[113,300,77,-1.8512029582634568],[113,300,78,-1.850220057880506],[113,300,79,-1.8490590718574822],[113,301,64,-1.8742920868098736],[113,301,65,-1.872382614761591],[113,301,66,-1.8708763187751174],[113,301,67,-1.8699387442320585],[113,301,68,-1.8694024458527565],[113,301,69,-1.8688445575535297],[113,301,70,-1.868188331834972],[113,301,71,-1.8673032047227025],[113,301,72,-1.8658142378553748],[113,301,73,-1.8638113643974066],[113,301,74,-1.8620641264133155],[113,301,75,-1.8608539546839893],[113,301,76,-1.8599112671799958],[113,301,77,-1.8590154582634568],[113,301,78,-1.858032557880506],[113,301,79,-1.8568715718574822],[113,302,64,-1.8821045868098736],[113,302,65,-1.880195114761591],[113,302,66,-1.8786888187751174],[113,302,67,-1.8777512442320585],[113,302,68,-1.8772149458527565],[113,302,69,-1.8766570575535297],[113,302,70,-1.876000831834972],[113,302,71,-1.8751157047227025],[113,302,72,-1.8736267378553748],[113,302,73,-1.8716238643974066],[113,302,74,-1.8698766264133155],[113,302,75,-1.8686664546839893],[113,302,76,-1.8677237671799958],[113,302,77,-1.8668279582634568],[113,302,78,-1.865845057880506],[113,302,79,-1.8646840718574822],[113,303,64,-1.8899170868098736],[113,303,65,-1.888007614761591],[113,303,66,-1.8865013187751174],[113,303,67,-1.8855637442320585],[113,303,68,-1.8850274458527565],[113,303,69,-1.8844695575535297],[113,303,70,-1.883813331834972],[113,303,71,-1.8829282047227025],[113,303,72,-1.8814392378553748],[113,303,73,-1.8794363643974066],[113,303,74,-1.8776891264133155],[113,303,75,-1.8764789546839893],[113,303,76,-1.8755362671799958],[113,303,77,-1.8746404582634568],[113,303,78,-1.873657557880506],[113,303,79,-1.8724965718574822],[113,304,64,-1.8977295868098736],[113,304,65,-1.895820114761591],[113,304,66,-1.8943138187751174],[113,304,67,-1.8933762442320585],[113,304,68,-1.8928399458527565],[113,304,69,-1.8922820575535297],[113,304,70,-1.891625831834972],[113,304,71,-1.8907407047227025],[113,304,72,-1.8892517378553748],[113,304,73,-1.8872488643974066],[113,304,74,-1.8855016264133155],[113,304,75,-1.8842914546839893],[113,304,76,-1.8833487671799958],[113,304,77,-1.8824529582634568],[113,304,78,-1.881470057880506],[113,304,79,-1.8803090718574822],[113,305,64,-1.9055420868098736],[113,305,65,-1.903632614761591],[113,305,66,-1.9021263187751174],[113,305,67,-1.9011887442320585],[113,305,68,-1.9006524458527565],[113,305,69,-1.9000945575535297],[113,305,70,-1.899438331834972],[113,305,71,-1.8985532047227025],[113,305,72,-1.8970642378553748],[113,305,73,-1.8950613643974066],[113,305,74,-1.8933141264133155],[113,305,75,-1.8921039546839893],[113,305,76,-1.8911612671799958],[113,305,77,-1.8902654582634568],[113,305,78,-1.889282557880506],[113,305,79,-1.8881215718574822],[113,306,64,-1.9133545868098736],[113,306,65,-1.911445114761591],[113,306,66,-1.9099388187751174],[113,306,67,-1.9090012442320585],[113,306,68,-1.9084649458527565],[113,306,69,-1.9079070575535297],[113,306,70,-1.907250831834972],[113,306,71,-1.9063657047227025],[113,306,72,-1.9048767378553748],[113,306,73,-1.9028738643974066],[113,306,74,-1.9011266264133155],[113,306,75,-1.8999164546839893],[113,306,76,-1.8989737671799958],[113,306,77,-1.8980779582634568],[113,306,78,-1.897095057880506],[113,306,79,-1.8959340718574822],[113,307,64,-1.9211670868098736],[113,307,65,-1.919257614761591],[113,307,66,-1.9177513187751174],[113,307,67,-1.9168137442320585],[113,307,68,-1.9162774458527565],[113,307,69,-1.9157195575535297],[113,307,70,-1.915063331834972],[113,307,71,-1.9141782047227025],[113,307,72,-1.9126892378553748],[113,307,73,-1.9106863643974066],[113,307,74,-1.9089391264133155],[113,307,75,-1.9077289546839893],[113,307,76,-1.9067862671799958],[113,307,77,-1.9058904582634568],[113,307,78,-1.904907557880506],[113,307,79,-1.9037465718574822],[113,308,64,-1.9289795868098736],[113,308,65,-1.927070114761591],[113,308,66,-1.9255638187751174],[113,308,67,-1.9246262442320585],[113,308,68,-1.9240899458527565],[113,308,69,-1.9235320575535297],[113,308,70,-1.922875831834972],[113,308,71,-1.9219907047227025],[113,308,72,-1.9205017378553748],[113,308,73,-1.9184988643974066],[113,308,74,-1.9167516264133155],[113,308,75,-1.9155414546839893],[113,308,76,-1.9145987671799958],[113,308,77,-1.9137029582634568],[113,308,78,-1.912720057880506],[113,308,79,-1.9115590718574822],[113,309,64,-1.9367920868098736],[113,309,65,-1.934882614761591],[113,309,66,-1.9333763187751174],[113,309,67,-1.9324387442320585],[113,309,68,-1.9319024458527565],[113,309,69,-1.9313445575535297],[113,309,70,-1.930688331834972],[113,309,71,-1.9298032047227025],[113,309,72,-1.9283142378553748],[113,309,73,-1.9263113643974066],[113,309,74,-1.9245641264133155],[113,309,75,-1.9233539546839893],[113,309,76,-1.9224112671799958],[113,309,77,-1.9215154582634568],[113,309,78,-1.920532557880506],[113,309,79,-1.9193715718574822],[113,310,64,-1.9446045868098736],[113,310,65,-1.942695114761591],[113,310,66,-1.9411888187751174],[113,310,67,-1.9402512442320585],[113,310,68,-1.9397149458527565],[113,310,69,-1.9391570575535297],[113,310,70,-1.938500831834972],[113,310,71,-1.9376157047227025],[113,310,72,-1.9361267378553748],[113,310,73,-1.9341238643974066],[113,310,74,-1.9323766264133155],[113,310,75,-1.9311664546839893],[113,310,76,-1.9302237671799958],[113,310,77,-1.9293279582634568],[113,310,78,-1.928345057880506],[113,310,79,-1.9271840718574822],[113,311,64,-1.9524170868098736],[113,311,65,-1.950507614761591],[113,311,66,-1.9490013187751174],[113,311,67,-1.9480637442320585],[113,311,68,-1.9475274458527565],[113,311,69,-1.9469695575535297],[113,311,70,-1.946313331834972],[113,311,71,-1.9454282047227025],[113,311,72,-1.9439392378553748],[113,311,73,-1.9419363643974066],[113,311,74,-1.9401891264133155],[113,311,75,-1.9389789546839893],[113,311,76,-1.9380362671799958],[113,311,77,-1.9371404582634568],[113,311,78,-1.936157557880506],[113,311,79,-1.9349965718574822],[113,312,64,-1.9602295868098736],[113,312,65,-1.958320114761591],[113,312,66,-1.9568138187751174],[113,312,67,-1.9558762442320585],[113,312,68,-1.9553399458527565],[113,312,69,-1.9547820575535297],[113,312,70,-1.954125831834972],[113,312,71,-1.9532407047227025],[113,312,72,-1.9517517378553748],[113,312,73,-1.9497488643974066],[113,312,74,-1.9480016264133155],[113,312,75,-1.9467914546839893],[113,312,76,-1.9458487671799958],[113,312,77,-1.9449529582634568],[113,312,78,-1.943970057880506],[113,312,79,-1.9428090718574822],[113,313,64,-1.9680420868098736],[113,313,65,-1.966132614761591],[113,313,66,-1.9646263187751174],[113,313,67,-1.9636887442320585],[113,313,68,-1.9631524458527565],[113,313,69,-1.9625945575535297],[113,313,70,-1.961938331834972],[113,313,71,-1.9610532047227025],[113,313,72,-1.9595642378553748],[113,313,73,-1.9575613643974066],[113,313,74,-1.9558141264133155],[113,313,75,-1.9546039546839893],[113,313,76,-1.9536612671799958],[113,313,77,-1.9527654582634568],[113,313,78,-1.951782557880506],[113,313,79,-1.9506215718574822],[113,314,64,-1.9758545868098736],[113,314,65,-1.973945114761591],[113,314,66,-1.9724388187751174],[113,314,67,-1.9715012442320585],[113,314,68,-1.9709649458527565],[113,314,69,-1.9704070575535297],[113,314,70,-1.969750831834972],[113,314,71,-1.9688657047227025],[113,314,72,-1.9673767378553748],[113,314,73,-1.9653738643974066],[113,314,74,-1.9636266264133155],[113,314,75,-1.9624164546839893],[113,314,76,-1.9614737671799958],[113,314,77,-1.9605779582634568],[113,314,78,-1.959595057880506],[113,314,79,-1.9584340718574822],[113,315,64,-1.9836670868098736],[113,315,65,-1.981757614761591],[113,315,66,-1.9802513187751174],[113,315,67,-1.9793137442320585],[113,315,68,-1.9787774458527565],[113,315,69,-1.9782195575535297],[113,315,70,-1.977563331834972],[113,315,71,-1.9766782047227025],[113,315,72,-1.9751892378553748],[113,315,73,-1.9731863643974066],[113,315,74,-1.9714391264133155],[113,315,75,-1.9702289546839893],[113,315,76,-1.9692862671799958],[113,315,77,-1.9683904582634568],[113,315,78,-1.967407557880506],[113,315,79,-1.9662465718574822],[113,316,64,-1.9914795868098736],[113,316,65,-1.989570114761591],[113,316,66,-1.9880638187751174],[113,316,67,-1.9871262442320585],[113,316,68,-1.9865899458527565],[113,316,69,-1.9860320575535297],[113,316,70,-1.985375831834972],[113,316,71,-1.9844907047227025],[113,316,72,-1.9830017378553748],[113,316,73,-1.9809988643974066],[113,316,74,-1.9792516264133155],[113,316,75,-1.9780414546839893],[113,316,76,-1.9770987671799958],[113,316,77,-1.9762029582634568],[113,316,78,-1.975220057880506],[113,316,79,-1.9740590718574822],[113,317,64,-1.9992920868098736],[113,317,65,-1.997382614761591],[113,317,66,-1.9958763187751174],[113,317,67,-1.9949387442320585],[113,317,68,-1.9944024458527565],[113,317,69,-1.9938445575535297],[113,317,70,-1.993188331834972],[113,317,71,-1.9923032047227025],[113,317,72,-1.9908142378553748],[113,317,73,-1.9888113643974066],[113,317,74,-1.9870641264133155],[113,317,75,-1.9858539546839893],[113,317,76,-1.9849112671799958],[113,317,77,-1.9840154582634568],[113,317,78,-1.983032557880506],[113,317,79,-1.9818715718574822],[113,318,64,-2.0071045868098736],[113,318,65,-2.005195114761591],[113,318,66,-2.0036888187751174],[113,318,67,-2.0027512442320585],[113,318,68,-2.0022149458527565],[113,318,69,-2.0016570575535297],[113,318,70,-2.001000831834972],[113,318,71,-2.0001157047227025],[113,318,72,-1.9986267378553748],[113,318,73,-1.9966238643974066],[113,318,74,-1.9948766264133155],[113,318,75,-1.9936664546839893],[113,318,76,-1.9927237671799958],[113,318,77,-1.9918279582634568],[113,318,78,-1.990845057880506],[113,318,79,-1.9896840718574822],[113,319,64,-2.0149170868098736],[113,319,65,-2.013007614761591],[113,319,66,-2.0115013187751174],[113,319,67,-2.0105637442320585],[113,319,68,-2.0100274458527565],[113,319,69,-2.0094695575535297],[113,319,70,-2.008813331834972],[113,319,71,-2.0079282047227025],[113,319,72,-2.006439237855375],[113,319,73,-2.0044363643974066],[113,319,74,-2.0026891264133155],[113,319,75,-2.0014789546839893],[113,319,76,-2.0005362671799958],[113,319,77,-1.9996404582634568],[113,319,78,-1.998657557880506],[113,319,79,-1.9974965718574822],[114,-64,64,0.9716049358248711],[114,-64,65,0.9731912333518267],[114,-64,66,0.9745756294578314],[114,-64,67,0.9757437389343977],[114,-64,68,0.9766600653529167],[114,-64,69,0.9776528459042311],[114,-64,70,0.9787309169769287],[114,-64,71,0.9800583254545927],[114,-64,72,0.9819269208237529],[114,-64,73,0.9841699888929725],[114,-64,74,0.9862718535587192],[114,-64,75,0.9876390211284161],[114,-64,76,0.9884127089753747],[114,-64,77,0.9890259630046785],[114,-64,78,0.989932581782341],[114,-64,79,0.9912003623321652],[114,-63,64,0.9637924358248711],[114,-63,65,0.9653787333518267],[114,-63,66,0.9667631294578314],[114,-63,67,0.9679312389343977],[114,-63,68,0.9688475653529167],[114,-63,69,0.9698403459042311],[114,-63,70,0.9709184169769287],[114,-63,71,0.9722458254545927],[114,-63,72,0.9741144208237529],[114,-63,73,0.9763574888929725],[114,-63,74,0.9784593535587192],[114,-63,75,0.9798265211284161],[114,-63,76,0.9806002089753747],[114,-63,77,0.9812134630046785],[114,-63,78,0.982120081782341],[114,-63,79,0.9833878623321652],[114,-62,64,0.9559799358248711],[114,-62,65,0.9575662333518267],[114,-62,66,0.9589506294578314],[114,-62,67,0.9601187389343977],[114,-62,68,0.9610350653529167],[114,-62,69,0.9620278459042311],[114,-62,70,0.9631059169769287],[114,-62,71,0.9644333254545927],[114,-62,72,0.9663019208237529],[114,-62,73,0.9685449888929725],[114,-62,74,0.9706468535587192],[114,-62,75,0.9720140211284161],[114,-62,76,0.9727877089753747],[114,-62,77,0.9734009630046785],[114,-62,78,0.974307581782341],[114,-62,79,0.9755753623321652],[114,-61,64,0.9481674358248711],[114,-61,65,0.9497537333518267],[114,-61,66,0.9511381294578314],[114,-61,67,0.9523062389343977],[114,-61,68,0.9532225653529167],[114,-61,69,0.9542153459042311],[114,-61,70,0.9552934169769287],[114,-61,71,0.9566208254545927],[114,-61,72,0.9584894208237529],[114,-61,73,0.9607324888929725],[114,-61,74,0.9628343535587192],[114,-61,75,0.9642015211284161],[114,-61,76,0.9649752089753747],[114,-61,77,0.9655884630046785],[114,-61,78,0.966495081782341],[114,-61,79,0.9677628623321652],[114,-60,64,0.9403549358248711],[114,-60,65,0.9419412333518267],[114,-60,66,0.9433256294578314],[114,-60,67,0.9444937389343977],[114,-60,68,0.9454100653529167],[114,-60,69,0.9464028459042311],[114,-60,70,0.9474809169769287],[114,-60,71,0.9488083254545927],[114,-60,72,0.9506769208237529],[114,-60,73,0.9529199888929725],[114,-60,74,0.9550218535587192],[114,-60,75,0.9563890211284161],[114,-60,76,0.9571627089753747],[114,-60,77,0.9577759630046785],[114,-60,78,0.958682581782341],[114,-60,79,0.9599503623321652],[114,-59,64,0.9325424358248711],[114,-59,65,0.9341287333518267],[114,-59,66,0.9355131294578314],[114,-59,67,0.9366812389343977],[114,-59,68,0.9375975653529167],[114,-59,69,0.9385903459042311],[114,-59,70,0.9396684169769287],[114,-59,71,0.9409958254545927],[114,-59,72,0.9428644208237529],[114,-59,73,0.9451074888929725],[114,-59,74,0.9472093535587192],[114,-59,75,0.9485765211284161],[114,-59,76,0.9493502089753747],[114,-59,77,0.9499634630046785],[114,-59,78,0.950870081782341],[114,-59,79,0.9521378623321652],[114,-58,64,0.9247299358248711],[114,-58,65,0.9263162333518267],[114,-58,66,0.9277006294578314],[114,-58,67,0.9288687389343977],[114,-58,68,0.9297850653529167],[114,-58,69,0.9307778459042311],[114,-58,70,0.9318559169769287],[114,-58,71,0.9331833254545927],[114,-58,72,0.9350519208237529],[114,-58,73,0.9372949888929725],[114,-58,74,0.9393968535587192],[114,-58,75,0.9407640211284161],[114,-58,76,0.9415377089753747],[114,-58,77,0.9421509630046785],[114,-58,78,0.943057581782341],[114,-58,79,0.9443253623321652],[114,-57,64,0.9169174358248711],[114,-57,65,0.9185037333518267],[114,-57,66,0.9198881294578314],[114,-57,67,0.9210562389343977],[114,-57,68,0.9219725653529167],[114,-57,69,0.9229653459042311],[114,-57,70,0.9240434169769287],[114,-57,71,0.9253708254545927],[114,-57,72,0.9272394208237529],[114,-57,73,0.9294824888929725],[114,-57,74,0.9315843535587192],[114,-57,75,0.9329515211284161],[114,-57,76,0.9337252089753747],[114,-57,77,0.9343384630046785],[114,-57,78,0.935245081782341],[114,-57,79,0.9365128623321652],[114,-56,64,0.9091049358248711],[114,-56,65,0.9106912333518267],[114,-56,66,0.9120756294578314],[114,-56,67,0.9132437389343977],[114,-56,68,0.9141600653529167],[114,-56,69,0.9151528459042311],[114,-56,70,0.9162309169769287],[114,-56,71,0.9175583254545927],[114,-56,72,0.9194269208237529],[114,-56,73,0.9216699888929725],[114,-56,74,0.9237718535587192],[114,-56,75,0.9251390211284161],[114,-56,76,0.9259127089753747],[114,-56,77,0.9265259630046785],[114,-56,78,0.927432581782341],[114,-56,79,0.9287003623321652],[114,-55,64,0.9012924358248711],[114,-55,65,0.9028787333518267],[114,-55,66,0.9042631294578314],[114,-55,67,0.9054312389343977],[114,-55,68,0.9063475653529167],[114,-55,69,0.9073403459042311],[114,-55,70,0.9084184169769287],[114,-55,71,0.9097458254545927],[114,-55,72,0.9116144208237529],[114,-55,73,0.9138574888929725],[114,-55,74,0.9159593535587192],[114,-55,75,0.9173265211284161],[114,-55,76,0.9181002089753747],[114,-55,77,0.9187134630046785],[114,-55,78,0.919620081782341],[114,-55,79,0.9208878623321652],[114,-54,64,0.8934799358248711],[114,-54,65,0.8950662333518267],[114,-54,66,0.8964506294578314],[114,-54,67,0.8976187389343977],[114,-54,68,0.8985350653529167],[114,-54,69,0.8995278459042311],[114,-54,70,0.9006059169769287],[114,-54,71,0.9019333254545927],[114,-54,72,0.9038019208237529],[114,-54,73,0.9060449888929725],[114,-54,74,0.9081468535587192],[114,-54,75,0.9095140211284161],[114,-54,76,0.9102877089753747],[114,-54,77,0.9109009630046785],[114,-54,78,0.911807581782341],[114,-54,79,0.9130753623321652],[114,-53,64,0.8856674358248711],[114,-53,65,0.8872537333518267],[114,-53,66,0.8886381294578314],[114,-53,67,0.8898062389343977],[114,-53,68,0.8907225653529167],[114,-53,69,0.8917153459042311],[114,-53,70,0.8927934169769287],[114,-53,71,0.8941208254545927],[114,-53,72,0.8959894208237529],[114,-53,73,0.8982324888929725],[114,-53,74,0.9003343535587192],[114,-53,75,0.9017015211284161],[114,-53,76,0.9024752089753747],[114,-53,77,0.9030884630046785],[114,-53,78,0.903995081782341],[114,-53,79,0.9052628623321652],[114,-52,64,0.8778549358248711],[114,-52,65,0.8794412333518267],[114,-52,66,0.8808256294578314],[114,-52,67,0.8819937389343977],[114,-52,68,0.8829100653529167],[114,-52,69,0.8839028459042311],[114,-52,70,0.8849809169769287],[114,-52,71,0.8863083254545927],[114,-52,72,0.8881769208237529],[114,-52,73,0.8904199888929725],[114,-52,74,0.8925218535587192],[114,-52,75,0.8938890211284161],[114,-52,76,0.8946627089753747],[114,-52,77,0.8952759630046785],[114,-52,78,0.896182581782341],[114,-52,79,0.8974503623321652],[114,-51,64,0.8700424358248711],[114,-51,65,0.8716287333518267],[114,-51,66,0.8730131294578314],[114,-51,67,0.8741812389343977],[114,-51,68,0.8750975653529167],[114,-51,69,0.8760903459042311],[114,-51,70,0.8771684169769287],[114,-51,71,0.8784958254545927],[114,-51,72,0.8803644208237529],[114,-51,73,0.8826074888929725],[114,-51,74,0.8847093535587192],[114,-51,75,0.8860765211284161],[114,-51,76,0.8868502089753747],[114,-51,77,0.8874634630046785],[114,-51,78,0.888370081782341],[114,-51,79,0.8896378623321652],[114,-50,64,0.8622299358248711],[114,-50,65,0.8638162333518267],[114,-50,66,0.8652006294578314],[114,-50,67,0.8663687389343977],[114,-50,68,0.8672850653529167],[114,-50,69,0.8682778459042311],[114,-50,70,0.8693559169769287],[114,-50,71,0.8706833254545927],[114,-50,72,0.8725519208237529],[114,-50,73,0.8747949888929725],[114,-50,74,0.8768968535587192],[114,-50,75,0.8782640211284161],[114,-50,76,0.8790377089753747],[114,-50,77,0.8796509630046785],[114,-50,78,0.880557581782341],[114,-50,79,0.8818253623321652],[114,-49,64,0.8544174358248711],[114,-49,65,0.8560037333518267],[114,-49,66,0.8573881294578314],[114,-49,67,0.8585562389343977],[114,-49,68,0.8594725653529167],[114,-49,69,0.8604653459042311],[114,-49,70,0.8615434169769287],[114,-49,71,0.8628708254545927],[114,-49,72,0.8647394208237529],[114,-49,73,0.8669824888929725],[114,-49,74,0.8690843535587192],[114,-49,75,0.8704515211284161],[114,-49,76,0.8712252089753747],[114,-49,77,0.8718384630046785],[114,-49,78,0.872745081782341],[114,-49,79,0.8740128623321652],[114,-48,64,0.8466049358248711],[114,-48,65,0.8481912333518267],[114,-48,66,0.8495756294578314],[114,-48,67,0.8507437389343977],[114,-48,68,0.8516600653529167],[114,-48,69,0.8526528459042311],[114,-48,70,0.8537309169769287],[114,-48,71,0.8550583254545927],[114,-48,72,0.8569269208237529],[114,-48,73,0.8591699888929725],[114,-48,74,0.8612718535587192],[114,-48,75,0.8626390211284161],[114,-48,76,0.8634127089753747],[114,-48,77,0.8640259630046785],[114,-48,78,0.864932581782341],[114,-48,79,0.8662003623321652],[114,-47,64,0.8387924358248711],[114,-47,65,0.8403787333518267],[114,-47,66,0.8417631294578314],[114,-47,67,0.8429312389343977],[114,-47,68,0.8438475653529167],[114,-47,69,0.8448403459042311],[114,-47,70,0.8459184169769287],[114,-47,71,0.8472458254545927],[114,-47,72,0.8491144208237529],[114,-47,73,0.8513574888929725],[114,-47,74,0.8534593535587192],[114,-47,75,0.8548265211284161],[114,-47,76,0.8556002089753747],[114,-47,77,0.8562134630046785],[114,-47,78,0.857120081782341],[114,-47,79,0.8583878623321652],[114,-46,64,0.8309799358248711],[114,-46,65,0.8325662333518267],[114,-46,66,0.8339506294578314],[114,-46,67,0.8351187389343977],[114,-46,68,0.8360350653529167],[114,-46,69,0.8370278459042311],[114,-46,70,0.8381059169769287],[114,-46,71,0.8394333254545927],[114,-46,72,0.8413019208237529],[114,-46,73,0.8435449888929725],[114,-46,74,0.8456468535587192],[114,-46,75,0.8470140211284161],[114,-46,76,0.8477877089753747],[114,-46,77,0.8484009630046785],[114,-46,78,0.849307581782341],[114,-46,79,0.8505753623321652],[114,-45,64,0.8231674358248711],[114,-45,65,0.8247537333518267],[114,-45,66,0.8261381294578314],[114,-45,67,0.8273062389343977],[114,-45,68,0.8282225653529167],[114,-45,69,0.8292153459042311],[114,-45,70,0.8302934169769287],[114,-45,71,0.8316208254545927],[114,-45,72,0.8334894208237529],[114,-45,73,0.8357324888929725],[114,-45,74,0.8378343535587192],[114,-45,75,0.8392015211284161],[114,-45,76,0.8399752089753747],[114,-45,77,0.8405884630046785],[114,-45,78,0.841495081782341],[114,-45,79,0.8427628623321652],[114,-44,64,0.8153549358248711],[114,-44,65,0.8169412333518267],[114,-44,66,0.8183256294578314],[114,-44,67,0.8194937389343977],[114,-44,68,0.8204100653529167],[114,-44,69,0.8214028459042311],[114,-44,70,0.8224809169769287],[114,-44,71,0.8238083254545927],[114,-44,72,0.8256769208237529],[114,-44,73,0.8279199888929725],[114,-44,74,0.8300218535587192],[114,-44,75,0.8313890211284161],[114,-44,76,0.8321627089753747],[114,-44,77,0.8327759630046785],[114,-44,78,0.833682581782341],[114,-44,79,0.8349503623321652],[114,-43,64,0.8075424358248711],[114,-43,65,0.8091287333518267],[114,-43,66,0.8105131294578314],[114,-43,67,0.8116812389343977],[114,-43,68,0.8125975653529167],[114,-43,69,0.8135903459042311],[114,-43,70,0.8146684169769287],[114,-43,71,0.8159958254545927],[114,-43,72,0.8178644208237529],[114,-43,73,0.8201074888929725],[114,-43,74,0.8222093535587192],[114,-43,75,0.8235765211284161],[114,-43,76,0.8243502089753747],[114,-43,77,0.8249634630046785],[114,-43,78,0.825870081782341],[114,-43,79,0.8271378623321652],[114,-42,64,0.7997299358248711],[114,-42,65,0.8013162333518267],[114,-42,66,0.8027006294578314],[114,-42,67,0.8038687389343977],[114,-42,68,0.8047850653529167],[114,-42,69,0.8057778459042311],[114,-42,70,0.8068559169769287],[114,-42,71,0.8081833254545927],[114,-42,72,0.8100519208237529],[114,-42,73,0.8122949888929725],[114,-42,74,0.8143968535587192],[114,-42,75,0.8157640211284161],[114,-42,76,0.8165377089753747],[114,-42,77,0.8171509630046785],[114,-42,78,0.818057581782341],[114,-42,79,0.8193253623321652],[114,-41,64,0.7919174358248711],[114,-41,65,0.7935037333518267],[114,-41,66,0.7948881294578314],[114,-41,67,0.7960562389343977],[114,-41,68,0.7969725653529167],[114,-41,69,0.7979653459042311],[114,-41,70,0.7990434169769287],[114,-41,71,0.8003708254545927],[114,-41,72,0.8022394208237529],[114,-41,73,0.8044824888929725],[114,-41,74,0.8065843535587192],[114,-41,75,0.8079515211284161],[114,-41,76,0.8087252089753747],[114,-41,77,0.8093384630046785],[114,-41,78,0.810245081782341],[114,-41,79,0.8115128623321652],[114,-40,64,0.7841049358248711],[114,-40,65,0.7856912333518267],[114,-40,66,0.7870756294578314],[114,-40,67,0.7882437389343977],[114,-40,68,0.7891600653529167],[114,-40,69,0.7901528459042311],[114,-40,70,0.7912309169769287],[114,-40,71,0.7925583254545927],[114,-40,72,0.7944269208237529],[114,-40,73,0.7966699888929725],[114,-40,74,0.7987718535587192],[114,-40,75,0.8001390211284161],[114,-40,76,0.8009127089753747],[114,-40,77,0.8015259630046785],[114,-40,78,0.802432581782341],[114,-40,79,0.8037003623321652],[114,-39,64,0.7762924358248711],[114,-39,65,0.7778787333518267],[114,-39,66,0.7792631294578314],[114,-39,67,0.7804312389343977],[114,-39,68,0.7813475653529167],[114,-39,69,0.7823403459042311],[114,-39,70,0.7834184169769287],[114,-39,71,0.7847458254545927],[114,-39,72,0.7866144208237529],[114,-39,73,0.7888574888929725],[114,-39,74,0.7909593535587192],[114,-39,75,0.7923265211284161],[114,-39,76,0.7931002089753747],[114,-39,77,0.7937134630046785],[114,-39,78,0.794620081782341],[114,-39,79,0.7958878623321652],[114,-38,64,0.7684799358248711],[114,-38,65,0.7700662333518267],[114,-38,66,0.7714506294578314],[114,-38,67,0.7726187389343977],[114,-38,68,0.7735350653529167],[114,-38,69,0.7745278459042311],[114,-38,70,0.7756059169769287],[114,-38,71,0.7769333254545927],[114,-38,72,0.7788019208237529],[114,-38,73,0.7810449888929725],[114,-38,74,0.7831468535587192],[114,-38,75,0.7845140211284161],[114,-38,76,0.7852877089753747],[114,-38,77,0.7859009630046785],[114,-38,78,0.786807581782341],[114,-38,79,0.7880753623321652],[114,-37,64,0.7606674358248711],[114,-37,65,0.7622537333518267],[114,-37,66,0.7636381294578314],[114,-37,67,0.7648062389343977],[114,-37,68,0.7657225653529167],[114,-37,69,0.7667153459042311],[114,-37,70,0.7677934169769287],[114,-37,71,0.7691208254545927],[114,-37,72,0.7709894208237529],[114,-37,73,0.7732324888929725],[114,-37,74,0.7753343535587192],[114,-37,75,0.7767015211284161],[114,-37,76,0.7774752089753747],[114,-37,77,0.7780884630046785],[114,-37,78,0.778995081782341],[114,-37,79,0.7802628623321652],[114,-36,64,0.7528549358248711],[114,-36,65,0.7544412333518267],[114,-36,66,0.7558256294578314],[114,-36,67,0.7569937389343977],[114,-36,68,0.7579100653529167],[114,-36,69,0.7589028459042311],[114,-36,70,0.7599809169769287],[114,-36,71,0.7613083254545927],[114,-36,72,0.7631769208237529],[114,-36,73,0.7654199888929725],[114,-36,74,0.7675218535587192],[114,-36,75,0.7688890211284161],[114,-36,76,0.7696627089753747],[114,-36,77,0.7702759630046785],[114,-36,78,0.771182581782341],[114,-36,79,0.7724503623321652],[114,-35,64,0.7450424358248711],[114,-35,65,0.7466287333518267],[114,-35,66,0.7480131294578314],[114,-35,67,0.7491812389343977],[114,-35,68,0.7500975653529167],[114,-35,69,0.7510903459042311],[114,-35,70,0.7521684169769287],[114,-35,71,0.7534958254545927],[114,-35,72,0.7553644208237529],[114,-35,73,0.7576074888929725],[114,-35,74,0.7597093535587192],[114,-35,75,0.7610765211284161],[114,-35,76,0.7618502089753747],[114,-35,77,0.7624634630046785],[114,-35,78,0.763370081782341],[114,-35,79,0.7646378623321652],[114,-34,64,0.7372299358248711],[114,-34,65,0.7388162333518267],[114,-34,66,0.7402006294578314],[114,-34,67,0.7413687389343977],[114,-34,68,0.7422850653529167],[114,-34,69,0.7432778459042311],[114,-34,70,0.7443559169769287],[114,-34,71,0.7456833254545927],[114,-34,72,0.7475519208237529],[114,-34,73,0.7497949888929725],[114,-34,74,0.7518968535587192],[114,-34,75,0.7532640211284161],[114,-34,76,0.7540377089753747],[114,-34,77,0.7546509630046785],[114,-34,78,0.755557581782341],[114,-34,79,0.7568253623321652],[114,-33,64,0.7294174358248711],[114,-33,65,0.7310037333518267],[114,-33,66,0.7323881294578314],[114,-33,67,0.7335562389343977],[114,-33,68,0.7344725653529167],[114,-33,69,0.7354653459042311],[114,-33,70,0.7365434169769287],[114,-33,71,0.7378708254545927],[114,-33,72,0.7397394208237529],[114,-33,73,0.7419824888929725],[114,-33,74,0.7440843535587192],[114,-33,75,0.7454515211284161],[114,-33,76,0.7462252089753747],[114,-33,77,0.7468384630046785],[114,-33,78,0.747745081782341],[114,-33,79,0.7490128623321652],[114,-32,64,0.7216049358248711],[114,-32,65,0.7231912333518267],[114,-32,66,0.7245756294578314],[114,-32,67,0.7257437389343977],[114,-32,68,0.7266600653529167],[114,-32,69,0.7276528459042311],[114,-32,70,0.7287309169769287],[114,-32,71,0.7300583254545927],[114,-32,72,0.7319269208237529],[114,-32,73,0.7341699888929725],[114,-32,74,0.7362718535587192],[114,-32,75,0.7376390211284161],[114,-32,76,0.7384127089753747],[114,-32,77,0.7390259630046785],[114,-32,78,0.739932581782341],[114,-32,79,0.7412003623321652],[114,-31,64,0.7137924358248711],[114,-31,65,0.7153787333518267],[114,-31,66,0.7167631294578314],[114,-31,67,0.7179312389343977],[114,-31,68,0.7188475653529167],[114,-31,69,0.7198403459042311],[114,-31,70,0.7209184169769287],[114,-31,71,0.7222458254545927],[114,-31,72,0.7241144208237529],[114,-31,73,0.7263574888929725],[114,-31,74,0.7284593535587192],[114,-31,75,0.7298265211284161],[114,-31,76,0.7306002089753747],[114,-31,77,0.7312134630046785],[114,-31,78,0.732120081782341],[114,-31,79,0.7333878623321652],[114,-30,64,0.7059799358248711],[114,-30,65,0.7075662333518267],[114,-30,66,0.7089506294578314],[114,-30,67,0.7101187389343977],[114,-30,68,0.7110350653529167],[114,-30,69,0.7120278459042311],[114,-30,70,0.7131059169769287],[114,-30,71,0.7144333254545927],[114,-30,72,0.7163019208237529],[114,-30,73,0.7185449888929725],[114,-30,74,0.7206468535587192],[114,-30,75,0.7220140211284161],[114,-30,76,0.7227877089753747],[114,-30,77,0.7234009630046785],[114,-30,78,0.724307581782341],[114,-30,79,0.7255753623321652],[114,-29,64,0.6981674358248711],[114,-29,65,0.6997537333518267],[114,-29,66,0.7011381294578314],[114,-29,67,0.7023062389343977],[114,-29,68,0.7032225653529167],[114,-29,69,0.7042153459042311],[114,-29,70,0.7052934169769287],[114,-29,71,0.7066208254545927],[114,-29,72,0.7084894208237529],[114,-29,73,0.7107324888929725],[114,-29,74,0.7128343535587192],[114,-29,75,0.7142015211284161],[114,-29,76,0.7149752089753747],[114,-29,77,0.7155884630046785],[114,-29,78,0.716495081782341],[114,-29,79,0.7177628623321652],[114,-28,64,0.6903549358248711],[114,-28,65,0.6919412333518267],[114,-28,66,0.6933256294578314],[114,-28,67,0.6944937389343977],[114,-28,68,0.6954100653529167],[114,-28,69,0.6964028459042311],[114,-28,70,0.6974809169769287],[114,-28,71,0.6988083254545927],[114,-28,72,0.7006769208237529],[114,-28,73,0.7029199888929725],[114,-28,74,0.7050218535587192],[114,-28,75,0.7063890211284161],[114,-28,76,0.7071627089753747],[114,-28,77,0.7077759630046785],[114,-28,78,0.708682581782341],[114,-28,79,0.7099503623321652],[114,-27,64,0.6825424358248711],[114,-27,65,0.6841287333518267],[114,-27,66,0.6855131294578314],[114,-27,67,0.6866812389343977],[114,-27,68,0.6875975653529167],[114,-27,69,0.6885903459042311],[114,-27,70,0.6896684169769287],[114,-27,71,0.6909958254545927],[114,-27,72,0.6928644208237529],[114,-27,73,0.6951074888929725],[114,-27,74,0.6972093535587192],[114,-27,75,0.6985765211284161],[114,-27,76,0.6993502089753747],[114,-27,77,0.6999634630046785],[114,-27,78,0.700870081782341],[114,-27,79,0.7021378623321652],[114,-26,64,0.6747299358248711],[114,-26,65,0.6763162333518267],[114,-26,66,0.6777006294578314],[114,-26,67,0.6788687389343977],[114,-26,68,0.6797850653529167],[114,-26,69,0.6807778459042311],[114,-26,70,0.6818559169769287],[114,-26,71,0.6831833254545927],[114,-26,72,0.6850519208237529],[114,-26,73,0.6872949888929725],[114,-26,74,0.6893968535587192],[114,-26,75,0.6907640211284161],[114,-26,76,0.6915377089753747],[114,-26,77,0.6921509630046785],[114,-26,78,0.693057581782341],[114,-26,79,0.6943253623321652],[114,-25,64,0.6669174358248711],[114,-25,65,0.6685037333518267],[114,-25,66,0.6698881294578314],[114,-25,67,0.6710562389343977],[114,-25,68,0.6719725653529167],[114,-25,69,0.6729653459042311],[114,-25,70,0.6740434169769287],[114,-25,71,0.6753708254545927],[114,-25,72,0.6772394208237529],[114,-25,73,0.6794824888929725],[114,-25,74,0.6815843535587192],[114,-25,75,0.6829515211284161],[114,-25,76,0.6837252089753747],[114,-25,77,0.6843384630046785],[114,-25,78,0.685245081782341],[114,-25,79,0.6865128623321652],[114,-24,64,0.6591049358248711],[114,-24,65,0.6606912333518267],[114,-24,66,0.6620756294578314],[114,-24,67,0.6632437389343977],[114,-24,68,0.6641600653529167],[114,-24,69,0.6651528459042311],[114,-24,70,0.6662309169769287],[114,-24,71,0.6675583254545927],[114,-24,72,0.6694269208237529],[114,-24,73,0.6716699888929725],[114,-24,74,0.6737718535587192],[114,-24,75,0.6751390211284161],[114,-24,76,0.6759127089753747],[114,-24,77,0.6765259630046785],[114,-24,78,0.677432581782341],[114,-24,79,0.6787003623321652],[114,-23,64,0.6512924358248711],[114,-23,65,0.6528787333518267],[114,-23,66,0.6542631294578314],[114,-23,67,0.6554312389343977],[114,-23,68,0.6563475653529167],[114,-23,69,0.6573403459042311],[114,-23,70,0.6584184169769287],[114,-23,71,0.6597458254545927],[114,-23,72,0.6616144208237529],[114,-23,73,0.6638574888929725],[114,-23,74,0.6659593535587192],[114,-23,75,0.6673265211284161],[114,-23,76,0.6681002089753747],[114,-23,77,0.6687134630046785],[114,-23,78,0.669620081782341],[114,-23,79,0.6708878623321652],[114,-22,64,0.6434799358248711],[114,-22,65,0.6450662333518267],[114,-22,66,0.6464506294578314],[114,-22,67,0.6476187389343977],[114,-22,68,0.6485350653529167],[114,-22,69,0.6495278459042311],[114,-22,70,0.6506059169769287],[114,-22,71,0.6519333254545927],[114,-22,72,0.6538019208237529],[114,-22,73,0.6560449888929725],[114,-22,74,0.6581468535587192],[114,-22,75,0.6595140211284161],[114,-22,76,0.6602877089753747],[114,-22,77,0.6609009630046785],[114,-22,78,0.661807581782341],[114,-22,79,0.6630753623321652],[114,-21,64,0.6356674358248711],[114,-21,65,0.6372537333518267],[114,-21,66,0.6386381294578314],[114,-21,67,0.6398062389343977],[114,-21,68,0.6407225653529167],[114,-21,69,0.6417153459042311],[114,-21,70,0.6427934169769287],[114,-21,71,0.6441208254545927],[114,-21,72,0.6459894208237529],[114,-21,73,0.6482324888929725],[114,-21,74,0.6503343535587192],[114,-21,75,0.6517015211284161],[114,-21,76,0.6524752089753747],[114,-21,77,0.6530884630046785],[114,-21,78,0.653995081782341],[114,-21,79,0.6552628623321652],[114,-20,64,0.6278549358248711],[114,-20,65,0.6294412333518267],[114,-20,66,0.6308256294578314],[114,-20,67,0.6319937389343977],[114,-20,68,0.6329100653529167],[114,-20,69,0.6339028459042311],[114,-20,70,0.6349809169769287],[114,-20,71,0.6363083254545927],[114,-20,72,0.6381769208237529],[114,-20,73,0.6404199888929725],[114,-20,74,0.6425218535587192],[114,-20,75,0.6438890211284161],[114,-20,76,0.6446627089753747],[114,-20,77,0.6452759630046785],[114,-20,78,0.646182581782341],[114,-20,79,0.6474503623321652],[114,-19,64,0.6200424358248711],[114,-19,65,0.6216287333518267],[114,-19,66,0.6230131294578314],[114,-19,67,0.6241812389343977],[114,-19,68,0.6250975653529167],[114,-19,69,0.6260903459042311],[114,-19,70,0.6271684169769287],[114,-19,71,0.6284958254545927],[114,-19,72,0.6303644208237529],[114,-19,73,0.6326074888929725],[114,-19,74,0.6347093535587192],[114,-19,75,0.6360765211284161],[114,-19,76,0.6368502089753747],[114,-19,77,0.6374634630046785],[114,-19,78,0.638370081782341],[114,-19,79,0.6396378623321652],[114,-18,64,0.6122299358248711],[114,-18,65,0.6138162333518267],[114,-18,66,0.6152006294578314],[114,-18,67,0.6163687389343977],[114,-18,68,0.6172850653529167],[114,-18,69,0.6182778459042311],[114,-18,70,0.6193559169769287],[114,-18,71,0.6206833254545927],[114,-18,72,0.6225519208237529],[114,-18,73,0.6247949888929725],[114,-18,74,0.6268968535587192],[114,-18,75,0.6282640211284161],[114,-18,76,0.6290377089753747],[114,-18,77,0.6296509630046785],[114,-18,78,0.630557581782341],[114,-18,79,0.6318253623321652],[114,-17,64,0.6044174358248711],[114,-17,65,0.6060037333518267],[114,-17,66,0.6073881294578314],[114,-17,67,0.6085562389343977],[114,-17,68,0.6094725653529167],[114,-17,69,0.6104653459042311],[114,-17,70,0.6115434169769287],[114,-17,71,0.6128708254545927],[114,-17,72,0.6147394208237529],[114,-17,73,0.6169824888929725],[114,-17,74,0.6190843535587192],[114,-17,75,0.6204515211284161],[114,-17,76,0.6212252089753747],[114,-17,77,0.6218384630046785],[114,-17,78,0.622745081782341],[114,-17,79,0.6240128623321652],[114,-16,64,0.5966049358248711],[114,-16,65,0.5981912333518267],[114,-16,66,0.5995756294578314],[114,-16,67,0.6007437389343977],[114,-16,68,0.6016600653529167],[114,-16,69,0.6026528459042311],[114,-16,70,0.6037309169769287],[114,-16,71,0.6050583254545927],[114,-16,72,0.6069269208237529],[114,-16,73,0.6091699888929725],[114,-16,74,0.6112718535587192],[114,-16,75,0.6126390211284161],[114,-16,76,0.6134127089753747],[114,-16,77,0.6140259630046785],[114,-16,78,0.614932581782341],[114,-16,79,0.6162003623321652],[114,-15,64,0.5887924358248711],[114,-15,65,0.5903787333518267],[114,-15,66,0.5917631294578314],[114,-15,67,0.5929312389343977],[114,-15,68,0.5938475653529167],[114,-15,69,0.5948403459042311],[114,-15,70,0.5959184169769287],[114,-15,71,0.5972458254545927],[114,-15,72,0.5991144208237529],[114,-15,73,0.6013574888929725],[114,-15,74,0.6034593535587192],[114,-15,75,0.6048265211284161],[114,-15,76,0.6056002089753747],[114,-15,77,0.6062134630046785],[114,-15,78,0.607120081782341],[114,-15,79,0.6083878623321652],[114,-14,64,0.5809799358248711],[114,-14,65,0.5825662333518267],[114,-14,66,0.5839506294578314],[114,-14,67,0.5851187389343977],[114,-14,68,0.5860350653529167],[114,-14,69,0.5870278459042311],[114,-14,70,0.5881059169769287],[114,-14,71,0.5894333254545927],[114,-14,72,0.5913019208237529],[114,-14,73,0.5935449888929725],[114,-14,74,0.5956468535587192],[114,-14,75,0.5970140211284161],[114,-14,76,0.5977877089753747],[114,-14,77,0.5984009630046785],[114,-14,78,0.599307581782341],[114,-14,79,0.6005753623321652],[114,-13,64,0.5731674358248711],[114,-13,65,0.5747537333518267],[114,-13,66,0.5761381294578314],[114,-13,67,0.5773062389343977],[114,-13,68,0.5782225653529167],[114,-13,69,0.5792153459042311],[114,-13,70,0.5802934169769287],[114,-13,71,0.5816208254545927],[114,-13,72,0.5834894208237529],[114,-13,73,0.5857324888929725],[114,-13,74,0.5878343535587192],[114,-13,75,0.5892015211284161],[114,-13,76,0.5899752089753747],[114,-13,77,0.5905884630046785],[114,-13,78,0.591495081782341],[114,-13,79,0.5927628623321652],[114,-12,64,0.5653549358248711],[114,-12,65,0.5669412333518267],[114,-12,66,0.5683256294578314],[114,-12,67,0.5694937389343977],[114,-12,68,0.5704100653529167],[114,-12,69,0.5714028459042311],[114,-12,70,0.5724809169769287],[114,-12,71,0.5738083254545927],[114,-12,72,0.5756769208237529],[114,-12,73,0.5779199888929725],[114,-12,74,0.5800218535587192],[114,-12,75,0.5813890211284161],[114,-12,76,0.5821627089753747],[114,-12,77,0.5827759630046785],[114,-12,78,0.583682581782341],[114,-12,79,0.5849503623321652],[114,-11,64,0.5575424358248711],[114,-11,65,0.5591287333518267],[114,-11,66,0.5605131294578314],[114,-11,67,0.5616812389343977],[114,-11,68,0.5625975653529167],[114,-11,69,0.5635903459042311],[114,-11,70,0.5646684169769287],[114,-11,71,0.5659958254545927],[114,-11,72,0.5678644208237529],[114,-11,73,0.5701074888929725],[114,-11,74,0.5722093535587192],[114,-11,75,0.5735765211284161],[114,-11,76,0.5743502089753747],[114,-11,77,0.5749634630046785],[114,-11,78,0.575870081782341],[114,-11,79,0.5771378623321652],[114,-10,64,0.5497299358248711],[114,-10,65,0.5513162333518267],[114,-10,66,0.5527006294578314],[114,-10,67,0.5538687389343977],[114,-10,68,0.5547850653529167],[114,-10,69,0.5557778459042311],[114,-10,70,0.5568559169769287],[114,-10,71,0.5581833254545927],[114,-10,72,0.5600519208237529],[114,-10,73,0.5622949888929725],[114,-10,74,0.5643968535587192],[114,-10,75,0.5657640211284161],[114,-10,76,0.5665377089753747],[114,-10,77,0.5671509630046785],[114,-10,78,0.568057581782341],[114,-10,79,0.5693253623321652],[114,-9,64,0.5419174358248711],[114,-9,65,0.5435037333518267],[114,-9,66,0.5448881294578314],[114,-9,67,0.5460562389343977],[114,-9,68,0.5469725653529167],[114,-9,69,0.5479653459042311],[114,-9,70,0.5490434169769287],[114,-9,71,0.5503708254545927],[114,-9,72,0.5522394208237529],[114,-9,73,0.5544824888929725],[114,-9,74,0.5565843535587192],[114,-9,75,0.5579515211284161],[114,-9,76,0.5587252089753747],[114,-9,77,0.5593384630046785],[114,-9,78,0.560245081782341],[114,-9,79,0.5615128623321652],[114,-8,64,0.5341049358248711],[114,-8,65,0.5356912333518267],[114,-8,66,0.5370756294578314],[114,-8,67,0.5382437389343977],[114,-8,68,0.5391600653529167],[114,-8,69,0.5401528459042311],[114,-8,70,0.5412309169769287],[114,-8,71,0.5425583254545927],[114,-8,72,0.5444269208237529],[114,-8,73,0.5466699888929725],[114,-8,74,0.5487718535587192],[114,-8,75,0.5501390211284161],[114,-8,76,0.5509127089753747],[114,-8,77,0.5515259630046785],[114,-8,78,0.552432581782341],[114,-8,79,0.5537003623321652],[114,-7,64,0.5262924358248711],[114,-7,65,0.5278787333518267],[114,-7,66,0.5292631294578314],[114,-7,67,0.5304312389343977],[114,-7,68,0.5313475653529167],[114,-7,69,0.5323403459042311],[114,-7,70,0.5334184169769287],[114,-7,71,0.5347458254545927],[114,-7,72,0.5366144208237529],[114,-7,73,0.5388574888929725],[114,-7,74,0.5409593535587192],[114,-7,75,0.5423265211284161],[114,-7,76,0.5431002089753747],[114,-7,77,0.5437134630046785],[114,-7,78,0.544620081782341],[114,-7,79,0.5458878623321652],[114,-6,64,0.5184799358248711],[114,-6,65,0.5200662333518267],[114,-6,66,0.5214506294578314],[114,-6,67,0.5226187389343977],[114,-6,68,0.5235350653529167],[114,-6,69,0.5245278459042311],[114,-6,70,0.5256059169769287],[114,-6,71,0.5269333254545927],[114,-6,72,0.5288019208237529],[114,-6,73,0.5310449888929725],[114,-6,74,0.5331468535587192],[114,-6,75,0.5345140211284161],[114,-6,76,0.5352877089753747],[114,-6,77,0.5359009630046785],[114,-6,78,0.536807581782341],[114,-6,79,0.5380753623321652],[114,-5,64,0.5106674358248711],[114,-5,65,0.5122537333518267],[114,-5,66,0.5136381294578314],[114,-5,67,0.5148062389343977],[114,-5,68,0.5157225653529167],[114,-5,69,0.5167153459042311],[114,-5,70,0.5177934169769287],[114,-5,71,0.5191208254545927],[114,-5,72,0.5209894208237529],[114,-5,73,0.5232324888929725],[114,-5,74,0.5253343535587192],[114,-5,75,0.5267015211284161],[114,-5,76,0.5274752089753747],[114,-5,77,0.5280884630046785],[114,-5,78,0.528995081782341],[114,-5,79,0.5302628623321652],[114,-4,64,0.5028549358248711],[114,-4,65,0.5044412333518267],[114,-4,66,0.5058256294578314],[114,-4,67,0.5069937389343977],[114,-4,68,0.5079100653529167],[114,-4,69,0.5089028459042311],[114,-4,70,0.5099809169769287],[114,-4,71,0.5113083254545927],[114,-4,72,0.5131769208237529],[114,-4,73,0.5154199888929725],[114,-4,74,0.5175218535587192],[114,-4,75,0.5188890211284161],[114,-4,76,0.5196627089753747],[114,-4,77,0.5202759630046785],[114,-4,78,0.521182581782341],[114,-4,79,0.5224503623321652],[114,-3,64,0.49504243582487106],[114,-3,65,0.49662873335182667],[114,-3,66,0.4980131294578314],[114,-3,67,0.4991812389343977],[114,-3,68,0.5000975653529167],[114,-3,69,0.5010903459042311],[114,-3,70,0.5021684169769287],[114,-3,71,0.5034958254545927],[114,-3,72,0.5053644208237529],[114,-3,73,0.5076074888929725],[114,-3,74,0.5097093535587192],[114,-3,75,0.5110765211284161],[114,-3,76,0.5118502089753747],[114,-3,77,0.5124634630046785],[114,-3,78,0.513370081782341],[114,-3,79,0.5146378623321652],[114,-2,64,0.48722993582487106],[114,-2,65,0.48881623335182667],[114,-2,66,0.4902006294578314],[114,-2,67,0.4913687389343977],[114,-2,68,0.4922850653529167],[114,-2,69,0.49327784590423107],[114,-2,70,0.4943559169769287],[114,-2,71,0.4956833254545927],[114,-2,72,0.4975519208237529],[114,-2,73,0.49979498889297247],[114,-2,74,0.5018968535587192],[114,-2,75,0.5032640211284161],[114,-2,76,0.5040377089753747],[114,-2,77,0.5046509630046785],[114,-2,78,0.505557581782341],[114,-2,79,0.5068253623321652],[114,-1,64,0.47941743582487106],[114,-1,65,0.48100373335182667],[114,-1,66,0.4823881294578314],[114,-1,67,0.4835562389343977],[114,-1,68,0.4844725653529167],[114,-1,69,0.48546534590423107],[114,-1,70,0.4865434169769287],[114,-1,71,0.4878708254545927],[114,-1,72,0.4897394208237529],[114,-1,73,0.49198248889297247],[114,-1,74,0.49408435355871916],[114,-1,75,0.49545152112841606],[114,-1,76,0.4962252089753747],[114,-1,77,0.4968384630046785],[114,-1,78,0.497745081782341],[114,-1,79,0.49901286233216524],[114,0,64,0.47160493582487106],[114,0,65,0.47319123335182667],[114,0,66,0.4745756294578314],[114,0,67,0.4757437389343977],[114,0,68,0.4766600653529167],[114,0,69,0.47765284590423107],[114,0,70,0.4787309169769287],[114,0,71,0.4800583254545927],[114,0,72,0.4819269208237529],[114,0,73,0.48416998889297247],[114,0,74,0.48627185355871916],[114,0,75,0.48763902112841606],[114,0,76,0.4884127089753747],[114,0,77,0.4890259630046785],[114,0,78,0.489932581782341],[114,0,79,0.49120036233216524],[114,1,64,0.46379243582487106],[114,1,65,0.46537873335182667],[114,1,66,0.4667631294578314],[114,1,67,0.4679312389343977],[114,1,68,0.4688475653529167],[114,1,69,0.46984034590423107],[114,1,70,0.4709184169769287],[114,1,71,0.4722458254545927],[114,1,72,0.4741144208237529],[114,1,73,0.47635748889297247],[114,1,74,0.47845935355871916],[114,1,75,0.47982652112841606],[114,1,76,0.4806002089753747],[114,1,77,0.4812134630046785],[114,1,78,0.482120081782341],[114,1,79,0.48338786233216524],[114,2,64,0.45597993582487106],[114,2,65,0.45756623335182667],[114,2,66,0.4589506294578314],[114,2,67,0.4601187389343977],[114,2,68,0.4610350653529167],[114,2,69,0.46202784590423107],[114,2,70,0.4631059169769287],[114,2,71,0.4644333254545927],[114,2,72,0.4663019208237529],[114,2,73,0.46854498889297247],[114,2,74,0.47064685355871916],[114,2,75,0.47201402112841606],[114,2,76,0.4727877089753747],[114,2,77,0.4734009630046785],[114,2,78,0.474307581782341],[114,2,79,0.47557536233216524],[114,3,64,0.44816743582487106],[114,3,65,0.44975373335182667],[114,3,66,0.4511381294578314],[114,3,67,0.4523062389343977],[114,3,68,0.4532225653529167],[114,3,69,0.45421534590423107],[114,3,70,0.4552934169769287],[114,3,71,0.4566208254545927],[114,3,72,0.4584894208237529],[114,3,73,0.46073248889297247],[114,3,74,0.46283435355871916],[114,3,75,0.46420152112841606],[114,3,76,0.4649752089753747],[114,3,77,0.4655884630046785],[114,3,78,0.466495081782341],[114,3,79,0.46776286233216524],[114,4,64,0.44035493582487106],[114,4,65,0.44194123335182667],[114,4,66,0.4433256294578314],[114,4,67,0.4444937389343977],[114,4,68,0.4454100653529167],[114,4,69,0.44640284590423107],[114,4,70,0.4474809169769287],[114,4,71,0.4488083254545927],[114,4,72,0.4506769208237529],[114,4,73,0.45291998889297247],[114,4,74,0.45502185355871916],[114,4,75,0.45638902112841606],[114,4,76,0.4571627089753747],[114,4,77,0.4577759630046785],[114,4,78,0.458682581782341],[114,4,79,0.45995036233216524],[114,5,64,0.43254243582487106],[114,5,65,0.43412873335182667],[114,5,66,0.4355131294578314],[114,5,67,0.4366812389343977],[114,5,68,0.4375975653529167],[114,5,69,0.43859034590423107],[114,5,70,0.4396684169769287],[114,5,71,0.4409958254545927],[114,5,72,0.4428644208237529],[114,5,73,0.44510748889297247],[114,5,74,0.44720935355871916],[114,5,75,0.44857652112841606],[114,5,76,0.4493502089753747],[114,5,77,0.4499634630046785],[114,5,78,0.450870081782341],[114,5,79,0.45213786233216524],[114,6,64,0.42472993582487106],[114,6,65,0.42631623335182667],[114,6,66,0.4277006294578314],[114,6,67,0.4288687389343977],[114,6,68,0.4297850653529167],[114,6,69,0.43077784590423107],[114,6,70,0.4318559169769287],[114,6,71,0.4331833254545927],[114,6,72,0.4350519208237529],[114,6,73,0.43729498889297247],[114,6,74,0.43939685355871916],[114,6,75,0.44076402112841606],[114,6,76,0.4415377089753747],[114,6,77,0.4421509630046785],[114,6,78,0.443057581782341],[114,6,79,0.44432536233216524],[114,7,64,0.41691743582487106],[114,7,65,0.41850373335182667],[114,7,66,0.4198881294578314],[114,7,67,0.4210562389343977],[114,7,68,0.4219725653529167],[114,7,69,0.42296534590423107],[114,7,70,0.4240434169769287],[114,7,71,0.4253708254545927],[114,7,72,0.4272394208237529],[114,7,73,0.42948248889297247],[114,7,74,0.43158435355871916],[114,7,75,0.43295152112841606],[114,7,76,0.4337252089753747],[114,7,77,0.4343384630046785],[114,7,78,0.435245081782341],[114,7,79,0.43651286233216524],[114,8,64,0.40910493582487106],[114,8,65,0.41069123335182667],[114,8,66,0.4120756294578314],[114,8,67,0.4132437389343977],[114,8,68,0.4141600653529167],[114,8,69,0.41515284590423107],[114,8,70,0.4162309169769287],[114,8,71,0.4175583254545927],[114,8,72,0.4194269208237529],[114,8,73,0.42166998889297247],[114,8,74,0.42377185355871916],[114,8,75,0.42513902112841606],[114,8,76,0.4259127089753747],[114,8,77,0.4265259630046785],[114,8,78,0.427432581782341],[114,8,79,0.42870036233216524],[114,9,64,0.40129243582487106],[114,9,65,0.40287873335182667],[114,9,66,0.4042631294578314],[114,9,67,0.4054312389343977],[114,9,68,0.4063475653529167],[114,9,69,0.40734034590423107],[114,9,70,0.4084184169769287],[114,9,71,0.4097458254545927],[114,9,72,0.4116144208237529],[114,9,73,0.41385748889297247],[114,9,74,0.41595935355871916],[114,9,75,0.41732652112841606],[114,9,76,0.4181002089753747],[114,9,77,0.4187134630046785],[114,9,78,0.419620081782341],[114,9,79,0.42088786233216524],[114,10,64,0.39347993582487106],[114,10,65,0.39506623335182667],[114,10,66,0.3964506294578314],[114,10,67,0.3976187389343977],[114,10,68,0.3985350653529167],[114,10,69,0.39952784590423107],[114,10,70,0.4006059169769287],[114,10,71,0.4019333254545927],[114,10,72,0.4038019208237529],[114,10,73,0.40604498889297247],[114,10,74,0.40814685355871916],[114,10,75,0.40951402112841606],[114,10,76,0.4102877089753747],[114,10,77,0.4109009630046785],[114,10,78,0.411807581782341],[114,10,79,0.41307536233216524],[114,11,64,0.38566743582487106],[114,11,65,0.38725373335182667],[114,11,66,0.3886381294578314],[114,11,67,0.3898062389343977],[114,11,68,0.3907225653529167],[114,11,69,0.39171534590423107],[114,11,70,0.3927934169769287],[114,11,71,0.3941208254545927],[114,11,72,0.3959894208237529],[114,11,73,0.39823248889297247],[114,11,74,0.40033435355871916],[114,11,75,0.40170152112841606],[114,11,76,0.4024752089753747],[114,11,77,0.4030884630046785],[114,11,78,0.403995081782341],[114,11,79,0.40526286233216524],[114,12,64,0.37785493582487106],[114,12,65,0.37944123335182667],[114,12,66,0.3808256294578314],[114,12,67,0.3819937389343977],[114,12,68,0.3829100653529167],[114,12,69,0.38390284590423107],[114,12,70,0.3849809169769287],[114,12,71,0.3863083254545927],[114,12,72,0.3881769208237529],[114,12,73,0.39041998889297247],[114,12,74,0.39252185355871916],[114,12,75,0.39388902112841606],[114,12,76,0.3946627089753747],[114,12,77,0.3952759630046785],[114,12,78,0.396182581782341],[114,12,79,0.39745036233216524],[114,13,64,0.37004243582487106],[114,13,65,0.37162873335182667],[114,13,66,0.3730131294578314],[114,13,67,0.3741812389343977],[114,13,68,0.3750975653529167],[114,13,69,0.37609034590423107],[114,13,70,0.3771684169769287],[114,13,71,0.3784958254545927],[114,13,72,0.3803644208237529],[114,13,73,0.38260748889297247],[114,13,74,0.38470935355871916],[114,13,75,0.38607652112841606],[114,13,76,0.3868502089753747],[114,13,77,0.3874634630046785],[114,13,78,0.388370081782341],[114,13,79,0.38963786233216524],[114,14,64,0.36222993582487106],[114,14,65,0.36381623335182667],[114,14,66,0.3652006294578314],[114,14,67,0.3663687389343977],[114,14,68,0.3672850653529167],[114,14,69,0.36827784590423107],[114,14,70,0.3693559169769287],[114,14,71,0.3706833254545927],[114,14,72,0.3725519208237529],[114,14,73,0.37479498889297247],[114,14,74,0.37689685355871916],[114,14,75,0.37826402112841606],[114,14,76,0.3790377089753747],[114,14,77,0.3796509630046785],[114,14,78,0.380557581782341],[114,14,79,0.38182536233216524],[114,15,64,0.35441743582487106],[114,15,65,0.35600373335182667],[114,15,66,0.3573881294578314],[114,15,67,0.3585562389343977],[114,15,68,0.3594725653529167],[114,15,69,0.36046534590423107],[114,15,70,0.3615434169769287],[114,15,71,0.3628708254545927],[114,15,72,0.3647394208237529],[114,15,73,0.36698248889297247],[114,15,74,0.36908435355871916],[114,15,75,0.37045152112841606],[114,15,76,0.3712252089753747],[114,15,77,0.3718384630046785],[114,15,78,0.372745081782341],[114,15,79,0.37401286233216524],[114,16,64,0.34660493582487106],[114,16,65,0.34819123335182667],[114,16,66,0.3495756294578314],[114,16,67,0.3507437389343977],[114,16,68,0.3516600653529167],[114,16,69,0.35265284590423107],[114,16,70,0.3537309169769287],[114,16,71,0.3550583254545927],[114,16,72,0.3569269208237529],[114,16,73,0.35916998889297247],[114,16,74,0.36127185355871916],[114,16,75,0.36263902112841606],[114,16,76,0.3634127089753747],[114,16,77,0.3640259630046785],[114,16,78,0.364932581782341],[114,16,79,0.36620036233216524],[114,17,64,0.33879243582487106],[114,17,65,0.34037873335182667],[114,17,66,0.3417631294578314],[114,17,67,0.3429312389343977],[114,17,68,0.3438475653529167],[114,17,69,0.34484034590423107],[114,17,70,0.3459184169769287],[114,17,71,0.3472458254545927],[114,17,72,0.3491144208237529],[114,17,73,0.35135748889297247],[114,17,74,0.35345935355871916],[114,17,75,0.35482652112841606],[114,17,76,0.3556002089753747],[114,17,77,0.3562134630046785],[114,17,78,0.357120081782341],[114,17,79,0.35838786233216524],[114,18,64,0.33097993582487106],[114,18,65,0.33256623335182667],[114,18,66,0.3339506294578314],[114,18,67,0.3351187389343977],[114,18,68,0.3360350653529167],[114,18,69,0.33702784590423107],[114,18,70,0.3381059169769287],[114,18,71,0.3394333254545927],[114,18,72,0.3413019208237529],[114,18,73,0.34354498889297247],[114,18,74,0.34564685355871916],[114,18,75,0.34701402112841606],[114,18,76,0.3477877089753747],[114,18,77,0.3484009630046785],[114,18,78,0.349307581782341],[114,18,79,0.35057536233216524],[114,19,64,0.32316743582487106],[114,19,65,0.32475373335182667],[114,19,66,0.3261381294578314],[114,19,67,0.3273062389343977],[114,19,68,0.3282225653529167],[114,19,69,0.32921534590423107],[114,19,70,0.3302934169769287],[114,19,71,0.3316208254545927],[114,19,72,0.3334894208237529],[114,19,73,0.33573248889297247],[114,19,74,0.33783435355871916],[114,19,75,0.33920152112841606],[114,19,76,0.3399752089753747],[114,19,77,0.3405884630046785],[114,19,78,0.341495081782341],[114,19,79,0.34276286233216524],[114,20,64,0.31535493582487106],[114,20,65,0.31694123335182667],[114,20,66,0.3183256294578314],[114,20,67,0.3194937389343977],[114,20,68,0.3204100653529167],[114,20,69,0.32140284590423107],[114,20,70,0.3224809169769287],[114,20,71,0.3238083254545927],[114,20,72,0.3256769208237529],[114,20,73,0.32791998889297247],[114,20,74,0.33002185355871916],[114,20,75,0.33138902112841606],[114,20,76,0.3321627089753747],[114,20,77,0.3327759630046785],[114,20,78,0.333682581782341],[114,20,79,0.33495036233216524],[114,21,64,0.30754243582487106],[114,21,65,0.30912873335182667],[114,21,66,0.3105131294578314],[114,21,67,0.3116812389343977],[114,21,68,0.3125975653529167],[114,21,69,0.31359034590423107],[114,21,70,0.3146684169769287],[114,21,71,0.3159958254545927],[114,21,72,0.3178644208237529],[114,21,73,0.32010748889297247],[114,21,74,0.32220935355871916],[114,21,75,0.32357652112841606],[114,21,76,0.3243502089753747],[114,21,77,0.3249634630046785],[114,21,78,0.325870081782341],[114,21,79,0.32713786233216524],[114,22,64,0.29972993582487106],[114,22,65,0.30131623335182667],[114,22,66,0.3027006294578314],[114,22,67,0.3038687389343977],[114,22,68,0.3047850653529167],[114,22,69,0.30577784590423107],[114,22,70,0.3068559169769287],[114,22,71,0.3081833254545927],[114,22,72,0.3100519208237529],[114,22,73,0.31229498889297247],[114,22,74,0.31439685355871916],[114,22,75,0.31576402112841606],[114,22,76,0.3165377089753747],[114,22,77,0.3171509630046785],[114,22,78,0.318057581782341],[114,22,79,0.31932536233216524],[114,23,64,0.29191743582487106],[114,23,65,0.29350373335182667],[114,23,66,0.2948881294578314],[114,23,67,0.2960562389343977],[114,23,68,0.2969725653529167],[114,23,69,0.29796534590423107],[114,23,70,0.2990434169769287],[114,23,71,0.3003708254545927],[114,23,72,0.3022394208237529],[114,23,73,0.30448248889297247],[114,23,74,0.30658435355871916],[114,23,75,0.30795152112841606],[114,23,76,0.3087252089753747],[114,23,77,0.3093384630046785],[114,23,78,0.310245081782341],[114,23,79,0.31151286233216524],[114,24,64,0.28410493582487106],[114,24,65,0.28569123335182667],[114,24,66,0.2870756294578314],[114,24,67,0.2882437389343977],[114,24,68,0.2891600653529167],[114,24,69,0.29015284590423107],[114,24,70,0.2912309169769287],[114,24,71,0.2925583254545927],[114,24,72,0.2944269208237529],[114,24,73,0.29666998889297247],[114,24,74,0.29877185355871916],[114,24,75,0.30013902112841606],[114,24,76,0.3009127089753747],[114,24,77,0.3015259630046785],[114,24,78,0.302432581782341],[114,24,79,0.30370036233216524],[114,25,64,0.27629243582487106],[114,25,65,0.27787873335182667],[114,25,66,0.2792631294578314],[114,25,67,0.2804312389343977],[114,25,68,0.2813475653529167],[114,25,69,0.28234034590423107],[114,25,70,0.2834184169769287],[114,25,71,0.2847458254545927],[114,25,72,0.2866144208237529],[114,25,73,0.28885748889297247],[114,25,74,0.29095935355871916],[114,25,75,0.29232652112841606],[114,25,76,0.2931002089753747],[114,25,77,0.2937134630046785],[114,25,78,0.294620081782341],[114,25,79,0.29588786233216524],[114,26,64,0.26847993582487106],[114,26,65,0.27006623335182667],[114,26,66,0.2714506294578314],[114,26,67,0.2726187389343977],[114,26,68,0.2735350653529167],[114,26,69,0.27452784590423107],[114,26,70,0.2756059169769287],[114,26,71,0.2769333254545927],[114,26,72,0.2788019208237529],[114,26,73,0.28104498889297247],[114,26,74,0.28314685355871916],[114,26,75,0.28451402112841606],[114,26,76,0.2852877089753747],[114,26,77,0.2859009630046785],[114,26,78,0.286807581782341],[114,26,79,0.28807536233216524],[114,27,64,0.26066743582487106],[114,27,65,0.26225373335182667],[114,27,66,0.2636381294578314],[114,27,67,0.2648062389343977],[114,27,68,0.2657225653529167],[114,27,69,0.26671534590423107],[114,27,70,0.2677934169769287],[114,27,71,0.2691208254545927],[114,27,72,0.2709894208237529],[114,27,73,0.27323248889297247],[114,27,74,0.27533435355871916],[114,27,75,0.27670152112841606],[114,27,76,0.2774752089753747],[114,27,77,0.2780884630046785],[114,27,78,0.278995081782341],[114,27,79,0.28026286233216524],[114,28,64,0.25285493582487106],[114,28,65,0.25444123335182667],[114,28,66,0.2558256294578314],[114,28,67,0.2569937389343977],[114,28,68,0.2579100653529167],[114,28,69,0.25890284590423107],[114,28,70,0.2599809169769287],[114,28,71,0.2613083254545927],[114,28,72,0.2631769208237529],[114,28,73,0.26541998889297247],[114,28,74,0.26752185355871916],[114,28,75,0.26888902112841606],[114,28,76,0.2696627089753747],[114,28,77,0.2702759630046785],[114,28,78,0.271182581782341],[114,28,79,0.27245036233216524],[114,29,64,0.24504243582487106],[114,29,65,0.24662873335182667],[114,29,66,0.24801312945783138],[114,29,67,0.2491812389343977],[114,29,68,0.2500975653529167],[114,29,69,0.25109034590423107],[114,29,70,0.2521684169769287],[114,29,71,0.2534958254545927],[114,29,72,0.2553644208237529],[114,29,73,0.25760748889297247],[114,29,74,0.25970935355871916],[114,29,75,0.26107652112841606],[114,29,76,0.2618502089753747],[114,29,77,0.2624634630046785],[114,29,78,0.263370081782341],[114,29,79,0.26463786233216524],[114,30,64,0.23722993582487106],[114,30,65,0.23881623335182667],[114,30,66,0.24020062945783138],[114,30,67,0.2413687389343977],[114,30,68,0.24228506535291672],[114,30,69,0.24327784590423107],[114,30,70,0.2443559169769287],[114,30,71,0.2456833254545927],[114,30,72,0.24755192082375288],[114,30,73,0.24979498889297247],[114,30,74,0.25189685355871916],[114,30,75,0.25326402112841606],[114,30,76,0.2540377089753747],[114,30,77,0.2546509630046785],[114,30,78,0.255557581782341],[114,30,79,0.25682536233216524],[114,31,64,0.22941743582487106],[114,31,65,0.23100373335182667],[114,31,66,0.23238812945783138],[114,31,67,0.2335562389343977],[114,31,68,0.23447256535291672],[114,31,69,0.23546534590423107],[114,31,70,0.2365434169769287],[114,31,71,0.2378708254545927],[114,31,72,0.23973942082375288],[114,31,73,0.24198248889297247],[114,31,74,0.24408435355871916],[114,31,75,0.24545152112841606],[114,31,76,0.2462252089753747],[114,31,77,0.2468384630046785],[114,31,78,0.247745081782341],[114,31,79,0.24901286233216524],[114,32,64,0.22160493582487106],[114,32,65,0.22319123335182667],[114,32,66,0.22457562945783138],[114,32,67,0.2257437389343977],[114,32,68,0.22666006535291672],[114,32,69,0.22765284590423107],[114,32,70,0.2287309169769287],[114,32,71,0.2300583254545927],[114,32,72,0.23192692082375288],[114,32,73,0.23416998889297247],[114,32,74,0.23627185355871916],[114,32,75,0.23763902112841606],[114,32,76,0.2384127089753747],[114,32,77,0.2390259630046785],[114,32,78,0.239932581782341],[114,32,79,0.24120036233216524],[114,33,64,0.21379243582487106],[114,33,65,0.21537873335182667],[114,33,66,0.21676312945783138],[114,33,67,0.2179312389343977],[114,33,68,0.21884756535291672],[114,33,69,0.21984034590423107],[114,33,70,0.2209184169769287],[114,33,71,0.2222458254545927],[114,33,72,0.22411442082375288],[114,33,73,0.22635748889297247],[114,33,74,0.22845935355871916],[114,33,75,0.22982652112841606],[114,33,76,0.2306002089753747],[114,33,77,0.2312134630046785],[114,33,78,0.232120081782341],[114,33,79,0.23338786233216524],[114,34,64,0.20597993582487106],[114,34,65,0.20756623335182667],[114,34,66,0.20895062945783138],[114,34,67,0.2101187389343977],[114,34,68,0.21103506535291672],[114,34,69,0.21202784590423107],[114,34,70,0.2131059169769287],[114,34,71,0.2144333254545927],[114,34,72,0.21630192082375288],[114,34,73,0.21854498889297247],[114,34,74,0.22064685355871916],[114,34,75,0.22201402112841606],[114,34,76,0.2227877089753747],[114,34,77,0.2234009630046785],[114,34,78,0.224307581782341],[114,34,79,0.22557536233216524],[114,35,64,0.19816743582487106],[114,35,65,0.19975373335182667],[114,35,66,0.20113812945783138],[114,35,67,0.2023062389343977],[114,35,68,0.20322256535291672],[114,35,69,0.20421534590423107],[114,35,70,0.2052934169769287],[114,35,71,0.2066208254545927],[114,35,72,0.20848942082375288],[114,35,73,0.21073248889297247],[114,35,74,0.21283435355871916],[114,35,75,0.21420152112841606],[114,35,76,0.2149752089753747],[114,35,77,0.2155884630046785],[114,35,78,0.216495081782341],[114,35,79,0.21776286233216524],[114,36,64,0.19035493582487106],[114,36,65,0.19194123335182667],[114,36,66,0.19332562945783138],[114,36,67,0.1944937389343977],[114,36,68,0.19541006535291672],[114,36,69,0.19640284590423107],[114,36,70,0.1974809169769287],[114,36,71,0.1988083254545927],[114,36,72,0.20067692082375288],[114,36,73,0.20291998889297247],[114,36,74,0.20502185355871916],[114,36,75,0.20638902112841606],[114,36,76,0.2071627089753747],[114,36,77,0.2077759630046785],[114,36,78,0.208682581782341],[114,36,79,0.20995036233216524],[114,37,64,0.18254243582487106],[114,37,65,0.18412873335182667],[114,37,66,0.18551312945783138],[114,37,67,0.1866812389343977],[114,37,68,0.18759756535291672],[114,37,69,0.18859034590423107],[114,37,70,0.1896684169769287],[114,37,71,0.1909958254545927],[114,37,72,0.19286442082375288],[114,37,73,0.19510748889297247],[114,37,74,0.19720935355871916],[114,37,75,0.19857652112841606],[114,37,76,0.1993502089753747],[114,37,77,0.1999634630046785],[114,37,78,0.200870081782341],[114,37,79,0.20213786233216524],[114,38,64,0.17472993582487106],[114,38,65,0.17631623335182667],[114,38,66,0.17770062945783138],[114,38,67,0.1788687389343977],[114,38,68,0.17978506535291672],[114,38,69,0.18077784590423107],[114,38,70,0.1818559169769287],[114,38,71,0.1831833254545927],[114,38,72,0.18505192082375288],[114,38,73,0.18729498889297247],[114,38,74,0.18939685355871916],[114,38,75,0.19076402112841606],[114,38,76,0.1915377089753747],[114,38,77,0.1921509630046785],[114,38,78,0.193057581782341],[114,38,79,0.19432536233216524],[114,39,64,0.16691743582487106],[114,39,65,0.16850373335182667],[114,39,66,0.16988812945783138],[114,39,67,0.1710562389343977],[114,39,68,0.17197256535291672],[114,39,69,0.17296534590423107],[114,39,70,0.1740434169769287],[114,39,71,0.1753708254545927],[114,39,72,0.17723942082375288],[114,39,73,0.17948248889297247],[114,39,74,0.18158435355871916],[114,39,75,0.18295152112841606],[114,39,76,0.1837252089753747],[114,39,77,0.1843384630046785],[114,39,78,0.185245081782341],[114,39,79,0.18651286233216524],[114,40,64,0.15910493582487106],[114,40,65,0.16069123335182667],[114,40,66,0.16207562945783138],[114,40,67,0.1632437389343977],[114,40,68,0.16416006535291672],[114,40,69,0.16515284590423107],[114,40,70,0.1662309169769287],[114,40,71,0.1675583254545927],[114,40,72,0.16942692082375288],[114,40,73,0.17166998889297247],[114,40,74,0.17377185355871916],[114,40,75,0.17513902112841606],[114,40,76,0.1759127089753747],[114,40,77,0.1765259630046785],[114,40,78,0.177432581782341],[114,40,79,0.17870036233216524],[114,41,64,0.15129243582487106],[114,41,65,0.15287873335182667],[114,41,66,0.15426312945783138],[114,41,67,0.1554312389343977],[114,41,68,0.15634756535291672],[114,41,69,0.15734034590423107],[114,41,70,0.1584184169769287],[114,41,71,0.1597458254545927],[114,41,72,0.16161442082375288],[114,41,73,0.16385748889297247],[114,41,74,0.16595935355871916],[114,41,75,0.16732652112841606],[114,41,76,0.1681002089753747],[114,41,77,0.1687134630046785],[114,41,78,0.169620081782341],[114,41,79,0.17088786233216524],[114,42,64,0.14347993582487106],[114,42,65,0.14506623335182667],[114,42,66,0.14645062945783138],[114,42,67,0.1476187389343977],[114,42,68,0.14853506535291672],[114,42,69,0.14952784590423107],[114,42,70,0.1506059169769287],[114,42,71,0.1519333254545927],[114,42,72,0.15380192082375288],[114,42,73,0.15604498889297247],[114,42,74,0.15814685355871916],[114,42,75,0.15951402112841606],[114,42,76,0.1602877089753747],[114,42,77,0.1609009630046785],[114,42,78,0.161807581782341],[114,42,79,0.16307536233216524],[114,43,64,0.13566743582487106],[114,43,65,0.13725373335182667],[114,43,66,0.13863812945783138],[114,43,67,0.1398062389343977],[114,43,68,0.14072256535291672],[114,43,69,0.14171534590423107],[114,43,70,0.1427934169769287],[114,43,71,0.1441208254545927],[114,43,72,0.14598942082375288],[114,43,73,0.14823248889297247],[114,43,74,0.15033435355871916],[114,43,75,0.15170152112841606],[114,43,76,0.1524752089753747],[114,43,77,0.1530884630046785],[114,43,78,0.153995081782341],[114,43,79,0.15526286233216524],[114,44,64,0.12785493582487106],[114,44,65,0.12944123335182667],[114,44,66,0.13082562945783138],[114,44,67,0.1319937389343977],[114,44,68,0.13291006535291672],[114,44,69,0.13390284590423107],[114,44,70,0.1349809169769287],[114,44,71,0.1363083254545927],[114,44,72,0.13817692082375288],[114,44,73,0.14041998889297247],[114,44,74,0.14252185355871916],[114,44,75,0.14388902112841606],[114,44,76,0.1446627089753747],[114,44,77,0.1452759630046785],[114,44,78,0.146182581782341],[114,44,79,0.14745036233216524],[114,45,64,0.12004243582487106],[114,45,65,0.12162873335182667],[114,45,66,0.12301312945783138],[114,45,67,0.1241812389343977],[114,45,68,0.12509756535291672],[114,45,69,0.12609034590423107],[114,45,70,0.1271684169769287],[114,45,71,0.1284958254545927],[114,45,72,0.13036442082375288],[114,45,73,0.13260748889297247],[114,45,74,0.13470935355871916],[114,45,75,0.13607652112841606],[114,45,76,0.1368502089753747],[114,45,77,0.1374634630046785],[114,45,78,0.138370081782341],[114,45,79,0.13963786233216524],[114,46,64,0.11222993582487106],[114,46,65,0.11381623335182667],[114,46,66,0.11520062945783138],[114,46,67,0.1163687389343977],[114,46,68,0.11728506535291672],[114,46,69,0.11827784590423107],[114,46,70,0.11935591697692871],[114,46,71,0.1206833254545927],[114,46,72,0.12255192082375288],[114,46,73,0.12479498889297247],[114,46,74,0.12689685355871916],[114,46,75,0.12826402112841606],[114,46,76,0.1290377089753747],[114,46,77,0.1296509630046785],[114,46,78,0.130557581782341],[114,46,79,0.13182536233216524],[114,47,64,0.10441743582487106],[114,47,65,0.10600373335182667],[114,47,66,0.10738812945783138],[114,47,67,0.1085562389343977],[114,47,68,0.10947256535291672],[114,47,69,0.11046534590423107],[114,47,70,0.11154341697692871],[114,47,71,0.1128708254545927],[114,47,72,0.11473942082375288],[114,47,73,0.11698248889297247],[114,47,74,0.11908435355871916],[114,47,75,0.12045152112841606],[114,47,76,0.1212252089753747],[114,47,77,0.12183846300467849],[114,47,78,0.122745081782341],[114,47,79,0.12401286233216524],[114,48,64,0.09660493582487106],[114,48,65,0.09819123335182667],[114,48,66,0.09957562945783138],[114,48,67,0.1007437389343977],[114,48,68,0.10166006535291672],[114,48,69,0.10265284590423107],[114,48,70,0.10373091697692871],[114,48,71,0.1050583254545927],[114,48,72,0.10692692082375288],[114,48,73,0.10916998889297247],[114,48,74,0.11127185355871916],[114,48,75,0.11263902112841606],[114,48,76,0.1134127089753747],[114,48,77,0.11402596300467849],[114,48,78,0.114932581782341],[114,48,79,0.11620036233216524],[114,49,64,0.08879243582487106],[114,49,65,0.09037873335182667],[114,49,66,0.09176312945783138],[114,49,67,0.0929312389343977],[114,49,68,0.09384756535291672],[114,49,69,0.09484034590423107],[114,49,70,0.09591841697692871],[114,49,71,0.0972458254545927],[114,49,72,0.09911442082375288],[114,49,73,0.10135748889297247],[114,49,74,0.10345935355871916],[114,49,75,0.10482652112841606],[114,49,76,0.1056002089753747],[114,49,77,0.10621346300467849],[114,49,78,0.107120081782341],[114,49,79,0.10838786233216524],[114,50,64,0.08097993582487106],[114,50,65,0.08256623335182667],[114,50,66,0.08395062945783138],[114,50,67,0.0851187389343977],[114,50,68,0.08603506535291672],[114,50,69,0.08702784590423107],[114,50,70,0.08810591697692871],[114,50,71,0.0894333254545927],[114,50,72,0.09130192082375288],[114,50,73,0.09354498889297247],[114,50,74,0.09564685355871916],[114,50,75,0.09701402112841606],[114,50,76,0.0977877089753747],[114,50,77,0.09840096300467849],[114,50,78,0.099307581782341],[114,50,79,0.10057536233216524],[114,51,64,0.07316743582487106],[114,51,65,0.07475373335182667],[114,51,66,0.07613812945783138],[114,51,67,0.0773062389343977],[114,51,68,0.07822256535291672],[114,51,69,0.07921534590423107],[114,51,70,0.08029341697692871],[114,51,71,0.0816208254545927],[114,51,72,0.08348942082375288],[114,51,73,0.08573248889297247],[114,51,74,0.08783435355871916],[114,51,75,0.08920152112841606],[114,51,76,0.0899752089753747],[114,51,77,0.09058846300467849],[114,51,78,0.091495081782341],[114,51,79,0.09276286233216524],[114,52,64,0.06535493582487106],[114,52,65,0.06694123335182667],[114,52,66,0.06832562945783138],[114,52,67,0.0694937389343977],[114,52,68,0.07041006535291672],[114,52,69,0.07140284590423107],[114,52,70,0.07248091697692871],[114,52,71,0.0738083254545927],[114,52,72,0.07567692082375288],[114,52,73,0.07791998889297247],[114,52,74,0.08002185355871916],[114,52,75,0.08138902112841606],[114,52,76,0.0821627089753747],[114,52,77,0.08277596300467849],[114,52,78,0.083682581782341],[114,52,79,0.08495036233216524],[114,53,64,0.05754243582487106],[114,53,65,0.05912873335182667],[114,53,66,0.06051312945783138],[114,53,67,0.0616812389343977],[114,53,68,0.06259756535291672],[114,53,69,0.06359034590423107],[114,53,70,0.06466841697692871],[114,53,71,0.0659958254545927],[114,53,72,0.06786442082375288],[114,53,73,0.07010748889297247],[114,53,74,0.07220935355871916],[114,53,75,0.07357652112841606],[114,53,76,0.0743502089753747],[114,53,77,0.07496346300467849],[114,53,78,0.075870081782341],[114,53,79,0.07713786233216524],[114,54,64,0.04972993582487106],[114,54,65,0.05131623335182667],[114,54,66,0.05270062945783138],[114,54,67,0.0538687389343977],[114,54,68,0.05478506535291672],[114,54,69,0.05577784590423107],[114,54,70,0.05685591697692871],[114,54,71,0.058183325454592705],[114,54,72,0.06005192082375288],[114,54,73,0.06229498889297247],[114,54,74,0.06439685355871916],[114,54,75,0.06576402112841606],[114,54,76,0.0665377089753747],[114,54,77,0.06715096300467849],[114,54,78,0.068057581782341],[114,54,79,0.06932536233216524],[114,55,64,0.04191743582487106],[114,55,65,0.04350373335182667],[114,55,66,0.04488812945783138],[114,55,67,0.0460562389343977],[114,55,68,0.04697256535291672],[114,55,69,0.04796534590423107],[114,55,70,0.04904341697692871],[114,55,71,0.050370825454592705],[114,55,72,0.05223942082375288],[114,55,73,0.05448248889297247],[114,55,74,0.05658435355871916],[114,55,75,0.05795152112841606],[114,55,76,0.0587252089753747],[114,55,77,0.05933846300467849],[114,55,78,0.060245081782341],[114,55,79,0.06151286233216524],[114,56,64,0.03410493582487106],[114,56,65,0.03569123335182667],[114,56,66,0.03707562945783138],[114,56,67,0.0382437389343977],[114,56,68,0.03916006535291672],[114,56,69,0.04015284590423107],[114,56,70,0.04123091697692871],[114,56,71,0.042558325454592705],[114,56,72,0.04442692082375288],[114,56,73,0.04666998889297247],[114,56,74,0.04877185355871916],[114,56,75,0.05013902112841606],[114,56,76,0.0509127089753747],[114,56,77,0.05152596300467849],[114,56,78,0.052432581782341],[114,56,79,0.05370036233216524],[114,57,64,0.026292435824871063],[114,57,65,0.027878733351826668],[114,57,66,0.029263129457831383],[114,57,67,0.030431238934397697],[114,57,68,0.03134756535291672],[114,57,69,0.03234034590423107],[114,57,70,0.03341841697692871],[114,57,71,0.034745825454592705],[114,57,72,0.03661442082375288],[114,57,73,0.03885748889297247],[114,57,74,0.04095935355871916],[114,57,75,0.04232652112841606],[114,57,76,0.0431002089753747],[114,57,77,0.04371346300467849],[114,57,78,0.044620081782341],[114,57,79,0.04588786233216524],[114,58,64,0.018479935824871063],[114,58,65,0.020066233351826668],[114,58,66,0.021450629457831383],[114,58,67,0.022618738934397697],[114,58,68,0.023535065352916718],[114,58,69,0.02452784590423107],[114,58,70,0.02560591697692871],[114,58,71,0.026933325454592705],[114,58,72,0.02880192082375288],[114,58,73,0.03104498889297247],[114,58,74,0.03314685355871916],[114,58,75,0.03451402112841606],[114,58,76,0.0352877089753747],[114,58,77,0.03590096300467849],[114,58,78,0.036807581782341],[114,58,79,0.03807536233216524],[114,59,64,0.010667435824871063],[114,59,65,0.012253733351826668],[114,59,66,0.013638129457831383],[114,59,67,0.014806238934397697],[114,59,68,0.015722565352916718],[114,59,69,0.01671534590423107],[114,59,70,0.01779341697692871],[114,59,71,0.019120825454592705],[114,59,72,0.02098942082375288],[114,59,73,0.02323248889297247],[114,59,74,0.025334353558719158],[114,59,75,0.02670152112841606],[114,59,76,0.0274752089753747],[114,59,77,0.028088463004678488],[114,59,78,0.028995081782341003],[114,59,79,0.03026286233216524],[114,60,64,0.0028549358248710632],[114,60,65,0.004441233351826668],[114,60,66,0.005825629457831383],[114,60,67,0.0069937389343976974],[114,60,68,0.007910065352916718],[114,60,69,0.008902845904231071],[114,60,70,0.009980916976928711],[114,60,71,0.011308325454592705],[114,60,72,0.01317692082375288],[114,60,73,0.01541998889297247],[114,60,74,0.017521853558719158],[114,60,75,0.01888902112841606],[114,60,76,0.0196627089753747],[114,60,77,0.020275963004678488],[114,60,78,0.021182581782341003],[114,60,79,0.02245036233216524],[114,61,64,-0.004957564175128937],[114,61,65,-0.003371266648173332],[114,61,66,-0.0019868705421686172],[114,61,67,-8.187610656023026E-4],[114,61,68,9.756535291671753E-5],[114,61,69,0.0010903459042310715],[114,61,70,0.002168416976928711],[114,61,71,0.0034958254545927048],[114,61,72,0.00536442082375288],[114,61,73,0.007607488892972469],[114,61,74,0.009709353558719158],[114,61,75,0.011076521128416061],[114,61,76,0.011850208975374699],[114,61,77,0.012463463004678488],[114,61,78,0.013370081782341003],[114,61,79,0.014637862332165241],[114,62,64,-0.012770064175128937],[114,62,65,-0.011183766648173332],[114,62,66,-0.009799370542168617],[114,62,67,-0.008631261065602303],[114,62,68,-0.0077149346470832825],[114,62,69,-0.0067221540957689285],[114,62,70,-0.005644083023071289],[114,62,71,-0.004316674545407295],[114,62,72,-0.00244807917624712],[114,62,73,-2.0501110702753067E-4],[114,62,74,0.0018968535587191582],[114,62,75,0.0032640211284160614],[114,62,76,0.004037708975374699],[114,62,77,0.004650963004678488],[114,62,78,0.005557581782341003],[114,62,79,0.006825362332165241],[114,63,64,-0.020582564175128937],[114,63,65,-0.018996266648173332],[114,63,66,-0.017611870542168617],[114,63,67,-0.016443761065602303],[114,63,68,-0.015527434647083282],[114,63,69,-0.014534654095768929],[114,63,70,-0.013456583023071289],[114,63,71,-0.012129174545407295],[114,63,72,-0.01026057917624712],[114,63,73,-0.00801751110702753],[114,63,74,-0.005915646441280842],[114,63,75,-0.004548478871583939],[114,63,76,-0.0037747910246253014],[114,63,77,-0.0031615369953215122],[114,63,78,-0.0022549182176589966],[114,63,79,-9.871376678347588E-4],[114,64,64,-0.028395064175128937],[114,64,65,-0.026808766648173332],[114,64,66,-0.025424370542168617],[114,64,67,-0.024256261065602303],[114,64,68,-0.023339934647083282],[114,64,69,-0.02234715409576893],[114,64,70,-0.02126908302307129],[114,64,71,-0.019941674545407295],[114,64,72,-0.01807307917624712],[114,64,73,-0.01583001110702753],[114,64,74,-0.013728146441280842],[114,64,75,-0.012360978871583939],[114,64,76,-0.011587291024625301],[114,64,77,-0.010974036995321512],[114,64,78,-0.010067418217658997],[114,64,79,-0.008799637667834759],[114,65,64,-0.03620756417512894],[114,65,65,-0.03462126664817333],[114,65,66,-0.03323687054216862],[114,65,67,-0.0320687610656023],[114,65,68,-0.031152434647083282],[114,65,69,-0.03015965409576893],[114,65,70,-0.02908158302307129],[114,65,71,-0.027754174545407295],[114,65,72,-0.02588557917624712],[114,65,73,-0.02364251110702753],[114,65,74,-0.021540646441280842],[114,65,75,-0.02017347887158394],[114,65,76,-0.0193997910246253],[114,65,77,-0.018786536995321512],[114,65,78,-0.017879918217658997],[114,65,79,-0.01661213766783476],[114,66,64,-0.04402006417512894],[114,66,65,-0.04243376664817333],[114,66,66,-0.04104937054216862],[114,66,67,-0.0398812610656023],[114,66,68,-0.03896493464708328],[114,66,69,-0.03797215409576893],[114,66,70,-0.03689408302307129],[114,66,71,-0.035566674545407295],[114,66,72,-0.03369807917624712],[114,66,73,-0.03145501110702753],[114,66,74,-0.029353146441280842],[114,66,75,-0.02798597887158394],[114,66,76,-0.0272122910246253],[114,66,77,-0.026599036995321512],[114,66,78,-0.025692418217658997],[114,66,79,-0.02442463766783476],[114,67,64,-0.05183256417512894],[114,67,65,-0.05024626664817333],[114,67,66,-0.04886187054216862],[114,67,67,-0.0476937610656023],[114,67,68,-0.04677743464708328],[114,67,69,-0.04578465409576893],[114,67,70,-0.04470658302307129],[114,67,71,-0.043379174545407295],[114,67,72,-0.04151057917624712],[114,67,73,-0.03926751110702753],[114,67,74,-0.03716564644128084],[114,67,75,-0.03579847887158394],[114,67,76,-0.0350247910246253],[114,67,77,-0.03441153699532151],[114,67,78,-0.033504918217659],[114,67,79,-0.03223713766783476],[114,68,64,-0.05964506417512894],[114,68,65,-0.05805876664817333],[114,68,66,-0.05667437054216862],[114,68,67,-0.0555062610656023],[114,68,68,-0.05458993464708328],[114,68,69,-0.05359715409576893],[114,68,70,-0.05251908302307129],[114,68,71,-0.051191674545407295],[114,68,72,-0.04932307917624712],[114,68,73,-0.04708001110702753],[114,68,74,-0.04497814644128084],[114,68,75,-0.04361097887158394],[114,68,76,-0.0428372910246253],[114,68,77,-0.04222403699532151],[114,68,78,-0.041317418217659],[114,68,79,-0.04004963766783476],[114,69,64,-0.06745756417512894],[114,69,65,-0.06587126664817333],[114,69,66,-0.06448687054216862],[114,69,67,-0.0633187610656023],[114,69,68,-0.06240243464708328],[114,69,69,-0.06140965409576893],[114,69,70,-0.06033158302307129],[114,69,71,-0.059004174545407295],[114,69,72,-0.05713557917624712],[114,69,73,-0.05489251110702753],[114,69,74,-0.05279064644128084],[114,69,75,-0.05142347887158394],[114,69,76,-0.0506497910246253],[114,69,77,-0.05003653699532151],[114,69,78,-0.049129918217659],[114,69,79,-0.04786213766783476],[114,70,64,-0.07527006417512894],[114,70,65,-0.07368376664817333],[114,70,66,-0.07229937054216862],[114,70,67,-0.0711312610656023],[114,70,68,-0.07021493464708328],[114,70,69,-0.06922215409576893],[114,70,70,-0.06814408302307129],[114,70,71,-0.0668166745454073],[114,70,72,-0.06494807917624712],[114,70,73,-0.06270501110702753],[114,70,74,-0.06060314644128084],[114,70,75,-0.05923597887158394],[114,70,76,-0.0584622910246253],[114,70,77,-0.05784903699532151],[114,70,78,-0.056942418217659],[114,70,79,-0.05567463766783476],[114,71,64,-0.08308256417512894],[114,71,65,-0.08149626664817333],[114,71,66,-0.08011187054216862],[114,71,67,-0.0789437610656023],[114,71,68,-0.07802743464708328],[114,71,69,-0.07703465409576893],[114,71,70,-0.07595658302307129],[114,71,71,-0.0746291745454073],[114,71,72,-0.07276057917624712],[114,71,73,-0.07051751110702753],[114,71,74,-0.06841564644128084],[114,71,75,-0.06704847887158394],[114,71,76,-0.0662747910246253],[114,71,77,-0.06566153699532151],[114,71,78,-0.064754918217659],[114,71,79,-0.06348713766783476],[114,72,64,-0.09089506417512894],[114,72,65,-0.08930876664817333],[114,72,66,-0.08792437054216862],[114,72,67,-0.0867562610656023],[114,72,68,-0.08583993464708328],[114,72,69,-0.08484715409576893],[114,72,70,-0.08376908302307129],[114,72,71,-0.0824416745454073],[114,72,72,-0.08057307917624712],[114,72,73,-0.07833001110702753],[114,72,74,-0.07622814644128084],[114,72,75,-0.07486097887158394],[114,72,76,-0.0740872910246253],[114,72,77,-0.07347403699532151],[114,72,78,-0.072567418217659],[114,72,79,-0.07129963766783476],[114,73,64,-0.09870756417512894],[114,73,65,-0.09712126664817333],[114,73,66,-0.09573687054216862],[114,73,67,-0.0945687610656023],[114,73,68,-0.09365243464708328],[114,73,69,-0.09265965409576893],[114,73,70,-0.09158158302307129],[114,73,71,-0.0902541745454073],[114,73,72,-0.08838557917624712],[114,73,73,-0.08614251110702753],[114,73,74,-0.08404064644128084],[114,73,75,-0.08267347887158394],[114,73,76,-0.0818997910246253],[114,73,77,-0.08128653699532151],[114,73,78,-0.080379918217659],[114,73,79,-0.07911213766783476],[114,74,64,-0.10652006417512894],[114,74,65,-0.10493376664817333],[114,74,66,-0.10354937054216862],[114,74,67,-0.1023812610656023],[114,74,68,-0.10146493464708328],[114,74,69,-0.10047215409576893],[114,74,70,-0.09939408302307129],[114,74,71,-0.0980666745454073],[114,74,72,-0.09619807917624712],[114,74,73,-0.09395501110702753],[114,74,74,-0.09185314644128084],[114,74,75,-0.09048597887158394],[114,74,76,-0.0897122910246253],[114,74,77,-0.08909903699532151],[114,74,78,-0.088192418217659],[114,74,79,-0.08692463766783476],[114,75,64,-0.11433256417512894],[114,75,65,-0.11274626664817333],[114,75,66,-0.11136187054216862],[114,75,67,-0.1101937610656023],[114,75,68,-0.10927743464708328],[114,75,69,-0.10828465409576893],[114,75,70,-0.10720658302307129],[114,75,71,-0.1058791745454073],[114,75,72,-0.10401057917624712],[114,75,73,-0.10176751110702753],[114,75,74,-0.09966564644128084],[114,75,75,-0.09829847887158394],[114,75,76,-0.0975247910246253],[114,75,77,-0.09691153699532151],[114,75,78,-0.096004918217659],[114,75,79,-0.09473713766783476],[114,76,64,-0.12214506417512894],[114,76,65,-0.12055876664817333],[114,76,66,-0.11917437054216862],[114,76,67,-0.1180062610656023],[114,76,68,-0.11708993464708328],[114,76,69,-0.11609715409576893],[114,76,70,-0.11501908302307129],[114,76,71,-0.1136916745454073],[114,76,72,-0.11182307917624712],[114,76,73,-0.10958001110702753],[114,76,74,-0.10747814644128084],[114,76,75,-0.10611097887158394],[114,76,76,-0.1053372910246253],[114,76,77,-0.10472403699532151],[114,76,78,-0.103817418217659],[114,76,79,-0.10254963766783476],[114,77,64,-0.12995756417512894],[114,77,65,-0.12837126664817333],[114,77,66,-0.12698687054216862],[114,77,67,-0.1258187610656023],[114,77,68,-0.12490243464708328],[114,77,69,-0.12390965409576893],[114,77,70,-0.12283158302307129],[114,77,71,-0.1215041745454073],[114,77,72,-0.11963557917624712],[114,77,73,-0.11739251110702753],[114,77,74,-0.11529064644128084],[114,77,75,-0.11392347887158394],[114,77,76,-0.1131497910246253],[114,77,77,-0.11253653699532151],[114,77,78,-0.111629918217659],[114,77,79,-0.11036213766783476],[114,78,64,-0.13777006417512894],[114,78,65,-0.13618376664817333],[114,78,66,-0.13479937054216862],[114,78,67,-0.1336312610656023],[114,78,68,-0.13271493464708328],[114,78,69,-0.13172215409576893],[114,78,70,-0.1306440830230713],[114,78,71,-0.1293166745454073],[114,78,72,-0.12744807917624712],[114,78,73,-0.12520501110702753],[114,78,74,-0.12310314644128084],[114,78,75,-0.12173597887158394],[114,78,76,-0.1209622910246253],[114,78,77,-0.12034903699532151],[114,78,78,-0.119442418217659],[114,78,79,-0.11817463766783476],[114,79,64,-0.14558256417512894],[114,79,65,-0.14399626664817333],[114,79,66,-0.14261187054216862],[114,79,67,-0.1414437610656023],[114,79,68,-0.14052743464708328],[114,79,69,-0.13953465409576893],[114,79,70,-0.1384565830230713],[114,79,71,-0.1371291745454073],[114,79,72,-0.13526057917624712],[114,79,73,-0.13301751110702753],[114,79,74,-0.13091564644128084],[114,79,75,-0.12954847887158394],[114,79,76,-0.1287747910246253],[114,79,77,-0.1281615369953215],[114,79,78,-0.127254918217659],[114,79,79,-0.12598713766783476],[114,80,64,-0.15339506417512894],[114,80,65,-0.15180876664817333],[114,80,66,-0.15042437054216862],[114,80,67,-0.1492562610656023],[114,80,68,-0.14833993464708328],[114,80,69,-0.14734715409576893],[114,80,70,-0.1462690830230713],[114,80,71,-0.1449416745454073],[114,80,72,-0.14307307917624712],[114,80,73,-0.14083001110702753],[114,80,74,-0.13872814644128084],[114,80,75,-0.13736097887158394],[114,80,76,-0.1365872910246253],[114,80,77,-0.1359740369953215],[114,80,78,-0.135067418217659],[114,80,79,-0.13379963766783476],[114,81,64,-0.16120756417512894],[114,81,65,-0.15962126664817333],[114,81,66,-0.15823687054216862],[114,81,67,-0.1570687610656023],[114,81,68,-0.15615243464708328],[114,81,69,-0.15515965409576893],[114,81,70,-0.1540815830230713],[114,81,71,-0.1527541745454073],[114,81,72,-0.15088557917624712],[114,81,73,-0.14864251110702753],[114,81,74,-0.14654064644128084],[114,81,75,-0.14517347887158394],[114,81,76,-0.1443997910246253],[114,81,77,-0.1437865369953215],[114,81,78,-0.142879918217659],[114,81,79,-0.14161213766783476],[114,82,64,-0.16902006417512894],[114,82,65,-0.16743376664817333],[114,82,66,-0.16604937054216862],[114,82,67,-0.1648812610656023],[114,82,68,-0.16396493464708328],[114,82,69,-0.16297215409576893],[114,82,70,-0.1618940830230713],[114,82,71,-0.1605666745454073],[114,82,72,-0.15869807917624712],[114,82,73,-0.15645501110702753],[114,82,74,-0.15435314644128084],[114,82,75,-0.15298597887158394],[114,82,76,-0.1522122910246253],[114,82,77,-0.1515990369953215],[114,82,78,-0.150692418217659],[114,82,79,-0.14942463766783476],[114,83,64,-0.17683256417512894],[114,83,65,-0.17524626664817333],[114,83,66,-0.17386187054216862],[114,83,67,-0.1726937610656023],[114,83,68,-0.17177743464708328],[114,83,69,-0.17078465409576893],[114,83,70,-0.1697065830230713],[114,83,71,-0.1683791745454073],[114,83,72,-0.16651057917624712],[114,83,73,-0.16426751110702753],[114,83,74,-0.16216564644128084],[114,83,75,-0.16079847887158394],[114,83,76,-0.1600247910246253],[114,83,77,-0.1594115369953215],[114,83,78,-0.158504918217659],[114,83,79,-0.15723713766783476],[114,84,64,-0.18464506417512894],[114,84,65,-0.18305876664817333],[114,84,66,-0.18167437054216862],[114,84,67,-0.1805062610656023],[114,84,68,-0.17958993464708328],[114,84,69,-0.17859715409576893],[114,84,70,-0.1775190830230713],[114,84,71,-0.1761916745454073],[114,84,72,-0.17432307917624712],[114,84,73,-0.17208001110702753],[114,84,74,-0.16997814644128084],[114,84,75,-0.16861097887158394],[114,84,76,-0.1678372910246253],[114,84,77,-0.1672240369953215],[114,84,78,-0.166317418217659],[114,84,79,-0.16504963766783476],[114,85,64,-0.19245756417512894],[114,85,65,-0.19087126664817333],[114,85,66,-0.18948687054216862],[114,85,67,-0.1883187610656023],[114,85,68,-0.18740243464708328],[114,85,69,-0.18640965409576893],[114,85,70,-0.1853315830230713],[114,85,71,-0.1840041745454073],[114,85,72,-0.18213557917624712],[114,85,73,-0.17989251110702753],[114,85,74,-0.17779064644128084],[114,85,75,-0.17642347887158394],[114,85,76,-0.1756497910246253],[114,85,77,-0.1750365369953215],[114,85,78,-0.174129918217659],[114,85,79,-0.17286213766783476],[114,86,64,-0.20027006417512894],[114,86,65,-0.19868376664817333],[114,86,66,-0.19729937054216862],[114,86,67,-0.1961312610656023],[114,86,68,-0.19521493464708328],[114,86,69,-0.19422215409576893],[114,86,70,-0.1931440830230713],[114,86,71,-0.1918166745454073],[114,86,72,-0.18994807917624712],[114,86,73,-0.18770501110702753],[114,86,74,-0.18560314644128084],[114,86,75,-0.18423597887158394],[114,86,76,-0.1834622910246253],[114,86,77,-0.1828490369953215],[114,86,78,-0.181942418217659],[114,86,79,-0.18067463766783476],[114,87,64,-0.20808256417512894],[114,87,65,-0.20649626664817333],[114,87,66,-0.20511187054216862],[114,87,67,-0.2039437610656023],[114,87,68,-0.20302743464708328],[114,87,69,-0.20203465409576893],[114,87,70,-0.2009565830230713],[114,87,71,-0.1996291745454073],[114,87,72,-0.19776057917624712],[114,87,73,-0.19551751110702753],[114,87,74,-0.19341564644128084],[114,87,75,-0.19204847887158394],[114,87,76,-0.1912747910246253],[114,87,77,-0.1906615369953215],[114,87,78,-0.189754918217659],[114,87,79,-0.18848713766783476],[114,88,64,-0.21589506417512894],[114,88,65,-0.21430876664817333],[114,88,66,-0.21292437054216862],[114,88,67,-0.2117562610656023],[114,88,68,-0.21083993464708328],[114,88,69,-0.20984715409576893],[114,88,70,-0.2087690830230713],[114,88,71,-0.2074416745454073],[114,88,72,-0.20557307917624712],[114,88,73,-0.20333001110702753],[114,88,74,-0.20122814644128084],[114,88,75,-0.19986097887158394],[114,88,76,-0.1990872910246253],[114,88,77,-0.1984740369953215],[114,88,78,-0.197567418217659],[114,88,79,-0.19629963766783476],[114,89,64,-0.22370756417512894],[114,89,65,-0.22212126664817333],[114,89,66,-0.22073687054216862],[114,89,67,-0.2195687610656023],[114,89,68,-0.21865243464708328],[114,89,69,-0.21765965409576893],[114,89,70,-0.2165815830230713],[114,89,71,-0.2152541745454073],[114,89,72,-0.21338557917624712],[114,89,73,-0.21114251110702753],[114,89,74,-0.20904064644128084],[114,89,75,-0.20767347887158394],[114,89,76,-0.2068997910246253],[114,89,77,-0.2062865369953215],[114,89,78,-0.205379918217659],[114,89,79,-0.20411213766783476],[114,90,64,-0.23152006417512894],[114,90,65,-0.22993376664817333],[114,90,66,-0.22854937054216862],[114,90,67,-0.2273812610656023],[114,90,68,-0.22646493464708328],[114,90,69,-0.22547215409576893],[114,90,70,-0.2243940830230713],[114,90,71,-0.2230666745454073],[114,90,72,-0.22119807917624712],[114,90,73,-0.21895501110702753],[114,90,74,-0.21685314644128084],[114,90,75,-0.21548597887158394],[114,90,76,-0.2147122910246253],[114,90,77,-0.2140990369953215],[114,90,78,-0.213192418217659],[114,90,79,-0.21192463766783476],[114,91,64,-0.23933256417512894],[114,91,65,-0.23774626664817333],[114,91,66,-0.23636187054216862],[114,91,67,-0.2351937610656023],[114,91,68,-0.23427743464708328],[114,91,69,-0.23328465409576893],[114,91,70,-0.2322065830230713],[114,91,71,-0.2308791745454073],[114,91,72,-0.22901057917624712],[114,91,73,-0.22676751110702753],[114,91,74,-0.22466564644128084],[114,91,75,-0.22329847887158394],[114,91,76,-0.2225247910246253],[114,91,77,-0.2219115369953215],[114,91,78,-0.221004918217659],[114,91,79,-0.21973713766783476],[114,92,64,-0.24714506417512894],[114,92,65,-0.24555876664817333],[114,92,66,-0.24417437054216862],[114,92,67,-0.2430062610656023],[114,92,68,-0.24208993464708328],[114,92,69,-0.24109715409576893],[114,92,70,-0.2400190830230713],[114,92,71,-0.2386916745454073],[114,92,72,-0.23682307917624712],[114,92,73,-0.23458001110702753],[114,92,74,-0.23247814644128084],[114,92,75,-0.23111097887158394],[114,92,76,-0.2303372910246253],[114,92,77,-0.2297240369953215],[114,92,78,-0.228817418217659],[114,92,79,-0.22754963766783476],[114,93,64,-0.25495756417512894],[114,93,65,-0.25337126664817333],[114,93,66,-0.2519868705421686],[114,93,67,-0.2508187610656023],[114,93,68,-0.24990243464708328],[114,93,69,-0.24890965409576893],[114,93,70,-0.2478315830230713],[114,93,71,-0.2465041745454073],[114,93,72,-0.24463557917624712],[114,93,73,-0.24239251110702753],[114,93,74,-0.24029064644128084],[114,93,75,-0.23892347887158394],[114,93,76,-0.2381497910246253],[114,93,77,-0.2375365369953215],[114,93,78,-0.236629918217659],[114,93,79,-0.23536213766783476],[114,94,64,-0.26277006417512894],[114,94,65,-0.26118376664817333],[114,94,66,-0.2597993705421686],[114,94,67,-0.2586312610656023],[114,94,68,-0.2577149346470833],[114,94,69,-0.25672215409576893],[114,94,70,-0.2556440830230713],[114,94,71,-0.2543166745454073],[114,94,72,-0.2524480791762471],[114,94,73,-0.25020501110702753],[114,94,74,-0.24810314644128084],[114,94,75,-0.24673597887158394],[114,94,76,-0.2459622910246253],[114,94,77,-0.2453490369953215],[114,94,78,-0.244442418217659],[114,94,79,-0.24317463766783476],[114,95,64,-0.27058256417512894],[114,95,65,-0.26899626664817333],[114,95,66,-0.2676118705421686],[114,95,67,-0.2664437610656023],[114,95,68,-0.2655274346470833],[114,95,69,-0.26453465409576893],[114,95,70,-0.2634565830230713],[114,95,71,-0.2621291745454073],[114,95,72,-0.2602605791762471],[114,95,73,-0.25801751110702753],[114,95,74,-0.25591564644128084],[114,95,75,-0.25454847887158394],[114,95,76,-0.2537747910246253],[114,95,77,-0.2531615369953215],[114,95,78,-0.252254918217659],[114,95,79,-0.25098713766783476],[114,96,64,-0.27839506417512894],[114,96,65,-0.27680876664817333],[114,96,66,-0.2754243705421686],[114,96,67,-0.2742562610656023],[114,96,68,-0.2733399346470833],[114,96,69,-0.27234715409576893],[114,96,70,-0.2712690830230713],[114,96,71,-0.2699416745454073],[114,96,72,-0.2680730791762471],[114,96,73,-0.26583001110702753],[114,96,74,-0.26372814644128084],[114,96,75,-0.26236097887158394],[114,96,76,-0.2615872910246253],[114,96,77,-0.2609740369953215],[114,96,78,-0.260067418217659],[114,96,79,-0.25879963766783476],[114,97,64,-0.28620756417512894],[114,97,65,-0.28462126664817333],[114,97,66,-0.2832368705421686],[114,97,67,-0.2820687610656023],[114,97,68,-0.2811524346470833],[114,97,69,-0.28015965409576893],[114,97,70,-0.2790815830230713],[114,97,71,-0.2777541745454073],[114,97,72,-0.2758855791762471],[114,97,73,-0.27364251110702753],[114,97,74,-0.27154064644128084],[114,97,75,-0.27017347887158394],[114,97,76,-0.2693997910246253],[114,97,77,-0.2687865369953215],[114,97,78,-0.267879918217659],[114,97,79,-0.26661213766783476],[114,98,64,-0.29402006417512894],[114,98,65,-0.29243376664817333],[114,98,66,-0.2910493705421686],[114,98,67,-0.2898812610656023],[114,98,68,-0.2889649346470833],[114,98,69,-0.28797215409576893],[114,98,70,-0.2868940830230713],[114,98,71,-0.2855666745454073],[114,98,72,-0.2836980791762471],[114,98,73,-0.28145501110702753],[114,98,74,-0.27935314644128084],[114,98,75,-0.27798597887158394],[114,98,76,-0.2772122910246253],[114,98,77,-0.2765990369953215],[114,98,78,-0.275692418217659],[114,98,79,-0.27442463766783476],[114,99,64,-0.30183256417512894],[114,99,65,-0.30024626664817333],[114,99,66,-0.2988618705421686],[114,99,67,-0.2976937610656023],[114,99,68,-0.2967774346470833],[114,99,69,-0.29578465409576893],[114,99,70,-0.2947065830230713],[114,99,71,-0.2933791745454073],[114,99,72,-0.2915105791762471],[114,99,73,-0.28926751110702753],[114,99,74,-0.28716564644128084],[114,99,75,-0.28579847887158394],[114,99,76,-0.2850247910246253],[114,99,77,-0.2844115369953215],[114,99,78,-0.283504918217659],[114,99,79,-0.28223713766783476],[114,100,64,-0.30964506417512894],[114,100,65,-0.30805876664817333],[114,100,66,-0.3066743705421686],[114,100,67,-0.3055062610656023],[114,100,68,-0.3045899346470833],[114,100,69,-0.30359715409576893],[114,100,70,-0.3025190830230713],[114,100,71,-0.3011916745454073],[114,100,72,-0.2993230791762471],[114,100,73,-0.29708001110702753],[114,100,74,-0.29497814644128084],[114,100,75,-0.29361097887158394],[114,100,76,-0.2928372910246253],[114,100,77,-0.2922240369953215],[114,100,78,-0.291317418217659],[114,100,79,-0.29004963766783476],[114,101,64,-0.31745756417512894],[114,101,65,-0.31587126664817333],[114,101,66,-0.3144868705421686],[114,101,67,-0.3133187610656023],[114,101,68,-0.3124024346470833],[114,101,69,-0.31140965409576893],[114,101,70,-0.3103315830230713],[114,101,71,-0.3090041745454073],[114,101,72,-0.3071355791762471],[114,101,73,-0.30489251110702753],[114,101,74,-0.30279064644128084],[114,101,75,-0.30142347887158394],[114,101,76,-0.3006497910246253],[114,101,77,-0.3000365369953215],[114,101,78,-0.299129918217659],[114,101,79,-0.29786213766783476],[114,102,64,-0.32527006417512894],[114,102,65,-0.32368376664817333],[114,102,66,-0.3222993705421686],[114,102,67,-0.3211312610656023],[114,102,68,-0.3202149346470833],[114,102,69,-0.31922215409576893],[114,102,70,-0.3181440830230713],[114,102,71,-0.3168166745454073],[114,102,72,-0.3149480791762471],[114,102,73,-0.31270501110702753],[114,102,74,-0.31060314644128084],[114,102,75,-0.30923597887158394],[114,102,76,-0.3084622910246253],[114,102,77,-0.3078490369953215],[114,102,78,-0.306942418217659],[114,102,79,-0.30567463766783476],[114,103,64,-0.33308256417512894],[114,103,65,-0.33149626664817333],[114,103,66,-0.3301118705421686],[114,103,67,-0.3289437610656023],[114,103,68,-0.3280274346470833],[114,103,69,-0.32703465409576893],[114,103,70,-0.3259565830230713],[114,103,71,-0.3246291745454073],[114,103,72,-0.3227605791762471],[114,103,73,-0.32051751110702753],[114,103,74,-0.31841564644128084],[114,103,75,-0.31704847887158394],[114,103,76,-0.3162747910246253],[114,103,77,-0.3156615369953215],[114,103,78,-0.314754918217659],[114,103,79,-0.31348713766783476],[114,104,64,-0.34089506417512894],[114,104,65,-0.33930876664817333],[114,104,66,-0.3379243705421686],[114,104,67,-0.3367562610656023],[114,104,68,-0.3358399346470833],[114,104,69,-0.33484715409576893],[114,104,70,-0.3337690830230713],[114,104,71,-0.3324416745454073],[114,104,72,-0.3305730791762471],[114,104,73,-0.32833001110702753],[114,104,74,-0.32622814644128084],[114,104,75,-0.32486097887158394],[114,104,76,-0.3240872910246253],[114,104,77,-0.3234740369953215],[114,104,78,-0.322567418217659],[114,104,79,-0.32129963766783476],[114,105,64,-0.34870756417512894],[114,105,65,-0.34712126664817333],[114,105,66,-0.3457368705421686],[114,105,67,-0.3445687610656023],[114,105,68,-0.3436524346470833],[114,105,69,-0.34265965409576893],[114,105,70,-0.3415815830230713],[114,105,71,-0.3402541745454073],[114,105,72,-0.3383855791762471],[114,105,73,-0.33614251110702753],[114,105,74,-0.33404064644128084],[114,105,75,-0.33267347887158394],[114,105,76,-0.3318997910246253],[114,105,77,-0.3312865369953215],[114,105,78,-0.330379918217659],[114,105,79,-0.32911213766783476],[114,106,64,-0.35652006417512894],[114,106,65,-0.35493376664817333],[114,106,66,-0.3535493705421686],[114,106,67,-0.3523812610656023],[114,106,68,-0.3514649346470833],[114,106,69,-0.35047215409576893],[114,106,70,-0.3493940830230713],[114,106,71,-0.3480666745454073],[114,106,72,-0.3461980791762471],[114,106,73,-0.34395501110702753],[114,106,74,-0.34185314644128084],[114,106,75,-0.34048597887158394],[114,106,76,-0.3397122910246253],[114,106,77,-0.3390990369953215],[114,106,78,-0.338192418217659],[114,106,79,-0.33692463766783476],[114,107,64,-0.36433256417512894],[114,107,65,-0.36274626664817333],[114,107,66,-0.3613618705421686],[114,107,67,-0.3601937610656023],[114,107,68,-0.3592774346470833],[114,107,69,-0.35828465409576893],[114,107,70,-0.3572065830230713],[114,107,71,-0.3558791745454073],[114,107,72,-0.3540105791762471],[114,107,73,-0.35176751110702753],[114,107,74,-0.34966564644128084],[114,107,75,-0.34829847887158394],[114,107,76,-0.3475247910246253],[114,107,77,-0.3469115369953215],[114,107,78,-0.346004918217659],[114,107,79,-0.34473713766783476],[114,108,64,-0.37214506417512894],[114,108,65,-0.37055876664817333],[114,108,66,-0.3691743705421686],[114,108,67,-0.3680062610656023],[114,108,68,-0.3670899346470833],[114,108,69,-0.36609715409576893],[114,108,70,-0.3650190830230713],[114,108,71,-0.3636916745454073],[114,108,72,-0.3618230791762471],[114,108,73,-0.35958001110702753],[114,108,74,-0.35747814644128084],[114,108,75,-0.35611097887158394],[114,108,76,-0.3553372910246253],[114,108,77,-0.3547240369953215],[114,108,78,-0.353817418217659],[114,108,79,-0.35254963766783476],[114,109,64,-0.37995756417512894],[114,109,65,-0.37837126664817333],[114,109,66,-0.3769868705421686],[114,109,67,-0.3758187610656023],[114,109,68,-0.3749024346470833],[114,109,69,-0.37390965409576893],[114,109,70,-0.3728315830230713],[114,109,71,-0.3715041745454073],[114,109,72,-0.3696355791762471],[114,109,73,-0.36739251110702753],[114,109,74,-0.36529064644128084],[114,109,75,-0.36392347887158394],[114,109,76,-0.3631497910246253],[114,109,77,-0.3625365369953215],[114,109,78,-0.361629918217659],[114,109,79,-0.36036213766783476],[114,110,64,-0.38777006417512894],[114,110,65,-0.38618376664817333],[114,110,66,-0.3847993705421686],[114,110,67,-0.3836312610656023],[114,110,68,-0.3827149346470833],[114,110,69,-0.38172215409576893],[114,110,70,-0.3806440830230713],[114,110,71,-0.3793166745454073],[114,110,72,-0.3774480791762471],[114,110,73,-0.37520501110702753],[114,110,74,-0.37310314644128084],[114,110,75,-0.37173597887158394],[114,110,76,-0.3709622910246253],[114,110,77,-0.3703490369953215],[114,110,78,-0.369442418217659],[114,110,79,-0.36817463766783476],[114,111,64,-0.39558256417512894],[114,111,65,-0.39399626664817333],[114,111,66,-0.3926118705421686],[114,111,67,-0.3914437610656023],[114,111,68,-0.3905274346470833],[114,111,69,-0.38953465409576893],[114,111,70,-0.3884565830230713],[114,111,71,-0.3871291745454073],[114,111,72,-0.3852605791762471],[114,111,73,-0.38301751110702753],[114,111,74,-0.38091564644128084],[114,111,75,-0.37954847887158394],[114,111,76,-0.3787747910246253],[114,111,77,-0.3781615369953215],[114,111,78,-0.377254918217659],[114,111,79,-0.37598713766783476],[114,112,64,-0.40339506417512894],[114,112,65,-0.40180876664817333],[114,112,66,-0.4004243705421686],[114,112,67,-0.3992562610656023],[114,112,68,-0.3983399346470833],[114,112,69,-0.39734715409576893],[114,112,70,-0.3962690830230713],[114,112,71,-0.3949416745454073],[114,112,72,-0.3930730791762471],[114,112,73,-0.39083001110702753],[114,112,74,-0.38872814644128084],[114,112,75,-0.38736097887158394],[114,112,76,-0.3865872910246253],[114,112,77,-0.3859740369953215],[114,112,78,-0.385067418217659],[114,112,79,-0.38379963766783476],[114,113,64,-0.41120756417512894],[114,113,65,-0.40962126664817333],[114,113,66,-0.4082368705421686],[114,113,67,-0.4070687610656023],[114,113,68,-0.4061524346470833],[114,113,69,-0.40515965409576893],[114,113,70,-0.4040815830230713],[114,113,71,-0.4027541745454073],[114,113,72,-0.4008855791762471],[114,113,73,-0.39864251110702753],[114,113,74,-0.39654064644128084],[114,113,75,-0.39517347887158394],[114,113,76,-0.3943997910246253],[114,113,77,-0.3937865369953215],[114,113,78,-0.392879918217659],[114,113,79,-0.39161213766783476],[114,114,64,-0.41902006417512894],[114,114,65,-0.41743376664817333],[114,114,66,-0.4160493705421686],[114,114,67,-0.4148812610656023],[114,114,68,-0.4139649346470833],[114,114,69,-0.41297215409576893],[114,114,70,-0.4118940830230713],[114,114,71,-0.4105666745454073],[114,114,72,-0.4086980791762471],[114,114,73,-0.40645501110702753],[114,114,74,-0.40435314644128084],[114,114,75,-0.40298597887158394],[114,114,76,-0.4022122910246253],[114,114,77,-0.4015990369953215],[114,114,78,-0.400692418217659],[114,114,79,-0.39942463766783476],[114,115,64,-0.42683256417512894],[114,115,65,-0.42524626664817333],[114,115,66,-0.4238618705421686],[114,115,67,-0.4226937610656023],[114,115,68,-0.4217774346470833],[114,115,69,-0.42078465409576893],[114,115,70,-0.4197065830230713],[114,115,71,-0.4183791745454073],[114,115,72,-0.4165105791762471],[114,115,73,-0.41426751110702753],[114,115,74,-0.41216564644128084],[114,115,75,-0.41079847887158394],[114,115,76,-0.4100247910246253],[114,115,77,-0.4094115369953215],[114,115,78,-0.408504918217659],[114,115,79,-0.40723713766783476],[114,116,64,-0.43464506417512894],[114,116,65,-0.43305876664817333],[114,116,66,-0.4316743705421686],[114,116,67,-0.4305062610656023],[114,116,68,-0.4295899346470833],[114,116,69,-0.42859715409576893],[114,116,70,-0.4275190830230713],[114,116,71,-0.4261916745454073],[114,116,72,-0.4243230791762471],[114,116,73,-0.42208001110702753],[114,116,74,-0.41997814644128084],[114,116,75,-0.41861097887158394],[114,116,76,-0.4178372910246253],[114,116,77,-0.4172240369953215],[114,116,78,-0.416317418217659],[114,116,79,-0.41504963766783476],[114,117,64,-0.44245756417512894],[114,117,65,-0.44087126664817333],[114,117,66,-0.4394868705421686],[114,117,67,-0.4383187610656023],[114,117,68,-0.4374024346470833],[114,117,69,-0.43640965409576893],[114,117,70,-0.4353315830230713],[114,117,71,-0.4340041745454073],[114,117,72,-0.4321355791762471],[114,117,73,-0.42989251110702753],[114,117,74,-0.42779064644128084],[114,117,75,-0.42642347887158394],[114,117,76,-0.4256497910246253],[114,117,77,-0.4250365369953215],[114,117,78,-0.424129918217659],[114,117,79,-0.42286213766783476],[114,118,64,-0.45027006417512894],[114,118,65,-0.44868376664817333],[114,118,66,-0.4472993705421686],[114,118,67,-0.4461312610656023],[114,118,68,-0.4452149346470833],[114,118,69,-0.44422215409576893],[114,118,70,-0.4431440830230713],[114,118,71,-0.4418166745454073],[114,118,72,-0.4399480791762471],[114,118,73,-0.43770501110702753],[114,118,74,-0.43560314644128084],[114,118,75,-0.43423597887158394],[114,118,76,-0.4334622910246253],[114,118,77,-0.4328490369953215],[114,118,78,-0.431942418217659],[114,118,79,-0.43067463766783476],[114,119,64,-0.45808256417512894],[114,119,65,-0.45649626664817333],[114,119,66,-0.4551118705421686],[114,119,67,-0.4539437610656023],[114,119,68,-0.4530274346470833],[114,119,69,-0.45203465409576893],[114,119,70,-0.4509565830230713],[114,119,71,-0.4496291745454073],[114,119,72,-0.4477605791762471],[114,119,73,-0.44551751110702753],[114,119,74,-0.44341564644128084],[114,119,75,-0.44204847887158394],[114,119,76,-0.4412747910246253],[114,119,77,-0.4406615369953215],[114,119,78,-0.439754918217659],[114,119,79,-0.43848713766783476],[114,120,64,-0.46589506417512894],[114,120,65,-0.46430876664817333],[114,120,66,-0.4629243705421686],[114,120,67,-0.4617562610656023],[114,120,68,-0.4608399346470833],[114,120,69,-0.45984715409576893],[114,120,70,-0.4587690830230713],[114,120,71,-0.4574416745454073],[114,120,72,-0.4555730791762471],[114,120,73,-0.45333001110702753],[114,120,74,-0.45122814644128084],[114,120,75,-0.44986097887158394],[114,120,76,-0.4490872910246253],[114,120,77,-0.4484740369953215],[114,120,78,-0.447567418217659],[114,120,79,-0.44629963766783476],[114,121,64,-0.47370756417512894],[114,121,65,-0.47212126664817333],[114,121,66,-0.4707368705421686],[114,121,67,-0.4695687610656023],[114,121,68,-0.4686524346470833],[114,121,69,-0.46765965409576893],[114,121,70,-0.4665815830230713],[114,121,71,-0.4652541745454073],[114,121,72,-0.4633855791762471],[114,121,73,-0.46114251110702753],[114,121,74,-0.45904064644128084],[114,121,75,-0.45767347887158394],[114,121,76,-0.4568997910246253],[114,121,77,-0.4562865369953215],[114,121,78,-0.455379918217659],[114,121,79,-0.45411213766783476],[114,122,64,-0.48152006417512894],[114,122,65,-0.47993376664817333],[114,122,66,-0.4785493705421686],[114,122,67,-0.4773812610656023],[114,122,68,-0.4764649346470833],[114,122,69,-0.47547215409576893],[114,122,70,-0.4743940830230713],[114,122,71,-0.4730666745454073],[114,122,72,-0.4711980791762471],[114,122,73,-0.46895501110702753],[114,122,74,-0.46685314644128084],[114,122,75,-0.46548597887158394],[114,122,76,-0.4647122910246253],[114,122,77,-0.4640990369953215],[114,122,78,-0.463192418217659],[114,122,79,-0.46192463766783476],[114,123,64,-0.48933256417512894],[114,123,65,-0.48774626664817333],[114,123,66,-0.4863618705421686],[114,123,67,-0.4851937610656023],[114,123,68,-0.4842774346470833],[114,123,69,-0.48328465409576893],[114,123,70,-0.4822065830230713],[114,123,71,-0.4808791745454073],[114,123,72,-0.4790105791762471],[114,123,73,-0.47676751110702753],[114,123,74,-0.47466564644128084],[114,123,75,-0.47329847887158394],[114,123,76,-0.4725247910246253],[114,123,77,-0.4719115369953215],[114,123,78,-0.471004918217659],[114,123,79,-0.46973713766783476],[114,124,64,-0.49714506417512894],[114,124,65,-0.49555876664817333],[114,124,66,-0.4941743705421686],[114,124,67,-0.4930062610656023],[114,124,68,-0.4920899346470833],[114,124,69,-0.49109715409576893],[114,124,70,-0.4900190830230713],[114,124,71,-0.4886916745454073],[114,124,72,-0.4868230791762471],[114,124,73,-0.48458001110702753],[114,124,74,-0.48247814644128084],[114,124,75,-0.48111097887158394],[114,124,76,-0.4803372910246253],[114,124,77,-0.4797240369953215],[114,124,78,-0.478817418217659],[114,124,79,-0.47754963766783476],[114,125,64,-0.5049575641751289],[114,125,65,-0.5033712666481733],[114,125,66,-0.5019868705421686],[114,125,67,-0.5008187610656023],[114,125,68,-0.4999024346470833],[114,125,69,-0.49890965409576893],[114,125,70,-0.4978315830230713],[114,125,71,-0.4965041745454073],[114,125,72,-0.4946355791762471],[114,125,73,-0.49239251110702753],[114,125,74,-0.49029064644128084],[114,125,75,-0.48892347887158394],[114,125,76,-0.4881497910246253],[114,125,77,-0.4875365369953215],[114,125,78,-0.486629918217659],[114,125,79,-0.48536213766783476],[114,126,64,-0.5127700641751289],[114,126,65,-0.5111837666481733],[114,126,66,-0.5097993705421686],[114,126,67,-0.5086312610656023],[114,126,68,-0.5077149346470833],[114,126,69,-0.5067221540957689],[114,126,70,-0.5056440830230713],[114,126,71,-0.5043166745454073],[114,126,72,-0.5024480791762471],[114,126,73,-0.5002050111070275],[114,126,74,-0.49810314644128084],[114,126,75,-0.49673597887158394],[114,126,76,-0.4959622910246253],[114,126,77,-0.4953490369953215],[114,126,78,-0.494442418217659],[114,126,79,-0.49317463766783476],[114,127,64,-0.5205825641751289],[114,127,65,-0.5189962666481733],[114,127,66,-0.5176118705421686],[114,127,67,-0.5164437610656023],[114,127,68,-0.5155274346470833],[114,127,69,-0.5145346540957689],[114,127,70,-0.5134565830230713],[114,127,71,-0.5121291745454073],[114,127,72,-0.5102605791762471],[114,127,73,-0.5080175111070275],[114,127,74,-0.5059156464412808],[114,127,75,-0.5045484788715839],[114,127,76,-0.5037747910246253],[114,127,77,-0.5031615369953215],[114,127,78,-0.502254918217659],[114,127,79,-0.5009871376678348],[114,128,64,-0.5283950641751289],[114,128,65,-0.5268087666481733],[114,128,66,-0.5254243705421686],[114,128,67,-0.5242562610656023],[114,128,68,-0.5233399346470833],[114,128,69,-0.5223471540957689],[114,128,70,-0.5212690830230713],[114,128,71,-0.5199416745454073],[114,128,72,-0.5180730791762471],[114,128,73,-0.5158300111070275],[114,128,74,-0.5137281464412808],[114,128,75,-0.5123609788715839],[114,128,76,-0.5115872910246253],[114,128,77,-0.5109740369953215],[114,128,78,-0.510067418217659],[114,128,79,-0.5087996376678348],[114,129,64,-0.5362075641751289],[114,129,65,-0.5346212666481733],[114,129,66,-0.5332368705421686],[114,129,67,-0.5320687610656023],[114,129,68,-0.5311524346470833],[114,129,69,-0.5301596540957689],[114,129,70,-0.5290815830230713],[114,129,71,-0.5277541745454073],[114,129,72,-0.5258855791762471],[114,129,73,-0.5236425111070275],[114,129,74,-0.5215406464412808],[114,129,75,-0.5201734788715839],[114,129,76,-0.5193997910246253],[114,129,77,-0.5187865369953215],[114,129,78,-0.517879918217659],[114,129,79,-0.5166121376678348],[114,130,64,-0.5440200641751289],[114,130,65,-0.5424337666481733],[114,130,66,-0.5410493705421686],[114,130,67,-0.5398812610656023],[114,130,68,-0.5389649346470833],[114,130,69,-0.5379721540957689],[114,130,70,-0.5368940830230713],[114,130,71,-0.5355666745454073],[114,130,72,-0.5336980791762471],[114,130,73,-0.5314550111070275],[114,130,74,-0.5293531464412808],[114,130,75,-0.5279859788715839],[114,130,76,-0.5272122910246253],[114,130,77,-0.5265990369953215],[114,130,78,-0.525692418217659],[114,130,79,-0.5244246376678348],[114,131,64,-0.5518325641751289],[114,131,65,-0.5502462666481733],[114,131,66,-0.5488618705421686],[114,131,67,-0.5476937610656023],[114,131,68,-0.5467774346470833],[114,131,69,-0.5457846540957689],[114,131,70,-0.5447065830230713],[114,131,71,-0.5433791745454073],[114,131,72,-0.5415105791762471],[114,131,73,-0.5392675111070275],[114,131,74,-0.5371656464412808],[114,131,75,-0.5357984788715839],[114,131,76,-0.5350247910246253],[114,131,77,-0.5344115369953215],[114,131,78,-0.533504918217659],[114,131,79,-0.5322371376678348],[114,132,64,-0.5596450641751289],[114,132,65,-0.5580587666481733],[114,132,66,-0.5566743705421686],[114,132,67,-0.5555062610656023],[114,132,68,-0.5545899346470833],[114,132,69,-0.5535971540957689],[114,132,70,-0.5525190830230713],[114,132,71,-0.5511916745454073],[114,132,72,-0.5493230791762471],[114,132,73,-0.5470800111070275],[114,132,74,-0.5449781464412808],[114,132,75,-0.5436109788715839],[114,132,76,-0.5428372910246253],[114,132,77,-0.5422240369953215],[114,132,78,-0.541317418217659],[114,132,79,-0.5400496376678348],[114,133,64,-0.5674575641751289],[114,133,65,-0.5658712666481733],[114,133,66,-0.5644868705421686],[114,133,67,-0.5633187610656023],[114,133,68,-0.5624024346470833],[114,133,69,-0.5614096540957689],[114,133,70,-0.5603315830230713],[114,133,71,-0.5590041745454073],[114,133,72,-0.5571355791762471],[114,133,73,-0.5548925111070275],[114,133,74,-0.5527906464412808],[114,133,75,-0.5514234788715839],[114,133,76,-0.5506497910246253],[114,133,77,-0.5500365369953215],[114,133,78,-0.549129918217659],[114,133,79,-0.5478621376678348],[114,134,64,-0.5752700641751289],[114,134,65,-0.5736837666481733],[114,134,66,-0.5722993705421686],[114,134,67,-0.5711312610656023],[114,134,68,-0.5702149346470833],[114,134,69,-0.5692221540957689],[114,134,70,-0.5681440830230713],[114,134,71,-0.5668166745454073],[114,134,72,-0.5649480791762471],[114,134,73,-0.5627050111070275],[114,134,74,-0.5606031464412808],[114,134,75,-0.5592359788715839],[114,134,76,-0.5584622910246253],[114,134,77,-0.5578490369953215],[114,134,78,-0.556942418217659],[114,134,79,-0.5556746376678348],[114,135,64,-0.5830825641751289],[114,135,65,-0.5814962666481733],[114,135,66,-0.5801118705421686],[114,135,67,-0.5789437610656023],[114,135,68,-0.5780274346470833],[114,135,69,-0.5770346540957689],[114,135,70,-0.5759565830230713],[114,135,71,-0.5746291745454073],[114,135,72,-0.5727605791762471],[114,135,73,-0.5705175111070275],[114,135,74,-0.5684156464412808],[114,135,75,-0.5670484788715839],[114,135,76,-0.5662747910246253],[114,135,77,-0.5656615369953215],[114,135,78,-0.564754918217659],[114,135,79,-0.5634871376678348],[114,136,64,-0.5908950641751289],[114,136,65,-0.5893087666481733],[114,136,66,-0.5879243705421686],[114,136,67,-0.5867562610656023],[114,136,68,-0.5858399346470833],[114,136,69,-0.5848471540957689],[114,136,70,-0.5837690830230713],[114,136,71,-0.5824416745454073],[114,136,72,-0.5805730791762471],[114,136,73,-0.5783300111070275],[114,136,74,-0.5762281464412808],[114,136,75,-0.5748609788715839],[114,136,76,-0.5740872910246253],[114,136,77,-0.5734740369953215],[114,136,78,-0.572567418217659],[114,136,79,-0.5712996376678348],[114,137,64,-0.5987075641751289],[114,137,65,-0.5971212666481733],[114,137,66,-0.5957368705421686],[114,137,67,-0.5945687610656023],[114,137,68,-0.5936524346470833],[114,137,69,-0.5926596540957689],[114,137,70,-0.5915815830230713],[114,137,71,-0.5902541745454073],[114,137,72,-0.5883855791762471],[114,137,73,-0.5861425111070275],[114,137,74,-0.5840406464412808],[114,137,75,-0.5826734788715839],[114,137,76,-0.5818997910246253],[114,137,77,-0.5812865369953215],[114,137,78,-0.580379918217659],[114,137,79,-0.5791121376678348],[114,138,64,-0.6065200641751289],[114,138,65,-0.6049337666481733],[114,138,66,-0.6035493705421686],[114,138,67,-0.6023812610656023],[114,138,68,-0.6014649346470833],[114,138,69,-0.6004721540957689],[114,138,70,-0.5993940830230713],[114,138,71,-0.5980666745454073],[114,138,72,-0.5961980791762471],[114,138,73,-0.5939550111070275],[114,138,74,-0.5918531464412808],[114,138,75,-0.5904859788715839],[114,138,76,-0.5897122910246253],[114,138,77,-0.5890990369953215],[114,138,78,-0.588192418217659],[114,138,79,-0.5869246376678348],[114,139,64,-0.6143325641751289],[114,139,65,-0.6127462666481733],[114,139,66,-0.6113618705421686],[114,139,67,-0.6101937610656023],[114,139,68,-0.6092774346470833],[114,139,69,-0.6082846540957689],[114,139,70,-0.6072065830230713],[114,139,71,-0.6058791745454073],[114,139,72,-0.6040105791762471],[114,139,73,-0.6017675111070275],[114,139,74,-0.5996656464412808],[114,139,75,-0.5982984788715839],[114,139,76,-0.5975247910246253],[114,139,77,-0.5969115369953215],[114,139,78,-0.596004918217659],[114,139,79,-0.5947371376678348],[114,140,64,-0.6221450641751289],[114,140,65,-0.6205587666481733],[114,140,66,-0.6191743705421686],[114,140,67,-0.6180062610656023],[114,140,68,-0.6170899346470833],[114,140,69,-0.6160971540957689],[114,140,70,-0.6150190830230713],[114,140,71,-0.6136916745454073],[114,140,72,-0.6118230791762471],[114,140,73,-0.6095800111070275],[114,140,74,-0.6074781464412808],[114,140,75,-0.6061109788715839],[114,140,76,-0.6053372910246253],[114,140,77,-0.6047240369953215],[114,140,78,-0.603817418217659],[114,140,79,-0.6025496376678348],[114,141,64,-0.6299575641751289],[114,141,65,-0.6283712666481733],[114,141,66,-0.6269868705421686],[114,141,67,-0.6258187610656023],[114,141,68,-0.6249024346470833],[114,141,69,-0.6239096540957689],[114,141,70,-0.6228315830230713],[114,141,71,-0.6215041745454073],[114,141,72,-0.6196355791762471],[114,141,73,-0.6173925111070275],[114,141,74,-0.6152906464412808],[114,141,75,-0.6139234788715839],[114,141,76,-0.6131497910246253],[114,141,77,-0.6125365369953215],[114,141,78,-0.611629918217659],[114,141,79,-0.6103621376678348],[114,142,64,-0.6377700641751289],[114,142,65,-0.6361837666481733],[114,142,66,-0.6347993705421686],[114,142,67,-0.6336312610656023],[114,142,68,-0.6327149346470833],[114,142,69,-0.6317221540957689],[114,142,70,-0.6306440830230713],[114,142,71,-0.6293166745454073],[114,142,72,-0.6274480791762471],[114,142,73,-0.6252050111070275],[114,142,74,-0.6231031464412808],[114,142,75,-0.6217359788715839],[114,142,76,-0.6209622910246253],[114,142,77,-0.6203490369953215],[114,142,78,-0.619442418217659],[114,142,79,-0.6181746376678348],[114,143,64,-0.6455825641751289],[114,143,65,-0.6439962666481733],[114,143,66,-0.6426118705421686],[114,143,67,-0.6414437610656023],[114,143,68,-0.6405274346470833],[114,143,69,-0.6395346540957689],[114,143,70,-0.6384565830230713],[114,143,71,-0.6371291745454073],[114,143,72,-0.6352605791762471],[114,143,73,-0.6330175111070275],[114,143,74,-0.6309156464412808],[114,143,75,-0.6295484788715839],[114,143,76,-0.6287747910246253],[114,143,77,-0.6281615369953215],[114,143,78,-0.627254918217659],[114,143,79,-0.6259871376678348],[114,144,64,-0.6533950641751289],[114,144,65,-0.6518087666481733],[114,144,66,-0.6504243705421686],[114,144,67,-0.6492562610656023],[114,144,68,-0.6483399346470833],[114,144,69,-0.6473471540957689],[114,144,70,-0.6462690830230713],[114,144,71,-0.6449416745454073],[114,144,72,-0.6430730791762471],[114,144,73,-0.6408300111070275],[114,144,74,-0.6387281464412808],[114,144,75,-0.6373609788715839],[114,144,76,-0.6365872910246253],[114,144,77,-0.6359740369953215],[114,144,78,-0.635067418217659],[114,144,79,-0.6337996376678348],[114,145,64,-0.6612075641751289],[114,145,65,-0.6596212666481733],[114,145,66,-0.6582368705421686],[114,145,67,-0.6570687610656023],[114,145,68,-0.6561524346470833],[114,145,69,-0.6551596540957689],[114,145,70,-0.6540815830230713],[114,145,71,-0.6527541745454073],[114,145,72,-0.6508855791762471],[114,145,73,-0.6486425111070275],[114,145,74,-0.6465406464412808],[114,145,75,-0.6451734788715839],[114,145,76,-0.6443997910246253],[114,145,77,-0.6437865369953215],[114,145,78,-0.642879918217659],[114,145,79,-0.6416121376678348],[114,146,64,-0.6690200641751289],[114,146,65,-0.6674337666481733],[114,146,66,-0.6660493705421686],[114,146,67,-0.6648812610656023],[114,146,68,-0.6639649346470833],[114,146,69,-0.6629721540957689],[114,146,70,-0.6618940830230713],[114,146,71,-0.6605666745454073],[114,146,72,-0.6586980791762471],[114,146,73,-0.6564550111070275],[114,146,74,-0.6543531464412808],[114,146,75,-0.6529859788715839],[114,146,76,-0.6522122910246253],[114,146,77,-0.6515990369953215],[114,146,78,-0.650692418217659],[114,146,79,-0.6494246376678348],[114,147,64,-0.6768325641751289],[114,147,65,-0.6752462666481733],[114,147,66,-0.6738618705421686],[114,147,67,-0.6726937610656023],[114,147,68,-0.6717774346470833],[114,147,69,-0.6707846540957689],[114,147,70,-0.6697065830230713],[114,147,71,-0.6683791745454073],[114,147,72,-0.6665105791762471],[114,147,73,-0.6642675111070275],[114,147,74,-0.6621656464412808],[114,147,75,-0.6607984788715839],[114,147,76,-0.6600247910246253],[114,147,77,-0.6594115369953215],[114,147,78,-0.658504918217659],[114,147,79,-0.6572371376678348],[114,148,64,-0.6846450641751289],[114,148,65,-0.6830587666481733],[114,148,66,-0.6816743705421686],[114,148,67,-0.6805062610656023],[114,148,68,-0.6795899346470833],[114,148,69,-0.6785971540957689],[114,148,70,-0.6775190830230713],[114,148,71,-0.6761916745454073],[114,148,72,-0.6743230791762471],[114,148,73,-0.6720800111070275],[114,148,74,-0.6699781464412808],[114,148,75,-0.6686109788715839],[114,148,76,-0.6678372910246253],[114,148,77,-0.6672240369953215],[114,148,78,-0.666317418217659],[114,148,79,-0.6650496376678348],[114,149,64,-0.6924575641751289],[114,149,65,-0.6908712666481733],[114,149,66,-0.6894868705421686],[114,149,67,-0.6883187610656023],[114,149,68,-0.6874024346470833],[114,149,69,-0.6864096540957689],[114,149,70,-0.6853315830230713],[114,149,71,-0.6840041745454073],[114,149,72,-0.6821355791762471],[114,149,73,-0.6798925111070275],[114,149,74,-0.6777906464412808],[114,149,75,-0.6764234788715839],[114,149,76,-0.6756497910246253],[114,149,77,-0.6750365369953215],[114,149,78,-0.674129918217659],[114,149,79,-0.6728621376678348],[114,150,64,-0.7002700641751289],[114,150,65,-0.6986837666481733],[114,150,66,-0.6972993705421686],[114,150,67,-0.6961312610656023],[114,150,68,-0.6952149346470833],[114,150,69,-0.6942221540957689],[114,150,70,-0.6931440830230713],[114,150,71,-0.6918166745454073],[114,150,72,-0.6899480791762471],[114,150,73,-0.6877050111070275],[114,150,74,-0.6856031464412808],[114,150,75,-0.6842359788715839],[114,150,76,-0.6834622910246253],[114,150,77,-0.6828490369953215],[114,150,78,-0.681942418217659],[114,150,79,-0.6806746376678348],[114,151,64,-0.7080825641751289],[114,151,65,-0.7064962666481733],[114,151,66,-0.7051118705421686],[114,151,67,-0.7039437610656023],[114,151,68,-0.7030274346470833],[114,151,69,-0.7020346540957689],[114,151,70,-0.7009565830230713],[114,151,71,-0.6996291745454073],[114,151,72,-0.6977605791762471],[114,151,73,-0.6955175111070275],[114,151,74,-0.6934156464412808],[114,151,75,-0.6920484788715839],[114,151,76,-0.6912747910246253],[114,151,77,-0.6906615369953215],[114,151,78,-0.689754918217659],[114,151,79,-0.6884871376678348],[114,152,64,-0.7158950641751289],[114,152,65,-0.7143087666481733],[114,152,66,-0.7129243705421686],[114,152,67,-0.7117562610656023],[114,152,68,-0.7108399346470833],[114,152,69,-0.7098471540957689],[114,152,70,-0.7087690830230713],[114,152,71,-0.7074416745454073],[114,152,72,-0.7055730791762471],[114,152,73,-0.7033300111070275],[114,152,74,-0.7012281464412808],[114,152,75,-0.6998609788715839],[114,152,76,-0.6990872910246253],[114,152,77,-0.6984740369953215],[114,152,78,-0.697567418217659],[114,152,79,-0.6962996376678348],[114,153,64,-0.7237075641751289],[114,153,65,-0.7221212666481733],[114,153,66,-0.7207368705421686],[114,153,67,-0.7195687610656023],[114,153,68,-0.7186524346470833],[114,153,69,-0.7176596540957689],[114,153,70,-0.7165815830230713],[114,153,71,-0.7152541745454073],[114,153,72,-0.7133855791762471],[114,153,73,-0.7111425111070275],[114,153,74,-0.7090406464412808],[114,153,75,-0.7076734788715839],[114,153,76,-0.7068997910246253],[114,153,77,-0.7062865369953215],[114,153,78,-0.705379918217659],[114,153,79,-0.7041121376678348],[114,154,64,-0.7315200641751289],[114,154,65,-0.7299337666481733],[114,154,66,-0.7285493705421686],[114,154,67,-0.7273812610656023],[114,154,68,-0.7264649346470833],[114,154,69,-0.7254721540957689],[114,154,70,-0.7243940830230713],[114,154,71,-0.7230666745454073],[114,154,72,-0.7211980791762471],[114,154,73,-0.7189550111070275],[114,154,74,-0.7168531464412808],[114,154,75,-0.7154859788715839],[114,154,76,-0.7147122910246253],[114,154,77,-0.7140990369953215],[114,154,78,-0.713192418217659],[114,154,79,-0.7119246376678348],[114,155,64,-0.7393325641751289],[114,155,65,-0.7377462666481733],[114,155,66,-0.7363618705421686],[114,155,67,-0.7351937610656023],[114,155,68,-0.7342774346470833],[114,155,69,-0.7332846540957689],[114,155,70,-0.7322065830230713],[114,155,71,-0.7308791745454073],[114,155,72,-0.7290105791762471],[114,155,73,-0.7267675111070275],[114,155,74,-0.7246656464412808],[114,155,75,-0.7232984788715839],[114,155,76,-0.7225247910246253],[114,155,77,-0.7219115369953215],[114,155,78,-0.721004918217659],[114,155,79,-0.7197371376678348],[114,156,64,-0.7471450641751289],[114,156,65,-0.7455587666481733],[114,156,66,-0.7441743705421686],[114,156,67,-0.7430062610656023],[114,156,68,-0.7420899346470833],[114,156,69,-0.7410971540957689],[114,156,70,-0.7400190830230713],[114,156,71,-0.7386916745454073],[114,156,72,-0.7368230791762471],[114,156,73,-0.7345800111070275],[114,156,74,-0.7324781464412808],[114,156,75,-0.7311109788715839],[114,156,76,-0.7303372910246253],[114,156,77,-0.7297240369953215],[114,156,78,-0.728817418217659],[114,156,79,-0.7275496376678348],[114,157,64,-0.7549575641751289],[114,157,65,-0.7533712666481733],[114,157,66,-0.7519868705421686],[114,157,67,-0.7508187610656023],[114,157,68,-0.7499024346470833],[114,157,69,-0.7489096540957689],[114,157,70,-0.7478315830230713],[114,157,71,-0.7465041745454073],[114,157,72,-0.7446355791762471],[114,157,73,-0.7423925111070275],[114,157,74,-0.7402906464412808],[114,157,75,-0.7389234788715839],[114,157,76,-0.7381497910246253],[114,157,77,-0.7375365369953215],[114,157,78,-0.736629918217659],[114,157,79,-0.7353621376678348],[114,158,64,-0.7627700641751289],[114,158,65,-0.7611837666481733],[114,158,66,-0.7597993705421686],[114,158,67,-0.7586312610656023],[114,158,68,-0.7577149346470833],[114,158,69,-0.7567221540957689],[114,158,70,-0.7556440830230713],[114,158,71,-0.7543166745454073],[114,158,72,-0.7524480791762471],[114,158,73,-0.7502050111070275],[114,158,74,-0.7481031464412808],[114,158,75,-0.7467359788715839],[114,158,76,-0.7459622910246253],[114,158,77,-0.7453490369953215],[114,158,78,-0.744442418217659],[114,158,79,-0.7431746376678348],[114,159,64,-0.7705825641751289],[114,159,65,-0.7689962666481733],[114,159,66,-0.7676118705421686],[114,159,67,-0.7664437610656023],[114,159,68,-0.7655274346470833],[114,159,69,-0.7645346540957689],[114,159,70,-0.7634565830230713],[114,159,71,-0.7621291745454073],[114,159,72,-0.7602605791762471],[114,159,73,-0.7580175111070275],[114,159,74,-0.7559156464412808],[114,159,75,-0.7545484788715839],[114,159,76,-0.7537747910246253],[114,159,77,-0.7531615369953215],[114,159,78,-0.752254918217659],[114,159,79,-0.7509871376678348],[114,160,64,-0.7783950641751289],[114,160,65,-0.7768087666481733],[114,160,66,-0.7754243705421686],[114,160,67,-0.7742562610656023],[114,160,68,-0.7733399346470833],[114,160,69,-0.7723471540957689],[114,160,70,-0.7712690830230713],[114,160,71,-0.7699416745454073],[114,160,72,-0.7680730791762471],[114,160,73,-0.7658300111070275],[114,160,74,-0.7637281464412808],[114,160,75,-0.7623609788715839],[114,160,76,-0.7615872910246253],[114,160,77,-0.7609740369953215],[114,160,78,-0.760067418217659],[114,160,79,-0.7587996376678348],[114,161,64,-0.7862075641751289],[114,161,65,-0.7846212666481733],[114,161,66,-0.7832368705421686],[114,161,67,-0.7820687610656023],[114,161,68,-0.7811524346470833],[114,161,69,-0.7801596540957689],[114,161,70,-0.7790815830230713],[114,161,71,-0.7777541745454073],[114,161,72,-0.7758855791762471],[114,161,73,-0.7736425111070275],[114,161,74,-0.7715406464412808],[114,161,75,-0.7701734788715839],[114,161,76,-0.7693997910246253],[114,161,77,-0.7687865369953215],[114,161,78,-0.767879918217659],[114,161,79,-0.7666121376678348],[114,162,64,-0.7940200641751289],[114,162,65,-0.7924337666481733],[114,162,66,-0.7910493705421686],[114,162,67,-0.7898812610656023],[114,162,68,-0.7889649346470833],[114,162,69,-0.7879721540957689],[114,162,70,-0.7868940830230713],[114,162,71,-0.7855666745454073],[114,162,72,-0.7836980791762471],[114,162,73,-0.7814550111070275],[114,162,74,-0.7793531464412808],[114,162,75,-0.7779859788715839],[114,162,76,-0.7772122910246253],[114,162,77,-0.7765990369953215],[114,162,78,-0.775692418217659],[114,162,79,-0.7744246376678348],[114,163,64,-0.8018325641751289],[114,163,65,-0.8002462666481733],[114,163,66,-0.7988618705421686],[114,163,67,-0.7976937610656023],[114,163,68,-0.7967774346470833],[114,163,69,-0.7957846540957689],[114,163,70,-0.7947065830230713],[114,163,71,-0.7933791745454073],[114,163,72,-0.7915105791762471],[114,163,73,-0.7892675111070275],[114,163,74,-0.7871656464412808],[114,163,75,-0.7857984788715839],[114,163,76,-0.7850247910246253],[114,163,77,-0.7844115369953215],[114,163,78,-0.783504918217659],[114,163,79,-0.7822371376678348],[114,164,64,-0.8096450641751289],[114,164,65,-0.8080587666481733],[114,164,66,-0.8066743705421686],[114,164,67,-0.8055062610656023],[114,164,68,-0.8045899346470833],[114,164,69,-0.8035971540957689],[114,164,70,-0.8025190830230713],[114,164,71,-0.8011916745454073],[114,164,72,-0.7993230791762471],[114,164,73,-0.7970800111070275],[114,164,74,-0.7949781464412808],[114,164,75,-0.7936109788715839],[114,164,76,-0.7928372910246253],[114,164,77,-0.7922240369953215],[114,164,78,-0.791317418217659],[114,164,79,-0.7900496376678348],[114,165,64,-0.8174575641751289],[114,165,65,-0.8158712666481733],[114,165,66,-0.8144868705421686],[114,165,67,-0.8133187610656023],[114,165,68,-0.8124024346470833],[114,165,69,-0.8114096540957689],[114,165,70,-0.8103315830230713],[114,165,71,-0.8090041745454073],[114,165,72,-0.8071355791762471],[114,165,73,-0.8048925111070275],[114,165,74,-0.8027906464412808],[114,165,75,-0.8014234788715839],[114,165,76,-0.8006497910246253],[114,165,77,-0.8000365369953215],[114,165,78,-0.799129918217659],[114,165,79,-0.7978621376678348],[114,166,64,-0.8252700641751289],[114,166,65,-0.8236837666481733],[114,166,66,-0.8222993705421686],[114,166,67,-0.8211312610656023],[114,166,68,-0.8202149346470833],[114,166,69,-0.8192221540957689],[114,166,70,-0.8181440830230713],[114,166,71,-0.8168166745454073],[114,166,72,-0.8149480791762471],[114,166,73,-0.8127050111070275],[114,166,74,-0.8106031464412808],[114,166,75,-0.8092359788715839],[114,166,76,-0.8084622910246253],[114,166,77,-0.8078490369953215],[114,166,78,-0.806942418217659],[114,166,79,-0.8056746376678348],[114,167,64,-0.8330825641751289],[114,167,65,-0.8314962666481733],[114,167,66,-0.8301118705421686],[114,167,67,-0.8289437610656023],[114,167,68,-0.8280274346470833],[114,167,69,-0.8270346540957689],[114,167,70,-0.8259565830230713],[114,167,71,-0.8246291745454073],[114,167,72,-0.8227605791762471],[114,167,73,-0.8205175111070275],[114,167,74,-0.8184156464412808],[114,167,75,-0.8170484788715839],[114,167,76,-0.8162747910246253],[114,167,77,-0.8156615369953215],[114,167,78,-0.814754918217659],[114,167,79,-0.8134871376678348],[114,168,64,-0.8408950641751289],[114,168,65,-0.8393087666481733],[114,168,66,-0.8379243705421686],[114,168,67,-0.8367562610656023],[114,168,68,-0.8358399346470833],[114,168,69,-0.8348471540957689],[114,168,70,-0.8337690830230713],[114,168,71,-0.8324416745454073],[114,168,72,-0.8305730791762471],[114,168,73,-0.8283300111070275],[114,168,74,-0.8262281464412808],[114,168,75,-0.8248609788715839],[114,168,76,-0.8240872910246253],[114,168,77,-0.8234740369953215],[114,168,78,-0.822567418217659],[114,168,79,-0.8212996376678348],[114,169,64,-0.8487075641751289],[114,169,65,-0.8471212666481733],[114,169,66,-0.8457368705421686],[114,169,67,-0.8445687610656023],[114,169,68,-0.8436524346470833],[114,169,69,-0.8426596540957689],[114,169,70,-0.8415815830230713],[114,169,71,-0.8402541745454073],[114,169,72,-0.8383855791762471],[114,169,73,-0.8361425111070275],[114,169,74,-0.8340406464412808],[114,169,75,-0.8326734788715839],[114,169,76,-0.8318997910246253],[114,169,77,-0.8312865369953215],[114,169,78,-0.830379918217659],[114,169,79,-0.8291121376678348],[114,170,64,-0.8565200641751289],[114,170,65,-0.8549337666481733],[114,170,66,-0.8535493705421686],[114,170,67,-0.8523812610656023],[114,170,68,-0.8514649346470833],[114,170,69,-0.8504721540957689],[114,170,70,-0.8493940830230713],[114,170,71,-0.8480666745454073],[114,170,72,-0.8461980791762471],[114,170,73,-0.8439550111070275],[114,170,74,-0.8418531464412808],[114,170,75,-0.8404859788715839],[114,170,76,-0.8397122910246253],[114,170,77,-0.8390990369953215],[114,170,78,-0.838192418217659],[114,170,79,-0.8369246376678348],[114,171,64,-0.8643325641751289],[114,171,65,-0.8627462666481733],[114,171,66,-0.8613618705421686],[114,171,67,-0.8601937610656023],[114,171,68,-0.8592774346470833],[114,171,69,-0.8582846540957689],[114,171,70,-0.8572065830230713],[114,171,71,-0.8558791745454073],[114,171,72,-0.8540105791762471],[114,171,73,-0.8517675111070275],[114,171,74,-0.8496656464412808],[114,171,75,-0.8482984788715839],[114,171,76,-0.8475247910246253],[114,171,77,-0.8469115369953215],[114,171,78,-0.846004918217659],[114,171,79,-0.8447371376678348],[114,172,64,-0.8721450641751289],[114,172,65,-0.8705587666481733],[114,172,66,-0.8691743705421686],[114,172,67,-0.8680062610656023],[114,172,68,-0.8670899346470833],[114,172,69,-0.8660971540957689],[114,172,70,-0.8650190830230713],[114,172,71,-0.8636916745454073],[114,172,72,-0.8618230791762471],[114,172,73,-0.8595800111070275],[114,172,74,-0.8574781464412808],[114,172,75,-0.8561109788715839],[114,172,76,-0.8553372910246253],[114,172,77,-0.8547240369953215],[114,172,78,-0.853817418217659],[114,172,79,-0.8525496376678348],[114,173,64,-0.8799575641751289],[114,173,65,-0.8783712666481733],[114,173,66,-0.8769868705421686],[114,173,67,-0.8758187610656023],[114,173,68,-0.8749024346470833],[114,173,69,-0.8739096540957689],[114,173,70,-0.8728315830230713],[114,173,71,-0.8715041745454073],[114,173,72,-0.8696355791762471],[114,173,73,-0.8673925111070275],[114,173,74,-0.8652906464412808],[114,173,75,-0.8639234788715839],[114,173,76,-0.8631497910246253],[114,173,77,-0.8625365369953215],[114,173,78,-0.861629918217659],[114,173,79,-0.8603621376678348],[114,174,64,-0.8877700641751289],[114,174,65,-0.8861837666481733],[114,174,66,-0.8847993705421686],[114,174,67,-0.8836312610656023],[114,174,68,-0.8827149346470833],[114,174,69,-0.8817221540957689],[114,174,70,-0.8806440830230713],[114,174,71,-0.8793166745454073],[114,174,72,-0.8774480791762471],[114,174,73,-0.8752050111070275],[114,174,74,-0.8731031464412808],[114,174,75,-0.8717359788715839],[114,174,76,-0.8709622910246253],[114,174,77,-0.8703490369953215],[114,174,78,-0.869442418217659],[114,174,79,-0.8681746376678348],[114,175,64,-0.8955825641751289],[114,175,65,-0.8939962666481733],[114,175,66,-0.8926118705421686],[114,175,67,-0.8914437610656023],[114,175,68,-0.8905274346470833],[114,175,69,-0.8895346540957689],[114,175,70,-0.8884565830230713],[114,175,71,-0.8871291745454073],[114,175,72,-0.8852605791762471],[114,175,73,-0.8830175111070275],[114,175,74,-0.8809156464412808],[114,175,75,-0.8795484788715839],[114,175,76,-0.8787747910246253],[114,175,77,-0.8781615369953215],[114,175,78,-0.877254918217659],[114,175,79,-0.8759871376678348],[114,176,64,-0.9033950641751289],[114,176,65,-0.9018087666481733],[114,176,66,-0.9004243705421686],[114,176,67,-0.8992562610656023],[114,176,68,-0.8983399346470833],[114,176,69,-0.8973471540957689],[114,176,70,-0.8962690830230713],[114,176,71,-0.8949416745454073],[114,176,72,-0.8930730791762471],[114,176,73,-0.8908300111070275],[114,176,74,-0.8887281464412808],[114,176,75,-0.8873609788715839],[114,176,76,-0.8865872910246253],[114,176,77,-0.8859740369953215],[114,176,78,-0.885067418217659],[114,176,79,-0.8837996376678348],[114,177,64,-0.9112075641751289],[114,177,65,-0.9096212666481733],[114,177,66,-0.9082368705421686],[114,177,67,-0.9070687610656023],[114,177,68,-0.9061524346470833],[114,177,69,-0.9051596540957689],[114,177,70,-0.9040815830230713],[114,177,71,-0.9027541745454073],[114,177,72,-0.9008855791762471],[114,177,73,-0.8986425111070275],[114,177,74,-0.8965406464412808],[114,177,75,-0.8951734788715839],[114,177,76,-0.8943997910246253],[114,177,77,-0.8937865369953215],[114,177,78,-0.892879918217659],[114,177,79,-0.8916121376678348],[114,178,64,-0.9190200641751289],[114,178,65,-0.9174337666481733],[114,178,66,-0.9160493705421686],[114,178,67,-0.9148812610656023],[114,178,68,-0.9139649346470833],[114,178,69,-0.9129721540957689],[114,178,70,-0.9118940830230713],[114,178,71,-0.9105666745454073],[114,178,72,-0.9086980791762471],[114,178,73,-0.9064550111070275],[114,178,74,-0.9043531464412808],[114,178,75,-0.9029859788715839],[114,178,76,-0.9022122910246253],[114,178,77,-0.9015990369953215],[114,178,78,-0.900692418217659],[114,178,79,-0.8994246376678348],[114,179,64,-0.9268325641751289],[114,179,65,-0.9252462666481733],[114,179,66,-0.9238618705421686],[114,179,67,-0.9226937610656023],[114,179,68,-0.9217774346470833],[114,179,69,-0.9207846540957689],[114,179,70,-0.9197065830230713],[114,179,71,-0.9183791745454073],[114,179,72,-0.9165105791762471],[114,179,73,-0.9142675111070275],[114,179,74,-0.9121656464412808],[114,179,75,-0.9107984788715839],[114,179,76,-0.9100247910246253],[114,179,77,-0.9094115369953215],[114,179,78,-0.908504918217659],[114,179,79,-0.9072371376678348],[114,180,64,-0.9346450641751289],[114,180,65,-0.9330587666481733],[114,180,66,-0.9316743705421686],[114,180,67,-0.9305062610656023],[114,180,68,-0.9295899346470833],[114,180,69,-0.9285971540957689],[114,180,70,-0.9275190830230713],[114,180,71,-0.9261916745454073],[114,180,72,-0.9243230791762471],[114,180,73,-0.9220800111070275],[114,180,74,-0.9199781464412808],[114,180,75,-0.9186109788715839],[114,180,76,-0.9178372910246253],[114,180,77,-0.9172240369953215],[114,180,78,-0.916317418217659],[114,180,79,-0.9150496376678348],[114,181,64,-0.9424575641751289],[114,181,65,-0.9408712666481733],[114,181,66,-0.9394868705421686],[114,181,67,-0.9383187610656023],[114,181,68,-0.9374024346470833],[114,181,69,-0.9364096540957689],[114,181,70,-0.9353315830230713],[114,181,71,-0.9340041745454073],[114,181,72,-0.9321355791762471],[114,181,73,-0.9298925111070275],[114,181,74,-0.9277906464412808],[114,181,75,-0.9264234788715839],[114,181,76,-0.9256497910246253],[114,181,77,-0.9250365369953215],[114,181,78,-0.924129918217659],[114,181,79,-0.9228621376678348],[114,182,64,-0.9502700641751289],[114,182,65,-0.9486837666481733],[114,182,66,-0.9472993705421686],[114,182,67,-0.9461312610656023],[114,182,68,-0.9452149346470833],[114,182,69,-0.9442221540957689],[114,182,70,-0.9431440830230713],[114,182,71,-0.9418166745454073],[114,182,72,-0.9399480791762471],[114,182,73,-0.9377050111070275],[114,182,74,-0.9356031464412808],[114,182,75,-0.9342359788715839],[114,182,76,-0.9334622910246253],[114,182,77,-0.9328490369953215],[114,182,78,-0.931942418217659],[114,182,79,-0.9306746376678348],[114,183,64,-0.9580825641751289],[114,183,65,-0.9564962666481733],[114,183,66,-0.9551118705421686],[114,183,67,-0.9539437610656023],[114,183,68,-0.9530274346470833],[114,183,69,-0.9520346540957689],[114,183,70,-0.9509565830230713],[114,183,71,-0.9496291745454073],[114,183,72,-0.9477605791762471],[114,183,73,-0.9455175111070275],[114,183,74,-0.9434156464412808],[114,183,75,-0.9420484788715839],[114,183,76,-0.9412747910246253],[114,183,77,-0.9406615369953215],[114,183,78,-0.939754918217659],[114,183,79,-0.9384871376678348],[114,184,64,-0.9658950641751289],[114,184,65,-0.9643087666481733],[114,184,66,-0.9629243705421686],[114,184,67,-0.9617562610656023],[114,184,68,-0.9608399346470833],[114,184,69,-0.9598471540957689],[114,184,70,-0.9587690830230713],[114,184,71,-0.9574416745454073],[114,184,72,-0.9555730791762471],[114,184,73,-0.9533300111070275],[114,184,74,-0.9512281464412808],[114,184,75,-0.9498609788715839],[114,184,76,-0.9490872910246253],[114,184,77,-0.9484740369953215],[114,184,78,-0.947567418217659],[114,184,79,-0.9462996376678348],[114,185,64,-0.9737075641751289],[114,185,65,-0.9721212666481733],[114,185,66,-0.9707368705421686],[114,185,67,-0.9695687610656023],[114,185,68,-0.9686524346470833],[114,185,69,-0.9676596540957689],[114,185,70,-0.9665815830230713],[114,185,71,-0.9652541745454073],[114,185,72,-0.9633855791762471],[114,185,73,-0.9611425111070275],[114,185,74,-0.9590406464412808],[114,185,75,-0.9576734788715839],[114,185,76,-0.9568997910246253],[114,185,77,-0.9562865369953215],[114,185,78,-0.955379918217659],[114,185,79,-0.9541121376678348],[114,186,64,-0.9815200641751289],[114,186,65,-0.9799337666481733],[114,186,66,-0.9785493705421686],[114,186,67,-0.9773812610656023],[114,186,68,-0.9764649346470833],[114,186,69,-0.9754721540957689],[114,186,70,-0.9743940830230713],[114,186,71,-0.9730666745454073],[114,186,72,-0.9711980791762471],[114,186,73,-0.9689550111070275],[114,186,74,-0.9668531464412808],[114,186,75,-0.9654859788715839],[114,186,76,-0.9647122910246253],[114,186,77,-0.9640990369953215],[114,186,78,-0.963192418217659],[114,186,79,-0.9619246376678348],[114,187,64,-0.9893325641751289],[114,187,65,-0.9877462666481733],[114,187,66,-0.9863618705421686],[114,187,67,-0.9851937610656023],[114,187,68,-0.9842774346470833],[114,187,69,-0.9832846540957689],[114,187,70,-0.9822065830230713],[114,187,71,-0.9808791745454073],[114,187,72,-0.9790105791762471],[114,187,73,-0.9767675111070275],[114,187,74,-0.9746656464412808],[114,187,75,-0.9732984788715839],[114,187,76,-0.9725247910246253],[114,187,77,-0.9719115369953215],[114,187,78,-0.971004918217659],[114,187,79,-0.9697371376678348],[114,188,64,-0.9971450641751289],[114,188,65,-0.9955587666481733],[114,188,66,-0.9941743705421686],[114,188,67,-0.9930062610656023],[114,188,68,-0.9920899346470833],[114,188,69,-0.9910971540957689],[114,188,70,-0.9900190830230713],[114,188,71,-0.9886916745454073],[114,188,72,-0.9868230791762471],[114,188,73,-0.9845800111070275],[114,188,74,-0.9824781464412808],[114,188,75,-0.9811109788715839],[114,188,76,-0.9803372910246253],[114,188,77,-0.9797240369953215],[114,188,78,-0.978817418217659],[114,188,79,-0.9775496376678348],[114,189,64,-1.004957564175129],[114,189,65,-1.0033712666481733],[114,189,66,-1.0019868705421686],[114,189,67,-1.0008187610656023],[114,189,68,-0.9999024346470833],[114,189,69,-0.9989096540957689],[114,189,70,-0.9978315830230713],[114,189,71,-0.9965041745454073],[114,189,72,-0.9946355791762471],[114,189,73,-0.9923925111070275],[114,189,74,-0.9902906464412808],[114,189,75,-0.9889234788715839],[114,189,76,-0.9881497910246253],[114,189,77,-0.9875365369953215],[114,189,78,-0.986629918217659],[114,189,79,-0.9853621376678348],[114,190,64,-1.012770064175129],[114,190,65,-1.0111837666481733],[114,190,66,-1.0097993705421686],[114,190,67,-1.0086312610656023],[114,190,68,-1.0077149346470833],[114,190,69,-1.006722154095769],[114,190,70,-1.0056440830230713],[114,190,71,-1.0043166745454073],[114,190,72,-1.0024480791762471],[114,190,73,-1.0002050111070275],[114,190,74,-0.9981031464412808],[114,190,75,-0.9967359788715839],[114,190,76,-0.9959622910246253],[114,190,77,-0.9953490369953215],[114,190,78,-0.994442418217659],[114,190,79,-0.9931746376678348],[114,191,64,-1.020582564175129],[114,191,65,-1.0189962666481733],[114,191,66,-1.0176118705421686],[114,191,67,-1.0164437610656023],[114,191,68,-1.0155274346470833],[114,191,69,-1.014534654095769],[114,191,70,-1.0134565830230713],[114,191,71,-1.0121291745454073],[114,191,72,-1.0102605791762471],[114,191,73,-1.0080175111070275],[114,191,74,-1.0059156464412808],[114,191,75,-1.004548478871584],[114,191,76,-1.0037747910246253],[114,191,77,-1.0031615369953215],[114,191,78,-1.002254918217659],[114,191,79,-1.0009871376678348],[114,192,64,-1.028395064175129],[114,192,65,-1.0268087666481733],[114,192,66,-1.0254243705421686],[114,192,67,-1.0242562610656023],[114,192,68,-1.0233399346470833],[114,192,69,-1.022347154095769],[114,192,70,-1.0212690830230713],[114,192,71,-1.0199416745454073],[114,192,72,-1.0180730791762471],[114,192,73,-1.0158300111070275],[114,192,74,-1.0137281464412808],[114,192,75,-1.012360978871584],[114,192,76,-1.0115872910246253],[114,192,77,-1.0109740369953215],[114,192,78,-1.010067418217659],[114,192,79,-1.0087996376678348],[114,193,64,-1.036207564175129],[114,193,65,-1.0346212666481733],[114,193,66,-1.0332368705421686],[114,193,67,-1.0320687610656023],[114,193,68,-1.0311524346470833],[114,193,69,-1.030159654095769],[114,193,70,-1.0290815830230713],[114,193,71,-1.0277541745454073],[114,193,72,-1.0258855791762471],[114,193,73,-1.0236425111070275],[114,193,74,-1.0215406464412808],[114,193,75,-1.020173478871584],[114,193,76,-1.0193997910246253],[114,193,77,-1.0187865369953215],[114,193,78,-1.017879918217659],[114,193,79,-1.0166121376678348],[114,194,64,-1.044020064175129],[114,194,65,-1.0424337666481733],[114,194,66,-1.0410493705421686],[114,194,67,-1.0398812610656023],[114,194,68,-1.0389649346470833],[114,194,69,-1.037972154095769],[114,194,70,-1.0368940830230713],[114,194,71,-1.0355666745454073],[114,194,72,-1.0336980791762471],[114,194,73,-1.0314550111070275],[114,194,74,-1.0293531464412808],[114,194,75,-1.027985978871584],[114,194,76,-1.0272122910246253],[114,194,77,-1.0265990369953215],[114,194,78,-1.025692418217659],[114,194,79,-1.0244246376678348],[114,195,64,-1.051832564175129],[114,195,65,-1.0502462666481733],[114,195,66,-1.0488618705421686],[114,195,67,-1.0476937610656023],[114,195,68,-1.0467774346470833],[114,195,69,-1.045784654095769],[114,195,70,-1.0447065830230713],[114,195,71,-1.0433791745454073],[114,195,72,-1.0415105791762471],[114,195,73,-1.0392675111070275],[114,195,74,-1.0371656464412808],[114,195,75,-1.035798478871584],[114,195,76,-1.0350247910246253],[114,195,77,-1.0344115369953215],[114,195,78,-1.033504918217659],[114,195,79,-1.0322371376678348],[114,196,64,-1.059645064175129],[114,196,65,-1.0580587666481733],[114,196,66,-1.0566743705421686],[114,196,67,-1.0555062610656023],[114,196,68,-1.0545899346470833],[114,196,69,-1.053597154095769],[114,196,70,-1.0525190830230713],[114,196,71,-1.0511916745454073],[114,196,72,-1.0493230791762471],[114,196,73,-1.0470800111070275],[114,196,74,-1.0449781464412808],[114,196,75,-1.043610978871584],[114,196,76,-1.0428372910246253],[114,196,77,-1.0422240369953215],[114,196,78,-1.041317418217659],[114,196,79,-1.0400496376678348],[114,197,64,-1.067457564175129],[114,197,65,-1.0658712666481733],[114,197,66,-1.0644868705421686],[114,197,67,-1.0633187610656023],[114,197,68,-1.0624024346470833],[114,197,69,-1.061409654095769],[114,197,70,-1.0603315830230713],[114,197,71,-1.0590041745454073],[114,197,72,-1.0571355791762471],[114,197,73,-1.0548925111070275],[114,197,74,-1.0527906464412808],[114,197,75,-1.051423478871584],[114,197,76,-1.0506497910246253],[114,197,77,-1.0500365369953215],[114,197,78,-1.049129918217659],[114,197,79,-1.0478621376678348],[114,198,64,-1.075270064175129],[114,198,65,-1.0736837666481733],[114,198,66,-1.0722993705421686],[114,198,67,-1.0711312610656023],[114,198,68,-1.0702149346470833],[114,198,69,-1.069222154095769],[114,198,70,-1.0681440830230713],[114,198,71,-1.0668166745454073],[114,198,72,-1.0649480791762471],[114,198,73,-1.0627050111070275],[114,198,74,-1.0606031464412808],[114,198,75,-1.059235978871584],[114,198,76,-1.0584622910246253],[114,198,77,-1.0578490369953215],[114,198,78,-1.056942418217659],[114,198,79,-1.0556746376678348],[114,199,64,-1.083082564175129],[114,199,65,-1.0814962666481733],[114,199,66,-1.0801118705421686],[114,199,67,-1.0789437610656023],[114,199,68,-1.0780274346470833],[114,199,69,-1.077034654095769],[114,199,70,-1.0759565830230713],[114,199,71,-1.0746291745454073],[114,199,72,-1.0727605791762471],[114,199,73,-1.0705175111070275],[114,199,74,-1.0684156464412808],[114,199,75,-1.067048478871584],[114,199,76,-1.0662747910246253],[114,199,77,-1.0656615369953215],[114,199,78,-1.064754918217659],[114,199,79,-1.0634871376678348],[114,200,64,-1.090895064175129],[114,200,65,-1.0893087666481733],[114,200,66,-1.0879243705421686],[114,200,67,-1.0867562610656023],[114,200,68,-1.0858399346470833],[114,200,69,-1.084847154095769],[114,200,70,-1.0837690830230713],[114,200,71,-1.0824416745454073],[114,200,72,-1.0805730791762471],[114,200,73,-1.0783300111070275],[114,200,74,-1.0762281464412808],[114,200,75,-1.074860978871584],[114,200,76,-1.0740872910246253],[114,200,77,-1.0734740369953215],[114,200,78,-1.072567418217659],[114,200,79,-1.0712996376678348],[114,201,64,-1.098707564175129],[114,201,65,-1.0971212666481733],[114,201,66,-1.0957368705421686],[114,201,67,-1.0945687610656023],[114,201,68,-1.0936524346470833],[114,201,69,-1.092659654095769],[114,201,70,-1.0915815830230713],[114,201,71,-1.0902541745454073],[114,201,72,-1.0883855791762471],[114,201,73,-1.0861425111070275],[114,201,74,-1.0840406464412808],[114,201,75,-1.082673478871584],[114,201,76,-1.0818997910246253],[114,201,77,-1.0812865369953215],[114,201,78,-1.080379918217659],[114,201,79,-1.0791121376678348],[114,202,64,-1.106520064175129],[114,202,65,-1.1049337666481733],[114,202,66,-1.1035493705421686],[114,202,67,-1.1023812610656023],[114,202,68,-1.1014649346470833],[114,202,69,-1.100472154095769],[114,202,70,-1.0993940830230713],[114,202,71,-1.0980666745454073],[114,202,72,-1.0961980791762471],[114,202,73,-1.0939550111070275],[114,202,74,-1.0918531464412808],[114,202,75,-1.090485978871584],[114,202,76,-1.0897122910246253],[114,202,77,-1.0890990369953215],[114,202,78,-1.088192418217659],[114,202,79,-1.0869246376678348],[114,203,64,-1.114332564175129],[114,203,65,-1.1127462666481733],[114,203,66,-1.1113618705421686],[114,203,67,-1.1101937610656023],[114,203,68,-1.1092774346470833],[114,203,69,-1.108284654095769],[114,203,70,-1.1072065830230713],[114,203,71,-1.1058791745454073],[114,203,72,-1.1040105791762471],[114,203,73,-1.1017675111070275],[114,203,74,-1.0996656464412808],[114,203,75,-1.098298478871584],[114,203,76,-1.0975247910246253],[114,203,77,-1.0969115369953215],[114,203,78,-1.096004918217659],[114,203,79,-1.0947371376678348],[114,204,64,-1.122145064175129],[114,204,65,-1.1205587666481733],[114,204,66,-1.1191743705421686],[114,204,67,-1.1180062610656023],[114,204,68,-1.1170899346470833],[114,204,69,-1.116097154095769],[114,204,70,-1.1150190830230713],[114,204,71,-1.1136916745454073],[114,204,72,-1.1118230791762471],[114,204,73,-1.1095800111070275],[114,204,74,-1.1074781464412808],[114,204,75,-1.106110978871584],[114,204,76,-1.1053372910246253],[114,204,77,-1.1047240369953215],[114,204,78,-1.103817418217659],[114,204,79,-1.1025496376678348],[114,205,64,-1.129957564175129],[114,205,65,-1.1283712666481733],[114,205,66,-1.1269868705421686],[114,205,67,-1.1258187610656023],[114,205,68,-1.1249024346470833],[114,205,69,-1.123909654095769],[114,205,70,-1.1228315830230713],[114,205,71,-1.1215041745454073],[114,205,72,-1.1196355791762471],[114,205,73,-1.1173925111070275],[114,205,74,-1.1152906464412808],[114,205,75,-1.113923478871584],[114,205,76,-1.1131497910246253],[114,205,77,-1.1125365369953215],[114,205,78,-1.111629918217659],[114,205,79,-1.1103621376678348],[114,206,64,-1.137770064175129],[114,206,65,-1.1361837666481733],[114,206,66,-1.1347993705421686],[114,206,67,-1.1336312610656023],[114,206,68,-1.1327149346470833],[114,206,69,-1.131722154095769],[114,206,70,-1.1306440830230713],[114,206,71,-1.1293166745454073],[114,206,72,-1.1274480791762471],[114,206,73,-1.1252050111070275],[114,206,74,-1.1231031464412808],[114,206,75,-1.121735978871584],[114,206,76,-1.1209622910246253],[114,206,77,-1.1203490369953215],[114,206,78,-1.119442418217659],[114,206,79,-1.1181746376678348],[114,207,64,-1.145582564175129],[114,207,65,-1.1439962666481733],[114,207,66,-1.1426118705421686],[114,207,67,-1.1414437610656023],[114,207,68,-1.1405274346470833],[114,207,69,-1.139534654095769],[114,207,70,-1.1384565830230713],[114,207,71,-1.1371291745454073],[114,207,72,-1.1352605791762471],[114,207,73,-1.1330175111070275],[114,207,74,-1.1309156464412808],[114,207,75,-1.129548478871584],[114,207,76,-1.1287747910246253],[114,207,77,-1.1281615369953215],[114,207,78,-1.127254918217659],[114,207,79,-1.1259871376678348],[114,208,64,-1.153395064175129],[114,208,65,-1.1518087666481733],[114,208,66,-1.1504243705421686],[114,208,67,-1.1492562610656023],[114,208,68,-1.1483399346470833],[114,208,69,-1.147347154095769],[114,208,70,-1.1462690830230713],[114,208,71,-1.1449416745454073],[114,208,72,-1.1430730791762471],[114,208,73,-1.1408300111070275],[114,208,74,-1.1387281464412808],[114,208,75,-1.137360978871584],[114,208,76,-1.1365872910246253],[114,208,77,-1.1359740369953215],[114,208,78,-1.135067418217659],[114,208,79,-1.1337996376678348],[114,209,64,-1.161207564175129],[114,209,65,-1.1596212666481733],[114,209,66,-1.1582368705421686],[114,209,67,-1.1570687610656023],[114,209,68,-1.1561524346470833],[114,209,69,-1.155159654095769],[114,209,70,-1.1540815830230713],[114,209,71,-1.1527541745454073],[114,209,72,-1.1508855791762471],[114,209,73,-1.1486425111070275],[114,209,74,-1.1465406464412808],[114,209,75,-1.145173478871584],[114,209,76,-1.1443997910246253],[114,209,77,-1.1437865369953215],[114,209,78,-1.142879918217659],[114,209,79,-1.1416121376678348],[114,210,64,-1.169020064175129],[114,210,65,-1.1674337666481733],[114,210,66,-1.1660493705421686],[114,210,67,-1.1648812610656023],[114,210,68,-1.1639649346470833],[114,210,69,-1.162972154095769],[114,210,70,-1.1618940830230713],[114,210,71,-1.1605666745454073],[114,210,72,-1.1586980791762471],[114,210,73,-1.1564550111070275],[114,210,74,-1.1543531464412808],[114,210,75,-1.152985978871584],[114,210,76,-1.1522122910246253],[114,210,77,-1.1515990369953215],[114,210,78,-1.150692418217659],[114,210,79,-1.1494246376678348],[114,211,64,-1.176832564175129],[114,211,65,-1.1752462666481733],[114,211,66,-1.1738618705421686],[114,211,67,-1.1726937610656023],[114,211,68,-1.1717774346470833],[114,211,69,-1.170784654095769],[114,211,70,-1.1697065830230713],[114,211,71,-1.1683791745454073],[114,211,72,-1.1665105791762471],[114,211,73,-1.1642675111070275],[114,211,74,-1.1621656464412808],[114,211,75,-1.160798478871584],[114,211,76,-1.1600247910246253],[114,211,77,-1.1594115369953215],[114,211,78,-1.158504918217659],[114,211,79,-1.1572371376678348],[114,212,64,-1.184645064175129],[114,212,65,-1.1830587666481733],[114,212,66,-1.1816743705421686],[114,212,67,-1.1805062610656023],[114,212,68,-1.1795899346470833],[114,212,69,-1.178597154095769],[114,212,70,-1.1775190830230713],[114,212,71,-1.1761916745454073],[114,212,72,-1.1743230791762471],[114,212,73,-1.1720800111070275],[114,212,74,-1.1699781464412808],[114,212,75,-1.168610978871584],[114,212,76,-1.1678372910246253],[114,212,77,-1.1672240369953215],[114,212,78,-1.166317418217659],[114,212,79,-1.1650496376678348],[114,213,64,-1.192457564175129],[114,213,65,-1.1908712666481733],[114,213,66,-1.1894868705421686],[114,213,67,-1.1883187610656023],[114,213,68,-1.1874024346470833],[114,213,69,-1.186409654095769],[114,213,70,-1.1853315830230713],[114,213,71,-1.1840041745454073],[114,213,72,-1.1821355791762471],[114,213,73,-1.1798925111070275],[114,213,74,-1.1777906464412808],[114,213,75,-1.176423478871584],[114,213,76,-1.1756497910246253],[114,213,77,-1.1750365369953215],[114,213,78,-1.174129918217659],[114,213,79,-1.1728621376678348],[114,214,64,-1.200270064175129],[114,214,65,-1.1986837666481733],[114,214,66,-1.1972993705421686],[114,214,67,-1.1961312610656023],[114,214,68,-1.1952149346470833],[114,214,69,-1.194222154095769],[114,214,70,-1.1931440830230713],[114,214,71,-1.1918166745454073],[114,214,72,-1.1899480791762471],[114,214,73,-1.1877050111070275],[114,214,74,-1.1856031464412808],[114,214,75,-1.184235978871584],[114,214,76,-1.1834622910246253],[114,214,77,-1.1828490369953215],[114,214,78,-1.181942418217659],[114,214,79,-1.1806746376678348],[114,215,64,-1.208082564175129],[114,215,65,-1.2064962666481733],[114,215,66,-1.2051118705421686],[114,215,67,-1.2039437610656023],[114,215,68,-1.2030274346470833],[114,215,69,-1.202034654095769],[114,215,70,-1.2009565830230713],[114,215,71,-1.1996291745454073],[114,215,72,-1.1977605791762471],[114,215,73,-1.1955175111070275],[114,215,74,-1.1934156464412808],[114,215,75,-1.192048478871584],[114,215,76,-1.1912747910246253],[114,215,77,-1.1906615369953215],[114,215,78,-1.189754918217659],[114,215,79,-1.1884871376678348],[114,216,64,-1.215895064175129],[114,216,65,-1.2143087666481733],[114,216,66,-1.2129243705421686],[114,216,67,-1.2117562610656023],[114,216,68,-1.2108399346470833],[114,216,69,-1.209847154095769],[114,216,70,-1.2087690830230713],[114,216,71,-1.2074416745454073],[114,216,72,-1.2055730791762471],[114,216,73,-1.2033300111070275],[114,216,74,-1.2012281464412808],[114,216,75,-1.199860978871584],[114,216,76,-1.1990872910246253],[114,216,77,-1.1984740369953215],[114,216,78,-1.197567418217659],[114,216,79,-1.1962996376678348],[114,217,64,-1.223707564175129],[114,217,65,-1.2221212666481733],[114,217,66,-1.2207368705421686],[114,217,67,-1.2195687610656023],[114,217,68,-1.2186524346470833],[114,217,69,-1.217659654095769],[114,217,70,-1.2165815830230713],[114,217,71,-1.2152541745454073],[114,217,72,-1.2133855791762471],[114,217,73,-1.2111425111070275],[114,217,74,-1.2090406464412808],[114,217,75,-1.207673478871584],[114,217,76,-1.2068997910246253],[114,217,77,-1.2062865369953215],[114,217,78,-1.205379918217659],[114,217,79,-1.2041121376678348],[114,218,64,-1.231520064175129],[114,218,65,-1.2299337666481733],[114,218,66,-1.2285493705421686],[114,218,67,-1.2273812610656023],[114,218,68,-1.2264649346470833],[114,218,69,-1.225472154095769],[114,218,70,-1.2243940830230713],[114,218,71,-1.2230666745454073],[114,218,72,-1.2211980791762471],[114,218,73,-1.2189550111070275],[114,218,74,-1.2168531464412808],[114,218,75,-1.215485978871584],[114,218,76,-1.2147122910246253],[114,218,77,-1.2140990369953215],[114,218,78,-1.213192418217659],[114,218,79,-1.2119246376678348],[114,219,64,-1.239332564175129],[114,219,65,-1.2377462666481733],[114,219,66,-1.2363618705421686],[114,219,67,-1.2351937610656023],[114,219,68,-1.2342774346470833],[114,219,69,-1.233284654095769],[114,219,70,-1.2322065830230713],[114,219,71,-1.2308791745454073],[114,219,72,-1.2290105791762471],[114,219,73,-1.2267675111070275],[114,219,74,-1.2246656464412808],[114,219,75,-1.223298478871584],[114,219,76,-1.2225247910246253],[114,219,77,-1.2219115369953215],[114,219,78,-1.221004918217659],[114,219,79,-1.2197371376678348],[114,220,64,-1.247145064175129],[114,220,65,-1.2455587666481733],[114,220,66,-1.2441743705421686],[114,220,67,-1.2430062610656023],[114,220,68,-1.2420899346470833],[114,220,69,-1.241097154095769],[114,220,70,-1.2400190830230713],[114,220,71,-1.2386916745454073],[114,220,72,-1.2368230791762471],[114,220,73,-1.2345800111070275],[114,220,74,-1.2324781464412808],[114,220,75,-1.231110978871584],[114,220,76,-1.2303372910246253],[114,220,77,-1.2297240369953215],[114,220,78,-1.228817418217659],[114,220,79,-1.2275496376678348],[114,221,64,-1.254957564175129],[114,221,65,-1.2533712666481733],[114,221,66,-1.2519868705421686],[114,221,67,-1.2508187610656023],[114,221,68,-1.2499024346470833],[114,221,69,-1.248909654095769],[114,221,70,-1.2478315830230713],[114,221,71,-1.2465041745454073],[114,221,72,-1.2446355791762471],[114,221,73,-1.2423925111070275],[114,221,74,-1.2402906464412808],[114,221,75,-1.238923478871584],[114,221,76,-1.2381497910246253],[114,221,77,-1.2375365369953215],[114,221,78,-1.236629918217659],[114,221,79,-1.2353621376678348],[114,222,64,-1.262770064175129],[114,222,65,-1.2611837666481733],[114,222,66,-1.2597993705421686],[114,222,67,-1.2586312610656023],[114,222,68,-1.2577149346470833],[114,222,69,-1.256722154095769],[114,222,70,-1.2556440830230713],[114,222,71,-1.2543166745454073],[114,222,72,-1.2524480791762471],[114,222,73,-1.2502050111070275],[114,222,74,-1.2481031464412808],[114,222,75,-1.246735978871584],[114,222,76,-1.2459622910246253],[114,222,77,-1.2453490369953215],[114,222,78,-1.244442418217659],[114,222,79,-1.2431746376678348],[114,223,64,-1.270582564175129],[114,223,65,-1.2689962666481733],[114,223,66,-1.2676118705421686],[114,223,67,-1.2664437610656023],[114,223,68,-1.2655274346470833],[114,223,69,-1.264534654095769],[114,223,70,-1.2634565830230713],[114,223,71,-1.2621291745454073],[114,223,72,-1.2602605791762471],[114,223,73,-1.2580175111070275],[114,223,74,-1.2559156464412808],[114,223,75,-1.254548478871584],[114,223,76,-1.2537747910246253],[114,223,77,-1.2531615369953215],[114,223,78,-1.252254918217659],[114,223,79,-1.2509871376678348],[114,224,64,-1.278395064175129],[114,224,65,-1.2768087666481733],[114,224,66,-1.2754243705421686],[114,224,67,-1.2742562610656023],[114,224,68,-1.2733399346470833],[114,224,69,-1.272347154095769],[114,224,70,-1.2712690830230713],[114,224,71,-1.2699416745454073],[114,224,72,-1.2680730791762471],[114,224,73,-1.2658300111070275],[114,224,74,-1.2637281464412808],[114,224,75,-1.262360978871584],[114,224,76,-1.2615872910246253],[114,224,77,-1.2609740369953215],[114,224,78,-1.260067418217659],[114,224,79,-1.2587996376678348],[114,225,64,-1.286207564175129],[114,225,65,-1.2846212666481733],[114,225,66,-1.2832368705421686],[114,225,67,-1.2820687610656023],[114,225,68,-1.2811524346470833],[114,225,69,-1.280159654095769],[114,225,70,-1.2790815830230713],[114,225,71,-1.2777541745454073],[114,225,72,-1.2758855791762471],[114,225,73,-1.2736425111070275],[114,225,74,-1.2715406464412808],[114,225,75,-1.270173478871584],[114,225,76,-1.2693997910246253],[114,225,77,-1.2687865369953215],[114,225,78,-1.267879918217659],[114,225,79,-1.2666121376678348],[114,226,64,-1.294020064175129],[114,226,65,-1.2924337666481733],[114,226,66,-1.2910493705421686],[114,226,67,-1.2898812610656023],[114,226,68,-1.2889649346470833],[114,226,69,-1.287972154095769],[114,226,70,-1.2868940830230713],[114,226,71,-1.2855666745454073],[114,226,72,-1.2836980791762471],[114,226,73,-1.2814550111070275],[114,226,74,-1.2793531464412808],[114,226,75,-1.277985978871584],[114,226,76,-1.2772122910246253],[114,226,77,-1.2765990369953215],[114,226,78,-1.275692418217659],[114,226,79,-1.2744246376678348],[114,227,64,-1.301832564175129],[114,227,65,-1.3002462666481733],[114,227,66,-1.2988618705421686],[114,227,67,-1.2976937610656023],[114,227,68,-1.2967774346470833],[114,227,69,-1.295784654095769],[114,227,70,-1.2947065830230713],[114,227,71,-1.2933791745454073],[114,227,72,-1.2915105791762471],[114,227,73,-1.2892675111070275],[114,227,74,-1.2871656464412808],[114,227,75,-1.285798478871584],[114,227,76,-1.2850247910246253],[114,227,77,-1.2844115369953215],[114,227,78,-1.283504918217659],[114,227,79,-1.2822371376678348],[114,228,64,-1.309645064175129],[114,228,65,-1.3080587666481733],[114,228,66,-1.3066743705421686],[114,228,67,-1.3055062610656023],[114,228,68,-1.3045899346470833],[114,228,69,-1.303597154095769],[114,228,70,-1.3025190830230713],[114,228,71,-1.3011916745454073],[114,228,72,-1.2993230791762471],[114,228,73,-1.2970800111070275],[114,228,74,-1.2949781464412808],[114,228,75,-1.293610978871584],[114,228,76,-1.2928372910246253],[114,228,77,-1.2922240369953215],[114,228,78,-1.291317418217659],[114,228,79,-1.2900496376678348],[114,229,64,-1.317457564175129],[114,229,65,-1.3158712666481733],[114,229,66,-1.3144868705421686],[114,229,67,-1.3133187610656023],[114,229,68,-1.3124024346470833],[114,229,69,-1.311409654095769],[114,229,70,-1.3103315830230713],[114,229,71,-1.3090041745454073],[114,229,72,-1.3071355791762471],[114,229,73,-1.3048925111070275],[114,229,74,-1.3027906464412808],[114,229,75,-1.301423478871584],[114,229,76,-1.3006497910246253],[114,229,77,-1.3000365369953215],[114,229,78,-1.299129918217659],[114,229,79,-1.2978621376678348],[114,230,64,-1.325270064175129],[114,230,65,-1.3236837666481733],[114,230,66,-1.3222993705421686],[114,230,67,-1.3211312610656023],[114,230,68,-1.3202149346470833],[114,230,69,-1.319222154095769],[114,230,70,-1.3181440830230713],[114,230,71,-1.3168166745454073],[114,230,72,-1.3149480791762471],[114,230,73,-1.3127050111070275],[114,230,74,-1.3106031464412808],[114,230,75,-1.309235978871584],[114,230,76,-1.3084622910246253],[114,230,77,-1.3078490369953215],[114,230,78,-1.306942418217659],[114,230,79,-1.3056746376678348],[114,231,64,-1.333082564175129],[114,231,65,-1.3314962666481733],[114,231,66,-1.3301118705421686],[114,231,67,-1.3289437610656023],[114,231,68,-1.3280274346470833],[114,231,69,-1.327034654095769],[114,231,70,-1.3259565830230713],[114,231,71,-1.3246291745454073],[114,231,72,-1.3227605791762471],[114,231,73,-1.3205175111070275],[114,231,74,-1.3184156464412808],[114,231,75,-1.317048478871584],[114,231,76,-1.3162747910246253],[114,231,77,-1.3156615369953215],[114,231,78,-1.314754918217659],[114,231,79,-1.3134871376678348],[114,232,64,-1.340895064175129],[114,232,65,-1.3393087666481733],[114,232,66,-1.3379243705421686],[114,232,67,-1.3367562610656023],[114,232,68,-1.3358399346470833],[114,232,69,-1.334847154095769],[114,232,70,-1.3337690830230713],[114,232,71,-1.3324416745454073],[114,232,72,-1.3305730791762471],[114,232,73,-1.3283300111070275],[114,232,74,-1.3262281464412808],[114,232,75,-1.324860978871584],[114,232,76,-1.3240872910246253],[114,232,77,-1.3234740369953215],[114,232,78,-1.322567418217659],[114,232,79,-1.3212996376678348],[114,233,64,-1.348707564175129],[114,233,65,-1.3471212666481733],[114,233,66,-1.3457368705421686],[114,233,67,-1.3445687610656023],[114,233,68,-1.3436524346470833],[114,233,69,-1.342659654095769],[114,233,70,-1.3415815830230713],[114,233,71,-1.3402541745454073],[114,233,72,-1.3383855791762471],[114,233,73,-1.3361425111070275],[114,233,74,-1.3340406464412808],[114,233,75,-1.332673478871584],[114,233,76,-1.3318997910246253],[114,233,77,-1.3312865369953215],[114,233,78,-1.330379918217659],[114,233,79,-1.3291121376678348],[114,234,64,-1.356520064175129],[114,234,65,-1.3549337666481733],[114,234,66,-1.3535493705421686],[114,234,67,-1.3523812610656023],[114,234,68,-1.3514649346470833],[114,234,69,-1.350472154095769],[114,234,70,-1.3493940830230713],[114,234,71,-1.3480666745454073],[114,234,72,-1.3461980791762471],[114,234,73,-1.3439550111070275],[114,234,74,-1.3418531464412808],[114,234,75,-1.340485978871584],[114,234,76,-1.3397122910246253],[114,234,77,-1.3390990369953215],[114,234,78,-1.338192418217659],[114,234,79,-1.3369246376678348],[114,235,64,-1.364332564175129],[114,235,65,-1.3627462666481733],[114,235,66,-1.3613618705421686],[114,235,67,-1.3601937610656023],[114,235,68,-1.3592774346470833],[114,235,69,-1.358284654095769],[114,235,70,-1.3572065830230713],[114,235,71,-1.3558791745454073],[114,235,72,-1.3540105791762471],[114,235,73,-1.3517675111070275],[114,235,74,-1.3496656464412808],[114,235,75,-1.348298478871584],[114,235,76,-1.3475247910246253],[114,235,77,-1.3469115369953215],[114,235,78,-1.346004918217659],[114,235,79,-1.3447371376678348],[114,236,64,-1.372145064175129],[114,236,65,-1.3705587666481733],[114,236,66,-1.3691743705421686],[114,236,67,-1.3680062610656023],[114,236,68,-1.3670899346470833],[114,236,69,-1.366097154095769],[114,236,70,-1.3650190830230713],[114,236,71,-1.3636916745454073],[114,236,72,-1.3618230791762471],[114,236,73,-1.3595800111070275],[114,236,74,-1.3574781464412808],[114,236,75,-1.356110978871584],[114,236,76,-1.3553372910246253],[114,236,77,-1.3547240369953215],[114,236,78,-1.353817418217659],[114,236,79,-1.3525496376678348],[114,237,64,-1.379957564175129],[114,237,65,-1.3783712666481733],[114,237,66,-1.3769868705421686],[114,237,67,-1.3758187610656023],[114,237,68,-1.3749024346470833],[114,237,69,-1.373909654095769],[114,237,70,-1.3728315830230713],[114,237,71,-1.3715041745454073],[114,237,72,-1.3696355791762471],[114,237,73,-1.3673925111070275],[114,237,74,-1.3652906464412808],[114,237,75,-1.363923478871584],[114,237,76,-1.3631497910246253],[114,237,77,-1.3625365369953215],[114,237,78,-1.361629918217659],[114,237,79,-1.3603621376678348],[114,238,64,-1.387770064175129],[114,238,65,-1.3861837666481733],[114,238,66,-1.3847993705421686],[114,238,67,-1.3836312610656023],[114,238,68,-1.3827149346470833],[114,238,69,-1.381722154095769],[114,238,70,-1.3806440830230713],[114,238,71,-1.3793166745454073],[114,238,72,-1.3774480791762471],[114,238,73,-1.3752050111070275],[114,238,74,-1.3731031464412808],[114,238,75,-1.371735978871584],[114,238,76,-1.3709622910246253],[114,238,77,-1.3703490369953215],[114,238,78,-1.369442418217659],[114,238,79,-1.3681746376678348],[114,239,64,-1.395582564175129],[114,239,65,-1.3939962666481733],[114,239,66,-1.3926118705421686],[114,239,67,-1.3914437610656023],[114,239,68,-1.3905274346470833],[114,239,69,-1.389534654095769],[114,239,70,-1.3884565830230713],[114,239,71,-1.3871291745454073],[114,239,72,-1.3852605791762471],[114,239,73,-1.3830175111070275],[114,239,74,-1.3809156464412808],[114,239,75,-1.379548478871584],[114,239,76,-1.3787747910246253],[114,239,77,-1.3781615369953215],[114,239,78,-1.377254918217659],[114,239,79,-1.3759871376678348],[114,240,64,-1.403395064175129],[114,240,65,-1.4018087666481733],[114,240,66,-1.4004243705421686],[114,240,67,-1.3992562610656023],[114,240,68,-1.3983399346470833],[114,240,69,-1.397347154095769],[114,240,70,-1.3962690830230713],[114,240,71,-1.3949416745454073],[114,240,72,-1.3930730791762471],[114,240,73,-1.3908300111070275],[114,240,74,-1.3887281464412808],[114,240,75,-1.387360978871584],[114,240,76,-1.3865872910246253],[114,240,77,-1.3859740369953215],[114,240,78,-1.385067418217659],[114,240,79,-1.3837996376678348],[114,241,64,-1.411207564175129],[114,241,65,-1.4096212666481733],[114,241,66,-1.4082368705421686],[114,241,67,-1.4070687610656023],[114,241,68,-1.4061524346470833],[114,241,69,-1.405159654095769],[114,241,70,-1.4040815830230713],[114,241,71,-1.4027541745454073],[114,241,72,-1.4008855791762471],[114,241,73,-1.3986425111070275],[114,241,74,-1.3965406464412808],[114,241,75,-1.395173478871584],[114,241,76,-1.3943997910246253],[114,241,77,-1.3937865369953215],[114,241,78,-1.392879918217659],[114,241,79,-1.3916121376678348],[114,242,64,-1.419020064175129],[114,242,65,-1.4174337666481733],[114,242,66,-1.4160493705421686],[114,242,67,-1.4148812610656023],[114,242,68,-1.4139649346470833],[114,242,69,-1.412972154095769],[114,242,70,-1.4118940830230713],[114,242,71,-1.4105666745454073],[114,242,72,-1.4086980791762471],[114,242,73,-1.4064550111070275],[114,242,74,-1.4043531464412808],[114,242,75,-1.402985978871584],[114,242,76,-1.4022122910246253],[114,242,77,-1.4015990369953215],[114,242,78,-1.400692418217659],[114,242,79,-1.3994246376678348],[114,243,64,-1.426832564175129],[114,243,65,-1.4252462666481733],[114,243,66,-1.4238618705421686],[114,243,67,-1.4226937610656023],[114,243,68,-1.4217774346470833],[114,243,69,-1.420784654095769],[114,243,70,-1.4197065830230713],[114,243,71,-1.4183791745454073],[114,243,72,-1.4165105791762471],[114,243,73,-1.4142675111070275],[114,243,74,-1.4121656464412808],[114,243,75,-1.410798478871584],[114,243,76,-1.4100247910246253],[114,243,77,-1.4094115369953215],[114,243,78,-1.408504918217659],[114,243,79,-1.4072371376678348],[114,244,64,-1.434645064175129],[114,244,65,-1.4330587666481733],[114,244,66,-1.4316743705421686],[114,244,67,-1.4305062610656023],[114,244,68,-1.4295899346470833],[114,244,69,-1.428597154095769],[114,244,70,-1.4275190830230713],[114,244,71,-1.4261916745454073],[114,244,72,-1.4243230791762471],[114,244,73,-1.4220800111070275],[114,244,74,-1.4199781464412808],[114,244,75,-1.418610978871584],[114,244,76,-1.4178372910246253],[114,244,77,-1.4172240369953215],[114,244,78,-1.416317418217659],[114,244,79,-1.4150496376678348],[114,245,64,-1.442457564175129],[114,245,65,-1.4408712666481733],[114,245,66,-1.4394868705421686],[114,245,67,-1.4383187610656023],[114,245,68,-1.4374024346470833],[114,245,69,-1.436409654095769],[114,245,70,-1.4353315830230713],[114,245,71,-1.4340041745454073],[114,245,72,-1.4321355791762471],[114,245,73,-1.4298925111070275],[114,245,74,-1.4277906464412808],[114,245,75,-1.426423478871584],[114,245,76,-1.4256497910246253],[114,245,77,-1.4250365369953215],[114,245,78,-1.424129918217659],[114,245,79,-1.4228621376678348],[114,246,64,-1.450270064175129],[114,246,65,-1.4486837666481733],[114,246,66,-1.4472993705421686],[114,246,67,-1.4461312610656023],[114,246,68,-1.4452149346470833],[114,246,69,-1.444222154095769],[114,246,70,-1.4431440830230713],[114,246,71,-1.4418166745454073],[114,246,72,-1.4399480791762471],[114,246,73,-1.4377050111070275],[114,246,74,-1.4356031464412808],[114,246,75,-1.434235978871584],[114,246,76,-1.4334622910246253],[114,246,77,-1.4328490369953215],[114,246,78,-1.431942418217659],[114,246,79,-1.4306746376678348],[114,247,64,-1.458082564175129],[114,247,65,-1.4564962666481733],[114,247,66,-1.4551118705421686],[114,247,67,-1.4539437610656023],[114,247,68,-1.4530274346470833],[114,247,69,-1.452034654095769],[114,247,70,-1.4509565830230713],[114,247,71,-1.4496291745454073],[114,247,72,-1.4477605791762471],[114,247,73,-1.4455175111070275],[114,247,74,-1.4434156464412808],[114,247,75,-1.442048478871584],[114,247,76,-1.4412747910246253],[114,247,77,-1.4406615369953215],[114,247,78,-1.439754918217659],[114,247,79,-1.4384871376678348],[114,248,64,-1.465895064175129],[114,248,65,-1.4643087666481733],[114,248,66,-1.4629243705421686],[114,248,67,-1.4617562610656023],[114,248,68,-1.4608399346470833],[114,248,69,-1.459847154095769],[114,248,70,-1.4587690830230713],[114,248,71,-1.4574416745454073],[114,248,72,-1.4555730791762471],[114,248,73,-1.4533300111070275],[114,248,74,-1.4512281464412808],[114,248,75,-1.449860978871584],[114,248,76,-1.4490872910246253],[114,248,77,-1.4484740369953215],[114,248,78,-1.447567418217659],[114,248,79,-1.4462996376678348],[114,249,64,-1.473707564175129],[114,249,65,-1.4721212666481733],[114,249,66,-1.4707368705421686],[114,249,67,-1.4695687610656023],[114,249,68,-1.4686524346470833],[114,249,69,-1.467659654095769],[114,249,70,-1.4665815830230713],[114,249,71,-1.4652541745454073],[114,249,72,-1.4633855791762471],[114,249,73,-1.4611425111070275],[114,249,74,-1.4590406464412808],[114,249,75,-1.457673478871584],[114,249,76,-1.4568997910246253],[114,249,77,-1.4562865369953215],[114,249,78,-1.455379918217659],[114,249,79,-1.4541121376678348],[114,250,64,-1.481520064175129],[114,250,65,-1.4799337666481733],[114,250,66,-1.4785493705421686],[114,250,67,-1.4773812610656023],[114,250,68,-1.4764649346470833],[114,250,69,-1.475472154095769],[114,250,70,-1.4743940830230713],[114,250,71,-1.4730666745454073],[114,250,72,-1.4711980791762471],[114,250,73,-1.4689550111070275],[114,250,74,-1.4668531464412808],[114,250,75,-1.465485978871584],[114,250,76,-1.4647122910246253],[114,250,77,-1.4640990369953215],[114,250,78,-1.463192418217659],[114,250,79,-1.4619246376678348],[114,251,64,-1.489332564175129],[114,251,65,-1.4877462666481733],[114,251,66,-1.4863618705421686],[114,251,67,-1.4851937610656023],[114,251,68,-1.4842774346470833],[114,251,69,-1.483284654095769],[114,251,70,-1.4822065830230713],[114,251,71,-1.4808791745454073],[114,251,72,-1.4790105791762471],[114,251,73,-1.4767675111070275],[114,251,74,-1.4746656464412808],[114,251,75,-1.473298478871584],[114,251,76,-1.4725247910246253],[114,251,77,-1.4719115369953215],[114,251,78,-1.471004918217659],[114,251,79,-1.4697371376678348],[114,252,64,-1.497145064175129],[114,252,65,-1.4955587666481733],[114,252,66,-1.4941743705421686],[114,252,67,-1.4930062610656023],[114,252,68,-1.4920899346470833],[114,252,69,-1.491097154095769],[114,252,70,-1.4900190830230713],[114,252,71,-1.4886916745454073],[114,252,72,-1.4868230791762471],[114,252,73,-1.4845800111070275],[114,252,74,-1.4824781464412808],[114,252,75,-1.481110978871584],[114,252,76,-1.4803372910246253],[114,252,77,-1.4797240369953215],[114,252,78,-1.478817418217659],[114,252,79,-1.4775496376678348],[114,253,64,-1.504957564175129],[114,253,65,-1.5033712666481733],[114,253,66,-1.5019868705421686],[114,253,67,-1.5008187610656023],[114,253,68,-1.4999024346470833],[114,253,69,-1.498909654095769],[114,253,70,-1.4978315830230713],[114,253,71,-1.4965041745454073],[114,253,72,-1.4946355791762471],[114,253,73,-1.4923925111070275],[114,253,74,-1.4902906464412808],[114,253,75,-1.488923478871584],[114,253,76,-1.4881497910246253],[114,253,77,-1.4875365369953215],[114,253,78,-1.486629918217659],[114,253,79,-1.4853621376678348],[114,254,64,-1.512770064175129],[114,254,65,-1.5111837666481733],[114,254,66,-1.5097993705421686],[114,254,67,-1.5086312610656023],[114,254,68,-1.5077149346470833],[114,254,69,-1.506722154095769],[114,254,70,-1.5056440830230713],[114,254,71,-1.5043166745454073],[114,254,72,-1.5024480791762471],[114,254,73,-1.5002050111070275],[114,254,74,-1.4981031464412808],[114,254,75,-1.496735978871584],[114,254,76,-1.4959622910246253],[114,254,77,-1.4953490369953215],[114,254,78,-1.494442418217659],[114,254,79,-1.4931746376678348],[114,255,64,-1.520582564175129],[114,255,65,-1.5189962666481733],[114,255,66,-1.5176118705421686],[114,255,67,-1.5164437610656023],[114,255,68,-1.5155274346470833],[114,255,69,-1.514534654095769],[114,255,70,-1.5134565830230713],[114,255,71,-1.5121291745454073],[114,255,72,-1.5102605791762471],[114,255,73,-1.5080175111070275],[114,255,74,-1.5059156464412808],[114,255,75,-1.504548478871584],[114,255,76,-1.5037747910246253],[114,255,77,-1.5031615369953215],[114,255,78,-1.502254918217659],[114,255,79,-1.5009871376678348],[114,256,64,-1.528395064175129],[114,256,65,-1.5268087666481733],[114,256,66,-1.5254243705421686],[114,256,67,-1.5242562610656023],[114,256,68,-1.5233399346470833],[114,256,69,-1.522347154095769],[114,256,70,-1.5212690830230713],[114,256,71,-1.5199416745454073],[114,256,72,-1.5180730791762471],[114,256,73,-1.5158300111070275],[114,256,74,-1.5137281464412808],[114,256,75,-1.512360978871584],[114,256,76,-1.5115872910246253],[114,256,77,-1.5109740369953215],[114,256,78,-1.510067418217659],[114,256,79,-1.5087996376678348],[114,257,64,-1.536207564175129],[114,257,65,-1.5346212666481733],[114,257,66,-1.5332368705421686],[114,257,67,-1.5320687610656023],[114,257,68,-1.5311524346470833],[114,257,69,-1.530159654095769],[114,257,70,-1.5290815830230713],[114,257,71,-1.5277541745454073],[114,257,72,-1.5258855791762471],[114,257,73,-1.5236425111070275],[114,257,74,-1.5215406464412808],[114,257,75,-1.520173478871584],[114,257,76,-1.5193997910246253],[114,257,77,-1.5187865369953215],[114,257,78,-1.517879918217659],[114,257,79,-1.5166121376678348],[114,258,64,-1.544020064175129],[114,258,65,-1.5424337666481733],[114,258,66,-1.5410493705421686],[114,258,67,-1.5398812610656023],[114,258,68,-1.5389649346470833],[114,258,69,-1.537972154095769],[114,258,70,-1.5368940830230713],[114,258,71,-1.5355666745454073],[114,258,72,-1.5336980791762471],[114,258,73,-1.5314550111070275],[114,258,74,-1.5293531464412808],[114,258,75,-1.527985978871584],[114,258,76,-1.5272122910246253],[114,258,77,-1.5265990369953215],[114,258,78,-1.525692418217659],[114,258,79,-1.5244246376678348],[114,259,64,-1.551832564175129],[114,259,65,-1.5502462666481733],[114,259,66,-1.5488618705421686],[114,259,67,-1.5476937610656023],[114,259,68,-1.5467774346470833],[114,259,69,-1.545784654095769],[114,259,70,-1.5447065830230713],[114,259,71,-1.5433791745454073],[114,259,72,-1.5415105791762471],[114,259,73,-1.5392675111070275],[114,259,74,-1.5371656464412808],[114,259,75,-1.535798478871584],[114,259,76,-1.5350247910246253],[114,259,77,-1.5344115369953215],[114,259,78,-1.533504918217659],[114,259,79,-1.5322371376678348],[114,260,64,-1.559645064175129],[114,260,65,-1.5580587666481733],[114,260,66,-1.5566743705421686],[114,260,67,-1.5555062610656023],[114,260,68,-1.5545899346470833],[114,260,69,-1.553597154095769],[114,260,70,-1.5525190830230713],[114,260,71,-1.5511916745454073],[114,260,72,-1.5493230791762471],[114,260,73,-1.5470800111070275],[114,260,74,-1.5449781464412808],[114,260,75,-1.543610978871584],[114,260,76,-1.5428372910246253],[114,260,77,-1.5422240369953215],[114,260,78,-1.541317418217659],[114,260,79,-1.5400496376678348],[114,261,64,-1.567457564175129],[114,261,65,-1.5658712666481733],[114,261,66,-1.5644868705421686],[114,261,67,-1.5633187610656023],[114,261,68,-1.5624024346470833],[114,261,69,-1.561409654095769],[114,261,70,-1.5603315830230713],[114,261,71,-1.5590041745454073],[114,261,72,-1.5571355791762471],[114,261,73,-1.5548925111070275],[114,261,74,-1.5527906464412808],[114,261,75,-1.551423478871584],[114,261,76,-1.5506497910246253],[114,261,77,-1.5500365369953215],[114,261,78,-1.549129918217659],[114,261,79,-1.5478621376678348],[114,262,64,-1.575270064175129],[114,262,65,-1.5736837666481733],[114,262,66,-1.5722993705421686],[114,262,67,-1.5711312610656023],[114,262,68,-1.5702149346470833],[114,262,69,-1.569222154095769],[114,262,70,-1.5681440830230713],[114,262,71,-1.5668166745454073],[114,262,72,-1.5649480791762471],[114,262,73,-1.5627050111070275],[114,262,74,-1.5606031464412808],[114,262,75,-1.559235978871584],[114,262,76,-1.5584622910246253],[114,262,77,-1.5578490369953215],[114,262,78,-1.556942418217659],[114,262,79,-1.5556746376678348],[114,263,64,-1.583082564175129],[114,263,65,-1.5814962666481733],[114,263,66,-1.5801118705421686],[114,263,67,-1.5789437610656023],[114,263,68,-1.5780274346470833],[114,263,69,-1.577034654095769],[114,263,70,-1.5759565830230713],[114,263,71,-1.5746291745454073],[114,263,72,-1.5727605791762471],[114,263,73,-1.5705175111070275],[114,263,74,-1.5684156464412808],[114,263,75,-1.567048478871584],[114,263,76,-1.5662747910246253],[114,263,77,-1.5656615369953215],[114,263,78,-1.564754918217659],[114,263,79,-1.5634871376678348],[114,264,64,-1.590895064175129],[114,264,65,-1.5893087666481733],[114,264,66,-1.5879243705421686],[114,264,67,-1.5867562610656023],[114,264,68,-1.5858399346470833],[114,264,69,-1.584847154095769],[114,264,70,-1.5837690830230713],[114,264,71,-1.5824416745454073],[114,264,72,-1.5805730791762471],[114,264,73,-1.5783300111070275],[114,264,74,-1.5762281464412808],[114,264,75,-1.574860978871584],[114,264,76,-1.5740872910246253],[114,264,77,-1.5734740369953215],[114,264,78,-1.572567418217659],[114,264,79,-1.5712996376678348],[114,265,64,-1.598707564175129],[114,265,65,-1.5971212666481733],[114,265,66,-1.5957368705421686],[114,265,67,-1.5945687610656023],[114,265,68,-1.5936524346470833],[114,265,69,-1.592659654095769],[114,265,70,-1.5915815830230713],[114,265,71,-1.5902541745454073],[114,265,72,-1.5883855791762471],[114,265,73,-1.5861425111070275],[114,265,74,-1.5840406464412808],[114,265,75,-1.582673478871584],[114,265,76,-1.5818997910246253],[114,265,77,-1.5812865369953215],[114,265,78,-1.580379918217659],[114,265,79,-1.5791121376678348],[114,266,64,-1.606520064175129],[114,266,65,-1.6049337666481733],[114,266,66,-1.6035493705421686],[114,266,67,-1.6023812610656023],[114,266,68,-1.6014649346470833],[114,266,69,-1.600472154095769],[114,266,70,-1.5993940830230713],[114,266,71,-1.5980666745454073],[114,266,72,-1.5961980791762471],[114,266,73,-1.5939550111070275],[114,266,74,-1.5918531464412808],[114,266,75,-1.590485978871584],[114,266,76,-1.5897122910246253],[114,266,77,-1.5890990369953215],[114,266,78,-1.588192418217659],[114,266,79,-1.5869246376678348],[114,267,64,-1.614332564175129],[114,267,65,-1.6127462666481733],[114,267,66,-1.6113618705421686],[114,267,67,-1.6101937610656023],[114,267,68,-1.6092774346470833],[114,267,69,-1.608284654095769],[114,267,70,-1.6072065830230713],[114,267,71,-1.6058791745454073],[114,267,72,-1.6040105791762471],[114,267,73,-1.6017675111070275],[114,267,74,-1.5996656464412808],[114,267,75,-1.598298478871584],[114,267,76,-1.5975247910246253],[114,267,77,-1.5969115369953215],[114,267,78,-1.596004918217659],[114,267,79,-1.5947371376678348],[114,268,64,-1.622145064175129],[114,268,65,-1.6205587666481733],[114,268,66,-1.6191743705421686],[114,268,67,-1.6180062610656023],[114,268,68,-1.6170899346470833],[114,268,69,-1.616097154095769],[114,268,70,-1.6150190830230713],[114,268,71,-1.6136916745454073],[114,268,72,-1.6118230791762471],[114,268,73,-1.6095800111070275],[114,268,74,-1.6074781464412808],[114,268,75,-1.606110978871584],[114,268,76,-1.6053372910246253],[114,268,77,-1.6047240369953215],[114,268,78,-1.603817418217659],[114,268,79,-1.6025496376678348],[114,269,64,-1.629957564175129],[114,269,65,-1.6283712666481733],[114,269,66,-1.6269868705421686],[114,269,67,-1.6258187610656023],[114,269,68,-1.6249024346470833],[114,269,69,-1.623909654095769],[114,269,70,-1.6228315830230713],[114,269,71,-1.6215041745454073],[114,269,72,-1.6196355791762471],[114,269,73,-1.6173925111070275],[114,269,74,-1.6152906464412808],[114,269,75,-1.613923478871584],[114,269,76,-1.6131497910246253],[114,269,77,-1.6125365369953215],[114,269,78,-1.611629918217659],[114,269,79,-1.6103621376678348],[114,270,64,-1.637770064175129],[114,270,65,-1.6361837666481733],[114,270,66,-1.6347993705421686],[114,270,67,-1.6336312610656023],[114,270,68,-1.6327149346470833],[114,270,69,-1.631722154095769],[114,270,70,-1.6306440830230713],[114,270,71,-1.6293166745454073],[114,270,72,-1.6274480791762471],[114,270,73,-1.6252050111070275],[114,270,74,-1.6231031464412808],[114,270,75,-1.621735978871584],[114,270,76,-1.6209622910246253],[114,270,77,-1.6203490369953215],[114,270,78,-1.619442418217659],[114,270,79,-1.6181746376678348],[114,271,64,-1.645582564175129],[114,271,65,-1.6439962666481733],[114,271,66,-1.6426118705421686],[114,271,67,-1.6414437610656023],[114,271,68,-1.6405274346470833],[114,271,69,-1.639534654095769],[114,271,70,-1.6384565830230713],[114,271,71,-1.6371291745454073],[114,271,72,-1.6352605791762471],[114,271,73,-1.6330175111070275],[114,271,74,-1.6309156464412808],[114,271,75,-1.629548478871584],[114,271,76,-1.6287747910246253],[114,271,77,-1.6281615369953215],[114,271,78,-1.627254918217659],[114,271,79,-1.6259871376678348],[114,272,64,-1.653395064175129],[114,272,65,-1.6518087666481733],[114,272,66,-1.6504243705421686],[114,272,67,-1.6492562610656023],[114,272,68,-1.6483399346470833],[114,272,69,-1.647347154095769],[114,272,70,-1.6462690830230713],[114,272,71,-1.6449416745454073],[114,272,72,-1.6430730791762471],[114,272,73,-1.6408300111070275],[114,272,74,-1.6387281464412808],[114,272,75,-1.637360978871584],[114,272,76,-1.6365872910246253],[114,272,77,-1.6359740369953215],[114,272,78,-1.635067418217659],[114,272,79,-1.6337996376678348],[114,273,64,-1.661207564175129],[114,273,65,-1.6596212666481733],[114,273,66,-1.6582368705421686],[114,273,67,-1.6570687610656023],[114,273,68,-1.6561524346470833],[114,273,69,-1.655159654095769],[114,273,70,-1.6540815830230713],[114,273,71,-1.6527541745454073],[114,273,72,-1.6508855791762471],[114,273,73,-1.6486425111070275],[114,273,74,-1.6465406464412808],[114,273,75,-1.645173478871584],[114,273,76,-1.6443997910246253],[114,273,77,-1.6437865369953215],[114,273,78,-1.642879918217659],[114,273,79,-1.6416121376678348],[114,274,64,-1.669020064175129],[114,274,65,-1.6674337666481733],[114,274,66,-1.6660493705421686],[114,274,67,-1.6648812610656023],[114,274,68,-1.6639649346470833],[114,274,69,-1.662972154095769],[114,274,70,-1.6618940830230713],[114,274,71,-1.6605666745454073],[114,274,72,-1.6586980791762471],[114,274,73,-1.6564550111070275],[114,274,74,-1.6543531464412808],[114,274,75,-1.652985978871584],[114,274,76,-1.6522122910246253],[114,274,77,-1.6515990369953215],[114,274,78,-1.650692418217659],[114,274,79,-1.6494246376678348],[114,275,64,-1.676832564175129],[114,275,65,-1.6752462666481733],[114,275,66,-1.6738618705421686],[114,275,67,-1.6726937610656023],[114,275,68,-1.6717774346470833],[114,275,69,-1.670784654095769],[114,275,70,-1.6697065830230713],[114,275,71,-1.6683791745454073],[114,275,72,-1.6665105791762471],[114,275,73,-1.6642675111070275],[114,275,74,-1.6621656464412808],[114,275,75,-1.660798478871584],[114,275,76,-1.6600247910246253],[114,275,77,-1.6594115369953215],[114,275,78,-1.658504918217659],[114,275,79,-1.6572371376678348],[114,276,64,-1.684645064175129],[114,276,65,-1.6830587666481733],[114,276,66,-1.6816743705421686],[114,276,67,-1.6805062610656023],[114,276,68,-1.6795899346470833],[114,276,69,-1.678597154095769],[114,276,70,-1.6775190830230713],[114,276,71,-1.6761916745454073],[114,276,72,-1.6743230791762471],[114,276,73,-1.6720800111070275],[114,276,74,-1.6699781464412808],[114,276,75,-1.668610978871584],[114,276,76,-1.6678372910246253],[114,276,77,-1.6672240369953215],[114,276,78,-1.666317418217659],[114,276,79,-1.6650496376678348],[114,277,64,-1.692457564175129],[114,277,65,-1.6908712666481733],[114,277,66,-1.6894868705421686],[114,277,67,-1.6883187610656023],[114,277,68,-1.6874024346470833],[114,277,69,-1.686409654095769],[114,277,70,-1.6853315830230713],[114,277,71,-1.6840041745454073],[114,277,72,-1.6821355791762471],[114,277,73,-1.6798925111070275],[114,277,74,-1.6777906464412808],[114,277,75,-1.676423478871584],[114,277,76,-1.6756497910246253],[114,277,77,-1.6750365369953215],[114,277,78,-1.674129918217659],[114,277,79,-1.6728621376678348],[114,278,64,-1.700270064175129],[114,278,65,-1.6986837666481733],[114,278,66,-1.6972993705421686],[114,278,67,-1.6961312610656023],[114,278,68,-1.6952149346470833],[114,278,69,-1.694222154095769],[114,278,70,-1.6931440830230713],[114,278,71,-1.6918166745454073],[114,278,72,-1.6899480791762471],[114,278,73,-1.6877050111070275],[114,278,74,-1.6856031464412808],[114,278,75,-1.684235978871584],[114,278,76,-1.6834622910246253],[114,278,77,-1.6828490369953215],[114,278,78,-1.681942418217659],[114,278,79,-1.6806746376678348],[114,279,64,-1.708082564175129],[114,279,65,-1.7064962666481733],[114,279,66,-1.7051118705421686],[114,279,67,-1.7039437610656023],[114,279,68,-1.7030274346470833],[114,279,69,-1.702034654095769],[114,279,70,-1.7009565830230713],[114,279,71,-1.6996291745454073],[114,279,72,-1.6977605791762471],[114,279,73,-1.6955175111070275],[114,279,74,-1.6934156464412808],[114,279,75,-1.692048478871584],[114,279,76,-1.6912747910246253],[114,279,77,-1.6906615369953215],[114,279,78,-1.689754918217659],[114,279,79,-1.6884871376678348],[114,280,64,-1.715895064175129],[114,280,65,-1.7143087666481733],[114,280,66,-1.7129243705421686],[114,280,67,-1.7117562610656023],[114,280,68,-1.7108399346470833],[114,280,69,-1.709847154095769],[114,280,70,-1.7087690830230713],[114,280,71,-1.7074416745454073],[114,280,72,-1.7055730791762471],[114,280,73,-1.7033300111070275],[114,280,74,-1.7012281464412808],[114,280,75,-1.699860978871584],[114,280,76,-1.6990872910246253],[114,280,77,-1.6984740369953215],[114,280,78,-1.697567418217659],[114,280,79,-1.6962996376678348],[114,281,64,-1.723707564175129],[114,281,65,-1.7221212666481733],[114,281,66,-1.7207368705421686],[114,281,67,-1.7195687610656023],[114,281,68,-1.7186524346470833],[114,281,69,-1.717659654095769],[114,281,70,-1.7165815830230713],[114,281,71,-1.7152541745454073],[114,281,72,-1.7133855791762471],[114,281,73,-1.7111425111070275],[114,281,74,-1.7090406464412808],[114,281,75,-1.707673478871584],[114,281,76,-1.7068997910246253],[114,281,77,-1.7062865369953215],[114,281,78,-1.705379918217659],[114,281,79,-1.7041121376678348],[114,282,64,-1.731520064175129],[114,282,65,-1.7299337666481733],[114,282,66,-1.7285493705421686],[114,282,67,-1.7273812610656023],[114,282,68,-1.7264649346470833],[114,282,69,-1.725472154095769],[114,282,70,-1.7243940830230713],[114,282,71,-1.7230666745454073],[114,282,72,-1.7211980791762471],[114,282,73,-1.7189550111070275],[114,282,74,-1.7168531464412808],[114,282,75,-1.715485978871584],[114,282,76,-1.7147122910246253],[114,282,77,-1.7140990369953215],[114,282,78,-1.713192418217659],[114,282,79,-1.7119246376678348],[114,283,64,-1.739332564175129],[114,283,65,-1.7377462666481733],[114,283,66,-1.7363618705421686],[114,283,67,-1.7351937610656023],[114,283,68,-1.7342774346470833],[114,283,69,-1.733284654095769],[114,283,70,-1.7322065830230713],[114,283,71,-1.7308791745454073],[114,283,72,-1.7290105791762471],[114,283,73,-1.7267675111070275],[114,283,74,-1.7246656464412808],[114,283,75,-1.723298478871584],[114,283,76,-1.7225247910246253],[114,283,77,-1.7219115369953215],[114,283,78,-1.721004918217659],[114,283,79,-1.7197371376678348],[114,284,64,-1.747145064175129],[114,284,65,-1.7455587666481733],[114,284,66,-1.7441743705421686],[114,284,67,-1.7430062610656023],[114,284,68,-1.7420899346470833],[114,284,69,-1.741097154095769],[114,284,70,-1.7400190830230713],[114,284,71,-1.7386916745454073],[114,284,72,-1.7368230791762471],[114,284,73,-1.7345800111070275],[114,284,74,-1.7324781464412808],[114,284,75,-1.731110978871584],[114,284,76,-1.7303372910246253],[114,284,77,-1.7297240369953215],[114,284,78,-1.728817418217659],[114,284,79,-1.7275496376678348],[114,285,64,-1.754957564175129],[114,285,65,-1.7533712666481733],[114,285,66,-1.7519868705421686],[114,285,67,-1.7508187610656023],[114,285,68,-1.7499024346470833],[114,285,69,-1.748909654095769],[114,285,70,-1.7478315830230713],[114,285,71,-1.7465041745454073],[114,285,72,-1.7446355791762471],[114,285,73,-1.7423925111070275],[114,285,74,-1.7402906464412808],[114,285,75,-1.738923478871584],[114,285,76,-1.7381497910246253],[114,285,77,-1.7375365369953215],[114,285,78,-1.736629918217659],[114,285,79,-1.7353621376678348],[114,286,64,-1.762770064175129],[114,286,65,-1.7611837666481733],[114,286,66,-1.7597993705421686],[114,286,67,-1.7586312610656023],[114,286,68,-1.7577149346470833],[114,286,69,-1.756722154095769],[114,286,70,-1.7556440830230713],[114,286,71,-1.7543166745454073],[114,286,72,-1.7524480791762471],[114,286,73,-1.7502050111070275],[114,286,74,-1.7481031464412808],[114,286,75,-1.746735978871584],[114,286,76,-1.7459622910246253],[114,286,77,-1.7453490369953215],[114,286,78,-1.744442418217659],[114,286,79,-1.7431746376678348],[114,287,64,-1.770582564175129],[114,287,65,-1.7689962666481733],[114,287,66,-1.7676118705421686],[114,287,67,-1.7664437610656023],[114,287,68,-1.7655274346470833],[114,287,69,-1.764534654095769],[114,287,70,-1.7634565830230713],[114,287,71,-1.7621291745454073],[114,287,72,-1.7602605791762471],[114,287,73,-1.7580175111070275],[114,287,74,-1.7559156464412808],[114,287,75,-1.754548478871584],[114,287,76,-1.7537747910246253],[114,287,77,-1.7531615369953215],[114,287,78,-1.752254918217659],[114,287,79,-1.7509871376678348],[114,288,64,-1.778395064175129],[114,288,65,-1.7768087666481733],[114,288,66,-1.7754243705421686],[114,288,67,-1.7742562610656023],[114,288,68,-1.7733399346470833],[114,288,69,-1.772347154095769],[114,288,70,-1.7712690830230713],[114,288,71,-1.7699416745454073],[114,288,72,-1.7680730791762471],[114,288,73,-1.7658300111070275],[114,288,74,-1.7637281464412808],[114,288,75,-1.762360978871584],[114,288,76,-1.7615872910246253],[114,288,77,-1.7609740369953215],[114,288,78,-1.760067418217659],[114,288,79,-1.7587996376678348],[114,289,64,-1.786207564175129],[114,289,65,-1.7846212666481733],[114,289,66,-1.7832368705421686],[114,289,67,-1.7820687610656023],[114,289,68,-1.7811524346470833],[114,289,69,-1.780159654095769],[114,289,70,-1.7790815830230713],[114,289,71,-1.7777541745454073],[114,289,72,-1.7758855791762471],[114,289,73,-1.7736425111070275],[114,289,74,-1.7715406464412808],[114,289,75,-1.770173478871584],[114,289,76,-1.7693997910246253],[114,289,77,-1.7687865369953215],[114,289,78,-1.767879918217659],[114,289,79,-1.7666121376678348],[114,290,64,-1.794020064175129],[114,290,65,-1.7924337666481733],[114,290,66,-1.7910493705421686],[114,290,67,-1.7898812610656023],[114,290,68,-1.7889649346470833],[114,290,69,-1.787972154095769],[114,290,70,-1.7868940830230713],[114,290,71,-1.7855666745454073],[114,290,72,-1.7836980791762471],[114,290,73,-1.7814550111070275],[114,290,74,-1.7793531464412808],[114,290,75,-1.777985978871584],[114,290,76,-1.7772122910246253],[114,290,77,-1.7765990369953215],[114,290,78,-1.775692418217659],[114,290,79,-1.7744246376678348],[114,291,64,-1.801832564175129],[114,291,65,-1.8002462666481733],[114,291,66,-1.7988618705421686],[114,291,67,-1.7976937610656023],[114,291,68,-1.7967774346470833],[114,291,69,-1.795784654095769],[114,291,70,-1.7947065830230713],[114,291,71,-1.7933791745454073],[114,291,72,-1.7915105791762471],[114,291,73,-1.7892675111070275],[114,291,74,-1.7871656464412808],[114,291,75,-1.785798478871584],[114,291,76,-1.7850247910246253],[114,291,77,-1.7844115369953215],[114,291,78,-1.783504918217659],[114,291,79,-1.7822371376678348],[114,292,64,-1.809645064175129],[114,292,65,-1.8080587666481733],[114,292,66,-1.8066743705421686],[114,292,67,-1.8055062610656023],[114,292,68,-1.8045899346470833],[114,292,69,-1.803597154095769],[114,292,70,-1.8025190830230713],[114,292,71,-1.8011916745454073],[114,292,72,-1.7993230791762471],[114,292,73,-1.7970800111070275],[114,292,74,-1.7949781464412808],[114,292,75,-1.793610978871584],[114,292,76,-1.7928372910246253],[114,292,77,-1.7922240369953215],[114,292,78,-1.791317418217659],[114,292,79,-1.7900496376678348],[114,293,64,-1.817457564175129],[114,293,65,-1.8158712666481733],[114,293,66,-1.8144868705421686],[114,293,67,-1.8133187610656023],[114,293,68,-1.8124024346470833],[114,293,69,-1.811409654095769],[114,293,70,-1.8103315830230713],[114,293,71,-1.8090041745454073],[114,293,72,-1.8071355791762471],[114,293,73,-1.8048925111070275],[114,293,74,-1.8027906464412808],[114,293,75,-1.801423478871584],[114,293,76,-1.8006497910246253],[114,293,77,-1.8000365369953215],[114,293,78,-1.799129918217659],[114,293,79,-1.7978621376678348],[114,294,64,-1.825270064175129],[114,294,65,-1.8236837666481733],[114,294,66,-1.8222993705421686],[114,294,67,-1.8211312610656023],[114,294,68,-1.8202149346470833],[114,294,69,-1.819222154095769],[114,294,70,-1.8181440830230713],[114,294,71,-1.8168166745454073],[114,294,72,-1.8149480791762471],[114,294,73,-1.8127050111070275],[114,294,74,-1.8106031464412808],[114,294,75,-1.809235978871584],[114,294,76,-1.8084622910246253],[114,294,77,-1.8078490369953215],[114,294,78,-1.806942418217659],[114,294,79,-1.8056746376678348],[114,295,64,-1.833082564175129],[114,295,65,-1.8314962666481733],[114,295,66,-1.8301118705421686],[114,295,67,-1.8289437610656023],[114,295,68,-1.8280274346470833],[114,295,69,-1.827034654095769],[114,295,70,-1.8259565830230713],[114,295,71,-1.8246291745454073],[114,295,72,-1.8227605791762471],[114,295,73,-1.8205175111070275],[114,295,74,-1.8184156464412808],[114,295,75,-1.817048478871584],[114,295,76,-1.8162747910246253],[114,295,77,-1.8156615369953215],[114,295,78,-1.814754918217659],[114,295,79,-1.8134871376678348],[114,296,64,-1.840895064175129],[114,296,65,-1.8393087666481733],[114,296,66,-1.8379243705421686],[114,296,67,-1.8367562610656023],[114,296,68,-1.8358399346470833],[114,296,69,-1.834847154095769],[114,296,70,-1.8337690830230713],[114,296,71,-1.8324416745454073],[114,296,72,-1.8305730791762471],[114,296,73,-1.8283300111070275],[114,296,74,-1.8262281464412808],[114,296,75,-1.824860978871584],[114,296,76,-1.8240872910246253],[114,296,77,-1.8234740369953215],[114,296,78,-1.822567418217659],[114,296,79,-1.8212996376678348],[114,297,64,-1.848707564175129],[114,297,65,-1.8471212666481733],[114,297,66,-1.8457368705421686],[114,297,67,-1.8445687610656023],[114,297,68,-1.8436524346470833],[114,297,69,-1.842659654095769],[114,297,70,-1.8415815830230713],[114,297,71,-1.8402541745454073],[114,297,72,-1.8383855791762471],[114,297,73,-1.8361425111070275],[114,297,74,-1.8340406464412808],[114,297,75,-1.832673478871584],[114,297,76,-1.8318997910246253],[114,297,77,-1.8312865369953215],[114,297,78,-1.830379918217659],[114,297,79,-1.8291121376678348],[114,298,64,-1.856520064175129],[114,298,65,-1.8549337666481733],[114,298,66,-1.8535493705421686],[114,298,67,-1.8523812610656023],[114,298,68,-1.8514649346470833],[114,298,69,-1.850472154095769],[114,298,70,-1.8493940830230713],[114,298,71,-1.8480666745454073],[114,298,72,-1.8461980791762471],[114,298,73,-1.8439550111070275],[114,298,74,-1.8418531464412808],[114,298,75,-1.840485978871584],[114,298,76,-1.8397122910246253],[114,298,77,-1.8390990369953215],[114,298,78,-1.838192418217659],[114,298,79,-1.8369246376678348],[114,299,64,-1.864332564175129],[114,299,65,-1.8627462666481733],[114,299,66,-1.8613618705421686],[114,299,67,-1.8601937610656023],[114,299,68,-1.8592774346470833],[114,299,69,-1.858284654095769],[114,299,70,-1.8572065830230713],[114,299,71,-1.8558791745454073],[114,299,72,-1.8540105791762471],[114,299,73,-1.8517675111070275],[114,299,74,-1.8496656464412808],[114,299,75,-1.848298478871584],[114,299,76,-1.8475247910246253],[114,299,77,-1.8469115369953215],[114,299,78,-1.846004918217659],[114,299,79,-1.8447371376678348],[114,300,64,-1.872145064175129],[114,300,65,-1.8705587666481733],[114,300,66,-1.8691743705421686],[114,300,67,-1.8680062610656023],[114,300,68,-1.8670899346470833],[114,300,69,-1.866097154095769],[114,300,70,-1.8650190830230713],[114,300,71,-1.8636916745454073],[114,300,72,-1.8618230791762471],[114,300,73,-1.8595800111070275],[114,300,74,-1.8574781464412808],[114,300,75,-1.856110978871584],[114,300,76,-1.8553372910246253],[114,300,77,-1.8547240369953215],[114,300,78,-1.853817418217659],[114,300,79,-1.8525496376678348],[114,301,64,-1.879957564175129],[114,301,65,-1.8783712666481733],[114,301,66,-1.8769868705421686],[114,301,67,-1.8758187610656023],[114,301,68,-1.8749024346470833],[114,301,69,-1.873909654095769],[114,301,70,-1.8728315830230713],[114,301,71,-1.8715041745454073],[114,301,72,-1.8696355791762471],[114,301,73,-1.8673925111070275],[114,301,74,-1.8652906464412808],[114,301,75,-1.863923478871584],[114,301,76,-1.8631497910246253],[114,301,77,-1.8625365369953215],[114,301,78,-1.861629918217659],[114,301,79,-1.8603621376678348],[114,302,64,-1.887770064175129],[114,302,65,-1.8861837666481733],[114,302,66,-1.8847993705421686],[114,302,67,-1.8836312610656023],[114,302,68,-1.8827149346470833],[114,302,69,-1.881722154095769],[114,302,70,-1.8806440830230713],[114,302,71,-1.8793166745454073],[114,302,72,-1.8774480791762471],[114,302,73,-1.8752050111070275],[114,302,74,-1.8731031464412808],[114,302,75,-1.871735978871584],[114,302,76,-1.8709622910246253],[114,302,77,-1.8703490369953215],[114,302,78,-1.869442418217659],[114,302,79,-1.8681746376678348],[114,303,64,-1.895582564175129],[114,303,65,-1.8939962666481733],[114,303,66,-1.8926118705421686],[114,303,67,-1.8914437610656023],[114,303,68,-1.8905274346470833],[114,303,69,-1.889534654095769],[114,303,70,-1.8884565830230713],[114,303,71,-1.8871291745454073],[114,303,72,-1.8852605791762471],[114,303,73,-1.8830175111070275],[114,303,74,-1.8809156464412808],[114,303,75,-1.879548478871584],[114,303,76,-1.8787747910246253],[114,303,77,-1.8781615369953215],[114,303,78,-1.877254918217659],[114,303,79,-1.8759871376678348],[114,304,64,-1.903395064175129],[114,304,65,-1.9018087666481733],[114,304,66,-1.9004243705421686],[114,304,67,-1.8992562610656023],[114,304,68,-1.8983399346470833],[114,304,69,-1.897347154095769],[114,304,70,-1.8962690830230713],[114,304,71,-1.8949416745454073],[114,304,72,-1.8930730791762471],[114,304,73,-1.8908300111070275],[114,304,74,-1.8887281464412808],[114,304,75,-1.887360978871584],[114,304,76,-1.8865872910246253],[114,304,77,-1.8859740369953215],[114,304,78,-1.885067418217659],[114,304,79,-1.8837996376678348],[114,305,64,-1.911207564175129],[114,305,65,-1.9096212666481733],[114,305,66,-1.9082368705421686],[114,305,67,-1.9070687610656023],[114,305,68,-1.9061524346470833],[114,305,69,-1.905159654095769],[114,305,70,-1.9040815830230713],[114,305,71,-1.9027541745454073],[114,305,72,-1.9008855791762471],[114,305,73,-1.8986425111070275],[114,305,74,-1.8965406464412808],[114,305,75,-1.895173478871584],[114,305,76,-1.8943997910246253],[114,305,77,-1.8937865369953215],[114,305,78,-1.892879918217659],[114,305,79,-1.8916121376678348],[114,306,64,-1.919020064175129],[114,306,65,-1.9174337666481733],[114,306,66,-1.9160493705421686],[114,306,67,-1.9148812610656023],[114,306,68,-1.9139649346470833],[114,306,69,-1.912972154095769],[114,306,70,-1.9118940830230713],[114,306,71,-1.9105666745454073],[114,306,72,-1.9086980791762471],[114,306,73,-1.9064550111070275],[114,306,74,-1.9043531464412808],[114,306,75,-1.902985978871584],[114,306,76,-1.9022122910246253],[114,306,77,-1.9015990369953215],[114,306,78,-1.900692418217659],[114,306,79,-1.8994246376678348],[114,307,64,-1.926832564175129],[114,307,65,-1.9252462666481733],[114,307,66,-1.9238618705421686],[114,307,67,-1.9226937610656023],[114,307,68,-1.9217774346470833],[114,307,69,-1.920784654095769],[114,307,70,-1.9197065830230713],[114,307,71,-1.9183791745454073],[114,307,72,-1.9165105791762471],[114,307,73,-1.9142675111070275],[114,307,74,-1.9121656464412808],[114,307,75,-1.910798478871584],[114,307,76,-1.9100247910246253],[114,307,77,-1.9094115369953215],[114,307,78,-1.908504918217659],[114,307,79,-1.9072371376678348],[114,308,64,-1.934645064175129],[114,308,65,-1.9330587666481733],[114,308,66,-1.9316743705421686],[114,308,67,-1.9305062610656023],[114,308,68,-1.9295899346470833],[114,308,69,-1.928597154095769],[114,308,70,-1.9275190830230713],[114,308,71,-1.9261916745454073],[114,308,72,-1.9243230791762471],[114,308,73,-1.9220800111070275],[114,308,74,-1.9199781464412808],[114,308,75,-1.918610978871584],[114,308,76,-1.9178372910246253],[114,308,77,-1.9172240369953215],[114,308,78,-1.916317418217659],[114,308,79,-1.9150496376678348],[114,309,64,-1.942457564175129],[114,309,65,-1.9408712666481733],[114,309,66,-1.9394868705421686],[114,309,67,-1.9383187610656023],[114,309,68,-1.9374024346470833],[114,309,69,-1.936409654095769],[114,309,70,-1.9353315830230713],[114,309,71,-1.9340041745454073],[114,309,72,-1.9321355791762471],[114,309,73,-1.9298925111070275],[114,309,74,-1.9277906464412808],[114,309,75,-1.926423478871584],[114,309,76,-1.9256497910246253],[114,309,77,-1.9250365369953215],[114,309,78,-1.924129918217659],[114,309,79,-1.9228621376678348],[114,310,64,-1.950270064175129],[114,310,65,-1.9486837666481733],[114,310,66,-1.9472993705421686],[114,310,67,-1.9461312610656023],[114,310,68,-1.9452149346470833],[114,310,69,-1.944222154095769],[114,310,70,-1.9431440830230713],[114,310,71,-1.9418166745454073],[114,310,72,-1.9399480791762471],[114,310,73,-1.9377050111070275],[114,310,74,-1.9356031464412808],[114,310,75,-1.934235978871584],[114,310,76,-1.9334622910246253],[114,310,77,-1.9328490369953215],[114,310,78,-1.931942418217659],[114,310,79,-1.9306746376678348],[114,311,64,-1.958082564175129],[114,311,65,-1.9564962666481733],[114,311,66,-1.9551118705421686],[114,311,67,-1.9539437610656023],[114,311,68,-1.9530274346470833],[114,311,69,-1.952034654095769],[114,311,70,-1.9509565830230713],[114,311,71,-1.9496291745454073],[114,311,72,-1.9477605791762471],[114,311,73,-1.9455175111070275],[114,311,74,-1.9434156464412808],[114,311,75,-1.942048478871584],[114,311,76,-1.9412747910246253],[114,311,77,-1.9406615369953215],[114,311,78,-1.939754918217659],[114,311,79,-1.9384871376678348],[114,312,64,-1.965895064175129],[114,312,65,-1.9643087666481733],[114,312,66,-1.9629243705421686],[114,312,67,-1.9617562610656023],[114,312,68,-1.9608399346470833],[114,312,69,-1.959847154095769],[114,312,70,-1.9587690830230713],[114,312,71,-1.9574416745454073],[114,312,72,-1.9555730791762471],[114,312,73,-1.9533300111070275],[114,312,74,-1.9512281464412808],[114,312,75,-1.949860978871584],[114,312,76,-1.9490872910246253],[114,312,77,-1.9484740369953215],[114,312,78,-1.947567418217659],[114,312,79,-1.9462996376678348],[114,313,64,-1.973707564175129],[114,313,65,-1.9721212666481733],[114,313,66,-1.9707368705421686],[114,313,67,-1.9695687610656023],[114,313,68,-1.9686524346470833],[114,313,69,-1.967659654095769],[114,313,70,-1.9665815830230713],[114,313,71,-1.9652541745454073],[114,313,72,-1.9633855791762471],[114,313,73,-1.9611425111070275],[114,313,74,-1.9590406464412808],[114,313,75,-1.957673478871584],[114,313,76,-1.9568997910246253],[114,313,77,-1.9562865369953215],[114,313,78,-1.955379918217659],[114,313,79,-1.9541121376678348],[114,314,64,-1.981520064175129],[114,314,65,-1.9799337666481733],[114,314,66,-1.9785493705421686],[114,314,67,-1.9773812610656023],[114,314,68,-1.9764649346470833],[114,314,69,-1.975472154095769],[114,314,70,-1.9743940830230713],[114,314,71,-1.9730666745454073],[114,314,72,-1.9711980791762471],[114,314,73,-1.9689550111070275],[114,314,74,-1.9668531464412808],[114,314,75,-1.965485978871584],[114,314,76,-1.9647122910246253],[114,314,77,-1.9640990369953215],[114,314,78,-1.963192418217659],[114,314,79,-1.9619246376678348],[114,315,64,-1.989332564175129],[114,315,65,-1.9877462666481733],[114,315,66,-1.9863618705421686],[114,315,67,-1.9851937610656023],[114,315,68,-1.9842774346470833],[114,315,69,-1.983284654095769],[114,315,70,-1.9822065830230713],[114,315,71,-1.9808791745454073],[114,315,72,-1.9790105791762471],[114,315,73,-1.9767675111070275],[114,315,74,-1.9746656464412808],[114,315,75,-1.973298478871584],[114,315,76,-1.9725247910246253],[114,315,77,-1.9719115369953215],[114,315,78,-1.971004918217659],[114,315,79,-1.9697371376678348],[114,316,64,-1.997145064175129],[114,316,65,-1.9955587666481733],[114,316,66,-1.9941743705421686],[114,316,67,-1.9930062610656023],[114,316,68,-1.9920899346470833],[114,316,69,-1.991097154095769],[114,316,70,-1.9900190830230713],[114,316,71,-1.9886916745454073],[114,316,72,-1.9868230791762471],[114,316,73,-1.9845800111070275],[114,316,74,-1.9824781464412808],[114,316,75,-1.981110978871584],[114,316,76,-1.9803372910246253],[114,316,77,-1.9797240369953215],[114,316,78,-1.978817418217659],[114,316,79,-1.9775496376678348],[114,317,64,-2.004957564175129],[114,317,65,-2.0033712666481733],[114,317,66,-2.0019868705421686],[114,317,67,-2.0008187610656023],[114,317,68,-1.9999024346470833],[114,317,69,-1.998909654095769],[114,317,70,-1.9978315830230713],[114,317,71,-1.9965041745454073],[114,317,72,-1.9946355791762471],[114,317,73,-1.9923925111070275],[114,317,74,-1.9902906464412808],[114,317,75,-1.988923478871584],[114,317,76,-1.9881497910246253],[114,317,77,-1.9875365369953215],[114,317,78,-1.986629918217659],[114,317,79,-1.9853621376678348],[114,318,64,-2.012770064175129],[114,318,65,-2.0111837666481733],[114,318,66,-2.0097993705421686],[114,318,67,-2.0086312610656023],[114,318,68,-2.0077149346470833],[114,318,69,-2.006722154095769],[114,318,70,-2.0056440830230713],[114,318,71,-2.0043166745454073],[114,318,72,-2.002448079176247],[114,318,73,-2.0002050111070275],[114,318,74,-1.9981031464412808],[114,318,75,-1.996735978871584],[114,318,76,-1.9959622910246253],[114,318,77,-1.9953490369953215],[114,318,78,-1.994442418217659],[114,318,79,-1.9931746376678348],[114,319,64,-2.020582564175129],[114,319,65,-2.0189962666481733],[114,319,66,-2.0176118705421686],[114,319,67,-2.0164437610656023],[114,319,68,-2.0155274346470833],[114,319,69,-2.014534654095769],[114,319,70,-2.0134565830230713],[114,319,71,-2.0121291745454073],[114,319,72,-2.010260579176247],[114,319,73,-2.0080175111070275],[114,319,74,-2.005915646441281],[114,319,75,-2.004548478871584],[114,319,76,-2.0037747910246253],[114,319,77,-2.0031615369953215],[114,319,78,-2.002254918217659],[114,319,79,-2.0009871376678348],[115,-64,64,0.967244328930974],[115,-64,65,0.9685531910508871],[115,-64,66,0.969996327534318],[115,-64,67,0.9714950565248728],[115,-64,68,0.9727738443762064],[115,-64,69,0.9739657081663609],[115,-64,70,0.9750715419650078],[115,-64,71,0.9764193687587976],[115,-64,72,0.9782813526690006],[115,-64,73,0.9803747478872538],[115,-64,74,0.9823441430926323],[115,-64,75,0.9837678335607052],[115,-64,76,0.984497101046145],[115,-64,77,0.9849280323833227],[115,-64,78,0.9857234358787537],[115,-64,79,0.9870299529284239],[115,-63,64,0.959431828930974],[115,-63,65,0.9607406910508871],[115,-63,66,0.962183827534318],[115,-63,67,0.9636825565248728],[115,-63,68,0.9649613443762064],[115,-63,69,0.9661532081663609],[115,-63,70,0.9672590419650078],[115,-63,71,0.9686068687587976],[115,-63,72,0.9704688526690006],[115,-63,73,0.9725622478872538],[115,-63,74,0.9745316430926323],[115,-63,75,0.9759553335607052],[115,-63,76,0.976684601046145],[115,-63,77,0.9771155323833227],[115,-63,78,0.9779109358787537],[115,-63,79,0.9792174529284239],[115,-62,64,0.951619328930974],[115,-62,65,0.9529281910508871],[115,-62,66,0.954371327534318],[115,-62,67,0.9558700565248728],[115,-62,68,0.9571488443762064],[115,-62,69,0.9583407081663609],[115,-62,70,0.9594465419650078],[115,-62,71,0.9607943687587976],[115,-62,72,0.9626563526690006],[115,-62,73,0.9647497478872538],[115,-62,74,0.9667191430926323],[115,-62,75,0.9681428335607052],[115,-62,76,0.968872101046145],[115,-62,77,0.9693030323833227],[115,-62,78,0.9700984358787537],[115,-62,79,0.9714049529284239],[115,-61,64,0.943806828930974],[115,-61,65,0.9451156910508871],[115,-61,66,0.946558827534318],[115,-61,67,0.9480575565248728],[115,-61,68,0.9493363443762064],[115,-61,69,0.9505282081663609],[115,-61,70,0.9516340419650078],[115,-61,71,0.9529818687587976],[115,-61,72,0.9548438526690006],[115,-61,73,0.9569372478872538],[115,-61,74,0.9589066430926323],[115,-61,75,0.9603303335607052],[115,-61,76,0.961059601046145],[115,-61,77,0.9614905323833227],[115,-61,78,0.9622859358787537],[115,-61,79,0.9635924529284239],[115,-60,64,0.935994328930974],[115,-60,65,0.9373031910508871],[115,-60,66,0.938746327534318],[115,-60,67,0.9402450565248728],[115,-60,68,0.9415238443762064],[115,-60,69,0.9427157081663609],[115,-60,70,0.9438215419650078],[115,-60,71,0.9451693687587976],[115,-60,72,0.9470313526690006],[115,-60,73,0.9491247478872538],[115,-60,74,0.9510941430926323],[115,-60,75,0.9525178335607052],[115,-60,76,0.953247101046145],[115,-60,77,0.9536780323833227],[115,-60,78,0.9544734358787537],[115,-60,79,0.9557799529284239],[115,-59,64,0.928181828930974],[115,-59,65,0.9294906910508871],[115,-59,66,0.930933827534318],[115,-59,67,0.9324325565248728],[115,-59,68,0.9337113443762064],[115,-59,69,0.9349032081663609],[115,-59,70,0.9360090419650078],[115,-59,71,0.9373568687587976],[115,-59,72,0.9392188526690006],[115,-59,73,0.9413122478872538],[115,-59,74,0.9432816430926323],[115,-59,75,0.9447053335607052],[115,-59,76,0.945434601046145],[115,-59,77,0.9458655323833227],[115,-59,78,0.9466609358787537],[115,-59,79,0.9479674529284239],[115,-58,64,0.920369328930974],[115,-58,65,0.9216781910508871],[115,-58,66,0.923121327534318],[115,-58,67,0.9246200565248728],[115,-58,68,0.9258988443762064],[115,-58,69,0.9270907081663609],[115,-58,70,0.9281965419650078],[115,-58,71,0.9295443687587976],[115,-58,72,0.9314063526690006],[115,-58,73,0.9334997478872538],[115,-58,74,0.9354691430926323],[115,-58,75,0.9368928335607052],[115,-58,76,0.937622101046145],[115,-58,77,0.9380530323833227],[115,-58,78,0.9388484358787537],[115,-58,79,0.9401549529284239],[115,-57,64,0.912556828930974],[115,-57,65,0.9138656910508871],[115,-57,66,0.915308827534318],[115,-57,67,0.9168075565248728],[115,-57,68,0.9180863443762064],[115,-57,69,0.9192782081663609],[115,-57,70,0.9203840419650078],[115,-57,71,0.9217318687587976],[115,-57,72,0.9235938526690006],[115,-57,73,0.9256872478872538],[115,-57,74,0.9276566430926323],[115,-57,75,0.9290803335607052],[115,-57,76,0.929809601046145],[115,-57,77,0.9302405323833227],[115,-57,78,0.9310359358787537],[115,-57,79,0.9323424529284239],[115,-56,64,0.904744328930974],[115,-56,65,0.9060531910508871],[115,-56,66,0.907496327534318],[115,-56,67,0.9089950565248728],[115,-56,68,0.9102738443762064],[115,-56,69,0.9114657081663609],[115,-56,70,0.9125715419650078],[115,-56,71,0.9139193687587976],[115,-56,72,0.9157813526690006],[115,-56,73,0.9178747478872538],[115,-56,74,0.9198441430926323],[115,-56,75,0.9212678335607052],[115,-56,76,0.921997101046145],[115,-56,77,0.9224280323833227],[115,-56,78,0.9232234358787537],[115,-56,79,0.9245299529284239],[115,-55,64,0.896931828930974],[115,-55,65,0.8982406910508871],[115,-55,66,0.899683827534318],[115,-55,67,0.9011825565248728],[115,-55,68,0.9024613443762064],[115,-55,69,0.9036532081663609],[115,-55,70,0.9047590419650078],[115,-55,71,0.9061068687587976],[115,-55,72,0.9079688526690006],[115,-55,73,0.9100622478872538],[115,-55,74,0.9120316430926323],[115,-55,75,0.9134553335607052],[115,-55,76,0.914184601046145],[115,-55,77,0.9146155323833227],[115,-55,78,0.9154109358787537],[115,-55,79,0.9167174529284239],[115,-54,64,0.889119328930974],[115,-54,65,0.8904281910508871],[115,-54,66,0.891871327534318],[115,-54,67,0.8933700565248728],[115,-54,68,0.8946488443762064],[115,-54,69,0.8958407081663609],[115,-54,70,0.8969465419650078],[115,-54,71,0.8982943687587976],[115,-54,72,0.9001563526690006],[115,-54,73,0.9022497478872538],[115,-54,74,0.9042191430926323],[115,-54,75,0.9056428335607052],[115,-54,76,0.906372101046145],[115,-54,77,0.9068030323833227],[115,-54,78,0.9075984358787537],[115,-54,79,0.9089049529284239],[115,-53,64,0.881306828930974],[115,-53,65,0.8826156910508871],[115,-53,66,0.884058827534318],[115,-53,67,0.8855575565248728],[115,-53,68,0.8868363443762064],[115,-53,69,0.8880282081663609],[115,-53,70,0.8891340419650078],[115,-53,71,0.8904818687587976],[115,-53,72,0.8923438526690006],[115,-53,73,0.8944372478872538],[115,-53,74,0.8964066430926323],[115,-53,75,0.8978303335607052],[115,-53,76,0.898559601046145],[115,-53,77,0.8989905323833227],[115,-53,78,0.8997859358787537],[115,-53,79,0.9010924529284239],[115,-52,64,0.873494328930974],[115,-52,65,0.8748031910508871],[115,-52,66,0.876246327534318],[115,-52,67,0.8777450565248728],[115,-52,68,0.8790238443762064],[115,-52,69,0.8802157081663609],[115,-52,70,0.8813215419650078],[115,-52,71,0.8826693687587976],[115,-52,72,0.8845313526690006],[115,-52,73,0.8866247478872538],[115,-52,74,0.8885941430926323],[115,-52,75,0.8900178335607052],[115,-52,76,0.890747101046145],[115,-52,77,0.8911780323833227],[115,-52,78,0.8919734358787537],[115,-52,79,0.8932799529284239],[115,-51,64,0.865681828930974],[115,-51,65,0.8669906910508871],[115,-51,66,0.868433827534318],[115,-51,67,0.8699325565248728],[115,-51,68,0.8712113443762064],[115,-51,69,0.8724032081663609],[115,-51,70,0.8735090419650078],[115,-51,71,0.8748568687587976],[115,-51,72,0.8767188526690006],[115,-51,73,0.8788122478872538],[115,-51,74,0.8807816430926323],[115,-51,75,0.8822053335607052],[115,-51,76,0.882934601046145],[115,-51,77,0.8833655323833227],[115,-51,78,0.8841609358787537],[115,-51,79,0.8854674529284239],[115,-50,64,0.857869328930974],[115,-50,65,0.8591781910508871],[115,-50,66,0.860621327534318],[115,-50,67,0.8621200565248728],[115,-50,68,0.8633988443762064],[115,-50,69,0.8645907081663609],[115,-50,70,0.8656965419650078],[115,-50,71,0.8670443687587976],[115,-50,72,0.8689063526690006],[115,-50,73,0.8709997478872538],[115,-50,74,0.8729691430926323],[115,-50,75,0.8743928335607052],[115,-50,76,0.875122101046145],[115,-50,77,0.8755530323833227],[115,-50,78,0.8763484358787537],[115,-50,79,0.8776549529284239],[115,-49,64,0.850056828930974],[115,-49,65,0.8513656910508871],[115,-49,66,0.852808827534318],[115,-49,67,0.8543075565248728],[115,-49,68,0.8555863443762064],[115,-49,69,0.8567782081663609],[115,-49,70,0.8578840419650078],[115,-49,71,0.8592318687587976],[115,-49,72,0.8610938526690006],[115,-49,73,0.8631872478872538],[115,-49,74,0.8651566430926323],[115,-49,75,0.8665803335607052],[115,-49,76,0.867309601046145],[115,-49,77,0.8677405323833227],[115,-49,78,0.8685359358787537],[115,-49,79,0.8698424529284239],[115,-48,64,0.842244328930974],[115,-48,65,0.8435531910508871],[115,-48,66,0.844996327534318],[115,-48,67,0.8464950565248728],[115,-48,68,0.8477738443762064],[115,-48,69,0.8489657081663609],[115,-48,70,0.8500715419650078],[115,-48,71,0.8514193687587976],[115,-48,72,0.8532813526690006],[115,-48,73,0.8553747478872538],[115,-48,74,0.8573441430926323],[115,-48,75,0.8587678335607052],[115,-48,76,0.859497101046145],[115,-48,77,0.8599280323833227],[115,-48,78,0.8607234358787537],[115,-48,79,0.8620299529284239],[115,-47,64,0.834431828930974],[115,-47,65,0.8357406910508871],[115,-47,66,0.837183827534318],[115,-47,67,0.8386825565248728],[115,-47,68,0.8399613443762064],[115,-47,69,0.8411532081663609],[115,-47,70,0.8422590419650078],[115,-47,71,0.8436068687587976],[115,-47,72,0.8454688526690006],[115,-47,73,0.8475622478872538],[115,-47,74,0.8495316430926323],[115,-47,75,0.8509553335607052],[115,-47,76,0.851684601046145],[115,-47,77,0.8521155323833227],[115,-47,78,0.8529109358787537],[115,-47,79,0.8542174529284239],[115,-46,64,0.826619328930974],[115,-46,65,0.8279281910508871],[115,-46,66,0.829371327534318],[115,-46,67,0.8308700565248728],[115,-46,68,0.8321488443762064],[115,-46,69,0.8333407081663609],[115,-46,70,0.8344465419650078],[115,-46,71,0.8357943687587976],[115,-46,72,0.8376563526690006],[115,-46,73,0.8397497478872538],[115,-46,74,0.8417191430926323],[115,-46,75,0.8431428335607052],[115,-46,76,0.843872101046145],[115,-46,77,0.8443030323833227],[115,-46,78,0.8450984358787537],[115,-46,79,0.8464049529284239],[115,-45,64,0.818806828930974],[115,-45,65,0.8201156910508871],[115,-45,66,0.821558827534318],[115,-45,67,0.8230575565248728],[115,-45,68,0.8243363443762064],[115,-45,69,0.8255282081663609],[115,-45,70,0.8266340419650078],[115,-45,71,0.8279818687587976],[115,-45,72,0.8298438526690006],[115,-45,73,0.8319372478872538],[115,-45,74,0.8339066430926323],[115,-45,75,0.8353303335607052],[115,-45,76,0.836059601046145],[115,-45,77,0.8364905323833227],[115,-45,78,0.8372859358787537],[115,-45,79,0.8385924529284239],[115,-44,64,0.810994328930974],[115,-44,65,0.8123031910508871],[115,-44,66,0.813746327534318],[115,-44,67,0.8152450565248728],[115,-44,68,0.8165238443762064],[115,-44,69,0.8177157081663609],[115,-44,70,0.8188215419650078],[115,-44,71,0.8201693687587976],[115,-44,72,0.8220313526690006],[115,-44,73,0.8241247478872538],[115,-44,74,0.8260941430926323],[115,-44,75,0.8275178335607052],[115,-44,76,0.828247101046145],[115,-44,77,0.8286780323833227],[115,-44,78,0.8294734358787537],[115,-44,79,0.8307799529284239],[115,-43,64,0.803181828930974],[115,-43,65,0.8044906910508871],[115,-43,66,0.805933827534318],[115,-43,67,0.8074325565248728],[115,-43,68,0.8087113443762064],[115,-43,69,0.8099032081663609],[115,-43,70,0.8110090419650078],[115,-43,71,0.8123568687587976],[115,-43,72,0.8142188526690006],[115,-43,73,0.8163122478872538],[115,-43,74,0.8182816430926323],[115,-43,75,0.8197053335607052],[115,-43,76,0.820434601046145],[115,-43,77,0.8208655323833227],[115,-43,78,0.8216609358787537],[115,-43,79,0.8229674529284239],[115,-42,64,0.795369328930974],[115,-42,65,0.7966781910508871],[115,-42,66,0.798121327534318],[115,-42,67,0.7996200565248728],[115,-42,68,0.8008988443762064],[115,-42,69,0.8020907081663609],[115,-42,70,0.8031965419650078],[115,-42,71,0.8045443687587976],[115,-42,72,0.8064063526690006],[115,-42,73,0.8084997478872538],[115,-42,74,0.8104691430926323],[115,-42,75,0.8118928335607052],[115,-42,76,0.812622101046145],[115,-42,77,0.8130530323833227],[115,-42,78,0.8138484358787537],[115,-42,79,0.8151549529284239],[115,-41,64,0.787556828930974],[115,-41,65,0.7888656910508871],[115,-41,66,0.790308827534318],[115,-41,67,0.7918075565248728],[115,-41,68,0.7930863443762064],[115,-41,69,0.7942782081663609],[115,-41,70,0.7953840419650078],[115,-41,71,0.7967318687587976],[115,-41,72,0.7985938526690006],[115,-41,73,0.8006872478872538],[115,-41,74,0.8026566430926323],[115,-41,75,0.8040803335607052],[115,-41,76,0.804809601046145],[115,-41,77,0.8052405323833227],[115,-41,78,0.8060359358787537],[115,-41,79,0.8073424529284239],[115,-40,64,0.779744328930974],[115,-40,65,0.7810531910508871],[115,-40,66,0.782496327534318],[115,-40,67,0.7839950565248728],[115,-40,68,0.7852738443762064],[115,-40,69,0.7864657081663609],[115,-40,70,0.7875715419650078],[115,-40,71,0.7889193687587976],[115,-40,72,0.7907813526690006],[115,-40,73,0.7928747478872538],[115,-40,74,0.7948441430926323],[115,-40,75,0.7962678335607052],[115,-40,76,0.796997101046145],[115,-40,77,0.7974280323833227],[115,-40,78,0.7982234358787537],[115,-40,79,0.7995299529284239],[115,-39,64,0.771931828930974],[115,-39,65,0.7732406910508871],[115,-39,66,0.774683827534318],[115,-39,67,0.7761825565248728],[115,-39,68,0.7774613443762064],[115,-39,69,0.7786532081663609],[115,-39,70,0.7797590419650078],[115,-39,71,0.7811068687587976],[115,-39,72,0.7829688526690006],[115,-39,73,0.7850622478872538],[115,-39,74,0.7870316430926323],[115,-39,75,0.7884553335607052],[115,-39,76,0.789184601046145],[115,-39,77,0.7896155323833227],[115,-39,78,0.7904109358787537],[115,-39,79,0.7917174529284239],[115,-38,64,0.764119328930974],[115,-38,65,0.7654281910508871],[115,-38,66,0.766871327534318],[115,-38,67,0.7683700565248728],[115,-38,68,0.7696488443762064],[115,-38,69,0.7708407081663609],[115,-38,70,0.7719465419650078],[115,-38,71,0.7732943687587976],[115,-38,72,0.7751563526690006],[115,-38,73,0.7772497478872538],[115,-38,74,0.7792191430926323],[115,-38,75,0.7806428335607052],[115,-38,76,0.781372101046145],[115,-38,77,0.7818030323833227],[115,-38,78,0.7825984358787537],[115,-38,79,0.7839049529284239],[115,-37,64,0.756306828930974],[115,-37,65,0.7576156910508871],[115,-37,66,0.759058827534318],[115,-37,67,0.7605575565248728],[115,-37,68,0.7618363443762064],[115,-37,69,0.7630282081663609],[115,-37,70,0.7641340419650078],[115,-37,71,0.7654818687587976],[115,-37,72,0.7673438526690006],[115,-37,73,0.7694372478872538],[115,-37,74,0.7714066430926323],[115,-37,75,0.7728303335607052],[115,-37,76,0.773559601046145],[115,-37,77,0.7739905323833227],[115,-37,78,0.7747859358787537],[115,-37,79,0.7760924529284239],[115,-36,64,0.748494328930974],[115,-36,65,0.7498031910508871],[115,-36,66,0.751246327534318],[115,-36,67,0.7527450565248728],[115,-36,68,0.7540238443762064],[115,-36,69,0.7552157081663609],[115,-36,70,0.7563215419650078],[115,-36,71,0.7576693687587976],[115,-36,72,0.7595313526690006],[115,-36,73,0.7616247478872538],[115,-36,74,0.7635941430926323],[115,-36,75,0.7650178335607052],[115,-36,76,0.765747101046145],[115,-36,77,0.7661780323833227],[115,-36,78,0.7669734358787537],[115,-36,79,0.7682799529284239],[115,-35,64,0.740681828930974],[115,-35,65,0.7419906910508871],[115,-35,66,0.743433827534318],[115,-35,67,0.7449325565248728],[115,-35,68,0.7462113443762064],[115,-35,69,0.7474032081663609],[115,-35,70,0.7485090419650078],[115,-35,71,0.7498568687587976],[115,-35,72,0.7517188526690006],[115,-35,73,0.7538122478872538],[115,-35,74,0.7557816430926323],[115,-35,75,0.7572053335607052],[115,-35,76,0.757934601046145],[115,-35,77,0.7583655323833227],[115,-35,78,0.7591609358787537],[115,-35,79,0.7604674529284239],[115,-34,64,0.732869328930974],[115,-34,65,0.7341781910508871],[115,-34,66,0.735621327534318],[115,-34,67,0.7371200565248728],[115,-34,68,0.7383988443762064],[115,-34,69,0.7395907081663609],[115,-34,70,0.7406965419650078],[115,-34,71,0.7420443687587976],[115,-34,72,0.7439063526690006],[115,-34,73,0.7459997478872538],[115,-34,74,0.7479691430926323],[115,-34,75,0.7493928335607052],[115,-34,76,0.750122101046145],[115,-34,77,0.7505530323833227],[115,-34,78,0.7513484358787537],[115,-34,79,0.7526549529284239],[115,-33,64,0.725056828930974],[115,-33,65,0.7263656910508871],[115,-33,66,0.727808827534318],[115,-33,67,0.7293075565248728],[115,-33,68,0.7305863443762064],[115,-33,69,0.7317782081663609],[115,-33,70,0.7328840419650078],[115,-33,71,0.7342318687587976],[115,-33,72,0.7360938526690006],[115,-33,73,0.7381872478872538],[115,-33,74,0.7401566430926323],[115,-33,75,0.7415803335607052],[115,-33,76,0.742309601046145],[115,-33,77,0.7427405323833227],[115,-33,78,0.7435359358787537],[115,-33,79,0.7448424529284239],[115,-32,64,0.717244328930974],[115,-32,65,0.7185531910508871],[115,-32,66,0.719996327534318],[115,-32,67,0.7214950565248728],[115,-32,68,0.7227738443762064],[115,-32,69,0.7239657081663609],[115,-32,70,0.7250715419650078],[115,-32,71,0.7264193687587976],[115,-32,72,0.7282813526690006],[115,-32,73,0.7303747478872538],[115,-32,74,0.7323441430926323],[115,-32,75,0.7337678335607052],[115,-32,76,0.734497101046145],[115,-32,77,0.7349280323833227],[115,-32,78,0.7357234358787537],[115,-32,79,0.7370299529284239],[115,-31,64,0.709431828930974],[115,-31,65,0.7107406910508871],[115,-31,66,0.712183827534318],[115,-31,67,0.7136825565248728],[115,-31,68,0.7149613443762064],[115,-31,69,0.7161532081663609],[115,-31,70,0.7172590419650078],[115,-31,71,0.7186068687587976],[115,-31,72,0.7204688526690006],[115,-31,73,0.7225622478872538],[115,-31,74,0.7245316430926323],[115,-31,75,0.7259553335607052],[115,-31,76,0.726684601046145],[115,-31,77,0.7271155323833227],[115,-31,78,0.7279109358787537],[115,-31,79,0.7292174529284239],[115,-30,64,0.701619328930974],[115,-30,65,0.7029281910508871],[115,-30,66,0.704371327534318],[115,-30,67,0.7058700565248728],[115,-30,68,0.7071488443762064],[115,-30,69,0.7083407081663609],[115,-30,70,0.7094465419650078],[115,-30,71,0.7107943687587976],[115,-30,72,0.7126563526690006],[115,-30,73,0.7147497478872538],[115,-30,74,0.7167191430926323],[115,-30,75,0.7181428335607052],[115,-30,76,0.718872101046145],[115,-30,77,0.7193030323833227],[115,-30,78,0.7200984358787537],[115,-30,79,0.7214049529284239],[115,-29,64,0.693806828930974],[115,-29,65,0.6951156910508871],[115,-29,66,0.696558827534318],[115,-29,67,0.6980575565248728],[115,-29,68,0.6993363443762064],[115,-29,69,0.7005282081663609],[115,-29,70,0.7016340419650078],[115,-29,71,0.7029818687587976],[115,-29,72,0.7048438526690006],[115,-29,73,0.7069372478872538],[115,-29,74,0.7089066430926323],[115,-29,75,0.7103303335607052],[115,-29,76,0.711059601046145],[115,-29,77,0.7114905323833227],[115,-29,78,0.7122859358787537],[115,-29,79,0.7135924529284239],[115,-28,64,0.685994328930974],[115,-28,65,0.6873031910508871],[115,-28,66,0.688746327534318],[115,-28,67,0.6902450565248728],[115,-28,68,0.6915238443762064],[115,-28,69,0.6927157081663609],[115,-28,70,0.6938215419650078],[115,-28,71,0.6951693687587976],[115,-28,72,0.6970313526690006],[115,-28,73,0.6991247478872538],[115,-28,74,0.7010941430926323],[115,-28,75,0.7025178335607052],[115,-28,76,0.703247101046145],[115,-28,77,0.7036780323833227],[115,-28,78,0.7044734358787537],[115,-28,79,0.7057799529284239],[115,-27,64,0.678181828930974],[115,-27,65,0.6794906910508871],[115,-27,66,0.680933827534318],[115,-27,67,0.6824325565248728],[115,-27,68,0.6837113443762064],[115,-27,69,0.6849032081663609],[115,-27,70,0.6860090419650078],[115,-27,71,0.6873568687587976],[115,-27,72,0.6892188526690006],[115,-27,73,0.6913122478872538],[115,-27,74,0.6932816430926323],[115,-27,75,0.6947053335607052],[115,-27,76,0.695434601046145],[115,-27,77,0.6958655323833227],[115,-27,78,0.6966609358787537],[115,-27,79,0.6979674529284239],[115,-26,64,0.670369328930974],[115,-26,65,0.6716781910508871],[115,-26,66,0.673121327534318],[115,-26,67,0.6746200565248728],[115,-26,68,0.6758988443762064],[115,-26,69,0.6770907081663609],[115,-26,70,0.6781965419650078],[115,-26,71,0.6795443687587976],[115,-26,72,0.6814063526690006],[115,-26,73,0.6834997478872538],[115,-26,74,0.6854691430926323],[115,-26,75,0.6868928335607052],[115,-26,76,0.687622101046145],[115,-26,77,0.6880530323833227],[115,-26,78,0.6888484358787537],[115,-26,79,0.6901549529284239],[115,-25,64,0.662556828930974],[115,-25,65,0.6638656910508871],[115,-25,66,0.665308827534318],[115,-25,67,0.6668075565248728],[115,-25,68,0.6680863443762064],[115,-25,69,0.6692782081663609],[115,-25,70,0.6703840419650078],[115,-25,71,0.6717318687587976],[115,-25,72,0.6735938526690006],[115,-25,73,0.6756872478872538],[115,-25,74,0.6776566430926323],[115,-25,75,0.6790803335607052],[115,-25,76,0.679809601046145],[115,-25,77,0.6802405323833227],[115,-25,78,0.6810359358787537],[115,-25,79,0.6823424529284239],[115,-24,64,0.654744328930974],[115,-24,65,0.6560531910508871],[115,-24,66,0.657496327534318],[115,-24,67,0.6589950565248728],[115,-24,68,0.6602738443762064],[115,-24,69,0.6614657081663609],[115,-24,70,0.6625715419650078],[115,-24,71,0.6639193687587976],[115,-24,72,0.6657813526690006],[115,-24,73,0.6678747478872538],[115,-24,74,0.6698441430926323],[115,-24,75,0.6712678335607052],[115,-24,76,0.671997101046145],[115,-24,77,0.6724280323833227],[115,-24,78,0.6732234358787537],[115,-24,79,0.6745299529284239],[115,-23,64,0.646931828930974],[115,-23,65,0.6482406910508871],[115,-23,66,0.649683827534318],[115,-23,67,0.6511825565248728],[115,-23,68,0.6524613443762064],[115,-23,69,0.6536532081663609],[115,-23,70,0.6547590419650078],[115,-23,71,0.6561068687587976],[115,-23,72,0.6579688526690006],[115,-23,73,0.6600622478872538],[115,-23,74,0.6620316430926323],[115,-23,75,0.6634553335607052],[115,-23,76,0.664184601046145],[115,-23,77,0.6646155323833227],[115,-23,78,0.6654109358787537],[115,-23,79,0.6667174529284239],[115,-22,64,0.639119328930974],[115,-22,65,0.6404281910508871],[115,-22,66,0.641871327534318],[115,-22,67,0.6433700565248728],[115,-22,68,0.6446488443762064],[115,-22,69,0.6458407081663609],[115,-22,70,0.6469465419650078],[115,-22,71,0.6482943687587976],[115,-22,72,0.6501563526690006],[115,-22,73,0.6522497478872538],[115,-22,74,0.6542191430926323],[115,-22,75,0.6556428335607052],[115,-22,76,0.656372101046145],[115,-22,77,0.6568030323833227],[115,-22,78,0.6575984358787537],[115,-22,79,0.6589049529284239],[115,-21,64,0.631306828930974],[115,-21,65,0.6326156910508871],[115,-21,66,0.634058827534318],[115,-21,67,0.6355575565248728],[115,-21,68,0.6368363443762064],[115,-21,69,0.6380282081663609],[115,-21,70,0.6391340419650078],[115,-21,71,0.6404818687587976],[115,-21,72,0.6423438526690006],[115,-21,73,0.6444372478872538],[115,-21,74,0.6464066430926323],[115,-21,75,0.6478303335607052],[115,-21,76,0.648559601046145],[115,-21,77,0.6489905323833227],[115,-21,78,0.6497859358787537],[115,-21,79,0.6510924529284239],[115,-20,64,0.623494328930974],[115,-20,65,0.6248031910508871],[115,-20,66,0.626246327534318],[115,-20,67,0.6277450565248728],[115,-20,68,0.6290238443762064],[115,-20,69,0.6302157081663609],[115,-20,70,0.6313215419650078],[115,-20,71,0.6326693687587976],[115,-20,72,0.6345313526690006],[115,-20,73,0.6366247478872538],[115,-20,74,0.6385941430926323],[115,-20,75,0.6400178335607052],[115,-20,76,0.640747101046145],[115,-20,77,0.6411780323833227],[115,-20,78,0.6419734358787537],[115,-20,79,0.6432799529284239],[115,-19,64,0.615681828930974],[115,-19,65,0.6169906910508871],[115,-19,66,0.618433827534318],[115,-19,67,0.6199325565248728],[115,-19,68,0.6212113443762064],[115,-19,69,0.6224032081663609],[115,-19,70,0.6235090419650078],[115,-19,71,0.6248568687587976],[115,-19,72,0.6267188526690006],[115,-19,73,0.6288122478872538],[115,-19,74,0.6307816430926323],[115,-19,75,0.6322053335607052],[115,-19,76,0.632934601046145],[115,-19,77,0.6333655323833227],[115,-19,78,0.6341609358787537],[115,-19,79,0.6354674529284239],[115,-18,64,0.607869328930974],[115,-18,65,0.6091781910508871],[115,-18,66,0.610621327534318],[115,-18,67,0.6121200565248728],[115,-18,68,0.6133988443762064],[115,-18,69,0.6145907081663609],[115,-18,70,0.6156965419650078],[115,-18,71,0.6170443687587976],[115,-18,72,0.6189063526690006],[115,-18,73,0.6209997478872538],[115,-18,74,0.6229691430926323],[115,-18,75,0.6243928335607052],[115,-18,76,0.625122101046145],[115,-18,77,0.6255530323833227],[115,-18,78,0.6263484358787537],[115,-18,79,0.6276549529284239],[115,-17,64,0.600056828930974],[115,-17,65,0.6013656910508871],[115,-17,66,0.602808827534318],[115,-17,67,0.6043075565248728],[115,-17,68,0.6055863443762064],[115,-17,69,0.6067782081663609],[115,-17,70,0.6078840419650078],[115,-17,71,0.6092318687587976],[115,-17,72,0.6110938526690006],[115,-17,73,0.6131872478872538],[115,-17,74,0.6151566430926323],[115,-17,75,0.6165803335607052],[115,-17,76,0.617309601046145],[115,-17,77,0.6177405323833227],[115,-17,78,0.6185359358787537],[115,-17,79,0.6198424529284239],[115,-16,64,0.592244328930974],[115,-16,65,0.5935531910508871],[115,-16,66,0.594996327534318],[115,-16,67,0.5964950565248728],[115,-16,68,0.5977738443762064],[115,-16,69,0.5989657081663609],[115,-16,70,0.6000715419650078],[115,-16,71,0.6014193687587976],[115,-16,72,0.6032813526690006],[115,-16,73,0.6053747478872538],[115,-16,74,0.6073441430926323],[115,-16,75,0.6087678335607052],[115,-16,76,0.609497101046145],[115,-16,77,0.6099280323833227],[115,-16,78,0.6107234358787537],[115,-16,79,0.6120299529284239],[115,-15,64,0.584431828930974],[115,-15,65,0.5857406910508871],[115,-15,66,0.587183827534318],[115,-15,67,0.5886825565248728],[115,-15,68,0.5899613443762064],[115,-15,69,0.5911532081663609],[115,-15,70,0.5922590419650078],[115,-15,71,0.5936068687587976],[115,-15,72,0.5954688526690006],[115,-15,73,0.5975622478872538],[115,-15,74,0.5995316430926323],[115,-15,75,0.6009553335607052],[115,-15,76,0.601684601046145],[115,-15,77,0.6021155323833227],[115,-15,78,0.6029109358787537],[115,-15,79,0.6042174529284239],[115,-14,64,0.576619328930974],[115,-14,65,0.5779281910508871],[115,-14,66,0.579371327534318],[115,-14,67,0.5808700565248728],[115,-14,68,0.5821488443762064],[115,-14,69,0.5833407081663609],[115,-14,70,0.5844465419650078],[115,-14,71,0.5857943687587976],[115,-14,72,0.5876563526690006],[115,-14,73,0.5897497478872538],[115,-14,74,0.5917191430926323],[115,-14,75,0.5931428335607052],[115,-14,76,0.593872101046145],[115,-14,77,0.5943030323833227],[115,-14,78,0.5950984358787537],[115,-14,79,0.5964049529284239],[115,-13,64,0.568806828930974],[115,-13,65,0.5701156910508871],[115,-13,66,0.571558827534318],[115,-13,67,0.5730575565248728],[115,-13,68,0.5743363443762064],[115,-13,69,0.5755282081663609],[115,-13,70,0.5766340419650078],[115,-13,71,0.5779818687587976],[115,-13,72,0.5798438526690006],[115,-13,73,0.5819372478872538],[115,-13,74,0.5839066430926323],[115,-13,75,0.5853303335607052],[115,-13,76,0.586059601046145],[115,-13,77,0.5864905323833227],[115,-13,78,0.5872859358787537],[115,-13,79,0.5885924529284239],[115,-12,64,0.560994328930974],[115,-12,65,0.5623031910508871],[115,-12,66,0.563746327534318],[115,-12,67,0.5652450565248728],[115,-12,68,0.5665238443762064],[115,-12,69,0.5677157081663609],[115,-12,70,0.5688215419650078],[115,-12,71,0.5701693687587976],[115,-12,72,0.5720313526690006],[115,-12,73,0.5741247478872538],[115,-12,74,0.5760941430926323],[115,-12,75,0.5775178335607052],[115,-12,76,0.578247101046145],[115,-12,77,0.5786780323833227],[115,-12,78,0.5794734358787537],[115,-12,79,0.5807799529284239],[115,-11,64,0.553181828930974],[115,-11,65,0.5544906910508871],[115,-11,66,0.555933827534318],[115,-11,67,0.5574325565248728],[115,-11,68,0.5587113443762064],[115,-11,69,0.5599032081663609],[115,-11,70,0.5610090419650078],[115,-11,71,0.5623568687587976],[115,-11,72,0.5642188526690006],[115,-11,73,0.5663122478872538],[115,-11,74,0.5682816430926323],[115,-11,75,0.5697053335607052],[115,-11,76,0.570434601046145],[115,-11,77,0.5708655323833227],[115,-11,78,0.5716609358787537],[115,-11,79,0.5729674529284239],[115,-10,64,0.545369328930974],[115,-10,65,0.5466781910508871],[115,-10,66,0.548121327534318],[115,-10,67,0.5496200565248728],[115,-10,68,0.5508988443762064],[115,-10,69,0.5520907081663609],[115,-10,70,0.5531965419650078],[115,-10,71,0.5545443687587976],[115,-10,72,0.5564063526690006],[115,-10,73,0.5584997478872538],[115,-10,74,0.5604691430926323],[115,-10,75,0.5618928335607052],[115,-10,76,0.562622101046145],[115,-10,77,0.5630530323833227],[115,-10,78,0.5638484358787537],[115,-10,79,0.5651549529284239],[115,-9,64,0.537556828930974],[115,-9,65,0.5388656910508871],[115,-9,66,0.540308827534318],[115,-9,67,0.5418075565248728],[115,-9,68,0.5430863443762064],[115,-9,69,0.5442782081663609],[115,-9,70,0.5453840419650078],[115,-9,71,0.5467318687587976],[115,-9,72,0.5485938526690006],[115,-9,73,0.5506872478872538],[115,-9,74,0.5526566430926323],[115,-9,75,0.5540803335607052],[115,-9,76,0.554809601046145],[115,-9,77,0.5552405323833227],[115,-9,78,0.5560359358787537],[115,-9,79,0.5573424529284239],[115,-8,64,0.529744328930974],[115,-8,65,0.5310531910508871],[115,-8,66,0.532496327534318],[115,-8,67,0.5339950565248728],[115,-8,68,0.5352738443762064],[115,-8,69,0.5364657081663609],[115,-8,70,0.5375715419650078],[115,-8,71,0.5389193687587976],[115,-8,72,0.5407813526690006],[115,-8,73,0.5428747478872538],[115,-8,74,0.5448441430926323],[115,-8,75,0.5462678335607052],[115,-8,76,0.546997101046145],[115,-8,77,0.5474280323833227],[115,-8,78,0.5482234358787537],[115,-8,79,0.5495299529284239],[115,-7,64,0.521931828930974],[115,-7,65,0.5232406910508871],[115,-7,66,0.524683827534318],[115,-7,67,0.5261825565248728],[115,-7,68,0.5274613443762064],[115,-7,69,0.5286532081663609],[115,-7,70,0.5297590419650078],[115,-7,71,0.5311068687587976],[115,-7,72,0.5329688526690006],[115,-7,73,0.5350622478872538],[115,-7,74,0.5370316430926323],[115,-7,75,0.5384553335607052],[115,-7,76,0.539184601046145],[115,-7,77,0.5396155323833227],[115,-7,78,0.5404109358787537],[115,-7,79,0.5417174529284239],[115,-6,64,0.514119328930974],[115,-6,65,0.5154281910508871],[115,-6,66,0.516871327534318],[115,-6,67,0.5183700565248728],[115,-6,68,0.5196488443762064],[115,-6,69,0.5208407081663609],[115,-6,70,0.5219465419650078],[115,-6,71,0.5232943687587976],[115,-6,72,0.5251563526690006],[115,-6,73,0.5272497478872538],[115,-6,74,0.5292191430926323],[115,-6,75,0.5306428335607052],[115,-6,76,0.531372101046145],[115,-6,77,0.5318030323833227],[115,-6,78,0.5325984358787537],[115,-6,79,0.5339049529284239],[115,-5,64,0.506306828930974],[115,-5,65,0.5076156910508871],[115,-5,66,0.509058827534318],[115,-5,67,0.5105575565248728],[115,-5,68,0.5118363443762064],[115,-5,69,0.5130282081663609],[115,-5,70,0.5141340419650078],[115,-5,71,0.5154818687587976],[115,-5,72,0.5173438526690006],[115,-5,73,0.5194372478872538],[115,-5,74,0.5214066430926323],[115,-5,75,0.5228303335607052],[115,-5,76,0.523559601046145],[115,-5,77,0.5239905323833227],[115,-5,78,0.5247859358787537],[115,-5,79,0.5260924529284239],[115,-4,64,0.498494328930974],[115,-4,65,0.4998031910508871],[115,-4,66,0.501246327534318],[115,-4,67,0.5027450565248728],[115,-4,68,0.5040238443762064],[115,-4,69,0.5052157081663609],[115,-4,70,0.5063215419650078],[115,-4,71,0.5076693687587976],[115,-4,72,0.5095313526690006],[115,-4,73,0.5116247478872538],[115,-4,74,0.5135941430926323],[115,-4,75,0.5150178335607052],[115,-4,76,0.515747101046145],[115,-4,77,0.5161780323833227],[115,-4,78,0.5169734358787537],[115,-4,79,0.5182799529284239],[115,-3,64,0.490681828930974],[115,-3,65,0.4919906910508871],[115,-3,66,0.49343382753431797],[115,-3,67,0.4949325565248728],[115,-3,68,0.4962113443762064],[115,-3,69,0.49740320816636086],[115,-3,70,0.4985090419650078],[115,-3,71,0.49985686875879765],[115,-3,72,0.5017188526690006],[115,-3,73,0.5038122478872538],[115,-3,74,0.5057816430926323],[115,-3,75,0.5072053335607052],[115,-3,76,0.507934601046145],[115,-3,77,0.5083655323833227],[115,-3,78,0.5091609358787537],[115,-3,79,0.5104674529284239],[115,-2,64,0.482869328930974],[115,-2,65,0.4841781910508871],[115,-2,66,0.48562132753431797],[115,-2,67,0.4871200565248728],[115,-2,68,0.4883988443762064],[115,-2,69,0.48959070816636086],[115,-2,70,0.4906965419650078],[115,-2,71,0.49204436875879765],[115,-2,72,0.4939063526690006],[115,-2,73,0.49599974788725376],[115,-2,74,0.4979691430926323],[115,-2,75,0.4993928335607052],[115,-2,76,0.500122101046145],[115,-2,77,0.5005530323833227],[115,-2,78,0.5013484358787537],[115,-2,79,0.5026549529284239],[115,-1,64,0.475056828930974],[115,-1,65,0.4763656910508871],[115,-1,66,0.47780882753431797],[115,-1,67,0.4793075565248728],[115,-1,68,0.4805863443762064],[115,-1,69,0.48177820816636086],[115,-1,70,0.4828840419650078],[115,-1,71,0.48423186875879765],[115,-1,72,0.4860938526690006],[115,-1,73,0.48818724788725376],[115,-1,74,0.4901566430926323],[115,-1,75,0.4915803335607052],[115,-1,76,0.49230960104614496],[115,-1,77,0.4927405323833227],[115,-1,78,0.49353593587875366],[115,-1,79,0.4948424529284239],[115,0,64,0.467244328930974],[115,0,65,0.4685531910508871],[115,0,66,0.46999632753431797],[115,0,67,0.4714950565248728],[115,0,68,0.4727738443762064],[115,0,69,0.47396570816636086],[115,0,70,0.4750715419650078],[115,0,71,0.47641936875879765],[115,0,72,0.4782813526690006],[115,0,73,0.48037474788725376],[115,0,74,0.4823441430926323],[115,0,75,0.4837678335607052],[115,0,76,0.48449710104614496],[115,0,77,0.4849280323833227],[115,0,78,0.48572343587875366],[115,0,79,0.4870299529284239],[115,1,64,0.459431828930974],[115,1,65,0.4607406910508871],[115,1,66,0.46218382753431797],[115,1,67,0.4636825565248728],[115,1,68,0.4649613443762064],[115,1,69,0.46615320816636086],[115,1,70,0.4672590419650078],[115,1,71,0.46860686875879765],[115,1,72,0.4704688526690006],[115,1,73,0.47256224788725376],[115,1,74,0.4745316430926323],[115,1,75,0.4759553335607052],[115,1,76,0.47668460104614496],[115,1,77,0.4771155323833227],[115,1,78,0.47791093587875366],[115,1,79,0.4792174529284239],[115,2,64,0.451619328930974],[115,2,65,0.4529281910508871],[115,2,66,0.45437132753431797],[115,2,67,0.4558700565248728],[115,2,68,0.4571488443762064],[115,2,69,0.45834070816636086],[115,2,70,0.4594465419650078],[115,2,71,0.46079436875879765],[115,2,72,0.4626563526690006],[115,2,73,0.46474974788725376],[115,2,74,0.4667191430926323],[115,2,75,0.4681428335607052],[115,2,76,0.46887210104614496],[115,2,77,0.4693030323833227],[115,2,78,0.47009843587875366],[115,2,79,0.4714049529284239],[115,3,64,0.443806828930974],[115,3,65,0.4451156910508871],[115,3,66,0.44655882753431797],[115,3,67,0.4480575565248728],[115,3,68,0.4493363443762064],[115,3,69,0.45052820816636086],[115,3,70,0.4516340419650078],[115,3,71,0.45298186875879765],[115,3,72,0.4548438526690006],[115,3,73,0.45693724788725376],[115,3,74,0.4589066430926323],[115,3,75,0.4603303335607052],[115,3,76,0.46105960104614496],[115,3,77,0.4614905323833227],[115,3,78,0.46228593587875366],[115,3,79,0.4635924529284239],[115,4,64,0.435994328930974],[115,4,65,0.4373031910508871],[115,4,66,0.43874632753431797],[115,4,67,0.4402450565248728],[115,4,68,0.4415238443762064],[115,4,69,0.44271570816636086],[115,4,70,0.4438215419650078],[115,4,71,0.44516936875879765],[115,4,72,0.4470313526690006],[115,4,73,0.44912474788725376],[115,4,74,0.4510941430926323],[115,4,75,0.4525178335607052],[115,4,76,0.45324710104614496],[115,4,77,0.4536780323833227],[115,4,78,0.45447343587875366],[115,4,79,0.4557799529284239],[115,5,64,0.428181828930974],[115,5,65,0.4294906910508871],[115,5,66,0.43093382753431797],[115,5,67,0.4324325565248728],[115,5,68,0.4337113443762064],[115,5,69,0.43490320816636086],[115,5,70,0.4360090419650078],[115,5,71,0.43735686875879765],[115,5,72,0.4392188526690006],[115,5,73,0.44131224788725376],[115,5,74,0.4432816430926323],[115,5,75,0.4447053335607052],[115,5,76,0.44543460104614496],[115,5,77,0.4458655323833227],[115,5,78,0.44666093587875366],[115,5,79,0.4479674529284239],[115,6,64,0.420369328930974],[115,6,65,0.4216781910508871],[115,6,66,0.42312132753431797],[115,6,67,0.4246200565248728],[115,6,68,0.4258988443762064],[115,6,69,0.42709070816636086],[115,6,70,0.4281965419650078],[115,6,71,0.42954436875879765],[115,6,72,0.4314063526690006],[115,6,73,0.43349974788725376],[115,6,74,0.4354691430926323],[115,6,75,0.4368928335607052],[115,6,76,0.43762210104614496],[115,6,77,0.4380530323833227],[115,6,78,0.43884843587875366],[115,6,79,0.4401549529284239],[115,7,64,0.412556828930974],[115,7,65,0.4138656910508871],[115,7,66,0.41530882753431797],[115,7,67,0.4168075565248728],[115,7,68,0.4180863443762064],[115,7,69,0.41927820816636086],[115,7,70,0.4203840419650078],[115,7,71,0.42173186875879765],[115,7,72,0.4235938526690006],[115,7,73,0.42568724788725376],[115,7,74,0.4276566430926323],[115,7,75,0.4290803335607052],[115,7,76,0.42980960104614496],[115,7,77,0.4302405323833227],[115,7,78,0.43103593587875366],[115,7,79,0.4323424529284239],[115,8,64,0.404744328930974],[115,8,65,0.4060531910508871],[115,8,66,0.40749632753431797],[115,8,67,0.4089950565248728],[115,8,68,0.4102738443762064],[115,8,69,0.41146570816636086],[115,8,70,0.4125715419650078],[115,8,71,0.41391936875879765],[115,8,72,0.4157813526690006],[115,8,73,0.41787474788725376],[115,8,74,0.4198441430926323],[115,8,75,0.4212678335607052],[115,8,76,0.42199710104614496],[115,8,77,0.4224280323833227],[115,8,78,0.42322343587875366],[115,8,79,0.4245299529284239],[115,9,64,0.396931828930974],[115,9,65,0.3982406910508871],[115,9,66,0.39968382753431797],[115,9,67,0.4011825565248728],[115,9,68,0.4024613443762064],[115,9,69,0.40365320816636086],[115,9,70,0.4047590419650078],[115,9,71,0.40610686875879765],[115,9,72,0.4079688526690006],[115,9,73,0.41006224788725376],[115,9,74,0.4120316430926323],[115,9,75,0.4134553335607052],[115,9,76,0.41418460104614496],[115,9,77,0.4146155323833227],[115,9,78,0.41541093587875366],[115,9,79,0.4167174529284239],[115,10,64,0.389119328930974],[115,10,65,0.3904281910508871],[115,10,66,0.39187132753431797],[115,10,67,0.3933700565248728],[115,10,68,0.3946488443762064],[115,10,69,0.39584070816636086],[115,10,70,0.3969465419650078],[115,10,71,0.39829436875879765],[115,10,72,0.4001563526690006],[115,10,73,0.40224974788725376],[115,10,74,0.4042191430926323],[115,10,75,0.4056428335607052],[115,10,76,0.40637210104614496],[115,10,77,0.4068030323833227],[115,10,78,0.40759843587875366],[115,10,79,0.4089049529284239],[115,11,64,0.381306828930974],[115,11,65,0.3826156910508871],[115,11,66,0.38405882753431797],[115,11,67,0.3855575565248728],[115,11,68,0.3868363443762064],[115,11,69,0.38802820816636086],[115,11,70,0.3891340419650078],[115,11,71,0.39048186875879765],[115,11,72,0.3923438526690006],[115,11,73,0.39443724788725376],[115,11,74,0.3964066430926323],[115,11,75,0.3978303335607052],[115,11,76,0.39855960104614496],[115,11,77,0.3989905323833227],[115,11,78,0.39978593587875366],[115,11,79,0.4010924529284239],[115,12,64,0.373494328930974],[115,12,65,0.3748031910508871],[115,12,66,0.37624632753431797],[115,12,67,0.3777450565248728],[115,12,68,0.3790238443762064],[115,12,69,0.38021570816636086],[115,12,70,0.3813215419650078],[115,12,71,0.38266936875879765],[115,12,72,0.3845313526690006],[115,12,73,0.38662474788725376],[115,12,74,0.3885941430926323],[115,12,75,0.3900178335607052],[115,12,76,0.39074710104614496],[115,12,77,0.3911780323833227],[115,12,78,0.39197343587875366],[115,12,79,0.3932799529284239],[115,13,64,0.365681828930974],[115,13,65,0.3669906910508871],[115,13,66,0.36843382753431797],[115,13,67,0.3699325565248728],[115,13,68,0.3712113443762064],[115,13,69,0.37240320816636086],[115,13,70,0.3735090419650078],[115,13,71,0.37485686875879765],[115,13,72,0.3767188526690006],[115,13,73,0.37881224788725376],[115,13,74,0.3807816430926323],[115,13,75,0.3822053335607052],[115,13,76,0.38293460104614496],[115,13,77,0.3833655323833227],[115,13,78,0.38416093587875366],[115,13,79,0.3854674529284239],[115,14,64,0.357869328930974],[115,14,65,0.3591781910508871],[115,14,66,0.36062132753431797],[115,14,67,0.3621200565248728],[115,14,68,0.3633988443762064],[115,14,69,0.36459070816636086],[115,14,70,0.3656965419650078],[115,14,71,0.36704436875879765],[115,14,72,0.3689063526690006],[115,14,73,0.37099974788725376],[115,14,74,0.3729691430926323],[115,14,75,0.3743928335607052],[115,14,76,0.37512210104614496],[115,14,77,0.3755530323833227],[115,14,78,0.37634843587875366],[115,14,79,0.3776549529284239],[115,15,64,0.350056828930974],[115,15,65,0.3513656910508871],[115,15,66,0.35280882753431797],[115,15,67,0.3543075565248728],[115,15,68,0.3555863443762064],[115,15,69,0.35677820816636086],[115,15,70,0.3578840419650078],[115,15,71,0.35923186875879765],[115,15,72,0.3610938526690006],[115,15,73,0.36318724788725376],[115,15,74,0.3651566430926323],[115,15,75,0.3665803335607052],[115,15,76,0.36730960104614496],[115,15,77,0.3677405323833227],[115,15,78,0.36853593587875366],[115,15,79,0.3698424529284239],[115,16,64,0.342244328930974],[115,16,65,0.3435531910508871],[115,16,66,0.34499632753431797],[115,16,67,0.3464950565248728],[115,16,68,0.3477738443762064],[115,16,69,0.34896570816636086],[115,16,70,0.3500715419650078],[115,16,71,0.35141936875879765],[115,16,72,0.3532813526690006],[115,16,73,0.35537474788725376],[115,16,74,0.3573441430926323],[115,16,75,0.3587678335607052],[115,16,76,0.35949710104614496],[115,16,77,0.3599280323833227],[115,16,78,0.36072343587875366],[115,16,79,0.3620299529284239],[115,17,64,0.334431828930974],[115,17,65,0.3357406910508871],[115,17,66,0.33718382753431797],[115,17,67,0.3386825565248728],[115,17,68,0.3399613443762064],[115,17,69,0.34115320816636086],[115,17,70,0.3422590419650078],[115,17,71,0.34360686875879765],[115,17,72,0.3454688526690006],[115,17,73,0.34756224788725376],[115,17,74,0.3495316430926323],[115,17,75,0.3509553335607052],[115,17,76,0.35168460104614496],[115,17,77,0.3521155323833227],[115,17,78,0.35291093587875366],[115,17,79,0.3542174529284239],[115,18,64,0.326619328930974],[115,18,65,0.3279281910508871],[115,18,66,0.32937132753431797],[115,18,67,0.3308700565248728],[115,18,68,0.3321488443762064],[115,18,69,0.33334070816636086],[115,18,70,0.3344465419650078],[115,18,71,0.33579436875879765],[115,18,72,0.3376563526690006],[115,18,73,0.33974974788725376],[115,18,74,0.3417191430926323],[115,18,75,0.3431428335607052],[115,18,76,0.34387210104614496],[115,18,77,0.3443030323833227],[115,18,78,0.34509843587875366],[115,18,79,0.3464049529284239],[115,19,64,0.318806828930974],[115,19,65,0.3201156910508871],[115,19,66,0.32155882753431797],[115,19,67,0.3230575565248728],[115,19,68,0.3243363443762064],[115,19,69,0.32552820816636086],[115,19,70,0.3266340419650078],[115,19,71,0.32798186875879765],[115,19,72,0.3298438526690006],[115,19,73,0.33193724788725376],[115,19,74,0.3339066430926323],[115,19,75,0.3353303335607052],[115,19,76,0.33605960104614496],[115,19,77,0.3364905323833227],[115,19,78,0.33728593587875366],[115,19,79,0.3385924529284239],[115,20,64,0.310994328930974],[115,20,65,0.3123031910508871],[115,20,66,0.31374632753431797],[115,20,67,0.3152450565248728],[115,20,68,0.3165238443762064],[115,20,69,0.31771570816636086],[115,20,70,0.3188215419650078],[115,20,71,0.32016936875879765],[115,20,72,0.3220313526690006],[115,20,73,0.32412474788725376],[115,20,74,0.3260941430926323],[115,20,75,0.3275178335607052],[115,20,76,0.32824710104614496],[115,20,77,0.3286780323833227],[115,20,78,0.32947343587875366],[115,20,79,0.3307799529284239],[115,21,64,0.303181828930974],[115,21,65,0.3044906910508871],[115,21,66,0.30593382753431797],[115,21,67,0.3074325565248728],[115,21,68,0.3087113443762064],[115,21,69,0.30990320816636086],[115,21,70,0.3110090419650078],[115,21,71,0.31235686875879765],[115,21,72,0.3142188526690006],[115,21,73,0.31631224788725376],[115,21,74,0.3182816430926323],[115,21,75,0.3197053335607052],[115,21,76,0.32043460104614496],[115,21,77,0.3208655323833227],[115,21,78,0.32166093587875366],[115,21,79,0.3229674529284239],[115,22,64,0.295369328930974],[115,22,65,0.2966781910508871],[115,22,66,0.29812132753431797],[115,22,67,0.2996200565248728],[115,22,68,0.3008988443762064],[115,22,69,0.30209070816636086],[115,22,70,0.3031965419650078],[115,22,71,0.30454436875879765],[115,22,72,0.3064063526690006],[115,22,73,0.30849974788725376],[115,22,74,0.3104691430926323],[115,22,75,0.3118928335607052],[115,22,76,0.31262210104614496],[115,22,77,0.3130530323833227],[115,22,78,0.31384843587875366],[115,22,79,0.3151549529284239],[115,23,64,0.287556828930974],[115,23,65,0.2888656910508871],[115,23,66,0.29030882753431797],[115,23,67,0.2918075565248728],[115,23,68,0.2930863443762064],[115,23,69,0.29427820816636086],[115,23,70,0.2953840419650078],[115,23,71,0.29673186875879765],[115,23,72,0.2985938526690006],[115,23,73,0.30068724788725376],[115,23,74,0.3026566430926323],[115,23,75,0.3040803335607052],[115,23,76,0.30480960104614496],[115,23,77,0.3052405323833227],[115,23,78,0.30603593587875366],[115,23,79,0.3073424529284239],[115,24,64,0.279744328930974],[115,24,65,0.2810531910508871],[115,24,66,0.28249632753431797],[115,24,67,0.2839950565248728],[115,24,68,0.2852738443762064],[115,24,69,0.28646570816636086],[115,24,70,0.2875715419650078],[115,24,71,0.28891936875879765],[115,24,72,0.2907813526690006],[115,24,73,0.29287474788725376],[115,24,74,0.2948441430926323],[115,24,75,0.2962678335607052],[115,24,76,0.29699710104614496],[115,24,77,0.2974280323833227],[115,24,78,0.29822343587875366],[115,24,79,0.2995299529284239],[115,25,64,0.271931828930974],[115,25,65,0.2732406910508871],[115,25,66,0.27468382753431797],[115,25,67,0.2761825565248728],[115,25,68,0.2774613443762064],[115,25,69,0.27865320816636086],[115,25,70,0.2797590419650078],[115,25,71,0.28110686875879765],[115,25,72,0.2829688526690006],[115,25,73,0.28506224788725376],[115,25,74,0.2870316430926323],[115,25,75,0.2884553335607052],[115,25,76,0.28918460104614496],[115,25,77,0.2896155323833227],[115,25,78,0.29041093587875366],[115,25,79,0.2917174529284239],[115,26,64,0.264119328930974],[115,26,65,0.2654281910508871],[115,26,66,0.26687132753431797],[115,26,67,0.2683700565248728],[115,26,68,0.2696488443762064],[115,26,69,0.27084070816636086],[115,26,70,0.2719465419650078],[115,26,71,0.27329436875879765],[115,26,72,0.2751563526690006],[115,26,73,0.27724974788725376],[115,26,74,0.2792191430926323],[115,26,75,0.2806428335607052],[115,26,76,0.28137210104614496],[115,26,77,0.2818030323833227],[115,26,78,0.28259843587875366],[115,26,79,0.2839049529284239],[115,27,64,0.256306828930974],[115,27,65,0.2576156910508871],[115,27,66,0.25905882753431797],[115,27,67,0.2605575565248728],[115,27,68,0.2618363443762064],[115,27,69,0.26302820816636086],[115,27,70,0.2641340419650078],[115,27,71,0.26548186875879765],[115,27,72,0.2673438526690006],[115,27,73,0.26943724788725376],[115,27,74,0.2714066430926323],[115,27,75,0.2728303335607052],[115,27,76,0.27355960104614496],[115,27,77,0.2739905323833227],[115,27,78,0.27478593587875366],[115,27,79,0.2760924529284239],[115,28,64,0.248494328930974],[115,28,65,0.2498031910508871],[115,28,66,0.25124632753431797],[115,28,67,0.2527450565248728],[115,28,68,0.2540238443762064],[115,28,69,0.25521570816636086],[115,28,70,0.2563215419650078],[115,28,71,0.25766936875879765],[115,28,72,0.2595313526690006],[115,28,73,0.26162474788725376],[115,28,74,0.2635941430926323],[115,28,75,0.2650178335607052],[115,28,76,0.26574710104614496],[115,28,77,0.2661780323833227],[115,28,78,0.26697343587875366],[115,28,79,0.2682799529284239],[115,29,64,0.240681828930974],[115,29,65,0.2419906910508871],[115,29,66,0.24343382753431797],[115,29,67,0.24493255652487278],[115,29,68,0.2462113443762064],[115,29,69,0.24740320816636086],[115,29,70,0.24850904196500778],[115,29,71,0.24985686875879765],[115,29,72,0.2517188526690006],[115,29,73,0.25381224788725376],[115,29,74,0.2557816430926323],[115,29,75,0.2572053335607052],[115,29,76,0.25793460104614496],[115,29,77,0.2583655323833227],[115,29,78,0.25916093587875366],[115,29,79,0.2604674529284239],[115,30,64,0.232869328930974],[115,30,65,0.2341781910508871],[115,30,66,0.23562132753431797],[115,30,67,0.23712005652487278],[115,30,68,0.2383988443762064],[115,30,69,0.23959070816636086],[115,30,70,0.24069654196500778],[115,30,71,0.24204436875879765],[115,30,72,0.24390635266900063],[115,30,73,0.24599974788725376],[115,30,74,0.2479691430926323],[115,30,75,0.24939283356070518],[115,30,76,0.25012210104614496],[115,30,77,0.2505530323833227],[115,30,78,0.25134843587875366],[115,30,79,0.2526549529284239],[115,31,64,0.225056828930974],[115,31,65,0.2263656910508871],[115,31,66,0.22780882753431797],[115,31,67,0.22930755652487278],[115,31,68,0.2305863443762064],[115,31,69,0.23177820816636086],[115,31,70,0.23288404196500778],[115,31,71,0.23423186875879765],[115,31,72,0.23609385266900063],[115,31,73,0.23818724788725376],[115,31,74,0.2401566430926323],[115,31,75,0.24158033356070518],[115,31,76,0.24230960104614496],[115,31,77,0.24274053238332272],[115,31,78,0.24353593587875366],[115,31,79,0.24484245292842388],[115,32,64,0.217244328930974],[115,32,65,0.2185531910508871],[115,32,66,0.21999632753431797],[115,32,67,0.22149505652487278],[115,32,68,0.2227738443762064],[115,32,69,0.22396570816636086],[115,32,70,0.22507154196500778],[115,32,71,0.22641936875879765],[115,32,72,0.22828135266900063],[115,32,73,0.23037474788725376],[115,32,74,0.2323441430926323],[115,32,75,0.23376783356070518],[115,32,76,0.23449710104614496],[115,32,77,0.23492803238332272],[115,32,78,0.23572343587875366],[115,32,79,0.23702995292842388],[115,33,64,0.209431828930974],[115,33,65,0.2107406910508871],[115,33,66,0.21218382753431797],[115,33,67,0.21368255652487278],[115,33,68,0.2149613443762064],[115,33,69,0.21615320816636086],[115,33,70,0.21725904196500778],[115,33,71,0.21860686875879765],[115,33,72,0.22046885266900063],[115,33,73,0.22256224788725376],[115,33,74,0.2245316430926323],[115,33,75,0.22595533356070518],[115,33,76,0.22668460104614496],[115,33,77,0.22711553238332272],[115,33,78,0.22791093587875366],[115,33,79,0.22921745292842388],[115,34,64,0.201619328930974],[115,34,65,0.2029281910508871],[115,34,66,0.20437132753431797],[115,34,67,0.20587005652487278],[115,34,68,0.2071488443762064],[115,34,69,0.20834070816636086],[115,34,70,0.20944654196500778],[115,34,71,0.21079436875879765],[115,34,72,0.21265635266900063],[115,34,73,0.21474974788725376],[115,34,74,0.2167191430926323],[115,34,75,0.21814283356070518],[115,34,76,0.21887210104614496],[115,34,77,0.21930303238332272],[115,34,78,0.22009843587875366],[115,34,79,0.22140495292842388],[115,35,64,0.193806828930974],[115,35,65,0.1951156910508871],[115,35,66,0.19655882753431797],[115,35,67,0.19805755652487278],[115,35,68,0.1993363443762064],[115,35,69,0.20052820816636086],[115,35,70,0.20163404196500778],[115,35,71,0.20298186875879765],[115,35,72,0.20484385266900063],[115,35,73,0.20693724788725376],[115,35,74,0.2089066430926323],[115,35,75,0.21033033356070518],[115,35,76,0.21105960104614496],[115,35,77,0.21149053238332272],[115,35,78,0.21228593587875366],[115,35,79,0.21359245292842388],[115,36,64,0.185994328930974],[115,36,65,0.1873031910508871],[115,36,66,0.18874632753431797],[115,36,67,0.19024505652487278],[115,36,68,0.1915238443762064],[115,36,69,0.19271570816636086],[115,36,70,0.19382154196500778],[115,36,71,0.19516936875879765],[115,36,72,0.19703135266900063],[115,36,73,0.19912474788725376],[115,36,74,0.2010941430926323],[115,36,75,0.20251783356070518],[115,36,76,0.20324710104614496],[115,36,77,0.20367803238332272],[115,36,78,0.20447343587875366],[115,36,79,0.20577995292842388],[115,37,64,0.178181828930974],[115,37,65,0.1794906910508871],[115,37,66,0.18093382753431797],[115,37,67,0.18243255652487278],[115,37,68,0.1837113443762064],[115,37,69,0.18490320816636086],[115,37,70,0.18600904196500778],[115,37,71,0.18735686875879765],[115,37,72,0.18921885266900063],[115,37,73,0.19131224788725376],[115,37,74,0.1932816430926323],[115,37,75,0.19470533356070518],[115,37,76,0.19543460104614496],[115,37,77,0.19586553238332272],[115,37,78,0.19666093587875366],[115,37,79,0.19796745292842388],[115,38,64,0.170369328930974],[115,38,65,0.1716781910508871],[115,38,66,0.17312132753431797],[115,38,67,0.17462005652487278],[115,38,68,0.1758988443762064],[115,38,69,0.17709070816636086],[115,38,70,0.17819654196500778],[115,38,71,0.17954436875879765],[115,38,72,0.18140635266900063],[115,38,73,0.18349974788725376],[115,38,74,0.1854691430926323],[115,38,75,0.18689283356070518],[115,38,76,0.18762210104614496],[115,38,77,0.18805303238332272],[115,38,78,0.18884843587875366],[115,38,79,0.19015495292842388],[115,39,64,0.162556828930974],[115,39,65,0.1638656910508871],[115,39,66,0.16530882753431797],[115,39,67,0.16680755652487278],[115,39,68,0.1680863443762064],[115,39,69,0.16927820816636086],[115,39,70,0.17038404196500778],[115,39,71,0.17173186875879765],[115,39,72,0.17359385266900063],[115,39,73,0.17568724788725376],[115,39,74,0.1776566430926323],[115,39,75,0.17908033356070518],[115,39,76,0.17980960104614496],[115,39,77,0.18024053238332272],[115,39,78,0.18103593587875366],[115,39,79,0.18234245292842388],[115,40,64,0.154744328930974],[115,40,65,0.1560531910508871],[115,40,66,0.15749632753431797],[115,40,67,0.15899505652487278],[115,40,68,0.1602738443762064],[115,40,69,0.16146570816636086],[115,40,70,0.16257154196500778],[115,40,71,0.16391936875879765],[115,40,72,0.16578135266900063],[115,40,73,0.16787474788725376],[115,40,74,0.1698441430926323],[115,40,75,0.17126783356070518],[115,40,76,0.17199710104614496],[115,40,77,0.17242803238332272],[115,40,78,0.17322343587875366],[115,40,79,0.17452995292842388],[115,41,64,0.146931828930974],[115,41,65,0.1482406910508871],[115,41,66,0.14968382753431797],[115,41,67,0.15118255652487278],[115,41,68,0.1524613443762064],[115,41,69,0.15365320816636086],[115,41,70,0.15475904196500778],[115,41,71,0.15610686875879765],[115,41,72,0.15796885266900063],[115,41,73,0.16006224788725376],[115,41,74,0.1620316430926323],[115,41,75,0.16345533356070518],[115,41,76,0.16418460104614496],[115,41,77,0.16461553238332272],[115,41,78,0.16541093587875366],[115,41,79,0.16671745292842388],[115,42,64,0.139119328930974],[115,42,65,0.1404281910508871],[115,42,66,0.14187132753431797],[115,42,67,0.14337005652487278],[115,42,68,0.1446488443762064],[115,42,69,0.14584070816636086],[115,42,70,0.14694654196500778],[115,42,71,0.14829436875879765],[115,42,72,0.15015635266900063],[115,42,73,0.15224974788725376],[115,42,74,0.1542191430926323],[115,42,75,0.15564283356070518],[115,42,76,0.15637210104614496],[115,42,77,0.15680303238332272],[115,42,78,0.15759843587875366],[115,42,79,0.15890495292842388],[115,43,64,0.131306828930974],[115,43,65,0.1326156910508871],[115,43,66,0.13405882753431797],[115,43,67,0.13555755652487278],[115,43,68,0.1368363443762064],[115,43,69,0.13802820816636086],[115,43,70,0.13913404196500778],[115,43,71,0.14048186875879765],[115,43,72,0.14234385266900063],[115,43,73,0.14443724788725376],[115,43,74,0.1464066430926323],[115,43,75,0.14783033356070518],[115,43,76,0.14855960104614496],[115,43,77,0.14899053238332272],[115,43,78,0.14978593587875366],[115,43,79,0.15109245292842388],[115,44,64,0.123494328930974],[115,44,65,0.12480319105088711],[115,44,66,0.12624632753431797],[115,44,67,0.12774505652487278],[115,44,68,0.1290238443762064],[115,44,69,0.13021570816636086],[115,44,70,0.13132154196500778],[115,44,71,0.13266936875879765],[115,44,72,0.13453135266900063],[115,44,73,0.13662474788725376],[115,44,74,0.1385941430926323],[115,44,75,0.14001783356070518],[115,44,76,0.14074710104614496],[115,44,77,0.14117803238332272],[115,44,78,0.14197343587875366],[115,44,79,0.14327995292842388],[115,45,64,0.115681828930974],[115,45,65,0.11699069105088711],[115,45,66,0.11843382753431797],[115,45,67,0.11993255652487278],[115,45,68,0.1212113443762064],[115,45,69,0.12240320816636086],[115,45,70,0.12350904196500778],[115,45,71,0.12485686875879765],[115,45,72,0.12671885266900063],[115,45,73,0.12881224788725376],[115,45,74,0.1307816430926323],[115,45,75,0.13220533356070518],[115,45,76,0.13293460104614496],[115,45,77,0.13336553238332272],[115,45,78,0.13416093587875366],[115,45,79,0.13546745292842388],[115,46,64,0.107869328930974],[115,46,65,0.10917819105088711],[115,46,66,0.11062132753431797],[115,46,67,0.11212005652487278],[115,46,68,0.1133988443762064],[115,46,69,0.11459070816636086],[115,46,70,0.11569654196500778],[115,46,71,0.11704436875879765],[115,46,72,0.11890635266900063],[115,46,73,0.12099974788725376],[115,46,74,0.1229691430926323],[115,46,75,0.12439283356070518],[115,46,76,0.12512210104614496],[115,46,77,0.12555303238332272],[115,46,78,0.12634843587875366],[115,46,79,0.12765495292842388],[115,47,64,0.100056828930974],[115,47,65,0.10136569105088711],[115,47,66,0.10280882753431797],[115,47,67,0.10430755652487278],[115,47,68,0.1055863443762064],[115,47,69,0.10677820816636086],[115,47,70,0.10788404196500778],[115,47,71,0.10923186875879765],[115,47,72,0.11109385266900063],[115,47,73,0.11318724788725376],[115,47,74,0.1151566430926323],[115,47,75,0.11658033356070518],[115,47,76,0.11730960104614496],[115,47,77,0.11774053238332272],[115,47,78,0.11853593587875366],[115,47,79,0.11984245292842388],[115,48,64,0.092244328930974],[115,48,65,0.09355319105088711],[115,48,66,0.09499632753431797],[115,48,67,0.09649505652487278],[115,48,68,0.0977738443762064],[115,48,69,0.09896570816636086],[115,48,70,0.10007154196500778],[115,48,71,0.10141936875879765],[115,48,72,0.10328135266900063],[115,48,73,0.10537474788725376],[115,48,74,0.1073441430926323],[115,48,75,0.10876783356070518],[115,48,76,0.10949710104614496],[115,48,77,0.10992803238332272],[115,48,78,0.11072343587875366],[115,48,79,0.11202995292842388],[115,49,64,0.084431828930974],[115,49,65,0.08574069105088711],[115,49,66,0.08718382753431797],[115,49,67,0.08868255652487278],[115,49,68,0.0899613443762064],[115,49,69,0.09115320816636086],[115,49,70,0.09225904196500778],[115,49,71,0.09360686875879765],[115,49,72,0.09546885266900063],[115,49,73,0.09756224788725376],[115,49,74,0.0995316430926323],[115,49,75,0.10095533356070518],[115,49,76,0.10168460104614496],[115,49,77,0.10211553238332272],[115,49,78,0.10291093587875366],[115,49,79,0.10421745292842388],[115,50,64,0.076619328930974],[115,50,65,0.07792819105088711],[115,50,66,0.07937132753431797],[115,50,67,0.08087005652487278],[115,50,68,0.0821488443762064],[115,50,69,0.08334070816636086],[115,50,70,0.08444654196500778],[115,50,71,0.08579436875879765],[115,50,72,0.08765635266900063],[115,50,73,0.08974974788725376],[115,50,74,0.0917191430926323],[115,50,75,0.09314283356070518],[115,50,76,0.09387210104614496],[115,50,77,0.09430303238332272],[115,50,78,0.09509843587875366],[115,50,79,0.09640495292842388],[115,51,64,0.068806828930974],[115,51,65,0.07011569105088711],[115,51,66,0.07155882753431797],[115,51,67,0.07305755652487278],[115,51,68,0.0743363443762064],[115,51,69,0.07552820816636086],[115,51,70,0.07663404196500778],[115,51,71,0.07798186875879765],[115,51,72,0.07984385266900063],[115,51,73,0.08193724788725376],[115,51,74,0.0839066430926323],[115,51,75,0.08533033356070518],[115,51,76,0.08605960104614496],[115,51,77,0.08649053238332272],[115,51,78,0.08728593587875366],[115,51,79,0.08859245292842388],[115,52,64,0.06099432893097401],[115,52,65,0.06230319105088711],[115,52,66,0.06374632753431797],[115,52,67,0.06524505652487278],[115,52,68,0.0665238443762064],[115,52,69,0.06771570816636086],[115,52,70,0.06882154196500778],[115,52,71,0.07016936875879765],[115,52,72,0.07203135266900063],[115,52,73,0.07412474788725376],[115,52,74,0.0760941430926323],[115,52,75,0.07751783356070518],[115,52,76,0.07824710104614496],[115,52,77,0.07867803238332272],[115,52,78,0.07947343587875366],[115,52,79,0.08077995292842388],[115,53,64,0.05318182893097401],[115,53,65,0.05449069105088711],[115,53,66,0.05593382753431797],[115,53,67,0.05743255652487278],[115,53,68,0.0587113443762064],[115,53,69,0.059903208166360855],[115,53,70,0.06100904196500778],[115,53,71,0.062356868758797646],[115,53,72,0.06421885266900063],[115,53,73,0.06631224788725376],[115,53,74,0.0682816430926323],[115,53,75,0.06970533356070518],[115,53,76,0.07043460104614496],[115,53,77,0.07086553238332272],[115,53,78,0.07166093587875366],[115,53,79,0.07296745292842388],[115,54,64,0.04536932893097401],[115,54,65,0.04667819105088711],[115,54,66,0.04812132753431797],[115,54,67,0.04962005652487278],[115,54,68,0.0508988443762064],[115,54,69,0.052090708166360855],[115,54,70,0.05319654196500778],[115,54,71,0.054544368758797646],[115,54,72,0.056406352669000626],[115,54,73,0.05849974788725376],[115,54,74,0.060469143092632294],[115,54,75,0.061892833560705185],[115,54,76,0.06262210104614496],[115,54,77,0.06305303238332272],[115,54,78,0.06384843587875366],[115,54,79,0.06515495292842388],[115,55,64,0.03755682893097401],[115,55,65,0.03886569105088711],[115,55,66,0.04030882753431797],[115,55,67,0.04180755652487278],[115,55,68,0.0430863443762064],[115,55,69,0.044278208166360855],[115,55,70,0.04538404196500778],[115,55,71,0.046731868758797646],[115,55,72,0.048593852669000626],[115,55,73,0.05068724788725376],[115,55,74,0.052656643092632294],[115,55,75,0.054080333560705185],[115,55,76,0.05480960104614496],[115,55,77,0.055240532383322716],[115,55,78,0.05603593587875366],[115,55,79,0.05734245292842388],[115,56,64,0.029744328930974007],[115,56,65,0.031053191050887108],[115,56,66,0.03249632753431797],[115,56,67,0.03399505652487278],[115,56,68,0.0352738443762064],[115,56,69,0.036465708166360855],[115,56,70,0.03757154196500778],[115,56,71,0.038919368758797646],[115,56,72,0.040781352669000626],[115,56,73,0.04287474788725376],[115,56,74,0.044844143092632294],[115,56,75,0.046267833560705185],[115,56,76,0.04699710104614496],[115,56,77,0.047428032383322716],[115,56,78,0.04822343587875366],[115,56,79,0.04952995292842388],[115,57,64,0.021931828930974007],[115,57,65,0.023240691050887108],[115,57,66,0.02468382753431797],[115,57,67,0.02618255652487278],[115,57,68,0.027461344376206398],[115,57,69,0.028653208166360855],[115,57,70,0.029759041965007782],[115,57,71,0.031106868758797646],[115,57,72,0.032968852669000626],[115,57,73,0.03506224788725376],[115,57,74,0.037031643092632294],[115,57,75,0.038455333560705185],[115,57,76,0.03918460104614496],[115,57,77,0.039615532383322716],[115,57,78,0.04041093587875366],[115,57,79,0.04171745292842388],[115,58,64,0.014119328930974007],[115,58,65,0.015428191050887108],[115,58,66,0.01687132753431797],[115,58,67,0.01837005652487278],[115,58,68,0.019648844376206398],[115,58,69,0.020840708166360855],[115,58,70,0.021946541965007782],[115,58,71,0.023294368758797646],[115,58,72,0.025156352669000626],[115,58,73,0.02724974788725376],[115,58,74,0.029219143092632294],[115,58,75,0.030642833560705185],[115,58,76,0.03137210104614496],[115,58,77,0.031803032383322716],[115,58,78,0.03259843587875366],[115,58,79,0.03390495292842388],[115,59,64,0.006306828930974007],[115,59,65,0.007615691050887108],[115,59,66,0.00905882753431797],[115,59,67,0.01055755652487278],[115,59,68,0.011836344376206398],[115,59,69,0.013028208166360855],[115,59,70,0.014134041965007782],[115,59,71,0.015481868758797646],[115,59,72,0.017343852669000626],[115,59,73,0.01943724788725376],[115,59,74,0.021406643092632294],[115,59,75,0.022830333560705185],[115,59,76,0.023559601046144962],[115,59,77,0.023990532383322716],[115,59,78,0.024785935878753662],[115,59,79,0.02609245292842388],[115,60,64,-0.0015056710690259933],[115,60,65,-1.9680894911289215E-4],[115,60,66,0.0012463275343179703],[115,60,67,0.00274505652487278],[115,60,68,0.004023844376206398],[115,60,69,0.005215708166360855],[115,60,70,0.006321541965007782],[115,60,71,0.007669368758797646],[115,60,72,0.009531352669000626],[115,60,73,0.011624747887253761],[115,60,74,0.013594143092632294],[115,60,75,0.015017833560705185],[115,60,76,0.015747101046144962],[115,60,77,0.016178032383322716],[115,60,78,0.016973435878753662],[115,60,79,0.01827995292842388],[115,61,64,-0.009318171069025993],[115,61,65,-0.008009308949112892],[115,61,66,-0.00656617246568203],[115,61,67,-0.00506744347512722],[115,61,68,-0.003788655623793602],[115,61,69,-0.002596791833639145],[115,61,70,-0.001490958034992218],[115,61,71,-1.4313124120235443E-4],[115,61,72,0.0017188526690006256],[115,61,73,0.0038122478872537613],[115,61,74,0.005781643092632294],[115,61,75,0.007205333560705185],[115,61,76,0.007934601046144962],[115,61,77,0.008365532383322716],[115,61,78,0.009160935878753662],[115,61,79,0.010467452928423882],[115,62,64,-0.017130671069025993],[115,62,65,-0.015821808949112892],[115,62,66,-0.01437867246568203],[115,62,67,-0.01287994347512722],[115,62,68,-0.011601155623793602],[115,62,69,-0.010409291833639145],[115,62,70,-0.009303458034992218],[115,62,71,-0.007955631241202354],[115,62,72,-0.006093647330999374],[115,62,73,-0.004000252112746239],[115,62,74,-0.0020308569073677063],[115,62,75,-6.071664392948151E-4],[115,62,76,1.221010461449623E-4],[115,62,77,5.530323833227158E-4],[115,62,78,0.0013484358787536621],[115,62,79,0.0026549529284238815],[115,63,64,-0.024943171069025993],[115,63,65,-0.023634308949112892],[115,63,66,-0.02219117246568203],[115,63,67,-0.02069244347512722],[115,63,68,-0.019413655623793602],[115,63,69,-0.018221791833639145],[115,63,70,-0.017115958034992218],[115,63,71,-0.015768131241202354],[115,63,72,-0.013906147330999374],[115,63,73,-0.011812752112746239],[115,63,74,-0.009843356907367706],[115,63,75,-0.008419666439294815],[115,63,76,-0.007690398953855038],[115,63,77,-0.007259467616677284],[115,63,78,-0.006464064121246338],[115,63,79,-0.0051575470715761185],[115,64,64,-0.03275567106902599],[115,64,65,-0.03144680894911289],[115,64,66,-0.03000367246568203],[115,64,67,-0.02850494347512722],[115,64,68,-0.027226155623793602],[115,64,69,-0.026034291833639145],[115,64,70,-0.024928458034992218],[115,64,71,-0.023580631241202354],[115,64,72,-0.021718647330999374],[115,64,73,-0.01962525211274624],[115,64,74,-0.017655856907367706],[115,64,75,-0.016232166439294815],[115,64,76,-0.015502898953855038],[115,64,77,-0.015071967616677284],[115,64,78,-0.014276564121246338],[115,64,79,-0.012970047071576118],[115,65,64,-0.04056817106902599],[115,65,65,-0.03925930894911289],[115,65,66,-0.03781617246568203],[115,65,67,-0.03631744347512722],[115,65,68,-0.0350386556237936],[115,65,69,-0.033846791833639145],[115,65,70,-0.03274095803499222],[115,65,71,-0.031393131241202354],[115,65,72,-0.029531147330999374],[115,65,73,-0.02743775211274624],[115,65,74,-0.025468356907367706],[115,65,75,-0.024044666439294815],[115,65,76,-0.023315398953855038],[115,65,77,-0.022884467616677284],[115,65,78,-0.022089064121246338],[115,65,79,-0.02078254707157612],[115,66,64,-0.04838067106902599],[115,66,65,-0.04707180894911289],[115,66,66,-0.04562867246568203],[115,66,67,-0.04412994347512722],[115,66,68,-0.0428511556237936],[115,66,69,-0.041659291833639145],[115,66,70,-0.04055345803499222],[115,66,71,-0.039205631241202354],[115,66,72,-0.037343647330999374],[115,66,73,-0.03525025211274624],[115,66,74,-0.033280856907367706],[115,66,75,-0.031857166439294815],[115,66,76,-0.031127898953855038],[115,66,77,-0.030696967616677284],[115,66,78,-0.029901564121246338],[115,66,79,-0.02859504707157612],[115,67,64,-0.05619317106902599],[115,67,65,-0.05488430894911289],[115,67,66,-0.05344117246568203],[115,67,67,-0.05194244347512722],[115,67,68,-0.0506636556237936],[115,67,69,-0.049471791833639145],[115,67,70,-0.04836595803499222],[115,67,71,-0.047018131241202354],[115,67,72,-0.045156147330999374],[115,67,73,-0.04306275211274624],[115,67,74,-0.041093356907367706],[115,67,75,-0.039669666439294815],[115,67,76,-0.03894039895385504],[115,67,77,-0.038509467616677284],[115,67,78,-0.03771406412124634],[115,67,79,-0.03640754707157612],[115,68,64,-0.064005671069026],[115,68,65,-0.06269680894911289],[115,68,66,-0.06125367246568203],[115,68,67,-0.05975494347512722],[115,68,68,-0.0584761556237936],[115,68,69,-0.057284291833639145],[115,68,70,-0.05617845803499222],[115,68,71,-0.054830631241202354],[115,68,72,-0.052968647330999374],[115,68,73,-0.05087525211274624],[115,68,74,-0.048905856907367706],[115,68,75,-0.047482166439294815],[115,68,76,-0.04675289895385504],[115,68,77,-0.046321967616677284],[115,68,78,-0.04552656412124634],[115,68,79,-0.04422004707157612],[115,69,64,-0.071818171069026],[115,69,65,-0.07050930894911289],[115,69,66,-0.06906617246568203],[115,69,67,-0.06756744347512722],[115,69,68,-0.0662886556237936],[115,69,69,-0.06509679183363914],[115,69,70,-0.06399095803499222],[115,69,71,-0.06264313124120235],[115,69,72,-0.060781147330999374],[115,69,73,-0.05868775211274624],[115,69,74,-0.056718356907367706],[115,69,75,-0.055294666439294815],[115,69,76,-0.05456539895385504],[115,69,77,-0.054134467616677284],[115,69,78,-0.05333906412124634],[115,69,79,-0.05203254707157612],[115,70,64,-0.079630671069026],[115,70,65,-0.07832180894911289],[115,70,66,-0.07687867246568203],[115,70,67,-0.07537994347512722],[115,70,68,-0.0741011556237936],[115,70,69,-0.07290929183363914],[115,70,70,-0.07180345803499222],[115,70,71,-0.07045563124120235],[115,70,72,-0.06859364733099937],[115,70,73,-0.06650025211274624],[115,70,74,-0.0645308569073677],[115,70,75,-0.06310716643929482],[115,70,76,-0.06237789895385504],[115,70,77,-0.061946967616677284],[115,70,78,-0.06115156412124634],[115,70,79,-0.05984504707157612],[115,71,64,-0.087443171069026],[115,71,65,-0.08613430894911289],[115,71,66,-0.08469117246568203],[115,71,67,-0.08319244347512722],[115,71,68,-0.0819136556237936],[115,71,69,-0.08072179183363914],[115,71,70,-0.07961595803499222],[115,71,71,-0.07826813124120235],[115,71,72,-0.07640614733099937],[115,71,73,-0.07431275211274624],[115,71,74,-0.0723433569073677],[115,71,75,-0.07091966643929482],[115,71,76,-0.07019039895385504],[115,71,77,-0.06975946761667728],[115,71,78,-0.06896406412124634],[115,71,79,-0.06765754707157612],[115,72,64,-0.095255671069026],[115,72,65,-0.09394680894911289],[115,72,66,-0.09250367246568203],[115,72,67,-0.09100494347512722],[115,72,68,-0.0897261556237936],[115,72,69,-0.08853429183363914],[115,72,70,-0.08742845803499222],[115,72,71,-0.08608063124120235],[115,72,72,-0.08421864733099937],[115,72,73,-0.08212525211274624],[115,72,74,-0.0801558569073677],[115,72,75,-0.07873216643929482],[115,72,76,-0.07800289895385504],[115,72,77,-0.07757196761667728],[115,72,78,-0.07677656412124634],[115,72,79,-0.07547004707157612],[115,73,64,-0.103068171069026],[115,73,65,-0.10175930894911289],[115,73,66,-0.10031617246568203],[115,73,67,-0.09881744347512722],[115,73,68,-0.0975386556237936],[115,73,69,-0.09634679183363914],[115,73,70,-0.09524095803499222],[115,73,71,-0.09389313124120235],[115,73,72,-0.09203114733099937],[115,73,73,-0.08993775211274624],[115,73,74,-0.0879683569073677],[115,73,75,-0.08654466643929482],[115,73,76,-0.08581539895385504],[115,73,77,-0.08538446761667728],[115,73,78,-0.08458906412124634],[115,73,79,-0.08328254707157612],[115,74,64,-0.110880671069026],[115,74,65,-0.10957180894911289],[115,74,66,-0.10812867246568203],[115,74,67,-0.10662994347512722],[115,74,68,-0.1053511556237936],[115,74,69,-0.10415929183363914],[115,74,70,-0.10305345803499222],[115,74,71,-0.10170563124120235],[115,74,72,-0.09984364733099937],[115,74,73,-0.09775025211274624],[115,74,74,-0.0957808569073677],[115,74,75,-0.09435716643929482],[115,74,76,-0.09362789895385504],[115,74,77,-0.09319696761667728],[115,74,78,-0.09240156412124634],[115,74,79,-0.09109504707157612],[115,75,64,-0.118693171069026],[115,75,65,-0.11738430894911289],[115,75,66,-0.11594117246568203],[115,75,67,-0.11444244347512722],[115,75,68,-0.1131636556237936],[115,75,69,-0.11197179183363914],[115,75,70,-0.11086595803499222],[115,75,71,-0.10951813124120235],[115,75,72,-0.10765614733099937],[115,75,73,-0.10556275211274624],[115,75,74,-0.1035933569073677],[115,75,75,-0.10216966643929482],[115,75,76,-0.10144039895385504],[115,75,77,-0.10100946761667728],[115,75,78,-0.10021406412124634],[115,75,79,-0.09890754707157612],[115,76,64,-0.126505671069026],[115,76,65,-0.1251968089491129],[115,76,66,-0.12375367246568203],[115,76,67,-0.12225494347512722],[115,76,68,-0.1209761556237936],[115,76,69,-0.11978429183363914],[115,76,70,-0.11867845803499222],[115,76,71,-0.11733063124120235],[115,76,72,-0.11546864733099937],[115,76,73,-0.11337525211274624],[115,76,74,-0.1114058569073677],[115,76,75,-0.10998216643929482],[115,76,76,-0.10925289895385504],[115,76,77,-0.10882196761667728],[115,76,78,-0.10802656412124634],[115,76,79,-0.10672004707157612],[115,77,64,-0.134318171069026],[115,77,65,-0.1330093089491129],[115,77,66,-0.13156617246568203],[115,77,67,-0.13006744347512722],[115,77,68,-0.1287886556237936],[115,77,69,-0.12759679183363914],[115,77,70,-0.12649095803499222],[115,77,71,-0.12514313124120235],[115,77,72,-0.12328114733099937],[115,77,73,-0.12118775211274624],[115,77,74,-0.1192183569073677],[115,77,75,-0.11779466643929482],[115,77,76,-0.11706539895385504],[115,77,77,-0.11663446761667728],[115,77,78,-0.11583906412124634],[115,77,79,-0.11453254707157612],[115,78,64,-0.142130671069026],[115,78,65,-0.1408218089491129],[115,78,66,-0.13937867246568203],[115,78,67,-0.13787994347512722],[115,78,68,-0.1366011556237936],[115,78,69,-0.13540929183363914],[115,78,70,-0.13430345803499222],[115,78,71,-0.13295563124120235],[115,78,72,-0.13109364733099937],[115,78,73,-0.12900025211274624],[115,78,74,-0.1270308569073677],[115,78,75,-0.12560716643929482],[115,78,76,-0.12487789895385504],[115,78,77,-0.12444696761667728],[115,78,78,-0.12365156412124634],[115,78,79,-0.12234504707157612],[115,79,64,-0.149943171069026],[115,79,65,-0.1486343089491129],[115,79,66,-0.14719117246568203],[115,79,67,-0.14569244347512722],[115,79,68,-0.1444136556237936],[115,79,69,-0.14322179183363914],[115,79,70,-0.14211595803499222],[115,79,71,-0.14076813124120235],[115,79,72,-0.13890614733099937],[115,79,73,-0.13681275211274624],[115,79,74,-0.1348433569073677],[115,79,75,-0.13341966643929482],[115,79,76,-0.13269039895385504],[115,79,77,-0.13225946761667728],[115,79,78,-0.13146406412124634],[115,79,79,-0.13015754707157612],[115,80,64,-0.157755671069026],[115,80,65,-0.1564468089491129],[115,80,66,-0.15500367246568203],[115,80,67,-0.15350494347512722],[115,80,68,-0.1522261556237936],[115,80,69,-0.15103429183363914],[115,80,70,-0.14992845803499222],[115,80,71,-0.14858063124120235],[115,80,72,-0.14671864733099937],[115,80,73,-0.14462525211274624],[115,80,74,-0.1426558569073677],[115,80,75,-0.14123216643929482],[115,80,76,-0.14050289895385504],[115,80,77,-0.14007196761667728],[115,80,78,-0.13927656412124634],[115,80,79,-0.13797004707157612],[115,81,64,-0.165568171069026],[115,81,65,-0.1642593089491129],[115,81,66,-0.16281617246568203],[115,81,67,-0.16131744347512722],[115,81,68,-0.1600386556237936],[115,81,69,-0.15884679183363914],[115,81,70,-0.15774095803499222],[115,81,71,-0.15639313124120235],[115,81,72,-0.15453114733099937],[115,81,73,-0.15243775211274624],[115,81,74,-0.1504683569073677],[115,81,75,-0.14904466643929482],[115,81,76,-0.14831539895385504],[115,81,77,-0.14788446761667728],[115,81,78,-0.14708906412124634],[115,81,79,-0.14578254707157612],[115,82,64,-0.173380671069026],[115,82,65,-0.1720718089491129],[115,82,66,-0.17062867246568203],[115,82,67,-0.16912994347512722],[115,82,68,-0.1678511556237936],[115,82,69,-0.16665929183363914],[115,82,70,-0.16555345803499222],[115,82,71,-0.16420563124120235],[115,82,72,-0.16234364733099937],[115,82,73,-0.16025025211274624],[115,82,74,-0.1582808569073677],[115,82,75,-0.15685716643929482],[115,82,76,-0.15612789895385504],[115,82,77,-0.15569696761667728],[115,82,78,-0.15490156412124634],[115,82,79,-0.15359504707157612],[115,83,64,-0.181193171069026],[115,83,65,-0.1798843089491129],[115,83,66,-0.17844117246568203],[115,83,67,-0.17694244347512722],[115,83,68,-0.1756636556237936],[115,83,69,-0.17447179183363914],[115,83,70,-0.17336595803499222],[115,83,71,-0.17201813124120235],[115,83,72,-0.17015614733099937],[115,83,73,-0.16806275211274624],[115,83,74,-0.1660933569073677],[115,83,75,-0.16466966643929482],[115,83,76,-0.16394039895385504],[115,83,77,-0.16350946761667728],[115,83,78,-0.16271406412124634],[115,83,79,-0.16140754707157612],[115,84,64,-0.189005671069026],[115,84,65,-0.1876968089491129],[115,84,66,-0.18625367246568203],[115,84,67,-0.18475494347512722],[115,84,68,-0.1834761556237936],[115,84,69,-0.18228429183363914],[115,84,70,-0.18117845803499222],[115,84,71,-0.17983063124120235],[115,84,72,-0.17796864733099937],[115,84,73,-0.17587525211274624],[115,84,74,-0.1739058569073677],[115,84,75,-0.17248216643929482],[115,84,76,-0.17175289895385504],[115,84,77,-0.17132196761667728],[115,84,78,-0.17052656412124634],[115,84,79,-0.16922004707157612],[115,85,64,-0.196818171069026],[115,85,65,-0.1955093089491129],[115,85,66,-0.19406617246568203],[115,85,67,-0.19256744347512722],[115,85,68,-0.1912886556237936],[115,85,69,-0.19009679183363914],[115,85,70,-0.18899095803499222],[115,85,71,-0.18764313124120235],[115,85,72,-0.18578114733099937],[115,85,73,-0.18368775211274624],[115,85,74,-0.1817183569073677],[115,85,75,-0.18029466643929482],[115,85,76,-0.17956539895385504],[115,85,77,-0.17913446761667728],[115,85,78,-0.17833906412124634],[115,85,79,-0.17703254707157612],[115,86,64,-0.204630671069026],[115,86,65,-0.2033218089491129],[115,86,66,-0.20187867246568203],[115,86,67,-0.20037994347512722],[115,86,68,-0.1991011556237936],[115,86,69,-0.19790929183363914],[115,86,70,-0.19680345803499222],[115,86,71,-0.19545563124120235],[115,86,72,-0.19359364733099937],[115,86,73,-0.19150025211274624],[115,86,74,-0.1895308569073677],[115,86,75,-0.18810716643929482],[115,86,76,-0.18737789895385504],[115,86,77,-0.18694696761667728],[115,86,78,-0.18615156412124634],[115,86,79,-0.18484504707157612],[115,87,64,-0.212443171069026],[115,87,65,-0.2111343089491129],[115,87,66,-0.20969117246568203],[115,87,67,-0.20819244347512722],[115,87,68,-0.2069136556237936],[115,87,69,-0.20572179183363914],[115,87,70,-0.20461595803499222],[115,87,71,-0.20326813124120235],[115,87,72,-0.20140614733099937],[115,87,73,-0.19931275211274624],[115,87,74,-0.1973433569073677],[115,87,75,-0.19591966643929482],[115,87,76,-0.19519039895385504],[115,87,77,-0.19475946761667728],[115,87,78,-0.19396406412124634],[115,87,79,-0.19265754707157612],[115,88,64,-0.220255671069026],[115,88,65,-0.2189468089491129],[115,88,66,-0.21750367246568203],[115,88,67,-0.21600494347512722],[115,88,68,-0.2147261556237936],[115,88,69,-0.21353429183363914],[115,88,70,-0.21242845803499222],[115,88,71,-0.21108063124120235],[115,88,72,-0.20921864733099937],[115,88,73,-0.20712525211274624],[115,88,74,-0.2051558569073677],[115,88,75,-0.20373216643929482],[115,88,76,-0.20300289895385504],[115,88,77,-0.20257196761667728],[115,88,78,-0.20177656412124634],[115,88,79,-0.20047004707157612],[115,89,64,-0.228068171069026],[115,89,65,-0.2267593089491129],[115,89,66,-0.22531617246568203],[115,89,67,-0.22381744347512722],[115,89,68,-0.2225386556237936],[115,89,69,-0.22134679183363914],[115,89,70,-0.22024095803499222],[115,89,71,-0.21889313124120235],[115,89,72,-0.21703114733099937],[115,89,73,-0.21493775211274624],[115,89,74,-0.2129683569073677],[115,89,75,-0.21154466643929482],[115,89,76,-0.21081539895385504],[115,89,77,-0.21038446761667728],[115,89,78,-0.20958906412124634],[115,89,79,-0.20828254707157612],[115,90,64,-0.235880671069026],[115,90,65,-0.2345718089491129],[115,90,66,-0.23312867246568203],[115,90,67,-0.23162994347512722],[115,90,68,-0.2303511556237936],[115,90,69,-0.22915929183363914],[115,90,70,-0.22805345803499222],[115,90,71,-0.22670563124120235],[115,90,72,-0.22484364733099937],[115,90,73,-0.22275025211274624],[115,90,74,-0.2207808569073677],[115,90,75,-0.21935716643929482],[115,90,76,-0.21862789895385504],[115,90,77,-0.21819696761667728],[115,90,78,-0.21740156412124634],[115,90,79,-0.21609504707157612],[115,91,64,-0.243693171069026],[115,91,65,-0.2423843089491129],[115,91,66,-0.24094117246568203],[115,91,67,-0.23944244347512722],[115,91,68,-0.2381636556237936],[115,91,69,-0.23697179183363914],[115,91,70,-0.23586595803499222],[115,91,71,-0.23451813124120235],[115,91,72,-0.23265614733099937],[115,91,73,-0.23056275211274624],[115,91,74,-0.2285933569073677],[115,91,75,-0.22716966643929482],[115,91,76,-0.22644039895385504],[115,91,77,-0.22600946761667728],[115,91,78,-0.22521406412124634],[115,91,79,-0.22390754707157612],[115,92,64,-0.251505671069026],[115,92,65,-0.2501968089491129],[115,92,66,-0.24875367246568203],[115,92,67,-0.24725494347512722],[115,92,68,-0.2459761556237936],[115,92,69,-0.24478429183363914],[115,92,70,-0.24367845803499222],[115,92,71,-0.24233063124120235],[115,92,72,-0.24046864733099937],[115,92,73,-0.23837525211274624],[115,92,74,-0.2364058569073677],[115,92,75,-0.23498216643929482],[115,92,76,-0.23425289895385504],[115,92,77,-0.23382196761667728],[115,92,78,-0.23302656412124634],[115,92,79,-0.23172004707157612],[115,93,64,-0.259318171069026],[115,93,65,-0.2580093089491129],[115,93,66,-0.25656617246568203],[115,93,67,-0.2550674434751272],[115,93,68,-0.2537886556237936],[115,93,69,-0.25259679183363914],[115,93,70,-0.2514909580349922],[115,93,71,-0.25014313124120235],[115,93,72,-0.24828114733099937],[115,93,73,-0.24618775211274624],[115,93,74,-0.2442183569073677],[115,93,75,-0.24279466643929482],[115,93,76,-0.24206539895385504],[115,93,77,-0.24163446761667728],[115,93,78,-0.24083906412124634],[115,93,79,-0.23953254707157612],[115,94,64,-0.267130671069026],[115,94,65,-0.2658218089491129],[115,94,66,-0.26437867246568203],[115,94,67,-0.2628799434751272],[115,94,68,-0.2616011556237936],[115,94,69,-0.26040929183363914],[115,94,70,-0.2593034580349922],[115,94,71,-0.25795563124120235],[115,94,72,-0.2560936473309994],[115,94,73,-0.25400025211274624],[115,94,74,-0.2520308569073677],[115,94,75,-0.2506071664392948],[115,94,76,-0.24987789895385504],[115,94,77,-0.24944696761667728],[115,94,78,-0.24865156412124634],[115,94,79,-0.24734504707157612],[115,95,64,-0.274943171069026],[115,95,65,-0.2736343089491129],[115,95,66,-0.27219117246568203],[115,95,67,-0.2706924434751272],[115,95,68,-0.2694136556237936],[115,95,69,-0.26822179183363914],[115,95,70,-0.2671159580349922],[115,95,71,-0.26576813124120235],[115,95,72,-0.2639061473309994],[115,95,73,-0.26181275211274624],[115,95,74,-0.2598433569073677],[115,95,75,-0.2584196664392948],[115,95,76,-0.25769039895385504],[115,95,77,-0.2572594676166773],[115,95,78,-0.25646406412124634],[115,95,79,-0.2551575470715761],[115,96,64,-0.282755671069026],[115,96,65,-0.2814468089491129],[115,96,66,-0.28000367246568203],[115,96,67,-0.2785049434751272],[115,96,68,-0.2772261556237936],[115,96,69,-0.27603429183363914],[115,96,70,-0.2749284580349922],[115,96,71,-0.27358063124120235],[115,96,72,-0.2717186473309994],[115,96,73,-0.26962525211274624],[115,96,74,-0.2676558569073677],[115,96,75,-0.2662321664392948],[115,96,76,-0.26550289895385504],[115,96,77,-0.2650719676166773],[115,96,78,-0.26427656412124634],[115,96,79,-0.2629700470715761],[115,97,64,-0.290568171069026],[115,97,65,-0.2892593089491129],[115,97,66,-0.28781617246568203],[115,97,67,-0.2863174434751272],[115,97,68,-0.2850386556237936],[115,97,69,-0.28384679183363914],[115,97,70,-0.2827409580349922],[115,97,71,-0.28139313124120235],[115,97,72,-0.2795311473309994],[115,97,73,-0.27743775211274624],[115,97,74,-0.2754683569073677],[115,97,75,-0.2740446664392948],[115,97,76,-0.27331539895385504],[115,97,77,-0.2728844676166773],[115,97,78,-0.27208906412124634],[115,97,79,-0.2707825470715761],[115,98,64,-0.298380671069026],[115,98,65,-0.2970718089491129],[115,98,66,-0.29562867246568203],[115,98,67,-0.2941299434751272],[115,98,68,-0.2928511556237936],[115,98,69,-0.29165929183363914],[115,98,70,-0.2905534580349922],[115,98,71,-0.28920563124120235],[115,98,72,-0.2873436473309994],[115,98,73,-0.28525025211274624],[115,98,74,-0.2832808569073677],[115,98,75,-0.2818571664392948],[115,98,76,-0.28112789895385504],[115,98,77,-0.2806969676166773],[115,98,78,-0.27990156412124634],[115,98,79,-0.2785950470715761],[115,99,64,-0.306193171069026],[115,99,65,-0.3048843089491129],[115,99,66,-0.30344117246568203],[115,99,67,-0.3019424434751272],[115,99,68,-0.3006636556237936],[115,99,69,-0.29947179183363914],[115,99,70,-0.2983659580349922],[115,99,71,-0.29701813124120235],[115,99,72,-0.2951561473309994],[115,99,73,-0.29306275211274624],[115,99,74,-0.2910933569073677],[115,99,75,-0.2896696664392948],[115,99,76,-0.28894039895385504],[115,99,77,-0.2885094676166773],[115,99,78,-0.28771406412124634],[115,99,79,-0.2864075470715761],[115,100,64,-0.314005671069026],[115,100,65,-0.3126968089491129],[115,100,66,-0.31125367246568203],[115,100,67,-0.3097549434751272],[115,100,68,-0.3084761556237936],[115,100,69,-0.30728429183363914],[115,100,70,-0.3061784580349922],[115,100,71,-0.30483063124120235],[115,100,72,-0.3029686473309994],[115,100,73,-0.30087525211274624],[115,100,74,-0.2989058569073677],[115,100,75,-0.2974821664392948],[115,100,76,-0.29675289895385504],[115,100,77,-0.2963219676166773],[115,100,78,-0.29552656412124634],[115,100,79,-0.2942200470715761],[115,101,64,-0.321818171069026],[115,101,65,-0.3205093089491129],[115,101,66,-0.31906617246568203],[115,101,67,-0.3175674434751272],[115,101,68,-0.3162886556237936],[115,101,69,-0.31509679183363914],[115,101,70,-0.3139909580349922],[115,101,71,-0.31264313124120235],[115,101,72,-0.3107811473309994],[115,101,73,-0.30868775211274624],[115,101,74,-0.3067183569073677],[115,101,75,-0.3052946664392948],[115,101,76,-0.30456539895385504],[115,101,77,-0.3041344676166773],[115,101,78,-0.30333906412124634],[115,101,79,-0.3020325470715761],[115,102,64,-0.329630671069026],[115,102,65,-0.3283218089491129],[115,102,66,-0.32687867246568203],[115,102,67,-0.3253799434751272],[115,102,68,-0.3241011556237936],[115,102,69,-0.32290929183363914],[115,102,70,-0.3218034580349922],[115,102,71,-0.32045563124120235],[115,102,72,-0.3185936473309994],[115,102,73,-0.31650025211274624],[115,102,74,-0.3145308569073677],[115,102,75,-0.3131071664392948],[115,102,76,-0.31237789895385504],[115,102,77,-0.3119469676166773],[115,102,78,-0.31115156412124634],[115,102,79,-0.3098450470715761],[115,103,64,-0.337443171069026],[115,103,65,-0.3361343089491129],[115,103,66,-0.33469117246568203],[115,103,67,-0.3331924434751272],[115,103,68,-0.3319136556237936],[115,103,69,-0.33072179183363914],[115,103,70,-0.3296159580349922],[115,103,71,-0.32826813124120235],[115,103,72,-0.3264061473309994],[115,103,73,-0.32431275211274624],[115,103,74,-0.3223433569073677],[115,103,75,-0.3209196664392948],[115,103,76,-0.32019039895385504],[115,103,77,-0.3197594676166773],[115,103,78,-0.31896406412124634],[115,103,79,-0.3176575470715761],[115,104,64,-0.345255671069026],[115,104,65,-0.3439468089491129],[115,104,66,-0.34250367246568203],[115,104,67,-0.3410049434751272],[115,104,68,-0.3397261556237936],[115,104,69,-0.33853429183363914],[115,104,70,-0.3374284580349922],[115,104,71,-0.33608063124120235],[115,104,72,-0.3342186473309994],[115,104,73,-0.33212525211274624],[115,104,74,-0.3301558569073677],[115,104,75,-0.3287321664392948],[115,104,76,-0.32800289895385504],[115,104,77,-0.3275719676166773],[115,104,78,-0.32677656412124634],[115,104,79,-0.3254700470715761],[115,105,64,-0.353068171069026],[115,105,65,-0.3517593089491129],[115,105,66,-0.35031617246568203],[115,105,67,-0.3488174434751272],[115,105,68,-0.3475386556237936],[115,105,69,-0.34634679183363914],[115,105,70,-0.3452409580349922],[115,105,71,-0.34389313124120235],[115,105,72,-0.3420311473309994],[115,105,73,-0.33993775211274624],[115,105,74,-0.3379683569073677],[115,105,75,-0.3365446664392948],[115,105,76,-0.33581539895385504],[115,105,77,-0.3353844676166773],[115,105,78,-0.33458906412124634],[115,105,79,-0.3332825470715761],[115,106,64,-0.360880671069026],[115,106,65,-0.3595718089491129],[115,106,66,-0.35812867246568203],[115,106,67,-0.3566299434751272],[115,106,68,-0.3553511556237936],[115,106,69,-0.35415929183363914],[115,106,70,-0.3530534580349922],[115,106,71,-0.35170563124120235],[115,106,72,-0.3498436473309994],[115,106,73,-0.34775025211274624],[115,106,74,-0.3457808569073677],[115,106,75,-0.3443571664392948],[115,106,76,-0.34362789895385504],[115,106,77,-0.3431969676166773],[115,106,78,-0.34240156412124634],[115,106,79,-0.3410950470715761],[115,107,64,-0.368693171069026],[115,107,65,-0.3673843089491129],[115,107,66,-0.36594117246568203],[115,107,67,-0.3644424434751272],[115,107,68,-0.3631636556237936],[115,107,69,-0.36197179183363914],[115,107,70,-0.3608659580349922],[115,107,71,-0.35951813124120235],[115,107,72,-0.3576561473309994],[115,107,73,-0.35556275211274624],[115,107,74,-0.3535933569073677],[115,107,75,-0.3521696664392948],[115,107,76,-0.35144039895385504],[115,107,77,-0.3510094676166773],[115,107,78,-0.35021406412124634],[115,107,79,-0.3489075470715761],[115,108,64,-0.376505671069026],[115,108,65,-0.3751968089491129],[115,108,66,-0.37375367246568203],[115,108,67,-0.3722549434751272],[115,108,68,-0.3709761556237936],[115,108,69,-0.36978429183363914],[115,108,70,-0.3686784580349922],[115,108,71,-0.36733063124120235],[115,108,72,-0.3654686473309994],[115,108,73,-0.36337525211274624],[115,108,74,-0.3614058569073677],[115,108,75,-0.3599821664392948],[115,108,76,-0.35925289895385504],[115,108,77,-0.3588219676166773],[115,108,78,-0.35802656412124634],[115,108,79,-0.3567200470715761],[115,109,64,-0.384318171069026],[115,109,65,-0.3830093089491129],[115,109,66,-0.38156617246568203],[115,109,67,-0.3800674434751272],[115,109,68,-0.3787886556237936],[115,109,69,-0.37759679183363914],[115,109,70,-0.3764909580349922],[115,109,71,-0.37514313124120235],[115,109,72,-0.3732811473309994],[115,109,73,-0.37118775211274624],[115,109,74,-0.3692183569073677],[115,109,75,-0.3677946664392948],[115,109,76,-0.36706539895385504],[115,109,77,-0.3666344676166773],[115,109,78,-0.36583906412124634],[115,109,79,-0.3645325470715761],[115,110,64,-0.392130671069026],[115,110,65,-0.3908218089491129],[115,110,66,-0.38937867246568203],[115,110,67,-0.3878799434751272],[115,110,68,-0.3866011556237936],[115,110,69,-0.38540929183363914],[115,110,70,-0.3843034580349922],[115,110,71,-0.38295563124120235],[115,110,72,-0.3810936473309994],[115,110,73,-0.37900025211274624],[115,110,74,-0.3770308569073677],[115,110,75,-0.3756071664392948],[115,110,76,-0.37487789895385504],[115,110,77,-0.3744469676166773],[115,110,78,-0.37365156412124634],[115,110,79,-0.3723450470715761],[115,111,64,-0.399943171069026],[115,111,65,-0.3986343089491129],[115,111,66,-0.39719117246568203],[115,111,67,-0.3956924434751272],[115,111,68,-0.3944136556237936],[115,111,69,-0.39322179183363914],[115,111,70,-0.3921159580349922],[115,111,71,-0.39076813124120235],[115,111,72,-0.3889061473309994],[115,111,73,-0.38681275211274624],[115,111,74,-0.3848433569073677],[115,111,75,-0.3834196664392948],[115,111,76,-0.38269039895385504],[115,111,77,-0.3822594676166773],[115,111,78,-0.38146406412124634],[115,111,79,-0.3801575470715761],[115,112,64,-0.407755671069026],[115,112,65,-0.4064468089491129],[115,112,66,-0.40500367246568203],[115,112,67,-0.4035049434751272],[115,112,68,-0.4022261556237936],[115,112,69,-0.40103429183363914],[115,112,70,-0.3999284580349922],[115,112,71,-0.39858063124120235],[115,112,72,-0.3967186473309994],[115,112,73,-0.39462525211274624],[115,112,74,-0.3926558569073677],[115,112,75,-0.3912321664392948],[115,112,76,-0.39050289895385504],[115,112,77,-0.3900719676166773],[115,112,78,-0.38927656412124634],[115,112,79,-0.3879700470715761],[115,113,64,-0.415568171069026],[115,113,65,-0.4142593089491129],[115,113,66,-0.41281617246568203],[115,113,67,-0.4113174434751272],[115,113,68,-0.4100386556237936],[115,113,69,-0.40884679183363914],[115,113,70,-0.4077409580349922],[115,113,71,-0.40639313124120235],[115,113,72,-0.4045311473309994],[115,113,73,-0.40243775211274624],[115,113,74,-0.4004683569073677],[115,113,75,-0.3990446664392948],[115,113,76,-0.39831539895385504],[115,113,77,-0.3978844676166773],[115,113,78,-0.39708906412124634],[115,113,79,-0.3957825470715761],[115,114,64,-0.423380671069026],[115,114,65,-0.4220718089491129],[115,114,66,-0.42062867246568203],[115,114,67,-0.4191299434751272],[115,114,68,-0.4178511556237936],[115,114,69,-0.41665929183363914],[115,114,70,-0.4155534580349922],[115,114,71,-0.41420563124120235],[115,114,72,-0.4123436473309994],[115,114,73,-0.41025025211274624],[115,114,74,-0.4082808569073677],[115,114,75,-0.4068571664392948],[115,114,76,-0.40612789895385504],[115,114,77,-0.4056969676166773],[115,114,78,-0.40490156412124634],[115,114,79,-0.4035950470715761],[115,115,64,-0.431193171069026],[115,115,65,-0.4298843089491129],[115,115,66,-0.42844117246568203],[115,115,67,-0.4269424434751272],[115,115,68,-0.4256636556237936],[115,115,69,-0.42447179183363914],[115,115,70,-0.4233659580349922],[115,115,71,-0.42201813124120235],[115,115,72,-0.4201561473309994],[115,115,73,-0.41806275211274624],[115,115,74,-0.4160933569073677],[115,115,75,-0.4146696664392948],[115,115,76,-0.41394039895385504],[115,115,77,-0.4135094676166773],[115,115,78,-0.41271406412124634],[115,115,79,-0.4114075470715761],[115,116,64,-0.439005671069026],[115,116,65,-0.4376968089491129],[115,116,66,-0.43625367246568203],[115,116,67,-0.4347549434751272],[115,116,68,-0.4334761556237936],[115,116,69,-0.43228429183363914],[115,116,70,-0.4311784580349922],[115,116,71,-0.42983063124120235],[115,116,72,-0.4279686473309994],[115,116,73,-0.42587525211274624],[115,116,74,-0.4239058569073677],[115,116,75,-0.4224821664392948],[115,116,76,-0.42175289895385504],[115,116,77,-0.4213219676166773],[115,116,78,-0.42052656412124634],[115,116,79,-0.4192200470715761],[115,117,64,-0.446818171069026],[115,117,65,-0.4455093089491129],[115,117,66,-0.44406617246568203],[115,117,67,-0.4425674434751272],[115,117,68,-0.4412886556237936],[115,117,69,-0.44009679183363914],[115,117,70,-0.4389909580349922],[115,117,71,-0.43764313124120235],[115,117,72,-0.4357811473309994],[115,117,73,-0.43368775211274624],[115,117,74,-0.4317183569073677],[115,117,75,-0.4302946664392948],[115,117,76,-0.42956539895385504],[115,117,77,-0.4291344676166773],[115,117,78,-0.42833906412124634],[115,117,79,-0.4270325470715761],[115,118,64,-0.454630671069026],[115,118,65,-0.4533218089491129],[115,118,66,-0.45187867246568203],[115,118,67,-0.4503799434751272],[115,118,68,-0.4491011556237936],[115,118,69,-0.44790929183363914],[115,118,70,-0.4468034580349922],[115,118,71,-0.44545563124120235],[115,118,72,-0.4435936473309994],[115,118,73,-0.44150025211274624],[115,118,74,-0.4395308569073677],[115,118,75,-0.4381071664392948],[115,118,76,-0.43737789895385504],[115,118,77,-0.4369469676166773],[115,118,78,-0.43615156412124634],[115,118,79,-0.4348450470715761],[115,119,64,-0.462443171069026],[115,119,65,-0.4611343089491129],[115,119,66,-0.45969117246568203],[115,119,67,-0.4581924434751272],[115,119,68,-0.4569136556237936],[115,119,69,-0.45572179183363914],[115,119,70,-0.4546159580349922],[115,119,71,-0.45326813124120235],[115,119,72,-0.4514061473309994],[115,119,73,-0.44931275211274624],[115,119,74,-0.4473433569073677],[115,119,75,-0.4459196664392948],[115,119,76,-0.44519039895385504],[115,119,77,-0.4447594676166773],[115,119,78,-0.44396406412124634],[115,119,79,-0.4426575470715761],[115,120,64,-0.470255671069026],[115,120,65,-0.4689468089491129],[115,120,66,-0.46750367246568203],[115,120,67,-0.4660049434751272],[115,120,68,-0.4647261556237936],[115,120,69,-0.46353429183363914],[115,120,70,-0.4624284580349922],[115,120,71,-0.46108063124120235],[115,120,72,-0.4592186473309994],[115,120,73,-0.45712525211274624],[115,120,74,-0.4551558569073677],[115,120,75,-0.4537321664392948],[115,120,76,-0.45300289895385504],[115,120,77,-0.4525719676166773],[115,120,78,-0.45177656412124634],[115,120,79,-0.4504700470715761],[115,121,64,-0.478068171069026],[115,121,65,-0.4767593089491129],[115,121,66,-0.47531617246568203],[115,121,67,-0.4738174434751272],[115,121,68,-0.4725386556237936],[115,121,69,-0.47134679183363914],[115,121,70,-0.4702409580349922],[115,121,71,-0.46889313124120235],[115,121,72,-0.4670311473309994],[115,121,73,-0.46493775211274624],[115,121,74,-0.4629683569073677],[115,121,75,-0.4615446664392948],[115,121,76,-0.46081539895385504],[115,121,77,-0.4603844676166773],[115,121,78,-0.45958906412124634],[115,121,79,-0.4582825470715761],[115,122,64,-0.485880671069026],[115,122,65,-0.4845718089491129],[115,122,66,-0.48312867246568203],[115,122,67,-0.4816299434751272],[115,122,68,-0.4803511556237936],[115,122,69,-0.47915929183363914],[115,122,70,-0.4780534580349922],[115,122,71,-0.47670563124120235],[115,122,72,-0.4748436473309994],[115,122,73,-0.47275025211274624],[115,122,74,-0.4707808569073677],[115,122,75,-0.4693571664392948],[115,122,76,-0.46862789895385504],[115,122,77,-0.4681969676166773],[115,122,78,-0.46740156412124634],[115,122,79,-0.4660950470715761],[115,123,64,-0.493693171069026],[115,123,65,-0.4923843089491129],[115,123,66,-0.49094117246568203],[115,123,67,-0.4894424434751272],[115,123,68,-0.4881636556237936],[115,123,69,-0.48697179183363914],[115,123,70,-0.4858659580349922],[115,123,71,-0.48451813124120235],[115,123,72,-0.4826561473309994],[115,123,73,-0.48056275211274624],[115,123,74,-0.4785933569073677],[115,123,75,-0.4771696664392948],[115,123,76,-0.47644039895385504],[115,123,77,-0.4760094676166773],[115,123,78,-0.47521406412124634],[115,123,79,-0.4739075470715761],[115,124,64,-0.501505671069026],[115,124,65,-0.5001968089491129],[115,124,66,-0.49875367246568203],[115,124,67,-0.4972549434751272],[115,124,68,-0.4959761556237936],[115,124,69,-0.49478429183363914],[115,124,70,-0.4936784580349922],[115,124,71,-0.49233063124120235],[115,124,72,-0.4904686473309994],[115,124,73,-0.48837525211274624],[115,124,74,-0.4864058569073677],[115,124,75,-0.4849821664392948],[115,124,76,-0.48425289895385504],[115,124,77,-0.4838219676166773],[115,124,78,-0.48302656412124634],[115,124,79,-0.4817200470715761],[115,125,64,-0.509318171069026],[115,125,65,-0.5080093089491129],[115,125,66,-0.506566172465682],[115,125,67,-0.5050674434751272],[115,125,68,-0.5037886556237936],[115,125,69,-0.5025967918336391],[115,125,70,-0.5014909580349922],[115,125,71,-0.5001431312412024],[115,125,72,-0.4982811473309994],[115,125,73,-0.49618775211274624],[115,125,74,-0.4942183569073677],[115,125,75,-0.4927946664392948],[115,125,76,-0.49206539895385504],[115,125,77,-0.4916344676166773],[115,125,78,-0.49083906412124634],[115,125,79,-0.4895325470715761],[115,126,64,-0.517130671069026],[115,126,65,-0.5158218089491129],[115,126,66,-0.514378672465682],[115,126,67,-0.5128799434751272],[115,126,68,-0.5116011556237936],[115,126,69,-0.5104092918336391],[115,126,70,-0.5093034580349922],[115,126,71,-0.5079556312412024],[115,126,72,-0.5060936473309994],[115,126,73,-0.5040002521127462],[115,126,74,-0.5020308569073677],[115,126,75,-0.5006071664392948],[115,126,76,-0.49987789895385504],[115,126,77,-0.4994469676166773],[115,126,78,-0.49865156412124634],[115,126,79,-0.4973450470715761],[115,127,64,-0.524943171069026],[115,127,65,-0.5236343089491129],[115,127,66,-0.522191172465682],[115,127,67,-0.5206924434751272],[115,127,68,-0.5194136556237936],[115,127,69,-0.5182217918336391],[115,127,70,-0.5171159580349922],[115,127,71,-0.5157681312412024],[115,127,72,-0.5139061473309994],[115,127,73,-0.5118127521127462],[115,127,74,-0.5098433569073677],[115,127,75,-0.5084196664392948],[115,127,76,-0.507690398953855],[115,127,77,-0.5072594676166773],[115,127,78,-0.5064640641212463],[115,127,79,-0.5051575470715761],[115,128,64,-0.532755671069026],[115,128,65,-0.5314468089491129],[115,128,66,-0.530003672465682],[115,128,67,-0.5285049434751272],[115,128,68,-0.5272261556237936],[115,128,69,-0.5260342918336391],[115,128,70,-0.5249284580349922],[115,128,71,-0.5235806312412024],[115,128,72,-0.5217186473309994],[115,128,73,-0.5196252521127462],[115,128,74,-0.5176558569073677],[115,128,75,-0.5162321664392948],[115,128,76,-0.515502898953855],[115,128,77,-0.5150719676166773],[115,128,78,-0.5142765641212463],[115,128,79,-0.5129700470715761],[115,129,64,-0.540568171069026],[115,129,65,-0.5392593089491129],[115,129,66,-0.537816172465682],[115,129,67,-0.5363174434751272],[115,129,68,-0.5350386556237936],[115,129,69,-0.5338467918336391],[115,129,70,-0.5327409580349922],[115,129,71,-0.5313931312412024],[115,129,72,-0.5295311473309994],[115,129,73,-0.5274377521127462],[115,129,74,-0.5254683569073677],[115,129,75,-0.5240446664392948],[115,129,76,-0.523315398953855],[115,129,77,-0.5228844676166773],[115,129,78,-0.5220890641212463],[115,129,79,-0.5207825470715761],[115,130,64,-0.548380671069026],[115,130,65,-0.5470718089491129],[115,130,66,-0.545628672465682],[115,130,67,-0.5441299434751272],[115,130,68,-0.5428511556237936],[115,130,69,-0.5416592918336391],[115,130,70,-0.5405534580349922],[115,130,71,-0.5392056312412024],[115,130,72,-0.5373436473309994],[115,130,73,-0.5352502521127462],[115,130,74,-0.5332808569073677],[115,130,75,-0.5318571664392948],[115,130,76,-0.531127898953855],[115,130,77,-0.5306969676166773],[115,130,78,-0.5299015641212463],[115,130,79,-0.5285950470715761],[115,131,64,-0.556193171069026],[115,131,65,-0.5548843089491129],[115,131,66,-0.553441172465682],[115,131,67,-0.5519424434751272],[115,131,68,-0.5506636556237936],[115,131,69,-0.5494717918336391],[115,131,70,-0.5483659580349922],[115,131,71,-0.5470181312412024],[115,131,72,-0.5451561473309994],[115,131,73,-0.5430627521127462],[115,131,74,-0.5410933569073677],[115,131,75,-0.5396696664392948],[115,131,76,-0.538940398953855],[115,131,77,-0.5385094676166773],[115,131,78,-0.5377140641212463],[115,131,79,-0.5364075470715761],[115,132,64,-0.564005671069026],[115,132,65,-0.5626968089491129],[115,132,66,-0.561253672465682],[115,132,67,-0.5597549434751272],[115,132,68,-0.5584761556237936],[115,132,69,-0.5572842918336391],[115,132,70,-0.5561784580349922],[115,132,71,-0.5548306312412024],[115,132,72,-0.5529686473309994],[115,132,73,-0.5508752521127462],[115,132,74,-0.5489058569073677],[115,132,75,-0.5474821664392948],[115,132,76,-0.546752898953855],[115,132,77,-0.5463219676166773],[115,132,78,-0.5455265641212463],[115,132,79,-0.5442200470715761],[115,133,64,-0.571818171069026],[115,133,65,-0.5705093089491129],[115,133,66,-0.569066172465682],[115,133,67,-0.5675674434751272],[115,133,68,-0.5662886556237936],[115,133,69,-0.5650967918336391],[115,133,70,-0.5639909580349922],[115,133,71,-0.5626431312412024],[115,133,72,-0.5607811473309994],[115,133,73,-0.5586877521127462],[115,133,74,-0.5567183569073677],[115,133,75,-0.5552946664392948],[115,133,76,-0.554565398953855],[115,133,77,-0.5541344676166773],[115,133,78,-0.5533390641212463],[115,133,79,-0.5520325470715761],[115,134,64,-0.579630671069026],[115,134,65,-0.5783218089491129],[115,134,66,-0.576878672465682],[115,134,67,-0.5753799434751272],[115,134,68,-0.5741011556237936],[115,134,69,-0.5729092918336391],[115,134,70,-0.5718034580349922],[115,134,71,-0.5704556312412024],[115,134,72,-0.5685936473309994],[115,134,73,-0.5665002521127462],[115,134,74,-0.5645308569073677],[115,134,75,-0.5631071664392948],[115,134,76,-0.562377898953855],[115,134,77,-0.5619469676166773],[115,134,78,-0.5611515641212463],[115,134,79,-0.5598450470715761],[115,135,64,-0.587443171069026],[115,135,65,-0.5861343089491129],[115,135,66,-0.584691172465682],[115,135,67,-0.5831924434751272],[115,135,68,-0.5819136556237936],[115,135,69,-0.5807217918336391],[115,135,70,-0.5796159580349922],[115,135,71,-0.5782681312412024],[115,135,72,-0.5764061473309994],[115,135,73,-0.5743127521127462],[115,135,74,-0.5723433569073677],[115,135,75,-0.5709196664392948],[115,135,76,-0.570190398953855],[115,135,77,-0.5697594676166773],[115,135,78,-0.5689640641212463],[115,135,79,-0.5676575470715761],[115,136,64,-0.595255671069026],[115,136,65,-0.5939468089491129],[115,136,66,-0.592503672465682],[115,136,67,-0.5910049434751272],[115,136,68,-0.5897261556237936],[115,136,69,-0.5885342918336391],[115,136,70,-0.5874284580349922],[115,136,71,-0.5860806312412024],[115,136,72,-0.5842186473309994],[115,136,73,-0.5821252521127462],[115,136,74,-0.5801558569073677],[115,136,75,-0.5787321664392948],[115,136,76,-0.578002898953855],[115,136,77,-0.5775719676166773],[115,136,78,-0.5767765641212463],[115,136,79,-0.5754700470715761],[115,137,64,-0.603068171069026],[115,137,65,-0.6017593089491129],[115,137,66,-0.600316172465682],[115,137,67,-0.5988174434751272],[115,137,68,-0.5975386556237936],[115,137,69,-0.5963467918336391],[115,137,70,-0.5952409580349922],[115,137,71,-0.5938931312412024],[115,137,72,-0.5920311473309994],[115,137,73,-0.5899377521127462],[115,137,74,-0.5879683569073677],[115,137,75,-0.5865446664392948],[115,137,76,-0.585815398953855],[115,137,77,-0.5853844676166773],[115,137,78,-0.5845890641212463],[115,137,79,-0.5832825470715761],[115,138,64,-0.610880671069026],[115,138,65,-0.6095718089491129],[115,138,66,-0.608128672465682],[115,138,67,-0.6066299434751272],[115,138,68,-0.6053511556237936],[115,138,69,-0.6041592918336391],[115,138,70,-0.6030534580349922],[115,138,71,-0.6017056312412024],[115,138,72,-0.5998436473309994],[115,138,73,-0.5977502521127462],[115,138,74,-0.5957808569073677],[115,138,75,-0.5943571664392948],[115,138,76,-0.593627898953855],[115,138,77,-0.5931969676166773],[115,138,78,-0.5924015641212463],[115,138,79,-0.5910950470715761],[115,139,64,-0.618693171069026],[115,139,65,-0.6173843089491129],[115,139,66,-0.615941172465682],[115,139,67,-0.6144424434751272],[115,139,68,-0.6131636556237936],[115,139,69,-0.6119717918336391],[115,139,70,-0.6108659580349922],[115,139,71,-0.6095181312412024],[115,139,72,-0.6076561473309994],[115,139,73,-0.6055627521127462],[115,139,74,-0.6035933569073677],[115,139,75,-0.6021696664392948],[115,139,76,-0.601440398953855],[115,139,77,-0.6010094676166773],[115,139,78,-0.6002140641212463],[115,139,79,-0.5989075470715761],[115,140,64,-0.626505671069026],[115,140,65,-0.6251968089491129],[115,140,66,-0.623753672465682],[115,140,67,-0.6222549434751272],[115,140,68,-0.6209761556237936],[115,140,69,-0.6197842918336391],[115,140,70,-0.6186784580349922],[115,140,71,-0.6173306312412024],[115,140,72,-0.6154686473309994],[115,140,73,-0.6133752521127462],[115,140,74,-0.6114058569073677],[115,140,75,-0.6099821664392948],[115,140,76,-0.609252898953855],[115,140,77,-0.6088219676166773],[115,140,78,-0.6080265641212463],[115,140,79,-0.6067200470715761],[115,141,64,-0.634318171069026],[115,141,65,-0.6330093089491129],[115,141,66,-0.631566172465682],[115,141,67,-0.6300674434751272],[115,141,68,-0.6287886556237936],[115,141,69,-0.6275967918336391],[115,141,70,-0.6264909580349922],[115,141,71,-0.6251431312412024],[115,141,72,-0.6232811473309994],[115,141,73,-0.6211877521127462],[115,141,74,-0.6192183569073677],[115,141,75,-0.6177946664392948],[115,141,76,-0.617065398953855],[115,141,77,-0.6166344676166773],[115,141,78,-0.6158390641212463],[115,141,79,-0.6145325470715761],[115,142,64,-0.642130671069026],[115,142,65,-0.6408218089491129],[115,142,66,-0.639378672465682],[115,142,67,-0.6378799434751272],[115,142,68,-0.6366011556237936],[115,142,69,-0.6354092918336391],[115,142,70,-0.6343034580349922],[115,142,71,-0.6329556312412024],[115,142,72,-0.6310936473309994],[115,142,73,-0.6290002521127462],[115,142,74,-0.6270308569073677],[115,142,75,-0.6256071664392948],[115,142,76,-0.624877898953855],[115,142,77,-0.6244469676166773],[115,142,78,-0.6236515641212463],[115,142,79,-0.6223450470715761],[115,143,64,-0.649943171069026],[115,143,65,-0.6486343089491129],[115,143,66,-0.647191172465682],[115,143,67,-0.6456924434751272],[115,143,68,-0.6444136556237936],[115,143,69,-0.6432217918336391],[115,143,70,-0.6421159580349922],[115,143,71,-0.6407681312412024],[115,143,72,-0.6389061473309994],[115,143,73,-0.6368127521127462],[115,143,74,-0.6348433569073677],[115,143,75,-0.6334196664392948],[115,143,76,-0.632690398953855],[115,143,77,-0.6322594676166773],[115,143,78,-0.6314640641212463],[115,143,79,-0.6301575470715761],[115,144,64,-0.657755671069026],[115,144,65,-0.6564468089491129],[115,144,66,-0.655003672465682],[115,144,67,-0.6535049434751272],[115,144,68,-0.6522261556237936],[115,144,69,-0.6510342918336391],[115,144,70,-0.6499284580349922],[115,144,71,-0.6485806312412024],[115,144,72,-0.6467186473309994],[115,144,73,-0.6446252521127462],[115,144,74,-0.6426558569073677],[115,144,75,-0.6412321664392948],[115,144,76,-0.640502898953855],[115,144,77,-0.6400719676166773],[115,144,78,-0.6392765641212463],[115,144,79,-0.6379700470715761],[115,145,64,-0.665568171069026],[115,145,65,-0.6642593089491129],[115,145,66,-0.662816172465682],[115,145,67,-0.6613174434751272],[115,145,68,-0.6600386556237936],[115,145,69,-0.6588467918336391],[115,145,70,-0.6577409580349922],[115,145,71,-0.6563931312412024],[115,145,72,-0.6545311473309994],[115,145,73,-0.6524377521127462],[115,145,74,-0.6504683569073677],[115,145,75,-0.6490446664392948],[115,145,76,-0.648315398953855],[115,145,77,-0.6478844676166773],[115,145,78,-0.6470890641212463],[115,145,79,-0.6457825470715761],[115,146,64,-0.673380671069026],[115,146,65,-0.6720718089491129],[115,146,66,-0.670628672465682],[115,146,67,-0.6691299434751272],[115,146,68,-0.6678511556237936],[115,146,69,-0.6666592918336391],[115,146,70,-0.6655534580349922],[115,146,71,-0.6642056312412024],[115,146,72,-0.6623436473309994],[115,146,73,-0.6602502521127462],[115,146,74,-0.6582808569073677],[115,146,75,-0.6568571664392948],[115,146,76,-0.656127898953855],[115,146,77,-0.6556969676166773],[115,146,78,-0.6549015641212463],[115,146,79,-0.6535950470715761],[115,147,64,-0.681193171069026],[115,147,65,-0.6798843089491129],[115,147,66,-0.678441172465682],[115,147,67,-0.6769424434751272],[115,147,68,-0.6756636556237936],[115,147,69,-0.6744717918336391],[115,147,70,-0.6733659580349922],[115,147,71,-0.6720181312412024],[115,147,72,-0.6701561473309994],[115,147,73,-0.6680627521127462],[115,147,74,-0.6660933569073677],[115,147,75,-0.6646696664392948],[115,147,76,-0.663940398953855],[115,147,77,-0.6635094676166773],[115,147,78,-0.6627140641212463],[115,147,79,-0.6614075470715761],[115,148,64,-0.689005671069026],[115,148,65,-0.6876968089491129],[115,148,66,-0.686253672465682],[115,148,67,-0.6847549434751272],[115,148,68,-0.6834761556237936],[115,148,69,-0.6822842918336391],[115,148,70,-0.6811784580349922],[115,148,71,-0.6798306312412024],[115,148,72,-0.6779686473309994],[115,148,73,-0.6758752521127462],[115,148,74,-0.6739058569073677],[115,148,75,-0.6724821664392948],[115,148,76,-0.671752898953855],[115,148,77,-0.6713219676166773],[115,148,78,-0.6705265641212463],[115,148,79,-0.6692200470715761],[115,149,64,-0.696818171069026],[115,149,65,-0.6955093089491129],[115,149,66,-0.694066172465682],[115,149,67,-0.6925674434751272],[115,149,68,-0.6912886556237936],[115,149,69,-0.6900967918336391],[115,149,70,-0.6889909580349922],[115,149,71,-0.6876431312412024],[115,149,72,-0.6857811473309994],[115,149,73,-0.6836877521127462],[115,149,74,-0.6817183569073677],[115,149,75,-0.6802946664392948],[115,149,76,-0.679565398953855],[115,149,77,-0.6791344676166773],[115,149,78,-0.6783390641212463],[115,149,79,-0.6770325470715761],[115,150,64,-0.704630671069026],[115,150,65,-0.7033218089491129],[115,150,66,-0.701878672465682],[115,150,67,-0.7003799434751272],[115,150,68,-0.6991011556237936],[115,150,69,-0.6979092918336391],[115,150,70,-0.6968034580349922],[115,150,71,-0.6954556312412024],[115,150,72,-0.6935936473309994],[115,150,73,-0.6915002521127462],[115,150,74,-0.6895308569073677],[115,150,75,-0.6881071664392948],[115,150,76,-0.687377898953855],[115,150,77,-0.6869469676166773],[115,150,78,-0.6861515641212463],[115,150,79,-0.6848450470715761],[115,151,64,-0.712443171069026],[115,151,65,-0.7111343089491129],[115,151,66,-0.709691172465682],[115,151,67,-0.7081924434751272],[115,151,68,-0.7069136556237936],[115,151,69,-0.7057217918336391],[115,151,70,-0.7046159580349922],[115,151,71,-0.7032681312412024],[115,151,72,-0.7014061473309994],[115,151,73,-0.6993127521127462],[115,151,74,-0.6973433569073677],[115,151,75,-0.6959196664392948],[115,151,76,-0.695190398953855],[115,151,77,-0.6947594676166773],[115,151,78,-0.6939640641212463],[115,151,79,-0.6926575470715761],[115,152,64,-0.720255671069026],[115,152,65,-0.7189468089491129],[115,152,66,-0.717503672465682],[115,152,67,-0.7160049434751272],[115,152,68,-0.7147261556237936],[115,152,69,-0.7135342918336391],[115,152,70,-0.7124284580349922],[115,152,71,-0.7110806312412024],[115,152,72,-0.7092186473309994],[115,152,73,-0.7071252521127462],[115,152,74,-0.7051558569073677],[115,152,75,-0.7037321664392948],[115,152,76,-0.703002898953855],[115,152,77,-0.7025719676166773],[115,152,78,-0.7017765641212463],[115,152,79,-0.7004700470715761],[115,153,64,-0.728068171069026],[115,153,65,-0.7267593089491129],[115,153,66,-0.725316172465682],[115,153,67,-0.7238174434751272],[115,153,68,-0.7225386556237936],[115,153,69,-0.7213467918336391],[115,153,70,-0.7202409580349922],[115,153,71,-0.7188931312412024],[115,153,72,-0.7170311473309994],[115,153,73,-0.7149377521127462],[115,153,74,-0.7129683569073677],[115,153,75,-0.7115446664392948],[115,153,76,-0.710815398953855],[115,153,77,-0.7103844676166773],[115,153,78,-0.7095890641212463],[115,153,79,-0.7082825470715761],[115,154,64,-0.735880671069026],[115,154,65,-0.7345718089491129],[115,154,66,-0.733128672465682],[115,154,67,-0.7316299434751272],[115,154,68,-0.7303511556237936],[115,154,69,-0.7291592918336391],[115,154,70,-0.7280534580349922],[115,154,71,-0.7267056312412024],[115,154,72,-0.7248436473309994],[115,154,73,-0.7227502521127462],[115,154,74,-0.7207808569073677],[115,154,75,-0.7193571664392948],[115,154,76,-0.718627898953855],[115,154,77,-0.7181969676166773],[115,154,78,-0.7174015641212463],[115,154,79,-0.7160950470715761],[115,155,64,-0.743693171069026],[115,155,65,-0.7423843089491129],[115,155,66,-0.740941172465682],[115,155,67,-0.7394424434751272],[115,155,68,-0.7381636556237936],[115,155,69,-0.7369717918336391],[115,155,70,-0.7358659580349922],[115,155,71,-0.7345181312412024],[115,155,72,-0.7326561473309994],[115,155,73,-0.7305627521127462],[115,155,74,-0.7285933569073677],[115,155,75,-0.7271696664392948],[115,155,76,-0.726440398953855],[115,155,77,-0.7260094676166773],[115,155,78,-0.7252140641212463],[115,155,79,-0.7239075470715761],[115,156,64,-0.751505671069026],[115,156,65,-0.7501968089491129],[115,156,66,-0.748753672465682],[115,156,67,-0.7472549434751272],[115,156,68,-0.7459761556237936],[115,156,69,-0.7447842918336391],[115,156,70,-0.7436784580349922],[115,156,71,-0.7423306312412024],[115,156,72,-0.7404686473309994],[115,156,73,-0.7383752521127462],[115,156,74,-0.7364058569073677],[115,156,75,-0.7349821664392948],[115,156,76,-0.734252898953855],[115,156,77,-0.7338219676166773],[115,156,78,-0.7330265641212463],[115,156,79,-0.7317200470715761],[115,157,64,-0.759318171069026],[115,157,65,-0.7580093089491129],[115,157,66,-0.756566172465682],[115,157,67,-0.7550674434751272],[115,157,68,-0.7537886556237936],[115,157,69,-0.7525967918336391],[115,157,70,-0.7514909580349922],[115,157,71,-0.7501431312412024],[115,157,72,-0.7482811473309994],[115,157,73,-0.7461877521127462],[115,157,74,-0.7442183569073677],[115,157,75,-0.7427946664392948],[115,157,76,-0.742065398953855],[115,157,77,-0.7416344676166773],[115,157,78,-0.7408390641212463],[115,157,79,-0.7395325470715761],[115,158,64,-0.767130671069026],[115,158,65,-0.7658218089491129],[115,158,66,-0.764378672465682],[115,158,67,-0.7628799434751272],[115,158,68,-0.7616011556237936],[115,158,69,-0.7604092918336391],[115,158,70,-0.7593034580349922],[115,158,71,-0.7579556312412024],[115,158,72,-0.7560936473309994],[115,158,73,-0.7540002521127462],[115,158,74,-0.7520308569073677],[115,158,75,-0.7506071664392948],[115,158,76,-0.749877898953855],[115,158,77,-0.7494469676166773],[115,158,78,-0.7486515641212463],[115,158,79,-0.7473450470715761],[115,159,64,-0.774943171069026],[115,159,65,-0.7736343089491129],[115,159,66,-0.772191172465682],[115,159,67,-0.7706924434751272],[115,159,68,-0.7694136556237936],[115,159,69,-0.7682217918336391],[115,159,70,-0.7671159580349922],[115,159,71,-0.7657681312412024],[115,159,72,-0.7639061473309994],[115,159,73,-0.7618127521127462],[115,159,74,-0.7598433569073677],[115,159,75,-0.7584196664392948],[115,159,76,-0.757690398953855],[115,159,77,-0.7572594676166773],[115,159,78,-0.7564640641212463],[115,159,79,-0.7551575470715761],[115,160,64,-0.782755671069026],[115,160,65,-0.7814468089491129],[115,160,66,-0.780003672465682],[115,160,67,-0.7785049434751272],[115,160,68,-0.7772261556237936],[115,160,69,-0.7760342918336391],[115,160,70,-0.7749284580349922],[115,160,71,-0.7735806312412024],[115,160,72,-0.7717186473309994],[115,160,73,-0.7696252521127462],[115,160,74,-0.7676558569073677],[115,160,75,-0.7662321664392948],[115,160,76,-0.765502898953855],[115,160,77,-0.7650719676166773],[115,160,78,-0.7642765641212463],[115,160,79,-0.7629700470715761],[115,161,64,-0.790568171069026],[115,161,65,-0.7892593089491129],[115,161,66,-0.787816172465682],[115,161,67,-0.7863174434751272],[115,161,68,-0.7850386556237936],[115,161,69,-0.7838467918336391],[115,161,70,-0.7827409580349922],[115,161,71,-0.7813931312412024],[115,161,72,-0.7795311473309994],[115,161,73,-0.7774377521127462],[115,161,74,-0.7754683569073677],[115,161,75,-0.7740446664392948],[115,161,76,-0.773315398953855],[115,161,77,-0.7728844676166773],[115,161,78,-0.7720890641212463],[115,161,79,-0.7707825470715761],[115,162,64,-0.798380671069026],[115,162,65,-0.7970718089491129],[115,162,66,-0.795628672465682],[115,162,67,-0.7941299434751272],[115,162,68,-0.7928511556237936],[115,162,69,-0.7916592918336391],[115,162,70,-0.7905534580349922],[115,162,71,-0.7892056312412024],[115,162,72,-0.7873436473309994],[115,162,73,-0.7852502521127462],[115,162,74,-0.7832808569073677],[115,162,75,-0.7818571664392948],[115,162,76,-0.781127898953855],[115,162,77,-0.7806969676166773],[115,162,78,-0.7799015641212463],[115,162,79,-0.7785950470715761],[115,163,64,-0.806193171069026],[115,163,65,-0.8048843089491129],[115,163,66,-0.803441172465682],[115,163,67,-0.8019424434751272],[115,163,68,-0.8006636556237936],[115,163,69,-0.7994717918336391],[115,163,70,-0.7983659580349922],[115,163,71,-0.7970181312412024],[115,163,72,-0.7951561473309994],[115,163,73,-0.7930627521127462],[115,163,74,-0.7910933569073677],[115,163,75,-0.7896696664392948],[115,163,76,-0.788940398953855],[115,163,77,-0.7885094676166773],[115,163,78,-0.7877140641212463],[115,163,79,-0.7864075470715761],[115,164,64,-0.814005671069026],[115,164,65,-0.8126968089491129],[115,164,66,-0.811253672465682],[115,164,67,-0.8097549434751272],[115,164,68,-0.8084761556237936],[115,164,69,-0.8072842918336391],[115,164,70,-0.8061784580349922],[115,164,71,-0.8048306312412024],[115,164,72,-0.8029686473309994],[115,164,73,-0.8008752521127462],[115,164,74,-0.7989058569073677],[115,164,75,-0.7974821664392948],[115,164,76,-0.796752898953855],[115,164,77,-0.7963219676166773],[115,164,78,-0.7955265641212463],[115,164,79,-0.7942200470715761],[115,165,64,-0.821818171069026],[115,165,65,-0.8205093089491129],[115,165,66,-0.819066172465682],[115,165,67,-0.8175674434751272],[115,165,68,-0.8162886556237936],[115,165,69,-0.8150967918336391],[115,165,70,-0.8139909580349922],[115,165,71,-0.8126431312412024],[115,165,72,-0.8107811473309994],[115,165,73,-0.8086877521127462],[115,165,74,-0.8067183569073677],[115,165,75,-0.8052946664392948],[115,165,76,-0.804565398953855],[115,165,77,-0.8041344676166773],[115,165,78,-0.8033390641212463],[115,165,79,-0.8020325470715761],[115,166,64,-0.829630671069026],[115,166,65,-0.8283218089491129],[115,166,66,-0.826878672465682],[115,166,67,-0.8253799434751272],[115,166,68,-0.8241011556237936],[115,166,69,-0.8229092918336391],[115,166,70,-0.8218034580349922],[115,166,71,-0.8204556312412024],[115,166,72,-0.8185936473309994],[115,166,73,-0.8165002521127462],[115,166,74,-0.8145308569073677],[115,166,75,-0.8131071664392948],[115,166,76,-0.812377898953855],[115,166,77,-0.8119469676166773],[115,166,78,-0.8111515641212463],[115,166,79,-0.8098450470715761],[115,167,64,-0.837443171069026],[115,167,65,-0.8361343089491129],[115,167,66,-0.834691172465682],[115,167,67,-0.8331924434751272],[115,167,68,-0.8319136556237936],[115,167,69,-0.8307217918336391],[115,167,70,-0.8296159580349922],[115,167,71,-0.8282681312412024],[115,167,72,-0.8264061473309994],[115,167,73,-0.8243127521127462],[115,167,74,-0.8223433569073677],[115,167,75,-0.8209196664392948],[115,167,76,-0.820190398953855],[115,167,77,-0.8197594676166773],[115,167,78,-0.8189640641212463],[115,167,79,-0.8176575470715761],[115,168,64,-0.845255671069026],[115,168,65,-0.8439468089491129],[115,168,66,-0.842503672465682],[115,168,67,-0.8410049434751272],[115,168,68,-0.8397261556237936],[115,168,69,-0.8385342918336391],[115,168,70,-0.8374284580349922],[115,168,71,-0.8360806312412024],[115,168,72,-0.8342186473309994],[115,168,73,-0.8321252521127462],[115,168,74,-0.8301558569073677],[115,168,75,-0.8287321664392948],[115,168,76,-0.828002898953855],[115,168,77,-0.8275719676166773],[115,168,78,-0.8267765641212463],[115,168,79,-0.8254700470715761],[115,169,64,-0.853068171069026],[115,169,65,-0.8517593089491129],[115,169,66,-0.850316172465682],[115,169,67,-0.8488174434751272],[115,169,68,-0.8475386556237936],[115,169,69,-0.8463467918336391],[115,169,70,-0.8452409580349922],[115,169,71,-0.8438931312412024],[115,169,72,-0.8420311473309994],[115,169,73,-0.8399377521127462],[115,169,74,-0.8379683569073677],[115,169,75,-0.8365446664392948],[115,169,76,-0.835815398953855],[115,169,77,-0.8353844676166773],[115,169,78,-0.8345890641212463],[115,169,79,-0.8332825470715761],[115,170,64,-0.860880671069026],[115,170,65,-0.8595718089491129],[115,170,66,-0.858128672465682],[115,170,67,-0.8566299434751272],[115,170,68,-0.8553511556237936],[115,170,69,-0.8541592918336391],[115,170,70,-0.8530534580349922],[115,170,71,-0.8517056312412024],[115,170,72,-0.8498436473309994],[115,170,73,-0.8477502521127462],[115,170,74,-0.8457808569073677],[115,170,75,-0.8443571664392948],[115,170,76,-0.843627898953855],[115,170,77,-0.8431969676166773],[115,170,78,-0.8424015641212463],[115,170,79,-0.8410950470715761],[115,171,64,-0.868693171069026],[115,171,65,-0.8673843089491129],[115,171,66,-0.865941172465682],[115,171,67,-0.8644424434751272],[115,171,68,-0.8631636556237936],[115,171,69,-0.8619717918336391],[115,171,70,-0.8608659580349922],[115,171,71,-0.8595181312412024],[115,171,72,-0.8576561473309994],[115,171,73,-0.8555627521127462],[115,171,74,-0.8535933569073677],[115,171,75,-0.8521696664392948],[115,171,76,-0.851440398953855],[115,171,77,-0.8510094676166773],[115,171,78,-0.8502140641212463],[115,171,79,-0.8489075470715761],[115,172,64,-0.876505671069026],[115,172,65,-0.8751968089491129],[115,172,66,-0.873753672465682],[115,172,67,-0.8722549434751272],[115,172,68,-0.8709761556237936],[115,172,69,-0.8697842918336391],[115,172,70,-0.8686784580349922],[115,172,71,-0.8673306312412024],[115,172,72,-0.8654686473309994],[115,172,73,-0.8633752521127462],[115,172,74,-0.8614058569073677],[115,172,75,-0.8599821664392948],[115,172,76,-0.859252898953855],[115,172,77,-0.8588219676166773],[115,172,78,-0.8580265641212463],[115,172,79,-0.8567200470715761],[115,173,64,-0.884318171069026],[115,173,65,-0.8830093089491129],[115,173,66,-0.881566172465682],[115,173,67,-0.8800674434751272],[115,173,68,-0.8787886556237936],[115,173,69,-0.8775967918336391],[115,173,70,-0.8764909580349922],[115,173,71,-0.8751431312412024],[115,173,72,-0.8732811473309994],[115,173,73,-0.8711877521127462],[115,173,74,-0.8692183569073677],[115,173,75,-0.8677946664392948],[115,173,76,-0.867065398953855],[115,173,77,-0.8666344676166773],[115,173,78,-0.8658390641212463],[115,173,79,-0.8645325470715761],[115,174,64,-0.892130671069026],[115,174,65,-0.8908218089491129],[115,174,66,-0.889378672465682],[115,174,67,-0.8878799434751272],[115,174,68,-0.8866011556237936],[115,174,69,-0.8854092918336391],[115,174,70,-0.8843034580349922],[115,174,71,-0.8829556312412024],[115,174,72,-0.8810936473309994],[115,174,73,-0.8790002521127462],[115,174,74,-0.8770308569073677],[115,174,75,-0.8756071664392948],[115,174,76,-0.874877898953855],[115,174,77,-0.8744469676166773],[115,174,78,-0.8736515641212463],[115,174,79,-0.8723450470715761],[115,175,64,-0.899943171069026],[115,175,65,-0.8986343089491129],[115,175,66,-0.897191172465682],[115,175,67,-0.8956924434751272],[115,175,68,-0.8944136556237936],[115,175,69,-0.8932217918336391],[115,175,70,-0.8921159580349922],[115,175,71,-0.8907681312412024],[115,175,72,-0.8889061473309994],[115,175,73,-0.8868127521127462],[115,175,74,-0.8848433569073677],[115,175,75,-0.8834196664392948],[115,175,76,-0.882690398953855],[115,175,77,-0.8822594676166773],[115,175,78,-0.8814640641212463],[115,175,79,-0.8801575470715761],[115,176,64,-0.907755671069026],[115,176,65,-0.9064468089491129],[115,176,66,-0.905003672465682],[115,176,67,-0.9035049434751272],[115,176,68,-0.9022261556237936],[115,176,69,-0.9010342918336391],[115,176,70,-0.8999284580349922],[115,176,71,-0.8985806312412024],[115,176,72,-0.8967186473309994],[115,176,73,-0.8946252521127462],[115,176,74,-0.8926558569073677],[115,176,75,-0.8912321664392948],[115,176,76,-0.890502898953855],[115,176,77,-0.8900719676166773],[115,176,78,-0.8892765641212463],[115,176,79,-0.8879700470715761],[115,177,64,-0.915568171069026],[115,177,65,-0.9142593089491129],[115,177,66,-0.912816172465682],[115,177,67,-0.9113174434751272],[115,177,68,-0.9100386556237936],[115,177,69,-0.9088467918336391],[115,177,70,-0.9077409580349922],[115,177,71,-0.9063931312412024],[115,177,72,-0.9045311473309994],[115,177,73,-0.9024377521127462],[115,177,74,-0.9004683569073677],[115,177,75,-0.8990446664392948],[115,177,76,-0.898315398953855],[115,177,77,-0.8978844676166773],[115,177,78,-0.8970890641212463],[115,177,79,-0.8957825470715761],[115,178,64,-0.923380671069026],[115,178,65,-0.9220718089491129],[115,178,66,-0.920628672465682],[115,178,67,-0.9191299434751272],[115,178,68,-0.9178511556237936],[115,178,69,-0.9166592918336391],[115,178,70,-0.9155534580349922],[115,178,71,-0.9142056312412024],[115,178,72,-0.9123436473309994],[115,178,73,-0.9102502521127462],[115,178,74,-0.9082808569073677],[115,178,75,-0.9068571664392948],[115,178,76,-0.906127898953855],[115,178,77,-0.9056969676166773],[115,178,78,-0.9049015641212463],[115,178,79,-0.9035950470715761],[115,179,64,-0.931193171069026],[115,179,65,-0.9298843089491129],[115,179,66,-0.928441172465682],[115,179,67,-0.9269424434751272],[115,179,68,-0.9256636556237936],[115,179,69,-0.9244717918336391],[115,179,70,-0.9233659580349922],[115,179,71,-0.9220181312412024],[115,179,72,-0.9201561473309994],[115,179,73,-0.9180627521127462],[115,179,74,-0.9160933569073677],[115,179,75,-0.9146696664392948],[115,179,76,-0.913940398953855],[115,179,77,-0.9135094676166773],[115,179,78,-0.9127140641212463],[115,179,79,-0.9114075470715761],[115,180,64,-0.939005671069026],[115,180,65,-0.9376968089491129],[115,180,66,-0.936253672465682],[115,180,67,-0.9347549434751272],[115,180,68,-0.9334761556237936],[115,180,69,-0.9322842918336391],[115,180,70,-0.9311784580349922],[115,180,71,-0.9298306312412024],[115,180,72,-0.9279686473309994],[115,180,73,-0.9258752521127462],[115,180,74,-0.9239058569073677],[115,180,75,-0.9224821664392948],[115,180,76,-0.921752898953855],[115,180,77,-0.9213219676166773],[115,180,78,-0.9205265641212463],[115,180,79,-0.9192200470715761],[115,181,64,-0.946818171069026],[115,181,65,-0.9455093089491129],[115,181,66,-0.944066172465682],[115,181,67,-0.9425674434751272],[115,181,68,-0.9412886556237936],[115,181,69,-0.9400967918336391],[115,181,70,-0.9389909580349922],[115,181,71,-0.9376431312412024],[115,181,72,-0.9357811473309994],[115,181,73,-0.9336877521127462],[115,181,74,-0.9317183569073677],[115,181,75,-0.9302946664392948],[115,181,76,-0.929565398953855],[115,181,77,-0.9291344676166773],[115,181,78,-0.9283390641212463],[115,181,79,-0.9270325470715761],[115,182,64,-0.954630671069026],[115,182,65,-0.9533218089491129],[115,182,66,-0.951878672465682],[115,182,67,-0.9503799434751272],[115,182,68,-0.9491011556237936],[115,182,69,-0.9479092918336391],[115,182,70,-0.9468034580349922],[115,182,71,-0.9454556312412024],[115,182,72,-0.9435936473309994],[115,182,73,-0.9415002521127462],[115,182,74,-0.9395308569073677],[115,182,75,-0.9381071664392948],[115,182,76,-0.937377898953855],[115,182,77,-0.9369469676166773],[115,182,78,-0.9361515641212463],[115,182,79,-0.9348450470715761],[115,183,64,-0.962443171069026],[115,183,65,-0.9611343089491129],[115,183,66,-0.959691172465682],[115,183,67,-0.9581924434751272],[115,183,68,-0.9569136556237936],[115,183,69,-0.9557217918336391],[115,183,70,-0.9546159580349922],[115,183,71,-0.9532681312412024],[115,183,72,-0.9514061473309994],[115,183,73,-0.9493127521127462],[115,183,74,-0.9473433569073677],[115,183,75,-0.9459196664392948],[115,183,76,-0.945190398953855],[115,183,77,-0.9447594676166773],[115,183,78,-0.9439640641212463],[115,183,79,-0.9426575470715761],[115,184,64,-0.970255671069026],[115,184,65,-0.9689468089491129],[115,184,66,-0.967503672465682],[115,184,67,-0.9660049434751272],[115,184,68,-0.9647261556237936],[115,184,69,-0.9635342918336391],[115,184,70,-0.9624284580349922],[115,184,71,-0.9610806312412024],[115,184,72,-0.9592186473309994],[115,184,73,-0.9571252521127462],[115,184,74,-0.9551558569073677],[115,184,75,-0.9537321664392948],[115,184,76,-0.953002898953855],[115,184,77,-0.9525719676166773],[115,184,78,-0.9517765641212463],[115,184,79,-0.9504700470715761],[115,185,64,-0.978068171069026],[115,185,65,-0.9767593089491129],[115,185,66,-0.975316172465682],[115,185,67,-0.9738174434751272],[115,185,68,-0.9725386556237936],[115,185,69,-0.9713467918336391],[115,185,70,-0.9702409580349922],[115,185,71,-0.9688931312412024],[115,185,72,-0.9670311473309994],[115,185,73,-0.9649377521127462],[115,185,74,-0.9629683569073677],[115,185,75,-0.9615446664392948],[115,185,76,-0.960815398953855],[115,185,77,-0.9603844676166773],[115,185,78,-0.9595890641212463],[115,185,79,-0.9582825470715761],[115,186,64,-0.985880671069026],[115,186,65,-0.9845718089491129],[115,186,66,-0.983128672465682],[115,186,67,-0.9816299434751272],[115,186,68,-0.9803511556237936],[115,186,69,-0.9791592918336391],[115,186,70,-0.9780534580349922],[115,186,71,-0.9767056312412024],[115,186,72,-0.9748436473309994],[115,186,73,-0.9727502521127462],[115,186,74,-0.9707808569073677],[115,186,75,-0.9693571664392948],[115,186,76,-0.968627898953855],[115,186,77,-0.9681969676166773],[115,186,78,-0.9674015641212463],[115,186,79,-0.9660950470715761],[115,187,64,-0.993693171069026],[115,187,65,-0.9923843089491129],[115,187,66,-0.990941172465682],[115,187,67,-0.9894424434751272],[115,187,68,-0.9881636556237936],[115,187,69,-0.9869717918336391],[115,187,70,-0.9858659580349922],[115,187,71,-0.9845181312412024],[115,187,72,-0.9826561473309994],[115,187,73,-0.9805627521127462],[115,187,74,-0.9785933569073677],[115,187,75,-0.9771696664392948],[115,187,76,-0.976440398953855],[115,187,77,-0.9760094676166773],[115,187,78,-0.9752140641212463],[115,187,79,-0.9739075470715761],[115,188,64,-1.001505671069026],[115,188,65,-1.000196808949113],[115,188,66,-0.998753672465682],[115,188,67,-0.9972549434751272],[115,188,68,-0.9959761556237936],[115,188,69,-0.9947842918336391],[115,188,70,-0.9936784580349922],[115,188,71,-0.9923306312412024],[115,188,72,-0.9904686473309994],[115,188,73,-0.9883752521127462],[115,188,74,-0.9864058569073677],[115,188,75,-0.9849821664392948],[115,188,76,-0.984252898953855],[115,188,77,-0.9838219676166773],[115,188,78,-0.9830265641212463],[115,188,79,-0.9817200470715761],[115,189,64,-1.009318171069026],[115,189,65,-1.008009308949113],[115,189,66,-1.006566172465682],[115,189,67,-1.0050674434751272],[115,189,68,-1.0037886556237936],[115,189,69,-1.0025967918336391],[115,189,70,-1.0014909580349922],[115,189,71,-1.0001431312412024],[115,189,72,-0.9982811473309994],[115,189,73,-0.9961877521127462],[115,189,74,-0.9942183569073677],[115,189,75,-0.9927946664392948],[115,189,76,-0.992065398953855],[115,189,77,-0.9916344676166773],[115,189,78,-0.9908390641212463],[115,189,79,-0.9895325470715761],[115,190,64,-1.017130671069026],[115,190,65,-1.015821808949113],[115,190,66,-1.014378672465682],[115,190,67,-1.0128799434751272],[115,190,68,-1.0116011556237936],[115,190,69,-1.0104092918336391],[115,190,70,-1.0093034580349922],[115,190,71,-1.0079556312412024],[115,190,72,-1.0060936473309994],[115,190,73,-1.0040002521127462],[115,190,74,-1.0020308569073677],[115,190,75,-1.0006071664392948],[115,190,76,-0.999877898953855],[115,190,77,-0.9994469676166773],[115,190,78,-0.9986515641212463],[115,190,79,-0.9973450470715761],[115,191,64,-1.024943171069026],[115,191,65,-1.023634308949113],[115,191,66,-1.022191172465682],[115,191,67,-1.0206924434751272],[115,191,68,-1.0194136556237936],[115,191,69,-1.0182217918336391],[115,191,70,-1.0171159580349922],[115,191,71,-1.0157681312412024],[115,191,72,-1.0139061473309994],[115,191,73,-1.0118127521127462],[115,191,74,-1.0098433569073677],[115,191,75,-1.0084196664392948],[115,191,76,-1.007690398953855],[115,191,77,-1.0072594676166773],[115,191,78,-1.0064640641212463],[115,191,79,-1.0051575470715761],[115,192,64,-1.032755671069026],[115,192,65,-1.031446808949113],[115,192,66,-1.030003672465682],[115,192,67,-1.0285049434751272],[115,192,68,-1.0272261556237936],[115,192,69,-1.0260342918336391],[115,192,70,-1.0249284580349922],[115,192,71,-1.0235806312412024],[115,192,72,-1.0217186473309994],[115,192,73,-1.0196252521127462],[115,192,74,-1.0176558569073677],[115,192,75,-1.0162321664392948],[115,192,76,-1.015502898953855],[115,192,77,-1.0150719676166773],[115,192,78,-1.0142765641212463],[115,192,79,-1.0129700470715761],[115,193,64,-1.040568171069026],[115,193,65,-1.039259308949113],[115,193,66,-1.037816172465682],[115,193,67,-1.0363174434751272],[115,193,68,-1.0350386556237936],[115,193,69,-1.0338467918336391],[115,193,70,-1.0327409580349922],[115,193,71,-1.0313931312412024],[115,193,72,-1.0295311473309994],[115,193,73,-1.0274377521127462],[115,193,74,-1.0254683569073677],[115,193,75,-1.0240446664392948],[115,193,76,-1.023315398953855],[115,193,77,-1.0228844676166773],[115,193,78,-1.0220890641212463],[115,193,79,-1.0207825470715761],[115,194,64,-1.048380671069026],[115,194,65,-1.047071808949113],[115,194,66,-1.045628672465682],[115,194,67,-1.0441299434751272],[115,194,68,-1.0428511556237936],[115,194,69,-1.0416592918336391],[115,194,70,-1.0405534580349922],[115,194,71,-1.0392056312412024],[115,194,72,-1.0373436473309994],[115,194,73,-1.0352502521127462],[115,194,74,-1.0332808569073677],[115,194,75,-1.0318571664392948],[115,194,76,-1.031127898953855],[115,194,77,-1.0306969676166773],[115,194,78,-1.0299015641212463],[115,194,79,-1.0285950470715761],[115,195,64,-1.056193171069026],[115,195,65,-1.054884308949113],[115,195,66,-1.053441172465682],[115,195,67,-1.0519424434751272],[115,195,68,-1.0506636556237936],[115,195,69,-1.0494717918336391],[115,195,70,-1.0483659580349922],[115,195,71,-1.0470181312412024],[115,195,72,-1.0451561473309994],[115,195,73,-1.0430627521127462],[115,195,74,-1.0410933569073677],[115,195,75,-1.0396696664392948],[115,195,76,-1.038940398953855],[115,195,77,-1.0385094676166773],[115,195,78,-1.0377140641212463],[115,195,79,-1.0364075470715761],[115,196,64,-1.064005671069026],[115,196,65,-1.062696808949113],[115,196,66,-1.061253672465682],[115,196,67,-1.0597549434751272],[115,196,68,-1.0584761556237936],[115,196,69,-1.0572842918336391],[115,196,70,-1.0561784580349922],[115,196,71,-1.0548306312412024],[115,196,72,-1.0529686473309994],[115,196,73,-1.0508752521127462],[115,196,74,-1.0489058569073677],[115,196,75,-1.0474821664392948],[115,196,76,-1.046752898953855],[115,196,77,-1.0463219676166773],[115,196,78,-1.0455265641212463],[115,196,79,-1.0442200470715761],[115,197,64,-1.071818171069026],[115,197,65,-1.070509308949113],[115,197,66,-1.069066172465682],[115,197,67,-1.0675674434751272],[115,197,68,-1.0662886556237936],[115,197,69,-1.0650967918336391],[115,197,70,-1.0639909580349922],[115,197,71,-1.0626431312412024],[115,197,72,-1.0607811473309994],[115,197,73,-1.0586877521127462],[115,197,74,-1.0567183569073677],[115,197,75,-1.0552946664392948],[115,197,76,-1.054565398953855],[115,197,77,-1.0541344676166773],[115,197,78,-1.0533390641212463],[115,197,79,-1.0520325470715761],[115,198,64,-1.079630671069026],[115,198,65,-1.078321808949113],[115,198,66,-1.076878672465682],[115,198,67,-1.0753799434751272],[115,198,68,-1.0741011556237936],[115,198,69,-1.0729092918336391],[115,198,70,-1.0718034580349922],[115,198,71,-1.0704556312412024],[115,198,72,-1.0685936473309994],[115,198,73,-1.0665002521127462],[115,198,74,-1.0645308569073677],[115,198,75,-1.0631071664392948],[115,198,76,-1.062377898953855],[115,198,77,-1.0619469676166773],[115,198,78,-1.0611515641212463],[115,198,79,-1.0598450470715761],[115,199,64,-1.087443171069026],[115,199,65,-1.086134308949113],[115,199,66,-1.084691172465682],[115,199,67,-1.0831924434751272],[115,199,68,-1.0819136556237936],[115,199,69,-1.0807217918336391],[115,199,70,-1.0796159580349922],[115,199,71,-1.0782681312412024],[115,199,72,-1.0764061473309994],[115,199,73,-1.0743127521127462],[115,199,74,-1.0723433569073677],[115,199,75,-1.0709196664392948],[115,199,76,-1.070190398953855],[115,199,77,-1.0697594676166773],[115,199,78,-1.0689640641212463],[115,199,79,-1.0676575470715761],[115,200,64,-1.095255671069026],[115,200,65,-1.093946808949113],[115,200,66,-1.092503672465682],[115,200,67,-1.0910049434751272],[115,200,68,-1.0897261556237936],[115,200,69,-1.0885342918336391],[115,200,70,-1.0874284580349922],[115,200,71,-1.0860806312412024],[115,200,72,-1.0842186473309994],[115,200,73,-1.0821252521127462],[115,200,74,-1.0801558569073677],[115,200,75,-1.0787321664392948],[115,200,76,-1.078002898953855],[115,200,77,-1.0775719676166773],[115,200,78,-1.0767765641212463],[115,200,79,-1.0754700470715761],[115,201,64,-1.103068171069026],[115,201,65,-1.101759308949113],[115,201,66,-1.100316172465682],[115,201,67,-1.0988174434751272],[115,201,68,-1.0975386556237936],[115,201,69,-1.0963467918336391],[115,201,70,-1.0952409580349922],[115,201,71,-1.0938931312412024],[115,201,72,-1.0920311473309994],[115,201,73,-1.0899377521127462],[115,201,74,-1.0879683569073677],[115,201,75,-1.0865446664392948],[115,201,76,-1.085815398953855],[115,201,77,-1.0853844676166773],[115,201,78,-1.0845890641212463],[115,201,79,-1.0832825470715761],[115,202,64,-1.110880671069026],[115,202,65,-1.109571808949113],[115,202,66,-1.108128672465682],[115,202,67,-1.1066299434751272],[115,202,68,-1.1053511556237936],[115,202,69,-1.1041592918336391],[115,202,70,-1.1030534580349922],[115,202,71,-1.1017056312412024],[115,202,72,-1.0998436473309994],[115,202,73,-1.0977502521127462],[115,202,74,-1.0957808569073677],[115,202,75,-1.0943571664392948],[115,202,76,-1.093627898953855],[115,202,77,-1.0931969676166773],[115,202,78,-1.0924015641212463],[115,202,79,-1.0910950470715761],[115,203,64,-1.118693171069026],[115,203,65,-1.117384308949113],[115,203,66,-1.115941172465682],[115,203,67,-1.1144424434751272],[115,203,68,-1.1131636556237936],[115,203,69,-1.1119717918336391],[115,203,70,-1.1108659580349922],[115,203,71,-1.1095181312412024],[115,203,72,-1.1076561473309994],[115,203,73,-1.1055627521127462],[115,203,74,-1.1035933569073677],[115,203,75,-1.1021696664392948],[115,203,76,-1.101440398953855],[115,203,77,-1.1010094676166773],[115,203,78,-1.1002140641212463],[115,203,79,-1.0989075470715761],[115,204,64,-1.126505671069026],[115,204,65,-1.125196808949113],[115,204,66,-1.123753672465682],[115,204,67,-1.1222549434751272],[115,204,68,-1.1209761556237936],[115,204,69,-1.1197842918336391],[115,204,70,-1.1186784580349922],[115,204,71,-1.1173306312412024],[115,204,72,-1.1154686473309994],[115,204,73,-1.1133752521127462],[115,204,74,-1.1114058569073677],[115,204,75,-1.1099821664392948],[115,204,76,-1.109252898953855],[115,204,77,-1.1088219676166773],[115,204,78,-1.1080265641212463],[115,204,79,-1.1067200470715761],[115,205,64,-1.134318171069026],[115,205,65,-1.133009308949113],[115,205,66,-1.131566172465682],[115,205,67,-1.1300674434751272],[115,205,68,-1.1287886556237936],[115,205,69,-1.1275967918336391],[115,205,70,-1.1264909580349922],[115,205,71,-1.1251431312412024],[115,205,72,-1.1232811473309994],[115,205,73,-1.1211877521127462],[115,205,74,-1.1192183569073677],[115,205,75,-1.1177946664392948],[115,205,76,-1.117065398953855],[115,205,77,-1.1166344676166773],[115,205,78,-1.1158390641212463],[115,205,79,-1.1145325470715761],[115,206,64,-1.142130671069026],[115,206,65,-1.140821808949113],[115,206,66,-1.139378672465682],[115,206,67,-1.1378799434751272],[115,206,68,-1.1366011556237936],[115,206,69,-1.1354092918336391],[115,206,70,-1.1343034580349922],[115,206,71,-1.1329556312412024],[115,206,72,-1.1310936473309994],[115,206,73,-1.1290002521127462],[115,206,74,-1.1270308569073677],[115,206,75,-1.1256071664392948],[115,206,76,-1.124877898953855],[115,206,77,-1.1244469676166773],[115,206,78,-1.1236515641212463],[115,206,79,-1.1223450470715761],[115,207,64,-1.149943171069026],[115,207,65,-1.148634308949113],[115,207,66,-1.147191172465682],[115,207,67,-1.1456924434751272],[115,207,68,-1.1444136556237936],[115,207,69,-1.1432217918336391],[115,207,70,-1.1421159580349922],[115,207,71,-1.1407681312412024],[115,207,72,-1.1389061473309994],[115,207,73,-1.1368127521127462],[115,207,74,-1.1348433569073677],[115,207,75,-1.1334196664392948],[115,207,76,-1.132690398953855],[115,207,77,-1.1322594676166773],[115,207,78,-1.1314640641212463],[115,207,79,-1.1301575470715761],[115,208,64,-1.157755671069026],[115,208,65,-1.156446808949113],[115,208,66,-1.155003672465682],[115,208,67,-1.1535049434751272],[115,208,68,-1.1522261556237936],[115,208,69,-1.1510342918336391],[115,208,70,-1.1499284580349922],[115,208,71,-1.1485806312412024],[115,208,72,-1.1467186473309994],[115,208,73,-1.1446252521127462],[115,208,74,-1.1426558569073677],[115,208,75,-1.1412321664392948],[115,208,76,-1.140502898953855],[115,208,77,-1.1400719676166773],[115,208,78,-1.1392765641212463],[115,208,79,-1.1379700470715761],[115,209,64,-1.165568171069026],[115,209,65,-1.164259308949113],[115,209,66,-1.162816172465682],[115,209,67,-1.1613174434751272],[115,209,68,-1.1600386556237936],[115,209,69,-1.1588467918336391],[115,209,70,-1.1577409580349922],[115,209,71,-1.1563931312412024],[115,209,72,-1.1545311473309994],[115,209,73,-1.1524377521127462],[115,209,74,-1.1504683569073677],[115,209,75,-1.1490446664392948],[115,209,76,-1.148315398953855],[115,209,77,-1.1478844676166773],[115,209,78,-1.1470890641212463],[115,209,79,-1.1457825470715761],[115,210,64,-1.173380671069026],[115,210,65,-1.172071808949113],[115,210,66,-1.170628672465682],[115,210,67,-1.1691299434751272],[115,210,68,-1.1678511556237936],[115,210,69,-1.1666592918336391],[115,210,70,-1.1655534580349922],[115,210,71,-1.1642056312412024],[115,210,72,-1.1623436473309994],[115,210,73,-1.1602502521127462],[115,210,74,-1.1582808569073677],[115,210,75,-1.1568571664392948],[115,210,76,-1.156127898953855],[115,210,77,-1.1556969676166773],[115,210,78,-1.1549015641212463],[115,210,79,-1.1535950470715761],[115,211,64,-1.181193171069026],[115,211,65,-1.179884308949113],[115,211,66,-1.178441172465682],[115,211,67,-1.1769424434751272],[115,211,68,-1.1756636556237936],[115,211,69,-1.1744717918336391],[115,211,70,-1.1733659580349922],[115,211,71,-1.1720181312412024],[115,211,72,-1.1701561473309994],[115,211,73,-1.1680627521127462],[115,211,74,-1.1660933569073677],[115,211,75,-1.1646696664392948],[115,211,76,-1.163940398953855],[115,211,77,-1.1635094676166773],[115,211,78,-1.1627140641212463],[115,211,79,-1.1614075470715761],[115,212,64,-1.189005671069026],[115,212,65,-1.187696808949113],[115,212,66,-1.186253672465682],[115,212,67,-1.1847549434751272],[115,212,68,-1.1834761556237936],[115,212,69,-1.1822842918336391],[115,212,70,-1.1811784580349922],[115,212,71,-1.1798306312412024],[115,212,72,-1.1779686473309994],[115,212,73,-1.1758752521127462],[115,212,74,-1.1739058569073677],[115,212,75,-1.1724821664392948],[115,212,76,-1.171752898953855],[115,212,77,-1.1713219676166773],[115,212,78,-1.1705265641212463],[115,212,79,-1.1692200470715761],[115,213,64,-1.196818171069026],[115,213,65,-1.195509308949113],[115,213,66,-1.194066172465682],[115,213,67,-1.1925674434751272],[115,213,68,-1.1912886556237936],[115,213,69,-1.1900967918336391],[115,213,70,-1.1889909580349922],[115,213,71,-1.1876431312412024],[115,213,72,-1.1857811473309994],[115,213,73,-1.1836877521127462],[115,213,74,-1.1817183569073677],[115,213,75,-1.1802946664392948],[115,213,76,-1.179565398953855],[115,213,77,-1.1791344676166773],[115,213,78,-1.1783390641212463],[115,213,79,-1.1770325470715761],[115,214,64,-1.204630671069026],[115,214,65,-1.203321808949113],[115,214,66,-1.201878672465682],[115,214,67,-1.2003799434751272],[115,214,68,-1.1991011556237936],[115,214,69,-1.1979092918336391],[115,214,70,-1.1968034580349922],[115,214,71,-1.1954556312412024],[115,214,72,-1.1935936473309994],[115,214,73,-1.1915002521127462],[115,214,74,-1.1895308569073677],[115,214,75,-1.1881071664392948],[115,214,76,-1.187377898953855],[115,214,77,-1.1869469676166773],[115,214,78,-1.1861515641212463],[115,214,79,-1.1848450470715761],[115,215,64,-1.212443171069026],[115,215,65,-1.211134308949113],[115,215,66,-1.209691172465682],[115,215,67,-1.2081924434751272],[115,215,68,-1.2069136556237936],[115,215,69,-1.2057217918336391],[115,215,70,-1.2046159580349922],[115,215,71,-1.2032681312412024],[115,215,72,-1.2014061473309994],[115,215,73,-1.1993127521127462],[115,215,74,-1.1973433569073677],[115,215,75,-1.1959196664392948],[115,215,76,-1.195190398953855],[115,215,77,-1.1947594676166773],[115,215,78,-1.1939640641212463],[115,215,79,-1.1926575470715761],[115,216,64,-1.220255671069026],[115,216,65,-1.218946808949113],[115,216,66,-1.217503672465682],[115,216,67,-1.2160049434751272],[115,216,68,-1.2147261556237936],[115,216,69,-1.2135342918336391],[115,216,70,-1.2124284580349922],[115,216,71,-1.2110806312412024],[115,216,72,-1.2092186473309994],[115,216,73,-1.2071252521127462],[115,216,74,-1.2051558569073677],[115,216,75,-1.2037321664392948],[115,216,76,-1.203002898953855],[115,216,77,-1.2025719676166773],[115,216,78,-1.2017765641212463],[115,216,79,-1.2004700470715761],[115,217,64,-1.228068171069026],[115,217,65,-1.226759308949113],[115,217,66,-1.225316172465682],[115,217,67,-1.2238174434751272],[115,217,68,-1.2225386556237936],[115,217,69,-1.2213467918336391],[115,217,70,-1.2202409580349922],[115,217,71,-1.2188931312412024],[115,217,72,-1.2170311473309994],[115,217,73,-1.2149377521127462],[115,217,74,-1.2129683569073677],[115,217,75,-1.2115446664392948],[115,217,76,-1.210815398953855],[115,217,77,-1.2103844676166773],[115,217,78,-1.2095890641212463],[115,217,79,-1.2082825470715761],[115,218,64,-1.235880671069026],[115,218,65,-1.234571808949113],[115,218,66,-1.233128672465682],[115,218,67,-1.2316299434751272],[115,218,68,-1.2303511556237936],[115,218,69,-1.2291592918336391],[115,218,70,-1.2280534580349922],[115,218,71,-1.2267056312412024],[115,218,72,-1.2248436473309994],[115,218,73,-1.2227502521127462],[115,218,74,-1.2207808569073677],[115,218,75,-1.2193571664392948],[115,218,76,-1.218627898953855],[115,218,77,-1.2181969676166773],[115,218,78,-1.2174015641212463],[115,218,79,-1.2160950470715761],[115,219,64,-1.243693171069026],[115,219,65,-1.242384308949113],[115,219,66,-1.240941172465682],[115,219,67,-1.2394424434751272],[115,219,68,-1.2381636556237936],[115,219,69,-1.2369717918336391],[115,219,70,-1.2358659580349922],[115,219,71,-1.2345181312412024],[115,219,72,-1.2326561473309994],[115,219,73,-1.2305627521127462],[115,219,74,-1.2285933569073677],[115,219,75,-1.2271696664392948],[115,219,76,-1.226440398953855],[115,219,77,-1.2260094676166773],[115,219,78,-1.2252140641212463],[115,219,79,-1.2239075470715761],[115,220,64,-1.251505671069026],[115,220,65,-1.250196808949113],[115,220,66,-1.248753672465682],[115,220,67,-1.2472549434751272],[115,220,68,-1.2459761556237936],[115,220,69,-1.2447842918336391],[115,220,70,-1.2436784580349922],[115,220,71,-1.2423306312412024],[115,220,72,-1.2404686473309994],[115,220,73,-1.2383752521127462],[115,220,74,-1.2364058569073677],[115,220,75,-1.2349821664392948],[115,220,76,-1.234252898953855],[115,220,77,-1.2338219676166773],[115,220,78,-1.2330265641212463],[115,220,79,-1.2317200470715761],[115,221,64,-1.259318171069026],[115,221,65,-1.258009308949113],[115,221,66,-1.256566172465682],[115,221,67,-1.2550674434751272],[115,221,68,-1.2537886556237936],[115,221,69,-1.2525967918336391],[115,221,70,-1.2514909580349922],[115,221,71,-1.2501431312412024],[115,221,72,-1.2482811473309994],[115,221,73,-1.2461877521127462],[115,221,74,-1.2442183569073677],[115,221,75,-1.2427946664392948],[115,221,76,-1.242065398953855],[115,221,77,-1.2416344676166773],[115,221,78,-1.2408390641212463],[115,221,79,-1.2395325470715761],[115,222,64,-1.267130671069026],[115,222,65,-1.265821808949113],[115,222,66,-1.264378672465682],[115,222,67,-1.2628799434751272],[115,222,68,-1.2616011556237936],[115,222,69,-1.2604092918336391],[115,222,70,-1.2593034580349922],[115,222,71,-1.2579556312412024],[115,222,72,-1.2560936473309994],[115,222,73,-1.2540002521127462],[115,222,74,-1.2520308569073677],[115,222,75,-1.2506071664392948],[115,222,76,-1.249877898953855],[115,222,77,-1.2494469676166773],[115,222,78,-1.2486515641212463],[115,222,79,-1.2473450470715761],[115,223,64,-1.274943171069026],[115,223,65,-1.273634308949113],[115,223,66,-1.272191172465682],[115,223,67,-1.2706924434751272],[115,223,68,-1.2694136556237936],[115,223,69,-1.2682217918336391],[115,223,70,-1.2671159580349922],[115,223,71,-1.2657681312412024],[115,223,72,-1.2639061473309994],[115,223,73,-1.2618127521127462],[115,223,74,-1.2598433569073677],[115,223,75,-1.2584196664392948],[115,223,76,-1.257690398953855],[115,223,77,-1.2572594676166773],[115,223,78,-1.2564640641212463],[115,223,79,-1.2551575470715761],[115,224,64,-1.282755671069026],[115,224,65,-1.281446808949113],[115,224,66,-1.280003672465682],[115,224,67,-1.2785049434751272],[115,224,68,-1.2772261556237936],[115,224,69,-1.2760342918336391],[115,224,70,-1.2749284580349922],[115,224,71,-1.2735806312412024],[115,224,72,-1.2717186473309994],[115,224,73,-1.2696252521127462],[115,224,74,-1.2676558569073677],[115,224,75,-1.2662321664392948],[115,224,76,-1.265502898953855],[115,224,77,-1.2650719676166773],[115,224,78,-1.2642765641212463],[115,224,79,-1.2629700470715761],[115,225,64,-1.290568171069026],[115,225,65,-1.289259308949113],[115,225,66,-1.287816172465682],[115,225,67,-1.2863174434751272],[115,225,68,-1.2850386556237936],[115,225,69,-1.2838467918336391],[115,225,70,-1.2827409580349922],[115,225,71,-1.2813931312412024],[115,225,72,-1.2795311473309994],[115,225,73,-1.2774377521127462],[115,225,74,-1.2754683569073677],[115,225,75,-1.2740446664392948],[115,225,76,-1.273315398953855],[115,225,77,-1.2728844676166773],[115,225,78,-1.2720890641212463],[115,225,79,-1.2707825470715761],[115,226,64,-1.298380671069026],[115,226,65,-1.297071808949113],[115,226,66,-1.295628672465682],[115,226,67,-1.2941299434751272],[115,226,68,-1.2928511556237936],[115,226,69,-1.2916592918336391],[115,226,70,-1.2905534580349922],[115,226,71,-1.2892056312412024],[115,226,72,-1.2873436473309994],[115,226,73,-1.2852502521127462],[115,226,74,-1.2832808569073677],[115,226,75,-1.2818571664392948],[115,226,76,-1.281127898953855],[115,226,77,-1.2806969676166773],[115,226,78,-1.2799015641212463],[115,226,79,-1.2785950470715761],[115,227,64,-1.306193171069026],[115,227,65,-1.304884308949113],[115,227,66,-1.303441172465682],[115,227,67,-1.3019424434751272],[115,227,68,-1.3006636556237936],[115,227,69,-1.2994717918336391],[115,227,70,-1.2983659580349922],[115,227,71,-1.2970181312412024],[115,227,72,-1.2951561473309994],[115,227,73,-1.2930627521127462],[115,227,74,-1.2910933569073677],[115,227,75,-1.2896696664392948],[115,227,76,-1.288940398953855],[115,227,77,-1.2885094676166773],[115,227,78,-1.2877140641212463],[115,227,79,-1.2864075470715761],[115,228,64,-1.314005671069026],[115,228,65,-1.312696808949113],[115,228,66,-1.311253672465682],[115,228,67,-1.3097549434751272],[115,228,68,-1.3084761556237936],[115,228,69,-1.3072842918336391],[115,228,70,-1.3061784580349922],[115,228,71,-1.3048306312412024],[115,228,72,-1.3029686473309994],[115,228,73,-1.3008752521127462],[115,228,74,-1.2989058569073677],[115,228,75,-1.2974821664392948],[115,228,76,-1.296752898953855],[115,228,77,-1.2963219676166773],[115,228,78,-1.2955265641212463],[115,228,79,-1.2942200470715761],[115,229,64,-1.321818171069026],[115,229,65,-1.320509308949113],[115,229,66,-1.319066172465682],[115,229,67,-1.3175674434751272],[115,229,68,-1.3162886556237936],[115,229,69,-1.3150967918336391],[115,229,70,-1.3139909580349922],[115,229,71,-1.3126431312412024],[115,229,72,-1.3107811473309994],[115,229,73,-1.3086877521127462],[115,229,74,-1.3067183569073677],[115,229,75,-1.3052946664392948],[115,229,76,-1.304565398953855],[115,229,77,-1.3041344676166773],[115,229,78,-1.3033390641212463],[115,229,79,-1.3020325470715761],[115,230,64,-1.329630671069026],[115,230,65,-1.328321808949113],[115,230,66,-1.326878672465682],[115,230,67,-1.3253799434751272],[115,230,68,-1.3241011556237936],[115,230,69,-1.3229092918336391],[115,230,70,-1.3218034580349922],[115,230,71,-1.3204556312412024],[115,230,72,-1.3185936473309994],[115,230,73,-1.3165002521127462],[115,230,74,-1.3145308569073677],[115,230,75,-1.3131071664392948],[115,230,76,-1.312377898953855],[115,230,77,-1.3119469676166773],[115,230,78,-1.3111515641212463],[115,230,79,-1.3098450470715761],[115,231,64,-1.337443171069026],[115,231,65,-1.336134308949113],[115,231,66,-1.334691172465682],[115,231,67,-1.3331924434751272],[115,231,68,-1.3319136556237936],[115,231,69,-1.3307217918336391],[115,231,70,-1.3296159580349922],[115,231,71,-1.3282681312412024],[115,231,72,-1.3264061473309994],[115,231,73,-1.3243127521127462],[115,231,74,-1.3223433569073677],[115,231,75,-1.3209196664392948],[115,231,76,-1.320190398953855],[115,231,77,-1.3197594676166773],[115,231,78,-1.3189640641212463],[115,231,79,-1.3176575470715761],[115,232,64,-1.345255671069026],[115,232,65,-1.343946808949113],[115,232,66,-1.342503672465682],[115,232,67,-1.3410049434751272],[115,232,68,-1.3397261556237936],[115,232,69,-1.3385342918336391],[115,232,70,-1.3374284580349922],[115,232,71,-1.3360806312412024],[115,232,72,-1.3342186473309994],[115,232,73,-1.3321252521127462],[115,232,74,-1.3301558569073677],[115,232,75,-1.3287321664392948],[115,232,76,-1.328002898953855],[115,232,77,-1.3275719676166773],[115,232,78,-1.3267765641212463],[115,232,79,-1.3254700470715761],[115,233,64,-1.353068171069026],[115,233,65,-1.351759308949113],[115,233,66,-1.350316172465682],[115,233,67,-1.3488174434751272],[115,233,68,-1.3475386556237936],[115,233,69,-1.3463467918336391],[115,233,70,-1.3452409580349922],[115,233,71,-1.3438931312412024],[115,233,72,-1.3420311473309994],[115,233,73,-1.3399377521127462],[115,233,74,-1.3379683569073677],[115,233,75,-1.3365446664392948],[115,233,76,-1.335815398953855],[115,233,77,-1.3353844676166773],[115,233,78,-1.3345890641212463],[115,233,79,-1.3332825470715761],[115,234,64,-1.360880671069026],[115,234,65,-1.359571808949113],[115,234,66,-1.358128672465682],[115,234,67,-1.3566299434751272],[115,234,68,-1.3553511556237936],[115,234,69,-1.3541592918336391],[115,234,70,-1.3530534580349922],[115,234,71,-1.3517056312412024],[115,234,72,-1.3498436473309994],[115,234,73,-1.3477502521127462],[115,234,74,-1.3457808569073677],[115,234,75,-1.3443571664392948],[115,234,76,-1.343627898953855],[115,234,77,-1.3431969676166773],[115,234,78,-1.3424015641212463],[115,234,79,-1.3410950470715761],[115,235,64,-1.368693171069026],[115,235,65,-1.367384308949113],[115,235,66,-1.365941172465682],[115,235,67,-1.3644424434751272],[115,235,68,-1.3631636556237936],[115,235,69,-1.3619717918336391],[115,235,70,-1.3608659580349922],[115,235,71,-1.3595181312412024],[115,235,72,-1.3576561473309994],[115,235,73,-1.3555627521127462],[115,235,74,-1.3535933569073677],[115,235,75,-1.3521696664392948],[115,235,76,-1.351440398953855],[115,235,77,-1.3510094676166773],[115,235,78,-1.3502140641212463],[115,235,79,-1.3489075470715761],[115,236,64,-1.376505671069026],[115,236,65,-1.375196808949113],[115,236,66,-1.373753672465682],[115,236,67,-1.3722549434751272],[115,236,68,-1.3709761556237936],[115,236,69,-1.3697842918336391],[115,236,70,-1.3686784580349922],[115,236,71,-1.3673306312412024],[115,236,72,-1.3654686473309994],[115,236,73,-1.3633752521127462],[115,236,74,-1.3614058569073677],[115,236,75,-1.3599821664392948],[115,236,76,-1.359252898953855],[115,236,77,-1.3588219676166773],[115,236,78,-1.3580265641212463],[115,236,79,-1.3567200470715761],[115,237,64,-1.384318171069026],[115,237,65,-1.383009308949113],[115,237,66,-1.381566172465682],[115,237,67,-1.3800674434751272],[115,237,68,-1.3787886556237936],[115,237,69,-1.3775967918336391],[115,237,70,-1.3764909580349922],[115,237,71,-1.3751431312412024],[115,237,72,-1.3732811473309994],[115,237,73,-1.3711877521127462],[115,237,74,-1.3692183569073677],[115,237,75,-1.3677946664392948],[115,237,76,-1.367065398953855],[115,237,77,-1.3666344676166773],[115,237,78,-1.3658390641212463],[115,237,79,-1.3645325470715761],[115,238,64,-1.392130671069026],[115,238,65,-1.390821808949113],[115,238,66,-1.389378672465682],[115,238,67,-1.3878799434751272],[115,238,68,-1.3866011556237936],[115,238,69,-1.3854092918336391],[115,238,70,-1.3843034580349922],[115,238,71,-1.3829556312412024],[115,238,72,-1.3810936473309994],[115,238,73,-1.3790002521127462],[115,238,74,-1.3770308569073677],[115,238,75,-1.3756071664392948],[115,238,76,-1.374877898953855],[115,238,77,-1.3744469676166773],[115,238,78,-1.3736515641212463],[115,238,79,-1.3723450470715761],[115,239,64,-1.399943171069026],[115,239,65,-1.398634308949113],[115,239,66,-1.397191172465682],[115,239,67,-1.3956924434751272],[115,239,68,-1.3944136556237936],[115,239,69,-1.3932217918336391],[115,239,70,-1.3921159580349922],[115,239,71,-1.3907681312412024],[115,239,72,-1.3889061473309994],[115,239,73,-1.3868127521127462],[115,239,74,-1.3848433569073677],[115,239,75,-1.3834196664392948],[115,239,76,-1.382690398953855],[115,239,77,-1.3822594676166773],[115,239,78,-1.3814640641212463],[115,239,79,-1.3801575470715761],[115,240,64,-1.407755671069026],[115,240,65,-1.406446808949113],[115,240,66,-1.405003672465682],[115,240,67,-1.4035049434751272],[115,240,68,-1.4022261556237936],[115,240,69,-1.4010342918336391],[115,240,70,-1.3999284580349922],[115,240,71,-1.3985806312412024],[115,240,72,-1.3967186473309994],[115,240,73,-1.3946252521127462],[115,240,74,-1.3926558569073677],[115,240,75,-1.3912321664392948],[115,240,76,-1.390502898953855],[115,240,77,-1.3900719676166773],[115,240,78,-1.3892765641212463],[115,240,79,-1.3879700470715761],[115,241,64,-1.415568171069026],[115,241,65,-1.414259308949113],[115,241,66,-1.412816172465682],[115,241,67,-1.4113174434751272],[115,241,68,-1.4100386556237936],[115,241,69,-1.4088467918336391],[115,241,70,-1.4077409580349922],[115,241,71,-1.4063931312412024],[115,241,72,-1.4045311473309994],[115,241,73,-1.4024377521127462],[115,241,74,-1.4004683569073677],[115,241,75,-1.3990446664392948],[115,241,76,-1.398315398953855],[115,241,77,-1.3978844676166773],[115,241,78,-1.3970890641212463],[115,241,79,-1.3957825470715761],[115,242,64,-1.423380671069026],[115,242,65,-1.422071808949113],[115,242,66,-1.420628672465682],[115,242,67,-1.4191299434751272],[115,242,68,-1.4178511556237936],[115,242,69,-1.4166592918336391],[115,242,70,-1.4155534580349922],[115,242,71,-1.4142056312412024],[115,242,72,-1.4123436473309994],[115,242,73,-1.4102502521127462],[115,242,74,-1.4082808569073677],[115,242,75,-1.4068571664392948],[115,242,76,-1.406127898953855],[115,242,77,-1.4056969676166773],[115,242,78,-1.4049015641212463],[115,242,79,-1.4035950470715761],[115,243,64,-1.431193171069026],[115,243,65,-1.429884308949113],[115,243,66,-1.428441172465682],[115,243,67,-1.4269424434751272],[115,243,68,-1.4256636556237936],[115,243,69,-1.4244717918336391],[115,243,70,-1.4233659580349922],[115,243,71,-1.4220181312412024],[115,243,72,-1.4201561473309994],[115,243,73,-1.4180627521127462],[115,243,74,-1.4160933569073677],[115,243,75,-1.4146696664392948],[115,243,76,-1.413940398953855],[115,243,77,-1.4135094676166773],[115,243,78,-1.4127140641212463],[115,243,79,-1.4114075470715761],[115,244,64,-1.439005671069026],[115,244,65,-1.437696808949113],[115,244,66,-1.436253672465682],[115,244,67,-1.4347549434751272],[115,244,68,-1.4334761556237936],[115,244,69,-1.4322842918336391],[115,244,70,-1.4311784580349922],[115,244,71,-1.4298306312412024],[115,244,72,-1.4279686473309994],[115,244,73,-1.4258752521127462],[115,244,74,-1.4239058569073677],[115,244,75,-1.4224821664392948],[115,244,76,-1.421752898953855],[115,244,77,-1.4213219676166773],[115,244,78,-1.4205265641212463],[115,244,79,-1.4192200470715761],[115,245,64,-1.446818171069026],[115,245,65,-1.445509308949113],[115,245,66,-1.444066172465682],[115,245,67,-1.4425674434751272],[115,245,68,-1.4412886556237936],[115,245,69,-1.4400967918336391],[115,245,70,-1.4389909580349922],[115,245,71,-1.4376431312412024],[115,245,72,-1.4357811473309994],[115,245,73,-1.4336877521127462],[115,245,74,-1.4317183569073677],[115,245,75,-1.4302946664392948],[115,245,76,-1.429565398953855],[115,245,77,-1.4291344676166773],[115,245,78,-1.4283390641212463],[115,245,79,-1.4270325470715761],[115,246,64,-1.454630671069026],[115,246,65,-1.453321808949113],[115,246,66,-1.451878672465682],[115,246,67,-1.4503799434751272],[115,246,68,-1.4491011556237936],[115,246,69,-1.4479092918336391],[115,246,70,-1.4468034580349922],[115,246,71,-1.4454556312412024],[115,246,72,-1.4435936473309994],[115,246,73,-1.4415002521127462],[115,246,74,-1.4395308569073677],[115,246,75,-1.4381071664392948],[115,246,76,-1.437377898953855],[115,246,77,-1.4369469676166773],[115,246,78,-1.4361515641212463],[115,246,79,-1.4348450470715761],[115,247,64,-1.462443171069026],[115,247,65,-1.461134308949113],[115,247,66,-1.459691172465682],[115,247,67,-1.4581924434751272],[115,247,68,-1.4569136556237936],[115,247,69,-1.4557217918336391],[115,247,70,-1.4546159580349922],[115,247,71,-1.4532681312412024],[115,247,72,-1.4514061473309994],[115,247,73,-1.4493127521127462],[115,247,74,-1.4473433569073677],[115,247,75,-1.4459196664392948],[115,247,76,-1.445190398953855],[115,247,77,-1.4447594676166773],[115,247,78,-1.4439640641212463],[115,247,79,-1.4426575470715761],[115,248,64,-1.470255671069026],[115,248,65,-1.468946808949113],[115,248,66,-1.467503672465682],[115,248,67,-1.4660049434751272],[115,248,68,-1.4647261556237936],[115,248,69,-1.4635342918336391],[115,248,70,-1.4624284580349922],[115,248,71,-1.4610806312412024],[115,248,72,-1.4592186473309994],[115,248,73,-1.4571252521127462],[115,248,74,-1.4551558569073677],[115,248,75,-1.4537321664392948],[115,248,76,-1.453002898953855],[115,248,77,-1.4525719676166773],[115,248,78,-1.4517765641212463],[115,248,79,-1.4504700470715761],[115,249,64,-1.478068171069026],[115,249,65,-1.476759308949113],[115,249,66,-1.475316172465682],[115,249,67,-1.4738174434751272],[115,249,68,-1.4725386556237936],[115,249,69,-1.4713467918336391],[115,249,70,-1.4702409580349922],[115,249,71,-1.4688931312412024],[115,249,72,-1.4670311473309994],[115,249,73,-1.4649377521127462],[115,249,74,-1.4629683569073677],[115,249,75,-1.4615446664392948],[115,249,76,-1.460815398953855],[115,249,77,-1.4603844676166773],[115,249,78,-1.4595890641212463],[115,249,79,-1.4582825470715761],[115,250,64,-1.485880671069026],[115,250,65,-1.484571808949113],[115,250,66,-1.483128672465682],[115,250,67,-1.4816299434751272],[115,250,68,-1.4803511556237936],[115,250,69,-1.4791592918336391],[115,250,70,-1.4780534580349922],[115,250,71,-1.4767056312412024],[115,250,72,-1.4748436473309994],[115,250,73,-1.4727502521127462],[115,250,74,-1.4707808569073677],[115,250,75,-1.4693571664392948],[115,250,76,-1.468627898953855],[115,250,77,-1.4681969676166773],[115,250,78,-1.4674015641212463],[115,250,79,-1.4660950470715761],[115,251,64,-1.493693171069026],[115,251,65,-1.492384308949113],[115,251,66,-1.490941172465682],[115,251,67,-1.4894424434751272],[115,251,68,-1.4881636556237936],[115,251,69,-1.4869717918336391],[115,251,70,-1.4858659580349922],[115,251,71,-1.4845181312412024],[115,251,72,-1.4826561473309994],[115,251,73,-1.4805627521127462],[115,251,74,-1.4785933569073677],[115,251,75,-1.4771696664392948],[115,251,76,-1.476440398953855],[115,251,77,-1.4760094676166773],[115,251,78,-1.4752140641212463],[115,251,79,-1.4739075470715761],[115,252,64,-1.501505671069026],[115,252,65,-1.500196808949113],[115,252,66,-1.498753672465682],[115,252,67,-1.4972549434751272],[115,252,68,-1.4959761556237936],[115,252,69,-1.4947842918336391],[115,252,70,-1.4936784580349922],[115,252,71,-1.4923306312412024],[115,252,72,-1.4904686473309994],[115,252,73,-1.4883752521127462],[115,252,74,-1.4864058569073677],[115,252,75,-1.4849821664392948],[115,252,76,-1.484252898953855],[115,252,77,-1.4838219676166773],[115,252,78,-1.4830265641212463],[115,252,79,-1.4817200470715761],[115,253,64,-1.509318171069026],[115,253,65,-1.508009308949113],[115,253,66,-1.506566172465682],[115,253,67,-1.5050674434751272],[115,253,68,-1.5037886556237936],[115,253,69,-1.5025967918336391],[115,253,70,-1.5014909580349922],[115,253,71,-1.5001431312412024],[115,253,72,-1.4982811473309994],[115,253,73,-1.4961877521127462],[115,253,74,-1.4942183569073677],[115,253,75,-1.4927946664392948],[115,253,76,-1.492065398953855],[115,253,77,-1.4916344676166773],[115,253,78,-1.4908390641212463],[115,253,79,-1.4895325470715761],[115,254,64,-1.517130671069026],[115,254,65,-1.515821808949113],[115,254,66,-1.514378672465682],[115,254,67,-1.5128799434751272],[115,254,68,-1.5116011556237936],[115,254,69,-1.5104092918336391],[115,254,70,-1.5093034580349922],[115,254,71,-1.5079556312412024],[115,254,72,-1.5060936473309994],[115,254,73,-1.5040002521127462],[115,254,74,-1.5020308569073677],[115,254,75,-1.5006071664392948],[115,254,76,-1.499877898953855],[115,254,77,-1.4994469676166773],[115,254,78,-1.4986515641212463],[115,254,79,-1.4973450470715761],[115,255,64,-1.524943171069026],[115,255,65,-1.523634308949113],[115,255,66,-1.522191172465682],[115,255,67,-1.5206924434751272],[115,255,68,-1.5194136556237936],[115,255,69,-1.5182217918336391],[115,255,70,-1.5171159580349922],[115,255,71,-1.5157681312412024],[115,255,72,-1.5139061473309994],[115,255,73,-1.5118127521127462],[115,255,74,-1.5098433569073677],[115,255,75,-1.5084196664392948],[115,255,76,-1.507690398953855],[115,255,77,-1.5072594676166773],[115,255,78,-1.5064640641212463],[115,255,79,-1.5051575470715761],[115,256,64,-1.532755671069026],[115,256,65,-1.531446808949113],[115,256,66,-1.530003672465682],[115,256,67,-1.5285049434751272],[115,256,68,-1.5272261556237936],[115,256,69,-1.5260342918336391],[115,256,70,-1.5249284580349922],[115,256,71,-1.5235806312412024],[115,256,72,-1.5217186473309994],[115,256,73,-1.5196252521127462],[115,256,74,-1.5176558569073677],[115,256,75,-1.5162321664392948],[115,256,76,-1.515502898953855],[115,256,77,-1.5150719676166773],[115,256,78,-1.5142765641212463],[115,256,79,-1.5129700470715761],[115,257,64,-1.540568171069026],[115,257,65,-1.539259308949113],[115,257,66,-1.537816172465682],[115,257,67,-1.5363174434751272],[115,257,68,-1.5350386556237936],[115,257,69,-1.5338467918336391],[115,257,70,-1.5327409580349922],[115,257,71,-1.5313931312412024],[115,257,72,-1.5295311473309994],[115,257,73,-1.5274377521127462],[115,257,74,-1.5254683569073677],[115,257,75,-1.5240446664392948],[115,257,76,-1.523315398953855],[115,257,77,-1.5228844676166773],[115,257,78,-1.5220890641212463],[115,257,79,-1.5207825470715761],[115,258,64,-1.548380671069026],[115,258,65,-1.547071808949113],[115,258,66,-1.545628672465682],[115,258,67,-1.5441299434751272],[115,258,68,-1.5428511556237936],[115,258,69,-1.5416592918336391],[115,258,70,-1.5405534580349922],[115,258,71,-1.5392056312412024],[115,258,72,-1.5373436473309994],[115,258,73,-1.5352502521127462],[115,258,74,-1.5332808569073677],[115,258,75,-1.5318571664392948],[115,258,76,-1.531127898953855],[115,258,77,-1.5306969676166773],[115,258,78,-1.5299015641212463],[115,258,79,-1.5285950470715761],[115,259,64,-1.556193171069026],[115,259,65,-1.554884308949113],[115,259,66,-1.553441172465682],[115,259,67,-1.5519424434751272],[115,259,68,-1.5506636556237936],[115,259,69,-1.5494717918336391],[115,259,70,-1.5483659580349922],[115,259,71,-1.5470181312412024],[115,259,72,-1.5451561473309994],[115,259,73,-1.5430627521127462],[115,259,74,-1.5410933569073677],[115,259,75,-1.5396696664392948],[115,259,76,-1.538940398953855],[115,259,77,-1.5385094676166773],[115,259,78,-1.5377140641212463],[115,259,79,-1.5364075470715761],[115,260,64,-1.564005671069026],[115,260,65,-1.562696808949113],[115,260,66,-1.561253672465682],[115,260,67,-1.5597549434751272],[115,260,68,-1.5584761556237936],[115,260,69,-1.5572842918336391],[115,260,70,-1.5561784580349922],[115,260,71,-1.5548306312412024],[115,260,72,-1.5529686473309994],[115,260,73,-1.5508752521127462],[115,260,74,-1.5489058569073677],[115,260,75,-1.5474821664392948],[115,260,76,-1.546752898953855],[115,260,77,-1.5463219676166773],[115,260,78,-1.5455265641212463],[115,260,79,-1.5442200470715761],[115,261,64,-1.571818171069026],[115,261,65,-1.570509308949113],[115,261,66,-1.569066172465682],[115,261,67,-1.5675674434751272],[115,261,68,-1.5662886556237936],[115,261,69,-1.5650967918336391],[115,261,70,-1.5639909580349922],[115,261,71,-1.5626431312412024],[115,261,72,-1.5607811473309994],[115,261,73,-1.5586877521127462],[115,261,74,-1.5567183569073677],[115,261,75,-1.5552946664392948],[115,261,76,-1.554565398953855],[115,261,77,-1.5541344676166773],[115,261,78,-1.5533390641212463],[115,261,79,-1.5520325470715761],[115,262,64,-1.579630671069026],[115,262,65,-1.578321808949113],[115,262,66,-1.576878672465682],[115,262,67,-1.5753799434751272],[115,262,68,-1.5741011556237936],[115,262,69,-1.5729092918336391],[115,262,70,-1.5718034580349922],[115,262,71,-1.5704556312412024],[115,262,72,-1.5685936473309994],[115,262,73,-1.5665002521127462],[115,262,74,-1.5645308569073677],[115,262,75,-1.5631071664392948],[115,262,76,-1.562377898953855],[115,262,77,-1.5619469676166773],[115,262,78,-1.5611515641212463],[115,262,79,-1.5598450470715761],[115,263,64,-1.587443171069026],[115,263,65,-1.586134308949113],[115,263,66,-1.584691172465682],[115,263,67,-1.5831924434751272],[115,263,68,-1.5819136556237936],[115,263,69,-1.5807217918336391],[115,263,70,-1.5796159580349922],[115,263,71,-1.5782681312412024],[115,263,72,-1.5764061473309994],[115,263,73,-1.5743127521127462],[115,263,74,-1.5723433569073677],[115,263,75,-1.5709196664392948],[115,263,76,-1.570190398953855],[115,263,77,-1.5697594676166773],[115,263,78,-1.5689640641212463],[115,263,79,-1.5676575470715761],[115,264,64,-1.595255671069026],[115,264,65,-1.593946808949113],[115,264,66,-1.592503672465682],[115,264,67,-1.5910049434751272],[115,264,68,-1.5897261556237936],[115,264,69,-1.5885342918336391],[115,264,70,-1.5874284580349922],[115,264,71,-1.5860806312412024],[115,264,72,-1.5842186473309994],[115,264,73,-1.5821252521127462],[115,264,74,-1.5801558569073677],[115,264,75,-1.5787321664392948],[115,264,76,-1.578002898953855],[115,264,77,-1.5775719676166773],[115,264,78,-1.5767765641212463],[115,264,79,-1.5754700470715761],[115,265,64,-1.603068171069026],[115,265,65,-1.601759308949113],[115,265,66,-1.600316172465682],[115,265,67,-1.5988174434751272],[115,265,68,-1.5975386556237936],[115,265,69,-1.5963467918336391],[115,265,70,-1.5952409580349922],[115,265,71,-1.5938931312412024],[115,265,72,-1.5920311473309994],[115,265,73,-1.5899377521127462],[115,265,74,-1.5879683569073677],[115,265,75,-1.5865446664392948],[115,265,76,-1.585815398953855],[115,265,77,-1.5853844676166773],[115,265,78,-1.5845890641212463],[115,265,79,-1.5832825470715761],[115,266,64,-1.610880671069026],[115,266,65,-1.609571808949113],[115,266,66,-1.608128672465682],[115,266,67,-1.6066299434751272],[115,266,68,-1.6053511556237936],[115,266,69,-1.6041592918336391],[115,266,70,-1.6030534580349922],[115,266,71,-1.6017056312412024],[115,266,72,-1.5998436473309994],[115,266,73,-1.5977502521127462],[115,266,74,-1.5957808569073677],[115,266,75,-1.5943571664392948],[115,266,76,-1.593627898953855],[115,266,77,-1.5931969676166773],[115,266,78,-1.5924015641212463],[115,266,79,-1.5910950470715761],[115,267,64,-1.618693171069026],[115,267,65,-1.617384308949113],[115,267,66,-1.615941172465682],[115,267,67,-1.6144424434751272],[115,267,68,-1.6131636556237936],[115,267,69,-1.6119717918336391],[115,267,70,-1.6108659580349922],[115,267,71,-1.6095181312412024],[115,267,72,-1.6076561473309994],[115,267,73,-1.6055627521127462],[115,267,74,-1.6035933569073677],[115,267,75,-1.6021696664392948],[115,267,76,-1.601440398953855],[115,267,77,-1.6010094676166773],[115,267,78,-1.6002140641212463],[115,267,79,-1.5989075470715761],[115,268,64,-1.626505671069026],[115,268,65,-1.625196808949113],[115,268,66,-1.623753672465682],[115,268,67,-1.6222549434751272],[115,268,68,-1.6209761556237936],[115,268,69,-1.6197842918336391],[115,268,70,-1.6186784580349922],[115,268,71,-1.6173306312412024],[115,268,72,-1.6154686473309994],[115,268,73,-1.6133752521127462],[115,268,74,-1.6114058569073677],[115,268,75,-1.6099821664392948],[115,268,76,-1.609252898953855],[115,268,77,-1.6088219676166773],[115,268,78,-1.6080265641212463],[115,268,79,-1.6067200470715761],[115,269,64,-1.634318171069026],[115,269,65,-1.633009308949113],[115,269,66,-1.631566172465682],[115,269,67,-1.6300674434751272],[115,269,68,-1.6287886556237936],[115,269,69,-1.6275967918336391],[115,269,70,-1.6264909580349922],[115,269,71,-1.6251431312412024],[115,269,72,-1.6232811473309994],[115,269,73,-1.6211877521127462],[115,269,74,-1.6192183569073677],[115,269,75,-1.6177946664392948],[115,269,76,-1.617065398953855],[115,269,77,-1.6166344676166773],[115,269,78,-1.6158390641212463],[115,269,79,-1.6145325470715761],[115,270,64,-1.642130671069026],[115,270,65,-1.640821808949113],[115,270,66,-1.639378672465682],[115,270,67,-1.6378799434751272],[115,270,68,-1.6366011556237936],[115,270,69,-1.6354092918336391],[115,270,70,-1.6343034580349922],[115,270,71,-1.6329556312412024],[115,270,72,-1.6310936473309994],[115,270,73,-1.6290002521127462],[115,270,74,-1.6270308569073677],[115,270,75,-1.6256071664392948],[115,270,76,-1.624877898953855],[115,270,77,-1.6244469676166773],[115,270,78,-1.6236515641212463],[115,270,79,-1.6223450470715761],[115,271,64,-1.649943171069026],[115,271,65,-1.648634308949113],[115,271,66,-1.647191172465682],[115,271,67,-1.6456924434751272],[115,271,68,-1.6444136556237936],[115,271,69,-1.6432217918336391],[115,271,70,-1.6421159580349922],[115,271,71,-1.6407681312412024],[115,271,72,-1.6389061473309994],[115,271,73,-1.6368127521127462],[115,271,74,-1.6348433569073677],[115,271,75,-1.6334196664392948],[115,271,76,-1.632690398953855],[115,271,77,-1.6322594676166773],[115,271,78,-1.6314640641212463],[115,271,79,-1.6301575470715761],[115,272,64,-1.657755671069026],[115,272,65,-1.656446808949113],[115,272,66,-1.655003672465682],[115,272,67,-1.6535049434751272],[115,272,68,-1.6522261556237936],[115,272,69,-1.6510342918336391],[115,272,70,-1.6499284580349922],[115,272,71,-1.6485806312412024],[115,272,72,-1.6467186473309994],[115,272,73,-1.6446252521127462],[115,272,74,-1.6426558569073677],[115,272,75,-1.6412321664392948],[115,272,76,-1.640502898953855],[115,272,77,-1.6400719676166773],[115,272,78,-1.6392765641212463],[115,272,79,-1.6379700470715761],[115,273,64,-1.665568171069026],[115,273,65,-1.664259308949113],[115,273,66,-1.662816172465682],[115,273,67,-1.6613174434751272],[115,273,68,-1.6600386556237936],[115,273,69,-1.6588467918336391],[115,273,70,-1.6577409580349922],[115,273,71,-1.6563931312412024],[115,273,72,-1.6545311473309994],[115,273,73,-1.6524377521127462],[115,273,74,-1.6504683569073677],[115,273,75,-1.6490446664392948],[115,273,76,-1.648315398953855],[115,273,77,-1.6478844676166773],[115,273,78,-1.6470890641212463],[115,273,79,-1.6457825470715761],[115,274,64,-1.673380671069026],[115,274,65,-1.672071808949113],[115,274,66,-1.670628672465682],[115,274,67,-1.6691299434751272],[115,274,68,-1.6678511556237936],[115,274,69,-1.6666592918336391],[115,274,70,-1.6655534580349922],[115,274,71,-1.6642056312412024],[115,274,72,-1.6623436473309994],[115,274,73,-1.6602502521127462],[115,274,74,-1.6582808569073677],[115,274,75,-1.6568571664392948],[115,274,76,-1.656127898953855],[115,274,77,-1.6556969676166773],[115,274,78,-1.6549015641212463],[115,274,79,-1.6535950470715761],[115,275,64,-1.681193171069026],[115,275,65,-1.679884308949113],[115,275,66,-1.678441172465682],[115,275,67,-1.6769424434751272],[115,275,68,-1.6756636556237936],[115,275,69,-1.6744717918336391],[115,275,70,-1.6733659580349922],[115,275,71,-1.6720181312412024],[115,275,72,-1.6701561473309994],[115,275,73,-1.6680627521127462],[115,275,74,-1.6660933569073677],[115,275,75,-1.6646696664392948],[115,275,76,-1.663940398953855],[115,275,77,-1.6635094676166773],[115,275,78,-1.6627140641212463],[115,275,79,-1.6614075470715761],[115,276,64,-1.689005671069026],[115,276,65,-1.687696808949113],[115,276,66,-1.686253672465682],[115,276,67,-1.6847549434751272],[115,276,68,-1.6834761556237936],[115,276,69,-1.6822842918336391],[115,276,70,-1.6811784580349922],[115,276,71,-1.6798306312412024],[115,276,72,-1.6779686473309994],[115,276,73,-1.6758752521127462],[115,276,74,-1.6739058569073677],[115,276,75,-1.6724821664392948],[115,276,76,-1.671752898953855],[115,276,77,-1.6713219676166773],[115,276,78,-1.6705265641212463],[115,276,79,-1.6692200470715761],[115,277,64,-1.696818171069026],[115,277,65,-1.695509308949113],[115,277,66,-1.694066172465682],[115,277,67,-1.6925674434751272],[115,277,68,-1.6912886556237936],[115,277,69,-1.6900967918336391],[115,277,70,-1.6889909580349922],[115,277,71,-1.6876431312412024],[115,277,72,-1.6857811473309994],[115,277,73,-1.6836877521127462],[115,277,74,-1.6817183569073677],[115,277,75,-1.6802946664392948],[115,277,76,-1.679565398953855],[115,277,77,-1.6791344676166773],[115,277,78,-1.6783390641212463],[115,277,79,-1.6770325470715761],[115,278,64,-1.704630671069026],[115,278,65,-1.703321808949113],[115,278,66,-1.701878672465682],[115,278,67,-1.7003799434751272],[115,278,68,-1.6991011556237936],[115,278,69,-1.6979092918336391],[115,278,70,-1.6968034580349922],[115,278,71,-1.6954556312412024],[115,278,72,-1.6935936473309994],[115,278,73,-1.6915002521127462],[115,278,74,-1.6895308569073677],[115,278,75,-1.6881071664392948],[115,278,76,-1.687377898953855],[115,278,77,-1.6869469676166773],[115,278,78,-1.6861515641212463],[115,278,79,-1.6848450470715761],[115,279,64,-1.712443171069026],[115,279,65,-1.711134308949113],[115,279,66,-1.709691172465682],[115,279,67,-1.7081924434751272],[115,279,68,-1.7069136556237936],[115,279,69,-1.7057217918336391],[115,279,70,-1.7046159580349922],[115,279,71,-1.7032681312412024],[115,279,72,-1.7014061473309994],[115,279,73,-1.6993127521127462],[115,279,74,-1.6973433569073677],[115,279,75,-1.6959196664392948],[115,279,76,-1.695190398953855],[115,279,77,-1.6947594676166773],[115,279,78,-1.6939640641212463],[115,279,79,-1.6926575470715761],[115,280,64,-1.720255671069026],[115,280,65,-1.718946808949113],[115,280,66,-1.717503672465682],[115,280,67,-1.7160049434751272],[115,280,68,-1.7147261556237936],[115,280,69,-1.7135342918336391],[115,280,70,-1.7124284580349922],[115,280,71,-1.7110806312412024],[115,280,72,-1.7092186473309994],[115,280,73,-1.7071252521127462],[115,280,74,-1.7051558569073677],[115,280,75,-1.7037321664392948],[115,280,76,-1.703002898953855],[115,280,77,-1.7025719676166773],[115,280,78,-1.7017765641212463],[115,280,79,-1.7004700470715761],[115,281,64,-1.728068171069026],[115,281,65,-1.726759308949113],[115,281,66,-1.725316172465682],[115,281,67,-1.7238174434751272],[115,281,68,-1.7225386556237936],[115,281,69,-1.7213467918336391],[115,281,70,-1.7202409580349922],[115,281,71,-1.7188931312412024],[115,281,72,-1.7170311473309994],[115,281,73,-1.7149377521127462],[115,281,74,-1.7129683569073677],[115,281,75,-1.7115446664392948],[115,281,76,-1.710815398953855],[115,281,77,-1.7103844676166773],[115,281,78,-1.7095890641212463],[115,281,79,-1.7082825470715761],[115,282,64,-1.735880671069026],[115,282,65,-1.734571808949113],[115,282,66,-1.733128672465682],[115,282,67,-1.7316299434751272],[115,282,68,-1.7303511556237936],[115,282,69,-1.7291592918336391],[115,282,70,-1.7280534580349922],[115,282,71,-1.7267056312412024],[115,282,72,-1.7248436473309994],[115,282,73,-1.7227502521127462],[115,282,74,-1.7207808569073677],[115,282,75,-1.7193571664392948],[115,282,76,-1.718627898953855],[115,282,77,-1.7181969676166773],[115,282,78,-1.7174015641212463],[115,282,79,-1.7160950470715761],[115,283,64,-1.743693171069026],[115,283,65,-1.742384308949113],[115,283,66,-1.740941172465682],[115,283,67,-1.7394424434751272],[115,283,68,-1.7381636556237936],[115,283,69,-1.7369717918336391],[115,283,70,-1.7358659580349922],[115,283,71,-1.7345181312412024],[115,283,72,-1.7326561473309994],[115,283,73,-1.7305627521127462],[115,283,74,-1.7285933569073677],[115,283,75,-1.7271696664392948],[115,283,76,-1.726440398953855],[115,283,77,-1.7260094676166773],[115,283,78,-1.7252140641212463],[115,283,79,-1.7239075470715761],[115,284,64,-1.751505671069026],[115,284,65,-1.750196808949113],[115,284,66,-1.748753672465682],[115,284,67,-1.7472549434751272],[115,284,68,-1.7459761556237936],[115,284,69,-1.7447842918336391],[115,284,70,-1.7436784580349922],[115,284,71,-1.7423306312412024],[115,284,72,-1.7404686473309994],[115,284,73,-1.7383752521127462],[115,284,74,-1.7364058569073677],[115,284,75,-1.7349821664392948],[115,284,76,-1.734252898953855],[115,284,77,-1.7338219676166773],[115,284,78,-1.7330265641212463],[115,284,79,-1.7317200470715761],[115,285,64,-1.759318171069026],[115,285,65,-1.758009308949113],[115,285,66,-1.756566172465682],[115,285,67,-1.7550674434751272],[115,285,68,-1.7537886556237936],[115,285,69,-1.7525967918336391],[115,285,70,-1.7514909580349922],[115,285,71,-1.7501431312412024],[115,285,72,-1.7482811473309994],[115,285,73,-1.7461877521127462],[115,285,74,-1.7442183569073677],[115,285,75,-1.7427946664392948],[115,285,76,-1.742065398953855],[115,285,77,-1.7416344676166773],[115,285,78,-1.7408390641212463],[115,285,79,-1.7395325470715761],[115,286,64,-1.767130671069026],[115,286,65,-1.765821808949113],[115,286,66,-1.764378672465682],[115,286,67,-1.7628799434751272],[115,286,68,-1.7616011556237936],[115,286,69,-1.7604092918336391],[115,286,70,-1.7593034580349922],[115,286,71,-1.7579556312412024],[115,286,72,-1.7560936473309994],[115,286,73,-1.7540002521127462],[115,286,74,-1.7520308569073677],[115,286,75,-1.7506071664392948],[115,286,76,-1.749877898953855],[115,286,77,-1.7494469676166773],[115,286,78,-1.7486515641212463],[115,286,79,-1.7473450470715761],[115,287,64,-1.774943171069026],[115,287,65,-1.773634308949113],[115,287,66,-1.772191172465682],[115,287,67,-1.7706924434751272],[115,287,68,-1.7694136556237936],[115,287,69,-1.7682217918336391],[115,287,70,-1.7671159580349922],[115,287,71,-1.7657681312412024],[115,287,72,-1.7639061473309994],[115,287,73,-1.7618127521127462],[115,287,74,-1.7598433569073677],[115,287,75,-1.7584196664392948],[115,287,76,-1.757690398953855],[115,287,77,-1.7572594676166773],[115,287,78,-1.7564640641212463],[115,287,79,-1.7551575470715761],[115,288,64,-1.782755671069026],[115,288,65,-1.781446808949113],[115,288,66,-1.780003672465682],[115,288,67,-1.7785049434751272],[115,288,68,-1.7772261556237936],[115,288,69,-1.7760342918336391],[115,288,70,-1.7749284580349922],[115,288,71,-1.7735806312412024],[115,288,72,-1.7717186473309994],[115,288,73,-1.7696252521127462],[115,288,74,-1.7676558569073677],[115,288,75,-1.7662321664392948],[115,288,76,-1.765502898953855],[115,288,77,-1.7650719676166773],[115,288,78,-1.7642765641212463],[115,288,79,-1.7629700470715761],[115,289,64,-1.790568171069026],[115,289,65,-1.789259308949113],[115,289,66,-1.787816172465682],[115,289,67,-1.7863174434751272],[115,289,68,-1.7850386556237936],[115,289,69,-1.7838467918336391],[115,289,70,-1.7827409580349922],[115,289,71,-1.7813931312412024],[115,289,72,-1.7795311473309994],[115,289,73,-1.7774377521127462],[115,289,74,-1.7754683569073677],[115,289,75,-1.7740446664392948],[115,289,76,-1.773315398953855],[115,289,77,-1.7728844676166773],[115,289,78,-1.7720890641212463],[115,289,79,-1.7707825470715761],[115,290,64,-1.798380671069026],[115,290,65,-1.797071808949113],[115,290,66,-1.795628672465682],[115,290,67,-1.7941299434751272],[115,290,68,-1.7928511556237936],[115,290,69,-1.7916592918336391],[115,290,70,-1.7905534580349922],[115,290,71,-1.7892056312412024],[115,290,72,-1.7873436473309994],[115,290,73,-1.7852502521127462],[115,290,74,-1.7832808569073677],[115,290,75,-1.7818571664392948],[115,290,76,-1.781127898953855],[115,290,77,-1.7806969676166773],[115,290,78,-1.7799015641212463],[115,290,79,-1.7785950470715761],[115,291,64,-1.806193171069026],[115,291,65,-1.804884308949113],[115,291,66,-1.803441172465682],[115,291,67,-1.8019424434751272],[115,291,68,-1.8006636556237936],[115,291,69,-1.7994717918336391],[115,291,70,-1.7983659580349922],[115,291,71,-1.7970181312412024],[115,291,72,-1.7951561473309994],[115,291,73,-1.7930627521127462],[115,291,74,-1.7910933569073677],[115,291,75,-1.7896696664392948],[115,291,76,-1.788940398953855],[115,291,77,-1.7885094676166773],[115,291,78,-1.7877140641212463],[115,291,79,-1.7864075470715761],[115,292,64,-1.814005671069026],[115,292,65,-1.812696808949113],[115,292,66,-1.811253672465682],[115,292,67,-1.8097549434751272],[115,292,68,-1.8084761556237936],[115,292,69,-1.8072842918336391],[115,292,70,-1.8061784580349922],[115,292,71,-1.8048306312412024],[115,292,72,-1.8029686473309994],[115,292,73,-1.8008752521127462],[115,292,74,-1.7989058569073677],[115,292,75,-1.7974821664392948],[115,292,76,-1.796752898953855],[115,292,77,-1.7963219676166773],[115,292,78,-1.7955265641212463],[115,292,79,-1.7942200470715761],[115,293,64,-1.821818171069026],[115,293,65,-1.820509308949113],[115,293,66,-1.819066172465682],[115,293,67,-1.8175674434751272],[115,293,68,-1.8162886556237936],[115,293,69,-1.8150967918336391],[115,293,70,-1.8139909580349922],[115,293,71,-1.8126431312412024],[115,293,72,-1.8107811473309994],[115,293,73,-1.8086877521127462],[115,293,74,-1.8067183569073677],[115,293,75,-1.8052946664392948],[115,293,76,-1.804565398953855],[115,293,77,-1.8041344676166773],[115,293,78,-1.8033390641212463],[115,293,79,-1.8020325470715761],[115,294,64,-1.829630671069026],[115,294,65,-1.828321808949113],[115,294,66,-1.826878672465682],[115,294,67,-1.8253799434751272],[115,294,68,-1.8241011556237936],[115,294,69,-1.8229092918336391],[115,294,70,-1.8218034580349922],[115,294,71,-1.8204556312412024],[115,294,72,-1.8185936473309994],[115,294,73,-1.8165002521127462],[115,294,74,-1.8145308569073677],[115,294,75,-1.8131071664392948],[115,294,76,-1.812377898953855],[115,294,77,-1.8119469676166773],[115,294,78,-1.8111515641212463],[115,294,79,-1.8098450470715761],[115,295,64,-1.837443171069026],[115,295,65,-1.836134308949113],[115,295,66,-1.834691172465682],[115,295,67,-1.8331924434751272],[115,295,68,-1.8319136556237936],[115,295,69,-1.8307217918336391],[115,295,70,-1.8296159580349922],[115,295,71,-1.8282681312412024],[115,295,72,-1.8264061473309994],[115,295,73,-1.8243127521127462],[115,295,74,-1.8223433569073677],[115,295,75,-1.8209196664392948],[115,295,76,-1.820190398953855],[115,295,77,-1.8197594676166773],[115,295,78,-1.8189640641212463],[115,295,79,-1.8176575470715761],[115,296,64,-1.845255671069026],[115,296,65,-1.843946808949113],[115,296,66,-1.842503672465682],[115,296,67,-1.8410049434751272],[115,296,68,-1.8397261556237936],[115,296,69,-1.8385342918336391],[115,296,70,-1.8374284580349922],[115,296,71,-1.8360806312412024],[115,296,72,-1.8342186473309994],[115,296,73,-1.8321252521127462],[115,296,74,-1.8301558569073677],[115,296,75,-1.8287321664392948],[115,296,76,-1.828002898953855],[115,296,77,-1.8275719676166773],[115,296,78,-1.8267765641212463],[115,296,79,-1.8254700470715761],[115,297,64,-1.853068171069026],[115,297,65,-1.851759308949113],[115,297,66,-1.850316172465682],[115,297,67,-1.8488174434751272],[115,297,68,-1.8475386556237936],[115,297,69,-1.8463467918336391],[115,297,70,-1.8452409580349922],[115,297,71,-1.8438931312412024],[115,297,72,-1.8420311473309994],[115,297,73,-1.8399377521127462],[115,297,74,-1.8379683569073677],[115,297,75,-1.8365446664392948],[115,297,76,-1.835815398953855],[115,297,77,-1.8353844676166773],[115,297,78,-1.8345890641212463],[115,297,79,-1.8332825470715761],[115,298,64,-1.860880671069026],[115,298,65,-1.859571808949113],[115,298,66,-1.858128672465682],[115,298,67,-1.8566299434751272],[115,298,68,-1.8553511556237936],[115,298,69,-1.8541592918336391],[115,298,70,-1.8530534580349922],[115,298,71,-1.8517056312412024],[115,298,72,-1.8498436473309994],[115,298,73,-1.8477502521127462],[115,298,74,-1.8457808569073677],[115,298,75,-1.8443571664392948],[115,298,76,-1.843627898953855],[115,298,77,-1.8431969676166773],[115,298,78,-1.8424015641212463],[115,298,79,-1.8410950470715761],[115,299,64,-1.868693171069026],[115,299,65,-1.867384308949113],[115,299,66,-1.865941172465682],[115,299,67,-1.8644424434751272],[115,299,68,-1.8631636556237936],[115,299,69,-1.8619717918336391],[115,299,70,-1.8608659580349922],[115,299,71,-1.8595181312412024],[115,299,72,-1.8576561473309994],[115,299,73,-1.8555627521127462],[115,299,74,-1.8535933569073677],[115,299,75,-1.8521696664392948],[115,299,76,-1.851440398953855],[115,299,77,-1.8510094676166773],[115,299,78,-1.8502140641212463],[115,299,79,-1.8489075470715761],[115,300,64,-1.876505671069026],[115,300,65,-1.875196808949113],[115,300,66,-1.873753672465682],[115,300,67,-1.8722549434751272],[115,300,68,-1.8709761556237936],[115,300,69,-1.8697842918336391],[115,300,70,-1.8686784580349922],[115,300,71,-1.8673306312412024],[115,300,72,-1.8654686473309994],[115,300,73,-1.8633752521127462],[115,300,74,-1.8614058569073677],[115,300,75,-1.8599821664392948],[115,300,76,-1.859252898953855],[115,300,77,-1.8588219676166773],[115,300,78,-1.8580265641212463],[115,300,79,-1.8567200470715761],[115,301,64,-1.884318171069026],[115,301,65,-1.883009308949113],[115,301,66,-1.881566172465682],[115,301,67,-1.8800674434751272],[115,301,68,-1.8787886556237936],[115,301,69,-1.8775967918336391],[115,301,70,-1.8764909580349922],[115,301,71,-1.8751431312412024],[115,301,72,-1.8732811473309994],[115,301,73,-1.8711877521127462],[115,301,74,-1.8692183569073677],[115,301,75,-1.8677946664392948],[115,301,76,-1.867065398953855],[115,301,77,-1.8666344676166773],[115,301,78,-1.8658390641212463],[115,301,79,-1.8645325470715761],[115,302,64,-1.892130671069026],[115,302,65,-1.890821808949113],[115,302,66,-1.889378672465682],[115,302,67,-1.8878799434751272],[115,302,68,-1.8866011556237936],[115,302,69,-1.8854092918336391],[115,302,70,-1.8843034580349922],[115,302,71,-1.8829556312412024],[115,302,72,-1.8810936473309994],[115,302,73,-1.8790002521127462],[115,302,74,-1.8770308569073677],[115,302,75,-1.8756071664392948],[115,302,76,-1.874877898953855],[115,302,77,-1.8744469676166773],[115,302,78,-1.8736515641212463],[115,302,79,-1.8723450470715761],[115,303,64,-1.899943171069026],[115,303,65,-1.898634308949113],[115,303,66,-1.897191172465682],[115,303,67,-1.8956924434751272],[115,303,68,-1.8944136556237936],[115,303,69,-1.8932217918336391],[115,303,70,-1.8921159580349922],[115,303,71,-1.8907681312412024],[115,303,72,-1.8889061473309994],[115,303,73,-1.8868127521127462],[115,303,74,-1.8848433569073677],[115,303,75,-1.8834196664392948],[115,303,76,-1.882690398953855],[115,303,77,-1.8822594676166773],[115,303,78,-1.8814640641212463],[115,303,79,-1.8801575470715761],[115,304,64,-1.907755671069026],[115,304,65,-1.906446808949113],[115,304,66,-1.905003672465682],[115,304,67,-1.9035049434751272],[115,304,68,-1.9022261556237936],[115,304,69,-1.9010342918336391],[115,304,70,-1.8999284580349922],[115,304,71,-1.8985806312412024],[115,304,72,-1.8967186473309994],[115,304,73,-1.8946252521127462],[115,304,74,-1.8926558569073677],[115,304,75,-1.8912321664392948],[115,304,76,-1.890502898953855],[115,304,77,-1.8900719676166773],[115,304,78,-1.8892765641212463],[115,304,79,-1.8879700470715761],[115,305,64,-1.915568171069026],[115,305,65,-1.914259308949113],[115,305,66,-1.912816172465682],[115,305,67,-1.9113174434751272],[115,305,68,-1.9100386556237936],[115,305,69,-1.9088467918336391],[115,305,70,-1.9077409580349922],[115,305,71,-1.9063931312412024],[115,305,72,-1.9045311473309994],[115,305,73,-1.9024377521127462],[115,305,74,-1.9004683569073677],[115,305,75,-1.8990446664392948],[115,305,76,-1.898315398953855],[115,305,77,-1.8978844676166773],[115,305,78,-1.8970890641212463],[115,305,79,-1.8957825470715761],[115,306,64,-1.923380671069026],[115,306,65,-1.922071808949113],[115,306,66,-1.920628672465682],[115,306,67,-1.9191299434751272],[115,306,68,-1.9178511556237936],[115,306,69,-1.9166592918336391],[115,306,70,-1.9155534580349922],[115,306,71,-1.9142056312412024],[115,306,72,-1.9123436473309994],[115,306,73,-1.9102502521127462],[115,306,74,-1.9082808569073677],[115,306,75,-1.9068571664392948],[115,306,76,-1.906127898953855],[115,306,77,-1.9056969676166773],[115,306,78,-1.9049015641212463],[115,306,79,-1.9035950470715761],[115,307,64,-1.931193171069026],[115,307,65,-1.929884308949113],[115,307,66,-1.928441172465682],[115,307,67,-1.9269424434751272],[115,307,68,-1.9256636556237936],[115,307,69,-1.9244717918336391],[115,307,70,-1.9233659580349922],[115,307,71,-1.9220181312412024],[115,307,72,-1.9201561473309994],[115,307,73,-1.9180627521127462],[115,307,74,-1.9160933569073677],[115,307,75,-1.9146696664392948],[115,307,76,-1.913940398953855],[115,307,77,-1.9135094676166773],[115,307,78,-1.9127140641212463],[115,307,79,-1.9114075470715761],[115,308,64,-1.939005671069026],[115,308,65,-1.937696808949113],[115,308,66,-1.936253672465682],[115,308,67,-1.9347549434751272],[115,308,68,-1.9334761556237936],[115,308,69,-1.9322842918336391],[115,308,70,-1.9311784580349922],[115,308,71,-1.9298306312412024],[115,308,72,-1.9279686473309994],[115,308,73,-1.9258752521127462],[115,308,74,-1.9239058569073677],[115,308,75,-1.9224821664392948],[115,308,76,-1.921752898953855],[115,308,77,-1.9213219676166773],[115,308,78,-1.9205265641212463],[115,308,79,-1.9192200470715761],[115,309,64,-1.946818171069026],[115,309,65,-1.945509308949113],[115,309,66,-1.944066172465682],[115,309,67,-1.9425674434751272],[115,309,68,-1.9412886556237936],[115,309,69,-1.9400967918336391],[115,309,70,-1.9389909580349922],[115,309,71,-1.9376431312412024],[115,309,72,-1.9357811473309994],[115,309,73,-1.9336877521127462],[115,309,74,-1.9317183569073677],[115,309,75,-1.9302946664392948],[115,309,76,-1.929565398953855],[115,309,77,-1.9291344676166773],[115,309,78,-1.9283390641212463],[115,309,79,-1.9270325470715761],[115,310,64,-1.954630671069026],[115,310,65,-1.953321808949113],[115,310,66,-1.951878672465682],[115,310,67,-1.9503799434751272],[115,310,68,-1.9491011556237936],[115,310,69,-1.9479092918336391],[115,310,70,-1.9468034580349922],[115,310,71,-1.9454556312412024],[115,310,72,-1.9435936473309994],[115,310,73,-1.9415002521127462],[115,310,74,-1.9395308569073677],[115,310,75,-1.9381071664392948],[115,310,76,-1.937377898953855],[115,310,77,-1.9369469676166773],[115,310,78,-1.9361515641212463],[115,310,79,-1.9348450470715761],[115,311,64,-1.962443171069026],[115,311,65,-1.961134308949113],[115,311,66,-1.959691172465682],[115,311,67,-1.9581924434751272],[115,311,68,-1.9569136556237936],[115,311,69,-1.9557217918336391],[115,311,70,-1.9546159580349922],[115,311,71,-1.9532681312412024],[115,311,72,-1.9514061473309994],[115,311,73,-1.9493127521127462],[115,311,74,-1.9473433569073677],[115,311,75,-1.9459196664392948],[115,311,76,-1.945190398953855],[115,311,77,-1.9447594676166773],[115,311,78,-1.9439640641212463],[115,311,79,-1.9426575470715761],[115,312,64,-1.970255671069026],[115,312,65,-1.968946808949113],[115,312,66,-1.967503672465682],[115,312,67,-1.9660049434751272],[115,312,68,-1.9647261556237936],[115,312,69,-1.9635342918336391],[115,312,70,-1.9624284580349922],[115,312,71,-1.9610806312412024],[115,312,72,-1.9592186473309994],[115,312,73,-1.9571252521127462],[115,312,74,-1.9551558569073677],[115,312,75,-1.9537321664392948],[115,312,76,-1.953002898953855],[115,312,77,-1.9525719676166773],[115,312,78,-1.9517765641212463],[115,312,79,-1.9504700470715761],[115,313,64,-1.978068171069026],[115,313,65,-1.976759308949113],[115,313,66,-1.975316172465682],[115,313,67,-1.9738174434751272],[115,313,68,-1.9725386556237936],[115,313,69,-1.9713467918336391],[115,313,70,-1.9702409580349922],[115,313,71,-1.9688931312412024],[115,313,72,-1.9670311473309994],[115,313,73,-1.9649377521127462],[115,313,74,-1.9629683569073677],[115,313,75,-1.9615446664392948],[115,313,76,-1.960815398953855],[115,313,77,-1.9603844676166773],[115,313,78,-1.9595890641212463],[115,313,79,-1.9582825470715761],[115,314,64,-1.985880671069026],[115,314,65,-1.984571808949113],[115,314,66,-1.983128672465682],[115,314,67,-1.9816299434751272],[115,314,68,-1.9803511556237936],[115,314,69,-1.9791592918336391],[115,314,70,-1.9780534580349922],[115,314,71,-1.9767056312412024],[115,314,72,-1.9748436473309994],[115,314,73,-1.9727502521127462],[115,314,74,-1.9707808569073677],[115,314,75,-1.9693571664392948],[115,314,76,-1.968627898953855],[115,314,77,-1.9681969676166773],[115,314,78,-1.9674015641212463],[115,314,79,-1.9660950470715761],[115,315,64,-1.993693171069026],[115,315,65,-1.992384308949113],[115,315,66,-1.990941172465682],[115,315,67,-1.9894424434751272],[115,315,68,-1.9881636556237936],[115,315,69,-1.9869717918336391],[115,315,70,-1.9858659580349922],[115,315,71,-1.9845181312412024],[115,315,72,-1.9826561473309994],[115,315,73,-1.9805627521127462],[115,315,74,-1.9785933569073677],[115,315,75,-1.9771696664392948],[115,315,76,-1.976440398953855],[115,315,77,-1.9760094676166773],[115,315,78,-1.9752140641212463],[115,315,79,-1.9739075470715761],[115,316,64,-2.001505671069026],[115,316,65,-2.000196808949113],[115,316,66,-1.998753672465682],[115,316,67,-1.9972549434751272],[115,316,68,-1.9959761556237936],[115,316,69,-1.9947842918336391],[115,316,70,-1.9936784580349922],[115,316,71,-1.9923306312412024],[115,316,72,-1.9904686473309994],[115,316,73,-1.9883752521127462],[115,316,74,-1.9864058569073677],[115,316,75,-1.9849821664392948],[115,316,76,-1.984252898953855],[115,316,77,-1.9838219676166773],[115,316,78,-1.9830265641212463],[115,316,79,-1.9817200470715761],[115,317,64,-2.009318171069026],[115,317,65,-2.008009308949113],[115,317,66,-2.006566172465682],[115,317,67,-2.005067443475127],[115,317,68,-2.0037886556237936],[115,317,69,-2.002596791833639],[115,317,70,-2.001490958034992],[115,317,71,-2.0001431312412024],[115,317,72,-1.9982811473309994],[115,317,73,-1.9961877521127462],[115,317,74,-1.9942183569073677],[115,317,75,-1.9927946664392948],[115,317,76,-1.992065398953855],[115,317,77,-1.9916344676166773],[115,317,78,-1.9908390641212463],[115,317,79,-1.9895325470715761],[115,318,64,-2.017130671069026],[115,318,65,-2.015821808949113],[115,318,66,-2.014378672465682],[115,318,67,-2.012879943475127],[115,318,68,-2.0116011556237936],[115,318,69,-2.010409291833639],[115,318,70,-2.009303458034992],[115,318,71,-2.0079556312412024],[115,318,72,-2.0060936473309994],[115,318,73,-2.0040002521127462],[115,318,74,-2.0020308569073677],[115,318,75,-2.000607166439295],[115,318,76,-1.999877898953855],[115,318,77,-1.9994469676166773],[115,318,78,-1.9986515641212463],[115,318,79,-1.9973450470715761],[115,319,64,-2.024943171069026],[115,319,65,-2.023634308949113],[115,319,66,-2.022191172465682],[115,319,67,-2.020692443475127],[115,319,68,-2.0194136556237936],[115,319,69,-2.018221791833639],[115,319,70,-2.017115958034992],[115,319,71,-2.0157681312412024],[115,319,72,-2.0139061473309994],[115,319,73,-2.0118127521127462],[115,319,74,-2.0098433569073677],[115,319,75,-2.008419666439295],[115,319,76,-2.007690398953855],[115,319,77,-2.0072594676166773],[115,319,78,-2.0064640641212463],[115,319,79,-2.005157547071576],[116,-64,64,0.9641839601099491],[116,-64,65,0.9652278292924166],[116,-64,66,0.9668181892484426],[116,-64,67,0.9686913341283798],[116,-64,68,0.9703048095107079],[116,-64,69,0.9715572725981474],[116,-64,70,0.9724658373743296],[116,-64,71,0.9735125713050365],[116,-64,72,0.9749748334288597],[116,-64,73,0.9765373021364212],[116,-64,74,0.9779011029750109],[116,-64,75,0.9789421632885933],[116,-64,76,0.9796324148774147],[116,-64,77,0.9801901299506426],[116,-64,78,0.9811723176389933],[116,-64,79,0.9826324684545398],[116,-63,64,0.9563714601099491],[116,-63,65,0.9574153292924166],[116,-63,66,0.9590056892484426],[116,-63,67,0.9608788341283798],[116,-63,68,0.9624923095107079],[116,-63,69,0.9637447725981474],[116,-63,70,0.9646533373743296],[116,-63,71,0.9657000713050365],[116,-63,72,0.9671623334288597],[116,-63,73,0.9687248021364212],[116,-63,74,0.9700886029750109],[116,-63,75,0.9711296632885933],[116,-63,76,0.9718199148774147],[116,-63,77,0.9723776299506426],[116,-63,78,0.9733598176389933],[116,-63,79,0.9748199684545398],[116,-62,64,0.9485589601099491],[116,-62,65,0.9496028292924166],[116,-62,66,0.9511931892484426],[116,-62,67,0.9530663341283798],[116,-62,68,0.9546798095107079],[116,-62,69,0.9559322725981474],[116,-62,70,0.9568408373743296],[116,-62,71,0.9578875713050365],[116,-62,72,0.9593498334288597],[116,-62,73,0.9609123021364212],[116,-62,74,0.9622761029750109],[116,-62,75,0.9633171632885933],[116,-62,76,0.9640074148774147],[116,-62,77,0.9645651299506426],[116,-62,78,0.9655473176389933],[116,-62,79,0.9670074684545398],[116,-61,64,0.9407464601099491],[116,-61,65,0.9417903292924166],[116,-61,66,0.9433806892484426],[116,-61,67,0.9452538341283798],[116,-61,68,0.9468673095107079],[116,-61,69,0.9481197725981474],[116,-61,70,0.9490283373743296],[116,-61,71,0.9500750713050365],[116,-61,72,0.9515373334288597],[116,-61,73,0.9530998021364212],[116,-61,74,0.9544636029750109],[116,-61,75,0.9555046632885933],[116,-61,76,0.9561949148774147],[116,-61,77,0.9567526299506426],[116,-61,78,0.9577348176389933],[116,-61,79,0.9591949684545398],[116,-60,64,0.9329339601099491],[116,-60,65,0.9339778292924166],[116,-60,66,0.9355681892484426],[116,-60,67,0.9374413341283798],[116,-60,68,0.9390548095107079],[116,-60,69,0.9403072725981474],[116,-60,70,0.9412158373743296],[116,-60,71,0.9422625713050365],[116,-60,72,0.9437248334288597],[116,-60,73,0.9452873021364212],[116,-60,74,0.9466511029750109],[116,-60,75,0.9476921632885933],[116,-60,76,0.9483824148774147],[116,-60,77,0.9489401299506426],[116,-60,78,0.9499223176389933],[116,-60,79,0.9513824684545398],[116,-59,64,0.9251214601099491],[116,-59,65,0.9261653292924166],[116,-59,66,0.9277556892484426],[116,-59,67,0.9296288341283798],[116,-59,68,0.9312423095107079],[116,-59,69,0.9324947725981474],[116,-59,70,0.9334033373743296],[116,-59,71,0.9344500713050365],[116,-59,72,0.9359123334288597],[116,-59,73,0.9374748021364212],[116,-59,74,0.9388386029750109],[116,-59,75,0.9398796632885933],[116,-59,76,0.9405699148774147],[116,-59,77,0.9411276299506426],[116,-59,78,0.9421098176389933],[116,-59,79,0.9435699684545398],[116,-58,64,0.9173089601099491],[116,-58,65,0.9183528292924166],[116,-58,66,0.9199431892484426],[116,-58,67,0.9218163341283798],[116,-58,68,0.9234298095107079],[116,-58,69,0.9246822725981474],[116,-58,70,0.9255908373743296],[116,-58,71,0.9266375713050365],[116,-58,72,0.9280998334288597],[116,-58,73,0.9296623021364212],[116,-58,74,0.9310261029750109],[116,-58,75,0.9320671632885933],[116,-58,76,0.9327574148774147],[116,-58,77,0.9333151299506426],[116,-58,78,0.9342973176389933],[116,-58,79,0.9357574684545398],[116,-57,64,0.9094964601099491],[116,-57,65,0.9105403292924166],[116,-57,66,0.9121306892484426],[116,-57,67,0.9140038341283798],[116,-57,68,0.9156173095107079],[116,-57,69,0.9168697725981474],[116,-57,70,0.9177783373743296],[116,-57,71,0.9188250713050365],[116,-57,72,0.9202873334288597],[116,-57,73,0.9218498021364212],[116,-57,74,0.9232136029750109],[116,-57,75,0.9242546632885933],[116,-57,76,0.9249449148774147],[116,-57,77,0.9255026299506426],[116,-57,78,0.9264848176389933],[116,-57,79,0.9279449684545398],[116,-56,64,0.9016839601099491],[116,-56,65,0.9027278292924166],[116,-56,66,0.9043181892484426],[116,-56,67,0.9061913341283798],[116,-56,68,0.9078048095107079],[116,-56,69,0.9090572725981474],[116,-56,70,0.9099658373743296],[116,-56,71,0.9110125713050365],[116,-56,72,0.9124748334288597],[116,-56,73,0.9140373021364212],[116,-56,74,0.9154011029750109],[116,-56,75,0.9164421632885933],[116,-56,76,0.9171324148774147],[116,-56,77,0.9176901299506426],[116,-56,78,0.9186723176389933],[116,-56,79,0.9201324684545398],[116,-55,64,0.8938714601099491],[116,-55,65,0.8949153292924166],[116,-55,66,0.8965056892484426],[116,-55,67,0.8983788341283798],[116,-55,68,0.8999923095107079],[116,-55,69,0.9012447725981474],[116,-55,70,0.9021533373743296],[116,-55,71,0.9032000713050365],[116,-55,72,0.9046623334288597],[116,-55,73,0.9062248021364212],[116,-55,74,0.9075886029750109],[116,-55,75,0.9086296632885933],[116,-55,76,0.9093199148774147],[116,-55,77,0.9098776299506426],[116,-55,78,0.9108598176389933],[116,-55,79,0.9123199684545398],[116,-54,64,0.8860589601099491],[116,-54,65,0.8871028292924166],[116,-54,66,0.8886931892484426],[116,-54,67,0.8905663341283798],[116,-54,68,0.8921798095107079],[116,-54,69,0.8934322725981474],[116,-54,70,0.8943408373743296],[116,-54,71,0.8953875713050365],[116,-54,72,0.8968498334288597],[116,-54,73,0.8984123021364212],[116,-54,74,0.8997761029750109],[116,-54,75,0.9008171632885933],[116,-54,76,0.9015074148774147],[116,-54,77,0.9020651299506426],[116,-54,78,0.9030473176389933],[116,-54,79,0.9045074684545398],[116,-53,64,0.8782464601099491],[116,-53,65,0.8792903292924166],[116,-53,66,0.8808806892484426],[116,-53,67,0.8827538341283798],[116,-53,68,0.8843673095107079],[116,-53,69,0.8856197725981474],[116,-53,70,0.8865283373743296],[116,-53,71,0.8875750713050365],[116,-53,72,0.8890373334288597],[116,-53,73,0.8905998021364212],[116,-53,74,0.8919636029750109],[116,-53,75,0.8930046632885933],[116,-53,76,0.8936949148774147],[116,-53,77,0.8942526299506426],[116,-53,78,0.8952348176389933],[116,-53,79,0.8966949684545398],[116,-52,64,0.8704339601099491],[116,-52,65,0.8714778292924166],[116,-52,66,0.8730681892484426],[116,-52,67,0.8749413341283798],[116,-52,68,0.8765548095107079],[116,-52,69,0.8778072725981474],[116,-52,70,0.8787158373743296],[116,-52,71,0.8797625713050365],[116,-52,72,0.8812248334288597],[116,-52,73,0.8827873021364212],[116,-52,74,0.8841511029750109],[116,-52,75,0.8851921632885933],[116,-52,76,0.8858824148774147],[116,-52,77,0.8864401299506426],[116,-52,78,0.8874223176389933],[116,-52,79,0.8888824684545398],[116,-51,64,0.8626214601099491],[116,-51,65,0.8636653292924166],[116,-51,66,0.8652556892484426],[116,-51,67,0.8671288341283798],[116,-51,68,0.8687423095107079],[116,-51,69,0.8699947725981474],[116,-51,70,0.8709033373743296],[116,-51,71,0.8719500713050365],[116,-51,72,0.8734123334288597],[116,-51,73,0.8749748021364212],[116,-51,74,0.8763386029750109],[116,-51,75,0.8773796632885933],[116,-51,76,0.8780699148774147],[116,-51,77,0.8786276299506426],[116,-51,78,0.8796098176389933],[116,-51,79,0.8810699684545398],[116,-50,64,0.8548089601099491],[116,-50,65,0.8558528292924166],[116,-50,66,0.8574431892484426],[116,-50,67,0.8593163341283798],[116,-50,68,0.8609298095107079],[116,-50,69,0.8621822725981474],[116,-50,70,0.8630908373743296],[116,-50,71,0.8641375713050365],[116,-50,72,0.8655998334288597],[116,-50,73,0.8671623021364212],[116,-50,74,0.8685261029750109],[116,-50,75,0.8695671632885933],[116,-50,76,0.8702574148774147],[116,-50,77,0.8708151299506426],[116,-50,78,0.8717973176389933],[116,-50,79,0.8732574684545398],[116,-49,64,0.8469964601099491],[116,-49,65,0.8480403292924166],[116,-49,66,0.8496306892484426],[116,-49,67,0.8515038341283798],[116,-49,68,0.8531173095107079],[116,-49,69,0.8543697725981474],[116,-49,70,0.8552783373743296],[116,-49,71,0.8563250713050365],[116,-49,72,0.8577873334288597],[116,-49,73,0.8593498021364212],[116,-49,74,0.8607136029750109],[116,-49,75,0.8617546632885933],[116,-49,76,0.8624449148774147],[116,-49,77,0.8630026299506426],[116,-49,78,0.8639848176389933],[116,-49,79,0.8654449684545398],[116,-48,64,0.8391839601099491],[116,-48,65,0.8402278292924166],[116,-48,66,0.8418181892484426],[116,-48,67,0.8436913341283798],[116,-48,68,0.8453048095107079],[116,-48,69,0.8465572725981474],[116,-48,70,0.8474658373743296],[116,-48,71,0.8485125713050365],[116,-48,72,0.8499748334288597],[116,-48,73,0.8515373021364212],[116,-48,74,0.8529011029750109],[116,-48,75,0.8539421632885933],[116,-48,76,0.8546324148774147],[116,-48,77,0.8551901299506426],[116,-48,78,0.8561723176389933],[116,-48,79,0.8576324684545398],[116,-47,64,0.8313714601099491],[116,-47,65,0.8324153292924166],[116,-47,66,0.8340056892484426],[116,-47,67,0.8358788341283798],[116,-47,68,0.8374923095107079],[116,-47,69,0.8387447725981474],[116,-47,70,0.8396533373743296],[116,-47,71,0.8407000713050365],[116,-47,72,0.8421623334288597],[116,-47,73,0.8437248021364212],[116,-47,74,0.8450886029750109],[116,-47,75,0.8461296632885933],[116,-47,76,0.8468199148774147],[116,-47,77,0.8473776299506426],[116,-47,78,0.8483598176389933],[116,-47,79,0.8498199684545398],[116,-46,64,0.8235589601099491],[116,-46,65,0.8246028292924166],[116,-46,66,0.8261931892484426],[116,-46,67,0.8280663341283798],[116,-46,68,0.8296798095107079],[116,-46,69,0.8309322725981474],[116,-46,70,0.8318408373743296],[116,-46,71,0.8328875713050365],[116,-46,72,0.8343498334288597],[116,-46,73,0.8359123021364212],[116,-46,74,0.8372761029750109],[116,-46,75,0.8383171632885933],[116,-46,76,0.8390074148774147],[116,-46,77,0.8395651299506426],[116,-46,78,0.8405473176389933],[116,-46,79,0.8420074684545398],[116,-45,64,0.8157464601099491],[116,-45,65,0.8167903292924166],[116,-45,66,0.8183806892484426],[116,-45,67,0.8202538341283798],[116,-45,68,0.8218673095107079],[116,-45,69,0.8231197725981474],[116,-45,70,0.8240283373743296],[116,-45,71,0.8250750713050365],[116,-45,72,0.8265373334288597],[116,-45,73,0.8280998021364212],[116,-45,74,0.8294636029750109],[116,-45,75,0.8305046632885933],[116,-45,76,0.8311949148774147],[116,-45,77,0.8317526299506426],[116,-45,78,0.8327348176389933],[116,-45,79,0.8341949684545398],[116,-44,64,0.8079339601099491],[116,-44,65,0.8089778292924166],[116,-44,66,0.8105681892484426],[116,-44,67,0.8124413341283798],[116,-44,68,0.8140548095107079],[116,-44,69,0.8153072725981474],[116,-44,70,0.8162158373743296],[116,-44,71,0.8172625713050365],[116,-44,72,0.8187248334288597],[116,-44,73,0.8202873021364212],[116,-44,74,0.8216511029750109],[116,-44,75,0.8226921632885933],[116,-44,76,0.8233824148774147],[116,-44,77,0.8239401299506426],[116,-44,78,0.8249223176389933],[116,-44,79,0.8263824684545398],[116,-43,64,0.8001214601099491],[116,-43,65,0.8011653292924166],[116,-43,66,0.8027556892484426],[116,-43,67,0.8046288341283798],[116,-43,68,0.8062423095107079],[116,-43,69,0.8074947725981474],[116,-43,70,0.8084033373743296],[116,-43,71,0.8094500713050365],[116,-43,72,0.8109123334288597],[116,-43,73,0.8124748021364212],[116,-43,74,0.8138386029750109],[116,-43,75,0.8148796632885933],[116,-43,76,0.8155699148774147],[116,-43,77,0.8161276299506426],[116,-43,78,0.8171098176389933],[116,-43,79,0.8185699684545398],[116,-42,64,0.7923089601099491],[116,-42,65,0.7933528292924166],[116,-42,66,0.7949431892484426],[116,-42,67,0.7968163341283798],[116,-42,68,0.7984298095107079],[116,-42,69,0.7996822725981474],[116,-42,70,0.8005908373743296],[116,-42,71,0.8016375713050365],[116,-42,72,0.8030998334288597],[116,-42,73,0.8046623021364212],[116,-42,74,0.8060261029750109],[116,-42,75,0.8070671632885933],[116,-42,76,0.8077574148774147],[116,-42,77,0.8083151299506426],[116,-42,78,0.8092973176389933],[116,-42,79,0.8107574684545398],[116,-41,64,0.7844964601099491],[116,-41,65,0.7855403292924166],[116,-41,66,0.7871306892484426],[116,-41,67,0.7890038341283798],[116,-41,68,0.7906173095107079],[116,-41,69,0.7918697725981474],[116,-41,70,0.7927783373743296],[116,-41,71,0.7938250713050365],[116,-41,72,0.7952873334288597],[116,-41,73,0.7968498021364212],[116,-41,74,0.7982136029750109],[116,-41,75,0.7992546632885933],[116,-41,76,0.7999449148774147],[116,-41,77,0.8005026299506426],[116,-41,78,0.8014848176389933],[116,-41,79,0.8029449684545398],[116,-40,64,0.7766839601099491],[116,-40,65,0.7777278292924166],[116,-40,66,0.7793181892484426],[116,-40,67,0.7811913341283798],[116,-40,68,0.7828048095107079],[116,-40,69,0.7840572725981474],[116,-40,70,0.7849658373743296],[116,-40,71,0.7860125713050365],[116,-40,72,0.7874748334288597],[116,-40,73,0.7890373021364212],[116,-40,74,0.7904011029750109],[116,-40,75,0.7914421632885933],[116,-40,76,0.7921324148774147],[116,-40,77,0.7926901299506426],[116,-40,78,0.7936723176389933],[116,-40,79,0.7951324684545398],[116,-39,64,0.7688714601099491],[116,-39,65,0.7699153292924166],[116,-39,66,0.7715056892484426],[116,-39,67,0.7733788341283798],[116,-39,68,0.7749923095107079],[116,-39,69,0.7762447725981474],[116,-39,70,0.7771533373743296],[116,-39,71,0.7782000713050365],[116,-39,72,0.7796623334288597],[116,-39,73,0.7812248021364212],[116,-39,74,0.7825886029750109],[116,-39,75,0.7836296632885933],[116,-39,76,0.7843199148774147],[116,-39,77,0.7848776299506426],[116,-39,78,0.7858598176389933],[116,-39,79,0.7873199684545398],[116,-38,64,0.7610589601099491],[116,-38,65,0.7621028292924166],[116,-38,66,0.7636931892484426],[116,-38,67,0.7655663341283798],[116,-38,68,0.7671798095107079],[116,-38,69,0.7684322725981474],[116,-38,70,0.7693408373743296],[116,-38,71,0.7703875713050365],[116,-38,72,0.7718498334288597],[116,-38,73,0.7734123021364212],[116,-38,74,0.7747761029750109],[116,-38,75,0.7758171632885933],[116,-38,76,0.7765074148774147],[116,-38,77,0.7770651299506426],[116,-38,78,0.7780473176389933],[116,-38,79,0.7795074684545398],[116,-37,64,0.7532464601099491],[116,-37,65,0.7542903292924166],[116,-37,66,0.7558806892484426],[116,-37,67,0.7577538341283798],[116,-37,68,0.7593673095107079],[116,-37,69,0.7606197725981474],[116,-37,70,0.7615283373743296],[116,-37,71,0.7625750713050365],[116,-37,72,0.7640373334288597],[116,-37,73,0.7655998021364212],[116,-37,74,0.7669636029750109],[116,-37,75,0.7680046632885933],[116,-37,76,0.7686949148774147],[116,-37,77,0.7692526299506426],[116,-37,78,0.7702348176389933],[116,-37,79,0.7716949684545398],[116,-36,64,0.7454339601099491],[116,-36,65,0.7464778292924166],[116,-36,66,0.7480681892484426],[116,-36,67,0.7499413341283798],[116,-36,68,0.7515548095107079],[116,-36,69,0.7528072725981474],[116,-36,70,0.7537158373743296],[116,-36,71,0.7547625713050365],[116,-36,72,0.7562248334288597],[116,-36,73,0.7577873021364212],[116,-36,74,0.7591511029750109],[116,-36,75,0.7601921632885933],[116,-36,76,0.7608824148774147],[116,-36,77,0.7614401299506426],[116,-36,78,0.7624223176389933],[116,-36,79,0.7638824684545398],[116,-35,64,0.7376214601099491],[116,-35,65,0.7386653292924166],[116,-35,66,0.7402556892484426],[116,-35,67,0.7421288341283798],[116,-35,68,0.7437423095107079],[116,-35,69,0.7449947725981474],[116,-35,70,0.7459033373743296],[116,-35,71,0.7469500713050365],[116,-35,72,0.7484123334288597],[116,-35,73,0.7499748021364212],[116,-35,74,0.7513386029750109],[116,-35,75,0.7523796632885933],[116,-35,76,0.7530699148774147],[116,-35,77,0.7536276299506426],[116,-35,78,0.7546098176389933],[116,-35,79,0.7560699684545398],[116,-34,64,0.7298089601099491],[116,-34,65,0.7308528292924166],[116,-34,66,0.7324431892484426],[116,-34,67,0.7343163341283798],[116,-34,68,0.7359298095107079],[116,-34,69,0.7371822725981474],[116,-34,70,0.7380908373743296],[116,-34,71,0.7391375713050365],[116,-34,72,0.7405998334288597],[116,-34,73,0.7421623021364212],[116,-34,74,0.7435261029750109],[116,-34,75,0.7445671632885933],[116,-34,76,0.7452574148774147],[116,-34,77,0.7458151299506426],[116,-34,78,0.7467973176389933],[116,-34,79,0.7482574684545398],[116,-33,64,0.7219964601099491],[116,-33,65,0.7230403292924166],[116,-33,66,0.7246306892484426],[116,-33,67,0.7265038341283798],[116,-33,68,0.7281173095107079],[116,-33,69,0.7293697725981474],[116,-33,70,0.7302783373743296],[116,-33,71,0.7313250713050365],[116,-33,72,0.7327873334288597],[116,-33,73,0.7343498021364212],[116,-33,74,0.7357136029750109],[116,-33,75,0.7367546632885933],[116,-33,76,0.7374449148774147],[116,-33,77,0.7380026299506426],[116,-33,78,0.7389848176389933],[116,-33,79,0.7404449684545398],[116,-32,64,0.7141839601099491],[116,-32,65,0.7152278292924166],[116,-32,66,0.7168181892484426],[116,-32,67,0.7186913341283798],[116,-32,68,0.7203048095107079],[116,-32,69,0.7215572725981474],[116,-32,70,0.7224658373743296],[116,-32,71,0.7235125713050365],[116,-32,72,0.7249748334288597],[116,-32,73,0.7265373021364212],[116,-32,74,0.7279011029750109],[116,-32,75,0.7289421632885933],[116,-32,76,0.7296324148774147],[116,-32,77,0.7301901299506426],[116,-32,78,0.7311723176389933],[116,-32,79,0.7326324684545398],[116,-31,64,0.7063714601099491],[116,-31,65,0.7074153292924166],[116,-31,66,0.7090056892484426],[116,-31,67,0.7108788341283798],[116,-31,68,0.7124923095107079],[116,-31,69,0.7137447725981474],[116,-31,70,0.7146533373743296],[116,-31,71,0.7157000713050365],[116,-31,72,0.7171623334288597],[116,-31,73,0.7187248021364212],[116,-31,74,0.7200886029750109],[116,-31,75,0.7211296632885933],[116,-31,76,0.7218199148774147],[116,-31,77,0.7223776299506426],[116,-31,78,0.7233598176389933],[116,-31,79,0.7248199684545398],[116,-30,64,0.6985589601099491],[116,-30,65,0.6996028292924166],[116,-30,66,0.7011931892484426],[116,-30,67,0.7030663341283798],[116,-30,68,0.7046798095107079],[116,-30,69,0.7059322725981474],[116,-30,70,0.7068408373743296],[116,-30,71,0.7078875713050365],[116,-30,72,0.7093498334288597],[116,-30,73,0.7109123021364212],[116,-30,74,0.7122761029750109],[116,-30,75,0.7133171632885933],[116,-30,76,0.7140074148774147],[116,-30,77,0.7145651299506426],[116,-30,78,0.7155473176389933],[116,-30,79,0.7170074684545398],[116,-29,64,0.6907464601099491],[116,-29,65,0.6917903292924166],[116,-29,66,0.6933806892484426],[116,-29,67,0.6952538341283798],[116,-29,68,0.6968673095107079],[116,-29,69,0.6981197725981474],[116,-29,70,0.6990283373743296],[116,-29,71,0.7000750713050365],[116,-29,72,0.7015373334288597],[116,-29,73,0.7030998021364212],[116,-29,74,0.7044636029750109],[116,-29,75,0.7055046632885933],[116,-29,76,0.7061949148774147],[116,-29,77,0.7067526299506426],[116,-29,78,0.7077348176389933],[116,-29,79,0.7091949684545398],[116,-28,64,0.6829339601099491],[116,-28,65,0.6839778292924166],[116,-28,66,0.6855681892484426],[116,-28,67,0.6874413341283798],[116,-28,68,0.6890548095107079],[116,-28,69,0.6903072725981474],[116,-28,70,0.6912158373743296],[116,-28,71,0.6922625713050365],[116,-28,72,0.6937248334288597],[116,-28,73,0.6952873021364212],[116,-28,74,0.6966511029750109],[116,-28,75,0.6976921632885933],[116,-28,76,0.6983824148774147],[116,-28,77,0.6989401299506426],[116,-28,78,0.6999223176389933],[116,-28,79,0.7013824684545398],[116,-27,64,0.6751214601099491],[116,-27,65,0.6761653292924166],[116,-27,66,0.6777556892484426],[116,-27,67,0.6796288341283798],[116,-27,68,0.6812423095107079],[116,-27,69,0.6824947725981474],[116,-27,70,0.6834033373743296],[116,-27,71,0.6844500713050365],[116,-27,72,0.6859123334288597],[116,-27,73,0.6874748021364212],[116,-27,74,0.6888386029750109],[116,-27,75,0.6898796632885933],[116,-27,76,0.6905699148774147],[116,-27,77,0.6911276299506426],[116,-27,78,0.6921098176389933],[116,-27,79,0.6935699684545398],[116,-26,64,0.6673089601099491],[116,-26,65,0.6683528292924166],[116,-26,66,0.6699431892484426],[116,-26,67,0.6718163341283798],[116,-26,68,0.6734298095107079],[116,-26,69,0.6746822725981474],[116,-26,70,0.6755908373743296],[116,-26,71,0.6766375713050365],[116,-26,72,0.6780998334288597],[116,-26,73,0.6796623021364212],[116,-26,74,0.6810261029750109],[116,-26,75,0.6820671632885933],[116,-26,76,0.6827574148774147],[116,-26,77,0.6833151299506426],[116,-26,78,0.6842973176389933],[116,-26,79,0.6857574684545398],[116,-25,64,0.6594964601099491],[116,-25,65,0.6605403292924166],[116,-25,66,0.6621306892484426],[116,-25,67,0.6640038341283798],[116,-25,68,0.6656173095107079],[116,-25,69,0.6668697725981474],[116,-25,70,0.6677783373743296],[116,-25,71,0.6688250713050365],[116,-25,72,0.6702873334288597],[116,-25,73,0.6718498021364212],[116,-25,74,0.6732136029750109],[116,-25,75,0.6742546632885933],[116,-25,76,0.6749449148774147],[116,-25,77,0.6755026299506426],[116,-25,78,0.6764848176389933],[116,-25,79,0.6779449684545398],[116,-24,64,0.6516839601099491],[116,-24,65,0.6527278292924166],[116,-24,66,0.6543181892484426],[116,-24,67,0.6561913341283798],[116,-24,68,0.6578048095107079],[116,-24,69,0.6590572725981474],[116,-24,70,0.6599658373743296],[116,-24,71,0.6610125713050365],[116,-24,72,0.6624748334288597],[116,-24,73,0.6640373021364212],[116,-24,74,0.6654011029750109],[116,-24,75,0.6664421632885933],[116,-24,76,0.6671324148774147],[116,-24,77,0.6676901299506426],[116,-24,78,0.6686723176389933],[116,-24,79,0.6701324684545398],[116,-23,64,0.6438714601099491],[116,-23,65,0.6449153292924166],[116,-23,66,0.6465056892484426],[116,-23,67,0.6483788341283798],[116,-23,68,0.6499923095107079],[116,-23,69,0.6512447725981474],[116,-23,70,0.6521533373743296],[116,-23,71,0.6532000713050365],[116,-23,72,0.6546623334288597],[116,-23,73,0.6562248021364212],[116,-23,74,0.6575886029750109],[116,-23,75,0.6586296632885933],[116,-23,76,0.6593199148774147],[116,-23,77,0.6598776299506426],[116,-23,78,0.6608598176389933],[116,-23,79,0.6623199684545398],[116,-22,64,0.6360589601099491],[116,-22,65,0.6371028292924166],[116,-22,66,0.6386931892484426],[116,-22,67,0.6405663341283798],[116,-22,68,0.6421798095107079],[116,-22,69,0.6434322725981474],[116,-22,70,0.6443408373743296],[116,-22,71,0.6453875713050365],[116,-22,72,0.6468498334288597],[116,-22,73,0.6484123021364212],[116,-22,74,0.6497761029750109],[116,-22,75,0.6508171632885933],[116,-22,76,0.6515074148774147],[116,-22,77,0.6520651299506426],[116,-22,78,0.6530473176389933],[116,-22,79,0.6545074684545398],[116,-21,64,0.6282464601099491],[116,-21,65,0.6292903292924166],[116,-21,66,0.6308806892484426],[116,-21,67,0.6327538341283798],[116,-21,68,0.6343673095107079],[116,-21,69,0.6356197725981474],[116,-21,70,0.6365283373743296],[116,-21,71,0.6375750713050365],[116,-21,72,0.6390373334288597],[116,-21,73,0.6405998021364212],[116,-21,74,0.6419636029750109],[116,-21,75,0.6430046632885933],[116,-21,76,0.6436949148774147],[116,-21,77,0.6442526299506426],[116,-21,78,0.6452348176389933],[116,-21,79,0.6466949684545398],[116,-20,64,0.6204339601099491],[116,-20,65,0.6214778292924166],[116,-20,66,0.6230681892484426],[116,-20,67,0.6249413341283798],[116,-20,68,0.6265548095107079],[116,-20,69,0.6278072725981474],[116,-20,70,0.6287158373743296],[116,-20,71,0.6297625713050365],[116,-20,72,0.6312248334288597],[116,-20,73,0.6327873021364212],[116,-20,74,0.6341511029750109],[116,-20,75,0.6351921632885933],[116,-20,76,0.6358824148774147],[116,-20,77,0.6364401299506426],[116,-20,78,0.6374223176389933],[116,-20,79,0.6388824684545398],[116,-19,64,0.6126214601099491],[116,-19,65,0.6136653292924166],[116,-19,66,0.6152556892484426],[116,-19,67,0.6171288341283798],[116,-19,68,0.6187423095107079],[116,-19,69,0.6199947725981474],[116,-19,70,0.6209033373743296],[116,-19,71,0.6219500713050365],[116,-19,72,0.6234123334288597],[116,-19,73,0.6249748021364212],[116,-19,74,0.6263386029750109],[116,-19,75,0.6273796632885933],[116,-19,76,0.6280699148774147],[116,-19,77,0.6286276299506426],[116,-19,78,0.6296098176389933],[116,-19,79,0.6310699684545398],[116,-18,64,0.6048089601099491],[116,-18,65,0.6058528292924166],[116,-18,66,0.6074431892484426],[116,-18,67,0.6093163341283798],[116,-18,68,0.6109298095107079],[116,-18,69,0.6121822725981474],[116,-18,70,0.6130908373743296],[116,-18,71,0.6141375713050365],[116,-18,72,0.6155998334288597],[116,-18,73,0.6171623021364212],[116,-18,74,0.6185261029750109],[116,-18,75,0.6195671632885933],[116,-18,76,0.6202574148774147],[116,-18,77,0.6208151299506426],[116,-18,78,0.6217973176389933],[116,-18,79,0.6232574684545398],[116,-17,64,0.5969964601099491],[116,-17,65,0.5980403292924166],[116,-17,66,0.5996306892484426],[116,-17,67,0.6015038341283798],[116,-17,68,0.6031173095107079],[116,-17,69,0.6043697725981474],[116,-17,70,0.6052783373743296],[116,-17,71,0.6063250713050365],[116,-17,72,0.6077873334288597],[116,-17,73,0.6093498021364212],[116,-17,74,0.6107136029750109],[116,-17,75,0.6117546632885933],[116,-17,76,0.6124449148774147],[116,-17,77,0.6130026299506426],[116,-17,78,0.6139848176389933],[116,-17,79,0.6154449684545398],[116,-16,64,0.5891839601099491],[116,-16,65,0.5902278292924166],[116,-16,66,0.5918181892484426],[116,-16,67,0.5936913341283798],[116,-16,68,0.5953048095107079],[116,-16,69,0.5965572725981474],[116,-16,70,0.5974658373743296],[116,-16,71,0.5985125713050365],[116,-16,72,0.5999748334288597],[116,-16,73,0.6015373021364212],[116,-16,74,0.6029011029750109],[116,-16,75,0.6039421632885933],[116,-16,76,0.6046324148774147],[116,-16,77,0.6051901299506426],[116,-16,78,0.6061723176389933],[116,-16,79,0.6076324684545398],[116,-15,64,0.5813714601099491],[116,-15,65,0.5824153292924166],[116,-15,66,0.5840056892484426],[116,-15,67,0.5858788341283798],[116,-15,68,0.5874923095107079],[116,-15,69,0.5887447725981474],[116,-15,70,0.5896533373743296],[116,-15,71,0.5907000713050365],[116,-15,72,0.5921623334288597],[116,-15,73,0.5937248021364212],[116,-15,74,0.5950886029750109],[116,-15,75,0.5961296632885933],[116,-15,76,0.5968199148774147],[116,-15,77,0.5973776299506426],[116,-15,78,0.5983598176389933],[116,-15,79,0.5998199684545398],[116,-14,64,0.5735589601099491],[116,-14,65,0.5746028292924166],[116,-14,66,0.5761931892484426],[116,-14,67,0.5780663341283798],[116,-14,68,0.5796798095107079],[116,-14,69,0.5809322725981474],[116,-14,70,0.5818408373743296],[116,-14,71,0.5828875713050365],[116,-14,72,0.5843498334288597],[116,-14,73,0.5859123021364212],[116,-14,74,0.5872761029750109],[116,-14,75,0.5883171632885933],[116,-14,76,0.5890074148774147],[116,-14,77,0.5895651299506426],[116,-14,78,0.5905473176389933],[116,-14,79,0.5920074684545398],[116,-13,64,0.5657464601099491],[116,-13,65,0.5667903292924166],[116,-13,66,0.5683806892484426],[116,-13,67,0.5702538341283798],[116,-13,68,0.5718673095107079],[116,-13,69,0.5731197725981474],[116,-13,70,0.5740283373743296],[116,-13,71,0.5750750713050365],[116,-13,72,0.5765373334288597],[116,-13,73,0.5780998021364212],[116,-13,74,0.5794636029750109],[116,-13,75,0.5805046632885933],[116,-13,76,0.5811949148774147],[116,-13,77,0.5817526299506426],[116,-13,78,0.5827348176389933],[116,-13,79,0.5841949684545398],[116,-12,64,0.5579339601099491],[116,-12,65,0.5589778292924166],[116,-12,66,0.5605681892484426],[116,-12,67,0.5624413341283798],[116,-12,68,0.5640548095107079],[116,-12,69,0.5653072725981474],[116,-12,70,0.5662158373743296],[116,-12,71,0.5672625713050365],[116,-12,72,0.5687248334288597],[116,-12,73,0.5702873021364212],[116,-12,74,0.5716511029750109],[116,-12,75,0.5726921632885933],[116,-12,76,0.5733824148774147],[116,-12,77,0.5739401299506426],[116,-12,78,0.5749223176389933],[116,-12,79,0.5763824684545398],[116,-11,64,0.5501214601099491],[116,-11,65,0.5511653292924166],[116,-11,66,0.5527556892484426],[116,-11,67,0.5546288341283798],[116,-11,68,0.5562423095107079],[116,-11,69,0.5574947725981474],[116,-11,70,0.5584033373743296],[116,-11,71,0.5594500713050365],[116,-11,72,0.5609123334288597],[116,-11,73,0.5624748021364212],[116,-11,74,0.5638386029750109],[116,-11,75,0.5648796632885933],[116,-11,76,0.5655699148774147],[116,-11,77,0.5661276299506426],[116,-11,78,0.5671098176389933],[116,-11,79,0.5685699684545398],[116,-10,64,0.5423089601099491],[116,-10,65,0.5433528292924166],[116,-10,66,0.5449431892484426],[116,-10,67,0.5468163341283798],[116,-10,68,0.5484298095107079],[116,-10,69,0.5496822725981474],[116,-10,70,0.5505908373743296],[116,-10,71,0.5516375713050365],[116,-10,72,0.5530998334288597],[116,-10,73,0.5546623021364212],[116,-10,74,0.5560261029750109],[116,-10,75,0.5570671632885933],[116,-10,76,0.5577574148774147],[116,-10,77,0.5583151299506426],[116,-10,78,0.5592973176389933],[116,-10,79,0.5607574684545398],[116,-9,64,0.5344964601099491],[116,-9,65,0.5355403292924166],[116,-9,66,0.5371306892484426],[116,-9,67,0.5390038341283798],[116,-9,68,0.5406173095107079],[116,-9,69,0.5418697725981474],[116,-9,70,0.5427783373743296],[116,-9,71,0.5438250713050365],[116,-9,72,0.5452873334288597],[116,-9,73,0.5468498021364212],[116,-9,74,0.5482136029750109],[116,-9,75,0.5492546632885933],[116,-9,76,0.5499449148774147],[116,-9,77,0.5505026299506426],[116,-9,78,0.5514848176389933],[116,-9,79,0.5529449684545398],[116,-8,64,0.5266839601099491],[116,-8,65,0.5277278292924166],[116,-8,66,0.5293181892484426],[116,-8,67,0.5311913341283798],[116,-8,68,0.5328048095107079],[116,-8,69,0.5340572725981474],[116,-8,70,0.5349658373743296],[116,-8,71,0.5360125713050365],[116,-8,72,0.5374748334288597],[116,-8,73,0.5390373021364212],[116,-8,74,0.5404011029750109],[116,-8,75,0.5414421632885933],[116,-8,76,0.5421324148774147],[116,-8,77,0.5426901299506426],[116,-8,78,0.5436723176389933],[116,-8,79,0.5451324684545398],[116,-7,64,0.5188714601099491],[116,-7,65,0.5199153292924166],[116,-7,66,0.5215056892484426],[116,-7,67,0.5233788341283798],[116,-7,68,0.5249923095107079],[116,-7,69,0.5262447725981474],[116,-7,70,0.5271533373743296],[116,-7,71,0.5282000713050365],[116,-7,72,0.5296623334288597],[116,-7,73,0.5312248021364212],[116,-7,74,0.5325886029750109],[116,-7,75,0.5336296632885933],[116,-7,76,0.5343199148774147],[116,-7,77,0.5348776299506426],[116,-7,78,0.5358598176389933],[116,-7,79,0.5373199684545398],[116,-6,64,0.5110589601099491],[116,-6,65,0.5121028292924166],[116,-6,66,0.5136931892484426],[116,-6,67,0.5155663341283798],[116,-6,68,0.5171798095107079],[116,-6,69,0.5184322725981474],[116,-6,70,0.5193408373743296],[116,-6,71,0.5203875713050365],[116,-6,72,0.5218498334288597],[116,-6,73,0.5234123021364212],[116,-6,74,0.5247761029750109],[116,-6,75,0.5258171632885933],[116,-6,76,0.5265074148774147],[116,-6,77,0.5270651299506426],[116,-6,78,0.5280473176389933],[116,-6,79,0.5295074684545398],[116,-5,64,0.5032464601099491],[116,-5,65,0.5042903292924166],[116,-5,66,0.5058806892484426],[116,-5,67,0.5077538341283798],[116,-5,68,0.5093673095107079],[116,-5,69,0.5106197725981474],[116,-5,70,0.5115283373743296],[116,-5,71,0.5125750713050365],[116,-5,72,0.5140373334288597],[116,-5,73,0.5155998021364212],[116,-5,74,0.5169636029750109],[116,-5,75,0.5180046632885933],[116,-5,76,0.5186949148774147],[116,-5,77,0.5192526299506426],[116,-5,78,0.5202348176389933],[116,-5,79,0.5216949684545398],[116,-4,64,0.4954339601099491],[116,-4,65,0.4964778292924166],[116,-4,66,0.49806818924844265],[116,-4,67,0.4999413341283798],[116,-4,68,0.5015548095107079],[116,-4,69,0.5028072725981474],[116,-4,70,0.5037158373743296],[116,-4,71,0.5047625713050365],[116,-4,72,0.5062248334288597],[116,-4,73,0.5077873021364212],[116,-4,74,0.5091511029750109],[116,-4,75,0.5101921632885933],[116,-4,76,0.5108824148774147],[116,-4,77,0.5114401299506426],[116,-4,78,0.5124223176389933],[116,-4,79,0.5138824684545398],[116,-3,64,0.4876214601099491],[116,-3,65,0.4886653292924166],[116,-3,66,0.49025568924844265],[116,-3,67,0.4921288341283798],[116,-3,68,0.49374230951070786],[116,-3,69,0.4949947725981474],[116,-3,70,0.49590333737432957],[116,-3,71,0.49695007130503654],[116,-3,72,0.4984123334288597],[116,-3,73,0.4999748021364212],[116,-3,74,0.5013386029750109],[116,-3,75,0.5023796632885933],[116,-3,76,0.5030699148774147],[116,-3,77,0.5036276299506426],[116,-3,78,0.5046098176389933],[116,-3,79,0.5060699684545398],[116,-2,64,0.4798089601099491],[116,-2,65,0.4808528292924166],[116,-2,66,0.48244318924844265],[116,-2,67,0.4843163341283798],[116,-2,68,0.48592980951070786],[116,-2,69,0.4871822725981474],[116,-2,70,0.48809083737432957],[116,-2,71,0.48913757130503654],[116,-2,72,0.4905998334288597],[116,-2,73,0.4921623021364212],[116,-2,74,0.49352610297501087],[116,-2,75,0.4945671632885933],[116,-2,76,0.4952574148774147],[116,-2,77,0.4958151299506426],[116,-2,78,0.49679731763899326],[116,-2,79,0.4982574684545398],[116,-1,64,0.4719964601099491],[116,-1,65,0.4730403292924166],[116,-1,66,0.47463068924844265],[116,-1,67,0.4765038341283798],[116,-1,68,0.47811730951070786],[116,-1,69,0.4793697725981474],[116,-1,70,0.48027833737432957],[116,-1,71,0.48132507130503654],[116,-1,72,0.4827873334288597],[116,-1,73,0.4843498021364212],[116,-1,74,0.48571360297501087],[116,-1,75,0.4867546632885933],[116,-1,76,0.4874449148774147],[116,-1,77,0.4880026299506426],[116,-1,78,0.48898481763899326],[116,-1,79,0.4904449684545398],[116,0,64,0.4641839601099491],[116,0,65,0.4652278292924166],[116,0,66,0.46681818924844265],[116,0,67,0.4686913341283798],[116,0,68,0.47030480951070786],[116,0,69,0.4715572725981474],[116,0,70,0.47246583737432957],[116,0,71,0.47351257130503654],[116,0,72,0.4749748334288597],[116,0,73,0.4765373021364212],[116,0,74,0.47790110297501087],[116,0,75,0.4789421632885933],[116,0,76,0.4796324148774147],[116,0,77,0.4801901299506426],[116,0,78,0.48117231763899326],[116,0,79,0.4826324684545398],[116,1,64,0.4563714601099491],[116,1,65,0.4574153292924166],[116,1,66,0.45900568924844265],[116,1,67,0.4608788341283798],[116,1,68,0.46249230951070786],[116,1,69,0.4637447725981474],[116,1,70,0.46465333737432957],[116,1,71,0.46570007130503654],[116,1,72,0.4671623334288597],[116,1,73,0.4687248021364212],[116,1,74,0.47008860297501087],[116,1,75,0.4711296632885933],[116,1,76,0.4718199148774147],[116,1,77,0.4723776299506426],[116,1,78,0.47335981763899326],[116,1,79,0.4748199684545398],[116,2,64,0.4485589601099491],[116,2,65,0.4496028292924166],[116,2,66,0.45119318924844265],[116,2,67,0.4530663341283798],[116,2,68,0.45467980951070786],[116,2,69,0.4559322725981474],[116,2,70,0.45684083737432957],[116,2,71,0.45788757130503654],[116,2,72,0.4593498334288597],[116,2,73,0.4609123021364212],[116,2,74,0.46227610297501087],[116,2,75,0.4633171632885933],[116,2,76,0.4640074148774147],[116,2,77,0.4645651299506426],[116,2,78,0.46554731763899326],[116,2,79,0.4670074684545398],[116,3,64,0.4407464601099491],[116,3,65,0.4417903292924166],[116,3,66,0.44338068924844265],[116,3,67,0.4452538341283798],[116,3,68,0.44686730951070786],[116,3,69,0.4481197725981474],[116,3,70,0.44902833737432957],[116,3,71,0.45007507130503654],[116,3,72,0.4515373334288597],[116,3,73,0.4530998021364212],[116,3,74,0.45446360297501087],[116,3,75,0.4555046632885933],[116,3,76,0.4561949148774147],[116,3,77,0.4567526299506426],[116,3,78,0.45773481763899326],[116,3,79,0.4591949684545398],[116,4,64,0.4329339601099491],[116,4,65,0.4339778292924166],[116,4,66,0.43556818924844265],[116,4,67,0.4374413341283798],[116,4,68,0.43905480951070786],[116,4,69,0.4403072725981474],[116,4,70,0.44121583737432957],[116,4,71,0.44226257130503654],[116,4,72,0.4437248334288597],[116,4,73,0.4452873021364212],[116,4,74,0.44665110297501087],[116,4,75,0.4476921632885933],[116,4,76,0.4483824148774147],[116,4,77,0.4489401299506426],[116,4,78,0.44992231763899326],[116,4,79,0.4513824684545398],[116,5,64,0.4251214601099491],[116,5,65,0.4261653292924166],[116,5,66,0.42775568924844265],[116,5,67,0.4296288341283798],[116,5,68,0.43124230951070786],[116,5,69,0.4324947725981474],[116,5,70,0.43340333737432957],[116,5,71,0.43445007130503654],[116,5,72,0.4359123334288597],[116,5,73,0.4374748021364212],[116,5,74,0.43883860297501087],[116,5,75,0.4398796632885933],[116,5,76,0.4405699148774147],[116,5,77,0.4411276299506426],[116,5,78,0.44210981763899326],[116,5,79,0.4435699684545398],[116,6,64,0.4173089601099491],[116,6,65,0.4183528292924166],[116,6,66,0.41994318924844265],[116,6,67,0.4218163341283798],[116,6,68,0.42342980951070786],[116,6,69,0.4246822725981474],[116,6,70,0.42559083737432957],[116,6,71,0.42663757130503654],[116,6,72,0.4280998334288597],[116,6,73,0.4296623021364212],[116,6,74,0.43102610297501087],[116,6,75,0.4320671632885933],[116,6,76,0.4327574148774147],[116,6,77,0.4333151299506426],[116,6,78,0.43429731763899326],[116,6,79,0.4357574684545398],[116,7,64,0.4094964601099491],[116,7,65,0.4105403292924166],[116,7,66,0.41213068924844265],[116,7,67,0.4140038341283798],[116,7,68,0.41561730951070786],[116,7,69,0.4168697725981474],[116,7,70,0.41777833737432957],[116,7,71,0.41882507130503654],[116,7,72,0.4202873334288597],[116,7,73,0.4218498021364212],[116,7,74,0.42321360297501087],[116,7,75,0.4242546632885933],[116,7,76,0.4249449148774147],[116,7,77,0.4255026299506426],[116,7,78,0.42648481763899326],[116,7,79,0.4279449684545398],[116,8,64,0.4016839601099491],[116,8,65,0.4027278292924166],[116,8,66,0.40431818924844265],[116,8,67,0.4061913341283798],[116,8,68,0.40780480951070786],[116,8,69,0.4090572725981474],[116,8,70,0.40996583737432957],[116,8,71,0.41101257130503654],[116,8,72,0.4124748334288597],[116,8,73,0.4140373021364212],[116,8,74,0.41540110297501087],[116,8,75,0.4164421632885933],[116,8,76,0.4171324148774147],[116,8,77,0.4176901299506426],[116,8,78,0.41867231763899326],[116,8,79,0.4201324684545398],[116,9,64,0.3938714601099491],[116,9,65,0.3949153292924166],[116,9,66,0.39650568924844265],[116,9,67,0.3983788341283798],[116,9,68,0.39999230951070786],[116,9,69,0.4012447725981474],[116,9,70,0.40215333737432957],[116,9,71,0.40320007130503654],[116,9,72,0.4046623334288597],[116,9,73,0.4062248021364212],[116,9,74,0.40758860297501087],[116,9,75,0.4086296632885933],[116,9,76,0.4093199148774147],[116,9,77,0.4098776299506426],[116,9,78,0.41085981763899326],[116,9,79,0.4123199684545398],[116,10,64,0.3860589601099491],[116,10,65,0.3871028292924166],[116,10,66,0.38869318924844265],[116,10,67,0.3905663341283798],[116,10,68,0.39217980951070786],[116,10,69,0.3934322725981474],[116,10,70,0.39434083737432957],[116,10,71,0.39538757130503654],[116,10,72,0.3968498334288597],[116,10,73,0.3984123021364212],[116,10,74,0.39977610297501087],[116,10,75,0.4008171632885933],[116,10,76,0.4015074148774147],[116,10,77,0.4020651299506426],[116,10,78,0.40304731763899326],[116,10,79,0.4045074684545398],[116,11,64,0.3782464601099491],[116,11,65,0.3792903292924166],[116,11,66,0.38088068924844265],[116,11,67,0.3827538341283798],[116,11,68,0.38436730951070786],[116,11,69,0.3856197725981474],[116,11,70,0.38652833737432957],[116,11,71,0.38757507130503654],[116,11,72,0.3890373334288597],[116,11,73,0.3905998021364212],[116,11,74,0.39196360297501087],[116,11,75,0.3930046632885933],[116,11,76,0.3936949148774147],[116,11,77,0.3942526299506426],[116,11,78,0.39523481763899326],[116,11,79,0.3966949684545398],[116,12,64,0.3704339601099491],[116,12,65,0.3714778292924166],[116,12,66,0.37306818924844265],[116,12,67,0.3749413341283798],[116,12,68,0.37655480951070786],[116,12,69,0.3778072725981474],[116,12,70,0.37871583737432957],[116,12,71,0.37976257130503654],[116,12,72,0.3812248334288597],[116,12,73,0.3827873021364212],[116,12,74,0.38415110297501087],[116,12,75,0.3851921632885933],[116,12,76,0.3858824148774147],[116,12,77,0.3864401299506426],[116,12,78,0.38742231763899326],[116,12,79,0.3888824684545398],[116,13,64,0.3626214601099491],[116,13,65,0.3636653292924166],[116,13,66,0.36525568924844265],[116,13,67,0.3671288341283798],[116,13,68,0.36874230951070786],[116,13,69,0.3699947725981474],[116,13,70,0.37090333737432957],[116,13,71,0.37195007130503654],[116,13,72,0.3734123334288597],[116,13,73,0.3749748021364212],[116,13,74,0.37633860297501087],[116,13,75,0.3773796632885933],[116,13,76,0.3780699148774147],[116,13,77,0.3786276299506426],[116,13,78,0.37960981763899326],[116,13,79,0.3810699684545398],[116,14,64,0.3548089601099491],[116,14,65,0.3558528292924166],[116,14,66,0.35744318924844265],[116,14,67,0.3593163341283798],[116,14,68,0.36092980951070786],[116,14,69,0.3621822725981474],[116,14,70,0.36309083737432957],[116,14,71,0.36413757130503654],[116,14,72,0.3655998334288597],[116,14,73,0.3671623021364212],[116,14,74,0.36852610297501087],[116,14,75,0.3695671632885933],[116,14,76,0.3702574148774147],[116,14,77,0.3708151299506426],[116,14,78,0.37179731763899326],[116,14,79,0.3732574684545398],[116,15,64,0.3469964601099491],[116,15,65,0.3480403292924166],[116,15,66,0.34963068924844265],[116,15,67,0.3515038341283798],[116,15,68,0.35311730951070786],[116,15,69,0.3543697725981474],[116,15,70,0.35527833737432957],[116,15,71,0.35632507130503654],[116,15,72,0.3577873334288597],[116,15,73,0.3593498021364212],[116,15,74,0.36071360297501087],[116,15,75,0.3617546632885933],[116,15,76,0.3624449148774147],[116,15,77,0.3630026299506426],[116,15,78,0.36398481763899326],[116,15,79,0.3654449684545398],[116,16,64,0.3391839601099491],[116,16,65,0.3402278292924166],[116,16,66,0.34181818924844265],[116,16,67,0.3436913341283798],[116,16,68,0.34530480951070786],[116,16,69,0.3465572725981474],[116,16,70,0.34746583737432957],[116,16,71,0.34851257130503654],[116,16,72,0.3499748334288597],[116,16,73,0.3515373021364212],[116,16,74,0.35290110297501087],[116,16,75,0.3539421632885933],[116,16,76,0.3546324148774147],[116,16,77,0.3551901299506426],[116,16,78,0.35617231763899326],[116,16,79,0.3576324684545398],[116,17,64,0.3313714601099491],[116,17,65,0.3324153292924166],[116,17,66,0.33400568924844265],[116,17,67,0.3358788341283798],[116,17,68,0.33749230951070786],[116,17,69,0.3387447725981474],[116,17,70,0.33965333737432957],[116,17,71,0.34070007130503654],[116,17,72,0.3421623334288597],[116,17,73,0.3437248021364212],[116,17,74,0.34508860297501087],[116,17,75,0.3461296632885933],[116,17,76,0.3468199148774147],[116,17,77,0.3473776299506426],[116,17,78,0.34835981763899326],[116,17,79,0.3498199684545398],[116,18,64,0.3235589601099491],[116,18,65,0.3246028292924166],[116,18,66,0.32619318924844265],[116,18,67,0.3280663341283798],[116,18,68,0.32967980951070786],[116,18,69,0.3309322725981474],[116,18,70,0.33184083737432957],[116,18,71,0.33288757130503654],[116,18,72,0.3343498334288597],[116,18,73,0.3359123021364212],[116,18,74,0.33727610297501087],[116,18,75,0.3383171632885933],[116,18,76,0.3390074148774147],[116,18,77,0.3395651299506426],[116,18,78,0.34054731763899326],[116,18,79,0.3420074684545398],[116,19,64,0.3157464601099491],[116,19,65,0.3167903292924166],[116,19,66,0.31838068924844265],[116,19,67,0.3202538341283798],[116,19,68,0.32186730951070786],[116,19,69,0.3231197725981474],[116,19,70,0.32402833737432957],[116,19,71,0.32507507130503654],[116,19,72,0.3265373334288597],[116,19,73,0.3280998021364212],[116,19,74,0.32946360297501087],[116,19,75,0.3305046632885933],[116,19,76,0.3311949148774147],[116,19,77,0.3317526299506426],[116,19,78,0.33273481763899326],[116,19,79,0.3341949684545398],[116,20,64,0.3079339601099491],[116,20,65,0.3089778292924166],[116,20,66,0.31056818924844265],[116,20,67,0.3124413341283798],[116,20,68,0.31405480951070786],[116,20,69,0.3153072725981474],[116,20,70,0.31621583737432957],[116,20,71,0.31726257130503654],[116,20,72,0.3187248334288597],[116,20,73,0.3202873021364212],[116,20,74,0.32165110297501087],[116,20,75,0.3226921632885933],[116,20,76,0.3233824148774147],[116,20,77,0.3239401299506426],[116,20,78,0.32492231763899326],[116,20,79,0.3263824684545398],[116,21,64,0.3001214601099491],[116,21,65,0.3011653292924166],[116,21,66,0.30275568924844265],[116,21,67,0.3046288341283798],[116,21,68,0.30624230951070786],[116,21,69,0.3074947725981474],[116,21,70,0.30840333737432957],[116,21,71,0.30945007130503654],[116,21,72,0.3109123334288597],[116,21,73,0.3124748021364212],[116,21,74,0.31383860297501087],[116,21,75,0.3148796632885933],[116,21,76,0.3155699148774147],[116,21,77,0.3161276299506426],[116,21,78,0.31710981763899326],[116,21,79,0.3185699684545398],[116,22,64,0.2923089601099491],[116,22,65,0.2933528292924166],[116,22,66,0.29494318924844265],[116,22,67,0.2968163341283798],[116,22,68,0.29842980951070786],[116,22,69,0.2996822725981474],[116,22,70,0.30059083737432957],[116,22,71,0.30163757130503654],[116,22,72,0.3030998334288597],[116,22,73,0.3046623021364212],[116,22,74,0.30602610297501087],[116,22,75,0.3070671632885933],[116,22,76,0.3077574148774147],[116,22,77,0.3083151299506426],[116,22,78,0.30929731763899326],[116,22,79,0.3107574684545398],[116,23,64,0.2844964601099491],[116,23,65,0.2855403292924166],[116,23,66,0.28713068924844265],[116,23,67,0.2890038341283798],[116,23,68,0.29061730951070786],[116,23,69,0.2918697725981474],[116,23,70,0.29277833737432957],[116,23,71,0.29382507130503654],[116,23,72,0.2952873334288597],[116,23,73,0.2968498021364212],[116,23,74,0.29821360297501087],[116,23,75,0.2992546632885933],[116,23,76,0.2999449148774147],[116,23,77,0.3005026299506426],[116,23,78,0.30148481763899326],[116,23,79,0.3029449684545398],[116,24,64,0.2766839601099491],[116,24,65,0.2777278292924166],[116,24,66,0.27931818924844265],[116,24,67,0.2811913341283798],[116,24,68,0.28280480951070786],[116,24,69,0.2840572725981474],[116,24,70,0.28496583737432957],[116,24,71,0.28601257130503654],[116,24,72,0.2874748334288597],[116,24,73,0.2890373021364212],[116,24,74,0.29040110297501087],[116,24,75,0.2914421632885933],[116,24,76,0.2921324148774147],[116,24,77,0.2926901299506426],[116,24,78,0.29367231763899326],[116,24,79,0.2951324684545398],[116,25,64,0.2688714601099491],[116,25,65,0.2699153292924166],[116,25,66,0.27150568924844265],[116,25,67,0.2733788341283798],[116,25,68,0.27499230951070786],[116,25,69,0.2762447725981474],[116,25,70,0.27715333737432957],[116,25,71,0.27820007130503654],[116,25,72,0.2796623334288597],[116,25,73,0.2812248021364212],[116,25,74,0.28258860297501087],[116,25,75,0.2836296632885933],[116,25,76,0.2843199148774147],[116,25,77,0.2848776299506426],[116,25,78,0.28585981763899326],[116,25,79,0.2873199684545398],[116,26,64,0.2610589601099491],[116,26,65,0.2621028292924166],[116,26,66,0.26369318924844265],[116,26,67,0.2655663341283798],[116,26,68,0.26717980951070786],[116,26,69,0.2684322725981474],[116,26,70,0.26934083737432957],[116,26,71,0.27038757130503654],[116,26,72,0.2718498334288597],[116,26,73,0.2734123021364212],[116,26,74,0.27477610297501087],[116,26,75,0.2758171632885933],[116,26,76,0.2765074148774147],[116,26,77,0.2770651299506426],[116,26,78,0.27804731763899326],[116,26,79,0.2795074684545398],[116,27,64,0.2532464601099491],[116,27,65,0.2542903292924166],[116,27,66,0.25588068924844265],[116,27,67,0.2577538341283798],[116,27,68,0.25936730951070786],[116,27,69,0.2606197725981474],[116,27,70,0.26152833737432957],[116,27,71,0.26257507130503654],[116,27,72,0.2640373334288597],[116,27,73,0.2655998021364212],[116,27,74,0.26696360297501087],[116,27,75,0.2680046632885933],[116,27,76,0.2686949148774147],[116,27,77,0.2692526299506426],[116,27,78,0.27023481763899326],[116,27,79,0.2716949684545398],[116,28,64,0.2454339601099491],[116,28,65,0.24647782929241657],[116,28,66,0.24806818924844265],[116,28,67,0.24994133412837982],[116,28,68,0.25155480951070786],[116,28,69,0.2528072725981474],[116,28,70,0.25371583737432957],[116,28,71,0.25476257130503654],[116,28,72,0.2562248334288597],[116,28,73,0.2577873021364212],[116,28,74,0.25915110297501087],[116,28,75,0.2601921632885933],[116,28,76,0.2608824148774147],[116,28,77,0.2614401299506426],[116,28,78,0.26242231763899326],[116,28,79,0.2638824684545398],[116,29,64,0.2376214601099491],[116,29,65,0.23866532929241657],[116,29,66,0.24025568924844265],[116,29,67,0.24212883412837982],[116,29,68,0.24374230951070786],[116,29,69,0.2449947725981474],[116,29,70,0.24590333737432957],[116,29,71,0.24695007130503654],[116,29,72,0.2484123334288597],[116,29,73,0.2499748021364212],[116,29,74,0.25133860297501087],[116,29,75,0.2523796632885933],[116,29,76,0.2530699148774147],[116,29,77,0.2536276299506426],[116,29,78,0.25460981763899326],[116,29,79,0.2560699684545398],[116,30,64,0.2298089601099491],[116,30,65,0.23085282929241657],[116,30,66,0.23244318924844265],[116,30,67,0.23431633412837982],[116,30,68,0.23592980951070786],[116,30,69,0.2371822725981474],[116,30,70,0.23809083737432957],[116,30,71,0.23913757130503654],[116,30,72,0.2405998334288597],[116,30,73,0.2421623021364212],[116,30,74,0.24352610297501087],[116,30,75,0.2445671632885933],[116,30,76,0.2452574148774147],[116,30,77,0.24581512995064259],[116,30,78,0.24679731763899326],[116,30,79,0.24825746845453978],[116,31,64,0.2219964601099491],[116,31,65,0.22304032929241657],[116,31,66,0.22463068924844265],[116,31,67,0.22650383412837982],[116,31,68,0.22811730951070786],[116,31,69,0.2293697725981474],[116,31,70,0.23027833737432957],[116,31,71,0.23132507130503654],[116,31,72,0.2327873334288597],[116,31,73,0.2343498021364212],[116,31,74,0.23571360297501087],[116,31,75,0.2367546632885933],[116,31,76,0.2374449148774147],[116,31,77,0.23800262995064259],[116,31,78,0.23898481763899326],[116,31,79,0.24044496845453978],[116,32,64,0.2141839601099491],[116,32,65,0.21522782929241657],[116,32,66,0.21681818924844265],[116,32,67,0.21869133412837982],[116,32,68,0.22030480951070786],[116,32,69,0.2215572725981474],[116,32,70,0.22246583737432957],[116,32,71,0.22351257130503654],[116,32,72,0.2249748334288597],[116,32,73,0.2265373021364212],[116,32,74,0.22790110297501087],[116,32,75,0.2289421632885933],[116,32,76,0.2296324148774147],[116,32,77,0.23019012995064259],[116,32,78,0.23117231763899326],[116,32,79,0.23263246845453978],[116,33,64,0.2063714601099491],[116,33,65,0.20741532929241657],[116,33,66,0.20900568924844265],[116,33,67,0.21087883412837982],[116,33,68,0.21249230951070786],[116,33,69,0.2137447725981474],[116,33,70,0.21465333737432957],[116,33,71,0.21570007130503654],[116,33,72,0.2171623334288597],[116,33,73,0.2187248021364212],[116,33,74,0.22008860297501087],[116,33,75,0.2211296632885933],[116,33,76,0.2218199148774147],[116,33,77,0.22237762995064259],[116,33,78,0.22335981763899326],[116,33,79,0.22481996845453978],[116,34,64,0.1985589601099491],[116,34,65,0.19960282929241657],[116,34,66,0.20119318924844265],[116,34,67,0.20306633412837982],[116,34,68,0.20467980951070786],[116,34,69,0.2059322725981474],[116,34,70,0.20684083737432957],[116,34,71,0.20788757130503654],[116,34,72,0.2093498334288597],[116,34,73,0.2109123021364212],[116,34,74,0.21227610297501087],[116,34,75,0.2133171632885933],[116,34,76,0.2140074148774147],[116,34,77,0.21456512995064259],[116,34,78,0.21554731763899326],[116,34,79,0.21700746845453978],[116,35,64,0.1907464601099491],[116,35,65,0.19179032929241657],[116,35,66,0.19338068924844265],[116,35,67,0.19525383412837982],[116,35,68,0.19686730951070786],[116,35,69,0.1981197725981474],[116,35,70,0.19902833737432957],[116,35,71,0.20007507130503654],[116,35,72,0.2015373334288597],[116,35,73,0.2030998021364212],[116,35,74,0.20446360297501087],[116,35,75,0.2055046632885933],[116,35,76,0.2061949148774147],[116,35,77,0.20675262995064259],[116,35,78,0.20773481763899326],[116,35,79,0.20919496845453978],[116,36,64,0.1829339601099491],[116,36,65,0.18397782929241657],[116,36,66,0.18556818924844265],[116,36,67,0.18744133412837982],[116,36,68,0.18905480951070786],[116,36,69,0.1903072725981474],[116,36,70,0.19121583737432957],[116,36,71,0.19226257130503654],[116,36,72,0.1937248334288597],[116,36,73,0.1952873021364212],[116,36,74,0.19665110297501087],[116,36,75,0.1976921632885933],[116,36,76,0.1983824148774147],[116,36,77,0.19894012995064259],[116,36,78,0.19992231763899326],[116,36,79,0.20138246845453978],[116,37,64,0.1751214601099491],[116,37,65,0.17616532929241657],[116,37,66,0.17775568924844265],[116,37,67,0.17962883412837982],[116,37,68,0.18124230951070786],[116,37,69,0.1824947725981474],[116,37,70,0.18340333737432957],[116,37,71,0.18445007130503654],[116,37,72,0.1859123334288597],[116,37,73,0.1874748021364212],[116,37,74,0.18883860297501087],[116,37,75,0.1898796632885933],[116,37,76,0.1905699148774147],[116,37,77,0.19112762995064259],[116,37,78,0.19210981763899326],[116,37,79,0.19356996845453978],[116,38,64,0.1673089601099491],[116,38,65,0.16835282929241657],[116,38,66,0.16994318924844265],[116,38,67,0.17181633412837982],[116,38,68,0.17342980951070786],[116,38,69,0.1746822725981474],[116,38,70,0.17559083737432957],[116,38,71,0.17663757130503654],[116,38,72,0.1780998334288597],[116,38,73,0.1796623021364212],[116,38,74,0.18102610297501087],[116,38,75,0.1820671632885933],[116,38,76,0.1827574148774147],[116,38,77,0.18331512995064259],[116,38,78,0.18429731763899326],[116,38,79,0.18575746845453978],[116,39,64,0.1594964601099491],[116,39,65,0.16054032929241657],[116,39,66,0.16213068924844265],[116,39,67,0.16400383412837982],[116,39,68,0.16561730951070786],[116,39,69,0.1668697725981474],[116,39,70,0.16777833737432957],[116,39,71,0.16882507130503654],[116,39,72,0.1702873334288597],[116,39,73,0.1718498021364212],[116,39,74,0.17321360297501087],[116,39,75,0.1742546632885933],[116,39,76,0.1749449148774147],[116,39,77,0.17550262995064259],[116,39,78,0.17648481763899326],[116,39,79,0.17794496845453978],[116,40,64,0.1516839601099491],[116,40,65,0.15272782929241657],[116,40,66,0.15431818924844265],[116,40,67,0.15619133412837982],[116,40,68,0.15780480951070786],[116,40,69,0.1590572725981474],[116,40,70,0.15996583737432957],[116,40,71,0.16101257130503654],[116,40,72,0.1624748334288597],[116,40,73,0.1640373021364212],[116,40,74,0.16540110297501087],[116,40,75,0.1664421632885933],[116,40,76,0.1671324148774147],[116,40,77,0.16769012995064259],[116,40,78,0.16867231763899326],[116,40,79,0.17013246845453978],[116,41,64,0.1438714601099491],[116,41,65,0.14491532929241657],[116,41,66,0.14650568924844265],[116,41,67,0.14837883412837982],[116,41,68,0.14999230951070786],[116,41,69,0.1512447725981474],[116,41,70,0.15215333737432957],[116,41,71,0.15320007130503654],[116,41,72,0.1546623334288597],[116,41,73,0.1562248021364212],[116,41,74,0.15758860297501087],[116,41,75,0.1586296632885933],[116,41,76,0.1593199148774147],[116,41,77,0.15987762995064259],[116,41,78,0.16085981763899326],[116,41,79,0.16231996845453978],[116,42,64,0.1360589601099491],[116,42,65,0.13710282929241657],[116,42,66,0.13869318924844265],[116,42,67,0.14056633412837982],[116,42,68,0.14217980951070786],[116,42,69,0.1434322725981474],[116,42,70,0.14434083737432957],[116,42,71,0.14538757130503654],[116,42,72,0.1468498334288597],[116,42,73,0.1484123021364212],[116,42,74,0.14977610297501087],[116,42,75,0.1508171632885933],[116,42,76,0.1515074148774147],[116,42,77,0.15206512995064259],[116,42,78,0.15304731763899326],[116,42,79,0.15450746845453978],[116,43,64,0.1282464601099491],[116,43,65,0.12929032929241657],[116,43,66,0.13088068924844265],[116,43,67,0.13275383412837982],[116,43,68,0.13436730951070786],[116,43,69,0.1356197725981474],[116,43,70,0.13652833737432957],[116,43,71,0.13757507130503654],[116,43,72,0.1390373334288597],[116,43,73,0.1405998021364212],[116,43,74,0.14196360297501087],[116,43,75,0.1430046632885933],[116,43,76,0.1436949148774147],[116,43,77,0.14425262995064259],[116,43,78,0.14523481763899326],[116,43,79,0.14669496845453978],[116,44,64,0.12043396010994911],[116,44,65,0.12147782929241657],[116,44,66,0.12306818924844265],[116,44,67,0.12494133412837982],[116,44,68,0.12655480951070786],[116,44,69,0.1278072725981474],[116,44,70,0.12871583737432957],[116,44,71,0.12976257130503654],[116,44,72,0.1312248334288597],[116,44,73,0.1327873021364212],[116,44,74,0.13415110297501087],[116,44,75,0.1351921632885933],[116,44,76,0.1358824148774147],[116,44,77,0.13644012995064259],[116,44,78,0.13742231763899326],[116,44,79,0.13888246845453978],[116,45,64,0.11262146010994911],[116,45,65,0.11366532929241657],[116,45,66,0.11525568924844265],[116,45,67,0.11712883412837982],[116,45,68,0.11874230951070786],[116,45,69,0.11999477259814739],[116,45,70,0.12090333737432957],[116,45,71,0.12195007130503654],[116,45,72,0.12341233342885971],[116,45,73,0.1249748021364212],[116,45,74,0.12633860297501087],[116,45,75,0.1273796632885933],[116,45,76,0.1280699148774147],[116,45,77,0.12862762995064259],[116,45,78,0.12960981763899326],[116,45,79,0.13106996845453978],[116,46,64,0.10480896010994911],[116,46,65,0.10585282929241657],[116,46,66,0.10744318924844265],[116,46,67,0.10931633412837982],[116,46,68,0.11092980951070786],[116,46,69,0.11218227259814739],[116,46,70,0.11309083737432957],[116,46,71,0.11413757130503654],[116,46,72,0.11559983342885971],[116,46,73,0.1171623021364212],[116,46,74,0.11852610297501087],[116,46,75,0.11956716328859329],[116,46,76,0.1202574148774147],[116,46,77,0.12081512995064259],[116,46,78,0.12179731763899326],[116,46,79,0.12325746845453978],[116,47,64,0.09699646010994911],[116,47,65,0.09804032929241657],[116,47,66,0.09963068924844265],[116,47,67,0.10150383412837982],[116,47,68,0.10311730951070786],[116,47,69,0.10436977259814739],[116,47,70,0.10527833737432957],[116,47,71,0.10632507130503654],[116,47,72,0.10778733342885971],[116,47,73,0.1093498021364212],[116,47,74,0.11071360297501087],[116,47,75,0.11175466328859329],[116,47,76,0.1124449148774147],[116,47,77,0.11300262995064259],[116,47,78,0.11398481763899326],[116,47,79,0.11544496845453978],[116,48,64,0.08918396010994911],[116,48,65,0.09022782929241657],[116,48,66,0.09181818924844265],[116,48,67,0.09369133412837982],[116,48,68,0.09530480951070786],[116,48,69,0.09655727259814739],[116,48,70,0.09746583737432957],[116,48,71,0.09851257130503654],[116,48,72,0.09997483342885971],[116,48,73,0.1015373021364212],[116,48,74,0.10290110297501087],[116,48,75,0.10394216328859329],[116,48,76,0.1046324148774147],[116,48,77,0.10519012995064259],[116,48,78,0.10617231763899326],[116,48,79,0.10763246845453978],[116,49,64,0.08137146010994911],[116,49,65,0.08241532929241657],[116,49,66,0.08400568924844265],[116,49,67,0.08587883412837982],[116,49,68,0.08749230951070786],[116,49,69,0.08874477259814739],[116,49,70,0.08965333737432957],[116,49,71,0.09070007130503654],[116,49,72,0.09216233342885971],[116,49,73,0.0937248021364212],[116,49,74,0.09508860297501087],[116,49,75,0.09612966328859329],[116,49,76,0.0968199148774147],[116,49,77,0.09737762995064259],[116,49,78,0.09835981763899326],[116,49,79,0.09981996845453978],[116,50,64,0.07355896010994911],[116,50,65,0.07460282929241657],[116,50,66,0.07619318924844265],[116,50,67,0.07806633412837982],[116,50,68,0.07967980951070786],[116,50,69,0.08093227259814739],[116,50,70,0.08184083737432957],[116,50,71,0.08288757130503654],[116,50,72,0.08434983342885971],[116,50,73,0.0859123021364212],[116,50,74,0.08727610297501087],[116,50,75,0.08831716328859329],[116,50,76,0.0890074148774147],[116,50,77,0.08956512995064259],[116,50,78,0.09054731763899326],[116,50,79,0.09200746845453978],[116,51,64,0.06574646010994911],[116,51,65,0.06679032929241657],[116,51,66,0.06838068924844265],[116,51,67,0.07025383412837982],[116,51,68,0.07186730951070786],[116,51,69,0.07311977259814739],[116,51,70,0.07402833737432957],[116,51,71,0.07507507130503654],[116,51,72,0.07653733342885971],[116,51,73,0.0780998021364212],[116,51,74,0.07946360297501087],[116,51,75,0.08050466328859329],[116,51,76,0.0811949148774147],[116,51,77,0.08175262995064259],[116,51,78,0.08273481763899326],[116,51,79,0.08419496845453978],[116,52,64,0.05793396010994911],[116,52,65,0.05897782929241657],[116,52,66,0.06056818924844265],[116,52,67,0.06244133412837982],[116,52,68,0.06405480951070786],[116,52,69,0.06530727259814739],[116,52,70,0.06621583737432957],[116,52,71,0.06726257130503654],[116,52,72,0.06872483342885971],[116,52,73,0.0702873021364212],[116,52,74,0.07165110297501087],[116,52,75,0.07269216328859329],[116,52,76,0.0733824148774147],[116,52,77,0.07394012995064259],[116,52,78,0.07492231763899326],[116,52,79,0.07638246845453978],[116,53,64,0.05012146010994911],[116,53,65,0.05116532929241657],[116,53,66,0.05275568924844265],[116,53,67,0.05462883412837982],[116,53,68,0.056242309510707855],[116,53,69,0.05749477259814739],[116,53,70,0.05840333737432957],[116,53,71,0.059450071305036545],[116,53,72,0.06091233342885971],[116,53,73,0.062474802136421204],[116,53,74,0.06383860297501087],[116,53,75,0.06487966328859329],[116,53,76,0.0655699148774147],[116,53,77,0.06612762995064259],[116,53,78,0.06710981763899326],[116,53,79,0.06856996845453978],[116,54,64,0.04230896010994911],[116,54,65,0.04335282929241657],[116,54,66,0.04494318924844265],[116,54,67,0.04681633412837982],[116,54,68,0.048429809510707855],[116,54,69,0.04968227259814739],[116,54,70,0.05059083737432957],[116,54,71,0.051637571305036545],[116,54,72,0.05309983342885971],[116,54,73,0.054662302136421204],[116,54,74,0.05602610297501087],[116,54,75,0.05706716328859329],[116,54,76,0.0577574148774147],[116,54,77,0.058315129950642586],[116,54,78,0.05929731763899326],[116,54,79,0.060757468454539776],[116,55,64,0.03449646010994911],[116,55,65,0.03554032929241657],[116,55,66,0.03713068924844265],[116,55,67,0.03900383412837982],[116,55,68,0.040617309510707855],[116,55,69,0.04186977259814739],[116,55,70,0.04277833737432957],[116,55,71,0.043825071305036545],[116,55,72,0.04528733342885971],[116,55,73,0.046849802136421204],[116,55,74,0.04821360297501087],[116,55,75,0.04925466328859329],[116,55,76,0.0499449148774147],[116,55,77,0.050502629950642586],[116,55,78,0.05148481763899326],[116,55,79,0.052944968454539776],[116,56,64,0.026683960109949112],[116,56,65,0.027727829292416573],[116,56,66,0.02931818924844265],[116,56,67,0.031191334128379822],[116,56,68,0.032804809510707855],[116,56,69,0.03405727259814739],[116,56,70,0.03496583737432957],[116,56,71,0.036012571305036545],[116,56,72,0.03747483342885971],[116,56,73,0.039037302136421204],[116,56,74,0.04040110297501087],[116,56,75,0.04144216328859329],[116,56,76,0.0421324148774147],[116,56,77,0.042690129950642586],[116,56,78,0.04367231763899326],[116,56,79,0.045132468454539776],[116,57,64,0.018871460109949112],[116,57,65,0.019915329292416573],[116,57,66,0.02150568924844265],[116,57,67,0.023378834128379822],[116,57,68,0.024992309510707855],[116,57,69,0.026244772598147392],[116,57,70,0.027153337374329567],[116,57,71,0.028200071305036545],[116,57,72,0.02966233342885971],[116,57,73,0.031224802136421204],[116,57,74,0.03258860297501087],[116,57,75,0.03362966328859329],[116,57,76,0.0343199148774147],[116,57,77,0.034877629950642586],[116,57,78,0.03585981763899326],[116,57,79,0.037319968454539776],[116,58,64,0.011058960109949112],[116,58,65,0.012102829292416573],[116,58,66,0.01369318924844265],[116,58,67,0.015566334128379822],[116,58,68,0.017179809510707855],[116,58,69,0.018432272598147392],[116,58,70,0.019340837374329567],[116,58,71,0.020387571305036545],[116,58,72,0.02184983342885971],[116,58,73,0.023412302136421204],[116,58,74,0.024776102975010872],[116,58,75,0.025817163288593292],[116,58,76,0.026507414877414703],[116,58,77,0.027065129950642586],[116,58,78,0.028047317638993263],[116,58,79,0.029507468454539776],[116,59,64,0.003246460109949112],[116,59,65,0.004290329292416573],[116,59,66,0.00588068924844265],[116,59,67,0.007753834128379822],[116,59,68,0.009367309510707855],[116,59,69,0.010619772598147392],[116,59,70,0.011528337374329567],[116,59,71,0.012575071305036545],[116,59,72,0.01403733342885971],[116,59,73,0.015599802136421204],[116,59,74,0.016963602975010872],[116,59,75,0.018004663288593292],[116,59,76,0.018694914877414703],[116,59,77,0.019252629950642586],[116,59,78,0.020234817638993263],[116,59,79,0.021694968454539776],[116,60,64,-0.004566039890050888],[116,60,65,-0.0035221707075834274],[116,60,66,-0.0019318107515573502],[116,60,67,-5.866587162017822E-5],[116,60,68,0.0015548095107078552],[116,60,69,0.0028072725981473923],[116,60,70,0.003715837374329567],[116,60,71,0.004762571305036545],[116,60,72,0.006224833428859711],[116,60,73,0.007787302136421204],[116,60,74,0.009151102975010872],[116,60,75,0.010192163288593292],[116,60,76,0.010882414877414703],[116,60,77,0.011440129950642586],[116,60,78,0.012422317638993263],[116,60,79,0.013882468454539776],[116,61,64,-0.012378539890050888],[116,61,65,-0.011334670707583427],[116,61,66,-0.00974431075155735],[116,61,67,-0.007871165871620178],[116,61,68,-0.006257690489292145],[116,61,69,-0.005005227401852608],[116,61,70,-0.004096662625670433],[116,61,71,-0.003049928694963455],[116,61,72,-0.0015876665711402893],[116,61,73,-2.5197863578796387E-5],[116,61,74,0.0013386029750108719],[116,61,75,0.0023796632885932922],[116,61,76,0.0030699148774147034],[116,61,77,0.0036276299506425858],[116,61,78,0.004609817638993263],[116,61,79,0.006069968454539776],[116,62,64,-0.020191039890050888],[116,62,65,-0.019147170707583427],[116,62,66,-0.01755681075155735],[116,62,67,-0.015683665871620178],[116,62,68,-0.014070190489292145],[116,62,69,-0.012817727401852608],[116,62,70,-0.011909162625670433],[116,62,71,-0.010862428694963455],[116,62,72,-0.00940016657114029],[116,62,73,-0.007837697863578796],[116,62,74,-0.006473897024989128],[116,62,75,-0.005432836711406708],[116,62,76,-0.004742585122585297],[116,62,77,-0.004184870049357414],[116,62,78,-0.0032026823610067368],[116,62,79,-0.0017425315454602242],[116,63,64,-0.028003539890050888],[116,63,65,-0.026959670707583427],[116,63,66,-0.02536931075155735],[116,63,67,-0.023496165871620178],[116,63,68,-0.021882690489292145],[116,63,69,-0.020630227401852608],[116,63,70,-0.019721662625670433],[116,63,71,-0.018674928694963455],[116,63,72,-0.01721266657114029],[116,63,73,-0.015650197863578796],[116,63,74,-0.014286397024989128],[116,63,75,-0.013245336711406708],[116,63,76,-0.012555085122585297],[116,63,77,-0.011997370049357414],[116,63,78,-0.011015182361006737],[116,63,79,-0.009555031545460224],[116,64,64,-0.03581603989005089],[116,64,65,-0.03477217070758343],[116,64,66,-0.03318181075155735],[116,64,67,-0.03130866587162018],[116,64,68,-0.029695190489292145],[116,64,69,-0.028442727401852608],[116,64,70,-0.027534162625670433],[116,64,71,-0.026487428694963455],[116,64,72,-0.02502516657114029],[116,64,73,-0.023462697863578796],[116,64,74,-0.022098897024989128],[116,64,75,-0.021057836711406708],[116,64,76,-0.020367585122585297],[116,64,77,-0.019809870049357414],[116,64,78,-0.018827682361006737],[116,64,79,-0.017367531545460224],[116,65,64,-0.04362853989005089],[116,65,65,-0.04258467070758343],[116,65,66,-0.04099431075155735],[116,65,67,-0.03912116587162018],[116,65,68,-0.037507690489292145],[116,65,69,-0.03625522740185261],[116,65,70,-0.03534666262567043],[116,65,71,-0.034299928694963455],[116,65,72,-0.03283766657114029],[116,65,73,-0.031275197863578796],[116,65,74,-0.029911397024989128],[116,65,75,-0.028870336711406708],[116,65,76,-0.028180085122585297],[116,65,77,-0.027622370049357414],[116,65,78,-0.026640182361006737],[116,65,79,-0.025180031545460224],[116,66,64,-0.05144103989005089],[116,66,65,-0.05039717070758343],[116,66,66,-0.04880681075155735],[116,66,67,-0.04693366587162018],[116,66,68,-0.045320190489292145],[116,66,69,-0.04406772740185261],[116,66,70,-0.04315916262567043],[116,66,71,-0.042112428694963455],[116,66,72,-0.04065016657114029],[116,66,73,-0.039087697863578796],[116,66,74,-0.03772389702498913],[116,66,75,-0.03668283671140671],[116,66,76,-0.0359925851225853],[116,66,77,-0.035434870049357414],[116,66,78,-0.03445268236100674],[116,66,79,-0.032992531545460224],[116,67,64,-0.05925353989005089],[116,67,65,-0.05820967070758343],[116,67,66,-0.05661931075155735],[116,67,67,-0.05474616587162018],[116,67,68,-0.053132690489292145],[116,67,69,-0.05188022740185261],[116,67,70,-0.05097166262567043],[116,67,71,-0.049924928694963455],[116,67,72,-0.04846266657114029],[116,67,73,-0.046900197863578796],[116,67,74,-0.04553639702498913],[116,67,75,-0.04449533671140671],[116,67,76,-0.0438050851225853],[116,67,77,-0.043247370049357414],[116,67,78,-0.04226518236100674],[116,67,79,-0.040805031545460224],[116,68,64,-0.06706603989005089],[116,68,65,-0.06602217070758343],[116,68,66,-0.06443181075155735],[116,68,67,-0.06255866587162018],[116,68,68,-0.060945190489292145],[116,68,69,-0.05969272740185261],[116,68,70,-0.05878416262567043],[116,68,71,-0.057737428694963455],[116,68,72,-0.05627516657114029],[116,68,73,-0.054712697863578796],[116,68,74,-0.05334889702498913],[116,68,75,-0.05230783671140671],[116,68,76,-0.0516175851225853],[116,68,77,-0.051059870049357414],[116,68,78,-0.05007768236100674],[116,68,79,-0.048617531545460224],[116,69,64,-0.07487853989005089],[116,69,65,-0.07383467070758343],[116,69,66,-0.07224431075155735],[116,69,67,-0.07037116587162018],[116,69,68,-0.06875769048929214],[116,69,69,-0.06750522740185261],[116,69,70,-0.06659666262567043],[116,69,71,-0.06554992869496346],[116,69,72,-0.06408766657114029],[116,69,73,-0.0625251978635788],[116,69,74,-0.06116139702498913],[116,69,75,-0.06012033671140671],[116,69,76,-0.0594300851225853],[116,69,77,-0.058872370049357414],[116,69,78,-0.05789018236100674],[116,69,79,-0.056430031545460224],[116,70,64,-0.08269103989005089],[116,70,65,-0.08164717070758343],[116,70,66,-0.08005681075155735],[116,70,67,-0.07818366587162018],[116,70,68,-0.07657019048929214],[116,70,69,-0.07531772740185261],[116,70,70,-0.07440916262567043],[116,70,71,-0.07336242869496346],[116,70,72,-0.07190016657114029],[116,70,73,-0.0703376978635788],[116,70,74,-0.06897389702498913],[116,70,75,-0.06793283671140671],[116,70,76,-0.0672425851225853],[116,70,77,-0.06668487004935741],[116,70,78,-0.06570268236100674],[116,70,79,-0.06424253154546022],[116,71,64,-0.09050353989005089],[116,71,65,-0.08945967070758343],[116,71,66,-0.08786931075155735],[116,71,67,-0.08599616587162018],[116,71,68,-0.08438269048929214],[116,71,69,-0.08313022740185261],[116,71,70,-0.08222166262567043],[116,71,71,-0.08117492869496346],[116,71,72,-0.07971266657114029],[116,71,73,-0.0781501978635788],[116,71,74,-0.07678639702498913],[116,71,75,-0.07574533671140671],[116,71,76,-0.0750550851225853],[116,71,77,-0.07449737004935741],[116,71,78,-0.07351518236100674],[116,71,79,-0.07205503154546022],[116,72,64,-0.09831603989005089],[116,72,65,-0.09727217070758343],[116,72,66,-0.09568181075155735],[116,72,67,-0.09380866587162018],[116,72,68,-0.09219519048929214],[116,72,69,-0.09094272740185261],[116,72,70,-0.09003416262567043],[116,72,71,-0.08898742869496346],[116,72,72,-0.08752516657114029],[116,72,73,-0.0859626978635788],[116,72,74,-0.08459889702498913],[116,72,75,-0.08355783671140671],[116,72,76,-0.0828675851225853],[116,72,77,-0.08230987004935741],[116,72,78,-0.08132768236100674],[116,72,79,-0.07986753154546022],[116,73,64,-0.10612853989005089],[116,73,65,-0.10508467070758343],[116,73,66,-0.10349431075155735],[116,73,67,-0.10162116587162018],[116,73,68,-0.10000769048929214],[116,73,69,-0.09875522740185261],[116,73,70,-0.09784666262567043],[116,73,71,-0.09679992869496346],[116,73,72,-0.09533766657114029],[116,73,73,-0.0937751978635788],[116,73,74,-0.09241139702498913],[116,73,75,-0.09137033671140671],[116,73,76,-0.0906800851225853],[116,73,77,-0.09012237004935741],[116,73,78,-0.08914018236100674],[116,73,79,-0.08768003154546022],[116,74,64,-0.11394103989005089],[116,74,65,-0.11289717070758343],[116,74,66,-0.11130681075155735],[116,74,67,-0.10943366587162018],[116,74,68,-0.10782019048929214],[116,74,69,-0.10656772740185261],[116,74,70,-0.10565916262567043],[116,74,71,-0.10461242869496346],[116,74,72,-0.10315016657114029],[116,74,73,-0.1015876978635788],[116,74,74,-0.10022389702498913],[116,74,75,-0.09918283671140671],[116,74,76,-0.0984925851225853],[116,74,77,-0.09793487004935741],[116,74,78,-0.09695268236100674],[116,74,79,-0.09549253154546022],[116,75,64,-0.12175353989005089],[116,75,65,-0.12070967070758343],[116,75,66,-0.11911931075155735],[116,75,67,-0.11724616587162018],[116,75,68,-0.11563269048929214],[116,75,69,-0.11438022740185261],[116,75,70,-0.11347166262567043],[116,75,71,-0.11242492869496346],[116,75,72,-0.11096266657114029],[116,75,73,-0.1094001978635788],[116,75,74,-0.10803639702498913],[116,75,75,-0.10699533671140671],[116,75,76,-0.1063050851225853],[116,75,77,-0.10574737004935741],[116,75,78,-0.10476518236100674],[116,75,79,-0.10330503154546022],[116,76,64,-0.1295660398900509],[116,76,65,-0.12852217070758343],[116,76,66,-0.12693181075155735],[116,76,67,-0.12505866587162018],[116,76,68,-0.12344519048929214],[116,76,69,-0.12219272740185261],[116,76,70,-0.12128416262567043],[116,76,71,-0.12023742869496346],[116,76,72,-0.11877516657114029],[116,76,73,-0.1172126978635788],[116,76,74,-0.11584889702498913],[116,76,75,-0.11480783671140671],[116,76,76,-0.1141175851225853],[116,76,77,-0.11355987004935741],[116,76,78,-0.11257768236100674],[116,76,79,-0.11111753154546022],[116,77,64,-0.1373785398900509],[116,77,65,-0.13633467070758343],[116,77,66,-0.13474431075155735],[116,77,67,-0.13287116587162018],[116,77,68,-0.13125769048929214],[116,77,69,-0.1300052274018526],[116,77,70,-0.12909666262567043],[116,77,71,-0.12804992869496346],[116,77,72,-0.1265876665711403],[116,77,73,-0.1250251978635788],[116,77,74,-0.12366139702498913],[116,77,75,-0.12262033671140671],[116,77,76,-0.1219300851225853],[116,77,77,-0.12137237004935741],[116,77,78,-0.12039018236100674],[116,77,79,-0.11893003154546022],[116,78,64,-0.1451910398900509],[116,78,65,-0.14414717070758343],[116,78,66,-0.14255681075155735],[116,78,67,-0.14068366587162018],[116,78,68,-0.13907019048929214],[116,78,69,-0.1378177274018526],[116,78,70,-0.13690916262567043],[116,78,71,-0.13586242869496346],[116,78,72,-0.1344001665711403],[116,78,73,-0.1328376978635788],[116,78,74,-0.13147389702498913],[116,78,75,-0.1304328367114067],[116,78,76,-0.1297425851225853],[116,78,77,-0.12918487004935741],[116,78,78,-0.12820268236100674],[116,78,79,-0.12674253154546022],[116,79,64,-0.1530035398900509],[116,79,65,-0.15195967070758343],[116,79,66,-0.15036931075155735],[116,79,67,-0.14849616587162018],[116,79,68,-0.14688269048929214],[116,79,69,-0.1456302274018526],[116,79,70,-0.14472166262567043],[116,79,71,-0.14367492869496346],[116,79,72,-0.1422126665711403],[116,79,73,-0.1406501978635788],[116,79,74,-0.13928639702498913],[116,79,75,-0.1382453367114067],[116,79,76,-0.1375550851225853],[116,79,77,-0.13699737004935741],[116,79,78,-0.13601518236100674],[116,79,79,-0.13455503154546022],[116,80,64,-0.1608160398900509],[116,80,65,-0.15977217070758343],[116,80,66,-0.15818181075155735],[116,80,67,-0.15630866587162018],[116,80,68,-0.15469519048929214],[116,80,69,-0.1534427274018526],[116,80,70,-0.15253416262567043],[116,80,71,-0.15148742869496346],[116,80,72,-0.1500251665711403],[116,80,73,-0.1484626978635788],[116,80,74,-0.14709889702498913],[116,80,75,-0.1460578367114067],[116,80,76,-0.1453675851225853],[116,80,77,-0.14480987004935741],[116,80,78,-0.14382768236100674],[116,80,79,-0.14236753154546022],[116,81,64,-0.1686285398900509],[116,81,65,-0.16758467070758343],[116,81,66,-0.16599431075155735],[116,81,67,-0.16412116587162018],[116,81,68,-0.16250769048929214],[116,81,69,-0.1612552274018526],[116,81,70,-0.16034666262567043],[116,81,71,-0.15929992869496346],[116,81,72,-0.1578376665711403],[116,81,73,-0.1562751978635788],[116,81,74,-0.15491139702498913],[116,81,75,-0.1538703367114067],[116,81,76,-0.1531800851225853],[116,81,77,-0.15262237004935741],[116,81,78,-0.15164018236100674],[116,81,79,-0.15018003154546022],[116,82,64,-0.1764410398900509],[116,82,65,-0.17539717070758343],[116,82,66,-0.17380681075155735],[116,82,67,-0.17193366587162018],[116,82,68,-0.17032019048929214],[116,82,69,-0.1690677274018526],[116,82,70,-0.16815916262567043],[116,82,71,-0.16711242869496346],[116,82,72,-0.1656501665711403],[116,82,73,-0.1640876978635788],[116,82,74,-0.16272389702498913],[116,82,75,-0.1616828367114067],[116,82,76,-0.1609925851225853],[116,82,77,-0.16043487004935741],[116,82,78,-0.15945268236100674],[116,82,79,-0.15799253154546022],[116,83,64,-0.1842535398900509],[116,83,65,-0.18320967070758343],[116,83,66,-0.18161931075155735],[116,83,67,-0.17974616587162018],[116,83,68,-0.17813269048929214],[116,83,69,-0.1768802274018526],[116,83,70,-0.17597166262567043],[116,83,71,-0.17492492869496346],[116,83,72,-0.1734626665711403],[116,83,73,-0.1719001978635788],[116,83,74,-0.17053639702498913],[116,83,75,-0.1694953367114067],[116,83,76,-0.1688050851225853],[116,83,77,-0.16824737004935741],[116,83,78,-0.16726518236100674],[116,83,79,-0.16580503154546022],[116,84,64,-0.1920660398900509],[116,84,65,-0.19102217070758343],[116,84,66,-0.18943181075155735],[116,84,67,-0.18755866587162018],[116,84,68,-0.18594519048929214],[116,84,69,-0.1846927274018526],[116,84,70,-0.18378416262567043],[116,84,71,-0.18273742869496346],[116,84,72,-0.1812751665711403],[116,84,73,-0.1797126978635788],[116,84,74,-0.17834889702498913],[116,84,75,-0.1773078367114067],[116,84,76,-0.1766175851225853],[116,84,77,-0.17605987004935741],[116,84,78,-0.17507768236100674],[116,84,79,-0.17361753154546022],[116,85,64,-0.1998785398900509],[116,85,65,-0.19883467070758343],[116,85,66,-0.19724431075155735],[116,85,67,-0.19537116587162018],[116,85,68,-0.19375769048929214],[116,85,69,-0.1925052274018526],[116,85,70,-0.19159666262567043],[116,85,71,-0.19054992869496346],[116,85,72,-0.1890876665711403],[116,85,73,-0.1875251978635788],[116,85,74,-0.18616139702498913],[116,85,75,-0.1851203367114067],[116,85,76,-0.1844300851225853],[116,85,77,-0.18387237004935741],[116,85,78,-0.18289018236100674],[116,85,79,-0.18143003154546022],[116,86,64,-0.2076910398900509],[116,86,65,-0.20664717070758343],[116,86,66,-0.20505681075155735],[116,86,67,-0.20318366587162018],[116,86,68,-0.20157019048929214],[116,86,69,-0.2003177274018526],[116,86,70,-0.19940916262567043],[116,86,71,-0.19836242869496346],[116,86,72,-0.1969001665711403],[116,86,73,-0.1953376978635788],[116,86,74,-0.19397389702498913],[116,86,75,-0.1929328367114067],[116,86,76,-0.1922425851225853],[116,86,77,-0.19168487004935741],[116,86,78,-0.19070268236100674],[116,86,79,-0.18924253154546022],[116,87,64,-0.2155035398900509],[116,87,65,-0.21445967070758343],[116,87,66,-0.21286931075155735],[116,87,67,-0.21099616587162018],[116,87,68,-0.20938269048929214],[116,87,69,-0.2081302274018526],[116,87,70,-0.20722166262567043],[116,87,71,-0.20617492869496346],[116,87,72,-0.2047126665711403],[116,87,73,-0.2031501978635788],[116,87,74,-0.20178639702498913],[116,87,75,-0.2007453367114067],[116,87,76,-0.2000550851225853],[116,87,77,-0.19949737004935741],[116,87,78,-0.19851518236100674],[116,87,79,-0.19705503154546022],[116,88,64,-0.2233160398900509],[116,88,65,-0.22227217070758343],[116,88,66,-0.22068181075155735],[116,88,67,-0.21880866587162018],[116,88,68,-0.21719519048929214],[116,88,69,-0.2159427274018526],[116,88,70,-0.21503416262567043],[116,88,71,-0.21398742869496346],[116,88,72,-0.2125251665711403],[116,88,73,-0.2109626978635788],[116,88,74,-0.20959889702498913],[116,88,75,-0.2085578367114067],[116,88,76,-0.2078675851225853],[116,88,77,-0.20730987004935741],[116,88,78,-0.20632768236100674],[116,88,79,-0.20486753154546022],[116,89,64,-0.2311285398900509],[116,89,65,-0.23008467070758343],[116,89,66,-0.22849431075155735],[116,89,67,-0.22662116587162018],[116,89,68,-0.22500769048929214],[116,89,69,-0.2237552274018526],[116,89,70,-0.22284666262567043],[116,89,71,-0.22179992869496346],[116,89,72,-0.2203376665711403],[116,89,73,-0.2187751978635788],[116,89,74,-0.21741139702498913],[116,89,75,-0.2163703367114067],[116,89,76,-0.2156800851225853],[116,89,77,-0.21512237004935741],[116,89,78,-0.21414018236100674],[116,89,79,-0.21268003154546022],[116,90,64,-0.2389410398900509],[116,90,65,-0.23789717070758343],[116,90,66,-0.23630681075155735],[116,90,67,-0.23443366587162018],[116,90,68,-0.23282019048929214],[116,90,69,-0.2315677274018526],[116,90,70,-0.23065916262567043],[116,90,71,-0.22961242869496346],[116,90,72,-0.2281501665711403],[116,90,73,-0.2265876978635788],[116,90,74,-0.22522389702498913],[116,90,75,-0.2241828367114067],[116,90,76,-0.2234925851225853],[116,90,77,-0.22293487004935741],[116,90,78,-0.22195268236100674],[116,90,79,-0.22049253154546022],[116,91,64,-0.2467535398900509],[116,91,65,-0.24570967070758343],[116,91,66,-0.24411931075155735],[116,91,67,-0.24224616587162018],[116,91,68,-0.24063269048929214],[116,91,69,-0.2393802274018526],[116,91,70,-0.23847166262567043],[116,91,71,-0.23742492869496346],[116,91,72,-0.2359626665711403],[116,91,73,-0.2344001978635788],[116,91,74,-0.23303639702498913],[116,91,75,-0.2319953367114067],[116,91,76,-0.2313050851225853],[116,91,77,-0.23074737004935741],[116,91,78,-0.22976518236100674],[116,91,79,-0.22830503154546022],[116,92,64,-0.2545660398900509],[116,92,65,-0.2535221707075834],[116,92,66,-0.25193181075155735],[116,92,67,-0.2500586658716202],[116,92,68,-0.24844519048929214],[116,92,69,-0.2471927274018526],[116,92,70,-0.24628416262567043],[116,92,71,-0.24523742869496346],[116,92,72,-0.2437751665711403],[116,92,73,-0.2422126978635788],[116,92,74,-0.24084889702498913],[116,92,75,-0.2398078367114067],[116,92,76,-0.2391175851225853],[116,92,77,-0.23855987004935741],[116,92,78,-0.23757768236100674],[116,92,79,-0.23611753154546022],[116,93,64,-0.2623785398900509],[116,93,65,-0.2613346707075834],[116,93,66,-0.25974431075155735],[116,93,67,-0.2578711658716202],[116,93,68,-0.25625769048929214],[116,93,69,-0.2550052274018526],[116,93,70,-0.25409666262567043],[116,93,71,-0.25304992869496346],[116,93,72,-0.2515876665711403],[116,93,73,-0.2500251978635788],[116,93,74,-0.24866139702498913],[116,93,75,-0.2476203367114067],[116,93,76,-0.2469300851225853],[116,93,77,-0.24637237004935741],[116,93,78,-0.24539018236100674],[116,93,79,-0.24393003154546022],[116,94,64,-0.2701910398900509],[116,94,65,-0.2691471707075834],[116,94,66,-0.26755681075155735],[116,94,67,-0.2656836658716202],[116,94,68,-0.26407019048929214],[116,94,69,-0.2628177274018526],[116,94,70,-0.26190916262567043],[116,94,71,-0.26086242869496346],[116,94,72,-0.2594001665711403],[116,94,73,-0.2578376978635788],[116,94,74,-0.25647389702498913],[116,94,75,-0.2554328367114067],[116,94,76,-0.2547425851225853],[116,94,77,-0.2541848700493574],[116,94,78,-0.25320268236100674],[116,94,79,-0.2517425315454602],[116,95,64,-0.2780035398900509],[116,95,65,-0.2769596707075834],[116,95,66,-0.27536931075155735],[116,95,67,-0.2734961658716202],[116,95,68,-0.27188269048929214],[116,95,69,-0.2706302274018526],[116,95,70,-0.26972166262567043],[116,95,71,-0.26867492869496346],[116,95,72,-0.2672126665711403],[116,95,73,-0.2656501978635788],[116,95,74,-0.26428639702498913],[116,95,75,-0.2632453367114067],[116,95,76,-0.2625550851225853],[116,95,77,-0.2619973700493574],[116,95,78,-0.26101518236100674],[116,95,79,-0.2595550315454602],[116,96,64,-0.2858160398900509],[116,96,65,-0.2847721707075834],[116,96,66,-0.28318181075155735],[116,96,67,-0.2813086658716202],[116,96,68,-0.27969519048929214],[116,96,69,-0.2784427274018526],[116,96,70,-0.27753416262567043],[116,96,71,-0.27648742869496346],[116,96,72,-0.2750251665711403],[116,96,73,-0.2734626978635788],[116,96,74,-0.27209889702498913],[116,96,75,-0.2710578367114067],[116,96,76,-0.2703675851225853],[116,96,77,-0.2698098700493574],[116,96,78,-0.26882768236100674],[116,96,79,-0.2673675315454602],[116,97,64,-0.2936285398900509],[116,97,65,-0.2925846707075834],[116,97,66,-0.29099431075155735],[116,97,67,-0.2891211658716202],[116,97,68,-0.28750769048929214],[116,97,69,-0.2862552274018526],[116,97,70,-0.28534666262567043],[116,97,71,-0.28429992869496346],[116,97,72,-0.2828376665711403],[116,97,73,-0.2812751978635788],[116,97,74,-0.27991139702498913],[116,97,75,-0.2788703367114067],[116,97,76,-0.2781800851225853],[116,97,77,-0.2776223700493574],[116,97,78,-0.27664018236100674],[116,97,79,-0.2751800315454602],[116,98,64,-0.3014410398900509],[116,98,65,-0.3003971707075834],[116,98,66,-0.29880681075155735],[116,98,67,-0.2969336658716202],[116,98,68,-0.29532019048929214],[116,98,69,-0.2940677274018526],[116,98,70,-0.29315916262567043],[116,98,71,-0.29211242869496346],[116,98,72,-0.2906501665711403],[116,98,73,-0.2890876978635788],[116,98,74,-0.28772389702498913],[116,98,75,-0.2866828367114067],[116,98,76,-0.2859925851225853],[116,98,77,-0.2854348700493574],[116,98,78,-0.28445268236100674],[116,98,79,-0.2829925315454602],[116,99,64,-0.3092535398900509],[116,99,65,-0.3082096707075834],[116,99,66,-0.30661931075155735],[116,99,67,-0.3047461658716202],[116,99,68,-0.30313269048929214],[116,99,69,-0.3018802274018526],[116,99,70,-0.30097166262567043],[116,99,71,-0.29992492869496346],[116,99,72,-0.2984626665711403],[116,99,73,-0.2969001978635788],[116,99,74,-0.29553639702498913],[116,99,75,-0.2944953367114067],[116,99,76,-0.2938050851225853],[116,99,77,-0.2932473700493574],[116,99,78,-0.29226518236100674],[116,99,79,-0.2908050315454602],[116,100,64,-0.3170660398900509],[116,100,65,-0.3160221707075834],[116,100,66,-0.31443181075155735],[116,100,67,-0.3125586658716202],[116,100,68,-0.31094519048929214],[116,100,69,-0.3096927274018526],[116,100,70,-0.30878416262567043],[116,100,71,-0.30773742869496346],[116,100,72,-0.3062751665711403],[116,100,73,-0.3047126978635788],[116,100,74,-0.30334889702498913],[116,100,75,-0.3023078367114067],[116,100,76,-0.3016175851225853],[116,100,77,-0.3010598700493574],[116,100,78,-0.30007768236100674],[116,100,79,-0.2986175315454602],[116,101,64,-0.3248785398900509],[116,101,65,-0.3238346707075834],[116,101,66,-0.32224431075155735],[116,101,67,-0.3203711658716202],[116,101,68,-0.31875769048929214],[116,101,69,-0.3175052274018526],[116,101,70,-0.31659666262567043],[116,101,71,-0.31554992869496346],[116,101,72,-0.3140876665711403],[116,101,73,-0.3125251978635788],[116,101,74,-0.31116139702498913],[116,101,75,-0.3101203367114067],[116,101,76,-0.3094300851225853],[116,101,77,-0.3088723700493574],[116,101,78,-0.30789018236100674],[116,101,79,-0.3064300315454602],[116,102,64,-0.3326910398900509],[116,102,65,-0.3316471707075834],[116,102,66,-0.33005681075155735],[116,102,67,-0.3281836658716202],[116,102,68,-0.32657019048929214],[116,102,69,-0.3253177274018526],[116,102,70,-0.32440916262567043],[116,102,71,-0.32336242869496346],[116,102,72,-0.3219001665711403],[116,102,73,-0.3203376978635788],[116,102,74,-0.31897389702498913],[116,102,75,-0.3179328367114067],[116,102,76,-0.3172425851225853],[116,102,77,-0.3166848700493574],[116,102,78,-0.31570268236100674],[116,102,79,-0.3142425315454602],[116,103,64,-0.3405035398900509],[116,103,65,-0.3394596707075834],[116,103,66,-0.33786931075155735],[116,103,67,-0.3359961658716202],[116,103,68,-0.33438269048929214],[116,103,69,-0.3331302274018526],[116,103,70,-0.33222166262567043],[116,103,71,-0.33117492869496346],[116,103,72,-0.3297126665711403],[116,103,73,-0.3281501978635788],[116,103,74,-0.32678639702498913],[116,103,75,-0.3257453367114067],[116,103,76,-0.3250550851225853],[116,103,77,-0.3244973700493574],[116,103,78,-0.32351518236100674],[116,103,79,-0.3220550315454602],[116,104,64,-0.3483160398900509],[116,104,65,-0.3472721707075834],[116,104,66,-0.34568181075155735],[116,104,67,-0.3438086658716202],[116,104,68,-0.34219519048929214],[116,104,69,-0.3409427274018526],[116,104,70,-0.34003416262567043],[116,104,71,-0.33898742869496346],[116,104,72,-0.3375251665711403],[116,104,73,-0.3359626978635788],[116,104,74,-0.33459889702498913],[116,104,75,-0.3335578367114067],[116,104,76,-0.3328675851225853],[116,104,77,-0.3323098700493574],[116,104,78,-0.33132768236100674],[116,104,79,-0.3298675315454602],[116,105,64,-0.3561285398900509],[116,105,65,-0.3550846707075834],[116,105,66,-0.35349431075155735],[116,105,67,-0.3516211658716202],[116,105,68,-0.35000769048929214],[116,105,69,-0.3487552274018526],[116,105,70,-0.34784666262567043],[116,105,71,-0.34679992869496346],[116,105,72,-0.3453376665711403],[116,105,73,-0.3437751978635788],[116,105,74,-0.34241139702498913],[116,105,75,-0.3413703367114067],[116,105,76,-0.3406800851225853],[116,105,77,-0.3401223700493574],[116,105,78,-0.33914018236100674],[116,105,79,-0.3376800315454602],[116,106,64,-0.3639410398900509],[116,106,65,-0.3628971707075834],[116,106,66,-0.36130681075155735],[116,106,67,-0.3594336658716202],[116,106,68,-0.35782019048929214],[116,106,69,-0.3565677274018526],[116,106,70,-0.35565916262567043],[116,106,71,-0.35461242869496346],[116,106,72,-0.3531501665711403],[116,106,73,-0.3515876978635788],[116,106,74,-0.35022389702498913],[116,106,75,-0.3491828367114067],[116,106,76,-0.3484925851225853],[116,106,77,-0.3479348700493574],[116,106,78,-0.34695268236100674],[116,106,79,-0.3454925315454602],[116,107,64,-0.3717535398900509],[116,107,65,-0.3707096707075834],[116,107,66,-0.36911931075155735],[116,107,67,-0.3672461658716202],[116,107,68,-0.36563269048929214],[116,107,69,-0.3643802274018526],[116,107,70,-0.36347166262567043],[116,107,71,-0.36242492869496346],[116,107,72,-0.3609626665711403],[116,107,73,-0.3594001978635788],[116,107,74,-0.35803639702498913],[116,107,75,-0.3569953367114067],[116,107,76,-0.3563050851225853],[116,107,77,-0.3557473700493574],[116,107,78,-0.35476518236100674],[116,107,79,-0.3533050315454602],[116,108,64,-0.3795660398900509],[116,108,65,-0.3785221707075834],[116,108,66,-0.37693181075155735],[116,108,67,-0.3750586658716202],[116,108,68,-0.37344519048929214],[116,108,69,-0.3721927274018526],[116,108,70,-0.37128416262567043],[116,108,71,-0.37023742869496346],[116,108,72,-0.3687751665711403],[116,108,73,-0.3672126978635788],[116,108,74,-0.36584889702498913],[116,108,75,-0.3648078367114067],[116,108,76,-0.3641175851225853],[116,108,77,-0.3635598700493574],[116,108,78,-0.36257768236100674],[116,108,79,-0.3611175315454602],[116,109,64,-0.3873785398900509],[116,109,65,-0.3863346707075834],[116,109,66,-0.38474431075155735],[116,109,67,-0.3828711658716202],[116,109,68,-0.38125769048929214],[116,109,69,-0.3800052274018526],[116,109,70,-0.37909666262567043],[116,109,71,-0.37804992869496346],[116,109,72,-0.3765876665711403],[116,109,73,-0.3750251978635788],[116,109,74,-0.37366139702498913],[116,109,75,-0.3726203367114067],[116,109,76,-0.3719300851225853],[116,109,77,-0.3713723700493574],[116,109,78,-0.37039018236100674],[116,109,79,-0.3689300315454602],[116,110,64,-0.3951910398900509],[116,110,65,-0.3941471707075834],[116,110,66,-0.39255681075155735],[116,110,67,-0.3906836658716202],[116,110,68,-0.38907019048929214],[116,110,69,-0.3878177274018526],[116,110,70,-0.38690916262567043],[116,110,71,-0.38586242869496346],[116,110,72,-0.3844001665711403],[116,110,73,-0.3828376978635788],[116,110,74,-0.38147389702498913],[116,110,75,-0.3804328367114067],[116,110,76,-0.3797425851225853],[116,110,77,-0.3791848700493574],[116,110,78,-0.37820268236100674],[116,110,79,-0.3767425315454602],[116,111,64,-0.4030035398900509],[116,111,65,-0.4019596707075834],[116,111,66,-0.40036931075155735],[116,111,67,-0.3984961658716202],[116,111,68,-0.39688269048929214],[116,111,69,-0.3956302274018526],[116,111,70,-0.39472166262567043],[116,111,71,-0.39367492869496346],[116,111,72,-0.3922126665711403],[116,111,73,-0.3906501978635788],[116,111,74,-0.38928639702498913],[116,111,75,-0.3882453367114067],[116,111,76,-0.3875550851225853],[116,111,77,-0.3869973700493574],[116,111,78,-0.38601518236100674],[116,111,79,-0.3845550315454602],[116,112,64,-0.4108160398900509],[116,112,65,-0.4097721707075834],[116,112,66,-0.40818181075155735],[116,112,67,-0.4063086658716202],[116,112,68,-0.40469519048929214],[116,112,69,-0.4034427274018526],[116,112,70,-0.40253416262567043],[116,112,71,-0.40148742869496346],[116,112,72,-0.4000251665711403],[116,112,73,-0.3984626978635788],[116,112,74,-0.39709889702498913],[116,112,75,-0.3960578367114067],[116,112,76,-0.3953675851225853],[116,112,77,-0.3948098700493574],[116,112,78,-0.39382768236100674],[116,112,79,-0.3923675315454602],[116,113,64,-0.4186285398900509],[116,113,65,-0.4175846707075834],[116,113,66,-0.41599431075155735],[116,113,67,-0.4141211658716202],[116,113,68,-0.41250769048929214],[116,113,69,-0.4112552274018526],[116,113,70,-0.41034666262567043],[116,113,71,-0.40929992869496346],[116,113,72,-0.4078376665711403],[116,113,73,-0.4062751978635788],[116,113,74,-0.40491139702498913],[116,113,75,-0.4038703367114067],[116,113,76,-0.4031800851225853],[116,113,77,-0.4026223700493574],[116,113,78,-0.40164018236100674],[116,113,79,-0.4001800315454602],[116,114,64,-0.4264410398900509],[116,114,65,-0.4253971707075834],[116,114,66,-0.42380681075155735],[116,114,67,-0.4219336658716202],[116,114,68,-0.42032019048929214],[116,114,69,-0.4190677274018526],[116,114,70,-0.41815916262567043],[116,114,71,-0.41711242869496346],[116,114,72,-0.4156501665711403],[116,114,73,-0.4140876978635788],[116,114,74,-0.41272389702498913],[116,114,75,-0.4116828367114067],[116,114,76,-0.4109925851225853],[116,114,77,-0.4104348700493574],[116,114,78,-0.40945268236100674],[116,114,79,-0.4079925315454602],[116,115,64,-0.4342535398900509],[116,115,65,-0.4332096707075834],[116,115,66,-0.43161931075155735],[116,115,67,-0.4297461658716202],[116,115,68,-0.42813269048929214],[116,115,69,-0.4268802274018526],[116,115,70,-0.42597166262567043],[116,115,71,-0.42492492869496346],[116,115,72,-0.4234626665711403],[116,115,73,-0.4219001978635788],[116,115,74,-0.42053639702498913],[116,115,75,-0.4194953367114067],[116,115,76,-0.4188050851225853],[116,115,77,-0.4182473700493574],[116,115,78,-0.41726518236100674],[116,115,79,-0.4158050315454602],[116,116,64,-0.4420660398900509],[116,116,65,-0.4410221707075834],[116,116,66,-0.43943181075155735],[116,116,67,-0.4375586658716202],[116,116,68,-0.43594519048929214],[116,116,69,-0.4346927274018526],[116,116,70,-0.43378416262567043],[116,116,71,-0.43273742869496346],[116,116,72,-0.4312751665711403],[116,116,73,-0.4297126978635788],[116,116,74,-0.42834889702498913],[116,116,75,-0.4273078367114067],[116,116,76,-0.4266175851225853],[116,116,77,-0.4260598700493574],[116,116,78,-0.42507768236100674],[116,116,79,-0.4236175315454602],[116,117,64,-0.4498785398900509],[116,117,65,-0.4488346707075834],[116,117,66,-0.44724431075155735],[116,117,67,-0.4453711658716202],[116,117,68,-0.44375769048929214],[116,117,69,-0.4425052274018526],[116,117,70,-0.44159666262567043],[116,117,71,-0.44054992869496346],[116,117,72,-0.4390876665711403],[116,117,73,-0.4375251978635788],[116,117,74,-0.43616139702498913],[116,117,75,-0.4351203367114067],[116,117,76,-0.4344300851225853],[116,117,77,-0.4338723700493574],[116,117,78,-0.43289018236100674],[116,117,79,-0.4314300315454602],[116,118,64,-0.4576910398900509],[116,118,65,-0.4566471707075834],[116,118,66,-0.45505681075155735],[116,118,67,-0.4531836658716202],[116,118,68,-0.45157019048929214],[116,118,69,-0.4503177274018526],[116,118,70,-0.44940916262567043],[116,118,71,-0.44836242869496346],[116,118,72,-0.4469001665711403],[116,118,73,-0.4453376978635788],[116,118,74,-0.44397389702498913],[116,118,75,-0.4429328367114067],[116,118,76,-0.4422425851225853],[116,118,77,-0.4416848700493574],[116,118,78,-0.44070268236100674],[116,118,79,-0.4392425315454602],[116,119,64,-0.4655035398900509],[116,119,65,-0.4644596707075834],[116,119,66,-0.46286931075155735],[116,119,67,-0.4609961658716202],[116,119,68,-0.45938269048929214],[116,119,69,-0.4581302274018526],[116,119,70,-0.45722166262567043],[116,119,71,-0.45617492869496346],[116,119,72,-0.4547126665711403],[116,119,73,-0.4531501978635788],[116,119,74,-0.45178639702498913],[116,119,75,-0.4507453367114067],[116,119,76,-0.4500550851225853],[116,119,77,-0.4494973700493574],[116,119,78,-0.44851518236100674],[116,119,79,-0.4470550315454602],[116,120,64,-0.4733160398900509],[116,120,65,-0.4722721707075834],[116,120,66,-0.47068181075155735],[116,120,67,-0.4688086658716202],[116,120,68,-0.46719519048929214],[116,120,69,-0.4659427274018526],[116,120,70,-0.46503416262567043],[116,120,71,-0.46398742869496346],[116,120,72,-0.4625251665711403],[116,120,73,-0.4609626978635788],[116,120,74,-0.45959889702498913],[116,120,75,-0.4585578367114067],[116,120,76,-0.4578675851225853],[116,120,77,-0.4573098700493574],[116,120,78,-0.45632768236100674],[116,120,79,-0.4548675315454602],[116,121,64,-0.4811285398900509],[116,121,65,-0.4800846707075834],[116,121,66,-0.47849431075155735],[116,121,67,-0.4766211658716202],[116,121,68,-0.47500769048929214],[116,121,69,-0.4737552274018526],[116,121,70,-0.47284666262567043],[116,121,71,-0.47179992869496346],[116,121,72,-0.4703376665711403],[116,121,73,-0.4687751978635788],[116,121,74,-0.46741139702498913],[116,121,75,-0.4663703367114067],[116,121,76,-0.4656800851225853],[116,121,77,-0.4651223700493574],[116,121,78,-0.46414018236100674],[116,121,79,-0.4626800315454602],[116,122,64,-0.4889410398900509],[116,122,65,-0.4878971707075834],[116,122,66,-0.48630681075155735],[116,122,67,-0.4844336658716202],[116,122,68,-0.48282019048929214],[116,122,69,-0.4815677274018526],[116,122,70,-0.48065916262567043],[116,122,71,-0.47961242869496346],[116,122,72,-0.4781501665711403],[116,122,73,-0.4765876978635788],[116,122,74,-0.47522389702498913],[116,122,75,-0.4741828367114067],[116,122,76,-0.4734925851225853],[116,122,77,-0.4729348700493574],[116,122,78,-0.47195268236100674],[116,122,79,-0.4704925315454602],[116,123,64,-0.4967535398900509],[116,123,65,-0.4957096707075834],[116,123,66,-0.49411931075155735],[116,123,67,-0.4922461658716202],[116,123,68,-0.49063269048929214],[116,123,69,-0.4893802274018526],[116,123,70,-0.48847166262567043],[116,123,71,-0.48742492869496346],[116,123,72,-0.4859626665711403],[116,123,73,-0.4844001978635788],[116,123,74,-0.48303639702498913],[116,123,75,-0.4819953367114067],[116,123,76,-0.4813050851225853],[116,123,77,-0.4807473700493574],[116,123,78,-0.47976518236100674],[116,123,79,-0.4783050315454602],[116,124,64,-0.5045660398900509],[116,124,65,-0.5035221707075834],[116,124,66,-0.5019318107515574],[116,124,67,-0.5000586658716202],[116,124,68,-0.49844519048929214],[116,124,69,-0.4971927274018526],[116,124,70,-0.49628416262567043],[116,124,71,-0.49523742869496346],[116,124,72,-0.4937751665711403],[116,124,73,-0.4922126978635788],[116,124,74,-0.49084889702498913],[116,124,75,-0.4898078367114067],[116,124,76,-0.4891175851225853],[116,124,77,-0.4885598700493574],[116,124,78,-0.48757768236100674],[116,124,79,-0.4861175315454602],[116,125,64,-0.5123785398900509],[116,125,65,-0.5113346707075834],[116,125,66,-0.5097443107515574],[116,125,67,-0.5078711658716202],[116,125,68,-0.5062576904892921],[116,125,69,-0.5050052274018526],[116,125,70,-0.5040966626256704],[116,125,71,-0.5030499286949635],[116,125,72,-0.5015876665711403],[116,125,73,-0.5000251978635788],[116,125,74,-0.49866139702498913],[116,125,75,-0.4976203367114067],[116,125,76,-0.4969300851225853],[116,125,77,-0.4963723700493574],[116,125,78,-0.49539018236100674],[116,125,79,-0.4939300315454602],[116,126,64,-0.5201910398900509],[116,126,65,-0.5191471707075834],[116,126,66,-0.5175568107515574],[116,126,67,-0.5156836658716202],[116,126,68,-0.5140701904892921],[116,126,69,-0.5128177274018526],[116,126,70,-0.5119091626256704],[116,126,71,-0.5108624286949635],[116,126,72,-0.5094001665711403],[116,126,73,-0.5078376978635788],[116,126,74,-0.5064738970249891],[116,126,75,-0.5054328367114067],[116,126,76,-0.5047425851225853],[116,126,77,-0.5041848700493574],[116,126,78,-0.5032026823610067],[116,126,79,-0.5017425315454602],[116,127,64,-0.5280035398900509],[116,127,65,-0.5269596707075834],[116,127,66,-0.5253693107515574],[116,127,67,-0.5234961658716202],[116,127,68,-0.5218826904892921],[116,127,69,-0.5206302274018526],[116,127,70,-0.5197216626256704],[116,127,71,-0.5186749286949635],[116,127,72,-0.5172126665711403],[116,127,73,-0.5156501978635788],[116,127,74,-0.5142863970249891],[116,127,75,-0.5132453367114067],[116,127,76,-0.5125550851225853],[116,127,77,-0.5119973700493574],[116,127,78,-0.5110151823610067],[116,127,79,-0.5095550315454602],[116,128,64,-0.5358160398900509],[116,128,65,-0.5347721707075834],[116,128,66,-0.5331818107515574],[116,128,67,-0.5313086658716202],[116,128,68,-0.5296951904892921],[116,128,69,-0.5284427274018526],[116,128,70,-0.5275341626256704],[116,128,71,-0.5264874286949635],[116,128,72,-0.5250251665711403],[116,128,73,-0.5234626978635788],[116,128,74,-0.5220988970249891],[116,128,75,-0.5210578367114067],[116,128,76,-0.5203675851225853],[116,128,77,-0.5198098700493574],[116,128,78,-0.5188276823610067],[116,128,79,-0.5173675315454602],[116,129,64,-0.5436285398900509],[116,129,65,-0.5425846707075834],[116,129,66,-0.5409943107515574],[116,129,67,-0.5391211658716202],[116,129,68,-0.5375076904892921],[116,129,69,-0.5362552274018526],[116,129,70,-0.5353466626256704],[116,129,71,-0.5342999286949635],[116,129,72,-0.5328376665711403],[116,129,73,-0.5312751978635788],[116,129,74,-0.5299113970249891],[116,129,75,-0.5288703367114067],[116,129,76,-0.5281800851225853],[116,129,77,-0.5276223700493574],[116,129,78,-0.5266401823610067],[116,129,79,-0.5251800315454602],[116,130,64,-0.5514410398900509],[116,130,65,-0.5503971707075834],[116,130,66,-0.5488068107515574],[116,130,67,-0.5469336658716202],[116,130,68,-0.5453201904892921],[116,130,69,-0.5440677274018526],[116,130,70,-0.5431591626256704],[116,130,71,-0.5421124286949635],[116,130,72,-0.5406501665711403],[116,130,73,-0.5390876978635788],[116,130,74,-0.5377238970249891],[116,130,75,-0.5366828367114067],[116,130,76,-0.5359925851225853],[116,130,77,-0.5354348700493574],[116,130,78,-0.5344526823610067],[116,130,79,-0.5329925315454602],[116,131,64,-0.5592535398900509],[116,131,65,-0.5582096707075834],[116,131,66,-0.5566193107515574],[116,131,67,-0.5547461658716202],[116,131,68,-0.5531326904892921],[116,131,69,-0.5518802274018526],[116,131,70,-0.5509716626256704],[116,131,71,-0.5499249286949635],[116,131,72,-0.5484626665711403],[116,131,73,-0.5469001978635788],[116,131,74,-0.5455363970249891],[116,131,75,-0.5444953367114067],[116,131,76,-0.5438050851225853],[116,131,77,-0.5432473700493574],[116,131,78,-0.5422651823610067],[116,131,79,-0.5408050315454602],[116,132,64,-0.5670660398900509],[116,132,65,-0.5660221707075834],[116,132,66,-0.5644318107515574],[116,132,67,-0.5625586658716202],[116,132,68,-0.5609451904892921],[116,132,69,-0.5596927274018526],[116,132,70,-0.5587841626256704],[116,132,71,-0.5577374286949635],[116,132,72,-0.5562751665711403],[116,132,73,-0.5547126978635788],[116,132,74,-0.5533488970249891],[116,132,75,-0.5523078367114067],[116,132,76,-0.5516175851225853],[116,132,77,-0.5510598700493574],[116,132,78,-0.5500776823610067],[116,132,79,-0.5486175315454602],[116,133,64,-0.5748785398900509],[116,133,65,-0.5738346707075834],[116,133,66,-0.5722443107515574],[116,133,67,-0.5703711658716202],[116,133,68,-0.5687576904892921],[116,133,69,-0.5675052274018526],[116,133,70,-0.5665966626256704],[116,133,71,-0.5655499286949635],[116,133,72,-0.5640876665711403],[116,133,73,-0.5625251978635788],[116,133,74,-0.5611613970249891],[116,133,75,-0.5601203367114067],[116,133,76,-0.5594300851225853],[116,133,77,-0.5588723700493574],[116,133,78,-0.5578901823610067],[116,133,79,-0.5564300315454602],[116,134,64,-0.5826910398900509],[116,134,65,-0.5816471707075834],[116,134,66,-0.5800568107515574],[116,134,67,-0.5781836658716202],[116,134,68,-0.5765701904892921],[116,134,69,-0.5753177274018526],[116,134,70,-0.5744091626256704],[116,134,71,-0.5733624286949635],[116,134,72,-0.5719001665711403],[116,134,73,-0.5703376978635788],[116,134,74,-0.5689738970249891],[116,134,75,-0.5679328367114067],[116,134,76,-0.5672425851225853],[116,134,77,-0.5666848700493574],[116,134,78,-0.5657026823610067],[116,134,79,-0.5642425315454602],[116,135,64,-0.5905035398900509],[116,135,65,-0.5894596707075834],[116,135,66,-0.5878693107515574],[116,135,67,-0.5859961658716202],[116,135,68,-0.5843826904892921],[116,135,69,-0.5831302274018526],[116,135,70,-0.5822216626256704],[116,135,71,-0.5811749286949635],[116,135,72,-0.5797126665711403],[116,135,73,-0.5781501978635788],[116,135,74,-0.5767863970249891],[116,135,75,-0.5757453367114067],[116,135,76,-0.5750550851225853],[116,135,77,-0.5744973700493574],[116,135,78,-0.5735151823610067],[116,135,79,-0.5720550315454602],[116,136,64,-0.5983160398900509],[116,136,65,-0.5972721707075834],[116,136,66,-0.5956818107515574],[116,136,67,-0.5938086658716202],[116,136,68,-0.5921951904892921],[116,136,69,-0.5909427274018526],[116,136,70,-0.5900341626256704],[116,136,71,-0.5889874286949635],[116,136,72,-0.5875251665711403],[116,136,73,-0.5859626978635788],[116,136,74,-0.5845988970249891],[116,136,75,-0.5835578367114067],[116,136,76,-0.5828675851225853],[116,136,77,-0.5823098700493574],[116,136,78,-0.5813276823610067],[116,136,79,-0.5798675315454602],[116,137,64,-0.6061285398900509],[116,137,65,-0.6050846707075834],[116,137,66,-0.6034943107515574],[116,137,67,-0.6016211658716202],[116,137,68,-0.6000076904892921],[116,137,69,-0.5987552274018526],[116,137,70,-0.5978466626256704],[116,137,71,-0.5967999286949635],[116,137,72,-0.5953376665711403],[116,137,73,-0.5937751978635788],[116,137,74,-0.5924113970249891],[116,137,75,-0.5913703367114067],[116,137,76,-0.5906800851225853],[116,137,77,-0.5901223700493574],[116,137,78,-0.5891401823610067],[116,137,79,-0.5876800315454602],[116,138,64,-0.6139410398900509],[116,138,65,-0.6128971707075834],[116,138,66,-0.6113068107515574],[116,138,67,-0.6094336658716202],[116,138,68,-0.6078201904892921],[116,138,69,-0.6065677274018526],[116,138,70,-0.6056591626256704],[116,138,71,-0.6046124286949635],[116,138,72,-0.6031501665711403],[116,138,73,-0.6015876978635788],[116,138,74,-0.6002238970249891],[116,138,75,-0.5991828367114067],[116,138,76,-0.5984925851225853],[116,138,77,-0.5979348700493574],[116,138,78,-0.5969526823610067],[116,138,79,-0.5954925315454602],[116,139,64,-0.6217535398900509],[116,139,65,-0.6207096707075834],[116,139,66,-0.6191193107515574],[116,139,67,-0.6172461658716202],[116,139,68,-0.6156326904892921],[116,139,69,-0.6143802274018526],[116,139,70,-0.6134716626256704],[116,139,71,-0.6124249286949635],[116,139,72,-0.6109626665711403],[116,139,73,-0.6094001978635788],[116,139,74,-0.6080363970249891],[116,139,75,-0.6069953367114067],[116,139,76,-0.6063050851225853],[116,139,77,-0.6057473700493574],[116,139,78,-0.6047651823610067],[116,139,79,-0.6033050315454602],[116,140,64,-0.6295660398900509],[116,140,65,-0.6285221707075834],[116,140,66,-0.6269318107515574],[116,140,67,-0.6250586658716202],[116,140,68,-0.6234451904892921],[116,140,69,-0.6221927274018526],[116,140,70,-0.6212841626256704],[116,140,71,-0.6202374286949635],[116,140,72,-0.6187751665711403],[116,140,73,-0.6172126978635788],[116,140,74,-0.6158488970249891],[116,140,75,-0.6148078367114067],[116,140,76,-0.6141175851225853],[116,140,77,-0.6135598700493574],[116,140,78,-0.6125776823610067],[116,140,79,-0.6111175315454602],[116,141,64,-0.6373785398900509],[116,141,65,-0.6363346707075834],[116,141,66,-0.6347443107515574],[116,141,67,-0.6328711658716202],[116,141,68,-0.6312576904892921],[116,141,69,-0.6300052274018526],[116,141,70,-0.6290966626256704],[116,141,71,-0.6280499286949635],[116,141,72,-0.6265876665711403],[116,141,73,-0.6250251978635788],[116,141,74,-0.6236613970249891],[116,141,75,-0.6226203367114067],[116,141,76,-0.6219300851225853],[116,141,77,-0.6213723700493574],[116,141,78,-0.6203901823610067],[116,141,79,-0.6189300315454602],[116,142,64,-0.6451910398900509],[116,142,65,-0.6441471707075834],[116,142,66,-0.6425568107515574],[116,142,67,-0.6406836658716202],[116,142,68,-0.6390701904892921],[116,142,69,-0.6378177274018526],[116,142,70,-0.6369091626256704],[116,142,71,-0.6358624286949635],[116,142,72,-0.6344001665711403],[116,142,73,-0.6328376978635788],[116,142,74,-0.6314738970249891],[116,142,75,-0.6304328367114067],[116,142,76,-0.6297425851225853],[116,142,77,-0.6291848700493574],[116,142,78,-0.6282026823610067],[116,142,79,-0.6267425315454602],[116,143,64,-0.6530035398900509],[116,143,65,-0.6519596707075834],[116,143,66,-0.6503693107515574],[116,143,67,-0.6484961658716202],[116,143,68,-0.6468826904892921],[116,143,69,-0.6456302274018526],[116,143,70,-0.6447216626256704],[116,143,71,-0.6436749286949635],[116,143,72,-0.6422126665711403],[116,143,73,-0.6406501978635788],[116,143,74,-0.6392863970249891],[116,143,75,-0.6382453367114067],[116,143,76,-0.6375550851225853],[116,143,77,-0.6369973700493574],[116,143,78,-0.6360151823610067],[116,143,79,-0.6345550315454602],[116,144,64,-0.6608160398900509],[116,144,65,-0.6597721707075834],[116,144,66,-0.6581818107515574],[116,144,67,-0.6563086658716202],[116,144,68,-0.6546951904892921],[116,144,69,-0.6534427274018526],[116,144,70,-0.6525341626256704],[116,144,71,-0.6514874286949635],[116,144,72,-0.6500251665711403],[116,144,73,-0.6484626978635788],[116,144,74,-0.6470988970249891],[116,144,75,-0.6460578367114067],[116,144,76,-0.6453675851225853],[116,144,77,-0.6448098700493574],[116,144,78,-0.6438276823610067],[116,144,79,-0.6423675315454602],[116,145,64,-0.6686285398900509],[116,145,65,-0.6675846707075834],[116,145,66,-0.6659943107515574],[116,145,67,-0.6641211658716202],[116,145,68,-0.6625076904892921],[116,145,69,-0.6612552274018526],[116,145,70,-0.6603466626256704],[116,145,71,-0.6592999286949635],[116,145,72,-0.6578376665711403],[116,145,73,-0.6562751978635788],[116,145,74,-0.6549113970249891],[116,145,75,-0.6538703367114067],[116,145,76,-0.6531800851225853],[116,145,77,-0.6526223700493574],[116,145,78,-0.6516401823610067],[116,145,79,-0.6501800315454602],[116,146,64,-0.6764410398900509],[116,146,65,-0.6753971707075834],[116,146,66,-0.6738068107515574],[116,146,67,-0.6719336658716202],[116,146,68,-0.6703201904892921],[116,146,69,-0.6690677274018526],[116,146,70,-0.6681591626256704],[116,146,71,-0.6671124286949635],[116,146,72,-0.6656501665711403],[116,146,73,-0.6640876978635788],[116,146,74,-0.6627238970249891],[116,146,75,-0.6616828367114067],[116,146,76,-0.6609925851225853],[116,146,77,-0.6604348700493574],[116,146,78,-0.6594526823610067],[116,146,79,-0.6579925315454602],[116,147,64,-0.6842535398900509],[116,147,65,-0.6832096707075834],[116,147,66,-0.6816193107515574],[116,147,67,-0.6797461658716202],[116,147,68,-0.6781326904892921],[116,147,69,-0.6768802274018526],[116,147,70,-0.6759716626256704],[116,147,71,-0.6749249286949635],[116,147,72,-0.6734626665711403],[116,147,73,-0.6719001978635788],[116,147,74,-0.6705363970249891],[116,147,75,-0.6694953367114067],[116,147,76,-0.6688050851225853],[116,147,77,-0.6682473700493574],[116,147,78,-0.6672651823610067],[116,147,79,-0.6658050315454602],[116,148,64,-0.6920660398900509],[116,148,65,-0.6910221707075834],[116,148,66,-0.6894318107515574],[116,148,67,-0.6875586658716202],[116,148,68,-0.6859451904892921],[116,148,69,-0.6846927274018526],[116,148,70,-0.6837841626256704],[116,148,71,-0.6827374286949635],[116,148,72,-0.6812751665711403],[116,148,73,-0.6797126978635788],[116,148,74,-0.6783488970249891],[116,148,75,-0.6773078367114067],[116,148,76,-0.6766175851225853],[116,148,77,-0.6760598700493574],[116,148,78,-0.6750776823610067],[116,148,79,-0.6736175315454602],[116,149,64,-0.6998785398900509],[116,149,65,-0.6988346707075834],[116,149,66,-0.6972443107515574],[116,149,67,-0.6953711658716202],[116,149,68,-0.6937576904892921],[116,149,69,-0.6925052274018526],[116,149,70,-0.6915966626256704],[116,149,71,-0.6905499286949635],[116,149,72,-0.6890876665711403],[116,149,73,-0.6875251978635788],[116,149,74,-0.6861613970249891],[116,149,75,-0.6851203367114067],[116,149,76,-0.6844300851225853],[116,149,77,-0.6838723700493574],[116,149,78,-0.6828901823610067],[116,149,79,-0.6814300315454602],[116,150,64,-0.7076910398900509],[116,150,65,-0.7066471707075834],[116,150,66,-0.7050568107515574],[116,150,67,-0.7031836658716202],[116,150,68,-0.7015701904892921],[116,150,69,-0.7003177274018526],[116,150,70,-0.6994091626256704],[116,150,71,-0.6983624286949635],[116,150,72,-0.6969001665711403],[116,150,73,-0.6953376978635788],[116,150,74,-0.6939738970249891],[116,150,75,-0.6929328367114067],[116,150,76,-0.6922425851225853],[116,150,77,-0.6916848700493574],[116,150,78,-0.6907026823610067],[116,150,79,-0.6892425315454602],[116,151,64,-0.7155035398900509],[116,151,65,-0.7144596707075834],[116,151,66,-0.7128693107515574],[116,151,67,-0.7109961658716202],[116,151,68,-0.7093826904892921],[116,151,69,-0.7081302274018526],[116,151,70,-0.7072216626256704],[116,151,71,-0.7061749286949635],[116,151,72,-0.7047126665711403],[116,151,73,-0.7031501978635788],[116,151,74,-0.7017863970249891],[116,151,75,-0.7007453367114067],[116,151,76,-0.7000550851225853],[116,151,77,-0.6994973700493574],[116,151,78,-0.6985151823610067],[116,151,79,-0.6970550315454602],[116,152,64,-0.7233160398900509],[116,152,65,-0.7222721707075834],[116,152,66,-0.7206818107515574],[116,152,67,-0.7188086658716202],[116,152,68,-0.7171951904892921],[116,152,69,-0.7159427274018526],[116,152,70,-0.7150341626256704],[116,152,71,-0.7139874286949635],[116,152,72,-0.7125251665711403],[116,152,73,-0.7109626978635788],[116,152,74,-0.7095988970249891],[116,152,75,-0.7085578367114067],[116,152,76,-0.7078675851225853],[116,152,77,-0.7073098700493574],[116,152,78,-0.7063276823610067],[116,152,79,-0.7048675315454602],[116,153,64,-0.7311285398900509],[116,153,65,-0.7300846707075834],[116,153,66,-0.7284943107515574],[116,153,67,-0.7266211658716202],[116,153,68,-0.7250076904892921],[116,153,69,-0.7237552274018526],[116,153,70,-0.7228466626256704],[116,153,71,-0.7217999286949635],[116,153,72,-0.7203376665711403],[116,153,73,-0.7187751978635788],[116,153,74,-0.7174113970249891],[116,153,75,-0.7163703367114067],[116,153,76,-0.7156800851225853],[116,153,77,-0.7151223700493574],[116,153,78,-0.7141401823610067],[116,153,79,-0.7126800315454602],[116,154,64,-0.7389410398900509],[116,154,65,-0.7378971707075834],[116,154,66,-0.7363068107515574],[116,154,67,-0.7344336658716202],[116,154,68,-0.7328201904892921],[116,154,69,-0.7315677274018526],[116,154,70,-0.7306591626256704],[116,154,71,-0.7296124286949635],[116,154,72,-0.7281501665711403],[116,154,73,-0.7265876978635788],[116,154,74,-0.7252238970249891],[116,154,75,-0.7241828367114067],[116,154,76,-0.7234925851225853],[116,154,77,-0.7229348700493574],[116,154,78,-0.7219526823610067],[116,154,79,-0.7204925315454602],[116,155,64,-0.7467535398900509],[116,155,65,-0.7457096707075834],[116,155,66,-0.7441193107515574],[116,155,67,-0.7422461658716202],[116,155,68,-0.7406326904892921],[116,155,69,-0.7393802274018526],[116,155,70,-0.7384716626256704],[116,155,71,-0.7374249286949635],[116,155,72,-0.7359626665711403],[116,155,73,-0.7344001978635788],[116,155,74,-0.7330363970249891],[116,155,75,-0.7319953367114067],[116,155,76,-0.7313050851225853],[116,155,77,-0.7307473700493574],[116,155,78,-0.7297651823610067],[116,155,79,-0.7283050315454602],[116,156,64,-0.7545660398900509],[116,156,65,-0.7535221707075834],[116,156,66,-0.7519318107515574],[116,156,67,-0.7500586658716202],[116,156,68,-0.7484451904892921],[116,156,69,-0.7471927274018526],[116,156,70,-0.7462841626256704],[116,156,71,-0.7452374286949635],[116,156,72,-0.7437751665711403],[116,156,73,-0.7422126978635788],[116,156,74,-0.7408488970249891],[116,156,75,-0.7398078367114067],[116,156,76,-0.7391175851225853],[116,156,77,-0.7385598700493574],[116,156,78,-0.7375776823610067],[116,156,79,-0.7361175315454602],[116,157,64,-0.7623785398900509],[116,157,65,-0.7613346707075834],[116,157,66,-0.7597443107515574],[116,157,67,-0.7578711658716202],[116,157,68,-0.7562576904892921],[116,157,69,-0.7550052274018526],[116,157,70,-0.7540966626256704],[116,157,71,-0.7530499286949635],[116,157,72,-0.7515876665711403],[116,157,73,-0.7500251978635788],[116,157,74,-0.7486613970249891],[116,157,75,-0.7476203367114067],[116,157,76,-0.7469300851225853],[116,157,77,-0.7463723700493574],[116,157,78,-0.7453901823610067],[116,157,79,-0.7439300315454602],[116,158,64,-0.7701910398900509],[116,158,65,-0.7691471707075834],[116,158,66,-0.7675568107515574],[116,158,67,-0.7656836658716202],[116,158,68,-0.7640701904892921],[116,158,69,-0.7628177274018526],[116,158,70,-0.7619091626256704],[116,158,71,-0.7608624286949635],[116,158,72,-0.7594001665711403],[116,158,73,-0.7578376978635788],[116,158,74,-0.7564738970249891],[116,158,75,-0.7554328367114067],[116,158,76,-0.7547425851225853],[116,158,77,-0.7541848700493574],[116,158,78,-0.7532026823610067],[116,158,79,-0.7517425315454602],[116,159,64,-0.7780035398900509],[116,159,65,-0.7769596707075834],[116,159,66,-0.7753693107515574],[116,159,67,-0.7734961658716202],[116,159,68,-0.7718826904892921],[116,159,69,-0.7706302274018526],[116,159,70,-0.7697216626256704],[116,159,71,-0.7686749286949635],[116,159,72,-0.7672126665711403],[116,159,73,-0.7656501978635788],[116,159,74,-0.7642863970249891],[116,159,75,-0.7632453367114067],[116,159,76,-0.7625550851225853],[116,159,77,-0.7619973700493574],[116,159,78,-0.7610151823610067],[116,159,79,-0.7595550315454602],[116,160,64,-0.7858160398900509],[116,160,65,-0.7847721707075834],[116,160,66,-0.7831818107515574],[116,160,67,-0.7813086658716202],[116,160,68,-0.7796951904892921],[116,160,69,-0.7784427274018526],[116,160,70,-0.7775341626256704],[116,160,71,-0.7764874286949635],[116,160,72,-0.7750251665711403],[116,160,73,-0.7734626978635788],[116,160,74,-0.7720988970249891],[116,160,75,-0.7710578367114067],[116,160,76,-0.7703675851225853],[116,160,77,-0.7698098700493574],[116,160,78,-0.7688276823610067],[116,160,79,-0.7673675315454602],[116,161,64,-0.7936285398900509],[116,161,65,-0.7925846707075834],[116,161,66,-0.7909943107515574],[116,161,67,-0.7891211658716202],[116,161,68,-0.7875076904892921],[116,161,69,-0.7862552274018526],[116,161,70,-0.7853466626256704],[116,161,71,-0.7842999286949635],[116,161,72,-0.7828376665711403],[116,161,73,-0.7812751978635788],[116,161,74,-0.7799113970249891],[116,161,75,-0.7788703367114067],[116,161,76,-0.7781800851225853],[116,161,77,-0.7776223700493574],[116,161,78,-0.7766401823610067],[116,161,79,-0.7751800315454602],[116,162,64,-0.8014410398900509],[116,162,65,-0.8003971707075834],[116,162,66,-0.7988068107515574],[116,162,67,-0.7969336658716202],[116,162,68,-0.7953201904892921],[116,162,69,-0.7940677274018526],[116,162,70,-0.7931591626256704],[116,162,71,-0.7921124286949635],[116,162,72,-0.7906501665711403],[116,162,73,-0.7890876978635788],[116,162,74,-0.7877238970249891],[116,162,75,-0.7866828367114067],[116,162,76,-0.7859925851225853],[116,162,77,-0.7854348700493574],[116,162,78,-0.7844526823610067],[116,162,79,-0.7829925315454602],[116,163,64,-0.8092535398900509],[116,163,65,-0.8082096707075834],[116,163,66,-0.8066193107515574],[116,163,67,-0.8047461658716202],[116,163,68,-0.8031326904892921],[116,163,69,-0.8018802274018526],[116,163,70,-0.8009716626256704],[116,163,71,-0.7999249286949635],[116,163,72,-0.7984626665711403],[116,163,73,-0.7969001978635788],[116,163,74,-0.7955363970249891],[116,163,75,-0.7944953367114067],[116,163,76,-0.7938050851225853],[116,163,77,-0.7932473700493574],[116,163,78,-0.7922651823610067],[116,163,79,-0.7908050315454602],[116,164,64,-0.8170660398900509],[116,164,65,-0.8160221707075834],[116,164,66,-0.8144318107515574],[116,164,67,-0.8125586658716202],[116,164,68,-0.8109451904892921],[116,164,69,-0.8096927274018526],[116,164,70,-0.8087841626256704],[116,164,71,-0.8077374286949635],[116,164,72,-0.8062751665711403],[116,164,73,-0.8047126978635788],[116,164,74,-0.8033488970249891],[116,164,75,-0.8023078367114067],[116,164,76,-0.8016175851225853],[116,164,77,-0.8010598700493574],[116,164,78,-0.8000776823610067],[116,164,79,-0.7986175315454602],[116,165,64,-0.8248785398900509],[116,165,65,-0.8238346707075834],[116,165,66,-0.8222443107515574],[116,165,67,-0.8203711658716202],[116,165,68,-0.8187576904892921],[116,165,69,-0.8175052274018526],[116,165,70,-0.8165966626256704],[116,165,71,-0.8155499286949635],[116,165,72,-0.8140876665711403],[116,165,73,-0.8125251978635788],[116,165,74,-0.8111613970249891],[116,165,75,-0.8101203367114067],[116,165,76,-0.8094300851225853],[116,165,77,-0.8088723700493574],[116,165,78,-0.8078901823610067],[116,165,79,-0.8064300315454602],[116,166,64,-0.8326910398900509],[116,166,65,-0.8316471707075834],[116,166,66,-0.8300568107515574],[116,166,67,-0.8281836658716202],[116,166,68,-0.8265701904892921],[116,166,69,-0.8253177274018526],[116,166,70,-0.8244091626256704],[116,166,71,-0.8233624286949635],[116,166,72,-0.8219001665711403],[116,166,73,-0.8203376978635788],[116,166,74,-0.8189738970249891],[116,166,75,-0.8179328367114067],[116,166,76,-0.8172425851225853],[116,166,77,-0.8166848700493574],[116,166,78,-0.8157026823610067],[116,166,79,-0.8142425315454602],[116,167,64,-0.8405035398900509],[116,167,65,-0.8394596707075834],[116,167,66,-0.8378693107515574],[116,167,67,-0.8359961658716202],[116,167,68,-0.8343826904892921],[116,167,69,-0.8331302274018526],[116,167,70,-0.8322216626256704],[116,167,71,-0.8311749286949635],[116,167,72,-0.8297126665711403],[116,167,73,-0.8281501978635788],[116,167,74,-0.8267863970249891],[116,167,75,-0.8257453367114067],[116,167,76,-0.8250550851225853],[116,167,77,-0.8244973700493574],[116,167,78,-0.8235151823610067],[116,167,79,-0.8220550315454602],[116,168,64,-0.8483160398900509],[116,168,65,-0.8472721707075834],[116,168,66,-0.8456818107515574],[116,168,67,-0.8438086658716202],[116,168,68,-0.8421951904892921],[116,168,69,-0.8409427274018526],[116,168,70,-0.8400341626256704],[116,168,71,-0.8389874286949635],[116,168,72,-0.8375251665711403],[116,168,73,-0.8359626978635788],[116,168,74,-0.8345988970249891],[116,168,75,-0.8335578367114067],[116,168,76,-0.8328675851225853],[116,168,77,-0.8323098700493574],[116,168,78,-0.8313276823610067],[116,168,79,-0.8298675315454602],[116,169,64,-0.8561285398900509],[116,169,65,-0.8550846707075834],[116,169,66,-0.8534943107515574],[116,169,67,-0.8516211658716202],[116,169,68,-0.8500076904892921],[116,169,69,-0.8487552274018526],[116,169,70,-0.8478466626256704],[116,169,71,-0.8467999286949635],[116,169,72,-0.8453376665711403],[116,169,73,-0.8437751978635788],[116,169,74,-0.8424113970249891],[116,169,75,-0.8413703367114067],[116,169,76,-0.8406800851225853],[116,169,77,-0.8401223700493574],[116,169,78,-0.8391401823610067],[116,169,79,-0.8376800315454602],[116,170,64,-0.8639410398900509],[116,170,65,-0.8628971707075834],[116,170,66,-0.8613068107515574],[116,170,67,-0.8594336658716202],[116,170,68,-0.8578201904892921],[116,170,69,-0.8565677274018526],[116,170,70,-0.8556591626256704],[116,170,71,-0.8546124286949635],[116,170,72,-0.8531501665711403],[116,170,73,-0.8515876978635788],[116,170,74,-0.8502238970249891],[116,170,75,-0.8491828367114067],[116,170,76,-0.8484925851225853],[116,170,77,-0.8479348700493574],[116,170,78,-0.8469526823610067],[116,170,79,-0.8454925315454602],[116,171,64,-0.8717535398900509],[116,171,65,-0.8707096707075834],[116,171,66,-0.8691193107515574],[116,171,67,-0.8672461658716202],[116,171,68,-0.8656326904892921],[116,171,69,-0.8643802274018526],[116,171,70,-0.8634716626256704],[116,171,71,-0.8624249286949635],[116,171,72,-0.8609626665711403],[116,171,73,-0.8594001978635788],[116,171,74,-0.8580363970249891],[116,171,75,-0.8569953367114067],[116,171,76,-0.8563050851225853],[116,171,77,-0.8557473700493574],[116,171,78,-0.8547651823610067],[116,171,79,-0.8533050315454602],[116,172,64,-0.8795660398900509],[116,172,65,-0.8785221707075834],[116,172,66,-0.8769318107515574],[116,172,67,-0.8750586658716202],[116,172,68,-0.8734451904892921],[116,172,69,-0.8721927274018526],[116,172,70,-0.8712841626256704],[116,172,71,-0.8702374286949635],[116,172,72,-0.8687751665711403],[116,172,73,-0.8672126978635788],[116,172,74,-0.8658488970249891],[116,172,75,-0.8648078367114067],[116,172,76,-0.8641175851225853],[116,172,77,-0.8635598700493574],[116,172,78,-0.8625776823610067],[116,172,79,-0.8611175315454602],[116,173,64,-0.8873785398900509],[116,173,65,-0.8863346707075834],[116,173,66,-0.8847443107515574],[116,173,67,-0.8828711658716202],[116,173,68,-0.8812576904892921],[116,173,69,-0.8800052274018526],[116,173,70,-0.8790966626256704],[116,173,71,-0.8780499286949635],[116,173,72,-0.8765876665711403],[116,173,73,-0.8750251978635788],[116,173,74,-0.8736613970249891],[116,173,75,-0.8726203367114067],[116,173,76,-0.8719300851225853],[116,173,77,-0.8713723700493574],[116,173,78,-0.8703901823610067],[116,173,79,-0.8689300315454602],[116,174,64,-0.8951910398900509],[116,174,65,-0.8941471707075834],[116,174,66,-0.8925568107515574],[116,174,67,-0.8906836658716202],[116,174,68,-0.8890701904892921],[116,174,69,-0.8878177274018526],[116,174,70,-0.8869091626256704],[116,174,71,-0.8858624286949635],[116,174,72,-0.8844001665711403],[116,174,73,-0.8828376978635788],[116,174,74,-0.8814738970249891],[116,174,75,-0.8804328367114067],[116,174,76,-0.8797425851225853],[116,174,77,-0.8791848700493574],[116,174,78,-0.8782026823610067],[116,174,79,-0.8767425315454602],[116,175,64,-0.9030035398900509],[116,175,65,-0.9019596707075834],[116,175,66,-0.9003693107515574],[116,175,67,-0.8984961658716202],[116,175,68,-0.8968826904892921],[116,175,69,-0.8956302274018526],[116,175,70,-0.8947216626256704],[116,175,71,-0.8936749286949635],[116,175,72,-0.8922126665711403],[116,175,73,-0.8906501978635788],[116,175,74,-0.8892863970249891],[116,175,75,-0.8882453367114067],[116,175,76,-0.8875550851225853],[116,175,77,-0.8869973700493574],[116,175,78,-0.8860151823610067],[116,175,79,-0.8845550315454602],[116,176,64,-0.9108160398900509],[116,176,65,-0.9097721707075834],[116,176,66,-0.9081818107515574],[116,176,67,-0.9063086658716202],[116,176,68,-0.9046951904892921],[116,176,69,-0.9034427274018526],[116,176,70,-0.9025341626256704],[116,176,71,-0.9014874286949635],[116,176,72,-0.9000251665711403],[116,176,73,-0.8984626978635788],[116,176,74,-0.8970988970249891],[116,176,75,-0.8960578367114067],[116,176,76,-0.8953675851225853],[116,176,77,-0.8948098700493574],[116,176,78,-0.8938276823610067],[116,176,79,-0.8923675315454602],[116,177,64,-0.9186285398900509],[116,177,65,-0.9175846707075834],[116,177,66,-0.9159943107515574],[116,177,67,-0.9141211658716202],[116,177,68,-0.9125076904892921],[116,177,69,-0.9112552274018526],[116,177,70,-0.9103466626256704],[116,177,71,-0.9092999286949635],[116,177,72,-0.9078376665711403],[116,177,73,-0.9062751978635788],[116,177,74,-0.9049113970249891],[116,177,75,-0.9038703367114067],[116,177,76,-0.9031800851225853],[116,177,77,-0.9026223700493574],[116,177,78,-0.9016401823610067],[116,177,79,-0.9001800315454602],[116,178,64,-0.9264410398900509],[116,178,65,-0.9253971707075834],[116,178,66,-0.9238068107515574],[116,178,67,-0.9219336658716202],[116,178,68,-0.9203201904892921],[116,178,69,-0.9190677274018526],[116,178,70,-0.9181591626256704],[116,178,71,-0.9171124286949635],[116,178,72,-0.9156501665711403],[116,178,73,-0.9140876978635788],[116,178,74,-0.9127238970249891],[116,178,75,-0.9116828367114067],[116,178,76,-0.9109925851225853],[116,178,77,-0.9104348700493574],[116,178,78,-0.9094526823610067],[116,178,79,-0.9079925315454602],[116,179,64,-0.9342535398900509],[116,179,65,-0.9332096707075834],[116,179,66,-0.9316193107515574],[116,179,67,-0.9297461658716202],[116,179,68,-0.9281326904892921],[116,179,69,-0.9268802274018526],[116,179,70,-0.9259716626256704],[116,179,71,-0.9249249286949635],[116,179,72,-0.9234626665711403],[116,179,73,-0.9219001978635788],[116,179,74,-0.9205363970249891],[116,179,75,-0.9194953367114067],[116,179,76,-0.9188050851225853],[116,179,77,-0.9182473700493574],[116,179,78,-0.9172651823610067],[116,179,79,-0.9158050315454602],[116,180,64,-0.9420660398900509],[116,180,65,-0.9410221707075834],[116,180,66,-0.9394318107515574],[116,180,67,-0.9375586658716202],[116,180,68,-0.9359451904892921],[116,180,69,-0.9346927274018526],[116,180,70,-0.9337841626256704],[116,180,71,-0.9327374286949635],[116,180,72,-0.9312751665711403],[116,180,73,-0.9297126978635788],[116,180,74,-0.9283488970249891],[116,180,75,-0.9273078367114067],[116,180,76,-0.9266175851225853],[116,180,77,-0.9260598700493574],[116,180,78,-0.9250776823610067],[116,180,79,-0.9236175315454602],[116,181,64,-0.9498785398900509],[116,181,65,-0.9488346707075834],[116,181,66,-0.9472443107515574],[116,181,67,-0.9453711658716202],[116,181,68,-0.9437576904892921],[116,181,69,-0.9425052274018526],[116,181,70,-0.9415966626256704],[116,181,71,-0.9405499286949635],[116,181,72,-0.9390876665711403],[116,181,73,-0.9375251978635788],[116,181,74,-0.9361613970249891],[116,181,75,-0.9351203367114067],[116,181,76,-0.9344300851225853],[116,181,77,-0.9338723700493574],[116,181,78,-0.9328901823610067],[116,181,79,-0.9314300315454602],[116,182,64,-0.9576910398900509],[116,182,65,-0.9566471707075834],[116,182,66,-0.9550568107515574],[116,182,67,-0.9531836658716202],[116,182,68,-0.9515701904892921],[116,182,69,-0.9503177274018526],[116,182,70,-0.9494091626256704],[116,182,71,-0.9483624286949635],[116,182,72,-0.9469001665711403],[116,182,73,-0.9453376978635788],[116,182,74,-0.9439738970249891],[116,182,75,-0.9429328367114067],[116,182,76,-0.9422425851225853],[116,182,77,-0.9416848700493574],[116,182,78,-0.9407026823610067],[116,182,79,-0.9392425315454602],[116,183,64,-0.9655035398900509],[116,183,65,-0.9644596707075834],[116,183,66,-0.9628693107515574],[116,183,67,-0.9609961658716202],[116,183,68,-0.9593826904892921],[116,183,69,-0.9581302274018526],[116,183,70,-0.9572216626256704],[116,183,71,-0.9561749286949635],[116,183,72,-0.9547126665711403],[116,183,73,-0.9531501978635788],[116,183,74,-0.9517863970249891],[116,183,75,-0.9507453367114067],[116,183,76,-0.9500550851225853],[116,183,77,-0.9494973700493574],[116,183,78,-0.9485151823610067],[116,183,79,-0.9470550315454602],[116,184,64,-0.9733160398900509],[116,184,65,-0.9722721707075834],[116,184,66,-0.9706818107515574],[116,184,67,-0.9688086658716202],[116,184,68,-0.9671951904892921],[116,184,69,-0.9659427274018526],[116,184,70,-0.9650341626256704],[116,184,71,-0.9639874286949635],[116,184,72,-0.9625251665711403],[116,184,73,-0.9609626978635788],[116,184,74,-0.9595988970249891],[116,184,75,-0.9585578367114067],[116,184,76,-0.9578675851225853],[116,184,77,-0.9573098700493574],[116,184,78,-0.9563276823610067],[116,184,79,-0.9548675315454602],[116,185,64,-0.9811285398900509],[116,185,65,-0.9800846707075834],[116,185,66,-0.9784943107515574],[116,185,67,-0.9766211658716202],[116,185,68,-0.9750076904892921],[116,185,69,-0.9737552274018526],[116,185,70,-0.9728466626256704],[116,185,71,-0.9717999286949635],[116,185,72,-0.9703376665711403],[116,185,73,-0.9687751978635788],[116,185,74,-0.9674113970249891],[116,185,75,-0.9663703367114067],[116,185,76,-0.9656800851225853],[116,185,77,-0.9651223700493574],[116,185,78,-0.9641401823610067],[116,185,79,-0.9626800315454602],[116,186,64,-0.9889410398900509],[116,186,65,-0.9878971707075834],[116,186,66,-0.9863068107515574],[116,186,67,-0.9844336658716202],[116,186,68,-0.9828201904892921],[116,186,69,-0.9815677274018526],[116,186,70,-0.9806591626256704],[116,186,71,-0.9796124286949635],[116,186,72,-0.9781501665711403],[116,186,73,-0.9765876978635788],[116,186,74,-0.9752238970249891],[116,186,75,-0.9741828367114067],[116,186,76,-0.9734925851225853],[116,186,77,-0.9729348700493574],[116,186,78,-0.9719526823610067],[116,186,79,-0.9704925315454602],[116,187,64,-0.9967535398900509],[116,187,65,-0.9957096707075834],[116,187,66,-0.9941193107515574],[116,187,67,-0.9922461658716202],[116,187,68,-0.9906326904892921],[116,187,69,-0.9893802274018526],[116,187,70,-0.9884716626256704],[116,187,71,-0.9874249286949635],[116,187,72,-0.9859626665711403],[116,187,73,-0.9844001978635788],[116,187,74,-0.9830363970249891],[116,187,75,-0.9819953367114067],[116,187,76,-0.9813050851225853],[116,187,77,-0.9807473700493574],[116,187,78,-0.9797651823610067],[116,187,79,-0.9783050315454602],[116,188,64,-1.0045660398900509],[116,188,65,-1.0035221707075834],[116,188,66,-1.0019318107515574],[116,188,67,-1.0000586658716202],[116,188,68,-0.9984451904892921],[116,188,69,-0.9971927274018526],[116,188,70,-0.9962841626256704],[116,188,71,-0.9952374286949635],[116,188,72,-0.9937751665711403],[116,188,73,-0.9922126978635788],[116,188,74,-0.9908488970249891],[116,188,75,-0.9898078367114067],[116,188,76,-0.9891175851225853],[116,188,77,-0.9885598700493574],[116,188,78,-0.9875776823610067],[116,188,79,-0.9861175315454602],[116,189,64,-1.0123785398900509],[116,189,65,-1.0113346707075834],[116,189,66,-1.0097443107515574],[116,189,67,-1.0078711658716202],[116,189,68,-1.0062576904892921],[116,189,69,-1.0050052274018526],[116,189,70,-1.0040966626256704],[116,189,71,-1.0030499286949635],[116,189,72,-1.0015876665711403],[116,189,73,-1.0000251978635788],[116,189,74,-0.9986613970249891],[116,189,75,-0.9976203367114067],[116,189,76,-0.9969300851225853],[116,189,77,-0.9963723700493574],[116,189,78,-0.9953901823610067],[116,189,79,-0.9939300315454602],[116,190,64,-1.0201910398900509],[116,190,65,-1.0191471707075834],[116,190,66,-1.0175568107515574],[116,190,67,-1.0156836658716202],[116,190,68,-1.0140701904892921],[116,190,69,-1.0128177274018526],[116,190,70,-1.0119091626256704],[116,190,71,-1.0108624286949635],[116,190,72,-1.0094001665711403],[116,190,73,-1.0078376978635788],[116,190,74,-1.0064738970249891],[116,190,75,-1.0054328367114067],[116,190,76,-1.0047425851225853],[116,190,77,-1.0041848700493574],[116,190,78,-1.0032026823610067],[116,190,79,-1.0017425315454602],[116,191,64,-1.0280035398900509],[116,191,65,-1.0269596707075834],[116,191,66,-1.0253693107515574],[116,191,67,-1.0234961658716202],[116,191,68,-1.0218826904892921],[116,191,69,-1.0206302274018526],[116,191,70,-1.0197216626256704],[116,191,71,-1.0186749286949635],[116,191,72,-1.0172126665711403],[116,191,73,-1.0156501978635788],[116,191,74,-1.0142863970249891],[116,191,75,-1.0132453367114067],[116,191,76,-1.0125550851225853],[116,191,77,-1.0119973700493574],[116,191,78,-1.0110151823610067],[116,191,79,-1.0095550315454602],[116,192,64,-1.0358160398900509],[116,192,65,-1.0347721707075834],[116,192,66,-1.0331818107515574],[116,192,67,-1.0313086658716202],[116,192,68,-1.0296951904892921],[116,192,69,-1.0284427274018526],[116,192,70,-1.0275341626256704],[116,192,71,-1.0264874286949635],[116,192,72,-1.0250251665711403],[116,192,73,-1.0234626978635788],[116,192,74,-1.0220988970249891],[116,192,75,-1.0210578367114067],[116,192,76,-1.0203675851225853],[116,192,77,-1.0198098700493574],[116,192,78,-1.0188276823610067],[116,192,79,-1.0173675315454602],[116,193,64,-1.0436285398900509],[116,193,65,-1.0425846707075834],[116,193,66,-1.0409943107515574],[116,193,67,-1.0391211658716202],[116,193,68,-1.0375076904892921],[116,193,69,-1.0362552274018526],[116,193,70,-1.0353466626256704],[116,193,71,-1.0342999286949635],[116,193,72,-1.0328376665711403],[116,193,73,-1.0312751978635788],[116,193,74,-1.0299113970249891],[116,193,75,-1.0288703367114067],[116,193,76,-1.0281800851225853],[116,193,77,-1.0276223700493574],[116,193,78,-1.0266401823610067],[116,193,79,-1.0251800315454602],[116,194,64,-1.0514410398900509],[116,194,65,-1.0503971707075834],[116,194,66,-1.0488068107515574],[116,194,67,-1.0469336658716202],[116,194,68,-1.0453201904892921],[116,194,69,-1.0440677274018526],[116,194,70,-1.0431591626256704],[116,194,71,-1.0421124286949635],[116,194,72,-1.0406501665711403],[116,194,73,-1.0390876978635788],[116,194,74,-1.0377238970249891],[116,194,75,-1.0366828367114067],[116,194,76,-1.0359925851225853],[116,194,77,-1.0354348700493574],[116,194,78,-1.0344526823610067],[116,194,79,-1.0329925315454602],[116,195,64,-1.0592535398900509],[116,195,65,-1.0582096707075834],[116,195,66,-1.0566193107515574],[116,195,67,-1.0547461658716202],[116,195,68,-1.0531326904892921],[116,195,69,-1.0518802274018526],[116,195,70,-1.0509716626256704],[116,195,71,-1.0499249286949635],[116,195,72,-1.0484626665711403],[116,195,73,-1.0469001978635788],[116,195,74,-1.0455363970249891],[116,195,75,-1.0444953367114067],[116,195,76,-1.0438050851225853],[116,195,77,-1.0432473700493574],[116,195,78,-1.0422651823610067],[116,195,79,-1.0408050315454602],[116,196,64,-1.0670660398900509],[116,196,65,-1.0660221707075834],[116,196,66,-1.0644318107515574],[116,196,67,-1.0625586658716202],[116,196,68,-1.0609451904892921],[116,196,69,-1.0596927274018526],[116,196,70,-1.0587841626256704],[116,196,71,-1.0577374286949635],[116,196,72,-1.0562751665711403],[116,196,73,-1.0547126978635788],[116,196,74,-1.0533488970249891],[116,196,75,-1.0523078367114067],[116,196,76,-1.0516175851225853],[116,196,77,-1.0510598700493574],[116,196,78,-1.0500776823610067],[116,196,79,-1.0486175315454602],[116,197,64,-1.0748785398900509],[116,197,65,-1.0738346707075834],[116,197,66,-1.0722443107515574],[116,197,67,-1.0703711658716202],[116,197,68,-1.0687576904892921],[116,197,69,-1.0675052274018526],[116,197,70,-1.0665966626256704],[116,197,71,-1.0655499286949635],[116,197,72,-1.0640876665711403],[116,197,73,-1.0625251978635788],[116,197,74,-1.0611613970249891],[116,197,75,-1.0601203367114067],[116,197,76,-1.0594300851225853],[116,197,77,-1.0588723700493574],[116,197,78,-1.0578901823610067],[116,197,79,-1.0564300315454602],[116,198,64,-1.0826910398900509],[116,198,65,-1.0816471707075834],[116,198,66,-1.0800568107515574],[116,198,67,-1.0781836658716202],[116,198,68,-1.0765701904892921],[116,198,69,-1.0753177274018526],[116,198,70,-1.0744091626256704],[116,198,71,-1.0733624286949635],[116,198,72,-1.0719001665711403],[116,198,73,-1.0703376978635788],[116,198,74,-1.0689738970249891],[116,198,75,-1.0679328367114067],[116,198,76,-1.0672425851225853],[116,198,77,-1.0666848700493574],[116,198,78,-1.0657026823610067],[116,198,79,-1.0642425315454602],[116,199,64,-1.0905035398900509],[116,199,65,-1.0894596707075834],[116,199,66,-1.0878693107515574],[116,199,67,-1.0859961658716202],[116,199,68,-1.0843826904892921],[116,199,69,-1.0831302274018526],[116,199,70,-1.0822216626256704],[116,199,71,-1.0811749286949635],[116,199,72,-1.0797126665711403],[116,199,73,-1.0781501978635788],[116,199,74,-1.0767863970249891],[116,199,75,-1.0757453367114067],[116,199,76,-1.0750550851225853],[116,199,77,-1.0744973700493574],[116,199,78,-1.0735151823610067],[116,199,79,-1.0720550315454602],[116,200,64,-1.0983160398900509],[116,200,65,-1.0972721707075834],[116,200,66,-1.0956818107515574],[116,200,67,-1.0938086658716202],[116,200,68,-1.0921951904892921],[116,200,69,-1.0909427274018526],[116,200,70,-1.0900341626256704],[116,200,71,-1.0889874286949635],[116,200,72,-1.0875251665711403],[116,200,73,-1.0859626978635788],[116,200,74,-1.0845988970249891],[116,200,75,-1.0835578367114067],[116,200,76,-1.0828675851225853],[116,200,77,-1.0823098700493574],[116,200,78,-1.0813276823610067],[116,200,79,-1.0798675315454602],[116,201,64,-1.1061285398900509],[116,201,65,-1.1050846707075834],[116,201,66,-1.1034943107515574],[116,201,67,-1.1016211658716202],[116,201,68,-1.1000076904892921],[116,201,69,-1.0987552274018526],[116,201,70,-1.0978466626256704],[116,201,71,-1.0967999286949635],[116,201,72,-1.0953376665711403],[116,201,73,-1.0937751978635788],[116,201,74,-1.0924113970249891],[116,201,75,-1.0913703367114067],[116,201,76,-1.0906800851225853],[116,201,77,-1.0901223700493574],[116,201,78,-1.0891401823610067],[116,201,79,-1.0876800315454602],[116,202,64,-1.1139410398900509],[116,202,65,-1.1128971707075834],[116,202,66,-1.1113068107515574],[116,202,67,-1.1094336658716202],[116,202,68,-1.1078201904892921],[116,202,69,-1.1065677274018526],[116,202,70,-1.1056591626256704],[116,202,71,-1.1046124286949635],[116,202,72,-1.1031501665711403],[116,202,73,-1.1015876978635788],[116,202,74,-1.1002238970249891],[116,202,75,-1.0991828367114067],[116,202,76,-1.0984925851225853],[116,202,77,-1.0979348700493574],[116,202,78,-1.0969526823610067],[116,202,79,-1.0954925315454602],[116,203,64,-1.1217535398900509],[116,203,65,-1.1207096707075834],[116,203,66,-1.1191193107515574],[116,203,67,-1.1172461658716202],[116,203,68,-1.1156326904892921],[116,203,69,-1.1143802274018526],[116,203,70,-1.1134716626256704],[116,203,71,-1.1124249286949635],[116,203,72,-1.1109626665711403],[116,203,73,-1.1094001978635788],[116,203,74,-1.1080363970249891],[116,203,75,-1.1069953367114067],[116,203,76,-1.1063050851225853],[116,203,77,-1.1057473700493574],[116,203,78,-1.1047651823610067],[116,203,79,-1.1033050315454602],[116,204,64,-1.1295660398900509],[116,204,65,-1.1285221707075834],[116,204,66,-1.1269318107515574],[116,204,67,-1.1250586658716202],[116,204,68,-1.1234451904892921],[116,204,69,-1.1221927274018526],[116,204,70,-1.1212841626256704],[116,204,71,-1.1202374286949635],[116,204,72,-1.1187751665711403],[116,204,73,-1.1172126978635788],[116,204,74,-1.1158488970249891],[116,204,75,-1.1148078367114067],[116,204,76,-1.1141175851225853],[116,204,77,-1.1135598700493574],[116,204,78,-1.1125776823610067],[116,204,79,-1.1111175315454602],[116,205,64,-1.1373785398900509],[116,205,65,-1.1363346707075834],[116,205,66,-1.1347443107515574],[116,205,67,-1.1328711658716202],[116,205,68,-1.1312576904892921],[116,205,69,-1.1300052274018526],[116,205,70,-1.1290966626256704],[116,205,71,-1.1280499286949635],[116,205,72,-1.1265876665711403],[116,205,73,-1.1250251978635788],[116,205,74,-1.1236613970249891],[116,205,75,-1.1226203367114067],[116,205,76,-1.1219300851225853],[116,205,77,-1.1213723700493574],[116,205,78,-1.1203901823610067],[116,205,79,-1.1189300315454602],[116,206,64,-1.1451910398900509],[116,206,65,-1.1441471707075834],[116,206,66,-1.1425568107515574],[116,206,67,-1.1406836658716202],[116,206,68,-1.1390701904892921],[116,206,69,-1.1378177274018526],[116,206,70,-1.1369091626256704],[116,206,71,-1.1358624286949635],[116,206,72,-1.1344001665711403],[116,206,73,-1.1328376978635788],[116,206,74,-1.1314738970249891],[116,206,75,-1.1304328367114067],[116,206,76,-1.1297425851225853],[116,206,77,-1.1291848700493574],[116,206,78,-1.1282026823610067],[116,206,79,-1.1267425315454602],[116,207,64,-1.1530035398900509],[116,207,65,-1.1519596707075834],[116,207,66,-1.1503693107515574],[116,207,67,-1.1484961658716202],[116,207,68,-1.1468826904892921],[116,207,69,-1.1456302274018526],[116,207,70,-1.1447216626256704],[116,207,71,-1.1436749286949635],[116,207,72,-1.1422126665711403],[116,207,73,-1.1406501978635788],[116,207,74,-1.1392863970249891],[116,207,75,-1.1382453367114067],[116,207,76,-1.1375550851225853],[116,207,77,-1.1369973700493574],[116,207,78,-1.1360151823610067],[116,207,79,-1.1345550315454602],[116,208,64,-1.1608160398900509],[116,208,65,-1.1597721707075834],[116,208,66,-1.1581818107515574],[116,208,67,-1.1563086658716202],[116,208,68,-1.1546951904892921],[116,208,69,-1.1534427274018526],[116,208,70,-1.1525341626256704],[116,208,71,-1.1514874286949635],[116,208,72,-1.1500251665711403],[116,208,73,-1.1484626978635788],[116,208,74,-1.1470988970249891],[116,208,75,-1.1460578367114067],[116,208,76,-1.1453675851225853],[116,208,77,-1.1448098700493574],[116,208,78,-1.1438276823610067],[116,208,79,-1.1423675315454602],[116,209,64,-1.1686285398900509],[116,209,65,-1.1675846707075834],[116,209,66,-1.1659943107515574],[116,209,67,-1.1641211658716202],[116,209,68,-1.1625076904892921],[116,209,69,-1.1612552274018526],[116,209,70,-1.1603466626256704],[116,209,71,-1.1592999286949635],[116,209,72,-1.1578376665711403],[116,209,73,-1.1562751978635788],[116,209,74,-1.1549113970249891],[116,209,75,-1.1538703367114067],[116,209,76,-1.1531800851225853],[116,209,77,-1.1526223700493574],[116,209,78,-1.1516401823610067],[116,209,79,-1.1501800315454602],[116,210,64,-1.1764410398900509],[116,210,65,-1.1753971707075834],[116,210,66,-1.1738068107515574],[116,210,67,-1.1719336658716202],[116,210,68,-1.1703201904892921],[116,210,69,-1.1690677274018526],[116,210,70,-1.1681591626256704],[116,210,71,-1.1671124286949635],[116,210,72,-1.1656501665711403],[116,210,73,-1.1640876978635788],[116,210,74,-1.1627238970249891],[116,210,75,-1.1616828367114067],[116,210,76,-1.1609925851225853],[116,210,77,-1.1604348700493574],[116,210,78,-1.1594526823610067],[116,210,79,-1.1579925315454602],[116,211,64,-1.1842535398900509],[116,211,65,-1.1832096707075834],[116,211,66,-1.1816193107515574],[116,211,67,-1.1797461658716202],[116,211,68,-1.1781326904892921],[116,211,69,-1.1768802274018526],[116,211,70,-1.1759716626256704],[116,211,71,-1.1749249286949635],[116,211,72,-1.1734626665711403],[116,211,73,-1.1719001978635788],[116,211,74,-1.1705363970249891],[116,211,75,-1.1694953367114067],[116,211,76,-1.1688050851225853],[116,211,77,-1.1682473700493574],[116,211,78,-1.1672651823610067],[116,211,79,-1.1658050315454602],[116,212,64,-1.1920660398900509],[116,212,65,-1.1910221707075834],[116,212,66,-1.1894318107515574],[116,212,67,-1.1875586658716202],[116,212,68,-1.1859451904892921],[116,212,69,-1.1846927274018526],[116,212,70,-1.1837841626256704],[116,212,71,-1.1827374286949635],[116,212,72,-1.1812751665711403],[116,212,73,-1.1797126978635788],[116,212,74,-1.1783488970249891],[116,212,75,-1.1773078367114067],[116,212,76,-1.1766175851225853],[116,212,77,-1.1760598700493574],[116,212,78,-1.1750776823610067],[116,212,79,-1.1736175315454602],[116,213,64,-1.1998785398900509],[116,213,65,-1.1988346707075834],[116,213,66,-1.1972443107515574],[116,213,67,-1.1953711658716202],[116,213,68,-1.1937576904892921],[116,213,69,-1.1925052274018526],[116,213,70,-1.1915966626256704],[116,213,71,-1.1905499286949635],[116,213,72,-1.1890876665711403],[116,213,73,-1.1875251978635788],[116,213,74,-1.1861613970249891],[116,213,75,-1.1851203367114067],[116,213,76,-1.1844300851225853],[116,213,77,-1.1838723700493574],[116,213,78,-1.1828901823610067],[116,213,79,-1.1814300315454602],[116,214,64,-1.2076910398900509],[116,214,65,-1.2066471707075834],[116,214,66,-1.2050568107515574],[116,214,67,-1.2031836658716202],[116,214,68,-1.2015701904892921],[116,214,69,-1.2003177274018526],[116,214,70,-1.1994091626256704],[116,214,71,-1.1983624286949635],[116,214,72,-1.1969001665711403],[116,214,73,-1.1953376978635788],[116,214,74,-1.1939738970249891],[116,214,75,-1.1929328367114067],[116,214,76,-1.1922425851225853],[116,214,77,-1.1916848700493574],[116,214,78,-1.1907026823610067],[116,214,79,-1.1892425315454602],[116,215,64,-1.2155035398900509],[116,215,65,-1.2144596707075834],[116,215,66,-1.2128693107515574],[116,215,67,-1.2109961658716202],[116,215,68,-1.2093826904892921],[116,215,69,-1.2081302274018526],[116,215,70,-1.2072216626256704],[116,215,71,-1.2061749286949635],[116,215,72,-1.2047126665711403],[116,215,73,-1.2031501978635788],[116,215,74,-1.2017863970249891],[116,215,75,-1.2007453367114067],[116,215,76,-1.2000550851225853],[116,215,77,-1.1994973700493574],[116,215,78,-1.1985151823610067],[116,215,79,-1.1970550315454602],[116,216,64,-1.2233160398900509],[116,216,65,-1.2222721707075834],[116,216,66,-1.2206818107515574],[116,216,67,-1.2188086658716202],[116,216,68,-1.2171951904892921],[116,216,69,-1.2159427274018526],[116,216,70,-1.2150341626256704],[116,216,71,-1.2139874286949635],[116,216,72,-1.2125251665711403],[116,216,73,-1.2109626978635788],[116,216,74,-1.2095988970249891],[116,216,75,-1.2085578367114067],[116,216,76,-1.2078675851225853],[116,216,77,-1.2073098700493574],[116,216,78,-1.2063276823610067],[116,216,79,-1.2048675315454602],[116,217,64,-1.2311285398900509],[116,217,65,-1.2300846707075834],[116,217,66,-1.2284943107515574],[116,217,67,-1.2266211658716202],[116,217,68,-1.2250076904892921],[116,217,69,-1.2237552274018526],[116,217,70,-1.2228466626256704],[116,217,71,-1.2217999286949635],[116,217,72,-1.2203376665711403],[116,217,73,-1.2187751978635788],[116,217,74,-1.2174113970249891],[116,217,75,-1.2163703367114067],[116,217,76,-1.2156800851225853],[116,217,77,-1.2151223700493574],[116,217,78,-1.2141401823610067],[116,217,79,-1.2126800315454602],[116,218,64,-1.2389410398900509],[116,218,65,-1.2378971707075834],[116,218,66,-1.2363068107515574],[116,218,67,-1.2344336658716202],[116,218,68,-1.2328201904892921],[116,218,69,-1.2315677274018526],[116,218,70,-1.2306591626256704],[116,218,71,-1.2296124286949635],[116,218,72,-1.2281501665711403],[116,218,73,-1.2265876978635788],[116,218,74,-1.2252238970249891],[116,218,75,-1.2241828367114067],[116,218,76,-1.2234925851225853],[116,218,77,-1.2229348700493574],[116,218,78,-1.2219526823610067],[116,218,79,-1.2204925315454602],[116,219,64,-1.2467535398900509],[116,219,65,-1.2457096707075834],[116,219,66,-1.2441193107515574],[116,219,67,-1.2422461658716202],[116,219,68,-1.2406326904892921],[116,219,69,-1.2393802274018526],[116,219,70,-1.2384716626256704],[116,219,71,-1.2374249286949635],[116,219,72,-1.2359626665711403],[116,219,73,-1.2344001978635788],[116,219,74,-1.2330363970249891],[116,219,75,-1.2319953367114067],[116,219,76,-1.2313050851225853],[116,219,77,-1.2307473700493574],[116,219,78,-1.2297651823610067],[116,219,79,-1.2283050315454602],[116,220,64,-1.2545660398900509],[116,220,65,-1.2535221707075834],[116,220,66,-1.2519318107515574],[116,220,67,-1.2500586658716202],[116,220,68,-1.2484451904892921],[116,220,69,-1.2471927274018526],[116,220,70,-1.2462841626256704],[116,220,71,-1.2452374286949635],[116,220,72,-1.2437751665711403],[116,220,73,-1.2422126978635788],[116,220,74,-1.2408488970249891],[116,220,75,-1.2398078367114067],[116,220,76,-1.2391175851225853],[116,220,77,-1.2385598700493574],[116,220,78,-1.2375776823610067],[116,220,79,-1.2361175315454602],[116,221,64,-1.2623785398900509],[116,221,65,-1.2613346707075834],[116,221,66,-1.2597443107515574],[116,221,67,-1.2578711658716202],[116,221,68,-1.2562576904892921],[116,221,69,-1.2550052274018526],[116,221,70,-1.2540966626256704],[116,221,71,-1.2530499286949635],[116,221,72,-1.2515876665711403],[116,221,73,-1.2500251978635788],[116,221,74,-1.2486613970249891],[116,221,75,-1.2476203367114067],[116,221,76,-1.2469300851225853],[116,221,77,-1.2463723700493574],[116,221,78,-1.2453901823610067],[116,221,79,-1.2439300315454602],[116,222,64,-1.2701910398900509],[116,222,65,-1.2691471707075834],[116,222,66,-1.2675568107515574],[116,222,67,-1.2656836658716202],[116,222,68,-1.2640701904892921],[116,222,69,-1.2628177274018526],[116,222,70,-1.2619091626256704],[116,222,71,-1.2608624286949635],[116,222,72,-1.2594001665711403],[116,222,73,-1.2578376978635788],[116,222,74,-1.2564738970249891],[116,222,75,-1.2554328367114067],[116,222,76,-1.2547425851225853],[116,222,77,-1.2541848700493574],[116,222,78,-1.2532026823610067],[116,222,79,-1.2517425315454602],[116,223,64,-1.2780035398900509],[116,223,65,-1.2769596707075834],[116,223,66,-1.2753693107515574],[116,223,67,-1.2734961658716202],[116,223,68,-1.2718826904892921],[116,223,69,-1.2706302274018526],[116,223,70,-1.2697216626256704],[116,223,71,-1.2686749286949635],[116,223,72,-1.2672126665711403],[116,223,73,-1.2656501978635788],[116,223,74,-1.2642863970249891],[116,223,75,-1.2632453367114067],[116,223,76,-1.2625550851225853],[116,223,77,-1.2619973700493574],[116,223,78,-1.2610151823610067],[116,223,79,-1.2595550315454602],[116,224,64,-1.2858160398900509],[116,224,65,-1.2847721707075834],[116,224,66,-1.2831818107515574],[116,224,67,-1.2813086658716202],[116,224,68,-1.2796951904892921],[116,224,69,-1.2784427274018526],[116,224,70,-1.2775341626256704],[116,224,71,-1.2764874286949635],[116,224,72,-1.2750251665711403],[116,224,73,-1.2734626978635788],[116,224,74,-1.2720988970249891],[116,224,75,-1.2710578367114067],[116,224,76,-1.2703675851225853],[116,224,77,-1.2698098700493574],[116,224,78,-1.2688276823610067],[116,224,79,-1.2673675315454602],[116,225,64,-1.2936285398900509],[116,225,65,-1.2925846707075834],[116,225,66,-1.2909943107515574],[116,225,67,-1.2891211658716202],[116,225,68,-1.2875076904892921],[116,225,69,-1.2862552274018526],[116,225,70,-1.2853466626256704],[116,225,71,-1.2842999286949635],[116,225,72,-1.2828376665711403],[116,225,73,-1.2812751978635788],[116,225,74,-1.2799113970249891],[116,225,75,-1.2788703367114067],[116,225,76,-1.2781800851225853],[116,225,77,-1.2776223700493574],[116,225,78,-1.2766401823610067],[116,225,79,-1.2751800315454602],[116,226,64,-1.3014410398900509],[116,226,65,-1.3003971707075834],[116,226,66,-1.2988068107515574],[116,226,67,-1.2969336658716202],[116,226,68,-1.2953201904892921],[116,226,69,-1.2940677274018526],[116,226,70,-1.2931591626256704],[116,226,71,-1.2921124286949635],[116,226,72,-1.2906501665711403],[116,226,73,-1.2890876978635788],[116,226,74,-1.2877238970249891],[116,226,75,-1.2866828367114067],[116,226,76,-1.2859925851225853],[116,226,77,-1.2854348700493574],[116,226,78,-1.2844526823610067],[116,226,79,-1.2829925315454602],[116,227,64,-1.3092535398900509],[116,227,65,-1.3082096707075834],[116,227,66,-1.3066193107515574],[116,227,67,-1.3047461658716202],[116,227,68,-1.3031326904892921],[116,227,69,-1.3018802274018526],[116,227,70,-1.3009716626256704],[116,227,71,-1.2999249286949635],[116,227,72,-1.2984626665711403],[116,227,73,-1.2969001978635788],[116,227,74,-1.2955363970249891],[116,227,75,-1.2944953367114067],[116,227,76,-1.2938050851225853],[116,227,77,-1.2932473700493574],[116,227,78,-1.2922651823610067],[116,227,79,-1.2908050315454602],[116,228,64,-1.3170660398900509],[116,228,65,-1.3160221707075834],[116,228,66,-1.3144318107515574],[116,228,67,-1.3125586658716202],[116,228,68,-1.3109451904892921],[116,228,69,-1.3096927274018526],[116,228,70,-1.3087841626256704],[116,228,71,-1.3077374286949635],[116,228,72,-1.3062751665711403],[116,228,73,-1.3047126978635788],[116,228,74,-1.3033488970249891],[116,228,75,-1.3023078367114067],[116,228,76,-1.3016175851225853],[116,228,77,-1.3010598700493574],[116,228,78,-1.3000776823610067],[116,228,79,-1.2986175315454602],[116,229,64,-1.3248785398900509],[116,229,65,-1.3238346707075834],[116,229,66,-1.3222443107515574],[116,229,67,-1.3203711658716202],[116,229,68,-1.3187576904892921],[116,229,69,-1.3175052274018526],[116,229,70,-1.3165966626256704],[116,229,71,-1.3155499286949635],[116,229,72,-1.3140876665711403],[116,229,73,-1.3125251978635788],[116,229,74,-1.3111613970249891],[116,229,75,-1.3101203367114067],[116,229,76,-1.3094300851225853],[116,229,77,-1.3088723700493574],[116,229,78,-1.3078901823610067],[116,229,79,-1.3064300315454602],[116,230,64,-1.3326910398900509],[116,230,65,-1.3316471707075834],[116,230,66,-1.3300568107515574],[116,230,67,-1.3281836658716202],[116,230,68,-1.3265701904892921],[116,230,69,-1.3253177274018526],[116,230,70,-1.3244091626256704],[116,230,71,-1.3233624286949635],[116,230,72,-1.3219001665711403],[116,230,73,-1.3203376978635788],[116,230,74,-1.3189738970249891],[116,230,75,-1.3179328367114067],[116,230,76,-1.3172425851225853],[116,230,77,-1.3166848700493574],[116,230,78,-1.3157026823610067],[116,230,79,-1.3142425315454602],[116,231,64,-1.3405035398900509],[116,231,65,-1.3394596707075834],[116,231,66,-1.3378693107515574],[116,231,67,-1.3359961658716202],[116,231,68,-1.3343826904892921],[116,231,69,-1.3331302274018526],[116,231,70,-1.3322216626256704],[116,231,71,-1.3311749286949635],[116,231,72,-1.3297126665711403],[116,231,73,-1.3281501978635788],[116,231,74,-1.3267863970249891],[116,231,75,-1.3257453367114067],[116,231,76,-1.3250550851225853],[116,231,77,-1.3244973700493574],[116,231,78,-1.3235151823610067],[116,231,79,-1.3220550315454602],[116,232,64,-1.3483160398900509],[116,232,65,-1.3472721707075834],[116,232,66,-1.3456818107515574],[116,232,67,-1.3438086658716202],[116,232,68,-1.3421951904892921],[116,232,69,-1.3409427274018526],[116,232,70,-1.3400341626256704],[116,232,71,-1.3389874286949635],[116,232,72,-1.3375251665711403],[116,232,73,-1.3359626978635788],[116,232,74,-1.3345988970249891],[116,232,75,-1.3335578367114067],[116,232,76,-1.3328675851225853],[116,232,77,-1.3323098700493574],[116,232,78,-1.3313276823610067],[116,232,79,-1.3298675315454602],[116,233,64,-1.3561285398900509],[116,233,65,-1.3550846707075834],[116,233,66,-1.3534943107515574],[116,233,67,-1.3516211658716202],[116,233,68,-1.3500076904892921],[116,233,69,-1.3487552274018526],[116,233,70,-1.3478466626256704],[116,233,71,-1.3467999286949635],[116,233,72,-1.3453376665711403],[116,233,73,-1.3437751978635788],[116,233,74,-1.3424113970249891],[116,233,75,-1.3413703367114067],[116,233,76,-1.3406800851225853],[116,233,77,-1.3401223700493574],[116,233,78,-1.3391401823610067],[116,233,79,-1.3376800315454602],[116,234,64,-1.3639410398900509],[116,234,65,-1.3628971707075834],[116,234,66,-1.3613068107515574],[116,234,67,-1.3594336658716202],[116,234,68,-1.3578201904892921],[116,234,69,-1.3565677274018526],[116,234,70,-1.3556591626256704],[116,234,71,-1.3546124286949635],[116,234,72,-1.3531501665711403],[116,234,73,-1.3515876978635788],[116,234,74,-1.3502238970249891],[116,234,75,-1.3491828367114067],[116,234,76,-1.3484925851225853],[116,234,77,-1.3479348700493574],[116,234,78,-1.3469526823610067],[116,234,79,-1.3454925315454602],[116,235,64,-1.3717535398900509],[116,235,65,-1.3707096707075834],[116,235,66,-1.3691193107515574],[116,235,67,-1.3672461658716202],[116,235,68,-1.3656326904892921],[116,235,69,-1.3643802274018526],[116,235,70,-1.3634716626256704],[116,235,71,-1.3624249286949635],[116,235,72,-1.3609626665711403],[116,235,73,-1.3594001978635788],[116,235,74,-1.3580363970249891],[116,235,75,-1.3569953367114067],[116,235,76,-1.3563050851225853],[116,235,77,-1.3557473700493574],[116,235,78,-1.3547651823610067],[116,235,79,-1.3533050315454602],[116,236,64,-1.3795660398900509],[116,236,65,-1.3785221707075834],[116,236,66,-1.3769318107515574],[116,236,67,-1.3750586658716202],[116,236,68,-1.3734451904892921],[116,236,69,-1.3721927274018526],[116,236,70,-1.3712841626256704],[116,236,71,-1.3702374286949635],[116,236,72,-1.3687751665711403],[116,236,73,-1.3672126978635788],[116,236,74,-1.3658488970249891],[116,236,75,-1.3648078367114067],[116,236,76,-1.3641175851225853],[116,236,77,-1.3635598700493574],[116,236,78,-1.3625776823610067],[116,236,79,-1.3611175315454602],[116,237,64,-1.3873785398900509],[116,237,65,-1.3863346707075834],[116,237,66,-1.3847443107515574],[116,237,67,-1.3828711658716202],[116,237,68,-1.3812576904892921],[116,237,69,-1.3800052274018526],[116,237,70,-1.3790966626256704],[116,237,71,-1.3780499286949635],[116,237,72,-1.3765876665711403],[116,237,73,-1.3750251978635788],[116,237,74,-1.3736613970249891],[116,237,75,-1.3726203367114067],[116,237,76,-1.3719300851225853],[116,237,77,-1.3713723700493574],[116,237,78,-1.3703901823610067],[116,237,79,-1.3689300315454602],[116,238,64,-1.3951910398900509],[116,238,65,-1.3941471707075834],[116,238,66,-1.3925568107515574],[116,238,67,-1.3906836658716202],[116,238,68,-1.3890701904892921],[116,238,69,-1.3878177274018526],[116,238,70,-1.3869091626256704],[116,238,71,-1.3858624286949635],[116,238,72,-1.3844001665711403],[116,238,73,-1.3828376978635788],[116,238,74,-1.3814738970249891],[116,238,75,-1.3804328367114067],[116,238,76,-1.3797425851225853],[116,238,77,-1.3791848700493574],[116,238,78,-1.3782026823610067],[116,238,79,-1.3767425315454602],[116,239,64,-1.4030035398900509],[116,239,65,-1.4019596707075834],[116,239,66,-1.4003693107515574],[116,239,67,-1.3984961658716202],[116,239,68,-1.3968826904892921],[116,239,69,-1.3956302274018526],[116,239,70,-1.3947216626256704],[116,239,71,-1.3936749286949635],[116,239,72,-1.3922126665711403],[116,239,73,-1.3906501978635788],[116,239,74,-1.3892863970249891],[116,239,75,-1.3882453367114067],[116,239,76,-1.3875550851225853],[116,239,77,-1.3869973700493574],[116,239,78,-1.3860151823610067],[116,239,79,-1.3845550315454602],[116,240,64,-1.4108160398900509],[116,240,65,-1.4097721707075834],[116,240,66,-1.4081818107515574],[116,240,67,-1.4063086658716202],[116,240,68,-1.4046951904892921],[116,240,69,-1.4034427274018526],[116,240,70,-1.4025341626256704],[116,240,71,-1.4014874286949635],[116,240,72,-1.4000251665711403],[116,240,73,-1.3984626978635788],[116,240,74,-1.3970988970249891],[116,240,75,-1.3960578367114067],[116,240,76,-1.3953675851225853],[116,240,77,-1.3948098700493574],[116,240,78,-1.3938276823610067],[116,240,79,-1.3923675315454602],[116,241,64,-1.4186285398900509],[116,241,65,-1.4175846707075834],[116,241,66,-1.4159943107515574],[116,241,67,-1.4141211658716202],[116,241,68,-1.4125076904892921],[116,241,69,-1.4112552274018526],[116,241,70,-1.4103466626256704],[116,241,71,-1.4092999286949635],[116,241,72,-1.4078376665711403],[116,241,73,-1.4062751978635788],[116,241,74,-1.4049113970249891],[116,241,75,-1.4038703367114067],[116,241,76,-1.4031800851225853],[116,241,77,-1.4026223700493574],[116,241,78,-1.4016401823610067],[116,241,79,-1.4001800315454602],[116,242,64,-1.4264410398900509],[116,242,65,-1.4253971707075834],[116,242,66,-1.4238068107515574],[116,242,67,-1.4219336658716202],[116,242,68,-1.4203201904892921],[116,242,69,-1.4190677274018526],[116,242,70,-1.4181591626256704],[116,242,71,-1.4171124286949635],[116,242,72,-1.4156501665711403],[116,242,73,-1.4140876978635788],[116,242,74,-1.4127238970249891],[116,242,75,-1.4116828367114067],[116,242,76,-1.4109925851225853],[116,242,77,-1.4104348700493574],[116,242,78,-1.4094526823610067],[116,242,79,-1.4079925315454602],[116,243,64,-1.4342535398900509],[116,243,65,-1.4332096707075834],[116,243,66,-1.4316193107515574],[116,243,67,-1.4297461658716202],[116,243,68,-1.4281326904892921],[116,243,69,-1.4268802274018526],[116,243,70,-1.4259716626256704],[116,243,71,-1.4249249286949635],[116,243,72,-1.4234626665711403],[116,243,73,-1.4219001978635788],[116,243,74,-1.4205363970249891],[116,243,75,-1.4194953367114067],[116,243,76,-1.4188050851225853],[116,243,77,-1.4182473700493574],[116,243,78,-1.4172651823610067],[116,243,79,-1.4158050315454602],[116,244,64,-1.4420660398900509],[116,244,65,-1.4410221707075834],[116,244,66,-1.4394318107515574],[116,244,67,-1.4375586658716202],[116,244,68,-1.4359451904892921],[116,244,69,-1.4346927274018526],[116,244,70,-1.4337841626256704],[116,244,71,-1.4327374286949635],[116,244,72,-1.4312751665711403],[116,244,73,-1.4297126978635788],[116,244,74,-1.4283488970249891],[116,244,75,-1.4273078367114067],[116,244,76,-1.4266175851225853],[116,244,77,-1.4260598700493574],[116,244,78,-1.4250776823610067],[116,244,79,-1.4236175315454602],[116,245,64,-1.4498785398900509],[116,245,65,-1.4488346707075834],[116,245,66,-1.4472443107515574],[116,245,67,-1.4453711658716202],[116,245,68,-1.4437576904892921],[116,245,69,-1.4425052274018526],[116,245,70,-1.4415966626256704],[116,245,71,-1.4405499286949635],[116,245,72,-1.4390876665711403],[116,245,73,-1.4375251978635788],[116,245,74,-1.4361613970249891],[116,245,75,-1.4351203367114067],[116,245,76,-1.4344300851225853],[116,245,77,-1.4338723700493574],[116,245,78,-1.4328901823610067],[116,245,79,-1.4314300315454602],[116,246,64,-1.4576910398900509],[116,246,65,-1.4566471707075834],[116,246,66,-1.4550568107515574],[116,246,67,-1.4531836658716202],[116,246,68,-1.4515701904892921],[116,246,69,-1.4503177274018526],[116,246,70,-1.4494091626256704],[116,246,71,-1.4483624286949635],[116,246,72,-1.4469001665711403],[116,246,73,-1.4453376978635788],[116,246,74,-1.4439738970249891],[116,246,75,-1.4429328367114067],[116,246,76,-1.4422425851225853],[116,246,77,-1.4416848700493574],[116,246,78,-1.4407026823610067],[116,246,79,-1.4392425315454602],[116,247,64,-1.4655035398900509],[116,247,65,-1.4644596707075834],[116,247,66,-1.4628693107515574],[116,247,67,-1.4609961658716202],[116,247,68,-1.4593826904892921],[116,247,69,-1.4581302274018526],[116,247,70,-1.4572216626256704],[116,247,71,-1.4561749286949635],[116,247,72,-1.4547126665711403],[116,247,73,-1.4531501978635788],[116,247,74,-1.4517863970249891],[116,247,75,-1.4507453367114067],[116,247,76,-1.4500550851225853],[116,247,77,-1.4494973700493574],[116,247,78,-1.4485151823610067],[116,247,79,-1.4470550315454602],[116,248,64,-1.4733160398900509],[116,248,65,-1.4722721707075834],[116,248,66,-1.4706818107515574],[116,248,67,-1.4688086658716202],[116,248,68,-1.4671951904892921],[116,248,69,-1.4659427274018526],[116,248,70,-1.4650341626256704],[116,248,71,-1.4639874286949635],[116,248,72,-1.4625251665711403],[116,248,73,-1.4609626978635788],[116,248,74,-1.4595988970249891],[116,248,75,-1.4585578367114067],[116,248,76,-1.4578675851225853],[116,248,77,-1.4573098700493574],[116,248,78,-1.4563276823610067],[116,248,79,-1.4548675315454602],[116,249,64,-1.4811285398900509],[116,249,65,-1.4800846707075834],[116,249,66,-1.4784943107515574],[116,249,67,-1.4766211658716202],[116,249,68,-1.4750076904892921],[116,249,69,-1.4737552274018526],[116,249,70,-1.4728466626256704],[116,249,71,-1.4717999286949635],[116,249,72,-1.4703376665711403],[116,249,73,-1.4687751978635788],[116,249,74,-1.4674113970249891],[116,249,75,-1.4663703367114067],[116,249,76,-1.4656800851225853],[116,249,77,-1.4651223700493574],[116,249,78,-1.4641401823610067],[116,249,79,-1.4626800315454602],[116,250,64,-1.4889410398900509],[116,250,65,-1.4878971707075834],[116,250,66,-1.4863068107515574],[116,250,67,-1.4844336658716202],[116,250,68,-1.4828201904892921],[116,250,69,-1.4815677274018526],[116,250,70,-1.4806591626256704],[116,250,71,-1.4796124286949635],[116,250,72,-1.4781501665711403],[116,250,73,-1.4765876978635788],[116,250,74,-1.4752238970249891],[116,250,75,-1.4741828367114067],[116,250,76,-1.4734925851225853],[116,250,77,-1.4729348700493574],[116,250,78,-1.4719526823610067],[116,250,79,-1.4704925315454602],[116,251,64,-1.4967535398900509],[116,251,65,-1.4957096707075834],[116,251,66,-1.4941193107515574],[116,251,67,-1.4922461658716202],[116,251,68,-1.4906326904892921],[116,251,69,-1.4893802274018526],[116,251,70,-1.4884716626256704],[116,251,71,-1.4874249286949635],[116,251,72,-1.4859626665711403],[116,251,73,-1.4844001978635788],[116,251,74,-1.4830363970249891],[116,251,75,-1.4819953367114067],[116,251,76,-1.4813050851225853],[116,251,77,-1.4807473700493574],[116,251,78,-1.4797651823610067],[116,251,79,-1.4783050315454602],[116,252,64,-1.5045660398900509],[116,252,65,-1.5035221707075834],[116,252,66,-1.5019318107515574],[116,252,67,-1.5000586658716202],[116,252,68,-1.4984451904892921],[116,252,69,-1.4971927274018526],[116,252,70,-1.4962841626256704],[116,252,71,-1.4952374286949635],[116,252,72,-1.4937751665711403],[116,252,73,-1.4922126978635788],[116,252,74,-1.4908488970249891],[116,252,75,-1.4898078367114067],[116,252,76,-1.4891175851225853],[116,252,77,-1.4885598700493574],[116,252,78,-1.4875776823610067],[116,252,79,-1.4861175315454602],[116,253,64,-1.5123785398900509],[116,253,65,-1.5113346707075834],[116,253,66,-1.5097443107515574],[116,253,67,-1.5078711658716202],[116,253,68,-1.5062576904892921],[116,253,69,-1.5050052274018526],[116,253,70,-1.5040966626256704],[116,253,71,-1.5030499286949635],[116,253,72,-1.5015876665711403],[116,253,73,-1.5000251978635788],[116,253,74,-1.4986613970249891],[116,253,75,-1.4976203367114067],[116,253,76,-1.4969300851225853],[116,253,77,-1.4963723700493574],[116,253,78,-1.4953901823610067],[116,253,79,-1.4939300315454602],[116,254,64,-1.5201910398900509],[116,254,65,-1.5191471707075834],[116,254,66,-1.5175568107515574],[116,254,67,-1.5156836658716202],[116,254,68,-1.5140701904892921],[116,254,69,-1.5128177274018526],[116,254,70,-1.5119091626256704],[116,254,71,-1.5108624286949635],[116,254,72,-1.5094001665711403],[116,254,73,-1.5078376978635788],[116,254,74,-1.5064738970249891],[116,254,75,-1.5054328367114067],[116,254,76,-1.5047425851225853],[116,254,77,-1.5041848700493574],[116,254,78,-1.5032026823610067],[116,254,79,-1.5017425315454602],[116,255,64,-1.5280035398900509],[116,255,65,-1.5269596707075834],[116,255,66,-1.5253693107515574],[116,255,67,-1.5234961658716202],[116,255,68,-1.5218826904892921],[116,255,69,-1.5206302274018526],[116,255,70,-1.5197216626256704],[116,255,71,-1.5186749286949635],[116,255,72,-1.5172126665711403],[116,255,73,-1.5156501978635788],[116,255,74,-1.5142863970249891],[116,255,75,-1.5132453367114067],[116,255,76,-1.5125550851225853],[116,255,77,-1.5119973700493574],[116,255,78,-1.5110151823610067],[116,255,79,-1.5095550315454602],[116,256,64,-1.5358160398900509],[116,256,65,-1.5347721707075834],[116,256,66,-1.5331818107515574],[116,256,67,-1.5313086658716202],[116,256,68,-1.5296951904892921],[116,256,69,-1.5284427274018526],[116,256,70,-1.5275341626256704],[116,256,71,-1.5264874286949635],[116,256,72,-1.5250251665711403],[116,256,73,-1.5234626978635788],[116,256,74,-1.5220988970249891],[116,256,75,-1.5210578367114067],[116,256,76,-1.5203675851225853],[116,256,77,-1.5198098700493574],[116,256,78,-1.5188276823610067],[116,256,79,-1.5173675315454602],[116,257,64,-1.5436285398900509],[116,257,65,-1.5425846707075834],[116,257,66,-1.5409943107515574],[116,257,67,-1.5391211658716202],[116,257,68,-1.5375076904892921],[116,257,69,-1.5362552274018526],[116,257,70,-1.5353466626256704],[116,257,71,-1.5342999286949635],[116,257,72,-1.5328376665711403],[116,257,73,-1.5312751978635788],[116,257,74,-1.5299113970249891],[116,257,75,-1.5288703367114067],[116,257,76,-1.5281800851225853],[116,257,77,-1.5276223700493574],[116,257,78,-1.5266401823610067],[116,257,79,-1.5251800315454602],[116,258,64,-1.5514410398900509],[116,258,65,-1.5503971707075834],[116,258,66,-1.5488068107515574],[116,258,67,-1.5469336658716202],[116,258,68,-1.5453201904892921],[116,258,69,-1.5440677274018526],[116,258,70,-1.5431591626256704],[116,258,71,-1.5421124286949635],[116,258,72,-1.5406501665711403],[116,258,73,-1.5390876978635788],[116,258,74,-1.5377238970249891],[116,258,75,-1.5366828367114067],[116,258,76,-1.5359925851225853],[116,258,77,-1.5354348700493574],[116,258,78,-1.5344526823610067],[116,258,79,-1.5329925315454602],[116,259,64,-1.5592535398900509],[116,259,65,-1.5582096707075834],[116,259,66,-1.5566193107515574],[116,259,67,-1.5547461658716202],[116,259,68,-1.5531326904892921],[116,259,69,-1.5518802274018526],[116,259,70,-1.5509716626256704],[116,259,71,-1.5499249286949635],[116,259,72,-1.5484626665711403],[116,259,73,-1.5469001978635788],[116,259,74,-1.5455363970249891],[116,259,75,-1.5444953367114067],[116,259,76,-1.5438050851225853],[116,259,77,-1.5432473700493574],[116,259,78,-1.5422651823610067],[116,259,79,-1.5408050315454602],[116,260,64,-1.5670660398900509],[116,260,65,-1.5660221707075834],[116,260,66,-1.5644318107515574],[116,260,67,-1.5625586658716202],[116,260,68,-1.5609451904892921],[116,260,69,-1.5596927274018526],[116,260,70,-1.5587841626256704],[116,260,71,-1.5577374286949635],[116,260,72,-1.5562751665711403],[116,260,73,-1.5547126978635788],[116,260,74,-1.5533488970249891],[116,260,75,-1.5523078367114067],[116,260,76,-1.5516175851225853],[116,260,77,-1.5510598700493574],[116,260,78,-1.5500776823610067],[116,260,79,-1.5486175315454602],[116,261,64,-1.5748785398900509],[116,261,65,-1.5738346707075834],[116,261,66,-1.5722443107515574],[116,261,67,-1.5703711658716202],[116,261,68,-1.5687576904892921],[116,261,69,-1.5675052274018526],[116,261,70,-1.5665966626256704],[116,261,71,-1.5655499286949635],[116,261,72,-1.5640876665711403],[116,261,73,-1.5625251978635788],[116,261,74,-1.5611613970249891],[116,261,75,-1.5601203367114067],[116,261,76,-1.5594300851225853],[116,261,77,-1.5588723700493574],[116,261,78,-1.5578901823610067],[116,261,79,-1.5564300315454602],[116,262,64,-1.5826910398900509],[116,262,65,-1.5816471707075834],[116,262,66,-1.5800568107515574],[116,262,67,-1.5781836658716202],[116,262,68,-1.5765701904892921],[116,262,69,-1.5753177274018526],[116,262,70,-1.5744091626256704],[116,262,71,-1.5733624286949635],[116,262,72,-1.5719001665711403],[116,262,73,-1.5703376978635788],[116,262,74,-1.5689738970249891],[116,262,75,-1.5679328367114067],[116,262,76,-1.5672425851225853],[116,262,77,-1.5666848700493574],[116,262,78,-1.5657026823610067],[116,262,79,-1.5642425315454602],[116,263,64,-1.5905035398900509],[116,263,65,-1.5894596707075834],[116,263,66,-1.5878693107515574],[116,263,67,-1.5859961658716202],[116,263,68,-1.5843826904892921],[116,263,69,-1.5831302274018526],[116,263,70,-1.5822216626256704],[116,263,71,-1.5811749286949635],[116,263,72,-1.5797126665711403],[116,263,73,-1.5781501978635788],[116,263,74,-1.5767863970249891],[116,263,75,-1.5757453367114067],[116,263,76,-1.5750550851225853],[116,263,77,-1.5744973700493574],[116,263,78,-1.5735151823610067],[116,263,79,-1.5720550315454602],[116,264,64,-1.5983160398900509],[116,264,65,-1.5972721707075834],[116,264,66,-1.5956818107515574],[116,264,67,-1.5938086658716202],[116,264,68,-1.5921951904892921],[116,264,69,-1.5909427274018526],[116,264,70,-1.5900341626256704],[116,264,71,-1.5889874286949635],[116,264,72,-1.5875251665711403],[116,264,73,-1.5859626978635788],[116,264,74,-1.5845988970249891],[116,264,75,-1.5835578367114067],[116,264,76,-1.5828675851225853],[116,264,77,-1.5823098700493574],[116,264,78,-1.5813276823610067],[116,264,79,-1.5798675315454602],[116,265,64,-1.6061285398900509],[116,265,65,-1.6050846707075834],[116,265,66,-1.6034943107515574],[116,265,67,-1.6016211658716202],[116,265,68,-1.6000076904892921],[116,265,69,-1.5987552274018526],[116,265,70,-1.5978466626256704],[116,265,71,-1.5967999286949635],[116,265,72,-1.5953376665711403],[116,265,73,-1.5937751978635788],[116,265,74,-1.5924113970249891],[116,265,75,-1.5913703367114067],[116,265,76,-1.5906800851225853],[116,265,77,-1.5901223700493574],[116,265,78,-1.5891401823610067],[116,265,79,-1.5876800315454602],[116,266,64,-1.6139410398900509],[116,266,65,-1.6128971707075834],[116,266,66,-1.6113068107515574],[116,266,67,-1.6094336658716202],[116,266,68,-1.6078201904892921],[116,266,69,-1.6065677274018526],[116,266,70,-1.6056591626256704],[116,266,71,-1.6046124286949635],[116,266,72,-1.6031501665711403],[116,266,73,-1.6015876978635788],[116,266,74,-1.6002238970249891],[116,266,75,-1.5991828367114067],[116,266,76,-1.5984925851225853],[116,266,77,-1.5979348700493574],[116,266,78,-1.5969526823610067],[116,266,79,-1.5954925315454602],[116,267,64,-1.6217535398900509],[116,267,65,-1.6207096707075834],[116,267,66,-1.6191193107515574],[116,267,67,-1.6172461658716202],[116,267,68,-1.6156326904892921],[116,267,69,-1.6143802274018526],[116,267,70,-1.6134716626256704],[116,267,71,-1.6124249286949635],[116,267,72,-1.6109626665711403],[116,267,73,-1.6094001978635788],[116,267,74,-1.6080363970249891],[116,267,75,-1.6069953367114067],[116,267,76,-1.6063050851225853],[116,267,77,-1.6057473700493574],[116,267,78,-1.6047651823610067],[116,267,79,-1.6033050315454602],[116,268,64,-1.6295660398900509],[116,268,65,-1.6285221707075834],[116,268,66,-1.6269318107515574],[116,268,67,-1.6250586658716202],[116,268,68,-1.6234451904892921],[116,268,69,-1.6221927274018526],[116,268,70,-1.6212841626256704],[116,268,71,-1.6202374286949635],[116,268,72,-1.6187751665711403],[116,268,73,-1.6172126978635788],[116,268,74,-1.6158488970249891],[116,268,75,-1.6148078367114067],[116,268,76,-1.6141175851225853],[116,268,77,-1.6135598700493574],[116,268,78,-1.6125776823610067],[116,268,79,-1.6111175315454602],[116,269,64,-1.6373785398900509],[116,269,65,-1.6363346707075834],[116,269,66,-1.6347443107515574],[116,269,67,-1.6328711658716202],[116,269,68,-1.6312576904892921],[116,269,69,-1.6300052274018526],[116,269,70,-1.6290966626256704],[116,269,71,-1.6280499286949635],[116,269,72,-1.6265876665711403],[116,269,73,-1.6250251978635788],[116,269,74,-1.6236613970249891],[116,269,75,-1.6226203367114067],[116,269,76,-1.6219300851225853],[116,269,77,-1.6213723700493574],[116,269,78,-1.6203901823610067],[116,269,79,-1.6189300315454602],[116,270,64,-1.6451910398900509],[116,270,65,-1.6441471707075834],[116,270,66,-1.6425568107515574],[116,270,67,-1.6406836658716202],[116,270,68,-1.6390701904892921],[116,270,69,-1.6378177274018526],[116,270,70,-1.6369091626256704],[116,270,71,-1.6358624286949635],[116,270,72,-1.6344001665711403],[116,270,73,-1.6328376978635788],[116,270,74,-1.6314738970249891],[116,270,75,-1.6304328367114067],[116,270,76,-1.6297425851225853],[116,270,77,-1.6291848700493574],[116,270,78,-1.6282026823610067],[116,270,79,-1.6267425315454602],[116,271,64,-1.6530035398900509],[116,271,65,-1.6519596707075834],[116,271,66,-1.6503693107515574],[116,271,67,-1.6484961658716202],[116,271,68,-1.6468826904892921],[116,271,69,-1.6456302274018526],[116,271,70,-1.6447216626256704],[116,271,71,-1.6436749286949635],[116,271,72,-1.6422126665711403],[116,271,73,-1.6406501978635788],[116,271,74,-1.6392863970249891],[116,271,75,-1.6382453367114067],[116,271,76,-1.6375550851225853],[116,271,77,-1.6369973700493574],[116,271,78,-1.6360151823610067],[116,271,79,-1.6345550315454602],[116,272,64,-1.6608160398900509],[116,272,65,-1.6597721707075834],[116,272,66,-1.6581818107515574],[116,272,67,-1.6563086658716202],[116,272,68,-1.6546951904892921],[116,272,69,-1.6534427274018526],[116,272,70,-1.6525341626256704],[116,272,71,-1.6514874286949635],[116,272,72,-1.6500251665711403],[116,272,73,-1.6484626978635788],[116,272,74,-1.6470988970249891],[116,272,75,-1.6460578367114067],[116,272,76,-1.6453675851225853],[116,272,77,-1.6448098700493574],[116,272,78,-1.6438276823610067],[116,272,79,-1.6423675315454602],[116,273,64,-1.6686285398900509],[116,273,65,-1.6675846707075834],[116,273,66,-1.6659943107515574],[116,273,67,-1.6641211658716202],[116,273,68,-1.6625076904892921],[116,273,69,-1.6612552274018526],[116,273,70,-1.6603466626256704],[116,273,71,-1.6592999286949635],[116,273,72,-1.6578376665711403],[116,273,73,-1.6562751978635788],[116,273,74,-1.6549113970249891],[116,273,75,-1.6538703367114067],[116,273,76,-1.6531800851225853],[116,273,77,-1.6526223700493574],[116,273,78,-1.6516401823610067],[116,273,79,-1.6501800315454602],[116,274,64,-1.6764410398900509],[116,274,65,-1.6753971707075834],[116,274,66,-1.6738068107515574],[116,274,67,-1.6719336658716202],[116,274,68,-1.6703201904892921],[116,274,69,-1.6690677274018526],[116,274,70,-1.6681591626256704],[116,274,71,-1.6671124286949635],[116,274,72,-1.6656501665711403],[116,274,73,-1.6640876978635788],[116,274,74,-1.6627238970249891],[116,274,75,-1.6616828367114067],[116,274,76,-1.6609925851225853],[116,274,77,-1.6604348700493574],[116,274,78,-1.6594526823610067],[116,274,79,-1.6579925315454602],[116,275,64,-1.6842535398900509],[116,275,65,-1.6832096707075834],[116,275,66,-1.6816193107515574],[116,275,67,-1.6797461658716202],[116,275,68,-1.6781326904892921],[116,275,69,-1.6768802274018526],[116,275,70,-1.6759716626256704],[116,275,71,-1.6749249286949635],[116,275,72,-1.6734626665711403],[116,275,73,-1.6719001978635788],[116,275,74,-1.6705363970249891],[116,275,75,-1.6694953367114067],[116,275,76,-1.6688050851225853],[116,275,77,-1.6682473700493574],[116,275,78,-1.6672651823610067],[116,275,79,-1.6658050315454602],[116,276,64,-1.6920660398900509],[116,276,65,-1.6910221707075834],[116,276,66,-1.6894318107515574],[116,276,67,-1.6875586658716202],[116,276,68,-1.6859451904892921],[116,276,69,-1.6846927274018526],[116,276,70,-1.6837841626256704],[116,276,71,-1.6827374286949635],[116,276,72,-1.6812751665711403],[116,276,73,-1.6797126978635788],[116,276,74,-1.6783488970249891],[116,276,75,-1.6773078367114067],[116,276,76,-1.6766175851225853],[116,276,77,-1.6760598700493574],[116,276,78,-1.6750776823610067],[116,276,79,-1.6736175315454602],[116,277,64,-1.6998785398900509],[116,277,65,-1.6988346707075834],[116,277,66,-1.6972443107515574],[116,277,67,-1.6953711658716202],[116,277,68,-1.6937576904892921],[116,277,69,-1.6925052274018526],[116,277,70,-1.6915966626256704],[116,277,71,-1.6905499286949635],[116,277,72,-1.6890876665711403],[116,277,73,-1.6875251978635788],[116,277,74,-1.6861613970249891],[116,277,75,-1.6851203367114067],[116,277,76,-1.6844300851225853],[116,277,77,-1.6838723700493574],[116,277,78,-1.6828901823610067],[116,277,79,-1.6814300315454602],[116,278,64,-1.7076910398900509],[116,278,65,-1.7066471707075834],[116,278,66,-1.7050568107515574],[116,278,67,-1.7031836658716202],[116,278,68,-1.7015701904892921],[116,278,69,-1.7003177274018526],[116,278,70,-1.6994091626256704],[116,278,71,-1.6983624286949635],[116,278,72,-1.6969001665711403],[116,278,73,-1.6953376978635788],[116,278,74,-1.6939738970249891],[116,278,75,-1.6929328367114067],[116,278,76,-1.6922425851225853],[116,278,77,-1.6916848700493574],[116,278,78,-1.6907026823610067],[116,278,79,-1.6892425315454602],[116,279,64,-1.7155035398900509],[116,279,65,-1.7144596707075834],[116,279,66,-1.7128693107515574],[116,279,67,-1.7109961658716202],[116,279,68,-1.7093826904892921],[116,279,69,-1.7081302274018526],[116,279,70,-1.7072216626256704],[116,279,71,-1.7061749286949635],[116,279,72,-1.7047126665711403],[116,279,73,-1.7031501978635788],[116,279,74,-1.7017863970249891],[116,279,75,-1.7007453367114067],[116,279,76,-1.7000550851225853],[116,279,77,-1.6994973700493574],[116,279,78,-1.6985151823610067],[116,279,79,-1.6970550315454602],[116,280,64,-1.7233160398900509],[116,280,65,-1.7222721707075834],[116,280,66,-1.7206818107515574],[116,280,67,-1.7188086658716202],[116,280,68,-1.7171951904892921],[116,280,69,-1.7159427274018526],[116,280,70,-1.7150341626256704],[116,280,71,-1.7139874286949635],[116,280,72,-1.7125251665711403],[116,280,73,-1.7109626978635788],[116,280,74,-1.7095988970249891],[116,280,75,-1.7085578367114067],[116,280,76,-1.7078675851225853],[116,280,77,-1.7073098700493574],[116,280,78,-1.7063276823610067],[116,280,79,-1.7048675315454602],[116,281,64,-1.7311285398900509],[116,281,65,-1.7300846707075834],[116,281,66,-1.7284943107515574],[116,281,67,-1.7266211658716202],[116,281,68,-1.7250076904892921],[116,281,69,-1.7237552274018526],[116,281,70,-1.7228466626256704],[116,281,71,-1.7217999286949635],[116,281,72,-1.7203376665711403],[116,281,73,-1.7187751978635788],[116,281,74,-1.7174113970249891],[116,281,75,-1.7163703367114067],[116,281,76,-1.7156800851225853],[116,281,77,-1.7151223700493574],[116,281,78,-1.7141401823610067],[116,281,79,-1.7126800315454602],[116,282,64,-1.7389410398900509],[116,282,65,-1.7378971707075834],[116,282,66,-1.7363068107515574],[116,282,67,-1.7344336658716202],[116,282,68,-1.7328201904892921],[116,282,69,-1.7315677274018526],[116,282,70,-1.7306591626256704],[116,282,71,-1.7296124286949635],[116,282,72,-1.7281501665711403],[116,282,73,-1.7265876978635788],[116,282,74,-1.7252238970249891],[116,282,75,-1.7241828367114067],[116,282,76,-1.7234925851225853],[116,282,77,-1.7229348700493574],[116,282,78,-1.7219526823610067],[116,282,79,-1.7204925315454602],[116,283,64,-1.7467535398900509],[116,283,65,-1.7457096707075834],[116,283,66,-1.7441193107515574],[116,283,67,-1.7422461658716202],[116,283,68,-1.7406326904892921],[116,283,69,-1.7393802274018526],[116,283,70,-1.7384716626256704],[116,283,71,-1.7374249286949635],[116,283,72,-1.7359626665711403],[116,283,73,-1.7344001978635788],[116,283,74,-1.7330363970249891],[116,283,75,-1.7319953367114067],[116,283,76,-1.7313050851225853],[116,283,77,-1.7307473700493574],[116,283,78,-1.7297651823610067],[116,283,79,-1.7283050315454602],[116,284,64,-1.7545660398900509],[116,284,65,-1.7535221707075834],[116,284,66,-1.7519318107515574],[116,284,67,-1.7500586658716202],[116,284,68,-1.7484451904892921],[116,284,69,-1.7471927274018526],[116,284,70,-1.7462841626256704],[116,284,71,-1.7452374286949635],[116,284,72,-1.7437751665711403],[116,284,73,-1.7422126978635788],[116,284,74,-1.7408488970249891],[116,284,75,-1.7398078367114067],[116,284,76,-1.7391175851225853],[116,284,77,-1.7385598700493574],[116,284,78,-1.7375776823610067],[116,284,79,-1.7361175315454602],[116,285,64,-1.7623785398900509],[116,285,65,-1.7613346707075834],[116,285,66,-1.7597443107515574],[116,285,67,-1.7578711658716202],[116,285,68,-1.7562576904892921],[116,285,69,-1.7550052274018526],[116,285,70,-1.7540966626256704],[116,285,71,-1.7530499286949635],[116,285,72,-1.7515876665711403],[116,285,73,-1.7500251978635788],[116,285,74,-1.7486613970249891],[116,285,75,-1.7476203367114067],[116,285,76,-1.7469300851225853],[116,285,77,-1.7463723700493574],[116,285,78,-1.7453901823610067],[116,285,79,-1.7439300315454602],[116,286,64,-1.7701910398900509],[116,286,65,-1.7691471707075834],[116,286,66,-1.7675568107515574],[116,286,67,-1.7656836658716202],[116,286,68,-1.7640701904892921],[116,286,69,-1.7628177274018526],[116,286,70,-1.7619091626256704],[116,286,71,-1.7608624286949635],[116,286,72,-1.7594001665711403],[116,286,73,-1.7578376978635788],[116,286,74,-1.7564738970249891],[116,286,75,-1.7554328367114067],[116,286,76,-1.7547425851225853],[116,286,77,-1.7541848700493574],[116,286,78,-1.7532026823610067],[116,286,79,-1.7517425315454602],[116,287,64,-1.7780035398900509],[116,287,65,-1.7769596707075834],[116,287,66,-1.7753693107515574],[116,287,67,-1.7734961658716202],[116,287,68,-1.7718826904892921],[116,287,69,-1.7706302274018526],[116,287,70,-1.7697216626256704],[116,287,71,-1.7686749286949635],[116,287,72,-1.7672126665711403],[116,287,73,-1.7656501978635788],[116,287,74,-1.7642863970249891],[116,287,75,-1.7632453367114067],[116,287,76,-1.7625550851225853],[116,287,77,-1.7619973700493574],[116,287,78,-1.7610151823610067],[116,287,79,-1.7595550315454602],[116,288,64,-1.7858160398900509],[116,288,65,-1.7847721707075834],[116,288,66,-1.7831818107515574],[116,288,67,-1.7813086658716202],[116,288,68,-1.7796951904892921],[116,288,69,-1.7784427274018526],[116,288,70,-1.7775341626256704],[116,288,71,-1.7764874286949635],[116,288,72,-1.7750251665711403],[116,288,73,-1.7734626978635788],[116,288,74,-1.7720988970249891],[116,288,75,-1.7710578367114067],[116,288,76,-1.7703675851225853],[116,288,77,-1.7698098700493574],[116,288,78,-1.7688276823610067],[116,288,79,-1.7673675315454602],[116,289,64,-1.7936285398900509],[116,289,65,-1.7925846707075834],[116,289,66,-1.7909943107515574],[116,289,67,-1.7891211658716202],[116,289,68,-1.7875076904892921],[116,289,69,-1.7862552274018526],[116,289,70,-1.7853466626256704],[116,289,71,-1.7842999286949635],[116,289,72,-1.7828376665711403],[116,289,73,-1.7812751978635788],[116,289,74,-1.7799113970249891],[116,289,75,-1.7788703367114067],[116,289,76,-1.7781800851225853],[116,289,77,-1.7776223700493574],[116,289,78,-1.7766401823610067],[116,289,79,-1.7751800315454602],[116,290,64,-1.8014410398900509],[116,290,65,-1.8003971707075834],[116,290,66,-1.7988068107515574],[116,290,67,-1.7969336658716202],[116,290,68,-1.7953201904892921],[116,290,69,-1.7940677274018526],[116,290,70,-1.7931591626256704],[116,290,71,-1.7921124286949635],[116,290,72,-1.7906501665711403],[116,290,73,-1.7890876978635788],[116,290,74,-1.7877238970249891],[116,290,75,-1.7866828367114067],[116,290,76,-1.7859925851225853],[116,290,77,-1.7854348700493574],[116,290,78,-1.7844526823610067],[116,290,79,-1.7829925315454602],[116,291,64,-1.8092535398900509],[116,291,65,-1.8082096707075834],[116,291,66,-1.8066193107515574],[116,291,67,-1.8047461658716202],[116,291,68,-1.8031326904892921],[116,291,69,-1.8018802274018526],[116,291,70,-1.8009716626256704],[116,291,71,-1.7999249286949635],[116,291,72,-1.7984626665711403],[116,291,73,-1.7969001978635788],[116,291,74,-1.7955363970249891],[116,291,75,-1.7944953367114067],[116,291,76,-1.7938050851225853],[116,291,77,-1.7932473700493574],[116,291,78,-1.7922651823610067],[116,291,79,-1.7908050315454602],[116,292,64,-1.8170660398900509],[116,292,65,-1.8160221707075834],[116,292,66,-1.8144318107515574],[116,292,67,-1.8125586658716202],[116,292,68,-1.8109451904892921],[116,292,69,-1.8096927274018526],[116,292,70,-1.8087841626256704],[116,292,71,-1.8077374286949635],[116,292,72,-1.8062751665711403],[116,292,73,-1.8047126978635788],[116,292,74,-1.8033488970249891],[116,292,75,-1.8023078367114067],[116,292,76,-1.8016175851225853],[116,292,77,-1.8010598700493574],[116,292,78,-1.8000776823610067],[116,292,79,-1.7986175315454602],[116,293,64,-1.8248785398900509],[116,293,65,-1.8238346707075834],[116,293,66,-1.8222443107515574],[116,293,67,-1.8203711658716202],[116,293,68,-1.8187576904892921],[116,293,69,-1.8175052274018526],[116,293,70,-1.8165966626256704],[116,293,71,-1.8155499286949635],[116,293,72,-1.8140876665711403],[116,293,73,-1.8125251978635788],[116,293,74,-1.8111613970249891],[116,293,75,-1.8101203367114067],[116,293,76,-1.8094300851225853],[116,293,77,-1.8088723700493574],[116,293,78,-1.8078901823610067],[116,293,79,-1.8064300315454602],[116,294,64,-1.8326910398900509],[116,294,65,-1.8316471707075834],[116,294,66,-1.8300568107515574],[116,294,67,-1.8281836658716202],[116,294,68,-1.8265701904892921],[116,294,69,-1.8253177274018526],[116,294,70,-1.8244091626256704],[116,294,71,-1.8233624286949635],[116,294,72,-1.8219001665711403],[116,294,73,-1.8203376978635788],[116,294,74,-1.8189738970249891],[116,294,75,-1.8179328367114067],[116,294,76,-1.8172425851225853],[116,294,77,-1.8166848700493574],[116,294,78,-1.8157026823610067],[116,294,79,-1.8142425315454602],[116,295,64,-1.8405035398900509],[116,295,65,-1.8394596707075834],[116,295,66,-1.8378693107515574],[116,295,67,-1.8359961658716202],[116,295,68,-1.8343826904892921],[116,295,69,-1.8331302274018526],[116,295,70,-1.8322216626256704],[116,295,71,-1.8311749286949635],[116,295,72,-1.8297126665711403],[116,295,73,-1.8281501978635788],[116,295,74,-1.8267863970249891],[116,295,75,-1.8257453367114067],[116,295,76,-1.8250550851225853],[116,295,77,-1.8244973700493574],[116,295,78,-1.8235151823610067],[116,295,79,-1.8220550315454602],[116,296,64,-1.8483160398900509],[116,296,65,-1.8472721707075834],[116,296,66,-1.8456818107515574],[116,296,67,-1.8438086658716202],[116,296,68,-1.8421951904892921],[116,296,69,-1.8409427274018526],[116,296,70,-1.8400341626256704],[116,296,71,-1.8389874286949635],[116,296,72,-1.8375251665711403],[116,296,73,-1.8359626978635788],[116,296,74,-1.8345988970249891],[116,296,75,-1.8335578367114067],[116,296,76,-1.8328675851225853],[116,296,77,-1.8323098700493574],[116,296,78,-1.8313276823610067],[116,296,79,-1.8298675315454602],[116,297,64,-1.8561285398900509],[116,297,65,-1.8550846707075834],[116,297,66,-1.8534943107515574],[116,297,67,-1.8516211658716202],[116,297,68,-1.8500076904892921],[116,297,69,-1.8487552274018526],[116,297,70,-1.8478466626256704],[116,297,71,-1.8467999286949635],[116,297,72,-1.8453376665711403],[116,297,73,-1.8437751978635788],[116,297,74,-1.8424113970249891],[116,297,75,-1.8413703367114067],[116,297,76,-1.8406800851225853],[116,297,77,-1.8401223700493574],[116,297,78,-1.8391401823610067],[116,297,79,-1.8376800315454602],[116,298,64,-1.8639410398900509],[116,298,65,-1.8628971707075834],[116,298,66,-1.8613068107515574],[116,298,67,-1.8594336658716202],[116,298,68,-1.8578201904892921],[116,298,69,-1.8565677274018526],[116,298,70,-1.8556591626256704],[116,298,71,-1.8546124286949635],[116,298,72,-1.8531501665711403],[116,298,73,-1.8515876978635788],[116,298,74,-1.8502238970249891],[116,298,75,-1.8491828367114067],[116,298,76,-1.8484925851225853],[116,298,77,-1.8479348700493574],[116,298,78,-1.8469526823610067],[116,298,79,-1.8454925315454602],[116,299,64,-1.8717535398900509],[116,299,65,-1.8707096707075834],[116,299,66,-1.8691193107515574],[116,299,67,-1.8672461658716202],[116,299,68,-1.8656326904892921],[116,299,69,-1.8643802274018526],[116,299,70,-1.8634716626256704],[116,299,71,-1.8624249286949635],[116,299,72,-1.8609626665711403],[116,299,73,-1.8594001978635788],[116,299,74,-1.8580363970249891],[116,299,75,-1.8569953367114067],[116,299,76,-1.8563050851225853],[116,299,77,-1.8557473700493574],[116,299,78,-1.8547651823610067],[116,299,79,-1.8533050315454602],[116,300,64,-1.8795660398900509],[116,300,65,-1.8785221707075834],[116,300,66,-1.8769318107515574],[116,300,67,-1.8750586658716202],[116,300,68,-1.8734451904892921],[116,300,69,-1.8721927274018526],[116,300,70,-1.8712841626256704],[116,300,71,-1.8702374286949635],[116,300,72,-1.8687751665711403],[116,300,73,-1.8672126978635788],[116,300,74,-1.8658488970249891],[116,300,75,-1.8648078367114067],[116,300,76,-1.8641175851225853],[116,300,77,-1.8635598700493574],[116,300,78,-1.8625776823610067],[116,300,79,-1.8611175315454602],[116,301,64,-1.8873785398900509],[116,301,65,-1.8863346707075834],[116,301,66,-1.8847443107515574],[116,301,67,-1.8828711658716202],[116,301,68,-1.8812576904892921],[116,301,69,-1.8800052274018526],[116,301,70,-1.8790966626256704],[116,301,71,-1.8780499286949635],[116,301,72,-1.8765876665711403],[116,301,73,-1.8750251978635788],[116,301,74,-1.8736613970249891],[116,301,75,-1.8726203367114067],[116,301,76,-1.8719300851225853],[116,301,77,-1.8713723700493574],[116,301,78,-1.8703901823610067],[116,301,79,-1.8689300315454602],[116,302,64,-1.8951910398900509],[116,302,65,-1.8941471707075834],[116,302,66,-1.8925568107515574],[116,302,67,-1.8906836658716202],[116,302,68,-1.8890701904892921],[116,302,69,-1.8878177274018526],[116,302,70,-1.8869091626256704],[116,302,71,-1.8858624286949635],[116,302,72,-1.8844001665711403],[116,302,73,-1.8828376978635788],[116,302,74,-1.8814738970249891],[116,302,75,-1.8804328367114067],[116,302,76,-1.8797425851225853],[116,302,77,-1.8791848700493574],[116,302,78,-1.8782026823610067],[116,302,79,-1.8767425315454602],[116,303,64,-1.9030035398900509],[116,303,65,-1.9019596707075834],[116,303,66,-1.9003693107515574],[116,303,67,-1.8984961658716202],[116,303,68,-1.8968826904892921],[116,303,69,-1.8956302274018526],[116,303,70,-1.8947216626256704],[116,303,71,-1.8936749286949635],[116,303,72,-1.8922126665711403],[116,303,73,-1.8906501978635788],[116,303,74,-1.8892863970249891],[116,303,75,-1.8882453367114067],[116,303,76,-1.8875550851225853],[116,303,77,-1.8869973700493574],[116,303,78,-1.8860151823610067],[116,303,79,-1.8845550315454602],[116,304,64,-1.9108160398900509],[116,304,65,-1.9097721707075834],[116,304,66,-1.9081818107515574],[116,304,67,-1.9063086658716202],[116,304,68,-1.9046951904892921],[116,304,69,-1.9034427274018526],[116,304,70,-1.9025341626256704],[116,304,71,-1.9014874286949635],[116,304,72,-1.9000251665711403],[116,304,73,-1.8984626978635788],[116,304,74,-1.8970988970249891],[116,304,75,-1.8960578367114067],[116,304,76,-1.8953675851225853],[116,304,77,-1.8948098700493574],[116,304,78,-1.8938276823610067],[116,304,79,-1.8923675315454602],[116,305,64,-1.9186285398900509],[116,305,65,-1.9175846707075834],[116,305,66,-1.9159943107515574],[116,305,67,-1.9141211658716202],[116,305,68,-1.9125076904892921],[116,305,69,-1.9112552274018526],[116,305,70,-1.9103466626256704],[116,305,71,-1.9092999286949635],[116,305,72,-1.9078376665711403],[116,305,73,-1.9062751978635788],[116,305,74,-1.9049113970249891],[116,305,75,-1.9038703367114067],[116,305,76,-1.9031800851225853],[116,305,77,-1.9026223700493574],[116,305,78,-1.9016401823610067],[116,305,79,-1.9001800315454602],[116,306,64,-1.9264410398900509],[116,306,65,-1.9253971707075834],[116,306,66,-1.9238068107515574],[116,306,67,-1.9219336658716202],[116,306,68,-1.9203201904892921],[116,306,69,-1.9190677274018526],[116,306,70,-1.9181591626256704],[116,306,71,-1.9171124286949635],[116,306,72,-1.9156501665711403],[116,306,73,-1.9140876978635788],[116,306,74,-1.9127238970249891],[116,306,75,-1.9116828367114067],[116,306,76,-1.9109925851225853],[116,306,77,-1.9104348700493574],[116,306,78,-1.9094526823610067],[116,306,79,-1.9079925315454602],[116,307,64,-1.9342535398900509],[116,307,65,-1.9332096707075834],[116,307,66,-1.9316193107515574],[116,307,67,-1.9297461658716202],[116,307,68,-1.9281326904892921],[116,307,69,-1.9268802274018526],[116,307,70,-1.9259716626256704],[116,307,71,-1.9249249286949635],[116,307,72,-1.9234626665711403],[116,307,73,-1.9219001978635788],[116,307,74,-1.9205363970249891],[116,307,75,-1.9194953367114067],[116,307,76,-1.9188050851225853],[116,307,77,-1.9182473700493574],[116,307,78,-1.9172651823610067],[116,307,79,-1.9158050315454602],[116,308,64,-1.9420660398900509],[116,308,65,-1.9410221707075834],[116,308,66,-1.9394318107515574],[116,308,67,-1.9375586658716202],[116,308,68,-1.9359451904892921],[116,308,69,-1.9346927274018526],[116,308,70,-1.9337841626256704],[116,308,71,-1.9327374286949635],[116,308,72,-1.9312751665711403],[116,308,73,-1.9297126978635788],[116,308,74,-1.9283488970249891],[116,308,75,-1.9273078367114067],[116,308,76,-1.9266175851225853],[116,308,77,-1.9260598700493574],[116,308,78,-1.9250776823610067],[116,308,79,-1.9236175315454602],[116,309,64,-1.9498785398900509],[116,309,65,-1.9488346707075834],[116,309,66,-1.9472443107515574],[116,309,67,-1.9453711658716202],[116,309,68,-1.9437576904892921],[116,309,69,-1.9425052274018526],[116,309,70,-1.9415966626256704],[116,309,71,-1.9405499286949635],[116,309,72,-1.9390876665711403],[116,309,73,-1.9375251978635788],[116,309,74,-1.9361613970249891],[116,309,75,-1.9351203367114067],[116,309,76,-1.9344300851225853],[116,309,77,-1.9338723700493574],[116,309,78,-1.9328901823610067],[116,309,79,-1.9314300315454602],[116,310,64,-1.9576910398900509],[116,310,65,-1.9566471707075834],[116,310,66,-1.9550568107515574],[116,310,67,-1.9531836658716202],[116,310,68,-1.9515701904892921],[116,310,69,-1.9503177274018526],[116,310,70,-1.9494091626256704],[116,310,71,-1.9483624286949635],[116,310,72,-1.9469001665711403],[116,310,73,-1.9453376978635788],[116,310,74,-1.9439738970249891],[116,310,75,-1.9429328367114067],[116,310,76,-1.9422425851225853],[116,310,77,-1.9416848700493574],[116,310,78,-1.9407026823610067],[116,310,79,-1.9392425315454602],[116,311,64,-1.9655035398900509],[116,311,65,-1.9644596707075834],[116,311,66,-1.9628693107515574],[116,311,67,-1.9609961658716202],[116,311,68,-1.9593826904892921],[116,311,69,-1.9581302274018526],[116,311,70,-1.9572216626256704],[116,311,71,-1.9561749286949635],[116,311,72,-1.9547126665711403],[116,311,73,-1.9531501978635788],[116,311,74,-1.9517863970249891],[116,311,75,-1.9507453367114067],[116,311,76,-1.9500550851225853],[116,311,77,-1.9494973700493574],[116,311,78,-1.9485151823610067],[116,311,79,-1.9470550315454602],[116,312,64,-1.9733160398900509],[116,312,65,-1.9722721707075834],[116,312,66,-1.9706818107515574],[116,312,67,-1.9688086658716202],[116,312,68,-1.9671951904892921],[116,312,69,-1.9659427274018526],[116,312,70,-1.9650341626256704],[116,312,71,-1.9639874286949635],[116,312,72,-1.9625251665711403],[116,312,73,-1.9609626978635788],[116,312,74,-1.9595988970249891],[116,312,75,-1.9585578367114067],[116,312,76,-1.9578675851225853],[116,312,77,-1.9573098700493574],[116,312,78,-1.9563276823610067],[116,312,79,-1.9548675315454602],[116,313,64,-1.9811285398900509],[116,313,65,-1.9800846707075834],[116,313,66,-1.9784943107515574],[116,313,67,-1.9766211658716202],[116,313,68,-1.9750076904892921],[116,313,69,-1.9737552274018526],[116,313,70,-1.9728466626256704],[116,313,71,-1.9717999286949635],[116,313,72,-1.9703376665711403],[116,313,73,-1.9687751978635788],[116,313,74,-1.9674113970249891],[116,313,75,-1.9663703367114067],[116,313,76,-1.9656800851225853],[116,313,77,-1.9651223700493574],[116,313,78,-1.9641401823610067],[116,313,79,-1.9626800315454602],[116,314,64,-1.9889410398900509],[116,314,65,-1.9878971707075834],[116,314,66,-1.9863068107515574],[116,314,67,-1.9844336658716202],[116,314,68,-1.9828201904892921],[116,314,69,-1.9815677274018526],[116,314,70,-1.9806591626256704],[116,314,71,-1.9796124286949635],[116,314,72,-1.9781501665711403],[116,314,73,-1.9765876978635788],[116,314,74,-1.9752238970249891],[116,314,75,-1.9741828367114067],[116,314,76,-1.9734925851225853],[116,314,77,-1.9729348700493574],[116,314,78,-1.9719526823610067],[116,314,79,-1.9704925315454602],[116,315,64,-1.9967535398900509],[116,315,65,-1.9957096707075834],[116,315,66,-1.9941193107515574],[116,315,67,-1.9922461658716202],[116,315,68,-1.9906326904892921],[116,315,69,-1.9893802274018526],[116,315,70,-1.9884716626256704],[116,315,71,-1.9874249286949635],[116,315,72,-1.9859626665711403],[116,315,73,-1.9844001978635788],[116,315,74,-1.9830363970249891],[116,315,75,-1.9819953367114067],[116,315,76,-1.9813050851225853],[116,315,77,-1.9807473700493574],[116,315,78,-1.9797651823610067],[116,315,79,-1.9783050315454602],[116,316,64,-2.004566039890051],[116,316,65,-2.0035221707075834],[116,316,66,-2.0019318107515574],[116,316,67,-2.00005866587162],[116,316,68,-1.9984451904892921],[116,316,69,-1.9971927274018526],[116,316,70,-1.9962841626256704],[116,316,71,-1.9952374286949635],[116,316,72,-1.9937751665711403],[116,316,73,-1.9922126978635788],[116,316,74,-1.9908488970249891],[116,316,75,-1.9898078367114067],[116,316,76,-1.9891175851225853],[116,316,77,-1.9885598700493574],[116,316,78,-1.9875776823610067],[116,316,79,-1.9861175315454602],[116,317,64,-2.012378539890051],[116,317,65,-2.0113346707075834],[116,317,66,-2.0097443107515574],[116,317,67,-2.00787116587162],[116,317,68,-2.006257690489292],[116,317,69,-2.0050052274018526],[116,317,70,-2.0040966626256704],[116,317,71,-2.0030499286949635],[116,317,72,-2.0015876665711403],[116,317,73,-2.000025197863579],[116,317,74,-1.9986613970249891],[116,317,75,-1.9976203367114067],[116,317,76,-1.9969300851225853],[116,317,77,-1.9963723700493574],[116,317,78,-1.9953901823610067],[116,317,79,-1.9939300315454602],[116,318,64,-2.020191039890051],[116,318,65,-2.0191471707075834],[116,318,66,-2.0175568107515574],[116,318,67,-2.01568366587162],[116,318,68,-2.014070190489292],[116,318,69,-2.0128177274018526],[116,318,70,-2.0119091626256704],[116,318,71,-2.0108624286949635],[116,318,72,-2.0094001665711403],[116,318,73,-2.007837697863579],[116,318,74,-2.006473897024989],[116,318,75,-2.0054328367114067],[116,318,76,-2.0047425851225853],[116,318,77,-2.0041848700493574],[116,318,78,-2.0032026823610067],[116,318,79,-2.0017425315454602],[116,319,64,-2.028003539890051],[116,319,65,-2.0269596707075834],[116,319,66,-2.0253693107515574],[116,319,67,-2.02349616587162],[116,319,68,-2.021882690489292],[116,319,69,-2.0206302274018526],[116,319,70,-2.0197216626256704],[116,319,71,-2.0186749286949635],[116,319,72,-2.0172126665711403],[116,319,73,-2.015650197863579],[116,319,74,-2.014286397024989],[116,319,75,-2.0132453367114067],[116,319,76,-2.0125550851225853],[116,319,77,-2.0119973700493574],[116,319,78,-2.0110151823610067],[116,319,79,-2.0095550315454602],[117,-64,64,0.9617422930896282],[117,-64,65,0.9625375047326088],[117,-64,66,0.9641984105110168],[117,-64,67,0.9663197193294764],[117,-64,68,0.9681608751416206],[117,-64,69,0.9694021157920361],[117,-64,70,0.970068845897913],[117,-64,71,0.9707010388374329],[117,-64,72,0.9714766852557659],[117,-64,73,0.9721577316522598],[117,-64,74,0.9726113360375166],[117,-64,75,0.972906056791544],[117,-64,76,0.973297605291009],[117,-64,77,0.9740401059389114],[117,-64,78,0.9755242168903351],[117,-64,79,0.9774718545377254],[117,-63,64,0.9539297930896282],[117,-63,65,0.9547250047326088],[117,-63,66,0.9563859105110168],[117,-63,67,0.9585072193294764],[117,-63,68,0.9603483751416206],[117,-63,69,0.9615896157920361],[117,-63,70,0.962256345897913],[117,-63,71,0.9628885388374329],[117,-63,72,0.9636641852557659],[117,-63,73,0.9643452316522598],[117,-63,74,0.9647988360375166],[117,-63,75,0.965093556791544],[117,-63,76,0.965485105291009],[117,-63,77,0.9662276059389114],[117,-63,78,0.9677117168903351],[117,-63,79,0.9696593545377254],[117,-62,64,0.9461172930896282],[117,-62,65,0.9469125047326088],[117,-62,66,0.9485734105110168],[117,-62,67,0.9506947193294764],[117,-62,68,0.9525358751416206],[117,-62,69,0.9537771157920361],[117,-62,70,0.954443845897913],[117,-62,71,0.9550760388374329],[117,-62,72,0.9558516852557659],[117,-62,73,0.9565327316522598],[117,-62,74,0.9569863360375166],[117,-62,75,0.957281056791544],[117,-62,76,0.957672605291009],[117,-62,77,0.9584151059389114],[117,-62,78,0.9598992168903351],[117,-62,79,0.9618468545377254],[117,-61,64,0.9383047930896282],[117,-61,65,0.9391000047326088],[117,-61,66,0.9407609105110168],[117,-61,67,0.9428822193294764],[117,-61,68,0.9447233751416206],[117,-61,69,0.9459646157920361],[117,-61,70,0.946631345897913],[117,-61,71,0.9472635388374329],[117,-61,72,0.9480391852557659],[117,-61,73,0.9487202316522598],[117,-61,74,0.9491738360375166],[117,-61,75,0.949468556791544],[117,-61,76,0.949860105291009],[117,-61,77,0.9506026059389114],[117,-61,78,0.9520867168903351],[117,-61,79,0.9540343545377254],[117,-60,64,0.9304922930896282],[117,-60,65,0.9312875047326088],[117,-60,66,0.9329484105110168],[117,-60,67,0.9350697193294764],[117,-60,68,0.9369108751416206],[117,-60,69,0.9381521157920361],[117,-60,70,0.938818845897913],[117,-60,71,0.9394510388374329],[117,-60,72,0.9402266852557659],[117,-60,73,0.9409077316522598],[117,-60,74,0.9413613360375166],[117,-60,75,0.941656056791544],[117,-60,76,0.942047605291009],[117,-60,77,0.9427901059389114],[117,-60,78,0.9442742168903351],[117,-60,79,0.9462218545377254],[117,-59,64,0.9226797930896282],[117,-59,65,0.9234750047326088],[117,-59,66,0.9251359105110168],[117,-59,67,0.9272572193294764],[117,-59,68,0.9290983751416206],[117,-59,69,0.9303396157920361],[117,-59,70,0.931006345897913],[117,-59,71,0.9316385388374329],[117,-59,72,0.9324141852557659],[117,-59,73,0.9330952316522598],[117,-59,74,0.9335488360375166],[117,-59,75,0.933843556791544],[117,-59,76,0.934235105291009],[117,-59,77,0.9349776059389114],[117,-59,78,0.9364617168903351],[117,-59,79,0.9384093545377254],[117,-58,64,0.9148672930896282],[117,-58,65,0.9156625047326088],[117,-58,66,0.9173234105110168],[117,-58,67,0.9194447193294764],[117,-58,68,0.9212858751416206],[117,-58,69,0.9225271157920361],[117,-58,70,0.923193845897913],[117,-58,71,0.9238260388374329],[117,-58,72,0.9246016852557659],[117,-58,73,0.9252827316522598],[117,-58,74,0.9257363360375166],[117,-58,75,0.926031056791544],[117,-58,76,0.926422605291009],[117,-58,77,0.9271651059389114],[117,-58,78,0.9286492168903351],[117,-58,79,0.9305968545377254],[117,-57,64,0.9070547930896282],[117,-57,65,0.9078500047326088],[117,-57,66,0.9095109105110168],[117,-57,67,0.9116322193294764],[117,-57,68,0.9134733751416206],[117,-57,69,0.9147146157920361],[117,-57,70,0.915381345897913],[117,-57,71,0.9160135388374329],[117,-57,72,0.9167891852557659],[117,-57,73,0.9174702316522598],[117,-57,74,0.9179238360375166],[117,-57,75,0.918218556791544],[117,-57,76,0.918610105291009],[117,-57,77,0.9193526059389114],[117,-57,78,0.9208367168903351],[117,-57,79,0.9227843545377254],[117,-56,64,0.8992422930896282],[117,-56,65,0.9000375047326088],[117,-56,66,0.9016984105110168],[117,-56,67,0.9038197193294764],[117,-56,68,0.9056608751416206],[117,-56,69,0.9069021157920361],[117,-56,70,0.907568845897913],[117,-56,71,0.9082010388374329],[117,-56,72,0.9089766852557659],[117,-56,73,0.9096577316522598],[117,-56,74,0.9101113360375166],[117,-56,75,0.910406056791544],[117,-56,76,0.910797605291009],[117,-56,77,0.9115401059389114],[117,-56,78,0.9130242168903351],[117,-56,79,0.9149718545377254],[117,-55,64,0.8914297930896282],[117,-55,65,0.8922250047326088],[117,-55,66,0.8938859105110168],[117,-55,67,0.8960072193294764],[117,-55,68,0.8978483751416206],[117,-55,69,0.8990896157920361],[117,-55,70,0.899756345897913],[117,-55,71,0.9003885388374329],[117,-55,72,0.9011641852557659],[117,-55,73,0.9018452316522598],[117,-55,74,0.9022988360375166],[117,-55,75,0.902593556791544],[117,-55,76,0.902985105291009],[117,-55,77,0.9037276059389114],[117,-55,78,0.9052117168903351],[117,-55,79,0.9071593545377254],[117,-54,64,0.8836172930896282],[117,-54,65,0.8844125047326088],[117,-54,66,0.8860734105110168],[117,-54,67,0.8881947193294764],[117,-54,68,0.8900358751416206],[117,-54,69,0.8912771157920361],[117,-54,70,0.891943845897913],[117,-54,71,0.8925760388374329],[117,-54,72,0.8933516852557659],[117,-54,73,0.8940327316522598],[117,-54,74,0.8944863360375166],[117,-54,75,0.894781056791544],[117,-54,76,0.895172605291009],[117,-54,77,0.8959151059389114],[117,-54,78,0.8973992168903351],[117,-54,79,0.8993468545377254],[117,-53,64,0.8758047930896282],[117,-53,65,0.8766000047326088],[117,-53,66,0.8782609105110168],[117,-53,67,0.8803822193294764],[117,-53,68,0.8822233751416206],[117,-53,69,0.8834646157920361],[117,-53,70,0.884131345897913],[117,-53,71,0.8847635388374329],[117,-53,72,0.8855391852557659],[117,-53,73,0.8862202316522598],[117,-53,74,0.8866738360375166],[117,-53,75,0.886968556791544],[117,-53,76,0.887360105291009],[117,-53,77,0.8881026059389114],[117,-53,78,0.8895867168903351],[117,-53,79,0.8915343545377254],[117,-52,64,0.8679922930896282],[117,-52,65,0.8687875047326088],[117,-52,66,0.8704484105110168],[117,-52,67,0.8725697193294764],[117,-52,68,0.8744108751416206],[117,-52,69,0.8756521157920361],[117,-52,70,0.876318845897913],[117,-52,71,0.8769510388374329],[117,-52,72,0.8777266852557659],[117,-52,73,0.8784077316522598],[117,-52,74,0.8788613360375166],[117,-52,75,0.879156056791544],[117,-52,76,0.879547605291009],[117,-52,77,0.8802901059389114],[117,-52,78,0.8817742168903351],[117,-52,79,0.8837218545377254],[117,-51,64,0.8601797930896282],[117,-51,65,0.8609750047326088],[117,-51,66,0.8626359105110168],[117,-51,67,0.8647572193294764],[117,-51,68,0.8665983751416206],[117,-51,69,0.8678396157920361],[117,-51,70,0.868506345897913],[117,-51,71,0.8691385388374329],[117,-51,72,0.8699141852557659],[117,-51,73,0.8705952316522598],[117,-51,74,0.8710488360375166],[117,-51,75,0.871343556791544],[117,-51,76,0.871735105291009],[117,-51,77,0.8724776059389114],[117,-51,78,0.8739617168903351],[117,-51,79,0.8759093545377254],[117,-50,64,0.8523672930896282],[117,-50,65,0.8531625047326088],[117,-50,66,0.8548234105110168],[117,-50,67,0.8569447193294764],[117,-50,68,0.8587858751416206],[117,-50,69,0.8600271157920361],[117,-50,70,0.860693845897913],[117,-50,71,0.8613260388374329],[117,-50,72,0.8621016852557659],[117,-50,73,0.8627827316522598],[117,-50,74,0.8632363360375166],[117,-50,75,0.863531056791544],[117,-50,76,0.863922605291009],[117,-50,77,0.8646651059389114],[117,-50,78,0.8661492168903351],[117,-50,79,0.8680968545377254],[117,-49,64,0.8445547930896282],[117,-49,65,0.8453500047326088],[117,-49,66,0.8470109105110168],[117,-49,67,0.8491322193294764],[117,-49,68,0.8509733751416206],[117,-49,69,0.8522146157920361],[117,-49,70,0.852881345897913],[117,-49,71,0.8535135388374329],[117,-49,72,0.8542891852557659],[117,-49,73,0.8549702316522598],[117,-49,74,0.8554238360375166],[117,-49,75,0.855718556791544],[117,-49,76,0.856110105291009],[117,-49,77,0.8568526059389114],[117,-49,78,0.8583367168903351],[117,-49,79,0.8602843545377254],[117,-48,64,0.8367422930896282],[117,-48,65,0.8375375047326088],[117,-48,66,0.8391984105110168],[117,-48,67,0.8413197193294764],[117,-48,68,0.8431608751416206],[117,-48,69,0.8444021157920361],[117,-48,70,0.845068845897913],[117,-48,71,0.8457010388374329],[117,-48,72,0.8464766852557659],[117,-48,73,0.8471577316522598],[117,-48,74,0.8476113360375166],[117,-48,75,0.847906056791544],[117,-48,76,0.848297605291009],[117,-48,77,0.8490401059389114],[117,-48,78,0.8505242168903351],[117,-48,79,0.8524718545377254],[117,-47,64,0.8289297930896282],[117,-47,65,0.8297250047326088],[117,-47,66,0.8313859105110168],[117,-47,67,0.8335072193294764],[117,-47,68,0.8353483751416206],[117,-47,69,0.8365896157920361],[117,-47,70,0.837256345897913],[117,-47,71,0.8378885388374329],[117,-47,72,0.8386641852557659],[117,-47,73,0.8393452316522598],[117,-47,74,0.8397988360375166],[117,-47,75,0.840093556791544],[117,-47,76,0.840485105291009],[117,-47,77,0.8412276059389114],[117,-47,78,0.8427117168903351],[117,-47,79,0.8446593545377254],[117,-46,64,0.8211172930896282],[117,-46,65,0.8219125047326088],[117,-46,66,0.8235734105110168],[117,-46,67,0.8256947193294764],[117,-46,68,0.8275358751416206],[117,-46,69,0.8287771157920361],[117,-46,70,0.829443845897913],[117,-46,71,0.8300760388374329],[117,-46,72,0.8308516852557659],[117,-46,73,0.8315327316522598],[117,-46,74,0.8319863360375166],[117,-46,75,0.832281056791544],[117,-46,76,0.832672605291009],[117,-46,77,0.8334151059389114],[117,-46,78,0.8348992168903351],[117,-46,79,0.8368468545377254],[117,-45,64,0.8133047930896282],[117,-45,65,0.8141000047326088],[117,-45,66,0.8157609105110168],[117,-45,67,0.8178822193294764],[117,-45,68,0.8197233751416206],[117,-45,69,0.8209646157920361],[117,-45,70,0.821631345897913],[117,-45,71,0.8222635388374329],[117,-45,72,0.8230391852557659],[117,-45,73,0.8237202316522598],[117,-45,74,0.8241738360375166],[117,-45,75,0.824468556791544],[117,-45,76,0.824860105291009],[117,-45,77,0.8256026059389114],[117,-45,78,0.8270867168903351],[117,-45,79,0.8290343545377254],[117,-44,64,0.8054922930896282],[117,-44,65,0.8062875047326088],[117,-44,66,0.8079484105110168],[117,-44,67,0.8100697193294764],[117,-44,68,0.8119108751416206],[117,-44,69,0.8131521157920361],[117,-44,70,0.813818845897913],[117,-44,71,0.8144510388374329],[117,-44,72,0.8152266852557659],[117,-44,73,0.8159077316522598],[117,-44,74,0.8163613360375166],[117,-44,75,0.816656056791544],[117,-44,76,0.817047605291009],[117,-44,77,0.8177901059389114],[117,-44,78,0.8192742168903351],[117,-44,79,0.8212218545377254],[117,-43,64,0.7976797930896282],[117,-43,65,0.7984750047326088],[117,-43,66,0.8001359105110168],[117,-43,67,0.8022572193294764],[117,-43,68,0.8040983751416206],[117,-43,69,0.8053396157920361],[117,-43,70,0.806006345897913],[117,-43,71,0.8066385388374329],[117,-43,72,0.8074141852557659],[117,-43,73,0.8080952316522598],[117,-43,74,0.8085488360375166],[117,-43,75,0.808843556791544],[117,-43,76,0.809235105291009],[117,-43,77,0.8099776059389114],[117,-43,78,0.8114617168903351],[117,-43,79,0.8134093545377254],[117,-42,64,0.7898672930896282],[117,-42,65,0.7906625047326088],[117,-42,66,0.7923234105110168],[117,-42,67,0.7944447193294764],[117,-42,68,0.7962858751416206],[117,-42,69,0.7975271157920361],[117,-42,70,0.798193845897913],[117,-42,71,0.7988260388374329],[117,-42,72,0.7996016852557659],[117,-42,73,0.8002827316522598],[117,-42,74,0.8007363360375166],[117,-42,75,0.801031056791544],[117,-42,76,0.801422605291009],[117,-42,77,0.8021651059389114],[117,-42,78,0.8036492168903351],[117,-42,79,0.8055968545377254],[117,-41,64,0.7820547930896282],[117,-41,65,0.7828500047326088],[117,-41,66,0.7845109105110168],[117,-41,67,0.7866322193294764],[117,-41,68,0.7884733751416206],[117,-41,69,0.7897146157920361],[117,-41,70,0.790381345897913],[117,-41,71,0.7910135388374329],[117,-41,72,0.7917891852557659],[117,-41,73,0.7924702316522598],[117,-41,74,0.7929238360375166],[117,-41,75,0.793218556791544],[117,-41,76,0.793610105291009],[117,-41,77,0.7943526059389114],[117,-41,78,0.7958367168903351],[117,-41,79,0.7977843545377254],[117,-40,64,0.7742422930896282],[117,-40,65,0.7750375047326088],[117,-40,66,0.7766984105110168],[117,-40,67,0.7788197193294764],[117,-40,68,0.7806608751416206],[117,-40,69,0.7819021157920361],[117,-40,70,0.782568845897913],[117,-40,71,0.7832010388374329],[117,-40,72,0.7839766852557659],[117,-40,73,0.7846577316522598],[117,-40,74,0.7851113360375166],[117,-40,75,0.785406056791544],[117,-40,76,0.785797605291009],[117,-40,77,0.7865401059389114],[117,-40,78,0.7880242168903351],[117,-40,79,0.7899718545377254],[117,-39,64,0.7664297930896282],[117,-39,65,0.7672250047326088],[117,-39,66,0.7688859105110168],[117,-39,67,0.7710072193294764],[117,-39,68,0.7728483751416206],[117,-39,69,0.7740896157920361],[117,-39,70,0.774756345897913],[117,-39,71,0.7753885388374329],[117,-39,72,0.7761641852557659],[117,-39,73,0.7768452316522598],[117,-39,74,0.7772988360375166],[117,-39,75,0.777593556791544],[117,-39,76,0.777985105291009],[117,-39,77,0.7787276059389114],[117,-39,78,0.7802117168903351],[117,-39,79,0.7821593545377254],[117,-38,64,0.7586172930896282],[117,-38,65,0.7594125047326088],[117,-38,66,0.7610734105110168],[117,-38,67,0.7631947193294764],[117,-38,68,0.7650358751416206],[117,-38,69,0.7662771157920361],[117,-38,70,0.766943845897913],[117,-38,71,0.7675760388374329],[117,-38,72,0.7683516852557659],[117,-38,73,0.7690327316522598],[117,-38,74,0.7694863360375166],[117,-38,75,0.769781056791544],[117,-38,76,0.770172605291009],[117,-38,77,0.7709151059389114],[117,-38,78,0.7723992168903351],[117,-38,79,0.7743468545377254],[117,-37,64,0.7508047930896282],[117,-37,65,0.7516000047326088],[117,-37,66,0.7532609105110168],[117,-37,67,0.7553822193294764],[117,-37,68,0.7572233751416206],[117,-37,69,0.7584646157920361],[117,-37,70,0.759131345897913],[117,-37,71,0.7597635388374329],[117,-37,72,0.7605391852557659],[117,-37,73,0.7612202316522598],[117,-37,74,0.7616738360375166],[117,-37,75,0.761968556791544],[117,-37,76,0.762360105291009],[117,-37,77,0.7631026059389114],[117,-37,78,0.7645867168903351],[117,-37,79,0.7665343545377254],[117,-36,64,0.7429922930896282],[117,-36,65,0.7437875047326088],[117,-36,66,0.7454484105110168],[117,-36,67,0.7475697193294764],[117,-36,68,0.7494108751416206],[117,-36,69,0.7506521157920361],[117,-36,70,0.751318845897913],[117,-36,71,0.7519510388374329],[117,-36,72,0.7527266852557659],[117,-36,73,0.7534077316522598],[117,-36,74,0.7538613360375166],[117,-36,75,0.754156056791544],[117,-36,76,0.754547605291009],[117,-36,77,0.7552901059389114],[117,-36,78,0.7567742168903351],[117,-36,79,0.7587218545377254],[117,-35,64,0.7351797930896282],[117,-35,65,0.7359750047326088],[117,-35,66,0.7376359105110168],[117,-35,67,0.7397572193294764],[117,-35,68,0.7415983751416206],[117,-35,69,0.7428396157920361],[117,-35,70,0.743506345897913],[117,-35,71,0.7441385388374329],[117,-35,72,0.7449141852557659],[117,-35,73,0.7455952316522598],[117,-35,74,0.7460488360375166],[117,-35,75,0.746343556791544],[117,-35,76,0.746735105291009],[117,-35,77,0.7474776059389114],[117,-35,78,0.7489617168903351],[117,-35,79,0.7509093545377254],[117,-34,64,0.7273672930896282],[117,-34,65,0.7281625047326088],[117,-34,66,0.7298234105110168],[117,-34,67,0.7319447193294764],[117,-34,68,0.7337858751416206],[117,-34,69,0.7350271157920361],[117,-34,70,0.735693845897913],[117,-34,71,0.7363260388374329],[117,-34,72,0.7371016852557659],[117,-34,73,0.7377827316522598],[117,-34,74,0.7382363360375166],[117,-34,75,0.738531056791544],[117,-34,76,0.738922605291009],[117,-34,77,0.7396651059389114],[117,-34,78,0.7411492168903351],[117,-34,79,0.7430968545377254],[117,-33,64,0.7195547930896282],[117,-33,65,0.7203500047326088],[117,-33,66,0.7220109105110168],[117,-33,67,0.7241322193294764],[117,-33,68,0.7259733751416206],[117,-33,69,0.7272146157920361],[117,-33,70,0.727881345897913],[117,-33,71,0.7285135388374329],[117,-33,72,0.7292891852557659],[117,-33,73,0.7299702316522598],[117,-33,74,0.7304238360375166],[117,-33,75,0.730718556791544],[117,-33,76,0.731110105291009],[117,-33,77,0.7318526059389114],[117,-33,78,0.7333367168903351],[117,-33,79,0.7352843545377254],[117,-32,64,0.7117422930896282],[117,-32,65,0.7125375047326088],[117,-32,66,0.7141984105110168],[117,-32,67,0.7163197193294764],[117,-32,68,0.7181608751416206],[117,-32,69,0.7194021157920361],[117,-32,70,0.720068845897913],[117,-32,71,0.7207010388374329],[117,-32,72,0.7214766852557659],[117,-32,73,0.7221577316522598],[117,-32,74,0.7226113360375166],[117,-32,75,0.722906056791544],[117,-32,76,0.723297605291009],[117,-32,77,0.7240401059389114],[117,-32,78,0.7255242168903351],[117,-32,79,0.7274718545377254],[117,-31,64,0.7039297930896282],[117,-31,65,0.7047250047326088],[117,-31,66,0.7063859105110168],[117,-31,67,0.7085072193294764],[117,-31,68,0.7103483751416206],[117,-31,69,0.7115896157920361],[117,-31,70,0.712256345897913],[117,-31,71,0.7128885388374329],[117,-31,72,0.7136641852557659],[117,-31,73,0.7143452316522598],[117,-31,74,0.7147988360375166],[117,-31,75,0.715093556791544],[117,-31,76,0.715485105291009],[117,-31,77,0.7162276059389114],[117,-31,78,0.7177117168903351],[117,-31,79,0.7196593545377254],[117,-30,64,0.6961172930896282],[117,-30,65,0.6969125047326088],[117,-30,66,0.6985734105110168],[117,-30,67,0.7006947193294764],[117,-30,68,0.7025358751416206],[117,-30,69,0.7037771157920361],[117,-30,70,0.704443845897913],[117,-30,71,0.7050760388374329],[117,-30,72,0.7058516852557659],[117,-30,73,0.7065327316522598],[117,-30,74,0.7069863360375166],[117,-30,75,0.707281056791544],[117,-30,76,0.707672605291009],[117,-30,77,0.7084151059389114],[117,-30,78,0.7098992168903351],[117,-30,79,0.7118468545377254],[117,-29,64,0.6883047930896282],[117,-29,65,0.6891000047326088],[117,-29,66,0.6907609105110168],[117,-29,67,0.6928822193294764],[117,-29,68,0.6947233751416206],[117,-29,69,0.6959646157920361],[117,-29,70,0.696631345897913],[117,-29,71,0.6972635388374329],[117,-29,72,0.6980391852557659],[117,-29,73,0.6987202316522598],[117,-29,74,0.6991738360375166],[117,-29,75,0.699468556791544],[117,-29,76,0.699860105291009],[117,-29,77,0.7006026059389114],[117,-29,78,0.7020867168903351],[117,-29,79,0.7040343545377254],[117,-28,64,0.6804922930896282],[117,-28,65,0.6812875047326088],[117,-28,66,0.6829484105110168],[117,-28,67,0.6850697193294764],[117,-28,68,0.6869108751416206],[117,-28,69,0.6881521157920361],[117,-28,70,0.688818845897913],[117,-28,71,0.6894510388374329],[117,-28,72,0.6902266852557659],[117,-28,73,0.6909077316522598],[117,-28,74,0.6913613360375166],[117,-28,75,0.691656056791544],[117,-28,76,0.692047605291009],[117,-28,77,0.6927901059389114],[117,-28,78,0.6942742168903351],[117,-28,79,0.6962218545377254],[117,-27,64,0.6726797930896282],[117,-27,65,0.6734750047326088],[117,-27,66,0.6751359105110168],[117,-27,67,0.6772572193294764],[117,-27,68,0.6790983751416206],[117,-27,69,0.6803396157920361],[117,-27,70,0.681006345897913],[117,-27,71,0.6816385388374329],[117,-27,72,0.6824141852557659],[117,-27,73,0.6830952316522598],[117,-27,74,0.6835488360375166],[117,-27,75,0.683843556791544],[117,-27,76,0.684235105291009],[117,-27,77,0.6849776059389114],[117,-27,78,0.6864617168903351],[117,-27,79,0.6884093545377254],[117,-26,64,0.6648672930896282],[117,-26,65,0.6656625047326088],[117,-26,66,0.6673234105110168],[117,-26,67,0.6694447193294764],[117,-26,68,0.6712858751416206],[117,-26,69,0.6725271157920361],[117,-26,70,0.673193845897913],[117,-26,71,0.6738260388374329],[117,-26,72,0.6746016852557659],[117,-26,73,0.6752827316522598],[117,-26,74,0.6757363360375166],[117,-26,75,0.676031056791544],[117,-26,76,0.676422605291009],[117,-26,77,0.6771651059389114],[117,-26,78,0.6786492168903351],[117,-26,79,0.6805968545377254],[117,-25,64,0.6570547930896282],[117,-25,65,0.6578500047326088],[117,-25,66,0.6595109105110168],[117,-25,67,0.6616322193294764],[117,-25,68,0.6634733751416206],[117,-25,69,0.6647146157920361],[117,-25,70,0.665381345897913],[117,-25,71,0.6660135388374329],[117,-25,72,0.6667891852557659],[117,-25,73,0.6674702316522598],[117,-25,74,0.6679238360375166],[117,-25,75,0.668218556791544],[117,-25,76,0.668610105291009],[117,-25,77,0.6693526059389114],[117,-25,78,0.6708367168903351],[117,-25,79,0.6727843545377254],[117,-24,64,0.6492422930896282],[117,-24,65,0.6500375047326088],[117,-24,66,0.6516984105110168],[117,-24,67,0.6538197193294764],[117,-24,68,0.6556608751416206],[117,-24,69,0.6569021157920361],[117,-24,70,0.657568845897913],[117,-24,71,0.6582010388374329],[117,-24,72,0.6589766852557659],[117,-24,73,0.6596577316522598],[117,-24,74,0.6601113360375166],[117,-24,75,0.660406056791544],[117,-24,76,0.660797605291009],[117,-24,77,0.6615401059389114],[117,-24,78,0.6630242168903351],[117,-24,79,0.6649718545377254],[117,-23,64,0.6414297930896282],[117,-23,65,0.6422250047326088],[117,-23,66,0.6438859105110168],[117,-23,67,0.6460072193294764],[117,-23,68,0.6478483751416206],[117,-23,69,0.6490896157920361],[117,-23,70,0.649756345897913],[117,-23,71,0.6503885388374329],[117,-23,72,0.6511641852557659],[117,-23,73,0.6518452316522598],[117,-23,74,0.6522988360375166],[117,-23,75,0.652593556791544],[117,-23,76,0.652985105291009],[117,-23,77,0.6537276059389114],[117,-23,78,0.6552117168903351],[117,-23,79,0.6571593545377254],[117,-22,64,0.6336172930896282],[117,-22,65,0.6344125047326088],[117,-22,66,0.6360734105110168],[117,-22,67,0.6381947193294764],[117,-22,68,0.6400358751416206],[117,-22,69,0.6412771157920361],[117,-22,70,0.641943845897913],[117,-22,71,0.6425760388374329],[117,-22,72,0.6433516852557659],[117,-22,73,0.6440327316522598],[117,-22,74,0.6444863360375166],[117,-22,75,0.644781056791544],[117,-22,76,0.645172605291009],[117,-22,77,0.6459151059389114],[117,-22,78,0.6473992168903351],[117,-22,79,0.6493468545377254],[117,-21,64,0.6258047930896282],[117,-21,65,0.6266000047326088],[117,-21,66,0.6282609105110168],[117,-21,67,0.6303822193294764],[117,-21,68,0.6322233751416206],[117,-21,69,0.6334646157920361],[117,-21,70,0.634131345897913],[117,-21,71,0.6347635388374329],[117,-21,72,0.6355391852557659],[117,-21,73,0.6362202316522598],[117,-21,74,0.6366738360375166],[117,-21,75,0.636968556791544],[117,-21,76,0.637360105291009],[117,-21,77,0.6381026059389114],[117,-21,78,0.6395867168903351],[117,-21,79,0.6415343545377254],[117,-20,64,0.6179922930896282],[117,-20,65,0.6187875047326088],[117,-20,66,0.6204484105110168],[117,-20,67,0.6225697193294764],[117,-20,68,0.6244108751416206],[117,-20,69,0.6256521157920361],[117,-20,70,0.626318845897913],[117,-20,71,0.6269510388374329],[117,-20,72,0.6277266852557659],[117,-20,73,0.6284077316522598],[117,-20,74,0.6288613360375166],[117,-20,75,0.629156056791544],[117,-20,76,0.629547605291009],[117,-20,77,0.6302901059389114],[117,-20,78,0.6317742168903351],[117,-20,79,0.6337218545377254],[117,-19,64,0.6101797930896282],[117,-19,65,0.6109750047326088],[117,-19,66,0.6126359105110168],[117,-19,67,0.6147572193294764],[117,-19,68,0.6165983751416206],[117,-19,69,0.6178396157920361],[117,-19,70,0.618506345897913],[117,-19,71,0.6191385388374329],[117,-19,72,0.6199141852557659],[117,-19,73,0.6205952316522598],[117,-19,74,0.6210488360375166],[117,-19,75,0.621343556791544],[117,-19,76,0.621735105291009],[117,-19,77,0.6224776059389114],[117,-19,78,0.6239617168903351],[117,-19,79,0.6259093545377254],[117,-18,64,0.6023672930896282],[117,-18,65,0.6031625047326088],[117,-18,66,0.6048234105110168],[117,-18,67,0.6069447193294764],[117,-18,68,0.6087858751416206],[117,-18,69,0.6100271157920361],[117,-18,70,0.610693845897913],[117,-18,71,0.6113260388374329],[117,-18,72,0.6121016852557659],[117,-18,73,0.6127827316522598],[117,-18,74,0.6132363360375166],[117,-18,75,0.613531056791544],[117,-18,76,0.613922605291009],[117,-18,77,0.6146651059389114],[117,-18,78,0.6161492168903351],[117,-18,79,0.6180968545377254],[117,-17,64,0.5945547930896282],[117,-17,65,0.5953500047326088],[117,-17,66,0.5970109105110168],[117,-17,67,0.5991322193294764],[117,-17,68,0.6009733751416206],[117,-17,69,0.6022146157920361],[117,-17,70,0.602881345897913],[117,-17,71,0.6035135388374329],[117,-17,72,0.6042891852557659],[117,-17,73,0.6049702316522598],[117,-17,74,0.6054238360375166],[117,-17,75,0.605718556791544],[117,-17,76,0.606110105291009],[117,-17,77,0.6068526059389114],[117,-17,78,0.6083367168903351],[117,-17,79,0.6102843545377254],[117,-16,64,0.5867422930896282],[117,-16,65,0.5875375047326088],[117,-16,66,0.5891984105110168],[117,-16,67,0.5913197193294764],[117,-16,68,0.5931608751416206],[117,-16,69,0.5944021157920361],[117,-16,70,0.595068845897913],[117,-16,71,0.5957010388374329],[117,-16,72,0.5964766852557659],[117,-16,73,0.5971577316522598],[117,-16,74,0.5976113360375166],[117,-16,75,0.597906056791544],[117,-16,76,0.598297605291009],[117,-16,77,0.5990401059389114],[117,-16,78,0.6005242168903351],[117,-16,79,0.6024718545377254],[117,-15,64,0.5789297930896282],[117,-15,65,0.5797250047326088],[117,-15,66,0.5813859105110168],[117,-15,67,0.5835072193294764],[117,-15,68,0.5853483751416206],[117,-15,69,0.5865896157920361],[117,-15,70,0.587256345897913],[117,-15,71,0.5878885388374329],[117,-15,72,0.5886641852557659],[117,-15,73,0.5893452316522598],[117,-15,74,0.5897988360375166],[117,-15,75,0.590093556791544],[117,-15,76,0.590485105291009],[117,-15,77,0.5912276059389114],[117,-15,78,0.5927117168903351],[117,-15,79,0.5946593545377254],[117,-14,64,0.5711172930896282],[117,-14,65,0.5719125047326088],[117,-14,66,0.5735734105110168],[117,-14,67,0.5756947193294764],[117,-14,68,0.5775358751416206],[117,-14,69,0.5787771157920361],[117,-14,70,0.579443845897913],[117,-14,71,0.5800760388374329],[117,-14,72,0.5808516852557659],[117,-14,73,0.5815327316522598],[117,-14,74,0.5819863360375166],[117,-14,75,0.582281056791544],[117,-14,76,0.582672605291009],[117,-14,77,0.5834151059389114],[117,-14,78,0.5848992168903351],[117,-14,79,0.5868468545377254],[117,-13,64,0.5633047930896282],[117,-13,65,0.5641000047326088],[117,-13,66,0.5657609105110168],[117,-13,67,0.5678822193294764],[117,-13,68,0.5697233751416206],[117,-13,69,0.5709646157920361],[117,-13,70,0.571631345897913],[117,-13,71,0.5722635388374329],[117,-13,72,0.5730391852557659],[117,-13,73,0.5737202316522598],[117,-13,74,0.5741738360375166],[117,-13,75,0.574468556791544],[117,-13,76,0.574860105291009],[117,-13,77,0.5756026059389114],[117,-13,78,0.5770867168903351],[117,-13,79,0.5790343545377254],[117,-12,64,0.5554922930896282],[117,-12,65,0.5562875047326088],[117,-12,66,0.5579484105110168],[117,-12,67,0.5600697193294764],[117,-12,68,0.5619108751416206],[117,-12,69,0.5631521157920361],[117,-12,70,0.563818845897913],[117,-12,71,0.5644510388374329],[117,-12,72,0.5652266852557659],[117,-12,73,0.5659077316522598],[117,-12,74,0.5663613360375166],[117,-12,75,0.566656056791544],[117,-12,76,0.567047605291009],[117,-12,77,0.5677901059389114],[117,-12,78,0.5692742168903351],[117,-12,79,0.5712218545377254],[117,-11,64,0.5476797930896282],[117,-11,65,0.5484750047326088],[117,-11,66,0.5501359105110168],[117,-11,67,0.5522572193294764],[117,-11,68,0.5540983751416206],[117,-11,69,0.5553396157920361],[117,-11,70,0.556006345897913],[117,-11,71,0.5566385388374329],[117,-11,72,0.5574141852557659],[117,-11,73,0.5580952316522598],[117,-11,74,0.5585488360375166],[117,-11,75,0.558843556791544],[117,-11,76,0.559235105291009],[117,-11,77,0.5599776059389114],[117,-11,78,0.5614617168903351],[117,-11,79,0.5634093545377254],[117,-10,64,0.5398672930896282],[117,-10,65,0.5406625047326088],[117,-10,66,0.5423234105110168],[117,-10,67,0.5444447193294764],[117,-10,68,0.5462858751416206],[117,-10,69,0.5475271157920361],[117,-10,70,0.548193845897913],[117,-10,71,0.5488260388374329],[117,-10,72,0.5496016852557659],[117,-10,73,0.5502827316522598],[117,-10,74,0.5507363360375166],[117,-10,75,0.551031056791544],[117,-10,76,0.551422605291009],[117,-10,77,0.5521651059389114],[117,-10,78,0.5536492168903351],[117,-10,79,0.5555968545377254],[117,-9,64,0.5320547930896282],[117,-9,65,0.5328500047326088],[117,-9,66,0.5345109105110168],[117,-9,67,0.5366322193294764],[117,-9,68,0.5384733751416206],[117,-9,69,0.5397146157920361],[117,-9,70,0.540381345897913],[117,-9,71,0.5410135388374329],[117,-9,72,0.5417891852557659],[117,-9,73,0.5424702316522598],[117,-9,74,0.5429238360375166],[117,-9,75,0.543218556791544],[117,-9,76,0.543610105291009],[117,-9,77,0.5443526059389114],[117,-9,78,0.5458367168903351],[117,-9,79,0.5477843545377254],[117,-8,64,0.5242422930896282],[117,-8,65,0.5250375047326088],[117,-8,66,0.5266984105110168],[117,-8,67,0.5288197193294764],[117,-8,68,0.5306608751416206],[117,-8,69,0.5319021157920361],[117,-8,70,0.532568845897913],[117,-8,71,0.5332010388374329],[117,-8,72,0.5339766852557659],[117,-8,73,0.5346577316522598],[117,-8,74,0.5351113360375166],[117,-8,75,0.535406056791544],[117,-8,76,0.535797605291009],[117,-8,77,0.5365401059389114],[117,-8,78,0.5380242168903351],[117,-8,79,0.5399718545377254],[117,-7,64,0.5164297930896282],[117,-7,65,0.5172250047326088],[117,-7,66,0.5188859105110168],[117,-7,67,0.5210072193294764],[117,-7,68,0.5228483751416206],[117,-7,69,0.5240896157920361],[117,-7,70,0.524756345897913],[117,-7,71,0.5253885388374329],[117,-7,72,0.5261641852557659],[117,-7,73,0.5268452316522598],[117,-7,74,0.5272988360375166],[117,-7,75,0.527593556791544],[117,-7,76,0.527985105291009],[117,-7,77,0.5287276059389114],[117,-7,78,0.5302117168903351],[117,-7,79,0.5321593545377254],[117,-6,64,0.5086172930896282],[117,-6,65,0.5094125047326088],[117,-6,66,0.5110734105110168],[117,-6,67,0.5131947193294764],[117,-6,68,0.5150358751416206],[117,-6,69,0.5162771157920361],[117,-6,70,0.516943845897913],[117,-6,71,0.5175760388374329],[117,-6,72,0.5183516852557659],[117,-6,73,0.5190327316522598],[117,-6,74,0.5194863360375166],[117,-6,75,0.519781056791544],[117,-6,76,0.520172605291009],[117,-6,77,0.5209151059389114],[117,-6,78,0.5223992168903351],[117,-6,79,0.5243468545377254],[117,-5,64,0.5008047930896282],[117,-5,65,0.5016000047326088],[117,-5,66,0.5032609105110168],[117,-5,67,0.5053822193294764],[117,-5,68,0.5072233751416206],[117,-5,69,0.5084646157920361],[117,-5,70,0.509131345897913],[117,-5,71,0.5097635388374329],[117,-5,72,0.5105391852557659],[117,-5,73,0.5112202316522598],[117,-5,74,0.5116738360375166],[117,-5,75,0.511968556791544],[117,-5,76,0.512360105291009],[117,-5,77,0.5131026059389114],[117,-5,78,0.5145867168903351],[117,-5,79,0.5165343545377254],[117,-4,64,0.4929922930896282],[117,-4,65,0.4937875047326088],[117,-4,66,0.49544841051101685],[117,-4,67,0.49756971932947636],[117,-4,68,0.49941087514162064],[117,-4,69,0.5006521157920361],[117,-4,70,0.501318845897913],[117,-4,71,0.5019510388374329],[117,-4,72,0.5027266852557659],[117,-4,73,0.5034077316522598],[117,-4,74,0.5038613360375166],[117,-4,75,0.504156056791544],[117,-4,76,0.504547605291009],[117,-4,77,0.5052901059389114],[117,-4,78,0.5067742168903351],[117,-4,79,0.5087218545377254],[117,-3,64,0.4851797930896282],[117,-3,65,0.4859750047326088],[117,-3,66,0.48763591051101685],[117,-3,67,0.48975721932947636],[117,-3,68,0.49159837514162064],[117,-3,69,0.49283961579203606],[117,-3,70,0.493506345897913],[117,-3,71,0.49413853883743286],[117,-3,72,0.4949141852557659],[117,-3,73,0.4955952316522598],[117,-3,74,0.4960488360375166],[117,-3,75,0.49634355679154396],[117,-3,76,0.49673510529100895],[117,-3,77,0.49747760593891144],[117,-3,78,0.4989617168903351],[117,-3,79,0.5009093545377254],[117,-2,64,0.4773672930896282],[117,-2,65,0.4781625047326088],[117,-2,66,0.47982341051101685],[117,-2,67,0.48194471932947636],[117,-2,68,0.48378587514162064],[117,-2,69,0.48502711579203606],[117,-2,70,0.485693845897913],[117,-2,71,0.48632603883743286],[117,-2,72,0.4871016852557659],[117,-2,73,0.4877827316522598],[117,-2,74,0.4882363360375166],[117,-2,75,0.48853105679154396],[117,-2,76,0.48892260529100895],[117,-2,77,0.48966510593891144],[117,-2,78,0.4911492168903351],[117,-2,79,0.49309685453772545],[117,-1,64,0.4695547930896282],[117,-1,65,0.4703500047326088],[117,-1,66,0.47201091051101685],[117,-1,67,0.47413221932947636],[117,-1,68,0.47597337514162064],[117,-1,69,0.47721461579203606],[117,-1,70,0.477881345897913],[117,-1,71,0.47851353883743286],[117,-1,72,0.4792891852557659],[117,-1,73,0.4799702316522598],[117,-1,74,0.4804238360375166],[117,-1,75,0.48071855679154396],[117,-1,76,0.48111010529100895],[117,-1,77,0.48185260593891144],[117,-1,78,0.4833367168903351],[117,-1,79,0.48528435453772545],[117,0,64,0.4617422930896282],[117,0,65,0.4625375047326088],[117,0,66,0.46419841051101685],[117,0,67,0.46631971932947636],[117,0,68,0.46816087514162064],[117,0,69,0.46940211579203606],[117,0,70,0.470068845897913],[117,0,71,0.47070103883743286],[117,0,72,0.4714766852557659],[117,0,73,0.4721577316522598],[117,0,74,0.4726113360375166],[117,0,75,0.47290605679154396],[117,0,76,0.47329760529100895],[117,0,77,0.47404010593891144],[117,0,78,0.4755242168903351],[117,0,79,0.47747185453772545],[117,1,64,0.4539297930896282],[117,1,65,0.4547250047326088],[117,1,66,0.45638591051101685],[117,1,67,0.45850721932947636],[117,1,68,0.46034837514162064],[117,1,69,0.46158961579203606],[117,1,70,0.462256345897913],[117,1,71,0.46288853883743286],[117,1,72,0.4636641852557659],[117,1,73,0.4643452316522598],[117,1,74,0.4647988360375166],[117,1,75,0.46509355679154396],[117,1,76,0.46548510529100895],[117,1,77,0.46622760593891144],[117,1,78,0.4677117168903351],[117,1,79,0.46965935453772545],[117,2,64,0.4461172930896282],[117,2,65,0.4469125047326088],[117,2,66,0.44857341051101685],[117,2,67,0.45069471932947636],[117,2,68,0.45253587514162064],[117,2,69,0.45377711579203606],[117,2,70,0.454443845897913],[117,2,71,0.45507603883743286],[117,2,72,0.4558516852557659],[117,2,73,0.4565327316522598],[117,2,74,0.4569863360375166],[117,2,75,0.45728105679154396],[117,2,76,0.45767260529100895],[117,2,77,0.45841510593891144],[117,2,78,0.4598992168903351],[117,2,79,0.46184685453772545],[117,3,64,0.4383047930896282],[117,3,65,0.4391000047326088],[117,3,66,0.44076091051101685],[117,3,67,0.44288221932947636],[117,3,68,0.44472337514162064],[117,3,69,0.44596461579203606],[117,3,70,0.446631345897913],[117,3,71,0.44726353883743286],[117,3,72,0.4480391852557659],[117,3,73,0.4487202316522598],[117,3,74,0.4491738360375166],[117,3,75,0.44946855679154396],[117,3,76,0.44986010529100895],[117,3,77,0.45060260593891144],[117,3,78,0.4520867168903351],[117,3,79,0.45403435453772545],[117,4,64,0.4304922930896282],[117,4,65,0.4312875047326088],[117,4,66,0.43294841051101685],[117,4,67,0.43506971932947636],[117,4,68,0.43691087514162064],[117,4,69,0.43815211579203606],[117,4,70,0.438818845897913],[117,4,71,0.43945103883743286],[117,4,72,0.4402266852557659],[117,4,73,0.4409077316522598],[117,4,74,0.4413613360375166],[117,4,75,0.44165605679154396],[117,4,76,0.44204760529100895],[117,4,77,0.44279010593891144],[117,4,78,0.4442742168903351],[117,4,79,0.44622185453772545],[117,5,64,0.4226797930896282],[117,5,65,0.4234750047326088],[117,5,66,0.42513591051101685],[117,5,67,0.42725721932947636],[117,5,68,0.42909837514162064],[117,5,69,0.43033961579203606],[117,5,70,0.431006345897913],[117,5,71,0.43163853883743286],[117,5,72,0.4324141852557659],[117,5,73,0.4330952316522598],[117,5,74,0.4335488360375166],[117,5,75,0.43384355679154396],[117,5,76,0.43423510529100895],[117,5,77,0.43497760593891144],[117,5,78,0.4364617168903351],[117,5,79,0.43840935453772545],[117,6,64,0.4148672930896282],[117,6,65,0.4156625047326088],[117,6,66,0.41732341051101685],[117,6,67,0.41944471932947636],[117,6,68,0.42128587514162064],[117,6,69,0.42252711579203606],[117,6,70,0.423193845897913],[117,6,71,0.42382603883743286],[117,6,72,0.4246016852557659],[117,6,73,0.4252827316522598],[117,6,74,0.4257363360375166],[117,6,75,0.42603105679154396],[117,6,76,0.42642260529100895],[117,6,77,0.42716510593891144],[117,6,78,0.4286492168903351],[117,6,79,0.43059685453772545],[117,7,64,0.4070547930896282],[117,7,65,0.4078500047326088],[117,7,66,0.40951091051101685],[117,7,67,0.41163221932947636],[117,7,68,0.41347337514162064],[117,7,69,0.41471461579203606],[117,7,70,0.415381345897913],[117,7,71,0.41601353883743286],[117,7,72,0.4167891852557659],[117,7,73,0.4174702316522598],[117,7,74,0.4179238360375166],[117,7,75,0.41821855679154396],[117,7,76,0.41861010529100895],[117,7,77,0.41935260593891144],[117,7,78,0.4208367168903351],[117,7,79,0.42278435453772545],[117,8,64,0.3992422930896282],[117,8,65,0.4000375047326088],[117,8,66,0.40169841051101685],[117,8,67,0.40381971932947636],[117,8,68,0.40566087514162064],[117,8,69,0.40690211579203606],[117,8,70,0.407568845897913],[117,8,71,0.40820103883743286],[117,8,72,0.4089766852557659],[117,8,73,0.4096577316522598],[117,8,74,0.4101113360375166],[117,8,75,0.41040605679154396],[117,8,76,0.41079760529100895],[117,8,77,0.41154010593891144],[117,8,78,0.4130242168903351],[117,8,79,0.41497185453772545],[117,9,64,0.3914297930896282],[117,9,65,0.3922250047326088],[117,9,66,0.39388591051101685],[117,9,67,0.39600721932947636],[117,9,68,0.39784837514162064],[117,9,69,0.39908961579203606],[117,9,70,0.399756345897913],[117,9,71,0.40038853883743286],[117,9,72,0.4011641852557659],[117,9,73,0.4018452316522598],[117,9,74,0.4022988360375166],[117,9,75,0.40259355679154396],[117,9,76,0.40298510529100895],[117,9,77,0.40372760593891144],[117,9,78,0.4052117168903351],[117,9,79,0.40715935453772545],[117,10,64,0.3836172930896282],[117,10,65,0.3844125047326088],[117,10,66,0.38607341051101685],[117,10,67,0.38819471932947636],[117,10,68,0.39003587514162064],[117,10,69,0.39127711579203606],[117,10,70,0.391943845897913],[117,10,71,0.39257603883743286],[117,10,72,0.3933516852557659],[117,10,73,0.3940327316522598],[117,10,74,0.3944863360375166],[117,10,75,0.39478105679154396],[117,10,76,0.39517260529100895],[117,10,77,0.39591510593891144],[117,10,78,0.3973992168903351],[117,10,79,0.39934685453772545],[117,11,64,0.3758047930896282],[117,11,65,0.3766000047326088],[117,11,66,0.37826091051101685],[117,11,67,0.38038221932947636],[117,11,68,0.38222337514162064],[117,11,69,0.38346461579203606],[117,11,70,0.384131345897913],[117,11,71,0.38476353883743286],[117,11,72,0.3855391852557659],[117,11,73,0.3862202316522598],[117,11,74,0.3866738360375166],[117,11,75,0.38696855679154396],[117,11,76,0.38736010529100895],[117,11,77,0.38810260593891144],[117,11,78,0.3895867168903351],[117,11,79,0.39153435453772545],[117,12,64,0.3679922930896282],[117,12,65,0.3687875047326088],[117,12,66,0.37044841051101685],[117,12,67,0.37256971932947636],[117,12,68,0.37441087514162064],[117,12,69,0.37565211579203606],[117,12,70,0.376318845897913],[117,12,71,0.37695103883743286],[117,12,72,0.3777266852557659],[117,12,73,0.3784077316522598],[117,12,74,0.3788613360375166],[117,12,75,0.37915605679154396],[117,12,76,0.37954760529100895],[117,12,77,0.38029010593891144],[117,12,78,0.3817742168903351],[117,12,79,0.38372185453772545],[117,13,64,0.3601797930896282],[117,13,65,0.3609750047326088],[117,13,66,0.36263591051101685],[117,13,67,0.36475721932947636],[117,13,68,0.36659837514162064],[117,13,69,0.36783961579203606],[117,13,70,0.368506345897913],[117,13,71,0.36913853883743286],[117,13,72,0.3699141852557659],[117,13,73,0.3705952316522598],[117,13,74,0.3710488360375166],[117,13,75,0.37134355679154396],[117,13,76,0.37173510529100895],[117,13,77,0.37247760593891144],[117,13,78,0.3739617168903351],[117,13,79,0.37590935453772545],[117,14,64,0.3523672930896282],[117,14,65,0.3531625047326088],[117,14,66,0.35482341051101685],[117,14,67,0.35694471932947636],[117,14,68,0.35878587514162064],[117,14,69,0.36002711579203606],[117,14,70,0.360693845897913],[117,14,71,0.36132603883743286],[117,14,72,0.3621016852557659],[117,14,73,0.3627827316522598],[117,14,74,0.3632363360375166],[117,14,75,0.36353105679154396],[117,14,76,0.36392260529100895],[117,14,77,0.36466510593891144],[117,14,78,0.3661492168903351],[117,14,79,0.36809685453772545],[117,15,64,0.3445547930896282],[117,15,65,0.3453500047326088],[117,15,66,0.34701091051101685],[117,15,67,0.34913221932947636],[117,15,68,0.35097337514162064],[117,15,69,0.35221461579203606],[117,15,70,0.352881345897913],[117,15,71,0.35351353883743286],[117,15,72,0.3542891852557659],[117,15,73,0.3549702316522598],[117,15,74,0.3554238360375166],[117,15,75,0.35571855679154396],[117,15,76,0.35611010529100895],[117,15,77,0.35685260593891144],[117,15,78,0.3583367168903351],[117,15,79,0.36028435453772545],[117,16,64,0.3367422930896282],[117,16,65,0.3375375047326088],[117,16,66,0.33919841051101685],[117,16,67,0.34131971932947636],[117,16,68,0.34316087514162064],[117,16,69,0.34440211579203606],[117,16,70,0.345068845897913],[117,16,71,0.34570103883743286],[117,16,72,0.3464766852557659],[117,16,73,0.3471577316522598],[117,16,74,0.3476113360375166],[117,16,75,0.34790605679154396],[117,16,76,0.34829760529100895],[117,16,77,0.34904010593891144],[117,16,78,0.3505242168903351],[117,16,79,0.35247185453772545],[117,17,64,0.3289297930896282],[117,17,65,0.3297250047326088],[117,17,66,0.33138591051101685],[117,17,67,0.33350721932947636],[117,17,68,0.33534837514162064],[117,17,69,0.33658961579203606],[117,17,70,0.337256345897913],[117,17,71,0.33788853883743286],[117,17,72,0.3386641852557659],[117,17,73,0.3393452316522598],[117,17,74,0.3397988360375166],[117,17,75,0.34009355679154396],[117,17,76,0.34048510529100895],[117,17,77,0.34122760593891144],[117,17,78,0.3427117168903351],[117,17,79,0.34465935453772545],[117,18,64,0.3211172930896282],[117,18,65,0.3219125047326088],[117,18,66,0.32357341051101685],[117,18,67,0.32569471932947636],[117,18,68,0.32753587514162064],[117,18,69,0.32877711579203606],[117,18,70,0.329443845897913],[117,18,71,0.33007603883743286],[117,18,72,0.3308516852557659],[117,18,73,0.3315327316522598],[117,18,74,0.3319863360375166],[117,18,75,0.33228105679154396],[117,18,76,0.33267260529100895],[117,18,77,0.33341510593891144],[117,18,78,0.3348992168903351],[117,18,79,0.33684685453772545],[117,19,64,0.3133047930896282],[117,19,65,0.3141000047326088],[117,19,66,0.31576091051101685],[117,19,67,0.31788221932947636],[117,19,68,0.31972337514162064],[117,19,69,0.32096461579203606],[117,19,70,0.321631345897913],[117,19,71,0.32226353883743286],[117,19,72,0.3230391852557659],[117,19,73,0.3237202316522598],[117,19,74,0.3241738360375166],[117,19,75,0.32446855679154396],[117,19,76,0.32486010529100895],[117,19,77,0.32560260593891144],[117,19,78,0.3270867168903351],[117,19,79,0.32903435453772545],[117,20,64,0.3054922930896282],[117,20,65,0.3062875047326088],[117,20,66,0.30794841051101685],[117,20,67,0.31006971932947636],[117,20,68,0.31191087514162064],[117,20,69,0.31315211579203606],[117,20,70,0.313818845897913],[117,20,71,0.31445103883743286],[117,20,72,0.3152266852557659],[117,20,73,0.3159077316522598],[117,20,74,0.3163613360375166],[117,20,75,0.31665605679154396],[117,20,76,0.31704760529100895],[117,20,77,0.31779010593891144],[117,20,78,0.3192742168903351],[117,20,79,0.32122185453772545],[117,21,64,0.2976797930896282],[117,21,65,0.2984750047326088],[117,21,66,0.30013591051101685],[117,21,67,0.30225721932947636],[117,21,68,0.30409837514162064],[117,21,69,0.30533961579203606],[117,21,70,0.306006345897913],[117,21,71,0.30663853883743286],[117,21,72,0.3074141852557659],[117,21,73,0.3080952316522598],[117,21,74,0.3085488360375166],[117,21,75,0.30884355679154396],[117,21,76,0.30923510529100895],[117,21,77,0.30997760593891144],[117,21,78,0.3114617168903351],[117,21,79,0.31340935453772545],[117,22,64,0.2898672930896282],[117,22,65,0.2906625047326088],[117,22,66,0.29232341051101685],[117,22,67,0.29444471932947636],[117,22,68,0.29628587514162064],[117,22,69,0.29752711579203606],[117,22,70,0.298193845897913],[117,22,71,0.29882603883743286],[117,22,72,0.2996016852557659],[117,22,73,0.3002827316522598],[117,22,74,0.3007363360375166],[117,22,75,0.30103105679154396],[117,22,76,0.30142260529100895],[117,22,77,0.30216510593891144],[117,22,78,0.3036492168903351],[117,22,79,0.30559685453772545],[117,23,64,0.2820547930896282],[117,23,65,0.2828500047326088],[117,23,66,0.28451091051101685],[117,23,67,0.28663221932947636],[117,23,68,0.28847337514162064],[117,23,69,0.28971461579203606],[117,23,70,0.290381345897913],[117,23,71,0.29101353883743286],[117,23,72,0.2917891852557659],[117,23,73,0.2924702316522598],[117,23,74,0.2929238360375166],[117,23,75,0.29321855679154396],[117,23,76,0.29361010529100895],[117,23,77,0.29435260593891144],[117,23,78,0.2958367168903351],[117,23,79,0.29778435453772545],[117,24,64,0.2742422930896282],[117,24,65,0.2750375047326088],[117,24,66,0.27669841051101685],[117,24,67,0.27881971932947636],[117,24,68,0.28066087514162064],[117,24,69,0.28190211579203606],[117,24,70,0.282568845897913],[117,24,71,0.28320103883743286],[117,24,72,0.2839766852557659],[117,24,73,0.2846577316522598],[117,24,74,0.2851113360375166],[117,24,75,0.28540605679154396],[117,24,76,0.28579760529100895],[117,24,77,0.28654010593891144],[117,24,78,0.2880242168903351],[117,24,79,0.28997185453772545],[117,25,64,0.2664297930896282],[117,25,65,0.2672250047326088],[117,25,66,0.26888591051101685],[117,25,67,0.27100721932947636],[117,25,68,0.27284837514162064],[117,25,69,0.27408961579203606],[117,25,70,0.274756345897913],[117,25,71,0.27538853883743286],[117,25,72,0.2761641852557659],[117,25,73,0.2768452316522598],[117,25,74,0.2772988360375166],[117,25,75,0.27759355679154396],[117,25,76,0.27798510529100895],[117,25,77,0.27872760593891144],[117,25,78,0.2802117168903351],[117,25,79,0.28215935453772545],[117,26,64,0.2586172930896282],[117,26,65,0.2594125047326088],[117,26,66,0.26107341051101685],[117,26,67,0.26319471932947636],[117,26,68,0.26503587514162064],[117,26,69,0.26627711579203606],[117,26,70,0.266943845897913],[117,26,71,0.26757603883743286],[117,26,72,0.2683516852557659],[117,26,73,0.2690327316522598],[117,26,74,0.2694863360375166],[117,26,75,0.26978105679154396],[117,26,76,0.27017260529100895],[117,26,77,0.27091510593891144],[117,26,78,0.2723992168903351],[117,26,79,0.27434685453772545],[117,27,64,0.2508047930896282],[117,27,65,0.2516000047326088],[117,27,66,0.25326091051101685],[117,27,67,0.25538221932947636],[117,27,68,0.25722337514162064],[117,27,69,0.25846461579203606],[117,27,70,0.259131345897913],[117,27,71,0.25976353883743286],[117,27,72,0.2605391852557659],[117,27,73,0.2612202316522598],[117,27,74,0.2616738360375166],[117,27,75,0.26196855679154396],[117,27,76,0.26236010529100895],[117,27,77,0.26310260593891144],[117,27,78,0.2645867168903351],[117,27,79,0.26653435453772545],[117,28,64,0.24299229308962822],[117,28,65,0.2437875047326088],[117,28,66,0.24544841051101685],[117,28,67,0.24756971932947636],[117,28,68,0.24941087514162064],[117,28,69,0.25065211579203606],[117,28,70,0.251318845897913],[117,28,71,0.25195103883743286],[117,28,72,0.2527266852557659],[117,28,73,0.2534077316522598],[117,28,74,0.2538613360375166],[117,28,75,0.25415605679154396],[117,28,76,0.25454760529100895],[117,28,77,0.25529010593891144],[117,28,78,0.2567742168903351],[117,28,79,0.25872185453772545],[117,29,64,0.23517979308962822],[117,29,65,0.2359750047326088],[117,29,66,0.23763591051101685],[117,29,67,0.23975721932947636],[117,29,68,0.24159837514162064],[117,29,69,0.24283961579203606],[117,29,70,0.24350634589791298],[117,29,71,0.24413853883743286],[117,29,72,0.24491418525576591],[117,29,73,0.24559523165225983],[117,29,74,0.2460488360375166],[117,29,75,0.24634355679154396],[117,29,76,0.24673510529100895],[117,29,77,0.24747760593891144],[117,29,78,0.24896171689033508],[117,29,79,0.25090935453772545],[117,30,64,0.22736729308962822],[117,30,65,0.2281625047326088],[117,30,66,0.22982341051101685],[117,30,67,0.23194471932947636],[117,30,68,0.23378587514162064],[117,30,69,0.23502711579203606],[117,30,70,0.23569384589791298],[117,30,71,0.23632603883743286],[117,30,72,0.23710168525576591],[117,30,73,0.23778273165225983],[117,30,74,0.2382363360375166],[117,30,75,0.23853105679154396],[117,30,76,0.23892260529100895],[117,30,77,0.23966510593891144],[117,30,78,0.24114921689033508],[117,30,79,0.24309685453772545],[117,31,64,0.21955479308962822],[117,31,65,0.2203500047326088],[117,31,66,0.22201091051101685],[117,31,67,0.22413221932947636],[117,31,68,0.22597337514162064],[117,31,69,0.22721461579203606],[117,31,70,0.22788134589791298],[117,31,71,0.22851353883743286],[117,31,72,0.22928918525576591],[117,31,73,0.22997023165225983],[117,31,74,0.2304238360375166],[117,31,75,0.23071855679154396],[117,31,76,0.23111010529100895],[117,31,77,0.23185260593891144],[117,31,78,0.23333671689033508],[117,31,79,0.23528435453772545],[117,32,64,0.21174229308962822],[117,32,65,0.2125375047326088],[117,32,66,0.21419841051101685],[117,32,67,0.21631971932947636],[117,32,68,0.21816087514162064],[117,32,69,0.21940211579203606],[117,32,70,0.22006884589791298],[117,32,71,0.22070103883743286],[117,32,72,0.22147668525576591],[117,32,73,0.22215773165225983],[117,32,74,0.2226113360375166],[117,32,75,0.22290605679154396],[117,32,76,0.22329760529100895],[117,32,77,0.22404010593891144],[117,32,78,0.22552421689033508],[117,32,79,0.22747185453772545],[117,33,64,0.20392979308962822],[117,33,65,0.2047250047326088],[117,33,66,0.20638591051101685],[117,33,67,0.20850721932947636],[117,33,68,0.21034837514162064],[117,33,69,0.21158961579203606],[117,33,70,0.21225634589791298],[117,33,71,0.21288853883743286],[117,33,72,0.21366418525576591],[117,33,73,0.21434523165225983],[117,33,74,0.2147988360375166],[117,33,75,0.21509355679154396],[117,33,76,0.21548510529100895],[117,33,77,0.21622760593891144],[117,33,78,0.21771171689033508],[117,33,79,0.21965935453772545],[117,34,64,0.19611729308962822],[117,34,65,0.1969125047326088],[117,34,66,0.19857341051101685],[117,34,67,0.20069471932947636],[117,34,68,0.20253587514162064],[117,34,69,0.20377711579203606],[117,34,70,0.20444384589791298],[117,34,71,0.20507603883743286],[117,34,72,0.20585168525576591],[117,34,73,0.20653273165225983],[117,34,74,0.2069863360375166],[117,34,75,0.20728105679154396],[117,34,76,0.20767260529100895],[117,34,77,0.20841510593891144],[117,34,78,0.20989921689033508],[117,34,79,0.21184685453772545],[117,35,64,0.18830479308962822],[117,35,65,0.1891000047326088],[117,35,66,0.19076091051101685],[117,35,67,0.19288221932947636],[117,35,68,0.19472337514162064],[117,35,69,0.19596461579203606],[117,35,70,0.19663134589791298],[117,35,71,0.19726353883743286],[117,35,72,0.19803918525576591],[117,35,73,0.19872023165225983],[117,35,74,0.1991738360375166],[117,35,75,0.19946855679154396],[117,35,76,0.19986010529100895],[117,35,77,0.20060260593891144],[117,35,78,0.20208671689033508],[117,35,79,0.20403435453772545],[117,36,64,0.18049229308962822],[117,36,65,0.1812875047326088],[117,36,66,0.18294841051101685],[117,36,67,0.18506971932947636],[117,36,68,0.18691087514162064],[117,36,69,0.18815211579203606],[117,36,70,0.18881884589791298],[117,36,71,0.18945103883743286],[117,36,72,0.19022668525576591],[117,36,73,0.19090773165225983],[117,36,74,0.1913613360375166],[117,36,75,0.19165605679154396],[117,36,76,0.19204760529100895],[117,36,77,0.19279010593891144],[117,36,78,0.19427421689033508],[117,36,79,0.19622185453772545],[117,37,64,0.17267979308962822],[117,37,65,0.1734750047326088],[117,37,66,0.17513591051101685],[117,37,67,0.17725721932947636],[117,37,68,0.17909837514162064],[117,37,69,0.18033961579203606],[117,37,70,0.18100634589791298],[117,37,71,0.18163853883743286],[117,37,72,0.18241418525576591],[117,37,73,0.18309523165225983],[117,37,74,0.1835488360375166],[117,37,75,0.18384355679154396],[117,37,76,0.18423510529100895],[117,37,77,0.18497760593891144],[117,37,78,0.18646171689033508],[117,37,79,0.18840935453772545],[117,38,64,0.16486729308962822],[117,38,65,0.1656625047326088],[117,38,66,0.16732341051101685],[117,38,67,0.16944471932947636],[117,38,68,0.17128587514162064],[117,38,69,0.17252711579203606],[117,38,70,0.17319384589791298],[117,38,71,0.17382603883743286],[117,38,72,0.17460168525576591],[117,38,73,0.17528273165225983],[117,38,74,0.1757363360375166],[117,38,75,0.17603105679154396],[117,38,76,0.17642260529100895],[117,38,77,0.17716510593891144],[117,38,78,0.17864921689033508],[117,38,79,0.18059685453772545],[117,39,64,0.15705479308962822],[117,39,65,0.1578500047326088],[117,39,66,0.15951091051101685],[117,39,67,0.16163221932947636],[117,39,68,0.16347337514162064],[117,39,69,0.16471461579203606],[117,39,70,0.16538134589791298],[117,39,71,0.16601353883743286],[117,39,72,0.16678918525576591],[117,39,73,0.16747023165225983],[117,39,74,0.1679238360375166],[117,39,75,0.16821855679154396],[117,39,76,0.16861010529100895],[117,39,77,0.16935260593891144],[117,39,78,0.17083671689033508],[117,39,79,0.17278435453772545],[117,40,64,0.14924229308962822],[117,40,65,0.1500375047326088],[117,40,66,0.15169841051101685],[117,40,67,0.15381971932947636],[117,40,68,0.15566087514162064],[117,40,69,0.15690211579203606],[117,40,70,0.15756884589791298],[117,40,71,0.15820103883743286],[117,40,72,0.15897668525576591],[117,40,73,0.15965773165225983],[117,40,74,0.1601113360375166],[117,40,75,0.16040605679154396],[117,40,76,0.16079760529100895],[117,40,77,0.16154010593891144],[117,40,78,0.16302421689033508],[117,40,79,0.16497185453772545],[117,41,64,0.14142979308962822],[117,41,65,0.1422250047326088],[117,41,66,0.14388591051101685],[117,41,67,0.14600721932947636],[117,41,68,0.14784837514162064],[117,41,69,0.14908961579203606],[117,41,70,0.14975634589791298],[117,41,71,0.15038853883743286],[117,41,72,0.15116418525576591],[117,41,73,0.15184523165225983],[117,41,74,0.1522988360375166],[117,41,75,0.15259355679154396],[117,41,76,0.15298510529100895],[117,41,77,0.15372760593891144],[117,41,78,0.15521171689033508],[117,41,79,0.15715935453772545],[117,42,64,0.13361729308962822],[117,42,65,0.1344125047326088],[117,42,66,0.13607341051101685],[117,42,67,0.13819471932947636],[117,42,68,0.14003587514162064],[117,42,69,0.14127711579203606],[117,42,70,0.14194384589791298],[117,42,71,0.14257603883743286],[117,42,72,0.14335168525576591],[117,42,73,0.14403273165225983],[117,42,74,0.1444863360375166],[117,42,75,0.14478105679154396],[117,42,76,0.14517260529100895],[117,42,77,0.14591510593891144],[117,42,78,0.14739921689033508],[117,42,79,0.14934685453772545],[117,43,64,0.12580479308962822],[117,43,65,0.1266000047326088],[117,43,66,0.12826091051101685],[117,43,67,0.13038221932947636],[117,43,68,0.13222337514162064],[117,43,69,0.13346461579203606],[117,43,70,0.13413134589791298],[117,43,71,0.13476353883743286],[117,43,72,0.13553918525576591],[117,43,73,0.13622023165225983],[117,43,74,0.1366738360375166],[117,43,75,0.13696855679154396],[117,43,76,0.13736010529100895],[117,43,77,0.13810260593891144],[117,43,78,0.13958671689033508],[117,43,79,0.14153435453772545],[117,44,64,0.11799229308962822],[117,44,65,0.1187875047326088],[117,44,66,0.12044841051101685],[117,44,67,0.12256971932947636],[117,44,68,0.12441087514162064],[117,44,69,0.12565211579203606],[117,44,70,0.12631884589791298],[117,44,71,0.12695103883743286],[117,44,72,0.12772668525576591],[117,44,73,0.12840773165225983],[117,44,74,0.1288613360375166],[117,44,75,0.12915605679154396],[117,44,76,0.12954760529100895],[117,44,77,0.13029010593891144],[117,44,78,0.13177421689033508],[117,44,79,0.13372185453772545],[117,45,64,0.11017979308962822],[117,45,65,0.1109750047326088],[117,45,66,0.11263591051101685],[117,45,67,0.11475721932947636],[117,45,68,0.11659837514162064],[117,45,69,0.11783961579203606],[117,45,70,0.11850634589791298],[117,45,71,0.11913853883743286],[117,45,72,0.11991418525576591],[117,45,73,0.12059523165225983],[117,45,74,0.1210488360375166],[117,45,75,0.12134355679154396],[117,45,76,0.12173510529100895],[117,45,77,0.12247760593891144],[117,45,78,0.12396171689033508],[117,45,79,0.12590935453772545],[117,46,64,0.10236729308962822],[117,46,65,0.1031625047326088],[117,46,66,0.10482341051101685],[117,46,67,0.10694471932947636],[117,46,68,0.10878587514162064],[117,46,69,0.11002711579203606],[117,46,70,0.11069384589791298],[117,46,71,0.11132603883743286],[117,46,72,0.11210168525576591],[117,46,73,0.11278273165225983],[117,46,74,0.1132363360375166],[117,46,75,0.11353105679154396],[117,46,76,0.11392260529100895],[117,46,77,0.11466510593891144],[117,46,78,0.11614921689033508],[117,46,79,0.11809685453772545],[117,47,64,0.09455479308962822],[117,47,65,0.0953500047326088],[117,47,66,0.09701091051101685],[117,47,67,0.09913221932947636],[117,47,68,0.10097337514162064],[117,47,69,0.10221461579203606],[117,47,70,0.10288134589791298],[117,47,71,0.10351353883743286],[117,47,72,0.10428918525576591],[117,47,73,0.10497023165225983],[117,47,74,0.1054238360375166],[117,47,75,0.10571855679154396],[117,47,76,0.10611010529100895],[117,47,77,0.10685260593891144],[117,47,78,0.10833671689033508],[117,47,79,0.11028435453772545],[117,48,64,0.08674229308962822],[117,48,65,0.0875375047326088],[117,48,66,0.08919841051101685],[117,48,67,0.09131971932947636],[117,48,68,0.09316087514162064],[117,48,69,0.09440211579203606],[117,48,70,0.09506884589791298],[117,48,71,0.09570103883743286],[117,48,72,0.09647668525576591],[117,48,73,0.09715773165225983],[117,48,74,0.0976113360375166],[117,48,75,0.09790605679154396],[117,48,76,0.09829760529100895],[117,48,77,0.09904010593891144],[117,48,78,0.10052421689033508],[117,48,79,0.10247185453772545],[117,49,64,0.07892979308962822],[117,49,65,0.0797250047326088],[117,49,66,0.08138591051101685],[117,49,67,0.08350721932947636],[117,49,68,0.08534837514162064],[117,49,69,0.08658961579203606],[117,49,70,0.08725634589791298],[117,49,71,0.08788853883743286],[117,49,72,0.08866418525576591],[117,49,73,0.08934523165225983],[117,49,74,0.0897988360375166],[117,49,75,0.09009355679154396],[117,49,76,0.09048510529100895],[117,49,77,0.09122760593891144],[117,49,78,0.09271171689033508],[117,49,79,0.09465935453772545],[117,50,64,0.07111729308962822],[117,50,65,0.0719125047326088],[117,50,66,0.07357341051101685],[117,50,67,0.07569471932947636],[117,50,68,0.07753587514162064],[117,50,69,0.07877711579203606],[117,50,70,0.07944384589791298],[117,50,71,0.08007603883743286],[117,50,72,0.08085168525576591],[117,50,73,0.08153273165225983],[117,50,74,0.0819863360375166],[117,50,75,0.08228105679154396],[117,50,76,0.08267260529100895],[117,50,77,0.08341510593891144],[117,50,78,0.08489921689033508],[117,50,79,0.08684685453772545],[117,51,64,0.06330479308962822],[117,51,65,0.0641000047326088],[117,51,66,0.06576091051101685],[117,51,67,0.06788221932947636],[117,51,68,0.06972337514162064],[117,51,69,0.07096461579203606],[117,51,70,0.07163134589791298],[117,51,71,0.07226353883743286],[117,51,72,0.07303918525576591],[117,51,73,0.07372023165225983],[117,51,74,0.0741738360375166],[117,51,75,0.07446855679154396],[117,51,76,0.07486010529100895],[117,51,77,0.07560260593891144],[117,51,78,0.07708671689033508],[117,51,79,0.07903435453772545],[117,52,64,0.05549229308962822],[117,52,65,0.056287504732608795],[117,52,66,0.057948410511016846],[117,52,67,0.060069719329476357],[117,52,68,0.061910875141620636],[117,52,69,0.06315211579203606],[117,52,70,0.06381884589791298],[117,52,71,0.06445103883743286],[117,52,72,0.06522668525576591],[117,52,73,0.06590773165225983],[117,52,74,0.0663613360375166],[117,52,75,0.06665605679154396],[117,52,76,0.06704760529100895],[117,52,77,0.06779010593891144],[117,52,78,0.06927421689033508],[117,52,79,0.07122185453772545],[117,53,64,0.04767979308962822],[117,53,65,0.048475004732608795],[117,53,66,0.050135910511016846],[117,53,67,0.052257219329476357],[117,53,68,0.054098375141620636],[117,53,69,0.055339615792036057],[117,53,70,0.05600634589791298],[117,53,71,0.05663853883743286],[117,53,72,0.057414185255765915],[117,53,73,0.05809523165225983],[117,53,74,0.058548836037516594],[117,53,75,0.05884355679154396],[117,53,76,0.05923510529100895],[117,53,77,0.05997760593891144],[117,53,78,0.06146171689033508],[117,53,79,0.06340935453772545],[117,54,64,0.03986729308962822],[117,54,65,0.040662504732608795],[117,54,66,0.042323410511016846],[117,54,67,0.044444719329476357],[117,54,68,0.046285875141620636],[117,54,69,0.047527115792036057],[117,54,70,0.04819384589791298],[117,54,71,0.04882603883743286],[117,54,72,0.049601685255765915],[117,54,73,0.05028273165225983],[117,54,74,0.050736336037516594],[117,54,75,0.05103105679154396],[117,54,76,0.05142260529100895],[117,54,77,0.05216510593891144],[117,54,78,0.05364921689033508],[117,54,79,0.05559685453772545],[117,55,64,0.03205479308962822],[117,55,65,0.032850004732608795],[117,55,66,0.034510910511016846],[117,55,67,0.036632219329476357],[117,55,68,0.038473375141620636],[117,55,69,0.039714615792036057],[117,55,70,0.04038134589791298],[117,55,71,0.04101353883743286],[117,55,72,0.041789185255765915],[117,55,73,0.04247023165225983],[117,55,74,0.042923836037516594],[117,55,75,0.04321855679154396],[117,55,76,0.04361010529100895],[117,55,77,0.04435260593891144],[117,55,78,0.04583671689033508],[117,55,79,0.04778435453772545],[117,56,64,0.02424229308962822],[117,56,65,0.025037504732608795],[117,56,66,0.026698410511016846],[117,56,67,0.028819719329476357],[117,56,68,0.030660875141620636],[117,56,69,0.031902115792036057],[117,56,70,0.03256884589791298],[117,56,71,0.03320103883743286],[117,56,72,0.033976685255765915],[117,56,73,0.03465773165225983],[117,56,74,0.035111336037516594],[117,56,75,0.03540605679154396],[117,56,76,0.03579760529100895],[117,56,77,0.03654010593891144],[117,56,78,0.03802421689033508],[117,56,79,0.03997185453772545],[117,57,64,0.01642979308962822],[117,57,65,0.017225004732608795],[117,57,66,0.018885910511016846],[117,57,67,0.021007219329476357],[117,57,68,0.022848375141620636],[117,57,69,0.024089615792036057],[117,57,70,0.02475634589791298],[117,57,71,0.02538853883743286],[117,57,72,0.026164185255765915],[117,57,73,0.026845231652259827],[117,57,74,0.027298836037516594],[117,57,75,0.02759355679154396],[117,57,76,0.02798510529100895],[117,57,77,0.028727605938911438],[117,57,78,0.030211716890335083],[117,57,79,0.03215935453772545],[117,58,64,0.00861729308962822],[117,58,65,0.009412504732608795],[117,58,66,0.011073410511016846],[117,58,67,0.013194719329476357],[117,58,68,0.015035875141620636],[117,58,69,0.016277115792036057],[117,58,70,0.01694384589791298],[117,58,71,0.01757603883743286],[117,58,72,0.018351685255765915],[117,58,73,0.019032731652259827],[117,58,74,0.019486336037516594],[117,58,75,0.01978105679154396],[117,58,76,0.02017260529100895],[117,58,77,0.020915105938911438],[117,58,78,0.022399216890335083],[117,58,79,0.02434685453772545],[117,59,64,8.047930896282196E-4],[117,59,65,0.0016000047326087952],[117,59,66,0.0032609105110168457],[117,59,67,0.0053822193294763565],[117,59,68,0.007223375141620636],[117,59,69,0.008464615792036057],[117,59,70,0.009131345897912979],[117,59,71,0.009763538837432861],[117,59,72,0.010539185255765915],[117,59,73,0.011220231652259827],[117,59,74,0.011673836037516594],[117,59,75,0.01196855679154396],[117,59,76,0.01236010529100895],[117,59,77,0.013102605938911438],[117,59,78,0.014586716890335083],[117,59,79,0.01653435453772545],[117,60,64,-0.00700770691037178],[117,60,65,-0.006212495267391205],[117,60,66,-0.004551589488983154],[117,60,67,-0.0024302806705236435],[117,60,68,-5.89124858379364E-4],[117,60,69,6.521157920360565E-4],[117,60,70,0.0013188458979129791],[117,60,71,0.0019510388374328613],[117,60,72,0.002726685255765915],[117,60,73,0.0034077316522598267],[117,60,74,0.003861336037516594],[117,60,75,0.004156056791543961],[117,60,76,0.004547605291008949],[117,60,77,0.005290105938911438],[117,60,78,0.006774216890335083],[117,60,79,0.008721854537725449],[117,61,64,-0.01482020691037178],[117,61,65,-0.014024995267391205],[117,61,66,-0.012364089488983154],[117,61,67,-0.010242780670523643],[117,61,68,-0.008401624858379364],[117,61,69,-0.0071603842079639435],[117,61,70,-0.006493654102087021],[117,61,71,-0.005861461162567139],[117,61,72,-0.005085814744234085],[117,61,73,-0.004404768347740173],[117,61,74,-0.003951163962483406],[117,61,75,-0.0036564432084560394],[117,61,76,-0.0032648947089910507],[117,61,77,-0.002522394061088562],[117,61,78,-0.001038283109664917],[117,61,79,9.093545377254486E-4],[117,62,64,-0.02263270691037178],[117,62,65,-0.021837495267391205],[117,62,66,-0.020176589488983154],[117,62,67,-0.018055280670523643],[117,62,68,-0.016214124858379364],[117,62,69,-0.014972884207963943],[117,62,70,-0.014306154102087021],[117,62,71,-0.013673961162567139],[117,62,72,-0.012898314744234085],[117,62,73,-0.012217268347740173],[117,62,74,-0.011763663962483406],[117,62,75,-0.01146894320845604],[117,62,76,-0.01107739470899105],[117,62,77,-0.010334894061088562],[117,62,78,-0.008850783109664917],[117,62,79,-0.006903145462274551],[117,63,64,-0.03044520691037178],[117,63,65,-0.029649995267391205],[117,63,66,-0.027989089488983154],[117,63,67,-0.025867780670523643],[117,63,68,-0.024026624858379364],[117,63,69,-0.022785384207963943],[117,63,70,-0.02211865410208702],[117,63,71,-0.02148646116256714],[117,63,72,-0.020710814744234085],[117,63,73,-0.020029768347740173],[117,63,74,-0.019576163962483406],[117,63,75,-0.01928144320845604],[117,63,76,-0.01888989470899105],[117,63,77,-0.018147394061088562],[117,63,78,-0.016663283109664917],[117,63,79,-0.014715645462274551],[117,64,64,-0.03825770691037178],[117,64,65,-0.037462495267391205],[117,64,66,-0.035801589488983154],[117,64,67,-0.033680280670523643],[117,64,68,-0.031839124858379364],[117,64,69,-0.030597884207963943],[117,64,70,-0.02993115410208702],[117,64,71,-0.02929896116256714],[117,64,72,-0.028523314744234085],[117,64,73,-0.027842268347740173],[117,64,74,-0.027388663962483406],[117,64,75,-0.02709394320845604],[117,64,76,-0.02670239470899105],[117,64,77,-0.025959894061088562],[117,64,78,-0.024475783109664917],[117,64,79,-0.02252814546227455],[117,65,64,-0.04607020691037178],[117,65,65,-0.045274995267391205],[117,65,66,-0.043614089488983154],[117,65,67,-0.041492780670523643],[117,65,68,-0.039651624858379364],[117,65,69,-0.038410384207963943],[117,65,70,-0.03774365410208702],[117,65,71,-0.03711146116256714],[117,65,72,-0.036335814744234085],[117,65,73,-0.03565476834774017],[117,65,74,-0.035201163962483406],[117,65,75,-0.03490644320845604],[117,65,76,-0.03451489470899105],[117,65,77,-0.03377239406108856],[117,65,78,-0.03228828310966492],[117,65,79,-0.03034064546227455],[117,66,64,-0.05388270691037178],[117,66,65,-0.053087495267391205],[117,66,66,-0.051426589488983154],[117,66,67,-0.049305280670523643],[117,66,68,-0.047464124858379364],[117,66,69,-0.046222884207963943],[117,66,70,-0.04555615410208702],[117,66,71,-0.04492396116256714],[117,66,72,-0.044148314744234085],[117,66,73,-0.04346726834774017],[117,66,74,-0.043013663962483406],[117,66,75,-0.04271894320845604],[117,66,76,-0.04232739470899105],[117,66,77,-0.04158489406108856],[117,66,78,-0.04010078310966492],[117,66,79,-0.03815314546227455],[117,67,64,-0.06169520691037178],[117,67,65,-0.060899995267391205],[117,67,66,-0.059239089488983154],[117,67,67,-0.057117780670523643],[117,67,68,-0.055276624858379364],[117,67,69,-0.054035384207963943],[117,67,70,-0.05336865410208702],[117,67,71,-0.05273646116256714],[117,67,72,-0.051960814744234085],[117,67,73,-0.05127976834774017],[117,67,74,-0.050826163962483406],[117,67,75,-0.05053144320845604],[117,67,76,-0.05013989470899105],[117,67,77,-0.04939739406108856],[117,67,78,-0.04791328310966492],[117,67,79,-0.04596564546227455],[117,68,64,-0.06950770691037178],[117,68,65,-0.0687124952673912],[117,68,66,-0.06705158948898315],[117,68,67,-0.06493028067052364],[117,68,68,-0.06308912485837936],[117,68,69,-0.061847884207963943],[117,68,70,-0.06118115410208702],[117,68,71,-0.06054896116256714],[117,68,72,-0.059773314744234085],[117,68,73,-0.05909226834774017],[117,68,74,-0.058638663962483406],[117,68,75,-0.05834394320845604],[117,68,76,-0.05795239470899105],[117,68,77,-0.05720989406108856],[117,68,78,-0.05572578310966492],[117,68,79,-0.05377814546227455],[117,69,64,-0.07732020691037178],[117,69,65,-0.0765249952673912],[117,69,66,-0.07486408948898315],[117,69,67,-0.07274278067052364],[117,69,68,-0.07090162485837936],[117,69,69,-0.06966038420796394],[117,69,70,-0.06899365410208702],[117,69,71,-0.06836146116256714],[117,69,72,-0.06758581474423409],[117,69,73,-0.06690476834774017],[117,69,74,-0.0664511639624834],[117,69,75,-0.06615644320845604],[117,69,76,-0.06576489470899105],[117,69,77,-0.06502239406108856],[117,69,78,-0.06353828310966492],[117,69,79,-0.06159064546227455],[117,70,64,-0.08513270691037178],[117,70,65,-0.0843374952673912],[117,70,66,-0.08267658948898315],[117,70,67,-0.08055528067052364],[117,70,68,-0.07871412485837936],[117,70,69,-0.07747288420796394],[117,70,70,-0.07680615410208702],[117,70,71,-0.07617396116256714],[117,70,72,-0.07539831474423409],[117,70,73,-0.07471726834774017],[117,70,74,-0.0742636639624834],[117,70,75,-0.07396894320845604],[117,70,76,-0.07357739470899105],[117,70,77,-0.07283489406108856],[117,70,78,-0.07135078310966492],[117,70,79,-0.06940314546227455],[117,71,64,-0.09294520691037178],[117,71,65,-0.0921499952673912],[117,71,66,-0.09048908948898315],[117,71,67,-0.08836778067052364],[117,71,68,-0.08652662485837936],[117,71,69,-0.08528538420796394],[117,71,70,-0.08461865410208702],[117,71,71,-0.08398646116256714],[117,71,72,-0.08321081474423409],[117,71,73,-0.08252976834774017],[117,71,74,-0.0820761639624834],[117,71,75,-0.08178144320845604],[117,71,76,-0.08138989470899105],[117,71,77,-0.08064739406108856],[117,71,78,-0.07916328310966492],[117,71,79,-0.07721564546227455],[117,72,64,-0.10075770691037178],[117,72,65,-0.0999624952673912],[117,72,66,-0.09830158948898315],[117,72,67,-0.09618028067052364],[117,72,68,-0.09433912485837936],[117,72,69,-0.09309788420796394],[117,72,70,-0.09243115410208702],[117,72,71,-0.09179896116256714],[117,72,72,-0.09102331474423409],[117,72,73,-0.09034226834774017],[117,72,74,-0.0898886639624834],[117,72,75,-0.08959394320845604],[117,72,76,-0.08920239470899105],[117,72,77,-0.08845989406108856],[117,72,78,-0.08697578310966492],[117,72,79,-0.08502814546227455],[117,73,64,-0.10857020691037178],[117,73,65,-0.1077749952673912],[117,73,66,-0.10611408948898315],[117,73,67,-0.10399278067052364],[117,73,68,-0.10215162485837936],[117,73,69,-0.10091038420796394],[117,73,70,-0.10024365410208702],[117,73,71,-0.09961146116256714],[117,73,72,-0.09883581474423409],[117,73,73,-0.09815476834774017],[117,73,74,-0.0977011639624834],[117,73,75,-0.09740644320845604],[117,73,76,-0.09701489470899105],[117,73,77,-0.09627239406108856],[117,73,78,-0.09478828310966492],[117,73,79,-0.09284064546227455],[117,74,64,-0.11638270691037178],[117,74,65,-0.1155874952673912],[117,74,66,-0.11392658948898315],[117,74,67,-0.11180528067052364],[117,74,68,-0.10996412485837936],[117,74,69,-0.10872288420796394],[117,74,70,-0.10805615410208702],[117,74,71,-0.10742396116256714],[117,74,72,-0.10664831474423409],[117,74,73,-0.10596726834774017],[117,74,74,-0.1055136639624834],[117,74,75,-0.10521894320845604],[117,74,76,-0.10482739470899105],[117,74,77,-0.10408489406108856],[117,74,78,-0.10260078310966492],[117,74,79,-0.10065314546227455],[117,75,64,-0.12419520691037178],[117,75,65,-0.1233999952673912],[117,75,66,-0.12173908948898315],[117,75,67,-0.11961778067052364],[117,75,68,-0.11777662485837936],[117,75,69,-0.11653538420796394],[117,75,70,-0.11586865410208702],[117,75,71,-0.11523646116256714],[117,75,72,-0.11446081474423409],[117,75,73,-0.11377976834774017],[117,75,74,-0.1133261639624834],[117,75,75,-0.11303144320845604],[117,75,76,-0.11263989470899105],[117,75,77,-0.11189739406108856],[117,75,78,-0.11041328310966492],[117,75,79,-0.10846564546227455],[117,76,64,-0.13200770691037178],[117,76,65,-0.1312124952673912],[117,76,66,-0.12955158948898315],[117,76,67,-0.12743028067052364],[117,76,68,-0.12558912485837936],[117,76,69,-0.12434788420796394],[117,76,70,-0.12368115410208702],[117,76,71,-0.12304896116256714],[117,76,72,-0.12227331474423409],[117,76,73,-0.12159226834774017],[117,76,74,-0.1211386639624834],[117,76,75,-0.12084394320845604],[117,76,76,-0.12045239470899105],[117,76,77,-0.11970989406108856],[117,76,78,-0.11822578310966492],[117,76,79,-0.11627814546227455],[117,77,64,-0.13982020691037178],[117,77,65,-0.1390249952673912],[117,77,66,-0.13736408948898315],[117,77,67,-0.13524278067052364],[117,77,68,-0.13340162485837936],[117,77,69,-0.13216038420796394],[117,77,70,-0.13149365410208702],[117,77,71,-0.13086146116256714],[117,77,72,-0.13008581474423409],[117,77,73,-0.12940476834774017],[117,77,74,-0.1289511639624834],[117,77,75,-0.12865644320845604],[117,77,76,-0.12826489470899105],[117,77,77,-0.12752239406108856],[117,77,78,-0.12603828310966492],[117,77,79,-0.12409064546227455],[117,78,64,-0.14763270691037178],[117,78,65,-0.1468374952673912],[117,78,66,-0.14517658948898315],[117,78,67,-0.14305528067052364],[117,78,68,-0.14121412485837936],[117,78,69,-0.13997288420796394],[117,78,70,-0.13930615410208702],[117,78,71,-0.13867396116256714],[117,78,72,-0.13789831474423409],[117,78,73,-0.13721726834774017],[117,78,74,-0.1367636639624834],[117,78,75,-0.13646894320845604],[117,78,76,-0.13607739470899105],[117,78,77,-0.13533489406108856],[117,78,78,-0.13385078310966492],[117,78,79,-0.13190314546227455],[117,79,64,-0.15544520691037178],[117,79,65,-0.1546499952673912],[117,79,66,-0.15298908948898315],[117,79,67,-0.15086778067052364],[117,79,68,-0.14902662485837936],[117,79,69,-0.14778538420796394],[117,79,70,-0.14711865410208702],[117,79,71,-0.14648646116256714],[117,79,72,-0.14571081474423409],[117,79,73,-0.14502976834774017],[117,79,74,-0.1445761639624834],[117,79,75,-0.14428144320845604],[117,79,76,-0.14388989470899105],[117,79,77,-0.14314739406108856],[117,79,78,-0.14166328310966492],[117,79,79,-0.13971564546227455],[117,80,64,-0.16325770691037178],[117,80,65,-0.1624624952673912],[117,80,66,-0.16080158948898315],[117,80,67,-0.15868028067052364],[117,80,68,-0.15683912485837936],[117,80,69,-0.15559788420796394],[117,80,70,-0.15493115410208702],[117,80,71,-0.15429896116256714],[117,80,72,-0.15352331474423409],[117,80,73,-0.15284226834774017],[117,80,74,-0.1523886639624834],[117,80,75,-0.15209394320845604],[117,80,76,-0.15170239470899105],[117,80,77,-0.15095989406108856],[117,80,78,-0.14947578310966492],[117,80,79,-0.14752814546227455],[117,81,64,-0.17107020691037178],[117,81,65,-0.1702749952673912],[117,81,66,-0.16861408948898315],[117,81,67,-0.16649278067052364],[117,81,68,-0.16465162485837936],[117,81,69,-0.16341038420796394],[117,81,70,-0.16274365410208702],[117,81,71,-0.16211146116256714],[117,81,72,-0.16133581474423409],[117,81,73,-0.16065476834774017],[117,81,74,-0.1602011639624834],[117,81,75,-0.15990644320845604],[117,81,76,-0.15951489470899105],[117,81,77,-0.15877239406108856],[117,81,78,-0.15728828310966492],[117,81,79,-0.15534064546227455],[117,82,64,-0.17888270691037178],[117,82,65,-0.1780874952673912],[117,82,66,-0.17642658948898315],[117,82,67,-0.17430528067052364],[117,82,68,-0.17246412485837936],[117,82,69,-0.17122288420796394],[117,82,70,-0.17055615410208702],[117,82,71,-0.16992396116256714],[117,82,72,-0.16914831474423409],[117,82,73,-0.16846726834774017],[117,82,74,-0.1680136639624834],[117,82,75,-0.16771894320845604],[117,82,76,-0.16732739470899105],[117,82,77,-0.16658489406108856],[117,82,78,-0.16510078310966492],[117,82,79,-0.16315314546227455],[117,83,64,-0.18669520691037178],[117,83,65,-0.1858999952673912],[117,83,66,-0.18423908948898315],[117,83,67,-0.18211778067052364],[117,83,68,-0.18027662485837936],[117,83,69,-0.17903538420796394],[117,83,70,-0.17836865410208702],[117,83,71,-0.17773646116256714],[117,83,72,-0.17696081474423409],[117,83,73,-0.17627976834774017],[117,83,74,-0.1758261639624834],[117,83,75,-0.17553144320845604],[117,83,76,-0.17513989470899105],[117,83,77,-0.17439739406108856],[117,83,78,-0.17291328310966492],[117,83,79,-0.17096564546227455],[117,84,64,-0.19450770691037178],[117,84,65,-0.1937124952673912],[117,84,66,-0.19205158948898315],[117,84,67,-0.18993028067052364],[117,84,68,-0.18808912485837936],[117,84,69,-0.18684788420796394],[117,84,70,-0.18618115410208702],[117,84,71,-0.18554896116256714],[117,84,72,-0.18477331474423409],[117,84,73,-0.18409226834774017],[117,84,74,-0.1836386639624834],[117,84,75,-0.18334394320845604],[117,84,76,-0.18295239470899105],[117,84,77,-0.18220989406108856],[117,84,78,-0.18072578310966492],[117,84,79,-0.17877814546227455],[117,85,64,-0.20232020691037178],[117,85,65,-0.2015249952673912],[117,85,66,-0.19986408948898315],[117,85,67,-0.19774278067052364],[117,85,68,-0.19590162485837936],[117,85,69,-0.19466038420796394],[117,85,70,-0.19399365410208702],[117,85,71,-0.19336146116256714],[117,85,72,-0.19258581474423409],[117,85,73,-0.19190476834774017],[117,85,74,-0.1914511639624834],[117,85,75,-0.19115644320845604],[117,85,76,-0.19076489470899105],[117,85,77,-0.19002239406108856],[117,85,78,-0.18853828310966492],[117,85,79,-0.18659064546227455],[117,86,64,-0.21013270691037178],[117,86,65,-0.2093374952673912],[117,86,66,-0.20767658948898315],[117,86,67,-0.20555528067052364],[117,86,68,-0.20371412485837936],[117,86,69,-0.20247288420796394],[117,86,70,-0.20180615410208702],[117,86,71,-0.20117396116256714],[117,86,72,-0.20039831474423409],[117,86,73,-0.19971726834774017],[117,86,74,-0.1992636639624834],[117,86,75,-0.19896894320845604],[117,86,76,-0.19857739470899105],[117,86,77,-0.19783489406108856],[117,86,78,-0.19635078310966492],[117,86,79,-0.19440314546227455],[117,87,64,-0.21794520691037178],[117,87,65,-0.2171499952673912],[117,87,66,-0.21548908948898315],[117,87,67,-0.21336778067052364],[117,87,68,-0.21152662485837936],[117,87,69,-0.21028538420796394],[117,87,70,-0.20961865410208702],[117,87,71,-0.20898646116256714],[117,87,72,-0.20821081474423409],[117,87,73,-0.20752976834774017],[117,87,74,-0.2070761639624834],[117,87,75,-0.20678144320845604],[117,87,76,-0.20638989470899105],[117,87,77,-0.20564739406108856],[117,87,78,-0.20416328310966492],[117,87,79,-0.20221564546227455],[117,88,64,-0.22575770691037178],[117,88,65,-0.2249624952673912],[117,88,66,-0.22330158948898315],[117,88,67,-0.22118028067052364],[117,88,68,-0.21933912485837936],[117,88,69,-0.21809788420796394],[117,88,70,-0.21743115410208702],[117,88,71,-0.21679896116256714],[117,88,72,-0.21602331474423409],[117,88,73,-0.21534226834774017],[117,88,74,-0.2148886639624834],[117,88,75,-0.21459394320845604],[117,88,76,-0.21420239470899105],[117,88,77,-0.21345989406108856],[117,88,78,-0.21197578310966492],[117,88,79,-0.21002814546227455],[117,89,64,-0.23357020691037178],[117,89,65,-0.2327749952673912],[117,89,66,-0.23111408948898315],[117,89,67,-0.22899278067052364],[117,89,68,-0.22715162485837936],[117,89,69,-0.22591038420796394],[117,89,70,-0.22524365410208702],[117,89,71,-0.22461146116256714],[117,89,72,-0.22383581474423409],[117,89,73,-0.22315476834774017],[117,89,74,-0.2227011639624834],[117,89,75,-0.22240644320845604],[117,89,76,-0.22201489470899105],[117,89,77,-0.22127239406108856],[117,89,78,-0.21978828310966492],[117,89,79,-0.21784064546227455],[117,90,64,-0.24138270691037178],[117,90,65,-0.2405874952673912],[117,90,66,-0.23892658948898315],[117,90,67,-0.23680528067052364],[117,90,68,-0.23496412485837936],[117,90,69,-0.23372288420796394],[117,90,70,-0.23305615410208702],[117,90,71,-0.23242396116256714],[117,90,72,-0.23164831474423409],[117,90,73,-0.23096726834774017],[117,90,74,-0.2305136639624834],[117,90,75,-0.23021894320845604],[117,90,76,-0.22982739470899105],[117,90,77,-0.22908489406108856],[117,90,78,-0.22760078310966492],[117,90,79,-0.22565314546227455],[117,91,64,-0.24919520691037178],[117,91,65,-0.2483999952673912],[117,91,66,-0.24673908948898315],[117,91,67,-0.24461778067052364],[117,91,68,-0.24277662485837936],[117,91,69,-0.24153538420796394],[117,91,70,-0.24086865410208702],[117,91,71,-0.24023646116256714],[117,91,72,-0.23946081474423409],[117,91,73,-0.23877976834774017],[117,91,74,-0.2383261639624834],[117,91,75,-0.23803144320845604],[117,91,76,-0.23763989470899105],[117,91,77,-0.23689739406108856],[117,91,78,-0.23541328310966492],[117,91,79,-0.23346564546227455],[117,92,64,-0.2570077069103718],[117,92,65,-0.2562124952673912],[117,92,66,-0.25455158948898315],[117,92,67,-0.25243028067052364],[117,92,68,-0.25058912485837936],[117,92,69,-0.24934788420796394],[117,92,70,-0.24868115410208702],[117,92,71,-0.24804896116256714],[117,92,72,-0.24727331474423409],[117,92,73,-0.24659226834774017],[117,92,74,-0.2461386639624834],[117,92,75,-0.24584394320845604],[117,92,76,-0.24545239470899105],[117,92,77,-0.24470989406108856],[117,92,78,-0.24322578310966492],[117,92,79,-0.24127814546227455],[117,93,64,-0.2648202069103718],[117,93,65,-0.2640249952673912],[117,93,66,-0.26236408948898315],[117,93,67,-0.26024278067052364],[117,93,68,-0.25840162485837936],[117,93,69,-0.25716038420796394],[117,93,70,-0.256493654102087],[117,93,71,-0.25586146116256714],[117,93,72,-0.2550858147442341],[117,93,73,-0.2544047683477402],[117,93,74,-0.2539511639624834],[117,93,75,-0.25365644320845604],[117,93,76,-0.25326489470899105],[117,93,77,-0.25252239406108856],[117,93,78,-0.2510382831096649],[117,93,79,-0.24909064546227455],[117,94,64,-0.2726327069103718],[117,94,65,-0.2718374952673912],[117,94,66,-0.27017658948898315],[117,94,67,-0.26805528067052364],[117,94,68,-0.26621412485837936],[117,94,69,-0.26497288420796394],[117,94,70,-0.264306154102087],[117,94,71,-0.26367396116256714],[117,94,72,-0.2628983147442341],[117,94,73,-0.2622172683477402],[117,94,74,-0.2617636639624834],[117,94,75,-0.26146894320845604],[117,94,76,-0.26107739470899105],[117,94,77,-0.26033489406108856],[117,94,78,-0.2588507831096649],[117,94,79,-0.25690314546227455],[117,95,64,-0.2804452069103718],[117,95,65,-0.2796499952673912],[117,95,66,-0.27798908948898315],[117,95,67,-0.27586778067052364],[117,95,68,-0.27402662485837936],[117,95,69,-0.27278538420796394],[117,95,70,-0.272118654102087],[117,95,71,-0.27148646116256714],[117,95,72,-0.2707108147442341],[117,95,73,-0.2700297683477402],[117,95,74,-0.2695761639624834],[117,95,75,-0.26928144320845604],[117,95,76,-0.26888989470899105],[117,95,77,-0.26814739406108856],[117,95,78,-0.2666632831096649],[117,95,79,-0.26471564546227455],[117,96,64,-0.2882577069103718],[117,96,65,-0.2874624952673912],[117,96,66,-0.28580158948898315],[117,96,67,-0.28368028067052364],[117,96,68,-0.28183912485837936],[117,96,69,-0.28059788420796394],[117,96,70,-0.279931154102087],[117,96,71,-0.27929896116256714],[117,96,72,-0.2785233147442341],[117,96,73,-0.2778422683477402],[117,96,74,-0.2773886639624834],[117,96,75,-0.27709394320845604],[117,96,76,-0.27670239470899105],[117,96,77,-0.27595989406108856],[117,96,78,-0.2744757831096649],[117,96,79,-0.27252814546227455],[117,97,64,-0.2960702069103718],[117,97,65,-0.2952749952673912],[117,97,66,-0.29361408948898315],[117,97,67,-0.29149278067052364],[117,97,68,-0.28965162485837936],[117,97,69,-0.28841038420796394],[117,97,70,-0.287743654102087],[117,97,71,-0.28711146116256714],[117,97,72,-0.2863358147442341],[117,97,73,-0.2856547683477402],[117,97,74,-0.2852011639624834],[117,97,75,-0.28490644320845604],[117,97,76,-0.28451489470899105],[117,97,77,-0.28377239406108856],[117,97,78,-0.2822882831096649],[117,97,79,-0.28034064546227455],[117,98,64,-0.3038827069103718],[117,98,65,-0.3030874952673912],[117,98,66,-0.30142658948898315],[117,98,67,-0.29930528067052364],[117,98,68,-0.29746412485837936],[117,98,69,-0.29622288420796394],[117,98,70,-0.295556154102087],[117,98,71,-0.29492396116256714],[117,98,72,-0.2941483147442341],[117,98,73,-0.2934672683477402],[117,98,74,-0.2930136639624834],[117,98,75,-0.29271894320845604],[117,98,76,-0.29232739470899105],[117,98,77,-0.29158489406108856],[117,98,78,-0.2901007831096649],[117,98,79,-0.28815314546227455],[117,99,64,-0.3116952069103718],[117,99,65,-0.3108999952673912],[117,99,66,-0.30923908948898315],[117,99,67,-0.30711778067052364],[117,99,68,-0.30527662485837936],[117,99,69,-0.30403538420796394],[117,99,70,-0.303368654102087],[117,99,71,-0.30273646116256714],[117,99,72,-0.3019608147442341],[117,99,73,-0.3012797683477402],[117,99,74,-0.3008261639624834],[117,99,75,-0.30053144320845604],[117,99,76,-0.30013989470899105],[117,99,77,-0.29939739406108856],[117,99,78,-0.2979132831096649],[117,99,79,-0.29596564546227455],[117,100,64,-0.3195077069103718],[117,100,65,-0.3187124952673912],[117,100,66,-0.31705158948898315],[117,100,67,-0.31493028067052364],[117,100,68,-0.31308912485837936],[117,100,69,-0.31184788420796394],[117,100,70,-0.311181154102087],[117,100,71,-0.31054896116256714],[117,100,72,-0.3097733147442341],[117,100,73,-0.3090922683477402],[117,100,74,-0.3086386639624834],[117,100,75,-0.30834394320845604],[117,100,76,-0.30795239470899105],[117,100,77,-0.30720989406108856],[117,100,78,-0.3057257831096649],[117,100,79,-0.30377814546227455],[117,101,64,-0.3273202069103718],[117,101,65,-0.3265249952673912],[117,101,66,-0.32486408948898315],[117,101,67,-0.32274278067052364],[117,101,68,-0.32090162485837936],[117,101,69,-0.31966038420796394],[117,101,70,-0.318993654102087],[117,101,71,-0.31836146116256714],[117,101,72,-0.3175858147442341],[117,101,73,-0.3169047683477402],[117,101,74,-0.3164511639624834],[117,101,75,-0.31615644320845604],[117,101,76,-0.31576489470899105],[117,101,77,-0.31502239406108856],[117,101,78,-0.3135382831096649],[117,101,79,-0.31159064546227455],[117,102,64,-0.3351327069103718],[117,102,65,-0.3343374952673912],[117,102,66,-0.33267658948898315],[117,102,67,-0.33055528067052364],[117,102,68,-0.32871412485837936],[117,102,69,-0.32747288420796394],[117,102,70,-0.326806154102087],[117,102,71,-0.32617396116256714],[117,102,72,-0.3253983147442341],[117,102,73,-0.3247172683477402],[117,102,74,-0.3242636639624834],[117,102,75,-0.32396894320845604],[117,102,76,-0.32357739470899105],[117,102,77,-0.32283489406108856],[117,102,78,-0.3213507831096649],[117,102,79,-0.31940314546227455],[117,103,64,-0.3429452069103718],[117,103,65,-0.3421499952673912],[117,103,66,-0.34048908948898315],[117,103,67,-0.33836778067052364],[117,103,68,-0.33652662485837936],[117,103,69,-0.33528538420796394],[117,103,70,-0.334618654102087],[117,103,71,-0.33398646116256714],[117,103,72,-0.3332108147442341],[117,103,73,-0.3325297683477402],[117,103,74,-0.3320761639624834],[117,103,75,-0.33178144320845604],[117,103,76,-0.33138989470899105],[117,103,77,-0.33064739406108856],[117,103,78,-0.3291632831096649],[117,103,79,-0.32721564546227455],[117,104,64,-0.3507577069103718],[117,104,65,-0.3499624952673912],[117,104,66,-0.34830158948898315],[117,104,67,-0.34618028067052364],[117,104,68,-0.34433912485837936],[117,104,69,-0.34309788420796394],[117,104,70,-0.342431154102087],[117,104,71,-0.34179896116256714],[117,104,72,-0.3410233147442341],[117,104,73,-0.3403422683477402],[117,104,74,-0.3398886639624834],[117,104,75,-0.33959394320845604],[117,104,76,-0.33920239470899105],[117,104,77,-0.33845989406108856],[117,104,78,-0.3369757831096649],[117,104,79,-0.33502814546227455],[117,105,64,-0.3585702069103718],[117,105,65,-0.3577749952673912],[117,105,66,-0.35611408948898315],[117,105,67,-0.35399278067052364],[117,105,68,-0.35215162485837936],[117,105,69,-0.35091038420796394],[117,105,70,-0.350243654102087],[117,105,71,-0.34961146116256714],[117,105,72,-0.3488358147442341],[117,105,73,-0.3481547683477402],[117,105,74,-0.3477011639624834],[117,105,75,-0.34740644320845604],[117,105,76,-0.34701489470899105],[117,105,77,-0.34627239406108856],[117,105,78,-0.3447882831096649],[117,105,79,-0.34284064546227455],[117,106,64,-0.3663827069103718],[117,106,65,-0.3655874952673912],[117,106,66,-0.36392658948898315],[117,106,67,-0.36180528067052364],[117,106,68,-0.35996412485837936],[117,106,69,-0.35872288420796394],[117,106,70,-0.358056154102087],[117,106,71,-0.35742396116256714],[117,106,72,-0.3566483147442341],[117,106,73,-0.3559672683477402],[117,106,74,-0.3555136639624834],[117,106,75,-0.35521894320845604],[117,106,76,-0.35482739470899105],[117,106,77,-0.35408489406108856],[117,106,78,-0.3526007831096649],[117,106,79,-0.35065314546227455],[117,107,64,-0.3741952069103718],[117,107,65,-0.3733999952673912],[117,107,66,-0.37173908948898315],[117,107,67,-0.36961778067052364],[117,107,68,-0.36777662485837936],[117,107,69,-0.36653538420796394],[117,107,70,-0.365868654102087],[117,107,71,-0.36523646116256714],[117,107,72,-0.3644608147442341],[117,107,73,-0.3637797683477402],[117,107,74,-0.3633261639624834],[117,107,75,-0.36303144320845604],[117,107,76,-0.36263989470899105],[117,107,77,-0.36189739406108856],[117,107,78,-0.3604132831096649],[117,107,79,-0.35846564546227455],[117,108,64,-0.3820077069103718],[117,108,65,-0.3812124952673912],[117,108,66,-0.37955158948898315],[117,108,67,-0.37743028067052364],[117,108,68,-0.37558912485837936],[117,108,69,-0.37434788420796394],[117,108,70,-0.373681154102087],[117,108,71,-0.37304896116256714],[117,108,72,-0.3722733147442341],[117,108,73,-0.3715922683477402],[117,108,74,-0.3711386639624834],[117,108,75,-0.37084394320845604],[117,108,76,-0.37045239470899105],[117,108,77,-0.36970989406108856],[117,108,78,-0.3682257831096649],[117,108,79,-0.36627814546227455],[117,109,64,-0.3898202069103718],[117,109,65,-0.3890249952673912],[117,109,66,-0.38736408948898315],[117,109,67,-0.38524278067052364],[117,109,68,-0.38340162485837936],[117,109,69,-0.38216038420796394],[117,109,70,-0.381493654102087],[117,109,71,-0.38086146116256714],[117,109,72,-0.3800858147442341],[117,109,73,-0.3794047683477402],[117,109,74,-0.3789511639624834],[117,109,75,-0.37865644320845604],[117,109,76,-0.37826489470899105],[117,109,77,-0.37752239406108856],[117,109,78,-0.3760382831096649],[117,109,79,-0.37409064546227455],[117,110,64,-0.3976327069103718],[117,110,65,-0.3968374952673912],[117,110,66,-0.39517658948898315],[117,110,67,-0.39305528067052364],[117,110,68,-0.39121412485837936],[117,110,69,-0.38997288420796394],[117,110,70,-0.389306154102087],[117,110,71,-0.38867396116256714],[117,110,72,-0.3878983147442341],[117,110,73,-0.3872172683477402],[117,110,74,-0.3867636639624834],[117,110,75,-0.38646894320845604],[117,110,76,-0.38607739470899105],[117,110,77,-0.38533489406108856],[117,110,78,-0.3838507831096649],[117,110,79,-0.38190314546227455],[117,111,64,-0.4054452069103718],[117,111,65,-0.4046499952673912],[117,111,66,-0.40298908948898315],[117,111,67,-0.40086778067052364],[117,111,68,-0.39902662485837936],[117,111,69,-0.39778538420796394],[117,111,70,-0.397118654102087],[117,111,71,-0.39648646116256714],[117,111,72,-0.3957108147442341],[117,111,73,-0.3950297683477402],[117,111,74,-0.3945761639624834],[117,111,75,-0.39428144320845604],[117,111,76,-0.39388989470899105],[117,111,77,-0.39314739406108856],[117,111,78,-0.3916632831096649],[117,111,79,-0.38971564546227455],[117,112,64,-0.4132577069103718],[117,112,65,-0.4124624952673912],[117,112,66,-0.41080158948898315],[117,112,67,-0.40868028067052364],[117,112,68,-0.40683912485837936],[117,112,69,-0.40559788420796394],[117,112,70,-0.404931154102087],[117,112,71,-0.40429896116256714],[117,112,72,-0.4035233147442341],[117,112,73,-0.4028422683477402],[117,112,74,-0.4023886639624834],[117,112,75,-0.40209394320845604],[117,112,76,-0.40170239470899105],[117,112,77,-0.40095989406108856],[117,112,78,-0.3994757831096649],[117,112,79,-0.39752814546227455],[117,113,64,-0.4210702069103718],[117,113,65,-0.4202749952673912],[117,113,66,-0.41861408948898315],[117,113,67,-0.41649278067052364],[117,113,68,-0.41465162485837936],[117,113,69,-0.41341038420796394],[117,113,70,-0.412743654102087],[117,113,71,-0.41211146116256714],[117,113,72,-0.4113358147442341],[117,113,73,-0.4106547683477402],[117,113,74,-0.4102011639624834],[117,113,75,-0.40990644320845604],[117,113,76,-0.40951489470899105],[117,113,77,-0.40877239406108856],[117,113,78,-0.4072882831096649],[117,113,79,-0.40534064546227455],[117,114,64,-0.4288827069103718],[117,114,65,-0.4280874952673912],[117,114,66,-0.42642658948898315],[117,114,67,-0.42430528067052364],[117,114,68,-0.42246412485837936],[117,114,69,-0.42122288420796394],[117,114,70,-0.420556154102087],[117,114,71,-0.41992396116256714],[117,114,72,-0.4191483147442341],[117,114,73,-0.4184672683477402],[117,114,74,-0.4180136639624834],[117,114,75,-0.41771894320845604],[117,114,76,-0.41732739470899105],[117,114,77,-0.41658489406108856],[117,114,78,-0.4151007831096649],[117,114,79,-0.41315314546227455],[117,115,64,-0.4366952069103718],[117,115,65,-0.4358999952673912],[117,115,66,-0.43423908948898315],[117,115,67,-0.43211778067052364],[117,115,68,-0.43027662485837936],[117,115,69,-0.42903538420796394],[117,115,70,-0.428368654102087],[117,115,71,-0.42773646116256714],[117,115,72,-0.4269608147442341],[117,115,73,-0.4262797683477402],[117,115,74,-0.4258261639624834],[117,115,75,-0.42553144320845604],[117,115,76,-0.42513989470899105],[117,115,77,-0.42439739406108856],[117,115,78,-0.4229132831096649],[117,115,79,-0.42096564546227455],[117,116,64,-0.4445077069103718],[117,116,65,-0.4437124952673912],[117,116,66,-0.44205158948898315],[117,116,67,-0.43993028067052364],[117,116,68,-0.43808912485837936],[117,116,69,-0.43684788420796394],[117,116,70,-0.436181154102087],[117,116,71,-0.43554896116256714],[117,116,72,-0.4347733147442341],[117,116,73,-0.4340922683477402],[117,116,74,-0.4336386639624834],[117,116,75,-0.43334394320845604],[117,116,76,-0.43295239470899105],[117,116,77,-0.43220989406108856],[117,116,78,-0.4307257831096649],[117,116,79,-0.42877814546227455],[117,117,64,-0.4523202069103718],[117,117,65,-0.4515249952673912],[117,117,66,-0.44986408948898315],[117,117,67,-0.44774278067052364],[117,117,68,-0.44590162485837936],[117,117,69,-0.44466038420796394],[117,117,70,-0.443993654102087],[117,117,71,-0.44336146116256714],[117,117,72,-0.4425858147442341],[117,117,73,-0.4419047683477402],[117,117,74,-0.4414511639624834],[117,117,75,-0.44115644320845604],[117,117,76,-0.44076489470899105],[117,117,77,-0.44002239406108856],[117,117,78,-0.4385382831096649],[117,117,79,-0.43659064546227455],[117,118,64,-0.4601327069103718],[117,118,65,-0.4593374952673912],[117,118,66,-0.45767658948898315],[117,118,67,-0.45555528067052364],[117,118,68,-0.45371412485837936],[117,118,69,-0.45247288420796394],[117,118,70,-0.451806154102087],[117,118,71,-0.45117396116256714],[117,118,72,-0.4503983147442341],[117,118,73,-0.4497172683477402],[117,118,74,-0.4492636639624834],[117,118,75,-0.44896894320845604],[117,118,76,-0.44857739470899105],[117,118,77,-0.44783489406108856],[117,118,78,-0.4463507831096649],[117,118,79,-0.44440314546227455],[117,119,64,-0.4679452069103718],[117,119,65,-0.4671499952673912],[117,119,66,-0.46548908948898315],[117,119,67,-0.46336778067052364],[117,119,68,-0.46152662485837936],[117,119,69,-0.46028538420796394],[117,119,70,-0.459618654102087],[117,119,71,-0.45898646116256714],[117,119,72,-0.4582108147442341],[117,119,73,-0.4575297683477402],[117,119,74,-0.4570761639624834],[117,119,75,-0.45678144320845604],[117,119,76,-0.45638989470899105],[117,119,77,-0.45564739406108856],[117,119,78,-0.4541632831096649],[117,119,79,-0.45221564546227455],[117,120,64,-0.4757577069103718],[117,120,65,-0.4749624952673912],[117,120,66,-0.47330158948898315],[117,120,67,-0.47118028067052364],[117,120,68,-0.46933912485837936],[117,120,69,-0.46809788420796394],[117,120,70,-0.467431154102087],[117,120,71,-0.46679896116256714],[117,120,72,-0.4660233147442341],[117,120,73,-0.4653422683477402],[117,120,74,-0.4648886639624834],[117,120,75,-0.46459394320845604],[117,120,76,-0.46420239470899105],[117,120,77,-0.46345989406108856],[117,120,78,-0.4619757831096649],[117,120,79,-0.46002814546227455],[117,121,64,-0.4835702069103718],[117,121,65,-0.4827749952673912],[117,121,66,-0.48111408948898315],[117,121,67,-0.47899278067052364],[117,121,68,-0.47715162485837936],[117,121,69,-0.47591038420796394],[117,121,70,-0.475243654102087],[117,121,71,-0.47461146116256714],[117,121,72,-0.4738358147442341],[117,121,73,-0.4731547683477402],[117,121,74,-0.4727011639624834],[117,121,75,-0.47240644320845604],[117,121,76,-0.47201489470899105],[117,121,77,-0.47127239406108856],[117,121,78,-0.4697882831096649],[117,121,79,-0.46784064546227455],[117,122,64,-0.4913827069103718],[117,122,65,-0.4905874952673912],[117,122,66,-0.48892658948898315],[117,122,67,-0.48680528067052364],[117,122,68,-0.48496412485837936],[117,122,69,-0.48372288420796394],[117,122,70,-0.483056154102087],[117,122,71,-0.48242396116256714],[117,122,72,-0.4816483147442341],[117,122,73,-0.4809672683477402],[117,122,74,-0.4805136639624834],[117,122,75,-0.48021894320845604],[117,122,76,-0.47982739470899105],[117,122,77,-0.47908489406108856],[117,122,78,-0.4776007831096649],[117,122,79,-0.47565314546227455],[117,123,64,-0.4991952069103718],[117,123,65,-0.4983999952673912],[117,123,66,-0.49673908948898315],[117,123,67,-0.49461778067052364],[117,123,68,-0.49277662485837936],[117,123,69,-0.49153538420796394],[117,123,70,-0.490868654102087],[117,123,71,-0.49023646116256714],[117,123,72,-0.4894608147442341],[117,123,73,-0.4887797683477402],[117,123,74,-0.4883261639624834],[117,123,75,-0.48803144320845604],[117,123,76,-0.48763989470899105],[117,123,77,-0.48689739406108856],[117,123,78,-0.4854132831096649],[117,123,79,-0.48346564546227455],[117,124,64,-0.5070077069103718],[117,124,65,-0.5062124952673912],[117,124,66,-0.5045515894889832],[117,124,67,-0.5024302806705236],[117,124,68,-0.5005891248583794],[117,124,69,-0.49934788420796394],[117,124,70,-0.498681154102087],[117,124,71,-0.49804896116256714],[117,124,72,-0.4972733147442341],[117,124,73,-0.4965922683477402],[117,124,74,-0.4961386639624834],[117,124,75,-0.49584394320845604],[117,124,76,-0.49545239470899105],[117,124,77,-0.49470989406108856],[117,124,78,-0.4932257831096649],[117,124,79,-0.49127814546227455],[117,125,64,-0.5148202069103718],[117,125,65,-0.5140249952673912],[117,125,66,-0.5123640894889832],[117,125,67,-0.5102427806705236],[117,125,68,-0.5084016248583794],[117,125,69,-0.5071603842079639],[117,125,70,-0.506493654102087],[117,125,71,-0.5058614611625671],[117,125,72,-0.5050858147442341],[117,125,73,-0.5044047683477402],[117,125,74,-0.5039511639624834],[117,125,75,-0.503656443208456],[117,125,76,-0.503264894708991],[117,125,77,-0.5025223940610886],[117,125,78,-0.5010382831096649],[117,125,79,-0.49909064546227455],[117,126,64,-0.5226327069103718],[117,126,65,-0.5218374952673912],[117,126,66,-0.5201765894889832],[117,126,67,-0.5180552806705236],[117,126,68,-0.5162141248583794],[117,126,69,-0.5149728842079639],[117,126,70,-0.514306154102087],[117,126,71,-0.5136739611625671],[117,126,72,-0.5128983147442341],[117,126,73,-0.5122172683477402],[117,126,74,-0.5117636639624834],[117,126,75,-0.511468943208456],[117,126,76,-0.511077394708991],[117,126,77,-0.5103348940610886],[117,126,78,-0.5088507831096649],[117,126,79,-0.5069031454622746],[117,127,64,-0.5304452069103718],[117,127,65,-0.5296499952673912],[117,127,66,-0.5279890894889832],[117,127,67,-0.5258677806705236],[117,127,68,-0.5240266248583794],[117,127,69,-0.5227853842079639],[117,127,70,-0.522118654102087],[117,127,71,-0.5214864611625671],[117,127,72,-0.5207108147442341],[117,127,73,-0.5200297683477402],[117,127,74,-0.5195761639624834],[117,127,75,-0.519281443208456],[117,127,76,-0.518889894708991],[117,127,77,-0.5181473940610886],[117,127,78,-0.5166632831096649],[117,127,79,-0.5147156454622746],[117,128,64,-0.5382577069103718],[117,128,65,-0.5374624952673912],[117,128,66,-0.5358015894889832],[117,128,67,-0.5336802806705236],[117,128,68,-0.5318391248583794],[117,128,69,-0.5305978842079639],[117,128,70,-0.529931154102087],[117,128,71,-0.5292989611625671],[117,128,72,-0.5285233147442341],[117,128,73,-0.5278422683477402],[117,128,74,-0.5273886639624834],[117,128,75,-0.527093943208456],[117,128,76,-0.526702394708991],[117,128,77,-0.5259598940610886],[117,128,78,-0.5244757831096649],[117,128,79,-0.5225281454622746],[117,129,64,-0.5460702069103718],[117,129,65,-0.5452749952673912],[117,129,66,-0.5436140894889832],[117,129,67,-0.5414927806705236],[117,129,68,-0.5396516248583794],[117,129,69,-0.5384103842079639],[117,129,70,-0.537743654102087],[117,129,71,-0.5371114611625671],[117,129,72,-0.5363358147442341],[117,129,73,-0.5356547683477402],[117,129,74,-0.5352011639624834],[117,129,75,-0.534906443208456],[117,129,76,-0.534514894708991],[117,129,77,-0.5337723940610886],[117,129,78,-0.5322882831096649],[117,129,79,-0.5303406454622746],[117,130,64,-0.5538827069103718],[117,130,65,-0.5530874952673912],[117,130,66,-0.5514265894889832],[117,130,67,-0.5493052806705236],[117,130,68,-0.5474641248583794],[117,130,69,-0.5462228842079639],[117,130,70,-0.545556154102087],[117,130,71,-0.5449239611625671],[117,130,72,-0.5441483147442341],[117,130,73,-0.5434672683477402],[117,130,74,-0.5430136639624834],[117,130,75,-0.542718943208456],[117,130,76,-0.542327394708991],[117,130,77,-0.5415848940610886],[117,130,78,-0.5401007831096649],[117,130,79,-0.5381531454622746],[117,131,64,-0.5616952069103718],[117,131,65,-0.5608999952673912],[117,131,66,-0.5592390894889832],[117,131,67,-0.5571177806705236],[117,131,68,-0.5552766248583794],[117,131,69,-0.5540353842079639],[117,131,70,-0.553368654102087],[117,131,71,-0.5527364611625671],[117,131,72,-0.5519608147442341],[117,131,73,-0.5512797683477402],[117,131,74,-0.5508261639624834],[117,131,75,-0.550531443208456],[117,131,76,-0.550139894708991],[117,131,77,-0.5493973940610886],[117,131,78,-0.5479132831096649],[117,131,79,-0.5459656454622746],[117,132,64,-0.5695077069103718],[117,132,65,-0.5687124952673912],[117,132,66,-0.5670515894889832],[117,132,67,-0.5649302806705236],[117,132,68,-0.5630891248583794],[117,132,69,-0.5618478842079639],[117,132,70,-0.561181154102087],[117,132,71,-0.5605489611625671],[117,132,72,-0.5597733147442341],[117,132,73,-0.5590922683477402],[117,132,74,-0.5586386639624834],[117,132,75,-0.558343943208456],[117,132,76,-0.557952394708991],[117,132,77,-0.5572098940610886],[117,132,78,-0.5557257831096649],[117,132,79,-0.5537781454622746],[117,133,64,-0.5773202069103718],[117,133,65,-0.5765249952673912],[117,133,66,-0.5748640894889832],[117,133,67,-0.5727427806705236],[117,133,68,-0.5709016248583794],[117,133,69,-0.5696603842079639],[117,133,70,-0.568993654102087],[117,133,71,-0.5683614611625671],[117,133,72,-0.5675858147442341],[117,133,73,-0.5669047683477402],[117,133,74,-0.5664511639624834],[117,133,75,-0.566156443208456],[117,133,76,-0.565764894708991],[117,133,77,-0.5650223940610886],[117,133,78,-0.5635382831096649],[117,133,79,-0.5615906454622746],[117,134,64,-0.5851327069103718],[117,134,65,-0.5843374952673912],[117,134,66,-0.5826765894889832],[117,134,67,-0.5805552806705236],[117,134,68,-0.5787141248583794],[117,134,69,-0.5774728842079639],[117,134,70,-0.576806154102087],[117,134,71,-0.5761739611625671],[117,134,72,-0.5753983147442341],[117,134,73,-0.5747172683477402],[117,134,74,-0.5742636639624834],[117,134,75,-0.573968943208456],[117,134,76,-0.573577394708991],[117,134,77,-0.5728348940610886],[117,134,78,-0.5713507831096649],[117,134,79,-0.5694031454622746],[117,135,64,-0.5929452069103718],[117,135,65,-0.5921499952673912],[117,135,66,-0.5904890894889832],[117,135,67,-0.5883677806705236],[117,135,68,-0.5865266248583794],[117,135,69,-0.5852853842079639],[117,135,70,-0.584618654102087],[117,135,71,-0.5839864611625671],[117,135,72,-0.5832108147442341],[117,135,73,-0.5825297683477402],[117,135,74,-0.5820761639624834],[117,135,75,-0.581781443208456],[117,135,76,-0.581389894708991],[117,135,77,-0.5806473940610886],[117,135,78,-0.5791632831096649],[117,135,79,-0.5772156454622746],[117,136,64,-0.6007577069103718],[117,136,65,-0.5999624952673912],[117,136,66,-0.5983015894889832],[117,136,67,-0.5961802806705236],[117,136,68,-0.5943391248583794],[117,136,69,-0.5930978842079639],[117,136,70,-0.592431154102087],[117,136,71,-0.5917989611625671],[117,136,72,-0.5910233147442341],[117,136,73,-0.5903422683477402],[117,136,74,-0.5898886639624834],[117,136,75,-0.589593943208456],[117,136,76,-0.589202394708991],[117,136,77,-0.5884598940610886],[117,136,78,-0.5869757831096649],[117,136,79,-0.5850281454622746],[117,137,64,-0.6085702069103718],[117,137,65,-0.6077749952673912],[117,137,66,-0.6061140894889832],[117,137,67,-0.6039927806705236],[117,137,68,-0.6021516248583794],[117,137,69,-0.6009103842079639],[117,137,70,-0.600243654102087],[117,137,71,-0.5996114611625671],[117,137,72,-0.5988358147442341],[117,137,73,-0.5981547683477402],[117,137,74,-0.5977011639624834],[117,137,75,-0.597406443208456],[117,137,76,-0.597014894708991],[117,137,77,-0.5962723940610886],[117,137,78,-0.5947882831096649],[117,137,79,-0.5928406454622746],[117,138,64,-0.6163827069103718],[117,138,65,-0.6155874952673912],[117,138,66,-0.6139265894889832],[117,138,67,-0.6118052806705236],[117,138,68,-0.6099641248583794],[117,138,69,-0.6087228842079639],[117,138,70,-0.608056154102087],[117,138,71,-0.6074239611625671],[117,138,72,-0.6066483147442341],[117,138,73,-0.6059672683477402],[117,138,74,-0.6055136639624834],[117,138,75,-0.605218943208456],[117,138,76,-0.604827394708991],[117,138,77,-0.6040848940610886],[117,138,78,-0.6026007831096649],[117,138,79,-0.6006531454622746],[117,139,64,-0.6241952069103718],[117,139,65,-0.6233999952673912],[117,139,66,-0.6217390894889832],[117,139,67,-0.6196177806705236],[117,139,68,-0.6177766248583794],[117,139,69,-0.6165353842079639],[117,139,70,-0.615868654102087],[117,139,71,-0.6152364611625671],[117,139,72,-0.6144608147442341],[117,139,73,-0.6137797683477402],[117,139,74,-0.6133261639624834],[117,139,75,-0.613031443208456],[117,139,76,-0.612639894708991],[117,139,77,-0.6118973940610886],[117,139,78,-0.6104132831096649],[117,139,79,-0.6084656454622746],[117,140,64,-0.6320077069103718],[117,140,65,-0.6312124952673912],[117,140,66,-0.6295515894889832],[117,140,67,-0.6274302806705236],[117,140,68,-0.6255891248583794],[117,140,69,-0.6243478842079639],[117,140,70,-0.623681154102087],[117,140,71,-0.6230489611625671],[117,140,72,-0.6222733147442341],[117,140,73,-0.6215922683477402],[117,140,74,-0.6211386639624834],[117,140,75,-0.620843943208456],[117,140,76,-0.620452394708991],[117,140,77,-0.6197098940610886],[117,140,78,-0.6182257831096649],[117,140,79,-0.6162781454622746],[117,141,64,-0.6398202069103718],[117,141,65,-0.6390249952673912],[117,141,66,-0.6373640894889832],[117,141,67,-0.6352427806705236],[117,141,68,-0.6334016248583794],[117,141,69,-0.6321603842079639],[117,141,70,-0.631493654102087],[117,141,71,-0.6308614611625671],[117,141,72,-0.6300858147442341],[117,141,73,-0.6294047683477402],[117,141,74,-0.6289511639624834],[117,141,75,-0.628656443208456],[117,141,76,-0.628264894708991],[117,141,77,-0.6275223940610886],[117,141,78,-0.6260382831096649],[117,141,79,-0.6240906454622746],[117,142,64,-0.6476327069103718],[117,142,65,-0.6468374952673912],[117,142,66,-0.6451765894889832],[117,142,67,-0.6430552806705236],[117,142,68,-0.6412141248583794],[117,142,69,-0.6399728842079639],[117,142,70,-0.639306154102087],[117,142,71,-0.6386739611625671],[117,142,72,-0.6378983147442341],[117,142,73,-0.6372172683477402],[117,142,74,-0.6367636639624834],[117,142,75,-0.636468943208456],[117,142,76,-0.636077394708991],[117,142,77,-0.6353348940610886],[117,142,78,-0.6338507831096649],[117,142,79,-0.6319031454622746],[117,143,64,-0.6554452069103718],[117,143,65,-0.6546499952673912],[117,143,66,-0.6529890894889832],[117,143,67,-0.6508677806705236],[117,143,68,-0.6490266248583794],[117,143,69,-0.6477853842079639],[117,143,70,-0.647118654102087],[117,143,71,-0.6464864611625671],[117,143,72,-0.6457108147442341],[117,143,73,-0.6450297683477402],[117,143,74,-0.6445761639624834],[117,143,75,-0.644281443208456],[117,143,76,-0.643889894708991],[117,143,77,-0.6431473940610886],[117,143,78,-0.6416632831096649],[117,143,79,-0.6397156454622746],[117,144,64,-0.6632577069103718],[117,144,65,-0.6624624952673912],[117,144,66,-0.6608015894889832],[117,144,67,-0.6586802806705236],[117,144,68,-0.6568391248583794],[117,144,69,-0.6555978842079639],[117,144,70,-0.654931154102087],[117,144,71,-0.6542989611625671],[117,144,72,-0.6535233147442341],[117,144,73,-0.6528422683477402],[117,144,74,-0.6523886639624834],[117,144,75,-0.652093943208456],[117,144,76,-0.651702394708991],[117,144,77,-0.6509598940610886],[117,144,78,-0.6494757831096649],[117,144,79,-0.6475281454622746],[117,145,64,-0.6710702069103718],[117,145,65,-0.6702749952673912],[117,145,66,-0.6686140894889832],[117,145,67,-0.6664927806705236],[117,145,68,-0.6646516248583794],[117,145,69,-0.6634103842079639],[117,145,70,-0.662743654102087],[117,145,71,-0.6621114611625671],[117,145,72,-0.6613358147442341],[117,145,73,-0.6606547683477402],[117,145,74,-0.6602011639624834],[117,145,75,-0.659906443208456],[117,145,76,-0.659514894708991],[117,145,77,-0.6587723940610886],[117,145,78,-0.6572882831096649],[117,145,79,-0.6553406454622746],[117,146,64,-0.6788827069103718],[117,146,65,-0.6780874952673912],[117,146,66,-0.6764265894889832],[117,146,67,-0.6743052806705236],[117,146,68,-0.6724641248583794],[117,146,69,-0.6712228842079639],[117,146,70,-0.670556154102087],[117,146,71,-0.6699239611625671],[117,146,72,-0.6691483147442341],[117,146,73,-0.6684672683477402],[117,146,74,-0.6680136639624834],[117,146,75,-0.667718943208456],[117,146,76,-0.667327394708991],[117,146,77,-0.6665848940610886],[117,146,78,-0.6651007831096649],[117,146,79,-0.6631531454622746],[117,147,64,-0.6866952069103718],[117,147,65,-0.6858999952673912],[117,147,66,-0.6842390894889832],[117,147,67,-0.6821177806705236],[117,147,68,-0.6802766248583794],[117,147,69,-0.6790353842079639],[117,147,70,-0.678368654102087],[117,147,71,-0.6777364611625671],[117,147,72,-0.6769608147442341],[117,147,73,-0.6762797683477402],[117,147,74,-0.6758261639624834],[117,147,75,-0.675531443208456],[117,147,76,-0.675139894708991],[117,147,77,-0.6743973940610886],[117,147,78,-0.6729132831096649],[117,147,79,-0.6709656454622746],[117,148,64,-0.6945077069103718],[117,148,65,-0.6937124952673912],[117,148,66,-0.6920515894889832],[117,148,67,-0.6899302806705236],[117,148,68,-0.6880891248583794],[117,148,69,-0.6868478842079639],[117,148,70,-0.686181154102087],[117,148,71,-0.6855489611625671],[117,148,72,-0.6847733147442341],[117,148,73,-0.6840922683477402],[117,148,74,-0.6836386639624834],[117,148,75,-0.683343943208456],[117,148,76,-0.682952394708991],[117,148,77,-0.6822098940610886],[117,148,78,-0.6807257831096649],[117,148,79,-0.6787781454622746],[117,149,64,-0.7023202069103718],[117,149,65,-0.7015249952673912],[117,149,66,-0.6998640894889832],[117,149,67,-0.6977427806705236],[117,149,68,-0.6959016248583794],[117,149,69,-0.6946603842079639],[117,149,70,-0.693993654102087],[117,149,71,-0.6933614611625671],[117,149,72,-0.6925858147442341],[117,149,73,-0.6919047683477402],[117,149,74,-0.6914511639624834],[117,149,75,-0.691156443208456],[117,149,76,-0.690764894708991],[117,149,77,-0.6900223940610886],[117,149,78,-0.6885382831096649],[117,149,79,-0.6865906454622746],[117,150,64,-0.7101327069103718],[117,150,65,-0.7093374952673912],[117,150,66,-0.7076765894889832],[117,150,67,-0.7055552806705236],[117,150,68,-0.7037141248583794],[117,150,69,-0.7024728842079639],[117,150,70,-0.701806154102087],[117,150,71,-0.7011739611625671],[117,150,72,-0.7003983147442341],[117,150,73,-0.6997172683477402],[117,150,74,-0.6992636639624834],[117,150,75,-0.698968943208456],[117,150,76,-0.698577394708991],[117,150,77,-0.6978348940610886],[117,150,78,-0.6963507831096649],[117,150,79,-0.6944031454622746],[117,151,64,-0.7179452069103718],[117,151,65,-0.7171499952673912],[117,151,66,-0.7154890894889832],[117,151,67,-0.7133677806705236],[117,151,68,-0.7115266248583794],[117,151,69,-0.7102853842079639],[117,151,70,-0.709618654102087],[117,151,71,-0.7089864611625671],[117,151,72,-0.7082108147442341],[117,151,73,-0.7075297683477402],[117,151,74,-0.7070761639624834],[117,151,75,-0.706781443208456],[117,151,76,-0.706389894708991],[117,151,77,-0.7056473940610886],[117,151,78,-0.7041632831096649],[117,151,79,-0.7022156454622746],[117,152,64,-0.7257577069103718],[117,152,65,-0.7249624952673912],[117,152,66,-0.7233015894889832],[117,152,67,-0.7211802806705236],[117,152,68,-0.7193391248583794],[117,152,69,-0.7180978842079639],[117,152,70,-0.717431154102087],[117,152,71,-0.7167989611625671],[117,152,72,-0.7160233147442341],[117,152,73,-0.7153422683477402],[117,152,74,-0.7148886639624834],[117,152,75,-0.714593943208456],[117,152,76,-0.714202394708991],[117,152,77,-0.7134598940610886],[117,152,78,-0.7119757831096649],[117,152,79,-0.7100281454622746],[117,153,64,-0.7335702069103718],[117,153,65,-0.7327749952673912],[117,153,66,-0.7311140894889832],[117,153,67,-0.7289927806705236],[117,153,68,-0.7271516248583794],[117,153,69,-0.7259103842079639],[117,153,70,-0.725243654102087],[117,153,71,-0.7246114611625671],[117,153,72,-0.7238358147442341],[117,153,73,-0.7231547683477402],[117,153,74,-0.7227011639624834],[117,153,75,-0.722406443208456],[117,153,76,-0.722014894708991],[117,153,77,-0.7212723940610886],[117,153,78,-0.7197882831096649],[117,153,79,-0.7178406454622746],[117,154,64,-0.7413827069103718],[117,154,65,-0.7405874952673912],[117,154,66,-0.7389265894889832],[117,154,67,-0.7368052806705236],[117,154,68,-0.7349641248583794],[117,154,69,-0.7337228842079639],[117,154,70,-0.733056154102087],[117,154,71,-0.7324239611625671],[117,154,72,-0.7316483147442341],[117,154,73,-0.7309672683477402],[117,154,74,-0.7305136639624834],[117,154,75,-0.730218943208456],[117,154,76,-0.729827394708991],[117,154,77,-0.7290848940610886],[117,154,78,-0.7276007831096649],[117,154,79,-0.7256531454622746],[117,155,64,-0.7491952069103718],[117,155,65,-0.7483999952673912],[117,155,66,-0.7467390894889832],[117,155,67,-0.7446177806705236],[117,155,68,-0.7427766248583794],[117,155,69,-0.7415353842079639],[117,155,70,-0.740868654102087],[117,155,71,-0.7402364611625671],[117,155,72,-0.7394608147442341],[117,155,73,-0.7387797683477402],[117,155,74,-0.7383261639624834],[117,155,75,-0.738031443208456],[117,155,76,-0.737639894708991],[117,155,77,-0.7368973940610886],[117,155,78,-0.7354132831096649],[117,155,79,-0.7334656454622746],[117,156,64,-0.7570077069103718],[117,156,65,-0.7562124952673912],[117,156,66,-0.7545515894889832],[117,156,67,-0.7524302806705236],[117,156,68,-0.7505891248583794],[117,156,69,-0.7493478842079639],[117,156,70,-0.748681154102087],[117,156,71,-0.7480489611625671],[117,156,72,-0.7472733147442341],[117,156,73,-0.7465922683477402],[117,156,74,-0.7461386639624834],[117,156,75,-0.745843943208456],[117,156,76,-0.745452394708991],[117,156,77,-0.7447098940610886],[117,156,78,-0.7432257831096649],[117,156,79,-0.7412781454622746],[117,157,64,-0.7648202069103718],[117,157,65,-0.7640249952673912],[117,157,66,-0.7623640894889832],[117,157,67,-0.7602427806705236],[117,157,68,-0.7584016248583794],[117,157,69,-0.7571603842079639],[117,157,70,-0.756493654102087],[117,157,71,-0.7558614611625671],[117,157,72,-0.7550858147442341],[117,157,73,-0.7544047683477402],[117,157,74,-0.7539511639624834],[117,157,75,-0.753656443208456],[117,157,76,-0.753264894708991],[117,157,77,-0.7525223940610886],[117,157,78,-0.7510382831096649],[117,157,79,-0.7490906454622746],[117,158,64,-0.7726327069103718],[117,158,65,-0.7718374952673912],[117,158,66,-0.7701765894889832],[117,158,67,-0.7680552806705236],[117,158,68,-0.7662141248583794],[117,158,69,-0.7649728842079639],[117,158,70,-0.764306154102087],[117,158,71,-0.7636739611625671],[117,158,72,-0.7628983147442341],[117,158,73,-0.7622172683477402],[117,158,74,-0.7617636639624834],[117,158,75,-0.761468943208456],[117,158,76,-0.761077394708991],[117,158,77,-0.7603348940610886],[117,158,78,-0.7588507831096649],[117,158,79,-0.7569031454622746],[117,159,64,-0.7804452069103718],[117,159,65,-0.7796499952673912],[117,159,66,-0.7779890894889832],[117,159,67,-0.7758677806705236],[117,159,68,-0.7740266248583794],[117,159,69,-0.7727853842079639],[117,159,70,-0.772118654102087],[117,159,71,-0.7714864611625671],[117,159,72,-0.7707108147442341],[117,159,73,-0.7700297683477402],[117,159,74,-0.7695761639624834],[117,159,75,-0.769281443208456],[117,159,76,-0.768889894708991],[117,159,77,-0.7681473940610886],[117,159,78,-0.7666632831096649],[117,159,79,-0.7647156454622746],[117,160,64,-0.7882577069103718],[117,160,65,-0.7874624952673912],[117,160,66,-0.7858015894889832],[117,160,67,-0.7836802806705236],[117,160,68,-0.7818391248583794],[117,160,69,-0.7805978842079639],[117,160,70,-0.779931154102087],[117,160,71,-0.7792989611625671],[117,160,72,-0.7785233147442341],[117,160,73,-0.7778422683477402],[117,160,74,-0.7773886639624834],[117,160,75,-0.777093943208456],[117,160,76,-0.776702394708991],[117,160,77,-0.7759598940610886],[117,160,78,-0.7744757831096649],[117,160,79,-0.7725281454622746],[117,161,64,-0.7960702069103718],[117,161,65,-0.7952749952673912],[117,161,66,-0.7936140894889832],[117,161,67,-0.7914927806705236],[117,161,68,-0.7896516248583794],[117,161,69,-0.7884103842079639],[117,161,70,-0.787743654102087],[117,161,71,-0.7871114611625671],[117,161,72,-0.7863358147442341],[117,161,73,-0.7856547683477402],[117,161,74,-0.7852011639624834],[117,161,75,-0.784906443208456],[117,161,76,-0.784514894708991],[117,161,77,-0.7837723940610886],[117,161,78,-0.7822882831096649],[117,161,79,-0.7803406454622746],[117,162,64,-0.8038827069103718],[117,162,65,-0.8030874952673912],[117,162,66,-0.8014265894889832],[117,162,67,-0.7993052806705236],[117,162,68,-0.7974641248583794],[117,162,69,-0.7962228842079639],[117,162,70,-0.795556154102087],[117,162,71,-0.7949239611625671],[117,162,72,-0.7941483147442341],[117,162,73,-0.7934672683477402],[117,162,74,-0.7930136639624834],[117,162,75,-0.792718943208456],[117,162,76,-0.792327394708991],[117,162,77,-0.7915848940610886],[117,162,78,-0.7901007831096649],[117,162,79,-0.7881531454622746],[117,163,64,-0.8116952069103718],[117,163,65,-0.8108999952673912],[117,163,66,-0.8092390894889832],[117,163,67,-0.8071177806705236],[117,163,68,-0.8052766248583794],[117,163,69,-0.8040353842079639],[117,163,70,-0.803368654102087],[117,163,71,-0.8027364611625671],[117,163,72,-0.8019608147442341],[117,163,73,-0.8012797683477402],[117,163,74,-0.8008261639624834],[117,163,75,-0.800531443208456],[117,163,76,-0.800139894708991],[117,163,77,-0.7993973940610886],[117,163,78,-0.7979132831096649],[117,163,79,-0.7959656454622746],[117,164,64,-0.8195077069103718],[117,164,65,-0.8187124952673912],[117,164,66,-0.8170515894889832],[117,164,67,-0.8149302806705236],[117,164,68,-0.8130891248583794],[117,164,69,-0.8118478842079639],[117,164,70,-0.811181154102087],[117,164,71,-0.8105489611625671],[117,164,72,-0.8097733147442341],[117,164,73,-0.8090922683477402],[117,164,74,-0.8086386639624834],[117,164,75,-0.808343943208456],[117,164,76,-0.807952394708991],[117,164,77,-0.8072098940610886],[117,164,78,-0.8057257831096649],[117,164,79,-0.8037781454622746],[117,165,64,-0.8273202069103718],[117,165,65,-0.8265249952673912],[117,165,66,-0.8248640894889832],[117,165,67,-0.8227427806705236],[117,165,68,-0.8209016248583794],[117,165,69,-0.8196603842079639],[117,165,70,-0.818993654102087],[117,165,71,-0.8183614611625671],[117,165,72,-0.8175858147442341],[117,165,73,-0.8169047683477402],[117,165,74,-0.8164511639624834],[117,165,75,-0.816156443208456],[117,165,76,-0.815764894708991],[117,165,77,-0.8150223940610886],[117,165,78,-0.8135382831096649],[117,165,79,-0.8115906454622746],[117,166,64,-0.8351327069103718],[117,166,65,-0.8343374952673912],[117,166,66,-0.8326765894889832],[117,166,67,-0.8305552806705236],[117,166,68,-0.8287141248583794],[117,166,69,-0.8274728842079639],[117,166,70,-0.826806154102087],[117,166,71,-0.8261739611625671],[117,166,72,-0.8253983147442341],[117,166,73,-0.8247172683477402],[117,166,74,-0.8242636639624834],[117,166,75,-0.823968943208456],[117,166,76,-0.823577394708991],[117,166,77,-0.8228348940610886],[117,166,78,-0.8213507831096649],[117,166,79,-0.8194031454622746],[117,167,64,-0.8429452069103718],[117,167,65,-0.8421499952673912],[117,167,66,-0.8404890894889832],[117,167,67,-0.8383677806705236],[117,167,68,-0.8365266248583794],[117,167,69,-0.8352853842079639],[117,167,70,-0.834618654102087],[117,167,71,-0.8339864611625671],[117,167,72,-0.8332108147442341],[117,167,73,-0.8325297683477402],[117,167,74,-0.8320761639624834],[117,167,75,-0.831781443208456],[117,167,76,-0.831389894708991],[117,167,77,-0.8306473940610886],[117,167,78,-0.8291632831096649],[117,167,79,-0.8272156454622746],[117,168,64,-0.8507577069103718],[117,168,65,-0.8499624952673912],[117,168,66,-0.8483015894889832],[117,168,67,-0.8461802806705236],[117,168,68,-0.8443391248583794],[117,168,69,-0.8430978842079639],[117,168,70,-0.842431154102087],[117,168,71,-0.8417989611625671],[117,168,72,-0.8410233147442341],[117,168,73,-0.8403422683477402],[117,168,74,-0.8398886639624834],[117,168,75,-0.839593943208456],[117,168,76,-0.839202394708991],[117,168,77,-0.8384598940610886],[117,168,78,-0.8369757831096649],[117,168,79,-0.8350281454622746],[117,169,64,-0.8585702069103718],[117,169,65,-0.8577749952673912],[117,169,66,-0.8561140894889832],[117,169,67,-0.8539927806705236],[117,169,68,-0.8521516248583794],[117,169,69,-0.8509103842079639],[117,169,70,-0.850243654102087],[117,169,71,-0.8496114611625671],[117,169,72,-0.8488358147442341],[117,169,73,-0.8481547683477402],[117,169,74,-0.8477011639624834],[117,169,75,-0.847406443208456],[117,169,76,-0.847014894708991],[117,169,77,-0.8462723940610886],[117,169,78,-0.8447882831096649],[117,169,79,-0.8428406454622746],[117,170,64,-0.8663827069103718],[117,170,65,-0.8655874952673912],[117,170,66,-0.8639265894889832],[117,170,67,-0.8618052806705236],[117,170,68,-0.8599641248583794],[117,170,69,-0.8587228842079639],[117,170,70,-0.858056154102087],[117,170,71,-0.8574239611625671],[117,170,72,-0.8566483147442341],[117,170,73,-0.8559672683477402],[117,170,74,-0.8555136639624834],[117,170,75,-0.855218943208456],[117,170,76,-0.854827394708991],[117,170,77,-0.8540848940610886],[117,170,78,-0.8526007831096649],[117,170,79,-0.8506531454622746],[117,171,64,-0.8741952069103718],[117,171,65,-0.8733999952673912],[117,171,66,-0.8717390894889832],[117,171,67,-0.8696177806705236],[117,171,68,-0.8677766248583794],[117,171,69,-0.8665353842079639],[117,171,70,-0.865868654102087],[117,171,71,-0.8652364611625671],[117,171,72,-0.8644608147442341],[117,171,73,-0.8637797683477402],[117,171,74,-0.8633261639624834],[117,171,75,-0.863031443208456],[117,171,76,-0.862639894708991],[117,171,77,-0.8618973940610886],[117,171,78,-0.8604132831096649],[117,171,79,-0.8584656454622746],[117,172,64,-0.8820077069103718],[117,172,65,-0.8812124952673912],[117,172,66,-0.8795515894889832],[117,172,67,-0.8774302806705236],[117,172,68,-0.8755891248583794],[117,172,69,-0.8743478842079639],[117,172,70,-0.873681154102087],[117,172,71,-0.8730489611625671],[117,172,72,-0.8722733147442341],[117,172,73,-0.8715922683477402],[117,172,74,-0.8711386639624834],[117,172,75,-0.870843943208456],[117,172,76,-0.870452394708991],[117,172,77,-0.8697098940610886],[117,172,78,-0.8682257831096649],[117,172,79,-0.8662781454622746],[117,173,64,-0.8898202069103718],[117,173,65,-0.8890249952673912],[117,173,66,-0.8873640894889832],[117,173,67,-0.8852427806705236],[117,173,68,-0.8834016248583794],[117,173,69,-0.8821603842079639],[117,173,70,-0.881493654102087],[117,173,71,-0.8808614611625671],[117,173,72,-0.8800858147442341],[117,173,73,-0.8794047683477402],[117,173,74,-0.8789511639624834],[117,173,75,-0.878656443208456],[117,173,76,-0.878264894708991],[117,173,77,-0.8775223940610886],[117,173,78,-0.8760382831096649],[117,173,79,-0.8740906454622746],[117,174,64,-0.8976327069103718],[117,174,65,-0.8968374952673912],[117,174,66,-0.8951765894889832],[117,174,67,-0.8930552806705236],[117,174,68,-0.8912141248583794],[117,174,69,-0.8899728842079639],[117,174,70,-0.889306154102087],[117,174,71,-0.8886739611625671],[117,174,72,-0.8878983147442341],[117,174,73,-0.8872172683477402],[117,174,74,-0.8867636639624834],[117,174,75,-0.886468943208456],[117,174,76,-0.886077394708991],[117,174,77,-0.8853348940610886],[117,174,78,-0.8838507831096649],[117,174,79,-0.8819031454622746],[117,175,64,-0.9054452069103718],[117,175,65,-0.9046499952673912],[117,175,66,-0.9029890894889832],[117,175,67,-0.9008677806705236],[117,175,68,-0.8990266248583794],[117,175,69,-0.8977853842079639],[117,175,70,-0.897118654102087],[117,175,71,-0.8964864611625671],[117,175,72,-0.8957108147442341],[117,175,73,-0.8950297683477402],[117,175,74,-0.8945761639624834],[117,175,75,-0.894281443208456],[117,175,76,-0.893889894708991],[117,175,77,-0.8931473940610886],[117,175,78,-0.8916632831096649],[117,175,79,-0.8897156454622746],[117,176,64,-0.9132577069103718],[117,176,65,-0.9124624952673912],[117,176,66,-0.9108015894889832],[117,176,67,-0.9086802806705236],[117,176,68,-0.9068391248583794],[117,176,69,-0.9055978842079639],[117,176,70,-0.904931154102087],[117,176,71,-0.9042989611625671],[117,176,72,-0.9035233147442341],[117,176,73,-0.9028422683477402],[117,176,74,-0.9023886639624834],[117,176,75,-0.902093943208456],[117,176,76,-0.901702394708991],[117,176,77,-0.9009598940610886],[117,176,78,-0.8994757831096649],[117,176,79,-0.8975281454622746],[117,177,64,-0.9210702069103718],[117,177,65,-0.9202749952673912],[117,177,66,-0.9186140894889832],[117,177,67,-0.9164927806705236],[117,177,68,-0.9146516248583794],[117,177,69,-0.9134103842079639],[117,177,70,-0.912743654102087],[117,177,71,-0.9121114611625671],[117,177,72,-0.9113358147442341],[117,177,73,-0.9106547683477402],[117,177,74,-0.9102011639624834],[117,177,75,-0.909906443208456],[117,177,76,-0.909514894708991],[117,177,77,-0.9087723940610886],[117,177,78,-0.9072882831096649],[117,177,79,-0.9053406454622746],[117,178,64,-0.9288827069103718],[117,178,65,-0.9280874952673912],[117,178,66,-0.9264265894889832],[117,178,67,-0.9243052806705236],[117,178,68,-0.9224641248583794],[117,178,69,-0.9212228842079639],[117,178,70,-0.920556154102087],[117,178,71,-0.9199239611625671],[117,178,72,-0.9191483147442341],[117,178,73,-0.9184672683477402],[117,178,74,-0.9180136639624834],[117,178,75,-0.917718943208456],[117,178,76,-0.917327394708991],[117,178,77,-0.9165848940610886],[117,178,78,-0.9151007831096649],[117,178,79,-0.9131531454622746],[117,179,64,-0.9366952069103718],[117,179,65,-0.9358999952673912],[117,179,66,-0.9342390894889832],[117,179,67,-0.9321177806705236],[117,179,68,-0.9302766248583794],[117,179,69,-0.9290353842079639],[117,179,70,-0.928368654102087],[117,179,71,-0.9277364611625671],[117,179,72,-0.9269608147442341],[117,179,73,-0.9262797683477402],[117,179,74,-0.9258261639624834],[117,179,75,-0.925531443208456],[117,179,76,-0.925139894708991],[117,179,77,-0.9243973940610886],[117,179,78,-0.9229132831096649],[117,179,79,-0.9209656454622746],[117,180,64,-0.9445077069103718],[117,180,65,-0.9437124952673912],[117,180,66,-0.9420515894889832],[117,180,67,-0.9399302806705236],[117,180,68,-0.9380891248583794],[117,180,69,-0.9368478842079639],[117,180,70,-0.936181154102087],[117,180,71,-0.9355489611625671],[117,180,72,-0.9347733147442341],[117,180,73,-0.9340922683477402],[117,180,74,-0.9336386639624834],[117,180,75,-0.933343943208456],[117,180,76,-0.932952394708991],[117,180,77,-0.9322098940610886],[117,180,78,-0.9307257831096649],[117,180,79,-0.9287781454622746],[117,181,64,-0.9523202069103718],[117,181,65,-0.9515249952673912],[117,181,66,-0.9498640894889832],[117,181,67,-0.9477427806705236],[117,181,68,-0.9459016248583794],[117,181,69,-0.9446603842079639],[117,181,70,-0.943993654102087],[117,181,71,-0.9433614611625671],[117,181,72,-0.9425858147442341],[117,181,73,-0.9419047683477402],[117,181,74,-0.9414511639624834],[117,181,75,-0.941156443208456],[117,181,76,-0.940764894708991],[117,181,77,-0.9400223940610886],[117,181,78,-0.9385382831096649],[117,181,79,-0.9365906454622746],[117,182,64,-0.9601327069103718],[117,182,65,-0.9593374952673912],[117,182,66,-0.9576765894889832],[117,182,67,-0.9555552806705236],[117,182,68,-0.9537141248583794],[117,182,69,-0.9524728842079639],[117,182,70,-0.951806154102087],[117,182,71,-0.9511739611625671],[117,182,72,-0.9503983147442341],[117,182,73,-0.9497172683477402],[117,182,74,-0.9492636639624834],[117,182,75,-0.948968943208456],[117,182,76,-0.948577394708991],[117,182,77,-0.9478348940610886],[117,182,78,-0.9463507831096649],[117,182,79,-0.9444031454622746],[117,183,64,-0.9679452069103718],[117,183,65,-0.9671499952673912],[117,183,66,-0.9654890894889832],[117,183,67,-0.9633677806705236],[117,183,68,-0.9615266248583794],[117,183,69,-0.9602853842079639],[117,183,70,-0.959618654102087],[117,183,71,-0.9589864611625671],[117,183,72,-0.9582108147442341],[117,183,73,-0.9575297683477402],[117,183,74,-0.9570761639624834],[117,183,75,-0.956781443208456],[117,183,76,-0.956389894708991],[117,183,77,-0.9556473940610886],[117,183,78,-0.9541632831096649],[117,183,79,-0.9522156454622746],[117,184,64,-0.9757577069103718],[117,184,65,-0.9749624952673912],[117,184,66,-0.9733015894889832],[117,184,67,-0.9711802806705236],[117,184,68,-0.9693391248583794],[117,184,69,-0.9680978842079639],[117,184,70,-0.967431154102087],[117,184,71,-0.9667989611625671],[117,184,72,-0.9660233147442341],[117,184,73,-0.9653422683477402],[117,184,74,-0.9648886639624834],[117,184,75,-0.964593943208456],[117,184,76,-0.964202394708991],[117,184,77,-0.9634598940610886],[117,184,78,-0.9619757831096649],[117,184,79,-0.9600281454622746],[117,185,64,-0.9835702069103718],[117,185,65,-0.9827749952673912],[117,185,66,-0.9811140894889832],[117,185,67,-0.9789927806705236],[117,185,68,-0.9771516248583794],[117,185,69,-0.9759103842079639],[117,185,70,-0.975243654102087],[117,185,71,-0.9746114611625671],[117,185,72,-0.9738358147442341],[117,185,73,-0.9731547683477402],[117,185,74,-0.9727011639624834],[117,185,75,-0.972406443208456],[117,185,76,-0.972014894708991],[117,185,77,-0.9712723940610886],[117,185,78,-0.9697882831096649],[117,185,79,-0.9678406454622746],[117,186,64,-0.9913827069103718],[117,186,65,-0.9905874952673912],[117,186,66,-0.9889265894889832],[117,186,67,-0.9868052806705236],[117,186,68,-0.9849641248583794],[117,186,69,-0.9837228842079639],[117,186,70,-0.983056154102087],[117,186,71,-0.9824239611625671],[117,186,72,-0.9816483147442341],[117,186,73,-0.9809672683477402],[117,186,74,-0.9805136639624834],[117,186,75,-0.980218943208456],[117,186,76,-0.979827394708991],[117,186,77,-0.9790848940610886],[117,186,78,-0.9776007831096649],[117,186,79,-0.9756531454622746],[117,187,64,-0.9991952069103718],[117,187,65,-0.9983999952673912],[117,187,66,-0.9967390894889832],[117,187,67,-0.9946177806705236],[117,187,68,-0.9927766248583794],[117,187,69,-0.9915353842079639],[117,187,70,-0.990868654102087],[117,187,71,-0.9902364611625671],[117,187,72,-0.9894608147442341],[117,187,73,-0.9887797683477402],[117,187,74,-0.9883261639624834],[117,187,75,-0.988031443208456],[117,187,76,-0.987639894708991],[117,187,77,-0.9868973940610886],[117,187,78,-0.9854132831096649],[117,187,79,-0.9834656454622746],[117,188,64,-1.0070077069103718],[117,188,65,-1.0062124952673912],[117,188,66,-1.0045515894889832],[117,188,67,-1.0024302806705236],[117,188,68,-1.0005891248583794],[117,188,69,-0.9993478842079639],[117,188,70,-0.998681154102087],[117,188,71,-0.9980489611625671],[117,188,72,-0.9972733147442341],[117,188,73,-0.9965922683477402],[117,188,74,-0.9961386639624834],[117,188,75,-0.995843943208456],[117,188,76,-0.995452394708991],[117,188,77,-0.9947098940610886],[117,188,78,-0.9932257831096649],[117,188,79,-0.9912781454622746],[117,189,64,-1.0148202069103718],[117,189,65,-1.0140249952673912],[117,189,66,-1.0123640894889832],[117,189,67,-1.0102427806705236],[117,189,68,-1.0084016248583794],[117,189,69,-1.007160384207964],[117,189,70,-1.006493654102087],[117,189,71,-1.0058614611625671],[117,189,72,-1.005085814744234],[117,189,73,-1.0044047683477402],[117,189,74,-1.0039511639624834],[117,189,75,-1.003656443208456],[117,189,76,-1.003264894708991],[117,189,77,-1.0025223940610886],[117,189,78,-1.001038283109665],[117,189,79,-0.9990906454622746],[117,190,64,-1.0226327069103718],[117,190,65,-1.0218374952673912],[117,190,66,-1.0201765894889832],[117,190,67,-1.0180552806705236],[117,190,68,-1.0162141248583794],[117,190,69,-1.014972884207964],[117,190,70,-1.014306154102087],[117,190,71,-1.0136739611625671],[117,190,72,-1.012898314744234],[117,190,73,-1.0122172683477402],[117,190,74,-1.0117636639624834],[117,190,75,-1.011468943208456],[117,190,76,-1.011077394708991],[117,190,77,-1.0103348940610886],[117,190,78,-1.008850783109665],[117,190,79,-1.0069031454622746],[117,191,64,-1.0304452069103718],[117,191,65,-1.0296499952673912],[117,191,66,-1.0279890894889832],[117,191,67,-1.0258677806705236],[117,191,68,-1.0240266248583794],[117,191,69,-1.022785384207964],[117,191,70,-1.022118654102087],[117,191,71,-1.0214864611625671],[117,191,72,-1.020710814744234],[117,191,73,-1.0200297683477402],[117,191,74,-1.0195761639624834],[117,191,75,-1.019281443208456],[117,191,76,-1.018889894708991],[117,191,77,-1.0181473940610886],[117,191,78,-1.016663283109665],[117,191,79,-1.0147156454622746],[117,192,64,-1.0382577069103718],[117,192,65,-1.0374624952673912],[117,192,66,-1.0358015894889832],[117,192,67,-1.0336802806705236],[117,192,68,-1.0318391248583794],[117,192,69,-1.030597884207964],[117,192,70,-1.029931154102087],[117,192,71,-1.0292989611625671],[117,192,72,-1.028523314744234],[117,192,73,-1.0278422683477402],[117,192,74,-1.0273886639624834],[117,192,75,-1.027093943208456],[117,192,76,-1.026702394708991],[117,192,77,-1.0259598940610886],[117,192,78,-1.024475783109665],[117,192,79,-1.0225281454622746],[117,193,64,-1.0460702069103718],[117,193,65,-1.0452749952673912],[117,193,66,-1.0436140894889832],[117,193,67,-1.0414927806705236],[117,193,68,-1.0396516248583794],[117,193,69,-1.038410384207964],[117,193,70,-1.037743654102087],[117,193,71,-1.0371114611625671],[117,193,72,-1.036335814744234],[117,193,73,-1.0356547683477402],[117,193,74,-1.0352011639624834],[117,193,75,-1.034906443208456],[117,193,76,-1.034514894708991],[117,193,77,-1.0337723940610886],[117,193,78,-1.032288283109665],[117,193,79,-1.0303406454622746],[117,194,64,-1.0538827069103718],[117,194,65,-1.0530874952673912],[117,194,66,-1.0514265894889832],[117,194,67,-1.0493052806705236],[117,194,68,-1.0474641248583794],[117,194,69,-1.046222884207964],[117,194,70,-1.045556154102087],[117,194,71,-1.0449239611625671],[117,194,72,-1.044148314744234],[117,194,73,-1.0434672683477402],[117,194,74,-1.0430136639624834],[117,194,75,-1.042718943208456],[117,194,76,-1.042327394708991],[117,194,77,-1.0415848940610886],[117,194,78,-1.040100783109665],[117,194,79,-1.0381531454622746],[117,195,64,-1.0616952069103718],[117,195,65,-1.0608999952673912],[117,195,66,-1.0592390894889832],[117,195,67,-1.0571177806705236],[117,195,68,-1.0552766248583794],[117,195,69,-1.054035384207964],[117,195,70,-1.053368654102087],[117,195,71,-1.0527364611625671],[117,195,72,-1.051960814744234],[117,195,73,-1.0512797683477402],[117,195,74,-1.0508261639624834],[117,195,75,-1.050531443208456],[117,195,76,-1.050139894708991],[117,195,77,-1.0493973940610886],[117,195,78,-1.047913283109665],[117,195,79,-1.0459656454622746],[117,196,64,-1.0695077069103718],[117,196,65,-1.0687124952673912],[117,196,66,-1.0670515894889832],[117,196,67,-1.0649302806705236],[117,196,68,-1.0630891248583794],[117,196,69,-1.061847884207964],[117,196,70,-1.061181154102087],[117,196,71,-1.0605489611625671],[117,196,72,-1.059773314744234],[117,196,73,-1.0590922683477402],[117,196,74,-1.0586386639624834],[117,196,75,-1.058343943208456],[117,196,76,-1.057952394708991],[117,196,77,-1.0572098940610886],[117,196,78,-1.055725783109665],[117,196,79,-1.0537781454622746],[117,197,64,-1.0773202069103718],[117,197,65,-1.0765249952673912],[117,197,66,-1.0748640894889832],[117,197,67,-1.0727427806705236],[117,197,68,-1.0709016248583794],[117,197,69,-1.069660384207964],[117,197,70,-1.068993654102087],[117,197,71,-1.0683614611625671],[117,197,72,-1.067585814744234],[117,197,73,-1.0669047683477402],[117,197,74,-1.0664511639624834],[117,197,75,-1.066156443208456],[117,197,76,-1.065764894708991],[117,197,77,-1.0650223940610886],[117,197,78,-1.063538283109665],[117,197,79,-1.0615906454622746],[117,198,64,-1.0851327069103718],[117,198,65,-1.0843374952673912],[117,198,66,-1.0826765894889832],[117,198,67,-1.0805552806705236],[117,198,68,-1.0787141248583794],[117,198,69,-1.077472884207964],[117,198,70,-1.076806154102087],[117,198,71,-1.0761739611625671],[117,198,72,-1.075398314744234],[117,198,73,-1.0747172683477402],[117,198,74,-1.0742636639624834],[117,198,75,-1.073968943208456],[117,198,76,-1.073577394708991],[117,198,77,-1.0728348940610886],[117,198,78,-1.071350783109665],[117,198,79,-1.0694031454622746],[117,199,64,-1.0929452069103718],[117,199,65,-1.0921499952673912],[117,199,66,-1.0904890894889832],[117,199,67,-1.0883677806705236],[117,199,68,-1.0865266248583794],[117,199,69,-1.085285384207964],[117,199,70,-1.084618654102087],[117,199,71,-1.0839864611625671],[117,199,72,-1.083210814744234],[117,199,73,-1.0825297683477402],[117,199,74,-1.0820761639624834],[117,199,75,-1.081781443208456],[117,199,76,-1.081389894708991],[117,199,77,-1.0806473940610886],[117,199,78,-1.079163283109665],[117,199,79,-1.0772156454622746],[117,200,64,-1.1007577069103718],[117,200,65,-1.0999624952673912],[117,200,66,-1.0983015894889832],[117,200,67,-1.0961802806705236],[117,200,68,-1.0943391248583794],[117,200,69,-1.093097884207964],[117,200,70,-1.092431154102087],[117,200,71,-1.0917989611625671],[117,200,72,-1.091023314744234],[117,200,73,-1.0903422683477402],[117,200,74,-1.0898886639624834],[117,200,75,-1.089593943208456],[117,200,76,-1.089202394708991],[117,200,77,-1.0884598940610886],[117,200,78,-1.086975783109665],[117,200,79,-1.0850281454622746],[117,201,64,-1.1085702069103718],[117,201,65,-1.1077749952673912],[117,201,66,-1.1061140894889832],[117,201,67,-1.1039927806705236],[117,201,68,-1.1021516248583794],[117,201,69,-1.100910384207964],[117,201,70,-1.100243654102087],[117,201,71,-1.0996114611625671],[117,201,72,-1.098835814744234],[117,201,73,-1.0981547683477402],[117,201,74,-1.0977011639624834],[117,201,75,-1.097406443208456],[117,201,76,-1.097014894708991],[117,201,77,-1.0962723940610886],[117,201,78,-1.094788283109665],[117,201,79,-1.0928406454622746],[117,202,64,-1.1163827069103718],[117,202,65,-1.1155874952673912],[117,202,66,-1.1139265894889832],[117,202,67,-1.1118052806705236],[117,202,68,-1.1099641248583794],[117,202,69,-1.108722884207964],[117,202,70,-1.108056154102087],[117,202,71,-1.1074239611625671],[117,202,72,-1.106648314744234],[117,202,73,-1.1059672683477402],[117,202,74,-1.1055136639624834],[117,202,75,-1.105218943208456],[117,202,76,-1.104827394708991],[117,202,77,-1.1040848940610886],[117,202,78,-1.102600783109665],[117,202,79,-1.1006531454622746],[117,203,64,-1.1241952069103718],[117,203,65,-1.1233999952673912],[117,203,66,-1.1217390894889832],[117,203,67,-1.1196177806705236],[117,203,68,-1.1177766248583794],[117,203,69,-1.116535384207964],[117,203,70,-1.115868654102087],[117,203,71,-1.1152364611625671],[117,203,72,-1.114460814744234],[117,203,73,-1.1137797683477402],[117,203,74,-1.1133261639624834],[117,203,75,-1.113031443208456],[117,203,76,-1.112639894708991],[117,203,77,-1.1118973940610886],[117,203,78,-1.110413283109665],[117,203,79,-1.1084656454622746],[117,204,64,-1.1320077069103718],[117,204,65,-1.1312124952673912],[117,204,66,-1.1295515894889832],[117,204,67,-1.1274302806705236],[117,204,68,-1.1255891248583794],[117,204,69,-1.124347884207964],[117,204,70,-1.123681154102087],[117,204,71,-1.1230489611625671],[117,204,72,-1.122273314744234],[117,204,73,-1.1215922683477402],[117,204,74,-1.1211386639624834],[117,204,75,-1.120843943208456],[117,204,76,-1.120452394708991],[117,204,77,-1.1197098940610886],[117,204,78,-1.118225783109665],[117,204,79,-1.1162781454622746],[117,205,64,-1.1398202069103718],[117,205,65,-1.1390249952673912],[117,205,66,-1.1373640894889832],[117,205,67,-1.1352427806705236],[117,205,68,-1.1334016248583794],[117,205,69,-1.132160384207964],[117,205,70,-1.131493654102087],[117,205,71,-1.1308614611625671],[117,205,72,-1.130085814744234],[117,205,73,-1.1294047683477402],[117,205,74,-1.1289511639624834],[117,205,75,-1.128656443208456],[117,205,76,-1.128264894708991],[117,205,77,-1.1275223940610886],[117,205,78,-1.126038283109665],[117,205,79,-1.1240906454622746],[117,206,64,-1.1476327069103718],[117,206,65,-1.1468374952673912],[117,206,66,-1.1451765894889832],[117,206,67,-1.1430552806705236],[117,206,68,-1.1412141248583794],[117,206,69,-1.139972884207964],[117,206,70,-1.139306154102087],[117,206,71,-1.1386739611625671],[117,206,72,-1.137898314744234],[117,206,73,-1.1372172683477402],[117,206,74,-1.1367636639624834],[117,206,75,-1.136468943208456],[117,206,76,-1.136077394708991],[117,206,77,-1.1353348940610886],[117,206,78,-1.133850783109665],[117,206,79,-1.1319031454622746],[117,207,64,-1.1554452069103718],[117,207,65,-1.1546499952673912],[117,207,66,-1.1529890894889832],[117,207,67,-1.1508677806705236],[117,207,68,-1.1490266248583794],[117,207,69,-1.147785384207964],[117,207,70,-1.147118654102087],[117,207,71,-1.1464864611625671],[117,207,72,-1.145710814744234],[117,207,73,-1.1450297683477402],[117,207,74,-1.1445761639624834],[117,207,75,-1.144281443208456],[117,207,76,-1.143889894708991],[117,207,77,-1.1431473940610886],[117,207,78,-1.141663283109665],[117,207,79,-1.1397156454622746],[117,208,64,-1.1632577069103718],[117,208,65,-1.1624624952673912],[117,208,66,-1.1608015894889832],[117,208,67,-1.1586802806705236],[117,208,68,-1.1568391248583794],[117,208,69,-1.155597884207964],[117,208,70,-1.154931154102087],[117,208,71,-1.1542989611625671],[117,208,72,-1.153523314744234],[117,208,73,-1.1528422683477402],[117,208,74,-1.1523886639624834],[117,208,75,-1.152093943208456],[117,208,76,-1.151702394708991],[117,208,77,-1.1509598940610886],[117,208,78,-1.149475783109665],[117,208,79,-1.1475281454622746],[117,209,64,-1.1710702069103718],[117,209,65,-1.1702749952673912],[117,209,66,-1.1686140894889832],[117,209,67,-1.1664927806705236],[117,209,68,-1.1646516248583794],[117,209,69,-1.163410384207964],[117,209,70,-1.162743654102087],[117,209,71,-1.1621114611625671],[117,209,72,-1.161335814744234],[117,209,73,-1.1606547683477402],[117,209,74,-1.1602011639624834],[117,209,75,-1.159906443208456],[117,209,76,-1.159514894708991],[117,209,77,-1.1587723940610886],[117,209,78,-1.157288283109665],[117,209,79,-1.1553406454622746],[117,210,64,-1.1788827069103718],[117,210,65,-1.1780874952673912],[117,210,66,-1.1764265894889832],[117,210,67,-1.1743052806705236],[117,210,68,-1.1724641248583794],[117,210,69,-1.171222884207964],[117,210,70,-1.170556154102087],[117,210,71,-1.1699239611625671],[117,210,72,-1.169148314744234],[117,210,73,-1.1684672683477402],[117,210,74,-1.1680136639624834],[117,210,75,-1.167718943208456],[117,210,76,-1.167327394708991],[117,210,77,-1.1665848940610886],[117,210,78,-1.165100783109665],[117,210,79,-1.1631531454622746],[117,211,64,-1.1866952069103718],[117,211,65,-1.1858999952673912],[117,211,66,-1.1842390894889832],[117,211,67,-1.1821177806705236],[117,211,68,-1.1802766248583794],[117,211,69,-1.179035384207964],[117,211,70,-1.178368654102087],[117,211,71,-1.1777364611625671],[117,211,72,-1.176960814744234],[117,211,73,-1.1762797683477402],[117,211,74,-1.1758261639624834],[117,211,75,-1.175531443208456],[117,211,76,-1.175139894708991],[117,211,77,-1.1743973940610886],[117,211,78,-1.172913283109665],[117,211,79,-1.1709656454622746],[117,212,64,-1.1945077069103718],[117,212,65,-1.1937124952673912],[117,212,66,-1.1920515894889832],[117,212,67,-1.1899302806705236],[117,212,68,-1.1880891248583794],[117,212,69,-1.186847884207964],[117,212,70,-1.186181154102087],[117,212,71,-1.1855489611625671],[117,212,72,-1.184773314744234],[117,212,73,-1.1840922683477402],[117,212,74,-1.1836386639624834],[117,212,75,-1.183343943208456],[117,212,76,-1.182952394708991],[117,212,77,-1.1822098940610886],[117,212,78,-1.180725783109665],[117,212,79,-1.1787781454622746],[117,213,64,-1.2023202069103718],[117,213,65,-1.2015249952673912],[117,213,66,-1.1998640894889832],[117,213,67,-1.1977427806705236],[117,213,68,-1.1959016248583794],[117,213,69,-1.194660384207964],[117,213,70,-1.193993654102087],[117,213,71,-1.1933614611625671],[117,213,72,-1.192585814744234],[117,213,73,-1.1919047683477402],[117,213,74,-1.1914511639624834],[117,213,75,-1.191156443208456],[117,213,76,-1.190764894708991],[117,213,77,-1.1900223940610886],[117,213,78,-1.188538283109665],[117,213,79,-1.1865906454622746],[117,214,64,-1.2101327069103718],[117,214,65,-1.2093374952673912],[117,214,66,-1.2076765894889832],[117,214,67,-1.2055552806705236],[117,214,68,-1.2037141248583794],[117,214,69,-1.202472884207964],[117,214,70,-1.201806154102087],[117,214,71,-1.2011739611625671],[117,214,72,-1.200398314744234],[117,214,73,-1.1997172683477402],[117,214,74,-1.1992636639624834],[117,214,75,-1.198968943208456],[117,214,76,-1.198577394708991],[117,214,77,-1.1978348940610886],[117,214,78,-1.196350783109665],[117,214,79,-1.1944031454622746],[117,215,64,-1.2179452069103718],[117,215,65,-1.2171499952673912],[117,215,66,-1.2154890894889832],[117,215,67,-1.2133677806705236],[117,215,68,-1.2115266248583794],[117,215,69,-1.210285384207964],[117,215,70,-1.209618654102087],[117,215,71,-1.2089864611625671],[117,215,72,-1.208210814744234],[117,215,73,-1.2075297683477402],[117,215,74,-1.2070761639624834],[117,215,75,-1.206781443208456],[117,215,76,-1.206389894708991],[117,215,77,-1.2056473940610886],[117,215,78,-1.204163283109665],[117,215,79,-1.2022156454622746],[117,216,64,-1.2257577069103718],[117,216,65,-1.2249624952673912],[117,216,66,-1.2233015894889832],[117,216,67,-1.2211802806705236],[117,216,68,-1.2193391248583794],[117,216,69,-1.218097884207964],[117,216,70,-1.217431154102087],[117,216,71,-1.2167989611625671],[117,216,72,-1.216023314744234],[117,216,73,-1.2153422683477402],[117,216,74,-1.2148886639624834],[117,216,75,-1.214593943208456],[117,216,76,-1.214202394708991],[117,216,77,-1.2134598940610886],[117,216,78,-1.211975783109665],[117,216,79,-1.2100281454622746],[117,217,64,-1.2335702069103718],[117,217,65,-1.2327749952673912],[117,217,66,-1.2311140894889832],[117,217,67,-1.2289927806705236],[117,217,68,-1.2271516248583794],[117,217,69,-1.225910384207964],[117,217,70,-1.225243654102087],[117,217,71,-1.2246114611625671],[117,217,72,-1.223835814744234],[117,217,73,-1.2231547683477402],[117,217,74,-1.2227011639624834],[117,217,75,-1.222406443208456],[117,217,76,-1.222014894708991],[117,217,77,-1.2212723940610886],[117,217,78,-1.219788283109665],[117,217,79,-1.2178406454622746],[117,218,64,-1.2413827069103718],[117,218,65,-1.2405874952673912],[117,218,66,-1.2389265894889832],[117,218,67,-1.2368052806705236],[117,218,68,-1.2349641248583794],[117,218,69,-1.233722884207964],[117,218,70,-1.233056154102087],[117,218,71,-1.2324239611625671],[117,218,72,-1.231648314744234],[117,218,73,-1.2309672683477402],[117,218,74,-1.2305136639624834],[117,218,75,-1.230218943208456],[117,218,76,-1.229827394708991],[117,218,77,-1.2290848940610886],[117,218,78,-1.227600783109665],[117,218,79,-1.2256531454622746],[117,219,64,-1.2491952069103718],[117,219,65,-1.2483999952673912],[117,219,66,-1.2467390894889832],[117,219,67,-1.2446177806705236],[117,219,68,-1.2427766248583794],[117,219,69,-1.241535384207964],[117,219,70,-1.240868654102087],[117,219,71,-1.2402364611625671],[117,219,72,-1.239460814744234],[117,219,73,-1.2387797683477402],[117,219,74,-1.2383261639624834],[117,219,75,-1.238031443208456],[117,219,76,-1.237639894708991],[117,219,77,-1.2368973940610886],[117,219,78,-1.235413283109665],[117,219,79,-1.2334656454622746],[117,220,64,-1.2570077069103718],[117,220,65,-1.2562124952673912],[117,220,66,-1.2545515894889832],[117,220,67,-1.2524302806705236],[117,220,68,-1.2505891248583794],[117,220,69,-1.249347884207964],[117,220,70,-1.248681154102087],[117,220,71,-1.2480489611625671],[117,220,72,-1.247273314744234],[117,220,73,-1.2465922683477402],[117,220,74,-1.2461386639624834],[117,220,75,-1.245843943208456],[117,220,76,-1.245452394708991],[117,220,77,-1.2447098940610886],[117,220,78,-1.243225783109665],[117,220,79,-1.2412781454622746],[117,221,64,-1.2648202069103718],[117,221,65,-1.2640249952673912],[117,221,66,-1.2623640894889832],[117,221,67,-1.2602427806705236],[117,221,68,-1.2584016248583794],[117,221,69,-1.257160384207964],[117,221,70,-1.256493654102087],[117,221,71,-1.2558614611625671],[117,221,72,-1.255085814744234],[117,221,73,-1.2544047683477402],[117,221,74,-1.2539511639624834],[117,221,75,-1.253656443208456],[117,221,76,-1.253264894708991],[117,221,77,-1.2525223940610886],[117,221,78,-1.251038283109665],[117,221,79,-1.2490906454622746],[117,222,64,-1.2726327069103718],[117,222,65,-1.2718374952673912],[117,222,66,-1.2701765894889832],[117,222,67,-1.2680552806705236],[117,222,68,-1.2662141248583794],[117,222,69,-1.264972884207964],[117,222,70,-1.264306154102087],[117,222,71,-1.2636739611625671],[117,222,72,-1.262898314744234],[117,222,73,-1.2622172683477402],[117,222,74,-1.2617636639624834],[117,222,75,-1.261468943208456],[117,222,76,-1.261077394708991],[117,222,77,-1.2603348940610886],[117,222,78,-1.258850783109665],[117,222,79,-1.2569031454622746],[117,223,64,-1.2804452069103718],[117,223,65,-1.2796499952673912],[117,223,66,-1.2779890894889832],[117,223,67,-1.2758677806705236],[117,223,68,-1.2740266248583794],[117,223,69,-1.272785384207964],[117,223,70,-1.272118654102087],[117,223,71,-1.2714864611625671],[117,223,72,-1.270710814744234],[117,223,73,-1.2700297683477402],[117,223,74,-1.2695761639624834],[117,223,75,-1.269281443208456],[117,223,76,-1.268889894708991],[117,223,77,-1.2681473940610886],[117,223,78,-1.266663283109665],[117,223,79,-1.2647156454622746],[117,224,64,-1.2882577069103718],[117,224,65,-1.2874624952673912],[117,224,66,-1.2858015894889832],[117,224,67,-1.2836802806705236],[117,224,68,-1.2818391248583794],[117,224,69,-1.280597884207964],[117,224,70,-1.279931154102087],[117,224,71,-1.2792989611625671],[117,224,72,-1.278523314744234],[117,224,73,-1.2778422683477402],[117,224,74,-1.2773886639624834],[117,224,75,-1.277093943208456],[117,224,76,-1.276702394708991],[117,224,77,-1.2759598940610886],[117,224,78,-1.274475783109665],[117,224,79,-1.2725281454622746],[117,225,64,-1.2960702069103718],[117,225,65,-1.2952749952673912],[117,225,66,-1.2936140894889832],[117,225,67,-1.2914927806705236],[117,225,68,-1.2896516248583794],[117,225,69,-1.288410384207964],[117,225,70,-1.287743654102087],[117,225,71,-1.2871114611625671],[117,225,72,-1.286335814744234],[117,225,73,-1.2856547683477402],[117,225,74,-1.2852011639624834],[117,225,75,-1.284906443208456],[117,225,76,-1.284514894708991],[117,225,77,-1.2837723940610886],[117,225,78,-1.282288283109665],[117,225,79,-1.2803406454622746],[117,226,64,-1.3038827069103718],[117,226,65,-1.3030874952673912],[117,226,66,-1.3014265894889832],[117,226,67,-1.2993052806705236],[117,226,68,-1.2974641248583794],[117,226,69,-1.296222884207964],[117,226,70,-1.295556154102087],[117,226,71,-1.2949239611625671],[117,226,72,-1.294148314744234],[117,226,73,-1.2934672683477402],[117,226,74,-1.2930136639624834],[117,226,75,-1.292718943208456],[117,226,76,-1.292327394708991],[117,226,77,-1.2915848940610886],[117,226,78,-1.290100783109665],[117,226,79,-1.2881531454622746],[117,227,64,-1.3116952069103718],[117,227,65,-1.3108999952673912],[117,227,66,-1.3092390894889832],[117,227,67,-1.3071177806705236],[117,227,68,-1.3052766248583794],[117,227,69,-1.304035384207964],[117,227,70,-1.303368654102087],[117,227,71,-1.3027364611625671],[117,227,72,-1.301960814744234],[117,227,73,-1.3012797683477402],[117,227,74,-1.3008261639624834],[117,227,75,-1.300531443208456],[117,227,76,-1.300139894708991],[117,227,77,-1.2993973940610886],[117,227,78,-1.297913283109665],[117,227,79,-1.2959656454622746],[117,228,64,-1.3195077069103718],[117,228,65,-1.3187124952673912],[117,228,66,-1.3170515894889832],[117,228,67,-1.3149302806705236],[117,228,68,-1.3130891248583794],[117,228,69,-1.311847884207964],[117,228,70,-1.311181154102087],[117,228,71,-1.3105489611625671],[117,228,72,-1.309773314744234],[117,228,73,-1.3090922683477402],[117,228,74,-1.3086386639624834],[117,228,75,-1.308343943208456],[117,228,76,-1.307952394708991],[117,228,77,-1.3072098940610886],[117,228,78,-1.305725783109665],[117,228,79,-1.3037781454622746],[117,229,64,-1.3273202069103718],[117,229,65,-1.3265249952673912],[117,229,66,-1.3248640894889832],[117,229,67,-1.3227427806705236],[117,229,68,-1.3209016248583794],[117,229,69,-1.319660384207964],[117,229,70,-1.318993654102087],[117,229,71,-1.3183614611625671],[117,229,72,-1.317585814744234],[117,229,73,-1.3169047683477402],[117,229,74,-1.3164511639624834],[117,229,75,-1.316156443208456],[117,229,76,-1.315764894708991],[117,229,77,-1.3150223940610886],[117,229,78,-1.313538283109665],[117,229,79,-1.3115906454622746],[117,230,64,-1.3351327069103718],[117,230,65,-1.3343374952673912],[117,230,66,-1.3326765894889832],[117,230,67,-1.3305552806705236],[117,230,68,-1.3287141248583794],[117,230,69,-1.327472884207964],[117,230,70,-1.326806154102087],[117,230,71,-1.3261739611625671],[117,230,72,-1.325398314744234],[117,230,73,-1.3247172683477402],[117,230,74,-1.3242636639624834],[117,230,75,-1.323968943208456],[117,230,76,-1.323577394708991],[117,230,77,-1.3228348940610886],[117,230,78,-1.321350783109665],[117,230,79,-1.3194031454622746],[117,231,64,-1.3429452069103718],[117,231,65,-1.3421499952673912],[117,231,66,-1.3404890894889832],[117,231,67,-1.3383677806705236],[117,231,68,-1.3365266248583794],[117,231,69,-1.335285384207964],[117,231,70,-1.334618654102087],[117,231,71,-1.3339864611625671],[117,231,72,-1.333210814744234],[117,231,73,-1.3325297683477402],[117,231,74,-1.3320761639624834],[117,231,75,-1.331781443208456],[117,231,76,-1.331389894708991],[117,231,77,-1.3306473940610886],[117,231,78,-1.329163283109665],[117,231,79,-1.3272156454622746],[117,232,64,-1.3507577069103718],[117,232,65,-1.3499624952673912],[117,232,66,-1.3483015894889832],[117,232,67,-1.3461802806705236],[117,232,68,-1.3443391248583794],[117,232,69,-1.343097884207964],[117,232,70,-1.342431154102087],[117,232,71,-1.3417989611625671],[117,232,72,-1.341023314744234],[117,232,73,-1.3403422683477402],[117,232,74,-1.3398886639624834],[117,232,75,-1.339593943208456],[117,232,76,-1.339202394708991],[117,232,77,-1.3384598940610886],[117,232,78,-1.336975783109665],[117,232,79,-1.3350281454622746],[117,233,64,-1.3585702069103718],[117,233,65,-1.3577749952673912],[117,233,66,-1.3561140894889832],[117,233,67,-1.3539927806705236],[117,233,68,-1.3521516248583794],[117,233,69,-1.350910384207964],[117,233,70,-1.350243654102087],[117,233,71,-1.3496114611625671],[117,233,72,-1.348835814744234],[117,233,73,-1.3481547683477402],[117,233,74,-1.3477011639624834],[117,233,75,-1.347406443208456],[117,233,76,-1.347014894708991],[117,233,77,-1.3462723940610886],[117,233,78,-1.344788283109665],[117,233,79,-1.3428406454622746],[117,234,64,-1.3663827069103718],[117,234,65,-1.3655874952673912],[117,234,66,-1.3639265894889832],[117,234,67,-1.3618052806705236],[117,234,68,-1.3599641248583794],[117,234,69,-1.358722884207964],[117,234,70,-1.358056154102087],[117,234,71,-1.3574239611625671],[117,234,72,-1.356648314744234],[117,234,73,-1.3559672683477402],[117,234,74,-1.3555136639624834],[117,234,75,-1.355218943208456],[117,234,76,-1.354827394708991],[117,234,77,-1.3540848940610886],[117,234,78,-1.352600783109665],[117,234,79,-1.3506531454622746],[117,235,64,-1.3741952069103718],[117,235,65,-1.3733999952673912],[117,235,66,-1.3717390894889832],[117,235,67,-1.3696177806705236],[117,235,68,-1.3677766248583794],[117,235,69,-1.366535384207964],[117,235,70,-1.365868654102087],[117,235,71,-1.3652364611625671],[117,235,72,-1.364460814744234],[117,235,73,-1.3637797683477402],[117,235,74,-1.3633261639624834],[117,235,75,-1.363031443208456],[117,235,76,-1.362639894708991],[117,235,77,-1.3618973940610886],[117,235,78,-1.360413283109665],[117,235,79,-1.3584656454622746],[117,236,64,-1.3820077069103718],[117,236,65,-1.3812124952673912],[117,236,66,-1.3795515894889832],[117,236,67,-1.3774302806705236],[117,236,68,-1.3755891248583794],[117,236,69,-1.374347884207964],[117,236,70,-1.373681154102087],[117,236,71,-1.3730489611625671],[117,236,72,-1.372273314744234],[117,236,73,-1.3715922683477402],[117,236,74,-1.3711386639624834],[117,236,75,-1.370843943208456],[117,236,76,-1.370452394708991],[117,236,77,-1.3697098940610886],[117,236,78,-1.368225783109665],[117,236,79,-1.3662781454622746],[117,237,64,-1.3898202069103718],[117,237,65,-1.3890249952673912],[117,237,66,-1.3873640894889832],[117,237,67,-1.3852427806705236],[117,237,68,-1.3834016248583794],[117,237,69,-1.382160384207964],[117,237,70,-1.381493654102087],[117,237,71,-1.3808614611625671],[117,237,72,-1.380085814744234],[117,237,73,-1.3794047683477402],[117,237,74,-1.3789511639624834],[117,237,75,-1.378656443208456],[117,237,76,-1.378264894708991],[117,237,77,-1.3775223940610886],[117,237,78,-1.376038283109665],[117,237,79,-1.3740906454622746],[117,238,64,-1.3976327069103718],[117,238,65,-1.3968374952673912],[117,238,66,-1.3951765894889832],[117,238,67,-1.3930552806705236],[117,238,68,-1.3912141248583794],[117,238,69,-1.389972884207964],[117,238,70,-1.389306154102087],[117,238,71,-1.3886739611625671],[117,238,72,-1.387898314744234],[117,238,73,-1.3872172683477402],[117,238,74,-1.3867636639624834],[117,238,75,-1.386468943208456],[117,238,76,-1.386077394708991],[117,238,77,-1.3853348940610886],[117,238,78,-1.383850783109665],[117,238,79,-1.3819031454622746],[117,239,64,-1.4054452069103718],[117,239,65,-1.4046499952673912],[117,239,66,-1.4029890894889832],[117,239,67,-1.4008677806705236],[117,239,68,-1.3990266248583794],[117,239,69,-1.397785384207964],[117,239,70,-1.397118654102087],[117,239,71,-1.3964864611625671],[117,239,72,-1.395710814744234],[117,239,73,-1.3950297683477402],[117,239,74,-1.3945761639624834],[117,239,75,-1.394281443208456],[117,239,76,-1.393889894708991],[117,239,77,-1.3931473940610886],[117,239,78,-1.391663283109665],[117,239,79,-1.3897156454622746],[117,240,64,-1.4132577069103718],[117,240,65,-1.4124624952673912],[117,240,66,-1.4108015894889832],[117,240,67,-1.4086802806705236],[117,240,68,-1.4068391248583794],[117,240,69,-1.405597884207964],[117,240,70,-1.404931154102087],[117,240,71,-1.4042989611625671],[117,240,72,-1.403523314744234],[117,240,73,-1.4028422683477402],[117,240,74,-1.4023886639624834],[117,240,75,-1.402093943208456],[117,240,76,-1.401702394708991],[117,240,77,-1.4009598940610886],[117,240,78,-1.399475783109665],[117,240,79,-1.3975281454622746],[117,241,64,-1.4210702069103718],[117,241,65,-1.4202749952673912],[117,241,66,-1.4186140894889832],[117,241,67,-1.4164927806705236],[117,241,68,-1.4146516248583794],[117,241,69,-1.413410384207964],[117,241,70,-1.412743654102087],[117,241,71,-1.4121114611625671],[117,241,72,-1.411335814744234],[117,241,73,-1.4106547683477402],[117,241,74,-1.4102011639624834],[117,241,75,-1.409906443208456],[117,241,76,-1.409514894708991],[117,241,77,-1.4087723940610886],[117,241,78,-1.407288283109665],[117,241,79,-1.4053406454622746],[117,242,64,-1.4288827069103718],[117,242,65,-1.4280874952673912],[117,242,66,-1.4264265894889832],[117,242,67,-1.4243052806705236],[117,242,68,-1.4224641248583794],[117,242,69,-1.421222884207964],[117,242,70,-1.420556154102087],[117,242,71,-1.4199239611625671],[117,242,72,-1.419148314744234],[117,242,73,-1.4184672683477402],[117,242,74,-1.4180136639624834],[117,242,75,-1.417718943208456],[117,242,76,-1.417327394708991],[117,242,77,-1.4165848940610886],[117,242,78,-1.415100783109665],[117,242,79,-1.4131531454622746],[117,243,64,-1.4366952069103718],[117,243,65,-1.4358999952673912],[117,243,66,-1.4342390894889832],[117,243,67,-1.4321177806705236],[117,243,68,-1.4302766248583794],[117,243,69,-1.429035384207964],[117,243,70,-1.428368654102087],[117,243,71,-1.4277364611625671],[117,243,72,-1.426960814744234],[117,243,73,-1.4262797683477402],[117,243,74,-1.4258261639624834],[117,243,75,-1.425531443208456],[117,243,76,-1.425139894708991],[117,243,77,-1.4243973940610886],[117,243,78,-1.422913283109665],[117,243,79,-1.4209656454622746],[117,244,64,-1.4445077069103718],[117,244,65,-1.4437124952673912],[117,244,66,-1.4420515894889832],[117,244,67,-1.4399302806705236],[117,244,68,-1.4380891248583794],[117,244,69,-1.436847884207964],[117,244,70,-1.436181154102087],[117,244,71,-1.4355489611625671],[117,244,72,-1.434773314744234],[117,244,73,-1.4340922683477402],[117,244,74,-1.4336386639624834],[117,244,75,-1.433343943208456],[117,244,76,-1.432952394708991],[117,244,77,-1.4322098940610886],[117,244,78,-1.430725783109665],[117,244,79,-1.4287781454622746],[117,245,64,-1.4523202069103718],[117,245,65,-1.4515249952673912],[117,245,66,-1.4498640894889832],[117,245,67,-1.4477427806705236],[117,245,68,-1.4459016248583794],[117,245,69,-1.444660384207964],[117,245,70,-1.443993654102087],[117,245,71,-1.4433614611625671],[117,245,72,-1.442585814744234],[117,245,73,-1.4419047683477402],[117,245,74,-1.4414511639624834],[117,245,75,-1.441156443208456],[117,245,76,-1.440764894708991],[117,245,77,-1.4400223940610886],[117,245,78,-1.438538283109665],[117,245,79,-1.4365906454622746],[117,246,64,-1.4601327069103718],[117,246,65,-1.4593374952673912],[117,246,66,-1.4576765894889832],[117,246,67,-1.4555552806705236],[117,246,68,-1.4537141248583794],[117,246,69,-1.452472884207964],[117,246,70,-1.451806154102087],[117,246,71,-1.4511739611625671],[117,246,72,-1.450398314744234],[117,246,73,-1.4497172683477402],[117,246,74,-1.4492636639624834],[117,246,75,-1.448968943208456],[117,246,76,-1.448577394708991],[117,246,77,-1.4478348940610886],[117,246,78,-1.446350783109665],[117,246,79,-1.4444031454622746],[117,247,64,-1.4679452069103718],[117,247,65,-1.4671499952673912],[117,247,66,-1.4654890894889832],[117,247,67,-1.4633677806705236],[117,247,68,-1.4615266248583794],[117,247,69,-1.460285384207964],[117,247,70,-1.459618654102087],[117,247,71,-1.4589864611625671],[117,247,72,-1.458210814744234],[117,247,73,-1.4575297683477402],[117,247,74,-1.4570761639624834],[117,247,75,-1.456781443208456],[117,247,76,-1.456389894708991],[117,247,77,-1.4556473940610886],[117,247,78,-1.454163283109665],[117,247,79,-1.4522156454622746],[117,248,64,-1.4757577069103718],[117,248,65,-1.4749624952673912],[117,248,66,-1.4733015894889832],[117,248,67,-1.4711802806705236],[117,248,68,-1.4693391248583794],[117,248,69,-1.468097884207964],[117,248,70,-1.467431154102087],[117,248,71,-1.4667989611625671],[117,248,72,-1.466023314744234],[117,248,73,-1.4653422683477402],[117,248,74,-1.4648886639624834],[117,248,75,-1.464593943208456],[117,248,76,-1.464202394708991],[117,248,77,-1.4634598940610886],[117,248,78,-1.461975783109665],[117,248,79,-1.4600281454622746],[117,249,64,-1.4835702069103718],[117,249,65,-1.4827749952673912],[117,249,66,-1.4811140894889832],[117,249,67,-1.4789927806705236],[117,249,68,-1.4771516248583794],[117,249,69,-1.475910384207964],[117,249,70,-1.475243654102087],[117,249,71,-1.4746114611625671],[117,249,72,-1.473835814744234],[117,249,73,-1.4731547683477402],[117,249,74,-1.4727011639624834],[117,249,75,-1.472406443208456],[117,249,76,-1.472014894708991],[117,249,77,-1.4712723940610886],[117,249,78,-1.469788283109665],[117,249,79,-1.4678406454622746],[117,250,64,-1.4913827069103718],[117,250,65,-1.4905874952673912],[117,250,66,-1.4889265894889832],[117,250,67,-1.4868052806705236],[117,250,68,-1.4849641248583794],[117,250,69,-1.483722884207964],[117,250,70,-1.483056154102087],[117,250,71,-1.4824239611625671],[117,250,72,-1.481648314744234],[117,250,73,-1.4809672683477402],[117,250,74,-1.4805136639624834],[117,250,75,-1.480218943208456],[117,250,76,-1.479827394708991],[117,250,77,-1.4790848940610886],[117,250,78,-1.477600783109665],[117,250,79,-1.4756531454622746],[117,251,64,-1.4991952069103718],[117,251,65,-1.4983999952673912],[117,251,66,-1.4967390894889832],[117,251,67,-1.4946177806705236],[117,251,68,-1.4927766248583794],[117,251,69,-1.491535384207964],[117,251,70,-1.490868654102087],[117,251,71,-1.4902364611625671],[117,251,72,-1.489460814744234],[117,251,73,-1.4887797683477402],[117,251,74,-1.4883261639624834],[117,251,75,-1.488031443208456],[117,251,76,-1.487639894708991],[117,251,77,-1.4868973940610886],[117,251,78,-1.485413283109665],[117,251,79,-1.4834656454622746],[117,252,64,-1.5070077069103718],[117,252,65,-1.5062124952673912],[117,252,66,-1.5045515894889832],[117,252,67,-1.5024302806705236],[117,252,68,-1.5005891248583794],[117,252,69,-1.499347884207964],[117,252,70,-1.498681154102087],[117,252,71,-1.4980489611625671],[117,252,72,-1.497273314744234],[117,252,73,-1.4965922683477402],[117,252,74,-1.4961386639624834],[117,252,75,-1.495843943208456],[117,252,76,-1.495452394708991],[117,252,77,-1.4947098940610886],[117,252,78,-1.493225783109665],[117,252,79,-1.4912781454622746],[117,253,64,-1.5148202069103718],[117,253,65,-1.5140249952673912],[117,253,66,-1.5123640894889832],[117,253,67,-1.5102427806705236],[117,253,68,-1.5084016248583794],[117,253,69,-1.507160384207964],[117,253,70,-1.506493654102087],[117,253,71,-1.5058614611625671],[117,253,72,-1.505085814744234],[117,253,73,-1.5044047683477402],[117,253,74,-1.5039511639624834],[117,253,75,-1.503656443208456],[117,253,76,-1.503264894708991],[117,253,77,-1.5025223940610886],[117,253,78,-1.501038283109665],[117,253,79,-1.4990906454622746],[117,254,64,-1.5226327069103718],[117,254,65,-1.5218374952673912],[117,254,66,-1.5201765894889832],[117,254,67,-1.5180552806705236],[117,254,68,-1.5162141248583794],[117,254,69,-1.514972884207964],[117,254,70,-1.514306154102087],[117,254,71,-1.5136739611625671],[117,254,72,-1.512898314744234],[117,254,73,-1.5122172683477402],[117,254,74,-1.5117636639624834],[117,254,75,-1.511468943208456],[117,254,76,-1.511077394708991],[117,254,77,-1.5103348940610886],[117,254,78,-1.508850783109665],[117,254,79,-1.5069031454622746],[117,255,64,-1.5304452069103718],[117,255,65,-1.5296499952673912],[117,255,66,-1.5279890894889832],[117,255,67,-1.5258677806705236],[117,255,68,-1.5240266248583794],[117,255,69,-1.522785384207964],[117,255,70,-1.522118654102087],[117,255,71,-1.5214864611625671],[117,255,72,-1.520710814744234],[117,255,73,-1.5200297683477402],[117,255,74,-1.5195761639624834],[117,255,75,-1.519281443208456],[117,255,76,-1.518889894708991],[117,255,77,-1.5181473940610886],[117,255,78,-1.516663283109665],[117,255,79,-1.5147156454622746],[117,256,64,-1.5382577069103718],[117,256,65,-1.5374624952673912],[117,256,66,-1.5358015894889832],[117,256,67,-1.5336802806705236],[117,256,68,-1.5318391248583794],[117,256,69,-1.530597884207964],[117,256,70,-1.529931154102087],[117,256,71,-1.5292989611625671],[117,256,72,-1.528523314744234],[117,256,73,-1.5278422683477402],[117,256,74,-1.5273886639624834],[117,256,75,-1.527093943208456],[117,256,76,-1.526702394708991],[117,256,77,-1.5259598940610886],[117,256,78,-1.524475783109665],[117,256,79,-1.5225281454622746],[117,257,64,-1.5460702069103718],[117,257,65,-1.5452749952673912],[117,257,66,-1.5436140894889832],[117,257,67,-1.5414927806705236],[117,257,68,-1.5396516248583794],[117,257,69,-1.538410384207964],[117,257,70,-1.537743654102087],[117,257,71,-1.5371114611625671],[117,257,72,-1.536335814744234],[117,257,73,-1.5356547683477402],[117,257,74,-1.5352011639624834],[117,257,75,-1.534906443208456],[117,257,76,-1.534514894708991],[117,257,77,-1.5337723940610886],[117,257,78,-1.532288283109665],[117,257,79,-1.5303406454622746],[117,258,64,-1.5538827069103718],[117,258,65,-1.5530874952673912],[117,258,66,-1.5514265894889832],[117,258,67,-1.5493052806705236],[117,258,68,-1.5474641248583794],[117,258,69,-1.546222884207964],[117,258,70,-1.545556154102087],[117,258,71,-1.5449239611625671],[117,258,72,-1.544148314744234],[117,258,73,-1.5434672683477402],[117,258,74,-1.5430136639624834],[117,258,75,-1.542718943208456],[117,258,76,-1.542327394708991],[117,258,77,-1.5415848940610886],[117,258,78,-1.540100783109665],[117,258,79,-1.5381531454622746],[117,259,64,-1.5616952069103718],[117,259,65,-1.5608999952673912],[117,259,66,-1.5592390894889832],[117,259,67,-1.5571177806705236],[117,259,68,-1.5552766248583794],[117,259,69,-1.554035384207964],[117,259,70,-1.553368654102087],[117,259,71,-1.5527364611625671],[117,259,72,-1.551960814744234],[117,259,73,-1.5512797683477402],[117,259,74,-1.5508261639624834],[117,259,75,-1.550531443208456],[117,259,76,-1.550139894708991],[117,259,77,-1.5493973940610886],[117,259,78,-1.547913283109665],[117,259,79,-1.5459656454622746],[117,260,64,-1.5695077069103718],[117,260,65,-1.5687124952673912],[117,260,66,-1.5670515894889832],[117,260,67,-1.5649302806705236],[117,260,68,-1.5630891248583794],[117,260,69,-1.561847884207964],[117,260,70,-1.561181154102087],[117,260,71,-1.5605489611625671],[117,260,72,-1.559773314744234],[117,260,73,-1.5590922683477402],[117,260,74,-1.5586386639624834],[117,260,75,-1.558343943208456],[117,260,76,-1.557952394708991],[117,260,77,-1.5572098940610886],[117,260,78,-1.555725783109665],[117,260,79,-1.5537781454622746],[117,261,64,-1.5773202069103718],[117,261,65,-1.5765249952673912],[117,261,66,-1.5748640894889832],[117,261,67,-1.5727427806705236],[117,261,68,-1.5709016248583794],[117,261,69,-1.569660384207964],[117,261,70,-1.568993654102087],[117,261,71,-1.5683614611625671],[117,261,72,-1.567585814744234],[117,261,73,-1.5669047683477402],[117,261,74,-1.5664511639624834],[117,261,75,-1.566156443208456],[117,261,76,-1.565764894708991],[117,261,77,-1.5650223940610886],[117,261,78,-1.563538283109665],[117,261,79,-1.5615906454622746],[117,262,64,-1.5851327069103718],[117,262,65,-1.5843374952673912],[117,262,66,-1.5826765894889832],[117,262,67,-1.5805552806705236],[117,262,68,-1.5787141248583794],[117,262,69,-1.577472884207964],[117,262,70,-1.576806154102087],[117,262,71,-1.5761739611625671],[117,262,72,-1.575398314744234],[117,262,73,-1.5747172683477402],[117,262,74,-1.5742636639624834],[117,262,75,-1.573968943208456],[117,262,76,-1.573577394708991],[117,262,77,-1.5728348940610886],[117,262,78,-1.571350783109665],[117,262,79,-1.5694031454622746],[117,263,64,-1.5929452069103718],[117,263,65,-1.5921499952673912],[117,263,66,-1.5904890894889832],[117,263,67,-1.5883677806705236],[117,263,68,-1.5865266248583794],[117,263,69,-1.585285384207964],[117,263,70,-1.584618654102087],[117,263,71,-1.5839864611625671],[117,263,72,-1.583210814744234],[117,263,73,-1.5825297683477402],[117,263,74,-1.5820761639624834],[117,263,75,-1.581781443208456],[117,263,76,-1.581389894708991],[117,263,77,-1.5806473940610886],[117,263,78,-1.579163283109665],[117,263,79,-1.5772156454622746],[117,264,64,-1.6007577069103718],[117,264,65,-1.5999624952673912],[117,264,66,-1.5983015894889832],[117,264,67,-1.5961802806705236],[117,264,68,-1.5943391248583794],[117,264,69,-1.593097884207964],[117,264,70,-1.592431154102087],[117,264,71,-1.5917989611625671],[117,264,72,-1.591023314744234],[117,264,73,-1.5903422683477402],[117,264,74,-1.5898886639624834],[117,264,75,-1.589593943208456],[117,264,76,-1.589202394708991],[117,264,77,-1.5884598940610886],[117,264,78,-1.586975783109665],[117,264,79,-1.5850281454622746],[117,265,64,-1.6085702069103718],[117,265,65,-1.6077749952673912],[117,265,66,-1.6061140894889832],[117,265,67,-1.6039927806705236],[117,265,68,-1.6021516248583794],[117,265,69,-1.600910384207964],[117,265,70,-1.600243654102087],[117,265,71,-1.5996114611625671],[117,265,72,-1.598835814744234],[117,265,73,-1.5981547683477402],[117,265,74,-1.5977011639624834],[117,265,75,-1.597406443208456],[117,265,76,-1.597014894708991],[117,265,77,-1.5962723940610886],[117,265,78,-1.594788283109665],[117,265,79,-1.5928406454622746],[117,266,64,-1.6163827069103718],[117,266,65,-1.6155874952673912],[117,266,66,-1.6139265894889832],[117,266,67,-1.6118052806705236],[117,266,68,-1.6099641248583794],[117,266,69,-1.608722884207964],[117,266,70,-1.608056154102087],[117,266,71,-1.6074239611625671],[117,266,72,-1.606648314744234],[117,266,73,-1.6059672683477402],[117,266,74,-1.6055136639624834],[117,266,75,-1.605218943208456],[117,266,76,-1.604827394708991],[117,266,77,-1.6040848940610886],[117,266,78,-1.602600783109665],[117,266,79,-1.6006531454622746],[117,267,64,-1.6241952069103718],[117,267,65,-1.6233999952673912],[117,267,66,-1.6217390894889832],[117,267,67,-1.6196177806705236],[117,267,68,-1.6177766248583794],[117,267,69,-1.616535384207964],[117,267,70,-1.615868654102087],[117,267,71,-1.6152364611625671],[117,267,72,-1.614460814744234],[117,267,73,-1.6137797683477402],[117,267,74,-1.6133261639624834],[117,267,75,-1.613031443208456],[117,267,76,-1.612639894708991],[117,267,77,-1.6118973940610886],[117,267,78,-1.610413283109665],[117,267,79,-1.6084656454622746],[117,268,64,-1.6320077069103718],[117,268,65,-1.6312124952673912],[117,268,66,-1.6295515894889832],[117,268,67,-1.6274302806705236],[117,268,68,-1.6255891248583794],[117,268,69,-1.624347884207964],[117,268,70,-1.623681154102087],[117,268,71,-1.6230489611625671],[117,268,72,-1.622273314744234],[117,268,73,-1.6215922683477402],[117,268,74,-1.6211386639624834],[117,268,75,-1.620843943208456],[117,268,76,-1.620452394708991],[117,268,77,-1.6197098940610886],[117,268,78,-1.618225783109665],[117,268,79,-1.6162781454622746],[117,269,64,-1.6398202069103718],[117,269,65,-1.6390249952673912],[117,269,66,-1.6373640894889832],[117,269,67,-1.6352427806705236],[117,269,68,-1.6334016248583794],[117,269,69,-1.632160384207964],[117,269,70,-1.631493654102087],[117,269,71,-1.6308614611625671],[117,269,72,-1.630085814744234],[117,269,73,-1.6294047683477402],[117,269,74,-1.6289511639624834],[117,269,75,-1.628656443208456],[117,269,76,-1.628264894708991],[117,269,77,-1.6275223940610886],[117,269,78,-1.626038283109665],[117,269,79,-1.6240906454622746],[117,270,64,-1.6476327069103718],[117,270,65,-1.6468374952673912],[117,270,66,-1.6451765894889832],[117,270,67,-1.6430552806705236],[117,270,68,-1.6412141248583794],[117,270,69,-1.639972884207964],[117,270,70,-1.639306154102087],[117,270,71,-1.6386739611625671],[117,270,72,-1.637898314744234],[117,270,73,-1.6372172683477402],[117,270,74,-1.6367636639624834],[117,270,75,-1.636468943208456],[117,270,76,-1.636077394708991],[117,270,77,-1.6353348940610886],[117,270,78,-1.633850783109665],[117,270,79,-1.6319031454622746],[117,271,64,-1.6554452069103718],[117,271,65,-1.6546499952673912],[117,271,66,-1.6529890894889832],[117,271,67,-1.6508677806705236],[117,271,68,-1.6490266248583794],[117,271,69,-1.647785384207964],[117,271,70,-1.647118654102087],[117,271,71,-1.6464864611625671],[117,271,72,-1.645710814744234],[117,271,73,-1.6450297683477402],[117,271,74,-1.6445761639624834],[117,271,75,-1.644281443208456],[117,271,76,-1.643889894708991],[117,271,77,-1.6431473940610886],[117,271,78,-1.641663283109665],[117,271,79,-1.6397156454622746],[117,272,64,-1.6632577069103718],[117,272,65,-1.6624624952673912],[117,272,66,-1.6608015894889832],[117,272,67,-1.6586802806705236],[117,272,68,-1.6568391248583794],[117,272,69,-1.655597884207964],[117,272,70,-1.654931154102087],[117,272,71,-1.6542989611625671],[117,272,72,-1.653523314744234],[117,272,73,-1.6528422683477402],[117,272,74,-1.6523886639624834],[117,272,75,-1.652093943208456],[117,272,76,-1.651702394708991],[117,272,77,-1.6509598940610886],[117,272,78,-1.649475783109665],[117,272,79,-1.6475281454622746],[117,273,64,-1.6710702069103718],[117,273,65,-1.6702749952673912],[117,273,66,-1.6686140894889832],[117,273,67,-1.6664927806705236],[117,273,68,-1.6646516248583794],[117,273,69,-1.663410384207964],[117,273,70,-1.662743654102087],[117,273,71,-1.6621114611625671],[117,273,72,-1.661335814744234],[117,273,73,-1.6606547683477402],[117,273,74,-1.6602011639624834],[117,273,75,-1.659906443208456],[117,273,76,-1.659514894708991],[117,273,77,-1.6587723940610886],[117,273,78,-1.657288283109665],[117,273,79,-1.6553406454622746],[117,274,64,-1.6788827069103718],[117,274,65,-1.6780874952673912],[117,274,66,-1.6764265894889832],[117,274,67,-1.6743052806705236],[117,274,68,-1.6724641248583794],[117,274,69,-1.671222884207964],[117,274,70,-1.670556154102087],[117,274,71,-1.6699239611625671],[117,274,72,-1.669148314744234],[117,274,73,-1.6684672683477402],[117,274,74,-1.6680136639624834],[117,274,75,-1.667718943208456],[117,274,76,-1.667327394708991],[117,274,77,-1.6665848940610886],[117,274,78,-1.665100783109665],[117,274,79,-1.6631531454622746],[117,275,64,-1.6866952069103718],[117,275,65,-1.6858999952673912],[117,275,66,-1.6842390894889832],[117,275,67,-1.6821177806705236],[117,275,68,-1.6802766248583794],[117,275,69,-1.679035384207964],[117,275,70,-1.678368654102087],[117,275,71,-1.6777364611625671],[117,275,72,-1.676960814744234],[117,275,73,-1.6762797683477402],[117,275,74,-1.6758261639624834],[117,275,75,-1.675531443208456],[117,275,76,-1.675139894708991],[117,275,77,-1.6743973940610886],[117,275,78,-1.672913283109665],[117,275,79,-1.6709656454622746],[117,276,64,-1.6945077069103718],[117,276,65,-1.6937124952673912],[117,276,66,-1.6920515894889832],[117,276,67,-1.6899302806705236],[117,276,68,-1.6880891248583794],[117,276,69,-1.686847884207964],[117,276,70,-1.686181154102087],[117,276,71,-1.6855489611625671],[117,276,72,-1.684773314744234],[117,276,73,-1.6840922683477402],[117,276,74,-1.6836386639624834],[117,276,75,-1.683343943208456],[117,276,76,-1.682952394708991],[117,276,77,-1.6822098940610886],[117,276,78,-1.680725783109665],[117,276,79,-1.6787781454622746],[117,277,64,-1.7023202069103718],[117,277,65,-1.7015249952673912],[117,277,66,-1.6998640894889832],[117,277,67,-1.6977427806705236],[117,277,68,-1.6959016248583794],[117,277,69,-1.694660384207964],[117,277,70,-1.693993654102087],[117,277,71,-1.6933614611625671],[117,277,72,-1.692585814744234],[117,277,73,-1.6919047683477402],[117,277,74,-1.6914511639624834],[117,277,75,-1.691156443208456],[117,277,76,-1.690764894708991],[117,277,77,-1.6900223940610886],[117,277,78,-1.688538283109665],[117,277,79,-1.6865906454622746],[117,278,64,-1.7101327069103718],[117,278,65,-1.7093374952673912],[117,278,66,-1.7076765894889832],[117,278,67,-1.7055552806705236],[117,278,68,-1.7037141248583794],[117,278,69,-1.702472884207964],[117,278,70,-1.701806154102087],[117,278,71,-1.7011739611625671],[117,278,72,-1.700398314744234],[117,278,73,-1.6997172683477402],[117,278,74,-1.6992636639624834],[117,278,75,-1.698968943208456],[117,278,76,-1.698577394708991],[117,278,77,-1.6978348940610886],[117,278,78,-1.696350783109665],[117,278,79,-1.6944031454622746],[117,279,64,-1.7179452069103718],[117,279,65,-1.7171499952673912],[117,279,66,-1.7154890894889832],[117,279,67,-1.7133677806705236],[117,279,68,-1.7115266248583794],[117,279,69,-1.710285384207964],[117,279,70,-1.709618654102087],[117,279,71,-1.7089864611625671],[117,279,72,-1.708210814744234],[117,279,73,-1.7075297683477402],[117,279,74,-1.7070761639624834],[117,279,75,-1.706781443208456],[117,279,76,-1.706389894708991],[117,279,77,-1.7056473940610886],[117,279,78,-1.704163283109665],[117,279,79,-1.7022156454622746],[117,280,64,-1.7257577069103718],[117,280,65,-1.7249624952673912],[117,280,66,-1.7233015894889832],[117,280,67,-1.7211802806705236],[117,280,68,-1.7193391248583794],[117,280,69,-1.718097884207964],[117,280,70,-1.717431154102087],[117,280,71,-1.7167989611625671],[117,280,72,-1.716023314744234],[117,280,73,-1.7153422683477402],[117,280,74,-1.7148886639624834],[117,280,75,-1.714593943208456],[117,280,76,-1.714202394708991],[117,280,77,-1.7134598940610886],[117,280,78,-1.711975783109665],[117,280,79,-1.7100281454622746],[117,281,64,-1.7335702069103718],[117,281,65,-1.7327749952673912],[117,281,66,-1.7311140894889832],[117,281,67,-1.7289927806705236],[117,281,68,-1.7271516248583794],[117,281,69,-1.725910384207964],[117,281,70,-1.725243654102087],[117,281,71,-1.7246114611625671],[117,281,72,-1.723835814744234],[117,281,73,-1.7231547683477402],[117,281,74,-1.7227011639624834],[117,281,75,-1.722406443208456],[117,281,76,-1.722014894708991],[117,281,77,-1.7212723940610886],[117,281,78,-1.719788283109665],[117,281,79,-1.7178406454622746],[117,282,64,-1.7413827069103718],[117,282,65,-1.7405874952673912],[117,282,66,-1.7389265894889832],[117,282,67,-1.7368052806705236],[117,282,68,-1.7349641248583794],[117,282,69,-1.733722884207964],[117,282,70,-1.733056154102087],[117,282,71,-1.7324239611625671],[117,282,72,-1.731648314744234],[117,282,73,-1.7309672683477402],[117,282,74,-1.7305136639624834],[117,282,75,-1.730218943208456],[117,282,76,-1.729827394708991],[117,282,77,-1.7290848940610886],[117,282,78,-1.727600783109665],[117,282,79,-1.7256531454622746],[117,283,64,-1.7491952069103718],[117,283,65,-1.7483999952673912],[117,283,66,-1.7467390894889832],[117,283,67,-1.7446177806705236],[117,283,68,-1.7427766248583794],[117,283,69,-1.741535384207964],[117,283,70,-1.740868654102087],[117,283,71,-1.7402364611625671],[117,283,72,-1.739460814744234],[117,283,73,-1.7387797683477402],[117,283,74,-1.7383261639624834],[117,283,75,-1.738031443208456],[117,283,76,-1.737639894708991],[117,283,77,-1.7368973940610886],[117,283,78,-1.735413283109665],[117,283,79,-1.7334656454622746],[117,284,64,-1.7570077069103718],[117,284,65,-1.7562124952673912],[117,284,66,-1.7545515894889832],[117,284,67,-1.7524302806705236],[117,284,68,-1.7505891248583794],[117,284,69,-1.749347884207964],[117,284,70,-1.748681154102087],[117,284,71,-1.7480489611625671],[117,284,72,-1.747273314744234],[117,284,73,-1.7465922683477402],[117,284,74,-1.7461386639624834],[117,284,75,-1.745843943208456],[117,284,76,-1.745452394708991],[117,284,77,-1.7447098940610886],[117,284,78,-1.743225783109665],[117,284,79,-1.7412781454622746],[117,285,64,-1.7648202069103718],[117,285,65,-1.7640249952673912],[117,285,66,-1.7623640894889832],[117,285,67,-1.7602427806705236],[117,285,68,-1.7584016248583794],[117,285,69,-1.757160384207964],[117,285,70,-1.756493654102087],[117,285,71,-1.7558614611625671],[117,285,72,-1.755085814744234],[117,285,73,-1.7544047683477402],[117,285,74,-1.7539511639624834],[117,285,75,-1.753656443208456],[117,285,76,-1.753264894708991],[117,285,77,-1.7525223940610886],[117,285,78,-1.751038283109665],[117,285,79,-1.7490906454622746],[117,286,64,-1.7726327069103718],[117,286,65,-1.7718374952673912],[117,286,66,-1.7701765894889832],[117,286,67,-1.7680552806705236],[117,286,68,-1.7662141248583794],[117,286,69,-1.764972884207964],[117,286,70,-1.764306154102087],[117,286,71,-1.7636739611625671],[117,286,72,-1.762898314744234],[117,286,73,-1.7622172683477402],[117,286,74,-1.7617636639624834],[117,286,75,-1.761468943208456],[117,286,76,-1.761077394708991],[117,286,77,-1.7603348940610886],[117,286,78,-1.758850783109665],[117,286,79,-1.7569031454622746],[117,287,64,-1.7804452069103718],[117,287,65,-1.7796499952673912],[117,287,66,-1.7779890894889832],[117,287,67,-1.7758677806705236],[117,287,68,-1.7740266248583794],[117,287,69,-1.772785384207964],[117,287,70,-1.772118654102087],[117,287,71,-1.7714864611625671],[117,287,72,-1.770710814744234],[117,287,73,-1.7700297683477402],[117,287,74,-1.7695761639624834],[117,287,75,-1.769281443208456],[117,287,76,-1.768889894708991],[117,287,77,-1.7681473940610886],[117,287,78,-1.766663283109665],[117,287,79,-1.7647156454622746],[117,288,64,-1.7882577069103718],[117,288,65,-1.7874624952673912],[117,288,66,-1.7858015894889832],[117,288,67,-1.7836802806705236],[117,288,68,-1.7818391248583794],[117,288,69,-1.780597884207964],[117,288,70,-1.779931154102087],[117,288,71,-1.7792989611625671],[117,288,72,-1.778523314744234],[117,288,73,-1.7778422683477402],[117,288,74,-1.7773886639624834],[117,288,75,-1.777093943208456],[117,288,76,-1.776702394708991],[117,288,77,-1.7759598940610886],[117,288,78,-1.774475783109665],[117,288,79,-1.7725281454622746],[117,289,64,-1.7960702069103718],[117,289,65,-1.7952749952673912],[117,289,66,-1.7936140894889832],[117,289,67,-1.7914927806705236],[117,289,68,-1.7896516248583794],[117,289,69,-1.788410384207964],[117,289,70,-1.787743654102087],[117,289,71,-1.7871114611625671],[117,289,72,-1.786335814744234],[117,289,73,-1.7856547683477402],[117,289,74,-1.7852011639624834],[117,289,75,-1.784906443208456],[117,289,76,-1.784514894708991],[117,289,77,-1.7837723940610886],[117,289,78,-1.782288283109665],[117,289,79,-1.7803406454622746],[117,290,64,-1.8038827069103718],[117,290,65,-1.8030874952673912],[117,290,66,-1.8014265894889832],[117,290,67,-1.7993052806705236],[117,290,68,-1.7974641248583794],[117,290,69,-1.796222884207964],[117,290,70,-1.795556154102087],[117,290,71,-1.7949239611625671],[117,290,72,-1.794148314744234],[117,290,73,-1.7934672683477402],[117,290,74,-1.7930136639624834],[117,290,75,-1.792718943208456],[117,290,76,-1.792327394708991],[117,290,77,-1.7915848940610886],[117,290,78,-1.790100783109665],[117,290,79,-1.7881531454622746],[117,291,64,-1.8116952069103718],[117,291,65,-1.8108999952673912],[117,291,66,-1.8092390894889832],[117,291,67,-1.8071177806705236],[117,291,68,-1.8052766248583794],[117,291,69,-1.804035384207964],[117,291,70,-1.803368654102087],[117,291,71,-1.8027364611625671],[117,291,72,-1.801960814744234],[117,291,73,-1.8012797683477402],[117,291,74,-1.8008261639624834],[117,291,75,-1.800531443208456],[117,291,76,-1.800139894708991],[117,291,77,-1.7993973940610886],[117,291,78,-1.797913283109665],[117,291,79,-1.7959656454622746],[117,292,64,-1.8195077069103718],[117,292,65,-1.8187124952673912],[117,292,66,-1.8170515894889832],[117,292,67,-1.8149302806705236],[117,292,68,-1.8130891248583794],[117,292,69,-1.811847884207964],[117,292,70,-1.811181154102087],[117,292,71,-1.8105489611625671],[117,292,72,-1.809773314744234],[117,292,73,-1.8090922683477402],[117,292,74,-1.8086386639624834],[117,292,75,-1.808343943208456],[117,292,76,-1.807952394708991],[117,292,77,-1.8072098940610886],[117,292,78,-1.805725783109665],[117,292,79,-1.8037781454622746],[117,293,64,-1.8273202069103718],[117,293,65,-1.8265249952673912],[117,293,66,-1.8248640894889832],[117,293,67,-1.8227427806705236],[117,293,68,-1.8209016248583794],[117,293,69,-1.819660384207964],[117,293,70,-1.818993654102087],[117,293,71,-1.8183614611625671],[117,293,72,-1.817585814744234],[117,293,73,-1.8169047683477402],[117,293,74,-1.8164511639624834],[117,293,75,-1.816156443208456],[117,293,76,-1.815764894708991],[117,293,77,-1.8150223940610886],[117,293,78,-1.813538283109665],[117,293,79,-1.8115906454622746],[117,294,64,-1.8351327069103718],[117,294,65,-1.8343374952673912],[117,294,66,-1.8326765894889832],[117,294,67,-1.8305552806705236],[117,294,68,-1.8287141248583794],[117,294,69,-1.827472884207964],[117,294,70,-1.826806154102087],[117,294,71,-1.8261739611625671],[117,294,72,-1.825398314744234],[117,294,73,-1.8247172683477402],[117,294,74,-1.8242636639624834],[117,294,75,-1.823968943208456],[117,294,76,-1.823577394708991],[117,294,77,-1.8228348940610886],[117,294,78,-1.821350783109665],[117,294,79,-1.8194031454622746],[117,295,64,-1.8429452069103718],[117,295,65,-1.8421499952673912],[117,295,66,-1.8404890894889832],[117,295,67,-1.8383677806705236],[117,295,68,-1.8365266248583794],[117,295,69,-1.835285384207964],[117,295,70,-1.834618654102087],[117,295,71,-1.8339864611625671],[117,295,72,-1.833210814744234],[117,295,73,-1.8325297683477402],[117,295,74,-1.8320761639624834],[117,295,75,-1.831781443208456],[117,295,76,-1.831389894708991],[117,295,77,-1.8306473940610886],[117,295,78,-1.829163283109665],[117,295,79,-1.8272156454622746],[117,296,64,-1.8507577069103718],[117,296,65,-1.8499624952673912],[117,296,66,-1.8483015894889832],[117,296,67,-1.8461802806705236],[117,296,68,-1.8443391248583794],[117,296,69,-1.843097884207964],[117,296,70,-1.842431154102087],[117,296,71,-1.8417989611625671],[117,296,72,-1.841023314744234],[117,296,73,-1.8403422683477402],[117,296,74,-1.8398886639624834],[117,296,75,-1.839593943208456],[117,296,76,-1.839202394708991],[117,296,77,-1.8384598940610886],[117,296,78,-1.836975783109665],[117,296,79,-1.8350281454622746],[117,297,64,-1.8585702069103718],[117,297,65,-1.8577749952673912],[117,297,66,-1.8561140894889832],[117,297,67,-1.8539927806705236],[117,297,68,-1.8521516248583794],[117,297,69,-1.850910384207964],[117,297,70,-1.850243654102087],[117,297,71,-1.8496114611625671],[117,297,72,-1.848835814744234],[117,297,73,-1.8481547683477402],[117,297,74,-1.8477011639624834],[117,297,75,-1.847406443208456],[117,297,76,-1.847014894708991],[117,297,77,-1.8462723940610886],[117,297,78,-1.844788283109665],[117,297,79,-1.8428406454622746],[117,298,64,-1.8663827069103718],[117,298,65,-1.8655874952673912],[117,298,66,-1.8639265894889832],[117,298,67,-1.8618052806705236],[117,298,68,-1.8599641248583794],[117,298,69,-1.858722884207964],[117,298,70,-1.858056154102087],[117,298,71,-1.8574239611625671],[117,298,72,-1.856648314744234],[117,298,73,-1.8559672683477402],[117,298,74,-1.8555136639624834],[117,298,75,-1.855218943208456],[117,298,76,-1.854827394708991],[117,298,77,-1.8540848940610886],[117,298,78,-1.852600783109665],[117,298,79,-1.8506531454622746],[117,299,64,-1.8741952069103718],[117,299,65,-1.8733999952673912],[117,299,66,-1.8717390894889832],[117,299,67,-1.8696177806705236],[117,299,68,-1.8677766248583794],[117,299,69,-1.866535384207964],[117,299,70,-1.865868654102087],[117,299,71,-1.8652364611625671],[117,299,72,-1.864460814744234],[117,299,73,-1.8637797683477402],[117,299,74,-1.8633261639624834],[117,299,75,-1.863031443208456],[117,299,76,-1.862639894708991],[117,299,77,-1.8618973940610886],[117,299,78,-1.860413283109665],[117,299,79,-1.8584656454622746],[117,300,64,-1.8820077069103718],[117,300,65,-1.8812124952673912],[117,300,66,-1.8795515894889832],[117,300,67,-1.8774302806705236],[117,300,68,-1.8755891248583794],[117,300,69,-1.874347884207964],[117,300,70,-1.873681154102087],[117,300,71,-1.8730489611625671],[117,300,72,-1.872273314744234],[117,300,73,-1.8715922683477402],[117,300,74,-1.8711386639624834],[117,300,75,-1.870843943208456],[117,300,76,-1.870452394708991],[117,300,77,-1.8697098940610886],[117,300,78,-1.868225783109665],[117,300,79,-1.8662781454622746],[117,301,64,-1.8898202069103718],[117,301,65,-1.8890249952673912],[117,301,66,-1.8873640894889832],[117,301,67,-1.8852427806705236],[117,301,68,-1.8834016248583794],[117,301,69,-1.882160384207964],[117,301,70,-1.881493654102087],[117,301,71,-1.8808614611625671],[117,301,72,-1.880085814744234],[117,301,73,-1.8794047683477402],[117,301,74,-1.8789511639624834],[117,301,75,-1.878656443208456],[117,301,76,-1.878264894708991],[117,301,77,-1.8775223940610886],[117,301,78,-1.876038283109665],[117,301,79,-1.8740906454622746],[117,302,64,-1.8976327069103718],[117,302,65,-1.8968374952673912],[117,302,66,-1.8951765894889832],[117,302,67,-1.8930552806705236],[117,302,68,-1.8912141248583794],[117,302,69,-1.889972884207964],[117,302,70,-1.889306154102087],[117,302,71,-1.8886739611625671],[117,302,72,-1.887898314744234],[117,302,73,-1.8872172683477402],[117,302,74,-1.8867636639624834],[117,302,75,-1.886468943208456],[117,302,76,-1.886077394708991],[117,302,77,-1.8853348940610886],[117,302,78,-1.883850783109665],[117,302,79,-1.8819031454622746],[117,303,64,-1.9054452069103718],[117,303,65,-1.9046499952673912],[117,303,66,-1.9029890894889832],[117,303,67,-1.9008677806705236],[117,303,68,-1.8990266248583794],[117,303,69,-1.897785384207964],[117,303,70,-1.897118654102087],[117,303,71,-1.8964864611625671],[117,303,72,-1.895710814744234],[117,303,73,-1.8950297683477402],[117,303,74,-1.8945761639624834],[117,303,75,-1.894281443208456],[117,303,76,-1.893889894708991],[117,303,77,-1.8931473940610886],[117,303,78,-1.891663283109665],[117,303,79,-1.8897156454622746],[117,304,64,-1.9132577069103718],[117,304,65,-1.9124624952673912],[117,304,66,-1.9108015894889832],[117,304,67,-1.9086802806705236],[117,304,68,-1.9068391248583794],[117,304,69,-1.905597884207964],[117,304,70,-1.904931154102087],[117,304,71,-1.9042989611625671],[117,304,72,-1.903523314744234],[117,304,73,-1.9028422683477402],[117,304,74,-1.9023886639624834],[117,304,75,-1.902093943208456],[117,304,76,-1.901702394708991],[117,304,77,-1.9009598940610886],[117,304,78,-1.899475783109665],[117,304,79,-1.8975281454622746],[117,305,64,-1.9210702069103718],[117,305,65,-1.9202749952673912],[117,305,66,-1.9186140894889832],[117,305,67,-1.9164927806705236],[117,305,68,-1.9146516248583794],[117,305,69,-1.913410384207964],[117,305,70,-1.912743654102087],[117,305,71,-1.9121114611625671],[117,305,72,-1.911335814744234],[117,305,73,-1.9106547683477402],[117,305,74,-1.9102011639624834],[117,305,75,-1.909906443208456],[117,305,76,-1.909514894708991],[117,305,77,-1.9087723940610886],[117,305,78,-1.907288283109665],[117,305,79,-1.9053406454622746],[117,306,64,-1.9288827069103718],[117,306,65,-1.9280874952673912],[117,306,66,-1.9264265894889832],[117,306,67,-1.9243052806705236],[117,306,68,-1.9224641248583794],[117,306,69,-1.921222884207964],[117,306,70,-1.920556154102087],[117,306,71,-1.9199239611625671],[117,306,72,-1.919148314744234],[117,306,73,-1.9184672683477402],[117,306,74,-1.9180136639624834],[117,306,75,-1.917718943208456],[117,306,76,-1.917327394708991],[117,306,77,-1.9165848940610886],[117,306,78,-1.915100783109665],[117,306,79,-1.9131531454622746],[117,307,64,-1.9366952069103718],[117,307,65,-1.9358999952673912],[117,307,66,-1.9342390894889832],[117,307,67,-1.9321177806705236],[117,307,68,-1.9302766248583794],[117,307,69,-1.929035384207964],[117,307,70,-1.928368654102087],[117,307,71,-1.9277364611625671],[117,307,72,-1.926960814744234],[117,307,73,-1.9262797683477402],[117,307,74,-1.9258261639624834],[117,307,75,-1.925531443208456],[117,307,76,-1.925139894708991],[117,307,77,-1.9243973940610886],[117,307,78,-1.922913283109665],[117,307,79,-1.9209656454622746],[117,308,64,-1.9445077069103718],[117,308,65,-1.9437124952673912],[117,308,66,-1.9420515894889832],[117,308,67,-1.9399302806705236],[117,308,68,-1.9380891248583794],[117,308,69,-1.936847884207964],[117,308,70,-1.936181154102087],[117,308,71,-1.9355489611625671],[117,308,72,-1.934773314744234],[117,308,73,-1.9340922683477402],[117,308,74,-1.9336386639624834],[117,308,75,-1.933343943208456],[117,308,76,-1.932952394708991],[117,308,77,-1.9322098940610886],[117,308,78,-1.930725783109665],[117,308,79,-1.9287781454622746],[117,309,64,-1.9523202069103718],[117,309,65,-1.9515249952673912],[117,309,66,-1.9498640894889832],[117,309,67,-1.9477427806705236],[117,309,68,-1.9459016248583794],[117,309,69,-1.944660384207964],[117,309,70,-1.943993654102087],[117,309,71,-1.9433614611625671],[117,309,72,-1.942585814744234],[117,309,73,-1.9419047683477402],[117,309,74,-1.9414511639624834],[117,309,75,-1.941156443208456],[117,309,76,-1.940764894708991],[117,309,77,-1.9400223940610886],[117,309,78,-1.938538283109665],[117,309,79,-1.9365906454622746],[117,310,64,-1.9601327069103718],[117,310,65,-1.9593374952673912],[117,310,66,-1.9576765894889832],[117,310,67,-1.9555552806705236],[117,310,68,-1.9537141248583794],[117,310,69,-1.952472884207964],[117,310,70,-1.951806154102087],[117,310,71,-1.9511739611625671],[117,310,72,-1.950398314744234],[117,310,73,-1.9497172683477402],[117,310,74,-1.9492636639624834],[117,310,75,-1.948968943208456],[117,310,76,-1.948577394708991],[117,310,77,-1.9478348940610886],[117,310,78,-1.946350783109665],[117,310,79,-1.9444031454622746],[117,311,64,-1.9679452069103718],[117,311,65,-1.9671499952673912],[117,311,66,-1.9654890894889832],[117,311,67,-1.9633677806705236],[117,311,68,-1.9615266248583794],[117,311,69,-1.960285384207964],[117,311,70,-1.959618654102087],[117,311,71,-1.9589864611625671],[117,311,72,-1.958210814744234],[117,311,73,-1.9575297683477402],[117,311,74,-1.9570761639624834],[117,311,75,-1.956781443208456],[117,311,76,-1.956389894708991],[117,311,77,-1.9556473940610886],[117,311,78,-1.954163283109665],[117,311,79,-1.9522156454622746],[117,312,64,-1.9757577069103718],[117,312,65,-1.9749624952673912],[117,312,66,-1.9733015894889832],[117,312,67,-1.9711802806705236],[117,312,68,-1.9693391248583794],[117,312,69,-1.968097884207964],[117,312,70,-1.967431154102087],[117,312,71,-1.9667989611625671],[117,312,72,-1.966023314744234],[117,312,73,-1.9653422683477402],[117,312,74,-1.9648886639624834],[117,312,75,-1.964593943208456],[117,312,76,-1.964202394708991],[117,312,77,-1.9634598940610886],[117,312,78,-1.961975783109665],[117,312,79,-1.9600281454622746],[117,313,64,-1.9835702069103718],[117,313,65,-1.9827749952673912],[117,313,66,-1.9811140894889832],[117,313,67,-1.9789927806705236],[117,313,68,-1.9771516248583794],[117,313,69,-1.975910384207964],[117,313,70,-1.975243654102087],[117,313,71,-1.9746114611625671],[117,313,72,-1.973835814744234],[117,313,73,-1.9731547683477402],[117,313,74,-1.9727011639624834],[117,313,75,-1.972406443208456],[117,313,76,-1.972014894708991],[117,313,77,-1.9712723940610886],[117,313,78,-1.969788283109665],[117,313,79,-1.9678406454622746],[117,314,64,-1.9913827069103718],[117,314,65,-1.9905874952673912],[117,314,66,-1.9889265894889832],[117,314,67,-1.9868052806705236],[117,314,68,-1.9849641248583794],[117,314,69,-1.983722884207964],[117,314,70,-1.983056154102087],[117,314,71,-1.9824239611625671],[117,314,72,-1.981648314744234],[117,314,73,-1.9809672683477402],[117,314,74,-1.9805136639624834],[117,314,75,-1.980218943208456],[117,314,76,-1.979827394708991],[117,314,77,-1.9790848940610886],[117,314,78,-1.977600783109665],[117,314,79,-1.9756531454622746],[117,315,64,-1.9991952069103718],[117,315,65,-1.9983999952673912],[117,315,66,-1.9967390894889832],[117,315,67,-1.9946177806705236],[117,315,68,-1.9927766248583794],[117,315,69,-1.991535384207964],[117,315,70,-1.990868654102087],[117,315,71,-1.9902364611625671],[117,315,72,-1.989460814744234],[117,315,73,-1.9887797683477402],[117,315,74,-1.9883261639624834],[117,315,75,-1.988031443208456],[117,315,76,-1.987639894708991],[117,315,77,-1.9868973940610886],[117,315,78,-1.985413283109665],[117,315,79,-1.9834656454622746],[117,316,64,-2.007007706910372],[117,316,65,-2.006212495267391],[117,316,66,-2.004551589488983],[117,316,67,-2.0024302806705236],[117,316,68,-2.0005891248583794],[117,316,69,-1.999347884207964],[117,316,70,-1.998681154102087],[117,316,71,-1.9980489611625671],[117,316,72,-1.997273314744234],[117,316,73,-1.9965922683477402],[117,316,74,-1.9961386639624834],[117,316,75,-1.995843943208456],[117,316,76,-1.995452394708991],[117,316,77,-1.9947098940610886],[117,316,78,-1.993225783109665],[117,316,79,-1.9912781454622746],[117,317,64,-2.014820206910372],[117,317,65,-2.014024995267391],[117,317,66,-2.012364089488983],[117,317,67,-2.0102427806705236],[117,317,68,-2.0084016248583794],[117,317,69,-2.007160384207964],[117,317,70,-2.006493654102087],[117,317,71,-2.005861461162567],[117,317,72,-2.005085814744234],[117,317,73,-2.00440476834774],[117,317,74,-2.0039511639624834],[117,317,75,-2.003656443208456],[117,317,76,-2.003264894708991],[117,317,77,-2.0025223940610886],[117,317,78,-2.001038283109665],[117,317,79,-1.9990906454622746],[117,318,64,-2.022632706910372],[117,318,65,-2.021837495267391],[117,318,66,-2.020176589488983],[117,318,67,-2.0180552806705236],[117,318,68,-2.0162141248583794],[117,318,69,-2.014972884207964],[117,318,70,-2.014306154102087],[117,318,71,-2.013673961162567],[117,318,72,-2.012898314744234],[117,318,73,-2.01221726834774],[117,318,74,-2.0117636639624834],[117,318,75,-2.011468943208456],[117,318,76,-2.011077394708991],[117,318,77,-2.0103348940610886],[117,318,78,-2.008850783109665],[117,318,79,-2.0069031454622746],[117,319,64,-2.030445206910372],[117,319,65,-2.029649995267391],[117,319,66,-2.027989089488983],[117,319,67,-2.0258677806705236],[117,319,68,-2.0240266248583794],[117,319,69,-2.022785384207964],[117,319,70,-2.022118654102087],[117,319,71,-2.021486461162567],[117,319,72,-2.020710814744234],[117,319,73,-2.02002976834774],[117,319,74,-2.0195761639624834],[117,319,75,-2.019281443208456],[117,319,76,-2.018889894708991],[117,319,77,-2.0181473940610886],[117,319,78,-2.016663283109665],[117,319,79,-2.0147156454622746],[118,-64,64,0.959340114146471],[118,-64,65,0.9599739499390125],[118,-64,66,0.9616293199360371],[118,-64,67,0.9638141356408596],[118,-64,68,0.9656984526664019],[118,-64,69,0.966781010851264],[118,-64,70,0.9671121705323458],[118,-64,71,0.9672239031642675],[118,-64,72,0.9670825228095055],[118,-64,73,0.9665432423353195],[118,-64,74,0.9658432062715292],[118,-64,75,0.965363796800375],[118,-64,76,0.965514225885272],[118,-64,77,0.9665940962731838],[118,-64,78,0.9687977395951748],[118,-64,79,0.9715045019984245],[118,-63,64,0.951527614146471],[118,-63,65,0.9521614499390125],[118,-63,66,0.9538168199360371],[118,-63,67,0.9560016356408596],[118,-63,68,0.9578859526664019],[118,-63,69,0.958968510851264],[118,-63,70,0.9592996705323458],[118,-63,71,0.9594114031642675],[118,-63,72,0.9592700228095055],[118,-63,73,0.9587307423353195],[118,-63,74,0.9580307062715292],[118,-63,75,0.957551296800375],[118,-63,76,0.957701725885272],[118,-63,77,0.9587815962731838],[118,-63,78,0.9609852395951748],[118,-63,79,0.9636920019984245],[118,-62,64,0.943715114146471],[118,-62,65,0.9443489499390125],[118,-62,66,0.9460043199360371],[118,-62,67,0.9481891356408596],[118,-62,68,0.9500734526664019],[118,-62,69,0.951156010851264],[118,-62,70,0.9514871705323458],[118,-62,71,0.9515989031642675],[118,-62,72,0.9514575228095055],[118,-62,73,0.9509182423353195],[118,-62,74,0.9502182062715292],[118,-62,75,0.949738796800375],[118,-62,76,0.949889225885272],[118,-62,77,0.9509690962731838],[118,-62,78,0.9531727395951748],[118,-62,79,0.9558795019984245],[118,-61,64,0.935902614146471],[118,-61,65,0.9365364499390125],[118,-61,66,0.9381918199360371],[118,-61,67,0.9403766356408596],[118,-61,68,0.9422609526664019],[118,-61,69,0.943343510851264],[118,-61,70,0.9436746705323458],[118,-61,71,0.9437864031642675],[118,-61,72,0.9436450228095055],[118,-61,73,0.9431057423353195],[118,-61,74,0.9424057062715292],[118,-61,75,0.941926296800375],[118,-61,76,0.942076725885272],[118,-61,77,0.9431565962731838],[118,-61,78,0.9453602395951748],[118,-61,79,0.9480670019984245],[118,-60,64,0.928090114146471],[118,-60,65,0.9287239499390125],[118,-60,66,0.9303793199360371],[118,-60,67,0.9325641356408596],[118,-60,68,0.9344484526664019],[118,-60,69,0.935531010851264],[118,-60,70,0.9358621705323458],[118,-60,71,0.9359739031642675],[118,-60,72,0.9358325228095055],[118,-60,73,0.9352932423353195],[118,-60,74,0.9345932062715292],[118,-60,75,0.934113796800375],[118,-60,76,0.934264225885272],[118,-60,77,0.9353440962731838],[118,-60,78,0.9375477395951748],[118,-60,79,0.9402545019984245],[118,-59,64,0.920277614146471],[118,-59,65,0.9209114499390125],[118,-59,66,0.9225668199360371],[118,-59,67,0.9247516356408596],[118,-59,68,0.9266359526664019],[118,-59,69,0.927718510851264],[118,-59,70,0.9280496705323458],[118,-59,71,0.9281614031642675],[118,-59,72,0.9280200228095055],[118,-59,73,0.9274807423353195],[118,-59,74,0.9267807062715292],[118,-59,75,0.926301296800375],[118,-59,76,0.926451725885272],[118,-59,77,0.9275315962731838],[118,-59,78,0.9297352395951748],[118,-59,79,0.9324420019984245],[118,-58,64,0.912465114146471],[118,-58,65,0.9130989499390125],[118,-58,66,0.9147543199360371],[118,-58,67,0.9169391356408596],[118,-58,68,0.9188234526664019],[118,-58,69,0.919906010851264],[118,-58,70,0.9202371705323458],[118,-58,71,0.9203489031642675],[118,-58,72,0.9202075228095055],[118,-58,73,0.9196682423353195],[118,-58,74,0.9189682062715292],[118,-58,75,0.918488796800375],[118,-58,76,0.918639225885272],[118,-58,77,0.9197190962731838],[118,-58,78,0.9219227395951748],[118,-58,79,0.9246295019984245],[118,-57,64,0.904652614146471],[118,-57,65,0.9052864499390125],[118,-57,66,0.9069418199360371],[118,-57,67,0.9091266356408596],[118,-57,68,0.9110109526664019],[118,-57,69,0.912093510851264],[118,-57,70,0.9124246705323458],[118,-57,71,0.9125364031642675],[118,-57,72,0.9123950228095055],[118,-57,73,0.9118557423353195],[118,-57,74,0.9111557062715292],[118,-57,75,0.910676296800375],[118,-57,76,0.910826725885272],[118,-57,77,0.9119065962731838],[118,-57,78,0.9141102395951748],[118,-57,79,0.9168170019984245],[118,-56,64,0.896840114146471],[118,-56,65,0.8974739499390125],[118,-56,66,0.8991293199360371],[118,-56,67,0.9013141356408596],[118,-56,68,0.9031984526664019],[118,-56,69,0.904281010851264],[118,-56,70,0.9046121705323458],[118,-56,71,0.9047239031642675],[118,-56,72,0.9045825228095055],[118,-56,73,0.9040432423353195],[118,-56,74,0.9033432062715292],[118,-56,75,0.902863796800375],[118,-56,76,0.903014225885272],[118,-56,77,0.9040940962731838],[118,-56,78,0.9062977395951748],[118,-56,79,0.9090045019984245],[118,-55,64,0.889027614146471],[118,-55,65,0.8896614499390125],[118,-55,66,0.8913168199360371],[118,-55,67,0.8935016356408596],[118,-55,68,0.8953859526664019],[118,-55,69,0.896468510851264],[118,-55,70,0.8967996705323458],[118,-55,71,0.8969114031642675],[118,-55,72,0.8967700228095055],[118,-55,73,0.8962307423353195],[118,-55,74,0.8955307062715292],[118,-55,75,0.895051296800375],[118,-55,76,0.895201725885272],[118,-55,77,0.8962815962731838],[118,-55,78,0.8984852395951748],[118,-55,79,0.9011920019984245],[118,-54,64,0.881215114146471],[118,-54,65,0.8818489499390125],[118,-54,66,0.8835043199360371],[118,-54,67,0.8856891356408596],[118,-54,68,0.8875734526664019],[118,-54,69,0.888656010851264],[118,-54,70,0.8889871705323458],[118,-54,71,0.8890989031642675],[118,-54,72,0.8889575228095055],[118,-54,73,0.8884182423353195],[118,-54,74,0.8877182062715292],[118,-54,75,0.887238796800375],[118,-54,76,0.887389225885272],[118,-54,77,0.8884690962731838],[118,-54,78,0.8906727395951748],[118,-54,79,0.8933795019984245],[118,-53,64,0.873402614146471],[118,-53,65,0.8740364499390125],[118,-53,66,0.8756918199360371],[118,-53,67,0.8778766356408596],[118,-53,68,0.8797609526664019],[118,-53,69,0.880843510851264],[118,-53,70,0.8811746705323458],[118,-53,71,0.8812864031642675],[118,-53,72,0.8811450228095055],[118,-53,73,0.8806057423353195],[118,-53,74,0.8799057062715292],[118,-53,75,0.879426296800375],[118,-53,76,0.879576725885272],[118,-53,77,0.8806565962731838],[118,-53,78,0.8828602395951748],[118,-53,79,0.8855670019984245],[118,-52,64,0.865590114146471],[118,-52,65,0.8662239499390125],[118,-52,66,0.8678793199360371],[118,-52,67,0.8700641356408596],[118,-52,68,0.8719484526664019],[118,-52,69,0.873031010851264],[118,-52,70,0.8733621705323458],[118,-52,71,0.8734739031642675],[118,-52,72,0.8733325228095055],[118,-52,73,0.8727932423353195],[118,-52,74,0.8720932062715292],[118,-52,75,0.871613796800375],[118,-52,76,0.871764225885272],[118,-52,77,0.8728440962731838],[118,-52,78,0.8750477395951748],[118,-52,79,0.8777545019984245],[118,-51,64,0.857777614146471],[118,-51,65,0.8584114499390125],[118,-51,66,0.8600668199360371],[118,-51,67,0.8622516356408596],[118,-51,68,0.8641359526664019],[118,-51,69,0.865218510851264],[118,-51,70,0.8655496705323458],[118,-51,71,0.8656614031642675],[118,-51,72,0.8655200228095055],[118,-51,73,0.8649807423353195],[118,-51,74,0.8642807062715292],[118,-51,75,0.863801296800375],[118,-51,76,0.863951725885272],[118,-51,77,0.8650315962731838],[118,-51,78,0.8672352395951748],[118,-51,79,0.8699420019984245],[118,-50,64,0.849965114146471],[118,-50,65,0.8505989499390125],[118,-50,66,0.8522543199360371],[118,-50,67,0.8544391356408596],[118,-50,68,0.8563234526664019],[118,-50,69,0.857406010851264],[118,-50,70,0.8577371705323458],[118,-50,71,0.8578489031642675],[118,-50,72,0.8577075228095055],[118,-50,73,0.8571682423353195],[118,-50,74,0.8564682062715292],[118,-50,75,0.855988796800375],[118,-50,76,0.856139225885272],[118,-50,77,0.8572190962731838],[118,-50,78,0.8594227395951748],[118,-50,79,0.8621295019984245],[118,-49,64,0.842152614146471],[118,-49,65,0.8427864499390125],[118,-49,66,0.8444418199360371],[118,-49,67,0.8466266356408596],[118,-49,68,0.8485109526664019],[118,-49,69,0.849593510851264],[118,-49,70,0.8499246705323458],[118,-49,71,0.8500364031642675],[118,-49,72,0.8498950228095055],[118,-49,73,0.8493557423353195],[118,-49,74,0.8486557062715292],[118,-49,75,0.848176296800375],[118,-49,76,0.848326725885272],[118,-49,77,0.8494065962731838],[118,-49,78,0.8516102395951748],[118,-49,79,0.8543170019984245],[118,-48,64,0.834340114146471],[118,-48,65,0.8349739499390125],[118,-48,66,0.8366293199360371],[118,-48,67,0.8388141356408596],[118,-48,68,0.8406984526664019],[118,-48,69,0.841781010851264],[118,-48,70,0.8421121705323458],[118,-48,71,0.8422239031642675],[118,-48,72,0.8420825228095055],[118,-48,73,0.8415432423353195],[118,-48,74,0.8408432062715292],[118,-48,75,0.840363796800375],[118,-48,76,0.840514225885272],[118,-48,77,0.8415940962731838],[118,-48,78,0.8437977395951748],[118,-48,79,0.8465045019984245],[118,-47,64,0.826527614146471],[118,-47,65,0.8271614499390125],[118,-47,66,0.8288168199360371],[118,-47,67,0.8310016356408596],[118,-47,68,0.8328859526664019],[118,-47,69,0.833968510851264],[118,-47,70,0.8342996705323458],[118,-47,71,0.8344114031642675],[118,-47,72,0.8342700228095055],[118,-47,73,0.8337307423353195],[118,-47,74,0.8330307062715292],[118,-47,75,0.832551296800375],[118,-47,76,0.832701725885272],[118,-47,77,0.8337815962731838],[118,-47,78,0.8359852395951748],[118,-47,79,0.8386920019984245],[118,-46,64,0.818715114146471],[118,-46,65,0.8193489499390125],[118,-46,66,0.8210043199360371],[118,-46,67,0.8231891356408596],[118,-46,68,0.8250734526664019],[118,-46,69,0.826156010851264],[118,-46,70,0.8264871705323458],[118,-46,71,0.8265989031642675],[118,-46,72,0.8264575228095055],[118,-46,73,0.8259182423353195],[118,-46,74,0.8252182062715292],[118,-46,75,0.824738796800375],[118,-46,76,0.824889225885272],[118,-46,77,0.8259690962731838],[118,-46,78,0.8281727395951748],[118,-46,79,0.8308795019984245],[118,-45,64,0.810902614146471],[118,-45,65,0.8115364499390125],[118,-45,66,0.8131918199360371],[118,-45,67,0.8153766356408596],[118,-45,68,0.8172609526664019],[118,-45,69,0.818343510851264],[118,-45,70,0.8186746705323458],[118,-45,71,0.8187864031642675],[118,-45,72,0.8186450228095055],[118,-45,73,0.8181057423353195],[118,-45,74,0.8174057062715292],[118,-45,75,0.816926296800375],[118,-45,76,0.817076725885272],[118,-45,77,0.8181565962731838],[118,-45,78,0.8203602395951748],[118,-45,79,0.8230670019984245],[118,-44,64,0.803090114146471],[118,-44,65,0.8037239499390125],[118,-44,66,0.8053793199360371],[118,-44,67,0.8075641356408596],[118,-44,68,0.8094484526664019],[118,-44,69,0.810531010851264],[118,-44,70,0.8108621705323458],[118,-44,71,0.8109739031642675],[118,-44,72,0.8108325228095055],[118,-44,73,0.8102932423353195],[118,-44,74,0.8095932062715292],[118,-44,75,0.809113796800375],[118,-44,76,0.809264225885272],[118,-44,77,0.8103440962731838],[118,-44,78,0.8125477395951748],[118,-44,79,0.8152545019984245],[118,-43,64,0.795277614146471],[118,-43,65,0.7959114499390125],[118,-43,66,0.7975668199360371],[118,-43,67,0.7997516356408596],[118,-43,68,0.8016359526664019],[118,-43,69,0.802718510851264],[118,-43,70,0.8030496705323458],[118,-43,71,0.8031614031642675],[118,-43,72,0.8030200228095055],[118,-43,73,0.8024807423353195],[118,-43,74,0.8017807062715292],[118,-43,75,0.801301296800375],[118,-43,76,0.801451725885272],[118,-43,77,0.8025315962731838],[118,-43,78,0.8047352395951748],[118,-43,79,0.8074420019984245],[118,-42,64,0.787465114146471],[118,-42,65,0.7880989499390125],[118,-42,66,0.7897543199360371],[118,-42,67,0.7919391356408596],[118,-42,68,0.7938234526664019],[118,-42,69,0.794906010851264],[118,-42,70,0.7952371705323458],[118,-42,71,0.7953489031642675],[118,-42,72,0.7952075228095055],[118,-42,73,0.7946682423353195],[118,-42,74,0.7939682062715292],[118,-42,75,0.793488796800375],[118,-42,76,0.793639225885272],[118,-42,77,0.7947190962731838],[118,-42,78,0.7969227395951748],[118,-42,79,0.7996295019984245],[118,-41,64,0.779652614146471],[118,-41,65,0.7802864499390125],[118,-41,66,0.7819418199360371],[118,-41,67,0.7841266356408596],[118,-41,68,0.7860109526664019],[118,-41,69,0.787093510851264],[118,-41,70,0.7874246705323458],[118,-41,71,0.7875364031642675],[118,-41,72,0.7873950228095055],[118,-41,73,0.7868557423353195],[118,-41,74,0.7861557062715292],[118,-41,75,0.785676296800375],[118,-41,76,0.785826725885272],[118,-41,77,0.7869065962731838],[118,-41,78,0.7891102395951748],[118,-41,79,0.7918170019984245],[118,-40,64,0.771840114146471],[118,-40,65,0.7724739499390125],[118,-40,66,0.7741293199360371],[118,-40,67,0.7763141356408596],[118,-40,68,0.7781984526664019],[118,-40,69,0.779281010851264],[118,-40,70,0.7796121705323458],[118,-40,71,0.7797239031642675],[118,-40,72,0.7795825228095055],[118,-40,73,0.7790432423353195],[118,-40,74,0.7783432062715292],[118,-40,75,0.777863796800375],[118,-40,76,0.778014225885272],[118,-40,77,0.7790940962731838],[118,-40,78,0.7812977395951748],[118,-40,79,0.7840045019984245],[118,-39,64,0.764027614146471],[118,-39,65,0.7646614499390125],[118,-39,66,0.7663168199360371],[118,-39,67,0.7685016356408596],[118,-39,68,0.7703859526664019],[118,-39,69,0.771468510851264],[118,-39,70,0.7717996705323458],[118,-39,71,0.7719114031642675],[118,-39,72,0.7717700228095055],[118,-39,73,0.7712307423353195],[118,-39,74,0.7705307062715292],[118,-39,75,0.770051296800375],[118,-39,76,0.770201725885272],[118,-39,77,0.7712815962731838],[118,-39,78,0.7734852395951748],[118,-39,79,0.7761920019984245],[118,-38,64,0.756215114146471],[118,-38,65,0.7568489499390125],[118,-38,66,0.7585043199360371],[118,-38,67,0.7606891356408596],[118,-38,68,0.7625734526664019],[118,-38,69,0.763656010851264],[118,-38,70,0.7639871705323458],[118,-38,71,0.7640989031642675],[118,-38,72,0.7639575228095055],[118,-38,73,0.7634182423353195],[118,-38,74,0.7627182062715292],[118,-38,75,0.762238796800375],[118,-38,76,0.762389225885272],[118,-38,77,0.7634690962731838],[118,-38,78,0.7656727395951748],[118,-38,79,0.7683795019984245],[118,-37,64,0.748402614146471],[118,-37,65,0.7490364499390125],[118,-37,66,0.7506918199360371],[118,-37,67,0.7528766356408596],[118,-37,68,0.7547609526664019],[118,-37,69,0.755843510851264],[118,-37,70,0.7561746705323458],[118,-37,71,0.7562864031642675],[118,-37,72,0.7561450228095055],[118,-37,73,0.7556057423353195],[118,-37,74,0.7549057062715292],[118,-37,75,0.754426296800375],[118,-37,76,0.754576725885272],[118,-37,77,0.7556565962731838],[118,-37,78,0.7578602395951748],[118,-37,79,0.7605670019984245],[118,-36,64,0.740590114146471],[118,-36,65,0.7412239499390125],[118,-36,66,0.7428793199360371],[118,-36,67,0.7450641356408596],[118,-36,68,0.7469484526664019],[118,-36,69,0.748031010851264],[118,-36,70,0.7483621705323458],[118,-36,71,0.7484739031642675],[118,-36,72,0.7483325228095055],[118,-36,73,0.7477932423353195],[118,-36,74,0.7470932062715292],[118,-36,75,0.746613796800375],[118,-36,76,0.746764225885272],[118,-36,77,0.7478440962731838],[118,-36,78,0.7500477395951748],[118,-36,79,0.7527545019984245],[118,-35,64,0.732777614146471],[118,-35,65,0.7334114499390125],[118,-35,66,0.7350668199360371],[118,-35,67,0.7372516356408596],[118,-35,68,0.7391359526664019],[118,-35,69,0.740218510851264],[118,-35,70,0.7405496705323458],[118,-35,71,0.7406614031642675],[118,-35,72,0.7405200228095055],[118,-35,73,0.7399807423353195],[118,-35,74,0.7392807062715292],[118,-35,75,0.738801296800375],[118,-35,76,0.738951725885272],[118,-35,77,0.7400315962731838],[118,-35,78,0.7422352395951748],[118,-35,79,0.7449420019984245],[118,-34,64,0.724965114146471],[118,-34,65,0.7255989499390125],[118,-34,66,0.7272543199360371],[118,-34,67,0.7294391356408596],[118,-34,68,0.7313234526664019],[118,-34,69,0.732406010851264],[118,-34,70,0.7327371705323458],[118,-34,71,0.7328489031642675],[118,-34,72,0.7327075228095055],[118,-34,73,0.7321682423353195],[118,-34,74,0.7314682062715292],[118,-34,75,0.730988796800375],[118,-34,76,0.731139225885272],[118,-34,77,0.7322190962731838],[118,-34,78,0.7344227395951748],[118,-34,79,0.7371295019984245],[118,-33,64,0.717152614146471],[118,-33,65,0.7177864499390125],[118,-33,66,0.7194418199360371],[118,-33,67,0.7216266356408596],[118,-33,68,0.7235109526664019],[118,-33,69,0.724593510851264],[118,-33,70,0.7249246705323458],[118,-33,71,0.7250364031642675],[118,-33,72,0.7248950228095055],[118,-33,73,0.7243557423353195],[118,-33,74,0.7236557062715292],[118,-33,75,0.723176296800375],[118,-33,76,0.723326725885272],[118,-33,77,0.7244065962731838],[118,-33,78,0.7266102395951748],[118,-33,79,0.7293170019984245],[118,-32,64,0.709340114146471],[118,-32,65,0.7099739499390125],[118,-32,66,0.7116293199360371],[118,-32,67,0.7138141356408596],[118,-32,68,0.7156984526664019],[118,-32,69,0.716781010851264],[118,-32,70,0.7171121705323458],[118,-32,71,0.7172239031642675],[118,-32,72,0.7170825228095055],[118,-32,73,0.7165432423353195],[118,-32,74,0.7158432062715292],[118,-32,75,0.715363796800375],[118,-32,76,0.715514225885272],[118,-32,77,0.7165940962731838],[118,-32,78,0.7187977395951748],[118,-32,79,0.7215045019984245],[118,-31,64,0.701527614146471],[118,-31,65,0.7021614499390125],[118,-31,66,0.7038168199360371],[118,-31,67,0.7060016356408596],[118,-31,68,0.7078859526664019],[118,-31,69,0.708968510851264],[118,-31,70,0.7092996705323458],[118,-31,71,0.7094114031642675],[118,-31,72,0.7092700228095055],[118,-31,73,0.7087307423353195],[118,-31,74,0.7080307062715292],[118,-31,75,0.707551296800375],[118,-31,76,0.707701725885272],[118,-31,77,0.7087815962731838],[118,-31,78,0.7109852395951748],[118,-31,79,0.7136920019984245],[118,-30,64,0.693715114146471],[118,-30,65,0.6943489499390125],[118,-30,66,0.6960043199360371],[118,-30,67,0.6981891356408596],[118,-30,68,0.7000734526664019],[118,-30,69,0.701156010851264],[118,-30,70,0.7014871705323458],[118,-30,71,0.7015989031642675],[118,-30,72,0.7014575228095055],[118,-30,73,0.7009182423353195],[118,-30,74,0.7002182062715292],[118,-30,75,0.699738796800375],[118,-30,76,0.699889225885272],[118,-30,77,0.7009690962731838],[118,-30,78,0.7031727395951748],[118,-30,79,0.7058795019984245],[118,-29,64,0.685902614146471],[118,-29,65,0.6865364499390125],[118,-29,66,0.6881918199360371],[118,-29,67,0.6903766356408596],[118,-29,68,0.6922609526664019],[118,-29,69,0.693343510851264],[118,-29,70,0.6936746705323458],[118,-29,71,0.6937864031642675],[118,-29,72,0.6936450228095055],[118,-29,73,0.6931057423353195],[118,-29,74,0.6924057062715292],[118,-29,75,0.691926296800375],[118,-29,76,0.692076725885272],[118,-29,77,0.6931565962731838],[118,-29,78,0.6953602395951748],[118,-29,79,0.6980670019984245],[118,-28,64,0.678090114146471],[118,-28,65,0.6787239499390125],[118,-28,66,0.6803793199360371],[118,-28,67,0.6825641356408596],[118,-28,68,0.6844484526664019],[118,-28,69,0.685531010851264],[118,-28,70,0.6858621705323458],[118,-28,71,0.6859739031642675],[118,-28,72,0.6858325228095055],[118,-28,73,0.6852932423353195],[118,-28,74,0.6845932062715292],[118,-28,75,0.684113796800375],[118,-28,76,0.684264225885272],[118,-28,77,0.6853440962731838],[118,-28,78,0.6875477395951748],[118,-28,79,0.6902545019984245],[118,-27,64,0.670277614146471],[118,-27,65,0.6709114499390125],[118,-27,66,0.6725668199360371],[118,-27,67,0.6747516356408596],[118,-27,68,0.6766359526664019],[118,-27,69,0.677718510851264],[118,-27,70,0.6780496705323458],[118,-27,71,0.6781614031642675],[118,-27,72,0.6780200228095055],[118,-27,73,0.6774807423353195],[118,-27,74,0.6767807062715292],[118,-27,75,0.676301296800375],[118,-27,76,0.676451725885272],[118,-27,77,0.6775315962731838],[118,-27,78,0.6797352395951748],[118,-27,79,0.6824420019984245],[118,-26,64,0.662465114146471],[118,-26,65,0.6630989499390125],[118,-26,66,0.6647543199360371],[118,-26,67,0.6669391356408596],[118,-26,68,0.6688234526664019],[118,-26,69,0.669906010851264],[118,-26,70,0.6702371705323458],[118,-26,71,0.6703489031642675],[118,-26,72,0.6702075228095055],[118,-26,73,0.6696682423353195],[118,-26,74,0.6689682062715292],[118,-26,75,0.668488796800375],[118,-26,76,0.668639225885272],[118,-26,77,0.6697190962731838],[118,-26,78,0.6719227395951748],[118,-26,79,0.6746295019984245],[118,-25,64,0.654652614146471],[118,-25,65,0.6552864499390125],[118,-25,66,0.6569418199360371],[118,-25,67,0.6591266356408596],[118,-25,68,0.6610109526664019],[118,-25,69,0.662093510851264],[118,-25,70,0.6624246705323458],[118,-25,71,0.6625364031642675],[118,-25,72,0.6623950228095055],[118,-25,73,0.6618557423353195],[118,-25,74,0.6611557062715292],[118,-25,75,0.660676296800375],[118,-25,76,0.660826725885272],[118,-25,77,0.6619065962731838],[118,-25,78,0.6641102395951748],[118,-25,79,0.6668170019984245],[118,-24,64,0.646840114146471],[118,-24,65,0.6474739499390125],[118,-24,66,0.6491293199360371],[118,-24,67,0.6513141356408596],[118,-24,68,0.6531984526664019],[118,-24,69,0.654281010851264],[118,-24,70,0.6546121705323458],[118,-24,71,0.6547239031642675],[118,-24,72,0.6545825228095055],[118,-24,73,0.6540432423353195],[118,-24,74,0.6533432062715292],[118,-24,75,0.652863796800375],[118,-24,76,0.653014225885272],[118,-24,77,0.6540940962731838],[118,-24,78,0.6562977395951748],[118,-24,79,0.6590045019984245],[118,-23,64,0.639027614146471],[118,-23,65,0.6396614499390125],[118,-23,66,0.6413168199360371],[118,-23,67,0.6435016356408596],[118,-23,68,0.6453859526664019],[118,-23,69,0.646468510851264],[118,-23,70,0.6467996705323458],[118,-23,71,0.6469114031642675],[118,-23,72,0.6467700228095055],[118,-23,73,0.6462307423353195],[118,-23,74,0.6455307062715292],[118,-23,75,0.645051296800375],[118,-23,76,0.645201725885272],[118,-23,77,0.6462815962731838],[118,-23,78,0.6484852395951748],[118,-23,79,0.6511920019984245],[118,-22,64,0.631215114146471],[118,-22,65,0.6318489499390125],[118,-22,66,0.6335043199360371],[118,-22,67,0.6356891356408596],[118,-22,68,0.6375734526664019],[118,-22,69,0.638656010851264],[118,-22,70,0.6389871705323458],[118,-22,71,0.6390989031642675],[118,-22,72,0.6389575228095055],[118,-22,73,0.6384182423353195],[118,-22,74,0.6377182062715292],[118,-22,75,0.637238796800375],[118,-22,76,0.637389225885272],[118,-22,77,0.6384690962731838],[118,-22,78,0.6406727395951748],[118,-22,79,0.6433795019984245],[118,-21,64,0.623402614146471],[118,-21,65,0.6240364499390125],[118,-21,66,0.6256918199360371],[118,-21,67,0.6278766356408596],[118,-21,68,0.6297609526664019],[118,-21,69,0.630843510851264],[118,-21,70,0.6311746705323458],[118,-21,71,0.6312864031642675],[118,-21,72,0.6311450228095055],[118,-21,73,0.6306057423353195],[118,-21,74,0.6299057062715292],[118,-21,75,0.629426296800375],[118,-21,76,0.629576725885272],[118,-21,77,0.6306565962731838],[118,-21,78,0.6328602395951748],[118,-21,79,0.6355670019984245],[118,-20,64,0.615590114146471],[118,-20,65,0.6162239499390125],[118,-20,66,0.6178793199360371],[118,-20,67,0.6200641356408596],[118,-20,68,0.6219484526664019],[118,-20,69,0.623031010851264],[118,-20,70,0.6233621705323458],[118,-20,71,0.6234739031642675],[118,-20,72,0.6233325228095055],[118,-20,73,0.6227932423353195],[118,-20,74,0.6220932062715292],[118,-20,75,0.621613796800375],[118,-20,76,0.621764225885272],[118,-20,77,0.6228440962731838],[118,-20,78,0.6250477395951748],[118,-20,79,0.6277545019984245],[118,-19,64,0.607777614146471],[118,-19,65,0.6084114499390125],[118,-19,66,0.6100668199360371],[118,-19,67,0.6122516356408596],[118,-19,68,0.6141359526664019],[118,-19,69,0.615218510851264],[118,-19,70,0.6155496705323458],[118,-19,71,0.6156614031642675],[118,-19,72,0.6155200228095055],[118,-19,73,0.6149807423353195],[118,-19,74,0.6142807062715292],[118,-19,75,0.613801296800375],[118,-19,76,0.613951725885272],[118,-19,77,0.6150315962731838],[118,-19,78,0.6172352395951748],[118,-19,79,0.6199420019984245],[118,-18,64,0.599965114146471],[118,-18,65,0.6005989499390125],[118,-18,66,0.6022543199360371],[118,-18,67,0.6044391356408596],[118,-18,68,0.6063234526664019],[118,-18,69,0.607406010851264],[118,-18,70,0.6077371705323458],[118,-18,71,0.6078489031642675],[118,-18,72,0.6077075228095055],[118,-18,73,0.6071682423353195],[118,-18,74,0.6064682062715292],[118,-18,75,0.605988796800375],[118,-18,76,0.606139225885272],[118,-18,77,0.6072190962731838],[118,-18,78,0.6094227395951748],[118,-18,79,0.6121295019984245],[118,-17,64,0.592152614146471],[118,-17,65,0.5927864499390125],[118,-17,66,0.5944418199360371],[118,-17,67,0.5966266356408596],[118,-17,68,0.5985109526664019],[118,-17,69,0.599593510851264],[118,-17,70,0.5999246705323458],[118,-17,71,0.6000364031642675],[118,-17,72,0.5998950228095055],[118,-17,73,0.5993557423353195],[118,-17,74,0.5986557062715292],[118,-17,75,0.598176296800375],[118,-17,76,0.598326725885272],[118,-17,77,0.5994065962731838],[118,-17,78,0.6016102395951748],[118,-17,79,0.6043170019984245],[118,-16,64,0.584340114146471],[118,-16,65,0.5849739499390125],[118,-16,66,0.5866293199360371],[118,-16,67,0.5888141356408596],[118,-16,68,0.5906984526664019],[118,-16,69,0.591781010851264],[118,-16,70,0.5921121705323458],[118,-16,71,0.5922239031642675],[118,-16,72,0.5920825228095055],[118,-16,73,0.5915432423353195],[118,-16,74,0.5908432062715292],[118,-16,75,0.590363796800375],[118,-16,76,0.590514225885272],[118,-16,77,0.5915940962731838],[118,-16,78,0.5937977395951748],[118,-16,79,0.5965045019984245],[118,-15,64,0.576527614146471],[118,-15,65,0.5771614499390125],[118,-15,66,0.5788168199360371],[118,-15,67,0.5810016356408596],[118,-15,68,0.5828859526664019],[118,-15,69,0.583968510851264],[118,-15,70,0.5842996705323458],[118,-15,71,0.5844114031642675],[118,-15,72,0.5842700228095055],[118,-15,73,0.5837307423353195],[118,-15,74,0.5830307062715292],[118,-15,75,0.582551296800375],[118,-15,76,0.582701725885272],[118,-15,77,0.5837815962731838],[118,-15,78,0.5859852395951748],[118,-15,79,0.5886920019984245],[118,-14,64,0.568715114146471],[118,-14,65,0.5693489499390125],[118,-14,66,0.5710043199360371],[118,-14,67,0.5731891356408596],[118,-14,68,0.5750734526664019],[118,-14,69,0.576156010851264],[118,-14,70,0.5764871705323458],[118,-14,71,0.5765989031642675],[118,-14,72,0.5764575228095055],[118,-14,73,0.5759182423353195],[118,-14,74,0.5752182062715292],[118,-14,75,0.574738796800375],[118,-14,76,0.574889225885272],[118,-14,77,0.5759690962731838],[118,-14,78,0.5781727395951748],[118,-14,79,0.5808795019984245],[118,-13,64,0.560902614146471],[118,-13,65,0.5615364499390125],[118,-13,66,0.5631918199360371],[118,-13,67,0.5653766356408596],[118,-13,68,0.5672609526664019],[118,-13,69,0.568343510851264],[118,-13,70,0.5686746705323458],[118,-13,71,0.5687864031642675],[118,-13,72,0.5686450228095055],[118,-13,73,0.5681057423353195],[118,-13,74,0.5674057062715292],[118,-13,75,0.566926296800375],[118,-13,76,0.567076725885272],[118,-13,77,0.5681565962731838],[118,-13,78,0.5703602395951748],[118,-13,79,0.5730670019984245],[118,-12,64,0.553090114146471],[118,-12,65,0.5537239499390125],[118,-12,66,0.5553793199360371],[118,-12,67,0.5575641356408596],[118,-12,68,0.5594484526664019],[118,-12,69,0.560531010851264],[118,-12,70,0.5608621705323458],[118,-12,71,0.5609739031642675],[118,-12,72,0.5608325228095055],[118,-12,73,0.5602932423353195],[118,-12,74,0.5595932062715292],[118,-12,75,0.559113796800375],[118,-12,76,0.559264225885272],[118,-12,77,0.5603440962731838],[118,-12,78,0.5625477395951748],[118,-12,79,0.5652545019984245],[118,-11,64,0.545277614146471],[118,-11,65,0.5459114499390125],[118,-11,66,0.5475668199360371],[118,-11,67,0.5497516356408596],[118,-11,68,0.5516359526664019],[118,-11,69,0.552718510851264],[118,-11,70,0.5530496705323458],[118,-11,71,0.5531614031642675],[118,-11,72,0.5530200228095055],[118,-11,73,0.5524807423353195],[118,-11,74,0.5517807062715292],[118,-11,75,0.551301296800375],[118,-11,76,0.551451725885272],[118,-11,77,0.5525315962731838],[118,-11,78,0.5547352395951748],[118,-11,79,0.5574420019984245],[118,-10,64,0.537465114146471],[118,-10,65,0.5380989499390125],[118,-10,66,0.5397543199360371],[118,-10,67,0.5419391356408596],[118,-10,68,0.5438234526664019],[118,-10,69,0.544906010851264],[118,-10,70,0.5452371705323458],[118,-10,71,0.5453489031642675],[118,-10,72,0.5452075228095055],[118,-10,73,0.5446682423353195],[118,-10,74,0.5439682062715292],[118,-10,75,0.543488796800375],[118,-10,76,0.543639225885272],[118,-10,77,0.5447190962731838],[118,-10,78,0.5469227395951748],[118,-10,79,0.5496295019984245],[118,-9,64,0.529652614146471],[118,-9,65,0.5302864499390125],[118,-9,66,0.5319418199360371],[118,-9,67,0.5341266356408596],[118,-9,68,0.5360109526664019],[118,-9,69,0.537093510851264],[118,-9,70,0.5374246705323458],[118,-9,71,0.5375364031642675],[118,-9,72,0.5373950228095055],[118,-9,73,0.5368557423353195],[118,-9,74,0.5361557062715292],[118,-9,75,0.535676296800375],[118,-9,76,0.535826725885272],[118,-9,77,0.5369065962731838],[118,-9,78,0.5391102395951748],[118,-9,79,0.5418170019984245],[118,-8,64,0.521840114146471],[118,-8,65,0.5224739499390125],[118,-8,66,0.5241293199360371],[118,-8,67,0.5263141356408596],[118,-8,68,0.5281984526664019],[118,-8,69,0.529281010851264],[118,-8,70,0.5296121705323458],[118,-8,71,0.5297239031642675],[118,-8,72,0.5295825228095055],[118,-8,73,0.5290432423353195],[118,-8,74,0.5283432062715292],[118,-8,75,0.527863796800375],[118,-8,76,0.528014225885272],[118,-8,77,0.5290940962731838],[118,-8,78,0.5312977395951748],[118,-8,79,0.5340045019984245],[118,-7,64,0.514027614146471],[118,-7,65,0.5146614499390125],[118,-7,66,0.5163168199360371],[118,-7,67,0.5185016356408596],[118,-7,68,0.5203859526664019],[118,-7,69,0.521468510851264],[118,-7,70,0.5217996705323458],[118,-7,71,0.5219114031642675],[118,-7,72,0.5217700228095055],[118,-7,73,0.5212307423353195],[118,-7,74,0.5205307062715292],[118,-7,75,0.520051296800375],[118,-7,76,0.520201725885272],[118,-7,77,0.5212815962731838],[118,-7,78,0.5234852395951748],[118,-7,79,0.5261920019984245],[118,-6,64,0.506215114146471],[118,-6,65,0.5068489499390125],[118,-6,66,0.5085043199360371],[118,-6,67,0.5106891356408596],[118,-6,68,0.5125734526664019],[118,-6,69,0.513656010851264],[118,-6,70,0.5139871705323458],[118,-6,71,0.5140989031642675],[118,-6,72,0.5139575228095055],[118,-6,73,0.5134182423353195],[118,-6,74,0.5127182062715292],[118,-6,75,0.512238796800375],[118,-6,76,0.512389225885272],[118,-6,77,0.5134690962731838],[118,-6,78,0.5156727395951748],[118,-6,79,0.5183795019984245],[118,-5,64,0.498402614146471],[118,-5,65,0.4990364499390125],[118,-5,66,0.5006918199360371],[118,-5,67,0.5028766356408596],[118,-5,68,0.5047609526664019],[118,-5,69,0.505843510851264],[118,-5,70,0.5061746705323458],[118,-5,71,0.5062864031642675],[118,-5,72,0.5061450228095055],[118,-5,73,0.5056057423353195],[118,-5,74,0.5049057062715292],[118,-5,75,0.504426296800375],[118,-5,76,0.504576725885272],[118,-5,77,0.5056565962731838],[118,-5,78,0.5078602395951748],[118,-5,79,0.5105670019984245],[118,-4,64,0.490590114146471],[118,-4,65,0.4912239499390125],[118,-4,66,0.49287931993603706],[118,-4,67,0.4950641356408596],[118,-4,68,0.49694845266640186],[118,-4,69,0.498031010851264],[118,-4,70,0.49836217053234577],[118,-4,71,0.49847390316426754],[118,-4,72,0.49833252280950546],[118,-4,73,0.4977932423353195],[118,-4,74,0.4970932062715292],[118,-4,75,0.496613796800375],[118,-4,76,0.496764225885272],[118,-4,77,0.4978440962731838],[118,-4,78,0.5000477395951748],[118,-4,79,0.5027545019984245],[118,-3,64,0.482777614146471],[118,-3,65,0.4834114499390125],[118,-3,66,0.48506681993603706],[118,-3,67,0.4872516356408596],[118,-3,68,0.48913595266640186],[118,-3,69,0.490218510851264],[118,-3,70,0.49054967053234577],[118,-3,71,0.49066140316426754],[118,-3,72,0.49052002280950546],[118,-3,73,0.4899807423353195],[118,-3,74,0.4892807062715292],[118,-3,75,0.488801296800375],[118,-3,76,0.488951725885272],[118,-3,77,0.4900315962731838],[118,-3,78,0.4922352395951748],[118,-3,79,0.49494200199842453],[118,-2,64,0.474965114146471],[118,-2,65,0.4755989499390125],[118,-2,66,0.47725431993603706],[118,-2,67,0.4794391356408596],[118,-2,68,0.48132345266640186],[118,-2,69,0.482406010851264],[118,-2,70,0.48273717053234577],[118,-2,71,0.48284890316426754],[118,-2,72,0.48270752280950546],[118,-2,73,0.4821682423353195],[118,-2,74,0.4814682062715292],[118,-2,75,0.480988796800375],[118,-2,76,0.481139225885272],[118,-2,77,0.4822190962731838],[118,-2,78,0.4844227395951748],[118,-2,79,0.48712950199842453],[118,-1,64,0.467152614146471],[118,-1,65,0.4677864499390125],[118,-1,66,0.46944181993603706],[118,-1,67,0.4716266356408596],[118,-1,68,0.47351095266640186],[118,-1,69,0.474593510851264],[118,-1,70,0.47492467053234577],[118,-1,71,0.47503640316426754],[118,-1,72,0.47489502280950546],[118,-1,73,0.4743557423353195],[118,-1,74,0.4736557062715292],[118,-1,75,0.473176296800375],[118,-1,76,0.473326725885272],[118,-1,77,0.4744065962731838],[118,-1,78,0.4766102395951748],[118,-1,79,0.47931700199842453],[118,0,64,0.459340114146471],[118,0,65,0.4599739499390125],[118,0,66,0.46162931993603706],[118,0,67,0.4638141356408596],[118,0,68,0.46569845266640186],[118,0,69,0.466781010851264],[118,0,70,0.46711217053234577],[118,0,71,0.46722390316426754],[118,0,72,0.46708252280950546],[118,0,73,0.4665432423353195],[118,0,74,0.4658432062715292],[118,0,75,0.465363796800375],[118,0,76,0.465514225885272],[118,0,77,0.4665940962731838],[118,0,78,0.4687977395951748],[118,0,79,0.47150450199842453],[118,1,64,0.451527614146471],[118,1,65,0.4521614499390125],[118,1,66,0.45381681993603706],[118,1,67,0.4560016356408596],[118,1,68,0.45788595266640186],[118,1,69,0.458968510851264],[118,1,70,0.45929967053234577],[118,1,71,0.45941140316426754],[118,1,72,0.45927002280950546],[118,1,73,0.4587307423353195],[118,1,74,0.4580307062715292],[118,1,75,0.457551296800375],[118,1,76,0.457701725885272],[118,1,77,0.4587815962731838],[118,1,78,0.4609852395951748],[118,1,79,0.46369200199842453],[118,2,64,0.443715114146471],[118,2,65,0.4443489499390125],[118,2,66,0.44600431993603706],[118,2,67,0.4481891356408596],[118,2,68,0.45007345266640186],[118,2,69,0.451156010851264],[118,2,70,0.45148717053234577],[118,2,71,0.45159890316426754],[118,2,72,0.45145752280950546],[118,2,73,0.4509182423353195],[118,2,74,0.4502182062715292],[118,2,75,0.449738796800375],[118,2,76,0.449889225885272],[118,2,77,0.4509690962731838],[118,2,78,0.4531727395951748],[118,2,79,0.45587950199842453],[118,3,64,0.435902614146471],[118,3,65,0.4365364499390125],[118,3,66,0.43819181993603706],[118,3,67,0.4403766356408596],[118,3,68,0.44226095266640186],[118,3,69,0.443343510851264],[118,3,70,0.44367467053234577],[118,3,71,0.44378640316426754],[118,3,72,0.44364502280950546],[118,3,73,0.4431057423353195],[118,3,74,0.4424057062715292],[118,3,75,0.441926296800375],[118,3,76,0.442076725885272],[118,3,77,0.4431565962731838],[118,3,78,0.4453602395951748],[118,3,79,0.44806700199842453],[118,4,64,0.428090114146471],[118,4,65,0.4287239499390125],[118,4,66,0.43037931993603706],[118,4,67,0.4325641356408596],[118,4,68,0.43444845266640186],[118,4,69,0.435531010851264],[118,4,70,0.43586217053234577],[118,4,71,0.43597390316426754],[118,4,72,0.43583252280950546],[118,4,73,0.4352932423353195],[118,4,74,0.4345932062715292],[118,4,75,0.434113796800375],[118,4,76,0.434264225885272],[118,4,77,0.4353440962731838],[118,4,78,0.4375477395951748],[118,4,79,0.44025450199842453],[118,5,64,0.420277614146471],[118,5,65,0.4209114499390125],[118,5,66,0.42256681993603706],[118,5,67,0.4247516356408596],[118,5,68,0.42663595266640186],[118,5,69,0.427718510851264],[118,5,70,0.42804967053234577],[118,5,71,0.42816140316426754],[118,5,72,0.42802002280950546],[118,5,73,0.4274807423353195],[118,5,74,0.4267807062715292],[118,5,75,0.426301296800375],[118,5,76,0.426451725885272],[118,5,77,0.4275315962731838],[118,5,78,0.4297352395951748],[118,5,79,0.43244200199842453],[118,6,64,0.412465114146471],[118,6,65,0.4130989499390125],[118,6,66,0.41475431993603706],[118,6,67,0.4169391356408596],[118,6,68,0.41882345266640186],[118,6,69,0.419906010851264],[118,6,70,0.42023717053234577],[118,6,71,0.42034890316426754],[118,6,72,0.42020752280950546],[118,6,73,0.4196682423353195],[118,6,74,0.4189682062715292],[118,6,75,0.418488796800375],[118,6,76,0.418639225885272],[118,6,77,0.4197190962731838],[118,6,78,0.4219227395951748],[118,6,79,0.42462950199842453],[118,7,64,0.404652614146471],[118,7,65,0.4052864499390125],[118,7,66,0.40694181993603706],[118,7,67,0.4091266356408596],[118,7,68,0.41101095266640186],[118,7,69,0.412093510851264],[118,7,70,0.41242467053234577],[118,7,71,0.41253640316426754],[118,7,72,0.41239502280950546],[118,7,73,0.4118557423353195],[118,7,74,0.4111557062715292],[118,7,75,0.410676296800375],[118,7,76,0.410826725885272],[118,7,77,0.4119065962731838],[118,7,78,0.4141102395951748],[118,7,79,0.41681700199842453],[118,8,64,0.396840114146471],[118,8,65,0.3974739499390125],[118,8,66,0.39912931993603706],[118,8,67,0.4013141356408596],[118,8,68,0.40319845266640186],[118,8,69,0.404281010851264],[118,8,70,0.40461217053234577],[118,8,71,0.40472390316426754],[118,8,72,0.40458252280950546],[118,8,73,0.4040432423353195],[118,8,74,0.4033432062715292],[118,8,75,0.402863796800375],[118,8,76,0.403014225885272],[118,8,77,0.4040940962731838],[118,8,78,0.4062977395951748],[118,8,79,0.40900450199842453],[118,9,64,0.389027614146471],[118,9,65,0.3896614499390125],[118,9,66,0.39131681993603706],[118,9,67,0.3935016356408596],[118,9,68,0.39538595266640186],[118,9,69,0.396468510851264],[118,9,70,0.39679967053234577],[118,9,71,0.39691140316426754],[118,9,72,0.39677002280950546],[118,9,73,0.3962307423353195],[118,9,74,0.3955307062715292],[118,9,75,0.395051296800375],[118,9,76,0.395201725885272],[118,9,77,0.3962815962731838],[118,9,78,0.3984852395951748],[118,9,79,0.40119200199842453],[118,10,64,0.381215114146471],[118,10,65,0.3818489499390125],[118,10,66,0.38350431993603706],[118,10,67,0.3856891356408596],[118,10,68,0.38757345266640186],[118,10,69,0.388656010851264],[118,10,70,0.38898717053234577],[118,10,71,0.38909890316426754],[118,10,72,0.38895752280950546],[118,10,73,0.3884182423353195],[118,10,74,0.3877182062715292],[118,10,75,0.387238796800375],[118,10,76,0.387389225885272],[118,10,77,0.3884690962731838],[118,10,78,0.3906727395951748],[118,10,79,0.39337950199842453],[118,11,64,0.373402614146471],[118,11,65,0.3740364499390125],[118,11,66,0.37569181993603706],[118,11,67,0.3778766356408596],[118,11,68,0.37976095266640186],[118,11,69,0.380843510851264],[118,11,70,0.38117467053234577],[118,11,71,0.38128640316426754],[118,11,72,0.38114502280950546],[118,11,73,0.3806057423353195],[118,11,74,0.3799057062715292],[118,11,75,0.379426296800375],[118,11,76,0.379576725885272],[118,11,77,0.3806565962731838],[118,11,78,0.3828602395951748],[118,11,79,0.38556700199842453],[118,12,64,0.365590114146471],[118,12,65,0.3662239499390125],[118,12,66,0.36787931993603706],[118,12,67,0.3700641356408596],[118,12,68,0.37194845266640186],[118,12,69,0.373031010851264],[118,12,70,0.37336217053234577],[118,12,71,0.37347390316426754],[118,12,72,0.37333252280950546],[118,12,73,0.3727932423353195],[118,12,74,0.3720932062715292],[118,12,75,0.371613796800375],[118,12,76,0.371764225885272],[118,12,77,0.3728440962731838],[118,12,78,0.3750477395951748],[118,12,79,0.37775450199842453],[118,13,64,0.357777614146471],[118,13,65,0.3584114499390125],[118,13,66,0.36006681993603706],[118,13,67,0.3622516356408596],[118,13,68,0.36413595266640186],[118,13,69,0.365218510851264],[118,13,70,0.36554967053234577],[118,13,71,0.36566140316426754],[118,13,72,0.36552002280950546],[118,13,73,0.3649807423353195],[118,13,74,0.3642807062715292],[118,13,75,0.363801296800375],[118,13,76,0.363951725885272],[118,13,77,0.3650315962731838],[118,13,78,0.3672352395951748],[118,13,79,0.36994200199842453],[118,14,64,0.349965114146471],[118,14,65,0.3505989499390125],[118,14,66,0.35225431993603706],[118,14,67,0.3544391356408596],[118,14,68,0.35632345266640186],[118,14,69,0.357406010851264],[118,14,70,0.35773717053234577],[118,14,71,0.35784890316426754],[118,14,72,0.35770752280950546],[118,14,73,0.3571682423353195],[118,14,74,0.3564682062715292],[118,14,75,0.355988796800375],[118,14,76,0.356139225885272],[118,14,77,0.3572190962731838],[118,14,78,0.3594227395951748],[118,14,79,0.36212950199842453],[118,15,64,0.342152614146471],[118,15,65,0.3427864499390125],[118,15,66,0.34444181993603706],[118,15,67,0.3466266356408596],[118,15,68,0.34851095266640186],[118,15,69,0.349593510851264],[118,15,70,0.34992467053234577],[118,15,71,0.35003640316426754],[118,15,72,0.34989502280950546],[118,15,73,0.3493557423353195],[118,15,74,0.3486557062715292],[118,15,75,0.348176296800375],[118,15,76,0.348326725885272],[118,15,77,0.3494065962731838],[118,15,78,0.3516102395951748],[118,15,79,0.35431700199842453],[118,16,64,0.334340114146471],[118,16,65,0.3349739499390125],[118,16,66,0.33662931993603706],[118,16,67,0.3388141356408596],[118,16,68,0.34069845266640186],[118,16,69,0.341781010851264],[118,16,70,0.34211217053234577],[118,16,71,0.34222390316426754],[118,16,72,0.34208252280950546],[118,16,73,0.3415432423353195],[118,16,74,0.3408432062715292],[118,16,75,0.340363796800375],[118,16,76,0.340514225885272],[118,16,77,0.3415940962731838],[118,16,78,0.3437977395951748],[118,16,79,0.34650450199842453],[118,17,64,0.326527614146471],[118,17,65,0.3271614499390125],[118,17,66,0.32881681993603706],[118,17,67,0.3310016356408596],[118,17,68,0.33288595266640186],[118,17,69,0.333968510851264],[118,17,70,0.33429967053234577],[118,17,71,0.33441140316426754],[118,17,72,0.33427002280950546],[118,17,73,0.3337307423353195],[118,17,74,0.3330307062715292],[118,17,75,0.332551296800375],[118,17,76,0.332701725885272],[118,17,77,0.3337815962731838],[118,17,78,0.3359852395951748],[118,17,79,0.33869200199842453],[118,18,64,0.318715114146471],[118,18,65,0.3193489499390125],[118,18,66,0.32100431993603706],[118,18,67,0.3231891356408596],[118,18,68,0.32507345266640186],[118,18,69,0.326156010851264],[118,18,70,0.32648717053234577],[118,18,71,0.32659890316426754],[118,18,72,0.32645752280950546],[118,18,73,0.3259182423353195],[118,18,74,0.3252182062715292],[118,18,75,0.324738796800375],[118,18,76,0.324889225885272],[118,18,77,0.3259690962731838],[118,18,78,0.3281727395951748],[118,18,79,0.33087950199842453],[118,19,64,0.310902614146471],[118,19,65,0.3115364499390125],[118,19,66,0.31319181993603706],[118,19,67,0.3153766356408596],[118,19,68,0.31726095266640186],[118,19,69,0.318343510851264],[118,19,70,0.31867467053234577],[118,19,71,0.31878640316426754],[118,19,72,0.31864502280950546],[118,19,73,0.3181057423353195],[118,19,74,0.3174057062715292],[118,19,75,0.316926296800375],[118,19,76,0.317076725885272],[118,19,77,0.3181565962731838],[118,19,78,0.3203602395951748],[118,19,79,0.32306700199842453],[118,20,64,0.303090114146471],[118,20,65,0.3037239499390125],[118,20,66,0.30537931993603706],[118,20,67,0.3075641356408596],[118,20,68,0.30944845266640186],[118,20,69,0.310531010851264],[118,20,70,0.31086217053234577],[118,20,71,0.31097390316426754],[118,20,72,0.31083252280950546],[118,20,73,0.3102932423353195],[118,20,74,0.3095932062715292],[118,20,75,0.309113796800375],[118,20,76,0.309264225885272],[118,20,77,0.3103440962731838],[118,20,78,0.3125477395951748],[118,20,79,0.31525450199842453],[118,21,64,0.295277614146471],[118,21,65,0.2959114499390125],[118,21,66,0.29756681993603706],[118,21,67,0.2997516356408596],[118,21,68,0.30163595266640186],[118,21,69,0.302718510851264],[118,21,70,0.30304967053234577],[118,21,71,0.30316140316426754],[118,21,72,0.30302002280950546],[118,21,73,0.3024807423353195],[118,21,74,0.3017807062715292],[118,21,75,0.301301296800375],[118,21,76,0.301451725885272],[118,21,77,0.3025315962731838],[118,21,78,0.3047352395951748],[118,21,79,0.30744200199842453],[118,22,64,0.287465114146471],[118,22,65,0.2880989499390125],[118,22,66,0.28975431993603706],[118,22,67,0.2919391356408596],[118,22,68,0.29382345266640186],[118,22,69,0.294906010851264],[118,22,70,0.29523717053234577],[118,22,71,0.29534890316426754],[118,22,72,0.29520752280950546],[118,22,73,0.2946682423353195],[118,22,74,0.2939682062715292],[118,22,75,0.293488796800375],[118,22,76,0.293639225885272],[118,22,77,0.2947190962731838],[118,22,78,0.2969227395951748],[118,22,79,0.29962950199842453],[118,23,64,0.279652614146471],[118,23,65,0.2802864499390125],[118,23,66,0.28194181993603706],[118,23,67,0.2841266356408596],[118,23,68,0.28601095266640186],[118,23,69,0.287093510851264],[118,23,70,0.28742467053234577],[118,23,71,0.28753640316426754],[118,23,72,0.28739502280950546],[118,23,73,0.2868557423353195],[118,23,74,0.2861557062715292],[118,23,75,0.285676296800375],[118,23,76,0.285826725885272],[118,23,77,0.2869065962731838],[118,23,78,0.2891102395951748],[118,23,79,0.29181700199842453],[118,24,64,0.271840114146471],[118,24,65,0.2724739499390125],[118,24,66,0.27412931993603706],[118,24,67,0.2763141356408596],[118,24,68,0.27819845266640186],[118,24,69,0.279281010851264],[118,24,70,0.27961217053234577],[118,24,71,0.27972390316426754],[118,24,72,0.27958252280950546],[118,24,73,0.2790432423353195],[118,24,74,0.2783432062715292],[118,24,75,0.277863796800375],[118,24,76,0.278014225885272],[118,24,77,0.2790940962731838],[118,24,78,0.2812977395951748],[118,24,79,0.28400450199842453],[118,25,64,0.264027614146471],[118,25,65,0.2646614499390125],[118,25,66,0.26631681993603706],[118,25,67,0.2685016356408596],[118,25,68,0.27038595266640186],[118,25,69,0.271468510851264],[118,25,70,0.27179967053234577],[118,25,71,0.27191140316426754],[118,25,72,0.27177002280950546],[118,25,73,0.2712307423353195],[118,25,74,0.2705307062715292],[118,25,75,0.270051296800375],[118,25,76,0.270201725885272],[118,25,77,0.2712815962731838],[118,25,78,0.2734852395951748],[118,25,79,0.27619200199842453],[118,26,64,0.256215114146471],[118,26,65,0.2568489499390125],[118,26,66,0.25850431993603706],[118,26,67,0.2606891356408596],[118,26,68,0.26257345266640186],[118,26,69,0.263656010851264],[118,26,70,0.26398717053234577],[118,26,71,0.26409890316426754],[118,26,72,0.26395752280950546],[118,26,73,0.2634182423353195],[118,26,74,0.2627182062715292],[118,26,75,0.262238796800375],[118,26,76,0.262389225885272],[118,26,77,0.2634690962731838],[118,26,78,0.2656727395951748],[118,26,79,0.26837950199842453],[118,27,64,0.24840261414647102],[118,27,65,0.24903644993901253],[118,27,66,0.25069181993603706],[118,27,67,0.2528766356408596],[118,27,68,0.25476095266640186],[118,27,69,0.255843510851264],[118,27,70,0.25617467053234577],[118,27,71,0.25628640316426754],[118,27,72,0.25614502280950546],[118,27,73,0.2556057423353195],[118,27,74,0.2549057062715292],[118,27,75,0.254426296800375],[118,27,76,0.254576725885272],[118,27,77,0.2556565962731838],[118,27,78,0.2578602395951748],[118,27,79,0.26056700199842453],[118,28,64,0.24059011414647102],[118,28,65,0.24122394993901253],[118,28,66,0.24287931993603706],[118,28,67,0.2450641356408596],[118,28,68,0.24694845266640186],[118,28,69,0.248031010851264],[118,28,70,0.24836217053234577],[118,28,71,0.24847390316426754],[118,28,72,0.24833252280950546],[118,28,73,0.24779324233531952],[118,28,74,0.2470932062715292],[118,28,75,0.24661379680037498],[118,28,76,0.24676422588527203],[118,28,77,0.24784409627318382],[118,28,78,0.2500477395951748],[118,28,79,0.25275450199842453],[118,29,64,0.23277761414647102],[118,29,65,0.23341144993901253],[118,29,66,0.23506681993603706],[118,29,67,0.2372516356408596],[118,29,68,0.23913595266640186],[118,29,69,0.240218510851264],[118,29,70,0.24054967053234577],[118,29,71,0.24066140316426754],[118,29,72,0.24052002280950546],[118,29,73,0.23998074233531952],[118,29,74,0.2392807062715292],[118,29,75,0.23880129680037498],[118,29,76,0.23895172588527203],[118,29,77,0.24003159627318382],[118,29,78,0.2422352395951748],[118,29,79,0.24494200199842453],[118,30,64,0.22496511414647102],[118,30,65,0.22559894993901253],[118,30,66,0.22725431993603706],[118,30,67,0.2294391356408596],[118,30,68,0.23132345266640186],[118,30,69,0.232406010851264],[118,30,70,0.23273717053234577],[118,30,71,0.23284890316426754],[118,30,72,0.23270752280950546],[118,30,73,0.23216824233531952],[118,30,74,0.2314682062715292],[118,30,75,0.23098879680037498],[118,30,76,0.23113922588527203],[118,30,77,0.23221909627318382],[118,30,78,0.2344227395951748],[118,30,79,0.23712950199842453],[118,31,64,0.21715261414647102],[118,31,65,0.21778644993901253],[118,31,66,0.21944181993603706],[118,31,67,0.2216266356408596],[118,31,68,0.22351095266640186],[118,31,69,0.224593510851264],[118,31,70,0.22492467053234577],[118,31,71,0.22503640316426754],[118,31,72,0.22489502280950546],[118,31,73,0.22435574233531952],[118,31,74,0.2236557062715292],[118,31,75,0.22317629680037498],[118,31,76,0.22332672588527203],[118,31,77,0.22440659627318382],[118,31,78,0.2266102395951748],[118,31,79,0.22931700199842453],[118,32,64,0.20934011414647102],[118,32,65,0.20997394993901253],[118,32,66,0.21162931993603706],[118,32,67,0.2138141356408596],[118,32,68,0.21569845266640186],[118,32,69,0.216781010851264],[118,32,70,0.21711217053234577],[118,32,71,0.21722390316426754],[118,32,72,0.21708252280950546],[118,32,73,0.21654324233531952],[118,32,74,0.2158432062715292],[118,32,75,0.21536379680037498],[118,32,76,0.21551422588527203],[118,32,77,0.21659409627318382],[118,32,78,0.2187977395951748],[118,32,79,0.22150450199842453],[118,33,64,0.20152761414647102],[118,33,65,0.20216144993901253],[118,33,66,0.20381681993603706],[118,33,67,0.2060016356408596],[118,33,68,0.20788595266640186],[118,33,69,0.208968510851264],[118,33,70,0.20929967053234577],[118,33,71,0.20941140316426754],[118,33,72,0.20927002280950546],[118,33,73,0.20873074233531952],[118,33,74,0.2080307062715292],[118,33,75,0.20755129680037498],[118,33,76,0.20770172588527203],[118,33,77,0.20878159627318382],[118,33,78,0.2109852395951748],[118,33,79,0.21369200199842453],[118,34,64,0.19371511414647102],[118,34,65,0.19434894993901253],[118,34,66,0.19600431993603706],[118,34,67,0.1981891356408596],[118,34,68,0.20007345266640186],[118,34,69,0.201156010851264],[118,34,70,0.20148717053234577],[118,34,71,0.20159890316426754],[118,34,72,0.20145752280950546],[118,34,73,0.20091824233531952],[118,34,74,0.2002182062715292],[118,34,75,0.19973879680037498],[118,34,76,0.19988922588527203],[118,34,77,0.20096909627318382],[118,34,78,0.2031727395951748],[118,34,79,0.20587950199842453],[118,35,64,0.18590261414647102],[118,35,65,0.18653644993901253],[118,35,66,0.18819181993603706],[118,35,67,0.1903766356408596],[118,35,68,0.19226095266640186],[118,35,69,0.193343510851264],[118,35,70,0.19367467053234577],[118,35,71,0.19378640316426754],[118,35,72,0.19364502280950546],[118,35,73,0.19310574233531952],[118,35,74,0.1924057062715292],[118,35,75,0.19192629680037498],[118,35,76,0.19207672588527203],[118,35,77,0.19315659627318382],[118,35,78,0.1953602395951748],[118,35,79,0.19806700199842453],[118,36,64,0.17809011414647102],[118,36,65,0.17872394993901253],[118,36,66,0.18037931993603706],[118,36,67,0.1825641356408596],[118,36,68,0.18444845266640186],[118,36,69,0.185531010851264],[118,36,70,0.18586217053234577],[118,36,71,0.18597390316426754],[118,36,72,0.18583252280950546],[118,36,73,0.18529324233531952],[118,36,74,0.1845932062715292],[118,36,75,0.18411379680037498],[118,36,76,0.18426422588527203],[118,36,77,0.18534409627318382],[118,36,78,0.1875477395951748],[118,36,79,0.19025450199842453],[118,37,64,0.17027761414647102],[118,37,65,0.17091144993901253],[118,37,66,0.17256681993603706],[118,37,67,0.1747516356408596],[118,37,68,0.17663595266640186],[118,37,69,0.177718510851264],[118,37,70,0.17804967053234577],[118,37,71,0.17816140316426754],[118,37,72,0.17802002280950546],[118,37,73,0.17748074233531952],[118,37,74,0.1767807062715292],[118,37,75,0.17630129680037498],[118,37,76,0.17645172588527203],[118,37,77,0.17753159627318382],[118,37,78,0.1797352395951748],[118,37,79,0.18244200199842453],[118,38,64,0.16246511414647102],[118,38,65,0.16309894993901253],[118,38,66,0.16475431993603706],[118,38,67,0.1669391356408596],[118,38,68,0.16882345266640186],[118,38,69,0.169906010851264],[118,38,70,0.17023717053234577],[118,38,71,0.17034890316426754],[118,38,72,0.17020752280950546],[118,38,73,0.16966824233531952],[118,38,74,0.1689682062715292],[118,38,75,0.16848879680037498],[118,38,76,0.16863922588527203],[118,38,77,0.16971909627318382],[118,38,78,0.1719227395951748],[118,38,79,0.17462950199842453],[118,39,64,0.15465261414647102],[118,39,65,0.15528644993901253],[118,39,66,0.15694181993603706],[118,39,67,0.1591266356408596],[118,39,68,0.16101095266640186],[118,39,69,0.162093510851264],[118,39,70,0.16242467053234577],[118,39,71,0.16253640316426754],[118,39,72,0.16239502280950546],[118,39,73,0.16185574233531952],[118,39,74,0.1611557062715292],[118,39,75,0.16067629680037498],[118,39,76,0.16082672588527203],[118,39,77,0.16190659627318382],[118,39,78,0.1641102395951748],[118,39,79,0.16681700199842453],[118,40,64,0.14684011414647102],[118,40,65,0.14747394993901253],[118,40,66,0.14912931993603706],[118,40,67,0.1513141356408596],[118,40,68,0.15319845266640186],[118,40,69,0.154281010851264],[118,40,70,0.15461217053234577],[118,40,71,0.15472390316426754],[118,40,72,0.15458252280950546],[118,40,73,0.15404324233531952],[118,40,74,0.1533432062715292],[118,40,75,0.15286379680037498],[118,40,76,0.15301422588527203],[118,40,77,0.15409409627318382],[118,40,78,0.1562977395951748],[118,40,79,0.15900450199842453],[118,41,64,0.13902761414647102],[118,41,65,0.13966144993901253],[118,41,66,0.14131681993603706],[118,41,67,0.1435016356408596],[118,41,68,0.14538595266640186],[118,41,69,0.146468510851264],[118,41,70,0.14679967053234577],[118,41,71,0.14691140316426754],[118,41,72,0.14677002280950546],[118,41,73,0.14623074233531952],[118,41,74,0.1455307062715292],[118,41,75,0.14505129680037498],[118,41,76,0.14520172588527203],[118,41,77,0.14628159627318382],[118,41,78,0.1484852395951748],[118,41,79,0.15119200199842453],[118,42,64,0.13121511414647102],[118,42,65,0.13184894993901253],[118,42,66,0.13350431993603706],[118,42,67,0.1356891356408596],[118,42,68,0.13757345266640186],[118,42,69,0.138656010851264],[118,42,70,0.13898717053234577],[118,42,71,0.13909890316426754],[118,42,72,0.13895752280950546],[118,42,73,0.13841824233531952],[118,42,74,0.1377182062715292],[118,42,75,0.13723879680037498],[118,42,76,0.13738922588527203],[118,42,77,0.13846909627318382],[118,42,78,0.1406727395951748],[118,42,79,0.14337950199842453],[118,43,64,0.12340261414647102],[118,43,65,0.12403644993901253],[118,43,66,0.12569181993603706],[118,43,67,0.1278766356408596],[118,43,68,0.12976095266640186],[118,43,69,0.130843510851264],[118,43,70,0.13117467053234577],[118,43,71,0.13128640316426754],[118,43,72,0.13114502280950546],[118,43,73,0.13060574233531952],[118,43,74,0.1299057062715292],[118,43,75,0.12942629680037498],[118,43,76,0.12957672588527203],[118,43,77,0.13065659627318382],[118,43,78,0.1328602395951748],[118,43,79,0.13556700199842453],[118,44,64,0.11559011414647102],[118,44,65,0.11622394993901253],[118,44,66,0.11787931993603706],[118,44,67,0.1200641356408596],[118,44,68,0.12194845266640186],[118,44,69,0.123031010851264],[118,44,70,0.12336217053234577],[118,44,71,0.12347390316426754],[118,44,72,0.12333252280950546],[118,44,73,0.12279324233531952],[118,44,74,0.1220932062715292],[118,44,75,0.12161379680037498],[118,44,76,0.12176422588527203],[118,44,77,0.12284409627318382],[118,44,78,0.1250477395951748],[118,44,79,0.12775450199842453],[118,45,64,0.10777761414647102],[118,45,65,0.10841144993901253],[118,45,66,0.11006681993603706],[118,45,67,0.1122516356408596],[118,45,68,0.11413595266640186],[118,45,69,0.115218510851264],[118,45,70,0.11554967053234577],[118,45,71,0.11566140316426754],[118,45,72,0.11552002280950546],[118,45,73,0.11498074233531952],[118,45,74,0.1142807062715292],[118,45,75,0.11380129680037498],[118,45,76,0.11395172588527203],[118,45,77,0.11503159627318382],[118,45,78,0.11723523959517479],[118,45,79,0.11994200199842453],[118,46,64,0.09996511414647102],[118,46,65,0.10059894993901253],[118,46,66,0.10225431993603706],[118,46,67,0.1044391356408596],[118,46,68,0.10632345266640186],[118,46,69,0.107406010851264],[118,46,70,0.10773717053234577],[118,46,71,0.10784890316426754],[118,46,72,0.10770752280950546],[118,46,73,0.10716824233531952],[118,46,74,0.1064682062715292],[118,46,75,0.10598879680037498],[118,46,76,0.10613922588527203],[118,46,77,0.10721909627318382],[118,46,78,0.10942273959517479],[118,46,79,0.11212950199842453],[118,47,64,0.09215261414647102],[118,47,65,0.09278644993901253],[118,47,66,0.09444181993603706],[118,47,67,0.0966266356408596],[118,47,68,0.09851095266640186],[118,47,69,0.099593510851264],[118,47,70,0.09992467053234577],[118,47,71,0.10003640316426754],[118,47,72,0.09989502280950546],[118,47,73,0.09935574233531952],[118,47,74,0.0986557062715292],[118,47,75,0.09817629680037498],[118,47,76,0.09832672588527203],[118,47,77,0.09940659627318382],[118,47,78,0.10161023959517479],[118,47,79,0.10431700199842453],[118,48,64,0.08434011414647102],[118,48,65,0.08497394993901253],[118,48,66,0.08662931993603706],[118,48,67,0.0888141356408596],[118,48,68,0.09069845266640186],[118,48,69,0.091781010851264],[118,48,70,0.09211217053234577],[118,48,71,0.09222390316426754],[118,48,72,0.09208252280950546],[118,48,73,0.09154324233531952],[118,48,74,0.0908432062715292],[118,48,75,0.09036379680037498],[118,48,76,0.09051422588527203],[118,48,77,0.09159409627318382],[118,48,78,0.09379773959517479],[118,48,79,0.09650450199842453],[118,49,64,0.07652761414647102],[118,49,65,0.07716144993901253],[118,49,66,0.07881681993603706],[118,49,67,0.0810016356408596],[118,49,68,0.08288595266640186],[118,49,69,0.083968510851264],[118,49,70,0.08429967053234577],[118,49,71,0.08441140316426754],[118,49,72,0.08427002280950546],[118,49,73,0.08373074233531952],[118,49,74,0.0830307062715292],[118,49,75,0.08255129680037498],[118,49,76,0.08270172588527203],[118,49,77,0.08378159627318382],[118,49,78,0.08598523959517479],[118,49,79,0.08869200199842453],[118,50,64,0.06871511414647102],[118,50,65,0.06934894993901253],[118,50,66,0.07100431993603706],[118,50,67,0.0731891356408596],[118,50,68,0.07507345266640186],[118,50,69,0.076156010851264],[118,50,70,0.07648717053234577],[118,50,71,0.07659890316426754],[118,50,72,0.07645752280950546],[118,50,73,0.07591824233531952],[118,50,74,0.0752182062715292],[118,50,75,0.07473879680037498],[118,50,76,0.07488922588527203],[118,50,77,0.07596909627318382],[118,50,78,0.07817273959517479],[118,50,79,0.08087950199842453],[118,51,64,0.060902614146471024],[118,51,65,0.06153644993901253],[118,51,66,0.06319181993603706],[118,51,67,0.0653766356408596],[118,51,68,0.06726095266640186],[118,51,69,0.068343510851264],[118,51,70,0.06867467053234577],[118,51,71,0.06878640316426754],[118,51,72,0.06864502280950546],[118,51,73,0.06810574233531952],[118,51,74,0.0674057062715292],[118,51,75,0.06692629680037498],[118,51,76,0.06707672588527203],[118,51,77,0.06815659627318382],[118,51,78,0.07036023959517479],[118,51,79,0.07306700199842453],[118,52,64,0.053090114146471024],[118,52,65,0.05372394993901253],[118,52,66,0.055379319936037064],[118,52,67,0.057564135640859604],[118,52,68,0.05944845266640186],[118,52,69,0.060531010851264],[118,52,70,0.06086217053234577],[118,52,71,0.06097390316426754],[118,52,72,0.06083252280950546],[118,52,73,0.06029324233531952],[118,52,74,0.0595932062715292],[118,52,75,0.059113796800374985],[118,52,76,0.059264225885272026],[118,52,77,0.06034409627318382],[118,52,78,0.06254773959517479],[118,52,79,0.06525450199842453],[118,53,64,0.045277614146471024],[118,53,65,0.04591144993901253],[118,53,66,0.047566819936037064],[118,53,67,0.049751635640859604],[118,53,68,0.05163595266640186],[118,53,69,0.052718510851264],[118,53,70,0.05304967053234577],[118,53,71,0.05316140316426754],[118,53,72,0.05302002280950546],[118,53,73,0.05248074233531952],[118,53,74,0.0517807062715292],[118,53,75,0.051301296800374985],[118,53,76,0.051451725885272026],[118,53,77,0.05253159627318382],[118,53,78,0.05473523959517479],[118,53,79,0.05744200199842453],[118,54,64,0.037465114146471024],[118,54,65,0.03809894993901253],[118,54,66,0.039754319936037064],[118,54,67,0.041939135640859604],[118,54,68,0.04382345266640186],[118,54,69,0.044906010851264],[118,54,70,0.04523717053234577],[118,54,71,0.04534890316426754],[118,54,72,0.04520752280950546],[118,54,73,0.04466824233531952],[118,54,74,0.0439682062715292],[118,54,75,0.043488796800374985],[118,54,76,0.043639225885272026],[118,54,77,0.04471909627318382],[118,54,78,0.04692273959517479],[118,54,79,0.04962950199842453],[118,55,64,0.029652614146471024],[118,55,65,0.030286449939012527],[118,55,66,0.031941819936037064],[118,55,67,0.034126635640859604],[118,55,68,0.03601095266640186],[118,55,69,0.037093510851264],[118,55,70,0.03742467053234577],[118,55,71,0.03753640316426754],[118,55,72,0.03739502280950546],[118,55,73,0.03685574233531952],[118,55,74,0.0361557062715292],[118,55,75,0.035676296800374985],[118,55,76,0.035826725885272026],[118,55,77,0.03690659627318382],[118,55,78,0.03911023959517479],[118,55,79,0.04181700199842453],[118,56,64,0.021840114146471024],[118,56,65,0.022473949939012527],[118,56,66,0.024129319936037064],[118,56,67,0.026314135640859604],[118,56,68,0.028198452666401863],[118,56,69,0.029281010851264],[118,56,70,0.029612170532345772],[118,56,71,0.02972390316426754],[118,56,72,0.029582522809505463],[118,56,73,0.02904324233531952],[118,56,74,0.028343206271529198],[118,56,75,0.027863796800374985],[118,56,76,0.028014225885272026],[118,56,77,0.029094096273183823],[118,56,78,0.03129773959517479],[118,56,79,0.03400450199842453],[118,57,64,0.014027614146471024],[118,57,65,0.014661449939012527],[118,57,66,0.016316819936037064],[118,57,67,0.018501635640859604],[118,57,68,0.020385952666401863],[118,57,69,0.021468510851264],[118,57,70,0.021799670532345772],[118,57,71,0.02191140316426754],[118,57,72,0.021770022809505463],[118,57,73,0.02123074233531952],[118,57,74,0.020530706271529198],[118,57,75,0.020051296800374985],[118,57,76,0.020201725885272026],[118,57,77,0.021281596273183823],[118,57,78,0.02348523959517479],[118,57,79,0.02619200199842453],[118,58,64,0.0062151141464710236],[118,58,65,0.0068489499390125275],[118,58,66,0.008504319936037064],[118,58,67,0.010689135640859604],[118,58,68,0.012573452666401863],[118,58,69,0.013656010851264],[118,58,70,0.013987170532345772],[118,58,71,0.01409890316426754],[118,58,72,0.013957522809505463],[118,58,73,0.013418242335319519],[118,58,74,0.012718206271529198],[118,58,75,0.012238796800374985],[118,58,76,0.012389225885272026],[118,58,77,0.013469096273183823],[118,58,78,0.01567273959517479],[118,58,79,0.01837950199842453],[118,59,64,-0.0015973858535289764],[118,59,65,-9.635500609874725E-4],[118,59,66,6.918199360370636E-4],[118,59,67,0.002876635640859604],[118,59,68,0.004760952666401863],[118,59,69,0.005843510851264],[118,59,70,0.006174670532345772],[118,59,71,0.00628640316426754],[118,59,72,0.006145022809505463],[118,59,73,0.005605742335319519],[118,59,74,0.004905706271529198],[118,59,75,0.004426296800374985],[118,59,76,0.004576725885272026],[118,59,77,0.005656596273183823],[118,59,78,0.00786023959517479],[118,59,79,0.01056700199842453],[118,60,64,-0.009409885853528976],[118,60,65,-0.008776050060987473],[118,60,66,-0.007120680063962936],[118,60,67,-0.004935864359140396],[118,60,68,-0.003051547333598137],[118,60,69,-0.001968989148736],[118,60,70,-0.0016378294676542282],[118,60,71,-0.00152609683573246],[118,60,72,-0.0016674771904945374],[118,60,73,-0.002206757664680481],[118,60,74,-0.0029067937284708023],[118,60,75,-0.0033862031996250153],[118,60,76,-0.003235774114727974],[118,60,77,-0.0021559037268161774],[118,60,78,4.773959517478943E-5],[118,60,79,0.00275450199842453],[118,61,64,-0.017222385853528976],[118,61,65,-0.016588550060987473],[118,61,66,-0.014933180063962936],[118,61,67,-0.012748364359140396],[118,61,68,-0.010864047333598137],[118,61,69,-0.009781489148736],[118,61,70,-0.009450329467654228],[118,61,71,-0.00933859683573246],[118,61,72,-0.009479977190494537],[118,61,73,-0.010019257664680481],[118,61,74,-0.010719293728470802],[118,61,75,-0.011198703199625015],[118,61,76,-0.011048274114727974],[118,61,77,-0.009968403726816177],[118,61,78,-0.007764760404825211],[118,61,79,-0.00505799800157547],[118,62,64,-0.025034885853528976],[118,62,65,-0.024401050060987473],[118,62,66,-0.022745680063962936],[118,62,67,-0.020560864359140396],[118,62,68,-0.018676547333598137],[118,62,69,-0.017593989148736],[118,62,70,-0.017262829467654228],[118,62,71,-0.01715109683573246],[118,62,72,-0.017292477190494537],[118,62,73,-0.01783175766468048],[118,62,74,-0.018531793728470802],[118,62,75,-0.019011203199625015],[118,62,76,-0.018860774114727974],[118,62,77,-0.017780903726816177],[118,62,78,-0.01557726040482521],[118,62,79,-0.01287049800157547],[118,63,64,-0.032847385853528976],[118,63,65,-0.03221355006098747],[118,63,66,-0.030558180063962936],[118,63,67,-0.028373364359140396],[118,63,68,-0.026489047333598137],[118,63,69,-0.025406489148736],[118,63,70,-0.025075329467654228],[118,63,71,-0.02496359683573246],[118,63,72,-0.025104977190494537],[118,63,73,-0.02564425766468048],[118,63,74,-0.026344293728470802],[118,63,75,-0.026823703199625015],[118,63,76,-0.026673274114727974],[118,63,77,-0.025593403726816177],[118,63,78,-0.02338976040482521],[118,63,79,-0.02068299800157547],[118,64,64,-0.040659885853528976],[118,64,65,-0.04002605006098747],[118,64,66,-0.038370680063962936],[118,64,67,-0.036185864359140396],[118,64,68,-0.03430154733359814],[118,64,69,-0.033218989148736],[118,64,70,-0.03288782946765423],[118,64,71,-0.03277609683573246],[118,64,72,-0.03291747719049454],[118,64,73,-0.03345675766468048],[118,64,74,-0.0341567937284708],[118,64,75,-0.034636203199625015],[118,64,76,-0.034485774114727974],[118,64,77,-0.03340590372681618],[118,64,78,-0.03120226040482521],[118,64,79,-0.02849549800157547],[118,65,64,-0.048472385853528976],[118,65,65,-0.04783855006098747],[118,65,66,-0.046183180063962936],[118,65,67,-0.043998364359140396],[118,65,68,-0.04211404733359814],[118,65,69,-0.041031489148736],[118,65,70,-0.04070032946765423],[118,65,71,-0.04058859683573246],[118,65,72,-0.04072997719049454],[118,65,73,-0.04126925766468048],[118,65,74,-0.0419692937284708],[118,65,75,-0.042448703199625015],[118,65,76,-0.042298274114727974],[118,65,77,-0.04121840372681618],[118,65,78,-0.03901476040482521],[118,65,79,-0.03630799800157547],[118,66,64,-0.056284885853528976],[118,66,65,-0.05565105006098747],[118,66,66,-0.053995680063962936],[118,66,67,-0.051810864359140396],[118,66,68,-0.04992654733359814],[118,66,69,-0.048843989148736],[118,66,70,-0.04851282946765423],[118,66,71,-0.04840109683573246],[118,66,72,-0.04854247719049454],[118,66,73,-0.04908175766468048],[118,66,74,-0.0497817937284708],[118,66,75,-0.050261203199625015],[118,66,76,-0.050110774114727974],[118,66,77,-0.04903090372681618],[118,66,78,-0.04682726040482521],[118,66,79,-0.04412049800157547],[118,67,64,-0.06409738585352898],[118,67,65,-0.06346355006098747],[118,67,66,-0.061808180063962936],[118,67,67,-0.059623364359140396],[118,67,68,-0.05773904733359814],[118,67,69,-0.056656489148736],[118,67,70,-0.05632532946765423],[118,67,71,-0.05621359683573246],[118,67,72,-0.05635497719049454],[118,67,73,-0.05689425766468048],[118,67,74,-0.0575942937284708],[118,67,75,-0.058073703199625015],[118,67,76,-0.057923274114727974],[118,67,77,-0.05684340372681618],[118,67,78,-0.05463976040482521],[118,67,79,-0.05193299800157547],[118,68,64,-0.07190988585352898],[118,68,65,-0.07127605006098747],[118,68,66,-0.06962068006396294],[118,68,67,-0.0674358643591404],[118,68,68,-0.06555154733359814],[118,68,69,-0.064468989148736],[118,68,70,-0.06413782946765423],[118,68,71,-0.06402609683573246],[118,68,72,-0.06416747719049454],[118,68,73,-0.06470675766468048],[118,68,74,-0.0654067937284708],[118,68,75,-0.06588620319962502],[118,68,76,-0.06573577411472797],[118,68,77,-0.06465590372681618],[118,68,78,-0.06245226040482521],[118,68,79,-0.05974549800157547],[118,69,64,-0.07972238585352898],[118,69,65,-0.07908855006098747],[118,69,66,-0.07743318006396294],[118,69,67,-0.0752483643591404],[118,69,68,-0.07336404733359814],[118,69,69,-0.072281489148736],[118,69,70,-0.07195032946765423],[118,69,71,-0.07183859683573246],[118,69,72,-0.07197997719049454],[118,69,73,-0.07251925766468048],[118,69,74,-0.0732192937284708],[118,69,75,-0.07369870319962502],[118,69,76,-0.07354827411472797],[118,69,77,-0.07246840372681618],[118,69,78,-0.07026476040482521],[118,69,79,-0.06755799800157547],[118,70,64,-0.08753488585352898],[118,70,65,-0.08690105006098747],[118,70,66,-0.08524568006396294],[118,70,67,-0.0830608643591404],[118,70,68,-0.08117654733359814],[118,70,69,-0.080093989148736],[118,70,70,-0.07976282946765423],[118,70,71,-0.07965109683573246],[118,70,72,-0.07979247719049454],[118,70,73,-0.08033175766468048],[118,70,74,-0.0810317937284708],[118,70,75,-0.08151120319962502],[118,70,76,-0.08136077411472797],[118,70,77,-0.08028090372681618],[118,70,78,-0.07807726040482521],[118,70,79,-0.07537049800157547],[118,71,64,-0.09534738585352898],[118,71,65,-0.09471355006098747],[118,71,66,-0.09305818006396294],[118,71,67,-0.0908733643591404],[118,71,68,-0.08898904733359814],[118,71,69,-0.087906489148736],[118,71,70,-0.08757532946765423],[118,71,71,-0.08746359683573246],[118,71,72,-0.08760497719049454],[118,71,73,-0.08814425766468048],[118,71,74,-0.0888442937284708],[118,71,75,-0.08932370319962502],[118,71,76,-0.08917327411472797],[118,71,77,-0.08809340372681618],[118,71,78,-0.08588976040482521],[118,71,79,-0.08318299800157547],[118,72,64,-0.10315988585352898],[118,72,65,-0.10252605006098747],[118,72,66,-0.10087068006396294],[118,72,67,-0.0986858643591404],[118,72,68,-0.09680154733359814],[118,72,69,-0.095718989148736],[118,72,70,-0.09538782946765423],[118,72,71,-0.09527609683573246],[118,72,72,-0.09541747719049454],[118,72,73,-0.09595675766468048],[118,72,74,-0.0966567937284708],[118,72,75,-0.09713620319962502],[118,72,76,-0.09698577411472797],[118,72,77,-0.09590590372681618],[118,72,78,-0.09370226040482521],[118,72,79,-0.09099549800157547],[118,73,64,-0.11097238585352898],[118,73,65,-0.11033855006098747],[118,73,66,-0.10868318006396294],[118,73,67,-0.1064983643591404],[118,73,68,-0.10461404733359814],[118,73,69,-0.103531489148736],[118,73,70,-0.10320032946765423],[118,73,71,-0.10308859683573246],[118,73,72,-0.10322997719049454],[118,73,73,-0.10376925766468048],[118,73,74,-0.1044692937284708],[118,73,75,-0.10494870319962502],[118,73,76,-0.10479827411472797],[118,73,77,-0.10371840372681618],[118,73,78,-0.10151476040482521],[118,73,79,-0.09880799800157547],[118,74,64,-0.11878488585352898],[118,74,65,-0.11815105006098747],[118,74,66,-0.11649568006396294],[118,74,67,-0.1143108643591404],[118,74,68,-0.11242654733359814],[118,74,69,-0.111343989148736],[118,74,70,-0.11101282946765423],[118,74,71,-0.11090109683573246],[118,74,72,-0.11104247719049454],[118,74,73,-0.11158175766468048],[118,74,74,-0.1122817937284708],[118,74,75,-0.11276120319962502],[118,74,76,-0.11261077411472797],[118,74,77,-0.11153090372681618],[118,74,78,-0.10932726040482521],[118,74,79,-0.10662049800157547],[118,75,64,-0.12659738585352898],[118,75,65,-0.12596355006098747],[118,75,66,-0.12430818006396294],[118,75,67,-0.1221233643591404],[118,75,68,-0.12023904733359814],[118,75,69,-0.119156489148736],[118,75,70,-0.11882532946765423],[118,75,71,-0.11871359683573246],[118,75,72,-0.11885497719049454],[118,75,73,-0.11939425766468048],[118,75,74,-0.1200942937284708],[118,75,75,-0.12057370319962502],[118,75,76,-0.12042327411472797],[118,75,77,-0.11934340372681618],[118,75,78,-0.11713976040482521],[118,75,79,-0.11443299800157547],[118,76,64,-0.13440988585352898],[118,76,65,-0.13377605006098747],[118,76,66,-0.13212068006396294],[118,76,67,-0.1299358643591404],[118,76,68,-0.12805154733359814],[118,76,69,-0.126968989148736],[118,76,70,-0.12663782946765423],[118,76,71,-0.12652609683573246],[118,76,72,-0.12666747719049454],[118,76,73,-0.12720675766468048],[118,76,74,-0.1279067937284708],[118,76,75,-0.12838620319962502],[118,76,76,-0.12823577411472797],[118,76,77,-0.12715590372681618],[118,76,78,-0.12495226040482521],[118,76,79,-0.12224549800157547],[118,77,64,-0.14222238585352898],[118,77,65,-0.14158855006098747],[118,77,66,-0.13993318006396294],[118,77,67,-0.1377483643591404],[118,77,68,-0.13586404733359814],[118,77,69,-0.134781489148736],[118,77,70,-0.13445032946765423],[118,77,71,-0.13433859683573246],[118,77,72,-0.13447997719049454],[118,77,73,-0.13501925766468048],[118,77,74,-0.1357192937284708],[118,77,75,-0.13619870319962502],[118,77,76,-0.13604827411472797],[118,77,77,-0.13496840372681618],[118,77,78,-0.1327647604048252],[118,77,79,-0.13005799800157547],[118,78,64,-0.15003488585352898],[118,78,65,-0.14940105006098747],[118,78,66,-0.14774568006396294],[118,78,67,-0.1455608643591404],[118,78,68,-0.14367654733359814],[118,78,69,-0.142593989148736],[118,78,70,-0.14226282946765423],[118,78,71,-0.14215109683573246],[118,78,72,-0.14229247719049454],[118,78,73,-0.14283175766468048],[118,78,74,-0.1435317937284708],[118,78,75,-0.14401120319962502],[118,78,76,-0.14386077411472797],[118,78,77,-0.14278090372681618],[118,78,78,-0.1405772604048252],[118,78,79,-0.13787049800157547],[118,79,64,-0.15784738585352898],[118,79,65,-0.15721355006098747],[118,79,66,-0.15555818006396294],[118,79,67,-0.1533733643591404],[118,79,68,-0.15148904733359814],[118,79,69,-0.150406489148736],[118,79,70,-0.15007532946765423],[118,79,71,-0.14996359683573246],[118,79,72,-0.15010497719049454],[118,79,73,-0.15064425766468048],[118,79,74,-0.1513442937284708],[118,79,75,-0.15182370319962502],[118,79,76,-0.15167327411472797],[118,79,77,-0.15059340372681618],[118,79,78,-0.1483897604048252],[118,79,79,-0.14568299800157547],[118,80,64,-0.16565988585352898],[118,80,65,-0.16502605006098747],[118,80,66,-0.16337068006396294],[118,80,67,-0.1611858643591404],[118,80,68,-0.15930154733359814],[118,80,69,-0.158218989148736],[118,80,70,-0.15788782946765423],[118,80,71,-0.15777609683573246],[118,80,72,-0.15791747719049454],[118,80,73,-0.15845675766468048],[118,80,74,-0.1591567937284708],[118,80,75,-0.15963620319962502],[118,80,76,-0.15948577411472797],[118,80,77,-0.15840590372681618],[118,80,78,-0.1562022604048252],[118,80,79,-0.15349549800157547],[118,81,64,-0.17347238585352898],[118,81,65,-0.17283855006098747],[118,81,66,-0.17118318006396294],[118,81,67,-0.1689983643591404],[118,81,68,-0.16711404733359814],[118,81,69,-0.166031489148736],[118,81,70,-0.16570032946765423],[118,81,71,-0.16558859683573246],[118,81,72,-0.16572997719049454],[118,81,73,-0.16626925766468048],[118,81,74,-0.1669692937284708],[118,81,75,-0.16744870319962502],[118,81,76,-0.16729827411472797],[118,81,77,-0.16621840372681618],[118,81,78,-0.1640147604048252],[118,81,79,-0.16130799800157547],[118,82,64,-0.18128488585352898],[118,82,65,-0.18065105006098747],[118,82,66,-0.17899568006396294],[118,82,67,-0.1768108643591404],[118,82,68,-0.17492654733359814],[118,82,69,-0.173843989148736],[118,82,70,-0.17351282946765423],[118,82,71,-0.17340109683573246],[118,82,72,-0.17354247719049454],[118,82,73,-0.17408175766468048],[118,82,74,-0.1747817937284708],[118,82,75,-0.17526120319962502],[118,82,76,-0.17511077411472797],[118,82,77,-0.17403090372681618],[118,82,78,-0.1718272604048252],[118,82,79,-0.16912049800157547],[118,83,64,-0.18909738585352898],[118,83,65,-0.18846355006098747],[118,83,66,-0.18680818006396294],[118,83,67,-0.1846233643591404],[118,83,68,-0.18273904733359814],[118,83,69,-0.181656489148736],[118,83,70,-0.18132532946765423],[118,83,71,-0.18121359683573246],[118,83,72,-0.18135497719049454],[118,83,73,-0.18189425766468048],[118,83,74,-0.1825942937284708],[118,83,75,-0.18307370319962502],[118,83,76,-0.18292327411472797],[118,83,77,-0.18184340372681618],[118,83,78,-0.1796397604048252],[118,83,79,-0.17693299800157547],[118,84,64,-0.19690988585352898],[118,84,65,-0.19627605006098747],[118,84,66,-0.19462068006396294],[118,84,67,-0.1924358643591404],[118,84,68,-0.19055154733359814],[118,84,69,-0.189468989148736],[118,84,70,-0.18913782946765423],[118,84,71,-0.18902609683573246],[118,84,72,-0.18916747719049454],[118,84,73,-0.18970675766468048],[118,84,74,-0.1904067937284708],[118,84,75,-0.19088620319962502],[118,84,76,-0.19073577411472797],[118,84,77,-0.18965590372681618],[118,84,78,-0.1874522604048252],[118,84,79,-0.18474549800157547],[118,85,64,-0.20472238585352898],[118,85,65,-0.20408855006098747],[118,85,66,-0.20243318006396294],[118,85,67,-0.2002483643591404],[118,85,68,-0.19836404733359814],[118,85,69,-0.197281489148736],[118,85,70,-0.19695032946765423],[118,85,71,-0.19683859683573246],[118,85,72,-0.19697997719049454],[118,85,73,-0.19751925766468048],[118,85,74,-0.1982192937284708],[118,85,75,-0.19869870319962502],[118,85,76,-0.19854827411472797],[118,85,77,-0.19746840372681618],[118,85,78,-0.1952647604048252],[118,85,79,-0.19255799800157547],[118,86,64,-0.21253488585352898],[118,86,65,-0.21190105006098747],[118,86,66,-0.21024568006396294],[118,86,67,-0.2080608643591404],[118,86,68,-0.20617654733359814],[118,86,69,-0.205093989148736],[118,86,70,-0.20476282946765423],[118,86,71,-0.20465109683573246],[118,86,72,-0.20479247719049454],[118,86,73,-0.20533175766468048],[118,86,74,-0.2060317937284708],[118,86,75,-0.20651120319962502],[118,86,76,-0.20636077411472797],[118,86,77,-0.20528090372681618],[118,86,78,-0.2030772604048252],[118,86,79,-0.20037049800157547],[118,87,64,-0.22034738585352898],[118,87,65,-0.21971355006098747],[118,87,66,-0.21805818006396294],[118,87,67,-0.2158733643591404],[118,87,68,-0.21398904733359814],[118,87,69,-0.212906489148736],[118,87,70,-0.21257532946765423],[118,87,71,-0.21246359683573246],[118,87,72,-0.21260497719049454],[118,87,73,-0.21314425766468048],[118,87,74,-0.2138442937284708],[118,87,75,-0.21432370319962502],[118,87,76,-0.21417327411472797],[118,87,77,-0.21309340372681618],[118,87,78,-0.2108897604048252],[118,87,79,-0.20818299800157547],[118,88,64,-0.22815988585352898],[118,88,65,-0.22752605006098747],[118,88,66,-0.22587068006396294],[118,88,67,-0.2236858643591404],[118,88,68,-0.22180154733359814],[118,88,69,-0.220718989148736],[118,88,70,-0.22038782946765423],[118,88,71,-0.22027609683573246],[118,88,72,-0.22041747719049454],[118,88,73,-0.22095675766468048],[118,88,74,-0.2216567937284708],[118,88,75,-0.22213620319962502],[118,88,76,-0.22198577411472797],[118,88,77,-0.22090590372681618],[118,88,78,-0.2187022604048252],[118,88,79,-0.21599549800157547],[118,89,64,-0.23597238585352898],[118,89,65,-0.23533855006098747],[118,89,66,-0.23368318006396294],[118,89,67,-0.2314983643591404],[118,89,68,-0.22961404733359814],[118,89,69,-0.228531489148736],[118,89,70,-0.22820032946765423],[118,89,71,-0.22808859683573246],[118,89,72,-0.22822997719049454],[118,89,73,-0.22876925766468048],[118,89,74,-0.2294692937284708],[118,89,75,-0.22994870319962502],[118,89,76,-0.22979827411472797],[118,89,77,-0.22871840372681618],[118,89,78,-0.2265147604048252],[118,89,79,-0.22380799800157547],[118,90,64,-0.24378488585352898],[118,90,65,-0.24315105006098747],[118,90,66,-0.24149568006396294],[118,90,67,-0.2393108643591404],[118,90,68,-0.23742654733359814],[118,90,69,-0.236343989148736],[118,90,70,-0.23601282946765423],[118,90,71,-0.23590109683573246],[118,90,72,-0.23604247719049454],[118,90,73,-0.23658175766468048],[118,90,74,-0.2372817937284708],[118,90,75,-0.23776120319962502],[118,90,76,-0.23761077411472797],[118,90,77,-0.23653090372681618],[118,90,78,-0.2343272604048252],[118,90,79,-0.23162049800157547],[118,91,64,-0.251597385853529],[118,91,65,-0.2509635500609875],[118,91,66,-0.24930818006396294],[118,91,67,-0.2471233643591404],[118,91,68,-0.24523904733359814],[118,91,69,-0.244156489148736],[118,91,70,-0.24382532946765423],[118,91,71,-0.24371359683573246],[118,91,72,-0.24385497719049454],[118,91,73,-0.24439425766468048],[118,91,74,-0.2450942937284708],[118,91,75,-0.24557370319962502],[118,91,76,-0.24542327411472797],[118,91,77,-0.24434340372681618],[118,91,78,-0.2421397604048252],[118,91,79,-0.23943299800157547],[118,92,64,-0.259409885853529],[118,92,65,-0.2587760500609875],[118,92,66,-0.25712068006396294],[118,92,67,-0.2549358643591404],[118,92,68,-0.25305154733359814],[118,92,69,-0.251968989148736],[118,92,70,-0.25163782946765423],[118,92,71,-0.25152609683573246],[118,92,72,-0.25166747719049454],[118,92,73,-0.2522067576646805],[118,92,74,-0.2529067937284708],[118,92,75,-0.253386203199625],[118,92,76,-0.253235774114728],[118,92,77,-0.2521559037268162],[118,92,78,-0.2499522604048252],[118,92,79,-0.24724549800157547],[118,93,64,-0.267222385853529],[118,93,65,-0.2665885500609875],[118,93,66,-0.26493318006396294],[118,93,67,-0.2627483643591404],[118,93,68,-0.26086404733359814],[118,93,69,-0.259781489148736],[118,93,70,-0.25945032946765423],[118,93,71,-0.25933859683573246],[118,93,72,-0.25947997719049454],[118,93,73,-0.2600192576646805],[118,93,74,-0.2607192937284708],[118,93,75,-0.261198703199625],[118,93,76,-0.261048274114728],[118,93,77,-0.2599684037268162],[118,93,78,-0.2577647604048252],[118,93,79,-0.25505799800157547],[118,94,64,-0.275034885853529],[118,94,65,-0.2744010500609875],[118,94,66,-0.27274568006396294],[118,94,67,-0.2705608643591404],[118,94,68,-0.26867654733359814],[118,94,69,-0.267593989148736],[118,94,70,-0.26726282946765423],[118,94,71,-0.26715109683573246],[118,94,72,-0.26729247719049454],[118,94,73,-0.2678317576646805],[118,94,74,-0.2685317937284708],[118,94,75,-0.269011203199625],[118,94,76,-0.268860774114728],[118,94,77,-0.2677809037268162],[118,94,78,-0.2655772604048252],[118,94,79,-0.26287049800157547],[118,95,64,-0.282847385853529],[118,95,65,-0.2822135500609875],[118,95,66,-0.28055818006396294],[118,95,67,-0.2783733643591404],[118,95,68,-0.27648904733359814],[118,95,69,-0.275406489148736],[118,95,70,-0.27507532946765423],[118,95,71,-0.27496359683573246],[118,95,72,-0.27510497719049454],[118,95,73,-0.2756442576646805],[118,95,74,-0.2763442937284708],[118,95,75,-0.276823703199625],[118,95,76,-0.276673274114728],[118,95,77,-0.2755934037268162],[118,95,78,-0.2733897604048252],[118,95,79,-0.27068299800157547],[118,96,64,-0.290659885853529],[118,96,65,-0.2900260500609875],[118,96,66,-0.28837068006396294],[118,96,67,-0.2861858643591404],[118,96,68,-0.28430154733359814],[118,96,69,-0.283218989148736],[118,96,70,-0.28288782946765423],[118,96,71,-0.28277609683573246],[118,96,72,-0.28291747719049454],[118,96,73,-0.2834567576646805],[118,96,74,-0.2841567937284708],[118,96,75,-0.284636203199625],[118,96,76,-0.284485774114728],[118,96,77,-0.2834059037268162],[118,96,78,-0.2812022604048252],[118,96,79,-0.27849549800157547],[118,97,64,-0.298472385853529],[118,97,65,-0.2978385500609875],[118,97,66,-0.29618318006396294],[118,97,67,-0.2939983643591404],[118,97,68,-0.29211404733359814],[118,97,69,-0.291031489148736],[118,97,70,-0.29070032946765423],[118,97,71,-0.29058859683573246],[118,97,72,-0.29072997719049454],[118,97,73,-0.2912692576646805],[118,97,74,-0.2919692937284708],[118,97,75,-0.292448703199625],[118,97,76,-0.292298274114728],[118,97,77,-0.2912184037268162],[118,97,78,-0.2890147604048252],[118,97,79,-0.28630799800157547],[118,98,64,-0.306284885853529],[118,98,65,-0.3056510500609875],[118,98,66,-0.30399568006396294],[118,98,67,-0.3018108643591404],[118,98,68,-0.29992654733359814],[118,98,69,-0.298843989148736],[118,98,70,-0.29851282946765423],[118,98,71,-0.29840109683573246],[118,98,72,-0.29854247719049454],[118,98,73,-0.2990817576646805],[118,98,74,-0.2997817937284708],[118,98,75,-0.300261203199625],[118,98,76,-0.300110774114728],[118,98,77,-0.2990309037268162],[118,98,78,-0.2968272604048252],[118,98,79,-0.29412049800157547],[118,99,64,-0.314097385853529],[118,99,65,-0.3134635500609875],[118,99,66,-0.31180818006396294],[118,99,67,-0.3096233643591404],[118,99,68,-0.30773904733359814],[118,99,69,-0.306656489148736],[118,99,70,-0.30632532946765423],[118,99,71,-0.30621359683573246],[118,99,72,-0.30635497719049454],[118,99,73,-0.3068942576646805],[118,99,74,-0.3075942937284708],[118,99,75,-0.308073703199625],[118,99,76,-0.307923274114728],[118,99,77,-0.3068434037268162],[118,99,78,-0.3046397604048252],[118,99,79,-0.30193299800157547],[118,100,64,-0.321909885853529],[118,100,65,-0.3212760500609875],[118,100,66,-0.31962068006396294],[118,100,67,-0.3174358643591404],[118,100,68,-0.31555154733359814],[118,100,69,-0.314468989148736],[118,100,70,-0.31413782946765423],[118,100,71,-0.31402609683573246],[118,100,72,-0.31416747719049454],[118,100,73,-0.3147067576646805],[118,100,74,-0.3154067937284708],[118,100,75,-0.315886203199625],[118,100,76,-0.315735774114728],[118,100,77,-0.3146559037268162],[118,100,78,-0.3124522604048252],[118,100,79,-0.30974549800157547],[118,101,64,-0.329722385853529],[118,101,65,-0.3290885500609875],[118,101,66,-0.32743318006396294],[118,101,67,-0.3252483643591404],[118,101,68,-0.32336404733359814],[118,101,69,-0.322281489148736],[118,101,70,-0.32195032946765423],[118,101,71,-0.32183859683573246],[118,101,72,-0.32197997719049454],[118,101,73,-0.3225192576646805],[118,101,74,-0.3232192937284708],[118,101,75,-0.323698703199625],[118,101,76,-0.323548274114728],[118,101,77,-0.3224684037268162],[118,101,78,-0.3202647604048252],[118,101,79,-0.31755799800157547],[118,102,64,-0.337534885853529],[118,102,65,-0.3369010500609875],[118,102,66,-0.33524568006396294],[118,102,67,-0.3330608643591404],[118,102,68,-0.33117654733359814],[118,102,69,-0.330093989148736],[118,102,70,-0.32976282946765423],[118,102,71,-0.32965109683573246],[118,102,72,-0.32979247719049454],[118,102,73,-0.3303317576646805],[118,102,74,-0.3310317937284708],[118,102,75,-0.331511203199625],[118,102,76,-0.331360774114728],[118,102,77,-0.3302809037268162],[118,102,78,-0.3280772604048252],[118,102,79,-0.32537049800157547],[118,103,64,-0.345347385853529],[118,103,65,-0.3447135500609875],[118,103,66,-0.34305818006396294],[118,103,67,-0.3408733643591404],[118,103,68,-0.33898904733359814],[118,103,69,-0.337906489148736],[118,103,70,-0.33757532946765423],[118,103,71,-0.33746359683573246],[118,103,72,-0.33760497719049454],[118,103,73,-0.3381442576646805],[118,103,74,-0.3388442937284708],[118,103,75,-0.339323703199625],[118,103,76,-0.339173274114728],[118,103,77,-0.3380934037268162],[118,103,78,-0.3358897604048252],[118,103,79,-0.33318299800157547],[118,104,64,-0.353159885853529],[118,104,65,-0.3525260500609875],[118,104,66,-0.35087068006396294],[118,104,67,-0.3486858643591404],[118,104,68,-0.34680154733359814],[118,104,69,-0.345718989148736],[118,104,70,-0.34538782946765423],[118,104,71,-0.34527609683573246],[118,104,72,-0.34541747719049454],[118,104,73,-0.3459567576646805],[118,104,74,-0.3466567937284708],[118,104,75,-0.347136203199625],[118,104,76,-0.346985774114728],[118,104,77,-0.3459059037268162],[118,104,78,-0.3437022604048252],[118,104,79,-0.34099549800157547],[118,105,64,-0.360972385853529],[118,105,65,-0.3603385500609875],[118,105,66,-0.35868318006396294],[118,105,67,-0.3564983643591404],[118,105,68,-0.35461404733359814],[118,105,69,-0.353531489148736],[118,105,70,-0.35320032946765423],[118,105,71,-0.35308859683573246],[118,105,72,-0.35322997719049454],[118,105,73,-0.3537692576646805],[118,105,74,-0.3544692937284708],[118,105,75,-0.354948703199625],[118,105,76,-0.354798274114728],[118,105,77,-0.3537184037268162],[118,105,78,-0.3515147604048252],[118,105,79,-0.34880799800157547],[118,106,64,-0.368784885853529],[118,106,65,-0.3681510500609875],[118,106,66,-0.36649568006396294],[118,106,67,-0.3643108643591404],[118,106,68,-0.36242654733359814],[118,106,69,-0.361343989148736],[118,106,70,-0.36101282946765423],[118,106,71,-0.36090109683573246],[118,106,72,-0.36104247719049454],[118,106,73,-0.3615817576646805],[118,106,74,-0.3622817937284708],[118,106,75,-0.362761203199625],[118,106,76,-0.362610774114728],[118,106,77,-0.3615309037268162],[118,106,78,-0.3593272604048252],[118,106,79,-0.35662049800157547],[118,107,64,-0.376597385853529],[118,107,65,-0.3759635500609875],[118,107,66,-0.37430818006396294],[118,107,67,-0.3721233643591404],[118,107,68,-0.37023904733359814],[118,107,69,-0.369156489148736],[118,107,70,-0.36882532946765423],[118,107,71,-0.36871359683573246],[118,107,72,-0.36885497719049454],[118,107,73,-0.3693942576646805],[118,107,74,-0.3700942937284708],[118,107,75,-0.370573703199625],[118,107,76,-0.370423274114728],[118,107,77,-0.3693434037268162],[118,107,78,-0.3671397604048252],[118,107,79,-0.36443299800157547],[118,108,64,-0.384409885853529],[118,108,65,-0.3837760500609875],[118,108,66,-0.38212068006396294],[118,108,67,-0.3799358643591404],[118,108,68,-0.37805154733359814],[118,108,69,-0.376968989148736],[118,108,70,-0.37663782946765423],[118,108,71,-0.37652609683573246],[118,108,72,-0.37666747719049454],[118,108,73,-0.3772067576646805],[118,108,74,-0.3779067937284708],[118,108,75,-0.378386203199625],[118,108,76,-0.378235774114728],[118,108,77,-0.3771559037268162],[118,108,78,-0.3749522604048252],[118,108,79,-0.37224549800157547],[118,109,64,-0.392222385853529],[118,109,65,-0.3915885500609875],[118,109,66,-0.38993318006396294],[118,109,67,-0.3877483643591404],[118,109,68,-0.38586404733359814],[118,109,69,-0.384781489148736],[118,109,70,-0.38445032946765423],[118,109,71,-0.38433859683573246],[118,109,72,-0.38447997719049454],[118,109,73,-0.3850192576646805],[118,109,74,-0.3857192937284708],[118,109,75,-0.386198703199625],[118,109,76,-0.386048274114728],[118,109,77,-0.3849684037268162],[118,109,78,-0.3827647604048252],[118,109,79,-0.38005799800157547],[118,110,64,-0.400034885853529],[118,110,65,-0.3994010500609875],[118,110,66,-0.39774568006396294],[118,110,67,-0.3955608643591404],[118,110,68,-0.39367654733359814],[118,110,69,-0.392593989148736],[118,110,70,-0.39226282946765423],[118,110,71,-0.39215109683573246],[118,110,72,-0.39229247719049454],[118,110,73,-0.3928317576646805],[118,110,74,-0.3935317937284708],[118,110,75,-0.394011203199625],[118,110,76,-0.393860774114728],[118,110,77,-0.3927809037268162],[118,110,78,-0.3905772604048252],[118,110,79,-0.38787049800157547],[118,111,64,-0.407847385853529],[118,111,65,-0.4072135500609875],[118,111,66,-0.40555818006396294],[118,111,67,-0.4033733643591404],[118,111,68,-0.40148904733359814],[118,111,69,-0.400406489148736],[118,111,70,-0.40007532946765423],[118,111,71,-0.39996359683573246],[118,111,72,-0.40010497719049454],[118,111,73,-0.4006442576646805],[118,111,74,-0.4013442937284708],[118,111,75,-0.401823703199625],[118,111,76,-0.401673274114728],[118,111,77,-0.4005934037268162],[118,111,78,-0.3983897604048252],[118,111,79,-0.39568299800157547],[118,112,64,-0.415659885853529],[118,112,65,-0.4150260500609875],[118,112,66,-0.41337068006396294],[118,112,67,-0.4111858643591404],[118,112,68,-0.40930154733359814],[118,112,69,-0.408218989148736],[118,112,70,-0.40788782946765423],[118,112,71,-0.40777609683573246],[118,112,72,-0.40791747719049454],[118,112,73,-0.4084567576646805],[118,112,74,-0.4091567937284708],[118,112,75,-0.409636203199625],[118,112,76,-0.409485774114728],[118,112,77,-0.4084059037268162],[118,112,78,-0.4062022604048252],[118,112,79,-0.40349549800157547],[118,113,64,-0.423472385853529],[118,113,65,-0.4228385500609875],[118,113,66,-0.42118318006396294],[118,113,67,-0.4189983643591404],[118,113,68,-0.41711404733359814],[118,113,69,-0.416031489148736],[118,113,70,-0.41570032946765423],[118,113,71,-0.41558859683573246],[118,113,72,-0.41572997719049454],[118,113,73,-0.4162692576646805],[118,113,74,-0.4169692937284708],[118,113,75,-0.417448703199625],[118,113,76,-0.417298274114728],[118,113,77,-0.4162184037268162],[118,113,78,-0.4140147604048252],[118,113,79,-0.41130799800157547],[118,114,64,-0.431284885853529],[118,114,65,-0.4306510500609875],[118,114,66,-0.42899568006396294],[118,114,67,-0.4268108643591404],[118,114,68,-0.42492654733359814],[118,114,69,-0.423843989148736],[118,114,70,-0.42351282946765423],[118,114,71,-0.42340109683573246],[118,114,72,-0.42354247719049454],[118,114,73,-0.4240817576646805],[118,114,74,-0.4247817937284708],[118,114,75,-0.425261203199625],[118,114,76,-0.425110774114728],[118,114,77,-0.4240309037268162],[118,114,78,-0.4218272604048252],[118,114,79,-0.41912049800157547],[118,115,64,-0.439097385853529],[118,115,65,-0.4384635500609875],[118,115,66,-0.43680818006396294],[118,115,67,-0.4346233643591404],[118,115,68,-0.43273904733359814],[118,115,69,-0.431656489148736],[118,115,70,-0.43132532946765423],[118,115,71,-0.43121359683573246],[118,115,72,-0.43135497719049454],[118,115,73,-0.4318942576646805],[118,115,74,-0.4325942937284708],[118,115,75,-0.433073703199625],[118,115,76,-0.432923274114728],[118,115,77,-0.4318434037268162],[118,115,78,-0.4296397604048252],[118,115,79,-0.42693299800157547],[118,116,64,-0.446909885853529],[118,116,65,-0.4462760500609875],[118,116,66,-0.44462068006396294],[118,116,67,-0.4424358643591404],[118,116,68,-0.44055154733359814],[118,116,69,-0.439468989148736],[118,116,70,-0.43913782946765423],[118,116,71,-0.43902609683573246],[118,116,72,-0.43916747719049454],[118,116,73,-0.4397067576646805],[118,116,74,-0.4404067937284708],[118,116,75,-0.440886203199625],[118,116,76,-0.440735774114728],[118,116,77,-0.4396559037268162],[118,116,78,-0.4374522604048252],[118,116,79,-0.43474549800157547],[118,117,64,-0.454722385853529],[118,117,65,-0.4540885500609875],[118,117,66,-0.45243318006396294],[118,117,67,-0.4502483643591404],[118,117,68,-0.44836404733359814],[118,117,69,-0.447281489148736],[118,117,70,-0.44695032946765423],[118,117,71,-0.44683859683573246],[118,117,72,-0.44697997719049454],[118,117,73,-0.4475192576646805],[118,117,74,-0.4482192937284708],[118,117,75,-0.448698703199625],[118,117,76,-0.448548274114728],[118,117,77,-0.4474684037268162],[118,117,78,-0.4452647604048252],[118,117,79,-0.44255799800157547],[118,118,64,-0.462534885853529],[118,118,65,-0.4619010500609875],[118,118,66,-0.46024568006396294],[118,118,67,-0.4580608643591404],[118,118,68,-0.45617654733359814],[118,118,69,-0.455093989148736],[118,118,70,-0.45476282946765423],[118,118,71,-0.45465109683573246],[118,118,72,-0.45479247719049454],[118,118,73,-0.4553317576646805],[118,118,74,-0.4560317937284708],[118,118,75,-0.456511203199625],[118,118,76,-0.456360774114728],[118,118,77,-0.4552809037268162],[118,118,78,-0.4530772604048252],[118,118,79,-0.45037049800157547],[118,119,64,-0.470347385853529],[118,119,65,-0.4697135500609875],[118,119,66,-0.46805818006396294],[118,119,67,-0.4658733643591404],[118,119,68,-0.46398904733359814],[118,119,69,-0.462906489148736],[118,119,70,-0.46257532946765423],[118,119,71,-0.46246359683573246],[118,119,72,-0.46260497719049454],[118,119,73,-0.4631442576646805],[118,119,74,-0.4638442937284708],[118,119,75,-0.464323703199625],[118,119,76,-0.464173274114728],[118,119,77,-0.4630934037268162],[118,119,78,-0.4608897604048252],[118,119,79,-0.45818299800157547],[118,120,64,-0.478159885853529],[118,120,65,-0.4775260500609875],[118,120,66,-0.47587068006396294],[118,120,67,-0.4736858643591404],[118,120,68,-0.47180154733359814],[118,120,69,-0.470718989148736],[118,120,70,-0.47038782946765423],[118,120,71,-0.47027609683573246],[118,120,72,-0.47041747719049454],[118,120,73,-0.4709567576646805],[118,120,74,-0.4716567937284708],[118,120,75,-0.472136203199625],[118,120,76,-0.471985774114728],[118,120,77,-0.4709059037268162],[118,120,78,-0.4687022604048252],[118,120,79,-0.46599549800157547],[118,121,64,-0.485972385853529],[118,121,65,-0.4853385500609875],[118,121,66,-0.48368318006396294],[118,121,67,-0.4814983643591404],[118,121,68,-0.47961404733359814],[118,121,69,-0.478531489148736],[118,121,70,-0.47820032946765423],[118,121,71,-0.47808859683573246],[118,121,72,-0.47822997719049454],[118,121,73,-0.4787692576646805],[118,121,74,-0.4794692937284708],[118,121,75,-0.479948703199625],[118,121,76,-0.479798274114728],[118,121,77,-0.4787184037268162],[118,121,78,-0.4765147604048252],[118,121,79,-0.47380799800157547],[118,122,64,-0.493784885853529],[118,122,65,-0.4931510500609875],[118,122,66,-0.49149568006396294],[118,122,67,-0.4893108643591404],[118,122,68,-0.48742654733359814],[118,122,69,-0.486343989148736],[118,122,70,-0.48601282946765423],[118,122,71,-0.48590109683573246],[118,122,72,-0.48604247719049454],[118,122,73,-0.4865817576646805],[118,122,74,-0.4872817937284708],[118,122,75,-0.487761203199625],[118,122,76,-0.487610774114728],[118,122,77,-0.4865309037268162],[118,122,78,-0.4843272604048252],[118,122,79,-0.48162049800157547],[118,123,64,-0.501597385853529],[118,123,65,-0.5009635500609875],[118,123,66,-0.49930818006396294],[118,123,67,-0.4971233643591404],[118,123,68,-0.49523904733359814],[118,123,69,-0.494156489148736],[118,123,70,-0.49382532946765423],[118,123,71,-0.49371359683573246],[118,123,72,-0.49385497719049454],[118,123,73,-0.4943942576646805],[118,123,74,-0.4950942937284708],[118,123,75,-0.495573703199625],[118,123,76,-0.495423274114728],[118,123,77,-0.4943434037268162],[118,123,78,-0.4921397604048252],[118,123,79,-0.48943299800157547],[118,124,64,-0.509409885853529],[118,124,65,-0.5087760500609875],[118,124,66,-0.5071206800639629],[118,124,67,-0.5049358643591404],[118,124,68,-0.5030515473335981],[118,124,69,-0.501968989148736],[118,124,70,-0.5016378294676542],[118,124,71,-0.5015260968357325],[118,124,72,-0.5016674771904945],[118,124,73,-0.5022067576646805],[118,124,74,-0.5029067937284708],[118,124,75,-0.503386203199625],[118,124,76,-0.503235774114728],[118,124,77,-0.5021559037268162],[118,124,78,-0.4999522604048252],[118,124,79,-0.49724549800157547],[118,125,64,-0.517222385853529],[118,125,65,-0.5165885500609875],[118,125,66,-0.5149331800639629],[118,125,67,-0.5127483643591404],[118,125,68,-0.5108640473335981],[118,125,69,-0.509781489148736],[118,125,70,-0.5094503294676542],[118,125,71,-0.5093385968357325],[118,125,72,-0.5094799771904945],[118,125,73,-0.5100192576646805],[118,125,74,-0.5107192937284708],[118,125,75,-0.511198703199625],[118,125,76,-0.511048274114728],[118,125,77,-0.5099684037268162],[118,125,78,-0.5077647604048252],[118,125,79,-0.5050579980015755],[118,126,64,-0.525034885853529],[118,126,65,-0.5244010500609875],[118,126,66,-0.5227456800639629],[118,126,67,-0.5205608643591404],[118,126,68,-0.5186765473335981],[118,126,69,-0.517593989148736],[118,126,70,-0.5172628294676542],[118,126,71,-0.5171510968357325],[118,126,72,-0.5172924771904945],[118,126,73,-0.5178317576646805],[118,126,74,-0.5185317937284708],[118,126,75,-0.519011203199625],[118,126,76,-0.518860774114728],[118,126,77,-0.5177809037268162],[118,126,78,-0.5155772604048252],[118,126,79,-0.5128704980015755],[118,127,64,-0.532847385853529],[118,127,65,-0.5322135500609875],[118,127,66,-0.5305581800639629],[118,127,67,-0.5283733643591404],[118,127,68,-0.5264890473335981],[118,127,69,-0.525406489148736],[118,127,70,-0.5250753294676542],[118,127,71,-0.5249635968357325],[118,127,72,-0.5251049771904945],[118,127,73,-0.5256442576646805],[118,127,74,-0.5263442937284708],[118,127,75,-0.526823703199625],[118,127,76,-0.526673274114728],[118,127,77,-0.5255934037268162],[118,127,78,-0.5233897604048252],[118,127,79,-0.5206829980015755],[118,128,64,-0.540659885853529],[118,128,65,-0.5400260500609875],[118,128,66,-0.5383706800639629],[118,128,67,-0.5361858643591404],[118,128,68,-0.5343015473335981],[118,128,69,-0.533218989148736],[118,128,70,-0.5328878294676542],[118,128,71,-0.5327760968357325],[118,128,72,-0.5329174771904945],[118,128,73,-0.5334567576646805],[118,128,74,-0.5341567937284708],[118,128,75,-0.534636203199625],[118,128,76,-0.534485774114728],[118,128,77,-0.5334059037268162],[118,128,78,-0.5312022604048252],[118,128,79,-0.5284954980015755],[118,129,64,-0.548472385853529],[118,129,65,-0.5478385500609875],[118,129,66,-0.5461831800639629],[118,129,67,-0.5439983643591404],[118,129,68,-0.5421140473335981],[118,129,69,-0.541031489148736],[118,129,70,-0.5407003294676542],[118,129,71,-0.5405885968357325],[118,129,72,-0.5407299771904945],[118,129,73,-0.5412692576646805],[118,129,74,-0.5419692937284708],[118,129,75,-0.542448703199625],[118,129,76,-0.542298274114728],[118,129,77,-0.5412184037268162],[118,129,78,-0.5390147604048252],[118,129,79,-0.5363079980015755],[118,130,64,-0.556284885853529],[118,130,65,-0.5556510500609875],[118,130,66,-0.5539956800639629],[118,130,67,-0.5518108643591404],[118,130,68,-0.5499265473335981],[118,130,69,-0.548843989148736],[118,130,70,-0.5485128294676542],[118,130,71,-0.5484010968357325],[118,130,72,-0.5485424771904945],[118,130,73,-0.5490817576646805],[118,130,74,-0.5497817937284708],[118,130,75,-0.550261203199625],[118,130,76,-0.550110774114728],[118,130,77,-0.5490309037268162],[118,130,78,-0.5468272604048252],[118,130,79,-0.5441204980015755],[118,131,64,-0.564097385853529],[118,131,65,-0.5634635500609875],[118,131,66,-0.5618081800639629],[118,131,67,-0.5596233643591404],[118,131,68,-0.5577390473335981],[118,131,69,-0.556656489148736],[118,131,70,-0.5563253294676542],[118,131,71,-0.5562135968357325],[118,131,72,-0.5563549771904945],[118,131,73,-0.5568942576646805],[118,131,74,-0.5575942937284708],[118,131,75,-0.558073703199625],[118,131,76,-0.557923274114728],[118,131,77,-0.5568434037268162],[118,131,78,-0.5546397604048252],[118,131,79,-0.5519329980015755],[118,132,64,-0.571909885853529],[118,132,65,-0.5712760500609875],[118,132,66,-0.5696206800639629],[118,132,67,-0.5674358643591404],[118,132,68,-0.5655515473335981],[118,132,69,-0.564468989148736],[118,132,70,-0.5641378294676542],[118,132,71,-0.5640260968357325],[118,132,72,-0.5641674771904945],[118,132,73,-0.5647067576646805],[118,132,74,-0.5654067937284708],[118,132,75,-0.565886203199625],[118,132,76,-0.565735774114728],[118,132,77,-0.5646559037268162],[118,132,78,-0.5624522604048252],[118,132,79,-0.5597454980015755],[118,133,64,-0.579722385853529],[118,133,65,-0.5790885500609875],[118,133,66,-0.5774331800639629],[118,133,67,-0.5752483643591404],[118,133,68,-0.5733640473335981],[118,133,69,-0.572281489148736],[118,133,70,-0.5719503294676542],[118,133,71,-0.5718385968357325],[118,133,72,-0.5719799771904945],[118,133,73,-0.5725192576646805],[118,133,74,-0.5732192937284708],[118,133,75,-0.573698703199625],[118,133,76,-0.573548274114728],[118,133,77,-0.5724684037268162],[118,133,78,-0.5702647604048252],[118,133,79,-0.5675579980015755],[118,134,64,-0.587534885853529],[118,134,65,-0.5869010500609875],[118,134,66,-0.5852456800639629],[118,134,67,-0.5830608643591404],[118,134,68,-0.5811765473335981],[118,134,69,-0.580093989148736],[118,134,70,-0.5797628294676542],[118,134,71,-0.5796510968357325],[118,134,72,-0.5797924771904945],[118,134,73,-0.5803317576646805],[118,134,74,-0.5810317937284708],[118,134,75,-0.581511203199625],[118,134,76,-0.581360774114728],[118,134,77,-0.5802809037268162],[118,134,78,-0.5780772604048252],[118,134,79,-0.5753704980015755],[118,135,64,-0.595347385853529],[118,135,65,-0.5947135500609875],[118,135,66,-0.5930581800639629],[118,135,67,-0.5908733643591404],[118,135,68,-0.5889890473335981],[118,135,69,-0.587906489148736],[118,135,70,-0.5875753294676542],[118,135,71,-0.5874635968357325],[118,135,72,-0.5876049771904945],[118,135,73,-0.5881442576646805],[118,135,74,-0.5888442937284708],[118,135,75,-0.589323703199625],[118,135,76,-0.589173274114728],[118,135,77,-0.5880934037268162],[118,135,78,-0.5858897604048252],[118,135,79,-0.5831829980015755],[118,136,64,-0.603159885853529],[118,136,65,-0.6025260500609875],[118,136,66,-0.6008706800639629],[118,136,67,-0.5986858643591404],[118,136,68,-0.5968015473335981],[118,136,69,-0.595718989148736],[118,136,70,-0.5953878294676542],[118,136,71,-0.5952760968357325],[118,136,72,-0.5954174771904945],[118,136,73,-0.5959567576646805],[118,136,74,-0.5966567937284708],[118,136,75,-0.597136203199625],[118,136,76,-0.596985774114728],[118,136,77,-0.5959059037268162],[118,136,78,-0.5937022604048252],[118,136,79,-0.5909954980015755],[118,137,64,-0.610972385853529],[118,137,65,-0.6103385500609875],[118,137,66,-0.6086831800639629],[118,137,67,-0.6064983643591404],[118,137,68,-0.6046140473335981],[118,137,69,-0.603531489148736],[118,137,70,-0.6032003294676542],[118,137,71,-0.6030885968357325],[118,137,72,-0.6032299771904945],[118,137,73,-0.6037692576646805],[118,137,74,-0.6044692937284708],[118,137,75,-0.604948703199625],[118,137,76,-0.604798274114728],[118,137,77,-0.6037184037268162],[118,137,78,-0.6015147604048252],[118,137,79,-0.5988079980015755],[118,138,64,-0.618784885853529],[118,138,65,-0.6181510500609875],[118,138,66,-0.6164956800639629],[118,138,67,-0.6143108643591404],[118,138,68,-0.6124265473335981],[118,138,69,-0.611343989148736],[118,138,70,-0.6110128294676542],[118,138,71,-0.6109010968357325],[118,138,72,-0.6110424771904945],[118,138,73,-0.6115817576646805],[118,138,74,-0.6122817937284708],[118,138,75,-0.612761203199625],[118,138,76,-0.612610774114728],[118,138,77,-0.6115309037268162],[118,138,78,-0.6093272604048252],[118,138,79,-0.6066204980015755],[118,139,64,-0.626597385853529],[118,139,65,-0.6259635500609875],[118,139,66,-0.6243081800639629],[118,139,67,-0.6221233643591404],[118,139,68,-0.6202390473335981],[118,139,69,-0.619156489148736],[118,139,70,-0.6188253294676542],[118,139,71,-0.6187135968357325],[118,139,72,-0.6188549771904945],[118,139,73,-0.6193942576646805],[118,139,74,-0.6200942937284708],[118,139,75,-0.620573703199625],[118,139,76,-0.620423274114728],[118,139,77,-0.6193434037268162],[118,139,78,-0.6171397604048252],[118,139,79,-0.6144329980015755],[118,140,64,-0.634409885853529],[118,140,65,-0.6337760500609875],[118,140,66,-0.6321206800639629],[118,140,67,-0.6299358643591404],[118,140,68,-0.6280515473335981],[118,140,69,-0.626968989148736],[118,140,70,-0.6266378294676542],[118,140,71,-0.6265260968357325],[118,140,72,-0.6266674771904945],[118,140,73,-0.6272067576646805],[118,140,74,-0.6279067937284708],[118,140,75,-0.628386203199625],[118,140,76,-0.628235774114728],[118,140,77,-0.6271559037268162],[118,140,78,-0.6249522604048252],[118,140,79,-0.6222454980015755],[118,141,64,-0.642222385853529],[118,141,65,-0.6415885500609875],[118,141,66,-0.6399331800639629],[118,141,67,-0.6377483643591404],[118,141,68,-0.6358640473335981],[118,141,69,-0.634781489148736],[118,141,70,-0.6344503294676542],[118,141,71,-0.6343385968357325],[118,141,72,-0.6344799771904945],[118,141,73,-0.6350192576646805],[118,141,74,-0.6357192937284708],[118,141,75,-0.636198703199625],[118,141,76,-0.636048274114728],[118,141,77,-0.6349684037268162],[118,141,78,-0.6327647604048252],[118,141,79,-0.6300579980015755],[118,142,64,-0.650034885853529],[118,142,65,-0.6494010500609875],[118,142,66,-0.6477456800639629],[118,142,67,-0.6455608643591404],[118,142,68,-0.6436765473335981],[118,142,69,-0.642593989148736],[118,142,70,-0.6422628294676542],[118,142,71,-0.6421510968357325],[118,142,72,-0.6422924771904945],[118,142,73,-0.6428317576646805],[118,142,74,-0.6435317937284708],[118,142,75,-0.644011203199625],[118,142,76,-0.643860774114728],[118,142,77,-0.6427809037268162],[118,142,78,-0.6405772604048252],[118,142,79,-0.6378704980015755],[118,143,64,-0.657847385853529],[118,143,65,-0.6572135500609875],[118,143,66,-0.6555581800639629],[118,143,67,-0.6533733643591404],[118,143,68,-0.6514890473335981],[118,143,69,-0.650406489148736],[118,143,70,-0.6500753294676542],[118,143,71,-0.6499635968357325],[118,143,72,-0.6501049771904945],[118,143,73,-0.6506442576646805],[118,143,74,-0.6513442937284708],[118,143,75,-0.651823703199625],[118,143,76,-0.651673274114728],[118,143,77,-0.6505934037268162],[118,143,78,-0.6483897604048252],[118,143,79,-0.6456829980015755],[118,144,64,-0.665659885853529],[118,144,65,-0.6650260500609875],[118,144,66,-0.6633706800639629],[118,144,67,-0.6611858643591404],[118,144,68,-0.6593015473335981],[118,144,69,-0.658218989148736],[118,144,70,-0.6578878294676542],[118,144,71,-0.6577760968357325],[118,144,72,-0.6579174771904945],[118,144,73,-0.6584567576646805],[118,144,74,-0.6591567937284708],[118,144,75,-0.659636203199625],[118,144,76,-0.659485774114728],[118,144,77,-0.6584059037268162],[118,144,78,-0.6562022604048252],[118,144,79,-0.6534954980015755],[118,145,64,-0.673472385853529],[118,145,65,-0.6728385500609875],[118,145,66,-0.6711831800639629],[118,145,67,-0.6689983643591404],[118,145,68,-0.6671140473335981],[118,145,69,-0.666031489148736],[118,145,70,-0.6657003294676542],[118,145,71,-0.6655885968357325],[118,145,72,-0.6657299771904945],[118,145,73,-0.6662692576646805],[118,145,74,-0.6669692937284708],[118,145,75,-0.667448703199625],[118,145,76,-0.667298274114728],[118,145,77,-0.6662184037268162],[118,145,78,-0.6640147604048252],[118,145,79,-0.6613079980015755],[118,146,64,-0.681284885853529],[118,146,65,-0.6806510500609875],[118,146,66,-0.6789956800639629],[118,146,67,-0.6768108643591404],[118,146,68,-0.6749265473335981],[118,146,69,-0.673843989148736],[118,146,70,-0.6735128294676542],[118,146,71,-0.6734010968357325],[118,146,72,-0.6735424771904945],[118,146,73,-0.6740817576646805],[118,146,74,-0.6747817937284708],[118,146,75,-0.675261203199625],[118,146,76,-0.675110774114728],[118,146,77,-0.6740309037268162],[118,146,78,-0.6718272604048252],[118,146,79,-0.6691204980015755],[118,147,64,-0.689097385853529],[118,147,65,-0.6884635500609875],[118,147,66,-0.6868081800639629],[118,147,67,-0.6846233643591404],[118,147,68,-0.6827390473335981],[118,147,69,-0.681656489148736],[118,147,70,-0.6813253294676542],[118,147,71,-0.6812135968357325],[118,147,72,-0.6813549771904945],[118,147,73,-0.6818942576646805],[118,147,74,-0.6825942937284708],[118,147,75,-0.683073703199625],[118,147,76,-0.682923274114728],[118,147,77,-0.6818434037268162],[118,147,78,-0.6796397604048252],[118,147,79,-0.6769329980015755],[118,148,64,-0.696909885853529],[118,148,65,-0.6962760500609875],[118,148,66,-0.6946206800639629],[118,148,67,-0.6924358643591404],[118,148,68,-0.6905515473335981],[118,148,69,-0.689468989148736],[118,148,70,-0.6891378294676542],[118,148,71,-0.6890260968357325],[118,148,72,-0.6891674771904945],[118,148,73,-0.6897067576646805],[118,148,74,-0.6904067937284708],[118,148,75,-0.690886203199625],[118,148,76,-0.690735774114728],[118,148,77,-0.6896559037268162],[118,148,78,-0.6874522604048252],[118,148,79,-0.6847454980015755],[118,149,64,-0.704722385853529],[118,149,65,-0.7040885500609875],[118,149,66,-0.7024331800639629],[118,149,67,-0.7002483643591404],[118,149,68,-0.6983640473335981],[118,149,69,-0.697281489148736],[118,149,70,-0.6969503294676542],[118,149,71,-0.6968385968357325],[118,149,72,-0.6969799771904945],[118,149,73,-0.6975192576646805],[118,149,74,-0.6982192937284708],[118,149,75,-0.698698703199625],[118,149,76,-0.698548274114728],[118,149,77,-0.6974684037268162],[118,149,78,-0.6952647604048252],[118,149,79,-0.6925579980015755],[118,150,64,-0.712534885853529],[118,150,65,-0.7119010500609875],[118,150,66,-0.7102456800639629],[118,150,67,-0.7080608643591404],[118,150,68,-0.7061765473335981],[118,150,69,-0.705093989148736],[118,150,70,-0.7047628294676542],[118,150,71,-0.7046510968357325],[118,150,72,-0.7047924771904945],[118,150,73,-0.7053317576646805],[118,150,74,-0.7060317937284708],[118,150,75,-0.706511203199625],[118,150,76,-0.706360774114728],[118,150,77,-0.7052809037268162],[118,150,78,-0.7030772604048252],[118,150,79,-0.7003704980015755],[118,151,64,-0.720347385853529],[118,151,65,-0.7197135500609875],[118,151,66,-0.7180581800639629],[118,151,67,-0.7158733643591404],[118,151,68,-0.7139890473335981],[118,151,69,-0.712906489148736],[118,151,70,-0.7125753294676542],[118,151,71,-0.7124635968357325],[118,151,72,-0.7126049771904945],[118,151,73,-0.7131442576646805],[118,151,74,-0.7138442937284708],[118,151,75,-0.714323703199625],[118,151,76,-0.714173274114728],[118,151,77,-0.7130934037268162],[118,151,78,-0.7108897604048252],[118,151,79,-0.7081829980015755],[118,152,64,-0.728159885853529],[118,152,65,-0.7275260500609875],[118,152,66,-0.7258706800639629],[118,152,67,-0.7236858643591404],[118,152,68,-0.7218015473335981],[118,152,69,-0.720718989148736],[118,152,70,-0.7203878294676542],[118,152,71,-0.7202760968357325],[118,152,72,-0.7204174771904945],[118,152,73,-0.7209567576646805],[118,152,74,-0.7216567937284708],[118,152,75,-0.722136203199625],[118,152,76,-0.721985774114728],[118,152,77,-0.7209059037268162],[118,152,78,-0.7187022604048252],[118,152,79,-0.7159954980015755],[118,153,64,-0.735972385853529],[118,153,65,-0.7353385500609875],[118,153,66,-0.7336831800639629],[118,153,67,-0.7314983643591404],[118,153,68,-0.7296140473335981],[118,153,69,-0.728531489148736],[118,153,70,-0.7282003294676542],[118,153,71,-0.7280885968357325],[118,153,72,-0.7282299771904945],[118,153,73,-0.7287692576646805],[118,153,74,-0.7294692937284708],[118,153,75,-0.729948703199625],[118,153,76,-0.729798274114728],[118,153,77,-0.7287184037268162],[118,153,78,-0.7265147604048252],[118,153,79,-0.7238079980015755],[118,154,64,-0.743784885853529],[118,154,65,-0.7431510500609875],[118,154,66,-0.7414956800639629],[118,154,67,-0.7393108643591404],[118,154,68,-0.7374265473335981],[118,154,69,-0.736343989148736],[118,154,70,-0.7360128294676542],[118,154,71,-0.7359010968357325],[118,154,72,-0.7360424771904945],[118,154,73,-0.7365817576646805],[118,154,74,-0.7372817937284708],[118,154,75,-0.737761203199625],[118,154,76,-0.737610774114728],[118,154,77,-0.7365309037268162],[118,154,78,-0.7343272604048252],[118,154,79,-0.7316204980015755],[118,155,64,-0.751597385853529],[118,155,65,-0.7509635500609875],[118,155,66,-0.7493081800639629],[118,155,67,-0.7471233643591404],[118,155,68,-0.7452390473335981],[118,155,69,-0.744156489148736],[118,155,70,-0.7438253294676542],[118,155,71,-0.7437135968357325],[118,155,72,-0.7438549771904945],[118,155,73,-0.7443942576646805],[118,155,74,-0.7450942937284708],[118,155,75,-0.745573703199625],[118,155,76,-0.745423274114728],[118,155,77,-0.7443434037268162],[118,155,78,-0.7421397604048252],[118,155,79,-0.7394329980015755],[118,156,64,-0.759409885853529],[118,156,65,-0.7587760500609875],[118,156,66,-0.7571206800639629],[118,156,67,-0.7549358643591404],[118,156,68,-0.7530515473335981],[118,156,69,-0.751968989148736],[118,156,70,-0.7516378294676542],[118,156,71,-0.7515260968357325],[118,156,72,-0.7516674771904945],[118,156,73,-0.7522067576646805],[118,156,74,-0.7529067937284708],[118,156,75,-0.753386203199625],[118,156,76,-0.753235774114728],[118,156,77,-0.7521559037268162],[118,156,78,-0.7499522604048252],[118,156,79,-0.7472454980015755],[118,157,64,-0.767222385853529],[118,157,65,-0.7665885500609875],[118,157,66,-0.7649331800639629],[118,157,67,-0.7627483643591404],[118,157,68,-0.7608640473335981],[118,157,69,-0.759781489148736],[118,157,70,-0.7594503294676542],[118,157,71,-0.7593385968357325],[118,157,72,-0.7594799771904945],[118,157,73,-0.7600192576646805],[118,157,74,-0.7607192937284708],[118,157,75,-0.761198703199625],[118,157,76,-0.761048274114728],[118,157,77,-0.7599684037268162],[118,157,78,-0.7577647604048252],[118,157,79,-0.7550579980015755],[118,158,64,-0.775034885853529],[118,158,65,-0.7744010500609875],[118,158,66,-0.7727456800639629],[118,158,67,-0.7705608643591404],[118,158,68,-0.7686765473335981],[118,158,69,-0.767593989148736],[118,158,70,-0.7672628294676542],[118,158,71,-0.7671510968357325],[118,158,72,-0.7672924771904945],[118,158,73,-0.7678317576646805],[118,158,74,-0.7685317937284708],[118,158,75,-0.769011203199625],[118,158,76,-0.768860774114728],[118,158,77,-0.7677809037268162],[118,158,78,-0.7655772604048252],[118,158,79,-0.7628704980015755],[118,159,64,-0.782847385853529],[118,159,65,-0.7822135500609875],[118,159,66,-0.7805581800639629],[118,159,67,-0.7783733643591404],[118,159,68,-0.7764890473335981],[118,159,69,-0.775406489148736],[118,159,70,-0.7750753294676542],[118,159,71,-0.7749635968357325],[118,159,72,-0.7751049771904945],[118,159,73,-0.7756442576646805],[118,159,74,-0.7763442937284708],[118,159,75,-0.776823703199625],[118,159,76,-0.776673274114728],[118,159,77,-0.7755934037268162],[118,159,78,-0.7733897604048252],[118,159,79,-0.7706829980015755],[118,160,64,-0.790659885853529],[118,160,65,-0.7900260500609875],[118,160,66,-0.7883706800639629],[118,160,67,-0.7861858643591404],[118,160,68,-0.7843015473335981],[118,160,69,-0.783218989148736],[118,160,70,-0.7828878294676542],[118,160,71,-0.7827760968357325],[118,160,72,-0.7829174771904945],[118,160,73,-0.7834567576646805],[118,160,74,-0.7841567937284708],[118,160,75,-0.784636203199625],[118,160,76,-0.784485774114728],[118,160,77,-0.7834059037268162],[118,160,78,-0.7812022604048252],[118,160,79,-0.7784954980015755],[118,161,64,-0.798472385853529],[118,161,65,-0.7978385500609875],[118,161,66,-0.7961831800639629],[118,161,67,-0.7939983643591404],[118,161,68,-0.7921140473335981],[118,161,69,-0.791031489148736],[118,161,70,-0.7907003294676542],[118,161,71,-0.7905885968357325],[118,161,72,-0.7907299771904945],[118,161,73,-0.7912692576646805],[118,161,74,-0.7919692937284708],[118,161,75,-0.792448703199625],[118,161,76,-0.792298274114728],[118,161,77,-0.7912184037268162],[118,161,78,-0.7890147604048252],[118,161,79,-0.7863079980015755],[118,162,64,-0.806284885853529],[118,162,65,-0.8056510500609875],[118,162,66,-0.8039956800639629],[118,162,67,-0.8018108643591404],[118,162,68,-0.7999265473335981],[118,162,69,-0.798843989148736],[118,162,70,-0.7985128294676542],[118,162,71,-0.7984010968357325],[118,162,72,-0.7985424771904945],[118,162,73,-0.7990817576646805],[118,162,74,-0.7997817937284708],[118,162,75,-0.800261203199625],[118,162,76,-0.800110774114728],[118,162,77,-0.7990309037268162],[118,162,78,-0.7968272604048252],[118,162,79,-0.7941204980015755],[118,163,64,-0.814097385853529],[118,163,65,-0.8134635500609875],[118,163,66,-0.8118081800639629],[118,163,67,-0.8096233643591404],[118,163,68,-0.8077390473335981],[118,163,69,-0.806656489148736],[118,163,70,-0.8063253294676542],[118,163,71,-0.8062135968357325],[118,163,72,-0.8063549771904945],[118,163,73,-0.8068942576646805],[118,163,74,-0.8075942937284708],[118,163,75,-0.808073703199625],[118,163,76,-0.807923274114728],[118,163,77,-0.8068434037268162],[118,163,78,-0.8046397604048252],[118,163,79,-0.8019329980015755],[118,164,64,-0.821909885853529],[118,164,65,-0.8212760500609875],[118,164,66,-0.8196206800639629],[118,164,67,-0.8174358643591404],[118,164,68,-0.8155515473335981],[118,164,69,-0.814468989148736],[118,164,70,-0.8141378294676542],[118,164,71,-0.8140260968357325],[118,164,72,-0.8141674771904945],[118,164,73,-0.8147067576646805],[118,164,74,-0.8154067937284708],[118,164,75,-0.815886203199625],[118,164,76,-0.815735774114728],[118,164,77,-0.8146559037268162],[118,164,78,-0.8124522604048252],[118,164,79,-0.8097454980015755],[118,165,64,-0.829722385853529],[118,165,65,-0.8290885500609875],[118,165,66,-0.8274331800639629],[118,165,67,-0.8252483643591404],[118,165,68,-0.8233640473335981],[118,165,69,-0.822281489148736],[118,165,70,-0.8219503294676542],[118,165,71,-0.8218385968357325],[118,165,72,-0.8219799771904945],[118,165,73,-0.8225192576646805],[118,165,74,-0.8232192937284708],[118,165,75,-0.823698703199625],[118,165,76,-0.823548274114728],[118,165,77,-0.8224684037268162],[118,165,78,-0.8202647604048252],[118,165,79,-0.8175579980015755],[118,166,64,-0.837534885853529],[118,166,65,-0.8369010500609875],[118,166,66,-0.8352456800639629],[118,166,67,-0.8330608643591404],[118,166,68,-0.8311765473335981],[118,166,69,-0.830093989148736],[118,166,70,-0.8297628294676542],[118,166,71,-0.8296510968357325],[118,166,72,-0.8297924771904945],[118,166,73,-0.8303317576646805],[118,166,74,-0.8310317937284708],[118,166,75,-0.831511203199625],[118,166,76,-0.831360774114728],[118,166,77,-0.8302809037268162],[118,166,78,-0.8280772604048252],[118,166,79,-0.8253704980015755],[118,167,64,-0.845347385853529],[118,167,65,-0.8447135500609875],[118,167,66,-0.8430581800639629],[118,167,67,-0.8408733643591404],[118,167,68,-0.8389890473335981],[118,167,69,-0.837906489148736],[118,167,70,-0.8375753294676542],[118,167,71,-0.8374635968357325],[118,167,72,-0.8376049771904945],[118,167,73,-0.8381442576646805],[118,167,74,-0.8388442937284708],[118,167,75,-0.839323703199625],[118,167,76,-0.839173274114728],[118,167,77,-0.8380934037268162],[118,167,78,-0.8358897604048252],[118,167,79,-0.8331829980015755],[118,168,64,-0.853159885853529],[118,168,65,-0.8525260500609875],[118,168,66,-0.8508706800639629],[118,168,67,-0.8486858643591404],[118,168,68,-0.8468015473335981],[118,168,69,-0.845718989148736],[118,168,70,-0.8453878294676542],[118,168,71,-0.8452760968357325],[118,168,72,-0.8454174771904945],[118,168,73,-0.8459567576646805],[118,168,74,-0.8466567937284708],[118,168,75,-0.847136203199625],[118,168,76,-0.846985774114728],[118,168,77,-0.8459059037268162],[118,168,78,-0.8437022604048252],[118,168,79,-0.8409954980015755],[118,169,64,-0.860972385853529],[118,169,65,-0.8603385500609875],[118,169,66,-0.8586831800639629],[118,169,67,-0.8564983643591404],[118,169,68,-0.8546140473335981],[118,169,69,-0.853531489148736],[118,169,70,-0.8532003294676542],[118,169,71,-0.8530885968357325],[118,169,72,-0.8532299771904945],[118,169,73,-0.8537692576646805],[118,169,74,-0.8544692937284708],[118,169,75,-0.854948703199625],[118,169,76,-0.854798274114728],[118,169,77,-0.8537184037268162],[118,169,78,-0.8515147604048252],[118,169,79,-0.8488079980015755],[118,170,64,-0.868784885853529],[118,170,65,-0.8681510500609875],[118,170,66,-0.8664956800639629],[118,170,67,-0.8643108643591404],[118,170,68,-0.8624265473335981],[118,170,69,-0.861343989148736],[118,170,70,-0.8610128294676542],[118,170,71,-0.8609010968357325],[118,170,72,-0.8610424771904945],[118,170,73,-0.8615817576646805],[118,170,74,-0.8622817937284708],[118,170,75,-0.862761203199625],[118,170,76,-0.862610774114728],[118,170,77,-0.8615309037268162],[118,170,78,-0.8593272604048252],[118,170,79,-0.8566204980015755],[118,171,64,-0.876597385853529],[118,171,65,-0.8759635500609875],[118,171,66,-0.8743081800639629],[118,171,67,-0.8721233643591404],[118,171,68,-0.8702390473335981],[118,171,69,-0.869156489148736],[118,171,70,-0.8688253294676542],[118,171,71,-0.8687135968357325],[118,171,72,-0.8688549771904945],[118,171,73,-0.8693942576646805],[118,171,74,-0.8700942937284708],[118,171,75,-0.870573703199625],[118,171,76,-0.870423274114728],[118,171,77,-0.8693434037268162],[118,171,78,-0.8671397604048252],[118,171,79,-0.8644329980015755],[118,172,64,-0.884409885853529],[118,172,65,-0.8837760500609875],[118,172,66,-0.8821206800639629],[118,172,67,-0.8799358643591404],[118,172,68,-0.8780515473335981],[118,172,69,-0.876968989148736],[118,172,70,-0.8766378294676542],[118,172,71,-0.8765260968357325],[118,172,72,-0.8766674771904945],[118,172,73,-0.8772067576646805],[118,172,74,-0.8779067937284708],[118,172,75,-0.878386203199625],[118,172,76,-0.878235774114728],[118,172,77,-0.8771559037268162],[118,172,78,-0.8749522604048252],[118,172,79,-0.8722454980015755],[118,173,64,-0.892222385853529],[118,173,65,-0.8915885500609875],[118,173,66,-0.8899331800639629],[118,173,67,-0.8877483643591404],[118,173,68,-0.8858640473335981],[118,173,69,-0.884781489148736],[118,173,70,-0.8844503294676542],[118,173,71,-0.8843385968357325],[118,173,72,-0.8844799771904945],[118,173,73,-0.8850192576646805],[118,173,74,-0.8857192937284708],[118,173,75,-0.886198703199625],[118,173,76,-0.886048274114728],[118,173,77,-0.8849684037268162],[118,173,78,-0.8827647604048252],[118,173,79,-0.8800579980015755],[118,174,64,-0.900034885853529],[118,174,65,-0.8994010500609875],[118,174,66,-0.8977456800639629],[118,174,67,-0.8955608643591404],[118,174,68,-0.8936765473335981],[118,174,69,-0.892593989148736],[118,174,70,-0.8922628294676542],[118,174,71,-0.8921510968357325],[118,174,72,-0.8922924771904945],[118,174,73,-0.8928317576646805],[118,174,74,-0.8935317937284708],[118,174,75,-0.894011203199625],[118,174,76,-0.893860774114728],[118,174,77,-0.8927809037268162],[118,174,78,-0.8905772604048252],[118,174,79,-0.8878704980015755],[118,175,64,-0.907847385853529],[118,175,65,-0.9072135500609875],[118,175,66,-0.9055581800639629],[118,175,67,-0.9033733643591404],[118,175,68,-0.9014890473335981],[118,175,69,-0.900406489148736],[118,175,70,-0.9000753294676542],[118,175,71,-0.8999635968357325],[118,175,72,-0.9001049771904945],[118,175,73,-0.9006442576646805],[118,175,74,-0.9013442937284708],[118,175,75,-0.901823703199625],[118,175,76,-0.901673274114728],[118,175,77,-0.9005934037268162],[118,175,78,-0.8983897604048252],[118,175,79,-0.8956829980015755],[118,176,64,-0.915659885853529],[118,176,65,-0.9150260500609875],[118,176,66,-0.9133706800639629],[118,176,67,-0.9111858643591404],[118,176,68,-0.9093015473335981],[118,176,69,-0.908218989148736],[118,176,70,-0.9078878294676542],[118,176,71,-0.9077760968357325],[118,176,72,-0.9079174771904945],[118,176,73,-0.9084567576646805],[118,176,74,-0.9091567937284708],[118,176,75,-0.909636203199625],[118,176,76,-0.909485774114728],[118,176,77,-0.9084059037268162],[118,176,78,-0.9062022604048252],[118,176,79,-0.9034954980015755],[118,177,64,-0.923472385853529],[118,177,65,-0.9228385500609875],[118,177,66,-0.9211831800639629],[118,177,67,-0.9189983643591404],[118,177,68,-0.9171140473335981],[118,177,69,-0.916031489148736],[118,177,70,-0.9157003294676542],[118,177,71,-0.9155885968357325],[118,177,72,-0.9157299771904945],[118,177,73,-0.9162692576646805],[118,177,74,-0.9169692937284708],[118,177,75,-0.917448703199625],[118,177,76,-0.917298274114728],[118,177,77,-0.9162184037268162],[118,177,78,-0.9140147604048252],[118,177,79,-0.9113079980015755],[118,178,64,-0.931284885853529],[118,178,65,-0.9306510500609875],[118,178,66,-0.9289956800639629],[118,178,67,-0.9268108643591404],[118,178,68,-0.9249265473335981],[118,178,69,-0.923843989148736],[118,178,70,-0.9235128294676542],[118,178,71,-0.9234010968357325],[118,178,72,-0.9235424771904945],[118,178,73,-0.9240817576646805],[118,178,74,-0.9247817937284708],[118,178,75,-0.925261203199625],[118,178,76,-0.925110774114728],[118,178,77,-0.9240309037268162],[118,178,78,-0.9218272604048252],[118,178,79,-0.9191204980015755],[118,179,64,-0.939097385853529],[118,179,65,-0.9384635500609875],[118,179,66,-0.9368081800639629],[118,179,67,-0.9346233643591404],[118,179,68,-0.9327390473335981],[118,179,69,-0.931656489148736],[118,179,70,-0.9313253294676542],[118,179,71,-0.9312135968357325],[118,179,72,-0.9313549771904945],[118,179,73,-0.9318942576646805],[118,179,74,-0.9325942937284708],[118,179,75,-0.933073703199625],[118,179,76,-0.932923274114728],[118,179,77,-0.9318434037268162],[118,179,78,-0.9296397604048252],[118,179,79,-0.9269329980015755],[118,180,64,-0.946909885853529],[118,180,65,-0.9462760500609875],[118,180,66,-0.9446206800639629],[118,180,67,-0.9424358643591404],[118,180,68,-0.9405515473335981],[118,180,69,-0.939468989148736],[118,180,70,-0.9391378294676542],[118,180,71,-0.9390260968357325],[118,180,72,-0.9391674771904945],[118,180,73,-0.9397067576646805],[118,180,74,-0.9404067937284708],[118,180,75,-0.940886203199625],[118,180,76,-0.940735774114728],[118,180,77,-0.9396559037268162],[118,180,78,-0.9374522604048252],[118,180,79,-0.9347454980015755],[118,181,64,-0.954722385853529],[118,181,65,-0.9540885500609875],[118,181,66,-0.9524331800639629],[118,181,67,-0.9502483643591404],[118,181,68,-0.9483640473335981],[118,181,69,-0.947281489148736],[118,181,70,-0.9469503294676542],[118,181,71,-0.9468385968357325],[118,181,72,-0.9469799771904945],[118,181,73,-0.9475192576646805],[118,181,74,-0.9482192937284708],[118,181,75,-0.948698703199625],[118,181,76,-0.948548274114728],[118,181,77,-0.9474684037268162],[118,181,78,-0.9452647604048252],[118,181,79,-0.9425579980015755],[118,182,64,-0.962534885853529],[118,182,65,-0.9619010500609875],[118,182,66,-0.9602456800639629],[118,182,67,-0.9580608643591404],[118,182,68,-0.9561765473335981],[118,182,69,-0.955093989148736],[118,182,70,-0.9547628294676542],[118,182,71,-0.9546510968357325],[118,182,72,-0.9547924771904945],[118,182,73,-0.9553317576646805],[118,182,74,-0.9560317937284708],[118,182,75,-0.956511203199625],[118,182,76,-0.956360774114728],[118,182,77,-0.9552809037268162],[118,182,78,-0.9530772604048252],[118,182,79,-0.9503704980015755],[118,183,64,-0.970347385853529],[118,183,65,-0.9697135500609875],[118,183,66,-0.9680581800639629],[118,183,67,-0.9658733643591404],[118,183,68,-0.9639890473335981],[118,183,69,-0.962906489148736],[118,183,70,-0.9625753294676542],[118,183,71,-0.9624635968357325],[118,183,72,-0.9626049771904945],[118,183,73,-0.9631442576646805],[118,183,74,-0.9638442937284708],[118,183,75,-0.964323703199625],[118,183,76,-0.964173274114728],[118,183,77,-0.9630934037268162],[118,183,78,-0.9608897604048252],[118,183,79,-0.9581829980015755],[118,184,64,-0.978159885853529],[118,184,65,-0.9775260500609875],[118,184,66,-0.9758706800639629],[118,184,67,-0.9736858643591404],[118,184,68,-0.9718015473335981],[118,184,69,-0.970718989148736],[118,184,70,-0.9703878294676542],[118,184,71,-0.9702760968357325],[118,184,72,-0.9704174771904945],[118,184,73,-0.9709567576646805],[118,184,74,-0.9716567937284708],[118,184,75,-0.972136203199625],[118,184,76,-0.971985774114728],[118,184,77,-0.9709059037268162],[118,184,78,-0.9687022604048252],[118,184,79,-0.9659954980015755],[118,185,64,-0.985972385853529],[118,185,65,-0.9853385500609875],[118,185,66,-0.9836831800639629],[118,185,67,-0.9814983643591404],[118,185,68,-0.9796140473335981],[118,185,69,-0.978531489148736],[118,185,70,-0.9782003294676542],[118,185,71,-0.9780885968357325],[118,185,72,-0.9782299771904945],[118,185,73,-0.9787692576646805],[118,185,74,-0.9794692937284708],[118,185,75,-0.979948703199625],[118,185,76,-0.979798274114728],[118,185,77,-0.9787184037268162],[118,185,78,-0.9765147604048252],[118,185,79,-0.9738079980015755],[118,186,64,-0.993784885853529],[118,186,65,-0.9931510500609875],[118,186,66,-0.9914956800639629],[118,186,67,-0.9893108643591404],[118,186,68,-0.9874265473335981],[118,186,69,-0.986343989148736],[118,186,70,-0.9860128294676542],[118,186,71,-0.9859010968357325],[118,186,72,-0.9860424771904945],[118,186,73,-0.9865817576646805],[118,186,74,-0.9872817937284708],[118,186,75,-0.987761203199625],[118,186,76,-0.987610774114728],[118,186,77,-0.9865309037268162],[118,186,78,-0.9843272604048252],[118,186,79,-0.9816204980015755],[118,187,64,-1.001597385853529],[118,187,65,-1.0009635500609875],[118,187,66,-0.9993081800639629],[118,187,67,-0.9971233643591404],[118,187,68,-0.9952390473335981],[118,187,69,-0.994156489148736],[118,187,70,-0.9938253294676542],[118,187,71,-0.9937135968357325],[118,187,72,-0.9938549771904945],[118,187,73,-0.9943942576646805],[118,187,74,-0.9950942937284708],[118,187,75,-0.995573703199625],[118,187,76,-0.995423274114728],[118,187,77,-0.9943434037268162],[118,187,78,-0.9921397604048252],[118,187,79,-0.9894329980015755],[118,188,64,-1.009409885853529],[118,188,65,-1.0087760500609875],[118,188,66,-1.007120680063963],[118,188,67,-1.0049358643591404],[118,188,68,-1.0030515473335981],[118,188,69,-1.001968989148736],[118,188,70,-1.0016378294676542],[118,188,71,-1.0015260968357325],[118,188,72,-1.0016674771904945],[118,188,73,-1.0022067576646805],[118,188,74,-1.0029067937284708],[118,188,75,-1.003386203199625],[118,188,76,-1.003235774114728],[118,188,77,-1.0021559037268162],[118,188,78,-0.9999522604048252],[118,188,79,-0.9972454980015755],[118,189,64,-1.017222385853529],[118,189,65,-1.0165885500609875],[118,189,66,-1.014933180063963],[118,189,67,-1.0127483643591404],[118,189,68,-1.0108640473335981],[118,189,69,-1.009781489148736],[118,189,70,-1.0094503294676542],[118,189,71,-1.0093385968357325],[118,189,72,-1.0094799771904945],[118,189,73,-1.0100192576646805],[118,189,74,-1.0107192937284708],[118,189,75,-1.011198703199625],[118,189,76,-1.011048274114728],[118,189,77,-1.0099684037268162],[118,189,78,-1.0077647604048252],[118,189,79,-1.0050579980015755],[118,190,64,-1.025034885853529],[118,190,65,-1.0244010500609875],[118,190,66,-1.022745680063963],[118,190,67,-1.0205608643591404],[118,190,68,-1.0186765473335981],[118,190,69,-1.017593989148736],[118,190,70,-1.0172628294676542],[118,190,71,-1.0171510968357325],[118,190,72,-1.0172924771904945],[118,190,73,-1.0178317576646805],[118,190,74,-1.0185317937284708],[118,190,75,-1.019011203199625],[118,190,76,-1.018860774114728],[118,190,77,-1.0177809037268162],[118,190,78,-1.0155772604048252],[118,190,79,-1.0128704980015755],[118,191,64,-1.032847385853529],[118,191,65,-1.0322135500609875],[118,191,66,-1.030558180063963],[118,191,67,-1.0283733643591404],[118,191,68,-1.0264890473335981],[118,191,69,-1.025406489148736],[118,191,70,-1.0250753294676542],[118,191,71,-1.0249635968357325],[118,191,72,-1.0251049771904945],[118,191,73,-1.0256442576646805],[118,191,74,-1.0263442937284708],[118,191,75,-1.026823703199625],[118,191,76,-1.026673274114728],[118,191,77,-1.0255934037268162],[118,191,78,-1.0233897604048252],[118,191,79,-1.0206829980015755],[118,192,64,-1.040659885853529],[118,192,65,-1.0400260500609875],[118,192,66,-1.038370680063963],[118,192,67,-1.0361858643591404],[118,192,68,-1.0343015473335981],[118,192,69,-1.033218989148736],[118,192,70,-1.0328878294676542],[118,192,71,-1.0327760968357325],[118,192,72,-1.0329174771904945],[118,192,73,-1.0334567576646805],[118,192,74,-1.0341567937284708],[118,192,75,-1.034636203199625],[118,192,76,-1.034485774114728],[118,192,77,-1.0334059037268162],[118,192,78,-1.0312022604048252],[118,192,79,-1.0284954980015755],[118,193,64,-1.048472385853529],[118,193,65,-1.0478385500609875],[118,193,66,-1.046183180063963],[118,193,67,-1.0439983643591404],[118,193,68,-1.0421140473335981],[118,193,69,-1.041031489148736],[118,193,70,-1.0407003294676542],[118,193,71,-1.0405885968357325],[118,193,72,-1.0407299771904945],[118,193,73,-1.0412692576646805],[118,193,74,-1.0419692937284708],[118,193,75,-1.042448703199625],[118,193,76,-1.042298274114728],[118,193,77,-1.0412184037268162],[118,193,78,-1.0390147604048252],[118,193,79,-1.0363079980015755],[118,194,64,-1.056284885853529],[118,194,65,-1.0556510500609875],[118,194,66,-1.053995680063963],[118,194,67,-1.0518108643591404],[118,194,68,-1.0499265473335981],[118,194,69,-1.048843989148736],[118,194,70,-1.0485128294676542],[118,194,71,-1.0484010968357325],[118,194,72,-1.0485424771904945],[118,194,73,-1.0490817576646805],[118,194,74,-1.0497817937284708],[118,194,75,-1.050261203199625],[118,194,76,-1.050110774114728],[118,194,77,-1.0490309037268162],[118,194,78,-1.0468272604048252],[118,194,79,-1.0441204980015755],[118,195,64,-1.064097385853529],[118,195,65,-1.0634635500609875],[118,195,66,-1.061808180063963],[118,195,67,-1.0596233643591404],[118,195,68,-1.0577390473335981],[118,195,69,-1.056656489148736],[118,195,70,-1.0563253294676542],[118,195,71,-1.0562135968357325],[118,195,72,-1.0563549771904945],[118,195,73,-1.0568942576646805],[118,195,74,-1.0575942937284708],[118,195,75,-1.058073703199625],[118,195,76,-1.057923274114728],[118,195,77,-1.0568434037268162],[118,195,78,-1.0546397604048252],[118,195,79,-1.0519329980015755],[118,196,64,-1.071909885853529],[118,196,65,-1.0712760500609875],[118,196,66,-1.069620680063963],[118,196,67,-1.0674358643591404],[118,196,68,-1.0655515473335981],[118,196,69,-1.064468989148736],[118,196,70,-1.0641378294676542],[118,196,71,-1.0640260968357325],[118,196,72,-1.0641674771904945],[118,196,73,-1.0647067576646805],[118,196,74,-1.0654067937284708],[118,196,75,-1.065886203199625],[118,196,76,-1.065735774114728],[118,196,77,-1.0646559037268162],[118,196,78,-1.0624522604048252],[118,196,79,-1.0597454980015755],[118,197,64,-1.079722385853529],[118,197,65,-1.0790885500609875],[118,197,66,-1.077433180063963],[118,197,67,-1.0752483643591404],[118,197,68,-1.0733640473335981],[118,197,69,-1.072281489148736],[118,197,70,-1.0719503294676542],[118,197,71,-1.0718385968357325],[118,197,72,-1.0719799771904945],[118,197,73,-1.0725192576646805],[118,197,74,-1.0732192937284708],[118,197,75,-1.073698703199625],[118,197,76,-1.073548274114728],[118,197,77,-1.0724684037268162],[118,197,78,-1.0702647604048252],[118,197,79,-1.0675579980015755],[118,198,64,-1.087534885853529],[118,198,65,-1.0869010500609875],[118,198,66,-1.085245680063963],[118,198,67,-1.0830608643591404],[118,198,68,-1.0811765473335981],[118,198,69,-1.080093989148736],[118,198,70,-1.0797628294676542],[118,198,71,-1.0796510968357325],[118,198,72,-1.0797924771904945],[118,198,73,-1.0803317576646805],[118,198,74,-1.0810317937284708],[118,198,75,-1.081511203199625],[118,198,76,-1.081360774114728],[118,198,77,-1.0802809037268162],[118,198,78,-1.0780772604048252],[118,198,79,-1.0753704980015755],[118,199,64,-1.095347385853529],[118,199,65,-1.0947135500609875],[118,199,66,-1.093058180063963],[118,199,67,-1.0908733643591404],[118,199,68,-1.0889890473335981],[118,199,69,-1.087906489148736],[118,199,70,-1.0875753294676542],[118,199,71,-1.0874635968357325],[118,199,72,-1.0876049771904945],[118,199,73,-1.0881442576646805],[118,199,74,-1.0888442937284708],[118,199,75,-1.089323703199625],[118,199,76,-1.089173274114728],[118,199,77,-1.0880934037268162],[118,199,78,-1.0858897604048252],[118,199,79,-1.0831829980015755],[118,200,64,-1.103159885853529],[118,200,65,-1.1025260500609875],[118,200,66,-1.100870680063963],[118,200,67,-1.0986858643591404],[118,200,68,-1.0968015473335981],[118,200,69,-1.095718989148736],[118,200,70,-1.0953878294676542],[118,200,71,-1.0952760968357325],[118,200,72,-1.0954174771904945],[118,200,73,-1.0959567576646805],[118,200,74,-1.0966567937284708],[118,200,75,-1.097136203199625],[118,200,76,-1.096985774114728],[118,200,77,-1.0959059037268162],[118,200,78,-1.0937022604048252],[118,200,79,-1.0909954980015755],[118,201,64,-1.110972385853529],[118,201,65,-1.1103385500609875],[118,201,66,-1.108683180063963],[118,201,67,-1.1064983643591404],[118,201,68,-1.1046140473335981],[118,201,69,-1.103531489148736],[118,201,70,-1.1032003294676542],[118,201,71,-1.1030885968357325],[118,201,72,-1.1032299771904945],[118,201,73,-1.1037692576646805],[118,201,74,-1.1044692937284708],[118,201,75,-1.104948703199625],[118,201,76,-1.104798274114728],[118,201,77,-1.1037184037268162],[118,201,78,-1.1015147604048252],[118,201,79,-1.0988079980015755],[118,202,64,-1.118784885853529],[118,202,65,-1.1181510500609875],[118,202,66,-1.116495680063963],[118,202,67,-1.1143108643591404],[118,202,68,-1.1124265473335981],[118,202,69,-1.111343989148736],[118,202,70,-1.1110128294676542],[118,202,71,-1.1109010968357325],[118,202,72,-1.1110424771904945],[118,202,73,-1.1115817576646805],[118,202,74,-1.1122817937284708],[118,202,75,-1.112761203199625],[118,202,76,-1.112610774114728],[118,202,77,-1.1115309037268162],[118,202,78,-1.1093272604048252],[118,202,79,-1.1066204980015755],[118,203,64,-1.126597385853529],[118,203,65,-1.1259635500609875],[118,203,66,-1.124308180063963],[118,203,67,-1.1221233643591404],[118,203,68,-1.1202390473335981],[118,203,69,-1.119156489148736],[118,203,70,-1.1188253294676542],[118,203,71,-1.1187135968357325],[118,203,72,-1.1188549771904945],[118,203,73,-1.1193942576646805],[118,203,74,-1.1200942937284708],[118,203,75,-1.120573703199625],[118,203,76,-1.120423274114728],[118,203,77,-1.1193434037268162],[118,203,78,-1.1171397604048252],[118,203,79,-1.1144329980015755],[118,204,64,-1.134409885853529],[118,204,65,-1.1337760500609875],[118,204,66,-1.132120680063963],[118,204,67,-1.1299358643591404],[118,204,68,-1.1280515473335981],[118,204,69,-1.126968989148736],[118,204,70,-1.1266378294676542],[118,204,71,-1.1265260968357325],[118,204,72,-1.1266674771904945],[118,204,73,-1.1272067576646805],[118,204,74,-1.1279067937284708],[118,204,75,-1.128386203199625],[118,204,76,-1.128235774114728],[118,204,77,-1.1271559037268162],[118,204,78,-1.1249522604048252],[118,204,79,-1.1222454980015755],[118,205,64,-1.142222385853529],[118,205,65,-1.1415885500609875],[118,205,66,-1.139933180063963],[118,205,67,-1.1377483643591404],[118,205,68,-1.1358640473335981],[118,205,69,-1.134781489148736],[118,205,70,-1.1344503294676542],[118,205,71,-1.1343385968357325],[118,205,72,-1.1344799771904945],[118,205,73,-1.1350192576646805],[118,205,74,-1.1357192937284708],[118,205,75,-1.136198703199625],[118,205,76,-1.136048274114728],[118,205,77,-1.1349684037268162],[118,205,78,-1.1327647604048252],[118,205,79,-1.1300579980015755],[118,206,64,-1.150034885853529],[118,206,65,-1.1494010500609875],[118,206,66,-1.147745680063963],[118,206,67,-1.1455608643591404],[118,206,68,-1.1436765473335981],[118,206,69,-1.142593989148736],[118,206,70,-1.1422628294676542],[118,206,71,-1.1421510968357325],[118,206,72,-1.1422924771904945],[118,206,73,-1.1428317576646805],[118,206,74,-1.1435317937284708],[118,206,75,-1.144011203199625],[118,206,76,-1.143860774114728],[118,206,77,-1.1427809037268162],[118,206,78,-1.1405772604048252],[118,206,79,-1.1378704980015755],[118,207,64,-1.157847385853529],[118,207,65,-1.1572135500609875],[118,207,66,-1.155558180063963],[118,207,67,-1.1533733643591404],[118,207,68,-1.1514890473335981],[118,207,69,-1.150406489148736],[118,207,70,-1.1500753294676542],[118,207,71,-1.1499635968357325],[118,207,72,-1.1501049771904945],[118,207,73,-1.1506442576646805],[118,207,74,-1.1513442937284708],[118,207,75,-1.151823703199625],[118,207,76,-1.151673274114728],[118,207,77,-1.1505934037268162],[118,207,78,-1.1483897604048252],[118,207,79,-1.1456829980015755],[118,208,64,-1.165659885853529],[118,208,65,-1.1650260500609875],[118,208,66,-1.163370680063963],[118,208,67,-1.1611858643591404],[118,208,68,-1.1593015473335981],[118,208,69,-1.158218989148736],[118,208,70,-1.1578878294676542],[118,208,71,-1.1577760968357325],[118,208,72,-1.1579174771904945],[118,208,73,-1.1584567576646805],[118,208,74,-1.1591567937284708],[118,208,75,-1.159636203199625],[118,208,76,-1.159485774114728],[118,208,77,-1.1584059037268162],[118,208,78,-1.1562022604048252],[118,208,79,-1.1534954980015755],[118,209,64,-1.173472385853529],[118,209,65,-1.1728385500609875],[118,209,66,-1.171183180063963],[118,209,67,-1.1689983643591404],[118,209,68,-1.1671140473335981],[118,209,69,-1.166031489148736],[118,209,70,-1.1657003294676542],[118,209,71,-1.1655885968357325],[118,209,72,-1.1657299771904945],[118,209,73,-1.1662692576646805],[118,209,74,-1.1669692937284708],[118,209,75,-1.167448703199625],[118,209,76,-1.167298274114728],[118,209,77,-1.1662184037268162],[118,209,78,-1.1640147604048252],[118,209,79,-1.1613079980015755],[118,210,64,-1.181284885853529],[118,210,65,-1.1806510500609875],[118,210,66,-1.178995680063963],[118,210,67,-1.1768108643591404],[118,210,68,-1.1749265473335981],[118,210,69,-1.173843989148736],[118,210,70,-1.1735128294676542],[118,210,71,-1.1734010968357325],[118,210,72,-1.1735424771904945],[118,210,73,-1.1740817576646805],[118,210,74,-1.1747817937284708],[118,210,75,-1.175261203199625],[118,210,76,-1.175110774114728],[118,210,77,-1.1740309037268162],[118,210,78,-1.1718272604048252],[118,210,79,-1.1691204980015755],[118,211,64,-1.189097385853529],[118,211,65,-1.1884635500609875],[118,211,66,-1.186808180063963],[118,211,67,-1.1846233643591404],[118,211,68,-1.1827390473335981],[118,211,69,-1.181656489148736],[118,211,70,-1.1813253294676542],[118,211,71,-1.1812135968357325],[118,211,72,-1.1813549771904945],[118,211,73,-1.1818942576646805],[118,211,74,-1.1825942937284708],[118,211,75,-1.183073703199625],[118,211,76,-1.182923274114728],[118,211,77,-1.1818434037268162],[118,211,78,-1.1796397604048252],[118,211,79,-1.1769329980015755],[118,212,64,-1.196909885853529],[118,212,65,-1.1962760500609875],[118,212,66,-1.194620680063963],[118,212,67,-1.1924358643591404],[118,212,68,-1.1905515473335981],[118,212,69,-1.189468989148736],[118,212,70,-1.1891378294676542],[118,212,71,-1.1890260968357325],[118,212,72,-1.1891674771904945],[118,212,73,-1.1897067576646805],[118,212,74,-1.1904067937284708],[118,212,75,-1.190886203199625],[118,212,76,-1.190735774114728],[118,212,77,-1.1896559037268162],[118,212,78,-1.1874522604048252],[118,212,79,-1.1847454980015755],[118,213,64,-1.204722385853529],[118,213,65,-1.2040885500609875],[118,213,66,-1.202433180063963],[118,213,67,-1.2002483643591404],[118,213,68,-1.1983640473335981],[118,213,69,-1.197281489148736],[118,213,70,-1.1969503294676542],[118,213,71,-1.1968385968357325],[118,213,72,-1.1969799771904945],[118,213,73,-1.1975192576646805],[118,213,74,-1.1982192937284708],[118,213,75,-1.198698703199625],[118,213,76,-1.198548274114728],[118,213,77,-1.1974684037268162],[118,213,78,-1.1952647604048252],[118,213,79,-1.1925579980015755],[118,214,64,-1.212534885853529],[118,214,65,-1.2119010500609875],[118,214,66,-1.210245680063963],[118,214,67,-1.2080608643591404],[118,214,68,-1.2061765473335981],[118,214,69,-1.205093989148736],[118,214,70,-1.2047628294676542],[118,214,71,-1.2046510968357325],[118,214,72,-1.2047924771904945],[118,214,73,-1.2053317576646805],[118,214,74,-1.2060317937284708],[118,214,75,-1.206511203199625],[118,214,76,-1.206360774114728],[118,214,77,-1.2052809037268162],[118,214,78,-1.2030772604048252],[118,214,79,-1.2003704980015755],[118,215,64,-1.220347385853529],[118,215,65,-1.2197135500609875],[118,215,66,-1.218058180063963],[118,215,67,-1.2158733643591404],[118,215,68,-1.2139890473335981],[118,215,69,-1.212906489148736],[118,215,70,-1.2125753294676542],[118,215,71,-1.2124635968357325],[118,215,72,-1.2126049771904945],[118,215,73,-1.2131442576646805],[118,215,74,-1.2138442937284708],[118,215,75,-1.214323703199625],[118,215,76,-1.214173274114728],[118,215,77,-1.2130934037268162],[118,215,78,-1.2108897604048252],[118,215,79,-1.2081829980015755],[118,216,64,-1.228159885853529],[118,216,65,-1.2275260500609875],[118,216,66,-1.225870680063963],[118,216,67,-1.2236858643591404],[118,216,68,-1.2218015473335981],[118,216,69,-1.220718989148736],[118,216,70,-1.2203878294676542],[118,216,71,-1.2202760968357325],[118,216,72,-1.2204174771904945],[118,216,73,-1.2209567576646805],[118,216,74,-1.2216567937284708],[118,216,75,-1.222136203199625],[118,216,76,-1.221985774114728],[118,216,77,-1.2209059037268162],[118,216,78,-1.2187022604048252],[118,216,79,-1.2159954980015755],[118,217,64,-1.235972385853529],[118,217,65,-1.2353385500609875],[118,217,66,-1.233683180063963],[118,217,67,-1.2314983643591404],[118,217,68,-1.2296140473335981],[118,217,69,-1.228531489148736],[118,217,70,-1.2282003294676542],[118,217,71,-1.2280885968357325],[118,217,72,-1.2282299771904945],[118,217,73,-1.2287692576646805],[118,217,74,-1.2294692937284708],[118,217,75,-1.229948703199625],[118,217,76,-1.229798274114728],[118,217,77,-1.2287184037268162],[118,217,78,-1.2265147604048252],[118,217,79,-1.2238079980015755],[118,218,64,-1.243784885853529],[118,218,65,-1.2431510500609875],[118,218,66,-1.241495680063963],[118,218,67,-1.2393108643591404],[118,218,68,-1.2374265473335981],[118,218,69,-1.236343989148736],[118,218,70,-1.2360128294676542],[118,218,71,-1.2359010968357325],[118,218,72,-1.2360424771904945],[118,218,73,-1.2365817576646805],[118,218,74,-1.2372817937284708],[118,218,75,-1.237761203199625],[118,218,76,-1.237610774114728],[118,218,77,-1.2365309037268162],[118,218,78,-1.2343272604048252],[118,218,79,-1.2316204980015755],[118,219,64,-1.251597385853529],[118,219,65,-1.2509635500609875],[118,219,66,-1.249308180063963],[118,219,67,-1.2471233643591404],[118,219,68,-1.2452390473335981],[118,219,69,-1.244156489148736],[118,219,70,-1.2438253294676542],[118,219,71,-1.2437135968357325],[118,219,72,-1.2438549771904945],[118,219,73,-1.2443942576646805],[118,219,74,-1.2450942937284708],[118,219,75,-1.245573703199625],[118,219,76,-1.245423274114728],[118,219,77,-1.2443434037268162],[118,219,78,-1.2421397604048252],[118,219,79,-1.2394329980015755],[118,220,64,-1.259409885853529],[118,220,65,-1.2587760500609875],[118,220,66,-1.257120680063963],[118,220,67,-1.2549358643591404],[118,220,68,-1.2530515473335981],[118,220,69,-1.251968989148736],[118,220,70,-1.2516378294676542],[118,220,71,-1.2515260968357325],[118,220,72,-1.2516674771904945],[118,220,73,-1.2522067576646805],[118,220,74,-1.2529067937284708],[118,220,75,-1.253386203199625],[118,220,76,-1.253235774114728],[118,220,77,-1.2521559037268162],[118,220,78,-1.2499522604048252],[118,220,79,-1.2472454980015755],[118,221,64,-1.267222385853529],[118,221,65,-1.2665885500609875],[118,221,66,-1.264933180063963],[118,221,67,-1.2627483643591404],[118,221,68,-1.2608640473335981],[118,221,69,-1.259781489148736],[118,221,70,-1.2594503294676542],[118,221,71,-1.2593385968357325],[118,221,72,-1.2594799771904945],[118,221,73,-1.2600192576646805],[118,221,74,-1.2607192937284708],[118,221,75,-1.261198703199625],[118,221,76,-1.261048274114728],[118,221,77,-1.2599684037268162],[118,221,78,-1.2577647604048252],[118,221,79,-1.2550579980015755],[118,222,64,-1.275034885853529],[118,222,65,-1.2744010500609875],[118,222,66,-1.272745680063963],[118,222,67,-1.2705608643591404],[118,222,68,-1.2686765473335981],[118,222,69,-1.267593989148736],[118,222,70,-1.2672628294676542],[118,222,71,-1.2671510968357325],[118,222,72,-1.2672924771904945],[118,222,73,-1.2678317576646805],[118,222,74,-1.2685317937284708],[118,222,75,-1.269011203199625],[118,222,76,-1.268860774114728],[118,222,77,-1.2677809037268162],[118,222,78,-1.2655772604048252],[118,222,79,-1.2628704980015755],[118,223,64,-1.282847385853529],[118,223,65,-1.2822135500609875],[118,223,66,-1.280558180063963],[118,223,67,-1.2783733643591404],[118,223,68,-1.2764890473335981],[118,223,69,-1.275406489148736],[118,223,70,-1.2750753294676542],[118,223,71,-1.2749635968357325],[118,223,72,-1.2751049771904945],[118,223,73,-1.2756442576646805],[118,223,74,-1.2763442937284708],[118,223,75,-1.276823703199625],[118,223,76,-1.276673274114728],[118,223,77,-1.2755934037268162],[118,223,78,-1.2733897604048252],[118,223,79,-1.2706829980015755],[118,224,64,-1.290659885853529],[118,224,65,-1.2900260500609875],[118,224,66,-1.288370680063963],[118,224,67,-1.2861858643591404],[118,224,68,-1.2843015473335981],[118,224,69,-1.283218989148736],[118,224,70,-1.2828878294676542],[118,224,71,-1.2827760968357325],[118,224,72,-1.2829174771904945],[118,224,73,-1.2834567576646805],[118,224,74,-1.2841567937284708],[118,224,75,-1.284636203199625],[118,224,76,-1.284485774114728],[118,224,77,-1.2834059037268162],[118,224,78,-1.2812022604048252],[118,224,79,-1.2784954980015755],[118,225,64,-1.298472385853529],[118,225,65,-1.2978385500609875],[118,225,66,-1.296183180063963],[118,225,67,-1.2939983643591404],[118,225,68,-1.2921140473335981],[118,225,69,-1.291031489148736],[118,225,70,-1.2907003294676542],[118,225,71,-1.2905885968357325],[118,225,72,-1.2907299771904945],[118,225,73,-1.2912692576646805],[118,225,74,-1.2919692937284708],[118,225,75,-1.292448703199625],[118,225,76,-1.292298274114728],[118,225,77,-1.2912184037268162],[118,225,78,-1.2890147604048252],[118,225,79,-1.2863079980015755],[118,226,64,-1.306284885853529],[118,226,65,-1.3056510500609875],[118,226,66,-1.303995680063963],[118,226,67,-1.3018108643591404],[118,226,68,-1.2999265473335981],[118,226,69,-1.298843989148736],[118,226,70,-1.2985128294676542],[118,226,71,-1.2984010968357325],[118,226,72,-1.2985424771904945],[118,226,73,-1.2990817576646805],[118,226,74,-1.2997817937284708],[118,226,75,-1.300261203199625],[118,226,76,-1.300110774114728],[118,226,77,-1.2990309037268162],[118,226,78,-1.2968272604048252],[118,226,79,-1.2941204980015755],[118,227,64,-1.314097385853529],[118,227,65,-1.3134635500609875],[118,227,66,-1.311808180063963],[118,227,67,-1.3096233643591404],[118,227,68,-1.3077390473335981],[118,227,69,-1.306656489148736],[118,227,70,-1.3063253294676542],[118,227,71,-1.3062135968357325],[118,227,72,-1.3063549771904945],[118,227,73,-1.3068942576646805],[118,227,74,-1.3075942937284708],[118,227,75,-1.308073703199625],[118,227,76,-1.307923274114728],[118,227,77,-1.3068434037268162],[118,227,78,-1.3046397604048252],[118,227,79,-1.3019329980015755],[118,228,64,-1.321909885853529],[118,228,65,-1.3212760500609875],[118,228,66,-1.319620680063963],[118,228,67,-1.3174358643591404],[118,228,68,-1.3155515473335981],[118,228,69,-1.314468989148736],[118,228,70,-1.3141378294676542],[118,228,71,-1.3140260968357325],[118,228,72,-1.3141674771904945],[118,228,73,-1.3147067576646805],[118,228,74,-1.3154067937284708],[118,228,75,-1.315886203199625],[118,228,76,-1.315735774114728],[118,228,77,-1.3146559037268162],[118,228,78,-1.3124522604048252],[118,228,79,-1.3097454980015755],[118,229,64,-1.329722385853529],[118,229,65,-1.3290885500609875],[118,229,66,-1.327433180063963],[118,229,67,-1.3252483643591404],[118,229,68,-1.3233640473335981],[118,229,69,-1.322281489148736],[118,229,70,-1.3219503294676542],[118,229,71,-1.3218385968357325],[118,229,72,-1.3219799771904945],[118,229,73,-1.3225192576646805],[118,229,74,-1.3232192937284708],[118,229,75,-1.323698703199625],[118,229,76,-1.323548274114728],[118,229,77,-1.3224684037268162],[118,229,78,-1.3202647604048252],[118,229,79,-1.3175579980015755],[118,230,64,-1.337534885853529],[118,230,65,-1.3369010500609875],[118,230,66,-1.335245680063963],[118,230,67,-1.3330608643591404],[118,230,68,-1.3311765473335981],[118,230,69,-1.330093989148736],[118,230,70,-1.3297628294676542],[118,230,71,-1.3296510968357325],[118,230,72,-1.3297924771904945],[118,230,73,-1.3303317576646805],[118,230,74,-1.3310317937284708],[118,230,75,-1.331511203199625],[118,230,76,-1.331360774114728],[118,230,77,-1.3302809037268162],[118,230,78,-1.3280772604048252],[118,230,79,-1.3253704980015755],[118,231,64,-1.345347385853529],[118,231,65,-1.3447135500609875],[118,231,66,-1.343058180063963],[118,231,67,-1.3408733643591404],[118,231,68,-1.3389890473335981],[118,231,69,-1.337906489148736],[118,231,70,-1.3375753294676542],[118,231,71,-1.3374635968357325],[118,231,72,-1.3376049771904945],[118,231,73,-1.3381442576646805],[118,231,74,-1.3388442937284708],[118,231,75,-1.339323703199625],[118,231,76,-1.339173274114728],[118,231,77,-1.3380934037268162],[118,231,78,-1.3358897604048252],[118,231,79,-1.3331829980015755],[118,232,64,-1.353159885853529],[118,232,65,-1.3525260500609875],[118,232,66,-1.350870680063963],[118,232,67,-1.3486858643591404],[118,232,68,-1.3468015473335981],[118,232,69,-1.345718989148736],[118,232,70,-1.3453878294676542],[118,232,71,-1.3452760968357325],[118,232,72,-1.3454174771904945],[118,232,73,-1.3459567576646805],[118,232,74,-1.3466567937284708],[118,232,75,-1.347136203199625],[118,232,76,-1.346985774114728],[118,232,77,-1.3459059037268162],[118,232,78,-1.3437022604048252],[118,232,79,-1.3409954980015755],[118,233,64,-1.360972385853529],[118,233,65,-1.3603385500609875],[118,233,66,-1.358683180063963],[118,233,67,-1.3564983643591404],[118,233,68,-1.3546140473335981],[118,233,69,-1.353531489148736],[118,233,70,-1.3532003294676542],[118,233,71,-1.3530885968357325],[118,233,72,-1.3532299771904945],[118,233,73,-1.3537692576646805],[118,233,74,-1.3544692937284708],[118,233,75,-1.354948703199625],[118,233,76,-1.354798274114728],[118,233,77,-1.3537184037268162],[118,233,78,-1.3515147604048252],[118,233,79,-1.3488079980015755],[118,234,64,-1.368784885853529],[118,234,65,-1.3681510500609875],[118,234,66,-1.366495680063963],[118,234,67,-1.3643108643591404],[118,234,68,-1.3624265473335981],[118,234,69,-1.361343989148736],[118,234,70,-1.3610128294676542],[118,234,71,-1.3609010968357325],[118,234,72,-1.3610424771904945],[118,234,73,-1.3615817576646805],[118,234,74,-1.3622817937284708],[118,234,75,-1.362761203199625],[118,234,76,-1.362610774114728],[118,234,77,-1.3615309037268162],[118,234,78,-1.3593272604048252],[118,234,79,-1.3566204980015755],[118,235,64,-1.376597385853529],[118,235,65,-1.3759635500609875],[118,235,66,-1.374308180063963],[118,235,67,-1.3721233643591404],[118,235,68,-1.3702390473335981],[118,235,69,-1.369156489148736],[118,235,70,-1.3688253294676542],[118,235,71,-1.3687135968357325],[118,235,72,-1.3688549771904945],[118,235,73,-1.3693942576646805],[118,235,74,-1.3700942937284708],[118,235,75,-1.370573703199625],[118,235,76,-1.370423274114728],[118,235,77,-1.3693434037268162],[118,235,78,-1.3671397604048252],[118,235,79,-1.3644329980015755],[118,236,64,-1.384409885853529],[118,236,65,-1.3837760500609875],[118,236,66,-1.382120680063963],[118,236,67,-1.3799358643591404],[118,236,68,-1.3780515473335981],[118,236,69,-1.376968989148736],[118,236,70,-1.3766378294676542],[118,236,71,-1.3765260968357325],[118,236,72,-1.3766674771904945],[118,236,73,-1.3772067576646805],[118,236,74,-1.3779067937284708],[118,236,75,-1.378386203199625],[118,236,76,-1.378235774114728],[118,236,77,-1.3771559037268162],[118,236,78,-1.3749522604048252],[118,236,79,-1.3722454980015755],[118,237,64,-1.392222385853529],[118,237,65,-1.3915885500609875],[118,237,66,-1.389933180063963],[118,237,67,-1.3877483643591404],[118,237,68,-1.3858640473335981],[118,237,69,-1.384781489148736],[118,237,70,-1.3844503294676542],[118,237,71,-1.3843385968357325],[118,237,72,-1.3844799771904945],[118,237,73,-1.3850192576646805],[118,237,74,-1.3857192937284708],[118,237,75,-1.386198703199625],[118,237,76,-1.386048274114728],[118,237,77,-1.3849684037268162],[118,237,78,-1.3827647604048252],[118,237,79,-1.3800579980015755],[118,238,64,-1.400034885853529],[118,238,65,-1.3994010500609875],[118,238,66,-1.397745680063963],[118,238,67,-1.3955608643591404],[118,238,68,-1.3936765473335981],[118,238,69,-1.392593989148736],[118,238,70,-1.3922628294676542],[118,238,71,-1.3921510968357325],[118,238,72,-1.3922924771904945],[118,238,73,-1.3928317576646805],[118,238,74,-1.3935317937284708],[118,238,75,-1.394011203199625],[118,238,76,-1.393860774114728],[118,238,77,-1.3927809037268162],[118,238,78,-1.3905772604048252],[118,238,79,-1.3878704980015755],[118,239,64,-1.407847385853529],[118,239,65,-1.4072135500609875],[118,239,66,-1.405558180063963],[118,239,67,-1.4033733643591404],[118,239,68,-1.4014890473335981],[118,239,69,-1.400406489148736],[118,239,70,-1.4000753294676542],[118,239,71,-1.3999635968357325],[118,239,72,-1.4001049771904945],[118,239,73,-1.4006442576646805],[118,239,74,-1.4013442937284708],[118,239,75,-1.401823703199625],[118,239,76,-1.401673274114728],[118,239,77,-1.4005934037268162],[118,239,78,-1.3983897604048252],[118,239,79,-1.3956829980015755],[118,240,64,-1.415659885853529],[118,240,65,-1.4150260500609875],[118,240,66,-1.413370680063963],[118,240,67,-1.4111858643591404],[118,240,68,-1.4093015473335981],[118,240,69,-1.408218989148736],[118,240,70,-1.4078878294676542],[118,240,71,-1.4077760968357325],[118,240,72,-1.4079174771904945],[118,240,73,-1.4084567576646805],[118,240,74,-1.4091567937284708],[118,240,75,-1.409636203199625],[118,240,76,-1.409485774114728],[118,240,77,-1.4084059037268162],[118,240,78,-1.4062022604048252],[118,240,79,-1.4034954980015755],[118,241,64,-1.423472385853529],[118,241,65,-1.4228385500609875],[118,241,66,-1.421183180063963],[118,241,67,-1.4189983643591404],[118,241,68,-1.4171140473335981],[118,241,69,-1.416031489148736],[118,241,70,-1.4157003294676542],[118,241,71,-1.4155885968357325],[118,241,72,-1.4157299771904945],[118,241,73,-1.4162692576646805],[118,241,74,-1.4169692937284708],[118,241,75,-1.417448703199625],[118,241,76,-1.417298274114728],[118,241,77,-1.4162184037268162],[118,241,78,-1.4140147604048252],[118,241,79,-1.4113079980015755],[118,242,64,-1.431284885853529],[118,242,65,-1.4306510500609875],[118,242,66,-1.428995680063963],[118,242,67,-1.4268108643591404],[118,242,68,-1.4249265473335981],[118,242,69,-1.423843989148736],[118,242,70,-1.4235128294676542],[118,242,71,-1.4234010968357325],[118,242,72,-1.4235424771904945],[118,242,73,-1.4240817576646805],[118,242,74,-1.4247817937284708],[118,242,75,-1.425261203199625],[118,242,76,-1.425110774114728],[118,242,77,-1.4240309037268162],[118,242,78,-1.4218272604048252],[118,242,79,-1.4191204980015755],[118,243,64,-1.439097385853529],[118,243,65,-1.4384635500609875],[118,243,66,-1.436808180063963],[118,243,67,-1.4346233643591404],[118,243,68,-1.4327390473335981],[118,243,69,-1.431656489148736],[118,243,70,-1.4313253294676542],[118,243,71,-1.4312135968357325],[118,243,72,-1.4313549771904945],[118,243,73,-1.4318942576646805],[118,243,74,-1.4325942937284708],[118,243,75,-1.433073703199625],[118,243,76,-1.432923274114728],[118,243,77,-1.4318434037268162],[118,243,78,-1.4296397604048252],[118,243,79,-1.4269329980015755],[118,244,64,-1.446909885853529],[118,244,65,-1.4462760500609875],[118,244,66,-1.444620680063963],[118,244,67,-1.4424358643591404],[118,244,68,-1.4405515473335981],[118,244,69,-1.439468989148736],[118,244,70,-1.4391378294676542],[118,244,71,-1.4390260968357325],[118,244,72,-1.4391674771904945],[118,244,73,-1.4397067576646805],[118,244,74,-1.4404067937284708],[118,244,75,-1.440886203199625],[118,244,76,-1.440735774114728],[118,244,77,-1.4396559037268162],[118,244,78,-1.4374522604048252],[118,244,79,-1.4347454980015755],[118,245,64,-1.454722385853529],[118,245,65,-1.4540885500609875],[118,245,66,-1.452433180063963],[118,245,67,-1.4502483643591404],[118,245,68,-1.4483640473335981],[118,245,69,-1.447281489148736],[118,245,70,-1.4469503294676542],[118,245,71,-1.4468385968357325],[118,245,72,-1.4469799771904945],[118,245,73,-1.4475192576646805],[118,245,74,-1.4482192937284708],[118,245,75,-1.448698703199625],[118,245,76,-1.448548274114728],[118,245,77,-1.4474684037268162],[118,245,78,-1.4452647604048252],[118,245,79,-1.4425579980015755],[118,246,64,-1.462534885853529],[118,246,65,-1.4619010500609875],[118,246,66,-1.460245680063963],[118,246,67,-1.4580608643591404],[118,246,68,-1.4561765473335981],[118,246,69,-1.455093989148736],[118,246,70,-1.4547628294676542],[118,246,71,-1.4546510968357325],[118,246,72,-1.4547924771904945],[118,246,73,-1.4553317576646805],[118,246,74,-1.4560317937284708],[118,246,75,-1.456511203199625],[118,246,76,-1.456360774114728],[118,246,77,-1.4552809037268162],[118,246,78,-1.4530772604048252],[118,246,79,-1.4503704980015755],[118,247,64,-1.470347385853529],[118,247,65,-1.4697135500609875],[118,247,66,-1.468058180063963],[118,247,67,-1.4658733643591404],[118,247,68,-1.4639890473335981],[118,247,69,-1.462906489148736],[118,247,70,-1.4625753294676542],[118,247,71,-1.4624635968357325],[118,247,72,-1.4626049771904945],[118,247,73,-1.4631442576646805],[118,247,74,-1.4638442937284708],[118,247,75,-1.464323703199625],[118,247,76,-1.464173274114728],[118,247,77,-1.4630934037268162],[118,247,78,-1.4608897604048252],[118,247,79,-1.4581829980015755],[118,248,64,-1.478159885853529],[118,248,65,-1.4775260500609875],[118,248,66,-1.475870680063963],[118,248,67,-1.4736858643591404],[118,248,68,-1.4718015473335981],[118,248,69,-1.470718989148736],[118,248,70,-1.4703878294676542],[118,248,71,-1.4702760968357325],[118,248,72,-1.4704174771904945],[118,248,73,-1.4709567576646805],[118,248,74,-1.4716567937284708],[118,248,75,-1.472136203199625],[118,248,76,-1.471985774114728],[118,248,77,-1.4709059037268162],[118,248,78,-1.4687022604048252],[118,248,79,-1.4659954980015755],[118,249,64,-1.485972385853529],[118,249,65,-1.4853385500609875],[118,249,66,-1.483683180063963],[118,249,67,-1.4814983643591404],[118,249,68,-1.4796140473335981],[118,249,69,-1.478531489148736],[118,249,70,-1.4782003294676542],[118,249,71,-1.4780885968357325],[118,249,72,-1.4782299771904945],[118,249,73,-1.4787692576646805],[118,249,74,-1.4794692937284708],[118,249,75,-1.479948703199625],[118,249,76,-1.479798274114728],[118,249,77,-1.4787184037268162],[118,249,78,-1.4765147604048252],[118,249,79,-1.4738079980015755],[118,250,64,-1.493784885853529],[118,250,65,-1.4931510500609875],[118,250,66,-1.491495680063963],[118,250,67,-1.4893108643591404],[118,250,68,-1.4874265473335981],[118,250,69,-1.486343989148736],[118,250,70,-1.4860128294676542],[118,250,71,-1.4859010968357325],[118,250,72,-1.4860424771904945],[118,250,73,-1.4865817576646805],[118,250,74,-1.4872817937284708],[118,250,75,-1.487761203199625],[118,250,76,-1.487610774114728],[118,250,77,-1.4865309037268162],[118,250,78,-1.4843272604048252],[118,250,79,-1.4816204980015755],[118,251,64,-1.501597385853529],[118,251,65,-1.5009635500609875],[118,251,66,-1.499308180063963],[118,251,67,-1.4971233643591404],[118,251,68,-1.4952390473335981],[118,251,69,-1.494156489148736],[118,251,70,-1.4938253294676542],[118,251,71,-1.4937135968357325],[118,251,72,-1.4938549771904945],[118,251,73,-1.4943942576646805],[118,251,74,-1.4950942937284708],[118,251,75,-1.495573703199625],[118,251,76,-1.495423274114728],[118,251,77,-1.4943434037268162],[118,251,78,-1.4921397604048252],[118,251,79,-1.4894329980015755],[118,252,64,-1.509409885853529],[118,252,65,-1.5087760500609875],[118,252,66,-1.507120680063963],[118,252,67,-1.5049358643591404],[118,252,68,-1.5030515473335981],[118,252,69,-1.501968989148736],[118,252,70,-1.5016378294676542],[118,252,71,-1.5015260968357325],[118,252,72,-1.5016674771904945],[118,252,73,-1.5022067576646805],[118,252,74,-1.5029067937284708],[118,252,75,-1.503386203199625],[118,252,76,-1.503235774114728],[118,252,77,-1.5021559037268162],[118,252,78,-1.4999522604048252],[118,252,79,-1.4972454980015755],[118,253,64,-1.517222385853529],[118,253,65,-1.5165885500609875],[118,253,66,-1.514933180063963],[118,253,67,-1.5127483643591404],[118,253,68,-1.5108640473335981],[118,253,69,-1.509781489148736],[118,253,70,-1.5094503294676542],[118,253,71,-1.5093385968357325],[118,253,72,-1.5094799771904945],[118,253,73,-1.5100192576646805],[118,253,74,-1.5107192937284708],[118,253,75,-1.511198703199625],[118,253,76,-1.511048274114728],[118,253,77,-1.5099684037268162],[118,253,78,-1.5077647604048252],[118,253,79,-1.5050579980015755],[118,254,64,-1.525034885853529],[118,254,65,-1.5244010500609875],[118,254,66,-1.522745680063963],[118,254,67,-1.5205608643591404],[118,254,68,-1.5186765473335981],[118,254,69,-1.517593989148736],[118,254,70,-1.5172628294676542],[118,254,71,-1.5171510968357325],[118,254,72,-1.5172924771904945],[118,254,73,-1.5178317576646805],[118,254,74,-1.5185317937284708],[118,254,75,-1.519011203199625],[118,254,76,-1.518860774114728],[118,254,77,-1.5177809037268162],[118,254,78,-1.5155772604048252],[118,254,79,-1.5128704980015755],[118,255,64,-1.532847385853529],[118,255,65,-1.5322135500609875],[118,255,66,-1.530558180063963],[118,255,67,-1.5283733643591404],[118,255,68,-1.5264890473335981],[118,255,69,-1.525406489148736],[118,255,70,-1.5250753294676542],[118,255,71,-1.5249635968357325],[118,255,72,-1.5251049771904945],[118,255,73,-1.5256442576646805],[118,255,74,-1.5263442937284708],[118,255,75,-1.526823703199625],[118,255,76,-1.526673274114728],[118,255,77,-1.5255934037268162],[118,255,78,-1.5233897604048252],[118,255,79,-1.5206829980015755],[118,256,64,-1.540659885853529],[118,256,65,-1.5400260500609875],[118,256,66,-1.538370680063963],[118,256,67,-1.5361858643591404],[118,256,68,-1.5343015473335981],[118,256,69,-1.533218989148736],[118,256,70,-1.5328878294676542],[118,256,71,-1.5327760968357325],[118,256,72,-1.5329174771904945],[118,256,73,-1.5334567576646805],[118,256,74,-1.5341567937284708],[118,256,75,-1.534636203199625],[118,256,76,-1.534485774114728],[118,256,77,-1.5334059037268162],[118,256,78,-1.5312022604048252],[118,256,79,-1.5284954980015755],[118,257,64,-1.548472385853529],[118,257,65,-1.5478385500609875],[118,257,66,-1.546183180063963],[118,257,67,-1.5439983643591404],[118,257,68,-1.5421140473335981],[118,257,69,-1.541031489148736],[118,257,70,-1.5407003294676542],[118,257,71,-1.5405885968357325],[118,257,72,-1.5407299771904945],[118,257,73,-1.5412692576646805],[118,257,74,-1.5419692937284708],[118,257,75,-1.542448703199625],[118,257,76,-1.542298274114728],[118,257,77,-1.5412184037268162],[118,257,78,-1.5390147604048252],[118,257,79,-1.5363079980015755],[118,258,64,-1.556284885853529],[118,258,65,-1.5556510500609875],[118,258,66,-1.553995680063963],[118,258,67,-1.5518108643591404],[118,258,68,-1.5499265473335981],[118,258,69,-1.548843989148736],[118,258,70,-1.5485128294676542],[118,258,71,-1.5484010968357325],[118,258,72,-1.5485424771904945],[118,258,73,-1.5490817576646805],[118,258,74,-1.5497817937284708],[118,258,75,-1.550261203199625],[118,258,76,-1.550110774114728],[118,258,77,-1.5490309037268162],[118,258,78,-1.5468272604048252],[118,258,79,-1.5441204980015755],[118,259,64,-1.564097385853529],[118,259,65,-1.5634635500609875],[118,259,66,-1.561808180063963],[118,259,67,-1.5596233643591404],[118,259,68,-1.5577390473335981],[118,259,69,-1.556656489148736],[118,259,70,-1.5563253294676542],[118,259,71,-1.5562135968357325],[118,259,72,-1.5563549771904945],[118,259,73,-1.5568942576646805],[118,259,74,-1.5575942937284708],[118,259,75,-1.558073703199625],[118,259,76,-1.557923274114728],[118,259,77,-1.5568434037268162],[118,259,78,-1.5546397604048252],[118,259,79,-1.5519329980015755],[118,260,64,-1.571909885853529],[118,260,65,-1.5712760500609875],[118,260,66,-1.569620680063963],[118,260,67,-1.5674358643591404],[118,260,68,-1.5655515473335981],[118,260,69,-1.564468989148736],[118,260,70,-1.5641378294676542],[118,260,71,-1.5640260968357325],[118,260,72,-1.5641674771904945],[118,260,73,-1.5647067576646805],[118,260,74,-1.5654067937284708],[118,260,75,-1.565886203199625],[118,260,76,-1.565735774114728],[118,260,77,-1.5646559037268162],[118,260,78,-1.5624522604048252],[118,260,79,-1.5597454980015755],[118,261,64,-1.579722385853529],[118,261,65,-1.5790885500609875],[118,261,66,-1.577433180063963],[118,261,67,-1.5752483643591404],[118,261,68,-1.5733640473335981],[118,261,69,-1.572281489148736],[118,261,70,-1.5719503294676542],[118,261,71,-1.5718385968357325],[118,261,72,-1.5719799771904945],[118,261,73,-1.5725192576646805],[118,261,74,-1.5732192937284708],[118,261,75,-1.573698703199625],[118,261,76,-1.573548274114728],[118,261,77,-1.5724684037268162],[118,261,78,-1.5702647604048252],[118,261,79,-1.5675579980015755],[118,262,64,-1.587534885853529],[118,262,65,-1.5869010500609875],[118,262,66,-1.585245680063963],[118,262,67,-1.5830608643591404],[118,262,68,-1.5811765473335981],[118,262,69,-1.580093989148736],[118,262,70,-1.5797628294676542],[118,262,71,-1.5796510968357325],[118,262,72,-1.5797924771904945],[118,262,73,-1.5803317576646805],[118,262,74,-1.5810317937284708],[118,262,75,-1.581511203199625],[118,262,76,-1.581360774114728],[118,262,77,-1.5802809037268162],[118,262,78,-1.5780772604048252],[118,262,79,-1.5753704980015755],[118,263,64,-1.595347385853529],[118,263,65,-1.5947135500609875],[118,263,66,-1.593058180063963],[118,263,67,-1.5908733643591404],[118,263,68,-1.5889890473335981],[118,263,69,-1.587906489148736],[118,263,70,-1.5875753294676542],[118,263,71,-1.5874635968357325],[118,263,72,-1.5876049771904945],[118,263,73,-1.5881442576646805],[118,263,74,-1.5888442937284708],[118,263,75,-1.589323703199625],[118,263,76,-1.589173274114728],[118,263,77,-1.5880934037268162],[118,263,78,-1.5858897604048252],[118,263,79,-1.5831829980015755],[118,264,64,-1.603159885853529],[118,264,65,-1.6025260500609875],[118,264,66,-1.600870680063963],[118,264,67,-1.5986858643591404],[118,264,68,-1.5968015473335981],[118,264,69,-1.595718989148736],[118,264,70,-1.5953878294676542],[118,264,71,-1.5952760968357325],[118,264,72,-1.5954174771904945],[118,264,73,-1.5959567576646805],[118,264,74,-1.5966567937284708],[118,264,75,-1.597136203199625],[118,264,76,-1.596985774114728],[118,264,77,-1.5959059037268162],[118,264,78,-1.5937022604048252],[118,264,79,-1.5909954980015755],[118,265,64,-1.610972385853529],[118,265,65,-1.6103385500609875],[118,265,66,-1.608683180063963],[118,265,67,-1.6064983643591404],[118,265,68,-1.6046140473335981],[118,265,69,-1.603531489148736],[118,265,70,-1.6032003294676542],[118,265,71,-1.6030885968357325],[118,265,72,-1.6032299771904945],[118,265,73,-1.6037692576646805],[118,265,74,-1.6044692937284708],[118,265,75,-1.604948703199625],[118,265,76,-1.604798274114728],[118,265,77,-1.6037184037268162],[118,265,78,-1.6015147604048252],[118,265,79,-1.5988079980015755],[118,266,64,-1.618784885853529],[118,266,65,-1.6181510500609875],[118,266,66,-1.616495680063963],[118,266,67,-1.6143108643591404],[118,266,68,-1.6124265473335981],[118,266,69,-1.611343989148736],[118,266,70,-1.6110128294676542],[118,266,71,-1.6109010968357325],[118,266,72,-1.6110424771904945],[118,266,73,-1.6115817576646805],[118,266,74,-1.6122817937284708],[118,266,75,-1.612761203199625],[118,266,76,-1.612610774114728],[118,266,77,-1.6115309037268162],[118,266,78,-1.6093272604048252],[118,266,79,-1.6066204980015755],[118,267,64,-1.626597385853529],[118,267,65,-1.6259635500609875],[118,267,66,-1.624308180063963],[118,267,67,-1.6221233643591404],[118,267,68,-1.6202390473335981],[118,267,69,-1.619156489148736],[118,267,70,-1.6188253294676542],[118,267,71,-1.6187135968357325],[118,267,72,-1.6188549771904945],[118,267,73,-1.6193942576646805],[118,267,74,-1.6200942937284708],[118,267,75,-1.620573703199625],[118,267,76,-1.620423274114728],[118,267,77,-1.6193434037268162],[118,267,78,-1.6171397604048252],[118,267,79,-1.6144329980015755],[118,268,64,-1.634409885853529],[118,268,65,-1.6337760500609875],[118,268,66,-1.632120680063963],[118,268,67,-1.6299358643591404],[118,268,68,-1.6280515473335981],[118,268,69,-1.626968989148736],[118,268,70,-1.6266378294676542],[118,268,71,-1.6265260968357325],[118,268,72,-1.6266674771904945],[118,268,73,-1.6272067576646805],[118,268,74,-1.6279067937284708],[118,268,75,-1.628386203199625],[118,268,76,-1.628235774114728],[118,268,77,-1.6271559037268162],[118,268,78,-1.6249522604048252],[118,268,79,-1.6222454980015755],[118,269,64,-1.642222385853529],[118,269,65,-1.6415885500609875],[118,269,66,-1.639933180063963],[118,269,67,-1.6377483643591404],[118,269,68,-1.6358640473335981],[118,269,69,-1.634781489148736],[118,269,70,-1.6344503294676542],[118,269,71,-1.6343385968357325],[118,269,72,-1.6344799771904945],[118,269,73,-1.6350192576646805],[118,269,74,-1.6357192937284708],[118,269,75,-1.636198703199625],[118,269,76,-1.636048274114728],[118,269,77,-1.6349684037268162],[118,269,78,-1.6327647604048252],[118,269,79,-1.6300579980015755],[118,270,64,-1.650034885853529],[118,270,65,-1.6494010500609875],[118,270,66,-1.647745680063963],[118,270,67,-1.6455608643591404],[118,270,68,-1.6436765473335981],[118,270,69,-1.642593989148736],[118,270,70,-1.6422628294676542],[118,270,71,-1.6421510968357325],[118,270,72,-1.6422924771904945],[118,270,73,-1.6428317576646805],[118,270,74,-1.6435317937284708],[118,270,75,-1.644011203199625],[118,270,76,-1.643860774114728],[118,270,77,-1.6427809037268162],[118,270,78,-1.6405772604048252],[118,270,79,-1.6378704980015755],[118,271,64,-1.657847385853529],[118,271,65,-1.6572135500609875],[118,271,66,-1.655558180063963],[118,271,67,-1.6533733643591404],[118,271,68,-1.6514890473335981],[118,271,69,-1.650406489148736],[118,271,70,-1.6500753294676542],[118,271,71,-1.6499635968357325],[118,271,72,-1.6501049771904945],[118,271,73,-1.6506442576646805],[118,271,74,-1.6513442937284708],[118,271,75,-1.651823703199625],[118,271,76,-1.651673274114728],[118,271,77,-1.6505934037268162],[118,271,78,-1.6483897604048252],[118,271,79,-1.6456829980015755],[118,272,64,-1.665659885853529],[118,272,65,-1.6650260500609875],[118,272,66,-1.663370680063963],[118,272,67,-1.6611858643591404],[118,272,68,-1.6593015473335981],[118,272,69,-1.658218989148736],[118,272,70,-1.6578878294676542],[118,272,71,-1.6577760968357325],[118,272,72,-1.6579174771904945],[118,272,73,-1.6584567576646805],[118,272,74,-1.6591567937284708],[118,272,75,-1.659636203199625],[118,272,76,-1.659485774114728],[118,272,77,-1.6584059037268162],[118,272,78,-1.6562022604048252],[118,272,79,-1.6534954980015755],[118,273,64,-1.673472385853529],[118,273,65,-1.6728385500609875],[118,273,66,-1.671183180063963],[118,273,67,-1.6689983643591404],[118,273,68,-1.6671140473335981],[118,273,69,-1.666031489148736],[118,273,70,-1.6657003294676542],[118,273,71,-1.6655885968357325],[118,273,72,-1.6657299771904945],[118,273,73,-1.6662692576646805],[118,273,74,-1.6669692937284708],[118,273,75,-1.667448703199625],[118,273,76,-1.667298274114728],[118,273,77,-1.6662184037268162],[118,273,78,-1.6640147604048252],[118,273,79,-1.6613079980015755],[118,274,64,-1.681284885853529],[118,274,65,-1.6806510500609875],[118,274,66,-1.678995680063963],[118,274,67,-1.6768108643591404],[118,274,68,-1.6749265473335981],[118,274,69,-1.673843989148736],[118,274,70,-1.6735128294676542],[118,274,71,-1.6734010968357325],[118,274,72,-1.6735424771904945],[118,274,73,-1.6740817576646805],[118,274,74,-1.6747817937284708],[118,274,75,-1.675261203199625],[118,274,76,-1.675110774114728],[118,274,77,-1.6740309037268162],[118,274,78,-1.6718272604048252],[118,274,79,-1.6691204980015755],[118,275,64,-1.689097385853529],[118,275,65,-1.6884635500609875],[118,275,66,-1.686808180063963],[118,275,67,-1.6846233643591404],[118,275,68,-1.6827390473335981],[118,275,69,-1.681656489148736],[118,275,70,-1.6813253294676542],[118,275,71,-1.6812135968357325],[118,275,72,-1.6813549771904945],[118,275,73,-1.6818942576646805],[118,275,74,-1.6825942937284708],[118,275,75,-1.683073703199625],[118,275,76,-1.682923274114728],[118,275,77,-1.6818434037268162],[118,275,78,-1.6796397604048252],[118,275,79,-1.6769329980015755],[118,276,64,-1.696909885853529],[118,276,65,-1.6962760500609875],[118,276,66,-1.694620680063963],[118,276,67,-1.6924358643591404],[118,276,68,-1.6905515473335981],[118,276,69,-1.689468989148736],[118,276,70,-1.6891378294676542],[118,276,71,-1.6890260968357325],[118,276,72,-1.6891674771904945],[118,276,73,-1.6897067576646805],[118,276,74,-1.6904067937284708],[118,276,75,-1.690886203199625],[118,276,76,-1.690735774114728],[118,276,77,-1.6896559037268162],[118,276,78,-1.6874522604048252],[118,276,79,-1.6847454980015755],[118,277,64,-1.704722385853529],[118,277,65,-1.7040885500609875],[118,277,66,-1.702433180063963],[118,277,67,-1.7002483643591404],[118,277,68,-1.6983640473335981],[118,277,69,-1.697281489148736],[118,277,70,-1.6969503294676542],[118,277,71,-1.6968385968357325],[118,277,72,-1.6969799771904945],[118,277,73,-1.6975192576646805],[118,277,74,-1.6982192937284708],[118,277,75,-1.698698703199625],[118,277,76,-1.698548274114728],[118,277,77,-1.6974684037268162],[118,277,78,-1.6952647604048252],[118,277,79,-1.6925579980015755],[118,278,64,-1.712534885853529],[118,278,65,-1.7119010500609875],[118,278,66,-1.710245680063963],[118,278,67,-1.7080608643591404],[118,278,68,-1.7061765473335981],[118,278,69,-1.705093989148736],[118,278,70,-1.7047628294676542],[118,278,71,-1.7046510968357325],[118,278,72,-1.7047924771904945],[118,278,73,-1.7053317576646805],[118,278,74,-1.7060317937284708],[118,278,75,-1.706511203199625],[118,278,76,-1.706360774114728],[118,278,77,-1.7052809037268162],[118,278,78,-1.7030772604048252],[118,278,79,-1.7003704980015755],[118,279,64,-1.720347385853529],[118,279,65,-1.7197135500609875],[118,279,66,-1.718058180063963],[118,279,67,-1.7158733643591404],[118,279,68,-1.7139890473335981],[118,279,69,-1.712906489148736],[118,279,70,-1.7125753294676542],[118,279,71,-1.7124635968357325],[118,279,72,-1.7126049771904945],[118,279,73,-1.7131442576646805],[118,279,74,-1.7138442937284708],[118,279,75,-1.714323703199625],[118,279,76,-1.714173274114728],[118,279,77,-1.7130934037268162],[118,279,78,-1.7108897604048252],[118,279,79,-1.7081829980015755],[118,280,64,-1.728159885853529],[118,280,65,-1.7275260500609875],[118,280,66,-1.725870680063963],[118,280,67,-1.7236858643591404],[118,280,68,-1.7218015473335981],[118,280,69,-1.720718989148736],[118,280,70,-1.7203878294676542],[118,280,71,-1.7202760968357325],[118,280,72,-1.7204174771904945],[118,280,73,-1.7209567576646805],[118,280,74,-1.7216567937284708],[118,280,75,-1.722136203199625],[118,280,76,-1.721985774114728],[118,280,77,-1.7209059037268162],[118,280,78,-1.7187022604048252],[118,280,79,-1.7159954980015755],[118,281,64,-1.735972385853529],[118,281,65,-1.7353385500609875],[118,281,66,-1.733683180063963],[118,281,67,-1.7314983643591404],[118,281,68,-1.7296140473335981],[118,281,69,-1.728531489148736],[118,281,70,-1.7282003294676542],[118,281,71,-1.7280885968357325],[118,281,72,-1.7282299771904945],[118,281,73,-1.7287692576646805],[118,281,74,-1.7294692937284708],[118,281,75,-1.729948703199625],[118,281,76,-1.729798274114728],[118,281,77,-1.7287184037268162],[118,281,78,-1.7265147604048252],[118,281,79,-1.7238079980015755],[118,282,64,-1.743784885853529],[118,282,65,-1.7431510500609875],[118,282,66,-1.741495680063963],[118,282,67,-1.7393108643591404],[118,282,68,-1.7374265473335981],[118,282,69,-1.736343989148736],[118,282,70,-1.7360128294676542],[118,282,71,-1.7359010968357325],[118,282,72,-1.7360424771904945],[118,282,73,-1.7365817576646805],[118,282,74,-1.7372817937284708],[118,282,75,-1.737761203199625],[118,282,76,-1.737610774114728],[118,282,77,-1.7365309037268162],[118,282,78,-1.7343272604048252],[118,282,79,-1.7316204980015755],[118,283,64,-1.751597385853529],[118,283,65,-1.7509635500609875],[118,283,66,-1.749308180063963],[118,283,67,-1.7471233643591404],[118,283,68,-1.7452390473335981],[118,283,69,-1.744156489148736],[118,283,70,-1.7438253294676542],[118,283,71,-1.7437135968357325],[118,283,72,-1.7438549771904945],[118,283,73,-1.7443942576646805],[118,283,74,-1.7450942937284708],[118,283,75,-1.745573703199625],[118,283,76,-1.745423274114728],[118,283,77,-1.7443434037268162],[118,283,78,-1.7421397604048252],[118,283,79,-1.7394329980015755],[118,284,64,-1.759409885853529],[118,284,65,-1.7587760500609875],[118,284,66,-1.757120680063963],[118,284,67,-1.7549358643591404],[118,284,68,-1.7530515473335981],[118,284,69,-1.751968989148736],[118,284,70,-1.7516378294676542],[118,284,71,-1.7515260968357325],[118,284,72,-1.7516674771904945],[118,284,73,-1.7522067576646805],[118,284,74,-1.7529067937284708],[118,284,75,-1.753386203199625],[118,284,76,-1.753235774114728],[118,284,77,-1.7521559037268162],[118,284,78,-1.7499522604048252],[118,284,79,-1.7472454980015755],[118,285,64,-1.767222385853529],[118,285,65,-1.7665885500609875],[118,285,66,-1.764933180063963],[118,285,67,-1.7627483643591404],[118,285,68,-1.7608640473335981],[118,285,69,-1.759781489148736],[118,285,70,-1.7594503294676542],[118,285,71,-1.7593385968357325],[118,285,72,-1.7594799771904945],[118,285,73,-1.7600192576646805],[118,285,74,-1.7607192937284708],[118,285,75,-1.761198703199625],[118,285,76,-1.761048274114728],[118,285,77,-1.7599684037268162],[118,285,78,-1.7577647604048252],[118,285,79,-1.7550579980015755],[118,286,64,-1.775034885853529],[118,286,65,-1.7744010500609875],[118,286,66,-1.772745680063963],[118,286,67,-1.7705608643591404],[118,286,68,-1.7686765473335981],[118,286,69,-1.767593989148736],[118,286,70,-1.7672628294676542],[118,286,71,-1.7671510968357325],[118,286,72,-1.7672924771904945],[118,286,73,-1.7678317576646805],[118,286,74,-1.7685317937284708],[118,286,75,-1.769011203199625],[118,286,76,-1.768860774114728],[118,286,77,-1.7677809037268162],[118,286,78,-1.7655772604048252],[118,286,79,-1.7628704980015755],[118,287,64,-1.782847385853529],[118,287,65,-1.7822135500609875],[118,287,66,-1.780558180063963],[118,287,67,-1.7783733643591404],[118,287,68,-1.7764890473335981],[118,287,69,-1.775406489148736],[118,287,70,-1.7750753294676542],[118,287,71,-1.7749635968357325],[118,287,72,-1.7751049771904945],[118,287,73,-1.7756442576646805],[118,287,74,-1.7763442937284708],[118,287,75,-1.776823703199625],[118,287,76,-1.776673274114728],[118,287,77,-1.7755934037268162],[118,287,78,-1.7733897604048252],[118,287,79,-1.7706829980015755],[118,288,64,-1.790659885853529],[118,288,65,-1.7900260500609875],[118,288,66,-1.788370680063963],[118,288,67,-1.7861858643591404],[118,288,68,-1.7843015473335981],[118,288,69,-1.783218989148736],[118,288,70,-1.7828878294676542],[118,288,71,-1.7827760968357325],[118,288,72,-1.7829174771904945],[118,288,73,-1.7834567576646805],[118,288,74,-1.7841567937284708],[118,288,75,-1.784636203199625],[118,288,76,-1.784485774114728],[118,288,77,-1.7834059037268162],[118,288,78,-1.7812022604048252],[118,288,79,-1.7784954980015755],[118,289,64,-1.798472385853529],[118,289,65,-1.7978385500609875],[118,289,66,-1.796183180063963],[118,289,67,-1.7939983643591404],[118,289,68,-1.7921140473335981],[118,289,69,-1.791031489148736],[118,289,70,-1.7907003294676542],[118,289,71,-1.7905885968357325],[118,289,72,-1.7907299771904945],[118,289,73,-1.7912692576646805],[118,289,74,-1.7919692937284708],[118,289,75,-1.792448703199625],[118,289,76,-1.792298274114728],[118,289,77,-1.7912184037268162],[118,289,78,-1.7890147604048252],[118,289,79,-1.7863079980015755],[118,290,64,-1.806284885853529],[118,290,65,-1.8056510500609875],[118,290,66,-1.803995680063963],[118,290,67,-1.8018108643591404],[118,290,68,-1.7999265473335981],[118,290,69,-1.798843989148736],[118,290,70,-1.7985128294676542],[118,290,71,-1.7984010968357325],[118,290,72,-1.7985424771904945],[118,290,73,-1.7990817576646805],[118,290,74,-1.7997817937284708],[118,290,75,-1.800261203199625],[118,290,76,-1.800110774114728],[118,290,77,-1.7990309037268162],[118,290,78,-1.7968272604048252],[118,290,79,-1.7941204980015755],[118,291,64,-1.814097385853529],[118,291,65,-1.8134635500609875],[118,291,66,-1.811808180063963],[118,291,67,-1.8096233643591404],[118,291,68,-1.8077390473335981],[118,291,69,-1.806656489148736],[118,291,70,-1.8063253294676542],[118,291,71,-1.8062135968357325],[118,291,72,-1.8063549771904945],[118,291,73,-1.8068942576646805],[118,291,74,-1.8075942937284708],[118,291,75,-1.808073703199625],[118,291,76,-1.807923274114728],[118,291,77,-1.8068434037268162],[118,291,78,-1.8046397604048252],[118,291,79,-1.8019329980015755],[118,292,64,-1.821909885853529],[118,292,65,-1.8212760500609875],[118,292,66,-1.819620680063963],[118,292,67,-1.8174358643591404],[118,292,68,-1.8155515473335981],[118,292,69,-1.814468989148736],[118,292,70,-1.8141378294676542],[118,292,71,-1.8140260968357325],[118,292,72,-1.8141674771904945],[118,292,73,-1.8147067576646805],[118,292,74,-1.8154067937284708],[118,292,75,-1.815886203199625],[118,292,76,-1.815735774114728],[118,292,77,-1.8146559037268162],[118,292,78,-1.8124522604048252],[118,292,79,-1.8097454980015755],[118,293,64,-1.829722385853529],[118,293,65,-1.8290885500609875],[118,293,66,-1.827433180063963],[118,293,67,-1.8252483643591404],[118,293,68,-1.8233640473335981],[118,293,69,-1.822281489148736],[118,293,70,-1.8219503294676542],[118,293,71,-1.8218385968357325],[118,293,72,-1.8219799771904945],[118,293,73,-1.8225192576646805],[118,293,74,-1.8232192937284708],[118,293,75,-1.823698703199625],[118,293,76,-1.823548274114728],[118,293,77,-1.8224684037268162],[118,293,78,-1.8202647604048252],[118,293,79,-1.8175579980015755],[118,294,64,-1.837534885853529],[118,294,65,-1.8369010500609875],[118,294,66,-1.835245680063963],[118,294,67,-1.8330608643591404],[118,294,68,-1.8311765473335981],[118,294,69,-1.830093989148736],[118,294,70,-1.8297628294676542],[118,294,71,-1.8296510968357325],[118,294,72,-1.8297924771904945],[118,294,73,-1.8303317576646805],[118,294,74,-1.8310317937284708],[118,294,75,-1.831511203199625],[118,294,76,-1.831360774114728],[118,294,77,-1.8302809037268162],[118,294,78,-1.8280772604048252],[118,294,79,-1.8253704980015755],[118,295,64,-1.845347385853529],[118,295,65,-1.8447135500609875],[118,295,66,-1.843058180063963],[118,295,67,-1.8408733643591404],[118,295,68,-1.8389890473335981],[118,295,69,-1.837906489148736],[118,295,70,-1.8375753294676542],[118,295,71,-1.8374635968357325],[118,295,72,-1.8376049771904945],[118,295,73,-1.8381442576646805],[118,295,74,-1.8388442937284708],[118,295,75,-1.839323703199625],[118,295,76,-1.839173274114728],[118,295,77,-1.8380934037268162],[118,295,78,-1.8358897604048252],[118,295,79,-1.8331829980015755],[118,296,64,-1.853159885853529],[118,296,65,-1.8525260500609875],[118,296,66,-1.850870680063963],[118,296,67,-1.8486858643591404],[118,296,68,-1.8468015473335981],[118,296,69,-1.845718989148736],[118,296,70,-1.8453878294676542],[118,296,71,-1.8452760968357325],[118,296,72,-1.8454174771904945],[118,296,73,-1.8459567576646805],[118,296,74,-1.8466567937284708],[118,296,75,-1.847136203199625],[118,296,76,-1.846985774114728],[118,296,77,-1.8459059037268162],[118,296,78,-1.8437022604048252],[118,296,79,-1.8409954980015755],[118,297,64,-1.860972385853529],[118,297,65,-1.8603385500609875],[118,297,66,-1.858683180063963],[118,297,67,-1.8564983643591404],[118,297,68,-1.8546140473335981],[118,297,69,-1.853531489148736],[118,297,70,-1.8532003294676542],[118,297,71,-1.8530885968357325],[118,297,72,-1.8532299771904945],[118,297,73,-1.8537692576646805],[118,297,74,-1.8544692937284708],[118,297,75,-1.854948703199625],[118,297,76,-1.854798274114728],[118,297,77,-1.8537184037268162],[118,297,78,-1.8515147604048252],[118,297,79,-1.8488079980015755],[118,298,64,-1.868784885853529],[118,298,65,-1.8681510500609875],[118,298,66,-1.866495680063963],[118,298,67,-1.8643108643591404],[118,298,68,-1.8624265473335981],[118,298,69,-1.861343989148736],[118,298,70,-1.8610128294676542],[118,298,71,-1.8609010968357325],[118,298,72,-1.8610424771904945],[118,298,73,-1.8615817576646805],[118,298,74,-1.8622817937284708],[118,298,75,-1.862761203199625],[118,298,76,-1.862610774114728],[118,298,77,-1.8615309037268162],[118,298,78,-1.8593272604048252],[118,298,79,-1.8566204980015755],[118,299,64,-1.876597385853529],[118,299,65,-1.8759635500609875],[118,299,66,-1.874308180063963],[118,299,67,-1.8721233643591404],[118,299,68,-1.8702390473335981],[118,299,69,-1.869156489148736],[118,299,70,-1.8688253294676542],[118,299,71,-1.8687135968357325],[118,299,72,-1.8688549771904945],[118,299,73,-1.8693942576646805],[118,299,74,-1.8700942937284708],[118,299,75,-1.870573703199625],[118,299,76,-1.870423274114728],[118,299,77,-1.8693434037268162],[118,299,78,-1.8671397604048252],[118,299,79,-1.8644329980015755],[118,300,64,-1.884409885853529],[118,300,65,-1.8837760500609875],[118,300,66,-1.882120680063963],[118,300,67,-1.8799358643591404],[118,300,68,-1.8780515473335981],[118,300,69,-1.876968989148736],[118,300,70,-1.8766378294676542],[118,300,71,-1.8765260968357325],[118,300,72,-1.8766674771904945],[118,300,73,-1.8772067576646805],[118,300,74,-1.8779067937284708],[118,300,75,-1.878386203199625],[118,300,76,-1.878235774114728],[118,300,77,-1.8771559037268162],[118,300,78,-1.8749522604048252],[118,300,79,-1.8722454980015755],[118,301,64,-1.892222385853529],[118,301,65,-1.8915885500609875],[118,301,66,-1.889933180063963],[118,301,67,-1.8877483643591404],[118,301,68,-1.8858640473335981],[118,301,69,-1.884781489148736],[118,301,70,-1.8844503294676542],[118,301,71,-1.8843385968357325],[118,301,72,-1.8844799771904945],[118,301,73,-1.8850192576646805],[118,301,74,-1.8857192937284708],[118,301,75,-1.886198703199625],[118,301,76,-1.886048274114728],[118,301,77,-1.8849684037268162],[118,301,78,-1.8827647604048252],[118,301,79,-1.8800579980015755],[118,302,64,-1.900034885853529],[118,302,65,-1.8994010500609875],[118,302,66,-1.897745680063963],[118,302,67,-1.8955608643591404],[118,302,68,-1.8936765473335981],[118,302,69,-1.892593989148736],[118,302,70,-1.8922628294676542],[118,302,71,-1.8921510968357325],[118,302,72,-1.8922924771904945],[118,302,73,-1.8928317576646805],[118,302,74,-1.8935317937284708],[118,302,75,-1.894011203199625],[118,302,76,-1.893860774114728],[118,302,77,-1.8927809037268162],[118,302,78,-1.8905772604048252],[118,302,79,-1.8878704980015755],[118,303,64,-1.907847385853529],[118,303,65,-1.9072135500609875],[118,303,66,-1.905558180063963],[118,303,67,-1.9033733643591404],[118,303,68,-1.9014890473335981],[118,303,69,-1.900406489148736],[118,303,70,-1.9000753294676542],[118,303,71,-1.8999635968357325],[118,303,72,-1.9001049771904945],[118,303,73,-1.9006442576646805],[118,303,74,-1.9013442937284708],[118,303,75,-1.901823703199625],[118,303,76,-1.901673274114728],[118,303,77,-1.9005934037268162],[118,303,78,-1.8983897604048252],[118,303,79,-1.8956829980015755],[118,304,64,-1.915659885853529],[118,304,65,-1.9150260500609875],[118,304,66,-1.913370680063963],[118,304,67,-1.9111858643591404],[118,304,68,-1.9093015473335981],[118,304,69,-1.908218989148736],[118,304,70,-1.9078878294676542],[118,304,71,-1.9077760968357325],[118,304,72,-1.9079174771904945],[118,304,73,-1.9084567576646805],[118,304,74,-1.9091567937284708],[118,304,75,-1.909636203199625],[118,304,76,-1.909485774114728],[118,304,77,-1.9084059037268162],[118,304,78,-1.9062022604048252],[118,304,79,-1.9034954980015755],[118,305,64,-1.923472385853529],[118,305,65,-1.9228385500609875],[118,305,66,-1.921183180063963],[118,305,67,-1.9189983643591404],[118,305,68,-1.9171140473335981],[118,305,69,-1.916031489148736],[118,305,70,-1.9157003294676542],[118,305,71,-1.9155885968357325],[118,305,72,-1.9157299771904945],[118,305,73,-1.9162692576646805],[118,305,74,-1.9169692937284708],[118,305,75,-1.917448703199625],[118,305,76,-1.917298274114728],[118,305,77,-1.9162184037268162],[118,305,78,-1.9140147604048252],[118,305,79,-1.9113079980015755],[118,306,64,-1.931284885853529],[118,306,65,-1.9306510500609875],[118,306,66,-1.928995680063963],[118,306,67,-1.9268108643591404],[118,306,68,-1.9249265473335981],[118,306,69,-1.923843989148736],[118,306,70,-1.9235128294676542],[118,306,71,-1.9234010968357325],[118,306,72,-1.9235424771904945],[118,306,73,-1.9240817576646805],[118,306,74,-1.9247817937284708],[118,306,75,-1.925261203199625],[118,306,76,-1.925110774114728],[118,306,77,-1.9240309037268162],[118,306,78,-1.9218272604048252],[118,306,79,-1.9191204980015755],[118,307,64,-1.939097385853529],[118,307,65,-1.9384635500609875],[118,307,66,-1.936808180063963],[118,307,67,-1.9346233643591404],[118,307,68,-1.9327390473335981],[118,307,69,-1.931656489148736],[118,307,70,-1.9313253294676542],[118,307,71,-1.9312135968357325],[118,307,72,-1.9313549771904945],[118,307,73,-1.9318942576646805],[118,307,74,-1.9325942937284708],[118,307,75,-1.933073703199625],[118,307,76,-1.932923274114728],[118,307,77,-1.9318434037268162],[118,307,78,-1.9296397604048252],[118,307,79,-1.9269329980015755],[118,308,64,-1.946909885853529],[118,308,65,-1.9462760500609875],[118,308,66,-1.944620680063963],[118,308,67,-1.9424358643591404],[118,308,68,-1.9405515473335981],[118,308,69,-1.939468989148736],[118,308,70,-1.9391378294676542],[118,308,71,-1.9390260968357325],[118,308,72,-1.9391674771904945],[118,308,73,-1.9397067576646805],[118,308,74,-1.9404067937284708],[118,308,75,-1.940886203199625],[118,308,76,-1.940735774114728],[118,308,77,-1.9396559037268162],[118,308,78,-1.9374522604048252],[118,308,79,-1.9347454980015755],[118,309,64,-1.954722385853529],[118,309,65,-1.9540885500609875],[118,309,66,-1.952433180063963],[118,309,67,-1.9502483643591404],[118,309,68,-1.9483640473335981],[118,309,69,-1.947281489148736],[118,309,70,-1.9469503294676542],[118,309,71,-1.9468385968357325],[118,309,72,-1.9469799771904945],[118,309,73,-1.9475192576646805],[118,309,74,-1.9482192937284708],[118,309,75,-1.948698703199625],[118,309,76,-1.948548274114728],[118,309,77,-1.9474684037268162],[118,309,78,-1.9452647604048252],[118,309,79,-1.9425579980015755],[118,310,64,-1.962534885853529],[118,310,65,-1.9619010500609875],[118,310,66,-1.960245680063963],[118,310,67,-1.9580608643591404],[118,310,68,-1.9561765473335981],[118,310,69,-1.955093989148736],[118,310,70,-1.9547628294676542],[118,310,71,-1.9546510968357325],[118,310,72,-1.9547924771904945],[118,310,73,-1.9553317576646805],[118,310,74,-1.9560317937284708],[118,310,75,-1.956511203199625],[118,310,76,-1.956360774114728],[118,310,77,-1.9552809037268162],[118,310,78,-1.9530772604048252],[118,310,79,-1.9503704980015755],[118,311,64,-1.970347385853529],[118,311,65,-1.9697135500609875],[118,311,66,-1.968058180063963],[118,311,67,-1.9658733643591404],[118,311,68,-1.9639890473335981],[118,311,69,-1.962906489148736],[118,311,70,-1.9625753294676542],[118,311,71,-1.9624635968357325],[118,311,72,-1.9626049771904945],[118,311,73,-1.9631442576646805],[118,311,74,-1.9638442937284708],[118,311,75,-1.964323703199625],[118,311,76,-1.964173274114728],[118,311,77,-1.9630934037268162],[118,311,78,-1.9608897604048252],[118,311,79,-1.9581829980015755],[118,312,64,-1.978159885853529],[118,312,65,-1.9775260500609875],[118,312,66,-1.975870680063963],[118,312,67,-1.9736858643591404],[118,312,68,-1.9718015473335981],[118,312,69,-1.970718989148736],[118,312,70,-1.9703878294676542],[118,312,71,-1.9702760968357325],[118,312,72,-1.9704174771904945],[118,312,73,-1.9709567576646805],[118,312,74,-1.9716567937284708],[118,312,75,-1.972136203199625],[118,312,76,-1.971985774114728],[118,312,77,-1.9709059037268162],[118,312,78,-1.9687022604048252],[118,312,79,-1.9659954980015755],[118,313,64,-1.985972385853529],[118,313,65,-1.9853385500609875],[118,313,66,-1.983683180063963],[118,313,67,-1.9814983643591404],[118,313,68,-1.9796140473335981],[118,313,69,-1.978531489148736],[118,313,70,-1.9782003294676542],[118,313,71,-1.9780885968357325],[118,313,72,-1.9782299771904945],[118,313,73,-1.9787692576646805],[118,313,74,-1.9794692937284708],[118,313,75,-1.979948703199625],[118,313,76,-1.979798274114728],[118,313,77,-1.9787184037268162],[118,313,78,-1.9765147604048252],[118,313,79,-1.9738079980015755],[118,314,64,-1.993784885853529],[118,314,65,-1.9931510500609875],[118,314,66,-1.991495680063963],[118,314,67,-1.9893108643591404],[118,314,68,-1.9874265473335981],[118,314,69,-1.986343989148736],[118,314,70,-1.9860128294676542],[118,314,71,-1.9859010968357325],[118,314,72,-1.9860424771904945],[118,314,73,-1.9865817576646805],[118,314,74,-1.9872817937284708],[118,314,75,-1.987761203199625],[118,314,76,-1.987610774114728],[118,314,77,-1.9865309037268162],[118,314,78,-1.9843272604048252],[118,314,79,-1.9816204980015755],[118,315,64,-2.001597385853529],[118,315,65,-2.0009635500609875],[118,315,66,-1.999308180063963],[118,315,67,-1.9971233643591404],[118,315,68,-1.9952390473335981],[118,315,69,-1.994156489148736],[118,315,70,-1.9938253294676542],[118,315,71,-1.9937135968357325],[118,315,72,-1.9938549771904945],[118,315,73,-1.9943942576646805],[118,315,74,-1.9950942937284708],[118,315,75,-1.995573703199625],[118,315,76,-1.995423274114728],[118,315,77,-1.9943434037268162],[118,315,78,-1.9921397604048252],[118,315,79,-1.9894329980015755],[118,316,64,-2.009409885853529],[118,316,65,-2.0087760500609875],[118,316,66,-2.007120680063963],[118,316,67,-2.0049358643591404],[118,316,68,-2.003051547333598],[118,316,69,-2.001968989148736],[118,316,70,-2.0016378294676542],[118,316,71,-2.0015260968357325],[118,316,72,-2.0016674771904945],[118,316,73,-2.0022067576646805],[118,316,74,-2.002906793728471],[118,316,75,-2.003386203199625],[118,316,76,-2.003235774114728],[118,316,77,-2.002155903726816],[118,316,78,-1.9999522604048252],[118,316,79,-1.9972454980015755],[118,317,64,-2.017222385853529],[118,317,65,-2.0165885500609875],[118,317,66,-2.014933180063963],[118,317,67,-2.0127483643591404],[118,317,68,-2.010864047333598],[118,317,69,-2.009781489148736],[118,317,70,-2.0094503294676542],[118,317,71,-2.0093385968357325],[118,317,72,-2.0094799771904945],[118,317,73,-2.0100192576646805],[118,317,74,-2.010719293728471],[118,317,75,-2.011198703199625],[118,317,76,-2.011048274114728],[118,317,77,-2.009968403726816],[118,317,78,-2.007764760404825],[118,317,79,-2.0050579980015755],[118,318,64,-2.025034885853529],[118,318,65,-2.0244010500609875],[118,318,66,-2.022745680063963],[118,318,67,-2.0205608643591404],[118,318,68,-2.018676547333598],[118,318,69,-2.017593989148736],[118,318,70,-2.0172628294676542],[118,318,71,-2.0171510968357325],[118,318,72,-2.0172924771904945],[118,318,73,-2.0178317576646805],[118,318,74,-2.018531793728471],[118,318,75,-2.019011203199625],[118,318,76,-2.018860774114728],[118,318,77,-2.017780903726816],[118,318,78,-2.015577260404825],[118,318,79,-2.0128704980015755],[118,319,64,-2.032847385853529],[118,319,65,-2.0322135500609875],[118,319,66,-2.030558180063963],[118,319,67,-2.0283733643591404],[118,319,68,-2.026489047333598],[118,319,69,-2.025406489148736],[118,319,70,-2.0250753294676542],[118,319,71,-2.0249635968357325],[118,319,72,-2.0251049771904945],[118,319,73,-2.0256442576646805],[118,319,74,-2.026344293728471],[118,319,75,-2.026823703199625],[118,319,76,-2.026673274114728],[118,319,77,-2.025593403726816],[118,319,78,-2.023389760404825],[118,319,79,-2.0206829980015755],[119,-64,64,0.9566466026008129],[119,-64,65,0.9572747722268105],[119,-64,66,0.9589313343167305],[119,-64,67,0.9610438719391823],[119,-64,68,0.9627494402229786],[119,-64,69,0.9634480252861977],[119,-64,70,0.9632409289479256],[119,-64,71,0.9626511260867119],[119,-64,72,0.9614419974386692],[119,-64,73,0.9597322233021259],[119,-64,74,0.9583089053630829],[119,-64,75,0.9576942808926105],[119,-64,76,0.958171121776104],[119,-64,77,0.9598564133048058],[119,-64,78,0.9627103172242641],[119,-64,79,0.9660803005099297],[119,-63,64,0.9488341026008129],[119,-63,65,0.9494622722268105],[119,-63,66,0.9511188343167305],[119,-63,67,0.9532313719391823],[119,-63,68,0.9549369402229786],[119,-63,69,0.9556355252861977],[119,-63,70,0.9554284289479256],[119,-63,71,0.9548386260867119],[119,-63,72,0.9536294974386692],[119,-63,73,0.9519197233021259],[119,-63,74,0.9504964053630829],[119,-63,75,0.9498817808926105],[119,-63,76,0.950358621776104],[119,-63,77,0.9520439133048058],[119,-63,78,0.9548978172242641],[119,-63,79,0.9582678005099297],[119,-62,64,0.9410216026008129],[119,-62,65,0.9416497722268105],[119,-62,66,0.9433063343167305],[119,-62,67,0.9454188719391823],[119,-62,68,0.9471244402229786],[119,-62,69,0.9478230252861977],[119,-62,70,0.9476159289479256],[119,-62,71,0.9470261260867119],[119,-62,72,0.9458169974386692],[119,-62,73,0.9441072233021259],[119,-62,74,0.9426839053630829],[119,-62,75,0.9420692808926105],[119,-62,76,0.942546121776104],[119,-62,77,0.9442314133048058],[119,-62,78,0.9470853172242641],[119,-62,79,0.9504553005099297],[119,-61,64,0.9332091026008129],[119,-61,65,0.9338372722268105],[119,-61,66,0.9354938343167305],[119,-61,67,0.9376063719391823],[119,-61,68,0.9393119402229786],[119,-61,69,0.9400105252861977],[119,-61,70,0.9398034289479256],[119,-61,71,0.9392136260867119],[119,-61,72,0.9380044974386692],[119,-61,73,0.9362947233021259],[119,-61,74,0.9348714053630829],[119,-61,75,0.9342567808926105],[119,-61,76,0.934733621776104],[119,-61,77,0.9364189133048058],[119,-61,78,0.9392728172242641],[119,-61,79,0.9426428005099297],[119,-60,64,0.9253966026008129],[119,-60,65,0.9260247722268105],[119,-60,66,0.9276813343167305],[119,-60,67,0.9297938719391823],[119,-60,68,0.9314994402229786],[119,-60,69,0.9321980252861977],[119,-60,70,0.9319909289479256],[119,-60,71,0.9314011260867119],[119,-60,72,0.9301919974386692],[119,-60,73,0.9284822233021259],[119,-60,74,0.9270589053630829],[119,-60,75,0.9264442808926105],[119,-60,76,0.926921121776104],[119,-60,77,0.9286064133048058],[119,-60,78,0.9314603172242641],[119,-60,79,0.9348303005099297],[119,-59,64,0.9175841026008129],[119,-59,65,0.9182122722268105],[119,-59,66,0.9198688343167305],[119,-59,67,0.9219813719391823],[119,-59,68,0.9236869402229786],[119,-59,69,0.9243855252861977],[119,-59,70,0.9241784289479256],[119,-59,71,0.9235886260867119],[119,-59,72,0.9223794974386692],[119,-59,73,0.9206697233021259],[119,-59,74,0.9192464053630829],[119,-59,75,0.9186317808926105],[119,-59,76,0.919108621776104],[119,-59,77,0.9207939133048058],[119,-59,78,0.9236478172242641],[119,-59,79,0.9270178005099297],[119,-58,64,0.9097716026008129],[119,-58,65,0.9103997722268105],[119,-58,66,0.9120563343167305],[119,-58,67,0.9141688719391823],[119,-58,68,0.9158744402229786],[119,-58,69,0.9165730252861977],[119,-58,70,0.9163659289479256],[119,-58,71,0.9157761260867119],[119,-58,72,0.9145669974386692],[119,-58,73,0.9128572233021259],[119,-58,74,0.9114339053630829],[119,-58,75,0.9108192808926105],[119,-58,76,0.911296121776104],[119,-58,77,0.9129814133048058],[119,-58,78,0.9158353172242641],[119,-58,79,0.9192053005099297],[119,-57,64,0.9019591026008129],[119,-57,65,0.9025872722268105],[119,-57,66,0.9042438343167305],[119,-57,67,0.9063563719391823],[119,-57,68,0.9080619402229786],[119,-57,69,0.9087605252861977],[119,-57,70,0.9085534289479256],[119,-57,71,0.9079636260867119],[119,-57,72,0.9067544974386692],[119,-57,73,0.9050447233021259],[119,-57,74,0.9036214053630829],[119,-57,75,0.9030067808926105],[119,-57,76,0.903483621776104],[119,-57,77,0.9051689133048058],[119,-57,78,0.9080228172242641],[119,-57,79,0.9113928005099297],[119,-56,64,0.8941466026008129],[119,-56,65,0.8947747722268105],[119,-56,66,0.8964313343167305],[119,-56,67,0.8985438719391823],[119,-56,68,0.9002494402229786],[119,-56,69,0.9009480252861977],[119,-56,70,0.9007409289479256],[119,-56,71,0.9001511260867119],[119,-56,72,0.8989419974386692],[119,-56,73,0.8972322233021259],[119,-56,74,0.8958089053630829],[119,-56,75,0.8951942808926105],[119,-56,76,0.895671121776104],[119,-56,77,0.8973564133048058],[119,-56,78,0.9002103172242641],[119,-56,79,0.9035803005099297],[119,-55,64,0.8863341026008129],[119,-55,65,0.8869622722268105],[119,-55,66,0.8886188343167305],[119,-55,67,0.8907313719391823],[119,-55,68,0.8924369402229786],[119,-55,69,0.8931355252861977],[119,-55,70,0.8929284289479256],[119,-55,71,0.8923386260867119],[119,-55,72,0.8911294974386692],[119,-55,73,0.8894197233021259],[119,-55,74,0.8879964053630829],[119,-55,75,0.8873817808926105],[119,-55,76,0.887858621776104],[119,-55,77,0.8895439133048058],[119,-55,78,0.8923978172242641],[119,-55,79,0.8957678005099297],[119,-54,64,0.8785216026008129],[119,-54,65,0.8791497722268105],[119,-54,66,0.8808063343167305],[119,-54,67,0.8829188719391823],[119,-54,68,0.8846244402229786],[119,-54,69,0.8853230252861977],[119,-54,70,0.8851159289479256],[119,-54,71,0.8845261260867119],[119,-54,72,0.8833169974386692],[119,-54,73,0.8816072233021259],[119,-54,74,0.8801839053630829],[119,-54,75,0.8795692808926105],[119,-54,76,0.880046121776104],[119,-54,77,0.8817314133048058],[119,-54,78,0.8845853172242641],[119,-54,79,0.8879553005099297],[119,-53,64,0.8707091026008129],[119,-53,65,0.8713372722268105],[119,-53,66,0.8729938343167305],[119,-53,67,0.8751063719391823],[119,-53,68,0.8768119402229786],[119,-53,69,0.8775105252861977],[119,-53,70,0.8773034289479256],[119,-53,71,0.8767136260867119],[119,-53,72,0.8755044974386692],[119,-53,73,0.8737947233021259],[119,-53,74,0.8723714053630829],[119,-53,75,0.8717567808926105],[119,-53,76,0.872233621776104],[119,-53,77,0.8739189133048058],[119,-53,78,0.8767728172242641],[119,-53,79,0.8801428005099297],[119,-52,64,0.8628966026008129],[119,-52,65,0.8635247722268105],[119,-52,66,0.8651813343167305],[119,-52,67,0.8672938719391823],[119,-52,68,0.8689994402229786],[119,-52,69,0.8696980252861977],[119,-52,70,0.8694909289479256],[119,-52,71,0.8689011260867119],[119,-52,72,0.8676919974386692],[119,-52,73,0.8659822233021259],[119,-52,74,0.8645589053630829],[119,-52,75,0.8639442808926105],[119,-52,76,0.864421121776104],[119,-52,77,0.8661064133048058],[119,-52,78,0.8689603172242641],[119,-52,79,0.8723303005099297],[119,-51,64,0.8550841026008129],[119,-51,65,0.8557122722268105],[119,-51,66,0.8573688343167305],[119,-51,67,0.8594813719391823],[119,-51,68,0.8611869402229786],[119,-51,69,0.8618855252861977],[119,-51,70,0.8616784289479256],[119,-51,71,0.8610886260867119],[119,-51,72,0.8598794974386692],[119,-51,73,0.8581697233021259],[119,-51,74,0.8567464053630829],[119,-51,75,0.8561317808926105],[119,-51,76,0.856608621776104],[119,-51,77,0.8582939133048058],[119,-51,78,0.8611478172242641],[119,-51,79,0.8645178005099297],[119,-50,64,0.8472716026008129],[119,-50,65,0.8478997722268105],[119,-50,66,0.8495563343167305],[119,-50,67,0.8516688719391823],[119,-50,68,0.8533744402229786],[119,-50,69,0.8540730252861977],[119,-50,70,0.8538659289479256],[119,-50,71,0.8532761260867119],[119,-50,72,0.8520669974386692],[119,-50,73,0.8503572233021259],[119,-50,74,0.8489339053630829],[119,-50,75,0.8483192808926105],[119,-50,76,0.848796121776104],[119,-50,77,0.8504814133048058],[119,-50,78,0.8533353172242641],[119,-50,79,0.8567053005099297],[119,-49,64,0.8394591026008129],[119,-49,65,0.8400872722268105],[119,-49,66,0.8417438343167305],[119,-49,67,0.8438563719391823],[119,-49,68,0.8455619402229786],[119,-49,69,0.8462605252861977],[119,-49,70,0.8460534289479256],[119,-49,71,0.8454636260867119],[119,-49,72,0.8442544974386692],[119,-49,73,0.8425447233021259],[119,-49,74,0.8411214053630829],[119,-49,75,0.8405067808926105],[119,-49,76,0.840983621776104],[119,-49,77,0.8426689133048058],[119,-49,78,0.8455228172242641],[119,-49,79,0.8488928005099297],[119,-48,64,0.8316466026008129],[119,-48,65,0.8322747722268105],[119,-48,66,0.8339313343167305],[119,-48,67,0.8360438719391823],[119,-48,68,0.8377494402229786],[119,-48,69,0.8384480252861977],[119,-48,70,0.8382409289479256],[119,-48,71,0.8376511260867119],[119,-48,72,0.8364419974386692],[119,-48,73,0.8347322233021259],[119,-48,74,0.8333089053630829],[119,-48,75,0.8326942808926105],[119,-48,76,0.833171121776104],[119,-48,77,0.8348564133048058],[119,-48,78,0.8377103172242641],[119,-48,79,0.8410803005099297],[119,-47,64,0.8238341026008129],[119,-47,65,0.8244622722268105],[119,-47,66,0.8261188343167305],[119,-47,67,0.8282313719391823],[119,-47,68,0.8299369402229786],[119,-47,69,0.8306355252861977],[119,-47,70,0.8304284289479256],[119,-47,71,0.8298386260867119],[119,-47,72,0.8286294974386692],[119,-47,73,0.8269197233021259],[119,-47,74,0.8254964053630829],[119,-47,75,0.8248817808926105],[119,-47,76,0.825358621776104],[119,-47,77,0.8270439133048058],[119,-47,78,0.8298978172242641],[119,-47,79,0.8332678005099297],[119,-46,64,0.8160216026008129],[119,-46,65,0.8166497722268105],[119,-46,66,0.8183063343167305],[119,-46,67,0.8204188719391823],[119,-46,68,0.8221244402229786],[119,-46,69,0.8228230252861977],[119,-46,70,0.8226159289479256],[119,-46,71,0.8220261260867119],[119,-46,72,0.8208169974386692],[119,-46,73,0.8191072233021259],[119,-46,74,0.8176839053630829],[119,-46,75,0.8170692808926105],[119,-46,76,0.817546121776104],[119,-46,77,0.8192314133048058],[119,-46,78,0.8220853172242641],[119,-46,79,0.8254553005099297],[119,-45,64,0.8082091026008129],[119,-45,65,0.8088372722268105],[119,-45,66,0.8104938343167305],[119,-45,67,0.8126063719391823],[119,-45,68,0.8143119402229786],[119,-45,69,0.8150105252861977],[119,-45,70,0.8148034289479256],[119,-45,71,0.8142136260867119],[119,-45,72,0.8130044974386692],[119,-45,73,0.8112947233021259],[119,-45,74,0.8098714053630829],[119,-45,75,0.8092567808926105],[119,-45,76,0.809733621776104],[119,-45,77,0.8114189133048058],[119,-45,78,0.8142728172242641],[119,-45,79,0.8176428005099297],[119,-44,64,0.8003966026008129],[119,-44,65,0.8010247722268105],[119,-44,66,0.8026813343167305],[119,-44,67,0.8047938719391823],[119,-44,68,0.8064994402229786],[119,-44,69,0.8071980252861977],[119,-44,70,0.8069909289479256],[119,-44,71,0.8064011260867119],[119,-44,72,0.8051919974386692],[119,-44,73,0.8034822233021259],[119,-44,74,0.8020589053630829],[119,-44,75,0.8014442808926105],[119,-44,76,0.801921121776104],[119,-44,77,0.8036064133048058],[119,-44,78,0.8064603172242641],[119,-44,79,0.8098303005099297],[119,-43,64,0.7925841026008129],[119,-43,65,0.7932122722268105],[119,-43,66,0.7948688343167305],[119,-43,67,0.7969813719391823],[119,-43,68,0.7986869402229786],[119,-43,69,0.7993855252861977],[119,-43,70,0.7991784289479256],[119,-43,71,0.7985886260867119],[119,-43,72,0.7973794974386692],[119,-43,73,0.7956697233021259],[119,-43,74,0.7942464053630829],[119,-43,75,0.7936317808926105],[119,-43,76,0.794108621776104],[119,-43,77,0.7957939133048058],[119,-43,78,0.7986478172242641],[119,-43,79,0.8020178005099297],[119,-42,64,0.7847716026008129],[119,-42,65,0.7853997722268105],[119,-42,66,0.7870563343167305],[119,-42,67,0.7891688719391823],[119,-42,68,0.7908744402229786],[119,-42,69,0.7915730252861977],[119,-42,70,0.7913659289479256],[119,-42,71,0.7907761260867119],[119,-42,72,0.7895669974386692],[119,-42,73,0.7878572233021259],[119,-42,74,0.7864339053630829],[119,-42,75,0.7858192808926105],[119,-42,76,0.786296121776104],[119,-42,77,0.7879814133048058],[119,-42,78,0.7908353172242641],[119,-42,79,0.7942053005099297],[119,-41,64,0.7769591026008129],[119,-41,65,0.7775872722268105],[119,-41,66,0.7792438343167305],[119,-41,67,0.7813563719391823],[119,-41,68,0.7830619402229786],[119,-41,69,0.7837605252861977],[119,-41,70,0.7835534289479256],[119,-41,71,0.7829636260867119],[119,-41,72,0.7817544974386692],[119,-41,73,0.7800447233021259],[119,-41,74,0.7786214053630829],[119,-41,75,0.7780067808926105],[119,-41,76,0.778483621776104],[119,-41,77,0.7801689133048058],[119,-41,78,0.7830228172242641],[119,-41,79,0.7863928005099297],[119,-40,64,0.7691466026008129],[119,-40,65,0.7697747722268105],[119,-40,66,0.7714313343167305],[119,-40,67,0.7735438719391823],[119,-40,68,0.7752494402229786],[119,-40,69,0.7759480252861977],[119,-40,70,0.7757409289479256],[119,-40,71,0.7751511260867119],[119,-40,72,0.7739419974386692],[119,-40,73,0.7722322233021259],[119,-40,74,0.7708089053630829],[119,-40,75,0.7701942808926105],[119,-40,76,0.770671121776104],[119,-40,77,0.7723564133048058],[119,-40,78,0.7752103172242641],[119,-40,79,0.7785803005099297],[119,-39,64,0.7613341026008129],[119,-39,65,0.7619622722268105],[119,-39,66,0.7636188343167305],[119,-39,67,0.7657313719391823],[119,-39,68,0.7674369402229786],[119,-39,69,0.7681355252861977],[119,-39,70,0.7679284289479256],[119,-39,71,0.7673386260867119],[119,-39,72,0.7661294974386692],[119,-39,73,0.7644197233021259],[119,-39,74,0.7629964053630829],[119,-39,75,0.7623817808926105],[119,-39,76,0.762858621776104],[119,-39,77,0.7645439133048058],[119,-39,78,0.7673978172242641],[119,-39,79,0.7707678005099297],[119,-38,64,0.7535216026008129],[119,-38,65,0.7541497722268105],[119,-38,66,0.7558063343167305],[119,-38,67,0.7579188719391823],[119,-38,68,0.7596244402229786],[119,-38,69,0.7603230252861977],[119,-38,70,0.7601159289479256],[119,-38,71,0.7595261260867119],[119,-38,72,0.7583169974386692],[119,-38,73,0.7566072233021259],[119,-38,74,0.7551839053630829],[119,-38,75,0.7545692808926105],[119,-38,76,0.755046121776104],[119,-38,77,0.7567314133048058],[119,-38,78,0.7595853172242641],[119,-38,79,0.7629553005099297],[119,-37,64,0.7457091026008129],[119,-37,65,0.7463372722268105],[119,-37,66,0.7479938343167305],[119,-37,67,0.7501063719391823],[119,-37,68,0.7518119402229786],[119,-37,69,0.7525105252861977],[119,-37,70,0.7523034289479256],[119,-37,71,0.7517136260867119],[119,-37,72,0.7505044974386692],[119,-37,73,0.7487947233021259],[119,-37,74,0.7473714053630829],[119,-37,75,0.7467567808926105],[119,-37,76,0.747233621776104],[119,-37,77,0.7489189133048058],[119,-37,78,0.7517728172242641],[119,-37,79,0.7551428005099297],[119,-36,64,0.7378966026008129],[119,-36,65,0.7385247722268105],[119,-36,66,0.7401813343167305],[119,-36,67,0.7422938719391823],[119,-36,68,0.7439994402229786],[119,-36,69,0.7446980252861977],[119,-36,70,0.7444909289479256],[119,-36,71,0.7439011260867119],[119,-36,72,0.7426919974386692],[119,-36,73,0.7409822233021259],[119,-36,74,0.7395589053630829],[119,-36,75,0.7389442808926105],[119,-36,76,0.739421121776104],[119,-36,77,0.7411064133048058],[119,-36,78,0.7439603172242641],[119,-36,79,0.7473303005099297],[119,-35,64,0.7300841026008129],[119,-35,65,0.7307122722268105],[119,-35,66,0.7323688343167305],[119,-35,67,0.7344813719391823],[119,-35,68,0.7361869402229786],[119,-35,69,0.7368855252861977],[119,-35,70,0.7366784289479256],[119,-35,71,0.7360886260867119],[119,-35,72,0.7348794974386692],[119,-35,73,0.7331697233021259],[119,-35,74,0.7317464053630829],[119,-35,75,0.7311317808926105],[119,-35,76,0.731608621776104],[119,-35,77,0.7332939133048058],[119,-35,78,0.7361478172242641],[119,-35,79,0.7395178005099297],[119,-34,64,0.7222716026008129],[119,-34,65,0.7228997722268105],[119,-34,66,0.7245563343167305],[119,-34,67,0.7266688719391823],[119,-34,68,0.7283744402229786],[119,-34,69,0.7290730252861977],[119,-34,70,0.7288659289479256],[119,-34,71,0.7282761260867119],[119,-34,72,0.7270669974386692],[119,-34,73,0.7253572233021259],[119,-34,74,0.7239339053630829],[119,-34,75,0.7233192808926105],[119,-34,76,0.723796121776104],[119,-34,77,0.7254814133048058],[119,-34,78,0.7283353172242641],[119,-34,79,0.7317053005099297],[119,-33,64,0.7144591026008129],[119,-33,65,0.7150872722268105],[119,-33,66,0.7167438343167305],[119,-33,67,0.7188563719391823],[119,-33,68,0.7205619402229786],[119,-33,69,0.7212605252861977],[119,-33,70,0.7210534289479256],[119,-33,71,0.7204636260867119],[119,-33,72,0.7192544974386692],[119,-33,73,0.7175447233021259],[119,-33,74,0.7161214053630829],[119,-33,75,0.7155067808926105],[119,-33,76,0.715983621776104],[119,-33,77,0.7176689133048058],[119,-33,78,0.7205228172242641],[119,-33,79,0.7238928005099297],[119,-32,64,0.7066466026008129],[119,-32,65,0.7072747722268105],[119,-32,66,0.7089313343167305],[119,-32,67,0.7110438719391823],[119,-32,68,0.7127494402229786],[119,-32,69,0.7134480252861977],[119,-32,70,0.7132409289479256],[119,-32,71,0.7126511260867119],[119,-32,72,0.7114419974386692],[119,-32,73,0.7097322233021259],[119,-32,74,0.7083089053630829],[119,-32,75,0.7076942808926105],[119,-32,76,0.708171121776104],[119,-32,77,0.7098564133048058],[119,-32,78,0.7127103172242641],[119,-32,79,0.7160803005099297],[119,-31,64,0.6988341026008129],[119,-31,65,0.6994622722268105],[119,-31,66,0.7011188343167305],[119,-31,67,0.7032313719391823],[119,-31,68,0.7049369402229786],[119,-31,69,0.7056355252861977],[119,-31,70,0.7054284289479256],[119,-31,71,0.7048386260867119],[119,-31,72,0.7036294974386692],[119,-31,73,0.7019197233021259],[119,-31,74,0.7004964053630829],[119,-31,75,0.6998817808926105],[119,-31,76,0.700358621776104],[119,-31,77,0.7020439133048058],[119,-31,78,0.7048978172242641],[119,-31,79,0.7082678005099297],[119,-30,64,0.6910216026008129],[119,-30,65,0.6916497722268105],[119,-30,66,0.6933063343167305],[119,-30,67,0.6954188719391823],[119,-30,68,0.6971244402229786],[119,-30,69,0.6978230252861977],[119,-30,70,0.6976159289479256],[119,-30,71,0.6970261260867119],[119,-30,72,0.6958169974386692],[119,-30,73,0.6941072233021259],[119,-30,74,0.6926839053630829],[119,-30,75,0.6920692808926105],[119,-30,76,0.692546121776104],[119,-30,77,0.6942314133048058],[119,-30,78,0.6970853172242641],[119,-30,79,0.7004553005099297],[119,-29,64,0.6832091026008129],[119,-29,65,0.6838372722268105],[119,-29,66,0.6854938343167305],[119,-29,67,0.6876063719391823],[119,-29,68,0.6893119402229786],[119,-29,69,0.6900105252861977],[119,-29,70,0.6898034289479256],[119,-29,71,0.6892136260867119],[119,-29,72,0.6880044974386692],[119,-29,73,0.6862947233021259],[119,-29,74,0.6848714053630829],[119,-29,75,0.6842567808926105],[119,-29,76,0.684733621776104],[119,-29,77,0.6864189133048058],[119,-29,78,0.6892728172242641],[119,-29,79,0.6926428005099297],[119,-28,64,0.6753966026008129],[119,-28,65,0.6760247722268105],[119,-28,66,0.6776813343167305],[119,-28,67,0.6797938719391823],[119,-28,68,0.6814994402229786],[119,-28,69,0.6821980252861977],[119,-28,70,0.6819909289479256],[119,-28,71,0.6814011260867119],[119,-28,72,0.6801919974386692],[119,-28,73,0.6784822233021259],[119,-28,74,0.6770589053630829],[119,-28,75,0.6764442808926105],[119,-28,76,0.676921121776104],[119,-28,77,0.6786064133048058],[119,-28,78,0.6814603172242641],[119,-28,79,0.6848303005099297],[119,-27,64,0.6675841026008129],[119,-27,65,0.6682122722268105],[119,-27,66,0.6698688343167305],[119,-27,67,0.6719813719391823],[119,-27,68,0.6736869402229786],[119,-27,69,0.6743855252861977],[119,-27,70,0.6741784289479256],[119,-27,71,0.6735886260867119],[119,-27,72,0.6723794974386692],[119,-27,73,0.6706697233021259],[119,-27,74,0.6692464053630829],[119,-27,75,0.6686317808926105],[119,-27,76,0.669108621776104],[119,-27,77,0.6707939133048058],[119,-27,78,0.6736478172242641],[119,-27,79,0.6770178005099297],[119,-26,64,0.6597716026008129],[119,-26,65,0.6603997722268105],[119,-26,66,0.6620563343167305],[119,-26,67,0.6641688719391823],[119,-26,68,0.6658744402229786],[119,-26,69,0.6665730252861977],[119,-26,70,0.6663659289479256],[119,-26,71,0.6657761260867119],[119,-26,72,0.6645669974386692],[119,-26,73,0.6628572233021259],[119,-26,74,0.6614339053630829],[119,-26,75,0.6608192808926105],[119,-26,76,0.661296121776104],[119,-26,77,0.6629814133048058],[119,-26,78,0.6658353172242641],[119,-26,79,0.6692053005099297],[119,-25,64,0.6519591026008129],[119,-25,65,0.6525872722268105],[119,-25,66,0.6542438343167305],[119,-25,67,0.6563563719391823],[119,-25,68,0.6580619402229786],[119,-25,69,0.6587605252861977],[119,-25,70,0.6585534289479256],[119,-25,71,0.6579636260867119],[119,-25,72,0.6567544974386692],[119,-25,73,0.6550447233021259],[119,-25,74,0.6536214053630829],[119,-25,75,0.6530067808926105],[119,-25,76,0.653483621776104],[119,-25,77,0.6551689133048058],[119,-25,78,0.6580228172242641],[119,-25,79,0.6613928005099297],[119,-24,64,0.6441466026008129],[119,-24,65,0.6447747722268105],[119,-24,66,0.6464313343167305],[119,-24,67,0.6485438719391823],[119,-24,68,0.6502494402229786],[119,-24,69,0.6509480252861977],[119,-24,70,0.6507409289479256],[119,-24,71,0.6501511260867119],[119,-24,72,0.6489419974386692],[119,-24,73,0.6472322233021259],[119,-24,74,0.6458089053630829],[119,-24,75,0.6451942808926105],[119,-24,76,0.645671121776104],[119,-24,77,0.6473564133048058],[119,-24,78,0.6502103172242641],[119,-24,79,0.6535803005099297],[119,-23,64,0.6363341026008129],[119,-23,65,0.6369622722268105],[119,-23,66,0.6386188343167305],[119,-23,67,0.6407313719391823],[119,-23,68,0.6424369402229786],[119,-23,69,0.6431355252861977],[119,-23,70,0.6429284289479256],[119,-23,71,0.6423386260867119],[119,-23,72,0.6411294974386692],[119,-23,73,0.6394197233021259],[119,-23,74,0.6379964053630829],[119,-23,75,0.6373817808926105],[119,-23,76,0.637858621776104],[119,-23,77,0.6395439133048058],[119,-23,78,0.6423978172242641],[119,-23,79,0.6457678005099297],[119,-22,64,0.6285216026008129],[119,-22,65,0.6291497722268105],[119,-22,66,0.6308063343167305],[119,-22,67,0.6329188719391823],[119,-22,68,0.6346244402229786],[119,-22,69,0.6353230252861977],[119,-22,70,0.6351159289479256],[119,-22,71,0.6345261260867119],[119,-22,72,0.6333169974386692],[119,-22,73,0.6316072233021259],[119,-22,74,0.6301839053630829],[119,-22,75,0.6295692808926105],[119,-22,76,0.630046121776104],[119,-22,77,0.6317314133048058],[119,-22,78,0.6345853172242641],[119,-22,79,0.6379553005099297],[119,-21,64,0.6207091026008129],[119,-21,65,0.6213372722268105],[119,-21,66,0.6229938343167305],[119,-21,67,0.6251063719391823],[119,-21,68,0.6268119402229786],[119,-21,69,0.6275105252861977],[119,-21,70,0.6273034289479256],[119,-21,71,0.6267136260867119],[119,-21,72,0.6255044974386692],[119,-21,73,0.6237947233021259],[119,-21,74,0.6223714053630829],[119,-21,75,0.6217567808926105],[119,-21,76,0.622233621776104],[119,-21,77,0.6239189133048058],[119,-21,78,0.6267728172242641],[119,-21,79,0.6301428005099297],[119,-20,64,0.6128966026008129],[119,-20,65,0.6135247722268105],[119,-20,66,0.6151813343167305],[119,-20,67,0.6172938719391823],[119,-20,68,0.6189994402229786],[119,-20,69,0.6196980252861977],[119,-20,70,0.6194909289479256],[119,-20,71,0.6189011260867119],[119,-20,72,0.6176919974386692],[119,-20,73,0.6159822233021259],[119,-20,74,0.6145589053630829],[119,-20,75,0.6139442808926105],[119,-20,76,0.614421121776104],[119,-20,77,0.6161064133048058],[119,-20,78,0.6189603172242641],[119,-20,79,0.6223303005099297],[119,-19,64,0.6050841026008129],[119,-19,65,0.6057122722268105],[119,-19,66,0.6073688343167305],[119,-19,67,0.6094813719391823],[119,-19,68,0.6111869402229786],[119,-19,69,0.6118855252861977],[119,-19,70,0.6116784289479256],[119,-19,71,0.6110886260867119],[119,-19,72,0.6098794974386692],[119,-19,73,0.6081697233021259],[119,-19,74,0.6067464053630829],[119,-19,75,0.6061317808926105],[119,-19,76,0.606608621776104],[119,-19,77,0.6082939133048058],[119,-19,78,0.6111478172242641],[119,-19,79,0.6145178005099297],[119,-18,64,0.5972716026008129],[119,-18,65,0.5978997722268105],[119,-18,66,0.5995563343167305],[119,-18,67,0.6016688719391823],[119,-18,68,0.6033744402229786],[119,-18,69,0.6040730252861977],[119,-18,70,0.6038659289479256],[119,-18,71,0.6032761260867119],[119,-18,72,0.6020669974386692],[119,-18,73,0.6003572233021259],[119,-18,74,0.5989339053630829],[119,-18,75,0.5983192808926105],[119,-18,76,0.598796121776104],[119,-18,77,0.6004814133048058],[119,-18,78,0.6033353172242641],[119,-18,79,0.6067053005099297],[119,-17,64,0.5894591026008129],[119,-17,65,0.5900872722268105],[119,-17,66,0.5917438343167305],[119,-17,67,0.5938563719391823],[119,-17,68,0.5955619402229786],[119,-17,69,0.5962605252861977],[119,-17,70,0.5960534289479256],[119,-17,71,0.5954636260867119],[119,-17,72,0.5942544974386692],[119,-17,73,0.5925447233021259],[119,-17,74,0.5911214053630829],[119,-17,75,0.5905067808926105],[119,-17,76,0.590983621776104],[119,-17,77,0.5926689133048058],[119,-17,78,0.5955228172242641],[119,-17,79,0.5988928005099297],[119,-16,64,0.5816466026008129],[119,-16,65,0.5822747722268105],[119,-16,66,0.5839313343167305],[119,-16,67,0.5860438719391823],[119,-16,68,0.5877494402229786],[119,-16,69,0.5884480252861977],[119,-16,70,0.5882409289479256],[119,-16,71,0.5876511260867119],[119,-16,72,0.5864419974386692],[119,-16,73,0.5847322233021259],[119,-16,74,0.5833089053630829],[119,-16,75,0.5826942808926105],[119,-16,76,0.583171121776104],[119,-16,77,0.5848564133048058],[119,-16,78,0.5877103172242641],[119,-16,79,0.5910803005099297],[119,-15,64,0.5738341026008129],[119,-15,65,0.5744622722268105],[119,-15,66,0.5761188343167305],[119,-15,67,0.5782313719391823],[119,-15,68,0.5799369402229786],[119,-15,69,0.5806355252861977],[119,-15,70,0.5804284289479256],[119,-15,71,0.5798386260867119],[119,-15,72,0.5786294974386692],[119,-15,73,0.5769197233021259],[119,-15,74,0.5754964053630829],[119,-15,75,0.5748817808926105],[119,-15,76,0.575358621776104],[119,-15,77,0.5770439133048058],[119,-15,78,0.5798978172242641],[119,-15,79,0.5832678005099297],[119,-14,64,0.5660216026008129],[119,-14,65,0.5666497722268105],[119,-14,66,0.5683063343167305],[119,-14,67,0.5704188719391823],[119,-14,68,0.5721244402229786],[119,-14,69,0.5728230252861977],[119,-14,70,0.5726159289479256],[119,-14,71,0.5720261260867119],[119,-14,72,0.5708169974386692],[119,-14,73,0.5691072233021259],[119,-14,74,0.5676839053630829],[119,-14,75,0.5670692808926105],[119,-14,76,0.567546121776104],[119,-14,77,0.5692314133048058],[119,-14,78,0.5720853172242641],[119,-14,79,0.5754553005099297],[119,-13,64,0.5582091026008129],[119,-13,65,0.5588372722268105],[119,-13,66,0.5604938343167305],[119,-13,67,0.5626063719391823],[119,-13,68,0.5643119402229786],[119,-13,69,0.5650105252861977],[119,-13,70,0.5648034289479256],[119,-13,71,0.5642136260867119],[119,-13,72,0.5630044974386692],[119,-13,73,0.5612947233021259],[119,-13,74,0.5598714053630829],[119,-13,75,0.5592567808926105],[119,-13,76,0.559733621776104],[119,-13,77,0.5614189133048058],[119,-13,78,0.5642728172242641],[119,-13,79,0.5676428005099297],[119,-12,64,0.5503966026008129],[119,-12,65,0.5510247722268105],[119,-12,66,0.5526813343167305],[119,-12,67,0.5547938719391823],[119,-12,68,0.5564994402229786],[119,-12,69,0.5571980252861977],[119,-12,70,0.5569909289479256],[119,-12,71,0.5564011260867119],[119,-12,72,0.5551919974386692],[119,-12,73,0.5534822233021259],[119,-12,74,0.5520589053630829],[119,-12,75,0.5514442808926105],[119,-12,76,0.551921121776104],[119,-12,77,0.5536064133048058],[119,-12,78,0.5564603172242641],[119,-12,79,0.5598303005099297],[119,-11,64,0.5425841026008129],[119,-11,65,0.5432122722268105],[119,-11,66,0.5448688343167305],[119,-11,67,0.5469813719391823],[119,-11,68,0.5486869402229786],[119,-11,69,0.5493855252861977],[119,-11,70,0.5491784289479256],[119,-11,71,0.5485886260867119],[119,-11,72,0.5473794974386692],[119,-11,73,0.5456697233021259],[119,-11,74,0.5442464053630829],[119,-11,75,0.5436317808926105],[119,-11,76,0.544108621776104],[119,-11,77,0.5457939133048058],[119,-11,78,0.5486478172242641],[119,-11,79,0.5520178005099297],[119,-10,64,0.5347716026008129],[119,-10,65,0.5353997722268105],[119,-10,66,0.5370563343167305],[119,-10,67,0.5391688719391823],[119,-10,68,0.5408744402229786],[119,-10,69,0.5415730252861977],[119,-10,70,0.5413659289479256],[119,-10,71,0.5407761260867119],[119,-10,72,0.5395669974386692],[119,-10,73,0.5378572233021259],[119,-10,74,0.5364339053630829],[119,-10,75,0.5358192808926105],[119,-10,76,0.536296121776104],[119,-10,77,0.5379814133048058],[119,-10,78,0.5408353172242641],[119,-10,79,0.5442053005099297],[119,-9,64,0.5269591026008129],[119,-9,65,0.5275872722268105],[119,-9,66,0.5292438343167305],[119,-9,67,0.5313563719391823],[119,-9,68,0.5330619402229786],[119,-9,69,0.5337605252861977],[119,-9,70,0.5335534289479256],[119,-9,71,0.5329636260867119],[119,-9,72,0.5317544974386692],[119,-9,73,0.5300447233021259],[119,-9,74,0.5286214053630829],[119,-9,75,0.5280067808926105],[119,-9,76,0.528483621776104],[119,-9,77,0.5301689133048058],[119,-9,78,0.5330228172242641],[119,-9,79,0.5363928005099297],[119,-8,64,0.5191466026008129],[119,-8,65,0.5197747722268105],[119,-8,66,0.5214313343167305],[119,-8,67,0.5235438719391823],[119,-8,68,0.5252494402229786],[119,-8,69,0.5259480252861977],[119,-8,70,0.5257409289479256],[119,-8,71,0.5251511260867119],[119,-8,72,0.5239419974386692],[119,-8,73,0.5222322233021259],[119,-8,74,0.5208089053630829],[119,-8,75,0.5201942808926105],[119,-8,76,0.520671121776104],[119,-8,77,0.5223564133048058],[119,-8,78,0.5252103172242641],[119,-8,79,0.5285803005099297],[119,-7,64,0.5113341026008129],[119,-7,65,0.5119622722268105],[119,-7,66,0.5136188343167305],[119,-7,67,0.5157313719391823],[119,-7,68,0.5174369402229786],[119,-7,69,0.5181355252861977],[119,-7,70,0.5179284289479256],[119,-7,71,0.5173386260867119],[119,-7,72,0.5161294974386692],[119,-7,73,0.5144197233021259],[119,-7,74,0.5129964053630829],[119,-7,75,0.5123817808926105],[119,-7,76,0.512858621776104],[119,-7,77,0.5145439133048058],[119,-7,78,0.5173978172242641],[119,-7,79,0.5207678005099297],[119,-6,64,0.5035216026008129],[119,-6,65,0.5041497722268105],[119,-6,66,0.5058063343167305],[119,-6,67,0.5079188719391823],[119,-6,68,0.5096244402229786],[119,-6,69,0.5103230252861977],[119,-6,70,0.5101159289479256],[119,-6,71,0.5095261260867119],[119,-6,72,0.5083169974386692],[119,-6,73,0.5066072233021259],[119,-6,74,0.5051839053630829],[119,-6,75,0.5045692808926105],[119,-6,76,0.505046121776104],[119,-6,77,0.5067314133048058],[119,-6,78,0.5095853172242641],[119,-6,79,0.5129553005099297],[119,-5,64,0.4957091026008129],[119,-5,65,0.49633727222681046],[119,-5,66,0.4979938343167305],[119,-5,67,0.5001063719391823],[119,-5,68,0.5018119402229786],[119,-5,69,0.5025105252861977],[119,-5,70,0.5023034289479256],[119,-5,71,0.5017136260867119],[119,-5,72,0.5005044974386692],[119,-5,73,0.49879472330212593],[119,-5,74,0.4973714053630829],[119,-5,75,0.49675678089261055],[119,-5,76,0.497233621776104],[119,-5,77,0.49891891330480576],[119,-5,78,0.5017728172242641],[119,-5,79,0.5051428005099297],[119,-4,64,0.4878966026008129],[119,-4,65,0.48852477222681046],[119,-4,66,0.4901813343167305],[119,-4,67,0.4922938719391823],[119,-4,68,0.4939994402229786],[119,-4,69,0.49469802528619766],[119,-4,70,0.49449092894792557],[119,-4,71,0.4939011260867119],[119,-4,72,0.4926919974386692],[119,-4,73,0.49098222330212593],[119,-4,74,0.4895589053630829],[119,-4,75,0.48894428089261055],[119,-4,76,0.489421121776104],[119,-4,77,0.49110641330480576],[119,-4,78,0.49396031722426414],[119,-4,79,0.49733030050992966],[119,-3,64,0.4800841026008129],[119,-3,65,0.48071227222681046],[119,-3,66,0.4823688343167305],[119,-3,67,0.4844813719391823],[119,-3,68,0.4861869402229786],[119,-3,69,0.48688552528619766],[119,-3,70,0.48667842894792557],[119,-3,71,0.4860886260867119],[119,-3,72,0.4848794974386692],[119,-3,73,0.48316972330212593],[119,-3,74,0.4817464053630829],[119,-3,75,0.48113178089261055],[119,-3,76,0.481608621776104],[119,-3,77,0.48329391330480576],[119,-3,78,0.48614781722426414],[119,-3,79,0.48951780050992966],[119,-2,64,0.4722716026008129],[119,-2,65,0.47289977222681046],[119,-2,66,0.4745563343167305],[119,-2,67,0.4766688719391823],[119,-2,68,0.4783744402229786],[119,-2,69,0.47907302528619766],[119,-2,70,0.47886592894792557],[119,-2,71,0.4782761260867119],[119,-2,72,0.4770669974386692],[119,-2,73,0.47535722330212593],[119,-2,74,0.4739339053630829],[119,-2,75,0.47331928089261055],[119,-2,76,0.473796121776104],[119,-2,77,0.47548141330480576],[119,-2,78,0.47833531722426414],[119,-2,79,0.48170530050992966],[119,-1,64,0.4644591026008129],[119,-1,65,0.46508727222681046],[119,-1,66,0.4667438343167305],[119,-1,67,0.4688563719391823],[119,-1,68,0.4705619402229786],[119,-1,69,0.47126052528619766],[119,-1,70,0.47105342894792557],[119,-1,71,0.4704636260867119],[119,-1,72,0.4692544974386692],[119,-1,73,0.46754472330212593],[119,-1,74,0.4661214053630829],[119,-1,75,0.46550678089261055],[119,-1,76,0.465983621776104],[119,-1,77,0.46766891330480576],[119,-1,78,0.47052281722426414],[119,-1,79,0.47389280050992966],[119,0,64,0.4566466026008129],[119,0,65,0.45727477222681046],[119,0,66,0.4589313343167305],[119,0,67,0.4610438719391823],[119,0,68,0.4627494402229786],[119,0,69,0.46344802528619766],[119,0,70,0.46324092894792557],[119,0,71,0.4626511260867119],[119,0,72,0.4614419974386692],[119,0,73,0.45973222330212593],[119,0,74,0.4583089053630829],[119,0,75,0.45769428089261055],[119,0,76,0.458171121776104],[119,0,77,0.45985641330480576],[119,0,78,0.46271031722426414],[119,0,79,0.46608030050992966],[119,1,64,0.4488341026008129],[119,1,65,0.44946227222681046],[119,1,66,0.4511188343167305],[119,1,67,0.4532313719391823],[119,1,68,0.4549369402229786],[119,1,69,0.45563552528619766],[119,1,70,0.45542842894792557],[119,1,71,0.4548386260867119],[119,1,72,0.4536294974386692],[119,1,73,0.45191972330212593],[119,1,74,0.4504964053630829],[119,1,75,0.44988178089261055],[119,1,76,0.450358621776104],[119,1,77,0.45204391330480576],[119,1,78,0.45489781722426414],[119,1,79,0.45826780050992966],[119,2,64,0.4410216026008129],[119,2,65,0.44164977222681046],[119,2,66,0.4433063343167305],[119,2,67,0.4454188719391823],[119,2,68,0.4471244402229786],[119,2,69,0.44782302528619766],[119,2,70,0.44761592894792557],[119,2,71,0.4470261260867119],[119,2,72,0.4458169974386692],[119,2,73,0.44410722330212593],[119,2,74,0.4426839053630829],[119,2,75,0.44206928089261055],[119,2,76,0.442546121776104],[119,2,77,0.44423141330480576],[119,2,78,0.44708531722426414],[119,2,79,0.45045530050992966],[119,3,64,0.4332091026008129],[119,3,65,0.43383727222681046],[119,3,66,0.4354938343167305],[119,3,67,0.4376063719391823],[119,3,68,0.4393119402229786],[119,3,69,0.44001052528619766],[119,3,70,0.43980342894792557],[119,3,71,0.4392136260867119],[119,3,72,0.4380044974386692],[119,3,73,0.43629472330212593],[119,3,74,0.4348714053630829],[119,3,75,0.43425678089261055],[119,3,76,0.434733621776104],[119,3,77,0.43641891330480576],[119,3,78,0.43927281722426414],[119,3,79,0.44264280050992966],[119,4,64,0.4253966026008129],[119,4,65,0.42602477222681046],[119,4,66,0.4276813343167305],[119,4,67,0.4297938719391823],[119,4,68,0.4314994402229786],[119,4,69,0.43219802528619766],[119,4,70,0.43199092894792557],[119,4,71,0.4314011260867119],[119,4,72,0.4301919974386692],[119,4,73,0.42848222330212593],[119,4,74,0.4270589053630829],[119,4,75,0.42644428089261055],[119,4,76,0.426921121776104],[119,4,77,0.42860641330480576],[119,4,78,0.43146031722426414],[119,4,79,0.43483030050992966],[119,5,64,0.4175841026008129],[119,5,65,0.41821227222681046],[119,5,66,0.4198688343167305],[119,5,67,0.4219813719391823],[119,5,68,0.4236869402229786],[119,5,69,0.42438552528619766],[119,5,70,0.42417842894792557],[119,5,71,0.4235886260867119],[119,5,72,0.4223794974386692],[119,5,73,0.42066972330212593],[119,5,74,0.4192464053630829],[119,5,75,0.41863178089261055],[119,5,76,0.419108621776104],[119,5,77,0.42079391330480576],[119,5,78,0.42364781722426414],[119,5,79,0.42701780050992966],[119,6,64,0.4097716026008129],[119,6,65,0.41039977222681046],[119,6,66,0.4120563343167305],[119,6,67,0.4141688719391823],[119,6,68,0.4158744402229786],[119,6,69,0.41657302528619766],[119,6,70,0.41636592894792557],[119,6,71,0.4157761260867119],[119,6,72,0.4145669974386692],[119,6,73,0.41285722330212593],[119,6,74,0.4114339053630829],[119,6,75,0.41081928089261055],[119,6,76,0.411296121776104],[119,6,77,0.41298141330480576],[119,6,78,0.41583531722426414],[119,6,79,0.41920530050992966],[119,7,64,0.4019591026008129],[119,7,65,0.40258727222681046],[119,7,66,0.4042438343167305],[119,7,67,0.4063563719391823],[119,7,68,0.4080619402229786],[119,7,69,0.40876052528619766],[119,7,70,0.40855342894792557],[119,7,71,0.4079636260867119],[119,7,72,0.4067544974386692],[119,7,73,0.40504472330212593],[119,7,74,0.4036214053630829],[119,7,75,0.40300678089261055],[119,7,76,0.403483621776104],[119,7,77,0.40516891330480576],[119,7,78,0.40802281722426414],[119,7,79,0.41139280050992966],[119,8,64,0.3941466026008129],[119,8,65,0.39477477222681046],[119,8,66,0.3964313343167305],[119,8,67,0.3985438719391823],[119,8,68,0.4002494402229786],[119,8,69,0.40094802528619766],[119,8,70,0.40074092894792557],[119,8,71,0.4001511260867119],[119,8,72,0.3989419974386692],[119,8,73,0.39723222330212593],[119,8,74,0.3958089053630829],[119,8,75,0.39519428089261055],[119,8,76,0.395671121776104],[119,8,77,0.39735641330480576],[119,8,78,0.40021031722426414],[119,8,79,0.40358030050992966],[119,9,64,0.3863341026008129],[119,9,65,0.38696227222681046],[119,9,66,0.3886188343167305],[119,9,67,0.3907313719391823],[119,9,68,0.3924369402229786],[119,9,69,0.39313552528619766],[119,9,70,0.39292842894792557],[119,9,71,0.3923386260867119],[119,9,72,0.3911294974386692],[119,9,73,0.38941972330212593],[119,9,74,0.3879964053630829],[119,9,75,0.38738178089261055],[119,9,76,0.387858621776104],[119,9,77,0.38954391330480576],[119,9,78,0.39239781722426414],[119,9,79,0.39576780050992966],[119,10,64,0.3785216026008129],[119,10,65,0.37914977222681046],[119,10,66,0.3808063343167305],[119,10,67,0.3829188719391823],[119,10,68,0.3846244402229786],[119,10,69,0.38532302528619766],[119,10,70,0.38511592894792557],[119,10,71,0.3845261260867119],[119,10,72,0.3833169974386692],[119,10,73,0.38160722330212593],[119,10,74,0.3801839053630829],[119,10,75,0.37956928089261055],[119,10,76,0.380046121776104],[119,10,77,0.38173141330480576],[119,10,78,0.38458531722426414],[119,10,79,0.38795530050992966],[119,11,64,0.3707091026008129],[119,11,65,0.37133727222681046],[119,11,66,0.3729938343167305],[119,11,67,0.3751063719391823],[119,11,68,0.3768119402229786],[119,11,69,0.37751052528619766],[119,11,70,0.37730342894792557],[119,11,71,0.3767136260867119],[119,11,72,0.3755044974386692],[119,11,73,0.37379472330212593],[119,11,74,0.3723714053630829],[119,11,75,0.37175678089261055],[119,11,76,0.372233621776104],[119,11,77,0.37391891330480576],[119,11,78,0.37677281722426414],[119,11,79,0.38014280050992966],[119,12,64,0.3628966026008129],[119,12,65,0.36352477222681046],[119,12,66,0.3651813343167305],[119,12,67,0.3672938719391823],[119,12,68,0.3689994402229786],[119,12,69,0.36969802528619766],[119,12,70,0.36949092894792557],[119,12,71,0.3689011260867119],[119,12,72,0.3676919974386692],[119,12,73,0.36598222330212593],[119,12,74,0.3645589053630829],[119,12,75,0.36394428089261055],[119,12,76,0.364421121776104],[119,12,77,0.36610641330480576],[119,12,78,0.36896031722426414],[119,12,79,0.37233030050992966],[119,13,64,0.3550841026008129],[119,13,65,0.35571227222681046],[119,13,66,0.3573688343167305],[119,13,67,0.3594813719391823],[119,13,68,0.3611869402229786],[119,13,69,0.36188552528619766],[119,13,70,0.36167842894792557],[119,13,71,0.3610886260867119],[119,13,72,0.3598794974386692],[119,13,73,0.35816972330212593],[119,13,74,0.3567464053630829],[119,13,75,0.35613178089261055],[119,13,76,0.356608621776104],[119,13,77,0.35829391330480576],[119,13,78,0.36114781722426414],[119,13,79,0.36451780050992966],[119,14,64,0.3472716026008129],[119,14,65,0.34789977222681046],[119,14,66,0.3495563343167305],[119,14,67,0.3516688719391823],[119,14,68,0.3533744402229786],[119,14,69,0.35407302528619766],[119,14,70,0.35386592894792557],[119,14,71,0.3532761260867119],[119,14,72,0.3520669974386692],[119,14,73,0.35035722330212593],[119,14,74,0.3489339053630829],[119,14,75,0.34831928089261055],[119,14,76,0.348796121776104],[119,14,77,0.35048141330480576],[119,14,78,0.35333531722426414],[119,14,79,0.35670530050992966],[119,15,64,0.3394591026008129],[119,15,65,0.34008727222681046],[119,15,66,0.3417438343167305],[119,15,67,0.3438563719391823],[119,15,68,0.3455619402229786],[119,15,69,0.34626052528619766],[119,15,70,0.34605342894792557],[119,15,71,0.3454636260867119],[119,15,72,0.3442544974386692],[119,15,73,0.34254472330212593],[119,15,74,0.3411214053630829],[119,15,75,0.34050678089261055],[119,15,76,0.340983621776104],[119,15,77,0.34266891330480576],[119,15,78,0.34552281722426414],[119,15,79,0.34889280050992966],[119,16,64,0.3316466026008129],[119,16,65,0.33227477222681046],[119,16,66,0.3339313343167305],[119,16,67,0.3360438719391823],[119,16,68,0.3377494402229786],[119,16,69,0.33844802528619766],[119,16,70,0.33824092894792557],[119,16,71,0.3376511260867119],[119,16,72,0.3364419974386692],[119,16,73,0.33473222330212593],[119,16,74,0.3333089053630829],[119,16,75,0.33269428089261055],[119,16,76,0.333171121776104],[119,16,77,0.33485641330480576],[119,16,78,0.33771031722426414],[119,16,79,0.34108030050992966],[119,17,64,0.3238341026008129],[119,17,65,0.32446227222681046],[119,17,66,0.3261188343167305],[119,17,67,0.3282313719391823],[119,17,68,0.3299369402229786],[119,17,69,0.33063552528619766],[119,17,70,0.33042842894792557],[119,17,71,0.3298386260867119],[119,17,72,0.3286294974386692],[119,17,73,0.32691972330212593],[119,17,74,0.3254964053630829],[119,17,75,0.32488178089261055],[119,17,76,0.325358621776104],[119,17,77,0.32704391330480576],[119,17,78,0.32989781722426414],[119,17,79,0.33326780050992966],[119,18,64,0.3160216026008129],[119,18,65,0.31664977222681046],[119,18,66,0.3183063343167305],[119,18,67,0.3204188719391823],[119,18,68,0.3221244402229786],[119,18,69,0.32282302528619766],[119,18,70,0.32261592894792557],[119,18,71,0.3220261260867119],[119,18,72,0.3208169974386692],[119,18,73,0.31910722330212593],[119,18,74,0.3176839053630829],[119,18,75,0.31706928089261055],[119,18,76,0.317546121776104],[119,18,77,0.31923141330480576],[119,18,78,0.32208531722426414],[119,18,79,0.32545530050992966],[119,19,64,0.3082091026008129],[119,19,65,0.30883727222681046],[119,19,66,0.3104938343167305],[119,19,67,0.3126063719391823],[119,19,68,0.3143119402229786],[119,19,69,0.31501052528619766],[119,19,70,0.31480342894792557],[119,19,71,0.3142136260867119],[119,19,72,0.3130044974386692],[119,19,73,0.31129472330212593],[119,19,74,0.3098714053630829],[119,19,75,0.30925678089261055],[119,19,76,0.309733621776104],[119,19,77,0.31141891330480576],[119,19,78,0.31427281722426414],[119,19,79,0.31764280050992966],[119,20,64,0.3003966026008129],[119,20,65,0.30102477222681046],[119,20,66,0.3026813343167305],[119,20,67,0.3047938719391823],[119,20,68,0.3064994402229786],[119,20,69,0.30719802528619766],[119,20,70,0.30699092894792557],[119,20,71,0.3064011260867119],[119,20,72,0.3051919974386692],[119,20,73,0.30348222330212593],[119,20,74,0.3020589053630829],[119,20,75,0.30144428089261055],[119,20,76,0.301921121776104],[119,20,77,0.30360641330480576],[119,20,78,0.30646031722426414],[119,20,79,0.30983030050992966],[119,21,64,0.2925841026008129],[119,21,65,0.29321227222681046],[119,21,66,0.2948688343167305],[119,21,67,0.2969813719391823],[119,21,68,0.2986869402229786],[119,21,69,0.29938552528619766],[119,21,70,0.29917842894792557],[119,21,71,0.2985886260867119],[119,21,72,0.2973794974386692],[119,21,73,0.29566972330212593],[119,21,74,0.2942464053630829],[119,21,75,0.29363178089261055],[119,21,76,0.294108621776104],[119,21,77,0.29579391330480576],[119,21,78,0.29864781722426414],[119,21,79,0.30201780050992966],[119,22,64,0.2847716026008129],[119,22,65,0.28539977222681046],[119,22,66,0.2870563343167305],[119,22,67,0.2891688719391823],[119,22,68,0.2908744402229786],[119,22,69,0.29157302528619766],[119,22,70,0.29136592894792557],[119,22,71,0.2907761260867119],[119,22,72,0.2895669974386692],[119,22,73,0.28785722330212593],[119,22,74,0.2864339053630829],[119,22,75,0.28581928089261055],[119,22,76,0.286296121776104],[119,22,77,0.28798141330480576],[119,22,78,0.29083531722426414],[119,22,79,0.29420530050992966],[119,23,64,0.2769591026008129],[119,23,65,0.27758727222681046],[119,23,66,0.2792438343167305],[119,23,67,0.2813563719391823],[119,23,68,0.2830619402229786],[119,23,69,0.28376052528619766],[119,23,70,0.28355342894792557],[119,23,71,0.2829636260867119],[119,23,72,0.2817544974386692],[119,23,73,0.28004472330212593],[119,23,74,0.2786214053630829],[119,23,75,0.27800678089261055],[119,23,76,0.278483621776104],[119,23,77,0.28016891330480576],[119,23,78,0.28302281722426414],[119,23,79,0.28639280050992966],[119,24,64,0.2691466026008129],[119,24,65,0.26977477222681046],[119,24,66,0.2714313343167305],[119,24,67,0.2735438719391823],[119,24,68,0.2752494402229786],[119,24,69,0.27594802528619766],[119,24,70,0.27574092894792557],[119,24,71,0.2751511260867119],[119,24,72,0.2739419974386692],[119,24,73,0.27223222330212593],[119,24,74,0.2708089053630829],[119,24,75,0.27019428089261055],[119,24,76,0.270671121776104],[119,24,77,0.27235641330480576],[119,24,78,0.27521031722426414],[119,24,79,0.27858030050992966],[119,25,64,0.2613341026008129],[119,25,65,0.26196227222681046],[119,25,66,0.2636188343167305],[119,25,67,0.2657313719391823],[119,25,68,0.2674369402229786],[119,25,69,0.26813552528619766],[119,25,70,0.26792842894792557],[119,25,71,0.2673386260867119],[119,25,72,0.2661294974386692],[119,25,73,0.26441972330212593],[119,25,74,0.2629964053630829],[119,25,75,0.26238178089261055],[119,25,76,0.262858621776104],[119,25,77,0.26454391330480576],[119,25,78,0.26739781722426414],[119,25,79,0.27076780050992966],[119,26,64,0.2535216026008129],[119,26,65,0.25414977222681046],[119,26,66,0.2558063343167305],[119,26,67,0.2579188719391823],[119,26,68,0.2596244402229786],[119,26,69,0.26032302528619766],[119,26,70,0.26011592894792557],[119,26,71,0.2595261260867119],[119,26,72,0.2583169974386692],[119,26,73,0.25660722330212593],[119,26,74,0.2551839053630829],[119,26,75,0.25456928089261055],[119,26,76,0.255046121776104],[119,26,77,0.25673141330480576],[119,26,78,0.25958531722426414],[119,26,79,0.26295530050992966],[119,27,64,0.2457091026008129],[119,27,65,0.24633727222681046],[119,27,66,0.2479938343167305],[119,27,67,0.2501063719391823],[119,27,68,0.2518119402229786],[119,27,69,0.25251052528619766],[119,27,70,0.25230342894792557],[119,27,71,0.2517136260867119],[119,27,72,0.2505044974386692],[119,27,73,0.24879472330212593],[119,27,74,0.24737140536308289],[119,27,75,0.24675678089261055],[119,27,76,0.24723362177610397],[119,27,77,0.24891891330480576],[119,27,78,0.25177281722426414],[119,27,79,0.25514280050992966],[119,28,64,0.2378966026008129],[119,28,65,0.23852477222681046],[119,28,66,0.2401813343167305],[119,28,67,0.24229387193918228],[119,28,68,0.2439994402229786],[119,28,69,0.24469802528619766],[119,28,70,0.24449092894792557],[119,28,71,0.24390112608671188],[119,28,72,0.2426919974386692],[119,28,73,0.24098222330212593],[119,28,74,0.23955890536308289],[119,28,75,0.23894428089261055],[119,28,76,0.23942112177610397],[119,28,77,0.24110641330480576],[119,28,78,0.24396031722426414],[119,28,79,0.24733030050992966],[119,29,64,0.2300841026008129],[119,29,65,0.23071227222681046],[119,29,66,0.2323688343167305],[119,29,67,0.23448137193918228],[119,29,68,0.2361869402229786],[119,29,69,0.23688552528619766],[119,29,70,0.23667842894792557],[119,29,71,0.23608862608671188],[119,29,72,0.2348794974386692],[119,29,73,0.23316972330212593],[119,29,74,0.23174640536308289],[119,29,75,0.23113178089261055],[119,29,76,0.23160862177610397],[119,29,77,0.23329391330480576],[119,29,78,0.23614781722426414],[119,29,79,0.23951780050992966],[119,30,64,0.2222716026008129],[119,30,65,0.22289977222681046],[119,30,66,0.2245563343167305],[119,30,67,0.22666887193918228],[119,30,68,0.2283744402229786],[119,30,69,0.22907302528619766],[119,30,70,0.22886592894792557],[119,30,71,0.22827612608671188],[119,30,72,0.2270669974386692],[119,30,73,0.22535722330212593],[119,30,74,0.22393390536308289],[119,30,75,0.22331928089261055],[119,30,76,0.22379612177610397],[119,30,77,0.22548141330480576],[119,30,78,0.22833531722426414],[119,30,79,0.23170530050992966],[119,31,64,0.2144591026008129],[119,31,65,0.21508727222681046],[119,31,66,0.2167438343167305],[119,31,67,0.21885637193918228],[119,31,68,0.2205619402229786],[119,31,69,0.22126052528619766],[119,31,70,0.22105342894792557],[119,31,71,0.22046362608671188],[119,31,72,0.2192544974386692],[119,31,73,0.21754472330212593],[119,31,74,0.21612140536308289],[119,31,75,0.21550678089261055],[119,31,76,0.21598362177610397],[119,31,77,0.21766891330480576],[119,31,78,0.22052281722426414],[119,31,79,0.22389280050992966],[119,32,64,0.2066466026008129],[119,32,65,0.20727477222681046],[119,32,66,0.2089313343167305],[119,32,67,0.21104387193918228],[119,32,68,0.2127494402229786],[119,32,69,0.21344802528619766],[119,32,70,0.21324092894792557],[119,32,71,0.21265112608671188],[119,32,72,0.2114419974386692],[119,32,73,0.20973222330212593],[119,32,74,0.20830890536308289],[119,32,75,0.20769428089261055],[119,32,76,0.20817112177610397],[119,32,77,0.20985641330480576],[119,32,78,0.21271031722426414],[119,32,79,0.21608030050992966],[119,33,64,0.1988341026008129],[119,33,65,0.19946227222681046],[119,33,66,0.2011188343167305],[119,33,67,0.20323137193918228],[119,33,68,0.2049369402229786],[119,33,69,0.20563552528619766],[119,33,70,0.20542842894792557],[119,33,71,0.20483862608671188],[119,33,72,0.2036294974386692],[119,33,73,0.20191972330212593],[119,33,74,0.20049640536308289],[119,33,75,0.19988178089261055],[119,33,76,0.20035862177610397],[119,33,77,0.20204391330480576],[119,33,78,0.20489781722426414],[119,33,79,0.20826780050992966],[119,34,64,0.1910216026008129],[119,34,65,0.19164977222681046],[119,34,66,0.1933063343167305],[119,34,67,0.19541887193918228],[119,34,68,0.1971244402229786],[119,34,69,0.19782302528619766],[119,34,70,0.19761592894792557],[119,34,71,0.19702612608671188],[119,34,72,0.1958169974386692],[119,34,73,0.19410722330212593],[119,34,74,0.19268390536308289],[119,34,75,0.19206928089261055],[119,34,76,0.19254612177610397],[119,34,77,0.19423141330480576],[119,34,78,0.19708531722426414],[119,34,79,0.20045530050992966],[119,35,64,0.1832091026008129],[119,35,65,0.18383727222681046],[119,35,66,0.1854938343167305],[119,35,67,0.18760637193918228],[119,35,68,0.1893119402229786],[119,35,69,0.19001052528619766],[119,35,70,0.18980342894792557],[119,35,71,0.18921362608671188],[119,35,72,0.1880044974386692],[119,35,73,0.18629472330212593],[119,35,74,0.18487140536308289],[119,35,75,0.18425678089261055],[119,35,76,0.18473362177610397],[119,35,77,0.18641891330480576],[119,35,78,0.18927281722426414],[119,35,79,0.19264280050992966],[119,36,64,0.1753966026008129],[119,36,65,0.17602477222681046],[119,36,66,0.1776813343167305],[119,36,67,0.17979387193918228],[119,36,68,0.1814994402229786],[119,36,69,0.18219802528619766],[119,36,70,0.18199092894792557],[119,36,71,0.18140112608671188],[119,36,72,0.1801919974386692],[119,36,73,0.17848222330212593],[119,36,74,0.17705890536308289],[119,36,75,0.17644428089261055],[119,36,76,0.17692112177610397],[119,36,77,0.17860641330480576],[119,36,78,0.18146031722426414],[119,36,79,0.18483030050992966],[119,37,64,0.1675841026008129],[119,37,65,0.16821227222681046],[119,37,66,0.1698688343167305],[119,37,67,0.17198137193918228],[119,37,68,0.1736869402229786],[119,37,69,0.17438552528619766],[119,37,70,0.17417842894792557],[119,37,71,0.17358862608671188],[119,37,72,0.1723794974386692],[119,37,73,0.17066972330212593],[119,37,74,0.16924640536308289],[119,37,75,0.16863178089261055],[119,37,76,0.16910862177610397],[119,37,77,0.17079391330480576],[119,37,78,0.17364781722426414],[119,37,79,0.17701780050992966],[119,38,64,0.1597716026008129],[119,38,65,0.16039977222681046],[119,38,66,0.1620563343167305],[119,38,67,0.16416887193918228],[119,38,68,0.1658744402229786],[119,38,69,0.16657302528619766],[119,38,70,0.16636592894792557],[119,38,71,0.16577612608671188],[119,38,72,0.1645669974386692],[119,38,73,0.16285722330212593],[119,38,74,0.16143390536308289],[119,38,75,0.16081928089261055],[119,38,76,0.16129612177610397],[119,38,77,0.16298141330480576],[119,38,78,0.16583531722426414],[119,38,79,0.16920530050992966],[119,39,64,0.1519591026008129],[119,39,65,0.15258727222681046],[119,39,66,0.1542438343167305],[119,39,67,0.15635637193918228],[119,39,68,0.1580619402229786],[119,39,69,0.15876052528619766],[119,39,70,0.15855342894792557],[119,39,71,0.15796362608671188],[119,39,72,0.1567544974386692],[119,39,73,0.15504472330212593],[119,39,74,0.15362140536308289],[119,39,75,0.15300678089261055],[119,39,76,0.15348362177610397],[119,39,77,0.15516891330480576],[119,39,78,0.15802281722426414],[119,39,79,0.16139280050992966],[119,40,64,0.1441466026008129],[119,40,65,0.14477477222681046],[119,40,66,0.1464313343167305],[119,40,67,0.14854387193918228],[119,40,68,0.1502494402229786],[119,40,69,0.15094802528619766],[119,40,70,0.15074092894792557],[119,40,71,0.15015112608671188],[119,40,72,0.1489419974386692],[119,40,73,0.14723222330212593],[119,40,74,0.14580890536308289],[119,40,75,0.14519428089261055],[119,40,76,0.14567112177610397],[119,40,77,0.14735641330480576],[119,40,78,0.15021031722426414],[119,40,79,0.15358030050992966],[119,41,64,0.1363341026008129],[119,41,65,0.13696227222681046],[119,41,66,0.1386188343167305],[119,41,67,0.14073137193918228],[119,41,68,0.1424369402229786],[119,41,69,0.14313552528619766],[119,41,70,0.14292842894792557],[119,41,71,0.14233862608671188],[119,41,72,0.1411294974386692],[119,41,73,0.13941972330212593],[119,41,74,0.13799640536308289],[119,41,75,0.13738178089261055],[119,41,76,0.13785862177610397],[119,41,77,0.13954391330480576],[119,41,78,0.14239781722426414],[119,41,79,0.14576780050992966],[119,42,64,0.1285216026008129],[119,42,65,0.12914977222681046],[119,42,66,0.1308063343167305],[119,42,67,0.13291887193918228],[119,42,68,0.1346244402229786],[119,42,69,0.13532302528619766],[119,42,70,0.13511592894792557],[119,42,71,0.13452612608671188],[119,42,72,0.1333169974386692],[119,42,73,0.13160722330212593],[119,42,74,0.13018390536308289],[119,42,75,0.12956928089261055],[119,42,76,0.13004612177610397],[119,42,77,0.13173141330480576],[119,42,78,0.13458531722426414],[119,42,79,0.13795530050992966],[119,43,64,0.12070910260081291],[119,43,65,0.12133727222681046],[119,43,66,0.1229938343167305],[119,43,67,0.12510637193918228],[119,43,68,0.1268119402229786],[119,43,69,0.12751052528619766],[119,43,70,0.12730342894792557],[119,43,71,0.12671362608671188],[119,43,72,0.1255044974386692],[119,43,73,0.12379472330212593],[119,43,74,0.12237140536308289],[119,43,75,0.12175678089261055],[119,43,76,0.12223362177610397],[119,43,77,0.12391891330480576],[119,43,78,0.12677281722426414],[119,43,79,0.13014280050992966],[119,44,64,0.11289660260081291],[119,44,65,0.11352477222681046],[119,44,66,0.1151813343167305],[119,44,67,0.11729387193918228],[119,44,68,0.11899944022297859],[119,44,69,0.11969802528619766],[119,44,70,0.11949092894792557],[119,44,71,0.11890112608671188],[119,44,72,0.1176919974386692],[119,44,73,0.11598222330212593],[119,44,74,0.11455890536308289],[119,44,75,0.11394428089261055],[119,44,76,0.11442112177610397],[119,44,77,0.11610641330480576],[119,44,78,0.11896031722426414],[119,44,79,0.12233030050992966],[119,45,64,0.10508410260081291],[119,45,65,0.10571227222681046],[119,45,66,0.1073688343167305],[119,45,67,0.10948137193918228],[119,45,68,0.11118694022297859],[119,45,69,0.11188552528619766],[119,45,70,0.11167842894792557],[119,45,71,0.11108862608671188],[119,45,72,0.1098794974386692],[119,45,73,0.10816972330212593],[119,45,74,0.10674640536308289],[119,45,75,0.10613178089261055],[119,45,76,0.10660862177610397],[119,45,77,0.10829391330480576],[119,45,78,0.11114781722426414],[119,45,79,0.11451780050992966],[119,46,64,0.09727160260081291],[119,46,65,0.09789977222681046],[119,46,66,0.0995563343167305],[119,46,67,0.10166887193918228],[119,46,68,0.10337444022297859],[119,46,69,0.10407302528619766],[119,46,70,0.10386592894792557],[119,46,71,0.10327612608671188],[119,46,72,0.1020669974386692],[119,46,73,0.10035722330212593],[119,46,74,0.09893390536308289],[119,46,75,0.09831928089261055],[119,46,76,0.09879612177610397],[119,46,77,0.10048141330480576],[119,46,78,0.10333531722426414],[119,46,79,0.10670530050992966],[119,47,64,0.08945910260081291],[119,47,65,0.09008727222681046],[119,47,66,0.0917438343167305],[119,47,67,0.09385637193918228],[119,47,68,0.09556194022297859],[119,47,69,0.09626052528619766],[119,47,70,0.09605342894792557],[119,47,71,0.09546362608671188],[119,47,72,0.0942544974386692],[119,47,73,0.09254472330212593],[119,47,74,0.09112140536308289],[119,47,75,0.09050678089261055],[119,47,76,0.09098362177610397],[119,47,77,0.09266891330480576],[119,47,78,0.09552281722426414],[119,47,79,0.09889280050992966],[119,48,64,0.08164660260081291],[119,48,65,0.08227477222681046],[119,48,66,0.0839313343167305],[119,48,67,0.08604387193918228],[119,48,68,0.08774944022297859],[119,48,69,0.08844802528619766],[119,48,70,0.08824092894792557],[119,48,71,0.08765112608671188],[119,48,72,0.0864419974386692],[119,48,73,0.08473222330212593],[119,48,74,0.08330890536308289],[119,48,75,0.08269428089261055],[119,48,76,0.08317112177610397],[119,48,77,0.08485641330480576],[119,48,78,0.08771031722426414],[119,48,79,0.09108030050992966],[119,49,64,0.07383410260081291],[119,49,65,0.07446227222681046],[119,49,66,0.0761188343167305],[119,49,67,0.07823137193918228],[119,49,68,0.07993694022297859],[119,49,69,0.08063552528619766],[119,49,70,0.08042842894792557],[119,49,71,0.07983862608671188],[119,49,72,0.0786294974386692],[119,49,73,0.07691972330212593],[119,49,74,0.07549640536308289],[119,49,75,0.07488178089261055],[119,49,76,0.07535862177610397],[119,49,77,0.07704391330480576],[119,49,78,0.07989781722426414],[119,49,79,0.08326780050992966],[119,50,64,0.06602160260081291],[119,50,65,0.06664977222681046],[119,50,66,0.0683063343167305],[119,50,67,0.07041887193918228],[119,50,68,0.07212444022297859],[119,50,69,0.07282302528619766],[119,50,70,0.07261592894792557],[119,50,71,0.07202612608671188],[119,50,72,0.0708169974386692],[119,50,73,0.06910722330212593],[119,50,74,0.06768390536308289],[119,50,75,0.06706928089261055],[119,50,76,0.06754612177610397],[119,50,77,0.06923141330480576],[119,50,78,0.07208531722426414],[119,50,79,0.07545530050992966],[119,51,64,0.05820910260081291],[119,51,65,0.058837272226810455],[119,51,66,0.0604938343167305],[119,51,67,0.06260637193918228],[119,51,68,0.06431194022297859],[119,51,69,0.06501052528619766],[119,51,70,0.06480342894792557],[119,51,71,0.06421362608671188],[119,51,72,0.0630044974386692],[119,51,73,0.06129472330212593],[119,51,74,0.059871405363082886],[119,51,75,0.05925678089261055],[119,51,76,0.05973362177610397],[119,51,77,0.061418913304805756],[119,51,78,0.06427281722426414],[119,51,79,0.06764280050992966],[119,52,64,0.05039660260081291],[119,52,65,0.051024772226810455],[119,52,66,0.0526813343167305],[119,52,67,0.05479387193918228],[119,52,68,0.05649944022297859],[119,52,69,0.05719802528619766],[119,52,70,0.05699092894792557],[119,52,71,0.056401126086711884],[119,52,72,0.055191997438669205],[119,52,73,0.05348222330212593],[119,52,74,0.052058905363082886],[119,52,75,0.05144428089261055],[119,52,76,0.05192112177610397],[119,52,77,0.053606413304805756],[119,52,78,0.056460317224264145],[119,52,79,0.05983030050992966],[119,53,64,0.04258410260081291],[119,53,65,0.043212272226810455],[119,53,66,0.0448688343167305],[119,53,67,0.04698137193918228],[119,53,68,0.04868694022297859],[119,53,69,0.04938552528619766],[119,53,70,0.04917842894792557],[119,53,71,0.048588626086711884],[119,53,72,0.047379497438669205],[119,53,73,0.04566972330212593],[119,53,74,0.044246405363082886],[119,53,75,0.04363178089261055],[119,53,76,0.04410862177610397],[119,53,77,0.045793913304805756],[119,53,78,0.048647817224264145],[119,53,79,0.05201780050992966],[119,54,64,0.03477160260081291],[119,54,65,0.035399772226810455],[119,54,66,0.0370563343167305],[119,54,67,0.03916887193918228],[119,54,68,0.04087444022297859],[119,54,69,0.04157302528619766],[119,54,70,0.04136592894792557],[119,54,71,0.040776126086711884],[119,54,72,0.039566997438669205],[119,54,73,0.03785722330212593],[119,54,74,0.036433905363082886],[119,54,75,0.03581928089261055],[119,54,76,0.03629612177610397],[119,54,77,0.037981413304805756],[119,54,78,0.040835317224264145],[119,54,79,0.04420530050992966],[119,55,64,0.026959102600812912],[119,55,65,0.027587272226810455],[119,55,66,0.0292438343167305],[119,55,67,0.03135637193918228],[119,55,68,0.03306194022297859],[119,55,69,0.03376052528619766],[119,55,70,0.03355342894792557],[119,55,71,0.032963626086711884],[119,55,72,0.031754497438669205],[119,55,73,0.03004472330212593],[119,55,74,0.028621405363082886],[119,55,75,0.02800678089261055],[119,55,76,0.028483621776103973],[119,55,77,0.030168913304805756],[119,55,78,0.033022817224264145],[119,55,79,0.03639280050992966],[119,56,64,0.019146602600812912],[119,56,65,0.019774772226810455],[119,56,66,0.0214313343167305],[119,56,67,0.02354387193918228],[119,56,68,0.025249440222978592],[119,56,69,0.025948025286197662],[119,56,70,0.025740928947925568],[119,56,71,0.025151126086711884],[119,56,72,0.023941997438669205],[119,56,73,0.02223222330212593],[119,56,74,0.020808905363082886],[119,56,75,0.02019428089261055],[119,56,76,0.020671121776103973],[119,56,77,0.022356413304805756],[119,56,78,0.025210317224264145],[119,56,79,0.028580300509929657],[119,57,64,0.011334102600812912],[119,57,65,0.011962272226810455],[119,57,66,0.0136188343167305],[119,57,67,0.01573137193918228],[119,57,68,0.017436940222978592],[119,57,69,0.018135525286197662],[119,57,70,0.017928428947925568],[119,57,71,0.017338626086711884],[119,57,72,0.016129497438669205],[119,57,73,0.01441972330212593],[119,57,74,0.012996405363082886],[119,57,75,0.01238178089261055],[119,57,76,0.012858621776103973],[119,57,77,0.014543913304805756],[119,57,78,0.017397817224264145],[119,57,79,0.020767800509929657],[119,58,64,0.003521602600812912],[119,58,65,0.004149772226810455],[119,58,66,0.005806334316730499],[119,58,67,0.007918871939182281],[119,58,68,0.009624440222978592],[119,58,69,0.010323025286197662],[119,58,70,0.010115928947925568],[119,58,71,0.009526126086711884],[119,58,72,0.008316997438669205],[119,58,73,0.006607223302125931],[119,58,74,0.005183905363082886],[119,58,75,0.00456928089261055],[119,58,76,0.005046121776103973],[119,58,77,0.006731413304805756],[119,58,78,0.009585317224264145],[119,58,79,0.012955300509929657],[119,59,64,-0.004290897399187088],[119,59,65,-0.0036627277731895447],[119,59,66,-0.0020061656832695007],[119,59,67,1.063719391822815E-4],[119,59,68,0.001811940222978592],[119,59,69,0.0025105252861976624],[119,59,70,0.0023034289479255676],[119,59,71,0.0017136260867118835],[119,59,72,5.044974386692047E-4],[119,59,73,-0.0012052766978740692],[119,59,74,-0.0026285946369171143],[119,59,75,-0.00324321910738945],[119,59,76,-0.0027663782238960266],[119,59,77,-0.0010810866951942444],[119,59,78,0.001772817224264145],[119,59,79,0.005142800509929657],[119,60,64,-0.012103397399187088],[119,60,65,-0.011475227773189545],[119,60,66,-0.0098186656832695],[119,60,67,-0.0077061280608177185],[119,60,68,-0.006000559777021408],[119,60,69,-0.005301974713802338],[119,60,70,-0.005509071052074432],[119,60,71,-0.0060988739132881165],[119,60,72,-0.007308002561330795],[119,60,73,-0.00901777669787407],[119,60,74,-0.010441094636917114],[119,60,75,-0.01105571910738945],[119,60,76,-0.010578878223896027],[119,60,77,-0.008893586695194244],[119,60,78,-0.006039682775735855],[119,60,79,-0.002669699490070343],[119,61,64,-0.019915897399187088],[119,61,65,-0.019287727773189545],[119,61,66,-0.0176311656832695],[119,61,67,-0.015518628060817719],[119,61,68,-0.013813059777021408],[119,61,69,-0.013114474713802338],[119,61,70,-0.013321571052074432],[119,61,71,-0.013911373913288116],[119,61,72,-0.015120502561330795],[119,61,73,-0.01683027669787407],[119,61,74,-0.018253594636917114],[119,61,75,-0.01886821910738945],[119,61,76,-0.018391378223896027],[119,61,77,-0.016706086695194244],[119,61,78,-0.013852182775735855],[119,61,79,-0.010482199490070343],[119,62,64,-0.027728397399187088],[119,62,65,-0.027100227773189545],[119,62,66,-0.0254436656832695],[119,62,67,-0.02333112806081772],[119,62,68,-0.021625559777021408],[119,62,69,-0.020926974713802338],[119,62,70,-0.021134071052074432],[119,62,71,-0.021723873913288116],[119,62,72,-0.022933002561330795],[119,62,73,-0.02464277669787407],[119,62,74,-0.026066094636917114],[119,62,75,-0.02668071910738945],[119,62,76,-0.026203878223896027],[119,62,77,-0.024518586695194244],[119,62,78,-0.021664682775735855],[119,62,79,-0.018294699490070343],[119,63,64,-0.03554089739918709],[119,63,65,-0.034912727773189545],[119,63,66,-0.0332561656832695],[119,63,67,-0.03114362806081772],[119,63,68,-0.029438059777021408],[119,63,69,-0.028739474713802338],[119,63,70,-0.028946571052074432],[119,63,71,-0.029536373913288116],[119,63,72,-0.030745502561330795],[119,63,73,-0.03245527669787407],[119,63,74,-0.033878594636917114],[119,63,75,-0.03449321910738945],[119,63,76,-0.03401637822389603],[119,63,77,-0.032331086695194244],[119,63,78,-0.029477182775735855],[119,63,79,-0.026107199490070343],[119,64,64,-0.04335339739918709],[119,64,65,-0.042725227773189545],[119,64,66,-0.0410686656832695],[119,64,67,-0.03895612806081772],[119,64,68,-0.03725055977702141],[119,64,69,-0.03655197471380234],[119,64,70,-0.03675907105207443],[119,64,71,-0.037348873913288116],[119,64,72,-0.038558002561330795],[119,64,73,-0.04026777669787407],[119,64,74,-0.041691094636917114],[119,64,75,-0.04230571910738945],[119,64,76,-0.04182887822389603],[119,64,77,-0.040143586695194244],[119,64,78,-0.037289682775735855],[119,64,79,-0.03391969949007034],[119,65,64,-0.05116589739918709],[119,65,65,-0.050537727773189545],[119,65,66,-0.0488811656832695],[119,65,67,-0.04676862806081772],[119,65,68,-0.04506305977702141],[119,65,69,-0.04436447471380234],[119,65,70,-0.04457157105207443],[119,65,71,-0.045161373913288116],[119,65,72,-0.046370502561330795],[119,65,73,-0.04808027669787407],[119,65,74,-0.049503594636917114],[119,65,75,-0.05011821910738945],[119,65,76,-0.04964137822389603],[119,65,77,-0.047956086695194244],[119,65,78,-0.045102182775735855],[119,65,79,-0.04173219949007034],[119,66,64,-0.05897839739918709],[119,66,65,-0.058350227773189545],[119,66,66,-0.0566936656832695],[119,66,67,-0.05458112806081772],[119,66,68,-0.05287555977702141],[119,66,69,-0.05217697471380234],[119,66,70,-0.05238407105207443],[119,66,71,-0.052973873913288116],[119,66,72,-0.054183002561330795],[119,66,73,-0.05589277669787407],[119,66,74,-0.057316094636917114],[119,66,75,-0.05793071910738945],[119,66,76,-0.05745387822389603],[119,66,77,-0.055768586695194244],[119,66,78,-0.052914682775735855],[119,66,79,-0.04954469949007034],[119,67,64,-0.06679089739918709],[119,67,65,-0.06616272777318954],[119,67,66,-0.0645061656832695],[119,67,67,-0.06239362806081772],[119,67,68,-0.06068805977702141],[119,67,69,-0.05998947471380234],[119,67,70,-0.06019657105207443],[119,67,71,-0.060786373913288116],[119,67,72,-0.061995502561330795],[119,67,73,-0.06370527669787407],[119,67,74,-0.06512859463691711],[119,67,75,-0.06574321910738945],[119,67,76,-0.06526637822389603],[119,67,77,-0.06358108669519424],[119,67,78,-0.060727182775735855],[119,67,79,-0.05735719949007034],[119,68,64,-0.07460339739918709],[119,68,65,-0.07397522777318954],[119,68,66,-0.0723186656832695],[119,68,67,-0.07020612806081772],[119,68,68,-0.06850055977702141],[119,68,69,-0.06780197471380234],[119,68,70,-0.06800907105207443],[119,68,71,-0.06859887391328812],[119,68,72,-0.0698080025613308],[119,68,73,-0.07151777669787407],[119,68,74,-0.07294109463691711],[119,68,75,-0.07355571910738945],[119,68,76,-0.07307887822389603],[119,68,77,-0.07139358669519424],[119,68,78,-0.06853968277573586],[119,68,79,-0.06516969949007034],[119,69,64,-0.08241589739918709],[119,69,65,-0.08178772777318954],[119,69,66,-0.0801311656832695],[119,69,67,-0.07801862806081772],[119,69,68,-0.07631305977702141],[119,69,69,-0.07561447471380234],[119,69,70,-0.07582157105207443],[119,69,71,-0.07641137391328812],[119,69,72,-0.0776205025613308],[119,69,73,-0.07933027669787407],[119,69,74,-0.08075359463691711],[119,69,75,-0.08136821910738945],[119,69,76,-0.08089137822389603],[119,69,77,-0.07920608669519424],[119,69,78,-0.07635218277573586],[119,69,79,-0.07298219949007034],[119,70,64,-0.09022839739918709],[119,70,65,-0.08960022777318954],[119,70,66,-0.0879436656832695],[119,70,67,-0.08583112806081772],[119,70,68,-0.08412555977702141],[119,70,69,-0.08342697471380234],[119,70,70,-0.08363407105207443],[119,70,71,-0.08422387391328812],[119,70,72,-0.0854330025613308],[119,70,73,-0.08714277669787407],[119,70,74,-0.08856609463691711],[119,70,75,-0.08918071910738945],[119,70,76,-0.08870387822389603],[119,70,77,-0.08701858669519424],[119,70,78,-0.08416468277573586],[119,70,79,-0.08079469949007034],[119,71,64,-0.09804089739918709],[119,71,65,-0.09741272777318954],[119,71,66,-0.0957561656832695],[119,71,67,-0.09364362806081772],[119,71,68,-0.09193805977702141],[119,71,69,-0.09123947471380234],[119,71,70,-0.09144657105207443],[119,71,71,-0.09203637391328812],[119,71,72,-0.0932455025613308],[119,71,73,-0.09495527669787407],[119,71,74,-0.09637859463691711],[119,71,75,-0.09699321910738945],[119,71,76,-0.09651637822389603],[119,71,77,-0.09483108669519424],[119,71,78,-0.09197718277573586],[119,71,79,-0.08860719949007034],[119,72,64,-0.10585339739918709],[119,72,65,-0.10522522777318954],[119,72,66,-0.1035686656832695],[119,72,67,-0.10145612806081772],[119,72,68,-0.09975055977702141],[119,72,69,-0.09905197471380234],[119,72,70,-0.09925907105207443],[119,72,71,-0.09984887391328812],[119,72,72,-0.1010580025613308],[119,72,73,-0.10276777669787407],[119,72,74,-0.10419109463691711],[119,72,75,-0.10480571910738945],[119,72,76,-0.10432887822389603],[119,72,77,-0.10264358669519424],[119,72,78,-0.09978968277573586],[119,72,79,-0.09641969949007034],[119,73,64,-0.11366589739918709],[119,73,65,-0.11303772777318954],[119,73,66,-0.1113811656832695],[119,73,67,-0.10926862806081772],[119,73,68,-0.10756305977702141],[119,73,69,-0.10686447471380234],[119,73,70,-0.10707157105207443],[119,73,71,-0.10766137391328812],[119,73,72,-0.1088705025613308],[119,73,73,-0.11058027669787407],[119,73,74,-0.11200359463691711],[119,73,75,-0.11261821910738945],[119,73,76,-0.11214137822389603],[119,73,77,-0.11045608669519424],[119,73,78,-0.10760218277573586],[119,73,79,-0.10423219949007034],[119,74,64,-0.12147839739918709],[119,74,65,-0.12085022777318954],[119,74,66,-0.1191936656832695],[119,74,67,-0.11708112806081772],[119,74,68,-0.11537555977702141],[119,74,69,-0.11467697471380234],[119,74,70,-0.11488407105207443],[119,74,71,-0.11547387391328812],[119,74,72,-0.1166830025613308],[119,74,73,-0.11839277669787407],[119,74,74,-0.11981609463691711],[119,74,75,-0.12043071910738945],[119,74,76,-0.11995387822389603],[119,74,77,-0.11826858669519424],[119,74,78,-0.11541468277573586],[119,74,79,-0.11204469949007034],[119,75,64,-0.1292908973991871],[119,75,65,-0.12866272777318954],[119,75,66,-0.1270061656832695],[119,75,67,-0.12489362806081772],[119,75,68,-0.12318805977702141],[119,75,69,-0.12248947471380234],[119,75,70,-0.12269657105207443],[119,75,71,-0.12328637391328812],[119,75,72,-0.1244955025613308],[119,75,73,-0.12620527669787407],[119,75,74,-0.12762859463691711],[119,75,75,-0.12824321910738945],[119,75,76,-0.12776637822389603],[119,75,77,-0.12608108669519424],[119,75,78,-0.12322718277573586],[119,75,79,-0.11985719949007034],[119,76,64,-0.1371033973991871],[119,76,65,-0.13647522777318954],[119,76,66,-0.1348186656832695],[119,76,67,-0.13270612806081772],[119,76,68,-0.1310005597770214],[119,76,69,-0.13030197471380234],[119,76,70,-0.13050907105207443],[119,76,71,-0.13109887391328812],[119,76,72,-0.1323080025613308],[119,76,73,-0.13401777669787407],[119,76,74,-0.13544109463691711],[119,76,75,-0.13605571910738945],[119,76,76,-0.13557887822389603],[119,76,77,-0.13389358669519424],[119,76,78,-0.13103968277573586],[119,76,79,-0.12766969949007034],[119,77,64,-0.1449158973991871],[119,77,65,-0.14428772777318954],[119,77,66,-0.1426311656832695],[119,77,67,-0.14051862806081772],[119,77,68,-0.1388130597770214],[119,77,69,-0.13811447471380234],[119,77,70,-0.13832157105207443],[119,77,71,-0.13891137391328812],[119,77,72,-0.1401205025613308],[119,77,73,-0.14183027669787407],[119,77,74,-0.14325359463691711],[119,77,75,-0.14386821910738945],[119,77,76,-0.14339137822389603],[119,77,77,-0.14170608669519424],[119,77,78,-0.13885218277573586],[119,77,79,-0.13548219949007034],[119,78,64,-0.1527283973991871],[119,78,65,-0.15210022777318954],[119,78,66,-0.1504436656832695],[119,78,67,-0.14833112806081772],[119,78,68,-0.1466255597770214],[119,78,69,-0.14592697471380234],[119,78,70,-0.14613407105207443],[119,78,71,-0.14672387391328812],[119,78,72,-0.1479330025613308],[119,78,73,-0.14964277669787407],[119,78,74,-0.15106609463691711],[119,78,75,-0.15168071910738945],[119,78,76,-0.15120387822389603],[119,78,77,-0.14951858669519424],[119,78,78,-0.14666468277573586],[119,78,79,-0.14329469949007034],[119,79,64,-0.1605408973991871],[119,79,65,-0.15991272777318954],[119,79,66,-0.1582561656832695],[119,79,67,-0.15614362806081772],[119,79,68,-0.1544380597770214],[119,79,69,-0.15373947471380234],[119,79,70,-0.15394657105207443],[119,79,71,-0.15453637391328812],[119,79,72,-0.1557455025613308],[119,79,73,-0.15745527669787407],[119,79,74,-0.15887859463691711],[119,79,75,-0.15949321910738945],[119,79,76,-0.15901637822389603],[119,79,77,-0.15733108669519424],[119,79,78,-0.15447718277573586],[119,79,79,-0.15110719949007034],[119,80,64,-0.1683533973991871],[119,80,65,-0.16772522777318954],[119,80,66,-0.1660686656832695],[119,80,67,-0.16395612806081772],[119,80,68,-0.1622505597770214],[119,80,69,-0.16155197471380234],[119,80,70,-0.16175907105207443],[119,80,71,-0.16234887391328812],[119,80,72,-0.1635580025613308],[119,80,73,-0.16526777669787407],[119,80,74,-0.16669109463691711],[119,80,75,-0.16730571910738945],[119,80,76,-0.16682887822389603],[119,80,77,-0.16514358669519424],[119,80,78,-0.16228968277573586],[119,80,79,-0.15891969949007034],[119,81,64,-0.1761658973991871],[119,81,65,-0.17553772777318954],[119,81,66,-0.1738811656832695],[119,81,67,-0.17176862806081772],[119,81,68,-0.1700630597770214],[119,81,69,-0.16936447471380234],[119,81,70,-0.16957157105207443],[119,81,71,-0.17016137391328812],[119,81,72,-0.1713705025613308],[119,81,73,-0.17308027669787407],[119,81,74,-0.17450359463691711],[119,81,75,-0.17511821910738945],[119,81,76,-0.17464137822389603],[119,81,77,-0.17295608669519424],[119,81,78,-0.17010218277573586],[119,81,79,-0.16673219949007034],[119,82,64,-0.1839783973991871],[119,82,65,-0.18335022777318954],[119,82,66,-0.1816936656832695],[119,82,67,-0.17958112806081772],[119,82,68,-0.1778755597770214],[119,82,69,-0.17717697471380234],[119,82,70,-0.17738407105207443],[119,82,71,-0.17797387391328812],[119,82,72,-0.1791830025613308],[119,82,73,-0.18089277669787407],[119,82,74,-0.18231609463691711],[119,82,75,-0.18293071910738945],[119,82,76,-0.18245387822389603],[119,82,77,-0.18076858669519424],[119,82,78,-0.17791468277573586],[119,82,79,-0.17454469949007034],[119,83,64,-0.1917908973991871],[119,83,65,-0.19116272777318954],[119,83,66,-0.1895061656832695],[119,83,67,-0.18739362806081772],[119,83,68,-0.1856880597770214],[119,83,69,-0.18498947471380234],[119,83,70,-0.18519657105207443],[119,83,71,-0.18578637391328812],[119,83,72,-0.1869955025613308],[119,83,73,-0.18870527669787407],[119,83,74,-0.19012859463691711],[119,83,75,-0.19074321910738945],[119,83,76,-0.19026637822389603],[119,83,77,-0.18858108669519424],[119,83,78,-0.18572718277573586],[119,83,79,-0.18235719949007034],[119,84,64,-0.1996033973991871],[119,84,65,-0.19897522777318954],[119,84,66,-0.1973186656832695],[119,84,67,-0.19520612806081772],[119,84,68,-0.1935005597770214],[119,84,69,-0.19280197471380234],[119,84,70,-0.19300907105207443],[119,84,71,-0.19359887391328812],[119,84,72,-0.1948080025613308],[119,84,73,-0.19651777669787407],[119,84,74,-0.19794109463691711],[119,84,75,-0.19855571910738945],[119,84,76,-0.19807887822389603],[119,84,77,-0.19639358669519424],[119,84,78,-0.19353968277573586],[119,84,79,-0.19016969949007034],[119,85,64,-0.2074158973991871],[119,85,65,-0.20678772777318954],[119,85,66,-0.2051311656832695],[119,85,67,-0.20301862806081772],[119,85,68,-0.2013130597770214],[119,85,69,-0.20061447471380234],[119,85,70,-0.20082157105207443],[119,85,71,-0.20141137391328812],[119,85,72,-0.2026205025613308],[119,85,73,-0.20433027669787407],[119,85,74,-0.20575359463691711],[119,85,75,-0.20636821910738945],[119,85,76,-0.20589137822389603],[119,85,77,-0.20420608669519424],[119,85,78,-0.20135218277573586],[119,85,79,-0.19798219949007034],[119,86,64,-0.2152283973991871],[119,86,65,-0.21460022777318954],[119,86,66,-0.2129436656832695],[119,86,67,-0.21083112806081772],[119,86,68,-0.2091255597770214],[119,86,69,-0.20842697471380234],[119,86,70,-0.20863407105207443],[119,86,71,-0.20922387391328812],[119,86,72,-0.2104330025613308],[119,86,73,-0.21214277669787407],[119,86,74,-0.21356609463691711],[119,86,75,-0.21418071910738945],[119,86,76,-0.21370387822389603],[119,86,77,-0.21201858669519424],[119,86,78,-0.20916468277573586],[119,86,79,-0.20579469949007034],[119,87,64,-0.2230408973991871],[119,87,65,-0.22241272777318954],[119,87,66,-0.2207561656832695],[119,87,67,-0.21864362806081772],[119,87,68,-0.2169380597770214],[119,87,69,-0.21623947471380234],[119,87,70,-0.21644657105207443],[119,87,71,-0.21703637391328812],[119,87,72,-0.2182455025613308],[119,87,73,-0.21995527669787407],[119,87,74,-0.22137859463691711],[119,87,75,-0.22199321910738945],[119,87,76,-0.22151637822389603],[119,87,77,-0.21983108669519424],[119,87,78,-0.21697718277573586],[119,87,79,-0.21360719949007034],[119,88,64,-0.2308533973991871],[119,88,65,-0.23022522777318954],[119,88,66,-0.2285686656832695],[119,88,67,-0.22645612806081772],[119,88,68,-0.2247505597770214],[119,88,69,-0.22405197471380234],[119,88,70,-0.22425907105207443],[119,88,71,-0.22484887391328812],[119,88,72,-0.2260580025613308],[119,88,73,-0.22776777669787407],[119,88,74,-0.22919109463691711],[119,88,75,-0.22980571910738945],[119,88,76,-0.22932887822389603],[119,88,77,-0.22764358669519424],[119,88,78,-0.22478968277573586],[119,88,79,-0.22141969949007034],[119,89,64,-0.2386658973991871],[119,89,65,-0.23803772777318954],[119,89,66,-0.2363811656832695],[119,89,67,-0.23426862806081772],[119,89,68,-0.2325630597770214],[119,89,69,-0.23186447471380234],[119,89,70,-0.23207157105207443],[119,89,71,-0.23266137391328812],[119,89,72,-0.2338705025613308],[119,89,73,-0.23558027669787407],[119,89,74,-0.23700359463691711],[119,89,75,-0.23761821910738945],[119,89,76,-0.23714137822389603],[119,89,77,-0.23545608669519424],[119,89,78,-0.23260218277573586],[119,89,79,-0.22923219949007034],[119,90,64,-0.2464783973991871],[119,90,65,-0.24585022777318954],[119,90,66,-0.2441936656832695],[119,90,67,-0.24208112806081772],[119,90,68,-0.2403755597770214],[119,90,69,-0.23967697471380234],[119,90,70,-0.23988407105207443],[119,90,71,-0.24047387391328812],[119,90,72,-0.2416830025613308],[119,90,73,-0.24339277669787407],[119,90,74,-0.24481609463691711],[119,90,75,-0.24543071910738945],[119,90,76,-0.24495387822389603],[119,90,77,-0.24326858669519424],[119,90,78,-0.24041468277573586],[119,90,79,-0.23704469949007034],[119,91,64,-0.2542908973991871],[119,91,65,-0.25366272777318954],[119,91,66,-0.2520061656832695],[119,91,67,-0.24989362806081772],[119,91,68,-0.2481880597770214],[119,91,69,-0.24748947471380234],[119,91,70,-0.24769657105207443],[119,91,71,-0.24828637391328812],[119,91,72,-0.2494955025613308],[119,91,73,-0.25120527669787407],[119,91,74,-0.2526285946369171],[119,91,75,-0.25324321910738945],[119,91,76,-0.252766378223896],[119,91,77,-0.25108108669519424],[119,91,78,-0.24822718277573586],[119,91,79,-0.24485719949007034],[119,92,64,-0.2621033973991871],[119,92,65,-0.26147522777318954],[119,92,66,-0.2598186656832695],[119,92,67,-0.2577061280608177],[119,92,68,-0.2560005597770214],[119,92,69,-0.25530197471380234],[119,92,70,-0.25550907105207443],[119,92,71,-0.2560988739132881],[119,92,72,-0.2573080025613308],[119,92,73,-0.25901777669787407],[119,92,74,-0.2604410946369171],[119,92,75,-0.26105571910738945],[119,92,76,-0.260578878223896],[119,92,77,-0.25889358669519424],[119,92,78,-0.25603968277573586],[119,92,79,-0.25266969949007034],[119,93,64,-0.2699158973991871],[119,93,65,-0.26928772777318954],[119,93,66,-0.2676311656832695],[119,93,67,-0.2655186280608177],[119,93,68,-0.2638130597770214],[119,93,69,-0.26311447471380234],[119,93,70,-0.26332157105207443],[119,93,71,-0.2639113739132881],[119,93,72,-0.2651205025613308],[119,93,73,-0.26683027669787407],[119,93,74,-0.2682535946369171],[119,93,75,-0.26886821910738945],[119,93,76,-0.268391378223896],[119,93,77,-0.26670608669519424],[119,93,78,-0.26385218277573586],[119,93,79,-0.26048219949007034],[119,94,64,-0.2777283973991871],[119,94,65,-0.27710022777318954],[119,94,66,-0.2754436656832695],[119,94,67,-0.2733311280608177],[119,94,68,-0.2716255597770214],[119,94,69,-0.27092697471380234],[119,94,70,-0.27113407105207443],[119,94,71,-0.2717238739132881],[119,94,72,-0.2729330025613308],[119,94,73,-0.27464277669787407],[119,94,74,-0.2760660946369171],[119,94,75,-0.27668071910738945],[119,94,76,-0.276203878223896],[119,94,77,-0.27451858669519424],[119,94,78,-0.27166468277573586],[119,94,79,-0.26829469949007034],[119,95,64,-0.2855408973991871],[119,95,65,-0.28491272777318954],[119,95,66,-0.2832561656832695],[119,95,67,-0.2811436280608177],[119,95,68,-0.2794380597770214],[119,95,69,-0.27873947471380234],[119,95,70,-0.27894657105207443],[119,95,71,-0.2795363739132881],[119,95,72,-0.2807455025613308],[119,95,73,-0.28245527669787407],[119,95,74,-0.2838785946369171],[119,95,75,-0.28449321910738945],[119,95,76,-0.284016378223896],[119,95,77,-0.28233108669519424],[119,95,78,-0.27947718277573586],[119,95,79,-0.27610719949007034],[119,96,64,-0.2933533973991871],[119,96,65,-0.29272522777318954],[119,96,66,-0.2910686656832695],[119,96,67,-0.2889561280608177],[119,96,68,-0.2872505597770214],[119,96,69,-0.28655197471380234],[119,96,70,-0.28675907105207443],[119,96,71,-0.2873488739132881],[119,96,72,-0.2885580025613308],[119,96,73,-0.29026777669787407],[119,96,74,-0.2916910946369171],[119,96,75,-0.29230571910738945],[119,96,76,-0.291828878223896],[119,96,77,-0.29014358669519424],[119,96,78,-0.28728968277573586],[119,96,79,-0.28391969949007034],[119,97,64,-0.3011658973991871],[119,97,65,-0.30053772777318954],[119,97,66,-0.2988811656832695],[119,97,67,-0.2967686280608177],[119,97,68,-0.2950630597770214],[119,97,69,-0.29436447471380234],[119,97,70,-0.29457157105207443],[119,97,71,-0.2951613739132881],[119,97,72,-0.2963705025613308],[119,97,73,-0.29808027669787407],[119,97,74,-0.2995035946369171],[119,97,75,-0.30011821910738945],[119,97,76,-0.299641378223896],[119,97,77,-0.29795608669519424],[119,97,78,-0.29510218277573586],[119,97,79,-0.29173219949007034],[119,98,64,-0.3089783973991871],[119,98,65,-0.30835022777318954],[119,98,66,-0.3066936656832695],[119,98,67,-0.3045811280608177],[119,98,68,-0.3028755597770214],[119,98,69,-0.30217697471380234],[119,98,70,-0.30238407105207443],[119,98,71,-0.3029738739132881],[119,98,72,-0.3041830025613308],[119,98,73,-0.30589277669787407],[119,98,74,-0.3073160946369171],[119,98,75,-0.30793071910738945],[119,98,76,-0.307453878223896],[119,98,77,-0.30576858669519424],[119,98,78,-0.30291468277573586],[119,98,79,-0.29954469949007034],[119,99,64,-0.3167908973991871],[119,99,65,-0.31616272777318954],[119,99,66,-0.3145061656832695],[119,99,67,-0.3123936280608177],[119,99,68,-0.3106880597770214],[119,99,69,-0.30998947471380234],[119,99,70,-0.31019657105207443],[119,99,71,-0.3107863739132881],[119,99,72,-0.3119955025613308],[119,99,73,-0.31370527669787407],[119,99,74,-0.3151285946369171],[119,99,75,-0.31574321910738945],[119,99,76,-0.315266378223896],[119,99,77,-0.31358108669519424],[119,99,78,-0.31072718277573586],[119,99,79,-0.30735719949007034],[119,100,64,-0.3246033973991871],[119,100,65,-0.32397522777318954],[119,100,66,-0.3223186656832695],[119,100,67,-0.3202061280608177],[119,100,68,-0.3185005597770214],[119,100,69,-0.31780197471380234],[119,100,70,-0.31800907105207443],[119,100,71,-0.3185988739132881],[119,100,72,-0.3198080025613308],[119,100,73,-0.32151777669787407],[119,100,74,-0.3229410946369171],[119,100,75,-0.32355571910738945],[119,100,76,-0.323078878223896],[119,100,77,-0.32139358669519424],[119,100,78,-0.31853968277573586],[119,100,79,-0.31516969949007034],[119,101,64,-0.3324158973991871],[119,101,65,-0.33178772777318954],[119,101,66,-0.3301311656832695],[119,101,67,-0.3280186280608177],[119,101,68,-0.3263130597770214],[119,101,69,-0.32561447471380234],[119,101,70,-0.32582157105207443],[119,101,71,-0.3264113739132881],[119,101,72,-0.3276205025613308],[119,101,73,-0.32933027669787407],[119,101,74,-0.3307535946369171],[119,101,75,-0.33136821910738945],[119,101,76,-0.330891378223896],[119,101,77,-0.32920608669519424],[119,101,78,-0.32635218277573586],[119,101,79,-0.32298219949007034],[119,102,64,-0.3402283973991871],[119,102,65,-0.33960022777318954],[119,102,66,-0.3379436656832695],[119,102,67,-0.3358311280608177],[119,102,68,-0.3341255597770214],[119,102,69,-0.33342697471380234],[119,102,70,-0.33363407105207443],[119,102,71,-0.3342238739132881],[119,102,72,-0.3354330025613308],[119,102,73,-0.33714277669787407],[119,102,74,-0.3385660946369171],[119,102,75,-0.33918071910738945],[119,102,76,-0.338703878223896],[119,102,77,-0.33701858669519424],[119,102,78,-0.33416468277573586],[119,102,79,-0.33079469949007034],[119,103,64,-0.3480408973991871],[119,103,65,-0.34741272777318954],[119,103,66,-0.3457561656832695],[119,103,67,-0.3436436280608177],[119,103,68,-0.3419380597770214],[119,103,69,-0.34123947471380234],[119,103,70,-0.34144657105207443],[119,103,71,-0.3420363739132881],[119,103,72,-0.3432455025613308],[119,103,73,-0.34495527669787407],[119,103,74,-0.3463785946369171],[119,103,75,-0.34699321910738945],[119,103,76,-0.346516378223896],[119,103,77,-0.34483108669519424],[119,103,78,-0.34197718277573586],[119,103,79,-0.33860719949007034],[119,104,64,-0.3558533973991871],[119,104,65,-0.35522522777318954],[119,104,66,-0.3535686656832695],[119,104,67,-0.3514561280608177],[119,104,68,-0.3497505597770214],[119,104,69,-0.34905197471380234],[119,104,70,-0.34925907105207443],[119,104,71,-0.3498488739132881],[119,104,72,-0.3510580025613308],[119,104,73,-0.35276777669787407],[119,104,74,-0.3541910946369171],[119,104,75,-0.35480571910738945],[119,104,76,-0.354328878223896],[119,104,77,-0.35264358669519424],[119,104,78,-0.34978968277573586],[119,104,79,-0.34641969949007034],[119,105,64,-0.3636658973991871],[119,105,65,-0.36303772777318954],[119,105,66,-0.3613811656832695],[119,105,67,-0.3592686280608177],[119,105,68,-0.3575630597770214],[119,105,69,-0.35686447471380234],[119,105,70,-0.35707157105207443],[119,105,71,-0.3576613739132881],[119,105,72,-0.3588705025613308],[119,105,73,-0.36058027669787407],[119,105,74,-0.3620035946369171],[119,105,75,-0.36261821910738945],[119,105,76,-0.362141378223896],[119,105,77,-0.36045608669519424],[119,105,78,-0.35760218277573586],[119,105,79,-0.35423219949007034],[119,106,64,-0.3714783973991871],[119,106,65,-0.37085022777318954],[119,106,66,-0.3691936656832695],[119,106,67,-0.3670811280608177],[119,106,68,-0.3653755597770214],[119,106,69,-0.36467697471380234],[119,106,70,-0.36488407105207443],[119,106,71,-0.3654738739132881],[119,106,72,-0.3666830025613308],[119,106,73,-0.36839277669787407],[119,106,74,-0.3698160946369171],[119,106,75,-0.37043071910738945],[119,106,76,-0.369953878223896],[119,106,77,-0.36826858669519424],[119,106,78,-0.36541468277573586],[119,106,79,-0.36204469949007034],[119,107,64,-0.3792908973991871],[119,107,65,-0.37866272777318954],[119,107,66,-0.3770061656832695],[119,107,67,-0.3748936280608177],[119,107,68,-0.3731880597770214],[119,107,69,-0.37248947471380234],[119,107,70,-0.37269657105207443],[119,107,71,-0.3732863739132881],[119,107,72,-0.3744955025613308],[119,107,73,-0.37620527669787407],[119,107,74,-0.3776285946369171],[119,107,75,-0.37824321910738945],[119,107,76,-0.377766378223896],[119,107,77,-0.37608108669519424],[119,107,78,-0.37322718277573586],[119,107,79,-0.36985719949007034],[119,108,64,-0.3871033973991871],[119,108,65,-0.38647522777318954],[119,108,66,-0.3848186656832695],[119,108,67,-0.3827061280608177],[119,108,68,-0.3810005597770214],[119,108,69,-0.38030197471380234],[119,108,70,-0.38050907105207443],[119,108,71,-0.3810988739132881],[119,108,72,-0.3823080025613308],[119,108,73,-0.38401777669787407],[119,108,74,-0.3854410946369171],[119,108,75,-0.38605571910738945],[119,108,76,-0.385578878223896],[119,108,77,-0.38389358669519424],[119,108,78,-0.38103968277573586],[119,108,79,-0.37766969949007034],[119,109,64,-0.3949158973991871],[119,109,65,-0.39428772777318954],[119,109,66,-0.3926311656832695],[119,109,67,-0.3905186280608177],[119,109,68,-0.3888130597770214],[119,109,69,-0.38811447471380234],[119,109,70,-0.38832157105207443],[119,109,71,-0.3889113739132881],[119,109,72,-0.3901205025613308],[119,109,73,-0.39183027669787407],[119,109,74,-0.3932535946369171],[119,109,75,-0.39386821910738945],[119,109,76,-0.393391378223896],[119,109,77,-0.39170608669519424],[119,109,78,-0.38885218277573586],[119,109,79,-0.38548219949007034],[119,110,64,-0.4027283973991871],[119,110,65,-0.40210022777318954],[119,110,66,-0.4004436656832695],[119,110,67,-0.3983311280608177],[119,110,68,-0.3966255597770214],[119,110,69,-0.39592697471380234],[119,110,70,-0.39613407105207443],[119,110,71,-0.3967238739132881],[119,110,72,-0.3979330025613308],[119,110,73,-0.39964277669787407],[119,110,74,-0.4010660946369171],[119,110,75,-0.40168071910738945],[119,110,76,-0.401203878223896],[119,110,77,-0.39951858669519424],[119,110,78,-0.39666468277573586],[119,110,79,-0.39329469949007034],[119,111,64,-0.4105408973991871],[119,111,65,-0.40991272777318954],[119,111,66,-0.4082561656832695],[119,111,67,-0.4061436280608177],[119,111,68,-0.4044380597770214],[119,111,69,-0.40373947471380234],[119,111,70,-0.40394657105207443],[119,111,71,-0.4045363739132881],[119,111,72,-0.4057455025613308],[119,111,73,-0.40745527669787407],[119,111,74,-0.4088785946369171],[119,111,75,-0.40949321910738945],[119,111,76,-0.409016378223896],[119,111,77,-0.40733108669519424],[119,111,78,-0.40447718277573586],[119,111,79,-0.40110719949007034],[119,112,64,-0.4183533973991871],[119,112,65,-0.41772522777318954],[119,112,66,-0.4160686656832695],[119,112,67,-0.4139561280608177],[119,112,68,-0.4122505597770214],[119,112,69,-0.41155197471380234],[119,112,70,-0.41175907105207443],[119,112,71,-0.4123488739132881],[119,112,72,-0.4135580025613308],[119,112,73,-0.41526777669787407],[119,112,74,-0.4166910946369171],[119,112,75,-0.41730571910738945],[119,112,76,-0.416828878223896],[119,112,77,-0.41514358669519424],[119,112,78,-0.41228968277573586],[119,112,79,-0.40891969949007034],[119,113,64,-0.4261658973991871],[119,113,65,-0.42553772777318954],[119,113,66,-0.4238811656832695],[119,113,67,-0.4217686280608177],[119,113,68,-0.4200630597770214],[119,113,69,-0.41936447471380234],[119,113,70,-0.41957157105207443],[119,113,71,-0.4201613739132881],[119,113,72,-0.4213705025613308],[119,113,73,-0.42308027669787407],[119,113,74,-0.4245035946369171],[119,113,75,-0.42511821910738945],[119,113,76,-0.424641378223896],[119,113,77,-0.42295608669519424],[119,113,78,-0.42010218277573586],[119,113,79,-0.41673219949007034],[119,114,64,-0.4339783973991871],[119,114,65,-0.43335022777318954],[119,114,66,-0.4316936656832695],[119,114,67,-0.4295811280608177],[119,114,68,-0.4278755597770214],[119,114,69,-0.42717697471380234],[119,114,70,-0.42738407105207443],[119,114,71,-0.4279738739132881],[119,114,72,-0.4291830025613308],[119,114,73,-0.43089277669787407],[119,114,74,-0.4323160946369171],[119,114,75,-0.43293071910738945],[119,114,76,-0.432453878223896],[119,114,77,-0.43076858669519424],[119,114,78,-0.42791468277573586],[119,114,79,-0.42454469949007034],[119,115,64,-0.4417908973991871],[119,115,65,-0.44116272777318954],[119,115,66,-0.4395061656832695],[119,115,67,-0.4373936280608177],[119,115,68,-0.4356880597770214],[119,115,69,-0.43498947471380234],[119,115,70,-0.43519657105207443],[119,115,71,-0.4357863739132881],[119,115,72,-0.4369955025613308],[119,115,73,-0.43870527669787407],[119,115,74,-0.4401285946369171],[119,115,75,-0.44074321910738945],[119,115,76,-0.440266378223896],[119,115,77,-0.43858108669519424],[119,115,78,-0.43572718277573586],[119,115,79,-0.43235719949007034],[119,116,64,-0.4496033973991871],[119,116,65,-0.44897522777318954],[119,116,66,-0.4473186656832695],[119,116,67,-0.4452061280608177],[119,116,68,-0.4435005597770214],[119,116,69,-0.44280197471380234],[119,116,70,-0.44300907105207443],[119,116,71,-0.4435988739132881],[119,116,72,-0.4448080025613308],[119,116,73,-0.44651777669787407],[119,116,74,-0.4479410946369171],[119,116,75,-0.44855571910738945],[119,116,76,-0.448078878223896],[119,116,77,-0.44639358669519424],[119,116,78,-0.44353968277573586],[119,116,79,-0.44016969949007034],[119,117,64,-0.4574158973991871],[119,117,65,-0.45678772777318954],[119,117,66,-0.4551311656832695],[119,117,67,-0.4530186280608177],[119,117,68,-0.4513130597770214],[119,117,69,-0.45061447471380234],[119,117,70,-0.45082157105207443],[119,117,71,-0.4514113739132881],[119,117,72,-0.4526205025613308],[119,117,73,-0.45433027669787407],[119,117,74,-0.4557535946369171],[119,117,75,-0.45636821910738945],[119,117,76,-0.455891378223896],[119,117,77,-0.45420608669519424],[119,117,78,-0.45135218277573586],[119,117,79,-0.44798219949007034],[119,118,64,-0.4652283973991871],[119,118,65,-0.46460022777318954],[119,118,66,-0.4629436656832695],[119,118,67,-0.4608311280608177],[119,118,68,-0.4591255597770214],[119,118,69,-0.45842697471380234],[119,118,70,-0.45863407105207443],[119,118,71,-0.4592238739132881],[119,118,72,-0.4604330025613308],[119,118,73,-0.46214277669787407],[119,118,74,-0.4635660946369171],[119,118,75,-0.46418071910738945],[119,118,76,-0.463703878223896],[119,118,77,-0.46201858669519424],[119,118,78,-0.45916468277573586],[119,118,79,-0.45579469949007034],[119,119,64,-0.4730408973991871],[119,119,65,-0.47241272777318954],[119,119,66,-0.4707561656832695],[119,119,67,-0.4686436280608177],[119,119,68,-0.4669380597770214],[119,119,69,-0.46623947471380234],[119,119,70,-0.46644657105207443],[119,119,71,-0.4670363739132881],[119,119,72,-0.4682455025613308],[119,119,73,-0.46995527669787407],[119,119,74,-0.4713785946369171],[119,119,75,-0.47199321910738945],[119,119,76,-0.471516378223896],[119,119,77,-0.46983108669519424],[119,119,78,-0.46697718277573586],[119,119,79,-0.46360719949007034],[119,120,64,-0.4808533973991871],[119,120,65,-0.48022522777318954],[119,120,66,-0.4785686656832695],[119,120,67,-0.4764561280608177],[119,120,68,-0.4747505597770214],[119,120,69,-0.47405197471380234],[119,120,70,-0.47425907105207443],[119,120,71,-0.4748488739132881],[119,120,72,-0.4760580025613308],[119,120,73,-0.47776777669787407],[119,120,74,-0.4791910946369171],[119,120,75,-0.47980571910738945],[119,120,76,-0.479328878223896],[119,120,77,-0.47764358669519424],[119,120,78,-0.47478968277573586],[119,120,79,-0.47141969949007034],[119,121,64,-0.4886658973991871],[119,121,65,-0.48803772777318954],[119,121,66,-0.4863811656832695],[119,121,67,-0.4842686280608177],[119,121,68,-0.4825630597770214],[119,121,69,-0.48186447471380234],[119,121,70,-0.48207157105207443],[119,121,71,-0.4826613739132881],[119,121,72,-0.4838705025613308],[119,121,73,-0.48558027669787407],[119,121,74,-0.4870035946369171],[119,121,75,-0.48761821910738945],[119,121,76,-0.487141378223896],[119,121,77,-0.48545608669519424],[119,121,78,-0.48260218277573586],[119,121,79,-0.47923219949007034],[119,122,64,-0.4964783973991871],[119,122,65,-0.49585022777318954],[119,122,66,-0.4941936656832695],[119,122,67,-0.4920811280608177],[119,122,68,-0.4903755597770214],[119,122,69,-0.48967697471380234],[119,122,70,-0.48988407105207443],[119,122,71,-0.4904738739132881],[119,122,72,-0.4916830025613308],[119,122,73,-0.49339277669787407],[119,122,74,-0.4948160946369171],[119,122,75,-0.49543071910738945],[119,122,76,-0.494953878223896],[119,122,77,-0.49326858669519424],[119,122,78,-0.49041468277573586],[119,122,79,-0.48704469949007034],[119,123,64,-0.5042908973991871],[119,123,65,-0.5036627277731895],[119,123,66,-0.5020061656832695],[119,123,67,-0.4998936280608177],[119,123,68,-0.4981880597770214],[119,123,69,-0.49748947471380234],[119,123,70,-0.49769657105207443],[119,123,71,-0.4982863739132881],[119,123,72,-0.4994955025613308],[119,123,73,-0.5012052766978741],[119,123,74,-0.5026285946369171],[119,123,75,-0.5032432191073895],[119,123,76,-0.502766378223896],[119,123,77,-0.5010810866951942],[119,123,78,-0.49822718277573586],[119,123,79,-0.49485719949007034],[119,124,64,-0.5121033973991871],[119,124,65,-0.5114752277731895],[119,124,66,-0.5098186656832695],[119,124,67,-0.5077061280608177],[119,124,68,-0.5060005597770214],[119,124,69,-0.5053019747138023],[119,124,70,-0.5055090710520744],[119,124,71,-0.5060988739132881],[119,124,72,-0.5073080025613308],[119,124,73,-0.5090177766978741],[119,124,74,-0.5104410946369171],[119,124,75,-0.5110557191073895],[119,124,76,-0.510578878223896],[119,124,77,-0.5088935866951942],[119,124,78,-0.5060396827757359],[119,124,79,-0.5026696994900703],[119,125,64,-0.5199158973991871],[119,125,65,-0.5192877277731895],[119,125,66,-0.5176311656832695],[119,125,67,-0.5155186280608177],[119,125,68,-0.5138130597770214],[119,125,69,-0.5131144747138023],[119,125,70,-0.5133215710520744],[119,125,71,-0.5139113739132881],[119,125,72,-0.5151205025613308],[119,125,73,-0.5168302766978741],[119,125,74,-0.5182535946369171],[119,125,75,-0.5188682191073895],[119,125,76,-0.518391378223896],[119,125,77,-0.5167060866951942],[119,125,78,-0.5138521827757359],[119,125,79,-0.5104821994900703],[119,126,64,-0.5277283973991871],[119,126,65,-0.5271002277731895],[119,126,66,-0.5254436656832695],[119,126,67,-0.5233311280608177],[119,126,68,-0.5216255597770214],[119,126,69,-0.5209269747138023],[119,126,70,-0.5211340710520744],[119,126,71,-0.5217238739132881],[119,126,72,-0.5229330025613308],[119,126,73,-0.5246427766978741],[119,126,74,-0.5260660946369171],[119,126,75,-0.5266807191073895],[119,126,76,-0.526203878223896],[119,126,77,-0.5245185866951942],[119,126,78,-0.5216646827757359],[119,126,79,-0.5182946994900703],[119,127,64,-0.5355408973991871],[119,127,65,-0.5349127277731895],[119,127,66,-0.5332561656832695],[119,127,67,-0.5311436280608177],[119,127,68,-0.5294380597770214],[119,127,69,-0.5287394747138023],[119,127,70,-0.5289465710520744],[119,127,71,-0.5295363739132881],[119,127,72,-0.5307455025613308],[119,127,73,-0.5324552766978741],[119,127,74,-0.5338785946369171],[119,127,75,-0.5344932191073895],[119,127,76,-0.534016378223896],[119,127,77,-0.5323310866951942],[119,127,78,-0.5294771827757359],[119,127,79,-0.5261071994900703],[119,128,64,-0.5433533973991871],[119,128,65,-0.5427252277731895],[119,128,66,-0.5410686656832695],[119,128,67,-0.5389561280608177],[119,128,68,-0.5372505597770214],[119,128,69,-0.5365519747138023],[119,128,70,-0.5367590710520744],[119,128,71,-0.5373488739132881],[119,128,72,-0.5385580025613308],[119,128,73,-0.5402677766978741],[119,128,74,-0.5416910946369171],[119,128,75,-0.5423057191073895],[119,128,76,-0.541828878223896],[119,128,77,-0.5401435866951942],[119,128,78,-0.5372896827757359],[119,128,79,-0.5339196994900703],[119,129,64,-0.5511658973991871],[119,129,65,-0.5505377277731895],[119,129,66,-0.5488811656832695],[119,129,67,-0.5467686280608177],[119,129,68,-0.5450630597770214],[119,129,69,-0.5443644747138023],[119,129,70,-0.5445715710520744],[119,129,71,-0.5451613739132881],[119,129,72,-0.5463705025613308],[119,129,73,-0.5480802766978741],[119,129,74,-0.5495035946369171],[119,129,75,-0.5501182191073895],[119,129,76,-0.549641378223896],[119,129,77,-0.5479560866951942],[119,129,78,-0.5451021827757359],[119,129,79,-0.5417321994900703],[119,130,64,-0.5589783973991871],[119,130,65,-0.5583502277731895],[119,130,66,-0.5566936656832695],[119,130,67,-0.5545811280608177],[119,130,68,-0.5528755597770214],[119,130,69,-0.5521769747138023],[119,130,70,-0.5523840710520744],[119,130,71,-0.5529738739132881],[119,130,72,-0.5541830025613308],[119,130,73,-0.5558927766978741],[119,130,74,-0.5573160946369171],[119,130,75,-0.5579307191073895],[119,130,76,-0.557453878223896],[119,130,77,-0.5557685866951942],[119,130,78,-0.5529146827757359],[119,130,79,-0.5495446994900703],[119,131,64,-0.5667908973991871],[119,131,65,-0.5661627277731895],[119,131,66,-0.5645061656832695],[119,131,67,-0.5623936280608177],[119,131,68,-0.5606880597770214],[119,131,69,-0.5599894747138023],[119,131,70,-0.5601965710520744],[119,131,71,-0.5607863739132881],[119,131,72,-0.5619955025613308],[119,131,73,-0.5637052766978741],[119,131,74,-0.5651285946369171],[119,131,75,-0.5657432191073895],[119,131,76,-0.565266378223896],[119,131,77,-0.5635810866951942],[119,131,78,-0.5607271827757359],[119,131,79,-0.5573571994900703],[119,132,64,-0.5746033973991871],[119,132,65,-0.5739752277731895],[119,132,66,-0.5723186656832695],[119,132,67,-0.5702061280608177],[119,132,68,-0.5685005597770214],[119,132,69,-0.5678019747138023],[119,132,70,-0.5680090710520744],[119,132,71,-0.5685988739132881],[119,132,72,-0.5698080025613308],[119,132,73,-0.5715177766978741],[119,132,74,-0.5729410946369171],[119,132,75,-0.5735557191073895],[119,132,76,-0.573078878223896],[119,132,77,-0.5713935866951942],[119,132,78,-0.5685396827757359],[119,132,79,-0.5651696994900703],[119,133,64,-0.5824158973991871],[119,133,65,-0.5817877277731895],[119,133,66,-0.5801311656832695],[119,133,67,-0.5780186280608177],[119,133,68,-0.5763130597770214],[119,133,69,-0.5756144747138023],[119,133,70,-0.5758215710520744],[119,133,71,-0.5764113739132881],[119,133,72,-0.5776205025613308],[119,133,73,-0.5793302766978741],[119,133,74,-0.5807535946369171],[119,133,75,-0.5813682191073895],[119,133,76,-0.580891378223896],[119,133,77,-0.5792060866951942],[119,133,78,-0.5763521827757359],[119,133,79,-0.5729821994900703],[119,134,64,-0.5902283973991871],[119,134,65,-0.5896002277731895],[119,134,66,-0.5879436656832695],[119,134,67,-0.5858311280608177],[119,134,68,-0.5841255597770214],[119,134,69,-0.5834269747138023],[119,134,70,-0.5836340710520744],[119,134,71,-0.5842238739132881],[119,134,72,-0.5854330025613308],[119,134,73,-0.5871427766978741],[119,134,74,-0.5885660946369171],[119,134,75,-0.5891807191073895],[119,134,76,-0.588703878223896],[119,134,77,-0.5870185866951942],[119,134,78,-0.5841646827757359],[119,134,79,-0.5807946994900703],[119,135,64,-0.5980408973991871],[119,135,65,-0.5974127277731895],[119,135,66,-0.5957561656832695],[119,135,67,-0.5936436280608177],[119,135,68,-0.5919380597770214],[119,135,69,-0.5912394747138023],[119,135,70,-0.5914465710520744],[119,135,71,-0.5920363739132881],[119,135,72,-0.5932455025613308],[119,135,73,-0.5949552766978741],[119,135,74,-0.5963785946369171],[119,135,75,-0.5969932191073895],[119,135,76,-0.596516378223896],[119,135,77,-0.5948310866951942],[119,135,78,-0.5919771827757359],[119,135,79,-0.5886071994900703],[119,136,64,-0.6058533973991871],[119,136,65,-0.6052252277731895],[119,136,66,-0.6035686656832695],[119,136,67,-0.6014561280608177],[119,136,68,-0.5997505597770214],[119,136,69,-0.5990519747138023],[119,136,70,-0.5992590710520744],[119,136,71,-0.5998488739132881],[119,136,72,-0.6010580025613308],[119,136,73,-0.6027677766978741],[119,136,74,-0.6041910946369171],[119,136,75,-0.6048057191073895],[119,136,76,-0.604328878223896],[119,136,77,-0.6026435866951942],[119,136,78,-0.5997896827757359],[119,136,79,-0.5964196994900703],[119,137,64,-0.6136658973991871],[119,137,65,-0.6130377277731895],[119,137,66,-0.6113811656832695],[119,137,67,-0.6092686280608177],[119,137,68,-0.6075630597770214],[119,137,69,-0.6068644747138023],[119,137,70,-0.6070715710520744],[119,137,71,-0.6076613739132881],[119,137,72,-0.6088705025613308],[119,137,73,-0.6105802766978741],[119,137,74,-0.6120035946369171],[119,137,75,-0.6126182191073895],[119,137,76,-0.612141378223896],[119,137,77,-0.6104560866951942],[119,137,78,-0.6076021827757359],[119,137,79,-0.6042321994900703],[119,138,64,-0.6214783973991871],[119,138,65,-0.6208502277731895],[119,138,66,-0.6191936656832695],[119,138,67,-0.6170811280608177],[119,138,68,-0.6153755597770214],[119,138,69,-0.6146769747138023],[119,138,70,-0.6148840710520744],[119,138,71,-0.6154738739132881],[119,138,72,-0.6166830025613308],[119,138,73,-0.6183927766978741],[119,138,74,-0.6198160946369171],[119,138,75,-0.6204307191073895],[119,138,76,-0.619953878223896],[119,138,77,-0.6182685866951942],[119,138,78,-0.6154146827757359],[119,138,79,-0.6120446994900703],[119,139,64,-0.6292908973991871],[119,139,65,-0.6286627277731895],[119,139,66,-0.6270061656832695],[119,139,67,-0.6248936280608177],[119,139,68,-0.6231880597770214],[119,139,69,-0.6224894747138023],[119,139,70,-0.6226965710520744],[119,139,71,-0.6232863739132881],[119,139,72,-0.6244955025613308],[119,139,73,-0.6262052766978741],[119,139,74,-0.6276285946369171],[119,139,75,-0.6282432191073895],[119,139,76,-0.627766378223896],[119,139,77,-0.6260810866951942],[119,139,78,-0.6232271827757359],[119,139,79,-0.6198571994900703],[119,140,64,-0.6371033973991871],[119,140,65,-0.6364752277731895],[119,140,66,-0.6348186656832695],[119,140,67,-0.6327061280608177],[119,140,68,-0.6310005597770214],[119,140,69,-0.6303019747138023],[119,140,70,-0.6305090710520744],[119,140,71,-0.6310988739132881],[119,140,72,-0.6323080025613308],[119,140,73,-0.6340177766978741],[119,140,74,-0.6354410946369171],[119,140,75,-0.6360557191073895],[119,140,76,-0.635578878223896],[119,140,77,-0.6338935866951942],[119,140,78,-0.6310396827757359],[119,140,79,-0.6276696994900703],[119,141,64,-0.6449158973991871],[119,141,65,-0.6442877277731895],[119,141,66,-0.6426311656832695],[119,141,67,-0.6405186280608177],[119,141,68,-0.6388130597770214],[119,141,69,-0.6381144747138023],[119,141,70,-0.6383215710520744],[119,141,71,-0.6389113739132881],[119,141,72,-0.6401205025613308],[119,141,73,-0.6418302766978741],[119,141,74,-0.6432535946369171],[119,141,75,-0.6438682191073895],[119,141,76,-0.643391378223896],[119,141,77,-0.6417060866951942],[119,141,78,-0.6388521827757359],[119,141,79,-0.6354821994900703],[119,142,64,-0.6527283973991871],[119,142,65,-0.6521002277731895],[119,142,66,-0.6504436656832695],[119,142,67,-0.6483311280608177],[119,142,68,-0.6466255597770214],[119,142,69,-0.6459269747138023],[119,142,70,-0.6461340710520744],[119,142,71,-0.6467238739132881],[119,142,72,-0.6479330025613308],[119,142,73,-0.6496427766978741],[119,142,74,-0.6510660946369171],[119,142,75,-0.6516807191073895],[119,142,76,-0.651203878223896],[119,142,77,-0.6495185866951942],[119,142,78,-0.6466646827757359],[119,142,79,-0.6432946994900703],[119,143,64,-0.6605408973991871],[119,143,65,-0.6599127277731895],[119,143,66,-0.6582561656832695],[119,143,67,-0.6561436280608177],[119,143,68,-0.6544380597770214],[119,143,69,-0.6537394747138023],[119,143,70,-0.6539465710520744],[119,143,71,-0.6545363739132881],[119,143,72,-0.6557455025613308],[119,143,73,-0.6574552766978741],[119,143,74,-0.6588785946369171],[119,143,75,-0.6594932191073895],[119,143,76,-0.659016378223896],[119,143,77,-0.6573310866951942],[119,143,78,-0.6544771827757359],[119,143,79,-0.6511071994900703],[119,144,64,-0.6683533973991871],[119,144,65,-0.6677252277731895],[119,144,66,-0.6660686656832695],[119,144,67,-0.6639561280608177],[119,144,68,-0.6622505597770214],[119,144,69,-0.6615519747138023],[119,144,70,-0.6617590710520744],[119,144,71,-0.6623488739132881],[119,144,72,-0.6635580025613308],[119,144,73,-0.6652677766978741],[119,144,74,-0.6666910946369171],[119,144,75,-0.6673057191073895],[119,144,76,-0.666828878223896],[119,144,77,-0.6651435866951942],[119,144,78,-0.6622896827757359],[119,144,79,-0.6589196994900703],[119,145,64,-0.6761658973991871],[119,145,65,-0.6755377277731895],[119,145,66,-0.6738811656832695],[119,145,67,-0.6717686280608177],[119,145,68,-0.6700630597770214],[119,145,69,-0.6693644747138023],[119,145,70,-0.6695715710520744],[119,145,71,-0.6701613739132881],[119,145,72,-0.6713705025613308],[119,145,73,-0.6730802766978741],[119,145,74,-0.6745035946369171],[119,145,75,-0.6751182191073895],[119,145,76,-0.674641378223896],[119,145,77,-0.6729560866951942],[119,145,78,-0.6701021827757359],[119,145,79,-0.6667321994900703],[119,146,64,-0.6839783973991871],[119,146,65,-0.6833502277731895],[119,146,66,-0.6816936656832695],[119,146,67,-0.6795811280608177],[119,146,68,-0.6778755597770214],[119,146,69,-0.6771769747138023],[119,146,70,-0.6773840710520744],[119,146,71,-0.6779738739132881],[119,146,72,-0.6791830025613308],[119,146,73,-0.6808927766978741],[119,146,74,-0.6823160946369171],[119,146,75,-0.6829307191073895],[119,146,76,-0.682453878223896],[119,146,77,-0.6807685866951942],[119,146,78,-0.6779146827757359],[119,146,79,-0.6745446994900703],[119,147,64,-0.6917908973991871],[119,147,65,-0.6911627277731895],[119,147,66,-0.6895061656832695],[119,147,67,-0.6873936280608177],[119,147,68,-0.6856880597770214],[119,147,69,-0.6849894747138023],[119,147,70,-0.6851965710520744],[119,147,71,-0.6857863739132881],[119,147,72,-0.6869955025613308],[119,147,73,-0.6887052766978741],[119,147,74,-0.6901285946369171],[119,147,75,-0.6907432191073895],[119,147,76,-0.690266378223896],[119,147,77,-0.6885810866951942],[119,147,78,-0.6857271827757359],[119,147,79,-0.6823571994900703],[119,148,64,-0.6996033973991871],[119,148,65,-0.6989752277731895],[119,148,66,-0.6973186656832695],[119,148,67,-0.6952061280608177],[119,148,68,-0.6935005597770214],[119,148,69,-0.6928019747138023],[119,148,70,-0.6930090710520744],[119,148,71,-0.6935988739132881],[119,148,72,-0.6948080025613308],[119,148,73,-0.6965177766978741],[119,148,74,-0.6979410946369171],[119,148,75,-0.6985557191073895],[119,148,76,-0.698078878223896],[119,148,77,-0.6963935866951942],[119,148,78,-0.6935396827757359],[119,148,79,-0.6901696994900703],[119,149,64,-0.7074158973991871],[119,149,65,-0.7067877277731895],[119,149,66,-0.7051311656832695],[119,149,67,-0.7030186280608177],[119,149,68,-0.7013130597770214],[119,149,69,-0.7006144747138023],[119,149,70,-0.7008215710520744],[119,149,71,-0.7014113739132881],[119,149,72,-0.7026205025613308],[119,149,73,-0.7043302766978741],[119,149,74,-0.7057535946369171],[119,149,75,-0.7063682191073895],[119,149,76,-0.705891378223896],[119,149,77,-0.7042060866951942],[119,149,78,-0.7013521827757359],[119,149,79,-0.6979821994900703],[119,150,64,-0.7152283973991871],[119,150,65,-0.7146002277731895],[119,150,66,-0.7129436656832695],[119,150,67,-0.7108311280608177],[119,150,68,-0.7091255597770214],[119,150,69,-0.7084269747138023],[119,150,70,-0.7086340710520744],[119,150,71,-0.7092238739132881],[119,150,72,-0.7104330025613308],[119,150,73,-0.7121427766978741],[119,150,74,-0.7135660946369171],[119,150,75,-0.7141807191073895],[119,150,76,-0.713703878223896],[119,150,77,-0.7120185866951942],[119,150,78,-0.7091646827757359],[119,150,79,-0.7057946994900703],[119,151,64,-0.7230408973991871],[119,151,65,-0.7224127277731895],[119,151,66,-0.7207561656832695],[119,151,67,-0.7186436280608177],[119,151,68,-0.7169380597770214],[119,151,69,-0.7162394747138023],[119,151,70,-0.7164465710520744],[119,151,71,-0.7170363739132881],[119,151,72,-0.7182455025613308],[119,151,73,-0.7199552766978741],[119,151,74,-0.7213785946369171],[119,151,75,-0.7219932191073895],[119,151,76,-0.721516378223896],[119,151,77,-0.7198310866951942],[119,151,78,-0.7169771827757359],[119,151,79,-0.7136071994900703],[119,152,64,-0.7308533973991871],[119,152,65,-0.7302252277731895],[119,152,66,-0.7285686656832695],[119,152,67,-0.7264561280608177],[119,152,68,-0.7247505597770214],[119,152,69,-0.7240519747138023],[119,152,70,-0.7242590710520744],[119,152,71,-0.7248488739132881],[119,152,72,-0.7260580025613308],[119,152,73,-0.7277677766978741],[119,152,74,-0.7291910946369171],[119,152,75,-0.7298057191073895],[119,152,76,-0.729328878223896],[119,152,77,-0.7276435866951942],[119,152,78,-0.7247896827757359],[119,152,79,-0.7214196994900703],[119,153,64,-0.7386658973991871],[119,153,65,-0.7380377277731895],[119,153,66,-0.7363811656832695],[119,153,67,-0.7342686280608177],[119,153,68,-0.7325630597770214],[119,153,69,-0.7318644747138023],[119,153,70,-0.7320715710520744],[119,153,71,-0.7326613739132881],[119,153,72,-0.7338705025613308],[119,153,73,-0.7355802766978741],[119,153,74,-0.7370035946369171],[119,153,75,-0.7376182191073895],[119,153,76,-0.737141378223896],[119,153,77,-0.7354560866951942],[119,153,78,-0.7326021827757359],[119,153,79,-0.7292321994900703],[119,154,64,-0.7464783973991871],[119,154,65,-0.7458502277731895],[119,154,66,-0.7441936656832695],[119,154,67,-0.7420811280608177],[119,154,68,-0.7403755597770214],[119,154,69,-0.7396769747138023],[119,154,70,-0.7398840710520744],[119,154,71,-0.7404738739132881],[119,154,72,-0.7416830025613308],[119,154,73,-0.7433927766978741],[119,154,74,-0.7448160946369171],[119,154,75,-0.7454307191073895],[119,154,76,-0.744953878223896],[119,154,77,-0.7432685866951942],[119,154,78,-0.7404146827757359],[119,154,79,-0.7370446994900703],[119,155,64,-0.7542908973991871],[119,155,65,-0.7536627277731895],[119,155,66,-0.7520061656832695],[119,155,67,-0.7498936280608177],[119,155,68,-0.7481880597770214],[119,155,69,-0.7474894747138023],[119,155,70,-0.7476965710520744],[119,155,71,-0.7482863739132881],[119,155,72,-0.7494955025613308],[119,155,73,-0.7512052766978741],[119,155,74,-0.7526285946369171],[119,155,75,-0.7532432191073895],[119,155,76,-0.752766378223896],[119,155,77,-0.7510810866951942],[119,155,78,-0.7482271827757359],[119,155,79,-0.7448571994900703],[119,156,64,-0.7621033973991871],[119,156,65,-0.7614752277731895],[119,156,66,-0.7598186656832695],[119,156,67,-0.7577061280608177],[119,156,68,-0.7560005597770214],[119,156,69,-0.7553019747138023],[119,156,70,-0.7555090710520744],[119,156,71,-0.7560988739132881],[119,156,72,-0.7573080025613308],[119,156,73,-0.7590177766978741],[119,156,74,-0.7604410946369171],[119,156,75,-0.7610557191073895],[119,156,76,-0.760578878223896],[119,156,77,-0.7588935866951942],[119,156,78,-0.7560396827757359],[119,156,79,-0.7526696994900703],[119,157,64,-0.7699158973991871],[119,157,65,-0.7692877277731895],[119,157,66,-0.7676311656832695],[119,157,67,-0.7655186280608177],[119,157,68,-0.7638130597770214],[119,157,69,-0.7631144747138023],[119,157,70,-0.7633215710520744],[119,157,71,-0.7639113739132881],[119,157,72,-0.7651205025613308],[119,157,73,-0.7668302766978741],[119,157,74,-0.7682535946369171],[119,157,75,-0.7688682191073895],[119,157,76,-0.768391378223896],[119,157,77,-0.7667060866951942],[119,157,78,-0.7638521827757359],[119,157,79,-0.7604821994900703],[119,158,64,-0.7777283973991871],[119,158,65,-0.7771002277731895],[119,158,66,-0.7754436656832695],[119,158,67,-0.7733311280608177],[119,158,68,-0.7716255597770214],[119,158,69,-0.7709269747138023],[119,158,70,-0.7711340710520744],[119,158,71,-0.7717238739132881],[119,158,72,-0.7729330025613308],[119,158,73,-0.7746427766978741],[119,158,74,-0.7760660946369171],[119,158,75,-0.7766807191073895],[119,158,76,-0.776203878223896],[119,158,77,-0.7745185866951942],[119,158,78,-0.7716646827757359],[119,158,79,-0.7682946994900703],[119,159,64,-0.7855408973991871],[119,159,65,-0.7849127277731895],[119,159,66,-0.7832561656832695],[119,159,67,-0.7811436280608177],[119,159,68,-0.7794380597770214],[119,159,69,-0.7787394747138023],[119,159,70,-0.7789465710520744],[119,159,71,-0.7795363739132881],[119,159,72,-0.7807455025613308],[119,159,73,-0.7824552766978741],[119,159,74,-0.7838785946369171],[119,159,75,-0.7844932191073895],[119,159,76,-0.784016378223896],[119,159,77,-0.7823310866951942],[119,159,78,-0.7794771827757359],[119,159,79,-0.7761071994900703],[119,160,64,-0.7933533973991871],[119,160,65,-0.7927252277731895],[119,160,66,-0.7910686656832695],[119,160,67,-0.7889561280608177],[119,160,68,-0.7872505597770214],[119,160,69,-0.7865519747138023],[119,160,70,-0.7867590710520744],[119,160,71,-0.7873488739132881],[119,160,72,-0.7885580025613308],[119,160,73,-0.7902677766978741],[119,160,74,-0.7916910946369171],[119,160,75,-0.7923057191073895],[119,160,76,-0.791828878223896],[119,160,77,-0.7901435866951942],[119,160,78,-0.7872896827757359],[119,160,79,-0.7839196994900703],[119,161,64,-0.8011658973991871],[119,161,65,-0.8005377277731895],[119,161,66,-0.7988811656832695],[119,161,67,-0.7967686280608177],[119,161,68,-0.7950630597770214],[119,161,69,-0.7943644747138023],[119,161,70,-0.7945715710520744],[119,161,71,-0.7951613739132881],[119,161,72,-0.7963705025613308],[119,161,73,-0.7980802766978741],[119,161,74,-0.7995035946369171],[119,161,75,-0.8001182191073895],[119,161,76,-0.799641378223896],[119,161,77,-0.7979560866951942],[119,161,78,-0.7951021827757359],[119,161,79,-0.7917321994900703],[119,162,64,-0.8089783973991871],[119,162,65,-0.8083502277731895],[119,162,66,-0.8066936656832695],[119,162,67,-0.8045811280608177],[119,162,68,-0.8028755597770214],[119,162,69,-0.8021769747138023],[119,162,70,-0.8023840710520744],[119,162,71,-0.8029738739132881],[119,162,72,-0.8041830025613308],[119,162,73,-0.8058927766978741],[119,162,74,-0.8073160946369171],[119,162,75,-0.8079307191073895],[119,162,76,-0.807453878223896],[119,162,77,-0.8057685866951942],[119,162,78,-0.8029146827757359],[119,162,79,-0.7995446994900703],[119,163,64,-0.8167908973991871],[119,163,65,-0.8161627277731895],[119,163,66,-0.8145061656832695],[119,163,67,-0.8123936280608177],[119,163,68,-0.8106880597770214],[119,163,69,-0.8099894747138023],[119,163,70,-0.8101965710520744],[119,163,71,-0.8107863739132881],[119,163,72,-0.8119955025613308],[119,163,73,-0.8137052766978741],[119,163,74,-0.8151285946369171],[119,163,75,-0.8157432191073895],[119,163,76,-0.815266378223896],[119,163,77,-0.8135810866951942],[119,163,78,-0.8107271827757359],[119,163,79,-0.8073571994900703],[119,164,64,-0.8246033973991871],[119,164,65,-0.8239752277731895],[119,164,66,-0.8223186656832695],[119,164,67,-0.8202061280608177],[119,164,68,-0.8185005597770214],[119,164,69,-0.8178019747138023],[119,164,70,-0.8180090710520744],[119,164,71,-0.8185988739132881],[119,164,72,-0.8198080025613308],[119,164,73,-0.8215177766978741],[119,164,74,-0.8229410946369171],[119,164,75,-0.8235557191073895],[119,164,76,-0.823078878223896],[119,164,77,-0.8213935866951942],[119,164,78,-0.8185396827757359],[119,164,79,-0.8151696994900703],[119,165,64,-0.8324158973991871],[119,165,65,-0.8317877277731895],[119,165,66,-0.8301311656832695],[119,165,67,-0.8280186280608177],[119,165,68,-0.8263130597770214],[119,165,69,-0.8256144747138023],[119,165,70,-0.8258215710520744],[119,165,71,-0.8264113739132881],[119,165,72,-0.8276205025613308],[119,165,73,-0.8293302766978741],[119,165,74,-0.8307535946369171],[119,165,75,-0.8313682191073895],[119,165,76,-0.830891378223896],[119,165,77,-0.8292060866951942],[119,165,78,-0.8263521827757359],[119,165,79,-0.8229821994900703],[119,166,64,-0.8402283973991871],[119,166,65,-0.8396002277731895],[119,166,66,-0.8379436656832695],[119,166,67,-0.8358311280608177],[119,166,68,-0.8341255597770214],[119,166,69,-0.8334269747138023],[119,166,70,-0.8336340710520744],[119,166,71,-0.8342238739132881],[119,166,72,-0.8354330025613308],[119,166,73,-0.8371427766978741],[119,166,74,-0.8385660946369171],[119,166,75,-0.8391807191073895],[119,166,76,-0.838703878223896],[119,166,77,-0.8370185866951942],[119,166,78,-0.8341646827757359],[119,166,79,-0.8307946994900703],[119,167,64,-0.8480408973991871],[119,167,65,-0.8474127277731895],[119,167,66,-0.8457561656832695],[119,167,67,-0.8436436280608177],[119,167,68,-0.8419380597770214],[119,167,69,-0.8412394747138023],[119,167,70,-0.8414465710520744],[119,167,71,-0.8420363739132881],[119,167,72,-0.8432455025613308],[119,167,73,-0.8449552766978741],[119,167,74,-0.8463785946369171],[119,167,75,-0.8469932191073895],[119,167,76,-0.846516378223896],[119,167,77,-0.8448310866951942],[119,167,78,-0.8419771827757359],[119,167,79,-0.8386071994900703],[119,168,64,-0.8558533973991871],[119,168,65,-0.8552252277731895],[119,168,66,-0.8535686656832695],[119,168,67,-0.8514561280608177],[119,168,68,-0.8497505597770214],[119,168,69,-0.8490519747138023],[119,168,70,-0.8492590710520744],[119,168,71,-0.8498488739132881],[119,168,72,-0.8510580025613308],[119,168,73,-0.8527677766978741],[119,168,74,-0.8541910946369171],[119,168,75,-0.8548057191073895],[119,168,76,-0.854328878223896],[119,168,77,-0.8526435866951942],[119,168,78,-0.8497896827757359],[119,168,79,-0.8464196994900703],[119,169,64,-0.8636658973991871],[119,169,65,-0.8630377277731895],[119,169,66,-0.8613811656832695],[119,169,67,-0.8592686280608177],[119,169,68,-0.8575630597770214],[119,169,69,-0.8568644747138023],[119,169,70,-0.8570715710520744],[119,169,71,-0.8576613739132881],[119,169,72,-0.8588705025613308],[119,169,73,-0.8605802766978741],[119,169,74,-0.8620035946369171],[119,169,75,-0.8626182191073895],[119,169,76,-0.862141378223896],[119,169,77,-0.8604560866951942],[119,169,78,-0.8576021827757359],[119,169,79,-0.8542321994900703],[119,170,64,-0.8714783973991871],[119,170,65,-0.8708502277731895],[119,170,66,-0.8691936656832695],[119,170,67,-0.8670811280608177],[119,170,68,-0.8653755597770214],[119,170,69,-0.8646769747138023],[119,170,70,-0.8648840710520744],[119,170,71,-0.8654738739132881],[119,170,72,-0.8666830025613308],[119,170,73,-0.8683927766978741],[119,170,74,-0.8698160946369171],[119,170,75,-0.8704307191073895],[119,170,76,-0.869953878223896],[119,170,77,-0.8682685866951942],[119,170,78,-0.8654146827757359],[119,170,79,-0.8620446994900703],[119,171,64,-0.8792908973991871],[119,171,65,-0.8786627277731895],[119,171,66,-0.8770061656832695],[119,171,67,-0.8748936280608177],[119,171,68,-0.8731880597770214],[119,171,69,-0.8724894747138023],[119,171,70,-0.8726965710520744],[119,171,71,-0.8732863739132881],[119,171,72,-0.8744955025613308],[119,171,73,-0.8762052766978741],[119,171,74,-0.8776285946369171],[119,171,75,-0.8782432191073895],[119,171,76,-0.877766378223896],[119,171,77,-0.8760810866951942],[119,171,78,-0.8732271827757359],[119,171,79,-0.8698571994900703],[119,172,64,-0.8871033973991871],[119,172,65,-0.8864752277731895],[119,172,66,-0.8848186656832695],[119,172,67,-0.8827061280608177],[119,172,68,-0.8810005597770214],[119,172,69,-0.8803019747138023],[119,172,70,-0.8805090710520744],[119,172,71,-0.8810988739132881],[119,172,72,-0.8823080025613308],[119,172,73,-0.8840177766978741],[119,172,74,-0.8854410946369171],[119,172,75,-0.8860557191073895],[119,172,76,-0.885578878223896],[119,172,77,-0.8838935866951942],[119,172,78,-0.8810396827757359],[119,172,79,-0.8776696994900703],[119,173,64,-0.8949158973991871],[119,173,65,-0.8942877277731895],[119,173,66,-0.8926311656832695],[119,173,67,-0.8905186280608177],[119,173,68,-0.8888130597770214],[119,173,69,-0.8881144747138023],[119,173,70,-0.8883215710520744],[119,173,71,-0.8889113739132881],[119,173,72,-0.8901205025613308],[119,173,73,-0.8918302766978741],[119,173,74,-0.8932535946369171],[119,173,75,-0.8938682191073895],[119,173,76,-0.893391378223896],[119,173,77,-0.8917060866951942],[119,173,78,-0.8888521827757359],[119,173,79,-0.8854821994900703],[119,174,64,-0.9027283973991871],[119,174,65,-0.9021002277731895],[119,174,66,-0.9004436656832695],[119,174,67,-0.8983311280608177],[119,174,68,-0.8966255597770214],[119,174,69,-0.8959269747138023],[119,174,70,-0.8961340710520744],[119,174,71,-0.8967238739132881],[119,174,72,-0.8979330025613308],[119,174,73,-0.8996427766978741],[119,174,74,-0.9010660946369171],[119,174,75,-0.9016807191073895],[119,174,76,-0.901203878223896],[119,174,77,-0.8995185866951942],[119,174,78,-0.8966646827757359],[119,174,79,-0.8932946994900703],[119,175,64,-0.9105408973991871],[119,175,65,-0.9099127277731895],[119,175,66,-0.9082561656832695],[119,175,67,-0.9061436280608177],[119,175,68,-0.9044380597770214],[119,175,69,-0.9037394747138023],[119,175,70,-0.9039465710520744],[119,175,71,-0.9045363739132881],[119,175,72,-0.9057455025613308],[119,175,73,-0.9074552766978741],[119,175,74,-0.9088785946369171],[119,175,75,-0.9094932191073895],[119,175,76,-0.909016378223896],[119,175,77,-0.9073310866951942],[119,175,78,-0.9044771827757359],[119,175,79,-0.9011071994900703],[119,176,64,-0.9183533973991871],[119,176,65,-0.9177252277731895],[119,176,66,-0.9160686656832695],[119,176,67,-0.9139561280608177],[119,176,68,-0.9122505597770214],[119,176,69,-0.9115519747138023],[119,176,70,-0.9117590710520744],[119,176,71,-0.9123488739132881],[119,176,72,-0.9135580025613308],[119,176,73,-0.9152677766978741],[119,176,74,-0.9166910946369171],[119,176,75,-0.9173057191073895],[119,176,76,-0.916828878223896],[119,176,77,-0.9151435866951942],[119,176,78,-0.9122896827757359],[119,176,79,-0.9089196994900703],[119,177,64,-0.9261658973991871],[119,177,65,-0.9255377277731895],[119,177,66,-0.9238811656832695],[119,177,67,-0.9217686280608177],[119,177,68,-0.9200630597770214],[119,177,69,-0.9193644747138023],[119,177,70,-0.9195715710520744],[119,177,71,-0.9201613739132881],[119,177,72,-0.9213705025613308],[119,177,73,-0.9230802766978741],[119,177,74,-0.9245035946369171],[119,177,75,-0.9251182191073895],[119,177,76,-0.924641378223896],[119,177,77,-0.9229560866951942],[119,177,78,-0.9201021827757359],[119,177,79,-0.9167321994900703],[119,178,64,-0.9339783973991871],[119,178,65,-0.9333502277731895],[119,178,66,-0.9316936656832695],[119,178,67,-0.9295811280608177],[119,178,68,-0.9278755597770214],[119,178,69,-0.9271769747138023],[119,178,70,-0.9273840710520744],[119,178,71,-0.9279738739132881],[119,178,72,-0.9291830025613308],[119,178,73,-0.9308927766978741],[119,178,74,-0.9323160946369171],[119,178,75,-0.9329307191073895],[119,178,76,-0.932453878223896],[119,178,77,-0.9307685866951942],[119,178,78,-0.9279146827757359],[119,178,79,-0.9245446994900703],[119,179,64,-0.9417908973991871],[119,179,65,-0.9411627277731895],[119,179,66,-0.9395061656832695],[119,179,67,-0.9373936280608177],[119,179,68,-0.9356880597770214],[119,179,69,-0.9349894747138023],[119,179,70,-0.9351965710520744],[119,179,71,-0.9357863739132881],[119,179,72,-0.9369955025613308],[119,179,73,-0.9387052766978741],[119,179,74,-0.9401285946369171],[119,179,75,-0.9407432191073895],[119,179,76,-0.940266378223896],[119,179,77,-0.9385810866951942],[119,179,78,-0.9357271827757359],[119,179,79,-0.9323571994900703],[119,180,64,-0.9496033973991871],[119,180,65,-0.9489752277731895],[119,180,66,-0.9473186656832695],[119,180,67,-0.9452061280608177],[119,180,68,-0.9435005597770214],[119,180,69,-0.9428019747138023],[119,180,70,-0.9430090710520744],[119,180,71,-0.9435988739132881],[119,180,72,-0.9448080025613308],[119,180,73,-0.9465177766978741],[119,180,74,-0.9479410946369171],[119,180,75,-0.9485557191073895],[119,180,76,-0.948078878223896],[119,180,77,-0.9463935866951942],[119,180,78,-0.9435396827757359],[119,180,79,-0.9401696994900703],[119,181,64,-0.9574158973991871],[119,181,65,-0.9567877277731895],[119,181,66,-0.9551311656832695],[119,181,67,-0.9530186280608177],[119,181,68,-0.9513130597770214],[119,181,69,-0.9506144747138023],[119,181,70,-0.9508215710520744],[119,181,71,-0.9514113739132881],[119,181,72,-0.9526205025613308],[119,181,73,-0.9543302766978741],[119,181,74,-0.9557535946369171],[119,181,75,-0.9563682191073895],[119,181,76,-0.955891378223896],[119,181,77,-0.9542060866951942],[119,181,78,-0.9513521827757359],[119,181,79,-0.9479821994900703],[119,182,64,-0.9652283973991871],[119,182,65,-0.9646002277731895],[119,182,66,-0.9629436656832695],[119,182,67,-0.9608311280608177],[119,182,68,-0.9591255597770214],[119,182,69,-0.9584269747138023],[119,182,70,-0.9586340710520744],[119,182,71,-0.9592238739132881],[119,182,72,-0.9604330025613308],[119,182,73,-0.9621427766978741],[119,182,74,-0.9635660946369171],[119,182,75,-0.9641807191073895],[119,182,76,-0.963703878223896],[119,182,77,-0.9620185866951942],[119,182,78,-0.9591646827757359],[119,182,79,-0.9557946994900703],[119,183,64,-0.9730408973991871],[119,183,65,-0.9724127277731895],[119,183,66,-0.9707561656832695],[119,183,67,-0.9686436280608177],[119,183,68,-0.9669380597770214],[119,183,69,-0.9662394747138023],[119,183,70,-0.9664465710520744],[119,183,71,-0.9670363739132881],[119,183,72,-0.9682455025613308],[119,183,73,-0.9699552766978741],[119,183,74,-0.9713785946369171],[119,183,75,-0.9719932191073895],[119,183,76,-0.971516378223896],[119,183,77,-0.9698310866951942],[119,183,78,-0.9669771827757359],[119,183,79,-0.9636071994900703],[119,184,64,-0.9808533973991871],[119,184,65,-0.9802252277731895],[119,184,66,-0.9785686656832695],[119,184,67,-0.9764561280608177],[119,184,68,-0.9747505597770214],[119,184,69,-0.9740519747138023],[119,184,70,-0.9742590710520744],[119,184,71,-0.9748488739132881],[119,184,72,-0.9760580025613308],[119,184,73,-0.9777677766978741],[119,184,74,-0.9791910946369171],[119,184,75,-0.9798057191073895],[119,184,76,-0.979328878223896],[119,184,77,-0.9776435866951942],[119,184,78,-0.9747896827757359],[119,184,79,-0.9714196994900703],[119,185,64,-0.9886658973991871],[119,185,65,-0.9880377277731895],[119,185,66,-0.9863811656832695],[119,185,67,-0.9842686280608177],[119,185,68,-0.9825630597770214],[119,185,69,-0.9818644747138023],[119,185,70,-0.9820715710520744],[119,185,71,-0.9826613739132881],[119,185,72,-0.9838705025613308],[119,185,73,-0.9855802766978741],[119,185,74,-0.9870035946369171],[119,185,75,-0.9876182191073895],[119,185,76,-0.987141378223896],[119,185,77,-0.9854560866951942],[119,185,78,-0.9826021827757359],[119,185,79,-0.9792321994900703],[119,186,64,-0.9964783973991871],[119,186,65,-0.9958502277731895],[119,186,66,-0.9941936656832695],[119,186,67,-0.9920811280608177],[119,186,68,-0.9903755597770214],[119,186,69,-0.9896769747138023],[119,186,70,-0.9898840710520744],[119,186,71,-0.9904738739132881],[119,186,72,-0.9916830025613308],[119,186,73,-0.9933927766978741],[119,186,74,-0.9948160946369171],[119,186,75,-0.9954307191073895],[119,186,76,-0.994953878223896],[119,186,77,-0.9932685866951942],[119,186,78,-0.9904146827757359],[119,186,79,-0.9870446994900703],[119,187,64,-1.004290897399187],[119,187,65,-1.0036627277731895],[119,187,66,-1.0020061656832695],[119,187,67,-0.9998936280608177],[119,187,68,-0.9981880597770214],[119,187,69,-0.9974894747138023],[119,187,70,-0.9976965710520744],[119,187,71,-0.9982863739132881],[119,187,72,-0.9994955025613308],[119,187,73,-1.001205276697874],[119,187,74,-1.0026285946369171],[119,187,75,-1.0032432191073895],[119,187,76,-1.002766378223896],[119,187,77,-1.0010810866951942],[119,187,78,-0.9982271827757359],[119,187,79,-0.9948571994900703],[119,188,64,-1.012103397399187],[119,188,65,-1.0114752277731895],[119,188,66,-1.0098186656832695],[119,188,67,-1.0077061280608177],[119,188,68,-1.0060005597770214],[119,188,69,-1.0053019747138023],[119,188,70,-1.0055090710520744],[119,188,71,-1.0060988739132881],[119,188,72,-1.0073080025613308],[119,188,73,-1.009017776697874],[119,188,74,-1.0104410946369171],[119,188,75,-1.0110557191073895],[119,188,76,-1.010578878223896],[119,188,77,-1.0088935866951942],[119,188,78,-1.0060396827757359],[119,188,79,-1.0026696994900703],[119,189,64,-1.019915897399187],[119,189,65,-1.0192877277731895],[119,189,66,-1.0176311656832695],[119,189,67,-1.0155186280608177],[119,189,68,-1.0138130597770214],[119,189,69,-1.0131144747138023],[119,189,70,-1.0133215710520744],[119,189,71,-1.0139113739132881],[119,189,72,-1.0151205025613308],[119,189,73,-1.016830276697874],[119,189,74,-1.0182535946369171],[119,189,75,-1.0188682191073895],[119,189,76,-1.018391378223896],[119,189,77,-1.0167060866951942],[119,189,78,-1.0138521827757359],[119,189,79,-1.0104821994900703],[119,190,64,-1.027728397399187],[119,190,65,-1.0271002277731895],[119,190,66,-1.0254436656832695],[119,190,67,-1.0233311280608177],[119,190,68,-1.0216255597770214],[119,190,69,-1.0209269747138023],[119,190,70,-1.0211340710520744],[119,190,71,-1.0217238739132881],[119,190,72,-1.0229330025613308],[119,190,73,-1.024642776697874],[119,190,74,-1.0260660946369171],[119,190,75,-1.0266807191073895],[119,190,76,-1.026203878223896],[119,190,77,-1.0245185866951942],[119,190,78,-1.0216646827757359],[119,190,79,-1.0182946994900703],[119,191,64,-1.035540897399187],[119,191,65,-1.0349127277731895],[119,191,66,-1.0332561656832695],[119,191,67,-1.0311436280608177],[119,191,68,-1.0294380597770214],[119,191,69,-1.0287394747138023],[119,191,70,-1.0289465710520744],[119,191,71,-1.0295363739132881],[119,191,72,-1.0307455025613308],[119,191,73,-1.032455276697874],[119,191,74,-1.0338785946369171],[119,191,75,-1.0344932191073895],[119,191,76,-1.034016378223896],[119,191,77,-1.0323310866951942],[119,191,78,-1.0294771827757359],[119,191,79,-1.0261071994900703],[119,192,64,-1.043353397399187],[119,192,65,-1.0427252277731895],[119,192,66,-1.0410686656832695],[119,192,67,-1.0389561280608177],[119,192,68,-1.0372505597770214],[119,192,69,-1.0365519747138023],[119,192,70,-1.0367590710520744],[119,192,71,-1.0373488739132881],[119,192,72,-1.0385580025613308],[119,192,73,-1.040267776697874],[119,192,74,-1.0416910946369171],[119,192,75,-1.0423057191073895],[119,192,76,-1.041828878223896],[119,192,77,-1.0401435866951942],[119,192,78,-1.0372896827757359],[119,192,79,-1.0339196994900703],[119,193,64,-1.051165897399187],[119,193,65,-1.0505377277731895],[119,193,66,-1.0488811656832695],[119,193,67,-1.0467686280608177],[119,193,68,-1.0450630597770214],[119,193,69,-1.0443644747138023],[119,193,70,-1.0445715710520744],[119,193,71,-1.0451613739132881],[119,193,72,-1.0463705025613308],[119,193,73,-1.048080276697874],[119,193,74,-1.0495035946369171],[119,193,75,-1.0501182191073895],[119,193,76,-1.049641378223896],[119,193,77,-1.0479560866951942],[119,193,78,-1.0451021827757359],[119,193,79,-1.0417321994900703],[119,194,64,-1.058978397399187],[119,194,65,-1.0583502277731895],[119,194,66,-1.0566936656832695],[119,194,67,-1.0545811280608177],[119,194,68,-1.0528755597770214],[119,194,69,-1.0521769747138023],[119,194,70,-1.0523840710520744],[119,194,71,-1.0529738739132881],[119,194,72,-1.0541830025613308],[119,194,73,-1.055892776697874],[119,194,74,-1.0573160946369171],[119,194,75,-1.0579307191073895],[119,194,76,-1.057453878223896],[119,194,77,-1.0557685866951942],[119,194,78,-1.0529146827757359],[119,194,79,-1.0495446994900703],[119,195,64,-1.066790897399187],[119,195,65,-1.0661627277731895],[119,195,66,-1.0645061656832695],[119,195,67,-1.0623936280608177],[119,195,68,-1.0606880597770214],[119,195,69,-1.0599894747138023],[119,195,70,-1.0601965710520744],[119,195,71,-1.0607863739132881],[119,195,72,-1.0619955025613308],[119,195,73,-1.063705276697874],[119,195,74,-1.0651285946369171],[119,195,75,-1.0657432191073895],[119,195,76,-1.065266378223896],[119,195,77,-1.0635810866951942],[119,195,78,-1.0607271827757359],[119,195,79,-1.0573571994900703],[119,196,64,-1.074603397399187],[119,196,65,-1.0739752277731895],[119,196,66,-1.0723186656832695],[119,196,67,-1.0702061280608177],[119,196,68,-1.0685005597770214],[119,196,69,-1.0678019747138023],[119,196,70,-1.0680090710520744],[119,196,71,-1.0685988739132881],[119,196,72,-1.0698080025613308],[119,196,73,-1.071517776697874],[119,196,74,-1.0729410946369171],[119,196,75,-1.0735557191073895],[119,196,76,-1.073078878223896],[119,196,77,-1.0713935866951942],[119,196,78,-1.0685396827757359],[119,196,79,-1.0651696994900703],[119,197,64,-1.082415897399187],[119,197,65,-1.0817877277731895],[119,197,66,-1.0801311656832695],[119,197,67,-1.0780186280608177],[119,197,68,-1.0763130597770214],[119,197,69,-1.0756144747138023],[119,197,70,-1.0758215710520744],[119,197,71,-1.0764113739132881],[119,197,72,-1.0776205025613308],[119,197,73,-1.079330276697874],[119,197,74,-1.0807535946369171],[119,197,75,-1.0813682191073895],[119,197,76,-1.080891378223896],[119,197,77,-1.0792060866951942],[119,197,78,-1.0763521827757359],[119,197,79,-1.0729821994900703],[119,198,64,-1.090228397399187],[119,198,65,-1.0896002277731895],[119,198,66,-1.0879436656832695],[119,198,67,-1.0858311280608177],[119,198,68,-1.0841255597770214],[119,198,69,-1.0834269747138023],[119,198,70,-1.0836340710520744],[119,198,71,-1.0842238739132881],[119,198,72,-1.0854330025613308],[119,198,73,-1.087142776697874],[119,198,74,-1.0885660946369171],[119,198,75,-1.0891807191073895],[119,198,76,-1.088703878223896],[119,198,77,-1.0870185866951942],[119,198,78,-1.0841646827757359],[119,198,79,-1.0807946994900703],[119,199,64,-1.098040897399187],[119,199,65,-1.0974127277731895],[119,199,66,-1.0957561656832695],[119,199,67,-1.0936436280608177],[119,199,68,-1.0919380597770214],[119,199,69,-1.0912394747138023],[119,199,70,-1.0914465710520744],[119,199,71,-1.0920363739132881],[119,199,72,-1.0932455025613308],[119,199,73,-1.094955276697874],[119,199,74,-1.0963785946369171],[119,199,75,-1.0969932191073895],[119,199,76,-1.096516378223896],[119,199,77,-1.0948310866951942],[119,199,78,-1.0919771827757359],[119,199,79,-1.0886071994900703],[119,200,64,-1.105853397399187],[119,200,65,-1.1052252277731895],[119,200,66,-1.1035686656832695],[119,200,67,-1.1014561280608177],[119,200,68,-1.0997505597770214],[119,200,69,-1.0990519747138023],[119,200,70,-1.0992590710520744],[119,200,71,-1.0998488739132881],[119,200,72,-1.1010580025613308],[119,200,73,-1.102767776697874],[119,200,74,-1.1041910946369171],[119,200,75,-1.1048057191073895],[119,200,76,-1.104328878223896],[119,200,77,-1.1026435866951942],[119,200,78,-1.0997896827757359],[119,200,79,-1.0964196994900703],[119,201,64,-1.113665897399187],[119,201,65,-1.1130377277731895],[119,201,66,-1.1113811656832695],[119,201,67,-1.1092686280608177],[119,201,68,-1.1075630597770214],[119,201,69,-1.1068644747138023],[119,201,70,-1.1070715710520744],[119,201,71,-1.1076613739132881],[119,201,72,-1.1088705025613308],[119,201,73,-1.110580276697874],[119,201,74,-1.1120035946369171],[119,201,75,-1.1126182191073895],[119,201,76,-1.112141378223896],[119,201,77,-1.1104560866951942],[119,201,78,-1.1076021827757359],[119,201,79,-1.1042321994900703],[119,202,64,-1.121478397399187],[119,202,65,-1.1208502277731895],[119,202,66,-1.1191936656832695],[119,202,67,-1.1170811280608177],[119,202,68,-1.1153755597770214],[119,202,69,-1.1146769747138023],[119,202,70,-1.1148840710520744],[119,202,71,-1.1154738739132881],[119,202,72,-1.1166830025613308],[119,202,73,-1.118392776697874],[119,202,74,-1.1198160946369171],[119,202,75,-1.1204307191073895],[119,202,76,-1.119953878223896],[119,202,77,-1.1182685866951942],[119,202,78,-1.1154146827757359],[119,202,79,-1.1120446994900703],[119,203,64,-1.129290897399187],[119,203,65,-1.1286627277731895],[119,203,66,-1.1270061656832695],[119,203,67,-1.1248936280608177],[119,203,68,-1.1231880597770214],[119,203,69,-1.1224894747138023],[119,203,70,-1.1226965710520744],[119,203,71,-1.1232863739132881],[119,203,72,-1.1244955025613308],[119,203,73,-1.126205276697874],[119,203,74,-1.1276285946369171],[119,203,75,-1.1282432191073895],[119,203,76,-1.127766378223896],[119,203,77,-1.1260810866951942],[119,203,78,-1.1232271827757359],[119,203,79,-1.1198571994900703],[119,204,64,-1.137103397399187],[119,204,65,-1.1364752277731895],[119,204,66,-1.1348186656832695],[119,204,67,-1.1327061280608177],[119,204,68,-1.1310005597770214],[119,204,69,-1.1303019747138023],[119,204,70,-1.1305090710520744],[119,204,71,-1.1310988739132881],[119,204,72,-1.1323080025613308],[119,204,73,-1.134017776697874],[119,204,74,-1.1354410946369171],[119,204,75,-1.1360557191073895],[119,204,76,-1.135578878223896],[119,204,77,-1.1338935866951942],[119,204,78,-1.1310396827757359],[119,204,79,-1.1276696994900703],[119,205,64,-1.144915897399187],[119,205,65,-1.1442877277731895],[119,205,66,-1.1426311656832695],[119,205,67,-1.1405186280608177],[119,205,68,-1.1388130597770214],[119,205,69,-1.1381144747138023],[119,205,70,-1.1383215710520744],[119,205,71,-1.1389113739132881],[119,205,72,-1.1401205025613308],[119,205,73,-1.141830276697874],[119,205,74,-1.1432535946369171],[119,205,75,-1.1438682191073895],[119,205,76,-1.143391378223896],[119,205,77,-1.1417060866951942],[119,205,78,-1.1388521827757359],[119,205,79,-1.1354821994900703],[119,206,64,-1.152728397399187],[119,206,65,-1.1521002277731895],[119,206,66,-1.1504436656832695],[119,206,67,-1.1483311280608177],[119,206,68,-1.1466255597770214],[119,206,69,-1.1459269747138023],[119,206,70,-1.1461340710520744],[119,206,71,-1.1467238739132881],[119,206,72,-1.1479330025613308],[119,206,73,-1.149642776697874],[119,206,74,-1.1510660946369171],[119,206,75,-1.1516807191073895],[119,206,76,-1.151203878223896],[119,206,77,-1.1495185866951942],[119,206,78,-1.1466646827757359],[119,206,79,-1.1432946994900703],[119,207,64,-1.160540897399187],[119,207,65,-1.1599127277731895],[119,207,66,-1.1582561656832695],[119,207,67,-1.1561436280608177],[119,207,68,-1.1544380597770214],[119,207,69,-1.1537394747138023],[119,207,70,-1.1539465710520744],[119,207,71,-1.1545363739132881],[119,207,72,-1.1557455025613308],[119,207,73,-1.157455276697874],[119,207,74,-1.1588785946369171],[119,207,75,-1.1594932191073895],[119,207,76,-1.159016378223896],[119,207,77,-1.1573310866951942],[119,207,78,-1.1544771827757359],[119,207,79,-1.1511071994900703],[119,208,64,-1.168353397399187],[119,208,65,-1.1677252277731895],[119,208,66,-1.1660686656832695],[119,208,67,-1.1639561280608177],[119,208,68,-1.1622505597770214],[119,208,69,-1.1615519747138023],[119,208,70,-1.1617590710520744],[119,208,71,-1.1623488739132881],[119,208,72,-1.1635580025613308],[119,208,73,-1.165267776697874],[119,208,74,-1.1666910946369171],[119,208,75,-1.1673057191073895],[119,208,76,-1.166828878223896],[119,208,77,-1.1651435866951942],[119,208,78,-1.1622896827757359],[119,208,79,-1.1589196994900703],[119,209,64,-1.176165897399187],[119,209,65,-1.1755377277731895],[119,209,66,-1.1738811656832695],[119,209,67,-1.1717686280608177],[119,209,68,-1.1700630597770214],[119,209,69,-1.1693644747138023],[119,209,70,-1.1695715710520744],[119,209,71,-1.1701613739132881],[119,209,72,-1.1713705025613308],[119,209,73,-1.173080276697874],[119,209,74,-1.1745035946369171],[119,209,75,-1.1751182191073895],[119,209,76,-1.174641378223896],[119,209,77,-1.1729560866951942],[119,209,78,-1.1701021827757359],[119,209,79,-1.1667321994900703],[119,210,64,-1.183978397399187],[119,210,65,-1.1833502277731895],[119,210,66,-1.1816936656832695],[119,210,67,-1.1795811280608177],[119,210,68,-1.1778755597770214],[119,210,69,-1.1771769747138023],[119,210,70,-1.1773840710520744],[119,210,71,-1.1779738739132881],[119,210,72,-1.1791830025613308],[119,210,73,-1.180892776697874],[119,210,74,-1.1823160946369171],[119,210,75,-1.1829307191073895],[119,210,76,-1.182453878223896],[119,210,77,-1.1807685866951942],[119,210,78,-1.1779146827757359],[119,210,79,-1.1745446994900703],[119,211,64,-1.191790897399187],[119,211,65,-1.1911627277731895],[119,211,66,-1.1895061656832695],[119,211,67,-1.1873936280608177],[119,211,68,-1.1856880597770214],[119,211,69,-1.1849894747138023],[119,211,70,-1.1851965710520744],[119,211,71,-1.1857863739132881],[119,211,72,-1.1869955025613308],[119,211,73,-1.188705276697874],[119,211,74,-1.1901285946369171],[119,211,75,-1.1907432191073895],[119,211,76,-1.190266378223896],[119,211,77,-1.1885810866951942],[119,211,78,-1.1857271827757359],[119,211,79,-1.1823571994900703],[119,212,64,-1.199603397399187],[119,212,65,-1.1989752277731895],[119,212,66,-1.1973186656832695],[119,212,67,-1.1952061280608177],[119,212,68,-1.1935005597770214],[119,212,69,-1.1928019747138023],[119,212,70,-1.1930090710520744],[119,212,71,-1.1935988739132881],[119,212,72,-1.1948080025613308],[119,212,73,-1.196517776697874],[119,212,74,-1.1979410946369171],[119,212,75,-1.1985557191073895],[119,212,76,-1.198078878223896],[119,212,77,-1.1963935866951942],[119,212,78,-1.1935396827757359],[119,212,79,-1.1901696994900703],[119,213,64,-1.207415897399187],[119,213,65,-1.2067877277731895],[119,213,66,-1.2051311656832695],[119,213,67,-1.2030186280608177],[119,213,68,-1.2013130597770214],[119,213,69,-1.2006144747138023],[119,213,70,-1.2008215710520744],[119,213,71,-1.2014113739132881],[119,213,72,-1.2026205025613308],[119,213,73,-1.204330276697874],[119,213,74,-1.2057535946369171],[119,213,75,-1.2063682191073895],[119,213,76,-1.205891378223896],[119,213,77,-1.2042060866951942],[119,213,78,-1.2013521827757359],[119,213,79,-1.1979821994900703],[119,214,64,-1.215228397399187],[119,214,65,-1.2146002277731895],[119,214,66,-1.2129436656832695],[119,214,67,-1.2108311280608177],[119,214,68,-1.2091255597770214],[119,214,69,-1.2084269747138023],[119,214,70,-1.2086340710520744],[119,214,71,-1.2092238739132881],[119,214,72,-1.2104330025613308],[119,214,73,-1.212142776697874],[119,214,74,-1.2135660946369171],[119,214,75,-1.2141807191073895],[119,214,76,-1.213703878223896],[119,214,77,-1.2120185866951942],[119,214,78,-1.2091646827757359],[119,214,79,-1.2057946994900703],[119,215,64,-1.223040897399187],[119,215,65,-1.2224127277731895],[119,215,66,-1.2207561656832695],[119,215,67,-1.2186436280608177],[119,215,68,-1.2169380597770214],[119,215,69,-1.2162394747138023],[119,215,70,-1.2164465710520744],[119,215,71,-1.2170363739132881],[119,215,72,-1.2182455025613308],[119,215,73,-1.219955276697874],[119,215,74,-1.2213785946369171],[119,215,75,-1.2219932191073895],[119,215,76,-1.221516378223896],[119,215,77,-1.2198310866951942],[119,215,78,-1.2169771827757359],[119,215,79,-1.2136071994900703],[119,216,64,-1.230853397399187],[119,216,65,-1.2302252277731895],[119,216,66,-1.2285686656832695],[119,216,67,-1.2264561280608177],[119,216,68,-1.2247505597770214],[119,216,69,-1.2240519747138023],[119,216,70,-1.2242590710520744],[119,216,71,-1.2248488739132881],[119,216,72,-1.2260580025613308],[119,216,73,-1.227767776697874],[119,216,74,-1.2291910946369171],[119,216,75,-1.2298057191073895],[119,216,76,-1.229328878223896],[119,216,77,-1.2276435866951942],[119,216,78,-1.2247896827757359],[119,216,79,-1.2214196994900703],[119,217,64,-1.238665897399187],[119,217,65,-1.2380377277731895],[119,217,66,-1.2363811656832695],[119,217,67,-1.2342686280608177],[119,217,68,-1.2325630597770214],[119,217,69,-1.2318644747138023],[119,217,70,-1.2320715710520744],[119,217,71,-1.2326613739132881],[119,217,72,-1.2338705025613308],[119,217,73,-1.235580276697874],[119,217,74,-1.2370035946369171],[119,217,75,-1.2376182191073895],[119,217,76,-1.237141378223896],[119,217,77,-1.2354560866951942],[119,217,78,-1.2326021827757359],[119,217,79,-1.2292321994900703],[119,218,64,-1.246478397399187],[119,218,65,-1.2458502277731895],[119,218,66,-1.2441936656832695],[119,218,67,-1.2420811280608177],[119,218,68,-1.2403755597770214],[119,218,69,-1.2396769747138023],[119,218,70,-1.2398840710520744],[119,218,71,-1.2404738739132881],[119,218,72,-1.2416830025613308],[119,218,73,-1.243392776697874],[119,218,74,-1.2448160946369171],[119,218,75,-1.2454307191073895],[119,218,76,-1.244953878223896],[119,218,77,-1.2432685866951942],[119,218,78,-1.2404146827757359],[119,218,79,-1.2370446994900703],[119,219,64,-1.254290897399187],[119,219,65,-1.2536627277731895],[119,219,66,-1.2520061656832695],[119,219,67,-1.2498936280608177],[119,219,68,-1.2481880597770214],[119,219,69,-1.2474894747138023],[119,219,70,-1.2476965710520744],[119,219,71,-1.2482863739132881],[119,219,72,-1.2494955025613308],[119,219,73,-1.251205276697874],[119,219,74,-1.2526285946369171],[119,219,75,-1.2532432191073895],[119,219,76,-1.252766378223896],[119,219,77,-1.2510810866951942],[119,219,78,-1.2482271827757359],[119,219,79,-1.2448571994900703],[119,220,64,-1.262103397399187],[119,220,65,-1.2614752277731895],[119,220,66,-1.2598186656832695],[119,220,67,-1.2577061280608177],[119,220,68,-1.2560005597770214],[119,220,69,-1.2553019747138023],[119,220,70,-1.2555090710520744],[119,220,71,-1.2560988739132881],[119,220,72,-1.2573080025613308],[119,220,73,-1.259017776697874],[119,220,74,-1.2604410946369171],[119,220,75,-1.2610557191073895],[119,220,76,-1.260578878223896],[119,220,77,-1.2588935866951942],[119,220,78,-1.2560396827757359],[119,220,79,-1.2526696994900703],[119,221,64,-1.269915897399187],[119,221,65,-1.2692877277731895],[119,221,66,-1.2676311656832695],[119,221,67,-1.2655186280608177],[119,221,68,-1.2638130597770214],[119,221,69,-1.2631144747138023],[119,221,70,-1.2633215710520744],[119,221,71,-1.2639113739132881],[119,221,72,-1.2651205025613308],[119,221,73,-1.266830276697874],[119,221,74,-1.2682535946369171],[119,221,75,-1.2688682191073895],[119,221,76,-1.268391378223896],[119,221,77,-1.2667060866951942],[119,221,78,-1.2638521827757359],[119,221,79,-1.2604821994900703],[119,222,64,-1.277728397399187],[119,222,65,-1.2771002277731895],[119,222,66,-1.2754436656832695],[119,222,67,-1.2733311280608177],[119,222,68,-1.2716255597770214],[119,222,69,-1.2709269747138023],[119,222,70,-1.2711340710520744],[119,222,71,-1.2717238739132881],[119,222,72,-1.2729330025613308],[119,222,73,-1.274642776697874],[119,222,74,-1.2760660946369171],[119,222,75,-1.2766807191073895],[119,222,76,-1.276203878223896],[119,222,77,-1.2745185866951942],[119,222,78,-1.2716646827757359],[119,222,79,-1.2682946994900703],[119,223,64,-1.285540897399187],[119,223,65,-1.2849127277731895],[119,223,66,-1.2832561656832695],[119,223,67,-1.2811436280608177],[119,223,68,-1.2794380597770214],[119,223,69,-1.2787394747138023],[119,223,70,-1.2789465710520744],[119,223,71,-1.2795363739132881],[119,223,72,-1.2807455025613308],[119,223,73,-1.282455276697874],[119,223,74,-1.2838785946369171],[119,223,75,-1.2844932191073895],[119,223,76,-1.284016378223896],[119,223,77,-1.2823310866951942],[119,223,78,-1.2794771827757359],[119,223,79,-1.2761071994900703],[119,224,64,-1.293353397399187],[119,224,65,-1.2927252277731895],[119,224,66,-1.2910686656832695],[119,224,67,-1.2889561280608177],[119,224,68,-1.2872505597770214],[119,224,69,-1.2865519747138023],[119,224,70,-1.2867590710520744],[119,224,71,-1.2873488739132881],[119,224,72,-1.2885580025613308],[119,224,73,-1.290267776697874],[119,224,74,-1.2916910946369171],[119,224,75,-1.2923057191073895],[119,224,76,-1.291828878223896],[119,224,77,-1.2901435866951942],[119,224,78,-1.2872896827757359],[119,224,79,-1.2839196994900703],[119,225,64,-1.301165897399187],[119,225,65,-1.3005377277731895],[119,225,66,-1.2988811656832695],[119,225,67,-1.2967686280608177],[119,225,68,-1.2950630597770214],[119,225,69,-1.2943644747138023],[119,225,70,-1.2945715710520744],[119,225,71,-1.2951613739132881],[119,225,72,-1.2963705025613308],[119,225,73,-1.298080276697874],[119,225,74,-1.2995035946369171],[119,225,75,-1.3001182191073895],[119,225,76,-1.299641378223896],[119,225,77,-1.2979560866951942],[119,225,78,-1.2951021827757359],[119,225,79,-1.2917321994900703],[119,226,64,-1.308978397399187],[119,226,65,-1.3083502277731895],[119,226,66,-1.3066936656832695],[119,226,67,-1.3045811280608177],[119,226,68,-1.3028755597770214],[119,226,69,-1.3021769747138023],[119,226,70,-1.3023840710520744],[119,226,71,-1.3029738739132881],[119,226,72,-1.3041830025613308],[119,226,73,-1.305892776697874],[119,226,74,-1.3073160946369171],[119,226,75,-1.3079307191073895],[119,226,76,-1.307453878223896],[119,226,77,-1.3057685866951942],[119,226,78,-1.3029146827757359],[119,226,79,-1.2995446994900703],[119,227,64,-1.316790897399187],[119,227,65,-1.3161627277731895],[119,227,66,-1.3145061656832695],[119,227,67,-1.3123936280608177],[119,227,68,-1.3106880597770214],[119,227,69,-1.3099894747138023],[119,227,70,-1.3101965710520744],[119,227,71,-1.3107863739132881],[119,227,72,-1.3119955025613308],[119,227,73,-1.313705276697874],[119,227,74,-1.3151285946369171],[119,227,75,-1.3157432191073895],[119,227,76,-1.315266378223896],[119,227,77,-1.3135810866951942],[119,227,78,-1.3107271827757359],[119,227,79,-1.3073571994900703],[119,228,64,-1.324603397399187],[119,228,65,-1.3239752277731895],[119,228,66,-1.3223186656832695],[119,228,67,-1.3202061280608177],[119,228,68,-1.3185005597770214],[119,228,69,-1.3178019747138023],[119,228,70,-1.3180090710520744],[119,228,71,-1.3185988739132881],[119,228,72,-1.3198080025613308],[119,228,73,-1.321517776697874],[119,228,74,-1.3229410946369171],[119,228,75,-1.3235557191073895],[119,228,76,-1.323078878223896],[119,228,77,-1.3213935866951942],[119,228,78,-1.3185396827757359],[119,228,79,-1.3151696994900703],[119,229,64,-1.332415897399187],[119,229,65,-1.3317877277731895],[119,229,66,-1.3301311656832695],[119,229,67,-1.3280186280608177],[119,229,68,-1.3263130597770214],[119,229,69,-1.3256144747138023],[119,229,70,-1.3258215710520744],[119,229,71,-1.3264113739132881],[119,229,72,-1.3276205025613308],[119,229,73,-1.329330276697874],[119,229,74,-1.3307535946369171],[119,229,75,-1.3313682191073895],[119,229,76,-1.330891378223896],[119,229,77,-1.3292060866951942],[119,229,78,-1.3263521827757359],[119,229,79,-1.3229821994900703],[119,230,64,-1.340228397399187],[119,230,65,-1.3396002277731895],[119,230,66,-1.3379436656832695],[119,230,67,-1.3358311280608177],[119,230,68,-1.3341255597770214],[119,230,69,-1.3334269747138023],[119,230,70,-1.3336340710520744],[119,230,71,-1.3342238739132881],[119,230,72,-1.3354330025613308],[119,230,73,-1.337142776697874],[119,230,74,-1.3385660946369171],[119,230,75,-1.3391807191073895],[119,230,76,-1.338703878223896],[119,230,77,-1.3370185866951942],[119,230,78,-1.3341646827757359],[119,230,79,-1.3307946994900703],[119,231,64,-1.348040897399187],[119,231,65,-1.3474127277731895],[119,231,66,-1.3457561656832695],[119,231,67,-1.3436436280608177],[119,231,68,-1.3419380597770214],[119,231,69,-1.3412394747138023],[119,231,70,-1.3414465710520744],[119,231,71,-1.3420363739132881],[119,231,72,-1.3432455025613308],[119,231,73,-1.344955276697874],[119,231,74,-1.3463785946369171],[119,231,75,-1.3469932191073895],[119,231,76,-1.346516378223896],[119,231,77,-1.3448310866951942],[119,231,78,-1.3419771827757359],[119,231,79,-1.3386071994900703],[119,232,64,-1.355853397399187],[119,232,65,-1.3552252277731895],[119,232,66,-1.3535686656832695],[119,232,67,-1.3514561280608177],[119,232,68,-1.3497505597770214],[119,232,69,-1.3490519747138023],[119,232,70,-1.3492590710520744],[119,232,71,-1.3498488739132881],[119,232,72,-1.3510580025613308],[119,232,73,-1.352767776697874],[119,232,74,-1.3541910946369171],[119,232,75,-1.3548057191073895],[119,232,76,-1.354328878223896],[119,232,77,-1.3526435866951942],[119,232,78,-1.3497896827757359],[119,232,79,-1.3464196994900703],[119,233,64,-1.363665897399187],[119,233,65,-1.3630377277731895],[119,233,66,-1.3613811656832695],[119,233,67,-1.3592686280608177],[119,233,68,-1.3575630597770214],[119,233,69,-1.3568644747138023],[119,233,70,-1.3570715710520744],[119,233,71,-1.3576613739132881],[119,233,72,-1.3588705025613308],[119,233,73,-1.360580276697874],[119,233,74,-1.3620035946369171],[119,233,75,-1.3626182191073895],[119,233,76,-1.362141378223896],[119,233,77,-1.3604560866951942],[119,233,78,-1.3576021827757359],[119,233,79,-1.3542321994900703],[119,234,64,-1.371478397399187],[119,234,65,-1.3708502277731895],[119,234,66,-1.3691936656832695],[119,234,67,-1.3670811280608177],[119,234,68,-1.3653755597770214],[119,234,69,-1.3646769747138023],[119,234,70,-1.3648840710520744],[119,234,71,-1.3654738739132881],[119,234,72,-1.3666830025613308],[119,234,73,-1.368392776697874],[119,234,74,-1.3698160946369171],[119,234,75,-1.3704307191073895],[119,234,76,-1.369953878223896],[119,234,77,-1.3682685866951942],[119,234,78,-1.3654146827757359],[119,234,79,-1.3620446994900703],[119,235,64,-1.379290897399187],[119,235,65,-1.3786627277731895],[119,235,66,-1.3770061656832695],[119,235,67,-1.3748936280608177],[119,235,68,-1.3731880597770214],[119,235,69,-1.3724894747138023],[119,235,70,-1.3726965710520744],[119,235,71,-1.3732863739132881],[119,235,72,-1.3744955025613308],[119,235,73,-1.376205276697874],[119,235,74,-1.3776285946369171],[119,235,75,-1.3782432191073895],[119,235,76,-1.377766378223896],[119,235,77,-1.3760810866951942],[119,235,78,-1.3732271827757359],[119,235,79,-1.3698571994900703],[119,236,64,-1.387103397399187],[119,236,65,-1.3864752277731895],[119,236,66,-1.3848186656832695],[119,236,67,-1.3827061280608177],[119,236,68,-1.3810005597770214],[119,236,69,-1.3803019747138023],[119,236,70,-1.3805090710520744],[119,236,71,-1.3810988739132881],[119,236,72,-1.3823080025613308],[119,236,73,-1.384017776697874],[119,236,74,-1.3854410946369171],[119,236,75,-1.3860557191073895],[119,236,76,-1.385578878223896],[119,236,77,-1.3838935866951942],[119,236,78,-1.3810396827757359],[119,236,79,-1.3776696994900703],[119,237,64,-1.394915897399187],[119,237,65,-1.3942877277731895],[119,237,66,-1.3926311656832695],[119,237,67,-1.3905186280608177],[119,237,68,-1.3888130597770214],[119,237,69,-1.3881144747138023],[119,237,70,-1.3883215710520744],[119,237,71,-1.3889113739132881],[119,237,72,-1.3901205025613308],[119,237,73,-1.391830276697874],[119,237,74,-1.3932535946369171],[119,237,75,-1.3938682191073895],[119,237,76,-1.393391378223896],[119,237,77,-1.3917060866951942],[119,237,78,-1.3888521827757359],[119,237,79,-1.3854821994900703],[119,238,64,-1.402728397399187],[119,238,65,-1.4021002277731895],[119,238,66,-1.4004436656832695],[119,238,67,-1.3983311280608177],[119,238,68,-1.3966255597770214],[119,238,69,-1.3959269747138023],[119,238,70,-1.3961340710520744],[119,238,71,-1.3967238739132881],[119,238,72,-1.3979330025613308],[119,238,73,-1.399642776697874],[119,238,74,-1.4010660946369171],[119,238,75,-1.4016807191073895],[119,238,76,-1.401203878223896],[119,238,77,-1.3995185866951942],[119,238,78,-1.3966646827757359],[119,238,79,-1.3932946994900703],[119,239,64,-1.410540897399187],[119,239,65,-1.4099127277731895],[119,239,66,-1.4082561656832695],[119,239,67,-1.4061436280608177],[119,239,68,-1.4044380597770214],[119,239,69,-1.4037394747138023],[119,239,70,-1.4039465710520744],[119,239,71,-1.4045363739132881],[119,239,72,-1.4057455025613308],[119,239,73,-1.407455276697874],[119,239,74,-1.4088785946369171],[119,239,75,-1.4094932191073895],[119,239,76,-1.409016378223896],[119,239,77,-1.4073310866951942],[119,239,78,-1.4044771827757359],[119,239,79,-1.4011071994900703],[119,240,64,-1.418353397399187],[119,240,65,-1.4177252277731895],[119,240,66,-1.4160686656832695],[119,240,67,-1.4139561280608177],[119,240,68,-1.4122505597770214],[119,240,69,-1.4115519747138023],[119,240,70,-1.4117590710520744],[119,240,71,-1.4123488739132881],[119,240,72,-1.4135580025613308],[119,240,73,-1.415267776697874],[119,240,74,-1.4166910946369171],[119,240,75,-1.4173057191073895],[119,240,76,-1.416828878223896],[119,240,77,-1.4151435866951942],[119,240,78,-1.4122896827757359],[119,240,79,-1.4089196994900703],[119,241,64,-1.426165897399187],[119,241,65,-1.4255377277731895],[119,241,66,-1.4238811656832695],[119,241,67,-1.4217686280608177],[119,241,68,-1.4200630597770214],[119,241,69,-1.4193644747138023],[119,241,70,-1.4195715710520744],[119,241,71,-1.4201613739132881],[119,241,72,-1.4213705025613308],[119,241,73,-1.423080276697874],[119,241,74,-1.4245035946369171],[119,241,75,-1.4251182191073895],[119,241,76,-1.424641378223896],[119,241,77,-1.4229560866951942],[119,241,78,-1.4201021827757359],[119,241,79,-1.4167321994900703],[119,242,64,-1.433978397399187],[119,242,65,-1.4333502277731895],[119,242,66,-1.4316936656832695],[119,242,67,-1.4295811280608177],[119,242,68,-1.4278755597770214],[119,242,69,-1.4271769747138023],[119,242,70,-1.4273840710520744],[119,242,71,-1.4279738739132881],[119,242,72,-1.4291830025613308],[119,242,73,-1.430892776697874],[119,242,74,-1.4323160946369171],[119,242,75,-1.4329307191073895],[119,242,76,-1.432453878223896],[119,242,77,-1.4307685866951942],[119,242,78,-1.4279146827757359],[119,242,79,-1.4245446994900703],[119,243,64,-1.441790897399187],[119,243,65,-1.4411627277731895],[119,243,66,-1.4395061656832695],[119,243,67,-1.4373936280608177],[119,243,68,-1.4356880597770214],[119,243,69,-1.4349894747138023],[119,243,70,-1.4351965710520744],[119,243,71,-1.4357863739132881],[119,243,72,-1.4369955025613308],[119,243,73,-1.438705276697874],[119,243,74,-1.4401285946369171],[119,243,75,-1.4407432191073895],[119,243,76,-1.440266378223896],[119,243,77,-1.4385810866951942],[119,243,78,-1.4357271827757359],[119,243,79,-1.4323571994900703],[119,244,64,-1.449603397399187],[119,244,65,-1.4489752277731895],[119,244,66,-1.4473186656832695],[119,244,67,-1.4452061280608177],[119,244,68,-1.4435005597770214],[119,244,69,-1.4428019747138023],[119,244,70,-1.4430090710520744],[119,244,71,-1.4435988739132881],[119,244,72,-1.4448080025613308],[119,244,73,-1.446517776697874],[119,244,74,-1.4479410946369171],[119,244,75,-1.4485557191073895],[119,244,76,-1.448078878223896],[119,244,77,-1.4463935866951942],[119,244,78,-1.4435396827757359],[119,244,79,-1.4401696994900703],[119,245,64,-1.457415897399187],[119,245,65,-1.4567877277731895],[119,245,66,-1.4551311656832695],[119,245,67,-1.4530186280608177],[119,245,68,-1.4513130597770214],[119,245,69,-1.4506144747138023],[119,245,70,-1.4508215710520744],[119,245,71,-1.4514113739132881],[119,245,72,-1.4526205025613308],[119,245,73,-1.454330276697874],[119,245,74,-1.4557535946369171],[119,245,75,-1.4563682191073895],[119,245,76,-1.455891378223896],[119,245,77,-1.4542060866951942],[119,245,78,-1.4513521827757359],[119,245,79,-1.4479821994900703],[119,246,64,-1.465228397399187],[119,246,65,-1.4646002277731895],[119,246,66,-1.4629436656832695],[119,246,67,-1.4608311280608177],[119,246,68,-1.4591255597770214],[119,246,69,-1.4584269747138023],[119,246,70,-1.4586340710520744],[119,246,71,-1.4592238739132881],[119,246,72,-1.4604330025613308],[119,246,73,-1.462142776697874],[119,246,74,-1.4635660946369171],[119,246,75,-1.4641807191073895],[119,246,76,-1.463703878223896],[119,246,77,-1.4620185866951942],[119,246,78,-1.4591646827757359],[119,246,79,-1.4557946994900703],[119,247,64,-1.473040897399187],[119,247,65,-1.4724127277731895],[119,247,66,-1.4707561656832695],[119,247,67,-1.4686436280608177],[119,247,68,-1.4669380597770214],[119,247,69,-1.4662394747138023],[119,247,70,-1.4664465710520744],[119,247,71,-1.4670363739132881],[119,247,72,-1.4682455025613308],[119,247,73,-1.469955276697874],[119,247,74,-1.4713785946369171],[119,247,75,-1.4719932191073895],[119,247,76,-1.471516378223896],[119,247,77,-1.4698310866951942],[119,247,78,-1.4669771827757359],[119,247,79,-1.4636071994900703],[119,248,64,-1.480853397399187],[119,248,65,-1.4802252277731895],[119,248,66,-1.4785686656832695],[119,248,67,-1.4764561280608177],[119,248,68,-1.4747505597770214],[119,248,69,-1.4740519747138023],[119,248,70,-1.4742590710520744],[119,248,71,-1.4748488739132881],[119,248,72,-1.4760580025613308],[119,248,73,-1.477767776697874],[119,248,74,-1.4791910946369171],[119,248,75,-1.4798057191073895],[119,248,76,-1.479328878223896],[119,248,77,-1.4776435866951942],[119,248,78,-1.4747896827757359],[119,248,79,-1.4714196994900703],[119,249,64,-1.488665897399187],[119,249,65,-1.4880377277731895],[119,249,66,-1.4863811656832695],[119,249,67,-1.4842686280608177],[119,249,68,-1.4825630597770214],[119,249,69,-1.4818644747138023],[119,249,70,-1.4820715710520744],[119,249,71,-1.4826613739132881],[119,249,72,-1.4838705025613308],[119,249,73,-1.485580276697874],[119,249,74,-1.4870035946369171],[119,249,75,-1.4876182191073895],[119,249,76,-1.487141378223896],[119,249,77,-1.4854560866951942],[119,249,78,-1.4826021827757359],[119,249,79,-1.4792321994900703],[119,250,64,-1.496478397399187],[119,250,65,-1.4958502277731895],[119,250,66,-1.4941936656832695],[119,250,67,-1.4920811280608177],[119,250,68,-1.4903755597770214],[119,250,69,-1.4896769747138023],[119,250,70,-1.4898840710520744],[119,250,71,-1.4904738739132881],[119,250,72,-1.4916830025613308],[119,250,73,-1.493392776697874],[119,250,74,-1.4948160946369171],[119,250,75,-1.4954307191073895],[119,250,76,-1.494953878223896],[119,250,77,-1.4932685866951942],[119,250,78,-1.4904146827757359],[119,250,79,-1.4870446994900703],[119,251,64,-1.504290897399187],[119,251,65,-1.5036627277731895],[119,251,66,-1.5020061656832695],[119,251,67,-1.4998936280608177],[119,251,68,-1.4981880597770214],[119,251,69,-1.4974894747138023],[119,251,70,-1.4976965710520744],[119,251,71,-1.4982863739132881],[119,251,72,-1.4994955025613308],[119,251,73,-1.501205276697874],[119,251,74,-1.5026285946369171],[119,251,75,-1.5032432191073895],[119,251,76,-1.502766378223896],[119,251,77,-1.5010810866951942],[119,251,78,-1.4982271827757359],[119,251,79,-1.4948571994900703],[119,252,64,-1.512103397399187],[119,252,65,-1.5114752277731895],[119,252,66,-1.5098186656832695],[119,252,67,-1.5077061280608177],[119,252,68,-1.5060005597770214],[119,252,69,-1.5053019747138023],[119,252,70,-1.5055090710520744],[119,252,71,-1.5060988739132881],[119,252,72,-1.5073080025613308],[119,252,73,-1.509017776697874],[119,252,74,-1.5104410946369171],[119,252,75,-1.5110557191073895],[119,252,76,-1.510578878223896],[119,252,77,-1.5088935866951942],[119,252,78,-1.5060396827757359],[119,252,79,-1.5026696994900703],[119,253,64,-1.519915897399187],[119,253,65,-1.5192877277731895],[119,253,66,-1.5176311656832695],[119,253,67,-1.5155186280608177],[119,253,68,-1.5138130597770214],[119,253,69,-1.5131144747138023],[119,253,70,-1.5133215710520744],[119,253,71,-1.5139113739132881],[119,253,72,-1.5151205025613308],[119,253,73,-1.516830276697874],[119,253,74,-1.5182535946369171],[119,253,75,-1.5188682191073895],[119,253,76,-1.518391378223896],[119,253,77,-1.5167060866951942],[119,253,78,-1.5138521827757359],[119,253,79,-1.5104821994900703],[119,254,64,-1.527728397399187],[119,254,65,-1.5271002277731895],[119,254,66,-1.5254436656832695],[119,254,67,-1.5233311280608177],[119,254,68,-1.5216255597770214],[119,254,69,-1.5209269747138023],[119,254,70,-1.5211340710520744],[119,254,71,-1.5217238739132881],[119,254,72,-1.5229330025613308],[119,254,73,-1.524642776697874],[119,254,74,-1.5260660946369171],[119,254,75,-1.5266807191073895],[119,254,76,-1.526203878223896],[119,254,77,-1.5245185866951942],[119,254,78,-1.5216646827757359],[119,254,79,-1.5182946994900703],[119,255,64,-1.535540897399187],[119,255,65,-1.5349127277731895],[119,255,66,-1.5332561656832695],[119,255,67,-1.5311436280608177],[119,255,68,-1.5294380597770214],[119,255,69,-1.5287394747138023],[119,255,70,-1.5289465710520744],[119,255,71,-1.5295363739132881],[119,255,72,-1.5307455025613308],[119,255,73,-1.532455276697874],[119,255,74,-1.5338785946369171],[119,255,75,-1.5344932191073895],[119,255,76,-1.534016378223896],[119,255,77,-1.5323310866951942],[119,255,78,-1.5294771827757359],[119,255,79,-1.5261071994900703],[119,256,64,-1.543353397399187],[119,256,65,-1.5427252277731895],[119,256,66,-1.5410686656832695],[119,256,67,-1.5389561280608177],[119,256,68,-1.5372505597770214],[119,256,69,-1.5365519747138023],[119,256,70,-1.5367590710520744],[119,256,71,-1.5373488739132881],[119,256,72,-1.5385580025613308],[119,256,73,-1.540267776697874],[119,256,74,-1.5416910946369171],[119,256,75,-1.5423057191073895],[119,256,76,-1.541828878223896],[119,256,77,-1.5401435866951942],[119,256,78,-1.5372896827757359],[119,256,79,-1.5339196994900703],[119,257,64,-1.551165897399187],[119,257,65,-1.5505377277731895],[119,257,66,-1.5488811656832695],[119,257,67,-1.5467686280608177],[119,257,68,-1.5450630597770214],[119,257,69,-1.5443644747138023],[119,257,70,-1.5445715710520744],[119,257,71,-1.5451613739132881],[119,257,72,-1.5463705025613308],[119,257,73,-1.548080276697874],[119,257,74,-1.5495035946369171],[119,257,75,-1.5501182191073895],[119,257,76,-1.549641378223896],[119,257,77,-1.5479560866951942],[119,257,78,-1.5451021827757359],[119,257,79,-1.5417321994900703],[119,258,64,-1.558978397399187],[119,258,65,-1.5583502277731895],[119,258,66,-1.5566936656832695],[119,258,67,-1.5545811280608177],[119,258,68,-1.5528755597770214],[119,258,69,-1.5521769747138023],[119,258,70,-1.5523840710520744],[119,258,71,-1.5529738739132881],[119,258,72,-1.5541830025613308],[119,258,73,-1.555892776697874],[119,258,74,-1.5573160946369171],[119,258,75,-1.5579307191073895],[119,258,76,-1.557453878223896],[119,258,77,-1.5557685866951942],[119,258,78,-1.5529146827757359],[119,258,79,-1.5495446994900703],[119,259,64,-1.566790897399187],[119,259,65,-1.5661627277731895],[119,259,66,-1.5645061656832695],[119,259,67,-1.5623936280608177],[119,259,68,-1.5606880597770214],[119,259,69,-1.5599894747138023],[119,259,70,-1.5601965710520744],[119,259,71,-1.5607863739132881],[119,259,72,-1.5619955025613308],[119,259,73,-1.563705276697874],[119,259,74,-1.5651285946369171],[119,259,75,-1.5657432191073895],[119,259,76,-1.565266378223896],[119,259,77,-1.5635810866951942],[119,259,78,-1.5607271827757359],[119,259,79,-1.5573571994900703],[119,260,64,-1.574603397399187],[119,260,65,-1.5739752277731895],[119,260,66,-1.5723186656832695],[119,260,67,-1.5702061280608177],[119,260,68,-1.5685005597770214],[119,260,69,-1.5678019747138023],[119,260,70,-1.5680090710520744],[119,260,71,-1.5685988739132881],[119,260,72,-1.5698080025613308],[119,260,73,-1.571517776697874],[119,260,74,-1.5729410946369171],[119,260,75,-1.5735557191073895],[119,260,76,-1.573078878223896],[119,260,77,-1.5713935866951942],[119,260,78,-1.5685396827757359],[119,260,79,-1.5651696994900703],[119,261,64,-1.582415897399187],[119,261,65,-1.5817877277731895],[119,261,66,-1.5801311656832695],[119,261,67,-1.5780186280608177],[119,261,68,-1.5763130597770214],[119,261,69,-1.5756144747138023],[119,261,70,-1.5758215710520744],[119,261,71,-1.5764113739132881],[119,261,72,-1.5776205025613308],[119,261,73,-1.579330276697874],[119,261,74,-1.5807535946369171],[119,261,75,-1.5813682191073895],[119,261,76,-1.580891378223896],[119,261,77,-1.5792060866951942],[119,261,78,-1.5763521827757359],[119,261,79,-1.5729821994900703],[119,262,64,-1.590228397399187],[119,262,65,-1.5896002277731895],[119,262,66,-1.5879436656832695],[119,262,67,-1.5858311280608177],[119,262,68,-1.5841255597770214],[119,262,69,-1.5834269747138023],[119,262,70,-1.5836340710520744],[119,262,71,-1.5842238739132881],[119,262,72,-1.5854330025613308],[119,262,73,-1.587142776697874],[119,262,74,-1.5885660946369171],[119,262,75,-1.5891807191073895],[119,262,76,-1.588703878223896],[119,262,77,-1.5870185866951942],[119,262,78,-1.5841646827757359],[119,262,79,-1.5807946994900703],[119,263,64,-1.598040897399187],[119,263,65,-1.5974127277731895],[119,263,66,-1.5957561656832695],[119,263,67,-1.5936436280608177],[119,263,68,-1.5919380597770214],[119,263,69,-1.5912394747138023],[119,263,70,-1.5914465710520744],[119,263,71,-1.5920363739132881],[119,263,72,-1.5932455025613308],[119,263,73,-1.594955276697874],[119,263,74,-1.5963785946369171],[119,263,75,-1.5969932191073895],[119,263,76,-1.596516378223896],[119,263,77,-1.5948310866951942],[119,263,78,-1.5919771827757359],[119,263,79,-1.5886071994900703],[119,264,64,-1.605853397399187],[119,264,65,-1.6052252277731895],[119,264,66,-1.6035686656832695],[119,264,67,-1.6014561280608177],[119,264,68,-1.5997505597770214],[119,264,69,-1.5990519747138023],[119,264,70,-1.5992590710520744],[119,264,71,-1.5998488739132881],[119,264,72,-1.6010580025613308],[119,264,73,-1.602767776697874],[119,264,74,-1.6041910946369171],[119,264,75,-1.6048057191073895],[119,264,76,-1.604328878223896],[119,264,77,-1.6026435866951942],[119,264,78,-1.5997896827757359],[119,264,79,-1.5964196994900703],[119,265,64,-1.613665897399187],[119,265,65,-1.6130377277731895],[119,265,66,-1.6113811656832695],[119,265,67,-1.6092686280608177],[119,265,68,-1.6075630597770214],[119,265,69,-1.6068644747138023],[119,265,70,-1.6070715710520744],[119,265,71,-1.6076613739132881],[119,265,72,-1.6088705025613308],[119,265,73,-1.610580276697874],[119,265,74,-1.6120035946369171],[119,265,75,-1.6126182191073895],[119,265,76,-1.612141378223896],[119,265,77,-1.6104560866951942],[119,265,78,-1.6076021827757359],[119,265,79,-1.6042321994900703],[119,266,64,-1.621478397399187],[119,266,65,-1.6208502277731895],[119,266,66,-1.6191936656832695],[119,266,67,-1.6170811280608177],[119,266,68,-1.6153755597770214],[119,266,69,-1.6146769747138023],[119,266,70,-1.6148840710520744],[119,266,71,-1.6154738739132881],[119,266,72,-1.6166830025613308],[119,266,73,-1.618392776697874],[119,266,74,-1.6198160946369171],[119,266,75,-1.6204307191073895],[119,266,76,-1.619953878223896],[119,266,77,-1.6182685866951942],[119,266,78,-1.6154146827757359],[119,266,79,-1.6120446994900703],[119,267,64,-1.629290897399187],[119,267,65,-1.6286627277731895],[119,267,66,-1.6270061656832695],[119,267,67,-1.6248936280608177],[119,267,68,-1.6231880597770214],[119,267,69,-1.6224894747138023],[119,267,70,-1.6226965710520744],[119,267,71,-1.6232863739132881],[119,267,72,-1.6244955025613308],[119,267,73,-1.626205276697874],[119,267,74,-1.6276285946369171],[119,267,75,-1.6282432191073895],[119,267,76,-1.627766378223896],[119,267,77,-1.6260810866951942],[119,267,78,-1.6232271827757359],[119,267,79,-1.6198571994900703],[119,268,64,-1.637103397399187],[119,268,65,-1.6364752277731895],[119,268,66,-1.6348186656832695],[119,268,67,-1.6327061280608177],[119,268,68,-1.6310005597770214],[119,268,69,-1.6303019747138023],[119,268,70,-1.6305090710520744],[119,268,71,-1.6310988739132881],[119,268,72,-1.6323080025613308],[119,268,73,-1.634017776697874],[119,268,74,-1.6354410946369171],[119,268,75,-1.6360557191073895],[119,268,76,-1.635578878223896],[119,268,77,-1.6338935866951942],[119,268,78,-1.6310396827757359],[119,268,79,-1.6276696994900703],[119,269,64,-1.644915897399187],[119,269,65,-1.6442877277731895],[119,269,66,-1.6426311656832695],[119,269,67,-1.6405186280608177],[119,269,68,-1.6388130597770214],[119,269,69,-1.6381144747138023],[119,269,70,-1.6383215710520744],[119,269,71,-1.6389113739132881],[119,269,72,-1.6401205025613308],[119,269,73,-1.641830276697874],[119,269,74,-1.6432535946369171],[119,269,75,-1.6438682191073895],[119,269,76,-1.643391378223896],[119,269,77,-1.6417060866951942],[119,269,78,-1.6388521827757359],[119,269,79,-1.6354821994900703],[119,270,64,-1.652728397399187],[119,270,65,-1.6521002277731895],[119,270,66,-1.6504436656832695],[119,270,67,-1.6483311280608177],[119,270,68,-1.6466255597770214],[119,270,69,-1.6459269747138023],[119,270,70,-1.6461340710520744],[119,270,71,-1.6467238739132881],[119,270,72,-1.6479330025613308],[119,270,73,-1.649642776697874],[119,270,74,-1.6510660946369171],[119,270,75,-1.6516807191073895],[119,270,76,-1.651203878223896],[119,270,77,-1.6495185866951942],[119,270,78,-1.6466646827757359],[119,270,79,-1.6432946994900703],[119,271,64,-1.660540897399187],[119,271,65,-1.6599127277731895],[119,271,66,-1.6582561656832695],[119,271,67,-1.6561436280608177],[119,271,68,-1.6544380597770214],[119,271,69,-1.6537394747138023],[119,271,70,-1.6539465710520744],[119,271,71,-1.6545363739132881],[119,271,72,-1.6557455025613308],[119,271,73,-1.657455276697874],[119,271,74,-1.6588785946369171],[119,271,75,-1.6594932191073895],[119,271,76,-1.659016378223896],[119,271,77,-1.6573310866951942],[119,271,78,-1.6544771827757359],[119,271,79,-1.6511071994900703],[119,272,64,-1.668353397399187],[119,272,65,-1.6677252277731895],[119,272,66,-1.6660686656832695],[119,272,67,-1.6639561280608177],[119,272,68,-1.6622505597770214],[119,272,69,-1.6615519747138023],[119,272,70,-1.6617590710520744],[119,272,71,-1.6623488739132881],[119,272,72,-1.6635580025613308],[119,272,73,-1.665267776697874],[119,272,74,-1.6666910946369171],[119,272,75,-1.6673057191073895],[119,272,76,-1.666828878223896],[119,272,77,-1.6651435866951942],[119,272,78,-1.6622896827757359],[119,272,79,-1.6589196994900703],[119,273,64,-1.676165897399187],[119,273,65,-1.6755377277731895],[119,273,66,-1.6738811656832695],[119,273,67,-1.6717686280608177],[119,273,68,-1.6700630597770214],[119,273,69,-1.6693644747138023],[119,273,70,-1.6695715710520744],[119,273,71,-1.6701613739132881],[119,273,72,-1.6713705025613308],[119,273,73,-1.673080276697874],[119,273,74,-1.6745035946369171],[119,273,75,-1.6751182191073895],[119,273,76,-1.674641378223896],[119,273,77,-1.6729560866951942],[119,273,78,-1.6701021827757359],[119,273,79,-1.6667321994900703],[119,274,64,-1.683978397399187],[119,274,65,-1.6833502277731895],[119,274,66,-1.6816936656832695],[119,274,67,-1.6795811280608177],[119,274,68,-1.6778755597770214],[119,274,69,-1.6771769747138023],[119,274,70,-1.6773840710520744],[119,274,71,-1.6779738739132881],[119,274,72,-1.6791830025613308],[119,274,73,-1.680892776697874],[119,274,74,-1.6823160946369171],[119,274,75,-1.6829307191073895],[119,274,76,-1.682453878223896],[119,274,77,-1.6807685866951942],[119,274,78,-1.6779146827757359],[119,274,79,-1.6745446994900703],[119,275,64,-1.691790897399187],[119,275,65,-1.6911627277731895],[119,275,66,-1.6895061656832695],[119,275,67,-1.6873936280608177],[119,275,68,-1.6856880597770214],[119,275,69,-1.6849894747138023],[119,275,70,-1.6851965710520744],[119,275,71,-1.6857863739132881],[119,275,72,-1.6869955025613308],[119,275,73,-1.688705276697874],[119,275,74,-1.6901285946369171],[119,275,75,-1.6907432191073895],[119,275,76,-1.690266378223896],[119,275,77,-1.6885810866951942],[119,275,78,-1.6857271827757359],[119,275,79,-1.6823571994900703],[119,276,64,-1.699603397399187],[119,276,65,-1.6989752277731895],[119,276,66,-1.6973186656832695],[119,276,67,-1.6952061280608177],[119,276,68,-1.6935005597770214],[119,276,69,-1.6928019747138023],[119,276,70,-1.6930090710520744],[119,276,71,-1.6935988739132881],[119,276,72,-1.6948080025613308],[119,276,73,-1.696517776697874],[119,276,74,-1.6979410946369171],[119,276,75,-1.6985557191073895],[119,276,76,-1.698078878223896],[119,276,77,-1.6963935866951942],[119,276,78,-1.6935396827757359],[119,276,79,-1.6901696994900703],[119,277,64,-1.707415897399187],[119,277,65,-1.7067877277731895],[119,277,66,-1.7051311656832695],[119,277,67,-1.7030186280608177],[119,277,68,-1.7013130597770214],[119,277,69,-1.7006144747138023],[119,277,70,-1.7008215710520744],[119,277,71,-1.7014113739132881],[119,277,72,-1.7026205025613308],[119,277,73,-1.704330276697874],[119,277,74,-1.7057535946369171],[119,277,75,-1.7063682191073895],[119,277,76,-1.705891378223896],[119,277,77,-1.7042060866951942],[119,277,78,-1.7013521827757359],[119,277,79,-1.6979821994900703],[119,278,64,-1.715228397399187],[119,278,65,-1.7146002277731895],[119,278,66,-1.7129436656832695],[119,278,67,-1.7108311280608177],[119,278,68,-1.7091255597770214],[119,278,69,-1.7084269747138023],[119,278,70,-1.7086340710520744],[119,278,71,-1.7092238739132881],[119,278,72,-1.7104330025613308],[119,278,73,-1.712142776697874],[119,278,74,-1.7135660946369171],[119,278,75,-1.7141807191073895],[119,278,76,-1.713703878223896],[119,278,77,-1.7120185866951942],[119,278,78,-1.7091646827757359],[119,278,79,-1.7057946994900703],[119,279,64,-1.723040897399187],[119,279,65,-1.7224127277731895],[119,279,66,-1.7207561656832695],[119,279,67,-1.7186436280608177],[119,279,68,-1.7169380597770214],[119,279,69,-1.7162394747138023],[119,279,70,-1.7164465710520744],[119,279,71,-1.7170363739132881],[119,279,72,-1.7182455025613308],[119,279,73,-1.719955276697874],[119,279,74,-1.7213785946369171],[119,279,75,-1.7219932191073895],[119,279,76,-1.721516378223896],[119,279,77,-1.7198310866951942],[119,279,78,-1.7169771827757359],[119,279,79,-1.7136071994900703],[119,280,64,-1.730853397399187],[119,280,65,-1.7302252277731895],[119,280,66,-1.7285686656832695],[119,280,67,-1.7264561280608177],[119,280,68,-1.7247505597770214],[119,280,69,-1.7240519747138023],[119,280,70,-1.7242590710520744],[119,280,71,-1.7248488739132881],[119,280,72,-1.7260580025613308],[119,280,73,-1.727767776697874],[119,280,74,-1.7291910946369171],[119,280,75,-1.7298057191073895],[119,280,76,-1.729328878223896],[119,280,77,-1.7276435866951942],[119,280,78,-1.7247896827757359],[119,280,79,-1.7214196994900703],[119,281,64,-1.738665897399187],[119,281,65,-1.7380377277731895],[119,281,66,-1.7363811656832695],[119,281,67,-1.7342686280608177],[119,281,68,-1.7325630597770214],[119,281,69,-1.7318644747138023],[119,281,70,-1.7320715710520744],[119,281,71,-1.7326613739132881],[119,281,72,-1.7338705025613308],[119,281,73,-1.735580276697874],[119,281,74,-1.7370035946369171],[119,281,75,-1.7376182191073895],[119,281,76,-1.737141378223896],[119,281,77,-1.7354560866951942],[119,281,78,-1.7326021827757359],[119,281,79,-1.7292321994900703],[119,282,64,-1.746478397399187],[119,282,65,-1.7458502277731895],[119,282,66,-1.7441936656832695],[119,282,67,-1.7420811280608177],[119,282,68,-1.7403755597770214],[119,282,69,-1.7396769747138023],[119,282,70,-1.7398840710520744],[119,282,71,-1.7404738739132881],[119,282,72,-1.7416830025613308],[119,282,73,-1.743392776697874],[119,282,74,-1.7448160946369171],[119,282,75,-1.7454307191073895],[119,282,76,-1.744953878223896],[119,282,77,-1.7432685866951942],[119,282,78,-1.7404146827757359],[119,282,79,-1.7370446994900703],[119,283,64,-1.754290897399187],[119,283,65,-1.7536627277731895],[119,283,66,-1.7520061656832695],[119,283,67,-1.7498936280608177],[119,283,68,-1.7481880597770214],[119,283,69,-1.7474894747138023],[119,283,70,-1.7476965710520744],[119,283,71,-1.7482863739132881],[119,283,72,-1.7494955025613308],[119,283,73,-1.751205276697874],[119,283,74,-1.7526285946369171],[119,283,75,-1.7532432191073895],[119,283,76,-1.752766378223896],[119,283,77,-1.7510810866951942],[119,283,78,-1.7482271827757359],[119,283,79,-1.7448571994900703],[119,284,64,-1.762103397399187],[119,284,65,-1.7614752277731895],[119,284,66,-1.7598186656832695],[119,284,67,-1.7577061280608177],[119,284,68,-1.7560005597770214],[119,284,69,-1.7553019747138023],[119,284,70,-1.7555090710520744],[119,284,71,-1.7560988739132881],[119,284,72,-1.7573080025613308],[119,284,73,-1.759017776697874],[119,284,74,-1.7604410946369171],[119,284,75,-1.7610557191073895],[119,284,76,-1.760578878223896],[119,284,77,-1.7588935866951942],[119,284,78,-1.7560396827757359],[119,284,79,-1.7526696994900703],[119,285,64,-1.769915897399187],[119,285,65,-1.7692877277731895],[119,285,66,-1.7676311656832695],[119,285,67,-1.7655186280608177],[119,285,68,-1.7638130597770214],[119,285,69,-1.7631144747138023],[119,285,70,-1.7633215710520744],[119,285,71,-1.7639113739132881],[119,285,72,-1.7651205025613308],[119,285,73,-1.766830276697874],[119,285,74,-1.7682535946369171],[119,285,75,-1.7688682191073895],[119,285,76,-1.768391378223896],[119,285,77,-1.7667060866951942],[119,285,78,-1.7638521827757359],[119,285,79,-1.7604821994900703],[119,286,64,-1.777728397399187],[119,286,65,-1.7771002277731895],[119,286,66,-1.7754436656832695],[119,286,67,-1.7733311280608177],[119,286,68,-1.7716255597770214],[119,286,69,-1.7709269747138023],[119,286,70,-1.7711340710520744],[119,286,71,-1.7717238739132881],[119,286,72,-1.7729330025613308],[119,286,73,-1.774642776697874],[119,286,74,-1.7760660946369171],[119,286,75,-1.7766807191073895],[119,286,76,-1.776203878223896],[119,286,77,-1.7745185866951942],[119,286,78,-1.7716646827757359],[119,286,79,-1.7682946994900703],[119,287,64,-1.785540897399187],[119,287,65,-1.7849127277731895],[119,287,66,-1.7832561656832695],[119,287,67,-1.7811436280608177],[119,287,68,-1.7794380597770214],[119,287,69,-1.7787394747138023],[119,287,70,-1.7789465710520744],[119,287,71,-1.7795363739132881],[119,287,72,-1.7807455025613308],[119,287,73,-1.782455276697874],[119,287,74,-1.7838785946369171],[119,287,75,-1.7844932191073895],[119,287,76,-1.784016378223896],[119,287,77,-1.7823310866951942],[119,287,78,-1.7794771827757359],[119,287,79,-1.7761071994900703],[119,288,64,-1.793353397399187],[119,288,65,-1.7927252277731895],[119,288,66,-1.7910686656832695],[119,288,67,-1.7889561280608177],[119,288,68,-1.7872505597770214],[119,288,69,-1.7865519747138023],[119,288,70,-1.7867590710520744],[119,288,71,-1.7873488739132881],[119,288,72,-1.7885580025613308],[119,288,73,-1.790267776697874],[119,288,74,-1.7916910946369171],[119,288,75,-1.7923057191073895],[119,288,76,-1.791828878223896],[119,288,77,-1.7901435866951942],[119,288,78,-1.7872896827757359],[119,288,79,-1.7839196994900703],[119,289,64,-1.801165897399187],[119,289,65,-1.8005377277731895],[119,289,66,-1.7988811656832695],[119,289,67,-1.7967686280608177],[119,289,68,-1.7950630597770214],[119,289,69,-1.7943644747138023],[119,289,70,-1.7945715710520744],[119,289,71,-1.7951613739132881],[119,289,72,-1.7963705025613308],[119,289,73,-1.798080276697874],[119,289,74,-1.7995035946369171],[119,289,75,-1.8001182191073895],[119,289,76,-1.799641378223896],[119,289,77,-1.7979560866951942],[119,289,78,-1.7951021827757359],[119,289,79,-1.7917321994900703],[119,290,64,-1.808978397399187],[119,290,65,-1.8083502277731895],[119,290,66,-1.8066936656832695],[119,290,67,-1.8045811280608177],[119,290,68,-1.8028755597770214],[119,290,69,-1.8021769747138023],[119,290,70,-1.8023840710520744],[119,290,71,-1.8029738739132881],[119,290,72,-1.8041830025613308],[119,290,73,-1.805892776697874],[119,290,74,-1.8073160946369171],[119,290,75,-1.8079307191073895],[119,290,76,-1.807453878223896],[119,290,77,-1.8057685866951942],[119,290,78,-1.8029146827757359],[119,290,79,-1.7995446994900703],[119,291,64,-1.816790897399187],[119,291,65,-1.8161627277731895],[119,291,66,-1.8145061656832695],[119,291,67,-1.8123936280608177],[119,291,68,-1.8106880597770214],[119,291,69,-1.8099894747138023],[119,291,70,-1.8101965710520744],[119,291,71,-1.8107863739132881],[119,291,72,-1.8119955025613308],[119,291,73,-1.813705276697874],[119,291,74,-1.8151285946369171],[119,291,75,-1.8157432191073895],[119,291,76,-1.815266378223896],[119,291,77,-1.8135810866951942],[119,291,78,-1.8107271827757359],[119,291,79,-1.8073571994900703],[119,292,64,-1.824603397399187],[119,292,65,-1.8239752277731895],[119,292,66,-1.8223186656832695],[119,292,67,-1.8202061280608177],[119,292,68,-1.8185005597770214],[119,292,69,-1.8178019747138023],[119,292,70,-1.8180090710520744],[119,292,71,-1.8185988739132881],[119,292,72,-1.8198080025613308],[119,292,73,-1.821517776697874],[119,292,74,-1.8229410946369171],[119,292,75,-1.8235557191073895],[119,292,76,-1.823078878223896],[119,292,77,-1.8213935866951942],[119,292,78,-1.8185396827757359],[119,292,79,-1.8151696994900703],[119,293,64,-1.832415897399187],[119,293,65,-1.8317877277731895],[119,293,66,-1.8301311656832695],[119,293,67,-1.8280186280608177],[119,293,68,-1.8263130597770214],[119,293,69,-1.8256144747138023],[119,293,70,-1.8258215710520744],[119,293,71,-1.8264113739132881],[119,293,72,-1.8276205025613308],[119,293,73,-1.829330276697874],[119,293,74,-1.8307535946369171],[119,293,75,-1.8313682191073895],[119,293,76,-1.830891378223896],[119,293,77,-1.8292060866951942],[119,293,78,-1.8263521827757359],[119,293,79,-1.8229821994900703],[119,294,64,-1.840228397399187],[119,294,65,-1.8396002277731895],[119,294,66,-1.8379436656832695],[119,294,67,-1.8358311280608177],[119,294,68,-1.8341255597770214],[119,294,69,-1.8334269747138023],[119,294,70,-1.8336340710520744],[119,294,71,-1.8342238739132881],[119,294,72,-1.8354330025613308],[119,294,73,-1.837142776697874],[119,294,74,-1.8385660946369171],[119,294,75,-1.8391807191073895],[119,294,76,-1.838703878223896],[119,294,77,-1.8370185866951942],[119,294,78,-1.8341646827757359],[119,294,79,-1.8307946994900703],[119,295,64,-1.848040897399187],[119,295,65,-1.8474127277731895],[119,295,66,-1.8457561656832695],[119,295,67,-1.8436436280608177],[119,295,68,-1.8419380597770214],[119,295,69,-1.8412394747138023],[119,295,70,-1.8414465710520744],[119,295,71,-1.8420363739132881],[119,295,72,-1.8432455025613308],[119,295,73,-1.844955276697874],[119,295,74,-1.8463785946369171],[119,295,75,-1.8469932191073895],[119,295,76,-1.846516378223896],[119,295,77,-1.8448310866951942],[119,295,78,-1.8419771827757359],[119,295,79,-1.8386071994900703],[119,296,64,-1.855853397399187],[119,296,65,-1.8552252277731895],[119,296,66,-1.8535686656832695],[119,296,67,-1.8514561280608177],[119,296,68,-1.8497505597770214],[119,296,69,-1.8490519747138023],[119,296,70,-1.8492590710520744],[119,296,71,-1.8498488739132881],[119,296,72,-1.8510580025613308],[119,296,73,-1.852767776697874],[119,296,74,-1.8541910946369171],[119,296,75,-1.8548057191073895],[119,296,76,-1.854328878223896],[119,296,77,-1.8526435866951942],[119,296,78,-1.8497896827757359],[119,296,79,-1.8464196994900703],[119,297,64,-1.863665897399187],[119,297,65,-1.8630377277731895],[119,297,66,-1.8613811656832695],[119,297,67,-1.8592686280608177],[119,297,68,-1.8575630597770214],[119,297,69,-1.8568644747138023],[119,297,70,-1.8570715710520744],[119,297,71,-1.8576613739132881],[119,297,72,-1.8588705025613308],[119,297,73,-1.860580276697874],[119,297,74,-1.8620035946369171],[119,297,75,-1.8626182191073895],[119,297,76,-1.862141378223896],[119,297,77,-1.8604560866951942],[119,297,78,-1.8576021827757359],[119,297,79,-1.8542321994900703],[119,298,64,-1.871478397399187],[119,298,65,-1.8708502277731895],[119,298,66,-1.8691936656832695],[119,298,67,-1.8670811280608177],[119,298,68,-1.8653755597770214],[119,298,69,-1.8646769747138023],[119,298,70,-1.8648840710520744],[119,298,71,-1.8654738739132881],[119,298,72,-1.8666830025613308],[119,298,73,-1.868392776697874],[119,298,74,-1.8698160946369171],[119,298,75,-1.8704307191073895],[119,298,76,-1.869953878223896],[119,298,77,-1.8682685866951942],[119,298,78,-1.8654146827757359],[119,298,79,-1.8620446994900703],[119,299,64,-1.879290897399187],[119,299,65,-1.8786627277731895],[119,299,66,-1.8770061656832695],[119,299,67,-1.8748936280608177],[119,299,68,-1.8731880597770214],[119,299,69,-1.8724894747138023],[119,299,70,-1.8726965710520744],[119,299,71,-1.8732863739132881],[119,299,72,-1.8744955025613308],[119,299,73,-1.876205276697874],[119,299,74,-1.8776285946369171],[119,299,75,-1.8782432191073895],[119,299,76,-1.877766378223896],[119,299,77,-1.8760810866951942],[119,299,78,-1.8732271827757359],[119,299,79,-1.8698571994900703],[119,300,64,-1.887103397399187],[119,300,65,-1.8864752277731895],[119,300,66,-1.8848186656832695],[119,300,67,-1.8827061280608177],[119,300,68,-1.8810005597770214],[119,300,69,-1.8803019747138023],[119,300,70,-1.8805090710520744],[119,300,71,-1.8810988739132881],[119,300,72,-1.8823080025613308],[119,300,73,-1.884017776697874],[119,300,74,-1.8854410946369171],[119,300,75,-1.8860557191073895],[119,300,76,-1.885578878223896],[119,300,77,-1.8838935866951942],[119,300,78,-1.8810396827757359],[119,300,79,-1.8776696994900703],[119,301,64,-1.894915897399187],[119,301,65,-1.8942877277731895],[119,301,66,-1.8926311656832695],[119,301,67,-1.8905186280608177],[119,301,68,-1.8888130597770214],[119,301,69,-1.8881144747138023],[119,301,70,-1.8883215710520744],[119,301,71,-1.8889113739132881],[119,301,72,-1.8901205025613308],[119,301,73,-1.891830276697874],[119,301,74,-1.8932535946369171],[119,301,75,-1.8938682191073895],[119,301,76,-1.893391378223896],[119,301,77,-1.8917060866951942],[119,301,78,-1.8888521827757359],[119,301,79,-1.8854821994900703],[119,302,64,-1.902728397399187],[119,302,65,-1.9021002277731895],[119,302,66,-1.9004436656832695],[119,302,67,-1.8983311280608177],[119,302,68,-1.8966255597770214],[119,302,69,-1.8959269747138023],[119,302,70,-1.8961340710520744],[119,302,71,-1.8967238739132881],[119,302,72,-1.8979330025613308],[119,302,73,-1.899642776697874],[119,302,74,-1.9010660946369171],[119,302,75,-1.9016807191073895],[119,302,76,-1.901203878223896],[119,302,77,-1.8995185866951942],[119,302,78,-1.8966646827757359],[119,302,79,-1.8932946994900703],[119,303,64,-1.910540897399187],[119,303,65,-1.9099127277731895],[119,303,66,-1.9082561656832695],[119,303,67,-1.9061436280608177],[119,303,68,-1.9044380597770214],[119,303,69,-1.9037394747138023],[119,303,70,-1.9039465710520744],[119,303,71,-1.9045363739132881],[119,303,72,-1.9057455025613308],[119,303,73,-1.907455276697874],[119,303,74,-1.9088785946369171],[119,303,75,-1.9094932191073895],[119,303,76,-1.909016378223896],[119,303,77,-1.9073310866951942],[119,303,78,-1.9044771827757359],[119,303,79,-1.9011071994900703],[119,304,64,-1.918353397399187],[119,304,65,-1.9177252277731895],[119,304,66,-1.9160686656832695],[119,304,67,-1.9139561280608177],[119,304,68,-1.9122505597770214],[119,304,69,-1.9115519747138023],[119,304,70,-1.9117590710520744],[119,304,71,-1.9123488739132881],[119,304,72,-1.9135580025613308],[119,304,73,-1.915267776697874],[119,304,74,-1.9166910946369171],[119,304,75,-1.9173057191073895],[119,304,76,-1.916828878223896],[119,304,77,-1.9151435866951942],[119,304,78,-1.9122896827757359],[119,304,79,-1.9089196994900703],[119,305,64,-1.926165897399187],[119,305,65,-1.9255377277731895],[119,305,66,-1.9238811656832695],[119,305,67,-1.9217686280608177],[119,305,68,-1.9200630597770214],[119,305,69,-1.9193644747138023],[119,305,70,-1.9195715710520744],[119,305,71,-1.9201613739132881],[119,305,72,-1.9213705025613308],[119,305,73,-1.923080276697874],[119,305,74,-1.9245035946369171],[119,305,75,-1.9251182191073895],[119,305,76,-1.924641378223896],[119,305,77,-1.9229560866951942],[119,305,78,-1.9201021827757359],[119,305,79,-1.9167321994900703],[119,306,64,-1.933978397399187],[119,306,65,-1.9333502277731895],[119,306,66,-1.9316936656832695],[119,306,67,-1.9295811280608177],[119,306,68,-1.9278755597770214],[119,306,69,-1.9271769747138023],[119,306,70,-1.9273840710520744],[119,306,71,-1.9279738739132881],[119,306,72,-1.9291830025613308],[119,306,73,-1.930892776697874],[119,306,74,-1.9323160946369171],[119,306,75,-1.9329307191073895],[119,306,76,-1.932453878223896],[119,306,77,-1.9307685866951942],[119,306,78,-1.9279146827757359],[119,306,79,-1.9245446994900703],[119,307,64,-1.941790897399187],[119,307,65,-1.9411627277731895],[119,307,66,-1.9395061656832695],[119,307,67,-1.9373936280608177],[119,307,68,-1.9356880597770214],[119,307,69,-1.9349894747138023],[119,307,70,-1.9351965710520744],[119,307,71,-1.9357863739132881],[119,307,72,-1.9369955025613308],[119,307,73,-1.938705276697874],[119,307,74,-1.9401285946369171],[119,307,75,-1.9407432191073895],[119,307,76,-1.940266378223896],[119,307,77,-1.9385810866951942],[119,307,78,-1.9357271827757359],[119,307,79,-1.9323571994900703],[119,308,64,-1.949603397399187],[119,308,65,-1.9489752277731895],[119,308,66,-1.9473186656832695],[119,308,67,-1.9452061280608177],[119,308,68,-1.9435005597770214],[119,308,69,-1.9428019747138023],[119,308,70,-1.9430090710520744],[119,308,71,-1.9435988739132881],[119,308,72,-1.9448080025613308],[119,308,73,-1.946517776697874],[119,308,74,-1.9479410946369171],[119,308,75,-1.9485557191073895],[119,308,76,-1.948078878223896],[119,308,77,-1.9463935866951942],[119,308,78,-1.9435396827757359],[119,308,79,-1.9401696994900703],[119,309,64,-1.957415897399187],[119,309,65,-1.9567877277731895],[119,309,66,-1.9551311656832695],[119,309,67,-1.9530186280608177],[119,309,68,-1.9513130597770214],[119,309,69,-1.9506144747138023],[119,309,70,-1.9508215710520744],[119,309,71,-1.9514113739132881],[119,309,72,-1.9526205025613308],[119,309,73,-1.954330276697874],[119,309,74,-1.9557535946369171],[119,309,75,-1.9563682191073895],[119,309,76,-1.955891378223896],[119,309,77,-1.9542060866951942],[119,309,78,-1.9513521827757359],[119,309,79,-1.9479821994900703],[119,310,64,-1.965228397399187],[119,310,65,-1.9646002277731895],[119,310,66,-1.9629436656832695],[119,310,67,-1.9608311280608177],[119,310,68,-1.9591255597770214],[119,310,69,-1.9584269747138023],[119,310,70,-1.9586340710520744],[119,310,71,-1.9592238739132881],[119,310,72,-1.9604330025613308],[119,310,73,-1.962142776697874],[119,310,74,-1.9635660946369171],[119,310,75,-1.9641807191073895],[119,310,76,-1.963703878223896],[119,310,77,-1.9620185866951942],[119,310,78,-1.9591646827757359],[119,310,79,-1.9557946994900703],[119,311,64,-1.973040897399187],[119,311,65,-1.9724127277731895],[119,311,66,-1.9707561656832695],[119,311,67,-1.9686436280608177],[119,311,68,-1.9669380597770214],[119,311,69,-1.9662394747138023],[119,311,70,-1.9664465710520744],[119,311,71,-1.9670363739132881],[119,311,72,-1.9682455025613308],[119,311,73,-1.969955276697874],[119,311,74,-1.9713785946369171],[119,311,75,-1.9719932191073895],[119,311,76,-1.971516378223896],[119,311,77,-1.9698310866951942],[119,311,78,-1.9669771827757359],[119,311,79,-1.9636071994900703],[119,312,64,-1.980853397399187],[119,312,65,-1.9802252277731895],[119,312,66,-1.9785686656832695],[119,312,67,-1.9764561280608177],[119,312,68,-1.9747505597770214],[119,312,69,-1.9740519747138023],[119,312,70,-1.9742590710520744],[119,312,71,-1.9748488739132881],[119,312,72,-1.9760580025613308],[119,312,73,-1.977767776697874],[119,312,74,-1.9791910946369171],[119,312,75,-1.9798057191073895],[119,312,76,-1.979328878223896],[119,312,77,-1.9776435866951942],[119,312,78,-1.9747896827757359],[119,312,79,-1.9714196994900703],[119,313,64,-1.988665897399187],[119,313,65,-1.9880377277731895],[119,313,66,-1.9863811656832695],[119,313,67,-1.9842686280608177],[119,313,68,-1.9825630597770214],[119,313,69,-1.9818644747138023],[119,313,70,-1.9820715710520744],[119,313,71,-1.9826613739132881],[119,313,72,-1.9838705025613308],[119,313,73,-1.985580276697874],[119,313,74,-1.9870035946369171],[119,313,75,-1.9876182191073895],[119,313,76,-1.987141378223896],[119,313,77,-1.9854560866951942],[119,313,78,-1.9826021827757359],[119,313,79,-1.9792321994900703],[119,314,64,-1.996478397399187],[119,314,65,-1.9958502277731895],[119,314,66,-1.9941936656832695],[119,314,67,-1.9920811280608177],[119,314,68,-1.9903755597770214],[119,314,69,-1.9896769747138023],[119,314,70,-1.9898840710520744],[119,314,71,-1.9904738739132881],[119,314,72,-1.9916830025613308],[119,314,73,-1.993392776697874],[119,314,74,-1.9948160946369171],[119,314,75,-1.9954307191073895],[119,314,76,-1.994953878223896],[119,314,77,-1.9932685866951942],[119,314,78,-1.9904146827757359],[119,314,79,-1.9870446994900703],[119,315,64,-2.004290897399187],[119,315,65,-2.0036627277731895],[119,315,66,-2.0020061656832695],[119,315,67,-1.9998936280608177],[119,315,68,-1.9981880597770214],[119,315,69,-1.9974894747138023],[119,315,70,-1.9976965710520744],[119,315,71,-1.9982863739132881],[119,315,72,-1.9994955025613308],[119,315,73,-2.001205276697874],[119,315,74,-2.002628594636917],[119,315,75,-2.0032432191073895],[119,315,76,-2.002766378223896],[119,315,77,-2.0010810866951942],[119,315,78,-1.9982271827757359],[119,315,79,-1.9948571994900703],[119,316,64,-2.012103397399187],[119,316,65,-2.0114752277731895],[119,316,66,-2.0098186656832695],[119,316,67,-2.0077061280608177],[119,316,68,-2.0060005597770214],[119,316,69,-2.0053019747138023],[119,316,70,-2.0055090710520744],[119,316,71,-2.006098873913288],[119,316,72,-2.007308002561331],[119,316,73,-2.009017776697874],[119,316,74,-2.010441094636917],[119,316,75,-2.0110557191073895],[119,316,76,-2.010578878223896],[119,316,77,-2.0088935866951942],[119,316,78,-2.006039682775736],[119,316,79,-2.0026696994900703],[119,317,64,-2.019915897399187],[119,317,65,-2.0192877277731895],[119,317,66,-2.0176311656832695],[119,317,67,-2.0155186280608177],[119,317,68,-2.0138130597770214],[119,317,69,-2.0131144747138023],[119,317,70,-2.0133215710520744],[119,317,71,-2.013911373913288],[119,317,72,-2.015120502561331],[119,317,73,-2.016830276697874],[119,317,74,-2.018253594636917],[119,317,75,-2.0188682191073895],[119,317,76,-2.018391378223896],[119,317,77,-2.0167060866951942],[119,317,78,-2.013852182775736],[119,317,79,-2.0104821994900703],[119,318,64,-2.027728397399187],[119,318,65,-2.0271002277731895],[119,318,66,-2.0254436656832695],[119,318,67,-2.0233311280608177],[119,318,68,-2.0216255597770214],[119,318,69,-2.0209269747138023],[119,318,70,-2.0211340710520744],[119,318,71,-2.021723873913288],[119,318,72,-2.022933002561331],[119,318,73,-2.024642776697874],[119,318,74,-2.026066094636917],[119,318,75,-2.0266807191073895],[119,318,76,-2.026203878223896],[119,318,77,-2.0245185866951942],[119,318,78,-2.021664682775736],[119,318,79,-2.0182946994900703],[119,319,64,-2.035540897399187],[119,319,65,-2.0349127277731895],[119,319,66,-2.0332561656832695],[119,319,67,-2.0311436280608177],[119,319,68,-2.0294380597770214],[119,319,69,-2.0287394747138023],[119,319,70,-2.0289465710520744],[119,319,71,-2.029536373913288],[119,319,72,-2.030745502561331],[119,319,73,-2.032455276697874],[119,319,74,-2.033878594636917],[119,319,75,-2.0344932191073895],[119,319,76,-2.034016378223896],[119,319,77,-2.0323310866951942],[119,319,78,-2.029477182775736],[119,319,79,-2.0261071994900703],[120,-64,64,0.9538438618183136],[120,-64,65,0.9544920176267624],[120,-64,66,0.9561503008008003],[120,-64,67,0.9581116139888763],[120,-64,68,0.95942123234272],[120,-64,69,0.959466990083456],[120,-64,70,0.9584011770784855],[120,-64,71,0.9568315111100674],[120,-64,72,0.9546315930783749],[120,-64,73,0.9525045119225979],[120,-64,74,0.9513215236365795],[120,-64,75,0.9512719549238682],[120,-64,76,0.9524699188768864],[120,-64,77,0.9548430554568768],[120,-64,78,0.9581787995994091],[120,-64,79,0.9619841277599335],[120,-63,64,0.9460313618183136],[120,-63,65,0.9466795176267624],[120,-63,66,0.9483378008008003],[120,-63,67,0.9502991139888763],[120,-63,68,0.95160873234272],[120,-63,69,0.951654490083456],[120,-63,70,0.9505886770784855],[120,-63,71,0.9490190111100674],[120,-63,72,0.9468190930783749],[120,-63,73,0.9446920119225979],[120,-63,74,0.9435090236365795],[120,-63,75,0.9434594549238682],[120,-63,76,0.9446574188768864],[120,-63,77,0.9470305554568768],[120,-63,78,0.9503662995994091],[120,-63,79,0.9541716277599335],[120,-62,64,0.9382188618183136],[120,-62,65,0.9388670176267624],[120,-62,66,0.9405253008008003],[120,-62,67,0.9424866139888763],[120,-62,68,0.94379623234272],[120,-62,69,0.943841990083456],[120,-62,70,0.9427761770784855],[120,-62,71,0.9412065111100674],[120,-62,72,0.9390065930783749],[120,-62,73,0.9368795119225979],[120,-62,74,0.9356965236365795],[120,-62,75,0.9356469549238682],[120,-62,76,0.9368449188768864],[120,-62,77,0.9392180554568768],[120,-62,78,0.9425537995994091],[120,-62,79,0.9463591277599335],[120,-61,64,0.9304063618183136],[120,-61,65,0.9310545176267624],[120,-61,66,0.9327128008008003],[120,-61,67,0.9346741139888763],[120,-61,68,0.93598373234272],[120,-61,69,0.936029490083456],[120,-61,70,0.9349636770784855],[120,-61,71,0.9333940111100674],[120,-61,72,0.9311940930783749],[120,-61,73,0.9290670119225979],[120,-61,74,0.9278840236365795],[120,-61,75,0.9278344549238682],[120,-61,76,0.9290324188768864],[120,-61,77,0.9314055554568768],[120,-61,78,0.9347412995994091],[120,-61,79,0.9385466277599335],[120,-60,64,0.9225938618183136],[120,-60,65,0.9232420176267624],[120,-60,66,0.9249003008008003],[120,-60,67,0.9268616139888763],[120,-60,68,0.92817123234272],[120,-60,69,0.928216990083456],[120,-60,70,0.9271511770784855],[120,-60,71,0.9255815111100674],[120,-60,72,0.9233815930783749],[120,-60,73,0.9212545119225979],[120,-60,74,0.9200715236365795],[120,-60,75,0.9200219549238682],[120,-60,76,0.9212199188768864],[120,-60,77,0.9235930554568768],[120,-60,78,0.9269287995994091],[120,-60,79,0.9307341277599335],[120,-59,64,0.9147813618183136],[120,-59,65,0.9154295176267624],[120,-59,66,0.9170878008008003],[120,-59,67,0.9190491139888763],[120,-59,68,0.92035873234272],[120,-59,69,0.920404490083456],[120,-59,70,0.9193386770784855],[120,-59,71,0.9177690111100674],[120,-59,72,0.9155690930783749],[120,-59,73,0.9134420119225979],[120,-59,74,0.9122590236365795],[120,-59,75,0.9122094549238682],[120,-59,76,0.9134074188768864],[120,-59,77,0.9157805554568768],[120,-59,78,0.9191162995994091],[120,-59,79,0.9229216277599335],[120,-58,64,0.9069688618183136],[120,-58,65,0.9076170176267624],[120,-58,66,0.9092753008008003],[120,-58,67,0.9112366139888763],[120,-58,68,0.91254623234272],[120,-58,69,0.912591990083456],[120,-58,70,0.9115261770784855],[120,-58,71,0.9099565111100674],[120,-58,72,0.9077565930783749],[120,-58,73,0.9056295119225979],[120,-58,74,0.9044465236365795],[120,-58,75,0.9043969549238682],[120,-58,76,0.9055949188768864],[120,-58,77,0.9079680554568768],[120,-58,78,0.9113037995994091],[120,-58,79,0.9151091277599335],[120,-57,64,0.8991563618183136],[120,-57,65,0.8998045176267624],[120,-57,66,0.9014628008008003],[120,-57,67,0.9034241139888763],[120,-57,68,0.90473373234272],[120,-57,69,0.904779490083456],[120,-57,70,0.9037136770784855],[120,-57,71,0.9021440111100674],[120,-57,72,0.8999440930783749],[120,-57,73,0.8978170119225979],[120,-57,74,0.8966340236365795],[120,-57,75,0.8965844549238682],[120,-57,76,0.8977824188768864],[120,-57,77,0.9001555554568768],[120,-57,78,0.9034912995994091],[120,-57,79,0.9072966277599335],[120,-56,64,0.8913438618183136],[120,-56,65,0.8919920176267624],[120,-56,66,0.8936503008008003],[120,-56,67,0.8956116139888763],[120,-56,68,0.89692123234272],[120,-56,69,0.896966990083456],[120,-56,70,0.8959011770784855],[120,-56,71,0.8943315111100674],[120,-56,72,0.8921315930783749],[120,-56,73,0.8900045119225979],[120,-56,74,0.8888215236365795],[120,-56,75,0.8887719549238682],[120,-56,76,0.8899699188768864],[120,-56,77,0.8923430554568768],[120,-56,78,0.8956787995994091],[120,-56,79,0.8994841277599335],[120,-55,64,0.8835313618183136],[120,-55,65,0.8841795176267624],[120,-55,66,0.8858378008008003],[120,-55,67,0.8877991139888763],[120,-55,68,0.88910873234272],[120,-55,69,0.889154490083456],[120,-55,70,0.8880886770784855],[120,-55,71,0.8865190111100674],[120,-55,72,0.8843190930783749],[120,-55,73,0.8821920119225979],[120,-55,74,0.8810090236365795],[120,-55,75,0.8809594549238682],[120,-55,76,0.8821574188768864],[120,-55,77,0.8845305554568768],[120,-55,78,0.8878662995994091],[120,-55,79,0.8916716277599335],[120,-54,64,0.8757188618183136],[120,-54,65,0.8763670176267624],[120,-54,66,0.8780253008008003],[120,-54,67,0.8799866139888763],[120,-54,68,0.88129623234272],[120,-54,69,0.881341990083456],[120,-54,70,0.8802761770784855],[120,-54,71,0.8787065111100674],[120,-54,72,0.8765065930783749],[120,-54,73,0.8743795119225979],[120,-54,74,0.8731965236365795],[120,-54,75,0.8731469549238682],[120,-54,76,0.8743449188768864],[120,-54,77,0.8767180554568768],[120,-54,78,0.8800537995994091],[120,-54,79,0.8838591277599335],[120,-53,64,0.8679063618183136],[120,-53,65,0.8685545176267624],[120,-53,66,0.8702128008008003],[120,-53,67,0.8721741139888763],[120,-53,68,0.87348373234272],[120,-53,69,0.873529490083456],[120,-53,70,0.8724636770784855],[120,-53,71,0.8708940111100674],[120,-53,72,0.8686940930783749],[120,-53,73,0.8665670119225979],[120,-53,74,0.8653840236365795],[120,-53,75,0.8653344549238682],[120,-53,76,0.8665324188768864],[120,-53,77,0.8689055554568768],[120,-53,78,0.8722412995994091],[120,-53,79,0.8760466277599335],[120,-52,64,0.8600938618183136],[120,-52,65,0.8607420176267624],[120,-52,66,0.8624003008008003],[120,-52,67,0.8643616139888763],[120,-52,68,0.86567123234272],[120,-52,69,0.865716990083456],[120,-52,70,0.8646511770784855],[120,-52,71,0.8630815111100674],[120,-52,72,0.8608815930783749],[120,-52,73,0.8587545119225979],[120,-52,74,0.8575715236365795],[120,-52,75,0.8575219549238682],[120,-52,76,0.8587199188768864],[120,-52,77,0.8610930554568768],[120,-52,78,0.8644287995994091],[120,-52,79,0.8682341277599335],[120,-51,64,0.8522813618183136],[120,-51,65,0.8529295176267624],[120,-51,66,0.8545878008008003],[120,-51,67,0.8565491139888763],[120,-51,68,0.85785873234272],[120,-51,69,0.857904490083456],[120,-51,70,0.8568386770784855],[120,-51,71,0.8552690111100674],[120,-51,72,0.8530690930783749],[120,-51,73,0.8509420119225979],[120,-51,74,0.8497590236365795],[120,-51,75,0.8497094549238682],[120,-51,76,0.8509074188768864],[120,-51,77,0.8532805554568768],[120,-51,78,0.8566162995994091],[120,-51,79,0.8604216277599335],[120,-50,64,0.8444688618183136],[120,-50,65,0.8451170176267624],[120,-50,66,0.8467753008008003],[120,-50,67,0.8487366139888763],[120,-50,68,0.85004623234272],[120,-50,69,0.850091990083456],[120,-50,70,0.8490261770784855],[120,-50,71,0.8474565111100674],[120,-50,72,0.8452565930783749],[120,-50,73,0.8431295119225979],[120,-50,74,0.8419465236365795],[120,-50,75,0.8418969549238682],[120,-50,76,0.8430949188768864],[120,-50,77,0.8454680554568768],[120,-50,78,0.8488037995994091],[120,-50,79,0.8526091277599335],[120,-49,64,0.8366563618183136],[120,-49,65,0.8373045176267624],[120,-49,66,0.8389628008008003],[120,-49,67,0.8409241139888763],[120,-49,68,0.84223373234272],[120,-49,69,0.842279490083456],[120,-49,70,0.8412136770784855],[120,-49,71,0.8396440111100674],[120,-49,72,0.8374440930783749],[120,-49,73,0.8353170119225979],[120,-49,74,0.8341340236365795],[120,-49,75,0.8340844549238682],[120,-49,76,0.8352824188768864],[120,-49,77,0.8376555554568768],[120,-49,78,0.8409912995994091],[120,-49,79,0.8447966277599335],[120,-48,64,0.8288438618183136],[120,-48,65,0.8294920176267624],[120,-48,66,0.8311503008008003],[120,-48,67,0.8331116139888763],[120,-48,68,0.83442123234272],[120,-48,69,0.834466990083456],[120,-48,70,0.8334011770784855],[120,-48,71,0.8318315111100674],[120,-48,72,0.8296315930783749],[120,-48,73,0.8275045119225979],[120,-48,74,0.8263215236365795],[120,-48,75,0.8262719549238682],[120,-48,76,0.8274699188768864],[120,-48,77,0.8298430554568768],[120,-48,78,0.8331787995994091],[120,-48,79,0.8369841277599335],[120,-47,64,0.8210313618183136],[120,-47,65,0.8216795176267624],[120,-47,66,0.8233378008008003],[120,-47,67,0.8252991139888763],[120,-47,68,0.82660873234272],[120,-47,69,0.826654490083456],[120,-47,70,0.8255886770784855],[120,-47,71,0.8240190111100674],[120,-47,72,0.8218190930783749],[120,-47,73,0.8196920119225979],[120,-47,74,0.8185090236365795],[120,-47,75,0.8184594549238682],[120,-47,76,0.8196574188768864],[120,-47,77,0.8220305554568768],[120,-47,78,0.8253662995994091],[120,-47,79,0.8291716277599335],[120,-46,64,0.8132188618183136],[120,-46,65,0.8138670176267624],[120,-46,66,0.8155253008008003],[120,-46,67,0.8174866139888763],[120,-46,68,0.81879623234272],[120,-46,69,0.818841990083456],[120,-46,70,0.8177761770784855],[120,-46,71,0.8162065111100674],[120,-46,72,0.8140065930783749],[120,-46,73,0.8118795119225979],[120,-46,74,0.8106965236365795],[120,-46,75,0.8106469549238682],[120,-46,76,0.8118449188768864],[120,-46,77,0.8142180554568768],[120,-46,78,0.8175537995994091],[120,-46,79,0.8213591277599335],[120,-45,64,0.8054063618183136],[120,-45,65,0.8060545176267624],[120,-45,66,0.8077128008008003],[120,-45,67,0.8096741139888763],[120,-45,68,0.81098373234272],[120,-45,69,0.811029490083456],[120,-45,70,0.8099636770784855],[120,-45,71,0.8083940111100674],[120,-45,72,0.8061940930783749],[120,-45,73,0.8040670119225979],[120,-45,74,0.8028840236365795],[120,-45,75,0.8028344549238682],[120,-45,76,0.8040324188768864],[120,-45,77,0.8064055554568768],[120,-45,78,0.8097412995994091],[120,-45,79,0.8135466277599335],[120,-44,64,0.7975938618183136],[120,-44,65,0.7982420176267624],[120,-44,66,0.7999003008008003],[120,-44,67,0.8018616139888763],[120,-44,68,0.80317123234272],[120,-44,69,0.803216990083456],[120,-44,70,0.8021511770784855],[120,-44,71,0.8005815111100674],[120,-44,72,0.7983815930783749],[120,-44,73,0.7962545119225979],[120,-44,74,0.7950715236365795],[120,-44,75,0.7950219549238682],[120,-44,76,0.7962199188768864],[120,-44,77,0.7985930554568768],[120,-44,78,0.8019287995994091],[120,-44,79,0.8057341277599335],[120,-43,64,0.7897813618183136],[120,-43,65,0.7904295176267624],[120,-43,66,0.7920878008008003],[120,-43,67,0.7940491139888763],[120,-43,68,0.79535873234272],[120,-43,69,0.795404490083456],[120,-43,70,0.7943386770784855],[120,-43,71,0.7927690111100674],[120,-43,72,0.7905690930783749],[120,-43,73,0.7884420119225979],[120,-43,74,0.7872590236365795],[120,-43,75,0.7872094549238682],[120,-43,76,0.7884074188768864],[120,-43,77,0.7907805554568768],[120,-43,78,0.7941162995994091],[120,-43,79,0.7979216277599335],[120,-42,64,0.7819688618183136],[120,-42,65,0.7826170176267624],[120,-42,66,0.7842753008008003],[120,-42,67,0.7862366139888763],[120,-42,68,0.78754623234272],[120,-42,69,0.787591990083456],[120,-42,70,0.7865261770784855],[120,-42,71,0.7849565111100674],[120,-42,72,0.7827565930783749],[120,-42,73,0.7806295119225979],[120,-42,74,0.7794465236365795],[120,-42,75,0.7793969549238682],[120,-42,76,0.7805949188768864],[120,-42,77,0.7829680554568768],[120,-42,78,0.7863037995994091],[120,-42,79,0.7901091277599335],[120,-41,64,0.7741563618183136],[120,-41,65,0.7748045176267624],[120,-41,66,0.7764628008008003],[120,-41,67,0.7784241139888763],[120,-41,68,0.77973373234272],[120,-41,69,0.779779490083456],[120,-41,70,0.7787136770784855],[120,-41,71,0.7771440111100674],[120,-41,72,0.7749440930783749],[120,-41,73,0.7728170119225979],[120,-41,74,0.7716340236365795],[120,-41,75,0.7715844549238682],[120,-41,76,0.7727824188768864],[120,-41,77,0.7751555554568768],[120,-41,78,0.7784912995994091],[120,-41,79,0.7822966277599335],[120,-40,64,0.7663438618183136],[120,-40,65,0.7669920176267624],[120,-40,66,0.7686503008008003],[120,-40,67,0.7706116139888763],[120,-40,68,0.77192123234272],[120,-40,69,0.771966990083456],[120,-40,70,0.7709011770784855],[120,-40,71,0.7693315111100674],[120,-40,72,0.7671315930783749],[120,-40,73,0.7650045119225979],[120,-40,74,0.7638215236365795],[120,-40,75,0.7637719549238682],[120,-40,76,0.7649699188768864],[120,-40,77,0.7673430554568768],[120,-40,78,0.7706787995994091],[120,-40,79,0.7744841277599335],[120,-39,64,0.7585313618183136],[120,-39,65,0.7591795176267624],[120,-39,66,0.7608378008008003],[120,-39,67,0.7627991139888763],[120,-39,68,0.76410873234272],[120,-39,69,0.764154490083456],[120,-39,70,0.7630886770784855],[120,-39,71,0.7615190111100674],[120,-39,72,0.7593190930783749],[120,-39,73,0.7571920119225979],[120,-39,74,0.7560090236365795],[120,-39,75,0.7559594549238682],[120,-39,76,0.7571574188768864],[120,-39,77,0.7595305554568768],[120,-39,78,0.7628662995994091],[120,-39,79,0.7666716277599335],[120,-38,64,0.7507188618183136],[120,-38,65,0.7513670176267624],[120,-38,66,0.7530253008008003],[120,-38,67,0.7549866139888763],[120,-38,68,0.75629623234272],[120,-38,69,0.756341990083456],[120,-38,70,0.7552761770784855],[120,-38,71,0.7537065111100674],[120,-38,72,0.7515065930783749],[120,-38,73,0.7493795119225979],[120,-38,74,0.7481965236365795],[120,-38,75,0.7481469549238682],[120,-38,76,0.7493449188768864],[120,-38,77,0.7517180554568768],[120,-38,78,0.7550537995994091],[120,-38,79,0.7588591277599335],[120,-37,64,0.7429063618183136],[120,-37,65,0.7435545176267624],[120,-37,66,0.7452128008008003],[120,-37,67,0.7471741139888763],[120,-37,68,0.74848373234272],[120,-37,69,0.748529490083456],[120,-37,70,0.7474636770784855],[120,-37,71,0.7458940111100674],[120,-37,72,0.7436940930783749],[120,-37,73,0.7415670119225979],[120,-37,74,0.7403840236365795],[120,-37,75,0.7403344549238682],[120,-37,76,0.7415324188768864],[120,-37,77,0.7439055554568768],[120,-37,78,0.7472412995994091],[120,-37,79,0.7510466277599335],[120,-36,64,0.7350938618183136],[120,-36,65,0.7357420176267624],[120,-36,66,0.7374003008008003],[120,-36,67,0.7393616139888763],[120,-36,68,0.74067123234272],[120,-36,69,0.740716990083456],[120,-36,70,0.7396511770784855],[120,-36,71,0.7380815111100674],[120,-36,72,0.7358815930783749],[120,-36,73,0.7337545119225979],[120,-36,74,0.7325715236365795],[120,-36,75,0.7325219549238682],[120,-36,76,0.7337199188768864],[120,-36,77,0.7360930554568768],[120,-36,78,0.7394287995994091],[120,-36,79,0.7432341277599335],[120,-35,64,0.7272813618183136],[120,-35,65,0.7279295176267624],[120,-35,66,0.7295878008008003],[120,-35,67,0.7315491139888763],[120,-35,68,0.73285873234272],[120,-35,69,0.732904490083456],[120,-35,70,0.7318386770784855],[120,-35,71,0.7302690111100674],[120,-35,72,0.7280690930783749],[120,-35,73,0.7259420119225979],[120,-35,74,0.7247590236365795],[120,-35,75,0.7247094549238682],[120,-35,76,0.7259074188768864],[120,-35,77,0.7282805554568768],[120,-35,78,0.7316162995994091],[120,-35,79,0.7354216277599335],[120,-34,64,0.7194688618183136],[120,-34,65,0.7201170176267624],[120,-34,66,0.7217753008008003],[120,-34,67,0.7237366139888763],[120,-34,68,0.72504623234272],[120,-34,69,0.725091990083456],[120,-34,70,0.7240261770784855],[120,-34,71,0.7224565111100674],[120,-34,72,0.7202565930783749],[120,-34,73,0.7181295119225979],[120,-34,74,0.7169465236365795],[120,-34,75,0.7168969549238682],[120,-34,76,0.7180949188768864],[120,-34,77,0.7204680554568768],[120,-34,78,0.7238037995994091],[120,-34,79,0.7276091277599335],[120,-33,64,0.7116563618183136],[120,-33,65,0.7123045176267624],[120,-33,66,0.7139628008008003],[120,-33,67,0.7159241139888763],[120,-33,68,0.71723373234272],[120,-33,69,0.717279490083456],[120,-33,70,0.7162136770784855],[120,-33,71,0.7146440111100674],[120,-33,72,0.7124440930783749],[120,-33,73,0.7103170119225979],[120,-33,74,0.7091340236365795],[120,-33,75,0.7090844549238682],[120,-33,76,0.7102824188768864],[120,-33,77,0.7126555554568768],[120,-33,78,0.7159912995994091],[120,-33,79,0.7197966277599335],[120,-32,64,0.7038438618183136],[120,-32,65,0.7044920176267624],[120,-32,66,0.7061503008008003],[120,-32,67,0.7081116139888763],[120,-32,68,0.70942123234272],[120,-32,69,0.709466990083456],[120,-32,70,0.7084011770784855],[120,-32,71,0.7068315111100674],[120,-32,72,0.7046315930783749],[120,-32,73,0.7025045119225979],[120,-32,74,0.7013215236365795],[120,-32,75,0.7012719549238682],[120,-32,76,0.7024699188768864],[120,-32,77,0.7048430554568768],[120,-32,78,0.7081787995994091],[120,-32,79,0.7119841277599335],[120,-31,64,0.6960313618183136],[120,-31,65,0.6966795176267624],[120,-31,66,0.6983378008008003],[120,-31,67,0.7002991139888763],[120,-31,68,0.70160873234272],[120,-31,69,0.701654490083456],[120,-31,70,0.7005886770784855],[120,-31,71,0.6990190111100674],[120,-31,72,0.6968190930783749],[120,-31,73,0.6946920119225979],[120,-31,74,0.6935090236365795],[120,-31,75,0.6934594549238682],[120,-31,76,0.6946574188768864],[120,-31,77,0.6970305554568768],[120,-31,78,0.7003662995994091],[120,-31,79,0.7041716277599335],[120,-30,64,0.6882188618183136],[120,-30,65,0.6888670176267624],[120,-30,66,0.6905253008008003],[120,-30,67,0.6924866139888763],[120,-30,68,0.69379623234272],[120,-30,69,0.693841990083456],[120,-30,70,0.6927761770784855],[120,-30,71,0.6912065111100674],[120,-30,72,0.6890065930783749],[120,-30,73,0.6868795119225979],[120,-30,74,0.6856965236365795],[120,-30,75,0.6856469549238682],[120,-30,76,0.6868449188768864],[120,-30,77,0.6892180554568768],[120,-30,78,0.6925537995994091],[120,-30,79,0.6963591277599335],[120,-29,64,0.6804063618183136],[120,-29,65,0.6810545176267624],[120,-29,66,0.6827128008008003],[120,-29,67,0.6846741139888763],[120,-29,68,0.68598373234272],[120,-29,69,0.686029490083456],[120,-29,70,0.6849636770784855],[120,-29,71,0.6833940111100674],[120,-29,72,0.6811940930783749],[120,-29,73,0.6790670119225979],[120,-29,74,0.6778840236365795],[120,-29,75,0.6778344549238682],[120,-29,76,0.6790324188768864],[120,-29,77,0.6814055554568768],[120,-29,78,0.6847412995994091],[120,-29,79,0.6885466277599335],[120,-28,64,0.6725938618183136],[120,-28,65,0.6732420176267624],[120,-28,66,0.6749003008008003],[120,-28,67,0.6768616139888763],[120,-28,68,0.67817123234272],[120,-28,69,0.678216990083456],[120,-28,70,0.6771511770784855],[120,-28,71,0.6755815111100674],[120,-28,72,0.6733815930783749],[120,-28,73,0.6712545119225979],[120,-28,74,0.6700715236365795],[120,-28,75,0.6700219549238682],[120,-28,76,0.6712199188768864],[120,-28,77,0.6735930554568768],[120,-28,78,0.6769287995994091],[120,-28,79,0.6807341277599335],[120,-27,64,0.6647813618183136],[120,-27,65,0.6654295176267624],[120,-27,66,0.6670878008008003],[120,-27,67,0.6690491139888763],[120,-27,68,0.67035873234272],[120,-27,69,0.670404490083456],[120,-27,70,0.6693386770784855],[120,-27,71,0.6677690111100674],[120,-27,72,0.6655690930783749],[120,-27,73,0.6634420119225979],[120,-27,74,0.6622590236365795],[120,-27,75,0.6622094549238682],[120,-27,76,0.6634074188768864],[120,-27,77,0.6657805554568768],[120,-27,78,0.6691162995994091],[120,-27,79,0.6729216277599335],[120,-26,64,0.6569688618183136],[120,-26,65,0.6576170176267624],[120,-26,66,0.6592753008008003],[120,-26,67,0.6612366139888763],[120,-26,68,0.66254623234272],[120,-26,69,0.662591990083456],[120,-26,70,0.6615261770784855],[120,-26,71,0.6599565111100674],[120,-26,72,0.6577565930783749],[120,-26,73,0.6556295119225979],[120,-26,74,0.6544465236365795],[120,-26,75,0.6543969549238682],[120,-26,76,0.6555949188768864],[120,-26,77,0.6579680554568768],[120,-26,78,0.6613037995994091],[120,-26,79,0.6651091277599335],[120,-25,64,0.6491563618183136],[120,-25,65,0.6498045176267624],[120,-25,66,0.6514628008008003],[120,-25,67,0.6534241139888763],[120,-25,68,0.65473373234272],[120,-25,69,0.654779490083456],[120,-25,70,0.6537136770784855],[120,-25,71,0.6521440111100674],[120,-25,72,0.6499440930783749],[120,-25,73,0.6478170119225979],[120,-25,74,0.6466340236365795],[120,-25,75,0.6465844549238682],[120,-25,76,0.6477824188768864],[120,-25,77,0.6501555554568768],[120,-25,78,0.6534912995994091],[120,-25,79,0.6572966277599335],[120,-24,64,0.6413438618183136],[120,-24,65,0.6419920176267624],[120,-24,66,0.6436503008008003],[120,-24,67,0.6456116139888763],[120,-24,68,0.64692123234272],[120,-24,69,0.646966990083456],[120,-24,70,0.6459011770784855],[120,-24,71,0.6443315111100674],[120,-24,72,0.6421315930783749],[120,-24,73,0.6400045119225979],[120,-24,74,0.6388215236365795],[120,-24,75,0.6387719549238682],[120,-24,76,0.6399699188768864],[120,-24,77,0.6423430554568768],[120,-24,78,0.6456787995994091],[120,-24,79,0.6494841277599335],[120,-23,64,0.6335313618183136],[120,-23,65,0.6341795176267624],[120,-23,66,0.6358378008008003],[120,-23,67,0.6377991139888763],[120,-23,68,0.63910873234272],[120,-23,69,0.639154490083456],[120,-23,70,0.6380886770784855],[120,-23,71,0.6365190111100674],[120,-23,72,0.6343190930783749],[120,-23,73,0.6321920119225979],[120,-23,74,0.6310090236365795],[120,-23,75,0.6309594549238682],[120,-23,76,0.6321574188768864],[120,-23,77,0.6345305554568768],[120,-23,78,0.6378662995994091],[120,-23,79,0.6416716277599335],[120,-22,64,0.6257188618183136],[120,-22,65,0.6263670176267624],[120,-22,66,0.6280253008008003],[120,-22,67,0.6299866139888763],[120,-22,68,0.63129623234272],[120,-22,69,0.631341990083456],[120,-22,70,0.6302761770784855],[120,-22,71,0.6287065111100674],[120,-22,72,0.6265065930783749],[120,-22,73,0.6243795119225979],[120,-22,74,0.6231965236365795],[120,-22,75,0.6231469549238682],[120,-22,76,0.6243449188768864],[120,-22,77,0.6267180554568768],[120,-22,78,0.6300537995994091],[120,-22,79,0.6338591277599335],[120,-21,64,0.6179063618183136],[120,-21,65,0.6185545176267624],[120,-21,66,0.6202128008008003],[120,-21,67,0.6221741139888763],[120,-21,68,0.62348373234272],[120,-21,69,0.623529490083456],[120,-21,70,0.6224636770784855],[120,-21,71,0.6208940111100674],[120,-21,72,0.6186940930783749],[120,-21,73,0.6165670119225979],[120,-21,74,0.6153840236365795],[120,-21,75,0.6153344549238682],[120,-21,76,0.6165324188768864],[120,-21,77,0.6189055554568768],[120,-21,78,0.6222412995994091],[120,-21,79,0.6260466277599335],[120,-20,64,0.6100938618183136],[120,-20,65,0.6107420176267624],[120,-20,66,0.6124003008008003],[120,-20,67,0.6143616139888763],[120,-20,68,0.61567123234272],[120,-20,69,0.615716990083456],[120,-20,70,0.6146511770784855],[120,-20,71,0.6130815111100674],[120,-20,72,0.6108815930783749],[120,-20,73,0.6087545119225979],[120,-20,74,0.6075715236365795],[120,-20,75,0.6075219549238682],[120,-20,76,0.6087199188768864],[120,-20,77,0.6110930554568768],[120,-20,78,0.6144287995994091],[120,-20,79,0.6182341277599335],[120,-19,64,0.6022813618183136],[120,-19,65,0.6029295176267624],[120,-19,66,0.6045878008008003],[120,-19,67,0.6065491139888763],[120,-19,68,0.60785873234272],[120,-19,69,0.607904490083456],[120,-19,70,0.6068386770784855],[120,-19,71,0.6052690111100674],[120,-19,72,0.6030690930783749],[120,-19,73,0.6009420119225979],[120,-19,74,0.5997590236365795],[120,-19,75,0.5997094549238682],[120,-19,76,0.6009074188768864],[120,-19,77,0.6032805554568768],[120,-19,78,0.6066162995994091],[120,-19,79,0.6104216277599335],[120,-18,64,0.5944688618183136],[120,-18,65,0.5951170176267624],[120,-18,66,0.5967753008008003],[120,-18,67,0.5987366139888763],[120,-18,68,0.60004623234272],[120,-18,69,0.600091990083456],[120,-18,70,0.5990261770784855],[120,-18,71,0.5974565111100674],[120,-18,72,0.5952565930783749],[120,-18,73,0.5931295119225979],[120,-18,74,0.5919465236365795],[120,-18,75,0.5918969549238682],[120,-18,76,0.5930949188768864],[120,-18,77,0.5954680554568768],[120,-18,78,0.5988037995994091],[120,-18,79,0.6026091277599335],[120,-17,64,0.5866563618183136],[120,-17,65,0.5873045176267624],[120,-17,66,0.5889628008008003],[120,-17,67,0.5909241139888763],[120,-17,68,0.59223373234272],[120,-17,69,0.592279490083456],[120,-17,70,0.5912136770784855],[120,-17,71,0.5896440111100674],[120,-17,72,0.5874440930783749],[120,-17,73,0.5853170119225979],[120,-17,74,0.5841340236365795],[120,-17,75,0.5840844549238682],[120,-17,76,0.5852824188768864],[120,-17,77,0.5876555554568768],[120,-17,78,0.5909912995994091],[120,-17,79,0.5947966277599335],[120,-16,64,0.5788438618183136],[120,-16,65,0.5794920176267624],[120,-16,66,0.5811503008008003],[120,-16,67,0.5831116139888763],[120,-16,68,0.58442123234272],[120,-16,69,0.584466990083456],[120,-16,70,0.5834011770784855],[120,-16,71,0.5818315111100674],[120,-16,72,0.5796315930783749],[120,-16,73,0.5775045119225979],[120,-16,74,0.5763215236365795],[120,-16,75,0.5762719549238682],[120,-16,76,0.5774699188768864],[120,-16,77,0.5798430554568768],[120,-16,78,0.5831787995994091],[120,-16,79,0.5869841277599335],[120,-15,64,0.5710313618183136],[120,-15,65,0.5716795176267624],[120,-15,66,0.5733378008008003],[120,-15,67,0.5752991139888763],[120,-15,68,0.57660873234272],[120,-15,69,0.576654490083456],[120,-15,70,0.5755886770784855],[120,-15,71,0.5740190111100674],[120,-15,72,0.5718190930783749],[120,-15,73,0.5696920119225979],[120,-15,74,0.5685090236365795],[120,-15,75,0.5684594549238682],[120,-15,76,0.5696574188768864],[120,-15,77,0.5720305554568768],[120,-15,78,0.5753662995994091],[120,-15,79,0.5791716277599335],[120,-14,64,0.5632188618183136],[120,-14,65,0.5638670176267624],[120,-14,66,0.5655253008008003],[120,-14,67,0.5674866139888763],[120,-14,68,0.56879623234272],[120,-14,69,0.568841990083456],[120,-14,70,0.5677761770784855],[120,-14,71,0.5662065111100674],[120,-14,72,0.5640065930783749],[120,-14,73,0.5618795119225979],[120,-14,74,0.5606965236365795],[120,-14,75,0.5606469549238682],[120,-14,76,0.5618449188768864],[120,-14,77,0.5642180554568768],[120,-14,78,0.5675537995994091],[120,-14,79,0.5713591277599335],[120,-13,64,0.5554063618183136],[120,-13,65,0.5560545176267624],[120,-13,66,0.5577128008008003],[120,-13,67,0.5596741139888763],[120,-13,68,0.56098373234272],[120,-13,69,0.561029490083456],[120,-13,70,0.5599636770784855],[120,-13,71,0.5583940111100674],[120,-13,72,0.5561940930783749],[120,-13,73,0.5540670119225979],[120,-13,74,0.5528840236365795],[120,-13,75,0.5528344549238682],[120,-13,76,0.5540324188768864],[120,-13,77,0.5564055554568768],[120,-13,78,0.5597412995994091],[120,-13,79,0.5635466277599335],[120,-12,64,0.5475938618183136],[120,-12,65,0.5482420176267624],[120,-12,66,0.5499003008008003],[120,-12,67,0.5518616139888763],[120,-12,68,0.55317123234272],[120,-12,69,0.553216990083456],[120,-12,70,0.5521511770784855],[120,-12,71,0.5505815111100674],[120,-12,72,0.5483815930783749],[120,-12,73,0.5462545119225979],[120,-12,74,0.5450715236365795],[120,-12,75,0.5450219549238682],[120,-12,76,0.5462199188768864],[120,-12,77,0.5485930554568768],[120,-12,78,0.5519287995994091],[120,-12,79,0.5557341277599335],[120,-11,64,0.5397813618183136],[120,-11,65,0.5404295176267624],[120,-11,66,0.5420878008008003],[120,-11,67,0.5440491139888763],[120,-11,68,0.54535873234272],[120,-11,69,0.545404490083456],[120,-11,70,0.5443386770784855],[120,-11,71,0.5427690111100674],[120,-11,72,0.5405690930783749],[120,-11,73,0.5384420119225979],[120,-11,74,0.5372590236365795],[120,-11,75,0.5372094549238682],[120,-11,76,0.5384074188768864],[120,-11,77,0.5407805554568768],[120,-11,78,0.5441162995994091],[120,-11,79,0.5479216277599335],[120,-10,64,0.5319688618183136],[120,-10,65,0.5326170176267624],[120,-10,66,0.5342753008008003],[120,-10,67,0.5362366139888763],[120,-10,68,0.53754623234272],[120,-10,69,0.537591990083456],[120,-10,70,0.5365261770784855],[120,-10,71,0.5349565111100674],[120,-10,72,0.5327565930783749],[120,-10,73,0.5306295119225979],[120,-10,74,0.5294465236365795],[120,-10,75,0.5293969549238682],[120,-10,76,0.5305949188768864],[120,-10,77,0.5329680554568768],[120,-10,78,0.5363037995994091],[120,-10,79,0.5401091277599335],[120,-9,64,0.5241563618183136],[120,-9,65,0.5248045176267624],[120,-9,66,0.5264628008008003],[120,-9,67,0.5284241139888763],[120,-9,68,0.52973373234272],[120,-9,69,0.529779490083456],[120,-9,70,0.5287136770784855],[120,-9,71,0.5271440111100674],[120,-9,72,0.5249440930783749],[120,-9,73,0.5228170119225979],[120,-9,74,0.5216340236365795],[120,-9,75,0.5215844549238682],[120,-9,76,0.5227824188768864],[120,-9,77,0.5251555554568768],[120,-9,78,0.5284912995994091],[120,-9,79,0.5322966277599335],[120,-8,64,0.5163438618183136],[120,-8,65,0.5169920176267624],[120,-8,66,0.5186503008008003],[120,-8,67,0.5206116139888763],[120,-8,68,0.52192123234272],[120,-8,69,0.521966990083456],[120,-8,70,0.5209011770784855],[120,-8,71,0.5193315111100674],[120,-8,72,0.5171315930783749],[120,-8,73,0.5150045119225979],[120,-8,74,0.5138215236365795],[120,-8,75,0.5137719549238682],[120,-8,76,0.5149699188768864],[120,-8,77,0.5173430554568768],[120,-8,78,0.5206787995994091],[120,-8,79,0.5244841277599335],[120,-7,64,0.5085313618183136],[120,-7,65,0.5091795176267624],[120,-7,66,0.5108378008008003],[120,-7,67,0.5127991139888763],[120,-7,68,0.51410873234272],[120,-7,69,0.514154490083456],[120,-7,70,0.5130886770784855],[120,-7,71,0.5115190111100674],[120,-7,72,0.5093190930783749],[120,-7,73,0.5071920119225979],[120,-7,74,0.5060090236365795],[120,-7,75,0.5059594549238682],[120,-7,76,0.5071574188768864],[120,-7,77,0.5095305554568768],[120,-7,78,0.5128662995994091],[120,-7,79,0.5166716277599335],[120,-6,64,0.5007188618183136],[120,-6,65,0.5013670176267624],[120,-6,66,0.5030253008008003],[120,-6,67,0.5049866139888763],[120,-6,68,0.50629623234272],[120,-6,69,0.506341990083456],[120,-6,70,0.5052761770784855],[120,-6,71,0.5037065111100674],[120,-6,72,0.5015065930783749],[120,-6,73,0.4993795119225979],[120,-6,74,0.4981965236365795],[120,-6,75,0.4981469549238682],[120,-6,76,0.49934491887688637],[120,-6,77,0.5017180554568768],[120,-6,78,0.5050537995994091],[120,-6,79,0.5088591277599335],[120,-5,64,0.4929063618183136],[120,-5,65,0.4935545176267624],[120,-5,66,0.4952128008008003],[120,-5,67,0.49717411398887634],[120,-5,68,0.49848373234272003],[120,-5,69,0.49852949008345604],[120,-5,70,0.4974636770784855],[120,-5,71,0.49589401111006737],[120,-5,72,0.49369409307837486],[120,-5,73,0.4915670119225979],[120,-5,74,0.4903840236365795],[120,-5,75,0.4903344549238682],[120,-5,76,0.49153241887688637],[120,-5,77,0.49390555545687675],[120,-5,78,0.4972412995994091],[120,-5,79,0.5010466277599335],[120,-4,64,0.4850938618183136],[120,-4,65,0.4857420176267624],[120,-4,66,0.4874003008008003],[120,-4,67,0.48936161398887634],[120,-4,68,0.49067123234272003],[120,-4,69,0.49071699008345604],[120,-4,70,0.4896511770784855],[120,-4,71,0.48808151111006737],[120,-4,72,0.48588159307837486],[120,-4,73,0.4837545119225979],[120,-4,74,0.4825715236365795],[120,-4,75,0.4825219549238682],[120,-4,76,0.48371991887688637],[120,-4,77,0.48609305545687675],[120,-4,78,0.4894287995994091],[120,-4,79,0.49323412775993347],[120,-3,64,0.4772813618183136],[120,-3,65,0.4779295176267624],[120,-3,66,0.4795878008008003],[120,-3,67,0.48154911398887634],[120,-3,68,0.48285873234272003],[120,-3,69,0.48290449008345604],[120,-3,70,0.4818386770784855],[120,-3,71,0.48026901111006737],[120,-3,72,0.47806909307837486],[120,-3,73,0.4759420119225979],[120,-3,74,0.4747590236365795],[120,-3,75,0.4747094549238682],[120,-3,76,0.47590741887688637],[120,-3,77,0.47828055545687675],[120,-3,78,0.4816162995994091],[120,-3,79,0.48542162775993347],[120,-2,64,0.4694688618183136],[120,-2,65,0.4701170176267624],[120,-2,66,0.4717753008008003],[120,-2,67,0.47373661398887634],[120,-2,68,0.47504623234272003],[120,-2,69,0.47509199008345604],[120,-2,70,0.4740261770784855],[120,-2,71,0.47245651111006737],[120,-2,72,0.47025659307837486],[120,-2,73,0.4681295119225979],[120,-2,74,0.4669465236365795],[120,-2,75,0.4668969549238682],[120,-2,76,0.46809491887688637],[120,-2,77,0.47046805545687675],[120,-2,78,0.4738037995994091],[120,-2,79,0.47760912775993347],[120,-1,64,0.4616563618183136],[120,-1,65,0.4623045176267624],[120,-1,66,0.4639628008008003],[120,-1,67,0.46592411398887634],[120,-1,68,0.46723373234272003],[120,-1,69,0.46727949008345604],[120,-1,70,0.4662136770784855],[120,-1,71,0.46464401111006737],[120,-1,72,0.46244409307837486],[120,-1,73,0.4603170119225979],[120,-1,74,0.4591340236365795],[120,-1,75,0.4590844549238682],[120,-1,76,0.46028241887688637],[120,-1,77,0.46265555545687675],[120,-1,78,0.4659912995994091],[120,-1,79,0.46979662775993347],[120,0,64,0.4538438618183136],[120,0,65,0.4544920176267624],[120,0,66,0.4561503008008003],[120,0,67,0.45811161398887634],[120,0,68,0.45942123234272003],[120,0,69,0.45946699008345604],[120,0,70,0.4584011770784855],[120,0,71,0.45683151111006737],[120,0,72,0.45463159307837486],[120,0,73,0.4525045119225979],[120,0,74,0.4513215236365795],[120,0,75,0.4512719549238682],[120,0,76,0.45246991887688637],[120,0,77,0.45484305545687675],[120,0,78,0.4581787995994091],[120,0,79,0.46198412775993347],[120,1,64,0.4460313618183136],[120,1,65,0.4466795176267624],[120,1,66,0.4483378008008003],[120,1,67,0.45029911398887634],[120,1,68,0.45160873234272003],[120,1,69,0.45165449008345604],[120,1,70,0.4505886770784855],[120,1,71,0.44901901111006737],[120,1,72,0.44681909307837486],[120,1,73,0.4446920119225979],[120,1,74,0.4435090236365795],[120,1,75,0.4434594549238682],[120,1,76,0.44465741887688637],[120,1,77,0.44703055545687675],[120,1,78,0.4503662995994091],[120,1,79,0.45417162775993347],[120,2,64,0.4382188618183136],[120,2,65,0.4388670176267624],[120,2,66,0.4405253008008003],[120,2,67,0.44248661398887634],[120,2,68,0.44379623234272003],[120,2,69,0.44384199008345604],[120,2,70,0.4427761770784855],[120,2,71,0.44120651111006737],[120,2,72,0.43900659307837486],[120,2,73,0.4368795119225979],[120,2,74,0.4356965236365795],[120,2,75,0.4356469549238682],[120,2,76,0.43684491887688637],[120,2,77,0.43921805545687675],[120,2,78,0.4425537995994091],[120,2,79,0.44635912775993347],[120,3,64,0.4304063618183136],[120,3,65,0.4310545176267624],[120,3,66,0.4327128008008003],[120,3,67,0.43467411398887634],[120,3,68,0.43598373234272003],[120,3,69,0.43602949008345604],[120,3,70,0.4349636770784855],[120,3,71,0.43339401111006737],[120,3,72,0.43119409307837486],[120,3,73,0.4290670119225979],[120,3,74,0.4278840236365795],[120,3,75,0.4278344549238682],[120,3,76,0.42903241887688637],[120,3,77,0.43140555545687675],[120,3,78,0.4347412995994091],[120,3,79,0.43854662775993347],[120,4,64,0.4225938618183136],[120,4,65,0.4232420176267624],[120,4,66,0.4249003008008003],[120,4,67,0.42686161398887634],[120,4,68,0.42817123234272003],[120,4,69,0.42821699008345604],[120,4,70,0.4271511770784855],[120,4,71,0.42558151111006737],[120,4,72,0.42338159307837486],[120,4,73,0.4212545119225979],[120,4,74,0.4200715236365795],[120,4,75,0.4200219549238682],[120,4,76,0.42121991887688637],[120,4,77,0.42359305545687675],[120,4,78,0.4269287995994091],[120,4,79,0.43073412775993347],[120,5,64,0.4147813618183136],[120,5,65,0.4154295176267624],[120,5,66,0.4170878008008003],[120,5,67,0.41904911398887634],[120,5,68,0.42035873234272003],[120,5,69,0.42040449008345604],[120,5,70,0.4193386770784855],[120,5,71,0.41776901111006737],[120,5,72,0.41556909307837486],[120,5,73,0.4134420119225979],[120,5,74,0.4122590236365795],[120,5,75,0.4122094549238682],[120,5,76,0.41340741887688637],[120,5,77,0.41578055545687675],[120,5,78,0.4191162995994091],[120,5,79,0.42292162775993347],[120,6,64,0.4069688618183136],[120,6,65,0.4076170176267624],[120,6,66,0.4092753008008003],[120,6,67,0.41123661398887634],[120,6,68,0.41254623234272003],[120,6,69,0.41259199008345604],[120,6,70,0.4115261770784855],[120,6,71,0.40995651111006737],[120,6,72,0.40775659307837486],[120,6,73,0.4056295119225979],[120,6,74,0.4044465236365795],[120,6,75,0.4043969549238682],[120,6,76,0.40559491887688637],[120,6,77,0.40796805545687675],[120,6,78,0.4113037995994091],[120,6,79,0.41510912775993347],[120,7,64,0.3991563618183136],[120,7,65,0.3998045176267624],[120,7,66,0.4014628008008003],[120,7,67,0.40342411398887634],[120,7,68,0.40473373234272003],[120,7,69,0.40477949008345604],[120,7,70,0.4037136770784855],[120,7,71,0.40214401111006737],[120,7,72,0.39994409307837486],[120,7,73,0.3978170119225979],[120,7,74,0.3966340236365795],[120,7,75,0.3965844549238682],[120,7,76,0.39778241887688637],[120,7,77,0.40015555545687675],[120,7,78,0.4034912995994091],[120,7,79,0.40729662775993347],[120,8,64,0.3913438618183136],[120,8,65,0.3919920176267624],[120,8,66,0.3936503008008003],[120,8,67,0.39561161398887634],[120,8,68,0.39692123234272003],[120,8,69,0.39696699008345604],[120,8,70,0.3959011770784855],[120,8,71,0.39433151111006737],[120,8,72,0.39213159307837486],[120,8,73,0.3900045119225979],[120,8,74,0.3888215236365795],[120,8,75,0.3887719549238682],[120,8,76,0.38996991887688637],[120,8,77,0.39234305545687675],[120,8,78,0.3956787995994091],[120,8,79,0.39948412775993347],[120,9,64,0.3835313618183136],[120,9,65,0.3841795176267624],[120,9,66,0.3858378008008003],[120,9,67,0.38779911398887634],[120,9,68,0.38910873234272003],[120,9,69,0.38915449008345604],[120,9,70,0.3880886770784855],[120,9,71,0.38651901111006737],[120,9,72,0.38431909307837486],[120,9,73,0.3821920119225979],[120,9,74,0.3810090236365795],[120,9,75,0.3809594549238682],[120,9,76,0.38215741887688637],[120,9,77,0.38453055545687675],[120,9,78,0.3878662995994091],[120,9,79,0.39167162775993347],[120,10,64,0.3757188618183136],[120,10,65,0.3763670176267624],[120,10,66,0.3780253008008003],[120,10,67,0.37998661398887634],[120,10,68,0.38129623234272003],[120,10,69,0.38134199008345604],[120,10,70,0.3802761770784855],[120,10,71,0.37870651111006737],[120,10,72,0.37650659307837486],[120,10,73,0.3743795119225979],[120,10,74,0.3731965236365795],[120,10,75,0.3731469549238682],[120,10,76,0.37434491887688637],[120,10,77,0.37671805545687675],[120,10,78,0.3800537995994091],[120,10,79,0.38385912775993347],[120,11,64,0.3679063618183136],[120,11,65,0.3685545176267624],[120,11,66,0.3702128008008003],[120,11,67,0.37217411398887634],[120,11,68,0.37348373234272003],[120,11,69,0.37352949008345604],[120,11,70,0.3724636770784855],[120,11,71,0.37089401111006737],[120,11,72,0.36869409307837486],[120,11,73,0.3665670119225979],[120,11,74,0.3653840236365795],[120,11,75,0.3653344549238682],[120,11,76,0.36653241887688637],[120,11,77,0.36890555545687675],[120,11,78,0.3722412995994091],[120,11,79,0.37604662775993347],[120,12,64,0.3600938618183136],[120,12,65,0.3607420176267624],[120,12,66,0.3624003008008003],[120,12,67,0.36436161398887634],[120,12,68,0.36567123234272003],[120,12,69,0.36571699008345604],[120,12,70,0.3646511770784855],[120,12,71,0.36308151111006737],[120,12,72,0.36088159307837486],[120,12,73,0.3587545119225979],[120,12,74,0.3575715236365795],[120,12,75,0.3575219549238682],[120,12,76,0.35871991887688637],[120,12,77,0.36109305545687675],[120,12,78,0.3644287995994091],[120,12,79,0.36823412775993347],[120,13,64,0.3522813618183136],[120,13,65,0.3529295176267624],[120,13,66,0.3545878008008003],[120,13,67,0.35654911398887634],[120,13,68,0.35785873234272003],[120,13,69,0.35790449008345604],[120,13,70,0.3568386770784855],[120,13,71,0.35526901111006737],[120,13,72,0.35306909307837486],[120,13,73,0.3509420119225979],[120,13,74,0.3497590236365795],[120,13,75,0.3497094549238682],[120,13,76,0.35090741887688637],[120,13,77,0.35328055545687675],[120,13,78,0.3566162995994091],[120,13,79,0.36042162775993347],[120,14,64,0.3444688618183136],[120,14,65,0.3451170176267624],[120,14,66,0.3467753008008003],[120,14,67,0.34873661398887634],[120,14,68,0.35004623234272003],[120,14,69,0.35009199008345604],[120,14,70,0.3490261770784855],[120,14,71,0.34745651111006737],[120,14,72,0.34525659307837486],[120,14,73,0.3431295119225979],[120,14,74,0.3419465236365795],[120,14,75,0.3418969549238682],[120,14,76,0.34309491887688637],[120,14,77,0.34546805545687675],[120,14,78,0.3488037995994091],[120,14,79,0.35260912775993347],[120,15,64,0.3366563618183136],[120,15,65,0.3373045176267624],[120,15,66,0.3389628008008003],[120,15,67,0.34092411398887634],[120,15,68,0.34223373234272003],[120,15,69,0.34227949008345604],[120,15,70,0.3412136770784855],[120,15,71,0.33964401111006737],[120,15,72,0.33744409307837486],[120,15,73,0.3353170119225979],[120,15,74,0.3341340236365795],[120,15,75,0.3340844549238682],[120,15,76,0.33528241887688637],[120,15,77,0.33765555545687675],[120,15,78,0.3409912995994091],[120,15,79,0.34479662775993347],[120,16,64,0.3288438618183136],[120,16,65,0.3294920176267624],[120,16,66,0.3311503008008003],[120,16,67,0.33311161398887634],[120,16,68,0.33442123234272003],[120,16,69,0.33446699008345604],[120,16,70,0.3334011770784855],[120,16,71,0.33183151111006737],[120,16,72,0.32963159307837486],[120,16,73,0.3275045119225979],[120,16,74,0.3263215236365795],[120,16,75,0.3262719549238682],[120,16,76,0.32746991887688637],[120,16,77,0.32984305545687675],[120,16,78,0.3331787995994091],[120,16,79,0.33698412775993347],[120,17,64,0.3210313618183136],[120,17,65,0.3216795176267624],[120,17,66,0.3233378008008003],[120,17,67,0.32529911398887634],[120,17,68,0.32660873234272003],[120,17,69,0.32665449008345604],[120,17,70,0.3255886770784855],[120,17,71,0.32401901111006737],[120,17,72,0.32181909307837486],[120,17,73,0.3196920119225979],[120,17,74,0.3185090236365795],[120,17,75,0.3184594549238682],[120,17,76,0.31965741887688637],[120,17,77,0.32203055545687675],[120,17,78,0.3253662995994091],[120,17,79,0.32917162775993347],[120,18,64,0.3132188618183136],[120,18,65,0.3138670176267624],[120,18,66,0.3155253008008003],[120,18,67,0.31748661398887634],[120,18,68,0.31879623234272003],[120,18,69,0.31884199008345604],[120,18,70,0.3177761770784855],[120,18,71,0.31620651111006737],[120,18,72,0.31400659307837486],[120,18,73,0.3118795119225979],[120,18,74,0.3106965236365795],[120,18,75,0.3106469549238682],[120,18,76,0.31184491887688637],[120,18,77,0.31421805545687675],[120,18,78,0.3175537995994091],[120,18,79,0.32135912775993347],[120,19,64,0.3054063618183136],[120,19,65,0.3060545176267624],[120,19,66,0.3077128008008003],[120,19,67,0.30967411398887634],[120,19,68,0.31098373234272003],[120,19,69,0.31102949008345604],[120,19,70,0.3099636770784855],[120,19,71,0.30839401111006737],[120,19,72,0.30619409307837486],[120,19,73,0.3040670119225979],[120,19,74,0.3028840236365795],[120,19,75,0.3028344549238682],[120,19,76,0.30403241887688637],[120,19,77,0.30640555545687675],[120,19,78,0.3097412995994091],[120,19,79,0.31354662775993347],[120,20,64,0.2975938618183136],[120,20,65,0.2982420176267624],[120,20,66,0.2999003008008003],[120,20,67,0.30186161398887634],[120,20,68,0.30317123234272003],[120,20,69,0.30321699008345604],[120,20,70,0.3021511770784855],[120,20,71,0.30058151111006737],[120,20,72,0.29838159307837486],[120,20,73,0.2962545119225979],[120,20,74,0.2950715236365795],[120,20,75,0.2950219549238682],[120,20,76,0.29621991887688637],[120,20,77,0.29859305545687675],[120,20,78,0.3019287995994091],[120,20,79,0.30573412775993347],[120,21,64,0.2897813618183136],[120,21,65,0.2904295176267624],[120,21,66,0.2920878008008003],[120,21,67,0.29404911398887634],[120,21,68,0.29535873234272003],[120,21,69,0.29540449008345604],[120,21,70,0.2943386770784855],[120,21,71,0.29276901111006737],[120,21,72,0.29056909307837486],[120,21,73,0.2884420119225979],[120,21,74,0.2872590236365795],[120,21,75,0.2872094549238682],[120,21,76,0.28840741887688637],[120,21,77,0.29078055545687675],[120,21,78,0.2941162995994091],[120,21,79,0.29792162775993347],[120,22,64,0.2819688618183136],[120,22,65,0.2826170176267624],[120,22,66,0.2842753008008003],[120,22,67,0.28623661398887634],[120,22,68,0.28754623234272003],[120,22,69,0.28759199008345604],[120,22,70,0.2865261770784855],[120,22,71,0.28495651111006737],[120,22,72,0.28275659307837486],[120,22,73,0.2806295119225979],[120,22,74,0.2794465236365795],[120,22,75,0.2793969549238682],[120,22,76,0.28059491887688637],[120,22,77,0.28296805545687675],[120,22,78,0.2863037995994091],[120,22,79,0.29010912775993347],[120,23,64,0.2741563618183136],[120,23,65,0.2748045176267624],[120,23,66,0.2764628008008003],[120,23,67,0.27842411398887634],[120,23,68,0.27973373234272003],[120,23,69,0.27977949008345604],[120,23,70,0.2787136770784855],[120,23,71,0.27714401111006737],[120,23,72,0.27494409307837486],[120,23,73,0.2728170119225979],[120,23,74,0.2716340236365795],[120,23,75,0.2715844549238682],[120,23,76,0.27278241887688637],[120,23,77,0.27515555545687675],[120,23,78,0.2784912995994091],[120,23,79,0.28229662775993347],[120,24,64,0.2663438618183136],[120,24,65,0.2669920176267624],[120,24,66,0.2686503008008003],[120,24,67,0.27061161398887634],[120,24,68,0.27192123234272003],[120,24,69,0.27196699008345604],[120,24,70,0.2709011770784855],[120,24,71,0.26933151111006737],[120,24,72,0.26713159307837486],[120,24,73,0.2650045119225979],[120,24,74,0.2638215236365795],[120,24,75,0.2637719549238682],[120,24,76,0.26496991887688637],[120,24,77,0.26734305545687675],[120,24,78,0.2706787995994091],[120,24,79,0.27448412775993347],[120,25,64,0.2585313618183136],[120,25,65,0.2591795176267624],[120,25,66,0.2608378008008003],[120,25,67,0.26279911398887634],[120,25,68,0.26410873234272003],[120,25,69,0.26415449008345604],[120,25,70,0.2630886770784855],[120,25,71,0.26151901111006737],[120,25,72,0.25931909307837486],[120,25,73,0.2571920119225979],[120,25,74,0.2560090236365795],[120,25,75,0.2559594549238682],[120,25,76,0.25715741887688637],[120,25,77,0.25953055545687675],[120,25,78,0.2628662995994091],[120,25,79,0.26667162775993347],[120,26,64,0.2507188618183136],[120,26,65,0.2513670176267624],[120,26,66,0.2530253008008003],[120,26,67,0.25498661398887634],[120,26,68,0.25629623234272003],[120,26,69,0.25634199008345604],[120,26,70,0.2552761770784855],[120,26,71,0.25370651111006737],[120,26,72,0.25150659307837486],[120,26,73,0.24937951192259789],[120,26,74,0.2481965236365795],[120,26,75,0.24814695492386818],[120,26,76,0.24934491887688637],[120,26,77,0.25171805545687675],[120,26,78,0.2550537995994091],[120,26,79,0.25885912775993347],[120,27,64,0.2429063618183136],[120,27,65,0.2435545176267624],[120,27,66,0.24521280080080032],[120,27,67,0.24717411398887634],[120,27,68,0.24848373234272003],[120,27,69,0.24852949008345604],[120,27,70,0.2474636770784855],[120,27,71,0.24589401111006737],[120,27,72,0.24369409307837486],[120,27,73,0.24156701192259789],[120,27,74,0.2403840236365795],[120,27,75,0.24033445492386818],[120,27,76,0.24153241887688637],[120,27,77,0.24390555545687675],[120,27,78,0.2472412995994091],[120,27,79,0.25104662775993347],[120,28,64,0.2350938618183136],[120,28,65,0.2357420176267624],[120,28,66,0.23740030080080032],[120,28,67,0.23936161398887634],[120,28,68,0.24067123234272003],[120,28,69,0.24071699008345604],[120,28,70,0.2396511770784855],[120,28,71,0.23808151111006737],[120,28,72,0.23588159307837486],[120,28,73,0.23375451192259789],[120,28,74,0.2325715236365795],[120,28,75,0.23252195492386818],[120,28,76,0.23371991887688637],[120,28,77,0.23609305545687675],[120,28,78,0.2394287995994091],[120,28,79,0.24323412775993347],[120,29,64,0.2272813618183136],[120,29,65,0.2279295176267624],[120,29,66,0.22958780080080032],[120,29,67,0.23154911398887634],[120,29,68,0.23285873234272003],[120,29,69,0.23290449008345604],[120,29,70,0.2318386770784855],[120,29,71,0.23026901111006737],[120,29,72,0.22806909307837486],[120,29,73,0.22594201192259789],[120,29,74,0.2247590236365795],[120,29,75,0.22470945492386818],[120,29,76,0.22590741887688637],[120,29,77,0.22828055545687675],[120,29,78,0.2316162995994091],[120,29,79,0.23542162775993347],[120,30,64,0.2194688618183136],[120,30,65,0.2201170176267624],[120,30,66,0.22177530080080032],[120,30,67,0.22373661398887634],[120,30,68,0.22504623234272003],[120,30,69,0.22509199008345604],[120,30,70,0.2240261770784855],[120,30,71,0.22245651111006737],[120,30,72,0.22025659307837486],[120,30,73,0.21812951192259789],[120,30,74,0.2169465236365795],[120,30,75,0.21689695492386818],[120,30,76,0.21809491887688637],[120,30,77,0.22046805545687675],[120,30,78,0.2238037995994091],[120,30,79,0.22760912775993347],[120,31,64,0.2116563618183136],[120,31,65,0.2123045176267624],[120,31,66,0.21396280080080032],[120,31,67,0.21592411398887634],[120,31,68,0.21723373234272003],[120,31,69,0.21727949008345604],[120,31,70,0.2162136770784855],[120,31,71,0.21464401111006737],[120,31,72,0.21244409307837486],[120,31,73,0.21031701192259789],[120,31,74,0.2091340236365795],[120,31,75,0.20908445492386818],[120,31,76,0.21028241887688637],[120,31,77,0.21265555545687675],[120,31,78,0.2159912995994091],[120,31,79,0.21979662775993347],[120,32,64,0.2038438618183136],[120,32,65,0.2044920176267624],[120,32,66,0.20615030080080032],[120,32,67,0.20811161398887634],[120,32,68,0.20942123234272003],[120,32,69,0.20946699008345604],[120,32,70,0.2084011770784855],[120,32,71,0.20683151111006737],[120,32,72,0.20463159307837486],[120,32,73,0.20250451192259789],[120,32,74,0.2013215236365795],[120,32,75,0.20127195492386818],[120,32,76,0.20246991887688637],[120,32,77,0.20484305545687675],[120,32,78,0.2081787995994091],[120,32,79,0.21198412775993347],[120,33,64,0.1960313618183136],[120,33,65,0.1966795176267624],[120,33,66,0.19833780080080032],[120,33,67,0.20029911398887634],[120,33,68,0.20160873234272003],[120,33,69,0.20165449008345604],[120,33,70,0.2005886770784855],[120,33,71,0.19901901111006737],[120,33,72,0.19681909307837486],[120,33,73,0.19469201192259789],[120,33,74,0.1935090236365795],[120,33,75,0.19345945492386818],[120,33,76,0.19465741887688637],[120,33,77,0.19703055545687675],[120,33,78,0.2003662995994091],[120,33,79,0.20417162775993347],[120,34,64,0.1882188618183136],[120,34,65,0.1888670176267624],[120,34,66,0.19052530080080032],[120,34,67,0.19248661398887634],[120,34,68,0.19379623234272003],[120,34,69,0.19384199008345604],[120,34,70,0.1927761770784855],[120,34,71,0.19120651111006737],[120,34,72,0.18900659307837486],[120,34,73,0.18687951192259789],[120,34,74,0.1856965236365795],[120,34,75,0.18564695492386818],[120,34,76,0.18684491887688637],[120,34,77,0.18921805545687675],[120,34,78,0.1925537995994091],[120,34,79,0.19635912775993347],[120,35,64,0.1804063618183136],[120,35,65,0.1810545176267624],[120,35,66,0.18271280080080032],[120,35,67,0.18467411398887634],[120,35,68,0.18598373234272003],[120,35,69,0.18602949008345604],[120,35,70,0.1849636770784855],[120,35,71,0.18339401111006737],[120,35,72,0.18119409307837486],[120,35,73,0.17906701192259789],[120,35,74,0.1778840236365795],[120,35,75,0.17783445492386818],[120,35,76,0.17903241887688637],[120,35,77,0.18140555545687675],[120,35,78,0.1847412995994091],[120,35,79,0.18854662775993347],[120,36,64,0.1725938618183136],[120,36,65,0.1732420176267624],[120,36,66,0.17490030080080032],[120,36,67,0.17686161398887634],[120,36,68,0.17817123234272003],[120,36,69,0.17821699008345604],[120,36,70,0.1771511770784855],[120,36,71,0.17558151111006737],[120,36,72,0.17338159307837486],[120,36,73,0.17125451192259789],[120,36,74,0.1700715236365795],[120,36,75,0.17002195492386818],[120,36,76,0.17121991887688637],[120,36,77,0.17359305545687675],[120,36,78,0.1769287995994091],[120,36,79,0.18073412775993347],[120,37,64,0.1647813618183136],[120,37,65,0.1654295176267624],[120,37,66,0.16708780080080032],[120,37,67,0.16904911398887634],[120,37,68,0.17035873234272003],[120,37,69,0.17040449008345604],[120,37,70,0.1693386770784855],[120,37,71,0.16776901111006737],[120,37,72,0.16556909307837486],[120,37,73,0.16344201192259789],[120,37,74,0.1622590236365795],[120,37,75,0.16220945492386818],[120,37,76,0.16340741887688637],[120,37,77,0.16578055545687675],[120,37,78,0.1691162995994091],[120,37,79,0.17292162775993347],[120,38,64,0.1569688618183136],[120,38,65,0.1576170176267624],[120,38,66,0.15927530080080032],[120,38,67,0.16123661398887634],[120,38,68,0.16254623234272003],[120,38,69,0.16259199008345604],[120,38,70,0.1615261770784855],[120,38,71,0.15995651111006737],[120,38,72,0.15775659307837486],[120,38,73,0.15562951192259789],[120,38,74,0.1544465236365795],[120,38,75,0.15439695492386818],[120,38,76,0.15559491887688637],[120,38,77,0.15796805545687675],[120,38,78,0.1613037995994091],[120,38,79,0.16510912775993347],[120,39,64,0.1491563618183136],[120,39,65,0.1498045176267624],[120,39,66,0.15146280080080032],[120,39,67,0.15342411398887634],[120,39,68,0.15473373234272003],[120,39,69,0.15477949008345604],[120,39,70,0.1537136770784855],[120,39,71,0.15214401111006737],[120,39,72,0.14994409307837486],[120,39,73,0.14781701192259789],[120,39,74,0.1466340236365795],[120,39,75,0.14658445492386818],[120,39,76,0.14778241887688637],[120,39,77,0.15015555545687675],[120,39,78,0.1534912995994091],[120,39,79,0.15729662775993347],[120,40,64,0.1413438618183136],[120,40,65,0.1419920176267624],[120,40,66,0.14365030080080032],[120,40,67,0.14561161398887634],[120,40,68,0.14692123234272003],[120,40,69,0.14696699008345604],[120,40,70,0.1459011770784855],[120,40,71,0.14433151111006737],[120,40,72,0.14213159307837486],[120,40,73,0.14000451192259789],[120,40,74,0.1388215236365795],[120,40,75,0.13877195492386818],[120,40,76,0.13996991887688637],[120,40,77,0.14234305545687675],[120,40,78,0.1456787995994091],[120,40,79,0.14948412775993347],[120,41,64,0.1335313618183136],[120,41,65,0.1341795176267624],[120,41,66,0.13583780080080032],[120,41,67,0.13779911398887634],[120,41,68,0.13910873234272003],[120,41,69,0.13915449008345604],[120,41,70,0.1380886770784855],[120,41,71,0.13651901111006737],[120,41,72,0.13431909307837486],[120,41,73,0.13219201192259789],[120,41,74,0.1310090236365795],[120,41,75,0.13095945492386818],[120,41,76,0.13215741887688637],[120,41,77,0.13453055545687675],[120,41,78,0.1378662995994091],[120,41,79,0.14167162775993347],[120,42,64,0.1257188618183136],[120,42,65,0.1263670176267624],[120,42,66,0.12802530080080032],[120,42,67,0.12998661398887634],[120,42,68,0.13129623234272003],[120,42,69,0.13134199008345604],[120,42,70,0.1302761770784855],[120,42,71,0.12870651111006737],[120,42,72,0.12650659307837486],[120,42,73,0.12437951192259789],[120,42,74,0.12319652363657951],[120,42,75,0.12314695492386818],[120,42,76,0.12434491887688637],[120,42,77,0.12671805545687675],[120,42,78,0.1300537995994091],[120,42,79,0.13385912775993347],[120,43,64,0.1179063618183136],[120,43,65,0.11855451762676239],[120,43,66,0.12021280080080032],[120,43,67,0.12217411398887634],[120,43,68,0.12348373234272003],[120,43,69,0.12352949008345604],[120,43,70,0.12246367707848549],[120,43,71,0.12089401111006737],[120,43,72,0.11869409307837486],[120,43,73,0.11656701192259789],[120,43,74,0.11538402363657951],[120,43,75,0.11533445492386818],[120,43,76,0.11653241887688637],[120,43,77,0.11890555545687675],[120,43,78,0.1222412995994091],[120,43,79,0.12604662775993347],[120,44,64,0.1100938618183136],[120,44,65,0.11074201762676239],[120,44,66,0.11240030080080032],[120,44,67,0.11436161398887634],[120,44,68,0.11567123234272003],[120,44,69,0.11571699008345604],[120,44,70,0.11465117707848549],[120,44,71,0.11308151111006737],[120,44,72,0.11088159307837486],[120,44,73,0.10875451192259789],[120,44,74,0.10757152363657951],[120,44,75,0.10752195492386818],[120,44,76,0.10871991887688637],[120,44,77,0.11109305545687675],[120,44,78,0.1144287995994091],[120,44,79,0.11823412775993347],[120,45,64,0.1022813618183136],[120,45,65,0.10292951762676239],[120,45,66,0.10458780080080032],[120,45,67,0.10654911398887634],[120,45,68,0.10785873234272003],[120,45,69,0.10790449008345604],[120,45,70,0.10683867707848549],[120,45,71,0.10526901111006737],[120,45,72,0.10306909307837486],[120,45,73,0.10094201192259789],[120,45,74,0.09975902363657951],[120,45,75,0.09970945492386818],[120,45,76,0.10090741887688637],[120,45,77,0.10328055545687675],[120,45,78,0.1066162995994091],[120,45,79,0.11042162775993347],[120,46,64,0.0944688618183136],[120,46,65,0.09511701762676239],[120,46,66,0.09677530080080032],[120,46,67,0.09873661398887634],[120,46,68,0.10004623234272003],[120,46,69,0.10009199008345604],[120,46,70,0.09902617707848549],[120,46,71,0.09745651111006737],[120,46,72,0.09525659307837486],[120,46,73,0.09312951192259789],[120,46,74,0.09194652363657951],[120,46,75,0.09189695492386818],[120,46,76,0.09309491887688637],[120,46,77,0.09546805545687675],[120,46,78,0.0988037995994091],[120,46,79,0.10260912775993347],[120,47,64,0.0866563618183136],[120,47,65,0.08730451762676239],[120,47,66,0.08896280080080032],[120,47,67,0.09092411398887634],[120,47,68,0.09223373234272003],[120,47,69,0.09227949008345604],[120,47,70,0.09121367707848549],[120,47,71,0.08964401111006737],[120,47,72,0.08744409307837486],[120,47,73,0.08531701192259789],[120,47,74,0.08413402363657951],[120,47,75,0.08408445492386818],[120,47,76,0.08528241887688637],[120,47,77,0.08765555545687675],[120,47,78,0.0909912995994091],[120,47,79,0.09479662775993347],[120,48,64,0.0788438618183136],[120,48,65,0.07949201762676239],[120,48,66,0.08115030080080032],[120,48,67,0.08311161398887634],[120,48,68,0.08442123234272003],[120,48,69,0.08446699008345604],[120,48,70,0.08340117707848549],[120,48,71,0.08183151111006737],[120,48,72,0.07963159307837486],[120,48,73,0.07750451192259789],[120,48,74,0.07632152363657951],[120,48,75,0.07627195492386818],[120,48,76,0.07746991887688637],[120,48,77,0.07984305545687675],[120,48,78,0.0831787995994091],[120,48,79,0.08698412775993347],[120,49,64,0.0710313618183136],[120,49,65,0.07167951762676239],[120,49,66,0.07333780080080032],[120,49,67,0.07529911398887634],[120,49,68,0.07660873234272003],[120,49,69,0.07665449008345604],[120,49,70,0.07558867707848549],[120,49,71,0.07401901111006737],[120,49,72,0.07181909307837486],[120,49,73,0.06969201192259789],[120,49,74,0.06850902363657951],[120,49,75,0.06845945492386818],[120,49,76,0.06965741887688637],[120,49,77,0.07203055545687675],[120,49,78,0.0753662995994091],[120,49,79,0.07917162775993347],[120,50,64,0.0632188618183136],[120,50,65,0.06386701762676239],[120,50,66,0.06552530080080032],[120,50,67,0.06748661398887634],[120,50,68,0.06879623234272003],[120,50,69,0.06884199008345604],[120,50,70,0.06777617707848549],[120,50,71,0.06620651111006737],[120,50,72,0.06400659307837486],[120,50,73,0.061879511922597885],[120,50,74,0.060696523636579514],[120,50,75,0.06064695492386818],[120,50,76,0.06184491887688637],[120,50,77,0.06421805545687675],[120,50,78,0.0675537995994091],[120,50,79,0.07135912775993347],[120,51,64,0.0554063618183136],[120,51,65,0.05605451762676239],[120,51,66,0.057712800800800323],[120,51,67,0.05967411398887634],[120,51,68,0.06098373234272003],[120,51,69,0.06102949008345604],[120,51,70,0.05996367707848549],[120,51,71,0.05839401111006737],[120,51,72,0.05619409307837486],[120,51,73,0.054067011922597885],[120,51,74,0.052884023636579514],[120,51,75,0.05283445492386818],[120,51,76,0.05403241887688637],[120,51,77,0.056405555456876755],[120,51,78,0.0597412995994091],[120,51,79,0.06354662775993347],[120,52,64,0.0475938618183136],[120,52,65,0.04824201762676239],[120,52,66,0.049900300800800323],[120,52,67,0.05186161398887634],[120,52,68,0.05317123234272003],[120,52,69,0.05321699008345604],[120,52,70,0.05215117707848549],[120,52,71,0.05058151111006737],[120,52,72,0.04838159307837486],[120,52,73,0.046254511922597885],[120,52,74,0.045071523636579514],[120,52,75,0.04502195492386818],[120,52,76,0.04621991887688637],[120,52,77,0.048593055456876755],[120,52,78,0.0519287995994091],[120,52,79,0.05573412775993347],[120,53,64,0.0397813618183136],[120,53,65,0.04042951762676239],[120,53,66,0.042087800800800323],[120,53,67,0.04404911398887634],[120,53,68,0.04535873234272003],[120,53,69,0.04540449008345604],[120,53,70,0.04433867707848549],[120,53,71,0.04276901111006737],[120,53,72,0.04056909307837486],[120,53,73,0.038442011922597885],[120,53,74,0.037259023636579514],[120,53,75,0.03720945492386818],[120,53,76,0.03840741887688637],[120,53,77,0.040780555456876755],[120,53,78,0.0441162995994091],[120,53,79,0.04792162775993347],[120,54,64,0.0319688618183136],[120,54,65,0.03261701762676239],[120,54,66,0.034275300800800323],[120,54,67,0.03623661398887634],[120,54,68,0.03754623234272003],[120,54,69,0.03759199008345604],[120,54,70,0.03652617707848549],[120,54,71,0.03495651111006737],[120,54,72,0.03275659307837486],[120,54,73,0.030629511922597885],[120,54,74,0.029446523636579514],[120,54,75,0.02939695492386818],[120,54,76,0.030594918876886368],[120,54,77,0.032968055456876755],[120,54,78,0.0363037995994091],[120,54,79,0.04010912775993347],[120,55,64,0.0241563618183136],[120,55,65,0.02480451762676239],[120,55,66,0.026462800800800323],[120,55,67,0.028424113988876343],[120,55,68,0.029733732342720032],[120,55,69,0.02977949008345604],[120,55,70,0.02871367707848549],[120,55,71,0.027144011110067368],[120,55,72,0.024944093078374863],[120,55,73,0.022817011922597885],[120,55,74,0.021634023636579514],[120,55,75,0.02158445492386818],[120,55,76,0.022782418876886368],[120,55,77,0.025155555456876755],[120,55,78,0.028491299599409103],[120,55,79,0.03229662775993347],[120,56,64,0.0163438618183136],[120,56,65,0.01699201762676239],[120,56,66,0.018650300800800323],[120,56,67,0.020611613988876343],[120,56,68,0.021921232342720032],[120,56,69,0.02196699008345604],[120,56,70,0.02090117707848549],[120,56,71,0.019331511110067368],[120,56,72,0.017131593078374863],[120,56,73,0.015004511922597885],[120,56,74,0.013821523636579514],[120,56,75,0.01377195492386818],[120,56,76,0.014969918876886368],[120,56,77,0.017343055456876755],[120,56,78,0.020678799599409103],[120,56,79,0.02448412775993347],[120,57,64,0.008531361818313599],[120,57,65,0.00917951762676239],[120,57,66,0.010837800800800323],[120,57,67,0.012799113988876343],[120,57,68,0.014108732342720032],[120,57,69,0.01415449008345604],[120,57,70,0.013088677078485489],[120,57,71,0.011519011110067368],[120,57,72,0.009319093078374863],[120,57,73,0.007192011922597885],[120,57,74,0.0060090236365795135],[120,57,75,0.005959454923868179],[120,57,76,0.007157418876886368],[120,57,77,0.009530555456876755],[120,57,78,0.012866299599409103],[120,57,79,0.01667162775993347],[120,58,64,7.188618183135986E-4],[120,58,65,0.0013670176267623901],[120,58,66,0.0030253008008003235],[120,58,67,0.004986613988876343],[120,58,68,0.006296232342720032],[120,58,69,0.006341990083456039],[120,58,70,0.005276177078485489],[120,58,71,0.0037065111100673676],[120,58,72,0.0015065930783748627],[120,58,73,-6.204880774021149E-4],[120,58,74,-0.0018034763634204865],[120,58,75,-0.0018530450761318207],[120,58,76,-6.550811231136322E-4],[120,58,77,0.0017180554568767548],[120,58,78,0.005053799599409103],[120,58,79,0.008859127759933472],[120,59,64,-0.007093638181686401],[120,59,65,-0.00644548237323761],[120,59,66,-0.0047871991991996765],[120,59,67,-0.0028258860111236572],[120,59,68,-0.0015162676572799683],[120,59,69,-0.0014705099165439606],[120,59,70,-0.002536322921514511],[120,59,71,-0.0041059888899326324],[120,59,72,-0.006305906921625137],[120,59,73,-0.008432988077402115],[120,59,74,-0.009615976363420486],[120,59,75,-0.00966554507613182],[120,59,76,-0.008467581123113632],[120,59,77,-0.006094444543123245],[120,59,78,-0.0027587004005908966],[120,59,79,0.0010466277599334717],[120,60,64,-0.014906138181686401],[120,60,65,-0.01425798237323761],[120,60,66,-0.012599699199199677],[120,60,67,-0.010638386011123657],[120,60,68,-0.009328767657279968],[120,60,69,-0.00928300991654396],[120,60,70,-0.010348822921514511],[120,60,71,-0.011918488889932632],[120,60,72,-0.014118406921625137],[120,60,73,-0.016245488077402115],[120,60,74,-0.017428476363420486],[120,60,75,-0.01747804507613182],[120,60,76,-0.016280081123113632],[120,60,77,-0.013906944543123245],[120,60,78,-0.010571200400590897],[120,60,79,-0.006765872240066528],[120,61,64,-0.0227186381816864],[120,61,65,-0.02207048237323761],[120,61,66,-0.020412199199199677],[120,61,67,-0.018450886011123657],[120,61,68,-0.017141267657279968],[120,61,69,-0.01709550991654396],[120,61,70,-0.01816132292151451],[120,61,71,-0.019730988889932632],[120,61,72,-0.021930906921625137],[120,61,73,-0.024057988077402115],[120,61,74,-0.025240976363420486],[120,61,75,-0.02529054507613182],[120,61,76,-0.024092581123113632],[120,61,77,-0.021719444543123245],[120,61,78,-0.018383700400590897],[120,61,79,-0.014578372240066528],[120,62,64,-0.0305311381816864],[120,62,65,-0.02988298237323761],[120,62,66,-0.028224699199199677],[120,62,67,-0.026263386011123657],[120,62,68,-0.024953767657279968],[120,62,69,-0.02490800991654396],[120,62,70,-0.02597382292151451],[120,62,71,-0.027543488889932632],[120,62,72,-0.029743406921625137],[120,62,73,-0.031870488077402115],[120,62,74,-0.033053476363420486],[120,62,75,-0.03310304507613182],[120,62,76,-0.03190508112311363],[120,62,77,-0.029531944543123245],[120,62,78,-0.026196200400590897],[120,62,79,-0.02239087224006653],[120,63,64,-0.0383436381816864],[120,63,65,-0.03769548237323761],[120,63,66,-0.036037199199199677],[120,63,67,-0.03407588601112366],[120,63,68,-0.03276626765727997],[120,63,69,-0.03272050991654396],[120,63,70,-0.03378632292151451],[120,63,71,-0.03535598888993263],[120,63,72,-0.03755590692162514],[120,63,73,-0.039682988077402115],[120,63,74,-0.040865976363420486],[120,63,75,-0.04091554507613182],[120,63,76,-0.03971758112311363],[120,63,77,-0.037344444543123245],[120,63,78,-0.0340087004005909],[120,63,79,-0.03020337224006653],[120,64,64,-0.0461561381816864],[120,64,65,-0.04550798237323761],[120,64,66,-0.043849699199199677],[120,64,67,-0.04188838601112366],[120,64,68,-0.04057876765727997],[120,64,69,-0.04053300991654396],[120,64,70,-0.04159882292151451],[120,64,71,-0.04316848888993263],[120,64,72,-0.04536840692162514],[120,64,73,-0.047495488077402115],[120,64,74,-0.048678476363420486],[120,64,75,-0.04872804507613182],[120,64,76,-0.04753008112311363],[120,64,77,-0.045156944543123245],[120,64,78,-0.0418212004005909],[120,64,79,-0.03801587224006653],[120,65,64,-0.0539686381816864],[120,65,65,-0.05332048237323761],[120,65,66,-0.051662199199199677],[120,65,67,-0.04970088601112366],[120,65,68,-0.04839126765727997],[120,65,69,-0.04834550991654396],[120,65,70,-0.04941132292151451],[120,65,71,-0.05098098888993263],[120,65,72,-0.05318090692162514],[120,65,73,-0.055307988077402115],[120,65,74,-0.056490976363420486],[120,65,75,-0.05654054507613182],[120,65,76,-0.05534258112311363],[120,65,77,-0.052969444543123245],[120,65,78,-0.0496337004005909],[120,65,79,-0.04582837224006653],[120,66,64,-0.0617811381816864],[120,66,65,-0.06113298237323761],[120,66,66,-0.059474699199199677],[120,66,67,-0.05751338601112366],[120,66,68,-0.05620376765727997],[120,66,69,-0.05615800991654396],[120,66,70,-0.05722382292151451],[120,66,71,-0.05879348888993263],[120,66,72,-0.06099340692162514],[120,66,73,-0.06312048807740211],[120,66,74,-0.06430347636342049],[120,66,75,-0.06435304507613182],[120,66,76,-0.06315508112311363],[120,66,77,-0.060781944543123245],[120,66,78,-0.0574462004005909],[120,66,79,-0.05364087224006653],[120,67,64,-0.0695936381816864],[120,67,65,-0.06894548237323761],[120,67,66,-0.06728719919919968],[120,67,67,-0.06532588601112366],[120,67,68,-0.06401626765727997],[120,67,69,-0.06397050991654396],[120,67,70,-0.06503632292151451],[120,67,71,-0.06660598888993263],[120,67,72,-0.06880590692162514],[120,67,73,-0.07093298807740211],[120,67,74,-0.07211597636342049],[120,67,75,-0.07216554507613182],[120,67,76,-0.07096758112311363],[120,67,77,-0.06859444454312325],[120,67,78,-0.0652587004005909],[120,67,79,-0.06145337224006653],[120,68,64,-0.0774061381816864],[120,68,65,-0.07675798237323761],[120,68,66,-0.07509969919919968],[120,68,67,-0.07313838601112366],[120,68,68,-0.07182876765727997],[120,68,69,-0.07178300991654396],[120,68,70,-0.07284882292151451],[120,68,71,-0.07441848888993263],[120,68,72,-0.07661840692162514],[120,68,73,-0.07874548807740211],[120,68,74,-0.07992847636342049],[120,68,75,-0.07997804507613182],[120,68,76,-0.07878008112311363],[120,68,77,-0.07640694454312325],[120,68,78,-0.0730712004005909],[120,68,79,-0.06926587224006653],[120,69,64,-0.0852186381816864],[120,69,65,-0.08457048237323761],[120,69,66,-0.08291219919919968],[120,69,67,-0.08095088601112366],[120,69,68,-0.07964126765727997],[120,69,69,-0.07959550991654396],[120,69,70,-0.08066132292151451],[120,69,71,-0.08223098888993263],[120,69,72,-0.08443090692162514],[120,69,73,-0.08655798807740211],[120,69,74,-0.08774097636342049],[120,69,75,-0.08779054507613182],[120,69,76,-0.08659258112311363],[120,69,77,-0.08421944454312325],[120,69,78,-0.0808837004005909],[120,69,79,-0.07707837224006653],[120,70,64,-0.0930311381816864],[120,70,65,-0.09238298237323761],[120,70,66,-0.09072469919919968],[120,70,67,-0.08876338601112366],[120,70,68,-0.08745376765727997],[120,70,69,-0.08740800991654396],[120,70,70,-0.08847382292151451],[120,70,71,-0.09004348888993263],[120,70,72,-0.09224340692162514],[120,70,73,-0.09437048807740211],[120,70,74,-0.09555347636342049],[120,70,75,-0.09560304507613182],[120,70,76,-0.09440508112311363],[120,70,77,-0.09203194454312325],[120,70,78,-0.0886962004005909],[120,70,79,-0.08489087224006653],[120,71,64,-0.1008436381816864],[120,71,65,-0.10019548237323761],[120,71,66,-0.09853719919919968],[120,71,67,-0.09657588601112366],[120,71,68,-0.09526626765727997],[120,71,69,-0.09522050991654396],[120,71,70,-0.09628632292151451],[120,71,71,-0.09785598888993263],[120,71,72,-0.10005590692162514],[120,71,73,-0.10218298807740211],[120,71,74,-0.10336597636342049],[120,71,75,-0.10341554507613182],[120,71,76,-0.10221758112311363],[120,71,77,-0.09984444454312325],[120,71,78,-0.0965087004005909],[120,71,79,-0.09270337224006653],[120,72,64,-0.1086561381816864],[120,72,65,-0.10800798237323761],[120,72,66,-0.10634969919919968],[120,72,67,-0.10438838601112366],[120,72,68,-0.10307876765727997],[120,72,69,-0.10303300991654396],[120,72,70,-0.10409882292151451],[120,72,71,-0.10566848888993263],[120,72,72,-0.10786840692162514],[120,72,73,-0.10999548807740211],[120,72,74,-0.11117847636342049],[120,72,75,-0.11122804507613182],[120,72,76,-0.11003008112311363],[120,72,77,-0.10765694454312325],[120,72,78,-0.1043212004005909],[120,72,79,-0.10051587224006653],[120,73,64,-0.1164686381816864],[120,73,65,-0.11582048237323761],[120,73,66,-0.11416219919919968],[120,73,67,-0.11220088601112366],[120,73,68,-0.11089126765727997],[120,73,69,-0.11084550991654396],[120,73,70,-0.11191132292151451],[120,73,71,-0.11348098888993263],[120,73,72,-0.11568090692162514],[120,73,73,-0.11780798807740211],[120,73,74,-0.11899097636342049],[120,73,75,-0.11904054507613182],[120,73,76,-0.11784258112311363],[120,73,77,-0.11546944454312325],[120,73,78,-0.1121337004005909],[120,73,79,-0.10832837224006653],[120,74,64,-0.1242811381816864],[120,74,65,-0.12363298237323761],[120,74,66,-0.12197469919919968],[120,74,67,-0.12001338601112366],[120,74,68,-0.11870376765727997],[120,74,69,-0.11865800991654396],[120,74,70,-0.11972382292151451],[120,74,71,-0.12129348888993263],[120,74,72,-0.12349340692162514],[120,74,73,-0.12562048807740211],[120,74,74,-0.1268034763634205],[120,74,75,-0.12685304507613182],[120,74,76,-0.12565508112311363],[120,74,77,-0.12328194454312325],[120,74,78,-0.1199462004005909],[120,74,79,-0.11614087224006653],[120,75,64,-0.1320936381816864],[120,75,65,-0.1314454823732376],[120,75,66,-0.12978719919919968],[120,75,67,-0.12782588601112366],[120,75,68,-0.12651626765727997],[120,75,69,-0.12647050991654396],[120,75,70,-0.1275363229215145],[120,75,71,-0.12910598888993263],[120,75,72,-0.13130590692162514],[120,75,73,-0.13343298807740211],[120,75,74,-0.1346159763634205],[120,75,75,-0.13466554507613182],[120,75,76,-0.13346758112311363],[120,75,77,-0.13109444454312325],[120,75,78,-0.1277587004005909],[120,75,79,-0.12395337224006653],[120,76,64,-0.1399061381816864],[120,76,65,-0.1392579823732376],[120,76,66,-0.13759969919919968],[120,76,67,-0.13563838601112366],[120,76,68,-0.13432876765727997],[120,76,69,-0.13428300991654396],[120,76,70,-0.1353488229215145],[120,76,71,-0.13691848888993263],[120,76,72,-0.13911840692162514],[120,76,73,-0.14124548807740211],[120,76,74,-0.1424284763634205],[120,76,75,-0.14247804507613182],[120,76,76,-0.14128008112311363],[120,76,77,-0.13890694454312325],[120,76,78,-0.1355712004005909],[120,76,79,-0.13176587224006653],[120,77,64,-0.1477186381816864],[120,77,65,-0.1470704823732376],[120,77,66,-0.14541219919919968],[120,77,67,-0.14345088601112366],[120,77,68,-0.14214126765727997],[120,77,69,-0.14209550991654396],[120,77,70,-0.1431613229215145],[120,77,71,-0.14473098888993263],[120,77,72,-0.14693090692162514],[120,77,73,-0.14905798807740211],[120,77,74,-0.1502409763634205],[120,77,75,-0.15029054507613182],[120,77,76,-0.14909258112311363],[120,77,77,-0.14671944454312325],[120,77,78,-0.1433837004005909],[120,77,79,-0.13957837224006653],[120,78,64,-0.1555311381816864],[120,78,65,-0.1548829823732376],[120,78,66,-0.15322469919919968],[120,78,67,-0.15126338601112366],[120,78,68,-0.14995376765727997],[120,78,69,-0.14990800991654396],[120,78,70,-0.1509738229215145],[120,78,71,-0.15254348888993263],[120,78,72,-0.15474340692162514],[120,78,73,-0.15687048807740211],[120,78,74,-0.1580534763634205],[120,78,75,-0.15810304507613182],[120,78,76,-0.15690508112311363],[120,78,77,-0.15453194454312325],[120,78,78,-0.1511962004005909],[120,78,79,-0.14739087224006653],[120,79,64,-0.1633436381816864],[120,79,65,-0.1626954823732376],[120,79,66,-0.16103719919919968],[120,79,67,-0.15907588601112366],[120,79,68,-0.15776626765727997],[120,79,69,-0.15772050991654396],[120,79,70,-0.1587863229215145],[120,79,71,-0.16035598888993263],[120,79,72,-0.16255590692162514],[120,79,73,-0.16468298807740211],[120,79,74,-0.1658659763634205],[120,79,75,-0.16591554507613182],[120,79,76,-0.16471758112311363],[120,79,77,-0.16234444454312325],[120,79,78,-0.1590087004005909],[120,79,79,-0.15520337224006653],[120,80,64,-0.1711561381816864],[120,80,65,-0.1705079823732376],[120,80,66,-0.16884969919919968],[120,80,67,-0.16688838601112366],[120,80,68,-0.16557876765727997],[120,80,69,-0.16553300991654396],[120,80,70,-0.1665988229215145],[120,80,71,-0.16816848888993263],[120,80,72,-0.17036840692162514],[120,80,73,-0.17249548807740211],[120,80,74,-0.1736784763634205],[120,80,75,-0.17372804507613182],[120,80,76,-0.17253008112311363],[120,80,77,-0.17015694454312325],[120,80,78,-0.1668212004005909],[120,80,79,-0.16301587224006653],[120,81,64,-0.1789686381816864],[120,81,65,-0.1783204823732376],[120,81,66,-0.17666219919919968],[120,81,67,-0.17470088601112366],[120,81,68,-0.17339126765727997],[120,81,69,-0.17334550991654396],[120,81,70,-0.1744113229215145],[120,81,71,-0.17598098888993263],[120,81,72,-0.17818090692162514],[120,81,73,-0.18030798807740211],[120,81,74,-0.1814909763634205],[120,81,75,-0.18154054507613182],[120,81,76,-0.18034258112311363],[120,81,77,-0.17796944454312325],[120,81,78,-0.1746337004005909],[120,81,79,-0.17082837224006653],[120,82,64,-0.1867811381816864],[120,82,65,-0.1861329823732376],[120,82,66,-0.18447469919919968],[120,82,67,-0.18251338601112366],[120,82,68,-0.18120376765727997],[120,82,69,-0.18115800991654396],[120,82,70,-0.1822238229215145],[120,82,71,-0.18379348888993263],[120,82,72,-0.18599340692162514],[120,82,73,-0.18812048807740211],[120,82,74,-0.1893034763634205],[120,82,75,-0.18935304507613182],[120,82,76,-0.18815508112311363],[120,82,77,-0.18578194454312325],[120,82,78,-0.1824462004005909],[120,82,79,-0.17864087224006653],[120,83,64,-0.1945936381816864],[120,83,65,-0.1939454823732376],[120,83,66,-0.19228719919919968],[120,83,67,-0.19032588601112366],[120,83,68,-0.18901626765727997],[120,83,69,-0.18897050991654396],[120,83,70,-0.1900363229215145],[120,83,71,-0.19160598888993263],[120,83,72,-0.19380590692162514],[120,83,73,-0.19593298807740211],[120,83,74,-0.1971159763634205],[120,83,75,-0.19716554507613182],[120,83,76,-0.19596758112311363],[120,83,77,-0.19359444454312325],[120,83,78,-0.1902587004005909],[120,83,79,-0.18645337224006653],[120,84,64,-0.2024061381816864],[120,84,65,-0.2017579823732376],[120,84,66,-0.20009969919919968],[120,84,67,-0.19813838601112366],[120,84,68,-0.19682876765727997],[120,84,69,-0.19678300991654396],[120,84,70,-0.1978488229215145],[120,84,71,-0.19941848888993263],[120,84,72,-0.20161840692162514],[120,84,73,-0.20374548807740211],[120,84,74,-0.2049284763634205],[120,84,75,-0.20497804507613182],[120,84,76,-0.20378008112311363],[120,84,77,-0.20140694454312325],[120,84,78,-0.1980712004005909],[120,84,79,-0.19426587224006653],[120,85,64,-0.2102186381816864],[120,85,65,-0.2095704823732376],[120,85,66,-0.20791219919919968],[120,85,67,-0.20595088601112366],[120,85,68,-0.20464126765727997],[120,85,69,-0.20459550991654396],[120,85,70,-0.2056613229215145],[120,85,71,-0.20723098888993263],[120,85,72,-0.20943090692162514],[120,85,73,-0.21155798807740211],[120,85,74,-0.2127409763634205],[120,85,75,-0.21279054507613182],[120,85,76,-0.21159258112311363],[120,85,77,-0.20921944454312325],[120,85,78,-0.2058837004005909],[120,85,79,-0.20207837224006653],[120,86,64,-0.2180311381816864],[120,86,65,-0.2173829823732376],[120,86,66,-0.21572469919919968],[120,86,67,-0.21376338601112366],[120,86,68,-0.21245376765727997],[120,86,69,-0.21240800991654396],[120,86,70,-0.2134738229215145],[120,86,71,-0.21504348888993263],[120,86,72,-0.21724340692162514],[120,86,73,-0.21937048807740211],[120,86,74,-0.2205534763634205],[120,86,75,-0.22060304507613182],[120,86,76,-0.21940508112311363],[120,86,77,-0.21703194454312325],[120,86,78,-0.2136962004005909],[120,86,79,-0.20989087224006653],[120,87,64,-0.2258436381816864],[120,87,65,-0.2251954823732376],[120,87,66,-0.22353719919919968],[120,87,67,-0.22157588601112366],[120,87,68,-0.22026626765727997],[120,87,69,-0.22022050991654396],[120,87,70,-0.2212863229215145],[120,87,71,-0.22285598888993263],[120,87,72,-0.22505590692162514],[120,87,73,-0.22718298807740211],[120,87,74,-0.2283659763634205],[120,87,75,-0.22841554507613182],[120,87,76,-0.22721758112311363],[120,87,77,-0.22484444454312325],[120,87,78,-0.2215087004005909],[120,87,79,-0.21770337224006653],[120,88,64,-0.2336561381816864],[120,88,65,-0.2330079823732376],[120,88,66,-0.23134969919919968],[120,88,67,-0.22938838601112366],[120,88,68,-0.22807876765727997],[120,88,69,-0.22803300991654396],[120,88,70,-0.2290988229215145],[120,88,71,-0.23066848888993263],[120,88,72,-0.23286840692162514],[120,88,73,-0.23499548807740211],[120,88,74,-0.2361784763634205],[120,88,75,-0.23622804507613182],[120,88,76,-0.23503008112311363],[120,88,77,-0.23265694454312325],[120,88,78,-0.2293212004005909],[120,88,79,-0.22551587224006653],[120,89,64,-0.2414686381816864],[120,89,65,-0.2408204823732376],[120,89,66,-0.23916219919919968],[120,89,67,-0.23720088601112366],[120,89,68,-0.23589126765727997],[120,89,69,-0.23584550991654396],[120,89,70,-0.2369113229215145],[120,89,71,-0.23848098888993263],[120,89,72,-0.24068090692162514],[120,89,73,-0.24280798807740211],[120,89,74,-0.2439909763634205],[120,89,75,-0.24404054507613182],[120,89,76,-0.24284258112311363],[120,89,77,-0.24046944454312325],[120,89,78,-0.2371337004005909],[120,89,79,-0.23332837224006653],[120,90,64,-0.2492811381816864],[120,90,65,-0.2486329823732376],[120,90,66,-0.24697469919919968],[120,90,67,-0.24501338601112366],[120,90,68,-0.24370376765727997],[120,90,69,-0.24365800991654396],[120,90,70,-0.2447238229215145],[120,90,71,-0.24629348888993263],[120,90,72,-0.24849340692162514],[120,90,73,-0.2506204880774021],[120,90,74,-0.2518034763634205],[120,90,75,-0.2518530450761318],[120,90,76,-0.25065508112311363],[120,90,77,-0.24828194454312325],[120,90,78,-0.2449462004005909],[120,90,79,-0.24114087224006653],[120,91,64,-0.2570936381816864],[120,91,65,-0.2564454823732376],[120,91,66,-0.2547871991991997],[120,91,67,-0.25282588601112366],[120,91,68,-0.25151626765727997],[120,91,69,-0.25147050991654396],[120,91,70,-0.2525363229215145],[120,91,71,-0.25410598888993263],[120,91,72,-0.25630590692162514],[120,91,73,-0.2584329880774021],[120,91,74,-0.2596159763634205],[120,91,75,-0.2596655450761318],[120,91,76,-0.25846758112311363],[120,91,77,-0.25609444454312325],[120,91,78,-0.2527587004005909],[120,91,79,-0.24895337224006653],[120,92,64,-0.2649061381816864],[120,92,65,-0.2642579823732376],[120,92,66,-0.2625996991991997],[120,92,67,-0.26063838601112366],[120,92,68,-0.25932876765727997],[120,92,69,-0.25928300991654396],[120,92,70,-0.2603488229215145],[120,92,71,-0.26191848888993263],[120,92,72,-0.26411840692162514],[120,92,73,-0.2662454880774021],[120,92,74,-0.2674284763634205],[120,92,75,-0.2674780450761318],[120,92,76,-0.26628008112311363],[120,92,77,-0.26390694454312325],[120,92,78,-0.2605712004005909],[120,92,79,-0.25676587224006653],[120,93,64,-0.2727186381816864],[120,93,65,-0.2720704823732376],[120,93,66,-0.2704121991991997],[120,93,67,-0.26845088601112366],[120,93,68,-0.26714126765727997],[120,93,69,-0.26709550991654396],[120,93,70,-0.2681613229215145],[120,93,71,-0.26973098888993263],[120,93,72,-0.27193090692162514],[120,93,73,-0.2740579880774021],[120,93,74,-0.2752409763634205],[120,93,75,-0.2752905450761318],[120,93,76,-0.27409258112311363],[120,93,77,-0.27171944454312325],[120,93,78,-0.2683837004005909],[120,93,79,-0.26457837224006653],[120,94,64,-0.2805311381816864],[120,94,65,-0.2798829823732376],[120,94,66,-0.2782246991991997],[120,94,67,-0.27626338601112366],[120,94,68,-0.27495376765727997],[120,94,69,-0.27490800991654396],[120,94,70,-0.2759738229215145],[120,94,71,-0.27754348888993263],[120,94,72,-0.27974340692162514],[120,94,73,-0.2818704880774021],[120,94,74,-0.2830534763634205],[120,94,75,-0.2831030450761318],[120,94,76,-0.28190508112311363],[120,94,77,-0.27953194454312325],[120,94,78,-0.2761962004005909],[120,94,79,-0.27239087224006653],[120,95,64,-0.2883436381816864],[120,95,65,-0.2876954823732376],[120,95,66,-0.2860371991991997],[120,95,67,-0.28407588601112366],[120,95,68,-0.28276626765727997],[120,95,69,-0.28272050991654396],[120,95,70,-0.2837863229215145],[120,95,71,-0.28535598888993263],[120,95,72,-0.28755590692162514],[120,95,73,-0.2896829880774021],[120,95,74,-0.2908659763634205],[120,95,75,-0.2909155450761318],[120,95,76,-0.28971758112311363],[120,95,77,-0.28734444454312325],[120,95,78,-0.2840087004005909],[120,95,79,-0.28020337224006653],[120,96,64,-0.2961561381816864],[120,96,65,-0.2955079823732376],[120,96,66,-0.2938496991991997],[120,96,67,-0.29188838601112366],[120,96,68,-0.29057876765727997],[120,96,69,-0.29053300991654396],[120,96,70,-0.2915988229215145],[120,96,71,-0.29316848888993263],[120,96,72,-0.29536840692162514],[120,96,73,-0.2974954880774021],[120,96,74,-0.2986784763634205],[120,96,75,-0.2987280450761318],[120,96,76,-0.29753008112311363],[120,96,77,-0.29515694454312325],[120,96,78,-0.2918212004005909],[120,96,79,-0.28801587224006653],[120,97,64,-0.3039686381816864],[120,97,65,-0.3033204823732376],[120,97,66,-0.3016621991991997],[120,97,67,-0.29970088601112366],[120,97,68,-0.29839126765727997],[120,97,69,-0.29834550991654396],[120,97,70,-0.2994113229215145],[120,97,71,-0.30098098888993263],[120,97,72,-0.30318090692162514],[120,97,73,-0.3053079880774021],[120,97,74,-0.3064909763634205],[120,97,75,-0.3065405450761318],[120,97,76,-0.30534258112311363],[120,97,77,-0.30296944454312325],[120,97,78,-0.2996337004005909],[120,97,79,-0.29582837224006653],[120,98,64,-0.3117811381816864],[120,98,65,-0.3111329823732376],[120,98,66,-0.3094746991991997],[120,98,67,-0.30751338601112366],[120,98,68,-0.30620376765727997],[120,98,69,-0.30615800991654396],[120,98,70,-0.3072238229215145],[120,98,71,-0.30879348888993263],[120,98,72,-0.31099340692162514],[120,98,73,-0.3131204880774021],[120,98,74,-0.3143034763634205],[120,98,75,-0.3143530450761318],[120,98,76,-0.31315508112311363],[120,98,77,-0.31078194454312325],[120,98,78,-0.3074462004005909],[120,98,79,-0.30364087224006653],[120,99,64,-0.3195936381816864],[120,99,65,-0.3189454823732376],[120,99,66,-0.3172871991991997],[120,99,67,-0.31532588601112366],[120,99,68,-0.31401626765727997],[120,99,69,-0.31397050991654396],[120,99,70,-0.3150363229215145],[120,99,71,-0.31660598888993263],[120,99,72,-0.31880590692162514],[120,99,73,-0.3209329880774021],[120,99,74,-0.3221159763634205],[120,99,75,-0.3221655450761318],[120,99,76,-0.32096758112311363],[120,99,77,-0.31859444454312325],[120,99,78,-0.3152587004005909],[120,99,79,-0.31145337224006653],[120,100,64,-0.3274061381816864],[120,100,65,-0.3267579823732376],[120,100,66,-0.3250996991991997],[120,100,67,-0.32313838601112366],[120,100,68,-0.32182876765727997],[120,100,69,-0.32178300991654396],[120,100,70,-0.3228488229215145],[120,100,71,-0.32441848888993263],[120,100,72,-0.32661840692162514],[120,100,73,-0.3287454880774021],[120,100,74,-0.3299284763634205],[120,100,75,-0.3299780450761318],[120,100,76,-0.32878008112311363],[120,100,77,-0.32640694454312325],[120,100,78,-0.3230712004005909],[120,100,79,-0.31926587224006653],[120,101,64,-0.3352186381816864],[120,101,65,-0.3345704823732376],[120,101,66,-0.3329121991991997],[120,101,67,-0.33095088601112366],[120,101,68,-0.32964126765727997],[120,101,69,-0.32959550991654396],[120,101,70,-0.3306613229215145],[120,101,71,-0.33223098888993263],[120,101,72,-0.33443090692162514],[120,101,73,-0.3365579880774021],[120,101,74,-0.3377409763634205],[120,101,75,-0.3377905450761318],[120,101,76,-0.33659258112311363],[120,101,77,-0.33421944454312325],[120,101,78,-0.3308837004005909],[120,101,79,-0.32707837224006653],[120,102,64,-0.3430311381816864],[120,102,65,-0.3423829823732376],[120,102,66,-0.3407246991991997],[120,102,67,-0.33876338601112366],[120,102,68,-0.33745376765727997],[120,102,69,-0.33740800991654396],[120,102,70,-0.3384738229215145],[120,102,71,-0.34004348888993263],[120,102,72,-0.34224340692162514],[120,102,73,-0.3443704880774021],[120,102,74,-0.3455534763634205],[120,102,75,-0.3456030450761318],[120,102,76,-0.34440508112311363],[120,102,77,-0.34203194454312325],[120,102,78,-0.3386962004005909],[120,102,79,-0.33489087224006653],[120,103,64,-0.3508436381816864],[120,103,65,-0.3501954823732376],[120,103,66,-0.3485371991991997],[120,103,67,-0.34657588601112366],[120,103,68,-0.34526626765727997],[120,103,69,-0.34522050991654396],[120,103,70,-0.3462863229215145],[120,103,71,-0.34785598888993263],[120,103,72,-0.35005590692162514],[120,103,73,-0.3521829880774021],[120,103,74,-0.3533659763634205],[120,103,75,-0.3534155450761318],[120,103,76,-0.35221758112311363],[120,103,77,-0.34984444454312325],[120,103,78,-0.3465087004005909],[120,103,79,-0.34270337224006653],[120,104,64,-0.3586561381816864],[120,104,65,-0.3580079823732376],[120,104,66,-0.3563496991991997],[120,104,67,-0.35438838601112366],[120,104,68,-0.35307876765727997],[120,104,69,-0.35303300991654396],[120,104,70,-0.3540988229215145],[120,104,71,-0.35566848888993263],[120,104,72,-0.35786840692162514],[120,104,73,-0.3599954880774021],[120,104,74,-0.3611784763634205],[120,104,75,-0.3612280450761318],[120,104,76,-0.36003008112311363],[120,104,77,-0.35765694454312325],[120,104,78,-0.3543212004005909],[120,104,79,-0.35051587224006653],[120,105,64,-0.3664686381816864],[120,105,65,-0.3658204823732376],[120,105,66,-0.3641621991991997],[120,105,67,-0.36220088601112366],[120,105,68,-0.36089126765727997],[120,105,69,-0.36084550991654396],[120,105,70,-0.3619113229215145],[120,105,71,-0.36348098888993263],[120,105,72,-0.36568090692162514],[120,105,73,-0.3678079880774021],[120,105,74,-0.3689909763634205],[120,105,75,-0.3690405450761318],[120,105,76,-0.36784258112311363],[120,105,77,-0.36546944454312325],[120,105,78,-0.3621337004005909],[120,105,79,-0.35832837224006653],[120,106,64,-0.3742811381816864],[120,106,65,-0.3736329823732376],[120,106,66,-0.3719746991991997],[120,106,67,-0.37001338601112366],[120,106,68,-0.36870376765727997],[120,106,69,-0.36865800991654396],[120,106,70,-0.3697238229215145],[120,106,71,-0.37129348888993263],[120,106,72,-0.37349340692162514],[120,106,73,-0.3756204880774021],[120,106,74,-0.3768034763634205],[120,106,75,-0.3768530450761318],[120,106,76,-0.37565508112311363],[120,106,77,-0.37328194454312325],[120,106,78,-0.3699462004005909],[120,106,79,-0.36614087224006653],[120,107,64,-0.3820936381816864],[120,107,65,-0.3814454823732376],[120,107,66,-0.3797871991991997],[120,107,67,-0.37782588601112366],[120,107,68,-0.37651626765727997],[120,107,69,-0.37647050991654396],[120,107,70,-0.3775363229215145],[120,107,71,-0.37910598888993263],[120,107,72,-0.38130590692162514],[120,107,73,-0.3834329880774021],[120,107,74,-0.3846159763634205],[120,107,75,-0.3846655450761318],[120,107,76,-0.38346758112311363],[120,107,77,-0.38109444454312325],[120,107,78,-0.3777587004005909],[120,107,79,-0.37395337224006653],[120,108,64,-0.3899061381816864],[120,108,65,-0.3892579823732376],[120,108,66,-0.3875996991991997],[120,108,67,-0.38563838601112366],[120,108,68,-0.38432876765727997],[120,108,69,-0.38428300991654396],[120,108,70,-0.3853488229215145],[120,108,71,-0.38691848888993263],[120,108,72,-0.38911840692162514],[120,108,73,-0.3912454880774021],[120,108,74,-0.3924284763634205],[120,108,75,-0.3924780450761318],[120,108,76,-0.39128008112311363],[120,108,77,-0.38890694454312325],[120,108,78,-0.3855712004005909],[120,108,79,-0.38176587224006653],[120,109,64,-0.3977186381816864],[120,109,65,-0.3970704823732376],[120,109,66,-0.3954121991991997],[120,109,67,-0.39345088601112366],[120,109,68,-0.39214126765727997],[120,109,69,-0.39209550991654396],[120,109,70,-0.3931613229215145],[120,109,71,-0.39473098888993263],[120,109,72,-0.39693090692162514],[120,109,73,-0.3990579880774021],[120,109,74,-0.4002409763634205],[120,109,75,-0.4002905450761318],[120,109,76,-0.39909258112311363],[120,109,77,-0.39671944454312325],[120,109,78,-0.3933837004005909],[120,109,79,-0.38957837224006653],[120,110,64,-0.4055311381816864],[120,110,65,-0.4048829823732376],[120,110,66,-0.4032246991991997],[120,110,67,-0.40126338601112366],[120,110,68,-0.39995376765727997],[120,110,69,-0.39990800991654396],[120,110,70,-0.4009738229215145],[120,110,71,-0.40254348888993263],[120,110,72,-0.40474340692162514],[120,110,73,-0.4068704880774021],[120,110,74,-0.4080534763634205],[120,110,75,-0.4081030450761318],[120,110,76,-0.40690508112311363],[120,110,77,-0.40453194454312325],[120,110,78,-0.4011962004005909],[120,110,79,-0.39739087224006653],[120,111,64,-0.4133436381816864],[120,111,65,-0.4126954823732376],[120,111,66,-0.4110371991991997],[120,111,67,-0.40907588601112366],[120,111,68,-0.40776626765727997],[120,111,69,-0.40772050991654396],[120,111,70,-0.4087863229215145],[120,111,71,-0.41035598888993263],[120,111,72,-0.41255590692162514],[120,111,73,-0.4146829880774021],[120,111,74,-0.4158659763634205],[120,111,75,-0.4159155450761318],[120,111,76,-0.41471758112311363],[120,111,77,-0.41234444454312325],[120,111,78,-0.4090087004005909],[120,111,79,-0.40520337224006653],[120,112,64,-0.4211561381816864],[120,112,65,-0.4205079823732376],[120,112,66,-0.4188496991991997],[120,112,67,-0.41688838601112366],[120,112,68,-0.41557876765727997],[120,112,69,-0.41553300991654396],[120,112,70,-0.4165988229215145],[120,112,71,-0.41816848888993263],[120,112,72,-0.42036840692162514],[120,112,73,-0.4224954880774021],[120,112,74,-0.4236784763634205],[120,112,75,-0.4237280450761318],[120,112,76,-0.42253008112311363],[120,112,77,-0.42015694454312325],[120,112,78,-0.4168212004005909],[120,112,79,-0.41301587224006653],[120,113,64,-0.4289686381816864],[120,113,65,-0.4283204823732376],[120,113,66,-0.4266621991991997],[120,113,67,-0.42470088601112366],[120,113,68,-0.42339126765727997],[120,113,69,-0.42334550991654396],[120,113,70,-0.4244113229215145],[120,113,71,-0.42598098888993263],[120,113,72,-0.42818090692162514],[120,113,73,-0.4303079880774021],[120,113,74,-0.4314909763634205],[120,113,75,-0.4315405450761318],[120,113,76,-0.43034258112311363],[120,113,77,-0.42796944454312325],[120,113,78,-0.4246337004005909],[120,113,79,-0.42082837224006653],[120,114,64,-0.4367811381816864],[120,114,65,-0.4361329823732376],[120,114,66,-0.4344746991991997],[120,114,67,-0.43251338601112366],[120,114,68,-0.43120376765727997],[120,114,69,-0.43115800991654396],[120,114,70,-0.4322238229215145],[120,114,71,-0.43379348888993263],[120,114,72,-0.43599340692162514],[120,114,73,-0.4381204880774021],[120,114,74,-0.4393034763634205],[120,114,75,-0.4393530450761318],[120,114,76,-0.43815508112311363],[120,114,77,-0.43578194454312325],[120,114,78,-0.4324462004005909],[120,114,79,-0.42864087224006653],[120,115,64,-0.4445936381816864],[120,115,65,-0.4439454823732376],[120,115,66,-0.4422871991991997],[120,115,67,-0.44032588601112366],[120,115,68,-0.43901626765727997],[120,115,69,-0.43897050991654396],[120,115,70,-0.4400363229215145],[120,115,71,-0.44160598888993263],[120,115,72,-0.44380590692162514],[120,115,73,-0.4459329880774021],[120,115,74,-0.4471159763634205],[120,115,75,-0.4471655450761318],[120,115,76,-0.44596758112311363],[120,115,77,-0.44359444454312325],[120,115,78,-0.4402587004005909],[120,115,79,-0.43645337224006653],[120,116,64,-0.4524061381816864],[120,116,65,-0.4517579823732376],[120,116,66,-0.4500996991991997],[120,116,67,-0.44813838601112366],[120,116,68,-0.44682876765727997],[120,116,69,-0.44678300991654396],[120,116,70,-0.4478488229215145],[120,116,71,-0.44941848888993263],[120,116,72,-0.45161840692162514],[120,116,73,-0.4537454880774021],[120,116,74,-0.4549284763634205],[120,116,75,-0.4549780450761318],[120,116,76,-0.45378008112311363],[120,116,77,-0.45140694454312325],[120,116,78,-0.4480712004005909],[120,116,79,-0.44426587224006653],[120,117,64,-0.4602186381816864],[120,117,65,-0.4595704823732376],[120,117,66,-0.4579121991991997],[120,117,67,-0.45595088601112366],[120,117,68,-0.45464126765727997],[120,117,69,-0.45459550991654396],[120,117,70,-0.4556613229215145],[120,117,71,-0.45723098888993263],[120,117,72,-0.45943090692162514],[120,117,73,-0.4615579880774021],[120,117,74,-0.4627409763634205],[120,117,75,-0.4627905450761318],[120,117,76,-0.46159258112311363],[120,117,77,-0.45921944454312325],[120,117,78,-0.4558837004005909],[120,117,79,-0.45207837224006653],[120,118,64,-0.4680311381816864],[120,118,65,-0.4673829823732376],[120,118,66,-0.4657246991991997],[120,118,67,-0.46376338601112366],[120,118,68,-0.46245376765727997],[120,118,69,-0.46240800991654396],[120,118,70,-0.4634738229215145],[120,118,71,-0.46504348888993263],[120,118,72,-0.46724340692162514],[120,118,73,-0.4693704880774021],[120,118,74,-0.4705534763634205],[120,118,75,-0.4706030450761318],[120,118,76,-0.46940508112311363],[120,118,77,-0.46703194454312325],[120,118,78,-0.4636962004005909],[120,118,79,-0.45989087224006653],[120,119,64,-0.4758436381816864],[120,119,65,-0.4751954823732376],[120,119,66,-0.4735371991991997],[120,119,67,-0.47157588601112366],[120,119,68,-0.47026626765727997],[120,119,69,-0.47022050991654396],[120,119,70,-0.4712863229215145],[120,119,71,-0.47285598888993263],[120,119,72,-0.47505590692162514],[120,119,73,-0.4771829880774021],[120,119,74,-0.4783659763634205],[120,119,75,-0.4784155450761318],[120,119,76,-0.47721758112311363],[120,119,77,-0.47484444454312325],[120,119,78,-0.4715087004005909],[120,119,79,-0.46770337224006653],[120,120,64,-0.4836561381816864],[120,120,65,-0.4830079823732376],[120,120,66,-0.4813496991991997],[120,120,67,-0.47938838601112366],[120,120,68,-0.47807876765727997],[120,120,69,-0.47803300991654396],[120,120,70,-0.4790988229215145],[120,120,71,-0.48066848888993263],[120,120,72,-0.48286840692162514],[120,120,73,-0.4849954880774021],[120,120,74,-0.4861784763634205],[120,120,75,-0.4862280450761318],[120,120,76,-0.48503008112311363],[120,120,77,-0.48265694454312325],[120,120,78,-0.4793212004005909],[120,120,79,-0.47551587224006653],[120,121,64,-0.4914686381816864],[120,121,65,-0.4908204823732376],[120,121,66,-0.4891621991991997],[120,121,67,-0.48720088601112366],[120,121,68,-0.48589126765727997],[120,121,69,-0.48584550991654396],[120,121,70,-0.4869113229215145],[120,121,71,-0.48848098888993263],[120,121,72,-0.49068090692162514],[120,121,73,-0.4928079880774021],[120,121,74,-0.4939909763634205],[120,121,75,-0.4940405450761318],[120,121,76,-0.49284258112311363],[120,121,77,-0.49046944454312325],[120,121,78,-0.4871337004005909],[120,121,79,-0.48332837224006653],[120,122,64,-0.4992811381816864],[120,122,65,-0.4986329823732376],[120,122,66,-0.4969746991991997],[120,122,67,-0.49501338601112366],[120,122,68,-0.49370376765727997],[120,122,69,-0.49365800991654396],[120,122,70,-0.4947238229215145],[120,122,71,-0.49629348888993263],[120,122,72,-0.49849340692162514],[120,122,73,-0.5006204880774021],[120,122,74,-0.5018034763634205],[120,122,75,-0.5018530450761318],[120,122,76,-0.5006550811231136],[120,122,77,-0.49828194454312325],[120,122,78,-0.4949462004005909],[120,122,79,-0.49114087224006653],[120,123,64,-0.5070936381816864],[120,123,65,-0.5064454823732376],[120,123,66,-0.5047871991991997],[120,123,67,-0.5028258860111237],[120,123,68,-0.50151626765728],[120,123,69,-0.501470509916544],[120,123,70,-0.5025363229215145],[120,123,71,-0.5041059888899326],[120,123,72,-0.5063059069216251],[120,123,73,-0.5084329880774021],[120,123,74,-0.5096159763634205],[120,123,75,-0.5096655450761318],[120,123,76,-0.5084675811231136],[120,123,77,-0.5060944445431232],[120,123,78,-0.5027587004005909],[120,123,79,-0.49895337224006653],[120,124,64,-0.5149061381816864],[120,124,65,-0.5142579823732376],[120,124,66,-0.5125996991991997],[120,124,67,-0.5106383860111237],[120,124,68,-0.50932876765728],[120,124,69,-0.509283009916544],[120,124,70,-0.5103488229215145],[120,124,71,-0.5119184888899326],[120,124,72,-0.5141184069216251],[120,124,73,-0.5162454880774021],[120,124,74,-0.5174284763634205],[120,124,75,-0.5174780450761318],[120,124,76,-0.5162800811231136],[120,124,77,-0.5139069445431232],[120,124,78,-0.5105712004005909],[120,124,79,-0.5067658722400665],[120,125,64,-0.5227186381816864],[120,125,65,-0.5220704823732376],[120,125,66,-0.5204121991991997],[120,125,67,-0.5184508860111237],[120,125,68,-0.51714126765728],[120,125,69,-0.517095509916544],[120,125,70,-0.5181613229215145],[120,125,71,-0.5197309888899326],[120,125,72,-0.5219309069216251],[120,125,73,-0.5240579880774021],[120,125,74,-0.5252409763634205],[120,125,75,-0.5252905450761318],[120,125,76,-0.5240925811231136],[120,125,77,-0.5217194445431232],[120,125,78,-0.5183837004005909],[120,125,79,-0.5145783722400665],[120,126,64,-0.5305311381816864],[120,126,65,-0.5298829823732376],[120,126,66,-0.5282246991991997],[120,126,67,-0.5262633860111237],[120,126,68,-0.52495376765728],[120,126,69,-0.524908009916544],[120,126,70,-0.5259738229215145],[120,126,71,-0.5275434888899326],[120,126,72,-0.5297434069216251],[120,126,73,-0.5318704880774021],[120,126,74,-0.5330534763634205],[120,126,75,-0.5331030450761318],[120,126,76,-0.5319050811231136],[120,126,77,-0.5295319445431232],[120,126,78,-0.5261962004005909],[120,126,79,-0.5223908722400665],[120,127,64,-0.5383436381816864],[120,127,65,-0.5376954823732376],[120,127,66,-0.5360371991991997],[120,127,67,-0.5340758860111237],[120,127,68,-0.53276626765728],[120,127,69,-0.532720509916544],[120,127,70,-0.5337863229215145],[120,127,71,-0.5353559888899326],[120,127,72,-0.5375559069216251],[120,127,73,-0.5396829880774021],[120,127,74,-0.5408659763634205],[120,127,75,-0.5409155450761318],[120,127,76,-0.5397175811231136],[120,127,77,-0.5373444445431232],[120,127,78,-0.5340087004005909],[120,127,79,-0.5302033722400665],[120,128,64,-0.5461561381816864],[120,128,65,-0.5455079823732376],[120,128,66,-0.5438496991991997],[120,128,67,-0.5418883860111237],[120,128,68,-0.54057876765728],[120,128,69,-0.540533009916544],[120,128,70,-0.5415988229215145],[120,128,71,-0.5431684888899326],[120,128,72,-0.5453684069216251],[120,128,73,-0.5474954880774021],[120,128,74,-0.5486784763634205],[120,128,75,-0.5487280450761318],[120,128,76,-0.5475300811231136],[120,128,77,-0.5451569445431232],[120,128,78,-0.5418212004005909],[120,128,79,-0.5380158722400665],[120,129,64,-0.5539686381816864],[120,129,65,-0.5533204823732376],[120,129,66,-0.5516621991991997],[120,129,67,-0.5497008860111237],[120,129,68,-0.54839126765728],[120,129,69,-0.548345509916544],[120,129,70,-0.5494113229215145],[120,129,71,-0.5509809888899326],[120,129,72,-0.5531809069216251],[120,129,73,-0.5553079880774021],[120,129,74,-0.5564909763634205],[120,129,75,-0.5565405450761318],[120,129,76,-0.5553425811231136],[120,129,77,-0.5529694445431232],[120,129,78,-0.5496337004005909],[120,129,79,-0.5458283722400665],[120,130,64,-0.5617811381816864],[120,130,65,-0.5611329823732376],[120,130,66,-0.5594746991991997],[120,130,67,-0.5575133860111237],[120,130,68,-0.55620376765728],[120,130,69,-0.556158009916544],[120,130,70,-0.5572238229215145],[120,130,71,-0.5587934888899326],[120,130,72,-0.5609934069216251],[120,130,73,-0.5631204880774021],[120,130,74,-0.5643034763634205],[120,130,75,-0.5643530450761318],[120,130,76,-0.5631550811231136],[120,130,77,-0.5607819445431232],[120,130,78,-0.5574462004005909],[120,130,79,-0.5536408722400665],[120,131,64,-0.5695936381816864],[120,131,65,-0.5689454823732376],[120,131,66,-0.5672871991991997],[120,131,67,-0.5653258860111237],[120,131,68,-0.56401626765728],[120,131,69,-0.563970509916544],[120,131,70,-0.5650363229215145],[120,131,71,-0.5666059888899326],[120,131,72,-0.5688059069216251],[120,131,73,-0.5709329880774021],[120,131,74,-0.5721159763634205],[120,131,75,-0.5721655450761318],[120,131,76,-0.5709675811231136],[120,131,77,-0.5685944445431232],[120,131,78,-0.5652587004005909],[120,131,79,-0.5614533722400665],[120,132,64,-0.5774061381816864],[120,132,65,-0.5767579823732376],[120,132,66,-0.5750996991991997],[120,132,67,-0.5731383860111237],[120,132,68,-0.57182876765728],[120,132,69,-0.571783009916544],[120,132,70,-0.5728488229215145],[120,132,71,-0.5744184888899326],[120,132,72,-0.5766184069216251],[120,132,73,-0.5787454880774021],[120,132,74,-0.5799284763634205],[120,132,75,-0.5799780450761318],[120,132,76,-0.5787800811231136],[120,132,77,-0.5764069445431232],[120,132,78,-0.5730712004005909],[120,132,79,-0.5692658722400665],[120,133,64,-0.5852186381816864],[120,133,65,-0.5845704823732376],[120,133,66,-0.5829121991991997],[120,133,67,-0.5809508860111237],[120,133,68,-0.57964126765728],[120,133,69,-0.579595509916544],[120,133,70,-0.5806613229215145],[120,133,71,-0.5822309888899326],[120,133,72,-0.5844309069216251],[120,133,73,-0.5865579880774021],[120,133,74,-0.5877409763634205],[120,133,75,-0.5877905450761318],[120,133,76,-0.5865925811231136],[120,133,77,-0.5842194445431232],[120,133,78,-0.5808837004005909],[120,133,79,-0.5770783722400665],[120,134,64,-0.5930311381816864],[120,134,65,-0.5923829823732376],[120,134,66,-0.5907246991991997],[120,134,67,-0.5887633860111237],[120,134,68,-0.58745376765728],[120,134,69,-0.587408009916544],[120,134,70,-0.5884738229215145],[120,134,71,-0.5900434888899326],[120,134,72,-0.5922434069216251],[120,134,73,-0.5943704880774021],[120,134,74,-0.5955534763634205],[120,134,75,-0.5956030450761318],[120,134,76,-0.5944050811231136],[120,134,77,-0.5920319445431232],[120,134,78,-0.5886962004005909],[120,134,79,-0.5848908722400665],[120,135,64,-0.6008436381816864],[120,135,65,-0.6001954823732376],[120,135,66,-0.5985371991991997],[120,135,67,-0.5965758860111237],[120,135,68,-0.59526626765728],[120,135,69,-0.595220509916544],[120,135,70,-0.5962863229215145],[120,135,71,-0.5978559888899326],[120,135,72,-0.6000559069216251],[120,135,73,-0.6021829880774021],[120,135,74,-0.6033659763634205],[120,135,75,-0.6034155450761318],[120,135,76,-0.6022175811231136],[120,135,77,-0.5998444445431232],[120,135,78,-0.5965087004005909],[120,135,79,-0.5927033722400665],[120,136,64,-0.6086561381816864],[120,136,65,-0.6080079823732376],[120,136,66,-0.6063496991991997],[120,136,67,-0.6043883860111237],[120,136,68,-0.60307876765728],[120,136,69,-0.603033009916544],[120,136,70,-0.6040988229215145],[120,136,71,-0.6056684888899326],[120,136,72,-0.6078684069216251],[120,136,73,-0.6099954880774021],[120,136,74,-0.6111784763634205],[120,136,75,-0.6112280450761318],[120,136,76,-0.6100300811231136],[120,136,77,-0.6076569445431232],[120,136,78,-0.6043212004005909],[120,136,79,-0.6005158722400665],[120,137,64,-0.6164686381816864],[120,137,65,-0.6158204823732376],[120,137,66,-0.6141621991991997],[120,137,67,-0.6122008860111237],[120,137,68,-0.61089126765728],[120,137,69,-0.610845509916544],[120,137,70,-0.6119113229215145],[120,137,71,-0.6134809888899326],[120,137,72,-0.6156809069216251],[120,137,73,-0.6178079880774021],[120,137,74,-0.6189909763634205],[120,137,75,-0.6190405450761318],[120,137,76,-0.6178425811231136],[120,137,77,-0.6154694445431232],[120,137,78,-0.6121337004005909],[120,137,79,-0.6083283722400665],[120,138,64,-0.6242811381816864],[120,138,65,-0.6236329823732376],[120,138,66,-0.6219746991991997],[120,138,67,-0.6200133860111237],[120,138,68,-0.61870376765728],[120,138,69,-0.618658009916544],[120,138,70,-0.6197238229215145],[120,138,71,-0.6212934888899326],[120,138,72,-0.6234934069216251],[120,138,73,-0.6256204880774021],[120,138,74,-0.6268034763634205],[120,138,75,-0.6268530450761318],[120,138,76,-0.6256550811231136],[120,138,77,-0.6232819445431232],[120,138,78,-0.6199462004005909],[120,138,79,-0.6161408722400665],[120,139,64,-0.6320936381816864],[120,139,65,-0.6314454823732376],[120,139,66,-0.6297871991991997],[120,139,67,-0.6278258860111237],[120,139,68,-0.62651626765728],[120,139,69,-0.626470509916544],[120,139,70,-0.6275363229215145],[120,139,71,-0.6291059888899326],[120,139,72,-0.6313059069216251],[120,139,73,-0.6334329880774021],[120,139,74,-0.6346159763634205],[120,139,75,-0.6346655450761318],[120,139,76,-0.6334675811231136],[120,139,77,-0.6310944445431232],[120,139,78,-0.6277587004005909],[120,139,79,-0.6239533722400665],[120,140,64,-0.6399061381816864],[120,140,65,-0.6392579823732376],[120,140,66,-0.6375996991991997],[120,140,67,-0.6356383860111237],[120,140,68,-0.63432876765728],[120,140,69,-0.634283009916544],[120,140,70,-0.6353488229215145],[120,140,71,-0.6369184888899326],[120,140,72,-0.6391184069216251],[120,140,73,-0.6412454880774021],[120,140,74,-0.6424284763634205],[120,140,75,-0.6424780450761318],[120,140,76,-0.6412800811231136],[120,140,77,-0.6389069445431232],[120,140,78,-0.6355712004005909],[120,140,79,-0.6317658722400665],[120,141,64,-0.6477186381816864],[120,141,65,-0.6470704823732376],[120,141,66,-0.6454121991991997],[120,141,67,-0.6434508860111237],[120,141,68,-0.64214126765728],[120,141,69,-0.642095509916544],[120,141,70,-0.6431613229215145],[120,141,71,-0.6447309888899326],[120,141,72,-0.6469309069216251],[120,141,73,-0.6490579880774021],[120,141,74,-0.6502409763634205],[120,141,75,-0.6502905450761318],[120,141,76,-0.6490925811231136],[120,141,77,-0.6467194445431232],[120,141,78,-0.6433837004005909],[120,141,79,-0.6395783722400665],[120,142,64,-0.6555311381816864],[120,142,65,-0.6548829823732376],[120,142,66,-0.6532246991991997],[120,142,67,-0.6512633860111237],[120,142,68,-0.64995376765728],[120,142,69,-0.649908009916544],[120,142,70,-0.6509738229215145],[120,142,71,-0.6525434888899326],[120,142,72,-0.6547434069216251],[120,142,73,-0.6568704880774021],[120,142,74,-0.6580534763634205],[120,142,75,-0.6581030450761318],[120,142,76,-0.6569050811231136],[120,142,77,-0.6545319445431232],[120,142,78,-0.6511962004005909],[120,142,79,-0.6473908722400665],[120,143,64,-0.6633436381816864],[120,143,65,-0.6626954823732376],[120,143,66,-0.6610371991991997],[120,143,67,-0.6590758860111237],[120,143,68,-0.65776626765728],[120,143,69,-0.657720509916544],[120,143,70,-0.6587863229215145],[120,143,71,-0.6603559888899326],[120,143,72,-0.6625559069216251],[120,143,73,-0.6646829880774021],[120,143,74,-0.6658659763634205],[120,143,75,-0.6659155450761318],[120,143,76,-0.6647175811231136],[120,143,77,-0.6623444445431232],[120,143,78,-0.6590087004005909],[120,143,79,-0.6552033722400665],[120,144,64,-0.6711561381816864],[120,144,65,-0.6705079823732376],[120,144,66,-0.6688496991991997],[120,144,67,-0.6668883860111237],[120,144,68,-0.66557876765728],[120,144,69,-0.665533009916544],[120,144,70,-0.6665988229215145],[120,144,71,-0.6681684888899326],[120,144,72,-0.6703684069216251],[120,144,73,-0.6724954880774021],[120,144,74,-0.6736784763634205],[120,144,75,-0.6737280450761318],[120,144,76,-0.6725300811231136],[120,144,77,-0.6701569445431232],[120,144,78,-0.6668212004005909],[120,144,79,-0.6630158722400665],[120,145,64,-0.6789686381816864],[120,145,65,-0.6783204823732376],[120,145,66,-0.6766621991991997],[120,145,67,-0.6747008860111237],[120,145,68,-0.67339126765728],[120,145,69,-0.673345509916544],[120,145,70,-0.6744113229215145],[120,145,71,-0.6759809888899326],[120,145,72,-0.6781809069216251],[120,145,73,-0.6803079880774021],[120,145,74,-0.6814909763634205],[120,145,75,-0.6815405450761318],[120,145,76,-0.6803425811231136],[120,145,77,-0.6779694445431232],[120,145,78,-0.6746337004005909],[120,145,79,-0.6708283722400665],[120,146,64,-0.6867811381816864],[120,146,65,-0.6861329823732376],[120,146,66,-0.6844746991991997],[120,146,67,-0.6825133860111237],[120,146,68,-0.68120376765728],[120,146,69,-0.681158009916544],[120,146,70,-0.6822238229215145],[120,146,71,-0.6837934888899326],[120,146,72,-0.6859934069216251],[120,146,73,-0.6881204880774021],[120,146,74,-0.6893034763634205],[120,146,75,-0.6893530450761318],[120,146,76,-0.6881550811231136],[120,146,77,-0.6857819445431232],[120,146,78,-0.6824462004005909],[120,146,79,-0.6786408722400665],[120,147,64,-0.6945936381816864],[120,147,65,-0.6939454823732376],[120,147,66,-0.6922871991991997],[120,147,67,-0.6903258860111237],[120,147,68,-0.68901626765728],[120,147,69,-0.688970509916544],[120,147,70,-0.6900363229215145],[120,147,71,-0.6916059888899326],[120,147,72,-0.6938059069216251],[120,147,73,-0.6959329880774021],[120,147,74,-0.6971159763634205],[120,147,75,-0.6971655450761318],[120,147,76,-0.6959675811231136],[120,147,77,-0.6935944445431232],[120,147,78,-0.6902587004005909],[120,147,79,-0.6864533722400665],[120,148,64,-0.7024061381816864],[120,148,65,-0.7017579823732376],[120,148,66,-0.7000996991991997],[120,148,67,-0.6981383860111237],[120,148,68,-0.69682876765728],[120,148,69,-0.696783009916544],[120,148,70,-0.6978488229215145],[120,148,71,-0.6994184888899326],[120,148,72,-0.7016184069216251],[120,148,73,-0.7037454880774021],[120,148,74,-0.7049284763634205],[120,148,75,-0.7049780450761318],[120,148,76,-0.7037800811231136],[120,148,77,-0.7014069445431232],[120,148,78,-0.6980712004005909],[120,148,79,-0.6942658722400665],[120,149,64,-0.7102186381816864],[120,149,65,-0.7095704823732376],[120,149,66,-0.7079121991991997],[120,149,67,-0.7059508860111237],[120,149,68,-0.70464126765728],[120,149,69,-0.704595509916544],[120,149,70,-0.7056613229215145],[120,149,71,-0.7072309888899326],[120,149,72,-0.7094309069216251],[120,149,73,-0.7115579880774021],[120,149,74,-0.7127409763634205],[120,149,75,-0.7127905450761318],[120,149,76,-0.7115925811231136],[120,149,77,-0.7092194445431232],[120,149,78,-0.7058837004005909],[120,149,79,-0.7020783722400665],[120,150,64,-0.7180311381816864],[120,150,65,-0.7173829823732376],[120,150,66,-0.7157246991991997],[120,150,67,-0.7137633860111237],[120,150,68,-0.71245376765728],[120,150,69,-0.712408009916544],[120,150,70,-0.7134738229215145],[120,150,71,-0.7150434888899326],[120,150,72,-0.7172434069216251],[120,150,73,-0.7193704880774021],[120,150,74,-0.7205534763634205],[120,150,75,-0.7206030450761318],[120,150,76,-0.7194050811231136],[120,150,77,-0.7170319445431232],[120,150,78,-0.7136962004005909],[120,150,79,-0.7098908722400665],[120,151,64,-0.7258436381816864],[120,151,65,-0.7251954823732376],[120,151,66,-0.7235371991991997],[120,151,67,-0.7215758860111237],[120,151,68,-0.72026626765728],[120,151,69,-0.720220509916544],[120,151,70,-0.7212863229215145],[120,151,71,-0.7228559888899326],[120,151,72,-0.7250559069216251],[120,151,73,-0.7271829880774021],[120,151,74,-0.7283659763634205],[120,151,75,-0.7284155450761318],[120,151,76,-0.7272175811231136],[120,151,77,-0.7248444445431232],[120,151,78,-0.7215087004005909],[120,151,79,-0.7177033722400665],[120,152,64,-0.7336561381816864],[120,152,65,-0.7330079823732376],[120,152,66,-0.7313496991991997],[120,152,67,-0.7293883860111237],[120,152,68,-0.72807876765728],[120,152,69,-0.728033009916544],[120,152,70,-0.7290988229215145],[120,152,71,-0.7306684888899326],[120,152,72,-0.7328684069216251],[120,152,73,-0.7349954880774021],[120,152,74,-0.7361784763634205],[120,152,75,-0.7362280450761318],[120,152,76,-0.7350300811231136],[120,152,77,-0.7326569445431232],[120,152,78,-0.7293212004005909],[120,152,79,-0.7255158722400665],[120,153,64,-0.7414686381816864],[120,153,65,-0.7408204823732376],[120,153,66,-0.7391621991991997],[120,153,67,-0.7372008860111237],[120,153,68,-0.73589126765728],[120,153,69,-0.735845509916544],[120,153,70,-0.7369113229215145],[120,153,71,-0.7384809888899326],[120,153,72,-0.7406809069216251],[120,153,73,-0.7428079880774021],[120,153,74,-0.7439909763634205],[120,153,75,-0.7440405450761318],[120,153,76,-0.7428425811231136],[120,153,77,-0.7404694445431232],[120,153,78,-0.7371337004005909],[120,153,79,-0.7333283722400665],[120,154,64,-0.7492811381816864],[120,154,65,-0.7486329823732376],[120,154,66,-0.7469746991991997],[120,154,67,-0.7450133860111237],[120,154,68,-0.74370376765728],[120,154,69,-0.743658009916544],[120,154,70,-0.7447238229215145],[120,154,71,-0.7462934888899326],[120,154,72,-0.7484934069216251],[120,154,73,-0.7506204880774021],[120,154,74,-0.7518034763634205],[120,154,75,-0.7518530450761318],[120,154,76,-0.7506550811231136],[120,154,77,-0.7482819445431232],[120,154,78,-0.7449462004005909],[120,154,79,-0.7411408722400665],[120,155,64,-0.7570936381816864],[120,155,65,-0.7564454823732376],[120,155,66,-0.7547871991991997],[120,155,67,-0.7528258860111237],[120,155,68,-0.75151626765728],[120,155,69,-0.751470509916544],[120,155,70,-0.7525363229215145],[120,155,71,-0.7541059888899326],[120,155,72,-0.7563059069216251],[120,155,73,-0.7584329880774021],[120,155,74,-0.7596159763634205],[120,155,75,-0.7596655450761318],[120,155,76,-0.7584675811231136],[120,155,77,-0.7560944445431232],[120,155,78,-0.7527587004005909],[120,155,79,-0.7489533722400665],[120,156,64,-0.7649061381816864],[120,156,65,-0.7642579823732376],[120,156,66,-0.7625996991991997],[120,156,67,-0.7606383860111237],[120,156,68,-0.75932876765728],[120,156,69,-0.759283009916544],[120,156,70,-0.7603488229215145],[120,156,71,-0.7619184888899326],[120,156,72,-0.7641184069216251],[120,156,73,-0.7662454880774021],[120,156,74,-0.7674284763634205],[120,156,75,-0.7674780450761318],[120,156,76,-0.7662800811231136],[120,156,77,-0.7639069445431232],[120,156,78,-0.7605712004005909],[120,156,79,-0.7567658722400665],[120,157,64,-0.7727186381816864],[120,157,65,-0.7720704823732376],[120,157,66,-0.7704121991991997],[120,157,67,-0.7684508860111237],[120,157,68,-0.76714126765728],[120,157,69,-0.767095509916544],[120,157,70,-0.7681613229215145],[120,157,71,-0.7697309888899326],[120,157,72,-0.7719309069216251],[120,157,73,-0.7740579880774021],[120,157,74,-0.7752409763634205],[120,157,75,-0.7752905450761318],[120,157,76,-0.7740925811231136],[120,157,77,-0.7717194445431232],[120,157,78,-0.7683837004005909],[120,157,79,-0.7645783722400665],[120,158,64,-0.7805311381816864],[120,158,65,-0.7798829823732376],[120,158,66,-0.7782246991991997],[120,158,67,-0.7762633860111237],[120,158,68,-0.77495376765728],[120,158,69,-0.774908009916544],[120,158,70,-0.7759738229215145],[120,158,71,-0.7775434888899326],[120,158,72,-0.7797434069216251],[120,158,73,-0.7818704880774021],[120,158,74,-0.7830534763634205],[120,158,75,-0.7831030450761318],[120,158,76,-0.7819050811231136],[120,158,77,-0.7795319445431232],[120,158,78,-0.7761962004005909],[120,158,79,-0.7723908722400665],[120,159,64,-0.7883436381816864],[120,159,65,-0.7876954823732376],[120,159,66,-0.7860371991991997],[120,159,67,-0.7840758860111237],[120,159,68,-0.78276626765728],[120,159,69,-0.782720509916544],[120,159,70,-0.7837863229215145],[120,159,71,-0.7853559888899326],[120,159,72,-0.7875559069216251],[120,159,73,-0.7896829880774021],[120,159,74,-0.7908659763634205],[120,159,75,-0.7909155450761318],[120,159,76,-0.7897175811231136],[120,159,77,-0.7873444445431232],[120,159,78,-0.7840087004005909],[120,159,79,-0.7802033722400665],[120,160,64,-0.7961561381816864],[120,160,65,-0.7955079823732376],[120,160,66,-0.7938496991991997],[120,160,67,-0.7918883860111237],[120,160,68,-0.79057876765728],[120,160,69,-0.790533009916544],[120,160,70,-0.7915988229215145],[120,160,71,-0.7931684888899326],[120,160,72,-0.7953684069216251],[120,160,73,-0.7974954880774021],[120,160,74,-0.7986784763634205],[120,160,75,-0.7987280450761318],[120,160,76,-0.7975300811231136],[120,160,77,-0.7951569445431232],[120,160,78,-0.7918212004005909],[120,160,79,-0.7880158722400665],[120,161,64,-0.8039686381816864],[120,161,65,-0.8033204823732376],[120,161,66,-0.8016621991991997],[120,161,67,-0.7997008860111237],[120,161,68,-0.79839126765728],[120,161,69,-0.798345509916544],[120,161,70,-0.7994113229215145],[120,161,71,-0.8009809888899326],[120,161,72,-0.8031809069216251],[120,161,73,-0.8053079880774021],[120,161,74,-0.8064909763634205],[120,161,75,-0.8065405450761318],[120,161,76,-0.8053425811231136],[120,161,77,-0.8029694445431232],[120,161,78,-0.7996337004005909],[120,161,79,-0.7958283722400665],[120,162,64,-0.8117811381816864],[120,162,65,-0.8111329823732376],[120,162,66,-0.8094746991991997],[120,162,67,-0.8075133860111237],[120,162,68,-0.80620376765728],[120,162,69,-0.806158009916544],[120,162,70,-0.8072238229215145],[120,162,71,-0.8087934888899326],[120,162,72,-0.8109934069216251],[120,162,73,-0.8131204880774021],[120,162,74,-0.8143034763634205],[120,162,75,-0.8143530450761318],[120,162,76,-0.8131550811231136],[120,162,77,-0.8107819445431232],[120,162,78,-0.8074462004005909],[120,162,79,-0.8036408722400665],[120,163,64,-0.8195936381816864],[120,163,65,-0.8189454823732376],[120,163,66,-0.8172871991991997],[120,163,67,-0.8153258860111237],[120,163,68,-0.81401626765728],[120,163,69,-0.813970509916544],[120,163,70,-0.8150363229215145],[120,163,71,-0.8166059888899326],[120,163,72,-0.8188059069216251],[120,163,73,-0.8209329880774021],[120,163,74,-0.8221159763634205],[120,163,75,-0.8221655450761318],[120,163,76,-0.8209675811231136],[120,163,77,-0.8185944445431232],[120,163,78,-0.8152587004005909],[120,163,79,-0.8114533722400665],[120,164,64,-0.8274061381816864],[120,164,65,-0.8267579823732376],[120,164,66,-0.8250996991991997],[120,164,67,-0.8231383860111237],[120,164,68,-0.82182876765728],[120,164,69,-0.821783009916544],[120,164,70,-0.8228488229215145],[120,164,71,-0.8244184888899326],[120,164,72,-0.8266184069216251],[120,164,73,-0.8287454880774021],[120,164,74,-0.8299284763634205],[120,164,75,-0.8299780450761318],[120,164,76,-0.8287800811231136],[120,164,77,-0.8264069445431232],[120,164,78,-0.8230712004005909],[120,164,79,-0.8192658722400665],[120,165,64,-0.8352186381816864],[120,165,65,-0.8345704823732376],[120,165,66,-0.8329121991991997],[120,165,67,-0.8309508860111237],[120,165,68,-0.82964126765728],[120,165,69,-0.829595509916544],[120,165,70,-0.8306613229215145],[120,165,71,-0.8322309888899326],[120,165,72,-0.8344309069216251],[120,165,73,-0.8365579880774021],[120,165,74,-0.8377409763634205],[120,165,75,-0.8377905450761318],[120,165,76,-0.8365925811231136],[120,165,77,-0.8342194445431232],[120,165,78,-0.8308837004005909],[120,165,79,-0.8270783722400665],[120,166,64,-0.8430311381816864],[120,166,65,-0.8423829823732376],[120,166,66,-0.8407246991991997],[120,166,67,-0.8387633860111237],[120,166,68,-0.83745376765728],[120,166,69,-0.837408009916544],[120,166,70,-0.8384738229215145],[120,166,71,-0.8400434888899326],[120,166,72,-0.8422434069216251],[120,166,73,-0.8443704880774021],[120,166,74,-0.8455534763634205],[120,166,75,-0.8456030450761318],[120,166,76,-0.8444050811231136],[120,166,77,-0.8420319445431232],[120,166,78,-0.8386962004005909],[120,166,79,-0.8348908722400665],[120,167,64,-0.8508436381816864],[120,167,65,-0.8501954823732376],[120,167,66,-0.8485371991991997],[120,167,67,-0.8465758860111237],[120,167,68,-0.84526626765728],[120,167,69,-0.845220509916544],[120,167,70,-0.8462863229215145],[120,167,71,-0.8478559888899326],[120,167,72,-0.8500559069216251],[120,167,73,-0.8521829880774021],[120,167,74,-0.8533659763634205],[120,167,75,-0.8534155450761318],[120,167,76,-0.8522175811231136],[120,167,77,-0.8498444445431232],[120,167,78,-0.8465087004005909],[120,167,79,-0.8427033722400665],[120,168,64,-0.8586561381816864],[120,168,65,-0.8580079823732376],[120,168,66,-0.8563496991991997],[120,168,67,-0.8543883860111237],[120,168,68,-0.85307876765728],[120,168,69,-0.853033009916544],[120,168,70,-0.8540988229215145],[120,168,71,-0.8556684888899326],[120,168,72,-0.8578684069216251],[120,168,73,-0.8599954880774021],[120,168,74,-0.8611784763634205],[120,168,75,-0.8612280450761318],[120,168,76,-0.8600300811231136],[120,168,77,-0.8576569445431232],[120,168,78,-0.8543212004005909],[120,168,79,-0.8505158722400665],[120,169,64,-0.8664686381816864],[120,169,65,-0.8658204823732376],[120,169,66,-0.8641621991991997],[120,169,67,-0.8622008860111237],[120,169,68,-0.86089126765728],[120,169,69,-0.860845509916544],[120,169,70,-0.8619113229215145],[120,169,71,-0.8634809888899326],[120,169,72,-0.8656809069216251],[120,169,73,-0.8678079880774021],[120,169,74,-0.8689909763634205],[120,169,75,-0.8690405450761318],[120,169,76,-0.8678425811231136],[120,169,77,-0.8654694445431232],[120,169,78,-0.8621337004005909],[120,169,79,-0.8583283722400665],[120,170,64,-0.8742811381816864],[120,170,65,-0.8736329823732376],[120,170,66,-0.8719746991991997],[120,170,67,-0.8700133860111237],[120,170,68,-0.86870376765728],[120,170,69,-0.868658009916544],[120,170,70,-0.8697238229215145],[120,170,71,-0.8712934888899326],[120,170,72,-0.8734934069216251],[120,170,73,-0.8756204880774021],[120,170,74,-0.8768034763634205],[120,170,75,-0.8768530450761318],[120,170,76,-0.8756550811231136],[120,170,77,-0.8732819445431232],[120,170,78,-0.8699462004005909],[120,170,79,-0.8661408722400665],[120,171,64,-0.8820936381816864],[120,171,65,-0.8814454823732376],[120,171,66,-0.8797871991991997],[120,171,67,-0.8778258860111237],[120,171,68,-0.87651626765728],[120,171,69,-0.876470509916544],[120,171,70,-0.8775363229215145],[120,171,71,-0.8791059888899326],[120,171,72,-0.8813059069216251],[120,171,73,-0.8834329880774021],[120,171,74,-0.8846159763634205],[120,171,75,-0.8846655450761318],[120,171,76,-0.8834675811231136],[120,171,77,-0.8810944445431232],[120,171,78,-0.8777587004005909],[120,171,79,-0.8739533722400665],[120,172,64,-0.8899061381816864],[120,172,65,-0.8892579823732376],[120,172,66,-0.8875996991991997],[120,172,67,-0.8856383860111237],[120,172,68,-0.88432876765728],[120,172,69,-0.884283009916544],[120,172,70,-0.8853488229215145],[120,172,71,-0.8869184888899326],[120,172,72,-0.8891184069216251],[120,172,73,-0.8912454880774021],[120,172,74,-0.8924284763634205],[120,172,75,-0.8924780450761318],[120,172,76,-0.8912800811231136],[120,172,77,-0.8889069445431232],[120,172,78,-0.8855712004005909],[120,172,79,-0.8817658722400665],[120,173,64,-0.8977186381816864],[120,173,65,-0.8970704823732376],[120,173,66,-0.8954121991991997],[120,173,67,-0.8934508860111237],[120,173,68,-0.89214126765728],[120,173,69,-0.892095509916544],[120,173,70,-0.8931613229215145],[120,173,71,-0.8947309888899326],[120,173,72,-0.8969309069216251],[120,173,73,-0.8990579880774021],[120,173,74,-0.9002409763634205],[120,173,75,-0.9002905450761318],[120,173,76,-0.8990925811231136],[120,173,77,-0.8967194445431232],[120,173,78,-0.8933837004005909],[120,173,79,-0.8895783722400665],[120,174,64,-0.9055311381816864],[120,174,65,-0.9048829823732376],[120,174,66,-0.9032246991991997],[120,174,67,-0.9012633860111237],[120,174,68,-0.89995376765728],[120,174,69,-0.899908009916544],[120,174,70,-0.9009738229215145],[120,174,71,-0.9025434888899326],[120,174,72,-0.9047434069216251],[120,174,73,-0.9068704880774021],[120,174,74,-0.9080534763634205],[120,174,75,-0.9081030450761318],[120,174,76,-0.9069050811231136],[120,174,77,-0.9045319445431232],[120,174,78,-0.9011962004005909],[120,174,79,-0.8973908722400665],[120,175,64,-0.9133436381816864],[120,175,65,-0.9126954823732376],[120,175,66,-0.9110371991991997],[120,175,67,-0.9090758860111237],[120,175,68,-0.90776626765728],[120,175,69,-0.907720509916544],[120,175,70,-0.9087863229215145],[120,175,71,-0.9103559888899326],[120,175,72,-0.9125559069216251],[120,175,73,-0.9146829880774021],[120,175,74,-0.9158659763634205],[120,175,75,-0.9159155450761318],[120,175,76,-0.9147175811231136],[120,175,77,-0.9123444445431232],[120,175,78,-0.9090087004005909],[120,175,79,-0.9052033722400665],[120,176,64,-0.9211561381816864],[120,176,65,-0.9205079823732376],[120,176,66,-0.9188496991991997],[120,176,67,-0.9168883860111237],[120,176,68,-0.91557876765728],[120,176,69,-0.915533009916544],[120,176,70,-0.9165988229215145],[120,176,71,-0.9181684888899326],[120,176,72,-0.9203684069216251],[120,176,73,-0.9224954880774021],[120,176,74,-0.9236784763634205],[120,176,75,-0.9237280450761318],[120,176,76,-0.9225300811231136],[120,176,77,-0.9201569445431232],[120,176,78,-0.9168212004005909],[120,176,79,-0.9130158722400665],[120,177,64,-0.9289686381816864],[120,177,65,-0.9283204823732376],[120,177,66,-0.9266621991991997],[120,177,67,-0.9247008860111237],[120,177,68,-0.92339126765728],[120,177,69,-0.923345509916544],[120,177,70,-0.9244113229215145],[120,177,71,-0.9259809888899326],[120,177,72,-0.9281809069216251],[120,177,73,-0.9303079880774021],[120,177,74,-0.9314909763634205],[120,177,75,-0.9315405450761318],[120,177,76,-0.9303425811231136],[120,177,77,-0.9279694445431232],[120,177,78,-0.9246337004005909],[120,177,79,-0.9208283722400665],[120,178,64,-0.9367811381816864],[120,178,65,-0.9361329823732376],[120,178,66,-0.9344746991991997],[120,178,67,-0.9325133860111237],[120,178,68,-0.93120376765728],[120,178,69,-0.931158009916544],[120,178,70,-0.9322238229215145],[120,178,71,-0.9337934888899326],[120,178,72,-0.9359934069216251],[120,178,73,-0.9381204880774021],[120,178,74,-0.9393034763634205],[120,178,75,-0.9393530450761318],[120,178,76,-0.9381550811231136],[120,178,77,-0.9357819445431232],[120,178,78,-0.9324462004005909],[120,178,79,-0.9286408722400665],[120,179,64,-0.9445936381816864],[120,179,65,-0.9439454823732376],[120,179,66,-0.9422871991991997],[120,179,67,-0.9403258860111237],[120,179,68,-0.93901626765728],[120,179,69,-0.938970509916544],[120,179,70,-0.9400363229215145],[120,179,71,-0.9416059888899326],[120,179,72,-0.9438059069216251],[120,179,73,-0.9459329880774021],[120,179,74,-0.9471159763634205],[120,179,75,-0.9471655450761318],[120,179,76,-0.9459675811231136],[120,179,77,-0.9435944445431232],[120,179,78,-0.9402587004005909],[120,179,79,-0.9364533722400665],[120,180,64,-0.9524061381816864],[120,180,65,-0.9517579823732376],[120,180,66,-0.9500996991991997],[120,180,67,-0.9481383860111237],[120,180,68,-0.94682876765728],[120,180,69,-0.946783009916544],[120,180,70,-0.9478488229215145],[120,180,71,-0.9494184888899326],[120,180,72,-0.9516184069216251],[120,180,73,-0.9537454880774021],[120,180,74,-0.9549284763634205],[120,180,75,-0.9549780450761318],[120,180,76,-0.9537800811231136],[120,180,77,-0.9514069445431232],[120,180,78,-0.9480712004005909],[120,180,79,-0.9442658722400665],[120,181,64,-0.9602186381816864],[120,181,65,-0.9595704823732376],[120,181,66,-0.9579121991991997],[120,181,67,-0.9559508860111237],[120,181,68,-0.95464126765728],[120,181,69,-0.954595509916544],[120,181,70,-0.9556613229215145],[120,181,71,-0.9572309888899326],[120,181,72,-0.9594309069216251],[120,181,73,-0.9615579880774021],[120,181,74,-0.9627409763634205],[120,181,75,-0.9627905450761318],[120,181,76,-0.9615925811231136],[120,181,77,-0.9592194445431232],[120,181,78,-0.9558837004005909],[120,181,79,-0.9520783722400665],[120,182,64,-0.9680311381816864],[120,182,65,-0.9673829823732376],[120,182,66,-0.9657246991991997],[120,182,67,-0.9637633860111237],[120,182,68,-0.96245376765728],[120,182,69,-0.962408009916544],[120,182,70,-0.9634738229215145],[120,182,71,-0.9650434888899326],[120,182,72,-0.9672434069216251],[120,182,73,-0.9693704880774021],[120,182,74,-0.9705534763634205],[120,182,75,-0.9706030450761318],[120,182,76,-0.9694050811231136],[120,182,77,-0.9670319445431232],[120,182,78,-0.9636962004005909],[120,182,79,-0.9598908722400665],[120,183,64,-0.9758436381816864],[120,183,65,-0.9751954823732376],[120,183,66,-0.9735371991991997],[120,183,67,-0.9715758860111237],[120,183,68,-0.97026626765728],[120,183,69,-0.970220509916544],[120,183,70,-0.9712863229215145],[120,183,71,-0.9728559888899326],[120,183,72,-0.9750559069216251],[120,183,73,-0.9771829880774021],[120,183,74,-0.9783659763634205],[120,183,75,-0.9784155450761318],[120,183,76,-0.9772175811231136],[120,183,77,-0.9748444445431232],[120,183,78,-0.9715087004005909],[120,183,79,-0.9677033722400665],[120,184,64,-0.9836561381816864],[120,184,65,-0.9830079823732376],[120,184,66,-0.9813496991991997],[120,184,67,-0.9793883860111237],[120,184,68,-0.97807876765728],[120,184,69,-0.978033009916544],[120,184,70,-0.9790988229215145],[120,184,71,-0.9806684888899326],[120,184,72,-0.9828684069216251],[120,184,73,-0.9849954880774021],[120,184,74,-0.9861784763634205],[120,184,75,-0.9862280450761318],[120,184,76,-0.9850300811231136],[120,184,77,-0.9826569445431232],[120,184,78,-0.9793212004005909],[120,184,79,-0.9755158722400665],[120,185,64,-0.9914686381816864],[120,185,65,-0.9908204823732376],[120,185,66,-0.9891621991991997],[120,185,67,-0.9872008860111237],[120,185,68,-0.98589126765728],[120,185,69,-0.985845509916544],[120,185,70,-0.9869113229215145],[120,185,71,-0.9884809888899326],[120,185,72,-0.9906809069216251],[120,185,73,-0.9928079880774021],[120,185,74,-0.9939909763634205],[120,185,75,-0.9940405450761318],[120,185,76,-0.9928425811231136],[120,185,77,-0.9904694445431232],[120,185,78,-0.9871337004005909],[120,185,79,-0.9833283722400665],[120,186,64,-0.9992811381816864],[120,186,65,-0.9986329823732376],[120,186,66,-0.9969746991991997],[120,186,67,-0.9950133860111237],[120,186,68,-0.99370376765728],[120,186,69,-0.993658009916544],[120,186,70,-0.9947238229215145],[120,186,71,-0.9962934888899326],[120,186,72,-0.9984934069216251],[120,186,73,-1.0006204880774021],[120,186,74,-1.0018034763634205],[120,186,75,-1.0018530450761318],[120,186,76,-1.0006550811231136],[120,186,77,-0.9982819445431232],[120,186,78,-0.9949462004005909],[120,186,79,-0.9911408722400665],[120,187,64,-1.0070936381816864],[120,187,65,-1.0064454823732376],[120,187,66,-1.0047871991991997],[120,187,67,-1.0028258860111237],[120,187,68,-1.00151626765728],[120,187,69,-1.001470509916544],[120,187,70,-1.0025363229215145],[120,187,71,-1.0041059888899326],[120,187,72,-1.0063059069216251],[120,187,73,-1.0084329880774021],[120,187,74,-1.0096159763634205],[120,187,75,-1.0096655450761318],[120,187,76,-1.0084675811231136],[120,187,77,-1.0060944445431232],[120,187,78,-1.002758700400591],[120,187,79,-0.9989533722400665],[120,188,64,-1.0149061381816864],[120,188,65,-1.0142579823732376],[120,188,66,-1.0125996991991997],[120,188,67,-1.0106383860111237],[120,188,68,-1.00932876765728],[120,188,69,-1.009283009916544],[120,188,70,-1.0103488229215145],[120,188,71,-1.0119184888899326],[120,188,72,-1.0141184069216251],[120,188,73,-1.0162454880774021],[120,188,74,-1.0174284763634205],[120,188,75,-1.0174780450761318],[120,188,76,-1.0162800811231136],[120,188,77,-1.0139069445431232],[120,188,78,-1.010571200400591],[120,188,79,-1.0067658722400665],[120,189,64,-1.0227186381816864],[120,189,65,-1.0220704823732376],[120,189,66,-1.0204121991991997],[120,189,67,-1.0184508860111237],[120,189,68,-1.01714126765728],[120,189,69,-1.017095509916544],[120,189,70,-1.0181613229215145],[120,189,71,-1.0197309888899326],[120,189,72,-1.0219309069216251],[120,189,73,-1.0240579880774021],[120,189,74,-1.0252409763634205],[120,189,75,-1.0252905450761318],[120,189,76,-1.0240925811231136],[120,189,77,-1.0217194445431232],[120,189,78,-1.018383700400591],[120,189,79,-1.0145783722400665],[120,190,64,-1.0305311381816864],[120,190,65,-1.0298829823732376],[120,190,66,-1.0282246991991997],[120,190,67,-1.0262633860111237],[120,190,68,-1.02495376765728],[120,190,69,-1.024908009916544],[120,190,70,-1.0259738229215145],[120,190,71,-1.0275434888899326],[120,190,72,-1.0297434069216251],[120,190,73,-1.0318704880774021],[120,190,74,-1.0330534763634205],[120,190,75,-1.0331030450761318],[120,190,76,-1.0319050811231136],[120,190,77,-1.0295319445431232],[120,190,78,-1.026196200400591],[120,190,79,-1.0223908722400665],[120,191,64,-1.0383436381816864],[120,191,65,-1.0376954823732376],[120,191,66,-1.0360371991991997],[120,191,67,-1.0340758860111237],[120,191,68,-1.03276626765728],[120,191,69,-1.032720509916544],[120,191,70,-1.0337863229215145],[120,191,71,-1.0353559888899326],[120,191,72,-1.0375559069216251],[120,191,73,-1.0396829880774021],[120,191,74,-1.0408659763634205],[120,191,75,-1.0409155450761318],[120,191,76,-1.0397175811231136],[120,191,77,-1.0373444445431232],[120,191,78,-1.034008700400591],[120,191,79,-1.0302033722400665],[120,192,64,-1.0461561381816864],[120,192,65,-1.0455079823732376],[120,192,66,-1.0438496991991997],[120,192,67,-1.0418883860111237],[120,192,68,-1.04057876765728],[120,192,69,-1.040533009916544],[120,192,70,-1.0415988229215145],[120,192,71,-1.0431684888899326],[120,192,72,-1.0453684069216251],[120,192,73,-1.0474954880774021],[120,192,74,-1.0486784763634205],[120,192,75,-1.0487280450761318],[120,192,76,-1.0475300811231136],[120,192,77,-1.0451569445431232],[120,192,78,-1.041821200400591],[120,192,79,-1.0380158722400665],[120,193,64,-1.0539686381816864],[120,193,65,-1.0533204823732376],[120,193,66,-1.0516621991991997],[120,193,67,-1.0497008860111237],[120,193,68,-1.04839126765728],[120,193,69,-1.048345509916544],[120,193,70,-1.0494113229215145],[120,193,71,-1.0509809888899326],[120,193,72,-1.0531809069216251],[120,193,73,-1.0553079880774021],[120,193,74,-1.0564909763634205],[120,193,75,-1.0565405450761318],[120,193,76,-1.0553425811231136],[120,193,77,-1.0529694445431232],[120,193,78,-1.049633700400591],[120,193,79,-1.0458283722400665],[120,194,64,-1.0617811381816864],[120,194,65,-1.0611329823732376],[120,194,66,-1.0594746991991997],[120,194,67,-1.0575133860111237],[120,194,68,-1.05620376765728],[120,194,69,-1.056158009916544],[120,194,70,-1.0572238229215145],[120,194,71,-1.0587934888899326],[120,194,72,-1.0609934069216251],[120,194,73,-1.0631204880774021],[120,194,74,-1.0643034763634205],[120,194,75,-1.0643530450761318],[120,194,76,-1.0631550811231136],[120,194,77,-1.0607819445431232],[120,194,78,-1.057446200400591],[120,194,79,-1.0536408722400665],[120,195,64,-1.0695936381816864],[120,195,65,-1.0689454823732376],[120,195,66,-1.0672871991991997],[120,195,67,-1.0653258860111237],[120,195,68,-1.06401626765728],[120,195,69,-1.063970509916544],[120,195,70,-1.0650363229215145],[120,195,71,-1.0666059888899326],[120,195,72,-1.0688059069216251],[120,195,73,-1.0709329880774021],[120,195,74,-1.0721159763634205],[120,195,75,-1.0721655450761318],[120,195,76,-1.0709675811231136],[120,195,77,-1.0685944445431232],[120,195,78,-1.065258700400591],[120,195,79,-1.0614533722400665],[120,196,64,-1.0774061381816864],[120,196,65,-1.0767579823732376],[120,196,66,-1.0750996991991997],[120,196,67,-1.0731383860111237],[120,196,68,-1.07182876765728],[120,196,69,-1.071783009916544],[120,196,70,-1.0728488229215145],[120,196,71,-1.0744184888899326],[120,196,72,-1.0766184069216251],[120,196,73,-1.0787454880774021],[120,196,74,-1.0799284763634205],[120,196,75,-1.0799780450761318],[120,196,76,-1.0787800811231136],[120,196,77,-1.0764069445431232],[120,196,78,-1.073071200400591],[120,196,79,-1.0692658722400665],[120,197,64,-1.0852186381816864],[120,197,65,-1.0845704823732376],[120,197,66,-1.0829121991991997],[120,197,67,-1.0809508860111237],[120,197,68,-1.07964126765728],[120,197,69,-1.079595509916544],[120,197,70,-1.0806613229215145],[120,197,71,-1.0822309888899326],[120,197,72,-1.0844309069216251],[120,197,73,-1.0865579880774021],[120,197,74,-1.0877409763634205],[120,197,75,-1.0877905450761318],[120,197,76,-1.0865925811231136],[120,197,77,-1.0842194445431232],[120,197,78,-1.080883700400591],[120,197,79,-1.0770783722400665],[120,198,64,-1.0930311381816864],[120,198,65,-1.0923829823732376],[120,198,66,-1.0907246991991997],[120,198,67,-1.0887633860111237],[120,198,68,-1.08745376765728],[120,198,69,-1.087408009916544],[120,198,70,-1.0884738229215145],[120,198,71,-1.0900434888899326],[120,198,72,-1.0922434069216251],[120,198,73,-1.0943704880774021],[120,198,74,-1.0955534763634205],[120,198,75,-1.0956030450761318],[120,198,76,-1.0944050811231136],[120,198,77,-1.0920319445431232],[120,198,78,-1.088696200400591],[120,198,79,-1.0848908722400665],[120,199,64,-1.1008436381816864],[120,199,65,-1.1001954823732376],[120,199,66,-1.0985371991991997],[120,199,67,-1.0965758860111237],[120,199,68,-1.09526626765728],[120,199,69,-1.095220509916544],[120,199,70,-1.0962863229215145],[120,199,71,-1.0978559888899326],[120,199,72,-1.1000559069216251],[120,199,73,-1.1021829880774021],[120,199,74,-1.1033659763634205],[120,199,75,-1.1034155450761318],[120,199,76,-1.1022175811231136],[120,199,77,-1.0998444445431232],[120,199,78,-1.096508700400591],[120,199,79,-1.0927033722400665],[120,200,64,-1.1086561381816864],[120,200,65,-1.1080079823732376],[120,200,66,-1.1063496991991997],[120,200,67,-1.1043883860111237],[120,200,68,-1.10307876765728],[120,200,69,-1.103033009916544],[120,200,70,-1.1040988229215145],[120,200,71,-1.1056684888899326],[120,200,72,-1.1078684069216251],[120,200,73,-1.1099954880774021],[120,200,74,-1.1111784763634205],[120,200,75,-1.1112280450761318],[120,200,76,-1.1100300811231136],[120,200,77,-1.1076569445431232],[120,200,78,-1.104321200400591],[120,200,79,-1.1005158722400665],[120,201,64,-1.1164686381816864],[120,201,65,-1.1158204823732376],[120,201,66,-1.1141621991991997],[120,201,67,-1.1122008860111237],[120,201,68,-1.11089126765728],[120,201,69,-1.110845509916544],[120,201,70,-1.1119113229215145],[120,201,71,-1.1134809888899326],[120,201,72,-1.1156809069216251],[120,201,73,-1.1178079880774021],[120,201,74,-1.1189909763634205],[120,201,75,-1.1190405450761318],[120,201,76,-1.1178425811231136],[120,201,77,-1.1154694445431232],[120,201,78,-1.112133700400591],[120,201,79,-1.1083283722400665],[120,202,64,-1.1242811381816864],[120,202,65,-1.1236329823732376],[120,202,66,-1.1219746991991997],[120,202,67,-1.1200133860111237],[120,202,68,-1.11870376765728],[120,202,69,-1.118658009916544],[120,202,70,-1.1197238229215145],[120,202,71,-1.1212934888899326],[120,202,72,-1.1234934069216251],[120,202,73,-1.1256204880774021],[120,202,74,-1.1268034763634205],[120,202,75,-1.1268530450761318],[120,202,76,-1.1256550811231136],[120,202,77,-1.1232819445431232],[120,202,78,-1.119946200400591],[120,202,79,-1.1161408722400665],[120,203,64,-1.1320936381816864],[120,203,65,-1.1314454823732376],[120,203,66,-1.1297871991991997],[120,203,67,-1.1278258860111237],[120,203,68,-1.12651626765728],[120,203,69,-1.126470509916544],[120,203,70,-1.1275363229215145],[120,203,71,-1.1291059888899326],[120,203,72,-1.1313059069216251],[120,203,73,-1.1334329880774021],[120,203,74,-1.1346159763634205],[120,203,75,-1.1346655450761318],[120,203,76,-1.1334675811231136],[120,203,77,-1.1310944445431232],[120,203,78,-1.127758700400591],[120,203,79,-1.1239533722400665],[120,204,64,-1.1399061381816864],[120,204,65,-1.1392579823732376],[120,204,66,-1.1375996991991997],[120,204,67,-1.1356383860111237],[120,204,68,-1.13432876765728],[120,204,69,-1.134283009916544],[120,204,70,-1.1353488229215145],[120,204,71,-1.1369184888899326],[120,204,72,-1.1391184069216251],[120,204,73,-1.1412454880774021],[120,204,74,-1.1424284763634205],[120,204,75,-1.1424780450761318],[120,204,76,-1.1412800811231136],[120,204,77,-1.1389069445431232],[120,204,78,-1.135571200400591],[120,204,79,-1.1317658722400665],[120,205,64,-1.1477186381816864],[120,205,65,-1.1470704823732376],[120,205,66,-1.1454121991991997],[120,205,67,-1.1434508860111237],[120,205,68,-1.14214126765728],[120,205,69,-1.142095509916544],[120,205,70,-1.1431613229215145],[120,205,71,-1.1447309888899326],[120,205,72,-1.1469309069216251],[120,205,73,-1.1490579880774021],[120,205,74,-1.1502409763634205],[120,205,75,-1.1502905450761318],[120,205,76,-1.1490925811231136],[120,205,77,-1.1467194445431232],[120,205,78,-1.143383700400591],[120,205,79,-1.1395783722400665],[120,206,64,-1.1555311381816864],[120,206,65,-1.1548829823732376],[120,206,66,-1.1532246991991997],[120,206,67,-1.1512633860111237],[120,206,68,-1.14995376765728],[120,206,69,-1.149908009916544],[120,206,70,-1.1509738229215145],[120,206,71,-1.1525434888899326],[120,206,72,-1.1547434069216251],[120,206,73,-1.1568704880774021],[120,206,74,-1.1580534763634205],[120,206,75,-1.1581030450761318],[120,206,76,-1.1569050811231136],[120,206,77,-1.1545319445431232],[120,206,78,-1.151196200400591],[120,206,79,-1.1473908722400665],[120,207,64,-1.1633436381816864],[120,207,65,-1.1626954823732376],[120,207,66,-1.1610371991991997],[120,207,67,-1.1590758860111237],[120,207,68,-1.15776626765728],[120,207,69,-1.157720509916544],[120,207,70,-1.1587863229215145],[120,207,71,-1.1603559888899326],[120,207,72,-1.1625559069216251],[120,207,73,-1.1646829880774021],[120,207,74,-1.1658659763634205],[120,207,75,-1.1659155450761318],[120,207,76,-1.1647175811231136],[120,207,77,-1.1623444445431232],[120,207,78,-1.159008700400591],[120,207,79,-1.1552033722400665],[120,208,64,-1.1711561381816864],[120,208,65,-1.1705079823732376],[120,208,66,-1.1688496991991997],[120,208,67,-1.1668883860111237],[120,208,68,-1.16557876765728],[120,208,69,-1.165533009916544],[120,208,70,-1.1665988229215145],[120,208,71,-1.1681684888899326],[120,208,72,-1.1703684069216251],[120,208,73,-1.1724954880774021],[120,208,74,-1.1736784763634205],[120,208,75,-1.1737280450761318],[120,208,76,-1.1725300811231136],[120,208,77,-1.1701569445431232],[120,208,78,-1.166821200400591],[120,208,79,-1.1630158722400665],[120,209,64,-1.1789686381816864],[120,209,65,-1.1783204823732376],[120,209,66,-1.1766621991991997],[120,209,67,-1.1747008860111237],[120,209,68,-1.17339126765728],[120,209,69,-1.173345509916544],[120,209,70,-1.1744113229215145],[120,209,71,-1.1759809888899326],[120,209,72,-1.1781809069216251],[120,209,73,-1.1803079880774021],[120,209,74,-1.1814909763634205],[120,209,75,-1.1815405450761318],[120,209,76,-1.1803425811231136],[120,209,77,-1.1779694445431232],[120,209,78,-1.174633700400591],[120,209,79,-1.1708283722400665],[120,210,64,-1.1867811381816864],[120,210,65,-1.1861329823732376],[120,210,66,-1.1844746991991997],[120,210,67,-1.1825133860111237],[120,210,68,-1.18120376765728],[120,210,69,-1.181158009916544],[120,210,70,-1.1822238229215145],[120,210,71,-1.1837934888899326],[120,210,72,-1.1859934069216251],[120,210,73,-1.1881204880774021],[120,210,74,-1.1893034763634205],[120,210,75,-1.1893530450761318],[120,210,76,-1.1881550811231136],[120,210,77,-1.1857819445431232],[120,210,78,-1.182446200400591],[120,210,79,-1.1786408722400665],[120,211,64,-1.1945936381816864],[120,211,65,-1.1939454823732376],[120,211,66,-1.1922871991991997],[120,211,67,-1.1903258860111237],[120,211,68,-1.18901626765728],[120,211,69,-1.188970509916544],[120,211,70,-1.1900363229215145],[120,211,71,-1.1916059888899326],[120,211,72,-1.1938059069216251],[120,211,73,-1.1959329880774021],[120,211,74,-1.1971159763634205],[120,211,75,-1.1971655450761318],[120,211,76,-1.1959675811231136],[120,211,77,-1.1935944445431232],[120,211,78,-1.190258700400591],[120,211,79,-1.1864533722400665],[120,212,64,-1.2024061381816864],[120,212,65,-1.2017579823732376],[120,212,66,-1.2000996991991997],[120,212,67,-1.1981383860111237],[120,212,68,-1.19682876765728],[120,212,69,-1.196783009916544],[120,212,70,-1.1978488229215145],[120,212,71,-1.1994184888899326],[120,212,72,-1.2016184069216251],[120,212,73,-1.2037454880774021],[120,212,74,-1.2049284763634205],[120,212,75,-1.2049780450761318],[120,212,76,-1.2037800811231136],[120,212,77,-1.2014069445431232],[120,212,78,-1.198071200400591],[120,212,79,-1.1942658722400665],[120,213,64,-1.2102186381816864],[120,213,65,-1.2095704823732376],[120,213,66,-1.2079121991991997],[120,213,67,-1.2059508860111237],[120,213,68,-1.20464126765728],[120,213,69,-1.204595509916544],[120,213,70,-1.2056613229215145],[120,213,71,-1.2072309888899326],[120,213,72,-1.2094309069216251],[120,213,73,-1.2115579880774021],[120,213,74,-1.2127409763634205],[120,213,75,-1.2127905450761318],[120,213,76,-1.2115925811231136],[120,213,77,-1.2092194445431232],[120,213,78,-1.205883700400591],[120,213,79,-1.2020783722400665],[120,214,64,-1.2180311381816864],[120,214,65,-1.2173829823732376],[120,214,66,-1.2157246991991997],[120,214,67,-1.2137633860111237],[120,214,68,-1.21245376765728],[120,214,69,-1.212408009916544],[120,214,70,-1.2134738229215145],[120,214,71,-1.2150434888899326],[120,214,72,-1.2172434069216251],[120,214,73,-1.2193704880774021],[120,214,74,-1.2205534763634205],[120,214,75,-1.2206030450761318],[120,214,76,-1.2194050811231136],[120,214,77,-1.2170319445431232],[120,214,78,-1.213696200400591],[120,214,79,-1.2098908722400665],[120,215,64,-1.2258436381816864],[120,215,65,-1.2251954823732376],[120,215,66,-1.2235371991991997],[120,215,67,-1.2215758860111237],[120,215,68,-1.22026626765728],[120,215,69,-1.220220509916544],[120,215,70,-1.2212863229215145],[120,215,71,-1.2228559888899326],[120,215,72,-1.2250559069216251],[120,215,73,-1.2271829880774021],[120,215,74,-1.2283659763634205],[120,215,75,-1.2284155450761318],[120,215,76,-1.2272175811231136],[120,215,77,-1.2248444445431232],[120,215,78,-1.221508700400591],[120,215,79,-1.2177033722400665],[120,216,64,-1.2336561381816864],[120,216,65,-1.2330079823732376],[120,216,66,-1.2313496991991997],[120,216,67,-1.2293883860111237],[120,216,68,-1.22807876765728],[120,216,69,-1.228033009916544],[120,216,70,-1.2290988229215145],[120,216,71,-1.2306684888899326],[120,216,72,-1.2328684069216251],[120,216,73,-1.2349954880774021],[120,216,74,-1.2361784763634205],[120,216,75,-1.2362280450761318],[120,216,76,-1.2350300811231136],[120,216,77,-1.2326569445431232],[120,216,78,-1.229321200400591],[120,216,79,-1.2255158722400665],[120,217,64,-1.2414686381816864],[120,217,65,-1.2408204823732376],[120,217,66,-1.2391621991991997],[120,217,67,-1.2372008860111237],[120,217,68,-1.23589126765728],[120,217,69,-1.235845509916544],[120,217,70,-1.2369113229215145],[120,217,71,-1.2384809888899326],[120,217,72,-1.2406809069216251],[120,217,73,-1.2428079880774021],[120,217,74,-1.2439909763634205],[120,217,75,-1.2440405450761318],[120,217,76,-1.2428425811231136],[120,217,77,-1.2404694445431232],[120,217,78,-1.237133700400591],[120,217,79,-1.2333283722400665],[120,218,64,-1.2492811381816864],[120,218,65,-1.2486329823732376],[120,218,66,-1.2469746991991997],[120,218,67,-1.2450133860111237],[120,218,68,-1.24370376765728],[120,218,69,-1.243658009916544],[120,218,70,-1.2447238229215145],[120,218,71,-1.2462934888899326],[120,218,72,-1.2484934069216251],[120,218,73,-1.2506204880774021],[120,218,74,-1.2518034763634205],[120,218,75,-1.2518530450761318],[120,218,76,-1.2506550811231136],[120,218,77,-1.2482819445431232],[120,218,78,-1.244946200400591],[120,218,79,-1.2411408722400665],[120,219,64,-1.2570936381816864],[120,219,65,-1.2564454823732376],[120,219,66,-1.2547871991991997],[120,219,67,-1.2528258860111237],[120,219,68,-1.25151626765728],[120,219,69,-1.251470509916544],[120,219,70,-1.2525363229215145],[120,219,71,-1.2541059888899326],[120,219,72,-1.2563059069216251],[120,219,73,-1.2584329880774021],[120,219,74,-1.2596159763634205],[120,219,75,-1.2596655450761318],[120,219,76,-1.2584675811231136],[120,219,77,-1.2560944445431232],[120,219,78,-1.252758700400591],[120,219,79,-1.2489533722400665],[120,220,64,-1.2649061381816864],[120,220,65,-1.2642579823732376],[120,220,66,-1.2625996991991997],[120,220,67,-1.2606383860111237],[120,220,68,-1.25932876765728],[120,220,69,-1.259283009916544],[120,220,70,-1.2603488229215145],[120,220,71,-1.2619184888899326],[120,220,72,-1.2641184069216251],[120,220,73,-1.2662454880774021],[120,220,74,-1.2674284763634205],[120,220,75,-1.2674780450761318],[120,220,76,-1.2662800811231136],[120,220,77,-1.2639069445431232],[120,220,78,-1.260571200400591],[120,220,79,-1.2567658722400665],[120,221,64,-1.2727186381816864],[120,221,65,-1.2720704823732376],[120,221,66,-1.2704121991991997],[120,221,67,-1.2684508860111237],[120,221,68,-1.26714126765728],[120,221,69,-1.267095509916544],[120,221,70,-1.2681613229215145],[120,221,71,-1.2697309888899326],[120,221,72,-1.2719309069216251],[120,221,73,-1.2740579880774021],[120,221,74,-1.2752409763634205],[120,221,75,-1.2752905450761318],[120,221,76,-1.2740925811231136],[120,221,77,-1.2717194445431232],[120,221,78,-1.268383700400591],[120,221,79,-1.2645783722400665],[120,222,64,-1.2805311381816864],[120,222,65,-1.2798829823732376],[120,222,66,-1.2782246991991997],[120,222,67,-1.2762633860111237],[120,222,68,-1.27495376765728],[120,222,69,-1.274908009916544],[120,222,70,-1.2759738229215145],[120,222,71,-1.2775434888899326],[120,222,72,-1.2797434069216251],[120,222,73,-1.2818704880774021],[120,222,74,-1.2830534763634205],[120,222,75,-1.2831030450761318],[120,222,76,-1.2819050811231136],[120,222,77,-1.2795319445431232],[120,222,78,-1.276196200400591],[120,222,79,-1.2723908722400665],[120,223,64,-1.2883436381816864],[120,223,65,-1.2876954823732376],[120,223,66,-1.2860371991991997],[120,223,67,-1.2840758860111237],[120,223,68,-1.28276626765728],[120,223,69,-1.282720509916544],[120,223,70,-1.2837863229215145],[120,223,71,-1.2853559888899326],[120,223,72,-1.2875559069216251],[120,223,73,-1.2896829880774021],[120,223,74,-1.2908659763634205],[120,223,75,-1.2909155450761318],[120,223,76,-1.2897175811231136],[120,223,77,-1.2873444445431232],[120,223,78,-1.284008700400591],[120,223,79,-1.2802033722400665],[120,224,64,-1.2961561381816864],[120,224,65,-1.2955079823732376],[120,224,66,-1.2938496991991997],[120,224,67,-1.2918883860111237],[120,224,68,-1.29057876765728],[120,224,69,-1.290533009916544],[120,224,70,-1.2915988229215145],[120,224,71,-1.2931684888899326],[120,224,72,-1.2953684069216251],[120,224,73,-1.2974954880774021],[120,224,74,-1.2986784763634205],[120,224,75,-1.2987280450761318],[120,224,76,-1.2975300811231136],[120,224,77,-1.2951569445431232],[120,224,78,-1.291821200400591],[120,224,79,-1.2880158722400665],[120,225,64,-1.3039686381816864],[120,225,65,-1.3033204823732376],[120,225,66,-1.3016621991991997],[120,225,67,-1.2997008860111237],[120,225,68,-1.29839126765728],[120,225,69,-1.298345509916544],[120,225,70,-1.2994113229215145],[120,225,71,-1.3009809888899326],[120,225,72,-1.3031809069216251],[120,225,73,-1.3053079880774021],[120,225,74,-1.3064909763634205],[120,225,75,-1.3065405450761318],[120,225,76,-1.3053425811231136],[120,225,77,-1.3029694445431232],[120,225,78,-1.299633700400591],[120,225,79,-1.2958283722400665],[120,226,64,-1.3117811381816864],[120,226,65,-1.3111329823732376],[120,226,66,-1.3094746991991997],[120,226,67,-1.3075133860111237],[120,226,68,-1.30620376765728],[120,226,69,-1.306158009916544],[120,226,70,-1.3072238229215145],[120,226,71,-1.3087934888899326],[120,226,72,-1.3109934069216251],[120,226,73,-1.3131204880774021],[120,226,74,-1.3143034763634205],[120,226,75,-1.3143530450761318],[120,226,76,-1.3131550811231136],[120,226,77,-1.3107819445431232],[120,226,78,-1.307446200400591],[120,226,79,-1.3036408722400665],[120,227,64,-1.3195936381816864],[120,227,65,-1.3189454823732376],[120,227,66,-1.3172871991991997],[120,227,67,-1.3153258860111237],[120,227,68,-1.31401626765728],[120,227,69,-1.313970509916544],[120,227,70,-1.3150363229215145],[120,227,71,-1.3166059888899326],[120,227,72,-1.3188059069216251],[120,227,73,-1.3209329880774021],[120,227,74,-1.3221159763634205],[120,227,75,-1.3221655450761318],[120,227,76,-1.3209675811231136],[120,227,77,-1.3185944445431232],[120,227,78,-1.315258700400591],[120,227,79,-1.3114533722400665],[120,228,64,-1.3274061381816864],[120,228,65,-1.3267579823732376],[120,228,66,-1.3250996991991997],[120,228,67,-1.3231383860111237],[120,228,68,-1.32182876765728],[120,228,69,-1.321783009916544],[120,228,70,-1.3228488229215145],[120,228,71,-1.3244184888899326],[120,228,72,-1.3266184069216251],[120,228,73,-1.3287454880774021],[120,228,74,-1.3299284763634205],[120,228,75,-1.3299780450761318],[120,228,76,-1.3287800811231136],[120,228,77,-1.3264069445431232],[120,228,78,-1.323071200400591],[120,228,79,-1.3192658722400665],[120,229,64,-1.3352186381816864],[120,229,65,-1.3345704823732376],[120,229,66,-1.3329121991991997],[120,229,67,-1.3309508860111237],[120,229,68,-1.32964126765728],[120,229,69,-1.329595509916544],[120,229,70,-1.3306613229215145],[120,229,71,-1.3322309888899326],[120,229,72,-1.3344309069216251],[120,229,73,-1.3365579880774021],[120,229,74,-1.3377409763634205],[120,229,75,-1.3377905450761318],[120,229,76,-1.3365925811231136],[120,229,77,-1.3342194445431232],[120,229,78,-1.330883700400591],[120,229,79,-1.3270783722400665],[120,230,64,-1.3430311381816864],[120,230,65,-1.3423829823732376],[120,230,66,-1.3407246991991997],[120,230,67,-1.3387633860111237],[120,230,68,-1.33745376765728],[120,230,69,-1.337408009916544],[120,230,70,-1.3384738229215145],[120,230,71,-1.3400434888899326],[120,230,72,-1.3422434069216251],[120,230,73,-1.3443704880774021],[120,230,74,-1.3455534763634205],[120,230,75,-1.3456030450761318],[120,230,76,-1.3444050811231136],[120,230,77,-1.3420319445431232],[120,230,78,-1.338696200400591],[120,230,79,-1.3348908722400665],[120,231,64,-1.3508436381816864],[120,231,65,-1.3501954823732376],[120,231,66,-1.3485371991991997],[120,231,67,-1.3465758860111237],[120,231,68,-1.34526626765728],[120,231,69,-1.345220509916544],[120,231,70,-1.3462863229215145],[120,231,71,-1.3478559888899326],[120,231,72,-1.3500559069216251],[120,231,73,-1.3521829880774021],[120,231,74,-1.3533659763634205],[120,231,75,-1.3534155450761318],[120,231,76,-1.3522175811231136],[120,231,77,-1.3498444445431232],[120,231,78,-1.346508700400591],[120,231,79,-1.3427033722400665],[120,232,64,-1.3586561381816864],[120,232,65,-1.3580079823732376],[120,232,66,-1.3563496991991997],[120,232,67,-1.3543883860111237],[120,232,68,-1.35307876765728],[120,232,69,-1.353033009916544],[120,232,70,-1.3540988229215145],[120,232,71,-1.3556684888899326],[120,232,72,-1.3578684069216251],[120,232,73,-1.3599954880774021],[120,232,74,-1.3611784763634205],[120,232,75,-1.3612280450761318],[120,232,76,-1.3600300811231136],[120,232,77,-1.3576569445431232],[120,232,78,-1.354321200400591],[120,232,79,-1.3505158722400665],[120,233,64,-1.3664686381816864],[120,233,65,-1.3658204823732376],[120,233,66,-1.3641621991991997],[120,233,67,-1.3622008860111237],[120,233,68,-1.36089126765728],[120,233,69,-1.360845509916544],[120,233,70,-1.3619113229215145],[120,233,71,-1.3634809888899326],[120,233,72,-1.3656809069216251],[120,233,73,-1.3678079880774021],[120,233,74,-1.3689909763634205],[120,233,75,-1.3690405450761318],[120,233,76,-1.3678425811231136],[120,233,77,-1.3654694445431232],[120,233,78,-1.362133700400591],[120,233,79,-1.3583283722400665],[120,234,64,-1.3742811381816864],[120,234,65,-1.3736329823732376],[120,234,66,-1.3719746991991997],[120,234,67,-1.3700133860111237],[120,234,68,-1.36870376765728],[120,234,69,-1.368658009916544],[120,234,70,-1.3697238229215145],[120,234,71,-1.3712934888899326],[120,234,72,-1.3734934069216251],[120,234,73,-1.3756204880774021],[120,234,74,-1.3768034763634205],[120,234,75,-1.3768530450761318],[120,234,76,-1.3756550811231136],[120,234,77,-1.3732819445431232],[120,234,78,-1.369946200400591],[120,234,79,-1.3661408722400665],[120,235,64,-1.3820936381816864],[120,235,65,-1.3814454823732376],[120,235,66,-1.3797871991991997],[120,235,67,-1.3778258860111237],[120,235,68,-1.37651626765728],[120,235,69,-1.376470509916544],[120,235,70,-1.3775363229215145],[120,235,71,-1.3791059888899326],[120,235,72,-1.3813059069216251],[120,235,73,-1.3834329880774021],[120,235,74,-1.3846159763634205],[120,235,75,-1.3846655450761318],[120,235,76,-1.3834675811231136],[120,235,77,-1.3810944445431232],[120,235,78,-1.377758700400591],[120,235,79,-1.3739533722400665],[120,236,64,-1.3899061381816864],[120,236,65,-1.3892579823732376],[120,236,66,-1.3875996991991997],[120,236,67,-1.3856383860111237],[120,236,68,-1.38432876765728],[120,236,69,-1.384283009916544],[120,236,70,-1.3853488229215145],[120,236,71,-1.3869184888899326],[120,236,72,-1.3891184069216251],[120,236,73,-1.3912454880774021],[120,236,74,-1.3924284763634205],[120,236,75,-1.3924780450761318],[120,236,76,-1.3912800811231136],[120,236,77,-1.3889069445431232],[120,236,78,-1.385571200400591],[120,236,79,-1.3817658722400665],[120,237,64,-1.3977186381816864],[120,237,65,-1.3970704823732376],[120,237,66,-1.3954121991991997],[120,237,67,-1.3934508860111237],[120,237,68,-1.39214126765728],[120,237,69,-1.392095509916544],[120,237,70,-1.3931613229215145],[120,237,71,-1.3947309888899326],[120,237,72,-1.3969309069216251],[120,237,73,-1.3990579880774021],[120,237,74,-1.4002409763634205],[120,237,75,-1.4002905450761318],[120,237,76,-1.3990925811231136],[120,237,77,-1.3967194445431232],[120,237,78,-1.393383700400591],[120,237,79,-1.3895783722400665],[120,238,64,-1.4055311381816864],[120,238,65,-1.4048829823732376],[120,238,66,-1.4032246991991997],[120,238,67,-1.4012633860111237],[120,238,68,-1.39995376765728],[120,238,69,-1.399908009916544],[120,238,70,-1.4009738229215145],[120,238,71,-1.4025434888899326],[120,238,72,-1.4047434069216251],[120,238,73,-1.4068704880774021],[120,238,74,-1.4080534763634205],[120,238,75,-1.4081030450761318],[120,238,76,-1.4069050811231136],[120,238,77,-1.4045319445431232],[120,238,78,-1.401196200400591],[120,238,79,-1.3973908722400665],[120,239,64,-1.4133436381816864],[120,239,65,-1.4126954823732376],[120,239,66,-1.4110371991991997],[120,239,67,-1.4090758860111237],[120,239,68,-1.40776626765728],[120,239,69,-1.407720509916544],[120,239,70,-1.4087863229215145],[120,239,71,-1.4103559888899326],[120,239,72,-1.4125559069216251],[120,239,73,-1.4146829880774021],[120,239,74,-1.4158659763634205],[120,239,75,-1.4159155450761318],[120,239,76,-1.4147175811231136],[120,239,77,-1.4123444445431232],[120,239,78,-1.409008700400591],[120,239,79,-1.4052033722400665],[120,240,64,-1.4211561381816864],[120,240,65,-1.4205079823732376],[120,240,66,-1.4188496991991997],[120,240,67,-1.4168883860111237],[120,240,68,-1.41557876765728],[120,240,69,-1.415533009916544],[120,240,70,-1.4165988229215145],[120,240,71,-1.4181684888899326],[120,240,72,-1.4203684069216251],[120,240,73,-1.4224954880774021],[120,240,74,-1.4236784763634205],[120,240,75,-1.4237280450761318],[120,240,76,-1.4225300811231136],[120,240,77,-1.4201569445431232],[120,240,78,-1.416821200400591],[120,240,79,-1.4130158722400665],[120,241,64,-1.4289686381816864],[120,241,65,-1.4283204823732376],[120,241,66,-1.4266621991991997],[120,241,67,-1.4247008860111237],[120,241,68,-1.42339126765728],[120,241,69,-1.423345509916544],[120,241,70,-1.4244113229215145],[120,241,71,-1.4259809888899326],[120,241,72,-1.4281809069216251],[120,241,73,-1.4303079880774021],[120,241,74,-1.4314909763634205],[120,241,75,-1.4315405450761318],[120,241,76,-1.4303425811231136],[120,241,77,-1.4279694445431232],[120,241,78,-1.424633700400591],[120,241,79,-1.4208283722400665],[120,242,64,-1.4367811381816864],[120,242,65,-1.4361329823732376],[120,242,66,-1.4344746991991997],[120,242,67,-1.4325133860111237],[120,242,68,-1.43120376765728],[120,242,69,-1.431158009916544],[120,242,70,-1.4322238229215145],[120,242,71,-1.4337934888899326],[120,242,72,-1.4359934069216251],[120,242,73,-1.4381204880774021],[120,242,74,-1.4393034763634205],[120,242,75,-1.4393530450761318],[120,242,76,-1.4381550811231136],[120,242,77,-1.4357819445431232],[120,242,78,-1.432446200400591],[120,242,79,-1.4286408722400665],[120,243,64,-1.4445936381816864],[120,243,65,-1.4439454823732376],[120,243,66,-1.4422871991991997],[120,243,67,-1.4403258860111237],[120,243,68,-1.43901626765728],[120,243,69,-1.438970509916544],[120,243,70,-1.4400363229215145],[120,243,71,-1.4416059888899326],[120,243,72,-1.4438059069216251],[120,243,73,-1.4459329880774021],[120,243,74,-1.4471159763634205],[120,243,75,-1.4471655450761318],[120,243,76,-1.4459675811231136],[120,243,77,-1.4435944445431232],[120,243,78,-1.440258700400591],[120,243,79,-1.4364533722400665],[120,244,64,-1.4524061381816864],[120,244,65,-1.4517579823732376],[120,244,66,-1.4500996991991997],[120,244,67,-1.4481383860111237],[120,244,68,-1.44682876765728],[120,244,69,-1.446783009916544],[120,244,70,-1.4478488229215145],[120,244,71,-1.4494184888899326],[120,244,72,-1.4516184069216251],[120,244,73,-1.4537454880774021],[120,244,74,-1.4549284763634205],[120,244,75,-1.4549780450761318],[120,244,76,-1.4537800811231136],[120,244,77,-1.4514069445431232],[120,244,78,-1.448071200400591],[120,244,79,-1.4442658722400665],[120,245,64,-1.4602186381816864],[120,245,65,-1.4595704823732376],[120,245,66,-1.4579121991991997],[120,245,67,-1.4559508860111237],[120,245,68,-1.45464126765728],[120,245,69,-1.454595509916544],[120,245,70,-1.4556613229215145],[120,245,71,-1.4572309888899326],[120,245,72,-1.4594309069216251],[120,245,73,-1.4615579880774021],[120,245,74,-1.4627409763634205],[120,245,75,-1.4627905450761318],[120,245,76,-1.4615925811231136],[120,245,77,-1.4592194445431232],[120,245,78,-1.455883700400591],[120,245,79,-1.4520783722400665],[120,246,64,-1.4680311381816864],[120,246,65,-1.4673829823732376],[120,246,66,-1.4657246991991997],[120,246,67,-1.4637633860111237],[120,246,68,-1.46245376765728],[120,246,69,-1.462408009916544],[120,246,70,-1.4634738229215145],[120,246,71,-1.4650434888899326],[120,246,72,-1.4672434069216251],[120,246,73,-1.4693704880774021],[120,246,74,-1.4705534763634205],[120,246,75,-1.4706030450761318],[120,246,76,-1.4694050811231136],[120,246,77,-1.4670319445431232],[120,246,78,-1.463696200400591],[120,246,79,-1.4598908722400665],[120,247,64,-1.4758436381816864],[120,247,65,-1.4751954823732376],[120,247,66,-1.4735371991991997],[120,247,67,-1.4715758860111237],[120,247,68,-1.47026626765728],[120,247,69,-1.470220509916544],[120,247,70,-1.4712863229215145],[120,247,71,-1.4728559888899326],[120,247,72,-1.4750559069216251],[120,247,73,-1.4771829880774021],[120,247,74,-1.4783659763634205],[120,247,75,-1.4784155450761318],[120,247,76,-1.4772175811231136],[120,247,77,-1.4748444445431232],[120,247,78,-1.471508700400591],[120,247,79,-1.4677033722400665],[120,248,64,-1.4836561381816864],[120,248,65,-1.4830079823732376],[120,248,66,-1.4813496991991997],[120,248,67,-1.4793883860111237],[120,248,68,-1.47807876765728],[120,248,69,-1.478033009916544],[120,248,70,-1.4790988229215145],[120,248,71,-1.4806684888899326],[120,248,72,-1.4828684069216251],[120,248,73,-1.4849954880774021],[120,248,74,-1.4861784763634205],[120,248,75,-1.4862280450761318],[120,248,76,-1.4850300811231136],[120,248,77,-1.4826569445431232],[120,248,78,-1.479321200400591],[120,248,79,-1.4755158722400665],[120,249,64,-1.4914686381816864],[120,249,65,-1.4908204823732376],[120,249,66,-1.4891621991991997],[120,249,67,-1.4872008860111237],[120,249,68,-1.48589126765728],[120,249,69,-1.485845509916544],[120,249,70,-1.4869113229215145],[120,249,71,-1.4884809888899326],[120,249,72,-1.4906809069216251],[120,249,73,-1.4928079880774021],[120,249,74,-1.4939909763634205],[120,249,75,-1.4940405450761318],[120,249,76,-1.4928425811231136],[120,249,77,-1.4904694445431232],[120,249,78,-1.487133700400591],[120,249,79,-1.4833283722400665],[120,250,64,-1.4992811381816864],[120,250,65,-1.4986329823732376],[120,250,66,-1.4969746991991997],[120,250,67,-1.4950133860111237],[120,250,68,-1.49370376765728],[120,250,69,-1.493658009916544],[120,250,70,-1.4947238229215145],[120,250,71,-1.4962934888899326],[120,250,72,-1.4984934069216251],[120,250,73,-1.5006204880774021],[120,250,74,-1.5018034763634205],[120,250,75,-1.5018530450761318],[120,250,76,-1.5006550811231136],[120,250,77,-1.4982819445431232],[120,250,78,-1.494946200400591],[120,250,79,-1.4911408722400665],[120,251,64,-1.5070936381816864],[120,251,65,-1.5064454823732376],[120,251,66,-1.5047871991991997],[120,251,67,-1.5028258860111237],[120,251,68,-1.50151626765728],[120,251,69,-1.501470509916544],[120,251,70,-1.5025363229215145],[120,251,71,-1.5041059888899326],[120,251,72,-1.5063059069216251],[120,251,73,-1.5084329880774021],[120,251,74,-1.5096159763634205],[120,251,75,-1.5096655450761318],[120,251,76,-1.5084675811231136],[120,251,77,-1.5060944445431232],[120,251,78,-1.502758700400591],[120,251,79,-1.4989533722400665],[120,252,64,-1.5149061381816864],[120,252,65,-1.5142579823732376],[120,252,66,-1.5125996991991997],[120,252,67,-1.5106383860111237],[120,252,68,-1.50932876765728],[120,252,69,-1.509283009916544],[120,252,70,-1.5103488229215145],[120,252,71,-1.5119184888899326],[120,252,72,-1.5141184069216251],[120,252,73,-1.5162454880774021],[120,252,74,-1.5174284763634205],[120,252,75,-1.5174780450761318],[120,252,76,-1.5162800811231136],[120,252,77,-1.5139069445431232],[120,252,78,-1.510571200400591],[120,252,79,-1.5067658722400665],[120,253,64,-1.5227186381816864],[120,253,65,-1.5220704823732376],[120,253,66,-1.5204121991991997],[120,253,67,-1.5184508860111237],[120,253,68,-1.51714126765728],[120,253,69,-1.517095509916544],[120,253,70,-1.5181613229215145],[120,253,71,-1.5197309888899326],[120,253,72,-1.5219309069216251],[120,253,73,-1.5240579880774021],[120,253,74,-1.5252409763634205],[120,253,75,-1.5252905450761318],[120,253,76,-1.5240925811231136],[120,253,77,-1.5217194445431232],[120,253,78,-1.518383700400591],[120,253,79,-1.5145783722400665],[120,254,64,-1.5305311381816864],[120,254,65,-1.5298829823732376],[120,254,66,-1.5282246991991997],[120,254,67,-1.5262633860111237],[120,254,68,-1.52495376765728],[120,254,69,-1.524908009916544],[120,254,70,-1.5259738229215145],[120,254,71,-1.5275434888899326],[120,254,72,-1.5297434069216251],[120,254,73,-1.5318704880774021],[120,254,74,-1.5330534763634205],[120,254,75,-1.5331030450761318],[120,254,76,-1.5319050811231136],[120,254,77,-1.5295319445431232],[120,254,78,-1.526196200400591],[120,254,79,-1.5223908722400665],[120,255,64,-1.5383436381816864],[120,255,65,-1.5376954823732376],[120,255,66,-1.5360371991991997],[120,255,67,-1.5340758860111237],[120,255,68,-1.53276626765728],[120,255,69,-1.532720509916544],[120,255,70,-1.5337863229215145],[120,255,71,-1.5353559888899326],[120,255,72,-1.5375559069216251],[120,255,73,-1.5396829880774021],[120,255,74,-1.5408659763634205],[120,255,75,-1.5409155450761318],[120,255,76,-1.5397175811231136],[120,255,77,-1.5373444445431232],[120,255,78,-1.534008700400591],[120,255,79,-1.5302033722400665],[120,256,64,-1.5461561381816864],[120,256,65,-1.5455079823732376],[120,256,66,-1.5438496991991997],[120,256,67,-1.5418883860111237],[120,256,68,-1.54057876765728],[120,256,69,-1.540533009916544],[120,256,70,-1.5415988229215145],[120,256,71,-1.5431684888899326],[120,256,72,-1.5453684069216251],[120,256,73,-1.5474954880774021],[120,256,74,-1.5486784763634205],[120,256,75,-1.5487280450761318],[120,256,76,-1.5475300811231136],[120,256,77,-1.5451569445431232],[120,256,78,-1.541821200400591],[120,256,79,-1.5380158722400665],[120,257,64,-1.5539686381816864],[120,257,65,-1.5533204823732376],[120,257,66,-1.5516621991991997],[120,257,67,-1.5497008860111237],[120,257,68,-1.54839126765728],[120,257,69,-1.548345509916544],[120,257,70,-1.5494113229215145],[120,257,71,-1.5509809888899326],[120,257,72,-1.5531809069216251],[120,257,73,-1.5553079880774021],[120,257,74,-1.5564909763634205],[120,257,75,-1.5565405450761318],[120,257,76,-1.5553425811231136],[120,257,77,-1.5529694445431232],[120,257,78,-1.549633700400591],[120,257,79,-1.5458283722400665],[120,258,64,-1.5617811381816864],[120,258,65,-1.5611329823732376],[120,258,66,-1.5594746991991997],[120,258,67,-1.5575133860111237],[120,258,68,-1.55620376765728],[120,258,69,-1.556158009916544],[120,258,70,-1.5572238229215145],[120,258,71,-1.5587934888899326],[120,258,72,-1.5609934069216251],[120,258,73,-1.5631204880774021],[120,258,74,-1.5643034763634205],[120,258,75,-1.5643530450761318],[120,258,76,-1.5631550811231136],[120,258,77,-1.5607819445431232],[120,258,78,-1.557446200400591],[120,258,79,-1.5536408722400665],[120,259,64,-1.5695936381816864],[120,259,65,-1.5689454823732376],[120,259,66,-1.5672871991991997],[120,259,67,-1.5653258860111237],[120,259,68,-1.56401626765728],[120,259,69,-1.563970509916544],[120,259,70,-1.5650363229215145],[120,259,71,-1.5666059888899326],[120,259,72,-1.5688059069216251],[120,259,73,-1.5709329880774021],[120,259,74,-1.5721159763634205],[120,259,75,-1.5721655450761318],[120,259,76,-1.5709675811231136],[120,259,77,-1.5685944445431232],[120,259,78,-1.565258700400591],[120,259,79,-1.5614533722400665],[120,260,64,-1.5774061381816864],[120,260,65,-1.5767579823732376],[120,260,66,-1.5750996991991997],[120,260,67,-1.5731383860111237],[120,260,68,-1.57182876765728],[120,260,69,-1.571783009916544],[120,260,70,-1.5728488229215145],[120,260,71,-1.5744184888899326],[120,260,72,-1.5766184069216251],[120,260,73,-1.5787454880774021],[120,260,74,-1.5799284763634205],[120,260,75,-1.5799780450761318],[120,260,76,-1.5787800811231136],[120,260,77,-1.5764069445431232],[120,260,78,-1.573071200400591],[120,260,79,-1.5692658722400665],[120,261,64,-1.5852186381816864],[120,261,65,-1.5845704823732376],[120,261,66,-1.5829121991991997],[120,261,67,-1.5809508860111237],[120,261,68,-1.57964126765728],[120,261,69,-1.579595509916544],[120,261,70,-1.5806613229215145],[120,261,71,-1.5822309888899326],[120,261,72,-1.5844309069216251],[120,261,73,-1.5865579880774021],[120,261,74,-1.5877409763634205],[120,261,75,-1.5877905450761318],[120,261,76,-1.5865925811231136],[120,261,77,-1.5842194445431232],[120,261,78,-1.580883700400591],[120,261,79,-1.5770783722400665],[120,262,64,-1.5930311381816864],[120,262,65,-1.5923829823732376],[120,262,66,-1.5907246991991997],[120,262,67,-1.5887633860111237],[120,262,68,-1.58745376765728],[120,262,69,-1.587408009916544],[120,262,70,-1.5884738229215145],[120,262,71,-1.5900434888899326],[120,262,72,-1.5922434069216251],[120,262,73,-1.5943704880774021],[120,262,74,-1.5955534763634205],[120,262,75,-1.5956030450761318],[120,262,76,-1.5944050811231136],[120,262,77,-1.5920319445431232],[120,262,78,-1.588696200400591],[120,262,79,-1.5848908722400665],[120,263,64,-1.6008436381816864],[120,263,65,-1.6001954823732376],[120,263,66,-1.5985371991991997],[120,263,67,-1.5965758860111237],[120,263,68,-1.59526626765728],[120,263,69,-1.595220509916544],[120,263,70,-1.5962863229215145],[120,263,71,-1.5978559888899326],[120,263,72,-1.6000559069216251],[120,263,73,-1.6021829880774021],[120,263,74,-1.6033659763634205],[120,263,75,-1.6034155450761318],[120,263,76,-1.6022175811231136],[120,263,77,-1.5998444445431232],[120,263,78,-1.596508700400591],[120,263,79,-1.5927033722400665],[120,264,64,-1.6086561381816864],[120,264,65,-1.6080079823732376],[120,264,66,-1.6063496991991997],[120,264,67,-1.6043883860111237],[120,264,68,-1.60307876765728],[120,264,69,-1.603033009916544],[120,264,70,-1.6040988229215145],[120,264,71,-1.6056684888899326],[120,264,72,-1.6078684069216251],[120,264,73,-1.6099954880774021],[120,264,74,-1.6111784763634205],[120,264,75,-1.6112280450761318],[120,264,76,-1.6100300811231136],[120,264,77,-1.6076569445431232],[120,264,78,-1.604321200400591],[120,264,79,-1.6005158722400665],[120,265,64,-1.6164686381816864],[120,265,65,-1.6158204823732376],[120,265,66,-1.6141621991991997],[120,265,67,-1.6122008860111237],[120,265,68,-1.61089126765728],[120,265,69,-1.610845509916544],[120,265,70,-1.6119113229215145],[120,265,71,-1.6134809888899326],[120,265,72,-1.6156809069216251],[120,265,73,-1.6178079880774021],[120,265,74,-1.6189909763634205],[120,265,75,-1.6190405450761318],[120,265,76,-1.6178425811231136],[120,265,77,-1.6154694445431232],[120,265,78,-1.612133700400591],[120,265,79,-1.6083283722400665],[120,266,64,-1.6242811381816864],[120,266,65,-1.6236329823732376],[120,266,66,-1.6219746991991997],[120,266,67,-1.6200133860111237],[120,266,68,-1.61870376765728],[120,266,69,-1.618658009916544],[120,266,70,-1.6197238229215145],[120,266,71,-1.6212934888899326],[120,266,72,-1.6234934069216251],[120,266,73,-1.6256204880774021],[120,266,74,-1.6268034763634205],[120,266,75,-1.6268530450761318],[120,266,76,-1.6256550811231136],[120,266,77,-1.6232819445431232],[120,266,78,-1.619946200400591],[120,266,79,-1.6161408722400665],[120,267,64,-1.6320936381816864],[120,267,65,-1.6314454823732376],[120,267,66,-1.6297871991991997],[120,267,67,-1.6278258860111237],[120,267,68,-1.62651626765728],[120,267,69,-1.626470509916544],[120,267,70,-1.6275363229215145],[120,267,71,-1.6291059888899326],[120,267,72,-1.6313059069216251],[120,267,73,-1.6334329880774021],[120,267,74,-1.6346159763634205],[120,267,75,-1.6346655450761318],[120,267,76,-1.6334675811231136],[120,267,77,-1.6310944445431232],[120,267,78,-1.627758700400591],[120,267,79,-1.6239533722400665],[120,268,64,-1.6399061381816864],[120,268,65,-1.6392579823732376],[120,268,66,-1.6375996991991997],[120,268,67,-1.6356383860111237],[120,268,68,-1.63432876765728],[120,268,69,-1.634283009916544],[120,268,70,-1.6353488229215145],[120,268,71,-1.6369184888899326],[120,268,72,-1.6391184069216251],[120,268,73,-1.6412454880774021],[120,268,74,-1.6424284763634205],[120,268,75,-1.6424780450761318],[120,268,76,-1.6412800811231136],[120,268,77,-1.6389069445431232],[120,268,78,-1.635571200400591],[120,268,79,-1.6317658722400665],[120,269,64,-1.6477186381816864],[120,269,65,-1.6470704823732376],[120,269,66,-1.6454121991991997],[120,269,67,-1.6434508860111237],[120,269,68,-1.64214126765728],[120,269,69,-1.642095509916544],[120,269,70,-1.6431613229215145],[120,269,71,-1.6447309888899326],[120,269,72,-1.6469309069216251],[120,269,73,-1.6490579880774021],[120,269,74,-1.6502409763634205],[120,269,75,-1.6502905450761318],[120,269,76,-1.6490925811231136],[120,269,77,-1.6467194445431232],[120,269,78,-1.643383700400591],[120,269,79,-1.6395783722400665],[120,270,64,-1.6555311381816864],[120,270,65,-1.6548829823732376],[120,270,66,-1.6532246991991997],[120,270,67,-1.6512633860111237],[120,270,68,-1.64995376765728],[120,270,69,-1.649908009916544],[120,270,70,-1.6509738229215145],[120,270,71,-1.6525434888899326],[120,270,72,-1.6547434069216251],[120,270,73,-1.6568704880774021],[120,270,74,-1.6580534763634205],[120,270,75,-1.6581030450761318],[120,270,76,-1.6569050811231136],[120,270,77,-1.6545319445431232],[120,270,78,-1.651196200400591],[120,270,79,-1.6473908722400665],[120,271,64,-1.6633436381816864],[120,271,65,-1.6626954823732376],[120,271,66,-1.6610371991991997],[120,271,67,-1.6590758860111237],[120,271,68,-1.65776626765728],[120,271,69,-1.657720509916544],[120,271,70,-1.6587863229215145],[120,271,71,-1.6603559888899326],[120,271,72,-1.6625559069216251],[120,271,73,-1.6646829880774021],[120,271,74,-1.6658659763634205],[120,271,75,-1.6659155450761318],[120,271,76,-1.6647175811231136],[120,271,77,-1.6623444445431232],[120,271,78,-1.659008700400591],[120,271,79,-1.6552033722400665],[120,272,64,-1.6711561381816864],[120,272,65,-1.6705079823732376],[120,272,66,-1.6688496991991997],[120,272,67,-1.6668883860111237],[120,272,68,-1.66557876765728],[120,272,69,-1.665533009916544],[120,272,70,-1.6665988229215145],[120,272,71,-1.6681684888899326],[120,272,72,-1.6703684069216251],[120,272,73,-1.6724954880774021],[120,272,74,-1.6736784763634205],[120,272,75,-1.6737280450761318],[120,272,76,-1.6725300811231136],[120,272,77,-1.6701569445431232],[120,272,78,-1.666821200400591],[120,272,79,-1.6630158722400665],[120,273,64,-1.6789686381816864],[120,273,65,-1.6783204823732376],[120,273,66,-1.6766621991991997],[120,273,67,-1.6747008860111237],[120,273,68,-1.67339126765728],[120,273,69,-1.673345509916544],[120,273,70,-1.6744113229215145],[120,273,71,-1.6759809888899326],[120,273,72,-1.6781809069216251],[120,273,73,-1.6803079880774021],[120,273,74,-1.6814909763634205],[120,273,75,-1.6815405450761318],[120,273,76,-1.6803425811231136],[120,273,77,-1.6779694445431232],[120,273,78,-1.674633700400591],[120,273,79,-1.6708283722400665],[120,274,64,-1.6867811381816864],[120,274,65,-1.6861329823732376],[120,274,66,-1.6844746991991997],[120,274,67,-1.6825133860111237],[120,274,68,-1.68120376765728],[120,274,69,-1.681158009916544],[120,274,70,-1.6822238229215145],[120,274,71,-1.6837934888899326],[120,274,72,-1.6859934069216251],[120,274,73,-1.6881204880774021],[120,274,74,-1.6893034763634205],[120,274,75,-1.6893530450761318],[120,274,76,-1.6881550811231136],[120,274,77,-1.6857819445431232],[120,274,78,-1.682446200400591],[120,274,79,-1.6786408722400665],[120,275,64,-1.6945936381816864],[120,275,65,-1.6939454823732376],[120,275,66,-1.6922871991991997],[120,275,67,-1.6903258860111237],[120,275,68,-1.68901626765728],[120,275,69,-1.688970509916544],[120,275,70,-1.6900363229215145],[120,275,71,-1.6916059888899326],[120,275,72,-1.6938059069216251],[120,275,73,-1.6959329880774021],[120,275,74,-1.6971159763634205],[120,275,75,-1.6971655450761318],[120,275,76,-1.6959675811231136],[120,275,77,-1.6935944445431232],[120,275,78,-1.690258700400591],[120,275,79,-1.6864533722400665],[120,276,64,-1.7024061381816864],[120,276,65,-1.7017579823732376],[120,276,66,-1.7000996991991997],[120,276,67,-1.6981383860111237],[120,276,68,-1.69682876765728],[120,276,69,-1.696783009916544],[120,276,70,-1.6978488229215145],[120,276,71,-1.6994184888899326],[120,276,72,-1.7016184069216251],[120,276,73,-1.7037454880774021],[120,276,74,-1.7049284763634205],[120,276,75,-1.7049780450761318],[120,276,76,-1.7037800811231136],[120,276,77,-1.7014069445431232],[120,276,78,-1.698071200400591],[120,276,79,-1.6942658722400665],[120,277,64,-1.7102186381816864],[120,277,65,-1.7095704823732376],[120,277,66,-1.7079121991991997],[120,277,67,-1.7059508860111237],[120,277,68,-1.70464126765728],[120,277,69,-1.704595509916544],[120,277,70,-1.7056613229215145],[120,277,71,-1.7072309888899326],[120,277,72,-1.7094309069216251],[120,277,73,-1.7115579880774021],[120,277,74,-1.7127409763634205],[120,277,75,-1.7127905450761318],[120,277,76,-1.7115925811231136],[120,277,77,-1.7092194445431232],[120,277,78,-1.705883700400591],[120,277,79,-1.7020783722400665],[120,278,64,-1.7180311381816864],[120,278,65,-1.7173829823732376],[120,278,66,-1.7157246991991997],[120,278,67,-1.7137633860111237],[120,278,68,-1.71245376765728],[120,278,69,-1.712408009916544],[120,278,70,-1.7134738229215145],[120,278,71,-1.7150434888899326],[120,278,72,-1.7172434069216251],[120,278,73,-1.7193704880774021],[120,278,74,-1.7205534763634205],[120,278,75,-1.7206030450761318],[120,278,76,-1.7194050811231136],[120,278,77,-1.7170319445431232],[120,278,78,-1.713696200400591],[120,278,79,-1.7098908722400665],[120,279,64,-1.7258436381816864],[120,279,65,-1.7251954823732376],[120,279,66,-1.7235371991991997],[120,279,67,-1.7215758860111237],[120,279,68,-1.72026626765728],[120,279,69,-1.720220509916544],[120,279,70,-1.7212863229215145],[120,279,71,-1.7228559888899326],[120,279,72,-1.7250559069216251],[120,279,73,-1.7271829880774021],[120,279,74,-1.7283659763634205],[120,279,75,-1.7284155450761318],[120,279,76,-1.7272175811231136],[120,279,77,-1.7248444445431232],[120,279,78,-1.721508700400591],[120,279,79,-1.7177033722400665],[120,280,64,-1.7336561381816864],[120,280,65,-1.7330079823732376],[120,280,66,-1.7313496991991997],[120,280,67,-1.7293883860111237],[120,280,68,-1.72807876765728],[120,280,69,-1.728033009916544],[120,280,70,-1.7290988229215145],[120,280,71,-1.7306684888899326],[120,280,72,-1.7328684069216251],[120,280,73,-1.7349954880774021],[120,280,74,-1.7361784763634205],[120,280,75,-1.7362280450761318],[120,280,76,-1.7350300811231136],[120,280,77,-1.7326569445431232],[120,280,78,-1.729321200400591],[120,280,79,-1.7255158722400665],[120,281,64,-1.7414686381816864],[120,281,65,-1.7408204823732376],[120,281,66,-1.7391621991991997],[120,281,67,-1.7372008860111237],[120,281,68,-1.73589126765728],[120,281,69,-1.735845509916544],[120,281,70,-1.7369113229215145],[120,281,71,-1.7384809888899326],[120,281,72,-1.7406809069216251],[120,281,73,-1.7428079880774021],[120,281,74,-1.7439909763634205],[120,281,75,-1.7440405450761318],[120,281,76,-1.7428425811231136],[120,281,77,-1.7404694445431232],[120,281,78,-1.737133700400591],[120,281,79,-1.7333283722400665],[120,282,64,-1.7492811381816864],[120,282,65,-1.7486329823732376],[120,282,66,-1.7469746991991997],[120,282,67,-1.7450133860111237],[120,282,68,-1.74370376765728],[120,282,69,-1.743658009916544],[120,282,70,-1.7447238229215145],[120,282,71,-1.7462934888899326],[120,282,72,-1.7484934069216251],[120,282,73,-1.7506204880774021],[120,282,74,-1.7518034763634205],[120,282,75,-1.7518530450761318],[120,282,76,-1.7506550811231136],[120,282,77,-1.7482819445431232],[120,282,78,-1.744946200400591],[120,282,79,-1.7411408722400665],[120,283,64,-1.7570936381816864],[120,283,65,-1.7564454823732376],[120,283,66,-1.7547871991991997],[120,283,67,-1.7528258860111237],[120,283,68,-1.75151626765728],[120,283,69,-1.751470509916544],[120,283,70,-1.7525363229215145],[120,283,71,-1.7541059888899326],[120,283,72,-1.7563059069216251],[120,283,73,-1.7584329880774021],[120,283,74,-1.7596159763634205],[120,283,75,-1.7596655450761318],[120,283,76,-1.7584675811231136],[120,283,77,-1.7560944445431232],[120,283,78,-1.752758700400591],[120,283,79,-1.7489533722400665],[120,284,64,-1.7649061381816864],[120,284,65,-1.7642579823732376],[120,284,66,-1.7625996991991997],[120,284,67,-1.7606383860111237],[120,284,68,-1.75932876765728],[120,284,69,-1.759283009916544],[120,284,70,-1.7603488229215145],[120,284,71,-1.7619184888899326],[120,284,72,-1.7641184069216251],[120,284,73,-1.7662454880774021],[120,284,74,-1.7674284763634205],[120,284,75,-1.7674780450761318],[120,284,76,-1.7662800811231136],[120,284,77,-1.7639069445431232],[120,284,78,-1.760571200400591],[120,284,79,-1.7567658722400665],[120,285,64,-1.7727186381816864],[120,285,65,-1.7720704823732376],[120,285,66,-1.7704121991991997],[120,285,67,-1.7684508860111237],[120,285,68,-1.76714126765728],[120,285,69,-1.767095509916544],[120,285,70,-1.7681613229215145],[120,285,71,-1.7697309888899326],[120,285,72,-1.7719309069216251],[120,285,73,-1.7740579880774021],[120,285,74,-1.7752409763634205],[120,285,75,-1.7752905450761318],[120,285,76,-1.7740925811231136],[120,285,77,-1.7717194445431232],[120,285,78,-1.768383700400591],[120,285,79,-1.7645783722400665],[120,286,64,-1.7805311381816864],[120,286,65,-1.7798829823732376],[120,286,66,-1.7782246991991997],[120,286,67,-1.7762633860111237],[120,286,68,-1.77495376765728],[120,286,69,-1.774908009916544],[120,286,70,-1.7759738229215145],[120,286,71,-1.7775434888899326],[120,286,72,-1.7797434069216251],[120,286,73,-1.7818704880774021],[120,286,74,-1.7830534763634205],[120,286,75,-1.7831030450761318],[120,286,76,-1.7819050811231136],[120,286,77,-1.7795319445431232],[120,286,78,-1.776196200400591],[120,286,79,-1.7723908722400665],[120,287,64,-1.7883436381816864],[120,287,65,-1.7876954823732376],[120,287,66,-1.7860371991991997],[120,287,67,-1.7840758860111237],[120,287,68,-1.78276626765728],[120,287,69,-1.782720509916544],[120,287,70,-1.7837863229215145],[120,287,71,-1.7853559888899326],[120,287,72,-1.7875559069216251],[120,287,73,-1.7896829880774021],[120,287,74,-1.7908659763634205],[120,287,75,-1.7909155450761318],[120,287,76,-1.7897175811231136],[120,287,77,-1.7873444445431232],[120,287,78,-1.784008700400591],[120,287,79,-1.7802033722400665],[120,288,64,-1.7961561381816864],[120,288,65,-1.7955079823732376],[120,288,66,-1.7938496991991997],[120,288,67,-1.7918883860111237],[120,288,68,-1.79057876765728],[120,288,69,-1.790533009916544],[120,288,70,-1.7915988229215145],[120,288,71,-1.7931684888899326],[120,288,72,-1.7953684069216251],[120,288,73,-1.7974954880774021],[120,288,74,-1.7986784763634205],[120,288,75,-1.7987280450761318],[120,288,76,-1.7975300811231136],[120,288,77,-1.7951569445431232],[120,288,78,-1.791821200400591],[120,288,79,-1.7880158722400665],[120,289,64,-1.8039686381816864],[120,289,65,-1.8033204823732376],[120,289,66,-1.8016621991991997],[120,289,67,-1.7997008860111237],[120,289,68,-1.79839126765728],[120,289,69,-1.798345509916544],[120,289,70,-1.7994113229215145],[120,289,71,-1.8009809888899326],[120,289,72,-1.8031809069216251],[120,289,73,-1.8053079880774021],[120,289,74,-1.8064909763634205],[120,289,75,-1.8065405450761318],[120,289,76,-1.8053425811231136],[120,289,77,-1.8029694445431232],[120,289,78,-1.799633700400591],[120,289,79,-1.7958283722400665],[120,290,64,-1.8117811381816864],[120,290,65,-1.8111329823732376],[120,290,66,-1.8094746991991997],[120,290,67,-1.8075133860111237],[120,290,68,-1.80620376765728],[120,290,69,-1.806158009916544],[120,290,70,-1.8072238229215145],[120,290,71,-1.8087934888899326],[120,290,72,-1.8109934069216251],[120,290,73,-1.8131204880774021],[120,290,74,-1.8143034763634205],[120,290,75,-1.8143530450761318],[120,290,76,-1.8131550811231136],[120,290,77,-1.8107819445431232],[120,290,78,-1.807446200400591],[120,290,79,-1.8036408722400665],[120,291,64,-1.8195936381816864],[120,291,65,-1.8189454823732376],[120,291,66,-1.8172871991991997],[120,291,67,-1.8153258860111237],[120,291,68,-1.81401626765728],[120,291,69,-1.813970509916544],[120,291,70,-1.8150363229215145],[120,291,71,-1.8166059888899326],[120,291,72,-1.8188059069216251],[120,291,73,-1.8209329880774021],[120,291,74,-1.8221159763634205],[120,291,75,-1.8221655450761318],[120,291,76,-1.8209675811231136],[120,291,77,-1.8185944445431232],[120,291,78,-1.815258700400591],[120,291,79,-1.8114533722400665],[120,292,64,-1.8274061381816864],[120,292,65,-1.8267579823732376],[120,292,66,-1.8250996991991997],[120,292,67,-1.8231383860111237],[120,292,68,-1.82182876765728],[120,292,69,-1.821783009916544],[120,292,70,-1.8228488229215145],[120,292,71,-1.8244184888899326],[120,292,72,-1.8266184069216251],[120,292,73,-1.8287454880774021],[120,292,74,-1.8299284763634205],[120,292,75,-1.8299780450761318],[120,292,76,-1.8287800811231136],[120,292,77,-1.8264069445431232],[120,292,78,-1.823071200400591],[120,292,79,-1.8192658722400665],[120,293,64,-1.8352186381816864],[120,293,65,-1.8345704823732376],[120,293,66,-1.8329121991991997],[120,293,67,-1.8309508860111237],[120,293,68,-1.82964126765728],[120,293,69,-1.829595509916544],[120,293,70,-1.8306613229215145],[120,293,71,-1.8322309888899326],[120,293,72,-1.8344309069216251],[120,293,73,-1.8365579880774021],[120,293,74,-1.8377409763634205],[120,293,75,-1.8377905450761318],[120,293,76,-1.8365925811231136],[120,293,77,-1.8342194445431232],[120,293,78,-1.830883700400591],[120,293,79,-1.8270783722400665],[120,294,64,-1.8430311381816864],[120,294,65,-1.8423829823732376],[120,294,66,-1.8407246991991997],[120,294,67,-1.8387633860111237],[120,294,68,-1.83745376765728],[120,294,69,-1.837408009916544],[120,294,70,-1.8384738229215145],[120,294,71,-1.8400434888899326],[120,294,72,-1.8422434069216251],[120,294,73,-1.8443704880774021],[120,294,74,-1.8455534763634205],[120,294,75,-1.8456030450761318],[120,294,76,-1.8444050811231136],[120,294,77,-1.8420319445431232],[120,294,78,-1.838696200400591],[120,294,79,-1.8348908722400665],[120,295,64,-1.8508436381816864],[120,295,65,-1.8501954823732376],[120,295,66,-1.8485371991991997],[120,295,67,-1.8465758860111237],[120,295,68,-1.84526626765728],[120,295,69,-1.845220509916544],[120,295,70,-1.8462863229215145],[120,295,71,-1.8478559888899326],[120,295,72,-1.8500559069216251],[120,295,73,-1.8521829880774021],[120,295,74,-1.8533659763634205],[120,295,75,-1.8534155450761318],[120,295,76,-1.8522175811231136],[120,295,77,-1.8498444445431232],[120,295,78,-1.846508700400591],[120,295,79,-1.8427033722400665],[120,296,64,-1.8586561381816864],[120,296,65,-1.8580079823732376],[120,296,66,-1.8563496991991997],[120,296,67,-1.8543883860111237],[120,296,68,-1.85307876765728],[120,296,69,-1.853033009916544],[120,296,70,-1.8540988229215145],[120,296,71,-1.8556684888899326],[120,296,72,-1.8578684069216251],[120,296,73,-1.8599954880774021],[120,296,74,-1.8611784763634205],[120,296,75,-1.8612280450761318],[120,296,76,-1.8600300811231136],[120,296,77,-1.8576569445431232],[120,296,78,-1.854321200400591],[120,296,79,-1.8505158722400665],[120,297,64,-1.8664686381816864],[120,297,65,-1.8658204823732376],[120,297,66,-1.8641621991991997],[120,297,67,-1.8622008860111237],[120,297,68,-1.86089126765728],[120,297,69,-1.860845509916544],[120,297,70,-1.8619113229215145],[120,297,71,-1.8634809888899326],[120,297,72,-1.8656809069216251],[120,297,73,-1.8678079880774021],[120,297,74,-1.8689909763634205],[120,297,75,-1.8690405450761318],[120,297,76,-1.8678425811231136],[120,297,77,-1.8654694445431232],[120,297,78,-1.862133700400591],[120,297,79,-1.8583283722400665],[120,298,64,-1.8742811381816864],[120,298,65,-1.8736329823732376],[120,298,66,-1.8719746991991997],[120,298,67,-1.8700133860111237],[120,298,68,-1.86870376765728],[120,298,69,-1.868658009916544],[120,298,70,-1.8697238229215145],[120,298,71,-1.8712934888899326],[120,298,72,-1.8734934069216251],[120,298,73,-1.8756204880774021],[120,298,74,-1.8768034763634205],[120,298,75,-1.8768530450761318],[120,298,76,-1.8756550811231136],[120,298,77,-1.8732819445431232],[120,298,78,-1.869946200400591],[120,298,79,-1.8661408722400665],[120,299,64,-1.8820936381816864],[120,299,65,-1.8814454823732376],[120,299,66,-1.8797871991991997],[120,299,67,-1.8778258860111237],[120,299,68,-1.87651626765728],[120,299,69,-1.876470509916544],[120,299,70,-1.8775363229215145],[120,299,71,-1.8791059888899326],[120,299,72,-1.8813059069216251],[120,299,73,-1.8834329880774021],[120,299,74,-1.8846159763634205],[120,299,75,-1.8846655450761318],[120,299,76,-1.8834675811231136],[120,299,77,-1.8810944445431232],[120,299,78,-1.877758700400591],[120,299,79,-1.8739533722400665],[120,300,64,-1.8899061381816864],[120,300,65,-1.8892579823732376],[120,300,66,-1.8875996991991997],[120,300,67,-1.8856383860111237],[120,300,68,-1.88432876765728],[120,300,69,-1.884283009916544],[120,300,70,-1.8853488229215145],[120,300,71,-1.8869184888899326],[120,300,72,-1.8891184069216251],[120,300,73,-1.8912454880774021],[120,300,74,-1.8924284763634205],[120,300,75,-1.8924780450761318],[120,300,76,-1.8912800811231136],[120,300,77,-1.8889069445431232],[120,300,78,-1.885571200400591],[120,300,79,-1.8817658722400665],[120,301,64,-1.8977186381816864],[120,301,65,-1.8970704823732376],[120,301,66,-1.8954121991991997],[120,301,67,-1.8934508860111237],[120,301,68,-1.89214126765728],[120,301,69,-1.892095509916544],[120,301,70,-1.8931613229215145],[120,301,71,-1.8947309888899326],[120,301,72,-1.8969309069216251],[120,301,73,-1.8990579880774021],[120,301,74,-1.9002409763634205],[120,301,75,-1.9002905450761318],[120,301,76,-1.8990925811231136],[120,301,77,-1.8967194445431232],[120,301,78,-1.893383700400591],[120,301,79,-1.8895783722400665],[120,302,64,-1.9055311381816864],[120,302,65,-1.9048829823732376],[120,302,66,-1.9032246991991997],[120,302,67,-1.9012633860111237],[120,302,68,-1.89995376765728],[120,302,69,-1.899908009916544],[120,302,70,-1.9009738229215145],[120,302,71,-1.9025434888899326],[120,302,72,-1.9047434069216251],[120,302,73,-1.9068704880774021],[120,302,74,-1.9080534763634205],[120,302,75,-1.9081030450761318],[120,302,76,-1.9069050811231136],[120,302,77,-1.9045319445431232],[120,302,78,-1.901196200400591],[120,302,79,-1.8973908722400665],[120,303,64,-1.9133436381816864],[120,303,65,-1.9126954823732376],[120,303,66,-1.9110371991991997],[120,303,67,-1.9090758860111237],[120,303,68,-1.90776626765728],[120,303,69,-1.907720509916544],[120,303,70,-1.9087863229215145],[120,303,71,-1.9103559888899326],[120,303,72,-1.9125559069216251],[120,303,73,-1.9146829880774021],[120,303,74,-1.9158659763634205],[120,303,75,-1.9159155450761318],[120,303,76,-1.9147175811231136],[120,303,77,-1.9123444445431232],[120,303,78,-1.909008700400591],[120,303,79,-1.9052033722400665],[120,304,64,-1.9211561381816864],[120,304,65,-1.9205079823732376],[120,304,66,-1.9188496991991997],[120,304,67,-1.9168883860111237],[120,304,68,-1.91557876765728],[120,304,69,-1.915533009916544],[120,304,70,-1.9165988229215145],[120,304,71,-1.9181684888899326],[120,304,72,-1.9203684069216251],[120,304,73,-1.9224954880774021],[120,304,74,-1.9236784763634205],[120,304,75,-1.9237280450761318],[120,304,76,-1.9225300811231136],[120,304,77,-1.9201569445431232],[120,304,78,-1.916821200400591],[120,304,79,-1.9130158722400665],[120,305,64,-1.9289686381816864],[120,305,65,-1.9283204823732376],[120,305,66,-1.9266621991991997],[120,305,67,-1.9247008860111237],[120,305,68,-1.92339126765728],[120,305,69,-1.923345509916544],[120,305,70,-1.9244113229215145],[120,305,71,-1.9259809888899326],[120,305,72,-1.9281809069216251],[120,305,73,-1.9303079880774021],[120,305,74,-1.9314909763634205],[120,305,75,-1.9315405450761318],[120,305,76,-1.9303425811231136],[120,305,77,-1.9279694445431232],[120,305,78,-1.924633700400591],[120,305,79,-1.9208283722400665],[120,306,64,-1.9367811381816864],[120,306,65,-1.9361329823732376],[120,306,66,-1.9344746991991997],[120,306,67,-1.9325133860111237],[120,306,68,-1.93120376765728],[120,306,69,-1.931158009916544],[120,306,70,-1.9322238229215145],[120,306,71,-1.9337934888899326],[120,306,72,-1.9359934069216251],[120,306,73,-1.9381204880774021],[120,306,74,-1.9393034763634205],[120,306,75,-1.9393530450761318],[120,306,76,-1.9381550811231136],[120,306,77,-1.9357819445431232],[120,306,78,-1.932446200400591],[120,306,79,-1.9286408722400665],[120,307,64,-1.9445936381816864],[120,307,65,-1.9439454823732376],[120,307,66,-1.9422871991991997],[120,307,67,-1.9403258860111237],[120,307,68,-1.93901626765728],[120,307,69,-1.938970509916544],[120,307,70,-1.9400363229215145],[120,307,71,-1.9416059888899326],[120,307,72,-1.9438059069216251],[120,307,73,-1.9459329880774021],[120,307,74,-1.9471159763634205],[120,307,75,-1.9471655450761318],[120,307,76,-1.9459675811231136],[120,307,77,-1.9435944445431232],[120,307,78,-1.940258700400591],[120,307,79,-1.9364533722400665],[120,308,64,-1.9524061381816864],[120,308,65,-1.9517579823732376],[120,308,66,-1.9500996991991997],[120,308,67,-1.9481383860111237],[120,308,68,-1.94682876765728],[120,308,69,-1.946783009916544],[120,308,70,-1.9478488229215145],[120,308,71,-1.9494184888899326],[120,308,72,-1.9516184069216251],[120,308,73,-1.9537454880774021],[120,308,74,-1.9549284763634205],[120,308,75,-1.9549780450761318],[120,308,76,-1.9537800811231136],[120,308,77,-1.9514069445431232],[120,308,78,-1.948071200400591],[120,308,79,-1.9442658722400665],[120,309,64,-1.9602186381816864],[120,309,65,-1.9595704823732376],[120,309,66,-1.9579121991991997],[120,309,67,-1.9559508860111237],[120,309,68,-1.95464126765728],[120,309,69,-1.954595509916544],[120,309,70,-1.9556613229215145],[120,309,71,-1.9572309888899326],[120,309,72,-1.9594309069216251],[120,309,73,-1.9615579880774021],[120,309,74,-1.9627409763634205],[120,309,75,-1.9627905450761318],[120,309,76,-1.9615925811231136],[120,309,77,-1.9592194445431232],[120,309,78,-1.955883700400591],[120,309,79,-1.9520783722400665],[120,310,64,-1.9680311381816864],[120,310,65,-1.9673829823732376],[120,310,66,-1.9657246991991997],[120,310,67,-1.9637633860111237],[120,310,68,-1.96245376765728],[120,310,69,-1.962408009916544],[120,310,70,-1.9634738229215145],[120,310,71,-1.9650434888899326],[120,310,72,-1.9672434069216251],[120,310,73,-1.9693704880774021],[120,310,74,-1.9705534763634205],[120,310,75,-1.9706030450761318],[120,310,76,-1.9694050811231136],[120,310,77,-1.9670319445431232],[120,310,78,-1.963696200400591],[120,310,79,-1.9598908722400665],[120,311,64,-1.9758436381816864],[120,311,65,-1.9751954823732376],[120,311,66,-1.9735371991991997],[120,311,67,-1.9715758860111237],[120,311,68,-1.97026626765728],[120,311,69,-1.970220509916544],[120,311,70,-1.9712863229215145],[120,311,71,-1.9728559888899326],[120,311,72,-1.9750559069216251],[120,311,73,-1.9771829880774021],[120,311,74,-1.9783659763634205],[120,311,75,-1.9784155450761318],[120,311,76,-1.9772175811231136],[120,311,77,-1.9748444445431232],[120,311,78,-1.971508700400591],[120,311,79,-1.9677033722400665],[120,312,64,-1.9836561381816864],[120,312,65,-1.9830079823732376],[120,312,66,-1.9813496991991997],[120,312,67,-1.9793883860111237],[120,312,68,-1.97807876765728],[120,312,69,-1.978033009916544],[120,312,70,-1.9790988229215145],[120,312,71,-1.9806684888899326],[120,312,72,-1.9828684069216251],[120,312,73,-1.9849954880774021],[120,312,74,-1.9861784763634205],[120,312,75,-1.9862280450761318],[120,312,76,-1.9850300811231136],[120,312,77,-1.9826569445431232],[120,312,78,-1.979321200400591],[120,312,79,-1.9755158722400665],[120,313,64,-1.9914686381816864],[120,313,65,-1.9908204823732376],[120,313,66,-1.9891621991991997],[120,313,67,-1.9872008860111237],[120,313,68,-1.98589126765728],[120,313,69,-1.985845509916544],[120,313,70,-1.9869113229215145],[120,313,71,-1.9884809888899326],[120,313,72,-1.9906809069216251],[120,313,73,-1.9928079880774021],[120,313,74,-1.9939909763634205],[120,313,75,-1.9940405450761318],[120,313,76,-1.9928425811231136],[120,313,77,-1.9904694445431232],[120,313,78,-1.987133700400591],[120,313,79,-1.9833283722400665],[120,314,64,-1.9992811381816864],[120,314,65,-1.9986329823732376],[120,314,66,-1.9969746991991997],[120,314,67,-1.9950133860111237],[120,314,68,-1.99370376765728],[120,314,69,-1.993658009916544],[120,314,70,-1.9947238229215145],[120,314,71,-1.9962934888899326],[120,314,72,-1.9984934069216251],[120,314,73,-2.000620488077402],[120,314,74,-2.0018034763634205],[120,314,75,-2.001853045076132],[120,314,76,-2.0006550811231136],[120,314,77,-1.9982819445431232],[120,314,78,-1.994946200400591],[120,314,79,-1.9911408722400665],[120,315,64,-2.0070936381816864],[120,315,65,-2.0064454823732376],[120,315,66,-2.0047871991991997],[120,315,67,-2.0028258860111237],[120,315,68,-2.00151626765728],[120,315,69,-2.001470509916544],[120,315,70,-2.0025363229215145],[120,315,71,-2.0041059888899326],[120,315,72,-2.006305906921625],[120,315,73,-2.008432988077402],[120,315,74,-2.0096159763634205],[120,315,75,-2.009665545076132],[120,315,76,-2.0084675811231136],[120,315,77,-2.0060944445431232],[120,315,78,-2.002758700400591],[120,315,79,-1.9989533722400665],[120,316,64,-2.0149061381816864],[120,316,65,-2.0142579823732376],[120,316,66,-2.0125996991991997],[120,316,67,-2.0106383860111237],[120,316,68,-2.00932876765728],[120,316,69,-2.009283009916544],[120,316,70,-2.0103488229215145],[120,316,71,-2.0119184888899326],[120,316,72,-2.014118406921625],[120,316,73,-2.016245488077402],[120,316,74,-2.0174284763634205],[120,316,75,-2.017478045076132],[120,316,76,-2.0162800811231136],[120,316,77,-2.0139069445431232],[120,316,78,-2.010571200400591],[120,316,79,-2.0067658722400665],[120,317,64,-2.0227186381816864],[120,317,65,-2.0220704823732376],[120,317,66,-2.0204121991991997],[120,317,67,-2.0184508860111237],[120,317,68,-2.01714126765728],[120,317,69,-2.017095509916544],[120,317,70,-2.0181613229215145],[120,317,71,-2.0197309888899326],[120,317,72,-2.021930906921625],[120,317,73,-2.024057988077402],[120,317,74,-2.0252409763634205],[120,317,75,-2.025290545076132],[120,317,76,-2.0240925811231136],[120,317,77,-2.0217194445431232],[120,317,78,-2.018383700400591],[120,317,79,-2.0145783722400665],[120,318,64,-2.0305311381816864],[120,318,65,-2.0298829823732376],[120,318,66,-2.0282246991991997],[120,318,67,-2.0262633860111237],[120,318,68,-2.02495376765728],[120,318,69,-2.024908009916544],[120,318,70,-2.0259738229215145],[120,318,71,-2.0275434888899326],[120,318,72,-2.029743406921625],[120,318,73,-2.031870488077402],[120,318,74,-2.0330534763634205],[120,318,75,-2.033103045076132],[120,318,76,-2.0319050811231136],[120,318,77,-2.0295319445431232],[120,318,78,-2.026196200400591],[120,318,79,-2.0223908722400665],[120,319,64,-2.0383436381816864],[120,319,65,-2.0376954823732376],[120,319,66,-2.0360371991991997],[120,319,67,-2.0340758860111237],[120,319,68,-2.03276626765728],[120,319,69,-2.032720509916544],[120,319,70,-2.0337863229215145],[120,319,71,-2.0353559888899326],[120,319,72,-2.037555906921625],[120,319,73,-2.039682988077402],[120,319,74,-2.0408659763634205],[120,319,75,-2.040915545076132],[120,319,76,-2.0397175811231136],[120,319,77,-2.0373444445431232],[120,319,78,-2.034008700400591],[120,319,79,-2.0302033722400665],[121,-64,64,0.9509550034999847],[121,-64,65,0.951450988650322],[121,-64,66,0.9531027749180794],[121,-64,67,0.9549498781561852],[121,-64,68,0.9558469727635384],[121,-64,69,0.9551402740180492],[121,-64,70,0.9531095772981644],[121,-64,71,0.950612161308527],[121,-64,72,0.9478814527392387],[121,-64,73,0.9459612742066383],[121,-64,74,0.945284828543663],[121,-64,75,0.9458937607705593],[121,-64,76,0.9478439092636108],[121,-64,77,0.9508922137320042],[121,-64,78,0.9546678513288498],[121,-64,79,0.9588502161204815],[121,-63,64,0.9431425034999847],[121,-63,65,0.943638488650322],[121,-63,66,0.9452902749180794],[121,-63,67,0.9471373781561852],[121,-63,68,0.9480344727635384],[121,-63,69,0.9473277740180492],[121,-63,70,0.9452970772981644],[121,-63,71,0.942799661308527],[121,-63,72,0.9400689527392387],[121,-63,73,0.9381487742066383],[121,-63,74,0.937472328543663],[121,-63,75,0.9380812607705593],[121,-63,76,0.9400314092636108],[121,-63,77,0.9430797137320042],[121,-63,78,0.9468553513288498],[121,-63,79,0.9510377161204815],[121,-62,64,0.9353300034999847],[121,-62,65,0.935825988650322],[121,-62,66,0.9374777749180794],[121,-62,67,0.9393248781561852],[121,-62,68,0.9402219727635384],[121,-62,69,0.9395152740180492],[121,-62,70,0.9374845772981644],[121,-62,71,0.934987161308527],[121,-62,72,0.9322564527392387],[121,-62,73,0.9303362742066383],[121,-62,74,0.929659828543663],[121,-62,75,0.9302687607705593],[121,-62,76,0.9322189092636108],[121,-62,77,0.9352672137320042],[121,-62,78,0.9390428513288498],[121,-62,79,0.9432252161204815],[121,-61,64,0.9275175034999847],[121,-61,65,0.928013488650322],[121,-61,66,0.9296652749180794],[121,-61,67,0.9315123781561852],[121,-61,68,0.9324094727635384],[121,-61,69,0.9317027740180492],[121,-61,70,0.9296720772981644],[121,-61,71,0.927174661308527],[121,-61,72,0.9244439527392387],[121,-61,73,0.9225237742066383],[121,-61,74,0.921847328543663],[121,-61,75,0.9224562607705593],[121,-61,76,0.9244064092636108],[121,-61,77,0.9274547137320042],[121,-61,78,0.9312303513288498],[121,-61,79,0.9354127161204815],[121,-60,64,0.9197050034999847],[121,-60,65,0.920200988650322],[121,-60,66,0.9218527749180794],[121,-60,67,0.9236998781561852],[121,-60,68,0.9245969727635384],[121,-60,69,0.9238902740180492],[121,-60,70,0.9218595772981644],[121,-60,71,0.919362161308527],[121,-60,72,0.9166314527392387],[121,-60,73,0.9147112742066383],[121,-60,74,0.914034828543663],[121,-60,75,0.9146437607705593],[121,-60,76,0.9165939092636108],[121,-60,77,0.9196422137320042],[121,-60,78,0.9234178513288498],[121,-60,79,0.9276002161204815],[121,-59,64,0.9118925034999847],[121,-59,65,0.912388488650322],[121,-59,66,0.9140402749180794],[121,-59,67,0.9158873781561852],[121,-59,68,0.9167844727635384],[121,-59,69,0.9160777740180492],[121,-59,70,0.9140470772981644],[121,-59,71,0.911549661308527],[121,-59,72,0.9088189527392387],[121,-59,73,0.9068987742066383],[121,-59,74,0.906222328543663],[121,-59,75,0.9068312607705593],[121,-59,76,0.9087814092636108],[121,-59,77,0.9118297137320042],[121,-59,78,0.9156053513288498],[121,-59,79,0.9197877161204815],[121,-58,64,0.9040800034999847],[121,-58,65,0.904575988650322],[121,-58,66,0.9062277749180794],[121,-58,67,0.9080748781561852],[121,-58,68,0.9089719727635384],[121,-58,69,0.9082652740180492],[121,-58,70,0.9062345772981644],[121,-58,71,0.903737161308527],[121,-58,72,0.9010064527392387],[121,-58,73,0.8990862742066383],[121,-58,74,0.898409828543663],[121,-58,75,0.8990187607705593],[121,-58,76,0.9009689092636108],[121,-58,77,0.9040172137320042],[121,-58,78,0.9077928513288498],[121,-58,79,0.9119752161204815],[121,-57,64,0.8962675034999847],[121,-57,65,0.896763488650322],[121,-57,66,0.8984152749180794],[121,-57,67,0.9002623781561852],[121,-57,68,0.9011594727635384],[121,-57,69,0.9004527740180492],[121,-57,70,0.8984220772981644],[121,-57,71,0.895924661308527],[121,-57,72,0.8931939527392387],[121,-57,73,0.8912737742066383],[121,-57,74,0.890597328543663],[121,-57,75,0.8912062607705593],[121,-57,76,0.8931564092636108],[121,-57,77,0.8962047137320042],[121,-57,78,0.8999803513288498],[121,-57,79,0.9041627161204815],[121,-56,64,0.8884550034999847],[121,-56,65,0.888950988650322],[121,-56,66,0.8906027749180794],[121,-56,67,0.8924498781561852],[121,-56,68,0.8933469727635384],[121,-56,69,0.8926402740180492],[121,-56,70,0.8906095772981644],[121,-56,71,0.888112161308527],[121,-56,72,0.8853814527392387],[121,-56,73,0.8834612742066383],[121,-56,74,0.882784828543663],[121,-56,75,0.8833937607705593],[121,-56,76,0.8853439092636108],[121,-56,77,0.8883922137320042],[121,-56,78,0.8921678513288498],[121,-56,79,0.8963502161204815],[121,-55,64,0.8806425034999847],[121,-55,65,0.881138488650322],[121,-55,66,0.8827902749180794],[121,-55,67,0.8846373781561852],[121,-55,68,0.8855344727635384],[121,-55,69,0.8848277740180492],[121,-55,70,0.8827970772981644],[121,-55,71,0.880299661308527],[121,-55,72,0.8775689527392387],[121,-55,73,0.8756487742066383],[121,-55,74,0.874972328543663],[121,-55,75,0.8755812607705593],[121,-55,76,0.8775314092636108],[121,-55,77,0.8805797137320042],[121,-55,78,0.8843553513288498],[121,-55,79,0.8885377161204815],[121,-54,64,0.8728300034999847],[121,-54,65,0.873325988650322],[121,-54,66,0.8749777749180794],[121,-54,67,0.8768248781561852],[121,-54,68,0.8777219727635384],[121,-54,69,0.8770152740180492],[121,-54,70,0.8749845772981644],[121,-54,71,0.872487161308527],[121,-54,72,0.8697564527392387],[121,-54,73,0.8678362742066383],[121,-54,74,0.867159828543663],[121,-54,75,0.8677687607705593],[121,-54,76,0.8697189092636108],[121,-54,77,0.8727672137320042],[121,-54,78,0.8765428513288498],[121,-54,79,0.8807252161204815],[121,-53,64,0.8650175034999847],[121,-53,65,0.865513488650322],[121,-53,66,0.8671652749180794],[121,-53,67,0.8690123781561852],[121,-53,68,0.8699094727635384],[121,-53,69,0.8692027740180492],[121,-53,70,0.8671720772981644],[121,-53,71,0.864674661308527],[121,-53,72,0.8619439527392387],[121,-53,73,0.8600237742066383],[121,-53,74,0.859347328543663],[121,-53,75,0.8599562607705593],[121,-53,76,0.8619064092636108],[121,-53,77,0.8649547137320042],[121,-53,78,0.8687303513288498],[121,-53,79,0.8729127161204815],[121,-52,64,0.8572050034999847],[121,-52,65,0.857700988650322],[121,-52,66,0.8593527749180794],[121,-52,67,0.8611998781561852],[121,-52,68,0.8620969727635384],[121,-52,69,0.8613902740180492],[121,-52,70,0.8593595772981644],[121,-52,71,0.856862161308527],[121,-52,72,0.8541314527392387],[121,-52,73,0.8522112742066383],[121,-52,74,0.851534828543663],[121,-52,75,0.8521437607705593],[121,-52,76,0.8540939092636108],[121,-52,77,0.8571422137320042],[121,-52,78,0.8609178513288498],[121,-52,79,0.8651002161204815],[121,-51,64,0.8493925034999847],[121,-51,65,0.849888488650322],[121,-51,66,0.8515402749180794],[121,-51,67,0.8533873781561852],[121,-51,68,0.8542844727635384],[121,-51,69,0.8535777740180492],[121,-51,70,0.8515470772981644],[121,-51,71,0.849049661308527],[121,-51,72,0.8463189527392387],[121,-51,73,0.8443987742066383],[121,-51,74,0.843722328543663],[121,-51,75,0.8443312607705593],[121,-51,76,0.8462814092636108],[121,-51,77,0.8493297137320042],[121,-51,78,0.8531053513288498],[121,-51,79,0.8572877161204815],[121,-50,64,0.8415800034999847],[121,-50,65,0.842075988650322],[121,-50,66,0.8437277749180794],[121,-50,67,0.8455748781561852],[121,-50,68,0.8464719727635384],[121,-50,69,0.8457652740180492],[121,-50,70,0.8437345772981644],[121,-50,71,0.841237161308527],[121,-50,72,0.8385064527392387],[121,-50,73,0.8365862742066383],[121,-50,74,0.835909828543663],[121,-50,75,0.8365187607705593],[121,-50,76,0.8384689092636108],[121,-50,77,0.8415172137320042],[121,-50,78,0.8452928513288498],[121,-50,79,0.8494752161204815],[121,-49,64,0.8337675034999847],[121,-49,65,0.834263488650322],[121,-49,66,0.8359152749180794],[121,-49,67,0.8377623781561852],[121,-49,68,0.8386594727635384],[121,-49,69,0.8379527740180492],[121,-49,70,0.8359220772981644],[121,-49,71,0.833424661308527],[121,-49,72,0.8306939527392387],[121,-49,73,0.8287737742066383],[121,-49,74,0.828097328543663],[121,-49,75,0.8287062607705593],[121,-49,76,0.8306564092636108],[121,-49,77,0.8337047137320042],[121,-49,78,0.8374803513288498],[121,-49,79,0.8416627161204815],[121,-48,64,0.8259550034999847],[121,-48,65,0.826450988650322],[121,-48,66,0.8281027749180794],[121,-48,67,0.8299498781561852],[121,-48,68,0.8308469727635384],[121,-48,69,0.8301402740180492],[121,-48,70,0.8281095772981644],[121,-48,71,0.825612161308527],[121,-48,72,0.8228814527392387],[121,-48,73,0.8209612742066383],[121,-48,74,0.820284828543663],[121,-48,75,0.8208937607705593],[121,-48,76,0.8228439092636108],[121,-48,77,0.8258922137320042],[121,-48,78,0.8296678513288498],[121,-48,79,0.8338502161204815],[121,-47,64,0.8181425034999847],[121,-47,65,0.818638488650322],[121,-47,66,0.8202902749180794],[121,-47,67,0.8221373781561852],[121,-47,68,0.8230344727635384],[121,-47,69,0.8223277740180492],[121,-47,70,0.8202970772981644],[121,-47,71,0.817799661308527],[121,-47,72,0.8150689527392387],[121,-47,73,0.8131487742066383],[121,-47,74,0.812472328543663],[121,-47,75,0.8130812607705593],[121,-47,76,0.8150314092636108],[121,-47,77,0.8180797137320042],[121,-47,78,0.8218553513288498],[121,-47,79,0.8260377161204815],[121,-46,64,0.8103300034999847],[121,-46,65,0.810825988650322],[121,-46,66,0.8124777749180794],[121,-46,67,0.8143248781561852],[121,-46,68,0.8152219727635384],[121,-46,69,0.8145152740180492],[121,-46,70,0.8124845772981644],[121,-46,71,0.809987161308527],[121,-46,72,0.8072564527392387],[121,-46,73,0.8053362742066383],[121,-46,74,0.804659828543663],[121,-46,75,0.8052687607705593],[121,-46,76,0.8072189092636108],[121,-46,77,0.8102672137320042],[121,-46,78,0.8140428513288498],[121,-46,79,0.8182252161204815],[121,-45,64,0.8025175034999847],[121,-45,65,0.803013488650322],[121,-45,66,0.8046652749180794],[121,-45,67,0.8065123781561852],[121,-45,68,0.8074094727635384],[121,-45,69,0.8067027740180492],[121,-45,70,0.8046720772981644],[121,-45,71,0.802174661308527],[121,-45,72,0.7994439527392387],[121,-45,73,0.7975237742066383],[121,-45,74,0.796847328543663],[121,-45,75,0.7974562607705593],[121,-45,76,0.7994064092636108],[121,-45,77,0.8024547137320042],[121,-45,78,0.8062303513288498],[121,-45,79,0.8104127161204815],[121,-44,64,0.7947050034999847],[121,-44,65,0.795200988650322],[121,-44,66,0.7968527749180794],[121,-44,67,0.7986998781561852],[121,-44,68,0.7995969727635384],[121,-44,69,0.7988902740180492],[121,-44,70,0.7968595772981644],[121,-44,71,0.794362161308527],[121,-44,72,0.7916314527392387],[121,-44,73,0.7897112742066383],[121,-44,74,0.789034828543663],[121,-44,75,0.7896437607705593],[121,-44,76,0.7915939092636108],[121,-44,77,0.7946422137320042],[121,-44,78,0.7984178513288498],[121,-44,79,0.8026002161204815],[121,-43,64,0.7868925034999847],[121,-43,65,0.787388488650322],[121,-43,66,0.7890402749180794],[121,-43,67,0.7908873781561852],[121,-43,68,0.7917844727635384],[121,-43,69,0.7910777740180492],[121,-43,70,0.7890470772981644],[121,-43,71,0.786549661308527],[121,-43,72,0.7838189527392387],[121,-43,73,0.7818987742066383],[121,-43,74,0.781222328543663],[121,-43,75,0.7818312607705593],[121,-43,76,0.7837814092636108],[121,-43,77,0.7868297137320042],[121,-43,78,0.7906053513288498],[121,-43,79,0.7947877161204815],[121,-42,64,0.7790800034999847],[121,-42,65,0.779575988650322],[121,-42,66,0.7812277749180794],[121,-42,67,0.7830748781561852],[121,-42,68,0.7839719727635384],[121,-42,69,0.7832652740180492],[121,-42,70,0.7812345772981644],[121,-42,71,0.778737161308527],[121,-42,72,0.7760064527392387],[121,-42,73,0.7740862742066383],[121,-42,74,0.773409828543663],[121,-42,75,0.7740187607705593],[121,-42,76,0.7759689092636108],[121,-42,77,0.7790172137320042],[121,-42,78,0.7827928513288498],[121,-42,79,0.7869752161204815],[121,-41,64,0.7712675034999847],[121,-41,65,0.771763488650322],[121,-41,66,0.7734152749180794],[121,-41,67,0.7752623781561852],[121,-41,68,0.7761594727635384],[121,-41,69,0.7754527740180492],[121,-41,70,0.7734220772981644],[121,-41,71,0.770924661308527],[121,-41,72,0.7681939527392387],[121,-41,73,0.7662737742066383],[121,-41,74,0.765597328543663],[121,-41,75,0.7662062607705593],[121,-41,76,0.7681564092636108],[121,-41,77,0.7712047137320042],[121,-41,78,0.7749803513288498],[121,-41,79,0.7791627161204815],[121,-40,64,0.7634550034999847],[121,-40,65,0.763950988650322],[121,-40,66,0.7656027749180794],[121,-40,67,0.7674498781561852],[121,-40,68,0.7683469727635384],[121,-40,69,0.7676402740180492],[121,-40,70,0.7656095772981644],[121,-40,71,0.763112161308527],[121,-40,72,0.7603814527392387],[121,-40,73,0.7584612742066383],[121,-40,74,0.757784828543663],[121,-40,75,0.7583937607705593],[121,-40,76,0.7603439092636108],[121,-40,77,0.7633922137320042],[121,-40,78,0.7671678513288498],[121,-40,79,0.7713502161204815],[121,-39,64,0.7556425034999847],[121,-39,65,0.756138488650322],[121,-39,66,0.7577902749180794],[121,-39,67,0.7596373781561852],[121,-39,68,0.7605344727635384],[121,-39,69,0.7598277740180492],[121,-39,70,0.7577970772981644],[121,-39,71,0.755299661308527],[121,-39,72,0.7525689527392387],[121,-39,73,0.7506487742066383],[121,-39,74,0.749972328543663],[121,-39,75,0.7505812607705593],[121,-39,76,0.7525314092636108],[121,-39,77,0.7555797137320042],[121,-39,78,0.7593553513288498],[121,-39,79,0.7635377161204815],[121,-38,64,0.7478300034999847],[121,-38,65,0.748325988650322],[121,-38,66,0.7499777749180794],[121,-38,67,0.7518248781561852],[121,-38,68,0.7527219727635384],[121,-38,69,0.7520152740180492],[121,-38,70,0.7499845772981644],[121,-38,71,0.747487161308527],[121,-38,72,0.7447564527392387],[121,-38,73,0.7428362742066383],[121,-38,74,0.742159828543663],[121,-38,75,0.7427687607705593],[121,-38,76,0.7447189092636108],[121,-38,77,0.7477672137320042],[121,-38,78,0.7515428513288498],[121,-38,79,0.7557252161204815],[121,-37,64,0.7400175034999847],[121,-37,65,0.740513488650322],[121,-37,66,0.7421652749180794],[121,-37,67,0.7440123781561852],[121,-37,68,0.7449094727635384],[121,-37,69,0.7442027740180492],[121,-37,70,0.7421720772981644],[121,-37,71,0.739674661308527],[121,-37,72,0.7369439527392387],[121,-37,73,0.7350237742066383],[121,-37,74,0.734347328543663],[121,-37,75,0.7349562607705593],[121,-37,76,0.7369064092636108],[121,-37,77,0.7399547137320042],[121,-37,78,0.7437303513288498],[121,-37,79,0.7479127161204815],[121,-36,64,0.7322050034999847],[121,-36,65,0.732700988650322],[121,-36,66,0.7343527749180794],[121,-36,67,0.7361998781561852],[121,-36,68,0.7370969727635384],[121,-36,69,0.7363902740180492],[121,-36,70,0.7343595772981644],[121,-36,71,0.731862161308527],[121,-36,72,0.7291314527392387],[121,-36,73,0.7272112742066383],[121,-36,74,0.726534828543663],[121,-36,75,0.7271437607705593],[121,-36,76,0.7290939092636108],[121,-36,77,0.7321422137320042],[121,-36,78,0.7359178513288498],[121,-36,79,0.7401002161204815],[121,-35,64,0.7243925034999847],[121,-35,65,0.724888488650322],[121,-35,66,0.7265402749180794],[121,-35,67,0.7283873781561852],[121,-35,68,0.7292844727635384],[121,-35,69,0.7285777740180492],[121,-35,70,0.7265470772981644],[121,-35,71,0.724049661308527],[121,-35,72,0.7213189527392387],[121,-35,73,0.7193987742066383],[121,-35,74,0.718722328543663],[121,-35,75,0.7193312607705593],[121,-35,76,0.7212814092636108],[121,-35,77,0.7243297137320042],[121,-35,78,0.7281053513288498],[121,-35,79,0.7322877161204815],[121,-34,64,0.7165800034999847],[121,-34,65,0.717075988650322],[121,-34,66,0.7187277749180794],[121,-34,67,0.7205748781561852],[121,-34,68,0.7214719727635384],[121,-34,69,0.7207652740180492],[121,-34,70,0.7187345772981644],[121,-34,71,0.716237161308527],[121,-34,72,0.7135064527392387],[121,-34,73,0.7115862742066383],[121,-34,74,0.710909828543663],[121,-34,75,0.7115187607705593],[121,-34,76,0.7134689092636108],[121,-34,77,0.7165172137320042],[121,-34,78,0.7202928513288498],[121,-34,79,0.7244752161204815],[121,-33,64,0.7087675034999847],[121,-33,65,0.709263488650322],[121,-33,66,0.7109152749180794],[121,-33,67,0.7127623781561852],[121,-33,68,0.7136594727635384],[121,-33,69,0.7129527740180492],[121,-33,70,0.7109220772981644],[121,-33,71,0.708424661308527],[121,-33,72,0.7056939527392387],[121,-33,73,0.7037737742066383],[121,-33,74,0.703097328543663],[121,-33,75,0.7037062607705593],[121,-33,76,0.7056564092636108],[121,-33,77,0.7087047137320042],[121,-33,78,0.7124803513288498],[121,-33,79,0.7166627161204815],[121,-32,64,0.7009550034999847],[121,-32,65,0.701450988650322],[121,-32,66,0.7031027749180794],[121,-32,67,0.7049498781561852],[121,-32,68,0.7058469727635384],[121,-32,69,0.7051402740180492],[121,-32,70,0.7031095772981644],[121,-32,71,0.700612161308527],[121,-32,72,0.6978814527392387],[121,-32,73,0.6959612742066383],[121,-32,74,0.695284828543663],[121,-32,75,0.6958937607705593],[121,-32,76,0.6978439092636108],[121,-32,77,0.7008922137320042],[121,-32,78,0.7046678513288498],[121,-32,79,0.7088502161204815],[121,-31,64,0.6931425034999847],[121,-31,65,0.693638488650322],[121,-31,66,0.6952902749180794],[121,-31,67,0.6971373781561852],[121,-31,68,0.6980344727635384],[121,-31,69,0.6973277740180492],[121,-31,70,0.6952970772981644],[121,-31,71,0.692799661308527],[121,-31,72,0.6900689527392387],[121,-31,73,0.6881487742066383],[121,-31,74,0.687472328543663],[121,-31,75,0.6880812607705593],[121,-31,76,0.6900314092636108],[121,-31,77,0.6930797137320042],[121,-31,78,0.6968553513288498],[121,-31,79,0.7010377161204815],[121,-30,64,0.6853300034999847],[121,-30,65,0.685825988650322],[121,-30,66,0.6874777749180794],[121,-30,67,0.6893248781561852],[121,-30,68,0.6902219727635384],[121,-30,69,0.6895152740180492],[121,-30,70,0.6874845772981644],[121,-30,71,0.684987161308527],[121,-30,72,0.6822564527392387],[121,-30,73,0.6803362742066383],[121,-30,74,0.679659828543663],[121,-30,75,0.6802687607705593],[121,-30,76,0.6822189092636108],[121,-30,77,0.6852672137320042],[121,-30,78,0.6890428513288498],[121,-30,79,0.6932252161204815],[121,-29,64,0.6775175034999847],[121,-29,65,0.678013488650322],[121,-29,66,0.6796652749180794],[121,-29,67,0.6815123781561852],[121,-29,68,0.6824094727635384],[121,-29,69,0.6817027740180492],[121,-29,70,0.6796720772981644],[121,-29,71,0.677174661308527],[121,-29,72,0.6744439527392387],[121,-29,73,0.6725237742066383],[121,-29,74,0.671847328543663],[121,-29,75,0.6724562607705593],[121,-29,76,0.6744064092636108],[121,-29,77,0.6774547137320042],[121,-29,78,0.6812303513288498],[121,-29,79,0.6854127161204815],[121,-28,64,0.6697050034999847],[121,-28,65,0.670200988650322],[121,-28,66,0.6718527749180794],[121,-28,67,0.6736998781561852],[121,-28,68,0.6745969727635384],[121,-28,69,0.6738902740180492],[121,-28,70,0.6718595772981644],[121,-28,71,0.669362161308527],[121,-28,72,0.6666314527392387],[121,-28,73,0.6647112742066383],[121,-28,74,0.664034828543663],[121,-28,75,0.6646437607705593],[121,-28,76,0.6665939092636108],[121,-28,77,0.6696422137320042],[121,-28,78,0.6734178513288498],[121,-28,79,0.6776002161204815],[121,-27,64,0.6618925034999847],[121,-27,65,0.662388488650322],[121,-27,66,0.6640402749180794],[121,-27,67,0.6658873781561852],[121,-27,68,0.6667844727635384],[121,-27,69,0.6660777740180492],[121,-27,70,0.6640470772981644],[121,-27,71,0.661549661308527],[121,-27,72,0.6588189527392387],[121,-27,73,0.6568987742066383],[121,-27,74,0.656222328543663],[121,-27,75,0.6568312607705593],[121,-27,76,0.6587814092636108],[121,-27,77,0.6618297137320042],[121,-27,78,0.6656053513288498],[121,-27,79,0.6697877161204815],[121,-26,64,0.6540800034999847],[121,-26,65,0.654575988650322],[121,-26,66,0.6562277749180794],[121,-26,67,0.6580748781561852],[121,-26,68,0.6589719727635384],[121,-26,69,0.6582652740180492],[121,-26,70,0.6562345772981644],[121,-26,71,0.653737161308527],[121,-26,72,0.6510064527392387],[121,-26,73,0.6490862742066383],[121,-26,74,0.648409828543663],[121,-26,75,0.6490187607705593],[121,-26,76,0.6509689092636108],[121,-26,77,0.6540172137320042],[121,-26,78,0.6577928513288498],[121,-26,79,0.6619752161204815],[121,-25,64,0.6462675034999847],[121,-25,65,0.646763488650322],[121,-25,66,0.6484152749180794],[121,-25,67,0.6502623781561852],[121,-25,68,0.6511594727635384],[121,-25,69,0.6504527740180492],[121,-25,70,0.6484220772981644],[121,-25,71,0.645924661308527],[121,-25,72,0.6431939527392387],[121,-25,73,0.6412737742066383],[121,-25,74,0.640597328543663],[121,-25,75,0.6412062607705593],[121,-25,76,0.6431564092636108],[121,-25,77,0.6462047137320042],[121,-25,78,0.6499803513288498],[121,-25,79,0.6541627161204815],[121,-24,64,0.6384550034999847],[121,-24,65,0.638950988650322],[121,-24,66,0.6406027749180794],[121,-24,67,0.6424498781561852],[121,-24,68,0.6433469727635384],[121,-24,69,0.6426402740180492],[121,-24,70,0.6406095772981644],[121,-24,71,0.638112161308527],[121,-24,72,0.6353814527392387],[121,-24,73,0.6334612742066383],[121,-24,74,0.632784828543663],[121,-24,75,0.6333937607705593],[121,-24,76,0.6353439092636108],[121,-24,77,0.6383922137320042],[121,-24,78,0.6421678513288498],[121,-24,79,0.6463502161204815],[121,-23,64,0.6306425034999847],[121,-23,65,0.631138488650322],[121,-23,66,0.6327902749180794],[121,-23,67,0.6346373781561852],[121,-23,68,0.6355344727635384],[121,-23,69,0.6348277740180492],[121,-23,70,0.6327970772981644],[121,-23,71,0.630299661308527],[121,-23,72,0.6275689527392387],[121,-23,73,0.6256487742066383],[121,-23,74,0.624972328543663],[121,-23,75,0.6255812607705593],[121,-23,76,0.6275314092636108],[121,-23,77,0.6305797137320042],[121,-23,78,0.6343553513288498],[121,-23,79,0.6385377161204815],[121,-22,64,0.6228300034999847],[121,-22,65,0.623325988650322],[121,-22,66,0.6249777749180794],[121,-22,67,0.6268248781561852],[121,-22,68,0.6277219727635384],[121,-22,69,0.6270152740180492],[121,-22,70,0.6249845772981644],[121,-22,71,0.622487161308527],[121,-22,72,0.6197564527392387],[121,-22,73,0.6178362742066383],[121,-22,74,0.617159828543663],[121,-22,75,0.6177687607705593],[121,-22,76,0.6197189092636108],[121,-22,77,0.6227672137320042],[121,-22,78,0.6265428513288498],[121,-22,79,0.6307252161204815],[121,-21,64,0.6150175034999847],[121,-21,65,0.615513488650322],[121,-21,66,0.6171652749180794],[121,-21,67,0.6190123781561852],[121,-21,68,0.6199094727635384],[121,-21,69,0.6192027740180492],[121,-21,70,0.6171720772981644],[121,-21,71,0.614674661308527],[121,-21,72,0.6119439527392387],[121,-21,73,0.6100237742066383],[121,-21,74,0.609347328543663],[121,-21,75,0.6099562607705593],[121,-21,76,0.6119064092636108],[121,-21,77,0.6149547137320042],[121,-21,78,0.6187303513288498],[121,-21,79,0.6229127161204815],[121,-20,64,0.6072050034999847],[121,-20,65,0.607700988650322],[121,-20,66,0.6093527749180794],[121,-20,67,0.6111998781561852],[121,-20,68,0.6120969727635384],[121,-20,69,0.6113902740180492],[121,-20,70,0.6093595772981644],[121,-20,71,0.606862161308527],[121,-20,72,0.6041314527392387],[121,-20,73,0.6022112742066383],[121,-20,74,0.601534828543663],[121,-20,75,0.6021437607705593],[121,-20,76,0.6040939092636108],[121,-20,77,0.6071422137320042],[121,-20,78,0.6109178513288498],[121,-20,79,0.6151002161204815],[121,-19,64,0.5993925034999847],[121,-19,65,0.599888488650322],[121,-19,66,0.6015402749180794],[121,-19,67,0.6033873781561852],[121,-19,68,0.6042844727635384],[121,-19,69,0.6035777740180492],[121,-19,70,0.6015470772981644],[121,-19,71,0.599049661308527],[121,-19,72,0.5963189527392387],[121,-19,73,0.5943987742066383],[121,-19,74,0.593722328543663],[121,-19,75,0.5943312607705593],[121,-19,76,0.5962814092636108],[121,-19,77,0.5993297137320042],[121,-19,78,0.6031053513288498],[121,-19,79,0.6072877161204815],[121,-18,64,0.5915800034999847],[121,-18,65,0.592075988650322],[121,-18,66,0.5937277749180794],[121,-18,67,0.5955748781561852],[121,-18,68,0.5964719727635384],[121,-18,69,0.5957652740180492],[121,-18,70,0.5937345772981644],[121,-18,71,0.591237161308527],[121,-18,72,0.5885064527392387],[121,-18,73,0.5865862742066383],[121,-18,74,0.585909828543663],[121,-18,75,0.5865187607705593],[121,-18,76,0.5884689092636108],[121,-18,77,0.5915172137320042],[121,-18,78,0.5952928513288498],[121,-18,79,0.5994752161204815],[121,-17,64,0.5837675034999847],[121,-17,65,0.584263488650322],[121,-17,66,0.5859152749180794],[121,-17,67,0.5877623781561852],[121,-17,68,0.5886594727635384],[121,-17,69,0.5879527740180492],[121,-17,70,0.5859220772981644],[121,-17,71,0.583424661308527],[121,-17,72,0.5806939527392387],[121,-17,73,0.5787737742066383],[121,-17,74,0.578097328543663],[121,-17,75,0.5787062607705593],[121,-17,76,0.5806564092636108],[121,-17,77,0.5837047137320042],[121,-17,78,0.5874803513288498],[121,-17,79,0.5916627161204815],[121,-16,64,0.5759550034999847],[121,-16,65,0.576450988650322],[121,-16,66,0.5781027749180794],[121,-16,67,0.5799498781561852],[121,-16,68,0.5808469727635384],[121,-16,69,0.5801402740180492],[121,-16,70,0.5781095772981644],[121,-16,71,0.575612161308527],[121,-16,72,0.5728814527392387],[121,-16,73,0.5709612742066383],[121,-16,74,0.570284828543663],[121,-16,75,0.5708937607705593],[121,-16,76,0.5728439092636108],[121,-16,77,0.5758922137320042],[121,-16,78,0.5796678513288498],[121,-16,79,0.5838502161204815],[121,-15,64,0.5681425034999847],[121,-15,65,0.568638488650322],[121,-15,66,0.5702902749180794],[121,-15,67,0.5721373781561852],[121,-15,68,0.5730344727635384],[121,-15,69,0.5723277740180492],[121,-15,70,0.5702970772981644],[121,-15,71,0.567799661308527],[121,-15,72,0.5650689527392387],[121,-15,73,0.5631487742066383],[121,-15,74,0.562472328543663],[121,-15,75,0.5630812607705593],[121,-15,76,0.5650314092636108],[121,-15,77,0.5680797137320042],[121,-15,78,0.5718553513288498],[121,-15,79,0.5760377161204815],[121,-14,64,0.5603300034999847],[121,-14,65,0.560825988650322],[121,-14,66,0.5624777749180794],[121,-14,67,0.5643248781561852],[121,-14,68,0.5652219727635384],[121,-14,69,0.5645152740180492],[121,-14,70,0.5624845772981644],[121,-14,71,0.559987161308527],[121,-14,72,0.5572564527392387],[121,-14,73,0.5553362742066383],[121,-14,74,0.554659828543663],[121,-14,75,0.5552687607705593],[121,-14,76,0.5572189092636108],[121,-14,77,0.5602672137320042],[121,-14,78,0.5640428513288498],[121,-14,79,0.5682252161204815],[121,-13,64,0.5525175034999847],[121,-13,65,0.553013488650322],[121,-13,66,0.5546652749180794],[121,-13,67,0.5565123781561852],[121,-13,68,0.5574094727635384],[121,-13,69,0.5567027740180492],[121,-13,70,0.5546720772981644],[121,-13,71,0.552174661308527],[121,-13,72,0.5494439527392387],[121,-13,73,0.5475237742066383],[121,-13,74,0.546847328543663],[121,-13,75,0.5474562607705593],[121,-13,76,0.5494064092636108],[121,-13,77,0.5524547137320042],[121,-13,78,0.5562303513288498],[121,-13,79,0.5604127161204815],[121,-12,64,0.5447050034999847],[121,-12,65,0.545200988650322],[121,-12,66,0.5468527749180794],[121,-12,67,0.5486998781561852],[121,-12,68,0.5495969727635384],[121,-12,69,0.5488902740180492],[121,-12,70,0.5468595772981644],[121,-12,71,0.544362161308527],[121,-12,72,0.5416314527392387],[121,-12,73,0.5397112742066383],[121,-12,74,0.539034828543663],[121,-12,75,0.5396437607705593],[121,-12,76,0.5415939092636108],[121,-12,77,0.5446422137320042],[121,-12,78,0.5484178513288498],[121,-12,79,0.5526002161204815],[121,-11,64,0.5368925034999847],[121,-11,65,0.537388488650322],[121,-11,66,0.5390402749180794],[121,-11,67,0.5408873781561852],[121,-11,68,0.5417844727635384],[121,-11,69,0.5410777740180492],[121,-11,70,0.5390470772981644],[121,-11,71,0.536549661308527],[121,-11,72,0.5338189527392387],[121,-11,73,0.5318987742066383],[121,-11,74,0.531222328543663],[121,-11,75,0.5318312607705593],[121,-11,76,0.5337814092636108],[121,-11,77,0.5368297137320042],[121,-11,78,0.5406053513288498],[121,-11,79,0.5447877161204815],[121,-10,64,0.5290800034999847],[121,-10,65,0.529575988650322],[121,-10,66,0.5312277749180794],[121,-10,67,0.5330748781561852],[121,-10,68,0.5339719727635384],[121,-10,69,0.5332652740180492],[121,-10,70,0.5312345772981644],[121,-10,71,0.528737161308527],[121,-10,72,0.5260064527392387],[121,-10,73,0.5240862742066383],[121,-10,74,0.523409828543663],[121,-10,75,0.5240187607705593],[121,-10,76,0.5259689092636108],[121,-10,77,0.5290172137320042],[121,-10,78,0.5327928513288498],[121,-10,79,0.5369752161204815],[121,-9,64,0.5212675034999847],[121,-9,65,0.521763488650322],[121,-9,66,0.5234152749180794],[121,-9,67,0.5252623781561852],[121,-9,68,0.5261594727635384],[121,-9,69,0.5254527740180492],[121,-9,70,0.5234220772981644],[121,-9,71,0.520924661308527],[121,-9,72,0.5181939527392387],[121,-9,73,0.5162737742066383],[121,-9,74,0.515597328543663],[121,-9,75,0.5162062607705593],[121,-9,76,0.5181564092636108],[121,-9,77,0.5212047137320042],[121,-9,78,0.5249803513288498],[121,-9,79,0.5291627161204815],[121,-8,64,0.5134550034999847],[121,-8,65,0.513950988650322],[121,-8,66,0.5156027749180794],[121,-8,67,0.5174498781561852],[121,-8,68,0.5183469727635384],[121,-8,69,0.5176402740180492],[121,-8,70,0.5156095772981644],[121,-8,71,0.513112161308527],[121,-8,72,0.5103814527392387],[121,-8,73,0.5084612742066383],[121,-8,74,0.507784828543663],[121,-8,75,0.5083937607705593],[121,-8,76,0.5103439092636108],[121,-8,77,0.5133922137320042],[121,-8,78,0.5171678513288498],[121,-8,79,0.5213502161204815],[121,-7,64,0.5056425034999847],[121,-7,65,0.506138488650322],[121,-7,66,0.5077902749180794],[121,-7,67,0.5096373781561852],[121,-7,68,0.5105344727635384],[121,-7,69,0.5098277740180492],[121,-7,70,0.5077970772981644],[121,-7,71,0.505299661308527],[121,-7,72,0.5025689527392387],[121,-7,73,0.5006487742066383],[121,-7,74,0.499972328543663],[121,-7,75,0.5005812607705593],[121,-7,76,0.5025314092636108],[121,-7,77,0.5055797137320042],[121,-7,78,0.5093553513288498],[121,-7,79,0.5135377161204815],[121,-6,64,0.49783000349998474],[121,-6,65,0.49832598865032196],[121,-6,66,0.4999777749180794],[121,-6,67,0.5018248781561852],[121,-6,68,0.5027219727635384],[121,-6,69,0.5020152740180492],[121,-6,70,0.49998457729816437],[121,-6,71,0.497487161308527],[121,-6,72,0.49475645273923874],[121,-6,73,0.49283627420663834],[121,-6,74,0.492159828543663],[121,-6,75,0.4927687607705593],[121,-6,76,0.49471890926361084],[121,-6,77,0.49776721373200417],[121,-6,78,0.5015428513288498],[121,-6,79,0.5057252161204815],[121,-5,64,0.49001750349998474],[121,-5,65,0.49051348865032196],[121,-5,66,0.4921652749180794],[121,-5,67,0.49401237815618515],[121,-5,68,0.49490947276353836],[121,-5,69,0.49420277401804924],[121,-5,70,0.49217207729816437],[121,-5,71,0.489674661308527],[121,-5,72,0.48694395273923874],[121,-5,73,0.48502377420663834],[121,-5,74,0.484347328543663],[121,-5,75,0.4849562607705593],[121,-5,76,0.48690640926361084],[121,-5,77,0.48995471373200417],[121,-5,78,0.4937303513288498],[121,-5,79,0.4979127161204815],[121,-4,64,0.48220500349998474],[121,-4,65,0.48270098865032196],[121,-4,66,0.4843527749180794],[121,-4,67,0.48619987815618515],[121,-4,68,0.48709697276353836],[121,-4,69,0.48639027401804924],[121,-4,70,0.48435957729816437],[121,-4,71,0.481862161308527],[121,-4,72,0.47913145273923874],[121,-4,73,0.47721127420663834],[121,-4,74,0.476534828543663],[121,-4,75,0.4771437607705593],[121,-4,76,0.47909390926361084],[121,-4,77,0.48214221373200417],[121,-4,78,0.4859178513288498],[121,-4,79,0.4901002161204815],[121,-3,64,0.47439250349998474],[121,-3,65,0.47488848865032196],[121,-3,66,0.4765402749180794],[121,-3,67,0.47838737815618515],[121,-3,68,0.47928447276353836],[121,-3,69,0.47857777401804924],[121,-3,70,0.47654707729816437],[121,-3,71,0.474049661308527],[121,-3,72,0.47131895273923874],[121,-3,73,0.46939877420663834],[121,-3,74,0.468722328543663],[121,-3,75,0.4693312607705593],[121,-3,76,0.47128140926361084],[121,-3,77,0.47432971373200417],[121,-3,78,0.4781053513288498],[121,-3,79,0.4822877161204815],[121,-2,64,0.46658000349998474],[121,-2,65,0.46707598865032196],[121,-2,66,0.4687277749180794],[121,-2,67,0.47057487815618515],[121,-2,68,0.47147197276353836],[121,-2,69,0.47076527401804924],[121,-2,70,0.46873457729816437],[121,-2,71,0.466237161308527],[121,-2,72,0.46350645273923874],[121,-2,73,0.46158627420663834],[121,-2,74,0.460909828543663],[121,-2,75,0.4615187607705593],[121,-2,76,0.46346890926361084],[121,-2,77,0.46651721373200417],[121,-2,78,0.4702928513288498],[121,-2,79,0.4744752161204815],[121,-1,64,0.45876750349998474],[121,-1,65,0.45926348865032196],[121,-1,66,0.4609152749180794],[121,-1,67,0.46276237815618515],[121,-1,68,0.46365947276353836],[121,-1,69,0.46295277401804924],[121,-1,70,0.46092207729816437],[121,-1,71,0.458424661308527],[121,-1,72,0.45569395273923874],[121,-1,73,0.45377377420663834],[121,-1,74,0.453097328543663],[121,-1,75,0.4537062607705593],[121,-1,76,0.45565640926361084],[121,-1,77,0.45870471373200417],[121,-1,78,0.4624803513288498],[121,-1,79,0.4666627161204815],[121,0,64,0.45095500349998474],[121,0,65,0.45145098865032196],[121,0,66,0.4531027749180794],[121,0,67,0.45494987815618515],[121,0,68,0.45584697276353836],[121,0,69,0.45514027401804924],[121,0,70,0.45310957729816437],[121,0,71,0.450612161308527],[121,0,72,0.44788145273923874],[121,0,73,0.44596127420663834],[121,0,74,0.445284828543663],[121,0,75,0.4458937607705593],[121,0,76,0.44784390926361084],[121,0,77,0.45089221373200417],[121,0,78,0.4546678513288498],[121,0,79,0.4588502161204815],[121,1,64,0.44314250349998474],[121,1,65,0.44363848865032196],[121,1,66,0.4452902749180794],[121,1,67,0.44713737815618515],[121,1,68,0.44803447276353836],[121,1,69,0.44732777401804924],[121,1,70,0.44529707729816437],[121,1,71,0.442799661308527],[121,1,72,0.44006895273923874],[121,1,73,0.43814877420663834],[121,1,74,0.437472328543663],[121,1,75,0.4380812607705593],[121,1,76,0.44003140926361084],[121,1,77,0.44307971373200417],[121,1,78,0.4468553513288498],[121,1,79,0.4510377161204815],[121,2,64,0.43533000349998474],[121,2,65,0.43582598865032196],[121,2,66,0.4374777749180794],[121,2,67,0.43932487815618515],[121,2,68,0.44022197276353836],[121,2,69,0.43951527401804924],[121,2,70,0.43748457729816437],[121,2,71,0.434987161308527],[121,2,72,0.43225645273923874],[121,2,73,0.43033627420663834],[121,2,74,0.429659828543663],[121,2,75,0.4302687607705593],[121,2,76,0.43221890926361084],[121,2,77,0.43526721373200417],[121,2,78,0.4390428513288498],[121,2,79,0.4432252161204815],[121,3,64,0.42751750349998474],[121,3,65,0.42801348865032196],[121,3,66,0.4296652749180794],[121,3,67,0.43151237815618515],[121,3,68,0.43240947276353836],[121,3,69,0.43170277401804924],[121,3,70,0.42967207729816437],[121,3,71,0.427174661308527],[121,3,72,0.42444395273923874],[121,3,73,0.42252377420663834],[121,3,74,0.421847328543663],[121,3,75,0.4224562607705593],[121,3,76,0.42440640926361084],[121,3,77,0.42745471373200417],[121,3,78,0.4312303513288498],[121,3,79,0.4354127161204815],[121,4,64,0.41970500349998474],[121,4,65,0.42020098865032196],[121,4,66,0.4218527749180794],[121,4,67,0.42369987815618515],[121,4,68,0.42459697276353836],[121,4,69,0.42389027401804924],[121,4,70,0.42185957729816437],[121,4,71,0.419362161308527],[121,4,72,0.41663145273923874],[121,4,73,0.41471127420663834],[121,4,74,0.414034828543663],[121,4,75,0.4146437607705593],[121,4,76,0.41659390926361084],[121,4,77,0.41964221373200417],[121,4,78,0.4234178513288498],[121,4,79,0.4276002161204815],[121,5,64,0.41189250349998474],[121,5,65,0.41238848865032196],[121,5,66,0.4140402749180794],[121,5,67,0.41588737815618515],[121,5,68,0.41678447276353836],[121,5,69,0.41607777401804924],[121,5,70,0.41404707729816437],[121,5,71,0.411549661308527],[121,5,72,0.40881895273923874],[121,5,73,0.40689877420663834],[121,5,74,0.406222328543663],[121,5,75,0.4068312607705593],[121,5,76,0.40878140926361084],[121,5,77,0.41182971373200417],[121,5,78,0.4156053513288498],[121,5,79,0.4197877161204815],[121,6,64,0.40408000349998474],[121,6,65,0.40457598865032196],[121,6,66,0.4062277749180794],[121,6,67,0.40807487815618515],[121,6,68,0.40897197276353836],[121,6,69,0.40826527401804924],[121,6,70,0.40623457729816437],[121,6,71,0.403737161308527],[121,6,72,0.40100645273923874],[121,6,73,0.39908627420663834],[121,6,74,0.398409828543663],[121,6,75,0.3990187607705593],[121,6,76,0.40096890926361084],[121,6,77,0.40401721373200417],[121,6,78,0.4077928513288498],[121,6,79,0.4119752161204815],[121,7,64,0.39626750349998474],[121,7,65,0.39676348865032196],[121,7,66,0.3984152749180794],[121,7,67,0.40026237815618515],[121,7,68,0.40115947276353836],[121,7,69,0.40045277401804924],[121,7,70,0.39842207729816437],[121,7,71,0.395924661308527],[121,7,72,0.39319395273923874],[121,7,73,0.39127377420663834],[121,7,74,0.390597328543663],[121,7,75,0.3912062607705593],[121,7,76,0.39315640926361084],[121,7,77,0.39620471373200417],[121,7,78,0.3999803513288498],[121,7,79,0.4041627161204815],[121,8,64,0.38845500349998474],[121,8,65,0.38895098865032196],[121,8,66,0.3906027749180794],[121,8,67,0.39244987815618515],[121,8,68,0.39334697276353836],[121,8,69,0.39264027401804924],[121,8,70,0.39060957729816437],[121,8,71,0.388112161308527],[121,8,72,0.38538145273923874],[121,8,73,0.38346127420663834],[121,8,74,0.382784828543663],[121,8,75,0.3833937607705593],[121,8,76,0.38534390926361084],[121,8,77,0.38839221373200417],[121,8,78,0.3921678513288498],[121,8,79,0.3963502161204815],[121,9,64,0.38064250349998474],[121,9,65,0.38113848865032196],[121,9,66,0.3827902749180794],[121,9,67,0.38463737815618515],[121,9,68,0.38553447276353836],[121,9,69,0.38482777401804924],[121,9,70,0.38279707729816437],[121,9,71,0.380299661308527],[121,9,72,0.37756895273923874],[121,9,73,0.37564877420663834],[121,9,74,0.374972328543663],[121,9,75,0.3755812607705593],[121,9,76,0.37753140926361084],[121,9,77,0.38057971373200417],[121,9,78,0.3843553513288498],[121,9,79,0.3885377161204815],[121,10,64,0.37283000349998474],[121,10,65,0.37332598865032196],[121,10,66,0.3749777749180794],[121,10,67,0.37682487815618515],[121,10,68,0.37772197276353836],[121,10,69,0.37701527401804924],[121,10,70,0.37498457729816437],[121,10,71,0.372487161308527],[121,10,72,0.36975645273923874],[121,10,73,0.36783627420663834],[121,10,74,0.367159828543663],[121,10,75,0.3677687607705593],[121,10,76,0.36971890926361084],[121,10,77,0.37276721373200417],[121,10,78,0.3765428513288498],[121,10,79,0.3807252161204815],[121,11,64,0.36501750349998474],[121,11,65,0.36551348865032196],[121,11,66,0.3671652749180794],[121,11,67,0.36901237815618515],[121,11,68,0.36990947276353836],[121,11,69,0.36920277401804924],[121,11,70,0.36717207729816437],[121,11,71,0.364674661308527],[121,11,72,0.36194395273923874],[121,11,73,0.36002377420663834],[121,11,74,0.359347328543663],[121,11,75,0.3599562607705593],[121,11,76,0.36190640926361084],[121,11,77,0.36495471373200417],[121,11,78,0.3687303513288498],[121,11,79,0.3729127161204815],[121,12,64,0.35720500349998474],[121,12,65,0.35770098865032196],[121,12,66,0.3593527749180794],[121,12,67,0.36119987815618515],[121,12,68,0.36209697276353836],[121,12,69,0.36139027401804924],[121,12,70,0.35935957729816437],[121,12,71,0.356862161308527],[121,12,72,0.35413145273923874],[121,12,73,0.35221127420663834],[121,12,74,0.351534828543663],[121,12,75,0.3521437607705593],[121,12,76,0.35409390926361084],[121,12,77,0.35714221373200417],[121,12,78,0.3609178513288498],[121,12,79,0.3651002161204815],[121,13,64,0.34939250349998474],[121,13,65,0.34988848865032196],[121,13,66,0.3515402749180794],[121,13,67,0.35338737815618515],[121,13,68,0.35428447276353836],[121,13,69,0.35357777401804924],[121,13,70,0.35154707729816437],[121,13,71,0.349049661308527],[121,13,72,0.34631895273923874],[121,13,73,0.34439877420663834],[121,13,74,0.343722328543663],[121,13,75,0.3443312607705593],[121,13,76,0.34628140926361084],[121,13,77,0.34932971373200417],[121,13,78,0.3531053513288498],[121,13,79,0.3572877161204815],[121,14,64,0.34158000349998474],[121,14,65,0.34207598865032196],[121,14,66,0.3437277749180794],[121,14,67,0.34557487815618515],[121,14,68,0.34647197276353836],[121,14,69,0.34576527401804924],[121,14,70,0.34373457729816437],[121,14,71,0.341237161308527],[121,14,72,0.33850645273923874],[121,14,73,0.33658627420663834],[121,14,74,0.335909828543663],[121,14,75,0.3365187607705593],[121,14,76,0.33846890926361084],[121,14,77,0.34151721373200417],[121,14,78,0.3452928513288498],[121,14,79,0.3494752161204815],[121,15,64,0.33376750349998474],[121,15,65,0.33426348865032196],[121,15,66,0.3359152749180794],[121,15,67,0.33776237815618515],[121,15,68,0.33865947276353836],[121,15,69,0.33795277401804924],[121,15,70,0.33592207729816437],[121,15,71,0.333424661308527],[121,15,72,0.33069395273923874],[121,15,73,0.32877377420663834],[121,15,74,0.328097328543663],[121,15,75,0.3287062607705593],[121,15,76,0.33065640926361084],[121,15,77,0.33370471373200417],[121,15,78,0.3374803513288498],[121,15,79,0.3416627161204815],[121,16,64,0.32595500349998474],[121,16,65,0.32645098865032196],[121,16,66,0.3281027749180794],[121,16,67,0.32994987815618515],[121,16,68,0.33084697276353836],[121,16,69,0.33014027401804924],[121,16,70,0.32810957729816437],[121,16,71,0.325612161308527],[121,16,72,0.32288145273923874],[121,16,73,0.32096127420663834],[121,16,74,0.320284828543663],[121,16,75,0.3208937607705593],[121,16,76,0.32284390926361084],[121,16,77,0.32589221373200417],[121,16,78,0.3296678513288498],[121,16,79,0.3338502161204815],[121,17,64,0.31814250349998474],[121,17,65,0.31863848865032196],[121,17,66,0.3202902749180794],[121,17,67,0.32213737815618515],[121,17,68,0.32303447276353836],[121,17,69,0.32232777401804924],[121,17,70,0.32029707729816437],[121,17,71,0.317799661308527],[121,17,72,0.31506895273923874],[121,17,73,0.31314877420663834],[121,17,74,0.312472328543663],[121,17,75,0.3130812607705593],[121,17,76,0.31503140926361084],[121,17,77,0.31807971373200417],[121,17,78,0.3218553513288498],[121,17,79,0.3260377161204815],[121,18,64,0.31033000349998474],[121,18,65,0.31082598865032196],[121,18,66,0.3124777749180794],[121,18,67,0.31432487815618515],[121,18,68,0.31522197276353836],[121,18,69,0.31451527401804924],[121,18,70,0.31248457729816437],[121,18,71,0.309987161308527],[121,18,72,0.30725645273923874],[121,18,73,0.30533627420663834],[121,18,74,0.304659828543663],[121,18,75,0.3052687607705593],[121,18,76,0.30721890926361084],[121,18,77,0.31026721373200417],[121,18,78,0.3140428513288498],[121,18,79,0.3182252161204815],[121,19,64,0.30251750349998474],[121,19,65,0.30301348865032196],[121,19,66,0.3046652749180794],[121,19,67,0.30651237815618515],[121,19,68,0.30740947276353836],[121,19,69,0.30670277401804924],[121,19,70,0.30467207729816437],[121,19,71,0.302174661308527],[121,19,72,0.29944395273923874],[121,19,73,0.29752377420663834],[121,19,74,0.296847328543663],[121,19,75,0.2974562607705593],[121,19,76,0.29940640926361084],[121,19,77,0.30245471373200417],[121,19,78,0.3062303513288498],[121,19,79,0.3104127161204815],[121,20,64,0.29470500349998474],[121,20,65,0.29520098865032196],[121,20,66,0.2968527749180794],[121,20,67,0.29869987815618515],[121,20,68,0.29959697276353836],[121,20,69,0.29889027401804924],[121,20,70,0.29685957729816437],[121,20,71,0.294362161308527],[121,20,72,0.29163145273923874],[121,20,73,0.28971127420663834],[121,20,74,0.289034828543663],[121,20,75,0.2896437607705593],[121,20,76,0.29159390926361084],[121,20,77,0.29464221373200417],[121,20,78,0.2984178513288498],[121,20,79,0.3026002161204815],[121,21,64,0.28689250349998474],[121,21,65,0.28738848865032196],[121,21,66,0.2890402749180794],[121,21,67,0.29088737815618515],[121,21,68,0.29178447276353836],[121,21,69,0.29107777401804924],[121,21,70,0.28904707729816437],[121,21,71,0.286549661308527],[121,21,72,0.28381895273923874],[121,21,73,0.28189877420663834],[121,21,74,0.281222328543663],[121,21,75,0.2818312607705593],[121,21,76,0.28378140926361084],[121,21,77,0.28682971373200417],[121,21,78,0.2906053513288498],[121,21,79,0.2947877161204815],[121,22,64,0.27908000349998474],[121,22,65,0.27957598865032196],[121,22,66,0.2812277749180794],[121,22,67,0.28307487815618515],[121,22,68,0.28397197276353836],[121,22,69,0.28326527401804924],[121,22,70,0.28123457729816437],[121,22,71,0.278737161308527],[121,22,72,0.27600645273923874],[121,22,73,0.27408627420663834],[121,22,74,0.273409828543663],[121,22,75,0.2740187607705593],[121,22,76,0.27596890926361084],[121,22,77,0.27901721373200417],[121,22,78,0.2827928513288498],[121,22,79,0.2869752161204815],[121,23,64,0.27126750349998474],[121,23,65,0.27176348865032196],[121,23,66,0.2734152749180794],[121,23,67,0.27526237815618515],[121,23,68,0.27615947276353836],[121,23,69,0.27545277401804924],[121,23,70,0.27342207729816437],[121,23,71,0.270924661308527],[121,23,72,0.26819395273923874],[121,23,73,0.26627377420663834],[121,23,74,0.265597328543663],[121,23,75,0.2662062607705593],[121,23,76,0.26815640926361084],[121,23,77,0.27120471373200417],[121,23,78,0.2749803513288498],[121,23,79,0.2791627161204815],[121,24,64,0.26345500349998474],[121,24,65,0.26395098865032196],[121,24,66,0.2656027749180794],[121,24,67,0.26744987815618515],[121,24,68,0.26834697276353836],[121,24,69,0.26764027401804924],[121,24,70,0.26560957729816437],[121,24,71,0.263112161308527],[121,24,72,0.26038145273923874],[121,24,73,0.25846127420663834],[121,24,74,0.257784828543663],[121,24,75,0.2583937607705593],[121,24,76,0.26034390926361084],[121,24,77,0.26339221373200417],[121,24,78,0.2671678513288498],[121,24,79,0.2713502161204815],[121,25,64,0.25564250349998474],[121,25,65,0.25613848865032196],[121,25,66,0.2577902749180794],[121,25,67,0.25963737815618515],[121,25,68,0.26053447276353836],[121,25,69,0.25982777401804924],[121,25,70,0.25779707729816437],[121,25,71,0.255299661308527],[121,25,72,0.25256895273923874],[121,25,73,0.25064877420663834],[121,25,74,0.24997232854366302],[121,25,75,0.2505812607705593],[121,25,76,0.25253140926361084],[121,25,77,0.25557971373200417],[121,25,78,0.2593553513288498],[121,25,79,0.2635377161204815],[121,26,64,0.24783000349998474],[121,26,65,0.24832598865032196],[121,26,66,0.24997777491807938],[121,26,67,0.25182487815618515],[121,26,68,0.25272197276353836],[121,26,69,0.25201527401804924],[121,26,70,0.24998457729816437],[121,26,71,0.247487161308527],[121,26,72,0.24475645273923874],[121,26,73,0.24283627420663834],[121,26,74,0.24215982854366302],[121,26,75,0.2427687607705593],[121,26,76,0.24471890926361084],[121,26,77,0.24776721373200417],[121,26,78,0.2515428513288498],[121,26,79,0.2557252161204815],[121,27,64,0.24001750349998474],[121,27,65,0.24051348865032196],[121,27,66,0.24216527491807938],[121,27,67,0.24401237815618515],[121,27,68,0.24490947276353836],[121,27,69,0.24420277401804924],[121,27,70,0.24217207729816437],[121,27,71,0.239674661308527],[121,27,72,0.23694395273923874],[121,27,73,0.23502377420663834],[121,27,74,0.23434732854366302],[121,27,75,0.2349562607705593],[121,27,76,0.23690640926361084],[121,27,77,0.23995471373200417],[121,27,78,0.2437303513288498],[121,27,79,0.2479127161204815],[121,28,64,0.23220500349998474],[121,28,65,0.23270098865032196],[121,28,66,0.23435277491807938],[121,28,67,0.23619987815618515],[121,28,68,0.23709697276353836],[121,28,69,0.23639027401804924],[121,28,70,0.23435957729816437],[121,28,71,0.231862161308527],[121,28,72,0.22913145273923874],[121,28,73,0.22721127420663834],[121,28,74,0.22653482854366302],[121,28,75,0.2271437607705593],[121,28,76,0.22909390926361084],[121,28,77,0.23214221373200417],[121,28,78,0.2359178513288498],[121,28,79,0.2401002161204815],[121,29,64,0.22439250349998474],[121,29,65,0.22488848865032196],[121,29,66,0.22654027491807938],[121,29,67,0.22838737815618515],[121,29,68,0.22928447276353836],[121,29,69,0.22857777401804924],[121,29,70,0.22654707729816437],[121,29,71,0.224049661308527],[121,29,72,0.22131895273923874],[121,29,73,0.21939877420663834],[121,29,74,0.21872232854366302],[121,29,75,0.2193312607705593],[121,29,76,0.22128140926361084],[121,29,77,0.22432971373200417],[121,29,78,0.2281053513288498],[121,29,79,0.2322877161204815],[121,30,64,0.21658000349998474],[121,30,65,0.21707598865032196],[121,30,66,0.21872777491807938],[121,30,67,0.22057487815618515],[121,30,68,0.22147197276353836],[121,30,69,0.22076527401804924],[121,30,70,0.21873457729816437],[121,30,71,0.216237161308527],[121,30,72,0.21350645273923874],[121,30,73,0.21158627420663834],[121,30,74,0.21090982854366302],[121,30,75,0.2115187607705593],[121,30,76,0.21346890926361084],[121,30,77,0.21651721373200417],[121,30,78,0.2202928513288498],[121,30,79,0.2244752161204815],[121,31,64,0.20876750349998474],[121,31,65,0.20926348865032196],[121,31,66,0.21091527491807938],[121,31,67,0.21276237815618515],[121,31,68,0.21365947276353836],[121,31,69,0.21295277401804924],[121,31,70,0.21092207729816437],[121,31,71,0.208424661308527],[121,31,72,0.20569395273923874],[121,31,73,0.20377377420663834],[121,31,74,0.20309732854366302],[121,31,75,0.2037062607705593],[121,31,76,0.20565640926361084],[121,31,77,0.20870471373200417],[121,31,78,0.2124803513288498],[121,31,79,0.2166627161204815],[121,32,64,0.20095500349998474],[121,32,65,0.20145098865032196],[121,32,66,0.20310277491807938],[121,32,67,0.20494987815618515],[121,32,68,0.20584697276353836],[121,32,69,0.20514027401804924],[121,32,70,0.20310957729816437],[121,32,71,0.200612161308527],[121,32,72,0.19788145273923874],[121,32,73,0.19596127420663834],[121,32,74,0.19528482854366302],[121,32,75,0.1958937607705593],[121,32,76,0.19784390926361084],[121,32,77,0.20089221373200417],[121,32,78,0.2046678513288498],[121,32,79,0.2088502161204815],[121,33,64,0.19314250349998474],[121,33,65,0.19363848865032196],[121,33,66,0.19529027491807938],[121,33,67,0.19713737815618515],[121,33,68,0.19803447276353836],[121,33,69,0.19732777401804924],[121,33,70,0.19529707729816437],[121,33,71,0.192799661308527],[121,33,72,0.19006895273923874],[121,33,73,0.18814877420663834],[121,33,74,0.18747232854366302],[121,33,75,0.1880812607705593],[121,33,76,0.19003140926361084],[121,33,77,0.19307971373200417],[121,33,78,0.1968553513288498],[121,33,79,0.2010377161204815],[121,34,64,0.18533000349998474],[121,34,65,0.18582598865032196],[121,34,66,0.18747777491807938],[121,34,67,0.18932487815618515],[121,34,68,0.19022197276353836],[121,34,69,0.18951527401804924],[121,34,70,0.18748457729816437],[121,34,71,0.184987161308527],[121,34,72,0.18225645273923874],[121,34,73,0.18033627420663834],[121,34,74,0.17965982854366302],[121,34,75,0.1802687607705593],[121,34,76,0.18221890926361084],[121,34,77,0.18526721373200417],[121,34,78,0.1890428513288498],[121,34,79,0.1932252161204815],[121,35,64,0.17751750349998474],[121,35,65,0.17801348865032196],[121,35,66,0.17966527491807938],[121,35,67,0.18151237815618515],[121,35,68,0.18240947276353836],[121,35,69,0.18170277401804924],[121,35,70,0.17967207729816437],[121,35,71,0.177174661308527],[121,35,72,0.17444395273923874],[121,35,73,0.17252377420663834],[121,35,74,0.17184732854366302],[121,35,75,0.1724562607705593],[121,35,76,0.17440640926361084],[121,35,77,0.17745471373200417],[121,35,78,0.1812303513288498],[121,35,79,0.1854127161204815],[121,36,64,0.16970500349998474],[121,36,65,0.17020098865032196],[121,36,66,0.17185277491807938],[121,36,67,0.17369987815618515],[121,36,68,0.17459697276353836],[121,36,69,0.17389027401804924],[121,36,70,0.17185957729816437],[121,36,71,0.169362161308527],[121,36,72,0.16663145273923874],[121,36,73,0.16471127420663834],[121,36,74,0.16403482854366302],[121,36,75,0.1646437607705593],[121,36,76,0.16659390926361084],[121,36,77,0.16964221373200417],[121,36,78,0.1734178513288498],[121,36,79,0.1776002161204815],[121,37,64,0.16189250349998474],[121,37,65,0.16238848865032196],[121,37,66,0.16404027491807938],[121,37,67,0.16588737815618515],[121,37,68,0.16678447276353836],[121,37,69,0.16607777401804924],[121,37,70,0.16404707729816437],[121,37,71,0.161549661308527],[121,37,72,0.15881895273923874],[121,37,73,0.15689877420663834],[121,37,74,0.15622232854366302],[121,37,75,0.1568312607705593],[121,37,76,0.15878140926361084],[121,37,77,0.16182971373200417],[121,37,78,0.1656053513288498],[121,37,79,0.1697877161204815],[121,38,64,0.15408000349998474],[121,38,65,0.15457598865032196],[121,38,66,0.15622777491807938],[121,38,67,0.15807487815618515],[121,38,68,0.15897197276353836],[121,38,69,0.15826527401804924],[121,38,70,0.15623457729816437],[121,38,71,0.153737161308527],[121,38,72,0.15100645273923874],[121,38,73,0.14908627420663834],[121,38,74,0.14840982854366302],[121,38,75,0.1490187607705593],[121,38,76,0.15096890926361084],[121,38,77,0.15401721373200417],[121,38,78,0.1577928513288498],[121,38,79,0.1619752161204815],[121,39,64,0.14626750349998474],[121,39,65,0.14676348865032196],[121,39,66,0.14841527491807938],[121,39,67,0.15026237815618515],[121,39,68,0.15115947276353836],[121,39,69,0.15045277401804924],[121,39,70,0.14842207729816437],[121,39,71,0.145924661308527],[121,39,72,0.14319395273923874],[121,39,73,0.14127377420663834],[121,39,74,0.14059732854366302],[121,39,75,0.1412062607705593],[121,39,76,0.14315640926361084],[121,39,77,0.14620471373200417],[121,39,78,0.1499803513288498],[121,39,79,0.1541627161204815],[121,40,64,0.13845500349998474],[121,40,65,0.13895098865032196],[121,40,66,0.14060277491807938],[121,40,67,0.14244987815618515],[121,40,68,0.14334697276353836],[121,40,69,0.14264027401804924],[121,40,70,0.14060957729816437],[121,40,71,0.138112161308527],[121,40,72,0.13538145273923874],[121,40,73,0.13346127420663834],[121,40,74,0.13278482854366302],[121,40,75,0.1333937607705593],[121,40,76,0.13534390926361084],[121,40,77,0.13839221373200417],[121,40,78,0.1421678513288498],[121,40,79,0.1463502161204815],[121,41,64,0.13064250349998474],[121,41,65,0.13113848865032196],[121,41,66,0.13279027491807938],[121,41,67,0.13463737815618515],[121,41,68,0.13553447276353836],[121,41,69,0.13482777401804924],[121,41,70,0.13279707729816437],[121,41,71,0.130299661308527],[121,41,72,0.12756895273923874],[121,41,73,0.12564877420663834],[121,41,74,0.12497232854366302],[121,41,75,0.1255812607705593],[121,41,76,0.12753140926361084],[121,41,77,0.13057971373200417],[121,41,78,0.1343553513288498],[121,41,79,0.1385377161204815],[121,42,64,0.12283000349998474],[121,42,65,0.12332598865032196],[121,42,66,0.12497777491807938],[121,42,67,0.12682487815618515],[121,42,68,0.12772197276353836],[121,42,69,0.12701527401804924],[121,42,70,0.12498457729816437],[121,42,71,0.12248716130852699],[121,42,72,0.11975645273923874],[121,42,73,0.11783627420663834],[121,42,74,0.11715982854366302],[121,42,75,0.11776876077055931],[121,42,76,0.11971890926361084],[121,42,77,0.12276721373200417],[121,42,78,0.1265428513288498],[121,42,79,0.1307252161204815],[121,43,64,0.11501750349998474],[121,43,65,0.11551348865032196],[121,43,66,0.11716527491807938],[121,43,67,0.11901237815618515],[121,43,68,0.11990947276353836],[121,43,69,0.11920277401804924],[121,43,70,0.11717207729816437],[121,43,71,0.11467466130852699],[121,43,72,0.11194395273923874],[121,43,73,0.11002377420663834],[121,43,74,0.10934732854366302],[121,43,75,0.10995626077055931],[121,43,76,0.11190640926361084],[121,43,77,0.11495471373200417],[121,43,78,0.11873035132884979],[121,43,79,0.12291271612048149],[121,44,64,0.10720500349998474],[121,44,65,0.10770098865032196],[121,44,66,0.10935277491807938],[121,44,67,0.11119987815618515],[121,44,68,0.11209697276353836],[121,44,69,0.11139027401804924],[121,44,70,0.10935957729816437],[121,44,71,0.10686216130852699],[121,44,72,0.10413145273923874],[121,44,73,0.10221127420663834],[121,44,74,0.10153482854366302],[121,44,75,0.10214376077055931],[121,44,76,0.10409390926361084],[121,44,77,0.10714221373200417],[121,44,78,0.11091785132884979],[121,44,79,0.11510021612048149],[121,45,64,0.09939250349998474],[121,45,65,0.09988848865032196],[121,45,66,0.10154027491807938],[121,45,67,0.10338737815618515],[121,45,68,0.10428447276353836],[121,45,69,0.10357777401804924],[121,45,70,0.10154707729816437],[121,45,71,0.09904966130852699],[121,45,72,0.09631895273923874],[121,45,73,0.09439877420663834],[121,45,74,0.09372232854366302],[121,45,75,0.09433126077055931],[121,45,76,0.09628140926361084],[121,45,77,0.09932971373200417],[121,45,78,0.10310535132884979],[121,45,79,0.10728771612048149],[121,46,64,0.09158000349998474],[121,46,65,0.09207598865032196],[121,46,66,0.09372777491807938],[121,46,67,0.09557487815618515],[121,46,68,0.09647197276353836],[121,46,69,0.09576527401804924],[121,46,70,0.09373457729816437],[121,46,71,0.09123716130852699],[121,46,72,0.08850645273923874],[121,46,73,0.08658627420663834],[121,46,74,0.08590982854366302],[121,46,75,0.08651876077055931],[121,46,76,0.08846890926361084],[121,46,77,0.09151721373200417],[121,46,78,0.09529285132884979],[121,46,79,0.09947521612048149],[121,47,64,0.08376750349998474],[121,47,65,0.08426348865032196],[121,47,66,0.08591527491807938],[121,47,67,0.08776237815618515],[121,47,68,0.08865947276353836],[121,47,69,0.08795277401804924],[121,47,70,0.08592207729816437],[121,47,71,0.08342466130852699],[121,47,72,0.08069395273923874],[121,47,73,0.07877377420663834],[121,47,74,0.07809732854366302],[121,47,75,0.07870626077055931],[121,47,76,0.08065640926361084],[121,47,77,0.08370471373200417],[121,47,78,0.08748035132884979],[121,47,79,0.09166271612048149],[121,48,64,0.07595500349998474],[121,48,65,0.07645098865032196],[121,48,66,0.07810277491807938],[121,48,67,0.07994987815618515],[121,48,68,0.08084697276353836],[121,48,69,0.08014027401804924],[121,48,70,0.07810957729816437],[121,48,71,0.07561216130852699],[121,48,72,0.07288145273923874],[121,48,73,0.07096127420663834],[121,48,74,0.07028482854366302],[121,48,75,0.07089376077055931],[121,48,76,0.07284390926361084],[121,48,77,0.07589221373200417],[121,48,78,0.07966785132884979],[121,48,79,0.08385021612048149],[121,49,64,0.06814250349998474],[121,49,65,0.06863848865032196],[121,49,66,0.07029027491807938],[121,49,67,0.07213737815618515],[121,49,68,0.07303447276353836],[121,49,69,0.07232777401804924],[121,49,70,0.07029707729816437],[121,49,71,0.06779966130852699],[121,49,72,0.06506895273923874],[121,49,73,0.06314877420663834],[121,49,74,0.062472328543663025],[121,49,75,0.06308126077055931],[121,49,76,0.06503140926361084],[121,49,77,0.06807971373200417],[121,49,78,0.07185535132884979],[121,49,79,0.07603771612048149],[121,50,64,0.06033000349998474],[121,50,65,0.06082598865032196],[121,50,66,0.062477774918079376],[121,50,67,0.06432487815618515],[121,50,68,0.06522197276353836],[121,50,69,0.06451527401804924],[121,50,70,0.06248457729816437],[121,50,71,0.05998716130852699],[121,50,72,0.05725645273923874],[121,50,73,0.055336274206638336],[121,50,74,0.054659828543663025],[121,50,75,0.05526876077055931],[121,50,76,0.05721890926361084],[121,50,77,0.060267213732004166],[121,50,78,0.06404285132884979],[121,50,79,0.06822521612048149],[121,51,64,0.05251750349998474],[121,51,65,0.05301348865032196],[121,51,66,0.054665274918079376],[121,51,67,0.05651237815618515],[121,51,68,0.05740947276353836],[121,51,69,0.05670277401804924],[121,51,70,0.05467207729816437],[121,51,71,0.05217466130852699],[121,51,72,0.04944395273923874],[121,51,73,0.047523774206638336],[121,51,74,0.046847328543663025],[121,51,75,0.04745626077055931],[121,51,76,0.04940640926361084],[121,51,77,0.052454713732004166],[121,51,78,0.05623035132884979],[121,51,79,0.06041271612048149],[121,52,64,0.04470500349998474],[121,52,65,0.04520098865032196],[121,52,66,0.046852774918079376],[121,52,67,0.04869987815618515],[121,52,68,0.04959697276353836],[121,52,69,0.04889027401804924],[121,52,70,0.04685957729816437],[121,52,71,0.04436216130852699],[121,52,72,0.04163145273923874],[121,52,73,0.039711274206638336],[121,52,74,0.039034828543663025],[121,52,75,0.03964376077055931],[121,52,76,0.04159390926361084],[121,52,77,0.044642213732004166],[121,52,78,0.04841785132884979],[121,52,79,0.05260021612048149],[121,53,64,0.03689250349998474],[121,53,65,0.03738848865032196],[121,53,66,0.039040274918079376],[121,53,67,0.04088737815618515],[121,53,68,0.04178447276353836],[121,53,69,0.04107777401804924],[121,53,70,0.03904707729816437],[121,53,71,0.03654966130852699],[121,53,72,0.03381895273923874],[121,53,73,0.031898774206638336],[121,53,74,0.031222328543663025],[121,53,75,0.03183126077055931],[121,53,76,0.03378140926361084],[121,53,77,0.036829713732004166],[121,53,78,0.04060535132884979],[121,53,79,0.04478771612048149],[121,54,64,0.02908000349998474],[121,54,65,0.02957598865032196],[121,54,66,0.031227774918079376],[121,54,67,0.03307487815618515],[121,54,68,0.03397197276353836],[121,54,69,0.03326527401804924],[121,54,70,0.031234577298164368],[121,54,71,0.028737161308526993],[121,54,72,0.02600645273923874],[121,54,73,0.024086274206638336],[121,54,74,0.023409828543663025],[121,54,75,0.02401876077055931],[121,54,76,0.02596890926361084],[121,54,77,0.029017213732004166],[121,54,78,0.03279285132884979],[121,54,79,0.03697521612048149],[121,55,64,0.02126750349998474],[121,55,65,0.02176348865032196],[121,55,66,0.023415274918079376],[121,55,67,0.02526237815618515],[121,55,68,0.02615947276353836],[121,55,69,0.02545277401804924],[121,55,70,0.023422077298164368],[121,55,71,0.020924661308526993],[121,55,72,0.01819395273923874],[121,55,73,0.016273774206638336],[121,55,74,0.015597328543663025],[121,55,75,0.01620626077055931],[121,55,76,0.01815640926361084],[121,55,77,0.021204713732004166],[121,55,78,0.024980351328849792],[121,55,79,0.02916271612048149],[121,56,64,0.013455003499984741],[121,56,65,0.01395098865032196],[121,56,66,0.015602774918079376],[121,56,67,0.01744987815618515],[121,56,68,0.01834697276353836],[121,56,69,0.01764027401804924],[121,56,70,0.015609577298164368],[121,56,71,0.013112161308526993],[121,56,72,0.010381452739238739],[121,56,73,0.008461274206638336],[121,56,74,0.007784828543663025],[121,56,75,0.008393760770559311],[121,56,76,0.01034390926361084],[121,56,77,0.013392213732004166],[121,56,78,0.017167851328849792],[121,56,79,0.02135021612048149],[121,57,64,0.005642503499984741],[121,57,65,0.0061384886503219604],[121,57,66,0.007790274918079376],[121,57,67,0.00963737815618515],[121,57,68,0.01053447276353836],[121,57,69,0.00982777401804924],[121,57,70,0.007797077298164368],[121,57,71,0.005299661308526993],[121,57,72,0.002568952739238739],[121,57,73,6.487742066383362E-4],[121,57,74,-2.7671456336975098E-5],[121,57,75,5.812607705593109E-4],[121,57,76,0.00253140926361084],[121,57,77,0.005579713732004166],[121,57,78,0.009355351328849792],[121,57,79,0.013537716120481491],[121,58,64,-0.002169996500015259],[121,58,65,-0.0016740113496780396],[121,58,66,-2.222508192062378E-5],[121,58,67,0.0018248781561851501],[121,58,68,0.0027219727635383606],[121,58,69,0.00201527401804924],[121,58,70,-1.5422701835632324E-5],[121,58,71,-0.002512838691473007],[121,58,72,-0.005243547260761261],[121,58,73,-0.007163725793361664],[121,58,74,-0.007840171456336975],[121,58,75,-0.007231239229440689],[121,58,76,-0.00528109073638916],[121,58,77,-0.0022327862679958344],[121,58,78,0.0015428513288497925],[121,58,79,0.005725216120481491],[121,59,64,-0.009982496500015259],[121,59,65,-0.00948651134967804],[121,59,66,-0.007834725081920624],[121,59,67,-0.00598762184381485],[121,59,68,-0.005090527236461639],[121,59,69,-0.00579722598195076],[121,59,70,-0.007827922701835632],[121,59,71,-0.010325338691473007],[121,59,72,-0.013056047260761261],[121,59,73,-0.014976225793361664],[121,59,74,-0.015652671456336975],[121,59,75,-0.015043739229440689],[121,59,76,-0.01309359073638916],[121,59,77,-0.010045286267995834],[121,59,78,-0.0062696486711502075],[121,59,79,-0.002087283879518509],[121,60,64,-0.01779499650001526],[121,60,65,-0.01729901134967804],[121,60,66,-0.015647225081920624],[121,60,67,-0.01380012184381485],[121,60,68,-0.01290302723646164],[121,60,69,-0.01360972598195076],[121,60,70,-0.015640422701835632],[121,60,71,-0.018137838691473007],[121,60,72,-0.02086854726076126],[121,60,73,-0.022788725793361664],[121,60,74,-0.023465171456336975],[121,60,75,-0.02285623922944069],[121,60,76,-0.02090609073638916],[121,60,77,-0.017857786267995834],[121,60,78,-0.014082148671150208],[121,60,79,-0.009899783879518509],[121,61,64,-0.02560749650001526],[121,61,65,-0.02511151134967804],[121,61,66,-0.023459725081920624],[121,61,67,-0.02161262184381485],[121,61,68,-0.02071552723646164],[121,61,69,-0.02142222598195076],[121,61,70,-0.023452922701835632],[121,61,71,-0.025950338691473007],[121,61,72,-0.02868104726076126],[121,61,73,-0.030601225793361664],[121,61,74,-0.031277671456336975],[121,61,75,-0.03066873922944069],[121,61,76,-0.02871859073638916],[121,61,77,-0.025670286267995834],[121,61,78,-0.021894648671150208],[121,61,79,-0.01771228387951851],[121,62,64,-0.03341999650001526],[121,62,65,-0.03292401134967804],[121,62,66,-0.031272225081920624],[121,62,67,-0.02942512184381485],[121,62,68,-0.02852802723646164],[121,62,69,-0.02923472598195076],[121,62,70,-0.03126542270183563],[121,62,71,-0.03376283869147301],[121,62,72,-0.03649354726076126],[121,62,73,-0.038413725793361664],[121,62,74,-0.039090171456336975],[121,62,75,-0.03848123922944069],[121,62,76,-0.03653109073638916],[121,62,77,-0.033482786267995834],[121,62,78,-0.029707148671150208],[121,62,79,-0.02552478387951851],[121,63,64,-0.04123249650001526],[121,63,65,-0.04073651134967804],[121,63,66,-0.039084725081920624],[121,63,67,-0.03723762184381485],[121,63,68,-0.03634052723646164],[121,63,69,-0.03704722598195076],[121,63,70,-0.03907792270183563],[121,63,71,-0.04157533869147301],[121,63,72,-0.04430604726076126],[121,63,73,-0.046226225793361664],[121,63,74,-0.046902671456336975],[121,63,75,-0.04629373922944069],[121,63,76,-0.04434359073638916],[121,63,77,-0.041295286267995834],[121,63,78,-0.03751964867115021],[121,63,79,-0.03333728387951851],[121,64,64,-0.04904499650001526],[121,64,65,-0.04854901134967804],[121,64,66,-0.046897225081920624],[121,64,67,-0.04505012184381485],[121,64,68,-0.04415302723646164],[121,64,69,-0.04485972598195076],[121,64,70,-0.04689042270183563],[121,64,71,-0.04938783869147301],[121,64,72,-0.05211854726076126],[121,64,73,-0.054038725793361664],[121,64,74,-0.054715171456336975],[121,64,75,-0.05410623922944069],[121,64,76,-0.05215609073638916],[121,64,77,-0.049107786267995834],[121,64,78,-0.04533214867115021],[121,64,79,-0.04114978387951851],[121,65,64,-0.05685749650001526],[121,65,65,-0.05636151134967804],[121,65,66,-0.054709725081920624],[121,65,67,-0.05286262184381485],[121,65,68,-0.05196552723646164],[121,65,69,-0.05267222598195076],[121,65,70,-0.05470292270183563],[121,65,71,-0.05720033869147301],[121,65,72,-0.05993104726076126],[121,65,73,-0.061851225793361664],[121,65,74,-0.06252767145633698],[121,65,75,-0.06191873922944069],[121,65,76,-0.05996859073638916],[121,65,77,-0.056920286267995834],[121,65,78,-0.05314464867115021],[121,65,79,-0.04896228387951851],[121,66,64,-0.06466999650001526],[121,66,65,-0.06417401134967804],[121,66,66,-0.06252222508192062],[121,66,67,-0.06067512184381485],[121,66,68,-0.05977802723646164],[121,66,69,-0.06048472598195076],[121,66,70,-0.06251542270183563],[121,66,71,-0.06501283869147301],[121,66,72,-0.06774354726076126],[121,66,73,-0.06966372579336166],[121,66,74,-0.07034017145633698],[121,66,75,-0.06973123922944069],[121,66,76,-0.06778109073638916],[121,66,77,-0.06473278626799583],[121,66,78,-0.06095714867115021],[121,66,79,-0.05677478387951851],[121,67,64,-0.07248249650001526],[121,67,65,-0.07198651134967804],[121,67,66,-0.07033472508192062],[121,67,67,-0.06848762184381485],[121,67,68,-0.06759052723646164],[121,67,69,-0.06829722598195076],[121,67,70,-0.07032792270183563],[121,67,71,-0.07282533869147301],[121,67,72,-0.07555604726076126],[121,67,73,-0.07747622579336166],[121,67,74,-0.07815267145633698],[121,67,75,-0.07754373922944069],[121,67,76,-0.07559359073638916],[121,67,77,-0.07254528626799583],[121,67,78,-0.06876964867115021],[121,67,79,-0.06458728387951851],[121,68,64,-0.08029499650001526],[121,68,65,-0.07979901134967804],[121,68,66,-0.07814722508192062],[121,68,67,-0.07630012184381485],[121,68,68,-0.07540302723646164],[121,68,69,-0.07610972598195076],[121,68,70,-0.07814042270183563],[121,68,71,-0.08063783869147301],[121,68,72,-0.08336854726076126],[121,68,73,-0.08528872579336166],[121,68,74,-0.08596517145633698],[121,68,75,-0.08535623922944069],[121,68,76,-0.08340609073638916],[121,68,77,-0.08035778626799583],[121,68,78,-0.07658214867115021],[121,68,79,-0.07239978387951851],[121,69,64,-0.08810749650001526],[121,69,65,-0.08761151134967804],[121,69,66,-0.08595972508192062],[121,69,67,-0.08411262184381485],[121,69,68,-0.08321552723646164],[121,69,69,-0.08392222598195076],[121,69,70,-0.08595292270183563],[121,69,71,-0.08845033869147301],[121,69,72,-0.09118104726076126],[121,69,73,-0.09310122579336166],[121,69,74,-0.09377767145633698],[121,69,75,-0.09316873922944069],[121,69,76,-0.09121859073638916],[121,69,77,-0.08817028626799583],[121,69,78,-0.08439464867115021],[121,69,79,-0.08021228387951851],[121,70,64,-0.09591999650001526],[121,70,65,-0.09542401134967804],[121,70,66,-0.09377222508192062],[121,70,67,-0.09192512184381485],[121,70,68,-0.09102802723646164],[121,70,69,-0.09173472598195076],[121,70,70,-0.09376542270183563],[121,70,71,-0.09626283869147301],[121,70,72,-0.09899354726076126],[121,70,73,-0.10091372579336166],[121,70,74,-0.10159017145633698],[121,70,75,-0.10098123922944069],[121,70,76,-0.09903109073638916],[121,70,77,-0.09598278626799583],[121,70,78,-0.09220714867115021],[121,70,79,-0.08802478387951851],[121,71,64,-0.10373249650001526],[121,71,65,-0.10323651134967804],[121,71,66,-0.10158472508192062],[121,71,67,-0.09973762184381485],[121,71,68,-0.09884052723646164],[121,71,69,-0.09954722598195076],[121,71,70,-0.10157792270183563],[121,71,71,-0.10407533869147301],[121,71,72,-0.10680604726076126],[121,71,73,-0.10872622579336166],[121,71,74,-0.10940267145633698],[121,71,75,-0.10879373922944069],[121,71,76,-0.10684359073638916],[121,71,77,-0.10379528626799583],[121,71,78,-0.10001964867115021],[121,71,79,-0.09583728387951851],[121,72,64,-0.11154499650001526],[121,72,65,-0.11104901134967804],[121,72,66,-0.10939722508192062],[121,72,67,-0.10755012184381485],[121,72,68,-0.10665302723646164],[121,72,69,-0.10735972598195076],[121,72,70,-0.10939042270183563],[121,72,71,-0.11188783869147301],[121,72,72,-0.11461854726076126],[121,72,73,-0.11653872579336166],[121,72,74,-0.11721517145633698],[121,72,75,-0.11660623922944069],[121,72,76,-0.11465609073638916],[121,72,77,-0.11160778626799583],[121,72,78,-0.10783214867115021],[121,72,79,-0.10364978387951851],[121,73,64,-0.11935749650001526],[121,73,65,-0.11886151134967804],[121,73,66,-0.11720972508192062],[121,73,67,-0.11536262184381485],[121,73,68,-0.11446552723646164],[121,73,69,-0.11517222598195076],[121,73,70,-0.11720292270183563],[121,73,71,-0.11970033869147301],[121,73,72,-0.12243104726076126],[121,73,73,-0.12435122579336166],[121,73,74,-0.12502767145633698],[121,73,75,-0.12441873922944069],[121,73,76,-0.12246859073638916],[121,73,77,-0.11942028626799583],[121,73,78,-0.11564464867115021],[121,73,79,-0.11146228387951851],[121,74,64,-0.12716999650001526],[121,74,65,-0.12667401134967804],[121,74,66,-0.12502222508192062],[121,74,67,-0.12317512184381485],[121,74,68,-0.12227802723646164],[121,74,69,-0.12298472598195076],[121,74,70,-0.12501542270183563],[121,74,71,-0.127512838691473],[121,74,72,-0.13024354726076126],[121,74,73,-0.13216372579336166],[121,74,74,-0.13284017145633698],[121,74,75,-0.1322312392294407],[121,74,76,-0.13028109073638916],[121,74,77,-0.12723278626799583],[121,74,78,-0.12345714867115021],[121,74,79,-0.11927478387951851],[121,75,64,-0.13498249650001526],[121,75,65,-0.13448651134967804],[121,75,66,-0.13283472508192062],[121,75,67,-0.13098762184381485],[121,75,68,-0.13009052723646164],[121,75,69,-0.13079722598195076],[121,75,70,-0.13282792270183563],[121,75,71,-0.135325338691473],[121,75,72,-0.13805604726076126],[121,75,73,-0.13997622579336166],[121,75,74,-0.14065267145633698],[121,75,75,-0.1400437392294407],[121,75,76,-0.13809359073638916],[121,75,77,-0.13504528626799583],[121,75,78,-0.1312696486711502],[121,75,79,-0.1270872838795185],[121,76,64,-0.14279499650001526],[121,76,65,-0.14229901134967804],[121,76,66,-0.14064722508192062],[121,76,67,-0.13880012184381485],[121,76,68,-0.13790302723646164],[121,76,69,-0.13860972598195076],[121,76,70,-0.14064042270183563],[121,76,71,-0.143137838691473],[121,76,72,-0.14586854726076126],[121,76,73,-0.14778872579336166],[121,76,74,-0.14846517145633698],[121,76,75,-0.1478562392294407],[121,76,76,-0.14590609073638916],[121,76,77,-0.14285778626799583],[121,76,78,-0.1390821486711502],[121,76,79,-0.1348997838795185],[121,77,64,-0.15060749650001526],[121,77,65,-0.15011151134967804],[121,77,66,-0.14845972508192062],[121,77,67,-0.14661262184381485],[121,77,68,-0.14571552723646164],[121,77,69,-0.14642222598195076],[121,77,70,-0.14845292270183563],[121,77,71,-0.150950338691473],[121,77,72,-0.15368104726076126],[121,77,73,-0.15560122579336166],[121,77,74,-0.15627767145633698],[121,77,75,-0.1556687392294407],[121,77,76,-0.15371859073638916],[121,77,77,-0.15067028626799583],[121,77,78,-0.1468946486711502],[121,77,79,-0.1427122838795185],[121,78,64,-0.15841999650001526],[121,78,65,-0.15792401134967804],[121,78,66,-0.15627222508192062],[121,78,67,-0.15442512184381485],[121,78,68,-0.15352802723646164],[121,78,69,-0.15423472598195076],[121,78,70,-0.15626542270183563],[121,78,71,-0.158762838691473],[121,78,72,-0.16149354726076126],[121,78,73,-0.16341372579336166],[121,78,74,-0.16409017145633698],[121,78,75,-0.1634812392294407],[121,78,76,-0.16153109073638916],[121,78,77,-0.15848278626799583],[121,78,78,-0.1547071486711502],[121,78,79,-0.1505247838795185],[121,79,64,-0.16623249650001526],[121,79,65,-0.16573651134967804],[121,79,66,-0.16408472508192062],[121,79,67,-0.16223762184381485],[121,79,68,-0.16134052723646164],[121,79,69,-0.16204722598195076],[121,79,70,-0.16407792270183563],[121,79,71,-0.166575338691473],[121,79,72,-0.16930604726076126],[121,79,73,-0.17122622579336166],[121,79,74,-0.17190267145633698],[121,79,75,-0.1712937392294407],[121,79,76,-0.16934359073638916],[121,79,77,-0.16629528626799583],[121,79,78,-0.1625196486711502],[121,79,79,-0.1583372838795185],[121,80,64,-0.17404499650001526],[121,80,65,-0.17354901134967804],[121,80,66,-0.17189722508192062],[121,80,67,-0.17005012184381485],[121,80,68,-0.16915302723646164],[121,80,69,-0.16985972598195076],[121,80,70,-0.17189042270183563],[121,80,71,-0.174387838691473],[121,80,72,-0.17711854726076126],[121,80,73,-0.17903872579336166],[121,80,74,-0.17971517145633698],[121,80,75,-0.1791062392294407],[121,80,76,-0.17715609073638916],[121,80,77,-0.17410778626799583],[121,80,78,-0.1703321486711502],[121,80,79,-0.1661497838795185],[121,81,64,-0.18185749650001526],[121,81,65,-0.18136151134967804],[121,81,66,-0.17970972508192062],[121,81,67,-0.17786262184381485],[121,81,68,-0.17696552723646164],[121,81,69,-0.17767222598195076],[121,81,70,-0.17970292270183563],[121,81,71,-0.182200338691473],[121,81,72,-0.18493104726076126],[121,81,73,-0.18685122579336166],[121,81,74,-0.18752767145633698],[121,81,75,-0.1869187392294407],[121,81,76,-0.18496859073638916],[121,81,77,-0.18192028626799583],[121,81,78,-0.1781446486711502],[121,81,79,-0.1739622838795185],[121,82,64,-0.18966999650001526],[121,82,65,-0.18917401134967804],[121,82,66,-0.18752222508192062],[121,82,67,-0.18567512184381485],[121,82,68,-0.18477802723646164],[121,82,69,-0.18548472598195076],[121,82,70,-0.18751542270183563],[121,82,71,-0.190012838691473],[121,82,72,-0.19274354726076126],[121,82,73,-0.19466372579336166],[121,82,74,-0.19534017145633698],[121,82,75,-0.1947312392294407],[121,82,76,-0.19278109073638916],[121,82,77,-0.18973278626799583],[121,82,78,-0.1859571486711502],[121,82,79,-0.1817747838795185],[121,83,64,-0.19748249650001526],[121,83,65,-0.19698651134967804],[121,83,66,-0.19533472508192062],[121,83,67,-0.19348762184381485],[121,83,68,-0.19259052723646164],[121,83,69,-0.19329722598195076],[121,83,70,-0.19532792270183563],[121,83,71,-0.197825338691473],[121,83,72,-0.20055604726076126],[121,83,73,-0.20247622579336166],[121,83,74,-0.20315267145633698],[121,83,75,-0.2025437392294407],[121,83,76,-0.20059359073638916],[121,83,77,-0.19754528626799583],[121,83,78,-0.1937696486711502],[121,83,79,-0.1895872838795185],[121,84,64,-0.20529499650001526],[121,84,65,-0.20479901134967804],[121,84,66,-0.20314722508192062],[121,84,67,-0.20130012184381485],[121,84,68,-0.20040302723646164],[121,84,69,-0.20110972598195076],[121,84,70,-0.20314042270183563],[121,84,71,-0.205637838691473],[121,84,72,-0.20836854726076126],[121,84,73,-0.21028872579336166],[121,84,74,-0.21096517145633698],[121,84,75,-0.2103562392294407],[121,84,76,-0.20840609073638916],[121,84,77,-0.20535778626799583],[121,84,78,-0.2015821486711502],[121,84,79,-0.1973997838795185],[121,85,64,-0.21310749650001526],[121,85,65,-0.21261151134967804],[121,85,66,-0.21095972508192062],[121,85,67,-0.20911262184381485],[121,85,68,-0.20821552723646164],[121,85,69,-0.20892222598195076],[121,85,70,-0.21095292270183563],[121,85,71,-0.213450338691473],[121,85,72,-0.21618104726076126],[121,85,73,-0.21810122579336166],[121,85,74,-0.21877767145633698],[121,85,75,-0.2181687392294407],[121,85,76,-0.21621859073638916],[121,85,77,-0.21317028626799583],[121,85,78,-0.2093946486711502],[121,85,79,-0.2052122838795185],[121,86,64,-0.22091999650001526],[121,86,65,-0.22042401134967804],[121,86,66,-0.21877222508192062],[121,86,67,-0.21692512184381485],[121,86,68,-0.21602802723646164],[121,86,69,-0.21673472598195076],[121,86,70,-0.21876542270183563],[121,86,71,-0.221262838691473],[121,86,72,-0.22399354726076126],[121,86,73,-0.22591372579336166],[121,86,74,-0.22659017145633698],[121,86,75,-0.2259812392294407],[121,86,76,-0.22403109073638916],[121,86,77,-0.22098278626799583],[121,86,78,-0.2172071486711502],[121,86,79,-0.2130247838795185],[121,87,64,-0.22873249650001526],[121,87,65,-0.22823651134967804],[121,87,66,-0.22658472508192062],[121,87,67,-0.22473762184381485],[121,87,68,-0.22384052723646164],[121,87,69,-0.22454722598195076],[121,87,70,-0.22657792270183563],[121,87,71,-0.229075338691473],[121,87,72,-0.23180604726076126],[121,87,73,-0.23372622579336166],[121,87,74,-0.23440267145633698],[121,87,75,-0.2337937392294407],[121,87,76,-0.23184359073638916],[121,87,77,-0.22879528626799583],[121,87,78,-0.2250196486711502],[121,87,79,-0.2208372838795185],[121,88,64,-0.23654499650001526],[121,88,65,-0.23604901134967804],[121,88,66,-0.23439722508192062],[121,88,67,-0.23255012184381485],[121,88,68,-0.23165302723646164],[121,88,69,-0.23235972598195076],[121,88,70,-0.23439042270183563],[121,88,71,-0.236887838691473],[121,88,72,-0.23961854726076126],[121,88,73,-0.24153872579336166],[121,88,74,-0.24221517145633698],[121,88,75,-0.2416062392294407],[121,88,76,-0.23965609073638916],[121,88,77,-0.23660778626799583],[121,88,78,-0.2328321486711502],[121,88,79,-0.2286497838795185],[121,89,64,-0.24435749650001526],[121,89,65,-0.24386151134967804],[121,89,66,-0.24220972508192062],[121,89,67,-0.24036262184381485],[121,89,68,-0.23946552723646164],[121,89,69,-0.24017222598195076],[121,89,70,-0.24220292270183563],[121,89,71,-0.244700338691473],[121,89,72,-0.24743104726076126],[121,89,73,-0.24935122579336166],[121,89,74,-0.250027671456337],[121,89,75,-0.2494187392294407],[121,89,76,-0.24746859073638916],[121,89,77,-0.24442028626799583],[121,89,78,-0.2406446486711502],[121,89,79,-0.2364622838795185],[121,90,64,-0.25216999650001526],[121,90,65,-0.25167401134967804],[121,90,66,-0.2500222250819206],[121,90,67,-0.24817512184381485],[121,90,68,-0.24727802723646164],[121,90,69,-0.24798472598195076],[121,90,70,-0.25001542270183563],[121,90,71,-0.252512838691473],[121,90,72,-0.25524354726076126],[121,90,73,-0.25716372579336166],[121,90,74,-0.257840171456337],[121,90,75,-0.2572312392294407],[121,90,76,-0.25528109073638916],[121,90,77,-0.25223278626799583],[121,90,78,-0.2484571486711502],[121,90,79,-0.2442747838795185],[121,91,64,-0.25998249650001526],[121,91,65,-0.25948651134967804],[121,91,66,-0.2578347250819206],[121,91,67,-0.25598762184381485],[121,91,68,-0.25509052723646164],[121,91,69,-0.25579722598195076],[121,91,70,-0.25782792270183563],[121,91,71,-0.260325338691473],[121,91,72,-0.26305604726076126],[121,91,73,-0.26497622579336166],[121,91,74,-0.265652671456337],[121,91,75,-0.2650437392294407],[121,91,76,-0.26309359073638916],[121,91,77,-0.26004528626799583],[121,91,78,-0.2562696486711502],[121,91,79,-0.2520872838795185],[121,92,64,-0.26779499650001526],[121,92,65,-0.26729901134967804],[121,92,66,-0.2656472250819206],[121,92,67,-0.26380012184381485],[121,92,68,-0.26290302723646164],[121,92,69,-0.26360972598195076],[121,92,70,-0.26564042270183563],[121,92,71,-0.268137838691473],[121,92,72,-0.27086854726076126],[121,92,73,-0.27278872579336166],[121,92,74,-0.273465171456337],[121,92,75,-0.2728562392294407],[121,92,76,-0.27090609073638916],[121,92,77,-0.26785778626799583],[121,92,78,-0.2640821486711502],[121,92,79,-0.2598997838795185],[121,93,64,-0.27560749650001526],[121,93,65,-0.27511151134967804],[121,93,66,-0.2734597250819206],[121,93,67,-0.27161262184381485],[121,93,68,-0.27071552723646164],[121,93,69,-0.27142222598195076],[121,93,70,-0.27345292270183563],[121,93,71,-0.275950338691473],[121,93,72,-0.27868104726076126],[121,93,73,-0.28060122579336166],[121,93,74,-0.281277671456337],[121,93,75,-0.2806687392294407],[121,93,76,-0.27871859073638916],[121,93,77,-0.27567028626799583],[121,93,78,-0.2718946486711502],[121,93,79,-0.2677122838795185],[121,94,64,-0.28341999650001526],[121,94,65,-0.28292401134967804],[121,94,66,-0.2812722250819206],[121,94,67,-0.27942512184381485],[121,94,68,-0.27852802723646164],[121,94,69,-0.27923472598195076],[121,94,70,-0.28126542270183563],[121,94,71,-0.283762838691473],[121,94,72,-0.28649354726076126],[121,94,73,-0.28841372579336166],[121,94,74,-0.289090171456337],[121,94,75,-0.2884812392294407],[121,94,76,-0.28653109073638916],[121,94,77,-0.28348278626799583],[121,94,78,-0.2797071486711502],[121,94,79,-0.2755247838795185],[121,95,64,-0.29123249650001526],[121,95,65,-0.29073651134967804],[121,95,66,-0.2890847250819206],[121,95,67,-0.28723762184381485],[121,95,68,-0.28634052723646164],[121,95,69,-0.28704722598195076],[121,95,70,-0.28907792270183563],[121,95,71,-0.291575338691473],[121,95,72,-0.29430604726076126],[121,95,73,-0.29622622579336166],[121,95,74,-0.296902671456337],[121,95,75,-0.2962937392294407],[121,95,76,-0.29434359073638916],[121,95,77,-0.29129528626799583],[121,95,78,-0.2875196486711502],[121,95,79,-0.2833372838795185],[121,96,64,-0.29904499650001526],[121,96,65,-0.29854901134967804],[121,96,66,-0.2968972250819206],[121,96,67,-0.29505012184381485],[121,96,68,-0.29415302723646164],[121,96,69,-0.29485972598195076],[121,96,70,-0.29689042270183563],[121,96,71,-0.299387838691473],[121,96,72,-0.30211854726076126],[121,96,73,-0.30403872579336166],[121,96,74,-0.304715171456337],[121,96,75,-0.3041062392294407],[121,96,76,-0.30215609073638916],[121,96,77,-0.29910778626799583],[121,96,78,-0.2953321486711502],[121,96,79,-0.2911497838795185],[121,97,64,-0.30685749650001526],[121,97,65,-0.30636151134967804],[121,97,66,-0.3047097250819206],[121,97,67,-0.30286262184381485],[121,97,68,-0.30196552723646164],[121,97,69,-0.30267222598195076],[121,97,70,-0.30470292270183563],[121,97,71,-0.307200338691473],[121,97,72,-0.30993104726076126],[121,97,73,-0.31185122579336166],[121,97,74,-0.312527671456337],[121,97,75,-0.3119187392294407],[121,97,76,-0.30996859073638916],[121,97,77,-0.30692028626799583],[121,97,78,-0.3031446486711502],[121,97,79,-0.2989622838795185],[121,98,64,-0.31466999650001526],[121,98,65,-0.31417401134967804],[121,98,66,-0.3125222250819206],[121,98,67,-0.31067512184381485],[121,98,68,-0.30977802723646164],[121,98,69,-0.31048472598195076],[121,98,70,-0.31251542270183563],[121,98,71,-0.315012838691473],[121,98,72,-0.31774354726076126],[121,98,73,-0.31966372579336166],[121,98,74,-0.320340171456337],[121,98,75,-0.3197312392294407],[121,98,76,-0.31778109073638916],[121,98,77,-0.31473278626799583],[121,98,78,-0.3109571486711502],[121,98,79,-0.3067747838795185],[121,99,64,-0.32248249650001526],[121,99,65,-0.32198651134967804],[121,99,66,-0.3203347250819206],[121,99,67,-0.31848762184381485],[121,99,68,-0.31759052723646164],[121,99,69,-0.31829722598195076],[121,99,70,-0.32032792270183563],[121,99,71,-0.322825338691473],[121,99,72,-0.32555604726076126],[121,99,73,-0.32747622579336166],[121,99,74,-0.328152671456337],[121,99,75,-0.3275437392294407],[121,99,76,-0.32559359073638916],[121,99,77,-0.32254528626799583],[121,99,78,-0.3187696486711502],[121,99,79,-0.3145872838795185],[121,100,64,-0.33029499650001526],[121,100,65,-0.32979901134967804],[121,100,66,-0.3281472250819206],[121,100,67,-0.32630012184381485],[121,100,68,-0.32540302723646164],[121,100,69,-0.32610972598195076],[121,100,70,-0.32814042270183563],[121,100,71,-0.330637838691473],[121,100,72,-0.33336854726076126],[121,100,73,-0.33528872579336166],[121,100,74,-0.335965171456337],[121,100,75,-0.3353562392294407],[121,100,76,-0.33340609073638916],[121,100,77,-0.33035778626799583],[121,100,78,-0.3265821486711502],[121,100,79,-0.3223997838795185],[121,101,64,-0.33810749650001526],[121,101,65,-0.33761151134967804],[121,101,66,-0.3359597250819206],[121,101,67,-0.33411262184381485],[121,101,68,-0.33321552723646164],[121,101,69,-0.33392222598195076],[121,101,70,-0.33595292270183563],[121,101,71,-0.338450338691473],[121,101,72,-0.34118104726076126],[121,101,73,-0.34310122579336166],[121,101,74,-0.343777671456337],[121,101,75,-0.3431687392294407],[121,101,76,-0.34121859073638916],[121,101,77,-0.33817028626799583],[121,101,78,-0.3343946486711502],[121,101,79,-0.3302122838795185],[121,102,64,-0.34591999650001526],[121,102,65,-0.34542401134967804],[121,102,66,-0.3437722250819206],[121,102,67,-0.34192512184381485],[121,102,68,-0.34102802723646164],[121,102,69,-0.34173472598195076],[121,102,70,-0.34376542270183563],[121,102,71,-0.346262838691473],[121,102,72,-0.34899354726076126],[121,102,73,-0.35091372579336166],[121,102,74,-0.351590171456337],[121,102,75,-0.3509812392294407],[121,102,76,-0.34903109073638916],[121,102,77,-0.34598278626799583],[121,102,78,-0.3422071486711502],[121,102,79,-0.3380247838795185],[121,103,64,-0.35373249650001526],[121,103,65,-0.35323651134967804],[121,103,66,-0.3515847250819206],[121,103,67,-0.34973762184381485],[121,103,68,-0.34884052723646164],[121,103,69,-0.34954722598195076],[121,103,70,-0.35157792270183563],[121,103,71,-0.354075338691473],[121,103,72,-0.35680604726076126],[121,103,73,-0.35872622579336166],[121,103,74,-0.359402671456337],[121,103,75,-0.3587937392294407],[121,103,76,-0.35684359073638916],[121,103,77,-0.35379528626799583],[121,103,78,-0.3500196486711502],[121,103,79,-0.3458372838795185],[121,104,64,-0.36154499650001526],[121,104,65,-0.36104901134967804],[121,104,66,-0.3593972250819206],[121,104,67,-0.35755012184381485],[121,104,68,-0.35665302723646164],[121,104,69,-0.35735972598195076],[121,104,70,-0.35939042270183563],[121,104,71,-0.361887838691473],[121,104,72,-0.36461854726076126],[121,104,73,-0.36653872579336166],[121,104,74,-0.367215171456337],[121,104,75,-0.3666062392294407],[121,104,76,-0.36465609073638916],[121,104,77,-0.36160778626799583],[121,104,78,-0.3578321486711502],[121,104,79,-0.3536497838795185],[121,105,64,-0.36935749650001526],[121,105,65,-0.36886151134967804],[121,105,66,-0.3672097250819206],[121,105,67,-0.36536262184381485],[121,105,68,-0.36446552723646164],[121,105,69,-0.36517222598195076],[121,105,70,-0.36720292270183563],[121,105,71,-0.369700338691473],[121,105,72,-0.37243104726076126],[121,105,73,-0.37435122579336166],[121,105,74,-0.375027671456337],[121,105,75,-0.3744187392294407],[121,105,76,-0.37246859073638916],[121,105,77,-0.36942028626799583],[121,105,78,-0.3656446486711502],[121,105,79,-0.3614622838795185],[121,106,64,-0.37716999650001526],[121,106,65,-0.37667401134967804],[121,106,66,-0.3750222250819206],[121,106,67,-0.37317512184381485],[121,106,68,-0.37227802723646164],[121,106,69,-0.37298472598195076],[121,106,70,-0.37501542270183563],[121,106,71,-0.377512838691473],[121,106,72,-0.38024354726076126],[121,106,73,-0.38216372579336166],[121,106,74,-0.382840171456337],[121,106,75,-0.3822312392294407],[121,106,76,-0.38028109073638916],[121,106,77,-0.37723278626799583],[121,106,78,-0.3734571486711502],[121,106,79,-0.3692747838795185],[121,107,64,-0.38498249650001526],[121,107,65,-0.38448651134967804],[121,107,66,-0.3828347250819206],[121,107,67,-0.38098762184381485],[121,107,68,-0.38009052723646164],[121,107,69,-0.38079722598195076],[121,107,70,-0.38282792270183563],[121,107,71,-0.385325338691473],[121,107,72,-0.38805604726076126],[121,107,73,-0.38997622579336166],[121,107,74,-0.390652671456337],[121,107,75,-0.3900437392294407],[121,107,76,-0.38809359073638916],[121,107,77,-0.38504528626799583],[121,107,78,-0.3812696486711502],[121,107,79,-0.3770872838795185],[121,108,64,-0.39279499650001526],[121,108,65,-0.39229901134967804],[121,108,66,-0.3906472250819206],[121,108,67,-0.38880012184381485],[121,108,68,-0.38790302723646164],[121,108,69,-0.38860972598195076],[121,108,70,-0.39064042270183563],[121,108,71,-0.393137838691473],[121,108,72,-0.39586854726076126],[121,108,73,-0.39778872579336166],[121,108,74,-0.398465171456337],[121,108,75,-0.3978562392294407],[121,108,76,-0.39590609073638916],[121,108,77,-0.39285778626799583],[121,108,78,-0.3890821486711502],[121,108,79,-0.3848997838795185],[121,109,64,-0.40060749650001526],[121,109,65,-0.40011151134967804],[121,109,66,-0.3984597250819206],[121,109,67,-0.39661262184381485],[121,109,68,-0.39571552723646164],[121,109,69,-0.39642222598195076],[121,109,70,-0.39845292270183563],[121,109,71,-0.400950338691473],[121,109,72,-0.40368104726076126],[121,109,73,-0.40560122579336166],[121,109,74,-0.406277671456337],[121,109,75,-0.4056687392294407],[121,109,76,-0.40371859073638916],[121,109,77,-0.40067028626799583],[121,109,78,-0.3968946486711502],[121,109,79,-0.3927122838795185],[121,110,64,-0.40841999650001526],[121,110,65,-0.40792401134967804],[121,110,66,-0.4062722250819206],[121,110,67,-0.40442512184381485],[121,110,68,-0.40352802723646164],[121,110,69,-0.40423472598195076],[121,110,70,-0.40626542270183563],[121,110,71,-0.408762838691473],[121,110,72,-0.41149354726076126],[121,110,73,-0.41341372579336166],[121,110,74,-0.414090171456337],[121,110,75,-0.4134812392294407],[121,110,76,-0.41153109073638916],[121,110,77,-0.40848278626799583],[121,110,78,-0.4047071486711502],[121,110,79,-0.4005247838795185],[121,111,64,-0.41623249650001526],[121,111,65,-0.41573651134967804],[121,111,66,-0.4140847250819206],[121,111,67,-0.41223762184381485],[121,111,68,-0.41134052723646164],[121,111,69,-0.41204722598195076],[121,111,70,-0.41407792270183563],[121,111,71,-0.416575338691473],[121,111,72,-0.41930604726076126],[121,111,73,-0.42122622579336166],[121,111,74,-0.421902671456337],[121,111,75,-0.4212937392294407],[121,111,76,-0.41934359073638916],[121,111,77,-0.41629528626799583],[121,111,78,-0.4125196486711502],[121,111,79,-0.4083372838795185],[121,112,64,-0.42404499650001526],[121,112,65,-0.42354901134967804],[121,112,66,-0.4218972250819206],[121,112,67,-0.42005012184381485],[121,112,68,-0.41915302723646164],[121,112,69,-0.41985972598195076],[121,112,70,-0.42189042270183563],[121,112,71,-0.424387838691473],[121,112,72,-0.42711854726076126],[121,112,73,-0.42903872579336166],[121,112,74,-0.429715171456337],[121,112,75,-0.4291062392294407],[121,112,76,-0.42715609073638916],[121,112,77,-0.42410778626799583],[121,112,78,-0.4203321486711502],[121,112,79,-0.4161497838795185],[121,113,64,-0.43185749650001526],[121,113,65,-0.43136151134967804],[121,113,66,-0.4297097250819206],[121,113,67,-0.42786262184381485],[121,113,68,-0.42696552723646164],[121,113,69,-0.42767222598195076],[121,113,70,-0.42970292270183563],[121,113,71,-0.432200338691473],[121,113,72,-0.43493104726076126],[121,113,73,-0.43685122579336166],[121,113,74,-0.437527671456337],[121,113,75,-0.4369187392294407],[121,113,76,-0.43496859073638916],[121,113,77,-0.43192028626799583],[121,113,78,-0.4281446486711502],[121,113,79,-0.4239622838795185],[121,114,64,-0.43966999650001526],[121,114,65,-0.43917401134967804],[121,114,66,-0.4375222250819206],[121,114,67,-0.43567512184381485],[121,114,68,-0.43477802723646164],[121,114,69,-0.43548472598195076],[121,114,70,-0.43751542270183563],[121,114,71,-0.440012838691473],[121,114,72,-0.44274354726076126],[121,114,73,-0.44466372579336166],[121,114,74,-0.445340171456337],[121,114,75,-0.4447312392294407],[121,114,76,-0.44278109073638916],[121,114,77,-0.43973278626799583],[121,114,78,-0.4359571486711502],[121,114,79,-0.4317747838795185],[121,115,64,-0.44748249650001526],[121,115,65,-0.44698651134967804],[121,115,66,-0.4453347250819206],[121,115,67,-0.44348762184381485],[121,115,68,-0.44259052723646164],[121,115,69,-0.44329722598195076],[121,115,70,-0.44532792270183563],[121,115,71,-0.447825338691473],[121,115,72,-0.45055604726076126],[121,115,73,-0.45247622579336166],[121,115,74,-0.453152671456337],[121,115,75,-0.4525437392294407],[121,115,76,-0.45059359073638916],[121,115,77,-0.44754528626799583],[121,115,78,-0.4437696486711502],[121,115,79,-0.4395872838795185],[121,116,64,-0.45529499650001526],[121,116,65,-0.45479901134967804],[121,116,66,-0.4531472250819206],[121,116,67,-0.45130012184381485],[121,116,68,-0.45040302723646164],[121,116,69,-0.45110972598195076],[121,116,70,-0.45314042270183563],[121,116,71,-0.455637838691473],[121,116,72,-0.45836854726076126],[121,116,73,-0.46028872579336166],[121,116,74,-0.460965171456337],[121,116,75,-0.4603562392294407],[121,116,76,-0.45840609073638916],[121,116,77,-0.45535778626799583],[121,116,78,-0.4515821486711502],[121,116,79,-0.4473997838795185],[121,117,64,-0.46310749650001526],[121,117,65,-0.46261151134967804],[121,117,66,-0.4609597250819206],[121,117,67,-0.45911262184381485],[121,117,68,-0.45821552723646164],[121,117,69,-0.45892222598195076],[121,117,70,-0.46095292270183563],[121,117,71,-0.463450338691473],[121,117,72,-0.46618104726076126],[121,117,73,-0.46810122579336166],[121,117,74,-0.468777671456337],[121,117,75,-0.4681687392294407],[121,117,76,-0.46621859073638916],[121,117,77,-0.46317028626799583],[121,117,78,-0.4593946486711502],[121,117,79,-0.4552122838795185],[121,118,64,-0.47091999650001526],[121,118,65,-0.47042401134967804],[121,118,66,-0.4687722250819206],[121,118,67,-0.46692512184381485],[121,118,68,-0.46602802723646164],[121,118,69,-0.46673472598195076],[121,118,70,-0.46876542270183563],[121,118,71,-0.471262838691473],[121,118,72,-0.47399354726076126],[121,118,73,-0.47591372579336166],[121,118,74,-0.476590171456337],[121,118,75,-0.4759812392294407],[121,118,76,-0.47403109073638916],[121,118,77,-0.47098278626799583],[121,118,78,-0.4672071486711502],[121,118,79,-0.4630247838795185],[121,119,64,-0.47873249650001526],[121,119,65,-0.47823651134967804],[121,119,66,-0.4765847250819206],[121,119,67,-0.47473762184381485],[121,119,68,-0.47384052723646164],[121,119,69,-0.47454722598195076],[121,119,70,-0.47657792270183563],[121,119,71,-0.479075338691473],[121,119,72,-0.48180604726076126],[121,119,73,-0.48372622579336166],[121,119,74,-0.484402671456337],[121,119,75,-0.4837937392294407],[121,119,76,-0.48184359073638916],[121,119,77,-0.47879528626799583],[121,119,78,-0.4750196486711502],[121,119,79,-0.4708372838795185],[121,120,64,-0.48654499650001526],[121,120,65,-0.48604901134967804],[121,120,66,-0.4843972250819206],[121,120,67,-0.48255012184381485],[121,120,68,-0.48165302723646164],[121,120,69,-0.48235972598195076],[121,120,70,-0.48439042270183563],[121,120,71,-0.486887838691473],[121,120,72,-0.48961854726076126],[121,120,73,-0.49153872579336166],[121,120,74,-0.492215171456337],[121,120,75,-0.4916062392294407],[121,120,76,-0.48965609073638916],[121,120,77,-0.48660778626799583],[121,120,78,-0.4828321486711502],[121,120,79,-0.4786497838795185],[121,121,64,-0.49435749650001526],[121,121,65,-0.49386151134967804],[121,121,66,-0.4922097250819206],[121,121,67,-0.49036262184381485],[121,121,68,-0.48946552723646164],[121,121,69,-0.49017222598195076],[121,121,70,-0.49220292270183563],[121,121,71,-0.494700338691473],[121,121,72,-0.49743104726076126],[121,121,73,-0.49935122579336166],[121,121,74,-0.500027671456337],[121,121,75,-0.4994187392294407],[121,121,76,-0.49746859073638916],[121,121,77,-0.49442028626799583],[121,121,78,-0.4906446486711502],[121,121,79,-0.4864622838795185],[121,122,64,-0.5021699965000153],[121,122,65,-0.501674011349678],[121,122,66,-0.5000222250819206],[121,122,67,-0.49817512184381485],[121,122,68,-0.49727802723646164],[121,122,69,-0.49798472598195076],[121,122,70,-0.5000154227018356],[121,122,71,-0.502512838691473],[121,122,72,-0.5052435472607613],[121,122,73,-0.5071637257933617],[121,122,74,-0.507840171456337],[121,122,75,-0.5072312392294407],[121,122,76,-0.5052810907363892],[121,122,77,-0.5022327862679958],[121,122,78,-0.4984571486711502],[121,122,79,-0.4942747838795185],[121,123,64,-0.5099824965000153],[121,123,65,-0.509486511349678],[121,123,66,-0.5078347250819206],[121,123,67,-0.5059876218438148],[121,123,68,-0.5050905272364616],[121,123,69,-0.5057972259819508],[121,123,70,-0.5078279227018356],[121,123,71,-0.510325338691473],[121,123,72,-0.5130560472607613],[121,123,73,-0.5149762257933617],[121,123,74,-0.515652671456337],[121,123,75,-0.5150437392294407],[121,123,76,-0.5130935907363892],[121,123,77,-0.5100452862679958],[121,123,78,-0.5062696486711502],[121,123,79,-0.5020872838795185],[121,124,64,-0.5177949965000153],[121,124,65,-0.517299011349678],[121,124,66,-0.5156472250819206],[121,124,67,-0.5138001218438148],[121,124,68,-0.5129030272364616],[121,124,69,-0.5136097259819508],[121,124,70,-0.5156404227018356],[121,124,71,-0.518137838691473],[121,124,72,-0.5208685472607613],[121,124,73,-0.5227887257933617],[121,124,74,-0.523465171456337],[121,124,75,-0.5228562392294407],[121,124,76,-0.5209060907363892],[121,124,77,-0.5178577862679958],[121,124,78,-0.5140821486711502],[121,124,79,-0.5098997838795185],[121,125,64,-0.5256074965000153],[121,125,65,-0.525111511349678],[121,125,66,-0.5234597250819206],[121,125,67,-0.5216126218438148],[121,125,68,-0.5207155272364616],[121,125,69,-0.5214222259819508],[121,125,70,-0.5234529227018356],[121,125,71,-0.525950338691473],[121,125,72,-0.5286810472607613],[121,125,73,-0.5306012257933617],[121,125,74,-0.531277671456337],[121,125,75,-0.5306687392294407],[121,125,76,-0.5287185907363892],[121,125,77,-0.5256702862679958],[121,125,78,-0.5218946486711502],[121,125,79,-0.5177122838795185],[121,126,64,-0.5334199965000153],[121,126,65,-0.532924011349678],[121,126,66,-0.5312722250819206],[121,126,67,-0.5294251218438148],[121,126,68,-0.5285280272364616],[121,126,69,-0.5292347259819508],[121,126,70,-0.5312654227018356],[121,126,71,-0.533762838691473],[121,126,72,-0.5364935472607613],[121,126,73,-0.5384137257933617],[121,126,74,-0.539090171456337],[121,126,75,-0.5384812392294407],[121,126,76,-0.5365310907363892],[121,126,77,-0.5334827862679958],[121,126,78,-0.5297071486711502],[121,126,79,-0.5255247838795185],[121,127,64,-0.5412324965000153],[121,127,65,-0.540736511349678],[121,127,66,-0.5390847250819206],[121,127,67,-0.5372376218438148],[121,127,68,-0.5363405272364616],[121,127,69,-0.5370472259819508],[121,127,70,-0.5390779227018356],[121,127,71,-0.541575338691473],[121,127,72,-0.5443060472607613],[121,127,73,-0.5462262257933617],[121,127,74,-0.546902671456337],[121,127,75,-0.5462937392294407],[121,127,76,-0.5443435907363892],[121,127,77,-0.5412952862679958],[121,127,78,-0.5375196486711502],[121,127,79,-0.5333372838795185],[121,128,64,-0.5490449965000153],[121,128,65,-0.548549011349678],[121,128,66,-0.5468972250819206],[121,128,67,-0.5450501218438148],[121,128,68,-0.5441530272364616],[121,128,69,-0.5448597259819508],[121,128,70,-0.5468904227018356],[121,128,71,-0.549387838691473],[121,128,72,-0.5521185472607613],[121,128,73,-0.5540387257933617],[121,128,74,-0.554715171456337],[121,128,75,-0.5541062392294407],[121,128,76,-0.5521560907363892],[121,128,77,-0.5491077862679958],[121,128,78,-0.5453321486711502],[121,128,79,-0.5411497838795185],[121,129,64,-0.5568574965000153],[121,129,65,-0.556361511349678],[121,129,66,-0.5547097250819206],[121,129,67,-0.5528626218438148],[121,129,68,-0.5519655272364616],[121,129,69,-0.5526722259819508],[121,129,70,-0.5547029227018356],[121,129,71,-0.557200338691473],[121,129,72,-0.5599310472607613],[121,129,73,-0.5618512257933617],[121,129,74,-0.562527671456337],[121,129,75,-0.5619187392294407],[121,129,76,-0.5599685907363892],[121,129,77,-0.5569202862679958],[121,129,78,-0.5531446486711502],[121,129,79,-0.5489622838795185],[121,130,64,-0.5646699965000153],[121,130,65,-0.564174011349678],[121,130,66,-0.5625222250819206],[121,130,67,-0.5606751218438148],[121,130,68,-0.5597780272364616],[121,130,69,-0.5604847259819508],[121,130,70,-0.5625154227018356],[121,130,71,-0.565012838691473],[121,130,72,-0.5677435472607613],[121,130,73,-0.5696637257933617],[121,130,74,-0.570340171456337],[121,130,75,-0.5697312392294407],[121,130,76,-0.5677810907363892],[121,130,77,-0.5647327862679958],[121,130,78,-0.5609571486711502],[121,130,79,-0.5567747838795185],[121,131,64,-0.5724824965000153],[121,131,65,-0.571986511349678],[121,131,66,-0.5703347250819206],[121,131,67,-0.5684876218438148],[121,131,68,-0.5675905272364616],[121,131,69,-0.5682972259819508],[121,131,70,-0.5703279227018356],[121,131,71,-0.572825338691473],[121,131,72,-0.5755560472607613],[121,131,73,-0.5774762257933617],[121,131,74,-0.578152671456337],[121,131,75,-0.5775437392294407],[121,131,76,-0.5755935907363892],[121,131,77,-0.5725452862679958],[121,131,78,-0.5687696486711502],[121,131,79,-0.5645872838795185],[121,132,64,-0.5802949965000153],[121,132,65,-0.579799011349678],[121,132,66,-0.5781472250819206],[121,132,67,-0.5763001218438148],[121,132,68,-0.5754030272364616],[121,132,69,-0.5761097259819508],[121,132,70,-0.5781404227018356],[121,132,71,-0.580637838691473],[121,132,72,-0.5833685472607613],[121,132,73,-0.5852887257933617],[121,132,74,-0.585965171456337],[121,132,75,-0.5853562392294407],[121,132,76,-0.5834060907363892],[121,132,77,-0.5803577862679958],[121,132,78,-0.5765821486711502],[121,132,79,-0.5723997838795185],[121,133,64,-0.5881074965000153],[121,133,65,-0.587611511349678],[121,133,66,-0.5859597250819206],[121,133,67,-0.5841126218438148],[121,133,68,-0.5832155272364616],[121,133,69,-0.5839222259819508],[121,133,70,-0.5859529227018356],[121,133,71,-0.588450338691473],[121,133,72,-0.5911810472607613],[121,133,73,-0.5931012257933617],[121,133,74,-0.593777671456337],[121,133,75,-0.5931687392294407],[121,133,76,-0.5912185907363892],[121,133,77,-0.5881702862679958],[121,133,78,-0.5843946486711502],[121,133,79,-0.5802122838795185],[121,134,64,-0.5959199965000153],[121,134,65,-0.595424011349678],[121,134,66,-0.5937722250819206],[121,134,67,-0.5919251218438148],[121,134,68,-0.5910280272364616],[121,134,69,-0.5917347259819508],[121,134,70,-0.5937654227018356],[121,134,71,-0.596262838691473],[121,134,72,-0.5989935472607613],[121,134,73,-0.6009137257933617],[121,134,74,-0.601590171456337],[121,134,75,-0.6009812392294407],[121,134,76,-0.5990310907363892],[121,134,77,-0.5959827862679958],[121,134,78,-0.5922071486711502],[121,134,79,-0.5880247838795185],[121,135,64,-0.6037324965000153],[121,135,65,-0.603236511349678],[121,135,66,-0.6015847250819206],[121,135,67,-0.5997376218438148],[121,135,68,-0.5988405272364616],[121,135,69,-0.5995472259819508],[121,135,70,-0.6015779227018356],[121,135,71,-0.604075338691473],[121,135,72,-0.6068060472607613],[121,135,73,-0.6087262257933617],[121,135,74,-0.609402671456337],[121,135,75,-0.6087937392294407],[121,135,76,-0.6068435907363892],[121,135,77,-0.6037952862679958],[121,135,78,-0.6000196486711502],[121,135,79,-0.5958372838795185],[121,136,64,-0.6115449965000153],[121,136,65,-0.611049011349678],[121,136,66,-0.6093972250819206],[121,136,67,-0.6075501218438148],[121,136,68,-0.6066530272364616],[121,136,69,-0.6073597259819508],[121,136,70,-0.6093904227018356],[121,136,71,-0.611887838691473],[121,136,72,-0.6146185472607613],[121,136,73,-0.6165387257933617],[121,136,74,-0.617215171456337],[121,136,75,-0.6166062392294407],[121,136,76,-0.6146560907363892],[121,136,77,-0.6116077862679958],[121,136,78,-0.6078321486711502],[121,136,79,-0.6036497838795185],[121,137,64,-0.6193574965000153],[121,137,65,-0.618861511349678],[121,137,66,-0.6172097250819206],[121,137,67,-0.6153626218438148],[121,137,68,-0.6144655272364616],[121,137,69,-0.6151722259819508],[121,137,70,-0.6172029227018356],[121,137,71,-0.619700338691473],[121,137,72,-0.6224310472607613],[121,137,73,-0.6243512257933617],[121,137,74,-0.625027671456337],[121,137,75,-0.6244187392294407],[121,137,76,-0.6224685907363892],[121,137,77,-0.6194202862679958],[121,137,78,-0.6156446486711502],[121,137,79,-0.6114622838795185],[121,138,64,-0.6271699965000153],[121,138,65,-0.626674011349678],[121,138,66,-0.6250222250819206],[121,138,67,-0.6231751218438148],[121,138,68,-0.6222780272364616],[121,138,69,-0.6229847259819508],[121,138,70,-0.6250154227018356],[121,138,71,-0.627512838691473],[121,138,72,-0.6302435472607613],[121,138,73,-0.6321637257933617],[121,138,74,-0.632840171456337],[121,138,75,-0.6322312392294407],[121,138,76,-0.6302810907363892],[121,138,77,-0.6272327862679958],[121,138,78,-0.6234571486711502],[121,138,79,-0.6192747838795185],[121,139,64,-0.6349824965000153],[121,139,65,-0.634486511349678],[121,139,66,-0.6328347250819206],[121,139,67,-0.6309876218438148],[121,139,68,-0.6300905272364616],[121,139,69,-0.6307972259819508],[121,139,70,-0.6328279227018356],[121,139,71,-0.635325338691473],[121,139,72,-0.6380560472607613],[121,139,73,-0.6399762257933617],[121,139,74,-0.640652671456337],[121,139,75,-0.6400437392294407],[121,139,76,-0.6380935907363892],[121,139,77,-0.6350452862679958],[121,139,78,-0.6312696486711502],[121,139,79,-0.6270872838795185],[121,140,64,-0.6427949965000153],[121,140,65,-0.642299011349678],[121,140,66,-0.6406472250819206],[121,140,67,-0.6388001218438148],[121,140,68,-0.6379030272364616],[121,140,69,-0.6386097259819508],[121,140,70,-0.6406404227018356],[121,140,71,-0.643137838691473],[121,140,72,-0.6458685472607613],[121,140,73,-0.6477887257933617],[121,140,74,-0.648465171456337],[121,140,75,-0.6478562392294407],[121,140,76,-0.6459060907363892],[121,140,77,-0.6428577862679958],[121,140,78,-0.6390821486711502],[121,140,79,-0.6348997838795185],[121,141,64,-0.6506074965000153],[121,141,65,-0.650111511349678],[121,141,66,-0.6484597250819206],[121,141,67,-0.6466126218438148],[121,141,68,-0.6457155272364616],[121,141,69,-0.6464222259819508],[121,141,70,-0.6484529227018356],[121,141,71,-0.650950338691473],[121,141,72,-0.6536810472607613],[121,141,73,-0.6556012257933617],[121,141,74,-0.656277671456337],[121,141,75,-0.6556687392294407],[121,141,76,-0.6537185907363892],[121,141,77,-0.6506702862679958],[121,141,78,-0.6468946486711502],[121,141,79,-0.6427122838795185],[121,142,64,-0.6584199965000153],[121,142,65,-0.657924011349678],[121,142,66,-0.6562722250819206],[121,142,67,-0.6544251218438148],[121,142,68,-0.6535280272364616],[121,142,69,-0.6542347259819508],[121,142,70,-0.6562654227018356],[121,142,71,-0.658762838691473],[121,142,72,-0.6614935472607613],[121,142,73,-0.6634137257933617],[121,142,74,-0.664090171456337],[121,142,75,-0.6634812392294407],[121,142,76,-0.6615310907363892],[121,142,77,-0.6584827862679958],[121,142,78,-0.6547071486711502],[121,142,79,-0.6505247838795185],[121,143,64,-0.6662324965000153],[121,143,65,-0.665736511349678],[121,143,66,-0.6640847250819206],[121,143,67,-0.6622376218438148],[121,143,68,-0.6613405272364616],[121,143,69,-0.6620472259819508],[121,143,70,-0.6640779227018356],[121,143,71,-0.666575338691473],[121,143,72,-0.6693060472607613],[121,143,73,-0.6712262257933617],[121,143,74,-0.671902671456337],[121,143,75,-0.6712937392294407],[121,143,76,-0.6693435907363892],[121,143,77,-0.6662952862679958],[121,143,78,-0.6625196486711502],[121,143,79,-0.6583372838795185],[121,144,64,-0.6740449965000153],[121,144,65,-0.673549011349678],[121,144,66,-0.6718972250819206],[121,144,67,-0.6700501218438148],[121,144,68,-0.6691530272364616],[121,144,69,-0.6698597259819508],[121,144,70,-0.6718904227018356],[121,144,71,-0.674387838691473],[121,144,72,-0.6771185472607613],[121,144,73,-0.6790387257933617],[121,144,74,-0.679715171456337],[121,144,75,-0.6791062392294407],[121,144,76,-0.6771560907363892],[121,144,77,-0.6741077862679958],[121,144,78,-0.6703321486711502],[121,144,79,-0.6661497838795185],[121,145,64,-0.6818574965000153],[121,145,65,-0.681361511349678],[121,145,66,-0.6797097250819206],[121,145,67,-0.6778626218438148],[121,145,68,-0.6769655272364616],[121,145,69,-0.6776722259819508],[121,145,70,-0.6797029227018356],[121,145,71,-0.682200338691473],[121,145,72,-0.6849310472607613],[121,145,73,-0.6868512257933617],[121,145,74,-0.687527671456337],[121,145,75,-0.6869187392294407],[121,145,76,-0.6849685907363892],[121,145,77,-0.6819202862679958],[121,145,78,-0.6781446486711502],[121,145,79,-0.6739622838795185],[121,146,64,-0.6896699965000153],[121,146,65,-0.689174011349678],[121,146,66,-0.6875222250819206],[121,146,67,-0.6856751218438148],[121,146,68,-0.6847780272364616],[121,146,69,-0.6854847259819508],[121,146,70,-0.6875154227018356],[121,146,71,-0.690012838691473],[121,146,72,-0.6927435472607613],[121,146,73,-0.6946637257933617],[121,146,74,-0.695340171456337],[121,146,75,-0.6947312392294407],[121,146,76,-0.6927810907363892],[121,146,77,-0.6897327862679958],[121,146,78,-0.6859571486711502],[121,146,79,-0.6817747838795185],[121,147,64,-0.6974824965000153],[121,147,65,-0.696986511349678],[121,147,66,-0.6953347250819206],[121,147,67,-0.6934876218438148],[121,147,68,-0.6925905272364616],[121,147,69,-0.6932972259819508],[121,147,70,-0.6953279227018356],[121,147,71,-0.697825338691473],[121,147,72,-0.7005560472607613],[121,147,73,-0.7024762257933617],[121,147,74,-0.703152671456337],[121,147,75,-0.7025437392294407],[121,147,76,-0.7005935907363892],[121,147,77,-0.6975452862679958],[121,147,78,-0.6937696486711502],[121,147,79,-0.6895872838795185],[121,148,64,-0.7052949965000153],[121,148,65,-0.704799011349678],[121,148,66,-0.7031472250819206],[121,148,67,-0.7013001218438148],[121,148,68,-0.7004030272364616],[121,148,69,-0.7011097259819508],[121,148,70,-0.7031404227018356],[121,148,71,-0.705637838691473],[121,148,72,-0.7083685472607613],[121,148,73,-0.7102887257933617],[121,148,74,-0.710965171456337],[121,148,75,-0.7103562392294407],[121,148,76,-0.7084060907363892],[121,148,77,-0.7053577862679958],[121,148,78,-0.7015821486711502],[121,148,79,-0.6973997838795185],[121,149,64,-0.7131074965000153],[121,149,65,-0.712611511349678],[121,149,66,-0.7109597250819206],[121,149,67,-0.7091126218438148],[121,149,68,-0.7082155272364616],[121,149,69,-0.7089222259819508],[121,149,70,-0.7109529227018356],[121,149,71,-0.713450338691473],[121,149,72,-0.7161810472607613],[121,149,73,-0.7181012257933617],[121,149,74,-0.718777671456337],[121,149,75,-0.7181687392294407],[121,149,76,-0.7162185907363892],[121,149,77,-0.7131702862679958],[121,149,78,-0.7093946486711502],[121,149,79,-0.7052122838795185],[121,150,64,-0.7209199965000153],[121,150,65,-0.720424011349678],[121,150,66,-0.7187722250819206],[121,150,67,-0.7169251218438148],[121,150,68,-0.7160280272364616],[121,150,69,-0.7167347259819508],[121,150,70,-0.7187654227018356],[121,150,71,-0.721262838691473],[121,150,72,-0.7239935472607613],[121,150,73,-0.7259137257933617],[121,150,74,-0.726590171456337],[121,150,75,-0.7259812392294407],[121,150,76,-0.7240310907363892],[121,150,77,-0.7209827862679958],[121,150,78,-0.7172071486711502],[121,150,79,-0.7130247838795185],[121,151,64,-0.7287324965000153],[121,151,65,-0.728236511349678],[121,151,66,-0.7265847250819206],[121,151,67,-0.7247376218438148],[121,151,68,-0.7238405272364616],[121,151,69,-0.7245472259819508],[121,151,70,-0.7265779227018356],[121,151,71,-0.729075338691473],[121,151,72,-0.7318060472607613],[121,151,73,-0.7337262257933617],[121,151,74,-0.734402671456337],[121,151,75,-0.7337937392294407],[121,151,76,-0.7318435907363892],[121,151,77,-0.7287952862679958],[121,151,78,-0.7250196486711502],[121,151,79,-0.7208372838795185],[121,152,64,-0.7365449965000153],[121,152,65,-0.736049011349678],[121,152,66,-0.7343972250819206],[121,152,67,-0.7325501218438148],[121,152,68,-0.7316530272364616],[121,152,69,-0.7323597259819508],[121,152,70,-0.7343904227018356],[121,152,71,-0.736887838691473],[121,152,72,-0.7396185472607613],[121,152,73,-0.7415387257933617],[121,152,74,-0.742215171456337],[121,152,75,-0.7416062392294407],[121,152,76,-0.7396560907363892],[121,152,77,-0.7366077862679958],[121,152,78,-0.7328321486711502],[121,152,79,-0.7286497838795185],[121,153,64,-0.7443574965000153],[121,153,65,-0.743861511349678],[121,153,66,-0.7422097250819206],[121,153,67,-0.7403626218438148],[121,153,68,-0.7394655272364616],[121,153,69,-0.7401722259819508],[121,153,70,-0.7422029227018356],[121,153,71,-0.744700338691473],[121,153,72,-0.7474310472607613],[121,153,73,-0.7493512257933617],[121,153,74,-0.750027671456337],[121,153,75,-0.7494187392294407],[121,153,76,-0.7474685907363892],[121,153,77,-0.7444202862679958],[121,153,78,-0.7406446486711502],[121,153,79,-0.7364622838795185],[121,154,64,-0.7521699965000153],[121,154,65,-0.751674011349678],[121,154,66,-0.7500222250819206],[121,154,67,-0.7481751218438148],[121,154,68,-0.7472780272364616],[121,154,69,-0.7479847259819508],[121,154,70,-0.7500154227018356],[121,154,71,-0.752512838691473],[121,154,72,-0.7552435472607613],[121,154,73,-0.7571637257933617],[121,154,74,-0.757840171456337],[121,154,75,-0.7572312392294407],[121,154,76,-0.7552810907363892],[121,154,77,-0.7522327862679958],[121,154,78,-0.7484571486711502],[121,154,79,-0.7442747838795185],[121,155,64,-0.7599824965000153],[121,155,65,-0.759486511349678],[121,155,66,-0.7578347250819206],[121,155,67,-0.7559876218438148],[121,155,68,-0.7550905272364616],[121,155,69,-0.7557972259819508],[121,155,70,-0.7578279227018356],[121,155,71,-0.760325338691473],[121,155,72,-0.7630560472607613],[121,155,73,-0.7649762257933617],[121,155,74,-0.765652671456337],[121,155,75,-0.7650437392294407],[121,155,76,-0.7630935907363892],[121,155,77,-0.7600452862679958],[121,155,78,-0.7562696486711502],[121,155,79,-0.7520872838795185],[121,156,64,-0.7677949965000153],[121,156,65,-0.767299011349678],[121,156,66,-0.7656472250819206],[121,156,67,-0.7638001218438148],[121,156,68,-0.7629030272364616],[121,156,69,-0.7636097259819508],[121,156,70,-0.7656404227018356],[121,156,71,-0.768137838691473],[121,156,72,-0.7708685472607613],[121,156,73,-0.7727887257933617],[121,156,74,-0.773465171456337],[121,156,75,-0.7728562392294407],[121,156,76,-0.7709060907363892],[121,156,77,-0.7678577862679958],[121,156,78,-0.7640821486711502],[121,156,79,-0.7598997838795185],[121,157,64,-0.7756074965000153],[121,157,65,-0.775111511349678],[121,157,66,-0.7734597250819206],[121,157,67,-0.7716126218438148],[121,157,68,-0.7707155272364616],[121,157,69,-0.7714222259819508],[121,157,70,-0.7734529227018356],[121,157,71,-0.775950338691473],[121,157,72,-0.7786810472607613],[121,157,73,-0.7806012257933617],[121,157,74,-0.781277671456337],[121,157,75,-0.7806687392294407],[121,157,76,-0.7787185907363892],[121,157,77,-0.7756702862679958],[121,157,78,-0.7718946486711502],[121,157,79,-0.7677122838795185],[121,158,64,-0.7834199965000153],[121,158,65,-0.782924011349678],[121,158,66,-0.7812722250819206],[121,158,67,-0.7794251218438148],[121,158,68,-0.7785280272364616],[121,158,69,-0.7792347259819508],[121,158,70,-0.7812654227018356],[121,158,71,-0.783762838691473],[121,158,72,-0.7864935472607613],[121,158,73,-0.7884137257933617],[121,158,74,-0.789090171456337],[121,158,75,-0.7884812392294407],[121,158,76,-0.7865310907363892],[121,158,77,-0.7834827862679958],[121,158,78,-0.7797071486711502],[121,158,79,-0.7755247838795185],[121,159,64,-0.7912324965000153],[121,159,65,-0.790736511349678],[121,159,66,-0.7890847250819206],[121,159,67,-0.7872376218438148],[121,159,68,-0.7863405272364616],[121,159,69,-0.7870472259819508],[121,159,70,-0.7890779227018356],[121,159,71,-0.791575338691473],[121,159,72,-0.7943060472607613],[121,159,73,-0.7962262257933617],[121,159,74,-0.796902671456337],[121,159,75,-0.7962937392294407],[121,159,76,-0.7943435907363892],[121,159,77,-0.7912952862679958],[121,159,78,-0.7875196486711502],[121,159,79,-0.7833372838795185],[121,160,64,-0.7990449965000153],[121,160,65,-0.798549011349678],[121,160,66,-0.7968972250819206],[121,160,67,-0.7950501218438148],[121,160,68,-0.7941530272364616],[121,160,69,-0.7948597259819508],[121,160,70,-0.7968904227018356],[121,160,71,-0.799387838691473],[121,160,72,-0.8021185472607613],[121,160,73,-0.8040387257933617],[121,160,74,-0.804715171456337],[121,160,75,-0.8041062392294407],[121,160,76,-0.8021560907363892],[121,160,77,-0.7991077862679958],[121,160,78,-0.7953321486711502],[121,160,79,-0.7911497838795185],[121,161,64,-0.8068574965000153],[121,161,65,-0.806361511349678],[121,161,66,-0.8047097250819206],[121,161,67,-0.8028626218438148],[121,161,68,-0.8019655272364616],[121,161,69,-0.8026722259819508],[121,161,70,-0.8047029227018356],[121,161,71,-0.807200338691473],[121,161,72,-0.8099310472607613],[121,161,73,-0.8118512257933617],[121,161,74,-0.812527671456337],[121,161,75,-0.8119187392294407],[121,161,76,-0.8099685907363892],[121,161,77,-0.8069202862679958],[121,161,78,-0.8031446486711502],[121,161,79,-0.7989622838795185],[121,162,64,-0.8146699965000153],[121,162,65,-0.814174011349678],[121,162,66,-0.8125222250819206],[121,162,67,-0.8106751218438148],[121,162,68,-0.8097780272364616],[121,162,69,-0.8104847259819508],[121,162,70,-0.8125154227018356],[121,162,71,-0.815012838691473],[121,162,72,-0.8177435472607613],[121,162,73,-0.8196637257933617],[121,162,74,-0.820340171456337],[121,162,75,-0.8197312392294407],[121,162,76,-0.8177810907363892],[121,162,77,-0.8147327862679958],[121,162,78,-0.8109571486711502],[121,162,79,-0.8067747838795185],[121,163,64,-0.8224824965000153],[121,163,65,-0.821986511349678],[121,163,66,-0.8203347250819206],[121,163,67,-0.8184876218438148],[121,163,68,-0.8175905272364616],[121,163,69,-0.8182972259819508],[121,163,70,-0.8203279227018356],[121,163,71,-0.822825338691473],[121,163,72,-0.8255560472607613],[121,163,73,-0.8274762257933617],[121,163,74,-0.828152671456337],[121,163,75,-0.8275437392294407],[121,163,76,-0.8255935907363892],[121,163,77,-0.8225452862679958],[121,163,78,-0.8187696486711502],[121,163,79,-0.8145872838795185],[121,164,64,-0.8302949965000153],[121,164,65,-0.829799011349678],[121,164,66,-0.8281472250819206],[121,164,67,-0.8263001218438148],[121,164,68,-0.8254030272364616],[121,164,69,-0.8261097259819508],[121,164,70,-0.8281404227018356],[121,164,71,-0.830637838691473],[121,164,72,-0.8333685472607613],[121,164,73,-0.8352887257933617],[121,164,74,-0.835965171456337],[121,164,75,-0.8353562392294407],[121,164,76,-0.8334060907363892],[121,164,77,-0.8303577862679958],[121,164,78,-0.8265821486711502],[121,164,79,-0.8223997838795185],[121,165,64,-0.8381074965000153],[121,165,65,-0.837611511349678],[121,165,66,-0.8359597250819206],[121,165,67,-0.8341126218438148],[121,165,68,-0.8332155272364616],[121,165,69,-0.8339222259819508],[121,165,70,-0.8359529227018356],[121,165,71,-0.838450338691473],[121,165,72,-0.8411810472607613],[121,165,73,-0.8431012257933617],[121,165,74,-0.843777671456337],[121,165,75,-0.8431687392294407],[121,165,76,-0.8412185907363892],[121,165,77,-0.8381702862679958],[121,165,78,-0.8343946486711502],[121,165,79,-0.8302122838795185],[121,166,64,-0.8459199965000153],[121,166,65,-0.845424011349678],[121,166,66,-0.8437722250819206],[121,166,67,-0.8419251218438148],[121,166,68,-0.8410280272364616],[121,166,69,-0.8417347259819508],[121,166,70,-0.8437654227018356],[121,166,71,-0.846262838691473],[121,166,72,-0.8489935472607613],[121,166,73,-0.8509137257933617],[121,166,74,-0.851590171456337],[121,166,75,-0.8509812392294407],[121,166,76,-0.8490310907363892],[121,166,77,-0.8459827862679958],[121,166,78,-0.8422071486711502],[121,166,79,-0.8380247838795185],[121,167,64,-0.8537324965000153],[121,167,65,-0.853236511349678],[121,167,66,-0.8515847250819206],[121,167,67,-0.8497376218438148],[121,167,68,-0.8488405272364616],[121,167,69,-0.8495472259819508],[121,167,70,-0.8515779227018356],[121,167,71,-0.854075338691473],[121,167,72,-0.8568060472607613],[121,167,73,-0.8587262257933617],[121,167,74,-0.859402671456337],[121,167,75,-0.8587937392294407],[121,167,76,-0.8568435907363892],[121,167,77,-0.8537952862679958],[121,167,78,-0.8500196486711502],[121,167,79,-0.8458372838795185],[121,168,64,-0.8615449965000153],[121,168,65,-0.861049011349678],[121,168,66,-0.8593972250819206],[121,168,67,-0.8575501218438148],[121,168,68,-0.8566530272364616],[121,168,69,-0.8573597259819508],[121,168,70,-0.8593904227018356],[121,168,71,-0.861887838691473],[121,168,72,-0.8646185472607613],[121,168,73,-0.8665387257933617],[121,168,74,-0.867215171456337],[121,168,75,-0.8666062392294407],[121,168,76,-0.8646560907363892],[121,168,77,-0.8616077862679958],[121,168,78,-0.8578321486711502],[121,168,79,-0.8536497838795185],[121,169,64,-0.8693574965000153],[121,169,65,-0.868861511349678],[121,169,66,-0.8672097250819206],[121,169,67,-0.8653626218438148],[121,169,68,-0.8644655272364616],[121,169,69,-0.8651722259819508],[121,169,70,-0.8672029227018356],[121,169,71,-0.869700338691473],[121,169,72,-0.8724310472607613],[121,169,73,-0.8743512257933617],[121,169,74,-0.875027671456337],[121,169,75,-0.8744187392294407],[121,169,76,-0.8724685907363892],[121,169,77,-0.8694202862679958],[121,169,78,-0.8656446486711502],[121,169,79,-0.8614622838795185],[121,170,64,-0.8771699965000153],[121,170,65,-0.876674011349678],[121,170,66,-0.8750222250819206],[121,170,67,-0.8731751218438148],[121,170,68,-0.8722780272364616],[121,170,69,-0.8729847259819508],[121,170,70,-0.8750154227018356],[121,170,71,-0.877512838691473],[121,170,72,-0.8802435472607613],[121,170,73,-0.8821637257933617],[121,170,74,-0.882840171456337],[121,170,75,-0.8822312392294407],[121,170,76,-0.8802810907363892],[121,170,77,-0.8772327862679958],[121,170,78,-0.8734571486711502],[121,170,79,-0.8692747838795185],[121,171,64,-0.8849824965000153],[121,171,65,-0.884486511349678],[121,171,66,-0.8828347250819206],[121,171,67,-0.8809876218438148],[121,171,68,-0.8800905272364616],[121,171,69,-0.8807972259819508],[121,171,70,-0.8828279227018356],[121,171,71,-0.885325338691473],[121,171,72,-0.8880560472607613],[121,171,73,-0.8899762257933617],[121,171,74,-0.890652671456337],[121,171,75,-0.8900437392294407],[121,171,76,-0.8880935907363892],[121,171,77,-0.8850452862679958],[121,171,78,-0.8812696486711502],[121,171,79,-0.8770872838795185],[121,172,64,-0.8927949965000153],[121,172,65,-0.892299011349678],[121,172,66,-0.8906472250819206],[121,172,67,-0.8888001218438148],[121,172,68,-0.8879030272364616],[121,172,69,-0.8886097259819508],[121,172,70,-0.8906404227018356],[121,172,71,-0.893137838691473],[121,172,72,-0.8958685472607613],[121,172,73,-0.8977887257933617],[121,172,74,-0.898465171456337],[121,172,75,-0.8978562392294407],[121,172,76,-0.8959060907363892],[121,172,77,-0.8928577862679958],[121,172,78,-0.8890821486711502],[121,172,79,-0.8848997838795185],[121,173,64,-0.9006074965000153],[121,173,65,-0.900111511349678],[121,173,66,-0.8984597250819206],[121,173,67,-0.8966126218438148],[121,173,68,-0.8957155272364616],[121,173,69,-0.8964222259819508],[121,173,70,-0.8984529227018356],[121,173,71,-0.900950338691473],[121,173,72,-0.9036810472607613],[121,173,73,-0.9056012257933617],[121,173,74,-0.906277671456337],[121,173,75,-0.9056687392294407],[121,173,76,-0.9037185907363892],[121,173,77,-0.9006702862679958],[121,173,78,-0.8968946486711502],[121,173,79,-0.8927122838795185],[121,174,64,-0.9084199965000153],[121,174,65,-0.907924011349678],[121,174,66,-0.9062722250819206],[121,174,67,-0.9044251218438148],[121,174,68,-0.9035280272364616],[121,174,69,-0.9042347259819508],[121,174,70,-0.9062654227018356],[121,174,71,-0.908762838691473],[121,174,72,-0.9114935472607613],[121,174,73,-0.9134137257933617],[121,174,74,-0.914090171456337],[121,174,75,-0.9134812392294407],[121,174,76,-0.9115310907363892],[121,174,77,-0.9084827862679958],[121,174,78,-0.9047071486711502],[121,174,79,-0.9005247838795185],[121,175,64,-0.9162324965000153],[121,175,65,-0.915736511349678],[121,175,66,-0.9140847250819206],[121,175,67,-0.9122376218438148],[121,175,68,-0.9113405272364616],[121,175,69,-0.9120472259819508],[121,175,70,-0.9140779227018356],[121,175,71,-0.916575338691473],[121,175,72,-0.9193060472607613],[121,175,73,-0.9212262257933617],[121,175,74,-0.921902671456337],[121,175,75,-0.9212937392294407],[121,175,76,-0.9193435907363892],[121,175,77,-0.9162952862679958],[121,175,78,-0.9125196486711502],[121,175,79,-0.9083372838795185],[121,176,64,-0.9240449965000153],[121,176,65,-0.923549011349678],[121,176,66,-0.9218972250819206],[121,176,67,-0.9200501218438148],[121,176,68,-0.9191530272364616],[121,176,69,-0.9198597259819508],[121,176,70,-0.9218904227018356],[121,176,71,-0.924387838691473],[121,176,72,-0.9271185472607613],[121,176,73,-0.9290387257933617],[121,176,74,-0.929715171456337],[121,176,75,-0.9291062392294407],[121,176,76,-0.9271560907363892],[121,176,77,-0.9241077862679958],[121,176,78,-0.9203321486711502],[121,176,79,-0.9161497838795185],[121,177,64,-0.9318574965000153],[121,177,65,-0.931361511349678],[121,177,66,-0.9297097250819206],[121,177,67,-0.9278626218438148],[121,177,68,-0.9269655272364616],[121,177,69,-0.9276722259819508],[121,177,70,-0.9297029227018356],[121,177,71,-0.932200338691473],[121,177,72,-0.9349310472607613],[121,177,73,-0.9368512257933617],[121,177,74,-0.937527671456337],[121,177,75,-0.9369187392294407],[121,177,76,-0.9349685907363892],[121,177,77,-0.9319202862679958],[121,177,78,-0.9281446486711502],[121,177,79,-0.9239622838795185],[121,178,64,-0.9396699965000153],[121,178,65,-0.939174011349678],[121,178,66,-0.9375222250819206],[121,178,67,-0.9356751218438148],[121,178,68,-0.9347780272364616],[121,178,69,-0.9354847259819508],[121,178,70,-0.9375154227018356],[121,178,71,-0.940012838691473],[121,178,72,-0.9427435472607613],[121,178,73,-0.9446637257933617],[121,178,74,-0.945340171456337],[121,178,75,-0.9447312392294407],[121,178,76,-0.9427810907363892],[121,178,77,-0.9397327862679958],[121,178,78,-0.9359571486711502],[121,178,79,-0.9317747838795185],[121,179,64,-0.9474824965000153],[121,179,65,-0.946986511349678],[121,179,66,-0.9453347250819206],[121,179,67,-0.9434876218438148],[121,179,68,-0.9425905272364616],[121,179,69,-0.9432972259819508],[121,179,70,-0.9453279227018356],[121,179,71,-0.947825338691473],[121,179,72,-0.9505560472607613],[121,179,73,-0.9524762257933617],[121,179,74,-0.953152671456337],[121,179,75,-0.9525437392294407],[121,179,76,-0.9505935907363892],[121,179,77,-0.9475452862679958],[121,179,78,-0.9437696486711502],[121,179,79,-0.9395872838795185],[121,180,64,-0.9552949965000153],[121,180,65,-0.954799011349678],[121,180,66,-0.9531472250819206],[121,180,67,-0.9513001218438148],[121,180,68,-0.9504030272364616],[121,180,69,-0.9511097259819508],[121,180,70,-0.9531404227018356],[121,180,71,-0.955637838691473],[121,180,72,-0.9583685472607613],[121,180,73,-0.9602887257933617],[121,180,74,-0.960965171456337],[121,180,75,-0.9603562392294407],[121,180,76,-0.9584060907363892],[121,180,77,-0.9553577862679958],[121,180,78,-0.9515821486711502],[121,180,79,-0.9473997838795185],[121,181,64,-0.9631074965000153],[121,181,65,-0.962611511349678],[121,181,66,-0.9609597250819206],[121,181,67,-0.9591126218438148],[121,181,68,-0.9582155272364616],[121,181,69,-0.9589222259819508],[121,181,70,-0.9609529227018356],[121,181,71,-0.963450338691473],[121,181,72,-0.9661810472607613],[121,181,73,-0.9681012257933617],[121,181,74,-0.968777671456337],[121,181,75,-0.9681687392294407],[121,181,76,-0.9662185907363892],[121,181,77,-0.9631702862679958],[121,181,78,-0.9593946486711502],[121,181,79,-0.9552122838795185],[121,182,64,-0.9709199965000153],[121,182,65,-0.970424011349678],[121,182,66,-0.9687722250819206],[121,182,67,-0.9669251218438148],[121,182,68,-0.9660280272364616],[121,182,69,-0.9667347259819508],[121,182,70,-0.9687654227018356],[121,182,71,-0.971262838691473],[121,182,72,-0.9739935472607613],[121,182,73,-0.9759137257933617],[121,182,74,-0.976590171456337],[121,182,75,-0.9759812392294407],[121,182,76,-0.9740310907363892],[121,182,77,-0.9709827862679958],[121,182,78,-0.9672071486711502],[121,182,79,-0.9630247838795185],[121,183,64,-0.9787324965000153],[121,183,65,-0.978236511349678],[121,183,66,-0.9765847250819206],[121,183,67,-0.9747376218438148],[121,183,68,-0.9738405272364616],[121,183,69,-0.9745472259819508],[121,183,70,-0.9765779227018356],[121,183,71,-0.979075338691473],[121,183,72,-0.9818060472607613],[121,183,73,-0.9837262257933617],[121,183,74,-0.984402671456337],[121,183,75,-0.9837937392294407],[121,183,76,-0.9818435907363892],[121,183,77,-0.9787952862679958],[121,183,78,-0.9750196486711502],[121,183,79,-0.9708372838795185],[121,184,64,-0.9865449965000153],[121,184,65,-0.986049011349678],[121,184,66,-0.9843972250819206],[121,184,67,-0.9825501218438148],[121,184,68,-0.9816530272364616],[121,184,69,-0.9823597259819508],[121,184,70,-0.9843904227018356],[121,184,71,-0.986887838691473],[121,184,72,-0.9896185472607613],[121,184,73,-0.9915387257933617],[121,184,74,-0.992215171456337],[121,184,75,-0.9916062392294407],[121,184,76,-0.9896560907363892],[121,184,77,-0.9866077862679958],[121,184,78,-0.9828321486711502],[121,184,79,-0.9786497838795185],[121,185,64,-0.9943574965000153],[121,185,65,-0.993861511349678],[121,185,66,-0.9922097250819206],[121,185,67,-0.9903626218438148],[121,185,68,-0.9894655272364616],[121,185,69,-0.9901722259819508],[121,185,70,-0.9922029227018356],[121,185,71,-0.994700338691473],[121,185,72,-0.9974310472607613],[121,185,73,-0.9993512257933617],[121,185,74,-1.000027671456337],[121,185,75,-0.9994187392294407],[121,185,76,-0.9974685907363892],[121,185,77,-0.9944202862679958],[121,185,78,-0.9906446486711502],[121,185,79,-0.9864622838795185],[121,186,64,-1.0021699965000153],[121,186,65,-1.001674011349678],[121,186,66,-1.0000222250819206],[121,186,67,-0.9981751218438148],[121,186,68,-0.9972780272364616],[121,186,69,-0.9979847259819508],[121,186,70,-1.0000154227018356],[121,186,71,-1.002512838691473],[121,186,72,-1.0052435472607613],[121,186,73,-1.0071637257933617],[121,186,74,-1.007840171456337],[121,186,75,-1.0072312392294407],[121,186,76,-1.0052810907363892],[121,186,77,-1.0022327862679958],[121,186,78,-0.9984571486711502],[121,186,79,-0.9942747838795185],[121,187,64,-1.0099824965000153],[121,187,65,-1.009486511349678],[121,187,66,-1.0078347250819206],[121,187,67,-1.0059876218438148],[121,187,68,-1.0050905272364616],[121,187,69,-1.0057972259819508],[121,187,70,-1.0078279227018356],[121,187,71,-1.010325338691473],[121,187,72,-1.0130560472607613],[121,187,73,-1.0149762257933617],[121,187,74,-1.015652671456337],[121,187,75,-1.0150437392294407],[121,187,76,-1.0130935907363892],[121,187,77,-1.0100452862679958],[121,187,78,-1.0062696486711502],[121,187,79,-1.0020872838795185],[121,188,64,-1.0177949965000153],[121,188,65,-1.017299011349678],[121,188,66,-1.0156472250819206],[121,188,67,-1.0138001218438148],[121,188,68,-1.0129030272364616],[121,188,69,-1.0136097259819508],[121,188,70,-1.0156404227018356],[121,188,71,-1.018137838691473],[121,188,72,-1.0208685472607613],[121,188,73,-1.0227887257933617],[121,188,74,-1.023465171456337],[121,188,75,-1.0228562392294407],[121,188,76,-1.0209060907363892],[121,188,77,-1.0178577862679958],[121,188,78,-1.0140821486711502],[121,188,79,-1.0098997838795185],[121,189,64,-1.0256074965000153],[121,189,65,-1.025111511349678],[121,189,66,-1.0234597250819206],[121,189,67,-1.0216126218438148],[121,189,68,-1.0207155272364616],[121,189,69,-1.0214222259819508],[121,189,70,-1.0234529227018356],[121,189,71,-1.025950338691473],[121,189,72,-1.0286810472607613],[121,189,73,-1.0306012257933617],[121,189,74,-1.031277671456337],[121,189,75,-1.0306687392294407],[121,189,76,-1.0287185907363892],[121,189,77,-1.0256702862679958],[121,189,78,-1.0218946486711502],[121,189,79,-1.0177122838795185],[121,190,64,-1.0334199965000153],[121,190,65,-1.032924011349678],[121,190,66,-1.0312722250819206],[121,190,67,-1.0294251218438148],[121,190,68,-1.0285280272364616],[121,190,69,-1.0292347259819508],[121,190,70,-1.0312654227018356],[121,190,71,-1.033762838691473],[121,190,72,-1.0364935472607613],[121,190,73,-1.0384137257933617],[121,190,74,-1.039090171456337],[121,190,75,-1.0384812392294407],[121,190,76,-1.0365310907363892],[121,190,77,-1.0334827862679958],[121,190,78,-1.0297071486711502],[121,190,79,-1.0255247838795185],[121,191,64,-1.0412324965000153],[121,191,65,-1.040736511349678],[121,191,66,-1.0390847250819206],[121,191,67,-1.0372376218438148],[121,191,68,-1.0363405272364616],[121,191,69,-1.0370472259819508],[121,191,70,-1.0390779227018356],[121,191,71,-1.041575338691473],[121,191,72,-1.0443060472607613],[121,191,73,-1.0462262257933617],[121,191,74,-1.046902671456337],[121,191,75,-1.0462937392294407],[121,191,76,-1.0443435907363892],[121,191,77,-1.0412952862679958],[121,191,78,-1.0375196486711502],[121,191,79,-1.0333372838795185],[121,192,64,-1.0490449965000153],[121,192,65,-1.048549011349678],[121,192,66,-1.0468972250819206],[121,192,67,-1.0450501218438148],[121,192,68,-1.0441530272364616],[121,192,69,-1.0448597259819508],[121,192,70,-1.0468904227018356],[121,192,71,-1.049387838691473],[121,192,72,-1.0521185472607613],[121,192,73,-1.0540387257933617],[121,192,74,-1.054715171456337],[121,192,75,-1.0541062392294407],[121,192,76,-1.0521560907363892],[121,192,77,-1.0491077862679958],[121,192,78,-1.0453321486711502],[121,192,79,-1.0411497838795185],[121,193,64,-1.0568574965000153],[121,193,65,-1.056361511349678],[121,193,66,-1.0547097250819206],[121,193,67,-1.0528626218438148],[121,193,68,-1.0519655272364616],[121,193,69,-1.0526722259819508],[121,193,70,-1.0547029227018356],[121,193,71,-1.057200338691473],[121,193,72,-1.0599310472607613],[121,193,73,-1.0618512257933617],[121,193,74,-1.062527671456337],[121,193,75,-1.0619187392294407],[121,193,76,-1.0599685907363892],[121,193,77,-1.0569202862679958],[121,193,78,-1.0531446486711502],[121,193,79,-1.0489622838795185],[121,194,64,-1.0646699965000153],[121,194,65,-1.064174011349678],[121,194,66,-1.0625222250819206],[121,194,67,-1.0606751218438148],[121,194,68,-1.0597780272364616],[121,194,69,-1.0604847259819508],[121,194,70,-1.0625154227018356],[121,194,71,-1.065012838691473],[121,194,72,-1.0677435472607613],[121,194,73,-1.0696637257933617],[121,194,74,-1.070340171456337],[121,194,75,-1.0697312392294407],[121,194,76,-1.0677810907363892],[121,194,77,-1.0647327862679958],[121,194,78,-1.0609571486711502],[121,194,79,-1.0567747838795185],[121,195,64,-1.0724824965000153],[121,195,65,-1.071986511349678],[121,195,66,-1.0703347250819206],[121,195,67,-1.0684876218438148],[121,195,68,-1.0675905272364616],[121,195,69,-1.0682972259819508],[121,195,70,-1.0703279227018356],[121,195,71,-1.072825338691473],[121,195,72,-1.0755560472607613],[121,195,73,-1.0774762257933617],[121,195,74,-1.078152671456337],[121,195,75,-1.0775437392294407],[121,195,76,-1.0755935907363892],[121,195,77,-1.0725452862679958],[121,195,78,-1.0687696486711502],[121,195,79,-1.0645872838795185],[121,196,64,-1.0802949965000153],[121,196,65,-1.079799011349678],[121,196,66,-1.0781472250819206],[121,196,67,-1.0763001218438148],[121,196,68,-1.0754030272364616],[121,196,69,-1.0761097259819508],[121,196,70,-1.0781404227018356],[121,196,71,-1.080637838691473],[121,196,72,-1.0833685472607613],[121,196,73,-1.0852887257933617],[121,196,74,-1.085965171456337],[121,196,75,-1.0853562392294407],[121,196,76,-1.0834060907363892],[121,196,77,-1.0803577862679958],[121,196,78,-1.0765821486711502],[121,196,79,-1.0723997838795185],[121,197,64,-1.0881074965000153],[121,197,65,-1.087611511349678],[121,197,66,-1.0859597250819206],[121,197,67,-1.0841126218438148],[121,197,68,-1.0832155272364616],[121,197,69,-1.0839222259819508],[121,197,70,-1.0859529227018356],[121,197,71,-1.088450338691473],[121,197,72,-1.0911810472607613],[121,197,73,-1.0931012257933617],[121,197,74,-1.093777671456337],[121,197,75,-1.0931687392294407],[121,197,76,-1.0912185907363892],[121,197,77,-1.0881702862679958],[121,197,78,-1.0843946486711502],[121,197,79,-1.0802122838795185],[121,198,64,-1.0959199965000153],[121,198,65,-1.095424011349678],[121,198,66,-1.0937722250819206],[121,198,67,-1.0919251218438148],[121,198,68,-1.0910280272364616],[121,198,69,-1.0917347259819508],[121,198,70,-1.0937654227018356],[121,198,71,-1.096262838691473],[121,198,72,-1.0989935472607613],[121,198,73,-1.1009137257933617],[121,198,74,-1.101590171456337],[121,198,75,-1.1009812392294407],[121,198,76,-1.0990310907363892],[121,198,77,-1.0959827862679958],[121,198,78,-1.0922071486711502],[121,198,79,-1.0880247838795185],[121,199,64,-1.1037324965000153],[121,199,65,-1.103236511349678],[121,199,66,-1.1015847250819206],[121,199,67,-1.0997376218438148],[121,199,68,-1.0988405272364616],[121,199,69,-1.0995472259819508],[121,199,70,-1.1015779227018356],[121,199,71,-1.104075338691473],[121,199,72,-1.1068060472607613],[121,199,73,-1.1087262257933617],[121,199,74,-1.109402671456337],[121,199,75,-1.1087937392294407],[121,199,76,-1.1068435907363892],[121,199,77,-1.1037952862679958],[121,199,78,-1.1000196486711502],[121,199,79,-1.0958372838795185],[121,200,64,-1.1115449965000153],[121,200,65,-1.111049011349678],[121,200,66,-1.1093972250819206],[121,200,67,-1.1075501218438148],[121,200,68,-1.1066530272364616],[121,200,69,-1.1073597259819508],[121,200,70,-1.1093904227018356],[121,200,71,-1.111887838691473],[121,200,72,-1.1146185472607613],[121,200,73,-1.1165387257933617],[121,200,74,-1.117215171456337],[121,200,75,-1.1166062392294407],[121,200,76,-1.1146560907363892],[121,200,77,-1.1116077862679958],[121,200,78,-1.1078321486711502],[121,200,79,-1.1036497838795185],[121,201,64,-1.1193574965000153],[121,201,65,-1.118861511349678],[121,201,66,-1.1172097250819206],[121,201,67,-1.1153626218438148],[121,201,68,-1.1144655272364616],[121,201,69,-1.1151722259819508],[121,201,70,-1.1172029227018356],[121,201,71,-1.119700338691473],[121,201,72,-1.1224310472607613],[121,201,73,-1.1243512257933617],[121,201,74,-1.125027671456337],[121,201,75,-1.1244187392294407],[121,201,76,-1.1224685907363892],[121,201,77,-1.1194202862679958],[121,201,78,-1.1156446486711502],[121,201,79,-1.1114622838795185],[121,202,64,-1.1271699965000153],[121,202,65,-1.126674011349678],[121,202,66,-1.1250222250819206],[121,202,67,-1.1231751218438148],[121,202,68,-1.1222780272364616],[121,202,69,-1.1229847259819508],[121,202,70,-1.1250154227018356],[121,202,71,-1.127512838691473],[121,202,72,-1.1302435472607613],[121,202,73,-1.1321637257933617],[121,202,74,-1.132840171456337],[121,202,75,-1.1322312392294407],[121,202,76,-1.1302810907363892],[121,202,77,-1.1272327862679958],[121,202,78,-1.1234571486711502],[121,202,79,-1.1192747838795185],[121,203,64,-1.1349824965000153],[121,203,65,-1.134486511349678],[121,203,66,-1.1328347250819206],[121,203,67,-1.1309876218438148],[121,203,68,-1.1300905272364616],[121,203,69,-1.1307972259819508],[121,203,70,-1.1328279227018356],[121,203,71,-1.135325338691473],[121,203,72,-1.1380560472607613],[121,203,73,-1.1399762257933617],[121,203,74,-1.140652671456337],[121,203,75,-1.1400437392294407],[121,203,76,-1.1380935907363892],[121,203,77,-1.1350452862679958],[121,203,78,-1.1312696486711502],[121,203,79,-1.1270872838795185],[121,204,64,-1.1427949965000153],[121,204,65,-1.142299011349678],[121,204,66,-1.1406472250819206],[121,204,67,-1.1388001218438148],[121,204,68,-1.1379030272364616],[121,204,69,-1.1386097259819508],[121,204,70,-1.1406404227018356],[121,204,71,-1.143137838691473],[121,204,72,-1.1458685472607613],[121,204,73,-1.1477887257933617],[121,204,74,-1.148465171456337],[121,204,75,-1.1478562392294407],[121,204,76,-1.1459060907363892],[121,204,77,-1.1428577862679958],[121,204,78,-1.1390821486711502],[121,204,79,-1.1348997838795185],[121,205,64,-1.1506074965000153],[121,205,65,-1.150111511349678],[121,205,66,-1.1484597250819206],[121,205,67,-1.1466126218438148],[121,205,68,-1.1457155272364616],[121,205,69,-1.1464222259819508],[121,205,70,-1.1484529227018356],[121,205,71,-1.150950338691473],[121,205,72,-1.1536810472607613],[121,205,73,-1.1556012257933617],[121,205,74,-1.156277671456337],[121,205,75,-1.1556687392294407],[121,205,76,-1.1537185907363892],[121,205,77,-1.1506702862679958],[121,205,78,-1.1468946486711502],[121,205,79,-1.1427122838795185],[121,206,64,-1.1584199965000153],[121,206,65,-1.157924011349678],[121,206,66,-1.1562722250819206],[121,206,67,-1.1544251218438148],[121,206,68,-1.1535280272364616],[121,206,69,-1.1542347259819508],[121,206,70,-1.1562654227018356],[121,206,71,-1.158762838691473],[121,206,72,-1.1614935472607613],[121,206,73,-1.1634137257933617],[121,206,74,-1.164090171456337],[121,206,75,-1.1634812392294407],[121,206,76,-1.1615310907363892],[121,206,77,-1.1584827862679958],[121,206,78,-1.1547071486711502],[121,206,79,-1.1505247838795185],[121,207,64,-1.1662324965000153],[121,207,65,-1.165736511349678],[121,207,66,-1.1640847250819206],[121,207,67,-1.1622376218438148],[121,207,68,-1.1613405272364616],[121,207,69,-1.1620472259819508],[121,207,70,-1.1640779227018356],[121,207,71,-1.166575338691473],[121,207,72,-1.1693060472607613],[121,207,73,-1.1712262257933617],[121,207,74,-1.171902671456337],[121,207,75,-1.1712937392294407],[121,207,76,-1.1693435907363892],[121,207,77,-1.1662952862679958],[121,207,78,-1.1625196486711502],[121,207,79,-1.1583372838795185],[121,208,64,-1.1740449965000153],[121,208,65,-1.173549011349678],[121,208,66,-1.1718972250819206],[121,208,67,-1.1700501218438148],[121,208,68,-1.1691530272364616],[121,208,69,-1.1698597259819508],[121,208,70,-1.1718904227018356],[121,208,71,-1.174387838691473],[121,208,72,-1.1771185472607613],[121,208,73,-1.1790387257933617],[121,208,74,-1.179715171456337],[121,208,75,-1.1791062392294407],[121,208,76,-1.1771560907363892],[121,208,77,-1.1741077862679958],[121,208,78,-1.1703321486711502],[121,208,79,-1.1661497838795185],[121,209,64,-1.1818574965000153],[121,209,65,-1.181361511349678],[121,209,66,-1.1797097250819206],[121,209,67,-1.1778626218438148],[121,209,68,-1.1769655272364616],[121,209,69,-1.1776722259819508],[121,209,70,-1.1797029227018356],[121,209,71,-1.182200338691473],[121,209,72,-1.1849310472607613],[121,209,73,-1.1868512257933617],[121,209,74,-1.187527671456337],[121,209,75,-1.1869187392294407],[121,209,76,-1.1849685907363892],[121,209,77,-1.1819202862679958],[121,209,78,-1.1781446486711502],[121,209,79,-1.1739622838795185],[121,210,64,-1.1896699965000153],[121,210,65,-1.189174011349678],[121,210,66,-1.1875222250819206],[121,210,67,-1.1856751218438148],[121,210,68,-1.1847780272364616],[121,210,69,-1.1854847259819508],[121,210,70,-1.1875154227018356],[121,210,71,-1.190012838691473],[121,210,72,-1.1927435472607613],[121,210,73,-1.1946637257933617],[121,210,74,-1.195340171456337],[121,210,75,-1.1947312392294407],[121,210,76,-1.1927810907363892],[121,210,77,-1.1897327862679958],[121,210,78,-1.1859571486711502],[121,210,79,-1.1817747838795185],[121,211,64,-1.1974824965000153],[121,211,65,-1.196986511349678],[121,211,66,-1.1953347250819206],[121,211,67,-1.1934876218438148],[121,211,68,-1.1925905272364616],[121,211,69,-1.1932972259819508],[121,211,70,-1.1953279227018356],[121,211,71,-1.197825338691473],[121,211,72,-1.2005560472607613],[121,211,73,-1.2024762257933617],[121,211,74,-1.203152671456337],[121,211,75,-1.2025437392294407],[121,211,76,-1.2005935907363892],[121,211,77,-1.1975452862679958],[121,211,78,-1.1937696486711502],[121,211,79,-1.1895872838795185],[121,212,64,-1.2052949965000153],[121,212,65,-1.204799011349678],[121,212,66,-1.2031472250819206],[121,212,67,-1.2013001218438148],[121,212,68,-1.2004030272364616],[121,212,69,-1.2011097259819508],[121,212,70,-1.2031404227018356],[121,212,71,-1.205637838691473],[121,212,72,-1.2083685472607613],[121,212,73,-1.2102887257933617],[121,212,74,-1.210965171456337],[121,212,75,-1.2103562392294407],[121,212,76,-1.2084060907363892],[121,212,77,-1.2053577862679958],[121,212,78,-1.2015821486711502],[121,212,79,-1.1973997838795185],[121,213,64,-1.2131074965000153],[121,213,65,-1.212611511349678],[121,213,66,-1.2109597250819206],[121,213,67,-1.2091126218438148],[121,213,68,-1.2082155272364616],[121,213,69,-1.2089222259819508],[121,213,70,-1.2109529227018356],[121,213,71,-1.213450338691473],[121,213,72,-1.2161810472607613],[121,213,73,-1.2181012257933617],[121,213,74,-1.218777671456337],[121,213,75,-1.2181687392294407],[121,213,76,-1.2162185907363892],[121,213,77,-1.2131702862679958],[121,213,78,-1.2093946486711502],[121,213,79,-1.2052122838795185],[121,214,64,-1.2209199965000153],[121,214,65,-1.220424011349678],[121,214,66,-1.2187722250819206],[121,214,67,-1.2169251218438148],[121,214,68,-1.2160280272364616],[121,214,69,-1.2167347259819508],[121,214,70,-1.2187654227018356],[121,214,71,-1.221262838691473],[121,214,72,-1.2239935472607613],[121,214,73,-1.2259137257933617],[121,214,74,-1.226590171456337],[121,214,75,-1.2259812392294407],[121,214,76,-1.2240310907363892],[121,214,77,-1.2209827862679958],[121,214,78,-1.2172071486711502],[121,214,79,-1.2130247838795185],[121,215,64,-1.2287324965000153],[121,215,65,-1.228236511349678],[121,215,66,-1.2265847250819206],[121,215,67,-1.2247376218438148],[121,215,68,-1.2238405272364616],[121,215,69,-1.2245472259819508],[121,215,70,-1.2265779227018356],[121,215,71,-1.229075338691473],[121,215,72,-1.2318060472607613],[121,215,73,-1.2337262257933617],[121,215,74,-1.234402671456337],[121,215,75,-1.2337937392294407],[121,215,76,-1.2318435907363892],[121,215,77,-1.2287952862679958],[121,215,78,-1.2250196486711502],[121,215,79,-1.2208372838795185],[121,216,64,-1.2365449965000153],[121,216,65,-1.236049011349678],[121,216,66,-1.2343972250819206],[121,216,67,-1.2325501218438148],[121,216,68,-1.2316530272364616],[121,216,69,-1.2323597259819508],[121,216,70,-1.2343904227018356],[121,216,71,-1.236887838691473],[121,216,72,-1.2396185472607613],[121,216,73,-1.2415387257933617],[121,216,74,-1.242215171456337],[121,216,75,-1.2416062392294407],[121,216,76,-1.2396560907363892],[121,216,77,-1.2366077862679958],[121,216,78,-1.2328321486711502],[121,216,79,-1.2286497838795185],[121,217,64,-1.2443574965000153],[121,217,65,-1.243861511349678],[121,217,66,-1.2422097250819206],[121,217,67,-1.2403626218438148],[121,217,68,-1.2394655272364616],[121,217,69,-1.2401722259819508],[121,217,70,-1.2422029227018356],[121,217,71,-1.244700338691473],[121,217,72,-1.2474310472607613],[121,217,73,-1.2493512257933617],[121,217,74,-1.250027671456337],[121,217,75,-1.2494187392294407],[121,217,76,-1.2474685907363892],[121,217,77,-1.2444202862679958],[121,217,78,-1.2406446486711502],[121,217,79,-1.2364622838795185],[121,218,64,-1.2521699965000153],[121,218,65,-1.251674011349678],[121,218,66,-1.2500222250819206],[121,218,67,-1.2481751218438148],[121,218,68,-1.2472780272364616],[121,218,69,-1.2479847259819508],[121,218,70,-1.2500154227018356],[121,218,71,-1.252512838691473],[121,218,72,-1.2552435472607613],[121,218,73,-1.2571637257933617],[121,218,74,-1.257840171456337],[121,218,75,-1.2572312392294407],[121,218,76,-1.2552810907363892],[121,218,77,-1.2522327862679958],[121,218,78,-1.2484571486711502],[121,218,79,-1.2442747838795185],[121,219,64,-1.2599824965000153],[121,219,65,-1.259486511349678],[121,219,66,-1.2578347250819206],[121,219,67,-1.2559876218438148],[121,219,68,-1.2550905272364616],[121,219,69,-1.2557972259819508],[121,219,70,-1.2578279227018356],[121,219,71,-1.260325338691473],[121,219,72,-1.2630560472607613],[121,219,73,-1.2649762257933617],[121,219,74,-1.265652671456337],[121,219,75,-1.2650437392294407],[121,219,76,-1.2630935907363892],[121,219,77,-1.2600452862679958],[121,219,78,-1.2562696486711502],[121,219,79,-1.2520872838795185],[121,220,64,-1.2677949965000153],[121,220,65,-1.267299011349678],[121,220,66,-1.2656472250819206],[121,220,67,-1.2638001218438148],[121,220,68,-1.2629030272364616],[121,220,69,-1.2636097259819508],[121,220,70,-1.2656404227018356],[121,220,71,-1.268137838691473],[121,220,72,-1.2708685472607613],[121,220,73,-1.2727887257933617],[121,220,74,-1.273465171456337],[121,220,75,-1.2728562392294407],[121,220,76,-1.2709060907363892],[121,220,77,-1.2678577862679958],[121,220,78,-1.2640821486711502],[121,220,79,-1.2598997838795185],[121,221,64,-1.2756074965000153],[121,221,65,-1.275111511349678],[121,221,66,-1.2734597250819206],[121,221,67,-1.2716126218438148],[121,221,68,-1.2707155272364616],[121,221,69,-1.2714222259819508],[121,221,70,-1.2734529227018356],[121,221,71,-1.275950338691473],[121,221,72,-1.2786810472607613],[121,221,73,-1.2806012257933617],[121,221,74,-1.281277671456337],[121,221,75,-1.2806687392294407],[121,221,76,-1.2787185907363892],[121,221,77,-1.2756702862679958],[121,221,78,-1.2718946486711502],[121,221,79,-1.2677122838795185],[121,222,64,-1.2834199965000153],[121,222,65,-1.282924011349678],[121,222,66,-1.2812722250819206],[121,222,67,-1.2794251218438148],[121,222,68,-1.2785280272364616],[121,222,69,-1.2792347259819508],[121,222,70,-1.2812654227018356],[121,222,71,-1.283762838691473],[121,222,72,-1.2864935472607613],[121,222,73,-1.2884137257933617],[121,222,74,-1.289090171456337],[121,222,75,-1.2884812392294407],[121,222,76,-1.2865310907363892],[121,222,77,-1.2834827862679958],[121,222,78,-1.2797071486711502],[121,222,79,-1.2755247838795185],[121,223,64,-1.2912324965000153],[121,223,65,-1.290736511349678],[121,223,66,-1.2890847250819206],[121,223,67,-1.2872376218438148],[121,223,68,-1.2863405272364616],[121,223,69,-1.2870472259819508],[121,223,70,-1.2890779227018356],[121,223,71,-1.291575338691473],[121,223,72,-1.2943060472607613],[121,223,73,-1.2962262257933617],[121,223,74,-1.296902671456337],[121,223,75,-1.2962937392294407],[121,223,76,-1.2943435907363892],[121,223,77,-1.2912952862679958],[121,223,78,-1.2875196486711502],[121,223,79,-1.2833372838795185],[121,224,64,-1.2990449965000153],[121,224,65,-1.298549011349678],[121,224,66,-1.2968972250819206],[121,224,67,-1.2950501218438148],[121,224,68,-1.2941530272364616],[121,224,69,-1.2948597259819508],[121,224,70,-1.2968904227018356],[121,224,71,-1.299387838691473],[121,224,72,-1.3021185472607613],[121,224,73,-1.3040387257933617],[121,224,74,-1.304715171456337],[121,224,75,-1.3041062392294407],[121,224,76,-1.3021560907363892],[121,224,77,-1.2991077862679958],[121,224,78,-1.2953321486711502],[121,224,79,-1.2911497838795185],[121,225,64,-1.3068574965000153],[121,225,65,-1.306361511349678],[121,225,66,-1.3047097250819206],[121,225,67,-1.3028626218438148],[121,225,68,-1.3019655272364616],[121,225,69,-1.3026722259819508],[121,225,70,-1.3047029227018356],[121,225,71,-1.307200338691473],[121,225,72,-1.3099310472607613],[121,225,73,-1.3118512257933617],[121,225,74,-1.312527671456337],[121,225,75,-1.3119187392294407],[121,225,76,-1.3099685907363892],[121,225,77,-1.3069202862679958],[121,225,78,-1.3031446486711502],[121,225,79,-1.2989622838795185],[121,226,64,-1.3146699965000153],[121,226,65,-1.314174011349678],[121,226,66,-1.3125222250819206],[121,226,67,-1.3106751218438148],[121,226,68,-1.3097780272364616],[121,226,69,-1.3104847259819508],[121,226,70,-1.3125154227018356],[121,226,71,-1.315012838691473],[121,226,72,-1.3177435472607613],[121,226,73,-1.3196637257933617],[121,226,74,-1.320340171456337],[121,226,75,-1.3197312392294407],[121,226,76,-1.3177810907363892],[121,226,77,-1.3147327862679958],[121,226,78,-1.3109571486711502],[121,226,79,-1.3067747838795185],[121,227,64,-1.3224824965000153],[121,227,65,-1.321986511349678],[121,227,66,-1.3203347250819206],[121,227,67,-1.3184876218438148],[121,227,68,-1.3175905272364616],[121,227,69,-1.3182972259819508],[121,227,70,-1.3203279227018356],[121,227,71,-1.322825338691473],[121,227,72,-1.3255560472607613],[121,227,73,-1.3274762257933617],[121,227,74,-1.328152671456337],[121,227,75,-1.3275437392294407],[121,227,76,-1.3255935907363892],[121,227,77,-1.3225452862679958],[121,227,78,-1.3187696486711502],[121,227,79,-1.3145872838795185],[121,228,64,-1.3302949965000153],[121,228,65,-1.329799011349678],[121,228,66,-1.3281472250819206],[121,228,67,-1.3263001218438148],[121,228,68,-1.3254030272364616],[121,228,69,-1.3261097259819508],[121,228,70,-1.3281404227018356],[121,228,71,-1.330637838691473],[121,228,72,-1.3333685472607613],[121,228,73,-1.3352887257933617],[121,228,74,-1.335965171456337],[121,228,75,-1.3353562392294407],[121,228,76,-1.3334060907363892],[121,228,77,-1.3303577862679958],[121,228,78,-1.3265821486711502],[121,228,79,-1.3223997838795185],[121,229,64,-1.3381074965000153],[121,229,65,-1.337611511349678],[121,229,66,-1.3359597250819206],[121,229,67,-1.3341126218438148],[121,229,68,-1.3332155272364616],[121,229,69,-1.3339222259819508],[121,229,70,-1.3359529227018356],[121,229,71,-1.338450338691473],[121,229,72,-1.3411810472607613],[121,229,73,-1.3431012257933617],[121,229,74,-1.343777671456337],[121,229,75,-1.3431687392294407],[121,229,76,-1.3412185907363892],[121,229,77,-1.3381702862679958],[121,229,78,-1.3343946486711502],[121,229,79,-1.3302122838795185],[121,230,64,-1.3459199965000153],[121,230,65,-1.345424011349678],[121,230,66,-1.3437722250819206],[121,230,67,-1.3419251218438148],[121,230,68,-1.3410280272364616],[121,230,69,-1.3417347259819508],[121,230,70,-1.3437654227018356],[121,230,71,-1.346262838691473],[121,230,72,-1.3489935472607613],[121,230,73,-1.3509137257933617],[121,230,74,-1.351590171456337],[121,230,75,-1.3509812392294407],[121,230,76,-1.3490310907363892],[121,230,77,-1.3459827862679958],[121,230,78,-1.3422071486711502],[121,230,79,-1.3380247838795185],[121,231,64,-1.3537324965000153],[121,231,65,-1.353236511349678],[121,231,66,-1.3515847250819206],[121,231,67,-1.3497376218438148],[121,231,68,-1.3488405272364616],[121,231,69,-1.3495472259819508],[121,231,70,-1.3515779227018356],[121,231,71,-1.354075338691473],[121,231,72,-1.3568060472607613],[121,231,73,-1.3587262257933617],[121,231,74,-1.359402671456337],[121,231,75,-1.3587937392294407],[121,231,76,-1.3568435907363892],[121,231,77,-1.3537952862679958],[121,231,78,-1.3500196486711502],[121,231,79,-1.3458372838795185],[121,232,64,-1.3615449965000153],[121,232,65,-1.361049011349678],[121,232,66,-1.3593972250819206],[121,232,67,-1.3575501218438148],[121,232,68,-1.3566530272364616],[121,232,69,-1.3573597259819508],[121,232,70,-1.3593904227018356],[121,232,71,-1.361887838691473],[121,232,72,-1.3646185472607613],[121,232,73,-1.3665387257933617],[121,232,74,-1.367215171456337],[121,232,75,-1.3666062392294407],[121,232,76,-1.3646560907363892],[121,232,77,-1.3616077862679958],[121,232,78,-1.3578321486711502],[121,232,79,-1.3536497838795185],[121,233,64,-1.3693574965000153],[121,233,65,-1.368861511349678],[121,233,66,-1.3672097250819206],[121,233,67,-1.3653626218438148],[121,233,68,-1.3644655272364616],[121,233,69,-1.3651722259819508],[121,233,70,-1.3672029227018356],[121,233,71,-1.369700338691473],[121,233,72,-1.3724310472607613],[121,233,73,-1.3743512257933617],[121,233,74,-1.375027671456337],[121,233,75,-1.3744187392294407],[121,233,76,-1.3724685907363892],[121,233,77,-1.3694202862679958],[121,233,78,-1.3656446486711502],[121,233,79,-1.3614622838795185],[121,234,64,-1.3771699965000153],[121,234,65,-1.376674011349678],[121,234,66,-1.3750222250819206],[121,234,67,-1.3731751218438148],[121,234,68,-1.3722780272364616],[121,234,69,-1.3729847259819508],[121,234,70,-1.3750154227018356],[121,234,71,-1.377512838691473],[121,234,72,-1.3802435472607613],[121,234,73,-1.3821637257933617],[121,234,74,-1.382840171456337],[121,234,75,-1.3822312392294407],[121,234,76,-1.3802810907363892],[121,234,77,-1.3772327862679958],[121,234,78,-1.3734571486711502],[121,234,79,-1.3692747838795185],[121,235,64,-1.3849824965000153],[121,235,65,-1.384486511349678],[121,235,66,-1.3828347250819206],[121,235,67,-1.3809876218438148],[121,235,68,-1.3800905272364616],[121,235,69,-1.3807972259819508],[121,235,70,-1.3828279227018356],[121,235,71,-1.385325338691473],[121,235,72,-1.3880560472607613],[121,235,73,-1.3899762257933617],[121,235,74,-1.390652671456337],[121,235,75,-1.3900437392294407],[121,235,76,-1.3880935907363892],[121,235,77,-1.3850452862679958],[121,235,78,-1.3812696486711502],[121,235,79,-1.3770872838795185],[121,236,64,-1.3927949965000153],[121,236,65,-1.392299011349678],[121,236,66,-1.3906472250819206],[121,236,67,-1.3888001218438148],[121,236,68,-1.3879030272364616],[121,236,69,-1.3886097259819508],[121,236,70,-1.3906404227018356],[121,236,71,-1.393137838691473],[121,236,72,-1.3958685472607613],[121,236,73,-1.3977887257933617],[121,236,74,-1.398465171456337],[121,236,75,-1.3978562392294407],[121,236,76,-1.3959060907363892],[121,236,77,-1.3928577862679958],[121,236,78,-1.3890821486711502],[121,236,79,-1.3848997838795185],[121,237,64,-1.4006074965000153],[121,237,65,-1.400111511349678],[121,237,66,-1.3984597250819206],[121,237,67,-1.3966126218438148],[121,237,68,-1.3957155272364616],[121,237,69,-1.3964222259819508],[121,237,70,-1.3984529227018356],[121,237,71,-1.400950338691473],[121,237,72,-1.4036810472607613],[121,237,73,-1.4056012257933617],[121,237,74,-1.406277671456337],[121,237,75,-1.4056687392294407],[121,237,76,-1.4037185907363892],[121,237,77,-1.4006702862679958],[121,237,78,-1.3968946486711502],[121,237,79,-1.3927122838795185],[121,238,64,-1.4084199965000153],[121,238,65,-1.407924011349678],[121,238,66,-1.4062722250819206],[121,238,67,-1.4044251218438148],[121,238,68,-1.4035280272364616],[121,238,69,-1.4042347259819508],[121,238,70,-1.4062654227018356],[121,238,71,-1.408762838691473],[121,238,72,-1.4114935472607613],[121,238,73,-1.4134137257933617],[121,238,74,-1.414090171456337],[121,238,75,-1.4134812392294407],[121,238,76,-1.4115310907363892],[121,238,77,-1.4084827862679958],[121,238,78,-1.4047071486711502],[121,238,79,-1.4005247838795185],[121,239,64,-1.4162324965000153],[121,239,65,-1.415736511349678],[121,239,66,-1.4140847250819206],[121,239,67,-1.4122376218438148],[121,239,68,-1.4113405272364616],[121,239,69,-1.4120472259819508],[121,239,70,-1.4140779227018356],[121,239,71,-1.416575338691473],[121,239,72,-1.4193060472607613],[121,239,73,-1.4212262257933617],[121,239,74,-1.421902671456337],[121,239,75,-1.4212937392294407],[121,239,76,-1.4193435907363892],[121,239,77,-1.4162952862679958],[121,239,78,-1.4125196486711502],[121,239,79,-1.4083372838795185],[121,240,64,-1.4240449965000153],[121,240,65,-1.423549011349678],[121,240,66,-1.4218972250819206],[121,240,67,-1.4200501218438148],[121,240,68,-1.4191530272364616],[121,240,69,-1.4198597259819508],[121,240,70,-1.4218904227018356],[121,240,71,-1.424387838691473],[121,240,72,-1.4271185472607613],[121,240,73,-1.4290387257933617],[121,240,74,-1.429715171456337],[121,240,75,-1.4291062392294407],[121,240,76,-1.4271560907363892],[121,240,77,-1.4241077862679958],[121,240,78,-1.4203321486711502],[121,240,79,-1.4161497838795185],[121,241,64,-1.4318574965000153],[121,241,65,-1.431361511349678],[121,241,66,-1.4297097250819206],[121,241,67,-1.4278626218438148],[121,241,68,-1.4269655272364616],[121,241,69,-1.4276722259819508],[121,241,70,-1.4297029227018356],[121,241,71,-1.432200338691473],[121,241,72,-1.4349310472607613],[121,241,73,-1.4368512257933617],[121,241,74,-1.437527671456337],[121,241,75,-1.4369187392294407],[121,241,76,-1.4349685907363892],[121,241,77,-1.4319202862679958],[121,241,78,-1.4281446486711502],[121,241,79,-1.4239622838795185],[121,242,64,-1.4396699965000153],[121,242,65,-1.439174011349678],[121,242,66,-1.4375222250819206],[121,242,67,-1.4356751218438148],[121,242,68,-1.4347780272364616],[121,242,69,-1.4354847259819508],[121,242,70,-1.4375154227018356],[121,242,71,-1.440012838691473],[121,242,72,-1.4427435472607613],[121,242,73,-1.4446637257933617],[121,242,74,-1.445340171456337],[121,242,75,-1.4447312392294407],[121,242,76,-1.4427810907363892],[121,242,77,-1.4397327862679958],[121,242,78,-1.4359571486711502],[121,242,79,-1.4317747838795185],[121,243,64,-1.4474824965000153],[121,243,65,-1.446986511349678],[121,243,66,-1.4453347250819206],[121,243,67,-1.4434876218438148],[121,243,68,-1.4425905272364616],[121,243,69,-1.4432972259819508],[121,243,70,-1.4453279227018356],[121,243,71,-1.447825338691473],[121,243,72,-1.4505560472607613],[121,243,73,-1.4524762257933617],[121,243,74,-1.453152671456337],[121,243,75,-1.4525437392294407],[121,243,76,-1.4505935907363892],[121,243,77,-1.4475452862679958],[121,243,78,-1.4437696486711502],[121,243,79,-1.4395872838795185],[121,244,64,-1.4552949965000153],[121,244,65,-1.454799011349678],[121,244,66,-1.4531472250819206],[121,244,67,-1.4513001218438148],[121,244,68,-1.4504030272364616],[121,244,69,-1.4511097259819508],[121,244,70,-1.4531404227018356],[121,244,71,-1.455637838691473],[121,244,72,-1.4583685472607613],[121,244,73,-1.4602887257933617],[121,244,74,-1.460965171456337],[121,244,75,-1.4603562392294407],[121,244,76,-1.4584060907363892],[121,244,77,-1.4553577862679958],[121,244,78,-1.4515821486711502],[121,244,79,-1.4473997838795185],[121,245,64,-1.4631074965000153],[121,245,65,-1.462611511349678],[121,245,66,-1.4609597250819206],[121,245,67,-1.4591126218438148],[121,245,68,-1.4582155272364616],[121,245,69,-1.4589222259819508],[121,245,70,-1.4609529227018356],[121,245,71,-1.463450338691473],[121,245,72,-1.4661810472607613],[121,245,73,-1.4681012257933617],[121,245,74,-1.468777671456337],[121,245,75,-1.4681687392294407],[121,245,76,-1.4662185907363892],[121,245,77,-1.4631702862679958],[121,245,78,-1.4593946486711502],[121,245,79,-1.4552122838795185],[121,246,64,-1.4709199965000153],[121,246,65,-1.470424011349678],[121,246,66,-1.4687722250819206],[121,246,67,-1.4669251218438148],[121,246,68,-1.4660280272364616],[121,246,69,-1.4667347259819508],[121,246,70,-1.4687654227018356],[121,246,71,-1.471262838691473],[121,246,72,-1.4739935472607613],[121,246,73,-1.4759137257933617],[121,246,74,-1.476590171456337],[121,246,75,-1.4759812392294407],[121,246,76,-1.4740310907363892],[121,246,77,-1.4709827862679958],[121,246,78,-1.4672071486711502],[121,246,79,-1.4630247838795185],[121,247,64,-1.4787324965000153],[121,247,65,-1.478236511349678],[121,247,66,-1.4765847250819206],[121,247,67,-1.4747376218438148],[121,247,68,-1.4738405272364616],[121,247,69,-1.4745472259819508],[121,247,70,-1.4765779227018356],[121,247,71,-1.479075338691473],[121,247,72,-1.4818060472607613],[121,247,73,-1.4837262257933617],[121,247,74,-1.484402671456337],[121,247,75,-1.4837937392294407],[121,247,76,-1.4818435907363892],[121,247,77,-1.4787952862679958],[121,247,78,-1.4750196486711502],[121,247,79,-1.4708372838795185],[121,248,64,-1.4865449965000153],[121,248,65,-1.486049011349678],[121,248,66,-1.4843972250819206],[121,248,67,-1.4825501218438148],[121,248,68,-1.4816530272364616],[121,248,69,-1.4823597259819508],[121,248,70,-1.4843904227018356],[121,248,71,-1.486887838691473],[121,248,72,-1.4896185472607613],[121,248,73,-1.4915387257933617],[121,248,74,-1.492215171456337],[121,248,75,-1.4916062392294407],[121,248,76,-1.4896560907363892],[121,248,77,-1.4866077862679958],[121,248,78,-1.4828321486711502],[121,248,79,-1.4786497838795185],[121,249,64,-1.4943574965000153],[121,249,65,-1.493861511349678],[121,249,66,-1.4922097250819206],[121,249,67,-1.4903626218438148],[121,249,68,-1.4894655272364616],[121,249,69,-1.4901722259819508],[121,249,70,-1.4922029227018356],[121,249,71,-1.494700338691473],[121,249,72,-1.4974310472607613],[121,249,73,-1.4993512257933617],[121,249,74,-1.500027671456337],[121,249,75,-1.4994187392294407],[121,249,76,-1.4974685907363892],[121,249,77,-1.4944202862679958],[121,249,78,-1.4906446486711502],[121,249,79,-1.4864622838795185],[121,250,64,-1.5021699965000153],[121,250,65,-1.501674011349678],[121,250,66,-1.5000222250819206],[121,250,67,-1.4981751218438148],[121,250,68,-1.4972780272364616],[121,250,69,-1.4979847259819508],[121,250,70,-1.5000154227018356],[121,250,71,-1.502512838691473],[121,250,72,-1.5052435472607613],[121,250,73,-1.5071637257933617],[121,250,74,-1.507840171456337],[121,250,75,-1.5072312392294407],[121,250,76,-1.5052810907363892],[121,250,77,-1.5022327862679958],[121,250,78,-1.4984571486711502],[121,250,79,-1.4942747838795185],[121,251,64,-1.5099824965000153],[121,251,65,-1.509486511349678],[121,251,66,-1.5078347250819206],[121,251,67,-1.5059876218438148],[121,251,68,-1.5050905272364616],[121,251,69,-1.5057972259819508],[121,251,70,-1.5078279227018356],[121,251,71,-1.510325338691473],[121,251,72,-1.5130560472607613],[121,251,73,-1.5149762257933617],[121,251,74,-1.515652671456337],[121,251,75,-1.5150437392294407],[121,251,76,-1.5130935907363892],[121,251,77,-1.5100452862679958],[121,251,78,-1.5062696486711502],[121,251,79,-1.5020872838795185],[121,252,64,-1.5177949965000153],[121,252,65,-1.517299011349678],[121,252,66,-1.5156472250819206],[121,252,67,-1.5138001218438148],[121,252,68,-1.5129030272364616],[121,252,69,-1.5136097259819508],[121,252,70,-1.5156404227018356],[121,252,71,-1.518137838691473],[121,252,72,-1.5208685472607613],[121,252,73,-1.5227887257933617],[121,252,74,-1.523465171456337],[121,252,75,-1.5228562392294407],[121,252,76,-1.5209060907363892],[121,252,77,-1.5178577862679958],[121,252,78,-1.5140821486711502],[121,252,79,-1.5098997838795185],[121,253,64,-1.5256074965000153],[121,253,65,-1.525111511349678],[121,253,66,-1.5234597250819206],[121,253,67,-1.5216126218438148],[121,253,68,-1.5207155272364616],[121,253,69,-1.5214222259819508],[121,253,70,-1.5234529227018356],[121,253,71,-1.525950338691473],[121,253,72,-1.5286810472607613],[121,253,73,-1.5306012257933617],[121,253,74,-1.531277671456337],[121,253,75,-1.5306687392294407],[121,253,76,-1.5287185907363892],[121,253,77,-1.5256702862679958],[121,253,78,-1.5218946486711502],[121,253,79,-1.5177122838795185],[121,254,64,-1.5334199965000153],[121,254,65,-1.532924011349678],[121,254,66,-1.5312722250819206],[121,254,67,-1.5294251218438148],[121,254,68,-1.5285280272364616],[121,254,69,-1.5292347259819508],[121,254,70,-1.5312654227018356],[121,254,71,-1.533762838691473],[121,254,72,-1.5364935472607613],[121,254,73,-1.5384137257933617],[121,254,74,-1.539090171456337],[121,254,75,-1.5384812392294407],[121,254,76,-1.5365310907363892],[121,254,77,-1.5334827862679958],[121,254,78,-1.5297071486711502],[121,254,79,-1.5255247838795185],[121,255,64,-1.5412324965000153],[121,255,65,-1.540736511349678],[121,255,66,-1.5390847250819206],[121,255,67,-1.5372376218438148],[121,255,68,-1.5363405272364616],[121,255,69,-1.5370472259819508],[121,255,70,-1.5390779227018356],[121,255,71,-1.541575338691473],[121,255,72,-1.5443060472607613],[121,255,73,-1.5462262257933617],[121,255,74,-1.546902671456337],[121,255,75,-1.5462937392294407],[121,255,76,-1.5443435907363892],[121,255,77,-1.5412952862679958],[121,255,78,-1.5375196486711502],[121,255,79,-1.5333372838795185],[121,256,64,-1.5490449965000153],[121,256,65,-1.548549011349678],[121,256,66,-1.5468972250819206],[121,256,67,-1.5450501218438148],[121,256,68,-1.5441530272364616],[121,256,69,-1.5448597259819508],[121,256,70,-1.5468904227018356],[121,256,71,-1.549387838691473],[121,256,72,-1.5521185472607613],[121,256,73,-1.5540387257933617],[121,256,74,-1.554715171456337],[121,256,75,-1.5541062392294407],[121,256,76,-1.5521560907363892],[121,256,77,-1.5491077862679958],[121,256,78,-1.5453321486711502],[121,256,79,-1.5411497838795185],[121,257,64,-1.5568574965000153],[121,257,65,-1.556361511349678],[121,257,66,-1.5547097250819206],[121,257,67,-1.5528626218438148],[121,257,68,-1.5519655272364616],[121,257,69,-1.5526722259819508],[121,257,70,-1.5547029227018356],[121,257,71,-1.557200338691473],[121,257,72,-1.5599310472607613],[121,257,73,-1.5618512257933617],[121,257,74,-1.562527671456337],[121,257,75,-1.5619187392294407],[121,257,76,-1.5599685907363892],[121,257,77,-1.5569202862679958],[121,257,78,-1.5531446486711502],[121,257,79,-1.5489622838795185],[121,258,64,-1.5646699965000153],[121,258,65,-1.564174011349678],[121,258,66,-1.5625222250819206],[121,258,67,-1.5606751218438148],[121,258,68,-1.5597780272364616],[121,258,69,-1.5604847259819508],[121,258,70,-1.5625154227018356],[121,258,71,-1.565012838691473],[121,258,72,-1.5677435472607613],[121,258,73,-1.5696637257933617],[121,258,74,-1.570340171456337],[121,258,75,-1.5697312392294407],[121,258,76,-1.5677810907363892],[121,258,77,-1.5647327862679958],[121,258,78,-1.5609571486711502],[121,258,79,-1.5567747838795185],[121,259,64,-1.5724824965000153],[121,259,65,-1.571986511349678],[121,259,66,-1.5703347250819206],[121,259,67,-1.5684876218438148],[121,259,68,-1.5675905272364616],[121,259,69,-1.5682972259819508],[121,259,70,-1.5703279227018356],[121,259,71,-1.572825338691473],[121,259,72,-1.5755560472607613],[121,259,73,-1.5774762257933617],[121,259,74,-1.578152671456337],[121,259,75,-1.5775437392294407],[121,259,76,-1.5755935907363892],[121,259,77,-1.5725452862679958],[121,259,78,-1.5687696486711502],[121,259,79,-1.5645872838795185],[121,260,64,-1.5802949965000153],[121,260,65,-1.579799011349678],[121,260,66,-1.5781472250819206],[121,260,67,-1.5763001218438148],[121,260,68,-1.5754030272364616],[121,260,69,-1.5761097259819508],[121,260,70,-1.5781404227018356],[121,260,71,-1.580637838691473],[121,260,72,-1.5833685472607613],[121,260,73,-1.5852887257933617],[121,260,74,-1.585965171456337],[121,260,75,-1.5853562392294407],[121,260,76,-1.5834060907363892],[121,260,77,-1.5803577862679958],[121,260,78,-1.5765821486711502],[121,260,79,-1.5723997838795185],[121,261,64,-1.5881074965000153],[121,261,65,-1.587611511349678],[121,261,66,-1.5859597250819206],[121,261,67,-1.5841126218438148],[121,261,68,-1.5832155272364616],[121,261,69,-1.5839222259819508],[121,261,70,-1.5859529227018356],[121,261,71,-1.588450338691473],[121,261,72,-1.5911810472607613],[121,261,73,-1.5931012257933617],[121,261,74,-1.593777671456337],[121,261,75,-1.5931687392294407],[121,261,76,-1.5912185907363892],[121,261,77,-1.5881702862679958],[121,261,78,-1.5843946486711502],[121,261,79,-1.5802122838795185],[121,262,64,-1.5959199965000153],[121,262,65,-1.595424011349678],[121,262,66,-1.5937722250819206],[121,262,67,-1.5919251218438148],[121,262,68,-1.5910280272364616],[121,262,69,-1.5917347259819508],[121,262,70,-1.5937654227018356],[121,262,71,-1.596262838691473],[121,262,72,-1.5989935472607613],[121,262,73,-1.6009137257933617],[121,262,74,-1.601590171456337],[121,262,75,-1.6009812392294407],[121,262,76,-1.5990310907363892],[121,262,77,-1.5959827862679958],[121,262,78,-1.5922071486711502],[121,262,79,-1.5880247838795185],[121,263,64,-1.6037324965000153],[121,263,65,-1.603236511349678],[121,263,66,-1.6015847250819206],[121,263,67,-1.5997376218438148],[121,263,68,-1.5988405272364616],[121,263,69,-1.5995472259819508],[121,263,70,-1.6015779227018356],[121,263,71,-1.604075338691473],[121,263,72,-1.6068060472607613],[121,263,73,-1.6087262257933617],[121,263,74,-1.609402671456337],[121,263,75,-1.6087937392294407],[121,263,76,-1.6068435907363892],[121,263,77,-1.6037952862679958],[121,263,78,-1.6000196486711502],[121,263,79,-1.5958372838795185],[121,264,64,-1.6115449965000153],[121,264,65,-1.611049011349678],[121,264,66,-1.6093972250819206],[121,264,67,-1.6075501218438148],[121,264,68,-1.6066530272364616],[121,264,69,-1.6073597259819508],[121,264,70,-1.6093904227018356],[121,264,71,-1.611887838691473],[121,264,72,-1.6146185472607613],[121,264,73,-1.6165387257933617],[121,264,74,-1.617215171456337],[121,264,75,-1.6166062392294407],[121,264,76,-1.6146560907363892],[121,264,77,-1.6116077862679958],[121,264,78,-1.6078321486711502],[121,264,79,-1.6036497838795185],[121,265,64,-1.6193574965000153],[121,265,65,-1.618861511349678],[121,265,66,-1.6172097250819206],[121,265,67,-1.6153626218438148],[121,265,68,-1.6144655272364616],[121,265,69,-1.6151722259819508],[121,265,70,-1.6172029227018356],[121,265,71,-1.619700338691473],[121,265,72,-1.6224310472607613],[121,265,73,-1.6243512257933617],[121,265,74,-1.625027671456337],[121,265,75,-1.6244187392294407],[121,265,76,-1.6224685907363892],[121,265,77,-1.6194202862679958],[121,265,78,-1.6156446486711502],[121,265,79,-1.6114622838795185],[121,266,64,-1.6271699965000153],[121,266,65,-1.626674011349678],[121,266,66,-1.6250222250819206],[121,266,67,-1.6231751218438148],[121,266,68,-1.6222780272364616],[121,266,69,-1.6229847259819508],[121,266,70,-1.6250154227018356],[121,266,71,-1.627512838691473],[121,266,72,-1.6302435472607613],[121,266,73,-1.6321637257933617],[121,266,74,-1.632840171456337],[121,266,75,-1.6322312392294407],[121,266,76,-1.6302810907363892],[121,266,77,-1.6272327862679958],[121,266,78,-1.6234571486711502],[121,266,79,-1.6192747838795185],[121,267,64,-1.6349824965000153],[121,267,65,-1.634486511349678],[121,267,66,-1.6328347250819206],[121,267,67,-1.6309876218438148],[121,267,68,-1.6300905272364616],[121,267,69,-1.6307972259819508],[121,267,70,-1.6328279227018356],[121,267,71,-1.635325338691473],[121,267,72,-1.6380560472607613],[121,267,73,-1.6399762257933617],[121,267,74,-1.640652671456337],[121,267,75,-1.6400437392294407],[121,267,76,-1.6380935907363892],[121,267,77,-1.6350452862679958],[121,267,78,-1.6312696486711502],[121,267,79,-1.6270872838795185],[121,268,64,-1.6427949965000153],[121,268,65,-1.642299011349678],[121,268,66,-1.6406472250819206],[121,268,67,-1.6388001218438148],[121,268,68,-1.6379030272364616],[121,268,69,-1.6386097259819508],[121,268,70,-1.6406404227018356],[121,268,71,-1.643137838691473],[121,268,72,-1.6458685472607613],[121,268,73,-1.6477887257933617],[121,268,74,-1.648465171456337],[121,268,75,-1.6478562392294407],[121,268,76,-1.6459060907363892],[121,268,77,-1.6428577862679958],[121,268,78,-1.6390821486711502],[121,268,79,-1.6348997838795185],[121,269,64,-1.6506074965000153],[121,269,65,-1.650111511349678],[121,269,66,-1.6484597250819206],[121,269,67,-1.6466126218438148],[121,269,68,-1.6457155272364616],[121,269,69,-1.6464222259819508],[121,269,70,-1.6484529227018356],[121,269,71,-1.650950338691473],[121,269,72,-1.6536810472607613],[121,269,73,-1.6556012257933617],[121,269,74,-1.656277671456337],[121,269,75,-1.6556687392294407],[121,269,76,-1.6537185907363892],[121,269,77,-1.6506702862679958],[121,269,78,-1.6468946486711502],[121,269,79,-1.6427122838795185],[121,270,64,-1.6584199965000153],[121,270,65,-1.657924011349678],[121,270,66,-1.6562722250819206],[121,270,67,-1.6544251218438148],[121,270,68,-1.6535280272364616],[121,270,69,-1.6542347259819508],[121,270,70,-1.6562654227018356],[121,270,71,-1.658762838691473],[121,270,72,-1.6614935472607613],[121,270,73,-1.6634137257933617],[121,270,74,-1.664090171456337],[121,270,75,-1.6634812392294407],[121,270,76,-1.6615310907363892],[121,270,77,-1.6584827862679958],[121,270,78,-1.6547071486711502],[121,270,79,-1.6505247838795185],[121,271,64,-1.6662324965000153],[121,271,65,-1.665736511349678],[121,271,66,-1.6640847250819206],[121,271,67,-1.6622376218438148],[121,271,68,-1.6613405272364616],[121,271,69,-1.6620472259819508],[121,271,70,-1.6640779227018356],[121,271,71,-1.666575338691473],[121,271,72,-1.6693060472607613],[121,271,73,-1.6712262257933617],[121,271,74,-1.671902671456337],[121,271,75,-1.6712937392294407],[121,271,76,-1.6693435907363892],[121,271,77,-1.6662952862679958],[121,271,78,-1.6625196486711502],[121,271,79,-1.6583372838795185],[121,272,64,-1.6740449965000153],[121,272,65,-1.673549011349678],[121,272,66,-1.6718972250819206],[121,272,67,-1.6700501218438148],[121,272,68,-1.6691530272364616],[121,272,69,-1.6698597259819508],[121,272,70,-1.6718904227018356],[121,272,71,-1.674387838691473],[121,272,72,-1.6771185472607613],[121,272,73,-1.6790387257933617],[121,272,74,-1.679715171456337],[121,272,75,-1.6791062392294407],[121,272,76,-1.6771560907363892],[121,272,77,-1.6741077862679958],[121,272,78,-1.6703321486711502],[121,272,79,-1.6661497838795185],[121,273,64,-1.6818574965000153],[121,273,65,-1.681361511349678],[121,273,66,-1.6797097250819206],[121,273,67,-1.6778626218438148],[121,273,68,-1.6769655272364616],[121,273,69,-1.6776722259819508],[121,273,70,-1.6797029227018356],[121,273,71,-1.682200338691473],[121,273,72,-1.6849310472607613],[121,273,73,-1.6868512257933617],[121,273,74,-1.687527671456337],[121,273,75,-1.6869187392294407],[121,273,76,-1.6849685907363892],[121,273,77,-1.6819202862679958],[121,273,78,-1.6781446486711502],[121,273,79,-1.6739622838795185],[121,274,64,-1.6896699965000153],[121,274,65,-1.689174011349678],[121,274,66,-1.6875222250819206],[121,274,67,-1.6856751218438148],[121,274,68,-1.6847780272364616],[121,274,69,-1.6854847259819508],[121,274,70,-1.6875154227018356],[121,274,71,-1.690012838691473],[121,274,72,-1.6927435472607613],[121,274,73,-1.6946637257933617],[121,274,74,-1.695340171456337],[121,274,75,-1.6947312392294407],[121,274,76,-1.6927810907363892],[121,274,77,-1.6897327862679958],[121,274,78,-1.6859571486711502],[121,274,79,-1.6817747838795185],[121,275,64,-1.6974824965000153],[121,275,65,-1.696986511349678],[121,275,66,-1.6953347250819206],[121,275,67,-1.6934876218438148],[121,275,68,-1.6925905272364616],[121,275,69,-1.6932972259819508],[121,275,70,-1.6953279227018356],[121,275,71,-1.697825338691473],[121,275,72,-1.7005560472607613],[121,275,73,-1.7024762257933617],[121,275,74,-1.703152671456337],[121,275,75,-1.7025437392294407],[121,275,76,-1.7005935907363892],[121,275,77,-1.6975452862679958],[121,275,78,-1.6937696486711502],[121,275,79,-1.6895872838795185],[121,276,64,-1.7052949965000153],[121,276,65,-1.704799011349678],[121,276,66,-1.7031472250819206],[121,276,67,-1.7013001218438148],[121,276,68,-1.7004030272364616],[121,276,69,-1.7011097259819508],[121,276,70,-1.7031404227018356],[121,276,71,-1.705637838691473],[121,276,72,-1.7083685472607613],[121,276,73,-1.7102887257933617],[121,276,74,-1.710965171456337],[121,276,75,-1.7103562392294407],[121,276,76,-1.7084060907363892],[121,276,77,-1.7053577862679958],[121,276,78,-1.7015821486711502],[121,276,79,-1.6973997838795185],[121,277,64,-1.7131074965000153],[121,277,65,-1.712611511349678],[121,277,66,-1.7109597250819206],[121,277,67,-1.7091126218438148],[121,277,68,-1.7082155272364616],[121,277,69,-1.7089222259819508],[121,277,70,-1.7109529227018356],[121,277,71,-1.713450338691473],[121,277,72,-1.7161810472607613],[121,277,73,-1.7181012257933617],[121,277,74,-1.718777671456337],[121,277,75,-1.7181687392294407],[121,277,76,-1.7162185907363892],[121,277,77,-1.7131702862679958],[121,277,78,-1.7093946486711502],[121,277,79,-1.7052122838795185],[121,278,64,-1.7209199965000153],[121,278,65,-1.720424011349678],[121,278,66,-1.7187722250819206],[121,278,67,-1.7169251218438148],[121,278,68,-1.7160280272364616],[121,278,69,-1.7167347259819508],[121,278,70,-1.7187654227018356],[121,278,71,-1.721262838691473],[121,278,72,-1.7239935472607613],[121,278,73,-1.7259137257933617],[121,278,74,-1.726590171456337],[121,278,75,-1.7259812392294407],[121,278,76,-1.7240310907363892],[121,278,77,-1.7209827862679958],[121,278,78,-1.7172071486711502],[121,278,79,-1.7130247838795185],[121,279,64,-1.7287324965000153],[121,279,65,-1.728236511349678],[121,279,66,-1.7265847250819206],[121,279,67,-1.7247376218438148],[121,279,68,-1.7238405272364616],[121,279,69,-1.7245472259819508],[121,279,70,-1.7265779227018356],[121,279,71,-1.729075338691473],[121,279,72,-1.7318060472607613],[121,279,73,-1.7337262257933617],[121,279,74,-1.734402671456337],[121,279,75,-1.7337937392294407],[121,279,76,-1.7318435907363892],[121,279,77,-1.7287952862679958],[121,279,78,-1.7250196486711502],[121,279,79,-1.7208372838795185],[121,280,64,-1.7365449965000153],[121,280,65,-1.736049011349678],[121,280,66,-1.7343972250819206],[121,280,67,-1.7325501218438148],[121,280,68,-1.7316530272364616],[121,280,69,-1.7323597259819508],[121,280,70,-1.7343904227018356],[121,280,71,-1.736887838691473],[121,280,72,-1.7396185472607613],[121,280,73,-1.7415387257933617],[121,280,74,-1.742215171456337],[121,280,75,-1.7416062392294407],[121,280,76,-1.7396560907363892],[121,280,77,-1.7366077862679958],[121,280,78,-1.7328321486711502],[121,280,79,-1.7286497838795185],[121,281,64,-1.7443574965000153],[121,281,65,-1.743861511349678],[121,281,66,-1.7422097250819206],[121,281,67,-1.7403626218438148],[121,281,68,-1.7394655272364616],[121,281,69,-1.7401722259819508],[121,281,70,-1.7422029227018356],[121,281,71,-1.744700338691473],[121,281,72,-1.7474310472607613],[121,281,73,-1.7493512257933617],[121,281,74,-1.750027671456337],[121,281,75,-1.7494187392294407],[121,281,76,-1.7474685907363892],[121,281,77,-1.7444202862679958],[121,281,78,-1.7406446486711502],[121,281,79,-1.7364622838795185],[121,282,64,-1.7521699965000153],[121,282,65,-1.751674011349678],[121,282,66,-1.7500222250819206],[121,282,67,-1.7481751218438148],[121,282,68,-1.7472780272364616],[121,282,69,-1.7479847259819508],[121,282,70,-1.7500154227018356],[121,282,71,-1.752512838691473],[121,282,72,-1.7552435472607613],[121,282,73,-1.7571637257933617],[121,282,74,-1.757840171456337],[121,282,75,-1.7572312392294407],[121,282,76,-1.7552810907363892],[121,282,77,-1.7522327862679958],[121,282,78,-1.7484571486711502],[121,282,79,-1.7442747838795185],[121,283,64,-1.7599824965000153],[121,283,65,-1.759486511349678],[121,283,66,-1.7578347250819206],[121,283,67,-1.7559876218438148],[121,283,68,-1.7550905272364616],[121,283,69,-1.7557972259819508],[121,283,70,-1.7578279227018356],[121,283,71,-1.760325338691473],[121,283,72,-1.7630560472607613],[121,283,73,-1.7649762257933617],[121,283,74,-1.765652671456337],[121,283,75,-1.7650437392294407],[121,283,76,-1.7630935907363892],[121,283,77,-1.7600452862679958],[121,283,78,-1.7562696486711502],[121,283,79,-1.7520872838795185],[121,284,64,-1.7677949965000153],[121,284,65,-1.767299011349678],[121,284,66,-1.7656472250819206],[121,284,67,-1.7638001218438148],[121,284,68,-1.7629030272364616],[121,284,69,-1.7636097259819508],[121,284,70,-1.7656404227018356],[121,284,71,-1.768137838691473],[121,284,72,-1.7708685472607613],[121,284,73,-1.7727887257933617],[121,284,74,-1.773465171456337],[121,284,75,-1.7728562392294407],[121,284,76,-1.7709060907363892],[121,284,77,-1.7678577862679958],[121,284,78,-1.7640821486711502],[121,284,79,-1.7598997838795185],[121,285,64,-1.7756074965000153],[121,285,65,-1.775111511349678],[121,285,66,-1.7734597250819206],[121,285,67,-1.7716126218438148],[121,285,68,-1.7707155272364616],[121,285,69,-1.7714222259819508],[121,285,70,-1.7734529227018356],[121,285,71,-1.775950338691473],[121,285,72,-1.7786810472607613],[121,285,73,-1.7806012257933617],[121,285,74,-1.781277671456337],[121,285,75,-1.7806687392294407],[121,285,76,-1.7787185907363892],[121,285,77,-1.7756702862679958],[121,285,78,-1.7718946486711502],[121,285,79,-1.7677122838795185],[121,286,64,-1.7834199965000153],[121,286,65,-1.782924011349678],[121,286,66,-1.7812722250819206],[121,286,67,-1.7794251218438148],[121,286,68,-1.7785280272364616],[121,286,69,-1.7792347259819508],[121,286,70,-1.7812654227018356],[121,286,71,-1.783762838691473],[121,286,72,-1.7864935472607613],[121,286,73,-1.7884137257933617],[121,286,74,-1.789090171456337],[121,286,75,-1.7884812392294407],[121,286,76,-1.7865310907363892],[121,286,77,-1.7834827862679958],[121,286,78,-1.7797071486711502],[121,286,79,-1.7755247838795185],[121,287,64,-1.7912324965000153],[121,287,65,-1.790736511349678],[121,287,66,-1.7890847250819206],[121,287,67,-1.7872376218438148],[121,287,68,-1.7863405272364616],[121,287,69,-1.7870472259819508],[121,287,70,-1.7890779227018356],[121,287,71,-1.791575338691473],[121,287,72,-1.7943060472607613],[121,287,73,-1.7962262257933617],[121,287,74,-1.796902671456337],[121,287,75,-1.7962937392294407],[121,287,76,-1.7943435907363892],[121,287,77,-1.7912952862679958],[121,287,78,-1.7875196486711502],[121,287,79,-1.7833372838795185],[121,288,64,-1.7990449965000153],[121,288,65,-1.798549011349678],[121,288,66,-1.7968972250819206],[121,288,67,-1.7950501218438148],[121,288,68,-1.7941530272364616],[121,288,69,-1.7948597259819508],[121,288,70,-1.7968904227018356],[121,288,71,-1.799387838691473],[121,288,72,-1.8021185472607613],[121,288,73,-1.8040387257933617],[121,288,74,-1.804715171456337],[121,288,75,-1.8041062392294407],[121,288,76,-1.8021560907363892],[121,288,77,-1.7991077862679958],[121,288,78,-1.7953321486711502],[121,288,79,-1.7911497838795185],[121,289,64,-1.8068574965000153],[121,289,65,-1.806361511349678],[121,289,66,-1.8047097250819206],[121,289,67,-1.8028626218438148],[121,289,68,-1.8019655272364616],[121,289,69,-1.8026722259819508],[121,289,70,-1.8047029227018356],[121,289,71,-1.807200338691473],[121,289,72,-1.8099310472607613],[121,289,73,-1.8118512257933617],[121,289,74,-1.812527671456337],[121,289,75,-1.8119187392294407],[121,289,76,-1.8099685907363892],[121,289,77,-1.8069202862679958],[121,289,78,-1.8031446486711502],[121,289,79,-1.7989622838795185],[121,290,64,-1.8146699965000153],[121,290,65,-1.814174011349678],[121,290,66,-1.8125222250819206],[121,290,67,-1.8106751218438148],[121,290,68,-1.8097780272364616],[121,290,69,-1.8104847259819508],[121,290,70,-1.8125154227018356],[121,290,71,-1.815012838691473],[121,290,72,-1.8177435472607613],[121,290,73,-1.8196637257933617],[121,290,74,-1.820340171456337],[121,290,75,-1.8197312392294407],[121,290,76,-1.8177810907363892],[121,290,77,-1.8147327862679958],[121,290,78,-1.8109571486711502],[121,290,79,-1.8067747838795185],[121,291,64,-1.8224824965000153],[121,291,65,-1.821986511349678],[121,291,66,-1.8203347250819206],[121,291,67,-1.8184876218438148],[121,291,68,-1.8175905272364616],[121,291,69,-1.8182972259819508],[121,291,70,-1.8203279227018356],[121,291,71,-1.822825338691473],[121,291,72,-1.8255560472607613],[121,291,73,-1.8274762257933617],[121,291,74,-1.828152671456337],[121,291,75,-1.8275437392294407],[121,291,76,-1.8255935907363892],[121,291,77,-1.8225452862679958],[121,291,78,-1.8187696486711502],[121,291,79,-1.8145872838795185],[121,292,64,-1.8302949965000153],[121,292,65,-1.829799011349678],[121,292,66,-1.8281472250819206],[121,292,67,-1.8263001218438148],[121,292,68,-1.8254030272364616],[121,292,69,-1.8261097259819508],[121,292,70,-1.8281404227018356],[121,292,71,-1.830637838691473],[121,292,72,-1.8333685472607613],[121,292,73,-1.8352887257933617],[121,292,74,-1.835965171456337],[121,292,75,-1.8353562392294407],[121,292,76,-1.8334060907363892],[121,292,77,-1.8303577862679958],[121,292,78,-1.8265821486711502],[121,292,79,-1.8223997838795185],[121,293,64,-1.8381074965000153],[121,293,65,-1.837611511349678],[121,293,66,-1.8359597250819206],[121,293,67,-1.8341126218438148],[121,293,68,-1.8332155272364616],[121,293,69,-1.8339222259819508],[121,293,70,-1.8359529227018356],[121,293,71,-1.838450338691473],[121,293,72,-1.8411810472607613],[121,293,73,-1.8431012257933617],[121,293,74,-1.843777671456337],[121,293,75,-1.8431687392294407],[121,293,76,-1.8412185907363892],[121,293,77,-1.8381702862679958],[121,293,78,-1.8343946486711502],[121,293,79,-1.8302122838795185],[121,294,64,-1.8459199965000153],[121,294,65,-1.845424011349678],[121,294,66,-1.8437722250819206],[121,294,67,-1.8419251218438148],[121,294,68,-1.8410280272364616],[121,294,69,-1.8417347259819508],[121,294,70,-1.8437654227018356],[121,294,71,-1.846262838691473],[121,294,72,-1.8489935472607613],[121,294,73,-1.8509137257933617],[121,294,74,-1.851590171456337],[121,294,75,-1.8509812392294407],[121,294,76,-1.8490310907363892],[121,294,77,-1.8459827862679958],[121,294,78,-1.8422071486711502],[121,294,79,-1.8380247838795185],[121,295,64,-1.8537324965000153],[121,295,65,-1.853236511349678],[121,295,66,-1.8515847250819206],[121,295,67,-1.8497376218438148],[121,295,68,-1.8488405272364616],[121,295,69,-1.8495472259819508],[121,295,70,-1.8515779227018356],[121,295,71,-1.854075338691473],[121,295,72,-1.8568060472607613],[121,295,73,-1.8587262257933617],[121,295,74,-1.859402671456337],[121,295,75,-1.8587937392294407],[121,295,76,-1.8568435907363892],[121,295,77,-1.8537952862679958],[121,295,78,-1.8500196486711502],[121,295,79,-1.8458372838795185],[121,296,64,-1.8615449965000153],[121,296,65,-1.861049011349678],[121,296,66,-1.8593972250819206],[121,296,67,-1.8575501218438148],[121,296,68,-1.8566530272364616],[121,296,69,-1.8573597259819508],[121,296,70,-1.8593904227018356],[121,296,71,-1.861887838691473],[121,296,72,-1.8646185472607613],[121,296,73,-1.8665387257933617],[121,296,74,-1.867215171456337],[121,296,75,-1.8666062392294407],[121,296,76,-1.8646560907363892],[121,296,77,-1.8616077862679958],[121,296,78,-1.8578321486711502],[121,296,79,-1.8536497838795185],[121,297,64,-1.8693574965000153],[121,297,65,-1.868861511349678],[121,297,66,-1.8672097250819206],[121,297,67,-1.8653626218438148],[121,297,68,-1.8644655272364616],[121,297,69,-1.8651722259819508],[121,297,70,-1.8672029227018356],[121,297,71,-1.869700338691473],[121,297,72,-1.8724310472607613],[121,297,73,-1.8743512257933617],[121,297,74,-1.875027671456337],[121,297,75,-1.8744187392294407],[121,297,76,-1.8724685907363892],[121,297,77,-1.8694202862679958],[121,297,78,-1.8656446486711502],[121,297,79,-1.8614622838795185],[121,298,64,-1.8771699965000153],[121,298,65,-1.876674011349678],[121,298,66,-1.8750222250819206],[121,298,67,-1.8731751218438148],[121,298,68,-1.8722780272364616],[121,298,69,-1.8729847259819508],[121,298,70,-1.8750154227018356],[121,298,71,-1.877512838691473],[121,298,72,-1.8802435472607613],[121,298,73,-1.8821637257933617],[121,298,74,-1.882840171456337],[121,298,75,-1.8822312392294407],[121,298,76,-1.8802810907363892],[121,298,77,-1.8772327862679958],[121,298,78,-1.8734571486711502],[121,298,79,-1.8692747838795185],[121,299,64,-1.8849824965000153],[121,299,65,-1.884486511349678],[121,299,66,-1.8828347250819206],[121,299,67,-1.8809876218438148],[121,299,68,-1.8800905272364616],[121,299,69,-1.8807972259819508],[121,299,70,-1.8828279227018356],[121,299,71,-1.885325338691473],[121,299,72,-1.8880560472607613],[121,299,73,-1.8899762257933617],[121,299,74,-1.890652671456337],[121,299,75,-1.8900437392294407],[121,299,76,-1.8880935907363892],[121,299,77,-1.8850452862679958],[121,299,78,-1.8812696486711502],[121,299,79,-1.8770872838795185],[121,300,64,-1.8927949965000153],[121,300,65,-1.892299011349678],[121,300,66,-1.8906472250819206],[121,300,67,-1.8888001218438148],[121,300,68,-1.8879030272364616],[121,300,69,-1.8886097259819508],[121,300,70,-1.8906404227018356],[121,300,71,-1.893137838691473],[121,300,72,-1.8958685472607613],[121,300,73,-1.8977887257933617],[121,300,74,-1.898465171456337],[121,300,75,-1.8978562392294407],[121,300,76,-1.8959060907363892],[121,300,77,-1.8928577862679958],[121,300,78,-1.8890821486711502],[121,300,79,-1.8848997838795185],[121,301,64,-1.9006074965000153],[121,301,65,-1.900111511349678],[121,301,66,-1.8984597250819206],[121,301,67,-1.8966126218438148],[121,301,68,-1.8957155272364616],[121,301,69,-1.8964222259819508],[121,301,70,-1.8984529227018356],[121,301,71,-1.900950338691473],[121,301,72,-1.9036810472607613],[121,301,73,-1.9056012257933617],[121,301,74,-1.906277671456337],[121,301,75,-1.9056687392294407],[121,301,76,-1.9037185907363892],[121,301,77,-1.9006702862679958],[121,301,78,-1.8968946486711502],[121,301,79,-1.8927122838795185],[121,302,64,-1.9084199965000153],[121,302,65,-1.907924011349678],[121,302,66,-1.9062722250819206],[121,302,67,-1.9044251218438148],[121,302,68,-1.9035280272364616],[121,302,69,-1.9042347259819508],[121,302,70,-1.9062654227018356],[121,302,71,-1.908762838691473],[121,302,72,-1.9114935472607613],[121,302,73,-1.9134137257933617],[121,302,74,-1.914090171456337],[121,302,75,-1.9134812392294407],[121,302,76,-1.9115310907363892],[121,302,77,-1.9084827862679958],[121,302,78,-1.9047071486711502],[121,302,79,-1.9005247838795185],[121,303,64,-1.9162324965000153],[121,303,65,-1.915736511349678],[121,303,66,-1.9140847250819206],[121,303,67,-1.9122376218438148],[121,303,68,-1.9113405272364616],[121,303,69,-1.9120472259819508],[121,303,70,-1.9140779227018356],[121,303,71,-1.916575338691473],[121,303,72,-1.9193060472607613],[121,303,73,-1.9212262257933617],[121,303,74,-1.921902671456337],[121,303,75,-1.9212937392294407],[121,303,76,-1.9193435907363892],[121,303,77,-1.9162952862679958],[121,303,78,-1.9125196486711502],[121,303,79,-1.9083372838795185],[121,304,64,-1.9240449965000153],[121,304,65,-1.923549011349678],[121,304,66,-1.9218972250819206],[121,304,67,-1.9200501218438148],[121,304,68,-1.9191530272364616],[121,304,69,-1.9198597259819508],[121,304,70,-1.9218904227018356],[121,304,71,-1.924387838691473],[121,304,72,-1.9271185472607613],[121,304,73,-1.9290387257933617],[121,304,74,-1.929715171456337],[121,304,75,-1.9291062392294407],[121,304,76,-1.9271560907363892],[121,304,77,-1.9241077862679958],[121,304,78,-1.9203321486711502],[121,304,79,-1.9161497838795185],[121,305,64,-1.9318574965000153],[121,305,65,-1.931361511349678],[121,305,66,-1.9297097250819206],[121,305,67,-1.9278626218438148],[121,305,68,-1.9269655272364616],[121,305,69,-1.9276722259819508],[121,305,70,-1.9297029227018356],[121,305,71,-1.932200338691473],[121,305,72,-1.9349310472607613],[121,305,73,-1.9368512257933617],[121,305,74,-1.937527671456337],[121,305,75,-1.9369187392294407],[121,305,76,-1.9349685907363892],[121,305,77,-1.9319202862679958],[121,305,78,-1.9281446486711502],[121,305,79,-1.9239622838795185],[121,306,64,-1.9396699965000153],[121,306,65,-1.939174011349678],[121,306,66,-1.9375222250819206],[121,306,67,-1.9356751218438148],[121,306,68,-1.9347780272364616],[121,306,69,-1.9354847259819508],[121,306,70,-1.9375154227018356],[121,306,71,-1.940012838691473],[121,306,72,-1.9427435472607613],[121,306,73,-1.9446637257933617],[121,306,74,-1.945340171456337],[121,306,75,-1.9447312392294407],[121,306,76,-1.9427810907363892],[121,306,77,-1.9397327862679958],[121,306,78,-1.9359571486711502],[121,306,79,-1.9317747838795185],[121,307,64,-1.9474824965000153],[121,307,65,-1.946986511349678],[121,307,66,-1.9453347250819206],[121,307,67,-1.9434876218438148],[121,307,68,-1.9425905272364616],[121,307,69,-1.9432972259819508],[121,307,70,-1.9453279227018356],[121,307,71,-1.947825338691473],[121,307,72,-1.9505560472607613],[121,307,73,-1.9524762257933617],[121,307,74,-1.953152671456337],[121,307,75,-1.9525437392294407],[121,307,76,-1.9505935907363892],[121,307,77,-1.9475452862679958],[121,307,78,-1.9437696486711502],[121,307,79,-1.9395872838795185],[121,308,64,-1.9552949965000153],[121,308,65,-1.954799011349678],[121,308,66,-1.9531472250819206],[121,308,67,-1.9513001218438148],[121,308,68,-1.9504030272364616],[121,308,69,-1.9511097259819508],[121,308,70,-1.9531404227018356],[121,308,71,-1.955637838691473],[121,308,72,-1.9583685472607613],[121,308,73,-1.9602887257933617],[121,308,74,-1.960965171456337],[121,308,75,-1.9603562392294407],[121,308,76,-1.9584060907363892],[121,308,77,-1.9553577862679958],[121,308,78,-1.9515821486711502],[121,308,79,-1.9473997838795185],[121,309,64,-1.9631074965000153],[121,309,65,-1.962611511349678],[121,309,66,-1.9609597250819206],[121,309,67,-1.9591126218438148],[121,309,68,-1.9582155272364616],[121,309,69,-1.9589222259819508],[121,309,70,-1.9609529227018356],[121,309,71,-1.963450338691473],[121,309,72,-1.9661810472607613],[121,309,73,-1.9681012257933617],[121,309,74,-1.968777671456337],[121,309,75,-1.9681687392294407],[121,309,76,-1.9662185907363892],[121,309,77,-1.9631702862679958],[121,309,78,-1.9593946486711502],[121,309,79,-1.9552122838795185],[121,310,64,-1.9709199965000153],[121,310,65,-1.970424011349678],[121,310,66,-1.9687722250819206],[121,310,67,-1.9669251218438148],[121,310,68,-1.9660280272364616],[121,310,69,-1.9667347259819508],[121,310,70,-1.9687654227018356],[121,310,71,-1.971262838691473],[121,310,72,-1.9739935472607613],[121,310,73,-1.9759137257933617],[121,310,74,-1.976590171456337],[121,310,75,-1.9759812392294407],[121,310,76,-1.9740310907363892],[121,310,77,-1.9709827862679958],[121,310,78,-1.9672071486711502],[121,310,79,-1.9630247838795185],[121,311,64,-1.9787324965000153],[121,311,65,-1.978236511349678],[121,311,66,-1.9765847250819206],[121,311,67,-1.9747376218438148],[121,311,68,-1.9738405272364616],[121,311,69,-1.9745472259819508],[121,311,70,-1.9765779227018356],[121,311,71,-1.979075338691473],[121,311,72,-1.9818060472607613],[121,311,73,-1.9837262257933617],[121,311,74,-1.984402671456337],[121,311,75,-1.9837937392294407],[121,311,76,-1.9818435907363892],[121,311,77,-1.9787952862679958],[121,311,78,-1.9750196486711502],[121,311,79,-1.9708372838795185],[121,312,64,-1.9865449965000153],[121,312,65,-1.986049011349678],[121,312,66,-1.9843972250819206],[121,312,67,-1.9825501218438148],[121,312,68,-1.9816530272364616],[121,312,69,-1.9823597259819508],[121,312,70,-1.9843904227018356],[121,312,71,-1.986887838691473],[121,312,72,-1.9896185472607613],[121,312,73,-1.9915387257933617],[121,312,74,-1.992215171456337],[121,312,75,-1.9916062392294407],[121,312,76,-1.9896560907363892],[121,312,77,-1.9866077862679958],[121,312,78,-1.9828321486711502],[121,312,79,-1.9786497838795185],[121,313,64,-1.9943574965000153],[121,313,65,-1.993861511349678],[121,313,66,-1.9922097250819206],[121,313,67,-1.9903626218438148],[121,313,68,-1.9894655272364616],[121,313,69,-1.9901722259819508],[121,313,70,-1.9922029227018356],[121,313,71,-1.994700338691473],[121,313,72,-1.9974310472607613],[121,313,73,-1.9993512257933617],[121,313,74,-2.000027671456337],[121,313,75,-1.9994187392294407],[121,313,76,-1.9974685907363892],[121,313,77,-1.9944202862679958],[121,313,78,-1.9906446486711502],[121,313,79,-1.9864622838795185],[121,314,64,-2.0021699965000153],[121,314,65,-2.001674011349678],[121,314,66,-2.0000222250819206],[121,314,67,-1.9981751218438148],[121,314,68,-1.9972780272364616],[121,314,69,-1.9979847259819508],[121,314,70,-2.0000154227018356],[121,314,71,-2.002512838691473],[121,314,72,-2.0052435472607613],[121,314,73,-2.0071637257933617],[121,314,74,-2.007840171456337],[121,314,75,-2.0072312392294407],[121,314,76,-2.005281090736389],[121,314,77,-2.002232786267996],[121,314,78,-1.9984571486711502],[121,314,79,-1.9942747838795185],[121,315,64,-2.0099824965000153],[121,315,65,-2.009486511349678],[121,315,66,-2.0078347250819206],[121,315,67,-2.005987621843815],[121,315,68,-2.0050905272364616],[121,315,69,-2.0057972259819508],[121,315,70,-2.0078279227018356],[121,315,71,-2.010325338691473],[121,315,72,-2.0130560472607613],[121,315,73,-2.0149762257933617],[121,315,74,-2.015652671456337],[121,315,75,-2.0150437392294407],[121,315,76,-2.013093590736389],[121,315,77,-2.010045286267996],[121,315,78,-2.00626964867115],[121,315,79,-2.0020872838795185],[121,316,64,-2.0177949965000153],[121,316,65,-2.017299011349678],[121,316,66,-2.0156472250819206],[121,316,67,-2.013800121843815],[121,316,68,-2.0129030272364616],[121,316,69,-2.0136097259819508],[121,316,70,-2.0156404227018356],[121,316,71,-2.018137838691473],[121,316,72,-2.0208685472607613],[121,316,73,-2.0227887257933617],[121,316,74,-2.023465171456337],[121,316,75,-2.0228562392294407],[121,316,76,-2.020906090736389],[121,316,77,-2.017857786267996],[121,316,78,-2.01408214867115],[121,316,79,-2.0098997838795185],[121,317,64,-2.0256074965000153],[121,317,65,-2.025111511349678],[121,317,66,-2.0234597250819206],[121,317,67,-2.021612621843815],[121,317,68,-2.0207155272364616],[121,317,69,-2.0214222259819508],[121,317,70,-2.0234529227018356],[121,317,71,-2.025950338691473],[121,317,72,-2.0286810472607613],[121,317,73,-2.0306012257933617],[121,317,74,-2.031277671456337],[121,317,75,-2.0306687392294407],[121,317,76,-2.028718590736389],[121,317,77,-2.025670286267996],[121,317,78,-2.02189464867115],[121,317,79,-2.0177122838795185],[121,318,64,-2.0334199965000153],[121,318,65,-2.032924011349678],[121,318,66,-2.0312722250819206],[121,318,67,-2.029425121843815],[121,318,68,-2.0285280272364616],[121,318,69,-2.0292347259819508],[121,318,70,-2.0312654227018356],[121,318,71,-2.033762838691473],[121,318,72,-2.0364935472607613],[121,318,73,-2.0384137257933617],[121,318,74,-2.039090171456337],[121,318,75,-2.0384812392294407],[121,318,76,-2.036531090736389],[121,318,77,-2.033482786267996],[121,318,78,-2.02970714867115],[121,318,79,-2.0255247838795185],[121,319,64,-2.0412324965000153],[121,319,65,-2.040736511349678],[121,319,66,-2.0390847250819206],[121,319,67,-2.037237621843815],[121,319,68,-2.0363405272364616],[121,319,69,-2.0370472259819508],[121,319,70,-2.0390779227018356],[121,319,71,-2.041575338691473],[121,319,72,-2.0443060472607613],[121,319,73,-2.0462262257933617],[121,319,74,-2.046902671456337],[121,319,75,-2.0462937392294407],[121,319,76,-2.044343590736389],[121,319,77,-2.041295286267996],[121,319,78,-2.03751964867115],[121,319,79,-2.0333372838795185],[122,-64,64,0.9479634687304497],[122,-64,65,0.9481734484434128],[122,-64,66,0.9497768729925156],[122,-64,67,0.9515953175723553],[122,-64,68,0.9522858895361423],[122,-64,69,0.9511272758245468],[122,-64,70,0.9486003518104553],[122,-64,71,0.9457235373556614],[122,-64,72,0.942818034440279],[122,-64,73,0.941027108579874],[122,-64,74,0.940568096935749],[122,-64,75,0.9414533413946629],[122,-64,76,0.9438463896512985],[122,-64,77,0.9474406391382217],[122,-64,78,0.951647873967886],[122,-64,79,0.9562226049602032],[122,-63,64,0.9401509687304497],[122,-63,65,0.9403609484434128],[122,-63,66,0.9419643729925156],[122,-63,67,0.9437828175723553],[122,-63,68,0.9444733895361423],[122,-63,69,0.9433147758245468],[122,-63,70,0.9407878518104553],[122,-63,71,0.9379110373556614],[122,-63,72,0.935005534440279],[122,-63,73,0.933214608579874],[122,-63,74,0.932755596935749],[122,-63,75,0.9336408413946629],[122,-63,76,0.9360338896512985],[122,-63,77,0.9396281391382217],[122,-63,78,0.943835373967886],[122,-63,79,0.9484101049602032],[122,-62,64,0.9323384687304497],[122,-62,65,0.9325484484434128],[122,-62,66,0.9341518729925156],[122,-62,67,0.9359703175723553],[122,-62,68,0.9366608895361423],[122,-62,69,0.9355022758245468],[122,-62,70,0.9329753518104553],[122,-62,71,0.9300985373556614],[122,-62,72,0.927193034440279],[122,-62,73,0.925402108579874],[122,-62,74,0.924943096935749],[122,-62,75,0.9258283413946629],[122,-62,76,0.9282213896512985],[122,-62,77,0.9318156391382217],[122,-62,78,0.936022873967886],[122,-62,79,0.9405976049602032],[122,-61,64,0.9245259687304497],[122,-61,65,0.9247359484434128],[122,-61,66,0.9263393729925156],[122,-61,67,0.9281578175723553],[122,-61,68,0.9288483895361423],[122,-61,69,0.9276897758245468],[122,-61,70,0.9251628518104553],[122,-61,71,0.9222860373556614],[122,-61,72,0.919380534440279],[122,-61,73,0.917589608579874],[122,-61,74,0.917130596935749],[122,-61,75,0.9180158413946629],[122,-61,76,0.9204088896512985],[122,-61,77,0.9240031391382217],[122,-61,78,0.928210373967886],[122,-61,79,0.9327851049602032],[122,-60,64,0.9167134687304497],[122,-60,65,0.9169234484434128],[122,-60,66,0.9185268729925156],[122,-60,67,0.9203453175723553],[122,-60,68,0.9210358895361423],[122,-60,69,0.9198772758245468],[122,-60,70,0.9173503518104553],[122,-60,71,0.9144735373556614],[122,-60,72,0.911568034440279],[122,-60,73,0.909777108579874],[122,-60,74,0.909318096935749],[122,-60,75,0.9102033413946629],[122,-60,76,0.9125963896512985],[122,-60,77,0.9161906391382217],[122,-60,78,0.920397873967886],[122,-60,79,0.9249726049602032],[122,-59,64,0.9089009687304497],[122,-59,65,0.9091109484434128],[122,-59,66,0.9107143729925156],[122,-59,67,0.9125328175723553],[122,-59,68,0.9132233895361423],[122,-59,69,0.9120647758245468],[122,-59,70,0.9095378518104553],[122,-59,71,0.9066610373556614],[122,-59,72,0.903755534440279],[122,-59,73,0.901964608579874],[122,-59,74,0.901505596935749],[122,-59,75,0.9023908413946629],[122,-59,76,0.9047838896512985],[122,-59,77,0.9083781391382217],[122,-59,78,0.912585373967886],[122,-59,79,0.9171601049602032],[122,-58,64,0.9010884687304497],[122,-58,65,0.9012984484434128],[122,-58,66,0.9029018729925156],[122,-58,67,0.9047203175723553],[122,-58,68,0.9054108895361423],[122,-58,69,0.9042522758245468],[122,-58,70,0.9017253518104553],[122,-58,71,0.8988485373556614],[122,-58,72,0.895943034440279],[122,-58,73,0.894152108579874],[122,-58,74,0.893693096935749],[122,-58,75,0.8945783413946629],[122,-58,76,0.8969713896512985],[122,-58,77,0.9005656391382217],[122,-58,78,0.904772873967886],[122,-58,79,0.9093476049602032],[122,-57,64,0.8932759687304497],[122,-57,65,0.8934859484434128],[122,-57,66,0.8950893729925156],[122,-57,67,0.8969078175723553],[122,-57,68,0.8975983895361423],[122,-57,69,0.8964397758245468],[122,-57,70,0.8939128518104553],[122,-57,71,0.8910360373556614],[122,-57,72,0.888130534440279],[122,-57,73,0.886339608579874],[122,-57,74,0.885880596935749],[122,-57,75,0.8867658413946629],[122,-57,76,0.8891588896512985],[122,-57,77,0.8927531391382217],[122,-57,78,0.896960373967886],[122,-57,79,0.9015351049602032],[122,-56,64,0.8854634687304497],[122,-56,65,0.8856734484434128],[122,-56,66,0.8872768729925156],[122,-56,67,0.8890953175723553],[122,-56,68,0.8897858895361423],[122,-56,69,0.8886272758245468],[122,-56,70,0.8861003518104553],[122,-56,71,0.8832235373556614],[122,-56,72,0.880318034440279],[122,-56,73,0.878527108579874],[122,-56,74,0.878068096935749],[122,-56,75,0.8789533413946629],[122,-56,76,0.8813463896512985],[122,-56,77,0.8849406391382217],[122,-56,78,0.889147873967886],[122,-56,79,0.8937226049602032],[122,-55,64,0.8776509687304497],[122,-55,65,0.8778609484434128],[122,-55,66,0.8794643729925156],[122,-55,67,0.8812828175723553],[122,-55,68,0.8819733895361423],[122,-55,69,0.8808147758245468],[122,-55,70,0.8782878518104553],[122,-55,71,0.8754110373556614],[122,-55,72,0.872505534440279],[122,-55,73,0.870714608579874],[122,-55,74,0.870255596935749],[122,-55,75,0.8711408413946629],[122,-55,76,0.8735338896512985],[122,-55,77,0.8771281391382217],[122,-55,78,0.881335373967886],[122,-55,79,0.8859101049602032],[122,-54,64,0.8698384687304497],[122,-54,65,0.8700484484434128],[122,-54,66,0.8716518729925156],[122,-54,67,0.8734703175723553],[122,-54,68,0.8741608895361423],[122,-54,69,0.8730022758245468],[122,-54,70,0.8704753518104553],[122,-54,71,0.8675985373556614],[122,-54,72,0.864693034440279],[122,-54,73,0.862902108579874],[122,-54,74,0.862443096935749],[122,-54,75,0.8633283413946629],[122,-54,76,0.8657213896512985],[122,-54,77,0.8693156391382217],[122,-54,78,0.873522873967886],[122,-54,79,0.8780976049602032],[122,-53,64,0.8620259687304497],[122,-53,65,0.8622359484434128],[122,-53,66,0.8638393729925156],[122,-53,67,0.8656578175723553],[122,-53,68,0.8663483895361423],[122,-53,69,0.8651897758245468],[122,-53,70,0.8626628518104553],[122,-53,71,0.8597860373556614],[122,-53,72,0.856880534440279],[122,-53,73,0.855089608579874],[122,-53,74,0.854630596935749],[122,-53,75,0.8555158413946629],[122,-53,76,0.8579088896512985],[122,-53,77,0.8615031391382217],[122,-53,78,0.865710373967886],[122,-53,79,0.8702851049602032],[122,-52,64,0.8542134687304497],[122,-52,65,0.8544234484434128],[122,-52,66,0.8560268729925156],[122,-52,67,0.8578453175723553],[122,-52,68,0.8585358895361423],[122,-52,69,0.8573772758245468],[122,-52,70,0.8548503518104553],[122,-52,71,0.8519735373556614],[122,-52,72,0.849068034440279],[122,-52,73,0.847277108579874],[122,-52,74,0.846818096935749],[122,-52,75,0.8477033413946629],[122,-52,76,0.8500963896512985],[122,-52,77,0.8536906391382217],[122,-52,78,0.857897873967886],[122,-52,79,0.8624726049602032],[122,-51,64,0.8464009687304497],[122,-51,65,0.8466109484434128],[122,-51,66,0.8482143729925156],[122,-51,67,0.8500328175723553],[122,-51,68,0.8507233895361423],[122,-51,69,0.8495647758245468],[122,-51,70,0.8470378518104553],[122,-51,71,0.8441610373556614],[122,-51,72,0.841255534440279],[122,-51,73,0.839464608579874],[122,-51,74,0.839005596935749],[122,-51,75,0.8398908413946629],[122,-51,76,0.8422838896512985],[122,-51,77,0.8458781391382217],[122,-51,78,0.850085373967886],[122,-51,79,0.8546601049602032],[122,-50,64,0.8385884687304497],[122,-50,65,0.8387984484434128],[122,-50,66,0.8404018729925156],[122,-50,67,0.8422203175723553],[122,-50,68,0.8429108895361423],[122,-50,69,0.8417522758245468],[122,-50,70,0.8392253518104553],[122,-50,71,0.8363485373556614],[122,-50,72,0.833443034440279],[122,-50,73,0.831652108579874],[122,-50,74,0.831193096935749],[122,-50,75,0.8320783413946629],[122,-50,76,0.8344713896512985],[122,-50,77,0.8380656391382217],[122,-50,78,0.842272873967886],[122,-50,79,0.8468476049602032],[122,-49,64,0.8307759687304497],[122,-49,65,0.8309859484434128],[122,-49,66,0.8325893729925156],[122,-49,67,0.8344078175723553],[122,-49,68,0.8350983895361423],[122,-49,69,0.8339397758245468],[122,-49,70,0.8314128518104553],[122,-49,71,0.8285360373556614],[122,-49,72,0.825630534440279],[122,-49,73,0.823839608579874],[122,-49,74,0.823380596935749],[122,-49,75,0.8242658413946629],[122,-49,76,0.8266588896512985],[122,-49,77,0.8302531391382217],[122,-49,78,0.834460373967886],[122,-49,79,0.8390351049602032],[122,-48,64,0.8229634687304497],[122,-48,65,0.8231734484434128],[122,-48,66,0.8247768729925156],[122,-48,67,0.8265953175723553],[122,-48,68,0.8272858895361423],[122,-48,69,0.8261272758245468],[122,-48,70,0.8236003518104553],[122,-48,71,0.8207235373556614],[122,-48,72,0.817818034440279],[122,-48,73,0.816027108579874],[122,-48,74,0.815568096935749],[122,-48,75,0.8164533413946629],[122,-48,76,0.8188463896512985],[122,-48,77,0.8224406391382217],[122,-48,78,0.826647873967886],[122,-48,79,0.8312226049602032],[122,-47,64,0.8151509687304497],[122,-47,65,0.8153609484434128],[122,-47,66,0.8169643729925156],[122,-47,67,0.8187828175723553],[122,-47,68,0.8194733895361423],[122,-47,69,0.8183147758245468],[122,-47,70,0.8157878518104553],[122,-47,71,0.8129110373556614],[122,-47,72,0.810005534440279],[122,-47,73,0.808214608579874],[122,-47,74,0.807755596935749],[122,-47,75,0.8086408413946629],[122,-47,76,0.8110338896512985],[122,-47,77,0.8146281391382217],[122,-47,78,0.818835373967886],[122,-47,79,0.8234101049602032],[122,-46,64,0.8073384687304497],[122,-46,65,0.8075484484434128],[122,-46,66,0.8091518729925156],[122,-46,67,0.8109703175723553],[122,-46,68,0.8116608895361423],[122,-46,69,0.8105022758245468],[122,-46,70,0.8079753518104553],[122,-46,71,0.8050985373556614],[122,-46,72,0.802193034440279],[122,-46,73,0.800402108579874],[122,-46,74,0.799943096935749],[122,-46,75,0.8008283413946629],[122,-46,76,0.8032213896512985],[122,-46,77,0.8068156391382217],[122,-46,78,0.811022873967886],[122,-46,79,0.8155976049602032],[122,-45,64,0.7995259687304497],[122,-45,65,0.7997359484434128],[122,-45,66,0.8013393729925156],[122,-45,67,0.8031578175723553],[122,-45,68,0.8038483895361423],[122,-45,69,0.8026897758245468],[122,-45,70,0.8001628518104553],[122,-45,71,0.7972860373556614],[122,-45,72,0.794380534440279],[122,-45,73,0.792589608579874],[122,-45,74,0.792130596935749],[122,-45,75,0.7930158413946629],[122,-45,76,0.7954088896512985],[122,-45,77,0.7990031391382217],[122,-45,78,0.803210373967886],[122,-45,79,0.8077851049602032],[122,-44,64,0.7917134687304497],[122,-44,65,0.7919234484434128],[122,-44,66,0.7935268729925156],[122,-44,67,0.7953453175723553],[122,-44,68,0.7960358895361423],[122,-44,69,0.7948772758245468],[122,-44,70,0.7923503518104553],[122,-44,71,0.7894735373556614],[122,-44,72,0.786568034440279],[122,-44,73,0.784777108579874],[122,-44,74,0.784318096935749],[122,-44,75,0.7852033413946629],[122,-44,76,0.7875963896512985],[122,-44,77,0.7911906391382217],[122,-44,78,0.795397873967886],[122,-44,79,0.7999726049602032],[122,-43,64,0.7839009687304497],[122,-43,65,0.7841109484434128],[122,-43,66,0.7857143729925156],[122,-43,67,0.7875328175723553],[122,-43,68,0.7882233895361423],[122,-43,69,0.7870647758245468],[122,-43,70,0.7845378518104553],[122,-43,71,0.7816610373556614],[122,-43,72,0.778755534440279],[122,-43,73,0.776964608579874],[122,-43,74,0.776505596935749],[122,-43,75,0.7773908413946629],[122,-43,76,0.7797838896512985],[122,-43,77,0.7833781391382217],[122,-43,78,0.787585373967886],[122,-43,79,0.7921601049602032],[122,-42,64,0.7760884687304497],[122,-42,65,0.7762984484434128],[122,-42,66,0.7779018729925156],[122,-42,67,0.7797203175723553],[122,-42,68,0.7804108895361423],[122,-42,69,0.7792522758245468],[122,-42,70,0.7767253518104553],[122,-42,71,0.7738485373556614],[122,-42,72,0.770943034440279],[122,-42,73,0.769152108579874],[122,-42,74,0.768693096935749],[122,-42,75,0.7695783413946629],[122,-42,76,0.7719713896512985],[122,-42,77,0.7755656391382217],[122,-42,78,0.779772873967886],[122,-42,79,0.7843476049602032],[122,-41,64,0.7682759687304497],[122,-41,65,0.7684859484434128],[122,-41,66,0.7700893729925156],[122,-41,67,0.7719078175723553],[122,-41,68,0.7725983895361423],[122,-41,69,0.7714397758245468],[122,-41,70,0.7689128518104553],[122,-41,71,0.7660360373556614],[122,-41,72,0.763130534440279],[122,-41,73,0.761339608579874],[122,-41,74,0.760880596935749],[122,-41,75,0.7617658413946629],[122,-41,76,0.7641588896512985],[122,-41,77,0.7677531391382217],[122,-41,78,0.771960373967886],[122,-41,79,0.7765351049602032],[122,-40,64,0.7604634687304497],[122,-40,65,0.7606734484434128],[122,-40,66,0.7622768729925156],[122,-40,67,0.7640953175723553],[122,-40,68,0.7647858895361423],[122,-40,69,0.7636272758245468],[122,-40,70,0.7611003518104553],[122,-40,71,0.7582235373556614],[122,-40,72,0.755318034440279],[122,-40,73,0.753527108579874],[122,-40,74,0.753068096935749],[122,-40,75,0.7539533413946629],[122,-40,76,0.7563463896512985],[122,-40,77,0.7599406391382217],[122,-40,78,0.764147873967886],[122,-40,79,0.7687226049602032],[122,-39,64,0.7526509687304497],[122,-39,65,0.7528609484434128],[122,-39,66,0.7544643729925156],[122,-39,67,0.7562828175723553],[122,-39,68,0.7569733895361423],[122,-39,69,0.7558147758245468],[122,-39,70,0.7532878518104553],[122,-39,71,0.7504110373556614],[122,-39,72,0.747505534440279],[122,-39,73,0.745714608579874],[122,-39,74,0.745255596935749],[122,-39,75,0.7461408413946629],[122,-39,76,0.7485338896512985],[122,-39,77,0.7521281391382217],[122,-39,78,0.756335373967886],[122,-39,79,0.7609101049602032],[122,-38,64,0.7448384687304497],[122,-38,65,0.7450484484434128],[122,-38,66,0.7466518729925156],[122,-38,67,0.7484703175723553],[122,-38,68,0.7491608895361423],[122,-38,69,0.7480022758245468],[122,-38,70,0.7454753518104553],[122,-38,71,0.7425985373556614],[122,-38,72,0.739693034440279],[122,-38,73,0.737902108579874],[122,-38,74,0.737443096935749],[122,-38,75,0.7383283413946629],[122,-38,76,0.7407213896512985],[122,-38,77,0.7443156391382217],[122,-38,78,0.748522873967886],[122,-38,79,0.7530976049602032],[122,-37,64,0.7370259687304497],[122,-37,65,0.7372359484434128],[122,-37,66,0.7388393729925156],[122,-37,67,0.7406578175723553],[122,-37,68,0.7413483895361423],[122,-37,69,0.7401897758245468],[122,-37,70,0.7376628518104553],[122,-37,71,0.7347860373556614],[122,-37,72,0.731880534440279],[122,-37,73,0.730089608579874],[122,-37,74,0.729630596935749],[122,-37,75,0.7305158413946629],[122,-37,76,0.7329088896512985],[122,-37,77,0.7365031391382217],[122,-37,78,0.740710373967886],[122,-37,79,0.7452851049602032],[122,-36,64,0.7292134687304497],[122,-36,65,0.7294234484434128],[122,-36,66,0.7310268729925156],[122,-36,67,0.7328453175723553],[122,-36,68,0.7335358895361423],[122,-36,69,0.7323772758245468],[122,-36,70,0.7298503518104553],[122,-36,71,0.7269735373556614],[122,-36,72,0.724068034440279],[122,-36,73,0.722277108579874],[122,-36,74,0.721818096935749],[122,-36,75,0.7227033413946629],[122,-36,76,0.7250963896512985],[122,-36,77,0.7286906391382217],[122,-36,78,0.732897873967886],[122,-36,79,0.7374726049602032],[122,-35,64,0.7214009687304497],[122,-35,65,0.7216109484434128],[122,-35,66,0.7232143729925156],[122,-35,67,0.7250328175723553],[122,-35,68,0.7257233895361423],[122,-35,69,0.7245647758245468],[122,-35,70,0.7220378518104553],[122,-35,71,0.7191610373556614],[122,-35,72,0.716255534440279],[122,-35,73,0.714464608579874],[122,-35,74,0.714005596935749],[122,-35,75,0.7148908413946629],[122,-35,76,0.7172838896512985],[122,-35,77,0.7208781391382217],[122,-35,78,0.725085373967886],[122,-35,79,0.7296601049602032],[122,-34,64,0.7135884687304497],[122,-34,65,0.7137984484434128],[122,-34,66,0.7154018729925156],[122,-34,67,0.7172203175723553],[122,-34,68,0.7179108895361423],[122,-34,69,0.7167522758245468],[122,-34,70,0.7142253518104553],[122,-34,71,0.7113485373556614],[122,-34,72,0.708443034440279],[122,-34,73,0.706652108579874],[122,-34,74,0.706193096935749],[122,-34,75,0.7070783413946629],[122,-34,76,0.7094713896512985],[122,-34,77,0.7130656391382217],[122,-34,78,0.717272873967886],[122,-34,79,0.7218476049602032],[122,-33,64,0.7057759687304497],[122,-33,65,0.7059859484434128],[122,-33,66,0.7075893729925156],[122,-33,67,0.7094078175723553],[122,-33,68,0.7100983895361423],[122,-33,69,0.7089397758245468],[122,-33,70,0.7064128518104553],[122,-33,71,0.7035360373556614],[122,-33,72,0.700630534440279],[122,-33,73,0.698839608579874],[122,-33,74,0.698380596935749],[122,-33,75,0.6992658413946629],[122,-33,76,0.7016588896512985],[122,-33,77,0.7052531391382217],[122,-33,78,0.709460373967886],[122,-33,79,0.7140351049602032],[122,-32,64,0.6979634687304497],[122,-32,65,0.6981734484434128],[122,-32,66,0.6997768729925156],[122,-32,67,0.7015953175723553],[122,-32,68,0.7022858895361423],[122,-32,69,0.7011272758245468],[122,-32,70,0.6986003518104553],[122,-32,71,0.6957235373556614],[122,-32,72,0.692818034440279],[122,-32,73,0.691027108579874],[122,-32,74,0.690568096935749],[122,-32,75,0.6914533413946629],[122,-32,76,0.6938463896512985],[122,-32,77,0.6974406391382217],[122,-32,78,0.701647873967886],[122,-32,79,0.7062226049602032],[122,-31,64,0.6901509687304497],[122,-31,65,0.6903609484434128],[122,-31,66,0.6919643729925156],[122,-31,67,0.6937828175723553],[122,-31,68,0.6944733895361423],[122,-31,69,0.6933147758245468],[122,-31,70,0.6907878518104553],[122,-31,71,0.6879110373556614],[122,-31,72,0.685005534440279],[122,-31,73,0.683214608579874],[122,-31,74,0.682755596935749],[122,-31,75,0.6836408413946629],[122,-31,76,0.6860338896512985],[122,-31,77,0.6896281391382217],[122,-31,78,0.693835373967886],[122,-31,79,0.6984101049602032],[122,-30,64,0.6823384687304497],[122,-30,65,0.6825484484434128],[122,-30,66,0.6841518729925156],[122,-30,67,0.6859703175723553],[122,-30,68,0.6866608895361423],[122,-30,69,0.6855022758245468],[122,-30,70,0.6829753518104553],[122,-30,71,0.6800985373556614],[122,-30,72,0.677193034440279],[122,-30,73,0.675402108579874],[122,-30,74,0.674943096935749],[122,-30,75,0.6758283413946629],[122,-30,76,0.6782213896512985],[122,-30,77,0.6818156391382217],[122,-30,78,0.686022873967886],[122,-30,79,0.6905976049602032],[122,-29,64,0.6745259687304497],[122,-29,65,0.6747359484434128],[122,-29,66,0.6763393729925156],[122,-29,67,0.6781578175723553],[122,-29,68,0.6788483895361423],[122,-29,69,0.6776897758245468],[122,-29,70,0.6751628518104553],[122,-29,71,0.6722860373556614],[122,-29,72,0.669380534440279],[122,-29,73,0.667589608579874],[122,-29,74,0.667130596935749],[122,-29,75,0.6680158413946629],[122,-29,76,0.6704088896512985],[122,-29,77,0.6740031391382217],[122,-29,78,0.678210373967886],[122,-29,79,0.6827851049602032],[122,-28,64,0.6667134687304497],[122,-28,65,0.6669234484434128],[122,-28,66,0.6685268729925156],[122,-28,67,0.6703453175723553],[122,-28,68,0.6710358895361423],[122,-28,69,0.6698772758245468],[122,-28,70,0.6673503518104553],[122,-28,71,0.6644735373556614],[122,-28,72,0.661568034440279],[122,-28,73,0.659777108579874],[122,-28,74,0.659318096935749],[122,-28,75,0.6602033413946629],[122,-28,76,0.6625963896512985],[122,-28,77,0.6661906391382217],[122,-28,78,0.670397873967886],[122,-28,79,0.6749726049602032],[122,-27,64,0.6589009687304497],[122,-27,65,0.6591109484434128],[122,-27,66,0.6607143729925156],[122,-27,67,0.6625328175723553],[122,-27,68,0.6632233895361423],[122,-27,69,0.6620647758245468],[122,-27,70,0.6595378518104553],[122,-27,71,0.6566610373556614],[122,-27,72,0.653755534440279],[122,-27,73,0.651964608579874],[122,-27,74,0.651505596935749],[122,-27,75,0.6523908413946629],[122,-27,76,0.6547838896512985],[122,-27,77,0.6583781391382217],[122,-27,78,0.662585373967886],[122,-27,79,0.6671601049602032],[122,-26,64,0.6510884687304497],[122,-26,65,0.6512984484434128],[122,-26,66,0.6529018729925156],[122,-26,67,0.6547203175723553],[122,-26,68,0.6554108895361423],[122,-26,69,0.6542522758245468],[122,-26,70,0.6517253518104553],[122,-26,71,0.6488485373556614],[122,-26,72,0.645943034440279],[122,-26,73,0.644152108579874],[122,-26,74,0.643693096935749],[122,-26,75,0.6445783413946629],[122,-26,76,0.6469713896512985],[122,-26,77,0.6505656391382217],[122,-26,78,0.654772873967886],[122,-26,79,0.6593476049602032],[122,-25,64,0.6432759687304497],[122,-25,65,0.6434859484434128],[122,-25,66,0.6450893729925156],[122,-25,67,0.6469078175723553],[122,-25,68,0.6475983895361423],[122,-25,69,0.6464397758245468],[122,-25,70,0.6439128518104553],[122,-25,71,0.6410360373556614],[122,-25,72,0.638130534440279],[122,-25,73,0.636339608579874],[122,-25,74,0.635880596935749],[122,-25,75,0.6367658413946629],[122,-25,76,0.6391588896512985],[122,-25,77,0.6427531391382217],[122,-25,78,0.646960373967886],[122,-25,79,0.6515351049602032],[122,-24,64,0.6354634687304497],[122,-24,65,0.6356734484434128],[122,-24,66,0.6372768729925156],[122,-24,67,0.6390953175723553],[122,-24,68,0.6397858895361423],[122,-24,69,0.6386272758245468],[122,-24,70,0.6361003518104553],[122,-24,71,0.6332235373556614],[122,-24,72,0.630318034440279],[122,-24,73,0.628527108579874],[122,-24,74,0.628068096935749],[122,-24,75,0.6289533413946629],[122,-24,76,0.6313463896512985],[122,-24,77,0.6349406391382217],[122,-24,78,0.639147873967886],[122,-24,79,0.6437226049602032],[122,-23,64,0.6276509687304497],[122,-23,65,0.6278609484434128],[122,-23,66,0.6294643729925156],[122,-23,67,0.6312828175723553],[122,-23,68,0.6319733895361423],[122,-23,69,0.6308147758245468],[122,-23,70,0.6282878518104553],[122,-23,71,0.6254110373556614],[122,-23,72,0.622505534440279],[122,-23,73,0.620714608579874],[122,-23,74,0.620255596935749],[122,-23,75,0.6211408413946629],[122,-23,76,0.6235338896512985],[122,-23,77,0.6271281391382217],[122,-23,78,0.631335373967886],[122,-23,79,0.6359101049602032],[122,-22,64,0.6198384687304497],[122,-22,65,0.6200484484434128],[122,-22,66,0.6216518729925156],[122,-22,67,0.6234703175723553],[122,-22,68,0.6241608895361423],[122,-22,69,0.6230022758245468],[122,-22,70,0.6204753518104553],[122,-22,71,0.6175985373556614],[122,-22,72,0.614693034440279],[122,-22,73,0.612902108579874],[122,-22,74,0.612443096935749],[122,-22,75,0.6133283413946629],[122,-22,76,0.6157213896512985],[122,-22,77,0.6193156391382217],[122,-22,78,0.623522873967886],[122,-22,79,0.6280976049602032],[122,-21,64,0.6120259687304497],[122,-21,65,0.6122359484434128],[122,-21,66,0.6138393729925156],[122,-21,67,0.6156578175723553],[122,-21,68,0.6163483895361423],[122,-21,69,0.6151897758245468],[122,-21,70,0.6126628518104553],[122,-21,71,0.6097860373556614],[122,-21,72,0.606880534440279],[122,-21,73,0.605089608579874],[122,-21,74,0.604630596935749],[122,-21,75,0.6055158413946629],[122,-21,76,0.6079088896512985],[122,-21,77,0.6115031391382217],[122,-21,78,0.615710373967886],[122,-21,79,0.6202851049602032],[122,-20,64,0.6042134687304497],[122,-20,65,0.6044234484434128],[122,-20,66,0.6060268729925156],[122,-20,67,0.6078453175723553],[122,-20,68,0.6085358895361423],[122,-20,69,0.6073772758245468],[122,-20,70,0.6048503518104553],[122,-20,71,0.6019735373556614],[122,-20,72,0.599068034440279],[122,-20,73,0.597277108579874],[122,-20,74,0.596818096935749],[122,-20,75,0.5977033413946629],[122,-20,76,0.6000963896512985],[122,-20,77,0.6036906391382217],[122,-20,78,0.607897873967886],[122,-20,79,0.6124726049602032],[122,-19,64,0.5964009687304497],[122,-19,65,0.5966109484434128],[122,-19,66,0.5982143729925156],[122,-19,67,0.6000328175723553],[122,-19,68,0.6007233895361423],[122,-19,69,0.5995647758245468],[122,-19,70,0.5970378518104553],[122,-19,71,0.5941610373556614],[122,-19,72,0.591255534440279],[122,-19,73,0.589464608579874],[122,-19,74,0.589005596935749],[122,-19,75,0.5898908413946629],[122,-19,76,0.5922838896512985],[122,-19,77,0.5958781391382217],[122,-19,78,0.600085373967886],[122,-19,79,0.6046601049602032],[122,-18,64,0.5885884687304497],[122,-18,65,0.5887984484434128],[122,-18,66,0.5904018729925156],[122,-18,67,0.5922203175723553],[122,-18,68,0.5929108895361423],[122,-18,69,0.5917522758245468],[122,-18,70,0.5892253518104553],[122,-18,71,0.5863485373556614],[122,-18,72,0.583443034440279],[122,-18,73,0.581652108579874],[122,-18,74,0.581193096935749],[122,-18,75,0.5820783413946629],[122,-18,76,0.5844713896512985],[122,-18,77,0.5880656391382217],[122,-18,78,0.592272873967886],[122,-18,79,0.5968476049602032],[122,-17,64,0.5807759687304497],[122,-17,65,0.5809859484434128],[122,-17,66,0.5825893729925156],[122,-17,67,0.5844078175723553],[122,-17,68,0.5850983895361423],[122,-17,69,0.5839397758245468],[122,-17,70,0.5814128518104553],[122,-17,71,0.5785360373556614],[122,-17,72,0.575630534440279],[122,-17,73,0.573839608579874],[122,-17,74,0.573380596935749],[122,-17,75,0.5742658413946629],[122,-17,76,0.5766588896512985],[122,-17,77,0.5802531391382217],[122,-17,78,0.584460373967886],[122,-17,79,0.5890351049602032],[122,-16,64,0.5729634687304497],[122,-16,65,0.5731734484434128],[122,-16,66,0.5747768729925156],[122,-16,67,0.5765953175723553],[122,-16,68,0.5772858895361423],[122,-16,69,0.5761272758245468],[122,-16,70,0.5736003518104553],[122,-16,71,0.5707235373556614],[122,-16,72,0.567818034440279],[122,-16,73,0.566027108579874],[122,-16,74,0.565568096935749],[122,-16,75,0.5664533413946629],[122,-16,76,0.5688463896512985],[122,-16,77,0.5724406391382217],[122,-16,78,0.576647873967886],[122,-16,79,0.5812226049602032],[122,-15,64,0.5651509687304497],[122,-15,65,0.5653609484434128],[122,-15,66,0.5669643729925156],[122,-15,67,0.5687828175723553],[122,-15,68,0.5694733895361423],[122,-15,69,0.5683147758245468],[122,-15,70,0.5657878518104553],[122,-15,71,0.5629110373556614],[122,-15,72,0.560005534440279],[122,-15,73,0.558214608579874],[122,-15,74,0.557755596935749],[122,-15,75,0.5586408413946629],[122,-15,76,0.5610338896512985],[122,-15,77,0.5646281391382217],[122,-15,78,0.568835373967886],[122,-15,79,0.5734101049602032],[122,-14,64,0.5573384687304497],[122,-14,65,0.5575484484434128],[122,-14,66,0.5591518729925156],[122,-14,67,0.5609703175723553],[122,-14,68,0.5616608895361423],[122,-14,69,0.5605022758245468],[122,-14,70,0.5579753518104553],[122,-14,71,0.5550985373556614],[122,-14,72,0.552193034440279],[122,-14,73,0.550402108579874],[122,-14,74,0.549943096935749],[122,-14,75,0.5508283413946629],[122,-14,76,0.5532213896512985],[122,-14,77,0.5568156391382217],[122,-14,78,0.561022873967886],[122,-14,79,0.5655976049602032],[122,-13,64,0.5495259687304497],[122,-13,65,0.5497359484434128],[122,-13,66,0.5513393729925156],[122,-13,67,0.5531578175723553],[122,-13,68,0.5538483895361423],[122,-13,69,0.5526897758245468],[122,-13,70,0.5501628518104553],[122,-13,71,0.5472860373556614],[122,-13,72,0.544380534440279],[122,-13,73,0.542589608579874],[122,-13,74,0.542130596935749],[122,-13,75,0.5430158413946629],[122,-13,76,0.5454088896512985],[122,-13,77,0.5490031391382217],[122,-13,78,0.553210373967886],[122,-13,79,0.5577851049602032],[122,-12,64,0.5417134687304497],[122,-12,65,0.5419234484434128],[122,-12,66,0.5435268729925156],[122,-12,67,0.5453453175723553],[122,-12,68,0.5460358895361423],[122,-12,69,0.5448772758245468],[122,-12,70,0.5423503518104553],[122,-12,71,0.5394735373556614],[122,-12,72,0.536568034440279],[122,-12,73,0.534777108579874],[122,-12,74,0.534318096935749],[122,-12,75,0.5352033413946629],[122,-12,76,0.5375963896512985],[122,-12,77,0.5411906391382217],[122,-12,78,0.545397873967886],[122,-12,79,0.5499726049602032],[122,-11,64,0.5339009687304497],[122,-11,65,0.5341109484434128],[122,-11,66,0.5357143729925156],[122,-11,67,0.5375328175723553],[122,-11,68,0.5382233895361423],[122,-11,69,0.5370647758245468],[122,-11,70,0.5345378518104553],[122,-11,71,0.5316610373556614],[122,-11,72,0.528755534440279],[122,-11,73,0.526964608579874],[122,-11,74,0.526505596935749],[122,-11,75,0.5273908413946629],[122,-11,76,0.5297838896512985],[122,-11,77,0.5333781391382217],[122,-11,78,0.537585373967886],[122,-11,79,0.5421601049602032],[122,-10,64,0.5260884687304497],[122,-10,65,0.5262984484434128],[122,-10,66,0.5279018729925156],[122,-10,67,0.5297203175723553],[122,-10,68,0.5304108895361423],[122,-10,69,0.5292522758245468],[122,-10,70,0.5267253518104553],[122,-10,71,0.5238485373556614],[122,-10,72,0.520943034440279],[122,-10,73,0.519152108579874],[122,-10,74,0.518693096935749],[122,-10,75,0.5195783413946629],[122,-10,76,0.5219713896512985],[122,-10,77,0.5255656391382217],[122,-10,78,0.529772873967886],[122,-10,79,0.5343476049602032],[122,-9,64,0.5182759687304497],[122,-9,65,0.5184859484434128],[122,-9,66,0.5200893729925156],[122,-9,67,0.5219078175723553],[122,-9,68,0.5225983895361423],[122,-9,69,0.5214397758245468],[122,-9,70,0.5189128518104553],[122,-9,71,0.5160360373556614],[122,-9,72,0.513130534440279],[122,-9,73,0.511339608579874],[122,-9,74,0.510880596935749],[122,-9,75,0.5117658413946629],[122,-9,76,0.5141588896512985],[122,-9,77,0.5177531391382217],[122,-9,78,0.521960373967886],[122,-9,79,0.5265351049602032],[122,-8,64,0.5104634687304497],[122,-8,65,0.5106734484434128],[122,-8,66,0.5122768729925156],[122,-8,67,0.5140953175723553],[122,-8,68,0.5147858895361423],[122,-8,69,0.5136272758245468],[122,-8,70,0.5111003518104553],[122,-8,71,0.5082235373556614],[122,-8,72,0.505318034440279],[122,-8,73,0.503527108579874],[122,-8,74,0.503068096935749],[122,-8,75,0.5039533413946629],[122,-8,76,0.5063463896512985],[122,-8,77,0.5099406391382217],[122,-8,78,0.514147873967886],[122,-8,79,0.5187226049602032],[122,-7,64,0.5026509687304497],[122,-7,65,0.5028609484434128],[122,-7,66,0.5044643729925156],[122,-7,67,0.5062828175723553],[122,-7,68,0.5069733895361423],[122,-7,69,0.5058147758245468],[122,-7,70,0.5032878518104553],[122,-7,71,0.5004110373556614],[122,-7,72,0.497505534440279],[122,-7,73,0.49571460857987404],[122,-7,74,0.49525559693574905],[122,-7,75,0.49614084139466286],[122,-7,76,0.4985338896512985],[122,-7,77,0.5021281391382217],[122,-7,78,0.506335373967886],[122,-7,79,0.5109101049602032],[122,-6,64,0.4948384687304497],[122,-6,65,0.4950484484434128],[122,-6,66,0.49665187299251556],[122,-6,67,0.49847031757235527],[122,-6,68,0.49916088953614235],[122,-6,69,0.4980022758245468],[122,-6,70,0.4954753518104553],[122,-6,71,0.4925985373556614],[122,-6,72,0.489693034440279],[122,-6,73,0.48790210857987404],[122,-6,74,0.48744309693574905],[122,-6,75,0.48832834139466286],[122,-6,76,0.4907213896512985],[122,-6,77,0.49431563913822174],[122,-6,78,0.49852287396788597],[122,-6,79,0.5030976049602032],[122,-5,64,0.4870259687304497],[122,-5,65,0.4872359484434128],[122,-5,66,0.48883937299251556],[122,-5,67,0.49065781757235527],[122,-5,68,0.49134838953614235],[122,-5,69,0.4901897758245468],[122,-5,70,0.4876628518104553],[122,-5,71,0.4847860373556614],[122,-5,72,0.481880534440279],[122,-5,73,0.48008960857987404],[122,-5,74,0.47963059693574905],[122,-5,75,0.48051584139466286],[122,-5,76,0.4829088896512985],[122,-5,77,0.48650313913822174],[122,-5,78,0.49071037396788597],[122,-5,79,0.49528510496020317],[122,-4,64,0.4792134687304497],[122,-4,65,0.4794234484434128],[122,-4,66,0.48102687299251556],[122,-4,67,0.48284531757235527],[122,-4,68,0.48353588953614235],[122,-4,69,0.4823772758245468],[122,-4,70,0.4798503518104553],[122,-4,71,0.4769735373556614],[122,-4,72,0.474068034440279],[122,-4,73,0.47227710857987404],[122,-4,74,0.47181809693574905],[122,-4,75,0.47270334139466286],[122,-4,76,0.4750963896512985],[122,-4,77,0.47869063913822174],[122,-4,78,0.48289787396788597],[122,-4,79,0.48747260496020317],[122,-3,64,0.4714009687304497],[122,-3,65,0.4716109484434128],[122,-3,66,0.47321437299251556],[122,-3,67,0.47503281757235527],[122,-3,68,0.47572338953614235],[122,-3,69,0.4745647758245468],[122,-3,70,0.4720378518104553],[122,-3,71,0.4691610373556614],[122,-3,72,0.466255534440279],[122,-3,73,0.46446460857987404],[122,-3,74,0.46400559693574905],[122,-3,75,0.46489084139466286],[122,-3,76,0.4672838896512985],[122,-3,77,0.47087813913822174],[122,-3,78,0.47508537396788597],[122,-3,79,0.47966010496020317],[122,-2,64,0.4635884687304497],[122,-2,65,0.4637984484434128],[122,-2,66,0.46540187299251556],[122,-2,67,0.46722031757235527],[122,-2,68,0.46791088953614235],[122,-2,69,0.4667522758245468],[122,-2,70,0.4642253518104553],[122,-2,71,0.4613485373556614],[122,-2,72,0.458443034440279],[122,-2,73,0.45665210857987404],[122,-2,74,0.45619309693574905],[122,-2,75,0.45707834139466286],[122,-2,76,0.4594713896512985],[122,-2,77,0.46306563913822174],[122,-2,78,0.46727287396788597],[122,-2,79,0.47184760496020317],[122,-1,64,0.4557759687304497],[122,-1,65,0.4559859484434128],[122,-1,66,0.45758937299251556],[122,-1,67,0.45940781757235527],[122,-1,68,0.46009838953614235],[122,-1,69,0.4589397758245468],[122,-1,70,0.4564128518104553],[122,-1,71,0.4535360373556614],[122,-1,72,0.450630534440279],[122,-1,73,0.44883960857987404],[122,-1,74,0.44838059693574905],[122,-1,75,0.44926584139466286],[122,-1,76,0.4516588896512985],[122,-1,77,0.45525313913822174],[122,-1,78,0.45946037396788597],[122,-1,79,0.46403510496020317],[122,0,64,0.4479634687304497],[122,0,65,0.4481734484434128],[122,0,66,0.44977687299251556],[122,0,67,0.45159531757235527],[122,0,68,0.45228588953614235],[122,0,69,0.4511272758245468],[122,0,70,0.4486003518104553],[122,0,71,0.4457235373556614],[122,0,72,0.442818034440279],[122,0,73,0.44102710857987404],[122,0,74,0.44056809693574905],[122,0,75,0.44145334139466286],[122,0,76,0.4438463896512985],[122,0,77,0.44744063913822174],[122,0,78,0.45164787396788597],[122,0,79,0.45622260496020317],[122,1,64,0.4401509687304497],[122,1,65,0.4403609484434128],[122,1,66,0.44196437299251556],[122,1,67,0.44378281757235527],[122,1,68,0.44447338953614235],[122,1,69,0.4433147758245468],[122,1,70,0.4407878518104553],[122,1,71,0.4379110373556614],[122,1,72,0.435005534440279],[122,1,73,0.43321460857987404],[122,1,74,0.43275559693574905],[122,1,75,0.43364084139466286],[122,1,76,0.4360338896512985],[122,1,77,0.43962813913822174],[122,1,78,0.44383537396788597],[122,1,79,0.44841010496020317],[122,2,64,0.4323384687304497],[122,2,65,0.4325484484434128],[122,2,66,0.43415187299251556],[122,2,67,0.43597031757235527],[122,2,68,0.43666088953614235],[122,2,69,0.4355022758245468],[122,2,70,0.4329753518104553],[122,2,71,0.4300985373556614],[122,2,72,0.427193034440279],[122,2,73,0.42540210857987404],[122,2,74,0.42494309693574905],[122,2,75,0.42582834139466286],[122,2,76,0.4282213896512985],[122,2,77,0.43181563913822174],[122,2,78,0.43602287396788597],[122,2,79,0.44059760496020317],[122,3,64,0.4245259687304497],[122,3,65,0.4247359484434128],[122,3,66,0.42633937299251556],[122,3,67,0.42815781757235527],[122,3,68,0.42884838953614235],[122,3,69,0.4276897758245468],[122,3,70,0.4251628518104553],[122,3,71,0.4222860373556614],[122,3,72,0.419380534440279],[122,3,73,0.41758960857987404],[122,3,74,0.41713059693574905],[122,3,75,0.41801584139466286],[122,3,76,0.4204088896512985],[122,3,77,0.42400313913822174],[122,3,78,0.42821037396788597],[122,3,79,0.43278510496020317],[122,4,64,0.4167134687304497],[122,4,65,0.4169234484434128],[122,4,66,0.41852687299251556],[122,4,67,0.42034531757235527],[122,4,68,0.42103588953614235],[122,4,69,0.4198772758245468],[122,4,70,0.4173503518104553],[122,4,71,0.4144735373556614],[122,4,72,0.411568034440279],[122,4,73,0.40977710857987404],[122,4,74,0.40931809693574905],[122,4,75,0.41020334139466286],[122,4,76,0.4125963896512985],[122,4,77,0.41619063913822174],[122,4,78,0.42039787396788597],[122,4,79,0.42497260496020317],[122,5,64,0.4089009687304497],[122,5,65,0.4091109484434128],[122,5,66,0.41071437299251556],[122,5,67,0.41253281757235527],[122,5,68,0.41322338953614235],[122,5,69,0.4120647758245468],[122,5,70,0.4095378518104553],[122,5,71,0.4066610373556614],[122,5,72,0.403755534440279],[122,5,73,0.40196460857987404],[122,5,74,0.40150559693574905],[122,5,75,0.40239084139466286],[122,5,76,0.4047838896512985],[122,5,77,0.40837813913822174],[122,5,78,0.41258537396788597],[122,5,79,0.41716010496020317],[122,6,64,0.4010884687304497],[122,6,65,0.4012984484434128],[122,6,66,0.40290187299251556],[122,6,67,0.40472031757235527],[122,6,68,0.40541088953614235],[122,6,69,0.4042522758245468],[122,6,70,0.4017253518104553],[122,6,71,0.3988485373556614],[122,6,72,0.395943034440279],[122,6,73,0.39415210857987404],[122,6,74,0.39369309693574905],[122,6,75,0.39457834139466286],[122,6,76,0.3969713896512985],[122,6,77,0.40056563913822174],[122,6,78,0.40477287396788597],[122,6,79,0.40934760496020317],[122,7,64,0.3932759687304497],[122,7,65,0.3934859484434128],[122,7,66,0.39508937299251556],[122,7,67,0.39690781757235527],[122,7,68,0.39759838953614235],[122,7,69,0.3964397758245468],[122,7,70,0.3939128518104553],[122,7,71,0.3910360373556614],[122,7,72,0.388130534440279],[122,7,73,0.38633960857987404],[122,7,74,0.38588059693574905],[122,7,75,0.38676584139466286],[122,7,76,0.3891588896512985],[122,7,77,0.39275313913822174],[122,7,78,0.39696037396788597],[122,7,79,0.40153510496020317],[122,8,64,0.3854634687304497],[122,8,65,0.3856734484434128],[122,8,66,0.38727687299251556],[122,8,67,0.38909531757235527],[122,8,68,0.38978588953614235],[122,8,69,0.3886272758245468],[122,8,70,0.3861003518104553],[122,8,71,0.3832235373556614],[122,8,72,0.380318034440279],[122,8,73,0.37852710857987404],[122,8,74,0.37806809693574905],[122,8,75,0.37895334139466286],[122,8,76,0.3813463896512985],[122,8,77,0.38494063913822174],[122,8,78,0.38914787396788597],[122,8,79,0.39372260496020317],[122,9,64,0.3776509687304497],[122,9,65,0.3778609484434128],[122,9,66,0.37946437299251556],[122,9,67,0.38128281757235527],[122,9,68,0.38197338953614235],[122,9,69,0.3808147758245468],[122,9,70,0.3782878518104553],[122,9,71,0.3754110373556614],[122,9,72,0.372505534440279],[122,9,73,0.37071460857987404],[122,9,74,0.37025559693574905],[122,9,75,0.37114084139466286],[122,9,76,0.3735338896512985],[122,9,77,0.37712813913822174],[122,9,78,0.38133537396788597],[122,9,79,0.38591010496020317],[122,10,64,0.3698384687304497],[122,10,65,0.3700484484434128],[122,10,66,0.37165187299251556],[122,10,67,0.37347031757235527],[122,10,68,0.37416088953614235],[122,10,69,0.3730022758245468],[122,10,70,0.3704753518104553],[122,10,71,0.3675985373556614],[122,10,72,0.364693034440279],[122,10,73,0.36290210857987404],[122,10,74,0.36244309693574905],[122,10,75,0.36332834139466286],[122,10,76,0.3657213896512985],[122,10,77,0.36931563913822174],[122,10,78,0.37352287396788597],[122,10,79,0.37809760496020317],[122,11,64,0.3620259687304497],[122,11,65,0.3622359484434128],[122,11,66,0.36383937299251556],[122,11,67,0.36565781757235527],[122,11,68,0.36634838953614235],[122,11,69,0.3651897758245468],[122,11,70,0.3626628518104553],[122,11,71,0.3597860373556614],[122,11,72,0.356880534440279],[122,11,73,0.35508960857987404],[122,11,74,0.35463059693574905],[122,11,75,0.35551584139466286],[122,11,76,0.3579088896512985],[122,11,77,0.36150313913822174],[122,11,78,0.36571037396788597],[122,11,79,0.37028510496020317],[122,12,64,0.3542134687304497],[122,12,65,0.3544234484434128],[122,12,66,0.35602687299251556],[122,12,67,0.35784531757235527],[122,12,68,0.35853588953614235],[122,12,69,0.3573772758245468],[122,12,70,0.3548503518104553],[122,12,71,0.3519735373556614],[122,12,72,0.349068034440279],[122,12,73,0.34727710857987404],[122,12,74,0.34681809693574905],[122,12,75,0.34770334139466286],[122,12,76,0.3500963896512985],[122,12,77,0.35369063913822174],[122,12,78,0.35789787396788597],[122,12,79,0.36247260496020317],[122,13,64,0.3464009687304497],[122,13,65,0.3466109484434128],[122,13,66,0.34821437299251556],[122,13,67,0.35003281757235527],[122,13,68,0.35072338953614235],[122,13,69,0.3495647758245468],[122,13,70,0.3470378518104553],[122,13,71,0.3441610373556614],[122,13,72,0.341255534440279],[122,13,73,0.33946460857987404],[122,13,74,0.33900559693574905],[122,13,75,0.33989084139466286],[122,13,76,0.3422838896512985],[122,13,77,0.34587813913822174],[122,13,78,0.35008537396788597],[122,13,79,0.35466010496020317],[122,14,64,0.3385884687304497],[122,14,65,0.3387984484434128],[122,14,66,0.34040187299251556],[122,14,67,0.34222031757235527],[122,14,68,0.34291088953614235],[122,14,69,0.3417522758245468],[122,14,70,0.3392253518104553],[122,14,71,0.3363485373556614],[122,14,72,0.333443034440279],[122,14,73,0.33165210857987404],[122,14,74,0.33119309693574905],[122,14,75,0.33207834139466286],[122,14,76,0.3344713896512985],[122,14,77,0.33806563913822174],[122,14,78,0.34227287396788597],[122,14,79,0.34684760496020317],[122,15,64,0.3307759687304497],[122,15,65,0.3309859484434128],[122,15,66,0.33258937299251556],[122,15,67,0.33440781757235527],[122,15,68,0.33509838953614235],[122,15,69,0.3339397758245468],[122,15,70,0.3314128518104553],[122,15,71,0.3285360373556614],[122,15,72,0.325630534440279],[122,15,73,0.32383960857987404],[122,15,74,0.32338059693574905],[122,15,75,0.32426584139466286],[122,15,76,0.3266588896512985],[122,15,77,0.33025313913822174],[122,15,78,0.33446037396788597],[122,15,79,0.33903510496020317],[122,16,64,0.3229634687304497],[122,16,65,0.3231734484434128],[122,16,66,0.32477687299251556],[122,16,67,0.32659531757235527],[122,16,68,0.32728588953614235],[122,16,69,0.3261272758245468],[122,16,70,0.3236003518104553],[122,16,71,0.3207235373556614],[122,16,72,0.317818034440279],[122,16,73,0.31602710857987404],[122,16,74,0.31556809693574905],[122,16,75,0.31645334139466286],[122,16,76,0.3188463896512985],[122,16,77,0.32244063913822174],[122,16,78,0.32664787396788597],[122,16,79,0.33122260496020317],[122,17,64,0.3151509687304497],[122,17,65,0.3153609484434128],[122,17,66,0.31696437299251556],[122,17,67,0.31878281757235527],[122,17,68,0.31947338953614235],[122,17,69,0.3183147758245468],[122,17,70,0.3157878518104553],[122,17,71,0.3129110373556614],[122,17,72,0.310005534440279],[122,17,73,0.30821460857987404],[122,17,74,0.30775559693574905],[122,17,75,0.30864084139466286],[122,17,76,0.3110338896512985],[122,17,77,0.31462813913822174],[122,17,78,0.31883537396788597],[122,17,79,0.32341010496020317],[122,18,64,0.3073384687304497],[122,18,65,0.3075484484434128],[122,18,66,0.30915187299251556],[122,18,67,0.31097031757235527],[122,18,68,0.31166088953614235],[122,18,69,0.3105022758245468],[122,18,70,0.3079753518104553],[122,18,71,0.3050985373556614],[122,18,72,0.302193034440279],[122,18,73,0.30040210857987404],[122,18,74,0.29994309693574905],[122,18,75,0.30082834139466286],[122,18,76,0.3032213896512985],[122,18,77,0.30681563913822174],[122,18,78,0.31102287396788597],[122,18,79,0.31559760496020317],[122,19,64,0.2995259687304497],[122,19,65,0.2997359484434128],[122,19,66,0.30133937299251556],[122,19,67,0.30315781757235527],[122,19,68,0.30384838953614235],[122,19,69,0.3026897758245468],[122,19,70,0.3001628518104553],[122,19,71,0.2972860373556614],[122,19,72,0.294380534440279],[122,19,73,0.29258960857987404],[122,19,74,0.29213059693574905],[122,19,75,0.29301584139466286],[122,19,76,0.2954088896512985],[122,19,77,0.29900313913822174],[122,19,78,0.30321037396788597],[122,19,79,0.30778510496020317],[122,20,64,0.2917134687304497],[122,20,65,0.2919234484434128],[122,20,66,0.29352687299251556],[122,20,67,0.29534531757235527],[122,20,68,0.29603588953614235],[122,20,69,0.2948772758245468],[122,20,70,0.2923503518104553],[122,20,71,0.2894735373556614],[122,20,72,0.286568034440279],[122,20,73,0.28477710857987404],[122,20,74,0.28431809693574905],[122,20,75,0.28520334139466286],[122,20,76,0.2875963896512985],[122,20,77,0.29119063913822174],[122,20,78,0.29539787396788597],[122,20,79,0.29997260496020317],[122,21,64,0.2839009687304497],[122,21,65,0.2841109484434128],[122,21,66,0.28571437299251556],[122,21,67,0.28753281757235527],[122,21,68,0.28822338953614235],[122,21,69,0.2870647758245468],[122,21,70,0.2845378518104553],[122,21,71,0.2816610373556614],[122,21,72,0.278755534440279],[122,21,73,0.27696460857987404],[122,21,74,0.27650559693574905],[122,21,75,0.27739084139466286],[122,21,76,0.2797838896512985],[122,21,77,0.28337813913822174],[122,21,78,0.28758537396788597],[122,21,79,0.29216010496020317],[122,22,64,0.2760884687304497],[122,22,65,0.2762984484434128],[122,22,66,0.27790187299251556],[122,22,67,0.27972031757235527],[122,22,68,0.28041088953614235],[122,22,69,0.2792522758245468],[122,22,70,0.2767253518104553],[122,22,71,0.2738485373556614],[122,22,72,0.270943034440279],[122,22,73,0.26915210857987404],[122,22,74,0.26869309693574905],[122,22,75,0.26957834139466286],[122,22,76,0.2719713896512985],[122,22,77,0.27556563913822174],[122,22,78,0.27977287396788597],[122,22,79,0.28434760496020317],[122,23,64,0.2682759687304497],[122,23,65,0.2684859484434128],[122,23,66,0.27008937299251556],[122,23,67,0.27190781757235527],[122,23,68,0.27259838953614235],[122,23,69,0.2714397758245468],[122,23,70,0.2689128518104553],[122,23,71,0.2660360373556614],[122,23,72,0.263130534440279],[122,23,73,0.26133960857987404],[122,23,74,0.26088059693574905],[122,23,75,0.26176584139466286],[122,23,76,0.2641588896512985],[122,23,77,0.26775313913822174],[122,23,78,0.27196037396788597],[122,23,79,0.27653510496020317],[122,24,64,0.2604634687304497],[122,24,65,0.2606734484434128],[122,24,66,0.26227687299251556],[122,24,67,0.26409531757235527],[122,24,68,0.26478588953614235],[122,24,69,0.2636272758245468],[122,24,70,0.2611003518104553],[122,24,71,0.2582235373556614],[122,24,72,0.255318034440279],[122,24,73,0.25352710857987404],[122,24,74,0.25306809693574905],[122,24,75,0.25395334139466286],[122,24,76,0.2563463896512985],[122,24,77,0.25994063913822174],[122,24,78,0.26414787396788597],[122,24,79,0.26872260496020317],[122,25,64,0.2526509687304497],[122,25,65,0.2528609484434128],[122,25,66,0.25446437299251556],[122,25,67,0.25628281757235527],[122,25,68,0.25697338953614235],[122,25,69,0.2558147758245468],[122,25,70,0.2532878518104553],[122,25,71,0.2504110373556614],[122,25,72,0.247505534440279],[122,25,73,0.24571460857987404],[122,25,74,0.24525559693574905],[122,25,75,0.24614084139466286],[122,25,76,0.24853388965129852],[122,25,77,0.25212813913822174],[122,25,78,0.25633537396788597],[122,25,79,0.26091010496020317],[122,26,64,0.24483846873044968],[122,26,65,0.24504844844341278],[122,26,66,0.24665187299251556],[122,26,67,0.24847031757235527],[122,26,68,0.24916088953614235],[122,26,69,0.24800227582454681],[122,26,70,0.24547535181045532],[122,26,71,0.2425985373556614],[122,26,72,0.239693034440279],[122,26,73,0.23790210857987404],[122,26,74,0.23744309693574905],[122,26,75,0.23832834139466286],[122,26,76,0.24072138965129852],[122,26,77,0.24431563913822174],[122,26,78,0.24852287396788597],[122,26,79,0.25309760496020317],[122,27,64,0.23702596873044968],[122,27,65,0.23723594844341278],[122,27,66,0.23883937299251556],[122,27,67,0.24065781757235527],[122,27,68,0.24134838953614235],[122,27,69,0.24018977582454681],[122,27,70,0.23766285181045532],[122,27,71,0.2347860373556614],[122,27,72,0.231880534440279],[122,27,73,0.23008960857987404],[122,27,74,0.22963059693574905],[122,27,75,0.23051584139466286],[122,27,76,0.23290888965129852],[122,27,77,0.23650313913822174],[122,27,78,0.24071037396788597],[122,27,79,0.24528510496020317],[122,28,64,0.22921346873044968],[122,28,65,0.22942344844341278],[122,28,66,0.23102687299251556],[122,28,67,0.23284531757235527],[122,28,68,0.23353588953614235],[122,28,69,0.23237727582454681],[122,28,70,0.22985035181045532],[122,28,71,0.2269735373556614],[122,28,72,0.224068034440279],[122,28,73,0.22227710857987404],[122,28,74,0.22181809693574905],[122,28,75,0.22270334139466286],[122,28,76,0.22509638965129852],[122,28,77,0.22869063913822174],[122,28,78,0.23289787396788597],[122,28,79,0.23747260496020317],[122,29,64,0.22140096873044968],[122,29,65,0.22161094844341278],[122,29,66,0.22321437299251556],[122,29,67,0.22503281757235527],[122,29,68,0.22572338953614235],[122,29,69,0.22456477582454681],[122,29,70,0.22203785181045532],[122,29,71,0.2191610373556614],[122,29,72,0.216255534440279],[122,29,73,0.21446460857987404],[122,29,74,0.21400559693574905],[122,29,75,0.21489084139466286],[122,29,76,0.21728388965129852],[122,29,77,0.22087813913822174],[122,29,78,0.22508537396788597],[122,29,79,0.22966010496020317],[122,30,64,0.21358846873044968],[122,30,65,0.21379844844341278],[122,30,66,0.21540187299251556],[122,30,67,0.21722031757235527],[122,30,68,0.21791088953614235],[122,30,69,0.21675227582454681],[122,30,70,0.21422535181045532],[122,30,71,0.2113485373556614],[122,30,72,0.208443034440279],[122,30,73,0.20665210857987404],[122,30,74,0.20619309693574905],[122,30,75,0.20707834139466286],[122,30,76,0.20947138965129852],[122,30,77,0.21306563913822174],[122,30,78,0.21727287396788597],[122,30,79,0.22184760496020317],[122,31,64,0.20577596873044968],[122,31,65,0.20598594844341278],[122,31,66,0.20758937299251556],[122,31,67,0.20940781757235527],[122,31,68,0.21009838953614235],[122,31,69,0.20893977582454681],[122,31,70,0.20641285181045532],[122,31,71,0.2035360373556614],[122,31,72,0.200630534440279],[122,31,73,0.19883960857987404],[122,31,74,0.19838059693574905],[122,31,75,0.19926584139466286],[122,31,76,0.20165888965129852],[122,31,77,0.20525313913822174],[122,31,78,0.20946037396788597],[122,31,79,0.21403510496020317],[122,32,64,0.19796346873044968],[122,32,65,0.19817344844341278],[122,32,66,0.19977687299251556],[122,32,67,0.20159531757235527],[122,32,68,0.20228588953614235],[122,32,69,0.20112727582454681],[122,32,70,0.19860035181045532],[122,32,71,0.1957235373556614],[122,32,72,0.192818034440279],[122,32,73,0.19102710857987404],[122,32,74,0.19056809693574905],[122,32,75,0.19145334139466286],[122,32,76,0.19384638965129852],[122,32,77,0.19744063913822174],[122,32,78,0.20164787396788597],[122,32,79,0.20622260496020317],[122,33,64,0.19015096873044968],[122,33,65,0.19036094844341278],[122,33,66,0.19196437299251556],[122,33,67,0.19378281757235527],[122,33,68,0.19447338953614235],[122,33,69,0.19331477582454681],[122,33,70,0.19078785181045532],[122,33,71,0.1879110373556614],[122,33,72,0.185005534440279],[122,33,73,0.18321460857987404],[122,33,74,0.18275559693574905],[122,33,75,0.18364084139466286],[122,33,76,0.18603388965129852],[122,33,77,0.18962813913822174],[122,33,78,0.19383537396788597],[122,33,79,0.19841010496020317],[122,34,64,0.18233846873044968],[122,34,65,0.18254844844341278],[122,34,66,0.18415187299251556],[122,34,67,0.18597031757235527],[122,34,68,0.18666088953614235],[122,34,69,0.18550227582454681],[122,34,70,0.18297535181045532],[122,34,71,0.1800985373556614],[122,34,72,0.177193034440279],[122,34,73,0.17540210857987404],[122,34,74,0.17494309693574905],[122,34,75,0.17582834139466286],[122,34,76,0.17822138965129852],[122,34,77,0.18181563913822174],[122,34,78,0.18602287396788597],[122,34,79,0.19059760496020317],[122,35,64,0.17452596873044968],[122,35,65,0.17473594844341278],[122,35,66,0.17633937299251556],[122,35,67,0.17815781757235527],[122,35,68,0.17884838953614235],[122,35,69,0.17768977582454681],[122,35,70,0.17516285181045532],[122,35,71,0.1722860373556614],[122,35,72,0.169380534440279],[122,35,73,0.16758960857987404],[122,35,74,0.16713059693574905],[122,35,75,0.16801584139466286],[122,35,76,0.17040888965129852],[122,35,77,0.17400313913822174],[122,35,78,0.17821037396788597],[122,35,79,0.18278510496020317],[122,36,64,0.16671346873044968],[122,36,65,0.16692344844341278],[122,36,66,0.16852687299251556],[122,36,67,0.17034531757235527],[122,36,68,0.17103588953614235],[122,36,69,0.16987727582454681],[122,36,70,0.16735035181045532],[122,36,71,0.1644735373556614],[122,36,72,0.161568034440279],[122,36,73,0.15977710857987404],[122,36,74,0.15931809693574905],[122,36,75,0.16020334139466286],[122,36,76,0.16259638965129852],[122,36,77,0.16619063913822174],[122,36,78,0.17039787396788597],[122,36,79,0.17497260496020317],[122,37,64,0.15890096873044968],[122,37,65,0.15911094844341278],[122,37,66,0.16071437299251556],[122,37,67,0.16253281757235527],[122,37,68,0.16322338953614235],[122,37,69,0.16206477582454681],[122,37,70,0.15953785181045532],[122,37,71,0.1566610373556614],[122,37,72,0.153755534440279],[122,37,73,0.15196460857987404],[122,37,74,0.15150559693574905],[122,37,75,0.15239084139466286],[122,37,76,0.15478388965129852],[122,37,77,0.15837813913822174],[122,37,78,0.16258537396788597],[122,37,79,0.16716010496020317],[122,38,64,0.15108846873044968],[122,38,65,0.15129844844341278],[122,38,66,0.15290187299251556],[122,38,67,0.15472031757235527],[122,38,68,0.15541088953614235],[122,38,69,0.15425227582454681],[122,38,70,0.15172535181045532],[122,38,71,0.1488485373556614],[122,38,72,0.145943034440279],[122,38,73,0.14415210857987404],[122,38,74,0.14369309693574905],[122,38,75,0.14457834139466286],[122,38,76,0.14697138965129852],[122,38,77,0.15056563913822174],[122,38,78,0.15477287396788597],[122,38,79,0.15934760496020317],[122,39,64,0.14327596873044968],[122,39,65,0.14348594844341278],[122,39,66,0.14508937299251556],[122,39,67,0.14690781757235527],[122,39,68,0.14759838953614235],[122,39,69,0.14643977582454681],[122,39,70,0.14391285181045532],[122,39,71,0.1410360373556614],[122,39,72,0.138130534440279],[122,39,73,0.13633960857987404],[122,39,74,0.13588059693574905],[122,39,75,0.13676584139466286],[122,39,76,0.13915888965129852],[122,39,77,0.14275313913822174],[122,39,78,0.14696037396788597],[122,39,79,0.15153510496020317],[122,40,64,0.13546346873044968],[122,40,65,0.13567344844341278],[122,40,66,0.13727687299251556],[122,40,67,0.13909531757235527],[122,40,68,0.13978588953614235],[122,40,69,0.13862727582454681],[122,40,70,0.13610035181045532],[122,40,71,0.1332235373556614],[122,40,72,0.130318034440279],[122,40,73,0.12852710857987404],[122,40,74,0.12806809693574905],[122,40,75,0.12895334139466286],[122,40,76,0.13134638965129852],[122,40,77,0.13494063913822174],[122,40,78,0.13914787396788597],[122,40,79,0.14372260496020317],[122,41,64,0.12765096873044968],[122,41,65,0.12786094844341278],[122,41,66,0.12946437299251556],[122,41,67,0.13128281757235527],[122,41,68,0.13197338953614235],[122,41,69,0.13081477582454681],[122,41,70,0.12828785181045532],[122,41,71,0.1254110373556614],[122,41,72,0.12250553444027901],[122,41,73,0.12071460857987404],[122,41,74,0.12025559693574905],[122,41,75,0.12114084139466286],[122,41,76,0.12353388965129852],[122,41,77,0.12712813913822174],[122,41,78,0.13133537396788597],[122,41,79,0.13591010496020317],[122,42,64,0.11983846873044968],[122,42,65,0.12004844844341278],[122,42,66,0.12165187299251556],[122,42,67,0.12347031757235527],[122,42,68,0.12416088953614235],[122,42,69,0.12300227582454681],[122,42,70,0.12047535181045532],[122,42,71,0.11759853735566139],[122,42,72,0.11469303444027901],[122,42,73,0.11290210857987404],[122,42,74,0.11244309693574905],[122,42,75,0.11332834139466286],[122,42,76,0.11572138965129852],[122,42,77,0.11931563913822174],[122,42,78,0.12352287396788597],[122,42,79,0.12809760496020317],[122,43,64,0.11202596873044968],[122,43,65,0.11223594844341278],[122,43,66,0.11383937299251556],[122,43,67,0.11565781757235527],[122,43,68,0.11634838953614235],[122,43,69,0.11518977582454681],[122,43,70,0.11266285181045532],[122,43,71,0.10978603735566139],[122,43,72,0.10688053444027901],[122,43,73,0.10508960857987404],[122,43,74,0.10463059693574905],[122,43,75,0.10551584139466286],[122,43,76,0.10790888965129852],[122,43,77,0.11150313913822174],[122,43,78,0.11571037396788597],[122,43,79,0.12028510496020317],[122,44,64,0.10421346873044968],[122,44,65,0.10442344844341278],[122,44,66,0.10602687299251556],[122,44,67,0.10784531757235527],[122,44,68,0.10853588953614235],[122,44,69,0.10737727582454681],[122,44,70,0.10485035181045532],[122,44,71,0.10197353735566139],[122,44,72,0.09906803444027901],[122,44,73,0.09727710857987404],[122,44,74,0.09681809693574905],[122,44,75,0.09770334139466286],[122,44,76,0.10009638965129852],[122,44,77,0.10369063913822174],[122,44,78,0.10789787396788597],[122,44,79,0.11247260496020317],[122,45,64,0.09640096873044968],[122,45,65,0.09661094844341278],[122,45,66,0.09821437299251556],[122,45,67,0.10003281757235527],[122,45,68,0.10072338953614235],[122,45,69,0.09956477582454681],[122,45,70,0.09703785181045532],[122,45,71,0.09416103735566139],[122,45,72,0.09125553444027901],[122,45,73,0.08946460857987404],[122,45,74,0.08900559693574905],[122,45,75,0.08989084139466286],[122,45,76,0.09228388965129852],[122,45,77,0.09587813913822174],[122,45,78,0.10008537396788597],[122,45,79,0.10466010496020317],[122,46,64,0.08858846873044968],[122,46,65,0.08879844844341278],[122,46,66,0.09040187299251556],[122,46,67,0.09222031757235527],[122,46,68,0.09291088953614235],[122,46,69,0.09175227582454681],[122,46,70,0.08922535181045532],[122,46,71,0.08634853735566139],[122,46,72,0.08344303444027901],[122,46,73,0.08165210857987404],[122,46,74,0.08119309693574905],[122,46,75,0.08207834139466286],[122,46,76,0.08447138965129852],[122,46,77,0.08806563913822174],[122,46,78,0.09227287396788597],[122,46,79,0.09684760496020317],[122,47,64,0.08077596873044968],[122,47,65,0.08098594844341278],[122,47,66,0.08258937299251556],[122,47,67,0.08440781757235527],[122,47,68,0.08509838953614235],[122,47,69,0.08393977582454681],[122,47,70,0.08141285181045532],[122,47,71,0.07853603735566139],[122,47,72,0.07563053444027901],[122,47,73,0.07383960857987404],[122,47,74,0.07338059693574905],[122,47,75,0.07426584139466286],[122,47,76,0.07665888965129852],[122,47,77,0.08025313913822174],[122,47,78,0.08446037396788597],[122,47,79,0.08903510496020317],[122,48,64,0.07296346873044968],[122,48,65,0.07317344844341278],[122,48,66,0.07477687299251556],[122,48,67,0.07659531757235527],[122,48,68,0.07728588953614235],[122,48,69,0.07612727582454681],[122,48,70,0.07360035181045532],[122,48,71,0.07072353735566139],[122,48,72,0.06781803444027901],[122,48,73,0.06602710857987404],[122,48,74,0.06556809693574905],[122,48,75,0.06645334139466286],[122,48,76,0.06884638965129852],[122,48,77,0.07244063913822174],[122,48,78,0.07664787396788597],[122,48,79,0.08122260496020317],[122,49,64,0.06515096873044968],[122,49,65,0.06536094844341278],[122,49,66,0.06696437299251556],[122,49,67,0.06878281757235527],[122,49,68,0.06947338953614235],[122,49,69,0.06831477582454681],[122,49,70,0.06578785181045532],[122,49,71,0.06291103735566139],[122,49,72,0.06000553444027901],[122,49,73,0.05821460857987404],[122,49,74,0.057755596935749054],[122,49,75,0.05864084139466286],[122,49,76,0.06103388965129852],[122,49,77,0.06462813913822174],[122,49,78,0.06883537396788597],[122,49,79,0.07341010496020317],[122,50,64,0.057338468730449677],[122,50,65,0.05754844844341278],[122,50,66,0.059151872992515564],[122,50,67,0.06097031757235527],[122,50,68,0.06166088953614235],[122,50,69,0.060502275824546814],[122,50,70,0.05797535181045532],[122,50,71,0.05509853735566139],[122,50,72,0.05219303444027901],[122,50,73,0.05040210857987404],[122,50,74,0.049943096935749054],[122,50,75,0.05082834139466286],[122,50,76,0.05322138965129852],[122,50,77,0.05681563913822174],[122,50,78,0.06102287396788597],[122,50,79,0.06559760496020317],[122,51,64,0.049525968730449677],[122,51,65,0.04973594844341278],[122,51,66,0.051339372992515564],[122,51,67,0.05315781757235527],[122,51,68,0.05384838953614235],[122,51,69,0.052689775824546814],[122,51,70,0.05016285181045532],[122,51,71,0.04728603735566139],[122,51,72,0.04438053444027901],[122,51,73,0.04258960857987404],[122,51,74,0.042130596935749054],[122,51,75,0.04301584139466286],[122,51,76,0.04540888965129852],[122,51,77,0.04900313913822174],[122,51,78,0.05321037396788597],[122,51,79,0.05778510496020317],[122,52,64,0.041713468730449677],[122,52,65,0.04192344844341278],[122,52,66,0.043526872992515564],[122,52,67,0.04534531757235527],[122,52,68,0.04603588953614235],[122,52,69,0.044877275824546814],[122,52,70,0.04235035181045532],[122,52,71,0.03947353735566139],[122,52,72,0.03656803444027901],[122,52,73,0.03477710857987404],[122,52,74,0.034318096935749054],[122,52,75,0.03520334139466286],[122,52,76,0.03759638965129852],[122,52,77,0.04119063913822174],[122,52,78,0.04539787396788597],[122,52,79,0.04997260496020317],[122,53,64,0.033900968730449677],[122,53,65,0.03411094844341278],[122,53,66,0.035714372992515564],[122,53,67,0.03753281757235527],[122,53,68,0.03822338953614235],[122,53,69,0.037064775824546814],[122,53,70,0.03453785181045532],[122,53,71,0.03166103735566139],[122,53,72,0.028755534440279007],[122,53,73,0.02696460857987404],[122,53,74,0.026505596935749054],[122,53,75,0.027390841394662857],[122,53,76,0.029783889651298523],[122,53,77,0.03337813913822174],[122,53,78,0.03758537396788597],[122,53,79,0.04216010496020317],[122,54,64,0.026088468730449677],[122,54,65,0.02629844844341278],[122,54,66,0.027901872992515564],[122,54,67,0.02972031757235527],[122,54,68,0.03041088953614235],[122,54,69,0.029252275824546814],[122,54,70,0.026725351810455322],[122,54,71,0.023848537355661392],[122,54,72,0.020943034440279007],[122,54,73,0.01915210857987404],[122,54,74,0.018693096935749054],[122,54,75,0.019578341394662857],[122,54,76,0.021971389651298523],[122,54,77,0.02556563913822174],[122,54,78,0.02977287396788597],[122,54,79,0.03434760496020317],[122,55,64,0.018275968730449677],[122,55,65,0.01848594844341278],[122,55,66,0.020089372992515564],[122,55,67,0.02190781757235527],[122,55,68,0.02259838953614235],[122,55,69,0.021439775824546814],[122,55,70,0.018912851810455322],[122,55,71,0.016036037355661392],[122,55,72,0.013130534440279007],[122,55,73,0.011339608579874039],[122,55,74,0.010880596935749054],[122,55,75,0.011765841394662857],[122,55,76,0.014158889651298523],[122,55,77,0.01775313913822174],[122,55,78,0.02196037396788597],[122,55,79,0.02653510496020317],[122,56,64,0.010463468730449677],[122,56,65,0.01067344844341278],[122,56,66,0.012276872992515564],[122,56,67,0.01409531757235527],[122,56,68,0.01478588953614235],[122,56,69,0.013627275824546814],[122,56,70,0.011100351810455322],[122,56,71,0.008223537355661392],[122,56,72,0.005318034440279007],[122,56,73,0.0035271085798740387],[122,56,74,0.003068096935749054],[122,56,75,0.003953341394662857],[122,56,76,0.006346389651298523],[122,56,77,0.00994063913822174],[122,56,78,0.014147873967885971],[122,56,79,0.01872260496020317],[122,57,64,0.0026509687304496765],[122,57,65,0.0028609484434127808],[122,57,66,0.004464372992515564],[122,57,67,0.00628281757235527],[122,57,68,0.006973389536142349],[122,57,69,0.005814775824546814],[122,57,70,0.0032878518104553223],[122,57,71,4.110373556613922E-4],[122,57,72,-0.002494465559720993],[122,57,73,-0.004285391420125961],[122,57,74,-0.004744403064250946],[122,57,75,-0.003859158605337143],[122,57,76,-0.001466110348701477],[122,57,77,0.0021281391382217407],[122,57,78,0.006335373967885971],[122,57,79,0.01091010496020317],[122,58,64,-0.0051615312695503235],[122,58,65,-0.004951551556587219],[122,58,66,-0.003348127007484436],[122,58,67,-0.0015296824276447296],[122,58,68,-8.391104638576508E-4],[122,58,69,-0.001997724175453186],[122,58,70,-0.004524648189544678],[122,58,71,-0.007401462644338608],[122,58,72,-0.010306965559720993],[122,58,73,-0.012097891420125961],[122,58,74,-0.012556903064250946],[122,58,75,-0.011671658605337143],[122,58,76,-0.009278610348701477],[122,58,77,-0.005684360861778259],[122,58,78,-0.001477126032114029],[122,58,79,0.0030976049602031708],[122,59,64,-0.012974031269550323],[122,59,65,-0.01276405155658722],[122,59,66,-0.011160627007484436],[122,59,67,-0.00934218242764473],[122,59,68,-0.00865161046385765],[122,59,69,-0.009810224175453186],[122,59,70,-0.012337148189544678],[122,59,71,-0.015213962644338608],[122,59,72,-0.018119465559720993],[122,59,73,-0.01991039142012596],[122,59,74,-0.020369403064250946],[122,59,75,-0.019484158605337143],[122,59,76,-0.017091110348701477],[122,59,77,-0.01349686086177826],[122,59,78,-0.009289626032114029],[122,59,79,-0.004714895039796829],[122,60,64,-0.020786531269550323],[122,60,65,-0.02057655155658722],[122,60,66,-0.018973127007484436],[122,60,67,-0.01715468242764473],[122,60,68,-0.01646411046385765],[122,60,69,-0.017622724175453186],[122,60,70,-0.020149648189544678],[122,60,71,-0.023026462644338608],[122,60,72,-0.025931965559720993],[122,60,73,-0.02772289142012596],[122,60,74,-0.028181903064250946],[122,60,75,-0.027296658605337143],[122,60,76,-0.024903610348701477],[122,60,77,-0.02130936086177826],[122,60,78,-0.01710212603211403],[122,60,79,-0.01252739503979683],[122,61,64,-0.028599031269550323],[122,61,65,-0.02838905155658722],[122,61,66,-0.026785627007484436],[122,61,67,-0.02496718242764473],[122,61,68,-0.02427661046385765],[122,61,69,-0.025435224175453186],[122,61,70,-0.027962148189544678],[122,61,71,-0.030838962644338608],[122,61,72,-0.03374446555972099],[122,61,73,-0.03553539142012596],[122,61,74,-0.035994403064250946],[122,61,75,-0.03510915860533714],[122,61,76,-0.03271611034870148],[122,61,77,-0.02912186086177826],[122,61,78,-0.02491462603211403],[122,61,79,-0.02033989503979683],[122,62,64,-0.036411531269550323],[122,62,65,-0.03620155155658722],[122,62,66,-0.034598127007484436],[122,62,67,-0.03277968242764473],[122,62,68,-0.03208911046385765],[122,62,69,-0.033247724175453186],[122,62,70,-0.03577464818954468],[122,62,71,-0.03865146264433861],[122,62,72,-0.04155696555972099],[122,62,73,-0.04334789142012596],[122,62,74,-0.043806903064250946],[122,62,75,-0.04292165860533714],[122,62,76,-0.04052861034870148],[122,62,77,-0.03693436086177826],[122,62,78,-0.03272712603211403],[122,62,79,-0.02815239503979683],[122,63,64,-0.044224031269550323],[122,63,65,-0.04401405155658722],[122,63,66,-0.042410627007484436],[122,63,67,-0.04059218242764473],[122,63,68,-0.03990161046385765],[122,63,69,-0.041060224175453186],[122,63,70,-0.04358714818954468],[122,63,71,-0.04646396264433861],[122,63,72,-0.04936946555972099],[122,63,73,-0.05116039142012596],[122,63,74,-0.051619403064250946],[122,63,75,-0.05073415860533714],[122,63,76,-0.04834111034870148],[122,63,77,-0.04474686086177826],[122,63,78,-0.04053962603211403],[122,63,79,-0.03596489503979683],[122,64,64,-0.052036531269550323],[122,64,65,-0.05182655155658722],[122,64,66,-0.050223127007484436],[122,64,67,-0.04840468242764473],[122,64,68,-0.04771411046385765],[122,64,69,-0.048872724175453186],[122,64,70,-0.05139964818954468],[122,64,71,-0.05427646264433861],[122,64,72,-0.05718196555972099],[122,64,73,-0.05897289142012596],[122,64,74,-0.059431903064250946],[122,64,75,-0.05854665860533714],[122,64,76,-0.05615361034870148],[122,64,77,-0.05255936086177826],[122,64,78,-0.04835212603211403],[122,64,79,-0.04377739503979683],[122,65,64,-0.059849031269550323],[122,65,65,-0.05963905155658722],[122,65,66,-0.058035627007484436],[122,65,67,-0.05621718242764473],[122,65,68,-0.05552661046385765],[122,65,69,-0.056685224175453186],[122,65,70,-0.05921214818954468],[122,65,71,-0.06208896264433861],[122,65,72,-0.06499446555972099],[122,65,73,-0.06678539142012596],[122,65,74,-0.06724440306425095],[122,65,75,-0.06635915860533714],[122,65,76,-0.06396611034870148],[122,65,77,-0.06037186086177826],[122,65,78,-0.05616462603211403],[122,65,79,-0.05158989503979683],[122,66,64,-0.06766153126955032],[122,66,65,-0.06745155155658722],[122,66,66,-0.06584812700748444],[122,66,67,-0.06402968242764473],[122,66,68,-0.06333911046385765],[122,66,69,-0.06449772417545319],[122,66,70,-0.06702464818954468],[122,66,71,-0.06990146264433861],[122,66,72,-0.07280696555972099],[122,66,73,-0.07459789142012596],[122,66,74,-0.07505690306425095],[122,66,75,-0.07417165860533714],[122,66,76,-0.07177861034870148],[122,66,77,-0.06818436086177826],[122,66,78,-0.06397712603211403],[122,66,79,-0.05940239503979683],[122,67,64,-0.07547403126955032],[122,67,65,-0.07526405155658722],[122,67,66,-0.07366062700748444],[122,67,67,-0.07184218242764473],[122,67,68,-0.07115161046385765],[122,67,69,-0.07231022417545319],[122,67,70,-0.07483714818954468],[122,67,71,-0.07771396264433861],[122,67,72,-0.08061946555972099],[122,67,73,-0.08241039142012596],[122,67,74,-0.08286940306425095],[122,67,75,-0.08198415860533714],[122,67,76,-0.07959111034870148],[122,67,77,-0.07599686086177826],[122,67,78,-0.07178962603211403],[122,67,79,-0.06721489503979683],[122,68,64,-0.08328653126955032],[122,68,65,-0.08307655155658722],[122,68,66,-0.08147312700748444],[122,68,67,-0.07965468242764473],[122,68,68,-0.07896411046385765],[122,68,69,-0.08012272417545319],[122,68,70,-0.08264964818954468],[122,68,71,-0.08552646264433861],[122,68,72,-0.08843196555972099],[122,68,73,-0.09022289142012596],[122,68,74,-0.09068190306425095],[122,68,75,-0.08979665860533714],[122,68,76,-0.08740361034870148],[122,68,77,-0.08380936086177826],[122,68,78,-0.07960212603211403],[122,68,79,-0.07502739503979683],[122,69,64,-0.09109903126955032],[122,69,65,-0.09088905155658722],[122,69,66,-0.08928562700748444],[122,69,67,-0.08746718242764473],[122,69,68,-0.08677661046385765],[122,69,69,-0.08793522417545319],[122,69,70,-0.09046214818954468],[122,69,71,-0.09333896264433861],[122,69,72,-0.09624446555972099],[122,69,73,-0.09803539142012596],[122,69,74,-0.09849440306425095],[122,69,75,-0.09760915860533714],[122,69,76,-0.09521611034870148],[122,69,77,-0.09162186086177826],[122,69,78,-0.08741462603211403],[122,69,79,-0.08283989503979683],[122,70,64,-0.09891153126955032],[122,70,65,-0.09870155155658722],[122,70,66,-0.09709812700748444],[122,70,67,-0.09527968242764473],[122,70,68,-0.09458911046385765],[122,70,69,-0.09574772417545319],[122,70,70,-0.09827464818954468],[122,70,71,-0.10115146264433861],[122,70,72,-0.10405696555972099],[122,70,73,-0.10584789142012596],[122,70,74,-0.10630690306425095],[122,70,75,-0.10542165860533714],[122,70,76,-0.10302861034870148],[122,70,77,-0.09943436086177826],[122,70,78,-0.09522712603211403],[122,70,79,-0.09065239503979683],[122,71,64,-0.10672403126955032],[122,71,65,-0.10651405155658722],[122,71,66,-0.10491062700748444],[122,71,67,-0.10309218242764473],[122,71,68,-0.10240161046385765],[122,71,69,-0.10356022417545319],[122,71,70,-0.10608714818954468],[122,71,71,-0.10896396264433861],[122,71,72,-0.11186946555972099],[122,71,73,-0.11366039142012596],[122,71,74,-0.11411940306425095],[122,71,75,-0.11323415860533714],[122,71,76,-0.11084111034870148],[122,71,77,-0.10724686086177826],[122,71,78,-0.10303962603211403],[122,71,79,-0.09846489503979683],[122,72,64,-0.11453653126955032],[122,72,65,-0.11432655155658722],[122,72,66,-0.11272312700748444],[122,72,67,-0.11090468242764473],[122,72,68,-0.11021411046385765],[122,72,69,-0.11137272417545319],[122,72,70,-0.11389964818954468],[122,72,71,-0.11677646264433861],[122,72,72,-0.11968196555972099],[122,72,73,-0.12147289142012596],[122,72,74,-0.12193190306425095],[122,72,75,-0.12104665860533714],[122,72,76,-0.11865361034870148],[122,72,77,-0.11505936086177826],[122,72,78,-0.11085212603211403],[122,72,79,-0.10627739503979683],[122,73,64,-0.12234903126955032],[122,73,65,-0.12213905155658722],[122,73,66,-0.12053562700748444],[122,73,67,-0.11871718242764473],[122,73,68,-0.11802661046385765],[122,73,69,-0.11918522417545319],[122,73,70,-0.12171214818954468],[122,73,71,-0.12458896264433861],[122,73,72,-0.127494465559721],[122,73,73,-0.12928539142012596],[122,73,74,-0.12974440306425095],[122,73,75,-0.12885915860533714],[122,73,76,-0.12646611034870148],[122,73,77,-0.12287186086177826],[122,73,78,-0.11866462603211403],[122,73,79,-0.11408989503979683],[122,74,64,-0.13016153126955032],[122,74,65,-0.12995155155658722],[122,74,66,-0.12834812700748444],[122,74,67,-0.12652968242764473],[122,74,68,-0.12583911046385765],[122,74,69,-0.12699772417545319],[122,74,70,-0.12952464818954468],[122,74,71,-0.1324014626443386],[122,74,72,-0.135306965559721],[122,74,73,-0.13709789142012596],[122,74,74,-0.13755690306425095],[122,74,75,-0.13667165860533714],[122,74,76,-0.13427861034870148],[122,74,77,-0.13068436086177826],[122,74,78,-0.12647712603211403],[122,74,79,-0.12190239503979683],[122,75,64,-0.13797403126955032],[122,75,65,-0.13776405155658722],[122,75,66,-0.13616062700748444],[122,75,67,-0.13434218242764473],[122,75,68,-0.13365161046385765],[122,75,69,-0.13481022417545319],[122,75,70,-0.13733714818954468],[122,75,71,-0.1402139626443386],[122,75,72,-0.143119465559721],[122,75,73,-0.14491039142012596],[122,75,74,-0.14536940306425095],[122,75,75,-0.14448415860533714],[122,75,76,-0.14209111034870148],[122,75,77,-0.13849686086177826],[122,75,78,-0.13428962603211403],[122,75,79,-0.12971489503979683],[122,76,64,-0.14578653126955032],[122,76,65,-0.14557655155658722],[122,76,66,-0.14397312700748444],[122,76,67,-0.14215468242764473],[122,76,68,-0.14146411046385765],[122,76,69,-0.14262272417545319],[122,76,70,-0.14514964818954468],[122,76,71,-0.1480264626443386],[122,76,72,-0.150931965559721],[122,76,73,-0.15272289142012596],[122,76,74,-0.15318190306425095],[122,76,75,-0.15229665860533714],[122,76,76,-0.14990361034870148],[122,76,77,-0.14630936086177826],[122,76,78,-0.14210212603211403],[122,76,79,-0.13752739503979683],[122,77,64,-0.15359903126955032],[122,77,65,-0.15338905155658722],[122,77,66,-0.15178562700748444],[122,77,67,-0.14996718242764473],[122,77,68,-0.14927661046385765],[122,77,69,-0.15043522417545319],[122,77,70,-0.15296214818954468],[122,77,71,-0.1558389626443386],[122,77,72,-0.158744465559721],[122,77,73,-0.16053539142012596],[122,77,74,-0.16099440306425095],[122,77,75,-0.16010915860533714],[122,77,76,-0.15771611034870148],[122,77,77,-0.15412186086177826],[122,77,78,-0.14991462603211403],[122,77,79,-0.14533989503979683],[122,78,64,-0.16141153126955032],[122,78,65,-0.16120155155658722],[122,78,66,-0.15959812700748444],[122,78,67,-0.15777968242764473],[122,78,68,-0.15708911046385765],[122,78,69,-0.15824772417545319],[122,78,70,-0.16077464818954468],[122,78,71,-0.1636514626443386],[122,78,72,-0.166556965559721],[122,78,73,-0.16834789142012596],[122,78,74,-0.16880690306425095],[122,78,75,-0.16792165860533714],[122,78,76,-0.16552861034870148],[122,78,77,-0.16193436086177826],[122,78,78,-0.15772712603211403],[122,78,79,-0.15315239503979683],[122,79,64,-0.16922403126955032],[122,79,65,-0.16901405155658722],[122,79,66,-0.16741062700748444],[122,79,67,-0.16559218242764473],[122,79,68,-0.16490161046385765],[122,79,69,-0.16606022417545319],[122,79,70,-0.16858714818954468],[122,79,71,-0.1714639626443386],[122,79,72,-0.174369465559721],[122,79,73,-0.17616039142012596],[122,79,74,-0.17661940306425095],[122,79,75,-0.17573415860533714],[122,79,76,-0.17334111034870148],[122,79,77,-0.16974686086177826],[122,79,78,-0.16553962603211403],[122,79,79,-0.16096489503979683],[122,80,64,-0.17703653126955032],[122,80,65,-0.17682655155658722],[122,80,66,-0.17522312700748444],[122,80,67,-0.17340468242764473],[122,80,68,-0.17271411046385765],[122,80,69,-0.17387272417545319],[122,80,70,-0.17639964818954468],[122,80,71,-0.1792764626443386],[122,80,72,-0.182181965559721],[122,80,73,-0.18397289142012596],[122,80,74,-0.18443190306425095],[122,80,75,-0.18354665860533714],[122,80,76,-0.18115361034870148],[122,80,77,-0.17755936086177826],[122,80,78,-0.17335212603211403],[122,80,79,-0.16877739503979683],[122,81,64,-0.18484903126955032],[122,81,65,-0.18463905155658722],[122,81,66,-0.18303562700748444],[122,81,67,-0.18121718242764473],[122,81,68,-0.18052661046385765],[122,81,69,-0.18168522417545319],[122,81,70,-0.18421214818954468],[122,81,71,-0.1870889626443386],[122,81,72,-0.189994465559721],[122,81,73,-0.19178539142012596],[122,81,74,-0.19224440306425095],[122,81,75,-0.19135915860533714],[122,81,76,-0.18896611034870148],[122,81,77,-0.18537186086177826],[122,81,78,-0.18116462603211403],[122,81,79,-0.17658989503979683],[122,82,64,-0.19266153126955032],[122,82,65,-0.19245155155658722],[122,82,66,-0.19084812700748444],[122,82,67,-0.18902968242764473],[122,82,68,-0.18833911046385765],[122,82,69,-0.18949772417545319],[122,82,70,-0.19202464818954468],[122,82,71,-0.1949014626443386],[122,82,72,-0.197806965559721],[122,82,73,-0.19959789142012596],[122,82,74,-0.20005690306425095],[122,82,75,-0.19917165860533714],[122,82,76,-0.19677861034870148],[122,82,77,-0.19318436086177826],[122,82,78,-0.18897712603211403],[122,82,79,-0.18440239503979683],[122,83,64,-0.20047403126955032],[122,83,65,-0.20026405155658722],[122,83,66,-0.19866062700748444],[122,83,67,-0.19684218242764473],[122,83,68,-0.19615161046385765],[122,83,69,-0.19731022417545319],[122,83,70,-0.19983714818954468],[122,83,71,-0.2027139626443386],[122,83,72,-0.205619465559721],[122,83,73,-0.20741039142012596],[122,83,74,-0.20786940306425095],[122,83,75,-0.20698415860533714],[122,83,76,-0.20459111034870148],[122,83,77,-0.20099686086177826],[122,83,78,-0.19678962603211403],[122,83,79,-0.19221489503979683],[122,84,64,-0.20828653126955032],[122,84,65,-0.20807655155658722],[122,84,66,-0.20647312700748444],[122,84,67,-0.20465468242764473],[122,84,68,-0.20396411046385765],[122,84,69,-0.20512272417545319],[122,84,70,-0.20764964818954468],[122,84,71,-0.2105264626443386],[122,84,72,-0.213431965559721],[122,84,73,-0.21522289142012596],[122,84,74,-0.21568190306425095],[122,84,75,-0.21479665860533714],[122,84,76,-0.21240361034870148],[122,84,77,-0.20880936086177826],[122,84,78,-0.20460212603211403],[122,84,79,-0.20002739503979683],[122,85,64,-0.21609903126955032],[122,85,65,-0.21588905155658722],[122,85,66,-0.21428562700748444],[122,85,67,-0.21246718242764473],[122,85,68,-0.21177661046385765],[122,85,69,-0.21293522417545319],[122,85,70,-0.21546214818954468],[122,85,71,-0.2183389626443386],[122,85,72,-0.221244465559721],[122,85,73,-0.22303539142012596],[122,85,74,-0.22349440306425095],[122,85,75,-0.22260915860533714],[122,85,76,-0.22021611034870148],[122,85,77,-0.21662186086177826],[122,85,78,-0.21241462603211403],[122,85,79,-0.20783989503979683],[122,86,64,-0.22391153126955032],[122,86,65,-0.22370155155658722],[122,86,66,-0.22209812700748444],[122,86,67,-0.22027968242764473],[122,86,68,-0.21958911046385765],[122,86,69,-0.22074772417545319],[122,86,70,-0.22327464818954468],[122,86,71,-0.2261514626443386],[122,86,72,-0.229056965559721],[122,86,73,-0.23084789142012596],[122,86,74,-0.23130690306425095],[122,86,75,-0.23042165860533714],[122,86,76,-0.22802861034870148],[122,86,77,-0.22443436086177826],[122,86,78,-0.22022712603211403],[122,86,79,-0.21565239503979683],[122,87,64,-0.23172403126955032],[122,87,65,-0.23151405155658722],[122,87,66,-0.22991062700748444],[122,87,67,-0.22809218242764473],[122,87,68,-0.22740161046385765],[122,87,69,-0.22856022417545319],[122,87,70,-0.23108714818954468],[122,87,71,-0.2339639626443386],[122,87,72,-0.236869465559721],[122,87,73,-0.23866039142012596],[122,87,74,-0.23911940306425095],[122,87,75,-0.23823415860533714],[122,87,76,-0.23584111034870148],[122,87,77,-0.23224686086177826],[122,87,78,-0.22803962603211403],[122,87,79,-0.22346489503979683],[122,88,64,-0.23953653126955032],[122,88,65,-0.23932655155658722],[122,88,66,-0.23772312700748444],[122,88,67,-0.23590468242764473],[122,88,68,-0.23521411046385765],[122,88,69,-0.23637272417545319],[122,88,70,-0.23889964818954468],[122,88,71,-0.2417764626443386],[122,88,72,-0.244681965559721],[122,88,73,-0.24647289142012596],[122,88,74,-0.24693190306425095],[122,88,75,-0.24604665860533714],[122,88,76,-0.24365361034870148],[122,88,77,-0.24005936086177826],[122,88,78,-0.23585212603211403],[122,88,79,-0.23127739503979683],[122,89,64,-0.24734903126955032],[122,89,65,-0.24713905155658722],[122,89,66,-0.24553562700748444],[122,89,67,-0.24371718242764473],[122,89,68,-0.24302661046385765],[122,89,69,-0.24418522417545319],[122,89,70,-0.24671214818954468],[122,89,71,-0.2495889626443386],[122,89,72,-0.252494465559721],[122,89,73,-0.25428539142012596],[122,89,74,-0.25474440306425095],[122,89,75,-0.25385915860533714],[122,89,76,-0.2514661103487015],[122,89,77,-0.24787186086177826],[122,89,78,-0.24366462603211403],[122,89,79,-0.23908989503979683],[122,90,64,-0.2551615312695503],[122,90,65,-0.2549515515565872],[122,90,66,-0.25334812700748444],[122,90,67,-0.25152968242764473],[122,90,68,-0.25083911046385765],[122,90,69,-0.2519977241754532],[122,90,70,-0.2545246481895447],[122,90,71,-0.2574014626443386],[122,90,72,-0.260306965559721],[122,90,73,-0.26209789142012596],[122,90,74,-0.26255690306425095],[122,90,75,-0.26167165860533714],[122,90,76,-0.2592786103487015],[122,90,77,-0.25568436086177826],[122,90,78,-0.25147712603211403],[122,90,79,-0.24690239503979683],[122,91,64,-0.2629740312695503],[122,91,65,-0.2627640515565872],[122,91,66,-0.26116062700748444],[122,91,67,-0.25934218242764473],[122,91,68,-0.25865161046385765],[122,91,69,-0.2598102241754532],[122,91,70,-0.2623371481895447],[122,91,71,-0.2652139626443386],[122,91,72,-0.268119465559721],[122,91,73,-0.26991039142012596],[122,91,74,-0.27036940306425095],[122,91,75,-0.26948415860533714],[122,91,76,-0.2670911103487015],[122,91,77,-0.26349686086177826],[122,91,78,-0.25928962603211403],[122,91,79,-0.25471489503979683],[122,92,64,-0.2707865312695503],[122,92,65,-0.2705765515565872],[122,92,66,-0.26897312700748444],[122,92,67,-0.26715468242764473],[122,92,68,-0.26646411046385765],[122,92,69,-0.2676227241754532],[122,92,70,-0.2701496481895447],[122,92,71,-0.2730264626443386],[122,92,72,-0.275931965559721],[122,92,73,-0.27772289142012596],[122,92,74,-0.27818190306425095],[122,92,75,-0.27729665860533714],[122,92,76,-0.2749036103487015],[122,92,77,-0.27130936086177826],[122,92,78,-0.26710212603211403],[122,92,79,-0.26252739503979683],[122,93,64,-0.2785990312695503],[122,93,65,-0.2783890515565872],[122,93,66,-0.27678562700748444],[122,93,67,-0.27496718242764473],[122,93,68,-0.27427661046385765],[122,93,69,-0.2754352241754532],[122,93,70,-0.2779621481895447],[122,93,71,-0.2808389626443386],[122,93,72,-0.283744465559721],[122,93,73,-0.28553539142012596],[122,93,74,-0.28599440306425095],[122,93,75,-0.28510915860533714],[122,93,76,-0.2827161103487015],[122,93,77,-0.27912186086177826],[122,93,78,-0.27491462603211403],[122,93,79,-0.27033989503979683],[122,94,64,-0.2864115312695503],[122,94,65,-0.2862015515565872],[122,94,66,-0.28459812700748444],[122,94,67,-0.28277968242764473],[122,94,68,-0.28208911046385765],[122,94,69,-0.2832477241754532],[122,94,70,-0.2857746481895447],[122,94,71,-0.2886514626443386],[122,94,72,-0.291556965559721],[122,94,73,-0.29334789142012596],[122,94,74,-0.29380690306425095],[122,94,75,-0.29292165860533714],[122,94,76,-0.2905286103487015],[122,94,77,-0.28693436086177826],[122,94,78,-0.28272712603211403],[122,94,79,-0.27815239503979683],[122,95,64,-0.2942240312695503],[122,95,65,-0.2940140515565872],[122,95,66,-0.29241062700748444],[122,95,67,-0.29059218242764473],[122,95,68,-0.28990161046385765],[122,95,69,-0.2910602241754532],[122,95,70,-0.2935871481895447],[122,95,71,-0.2964639626443386],[122,95,72,-0.299369465559721],[122,95,73,-0.30116039142012596],[122,95,74,-0.30161940306425095],[122,95,75,-0.30073415860533714],[122,95,76,-0.2983411103487015],[122,95,77,-0.29474686086177826],[122,95,78,-0.29053962603211403],[122,95,79,-0.28596489503979683],[122,96,64,-0.3020365312695503],[122,96,65,-0.3018265515565872],[122,96,66,-0.30022312700748444],[122,96,67,-0.29840468242764473],[122,96,68,-0.29771411046385765],[122,96,69,-0.2988727241754532],[122,96,70,-0.3013996481895447],[122,96,71,-0.3042764626443386],[122,96,72,-0.307181965559721],[122,96,73,-0.30897289142012596],[122,96,74,-0.30943190306425095],[122,96,75,-0.30854665860533714],[122,96,76,-0.3061536103487015],[122,96,77,-0.30255936086177826],[122,96,78,-0.29835212603211403],[122,96,79,-0.29377739503979683],[122,97,64,-0.3098490312695503],[122,97,65,-0.3096390515565872],[122,97,66,-0.30803562700748444],[122,97,67,-0.30621718242764473],[122,97,68,-0.30552661046385765],[122,97,69,-0.3066852241754532],[122,97,70,-0.3092121481895447],[122,97,71,-0.3120889626443386],[122,97,72,-0.314994465559721],[122,97,73,-0.31678539142012596],[122,97,74,-0.31724440306425095],[122,97,75,-0.31635915860533714],[122,97,76,-0.3139661103487015],[122,97,77,-0.31037186086177826],[122,97,78,-0.30616462603211403],[122,97,79,-0.30158989503979683],[122,98,64,-0.3176615312695503],[122,98,65,-0.3174515515565872],[122,98,66,-0.31584812700748444],[122,98,67,-0.31402968242764473],[122,98,68,-0.31333911046385765],[122,98,69,-0.3144977241754532],[122,98,70,-0.3170246481895447],[122,98,71,-0.3199014626443386],[122,98,72,-0.322806965559721],[122,98,73,-0.32459789142012596],[122,98,74,-0.32505690306425095],[122,98,75,-0.32417165860533714],[122,98,76,-0.3217786103487015],[122,98,77,-0.31818436086177826],[122,98,78,-0.31397712603211403],[122,98,79,-0.30940239503979683],[122,99,64,-0.3254740312695503],[122,99,65,-0.3252640515565872],[122,99,66,-0.32366062700748444],[122,99,67,-0.32184218242764473],[122,99,68,-0.32115161046385765],[122,99,69,-0.3223102241754532],[122,99,70,-0.3248371481895447],[122,99,71,-0.3277139626443386],[122,99,72,-0.330619465559721],[122,99,73,-0.33241039142012596],[122,99,74,-0.33286940306425095],[122,99,75,-0.33198415860533714],[122,99,76,-0.3295911103487015],[122,99,77,-0.32599686086177826],[122,99,78,-0.32178962603211403],[122,99,79,-0.31721489503979683],[122,100,64,-0.3332865312695503],[122,100,65,-0.3330765515565872],[122,100,66,-0.33147312700748444],[122,100,67,-0.32965468242764473],[122,100,68,-0.32896411046385765],[122,100,69,-0.3301227241754532],[122,100,70,-0.3326496481895447],[122,100,71,-0.3355264626443386],[122,100,72,-0.338431965559721],[122,100,73,-0.34022289142012596],[122,100,74,-0.34068190306425095],[122,100,75,-0.33979665860533714],[122,100,76,-0.3374036103487015],[122,100,77,-0.33380936086177826],[122,100,78,-0.32960212603211403],[122,100,79,-0.32502739503979683],[122,101,64,-0.3410990312695503],[122,101,65,-0.3408890515565872],[122,101,66,-0.33928562700748444],[122,101,67,-0.33746718242764473],[122,101,68,-0.33677661046385765],[122,101,69,-0.3379352241754532],[122,101,70,-0.3404621481895447],[122,101,71,-0.3433389626443386],[122,101,72,-0.346244465559721],[122,101,73,-0.34803539142012596],[122,101,74,-0.34849440306425095],[122,101,75,-0.34760915860533714],[122,101,76,-0.3452161103487015],[122,101,77,-0.34162186086177826],[122,101,78,-0.33741462603211403],[122,101,79,-0.33283989503979683],[122,102,64,-0.3489115312695503],[122,102,65,-0.3487015515565872],[122,102,66,-0.34709812700748444],[122,102,67,-0.34527968242764473],[122,102,68,-0.34458911046385765],[122,102,69,-0.3457477241754532],[122,102,70,-0.3482746481895447],[122,102,71,-0.3511514626443386],[122,102,72,-0.354056965559721],[122,102,73,-0.35584789142012596],[122,102,74,-0.35630690306425095],[122,102,75,-0.35542165860533714],[122,102,76,-0.3530286103487015],[122,102,77,-0.34943436086177826],[122,102,78,-0.34522712603211403],[122,102,79,-0.34065239503979683],[122,103,64,-0.3567240312695503],[122,103,65,-0.3565140515565872],[122,103,66,-0.35491062700748444],[122,103,67,-0.35309218242764473],[122,103,68,-0.35240161046385765],[122,103,69,-0.3535602241754532],[122,103,70,-0.3560871481895447],[122,103,71,-0.3589639626443386],[122,103,72,-0.361869465559721],[122,103,73,-0.36366039142012596],[122,103,74,-0.36411940306425095],[122,103,75,-0.36323415860533714],[122,103,76,-0.3608411103487015],[122,103,77,-0.35724686086177826],[122,103,78,-0.35303962603211403],[122,103,79,-0.34846489503979683],[122,104,64,-0.3645365312695503],[122,104,65,-0.3643265515565872],[122,104,66,-0.36272312700748444],[122,104,67,-0.36090468242764473],[122,104,68,-0.36021411046385765],[122,104,69,-0.3613727241754532],[122,104,70,-0.3638996481895447],[122,104,71,-0.3667764626443386],[122,104,72,-0.369681965559721],[122,104,73,-0.37147289142012596],[122,104,74,-0.37193190306425095],[122,104,75,-0.37104665860533714],[122,104,76,-0.3686536103487015],[122,104,77,-0.36505936086177826],[122,104,78,-0.36085212603211403],[122,104,79,-0.35627739503979683],[122,105,64,-0.3723490312695503],[122,105,65,-0.3721390515565872],[122,105,66,-0.37053562700748444],[122,105,67,-0.36871718242764473],[122,105,68,-0.36802661046385765],[122,105,69,-0.3691852241754532],[122,105,70,-0.3717121481895447],[122,105,71,-0.3745889626443386],[122,105,72,-0.377494465559721],[122,105,73,-0.37928539142012596],[122,105,74,-0.37974440306425095],[122,105,75,-0.37885915860533714],[122,105,76,-0.3764661103487015],[122,105,77,-0.37287186086177826],[122,105,78,-0.36866462603211403],[122,105,79,-0.36408989503979683],[122,106,64,-0.3801615312695503],[122,106,65,-0.3799515515565872],[122,106,66,-0.37834812700748444],[122,106,67,-0.37652968242764473],[122,106,68,-0.37583911046385765],[122,106,69,-0.3769977241754532],[122,106,70,-0.3795246481895447],[122,106,71,-0.3824014626443386],[122,106,72,-0.385306965559721],[122,106,73,-0.38709789142012596],[122,106,74,-0.38755690306425095],[122,106,75,-0.38667165860533714],[122,106,76,-0.3842786103487015],[122,106,77,-0.38068436086177826],[122,106,78,-0.37647712603211403],[122,106,79,-0.37190239503979683],[122,107,64,-0.3879740312695503],[122,107,65,-0.3877640515565872],[122,107,66,-0.38616062700748444],[122,107,67,-0.38434218242764473],[122,107,68,-0.38365161046385765],[122,107,69,-0.3848102241754532],[122,107,70,-0.3873371481895447],[122,107,71,-0.3902139626443386],[122,107,72,-0.393119465559721],[122,107,73,-0.39491039142012596],[122,107,74,-0.39536940306425095],[122,107,75,-0.39448415860533714],[122,107,76,-0.3920911103487015],[122,107,77,-0.38849686086177826],[122,107,78,-0.38428962603211403],[122,107,79,-0.37971489503979683],[122,108,64,-0.3957865312695503],[122,108,65,-0.3955765515565872],[122,108,66,-0.39397312700748444],[122,108,67,-0.39215468242764473],[122,108,68,-0.39146411046385765],[122,108,69,-0.3926227241754532],[122,108,70,-0.3951496481895447],[122,108,71,-0.3980264626443386],[122,108,72,-0.400931965559721],[122,108,73,-0.40272289142012596],[122,108,74,-0.40318190306425095],[122,108,75,-0.40229665860533714],[122,108,76,-0.3999036103487015],[122,108,77,-0.39630936086177826],[122,108,78,-0.39210212603211403],[122,108,79,-0.38752739503979683],[122,109,64,-0.4035990312695503],[122,109,65,-0.4033890515565872],[122,109,66,-0.40178562700748444],[122,109,67,-0.39996718242764473],[122,109,68,-0.39927661046385765],[122,109,69,-0.4004352241754532],[122,109,70,-0.4029621481895447],[122,109,71,-0.4058389626443386],[122,109,72,-0.408744465559721],[122,109,73,-0.41053539142012596],[122,109,74,-0.41099440306425095],[122,109,75,-0.41010915860533714],[122,109,76,-0.4077161103487015],[122,109,77,-0.40412186086177826],[122,109,78,-0.39991462603211403],[122,109,79,-0.39533989503979683],[122,110,64,-0.4114115312695503],[122,110,65,-0.4112015515565872],[122,110,66,-0.40959812700748444],[122,110,67,-0.40777968242764473],[122,110,68,-0.40708911046385765],[122,110,69,-0.4082477241754532],[122,110,70,-0.4107746481895447],[122,110,71,-0.4136514626443386],[122,110,72,-0.416556965559721],[122,110,73,-0.41834789142012596],[122,110,74,-0.41880690306425095],[122,110,75,-0.41792165860533714],[122,110,76,-0.4155286103487015],[122,110,77,-0.41193436086177826],[122,110,78,-0.40772712603211403],[122,110,79,-0.40315239503979683],[122,111,64,-0.4192240312695503],[122,111,65,-0.4190140515565872],[122,111,66,-0.41741062700748444],[122,111,67,-0.41559218242764473],[122,111,68,-0.41490161046385765],[122,111,69,-0.4160602241754532],[122,111,70,-0.4185871481895447],[122,111,71,-0.4214639626443386],[122,111,72,-0.424369465559721],[122,111,73,-0.42616039142012596],[122,111,74,-0.42661940306425095],[122,111,75,-0.42573415860533714],[122,111,76,-0.4233411103487015],[122,111,77,-0.41974686086177826],[122,111,78,-0.41553962603211403],[122,111,79,-0.41096489503979683],[122,112,64,-0.4270365312695503],[122,112,65,-0.4268265515565872],[122,112,66,-0.42522312700748444],[122,112,67,-0.42340468242764473],[122,112,68,-0.42271411046385765],[122,112,69,-0.4238727241754532],[122,112,70,-0.4263996481895447],[122,112,71,-0.4292764626443386],[122,112,72,-0.432181965559721],[122,112,73,-0.43397289142012596],[122,112,74,-0.43443190306425095],[122,112,75,-0.43354665860533714],[122,112,76,-0.4311536103487015],[122,112,77,-0.42755936086177826],[122,112,78,-0.42335212603211403],[122,112,79,-0.41877739503979683],[122,113,64,-0.4348490312695503],[122,113,65,-0.4346390515565872],[122,113,66,-0.43303562700748444],[122,113,67,-0.43121718242764473],[122,113,68,-0.43052661046385765],[122,113,69,-0.4316852241754532],[122,113,70,-0.4342121481895447],[122,113,71,-0.4370889626443386],[122,113,72,-0.439994465559721],[122,113,73,-0.44178539142012596],[122,113,74,-0.44224440306425095],[122,113,75,-0.44135915860533714],[122,113,76,-0.4389661103487015],[122,113,77,-0.43537186086177826],[122,113,78,-0.43116462603211403],[122,113,79,-0.42658989503979683],[122,114,64,-0.4426615312695503],[122,114,65,-0.4424515515565872],[122,114,66,-0.44084812700748444],[122,114,67,-0.43902968242764473],[122,114,68,-0.43833911046385765],[122,114,69,-0.4394977241754532],[122,114,70,-0.4420246481895447],[122,114,71,-0.4449014626443386],[122,114,72,-0.447806965559721],[122,114,73,-0.44959789142012596],[122,114,74,-0.45005690306425095],[122,114,75,-0.44917165860533714],[122,114,76,-0.4467786103487015],[122,114,77,-0.44318436086177826],[122,114,78,-0.43897712603211403],[122,114,79,-0.43440239503979683],[122,115,64,-0.4504740312695503],[122,115,65,-0.4502640515565872],[122,115,66,-0.44866062700748444],[122,115,67,-0.44684218242764473],[122,115,68,-0.44615161046385765],[122,115,69,-0.4473102241754532],[122,115,70,-0.4498371481895447],[122,115,71,-0.4527139626443386],[122,115,72,-0.455619465559721],[122,115,73,-0.45741039142012596],[122,115,74,-0.45786940306425095],[122,115,75,-0.45698415860533714],[122,115,76,-0.4545911103487015],[122,115,77,-0.45099686086177826],[122,115,78,-0.44678962603211403],[122,115,79,-0.44221489503979683],[122,116,64,-0.4582865312695503],[122,116,65,-0.4580765515565872],[122,116,66,-0.45647312700748444],[122,116,67,-0.45465468242764473],[122,116,68,-0.45396411046385765],[122,116,69,-0.4551227241754532],[122,116,70,-0.4576496481895447],[122,116,71,-0.4605264626443386],[122,116,72,-0.463431965559721],[122,116,73,-0.46522289142012596],[122,116,74,-0.46568190306425095],[122,116,75,-0.46479665860533714],[122,116,76,-0.4624036103487015],[122,116,77,-0.45880936086177826],[122,116,78,-0.45460212603211403],[122,116,79,-0.45002739503979683],[122,117,64,-0.4660990312695503],[122,117,65,-0.4658890515565872],[122,117,66,-0.46428562700748444],[122,117,67,-0.46246718242764473],[122,117,68,-0.46177661046385765],[122,117,69,-0.4629352241754532],[122,117,70,-0.4654621481895447],[122,117,71,-0.4683389626443386],[122,117,72,-0.471244465559721],[122,117,73,-0.47303539142012596],[122,117,74,-0.47349440306425095],[122,117,75,-0.47260915860533714],[122,117,76,-0.4702161103487015],[122,117,77,-0.46662186086177826],[122,117,78,-0.46241462603211403],[122,117,79,-0.45783989503979683],[122,118,64,-0.4739115312695503],[122,118,65,-0.4737015515565872],[122,118,66,-0.47209812700748444],[122,118,67,-0.47027968242764473],[122,118,68,-0.46958911046385765],[122,118,69,-0.4707477241754532],[122,118,70,-0.4732746481895447],[122,118,71,-0.4761514626443386],[122,118,72,-0.479056965559721],[122,118,73,-0.48084789142012596],[122,118,74,-0.48130690306425095],[122,118,75,-0.48042165860533714],[122,118,76,-0.4780286103487015],[122,118,77,-0.47443436086177826],[122,118,78,-0.47022712603211403],[122,118,79,-0.46565239503979683],[122,119,64,-0.4817240312695503],[122,119,65,-0.4815140515565872],[122,119,66,-0.47991062700748444],[122,119,67,-0.47809218242764473],[122,119,68,-0.47740161046385765],[122,119,69,-0.4785602241754532],[122,119,70,-0.4810871481895447],[122,119,71,-0.4839639626443386],[122,119,72,-0.486869465559721],[122,119,73,-0.48866039142012596],[122,119,74,-0.48911940306425095],[122,119,75,-0.48823415860533714],[122,119,76,-0.4858411103487015],[122,119,77,-0.48224686086177826],[122,119,78,-0.47803962603211403],[122,119,79,-0.47346489503979683],[122,120,64,-0.4895365312695503],[122,120,65,-0.4893265515565872],[122,120,66,-0.48772312700748444],[122,120,67,-0.48590468242764473],[122,120,68,-0.48521411046385765],[122,120,69,-0.4863727241754532],[122,120,70,-0.4888996481895447],[122,120,71,-0.4917764626443386],[122,120,72,-0.494681965559721],[122,120,73,-0.49647289142012596],[122,120,74,-0.49693190306425095],[122,120,75,-0.49604665860533714],[122,120,76,-0.4936536103487015],[122,120,77,-0.49005936086177826],[122,120,78,-0.48585212603211403],[122,120,79,-0.48127739503979683],[122,121,64,-0.4973490312695503],[122,121,65,-0.4971390515565872],[122,121,66,-0.49553562700748444],[122,121,67,-0.49371718242764473],[122,121,68,-0.49302661046385765],[122,121,69,-0.4941852241754532],[122,121,70,-0.4967121481895447],[122,121,71,-0.4995889626443386],[122,121,72,-0.502494465559721],[122,121,73,-0.504285391420126],[122,121,74,-0.504744403064251],[122,121,75,-0.5038591586053371],[122,121,76,-0.5014661103487015],[122,121,77,-0.49787186086177826],[122,121,78,-0.49366462603211403],[122,121,79,-0.48908989503979683],[122,122,64,-0.5051615312695503],[122,122,65,-0.5049515515565872],[122,122,66,-0.5033481270074844],[122,122,67,-0.5015296824276447],[122,122,68,-0.5008391104638577],[122,122,69,-0.5019977241754532],[122,122,70,-0.5045246481895447],[122,122,71,-0.5074014626443386],[122,122,72,-0.510306965559721],[122,122,73,-0.512097891420126],[122,122,74,-0.512556903064251],[122,122,75,-0.5116716586053371],[122,122,76,-0.5092786103487015],[122,122,77,-0.5056843608617783],[122,122,78,-0.501477126032114],[122,122,79,-0.49690239503979683],[122,123,64,-0.5129740312695503],[122,123,65,-0.5127640515565872],[122,123,66,-0.5111606270074844],[122,123,67,-0.5093421824276447],[122,123,68,-0.5086516104638577],[122,123,69,-0.5098102241754532],[122,123,70,-0.5123371481895447],[122,123,71,-0.5152139626443386],[122,123,72,-0.518119465559721],[122,123,73,-0.519910391420126],[122,123,74,-0.520369403064251],[122,123,75,-0.5194841586053371],[122,123,76,-0.5170911103487015],[122,123,77,-0.5134968608617783],[122,123,78,-0.509289626032114],[122,123,79,-0.5047148950397968],[122,124,64,-0.5207865312695503],[122,124,65,-0.5205765515565872],[122,124,66,-0.5189731270074844],[122,124,67,-0.5171546824276447],[122,124,68,-0.5164641104638577],[122,124,69,-0.5176227241754532],[122,124,70,-0.5201496481895447],[122,124,71,-0.5230264626443386],[122,124,72,-0.525931965559721],[122,124,73,-0.527722891420126],[122,124,74,-0.528181903064251],[122,124,75,-0.5272966586053371],[122,124,76,-0.5249036103487015],[122,124,77,-0.5213093608617783],[122,124,78,-0.517102126032114],[122,124,79,-0.5125273950397968],[122,125,64,-0.5285990312695503],[122,125,65,-0.5283890515565872],[122,125,66,-0.5267856270074844],[122,125,67,-0.5249671824276447],[122,125,68,-0.5242766104638577],[122,125,69,-0.5254352241754532],[122,125,70,-0.5279621481895447],[122,125,71,-0.5308389626443386],[122,125,72,-0.533744465559721],[122,125,73,-0.535535391420126],[122,125,74,-0.535994403064251],[122,125,75,-0.5351091586053371],[122,125,76,-0.5327161103487015],[122,125,77,-0.5291218608617783],[122,125,78,-0.524914626032114],[122,125,79,-0.5203398950397968],[122,126,64,-0.5364115312695503],[122,126,65,-0.5362015515565872],[122,126,66,-0.5345981270074844],[122,126,67,-0.5327796824276447],[122,126,68,-0.5320891104638577],[122,126,69,-0.5332477241754532],[122,126,70,-0.5357746481895447],[122,126,71,-0.5386514626443386],[122,126,72,-0.541556965559721],[122,126,73,-0.543347891420126],[122,126,74,-0.543806903064251],[122,126,75,-0.5429216586053371],[122,126,76,-0.5405286103487015],[122,126,77,-0.5369343608617783],[122,126,78,-0.532727126032114],[122,126,79,-0.5281523950397968],[122,127,64,-0.5442240312695503],[122,127,65,-0.5440140515565872],[122,127,66,-0.5424106270074844],[122,127,67,-0.5405921824276447],[122,127,68,-0.5399016104638577],[122,127,69,-0.5410602241754532],[122,127,70,-0.5435871481895447],[122,127,71,-0.5464639626443386],[122,127,72,-0.549369465559721],[122,127,73,-0.551160391420126],[122,127,74,-0.551619403064251],[122,127,75,-0.5507341586053371],[122,127,76,-0.5483411103487015],[122,127,77,-0.5447468608617783],[122,127,78,-0.540539626032114],[122,127,79,-0.5359648950397968],[122,128,64,-0.5520365312695503],[122,128,65,-0.5518265515565872],[122,128,66,-0.5502231270074844],[122,128,67,-0.5484046824276447],[122,128,68,-0.5477141104638577],[122,128,69,-0.5488727241754532],[122,128,70,-0.5513996481895447],[122,128,71,-0.5542764626443386],[122,128,72,-0.557181965559721],[122,128,73,-0.558972891420126],[122,128,74,-0.559431903064251],[122,128,75,-0.5585466586053371],[122,128,76,-0.5561536103487015],[122,128,77,-0.5525593608617783],[122,128,78,-0.548352126032114],[122,128,79,-0.5437773950397968],[122,129,64,-0.5598490312695503],[122,129,65,-0.5596390515565872],[122,129,66,-0.5580356270074844],[122,129,67,-0.5562171824276447],[122,129,68,-0.5555266104638577],[122,129,69,-0.5566852241754532],[122,129,70,-0.5592121481895447],[122,129,71,-0.5620889626443386],[122,129,72,-0.564994465559721],[122,129,73,-0.566785391420126],[122,129,74,-0.567244403064251],[122,129,75,-0.5663591586053371],[122,129,76,-0.5639661103487015],[122,129,77,-0.5603718608617783],[122,129,78,-0.556164626032114],[122,129,79,-0.5515898950397968],[122,130,64,-0.5676615312695503],[122,130,65,-0.5674515515565872],[122,130,66,-0.5658481270074844],[122,130,67,-0.5640296824276447],[122,130,68,-0.5633391104638577],[122,130,69,-0.5644977241754532],[122,130,70,-0.5670246481895447],[122,130,71,-0.5699014626443386],[122,130,72,-0.572806965559721],[122,130,73,-0.574597891420126],[122,130,74,-0.575056903064251],[122,130,75,-0.5741716586053371],[122,130,76,-0.5717786103487015],[122,130,77,-0.5681843608617783],[122,130,78,-0.563977126032114],[122,130,79,-0.5594023950397968],[122,131,64,-0.5754740312695503],[122,131,65,-0.5752640515565872],[122,131,66,-0.5736606270074844],[122,131,67,-0.5718421824276447],[122,131,68,-0.5711516104638577],[122,131,69,-0.5723102241754532],[122,131,70,-0.5748371481895447],[122,131,71,-0.5777139626443386],[122,131,72,-0.580619465559721],[122,131,73,-0.582410391420126],[122,131,74,-0.582869403064251],[122,131,75,-0.5819841586053371],[122,131,76,-0.5795911103487015],[122,131,77,-0.5759968608617783],[122,131,78,-0.571789626032114],[122,131,79,-0.5672148950397968],[122,132,64,-0.5832865312695503],[122,132,65,-0.5830765515565872],[122,132,66,-0.5814731270074844],[122,132,67,-0.5796546824276447],[122,132,68,-0.5789641104638577],[122,132,69,-0.5801227241754532],[122,132,70,-0.5826496481895447],[122,132,71,-0.5855264626443386],[122,132,72,-0.588431965559721],[122,132,73,-0.590222891420126],[122,132,74,-0.590681903064251],[122,132,75,-0.5897966586053371],[122,132,76,-0.5874036103487015],[122,132,77,-0.5838093608617783],[122,132,78,-0.579602126032114],[122,132,79,-0.5750273950397968],[122,133,64,-0.5910990312695503],[122,133,65,-0.5908890515565872],[122,133,66,-0.5892856270074844],[122,133,67,-0.5874671824276447],[122,133,68,-0.5867766104638577],[122,133,69,-0.5879352241754532],[122,133,70,-0.5904621481895447],[122,133,71,-0.5933389626443386],[122,133,72,-0.596244465559721],[122,133,73,-0.598035391420126],[122,133,74,-0.598494403064251],[122,133,75,-0.5976091586053371],[122,133,76,-0.5952161103487015],[122,133,77,-0.5916218608617783],[122,133,78,-0.587414626032114],[122,133,79,-0.5828398950397968],[122,134,64,-0.5989115312695503],[122,134,65,-0.5987015515565872],[122,134,66,-0.5970981270074844],[122,134,67,-0.5952796824276447],[122,134,68,-0.5945891104638577],[122,134,69,-0.5957477241754532],[122,134,70,-0.5982746481895447],[122,134,71,-0.6011514626443386],[122,134,72,-0.604056965559721],[122,134,73,-0.605847891420126],[122,134,74,-0.606306903064251],[122,134,75,-0.6054216586053371],[122,134,76,-0.6030286103487015],[122,134,77,-0.5994343608617783],[122,134,78,-0.595227126032114],[122,134,79,-0.5906523950397968],[122,135,64,-0.6067240312695503],[122,135,65,-0.6065140515565872],[122,135,66,-0.6049106270074844],[122,135,67,-0.6030921824276447],[122,135,68,-0.6024016104638577],[122,135,69,-0.6035602241754532],[122,135,70,-0.6060871481895447],[122,135,71,-0.6089639626443386],[122,135,72,-0.611869465559721],[122,135,73,-0.613660391420126],[122,135,74,-0.614119403064251],[122,135,75,-0.6132341586053371],[122,135,76,-0.6108411103487015],[122,135,77,-0.6072468608617783],[122,135,78,-0.603039626032114],[122,135,79,-0.5984648950397968],[122,136,64,-0.6145365312695503],[122,136,65,-0.6143265515565872],[122,136,66,-0.6127231270074844],[122,136,67,-0.6109046824276447],[122,136,68,-0.6102141104638577],[122,136,69,-0.6113727241754532],[122,136,70,-0.6138996481895447],[122,136,71,-0.6167764626443386],[122,136,72,-0.619681965559721],[122,136,73,-0.621472891420126],[122,136,74,-0.621931903064251],[122,136,75,-0.6210466586053371],[122,136,76,-0.6186536103487015],[122,136,77,-0.6150593608617783],[122,136,78,-0.610852126032114],[122,136,79,-0.6062773950397968],[122,137,64,-0.6223490312695503],[122,137,65,-0.6221390515565872],[122,137,66,-0.6205356270074844],[122,137,67,-0.6187171824276447],[122,137,68,-0.6180266104638577],[122,137,69,-0.6191852241754532],[122,137,70,-0.6217121481895447],[122,137,71,-0.6245889626443386],[122,137,72,-0.627494465559721],[122,137,73,-0.629285391420126],[122,137,74,-0.629744403064251],[122,137,75,-0.6288591586053371],[122,137,76,-0.6264661103487015],[122,137,77,-0.6228718608617783],[122,137,78,-0.618664626032114],[122,137,79,-0.6140898950397968],[122,138,64,-0.6301615312695503],[122,138,65,-0.6299515515565872],[122,138,66,-0.6283481270074844],[122,138,67,-0.6265296824276447],[122,138,68,-0.6258391104638577],[122,138,69,-0.6269977241754532],[122,138,70,-0.6295246481895447],[122,138,71,-0.6324014626443386],[122,138,72,-0.635306965559721],[122,138,73,-0.637097891420126],[122,138,74,-0.637556903064251],[122,138,75,-0.6366716586053371],[122,138,76,-0.6342786103487015],[122,138,77,-0.6306843608617783],[122,138,78,-0.626477126032114],[122,138,79,-0.6219023950397968],[122,139,64,-0.6379740312695503],[122,139,65,-0.6377640515565872],[122,139,66,-0.6361606270074844],[122,139,67,-0.6343421824276447],[122,139,68,-0.6336516104638577],[122,139,69,-0.6348102241754532],[122,139,70,-0.6373371481895447],[122,139,71,-0.6402139626443386],[122,139,72,-0.643119465559721],[122,139,73,-0.644910391420126],[122,139,74,-0.645369403064251],[122,139,75,-0.6444841586053371],[122,139,76,-0.6420911103487015],[122,139,77,-0.6384968608617783],[122,139,78,-0.634289626032114],[122,139,79,-0.6297148950397968],[122,140,64,-0.6457865312695503],[122,140,65,-0.6455765515565872],[122,140,66,-0.6439731270074844],[122,140,67,-0.6421546824276447],[122,140,68,-0.6414641104638577],[122,140,69,-0.6426227241754532],[122,140,70,-0.6451496481895447],[122,140,71,-0.6480264626443386],[122,140,72,-0.650931965559721],[122,140,73,-0.652722891420126],[122,140,74,-0.653181903064251],[122,140,75,-0.6522966586053371],[122,140,76,-0.6499036103487015],[122,140,77,-0.6463093608617783],[122,140,78,-0.642102126032114],[122,140,79,-0.6375273950397968],[122,141,64,-0.6535990312695503],[122,141,65,-0.6533890515565872],[122,141,66,-0.6517856270074844],[122,141,67,-0.6499671824276447],[122,141,68,-0.6492766104638577],[122,141,69,-0.6504352241754532],[122,141,70,-0.6529621481895447],[122,141,71,-0.6558389626443386],[122,141,72,-0.658744465559721],[122,141,73,-0.660535391420126],[122,141,74,-0.660994403064251],[122,141,75,-0.6601091586053371],[122,141,76,-0.6577161103487015],[122,141,77,-0.6541218608617783],[122,141,78,-0.649914626032114],[122,141,79,-0.6453398950397968],[122,142,64,-0.6614115312695503],[122,142,65,-0.6612015515565872],[122,142,66,-0.6595981270074844],[122,142,67,-0.6577796824276447],[122,142,68,-0.6570891104638577],[122,142,69,-0.6582477241754532],[122,142,70,-0.6607746481895447],[122,142,71,-0.6636514626443386],[122,142,72,-0.666556965559721],[122,142,73,-0.668347891420126],[122,142,74,-0.668806903064251],[122,142,75,-0.6679216586053371],[122,142,76,-0.6655286103487015],[122,142,77,-0.6619343608617783],[122,142,78,-0.657727126032114],[122,142,79,-0.6531523950397968],[122,143,64,-0.6692240312695503],[122,143,65,-0.6690140515565872],[122,143,66,-0.6674106270074844],[122,143,67,-0.6655921824276447],[122,143,68,-0.6649016104638577],[122,143,69,-0.6660602241754532],[122,143,70,-0.6685871481895447],[122,143,71,-0.6714639626443386],[122,143,72,-0.674369465559721],[122,143,73,-0.676160391420126],[122,143,74,-0.676619403064251],[122,143,75,-0.6757341586053371],[122,143,76,-0.6733411103487015],[122,143,77,-0.6697468608617783],[122,143,78,-0.665539626032114],[122,143,79,-0.6609648950397968],[122,144,64,-0.6770365312695503],[122,144,65,-0.6768265515565872],[122,144,66,-0.6752231270074844],[122,144,67,-0.6734046824276447],[122,144,68,-0.6727141104638577],[122,144,69,-0.6738727241754532],[122,144,70,-0.6763996481895447],[122,144,71,-0.6792764626443386],[122,144,72,-0.682181965559721],[122,144,73,-0.683972891420126],[122,144,74,-0.684431903064251],[122,144,75,-0.6835466586053371],[122,144,76,-0.6811536103487015],[122,144,77,-0.6775593608617783],[122,144,78,-0.673352126032114],[122,144,79,-0.6687773950397968],[122,145,64,-0.6848490312695503],[122,145,65,-0.6846390515565872],[122,145,66,-0.6830356270074844],[122,145,67,-0.6812171824276447],[122,145,68,-0.6805266104638577],[122,145,69,-0.6816852241754532],[122,145,70,-0.6842121481895447],[122,145,71,-0.6870889626443386],[122,145,72,-0.689994465559721],[122,145,73,-0.691785391420126],[122,145,74,-0.692244403064251],[122,145,75,-0.6913591586053371],[122,145,76,-0.6889661103487015],[122,145,77,-0.6853718608617783],[122,145,78,-0.681164626032114],[122,145,79,-0.6765898950397968],[122,146,64,-0.6926615312695503],[122,146,65,-0.6924515515565872],[122,146,66,-0.6908481270074844],[122,146,67,-0.6890296824276447],[122,146,68,-0.6883391104638577],[122,146,69,-0.6894977241754532],[122,146,70,-0.6920246481895447],[122,146,71,-0.6949014626443386],[122,146,72,-0.697806965559721],[122,146,73,-0.699597891420126],[122,146,74,-0.700056903064251],[122,146,75,-0.6991716586053371],[122,146,76,-0.6967786103487015],[122,146,77,-0.6931843608617783],[122,146,78,-0.688977126032114],[122,146,79,-0.6844023950397968],[122,147,64,-0.7004740312695503],[122,147,65,-0.7002640515565872],[122,147,66,-0.6986606270074844],[122,147,67,-0.6968421824276447],[122,147,68,-0.6961516104638577],[122,147,69,-0.6973102241754532],[122,147,70,-0.6998371481895447],[122,147,71,-0.7027139626443386],[122,147,72,-0.705619465559721],[122,147,73,-0.707410391420126],[122,147,74,-0.707869403064251],[122,147,75,-0.7069841586053371],[122,147,76,-0.7045911103487015],[122,147,77,-0.7009968608617783],[122,147,78,-0.696789626032114],[122,147,79,-0.6922148950397968],[122,148,64,-0.7082865312695503],[122,148,65,-0.7080765515565872],[122,148,66,-0.7064731270074844],[122,148,67,-0.7046546824276447],[122,148,68,-0.7039641104638577],[122,148,69,-0.7051227241754532],[122,148,70,-0.7076496481895447],[122,148,71,-0.7105264626443386],[122,148,72,-0.713431965559721],[122,148,73,-0.715222891420126],[122,148,74,-0.715681903064251],[122,148,75,-0.7147966586053371],[122,148,76,-0.7124036103487015],[122,148,77,-0.7088093608617783],[122,148,78,-0.704602126032114],[122,148,79,-0.7000273950397968],[122,149,64,-0.7160990312695503],[122,149,65,-0.7158890515565872],[122,149,66,-0.7142856270074844],[122,149,67,-0.7124671824276447],[122,149,68,-0.7117766104638577],[122,149,69,-0.7129352241754532],[122,149,70,-0.7154621481895447],[122,149,71,-0.7183389626443386],[122,149,72,-0.721244465559721],[122,149,73,-0.723035391420126],[122,149,74,-0.723494403064251],[122,149,75,-0.7226091586053371],[122,149,76,-0.7202161103487015],[122,149,77,-0.7166218608617783],[122,149,78,-0.712414626032114],[122,149,79,-0.7078398950397968],[122,150,64,-0.7239115312695503],[122,150,65,-0.7237015515565872],[122,150,66,-0.7220981270074844],[122,150,67,-0.7202796824276447],[122,150,68,-0.7195891104638577],[122,150,69,-0.7207477241754532],[122,150,70,-0.7232746481895447],[122,150,71,-0.7261514626443386],[122,150,72,-0.729056965559721],[122,150,73,-0.730847891420126],[122,150,74,-0.731306903064251],[122,150,75,-0.7304216586053371],[122,150,76,-0.7280286103487015],[122,150,77,-0.7244343608617783],[122,150,78,-0.720227126032114],[122,150,79,-0.7156523950397968],[122,151,64,-0.7317240312695503],[122,151,65,-0.7315140515565872],[122,151,66,-0.7299106270074844],[122,151,67,-0.7280921824276447],[122,151,68,-0.7274016104638577],[122,151,69,-0.7285602241754532],[122,151,70,-0.7310871481895447],[122,151,71,-0.7339639626443386],[122,151,72,-0.736869465559721],[122,151,73,-0.738660391420126],[122,151,74,-0.739119403064251],[122,151,75,-0.7382341586053371],[122,151,76,-0.7358411103487015],[122,151,77,-0.7322468608617783],[122,151,78,-0.728039626032114],[122,151,79,-0.7234648950397968],[122,152,64,-0.7395365312695503],[122,152,65,-0.7393265515565872],[122,152,66,-0.7377231270074844],[122,152,67,-0.7359046824276447],[122,152,68,-0.7352141104638577],[122,152,69,-0.7363727241754532],[122,152,70,-0.7388996481895447],[122,152,71,-0.7417764626443386],[122,152,72,-0.744681965559721],[122,152,73,-0.746472891420126],[122,152,74,-0.746931903064251],[122,152,75,-0.7460466586053371],[122,152,76,-0.7436536103487015],[122,152,77,-0.7400593608617783],[122,152,78,-0.735852126032114],[122,152,79,-0.7312773950397968],[122,153,64,-0.7473490312695503],[122,153,65,-0.7471390515565872],[122,153,66,-0.7455356270074844],[122,153,67,-0.7437171824276447],[122,153,68,-0.7430266104638577],[122,153,69,-0.7441852241754532],[122,153,70,-0.7467121481895447],[122,153,71,-0.7495889626443386],[122,153,72,-0.752494465559721],[122,153,73,-0.754285391420126],[122,153,74,-0.754744403064251],[122,153,75,-0.7538591586053371],[122,153,76,-0.7514661103487015],[122,153,77,-0.7478718608617783],[122,153,78,-0.743664626032114],[122,153,79,-0.7390898950397968],[122,154,64,-0.7551615312695503],[122,154,65,-0.7549515515565872],[122,154,66,-0.7533481270074844],[122,154,67,-0.7515296824276447],[122,154,68,-0.7508391104638577],[122,154,69,-0.7519977241754532],[122,154,70,-0.7545246481895447],[122,154,71,-0.7574014626443386],[122,154,72,-0.760306965559721],[122,154,73,-0.762097891420126],[122,154,74,-0.762556903064251],[122,154,75,-0.7616716586053371],[122,154,76,-0.7592786103487015],[122,154,77,-0.7556843608617783],[122,154,78,-0.751477126032114],[122,154,79,-0.7469023950397968],[122,155,64,-0.7629740312695503],[122,155,65,-0.7627640515565872],[122,155,66,-0.7611606270074844],[122,155,67,-0.7593421824276447],[122,155,68,-0.7586516104638577],[122,155,69,-0.7598102241754532],[122,155,70,-0.7623371481895447],[122,155,71,-0.7652139626443386],[122,155,72,-0.768119465559721],[122,155,73,-0.769910391420126],[122,155,74,-0.770369403064251],[122,155,75,-0.7694841586053371],[122,155,76,-0.7670911103487015],[122,155,77,-0.7634968608617783],[122,155,78,-0.759289626032114],[122,155,79,-0.7547148950397968],[122,156,64,-0.7707865312695503],[122,156,65,-0.7705765515565872],[122,156,66,-0.7689731270074844],[122,156,67,-0.7671546824276447],[122,156,68,-0.7664641104638577],[122,156,69,-0.7676227241754532],[122,156,70,-0.7701496481895447],[122,156,71,-0.7730264626443386],[122,156,72,-0.775931965559721],[122,156,73,-0.777722891420126],[122,156,74,-0.778181903064251],[122,156,75,-0.7772966586053371],[122,156,76,-0.7749036103487015],[122,156,77,-0.7713093608617783],[122,156,78,-0.767102126032114],[122,156,79,-0.7625273950397968],[122,157,64,-0.7785990312695503],[122,157,65,-0.7783890515565872],[122,157,66,-0.7767856270074844],[122,157,67,-0.7749671824276447],[122,157,68,-0.7742766104638577],[122,157,69,-0.7754352241754532],[122,157,70,-0.7779621481895447],[122,157,71,-0.7808389626443386],[122,157,72,-0.783744465559721],[122,157,73,-0.785535391420126],[122,157,74,-0.785994403064251],[122,157,75,-0.7851091586053371],[122,157,76,-0.7827161103487015],[122,157,77,-0.7791218608617783],[122,157,78,-0.774914626032114],[122,157,79,-0.7703398950397968],[122,158,64,-0.7864115312695503],[122,158,65,-0.7862015515565872],[122,158,66,-0.7845981270074844],[122,158,67,-0.7827796824276447],[122,158,68,-0.7820891104638577],[122,158,69,-0.7832477241754532],[122,158,70,-0.7857746481895447],[122,158,71,-0.7886514626443386],[122,158,72,-0.791556965559721],[122,158,73,-0.793347891420126],[122,158,74,-0.793806903064251],[122,158,75,-0.7929216586053371],[122,158,76,-0.7905286103487015],[122,158,77,-0.7869343608617783],[122,158,78,-0.782727126032114],[122,158,79,-0.7781523950397968],[122,159,64,-0.7942240312695503],[122,159,65,-0.7940140515565872],[122,159,66,-0.7924106270074844],[122,159,67,-0.7905921824276447],[122,159,68,-0.7899016104638577],[122,159,69,-0.7910602241754532],[122,159,70,-0.7935871481895447],[122,159,71,-0.7964639626443386],[122,159,72,-0.799369465559721],[122,159,73,-0.801160391420126],[122,159,74,-0.801619403064251],[122,159,75,-0.8007341586053371],[122,159,76,-0.7983411103487015],[122,159,77,-0.7947468608617783],[122,159,78,-0.790539626032114],[122,159,79,-0.7859648950397968],[122,160,64,-0.8020365312695503],[122,160,65,-0.8018265515565872],[122,160,66,-0.8002231270074844],[122,160,67,-0.7984046824276447],[122,160,68,-0.7977141104638577],[122,160,69,-0.7988727241754532],[122,160,70,-0.8013996481895447],[122,160,71,-0.8042764626443386],[122,160,72,-0.807181965559721],[122,160,73,-0.808972891420126],[122,160,74,-0.809431903064251],[122,160,75,-0.8085466586053371],[122,160,76,-0.8061536103487015],[122,160,77,-0.8025593608617783],[122,160,78,-0.798352126032114],[122,160,79,-0.7937773950397968],[122,161,64,-0.8098490312695503],[122,161,65,-0.8096390515565872],[122,161,66,-0.8080356270074844],[122,161,67,-0.8062171824276447],[122,161,68,-0.8055266104638577],[122,161,69,-0.8066852241754532],[122,161,70,-0.8092121481895447],[122,161,71,-0.8120889626443386],[122,161,72,-0.814994465559721],[122,161,73,-0.816785391420126],[122,161,74,-0.817244403064251],[122,161,75,-0.8163591586053371],[122,161,76,-0.8139661103487015],[122,161,77,-0.8103718608617783],[122,161,78,-0.806164626032114],[122,161,79,-0.8015898950397968],[122,162,64,-0.8176615312695503],[122,162,65,-0.8174515515565872],[122,162,66,-0.8158481270074844],[122,162,67,-0.8140296824276447],[122,162,68,-0.8133391104638577],[122,162,69,-0.8144977241754532],[122,162,70,-0.8170246481895447],[122,162,71,-0.8199014626443386],[122,162,72,-0.822806965559721],[122,162,73,-0.824597891420126],[122,162,74,-0.825056903064251],[122,162,75,-0.8241716586053371],[122,162,76,-0.8217786103487015],[122,162,77,-0.8181843608617783],[122,162,78,-0.813977126032114],[122,162,79,-0.8094023950397968],[122,163,64,-0.8254740312695503],[122,163,65,-0.8252640515565872],[122,163,66,-0.8236606270074844],[122,163,67,-0.8218421824276447],[122,163,68,-0.8211516104638577],[122,163,69,-0.8223102241754532],[122,163,70,-0.8248371481895447],[122,163,71,-0.8277139626443386],[122,163,72,-0.830619465559721],[122,163,73,-0.832410391420126],[122,163,74,-0.832869403064251],[122,163,75,-0.8319841586053371],[122,163,76,-0.8295911103487015],[122,163,77,-0.8259968608617783],[122,163,78,-0.821789626032114],[122,163,79,-0.8172148950397968],[122,164,64,-0.8332865312695503],[122,164,65,-0.8330765515565872],[122,164,66,-0.8314731270074844],[122,164,67,-0.8296546824276447],[122,164,68,-0.8289641104638577],[122,164,69,-0.8301227241754532],[122,164,70,-0.8326496481895447],[122,164,71,-0.8355264626443386],[122,164,72,-0.838431965559721],[122,164,73,-0.840222891420126],[122,164,74,-0.840681903064251],[122,164,75,-0.8397966586053371],[122,164,76,-0.8374036103487015],[122,164,77,-0.8338093608617783],[122,164,78,-0.829602126032114],[122,164,79,-0.8250273950397968],[122,165,64,-0.8410990312695503],[122,165,65,-0.8408890515565872],[122,165,66,-0.8392856270074844],[122,165,67,-0.8374671824276447],[122,165,68,-0.8367766104638577],[122,165,69,-0.8379352241754532],[122,165,70,-0.8404621481895447],[122,165,71,-0.8433389626443386],[122,165,72,-0.846244465559721],[122,165,73,-0.848035391420126],[122,165,74,-0.848494403064251],[122,165,75,-0.8476091586053371],[122,165,76,-0.8452161103487015],[122,165,77,-0.8416218608617783],[122,165,78,-0.837414626032114],[122,165,79,-0.8328398950397968],[122,166,64,-0.8489115312695503],[122,166,65,-0.8487015515565872],[122,166,66,-0.8470981270074844],[122,166,67,-0.8452796824276447],[122,166,68,-0.8445891104638577],[122,166,69,-0.8457477241754532],[122,166,70,-0.8482746481895447],[122,166,71,-0.8511514626443386],[122,166,72,-0.854056965559721],[122,166,73,-0.855847891420126],[122,166,74,-0.856306903064251],[122,166,75,-0.8554216586053371],[122,166,76,-0.8530286103487015],[122,166,77,-0.8494343608617783],[122,166,78,-0.845227126032114],[122,166,79,-0.8406523950397968],[122,167,64,-0.8567240312695503],[122,167,65,-0.8565140515565872],[122,167,66,-0.8549106270074844],[122,167,67,-0.8530921824276447],[122,167,68,-0.8524016104638577],[122,167,69,-0.8535602241754532],[122,167,70,-0.8560871481895447],[122,167,71,-0.8589639626443386],[122,167,72,-0.861869465559721],[122,167,73,-0.863660391420126],[122,167,74,-0.864119403064251],[122,167,75,-0.8632341586053371],[122,167,76,-0.8608411103487015],[122,167,77,-0.8572468608617783],[122,167,78,-0.853039626032114],[122,167,79,-0.8484648950397968],[122,168,64,-0.8645365312695503],[122,168,65,-0.8643265515565872],[122,168,66,-0.8627231270074844],[122,168,67,-0.8609046824276447],[122,168,68,-0.8602141104638577],[122,168,69,-0.8613727241754532],[122,168,70,-0.8638996481895447],[122,168,71,-0.8667764626443386],[122,168,72,-0.869681965559721],[122,168,73,-0.871472891420126],[122,168,74,-0.871931903064251],[122,168,75,-0.8710466586053371],[122,168,76,-0.8686536103487015],[122,168,77,-0.8650593608617783],[122,168,78,-0.860852126032114],[122,168,79,-0.8562773950397968],[122,169,64,-0.8723490312695503],[122,169,65,-0.8721390515565872],[122,169,66,-0.8705356270074844],[122,169,67,-0.8687171824276447],[122,169,68,-0.8680266104638577],[122,169,69,-0.8691852241754532],[122,169,70,-0.8717121481895447],[122,169,71,-0.8745889626443386],[122,169,72,-0.877494465559721],[122,169,73,-0.879285391420126],[122,169,74,-0.879744403064251],[122,169,75,-0.8788591586053371],[122,169,76,-0.8764661103487015],[122,169,77,-0.8728718608617783],[122,169,78,-0.868664626032114],[122,169,79,-0.8640898950397968],[122,170,64,-0.8801615312695503],[122,170,65,-0.8799515515565872],[122,170,66,-0.8783481270074844],[122,170,67,-0.8765296824276447],[122,170,68,-0.8758391104638577],[122,170,69,-0.8769977241754532],[122,170,70,-0.8795246481895447],[122,170,71,-0.8824014626443386],[122,170,72,-0.885306965559721],[122,170,73,-0.887097891420126],[122,170,74,-0.887556903064251],[122,170,75,-0.8866716586053371],[122,170,76,-0.8842786103487015],[122,170,77,-0.8806843608617783],[122,170,78,-0.876477126032114],[122,170,79,-0.8719023950397968],[122,171,64,-0.8879740312695503],[122,171,65,-0.8877640515565872],[122,171,66,-0.8861606270074844],[122,171,67,-0.8843421824276447],[122,171,68,-0.8836516104638577],[122,171,69,-0.8848102241754532],[122,171,70,-0.8873371481895447],[122,171,71,-0.8902139626443386],[122,171,72,-0.893119465559721],[122,171,73,-0.894910391420126],[122,171,74,-0.895369403064251],[122,171,75,-0.8944841586053371],[122,171,76,-0.8920911103487015],[122,171,77,-0.8884968608617783],[122,171,78,-0.884289626032114],[122,171,79,-0.8797148950397968],[122,172,64,-0.8957865312695503],[122,172,65,-0.8955765515565872],[122,172,66,-0.8939731270074844],[122,172,67,-0.8921546824276447],[122,172,68,-0.8914641104638577],[122,172,69,-0.8926227241754532],[122,172,70,-0.8951496481895447],[122,172,71,-0.8980264626443386],[122,172,72,-0.900931965559721],[122,172,73,-0.902722891420126],[122,172,74,-0.903181903064251],[122,172,75,-0.9022966586053371],[122,172,76,-0.8999036103487015],[122,172,77,-0.8963093608617783],[122,172,78,-0.892102126032114],[122,172,79,-0.8875273950397968],[122,173,64,-0.9035990312695503],[122,173,65,-0.9033890515565872],[122,173,66,-0.9017856270074844],[122,173,67,-0.8999671824276447],[122,173,68,-0.8992766104638577],[122,173,69,-0.9004352241754532],[122,173,70,-0.9029621481895447],[122,173,71,-0.9058389626443386],[122,173,72,-0.908744465559721],[122,173,73,-0.910535391420126],[122,173,74,-0.910994403064251],[122,173,75,-0.9101091586053371],[122,173,76,-0.9077161103487015],[122,173,77,-0.9041218608617783],[122,173,78,-0.899914626032114],[122,173,79,-0.8953398950397968],[122,174,64,-0.9114115312695503],[122,174,65,-0.9112015515565872],[122,174,66,-0.9095981270074844],[122,174,67,-0.9077796824276447],[122,174,68,-0.9070891104638577],[122,174,69,-0.9082477241754532],[122,174,70,-0.9107746481895447],[122,174,71,-0.9136514626443386],[122,174,72,-0.916556965559721],[122,174,73,-0.918347891420126],[122,174,74,-0.918806903064251],[122,174,75,-0.9179216586053371],[122,174,76,-0.9155286103487015],[122,174,77,-0.9119343608617783],[122,174,78,-0.907727126032114],[122,174,79,-0.9031523950397968],[122,175,64,-0.9192240312695503],[122,175,65,-0.9190140515565872],[122,175,66,-0.9174106270074844],[122,175,67,-0.9155921824276447],[122,175,68,-0.9149016104638577],[122,175,69,-0.9160602241754532],[122,175,70,-0.9185871481895447],[122,175,71,-0.9214639626443386],[122,175,72,-0.924369465559721],[122,175,73,-0.926160391420126],[122,175,74,-0.926619403064251],[122,175,75,-0.9257341586053371],[122,175,76,-0.9233411103487015],[122,175,77,-0.9197468608617783],[122,175,78,-0.915539626032114],[122,175,79,-0.9109648950397968],[122,176,64,-0.9270365312695503],[122,176,65,-0.9268265515565872],[122,176,66,-0.9252231270074844],[122,176,67,-0.9234046824276447],[122,176,68,-0.9227141104638577],[122,176,69,-0.9238727241754532],[122,176,70,-0.9263996481895447],[122,176,71,-0.9292764626443386],[122,176,72,-0.932181965559721],[122,176,73,-0.933972891420126],[122,176,74,-0.934431903064251],[122,176,75,-0.9335466586053371],[122,176,76,-0.9311536103487015],[122,176,77,-0.9275593608617783],[122,176,78,-0.923352126032114],[122,176,79,-0.9187773950397968],[122,177,64,-0.9348490312695503],[122,177,65,-0.9346390515565872],[122,177,66,-0.9330356270074844],[122,177,67,-0.9312171824276447],[122,177,68,-0.9305266104638577],[122,177,69,-0.9316852241754532],[122,177,70,-0.9342121481895447],[122,177,71,-0.9370889626443386],[122,177,72,-0.939994465559721],[122,177,73,-0.941785391420126],[122,177,74,-0.942244403064251],[122,177,75,-0.9413591586053371],[122,177,76,-0.9389661103487015],[122,177,77,-0.9353718608617783],[122,177,78,-0.931164626032114],[122,177,79,-0.9265898950397968],[122,178,64,-0.9426615312695503],[122,178,65,-0.9424515515565872],[122,178,66,-0.9408481270074844],[122,178,67,-0.9390296824276447],[122,178,68,-0.9383391104638577],[122,178,69,-0.9394977241754532],[122,178,70,-0.9420246481895447],[122,178,71,-0.9449014626443386],[122,178,72,-0.947806965559721],[122,178,73,-0.949597891420126],[122,178,74,-0.950056903064251],[122,178,75,-0.9491716586053371],[122,178,76,-0.9467786103487015],[122,178,77,-0.9431843608617783],[122,178,78,-0.938977126032114],[122,178,79,-0.9344023950397968],[122,179,64,-0.9504740312695503],[122,179,65,-0.9502640515565872],[122,179,66,-0.9486606270074844],[122,179,67,-0.9468421824276447],[122,179,68,-0.9461516104638577],[122,179,69,-0.9473102241754532],[122,179,70,-0.9498371481895447],[122,179,71,-0.9527139626443386],[122,179,72,-0.955619465559721],[122,179,73,-0.957410391420126],[122,179,74,-0.957869403064251],[122,179,75,-0.9569841586053371],[122,179,76,-0.9545911103487015],[122,179,77,-0.9509968608617783],[122,179,78,-0.946789626032114],[122,179,79,-0.9422148950397968],[122,180,64,-0.9582865312695503],[122,180,65,-0.9580765515565872],[122,180,66,-0.9564731270074844],[122,180,67,-0.9546546824276447],[122,180,68,-0.9539641104638577],[122,180,69,-0.9551227241754532],[122,180,70,-0.9576496481895447],[122,180,71,-0.9605264626443386],[122,180,72,-0.963431965559721],[122,180,73,-0.965222891420126],[122,180,74,-0.965681903064251],[122,180,75,-0.9647966586053371],[122,180,76,-0.9624036103487015],[122,180,77,-0.9588093608617783],[122,180,78,-0.954602126032114],[122,180,79,-0.9500273950397968],[122,181,64,-0.9660990312695503],[122,181,65,-0.9658890515565872],[122,181,66,-0.9642856270074844],[122,181,67,-0.9624671824276447],[122,181,68,-0.9617766104638577],[122,181,69,-0.9629352241754532],[122,181,70,-0.9654621481895447],[122,181,71,-0.9683389626443386],[122,181,72,-0.971244465559721],[122,181,73,-0.973035391420126],[122,181,74,-0.973494403064251],[122,181,75,-0.9726091586053371],[122,181,76,-0.9702161103487015],[122,181,77,-0.9666218608617783],[122,181,78,-0.962414626032114],[122,181,79,-0.9578398950397968],[122,182,64,-0.9739115312695503],[122,182,65,-0.9737015515565872],[122,182,66,-0.9720981270074844],[122,182,67,-0.9702796824276447],[122,182,68,-0.9695891104638577],[122,182,69,-0.9707477241754532],[122,182,70,-0.9732746481895447],[122,182,71,-0.9761514626443386],[122,182,72,-0.979056965559721],[122,182,73,-0.980847891420126],[122,182,74,-0.981306903064251],[122,182,75,-0.9804216586053371],[122,182,76,-0.9780286103487015],[122,182,77,-0.9744343608617783],[122,182,78,-0.970227126032114],[122,182,79,-0.9656523950397968],[122,183,64,-0.9817240312695503],[122,183,65,-0.9815140515565872],[122,183,66,-0.9799106270074844],[122,183,67,-0.9780921824276447],[122,183,68,-0.9774016104638577],[122,183,69,-0.9785602241754532],[122,183,70,-0.9810871481895447],[122,183,71,-0.9839639626443386],[122,183,72,-0.986869465559721],[122,183,73,-0.988660391420126],[122,183,74,-0.989119403064251],[122,183,75,-0.9882341586053371],[122,183,76,-0.9858411103487015],[122,183,77,-0.9822468608617783],[122,183,78,-0.978039626032114],[122,183,79,-0.9734648950397968],[122,184,64,-0.9895365312695503],[122,184,65,-0.9893265515565872],[122,184,66,-0.9877231270074844],[122,184,67,-0.9859046824276447],[122,184,68,-0.9852141104638577],[122,184,69,-0.9863727241754532],[122,184,70,-0.9888996481895447],[122,184,71,-0.9917764626443386],[122,184,72,-0.994681965559721],[122,184,73,-0.996472891420126],[122,184,74,-0.996931903064251],[122,184,75,-0.9960466586053371],[122,184,76,-0.9936536103487015],[122,184,77,-0.9900593608617783],[122,184,78,-0.985852126032114],[122,184,79,-0.9812773950397968],[122,185,64,-0.9973490312695503],[122,185,65,-0.9971390515565872],[122,185,66,-0.9955356270074844],[122,185,67,-0.9937171824276447],[122,185,68,-0.9930266104638577],[122,185,69,-0.9941852241754532],[122,185,70,-0.9967121481895447],[122,185,71,-0.9995889626443386],[122,185,72,-1.002494465559721],[122,185,73,-1.004285391420126],[122,185,74,-1.004744403064251],[122,185,75,-1.0038591586053371],[122,185,76,-1.0014661103487015],[122,185,77,-0.9978718608617783],[122,185,78,-0.993664626032114],[122,185,79,-0.9890898950397968],[122,186,64,-1.0051615312695503],[122,186,65,-1.0049515515565872],[122,186,66,-1.0033481270074844],[122,186,67,-1.0015296824276447],[122,186,68,-1.0008391104638577],[122,186,69,-1.0019977241754532],[122,186,70,-1.0045246481895447],[122,186,71,-1.0074014626443386],[122,186,72,-1.010306965559721],[122,186,73,-1.012097891420126],[122,186,74,-1.012556903064251],[122,186,75,-1.0116716586053371],[122,186,76,-1.0092786103487015],[122,186,77,-1.0056843608617783],[122,186,78,-1.001477126032114],[122,186,79,-0.9969023950397968],[122,187,64,-1.0129740312695503],[122,187,65,-1.0127640515565872],[122,187,66,-1.0111606270074844],[122,187,67,-1.0093421824276447],[122,187,68,-1.0086516104638577],[122,187,69,-1.0098102241754532],[122,187,70,-1.0123371481895447],[122,187,71,-1.0152139626443386],[122,187,72,-1.018119465559721],[122,187,73,-1.019910391420126],[122,187,74,-1.020369403064251],[122,187,75,-1.0194841586053371],[122,187,76,-1.0170911103487015],[122,187,77,-1.0134968608617783],[122,187,78,-1.009289626032114],[122,187,79,-1.0047148950397968],[122,188,64,-1.0207865312695503],[122,188,65,-1.0205765515565872],[122,188,66,-1.0189731270074844],[122,188,67,-1.0171546824276447],[122,188,68,-1.0164641104638577],[122,188,69,-1.0176227241754532],[122,188,70,-1.0201496481895447],[122,188,71,-1.0230264626443386],[122,188,72,-1.025931965559721],[122,188,73,-1.027722891420126],[122,188,74,-1.028181903064251],[122,188,75,-1.0272966586053371],[122,188,76,-1.0249036103487015],[122,188,77,-1.0213093608617783],[122,188,78,-1.017102126032114],[122,188,79,-1.0125273950397968],[122,189,64,-1.0285990312695503],[122,189,65,-1.0283890515565872],[122,189,66,-1.0267856270074844],[122,189,67,-1.0249671824276447],[122,189,68,-1.0242766104638577],[122,189,69,-1.0254352241754532],[122,189,70,-1.0279621481895447],[122,189,71,-1.0308389626443386],[122,189,72,-1.033744465559721],[122,189,73,-1.035535391420126],[122,189,74,-1.035994403064251],[122,189,75,-1.0351091586053371],[122,189,76,-1.0327161103487015],[122,189,77,-1.0291218608617783],[122,189,78,-1.024914626032114],[122,189,79,-1.0203398950397968],[122,190,64,-1.0364115312695503],[122,190,65,-1.0362015515565872],[122,190,66,-1.0345981270074844],[122,190,67,-1.0327796824276447],[122,190,68,-1.0320891104638577],[122,190,69,-1.0332477241754532],[122,190,70,-1.0357746481895447],[122,190,71,-1.0386514626443386],[122,190,72,-1.041556965559721],[122,190,73,-1.043347891420126],[122,190,74,-1.043806903064251],[122,190,75,-1.0429216586053371],[122,190,76,-1.0405286103487015],[122,190,77,-1.0369343608617783],[122,190,78,-1.032727126032114],[122,190,79,-1.0281523950397968],[122,191,64,-1.0442240312695503],[122,191,65,-1.0440140515565872],[122,191,66,-1.0424106270074844],[122,191,67,-1.0405921824276447],[122,191,68,-1.0399016104638577],[122,191,69,-1.0410602241754532],[122,191,70,-1.0435871481895447],[122,191,71,-1.0464639626443386],[122,191,72,-1.049369465559721],[122,191,73,-1.051160391420126],[122,191,74,-1.051619403064251],[122,191,75,-1.0507341586053371],[122,191,76,-1.0483411103487015],[122,191,77,-1.0447468608617783],[122,191,78,-1.040539626032114],[122,191,79,-1.0359648950397968],[122,192,64,-1.0520365312695503],[122,192,65,-1.0518265515565872],[122,192,66,-1.0502231270074844],[122,192,67,-1.0484046824276447],[122,192,68,-1.0477141104638577],[122,192,69,-1.0488727241754532],[122,192,70,-1.0513996481895447],[122,192,71,-1.0542764626443386],[122,192,72,-1.057181965559721],[122,192,73,-1.058972891420126],[122,192,74,-1.059431903064251],[122,192,75,-1.0585466586053371],[122,192,76,-1.0561536103487015],[122,192,77,-1.0525593608617783],[122,192,78,-1.048352126032114],[122,192,79,-1.0437773950397968],[122,193,64,-1.0598490312695503],[122,193,65,-1.0596390515565872],[122,193,66,-1.0580356270074844],[122,193,67,-1.0562171824276447],[122,193,68,-1.0555266104638577],[122,193,69,-1.0566852241754532],[122,193,70,-1.0592121481895447],[122,193,71,-1.0620889626443386],[122,193,72,-1.064994465559721],[122,193,73,-1.066785391420126],[122,193,74,-1.067244403064251],[122,193,75,-1.0663591586053371],[122,193,76,-1.0639661103487015],[122,193,77,-1.0603718608617783],[122,193,78,-1.056164626032114],[122,193,79,-1.0515898950397968],[122,194,64,-1.0676615312695503],[122,194,65,-1.0674515515565872],[122,194,66,-1.0658481270074844],[122,194,67,-1.0640296824276447],[122,194,68,-1.0633391104638577],[122,194,69,-1.0644977241754532],[122,194,70,-1.0670246481895447],[122,194,71,-1.0699014626443386],[122,194,72,-1.072806965559721],[122,194,73,-1.074597891420126],[122,194,74,-1.075056903064251],[122,194,75,-1.0741716586053371],[122,194,76,-1.0717786103487015],[122,194,77,-1.0681843608617783],[122,194,78,-1.063977126032114],[122,194,79,-1.0594023950397968],[122,195,64,-1.0754740312695503],[122,195,65,-1.0752640515565872],[122,195,66,-1.0736606270074844],[122,195,67,-1.0718421824276447],[122,195,68,-1.0711516104638577],[122,195,69,-1.0723102241754532],[122,195,70,-1.0748371481895447],[122,195,71,-1.0777139626443386],[122,195,72,-1.080619465559721],[122,195,73,-1.082410391420126],[122,195,74,-1.082869403064251],[122,195,75,-1.0819841586053371],[122,195,76,-1.0795911103487015],[122,195,77,-1.0759968608617783],[122,195,78,-1.071789626032114],[122,195,79,-1.0672148950397968],[122,196,64,-1.0832865312695503],[122,196,65,-1.0830765515565872],[122,196,66,-1.0814731270074844],[122,196,67,-1.0796546824276447],[122,196,68,-1.0789641104638577],[122,196,69,-1.0801227241754532],[122,196,70,-1.0826496481895447],[122,196,71,-1.0855264626443386],[122,196,72,-1.088431965559721],[122,196,73,-1.090222891420126],[122,196,74,-1.090681903064251],[122,196,75,-1.0897966586053371],[122,196,76,-1.0874036103487015],[122,196,77,-1.0838093608617783],[122,196,78,-1.079602126032114],[122,196,79,-1.0750273950397968],[122,197,64,-1.0910990312695503],[122,197,65,-1.0908890515565872],[122,197,66,-1.0892856270074844],[122,197,67,-1.0874671824276447],[122,197,68,-1.0867766104638577],[122,197,69,-1.0879352241754532],[122,197,70,-1.0904621481895447],[122,197,71,-1.0933389626443386],[122,197,72,-1.096244465559721],[122,197,73,-1.098035391420126],[122,197,74,-1.098494403064251],[122,197,75,-1.0976091586053371],[122,197,76,-1.0952161103487015],[122,197,77,-1.0916218608617783],[122,197,78,-1.087414626032114],[122,197,79,-1.0828398950397968],[122,198,64,-1.0989115312695503],[122,198,65,-1.0987015515565872],[122,198,66,-1.0970981270074844],[122,198,67,-1.0952796824276447],[122,198,68,-1.0945891104638577],[122,198,69,-1.0957477241754532],[122,198,70,-1.0982746481895447],[122,198,71,-1.1011514626443386],[122,198,72,-1.104056965559721],[122,198,73,-1.105847891420126],[122,198,74,-1.106306903064251],[122,198,75,-1.1054216586053371],[122,198,76,-1.1030286103487015],[122,198,77,-1.0994343608617783],[122,198,78,-1.095227126032114],[122,198,79,-1.0906523950397968],[122,199,64,-1.1067240312695503],[122,199,65,-1.1065140515565872],[122,199,66,-1.1049106270074844],[122,199,67,-1.1030921824276447],[122,199,68,-1.1024016104638577],[122,199,69,-1.1035602241754532],[122,199,70,-1.1060871481895447],[122,199,71,-1.1089639626443386],[122,199,72,-1.111869465559721],[122,199,73,-1.113660391420126],[122,199,74,-1.114119403064251],[122,199,75,-1.1132341586053371],[122,199,76,-1.1108411103487015],[122,199,77,-1.1072468608617783],[122,199,78,-1.103039626032114],[122,199,79,-1.0984648950397968],[122,200,64,-1.1145365312695503],[122,200,65,-1.1143265515565872],[122,200,66,-1.1127231270074844],[122,200,67,-1.1109046824276447],[122,200,68,-1.1102141104638577],[122,200,69,-1.1113727241754532],[122,200,70,-1.1138996481895447],[122,200,71,-1.1167764626443386],[122,200,72,-1.119681965559721],[122,200,73,-1.121472891420126],[122,200,74,-1.121931903064251],[122,200,75,-1.1210466586053371],[122,200,76,-1.1186536103487015],[122,200,77,-1.1150593608617783],[122,200,78,-1.110852126032114],[122,200,79,-1.1062773950397968],[122,201,64,-1.1223490312695503],[122,201,65,-1.1221390515565872],[122,201,66,-1.1205356270074844],[122,201,67,-1.1187171824276447],[122,201,68,-1.1180266104638577],[122,201,69,-1.1191852241754532],[122,201,70,-1.1217121481895447],[122,201,71,-1.1245889626443386],[122,201,72,-1.127494465559721],[122,201,73,-1.129285391420126],[122,201,74,-1.129744403064251],[122,201,75,-1.1288591586053371],[122,201,76,-1.1264661103487015],[122,201,77,-1.1228718608617783],[122,201,78,-1.118664626032114],[122,201,79,-1.1140898950397968],[122,202,64,-1.1301615312695503],[122,202,65,-1.1299515515565872],[122,202,66,-1.1283481270074844],[122,202,67,-1.1265296824276447],[122,202,68,-1.1258391104638577],[122,202,69,-1.1269977241754532],[122,202,70,-1.1295246481895447],[122,202,71,-1.1324014626443386],[122,202,72,-1.135306965559721],[122,202,73,-1.137097891420126],[122,202,74,-1.137556903064251],[122,202,75,-1.1366716586053371],[122,202,76,-1.1342786103487015],[122,202,77,-1.1306843608617783],[122,202,78,-1.126477126032114],[122,202,79,-1.1219023950397968],[122,203,64,-1.1379740312695503],[122,203,65,-1.1377640515565872],[122,203,66,-1.1361606270074844],[122,203,67,-1.1343421824276447],[122,203,68,-1.1336516104638577],[122,203,69,-1.1348102241754532],[122,203,70,-1.1373371481895447],[122,203,71,-1.1402139626443386],[122,203,72,-1.143119465559721],[122,203,73,-1.144910391420126],[122,203,74,-1.145369403064251],[122,203,75,-1.1444841586053371],[122,203,76,-1.1420911103487015],[122,203,77,-1.1384968608617783],[122,203,78,-1.134289626032114],[122,203,79,-1.1297148950397968],[122,204,64,-1.1457865312695503],[122,204,65,-1.1455765515565872],[122,204,66,-1.1439731270074844],[122,204,67,-1.1421546824276447],[122,204,68,-1.1414641104638577],[122,204,69,-1.1426227241754532],[122,204,70,-1.1451496481895447],[122,204,71,-1.1480264626443386],[122,204,72,-1.150931965559721],[122,204,73,-1.152722891420126],[122,204,74,-1.153181903064251],[122,204,75,-1.1522966586053371],[122,204,76,-1.1499036103487015],[122,204,77,-1.1463093608617783],[122,204,78,-1.142102126032114],[122,204,79,-1.1375273950397968],[122,205,64,-1.1535990312695503],[122,205,65,-1.1533890515565872],[122,205,66,-1.1517856270074844],[122,205,67,-1.1499671824276447],[122,205,68,-1.1492766104638577],[122,205,69,-1.1504352241754532],[122,205,70,-1.1529621481895447],[122,205,71,-1.1558389626443386],[122,205,72,-1.158744465559721],[122,205,73,-1.160535391420126],[122,205,74,-1.160994403064251],[122,205,75,-1.1601091586053371],[122,205,76,-1.1577161103487015],[122,205,77,-1.1541218608617783],[122,205,78,-1.149914626032114],[122,205,79,-1.1453398950397968],[122,206,64,-1.1614115312695503],[122,206,65,-1.1612015515565872],[122,206,66,-1.1595981270074844],[122,206,67,-1.1577796824276447],[122,206,68,-1.1570891104638577],[122,206,69,-1.1582477241754532],[122,206,70,-1.1607746481895447],[122,206,71,-1.1636514626443386],[122,206,72,-1.166556965559721],[122,206,73,-1.168347891420126],[122,206,74,-1.168806903064251],[122,206,75,-1.1679216586053371],[122,206,76,-1.1655286103487015],[122,206,77,-1.1619343608617783],[122,206,78,-1.157727126032114],[122,206,79,-1.1531523950397968],[122,207,64,-1.1692240312695503],[122,207,65,-1.1690140515565872],[122,207,66,-1.1674106270074844],[122,207,67,-1.1655921824276447],[122,207,68,-1.1649016104638577],[122,207,69,-1.1660602241754532],[122,207,70,-1.1685871481895447],[122,207,71,-1.1714639626443386],[122,207,72,-1.174369465559721],[122,207,73,-1.176160391420126],[122,207,74,-1.176619403064251],[122,207,75,-1.1757341586053371],[122,207,76,-1.1733411103487015],[122,207,77,-1.1697468608617783],[122,207,78,-1.165539626032114],[122,207,79,-1.1609648950397968],[122,208,64,-1.1770365312695503],[122,208,65,-1.1768265515565872],[122,208,66,-1.1752231270074844],[122,208,67,-1.1734046824276447],[122,208,68,-1.1727141104638577],[122,208,69,-1.1738727241754532],[122,208,70,-1.1763996481895447],[122,208,71,-1.1792764626443386],[122,208,72,-1.182181965559721],[122,208,73,-1.183972891420126],[122,208,74,-1.184431903064251],[122,208,75,-1.1835466586053371],[122,208,76,-1.1811536103487015],[122,208,77,-1.1775593608617783],[122,208,78,-1.173352126032114],[122,208,79,-1.1687773950397968],[122,209,64,-1.1848490312695503],[122,209,65,-1.1846390515565872],[122,209,66,-1.1830356270074844],[122,209,67,-1.1812171824276447],[122,209,68,-1.1805266104638577],[122,209,69,-1.1816852241754532],[122,209,70,-1.1842121481895447],[122,209,71,-1.1870889626443386],[122,209,72,-1.189994465559721],[122,209,73,-1.191785391420126],[122,209,74,-1.192244403064251],[122,209,75,-1.1913591586053371],[122,209,76,-1.1889661103487015],[122,209,77,-1.1853718608617783],[122,209,78,-1.181164626032114],[122,209,79,-1.1765898950397968],[122,210,64,-1.1926615312695503],[122,210,65,-1.1924515515565872],[122,210,66,-1.1908481270074844],[122,210,67,-1.1890296824276447],[122,210,68,-1.1883391104638577],[122,210,69,-1.1894977241754532],[122,210,70,-1.1920246481895447],[122,210,71,-1.1949014626443386],[122,210,72,-1.197806965559721],[122,210,73,-1.199597891420126],[122,210,74,-1.200056903064251],[122,210,75,-1.1991716586053371],[122,210,76,-1.1967786103487015],[122,210,77,-1.1931843608617783],[122,210,78,-1.188977126032114],[122,210,79,-1.1844023950397968],[122,211,64,-1.2004740312695503],[122,211,65,-1.2002640515565872],[122,211,66,-1.1986606270074844],[122,211,67,-1.1968421824276447],[122,211,68,-1.1961516104638577],[122,211,69,-1.1973102241754532],[122,211,70,-1.1998371481895447],[122,211,71,-1.2027139626443386],[122,211,72,-1.205619465559721],[122,211,73,-1.207410391420126],[122,211,74,-1.207869403064251],[122,211,75,-1.2069841586053371],[122,211,76,-1.2045911103487015],[122,211,77,-1.2009968608617783],[122,211,78,-1.196789626032114],[122,211,79,-1.1922148950397968],[122,212,64,-1.2082865312695503],[122,212,65,-1.2080765515565872],[122,212,66,-1.2064731270074844],[122,212,67,-1.2046546824276447],[122,212,68,-1.2039641104638577],[122,212,69,-1.2051227241754532],[122,212,70,-1.2076496481895447],[122,212,71,-1.2105264626443386],[122,212,72,-1.213431965559721],[122,212,73,-1.215222891420126],[122,212,74,-1.215681903064251],[122,212,75,-1.2147966586053371],[122,212,76,-1.2124036103487015],[122,212,77,-1.2088093608617783],[122,212,78,-1.204602126032114],[122,212,79,-1.2000273950397968],[122,213,64,-1.2160990312695503],[122,213,65,-1.2158890515565872],[122,213,66,-1.2142856270074844],[122,213,67,-1.2124671824276447],[122,213,68,-1.2117766104638577],[122,213,69,-1.2129352241754532],[122,213,70,-1.2154621481895447],[122,213,71,-1.2183389626443386],[122,213,72,-1.221244465559721],[122,213,73,-1.223035391420126],[122,213,74,-1.223494403064251],[122,213,75,-1.2226091586053371],[122,213,76,-1.2202161103487015],[122,213,77,-1.2166218608617783],[122,213,78,-1.212414626032114],[122,213,79,-1.2078398950397968],[122,214,64,-1.2239115312695503],[122,214,65,-1.2237015515565872],[122,214,66,-1.2220981270074844],[122,214,67,-1.2202796824276447],[122,214,68,-1.2195891104638577],[122,214,69,-1.2207477241754532],[122,214,70,-1.2232746481895447],[122,214,71,-1.2261514626443386],[122,214,72,-1.229056965559721],[122,214,73,-1.230847891420126],[122,214,74,-1.231306903064251],[122,214,75,-1.2304216586053371],[122,214,76,-1.2280286103487015],[122,214,77,-1.2244343608617783],[122,214,78,-1.220227126032114],[122,214,79,-1.2156523950397968],[122,215,64,-1.2317240312695503],[122,215,65,-1.2315140515565872],[122,215,66,-1.2299106270074844],[122,215,67,-1.2280921824276447],[122,215,68,-1.2274016104638577],[122,215,69,-1.2285602241754532],[122,215,70,-1.2310871481895447],[122,215,71,-1.2339639626443386],[122,215,72,-1.236869465559721],[122,215,73,-1.238660391420126],[122,215,74,-1.239119403064251],[122,215,75,-1.2382341586053371],[122,215,76,-1.2358411103487015],[122,215,77,-1.2322468608617783],[122,215,78,-1.228039626032114],[122,215,79,-1.2234648950397968],[122,216,64,-1.2395365312695503],[122,216,65,-1.2393265515565872],[122,216,66,-1.2377231270074844],[122,216,67,-1.2359046824276447],[122,216,68,-1.2352141104638577],[122,216,69,-1.2363727241754532],[122,216,70,-1.2388996481895447],[122,216,71,-1.2417764626443386],[122,216,72,-1.244681965559721],[122,216,73,-1.246472891420126],[122,216,74,-1.246931903064251],[122,216,75,-1.2460466586053371],[122,216,76,-1.2436536103487015],[122,216,77,-1.2400593608617783],[122,216,78,-1.235852126032114],[122,216,79,-1.2312773950397968],[122,217,64,-1.2473490312695503],[122,217,65,-1.2471390515565872],[122,217,66,-1.2455356270074844],[122,217,67,-1.2437171824276447],[122,217,68,-1.2430266104638577],[122,217,69,-1.2441852241754532],[122,217,70,-1.2467121481895447],[122,217,71,-1.2495889626443386],[122,217,72,-1.252494465559721],[122,217,73,-1.254285391420126],[122,217,74,-1.254744403064251],[122,217,75,-1.2538591586053371],[122,217,76,-1.2514661103487015],[122,217,77,-1.2478718608617783],[122,217,78,-1.243664626032114],[122,217,79,-1.2390898950397968],[122,218,64,-1.2551615312695503],[122,218,65,-1.2549515515565872],[122,218,66,-1.2533481270074844],[122,218,67,-1.2515296824276447],[122,218,68,-1.2508391104638577],[122,218,69,-1.2519977241754532],[122,218,70,-1.2545246481895447],[122,218,71,-1.2574014626443386],[122,218,72,-1.260306965559721],[122,218,73,-1.262097891420126],[122,218,74,-1.262556903064251],[122,218,75,-1.2616716586053371],[122,218,76,-1.2592786103487015],[122,218,77,-1.2556843608617783],[122,218,78,-1.251477126032114],[122,218,79,-1.2469023950397968],[122,219,64,-1.2629740312695503],[122,219,65,-1.2627640515565872],[122,219,66,-1.2611606270074844],[122,219,67,-1.2593421824276447],[122,219,68,-1.2586516104638577],[122,219,69,-1.2598102241754532],[122,219,70,-1.2623371481895447],[122,219,71,-1.2652139626443386],[122,219,72,-1.268119465559721],[122,219,73,-1.269910391420126],[122,219,74,-1.270369403064251],[122,219,75,-1.2694841586053371],[122,219,76,-1.2670911103487015],[122,219,77,-1.2634968608617783],[122,219,78,-1.259289626032114],[122,219,79,-1.2547148950397968],[122,220,64,-1.2707865312695503],[122,220,65,-1.2705765515565872],[122,220,66,-1.2689731270074844],[122,220,67,-1.2671546824276447],[122,220,68,-1.2664641104638577],[122,220,69,-1.2676227241754532],[122,220,70,-1.2701496481895447],[122,220,71,-1.2730264626443386],[122,220,72,-1.275931965559721],[122,220,73,-1.277722891420126],[122,220,74,-1.278181903064251],[122,220,75,-1.2772966586053371],[122,220,76,-1.2749036103487015],[122,220,77,-1.2713093608617783],[122,220,78,-1.267102126032114],[122,220,79,-1.2625273950397968],[122,221,64,-1.2785990312695503],[122,221,65,-1.2783890515565872],[122,221,66,-1.2767856270074844],[122,221,67,-1.2749671824276447],[122,221,68,-1.2742766104638577],[122,221,69,-1.2754352241754532],[122,221,70,-1.2779621481895447],[122,221,71,-1.2808389626443386],[122,221,72,-1.283744465559721],[122,221,73,-1.285535391420126],[122,221,74,-1.285994403064251],[122,221,75,-1.2851091586053371],[122,221,76,-1.2827161103487015],[122,221,77,-1.2791218608617783],[122,221,78,-1.274914626032114],[122,221,79,-1.2703398950397968],[122,222,64,-1.2864115312695503],[122,222,65,-1.2862015515565872],[122,222,66,-1.2845981270074844],[122,222,67,-1.2827796824276447],[122,222,68,-1.2820891104638577],[122,222,69,-1.2832477241754532],[122,222,70,-1.2857746481895447],[122,222,71,-1.2886514626443386],[122,222,72,-1.291556965559721],[122,222,73,-1.293347891420126],[122,222,74,-1.293806903064251],[122,222,75,-1.2929216586053371],[122,222,76,-1.2905286103487015],[122,222,77,-1.2869343608617783],[122,222,78,-1.282727126032114],[122,222,79,-1.2781523950397968],[122,223,64,-1.2942240312695503],[122,223,65,-1.2940140515565872],[122,223,66,-1.2924106270074844],[122,223,67,-1.2905921824276447],[122,223,68,-1.2899016104638577],[122,223,69,-1.2910602241754532],[122,223,70,-1.2935871481895447],[122,223,71,-1.2964639626443386],[122,223,72,-1.299369465559721],[122,223,73,-1.301160391420126],[122,223,74,-1.301619403064251],[122,223,75,-1.3007341586053371],[122,223,76,-1.2983411103487015],[122,223,77,-1.2947468608617783],[122,223,78,-1.290539626032114],[122,223,79,-1.2859648950397968],[122,224,64,-1.3020365312695503],[122,224,65,-1.3018265515565872],[122,224,66,-1.3002231270074844],[122,224,67,-1.2984046824276447],[122,224,68,-1.2977141104638577],[122,224,69,-1.2988727241754532],[122,224,70,-1.3013996481895447],[122,224,71,-1.3042764626443386],[122,224,72,-1.307181965559721],[122,224,73,-1.308972891420126],[122,224,74,-1.309431903064251],[122,224,75,-1.3085466586053371],[122,224,76,-1.3061536103487015],[122,224,77,-1.3025593608617783],[122,224,78,-1.298352126032114],[122,224,79,-1.2937773950397968],[122,225,64,-1.3098490312695503],[122,225,65,-1.3096390515565872],[122,225,66,-1.3080356270074844],[122,225,67,-1.3062171824276447],[122,225,68,-1.3055266104638577],[122,225,69,-1.3066852241754532],[122,225,70,-1.3092121481895447],[122,225,71,-1.3120889626443386],[122,225,72,-1.314994465559721],[122,225,73,-1.316785391420126],[122,225,74,-1.317244403064251],[122,225,75,-1.3163591586053371],[122,225,76,-1.3139661103487015],[122,225,77,-1.3103718608617783],[122,225,78,-1.306164626032114],[122,225,79,-1.3015898950397968],[122,226,64,-1.3176615312695503],[122,226,65,-1.3174515515565872],[122,226,66,-1.3158481270074844],[122,226,67,-1.3140296824276447],[122,226,68,-1.3133391104638577],[122,226,69,-1.3144977241754532],[122,226,70,-1.3170246481895447],[122,226,71,-1.3199014626443386],[122,226,72,-1.322806965559721],[122,226,73,-1.324597891420126],[122,226,74,-1.325056903064251],[122,226,75,-1.3241716586053371],[122,226,76,-1.3217786103487015],[122,226,77,-1.3181843608617783],[122,226,78,-1.313977126032114],[122,226,79,-1.3094023950397968],[122,227,64,-1.3254740312695503],[122,227,65,-1.3252640515565872],[122,227,66,-1.3236606270074844],[122,227,67,-1.3218421824276447],[122,227,68,-1.3211516104638577],[122,227,69,-1.3223102241754532],[122,227,70,-1.3248371481895447],[122,227,71,-1.3277139626443386],[122,227,72,-1.330619465559721],[122,227,73,-1.332410391420126],[122,227,74,-1.332869403064251],[122,227,75,-1.3319841586053371],[122,227,76,-1.3295911103487015],[122,227,77,-1.3259968608617783],[122,227,78,-1.321789626032114],[122,227,79,-1.3172148950397968],[122,228,64,-1.3332865312695503],[122,228,65,-1.3330765515565872],[122,228,66,-1.3314731270074844],[122,228,67,-1.3296546824276447],[122,228,68,-1.3289641104638577],[122,228,69,-1.3301227241754532],[122,228,70,-1.3326496481895447],[122,228,71,-1.3355264626443386],[122,228,72,-1.338431965559721],[122,228,73,-1.340222891420126],[122,228,74,-1.340681903064251],[122,228,75,-1.3397966586053371],[122,228,76,-1.3374036103487015],[122,228,77,-1.3338093608617783],[122,228,78,-1.329602126032114],[122,228,79,-1.3250273950397968],[122,229,64,-1.3410990312695503],[122,229,65,-1.3408890515565872],[122,229,66,-1.3392856270074844],[122,229,67,-1.3374671824276447],[122,229,68,-1.3367766104638577],[122,229,69,-1.3379352241754532],[122,229,70,-1.3404621481895447],[122,229,71,-1.3433389626443386],[122,229,72,-1.346244465559721],[122,229,73,-1.348035391420126],[122,229,74,-1.348494403064251],[122,229,75,-1.3476091586053371],[122,229,76,-1.3452161103487015],[122,229,77,-1.3416218608617783],[122,229,78,-1.337414626032114],[122,229,79,-1.3328398950397968],[122,230,64,-1.3489115312695503],[122,230,65,-1.3487015515565872],[122,230,66,-1.3470981270074844],[122,230,67,-1.3452796824276447],[122,230,68,-1.3445891104638577],[122,230,69,-1.3457477241754532],[122,230,70,-1.3482746481895447],[122,230,71,-1.3511514626443386],[122,230,72,-1.354056965559721],[122,230,73,-1.355847891420126],[122,230,74,-1.356306903064251],[122,230,75,-1.3554216586053371],[122,230,76,-1.3530286103487015],[122,230,77,-1.3494343608617783],[122,230,78,-1.345227126032114],[122,230,79,-1.3406523950397968],[122,231,64,-1.3567240312695503],[122,231,65,-1.3565140515565872],[122,231,66,-1.3549106270074844],[122,231,67,-1.3530921824276447],[122,231,68,-1.3524016104638577],[122,231,69,-1.3535602241754532],[122,231,70,-1.3560871481895447],[122,231,71,-1.3589639626443386],[122,231,72,-1.361869465559721],[122,231,73,-1.363660391420126],[122,231,74,-1.364119403064251],[122,231,75,-1.3632341586053371],[122,231,76,-1.3608411103487015],[122,231,77,-1.3572468608617783],[122,231,78,-1.353039626032114],[122,231,79,-1.3484648950397968],[122,232,64,-1.3645365312695503],[122,232,65,-1.3643265515565872],[122,232,66,-1.3627231270074844],[122,232,67,-1.3609046824276447],[122,232,68,-1.3602141104638577],[122,232,69,-1.3613727241754532],[122,232,70,-1.3638996481895447],[122,232,71,-1.3667764626443386],[122,232,72,-1.369681965559721],[122,232,73,-1.371472891420126],[122,232,74,-1.371931903064251],[122,232,75,-1.3710466586053371],[122,232,76,-1.3686536103487015],[122,232,77,-1.3650593608617783],[122,232,78,-1.360852126032114],[122,232,79,-1.3562773950397968],[122,233,64,-1.3723490312695503],[122,233,65,-1.3721390515565872],[122,233,66,-1.3705356270074844],[122,233,67,-1.3687171824276447],[122,233,68,-1.3680266104638577],[122,233,69,-1.3691852241754532],[122,233,70,-1.3717121481895447],[122,233,71,-1.3745889626443386],[122,233,72,-1.377494465559721],[122,233,73,-1.379285391420126],[122,233,74,-1.379744403064251],[122,233,75,-1.3788591586053371],[122,233,76,-1.3764661103487015],[122,233,77,-1.3728718608617783],[122,233,78,-1.368664626032114],[122,233,79,-1.3640898950397968],[122,234,64,-1.3801615312695503],[122,234,65,-1.3799515515565872],[122,234,66,-1.3783481270074844],[122,234,67,-1.3765296824276447],[122,234,68,-1.3758391104638577],[122,234,69,-1.3769977241754532],[122,234,70,-1.3795246481895447],[122,234,71,-1.3824014626443386],[122,234,72,-1.385306965559721],[122,234,73,-1.387097891420126],[122,234,74,-1.387556903064251],[122,234,75,-1.3866716586053371],[122,234,76,-1.3842786103487015],[122,234,77,-1.3806843608617783],[122,234,78,-1.376477126032114],[122,234,79,-1.3719023950397968],[122,235,64,-1.3879740312695503],[122,235,65,-1.3877640515565872],[122,235,66,-1.3861606270074844],[122,235,67,-1.3843421824276447],[122,235,68,-1.3836516104638577],[122,235,69,-1.3848102241754532],[122,235,70,-1.3873371481895447],[122,235,71,-1.3902139626443386],[122,235,72,-1.393119465559721],[122,235,73,-1.394910391420126],[122,235,74,-1.395369403064251],[122,235,75,-1.3944841586053371],[122,235,76,-1.3920911103487015],[122,235,77,-1.3884968608617783],[122,235,78,-1.384289626032114],[122,235,79,-1.3797148950397968],[122,236,64,-1.3957865312695503],[122,236,65,-1.3955765515565872],[122,236,66,-1.3939731270074844],[122,236,67,-1.3921546824276447],[122,236,68,-1.3914641104638577],[122,236,69,-1.3926227241754532],[122,236,70,-1.3951496481895447],[122,236,71,-1.3980264626443386],[122,236,72,-1.400931965559721],[122,236,73,-1.402722891420126],[122,236,74,-1.403181903064251],[122,236,75,-1.4022966586053371],[122,236,76,-1.3999036103487015],[122,236,77,-1.3963093608617783],[122,236,78,-1.392102126032114],[122,236,79,-1.3875273950397968],[122,237,64,-1.4035990312695503],[122,237,65,-1.4033890515565872],[122,237,66,-1.4017856270074844],[122,237,67,-1.3999671824276447],[122,237,68,-1.3992766104638577],[122,237,69,-1.4004352241754532],[122,237,70,-1.4029621481895447],[122,237,71,-1.4058389626443386],[122,237,72,-1.408744465559721],[122,237,73,-1.410535391420126],[122,237,74,-1.410994403064251],[122,237,75,-1.4101091586053371],[122,237,76,-1.4077161103487015],[122,237,77,-1.4041218608617783],[122,237,78,-1.399914626032114],[122,237,79,-1.3953398950397968],[122,238,64,-1.4114115312695503],[122,238,65,-1.4112015515565872],[122,238,66,-1.4095981270074844],[122,238,67,-1.4077796824276447],[122,238,68,-1.4070891104638577],[122,238,69,-1.4082477241754532],[122,238,70,-1.4107746481895447],[122,238,71,-1.4136514626443386],[122,238,72,-1.416556965559721],[122,238,73,-1.418347891420126],[122,238,74,-1.418806903064251],[122,238,75,-1.4179216586053371],[122,238,76,-1.4155286103487015],[122,238,77,-1.4119343608617783],[122,238,78,-1.407727126032114],[122,238,79,-1.4031523950397968],[122,239,64,-1.4192240312695503],[122,239,65,-1.4190140515565872],[122,239,66,-1.4174106270074844],[122,239,67,-1.4155921824276447],[122,239,68,-1.4149016104638577],[122,239,69,-1.4160602241754532],[122,239,70,-1.4185871481895447],[122,239,71,-1.4214639626443386],[122,239,72,-1.424369465559721],[122,239,73,-1.426160391420126],[122,239,74,-1.426619403064251],[122,239,75,-1.4257341586053371],[122,239,76,-1.4233411103487015],[122,239,77,-1.4197468608617783],[122,239,78,-1.415539626032114],[122,239,79,-1.4109648950397968],[122,240,64,-1.4270365312695503],[122,240,65,-1.4268265515565872],[122,240,66,-1.4252231270074844],[122,240,67,-1.4234046824276447],[122,240,68,-1.4227141104638577],[122,240,69,-1.4238727241754532],[122,240,70,-1.4263996481895447],[122,240,71,-1.4292764626443386],[122,240,72,-1.432181965559721],[122,240,73,-1.433972891420126],[122,240,74,-1.434431903064251],[122,240,75,-1.4335466586053371],[122,240,76,-1.4311536103487015],[122,240,77,-1.4275593608617783],[122,240,78,-1.423352126032114],[122,240,79,-1.4187773950397968],[122,241,64,-1.4348490312695503],[122,241,65,-1.4346390515565872],[122,241,66,-1.4330356270074844],[122,241,67,-1.4312171824276447],[122,241,68,-1.4305266104638577],[122,241,69,-1.4316852241754532],[122,241,70,-1.4342121481895447],[122,241,71,-1.4370889626443386],[122,241,72,-1.439994465559721],[122,241,73,-1.441785391420126],[122,241,74,-1.442244403064251],[122,241,75,-1.4413591586053371],[122,241,76,-1.4389661103487015],[122,241,77,-1.4353718608617783],[122,241,78,-1.431164626032114],[122,241,79,-1.4265898950397968],[122,242,64,-1.4426615312695503],[122,242,65,-1.4424515515565872],[122,242,66,-1.4408481270074844],[122,242,67,-1.4390296824276447],[122,242,68,-1.4383391104638577],[122,242,69,-1.4394977241754532],[122,242,70,-1.4420246481895447],[122,242,71,-1.4449014626443386],[122,242,72,-1.447806965559721],[122,242,73,-1.449597891420126],[122,242,74,-1.450056903064251],[122,242,75,-1.4491716586053371],[122,242,76,-1.4467786103487015],[122,242,77,-1.4431843608617783],[122,242,78,-1.438977126032114],[122,242,79,-1.4344023950397968],[122,243,64,-1.4504740312695503],[122,243,65,-1.4502640515565872],[122,243,66,-1.4486606270074844],[122,243,67,-1.4468421824276447],[122,243,68,-1.4461516104638577],[122,243,69,-1.4473102241754532],[122,243,70,-1.4498371481895447],[122,243,71,-1.4527139626443386],[122,243,72,-1.455619465559721],[122,243,73,-1.457410391420126],[122,243,74,-1.457869403064251],[122,243,75,-1.4569841586053371],[122,243,76,-1.4545911103487015],[122,243,77,-1.4509968608617783],[122,243,78,-1.446789626032114],[122,243,79,-1.4422148950397968],[122,244,64,-1.4582865312695503],[122,244,65,-1.4580765515565872],[122,244,66,-1.4564731270074844],[122,244,67,-1.4546546824276447],[122,244,68,-1.4539641104638577],[122,244,69,-1.4551227241754532],[122,244,70,-1.4576496481895447],[122,244,71,-1.4605264626443386],[122,244,72,-1.463431965559721],[122,244,73,-1.465222891420126],[122,244,74,-1.465681903064251],[122,244,75,-1.4647966586053371],[122,244,76,-1.4624036103487015],[122,244,77,-1.4588093608617783],[122,244,78,-1.454602126032114],[122,244,79,-1.4500273950397968],[122,245,64,-1.4660990312695503],[122,245,65,-1.4658890515565872],[122,245,66,-1.4642856270074844],[122,245,67,-1.4624671824276447],[122,245,68,-1.4617766104638577],[122,245,69,-1.4629352241754532],[122,245,70,-1.4654621481895447],[122,245,71,-1.4683389626443386],[122,245,72,-1.471244465559721],[122,245,73,-1.473035391420126],[122,245,74,-1.473494403064251],[122,245,75,-1.4726091586053371],[122,245,76,-1.4702161103487015],[122,245,77,-1.4666218608617783],[122,245,78,-1.462414626032114],[122,245,79,-1.4578398950397968],[122,246,64,-1.4739115312695503],[122,246,65,-1.4737015515565872],[122,246,66,-1.4720981270074844],[122,246,67,-1.4702796824276447],[122,246,68,-1.4695891104638577],[122,246,69,-1.4707477241754532],[122,246,70,-1.4732746481895447],[122,246,71,-1.4761514626443386],[122,246,72,-1.479056965559721],[122,246,73,-1.480847891420126],[122,246,74,-1.481306903064251],[122,246,75,-1.4804216586053371],[122,246,76,-1.4780286103487015],[122,246,77,-1.4744343608617783],[122,246,78,-1.470227126032114],[122,246,79,-1.4656523950397968],[122,247,64,-1.4817240312695503],[122,247,65,-1.4815140515565872],[122,247,66,-1.4799106270074844],[122,247,67,-1.4780921824276447],[122,247,68,-1.4774016104638577],[122,247,69,-1.4785602241754532],[122,247,70,-1.4810871481895447],[122,247,71,-1.4839639626443386],[122,247,72,-1.486869465559721],[122,247,73,-1.488660391420126],[122,247,74,-1.489119403064251],[122,247,75,-1.4882341586053371],[122,247,76,-1.4858411103487015],[122,247,77,-1.4822468608617783],[122,247,78,-1.478039626032114],[122,247,79,-1.4734648950397968],[122,248,64,-1.4895365312695503],[122,248,65,-1.4893265515565872],[122,248,66,-1.4877231270074844],[122,248,67,-1.4859046824276447],[122,248,68,-1.4852141104638577],[122,248,69,-1.4863727241754532],[122,248,70,-1.4888996481895447],[122,248,71,-1.4917764626443386],[122,248,72,-1.494681965559721],[122,248,73,-1.496472891420126],[122,248,74,-1.496931903064251],[122,248,75,-1.4960466586053371],[122,248,76,-1.4936536103487015],[122,248,77,-1.4900593608617783],[122,248,78,-1.485852126032114],[122,248,79,-1.4812773950397968],[122,249,64,-1.4973490312695503],[122,249,65,-1.4971390515565872],[122,249,66,-1.4955356270074844],[122,249,67,-1.4937171824276447],[122,249,68,-1.4930266104638577],[122,249,69,-1.4941852241754532],[122,249,70,-1.4967121481895447],[122,249,71,-1.4995889626443386],[122,249,72,-1.502494465559721],[122,249,73,-1.504285391420126],[122,249,74,-1.504744403064251],[122,249,75,-1.5038591586053371],[122,249,76,-1.5014661103487015],[122,249,77,-1.4978718608617783],[122,249,78,-1.493664626032114],[122,249,79,-1.4890898950397968],[122,250,64,-1.5051615312695503],[122,250,65,-1.5049515515565872],[122,250,66,-1.5033481270074844],[122,250,67,-1.5015296824276447],[122,250,68,-1.5008391104638577],[122,250,69,-1.5019977241754532],[122,250,70,-1.5045246481895447],[122,250,71,-1.5074014626443386],[122,250,72,-1.510306965559721],[122,250,73,-1.512097891420126],[122,250,74,-1.512556903064251],[122,250,75,-1.5116716586053371],[122,250,76,-1.5092786103487015],[122,250,77,-1.5056843608617783],[122,250,78,-1.501477126032114],[122,250,79,-1.4969023950397968],[122,251,64,-1.5129740312695503],[122,251,65,-1.5127640515565872],[122,251,66,-1.5111606270074844],[122,251,67,-1.5093421824276447],[122,251,68,-1.5086516104638577],[122,251,69,-1.5098102241754532],[122,251,70,-1.5123371481895447],[122,251,71,-1.5152139626443386],[122,251,72,-1.518119465559721],[122,251,73,-1.519910391420126],[122,251,74,-1.520369403064251],[122,251,75,-1.5194841586053371],[122,251,76,-1.5170911103487015],[122,251,77,-1.5134968608617783],[122,251,78,-1.509289626032114],[122,251,79,-1.5047148950397968],[122,252,64,-1.5207865312695503],[122,252,65,-1.5205765515565872],[122,252,66,-1.5189731270074844],[122,252,67,-1.5171546824276447],[122,252,68,-1.5164641104638577],[122,252,69,-1.5176227241754532],[122,252,70,-1.5201496481895447],[122,252,71,-1.5230264626443386],[122,252,72,-1.525931965559721],[122,252,73,-1.527722891420126],[122,252,74,-1.528181903064251],[122,252,75,-1.5272966586053371],[122,252,76,-1.5249036103487015],[122,252,77,-1.5213093608617783],[122,252,78,-1.517102126032114],[122,252,79,-1.5125273950397968],[122,253,64,-1.5285990312695503],[122,253,65,-1.5283890515565872],[122,253,66,-1.5267856270074844],[122,253,67,-1.5249671824276447],[122,253,68,-1.5242766104638577],[122,253,69,-1.5254352241754532],[122,253,70,-1.5279621481895447],[122,253,71,-1.5308389626443386],[122,253,72,-1.533744465559721],[122,253,73,-1.535535391420126],[122,253,74,-1.535994403064251],[122,253,75,-1.5351091586053371],[122,253,76,-1.5327161103487015],[122,253,77,-1.5291218608617783],[122,253,78,-1.524914626032114],[122,253,79,-1.5203398950397968],[122,254,64,-1.5364115312695503],[122,254,65,-1.5362015515565872],[122,254,66,-1.5345981270074844],[122,254,67,-1.5327796824276447],[122,254,68,-1.5320891104638577],[122,254,69,-1.5332477241754532],[122,254,70,-1.5357746481895447],[122,254,71,-1.5386514626443386],[122,254,72,-1.541556965559721],[122,254,73,-1.543347891420126],[122,254,74,-1.543806903064251],[122,254,75,-1.5429216586053371],[122,254,76,-1.5405286103487015],[122,254,77,-1.5369343608617783],[122,254,78,-1.532727126032114],[122,254,79,-1.5281523950397968],[122,255,64,-1.5442240312695503],[122,255,65,-1.5440140515565872],[122,255,66,-1.5424106270074844],[122,255,67,-1.5405921824276447],[122,255,68,-1.5399016104638577],[122,255,69,-1.5410602241754532],[122,255,70,-1.5435871481895447],[122,255,71,-1.5464639626443386],[122,255,72,-1.549369465559721],[122,255,73,-1.551160391420126],[122,255,74,-1.551619403064251],[122,255,75,-1.5507341586053371],[122,255,76,-1.5483411103487015],[122,255,77,-1.5447468608617783],[122,255,78,-1.540539626032114],[122,255,79,-1.5359648950397968],[122,256,64,-1.5520365312695503],[122,256,65,-1.5518265515565872],[122,256,66,-1.5502231270074844],[122,256,67,-1.5484046824276447],[122,256,68,-1.5477141104638577],[122,256,69,-1.5488727241754532],[122,256,70,-1.5513996481895447],[122,256,71,-1.5542764626443386],[122,256,72,-1.557181965559721],[122,256,73,-1.558972891420126],[122,256,74,-1.559431903064251],[122,256,75,-1.5585466586053371],[122,256,76,-1.5561536103487015],[122,256,77,-1.5525593608617783],[122,256,78,-1.548352126032114],[122,256,79,-1.5437773950397968],[122,257,64,-1.5598490312695503],[122,257,65,-1.5596390515565872],[122,257,66,-1.5580356270074844],[122,257,67,-1.5562171824276447],[122,257,68,-1.5555266104638577],[122,257,69,-1.5566852241754532],[122,257,70,-1.5592121481895447],[122,257,71,-1.5620889626443386],[122,257,72,-1.564994465559721],[122,257,73,-1.566785391420126],[122,257,74,-1.567244403064251],[122,257,75,-1.5663591586053371],[122,257,76,-1.5639661103487015],[122,257,77,-1.5603718608617783],[122,257,78,-1.556164626032114],[122,257,79,-1.5515898950397968],[122,258,64,-1.5676615312695503],[122,258,65,-1.5674515515565872],[122,258,66,-1.5658481270074844],[122,258,67,-1.5640296824276447],[122,258,68,-1.5633391104638577],[122,258,69,-1.5644977241754532],[122,258,70,-1.5670246481895447],[122,258,71,-1.5699014626443386],[122,258,72,-1.572806965559721],[122,258,73,-1.574597891420126],[122,258,74,-1.575056903064251],[122,258,75,-1.5741716586053371],[122,258,76,-1.5717786103487015],[122,258,77,-1.5681843608617783],[122,258,78,-1.563977126032114],[122,258,79,-1.5594023950397968],[122,259,64,-1.5754740312695503],[122,259,65,-1.5752640515565872],[122,259,66,-1.5736606270074844],[122,259,67,-1.5718421824276447],[122,259,68,-1.5711516104638577],[122,259,69,-1.5723102241754532],[122,259,70,-1.5748371481895447],[122,259,71,-1.5777139626443386],[122,259,72,-1.580619465559721],[122,259,73,-1.582410391420126],[122,259,74,-1.582869403064251],[122,259,75,-1.5819841586053371],[122,259,76,-1.5795911103487015],[122,259,77,-1.5759968608617783],[122,259,78,-1.571789626032114],[122,259,79,-1.5672148950397968],[122,260,64,-1.5832865312695503],[122,260,65,-1.5830765515565872],[122,260,66,-1.5814731270074844],[122,260,67,-1.5796546824276447],[122,260,68,-1.5789641104638577],[122,260,69,-1.5801227241754532],[122,260,70,-1.5826496481895447],[122,260,71,-1.5855264626443386],[122,260,72,-1.588431965559721],[122,260,73,-1.590222891420126],[122,260,74,-1.590681903064251],[122,260,75,-1.5897966586053371],[122,260,76,-1.5874036103487015],[122,260,77,-1.5838093608617783],[122,260,78,-1.579602126032114],[122,260,79,-1.5750273950397968],[122,261,64,-1.5910990312695503],[122,261,65,-1.5908890515565872],[122,261,66,-1.5892856270074844],[122,261,67,-1.5874671824276447],[122,261,68,-1.5867766104638577],[122,261,69,-1.5879352241754532],[122,261,70,-1.5904621481895447],[122,261,71,-1.5933389626443386],[122,261,72,-1.596244465559721],[122,261,73,-1.598035391420126],[122,261,74,-1.598494403064251],[122,261,75,-1.5976091586053371],[122,261,76,-1.5952161103487015],[122,261,77,-1.5916218608617783],[122,261,78,-1.587414626032114],[122,261,79,-1.5828398950397968],[122,262,64,-1.5989115312695503],[122,262,65,-1.5987015515565872],[122,262,66,-1.5970981270074844],[122,262,67,-1.5952796824276447],[122,262,68,-1.5945891104638577],[122,262,69,-1.5957477241754532],[122,262,70,-1.5982746481895447],[122,262,71,-1.6011514626443386],[122,262,72,-1.604056965559721],[122,262,73,-1.605847891420126],[122,262,74,-1.606306903064251],[122,262,75,-1.6054216586053371],[122,262,76,-1.6030286103487015],[122,262,77,-1.5994343608617783],[122,262,78,-1.595227126032114],[122,262,79,-1.5906523950397968],[122,263,64,-1.6067240312695503],[122,263,65,-1.6065140515565872],[122,263,66,-1.6049106270074844],[122,263,67,-1.6030921824276447],[122,263,68,-1.6024016104638577],[122,263,69,-1.6035602241754532],[122,263,70,-1.6060871481895447],[122,263,71,-1.6089639626443386],[122,263,72,-1.611869465559721],[122,263,73,-1.613660391420126],[122,263,74,-1.614119403064251],[122,263,75,-1.6132341586053371],[122,263,76,-1.6108411103487015],[122,263,77,-1.6072468608617783],[122,263,78,-1.603039626032114],[122,263,79,-1.5984648950397968],[122,264,64,-1.6145365312695503],[122,264,65,-1.6143265515565872],[122,264,66,-1.6127231270074844],[122,264,67,-1.6109046824276447],[122,264,68,-1.6102141104638577],[122,264,69,-1.6113727241754532],[122,264,70,-1.6138996481895447],[122,264,71,-1.6167764626443386],[122,264,72,-1.619681965559721],[122,264,73,-1.621472891420126],[122,264,74,-1.621931903064251],[122,264,75,-1.6210466586053371],[122,264,76,-1.6186536103487015],[122,264,77,-1.6150593608617783],[122,264,78,-1.610852126032114],[122,264,79,-1.6062773950397968],[122,265,64,-1.6223490312695503],[122,265,65,-1.6221390515565872],[122,265,66,-1.6205356270074844],[122,265,67,-1.6187171824276447],[122,265,68,-1.6180266104638577],[122,265,69,-1.6191852241754532],[122,265,70,-1.6217121481895447],[122,265,71,-1.6245889626443386],[122,265,72,-1.627494465559721],[122,265,73,-1.629285391420126],[122,265,74,-1.629744403064251],[122,265,75,-1.6288591586053371],[122,265,76,-1.6264661103487015],[122,265,77,-1.6228718608617783],[122,265,78,-1.618664626032114],[122,265,79,-1.6140898950397968],[122,266,64,-1.6301615312695503],[122,266,65,-1.6299515515565872],[122,266,66,-1.6283481270074844],[122,266,67,-1.6265296824276447],[122,266,68,-1.6258391104638577],[122,266,69,-1.6269977241754532],[122,266,70,-1.6295246481895447],[122,266,71,-1.6324014626443386],[122,266,72,-1.635306965559721],[122,266,73,-1.637097891420126],[122,266,74,-1.637556903064251],[122,266,75,-1.6366716586053371],[122,266,76,-1.6342786103487015],[122,266,77,-1.6306843608617783],[122,266,78,-1.626477126032114],[122,266,79,-1.6219023950397968],[122,267,64,-1.6379740312695503],[122,267,65,-1.6377640515565872],[122,267,66,-1.6361606270074844],[122,267,67,-1.6343421824276447],[122,267,68,-1.6336516104638577],[122,267,69,-1.6348102241754532],[122,267,70,-1.6373371481895447],[122,267,71,-1.6402139626443386],[122,267,72,-1.643119465559721],[122,267,73,-1.644910391420126],[122,267,74,-1.645369403064251],[122,267,75,-1.6444841586053371],[122,267,76,-1.6420911103487015],[122,267,77,-1.6384968608617783],[122,267,78,-1.634289626032114],[122,267,79,-1.6297148950397968],[122,268,64,-1.6457865312695503],[122,268,65,-1.6455765515565872],[122,268,66,-1.6439731270074844],[122,268,67,-1.6421546824276447],[122,268,68,-1.6414641104638577],[122,268,69,-1.6426227241754532],[122,268,70,-1.6451496481895447],[122,268,71,-1.6480264626443386],[122,268,72,-1.650931965559721],[122,268,73,-1.652722891420126],[122,268,74,-1.653181903064251],[122,268,75,-1.6522966586053371],[122,268,76,-1.6499036103487015],[122,268,77,-1.6463093608617783],[122,268,78,-1.642102126032114],[122,268,79,-1.6375273950397968],[122,269,64,-1.6535990312695503],[122,269,65,-1.6533890515565872],[122,269,66,-1.6517856270074844],[122,269,67,-1.6499671824276447],[122,269,68,-1.6492766104638577],[122,269,69,-1.6504352241754532],[122,269,70,-1.6529621481895447],[122,269,71,-1.6558389626443386],[122,269,72,-1.658744465559721],[122,269,73,-1.660535391420126],[122,269,74,-1.660994403064251],[122,269,75,-1.6601091586053371],[122,269,76,-1.6577161103487015],[122,269,77,-1.6541218608617783],[122,269,78,-1.649914626032114],[122,269,79,-1.6453398950397968],[122,270,64,-1.6614115312695503],[122,270,65,-1.6612015515565872],[122,270,66,-1.6595981270074844],[122,270,67,-1.6577796824276447],[122,270,68,-1.6570891104638577],[122,270,69,-1.6582477241754532],[122,270,70,-1.6607746481895447],[122,270,71,-1.6636514626443386],[122,270,72,-1.666556965559721],[122,270,73,-1.668347891420126],[122,270,74,-1.668806903064251],[122,270,75,-1.6679216586053371],[122,270,76,-1.6655286103487015],[122,270,77,-1.6619343608617783],[122,270,78,-1.657727126032114],[122,270,79,-1.6531523950397968],[122,271,64,-1.6692240312695503],[122,271,65,-1.6690140515565872],[122,271,66,-1.6674106270074844],[122,271,67,-1.6655921824276447],[122,271,68,-1.6649016104638577],[122,271,69,-1.6660602241754532],[122,271,70,-1.6685871481895447],[122,271,71,-1.6714639626443386],[122,271,72,-1.674369465559721],[122,271,73,-1.676160391420126],[122,271,74,-1.676619403064251],[122,271,75,-1.6757341586053371],[122,271,76,-1.6733411103487015],[122,271,77,-1.6697468608617783],[122,271,78,-1.665539626032114],[122,271,79,-1.6609648950397968],[122,272,64,-1.6770365312695503],[122,272,65,-1.6768265515565872],[122,272,66,-1.6752231270074844],[122,272,67,-1.6734046824276447],[122,272,68,-1.6727141104638577],[122,272,69,-1.6738727241754532],[122,272,70,-1.6763996481895447],[122,272,71,-1.6792764626443386],[122,272,72,-1.682181965559721],[122,272,73,-1.683972891420126],[122,272,74,-1.684431903064251],[122,272,75,-1.6835466586053371],[122,272,76,-1.6811536103487015],[122,272,77,-1.6775593608617783],[122,272,78,-1.673352126032114],[122,272,79,-1.6687773950397968],[122,273,64,-1.6848490312695503],[122,273,65,-1.6846390515565872],[122,273,66,-1.6830356270074844],[122,273,67,-1.6812171824276447],[122,273,68,-1.6805266104638577],[122,273,69,-1.6816852241754532],[122,273,70,-1.6842121481895447],[122,273,71,-1.6870889626443386],[122,273,72,-1.689994465559721],[122,273,73,-1.691785391420126],[122,273,74,-1.692244403064251],[122,273,75,-1.6913591586053371],[122,273,76,-1.6889661103487015],[122,273,77,-1.6853718608617783],[122,273,78,-1.681164626032114],[122,273,79,-1.6765898950397968],[122,274,64,-1.6926615312695503],[122,274,65,-1.6924515515565872],[122,274,66,-1.6908481270074844],[122,274,67,-1.6890296824276447],[122,274,68,-1.6883391104638577],[122,274,69,-1.6894977241754532],[122,274,70,-1.6920246481895447],[122,274,71,-1.6949014626443386],[122,274,72,-1.697806965559721],[122,274,73,-1.699597891420126],[122,274,74,-1.700056903064251],[122,274,75,-1.6991716586053371],[122,274,76,-1.6967786103487015],[122,274,77,-1.6931843608617783],[122,274,78,-1.688977126032114],[122,274,79,-1.6844023950397968],[122,275,64,-1.7004740312695503],[122,275,65,-1.7002640515565872],[122,275,66,-1.6986606270074844],[122,275,67,-1.6968421824276447],[122,275,68,-1.6961516104638577],[122,275,69,-1.6973102241754532],[122,275,70,-1.6998371481895447],[122,275,71,-1.7027139626443386],[122,275,72,-1.705619465559721],[122,275,73,-1.707410391420126],[122,275,74,-1.707869403064251],[122,275,75,-1.7069841586053371],[122,275,76,-1.7045911103487015],[122,275,77,-1.7009968608617783],[122,275,78,-1.696789626032114],[122,275,79,-1.6922148950397968],[122,276,64,-1.7082865312695503],[122,276,65,-1.7080765515565872],[122,276,66,-1.7064731270074844],[122,276,67,-1.7046546824276447],[122,276,68,-1.7039641104638577],[122,276,69,-1.7051227241754532],[122,276,70,-1.7076496481895447],[122,276,71,-1.7105264626443386],[122,276,72,-1.713431965559721],[122,276,73,-1.715222891420126],[122,276,74,-1.715681903064251],[122,276,75,-1.7147966586053371],[122,276,76,-1.7124036103487015],[122,276,77,-1.7088093608617783],[122,276,78,-1.704602126032114],[122,276,79,-1.7000273950397968],[122,277,64,-1.7160990312695503],[122,277,65,-1.7158890515565872],[122,277,66,-1.7142856270074844],[122,277,67,-1.7124671824276447],[122,277,68,-1.7117766104638577],[122,277,69,-1.7129352241754532],[122,277,70,-1.7154621481895447],[122,277,71,-1.7183389626443386],[122,277,72,-1.721244465559721],[122,277,73,-1.723035391420126],[122,277,74,-1.723494403064251],[122,277,75,-1.7226091586053371],[122,277,76,-1.7202161103487015],[122,277,77,-1.7166218608617783],[122,277,78,-1.712414626032114],[122,277,79,-1.7078398950397968],[122,278,64,-1.7239115312695503],[122,278,65,-1.7237015515565872],[122,278,66,-1.7220981270074844],[122,278,67,-1.7202796824276447],[122,278,68,-1.7195891104638577],[122,278,69,-1.7207477241754532],[122,278,70,-1.7232746481895447],[122,278,71,-1.7261514626443386],[122,278,72,-1.729056965559721],[122,278,73,-1.730847891420126],[122,278,74,-1.731306903064251],[122,278,75,-1.7304216586053371],[122,278,76,-1.7280286103487015],[122,278,77,-1.7244343608617783],[122,278,78,-1.720227126032114],[122,278,79,-1.7156523950397968],[122,279,64,-1.7317240312695503],[122,279,65,-1.7315140515565872],[122,279,66,-1.7299106270074844],[122,279,67,-1.7280921824276447],[122,279,68,-1.7274016104638577],[122,279,69,-1.7285602241754532],[122,279,70,-1.7310871481895447],[122,279,71,-1.7339639626443386],[122,279,72,-1.736869465559721],[122,279,73,-1.738660391420126],[122,279,74,-1.739119403064251],[122,279,75,-1.7382341586053371],[122,279,76,-1.7358411103487015],[122,279,77,-1.7322468608617783],[122,279,78,-1.728039626032114],[122,279,79,-1.7234648950397968],[122,280,64,-1.7395365312695503],[122,280,65,-1.7393265515565872],[122,280,66,-1.7377231270074844],[122,280,67,-1.7359046824276447],[122,280,68,-1.7352141104638577],[122,280,69,-1.7363727241754532],[122,280,70,-1.7388996481895447],[122,280,71,-1.7417764626443386],[122,280,72,-1.744681965559721],[122,280,73,-1.746472891420126],[122,280,74,-1.746931903064251],[122,280,75,-1.7460466586053371],[122,280,76,-1.7436536103487015],[122,280,77,-1.7400593608617783],[122,280,78,-1.735852126032114],[122,280,79,-1.7312773950397968],[122,281,64,-1.7473490312695503],[122,281,65,-1.7471390515565872],[122,281,66,-1.7455356270074844],[122,281,67,-1.7437171824276447],[122,281,68,-1.7430266104638577],[122,281,69,-1.7441852241754532],[122,281,70,-1.7467121481895447],[122,281,71,-1.7495889626443386],[122,281,72,-1.752494465559721],[122,281,73,-1.754285391420126],[122,281,74,-1.754744403064251],[122,281,75,-1.7538591586053371],[122,281,76,-1.7514661103487015],[122,281,77,-1.7478718608617783],[122,281,78,-1.743664626032114],[122,281,79,-1.7390898950397968],[122,282,64,-1.7551615312695503],[122,282,65,-1.7549515515565872],[122,282,66,-1.7533481270074844],[122,282,67,-1.7515296824276447],[122,282,68,-1.7508391104638577],[122,282,69,-1.7519977241754532],[122,282,70,-1.7545246481895447],[122,282,71,-1.7574014626443386],[122,282,72,-1.760306965559721],[122,282,73,-1.762097891420126],[122,282,74,-1.762556903064251],[122,282,75,-1.7616716586053371],[122,282,76,-1.7592786103487015],[122,282,77,-1.7556843608617783],[122,282,78,-1.751477126032114],[122,282,79,-1.7469023950397968],[122,283,64,-1.7629740312695503],[122,283,65,-1.7627640515565872],[122,283,66,-1.7611606270074844],[122,283,67,-1.7593421824276447],[122,283,68,-1.7586516104638577],[122,283,69,-1.7598102241754532],[122,283,70,-1.7623371481895447],[122,283,71,-1.7652139626443386],[122,283,72,-1.768119465559721],[122,283,73,-1.769910391420126],[122,283,74,-1.770369403064251],[122,283,75,-1.7694841586053371],[122,283,76,-1.7670911103487015],[122,283,77,-1.7634968608617783],[122,283,78,-1.759289626032114],[122,283,79,-1.7547148950397968],[122,284,64,-1.7707865312695503],[122,284,65,-1.7705765515565872],[122,284,66,-1.7689731270074844],[122,284,67,-1.7671546824276447],[122,284,68,-1.7664641104638577],[122,284,69,-1.7676227241754532],[122,284,70,-1.7701496481895447],[122,284,71,-1.7730264626443386],[122,284,72,-1.775931965559721],[122,284,73,-1.777722891420126],[122,284,74,-1.778181903064251],[122,284,75,-1.7772966586053371],[122,284,76,-1.7749036103487015],[122,284,77,-1.7713093608617783],[122,284,78,-1.767102126032114],[122,284,79,-1.7625273950397968],[122,285,64,-1.7785990312695503],[122,285,65,-1.7783890515565872],[122,285,66,-1.7767856270074844],[122,285,67,-1.7749671824276447],[122,285,68,-1.7742766104638577],[122,285,69,-1.7754352241754532],[122,285,70,-1.7779621481895447],[122,285,71,-1.7808389626443386],[122,285,72,-1.783744465559721],[122,285,73,-1.785535391420126],[122,285,74,-1.785994403064251],[122,285,75,-1.7851091586053371],[122,285,76,-1.7827161103487015],[122,285,77,-1.7791218608617783],[122,285,78,-1.774914626032114],[122,285,79,-1.7703398950397968],[122,286,64,-1.7864115312695503],[122,286,65,-1.7862015515565872],[122,286,66,-1.7845981270074844],[122,286,67,-1.7827796824276447],[122,286,68,-1.7820891104638577],[122,286,69,-1.7832477241754532],[122,286,70,-1.7857746481895447],[122,286,71,-1.7886514626443386],[122,286,72,-1.791556965559721],[122,286,73,-1.793347891420126],[122,286,74,-1.793806903064251],[122,286,75,-1.7929216586053371],[122,286,76,-1.7905286103487015],[122,286,77,-1.7869343608617783],[122,286,78,-1.782727126032114],[122,286,79,-1.7781523950397968],[122,287,64,-1.7942240312695503],[122,287,65,-1.7940140515565872],[122,287,66,-1.7924106270074844],[122,287,67,-1.7905921824276447],[122,287,68,-1.7899016104638577],[122,287,69,-1.7910602241754532],[122,287,70,-1.7935871481895447],[122,287,71,-1.7964639626443386],[122,287,72,-1.799369465559721],[122,287,73,-1.801160391420126],[122,287,74,-1.801619403064251],[122,287,75,-1.8007341586053371],[122,287,76,-1.7983411103487015],[122,287,77,-1.7947468608617783],[122,287,78,-1.790539626032114],[122,287,79,-1.7859648950397968],[122,288,64,-1.8020365312695503],[122,288,65,-1.8018265515565872],[122,288,66,-1.8002231270074844],[122,288,67,-1.7984046824276447],[122,288,68,-1.7977141104638577],[122,288,69,-1.7988727241754532],[122,288,70,-1.8013996481895447],[122,288,71,-1.8042764626443386],[122,288,72,-1.807181965559721],[122,288,73,-1.808972891420126],[122,288,74,-1.809431903064251],[122,288,75,-1.8085466586053371],[122,288,76,-1.8061536103487015],[122,288,77,-1.8025593608617783],[122,288,78,-1.798352126032114],[122,288,79,-1.7937773950397968],[122,289,64,-1.8098490312695503],[122,289,65,-1.8096390515565872],[122,289,66,-1.8080356270074844],[122,289,67,-1.8062171824276447],[122,289,68,-1.8055266104638577],[122,289,69,-1.8066852241754532],[122,289,70,-1.8092121481895447],[122,289,71,-1.8120889626443386],[122,289,72,-1.814994465559721],[122,289,73,-1.816785391420126],[122,289,74,-1.817244403064251],[122,289,75,-1.8163591586053371],[122,289,76,-1.8139661103487015],[122,289,77,-1.8103718608617783],[122,289,78,-1.806164626032114],[122,289,79,-1.8015898950397968],[122,290,64,-1.8176615312695503],[122,290,65,-1.8174515515565872],[122,290,66,-1.8158481270074844],[122,290,67,-1.8140296824276447],[122,290,68,-1.8133391104638577],[122,290,69,-1.8144977241754532],[122,290,70,-1.8170246481895447],[122,290,71,-1.8199014626443386],[122,290,72,-1.822806965559721],[122,290,73,-1.824597891420126],[122,290,74,-1.825056903064251],[122,290,75,-1.8241716586053371],[122,290,76,-1.8217786103487015],[122,290,77,-1.8181843608617783],[122,290,78,-1.813977126032114],[122,290,79,-1.8094023950397968],[122,291,64,-1.8254740312695503],[122,291,65,-1.8252640515565872],[122,291,66,-1.8236606270074844],[122,291,67,-1.8218421824276447],[122,291,68,-1.8211516104638577],[122,291,69,-1.8223102241754532],[122,291,70,-1.8248371481895447],[122,291,71,-1.8277139626443386],[122,291,72,-1.830619465559721],[122,291,73,-1.832410391420126],[122,291,74,-1.832869403064251],[122,291,75,-1.8319841586053371],[122,291,76,-1.8295911103487015],[122,291,77,-1.8259968608617783],[122,291,78,-1.821789626032114],[122,291,79,-1.8172148950397968],[122,292,64,-1.8332865312695503],[122,292,65,-1.8330765515565872],[122,292,66,-1.8314731270074844],[122,292,67,-1.8296546824276447],[122,292,68,-1.8289641104638577],[122,292,69,-1.8301227241754532],[122,292,70,-1.8326496481895447],[122,292,71,-1.8355264626443386],[122,292,72,-1.838431965559721],[122,292,73,-1.840222891420126],[122,292,74,-1.840681903064251],[122,292,75,-1.8397966586053371],[122,292,76,-1.8374036103487015],[122,292,77,-1.8338093608617783],[122,292,78,-1.829602126032114],[122,292,79,-1.8250273950397968],[122,293,64,-1.8410990312695503],[122,293,65,-1.8408890515565872],[122,293,66,-1.8392856270074844],[122,293,67,-1.8374671824276447],[122,293,68,-1.8367766104638577],[122,293,69,-1.8379352241754532],[122,293,70,-1.8404621481895447],[122,293,71,-1.8433389626443386],[122,293,72,-1.846244465559721],[122,293,73,-1.848035391420126],[122,293,74,-1.848494403064251],[122,293,75,-1.8476091586053371],[122,293,76,-1.8452161103487015],[122,293,77,-1.8416218608617783],[122,293,78,-1.837414626032114],[122,293,79,-1.8328398950397968],[122,294,64,-1.8489115312695503],[122,294,65,-1.8487015515565872],[122,294,66,-1.8470981270074844],[122,294,67,-1.8452796824276447],[122,294,68,-1.8445891104638577],[122,294,69,-1.8457477241754532],[122,294,70,-1.8482746481895447],[122,294,71,-1.8511514626443386],[122,294,72,-1.854056965559721],[122,294,73,-1.855847891420126],[122,294,74,-1.856306903064251],[122,294,75,-1.8554216586053371],[122,294,76,-1.8530286103487015],[122,294,77,-1.8494343608617783],[122,294,78,-1.845227126032114],[122,294,79,-1.8406523950397968],[122,295,64,-1.8567240312695503],[122,295,65,-1.8565140515565872],[122,295,66,-1.8549106270074844],[122,295,67,-1.8530921824276447],[122,295,68,-1.8524016104638577],[122,295,69,-1.8535602241754532],[122,295,70,-1.8560871481895447],[122,295,71,-1.8589639626443386],[122,295,72,-1.861869465559721],[122,295,73,-1.863660391420126],[122,295,74,-1.864119403064251],[122,295,75,-1.8632341586053371],[122,295,76,-1.8608411103487015],[122,295,77,-1.8572468608617783],[122,295,78,-1.853039626032114],[122,295,79,-1.8484648950397968],[122,296,64,-1.8645365312695503],[122,296,65,-1.8643265515565872],[122,296,66,-1.8627231270074844],[122,296,67,-1.8609046824276447],[122,296,68,-1.8602141104638577],[122,296,69,-1.8613727241754532],[122,296,70,-1.8638996481895447],[122,296,71,-1.8667764626443386],[122,296,72,-1.869681965559721],[122,296,73,-1.871472891420126],[122,296,74,-1.871931903064251],[122,296,75,-1.8710466586053371],[122,296,76,-1.8686536103487015],[122,296,77,-1.8650593608617783],[122,296,78,-1.860852126032114],[122,296,79,-1.8562773950397968],[122,297,64,-1.8723490312695503],[122,297,65,-1.8721390515565872],[122,297,66,-1.8705356270074844],[122,297,67,-1.8687171824276447],[122,297,68,-1.8680266104638577],[122,297,69,-1.8691852241754532],[122,297,70,-1.8717121481895447],[122,297,71,-1.8745889626443386],[122,297,72,-1.877494465559721],[122,297,73,-1.879285391420126],[122,297,74,-1.879744403064251],[122,297,75,-1.8788591586053371],[122,297,76,-1.8764661103487015],[122,297,77,-1.8728718608617783],[122,297,78,-1.868664626032114],[122,297,79,-1.8640898950397968],[122,298,64,-1.8801615312695503],[122,298,65,-1.8799515515565872],[122,298,66,-1.8783481270074844],[122,298,67,-1.8765296824276447],[122,298,68,-1.8758391104638577],[122,298,69,-1.8769977241754532],[122,298,70,-1.8795246481895447],[122,298,71,-1.8824014626443386],[122,298,72,-1.885306965559721],[122,298,73,-1.887097891420126],[122,298,74,-1.887556903064251],[122,298,75,-1.8866716586053371],[122,298,76,-1.8842786103487015],[122,298,77,-1.8806843608617783],[122,298,78,-1.876477126032114],[122,298,79,-1.8719023950397968],[122,299,64,-1.8879740312695503],[122,299,65,-1.8877640515565872],[122,299,66,-1.8861606270074844],[122,299,67,-1.8843421824276447],[122,299,68,-1.8836516104638577],[122,299,69,-1.8848102241754532],[122,299,70,-1.8873371481895447],[122,299,71,-1.8902139626443386],[122,299,72,-1.893119465559721],[122,299,73,-1.894910391420126],[122,299,74,-1.895369403064251],[122,299,75,-1.8944841586053371],[122,299,76,-1.8920911103487015],[122,299,77,-1.8884968608617783],[122,299,78,-1.884289626032114],[122,299,79,-1.8797148950397968],[122,300,64,-1.8957865312695503],[122,300,65,-1.8955765515565872],[122,300,66,-1.8939731270074844],[122,300,67,-1.8921546824276447],[122,300,68,-1.8914641104638577],[122,300,69,-1.8926227241754532],[122,300,70,-1.8951496481895447],[122,300,71,-1.8980264626443386],[122,300,72,-1.900931965559721],[122,300,73,-1.902722891420126],[122,300,74,-1.903181903064251],[122,300,75,-1.9022966586053371],[122,300,76,-1.8999036103487015],[122,300,77,-1.8963093608617783],[122,300,78,-1.892102126032114],[122,300,79,-1.8875273950397968],[122,301,64,-1.9035990312695503],[122,301,65,-1.9033890515565872],[122,301,66,-1.9017856270074844],[122,301,67,-1.8999671824276447],[122,301,68,-1.8992766104638577],[122,301,69,-1.9004352241754532],[122,301,70,-1.9029621481895447],[122,301,71,-1.9058389626443386],[122,301,72,-1.908744465559721],[122,301,73,-1.910535391420126],[122,301,74,-1.910994403064251],[122,301,75,-1.9101091586053371],[122,301,76,-1.9077161103487015],[122,301,77,-1.9041218608617783],[122,301,78,-1.899914626032114],[122,301,79,-1.8953398950397968],[122,302,64,-1.9114115312695503],[122,302,65,-1.9112015515565872],[122,302,66,-1.9095981270074844],[122,302,67,-1.9077796824276447],[122,302,68,-1.9070891104638577],[122,302,69,-1.9082477241754532],[122,302,70,-1.9107746481895447],[122,302,71,-1.9136514626443386],[122,302,72,-1.916556965559721],[122,302,73,-1.918347891420126],[122,302,74,-1.918806903064251],[122,302,75,-1.9179216586053371],[122,302,76,-1.9155286103487015],[122,302,77,-1.9119343608617783],[122,302,78,-1.907727126032114],[122,302,79,-1.9031523950397968],[122,303,64,-1.9192240312695503],[122,303,65,-1.9190140515565872],[122,303,66,-1.9174106270074844],[122,303,67,-1.9155921824276447],[122,303,68,-1.9149016104638577],[122,303,69,-1.9160602241754532],[122,303,70,-1.9185871481895447],[122,303,71,-1.9214639626443386],[122,303,72,-1.924369465559721],[122,303,73,-1.926160391420126],[122,303,74,-1.926619403064251],[122,303,75,-1.9257341586053371],[122,303,76,-1.9233411103487015],[122,303,77,-1.9197468608617783],[122,303,78,-1.915539626032114],[122,303,79,-1.9109648950397968],[122,304,64,-1.9270365312695503],[122,304,65,-1.9268265515565872],[122,304,66,-1.9252231270074844],[122,304,67,-1.9234046824276447],[122,304,68,-1.9227141104638577],[122,304,69,-1.9238727241754532],[122,304,70,-1.9263996481895447],[122,304,71,-1.9292764626443386],[122,304,72,-1.932181965559721],[122,304,73,-1.933972891420126],[122,304,74,-1.934431903064251],[122,304,75,-1.9335466586053371],[122,304,76,-1.9311536103487015],[122,304,77,-1.9275593608617783],[122,304,78,-1.923352126032114],[122,304,79,-1.9187773950397968],[122,305,64,-1.9348490312695503],[122,305,65,-1.9346390515565872],[122,305,66,-1.9330356270074844],[122,305,67,-1.9312171824276447],[122,305,68,-1.9305266104638577],[122,305,69,-1.9316852241754532],[122,305,70,-1.9342121481895447],[122,305,71,-1.9370889626443386],[122,305,72,-1.939994465559721],[122,305,73,-1.941785391420126],[122,305,74,-1.942244403064251],[122,305,75,-1.9413591586053371],[122,305,76,-1.9389661103487015],[122,305,77,-1.9353718608617783],[122,305,78,-1.931164626032114],[122,305,79,-1.9265898950397968],[122,306,64,-1.9426615312695503],[122,306,65,-1.9424515515565872],[122,306,66,-1.9408481270074844],[122,306,67,-1.9390296824276447],[122,306,68,-1.9383391104638577],[122,306,69,-1.9394977241754532],[122,306,70,-1.9420246481895447],[122,306,71,-1.9449014626443386],[122,306,72,-1.947806965559721],[122,306,73,-1.949597891420126],[122,306,74,-1.950056903064251],[122,306,75,-1.9491716586053371],[122,306,76,-1.9467786103487015],[122,306,77,-1.9431843608617783],[122,306,78,-1.938977126032114],[122,306,79,-1.9344023950397968],[122,307,64,-1.9504740312695503],[122,307,65,-1.9502640515565872],[122,307,66,-1.9486606270074844],[122,307,67,-1.9468421824276447],[122,307,68,-1.9461516104638577],[122,307,69,-1.9473102241754532],[122,307,70,-1.9498371481895447],[122,307,71,-1.9527139626443386],[122,307,72,-1.955619465559721],[122,307,73,-1.957410391420126],[122,307,74,-1.957869403064251],[122,307,75,-1.9569841586053371],[122,307,76,-1.9545911103487015],[122,307,77,-1.9509968608617783],[122,307,78,-1.946789626032114],[122,307,79,-1.9422148950397968],[122,308,64,-1.9582865312695503],[122,308,65,-1.9580765515565872],[122,308,66,-1.9564731270074844],[122,308,67,-1.9546546824276447],[122,308,68,-1.9539641104638577],[122,308,69,-1.9551227241754532],[122,308,70,-1.9576496481895447],[122,308,71,-1.9605264626443386],[122,308,72,-1.963431965559721],[122,308,73,-1.965222891420126],[122,308,74,-1.965681903064251],[122,308,75,-1.9647966586053371],[122,308,76,-1.9624036103487015],[122,308,77,-1.9588093608617783],[122,308,78,-1.954602126032114],[122,308,79,-1.9500273950397968],[122,309,64,-1.9660990312695503],[122,309,65,-1.9658890515565872],[122,309,66,-1.9642856270074844],[122,309,67,-1.9624671824276447],[122,309,68,-1.9617766104638577],[122,309,69,-1.9629352241754532],[122,309,70,-1.9654621481895447],[122,309,71,-1.9683389626443386],[122,309,72,-1.971244465559721],[122,309,73,-1.973035391420126],[122,309,74,-1.973494403064251],[122,309,75,-1.9726091586053371],[122,309,76,-1.9702161103487015],[122,309,77,-1.9666218608617783],[122,309,78,-1.962414626032114],[122,309,79,-1.9578398950397968],[122,310,64,-1.9739115312695503],[122,310,65,-1.9737015515565872],[122,310,66,-1.9720981270074844],[122,310,67,-1.9702796824276447],[122,310,68,-1.9695891104638577],[122,310,69,-1.9707477241754532],[122,310,70,-1.9732746481895447],[122,310,71,-1.9761514626443386],[122,310,72,-1.979056965559721],[122,310,73,-1.980847891420126],[122,310,74,-1.981306903064251],[122,310,75,-1.9804216586053371],[122,310,76,-1.9780286103487015],[122,310,77,-1.9744343608617783],[122,310,78,-1.970227126032114],[122,310,79,-1.9656523950397968],[122,311,64,-1.9817240312695503],[122,311,65,-1.9815140515565872],[122,311,66,-1.9799106270074844],[122,311,67,-1.9780921824276447],[122,311,68,-1.9774016104638577],[122,311,69,-1.9785602241754532],[122,311,70,-1.9810871481895447],[122,311,71,-1.9839639626443386],[122,311,72,-1.986869465559721],[122,311,73,-1.988660391420126],[122,311,74,-1.989119403064251],[122,311,75,-1.9882341586053371],[122,311,76,-1.9858411103487015],[122,311,77,-1.9822468608617783],[122,311,78,-1.978039626032114],[122,311,79,-1.9734648950397968],[122,312,64,-1.9895365312695503],[122,312,65,-1.9893265515565872],[122,312,66,-1.9877231270074844],[122,312,67,-1.9859046824276447],[122,312,68,-1.9852141104638577],[122,312,69,-1.9863727241754532],[122,312,70,-1.9888996481895447],[122,312,71,-1.9917764626443386],[122,312,72,-1.994681965559721],[122,312,73,-1.996472891420126],[122,312,74,-1.996931903064251],[122,312,75,-1.9960466586053371],[122,312,76,-1.9936536103487015],[122,312,77,-1.9900593608617783],[122,312,78,-1.985852126032114],[122,312,79,-1.9812773950397968],[122,313,64,-1.9973490312695503],[122,313,65,-1.9971390515565872],[122,313,66,-1.9955356270074844],[122,313,67,-1.9937171824276447],[122,313,68,-1.9930266104638577],[122,313,69,-1.9941852241754532],[122,313,70,-1.9967121481895447],[122,313,71,-1.9995889626443386],[122,313,72,-2.002494465559721],[122,313,73,-2.004285391420126],[122,313,74,-2.004744403064251],[122,313,75,-2.003859158605337],[122,313,76,-2.0014661103487015],[122,313,77,-1.9978718608617783],[122,313,78,-1.993664626032114],[122,313,79,-1.9890898950397968],[122,314,64,-2.0051615312695503],[122,314,65,-2.004951551556587],[122,314,66,-2.0033481270074844],[122,314,67,-2.0015296824276447],[122,314,68,-2.0008391104638577],[122,314,69,-2.001997724175453],[122,314,70,-2.0045246481895447],[122,314,71,-2.0074014626443386],[122,314,72,-2.010306965559721],[122,314,73,-2.012097891420126],[122,314,74,-2.012556903064251],[122,314,75,-2.011671658605337],[122,314,76,-2.0092786103487015],[122,314,77,-2.0056843608617783],[122,314,78,-2.001477126032114],[122,314,79,-1.9969023950397968],[122,315,64,-2.0129740312695503],[122,315,65,-2.012764051556587],[122,315,66,-2.0111606270074844],[122,315,67,-2.0093421824276447],[122,315,68,-2.0086516104638577],[122,315,69,-2.009810224175453],[122,315,70,-2.0123371481895447],[122,315,71,-2.0152139626443386],[122,315,72,-2.018119465559721],[122,315,73,-2.019910391420126],[122,315,74,-2.020369403064251],[122,315,75,-2.019484158605337],[122,315,76,-2.0170911103487015],[122,315,77,-2.0134968608617783],[122,315,78,-2.009289626032114],[122,315,79,-2.004714895039797],[122,316,64,-2.0207865312695503],[122,316,65,-2.020576551556587],[122,316,66,-2.0189731270074844],[122,316,67,-2.0171546824276447],[122,316,68,-2.0164641104638577],[122,316,69,-2.017622724175453],[122,316,70,-2.0201496481895447],[122,316,71,-2.0230264626443386],[122,316,72,-2.025931965559721],[122,316,73,-2.027722891420126],[122,316,74,-2.028181903064251],[122,316,75,-2.027296658605337],[122,316,76,-2.0249036103487015],[122,316,77,-2.0213093608617783],[122,316,78,-2.017102126032114],[122,316,79,-2.012527395039797],[122,317,64,-2.0285990312695503],[122,317,65,-2.028389051556587],[122,317,66,-2.0267856270074844],[122,317,67,-2.0249671824276447],[122,317,68,-2.0242766104638577],[122,317,69,-2.025435224175453],[122,317,70,-2.0279621481895447],[122,317,71,-2.0308389626443386],[122,317,72,-2.033744465559721],[122,317,73,-2.035535391420126],[122,317,74,-2.035994403064251],[122,317,75,-2.035109158605337],[122,317,76,-2.0327161103487015],[122,317,77,-2.0291218608617783],[122,317,78,-2.024914626032114],[122,317,79,-2.020339895039797],[122,318,64,-2.0364115312695503],[122,318,65,-2.036201551556587],[122,318,66,-2.0345981270074844],[122,318,67,-2.0327796824276447],[122,318,68,-2.0320891104638577],[122,318,69,-2.033247724175453],[122,318,70,-2.0357746481895447],[122,318,71,-2.0386514626443386],[122,318,72,-2.041556965559721],[122,318,73,-2.043347891420126],[122,318,74,-2.043806903064251],[122,318,75,-2.042921658605337],[122,318,76,-2.0405286103487015],[122,318,77,-2.0369343608617783],[122,318,78,-2.032727126032114],[122,318,79,-2.028152395039797],[122,319,64,-2.0442240312695503],[122,319,65,-2.044014051556587],[122,319,66,-2.0424106270074844],[122,319,67,-2.0405921824276447],[122,319,68,-2.0399016104638577],[122,319,69,-2.041060224175453],[122,319,70,-2.0435871481895447],[122,319,71,-2.0464639626443386],[122,319,72,-2.049369465559721],[122,319,73,-2.051160391420126],[122,319,74,-2.051619403064251],[122,319,75,-2.050734158605337],[122,319,76,-2.0483411103487015],[122,319,77,-2.0447468608617783],[122,319,78,-2.040539626032114],[122,319,79,-2.035964895039797],[123,-64,64,0.9457819052040577],[123,-64,65,0.9455252215266228],[123,-64,66,0.9468776509165764],[123,-64,67,0.9486324973404408],[123,-64,68,0.9493486136198044],[123,-64,69,0.9482391700148582],[123,-64,70,0.9458761587738991],[123,-64,71,0.9431669749319553],[123,-64,72,0.9401790164411068],[123,-64,73,0.938152652233839],[123,-64,74,0.9374124817550182],[123,-64,75,0.938074130564928],[123,-64,76,0.940510842949152],[123,-64,77,0.9444593489170074],[123,-64,78,0.9490884058177471],[123,-64,79,0.9540575668215752],[123,-63,64,0.9379694052040577],[123,-63,65,0.9377127215266228],[123,-63,66,0.9390651509165764],[123,-63,67,0.9408199973404408],[123,-63,68,0.9415361136198044],[123,-63,69,0.9404266700148582],[123,-63,70,0.9380636587738991],[123,-63,71,0.9353544749319553],[123,-63,72,0.9323665164411068],[123,-63,73,0.930340152233839],[123,-63,74,0.9295999817550182],[123,-63,75,0.930261630564928],[123,-63,76,0.932698342949152],[123,-63,77,0.9366468489170074],[123,-63,78,0.9412759058177471],[123,-63,79,0.9462450668215752],[123,-62,64,0.9301569052040577],[123,-62,65,0.9299002215266228],[123,-62,66,0.9312526509165764],[123,-62,67,0.9330074973404408],[123,-62,68,0.9337236136198044],[123,-62,69,0.9326141700148582],[123,-62,70,0.9302511587738991],[123,-62,71,0.9275419749319553],[123,-62,72,0.9245540164411068],[123,-62,73,0.922527652233839],[123,-62,74,0.9217874817550182],[123,-62,75,0.922449130564928],[123,-62,76,0.924885842949152],[123,-62,77,0.9288343489170074],[123,-62,78,0.9334634058177471],[123,-62,79,0.9384325668215752],[123,-61,64,0.9223444052040577],[123,-61,65,0.9220877215266228],[123,-61,66,0.9234401509165764],[123,-61,67,0.9251949973404408],[123,-61,68,0.9259111136198044],[123,-61,69,0.9248016700148582],[123,-61,70,0.9224386587738991],[123,-61,71,0.9197294749319553],[123,-61,72,0.9167415164411068],[123,-61,73,0.914715152233839],[123,-61,74,0.9139749817550182],[123,-61,75,0.914636630564928],[123,-61,76,0.917073342949152],[123,-61,77,0.9210218489170074],[123,-61,78,0.9256509058177471],[123,-61,79,0.9306200668215752],[123,-60,64,0.9145319052040577],[123,-60,65,0.9142752215266228],[123,-60,66,0.9156276509165764],[123,-60,67,0.9173824973404408],[123,-60,68,0.9180986136198044],[123,-60,69,0.9169891700148582],[123,-60,70,0.9146261587738991],[123,-60,71,0.9119169749319553],[123,-60,72,0.9089290164411068],[123,-60,73,0.906902652233839],[123,-60,74,0.9061624817550182],[123,-60,75,0.906824130564928],[123,-60,76,0.909260842949152],[123,-60,77,0.9132093489170074],[123,-60,78,0.9178384058177471],[123,-60,79,0.9228075668215752],[123,-59,64,0.9067194052040577],[123,-59,65,0.9064627215266228],[123,-59,66,0.9078151509165764],[123,-59,67,0.9095699973404408],[123,-59,68,0.9102861136198044],[123,-59,69,0.9091766700148582],[123,-59,70,0.9068136587738991],[123,-59,71,0.9041044749319553],[123,-59,72,0.9011165164411068],[123,-59,73,0.899090152233839],[123,-59,74,0.8983499817550182],[123,-59,75,0.899011630564928],[123,-59,76,0.901448342949152],[123,-59,77,0.9053968489170074],[123,-59,78,0.9100259058177471],[123,-59,79,0.9149950668215752],[123,-58,64,0.8989069052040577],[123,-58,65,0.8986502215266228],[123,-58,66,0.9000026509165764],[123,-58,67,0.9017574973404408],[123,-58,68,0.9024736136198044],[123,-58,69,0.9013641700148582],[123,-58,70,0.8990011587738991],[123,-58,71,0.8962919749319553],[123,-58,72,0.8933040164411068],[123,-58,73,0.891277652233839],[123,-58,74,0.8905374817550182],[123,-58,75,0.891199130564928],[123,-58,76,0.893635842949152],[123,-58,77,0.8975843489170074],[123,-58,78,0.9022134058177471],[123,-58,79,0.9071825668215752],[123,-57,64,0.8910944052040577],[123,-57,65,0.8908377215266228],[123,-57,66,0.8921901509165764],[123,-57,67,0.8939449973404408],[123,-57,68,0.8946611136198044],[123,-57,69,0.8935516700148582],[123,-57,70,0.8911886587738991],[123,-57,71,0.8884794749319553],[123,-57,72,0.8854915164411068],[123,-57,73,0.883465152233839],[123,-57,74,0.8827249817550182],[123,-57,75,0.883386630564928],[123,-57,76,0.885823342949152],[123,-57,77,0.8897718489170074],[123,-57,78,0.8944009058177471],[123,-57,79,0.8993700668215752],[123,-56,64,0.8832819052040577],[123,-56,65,0.8830252215266228],[123,-56,66,0.8843776509165764],[123,-56,67,0.8861324973404408],[123,-56,68,0.8868486136198044],[123,-56,69,0.8857391700148582],[123,-56,70,0.8833761587738991],[123,-56,71,0.8806669749319553],[123,-56,72,0.8776790164411068],[123,-56,73,0.875652652233839],[123,-56,74,0.8749124817550182],[123,-56,75,0.875574130564928],[123,-56,76,0.878010842949152],[123,-56,77,0.8819593489170074],[123,-56,78,0.8865884058177471],[123,-56,79,0.8915575668215752],[123,-55,64,0.8754694052040577],[123,-55,65,0.8752127215266228],[123,-55,66,0.8765651509165764],[123,-55,67,0.8783199973404408],[123,-55,68,0.8790361136198044],[123,-55,69,0.8779266700148582],[123,-55,70,0.8755636587738991],[123,-55,71,0.8728544749319553],[123,-55,72,0.8698665164411068],[123,-55,73,0.867840152233839],[123,-55,74,0.8670999817550182],[123,-55,75,0.867761630564928],[123,-55,76,0.870198342949152],[123,-55,77,0.8741468489170074],[123,-55,78,0.8787759058177471],[123,-55,79,0.8837450668215752],[123,-54,64,0.8676569052040577],[123,-54,65,0.8674002215266228],[123,-54,66,0.8687526509165764],[123,-54,67,0.8705074973404408],[123,-54,68,0.8712236136198044],[123,-54,69,0.8701141700148582],[123,-54,70,0.8677511587738991],[123,-54,71,0.8650419749319553],[123,-54,72,0.8620540164411068],[123,-54,73,0.860027652233839],[123,-54,74,0.8592874817550182],[123,-54,75,0.859949130564928],[123,-54,76,0.862385842949152],[123,-54,77,0.8663343489170074],[123,-54,78,0.8709634058177471],[123,-54,79,0.8759325668215752],[123,-53,64,0.8598444052040577],[123,-53,65,0.8595877215266228],[123,-53,66,0.8609401509165764],[123,-53,67,0.8626949973404408],[123,-53,68,0.8634111136198044],[123,-53,69,0.8623016700148582],[123,-53,70,0.8599386587738991],[123,-53,71,0.8572294749319553],[123,-53,72,0.8542415164411068],[123,-53,73,0.852215152233839],[123,-53,74,0.8514749817550182],[123,-53,75,0.852136630564928],[123,-53,76,0.854573342949152],[123,-53,77,0.8585218489170074],[123,-53,78,0.8631509058177471],[123,-53,79,0.8681200668215752],[123,-52,64,0.8520319052040577],[123,-52,65,0.8517752215266228],[123,-52,66,0.8531276509165764],[123,-52,67,0.8548824973404408],[123,-52,68,0.8555986136198044],[123,-52,69,0.8544891700148582],[123,-52,70,0.8521261587738991],[123,-52,71,0.8494169749319553],[123,-52,72,0.8464290164411068],[123,-52,73,0.844402652233839],[123,-52,74,0.8436624817550182],[123,-52,75,0.844324130564928],[123,-52,76,0.846760842949152],[123,-52,77,0.8507093489170074],[123,-52,78,0.8553384058177471],[123,-52,79,0.8603075668215752],[123,-51,64,0.8442194052040577],[123,-51,65,0.8439627215266228],[123,-51,66,0.8453151509165764],[123,-51,67,0.8470699973404408],[123,-51,68,0.8477861136198044],[123,-51,69,0.8466766700148582],[123,-51,70,0.8443136587738991],[123,-51,71,0.8416044749319553],[123,-51,72,0.8386165164411068],[123,-51,73,0.836590152233839],[123,-51,74,0.8358499817550182],[123,-51,75,0.836511630564928],[123,-51,76,0.838948342949152],[123,-51,77,0.8428968489170074],[123,-51,78,0.8475259058177471],[123,-51,79,0.8524950668215752],[123,-50,64,0.8364069052040577],[123,-50,65,0.8361502215266228],[123,-50,66,0.8375026509165764],[123,-50,67,0.8392574973404408],[123,-50,68,0.8399736136198044],[123,-50,69,0.8388641700148582],[123,-50,70,0.8365011587738991],[123,-50,71,0.8337919749319553],[123,-50,72,0.8308040164411068],[123,-50,73,0.828777652233839],[123,-50,74,0.8280374817550182],[123,-50,75,0.828699130564928],[123,-50,76,0.831135842949152],[123,-50,77,0.8350843489170074],[123,-50,78,0.8397134058177471],[123,-50,79,0.8446825668215752],[123,-49,64,0.8285944052040577],[123,-49,65,0.8283377215266228],[123,-49,66,0.8296901509165764],[123,-49,67,0.8314449973404408],[123,-49,68,0.8321611136198044],[123,-49,69,0.8310516700148582],[123,-49,70,0.8286886587738991],[123,-49,71,0.8259794749319553],[123,-49,72,0.8229915164411068],[123,-49,73,0.820965152233839],[123,-49,74,0.8202249817550182],[123,-49,75,0.820886630564928],[123,-49,76,0.823323342949152],[123,-49,77,0.8272718489170074],[123,-49,78,0.8319009058177471],[123,-49,79,0.8368700668215752],[123,-48,64,0.8207819052040577],[123,-48,65,0.8205252215266228],[123,-48,66,0.8218776509165764],[123,-48,67,0.8236324973404408],[123,-48,68,0.8243486136198044],[123,-48,69,0.8232391700148582],[123,-48,70,0.8208761587738991],[123,-48,71,0.8181669749319553],[123,-48,72,0.8151790164411068],[123,-48,73,0.813152652233839],[123,-48,74,0.8124124817550182],[123,-48,75,0.813074130564928],[123,-48,76,0.815510842949152],[123,-48,77,0.8194593489170074],[123,-48,78,0.8240884058177471],[123,-48,79,0.8290575668215752],[123,-47,64,0.8129694052040577],[123,-47,65,0.8127127215266228],[123,-47,66,0.8140651509165764],[123,-47,67,0.8158199973404408],[123,-47,68,0.8165361136198044],[123,-47,69,0.8154266700148582],[123,-47,70,0.8130636587738991],[123,-47,71,0.8103544749319553],[123,-47,72,0.8073665164411068],[123,-47,73,0.805340152233839],[123,-47,74,0.8045999817550182],[123,-47,75,0.805261630564928],[123,-47,76,0.807698342949152],[123,-47,77,0.8116468489170074],[123,-47,78,0.8162759058177471],[123,-47,79,0.8212450668215752],[123,-46,64,0.8051569052040577],[123,-46,65,0.8049002215266228],[123,-46,66,0.8062526509165764],[123,-46,67,0.8080074973404408],[123,-46,68,0.8087236136198044],[123,-46,69,0.8076141700148582],[123,-46,70,0.8052511587738991],[123,-46,71,0.8025419749319553],[123,-46,72,0.7995540164411068],[123,-46,73,0.797527652233839],[123,-46,74,0.7967874817550182],[123,-46,75,0.797449130564928],[123,-46,76,0.799885842949152],[123,-46,77,0.8038343489170074],[123,-46,78,0.8084634058177471],[123,-46,79,0.8134325668215752],[123,-45,64,0.7973444052040577],[123,-45,65,0.7970877215266228],[123,-45,66,0.7984401509165764],[123,-45,67,0.8001949973404408],[123,-45,68,0.8009111136198044],[123,-45,69,0.7998016700148582],[123,-45,70,0.7974386587738991],[123,-45,71,0.7947294749319553],[123,-45,72,0.7917415164411068],[123,-45,73,0.789715152233839],[123,-45,74,0.7889749817550182],[123,-45,75,0.789636630564928],[123,-45,76,0.792073342949152],[123,-45,77,0.7960218489170074],[123,-45,78,0.8006509058177471],[123,-45,79,0.8056200668215752],[123,-44,64,0.7895319052040577],[123,-44,65,0.7892752215266228],[123,-44,66,0.7906276509165764],[123,-44,67,0.7923824973404408],[123,-44,68,0.7930986136198044],[123,-44,69,0.7919891700148582],[123,-44,70,0.7896261587738991],[123,-44,71,0.7869169749319553],[123,-44,72,0.7839290164411068],[123,-44,73,0.781902652233839],[123,-44,74,0.7811624817550182],[123,-44,75,0.781824130564928],[123,-44,76,0.784260842949152],[123,-44,77,0.7882093489170074],[123,-44,78,0.7928384058177471],[123,-44,79,0.7978075668215752],[123,-43,64,0.7817194052040577],[123,-43,65,0.7814627215266228],[123,-43,66,0.7828151509165764],[123,-43,67,0.7845699973404408],[123,-43,68,0.7852861136198044],[123,-43,69,0.7841766700148582],[123,-43,70,0.7818136587738991],[123,-43,71,0.7791044749319553],[123,-43,72,0.7761165164411068],[123,-43,73,0.774090152233839],[123,-43,74,0.7733499817550182],[123,-43,75,0.774011630564928],[123,-43,76,0.776448342949152],[123,-43,77,0.7803968489170074],[123,-43,78,0.7850259058177471],[123,-43,79,0.7899950668215752],[123,-42,64,0.7739069052040577],[123,-42,65,0.7736502215266228],[123,-42,66,0.7750026509165764],[123,-42,67,0.7767574973404408],[123,-42,68,0.7774736136198044],[123,-42,69,0.7763641700148582],[123,-42,70,0.7740011587738991],[123,-42,71,0.7712919749319553],[123,-42,72,0.7683040164411068],[123,-42,73,0.766277652233839],[123,-42,74,0.7655374817550182],[123,-42,75,0.766199130564928],[123,-42,76,0.768635842949152],[123,-42,77,0.7725843489170074],[123,-42,78,0.7772134058177471],[123,-42,79,0.7821825668215752],[123,-41,64,0.7660944052040577],[123,-41,65,0.7658377215266228],[123,-41,66,0.7671901509165764],[123,-41,67,0.7689449973404408],[123,-41,68,0.7696611136198044],[123,-41,69,0.7685516700148582],[123,-41,70,0.7661886587738991],[123,-41,71,0.7634794749319553],[123,-41,72,0.7604915164411068],[123,-41,73,0.758465152233839],[123,-41,74,0.7577249817550182],[123,-41,75,0.758386630564928],[123,-41,76,0.760823342949152],[123,-41,77,0.7647718489170074],[123,-41,78,0.7694009058177471],[123,-41,79,0.7743700668215752],[123,-40,64,0.7582819052040577],[123,-40,65,0.7580252215266228],[123,-40,66,0.7593776509165764],[123,-40,67,0.7611324973404408],[123,-40,68,0.7618486136198044],[123,-40,69,0.7607391700148582],[123,-40,70,0.7583761587738991],[123,-40,71,0.7556669749319553],[123,-40,72,0.7526790164411068],[123,-40,73,0.750652652233839],[123,-40,74,0.7499124817550182],[123,-40,75,0.750574130564928],[123,-40,76,0.753010842949152],[123,-40,77,0.7569593489170074],[123,-40,78,0.7615884058177471],[123,-40,79,0.7665575668215752],[123,-39,64,0.7504694052040577],[123,-39,65,0.7502127215266228],[123,-39,66,0.7515651509165764],[123,-39,67,0.7533199973404408],[123,-39,68,0.7540361136198044],[123,-39,69,0.7529266700148582],[123,-39,70,0.7505636587738991],[123,-39,71,0.7478544749319553],[123,-39,72,0.7448665164411068],[123,-39,73,0.742840152233839],[123,-39,74,0.7420999817550182],[123,-39,75,0.742761630564928],[123,-39,76,0.745198342949152],[123,-39,77,0.7491468489170074],[123,-39,78,0.7537759058177471],[123,-39,79,0.7587450668215752],[123,-38,64,0.7426569052040577],[123,-38,65,0.7424002215266228],[123,-38,66,0.7437526509165764],[123,-38,67,0.7455074973404408],[123,-38,68,0.7462236136198044],[123,-38,69,0.7451141700148582],[123,-38,70,0.7427511587738991],[123,-38,71,0.7400419749319553],[123,-38,72,0.7370540164411068],[123,-38,73,0.735027652233839],[123,-38,74,0.7342874817550182],[123,-38,75,0.734949130564928],[123,-38,76,0.737385842949152],[123,-38,77,0.7413343489170074],[123,-38,78,0.7459634058177471],[123,-38,79,0.7509325668215752],[123,-37,64,0.7348444052040577],[123,-37,65,0.7345877215266228],[123,-37,66,0.7359401509165764],[123,-37,67,0.7376949973404408],[123,-37,68,0.7384111136198044],[123,-37,69,0.7373016700148582],[123,-37,70,0.7349386587738991],[123,-37,71,0.7322294749319553],[123,-37,72,0.7292415164411068],[123,-37,73,0.727215152233839],[123,-37,74,0.7264749817550182],[123,-37,75,0.727136630564928],[123,-37,76,0.729573342949152],[123,-37,77,0.7335218489170074],[123,-37,78,0.7381509058177471],[123,-37,79,0.7431200668215752],[123,-36,64,0.7270319052040577],[123,-36,65,0.7267752215266228],[123,-36,66,0.7281276509165764],[123,-36,67,0.7298824973404408],[123,-36,68,0.7305986136198044],[123,-36,69,0.7294891700148582],[123,-36,70,0.7271261587738991],[123,-36,71,0.7244169749319553],[123,-36,72,0.7214290164411068],[123,-36,73,0.719402652233839],[123,-36,74,0.7186624817550182],[123,-36,75,0.719324130564928],[123,-36,76,0.721760842949152],[123,-36,77,0.7257093489170074],[123,-36,78,0.7303384058177471],[123,-36,79,0.7353075668215752],[123,-35,64,0.7192194052040577],[123,-35,65,0.7189627215266228],[123,-35,66,0.7203151509165764],[123,-35,67,0.7220699973404408],[123,-35,68,0.7227861136198044],[123,-35,69,0.7216766700148582],[123,-35,70,0.7193136587738991],[123,-35,71,0.7166044749319553],[123,-35,72,0.7136165164411068],[123,-35,73,0.711590152233839],[123,-35,74,0.7108499817550182],[123,-35,75,0.711511630564928],[123,-35,76,0.713948342949152],[123,-35,77,0.7178968489170074],[123,-35,78,0.7225259058177471],[123,-35,79,0.7274950668215752],[123,-34,64,0.7114069052040577],[123,-34,65,0.7111502215266228],[123,-34,66,0.7125026509165764],[123,-34,67,0.7142574973404408],[123,-34,68,0.7149736136198044],[123,-34,69,0.7138641700148582],[123,-34,70,0.7115011587738991],[123,-34,71,0.7087919749319553],[123,-34,72,0.7058040164411068],[123,-34,73,0.703777652233839],[123,-34,74,0.7030374817550182],[123,-34,75,0.703699130564928],[123,-34,76,0.706135842949152],[123,-34,77,0.7100843489170074],[123,-34,78,0.7147134058177471],[123,-34,79,0.7196825668215752],[123,-33,64,0.7035944052040577],[123,-33,65,0.7033377215266228],[123,-33,66,0.7046901509165764],[123,-33,67,0.7064449973404408],[123,-33,68,0.7071611136198044],[123,-33,69,0.7060516700148582],[123,-33,70,0.7036886587738991],[123,-33,71,0.7009794749319553],[123,-33,72,0.6979915164411068],[123,-33,73,0.695965152233839],[123,-33,74,0.6952249817550182],[123,-33,75,0.695886630564928],[123,-33,76,0.698323342949152],[123,-33,77,0.7022718489170074],[123,-33,78,0.7069009058177471],[123,-33,79,0.7118700668215752],[123,-32,64,0.6957819052040577],[123,-32,65,0.6955252215266228],[123,-32,66,0.6968776509165764],[123,-32,67,0.6986324973404408],[123,-32,68,0.6993486136198044],[123,-32,69,0.6982391700148582],[123,-32,70,0.6958761587738991],[123,-32,71,0.6931669749319553],[123,-32,72,0.6901790164411068],[123,-32,73,0.688152652233839],[123,-32,74,0.6874124817550182],[123,-32,75,0.688074130564928],[123,-32,76,0.690510842949152],[123,-32,77,0.6944593489170074],[123,-32,78,0.6990884058177471],[123,-32,79,0.7040575668215752],[123,-31,64,0.6879694052040577],[123,-31,65,0.6877127215266228],[123,-31,66,0.6890651509165764],[123,-31,67,0.6908199973404408],[123,-31,68,0.6915361136198044],[123,-31,69,0.6904266700148582],[123,-31,70,0.6880636587738991],[123,-31,71,0.6853544749319553],[123,-31,72,0.6823665164411068],[123,-31,73,0.680340152233839],[123,-31,74,0.6795999817550182],[123,-31,75,0.680261630564928],[123,-31,76,0.682698342949152],[123,-31,77,0.6866468489170074],[123,-31,78,0.6912759058177471],[123,-31,79,0.6962450668215752],[123,-30,64,0.6801569052040577],[123,-30,65,0.6799002215266228],[123,-30,66,0.6812526509165764],[123,-30,67,0.6830074973404408],[123,-30,68,0.6837236136198044],[123,-30,69,0.6826141700148582],[123,-30,70,0.6802511587738991],[123,-30,71,0.6775419749319553],[123,-30,72,0.6745540164411068],[123,-30,73,0.672527652233839],[123,-30,74,0.6717874817550182],[123,-30,75,0.672449130564928],[123,-30,76,0.674885842949152],[123,-30,77,0.6788343489170074],[123,-30,78,0.6834634058177471],[123,-30,79,0.6884325668215752],[123,-29,64,0.6723444052040577],[123,-29,65,0.6720877215266228],[123,-29,66,0.6734401509165764],[123,-29,67,0.6751949973404408],[123,-29,68,0.6759111136198044],[123,-29,69,0.6748016700148582],[123,-29,70,0.6724386587738991],[123,-29,71,0.6697294749319553],[123,-29,72,0.6667415164411068],[123,-29,73,0.664715152233839],[123,-29,74,0.6639749817550182],[123,-29,75,0.664636630564928],[123,-29,76,0.667073342949152],[123,-29,77,0.6710218489170074],[123,-29,78,0.6756509058177471],[123,-29,79,0.6806200668215752],[123,-28,64,0.6645319052040577],[123,-28,65,0.6642752215266228],[123,-28,66,0.6656276509165764],[123,-28,67,0.6673824973404408],[123,-28,68,0.6680986136198044],[123,-28,69,0.6669891700148582],[123,-28,70,0.6646261587738991],[123,-28,71,0.6619169749319553],[123,-28,72,0.6589290164411068],[123,-28,73,0.656902652233839],[123,-28,74,0.6561624817550182],[123,-28,75,0.656824130564928],[123,-28,76,0.659260842949152],[123,-28,77,0.6632093489170074],[123,-28,78,0.6678384058177471],[123,-28,79,0.6728075668215752],[123,-27,64,0.6567194052040577],[123,-27,65,0.6564627215266228],[123,-27,66,0.6578151509165764],[123,-27,67,0.6595699973404408],[123,-27,68,0.6602861136198044],[123,-27,69,0.6591766700148582],[123,-27,70,0.6568136587738991],[123,-27,71,0.6541044749319553],[123,-27,72,0.6511165164411068],[123,-27,73,0.649090152233839],[123,-27,74,0.6483499817550182],[123,-27,75,0.649011630564928],[123,-27,76,0.651448342949152],[123,-27,77,0.6553968489170074],[123,-27,78,0.6600259058177471],[123,-27,79,0.6649950668215752],[123,-26,64,0.6489069052040577],[123,-26,65,0.6486502215266228],[123,-26,66,0.6500026509165764],[123,-26,67,0.6517574973404408],[123,-26,68,0.6524736136198044],[123,-26,69,0.6513641700148582],[123,-26,70,0.6490011587738991],[123,-26,71,0.6462919749319553],[123,-26,72,0.6433040164411068],[123,-26,73,0.641277652233839],[123,-26,74,0.6405374817550182],[123,-26,75,0.641199130564928],[123,-26,76,0.643635842949152],[123,-26,77,0.6475843489170074],[123,-26,78,0.6522134058177471],[123,-26,79,0.6571825668215752],[123,-25,64,0.6410944052040577],[123,-25,65,0.6408377215266228],[123,-25,66,0.6421901509165764],[123,-25,67,0.6439449973404408],[123,-25,68,0.6446611136198044],[123,-25,69,0.6435516700148582],[123,-25,70,0.6411886587738991],[123,-25,71,0.6384794749319553],[123,-25,72,0.6354915164411068],[123,-25,73,0.633465152233839],[123,-25,74,0.6327249817550182],[123,-25,75,0.633386630564928],[123,-25,76,0.635823342949152],[123,-25,77,0.6397718489170074],[123,-25,78,0.6444009058177471],[123,-25,79,0.6493700668215752],[123,-24,64,0.6332819052040577],[123,-24,65,0.6330252215266228],[123,-24,66,0.6343776509165764],[123,-24,67,0.6361324973404408],[123,-24,68,0.6368486136198044],[123,-24,69,0.6357391700148582],[123,-24,70,0.6333761587738991],[123,-24,71,0.6306669749319553],[123,-24,72,0.6276790164411068],[123,-24,73,0.625652652233839],[123,-24,74,0.6249124817550182],[123,-24,75,0.625574130564928],[123,-24,76,0.628010842949152],[123,-24,77,0.6319593489170074],[123,-24,78,0.6365884058177471],[123,-24,79,0.6415575668215752],[123,-23,64,0.6254694052040577],[123,-23,65,0.6252127215266228],[123,-23,66,0.6265651509165764],[123,-23,67,0.6283199973404408],[123,-23,68,0.6290361136198044],[123,-23,69,0.6279266700148582],[123,-23,70,0.6255636587738991],[123,-23,71,0.6228544749319553],[123,-23,72,0.6198665164411068],[123,-23,73,0.617840152233839],[123,-23,74,0.6170999817550182],[123,-23,75,0.617761630564928],[123,-23,76,0.620198342949152],[123,-23,77,0.6241468489170074],[123,-23,78,0.6287759058177471],[123,-23,79,0.6337450668215752],[123,-22,64,0.6176569052040577],[123,-22,65,0.6174002215266228],[123,-22,66,0.6187526509165764],[123,-22,67,0.6205074973404408],[123,-22,68,0.6212236136198044],[123,-22,69,0.6201141700148582],[123,-22,70,0.6177511587738991],[123,-22,71,0.6150419749319553],[123,-22,72,0.6120540164411068],[123,-22,73,0.610027652233839],[123,-22,74,0.6092874817550182],[123,-22,75,0.609949130564928],[123,-22,76,0.612385842949152],[123,-22,77,0.6163343489170074],[123,-22,78,0.6209634058177471],[123,-22,79,0.6259325668215752],[123,-21,64,0.6098444052040577],[123,-21,65,0.6095877215266228],[123,-21,66,0.6109401509165764],[123,-21,67,0.6126949973404408],[123,-21,68,0.6134111136198044],[123,-21,69,0.6123016700148582],[123,-21,70,0.6099386587738991],[123,-21,71,0.6072294749319553],[123,-21,72,0.6042415164411068],[123,-21,73,0.602215152233839],[123,-21,74,0.6014749817550182],[123,-21,75,0.602136630564928],[123,-21,76,0.604573342949152],[123,-21,77,0.6085218489170074],[123,-21,78,0.6131509058177471],[123,-21,79,0.6181200668215752],[123,-20,64,0.6020319052040577],[123,-20,65,0.6017752215266228],[123,-20,66,0.6031276509165764],[123,-20,67,0.6048824973404408],[123,-20,68,0.6055986136198044],[123,-20,69,0.6044891700148582],[123,-20,70,0.6021261587738991],[123,-20,71,0.5994169749319553],[123,-20,72,0.5964290164411068],[123,-20,73,0.594402652233839],[123,-20,74,0.5936624817550182],[123,-20,75,0.594324130564928],[123,-20,76,0.596760842949152],[123,-20,77,0.6007093489170074],[123,-20,78,0.6053384058177471],[123,-20,79,0.6103075668215752],[123,-19,64,0.5942194052040577],[123,-19,65,0.5939627215266228],[123,-19,66,0.5953151509165764],[123,-19,67,0.5970699973404408],[123,-19,68,0.5977861136198044],[123,-19,69,0.5966766700148582],[123,-19,70,0.5943136587738991],[123,-19,71,0.5916044749319553],[123,-19,72,0.5886165164411068],[123,-19,73,0.586590152233839],[123,-19,74,0.5858499817550182],[123,-19,75,0.586511630564928],[123,-19,76,0.588948342949152],[123,-19,77,0.5928968489170074],[123,-19,78,0.5975259058177471],[123,-19,79,0.6024950668215752],[123,-18,64,0.5864069052040577],[123,-18,65,0.5861502215266228],[123,-18,66,0.5875026509165764],[123,-18,67,0.5892574973404408],[123,-18,68,0.5899736136198044],[123,-18,69,0.5888641700148582],[123,-18,70,0.5865011587738991],[123,-18,71,0.5837919749319553],[123,-18,72,0.5808040164411068],[123,-18,73,0.578777652233839],[123,-18,74,0.5780374817550182],[123,-18,75,0.578699130564928],[123,-18,76,0.581135842949152],[123,-18,77,0.5850843489170074],[123,-18,78,0.5897134058177471],[123,-18,79,0.5946825668215752],[123,-17,64,0.5785944052040577],[123,-17,65,0.5783377215266228],[123,-17,66,0.5796901509165764],[123,-17,67,0.5814449973404408],[123,-17,68,0.5821611136198044],[123,-17,69,0.5810516700148582],[123,-17,70,0.5786886587738991],[123,-17,71,0.5759794749319553],[123,-17,72,0.5729915164411068],[123,-17,73,0.570965152233839],[123,-17,74,0.5702249817550182],[123,-17,75,0.570886630564928],[123,-17,76,0.573323342949152],[123,-17,77,0.5772718489170074],[123,-17,78,0.5819009058177471],[123,-17,79,0.5868700668215752],[123,-16,64,0.5707819052040577],[123,-16,65,0.5705252215266228],[123,-16,66,0.5718776509165764],[123,-16,67,0.5736324973404408],[123,-16,68,0.5743486136198044],[123,-16,69,0.5732391700148582],[123,-16,70,0.5708761587738991],[123,-16,71,0.5681669749319553],[123,-16,72,0.5651790164411068],[123,-16,73,0.563152652233839],[123,-16,74,0.5624124817550182],[123,-16,75,0.563074130564928],[123,-16,76,0.565510842949152],[123,-16,77,0.5694593489170074],[123,-16,78,0.5740884058177471],[123,-16,79,0.5790575668215752],[123,-15,64,0.5629694052040577],[123,-15,65,0.5627127215266228],[123,-15,66,0.5640651509165764],[123,-15,67,0.5658199973404408],[123,-15,68,0.5665361136198044],[123,-15,69,0.5654266700148582],[123,-15,70,0.5630636587738991],[123,-15,71,0.5603544749319553],[123,-15,72,0.5573665164411068],[123,-15,73,0.555340152233839],[123,-15,74,0.5545999817550182],[123,-15,75,0.555261630564928],[123,-15,76,0.557698342949152],[123,-15,77,0.5616468489170074],[123,-15,78,0.5662759058177471],[123,-15,79,0.5712450668215752],[123,-14,64,0.5551569052040577],[123,-14,65,0.5549002215266228],[123,-14,66,0.5562526509165764],[123,-14,67,0.5580074973404408],[123,-14,68,0.5587236136198044],[123,-14,69,0.5576141700148582],[123,-14,70,0.5552511587738991],[123,-14,71,0.5525419749319553],[123,-14,72,0.5495540164411068],[123,-14,73,0.547527652233839],[123,-14,74,0.5467874817550182],[123,-14,75,0.547449130564928],[123,-14,76,0.549885842949152],[123,-14,77,0.5538343489170074],[123,-14,78,0.5584634058177471],[123,-14,79,0.5634325668215752],[123,-13,64,0.5473444052040577],[123,-13,65,0.5470877215266228],[123,-13,66,0.5484401509165764],[123,-13,67,0.5501949973404408],[123,-13,68,0.5509111136198044],[123,-13,69,0.5498016700148582],[123,-13,70,0.5474386587738991],[123,-13,71,0.5447294749319553],[123,-13,72,0.5417415164411068],[123,-13,73,0.539715152233839],[123,-13,74,0.5389749817550182],[123,-13,75,0.539636630564928],[123,-13,76,0.542073342949152],[123,-13,77,0.5460218489170074],[123,-13,78,0.5506509058177471],[123,-13,79,0.5556200668215752],[123,-12,64,0.5395319052040577],[123,-12,65,0.5392752215266228],[123,-12,66,0.5406276509165764],[123,-12,67,0.5423824973404408],[123,-12,68,0.5430986136198044],[123,-12,69,0.5419891700148582],[123,-12,70,0.5396261587738991],[123,-12,71,0.5369169749319553],[123,-12,72,0.5339290164411068],[123,-12,73,0.531902652233839],[123,-12,74,0.5311624817550182],[123,-12,75,0.531824130564928],[123,-12,76,0.534260842949152],[123,-12,77,0.5382093489170074],[123,-12,78,0.5428384058177471],[123,-12,79,0.5478075668215752],[123,-11,64,0.5317194052040577],[123,-11,65,0.5314627215266228],[123,-11,66,0.5328151509165764],[123,-11,67,0.5345699973404408],[123,-11,68,0.5352861136198044],[123,-11,69,0.5341766700148582],[123,-11,70,0.5318136587738991],[123,-11,71,0.5291044749319553],[123,-11,72,0.5261165164411068],[123,-11,73,0.524090152233839],[123,-11,74,0.5233499817550182],[123,-11,75,0.524011630564928],[123,-11,76,0.526448342949152],[123,-11,77,0.5303968489170074],[123,-11,78,0.5350259058177471],[123,-11,79,0.5399950668215752],[123,-10,64,0.5239069052040577],[123,-10,65,0.5236502215266228],[123,-10,66,0.5250026509165764],[123,-10,67,0.5267574973404408],[123,-10,68,0.5274736136198044],[123,-10,69,0.5263641700148582],[123,-10,70,0.5240011587738991],[123,-10,71,0.5212919749319553],[123,-10,72,0.5183040164411068],[123,-10,73,0.516277652233839],[123,-10,74,0.5155374817550182],[123,-10,75,0.516199130564928],[123,-10,76,0.518635842949152],[123,-10,77,0.5225843489170074],[123,-10,78,0.5272134058177471],[123,-10,79,0.5321825668215752],[123,-9,64,0.5160944052040577],[123,-9,65,0.5158377215266228],[123,-9,66,0.5171901509165764],[123,-9,67,0.5189449973404408],[123,-9,68,0.5196611136198044],[123,-9,69,0.5185516700148582],[123,-9,70,0.5161886587738991],[123,-9,71,0.5134794749319553],[123,-9,72,0.5104915164411068],[123,-9,73,0.508465152233839],[123,-9,74,0.5077249817550182],[123,-9,75,0.508386630564928],[123,-9,76,0.510823342949152],[123,-9,77,0.5147718489170074],[123,-9,78,0.5194009058177471],[123,-9,79,0.5243700668215752],[123,-8,64,0.5082819052040577],[123,-8,65,0.5080252215266228],[123,-8,66,0.5093776509165764],[123,-8,67,0.5111324973404408],[123,-8,68,0.5118486136198044],[123,-8,69,0.5107391700148582],[123,-8,70,0.5083761587738991],[123,-8,71,0.5056669749319553],[123,-8,72,0.5026790164411068],[123,-8,73,0.500652652233839],[123,-8,74,0.49991248175501823],[123,-8,75,0.500574130564928],[123,-8,76,0.503010842949152],[123,-8,77,0.5069593489170074],[123,-8,78,0.5115884058177471],[123,-8,79,0.5165575668215752],[123,-7,64,0.5004694052040577],[123,-7,65,0.5002127215266228],[123,-7,66,0.5015651509165764],[123,-7,67,0.5033199973404408],[123,-7,68,0.5040361136198044],[123,-7,69,0.5029266700148582],[123,-7,70,0.5005636587738991],[123,-7,71,0.49785447493195534],[123,-7,72,0.4948665164411068],[123,-7,73,0.49284015223383904],[123,-7,74,0.49209998175501823],[123,-7,75,0.49276163056492805],[123,-7,76,0.495198342949152],[123,-7,77,0.49914684891700745],[123,-7,78,0.5037759058177471],[123,-7,79,0.5087450668215752],[123,-6,64,0.4926569052040577],[123,-6,65,0.49240022152662277],[123,-6,66,0.4937526509165764],[123,-6,67,0.49550749734044075],[123,-6,68,0.4962236136198044],[123,-6,69,0.49511417001485825],[123,-6,70,0.4927511587738991],[123,-6,71,0.49004197493195534],[123,-6,72,0.4870540164411068],[123,-6,73,0.48502765223383904],[123,-6,74,0.48428748175501823],[123,-6,75,0.48494913056492805],[123,-6,76,0.487385842949152],[123,-6,77,0.49133434891700745],[123,-6,78,0.4959634058177471],[123,-6,79,0.5009325668215752],[123,-5,64,0.4848444052040577],[123,-5,65,0.48458772152662277],[123,-5,66,0.4859401509165764],[123,-5,67,0.48769499734044075],[123,-5,68,0.4884111136198044],[123,-5,69,0.48730167001485825],[123,-5,70,0.4849386587738991],[123,-5,71,0.48222947493195534],[123,-5,72,0.4792415164411068],[123,-5,73,0.47721515223383904],[123,-5,74,0.47647498175501823],[123,-5,75,0.47713663056492805],[123,-5,76,0.479573342949152],[123,-5,77,0.48352184891700745],[123,-5,78,0.4881509058177471],[123,-5,79,0.49312006682157516],[123,-4,64,0.4770319052040577],[123,-4,65,0.47677522152662277],[123,-4,66,0.4781276509165764],[123,-4,67,0.47988249734044075],[123,-4,68,0.4805986136198044],[123,-4,69,0.47948917001485825],[123,-4,70,0.4771261587738991],[123,-4,71,0.47441697493195534],[123,-4,72,0.4714290164411068],[123,-4,73,0.46940265223383904],[123,-4,74,0.46866248175501823],[123,-4,75,0.46932413056492805],[123,-4,76,0.471760842949152],[123,-4,77,0.47570934891700745],[123,-4,78,0.4803384058177471],[123,-4,79,0.48530756682157516],[123,-3,64,0.4692194052040577],[123,-3,65,0.46896272152662277],[123,-3,66,0.4703151509165764],[123,-3,67,0.47206999734044075],[123,-3,68,0.4727861136198044],[123,-3,69,0.47167667001485825],[123,-3,70,0.4693136587738991],[123,-3,71,0.46660447493195534],[123,-3,72,0.4636165164411068],[123,-3,73,0.46159015223383904],[123,-3,74,0.46084998175501823],[123,-3,75,0.46151163056492805],[123,-3,76,0.463948342949152],[123,-3,77,0.46789684891700745],[123,-3,78,0.4725259058177471],[123,-3,79,0.47749506682157516],[123,-2,64,0.4614069052040577],[123,-2,65,0.46115022152662277],[123,-2,66,0.4625026509165764],[123,-2,67,0.46425749734044075],[123,-2,68,0.4649736136198044],[123,-2,69,0.46386417001485825],[123,-2,70,0.4615011587738991],[123,-2,71,0.45879197493195534],[123,-2,72,0.4558040164411068],[123,-2,73,0.45377765223383904],[123,-2,74,0.45303748175501823],[123,-2,75,0.45369913056492805],[123,-2,76,0.456135842949152],[123,-2,77,0.46008434891700745],[123,-2,78,0.4647134058177471],[123,-2,79,0.46968256682157516],[123,-1,64,0.4535944052040577],[123,-1,65,0.45333772152662277],[123,-1,66,0.4546901509165764],[123,-1,67,0.45644499734044075],[123,-1,68,0.4571611136198044],[123,-1,69,0.45605167001485825],[123,-1,70,0.4536886587738991],[123,-1,71,0.45097947493195534],[123,-1,72,0.4479915164411068],[123,-1,73,0.44596515223383904],[123,-1,74,0.44522498175501823],[123,-1,75,0.44588663056492805],[123,-1,76,0.448323342949152],[123,-1,77,0.45227184891700745],[123,-1,78,0.4569009058177471],[123,-1,79,0.46187006682157516],[123,0,64,0.4457819052040577],[123,0,65,0.44552522152662277],[123,0,66,0.4468776509165764],[123,0,67,0.44863249734044075],[123,0,68,0.4493486136198044],[123,0,69,0.44823917001485825],[123,0,70,0.4458761587738991],[123,0,71,0.44316697493195534],[123,0,72,0.4401790164411068],[123,0,73,0.43815265223383904],[123,0,74,0.43741248175501823],[123,0,75,0.43807413056492805],[123,0,76,0.440510842949152],[123,0,77,0.44445934891700745],[123,0,78,0.4490884058177471],[123,0,79,0.45405756682157516],[123,1,64,0.4379694052040577],[123,1,65,0.43771272152662277],[123,1,66,0.4390651509165764],[123,1,67,0.44081999734044075],[123,1,68,0.4415361136198044],[123,1,69,0.44042667001485825],[123,1,70,0.4380636587738991],[123,1,71,0.43535447493195534],[123,1,72,0.4323665164411068],[123,1,73,0.43034015223383904],[123,1,74,0.42959998175501823],[123,1,75,0.43026163056492805],[123,1,76,0.432698342949152],[123,1,77,0.43664684891700745],[123,1,78,0.4412759058177471],[123,1,79,0.44624506682157516],[123,2,64,0.4301569052040577],[123,2,65,0.42990022152662277],[123,2,66,0.4312526509165764],[123,2,67,0.43300749734044075],[123,2,68,0.4337236136198044],[123,2,69,0.43261417001485825],[123,2,70,0.4302511587738991],[123,2,71,0.42754197493195534],[123,2,72,0.4245540164411068],[123,2,73,0.42252765223383904],[123,2,74,0.42178748175501823],[123,2,75,0.42244913056492805],[123,2,76,0.424885842949152],[123,2,77,0.42883434891700745],[123,2,78,0.4334634058177471],[123,2,79,0.43843256682157516],[123,3,64,0.4223444052040577],[123,3,65,0.42208772152662277],[123,3,66,0.4234401509165764],[123,3,67,0.42519499734044075],[123,3,68,0.4259111136198044],[123,3,69,0.42480167001485825],[123,3,70,0.4224386587738991],[123,3,71,0.41972947493195534],[123,3,72,0.4167415164411068],[123,3,73,0.41471515223383904],[123,3,74,0.41397498175501823],[123,3,75,0.41463663056492805],[123,3,76,0.417073342949152],[123,3,77,0.42102184891700745],[123,3,78,0.4256509058177471],[123,3,79,0.43062006682157516],[123,4,64,0.4145319052040577],[123,4,65,0.41427522152662277],[123,4,66,0.4156276509165764],[123,4,67,0.41738249734044075],[123,4,68,0.4180986136198044],[123,4,69,0.41698917001485825],[123,4,70,0.4146261587738991],[123,4,71,0.41191697493195534],[123,4,72,0.4089290164411068],[123,4,73,0.40690265223383904],[123,4,74,0.40616248175501823],[123,4,75,0.40682413056492805],[123,4,76,0.409260842949152],[123,4,77,0.41320934891700745],[123,4,78,0.4178384058177471],[123,4,79,0.42280756682157516],[123,5,64,0.4067194052040577],[123,5,65,0.40646272152662277],[123,5,66,0.4078151509165764],[123,5,67,0.40956999734044075],[123,5,68,0.4102861136198044],[123,5,69,0.40917667001485825],[123,5,70,0.4068136587738991],[123,5,71,0.40410447493195534],[123,5,72,0.4011165164411068],[123,5,73,0.39909015223383904],[123,5,74,0.39834998175501823],[123,5,75,0.39901163056492805],[123,5,76,0.401448342949152],[123,5,77,0.40539684891700745],[123,5,78,0.4100259058177471],[123,5,79,0.41499506682157516],[123,6,64,0.3989069052040577],[123,6,65,0.39865022152662277],[123,6,66,0.4000026509165764],[123,6,67,0.40175749734044075],[123,6,68,0.4024736136198044],[123,6,69,0.40136417001485825],[123,6,70,0.3990011587738991],[123,6,71,0.39629197493195534],[123,6,72,0.3933040164411068],[123,6,73,0.39127765223383904],[123,6,74,0.39053748175501823],[123,6,75,0.39119913056492805],[123,6,76,0.393635842949152],[123,6,77,0.39758434891700745],[123,6,78,0.4022134058177471],[123,6,79,0.40718256682157516],[123,7,64,0.3910944052040577],[123,7,65,0.39083772152662277],[123,7,66,0.3921901509165764],[123,7,67,0.39394499734044075],[123,7,68,0.3946611136198044],[123,7,69,0.39355167001485825],[123,7,70,0.3911886587738991],[123,7,71,0.38847947493195534],[123,7,72,0.3854915164411068],[123,7,73,0.38346515223383904],[123,7,74,0.38272498175501823],[123,7,75,0.38338663056492805],[123,7,76,0.385823342949152],[123,7,77,0.38977184891700745],[123,7,78,0.3944009058177471],[123,7,79,0.39937006682157516],[123,8,64,0.3832819052040577],[123,8,65,0.38302522152662277],[123,8,66,0.3843776509165764],[123,8,67,0.38613249734044075],[123,8,68,0.3868486136198044],[123,8,69,0.38573917001485825],[123,8,70,0.3833761587738991],[123,8,71,0.38066697493195534],[123,8,72,0.3776790164411068],[123,8,73,0.37565265223383904],[123,8,74,0.37491248175501823],[123,8,75,0.37557413056492805],[123,8,76,0.378010842949152],[123,8,77,0.38195934891700745],[123,8,78,0.3865884058177471],[123,8,79,0.39155756682157516],[123,9,64,0.3754694052040577],[123,9,65,0.37521272152662277],[123,9,66,0.3765651509165764],[123,9,67,0.37831999734044075],[123,9,68,0.3790361136198044],[123,9,69,0.37792667001485825],[123,9,70,0.3755636587738991],[123,9,71,0.37285447493195534],[123,9,72,0.3698665164411068],[123,9,73,0.36784015223383904],[123,9,74,0.36709998175501823],[123,9,75,0.36776163056492805],[123,9,76,0.370198342949152],[123,9,77,0.37414684891700745],[123,9,78,0.3787759058177471],[123,9,79,0.38374506682157516],[123,10,64,0.3676569052040577],[123,10,65,0.36740022152662277],[123,10,66,0.3687526509165764],[123,10,67,0.37050749734044075],[123,10,68,0.3712236136198044],[123,10,69,0.37011417001485825],[123,10,70,0.3677511587738991],[123,10,71,0.36504197493195534],[123,10,72,0.3620540164411068],[123,10,73,0.36002765223383904],[123,10,74,0.35928748175501823],[123,10,75,0.35994913056492805],[123,10,76,0.362385842949152],[123,10,77,0.36633434891700745],[123,10,78,0.3709634058177471],[123,10,79,0.37593256682157516],[123,11,64,0.3598444052040577],[123,11,65,0.35958772152662277],[123,11,66,0.3609401509165764],[123,11,67,0.36269499734044075],[123,11,68,0.3634111136198044],[123,11,69,0.36230167001485825],[123,11,70,0.3599386587738991],[123,11,71,0.35722947493195534],[123,11,72,0.3542415164411068],[123,11,73,0.35221515223383904],[123,11,74,0.35147498175501823],[123,11,75,0.35213663056492805],[123,11,76,0.354573342949152],[123,11,77,0.35852184891700745],[123,11,78,0.3631509058177471],[123,11,79,0.36812006682157516],[123,12,64,0.3520319052040577],[123,12,65,0.35177522152662277],[123,12,66,0.3531276509165764],[123,12,67,0.35488249734044075],[123,12,68,0.3555986136198044],[123,12,69,0.35448917001485825],[123,12,70,0.3521261587738991],[123,12,71,0.34941697493195534],[123,12,72,0.3464290164411068],[123,12,73,0.34440265223383904],[123,12,74,0.34366248175501823],[123,12,75,0.34432413056492805],[123,12,76,0.346760842949152],[123,12,77,0.35070934891700745],[123,12,78,0.3553384058177471],[123,12,79,0.36030756682157516],[123,13,64,0.3442194052040577],[123,13,65,0.34396272152662277],[123,13,66,0.3453151509165764],[123,13,67,0.34706999734044075],[123,13,68,0.3477861136198044],[123,13,69,0.34667667001485825],[123,13,70,0.3443136587738991],[123,13,71,0.34160447493195534],[123,13,72,0.3386165164411068],[123,13,73,0.33659015223383904],[123,13,74,0.33584998175501823],[123,13,75,0.33651163056492805],[123,13,76,0.338948342949152],[123,13,77,0.34289684891700745],[123,13,78,0.3475259058177471],[123,13,79,0.35249506682157516],[123,14,64,0.3364069052040577],[123,14,65,0.33615022152662277],[123,14,66,0.3375026509165764],[123,14,67,0.33925749734044075],[123,14,68,0.3399736136198044],[123,14,69,0.33886417001485825],[123,14,70,0.3365011587738991],[123,14,71,0.33379197493195534],[123,14,72,0.3308040164411068],[123,14,73,0.32877765223383904],[123,14,74,0.32803748175501823],[123,14,75,0.32869913056492805],[123,14,76,0.331135842949152],[123,14,77,0.33508434891700745],[123,14,78,0.3397134058177471],[123,14,79,0.34468256682157516],[123,15,64,0.3285944052040577],[123,15,65,0.32833772152662277],[123,15,66,0.3296901509165764],[123,15,67,0.33144499734044075],[123,15,68,0.3321611136198044],[123,15,69,0.33105167001485825],[123,15,70,0.3286886587738991],[123,15,71,0.32597947493195534],[123,15,72,0.3229915164411068],[123,15,73,0.32096515223383904],[123,15,74,0.32022498175501823],[123,15,75,0.32088663056492805],[123,15,76,0.323323342949152],[123,15,77,0.32727184891700745],[123,15,78,0.3319009058177471],[123,15,79,0.33687006682157516],[123,16,64,0.3207819052040577],[123,16,65,0.32052522152662277],[123,16,66,0.3218776509165764],[123,16,67,0.32363249734044075],[123,16,68,0.3243486136198044],[123,16,69,0.32323917001485825],[123,16,70,0.3208761587738991],[123,16,71,0.31816697493195534],[123,16,72,0.3151790164411068],[123,16,73,0.31315265223383904],[123,16,74,0.31241248175501823],[123,16,75,0.31307413056492805],[123,16,76,0.315510842949152],[123,16,77,0.31945934891700745],[123,16,78,0.3240884058177471],[123,16,79,0.32905756682157516],[123,17,64,0.3129694052040577],[123,17,65,0.31271272152662277],[123,17,66,0.3140651509165764],[123,17,67,0.31581999734044075],[123,17,68,0.3165361136198044],[123,17,69,0.31542667001485825],[123,17,70,0.3130636587738991],[123,17,71,0.31035447493195534],[123,17,72,0.3073665164411068],[123,17,73,0.30534015223383904],[123,17,74,0.30459998175501823],[123,17,75,0.30526163056492805],[123,17,76,0.307698342949152],[123,17,77,0.31164684891700745],[123,17,78,0.3162759058177471],[123,17,79,0.32124506682157516],[123,18,64,0.3051569052040577],[123,18,65,0.30490022152662277],[123,18,66,0.3062526509165764],[123,18,67,0.30800749734044075],[123,18,68,0.3087236136198044],[123,18,69,0.30761417001485825],[123,18,70,0.3052511587738991],[123,18,71,0.30254197493195534],[123,18,72,0.2995540164411068],[123,18,73,0.29752765223383904],[123,18,74,0.29678748175501823],[123,18,75,0.29744913056492805],[123,18,76,0.299885842949152],[123,18,77,0.30383434891700745],[123,18,78,0.3084634058177471],[123,18,79,0.31343256682157516],[123,19,64,0.2973444052040577],[123,19,65,0.29708772152662277],[123,19,66,0.2984401509165764],[123,19,67,0.30019499734044075],[123,19,68,0.3009111136198044],[123,19,69,0.29980167001485825],[123,19,70,0.2974386587738991],[123,19,71,0.29472947493195534],[123,19,72,0.2917415164411068],[123,19,73,0.28971515223383904],[123,19,74,0.28897498175501823],[123,19,75,0.28963663056492805],[123,19,76,0.292073342949152],[123,19,77,0.29602184891700745],[123,19,78,0.3006509058177471],[123,19,79,0.30562006682157516],[123,20,64,0.2895319052040577],[123,20,65,0.28927522152662277],[123,20,66,0.2906276509165764],[123,20,67,0.29238249734044075],[123,20,68,0.2930986136198044],[123,20,69,0.29198917001485825],[123,20,70,0.2896261587738991],[123,20,71,0.28691697493195534],[123,20,72,0.2839290164411068],[123,20,73,0.28190265223383904],[123,20,74,0.28116248175501823],[123,20,75,0.28182413056492805],[123,20,76,0.284260842949152],[123,20,77,0.28820934891700745],[123,20,78,0.2928384058177471],[123,20,79,0.29780756682157516],[123,21,64,0.2817194052040577],[123,21,65,0.28146272152662277],[123,21,66,0.2828151509165764],[123,21,67,0.28456999734044075],[123,21,68,0.2852861136198044],[123,21,69,0.28417667001485825],[123,21,70,0.2818136587738991],[123,21,71,0.27910447493195534],[123,21,72,0.2761165164411068],[123,21,73,0.27409015223383904],[123,21,74,0.27334998175501823],[123,21,75,0.27401163056492805],[123,21,76,0.276448342949152],[123,21,77,0.28039684891700745],[123,21,78,0.2850259058177471],[123,21,79,0.28999506682157516],[123,22,64,0.2739069052040577],[123,22,65,0.27365022152662277],[123,22,66,0.2750026509165764],[123,22,67,0.27675749734044075],[123,22,68,0.2774736136198044],[123,22,69,0.27636417001485825],[123,22,70,0.2740011587738991],[123,22,71,0.27129197493195534],[123,22,72,0.2683040164411068],[123,22,73,0.26627765223383904],[123,22,74,0.26553748175501823],[123,22,75,0.26619913056492805],[123,22,76,0.268635842949152],[123,22,77,0.27258434891700745],[123,22,78,0.2772134058177471],[123,22,79,0.28218256682157516],[123,23,64,0.2660944052040577],[123,23,65,0.26583772152662277],[123,23,66,0.2671901509165764],[123,23,67,0.26894499734044075],[123,23,68,0.2696611136198044],[123,23,69,0.26855167001485825],[123,23,70,0.2661886587738991],[123,23,71,0.26347947493195534],[123,23,72,0.2604915164411068],[123,23,73,0.25846515223383904],[123,23,74,0.25772498175501823],[123,23,75,0.25838663056492805],[123,23,76,0.260823342949152],[123,23,77,0.26477184891700745],[123,23,78,0.2694009058177471],[123,23,79,0.27437006682157516],[123,24,64,0.2582819052040577],[123,24,65,0.25802522152662277],[123,24,66,0.2593776509165764],[123,24,67,0.26113249734044075],[123,24,68,0.2618486136198044],[123,24,69,0.26073917001485825],[123,24,70,0.2583761587738991],[123,24,71,0.25566697493195534],[123,24,72,0.2526790164411068],[123,24,73,0.25065265223383904],[123,24,74,0.24991248175501823],[123,24,75,0.25057413056492805],[123,24,76,0.253010842949152],[123,24,77,0.25695934891700745],[123,24,78,0.2615884058177471],[123,24,79,0.26655756682157516],[123,25,64,0.2504694052040577],[123,25,65,0.25021272152662277],[123,25,66,0.2515651509165764],[123,25,67,0.25331999734044075],[123,25,68,0.2540361136198044],[123,25,69,0.25292667001485825],[123,25,70,0.2505636587738991],[123,25,71,0.24785447493195534],[123,25,72,0.2448665164411068],[123,25,73,0.24284015223383904],[123,25,74,0.24209998175501823],[123,25,75,0.24276163056492805],[123,25,76,0.245198342949152],[123,25,77,0.24914684891700745],[123,25,78,0.2537759058177471],[123,25,79,0.25874506682157516],[123,26,64,0.2426569052040577],[123,26,65,0.24240022152662277],[123,26,66,0.24375265091657639],[123,26,67,0.24550749734044075],[123,26,68,0.24622361361980438],[123,26,69,0.24511417001485825],[123,26,70,0.24275115877389908],[123,26,71,0.24004197493195534],[123,26,72,0.2370540164411068],[123,26,73,0.23502765223383904],[123,26,74,0.23428748175501823],[123,26,75,0.23494913056492805],[123,26,76,0.237385842949152],[123,26,77,0.24133434891700745],[123,26,78,0.24596340581774712],[123,26,79,0.25093256682157516],[123,27,64,0.2348444052040577],[123,27,65,0.23458772152662277],[123,27,66,0.23594015091657639],[123,27,67,0.23769499734044075],[123,27,68,0.23841111361980438],[123,27,69,0.23730167001485825],[123,27,70,0.23493865877389908],[123,27,71,0.23222947493195534],[123,27,72,0.2292415164411068],[123,27,73,0.22721515223383904],[123,27,74,0.22647498175501823],[123,27,75,0.22713663056492805],[123,27,76,0.229573342949152],[123,27,77,0.23352184891700745],[123,27,78,0.23815090581774712],[123,27,79,0.24312006682157516],[123,28,64,0.2270319052040577],[123,28,65,0.22677522152662277],[123,28,66,0.22812765091657639],[123,28,67,0.22988249734044075],[123,28,68,0.23059861361980438],[123,28,69,0.22948917001485825],[123,28,70,0.22712615877389908],[123,28,71,0.22441697493195534],[123,28,72,0.2214290164411068],[123,28,73,0.21940265223383904],[123,28,74,0.21866248175501823],[123,28,75,0.21932413056492805],[123,28,76,0.221760842949152],[123,28,77,0.22570934891700745],[123,28,78,0.23033840581774712],[123,28,79,0.23530756682157516],[123,29,64,0.2192194052040577],[123,29,65,0.21896272152662277],[123,29,66,0.22031515091657639],[123,29,67,0.22206999734044075],[123,29,68,0.22278611361980438],[123,29,69,0.22167667001485825],[123,29,70,0.21931365877389908],[123,29,71,0.21660447493195534],[123,29,72,0.2136165164411068],[123,29,73,0.21159015223383904],[123,29,74,0.21084998175501823],[123,29,75,0.21151163056492805],[123,29,76,0.213948342949152],[123,29,77,0.21789684891700745],[123,29,78,0.22252590581774712],[123,29,79,0.22749506682157516],[123,30,64,0.2114069052040577],[123,30,65,0.21115022152662277],[123,30,66,0.21250265091657639],[123,30,67,0.21425749734044075],[123,30,68,0.21497361361980438],[123,30,69,0.21386417001485825],[123,30,70,0.21150115877389908],[123,30,71,0.20879197493195534],[123,30,72,0.2058040164411068],[123,30,73,0.20377765223383904],[123,30,74,0.20303748175501823],[123,30,75,0.20369913056492805],[123,30,76,0.206135842949152],[123,30,77,0.21008434891700745],[123,30,78,0.21471340581774712],[123,30,79,0.21968256682157516],[123,31,64,0.2035944052040577],[123,31,65,0.20333772152662277],[123,31,66,0.20469015091657639],[123,31,67,0.20644499734044075],[123,31,68,0.20716111361980438],[123,31,69,0.20605167001485825],[123,31,70,0.20368865877389908],[123,31,71,0.20097947493195534],[123,31,72,0.1979915164411068],[123,31,73,0.19596515223383904],[123,31,74,0.19522498175501823],[123,31,75,0.19588663056492805],[123,31,76,0.198323342949152],[123,31,77,0.20227184891700745],[123,31,78,0.20690090581774712],[123,31,79,0.21187006682157516],[123,32,64,0.1957819052040577],[123,32,65,0.19552522152662277],[123,32,66,0.19687765091657639],[123,32,67,0.19863249734044075],[123,32,68,0.19934861361980438],[123,32,69,0.19823917001485825],[123,32,70,0.19587615877389908],[123,32,71,0.19316697493195534],[123,32,72,0.1901790164411068],[123,32,73,0.18815265223383904],[123,32,74,0.18741248175501823],[123,32,75,0.18807413056492805],[123,32,76,0.190510842949152],[123,32,77,0.19445934891700745],[123,32,78,0.19908840581774712],[123,32,79,0.20405756682157516],[123,33,64,0.1879694052040577],[123,33,65,0.18771272152662277],[123,33,66,0.18906515091657639],[123,33,67,0.19081999734044075],[123,33,68,0.19153611361980438],[123,33,69,0.19042667001485825],[123,33,70,0.18806365877389908],[123,33,71,0.18535447493195534],[123,33,72,0.1823665164411068],[123,33,73,0.18034015223383904],[123,33,74,0.17959998175501823],[123,33,75,0.18026163056492805],[123,33,76,0.182698342949152],[123,33,77,0.18664684891700745],[123,33,78,0.19127590581774712],[123,33,79,0.19624506682157516],[123,34,64,0.1801569052040577],[123,34,65,0.17990022152662277],[123,34,66,0.18125265091657639],[123,34,67,0.18300749734044075],[123,34,68,0.18372361361980438],[123,34,69,0.18261417001485825],[123,34,70,0.18025115877389908],[123,34,71,0.17754197493195534],[123,34,72,0.1745540164411068],[123,34,73,0.17252765223383904],[123,34,74,0.17178748175501823],[123,34,75,0.17244913056492805],[123,34,76,0.174885842949152],[123,34,77,0.17883434891700745],[123,34,78,0.18346340581774712],[123,34,79,0.18843256682157516],[123,35,64,0.1723444052040577],[123,35,65,0.17208772152662277],[123,35,66,0.17344015091657639],[123,35,67,0.17519499734044075],[123,35,68,0.17591111361980438],[123,35,69,0.17480167001485825],[123,35,70,0.17243865877389908],[123,35,71,0.16972947493195534],[123,35,72,0.1667415164411068],[123,35,73,0.16471515223383904],[123,35,74,0.16397498175501823],[123,35,75,0.16463663056492805],[123,35,76,0.167073342949152],[123,35,77,0.17102184891700745],[123,35,78,0.17565090581774712],[123,35,79,0.18062006682157516],[123,36,64,0.1645319052040577],[123,36,65,0.16427522152662277],[123,36,66,0.16562765091657639],[123,36,67,0.16738249734044075],[123,36,68,0.16809861361980438],[123,36,69,0.16698917001485825],[123,36,70,0.16462615877389908],[123,36,71,0.16191697493195534],[123,36,72,0.1589290164411068],[123,36,73,0.15690265223383904],[123,36,74,0.15616248175501823],[123,36,75,0.15682413056492805],[123,36,76,0.159260842949152],[123,36,77,0.16320934891700745],[123,36,78,0.16783840581774712],[123,36,79,0.17280756682157516],[123,37,64,0.1567194052040577],[123,37,65,0.15646272152662277],[123,37,66,0.15781515091657639],[123,37,67,0.15956999734044075],[123,37,68,0.16028611361980438],[123,37,69,0.15917667001485825],[123,37,70,0.15681365877389908],[123,37,71,0.15410447493195534],[123,37,72,0.1511165164411068],[123,37,73,0.14909015223383904],[123,37,74,0.14834998175501823],[123,37,75,0.14901163056492805],[123,37,76,0.151448342949152],[123,37,77,0.15539684891700745],[123,37,78,0.16002590581774712],[123,37,79,0.16499506682157516],[123,38,64,0.1489069052040577],[123,38,65,0.14865022152662277],[123,38,66,0.15000265091657639],[123,38,67,0.15175749734044075],[123,38,68,0.15247361361980438],[123,38,69,0.15136417001485825],[123,38,70,0.14900115877389908],[123,38,71,0.14629197493195534],[123,38,72,0.1433040164411068],[123,38,73,0.14127765223383904],[123,38,74,0.14053748175501823],[123,38,75,0.14119913056492805],[123,38,76,0.143635842949152],[123,38,77,0.14758434891700745],[123,38,78,0.15221340581774712],[123,38,79,0.15718256682157516],[123,39,64,0.1410944052040577],[123,39,65,0.14083772152662277],[123,39,66,0.14219015091657639],[123,39,67,0.14394499734044075],[123,39,68,0.14466111361980438],[123,39,69,0.14355167001485825],[123,39,70,0.14118865877389908],[123,39,71,0.13847947493195534],[123,39,72,0.1354915164411068],[123,39,73,0.13346515223383904],[123,39,74,0.13272498175501823],[123,39,75,0.13338663056492805],[123,39,76,0.135823342949152],[123,39,77,0.13977184891700745],[123,39,78,0.14440090581774712],[123,39,79,0.14937006682157516],[123,40,64,0.1332819052040577],[123,40,65,0.13302522152662277],[123,40,66,0.13437765091657639],[123,40,67,0.13613249734044075],[123,40,68,0.13684861361980438],[123,40,69,0.13573917001485825],[123,40,70,0.13337615877389908],[123,40,71,0.13066697493195534],[123,40,72,0.1276790164411068],[123,40,73,0.12565265223383904],[123,40,74,0.12491248175501823],[123,40,75,0.12557413056492805],[123,40,76,0.128010842949152],[123,40,77,0.13195934891700745],[123,40,78,0.13658840581774712],[123,40,79,0.14155756682157516],[123,41,64,0.1254694052040577],[123,41,65,0.12521272152662277],[123,41,66,0.12656515091657639],[123,41,67,0.12831999734044075],[123,41,68,0.12903611361980438],[123,41,69,0.12792667001485825],[123,41,70,0.12556365877389908],[123,41,71,0.12285447493195534],[123,41,72,0.1198665164411068],[123,41,73,0.11784015223383904],[123,41,74,0.11709998175501823],[123,41,75,0.11776163056492805],[123,41,76,0.12019834294915199],[123,41,77,0.12414684891700745],[123,41,78,0.12877590581774712],[123,41,79,0.13374506682157516],[123,42,64,0.1176569052040577],[123,42,65,0.11740022152662277],[123,42,66,0.11875265091657639],[123,42,67,0.12050749734044075],[123,42,68,0.12122361361980438],[123,42,69,0.12011417001485825],[123,42,70,0.11775115877389908],[123,42,71,0.11504197493195534],[123,42,72,0.1120540164411068],[123,42,73,0.11002765223383904],[123,42,74,0.10928748175501823],[123,42,75,0.10994913056492805],[123,42,76,0.11238584294915199],[123,42,77,0.11633434891700745],[123,42,78,0.12096340581774712],[123,42,79,0.12593256682157516],[123,43,64,0.1098444052040577],[123,43,65,0.10958772152662277],[123,43,66,0.11094015091657639],[123,43,67,0.11269499734044075],[123,43,68,0.11341111361980438],[123,43,69,0.11230167001485825],[123,43,70,0.10993865877389908],[123,43,71,0.10722947493195534],[123,43,72,0.1042415164411068],[123,43,73,0.10221515223383904],[123,43,74,0.10147498175501823],[123,43,75,0.10213663056492805],[123,43,76,0.10457334294915199],[123,43,77,0.10852184891700745],[123,43,78,0.11315090581774712],[123,43,79,0.11812006682157516],[123,44,64,0.1020319052040577],[123,44,65,0.10177522152662277],[123,44,66,0.10312765091657639],[123,44,67,0.10488249734044075],[123,44,68,0.10559861361980438],[123,44,69,0.10448917001485825],[123,44,70,0.10212615877389908],[123,44,71,0.09941697493195534],[123,44,72,0.0964290164411068],[123,44,73,0.09440265223383904],[123,44,74,0.09366248175501823],[123,44,75,0.09432413056492805],[123,44,76,0.09676084294915199],[123,44,77,0.10070934891700745],[123,44,78,0.10533840581774712],[123,44,79,0.11030756682157516],[123,45,64,0.0942194052040577],[123,45,65,0.09396272152662277],[123,45,66,0.09531515091657639],[123,45,67,0.09706999734044075],[123,45,68,0.09778611361980438],[123,45,69,0.09667667001485825],[123,45,70,0.09431365877389908],[123,45,71,0.09160447493195534],[123,45,72,0.0886165164411068],[123,45,73,0.08659015223383904],[123,45,74,0.08584998175501823],[123,45,75,0.08651163056492805],[123,45,76,0.08894834294915199],[123,45,77,0.09289684891700745],[123,45,78,0.09752590581774712],[123,45,79,0.10249506682157516],[123,46,64,0.0864069052040577],[123,46,65,0.08615022152662277],[123,46,66,0.08750265091657639],[123,46,67,0.08925749734044075],[123,46,68,0.08997361361980438],[123,46,69,0.08886417001485825],[123,46,70,0.08650115877389908],[123,46,71,0.08379197493195534],[123,46,72,0.0808040164411068],[123,46,73,0.07877765223383904],[123,46,74,0.07803748175501823],[123,46,75,0.07869913056492805],[123,46,76,0.08113584294915199],[123,46,77,0.08508434891700745],[123,46,78,0.08971340581774712],[123,46,79,0.09468256682157516],[123,47,64,0.0785944052040577],[123,47,65,0.07833772152662277],[123,47,66,0.07969015091657639],[123,47,67,0.08144499734044075],[123,47,68,0.08216111361980438],[123,47,69,0.08105167001485825],[123,47,70,0.07868865877389908],[123,47,71,0.07597947493195534],[123,47,72,0.0729915164411068],[123,47,73,0.07096515223383904],[123,47,74,0.07022498175501823],[123,47,75,0.07088663056492805],[123,47,76,0.07332334294915199],[123,47,77,0.07727184891700745],[123,47,78,0.08190090581774712],[123,47,79,0.08687006682157516],[123,48,64,0.0707819052040577],[123,48,65,0.07052522152662277],[123,48,66,0.07187765091657639],[123,48,67,0.07363249734044075],[123,48,68,0.07434861361980438],[123,48,69,0.07323917001485825],[123,48,70,0.07087615877389908],[123,48,71,0.06816697493195534],[123,48,72,0.0651790164411068],[123,48,73,0.06315265223383904],[123,48,74,0.062412481755018234],[123,48,75,0.06307413056492805],[123,48,76,0.06551084294915199],[123,48,77,0.06945934891700745],[123,48,78,0.07408840581774712],[123,48,79,0.07905756682157516],[123,49,64,0.0629694052040577],[123,49,65,0.06271272152662277],[123,49,66,0.06406515091657639],[123,49,67,0.06581999734044075],[123,49,68,0.06653611361980438],[123,49,69,0.06542667001485825],[123,49,70,0.06306365877389908],[123,49,71,0.06035447493195534],[123,49,72,0.057366516441106796],[123,49,73,0.055340152233839035],[123,49,74,0.054599981755018234],[123,49,75,0.055261630564928055],[123,49,76,0.05769834294915199],[123,49,77,0.061646848917007446],[123,49,78,0.06627590581774712],[123,49,79,0.07124506682157516],[123,50,64,0.055156905204057693],[123,50,65,0.05490022152662277],[123,50,66,0.056252650916576385],[123,50,67,0.05800749734044075],[123,50,68,0.05872361361980438],[123,50,69,0.057614170014858246],[123,50,70,0.05525115877389908],[123,50,71,0.05254197493195534],[123,50,72,0.049554016441106796],[123,50,73,0.047527652233839035],[123,50,74,0.046787481755018234],[123,50,75,0.047449130564928055],[123,50,76,0.04988584294915199],[123,50,77,0.053834348917007446],[123,50,78,0.058463405817747116],[123,50,79,0.06343256682157516],[123,51,64,0.047344405204057693],[123,51,65,0.04708772152662277],[123,51,66,0.048440150916576385],[123,51,67,0.05019499734044075],[123,51,68,0.05091111361980438],[123,51,69,0.049801670014858246],[123,51,70,0.04743865877389908],[123,51,71,0.04472947493195534],[123,51,72,0.041741516441106796],[123,51,73,0.039715152233839035],[123,51,74,0.038974981755018234],[123,51,75,0.039636630564928055],[123,51,76,0.04207334294915199],[123,51,77,0.046021848917007446],[123,51,78,0.050650905817747116],[123,51,79,0.055620066821575165],[123,52,64,0.039531905204057693],[123,52,65,0.03927522152662277],[123,52,66,0.040627650916576385],[123,52,67,0.04238249734044075],[123,52,68,0.04309861361980438],[123,52,69,0.041989170014858246],[123,52,70,0.03962615877389908],[123,52,71,0.03691697493195534],[123,52,72,0.033929016441106796],[123,52,73,0.031902652233839035],[123,52,74,0.031162481755018234],[123,52,75,0.031824130564928055],[123,52,76,0.03426084294915199],[123,52,77,0.038209348917007446],[123,52,78,0.042838405817747116],[123,52,79,0.047807566821575165],[123,53,64,0.031719405204057693],[123,53,65,0.03146272152662277],[123,53,66,0.032815150916576385],[123,53,67,0.03456999734044075],[123,53,68,0.03528611361980438],[123,53,69,0.034176670014858246],[123,53,70,0.03181365877389908],[123,53,71,0.029104474931955338],[123,53,72,0.026116516441106796],[123,53,73,0.024090152233839035],[123,53,74,0.023349981755018234],[123,53,75,0.024011630564928055],[123,53,76,0.026448342949151993],[123,53,77,0.030396848917007446],[123,53,78,0.035025905817747116],[123,53,79,0.039995066821575165],[123,54,64,0.023906905204057693],[123,54,65,0.023650221526622772],[123,54,66,0.025002650916576385],[123,54,67,0.02675749734044075],[123,54,68,0.027473613619804382],[123,54,69,0.026364170014858246],[123,54,70,0.02400115877389908],[123,54,71,0.021291974931955338],[123,54,72,0.018304016441106796],[123,54,73,0.016277652233839035],[123,54,74,0.015537481755018234],[123,54,75,0.016199130564928055],[123,54,76,0.018635842949151993],[123,54,77,0.022584348917007446],[123,54,78,0.027213405817747116],[123,54,79,0.032182566821575165],[123,55,64,0.016094405204057693],[123,55,65,0.015837721526622772],[123,55,66,0.017190150916576385],[123,55,67,0.01894499734044075],[123,55,68,0.019661113619804382],[123,55,69,0.018551670014858246],[123,55,70,0.01618865877389908],[123,55,71,0.013479474931955338],[123,55,72,0.010491516441106796],[123,55,73,0.008465152233839035],[123,55,74,0.007724981755018234],[123,55,75,0.008386630564928055],[123,55,76,0.010823342949151993],[123,55,77,0.014771848917007446],[123,55,78,0.019400905817747116],[123,55,79,0.024370066821575165],[123,56,64,0.008281905204057693],[123,56,65,0.008025221526622772],[123,56,66,0.009377650916576385],[123,56,67,0.01113249734044075],[123,56,68,0.011848613619804382],[123,56,69,0.010739170014858246],[123,56,70,0.008376158773899078],[123,56,71,0.0056669749319553375],[123,56,72,0.0026790164411067963],[123,56,73,6.52652233839035E-4],[123,56,74,-8.751824498176575E-5],[123,56,75,5.741305649280548E-4],[123,56,76,0.003010842949151993],[123,56,77,0.006959348917007446],[123,56,78,0.011588405817747116],[123,56,79,0.016557566821575165],[123,57,64,4.694052040576935E-4],[123,57,65,2.1272152662277222E-4],[123,57,66,0.0015651509165763855],[123,57,67,0.00331999734044075],[123,57,68,0.004036113619804382],[123,57,69,0.002926670014858246],[123,57,70,5.636587738990784E-4],[123,57,71,-0.0021455250680446625],[123,57,72,-0.005133483558893204],[123,57,73,-0.007159847766160965],[123,57,74,-0.007900018244981766],[123,57,75,-0.007238369435071945],[123,57,76,-0.004801657050848007],[123,57,77,-8.531510829925537E-4],[123,57,78,0.003775905817747116],[123,57,79,0.008745066821575165],[123,58,64,-0.0073430947959423065],[123,58,65,-0.007599778473377228],[123,58,66,-0.0062473490834236145],[123,58,67,-0.00449250265955925],[123,58,68,-0.0037763863801956177],[123,58,69,-0.004885829985141754],[123,58,70,-0.007248841226100922],[123,58,71,-0.009958025068044662],[123,58,72,-0.012945983558893204],[123,58,73,-0.014972347766160965],[123,58,74,-0.015712518244981766],[123,58,75,-0.015050869435071945],[123,58,76,-0.012614157050848007],[123,58,77,-0.008665651082992554],[123,58,78,-0.004036594182252884],[123,58,79,9.325668215751648E-4],[123,59,64,-0.015155594795942307],[123,59,65,-0.015412278473377228],[123,59,66,-0.014059849083423615],[123,59,67,-0.01230500265955925],[123,59,68,-0.011588886380195618],[123,59,69,-0.012698329985141754],[123,59,70,-0.015061341226100922],[123,59,71,-0.017770525068044662],[123,59,72,-0.020758483558893204],[123,59,73,-0.022784847766160965],[123,59,74,-0.023525018244981766],[123,59,75,-0.022863369435071945],[123,59,76,-0.020426657050848007],[123,59,77,-0.016478151082992554],[123,59,78,-0.011849094182252884],[123,59,79,-0.006879933178424835],[123,60,64,-0.022968094795942307],[123,60,65,-0.023224778473377228],[123,60,66,-0.021872349083423615],[123,60,67,-0.02011750265955925],[123,60,68,-0.019401386380195618],[123,60,69,-0.020510829985141754],[123,60,70,-0.02287384122610092],[123,60,71,-0.025583025068044662],[123,60,72,-0.028570983558893204],[123,60,73,-0.030597347766160965],[123,60,74,-0.031337518244981766],[123,60,75,-0.030675869435071945],[123,60,76,-0.028239157050848007],[123,60,77,-0.024290651082992554],[123,60,78,-0.019661594182252884],[123,60,79,-0.014692433178424835],[123,61,64,-0.030780594795942307],[123,61,65,-0.031037278473377228],[123,61,66,-0.029684849083423615],[123,61,67,-0.02793000265955925],[123,61,68,-0.027213886380195618],[123,61,69,-0.028323329985141754],[123,61,70,-0.03068634122610092],[123,61,71,-0.03339552506804466],[123,61,72,-0.036383483558893204],[123,61,73,-0.038409847766160965],[123,61,74,-0.039150018244981766],[123,61,75,-0.038488369435071945],[123,61,76,-0.03605165705084801],[123,61,77,-0.032103151082992554],[123,61,78,-0.027474094182252884],[123,61,79,-0.022504933178424835],[123,62,64,-0.038593094795942307],[123,62,65,-0.03884977847337723],[123,62,66,-0.037497349083423615],[123,62,67,-0.03574250265955925],[123,62,68,-0.03502638638019562],[123,62,69,-0.036135829985141754],[123,62,70,-0.03849884122610092],[123,62,71,-0.04120802506804466],[123,62,72,-0.044195983558893204],[123,62,73,-0.046222347766160965],[123,62,74,-0.046962518244981766],[123,62,75,-0.046300869435071945],[123,62,76,-0.04386415705084801],[123,62,77,-0.039915651082992554],[123,62,78,-0.035286594182252884],[123,62,79,-0.030317433178424835],[123,63,64,-0.046405594795942307],[123,63,65,-0.04666227847337723],[123,63,66,-0.045309849083423615],[123,63,67,-0.04355500265955925],[123,63,68,-0.04283888638019562],[123,63,69,-0.043948329985141754],[123,63,70,-0.04631134122610092],[123,63,71,-0.04902052506804466],[123,63,72,-0.052008483558893204],[123,63,73,-0.054034847766160965],[123,63,74,-0.054775018244981766],[123,63,75,-0.054113369435071945],[123,63,76,-0.05167665705084801],[123,63,77,-0.047728151082992554],[123,63,78,-0.043099094182252884],[123,63,79,-0.038129933178424835],[123,64,64,-0.054218094795942307],[123,64,65,-0.05447477847337723],[123,64,66,-0.053122349083423615],[123,64,67,-0.05136750265955925],[123,64,68,-0.05065138638019562],[123,64,69,-0.051760829985141754],[123,64,70,-0.05412384122610092],[123,64,71,-0.05683302506804466],[123,64,72,-0.059820983558893204],[123,64,73,-0.061847347766160965],[123,64,74,-0.06258751824498177],[123,64,75,-0.061925869435071945],[123,64,76,-0.05948915705084801],[123,64,77,-0.055540651082992554],[123,64,78,-0.050911594182252884],[123,64,79,-0.045942433178424835],[123,65,64,-0.062030594795942307],[123,65,65,-0.06228727847337723],[123,65,66,-0.060934849083423615],[123,65,67,-0.05918000265955925],[123,65,68,-0.05846388638019562],[123,65,69,-0.059573329985141754],[123,65,70,-0.06193634122610092],[123,65,71,-0.06464552506804466],[123,65,72,-0.0676334835588932],[123,65,73,-0.06965984776616096],[123,65,74,-0.07040001824498177],[123,65,75,-0.06973836943507195],[123,65,76,-0.06730165705084801],[123,65,77,-0.06335315108299255],[123,65,78,-0.058724094182252884],[123,65,79,-0.053754933178424835],[123,66,64,-0.0698430947959423],[123,66,65,-0.07009977847337723],[123,66,66,-0.06874734908342361],[123,66,67,-0.06699250265955925],[123,66,68,-0.06627638638019562],[123,66,69,-0.06738582998514175],[123,66,70,-0.06974884122610092],[123,66,71,-0.07245802506804466],[123,66,72,-0.0754459835588932],[123,66,73,-0.07747234776616096],[123,66,74,-0.07821251824498177],[123,66,75,-0.07755086943507195],[123,66,76,-0.07511415705084801],[123,66,77,-0.07116565108299255],[123,66,78,-0.06653659418225288],[123,66,79,-0.061567433178424835],[123,67,64,-0.0776555947959423],[123,67,65,-0.07791227847337723],[123,67,66,-0.07655984908342361],[123,67,67,-0.07480500265955925],[123,67,68,-0.07408888638019562],[123,67,69,-0.07519832998514175],[123,67,70,-0.07756134122610092],[123,67,71,-0.08027052506804466],[123,67,72,-0.0832584835588932],[123,67,73,-0.08528484776616096],[123,67,74,-0.08602501824498177],[123,67,75,-0.08536336943507195],[123,67,76,-0.08292665705084801],[123,67,77,-0.07897815108299255],[123,67,78,-0.07434909418225288],[123,67,79,-0.06937993317842484],[123,68,64,-0.0854680947959423],[123,68,65,-0.08572477847337723],[123,68,66,-0.08437234908342361],[123,68,67,-0.08261750265955925],[123,68,68,-0.08190138638019562],[123,68,69,-0.08301082998514175],[123,68,70,-0.08537384122610092],[123,68,71,-0.08808302506804466],[123,68,72,-0.0910709835588932],[123,68,73,-0.09309734776616096],[123,68,74,-0.09383751824498177],[123,68,75,-0.09317586943507195],[123,68,76,-0.09073915705084801],[123,68,77,-0.08679065108299255],[123,68,78,-0.08216159418225288],[123,68,79,-0.07719243317842484],[123,69,64,-0.0932805947959423],[123,69,65,-0.09353727847337723],[123,69,66,-0.09218484908342361],[123,69,67,-0.09043000265955925],[123,69,68,-0.08971388638019562],[123,69,69,-0.09082332998514175],[123,69,70,-0.09318634122610092],[123,69,71,-0.09589552506804466],[123,69,72,-0.0988834835588932],[123,69,73,-0.10090984776616096],[123,69,74,-0.10165001824498177],[123,69,75,-0.10098836943507195],[123,69,76,-0.09855165705084801],[123,69,77,-0.09460315108299255],[123,69,78,-0.08997409418225288],[123,69,79,-0.08500493317842484],[123,70,64,-0.1010930947959423],[123,70,65,-0.10134977847337723],[123,70,66,-0.09999734908342361],[123,70,67,-0.09824250265955925],[123,70,68,-0.09752638638019562],[123,70,69,-0.09863582998514175],[123,70,70,-0.10099884122610092],[123,70,71,-0.10370802506804466],[123,70,72,-0.1066959835588932],[123,70,73,-0.10872234776616096],[123,70,74,-0.10946251824498177],[123,70,75,-0.10880086943507195],[123,70,76,-0.10636415705084801],[123,70,77,-0.10241565108299255],[123,70,78,-0.09778659418225288],[123,70,79,-0.09281743317842484],[123,71,64,-0.1089055947959423],[123,71,65,-0.10916227847337723],[123,71,66,-0.10780984908342361],[123,71,67,-0.10605500265955925],[123,71,68,-0.10533888638019562],[123,71,69,-0.10644832998514175],[123,71,70,-0.10881134122610092],[123,71,71,-0.11152052506804466],[123,71,72,-0.1145084835588932],[123,71,73,-0.11653484776616096],[123,71,74,-0.11727501824498177],[123,71,75,-0.11661336943507195],[123,71,76,-0.11417665705084801],[123,71,77,-0.11022815108299255],[123,71,78,-0.10559909418225288],[123,71,79,-0.10062993317842484],[123,72,64,-0.1167180947959423],[123,72,65,-0.11697477847337723],[123,72,66,-0.11562234908342361],[123,72,67,-0.11386750265955925],[123,72,68,-0.11315138638019562],[123,72,69,-0.11426082998514175],[123,72,70,-0.11662384122610092],[123,72,71,-0.11933302506804466],[123,72,72,-0.1223209835588932],[123,72,73,-0.12434734776616096],[123,72,74,-0.12508751824498177],[123,72,75,-0.12442586943507195],[123,72,76,-0.12198915705084801],[123,72,77,-0.11804065108299255],[123,72,78,-0.11341159418225288],[123,72,79,-0.10844243317842484],[123,73,64,-0.1245305947959423],[123,73,65,-0.12478727847337723],[123,73,66,-0.12343484908342361],[123,73,67,-0.12168000265955925],[123,73,68,-0.12096388638019562],[123,73,69,-0.12207332998514175],[123,73,70,-0.12443634122610092],[123,73,71,-0.12714552506804466],[123,73,72,-0.1301334835588932],[123,73,73,-0.13215984776616096],[123,73,74,-0.13290001824498177],[123,73,75,-0.13223836943507195],[123,73,76,-0.129801657050848],[123,73,77,-0.12585315108299255],[123,73,78,-0.12122409418225288],[123,73,79,-0.11625493317842484],[123,74,64,-0.1323430947959423],[123,74,65,-0.13259977847337723],[123,74,66,-0.13124734908342361],[123,74,67,-0.12949250265955925],[123,74,68,-0.12877638638019562],[123,74,69,-0.12988582998514175],[123,74,70,-0.13224884122610092],[123,74,71,-0.13495802506804466],[123,74,72,-0.1379459835588932],[123,74,73,-0.13997234776616096],[123,74,74,-0.14071251824498177],[123,74,75,-0.14005086943507195],[123,74,76,-0.137614157050848],[123,74,77,-0.13366565108299255],[123,74,78,-0.12903659418225288],[123,74,79,-0.12406743317842484],[123,75,64,-0.1401555947959423],[123,75,65,-0.14041227847337723],[123,75,66,-0.13905984908342361],[123,75,67,-0.13730500265955925],[123,75,68,-0.13658888638019562],[123,75,69,-0.13769832998514175],[123,75,70,-0.14006134122610092],[123,75,71,-0.14277052506804466],[123,75,72,-0.1457584835588932],[123,75,73,-0.14778484776616096],[123,75,74,-0.14852501824498177],[123,75,75,-0.14786336943507195],[123,75,76,-0.145426657050848],[123,75,77,-0.14147815108299255],[123,75,78,-0.13684909418225288],[123,75,79,-0.13187993317842484],[123,76,64,-0.1479680947959423],[123,76,65,-0.14822477847337723],[123,76,66,-0.14687234908342361],[123,76,67,-0.14511750265955925],[123,76,68,-0.14440138638019562],[123,76,69,-0.14551082998514175],[123,76,70,-0.14787384122610092],[123,76,71,-0.15058302506804466],[123,76,72,-0.1535709835588932],[123,76,73,-0.15559734776616096],[123,76,74,-0.15633751824498177],[123,76,75,-0.15567586943507195],[123,76,76,-0.153239157050848],[123,76,77,-0.14929065108299255],[123,76,78,-0.14466159418225288],[123,76,79,-0.13969243317842484],[123,77,64,-0.1557805947959423],[123,77,65,-0.15603727847337723],[123,77,66,-0.15468484908342361],[123,77,67,-0.15293000265955925],[123,77,68,-0.15221388638019562],[123,77,69,-0.15332332998514175],[123,77,70,-0.15568634122610092],[123,77,71,-0.15839552506804466],[123,77,72,-0.1613834835588932],[123,77,73,-0.16340984776616096],[123,77,74,-0.16415001824498177],[123,77,75,-0.16348836943507195],[123,77,76,-0.161051657050848],[123,77,77,-0.15710315108299255],[123,77,78,-0.15247409418225288],[123,77,79,-0.14750493317842484],[123,78,64,-0.1635930947959423],[123,78,65,-0.16384977847337723],[123,78,66,-0.16249734908342361],[123,78,67,-0.16074250265955925],[123,78,68,-0.16002638638019562],[123,78,69,-0.16113582998514175],[123,78,70,-0.16349884122610092],[123,78,71,-0.16620802506804466],[123,78,72,-0.1691959835588932],[123,78,73,-0.17122234776616096],[123,78,74,-0.17196251824498177],[123,78,75,-0.17130086943507195],[123,78,76,-0.168864157050848],[123,78,77,-0.16491565108299255],[123,78,78,-0.16028659418225288],[123,78,79,-0.15531743317842484],[123,79,64,-0.1714055947959423],[123,79,65,-0.17166227847337723],[123,79,66,-0.17030984908342361],[123,79,67,-0.16855500265955925],[123,79,68,-0.16783888638019562],[123,79,69,-0.16894832998514175],[123,79,70,-0.17131134122610092],[123,79,71,-0.17402052506804466],[123,79,72,-0.1770084835588932],[123,79,73,-0.17903484776616096],[123,79,74,-0.17977501824498177],[123,79,75,-0.17911336943507195],[123,79,76,-0.176676657050848],[123,79,77,-0.17272815108299255],[123,79,78,-0.16809909418225288],[123,79,79,-0.16312993317842484],[123,80,64,-0.1792180947959423],[123,80,65,-0.17947477847337723],[123,80,66,-0.17812234908342361],[123,80,67,-0.17636750265955925],[123,80,68,-0.17565138638019562],[123,80,69,-0.17676082998514175],[123,80,70,-0.17912384122610092],[123,80,71,-0.18183302506804466],[123,80,72,-0.1848209835588932],[123,80,73,-0.18684734776616096],[123,80,74,-0.18758751824498177],[123,80,75,-0.18692586943507195],[123,80,76,-0.184489157050848],[123,80,77,-0.18054065108299255],[123,80,78,-0.17591159418225288],[123,80,79,-0.17094243317842484],[123,81,64,-0.1870305947959423],[123,81,65,-0.18728727847337723],[123,81,66,-0.18593484908342361],[123,81,67,-0.18418000265955925],[123,81,68,-0.18346388638019562],[123,81,69,-0.18457332998514175],[123,81,70,-0.18693634122610092],[123,81,71,-0.18964552506804466],[123,81,72,-0.1926334835588932],[123,81,73,-0.19465984776616096],[123,81,74,-0.19540001824498177],[123,81,75,-0.19473836943507195],[123,81,76,-0.192301657050848],[123,81,77,-0.18835315108299255],[123,81,78,-0.18372409418225288],[123,81,79,-0.17875493317842484],[123,82,64,-0.1948430947959423],[123,82,65,-0.19509977847337723],[123,82,66,-0.19374734908342361],[123,82,67,-0.19199250265955925],[123,82,68,-0.19127638638019562],[123,82,69,-0.19238582998514175],[123,82,70,-0.19474884122610092],[123,82,71,-0.19745802506804466],[123,82,72,-0.2004459835588932],[123,82,73,-0.20247234776616096],[123,82,74,-0.20321251824498177],[123,82,75,-0.20255086943507195],[123,82,76,-0.200114157050848],[123,82,77,-0.19616565108299255],[123,82,78,-0.19153659418225288],[123,82,79,-0.18656743317842484],[123,83,64,-0.2026555947959423],[123,83,65,-0.20291227847337723],[123,83,66,-0.20155984908342361],[123,83,67,-0.19980500265955925],[123,83,68,-0.19908888638019562],[123,83,69,-0.20019832998514175],[123,83,70,-0.20256134122610092],[123,83,71,-0.20527052506804466],[123,83,72,-0.2082584835588932],[123,83,73,-0.21028484776616096],[123,83,74,-0.21102501824498177],[123,83,75,-0.21036336943507195],[123,83,76,-0.207926657050848],[123,83,77,-0.20397815108299255],[123,83,78,-0.19934909418225288],[123,83,79,-0.19437993317842484],[123,84,64,-0.2104680947959423],[123,84,65,-0.21072477847337723],[123,84,66,-0.20937234908342361],[123,84,67,-0.20761750265955925],[123,84,68,-0.20690138638019562],[123,84,69,-0.20801082998514175],[123,84,70,-0.21037384122610092],[123,84,71,-0.21308302506804466],[123,84,72,-0.2160709835588932],[123,84,73,-0.21809734776616096],[123,84,74,-0.21883751824498177],[123,84,75,-0.21817586943507195],[123,84,76,-0.215739157050848],[123,84,77,-0.21179065108299255],[123,84,78,-0.20716159418225288],[123,84,79,-0.20219243317842484],[123,85,64,-0.2182805947959423],[123,85,65,-0.21853727847337723],[123,85,66,-0.21718484908342361],[123,85,67,-0.21543000265955925],[123,85,68,-0.21471388638019562],[123,85,69,-0.21582332998514175],[123,85,70,-0.21818634122610092],[123,85,71,-0.22089552506804466],[123,85,72,-0.2238834835588932],[123,85,73,-0.22590984776616096],[123,85,74,-0.22665001824498177],[123,85,75,-0.22598836943507195],[123,85,76,-0.223551657050848],[123,85,77,-0.21960315108299255],[123,85,78,-0.21497409418225288],[123,85,79,-0.21000493317842484],[123,86,64,-0.2260930947959423],[123,86,65,-0.22634977847337723],[123,86,66,-0.22499734908342361],[123,86,67,-0.22324250265955925],[123,86,68,-0.22252638638019562],[123,86,69,-0.22363582998514175],[123,86,70,-0.22599884122610092],[123,86,71,-0.22870802506804466],[123,86,72,-0.2316959835588932],[123,86,73,-0.23372234776616096],[123,86,74,-0.23446251824498177],[123,86,75,-0.23380086943507195],[123,86,76,-0.231364157050848],[123,86,77,-0.22741565108299255],[123,86,78,-0.22278659418225288],[123,86,79,-0.21781743317842484],[123,87,64,-0.2339055947959423],[123,87,65,-0.23416227847337723],[123,87,66,-0.23280984908342361],[123,87,67,-0.23105500265955925],[123,87,68,-0.23033888638019562],[123,87,69,-0.23144832998514175],[123,87,70,-0.23381134122610092],[123,87,71,-0.23652052506804466],[123,87,72,-0.2395084835588932],[123,87,73,-0.24153484776616096],[123,87,74,-0.24227501824498177],[123,87,75,-0.24161336943507195],[123,87,76,-0.239176657050848],[123,87,77,-0.23522815108299255],[123,87,78,-0.23059909418225288],[123,87,79,-0.22562993317842484],[123,88,64,-0.2417180947959423],[123,88,65,-0.24197477847337723],[123,88,66,-0.24062234908342361],[123,88,67,-0.23886750265955925],[123,88,68,-0.23815138638019562],[123,88,69,-0.23926082998514175],[123,88,70,-0.24162384122610092],[123,88,71,-0.24433302506804466],[123,88,72,-0.2473209835588932],[123,88,73,-0.24934734776616096],[123,88,74,-0.25008751824498177],[123,88,75,-0.24942586943507195],[123,88,76,-0.246989157050848],[123,88,77,-0.24304065108299255],[123,88,78,-0.23841159418225288],[123,88,79,-0.23344243317842484],[123,89,64,-0.2495305947959423],[123,89,65,-0.24978727847337723],[123,89,66,-0.24843484908342361],[123,89,67,-0.24668000265955925],[123,89,68,-0.24596388638019562],[123,89,69,-0.24707332998514175],[123,89,70,-0.24943634122610092],[123,89,71,-0.25214552506804466],[123,89,72,-0.2551334835588932],[123,89,73,-0.25715984776616096],[123,89,74,-0.25790001824498177],[123,89,75,-0.25723836943507195],[123,89,76,-0.254801657050848],[123,89,77,-0.25085315108299255],[123,89,78,-0.24622409418225288],[123,89,79,-0.24125493317842484],[123,90,64,-0.2573430947959423],[123,90,65,-0.25759977847337723],[123,90,66,-0.2562473490834236],[123,90,67,-0.25449250265955925],[123,90,68,-0.2537763863801956],[123,90,69,-0.25488582998514175],[123,90,70,-0.2572488412261009],[123,90,71,-0.25995802506804466],[123,90,72,-0.2629459835588932],[123,90,73,-0.26497234776616096],[123,90,74,-0.26571251824498177],[123,90,75,-0.26505086943507195],[123,90,76,-0.262614157050848],[123,90,77,-0.25866565108299255],[123,90,78,-0.2540365941822529],[123,90,79,-0.24906743317842484],[123,91,64,-0.2651555947959423],[123,91,65,-0.26541227847337723],[123,91,66,-0.2640598490834236],[123,91,67,-0.26230500265955925],[123,91,68,-0.2615888863801956],[123,91,69,-0.26269832998514175],[123,91,70,-0.2650613412261009],[123,91,71,-0.26777052506804466],[123,91,72,-0.2707584835588932],[123,91,73,-0.27278484776616096],[123,91,74,-0.27352501824498177],[123,91,75,-0.27286336943507195],[123,91,76,-0.270426657050848],[123,91,77,-0.26647815108299255],[123,91,78,-0.2618490941822529],[123,91,79,-0.25687993317842484],[123,92,64,-0.2729680947959423],[123,92,65,-0.27322477847337723],[123,92,66,-0.2718723490834236],[123,92,67,-0.27011750265955925],[123,92,68,-0.2694013863801956],[123,92,69,-0.27051082998514175],[123,92,70,-0.2728738412261009],[123,92,71,-0.27558302506804466],[123,92,72,-0.2785709835588932],[123,92,73,-0.28059734776616096],[123,92,74,-0.28133751824498177],[123,92,75,-0.28067586943507195],[123,92,76,-0.278239157050848],[123,92,77,-0.27429065108299255],[123,92,78,-0.2696615941822529],[123,92,79,-0.26469243317842484],[123,93,64,-0.2807805947959423],[123,93,65,-0.28103727847337723],[123,93,66,-0.2796848490834236],[123,93,67,-0.27793000265955925],[123,93,68,-0.2772138863801956],[123,93,69,-0.27832332998514175],[123,93,70,-0.2806863412261009],[123,93,71,-0.28339552506804466],[123,93,72,-0.2863834835588932],[123,93,73,-0.28840984776616096],[123,93,74,-0.28915001824498177],[123,93,75,-0.28848836943507195],[123,93,76,-0.286051657050848],[123,93,77,-0.28210315108299255],[123,93,78,-0.2774740941822529],[123,93,79,-0.27250493317842484],[123,94,64,-0.2885930947959423],[123,94,65,-0.28884977847337723],[123,94,66,-0.2874973490834236],[123,94,67,-0.28574250265955925],[123,94,68,-0.2850263863801956],[123,94,69,-0.28613582998514175],[123,94,70,-0.2884988412261009],[123,94,71,-0.29120802506804466],[123,94,72,-0.2941959835588932],[123,94,73,-0.29622234776616096],[123,94,74,-0.29696251824498177],[123,94,75,-0.29630086943507195],[123,94,76,-0.293864157050848],[123,94,77,-0.28991565108299255],[123,94,78,-0.2852865941822529],[123,94,79,-0.28031743317842484],[123,95,64,-0.2964055947959423],[123,95,65,-0.29666227847337723],[123,95,66,-0.2953098490834236],[123,95,67,-0.29355500265955925],[123,95,68,-0.2928388863801956],[123,95,69,-0.29394832998514175],[123,95,70,-0.2963113412261009],[123,95,71,-0.29902052506804466],[123,95,72,-0.3020084835588932],[123,95,73,-0.30403484776616096],[123,95,74,-0.30477501824498177],[123,95,75,-0.30411336943507195],[123,95,76,-0.301676657050848],[123,95,77,-0.29772815108299255],[123,95,78,-0.2930990941822529],[123,95,79,-0.28812993317842484],[123,96,64,-0.3042180947959423],[123,96,65,-0.30447477847337723],[123,96,66,-0.3031223490834236],[123,96,67,-0.30136750265955925],[123,96,68,-0.3006513863801956],[123,96,69,-0.30176082998514175],[123,96,70,-0.3041238412261009],[123,96,71,-0.30683302506804466],[123,96,72,-0.3098209835588932],[123,96,73,-0.31184734776616096],[123,96,74,-0.31258751824498177],[123,96,75,-0.31192586943507195],[123,96,76,-0.309489157050848],[123,96,77,-0.30554065108299255],[123,96,78,-0.3009115941822529],[123,96,79,-0.29594243317842484],[123,97,64,-0.3120305947959423],[123,97,65,-0.31228727847337723],[123,97,66,-0.3109348490834236],[123,97,67,-0.30918000265955925],[123,97,68,-0.3084638863801956],[123,97,69,-0.30957332998514175],[123,97,70,-0.3119363412261009],[123,97,71,-0.31464552506804466],[123,97,72,-0.3176334835588932],[123,97,73,-0.31965984776616096],[123,97,74,-0.32040001824498177],[123,97,75,-0.31973836943507195],[123,97,76,-0.317301657050848],[123,97,77,-0.31335315108299255],[123,97,78,-0.3087240941822529],[123,97,79,-0.30375493317842484],[123,98,64,-0.3198430947959423],[123,98,65,-0.32009977847337723],[123,98,66,-0.3187473490834236],[123,98,67,-0.31699250265955925],[123,98,68,-0.3162763863801956],[123,98,69,-0.31738582998514175],[123,98,70,-0.3197488412261009],[123,98,71,-0.32245802506804466],[123,98,72,-0.3254459835588932],[123,98,73,-0.32747234776616096],[123,98,74,-0.32821251824498177],[123,98,75,-0.32755086943507195],[123,98,76,-0.325114157050848],[123,98,77,-0.32116565108299255],[123,98,78,-0.3165365941822529],[123,98,79,-0.31156743317842484],[123,99,64,-0.3276555947959423],[123,99,65,-0.32791227847337723],[123,99,66,-0.3265598490834236],[123,99,67,-0.32480500265955925],[123,99,68,-0.3240888863801956],[123,99,69,-0.32519832998514175],[123,99,70,-0.3275613412261009],[123,99,71,-0.33027052506804466],[123,99,72,-0.3332584835588932],[123,99,73,-0.33528484776616096],[123,99,74,-0.33602501824498177],[123,99,75,-0.33536336943507195],[123,99,76,-0.332926657050848],[123,99,77,-0.32897815108299255],[123,99,78,-0.3243490941822529],[123,99,79,-0.31937993317842484],[123,100,64,-0.3354680947959423],[123,100,65,-0.33572477847337723],[123,100,66,-0.3343723490834236],[123,100,67,-0.33261750265955925],[123,100,68,-0.3319013863801956],[123,100,69,-0.33301082998514175],[123,100,70,-0.3353738412261009],[123,100,71,-0.33808302506804466],[123,100,72,-0.3410709835588932],[123,100,73,-0.34309734776616096],[123,100,74,-0.34383751824498177],[123,100,75,-0.34317586943507195],[123,100,76,-0.340739157050848],[123,100,77,-0.33679065108299255],[123,100,78,-0.3321615941822529],[123,100,79,-0.32719243317842484],[123,101,64,-0.3432805947959423],[123,101,65,-0.34353727847337723],[123,101,66,-0.3421848490834236],[123,101,67,-0.34043000265955925],[123,101,68,-0.3397138863801956],[123,101,69,-0.34082332998514175],[123,101,70,-0.3431863412261009],[123,101,71,-0.34589552506804466],[123,101,72,-0.3488834835588932],[123,101,73,-0.35090984776616096],[123,101,74,-0.35165001824498177],[123,101,75,-0.35098836943507195],[123,101,76,-0.348551657050848],[123,101,77,-0.34460315108299255],[123,101,78,-0.3399740941822529],[123,101,79,-0.33500493317842484],[123,102,64,-0.3510930947959423],[123,102,65,-0.35134977847337723],[123,102,66,-0.3499973490834236],[123,102,67,-0.34824250265955925],[123,102,68,-0.3475263863801956],[123,102,69,-0.34863582998514175],[123,102,70,-0.3509988412261009],[123,102,71,-0.35370802506804466],[123,102,72,-0.3566959835588932],[123,102,73,-0.35872234776616096],[123,102,74,-0.35946251824498177],[123,102,75,-0.35880086943507195],[123,102,76,-0.356364157050848],[123,102,77,-0.35241565108299255],[123,102,78,-0.3477865941822529],[123,102,79,-0.34281743317842484],[123,103,64,-0.3589055947959423],[123,103,65,-0.35916227847337723],[123,103,66,-0.3578098490834236],[123,103,67,-0.35605500265955925],[123,103,68,-0.3553388863801956],[123,103,69,-0.35644832998514175],[123,103,70,-0.3588113412261009],[123,103,71,-0.36152052506804466],[123,103,72,-0.3645084835588932],[123,103,73,-0.36653484776616096],[123,103,74,-0.36727501824498177],[123,103,75,-0.36661336943507195],[123,103,76,-0.364176657050848],[123,103,77,-0.36022815108299255],[123,103,78,-0.3555990941822529],[123,103,79,-0.35062993317842484],[123,104,64,-0.3667180947959423],[123,104,65,-0.36697477847337723],[123,104,66,-0.3656223490834236],[123,104,67,-0.36386750265955925],[123,104,68,-0.3631513863801956],[123,104,69,-0.36426082998514175],[123,104,70,-0.3666238412261009],[123,104,71,-0.36933302506804466],[123,104,72,-0.3723209835588932],[123,104,73,-0.37434734776616096],[123,104,74,-0.37508751824498177],[123,104,75,-0.37442586943507195],[123,104,76,-0.371989157050848],[123,104,77,-0.36804065108299255],[123,104,78,-0.3634115941822529],[123,104,79,-0.35844243317842484],[123,105,64,-0.3745305947959423],[123,105,65,-0.37478727847337723],[123,105,66,-0.3734348490834236],[123,105,67,-0.37168000265955925],[123,105,68,-0.3709638863801956],[123,105,69,-0.37207332998514175],[123,105,70,-0.3744363412261009],[123,105,71,-0.37714552506804466],[123,105,72,-0.3801334835588932],[123,105,73,-0.38215984776616096],[123,105,74,-0.38290001824498177],[123,105,75,-0.38223836943507195],[123,105,76,-0.379801657050848],[123,105,77,-0.37585315108299255],[123,105,78,-0.3712240941822529],[123,105,79,-0.36625493317842484],[123,106,64,-0.3823430947959423],[123,106,65,-0.38259977847337723],[123,106,66,-0.3812473490834236],[123,106,67,-0.37949250265955925],[123,106,68,-0.3787763863801956],[123,106,69,-0.37988582998514175],[123,106,70,-0.3822488412261009],[123,106,71,-0.38495802506804466],[123,106,72,-0.3879459835588932],[123,106,73,-0.38997234776616096],[123,106,74,-0.39071251824498177],[123,106,75,-0.39005086943507195],[123,106,76,-0.387614157050848],[123,106,77,-0.38366565108299255],[123,106,78,-0.3790365941822529],[123,106,79,-0.37406743317842484],[123,107,64,-0.3901555947959423],[123,107,65,-0.39041227847337723],[123,107,66,-0.3890598490834236],[123,107,67,-0.38730500265955925],[123,107,68,-0.3865888863801956],[123,107,69,-0.38769832998514175],[123,107,70,-0.3900613412261009],[123,107,71,-0.39277052506804466],[123,107,72,-0.3957584835588932],[123,107,73,-0.39778484776616096],[123,107,74,-0.39852501824498177],[123,107,75,-0.39786336943507195],[123,107,76,-0.395426657050848],[123,107,77,-0.39147815108299255],[123,107,78,-0.3868490941822529],[123,107,79,-0.38187993317842484],[123,108,64,-0.3979680947959423],[123,108,65,-0.39822477847337723],[123,108,66,-0.3968723490834236],[123,108,67,-0.39511750265955925],[123,108,68,-0.3944013863801956],[123,108,69,-0.39551082998514175],[123,108,70,-0.3978738412261009],[123,108,71,-0.40058302506804466],[123,108,72,-0.4035709835588932],[123,108,73,-0.40559734776616096],[123,108,74,-0.40633751824498177],[123,108,75,-0.40567586943507195],[123,108,76,-0.403239157050848],[123,108,77,-0.39929065108299255],[123,108,78,-0.3946615941822529],[123,108,79,-0.38969243317842484],[123,109,64,-0.4057805947959423],[123,109,65,-0.40603727847337723],[123,109,66,-0.4046848490834236],[123,109,67,-0.40293000265955925],[123,109,68,-0.4022138863801956],[123,109,69,-0.40332332998514175],[123,109,70,-0.4056863412261009],[123,109,71,-0.40839552506804466],[123,109,72,-0.4113834835588932],[123,109,73,-0.41340984776616096],[123,109,74,-0.41415001824498177],[123,109,75,-0.41348836943507195],[123,109,76,-0.411051657050848],[123,109,77,-0.40710315108299255],[123,109,78,-0.4024740941822529],[123,109,79,-0.39750493317842484],[123,110,64,-0.4135930947959423],[123,110,65,-0.41384977847337723],[123,110,66,-0.4124973490834236],[123,110,67,-0.41074250265955925],[123,110,68,-0.4100263863801956],[123,110,69,-0.41113582998514175],[123,110,70,-0.4134988412261009],[123,110,71,-0.41620802506804466],[123,110,72,-0.4191959835588932],[123,110,73,-0.42122234776616096],[123,110,74,-0.42196251824498177],[123,110,75,-0.42130086943507195],[123,110,76,-0.418864157050848],[123,110,77,-0.41491565108299255],[123,110,78,-0.4102865941822529],[123,110,79,-0.40531743317842484],[123,111,64,-0.4214055947959423],[123,111,65,-0.42166227847337723],[123,111,66,-0.4203098490834236],[123,111,67,-0.41855500265955925],[123,111,68,-0.4178388863801956],[123,111,69,-0.41894832998514175],[123,111,70,-0.4213113412261009],[123,111,71,-0.42402052506804466],[123,111,72,-0.4270084835588932],[123,111,73,-0.42903484776616096],[123,111,74,-0.42977501824498177],[123,111,75,-0.42911336943507195],[123,111,76,-0.426676657050848],[123,111,77,-0.42272815108299255],[123,111,78,-0.4180990941822529],[123,111,79,-0.41312993317842484],[123,112,64,-0.4292180947959423],[123,112,65,-0.42947477847337723],[123,112,66,-0.4281223490834236],[123,112,67,-0.42636750265955925],[123,112,68,-0.4256513863801956],[123,112,69,-0.42676082998514175],[123,112,70,-0.4291238412261009],[123,112,71,-0.43183302506804466],[123,112,72,-0.4348209835588932],[123,112,73,-0.43684734776616096],[123,112,74,-0.43758751824498177],[123,112,75,-0.43692586943507195],[123,112,76,-0.434489157050848],[123,112,77,-0.43054065108299255],[123,112,78,-0.4259115941822529],[123,112,79,-0.42094243317842484],[123,113,64,-0.4370305947959423],[123,113,65,-0.43728727847337723],[123,113,66,-0.4359348490834236],[123,113,67,-0.43418000265955925],[123,113,68,-0.4334638863801956],[123,113,69,-0.43457332998514175],[123,113,70,-0.4369363412261009],[123,113,71,-0.43964552506804466],[123,113,72,-0.4426334835588932],[123,113,73,-0.44465984776616096],[123,113,74,-0.44540001824498177],[123,113,75,-0.44473836943507195],[123,113,76,-0.442301657050848],[123,113,77,-0.43835315108299255],[123,113,78,-0.4337240941822529],[123,113,79,-0.42875493317842484],[123,114,64,-0.4448430947959423],[123,114,65,-0.44509977847337723],[123,114,66,-0.4437473490834236],[123,114,67,-0.44199250265955925],[123,114,68,-0.4412763863801956],[123,114,69,-0.44238582998514175],[123,114,70,-0.4447488412261009],[123,114,71,-0.44745802506804466],[123,114,72,-0.4504459835588932],[123,114,73,-0.45247234776616096],[123,114,74,-0.45321251824498177],[123,114,75,-0.45255086943507195],[123,114,76,-0.450114157050848],[123,114,77,-0.44616565108299255],[123,114,78,-0.4415365941822529],[123,114,79,-0.43656743317842484],[123,115,64,-0.4526555947959423],[123,115,65,-0.45291227847337723],[123,115,66,-0.4515598490834236],[123,115,67,-0.44980500265955925],[123,115,68,-0.4490888863801956],[123,115,69,-0.45019832998514175],[123,115,70,-0.4525613412261009],[123,115,71,-0.45527052506804466],[123,115,72,-0.4582584835588932],[123,115,73,-0.46028484776616096],[123,115,74,-0.46102501824498177],[123,115,75,-0.46036336943507195],[123,115,76,-0.457926657050848],[123,115,77,-0.45397815108299255],[123,115,78,-0.4493490941822529],[123,115,79,-0.44437993317842484],[123,116,64,-0.4604680947959423],[123,116,65,-0.46072477847337723],[123,116,66,-0.4593723490834236],[123,116,67,-0.45761750265955925],[123,116,68,-0.4569013863801956],[123,116,69,-0.45801082998514175],[123,116,70,-0.4603738412261009],[123,116,71,-0.46308302506804466],[123,116,72,-0.4660709835588932],[123,116,73,-0.46809734776616096],[123,116,74,-0.46883751824498177],[123,116,75,-0.46817586943507195],[123,116,76,-0.465739157050848],[123,116,77,-0.46179065108299255],[123,116,78,-0.4571615941822529],[123,116,79,-0.45219243317842484],[123,117,64,-0.4682805947959423],[123,117,65,-0.46853727847337723],[123,117,66,-0.4671848490834236],[123,117,67,-0.46543000265955925],[123,117,68,-0.4647138863801956],[123,117,69,-0.46582332998514175],[123,117,70,-0.4681863412261009],[123,117,71,-0.47089552506804466],[123,117,72,-0.4738834835588932],[123,117,73,-0.47590984776616096],[123,117,74,-0.47665001824498177],[123,117,75,-0.47598836943507195],[123,117,76,-0.473551657050848],[123,117,77,-0.46960315108299255],[123,117,78,-0.4649740941822529],[123,117,79,-0.46000493317842484],[123,118,64,-0.4760930947959423],[123,118,65,-0.47634977847337723],[123,118,66,-0.4749973490834236],[123,118,67,-0.47324250265955925],[123,118,68,-0.4725263863801956],[123,118,69,-0.47363582998514175],[123,118,70,-0.4759988412261009],[123,118,71,-0.47870802506804466],[123,118,72,-0.4816959835588932],[123,118,73,-0.48372234776616096],[123,118,74,-0.48446251824498177],[123,118,75,-0.48380086943507195],[123,118,76,-0.481364157050848],[123,118,77,-0.47741565108299255],[123,118,78,-0.4727865941822529],[123,118,79,-0.46781743317842484],[123,119,64,-0.4839055947959423],[123,119,65,-0.48416227847337723],[123,119,66,-0.4828098490834236],[123,119,67,-0.48105500265955925],[123,119,68,-0.4803388863801956],[123,119,69,-0.48144832998514175],[123,119,70,-0.4838113412261009],[123,119,71,-0.48652052506804466],[123,119,72,-0.4895084835588932],[123,119,73,-0.49153484776616096],[123,119,74,-0.49227501824498177],[123,119,75,-0.49161336943507195],[123,119,76,-0.489176657050848],[123,119,77,-0.48522815108299255],[123,119,78,-0.4805990941822529],[123,119,79,-0.47562993317842484],[123,120,64,-0.4917180947959423],[123,120,65,-0.49197477847337723],[123,120,66,-0.4906223490834236],[123,120,67,-0.48886750265955925],[123,120,68,-0.4881513863801956],[123,120,69,-0.48926082998514175],[123,120,70,-0.4916238412261009],[123,120,71,-0.49433302506804466],[123,120,72,-0.4973209835588932],[123,120,73,-0.49934734776616096],[123,120,74,-0.5000875182449818],[123,120,75,-0.49942586943507195],[123,120,76,-0.496989157050848],[123,120,77,-0.49304065108299255],[123,120,78,-0.4884115941822529],[123,120,79,-0.48344243317842484],[123,121,64,-0.4995305947959423],[123,121,65,-0.49978727847337723],[123,121,66,-0.4984348490834236],[123,121,67,-0.49668000265955925],[123,121,68,-0.4959638863801956],[123,121,69,-0.49707332998514175],[123,121,70,-0.4994363412261009],[123,121,71,-0.5021455250680447],[123,121,72,-0.5051334835588932],[123,121,73,-0.507159847766161],[123,121,74,-0.5079000182449818],[123,121,75,-0.507238369435072],[123,121,76,-0.504801657050848],[123,121,77,-0.5008531510829926],[123,121,78,-0.4962240941822529],[123,121,79,-0.49125493317842484],[123,122,64,-0.5073430947959423],[123,122,65,-0.5075997784733772],[123,122,66,-0.5062473490834236],[123,122,67,-0.5044925026595592],[123,122,68,-0.5037763863801956],[123,122,69,-0.5048858299851418],[123,122,70,-0.5072488412261009],[123,122,71,-0.5099580250680447],[123,122,72,-0.5129459835588932],[123,122,73,-0.514972347766161],[123,122,74,-0.5157125182449818],[123,122,75,-0.515050869435072],[123,122,76,-0.512614157050848],[123,122,77,-0.5086656510829926],[123,122,78,-0.5040365941822529],[123,122,79,-0.49906743317842484],[123,123,64,-0.5151555947959423],[123,123,65,-0.5154122784733772],[123,123,66,-0.5140598490834236],[123,123,67,-0.5123050026595592],[123,123,68,-0.5115888863801956],[123,123,69,-0.5126983299851418],[123,123,70,-0.5150613412261009],[123,123,71,-0.5177705250680447],[123,123,72,-0.5207584835588932],[123,123,73,-0.522784847766161],[123,123,74,-0.5235250182449818],[123,123,75,-0.522863369435072],[123,123,76,-0.520426657050848],[123,123,77,-0.5164781510829926],[123,123,78,-0.5118490941822529],[123,123,79,-0.5068799331784248],[123,124,64,-0.5229680947959423],[123,124,65,-0.5232247784733772],[123,124,66,-0.5218723490834236],[123,124,67,-0.5201175026595592],[123,124,68,-0.5194013863801956],[123,124,69,-0.5205108299851418],[123,124,70,-0.5228738412261009],[123,124,71,-0.5255830250680447],[123,124,72,-0.5285709835588932],[123,124,73,-0.530597347766161],[123,124,74,-0.5313375182449818],[123,124,75,-0.530675869435072],[123,124,76,-0.528239157050848],[123,124,77,-0.5242906510829926],[123,124,78,-0.5196615941822529],[123,124,79,-0.5146924331784248],[123,125,64,-0.5307805947959423],[123,125,65,-0.5310372784733772],[123,125,66,-0.5296848490834236],[123,125,67,-0.5279300026595592],[123,125,68,-0.5272138863801956],[123,125,69,-0.5283233299851418],[123,125,70,-0.5306863412261009],[123,125,71,-0.5333955250680447],[123,125,72,-0.5363834835588932],[123,125,73,-0.538409847766161],[123,125,74,-0.5391500182449818],[123,125,75,-0.538488369435072],[123,125,76,-0.536051657050848],[123,125,77,-0.5321031510829926],[123,125,78,-0.5274740941822529],[123,125,79,-0.5225049331784248],[123,126,64,-0.5385930947959423],[123,126,65,-0.5388497784733772],[123,126,66,-0.5374973490834236],[123,126,67,-0.5357425026595592],[123,126,68,-0.5350263863801956],[123,126,69,-0.5361358299851418],[123,126,70,-0.5384988412261009],[123,126,71,-0.5412080250680447],[123,126,72,-0.5441959835588932],[123,126,73,-0.546222347766161],[123,126,74,-0.5469625182449818],[123,126,75,-0.546300869435072],[123,126,76,-0.543864157050848],[123,126,77,-0.5399156510829926],[123,126,78,-0.5352865941822529],[123,126,79,-0.5303174331784248],[123,127,64,-0.5464055947959423],[123,127,65,-0.5466622784733772],[123,127,66,-0.5453098490834236],[123,127,67,-0.5435550026595592],[123,127,68,-0.5428388863801956],[123,127,69,-0.5439483299851418],[123,127,70,-0.5463113412261009],[123,127,71,-0.5490205250680447],[123,127,72,-0.5520084835588932],[123,127,73,-0.554034847766161],[123,127,74,-0.5547750182449818],[123,127,75,-0.554113369435072],[123,127,76,-0.551676657050848],[123,127,77,-0.5477281510829926],[123,127,78,-0.5430990941822529],[123,127,79,-0.5381299331784248],[123,128,64,-0.5542180947959423],[123,128,65,-0.5544747784733772],[123,128,66,-0.5531223490834236],[123,128,67,-0.5513675026595592],[123,128,68,-0.5506513863801956],[123,128,69,-0.5517608299851418],[123,128,70,-0.5541238412261009],[123,128,71,-0.5568330250680447],[123,128,72,-0.5598209835588932],[123,128,73,-0.561847347766161],[123,128,74,-0.5625875182449818],[123,128,75,-0.561925869435072],[123,128,76,-0.559489157050848],[123,128,77,-0.5555406510829926],[123,128,78,-0.5509115941822529],[123,128,79,-0.5459424331784248],[123,129,64,-0.5620305947959423],[123,129,65,-0.5622872784733772],[123,129,66,-0.5609348490834236],[123,129,67,-0.5591800026595592],[123,129,68,-0.5584638863801956],[123,129,69,-0.5595733299851418],[123,129,70,-0.5619363412261009],[123,129,71,-0.5646455250680447],[123,129,72,-0.5676334835588932],[123,129,73,-0.569659847766161],[123,129,74,-0.5704000182449818],[123,129,75,-0.569738369435072],[123,129,76,-0.567301657050848],[123,129,77,-0.5633531510829926],[123,129,78,-0.5587240941822529],[123,129,79,-0.5537549331784248],[123,130,64,-0.5698430947959423],[123,130,65,-0.5700997784733772],[123,130,66,-0.5687473490834236],[123,130,67,-0.5669925026595592],[123,130,68,-0.5662763863801956],[123,130,69,-0.5673858299851418],[123,130,70,-0.5697488412261009],[123,130,71,-0.5724580250680447],[123,130,72,-0.5754459835588932],[123,130,73,-0.577472347766161],[123,130,74,-0.5782125182449818],[123,130,75,-0.577550869435072],[123,130,76,-0.575114157050848],[123,130,77,-0.5711656510829926],[123,130,78,-0.5665365941822529],[123,130,79,-0.5615674331784248],[123,131,64,-0.5776555947959423],[123,131,65,-0.5779122784733772],[123,131,66,-0.5765598490834236],[123,131,67,-0.5748050026595592],[123,131,68,-0.5740888863801956],[123,131,69,-0.5751983299851418],[123,131,70,-0.5775613412261009],[123,131,71,-0.5802705250680447],[123,131,72,-0.5832584835588932],[123,131,73,-0.585284847766161],[123,131,74,-0.5860250182449818],[123,131,75,-0.585363369435072],[123,131,76,-0.582926657050848],[123,131,77,-0.5789781510829926],[123,131,78,-0.5743490941822529],[123,131,79,-0.5693799331784248],[123,132,64,-0.5854680947959423],[123,132,65,-0.5857247784733772],[123,132,66,-0.5843723490834236],[123,132,67,-0.5826175026595592],[123,132,68,-0.5819013863801956],[123,132,69,-0.5830108299851418],[123,132,70,-0.5853738412261009],[123,132,71,-0.5880830250680447],[123,132,72,-0.5910709835588932],[123,132,73,-0.593097347766161],[123,132,74,-0.5938375182449818],[123,132,75,-0.593175869435072],[123,132,76,-0.590739157050848],[123,132,77,-0.5867906510829926],[123,132,78,-0.5821615941822529],[123,132,79,-0.5771924331784248],[123,133,64,-0.5932805947959423],[123,133,65,-0.5935372784733772],[123,133,66,-0.5921848490834236],[123,133,67,-0.5904300026595592],[123,133,68,-0.5897138863801956],[123,133,69,-0.5908233299851418],[123,133,70,-0.5931863412261009],[123,133,71,-0.5958955250680447],[123,133,72,-0.5988834835588932],[123,133,73,-0.600909847766161],[123,133,74,-0.6016500182449818],[123,133,75,-0.600988369435072],[123,133,76,-0.598551657050848],[123,133,77,-0.5946031510829926],[123,133,78,-0.5899740941822529],[123,133,79,-0.5850049331784248],[123,134,64,-0.6010930947959423],[123,134,65,-0.6013497784733772],[123,134,66,-0.5999973490834236],[123,134,67,-0.5982425026595592],[123,134,68,-0.5975263863801956],[123,134,69,-0.5986358299851418],[123,134,70,-0.6009988412261009],[123,134,71,-0.6037080250680447],[123,134,72,-0.6066959835588932],[123,134,73,-0.608722347766161],[123,134,74,-0.6094625182449818],[123,134,75,-0.608800869435072],[123,134,76,-0.606364157050848],[123,134,77,-0.6024156510829926],[123,134,78,-0.5977865941822529],[123,134,79,-0.5928174331784248],[123,135,64,-0.6089055947959423],[123,135,65,-0.6091622784733772],[123,135,66,-0.6078098490834236],[123,135,67,-0.6060550026595592],[123,135,68,-0.6053388863801956],[123,135,69,-0.6064483299851418],[123,135,70,-0.6088113412261009],[123,135,71,-0.6115205250680447],[123,135,72,-0.6145084835588932],[123,135,73,-0.616534847766161],[123,135,74,-0.6172750182449818],[123,135,75,-0.616613369435072],[123,135,76,-0.614176657050848],[123,135,77,-0.6102281510829926],[123,135,78,-0.6055990941822529],[123,135,79,-0.6006299331784248],[123,136,64,-0.6167180947959423],[123,136,65,-0.6169747784733772],[123,136,66,-0.6156223490834236],[123,136,67,-0.6138675026595592],[123,136,68,-0.6131513863801956],[123,136,69,-0.6142608299851418],[123,136,70,-0.6166238412261009],[123,136,71,-0.6193330250680447],[123,136,72,-0.6223209835588932],[123,136,73,-0.624347347766161],[123,136,74,-0.6250875182449818],[123,136,75,-0.624425869435072],[123,136,76,-0.621989157050848],[123,136,77,-0.6180406510829926],[123,136,78,-0.6134115941822529],[123,136,79,-0.6084424331784248],[123,137,64,-0.6245305947959423],[123,137,65,-0.6247872784733772],[123,137,66,-0.6234348490834236],[123,137,67,-0.6216800026595592],[123,137,68,-0.6209638863801956],[123,137,69,-0.6220733299851418],[123,137,70,-0.6244363412261009],[123,137,71,-0.6271455250680447],[123,137,72,-0.6301334835588932],[123,137,73,-0.632159847766161],[123,137,74,-0.6329000182449818],[123,137,75,-0.632238369435072],[123,137,76,-0.629801657050848],[123,137,77,-0.6258531510829926],[123,137,78,-0.6212240941822529],[123,137,79,-0.6162549331784248],[123,138,64,-0.6323430947959423],[123,138,65,-0.6325997784733772],[123,138,66,-0.6312473490834236],[123,138,67,-0.6294925026595592],[123,138,68,-0.6287763863801956],[123,138,69,-0.6298858299851418],[123,138,70,-0.6322488412261009],[123,138,71,-0.6349580250680447],[123,138,72,-0.6379459835588932],[123,138,73,-0.639972347766161],[123,138,74,-0.6407125182449818],[123,138,75,-0.640050869435072],[123,138,76,-0.637614157050848],[123,138,77,-0.6336656510829926],[123,138,78,-0.6290365941822529],[123,138,79,-0.6240674331784248],[123,139,64,-0.6401555947959423],[123,139,65,-0.6404122784733772],[123,139,66,-0.6390598490834236],[123,139,67,-0.6373050026595592],[123,139,68,-0.6365888863801956],[123,139,69,-0.6376983299851418],[123,139,70,-0.6400613412261009],[123,139,71,-0.6427705250680447],[123,139,72,-0.6457584835588932],[123,139,73,-0.647784847766161],[123,139,74,-0.6485250182449818],[123,139,75,-0.647863369435072],[123,139,76,-0.645426657050848],[123,139,77,-0.6414781510829926],[123,139,78,-0.6368490941822529],[123,139,79,-0.6318799331784248],[123,140,64,-0.6479680947959423],[123,140,65,-0.6482247784733772],[123,140,66,-0.6468723490834236],[123,140,67,-0.6451175026595592],[123,140,68,-0.6444013863801956],[123,140,69,-0.6455108299851418],[123,140,70,-0.6478738412261009],[123,140,71,-0.6505830250680447],[123,140,72,-0.6535709835588932],[123,140,73,-0.655597347766161],[123,140,74,-0.6563375182449818],[123,140,75,-0.655675869435072],[123,140,76,-0.653239157050848],[123,140,77,-0.6492906510829926],[123,140,78,-0.6446615941822529],[123,140,79,-0.6396924331784248],[123,141,64,-0.6557805947959423],[123,141,65,-0.6560372784733772],[123,141,66,-0.6546848490834236],[123,141,67,-0.6529300026595592],[123,141,68,-0.6522138863801956],[123,141,69,-0.6533233299851418],[123,141,70,-0.6556863412261009],[123,141,71,-0.6583955250680447],[123,141,72,-0.6613834835588932],[123,141,73,-0.663409847766161],[123,141,74,-0.6641500182449818],[123,141,75,-0.663488369435072],[123,141,76,-0.661051657050848],[123,141,77,-0.6571031510829926],[123,141,78,-0.6524740941822529],[123,141,79,-0.6475049331784248],[123,142,64,-0.6635930947959423],[123,142,65,-0.6638497784733772],[123,142,66,-0.6624973490834236],[123,142,67,-0.6607425026595592],[123,142,68,-0.6600263863801956],[123,142,69,-0.6611358299851418],[123,142,70,-0.6634988412261009],[123,142,71,-0.6662080250680447],[123,142,72,-0.6691959835588932],[123,142,73,-0.671222347766161],[123,142,74,-0.6719625182449818],[123,142,75,-0.671300869435072],[123,142,76,-0.668864157050848],[123,142,77,-0.6649156510829926],[123,142,78,-0.6602865941822529],[123,142,79,-0.6553174331784248],[123,143,64,-0.6714055947959423],[123,143,65,-0.6716622784733772],[123,143,66,-0.6703098490834236],[123,143,67,-0.6685550026595592],[123,143,68,-0.6678388863801956],[123,143,69,-0.6689483299851418],[123,143,70,-0.6713113412261009],[123,143,71,-0.6740205250680447],[123,143,72,-0.6770084835588932],[123,143,73,-0.679034847766161],[123,143,74,-0.6797750182449818],[123,143,75,-0.679113369435072],[123,143,76,-0.676676657050848],[123,143,77,-0.6727281510829926],[123,143,78,-0.6680990941822529],[123,143,79,-0.6631299331784248],[123,144,64,-0.6792180947959423],[123,144,65,-0.6794747784733772],[123,144,66,-0.6781223490834236],[123,144,67,-0.6763675026595592],[123,144,68,-0.6756513863801956],[123,144,69,-0.6767608299851418],[123,144,70,-0.6791238412261009],[123,144,71,-0.6818330250680447],[123,144,72,-0.6848209835588932],[123,144,73,-0.686847347766161],[123,144,74,-0.6875875182449818],[123,144,75,-0.686925869435072],[123,144,76,-0.684489157050848],[123,144,77,-0.6805406510829926],[123,144,78,-0.6759115941822529],[123,144,79,-0.6709424331784248],[123,145,64,-0.6870305947959423],[123,145,65,-0.6872872784733772],[123,145,66,-0.6859348490834236],[123,145,67,-0.6841800026595592],[123,145,68,-0.6834638863801956],[123,145,69,-0.6845733299851418],[123,145,70,-0.6869363412261009],[123,145,71,-0.6896455250680447],[123,145,72,-0.6926334835588932],[123,145,73,-0.694659847766161],[123,145,74,-0.6954000182449818],[123,145,75,-0.694738369435072],[123,145,76,-0.692301657050848],[123,145,77,-0.6883531510829926],[123,145,78,-0.6837240941822529],[123,145,79,-0.6787549331784248],[123,146,64,-0.6948430947959423],[123,146,65,-0.6950997784733772],[123,146,66,-0.6937473490834236],[123,146,67,-0.6919925026595592],[123,146,68,-0.6912763863801956],[123,146,69,-0.6923858299851418],[123,146,70,-0.6947488412261009],[123,146,71,-0.6974580250680447],[123,146,72,-0.7004459835588932],[123,146,73,-0.702472347766161],[123,146,74,-0.7032125182449818],[123,146,75,-0.702550869435072],[123,146,76,-0.700114157050848],[123,146,77,-0.6961656510829926],[123,146,78,-0.6915365941822529],[123,146,79,-0.6865674331784248],[123,147,64,-0.7026555947959423],[123,147,65,-0.7029122784733772],[123,147,66,-0.7015598490834236],[123,147,67,-0.6998050026595592],[123,147,68,-0.6990888863801956],[123,147,69,-0.7001983299851418],[123,147,70,-0.7025613412261009],[123,147,71,-0.7052705250680447],[123,147,72,-0.7082584835588932],[123,147,73,-0.710284847766161],[123,147,74,-0.7110250182449818],[123,147,75,-0.710363369435072],[123,147,76,-0.707926657050848],[123,147,77,-0.7039781510829926],[123,147,78,-0.6993490941822529],[123,147,79,-0.6943799331784248],[123,148,64,-0.7104680947959423],[123,148,65,-0.7107247784733772],[123,148,66,-0.7093723490834236],[123,148,67,-0.7076175026595592],[123,148,68,-0.7069013863801956],[123,148,69,-0.7080108299851418],[123,148,70,-0.7103738412261009],[123,148,71,-0.7130830250680447],[123,148,72,-0.7160709835588932],[123,148,73,-0.718097347766161],[123,148,74,-0.7188375182449818],[123,148,75,-0.718175869435072],[123,148,76,-0.715739157050848],[123,148,77,-0.7117906510829926],[123,148,78,-0.7071615941822529],[123,148,79,-0.7021924331784248],[123,149,64,-0.7182805947959423],[123,149,65,-0.7185372784733772],[123,149,66,-0.7171848490834236],[123,149,67,-0.7154300026595592],[123,149,68,-0.7147138863801956],[123,149,69,-0.7158233299851418],[123,149,70,-0.7181863412261009],[123,149,71,-0.7208955250680447],[123,149,72,-0.7238834835588932],[123,149,73,-0.725909847766161],[123,149,74,-0.7266500182449818],[123,149,75,-0.725988369435072],[123,149,76,-0.723551657050848],[123,149,77,-0.7196031510829926],[123,149,78,-0.7149740941822529],[123,149,79,-0.7100049331784248],[123,150,64,-0.7260930947959423],[123,150,65,-0.7263497784733772],[123,150,66,-0.7249973490834236],[123,150,67,-0.7232425026595592],[123,150,68,-0.7225263863801956],[123,150,69,-0.7236358299851418],[123,150,70,-0.7259988412261009],[123,150,71,-0.7287080250680447],[123,150,72,-0.7316959835588932],[123,150,73,-0.733722347766161],[123,150,74,-0.7344625182449818],[123,150,75,-0.733800869435072],[123,150,76,-0.731364157050848],[123,150,77,-0.7274156510829926],[123,150,78,-0.7227865941822529],[123,150,79,-0.7178174331784248],[123,151,64,-0.7339055947959423],[123,151,65,-0.7341622784733772],[123,151,66,-0.7328098490834236],[123,151,67,-0.7310550026595592],[123,151,68,-0.7303388863801956],[123,151,69,-0.7314483299851418],[123,151,70,-0.7338113412261009],[123,151,71,-0.7365205250680447],[123,151,72,-0.7395084835588932],[123,151,73,-0.741534847766161],[123,151,74,-0.7422750182449818],[123,151,75,-0.741613369435072],[123,151,76,-0.739176657050848],[123,151,77,-0.7352281510829926],[123,151,78,-0.7305990941822529],[123,151,79,-0.7256299331784248],[123,152,64,-0.7417180947959423],[123,152,65,-0.7419747784733772],[123,152,66,-0.7406223490834236],[123,152,67,-0.7388675026595592],[123,152,68,-0.7381513863801956],[123,152,69,-0.7392608299851418],[123,152,70,-0.7416238412261009],[123,152,71,-0.7443330250680447],[123,152,72,-0.7473209835588932],[123,152,73,-0.749347347766161],[123,152,74,-0.7500875182449818],[123,152,75,-0.749425869435072],[123,152,76,-0.746989157050848],[123,152,77,-0.7430406510829926],[123,152,78,-0.7384115941822529],[123,152,79,-0.7334424331784248],[123,153,64,-0.7495305947959423],[123,153,65,-0.7497872784733772],[123,153,66,-0.7484348490834236],[123,153,67,-0.7466800026595592],[123,153,68,-0.7459638863801956],[123,153,69,-0.7470733299851418],[123,153,70,-0.7494363412261009],[123,153,71,-0.7521455250680447],[123,153,72,-0.7551334835588932],[123,153,73,-0.757159847766161],[123,153,74,-0.7579000182449818],[123,153,75,-0.757238369435072],[123,153,76,-0.754801657050848],[123,153,77,-0.7508531510829926],[123,153,78,-0.7462240941822529],[123,153,79,-0.7412549331784248],[123,154,64,-0.7573430947959423],[123,154,65,-0.7575997784733772],[123,154,66,-0.7562473490834236],[123,154,67,-0.7544925026595592],[123,154,68,-0.7537763863801956],[123,154,69,-0.7548858299851418],[123,154,70,-0.7572488412261009],[123,154,71,-0.7599580250680447],[123,154,72,-0.7629459835588932],[123,154,73,-0.764972347766161],[123,154,74,-0.7657125182449818],[123,154,75,-0.765050869435072],[123,154,76,-0.762614157050848],[123,154,77,-0.7586656510829926],[123,154,78,-0.7540365941822529],[123,154,79,-0.7490674331784248],[123,155,64,-0.7651555947959423],[123,155,65,-0.7654122784733772],[123,155,66,-0.7640598490834236],[123,155,67,-0.7623050026595592],[123,155,68,-0.7615888863801956],[123,155,69,-0.7626983299851418],[123,155,70,-0.7650613412261009],[123,155,71,-0.7677705250680447],[123,155,72,-0.7707584835588932],[123,155,73,-0.772784847766161],[123,155,74,-0.7735250182449818],[123,155,75,-0.772863369435072],[123,155,76,-0.770426657050848],[123,155,77,-0.7664781510829926],[123,155,78,-0.7618490941822529],[123,155,79,-0.7568799331784248],[123,156,64,-0.7729680947959423],[123,156,65,-0.7732247784733772],[123,156,66,-0.7718723490834236],[123,156,67,-0.7701175026595592],[123,156,68,-0.7694013863801956],[123,156,69,-0.7705108299851418],[123,156,70,-0.7728738412261009],[123,156,71,-0.7755830250680447],[123,156,72,-0.7785709835588932],[123,156,73,-0.780597347766161],[123,156,74,-0.7813375182449818],[123,156,75,-0.780675869435072],[123,156,76,-0.778239157050848],[123,156,77,-0.7742906510829926],[123,156,78,-0.7696615941822529],[123,156,79,-0.7646924331784248],[123,157,64,-0.7807805947959423],[123,157,65,-0.7810372784733772],[123,157,66,-0.7796848490834236],[123,157,67,-0.7779300026595592],[123,157,68,-0.7772138863801956],[123,157,69,-0.7783233299851418],[123,157,70,-0.7806863412261009],[123,157,71,-0.7833955250680447],[123,157,72,-0.7863834835588932],[123,157,73,-0.788409847766161],[123,157,74,-0.7891500182449818],[123,157,75,-0.788488369435072],[123,157,76,-0.786051657050848],[123,157,77,-0.7821031510829926],[123,157,78,-0.7774740941822529],[123,157,79,-0.7725049331784248],[123,158,64,-0.7885930947959423],[123,158,65,-0.7888497784733772],[123,158,66,-0.7874973490834236],[123,158,67,-0.7857425026595592],[123,158,68,-0.7850263863801956],[123,158,69,-0.7861358299851418],[123,158,70,-0.7884988412261009],[123,158,71,-0.7912080250680447],[123,158,72,-0.7941959835588932],[123,158,73,-0.796222347766161],[123,158,74,-0.7969625182449818],[123,158,75,-0.796300869435072],[123,158,76,-0.793864157050848],[123,158,77,-0.7899156510829926],[123,158,78,-0.7852865941822529],[123,158,79,-0.7803174331784248],[123,159,64,-0.7964055947959423],[123,159,65,-0.7966622784733772],[123,159,66,-0.7953098490834236],[123,159,67,-0.7935550026595592],[123,159,68,-0.7928388863801956],[123,159,69,-0.7939483299851418],[123,159,70,-0.7963113412261009],[123,159,71,-0.7990205250680447],[123,159,72,-0.8020084835588932],[123,159,73,-0.804034847766161],[123,159,74,-0.8047750182449818],[123,159,75,-0.804113369435072],[123,159,76,-0.801676657050848],[123,159,77,-0.7977281510829926],[123,159,78,-0.7930990941822529],[123,159,79,-0.7881299331784248],[123,160,64,-0.8042180947959423],[123,160,65,-0.8044747784733772],[123,160,66,-0.8031223490834236],[123,160,67,-0.8013675026595592],[123,160,68,-0.8006513863801956],[123,160,69,-0.8017608299851418],[123,160,70,-0.8041238412261009],[123,160,71,-0.8068330250680447],[123,160,72,-0.8098209835588932],[123,160,73,-0.811847347766161],[123,160,74,-0.8125875182449818],[123,160,75,-0.811925869435072],[123,160,76,-0.809489157050848],[123,160,77,-0.8055406510829926],[123,160,78,-0.8009115941822529],[123,160,79,-0.7959424331784248],[123,161,64,-0.8120305947959423],[123,161,65,-0.8122872784733772],[123,161,66,-0.8109348490834236],[123,161,67,-0.8091800026595592],[123,161,68,-0.8084638863801956],[123,161,69,-0.8095733299851418],[123,161,70,-0.8119363412261009],[123,161,71,-0.8146455250680447],[123,161,72,-0.8176334835588932],[123,161,73,-0.819659847766161],[123,161,74,-0.8204000182449818],[123,161,75,-0.819738369435072],[123,161,76,-0.817301657050848],[123,161,77,-0.8133531510829926],[123,161,78,-0.8087240941822529],[123,161,79,-0.8037549331784248],[123,162,64,-0.8198430947959423],[123,162,65,-0.8200997784733772],[123,162,66,-0.8187473490834236],[123,162,67,-0.8169925026595592],[123,162,68,-0.8162763863801956],[123,162,69,-0.8173858299851418],[123,162,70,-0.8197488412261009],[123,162,71,-0.8224580250680447],[123,162,72,-0.8254459835588932],[123,162,73,-0.827472347766161],[123,162,74,-0.8282125182449818],[123,162,75,-0.827550869435072],[123,162,76,-0.825114157050848],[123,162,77,-0.8211656510829926],[123,162,78,-0.8165365941822529],[123,162,79,-0.8115674331784248],[123,163,64,-0.8276555947959423],[123,163,65,-0.8279122784733772],[123,163,66,-0.8265598490834236],[123,163,67,-0.8248050026595592],[123,163,68,-0.8240888863801956],[123,163,69,-0.8251983299851418],[123,163,70,-0.8275613412261009],[123,163,71,-0.8302705250680447],[123,163,72,-0.8332584835588932],[123,163,73,-0.835284847766161],[123,163,74,-0.8360250182449818],[123,163,75,-0.835363369435072],[123,163,76,-0.832926657050848],[123,163,77,-0.8289781510829926],[123,163,78,-0.8243490941822529],[123,163,79,-0.8193799331784248],[123,164,64,-0.8354680947959423],[123,164,65,-0.8357247784733772],[123,164,66,-0.8343723490834236],[123,164,67,-0.8326175026595592],[123,164,68,-0.8319013863801956],[123,164,69,-0.8330108299851418],[123,164,70,-0.8353738412261009],[123,164,71,-0.8380830250680447],[123,164,72,-0.8410709835588932],[123,164,73,-0.843097347766161],[123,164,74,-0.8438375182449818],[123,164,75,-0.843175869435072],[123,164,76,-0.840739157050848],[123,164,77,-0.8367906510829926],[123,164,78,-0.8321615941822529],[123,164,79,-0.8271924331784248],[123,165,64,-0.8432805947959423],[123,165,65,-0.8435372784733772],[123,165,66,-0.8421848490834236],[123,165,67,-0.8404300026595592],[123,165,68,-0.8397138863801956],[123,165,69,-0.8408233299851418],[123,165,70,-0.8431863412261009],[123,165,71,-0.8458955250680447],[123,165,72,-0.8488834835588932],[123,165,73,-0.850909847766161],[123,165,74,-0.8516500182449818],[123,165,75,-0.850988369435072],[123,165,76,-0.848551657050848],[123,165,77,-0.8446031510829926],[123,165,78,-0.8399740941822529],[123,165,79,-0.8350049331784248],[123,166,64,-0.8510930947959423],[123,166,65,-0.8513497784733772],[123,166,66,-0.8499973490834236],[123,166,67,-0.8482425026595592],[123,166,68,-0.8475263863801956],[123,166,69,-0.8486358299851418],[123,166,70,-0.8509988412261009],[123,166,71,-0.8537080250680447],[123,166,72,-0.8566959835588932],[123,166,73,-0.858722347766161],[123,166,74,-0.8594625182449818],[123,166,75,-0.858800869435072],[123,166,76,-0.856364157050848],[123,166,77,-0.8524156510829926],[123,166,78,-0.8477865941822529],[123,166,79,-0.8428174331784248],[123,167,64,-0.8589055947959423],[123,167,65,-0.8591622784733772],[123,167,66,-0.8578098490834236],[123,167,67,-0.8560550026595592],[123,167,68,-0.8553388863801956],[123,167,69,-0.8564483299851418],[123,167,70,-0.8588113412261009],[123,167,71,-0.8615205250680447],[123,167,72,-0.8645084835588932],[123,167,73,-0.866534847766161],[123,167,74,-0.8672750182449818],[123,167,75,-0.866613369435072],[123,167,76,-0.864176657050848],[123,167,77,-0.8602281510829926],[123,167,78,-0.8555990941822529],[123,167,79,-0.8506299331784248],[123,168,64,-0.8667180947959423],[123,168,65,-0.8669747784733772],[123,168,66,-0.8656223490834236],[123,168,67,-0.8638675026595592],[123,168,68,-0.8631513863801956],[123,168,69,-0.8642608299851418],[123,168,70,-0.8666238412261009],[123,168,71,-0.8693330250680447],[123,168,72,-0.8723209835588932],[123,168,73,-0.874347347766161],[123,168,74,-0.8750875182449818],[123,168,75,-0.874425869435072],[123,168,76,-0.871989157050848],[123,168,77,-0.8680406510829926],[123,168,78,-0.8634115941822529],[123,168,79,-0.8584424331784248],[123,169,64,-0.8745305947959423],[123,169,65,-0.8747872784733772],[123,169,66,-0.8734348490834236],[123,169,67,-0.8716800026595592],[123,169,68,-0.8709638863801956],[123,169,69,-0.8720733299851418],[123,169,70,-0.8744363412261009],[123,169,71,-0.8771455250680447],[123,169,72,-0.8801334835588932],[123,169,73,-0.882159847766161],[123,169,74,-0.8829000182449818],[123,169,75,-0.882238369435072],[123,169,76,-0.879801657050848],[123,169,77,-0.8758531510829926],[123,169,78,-0.8712240941822529],[123,169,79,-0.8662549331784248],[123,170,64,-0.8823430947959423],[123,170,65,-0.8825997784733772],[123,170,66,-0.8812473490834236],[123,170,67,-0.8794925026595592],[123,170,68,-0.8787763863801956],[123,170,69,-0.8798858299851418],[123,170,70,-0.8822488412261009],[123,170,71,-0.8849580250680447],[123,170,72,-0.8879459835588932],[123,170,73,-0.889972347766161],[123,170,74,-0.8907125182449818],[123,170,75,-0.890050869435072],[123,170,76,-0.887614157050848],[123,170,77,-0.8836656510829926],[123,170,78,-0.8790365941822529],[123,170,79,-0.8740674331784248],[123,171,64,-0.8901555947959423],[123,171,65,-0.8904122784733772],[123,171,66,-0.8890598490834236],[123,171,67,-0.8873050026595592],[123,171,68,-0.8865888863801956],[123,171,69,-0.8876983299851418],[123,171,70,-0.8900613412261009],[123,171,71,-0.8927705250680447],[123,171,72,-0.8957584835588932],[123,171,73,-0.897784847766161],[123,171,74,-0.8985250182449818],[123,171,75,-0.897863369435072],[123,171,76,-0.895426657050848],[123,171,77,-0.8914781510829926],[123,171,78,-0.8868490941822529],[123,171,79,-0.8818799331784248],[123,172,64,-0.8979680947959423],[123,172,65,-0.8982247784733772],[123,172,66,-0.8968723490834236],[123,172,67,-0.8951175026595592],[123,172,68,-0.8944013863801956],[123,172,69,-0.8955108299851418],[123,172,70,-0.8978738412261009],[123,172,71,-0.9005830250680447],[123,172,72,-0.9035709835588932],[123,172,73,-0.905597347766161],[123,172,74,-0.9063375182449818],[123,172,75,-0.905675869435072],[123,172,76,-0.903239157050848],[123,172,77,-0.8992906510829926],[123,172,78,-0.8946615941822529],[123,172,79,-0.8896924331784248],[123,173,64,-0.9057805947959423],[123,173,65,-0.9060372784733772],[123,173,66,-0.9046848490834236],[123,173,67,-0.9029300026595592],[123,173,68,-0.9022138863801956],[123,173,69,-0.9033233299851418],[123,173,70,-0.9056863412261009],[123,173,71,-0.9083955250680447],[123,173,72,-0.9113834835588932],[123,173,73,-0.913409847766161],[123,173,74,-0.9141500182449818],[123,173,75,-0.913488369435072],[123,173,76,-0.911051657050848],[123,173,77,-0.9071031510829926],[123,173,78,-0.9024740941822529],[123,173,79,-0.8975049331784248],[123,174,64,-0.9135930947959423],[123,174,65,-0.9138497784733772],[123,174,66,-0.9124973490834236],[123,174,67,-0.9107425026595592],[123,174,68,-0.9100263863801956],[123,174,69,-0.9111358299851418],[123,174,70,-0.9134988412261009],[123,174,71,-0.9162080250680447],[123,174,72,-0.9191959835588932],[123,174,73,-0.921222347766161],[123,174,74,-0.9219625182449818],[123,174,75,-0.921300869435072],[123,174,76,-0.918864157050848],[123,174,77,-0.9149156510829926],[123,174,78,-0.9102865941822529],[123,174,79,-0.9053174331784248],[123,175,64,-0.9214055947959423],[123,175,65,-0.9216622784733772],[123,175,66,-0.9203098490834236],[123,175,67,-0.9185550026595592],[123,175,68,-0.9178388863801956],[123,175,69,-0.9189483299851418],[123,175,70,-0.9213113412261009],[123,175,71,-0.9240205250680447],[123,175,72,-0.9270084835588932],[123,175,73,-0.929034847766161],[123,175,74,-0.9297750182449818],[123,175,75,-0.929113369435072],[123,175,76,-0.926676657050848],[123,175,77,-0.9227281510829926],[123,175,78,-0.9180990941822529],[123,175,79,-0.9131299331784248],[123,176,64,-0.9292180947959423],[123,176,65,-0.9294747784733772],[123,176,66,-0.9281223490834236],[123,176,67,-0.9263675026595592],[123,176,68,-0.9256513863801956],[123,176,69,-0.9267608299851418],[123,176,70,-0.9291238412261009],[123,176,71,-0.9318330250680447],[123,176,72,-0.9348209835588932],[123,176,73,-0.936847347766161],[123,176,74,-0.9375875182449818],[123,176,75,-0.936925869435072],[123,176,76,-0.934489157050848],[123,176,77,-0.9305406510829926],[123,176,78,-0.9259115941822529],[123,176,79,-0.9209424331784248],[123,177,64,-0.9370305947959423],[123,177,65,-0.9372872784733772],[123,177,66,-0.9359348490834236],[123,177,67,-0.9341800026595592],[123,177,68,-0.9334638863801956],[123,177,69,-0.9345733299851418],[123,177,70,-0.9369363412261009],[123,177,71,-0.9396455250680447],[123,177,72,-0.9426334835588932],[123,177,73,-0.944659847766161],[123,177,74,-0.9454000182449818],[123,177,75,-0.944738369435072],[123,177,76,-0.942301657050848],[123,177,77,-0.9383531510829926],[123,177,78,-0.9337240941822529],[123,177,79,-0.9287549331784248],[123,178,64,-0.9448430947959423],[123,178,65,-0.9450997784733772],[123,178,66,-0.9437473490834236],[123,178,67,-0.9419925026595592],[123,178,68,-0.9412763863801956],[123,178,69,-0.9423858299851418],[123,178,70,-0.9447488412261009],[123,178,71,-0.9474580250680447],[123,178,72,-0.9504459835588932],[123,178,73,-0.952472347766161],[123,178,74,-0.9532125182449818],[123,178,75,-0.952550869435072],[123,178,76,-0.950114157050848],[123,178,77,-0.9461656510829926],[123,178,78,-0.9415365941822529],[123,178,79,-0.9365674331784248],[123,179,64,-0.9526555947959423],[123,179,65,-0.9529122784733772],[123,179,66,-0.9515598490834236],[123,179,67,-0.9498050026595592],[123,179,68,-0.9490888863801956],[123,179,69,-0.9501983299851418],[123,179,70,-0.9525613412261009],[123,179,71,-0.9552705250680447],[123,179,72,-0.9582584835588932],[123,179,73,-0.960284847766161],[123,179,74,-0.9610250182449818],[123,179,75,-0.960363369435072],[123,179,76,-0.957926657050848],[123,179,77,-0.9539781510829926],[123,179,78,-0.9493490941822529],[123,179,79,-0.9443799331784248],[123,180,64,-0.9604680947959423],[123,180,65,-0.9607247784733772],[123,180,66,-0.9593723490834236],[123,180,67,-0.9576175026595592],[123,180,68,-0.9569013863801956],[123,180,69,-0.9580108299851418],[123,180,70,-0.9603738412261009],[123,180,71,-0.9630830250680447],[123,180,72,-0.9660709835588932],[123,180,73,-0.968097347766161],[123,180,74,-0.9688375182449818],[123,180,75,-0.968175869435072],[123,180,76,-0.965739157050848],[123,180,77,-0.9617906510829926],[123,180,78,-0.9571615941822529],[123,180,79,-0.9521924331784248],[123,181,64,-0.9682805947959423],[123,181,65,-0.9685372784733772],[123,181,66,-0.9671848490834236],[123,181,67,-0.9654300026595592],[123,181,68,-0.9647138863801956],[123,181,69,-0.9658233299851418],[123,181,70,-0.9681863412261009],[123,181,71,-0.9708955250680447],[123,181,72,-0.9738834835588932],[123,181,73,-0.975909847766161],[123,181,74,-0.9766500182449818],[123,181,75,-0.975988369435072],[123,181,76,-0.973551657050848],[123,181,77,-0.9696031510829926],[123,181,78,-0.9649740941822529],[123,181,79,-0.9600049331784248],[123,182,64,-0.9760930947959423],[123,182,65,-0.9763497784733772],[123,182,66,-0.9749973490834236],[123,182,67,-0.9732425026595592],[123,182,68,-0.9725263863801956],[123,182,69,-0.9736358299851418],[123,182,70,-0.9759988412261009],[123,182,71,-0.9787080250680447],[123,182,72,-0.9816959835588932],[123,182,73,-0.983722347766161],[123,182,74,-0.9844625182449818],[123,182,75,-0.983800869435072],[123,182,76,-0.981364157050848],[123,182,77,-0.9774156510829926],[123,182,78,-0.9727865941822529],[123,182,79,-0.9678174331784248],[123,183,64,-0.9839055947959423],[123,183,65,-0.9841622784733772],[123,183,66,-0.9828098490834236],[123,183,67,-0.9810550026595592],[123,183,68,-0.9803388863801956],[123,183,69,-0.9814483299851418],[123,183,70,-0.9838113412261009],[123,183,71,-0.9865205250680447],[123,183,72,-0.9895084835588932],[123,183,73,-0.991534847766161],[123,183,74,-0.9922750182449818],[123,183,75,-0.991613369435072],[123,183,76,-0.989176657050848],[123,183,77,-0.9852281510829926],[123,183,78,-0.9805990941822529],[123,183,79,-0.9756299331784248],[123,184,64,-0.9917180947959423],[123,184,65,-0.9919747784733772],[123,184,66,-0.9906223490834236],[123,184,67,-0.9888675026595592],[123,184,68,-0.9881513863801956],[123,184,69,-0.9892608299851418],[123,184,70,-0.9916238412261009],[123,184,71,-0.9943330250680447],[123,184,72,-0.9973209835588932],[123,184,73,-0.999347347766161],[123,184,74,-1.0000875182449818],[123,184,75,-0.999425869435072],[123,184,76,-0.996989157050848],[123,184,77,-0.9930406510829926],[123,184,78,-0.9884115941822529],[123,184,79,-0.9834424331784248],[123,185,64,-0.9995305947959423],[123,185,65,-0.9997872784733772],[123,185,66,-0.9984348490834236],[123,185,67,-0.9966800026595592],[123,185,68,-0.9959638863801956],[123,185,69,-0.9970733299851418],[123,185,70,-0.9994363412261009],[123,185,71,-1.0021455250680447],[123,185,72,-1.0051334835588932],[123,185,73,-1.007159847766161],[123,185,74,-1.0079000182449818],[123,185,75,-1.007238369435072],[123,185,76,-1.004801657050848],[123,185,77,-1.0008531510829926],[123,185,78,-0.9962240941822529],[123,185,79,-0.9912549331784248],[123,186,64,-1.0073430947959423],[123,186,65,-1.0075997784733772],[123,186,66,-1.0062473490834236],[123,186,67,-1.0044925026595592],[123,186,68,-1.0037763863801956],[123,186,69,-1.0048858299851418],[123,186,70,-1.007248841226101],[123,186,71,-1.0099580250680447],[123,186,72,-1.0129459835588932],[123,186,73,-1.014972347766161],[123,186,74,-1.0157125182449818],[123,186,75,-1.015050869435072],[123,186,76,-1.012614157050848],[123,186,77,-1.0086656510829926],[123,186,78,-1.0040365941822529],[123,186,79,-0.9990674331784248],[123,187,64,-1.0151555947959423],[123,187,65,-1.0154122784733772],[123,187,66,-1.0140598490834236],[123,187,67,-1.0123050026595592],[123,187,68,-1.0115888863801956],[123,187,69,-1.0126983299851418],[123,187,70,-1.015061341226101],[123,187,71,-1.0177705250680447],[123,187,72,-1.0207584835588932],[123,187,73,-1.022784847766161],[123,187,74,-1.0235250182449818],[123,187,75,-1.022863369435072],[123,187,76,-1.020426657050848],[123,187,77,-1.0164781510829926],[123,187,78,-1.0118490941822529],[123,187,79,-1.0068799331784248],[123,188,64,-1.0229680947959423],[123,188,65,-1.0232247784733772],[123,188,66,-1.0218723490834236],[123,188,67,-1.0201175026595592],[123,188,68,-1.0194013863801956],[123,188,69,-1.0205108299851418],[123,188,70,-1.022873841226101],[123,188,71,-1.0255830250680447],[123,188,72,-1.0285709835588932],[123,188,73,-1.030597347766161],[123,188,74,-1.0313375182449818],[123,188,75,-1.030675869435072],[123,188,76,-1.028239157050848],[123,188,77,-1.0242906510829926],[123,188,78,-1.0196615941822529],[123,188,79,-1.0146924331784248],[123,189,64,-1.0307805947959423],[123,189,65,-1.0310372784733772],[123,189,66,-1.0296848490834236],[123,189,67,-1.0279300026595592],[123,189,68,-1.0272138863801956],[123,189,69,-1.0283233299851418],[123,189,70,-1.030686341226101],[123,189,71,-1.0333955250680447],[123,189,72,-1.0363834835588932],[123,189,73,-1.038409847766161],[123,189,74,-1.0391500182449818],[123,189,75,-1.038488369435072],[123,189,76,-1.036051657050848],[123,189,77,-1.0321031510829926],[123,189,78,-1.0274740941822529],[123,189,79,-1.0225049331784248],[123,190,64,-1.0385930947959423],[123,190,65,-1.0388497784733772],[123,190,66,-1.0374973490834236],[123,190,67,-1.0357425026595592],[123,190,68,-1.0350263863801956],[123,190,69,-1.0361358299851418],[123,190,70,-1.038498841226101],[123,190,71,-1.0412080250680447],[123,190,72,-1.0441959835588932],[123,190,73,-1.046222347766161],[123,190,74,-1.0469625182449818],[123,190,75,-1.046300869435072],[123,190,76,-1.043864157050848],[123,190,77,-1.0399156510829926],[123,190,78,-1.0352865941822529],[123,190,79,-1.0303174331784248],[123,191,64,-1.0464055947959423],[123,191,65,-1.0466622784733772],[123,191,66,-1.0453098490834236],[123,191,67,-1.0435550026595592],[123,191,68,-1.0428388863801956],[123,191,69,-1.0439483299851418],[123,191,70,-1.046311341226101],[123,191,71,-1.0490205250680447],[123,191,72,-1.0520084835588932],[123,191,73,-1.054034847766161],[123,191,74,-1.0547750182449818],[123,191,75,-1.054113369435072],[123,191,76,-1.051676657050848],[123,191,77,-1.0477281510829926],[123,191,78,-1.0430990941822529],[123,191,79,-1.0381299331784248],[123,192,64,-1.0542180947959423],[123,192,65,-1.0544747784733772],[123,192,66,-1.0531223490834236],[123,192,67,-1.0513675026595592],[123,192,68,-1.0506513863801956],[123,192,69,-1.0517608299851418],[123,192,70,-1.054123841226101],[123,192,71,-1.0568330250680447],[123,192,72,-1.0598209835588932],[123,192,73,-1.061847347766161],[123,192,74,-1.0625875182449818],[123,192,75,-1.061925869435072],[123,192,76,-1.059489157050848],[123,192,77,-1.0555406510829926],[123,192,78,-1.0509115941822529],[123,192,79,-1.0459424331784248],[123,193,64,-1.0620305947959423],[123,193,65,-1.0622872784733772],[123,193,66,-1.0609348490834236],[123,193,67,-1.0591800026595592],[123,193,68,-1.0584638863801956],[123,193,69,-1.0595733299851418],[123,193,70,-1.061936341226101],[123,193,71,-1.0646455250680447],[123,193,72,-1.0676334835588932],[123,193,73,-1.069659847766161],[123,193,74,-1.0704000182449818],[123,193,75,-1.069738369435072],[123,193,76,-1.067301657050848],[123,193,77,-1.0633531510829926],[123,193,78,-1.0587240941822529],[123,193,79,-1.0537549331784248],[123,194,64,-1.0698430947959423],[123,194,65,-1.0700997784733772],[123,194,66,-1.0687473490834236],[123,194,67,-1.0669925026595592],[123,194,68,-1.0662763863801956],[123,194,69,-1.0673858299851418],[123,194,70,-1.069748841226101],[123,194,71,-1.0724580250680447],[123,194,72,-1.0754459835588932],[123,194,73,-1.077472347766161],[123,194,74,-1.0782125182449818],[123,194,75,-1.077550869435072],[123,194,76,-1.075114157050848],[123,194,77,-1.0711656510829926],[123,194,78,-1.0665365941822529],[123,194,79,-1.0615674331784248],[123,195,64,-1.0776555947959423],[123,195,65,-1.0779122784733772],[123,195,66,-1.0765598490834236],[123,195,67,-1.0748050026595592],[123,195,68,-1.0740888863801956],[123,195,69,-1.0751983299851418],[123,195,70,-1.077561341226101],[123,195,71,-1.0802705250680447],[123,195,72,-1.0832584835588932],[123,195,73,-1.085284847766161],[123,195,74,-1.0860250182449818],[123,195,75,-1.085363369435072],[123,195,76,-1.082926657050848],[123,195,77,-1.0789781510829926],[123,195,78,-1.0743490941822529],[123,195,79,-1.0693799331784248],[123,196,64,-1.0854680947959423],[123,196,65,-1.0857247784733772],[123,196,66,-1.0843723490834236],[123,196,67,-1.0826175026595592],[123,196,68,-1.0819013863801956],[123,196,69,-1.0830108299851418],[123,196,70,-1.085373841226101],[123,196,71,-1.0880830250680447],[123,196,72,-1.0910709835588932],[123,196,73,-1.093097347766161],[123,196,74,-1.0938375182449818],[123,196,75,-1.093175869435072],[123,196,76,-1.090739157050848],[123,196,77,-1.0867906510829926],[123,196,78,-1.0821615941822529],[123,196,79,-1.0771924331784248],[123,197,64,-1.0932805947959423],[123,197,65,-1.0935372784733772],[123,197,66,-1.0921848490834236],[123,197,67,-1.0904300026595592],[123,197,68,-1.0897138863801956],[123,197,69,-1.0908233299851418],[123,197,70,-1.093186341226101],[123,197,71,-1.0958955250680447],[123,197,72,-1.0988834835588932],[123,197,73,-1.100909847766161],[123,197,74,-1.1016500182449818],[123,197,75,-1.100988369435072],[123,197,76,-1.098551657050848],[123,197,77,-1.0946031510829926],[123,197,78,-1.0899740941822529],[123,197,79,-1.0850049331784248],[123,198,64,-1.1010930947959423],[123,198,65,-1.1013497784733772],[123,198,66,-1.0999973490834236],[123,198,67,-1.0982425026595592],[123,198,68,-1.0975263863801956],[123,198,69,-1.0986358299851418],[123,198,70,-1.100998841226101],[123,198,71,-1.1037080250680447],[123,198,72,-1.1066959835588932],[123,198,73,-1.108722347766161],[123,198,74,-1.1094625182449818],[123,198,75,-1.108800869435072],[123,198,76,-1.106364157050848],[123,198,77,-1.1024156510829926],[123,198,78,-1.0977865941822529],[123,198,79,-1.0928174331784248],[123,199,64,-1.1089055947959423],[123,199,65,-1.1091622784733772],[123,199,66,-1.1078098490834236],[123,199,67,-1.1060550026595592],[123,199,68,-1.1053388863801956],[123,199,69,-1.1064483299851418],[123,199,70,-1.108811341226101],[123,199,71,-1.1115205250680447],[123,199,72,-1.1145084835588932],[123,199,73,-1.116534847766161],[123,199,74,-1.1172750182449818],[123,199,75,-1.116613369435072],[123,199,76,-1.114176657050848],[123,199,77,-1.1102281510829926],[123,199,78,-1.1055990941822529],[123,199,79,-1.1006299331784248],[123,200,64,-1.1167180947959423],[123,200,65,-1.1169747784733772],[123,200,66,-1.1156223490834236],[123,200,67,-1.1138675026595592],[123,200,68,-1.1131513863801956],[123,200,69,-1.1142608299851418],[123,200,70,-1.116623841226101],[123,200,71,-1.1193330250680447],[123,200,72,-1.1223209835588932],[123,200,73,-1.124347347766161],[123,200,74,-1.1250875182449818],[123,200,75,-1.124425869435072],[123,200,76,-1.121989157050848],[123,200,77,-1.1180406510829926],[123,200,78,-1.1134115941822529],[123,200,79,-1.1084424331784248],[123,201,64,-1.1245305947959423],[123,201,65,-1.1247872784733772],[123,201,66,-1.1234348490834236],[123,201,67,-1.1216800026595592],[123,201,68,-1.1209638863801956],[123,201,69,-1.1220733299851418],[123,201,70,-1.124436341226101],[123,201,71,-1.1271455250680447],[123,201,72,-1.1301334835588932],[123,201,73,-1.132159847766161],[123,201,74,-1.1329000182449818],[123,201,75,-1.132238369435072],[123,201,76,-1.129801657050848],[123,201,77,-1.1258531510829926],[123,201,78,-1.1212240941822529],[123,201,79,-1.1162549331784248],[123,202,64,-1.1323430947959423],[123,202,65,-1.1325997784733772],[123,202,66,-1.1312473490834236],[123,202,67,-1.1294925026595592],[123,202,68,-1.1287763863801956],[123,202,69,-1.1298858299851418],[123,202,70,-1.132248841226101],[123,202,71,-1.1349580250680447],[123,202,72,-1.1379459835588932],[123,202,73,-1.139972347766161],[123,202,74,-1.1407125182449818],[123,202,75,-1.140050869435072],[123,202,76,-1.137614157050848],[123,202,77,-1.1336656510829926],[123,202,78,-1.1290365941822529],[123,202,79,-1.1240674331784248],[123,203,64,-1.1401555947959423],[123,203,65,-1.1404122784733772],[123,203,66,-1.1390598490834236],[123,203,67,-1.1373050026595592],[123,203,68,-1.1365888863801956],[123,203,69,-1.1376983299851418],[123,203,70,-1.140061341226101],[123,203,71,-1.1427705250680447],[123,203,72,-1.1457584835588932],[123,203,73,-1.147784847766161],[123,203,74,-1.1485250182449818],[123,203,75,-1.147863369435072],[123,203,76,-1.145426657050848],[123,203,77,-1.1414781510829926],[123,203,78,-1.1368490941822529],[123,203,79,-1.1318799331784248],[123,204,64,-1.1479680947959423],[123,204,65,-1.1482247784733772],[123,204,66,-1.1468723490834236],[123,204,67,-1.1451175026595592],[123,204,68,-1.1444013863801956],[123,204,69,-1.1455108299851418],[123,204,70,-1.147873841226101],[123,204,71,-1.1505830250680447],[123,204,72,-1.1535709835588932],[123,204,73,-1.155597347766161],[123,204,74,-1.1563375182449818],[123,204,75,-1.155675869435072],[123,204,76,-1.153239157050848],[123,204,77,-1.1492906510829926],[123,204,78,-1.1446615941822529],[123,204,79,-1.1396924331784248],[123,205,64,-1.1557805947959423],[123,205,65,-1.1560372784733772],[123,205,66,-1.1546848490834236],[123,205,67,-1.1529300026595592],[123,205,68,-1.1522138863801956],[123,205,69,-1.1533233299851418],[123,205,70,-1.155686341226101],[123,205,71,-1.1583955250680447],[123,205,72,-1.1613834835588932],[123,205,73,-1.163409847766161],[123,205,74,-1.1641500182449818],[123,205,75,-1.163488369435072],[123,205,76,-1.161051657050848],[123,205,77,-1.1571031510829926],[123,205,78,-1.1524740941822529],[123,205,79,-1.1475049331784248],[123,206,64,-1.1635930947959423],[123,206,65,-1.1638497784733772],[123,206,66,-1.1624973490834236],[123,206,67,-1.1607425026595592],[123,206,68,-1.1600263863801956],[123,206,69,-1.1611358299851418],[123,206,70,-1.163498841226101],[123,206,71,-1.1662080250680447],[123,206,72,-1.1691959835588932],[123,206,73,-1.171222347766161],[123,206,74,-1.1719625182449818],[123,206,75,-1.171300869435072],[123,206,76,-1.168864157050848],[123,206,77,-1.1649156510829926],[123,206,78,-1.1602865941822529],[123,206,79,-1.1553174331784248],[123,207,64,-1.1714055947959423],[123,207,65,-1.1716622784733772],[123,207,66,-1.1703098490834236],[123,207,67,-1.1685550026595592],[123,207,68,-1.1678388863801956],[123,207,69,-1.1689483299851418],[123,207,70,-1.171311341226101],[123,207,71,-1.1740205250680447],[123,207,72,-1.1770084835588932],[123,207,73,-1.179034847766161],[123,207,74,-1.1797750182449818],[123,207,75,-1.179113369435072],[123,207,76,-1.176676657050848],[123,207,77,-1.1727281510829926],[123,207,78,-1.1680990941822529],[123,207,79,-1.1631299331784248],[123,208,64,-1.1792180947959423],[123,208,65,-1.1794747784733772],[123,208,66,-1.1781223490834236],[123,208,67,-1.1763675026595592],[123,208,68,-1.1756513863801956],[123,208,69,-1.1767608299851418],[123,208,70,-1.179123841226101],[123,208,71,-1.1818330250680447],[123,208,72,-1.1848209835588932],[123,208,73,-1.186847347766161],[123,208,74,-1.1875875182449818],[123,208,75,-1.186925869435072],[123,208,76,-1.184489157050848],[123,208,77,-1.1805406510829926],[123,208,78,-1.1759115941822529],[123,208,79,-1.1709424331784248],[123,209,64,-1.1870305947959423],[123,209,65,-1.1872872784733772],[123,209,66,-1.1859348490834236],[123,209,67,-1.1841800026595592],[123,209,68,-1.1834638863801956],[123,209,69,-1.1845733299851418],[123,209,70,-1.186936341226101],[123,209,71,-1.1896455250680447],[123,209,72,-1.1926334835588932],[123,209,73,-1.194659847766161],[123,209,74,-1.1954000182449818],[123,209,75,-1.194738369435072],[123,209,76,-1.192301657050848],[123,209,77,-1.1883531510829926],[123,209,78,-1.1837240941822529],[123,209,79,-1.1787549331784248],[123,210,64,-1.1948430947959423],[123,210,65,-1.1950997784733772],[123,210,66,-1.1937473490834236],[123,210,67,-1.1919925026595592],[123,210,68,-1.1912763863801956],[123,210,69,-1.1923858299851418],[123,210,70,-1.194748841226101],[123,210,71,-1.1974580250680447],[123,210,72,-1.2004459835588932],[123,210,73,-1.202472347766161],[123,210,74,-1.2032125182449818],[123,210,75,-1.202550869435072],[123,210,76,-1.200114157050848],[123,210,77,-1.1961656510829926],[123,210,78,-1.1915365941822529],[123,210,79,-1.1865674331784248],[123,211,64,-1.2026555947959423],[123,211,65,-1.2029122784733772],[123,211,66,-1.2015598490834236],[123,211,67,-1.1998050026595592],[123,211,68,-1.1990888863801956],[123,211,69,-1.2001983299851418],[123,211,70,-1.202561341226101],[123,211,71,-1.2052705250680447],[123,211,72,-1.2082584835588932],[123,211,73,-1.210284847766161],[123,211,74,-1.2110250182449818],[123,211,75,-1.210363369435072],[123,211,76,-1.207926657050848],[123,211,77,-1.2039781510829926],[123,211,78,-1.1993490941822529],[123,211,79,-1.1943799331784248],[123,212,64,-1.2104680947959423],[123,212,65,-1.2107247784733772],[123,212,66,-1.2093723490834236],[123,212,67,-1.2076175026595592],[123,212,68,-1.2069013863801956],[123,212,69,-1.2080108299851418],[123,212,70,-1.210373841226101],[123,212,71,-1.2130830250680447],[123,212,72,-1.2160709835588932],[123,212,73,-1.218097347766161],[123,212,74,-1.2188375182449818],[123,212,75,-1.218175869435072],[123,212,76,-1.215739157050848],[123,212,77,-1.2117906510829926],[123,212,78,-1.2071615941822529],[123,212,79,-1.2021924331784248],[123,213,64,-1.2182805947959423],[123,213,65,-1.2185372784733772],[123,213,66,-1.2171848490834236],[123,213,67,-1.2154300026595592],[123,213,68,-1.2147138863801956],[123,213,69,-1.2158233299851418],[123,213,70,-1.218186341226101],[123,213,71,-1.2208955250680447],[123,213,72,-1.2238834835588932],[123,213,73,-1.225909847766161],[123,213,74,-1.2266500182449818],[123,213,75,-1.225988369435072],[123,213,76,-1.223551657050848],[123,213,77,-1.2196031510829926],[123,213,78,-1.2149740941822529],[123,213,79,-1.2100049331784248],[123,214,64,-1.2260930947959423],[123,214,65,-1.2263497784733772],[123,214,66,-1.2249973490834236],[123,214,67,-1.2232425026595592],[123,214,68,-1.2225263863801956],[123,214,69,-1.2236358299851418],[123,214,70,-1.225998841226101],[123,214,71,-1.2287080250680447],[123,214,72,-1.2316959835588932],[123,214,73,-1.233722347766161],[123,214,74,-1.2344625182449818],[123,214,75,-1.233800869435072],[123,214,76,-1.231364157050848],[123,214,77,-1.2274156510829926],[123,214,78,-1.2227865941822529],[123,214,79,-1.2178174331784248],[123,215,64,-1.2339055947959423],[123,215,65,-1.2341622784733772],[123,215,66,-1.2328098490834236],[123,215,67,-1.2310550026595592],[123,215,68,-1.2303388863801956],[123,215,69,-1.2314483299851418],[123,215,70,-1.233811341226101],[123,215,71,-1.2365205250680447],[123,215,72,-1.2395084835588932],[123,215,73,-1.241534847766161],[123,215,74,-1.2422750182449818],[123,215,75,-1.241613369435072],[123,215,76,-1.239176657050848],[123,215,77,-1.2352281510829926],[123,215,78,-1.2305990941822529],[123,215,79,-1.2256299331784248],[123,216,64,-1.2417180947959423],[123,216,65,-1.2419747784733772],[123,216,66,-1.2406223490834236],[123,216,67,-1.2388675026595592],[123,216,68,-1.2381513863801956],[123,216,69,-1.2392608299851418],[123,216,70,-1.241623841226101],[123,216,71,-1.2443330250680447],[123,216,72,-1.2473209835588932],[123,216,73,-1.249347347766161],[123,216,74,-1.2500875182449818],[123,216,75,-1.249425869435072],[123,216,76,-1.246989157050848],[123,216,77,-1.2430406510829926],[123,216,78,-1.2384115941822529],[123,216,79,-1.2334424331784248],[123,217,64,-1.2495305947959423],[123,217,65,-1.2497872784733772],[123,217,66,-1.2484348490834236],[123,217,67,-1.2466800026595592],[123,217,68,-1.2459638863801956],[123,217,69,-1.2470733299851418],[123,217,70,-1.249436341226101],[123,217,71,-1.2521455250680447],[123,217,72,-1.2551334835588932],[123,217,73,-1.257159847766161],[123,217,74,-1.2579000182449818],[123,217,75,-1.257238369435072],[123,217,76,-1.254801657050848],[123,217,77,-1.2508531510829926],[123,217,78,-1.2462240941822529],[123,217,79,-1.2412549331784248],[123,218,64,-1.2573430947959423],[123,218,65,-1.2575997784733772],[123,218,66,-1.2562473490834236],[123,218,67,-1.2544925026595592],[123,218,68,-1.2537763863801956],[123,218,69,-1.2548858299851418],[123,218,70,-1.257248841226101],[123,218,71,-1.2599580250680447],[123,218,72,-1.2629459835588932],[123,218,73,-1.264972347766161],[123,218,74,-1.2657125182449818],[123,218,75,-1.265050869435072],[123,218,76,-1.262614157050848],[123,218,77,-1.2586656510829926],[123,218,78,-1.2540365941822529],[123,218,79,-1.2490674331784248],[123,219,64,-1.2651555947959423],[123,219,65,-1.2654122784733772],[123,219,66,-1.2640598490834236],[123,219,67,-1.2623050026595592],[123,219,68,-1.2615888863801956],[123,219,69,-1.2626983299851418],[123,219,70,-1.265061341226101],[123,219,71,-1.2677705250680447],[123,219,72,-1.2707584835588932],[123,219,73,-1.272784847766161],[123,219,74,-1.2735250182449818],[123,219,75,-1.272863369435072],[123,219,76,-1.270426657050848],[123,219,77,-1.2664781510829926],[123,219,78,-1.2618490941822529],[123,219,79,-1.2568799331784248],[123,220,64,-1.2729680947959423],[123,220,65,-1.2732247784733772],[123,220,66,-1.2718723490834236],[123,220,67,-1.2701175026595592],[123,220,68,-1.2694013863801956],[123,220,69,-1.2705108299851418],[123,220,70,-1.272873841226101],[123,220,71,-1.2755830250680447],[123,220,72,-1.2785709835588932],[123,220,73,-1.280597347766161],[123,220,74,-1.2813375182449818],[123,220,75,-1.280675869435072],[123,220,76,-1.278239157050848],[123,220,77,-1.2742906510829926],[123,220,78,-1.2696615941822529],[123,220,79,-1.2646924331784248],[123,221,64,-1.2807805947959423],[123,221,65,-1.2810372784733772],[123,221,66,-1.2796848490834236],[123,221,67,-1.2779300026595592],[123,221,68,-1.2772138863801956],[123,221,69,-1.2783233299851418],[123,221,70,-1.280686341226101],[123,221,71,-1.2833955250680447],[123,221,72,-1.2863834835588932],[123,221,73,-1.288409847766161],[123,221,74,-1.2891500182449818],[123,221,75,-1.288488369435072],[123,221,76,-1.286051657050848],[123,221,77,-1.2821031510829926],[123,221,78,-1.2774740941822529],[123,221,79,-1.2725049331784248],[123,222,64,-1.2885930947959423],[123,222,65,-1.2888497784733772],[123,222,66,-1.2874973490834236],[123,222,67,-1.2857425026595592],[123,222,68,-1.2850263863801956],[123,222,69,-1.2861358299851418],[123,222,70,-1.288498841226101],[123,222,71,-1.2912080250680447],[123,222,72,-1.2941959835588932],[123,222,73,-1.296222347766161],[123,222,74,-1.2969625182449818],[123,222,75,-1.296300869435072],[123,222,76,-1.293864157050848],[123,222,77,-1.2899156510829926],[123,222,78,-1.2852865941822529],[123,222,79,-1.2803174331784248],[123,223,64,-1.2964055947959423],[123,223,65,-1.2966622784733772],[123,223,66,-1.2953098490834236],[123,223,67,-1.2935550026595592],[123,223,68,-1.2928388863801956],[123,223,69,-1.2939483299851418],[123,223,70,-1.296311341226101],[123,223,71,-1.2990205250680447],[123,223,72,-1.3020084835588932],[123,223,73,-1.304034847766161],[123,223,74,-1.3047750182449818],[123,223,75,-1.304113369435072],[123,223,76,-1.301676657050848],[123,223,77,-1.2977281510829926],[123,223,78,-1.2930990941822529],[123,223,79,-1.2881299331784248],[123,224,64,-1.3042180947959423],[123,224,65,-1.3044747784733772],[123,224,66,-1.3031223490834236],[123,224,67,-1.3013675026595592],[123,224,68,-1.3006513863801956],[123,224,69,-1.3017608299851418],[123,224,70,-1.304123841226101],[123,224,71,-1.3068330250680447],[123,224,72,-1.3098209835588932],[123,224,73,-1.311847347766161],[123,224,74,-1.3125875182449818],[123,224,75,-1.311925869435072],[123,224,76,-1.309489157050848],[123,224,77,-1.3055406510829926],[123,224,78,-1.3009115941822529],[123,224,79,-1.2959424331784248],[123,225,64,-1.3120305947959423],[123,225,65,-1.3122872784733772],[123,225,66,-1.3109348490834236],[123,225,67,-1.3091800026595592],[123,225,68,-1.3084638863801956],[123,225,69,-1.3095733299851418],[123,225,70,-1.311936341226101],[123,225,71,-1.3146455250680447],[123,225,72,-1.3176334835588932],[123,225,73,-1.319659847766161],[123,225,74,-1.3204000182449818],[123,225,75,-1.319738369435072],[123,225,76,-1.317301657050848],[123,225,77,-1.3133531510829926],[123,225,78,-1.3087240941822529],[123,225,79,-1.3037549331784248],[123,226,64,-1.3198430947959423],[123,226,65,-1.3200997784733772],[123,226,66,-1.3187473490834236],[123,226,67,-1.3169925026595592],[123,226,68,-1.3162763863801956],[123,226,69,-1.3173858299851418],[123,226,70,-1.319748841226101],[123,226,71,-1.3224580250680447],[123,226,72,-1.3254459835588932],[123,226,73,-1.327472347766161],[123,226,74,-1.3282125182449818],[123,226,75,-1.327550869435072],[123,226,76,-1.325114157050848],[123,226,77,-1.3211656510829926],[123,226,78,-1.3165365941822529],[123,226,79,-1.3115674331784248],[123,227,64,-1.3276555947959423],[123,227,65,-1.3279122784733772],[123,227,66,-1.3265598490834236],[123,227,67,-1.3248050026595592],[123,227,68,-1.3240888863801956],[123,227,69,-1.3251983299851418],[123,227,70,-1.327561341226101],[123,227,71,-1.3302705250680447],[123,227,72,-1.3332584835588932],[123,227,73,-1.335284847766161],[123,227,74,-1.3360250182449818],[123,227,75,-1.335363369435072],[123,227,76,-1.332926657050848],[123,227,77,-1.3289781510829926],[123,227,78,-1.3243490941822529],[123,227,79,-1.3193799331784248],[123,228,64,-1.3354680947959423],[123,228,65,-1.3357247784733772],[123,228,66,-1.3343723490834236],[123,228,67,-1.3326175026595592],[123,228,68,-1.3319013863801956],[123,228,69,-1.3330108299851418],[123,228,70,-1.335373841226101],[123,228,71,-1.3380830250680447],[123,228,72,-1.3410709835588932],[123,228,73,-1.343097347766161],[123,228,74,-1.3438375182449818],[123,228,75,-1.343175869435072],[123,228,76,-1.340739157050848],[123,228,77,-1.3367906510829926],[123,228,78,-1.3321615941822529],[123,228,79,-1.3271924331784248],[123,229,64,-1.3432805947959423],[123,229,65,-1.3435372784733772],[123,229,66,-1.3421848490834236],[123,229,67,-1.3404300026595592],[123,229,68,-1.3397138863801956],[123,229,69,-1.3408233299851418],[123,229,70,-1.343186341226101],[123,229,71,-1.3458955250680447],[123,229,72,-1.3488834835588932],[123,229,73,-1.350909847766161],[123,229,74,-1.3516500182449818],[123,229,75,-1.350988369435072],[123,229,76,-1.348551657050848],[123,229,77,-1.3446031510829926],[123,229,78,-1.3399740941822529],[123,229,79,-1.3350049331784248],[123,230,64,-1.3510930947959423],[123,230,65,-1.3513497784733772],[123,230,66,-1.3499973490834236],[123,230,67,-1.3482425026595592],[123,230,68,-1.3475263863801956],[123,230,69,-1.3486358299851418],[123,230,70,-1.350998841226101],[123,230,71,-1.3537080250680447],[123,230,72,-1.3566959835588932],[123,230,73,-1.358722347766161],[123,230,74,-1.3594625182449818],[123,230,75,-1.358800869435072],[123,230,76,-1.356364157050848],[123,230,77,-1.3524156510829926],[123,230,78,-1.3477865941822529],[123,230,79,-1.3428174331784248],[123,231,64,-1.3589055947959423],[123,231,65,-1.3591622784733772],[123,231,66,-1.3578098490834236],[123,231,67,-1.3560550026595592],[123,231,68,-1.3553388863801956],[123,231,69,-1.3564483299851418],[123,231,70,-1.358811341226101],[123,231,71,-1.3615205250680447],[123,231,72,-1.3645084835588932],[123,231,73,-1.366534847766161],[123,231,74,-1.3672750182449818],[123,231,75,-1.366613369435072],[123,231,76,-1.364176657050848],[123,231,77,-1.3602281510829926],[123,231,78,-1.3555990941822529],[123,231,79,-1.3506299331784248],[123,232,64,-1.3667180947959423],[123,232,65,-1.3669747784733772],[123,232,66,-1.3656223490834236],[123,232,67,-1.3638675026595592],[123,232,68,-1.3631513863801956],[123,232,69,-1.3642608299851418],[123,232,70,-1.366623841226101],[123,232,71,-1.3693330250680447],[123,232,72,-1.3723209835588932],[123,232,73,-1.374347347766161],[123,232,74,-1.3750875182449818],[123,232,75,-1.374425869435072],[123,232,76,-1.371989157050848],[123,232,77,-1.3680406510829926],[123,232,78,-1.3634115941822529],[123,232,79,-1.3584424331784248],[123,233,64,-1.3745305947959423],[123,233,65,-1.3747872784733772],[123,233,66,-1.3734348490834236],[123,233,67,-1.3716800026595592],[123,233,68,-1.3709638863801956],[123,233,69,-1.3720733299851418],[123,233,70,-1.374436341226101],[123,233,71,-1.3771455250680447],[123,233,72,-1.3801334835588932],[123,233,73,-1.382159847766161],[123,233,74,-1.3829000182449818],[123,233,75,-1.382238369435072],[123,233,76,-1.379801657050848],[123,233,77,-1.3758531510829926],[123,233,78,-1.3712240941822529],[123,233,79,-1.3662549331784248],[123,234,64,-1.3823430947959423],[123,234,65,-1.3825997784733772],[123,234,66,-1.3812473490834236],[123,234,67,-1.3794925026595592],[123,234,68,-1.3787763863801956],[123,234,69,-1.3798858299851418],[123,234,70,-1.382248841226101],[123,234,71,-1.3849580250680447],[123,234,72,-1.3879459835588932],[123,234,73,-1.389972347766161],[123,234,74,-1.3907125182449818],[123,234,75,-1.390050869435072],[123,234,76,-1.387614157050848],[123,234,77,-1.3836656510829926],[123,234,78,-1.3790365941822529],[123,234,79,-1.3740674331784248],[123,235,64,-1.3901555947959423],[123,235,65,-1.3904122784733772],[123,235,66,-1.3890598490834236],[123,235,67,-1.3873050026595592],[123,235,68,-1.3865888863801956],[123,235,69,-1.3876983299851418],[123,235,70,-1.390061341226101],[123,235,71,-1.3927705250680447],[123,235,72,-1.3957584835588932],[123,235,73,-1.397784847766161],[123,235,74,-1.3985250182449818],[123,235,75,-1.397863369435072],[123,235,76,-1.395426657050848],[123,235,77,-1.3914781510829926],[123,235,78,-1.3868490941822529],[123,235,79,-1.3818799331784248],[123,236,64,-1.3979680947959423],[123,236,65,-1.3982247784733772],[123,236,66,-1.3968723490834236],[123,236,67,-1.3951175026595592],[123,236,68,-1.3944013863801956],[123,236,69,-1.3955108299851418],[123,236,70,-1.397873841226101],[123,236,71,-1.4005830250680447],[123,236,72,-1.4035709835588932],[123,236,73,-1.405597347766161],[123,236,74,-1.4063375182449818],[123,236,75,-1.405675869435072],[123,236,76,-1.403239157050848],[123,236,77,-1.3992906510829926],[123,236,78,-1.3946615941822529],[123,236,79,-1.3896924331784248],[123,237,64,-1.4057805947959423],[123,237,65,-1.4060372784733772],[123,237,66,-1.4046848490834236],[123,237,67,-1.4029300026595592],[123,237,68,-1.4022138863801956],[123,237,69,-1.4033233299851418],[123,237,70,-1.405686341226101],[123,237,71,-1.4083955250680447],[123,237,72,-1.4113834835588932],[123,237,73,-1.413409847766161],[123,237,74,-1.4141500182449818],[123,237,75,-1.413488369435072],[123,237,76,-1.411051657050848],[123,237,77,-1.4071031510829926],[123,237,78,-1.4024740941822529],[123,237,79,-1.3975049331784248],[123,238,64,-1.4135930947959423],[123,238,65,-1.4138497784733772],[123,238,66,-1.4124973490834236],[123,238,67,-1.4107425026595592],[123,238,68,-1.4100263863801956],[123,238,69,-1.4111358299851418],[123,238,70,-1.413498841226101],[123,238,71,-1.4162080250680447],[123,238,72,-1.4191959835588932],[123,238,73,-1.421222347766161],[123,238,74,-1.4219625182449818],[123,238,75,-1.421300869435072],[123,238,76,-1.418864157050848],[123,238,77,-1.4149156510829926],[123,238,78,-1.4102865941822529],[123,238,79,-1.4053174331784248],[123,239,64,-1.4214055947959423],[123,239,65,-1.4216622784733772],[123,239,66,-1.4203098490834236],[123,239,67,-1.4185550026595592],[123,239,68,-1.4178388863801956],[123,239,69,-1.4189483299851418],[123,239,70,-1.421311341226101],[123,239,71,-1.4240205250680447],[123,239,72,-1.4270084835588932],[123,239,73,-1.429034847766161],[123,239,74,-1.4297750182449818],[123,239,75,-1.429113369435072],[123,239,76,-1.426676657050848],[123,239,77,-1.4227281510829926],[123,239,78,-1.4180990941822529],[123,239,79,-1.4131299331784248],[123,240,64,-1.4292180947959423],[123,240,65,-1.4294747784733772],[123,240,66,-1.4281223490834236],[123,240,67,-1.4263675026595592],[123,240,68,-1.4256513863801956],[123,240,69,-1.4267608299851418],[123,240,70,-1.429123841226101],[123,240,71,-1.4318330250680447],[123,240,72,-1.4348209835588932],[123,240,73,-1.436847347766161],[123,240,74,-1.4375875182449818],[123,240,75,-1.436925869435072],[123,240,76,-1.434489157050848],[123,240,77,-1.4305406510829926],[123,240,78,-1.4259115941822529],[123,240,79,-1.4209424331784248],[123,241,64,-1.4370305947959423],[123,241,65,-1.4372872784733772],[123,241,66,-1.4359348490834236],[123,241,67,-1.4341800026595592],[123,241,68,-1.4334638863801956],[123,241,69,-1.4345733299851418],[123,241,70,-1.436936341226101],[123,241,71,-1.4396455250680447],[123,241,72,-1.4426334835588932],[123,241,73,-1.444659847766161],[123,241,74,-1.4454000182449818],[123,241,75,-1.444738369435072],[123,241,76,-1.442301657050848],[123,241,77,-1.4383531510829926],[123,241,78,-1.4337240941822529],[123,241,79,-1.4287549331784248],[123,242,64,-1.4448430947959423],[123,242,65,-1.4450997784733772],[123,242,66,-1.4437473490834236],[123,242,67,-1.4419925026595592],[123,242,68,-1.4412763863801956],[123,242,69,-1.4423858299851418],[123,242,70,-1.444748841226101],[123,242,71,-1.4474580250680447],[123,242,72,-1.4504459835588932],[123,242,73,-1.452472347766161],[123,242,74,-1.4532125182449818],[123,242,75,-1.452550869435072],[123,242,76,-1.450114157050848],[123,242,77,-1.4461656510829926],[123,242,78,-1.4415365941822529],[123,242,79,-1.4365674331784248],[123,243,64,-1.4526555947959423],[123,243,65,-1.4529122784733772],[123,243,66,-1.4515598490834236],[123,243,67,-1.4498050026595592],[123,243,68,-1.4490888863801956],[123,243,69,-1.4501983299851418],[123,243,70,-1.452561341226101],[123,243,71,-1.4552705250680447],[123,243,72,-1.4582584835588932],[123,243,73,-1.460284847766161],[123,243,74,-1.4610250182449818],[123,243,75,-1.460363369435072],[123,243,76,-1.457926657050848],[123,243,77,-1.4539781510829926],[123,243,78,-1.4493490941822529],[123,243,79,-1.4443799331784248],[123,244,64,-1.4604680947959423],[123,244,65,-1.4607247784733772],[123,244,66,-1.4593723490834236],[123,244,67,-1.4576175026595592],[123,244,68,-1.4569013863801956],[123,244,69,-1.4580108299851418],[123,244,70,-1.460373841226101],[123,244,71,-1.4630830250680447],[123,244,72,-1.4660709835588932],[123,244,73,-1.468097347766161],[123,244,74,-1.4688375182449818],[123,244,75,-1.468175869435072],[123,244,76,-1.465739157050848],[123,244,77,-1.4617906510829926],[123,244,78,-1.4571615941822529],[123,244,79,-1.4521924331784248],[123,245,64,-1.4682805947959423],[123,245,65,-1.4685372784733772],[123,245,66,-1.4671848490834236],[123,245,67,-1.4654300026595592],[123,245,68,-1.4647138863801956],[123,245,69,-1.4658233299851418],[123,245,70,-1.468186341226101],[123,245,71,-1.4708955250680447],[123,245,72,-1.4738834835588932],[123,245,73,-1.475909847766161],[123,245,74,-1.4766500182449818],[123,245,75,-1.475988369435072],[123,245,76,-1.473551657050848],[123,245,77,-1.4696031510829926],[123,245,78,-1.4649740941822529],[123,245,79,-1.4600049331784248],[123,246,64,-1.4760930947959423],[123,246,65,-1.4763497784733772],[123,246,66,-1.4749973490834236],[123,246,67,-1.4732425026595592],[123,246,68,-1.4725263863801956],[123,246,69,-1.4736358299851418],[123,246,70,-1.475998841226101],[123,246,71,-1.4787080250680447],[123,246,72,-1.4816959835588932],[123,246,73,-1.483722347766161],[123,246,74,-1.4844625182449818],[123,246,75,-1.483800869435072],[123,246,76,-1.481364157050848],[123,246,77,-1.4774156510829926],[123,246,78,-1.4727865941822529],[123,246,79,-1.4678174331784248],[123,247,64,-1.4839055947959423],[123,247,65,-1.4841622784733772],[123,247,66,-1.4828098490834236],[123,247,67,-1.4810550026595592],[123,247,68,-1.4803388863801956],[123,247,69,-1.4814483299851418],[123,247,70,-1.483811341226101],[123,247,71,-1.4865205250680447],[123,247,72,-1.4895084835588932],[123,247,73,-1.491534847766161],[123,247,74,-1.4922750182449818],[123,247,75,-1.491613369435072],[123,247,76,-1.489176657050848],[123,247,77,-1.4852281510829926],[123,247,78,-1.4805990941822529],[123,247,79,-1.4756299331784248],[123,248,64,-1.4917180947959423],[123,248,65,-1.4919747784733772],[123,248,66,-1.4906223490834236],[123,248,67,-1.4888675026595592],[123,248,68,-1.4881513863801956],[123,248,69,-1.4892608299851418],[123,248,70,-1.491623841226101],[123,248,71,-1.4943330250680447],[123,248,72,-1.4973209835588932],[123,248,73,-1.499347347766161],[123,248,74,-1.5000875182449818],[123,248,75,-1.499425869435072],[123,248,76,-1.496989157050848],[123,248,77,-1.4930406510829926],[123,248,78,-1.4884115941822529],[123,248,79,-1.4834424331784248],[123,249,64,-1.4995305947959423],[123,249,65,-1.4997872784733772],[123,249,66,-1.4984348490834236],[123,249,67,-1.4966800026595592],[123,249,68,-1.4959638863801956],[123,249,69,-1.4970733299851418],[123,249,70,-1.499436341226101],[123,249,71,-1.5021455250680447],[123,249,72,-1.5051334835588932],[123,249,73,-1.507159847766161],[123,249,74,-1.5079000182449818],[123,249,75,-1.507238369435072],[123,249,76,-1.504801657050848],[123,249,77,-1.5008531510829926],[123,249,78,-1.4962240941822529],[123,249,79,-1.4912549331784248],[123,250,64,-1.5073430947959423],[123,250,65,-1.5075997784733772],[123,250,66,-1.5062473490834236],[123,250,67,-1.5044925026595592],[123,250,68,-1.5037763863801956],[123,250,69,-1.5048858299851418],[123,250,70,-1.507248841226101],[123,250,71,-1.5099580250680447],[123,250,72,-1.5129459835588932],[123,250,73,-1.514972347766161],[123,250,74,-1.5157125182449818],[123,250,75,-1.515050869435072],[123,250,76,-1.512614157050848],[123,250,77,-1.5086656510829926],[123,250,78,-1.5040365941822529],[123,250,79,-1.4990674331784248],[123,251,64,-1.5151555947959423],[123,251,65,-1.5154122784733772],[123,251,66,-1.5140598490834236],[123,251,67,-1.5123050026595592],[123,251,68,-1.5115888863801956],[123,251,69,-1.5126983299851418],[123,251,70,-1.515061341226101],[123,251,71,-1.5177705250680447],[123,251,72,-1.5207584835588932],[123,251,73,-1.522784847766161],[123,251,74,-1.5235250182449818],[123,251,75,-1.522863369435072],[123,251,76,-1.520426657050848],[123,251,77,-1.5164781510829926],[123,251,78,-1.5118490941822529],[123,251,79,-1.5068799331784248],[123,252,64,-1.5229680947959423],[123,252,65,-1.5232247784733772],[123,252,66,-1.5218723490834236],[123,252,67,-1.5201175026595592],[123,252,68,-1.5194013863801956],[123,252,69,-1.5205108299851418],[123,252,70,-1.522873841226101],[123,252,71,-1.5255830250680447],[123,252,72,-1.5285709835588932],[123,252,73,-1.530597347766161],[123,252,74,-1.5313375182449818],[123,252,75,-1.530675869435072],[123,252,76,-1.528239157050848],[123,252,77,-1.5242906510829926],[123,252,78,-1.5196615941822529],[123,252,79,-1.5146924331784248],[123,253,64,-1.5307805947959423],[123,253,65,-1.5310372784733772],[123,253,66,-1.5296848490834236],[123,253,67,-1.5279300026595592],[123,253,68,-1.5272138863801956],[123,253,69,-1.5283233299851418],[123,253,70,-1.530686341226101],[123,253,71,-1.5333955250680447],[123,253,72,-1.5363834835588932],[123,253,73,-1.538409847766161],[123,253,74,-1.5391500182449818],[123,253,75,-1.538488369435072],[123,253,76,-1.536051657050848],[123,253,77,-1.5321031510829926],[123,253,78,-1.5274740941822529],[123,253,79,-1.5225049331784248],[123,254,64,-1.5385930947959423],[123,254,65,-1.5388497784733772],[123,254,66,-1.5374973490834236],[123,254,67,-1.5357425026595592],[123,254,68,-1.5350263863801956],[123,254,69,-1.5361358299851418],[123,254,70,-1.538498841226101],[123,254,71,-1.5412080250680447],[123,254,72,-1.5441959835588932],[123,254,73,-1.546222347766161],[123,254,74,-1.5469625182449818],[123,254,75,-1.546300869435072],[123,254,76,-1.543864157050848],[123,254,77,-1.5399156510829926],[123,254,78,-1.5352865941822529],[123,254,79,-1.5303174331784248],[123,255,64,-1.5464055947959423],[123,255,65,-1.5466622784733772],[123,255,66,-1.5453098490834236],[123,255,67,-1.5435550026595592],[123,255,68,-1.5428388863801956],[123,255,69,-1.5439483299851418],[123,255,70,-1.546311341226101],[123,255,71,-1.5490205250680447],[123,255,72,-1.5520084835588932],[123,255,73,-1.554034847766161],[123,255,74,-1.5547750182449818],[123,255,75,-1.554113369435072],[123,255,76,-1.551676657050848],[123,255,77,-1.5477281510829926],[123,255,78,-1.5430990941822529],[123,255,79,-1.5381299331784248],[123,256,64,-1.5542180947959423],[123,256,65,-1.5544747784733772],[123,256,66,-1.5531223490834236],[123,256,67,-1.5513675026595592],[123,256,68,-1.5506513863801956],[123,256,69,-1.5517608299851418],[123,256,70,-1.554123841226101],[123,256,71,-1.5568330250680447],[123,256,72,-1.5598209835588932],[123,256,73,-1.561847347766161],[123,256,74,-1.5625875182449818],[123,256,75,-1.561925869435072],[123,256,76,-1.559489157050848],[123,256,77,-1.5555406510829926],[123,256,78,-1.5509115941822529],[123,256,79,-1.5459424331784248],[123,257,64,-1.5620305947959423],[123,257,65,-1.5622872784733772],[123,257,66,-1.5609348490834236],[123,257,67,-1.5591800026595592],[123,257,68,-1.5584638863801956],[123,257,69,-1.5595733299851418],[123,257,70,-1.561936341226101],[123,257,71,-1.5646455250680447],[123,257,72,-1.5676334835588932],[123,257,73,-1.569659847766161],[123,257,74,-1.5704000182449818],[123,257,75,-1.569738369435072],[123,257,76,-1.567301657050848],[123,257,77,-1.5633531510829926],[123,257,78,-1.5587240941822529],[123,257,79,-1.5537549331784248],[123,258,64,-1.5698430947959423],[123,258,65,-1.5700997784733772],[123,258,66,-1.5687473490834236],[123,258,67,-1.5669925026595592],[123,258,68,-1.5662763863801956],[123,258,69,-1.5673858299851418],[123,258,70,-1.569748841226101],[123,258,71,-1.5724580250680447],[123,258,72,-1.5754459835588932],[123,258,73,-1.577472347766161],[123,258,74,-1.5782125182449818],[123,258,75,-1.577550869435072],[123,258,76,-1.575114157050848],[123,258,77,-1.5711656510829926],[123,258,78,-1.5665365941822529],[123,258,79,-1.5615674331784248],[123,259,64,-1.5776555947959423],[123,259,65,-1.5779122784733772],[123,259,66,-1.5765598490834236],[123,259,67,-1.5748050026595592],[123,259,68,-1.5740888863801956],[123,259,69,-1.5751983299851418],[123,259,70,-1.577561341226101],[123,259,71,-1.5802705250680447],[123,259,72,-1.5832584835588932],[123,259,73,-1.585284847766161],[123,259,74,-1.5860250182449818],[123,259,75,-1.585363369435072],[123,259,76,-1.582926657050848],[123,259,77,-1.5789781510829926],[123,259,78,-1.5743490941822529],[123,259,79,-1.5693799331784248],[123,260,64,-1.5854680947959423],[123,260,65,-1.5857247784733772],[123,260,66,-1.5843723490834236],[123,260,67,-1.5826175026595592],[123,260,68,-1.5819013863801956],[123,260,69,-1.5830108299851418],[123,260,70,-1.585373841226101],[123,260,71,-1.5880830250680447],[123,260,72,-1.5910709835588932],[123,260,73,-1.593097347766161],[123,260,74,-1.5938375182449818],[123,260,75,-1.593175869435072],[123,260,76,-1.590739157050848],[123,260,77,-1.5867906510829926],[123,260,78,-1.5821615941822529],[123,260,79,-1.5771924331784248],[123,261,64,-1.5932805947959423],[123,261,65,-1.5935372784733772],[123,261,66,-1.5921848490834236],[123,261,67,-1.5904300026595592],[123,261,68,-1.5897138863801956],[123,261,69,-1.5908233299851418],[123,261,70,-1.593186341226101],[123,261,71,-1.5958955250680447],[123,261,72,-1.5988834835588932],[123,261,73,-1.600909847766161],[123,261,74,-1.6016500182449818],[123,261,75,-1.600988369435072],[123,261,76,-1.598551657050848],[123,261,77,-1.5946031510829926],[123,261,78,-1.5899740941822529],[123,261,79,-1.5850049331784248],[123,262,64,-1.6010930947959423],[123,262,65,-1.6013497784733772],[123,262,66,-1.5999973490834236],[123,262,67,-1.5982425026595592],[123,262,68,-1.5975263863801956],[123,262,69,-1.5986358299851418],[123,262,70,-1.600998841226101],[123,262,71,-1.6037080250680447],[123,262,72,-1.6066959835588932],[123,262,73,-1.608722347766161],[123,262,74,-1.6094625182449818],[123,262,75,-1.608800869435072],[123,262,76,-1.606364157050848],[123,262,77,-1.6024156510829926],[123,262,78,-1.5977865941822529],[123,262,79,-1.5928174331784248],[123,263,64,-1.6089055947959423],[123,263,65,-1.6091622784733772],[123,263,66,-1.6078098490834236],[123,263,67,-1.6060550026595592],[123,263,68,-1.6053388863801956],[123,263,69,-1.6064483299851418],[123,263,70,-1.608811341226101],[123,263,71,-1.6115205250680447],[123,263,72,-1.6145084835588932],[123,263,73,-1.616534847766161],[123,263,74,-1.6172750182449818],[123,263,75,-1.616613369435072],[123,263,76,-1.614176657050848],[123,263,77,-1.6102281510829926],[123,263,78,-1.6055990941822529],[123,263,79,-1.6006299331784248],[123,264,64,-1.6167180947959423],[123,264,65,-1.6169747784733772],[123,264,66,-1.6156223490834236],[123,264,67,-1.6138675026595592],[123,264,68,-1.6131513863801956],[123,264,69,-1.6142608299851418],[123,264,70,-1.616623841226101],[123,264,71,-1.6193330250680447],[123,264,72,-1.6223209835588932],[123,264,73,-1.624347347766161],[123,264,74,-1.6250875182449818],[123,264,75,-1.624425869435072],[123,264,76,-1.621989157050848],[123,264,77,-1.6180406510829926],[123,264,78,-1.6134115941822529],[123,264,79,-1.6084424331784248],[123,265,64,-1.6245305947959423],[123,265,65,-1.6247872784733772],[123,265,66,-1.6234348490834236],[123,265,67,-1.6216800026595592],[123,265,68,-1.6209638863801956],[123,265,69,-1.6220733299851418],[123,265,70,-1.624436341226101],[123,265,71,-1.6271455250680447],[123,265,72,-1.6301334835588932],[123,265,73,-1.632159847766161],[123,265,74,-1.6329000182449818],[123,265,75,-1.632238369435072],[123,265,76,-1.629801657050848],[123,265,77,-1.6258531510829926],[123,265,78,-1.6212240941822529],[123,265,79,-1.6162549331784248],[123,266,64,-1.6323430947959423],[123,266,65,-1.6325997784733772],[123,266,66,-1.6312473490834236],[123,266,67,-1.6294925026595592],[123,266,68,-1.6287763863801956],[123,266,69,-1.6298858299851418],[123,266,70,-1.632248841226101],[123,266,71,-1.6349580250680447],[123,266,72,-1.6379459835588932],[123,266,73,-1.639972347766161],[123,266,74,-1.6407125182449818],[123,266,75,-1.640050869435072],[123,266,76,-1.637614157050848],[123,266,77,-1.6336656510829926],[123,266,78,-1.6290365941822529],[123,266,79,-1.6240674331784248],[123,267,64,-1.6401555947959423],[123,267,65,-1.6404122784733772],[123,267,66,-1.6390598490834236],[123,267,67,-1.6373050026595592],[123,267,68,-1.6365888863801956],[123,267,69,-1.6376983299851418],[123,267,70,-1.640061341226101],[123,267,71,-1.6427705250680447],[123,267,72,-1.6457584835588932],[123,267,73,-1.647784847766161],[123,267,74,-1.6485250182449818],[123,267,75,-1.647863369435072],[123,267,76,-1.645426657050848],[123,267,77,-1.6414781510829926],[123,267,78,-1.6368490941822529],[123,267,79,-1.6318799331784248],[123,268,64,-1.6479680947959423],[123,268,65,-1.6482247784733772],[123,268,66,-1.6468723490834236],[123,268,67,-1.6451175026595592],[123,268,68,-1.6444013863801956],[123,268,69,-1.6455108299851418],[123,268,70,-1.647873841226101],[123,268,71,-1.6505830250680447],[123,268,72,-1.6535709835588932],[123,268,73,-1.655597347766161],[123,268,74,-1.6563375182449818],[123,268,75,-1.655675869435072],[123,268,76,-1.653239157050848],[123,268,77,-1.6492906510829926],[123,268,78,-1.6446615941822529],[123,268,79,-1.6396924331784248],[123,269,64,-1.6557805947959423],[123,269,65,-1.6560372784733772],[123,269,66,-1.6546848490834236],[123,269,67,-1.6529300026595592],[123,269,68,-1.6522138863801956],[123,269,69,-1.6533233299851418],[123,269,70,-1.655686341226101],[123,269,71,-1.6583955250680447],[123,269,72,-1.6613834835588932],[123,269,73,-1.663409847766161],[123,269,74,-1.6641500182449818],[123,269,75,-1.663488369435072],[123,269,76,-1.661051657050848],[123,269,77,-1.6571031510829926],[123,269,78,-1.6524740941822529],[123,269,79,-1.6475049331784248],[123,270,64,-1.6635930947959423],[123,270,65,-1.6638497784733772],[123,270,66,-1.6624973490834236],[123,270,67,-1.6607425026595592],[123,270,68,-1.6600263863801956],[123,270,69,-1.6611358299851418],[123,270,70,-1.663498841226101],[123,270,71,-1.6662080250680447],[123,270,72,-1.6691959835588932],[123,270,73,-1.671222347766161],[123,270,74,-1.6719625182449818],[123,270,75,-1.671300869435072],[123,270,76,-1.668864157050848],[123,270,77,-1.6649156510829926],[123,270,78,-1.6602865941822529],[123,270,79,-1.6553174331784248],[123,271,64,-1.6714055947959423],[123,271,65,-1.6716622784733772],[123,271,66,-1.6703098490834236],[123,271,67,-1.6685550026595592],[123,271,68,-1.6678388863801956],[123,271,69,-1.6689483299851418],[123,271,70,-1.671311341226101],[123,271,71,-1.6740205250680447],[123,271,72,-1.6770084835588932],[123,271,73,-1.679034847766161],[123,271,74,-1.6797750182449818],[123,271,75,-1.679113369435072],[123,271,76,-1.676676657050848],[123,271,77,-1.6727281510829926],[123,271,78,-1.6680990941822529],[123,271,79,-1.6631299331784248],[123,272,64,-1.6792180947959423],[123,272,65,-1.6794747784733772],[123,272,66,-1.6781223490834236],[123,272,67,-1.6763675026595592],[123,272,68,-1.6756513863801956],[123,272,69,-1.6767608299851418],[123,272,70,-1.679123841226101],[123,272,71,-1.6818330250680447],[123,272,72,-1.6848209835588932],[123,272,73,-1.686847347766161],[123,272,74,-1.6875875182449818],[123,272,75,-1.686925869435072],[123,272,76,-1.684489157050848],[123,272,77,-1.6805406510829926],[123,272,78,-1.6759115941822529],[123,272,79,-1.6709424331784248],[123,273,64,-1.6870305947959423],[123,273,65,-1.6872872784733772],[123,273,66,-1.6859348490834236],[123,273,67,-1.6841800026595592],[123,273,68,-1.6834638863801956],[123,273,69,-1.6845733299851418],[123,273,70,-1.686936341226101],[123,273,71,-1.6896455250680447],[123,273,72,-1.6926334835588932],[123,273,73,-1.694659847766161],[123,273,74,-1.6954000182449818],[123,273,75,-1.694738369435072],[123,273,76,-1.692301657050848],[123,273,77,-1.6883531510829926],[123,273,78,-1.6837240941822529],[123,273,79,-1.6787549331784248],[123,274,64,-1.6948430947959423],[123,274,65,-1.6950997784733772],[123,274,66,-1.6937473490834236],[123,274,67,-1.6919925026595592],[123,274,68,-1.6912763863801956],[123,274,69,-1.6923858299851418],[123,274,70,-1.694748841226101],[123,274,71,-1.6974580250680447],[123,274,72,-1.7004459835588932],[123,274,73,-1.702472347766161],[123,274,74,-1.7032125182449818],[123,274,75,-1.702550869435072],[123,274,76,-1.700114157050848],[123,274,77,-1.6961656510829926],[123,274,78,-1.6915365941822529],[123,274,79,-1.6865674331784248],[123,275,64,-1.7026555947959423],[123,275,65,-1.7029122784733772],[123,275,66,-1.7015598490834236],[123,275,67,-1.6998050026595592],[123,275,68,-1.6990888863801956],[123,275,69,-1.7001983299851418],[123,275,70,-1.702561341226101],[123,275,71,-1.7052705250680447],[123,275,72,-1.7082584835588932],[123,275,73,-1.710284847766161],[123,275,74,-1.7110250182449818],[123,275,75,-1.710363369435072],[123,275,76,-1.707926657050848],[123,275,77,-1.7039781510829926],[123,275,78,-1.6993490941822529],[123,275,79,-1.6943799331784248],[123,276,64,-1.7104680947959423],[123,276,65,-1.7107247784733772],[123,276,66,-1.7093723490834236],[123,276,67,-1.7076175026595592],[123,276,68,-1.7069013863801956],[123,276,69,-1.7080108299851418],[123,276,70,-1.710373841226101],[123,276,71,-1.7130830250680447],[123,276,72,-1.7160709835588932],[123,276,73,-1.718097347766161],[123,276,74,-1.7188375182449818],[123,276,75,-1.718175869435072],[123,276,76,-1.715739157050848],[123,276,77,-1.7117906510829926],[123,276,78,-1.7071615941822529],[123,276,79,-1.7021924331784248],[123,277,64,-1.7182805947959423],[123,277,65,-1.7185372784733772],[123,277,66,-1.7171848490834236],[123,277,67,-1.7154300026595592],[123,277,68,-1.7147138863801956],[123,277,69,-1.7158233299851418],[123,277,70,-1.718186341226101],[123,277,71,-1.7208955250680447],[123,277,72,-1.7238834835588932],[123,277,73,-1.725909847766161],[123,277,74,-1.7266500182449818],[123,277,75,-1.725988369435072],[123,277,76,-1.723551657050848],[123,277,77,-1.7196031510829926],[123,277,78,-1.7149740941822529],[123,277,79,-1.7100049331784248],[123,278,64,-1.7260930947959423],[123,278,65,-1.7263497784733772],[123,278,66,-1.7249973490834236],[123,278,67,-1.7232425026595592],[123,278,68,-1.7225263863801956],[123,278,69,-1.7236358299851418],[123,278,70,-1.725998841226101],[123,278,71,-1.7287080250680447],[123,278,72,-1.7316959835588932],[123,278,73,-1.733722347766161],[123,278,74,-1.7344625182449818],[123,278,75,-1.733800869435072],[123,278,76,-1.731364157050848],[123,278,77,-1.7274156510829926],[123,278,78,-1.7227865941822529],[123,278,79,-1.7178174331784248],[123,279,64,-1.7339055947959423],[123,279,65,-1.7341622784733772],[123,279,66,-1.7328098490834236],[123,279,67,-1.7310550026595592],[123,279,68,-1.7303388863801956],[123,279,69,-1.7314483299851418],[123,279,70,-1.733811341226101],[123,279,71,-1.7365205250680447],[123,279,72,-1.7395084835588932],[123,279,73,-1.741534847766161],[123,279,74,-1.7422750182449818],[123,279,75,-1.741613369435072],[123,279,76,-1.739176657050848],[123,279,77,-1.7352281510829926],[123,279,78,-1.7305990941822529],[123,279,79,-1.7256299331784248],[123,280,64,-1.7417180947959423],[123,280,65,-1.7419747784733772],[123,280,66,-1.7406223490834236],[123,280,67,-1.7388675026595592],[123,280,68,-1.7381513863801956],[123,280,69,-1.7392608299851418],[123,280,70,-1.741623841226101],[123,280,71,-1.7443330250680447],[123,280,72,-1.7473209835588932],[123,280,73,-1.749347347766161],[123,280,74,-1.7500875182449818],[123,280,75,-1.749425869435072],[123,280,76,-1.746989157050848],[123,280,77,-1.7430406510829926],[123,280,78,-1.7384115941822529],[123,280,79,-1.7334424331784248],[123,281,64,-1.7495305947959423],[123,281,65,-1.7497872784733772],[123,281,66,-1.7484348490834236],[123,281,67,-1.7466800026595592],[123,281,68,-1.7459638863801956],[123,281,69,-1.7470733299851418],[123,281,70,-1.749436341226101],[123,281,71,-1.7521455250680447],[123,281,72,-1.7551334835588932],[123,281,73,-1.757159847766161],[123,281,74,-1.7579000182449818],[123,281,75,-1.757238369435072],[123,281,76,-1.754801657050848],[123,281,77,-1.7508531510829926],[123,281,78,-1.7462240941822529],[123,281,79,-1.7412549331784248],[123,282,64,-1.7573430947959423],[123,282,65,-1.7575997784733772],[123,282,66,-1.7562473490834236],[123,282,67,-1.7544925026595592],[123,282,68,-1.7537763863801956],[123,282,69,-1.7548858299851418],[123,282,70,-1.757248841226101],[123,282,71,-1.7599580250680447],[123,282,72,-1.7629459835588932],[123,282,73,-1.764972347766161],[123,282,74,-1.7657125182449818],[123,282,75,-1.765050869435072],[123,282,76,-1.762614157050848],[123,282,77,-1.7586656510829926],[123,282,78,-1.7540365941822529],[123,282,79,-1.7490674331784248],[123,283,64,-1.7651555947959423],[123,283,65,-1.7654122784733772],[123,283,66,-1.7640598490834236],[123,283,67,-1.7623050026595592],[123,283,68,-1.7615888863801956],[123,283,69,-1.7626983299851418],[123,283,70,-1.765061341226101],[123,283,71,-1.7677705250680447],[123,283,72,-1.7707584835588932],[123,283,73,-1.772784847766161],[123,283,74,-1.7735250182449818],[123,283,75,-1.772863369435072],[123,283,76,-1.770426657050848],[123,283,77,-1.7664781510829926],[123,283,78,-1.7618490941822529],[123,283,79,-1.7568799331784248],[123,284,64,-1.7729680947959423],[123,284,65,-1.7732247784733772],[123,284,66,-1.7718723490834236],[123,284,67,-1.7701175026595592],[123,284,68,-1.7694013863801956],[123,284,69,-1.7705108299851418],[123,284,70,-1.772873841226101],[123,284,71,-1.7755830250680447],[123,284,72,-1.7785709835588932],[123,284,73,-1.780597347766161],[123,284,74,-1.7813375182449818],[123,284,75,-1.780675869435072],[123,284,76,-1.778239157050848],[123,284,77,-1.7742906510829926],[123,284,78,-1.7696615941822529],[123,284,79,-1.7646924331784248],[123,285,64,-1.7807805947959423],[123,285,65,-1.7810372784733772],[123,285,66,-1.7796848490834236],[123,285,67,-1.7779300026595592],[123,285,68,-1.7772138863801956],[123,285,69,-1.7783233299851418],[123,285,70,-1.780686341226101],[123,285,71,-1.7833955250680447],[123,285,72,-1.7863834835588932],[123,285,73,-1.788409847766161],[123,285,74,-1.7891500182449818],[123,285,75,-1.788488369435072],[123,285,76,-1.786051657050848],[123,285,77,-1.7821031510829926],[123,285,78,-1.7774740941822529],[123,285,79,-1.7725049331784248],[123,286,64,-1.7885930947959423],[123,286,65,-1.7888497784733772],[123,286,66,-1.7874973490834236],[123,286,67,-1.7857425026595592],[123,286,68,-1.7850263863801956],[123,286,69,-1.7861358299851418],[123,286,70,-1.788498841226101],[123,286,71,-1.7912080250680447],[123,286,72,-1.7941959835588932],[123,286,73,-1.796222347766161],[123,286,74,-1.7969625182449818],[123,286,75,-1.796300869435072],[123,286,76,-1.793864157050848],[123,286,77,-1.7899156510829926],[123,286,78,-1.7852865941822529],[123,286,79,-1.7803174331784248],[123,287,64,-1.7964055947959423],[123,287,65,-1.7966622784733772],[123,287,66,-1.7953098490834236],[123,287,67,-1.7935550026595592],[123,287,68,-1.7928388863801956],[123,287,69,-1.7939483299851418],[123,287,70,-1.796311341226101],[123,287,71,-1.7990205250680447],[123,287,72,-1.8020084835588932],[123,287,73,-1.804034847766161],[123,287,74,-1.8047750182449818],[123,287,75,-1.804113369435072],[123,287,76,-1.801676657050848],[123,287,77,-1.7977281510829926],[123,287,78,-1.7930990941822529],[123,287,79,-1.7881299331784248],[123,288,64,-1.8042180947959423],[123,288,65,-1.8044747784733772],[123,288,66,-1.8031223490834236],[123,288,67,-1.8013675026595592],[123,288,68,-1.8006513863801956],[123,288,69,-1.8017608299851418],[123,288,70,-1.804123841226101],[123,288,71,-1.8068330250680447],[123,288,72,-1.8098209835588932],[123,288,73,-1.811847347766161],[123,288,74,-1.8125875182449818],[123,288,75,-1.811925869435072],[123,288,76,-1.809489157050848],[123,288,77,-1.8055406510829926],[123,288,78,-1.8009115941822529],[123,288,79,-1.7959424331784248],[123,289,64,-1.8120305947959423],[123,289,65,-1.8122872784733772],[123,289,66,-1.8109348490834236],[123,289,67,-1.8091800026595592],[123,289,68,-1.8084638863801956],[123,289,69,-1.8095733299851418],[123,289,70,-1.811936341226101],[123,289,71,-1.8146455250680447],[123,289,72,-1.8176334835588932],[123,289,73,-1.819659847766161],[123,289,74,-1.8204000182449818],[123,289,75,-1.819738369435072],[123,289,76,-1.817301657050848],[123,289,77,-1.8133531510829926],[123,289,78,-1.8087240941822529],[123,289,79,-1.8037549331784248],[123,290,64,-1.8198430947959423],[123,290,65,-1.8200997784733772],[123,290,66,-1.8187473490834236],[123,290,67,-1.8169925026595592],[123,290,68,-1.8162763863801956],[123,290,69,-1.8173858299851418],[123,290,70,-1.819748841226101],[123,290,71,-1.8224580250680447],[123,290,72,-1.8254459835588932],[123,290,73,-1.827472347766161],[123,290,74,-1.8282125182449818],[123,290,75,-1.827550869435072],[123,290,76,-1.825114157050848],[123,290,77,-1.8211656510829926],[123,290,78,-1.8165365941822529],[123,290,79,-1.8115674331784248],[123,291,64,-1.8276555947959423],[123,291,65,-1.8279122784733772],[123,291,66,-1.8265598490834236],[123,291,67,-1.8248050026595592],[123,291,68,-1.8240888863801956],[123,291,69,-1.8251983299851418],[123,291,70,-1.827561341226101],[123,291,71,-1.8302705250680447],[123,291,72,-1.8332584835588932],[123,291,73,-1.835284847766161],[123,291,74,-1.8360250182449818],[123,291,75,-1.835363369435072],[123,291,76,-1.832926657050848],[123,291,77,-1.8289781510829926],[123,291,78,-1.8243490941822529],[123,291,79,-1.8193799331784248],[123,292,64,-1.8354680947959423],[123,292,65,-1.8357247784733772],[123,292,66,-1.8343723490834236],[123,292,67,-1.8326175026595592],[123,292,68,-1.8319013863801956],[123,292,69,-1.8330108299851418],[123,292,70,-1.835373841226101],[123,292,71,-1.8380830250680447],[123,292,72,-1.8410709835588932],[123,292,73,-1.843097347766161],[123,292,74,-1.8438375182449818],[123,292,75,-1.843175869435072],[123,292,76,-1.840739157050848],[123,292,77,-1.8367906510829926],[123,292,78,-1.8321615941822529],[123,292,79,-1.8271924331784248],[123,293,64,-1.8432805947959423],[123,293,65,-1.8435372784733772],[123,293,66,-1.8421848490834236],[123,293,67,-1.8404300026595592],[123,293,68,-1.8397138863801956],[123,293,69,-1.8408233299851418],[123,293,70,-1.843186341226101],[123,293,71,-1.8458955250680447],[123,293,72,-1.8488834835588932],[123,293,73,-1.850909847766161],[123,293,74,-1.8516500182449818],[123,293,75,-1.850988369435072],[123,293,76,-1.848551657050848],[123,293,77,-1.8446031510829926],[123,293,78,-1.8399740941822529],[123,293,79,-1.8350049331784248],[123,294,64,-1.8510930947959423],[123,294,65,-1.8513497784733772],[123,294,66,-1.8499973490834236],[123,294,67,-1.8482425026595592],[123,294,68,-1.8475263863801956],[123,294,69,-1.8486358299851418],[123,294,70,-1.850998841226101],[123,294,71,-1.8537080250680447],[123,294,72,-1.8566959835588932],[123,294,73,-1.858722347766161],[123,294,74,-1.8594625182449818],[123,294,75,-1.858800869435072],[123,294,76,-1.856364157050848],[123,294,77,-1.8524156510829926],[123,294,78,-1.8477865941822529],[123,294,79,-1.8428174331784248],[123,295,64,-1.8589055947959423],[123,295,65,-1.8591622784733772],[123,295,66,-1.8578098490834236],[123,295,67,-1.8560550026595592],[123,295,68,-1.8553388863801956],[123,295,69,-1.8564483299851418],[123,295,70,-1.858811341226101],[123,295,71,-1.8615205250680447],[123,295,72,-1.8645084835588932],[123,295,73,-1.866534847766161],[123,295,74,-1.8672750182449818],[123,295,75,-1.866613369435072],[123,295,76,-1.864176657050848],[123,295,77,-1.8602281510829926],[123,295,78,-1.8555990941822529],[123,295,79,-1.8506299331784248],[123,296,64,-1.8667180947959423],[123,296,65,-1.8669747784733772],[123,296,66,-1.8656223490834236],[123,296,67,-1.8638675026595592],[123,296,68,-1.8631513863801956],[123,296,69,-1.8642608299851418],[123,296,70,-1.866623841226101],[123,296,71,-1.8693330250680447],[123,296,72,-1.8723209835588932],[123,296,73,-1.874347347766161],[123,296,74,-1.8750875182449818],[123,296,75,-1.874425869435072],[123,296,76,-1.871989157050848],[123,296,77,-1.8680406510829926],[123,296,78,-1.8634115941822529],[123,296,79,-1.8584424331784248],[123,297,64,-1.8745305947959423],[123,297,65,-1.8747872784733772],[123,297,66,-1.8734348490834236],[123,297,67,-1.8716800026595592],[123,297,68,-1.8709638863801956],[123,297,69,-1.8720733299851418],[123,297,70,-1.874436341226101],[123,297,71,-1.8771455250680447],[123,297,72,-1.8801334835588932],[123,297,73,-1.882159847766161],[123,297,74,-1.8829000182449818],[123,297,75,-1.882238369435072],[123,297,76,-1.879801657050848],[123,297,77,-1.8758531510829926],[123,297,78,-1.8712240941822529],[123,297,79,-1.8662549331784248],[123,298,64,-1.8823430947959423],[123,298,65,-1.8825997784733772],[123,298,66,-1.8812473490834236],[123,298,67,-1.8794925026595592],[123,298,68,-1.8787763863801956],[123,298,69,-1.8798858299851418],[123,298,70,-1.882248841226101],[123,298,71,-1.8849580250680447],[123,298,72,-1.8879459835588932],[123,298,73,-1.889972347766161],[123,298,74,-1.8907125182449818],[123,298,75,-1.890050869435072],[123,298,76,-1.887614157050848],[123,298,77,-1.8836656510829926],[123,298,78,-1.8790365941822529],[123,298,79,-1.8740674331784248],[123,299,64,-1.8901555947959423],[123,299,65,-1.8904122784733772],[123,299,66,-1.8890598490834236],[123,299,67,-1.8873050026595592],[123,299,68,-1.8865888863801956],[123,299,69,-1.8876983299851418],[123,299,70,-1.890061341226101],[123,299,71,-1.8927705250680447],[123,299,72,-1.8957584835588932],[123,299,73,-1.897784847766161],[123,299,74,-1.8985250182449818],[123,299,75,-1.897863369435072],[123,299,76,-1.895426657050848],[123,299,77,-1.8914781510829926],[123,299,78,-1.8868490941822529],[123,299,79,-1.8818799331784248],[123,300,64,-1.8979680947959423],[123,300,65,-1.8982247784733772],[123,300,66,-1.8968723490834236],[123,300,67,-1.8951175026595592],[123,300,68,-1.8944013863801956],[123,300,69,-1.8955108299851418],[123,300,70,-1.897873841226101],[123,300,71,-1.9005830250680447],[123,300,72,-1.9035709835588932],[123,300,73,-1.905597347766161],[123,300,74,-1.9063375182449818],[123,300,75,-1.905675869435072],[123,300,76,-1.903239157050848],[123,300,77,-1.8992906510829926],[123,300,78,-1.8946615941822529],[123,300,79,-1.8896924331784248],[123,301,64,-1.9057805947959423],[123,301,65,-1.9060372784733772],[123,301,66,-1.9046848490834236],[123,301,67,-1.9029300026595592],[123,301,68,-1.9022138863801956],[123,301,69,-1.9033233299851418],[123,301,70,-1.905686341226101],[123,301,71,-1.9083955250680447],[123,301,72,-1.9113834835588932],[123,301,73,-1.913409847766161],[123,301,74,-1.9141500182449818],[123,301,75,-1.913488369435072],[123,301,76,-1.911051657050848],[123,301,77,-1.9071031510829926],[123,301,78,-1.9024740941822529],[123,301,79,-1.8975049331784248],[123,302,64,-1.9135930947959423],[123,302,65,-1.9138497784733772],[123,302,66,-1.9124973490834236],[123,302,67,-1.9107425026595592],[123,302,68,-1.9100263863801956],[123,302,69,-1.9111358299851418],[123,302,70,-1.913498841226101],[123,302,71,-1.9162080250680447],[123,302,72,-1.9191959835588932],[123,302,73,-1.921222347766161],[123,302,74,-1.9219625182449818],[123,302,75,-1.921300869435072],[123,302,76,-1.918864157050848],[123,302,77,-1.9149156510829926],[123,302,78,-1.9102865941822529],[123,302,79,-1.9053174331784248],[123,303,64,-1.9214055947959423],[123,303,65,-1.9216622784733772],[123,303,66,-1.9203098490834236],[123,303,67,-1.9185550026595592],[123,303,68,-1.9178388863801956],[123,303,69,-1.9189483299851418],[123,303,70,-1.921311341226101],[123,303,71,-1.9240205250680447],[123,303,72,-1.9270084835588932],[123,303,73,-1.929034847766161],[123,303,74,-1.9297750182449818],[123,303,75,-1.929113369435072],[123,303,76,-1.926676657050848],[123,303,77,-1.9227281510829926],[123,303,78,-1.9180990941822529],[123,303,79,-1.9131299331784248],[123,304,64,-1.9292180947959423],[123,304,65,-1.9294747784733772],[123,304,66,-1.9281223490834236],[123,304,67,-1.9263675026595592],[123,304,68,-1.9256513863801956],[123,304,69,-1.9267608299851418],[123,304,70,-1.929123841226101],[123,304,71,-1.9318330250680447],[123,304,72,-1.9348209835588932],[123,304,73,-1.936847347766161],[123,304,74,-1.9375875182449818],[123,304,75,-1.936925869435072],[123,304,76,-1.934489157050848],[123,304,77,-1.9305406510829926],[123,304,78,-1.9259115941822529],[123,304,79,-1.9209424331784248],[123,305,64,-1.9370305947959423],[123,305,65,-1.9372872784733772],[123,305,66,-1.9359348490834236],[123,305,67,-1.9341800026595592],[123,305,68,-1.9334638863801956],[123,305,69,-1.9345733299851418],[123,305,70,-1.936936341226101],[123,305,71,-1.9396455250680447],[123,305,72,-1.9426334835588932],[123,305,73,-1.944659847766161],[123,305,74,-1.9454000182449818],[123,305,75,-1.944738369435072],[123,305,76,-1.942301657050848],[123,305,77,-1.9383531510829926],[123,305,78,-1.9337240941822529],[123,305,79,-1.9287549331784248],[123,306,64,-1.9448430947959423],[123,306,65,-1.9450997784733772],[123,306,66,-1.9437473490834236],[123,306,67,-1.9419925026595592],[123,306,68,-1.9412763863801956],[123,306,69,-1.9423858299851418],[123,306,70,-1.944748841226101],[123,306,71,-1.9474580250680447],[123,306,72,-1.9504459835588932],[123,306,73,-1.952472347766161],[123,306,74,-1.9532125182449818],[123,306,75,-1.952550869435072],[123,306,76,-1.950114157050848],[123,306,77,-1.9461656510829926],[123,306,78,-1.9415365941822529],[123,306,79,-1.9365674331784248],[123,307,64,-1.9526555947959423],[123,307,65,-1.9529122784733772],[123,307,66,-1.9515598490834236],[123,307,67,-1.9498050026595592],[123,307,68,-1.9490888863801956],[123,307,69,-1.9501983299851418],[123,307,70,-1.952561341226101],[123,307,71,-1.9552705250680447],[123,307,72,-1.9582584835588932],[123,307,73,-1.960284847766161],[123,307,74,-1.9610250182449818],[123,307,75,-1.960363369435072],[123,307,76,-1.957926657050848],[123,307,77,-1.9539781510829926],[123,307,78,-1.9493490941822529],[123,307,79,-1.9443799331784248],[123,308,64,-1.9604680947959423],[123,308,65,-1.9607247784733772],[123,308,66,-1.9593723490834236],[123,308,67,-1.9576175026595592],[123,308,68,-1.9569013863801956],[123,308,69,-1.9580108299851418],[123,308,70,-1.960373841226101],[123,308,71,-1.9630830250680447],[123,308,72,-1.9660709835588932],[123,308,73,-1.968097347766161],[123,308,74,-1.9688375182449818],[123,308,75,-1.968175869435072],[123,308,76,-1.965739157050848],[123,308,77,-1.9617906510829926],[123,308,78,-1.9571615941822529],[123,308,79,-1.9521924331784248],[123,309,64,-1.9682805947959423],[123,309,65,-1.9685372784733772],[123,309,66,-1.9671848490834236],[123,309,67,-1.9654300026595592],[123,309,68,-1.9647138863801956],[123,309,69,-1.9658233299851418],[123,309,70,-1.968186341226101],[123,309,71,-1.9708955250680447],[123,309,72,-1.9738834835588932],[123,309,73,-1.975909847766161],[123,309,74,-1.9766500182449818],[123,309,75,-1.975988369435072],[123,309,76,-1.973551657050848],[123,309,77,-1.9696031510829926],[123,309,78,-1.9649740941822529],[123,309,79,-1.9600049331784248],[123,310,64,-1.9760930947959423],[123,310,65,-1.9763497784733772],[123,310,66,-1.9749973490834236],[123,310,67,-1.9732425026595592],[123,310,68,-1.9725263863801956],[123,310,69,-1.9736358299851418],[123,310,70,-1.975998841226101],[123,310,71,-1.9787080250680447],[123,310,72,-1.9816959835588932],[123,310,73,-1.983722347766161],[123,310,74,-1.9844625182449818],[123,310,75,-1.983800869435072],[123,310,76,-1.981364157050848],[123,310,77,-1.9774156510829926],[123,310,78,-1.9727865941822529],[123,310,79,-1.9678174331784248],[123,311,64,-1.9839055947959423],[123,311,65,-1.9841622784733772],[123,311,66,-1.9828098490834236],[123,311,67,-1.9810550026595592],[123,311,68,-1.9803388863801956],[123,311,69,-1.9814483299851418],[123,311,70,-1.983811341226101],[123,311,71,-1.9865205250680447],[123,311,72,-1.9895084835588932],[123,311,73,-1.991534847766161],[123,311,74,-1.9922750182449818],[123,311,75,-1.991613369435072],[123,311,76,-1.989176657050848],[123,311,77,-1.9852281510829926],[123,311,78,-1.9805990941822529],[123,311,79,-1.9756299331784248],[123,312,64,-1.9917180947959423],[123,312,65,-1.9919747784733772],[123,312,66,-1.9906223490834236],[123,312,67,-1.9888675026595592],[123,312,68,-1.9881513863801956],[123,312,69,-1.9892608299851418],[123,312,70,-1.991623841226101],[123,312,71,-1.9943330250680447],[123,312,72,-1.9973209835588932],[123,312,73,-1.999347347766161],[123,312,74,-2.0000875182449818],[123,312,75,-1.999425869435072],[123,312,76,-1.996989157050848],[123,312,77,-1.9930406510829926],[123,312,78,-1.9884115941822529],[123,312,79,-1.9834424331784248],[123,313,64,-1.9995305947959423],[123,313,65,-1.9997872784733772],[123,313,66,-1.9984348490834236],[123,313,67,-1.9966800026595592],[123,313,68,-1.9959638863801956],[123,313,69,-1.9970733299851418],[123,313,70,-1.999436341226101],[123,313,71,-2.0021455250680447],[123,313,72,-2.005133483558893],[123,313,73,-2.007159847766161],[123,313,74,-2.0079000182449818],[123,313,75,-2.007238369435072],[123,313,76,-2.004801657050848],[123,313,77,-2.0008531510829926],[123,313,78,-1.9962240941822529],[123,313,79,-1.9912549331784248],[123,314,64,-2.0073430947959423],[123,314,65,-2.0075997784733772],[123,314,66,-2.0062473490834236],[123,314,67,-2.0044925026595592],[123,314,68,-2.0037763863801956],[123,314,69,-2.0048858299851418],[123,314,70,-2.007248841226101],[123,314,71,-2.0099580250680447],[123,314,72,-2.012945983558893],[123,314,73,-2.014972347766161],[123,314,74,-2.0157125182449818],[123,314,75,-2.015050869435072],[123,314,76,-2.012614157050848],[123,314,77,-2.0086656510829926],[123,314,78,-2.004036594182253],[123,314,79,-1.9990674331784248],[123,315,64,-2.0151555947959423],[123,315,65,-2.0154122784733772],[123,315,66,-2.0140598490834236],[123,315,67,-2.0123050026595592],[123,315,68,-2.0115888863801956],[123,315,69,-2.0126983299851418],[123,315,70,-2.015061341226101],[123,315,71,-2.0177705250680447],[123,315,72,-2.020758483558893],[123,315,73,-2.022784847766161],[123,315,74,-2.0235250182449818],[123,315,75,-2.022863369435072],[123,315,76,-2.020426657050848],[123,315,77,-2.0164781510829926],[123,315,78,-2.011849094182253],[123,315,79,-2.006879933178425],[123,316,64,-2.0229680947959423],[123,316,65,-2.0232247784733772],[123,316,66,-2.0218723490834236],[123,316,67,-2.0201175026595592],[123,316,68,-2.0194013863801956],[123,316,69,-2.0205108299851418],[123,316,70,-2.022873841226101],[123,316,71,-2.0255830250680447],[123,316,72,-2.028570983558893],[123,316,73,-2.030597347766161],[123,316,74,-2.0313375182449818],[123,316,75,-2.030675869435072],[123,316,76,-2.028239157050848],[123,316,77,-2.0242906510829926],[123,316,78,-2.019661594182253],[123,316,79,-2.014692433178425],[123,317,64,-2.0307805947959423],[123,317,65,-2.0310372784733772],[123,317,66,-2.0296848490834236],[123,317,67,-2.0279300026595592],[123,317,68,-2.0272138863801956],[123,317,69,-2.0283233299851418],[123,317,70,-2.030686341226101],[123,317,71,-2.0333955250680447],[123,317,72,-2.036383483558893],[123,317,73,-2.038409847766161],[123,317,74,-2.0391500182449818],[123,317,75,-2.038488369435072],[123,317,76,-2.036051657050848],[123,317,77,-2.0321031510829926],[123,317,78,-2.027474094182253],[123,317,79,-2.022504933178425],[123,318,64,-2.0385930947959423],[123,318,65,-2.0388497784733772],[123,318,66,-2.0374973490834236],[123,318,67,-2.0357425026595592],[123,318,68,-2.0350263863801956],[123,318,69,-2.0361358299851418],[123,318,70,-2.038498841226101],[123,318,71,-2.0412080250680447],[123,318,72,-2.044195983558893],[123,318,73,-2.046222347766161],[123,318,74,-2.0469625182449818],[123,318,75,-2.046300869435072],[123,318,76,-2.043864157050848],[123,318,77,-2.0399156510829926],[123,318,78,-2.035286594182253],[123,318,79,-2.030317433178425],[123,319,64,-2.0464055947959423],[123,319,65,-2.0466622784733772],[123,319,66,-2.0453098490834236],[123,319,67,-2.0435550026595592],[123,319,68,-2.0428388863801956],[123,319,69,-2.0439483299851418],[123,319,70,-2.046311341226101],[123,319,71,-2.0490205250680447],[123,319,72,-2.052008483558893],[123,319,73,-2.054034847766161],[123,319,74,-2.0547750182449818],[123,319,75,-2.054113369435072],[123,319,76,-2.051676657050848],[123,319,77,-2.0477281510829926],[123,319,78,-2.043099094182253],[123,319,79,-2.038129933178425],[124,-64,64,0.9450134225189686],[124,-64,65,0.9440405778586864],[124,-64,66,0.9448349215090275],[124,-64,67,0.9463556818664074],[124,-64,68,0.9471871890127659],[124,-64,69,0.9464620687067509],[124,-64,70,0.9446713477373123],[124,-64,71,0.9424256980419159],[124,-64,72,0.9394387155771255],[124,-64,73,0.936924297362566],[124,-64,74,0.9356656931340694],[124,-64,75,0.9359121322631836],[124,-64,76,0.9381983205676079],[124,-64,77,0.9423706568777561],[124,-64,78,0.9473915994167328],[124,-64,79,0.9527092538774014],[124,-63,64,0.9372009225189686],[124,-63,65,0.9362280778586864],[124,-63,66,0.9370224215090275],[124,-63,67,0.9385431818664074],[124,-63,68,0.9393746890127659],[124,-63,69,0.9386495687067509],[124,-63,70,0.9368588477373123],[124,-63,71,0.9346131980419159],[124,-63,72,0.9316262155771255],[124,-63,73,0.929111797362566],[124,-63,74,0.9278531931340694],[124,-63,75,0.9280996322631836],[124,-63,76,0.9303858205676079],[124,-63,77,0.9345581568777561],[124,-63,78,0.9395790994167328],[124,-63,79,0.9448967538774014],[124,-62,64,0.9293884225189686],[124,-62,65,0.9284155778586864],[124,-62,66,0.9292099215090275],[124,-62,67,0.9307306818664074],[124,-62,68,0.9315621890127659],[124,-62,69,0.9308370687067509],[124,-62,70,0.9290463477373123],[124,-62,71,0.9268006980419159],[124,-62,72,0.9238137155771255],[124,-62,73,0.921299297362566],[124,-62,74,0.9200406931340694],[124,-62,75,0.9202871322631836],[124,-62,76,0.9225733205676079],[124,-62,77,0.9267456568777561],[124,-62,78,0.9317665994167328],[124,-62,79,0.9370842538774014],[124,-61,64,0.9215759225189686],[124,-61,65,0.9206030778586864],[124,-61,66,0.9213974215090275],[124,-61,67,0.9229181818664074],[124,-61,68,0.9237496890127659],[124,-61,69,0.9230245687067509],[124,-61,70,0.9212338477373123],[124,-61,71,0.9189881980419159],[124,-61,72,0.9160012155771255],[124,-61,73,0.913486797362566],[124,-61,74,0.9122281931340694],[124,-61,75,0.9124746322631836],[124,-61,76,0.9147608205676079],[124,-61,77,0.9189331568777561],[124,-61,78,0.9239540994167328],[124,-61,79,0.9292717538774014],[124,-60,64,0.9137634225189686],[124,-60,65,0.9127905778586864],[124,-60,66,0.9135849215090275],[124,-60,67,0.9151056818664074],[124,-60,68,0.9159371890127659],[124,-60,69,0.9152120687067509],[124,-60,70,0.9134213477373123],[124,-60,71,0.9111756980419159],[124,-60,72,0.9081887155771255],[124,-60,73,0.905674297362566],[124,-60,74,0.9044156931340694],[124,-60,75,0.9046621322631836],[124,-60,76,0.9069483205676079],[124,-60,77,0.9111206568777561],[124,-60,78,0.9161415994167328],[124,-60,79,0.9214592538774014],[124,-59,64,0.9059509225189686],[124,-59,65,0.9049780778586864],[124,-59,66,0.9057724215090275],[124,-59,67,0.9072931818664074],[124,-59,68,0.9081246890127659],[124,-59,69,0.9073995687067509],[124,-59,70,0.9056088477373123],[124,-59,71,0.9033631980419159],[124,-59,72,0.9003762155771255],[124,-59,73,0.897861797362566],[124,-59,74,0.8966031931340694],[124,-59,75,0.8968496322631836],[124,-59,76,0.8991358205676079],[124,-59,77,0.9033081568777561],[124,-59,78,0.9083290994167328],[124,-59,79,0.9136467538774014],[124,-58,64,0.8981384225189686],[124,-58,65,0.8971655778586864],[124,-58,66,0.8979599215090275],[124,-58,67,0.8994806818664074],[124,-58,68,0.9003121890127659],[124,-58,69,0.8995870687067509],[124,-58,70,0.8977963477373123],[124,-58,71,0.8955506980419159],[124,-58,72,0.8925637155771255],[124,-58,73,0.890049297362566],[124,-58,74,0.8887906931340694],[124,-58,75,0.8890371322631836],[124,-58,76,0.8913233205676079],[124,-58,77,0.8954956568777561],[124,-58,78,0.9005165994167328],[124,-58,79,0.9058342538774014],[124,-57,64,0.8903259225189686],[124,-57,65,0.8893530778586864],[124,-57,66,0.8901474215090275],[124,-57,67,0.8916681818664074],[124,-57,68,0.8924996890127659],[124,-57,69,0.8917745687067509],[124,-57,70,0.8899838477373123],[124,-57,71,0.8877381980419159],[124,-57,72,0.8847512155771255],[124,-57,73,0.882236797362566],[124,-57,74,0.8809781931340694],[124,-57,75,0.8812246322631836],[124,-57,76,0.8835108205676079],[124,-57,77,0.8876831568777561],[124,-57,78,0.8927040994167328],[124,-57,79,0.8980217538774014],[124,-56,64,0.8825134225189686],[124,-56,65,0.8815405778586864],[124,-56,66,0.8823349215090275],[124,-56,67,0.8838556818664074],[124,-56,68,0.8846871890127659],[124,-56,69,0.8839620687067509],[124,-56,70,0.8821713477373123],[124,-56,71,0.8799256980419159],[124,-56,72,0.8769387155771255],[124,-56,73,0.874424297362566],[124,-56,74,0.8731656931340694],[124,-56,75,0.8734121322631836],[124,-56,76,0.8756983205676079],[124,-56,77,0.8798706568777561],[124,-56,78,0.8848915994167328],[124,-56,79,0.8902092538774014],[124,-55,64,0.8747009225189686],[124,-55,65,0.8737280778586864],[124,-55,66,0.8745224215090275],[124,-55,67,0.8760431818664074],[124,-55,68,0.8768746890127659],[124,-55,69,0.8761495687067509],[124,-55,70,0.8743588477373123],[124,-55,71,0.8721131980419159],[124,-55,72,0.8691262155771255],[124,-55,73,0.866611797362566],[124,-55,74,0.8653531931340694],[124,-55,75,0.8655996322631836],[124,-55,76,0.8678858205676079],[124,-55,77,0.8720581568777561],[124,-55,78,0.8770790994167328],[124,-55,79,0.8823967538774014],[124,-54,64,0.8668884225189686],[124,-54,65,0.8659155778586864],[124,-54,66,0.8667099215090275],[124,-54,67,0.8682306818664074],[124,-54,68,0.8690621890127659],[124,-54,69,0.8683370687067509],[124,-54,70,0.8665463477373123],[124,-54,71,0.8643006980419159],[124,-54,72,0.8613137155771255],[124,-54,73,0.858799297362566],[124,-54,74,0.8575406931340694],[124,-54,75,0.8577871322631836],[124,-54,76,0.8600733205676079],[124,-54,77,0.8642456568777561],[124,-54,78,0.8692665994167328],[124,-54,79,0.8745842538774014],[124,-53,64,0.8590759225189686],[124,-53,65,0.8581030778586864],[124,-53,66,0.8588974215090275],[124,-53,67,0.8604181818664074],[124,-53,68,0.8612496890127659],[124,-53,69,0.8605245687067509],[124,-53,70,0.8587338477373123],[124,-53,71,0.8564881980419159],[124,-53,72,0.8535012155771255],[124,-53,73,0.850986797362566],[124,-53,74,0.8497281931340694],[124,-53,75,0.8499746322631836],[124,-53,76,0.8522608205676079],[124,-53,77,0.8564331568777561],[124,-53,78,0.8614540994167328],[124,-53,79,0.8667717538774014],[124,-52,64,0.8512634225189686],[124,-52,65,0.8502905778586864],[124,-52,66,0.8510849215090275],[124,-52,67,0.8526056818664074],[124,-52,68,0.8534371890127659],[124,-52,69,0.8527120687067509],[124,-52,70,0.8509213477373123],[124,-52,71,0.8486756980419159],[124,-52,72,0.8456887155771255],[124,-52,73,0.843174297362566],[124,-52,74,0.8419156931340694],[124,-52,75,0.8421621322631836],[124,-52,76,0.8444483205676079],[124,-52,77,0.8486206568777561],[124,-52,78,0.8536415994167328],[124,-52,79,0.8589592538774014],[124,-51,64,0.8434509225189686],[124,-51,65,0.8424780778586864],[124,-51,66,0.8432724215090275],[124,-51,67,0.8447931818664074],[124,-51,68,0.8456246890127659],[124,-51,69,0.8448995687067509],[124,-51,70,0.8431088477373123],[124,-51,71,0.8408631980419159],[124,-51,72,0.8378762155771255],[124,-51,73,0.835361797362566],[124,-51,74,0.8341031931340694],[124,-51,75,0.8343496322631836],[124,-51,76,0.8366358205676079],[124,-51,77,0.8408081568777561],[124,-51,78,0.8458290994167328],[124,-51,79,0.8511467538774014],[124,-50,64,0.8356384225189686],[124,-50,65,0.8346655778586864],[124,-50,66,0.8354599215090275],[124,-50,67,0.8369806818664074],[124,-50,68,0.8378121890127659],[124,-50,69,0.8370870687067509],[124,-50,70,0.8352963477373123],[124,-50,71,0.8330506980419159],[124,-50,72,0.8300637155771255],[124,-50,73,0.827549297362566],[124,-50,74,0.8262906931340694],[124,-50,75,0.8265371322631836],[124,-50,76,0.8288233205676079],[124,-50,77,0.8329956568777561],[124,-50,78,0.8380165994167328],[124,-50,79,0.8433342538774014],[124,-49,64,0.8278259225189686],[124,-49,65,0.8268530778586864],[124,-49,66,0.8276474215090275],[124,-49,67,0.8291681818664074],[124,-49,68,0.8299996890127659],[124,-49,69,0.8292745687067509],[124,-49,70,0.8274838477373123],[124,-49,71,0.8252381980419159],[124,-49,72,0.8222512155771255],[124,-49,73,0.819736797362566],[124,-49,74,0.8184781931340694],[124,-49,75,0.8187246322631836],[124,-49,76,0.8210108205676079],[124,-49,77,0.8251831568777561],[124,-49,78,0.8302040994167328],[124,-49,79,0.8355217538774014],[124,-48,64,0.8200134225189686],[124,-48,65,0.8190405778586864],[124,-48,66,0.8198349215090275],[124,-48,67,0.8213556818664074],[124,-48,68,0.8221871890127659],[124,-48,69,0.8214620687067509],[124,-48,70,0.8196713477373123],[124,-48,71,0.8174256980419159],[124,-48,72,0.8144387155771255],[124,-48,73,0.811924297362566],[124,-48,74,0.8106656931340694],[124,-48,75,0.8109121322631836],[124,-48,76,0.8131983205676079],[124,-48,77,0.8173706568777561],[124,-48,78,0.8223915994167328],[124,-48,79,0.8277092538774014],[124,-47,64,0.8122009225189686],[124,-47,65,0.8112280778586864],[124,-47,66,0.8120224215090275],[124,-47,67,0.8135431818664074],[124,-47,68,0.8143746890127659],[124,-47,69,0.8136495687067509],[124,-47,70,0.8118588477373123],[124,-47,71,0.8096131980419159],[124,-47,72,0.8066262155771255],[124,-47,73,0.804111797362566],[124,-47,74,0.8028531931340694],[124,-47,75,0.8030996322631836],[124,-47,76,0.8053858205676079],[124,-47,77,0.8095581568777561],[124,-47,78,0.8145790994167328],[124,-47,79,0.8198967538774014],[124,-46,64,0.8043884225189686],[124,-46,65,0.8034155778586864],[124,-46,66,0.8042099215090275],[124,-46,67,0.8057306818664074],[124,-46,68,0.8065621890127659],[124,-46,69,0.8058370687067509],[124,-46,70,0.8040463477373123],[124,-46,71,0.8018006980419159],[124,-46,72,0.7988137155771255],[124,-46,73,0.796299297362566],[124,-46,74,0.7950406931340694],[124,-46,75,0.7952871322631836],[124,-46,76,0.7975733205676079],[124,-46,77,0.8017456568777561],[124,-46,78,0.8067665994167328],[124,-46,79,0.8120842538774014],[124,-45,64,0.7965759225189686],[124,-45,65,0.7956030778586864],[124,-45,66,0.7963974215090275],[124,-45,67,0.7979181818664074],[124,-45,68,0.7987496890127659],[124,-45,69,0.7980245687067509],[124,-45,70,0.7962338477373123],[124,-45,71,0.7939881980419159],[124,-45,72,0.7910012155771255],[124,-45,73,0.788486797362566],[124,-45,74,0.7872281931340694],[124,-45,75,0.7874746322631836],[124,-45,76,0.7897608205676079],[124,-45,77,0.7939331568777561],[124,-45,78,0.7989540994167328],[124,-45,79,0.8042717538774014],[124,-44,64,0.7887634225189686],[124,-44,65,0.7877905778586864],[124,-44,66,0.7885849215090275],[124,-44,67,0.7901056818664074],[124,-44,68,0.7909371890127659],[124,-44,69,0.7902120687067509],[124,-44,70,0.7884213477373123],[124,-44,71,0.7861756980419159],[124,-44,72,0.7831887155771255],[124,-44,73,0.780674297362566],[124,-44,74,0.7794156931340694],[124,-44,75,0.7796621322631836],[124,-44,76,0.7819483205676079],[124,-44,77,0.7861206568777561],[124,-44,78,0.7911415994167328],[124,-44,79,0.7964592538774014],[124,-43,64,0.7809509225189686],[124,-43,65,0.7799780778586864],[124,-43,66,0.7807724215090275],[124,-43,67,0.7822931818664074],[124,-43,68,0.7831246890127659],[124,-43,69,0.7823995687067509],[124,-43,70,0.7806088477373123],[124,-43,71,0.7783631980419159],[124,-43,72,0.7753762155771255],[124,-43,73,0.772861797362566],[124,-43,74,0.7716031931340694],[124,-43,75,0.7718496322631836],[124,-43,76,0.7741358205676079],[124,-43,77,0.7783081568777561],[124,-43,78,0.7833290994167328],[124,-43,79,0.7886467538774014],[124,-42,64,0.7731384225189686],[124,-42,65,0.7721655778586864],[124,-42,66,0.7729599215090275],[124,-42,67,0.7744806818664074],[124,-42,68,0.7753121890127659],[124,-42,69,0.7745870687067509],[124,-42,70,0.7727963477373123],[124,-42,71,0.7705506980419159],[124,-42,72,0.7675637155771255],[124,-42,73,0.765049297362566],[124,-42,74,0.7637906931340694],[124,-42,75,0.7640371322631836],[124,-42,76,0.7663233205676079],[124,-42,77,0.7704956568777561],[124,-42,78,0.7755165994167328],[124,-42,79,0.7808342538774014],[124,-41,64,0.7653259225189686],[124,-41,65,0.7643530778586864],[124,-41,66,0.7651474215090275],[124,-41,67,0.7666681818664074],[124,-41,68,0.7674996890127659],[124,-41,69,0.7667745687067509],[124,-41,70,0.7649838477373123],[124,-41,71,0.7627381980419159],[124,-41,72,0.7597512155771255],[124,-41,73,0.757236797362566],[124,-41,74,0.7559781931340694],[124,-41,75,0.7562246322631836],[124,-41,76,0.7585108205676079],[124,-41,77,0.7626831568777561],[124,-41,78,0.7677040994167328],[124,-41,79,0.7730217538774014],[124,-40,64,0.7575134225189686],[124,-40,65,0.7565405778586864],[124,-40,66,0.7573349215090275],[124,-40,67,0.7588556818664074],[124,-40,68,0.7596871890127659],[124,-40,69,0.7589620687067509],[124,-40,70,0.7571713477373123],[124,-40,71,0.7549256980419159],[124,-40,72,0.7519387155771255],[124,-40,73,0.749424297362566],[124,-40,74,0.7481656931340694],[124,-40,75,0.7484121322631836],[124,-40,76,0.7506983205676079],[124,-40,77,0.7548706568777561],[124,-40,78,0.7598915994167328],[124,-40,79,0.7652092538774014],[124,-39,64,0.7497009225189686],[124,-39,65,0.7487280778586864],[124,-39,66,0.7495224215090275],[124,-39,67,0.7510431818664074],[124,-39,68,0.7518746890127659],[124,-39,69,0.7511495687067509],[124,-39,70,0.7493588477373123],[124,-39,71,0.7471131980419159],[124,-39,72,0.7441262155771255],[124,-39,73,0.741611797362566],[124,-39,74,0.7403531931340694],[124,-39,75,0.7405996322631836],[124,-39,76,0.7428858205676079],[124,-39,77,0.7470581568777561],[124,-39,78,0.7520790994167328],[124,-39,79,0.7573967538774014],[124,-38,64,0.7418884225189686],[124,-38,65,0.7409155778586864],[124,-38,66,0.7417099215090275],[124,-38,67,0.7432306818664074],[124,-38,68,0.7440621890127659],[124,-38,69,0.7433370687067509],[124,-38,70,0.7415463477373123],[124,-38,71,0.7393006980419159],[124,-38,72,0.7363137155771255],[124,-38,73,0.733799297362566],[124,-38,74,0.7325406931340694],[124,-38,75,0.7327871322631836],[124,-38,76,0.7350733205676079],[124,-38,77,0.7392456568777561],[124,-38,78,0.7442665994167328],[124,-38,79,0.7495842538774014],[124,-37,64,0.7340759225189686],[124,-37,65,0.7331030778586864],[124,-37,66,0.7338974215090275],[124,-37,67,0.7354181818664074],[124,-37,68,0.7362496890127659],[124,-37,69,0.7355245687067509],[124,-37,70,0.7337338477373123],[124,-37,71,0.7314881980419159],[124,-37,72,0.7285012155771255],[124,-37,73,0.725986797362566],[124,-37,74,0.7247281931340694],[124,-37,75,0.7249746322631836],[124,-37,76,0.7272608205676079],[124,-37,77,0.7314331568777561],[124,-37,78,0.7364540994167328],[124,-37,79,0.7417717538774014],[124,-36,64,0.7262634225189686],[124,-36,65,0.7252905778586864],[124,-36,66,0.7260849215090275],[124,-36,67,0.7276056818664074],[124,-36,68,0.7284371890127659],[124,-36,69,0.7277120687067509],[124,-36,70,0.7259213477373123],[124,-36,71,0.7236756980419159],[124,-36,72,0.7206887155771255],[124,-36,73,0.718174297362566],[124,-36,74,0.7169156931340694],[124,-36,75,0.7171621322631836],[124,-36,76,0.7194483205676079],[124,-36,77,0.7236206568777561],[124,-36,78,0.7286415994167328],[124,-36,79,0.7339592538774014],[124,-35,64,0.7184509225189686],[124,-35,65,0.7174780778586864],[124,-35,66,0.7182724215090275],[124,-35,67,0.7197931818664074],[124,-35,68,0.7206246890127659],[124,-35,69,0.7198995687067509],[124,-35,70,0.7181088477373123],[124,-35,71,0.7158631980419159],[124,-35,72,0.7128762155771255],[124,-35,73,0.710361797362566],[124,-35,74,0.7091031931340694],[124,-35,75,0.7093496322631836],[124,-35,76,0.7116358205676079],[124,-35,77,0.7158081568777561],[124,-35,78,0.7208290994167328],[124,-35,79,0.7261467538774014],[124,-34,64,0.7106384225189686],[124,-34,65,0.7096655778586864],[124,-34,66,0.7104599215090275],[124,-34,67,0.7119806818664074],[124,-34,68,0.7128121890127659],[124,-34,69,0.7120870687067509],[124,-34,70,0.7102963477373123],[124,-34,71,0.7080506980419159],[124,-34,72,0.7050637155771255],[124,-34,73,0.702549297362566],[124,-34,74,0.7012906931340694],[124,-34,75,0.7015371322631836],[124,-34,76,0.7038233205676079],[124,-34,77,0.7079956568777561],[124,-34,78,0.7130165994167328],[124,-34,79,0.7183342538774014],[124,-33,64,0.7028259225189686],[124,-33,65,0.7018530778586864],[124,-33,66,0.7026474215090275],[124,-33,67,0.7041681818664074],[124,-33,68,0.7049996890127659],[124,-33,69,0.7042745687067509],[124,-33,70,0.7024838477373123],[124,-33,71,0.7002381980419159],[124,-33,72,0.6972512155771255],[124,-33,73,0.694736797362566],[124,-33,74,0.6934781931340694],[124,-33,75,0.6937246322631836],[124,-33,76,0.6960108205676079],[124,-33,77,0.7001831568777561],[124,-33,78,0.7052040994167328],[124,-33,79,0.7105217538774014],[124,-32,64,0.6950134225189686],[124,-32,65,0.6940405778586864],[124,-32,66,0.6948349215090275],[124,-32,67,0.6963556818664074],[124,-32,68,0.6971871890127659],[124,-32,69,0.6964620687067509],[124,-32,70,0.6946713477373123],[124,-32,71,0.6924256980419159],[124,-32,72,0.6894387155771255],[124,-32,73,0.686924297362566],[124,-32,74,0.6856656931340694],[124,-32,75,0.6859121322631836],[124,-32,76,0.6881983205676079],[124,-32,77,0.6923706568777561],[124,-32,78,0.6973915994167328],[124,-32,79,0.7027092538774014],[124,-31,64,0.6872009225189686],[124,-31,65,0.6862280778586864],[124,-31,66,0.6870224215090275],[124,-31,67,0.6885431818664074],[124,-31,68,0.6893746890127659],[124,-31,69,0.6886495687067509],[124,-31,70,0.6868588477373123],[124,-31,71,0.6846131980419159],[124,-31,72,0.6816262155771255],[124,-31,73,0.679111797362566],[124,-31,74,0.6778531931340694],[124,-31,75,0.6780996322631836],[124,-31,76,0.6803858205676079],[124,-31,77,0.6845581568777561],[124,-31,78,0.6895790994167328],[124,-31,79,0.6948967538774014],[124,-30,64,0.6793884225189686],[124,-30,65,0.6784155778586864],[124,-30,66,0.6792099215090275],[124,-30,67,0.6807306818664074],[124,-30,68,0.6815621890127659],[124,-30,69,0.6808370687067509],[124,-30,70,0.6790463477373123],[124,-30,71,0.6768006980419159],[124,-30,72,0.6738137155771255],[124,-30,73,0.671299297362566],[124,-30,74,0.6700406931340694],[124,-30,75,0.6702871322631836],[124,-30,76,0.6725733205676079],[124,-30,77,0.6767456568777561],[124,-30,78,0.6817665994167328],[124,-30,79,0.6870842538774014],[124,-29,64,0.6715759225189686],[124,-29,65,0.6706030778586864],[124,-29,66,0.6713974215090275],[124,-29,67,0.6729181818664074],[124,-29,68,0.6737496890127659],[124,-29,69,0.6730245687067509],[124,-29,70,0.6712338477373123],[124,-29,71,0.6689881980419159],[124,-29,72,0.6660012155771255],[124,-29,73,0.663486797362566],[124,-29,74,0.6622281931340694],[124,-29,75,0.6624746322631836],[124,-29,76,0.6647608205676079],[124,-29,77,0.6689331568777561],[124,-29,78,0.6739540994167328],[124,-29,79,0.6792717538774014],[124,-28,64,0.6637634225189686],[124,-28,65,0.6627905778586864],[124,-28,66,0.6635849215090275],[124,-28,67,0.6651056818664074],[124,-28,68,0.6659371890127659],[124,-28,69,0.6652120687067509],[124,-28,70,0.6634213477373123],[124,-28,71,0.6611756980419159],[124,-28,72,0.6581887155771255],[124,-28,73,0.655674297362566],[124,-28,74,0.6544156931340694],[124,-28,75,0.6546621322631836],[124,-28,76,0.6569483205676079],[124,-28,77,0.6611206568777561],[124,-28,78,0.6661415994167328],[124,-28,79,0.6714592538774014],[124,-27,64,0.6559509225189686],[124,-27,65,0.6549780778586864],[124,-27,66,0.6557724215090275],[124,-27,67,0.6572931818664074],[124,-27,68,0.6581246890127659],[124,-27,69,0.6573995687067509],[124,-27,70,0.6556088477373123],[124,-27,71,0.6533631980419159],[124,-27,72,0.6503762155771255],[124,-27,73,0.647861797362566],[124,-27,74,0.6466031931340694],[124,-27,75,0.6468496322631836],[124,-27,76,0.6491358205676079],[124,-27,77,0.6533081568777561],[124,-27,78,0.6583290994167328],[124,-27,79,0.6636467538774014],[124,-26,64,0.6481384225189686],[124,-26,65,0.6471655778586864],[124,-26,66,0.6479599215090275],[124,-26,67,0.6494806818664074],[124,-26,68,0.6503121890127659],[124,-26,69,0.6495870687067509],[124,-26,70,0.6477963477373123],[124,-26,71,0.6455506980419159],[124,-26,72,0.6425637155771255],[124,-26,73,0.640049297362566],[124,-26,74,0.6387906931340694],[124,-26,75,0.6390371322631836],[124,-26,76,0.6413233205676079],[124,-26,77,0.6454956568777561],[124,-26,78,0.6505165994167328],[124,-26,79,0.6558342538774014],[124,-25,64,0.6403259225189686],[124,-25,65,0.6393530778586864],[124,-25,66,0.6401474215090275],[124,-25,67,0.6416681818664074],[124,-25,68,0.6424996890127659],[124,-25,69,0.6417745687067509],[124,-25,70,0.6399838477373123],[124,-25,71,0.6377381980419159],[124,-25,72,0.6347512155771255],[124,-25,73,0.632236797362566],[124,-25,74,0.6309781931340694],[124,-25,75,0.6312246322631836],[124,-25,76,0.6335108205676079],[124,-25,77,0.6376831568777561],[124,-25,78,0.6427040994167328],[124,-25,79,0.6480217538774014],[124,-24,64,0.6325134225189686],[124,-24,65,0.6315405778586864],[124,-24,66,0.6323349215090275],[124,-24,67,0.6338556818664074],[124,-24,68,0.6346871890127659],[124,-24,69,0.6339620687067509],[124,-24,70,0.6321713477373123],[124,-24,71,0.6299256980419159],[124,-24,72,0.6269387155771255],[124,-24,73,0.624424297362566],[124,-24,74,0.6231656931340694],[124,-24,75,0.6234121322631836],[124,-24,76,0.6256983205676079],[124,-24,77,0.6298706568777561],[124,-24,78,0.6348915994167328],[124,-24,79,0.6402092538774014],[124,-23,64,0.6247009225189686],[124,-23,65,0.6237280778586864],[124,-23,66,0.6245224215090275],[124,-23,67,0.6260431818664074],[124,-23,68,0.6268746890127659],[124,-23,69,0.6261495687067509],[124,-23,70,0.6243588477373123],[124,-23,71,0.6221131980419159],[124,-23,72,0.6191262155771255],[124,-23,73,0.616611797362566],[124,-23,74,0.6153531931340694],[124,-23,75,0.6155996322631836],[124,-23,76,0.6178858205676079],[124,-23,77,0.6220581568777561],[124,-23,78,0.6270790994167328],[124,-23,79,0.6323967538774014],[124,-22,64,0.6168884225189686],[124,-22,65,0.6159155778586864],[124,-22,66,0.6167099215090275],[124,-22,67,0.6182306818664074],[124,-22,68,0.6190621890127659],[124,-22,69,0.6183370687067509],[124,-22,70,0.6165463477373123],[124,-22,71,0.6143006980419159],[124,-22,72,0.6113137155771255],[124,-22,73,0.608799297362566],[124,-22,74,0.6075406931340694],[124,-22,75,0.6077871322631836],[124,-22,76,0.6100733205676079],[124,-22,77,0.6142456568777561],[124,-22,78,0.6192665994167328],[124,-22,79,0.6245842538774014],[124,-21,64,0.6090759225189686],[124,-21,65,0.6081030778586864],[124,-21,66,0.6088974215090275],[124,-21,67,0.6104181818664074],[124,-21,68,0.6112496890127659],[124,-21,69,0.6105245687067509],[124,-21,70,0.6087338477373123],[124,-21,71,0.6064881980419159],[124,-21,72,0.6035012155771255],[124,-21,73,0.600986797362566],[124,-21,74,0.5997281931340694],[124,-21,75,0.5999746322631836],[124,-21,76,0.6022608205676079],[124,-21,77,0.6064331568777561],[124,-21,78,0.6114540994167328],[124,-21,79,0.6167717538774014],[124,-20,64,0.6012634225189686],[124,-20,65,0.6002905778586864],[124,-20,66,0.6010849215090275],[124,-20,67,0.6026056818664074],[124,-20,68,0.6034371890127659],[124,-20,69,0.6027120687067509],[124,-20,70,0.6009213477373123],[124,-20,71,0.5986756980419159],[124,-20,72,0.5956887155771255],[124,-20,73,0.593174297362566],[124,-20,74,0.5919156931340694],[124,-20,75,0.5921621322631836],[124,-20,76,0.5944483205676079],[124,-20,77,0.5986206568777561],[124,-20,78,0.6036415994167328],[124,-20,79,0.6089592538774014],[124,-19,64,0.5934509225189686],[124,-19,65,0.5924780778586864],[124,-19,66,0.5932724215090275],[124,-19,67,0.5947931818664074],[124,-19,68,0.5956246890127659],[124,-19,69,0.5948995687067509],[124,-19,70,0.5931088477373123],[124,-19,71,0.5908631980419159],[124,-19,72,0.5878762155771255],[124,-19,73,0.585361797362566],[124,-19,74,0.5841031931340694],[124,-19,75,0.5843496322631836],[124,-19,76,0.5866358205676079],[124,-19,77,0.5908081568777561],[124,-19,78,0.5958290994167328],[124,-19,79,0.6011467538774014],[124,-18,64,0.5856384225189686],[124,-18,65,0.5846655778586864],[124,-18,66,0.5854599215090275],[124,-18,67,0.5869806818664074],[124,-18,68,0.5878121890127659],[124,-18,69,0.5870870687067509],[124,-18,70,0.5852963477373123],[124,-18,71,0.5830506980419159],[124,-18,72,0.5800637155771255],[124,-18,73,0.577549297362566],[124,-18,74,0.5762906931340694],[124,-18,75,0.5765371322631836],[124,-18,76,0.5788233205676079],[124,-18,77,0.5829956568777561],[124,-18,78,0.5880165994167328],[124,-18,79,0.5933342538774014],[124,-17,64,0.5778259225189686],[124,-17,65,0.5768530778586864],[124,-17,66,0.5776474215090275],[124,-17,67,0.5791681818664074],[124,-17,68,0.5799996890127659],[124,-17,69,0.5792745687067509],[124,-17,70,0.5774838477373123],[124,-17,71,0.5752381980419159],[124,-17,72,0.5722512155771255],[124,-17,73,0.569736797362566],[124,-17,74,0.5684781931340694],[124,-17,75,0.5687246322631836],[124,-17,76,0.5710108205676079],[124,-17,77,0.5751831568777561],[124,-17,78,0.5802040994167328],[124,-17,79,0.5855217538774014],[124,-16,64,0.5700134225189686],[124,-16,65,0.5690405778586864],[124,-16,66,0.5698349215090275],[124,-16,67,0.5713556818664074],[124,-16,68,0.5721871890127659],[124,-16,69,0.5714620687067509],[124,-16,70,0.5696713477373123],[124,-16,71,0.5674256980419159],[124,-16,72,0.5644387155771255],[124,-16,73,0.561924297362566],[124,-16,74,0.5606656931340694],[124,-16,75,0.5609121322631836],[124,-16,76,0.5631983205676079],[124,-16,77,0.5673706568777561],[124,-16,78,0.5723915994167328],[124,-16,79,0.5777092538774014],[124,-15,64,0.5622009225189686],[124,-15,65,0.5612280778586864],[124,-15,66,0.5620224215090275],[124,-15,67,0.5635431818664074],[124,-15,68,0.5643746890127659],[124,-15,69,0.5636495687067509],[124,-15,70,0.5618588477373123],[124,-15,71,0.5596131980419159],[124,-15,72,0.5566262155771255],[124,-15,73,0.554111797362566],[124,-15,74,0.5528531931340694],[124,-15,75,0.5530996322631836],[124,-15,76,0.5553858205676079],[124,-15,77,0.5595581568777561],[124,-15,78,0.5645790994167328],[124,-15,79,0.5698967538774014],[124,-14,64,0.5543884225189686],[124,-14,65,0.5534155778586864],[124,-14,66,0.5542099215090275],[124,-14,67,0.5557306818664074],[124,-14,68,0.5565621890127659],[124,-14,69,0.5558370687067509],[124,-14,70,0.5540463477373123],[124,-14,71,0.5518006980419159],[124,-14,72,0.5488137155771255],[124,-14,73,0.546299297362566],[124,-14,74,0.5450406931340694],[124,-14,75,0.5452871322631836],[124,-14,76,0.5475733205676079],[124,-14,77,0.5517456568777561],[124,-14,78,0.5567665994167328],[124,-14,79,0.5620842538774014],[124,-13,64,0.5465759225189686],[124,-13,65,0.5456030778586864],[124,-13,66,0.5463974215090275],[124,-13,67,0.5479181818664074],[124,-13,68,0.5487496890127659],[124,-13,69,0.5480245687067509],[124,-13,70,0.5462338477373123],[124,-13,71,0.5439881980419159],[124,-13,72,0.5410012155771255],[124,-13,73,0.538486797362566],[124,-13,74,0.5372281931340694],[124,-13,75,0.5374746322631836],[124,-13,76,0.5397608205676079],[124,-13,77,0.5439331568777561],[124,-13,78,0.5489540994167328],[124,-13,79,0.5542717538774014],[124,-12,64,0.5387634225189686],[124,-12,65,0.5377905778586864],[124,-12,66,0.5385849215090275],[124,-12,67,0.5401056818664074],[124,-12,68,0.5409371890127659],[124,-12,69,0.5402120687067509],[124,-12,70,0.5384213477373123],[124,-12,71,0.5361756980419159],[124,-12,72,0.5331887155771255],[124,-12,73,0.530674297362566],[124,-12,74,0.5294156931340694],[124,-12,75,0.5296621322631836],[124,-12,76,0.5319483205676079],[124,-12,77,0.5361206568777561],[124,-12,78,0.5411415994167328],[124,-12,79,0.5464592538774014],[124,-11,64,0.5309509225189686],[124,-11,65,0.5299780778586864],[124,-11,66,0.5307724215090275],[124,-11,67,0.5322931818664074],[124,-11,68,0.5331246890127659],[124,-11,69,0.5323995687067509],[124,-11,70,0.5306088477373123],[124,-11,71,0.5283631980419159],[124,-11,72,0.5253762155771255],[124,-11,73,0.522861797362566],[124,-11,74,0.5216031931340694],[124,-11,75,0.5218496322631836],[124,-11,76,0.5241358205676079],[124,-11,77,0.5283081568777561],[124,-11,78,0.5333290994167328],[124,-11,79,0.5386467538774014],[124,-10,64,0.5231384225189686],[124,-10,65,0.5221655778586864],[124,-10,66,0.5229599215090275],[124,-10,67,0.5244806818664074],[124,-10,68,0.5253121890127659],[124,-10,69,0.5245870687067509],[124,-10,70,0.5227963477373123],[124,-10,71,0.5205506980419159],[124,-10,72,0.5175637155771255],[124,-10,73,0.515049297362566],[124,-10,74,0.5137906931340694],[124,-10,75,0.5140371322631836],[124,-10,76,0.5163233205676079],[124,-10,77,0.5204956568777561],[124,-10,78,0.5255165994167328],[124,-10,79,0.5308342538774014],[124,-9,64,0.5153259225189686],[124,-9,65,0.5143530778586864],[124,-9,66,0.5151474215090275],[124,-9,67,0.5166681818664074],[124,-9,68,0.5174996890127659],[124,-9,69,0.5167745687067509],[124,-9,70,0.5149838477373123],[124,-9,71,0.5127381980419159],[124,-9,72,0.5097512155771255],[124,-9,73,0.507236797362566],[124,-9,74,0.5059781931340694],[124,-9,75,0.5062246322631836],[124,-9,76,0.5085108205676079],[124,-9,77,0.5126831568777561],[124,-9,78,0.5177040994167328],[124,-9,79,0.5230217538774014],[124,-8,64,0.5075134225189686],[124,-8,65,0.5065405778586864],[124,-8,66,0.5073349215090275],[124,-8,67,0.5088556818664074],[124,-8,68,0.5096871890127659],[124,-8,69,0.5089620687067509],[124,-8,70,0.5071713477373123],[124,-8,71,0.5049256980419159],[124,-8,72,0.5019387155771255],[124,-8,73,0.499424297362566],[124,-8,74,0.49816569313406944],[124,-8,75,0.4984121322631836],[124,-8,76,0.5006983205676079],[124,-8,77,0.5048706568777561],[124,-8,78,0.5098915994167328],[124,-8,79,0.5152092538774014],[124,-7,64,0.4997009225189686],[124,-7,65,0.49872807785868645],[124,-7,66,0.4995224215090275],[124,-7,67,0.5010431818664074],[124,-7,68,0.5018746890127659],[124,-7,69,0.5011495687067509],[124,-7,70,0.4993588477373123],[124,-7,71,0.4971131980419159],[124,-7,72,0.49412621557712555],[124,-7,73,0.491611797362566],[124,-7,74,0.49035319313406944],[124,-7,75,0.4905996322631836],[124,-7,76,0.4928858205676079],[124,-7,77,0.4970581568777561],[124,-7,78,0.5020790994167328],[124,-7,79,0.5073967538774014],[124,-6,64,0.4918884225189686],[124,-6,65,0.49091557785868645],[124,-6,66,0.4917099215090275],[124,-6,67,0.4932306818664074],[124,-6,68,0.4940621890127659],[124,-6,69,0.49333706870675087],[124,-6,70,0.4915463477373123],[124,-6,71,0.4893006980419159],[124,-6,72,0.48631371557712555],[124,-6,73,0.483799297362566],[124,-6,74,0.48254069313406944],[124,-6,75,0.4827871322631836],[124,-6,76,0.4850733205676079],[124,-6,77,0.4892456568777561],[124,-6,78,0.4942665994167328],[124,-6,79,0.49958425387740135],[124,-5,64,0.4840759225189686],[124,-5,65,0.48310307785868645],[124,-5,66,0.4838974215090275],[124,-5,67,0.4854181818664074],[124,-5,68,0.4862496890127659],[124,-5,69,0.48552456870675087],[124,-5,70,0.4837338477373123],[124,-5,71,0.4814881980419159],[124,-5,72,0.47850121557712555],[124,-5,73,0.475986797362566],[124,-5,74,0.47472819313406944],[124,-5,75,0.4749746322631836],[124,-5,76,0.4772608205676079],[124,-5,77,0.4814331568777561],[124,-5,78,0.4864540994167328],[124,-5,79,0.49177175387740135],[124,-4,64,0.4762634225189686],[124,-4,65,0.47529057785868645],[124,-4,66,0.4760849215090275],[124,-4,67,0.4776056818664074],[124,-4,68,0.4784371890127659],[124,-4,69,0.47771206870675087],[124,-4,70,0.4759213477373123],[124,-4,71,0.4736756980419159],[124,-4,72,0.47068871557712555],[124,-4,73,0.468174297362566],[124,-4,74,0.46691569313406944],[124,-4,75,0.4671621322631836],[124,-4,76,0.4694483205676079],[124,-4,77,0.4736206568777561],[124,-4,78,0.4786415994167328],[124,-4,79,0.48395925387740135],[124,-3,64,0.4684509225189686],[124,-3,65,0.46747807785868645],[124,-3,66,0.4682724215090275],[124,-3,67,0.4697931818664074],[124,-3,68,0.4706246890127659],[124,-3,69,0.46989956870675087],[124,-3,70,0.4681088477373123],[124,-3,71,0.4658631980419159],[124,-3,72,0.46287621557712555],[124,-3,73,0.460361797362566],[124,-3,74,0.45910319313406944],[124,-3,75,0.4593496322631836],[124,-3,76,0.4616358205676079],[124,-3,77,0.4658081568777561],[124,-3,78,0.4708290994167328],[124,-3,79,0.47614675387740135],[124,-2,64,0.4606384225189686],[124,-2,65,0.45966557785868645],[124,-2,66,0.4604599215090275],[124,-2,67,0.4619806818664074],[124,-2,68,0.4628121890127659],[124,-2,69,0.46208706870675087],[124,-2,70,0.4602963477373123],[124,-2,71,0.4580506980419159],[124,-2,72,0.45506371557712555],[124,-2,73,0.452549297362566],[124,-2,74,0.45129069313406944],[124,-2,75,0.4515371322631836],[124,-2,76,0.4538233205676079],[124,-2,77,0.4579956568777561],[124,-2,78,0.4630165994167328],[124,-2,79,0.46833425387740135],[124,-1,64,0.4528259225189686],[124,-1,65,0.45185307785868645],[124,-1,66,0.4526474215090275],[124,-1,67,0.4541681818664074],[124,-1,68,0.4549996890127659],[124,-1,69,0.45427456870675087],[124,-1,70,0.4524838477373123],[124,-1,71,0.4502381980419159],[124,-1,72,0.44725121557712555],[124,-1,73,0.444736797362566],[124,-1,74,0.44347819313406944],[124,-1,75,0.4437246322631836],[124,-1,76,0.4460108205676079],[124,-1,77,0.4501831568777561],[124,-1,78,0.4552040994167328],[124,-1,79,0.46052175387740135],[124,0,64,0.4450134225189686],[124,0,65,0.44404057785868645],[124,0,66,0.4448349215090275],[124,0,67,0.4463556818664074],[124,0,68,0.4471871890127659],[124,0,69,0.44646206870675087],[124,0,70,0.4446713477373123],[124,0,71,0.4424256980419159],[124,0,72,0.43943871557712555],[124,0,73,0.436924297362566],[124,0,74,0.43566569313406944],[124,0,75,0.4359121322631836],[124,0,76,0.4381983205676079],[124,0,77,0.4423706568777561],[124,0,78,0.4473915994167328],[124,0,79,0.45270925387740135],[124,1,64,0.4372009225189686],[124,1,65,0.43622807785868645],[124,1,66,0.4370224215090275],[124,1,67,0.4385431818664074],[124,1,68,0.4393746890127659],[124,1,69,0.43864956870675087],[124,1,70,0.4368588477373123],[124,1,71,0.4346131980419159],[124,1,72,0.43162621557712555],[124,1,73,0.429111797362566],[124,1,74,0.42785319313406944],[124,1,75,0.4280996322631836],[124,1,76,0.4303858205676079],[124,1,77,0.4345581568777561],[124,1,78,0.4395790994167328],[124,1,79,0.44489675387740135],[124,2,64,0.4293884225189686],[124,2,65,0.42841557785868645],[124,2,66,0.4292099215090275],[124,2,67,0.4307306818664074],[124,2,68,0.4315621890127659],[124,2,69,0.43083706870675087],[124,2,70,0.4290463477373123],[124,2,71,0.4268006980419159],[124,2,72,0.42381371557712555],[124,2,73,0.421299297362566],[124,2,74,0.42004069313406944],[124,2,75,0.4202871322631836],[124,2,76,0.4225733205676079],[124,2,77,0.4267456568777561],[124,2,78,0.4317665994167328],[124,2,79,0.43708425387740135],[124,3,64,0.4215759225189686],[124,3,65,0.42060307785868645],[124,3,66,0.4213974215090275],[124,3,67,0.4229181818664074],[124,3,68,0.4237496890127659],[124,3,69,0.42302456870675087],[124,3,70,0.4212338477373123],[124,3,71,0.4189881980419159],[124,3,72,0.41600121557712555],[124,3,73,0.413486797362566],[124,3,74,0.41222819313406944],[124,3,75,0.4124746322631836],[124,3,76,0.4147608205676079],[124,3,77,0.4189331568777561],[124,3,78,0.4239540994167328],[124,3,79,0.42927175387740135],[124,4,64,0.4137634225189686],[124,4,65,0.41279057785868645],[124,4,66,0.4135849215090275],[124,4,67,0.4151056818664074],[124,4,68,0.4159371890127659],[124,4,69,0.41521206870675087],[124,4,70,0.4134213477373123],[124,4,71,0.4111756980419159],[124,4,72,0.40818871557712555],[124,4,73,0.405674297362566],[124,4,74,0.40441569313406944],[124,4,75,0.4046621322631836],[124,4,76,0.4069483205676079],[124,4,77,0.4111206568777561],[124,4,78,0.4161415994167328],[124,4,79,0.42145925387740135],[124,5,64,0.4059509225189686],[124,5,65,0.40497807785868645],[124,5,66,0.4057724215090275],[124,5,67,0.4072931818664074],[124,5,68,0.4081246890127659],[124,5,69,0.40739956870675087],[124,5,70,0.4056088477373123],[124,5,71,0.4033631980419159],[124,5,72,0.40037621557712555],[124,5,73,0.397861797362566],[124,5,74,0.39660319313406944],[124,5,75,0.3968496322631836],[124,5,76,0.3991358205676079],[124,5,77,0.4033081568777561],[124,5,78,0.4083290994167328],[124,5,79,0.41364675387740135],[124,6,64,0.3981384225189686],[124,6,65,0.39716557785868645],[124,6,66,0.3979599215090275],[124,6,67,0.3994806818664074],[124,6,68,0.4003121890127659],[124,6,69,0.39958706870675087],[124,6,70,0.3977963477373123],[124,6,71,0.3955506980419159],[124,6,72,0.39256371557712555],[124,6,73,0.390049297362566],[124,6,74,0.38879069313406944],[124,6,75,0.3890371322631836],[124,6,76,0.3913233205676079],[124,6,77,0.3954956568777561],[124,6,78,0.4005165994167328],[124,6,79,0.40583425387740135],[124,7,64,0.3903259225189686],[124,7,65,0.38935307785868645],[124,7,66,0.3901474215090275],[124,7,67,0.3916681818664074],[124,7,68,0.3924996890127659],[124,7,69,0.39177456870675087],[124,7,70,0.3899838477373123],[124,7,71,0.3877381980419159],[124,7,72,0.38475121557712555],[124,7,73,0.382236797362566],[124,7,74,0.38097819313406944],[124,7,75,0.3812246322631836],[124,7,76,0.3835108205676079],[124,7,77,0.3876831568777561],[124,7,78,0.3927040994167328],[124,7,79,0.39802175387740135],[124,8,64,0.3825134225189686],[124,8,65,0.38154057785868645],[124,8,66,0.3823349215090275],[124,8,67,0.3838556818664074],[124,8,68,0.3846871890127659],[124,8,69,0.38396206870675087],[124,8,70,0.3821713477373123],[124,8,71,0.3799256980419159],[124,8,72,0.37693871557712555],[124,8,73,0.374424297362566],[124,8,74,0.37316569313406944],[124,8,75,0.3734121322631836],[124,8,76,0.3756983205676079],[124,8,77,0.3798706568777561],[124,8,78,0.3848915994167328],[124,8,79,0.39020925387740135],[124,9,64,0.3747009225189686],[124,9,65,0.37372807785868645],[124,9,66,0.3745224215090275],[124,9,67,0.3760431818664074],[124,9,68,0.3768746890127659],[124,9,69,0.37614956870675087],[124,9,70,0.3743588477373123],[124,9,71,0.3721131980419159],[124,9,72,0.36912621557712555],[124,9,73,0.366611797362566],[124,9,74,0.36535319313406944],[124,9,75,0.3655996322631836],[124,9,76,0.3678858205676079],[124,9,77,0.3720581568777561],[124,9,78,0.3770790994167328],[124,9,79,0.38239675387740135],[124,10,64,0.3668884225189686],[124,10,65,0.36591557785868645],[124,10,66,0.3667099215090275],[124,10,67,0.3682306818664074],[124,10,68,0.3690621890127659],[124,10,69,0.36833706870675087],[124,10,70,0.3665463477373123],[124,10,71,0.3643006980419159],[124,10,72,0.36131371557712555],[124,10,73,0.358799297362566],[124,10,74,0.35754069313406944],[124,10,75,0.3577871322631836],[124,10,76,0.3600733205676079],[124,10,77,0.3642456568777561],[124,10,78,0.3692665994167328],[124,10,79,0.37458425387740135],[124,11,64,0.3590759225189686],[124,11,65,0.35810307785868645],[124,11,66,0.3588974215090275],[124,11,67,0.3604181818664074],[124,11,68,0.3612496890127659],[124,11,69,0.36052456870675087],[124,11,70,0.3587338477373123],[124,11,71,0.3564881980419159],[124,11,72,0.35350121557712555],[124,11,73,0.350986797362566],[124,11,74,0.34972819313406944],[124,11,75,0.3499746322631836],[124,11,76,0.3522608205676079],[124,11,77,0.3564331568777561],[124,11,78,0.3614540994167328],[124,11,79,0.36677175387740135],[124,12,64,0.3512634225189686],[124,12,65,0.35029057785868645],[124,12,66,0.3510849215090275],[124,12,67,0.3526056818664074],[124,12,68,0.3534371890127659],[124,12,69,0.35271206870675087],[124,12,70,0.3509213477373123],[124,12,71,0.3486756980419159],[124,12,72,0.34568871557712555],[124,12,73,0.343174297362566],[124,12,74,0.34191569313406944],[124,12,75,0.3421621322631836],[124,12,76,0.3444483205676079],[124,12,77,0.3486206568777561],[124,12,78,0.3536415994167328],[124,12,79,0.35895925387740135],[124,13,64,0.3434509225189686],[124,13,65,0.34247807785868645],[124,13,66,0.3432724215090275],[124,13,67,0.3447931818664074],[124,13,68,0.3456246890127659],[124,13,69,0.34489956870675087],[124,13,70,0.3431088477373123],[124,13,71,0.3408631980419159],[124,13,72,0.33787621557712555],[124,13,73,0.335361797362566],[124,13,74,0.33410319313406944],[124,13,75,0.3343496322631836],[124,13,76,0.3366358205676079],[124,13,77,0.3408081568777561],[124,13,78,0.3458290994167328],[124,13,79,0.35114675387740135],[124,14,64,0.3356384225189686],[124,14,65,0.33466557785868645],[124,14,66,0.3354599215090275],[124,14,67,0.3369806818664074],[124,14,68,0.3378121890127659],[124,14,69,0.33708706870675087],[124,14,70,0.3352963477373123],[124,14,71,0.3330506980419159],[124,14,72,0.33006371557712555],[124,14,73,0.327549297362566],[124,14,74,0.32629069313406944],[124,14,75,0.3265371322631836],[124,14,76,0.3288233205676079],[124,14,77,0.3329956568777561],[124,14,78,0.3380165994167328],[124,14,79,0.34333425387740135],[124,15,64,0.3278259225189686],[124,15,65,0.32685307785868645],[124,15,66,0.3276474215090275],[124,15,67,0.3291681818664074],[124,15,68,0.3299996890127659],[124,15,69,0.32927456870675087],[124,15,70,0.3274838477373123],[124,15,71,0.3252381980419159],[124,15,72,0.32225121557712555],[124,15,73,0.319736797362566],[124,15,74,0.31847819313406944],[124,15,75,0.3187246322631836],[124,15,76,0.3210108205676079],[124,15,77,0.3251831568777561],[124,15,78,0.3302040994167328],[124,15,79,0.33552175387740135],[124,16,64,0.3200134225189686],[124,16,65,0.31904057785868645],[124,16,66,0.3198349215090275],[124,16,67,0.3213556818664074],[124,16,68,0.3221871890127659],[124,16,69,0.32146206870675087],[124,16,70,0.3196713477373123],[124,16,71,0.3174256980419159],[124,16,72,0.31443871557712555],[124,16,73,0.311924297362566],[124,16,74,0.31066569313406944],[124,16,75,0.3109121322631836],[124,16,76,0.3131983205676079],[124,16,77,0.3173706568777561],[124,16,78,0.3223915994167328],[124,16,79,0.32770925387740135],[124,17,64,0.3122009225189686],[124,17,65,0.31122807785868645],[124,17,66,0.3120224215090275],[124,17,67,0.3135431818664074],[124,17,68,0.3143746890127659],[124,17,69,0.31364956870675087],[124,17,70,0.3118588477373123],[124,17,71,0.3096131980419159],[124,17,72,0.30662621557712555],[124,17,73,0.304111797362566],[124,17,74,0.30285319313406944],[124,17,75,0.3030996322631836],[124,17,76,0.3053858205676079],[124,17,77,0.3095581568777561],[124,17,78,0.3145790994167328],[124,17,79,0.31989675387740135],[124,18,64,0.3043884225189686],[124,18,65,0.30341557785868645],[124,18,66,0.3042099215090275],[124,18,67,0.3057306818664074],[124,18,68,0.3065621890127659],[124,18,69,0.30583706870675087],[124,18,70,0.3040463477373123],[124,18,71,0.3018006980419159],[124,18,72,0.29881371557712555],[124,18,73,0.296299297362566],[124,18,74,0.29504069313406944],[124,18,75,0.2952871322631836],[124,18,76,0.2975733205676079],[124,18,77,0.3017456568777561],[124,18,78,0.3067665994167328],[124,18,79,0.31208425387740135],[124,19,64,0.2965759225189686],[124,19,65,0.29560307785868645],[124,19,66,0.2963974215090275],[124,19,67,0.2979181818664074],[124,19,68,0.2987496890127659],[124,19,69,0.29802456870675087],[124,19,70,0.2962338477373123],[124,19,71,0.2939881980419159],[124,19,72,0.29100121557712555],[124,19,73,0.288486797362566],[124,19,74,0.28722819313406944],[124,19,75,0.2874746322631836],[124,19,76,0.2897608205676079],[124,19,77,0.2939331568777561],[124,19,78,0.2989540994167328],[124,19,79,0.30427175387740135],[124,20,64,0.2887634225189686],[124,20,65,0.28779057785868645],[124,20,66,0.2885849215090275],[124,20,67,0.2901056818664074],[124,20,68,0.2909371890127659],[124,20,69,0.29021206870675087],[124,20,70,0.2884213477373123],[124,20,71,0.2861756980419159],[124,20,72,0.28318871557712555],[124,20,73,0.280674297362566],[124,20,74,0.27941569313406944],[124,20,75,0.2796621322631836],[124,20,76,0.2819483205676079],[124,20,77,0.2861206568777561],[124,20,78,0.2911415994167328],[124,20,79,0.29645925387740135],[124,21,64,0.2809509225189686],[124,21,65,0.27997807785868645],[124,21,66,0.2807724215090275],[124,21,67,0.2822931818664074],[124,21,68,0.2831246890127659],[124,21,69,0.28239956870675087],[124,21,70,0.2806088477373123],[124,21,71,0.2783631980419159],[124,21,72,0.27537621557712555],[124,21,73,0.272861797362566],[124,21,74,0.27160319313406944],[124,21,75,0.2718496322631836],[124,21,76,0.2741358205676079],[124,21,77,0.2783081568777561],[124,21,78,0.2833290994167328],[124,21,79,0.28864675387740135],[124,22,64,0.2731384225189686],[124,22,65,0.27216557785868645],[124,22,66,0.2729599215090275],[124,22,67,0.2744806818664074],[124,22,68,0.2753121890127659],[124,22,69,0.27458706870675087],[124,22,70,0.2727963477373123],[124,22,71,0.2705506980419159],[124,22,72,0.26756371557712555],[124,22,73,0.265049297362566],[124,22,74,0.26379069313406944],[124,22,75,0.2640371322631836],[124,22,76,0.2663233205676079],[124,22,77,0.2704956568777561],[124,22,78,0.2755165994167328],[124,22,79,0.28083425387740135],[124,23,64,0.2653259225189686],[124,23,65,0.26435307785868645],[124,23,66,0.2651474215090275],[124,23,67,0.2666681818664074],[124,23,68,0.2674996890127659],[124,23,69,0.26677456870675087],[124,23,70,0.2649838477373123],[124,23,71,0.2627381980419159],[124,23,72,0.25975121557712555],[124,23,73,0.257236797362566],[124,23,74,0.25597819313406944],[124,23,75,0.2562246322631836],[124,23,76,0.2585108205676079],[124,23,77,0.2626831568777561],[124,23,78,0.2677040994167328],[124,23,79,0.27302175387740135],[124,24,64,0.2575134225189686],[124,24,65,0.25654057785868645],[124,24,66,0.2573349215090275],[124,24,67,0.2588556818664074],[124,24,68,0.2596871890127659],[124,24,69,0.25896206870675087],[124,24,70,0.2571713477373123],[124,24,71,0.2549256980419159],[124,24,72,0.25193871557712555],[124,24,73,0.249424297362566],[124,24,74,0.24816569313406944],[124,24,75,0.2484121322631836],[124,24,76,0.2506983205676079],[124,24,77,0.2548706568777561],[124,24,78,0.2598915994167328],[124,24,79,0.26520925387740135],[124,25,64,0.24970092251896858],[124,25,65,0.24872807785868645],[124,25,66,0.24952242150902748],[124,25,67,0.2510431818664074],[124,25,68,0.2518746890127659],[124,25,69,0.25114956870675087],[124,25,70,0.24935884773731232],[124,25,71,0.2471131980419159],[124,25,72,0.24412621557712555],[124,25,73,0.241611797362566],[124,25,74,0.24035319313406944],[124,25,75,0.2405996322631836],[124,25,76,0.24288582056760788],[124,25,77,0.24705815687775612],[124,25,78,0.2520790994167328],[124,25,79,0.25739675387740135],[124,26,64,0.24188842251896858],[124,26,65,0.24091557785868645],[124,26,66,0.24170992150902748],[124,26,67,0.2432306818664074],[124,26,68,0.24406218901276588],[124,26,69,0.24333706870675087],[124,26,70,0.24154634773731232],[124,26,71,0.2393006980419159],[124,26,72,0.23631371557712555],[124,26,73,0.233799297362566],[124,26,74,0.23254069313406944],[124,26,75,0.2327871322631836],[124,26,76,0.23507332056760788],[124,26,77,0.23924565687775612],[124,26,78,0.2442665994167328],[124,26,79,0.24958425387740135],[124,27,64,0.23407592251896858],[124,27,65,0.23310307785868645],[124,27,66,0.23389742150902748],[124,27,67,0.2354181818664074],[124,27,68,0.23624968901276588],[124,27,69,0.23552456870675087],[124,27,70,0.23373384773731232],[124,27,71,0.2314881980419159],[124,27,72,0.22850121557712555],[124,27,73,0.225986797362566],[124,27,74,0.22472819313406944],[124,27,75,0.2249746322631836],[124,27,76,0.22726082056760788],[124,27,77,0.23143315687775612],[124,27,78,0.2364540994167328],[124,27,79,0.24177175387740135],[124,28,64,0.22626342251896858],[124,28,65,0.22529057785868645],[124,28,66,0.22608492150902748],[124,28,67,0.2276056818664074],[124,28,68,0.22843718901276588],[124,28,69,0.22771206870675087],[124,28,70,0.22592134773731232],[124,28,71,0.2236756980419159],[124,28,72,0.22068871557712555],[124,28,73,0.218174297362566],[124,28,74,0.21691569313406944],[124,28,75,0.2171621322631836],[124,28,76,0.21944832056760788],[124,28,77,0.22362065687775612],[124,28,78,0.2286415994167328],[124,28,79,0.23395925387740135],[124,29,64,0.21845092251896858],[124,29,65,0.21747807785868645],[124,29,66,0.21827242150902748],[124,29,67,0.2197931818664074],[124,29,68,0.22062468901276588],[124,29,69,0.21989956870675087],[124,29,70,0.21810884773731232],[124,29,71,0.2158631980419159],[124,29,72,0.21287621557712555],[124,29,73,0.210361797362566],[124,29,74,0.20910319313406944],[124,29,75,0.2093496322631836],[124,29,76,0.21163582056760788],[124,29,77,0.21580815687775612],[124,29,78,0.2208290994167328],[124,29,79,0.22614675387740135],[124,30,64,0.21063842251896858],[124,30,65,0.20966557785868645],[124,30,66,0.21045992150902748],[124,30,67,0.2119806818664074],[124,30,68,0.21281218901276588],[124,30,69,0.21208706870675087],[124,30,70,0.21029634773731232],[124,30,71,0.2080506980419159],[124,30,72,0.20506371557712555],[124,30,73,0.202549297362566],[124,30,74,0.20129069313406944],[124,30,75,0.2015371322631836],[124,30,76,0.20382332056760788],[124,30,77,0.20799565687775612],[124,30,78,0.2130165994167328],[124,30,79,0.21833425387740135],[124,31,64,0.20282592251896858],[124,31,65,0.20185307785868645],[124,31,66,0.20264742150902748],[124,31,67,0.2041681818664074],[124,31,68,0.20499968901276588],[124,31,69,0.20427456870675087],[124,31,70,0.20248384773731232],[124,31,71,0.2002381980419159],[124,31,72,0.19725121557712555],[124,31,73,0.194736797362566],[124,31,74,0.19347819313406944],[124,31,75,0.1937246322631836],[124,31,76,0.19601082056760788],[124,31,77,0.20018315687775612],[124,31,78,0.2052040994167328],[124,31,79,0.21052175387740135],[124,32,64,0.19501342251896858],[124,32,65,0.19404057785868645],[124,32,66,0.19483492150902748],[124,32,67,0.1963556818664074],[124,32,68,0.19718718901276588],[124,32,69,0.19646206870675087],[124,32,70,0.19467134773731232],[124,32,71,0.1924256980419159],[124,32,72,0.18943871557712555],[124,32,73,0.186924297362566],[124,32,74,0.18566569313406944],[124,32,75,0.1859121322631836],[124,32,76,0.18819832056760788],[124,32,77,0.19237065687775612],[124,32,78,0.1973915994167328],[124,32,79,0.20270925387740135],[124,33,64,0.18720092251896858],[124,33,65,0.18622807785868645],[124,33,66,0.18702242150902748],[124,33,67,0.1885431818664074],[124,33,68,0.18937468901276588],[124,33,69,0.18864956870675087],[124,33,70,0.18685884773731232],[124,33,71,0.1846131980419159],[124,33,72,0.18162621557712555],[124,33,73,0.179111797362566],[124,33,74,0.17785319313406944],[124,33,75,0.1780996322631836],[124,33,76,0.18038582056760788],[124,33,77,0.18455815687775612],[124,33,78,0.1895790994167328],[124,33,79,0.19489675387740135],[124,34,64,0.17938842251896858],[124,34,65,0.17841557785868645],[124,34,66,0.17920992150902748],[124,34,67,0.1807306818664074],[124,34,68,0.18156218901276588],[124,34,69,0.18083706870675087],[124,34,70,0.17904634773731232],[124,34,71,0.1768006980419159],[124,34,72,0.17381371557712555],[124,34,73,0.171299297362566],[124,34,74,0.17004069313406944],[124,34,75,0.1702871322631836],[124,34,76,0.17257332056760788],[124,34,77,0.17674565687775612],[124,34,78,0.1817665994167328],[124,34,79,0.18708425387740135],[124,35,64,0.17157592251896858],[124,35,65,0.17060307785868645],[124,35,66,0.17139742150902748],[124,35,67,0.1729181818664074],[124,35,68,0.17374968901276588],[124,35,69,0.17302456870675087],[124,35,70,0.17123384773731232],[124,35,71,0.1689881980419159],[124,35,72,0.16600121557712555],[124,35,73,0.163486797362566],[124,35,74,0.16222819313406944],[124,35,75,0.1624746322631836],[124,35,76,0.16476082056760788],[124,35,77,0.16893315687775612],[124,35,78,0.1739540994167328],[124,35,79,0.17927175387740135],[124,36,64,0.16376342251896858],[124,36,65,0.16279057785868645],[124,36,66,0.16358492150902748],[124,36,67,0.1651056818664074],[124,36,68,0.16593718901276588],[124,36,69,0.16521206870675087],[124,36,70,0.16342134773731232],[124,36,71,0.1611756980419159],[124,36,72,0.15818871557712555],[124,36,73,0.155674297362566],[124,36,74,0.15441569313406944],[124,36,75,0.1546621322631836],[124,36,76,0.15694832056760788],[124,36,77,0.16112065687775612],[124,36,78,0.1661415994167328],[124,36,79,0.17145925387740135],[124,37,64,0.15595092251896858],[124,37,65,0.15497807785868645],[124,37,66,0.15577242150902748],[124,37,67,0.1572931818664074],[124,37,68,0.15812468901276588],[124,37,69,0.15739956870675087],[124,37,70,0.15560884773731232],[124,37,71,0.1533631980419159],[124,37,72,0.15037621557712555],[124,37,73,0.147861797362566],[124,37,74,0.14660319313406944],[124,37,75,0.1468496322631836],[124,37,76,0.14913582056760788],[124,37,77,0.15330815687775612],[124,37,78,0.1583290994167328],[124,37,79,0.16364675387740135],[124,38,64,0.14813842251896858],[124,38,65,0.14716557785868645],[124,38,66,0.14795992150902748],[124,38,67,0.1494806818664074],[124,38,68,0.15031218901276588],[124,38,69,0.14958706870675087],[124,38,70,0.14779634773731232],[124,38,71,0.1455506980419159],[124,38,72,0.14256371557712555],[124,38,73,0.140049297362566],[124,38,74,0.13879069313406944],[124,38,75,0.1390371322631836],[124,38,76,0.14132332056760788],[124,38,77,0.14549565687775612],[124,38,78,0.1505165994167328],[124,38,79,0.15583425387740135],[124,39,64,0.14032592251896858],[124,39,65,0.13935307785868645],[124,39,66,0.14014742150902748],[124,39,67,0.1416681818664074],[124,39,68,0.14249968901276588],[124,39,69,0.14177456870675087],[124,39,70,0.13998384773731232],[124,39,71,0.1377381980419159],[124,39,72,0.13475121557712555],[124,39,73,0.132236797362566],[124,39,74,0.13097819313406944],[124,39,75,0.1312246322631836],[124,39,76,0.13351082056760788],[124,39,77,0.13768315687775612],[124,39,78,0.1427040994167328],[124,39,79,0.14802175387740135],[124,40,64,0.13251342251896858],[124,40,65,0.13154057785868645],[124,40,66,0.13233492150902748],[124,40,67,0.1338556818664074],[124,40,68,0.13468718901276588],[124,40,69,0.13396206870675087],[124,40,70,0.13217134773731232],[124,40,71,0.1299256980419159],[124,40,72,0.12693871557712555],[124,40,73,0.124424297362566],[124,40,74,0.12316569313406944],[124,40,75,0.1234121322631836],[124,40,76,0.12569832056760788],[124,40,77,0.12987065687775612],[124,40,78,0.1348915994167328],[124,40,79,0.14020925387740135],[124,41,64,0.12470092251896858],[124,41,65,0.12372807785868645],[124,41,66,0.12452242150902748],[124,41,67,0.1260431818664074],[124,41,68,0.12687468901276588],[124,41,69,0.12614956870675087],[124,41,70,0.12435884773731232],[124,41,71,0.1221131980419159],[124,41,72,0.11912621557712555],[124,41,73,0.116611797362566],[124,41,74,0.11535319313406944],[124,41,75,0.1155996322631836],[124,41,76,0.11788582056760788],[124,41,77,0.12205815687775612],[124,41,78,0.1270790994167328],[124,41,79,0.13239675387740135],[124,42,64,0.11688842251896858],[124,42,65,0.11591557785868645],[124,42,66,0.11670992150902748],[124,42,67,0.1182306818664074],[124,42,68,0.11906218901276588],[124,42,69,0.11833706870675087],[124,42,70,0.11654634773731232],[124,42,71,0.1143006980419159],[124,42,72,0.11131371557712555],[124,42,73,0.108799297362566],[124,42,74,0.10754069313406944],[124,42,75,0.1077871322631836],[124,42,76,0.11007332056760788],[124,42,77,0.11424565687775612],[124,42,78,0.11926659941673279],[124,42,79,0.12458425387740135],[124,43,64,0.10907592251896858],[124,43,65,0.10810307785868645],[124,43,66,0.10889742150902748],[124,43,67,0.1104181818664074],[124,43,68,0.11124968901276588],[124,43,69,0.11052456870675087],[124,43,70,0.10873384773731232],[124,43,71,0.1064881980419159],[124,43,72,0.10350121557712555],[124,43,73,0.100986797362566],[124,43,74,0.09972819313406944],[124,43,75,0.0999746322631836],[124,43,76,0.10226082056760788],[124,43,77,0.10643315687775612],[124,43,78,0.11145409941673279],[124,43,79,0.11677175387740135],[124,44,64,0.10126342251896858],[124,44,65,0.10029057785868645],[124,44,66,0.10108492150902748],[124,44,67,0.1026056818664074],[124,44,68,0.10343718901276588],[124,44,69,0.10271206870675087],[124,44,70,0.10092134773731232],[124,44,71,0.0986756980419159],[124,44,72,0.09568871557712555],[124,44,73,0.093174297362566],[124,44,74,0.09191569313406944],[124,44,75,0.0921621322631836],[124,44,76,0.09444832056760788],[124,44,77,0.09862065687775612],[124,44,78,0.10364159941673279],[124,44,79,0.10895925387740135],[124,45,64,0.09345092251896858],[124,45,65,0.09247807785868645],[124,45,66,0.09327242150902748],[124,45,67,0.0947931818664074],[124,45,68,0.09562468901276588],[124,45,69,0.09489956870675087],[124,45,70,0.09310884773731232],[124,45,71,0.0908631980419159],[124,45,72,0.08787621557712555],[124,45,73,0.085361797362566],[124,45,74,0.08410319313406944],[124,45,75,0.0843496322631836],[124,45,76,0.08663582056760788],[124,45,77,0.09080815687775612],[124,45,78,0.09582909941673279],[124,45,79,0.10114675387740135],[124,46,64,0.08563842251896858],[124,46,65,0.08466557785868645],[124,46,66,0.08545992150902748],[124,46,67,0.0869806818664074],[124,46,68,0.08781218901276588],[124,46,69,0.08708706870675087],[124,46,70,0.08529634773731232],[124,46,71,0.0830506980419159],[124,46,72,0.08006371557712555],[124,46,73,0.077549297362566],[124,46,74,0.07629069313406944],[124,46,75,0.0765371322631836],[124,46,76,0.07882332056760788],[124,46,77,0.08299565687775612],[124,46,78,0.08801659941673279],[124,46,79,0.09333425387740135],[124,47,64,0.07782592251896858],[124,47,65,0.07685307785868645],[124,47,66,0.07764742150902748],[124,47,67,0.0791681818664074],[124,47,68,0.07999968901276588],[124,47,69,0.07927456870675087],[124,47,70,0.07748384773731232],[124,47,71,0.0752381980419159],[124,47,72,0.07225121557712555],[124,47,73,0.069736797362566],[124,47,74,0.06847819313406944],[124,47,75,0.0687246322631836],[124,47,76,0.07101082056760788],[124,47,77,0.07518315687775612],[124,47,78,0.08020409941673279],[124,47,79,0.08552175387740135],[124,48,64,0.07001342251896858],[124,48,65,0.06904057785868645],[124,48,66,0.06983492150902748],[124,48,67,0.0713556818664074],[124,48,68,0.07218718901276588],[124,48,69,0.07146206870675087],[124,48,70,0.06967134773731232],[124,48,71,0.0674256980419159],[124,48,72,0.06443871557712555],[124,48,73,0.061924297362565994],[124,48,74,0.06066569313406944],[124,48,75,0.060912132263183594],[124,48,76,0.06319832056760788],[124,48,77,0.06737065687775612],[124,48,78,0.07239159941673279],[124,48,79,0.07770925387740135],[124,49,64,0.06220092251896858],[124,49,65,0.06122807785868645],[124,49,66,0.06202242150902748],[124,49,67,0.0635431818664074],[124,49,68,0.06437468901276588],[124,49,69,0.06364956870675087],[124,49,70,0.06185884773731232],[124,49,71,0.059613198041915894],[124,49,72,0.05662621557712555],[124,49,73,0.054111797362565994],[124,49,74,0.05285319313406944],[124,49,75,0.053099632263183594],[124,49,76,0.05538582056760788],[124,49,77,0.05955815687775612],[124,49,78,0.06457909941673279],[124,49,79,0.06989675387740135],[124,50,64,0.05438842251896858],[124,50,65,0.05341557785868645],[124,50,66,0.05420992150902748],[124,50,67,0.055730681866407394],[124,50,68,0.056562189012765884],[124,50,69,0.05583706870675087],[124,50,70,0.05404634773731232],[124,50,71,0.051800698041915894],[124,50,72,0.04881371557712555],[124,50,73,0.046299297362565994],[124,50,74,0.04504069313406944],[124,50,75,0.045287132263183594],[124,50,76,0.04757332056760788],[124,50,77,0.05174565687775612],[124,50,78,0.05676659941673279],[124,50,79,0.06208425387740135],[124,51,64,0.04657592251896858],[124,51,65,0.04560307785868645],[124,51,66,0.04639742150902748],[124,51,67,0.047918181866407394],[124,51,68,0.048749689012765884],[124,51,69,0.04802456870675087],[124,51,70,0.04623384773731232],[124,51,71,0.043988198041915894],[124,51,72,0.04100121557712555],[124,51,73,0.038486797362565994],[124,51,74,0.03722819313406944],[124,51,75,0.037474632263183594],[124,51,76,0.03976082056760788],[124,51,77,0.04393315687775612],[124,51,78,0.04895409941673279],[124,51,79,0.05427175387740135],[124,52,64,0.03876342251896858],[124,52,65,0.03779057785868645],[124,52,66,0.03858492150902748],[124,52,67,0.040105681866407394],[124,52,68,0.040937189012765884],[124,52,69,0.04021206870675087],[124,52,70,0.03842134773731232],[124,52,71,0.036175698041915894],[124,52,72,0.03318871557712555],[124,52,73,0.030674297362565994],[124,52,74,0.029415693134069443],[124,52,75,0.029662132263183594],[124,52,76,0.03194832056760788],[124,52,77,0.03612065687775612],[124,52,78,0.04114159941673279],[124,52,79,0.04645925387740135],[124,53,64,0.030950922518968582],[124,53,65,0.029978077858686447],[124,53,66,0.03077242150902748],[124,53,67,0.032293181866407394],[124,53,68,0.033124689012765884],[124,53,69,0.03239956870675087],[124,53,70,0.030608847737312317],[124,53,71,0.028363198041915894],[124,53,72,0.02537621557712555],[124,53,73,0.022861797362565994],[124,53,74,0.021603193134069443],[124,53,75,0.021849632263183594],[124,53,76,0.02413582056760788],[124,53,77,0.02830815687775612],[124,53,78,0.03332909941673279],[124,53,79,0.03864675387740135],[124,54,64,0.023138422518968582],[124,54,65,0.022165577858686447],[124,54,66,0.02295992150902748],[124,54,67,0.024480681866407394],[124,54,68,0.025312189012765884],[124,54,69,0.02458706870675087],[124,54,70,0.022796347737312317],[124,54,71,0.020550698041915894],[124,54,72,0.01756371557712555],[124,54,73,0.015049297362565994],[124,54,74,0.013790693134069443],[124,54,75,0.014037132263183594],[124,54,76,0.01632332056760788],[124,54,77,0.02049565687775612],[124,54,78,0.025516599416732788],[124,54,79,0.030834253877401352],[124,55,64,0.015325922518968582],[124,55,65,0.014353077858686447],[124,55,66,0.015147421509027481],[124,55,67,0.016668181866407394],[124,55,68,0.017499689012765884],[124,55,69,0.01677456870675087],[124,55,70,0.014983847737312317],[124,55,71,0.012738198041915894],[124,55,72,0.00975121557712555],[124,55,73,0.007236797362565994],[124,55,74,0.005978193134069443],[124,55,75,0.006224632263183594],[124,55,76,0.00851082056760788],[124,55,77,0.012683156877756119],[124,55,78,0.017704099416732788],[124,55,79,0.023021753877401352],[124,56,64,0.007513422518968582],[124,56,65,0.006540577858686447],[124,56,66,0.007334921509027481],[124,56,67,0.008855681866407394],[124,56,68,0.009687189012765884],[124,56,69,0.00896206870675087],[124,56,70,0.007171347737312317],[124,56,71,0.0049256980419158936],[124,56,72,0.0019387155771255493],[124,56,73,-5.757026374340057E-4],[124,56,74,-0.0018343068659305573],[124,56,75,-0.0015878677368164062],[124,56,76,6.983205676078796E-4],[124,56,77,0.004870656877756119],[124,56,78,0.009891599416732788],[124,56,79,0.015209253877401352],[124,57,64,-2.9907748103141785E-4],[124,57,65,-0.0012719221413135529],[124,57,66,-4.775784909725189E-4],[124,57,67,0.0010431818664073944],[124,57,68,0.0018746890127658844],[124,57,69,0.0011495687067508698],[124,57,70,-6.411522626876831E-4],[124,57,71,-0.0028868019580841064],[124,57,72,-0.005873784422874451],[124,57,73,-0.008388202637434006],[124,57,74,-0.009646806865930557],[124,57,75,-0.009400367736816406],[124,57,76,-0.00711417943239212],[124,57,77,-0.0029418431222438812],[124,57,78,0.002079099416732788],[124,57,79,0.007396753877401352],[124,58,64,-0.008111577481031418],[124,58,65,-0.009084422141313553],[124,58,66,-0.008290078490972519],[124,58,67,-0.006769318133592606],[124,58,68,-0.005937810987234116],[124,58,69,-0.00666293129324913],[124,58,70,-0.008453652262687683],[124,58,71,-0.010699301958084106],[124,58,72,-0.01368628442287445],[124,58,73,-0.016200702637434006],[124,58,74,-0.017459306865930557],[124,58,75,-0.017212867736816406],[124,58,76,-0.01492667943239212],[124,58,77,-0.010754343122243881],[124,58,78,-0.005733400583267212],[124,58,79,-4.1574612259864807E-4],[124,59,64,-0.015924077481031418],[124,59,65,-0.016896922141313553],[124,59,66,-0.01610257849097252],[124,59,67,-0.014581818133592606],[124,59,68,-0.013750310987234116],[124,59,69,-0.01447543129324913],[124,59,70,-0.016266152262687683],[124,59,71,-0.018511801958084106],[124,59,72,-0.02149878442287445],[124,59,73,-0.024013202637434006],[124,59,74,-0.025271806865930557],[124,59,75,-0.025025367736816406],[124,59,76,-0.02273917943239212],[124,59,77,-0.01856684312224388],[124,59,78,-0.013545900583267212],[124,59,79,-0.008228246122598648],[124,60,64,-0.023736577481031418],[124,60,65,-0.024709422141313553],[124,60,66,-0.02391507849097252],[124,60,67,-0.022394318133592606],[124,60,68,-0.021562810987234116],[124,60,69,-0.02228793129324913],[124,60,70,-0.024078652262687683],[124,60,71,-0.026324301958084106],[124,60,72,-0.02931128442287445],[124,60,73,-0.031825702637434006],[124,60,74,-0.03308430686593056],[124,60,75,-0.032837867736816406],[124,60,76,-0.03055167943239212],[124,60,77,-0.02637934312224388],[124,60,78,-0.021358400583267212],[124,60,79,-0.016040746122598648],[124,61,64,-0.03154907748103142],[124,61,65,-0.03252192214131355],[124,61,66,-0.03172757849097252],[124,61,67,-0.030206818133592606],[124,61,68,-0.029375310987234116],[124,61,69,-0.03010043129324913],[124,61,70,-0.03189115226268768],[124,61,71,-0.034136801958084106],[124,61,72,-0.03712378442287445],[124,61,73,-0.039638202637434006],[124,61,74,-0.04089680686593056],[124,61,75,-0.040650367736816406],[124,61,76,-0.03836417943239212],[124,61,77,-0.03419184312224388],[124,61,78,-0.029170900583267212],[124,61,79,-0.023853246122598648],[124,62,64,-0.03936157748103142],[124,62,65,-0.04033442214131355],[124,62,66,-0.03954007849097252],[124,62,67,-0.038019318133592606],[124,62,68,-0.037187810987234116],[124,62,69,-0.03791293129324913],[124,62,70,-0.03970365226268768],[124,62,71,-0.041949301958084106],[124,62,72,-0.04493628442287445],[124,62,73,-0.047450702637434006],[124,62,74,-0.04870930686593056],[124,62,75,-0.048462867736816406],[124,62,76,-0.04617667943239212],[124,62,77,-0.04200434312224388],[124,62,78,-0.03698340058326721],[124,62,79,-0.03166574612259865],[124,63,64,-0.04717407748103142],[124,63,65,-0.04814692214131355],[124,63,66,-0.04735257849097252],[124,63,67,-0.045831818133592606],[124,63,68,-0.045000310987234116],[124,63,69,-0.04572543129324913],[124,63,70,-0.04751615226268768],[124,63,71,-0.049761801958084106],[124,63,72,-0.05274878442287445],[124,63,73,-0.055263202637434006],[124,63,74,-0.05652180686593056],[124,63,75,-0.056275367736816406],[124,63,76,-0.05398917943239212],[124,63,77,-0.04981684312224388],[124,63,78,-0.04479590058326721],[124,63,79,-0.03947824612259865],[124,64,64,-0.05498657748103142],[124,64,65,-0.05595942214131355],[124,64,66,-0.05516507849097252],[124,64,67,-0.053644318133592606],[124,64,68,-0.052812810987234116],[124,64,69,-0.05353793129324913],[124,64,70,-0.05532865226268768],[124,64,71,-0.057574301958084106],[124,64,72,-0.06056128442287445],[124,64,73,-0.063075702637434],[124,64,74,-0.06433430686593056],[124,64,75,-0.0640878677368164],[124,64,76,-0.06180167943239212],[124,64,77,-0.05762934312224388],[124,64,78,-0.05260840058326721],[124,64,79,-0.04729074612259865],[124,65,64,-0.06279907748103142],[124,65,65,-0.06377192214131355],[124,65,66,-0.06297757849097252],[124,65,67,-0.061456818133592606],[124,65,68,-0.060625310987234116],[124,65,69,-0.06135043129324913],[124,65,70,-0.06314115226268768],[124,65,71,-0.0653868019580841],[124,65,72,-0.06837378442287445],[124,65,73,-0.070888202637434],[124,65,74,-0.07214680686593056],[124,65,75,-0.0719003677368164],[124,65,76,-0.06961417943239212],[124,65,77,-0.06544184312224388],[124,65,78,-0.06042090058326721],[124,65,79,-0.05510324612259865],[124,66,64,-0.07061157748103142],[124,66,65,-0.07158442214131355],[124,66,66,-0.07079007849097252],[124,66,67,-0.0692693181335926],[124,66,68,-0.06843781098723412],[124,66,69,-0.06916293129324913],[124,66,70,-0.07095365226268768],[124,66,71,-0.0731993019580841],[124,66,72,-0.07618628442287445],[124,66,73,-0.078700702637434],[124,66,74,-0.07995930686593056],[124,66,75,-0.0797128677368164],[124,66,76,-0.07742667943239212],[124,66,77,-0.07325434312224388],[124,66,78,-0.06823340058326721],[124,66,79,-0.06291574612259865],[124,67,64,-0.07842407748103142],[124,67,65,-0.07939692214131355],[124,67,66,-0.07860257849097252],[124,67,67,-0.0770818181335926],[124,67,68,-0.07625031098723412],[124,67,69,-0.07697543129324913],[124,67,70,-0.07876615226268768],[124,67,71,-0.0810118019580841],[124,67,72,-0.08399878442287445],[124,67,73,-0.086513202637434],[124,67,74,-0.08777180686593056],[124,67,75,-0.0875253677368164],[124,67,76,-0.08523917943239212],[124,67,77,-0.08106684312224388],[124,67,78,-0.07604590058326721],[124,67,79,-0.07072824612259865],[124,68,64,-0.08623657748103142],[124,68,65,-0.08720942214131355],[124,68,66,-0.08641507849097252],[124,68,67,-0.0848943181335926],[124,68,68,-0.08406281098723412],[124,68,69,-0.08478793129324913],[124,68,70,-0.08657865226268768],[124,68,71,-0.0888243019580841],[124,68,72,-0.09181128442287445],[124,68,73,-0.094325702637434],[124,68,74,-0.09558430686593056],[124,68,75,-0.0953378677368164],[124,68,76,-0.09305167943239212],[124,68,77,-0.08887934312224388],[124,68,78,-0.08385840058326721],[124,68,79,-0.07854074612259865],[124,69,64,-0.09404907748103142],[124,69,65,-0.09502192214131355],[124,69,66,-0.09422757849097252],[124,69,67,-0.0927068181335926],[124,69,68,-0.09187531098723412],[124,69,69,-0.09260043129324913],[124,69,70,-0.09439115226268768],[124,69,71,-0.0966368019580841],[124,69,72,-0.09962378442287445],[124,69,73,-0.102138202637434],[124,69,74,-0.10339680686593056],[124,69,75,-0.1031503677368164],[124,69,76,-0.10086417943239212],[124,69,77,-0.09669184312224388],[124,69,78,-0.09167090058326721],[124,69,79,-0.08635324612259865],[124,70,64,-0.10186157748103142],[124,70,65,-0.10283442214131355],[124,70,66,-0.10204007849097252],[124,70,67,-0.1005193181335926],[124,70,68,-0.09968781098723412],[124,70,69,-0.10041293129324913],[124,70,70,-0.10220365226268768],[124,70,71,-0.1044493019580841],[124,70,72,-0.10743628442287445],[124,70,73,-0.109950702637434],[124,70,74,-0.11120930686593056],[124,70,75,-0.1109628677368164],[124,70,76,-0.10867667943239212],[124,70,77,-0.10450434312224388],[124,70,78,-0.09948340058326721],[124,70,79,-0.09416574612259865],[124,71,64,-0.10967407748103142],[124,71,65,-0.11064692214131355],[124,71,66,-0.10985257849097252],[124,71,67,-0.1083318181335926],[124,71,68,-0.10750031098723412],[124,71,69,-0.10822543129324913],[124,71,70,-0.11001615226268768],[124,71,71,-0.1122618019580841],[124,71,72,-0.11524878442287445],[124,71,73,-0.117763202637434],[124,71,74,-0.11902180686593056],[124,71,75,-0.1187753677368164],[124,71,76,-0.11648917943239212],[124,71,77,-0.11231684312224388],[124,71,78,-0.10729590058326721],[124,71,79,-0.10197824612259865],[124,72,64,-0.11748657748103142],[124,72,65,-0.11845942214131355],[124,72,66,-0.11766507849097252],[124,72,67,-0.1161443181335926],[124,72,68,-0.11531281098723412],[124,72,69,-0.11603793129324913],[124,72,70,-0.11782865226268768],[124,72,71,-0.1200743019580841],[124,72,72,-0.12306128442287445],[124,72,73,-0.125575702637434],[124,72,74,-0.12683430686593056],[124,72,75,-0.1265878677368164],[124,72,76,-0.12430167943239212],[124,72,77,-0.12012934312224388],[124,72,78,-0.11510840058326721],[124,72,79,-0.10979074612259865],[124,73,64,-0.12529907748103142],[124,73,65,-0.12627192214131355],[124,73,66,-0.12547757849097252],[124,73,67,-0.1239568181335926],[124,73,68,-0.12312531098723412],[124,73,69,-0.12385043129324913],[124,73,70,-0.12564115226268768],[124,73,71,-0.1278868019580841],[124,73,72,-0.13087378442287445],[124,73,73,-0.133388202637434],[124,73,74,-0.13464680686593056],[124,73,75,-0.1344003677368164],[124,73,76,-0.13211417943239212],[124,73,77,-0.12794184312224388],[124,73,78,-0.12292090058326721],[124,73,79,-0.11760324612259865],[124,74,64,-0.13311157748103142],[124,74,65,-0.13408442214131355],[124,74,66,-0.13329007849097252],[124,74,67,-0.1317693181335926],[124,74,68,-0.13093781098723412],[124,74,69,-0.13166293129324913],[124,74,70,-0.13345365226268768],[124,74,71,-0.1356993019580841],[124,74,72,-0.13868628442287445],[124,74,73,-0.141200702637434],[124,74,74,-0.14245930686593056],[124,74,75,-0.1422128677368164],[124,74,76,-0.13992667943239212],[124,74,77,-0.13575434312224388],[124,74,78,-0.1307334005832672],[124,74,79,-0.12541574612259865],[124,75,64,-0.14092407748103142],[124,75,65,-0.14189692214131355],[124,75,66,-0.14110257849097252],[124,75,67,-0.1395818181335926],[124,75,68,-0.13875031098723412],[124,75,69,-0.13947543129324913],[124,75,70,-0.14126615226268768],[124,75,71,-0.1435118019580841],[124,75,72,-0.14649878442287445],[124,75,73,-0.149013202637434],[124,75,74,-0.15027180686593056],[124,75,75,-0.1500253677368164],[124,75,76,-0.14773917943239212],[124,75,77,-0.14356684312224388],[124,75,78,-0.1385459005832672],[124,75,79,-0.13322824612259865],[124,76,64,-0.14873657748103142],[124,76,65,-0.14970942214131355],[124,76,66,-0.14891507849097252],[124,76,67,-0.1473943181335926],[124,76,68,-0.14656281098723412],[124,76,69,-0.14728793129324913],[124,76,70,-0.14907865226268768],[124,76,71,-0.1513243019580841],[124,76,72,-0.15431128442287445],[124,76,73,-0.156825702637434],[124,76,74,-0.15808430686593056],[124,76,75,-0.1578378677368164],[124,76,76,-0.15555167943239212],[124,76,77,-0.15137934312224388],[124,76,78,-0.1463584005832672],[124,76,79,-0.14104074612259865],[124,77,64,-0.15654907748103142],[124,77,65,-0.15752192214131355],[124,77,66,-0.15672757849097252],[124,77,67,-0.1552068181335926],[124,77,68,-0.15437531098723412],[124,77,69,-0.15510043129324913],[124,77,70,-0.15689115226268768],[124,77,71,-0.1591368019580841],[124,77,72,-0.16212378442287445],[124,77,73,-0.164638202637434],[124,77,74,-0.16589680686593056],[124,77,75,-0.1656503677368164],[124,77,76,-0.16336417943239212],[124,77,77,-0.15919184312224388],[124,77,78,-0.1541709005832672],[124,77,79,-0.14885324612259865],[124,78,64,-0.16436157748103142],[124,78,65,-0.16533442214131355],[124,78,66,-0.16454007849097252],[124,78,67,-0.1630193181335926],[124,78,68,-0.16218781098723412],[124,78,69,-0.16291293129324913],[124,78,70,-0.16470365226268768],[124,78,71,-0.1669493019580841],[124,78,72,-0.16993628442287445],[124,78,73,-0.172450702637434],[124,78,74,-0.17370930686593056],[124,78,75,-0.1734628677368164],[124,78,76,-0.17117667943239212],[124,78,77,-0.16700434312224388],[124,78,78,-0.1619834005832672],[124,78,79,-0.15666574612259865],[124,79,64,-0.17217407748103142],[124,79,65,-0.17314692214131355],[124,79,66,-0.17235257849097252],[124,79,67,-0.1708318181335926],[124,79,68,-0.17000031098723412],[124,79,69,-0.17072543129324913],[124,79,70,-0.17251615226268768],[124,79,71,-0.1747618019580841],[124,79,72,-0.17774878442287445],[124,79,73,-0.180263202637434],[124,79,74,-0.18152180686593056],[124,79,75,-0.1812753677368164],[124,79,76,-0.17898917943239212],[124,79,77,-0.17481684312224388],[124,79,78,-0.1697959005832672],[124,79,79,-0.16447824612259865],[124,80,64,-0.17998657748103142],[124,80,65,-0.18095942214131355],[124,80,66,-0.18016507849097252],[124,80,67,-0.1786443181335926],[124,80,68,-0.17781281098723412],[124,80,69,-0.17853793129324913],[124,80,70,-0.18032865226268768],[124,80,71,-0.1825743019580841],[124,80,72,-0.18556128442287445],[124,80,73,-0.188075702637434],[124,80,74,-0.18933430686593056],[124,80,75,-0.1890878677368164],[124,80,76,-0.18680167943239212],[124,80,77,-0.18262934312224388],[124,80,78,-0.1776084005832672],[124,80,79,-0.17229074612259865],[124,81,64,-0.18779907748103142],[124,81,65,-0.18877192214131355],[124,81,66,-0.18797757849097252],[124,81,67,-0.1864568181335926],[124,81,68,-0.18562531098723412],[124,81,69,-0.18635043129324913],[124,81,70,-0.18814115226268768],[124,81,71,-0.1903868019580841],[124,81,72,-0.19337378442287445],[124,81,73,-0.195888202637434],[124,81,74,-0.19714680686593056],[124,81,75,-0.1969003677368164],[124,81,76,-0.19461417943239212],[124,81,77,-0.19044184312224388],[124,81,78,-0.1854209005832672],[124,81,79,-0.18010324612259865],[124,82,64,-0.19561157748103142],[124,82,65,-0.19658442214131355],[124,82,66,-0.19579007849097252],[124,82,67,-0.1942693181335926],[124,82,68,-0.19343781098723412],[124,82,69,-0.19416293129324913],[124,82,70,-0.19595365226268768],[124,82,71,-0.1981993019580841],[124,82,72,-0.20118628442287445],[124,82,73,-0.203700702637434],[124,82,74,-0.20495930686593056],[124,82,75,-0.2047128677368164],[124,82,76,-0.20242667943239212],[124,82,77,-0.19825434312224388],[124,82,78,-0.1932334005832672],[124,82,79,-0.18791574612259865],[124,83,64,-0.20342407748103142],[124,83,65,-0.20439692214131355],[124,83,66,-0.20360257849097252],[124,83,67,-0.2020818181335926],[124,83,68,-0.20125031098723412],[124,83,69,-0.20197543129324913],[124,83,70,-0.20376615226268768],[124,83,71,-0.2060118019580841],[124,83,72,-0.20899878442287445],[124,83,73,-0.211513202637434],[124,83,74,-0.21277180686593056],[124,83,75,-0.2125253677368164],[124,83,76,-0.21023917943239212],[124,83,77,-0.20606684312224388],[124,83,78,-0.2010459005832672],[124,83,79,-0.19572824612259865],[124,84,64,-0.21123657748103142],[124,84,65,-0.21220942214131355],[124,84,66,-0.21141507849097252],[124,84,67,-0.2098943181335926],[124,84,68,-0.20906281098723412],[124,84,69,-0.20978793129324913],[124,84,70,-0.21157865226268768],[124,84,71,-0.2138243019580841],[124,84,72,-0.21681128442287445],[124,84,73,-0.219325702637434],[124,84,74,-0.22058430686593056],[124,84,75,-0.2203378677368164],[124,84,76,-0.21805167943239212],[124,84,77,-0.21387934312224388],[124,84,78,-0.2088584005832672],[124,84,79,-0.20354074612259865],[124,85,64,-0.21904907748103142],[124,85,65,-0.22002192214131355],[124,85,66,-0.21922757849097252],[124,85,67,-0.2177068181335926],[124,85,68,-0.21687531098723412],[124,85,69,-0.21760043129324913],[124,85,70,-0.21939115226268768],[124,85,71,-0.2216368019580841],[124,85,72,-0.22462378442287445],[124,85,73,-0.227138202637434],[124,85,74,-0.22839680686593056],[124,85,75,-0.2281503677368164],[124,85,76,-0.22586417943239212],[124,85,77,-0.22169184312224388],[124,85,78,-0.2166709005832672],[124,85,79,-0.21135324612259865],[124,86,64,-0.22686157748103142],[124,86,65,-0.22783442214131355],[124,86,66,-0.22704007849097252],[124,86,67,-0.2255193181335926],[124,86,68,-0.22468781098723412],[124,86,69,-0.22541293129324913],[124,86,70,-0.22720365226268768],[124,86,71,-0.2294493019580841],[124,86,72,-0.23243628442287445],[124,86,73,-0.234950702637434],[124,86,74,-0.23620930686593056],[124,86,75,-0.2359628677368164],[124,86,76,-0.23367667943239212],[124,86,77,-0.22950434312224388],[124,86,78,-0.2244834005832672],[124,86,79,-0.21916574612259865],[124,87,64,-0.23467407748103142],[124,87,65,-0.23564692214131355],[124,87,66,-0.23485257849097252],[124,87,67,-0.2333318181335926],[124,87,68,-0.23250031098723412],[124,87,69,-0.23322543129324913],[124,87,70,-0.23501615226268768],[124,87,71,-0.2372618019580841],[124,87,72,-0.24024878442287445],[124,87,73,-0.242763202637434],[124,87,74,-0.24402180686593056],[124,87,75,-0.2437753677368164],[124,87,76,-0.24148917943239212],[124,87,77,-0.23731684312224388],[124,87,78,-0.2322959005832672],[124,87,79,-0.22697824612259865],[124,88,64,-0.24248657748103142],[124,88,65,-0.24345942214131355],[124,88,66,-0.24266507849097252],[124,88,67,-0.2411443181335926],[124,88,68,-0.24031281098723412],[124,88,69,-0.24103793129324913],[124,88,70,-0.24282865226268768],[124,88,71,-0.2450743019580841],[124,88,72,-0.24806128442287445],[124,88,73,-0.250575702637434],[124,88,74,-0.25183430686593056],[124,88,75,-0.2515878677368164],[124,88,76,-0.24930167943239212],[124,88,77,-0.24512934312224388],[124,88,78,-0.2401084005832672],[124,88,79,-0.23479074612259865],[124,89,64,-0.2502990774810314],[124,89,65,-0.25127192214131355],[124,89,66,-0.2504775784909725],[124,89,67,-0.2489568181335926],[124,89,68,-0.24812531098723412],[124,89,69,-0.24885043129324913],[124,89,70,-0.2506411522626877],[124,89,71,-0.2528868019580841],[124,89,72,-0.25587378442287445],[124,89,73,-0.258388202637434],[124,89,74,-0.25964680686593056],[124,89,75,-0.2594003677368164],[124,89,76,-0.2571141794323921],[124,89,77,-0.2529418431222439],[124,89,78,-0.2479209005832672],[124,89,79,-0.24260324612259865],[124,90,64,-0.2581115774810314],[124,90,65,-0.25908442214131355],[124,90,66,-0.2582900784909725],[124,90,67,-0.2567693181335926],[124,90,68,-0.2559378109872341],[124,90,69,-0.25666293129324913],[124,90,70,-0.2584536522626877],[124,90,71,-0.2606993019580841],[124,90,72,-0.26368628442287445],[124,90,73,-0.266200702637434],[124,90,74,-0.26745930686593056],[124,90,75,-0.2672128677368164],[124,90,76,-0.2649266794323921],[124,90,77,-0.2607543431222439],[124,90,78,-0.2557334005832672],[124,90,79,-0.25041574612259865],[124,91,64,-0.2659240774810314],[124,91,65,-0.26689692214131355],[124,91,66,-0.2661025784909725],[124,91,67,-0.2645818181335926],[124,91,68,-0.2637503109872341],[124,91,69,-0.26447543129324913],[124,91,70,-0.2662661522626877],[124,91,71,-0.2685118019580841],[124,91,72,-0.27149878442287445],[124,91,73,-0.274013202637434],[124,91,74,-0.27527180686593056],[124,91,75,-0.2750253677368164],[124,91,76,-0.2727391794323921],[124,91,77,-0.2685668431222439],[124,91,78,-0.2635459005832672],[124,91,79,-0.25822824612259865],[124,92,64,-0.2737365774810314],[124,92,65,-0.27470942214131355],[124,92,66,-0.2739150784909725],[124,92,67,-0.2723943181335926],[124,92,68,-0.2715628109872341],[124,92,69,-0.27228793129324913],[124,92,70,-0.2740786522626877],[124,92,71,-0.2763243019580841],[124,92,72,-0.27931128442287445],[124,92,73,-0.281825702637434],[124,92,74,-0.28308430686593056],[124,92,75,-0.2828378677368164],[124,92,76,-0.2805516794323921],[124,92,77,-0.2763793431222439],[124,92,78,-0.2713584005832672],[124,92,79,-0.26604074612259865],[124,93,64,-0.2815490774810314],[124,93,65,-0.28252192214131355],[124,93,66,-0.2817275784909725],[124,93,67,-0.2802068181335926],[124,93,68,-0.2793753109872341],[124,93,69,-0.28010043129324913],[124,93,70,-0.2818911522626877],[124,93,71,-0.2841368019580841],[124,93,72,-0.28712378442287445],[124,93,73,-0.289638202637434],[124,93,74,-0.29089680686593056],[124,93,75,-0.2906503677368164],[124,93,76,-0.2883641794323921],[124,93,77,-0.2841918431222439],[124,93,78,-0.2791709005832672],[124,93,79,-0.27385324612259865],[124,94,64,-0.2893615774810314],[124,94,65,-0.29033442214131355],[124,94,66,-0.2895400784909725],[124,94,67,-0.2880193181335926],[124,94,68,-0.2871878109872341],[124,94,69,-0.28791293129324913],[124,94,70,-0.2897036522626877],[124,94,71,-0.2919493019580841],[124,94,72,-0.29493628442287445],[124,94,73,-0.297450702637434],[124,94,74,-0.29870930686593056],[124,94,75,-0.2984628677368164],[124,94,76,-0.2961766794323921],[124,94,77,-0.2920043431222439],[124,94,78,-0.2869834005832672],[124,94,79,-0.28166574612259865],[124,95,64,-0.2971740774810314],[124,95,65,-0.29814692214131355],[124,95,66,-0.2973525784909725],[124,95,67,-0.2958318181335926],[124,95,68,-0.2950003109872341],[124,95,69,-0.29572543129324913],[124,95,70,-0.2975161522626877],[124,95,71,-0.2997618019580841],[124,95,72,-0.30274878442287445],[124,95,73,-0.305263202637434],[124,95,74,-0.30652180686593056],[124,95,75,-0.3062753677368164],[124,95,76,-0.3039891794323921],[124,95,77,-0.2998168431222439],[124,95,78,-0.2947959005832672],[124,95,79,-0.28947824612259865],[124,96,64,-0.3049865774810314],[124,96,65,-0.30595942214131355],[124,96,66,-0.3051650784909725],[124,96,67,-0.3036443181335926],[124,96,68,-0.3028128109872341],[124,96,69,-0.30353793129324913],[124,96,70,-0.3053286522626877],[124,96,71,-0.3075743019580841],[124,96,72,-0.31056128442287445],[124,96,73,-0.313075702637434],[124,96,74,-0.31433430686593056],[124,96,75,-0.3140878677368164],[124,96,76,-0.3118016794323921],[124,96,77,-0.3076293431222439],[124,96,78,-0.3026084005832672],[124,96,79,-0.29729074612259865],[124,97,64,-0.3127990774810314],[124,97,65,-0.31377192214131355],[124,97,66,-0.3129775784909725],[124,97,67,-0.3114568181335926],[124,97,68,-0.3106253109872341],[124,97,69,-0.31135043129324913],[124,97,70,-0.3131411522626877],[124,97,71,-0.3153868019580841],[124,97,72,-0.31837378442287445],[124,97,73,-0.320888202637434],[124,97,74,-0.32214680686593056],[124,97,75,-0.3219003677368164],[124,97,76,-0.3196141794323921],[124,97,77,-0.3154418431222439],[124,97,78,-0.3104209005832672],[124,97,79,-0.30510324612259865],[124,98,64,-0.3206115774810314],[124,98,65,-0.32158442214131355],[124,98,66,-0.3207900784909725],[124,98,67,-0.3192693181335926],[124,98,68,-0.3184378109872341],[124,98,69,-0.31916293129324913],[124,98,70,-0.3209536522626877],[124,98,71,-0.3231993019580841],[124,98,72,-0.32618628442287445],[124,98,73,-0.328700702637434],[124,98,74,-0.32995930686593056],[124,98,75,-0.3297128677368164],[124,98,76,-0.3274266794323921],[124,98,77,-0.3232543431222439],[124,98,78,-0.3182334005832672],[124,98,79,-0.31291574612259865],[124,99,64,-0.3284240774810314],[124,99,65,-0.32939692214131355],[124,99,66,-0.3286025784909725],[124,99,67,-0.3270818181335926],[124,99,68,-0.3262503109872341],[124,99,69,-0.32697543129324913],[124,99,70,-0.3287661522626877],[124,99,71,-0.3310118019580841],[124,99,72,-0.33399878442287445],[124,99,73,-0.336513202637434],[124,99,74,-0.33777180686593056],[124,99,75,-0.3375253677368164],[124,99,76,-0.3352391794323921],[124,99,77,-0.3310668431222439],[124,99,78,-0.3260459005832672],[124,99,79,-0.32072824612259865],[124,100,64,-0.3362365774810314],[124,100,65,-0.33720942214131355],[124,100,66,-0.3364150784909725],[124,100,67,-0.3348943181335926],[124,100,68,-0.3340628109872341],[124,100,69,-0.33478793129324913],[124,100,70,-0.3365786522626877],[124,100,71,-0.3388243019580841],[124,100,72,-0.34181128442287445],[124,100,73,-0.344325702637434],[124,100,74,-0.34558430686593056],[124,100,75,-0.3453378677368164],[124,100,76,-0.3430516794323921],[124,100,77,-0.3388793431222439],[124,100,78,-0.3338584005832672],[124,100,79,-0.32854074612259865],[124,101,64,-0.3440490774810314],[124,101,65,-0.34502192214131355],[124,101,66,-0.3442275784909725],[124,101,67,-0.3427068181335926],[124,101,68,-0.3418753109872341],[124,101,69,-0.34260043129324913],[124,101,70,-0.3443911522626877],[124,101,71,-0.3466368019580841],[124,101,72,-0.34962378442287445],[124,101,73,-0.352138202637434],[124,101,74,-0.35339680686593056],[124,101,75,-0.3531503677368164],[124,101,76,-0.3508641794323921],[124,101,77,-0.3466918431222439],[124,101,78,-0.3416709005832672],[124,101,79,-0.33635324612259865],[124,102,64,-0.3518615774810314],[124,102,65,-0.35283442214131355],[124,102,66,-0.3520400784909725],[124,102,67,-0.3505193181335926],[124,102,68,-0.3496878109872341],[124,102,69,-0.35041293129324913],[124,102,70,-0.3522036522626877],[124,102,71,-0.3544493019580841],[124,102,72,-0.35743628442287445],[124,102,73,-0.359950702637434],[124,102,74,-0.36120930686593056],[124,102,75,-0.3609628677368164],[124,102,76,-0.3586766794323921],[124,102,77,-0.3545043431222439],[124,102,78,-0.3494834005832672],[124,102,79,-0.34416574612259865],[124,103,64,-0.3596740774810314],[124,103,65,-0.36064692214131355],[124,103,66,-0.3598525784909725],[124,103,67,-0.3583318181335926],[124,103,68,-0.3575003109872341],[124,103,69,-0.35822543129324913],[124,103,70,-0.3600161522626877],[124,103,71,-0.3622618019580841],[124,103,72,-0.36524878442287445],[124,103,73,-0.367763202637434],[124,103,74,-0.36902180686593056],[124,103,75,-0.3687753677368164],[124,103,76,-0.3664891794323921],[124,103,77,-0.3623168431222439],[124,103,78,-0.3572959005832672],[124,103,79,-0.35197824612259865],[124,104,64,-0.3674865774810314],[124,104,65,-0.36845942214131355],[124,104,66,-0.3676650784909725],[124,104,67,-0.3661443181335926],[124,104,68,-0.3653128109872341],[124,104,69,-0.36603793129324913],[124,104,70,-0.3678286522626877],[124,104,71,-0.3700743019580841],[124,104,72,-0.37306128442287445],[124,104,73,-0.375575702637434],[124,104,74,-0.37683430686593056],[124,104,75,-0.3765878677368164],[124,104,76,-0.3743016794323921],[124,104,77,-0.3701293431222439],[124,104,78,-0.3651084005832672],[124,104,79,-0.35979074612259865],[124,105,64,-0.3752990774810314],[124,105,65,-0.37627192214131355],[124,105,66,-0.3754775784909725],[124,105,67,-0.3739568181335926],[124,105,68,-0.3731253109872341],[124,105,69,-0.37385043129324913],[124,105,70,-0.3756411522626877],[124,105,71,-0.3778868019580841],[124,105,72,-0.38087378442287445],[124,105,73,-0.383388202637434],[124,105,74,-0.38464680686593056],[124,105,75,-0.3844003677368164],[124,105,76,-0.3821141794323921],[124,105,77,-0.3779418431222439],[124,105,78,-0.3729209005832672],[124,105,79,-0.36760324612259865],[124,106,64,-0.3831115774810314],[124,106,65,-0.38408442214131355],[124,106,66,-0.3832900784909725],[124,106,67,-0.3817693181335926],[124,106,68,-0.3809378109872341],[124,106,69,-0.38166293129324913],[124,106,70,-0.3834536522626877],[124,106,71,-0.3856993019580841],[124,106,72,-0.38868628442287445],[124,106,73,-0.391200702637434],[124,106,74,-0.39245930686593056],[124,106,75,-0.3922128677368164],[124,106,76,-0.3899266794323921],[124,106,77,-0.3857543431222439],[124,106,78,-0.3807334005832672],[124,106,79,-0.37541574612259865],[124,107,64,-0.3909240774810314],[124,107,65,-0.39189692214131355],[124,107,66,-0.3911025784909725],[124,107,67,-0.3895818181335926],[124,107,68,-0.3887503109872341],[124,107,69,-0.38947543129324913],[124,107,70,-0.3912661522626877],[124,107,71,-0.3935118019580841],[124,107,72,-0.39649878442287445],[124,107,73,-0.399013202637434],[124,107,74,-0.40027180686593056],[124,107,75,-0.4000253677368164],[124,107,76,-0.3977391794323921],[124,107,77,-0.3935668431222439],[124,107,78,-0.3885459005832672],[124,107,79,-0.38322824612259865],[124,108,64,-0.3987365774810314],[124,108,65,-0.39970942214131355],[124,108,66,-0.3989150784909725],[124,108,67,-0.3973943181335926],[124,108,68,-0.3965628109872341],[124,108,69,-0.39728793129324913],[124,108,70,-0.3990786522626877],[124,108,71,-0.4013243019580841],[124,108,72,-0.40431128442287445],[124,108,73,-0.406825702637434],[124,108,74,-0.40808430686593056],[124,108,75,-0.4078378677368164],[124,108,76,-0.4055516794323921],[124,108,77,-0.4013793431222439],[124,108,78,-0.3963584005832672],[124,108,79,-0.39104074612259865],[124,109,64,-0.4065490774810314],[124,109,65,-0.40752192214131355],[124,109,66,-0.4067275784909725],[124,109,67,-0.4052068181335926],[124,109,68,-0.4043753109872341],[124,109,69,-0.40510043129324913],[124,109,70,-0.4068911522626877],[124,109,71,-0.4091368019580841],[124,109,72,-0.41212378442287445],[124,109,73,-0.414638202637434],[124,109,74,-0.41589680686593056],[124,109,75,-0.4156503677368164],[124,109,76,-0.4133641794323921],[124,109,77,-0.4091918431222439],[124,109,78,-0.4041709005832672],[124,109,79,-0.39885324612259865],[124,110,64,-0.4143615774810314],[124,110,65,-0.41533442214131355],[124,110,66,-0.4145400784909725],[124,110,67,-0.4130193181335926],[124,110,68,-0.4121878109872341],[124,110,69,-0.41291293129324913],[124,110,70,-0.4147036522626877],[124,110,71,-0.4169493019580841],[124,110,72,-0.41993628442287445],[124,110,73,-0.422450702637434],[124,110,74,-0.42370930686593056],[124,110,75,-0.4234628677368164],[124,110,76,-0.4211766794323921],[124,110,77,-0.4170043431222439],[124,110,78,-0.4119834005832672],[124,110,79,-0.40666574612259865],[124,111,64,-0.4221740774810314],[124,111,65,-0.42314692214131355],[124,111,66,-0.4223525784909725],[124,111,67,-0.4208318181335926],[124,111,68,-0.4200003109872341],[124,111,69,-0.42072543129324913],[124,111,70,-0.4225161522626877],[124,111,71,-0.4247618019580841],[124,111,72,-0.42774878442287445],[124,111,73,-0.430263202637434],[124,111,74,-0.43152180686593056],[124,111,75,-0.4312753677368164],[124,111,76,-0.4289891794323921],[124,111,77,-0.4248168431222439],[124,111,78,-0.4197959005832672],[124,111,79,-0.41447824612259865],[124,112,64,-0.4299865774810314],[124,112,65,-0.43095942214131355],[124,112,66,-0.4301650784909725],[124,112,67,-0.4286443181335926],[124,112,68,-0.4278128109872341],[124,112,69,-0.42853793129324913],[124,112,70,-0.4303286522626877],[124,112,71,-0.4325743019580841],[124,112,72,-0.43556128442287445],[124,112,73,-0.438075702637434],[124,112,74,-0.43933430686593056],[124,112,75,-0.4390878677368164],[124,112,76,-0.4368016794323921],[124,112,77,-0.4326293431222439],[124,112,78,-0.4276084005832672],[124,112,79,-0.42229074612259865],[124,113,64,-0.4377990774810314],[124,113,65,-0.43877192214131355],[124,113,66,-0.4379775784909725],[124,113,67,-0.4364568181335926],[124,113,68,-0.4356253109872341],[124,113,69,-0.43635043129324913],[124,113,70,-0.4381411522626877],[124,113,71,-0.4403868019580841],[124,113,72,-0.44337378442287445],[124,113,73,-0.445888202637434],[124,113,74,-0.44714680686593056],[124,113,75,-0.4469003677368164],[124,113,76,-0.4446141794323921],[124,113,77,-0.4404418431222439],[124,113,78,-0.4354209005832672],[124,113,79,-0.43010324612259865],[124,114,64,-0.4456115774810314],[124,114,65,-0.44658442214131355],[124,114,66,-0.4457900784909725],[124,114,67,-0.4442693181335926],[124,114,68,-0.4434378109872341],[124,114,69,-0.44416293129324913],[124,114,70,-0.4459536522626877],[124,114,71,-0.4481993019580841],[124,114,72,-0.45118628442287445],[124,114,73,-0.453700702637434],[124,114,74,-0.45495930686593056],[124,114,75,-0.4547128677368164],[124,114,76,-0.4524266794323921],[124,114,77,-0.4482543431222439],[124,114,78,-0.4432334005832672],[124,114,79,-0.43791574612259865],[124,115,64,-0.4534240774810314],[124,115,65,-0.45439692214131355],[124,115,66,-0.4536025784909725],[124,115,67,-0.4520818181335926],[124,115,68,-0.4512503109872341],[124,115,69,-0.45197543129324913],[124,115,70,-0.4537661522626877],[124,115,71,-0.4560118019580841],[124,115,72,-0.45899878442287445],[124,115,73,-0.461513202637434],[124,115,74,-0.46277180686593056],[124,115,75,-0.4625253677368164],[124,115,76,-0.4602391794323921],[124,115,77,-0.4560668431222439],[124,115,78,-0.4510459005832672],[124,115,79,-0.44572824612259865],[124,116,64,-0.4612365774810314],[124,116,65,-0.46220942214131355],[124,116,66,-0.4614150784909725],[124,116,67,-0.4598943181335926],[124,116,68,-0.4590628109872341],[124,116,69,-0.45978793129324913],[124,116,70,-0.4615786522626877],[124,116,71,-0.4638243019580841],[124,116,72,-0.46681128442287445],[124,116,73,-0.469325702637434],[124,116,74,-0.47058430686593056],[124,116,75,-0.4703378677368164],[124,116,76,-0.4680516794323921],[124,116,77,-0.4638793431222439],[124,116,78,-0.4588584005832672],[124,116,79,-0.45354074612259865],[124,117,64,-0.4690490774810314],[124,117,65,-0.47002192214131355],[124,117,66,-0.4692275784909725],[124,117,67,-0.4677068181335926],[124,117,68,-0.4668753109872341],[124,117,69,-0.46760043129324913],[124,117,70,-0.4693911522626877],[124,117,71,-0.4716368019580841],[124,117,72,-0.47462378442287445],[124,117,73,-0.477138202637434],[124,117,74,-0.47839680686593056],[124,117,75,-0.4781503677368164],[124,117,76,-0.4758641794323921],[124,117,77,-0.4716918431222439],[124,117,78,-0.4666709005832672],[124,117,79,-0.46135324612259865],[124,118,64,-0.4768615774810314],[124,118,65,-0.47783442214131355],[124,118,66,-0.4770400784909725],[124,118,67,-0.4755193181335926],[124,118,68,-0.4746878109872341],[124,118,69,-0.47541293129324913],[124,118,70,-0.4772036522626877],[124,118,71,-0.4794493019580841],[124,118,72,-0.48243628442287445],[124,118,73,-0.484950702637434],[124,118,74,-0.48620930686593056],[124,118,75,-0.4859628677368164],[124,118,76,-0.4836766794323921],[124,118,77,-0.4795043431222439],[124,118,78,-0.4744834005832672],[124,118,79,-0.46916574612259865],[124,119,64,-0.4846740774810314],[124,119,65,-0.48564692214131355],[124,119,66,-0.4848525784909725],[124,119,67,-0.4833318181335926],[124,119,68,-0.4825003109872341],[124,119,69,-0.48322543129324913],[124,119,70,-0.4850161522626877],[124,119,71,-0.4872618019580841],[124,119,72,-0.49024878442287445],[124,119,73,-0.492763202637434],[124,119,74,-0.49402180686593056],[124,119,75,-0.4937753677368164],[124,119,76,-0.4914891794323921],[124,119,77,-0.4873168431222439],[124,119,78,-0.4822959005832672],[124,119,79,-0.47697824612259865],[124,120,64,-0.4924865774810314],[124,120,65,-0.49345942214131355],[124,120,66,-0.4926650784909725],[124,120,67,-0.4911443181335926],[124,120,68,-0.4903128109872341],[124,120,69,-0.49103793129324913],[124,120,70,-0.4928286522626877],[124,120,71,-0.4950743019580841],[124,120,72,-0.49806128442287445],[124,120,73,-0.500575702637434],[124,120,74,-0.5018343068659306],[124,120,75,-0.5015878677368164],[124,120,76,-0.4993016794323921],[124,120,77,-0.4951293431222439],[124,120,78,-0.4901084005832672],[124,120,79,-0.48479074612259865],[124,121,64,-0.5002990774810314],[124,121,65,-0.5012719221413136],[124,121,66,-0.5004775784909725],[124,121,67,-0.4989568181335926],[124,121,68,-0.4981253109872341],[124,121,69,-0.49885043129324913],[124,121,70,-0.5006411522626877],[124,121,71,-0.5028868019580841],[124,121,72,-0.5058737844228745],[124,121,73,-0.508388202637434],[124,121,74,-0.5096468068659306],[124,121,75,-0.5094003677368164],[124,121,76,-0.5071141794323921],[124,121,77,-0.5029418431222439],[124,121,78,-0.4979209005832672],[124,121,79,-0.49260324612259865],[124,122,64,-0.5081115774810314],[124,122,65,-0.5090844221413136],[124,122,66,-0.5082900784909725],[124,122,67,-0.5067693181335926],[124,122,68,-0.5059378109872341],[124,122,69,-0.5066629312932491],[124,122,70,-0.5084536522626877],[124,122,71,-0.5106993019580841],[124,122,72,-0.5136862844228745],[124,122,73,-0.516200702637434],[124,122,74,-0.5174593068659306],[124,122,75,-0.5172128677368164],[124,122,76,-0.5149266794323921],[124,122,77,-0.5107543431222439],[124,122,78,-0.5057334005832672],[124,122,79,-0.5004157461225986],[124,123,64,-0.5159240774810314],[124,123,65,-0.5168969221413136],[124,123,66,-0.5161025784909725],[124,123,67,-0.5145818181335926],[124,123,68,-0.5137503109872341],[124,123,69,-0.5144754312932491],[124,123,70,-0.5162661522626877],[124,123,71,-0.5185118019580841],[124,123,72,-0.5214987844228745],[124,123,73,-0.524013202637434],[124,123,74,-0.5252718068659306],[124,123,75,-0.5250253677368164],[124,123,76,-0.5227391794323921],[124,123,77,-0.5185668431222439],[124,123,78,-0.5135459005832672],[124,123,79,-0.5082282461225986],[124,124,64,-0.5237365774810314],[124,124,65,-0.5247094221413136],[124,124,66,-0.5239150784909725],[124,124,67,-0.5223943181335926],[124,124,68,-0.5215628109872341],[124,124,69,-0.5222879312932491],[124,124,70,-0.5240786522626877],[124,124,71,-0.5263243019580841],[124,124,72,-0.5293112844228745],[124,124,73,-0.531825702637434],[124,124,74,-0.5330843068659306],[124,124,75,-0.5328378677368164],[124,124,76,-0.5305516794323921],[124,124,77,-0.5263793431222439],[124,124,78,-0.5213584005832672],[124,124,79,-0.5160407461225986],[124,125,64,-0.5315490774810314],[124,125,65,-0.5325219221413136],[124,125,66,-0.5317275784909725],[124,125,67,-0.5302068181335926],[124,125,68,-0.5293753109872341],[124,125,69,-0.5301004312932491],[124,125,70,-0.5318911522626877],[124,125,71,-0.5341368019580841],[124,125,72,-0.5371237844228745],[124,125,73,-0.539638202637434],[124,125,74,-0.5408968068659306],[124,125,75,-0.5406503677368164],[124,125,76,-0.5383641794323921],[124,125,77,-0.5341918431222439],[124,125,78,-0.5291709005832672],[124,125,79,-0.5238532461225986],[124,126,64,-0.5393615774810314],[124,126,65,-0.5403344221413136],[124,126,66,-0.5395400784909725],[124,126,67,-0.5380193181335926],[124,126,68,-0.5371878109872341],[124,126,69,-0.5379129312932491],[124,126,70,-0.5397036522626877],[124,126,71,-0.5419493019580841],[124,126,72,-0.5449362844228745],[124,126,73,-0.547450702637434],[124,126,74,-0.5487093068659306],[124,126,75,-0.5484628677368164],[124,126,76,-0.5461766794323921],[124,126,77,-0.5420043431222439],[124,126,78,-0.5369834005832672],[124,126,79,-0.5316657461225986],[124,127,64,-0.5471740774810314],[124,127,65,-0.5481469221413136],[124,127,66,-0.5473525784909725],[124,127,67,-0.5458318181335926],[124,127,68,-0.5450003109872341],[124,127,69,-0.5457254312932491],[124,127,70,-0.5475161522626877],[124,127,71,-0.5497618019580841],[124,127,72,-0.5527487844228745],[124,127,73,-0.555263202637434],[124,127,74,-0.5565218068659306],[124,127,75,-0.5562753677368164],[124,127,76,-0.5539891794323921],[124,127,77,-0.5498168431222439],[124,127,78,-0.5447959005832672],[124,127,79,-0.5394782461225986],[124,128,64,-0.5549865774810314],[124,128,65,-0.5559594221413136],[124,128,66,-0.5551650784909725],[124,128,67,-0.5536443181335926],[124,128,68,-0.5528128109872341],[124,128,69,-0.5535379312932491],[124,128,70,-0.5553286522626877],[124,128,71,-0.5575743019580841],[124,128,72,-0.5605612844228745],[124,128,73,-0.563075702637434],[124,128,74,-0.5643343068659306],[124,128,75,-0.5640878677368164],[124,128,76,-0.5618016794323921],[124,128,77,-0.5576293431222439],[124,128,78,-0.5526084005832672],[124,128,79,-0.5472907461225986],[124,129,64,-0.5627990774810314],[124,129,65,-0.5637719221413136],[124,129,66,-0.5629775784909725],[124,129,67,-0.5614568181335926],[124,129,68,-0.5606253109872341],[124,129,69,-0.5613504312932491],[124,129,70,-0.5631411522626877],[124,129,71,-0.5653868019580841],[124,129,72,-0.5683737844228745],[124,129,73,-0.570888202637434],[124,129,74,-0.5721468068659306],[124,129,75,-0.5719003677368164],[124,129,76,-0.5696141794323921],[124,129,77,-0.5654418431222439],[124,129,78,-0.5604209005832672],[124,129,79,-0.5551032461225986],[124,130,64,-0.5706115774810314],[124,130,65,-0.5715844221413136],[124,130,66,-0.5707900784909725],[124,130,67,-0.5692693181335926],[124,130,68,-0.5684378109872341],[124,130,69,-0.5691629312932491],[124,130,70,-0.5709536522626877],[124,130,71,-0.5731993019580841],[124,130,72,-0.5761862844228745],[124,130,73,-0.578700702637434],[124,130,74,-0.5799593068659306],[124,130,75,-0.5797128677368164],[124,130,76,-0.5774266794323921],[124,130,77,-0.5732543431222439],[124,130,78,-0.5682334005832672],[124,130,79,-0.5629157461225986],[124,131,64,-0.5784240774810314],[124,131,65,-0.5793969221413136],[124,131,66,-0.5786025784909725],[124,131,67,-0.5770818181335926],[124,131,68,-0.5762503109872341],[124,131,69,-0.5769754312932491],[124,131,70,-0.5787661522626877],[124,131,71,-0.5810118019580841],[124,131,72,-0.5839987844228745],[124,131,73,-0.586513202637434],[124,131,74,-0.5877718068659306],[124,131,75,-0.5875253677368164],[124,131,76,-0.5852391794323921],[124,131,77,-0.5810668431222439],[124,131,78,-0.5760459005832672],[124,131,79,-0.5707282461225986],[124,132,64,-0.5862365774810314],[124,132,65,-0.5872094221413136],[124,132,66,-0.5864150784909725],[124,132,67,-0.5848943181335926],[124,132,68,-0.5840628109872341],[124,132,69,-0.5847879312932491],[124,132,70,-0.5865786522626877],[124,132,71,-0.5888243019580841],[124,132,72,-0.5918112844228745],[124,132,73,-0.594325702637434],[124,132,74,-0.5955843068659306],[124,132,75,-0.5953378677368164],[124,132,76,-0.5930516794323921],[124,132,77,-0.5888793431222439],[124,132,78,-0.5838584005832672],[124,132,79,-0.5785407461225986],[124,133,64,-0.5940490774810314],[124,133,65,-0.5950219221413136],[124,133,66,-0.5942275784909725],[124,133,67,-0.5927068181335926],[124,133,68,-0.5918753109872341],[124,133,69,-0.5926004312932491],[124,133,70,-0.5943911522626877],[124,133,71,-0.5966368019580841],[124,133,72,-0.5996237844228745],[124,133,73,-0.602138202637434],[124,133,74,-0.6033968068659306],[124,133,75,-0.6031503677368164],[124,133,76,-0.6008641794323921],[124,133,77,-0.5966918431222439],[124,133,78,-0.5916709005832672],[124,133,79,-0.5863532461225986],[124,134,64,-0.6018615774810314],[124,134,65,-0.6028344221413136],[124,134,66,-0.6020400784909725],[124,134,67,-0.6005193181335926],[124,134,68,-0.5996878109872341],[124,134,69,-0.6004129312932491],[124,134,70,-0.6022036522626877],[124,134,71,-0.6044493019580841],[124,134,72,-0.6074362844228745],[124,134,73,-0.609950702637434],[124,134,74,-0.6112093068659306],[124,134,75,-0.6109628677368164],[124,134,76,-0.6086766794323921],[124,134,77,-0.6045043431222439],[124,134,78,-0.5994834005832672],[124,134,79,-0.5941657461225986],[124,135,64,-0.6096740774810314],[124,135,65,-0.6106469221413136],[124,135,66,-0.6098525784909725],[124,135,67,-0.6083318181335926],[124,135,68,-0.6075003109872341],[124,135,69,-0.6082254312932491],[124,135,70,-0.6100161522626877],[124,135,71,-0.6122618019580841],[124,135,72,-0.6152487844228745],[124,135,73,-0.617763202637434],[124,135,74,-0.6190218068659306],[124,135,75,-0.6187753677368164],[124,135,76,-0.6164891794323921],[124,135,77,-0.6123168431222439],[124,135,78,-0.6072959005832672],[124,135,79,-0.6019782461225986],[124,136,64,-0.6174865774810314],[124,136,65,-0.6184594221413136],[124,136,66,-0.6176650784909725],[124,136,67,-0.6161443181335926],[124,136,68,-0.6153128109872341],[124,136,69,-0.6160379312932491],[124,136,70,-0.6178286522626877],[124,136,71,-0.6200743019580841],[124,136,72,-0.6230612844228745],[124,136,73,-0.625575702637434],[124,136,74,-0.6268343068659306],[124,136,75,-0.6265878677368164],[124,136,76,-0.6243016794323921],[124,136,77,-0.6201293431222439],[124,136,78,-0.6151084005832672],[124,136,79,-0.6097907461225986],[124,137,64,-0.6252990774810314],[124,137,65,-0.6262719221413136],[124,137,66,-0.6254775784909725],[124,137,67,-0.6239568181335926],[124,137,68,-0.6231253109872341],[124,137,69,-0.6238504312932491],[124,137,70,-0.6256411522626877],[124,137,71,-0.6278868019580841],[124,137,72,-0.6308737844228745],[124,137,73,-0.633388202637434],[124,137,74,-0.6346468068659306],[124,137,75,-0.6344003677368164],[124,137,76,-0.6321141794323921],[124,137,77,-0.6279418431222439],[124,137,78,-0.6229209005832672],[124,137,79,-0.6176032461225986],[124,138,64,-0.6331115774810314],[124,138,65,-0.6340844221413136],[124,138,66,-0.6332900784909725],[124,138,67,-0.6317693181335926],[124,138,68,-0.6309378109872341],[124,138,69,-0.6316629312932491],[124,138,70,-0.6334536522626877],[124,138,71,-0.6356993019580841],[124,138,72,-0.6386862844228745],[124,138,73,-0.641200702637434],[124,138,74,-0.6424593068659306],[124,138,75,-0.6422128677368164],[124,138,76,-0.6399266794323921],[124,138,77,-0.6357543431222439],[124,138,78,-0.6307334005832672],[124,138,79,-0.6254157461225986],[124,139,64,-0.6409240774810314],[124,139,65,-0.6418969221413136],[124,139,66,-0.6411025784909725],[124,139,67,-0.6395818181335926],[124,139,68,-0.6387503109872341],[124,139,69,-0.6394754312932491],[124,139,70,-0.6412661522626877],[124,139,71,-0.6435118019580841],[124,139,72,-0.6464987844228745],[124,139,73,-0.649013202637434],[124,139,74,-0.6502718068659306],[124,139,75,-0.6500253677368164],[124,139,76,-0.6477391794323921],[124,139,77,-0.6435668431222439],[124,139,78,-0.6385459005832672],[124,139,79,-0.6332282461225986],[124,140,64,-0.6487365774810314],[124,140,65,-0.6497094221413136],[124,140,66,-0.6489150784909725],[124,140,67,-0.6473943181335926],[124,140,68,-0.6465628109872341],[124,140,69,-0.6472879312932491],[124,140,70,-0.6490786522626877],[124,140,71,-0.6513243019580841],[124,140,72,-0.6543112844228745],[124,140,73,-0.656825702637434],[124,140,74,-0.6580843068659306],[124,140,75,-0.6578378677368164],[124,140,76,-0.6555516794323921],[124,140,77,-0.6513793431222439],[124,140,78,-0.6463584005832672],[124,140,79,-0.6410407461225986],[124,141,64,-0.6565490774810314],[124,141,65,-0.6575219221413136],[124,141,66,-0.6567275784909725],[124,141,67,-0.6552068181335926],[124,141,68,-0.6543753109872341],[124,141,69,-0.6551004312932491],[124,141,70,-0.6568911522626877],[124,141,71,-0.6591368019580841],[124,141,72,-0.6621237844228745],[124,141,73,-0.664638202637434],[124,141,74,-0.6658968068659306],[124,141,75,-0.6656503677368164],[124,141,76,-0.6633641794323921],[124,141,77,-0.6591918431222439],[124,141,78,-0.6541709005832672],[124,141,79,-0.6488532461225986],[124,142,64,-0.6643615774810314],[124,142,65,-0.6653344221413136],[124,142,66,-0.6645400784909725],[124,142,67,-0.6630193181335926],[124,142,68,-0.6621878109872341],[124,142,69,-0.6629129312932491],[124,142,70,-0.6647036522626877],[124,142,71,-0.6669493019580841],[124,142,72,-0.6699362844228745],[124,142,73,-0.672450702637434],[124,142,74,-0.6737093068659306],[124,142,75,-0.6734628677368164],[124,142,76,-0.6711766794323921],[124,142,77,-0.6670043431222439],[124,142,78,-0.6619834005832672],[124,142,79,-0.6566657461225986],[124,143,64,-0.6721740774810314],[124,143,65,-0.6731469221413136],[124,143,66,-0.6723525784909725],[124,143,67,-0.6708318181335926],[124,143,68,-0.6700003109872341],[124,143,69,-0.6707254312932491],[124,143,70,-0.6725161522626877],[124,143,71,-0.6747618019580841],[124,143,72,-0.6777487844228745],[124,143,73,-0.680263202637434],[124,143,74,-0.6815218068659306],[124,143,75,-0.6812753677368164],[124,143,76,-0.6789891794323921],[124,143,77,-0.6748168431222439],[124,143,78,-0.6697959005832672],[124,143,79,-0.6644782461225986],[124,144,64,-0.6799865774810314],[124,144,65,-0.6809594221413136],[124,144,66,-0.6801650784909725],[124,144,67,-0.6786443181335926],[124,144,68,-0.6778128109872341],[124,144,69,-0.6785379312932491],[124,144,70,-0.6803286522626877],[124,144,71,-0.6825743019580841],[124,144,72,-0.6855612844228745],[124,144,73,-0.688075702637434],[124,144,74,-0.6893343068659306],[124,144,75,-0.6890878677368164],[124,144,76,-0.6868016794323921],[124,144,77,-0.6826293431222439],[124,144,78,-0.6776084005832672],[124,144,79,-0.6722907461225986],[124,145,64,-0.6877990774810314],[124,145,65,-0.6887719221413136],[124,145,66,-0.6879775784909725],[124,145,67,-0.6864568181335926],[124,145,68,-0.6856253109872341],[124,145,69,-0.6863504312932491],[124,145,70,-0.6881411522626877],[124,145,71,-0.6903868019580841],[124,145,72,-0.6933737844228745],[124,145,73,-0.695888202637434],[124,145,74,-0.6971468068659306],[124,145,75,-0.6969003677368164],[124,145,76,-0.6946141794323921],[124,145,77,-0.6904418431222439],[124,145,78,-0.6854209005832672],[124,145,79,-0.6801032461225986],[124,146,64,-0.6956115774810314],[124,146,65,-0.6965844221413136],[124,146,66,-0.6957900784909725],[124,146,67,-0.6942693181335926],[124,146,68,-0.6934378109872341],[124,146,69,-0.6941629312932491],[124,146,70,-0.6959536522626877],[124,146,71,-0.6981993019580841],[124,146,72,-0.7011862844228745],[124,146,73,-0.703700702637434],[124,146,74,-0.7049593068659306],[124,146,75,-0.7047128677368164],[124,146,76,-0.7024266794323921],[124,146,77,-0.6982543431222439],[124,146,78,-0.6932334005832672],[124,146,79,-0.6879157461225986],[124,147,64,-0.7034240774810314],[124,147,65,-0.7043969221413136],[124,147,66,-0.7036025784909725],[124,147,67,-0.7020818181335926],[124,147,68,-0.7012503109872341],[124,147,69,-0.7019754312932491],[124,147,70,-0.7037661522626877],[124,147,71,-0.7060118019580841],[124,147,72,-0.7089987844228745],[124,147,73,-0.711513202637434],[124,147,74,-0.7127718068659306],[124,147,75,-0.7125253677368164],[124,147,76,-0.7102391794323921],[124,147,77,-0.7060668431222439],[124,147,78,-0.7010459005832672],[124,147,79,-0.6957282461225986],[124,148,64,-0.7112365774810314],[124,148,65,-0.7122094221413136],[124,148,66,-0.7114150784909725],[124,148,67,-0.7098943181335926],[124,148,68,-0.7090628109872341],[124,148,69,-0.7097879312932491],[124,148,70,-0.7115786522626877],[124,148,71,-0.7138243019580841],[124,148,72,-0.7168112844228745],[124,148,73,-0.719325702637434],[124,148,74,-0.7205843068659306],[124,148,75,-0.7203378677368164],[124,148,76,-0.7180516794323921],[124,148,77,-0.7138793431222439],[124,148,78,-0.7088584005832672],[124,148,79,-0.7035407461225986],[124,149,64,-0.7190490774810314],[124,149,65,-0.7200219221413136],[124,149,66,-0.7192275784909725],[124,149,67,-0.7177068181335926],[124,149,68,-0.7168753109872341],[124,149,69,-0.7176004312932491],[124,149,70,-0.7193911522626877],[124,149,71,-0.7216368019580841],[124,149,72,-0.7246237844228745],[124,149,73,-0.727138202637434],[124,149,74,-0.7283968068659306],[124,149,75,-0.7281503677368164],[124,149,76,-0.7258641794323921],[124,149,77,-0.7216918431222439],[124,149,78,-0.7166709005832672],[124,149,79,-0.7113532461225986],[124,150,64,-0.7268615774810314],[124,150,65,-0.7278344221413136],[124,150,66,-0.7270400784909725],[124,150,67,-0.7255193181335926],[124,150,68,-0.7246878109872341],[124,150,69,-0.7254129312932491],[124,150,70,-0.7272036522626877],[124,150,71,-0.7294493019580841],[124,150,72,-0.7324362844228745],[124,150,73,-0.734950702637434],[124,150,74,-0.7362093068659306],[124,150,75,-0.7359628677368164],[124,150,76,-0.7336766794323921],[124,150,77,-0.7295043431222439],[124,150,78,-0.7244834005832672],[124,150,79,-0.7191657461225986],[124,151,64,-0.7346740774810314],[124,151,65,-0.7356469221413136],[124,151,66,-0.7348525784909725],[124,151,67,-0.7333318181335926],[124,151,68,-0.7325003109872341],[124,151,69,-0.7332254312932491],[124,151,70,-0.7350161522626877],[124,151,71,-0.7372618019580841],[124,151,72,-0.7402487844228745],[124,151,73,-0.742763202637434],[124,151,74,-0.7440218068659306],[124,151,75,-0.7437753677368164],[124,151,76,-0.7414891794323921],[124,151,77,-0.7373168431222439],[124,151,78,-0.7322959005832672],[124,151,79,-0.7269782461225986],[124,152,64,-0.7424865774810314],[124,152,65,-0.7434594221413136],[124,152,66,-0.7426650784909725],[124,152,67,-0.7411443181335926],[124,152,68,-0.7403128109872341],[124,152,69,-0.7410379312932491],[124,152,70,-0.7428286522626877],[124,152,71,-0.7450743019580841],[124,152,72,-0.7480612844228745],[124,152,73,-0.750575702637434],[124,152,74,-0.7518343068659306],[124,152,75,-0.7515878677368164],[124,152,76,-0.7493016794323921],[124,152,77,-0.7451293431222439],[124,152,78,-0.7401084005832672],[124,152,79,-0.7347907461225986],[124,153,64,-0.7502990774810314],[124,153,65,-0.7512719221413136],[124,153,66,-0.7504775784909725],[124,153,67,-0.7489568181335926],[124,153,68,-0.7481253109872341],[124,153,69,-0.7488504312932491],[124,153,70,-0.7506411522626877],[124,153,71,-0.7528868019580841],[124,153,72,-0.7558737844228745],[124,153,73,-0.758388202637434],[124,153,74,-0.7596468068659306],[124,153,75,-0.7594003677368164],[124,153,76,-0.7571141794323921],[124,153,77,-0.7529418431222439],[124,153,78,-0.7479209005832672],[124,153,79,-0.7426032461225986],[124,154,64,-0.7581115774810314],[124,154,65,-0.7590844221413136],[124,154,66,-0.7582900784909725],[124,154,67,-0.7567693181335926],[124,154,68,-0.7559378109872341],[124,154,69,-0.7566629312932491],[124,154,70,-0.7584536522626877],[124,154,71,-0.7606993019580841],[124,154,72,-0.7636862844228745],[124,154,73,-0.766200702637434],[124,154,74,-0.7674593068659306],[124,154,75,-0.7672128677368164],[124,154,76,-0.7649266794323921],[124,154,77,-0.7607543431222439],[124,154,78,-0.7557334005832672],[124,154,79,-0.7504157461225986],[124,155,64,-0.7659240774810314],[124,155,65,-0.7668969221413136],[124,155,66,-0.7661025784909725],[124,155,67,-0.7645818181335926],[124,155,68,-0.7637503109872341],[124,155,69,-0.7644754312932491],[124,155,70,-0.7662661522626877],[124,155,71,-0.7685118019580841],[124,155,72,-0.7714987844228745],[124,155,73,-0.774013202637434],[124,155,74,-0.7752718068659306],[124,155,75,-0.7750253677368164],[124,155,76,-0.7727391794323921],[124,155,77,-0.7685668431222439],[124,155,78,-0.7635459005832672],[124,155,79,-0.7582282461225986],[124,156,64,-0.7737365774810314],[124,156,65,-0.7747094221413136],[124,156,66,-0.7739150784909725],[124,156,67,-0.7723943181335926],[124,156,68,-0.7715628109872341],[124,156,69,-0.7722879312932491],[124,156,70,-0.7740786522626877],[124,156,71,-0.7763243019580841],[124,156,72,-0.7793112844228745],[124,156,73,-0.781825702637434],[124,156,74,-0.7830843068659306],[124,156,75,-0.7828378677368164],[124,156,76,-0.7805516794323921],[124,156,77,-0.7763793431222439],[124,156,78,-0.7713584005832672],[124,156,79,-0.7660407461225986],[124,157,64,-0.7815490774810314],[124,157,65,-0.7825219221413136],[124,157,66,-0.7817275784909725],[124,157,67,-0.7802068181335926],[124,157,68,-0.7793753109872341],[124,157,69,-0.7801004312932491],[124,157,70,-0.7818911522626877],[124,157,71,-0.7841368019580841],[124,157,72,-0.7871237844228745],[124,157,73,-0.789638202637434],[124,157,74,-0.7908968068659306],[124,157,75,-0.7906503677368164],[124,157,76,-0.7883641794323921],[124,157,77,-0.7841918431222439],[124,157,78,-0.7791709005832672],[124,157,79,-0.7738532461225986],[124,158,64,-0.7893615774810314],[124,158,65,-0.7903344221413136],[124,158,66,-0.7895400784909725],[124,158,67,-0.7880193181335926],[124,158,68,-0.7871878109872341],[124,158,69,-0.7879129312932491],[124,158,70,-0.7897036522626877],[124,158,71,-0.7919493019580841],[124,158,72,-0.7949362844228745],[124,158,73,-0.797450702637434],[124,158,74,-0.7987093068659306],[124,158,75,-0.7984628677368164],[124,158,76,-0.7961766794323921],[124,158,77,-0.7920043431222439],[124,158,78,-0.7869834005832672],[124,158,79,-0.7816657461225986],[124,159,64,-0.7971740774810314],[124,159,65,-0.7981469221413136],[124,159,66,-0.7973525784909725],[124,159,67,-0.7958318181335926],[124,159,68,-0.7950003109872341],[124,159,69,-0.7957254312932491],[124,159,70,-0.7975161522626877],[124,159,71,-0.7997618019580841],[124,159,72,-0.8027487844228745],[124,159,73,-0.805263202637434],[124,159,74,-0.8065218068659306],[124,159,75,-0.8062753677368164],[124,159,76,-0.8039891794323921],[124,159,77,-0.7998168431222439],[124,159,78,-0.7947959005832672],[124,159,79,-0.7894782461225986],[124,160,64,-0.8049865774810314],[124,160,65,-0.8059594221413136],[124,160,66,-0.8051650784909725],[124,160,67,-0.8036443181335926],[124,160,68,-0.8028128109872341],[124,160,69,-0.8035379312932491],[124,160,70,-0.8053286522626877],[124,160,71,-0.8075743019580841],[124,160,72,-0.8105612844228745],[124,160,73,-0.813075702637434],[124,160,74,-0.8143343068659306],[124,160,75,-0.8140878677368164],[124,160,76,-0.8118016794323921],[124,160,77,-0.8076293431222439],[124,160,78,-0.8026084005832672],[124,160,79,-0.7972907461225986],[124,161,64,-0.8127990774810314],[124,161,65,-0.8137719221413136],[124,161,66,-0.8129775784909725],[124,161,67,-0.8114568181335926],[124,161,68,-0.8106253109872341],[124,161,69,-0.8113504312932491],[124,161,70,-0.8131411522626877],[124,161,71,-0.8153868019580841],[124,161,72,-0.8183737844228745],[124,161,73,-0.820888202637434],[124,161,74,-0.8221468068659306],[124,161,75,-0.8219003677368164],[124,161,76,-0.8196141794323921],[124,161,77,-0.8154418431222439],[124,161,78,-0.8104209005832672],[124,161,79,-0.8051032461225986],[124,162,64,-0.8206115774810314],[124,162,65,-0.8215844221413136],[124,162,66,-0.8207900784909725],[124,162,67,-0.8192693181335926],[124,162,68,-0.8184378109872341],[124,162,69,-0.8191629312932491],[124,162,70,-0.8209536522626877],[124,162,71,-0.8231993019580841],[124,162,72,-0.8261862844228745],[124,162,73,-0.828700702637434],[124,162,74,-0.8299593068659306],[124,162,75,-0.8297128677368164],[124,162,76,-0.8274266794323921],[124,162,77,-0.8232543431222439],[124,162,78,-0.8182334005832672],[124,162,79,-0.8129157461225986],[124,163,64,-0.8284240774810314],[124,163,65,-0.8293969221413136],[124,163,66,-0.8286025784909725],[124,163,67,-0.8270818181335926],[124,163,68,-0.8262503109872341],[124,163,69,-0.8269754312932491],[124,163,70,-0.8287661522626877],[124,163,71,-0.8310118019580841],[124,163,72,-0.8339987844228745],[124,163,73,-0.836513202637434],[124,163,74,-0.8377718068659306],[124,163,75,-0.8375253677368164],[124,163,76,-0.8352391794323921],[124,163,77,-0.8310668431222439],[124,163,78,-0.8260459005832672],[124,163,79,-0.8207282461225986],[124,164,64,-0.8362365774810314],[124,164,65,-0.8372094221413136],[124,164,66,-0.8364150784909725],[124,164,67,-0.8348943181335926],[124,164,68,-0.8340628109872341],[124,164,69,-0.8347879312932491],[124,164,70,-0.8365786522626877],[124,164,71,-0.8388243019580841],[124,164,72,-0.8418112844228745],[124,164,73,-0.844325702637434],[124,164,74,-0.8455843068659306],[124,164,75,-0.8453378677368164],[124,164,76,-0.8430516794323921],[124,164,77,-0.8388793431222439],[124,164,78,-0.8338584005832672],[124,164,79,-0.8285407461225986],[124,165,64,-0.8440490774810314],[124,165,65,-0.8450219221413136],[124,165,66,-0.8442275784909725],[124,165,67,-0.8427068181335926],[124,165,68,-0.8418753109872341],[124,165,69,-0.8426004312932491],[124,165,70,-0.8443911522626877],[124,165,71,-0.8466368019580841],[124,165,72,-0.8496237844228745],[124,165,73,-0.852138202637434],[124,165,74,-0.8533968068659306],[124,165,75,-0.8531503677368164],[124,165,76,-0.8508641794323921],[124,165,77,-0.8466918431222439],[124,165,78,-0.8416709005832672],[124,165,79,-0.8363532461225986],[124,166,64,-0.8518615774810314],[124,166,65,-0.8528344221413136],[124,166,66,-0.8520400784909725],[124,166,67,-0.8505193181335926],[124,166,68,-0.8496878109872341],[124,166,69,-0.8504129312932491],[124,166,70,-0.8522036522626877],[124,166,71,-0.8544493019580841],[124,166,72,-0.8574362844228745],[124,166,73,-0.859950702637434],[124,166,74,-0.8612093068659306],[124,166,75,-0.8609628677368164],[124,166,76,-0.8586766794323921],[124,166,77,-0.8545043431222439],[124,166,78,-0.8494834005832672],[124,166,79,-0.8441657461225986],[124,167,64,-0.8596740774810314],[124,167,65,-0.8606469221413136],[124,167,66,-0.8598525784909725],[124,167,67,-0.8583318181335926],[124,167,68,-0.8575003109872341],[124,167,69,-0.8582254312932491],[124,167,70,-0.8600161522626877],[124,167,71,-0.8622618019580841],[124,167,72,-0.8652487844228745],[124,167,73,-0.867763202637434],[124,167,74,-0.8690218068659306],[124,167,75,-0.8687753677368164],[124,167,76,-0.8664891794323921],[124,167,77,-0.8623168431222439],[124,167,78,-0.8572959005832672],[124,167,79,-0.8519782461225986],[124,168,64,-0.8674865774810314],[124,168,65,-0.8684594221413136],[124,168,66,-0.8676650784909725],[124,168,67,-0.8661443181335926],[124,168,68,-0.8653128109872341],[124,168,69,-0.8660379312932491],[124,168,70,-0.8678286522626877],[124,168,71,-0.8700743019580841],[124,168,72,-0.8730612844228745],[124,168,73,-0.875575702637434],[124,168,74,-0.8768343068659306],[124,168,75,-0.8765878677368164],[124,168,76,-0.8743016794323921],[124,168,77,-0.8701293431222439],[124,168,78,-0.8651084005832672],[124,168,79,-0.8597907461225986],[124,169,64,-0.8752990774810314],[124,169,65,-0.8762719221413136],[124,169,66,-0.8754775784909725],[124,169,67,-0.8739568181335926],[124,169,68,-0.8731253109872341],[124,169,69,-0.8738504312932491],[124,169,70,-0.8756411522626877],[124,169,71,-0.8778868019580841],[124,169,72,-0.8808737844228745],[124,169,73,-0.883388202637434],[124,169,74,-0.8846468068659306],[124,169,75,-0.8844003677368164],[124,169,76,-0.8821141794323921],[124,169,77,-0.8779418431222439],[124,169,78,-0.8729209005832672],[124,169,79,-0.8676032461225986],[124,170,64,-0.8831115774810314],[124,170,65,-0.8840844221413136],[124,170,66,-0.8832900784909725],[124,170,67,-0.8817693181335926],[124,170,68,-0.8809378109872341],[124,170,69,-0.8816629312932491],[124,170,70,-0.8834536522626877],[124,170,71,-0.8856993019580841],[124,170,72,-0.8886862844228745],[124,170,73,-0.891200702637434],[124,170,74,-0.8924593068659306],[124,170,75,-0.8922128677368164],[124,170,76,-0.8899266794323921],[124,170,77,-0.8857543431222439],[124,170,78,-0.8807334005832672],[124,170,79,-0.8754157461225986],[124,171,64,-0.8909240774810314],[124,171,65,-0.8918969221413136],[124,171,66,-0.8911025784909725],[124,171,67,-0.8895818181335926],[124,171,68,-0.8887503109872341],[124,171,69,-0.8894754312932491],[124,171,70,-0.8912661522626877],[124,171,71,-0.8935118019580841],[124,171,72,-0.8964987844228745],[124,171,73,-0.899013202637434],[124,171,74,-0.9002718068659306],[124,171,75,-0.9000253677368164],[124,171,76,-0.8977391794323921],[124,171,77,-0.8935668431222439],[124,171,78,-0.8885459005832672],[124,171,79,-0.8832282461225986],[124,172,64,-0.8987365774810314],[124,172,65,-0.8997094221413136],[124,172,66,-0.8989150784909725],[124,172,67,-0.8973943181335926],[124,172,68,-0.8965628109872341],[124,172,69,-0.8972879312932491],[124,172,70,-0.8990786522626877],[124,172,71,-0.9013243019580841],[124,172,72,-0.9043112844228745],[124,172,73,-0.906825702637434],[124,172,74,-0.9080843068659306],[124,172,75,-0.9078378677368164],[124,172,76,-0.9055516794323921],[124,172,77,-0.9013793431222439],[124,172,78,-0.8963584005832672],[124,172,79,-0.8910407461225986],[124,173,64,-0.9065490774810314],[124,173,65,-0.9075219221413136],[124,173,66,-0.9067275784909725],[124,173,67,-0.9052068181335926],[124,173,68,-0.9043753109872341],[124,173,69,-0.9051004312932491],[124,173,70,-0.9068911522626877],[124,173,71,-0.9091368019580841],[124,173,72,-0.9121237844228745],[124,173,73,-0.914638202637434],[124,173,74,-0.9158968068659306],[124,173,75,-0.9156503677368164],[124,173,76,-0.9133641794323921],[124,173,77,-0.9091918431222439],[124,173,78,-0.9041709005832672],[124,173,79,-0.8988532461225986],[124,174,64,-0.9143615774810314],[124,174,65,-0.9153344221413136],[124,174,66,-0.9145400784909725],[124,174,67,-0.9130193181335926],[124,174,68,-0.9121878109872341],[124,174,69,-0.9129129312932491],[124,174,70,-0.9147036522626877],[124,174,71,-0.9169493019580841],[124,174,72,-0.9199362844228745],[124,174,73,-0.922450702637434],[124,174,74,-0.9237093068659306],[124,174,75,-0.9234628677368164],[124,174,76,-0.9211766794323921],[124,174,77,-0.9170043431222439],[124,174,78,-0.9119834005832672],[124,174,79,-0.9066657461225986],[124,175,64,-0.9221740774810314],[124,175,65,-0.9231469221413136],[124,175,66,-0.9223525784909725],[124,175,67,-0.9208318181335926],[124,175,68,-0.9200003109872341],[124,175,69,-0.9207254312932491],[124,175,70,-0.9225161522626877],[124,175,71,-0.9247618019580841],[124,175,72,-0.9277487844228745],[124,175,73,-0.930263202637434],[124,175,74,-0.9315218068659306],[124,175,75,-0.9312753677368164],[124,175,76,-0.9289891794323921],[124,175,77,-0.9248168431222439],[124,175,78,-0.9197959005832672],[124,175,79,-0.9144782461225986],[124,176,64,-0.9299865774810314],[124,176,65,-0.9309594221413136],[124,176,66,-0.9301650784909725],[124,176,67,-0.9286443181335926],[124,176,68,-0.9278128109872341],[124,176,69,-0.9285379312932491],[124,176,70,-0.9303286522626877],[124,176,71,-0.9325743019580841],[124,176,72,-0.9355612844228745],[124,176,73,-0.938075702637434],[124,176,74,-0.9393343068659306],[124,176,75,-0.9390878677368164],[124,176,76,-0.9368016794323921],[124,176,77,-0.9326293431222439],[124,176,78,-0.9276084005832672],[124,176,79,-0.9222907461225986],[124,177,64,-0.9377990774810314],[124,177,65,-0.9387719221413136],[124,177,66,-0.9379775784909725],[124,177,67,-0.9364568181335926],[124,177,68,-0.9356253109872341],[124,177,69,-0.9363504312932491],[124,177,70,-0.9381411522626877],[124,177,71,-0.9403868019580841],[124,177,72,-0.9433737844228745],[124,177,73,-0.945888202637434],[124,177,74,-0.9471468068659306],[124,177,75,-0.9469003677368164],[124,177,76,-0.9446141794323921],[124,177,77,-0.9404418431222439],[124,177,78,-0.9354209005832672],[124,177,79,-0.9301032461225986],[124,178,64,-0.9456115774810314],[124,178,65,-0.9465844221413136],[124,178,66,-0.9457900784909725],[124,178,67,-0.9442693181335926],[124,178,68,-0.9434378109872341],[124,178,69,-0.9441629312932491],[124,178,70,-0.9459536522626877],[124,178,71,-0.9481993019580841],[124,178,72,-0.9511862844228745],[124,178,73,-0.953700702637434],[124,178,74,-0.9549593068659306],[124,178,75,-0.9547128677368164],[124,178,76,-0.9524266794323921],[124,178,77,-0.9482543431222439],[124,178,78,-0.9432334005832672],[124,178,79,-0.9379157461225986],[124,179,64,-0.9534240774810314],[124,179,65,-0.9543969221413136],[124,179,66,-0.9536025784909725],[124,179,67,-0.9520818181335926],[124,179,68,-0.9512503109872341],[124,179,69,-0.9519754312932491],[124,179,70,-0.9537661522626877],[124,179,71,-0.9560118019580841],[124,179,72,-0.9589987844228745],[124,179,73,-0.961513202637434],[124,179,74,-0.9627718068659306],[124,179,75,-0.9625253677368164],[124,179,76,-0.9602391794323921],[124,179,77,-0.9560668431222439],[124,179,78,-0.9510459005832672],[124,179,79,-0.9457282461225986],[124,180,64,-0.9612365774810314],[124,180,65,-0.9622094221413136],[124,180,66,-0.9614150784909725],[124,180,67,-0.9598943181335926],[124,180,68,-0.9590628109872341],[124,180,69,-0.9597879312932491],[124,180,70,-0.9615786522626877],[124,180,71,-0.9638243019580841],[124,180,72,-0.9668112844228745],[124,180,73,-0.969325702637434],[124,180,74,-0.9705843068659306],[124,180,75,-0.9703378677368164],[124,180,76,-0.9680516794323921],[124,180,77,-0.9638793431222439],[124,180,78,-0.9588584005832672],[124,180,79,-0.9535407461225986],[124,181,64,-0.9690490774810314],[124,181,65,-0.9700219221413136],[124,181,66,-0.9692275784909725],[124,181,67,-0.9677068181335926],[124,181,68,-0.9668753109872341],[124,181,69,-0.9676004312932491],[124,181,70,-0.9693911522626877],[124,181,71,-0.9716368019580841],[124,181,72,-0.9746237844228745],[124,181,73,-0.977138202637434],[124,181,74,-0.9783968068659306],[124,181,75,-0.9781503677368164],[124,181,76,-0.9758641794323921],[124,181,77,-0.9716918431222439],[124,181,78,-0.9666709005832672],[124,181,79,-0.9613532461225986],[124,182,64,-0.9768615774810314],[124,182,65,-0.9778344221413136],[124,182,66,-0.9770400784909725],[124,182,67,-0.9755193181335926],[124,182,68,-0.9746878109872341],[124,182,69,-0.9754129312932491],[124,182,70,-0.9772036522626877],[124,182,71,-0.9794493019580841],[124,182,72,-0.9824362844228745],[124,182,73,-0.984950702637434],[124,182,74,-0.9862093068659306],[124,182,75,-0.9859628677368164],[124,182,76,-0.9836766794323921],[124,182,77,-0.9795043431222439],[124,182,78,-0.9744834005832672],[124,182,79,-0.9691657461225986],[124,183,64,-0.9846740774810314],[124,183,65,-0.9856469221413136],[124,183,66,-0.9848525784909725],[124,183,67,-0.9833318181335926],[124,183,68,-0.9825003109872341],[124,183,69,-0.9832254312932491],[124,183,70,-0.9850161522626877],[124,183,71,-0.9872618019580841],[124,183,72,-0.9902487844228745],[124,183,73,-0.992763202637434],[124,183,74,-0.9940218068659306],[124,183,75,-0.9937753677368164],[124,183,76,-0.9914891794323921],[124,183,77,-0.9873168431222439],[124,183,78,-0.9822959005832672],[124,183,79,-0.9769782461225986],[124,184,64,-0.9924865774810314],[124,184,65,-0.9934594221413136],[124,184,66,-0.9926650784909725],[124,184,67,-0.9911443181335926],[124,184,68,-0.9903128109872341],[124,184,69,-0.9910379312932491],[124,184,70,-0.9928286522626877],[124,184,71,-0.9950743019580841],[124,184,72,-0.9980612844228745],[124,184,73,-1.000575702637434],[124,184,74,-1.0018343068659306],[124,184,75,-1.0015878677368164],[124,184,76,-0.9993016794323921],[124,184,77,-0.9951293431222439],[124,184,78,-0.9901084005832672],[124,184,79,-0.9847907461225986],[124,185,64,-1.0002990774810314],[124,185,65,-1.0012719221413136],[124,185,66,-1.0004775784909725],[124,185,67,-0.9989568181335926],[124,185,68,-0.9981253109872341],[124,185,69,-0.9988504312932491],[124,185,70,-1.0006411522626877],[124,185,71,-1.002886801958084],[124,185,72,-1.0058737844228745],[124,185,73,-1.008388202637434],[124,185,74,-1.0096468068659306],[124,185,75,-1.0094003677368164],[124,185,76,-1.0071141794323921],[124,185,77,-1.0029418431222439],[124,185,78,-0.9979209005832672],[124,185,79,-0.9926032461225986],[124,186,64,-1.0081115774810314],[124,186,65,-1.0090844221413136],[124,186,66,-1.0082900784909725],[124,186,67,-1.0067693181335926],[124,186,68,-1.0059378109872341],[124,186,69,-1.0066629312932491],[124,186,70,-1.0084536522626877],[124,186,71,-1.010699301958084],[124,186,72,-1.0136862844228745],[124,186,73,-1.016200702637434],[124,186,74,-1.0174593068659306],[124,186,75,-1.0172128677368164],[124,186,76,-1.0149266794323921],[124,186,77,-1.0107543431222439],[124,186,78,-1.0057334005832672],[124,186,79,-1.0004157461225986],[124,187,64,-1.0159240774810314],[124,187,65,-1.0168969221413136],[124,187,66,-1.0161025784909725],[124,187,67,-1.0145818181335926],[124,187,68,-1.0137503109872341],[124,187,69,-1.0144754312932491],[124,187,70,-1.0162661522626877],[124,187,71,-1.018511801958084],[124,187,72,-1.0214987844228745],[124,187,73,-1.024013202637434],[124,187,74,-1.0252718068659306],[124,187,75,-1.0250253677368164],[124,187,76,-1.0227391794323921],[124,187,77,-1.0185668431222439],[124,187,78,-1.0135459005832672],[124,187,79,-1.0082282461225986],[124,188,64,-1.0237365774810314],[124,188,65,-1.0247094221413136],[124,188,66,-1.0239150784909725],[124,188,67,-1.0223943181335926],[124,188,68,-1.0215628109872341],[124,188,69,-1.0222879312932491],[124,188,70,-1.0240786522626877],[124,188,71,-1.026324301958084],[124,188,72,-1.0293112844228745],[124,188,73,-1.031825702637434],[124,188,74,-1.0330843068659306],[124,188,75,-1.0328378677368164],[124,188,76,-1.0305516794323921],[124,188,77,-1.0263793431222439],[124,188,78,-1.0213584005832672],[124,188,79,-1.0160407461225986],[124,189,64,-1.0315490774810314],[124,189,65,-1.0325219221413136],[124,189,66,-1.0317275784909725],[124,189,67,-1.0302068181335926],[124,189,68,-1.0293753109872341],[124,189,69,-1.0301004312932491],[124,189,70,-1.0318911522626877],[124,189,71,-1.034136801958084],[124,189,72,-1.0371237844228745],[124,189,73,-1.039638202637434],[124,189,74,-1.0408968068659306],[124,189,75,-1.0406503677368164],[124,189,76,-1.0383641794323921],[124,189,77,-1.0341918431222439],[124,189,78,-1.0291709005832672],[124,189,79,-1.0238532461225986],[124,190,64,-1.0393615774810314],[124,190,65,-1.0403344221413136],[124,190,66,-1.0395400784909725],[124,190,67,-1.0380193181335926],[124,190,68,-1.0371878109872341],[124,190,69,-1.0379129312932491],[124,190,70,-1.0397036522626877],[124,190,71,-1.041949301958084],[124,190,72,-1.0449362844228745],[124,190,73,-1.047450702637434],[124,190,74,-1.0487093068659306],[124,190,75,-1.0484628677368164],[124,190,76,-1.0461766794323921],[124,190,77,-1.0420043431222439],[124,190,78,-1.0369834005832672],[124,190,79,-1.0316657461225986],[124,191,64,-1.0471740774810314],[124,191,65,-1.0481469221413136],[124,191,66,-1.0473525784909725],[124,191,67,-1.0458318181335926],[124,191,68,-1.0450003109872341],[124,191,69,-1.0457254312932491],[124,191,70,-1.0475161522626877],[124,191,71,-1.049761801958084],[124,191,72,-1.0527487844228745],[124,191,73,-1.055263202637434],[124,191,74,-1.0565218068659306],[124,191,75,-1.0562753677368164],[124,191,76,-1.0539891794323921],[124,191,77,-1.0498168431222439],[124,191,78,-1.0447959005832672],[124,191,79,-1.0394782461225986],[124,192,64,-1.0549865774810314],[124,192,65,-1.0559594221413136],[124,192,66,-1.0551650784909725],[124,192,67,-1.0536443181335926],[124,192,68,-1.0528128109872341],[124,192,69,-1.0535379312932491],[124,192,70,-1.0553286522626877],[124,192,71,-1.057574301958084],[124,192,72,-1.0605612844228745],[124,192,73,-1.063075702637434],[124,192,74,-1.0643343068659306],[124,192,75,-1.0640878677368164],[124,192,76,-1.0618016794323921],[124,192,77,-1.0576293431222439],[124,192,78,-1.0526084005832672],[124,192,79,-1.0472907461225986],[124,193,64,-1.0627990774810314],[124,193,65,-1.0637719221413136],[124,193,66,-1.0629775784909725],[124,193,67,-1.0614568181335926],[124,193,68,-1.0606253109872341],[124,193,69,-1.0613504312932491],[124,193,70,-1.0631411522626877],[124,193,71,-1.065386801958084],[124,193,72,-1.0683737844228745],[124,193,73,-1.070888202637434],[124,193,74,-1.0721468068659306],[124,193,75,-1.0719003677368164],[124,193,76,-1.0696141794323921],[124,193,77,-1.0654418431222439],[124,193,78,-1.0604209005832672],[124,193,79,-1.0551032461225986],[124,194,64,-1.0706115774810314],[124,194,65,-1.0715844221413136],[124,194,66,-1.0707900784909725],[124,194,67,-1.0692693181335926],[124,194,68,-1.0684378109872341],[124,194,69,-1.0691629312932491],[124,194,70,-1.0709536522626877],[124,194,71,-1.073199301958084],[124,194,72,-1.0761862844228745],[124,194,73,-1.078700702637434],[124,194,74,-1.0799593068659306],[124,194,75,-1.0797128677368164],[124,194,76,-1.0774266794323921],[124,194,77,-1.0732543431222439],[124,194,78,-1.0682334005832672],[124,194,79,-1.0629157461225986],[124,195,64,-1.0784240774810314],[124,195,65,-1.0793969221413136],[124,195,66,-1.0786025784909725],[124,195,67,-1.0770818181335926],[124,195,68,-1.0762503109872341],[124,195,69,-1.0769754312932491],[124,195,70,-1.0787661522626877],[124,195,71,-1.081011801958084],[124,195,72,-1.0839987844228745],[124,195,73,-1.086513202637434],[124,195,74,-1.0877718068659306],[124,195,75,-1.0875253677368164],[124,195,76,-1.0852391794323921],[124,195,77,-1.0810668431222439],[124,195,78,-1.0760459005832672],[124,195,79,-1.0707282461225986],[124,196,64,-1.0862365774810314],[124,196,65,-1.0872094221413136],[124,196,66,-1.0864150784909725],[124,196,67,-1.0848943181335926],[124,196,68,-1.0840628109872341],[124,196,69,-1.0847879312932491],[124,196,70,-1.0865786522626877],[124,196,71,-1.088824301958084],[124,196,72,-1.0918112844228745],[124,196,73,-1.094325702637434],[124,196,74,-1.0955843068659306],[124,196,75,-1.0953378677368164],[124,196,76,-1.0930516794323921],[124,196,77,-1.0888793431222439],[124,196,78,-1.0838584005832672],[124,196,79,-1.0785407461225986],[124,197,64,-1.0940490774810314],[124,197,65,-1.0950219221413136],[124,197,66,-1.0942275784909725],[124,197,67,-1.0927068181335926],[124,197,68,-1.0918753109872341],[124,197,69,-1.0926004312932491],[124,197,70,-1.0943911522626877],[124,197,71,-1.096636801958084],[124,197,72,-1.0996237844228745],[124,197,73,-1.102138202637434],[124,197,74,-1.1033968068659306],[124,197,75,-1.1031503677368164],[124,197,76,-1.1008641794323921],[124,197,77,-1.0966918431222439],[124,197,78,-1.0916709005832672],[124,197,79,-1.0863532461225986],[124,198,64,-1.1018615774810314],[124,198,65,-1.1028344221413136],[124,198,66,-1.1020400784909725],[124,198,67,-1.1005193181335926],[124,198,68,-1.0996878109872341],[124,198,69,-1.1004129312932491],[124,198,70,-1.1022036522626877],[124,198,71,-1.104449301958084],[124,198,72,-1.1074362844228745],[124,198,73,-1.109950702637434],[124,198,74,-1.1112093068659306],[124,198,75,-1.1109628677368164],[124,198,76,-1.1086766794323921],[124,198,77,-1.1045043431222439],[124,198,78,-1.0994834005832672],[124,198,79,-1.0941657461225986],[124,199,64,-1.1096740774810314],[124,199,65,-1.1106469221413136],[124,199,66,-1.1098525784909725],[124,199,67,-1.1083318181335926],[124,199,68,-1.1075003109872341],[124,199,69,-1.1082254312932491],[124,199,70,-1.1100161522626877],[124,199,71,-1.112261801958084],[124,199,72,-1.1152487844228745],[124,199,73,-1.117763202637434],[124,199,74,-1.1190218068659306],[124,199,75,-1.1187753677368164],[124,199,76,-1.1164891794323921],[124,199,77,-1.1123168431222439],[124,199,78,-1.1072959005832672],[124,199,79,-1.1019782461225986],[124,200,64,-1.1174865774810314],[124,200,65,-1.1184594221413136],[124,200,66,-1.1176650784909725],[124,200,67,-1.1161443181335926],[124,200,68,-1.1153128109872341],[124,200,69,-1.1160379312932491],[124,200,70,-1.1178286522626877],[124,200,71,-1.120074301958084],[124,200,72,-1.1230612844228745],[124,200,73,-1.125575702637434],[124,200,74,-1.1268343068659306],[124,200,75,-1.1265878677368164],[124,200,76,-1.1243016794323921],[124,200,77,-1.1201293431222439],[124,200,78,-1.1151084005832672],[124,200,79,-1.1097907461225986],[124,201,64,-1.1252990774810314],[124,201,65,-1.1262719221413136],[124,201,66,-1.1254775784909725],[124,201,67,-1.1239568181335926],[124,201,68,-1.1231253109872341],[124,201,69,-1.1238504312932491],[124,201,70,-1.1256411522626877],[124,201,71,-1.127886801958084],[124,201,72,-1.1308737844228745],[124,201,73,-1.133388202637434],[124,201,74,-1.1346468068659306],[124,201,75,-1.1344003677368164],[124,201,76,-1.1321141794323921],[124,201,77,-1.1279418431222439],[124,201,78,-1.1229209005832672],[124,201,79,-1.1176032461225986],[124,202,64,-1.1331115774810314],[124,202,65,-1.1340844221413136],[124,202,66,-1.1332900784909725],[124,202,67,-1.1317693181335926],[124,202,68,-1.1309378109872341],[124,202,69,-1.1316629312932491],[124,202,70,-1.1334536522626877],[124,202,71,-1.135699301958084],[124,202,72,-1.1386862844228745],[124,202,73,-1.141200702637434],[124,202,74,-1.1424593068659306],[124,202,75,-1.1422128677368164],[124,202,76,-1.1399266794323921],[124,202,77,-1.1357543431222439],[124,202,78,-1.1307334005832672],[124,202,79,-1.1254157461225986],[124,203,64,-1.1409240774810314],[124,203,65,-1.1418969221413136],[124,203,66,-1.1411025784909725],[124,203,67,-1.1395818181335926],[124,203,68,-1.1387503109872341],[124,203,69,-1.1394754312932491],[124,203,70,-1.1412661522626877],[124,203,71,-1.143511801958084],[124,203,72,-1.1464987844228745],[124,203,73,-1.149013202637434],[124,203,74,-1.1502718068659306],[124,203,75,-1.1500253677368164],[124,203,76,-1.1477391794323921],[124,203,77,-1.1435668431222439],[124,203,78,-1.1385459005832672],[124,203,79,-1.1332282461225986],[124,204,64,-1.1487365774810314],[124,204,65,-1.1497094221413136],[124,204,66,-1.1489150784909725],[124,204,67,-1.1473943181335926],[124,204,68,-1.1465628109872341],[124,204,69,-1.1472879312932491],[124,204,70,-1.1490786522626877],[124,204,71,-1.151324301958084],[124,204,72,-1.1543112844228745],[124,204,73,-1.156825702637434],[124,204,74,-1.1580843068659306],[124,204,75,-1.1578378677368164],[124,204,76,-1.1555516794323921],[124,204,77,-1.1513793431222439],[124,204,78,-1.1463584005832672],[124,204,79,-1.1410407461225986],[124,205,64,-1.1565490774810314],[124,205,65,-1.1575219221413136],[124,205,66,-1.1567275784909725],[124,205,67,-1.1552068181335926],[124,205,68,-1.1543753109872341],[124,205,69,-1.1551004312932491],[124,205,70,-1.1568911522626877],[124,205,71,-1.159136801958084],[124,205,72,-1.1621237844228745],[124,205,73,-1.164638202637434],[124,205,74,-1.1658968068659306],[124,205,75,-1.1656503677368164],[124,205,76,-1.1633641794323921],[124,205,77,-1.1591918431222439],[124,205,78,-1.1541709005832672],[124,205,79,-1.1488532461225986],[124,206,64,-1.1643615774810314],[124,206,65,-1.1653344221413136],[124,206,66,-1.1645400784909725],[124,206,67,-1.1630193181335926],[124,206,68,-1.1621878109872341],[124,206,69,-1.1629129312932491],[124,206,70,-1.1647036522626877],[124,206,71,-1.166949301958084],[124,206,72,-1.1699362844228745],[124,206,73,-1.172450702637434],[124,206,74,-1.1737093068659306],[124,206,75,-1.1734628677368164],[124,206,76,-1.1711766794323921],[124,206,77,-1.1670043431222439],[124,206,78,-1.1619834005832672],[124,206,79,-1.1566657461225986],[124,207,64,-1.1721740774810314],[124,207,65,-1.1731469221413136],[124,207,66,-1.1723525784909725],[124,207,67,-1.1708318181335926],[124,207,68,-1.1700003109872341],[124,207,69,-1.1707254312932491],[124,207,70,-1.1725161522626877],[124,207,71,-1.174761801958084],[124,207,72,-1.1777487844228745],[124,207,73,-1.180263202637434],[124,207,74,-1.1815218068659306],[124,207,75,-1.1812753677368164],[124,207,76,-1.1789891794323921],[124,207,77,-1.1748168431222439],[124,207,78,-1.1697959005832672],[124,207,79,-1.1644782461225986],[124,208,64,-1.1799865774810314],[124,208,65,-1.1809594221413136],[124,208,66,-1.1801650784909725],[124,208,67,-1.1786443181335926],[124,208,68,-1.1778128109872341],[124,208,69,-1.1785379312932491],[124,208,70,-1.1803286522626877],[124,208,71,-1.182574301958084],[124,208,72,-1.1855612844228745],[124,208,73,-1.188075702637434],[124,208,74,-1.1893343068659306],[124,208,75,-1.1890878677368164],[124,208,76,-1.1868016794323921],[124,208,77,-1.1826293431222439],[124,208,78,-1.1776084005832672],[124,208,79,-1.1722907461225986],[124,209,64,-1.1877990774810314],[124,209,65,-1.1887719221413136],[124,209,66,-1.1879775784909725],[124,209,67,-1.1864568181335926],[124,209,68,-1.1856253109872341],[124,209,69,-1.1863504312932491],[124,209,70,-1.1881411522626877],[124,209,71,-1.190386801958084],[124,209,72,-1.1933737844228745],[124,209,73,-1.195888202637434],[124,209,74,-1.1971468068659306],[124,209,75,-1.1969003677368164],[124,209,76,-1.1946141794323921],[124,209,77,-1.1904418431222439],[124,209,78,-1.1854209005832672],[124,209,79,-1.1801032461225986],[124,210,64,-1.1956115774810314],[124,210,65,-1.1965844221413136],[124,210,66,-1.1957900784909725],[124,210,67,-1.1942693181335926],[124,210,68,-1.1934378109872341],[124,210,69,-1.1941629312932491],[124,210,70,-1.1959536522626877],[124,210,71,-1.198199301958084],[124,210,72,-1.2011862844228745],[124,210,73,-1.203700702637434],[124,210,74,-1.2049593068659306],[124,210,75,-1.2047128677368164],[124,210,76,-1.2024266794323921],[124,210,77,-1.1982543431222439],[124,210,78,-1.1932334005832672],[124,210,79,-1.1879157461225986],[124,211,64,-1.2034240774810314],[124,211,65,-1.2043969221413136],[124,211,66,-1.2036025784909725],[124,211,67,-1.2020818181335926],[124,211,68,-1.2012503109872341],[124,211,69,-1.2019754312932491],[124,211,70,-1.2037661522626877],[124,211,71,-1.206011801958084],[124,211,72,-1.2089987844228745],[124,211,73,-1.211513202637434],[124,211,74,-1.2127718068659306],[124,211,75,-1.2125253677368164],[124,211,76,-1.2102391794323921],[124,211,77,-1.2060668431222439],[124,211,78,-1.2010459005832672],[124,211,79,-1.1957282461225986],[124,212,64,-1.2112365774810314],[124,212,65,-1.2122094221413136],[124,212,66,-1.2114150784909725],[124,212,67,-1.2098943181335926],[124,212,68,-1.2090628109872341],[124,212,69,-1.2097879312932491],[124,212,70,-1.2115786522626877],[124,212,71,-1.213824301958084],[124,212,72,-1.2168112844228745],[124,212,73,-1.219325702637434],[124,212,74,-1.2205843068659306],[124,212,75,-1.2203378677368164],[124,212,76,-1.2180516794323921],[124,212,77,-1.2138793431222439],[124,212,78,-1.2088584005832672],[124,212,79,-1.2035407461225986],[124,213,64,-1.2190490774810314],[124,213,65,-1.2200219221413136],[124,213,66,-1.2192275784909725],[124,213,67,-1.2177068181335926],[124,213,68,-1.2168753109872341],[124,213,69,-1.2176004312932491],[124,213,70,-1.2193911522626877],[124,213,71,-1.221636801958084],[124,213,72,-1.2246237844228745],[124,213,73,-1.227138202637434],[124,213,74,-1.2283968068659306],[124,213,75,-1.2281503677368164],[124,213,76,-1.2258641794323921],[124,213,77,-1.2216918431222439],[124,213,78,-1.2166709005832672],[124,213,79,-1.2113532461225986],[124,214,64,-1.2268615774810314],[124,214,65,-1.2278344221413136],[124,214,66,-1.2270400784909725],[124,214,67,-1.2255193181335926],[124,214,68,-1.2246878109872341],[124,214,69,-1.2254129312932491],[124,214,70,-1.2272036522626877],[124,214,71,-1.229449301958084],[124,214,72,-1.2324362844228745],[124,214,73,-1.234950702637434],[124,214,74,-1.2362093068659306],[124,214,75,-1.2359628677368164],[124,214,76,-1.2336766794323921],[124,214,77,-1.2295043431222439],[124,214,78,-1.2244834005832672],[124,214,79,-1.2191657461225986],[124,215,64,-1.2346740774810314],[124,215,65,-1.2356469221413136],[124,215,66,-1.2348525784909725],[124,215,67,-1.2333318181335926],[124,215,68,-1.2325003109872341],[124,215,69,-1.2332254312932491],[124,215,70,-1.2350161522626877],[124,215,71,-1.237261801958084],[124,215,72,-1.2402487844228745],[124,215,73,-1.242763202637434],[124,215,74,-1.2440218068659306],[124,215,75,-1.2437753677368164],[124,215,76,-1.2414891794323921],[124,215,77,-1.2373168431222439],[124,215,78,-1.2322959005832672],[124,215,79,-1.2269782461225986],[124,216,64,-1.2424865774810314],[124,216,65,-1.2434594221413136],[124,216,66,-1.2426650784909725],[124,216,67,-1.2411443181335926],[124,216,68,-1.2403128109872341],[124,216,69,-1.2410379312932491],[124,216,70,-1.2428286522626877],[124,216,71,-1.245074301958084],[124,216,72,-1.2480612844228745],[124,216,73,-1.250575702637434],[124,216,74,-1.2518343068659306],[124,216,75,-1.2515878677368164],[124,216,76,-1.2493016794323921],[124,216,77,-1.2451293431222439],[124,216,78,-1.2401084005832672],[124,216,79,-1.2347907461225986],[124,217,64,-1.2502990774810314],[124,217,65,-1.2512719221413136],[124,217,66,-1.2504775784909725],[124,217,67,-1.2489568181335926],[124,217,68,-1.2481253109872341],[124,217,69,-1.2488504312932491],[124,217,70,-1.2506411522626877],[124,217,71,-1.252886801958084],[124,217,72,-1.2558737844228745],[124,217,73,-1.258388202637434],[124,217,74,-1.2596468068659306],[124,217,75,-1.2594003677368164],[124,217,76,-1.2571141794323921],[124,217,77,-1.2529418431222439],[124,217,78,-1.2479209005832672],[124,217,79,-1.2426032461225986],[124,218,64,-1.2581115774810314],[124,218,65,-1.2590844221413136],[124,218,66,-1.2582900784909725],[124,218,67,-1.2567693181335926],[124,218,68,-1.2559378109872341],[124,218,69,-1.2566629312932491],[124,218,70,-1.2584536522626877],[124,218,71,-1.260699301958084],[124,218,72,-1.2636862844228745],[124,218,73,-1.266200702637434],[124,218,74,-1.2674593068659306],[124,218,75,-1.2672128677368164],[124,218,76,-1.2649266794323921],[124,218,77,-1.2607543431222439],[124,218,78,-1.2557334005832672],[124,218,79,-1.2504157461225986],[124,219,64,-1.2659240774810314],[124,219,65,-1.2668969221413136],[124,219,66,-1.2661025784909725],[124,219,67,-1.2645818181335926],[124,219,68,-1.2637503109872341],[124,219,69,-1.2644754312932491],[124,219,70,-1.2662661522626877],[124,219,71,-1.268511801958084],[124,219,72,-1.2714987844228745],[124,219,73,-1.274013202637434],[124,219,74,-1.2752718068659306],[124,219,75,-1.2750253677368164],[124,219,76,-1.2727391794323921],[124,219,77,-1.2685668431222439],[124,219,78,-1.2635459005832672],[124,219,79,-1.2582282461225986],[124,220,64,-1.2737365774810314],[124,220,65,-1.2747094221413136],[124,220,66,-1.2739150784909725],[124,220,67,-1.2723943181335926],[124,220,68,-1.2715628109872341],[124,220,69,-1.2722879312932491],[124,220,70,-1.2740786522626877],[124,220,71,-1.276324301958084],[124,220,72,-1.2793112844228745],[124,220,73,-1.281825702637434],[124,220,74,-1.2830843068659306],[124,220,75,-1.2828378677368164],[124,220,76,-1.2805516794323921],[124,220,77,-1.2763793431222439],[124,220,78,-1.2713584005832672],[124,220,79,-1.2660407461225986],[124,221,64,-1.2815490774810314],[124,221,65,-1.2825219221413136],[124,221,66,-1.2817275784909725],[124,221,67,-1.2802068181335926],[124,221,68,-1.2793753109872341],[124,221,69,-1.2801004312932491],[124,221,70,-1.2818911522626877],[124,221,71,-1.284136801958084],[124,221,72,-1.2871237844228745],[124,221,73,-1.289638202637434],[124,221,74,-1.2908968068659306],[124,221,75,-1.2906503677368164],[124,221,76,-1.2883641794323921],[124,221,77,-1.2841918431222439],[124,221,78,-1.2791709005832672],[124,221,79,-1.2738532461225986],[124,222,64,-1.2893615774810314],[124,222,65,-1.2903344221413136],[124,222,66,-1.2895400784909725],[124,222,67,-1.2880193181335926],[124,222,68,-1.2871878109872341],[124,222,69,-1.2879129312932491],[124,222,70,-1.2897036522626877],[124,222,71,-1.291949301958084],[124,222,72,-1.2949362844228745],[124,222,73,-1.297450702637434],[124,222,74,-1.2987093068659306],[124,222,75,-1.2984628677368164],[124,222,76,-1.2961766794323921],[124,222,77,-1.2920043431222439],[124,222,78,-1.2869834005832672],[124,222,79,-1.2816657461225986],[124,223,64,-1.2971740774810314],[124,223,65,-1.2981469221413136],[124,223,66,-1.2973525784909725],[124,223,67,-1.2958318181335926],[124,223,68,-1.2950003109872341],[124,223,69,-1.2957254312932491],[124,223,70,-1.2975161522626877],[124,223,71,-1.299761801958084],[124,223,72,-1.3027487844228745],[124,223,73,-1.305263202637434],[124,223,74,-1.3065218068659306],[124,223,75,-1.3062753677368164],[124,223,76,-1.3039891794323921],[124,223,77,-1.2998168431222439],[124,223,78,-1.2947959005832672],[124,223,79,-1.2894782461225986],[124,224,64,-1.3049865774810314],[124,224,65,-1.3059594221413136],[124,224,66,-1.3051650784909725],[124,224,67,-1.3036443181335926],[124,224,68,-1.3028128109872341],[124,224,69,-1.3035379312932491],[124,224,70,-1.3053286522626877],[124,224,71,-1.307574301958084],[124,224,72,-1.3105612844228745],[124,224,73,-1.313075702637434],[124,224,74,-1.3143343068659306],[124,224,75,-1.3140878677368164],[124,224,76,-1.3118016794323921],[124,224,77,-1.3076293431222439],[124,224,78,-1.3026084005832672],[124,224,79,-1.2972907461225986],[124,225,64,-1.3127990774810314],[124,225,65,-1.3137719221413136],[124,225,66,-1.3129775784909725],[124,225,67,-1.3114568181335926],[124,225,68,-1.3106253109872341],[124,225,69,-1.3113504312932491],[124,225,70,-1.3131411522626877],[124,225,71,-1.315386801958084],[124,225,72,-1.3183737844228745],[124,225,73,-1.320888202637434],[124,225,74,-1.3221468068659306],[124,225,75,-1.3219003677368164],[124,225,76,-1.3196141794323921],[124,225,77,-1.3154418431222439],[124,225,78,-1.3104209005832672],[124,225,79,-1.3051032461225986],[124,226,64,-1.3206115774810314],[124,226,65,-1.3215844221413136],[124,226,66,-1.3207900784909725],[124,226,67,-1.3192693181335926],[124,226,68,-1.3184378109872341],[124,226,69,-1.3191629312932491],[124,226,70,-1.3209536522626877],[124,226,71,-1.323199301958084],[124,226,72,-1.3261862844228745],[124,226,73,-1.328700702637434],[124,226,74,-1.3299593068659306],[124,226,75,-1.3297128677368164],[124,226,76,-1.3274266794323921],[124,226,77,-1.3232543431222439],[124,226,78,-1.3182334005832672],[124,226,79,-1.3129157461225986],[124,227,64,-1.3284240774810314],[124,227,65,-1.3293969221413136],[124,227,66,-1.3286025784909725],[124,227,67,-1.3270818181335926],[124,227,68,-1.3262503109872341],[124,227,69,-1.3269754312932491],[124,227,70,-1.3287661522626877],[124,227,71,-1.331011801958084],[124,227,72,-1.3339987844228745],[124,227,73,-1.336513202637434],[124,227,74,-1.3377718068659306],[124,227,75,-1.3375253677368164],[124,227,76,-1.3352391794323921],[124,227,77,-1.3310668431222439],[124,227,78,-1.3260459005832672],[124,227,79,-1.3207282461225986],[124,228,64,-1.3362365774810314],[124,228,65,-1.3372094221413136],[124,228,66,-1.3364150784909725],[124,228,67,-1.3348943181335926],[124,228,68,-1.3340628109872341],[124,228,69,-1.3347879312932491],[124,228,70,-1.3365786522626877],[124,228,71,-1.338824301958084],[124,228,72,-1.3418112844228745],[124,228,73,-1.344325702637434],[124,228,74,-1.3455843068659306],[124,228,75,-1.3453378677368164],[124,228,76,-1.3430516794323921],[124,228,77,-1.3388793431222439],[124,228,78,-1.3338584005832672],[124,228,79,-1.3285407461225986],[124,229,64,-1.3440490774810314],[124,229,65,-1.3450219221413136],[124,229,66,-1.3442275784909725],[124,229,67,-1.3427068181335926],[124,229,68,-1.3418753109872341],[124,229,69,-1.3426004312932491],[124,229,70,-1.3443911522626877],[124,229,71,-1.346636801958084],[124,229,72,-1.3496237844228745],[124,229,73,-1.352138202637434],[124,229,74,-1.3533968068659306],[124,229,75,-1.3531503677368164],[124,229,76,-1.3508641794323921],[124,229,77,-1.3466918431222439],[124,229,78,-1.3416709005832672],[124,229,79,-1.3363532461225986],[124,230,64,-1.3518615774810314],[124,230,65,-1.3528344221413136],[124,230,66,-1.3520400784909725],[124,230,67,-1.3505193181335926],[124,230,68,-1.3496878109872341],[124,230,69,-1.3504129312932491],[124,230,70,-1.3522036522626877],[124,230,71,-1.354449301958084],[124,230,72,-1.3574362844228745],[124,230,73,-1.359950702637434],[124,230,74,-1.3612093068659306],[124,230,75,-1.3609628677368164],[124,230,76,-1.3586766794323921],[124,230,77,-1.3545043431222439],[124,230,78,-1.3494834005832672],[124,230,79,-1.3441657461225986],[124,231,64,-1.3596740774810314],[124,231,65,-1.3606469221413136],[124,231,66,-1.3598525784909725],[124,231,67,-1.3583318181335926],[124,231,68,-1.3575003109872341],[124,231,69,-1.3582254312932491],[124,231,70,-1.3600161522626877],[124,231,71,-1.362261801958084],[124,231,72,-1.3652487844228745],[124,231,73,-1.367763202637434],[124,231,74,-1.3690218068659306],[124,231,75,-1.3687753677368164],[124,231,76,-1.3664891794323921],[124,231,77,-1.3623168431222439],[124,231,78,-1.3572959005832672],[124,231,79,-1.3519782461225986],[124,232,64,-1.3674865774810314],[124,232,65,-1.3684594221413136],[124,232,66,-1.3676650784909725],[124,232,67,-1.3661443181335926],[124,232,68,-1.3653128109872341],[124,232,69,-1.3660379312932491],[124,232,70,-1.3678286522626877],[124,232,71,-1.370074301958084],[124,232,72,-1.3730612844228745],[124,232,73,-1.375575702637434],[124,232,74,-1.3768343068659306],[124,232,75,-1.3765878677368164],[124,232,76,-1.3743016794323921],[124,232,77,-1.3701293431222439],[124,232,78,-1.3651084005832672],[124,232,79,-1.3597907461225986],[124,233,64,-1.3752990774810314],[124,233,65,-1.3762719221413136],[124,233,66,-1.3754775784909725],[124,233,67,-1.3739568181335926],[124,233,68,-1.3731253109872341],[124,233,69,-1.3738504312932491],[124,233,70,-1.3756411522626877],[124,233,71,-1.377886801958084],[124,233,72,-1.3808737844228745],[124,233,73,-1.383388202637434],[124,233,74,-1.3846468068659306],[124,233,75,-1.3844003677368164],[124,233,76,-1.3821141794323921],[124,233,77,-1.3779418431222439],[124,233,78,-1.3729209005832672],[124,233,79,-1.3676032461225986],[124,234,64,-1.3831115774810314],[124,234,65,-1.3840844221413136],[124,234,66,-1.3832900784909725],[124,234,67,-1.3817693181335926],[124,234,68,-1.3809378109872341],[124,234,69,-1.3816629312932491],[124,234,70,-1.3834536522626877],[124,234,71,-1.385699301958084],[124,234,72,-1.3886862844228745],[124,234,73,-1.391200702637434],[124,234,74,-1.3924593068659306],[124,234,75,-1.3922128677368164],[124,234,76,-1.3899266794323921],[124,234,77,-1.3857543431222439],[124,234,78,-1.3807334005832672],[124,234,79,-1.3754157461225986],[124,235,64,-1.3909240774810314],[124,235,65,-1.3918969221413136],[124,235,66,-1.3911025784909725],[124,235,67,-1.3895818181335926],[124,235,68,-1.3887503109872341],[124,235,69,-1.3894754312932491],[124,235,70,-1.3912661522626877],[124,235,71,-1.393511801958084],[124,235,72,-1.3964987844228745],[124,235,73,-1.399013202637434],[124,235,74,-1.4002718068659306],[124,235,75,-1.4000253677368164],[124,235,76,-1.3977391794323921],[124,235,77,-1.3935668431222439],[124,235,78,-1.3885459005832672],[124,235,79,-1.3832282461225986],[124,236,64,-1.3987365774810314],[124,236,65,-1.3997094221413136],[124,236,66,-1.3989150784909725],[124,236,67,-1.3973943181335926],[124,236,68,-1.3965628109872341],[124,236,69,-1.3972879312932491],[124,236,70,-1.3990786522626877],[124,236,71,-1.401324301958084],[124,236,72,-1.4043112844228745],[124,236,73,-1.406825702637434],[124,236,74,-1.4080843068659306],[124,236,75,-1.4078378677368164],[124,236,76,-1.4055516794323921],[124,236,77,-1.4013793431222439],[124,236,78,-1.3963584005832672],[124,236,79,-1.3910407461225986],[124,237,64,-1.4065490774810314],[124,237,65,-1.4075219221413136],[124,237,66,-1.4067275784909725],[124,237,67,-1.4052068181335926],[124,237,68,-1.4043753109872341],[124,237,69,-1.4051004312932491],[124,237,70,-1.4068911522626877],[124,237,71,-1.409136801958084],[124,237,72,-1.4121237844228745],[124,237,73,-1.414638202637434],[124,237,74,-1.4158968068659306],[124,237,75,-1.4156503677368164],[124,237,76,-1.4133641794323921],[124,237,77,-1.4091918431222439],[124,237,78,-1.4041709005832672],[124,237,79,-1.3988532461225986],[124,238,64,-1.4143615774810314],[124,238,65,-1.4153344221413136],[124,238,66,-1.4145400784909725],[124,238,67,-1.4130193181335926],[124,238,68,-1.4121878109872341],[124,238,69,-1.4129129312932491],[124,238,70,-1.4147036522626877],[124,238,71,-1.416949301958084],[124,238,72,-1.4199362844228745],[124,238,73,-1.422450702637434],[124,238,74,-1.4237093068659306],[124,238,75,-1.4234628677368164],[124,238,76,-1.4211766794323921],[124,238,77,-1.4170043431222439],[124,238,78,-1.4119834005832672],[124,238,79,-1.4066657461225986],[124,239,64,-1.4221740774810314],[124,239,65,-1.4231469221413136],[124,239,66,-1.4223525784909725],[124,239,67,-1.4208318181335926],[124,239,68,-1.4200003109872341],[124,239,69,-1.4207254312932491],[124,239,70,-1.4225161522626877],[124,239,71,-1.424761801958084],[124,239,72,-1.4277487844228745],[124,239,73,-1.430263202637434],[124,239,74,-1.4315218068659306],[124,239,75,-1.4312753677368164],[124,239,76,-1.4289891794323921],[124,239,77,-1.4248168431222439],[124,239,78,-1.4197959005832672],[124,239,79,-1.4144782461225986],[124,240,64,-1.4299865774810314],[124,240,65,-1.4309594221413136],[124,240,66,-1.4301650784909725],[124,240,67,-1.4286443181335926],[124,240,68,-1.4278128109872341],[124,240,69,-1.4285379312932491],[124,240,70,-1.4303286522626877],[124,240,71,-1.432574301958084],[124,240,72,-1.4355612844228745],[124,240,73,-1.438075702637434],[124,240,74,-1.4393343068659306],[124,240,75,-1.4390878677368164],[124,240,76,-1.4368016794323921],[124,240,77,-1.4326293431222439],[124,240,78,-1.4276084005832672],[124,240,79,-1.4222907461225986],[124,241,64,-1.4377990774810314],[124,241,65,-1.4387719221413136],[124,241,66,-1.4379775784909725],[124,241,67,-1.4364568181335926],[124,241,68,-1.4356253109872341],[124,241,69,-1.4363504312932491],[124,241,70,-1.4381411522626877],[124,241,71,-1.440386801958084],[124,241,72,-1.4433737844228745],[124,241,73,-1.445888202637434],[124,241,74,-1.4471468068659306],[124,241,75,-1.4469003677368164],[124,241,76,-1.4446141794323921],[124,241,77,-1.4404418431222439],[124,241,78,-1.4354209005832672],[124,241,79,-1.4301032461225986],[124,242,64,-1.4456115774810314],[124,242,65,-1.4465844221413136],[124,242,66,-1.4457900784909725],[124,242,67,-1.4442693181335926],[124,242,68,-1.4434378109872341],[124,242,69,-1.4441629312932491],[124,242,70,-1.4459536522626877],[124,242,71,-1.448199301958084],[124,242,72,-1.4511862844228745],[124,242,73,-1.453700702637434],[124,242,74,-1.4549593068659306],[124,242,75,-1.4547128677368164],[124,242,76,-1.4524266794323921],[124,242,77,-1.4482543431222439],[124,242,78,-1.4432334005832672],[124,242,79,-1.4379157461225986],[124,243,64,-1.4534240774810314],[124,243,65,-1.4543969221413136],[124,243,66,-1.4536025784909725],[124,243,67,-1.4520818181335926],[124,243,68,-1.4512503109872341],[124,243,69,-1.4519754312932491],[124,243,70,-1.4537661522626877],[124,243,71,-1.456011801958084],[124,243,72,-1.4589987844228745],[124,243,73,-1.461513202637434],[124,243,74,-1.4627718068659306],[124,243,75,-1.4625253677368164],[124,243,76,-1.4602391794323921],[124,243,77,-1.4560668431222439],[124,243,78,-1.4510459005832672],[124,243,79,-1.4457282461225986],[124,244,64,-1.4612365774810314],[124,244,65,-1.4622094221413136],[124,244,66,-1.4614150784909725],[124,244,67,-1.4598943181335926],[124,244,68,-1.4590628109872341],[124,244,69,-1.4597879312932491],[124,244,70,-1.4615786522626877],[124,244,71,-1.463824301958084],[124,244,72,-1.4668112844228745],[124,244,73,-1.469325702637434],[124,244,74,-1.4705843068659306],[124,244,75,-1.4703378677368164],[124,244,76,-1.4680516794323921],[124,244,77,-1.4638793431222439],[124,244,78,-1.4588584005832672],[124,244,79,-1.4535407461225986],[124,245,64,-1.4690490774810314],[124,245,65,-1.4700219221413136],[124,245,66,-1.4692275784909725],[124,245,67,-1.4677068181335926],[124,245,68,-1.4668753109872341],[124,245,69,-1.4676004312932491],[124,245,70,-1.4693911522626877],[124,245,71,-1.471636801958084],[124,245,72,-1.4746237844228745],[124,245,73,-1.477138202637434],[124,245,74,-1.4783968068659306],[124,245,75,-1.4781503677368164],[124,245,76,-1.4758641794323921],[124,245,77,-1.4716918431222439],[124,245,78,-1.4666709005832672],[124,245,79,-1.4613532461225986],[124,246,64,-1.4768615774810314],[124,246,65,-1.4778344221413136],[124,246,66,-1.4770400784909725],[124,246,67,-1.4755193181335926],[124,246,68,-1.4746878109872341],[124,246,69,-1.4754129312932491],[124,246,70,-1.4772036522626877],[124,246,71,-1.479449301958084],[124,246,72,-1.4824362844228745],[124,246,73,-1.484950702637434],[124,246,74,-1.4862093068659306],[124,246,75,-1.4859628677368164],[124,246,76,-1.4836766794323921],[124,246,77,-1.4795043431222439],[124,246,78,-1.4744834005832672],[124,246,79,-1.4691657461225986],[124,247,64,-1.4846740774810314],[124,247,65,-1.4856469221413136],[124,247,66,-1.4848525784909725],[124,247,67,-1.4833318181335926],[124,247,68,-1.4825003109872341],[124,247,69,-1.4832254312932491],[124,247,70,-1.4850161522626877],[124,247,71,-1.487261801958084],[124,247,72,-1.4902487844228745],[124,247,73,-1.492763202637434],[124,247,74,-1.4940218068659306],[124,247,75,-1.4937753677368164],[124,247,76,-1.4914891794323921],[124,247,77,-1.4873168431222439],[124,247,78,-1.4822959005832672],[124,247,79,-1.4769782461225986],[124,248,64,-1.4924865774810314],[124,248,65,-1.4934594221413136],[124,248,66,-1.4926650784909725],[124,248,67,-1.4911443181335926],[124,248,68,-1.4903128109872341],[124,248,69,-1.4910379312932491],[124,248,70,-1.4928286522626877],[124,248,71,-1.495074301958084],[124,248,72,-1.4980612844228745],[124,248,73,-1.500575702637434],[124,248,74,-1.5018343068659306],[124,248,75,-1.5015878677368164],[124,248,76,-1.4993016794323921],[124,248,77,-1.4951293431222439],[124,248,78,-1.4901084005832672],[124,248,79,-1.4847907461225986],[124,249,64,-1.5002990774810314],[124,249,65,-1.5012719221413136],[124,249,66,-1.5004775784909725],[124,249,67,-1.4989568181335926],[124,249,68,-1.4981253109872341],[124,249,69,-1.4988504312932491],[124,249,70,-1.5006411522626877],[124,249,71,-1.502886801958084],[124,249,72,-1.5058737844228745],[124,249,73,-1.508388202637434],[124,249,74,-1.5096468068659306],[124,249,75,-1.5094003677368164],[124,249,76,-1.5071141794323921],[124,249,77,-1.5029418431222439],[124,249,78,-1.4979209005832672],[124,249,79,-1.4926032461225986],[124,250,64,-1.5081115774810314],[124,250,65,-1.5090844221413136],[124,250,66,-1.5082900784909725],[124,250,67,-1.5067693181335926],[124,250,68,-1.5059378109872341],[124,250,69,-1.5066629312932491],[124,250,70,-1.5084536522626877],[124,250,71,-1.510699301958084],[124,250,72,-1.5136862844228745],[124,250,73,-1.516200702637434],[124,250,74,-1.5174593068659306],[124,250,75,-1.5172128677368164],[124,250,76,-1.5149266794323921],[124,250,77,-1.5107543431222439],[124,250,78,-1.5057334005832672],[124,250,79,-1.5004157461225986],[124,251,64,-1.5159240774810314],[124,251,65,-1.5168969221413136],[124,251,66,-1.5161025784909725],[124,251,67,-1.5145818181335926],[124,251,68,-1.5137503109872341],[124,251,69,-1.5144754312932491],[124,251,70,-1.5162661522626877],[124,251,71,-1.518511801958084],[124,251,72,-1.5214987844228745],[124,251,73,-1.524013202637434],[124,251,74,-1.5252718068659306],[124,251,75,-1.5250253677368164],[124,251,76,-1.5227391794323921],[124,251,77,-1.5185668431222439],[124,251,78,-1.5135459005832672],[124,251,79,-1.5082282461225986],[124,252,64,-1.5237365774810314],[124,252,65,-1.5247094221413136],[124,252,66,-1.5239150784909725],[124,252,67,-1.5223943181335926],[124,252,68,-1.5215628109872341],[124,252,69,-1.5222879312932491],[124,252,70,-1.5240786522626877],[124,252,71,-1.526324301958084],[124,252,72,-1.5293112844228745],[124,252,73,-1.531825702637434],[124,252,74,-1.5330843068659306],[124,252,75,-1.5328378677368164],[124,252,76,-1.5305516794323921],[124,252,77,-1.5263793431222439],[124,252,78,-1.5213584005832672],[124,252,79,-1.5160407461225986],[124,253,64,-1.5315490774810314],[124,253,65,-1.5325219221413136],[124,253,66,-1.5317275784909725],[124,253,67,-1.5302068181335926],[124,253,68,-1.5293753109872341],[124,253,69,-1.5301004312932491],[124,253,70,-1.5318911522626877],[124,253,71,-1.534136801958084],[124,253,72,-1.5371237844228745],[124,253,73,-1.539638202637434],[124,253,74,-1.5408968068659306],[124,253,75,-1.5406503677368164],[124,253,76,-1.5383641794323921],[124,253,77,-1.5341918431222439],[124,253,78,-1.5291709005832672],[124,253,79,-1.5238532461225986],[124,254,64,-1.5393615774810314],[124,254,65,-1.5403344221413136],[124,254,66,-1.5395400784909725],[124,254,67,-1.5380193181335926],[124,254,68,-1.5371878109872341],[124,254,69,-1.5379129312932491],[124,254,70,-1.5397036522626877],[124,254,71,-1.541949301958084],[124,254,72,-1.5449362844228745],[124,254,73,-1.547450702637434],[124,254,74,-1.5487093068659306],[124,254,75,-1.5484628677368164],[124,254,76,-1.5461766794323921],[124,254,77,-1.5420043431222439],[124,254,78,-1.5369834005832672],[124,254,79,-1.5316657461225986],[124,255,64,-1.5471740774810314],[124,255,65,-1.5481469221413136],[124,255,66,-1.5473525784909725],[124,255,67,-1.5458318181335926],[124,255,68,-1.5450003109872341],[124,255,69,-1.5457254312932491],[124,255,70,-1.5475161522626877],[124,255,71,-1.549761801958084],[124,255,72,-1.5527487844228745],[124,255,73,-1.555263202637434],[124,255,74,-1.5565218068659306],[124,255,75,-1.5562753677368164],[124,255,76,-1.5539891794323921],[124,255,77,-1.5498168431222439],[124,255,78,-1.5447959005832672],[124,255,79,-1.5394782461225986],[124,256,64,-1.5549865774810314],[124,256,65,-1.5559594221413136],[124,256,66,-1.5551650784909725],[124,256,67,-1.5536443181335926],[124,256,68,-1.5528128109872341],[124,256,69,-1.5535379312932491],[124,256,70,-1.5553286522626877],[124,256,71,-1.557574301958084],[124,256,72,-1.5605612844228745],[124,256,73,-1.563075702637434],[124,256,74,-1.5643343068659306],[124,256,75,-1.5640878677368164],[124,256,76,-1.5618016794323921],[124,256,77,-1.5576293431222439],[124,256,78,-1.5526084005832672],[124,256,79,-1.5472907461225986],[124,257,64,-1.5627990774810314],[124,257,65,-1.5637719221413136],[124,257,66,-1.5629775784909725],[124,257,67,-1.5614568181335926],[124,257,68,-1.5606253109872341],[124,257,69,-1.5613504312932491],[124,257,70,-1.5631411522626877],[124,257,71,-1.565386801958084],[124,257,72,-1.5683737844228745],[124,257,73,-1.570888202637434],[124,257,74,-1.5721468068659306],[124,257,75,-1.5719003677368164],[124,257,76,-1.5696141794323921],[124,257,77,-1.5654418431222439],[124,257,78,-1.5604209005832672],[124,257,79,-1.5551032461225986],[124,258,64,-1.5706115774810314],[124,258,65,-1.5715844221413136],[124,258,66,-1.5707900784909725],[124,258,67,-1.5692693181335926],[124,258,68,-1.5684378109872341],[124,258,69,-1.5691629312932491],[124,258,70,-1.5709536522626877],[124,258,71,-1.573199301958084],[124,258,72,-1.5761862844228745],[124,258,73,-1.578700702637434],[124,258,74,-1.5799593068659306],[124,258,75,-1.5797128677368164],[124,258,76,-1.5774266794323921],[124,258,77,-1.5732543431222439],[124,258,78,-1.5682334005832672],[124,258,79,-1.5629157461225986],[124,259,64,-1.5784240774810314],[124,259,65,-1.5793969221413136],[124,259,66,-1.5786025784909725],[124,259,67,-1.5770818181335926],[124,259,68,-1.5762503109872341],[124,259,69,-1.5769754312932491],[124,259,70,-1.5787661522626877],[124,259,71,-1.581011801958084],[124,259,72,-1.5839987844228745],[124,259,73,-1.586513202637434],[124,259,74,-1.5877718068659306],[124,259,75,-1.5875253677368164],[124,259,76,-1.5852391794323921],[124,259,77,-1.5810668431222439],[124,259,78,-1.5760459005832672],[124,259,79,-1.5707282461225986],[124,260,64,-1.5862365774810314],[124,260,65,-1.5872094221413136],[124,260,66,-1.5864150784909725],[124,260,67,-1.5848943181335926],[124,260,68,-1.5840628109872341],[124,260,69,-1.5847879312932491],[124,260,70,-1.5865786522626877],[124,260,71,-1.588824301958084],[124,260,72,-1.5918112844228745],[124,260,73,-1.594325702637434],[124,260,74,-1.5955843068659306],[124,260,75,-1.5953378677368164],[124,260,76,-1.5930516794323921],[124,260,77,-1.5888793431222439],[124,260,78,-1.5838584005832672],[124,260,79,-1.5785407461225986],[124,261,64,-1.5940490774810314],[124,261,65,-1.5950219221413136],[124,261,66,-1.5942275784909725],[124,261,67,-1.5927068181335926],[124,261,68,-1.5918753109872341],[124,261,69,-1.5926004312932491],[124,261,70,-1.5943911522626877],[124,261,71,-1.596636801958084],[124,261,72,-1.5996237844228745],[124,261,73,-1.602138202637434],[124,261,74,-1.6033968068659306],[124,261,75,-1.6031503677368164],[124,261,76,-1.6008641794323921],[124,261,77,-1.5966918431222439],[124,261,78,-1.5916709005832672],[124,261,79,-1.5863532461225986],[124,262,64,-1.6018615774810314],[124,262,65,-1.6028344221413136],[124,262,66,-1.6020400784909725],[124,262,67,-1.6005193181335926],[124,262,68,-1.5996878109872341],[124,262,69,-1.6004129312932491],[124,262,70,-1.6022036522626877],[124,262,71,-1.604449301958084],[124,262,72,-1.6074362844228745],[124,262,73,-1.609950702637434],[124,262,74,-1.6112093068659306],[124,262,75,-1.6109628677368164],[124,262,76,-1.6086766794323921],[124,262,77,-1.6045043431222439],[124,262,78,-1.5994834005832672],[124,262,79,-1.5941657461225986],[124,263,64,-1.6096740774810314],[124,263,65,-1.6106469221413136],[124,263,66,-1.6098525784909725],[124,263,67,-1.6083318181335926],[124,263,68,-1.6075003109872341],[124,263,69,-1.6082254312932491],[124,263,70,-1.6100161522626877],[124,263,71,-1.612261801958084],[124,263,72,-1.6152487844228745],[124,263,73,-1.617763202637434],[124,263,74,-1.6190218068659306],[124,263,75,-1.6187753677368164],[124,263,76,-1.6164891794323921],[124,263,77,-1.6123168431222439],[124,263,78,-1.6072959005832672],[124,263,79,-1.6019782461225986],[124,264,64,-1.6174865774810314],[124,264,65,-1.6184594221413136],[124,264,66,-1.6176650784909725],[124,264,67,-1.6161443181335926],[124,264,68,-1.6153128109872341],[124,264,69,-1.6160379312932491],[124,264,70,-1.6178286522626877],[124,264,71,-1.620074301958084],[124,264,72,-1.6230612844228745],[124,264,73,-1.625575702637434],[124,264,74,-1.6268343068659306],[124,264,75,-1.6265878677368164],[124,264,76,-1.6243016794323921],[124,264,77,-1.6201293431222439],[124,264,78,-1.6151084005832672],[124,264,79,-1.6097907461225986],[124,265,64,-1.6252990774810314],[124,265,65,-1.6262719221413136],[124,265,66,-1.6254775784909725],[124,265,67,-1.6239568181335926],[124,265,68,-1.6231253109872341],[124,265,69,-1.6238504312932491],[124,265,70,-1.6256411522626877],[124,265,71,-1.627886801958084],[124,265,72,-1.6308737844228745],[124,265,73,-1.633388202637434],[124,265,74,-1.6346468068659306],[124,265,75,-1.6344003677368164],[124,265,76,-1.6321141794323921],[124,265,77,-1.6279418431222439],[124,265,78,-1.6229209005832672],[124,265,79,-1.6176032461225986],[124,266,64,-1.6331115774810314],[124,266,65,-1.6340844221413136],[124,266,66,-1.6332900784909725],[124,266,67,-1.6317693181335926],[124,266,68,-1.6309378109872341],[124,266,69,-1.6316629312932491],[124,266,70,-1.6334536522626877],[124,266,71,-1.635699301958084],[124,266,72,-1.6386862844228745],[124,266,73,-1.641200702637434],[124,266,74,-1.6424593068659306],[124,266,75,-1.6422128677368164],[124,266,76,-1.6399266794323921],[124,266,77,-1.6357543431222439],[124,266,78,-1.6307334005832672],[124,266,79,-1.6254157461225986],[124,267,64,-1.6409240774810314],[124,267,65,-1.6418969221413136],[124,267,66,-1.6411025784909725],[124,267,67,-1.6395818181335926],[124,267,68,-1.6387503109872341],[124,267,69,-1.6394754312932491],[124,267,70,-1.6412661522626877],[124,267,71,-1.643511801958084],[124,267,72,-1.6464987844228745],[124,267,73,-1.649013202637434],[124,267,74,-1.6502718068659306],[124,267,75,-1.6500253677368164],[124,267,76,-1.6477391794323921],[124,267,77,-1.6435668431222439],[124,267,78,-1.6385459005832672],[124,267,79,-1.6332282461225986],[124,268,64,-1.6487365774810314],[124,268,65,-1.6497094221413136],[124,268,66,-1.6489150784909725],[124,268,67,-1.6473943181335926],[124,268,68,-1.6465628109872341],[124,268,69,-1.6472879312932491],[124,268,70,-1.6490786522626877],[124,268,71,-1.651324301958084],[124,268,72,-1.6543112844228745],[124,268,73,-1.656825702637434],[124,268,74,-1.6580843068659306],[124,268,75,-1.6578378677368164],[124,268,76,-1.6555516794323921],[124,268,77,-1.6513793431222439],[124,268,78,-1.6463584005832672],[124,268,79,-1.6410407461225986],[124,269,64,-1.6565490774810314],[124,269,65,-1.6575219221413136],[124,269,66,-1.6567275784909725],[124,269,67,-1.6552068181335926],[124,269,68,-1.6543753109872341],[124,269,69,-1.6551004312932491],[124,269,70,-1.6568911522626877],[124,269,71,-1.659136801958084],[124,269,72,-1.6621237844228745],[124,269,73,-1.664638202637434],[124,269,74,-1.6658968068659306],[124,269,75,-1.6656503677368164],[124,269,76,-1.6633641794323921],[124,269,77,-1.6591918431222439],[124,269,78,-1.6541709005832672],[124,269,79,-1.6488532461225986],[124,270,64,-1.6643615774810314],[124,270,65,-1.6653344221413136],[124,270,66,-1.6645400784909725],[124,270,67,-1.6630193181335926],[124,270,68,-1.6621878109872341],[124,270,69,-1.6629129312932491],[124,270,70,-1.6647036522626877],[124,270,71,-1.666949301958084],[124,270,72,-1.6699362844228745],[124,270,73,-1.672450702637434],[124,270,74,-1.6737093068659306],[124,270,75,-1.6734628677368164],[124,270,76,-1.6711766794323921],[124,270,77,-1.6670043431222439],[124,270,78,-1.6619834005832672],[124,270,79,-1.6566657461225986],[124,271,64,-1.6721740774810314],[124,271,65,-1.6731469221413136],[124,271,66,-1.6723525784909725],[124,271,67,-1.6708318181335926],[124,271,68,-1.6700003109872341],[124,271,69,-1.6707254312932491],[124,271,70,-1.6725161522626877],[124,271,71,-1.674761801958084],[124,271,72,-1.6777487844228745],[124,271,73,-1.680263202637434],[124,271,74,-1.6815218068659306],[124,271,75,-1.6812753677368164],[124,271,76,-1.6789891794323921],[124,271,77,-1.6748168431222439],[124,271,78,-1.6697959005832672],[124,271,79,-1.6644782461225986],[124,272,64,-1.6799865774810314],[124,272,65,-1.6809594221413136],[124,272,66,-1.6801650784909725],[124,272,67,-1.6786443181335926],[124,272,68,-1.6778128109872341],[124,272,69,-1.6785379312932491],[124,272,70,-1.6803286522626877],[124,272,71,-1.682574301958084],[124,272,72,-1.6855612844228745],[124,272,73,-1.688075702637434],[124,272,74,-1.6893343068659306],[124,272,75,-1.6890878677368164],[124,272,76,-1.6868016794323921],[124,272,77,-1.6826293431222439],[124,272,78,-1.6776084005832672],[124,272,79,-1.6722907461225986],[124,273,64,-1.6877990774810314],[124,273,65,-1.6887719221413136],[124,273,66,-1.6879775784909725],[124,273,67,-1.6864568181335926],[124,273,68,-1.6856253109872341],[124,273,69,-1.6863504312932491],[124,273,70,-1.6881411522626877],[124,273,71,-1.690386801958084],[124,273,72,-1.6933737844228745],[124,273,73,-1.695888202637434],[124,273,74,-1.6971468068659306],[124,273,75,-1.6969003677368164],[124,273,76,-1.6946141794323921],[124,273,77,-1.6904418431222439],[124,273,78,-1.6854209005832672],[124,273,79,-1.6801032461225986],[124,274,64,-1.6956115774810314],[124,274,65,-1.6965844221413136],[124,274,66,-1.6957900784909725],[124,274,67,-1.6942693181335926],[124,274,68,-1.6934378109872341],[124,274,69,-1.6941629312932491],[124,274,70,-1.6959536522626877],[124,274,71,-1.698199301958084],[124,274,72,-1.7011862844228745],[124,274,73,-1.703700702637434],[124,274,74,-1.7049593068659306],[124,274,75,-1.7047128677368164],[124,274,76,-1.7024266794323921],[124,274,77,-1.6982543431222439],[124,274,78,-1.6932334005832672],[124,274,79,-1.6879157461225986],[124,275,64,-1.7034240774810314],[124,275,65,-1.7043969221413136],[124,275,66,-1.7036025784909725],[124,275,67,-1.7020818181335926],[124,275,68,-1.7012503109872341],[124,275,69,-1.7019754312932491],[124,275,70,-1.7037661522626877],[124,275,71,-1.706011801958084],[124,275,72,-1.7089987844228745],[124,275,73,-1.711513202637434],[124,275,74,-1.7127718068659306],[124,275,75,-1.7125253677368164],[124,275,76,-1.7102391794323921],[124,275,77,-1.7060668431222439],[124,275,78,-1.7010459005832672],[124,275,79,-1.6957282461225986],[124,276,64,-1.7112365774810314],[124,276,65,-1.7122094221413136],[124,276,66,-1.7114150784909725],[124,276,67,-1.7098943181335926],[124,276,68,-1.7090628109872341],[124,276,69,-1.7097879312932491],[124,276,70,-1.7115786522626877],[124,276,71,-1.713824301958084],[124,276,72,-1.7168112844228745],[124,276,73,-1.719325702637434],[124,276,74,-1.7205843068659306],[124,276,75,-1.7203378677368164],[124,276,76,-1.7180516794323921],[124,276,77,-1.7138793431222439],[124,276,78,-1.7088584005832672],[124,276,79,-1.7035407461225986],[124,277,64,-1.7190490774810314],[124,277,65,-1.7200219221413136],[124,277,66,-1.7192275784909725],[124,277,67,-1.7177068181335926],[124,277,68,-1.7168753109872341],[124,277,69,-1.7176004312932491],[124,277,70,-1.7193911522626877],[124,277,71,-1.721636801958084],[124,277,72,-1.7246237844228745],[124,277,73,-1.727138202637434],[124,277,74,-1.7283968068659306],[124,277,75,-1.7281503677368164],[124,277,76,-1.7258641794323921],[124,277,77,-1.7216918431222439],[124,277,78,-1.7166709005832672],[124,277,79,-1.7113532461225986],[124,278,64,-1.7268615774810314],[124,278,65,-1.7278344221413136],[124,278,66,-1.7270400784909725],[124,278,67,-1.7255193181335926],[124,278,68,-1.7246878109872341],[124,278,69,-1.7254129312932491],[124,278,70,-1.7272036522626877],[124,278,71,-1.729449301958084],[124,278,72,-1.7324362844228745],[124,278,73,-1.734950702637434],[124,278,74,-1.7362093068659306],[124,278,75,-1.7359628677368164],[124,278,76,-1.7336766794323921],[124,278,77,-1.7295043431222439],[124,278,78,-1.7244834005832672],[124,278,79,-1.7191657461225986],[124,279,64,-1.7346740774810314],[124,279,65,-1.7356469221413136],[124,279,66,-1.7348525784909725],[124,279,67,-1.7333318181335926],[124,279,68,-1.7325003109872341],[124,279,69,-1.7332254312932491],[124,279,70,-1.7350161522626877],[124,279,71,-1.737261801958084],[124,279,72,-1.7402487844228745],[124,279,73,-1.742763202637434],[124,279,74,-1.7440218068659306],[124,279,75,-1.7437753677368164],[124,279,76,-1.7414891794323921],[124,279,77,-1.7373168431222439],[124,279,78,-1.7322959005832672],[124,279,79,-1.7269782461225986],[124,280,64,-1.7424865774810314],[124,280,65,-1.7434594221413136],[124,280,66,-1.7426650784909725],[124,280,67,-1.7411443181335926],[124,280,68,-1.7403128109872341],[124,280,69,-1.7410379312932491],[124,280,70,-1.7428286522626877],[124,280,71,-1.745074301958084],[124,280,72,-1.7480612844228745],[124,280,73,-1.750575702637434],[124,280,74,-1.7518343068659306],[124,280,75,-1.7515878677368164],[124,280,76,-1.7493016794323921],[124,280,77,-1.7451293431222439],[124,280,78,-1.7401084005832672],[124,280,79,-1.7347907461225986],[124,281,64,-1.7502990774810314],[124,281,65,-1.7512719221413136],[124,281,66,-1.7504775784909725],[124,281,67,-1.7489568181335926],[124,281,68,-1.7481253109872341],[124,281,69,-1.7488504312932491],[124,281,70,-1.7506411522626877],[124,281,71,-1.752886801958084],[124,281,72,-1.7558737844228745],[124,281,73,-1.758388202637434],[124,281,74,-1.7596468068659306],[124,281,75,-1.7594003677368164],[124,281,76,-1.7571141794323921],[124,281,77,-1.7529418431222439],[124,281,78,-1.7479209005832672],[124,281,79,-1.7426032461225986],[124,282,64,-1.7581115774810314],[124,282,65,-1.7590844221413136],[124,282,66,-1.7582900784909725],[124,282,67,-1.7567693181335926],[124,282,68,-1.7559378109872341],[124,282,69,-1.7566629312932491],[124,282,70,-1.7584536522626877],[124,282,71,-1.760699301958084],[124,282,72,-1.7636862844228745],[124,282,73,-1.766200702637434],[124,282,74,-1.7674593068659306],[124,282,75,-1.7672128677368164],[124,282,76,-1.7649266794323921],[124,282,77,-1.7607543431222439],[124,282,78,-1.7557334005832672],[124,282,79,-1.7504157461225986],[124,283,64,-1.7659240774810314],[124,283,65,-1.7668969221413136],[124,283,66,-1.7661025784909725],[124,283,67,-1.7645818181335926],[124,283,68,-1.7637503109872341],[124,283,69,-1.7644754312932491],[124,283,70,-1.7662661522626877],[124,283,71,-1.768511801958084],[124,283,72,-1.7714987844228745],[124,283,73,-1.774013202637434],[124,283,74,-1.7752718068659306],[124,283,75,-1.7750253677368164],[124,283,76,-1.7727391794323921],[124,283,77,-1.7685668431222439],[124,283,78,-1.7635459005832672],[124,283,79,-1.7582282461225986],[124,284,64,-1.7737365774810314],[124,284,65,-1.7747094221413136],[124,284,66,-1.7739150784909725],[124,284,67,-1.7723943181335926],[124,284,68,-1.7715628109872341],[124,284,69,-1.7722879312932491],[124,284,70,-1.7740786522626877],[124,284,71,-1.776324301958084],[124,284,72,-1.7793112844228745],[124,284,73,-1.781825702637434],[124,284,74,-1.7830843068659306],[124,284,75,-1.7828378677368164],[124,284,76,-1.7805516794323921],[124,284,77,-1.7763793431222439],[124,284,78,-1.7713584005832672],[124,284,79,-1.7660407461225986],[124,285,64,-1.7815490774810314],[124,285,65,-1.7825219221413136],[124,285,66,-1.7817275784909725],[124,285,67,-1.7802068181335926],[124,285,68,-1.7793753109872341],[124,285,69,-1.7801004312932491],[124,285,70,-1.7818911522626877],[124,285,71,-1.784136801958084],[124,285,72,-1.7871237844228745],[124,285,73,-1.789638202637434],[124,285,74,-1.7908968068659306],[124,285,75,-1.7906503677368164],[124,285,76,-1.7883641794323921],[124,285,77,-1.7841918431222439],[124,285,78,-1.7791709005832672],[124,285,79,-1.7738532461225986],[124,286,64,-1.7893615774810314],[124,286,65,-1.7903344221413136],[124,286,66,-1.7895400784909725],[124,286,67,-1.7880193181335926],[124,286,68,-1.7871878109872341],[124,286,69,-1.7879129312932491],[124,286,70,-1.7897036522626877],[124,286,71,-1.791949301958084],[124,286,72,-1.7949362844228745],[124,286,73,-1.797450702637434],[124,286,74,-1.7987093068659306],[124,286,75,-1.7984628677368164],[124,286,76,-1.7961766794323921],[124,286,77,-1.7920043431222439],[124,286,78,-1.7869834005832672],[124,286,79,-1.7816657461225986],[124,287,64,-1.7971740774810314],[124,287,65,-1.7981469221413136],[124,287,66,-1.7973525784909725],[124,287,67,-1.7958318181335926],[124,287,68,-1.7950003109872341],[124,287,69,-1.7957254312932491],[124,287,70,-1.7975161522626877],[124,287,71,-1.799761801958084],[124,287,72,-1.8027487844228745],[124,287,73,-1.805263202637434],[124,287,74,-1.8065218068659306],[124,287,75,-1.8062753677368164],[124,287,76,-1.8039891794323921],[124,287,77,-1.7998168431222439],[124,287,78,-1.7947959005832672],[124,287,79,-1.7894782461225986],[124,288,64,-1.8049865774810314],[124,288,65,-1.8059594221413136],[124,288,66,-1.8051650784909725],[124,288,67,-1.8036443181335926],[124,288,68,-1.8028128109872341],[124,288,69,-1.8035379312932491],[124,288,70,-1.8053286522626877],[124,288,71,-1.807574301958084],[124,288,72,-1.8105612844228745],[124,288,73,-1.813075702637434],[124,288,74,-1.8143343068659306],[124,288,75,-1.8140878677368164],[124,288,76,-1.8118016794323921],[124,288,77,-1.8076293431222439],[124,288,78,-1.8026084005832672],[124,288,79,-1.7972907461225986],[124,289,64,-1.8127990774810314],[124,289,65,-1.8137719221413136],[124,289,66,-1.8129775784909725],[124,289,67,-1.8114568181335926],[124,289,68,-1.8106253109872341],[124,289,69,-1.8113504312932491],[124,289,70,-1.8131411522626877],[124,289,71,-1.815386801958084],[124,289,72,-1.8183737844228745],[124,289,73,-1.820888202637434],[124,289,74,-1.8221468068659306],[124,289,75,-1.8219003677368164],[124,289,76,-1.8196141794323921],[124,289,77,-1.8154418431222439],[124,289,78,-1.8104209005832672],[124,289,79,-1.8051032461225986],[124,290,64,-1.8206115774810314],[124,290,65,-1.8215844221413136],[124,290,66,-1.8207900784909725],[124,290,67,-1.8192693181335926],[124,290,68,-1.8184378109872341],[124,290,69,-1.8191629312932491],[124,290,70,-1.8209536522626877],[124,290,71,-1.823199301958084],[124,290,72,-1.8261862844228745],[124,290,73,-1.828700702637434],[124,290,74,-1.8299593068659306],[124,290,75,-1.8297128677368164],[124,290,76,-1.8274266794323921],[124,290,77,-1.8232543431222439],[124,290,78,-1.8182334005832672],[124,290,79,-1.8129157461225986],[124,291,64,-1.8284240774810314],[124,291,65,-1.8293969221413136],[124,291,66,-1.8286025784909725],[124,291,67,-1.8270818181335926],[124,291,68,-1.8262503109872341],[124,291,69,-1.8269754312932491],[124,291,70,-1.8287661522626877],[124,291,71,-1.831011801958084],[124,291,72,-1.8339987844228745],[124,291,73,-1.836513202637434],[124,291,74,-1.8377718068659306],[124,291,75,-1.8375253677368164],[124,291,76,-1.8352391794323921],[124,291,77,-1.8310668431222439],[124,291,78,-1.8260459005832672],[124,291,79,-1.8207282461225986],[124,292,64,-1.8362365774810314],[124,292,65,-1.8372094221413136],[124,292,66,-1.8364150784909725],[124,292,67,-1.8348943181335926],[124,292,68,-1.8340628109872341],[124,292,69,-1.8347879312932491],[124,292,70,-1.8365786522626877],[124,292,71,-1.838824301958084],[124,292,72,-1.8418112844228745],[124,292,73,-1.844325702637434],[124,292,74,-1.8455843068659306],[124,292,75,-1.8453378677368164],[124,292,76,-1.8430516794323921],[124,292,77,-1.8388793431222439],[124,292,78,-1.8338584005832672],[124,292,79,-1.8285407461225986],[124,293,64,-1.8440490774810314],[124,293,65,-1.8450219221413136],[124,293,66,-1.8442275784909725],[124,293,67,-1.8427068181335926],[124,293,68,-1.8418753109872341],[124,293,69,-1.8426004312932491],[124,293,70,-1.8443911522626877],[124,293,71,-1.846636801958084],[124,293,72,-1.8496237844228745],[124,293,73,-1.852138202637434],[124,293,74,-1.8533968068659306],[124,293,75,-1.8531503677368164],[124,293,76,-1.8508641794323921],[124,293,77,-1.8466918431222439],[124,293,78,-1.8416709005832672],[124,293,79,-1.8363532461225986],[124,294,64,-1.8518615774810314],[124,294,65,-1.8528344221413136],[124,294,66,-1.8520400784909725],[124,294,67,-1.8505193181335926],[124,294,68,-1.8496878109872341],[124,294,69,-1.8504129312932491],[124,294,70,-1.8522036522626877],[124,294,71,-1.854449301958084],[124,294,72,-1.8574362844228745],[124,294,73,-1.859950702637434],[124,294,74,-1.8612093068659306],[124,294,75,-1.8609628677368164],[124,294,76,-1.8586766794323921],[124,294,77,-1.8545043431222439],[124,294,78,-1.8494834005832672],[124,294,79,-1.8441657461225986],[124,295,64,-1.8596740774810314],[124,295,65,-1.8606469221413136],[124,295,66,-1.8598525784909725],[124,295,67,-1.8583318181335926],[124,295,68,-1.8575003109872341],[124,295,69,-1.8582254312932491],[124,295,70,-1.8600161522626877],[124,295,71,-1.862261801958084],[124,295,72,-1.8652487844228745],[124,295,73,-1.867763202637434],[124,295,74,-1.8690218068659306],[124,295,75,-1.8687753677368164],[124,295,76,-1.8664891794323921],[124,295,77,-1.8623168431222439],[124,295,78,-1.8572959005832672],[124,295,79,-1.8519782461225986],[124,296,64,-1.8674865774810314],[124,296,65,-1.8684594221413136],[124,296,66,-1.8676650784909725],[124,296,67,-1.8661443181335926],[124,296,68,-1.8653128109872341],[124,296,69,-1.8660379312932491],[124,296,70,-1.8678286522626877],[124,296,71,-1.870074301958084],[124,296,72,-1.8730612844228745],[124,296,73,-1.875575702637434],[124,296,74,-1.8768343068659306],[124,296,75,-1.8765878677368164],[124,296,76,-1.8743016794323921],[124,296,77,-1.8701293431222439],[124,296,78,-1.8651084005832672],[124,296,79,-1.8597907461225986],[124,297,64,-1.8752990774810314],[124,297,65,-1.8762719221413136],[124,297,66,-1.8754775784909725],[124,297,67,-1.8739568181335926],[124,297,68,-1.8731253109872341],[124,297,69,-1.8738504312932491],[124,297,70,-1.8756411522626877],[124,297,71,-1.877886801958084],[124,297,72,-1.8808737844228745],[124,297,73,-1.883388202637434],[124,297,74,-1.8846468068659306],[124,297,75,-1.8844003677368164],[124,297,76,-1.8821141794323921],[124,297,77,-1.8779418431222439],[124,297,78,-1.8729209005832672],[124,297,79,-1.8676032461225986],[124,298,64,-1.8831115774810314],[124,298,65,-1.8840844221413136],[124,298,66,-1.8832900784909725],[124,298,67,-1.8817693181335926],[124,298,68,-1.8809378109872341],[124,298,69,-1.8816629312932491],[124,298,70,-1.8834536522626877],[124,298,71,-1.885699301958084],[124,298,72,-1.8886862844228745],[124,298,73,-1.891200702637434],[124,298,74,-1.8924593068659306],[124,298,75,-1.8922128677368164],[124,298,76,-1.8899266794323921],[124,298,77,-1.8857543431222439],[124,298,78,-1.8807334005832672],[124,298,79,-1.8754157461225986],[124,299,64,-1.8909240774810314],[124,299,65,-1.8918969221413136],[124,299,66,-1.8911025784909725],[124,299,67,-1.8895818181335926],[124,299,68,-1.8887503109872341],[124,299,69,-1.8894754312932491],[124,299,70,-1.8912661522626877],[124,299,71,-1.893511801958084],[124,299,72,-1.8964987844228745],[124,299,73,-1.899013202637434],[124,299,74,-1.9002718068659306],[124,299,75,-1.9000253677368164],[124,299,76,-1.8977391794323921],[124,299,77,-1.8935668431222439],[124,299,78,-1.8885459005832672],[124,299,79,-1.8832282461225986],[124,300,64,-1.8987365774810314],[124,300,65,-1.8997094221413136],[124,300,66,-1.8989150784909725],[124,300,67,-1.8973943181335926],[124,300,68,-1.8965628109872341],[124,300,69,-1.8972879312932491],[124,300,70,-1.8990786522626877],[124,300,71,-1.901324301958084],[124,300,72,-1.9043112844228745],[124,300,73,-1.906825702637434],[124,300,74,-1.9080843068659306],[124,300,75,-1.9078378677368164],[124,300,76,-1.9055516794323921],[124,300,77,-1.9013793431222439],[124,300,78,-1.8963584005832672],[124,300,79,-1.8910407461225986],[124,301,64,-1.9065490774810314],[124,301,65,-1.9075219221413136],[124,301,66,-1.9067275784909725],[124,301,67,-1.9052068181335926],[124,301,68,-1.9043753109872341],[124,301,69,-1.9051004312932491],[124,301,70,-1.9068911522626877],[124,301,71,-1.909136801958084],[124,301,72,-1.9121237844228745],[124,301,73,-1.914638202637434],[124,301,74,-1.9158968068659306],[124,301,75,-1.9156503677368164],[124,301,76,-1.9133641794323921],[124,301,77,-1.9091918431222439],[124,301,78,-1.9041709005832672],[124,301,79,-1.8988532461225986],[124,302,64,-1.9143615774810314],[124,302,65,-1.9153344221413136],[124,302,66,-1.9145400784909725],[124,302,67,-1.9130193181335926],[124,302,68,-1.9121878109872341],[124,302,69,-1.9129129312932491],[124,302,70,-1.9147036522626877],[124,302,71,-1.916949301958084],[124,302,72,-1.9199362844228745],[124,302,73,-1.922450702637434],[124,302,74,-1.9237093068659306],[124,302,75,-1.9234628677368164],[124,302,76,-1.9211766794323921],[124,302,77,-1.9170043431222439],[124,302,78,-1.9119834005832672],[124,302,79,-1.9066657461225986],[124,303,64,-1.9221740774810314],[124,303,65,-1.9231469221413136],[124,303,66,-1.9223525784909725],[124,303,67,-1.9208318181335926],[124,303,68,-1.9200003109872341],[124,303,69,-1.9207254312932491],[124,303,70,-1.9225161522626877],[124,303,71,-1.924761801958084],[124,303,72,-1.9277487844228745],[124,303,73,-1.930263202637434],[124,303,74,-1.9315218068659306],[124,303,75,-1.9312753677368164],[124,303,76,-1.9289891794323921],[124,303,77,-1.9248168431222439],[124,303,78,-1.9197959005832672],[124,303,79,-1.9144782461225986],[124,304,64,-1.9299865774810314],[124,304,65,-1.9309594221413136],[124,304,66,-1.9301650784909725],[124,304,67,-1.9286443181335926],[124,304,68,-1.9278128109872341],[124,304,69,-1.9285379312932491],[124,304,70,-1.9303286522626877],[124,304,71,-1.932574301958084],[124,304,72,-1.9355612844228745],[124,304,73,-1.938075702637434],[124,304,74,-1.9393343068659306],[124,304,75,-1.9390878677368164],[124,304,76,-1.9368016794323921],[124,304,77,-1.9326293431222439],[124,304,78,-1.9276084005832672],[124,304,79,-1.9222907461225986],[124,305,64,-1.9377990774810314],[124,305,65,-1.9387719221413136],[124,305,66,-1.9379775784909725],[124,305,67,-1.9364568181335926],[124,305,68,-1.9356253109872341],[124,305,69,-1.9363504312932491],[124,305,70,-1.9381411522626877],[124,305,71,-1.940386801958084],[124,305,72,-1.9433737844228745],[124,305,73,-1.945888202637434],[124,305,74,-1.9471468068659306],[124,305,75,-1.9469003677368164],[124,305,76,-1.9446141794323921],[124,305,77,-1.9404418431222439],[124,305,78,-1.9354209005832672],[124,305,79,-1.9301032461225986],[124,306,64,-1.9456115774810314],[124,306,65,-1.9465844221413136],[124,306,66,-1.9457900784909725],[124,306,67,-1.9442693181335926],[124,306,68,-1.9434378109872341],[124,306,69,-1.9441629312932491],[124,306,70,-1.9459536522626877],[124,306,71,-1.948199301958084],[124,306,72,-1.9511862844228745],[124,306,73,-1.953700702637434],[124,306,74,-1.9549593068659306],[124,306,75,-1.9547128677368164],[124,306,76,-1.9524266794323921],[124,306,77,-1.9482543431222439],[124,306,78,-1.9432334005832672],[124,306,79,-1.9379157461225986],[124,307,64,-1.9534240774810314],[124,307,65,-1.9543969221413136],[124,307,66,-1.9536025784909725],[124,307,67,-1.9520818181335926],[124,307,68,-1.9512503109872341],[124,307,69,-1.9519754312932491],[124,307,70,-1.9537661522626877],[124,307,71,-1.956011801958084],[124,307,72,-1.9589987844228745],[124,307,73,-1.961513202637434],[124,307,74,-1.9627718068659306],[124,307,75,-1.9625253677368164],[124,307,76,-1.9602391794323921],[124,307,77,-1.9560668431222439],[124,307,78,-1.9510459005832672],[124,307,79,-1.9457282461225986],[124,308,64,-1.9612365774810314],[124,308,65,-1.9622094221413136],[124,308,66,-1.9614150784909725],[124,308,67,-1.9598943181335926],[124,308,68,-1.9590628109872341],[124,308,69,-1.9597879312932491],[124,308,70,-1.9615786522626877],[124,308,71,-1.963824301958084],[124,308,72,-1.9668112844228745],[124,308,73,-1.969325702637434],[124,308,74,-1.9705843068659306],[124,308,75,-1.9703378677368164],[124,308,76,-1.9680516794323921],[124,308,77,-1.9638793431222439],[124,308,78,-1.9588584005832672],[124,308,79,-1.9535407461225986],[124,309,64,-1.9690490774810314],[124,309,65,-1.9700219221413136],[124,309,66,-1.9692275784909725],[124,309,67,-1.9677068181335926],[124,309,68,-1.9668753109872341],[124,309,69,-1.9676004312932491],[124,309,70,-1.9693911522626877],[124,309,71,-1.971636801958084],[124,309,72,-1.9746237844228745],[124,309,73,-1.977138202637434],[124,309,74,-1.9783968068659306],[124,309,75,-1.9781503677368164],[124,309,76,-1.9758641794323921],[124,309,77,-1.9716918431222439],[124,309,78,-1.9666709005832672],[124,309,79,-1.9613532461225986],[124,310,64,-1.9768615774810314],[124,310,65,-1.9778344221413136],[124,310,66,-1.9770400784909725],[124,310,67,-1.9755193181335926],[124,310,68,-1.9746878109872341],[124,310,69,-1.9754129312932491],[124,310,70,-1.9772036522626877],[124,310,71,-1.979449301958084],[124,310,72,-1.9824362844228745],[124,310,73,-1.984950702637434],[124,310,74,-1.9862093068659306],[124,310,75,-1.9859628677368164],[124,310,76,-1.9836766794323921],[124,310,77,-1.9795043431222439],[124,310,78,-1.9744834005832672],[124,310,79,-1.9691657461225986],[124,311,64,-1.9846740774810314],[124,311,65,-1.9856469221413136],[124,311,66,-1.9848525784909725],[124,311,67,-1.9833318181335926],[124,311,68,-1.9825003109872341],[124,311,69,-1.9832254312932491],[124,311,70,-1.9850161522626877],[124,311,71,-1.987261801958084],[124,311,72,-1.9902487844228745],[124,311,73,-1.992763202637434],[124,311,74,-1.9940218068659306],[124,311,75,-1.9937753677368164],[124,311,76,-1.9914891794323921],[124,311,77,-1.9873168431222439],[124,311,78,-1.9822959005832672],[124,311,79,-1.9769782461225986],[124,312,64,-1.9924865774810314],[124,312,65,-1.9934594221413136],[124,312,66,-1.9926650784909725],[124,312,67,-1.9911443181335926],[124,312,68,-1.9903128109872341],[124,312,69,-1.9910379312932491],[124,312,70,-1.9928286522626877],[124,312,71,-1.995074301958084],[124,312,72,-1.9980612844228745],[124,312,73,-2.000575702637434],[124,312,74,-2.0018343068659306],[124,312,75,-2.0015878677368164],[124,312,76,-1.9993016794323921],[124,312,77,-1.9951293431222439],[124,312,78,-1.9901084005832672],[124,312,79,-1.9847907461225986],[124,313,64,-2.0002990774810314],[124,313,65,-2.0012719221413136],[124,313,66,-2.0004775784909725],[124,313,67,-1.9989568181335926],[124,313,68,-1.9981253109872341],[124,313,69,-1.9988504312932491],[124,313,70,-2.0006411522626877],[124,313,71,-2.002886801958084],[124,313,72,-2.0058737844228745],[124,313,73,-2.008388202637434],[124,313,74,-2.0096468068659306],[124,313,75,-2.0094003677368164],[124,313,76,-2.007114179432392],[124,313,77,-2.002941843122244],[124,313,78,-1.9979209005832672],[124,313,79,-1.9926032461225986],[124,314,64,-2.0081115774810314],[124,314,65,-2.0090844221413136],[124,314,66,-2.0082900784909725],[124,314,67,-2.0067693181335926],[124,314,68,-2.005937810987234],[124,314,69,-2.006662931293249],[124,314,70,-2.0084536522626877],[124,314,71,-2.010699301958084],[124,314,72,-2.0136862844228745],[124,314,73,-2.016200702637434],[124,314,74,-2.0174593068659306],[124,314,75,-2.0172128677368164],[124,314,76,-2.014926679432392],[124,314,77,-2.010754343122244],[124,314,78,-2.005733400583267],[124,314,79,-2.0004157461225986],[124,315,64,-2.0159240774810314],[124,315,65,-2.0168969221413136],[124,315,66,-2.0161025784909725],[124,315,67,-2.0145818181335926],[124,315,68,-2.013750310987234],[124,315,69,-2.014475431293249],[124,315,70,-2.0162661522626877],[124,315,71,-2.018511801958084],[124,315,72,-2.0214987844228745],[124,315,73,-2.024013202637434],[124,315,74,-2.0252718068659306],[124,315,75,-2.0250253677368164],[124,315,76,-2.022739179432392],[124,315,77,-2.018566843122244],[124,315,78,-2.013545900583267],[124,315,79,-2.0082282461225986],[124,316,64,-2.0237365774810314],[124,316,65,-2.0247094221413136],[124,316,66,-2.0239150784909725],[124,316,67,-2.0223943181335926],[124,316,68,-2.021562810987234],[124,316,69,-2.022287931293249],[124,316,70,-2.0240786522626877],[124,316,71,-2.026324301958084],[124,316,72,-2.0293112844228745],[124,316,73,-2.031825702637434],[124,316,74,-2.0330843068659306],[124,316,75,-2.0328378677368164],[124,316,76,-2.030551679432392],[124,316,77,-2.026379343122244],[124,316,78,-2.021358400583267],[124,316,79,-2.0160407461225986],[124,317,64,-2.0315490774810314],[124,317,65,-2.0325219221413136],[124,317,66,-2.0317275784909725],[124,317,67,-2.0302068181335926],[124,317,68,-2.029375310987234],[124,317,69,-2.030100431293249],[124,317,70,-2.0318911522626877],[124,317,71,-2.034136801958084],[124,317,72,-2.0371237844228745],[124,317,73,-2.039638202637434],[124,317,74,-2.0408968068659306],[124,317,75,-2.0406503677368164],[124,317,76,-2.038364179432392],[124,317,77,-2.034191843122244],[124,317,78,-2.029170900583267],[124,317,79,-2.0238532461225986],[124,318,64,-2.0393615774810314],[124,318,65,-2.0403344221413136],[124,318,66,-2.0395400784909725],[124,318,67,-2.0380193181335926],[124,318,68,-2.037187810987234],[124,318,69,-2.037912931293249],[124,318,70,-2.0397036522626877],[124,318,71,-2.041949301958084],[124,318,72,-2.0449362844228745],[124,318,73,-2.047450702637434],[124,318,74,-2.0487093068659306],[124,318,75,-2.0484628677368164],[124,318,76,-2.046176679432392],[124,318,77,-2.042004343122244],[124,318,78,-2.036983400583267],[124,318,79,-2.0316657461225986],[124,319,64,-2.0471740774810314],[124,319,65,-2.0481469221413136],[124,319,66,-2.0473525784909725],[124,319,67,-2.0458318181335926],[124,319,68,-2.045000310987234],[124,319,69,-2.045725431293249],[124,319,70,-2.0475161522626877],[124,319,71,-2.049761801958084],[124,319,72,-2.0527487844228745],[124,319,73,-2.055263202637434],[124,319,74,-2.0565218068659306],[124,319,75,-2.0562753677368164],[124,319,76,-2.053989179432392],[124,319,77,-2.049816843122244],[124,319,78,-2.044795900583267],[124,319,79,-2.0394782461225986],[125,-64,64,0.9450653828680515],[125,-64,65,0.9433403126895428],[125,-64,66,0.9434508234262466],[125,-64,67,0.9446230828762054],[125,-64,68,0.9455629661679268],[125,-64,69,0.945333406329155],[125,-64,70,0.9442371502518654],[125,-64,71,0.9425821229815483],[125,-64,72,0.9397972114384174],[125,-64,73,0.9369091428816319],[125,-64,74,0.9352019913494587],[125,-64,75,0.9351703822612762],[125,-64,76,0.9373449720442295],[125,-64,77,0.9416690096259117],[125,-64,78,0.9469943307340145],[125,-64,79,0.9525533095002174],[125,-63,64,0.9372528828680515],[125,-63,65,0.9355278126895428],[125,-63,66,0.9356383234262466],[125,-63,67,0.9368105828762054],[125,-63,68,0.9377504661679268],[125,-63,69,0.937520906329155],[125,-63,70,0.9364246502518654],[125,-63,71,0.9347696229815483],[125,-63,72,0.9319847114384174],[125,-63,73,0.9290966428816319],[125,-63,74,0.9273894913494587],[125,-63,75,0.9273578822612762],[125,-63,76,0.9295324720442295],[125,-63,77,0.9338565096259117],[125,-63,78,0.9391818307340145],[125,-63,79,0.9447408095002174],[125,-62,64,0.9294403828680515],[125,-62,65,0.9277153126895428],[125,-62,66,0.9278258234262466],[125,-62,67,0.9289980828762054],[125,-62,68,0.9299379661679268],[125,-62,69,0.929708406329155],[125,-62,70,0.9286121502518654],[125,-62,71,0.9269571229815483],[125,-62,72,0.9241722114384174],[125,-62,73,0.9212841428816319],[125,-62,74,0.9195769913494587],[125,-62,75,0.9195453822612762],[125,-62,76,0.9217199720442295],[125,-62,77,0.9260440096259117],[125,-62,78,0.9313693307340145],[125,-62,79,0.9369283095002174],[125,-61,64,0.9216278828680515],[125,-61,65,0.9199028126895428],[125,-61,66,0.9200133234262466],[125,-61,67,0.9211855828762054],[125,-61,68,0.9221254661679268],[125,-61,69,0.921895906329155],[125,-61,70,0.9207996502518654],[125,-61,71,0.9191446229815483],[125,-61,72,0.9163597114384174],[125,-61,73,0.9134716428816319],[125,-61,74,0.9117644913494587],[125,-61,75,0.9117328822612762],[125,-61,76,0.9139074720442295],[125,-61,77,0.9182315096259117],[125,-61,78,0.9235568307340145],[125,-61,79,0.9291158095002174],[125,-60,64,0.9138153828680515],[125,-60,65,0.9120903126895428],[125,-60,66,0.9122008234262466],[125,-60,67,0.9133730828762054],[125,-60,68,0.9143129661679268],[125,-60,69,0.914083406329155],[125,-60,70,0.9129871502518654],[125,-60,71,0.9113321229815483],[125,-60,72,0.9085472114384174],[125,-60,73,0.9056591428816319],[125,-60,74,0.9039519913494587],[125,-60,75,0.9039203822612762],[125,-60,76,0.9060949720442295],[125,-60,77,0.9104190096259117],[125,-60,78,0.9157443307340145],[125,-60,79,0.9213033095002174],[125,-59,64,0.9060028828680515],[125,-59,65,0.9042778126895428],[125,-59,66,0.9043883234262466],[125,-59,67,0.9055605828762054],[125,-59,68,0.9065004661679268],[125,-59,69,0.906270906329155],[125,-59,70,0.9051746502518654],[125,-59,71,0.9035196229815483],[125,-59,72,0.9007347114384174],[125,-59,73,0.8978466428816319],[125,-59,74,0.8961394913494587],[125,-59,75,0.8961078822612762],[125,-59,76,0.8982824720442295],[125,-59,77,0.9026065096259117],[125,-59,78,0.9079318307340145],[125,-59,79,0.9134908095002174],[125,-58,64,0.8981903828680515],[125,-58,65,0.8964653126895428],[125,-58,66,0.8965758234262466],[125,-58,67,0.8977480828762054],[125,-58,68,0.8986879661679268],[125,-58,69,0.898458406329155],[125,-58,70,0.8973621502518654],[125,-58,71,0.8957071229815483],[125,-58,72,0.8929222114384174],[125,-58,73,0.8900341428816319],[125,-58,74,0.8883269913494587],[125,-58,75,0.8882953822612762],[125,-58,76,0.8904699720442295],[125,-58,77,0.8947940096259117],[125,-58,78,0.9001193307340145],[125,-58,79,0.9056783095002174],[125,-57,64,0.8903778828680515],[125,-57,65,0.8886528126895428],[125,-57,66,0.8887633234262466],[125,-57,67,0.8899355828762054],[125,-57,68,0.8908754661679268],[125,-57,69,0.890645906329155],[125,-57,70,0.8895496502518654],[125,-57,71,0.8878946229815483],[125,-57,72,0.8851097114384174],[125,-57,73,0.8822216428816319],[125,-57,74,0.8805144913494587],[125,-57,75,0.8804828822612762],[125,-57,76,0.8826574720442295],[125,-57,77,0.8869815096259117],[125,-57,78,0.8923068307340145],[125,-57,79,0.8978658095002174],[125,-56,64,0.8825653828680515],[125,-56,65,0.8808403126895428],[125,-56,66,0.8809508234262466],[125,-56,67,0.8821230828762054],[125,-56,68,0.8830629661679268],[125,-56,69,0.882833406329155],[125,-56,70,0.8817371502518654],[125,-56,71,0.8800821229815483],[125,-56,72,0.8772972114384174],[125,-56,73,0.8744091428816319],[125,-56,74,0.8727019913494587],[125,-56,75,0.8726703822612762],[125,-56,76,0.8748449720442295],[125,-56,77,0.8791690096259117],[125,-56,78,0.8844943307340145],[125,-56,79,0.8900533095002174],[125,-55,64,0.8747528828680515],[125,-55,65,0.8730278126895428],[125,-55,66,0.8731383234262466],[125,-55,67,0.8743105828762054],[125,-55,68,0.8752504661679268],[125,-55,69,0.875020906329155],[125,-55,70,0.8739246502518654],[125,-55,71,0.8722696229815483],[125,-55,72,0.8694847114384174],[125,-55,73,0.8665966428816319],[125,-55,74,0.8648894913494587],[125,-55,75,0.8648578822612762],[125,-55,76,0.8670324720442295],[125,-55,77,0.8713565096259117],[125,-55,78,0.8766818307340145],[125,-55,79,0.8822408095002174],[125,-54,64,0.8669403828680515],[125,-54,65,0.8652153126895428],[125,-54,66,0.8653258234262466],[125,-54,67,0.8664980828762054],[125,-54,68,0.8674379661679268],[125,-54,69,0.867208406329155],[125,-54,70,0.8661121502518654],[125,-54,71,0.8644571229815483],[125,-54,72,0.8616722114384174],[125,-54,73,0.8587841428816319],[125,-54,74,0.8570769913494587],[125,-54,75,0.8570453822612762],[125,-54,76,0.8592199720442295],[125,-54,77,0.8635440096259117],[125,-54,78,0.8688693307340145],[125,-54,79,0.8744283095002174],[125,-53,64,0.8591278828680515],[125,-53,65,0.8574028126895428],[125,-53,66,0.8575133234262466],[125,-53,67,0.8586855828762054],[125,-53,68,0.8596254661679268],[125,-53,69,0.859395906329155],[125,-53,70,0.8582996502518654],[125,-53,71,0.8566446229815483],[125,-53,72,0.8538597114384174],[125,-53,73,0.8509716428816319],[125,-53,74,0.8492644913494587],[125,-53,75,0.8492328822612762],[125,-53,76,0.8514074720442295],[125,-53,77,0.8557315096259117],[125,-53,78,0.8610568307340145],[125,-53,79,0.8666158095002174],[125,-52,64,0.8513153828680515],[125,-52,65,0.8495903126895428],[125,-52,66,0.8497008234262466],[125,-52,67,0.8508730828762054],[125,-52,68,0.8518129661679268],[125,-52,69,0.851583406329155],[125,-52,70,0.8504871502518654],[125,-52,71,0.8488321229815483],[125,-52,72,0.8460472114384174],[125,-52,73,0.8431591428816319],[125,-52,74,0.8414519913494587],[125,-52,75,0.8414203822612762],[125,-52,76,0.8435949720442295],[125,-52,77,0.8479190096259117],[125,-52,78,0.8532443307340145],[125,-52,79,0.8588033095002174],[125,-51,64,0.8435028828680515],[125,-51,65,0.8417778126895428],[125,-51,66,0.8418883234262466],[125,-51,67,0.8430605828762054],[125,-51,68,0.8440004661679268],[125,-51,69,0.843770906329155],[125,-51,70,0.8426746502518654],[125,-51,71,0.8410196229815483],[125,-51,72,0.8382347114384174],[125,-51,73,0.8353466428816319],[125,-51,74,0.8336394913494587],[125,-51,75,0.8336078822612762],[125,-51,76,0.8357824720442295],[125,-51,77,0.8401065096259117],[125,-51,78,0.8454318307340145],[125,-51,79,0.8509908095002174],[125,-50,64,0.8356903828680515],[125,-50,65,0.8339653126895428],[125,-50,66,0.8340758234262466],[125,-50,67,0.8352480828762054],[125,-50,68,0.8361879661679268],[125,-50,69,0.835958406329155],[125,-50,70,0.8348621502518654],[125,-50,71,0.8332071229815483],[125,-50,72,0.8304222114384174],[125,-50,73,0.8275341428816319],[125,-50,74,0.8258269913494587],[125,-50,75,0.8257953822612762],[125,-50,76,0.8279699720442295],[125,-50,77,0.8322940096259117],[125,-50,78,0.8376193307340145],[125,-50,79,0.8431783095002174],[125,-49,64,0.8278778828680515],[125,-49,65,0.8261528126895428],[125,-49,66,0.8262633234262466],[125,-49,67,0.8274355828762054],[125,-49,68,0.8283754661679268],[125,-49,69,0.828145906329155],[125,-49,70,0.8270496502518654],[125,-49,71,0.8253946229815483],[125,-49,72,0.8226097114384174],[125,-49,73,0.8197216428816319],[125,-49,74,0.8180144913494587],[125,-49,75,0.8179828822612762],[125,-49,76,0.8201574720442295],[125,-49,77,0.8244815096259117],[125,-49,78,0.8298068307340145],[125,-49,79,0.8353658095002174],[125,-48,64,0.8200653828680515],[125,-48,65,0.8183403126895428],[125,-48,66,0.8184508234262466],[125,-48,67,0.8196230828762054],[125,-48,68,0.8205629661679268],[125,-48,69,0.820333406329155],[125,-48,70,0.8192371502518654],[125,-48,71,0.8175821229815483],[125,-48,72,0.8147972114384174],[125,-48,73,0.8119091428816319],[125,-48,74,0.8102019913494587],[125,-48,75,0.8101703822612762],[125,-48,76,0.8123449720442295],[125,-48,77,0.8166690096259117],[125,-48,78,0.8219943307340145],[125,-48,79,0.8275533095002174],[125,-47,64,0.8122528828680515],[125,-47,65,0.8105278126895428],[125,-47,66,0.8106383234262466],[125,-47,67,0.8118105828762054],[125,-47,68,0.8127504661679268],[125,-47,69,0.812520906329155],[125,-47,70,0.8114246502518654],[125,-47,71,0.8097696229815483],[125,-47,72,0.8069847114384174],[125,-47,73,0.8040966428816319],[125,-47,74,0.8023894913494587],[125,-47,75,0.8023578822612762],[125,-47,76,0.8045324720442295],[125,-47,77,0.8088565096259117],[125,-47,78,0.8141818307340145],[125,-47,79,0.8197408095002174],[125,-46,64,0.8044403828680515],[125,-46,65,0.8027153126895428],[125,-46,66,0.8028258234262466],[125,-46,67,0.8039980828762054],[125,-46,68,0.8049379661679268],[125,-46,69,0.804708406329155],[125,-46,70,0.8036121502518654],[125,-46,71,0.8019571229815483],[125,-46,72,0.7991722114384174],[125,-46,73,0.7962841428816319],[125,-46,74,0.7945769913494587],[125,-46,75,0.7945453822612762],[125,-46,76,0.7967199720442295],[125,-46,77,0.8010440096259117],[125,-46,78,0.8063693307340145],[125,-46,79,0.8119283095002174],[125,-45,64,0.7966278828680515],[125,-45,65,0.7949028126895428],[125,-45,66,0.7950133234262466],[125,-45,67,0.7961855828762054],[125,-45,68,0.7971254661679268],[125,-45,69,0.796895906329155],[125,-45,70,0.7957996502518654],[125,-45,71,0.7941446229815483],[125,-45,72,0.7913597114384174],[125,-45,73,0.7884716428816319],[125,-45,74,0.7867644913494587],[125,-45,75,0.7867328822612762],[125,-45,76,0.7889074720442295],[125,-45,77,0.7932315096259117],[125,-45,78,0.7985568307340145],[125,-45,79,0.8041158095002174],[125,-44,64,0.7888153828680515],[125,-44,65,0.7870903126895428],[125,-44,66,0.7872008234262466],[125,-44,67,0.7883730828762054],[125,-44,68,0.7893129661679268],[125,-44,69,0.789083406329155],[125,-44,70,0.7879871502518654],[125,-44,71,0.7863321229815483],[125,-44,72,0.7835472114384174],[125,-44,73,0.7806591428816319],[125,-44,74,0.7789519913494587],[125,-44,75,0.7789203822612762],[125,-44,76,0.7810949720442295],[125,-44,77,0.7854190096259117],[125,-44,78,0.7907443307340145],[125,-44,79,0.7963033095002174],[125,-43,64,0.7810028828680515],[125,-43,65,0.7792778126895428],[125,-43,66,0.7793883234262466],[125,-43,67,0.7805605828762054],[125,-43,68,0.7815004661679268],[125,-43,69,0.781270906329155],[125,-43,70,0.7801746502518654],[125,-43,71,0.7785196229815483],[125,-43,72,0.7757347114384174],[125,-43,73,0.7728466428816319],[125,-43,74,0.7711394913494587],[125,-43,75,0.7711078822612762],[125,-43,76,0.7732824720442295],[125,-43,77,0.7776065096259117],[125,-43,78,0.7829318307340145],[125,-43,79,0.7884908095002174],[125,-42,64,0.7731903828680515],[125,-42,65,0.7714653126895428],[125,-42,66,0.7715758234262466],[125,-42,67,0.7727480828762054],[125,-42,68,0.7736879661679268],[125,-42,69,0.773458406329155],[125,-42,70,0.7723621502518654],[125,-42,71,0.7707071229815483],[125,-42,72,0.7679222114384174],[125,-42,73,0.7650341428816319],[125,-42,74,0.7633269913494587],[125,-42,75,0.7632953822612762],[125,-42,76,0.7654699720442295],[125,-42,77,0.7697940096259117],[125,-42,78,0.7751193307340145],[125,-42,79,0.7806783095002174],[125,-41,64,0.7653778828680515],[125,-41,65,0.7636528126895428],[125,-41,66,0.7637633234262466],[125,-41,67,0.7649355828762054],[125,-41,68,0.7658754661679268],[125,-41,69,0.765645906329155],[125,-41,70,0.7645496502518654],[125,-41,71,0.7628946229815483],[125,-41,72,0.7601097114384174],[125,-41,73,0.7572216428816319],[125,-41,74,0.7555144913494587],[125,-41,75,0.7554828822612762],[125,-41,76,0.7576574720442295],[125,-41,77,0.7619815096259117],[125,-41,78,0.7673068307340145],[125,-41,79,0.7728658095002174],[125,-40,64,0.7575653828680515],[125,-40,65,0.7558403126895428],[125,-40,66,0.7559508234262466],[125,-40,67,0.7571230828762054],[125,-40,68,0.7580629661679268],[125,-40,69,0.757833406329155],[125,-40,70,0.7567371502518654],[125,-40,71,0.7550821229815483],[125,-40,72,0.7522972114384174],[125,-40,73,0.7494091428816319],[125,-40,74,0.7477019913494587],[125,-40,75,0.7476703822612762],[125,-40,76,0.7498449720442295],[125,-40,77,0.7541690096259117],[125,-40,78,0.7594943307340145],[125,-40,79,0.7650533095002174],[125,-39,64,0.7497528828680515],[125,-39,65,0.7480278126895428],[125,-39,66,0.7481383234262466],[125,-39,67,0.7493105828762054],[125,-39,68,0.7502504661679268],[125,-39,69,0.750020906329155],[125,-39,70,0.7489246502518654],[125,-39,71,0.7472696229815483],[125,-39,72,0.7444847114384174],[125,-39,73,0.7415966428816319],[125,-39,74,0.7398894913494587],[125,-39,75,0.7398578822612762],[125,-39,76,0.7420324720442295],[125,-39,77,0.7463565096259117],[125,-39,78,0.7516818307340145],[125,-39,79,0.7572408095002174],[125,-38,64,0.7419403828680515],[125,-38,65,0.7402153126895428],[125,-38,66,0.7403258234262466],[125,-38,67,0.7414980828762054],[125,-38,68,0.7424379661679268],[125,-38,69,0.742208406329155],[125,-38,70,0.7411121502518654],[125,-38,71,0.7394571229815483],[125,-38,72,0.7366722114384174],[125,-38,73,0.7337841428816319],[125,-38,74,0.7320769913494587],[125,-38,75,0.7320453822612762],[125,-38,76,0.7342199720442295],[125,-38,77,0.7385440096259117],[125,-38,78,0.7438693307340145],[125,-38,79,0.7494283095002174],[125,-37,64,0.7341278828680515],[125,-37,65,0.7324028126895428],[125,-37,66,0.7325133234262466],[125,-37,67,0.7336855828762054],[125,-37,68,0.7346254661679268],[125,-37,69,0.734395906329155],[125,-37,70,0.7332996502518654],[125,-37,71,0.7316446229815483],[125,-37,72,0.7288597114384174],[125,-37,73,0.7259716428816319],[125,-37,74,0.7242644913494587],[125,-37,75,0.7242328822612762],[125,-37,76,0.7264074720442295],[125,-37,77,0.7307315096259117],[125,-37,78,0.7360568307340145],[125,-37,79,0.7416158095002174],[125,-36,64,0.7263153828680515],[125,-36,65,0.7245903126895428],[125,-36,66,0.7247008234262466],[125,-36,67,0.7258730828762054],[125,-36,68,0.7268129661679268],[125,-36,69,0.726583406329155],[125,-36,70,0.7254871502518654],[125,-36,71,0.7238321229815483],[125,-36,72,0.7210472114384174],[125,-36,73,0.7181591428816319],[125,-36,74,0.7164519913494587],[125,-36,75,0.7164203822612762],[125,-36,76,0.7185949720442295],[125,-36,77,0.7229190096259117],[125,-36,78,0.7282443307340145],[125,-36,79,0.7338033095002174],[125,-35,64,0.7185028828680515],[125,-35,65,0.7167778126895428],[125,-35,66,0.7168883234262466],[125,-35,67,0.7180605828762054],[125,-35,68,0.7190004661679268],[125,-35,69,0.718770906329155],[125,-35,70,0.7176746502518654],[125,-35,71,0.7160196229815483],[125,-35,72,0.7132347114384174],[125,-35,73,0.7103466428816319],[125,-35,74,0.7086394913494587],[125,-35,75,0.7086078822612762],[125,-35,76,0.7107824720442295],[125,-35,77,0.7151065096259117],[125,-35,78,0.7204318307340145],[125,-35,79,0.7259908095002174],[125,-34,64,0.7106903828680515],[125,-34,65,0.7089653126895428],[125,-34,66,0.7090758234262466],[125,-34,67,0.7102480828762054],[125,-34,68,0.7111879661679268],[125,-34,69,0.710958406329155],[125,-34,70,0.7098621502518654],[125,-34,71,0.7082071229815483],[125,-34,72,0.7054222114384174],[125,-34,73,0.7025341428816319],[125,-34,74,0.7008269913494587],[125,-34,75,0.7007953822612762],[125,-34,76,0.7029699720442295],[125,-34,77,0.7072940096259117],[125,-34,78,0.7126193307340145],[125,-34,79,0.7181783095002174],[125,-33,64,0.7028778828680515],[125,-33,65,0.7011528126895428],[125,-33,66,0.7012633234262466],[125,-33,67,0.7024355828762054],[125,-33,68,0.7033754661679268],[125,-33,69,0.703145906329155],[125,-33,70,0.7020496502518654],[125,-33,71,0.7003946229815483],[125,-33,72,0.6976097114384174],[125,-33,73,0.6947216428816319],[125,-33,74,0.6930144913494587],[125,-33,75,0.6929828822612762],[125,-33,76,0.6951574720442295],[125,-33,77,0.6994815096259117],[125,-33,78,0.7048068307340145],[125,-33,79,0.7103658095002174],[125,-32,64,0.6950653828680515],[125,-32,65,0.6933403126895428],[125,-32,66,0.6934508234262466],[125,-32,67,0.6946230828762054],[125,-32,68,0.6955629661679268],[125,-32,69,0.695333406329155],[125,-32,70,0.6942371502518654],[125,-32,71,0.6925821229815483],[125,-32,72,0.6897972114384174],[125,-32,73,0.6869091428816319],[125,-32,74,0.6852019913494587],[125,-32,75,0.6851703822612762],[125,-32,76,0.6873449720442295],[125,-32,77,0.6916690096259117],[125,-32,78,0.6969943307340145],[125,-32,79,0.7025533095002174],[125,-31,64,0.6872528828680515],[125,-31,65,0.6855278126895428],[125,-31,66,0.6856383234262466],[125,-31,67,0.6868105828762054],[125,-31,68,0.6877504661679268],[125,-31,69,0.687520906329155],[125,-31,70,0.6864246502518654],[125,-31,71,0.6847696229815483],[125,-31,72,0.6819847114384174],[125,-31,73,0.6790966428816319],[125,-31,74,0.6773894913494587],[125,-31,75,0.6773578822612762],[125,-31,76,0.6795324720442295],[125,-31,77,0.6838565096259117],[125,-31,78,0.6891818307340145],[125,-31,79,0.6947408095002174],[125,-30,64,0.6794403828680515],[125,-30,65,0.6777153126895428],[125,-30,66,0.6778258234262466],[125,-30,67,0.6789980828762054],[125,-30,68,0.6799379661679268],[125,-30,69,0.679708406329155],[125,-30,70,0.6786121502518654],[125,-30,71,0.6769571229815483],[125,-30,72,0.6741722114384174],[125,-30,73,0.6712841428816319],[125,-30,74,0.6695769913494587],[125,-30,75,0.6695453822612762],[125,-30,76,0.6717199720442295],[125,-30,77,0.6760440096259117],[125,-30,78,0.6813693307340145],[125,-30,79,0.6869283095002174],[125,-29,64,0.6716278828680515],[125,-29,65,0.6699028126895428],[125,-29,66,0.6700133234262466],[125,-29,67,0.6711855828762054],[125,-29,68,0.6721254661679268],[125,-29,69,0.671895906329155],[125,-29,70,0.6707996502518654],[125,-29,71,0.6691446229815483],[125,-29,72,0.6663597114384174],[125,-29,73,0.6634716428816319],[125,-29,74,0.6617644913494587],[125,-29,75,0.6617328822612762],[125,-29,76,0.6639074720442295],[125,-29,77,0.6682315096259117],[125,-29,78,0.6735568307340145],[125,-29,79,0.6791158095002174],[125,-28,64,0.6638153828680515],[125,-28,65,0.6620903126895428],[125,-28,66,0.6622008234262466],[125,-28,67,0.6633730828762054],[125,-28,68,0.6643129661679268],[125,-28,69,0.664083406329155],[125,-28,70,0.6629871502518654],[125,-28,71,0.6613321229815483],[125,-28,72,0.6585472114384174],[125,-28,73,0.6556591428816319],[125,-28,74,0.6539519913494587],[125,-28,75,0.6539203822612762],[125,-28,76,0.6560949720442295],[125,-28,77,0.6604190096259117],[125,-28,78,0.6657443307340145],[125,-28,79,0.6713033095002174],[125,-27,64,0.6560028828680515],[125,-27,65,0.6542778126895428],[125,-27,66,0.6543883234262466],[125,-27,67,0.6555605828762054],[125,-27,68,0.6565004661679268],[125,-27,69,0.656270906329155],[125,-27,70,0.6551746502518654],[125,-27,71,0.6535196229815483],[125,-27,72,0.6507347114384174],[125,-27,73,0.6478466428816319],[125,-27,74,0.6461394913494587],[125,-27,75,0.6461078822612762],[125,-27,76,0.6482824720442295],[125,-27,77,0.6526065096259117],[125,-27,78,0.6579318307340145],[125,-27,79,0.6634908095002174],[125,-26,64,0.6481903828680515],[125,-26,65,0.6464653126895428],[125,-26,66,0.6465758234262466],[125,-26,67,0.6477480828762054],[125,-26,68,0.6486879661679268],[125,-26,69,0.648458406329155],[125,-26,70,0.6473621502518654],[125,-26,71,0.6457071229815483],[125,-26,72,0.6429222114384174],[125,-26,73,0.6400341428816319],[125,-26,74,0.6383269913494587],[125,-26,75,0.6382953822612762],[125,-26,76,0.6404699720442295],[125,-26,77,0.6447940096259117],[125,-26,78,0.6501193307340145],[125,-26,79,0.6556783095002174],[125,-25,64,0.6403778828680515],[125,-25,65,0.6386528126895428],[125,-25,66,0.6387633234262466],[125,-25,67,0.6399355828762054],[125,-25,68,0.6408754661679268],[125,-25,69,0.640645906329155],[125,-25,70,0.6395496502518654],[125,-25,71,0.6378946229815483],[125,-25,72,0.6351097114384174],[125,-25,73,0.6322216428816319],[125,-25,74,0.6305144913494587],[125,-25,75,0.6304828822612762],[125,-25,76,0.6326574720442295],[125,-25,77,0.6369815096259117],[125,-25,78,0.6423068307340145],[125,-25,79,0.6478658095002174],[125,-24,64,0.6325653828680515],[125,-24,65,0.6308403126895428],[125,-24,66,0.6309508234262466],[125,-24,67,0.6321230828762054],[125,-24,68,0.6330629661679268],[125,-24,69,0.632833406329155],[125,-24,70,0.6317371502518654],[125,-24,71,0.6300821229815483],[125,-24,72,0.6272972114384174],[125,-24,73,0.6244091428816319],[125,-24,74,0.6227019913494587],[125,-24,75,0.6226703822612762],[125,-24,76,0.6248449720442295],[125,-24,77,0.6291690096259117],[125,-24,78,0.6344943307340145],[125,-24,79,0.6400533095002174],[125,-23,64,0.6247528828680515],[125,-23,65,0.6230278126895428],[125,-23,66,0.6231383234262466],[125,-23,67,0.6243105828762054],[125,-23,68,0.6252504661679268],[125,-23,69,0.625020906329155],[125,-23,70,0.6239246502518654],[125,-23,71,0.6222696229815483],[125,-23,72,0.6194847114384174],[125,-23,73,0.6165966428816319],[125,-23,74,0.6148894913494587],[125,-23,75,0.6148578822612762],[125,-23,76,0.6170324720442295],[125,-23,77,0.6213565096259117],[125,-23,78,0.6266818307340145],[125,-23,79,0.6322408095002174],[125,-22,64,0.6169403828680515],[125,-22,65,0.6152153126895428],[125,-22,66,0.6153258234262466],[125,-22,67,0.6164980828762054],[125,-22,68,0.6174379661679268],[125,-22,69,0.617208406329155],[125,-22,70,0.6161121502518654],[125,-22,71,0.6144571229815483],[125,-22,72,0.6116722114384174],[125,-22,73,0.6087841428816319],[125,-22,74,0.6070769913494587],[125,-22,75,0.6070453822612762],[125,-22,76,0.6092199720442295],[125,-22,77,0.6135440096259117],[125,-22,78,0.6188693307340145],[125,-22,79,0.6244283095002174],[125,-21,64,0.6091278828680515],[125,-21,65,0.6074028126895428],[125,-21,66,0.6075133234262466],[125,-21,67,0.6086855828762054],[125,-21,68,0.6096254661679268],[125,-21,69,0.609395906329155],[125,-21,70,0.6082996502518654],[125,-21,71,0.6066446229815483],[125,-21,72,0.6038597114384174],[125,-21,73,0.6009716428816319],[125,-21,74,0.5992644913494587],[125,-21,75,0.5992328822612762],[125,-21,76,0.6014074720442295],[125,-21,77,0.6057315096259117],[125,-21,78,0.6110568307340145],[125,-21,79,0.6166158095002174],[125,-20,64,0.6013153828680515],[125,-20,65,0.5995903126895428],[125,-20,66,0.5997008234262466],[125,-20,67,0.6008730828762054],[125,-20,68,0.6018129661679268],[125,-20,69,0.601583406329155],[125,-20,70,0.6004871502518654],[125,-20,71,0.5988321229815483],[125,-20,72,0.5960472114384174],[125,-20,73,0.5931591428816319],[125,-20,74,0.5914519913494587],[125,-20,75,0.5914203822612762],[125,-20,76,0.5935949720442295],[125,-20,77,0.5979190096259117],[125,-20,78,0.6032443307340145],[125,-20,79,0.6088033095002174],[125,-19,64,0.5935028828680515],[125,-19,65,0.5917778126895428],[125,-19,66,0.5918883234262466],[125,-19,67,0.5930605828762054],[125,-19,68,0.5940004661679268],[125,-19,69,0.593770906329155],[125,-19,70,0.5926746502518654],[125,-19,71,0.5910196229815483],[125,-19,72,0.5882347114384174],[125,-19,73,0.5853466428816319],[125,-19,74,0.5836394913494587],[125,-19,75,0.5836078822612762],[125,-19,76,0.5857824720442295],[125,-19,77,0.5901065096259117],[125,-19,78,0.5954318307340145],[125,-19,79,0.6009908095002174],[125,-18,64,0.5856903828680515],[125,-18,65,0.5839653126895428],[125,-18,66,0.5840758234262466],[125,-18,67,0.5852480828762054],[125,-18,68,0.5861879661679268],[125,-18,69,0.585958406329155],[125,-18,70,0.5848621502518654],[125,-18,71,0.5832071229815483],[125,-18,72,0.5804222114384174],[125,-18,73,0.5775341428816319],[125,-18,74,0.5758269913494587],[125,-18,75,0.5757953822612762],[125,-18,76,0.5779699720442295],[125,-18,77,0.5822940096259117],[125,-18,78,0.5876193307340145],[125,-18,79,0.5931783095002174],[125,-17,64,0.5778778828680515],[125,-17,65,0.5761528126895428],[125,-17,66,0.5762633234262466],[125,-17,67,0.5774355828762054],[125,-17,68,0.5783754661679268],[125,-17,69,0.578145906329155],[125,-17,70,0.5770496502518654],[125,-17,71,0.5753946229815483],[125,-17,72,0.5726097114384174],[125,-17,73,0.5697216428816319],[125,-17,74,0.5680144913494587],[125,-17,75,0.5679828822612762],[125,-17,76,0.5701574720442295],[125,-17,77,0.5744815096259117],[125,-17,78,0.5798068307340145],[125,-17,79,0.5853658095002174],[125,-16,64,0.5700653828680515],[125,-16,65,0.5683403126895428],[125,-16,66,0.5684508234262466],[125,-16,67,0.5696230828762054],[125,-16,68,0.5705629661679268],[125,-16,69,0.570333406329155],[125,-16,70,0.5692371502518654],[125,-16,71,0.5675821229815483],[125,-16,72,0.5647972114384174],[125,-16,73,0.5619091428816319],[125,-16,74,0.5602019913494587],[125,-16,75,0.5601703822612762],[125,-16,76,0.5623449720442295],[125,-16,77,0.5666690096259117],[125,-16,78,0.5719943307340145],[125,-16,79,0.5775533095002174],[125,-15,64,0.5622528828680515],[125,-15,65,0.5605278126895428],[125,-15,66,0.5606383234262466],[125,-15,67,0.5618105828762054],[125,-15,68,0.5627504661679268],[125,-15,69,0.562520906329155],[125,-15,70,0.5614246502518654],[125,-15,71,0.5597696229815483],[125,-15,72,0.5569847114384174],[125,-15,73,0.5540966428816319],[125,-15,74,0.5523894913494587],[125,-15,75,0.5523578822612762],[125,-15,76,0.5545324720442295],[125,-15,77,0.5588565096259117],[125,-15,78,0.5641818307340145],[125,-15,79,0.5697408095002174],[125,-14,64,0.5544403828680515],[125,-14,65,0.5527153126895428],[125,-14,66,0.5528258234262466],[125,-14,67,0.5539980828762054],[125,-14,68,0.5549379661679268],[125,-14,69,0.554708406329155],[125,-14,70,0.5536121502518654],[125,-14,71,0.5519571229815483],[125,-14,72,0.5491722114384174],[125,-14,73,0.5462841428816319],[125,-14,74,0.5445769913494587],[125,-14,75,0.5445453822612762],[125,-14,76,0.5467199720442295],[125,-14,77,0.5510440096259117],[125,-14,78,0.5563693307340145],[125,-14,79,0.5619283095002174],[125,-13,64,0.5466278828680515],[125,-13,65,0.5449028126895428],[125,-13,66,0.5450133234262466],[125,-13,67,0.5461855828762054],[125,-13,68,0.5471254661679268],[125,-13,69,0.546895906329155],[125,-13,70,0.5457996502518654],[125,-13,71,0.5441446229815483],[125,-13,72,0.5413597114384174],[125,-13,73,0.5384716428816319],[125,-13,74,0.5367644913494587],[125,-13,75,0.5367328822612762],[125,-13,76,0.5389074720442295],[125,-13,77,0.5432315096259117],[125,-13,78,0.5485568307340145],[125,-13,79,0.5541158095002174],[125,-12,64,0.5388153828680515],[125,-12,65,0.5370903126895428],[125,-12,66,0.5372008234262466],[125,-12,67,0.5383730828762054],[125,-12,68,0.5393129661679268],[125,-12,69,0.539083406329155],[125,-12,70,0.5379871502518654],[125,-12,71,0.5363321229815483],[125,-12,72,0.5335472114384174],[125,-12,73,0.5306591428816319],[125,-12,74,0.5289519913494587],[125,-12,75,0.5289203822612762],[125,-12,76,0.5310949720442295],[125,-12,77,0.5354190096259117],[125,-12,78,0.5407443307340145],[125,-12,79,0.5463033095002174],[125,-11,64,0.5310028828680515],[125,-11,65,0.5292778126895428],[125,-11,66,0.5293883234262466],[125,-11,67,0.5305605828762054],[125,-11,68,0.5315004661679268],[125,-11,69,0.531270906329155],[125,-11,70,0.5301746502518654],[125,-11,71,0.5285196229815483],[125,-11,72,0.5257347114384174],[125,-11,73,0.5228466428816319],[125,-11,74,0.5211394913494587],[125,-11,75,0.5211078822612762],[125,-11,76,0.5232824720442295],[125,-11,77,0.5276065096259117],[125,-11,78,0.5329318307340145],[125,-11,79,0.5384908095002174],[125,-10,64,0.5231903828680515],[125,-10,65,0.5214653126895428],[125,-10,66,0.5215758234262466],[125,-10,67,0.5227480828762054],[125,-10,68,0.5236879661679268],[125,-10,69,0.523458406329155],[125,-10,70,0.5223621502518654],[125,-10,71,0.5207071229815483],[125,-10,72,0.5179222114384174],[125,-10,73,0.5150341428816319],[125,-10,74,0.5133269913494587],[125,-10,75,0.5132953822612762],[125,-10,76,0.5154699720442295],[125,-10,77,0.5197940096259117],[125,-10,78,0.5251193307340145],[125,-10,79,0.5306783095002174],[125,-9,64,0.5153778828680515],[125,-9,65,0.5136528126895428],[125,-9,66,0.5137633234262466],[125,-9,67,0.5149355828762054],[125,-9,68,0.5158754661679268],[125,-9,69,0.515645906329155],[125,-9,70,0.5145496502518654],[125,-9,71,0.5128946229815483],[125,-9,72,0.5101097114384174],[125,-9,73,0.5072216428816319],[125,-9,74,0.5055144913494587],[125,-9,75,0.5054828822612762],[125,-9,76,0.5076574720442295],[125,-9,77,0.5119815096259117],[125,-9,78,0.5173068307340145],[125,-9,79,0.5228658095002174],[125,-8,64,0.5075653828680515],[125,-8,65,0.5058403126895428],[125,-8,66,0.5059508234262466],[125,-8,67,0.5071230828762054],[125,-8,68,0.5080629661679268],[125,-8,69,0.507833406329155],[125,-8,70,0.5067371502518654],[125,-8,71,0.5050821229815483],[125,-8,72,0.5022972114384174],[125,-8,73,0.49940914288163185],[125,-8,74,0.4977019913494587],[125,-8,75,0.49767038226127625],[125,-8,76,0.4998449720442295],[125,-8,77,0.5041690096259117],[125,-8,78,0.5094943307340145],[125,-8,79,0.5150533095002174],[125,-7,64,0.49975288286805153],[125,-7,65,0.49802781268954277],[125,-7,66,0.49813832342624664],[125,-7,67,0.49931058287620544],[125,-7,68,0.5002504661679268],[125,-7,69,0.500020906329155],[125,-7,70,0.4989246502518654],[125,-7,71,0.4972696229815483],[125,-7,72,0.49448471143841743],[125,-7,73,0.49159664288163185],[125,-7,74,0.4898894913494587],[125,-7,75,0.48985788226127625],[125,-7,76,0.4920324720442295],[125,-7,77,0.4963565096259117],[125,-7,78,0.5016818307340145],[125,-7,79,0.5072408095002174],[125,-6,64,0.49194038286805153],[125,-6,65,0.49021531268954277],[125,-6,66,0.49032582342624664],[125,-6,67,0.49149808287620544],[125,-6,68,0.4924379661679268],[125,-6,69,0.49220840632915497],[125,-6,70,0.4911121502518654],[125,-6,71,0.4894571229815483],[125,-6,72,0.48667221143841743],[125,-6,73,0.48378414288163185],[125,-6,74,0.4820769913494587],[125,-6,75,0.48204538226127625],[125,-6,76,0.4842199720442295],[125,-6,77,0.4885440096259117],[125,-6,78,0.4938693307340145],[125,-6,79,0.49942830950021744],[125,-5,64,0.48412788286805153],[125,-5,65,0.48240281268954277],[125,-5,66,0.48251332342624664],[125,-5,67,0.48368558287620544],[125,-5,68,0.4846254661679268],[125,-5,69,0.48439590632915497],[125,-5,70,0.4832996502518654],[125,-5,71,0.4816446229815483],[125,-5,72,0.47885971143841743],[125,-5,73,0.47597164288163185],[125,-5,74,0.4742644913494587],[125,-5,75,0.47423288226127625],[125,-5,76,0.4764074720442295],[125,-5,77,0.4807315096259117],[125,-5,78,0.4860568307340145],[125,-5,79,0.49161580950021744],[125,-4,64,0.47631538286805153],[125,-4,65,0.47459031268954277],[125,-4,66,0.47470082342624664],[125,-4,67,0.47587308287620544],[125,-4,68,0.4768129661679268],[125,-4,69,0.47658340632915497],[125,-4,70,0.4754871502518654],[125,-4,71,0.4738321229815483],[125,-4,72,0.47104721143841743],[125,-4,73,0.46815914288163185],[125,-4,74,0.4664519913494587],[125,-4,75,0.46642038226127625],[125,-4,76,0.4685949720442295],[125,-4,77,0.4729190096259117],[125,-4,78,0.4782443307340145],[125,-4,79,0.48380330950021744],[125,-3,64,0.46850288286805153],[125,-3,65,0.46677781268954277],[125,-3,66,0.46688832342624664],[125,-3,67,0.46806058287620544],[125,-3,68,0.4690004661679268],[125,-3,69,0.46877090632915497],[125,-3,70,0.4676746502518654],[125,-3,71,0.4660196229815483],[125,-3,72,0.46323471143841743],[125,-3,73,0.46034664288163185],[125,-3,74,0.4586394913494587],[125,-3,75,0.45860788226127625],[125,-3,76,0.4607824720442295],[125,-3,77,0.4651065096259117],[125,-3,78,0.4704318307340145],[125,-3,79,0.47599080950021744],[125,-2,64,0.46069038286805153],[125,-2,65,0.45896531268954277],[125,-2,66,0.45907582342624664],[125,-2,67,0.46024808287620544],[125,-2,68,0.4611879661679268],[125,-2,69,0.46095840632915497],[125,-2,70,0.4598621502518654],[125,-2,71,0.4582071229815483],[125,-2,72,0.45542221143841743],[125,-2,73,0.45253414288163185],[125,-2,74,0.4508269913494587],[125,-2,75,0.45079538226127625],[125,-2,76,0.4529699720442295],[125,-2,77,0.4572940096259117],[125,-2,78,0.4626193307340145],[125,-2,79,0.46817830950021744],[125,-1,64,0.45287788286805153],[125,-1,65,0.45115281268954277],[125,-1,66,0.45126332342624664],[125,-1,67,0.45243558287620544],[125,-1,68,0.4533754661679268],[125,-1,69,0.45314590632915497],[125,-1,70,0.4520496502518654],[125,-1,71,0.4503946229815483],[125,-1,72,0.44760971143841743],[125,-1,73,0.44472164288163185],[125,-1,74,0.4430144913494587],[125,-1,75,0.44298288226127625],[125,-1,76,0.4451574720442295],[125,-1,77,0.4494815096259117],[125,-1,78,0.4548068307340145],[125,-1,79,0.46036580950021744],[125,0,64,0.44506538286805153],[125,0,65,0.44334031268954277],[125,0,66,0.44345082342624664],[125,0,67,0.44462308287620544],[125,0,68,0.4455629661679268],[125,0,69,0.44533340632915497],[125,0,70,0.4442371502518654],[125,0,71,0.4425821229815483],[125,0,72,0.43979721143841743],[125,0,73,0.43690914288163185],[125,0,74,0.4352019913494587],[125,0,75,0.43517038226127625],[125,0,76,0.4373449720442295],[125,0,77,0.4416690096259117],[125,0,78,0.4469943307340145],[125,0,79,0.45255330950021744],[125,1,64,0.43725288286805153],[125,1,65,0.43552781268954277],[125,1,66,0.43563832342624664],[125,1,67,0.43681058287620544],[125,1,68,0.4377504661679268],[125,1,69,0.43752090632915497],[125,1,70,0.4364246502518654],[125,1,71,0.4347696229815483],[125,1,72,0.43198471143841743],[125,1,73,0.42909664288163185],[125,1,74,0.4273894913494587],[125,1,75,0.42735788226127625],[125,1,76,0.4295324720442295],[125,1,77,0.4338565096259117],[125,1,78,0.4391818307340145],[125,1,79,0.44474080950021744],[125,2,64,0.42944038286805153],[125,2,65,0.42771531268954277],[125,2,66,0.42782582342624664],[125,2,67,0.42899808287620544],[125,2,68,0.4299379661679268],[125,2,69,0.42970840632915497],[125,2,70,0.4286121502518654],[125,2,71,0.4269571229815483],[125,2,72,0.42417221143841743],[125,2,73,0.42128414288163185],[125,2,74,0.4195769913494587],[125,2,75,0.41954538226127625],[125,2,76,0.4217199720442295],[125,2,77,0.4260440096259117],[125,2,78,0.4313693307340145],[125,2,79,0.43692830950021744],[125,3,64,0.42162788286805153],[125,3,65,0.41990281268954277],[125,3,66,0.42001332342624664],[125,3,67,0.42118558287620544],[125,3,68,0.4221254661679268],[125,3,69,0.42189590632915497],[125,3,70,0.4207996502518654],[125,3,71,0.4191446229815483],[125,3,72,0.41635971143841743],[125,3,73,0.41347164288163185],[125,3,74,0.4117644913494587],[125,3,75,0.41173288226127625],[125,3,76,0.4139074720442295],[125,3,77,0.4182315096259117],[125,3,78,0.4235568307340145],[125,3,79,0.42911580950021744],[125,4,64,0.41381538286805153],[125,4,65,0.41209031268954277],[125,4,66,0.41220082342624664],[125,4,67,0.41337308287620544],[125,4,68,0.4143129661679268],[125,4,69,0.41408340632915497],[125,4,70,0.4129871502518654],[125,4,71,0.4113321229815483],[125,4,72,0.40854721143841743],[125,4,73,0.40565914288163185],[125,4,74,0.4039519913494587],[125,4,75,0.40392038226127625],[125,4,76,0.4060949720442295],[125,4,77,0.4104190096259117],[125,4,78,0.4157443307340145],[125,4,79,0.42130330950021744],[125,5,64,0.40600288286805153],[125,5,65,0.40427781268954277],[125,5,66,0.40438832342624664],[125,5,67,0.40556058287620544],[125,5,68,0.4065004661679268],[125,5,69,0.40627090632915497],[125,5,70,0.4051746502518654],[125,5,71,0.4035196229815483],[125,5,72,0.40073471143841743],[125,5,73,0.39784664288163185],[125,5,74,0.3961394913494587],[125,5,75,0.39610788226127625],[125,5,76,0.3982824720442295],[125,5,77,0.4026065096259117],[125,5,78,0.4079318307340145],[125,5,79,0.41349080950021744],[125,6,64,0.39819038286805153],[125,6,65,0.39646531268954277],[125,6,66,0.39657582342624664],[125,6,67,0.39774808287620544],[125,6,68,0.3986879661679268],[125,6,69,0.39845840632915497],[125,6,70,0.3973621502518654],[125,6,71,0.3957071229815483],[125,6,72,0.39292221143841743],[125,6,73,0.39003414288163185],[125,6,74,0.3883269913494587],[125,6,75,0.38829538226127625],[125,6,76,0.3904699720442295],[125,6,77,0.3947940096259117],[125,6,78,0.4001193307340145],[125,6,79,0.40567830950021744],[125,7,64,0.39037788286805153],[125,7,65,0.38865281268954277],[125,7,66,0.38876332342624664],[125,7,67,0.38993558287620544],[125,7,68,0.3908754661679268],[125,7,69,0.39064590632915497],[125,7,70,0.3895496502518654],[125,7,71,0.3878946229815483],[125,7,72,0.38510971143841743],[125,7,73,0.38222164288163185],[125,7,74,0.3805144913494587],[125,7,75,0.38048288226127625],[125,7,76,0.3826574720442295],[125,7,77,0.3869815096259117],[125,7,78,0.3923068307340145],[125,7,79,0.39786580950021744],[125,8,64,0.38256538286805153],[125,8,65,0.38084031268954277],[125,8,66,0.38095082342624664],[125,8,67,0.38212308287620544],[125,8,68,0.3830629661679268],[125,8,69,0.38283340632915497],[125,8,70,0.3817371502518654],[125,8,71,0.3800821229815483],[125,8,72,0.37729721143841743],[125,8,73,0.37440914288163185],[125,8,74,0.3727019913494587],[125,8,75,0.37267038226127625],[125,8,76,0.3748449720442295],[125,8,77,0.3791690096259117],[125,8,78,0.3844943307340145],[125,8,79,0.39005330950021744],[125,9,64,0.37475288286805153],[125,9,65,0.37302781268954277],[125,9,66,0.37313832342624664],[125,9,67,0.37431058287620544],[125,9,68,0.3752504661679268],[125,9,69,0.37502090632915497],[125,9,70,0.3739246502518654],[125,9,71,0.3722696229815483],[125,9,72,0.36948471143841743],[125,9,73,0.36659664288163185],[125,9,74,0.3648894913494587],[125,9,75,0.36485788226127625],[125,9,76,0.3670324720442295],[125,9,77,0.3713565096259117],[125,9,78,0.3766818307340145],[125,9,79,0.38224080950021744],[125,10,64,0.36694038286805153],[125,10,65,0.36521531268954277],[125,10,66,0.36532582342624664],[125,10,67,0.36649808287620544],[125,10,68,0.3674379661679268],[125,10,69,0.36720840632915497],[125,10,70,0.3661121502518654],[125,10,71,0.3644571229815483],[125,10,72,0.36167221143841743],[125,10,73,0.35878414288163185],[125,10,74,0.3570769913494587],[125,10,75,0.35704538226127625],[125,10,76,0.3592199720442295],[125,10,77,0.3635440096259117],[125,10,78,0.3688693307340145],[125,10,79,0.37442830950021744],[125,11,64,0.35912788286805153],[125,11,65,0.35740281268954277],[125,11,66,0.35751332342624664],[125,11,67,0.35868558287620544],[125,11,68,0.3596254661679268],[125,11,69,0.35939590632915497],[125,11,70,0.3582996502518654],[125,11,71,0.3566446229815483],[125,11,72,0.35385971143841743],[125,11,73,0.35097164288163185],[125,11,74,0.3492644913494587],[125,11,75,0.34923288226127625],[125,11,76,0.3514074720442295],[125,11,77,0.3557315096259117],[125,11,78,0.3610568307340145],[125,11,79,0.36661580950021744],[125,12,64,0.35131538286805153],[125,12,65,0.34959031268954277],[125,12,66,0.34970082342624664],[125,12,67,0.35087308287620544],[125,12,68,0.3518129661679268],[125,12,69,0.35158340632915497],[125,12,70,0.3504871502518654],[125,12,71,0.3488321229815483],[125,12,72,0.34604721143841743],[125,12,73,0.34315914288163185],[125,12,74,0.3414519913494587],[125,12,75,0.34142038226127625],[125,12,76,0.3435949720442295],[125,12,77,0.3479190096259117],[125,12,78,0.3532443307340145],[125,12,79,0.35880330950021744],[125,13,64,0.34350288286805153],[125,13,65,0.34177781268954277],[125,13,66,0.34188832342624664],[125,13,67,0.34306058287620544],[125,13,68,0.3440004661679268],[125,13,69,0.34377090632915497],[125,13,70,0.3426746502518654],[125,13,71,0.3410196229815483],[125,13,72,0.33823471143841743],[125,13,73,0.33534664288163185],[125,13,74,0.3336394913494587],[125,13,75,0.33360788226127625],[125,13,76,0.3357824720442295],[125,13,77,0.3401065096259117],[125,13,78,0.3454318307340145],[125,13,79,0.35099080950021744],[125,14,64,0.33569038286805153],[125,14,65,0.33396531268954277],[125,14,66,0.33407582342624664],[125,14,67,0.33524808287620544],[125,14,68,0.3361879661679268],[125,14,69,0.33595840632915497],[125,14,70,0.3348621502518654],[125,14,71,0.3332071229815483],[125,14,72,0.33042221143841743],[125,14,73,0.32753414288163185],[125,14,74,0.3258269913494587],[125,14,75,0.32579538226127625],[125,14,76,0.3279699720442295],[125,14,77,0.3322940096259117],[125,14,78,0.3376193307340145],[125,14,79,0.34317830950021744],[125,15,64,0.32787788286805153],[125,15,65,0.32615281268954277],[125,15,66,0.32626332342624664],[125,15,67,0.32743558287620544],[125,15,68,0.3283754661679268],[125,15,69,0.32814590632915497],[125,15,70,0.3270496502518654],[125,15,71,0.3253946229815483],[125,15,72,0.32260971143841743],[125,15,73,0.31972164288163185],[125,15,74,0.3180144913494587],[125,15,75,0.31798288226127625],[125,15,76,0.3201574720442295],[125,15,77,0.3244815096259117],[125,15,78,0.3298068307340145],[125,15,79,0.33536580950021744],[125,16,64,0.32006538286805153],[125,16,65,0.31834031268954277],[125,16,66,0.31845082342624664],[125,16,67,0.31962308287620544],[125,16,68,0.3205629661679268],[125,16,69,0.32033340632915497],[125,16,70,0.3192371502518654],[125,16,71,0.3175821229815483],[125,16,72,0.31479721143841743],[125,16,73,0.31190914288163185],[125,16,74,0.3102019913494587],[125,16,75,0.31017038226127625],[125,16,76,0.3123449720442295],[125,16,77,0.3166690096259117],[125,16,78,0.3219943307340145],[125,16,79,0.32755330950021744],[125,17,64,0.31225288286805153],[125,17,65,0.31052781268954277],[125,17,66,0.31063832342624664],[125,17,67,0.31181058287620544],[125,17,68,0.3127504661679268],[125,17,69,0.31252090632915497],[125,17,70,0.3114246502518654],[125,17,71,0.3097696229815483],[125,17,72,0.30698471143841743],[125,17,73,0.30409664288163185],[125,17,74,0.3023894913494587],[125,17,75,0.30235788226127625],[125,17,76,0.3045324720442295],[125,17,77,0.3088565096259117],[125,17,78,0.3141818307340145],[125,17,79,0.31974080950021744],[125,18,64,0.30444038286805153],[125,18,65,0.30271531268954277],[125,18,66,0.30282582342624664],[125,18,67,0.30399808287620544],[125,18,68,0.3049379661679268],[125,18,69,0.30470840632915497],[125,18,70,0.3036121502518654],[125,18,71,0.3019571229815483],[125,18,72,0.29917221143841743],[125,18,73,0.29628414288163185],[125,18,74,0.2945769913494587],[125,18,75,0.29454538226127625],[125,18,76,0.2967199720442295],[125,18,77,0.3010440096259117],[125,18,78,0.3063693307340145],[125,18,79,0.31192830950021744],[125,19,64,0.29662788286805153],[125,19,65,0.29490281268954277],[125,19,66,0.29501332342624664],[125,19,67,0.29618558287620544],[125,19,68,0.2971254661679268],[125,19,69,0.29689590632915497],[125,19,70,0.2957996502518654],[125,19,71,0.2941446229815483],[125,19,72,0.29135971143841743],[125,19,73,0.28847164288163185],[125,19,74,0.2867644913494587],[125,19,75,0.28673288226127625],[125,19,76,0.2889074720442295],[125,19,77,0.2932315096259117],[125,19,78,0.2985568307340145],[125,19,79,0.30411580950021744],[125,20,64,0.28881538286805153],[125,20,65,0.28709031268954277],[125,20,66,0.28720082342624664],[125,20,67,0.28837308287620544],[125,20,68,0.2893129661679268],[125,20,69,0.28908340632915497],[125,20,70,0.2879871502518654],[125,20,71,0.2863321229815483],[125,20,72,0.28354721143841743],[125,20,73,0.28065914288163185],[125,20,74,0.2789519913494587],[125,20,75,0.27892038226127625],[125,20,76,0.2810949720442295],[125,20,77,0.2854190096259117],[125,20,78,0.2907443307340145],[125,20,79,0.29630330950021744],[125,21,64,0.28100288286805153],[125,21,65,0.27927781268954277],[125,21,66,0.27938832342624664],[125,21,67,0.28056058287620544],[125,21,68,0.2815004661679268],[125,21,69,0.28127090632915497],[125,21,70,0.2801746502518654],[125,21,71,0.2785196229815483],[125,21,72,0.27573471143841743],[125,21,73,0.27284664288163185],[125,21,74,0.2711394913494587],[125,21,75,0.27110788226127625],[125,21,76,0.2732824720442295],[125,21,77,0.2776065096259117],[125,21,78,0.2829318307340145],[125,21,79,0.28849080950021744],[125,22,64,0.27319038286805153],[125,22,65,0.27146531268954277],[125,22,66,0.27157582342624664],[125,22,67,0.27274808287620544],[125,22,68,0.2736879661679268],[125,22,69,0.27345840632915497],[125,22,70,0.2723621502518654],[125,22,71,0.2707071229815483],[125,22,72,0.26792221143841743],[125,22,73,0.26503414288163185],[125,22,74,0.2633269913494587],[125,22,75,0.26329538226127625],[125,22,76,0.2654699720442295],[125,22,77,0.2697940096259117],[125,22,78,0.2751193307340145],[125,22,79,0.28067830950021744],[125,23,64,0.26537788286805153],[125,23,65,0.26365281268954277],[125,23,66,0.26376332342624664],[125,23,67,0.26493558287620544],[125,23,68,0.2658754661679268],[125,23,69,0.26564590632915497],[125,23,70,0.2645496502518654],[125,23,71,0.2628946229815483],[125,23,72,0.26010971143841743],[125,23,73,0.25722164288163185],[125,23,74,0.2555144913494587],[125,23,75,0.25548288226127625],[125,23,76,0.2576574720442295],[125,23,77,0.2619815096259117],[125,23,78,0.2673068307340145],[125,23,79,0.27286580950021744],[125,24,64,0.25756538286805153],[125,24,65,0.25584031268954277],[125,24,66,0.25595082342624664],[125,24,67,0.25712308287620544],[125,24,68,0.2580629661679268],[125,24,69,0.25783340632915497],[125,24,70,0.2567371502518654],[125,24,71,0.2550821229815483],[125,24,72,0.25229721143841743],[125,24,73,0.24940914288163185],[125,24,74,0.2477019913494587],[125,24,75,0.24767038226127625],[125,24,76,0.2498449720442295],[125,24,77,0.2541690096259117],[125,24,78,0.2594943307340145],[125,24,79,0.26505330950021744],[125,25,64,0.24975288286805153],[125,25,65,0.24802781268954277],[125,25,66,0.24813832342624664],[125,25,67,0.24931058287620544],[125,25,68,0.2502504661679268],[125,25,69,0.25002090632915497],[125,25,70,0.2489246502518654],[125,25,71,0.2472696229815483],[125,25,72,0.24448471143841743],[125,25,73,0.24159664288163185],[125,25,74,0.2398894913494587],[125,25,75,0.23985788226127625],[125,25,76,0.2420324720442295],[125,25,77,0.2463565096259117],[125,25,78,0.2516818307340145],[125,25,79,0.25724080950021744],[125,26,64,0.24194038286805153],[125,26,65,0.24021531268954277],[125,26,66,0.24032582342624664],[125,26,67,0.24149808287620544],[125,26,68,0.2424379661679268],[125,26,69,0.24220840632915497],[125,26,70,0.2411121502518654],[125,26,71,0.2394571229815483],[125,26,72,0.23667221143841743],[125,26,73,0.23378414288163185],[125,26,74,0.2320769913494587],[125,26,75,0.23204538226127625],[125,26,76,0.2342199720442295],[125,26,77,0.2385440096259117],[125,26,78,0.2438693307340145],[125,26,79,0.24942830950021744],[125,27,64,0.23412788286805153],[125,27,65,0.23240281268954277],[125,27,66,0.23251332342624664],[125,27,67,0.23368558287620544],[125,27,68,0.2346254661679268],[125,27,69,0.23439590632915497],[125,27,70,0.2332996502518654],[125,27,71,0.2316446229815483],[125,27,72,0.22885971143841743],[125,27,73,0.22597164288163185],[125,27,74,0.2242644913494587],[125,27,75,0.22423288226127625],[125,27,76,0.2264074720442295],[125,27,77,0.2307315096259117],[125,27,78,0.2360568307340145],[125,27,79,0.24161580950021744],[125,28,64,0.22631538286805153],[125,28,65,0.22459031268954277],[125,28,66,0.22470082342624664],[125,28,67,0.22587308287620544],[125,28,68,0.2268129661679268],[125,28,69,0.22658340632915497],[125,28,70,0.2254871502518654],[125,28,71,0.2238321229815483],[125,28,72,0.22104721143841743],[125,28,73,0.21815914288163185],[125,28,74,0.2164519913494587],[125,28,75,0.21642038226127625],[125,28,76,0.2185949720442295],[125,28,77,0.2229190096259117],[125,28,78,0.2282443307340145],[125,28,79,0.23380330950021744],[125,29,64,0.21850288286805153],[125,29,65,0.21677781268954277],[125,29,66,0.21688832342624664],[125,29,67,0.21806058287620544],[125,29,68,0.2190004661679268],[125,29,69,0.21877090632915497],[125,29,70,0.2176746502518654],[125,29,71,0.2160196229815483],[125,29,72,0.21323471143841743],[125,29,73,0.21034664288163185],[125,29,74,0.2086394913494587],[125,29,75,0.20860788226127625],[125,29,76,0.2107824720442295],[125,29,77,0.2151065096259117],[125,29,78,0.2204318307340145],[125,29,79,0.22599080950021744],[125,30,64,0.21069038286805153],[125,30,65,0.20896531268954277],[125,30,66,0.20907582342624664],[125,30,67,0.21024808287620544],[125,30,68,0.2111879661679268],[125,30,69,0.21095840632915497],[125,30,70,0.2098621502518654],[125,30,71,0.2082071229815483],[125,30,72,0.20542221143841743],[125,30,73,0.20253414288163185],[125,30,74,0.2008269913494587],[125,30,75,0.20079538226127625],[125,30,76,0.2029699720442295],[125,30,77,0.2072940096259117],[125,30,78,0.2126193307340145],[125,30,79,0.21817830950021744],[125,31,64,0.20287788286805153],[125,31,65,0.20115281268954277],[125,31,66,0.20126332342624664],[125,31,67,0.20243558287620544],[125,31,68,0.2033754661679268],[125,31,69,0.20314590632915497],[125,31,70,0.2020496502518654],[125,31,71,0.2003946229815483],[125,31,72,0.19760971143841743],[125,31,73,0.19472164288163185],[125,31,74,0.1930144913494587],[125,31,75,0.19298288226127625],[125,31,76,0.1951574720442295],[125,31,77,0.1994815096259117],[125,31,78,0.2048068307340145],[125,31,79,0.21036580950021744],[125,32,64,0.19506538286805153],[125,32,65,0.19334031268954277],[125,32,66,0.19345082342624664],[125,32,67,0.19462308287620544],[125,32,68,0.1955629661679268],[125,32,69,0.19533340632915497],[125,32,70,0.1942371502518654],[125,32,71,0.1925821229815483],[125,32,72,0.18979721143841743],[125,32,73,0.18690914288163185],[125,32,74,0.1852019913494587],[125,32,75,0.18517038226127625],[125,32,76,0.1873449720442295],[125,32,77,0.1916690096259117],[125,32,78,0.1969943307340145],[125,32,79,0.20255330950021744],[125,33,64,0.18725288286805153],[125,33,65,0.18552781268954277],[125,33,66,0.18563832342624664],[125,33,67,0.18681058287620544],[125,33,68,0.1877504661679268],[125,33,69,0.18752090632915497],[125,33,70,0.1864246502518654],[125,33,71,0.1847696229815483],[125,33,72,0.18198471143841743],[125,33,73,0.17909664288163185],[125,33,74,0.1773894913494587],[125,33,75,0.17735788226127625],[125,33,76,0.1795324720442295],[125,33,77,0.1838565096259117],[125,33,78,0.1891818307340145],[125,33,79,0.19474080950021744],[125,34,64,0.17944038286805153],[125,34,65,0.17771531268954277],[125,34,66,0.17782582342624664],[125,34,67,0.17899808287620544],[125,34,68,0.1799379661679268],[125,34,69,0.17970840632915497],[125,34,70,0.1786121502518654],[125,34,71,0.1769571229815483],[125,34,72,0.17417221143841743],[125,34,73,0.17128414288163185],[125,34,74,0.1695769913494587],[125,34,75,0.16954538226127625],[125,34,76,0.1717199720442295],[125,34,77,0.1760440096259117],[125,34,78,0.1813693307340145],[125,34,79,0.18692830950021744],[125,35,64,0.17162788286805153],[125,35,65,0.16990281268954277],[125,35,66,0.17001332342624664],[125,35,67,0.17118558287620544],[125,35,68,0.1721254661679268],[125,35,69,0.17189590632915497],[125,35,70,0.1707996502518654],[125,35,71,0.1691446229815483],[125,35,72,0.16635971143841743],[125,35,73,0.16347164288163185],[125,35,74,0.1617644913494587],[125,35,75,0.16173288226127625],[125,35,76,0.1639074720442295],[125,35,77,0.1682315096259117],[125,35,78,0.1735568307340145],[125,35,79,0.17911580950021744],[125,36,64,0.16381538286805153],[125,36,65,0.16209031268954277],[125,36,66,0.16220082342624664],[125,36,67,0.16337308287620544],[125,36,68,0.1643129661679268],[125,36,69,0.16408340632915497],[125,36,70,0.1629871502518654],[125,36,71,0.1613321229815483],[125,36,72,0.15854721143841743],[125,36,73,0.15565914288163185],[125,36,74,0.1539519913494587],[125,36,75,0.15392038226127625],[125,36,76,0.1560949720442295],[125,36,77,0.1604190096259117],[125,36,78,0.1657443307340145],[125,36,79,0.17130330950021744],[125,37,64,0.15600288286805153],[125,37,65,0.15427781268954277],[125,37,66,0.15438832342624664],[125,37,67,0.15556058287620544],[125,37,68,0.1565004661679268],[125,37,69,0.15627090632915497],[125,37,70,0.1551746502518654],[125,37,71,0.1535196229815483],[125,37,72,0.15073471143841743],[125,37,73,0.14784664288163185],[125,37,74,0.1461394913494587],[125,37,75,0.14610788226127625],[125,37,76,0.1482824720442295],[125,37,77,0.1526065096259117],[125,37,78,0.1579318307340145],[125,37,79,0.16349080950021744],[125,38,64,0.14819038286805153],[125,38,65,0.14646531268954277],[125,38,66,0.14657582342624664],[125,38,67,0.14774808287620544],[125,38,68,0.1486879661679268],[125,38,69,0.14845840632915497],[125,38,70,0.1473621502518654],[125,38,71,0.1457071229815483],[125,38,72,0.14292221143841743],[125,38,73,0.14003414288163185],[125,38,74,0.1383269913494587],[125,38,75,0.13829538226127625],[125,38,76,0.1404699720442295],[125,38,77,0.1447940096259117],[125,38,78,0.1501193307340145],[125,38,79,0.15567830950021744],[125,39,64,0.14037788286805153],[125,39,65,0.13865281268954277],[125,39,66,0.13876332342624664],[125,39,67,0.13993558287620544],[125,39,68,0.1408754661679268],[125,39,69,0.14064590632915497],[125,39,70,0.1395496502518654],[125,39,71,0.1378946229815483],[125,39,72,0.13510971143841743],[125,39,73,0.13222164288163185],[125,39,74,0.1305144913494587],[125,39,75,0.13048288226127625],[125,39,76,0.1326574720442295],[125,39,77,0.1369815096259117],[125,39,78,0.1423068307340145],[125,39,79,0.14786580950021744],[125,40,64,0.13256538286805153],[125,40,65,0.13084031268954277],[125,40,66,0.13095082342624664],[125,40,67,0.13212308287620544],[125,40,68,0.1330629661679268],[125,40,69,0.13283340632915497],[125,40,70,0.1317371502518654],[125,40,71,0.1300821229815483],[125,40,72,0.12729721143841743],[125,40,73,0.12440914288163185],[125,40,74,0.1227019913494587],[125,40,75,0.12267038226127625],[125,40,76,0.12484497204422951],[125,40,77,0.1291690096259117],[125,40,78,0.1344943307340145],[125,40,79,0.14005330950021744],[125,41,64,0.12475288286805153],[125,41,65,0.12302781268954277],[125,41,66,0.12313832342624664],[125,41,67,0.12431058287620544],[125,41,68,0.1252504661679268],[125,41,69,0.12502090632915497],[125,41,70,0.12392465025186539],[125,41,71,0.12226962298154831],[125,41,72,0.11948471143841743],[125,41,73,0.11659664288163185],[125,41,74,0.1148894913494587],[125,41,75,0.11485788226127625],[125,41,76,0.11703247204422951],[125,41,77,0.12135650962591171],[125,41,78,0.1266818307340145],[125,41,79,0.13224080950021744],[125,42,64,0.11694038286805153],[125,42,65,0.11521531268954277],[125,42,66,0.11532582342624664],[125,42,67,0.11649808287620544],[125,42,68,0.11743796616792679],[125,42,69,0.11720840632915497],[125,42,70,0.11611215025186539],[125,42,71,0.11445712298154831],[125,42,72,0.11167221143841743],[125,42,73,0.10878414288163185],[125,42,74,0.1070769913494587],[125,42,75,0.10704538226127625],[125,42,76,0.10921997204422951],[125,42,77,0.11354400962591171],[125,42,78,0.11886933073401451],[125,42,79,0.12442830950021744],[125,43,64,0.10912788286805153],[125,43,65,0.10740281268954277],[125,43,66,0.10751332342624664],[125,43,67,0.10868558287620544],[125,43,68,0.10962546616792679],[125,43,69,0.10939590632915497],[125,43,70,0.10829965025186539],[125,43,71,0.10664462298154831],[125,43,72,0.10385971143841743],[125,43,73,0.10097164288163185],[125,43,74,0.0992644913494587],[125,43,75,0.09923288226127625],[125,43,76,0.10140747204422951],[125,43,77,0.10573150962591171],[125,43,78,0.11105683073401451],[125,43,79,0.11661580950021744],[125,44,64,0.10131538286805153],[125,44,65,0.09959031268954277],[125,44,66,0.09970082342624664],[125,44,67,0.10087308287620544],[125,44,68,0.10181296616792679],[125,44,69,0.10158340632915497],[125,44,70,0.10048715025186539],[125,44,71,0.09883212298154831],[125,44,72,0.09604721143841743],[125,44,73,0.09315914288163185],[125,44,74,0.0914519913494587],[125,44,75,0.09142038226127625],[125,44,76,0.09359497204422951],[125,44,77,0.09791900962591171],[125,44,78,0.10324433073401451],[125,44,79,0.10880330950021744],[125,45,64,0.09350288286805153],[125,45,65,0.09177781268954277],[125,45,66,0.09188832342624664],[125,45,67,0.09306058287620544],[125,45,68,0.09400046616792679],[125,45,69,0.09377090632915497],[125,45,70,0.09267465025186539],[125,45,71,0.09101962298154831],[125,45,72,0.08823471143841743],[125,45,73,0.08534664288163185],[125,45,74,0.0836394913494587],[125,45,75,0.08360788226127625],[125,45,76,0.08578247204422951],[125,45,77,0.09010650962591171],[125,45,78,0.09543183073401451],[125,45,79,0.10099080950021744],[125,46,64,0.08569038286805153],[125,46,65,0.08396531268954277],[125,46,66,0.08407582342624664],[125,46,67,0.08524808287620544],[125,46,68,0.08618796616792679],[125,46,69,0.08595840632915497],[125,46,70,0.08486215025186539],[125,46,71,0.08320712298154831],[125,46,72,0.08042221143841743],[125,46,73,0.07753414288163185],[125,46,74,0.0758269913494587],[125,46,75,0.07579538226127625],[125,46,76,0.07796997204422951],[125,46,77,0.08229400962591171],[125,46,78,0.08761933073401451],[125,46,79,0.09317830950021744],[125,47,64,0.07787788286805153],[125,47,65,0.07615281268954277],[125,47,66,0.07626332342624664],[125,47,67,0.07743558287620544],[125,47,68,0.07837546616792679],[125,47,69,0.07814590632915497],[125,47,70,0.07704965025186539],[125,47,71,0.07539462298154831],[125,47,72,0.07260971143841743],[125,47,73,0.06972164288163185],[125,47,74,0.0680144913494587],[125,47,75,0.06798288226127625],[125,47,76,0.07015747204422951],[125,47,77,0.07448150962591171],[125,47,78,0.07980683073401451],[125,47,79,0.08536580950021744],[125,48,64,0.07006538286805153],[125,48,65,0.06834031268954277],[125,48,66,0.06845082342624664],[125,48,67,0.06962308287620544],[125,48,68,0.07056296616792679],[125,48,69,0.07033340632915497],[125,48,70,0.06923715025186539],[125,48,71,0.06758212298154831],[125,48,72,0.06479721143841743],[125,48,73,0.06190914288163185],[125,48,74,0.060201991349458694],[125,48,75,0.060170382261276245],[125,48,76,0.06234497204422951],[125,48,77,0.06666900962591171],[125,48,78,0.07199433073401451],[125,48,79,0.07755330950021744],[125,49,64,0.06225288286805153],[125,49,65,0.06052781268954277],[125,49,66,0.06063832342624664],[125,49,67,0.061810582876205444],[125,49,68,0.06275046616792679],[125,49,69,0.06252090632915497],[125,49,70,0.06142465025186539],[125,49,71,0.05976962298154831],[125,49,72,0.056984711438417435],[125,49,73,0.05409664288163185],[125,49,74,0.052389491349458694],[125,49,75,0.052357882261276245],[125,49,76,0.05453247204422951],[125,49,77,0.05885650962591171],[125,49,78,0.06418183073401451],[125,49,79,0.06974080950021744],[125,50,64,0.05444038286805153],[125,50,65,0.05271531268954277],[125,50,66,0.05282582342624664],[125,50,67,0.053998082876205444],[125,50,68,0.05493796616792679],[125,50,69,0.05470840632915497],[125,50,70,0.05361215025186539],[125,50,71,0.05195712298154831],[125,50,72,0.049172211438417435],[125,50,73,0.04628414288163185],[125,50,74,0.044576991349458694],[125,50,75,0.044545382261276245],[125,50,76,0.04671997204422951],[125,50,77,0.05104400962591171],[125,50,78,0.05636933073401451],[125,50,79,0.06192830950021744],[125,51,64,0.04662788286805153],[125,51,65,0.04490281268954277],[125,51,66,0.04501332342624664],[125,51,67,0.046185582876205444],[125,51,68,0.04712546616792679],[125,51,69,0.04689590632915497],[125,51,70,0.04579965025186539],[125,51,71,0.04414462298154831],[125,51,72,0.041359711438417435],[125,51,73,0.03847164288163185],[125,51,74,0.036764491349458694],[125,51,75,0.036732882261276245],[125,51,76,0.03890747204422951],[125,51,77,0.04323150962591171],[125,51,78,0.04855683073401451],[125,51,79,0.05411580950021744],[125,52,64,0.03881538286805153],[125,52,65,0.03709031268954277],[125,52,66,0.03720082342624664],[125,52,67,0.038373082876205444],[125,52,68,0.03931296616792679],[125,52,69,0.03908340632915497],[125,52,70,0.03798715025186539],[125,52,71,0.03633212298154831],[125,52,72,0.033547211438417435],[125,52,73,0.03065914288163185],[125,52,74,0.028951991349458694],[125,52,75,0.028920382261276245],[125,52,76,0.031094972044229507],[125,52,77,0.03541900962591171],[125,52,78,0.04074433073401451],[125,52,79,0.04630330950021744],[125,53,64,0.03100288286805153],[125,53,65,0.02927781268954277],[125,53,66,0.029388323426246643],[125,53,67,0.030560582876205444],[125,53,68,0.03150046616792679],[125,53,69,0.03127090632915497],[125,53,70,0.030174650251865387],[125,53,71,0.02851962298154831],[125,53,72,0.025734711438417435],[125,53,73,0.02284664288163185],[125,53,74,0.021139491349458694],[125,53,75,0.021107882261276245],[125,53,76,0.023282472044229507],[125,53,77,0.027606509625911713],[125,53,78,0.03293183073401451],[125,53,79,0.03849080950021744],[125,54,64,0.02319038286805153],[125,54,65,0.02146531268954277],[125,54,66,0.021575823426246643],[125,54,67,0.022748082876205444],[125,54,68,0.02368796616792679],[125,54,69,0.023458406329154968],[125,54,70,0.022362150251865387],[125,54,71,0.02070712298154831],[125,54,72,0.017922211438417435],[125,54,73,0.015034142881631851],[125,54,74,0.013326991349458694],[125,54,75,0.013295382261276245],[125,54,76,0.015469972044229507],[125,54,77,0.019794009625911713],[125,54,78,0.02511933073401451],[125,54,79,0.030678309500217438],[125,55,64,0.015377882868051529],[125,55,65,0.01365281268954277],[125,55,66,0.013763323426246643],[125,55,67,0.014935582876205444],[125,55,68,0.01587546616792679],[125,55,69,0.015645906329154968],[125,55,70,0.014549650251865387],[125,55,71,0.01289462298154831],[125,55,72,0.010109711438417435],[125,55,73,0.007221642881631851],[125,55,74,0.0055144913494586945],[125,55,75,0.005482882261276245],[125,55,76,0.0076574720442295074],[125,55,77,0.011981509625911713],[125,55,78,0.01730683073401451],[125,55,79,0.022865809500217438],[125,56,64,0.007565382868051529],[125,56,65,0.00584031268954277],[125,56,66,0.005950823426246643],[125,56,67,0.007123082876205444],[125,56,68,0.008062966167926788],[125,56,69,0.007833406329154968],[125,56,70,0.006737150251865387],[125,56,71,0.005082122981548309],[125,56,72,0.0022972114384174347],[125,56,73,-5.908571183681488E-4],[125,56,74,-0.0022980086505413055],[125,56,75,-0.002329617738723755],[125,56,76,-1.5502795577049255E-4],[125,56,77,0.004169009625911713],[125,56,78,0.009494330734014511],[125,56,79,0.015053309500217438],[125,57,64,-2.4711713194847107E-4],[125,57,65,-0.0019721873104572296],[125,57,66,-0.001861676573753357],[125,57,67,-6.894171237945557E-4],[125,57,68,2.5046616792678833E-4],[125,57,69,2.0906329154968262E-5],[125,57,70,-0.001075349748134613],[125,57,71,-0.0027303770184516907],[125,57,72,-0.005515288561582565],[125,57,73,-0.008403357118368149],[125,57,74,-0.010110508650541306],[125,57,75,-0.010142117738723755],[125,57,76,-0.007967527955770493],[125,57,77,-0.0036434903740882874],[125,57,78,0.001681830734014511],[125,57,79,0.007240809500217438],[125,58,64,-0.008059617131948471],[125,58,65,-0.00978468731045723],[125,58,66,-0.009674176573753357],[125,58,67,-0.008501917123794556],[125,58,68,-0.007562033832073212],[125,58,69,-0.007791593670845032],[125,58,70,-0.008887849748134613],[125,58,71,-0.01054287701845169],[125,58,72,-0.013327788561582565],[125,58,73,-0.01621585711836815],[125,58,74,-0.017923008650541306],[125,58,75,-0.017954617738723755],[125,58,76,-0.015780027955770493],[125,58,77,-0.011455990374088287],[125,58,78,-0.006130669265985489],[125,58,79,-5.716904997825623E-4],[125,59,64,-0.01587211713194847],[125,59,65,-0.01759718731045723],[125,59,66,-0.017486676573753357],[125,59,67,-0.016314417123794556],[125,59,68,-0.015374533832073212],[125,59,69,-0.015604093670845032],[125,59,70,-0.016700349748134613],[125,59,71,-0.01835537701845169],[125,59,72,-0.021140288561582565],[125,59,73,-0.02402835711836815],[125,59,74,-0.025735508650541306],[125,59,75,-0.025767117738723755],[125,59,76,-0.023592527955770493],[125,59,77,-0.019268490374088287],[125,59,78,-0.013943169265985489],[125,59,79,-0.008384190499782562],[125,60,64,-0.02368461713194847],[125,60,65,-0.02540968731045723],[125,60,66,-0.025299176573753357],[125,60,67,-0.024126917123794556],[125,60,68,-0.02318703383207321],[125,60,69,-0.023416593670845032],[125,60,70,-0.024512849748134613],[125,60,71,-0.02616787701845169],[125,60,72,-0.028952788561582565],[125,60,73,-0.03184085711836815],[125,60,74,-0.033548008650541306],[125,60,75,-0.033579617738723755],[125,60,76,-0.03140502795577049],[125,60,77,-0.027080990374088287],[125,60,78,-0.02175566926598549],[125,60,79,-0.016196690499782562],[125,61,64,-0.03149711713194847],[125,61,65,-0.03322218731045723],[125,61,66,-0.03311167657375336],[125,61,67,-0.031939417123794556],[125,61,68,-0.03099953383207321],[125,61,69,-0.031229093670845032],[125,61,70,-0.03232534974813461],[125,61,71,-0.03398037701845169],[125,61,72,-0.036765288561582565],[125,61,73,-0.03965335711836815],[125,61,74,-0.041360508650541306],[125,61,75,-0.041392117738723755],[125,61,76,-0.03921752795577049],[125,61,77,-0.03489349037408829],[125,61,78,-0.02956816926598549],[125,61,79,-0.024009190499782562],[125,62,64,-0.03930961713194847],[125,62,65,-0.04103468731045723],[125,62,66,-0.04092417657375336],[125,62,67,-0.039751917123794556],[125,62,68,-0.03881203383207321],[125,62,69,-0.03904159367084503],[125,62,70,-0.04013784974813461],[125,62,71,-0.04179287701845169],[125,62,72,-0.044577788561582565],[125,62,73,-0.04746585711836815],[125,62,74,-0.049173008650541306],[125,62,75,-0.049204617738723755],[125,62,76,-0.04703002795577049],[125,62,77,-0.04270599037408829],[125,62,78,-0.03738066926598549],[125,62,79,-0.03182169049978256],[125,63,64,-0.04712211713194847],[125,63,65,-0.04884718731045723],[125,63,66,-0.04873667657375336],[125,63,67,-0.047564417123794556],[125,63,68,-0.04662453383207321],[125,63,69,-0.04685409367084503],[125,63,70,-0.04795034974813461],[125,63,71,-0.04960537701845169],[125,63,72,-0.052390288561582565],[125,63,73,-0.05527835711836815],[125,63,74,-0.056985508650541306],[125,63,75,-0.057017117738723755],[125,63,76,-0.05484252795577049],[125,63,77,-0.05051849037408829],[125,63,78,-0.04519316926598549],[125,63,79,-0.03963419049978256],[125,64,64,-0.05493461713194847],[125,64,65,-0.05665968731045723],[125,64,66,-0.05654917657375336],[125,64,67,-0.055376917123794556],[125,64,68,-0.05443703383207321],[125,64,69,-0.05466659367084503],[125,64,70,-0.05576284974813461],[125,64,71,-0.05741787701845169],[125,64,72,-0.060202788561582565],[125,64,73,-0.06309085711836815],[125,64,74,-0.0647980086505413],[125,64,75,-0.06482961773872375],[125,64,76,-0.06265502795577049],[125,64,77,-0.05833099037408829],[125,64,78,-0.05300566926598549],[125,64,79,-0.04744669049978256],[125,65,64,-0.06274711713194847],[125,65,65,-0.06447218731045723],[125,65,66,-0.06436167657375336],[125,65,67,-0.06318941712379456],[125,65,68,-0.06224953383207321],[125,65,69,-0.06247909367084503],[125,65,70,-0.06357534974813461],[125,65,71,-0.06523037701845169],[125,65,72,-0.06801528856158257],[125,65,73,-0.07090335711836815],[125,65,74,-0.0726105086505413],[125,65,75,-0.07264211773872375],[125,65,76,-0.07046752795577049],[125,65,77,-0.06614349037408829],[125,65,78,-0.06081816926598549],[125,65,79,-0.05525919049978256],[125,66,64,-0.07055961713194847],[125,66,65,-0.07228468731045723],[125,66,66,-0.07217417657375336],[125,66,67,-0.07100191712379456],[125,66,68,-0.07006203383207321],[125,66,69,-0.07029159367084503],[125,66,70,-0.07138784974813461],[125,66,71,-0.07304287701845169],[125,66,72,-0.07582778856158257],[125,66,73,-0.07871585711836815],[125,66,74,-0.0804230086505413],[125,66,75,-0.08045461773872375],[125,66,76,-0.07828002795577049],[125,66,77,-0.07395599037408829],[125,66,78,-0.06863066926598549],[125,66,79,-0.06307169049978256],[125,67,64,-0.07837211713194847],[125,67,65,-0.08009718731045723],[125,67,66,-0.07998667657375336],[125,67,67,-0.07881441712379456],[125,67,68,-0.07787453383207321],[125,67,69,-0.07810409367084503],[125,67,70,-0.07920034974813461],[125,67,71,-0.08085537701845169],[125,67,72,-0.08364028856158257],[125,67,73,-0.08652835711836815],[125,67,74,-0.0882355086505413],[125,67,75,-0.08826711773872375],[125,67,76,-0.08609252795577049],[125,67,77,-0.08176849037408829],[125,67,78,-0.07644316926598549],[125,67,79,-0.07088419049978256],[125,68,64,-0.08618461713194847],[125,68,65,-0.08790968731045723],[125,68,66,-0.08779917657375336],[125,68,67,-0.08662691712379456],[125,68,68,-0.08568703383207321],[125,68,69,-0.08591659367084503],[125,68,70,-0.08701284974813461],[125,68,71,-0.08866787701845169],[125,68,72,-0.09145278856158257],[125,68,73,-0.09434085711836815],[125,68,74,-0.0960480086505413],[125,68,75,-0.09607961773872375],[125,68,76,-0.09390502795577049],[125,68,77,-0.08958099037408829],[125,68,78,-0.08425566926598549],[125,68,79,-0.07869669049978256],[125,69,64,-0.09399711713194847],[125,69,65,-0.09572218731045723],[125,69,66,-0.09561167657375336],[125,69,67,-0.09443941712379456],[125,69,68,-0.09349953383207321],[125,69,69,-0.09372909367084503],[125,69,70,-0.09482534974813461],[125,69,71,-0.09648037701845169],[125,69,72,-0.09926528856158257],[125,69,73,-0.10215335711836815],[125,69,74,-0.1038605086505413],[125,69,75,-0.10389211773872375],[125,69,76,-0.10171752795577049],[125,69,77,-0.09739349037408829],[125,69,78,-0.09206816926598549],[125,69,79,-0.08650919049978256],[125,70,64,-0.10180961713194847],[125,70,65,-0.10353468731045723],[125,70,66,-0.10342417657375336],[125,70,67,-0.10225191712379456],[125,70,68,-0.10131203383207321],[125,70,69,-0.10154159367084503],[125,70,70,-0.10263784974813461],[125,70,71,-0.10429287701845169],[125,70,72,-0.10707778856158257],[125,70,73,-0.10996585711836815],[125,70,74,-0.1116730086505413],[125,70,75,-0.11170461773872375],[125,70,76,-0.10953002795577049],[125,70,77,-0.10520599037408829],[125,70,78,-0.09988066926598549],[125,70,79,-0.09432169049978256],[125,71,64,-0.10962211713194847],[125,71,65,-0.11134718731045723],[125,71,66,-0.11123667657375336],[125,71,67,-0.11006441712379456],[125,71,68,-0.10912453383207321],[125,71,69,-0.10935409367084503],[125,71,70,-0.11045034974813461],[125,71,71,-0.11210537701845169],[125,71,72,-0.11489028856158257],[125,71,73,-0.11777835711836815],[125,71,74,-0.1194855086505413],[125,71,75,-0.11951711773872375],[125,71,76,-0.11734252795577049],[125,71,77,-0.11301849037408829],[125,71,78,-0.10769316926598549],[125,71,79,-0.10213419049978256],[125,72,64,-0.11743461713194847],[125,72,65,-0.11915968731045723],[125,72,66,-0.11904917657375336],[125,72,67,-0.11787691712379456],[125,72,68,-0.11693703383207321],[125,72,69,-0.11716659367084503],[125,72,70,-0.11826284974813461],[125,72,71,-0.11991787701845169],[125,72,72,-0.12270278856158257],[125,72,73,-0.12559085711836815],[125,72,74,-0.1272980086505413],[125,72,75,-0.12732961773872375],[125,72,76,-0.1251550279557705],[125,72,77,-0.12083099037408829],[125,72,78,-0.11550566926598549],[125,72,79,-0.10994669049978256],[125,73,64,-0.12524711713194847],[125,73,65,-0.12697218731045723],[125,73,66,-0.12686167657375336],[125,73,67,-0.12568941712379456],[125,73,68,-0.12474953383207321],[125,73,69,-0.12497909367084503],[125,73,70,-0.1260753497481346],[125,73,71,-0.1277303770184517],[125,73,72,-0.13051528856158257],[125,73,73,-0.13340335711836815],[125,73,74,-0.1351105086505413],[125,73,75,-0.13514211773872375],[125,73,76,-0.1329675279557705],[125,73,77,-0.1286434903740883],[125,73,78,-0.12331816926598549],[125,73,79,-0.11775919049978256],[125,74,64,-0.13305961713194847],[125,74,65,-0.13478468731045723],[125,74,66,-0.13467417657375336],[125,74,67,-0.13350191712379456],[125,74,68,-0.1325620338320732],[125,74,69,-0.13279159367084503],[125,74,70,-0.1338878497481346],[125,74,71,-0.1355428770184517],[125,74,72,-0.13832778856158257],[125,74,73,-0.14121585711836815],[125,74,74,-0.1429230086505413],[125,74,75,-0.14295461773872375],[125,74,76,-0.1407800279557705],[125,74,77,-0.1364559903740883],[125,74,78,-0.1311306692659855],[125,74,79,-0.12557169049978256],[125,75,64,-0.14087211713194847],[125,75,65,-0.14259718731045723],[125,75,66,-0.14248667657375336],[125,75,67,-0.14131441712379456],[125,75,68,-0.1403745338320732],[125,75,69,-0.14060409367084503],[125,75,70,-0.1417003497481346],[125,75,71,-0.1433553770184517],[125,75,72,-0.14614028856158257],[125,75,73,-0.14902835711836815],[125,75,74,-0.1507355086505413],[125,75,75,-0.15076711773872375],[125,75,76,-0.1485925279557705],[125,75,77,-0.1442684903740883],[125,75,78,-0.1389431692659855],[125,75,79,-0.13338419049978256],[125,76,64,-0.14868461713194847],[125,76,65,-0.15040968731045723],[125,76,66,-0.15029917657375336],[125,76,67,-0.14912691712379456],[125,76,68,-0.1481870338320732],[125,76,69,-0.14841659367084503],[125,76,70,-0.1495128497481346],[125,76,71,-0.1511678770184517],[125,76,72,-0.15395278856158257],[125,76,73,-0.15684085711836815],[125,76,74,-0.1585480086505413],[125,76,75,-0.15857961773872375],[125,76,76,-0.1564050279557705],[125,76,77,-0.1520809903740883],[125,76,78,-0.1467556692659855],[125,76,79,-0.14119669049978256],[125,77,64,-0.15649711713194847],[125,77,65,-0.15822218731045723],[125,77,66,-0.15811167657375336],[125,77,67,-0.15693941712379456],[125,77,68,-0.1559995338320732],[125,77,69,-0.15622909367084503],[125,77,70,-0.1573253497481346],[125,77,71,-0.1589803770184517],[125,77,72,-0.16176528856158257],[125,77,73,-0.16465335711836815],[125,77,74,-0.1663605086505413],[125,77,75,-0.16639211773872375],[125,77,76,-0.1642175279557705],[125,77,77,-0.1598934903740883],[125,77,78,-0.1545681692659855],[125,77,79,-0.14900919049978256],[125,78,64,-0.16430961713194847],[125,78,65,-0.16603468731045723],[125,78,66,-0.16592417657375336],[125,78,67,-0.16475191712379456],[125,78,68,-0.1638120338320732],[125,78,69,-0.16404159367084503],[125,78,70,-0.1651378497481346],[125,78,71,-0.1667928770184517],[125,78,72,-0.16957778856158257],[125,78,73,-0.17246585711836815],[125,78,74,-0.1741730086505413],[125,78,75,-0.17420461773872375],[125,78,76,-0.1720300279557705],[125,78,77,-0.1677059903740883],[125,78,78,-0.1623806692659855],[125,78,79,-0.15682169049978256],[125,79,64,-0.17212211713194847],[125,79,65,-0.17384718731045723],[125,79,66,-0.17373667657375336],[125,79,67,-0.17256441712379456],[125,79,68,-0.1716245338320732],[125,79,69,-0.17185409367084503],[125,79,70,-0.1729503497481346],[125,79,71,-0.1746053770184517],[125,79,72,-0.17739028856158257],[125,79,73,-0.18027835711836815],[125,79,74,-0.1819855086505413],[125,79,75,-0.18201711773872375],[125,79,76,-0.1798425279557705],[125,79,77,-0.1755184903740883],[125,79,78,-0.1701931692659855],[125,79,79,-0.16463419049978256],[125,80,64,-0.17993461713194847],[125,80,65,-0.18165968731045723],[125,80,66,-0.18154917657375336],[125,80,67,-0.18037691712379456],[125,80,68,-0.1794370338320732],[125,80,69,-0.17966659367084503],[125,80,70,-0.1807628497481346],[125,80,71,-0.1824178770184517],[125,80,72,-0.18520278856158257],[125,80,73,-0.18809085711836815],[125,80,74,-0.1897980086505413],[125,80,75,-0.18982961773872375],[125,80,76,-0.1876550279557705],[125,80,77,-0.1833309903740883],[125,80,78,-0.1780056692659855],[125,80,79,-0.17244669049978256],[125,81,64,-0.18774711713194847],[125,81,65,-0.18947218731045723],[125,81,66,-0.18936167657375336],[125,81,67,-0.18818941712379456],[125,81,68,-0.1872495338320732],[125,81,69,-0.18747909367084503],[125,81,70,-0.1885753497481346],[125,81,71,-0.1902303770184517],[125,81,72,-0.19301528856158257],[125,81,73,-0.19590335711836815],[125,81,74,-0.1976105086505413],[125,81,75,-0.19764211773872375],[125,81,76,-0.1954675279557705],[125,81,77,-0.1911434903740883],[125,81,78,-0.1858181692659855],[125,81,79,-0.18025919049978256],[125,82,64,-0.19555961713194847],[125,82,65,-0.19728468731045723],[125,82,66,-0.19717417657375336],[125,82,67,-0.19600191712379456],[125,82,68,-0.1950620338320732],[125,82,69,-0.19529159367084503],[125,82,70,-0.1963878497481346],[125,82,71,-0.1980428770184517],[125,82,72,-0.20082778856158257],[125,82,73,-0.20371585711836815],[125,82,74,-0.2054230086505413],[125,82,75,-0.20545461773872375],[125,82,76,-0.2032800279557705],[125,82,77,-0.1989559903740883],[125,82,78,-0.1936306692659855],[125,82,79,-0.18807169049978256],[125,83,64,-0.20337211713194847],[125,83,65,-0.20509718731045723],[125,83,66,-0.20498667657375336],[125,83,67,-0.20381441712379456],[125,83,68,-0.2028745338320732],[125,83,69,-0.20310409367084503],[125,83,70,-0.2042003497481346],[125,83,71,-0.2058553770184517],[125,83,72,-0.20864028856158257],[125,83,73,-0.21152835711836815],[125,83,74,-0.2132355086505413],[125,83,75,-0.21326711773872375],[125,83,76,-0.2110925279557705],[125,83,77,-0.2067684903740883],[125,83,78,-0.2014431692659855],[125,83,79,-0.19588419049978256],[125,84,64,-0.21118461713194847],[125,84,65,-0.21290968731045723],[125,84,66,-0.21279917657375336],[125,84,67,-0.21162691712379456],[125,84,68,-0.2106870338320732],[125,84,69,-0.21091659367084503],[125,84,70,-0.2120128497481346],[125,84,71,-0.2136678770184517],[125,84,72,-0.21645278856158257],[125,84,73,-0.21934085711836815],[125,84,74,-0.2210480086505413],[125,84,75,-0.22107961773872375],[125,84,76,-0.2189050279557705],[125,84,77,-0.2145809903740883],[125,84,78,-0.2092556692659855],[125,84,79,-0.20369669049978256],[125,85,64,-0.21899711713194847],[125,85,65,-0.22072218731045723],[125,85,66,-0.22061167657375336],[125,85,67,-0.21943941712379456],[125,85,68,-0.2184995338320732],[125,85,69,-0.21872909367084503],[125,85,70,-0.2198253497481346],[125,85,71,-0.2214803770184517],[125,85,72,-0.22426528856158257],[125,85,73,-0.22715335711836815],[125,85,74,-0.2288605086505413],[125,85,75,-0.22889211773872375],[125,85,76,-0.2267175279557705],[125,85,77,-0.2223934903740883],[125,85,78,-0.2170681692659855],[125,85,79,-0.21150919049978256],[125,86,64,-0.22680961713194847],[125,86,65,-0.22853468731045723],[125,86,66,-0.22842417657375336],[125,86,67,-0.22725191712379456],[125,86,68,-0.2263120338320732],[125,86,69,-0.22654159367084503],[125,86,70,-0.2276378497481346],[125,86,71,-0.2292928770184517],[125,86,72,-0.23207778856158257],[125,86,73,-0.23496585711836815],[125,86,74,-0.2366730086505413],[125,86,75,-0.23670461773872375],[125,86,76,-0.2345300279557705],[125,86,77,-0.2302059903740883],[125,86,78,-0.2248806692659855],[125,86,79,-0.21932169049978256],[125,87,64,-0.23462211713194847],[125,87,65,-0.23634718731045723],[125,87,66,-0.23623667657375336],[125,87,67,-0.23506441712379456],[125,87,68,-0.2341245338320732],[125,87,69,-0.23435409367084503],[125,87,70,-0.2354503497481346],[125,87,71,-0.2371053770184517],[125,87,72,-0.23989028856158257],[125,87,73,-0.24277835711836815],[125,87,74,-0.2444855086505413],[125,87,75,-0.24451711773872375],[125,87,76,-0.2423425279557705],[125,87,77,-0.2380184903740883],[125,87,78,-0.2326931692659855],[125,87,79,-0.22713419049978256],[125,88,64,-0.24243461713194847],[125,88,65,-0.24415968731045723],[125,88,66,-0.24404917657375336],[125,88,67,-0.24287691712379456],[125,88,68,-0.2419370338320732],[125,88,69,-0.24216659367084503],[125,88,70,-0.2432628497481346],[125,88,71,-0.2449178770184517],[125,88,72,-0.24770278856158257],[125,88,73,-0.25059085711836815],[125,88,74,-0.2522980086505413],[125,88,75,-0.25232961773872375],[125,88,76,-0.2501550279557705],[125,88,77,-0.2458309903740883],[125,88,78,-0.2405056692659855],[125,88,79,-0.23494669049978256],[125,89,64,-0.25024711713194847],[125,89,65,-0.25197218731045723],[125,89,66,-0.25186167657375336],[125,89,67,-0.25068941712379456],[125,89,68,-0.2497495338320732],[125,89,69,-0.24997909367084503],[125,89,70,-0.2510753497481346],[125,89,71,-0.2527303770184517],[125,89,72,-0.25551528856158257],[125,89,73,-0.25840335711836815],[125,89,74,-0.2601105086505413],[125,89,75,-0.26014211773872375],[125,89,76,-0.2579675279557705],[125,89,77,-0.2536434903740883],[125,89,78,-0.2483181692659855],[125,89,79,-0.24275919049978256],[125,90,64,-0.25805961713194847],[125,90,65,-0.25978468731045723],[125,90,66,-0.25967417657375336],[125,90,67,-0.25850191712379456],[125,90,68,-0.2575620338320732],[125,90,69,-0.25779159367084503],[125,90,70,-0.2588878497481346],[125,90,71,-0.2605428770184517],[125,90,72,-0.26332778856158257],[125,90,73,-0.26621585711836815],[125,90,74,-0.2679230086505413],[125,90,75,-0.26795461773872375],[125,90,76,-0.2657800279557705],[125,90,77,-0.2614559903740883],[125,90,78,-0.2561306692659855],[125,90,79,-0.25057169049978256],[125,91,64,-0.26587211713194847],[125,91,65,-0.26759718731045723],[125,91,66,-0.26748667657375336],[125,91,67,-0.26631441712379456],[125,91,68,-0.2653745338320732],[125,91,69,-0.26560409367084503],[125,91,70,-0.2667003497481346],[125,91,71,-0.2683553770184517],[125,91,72,-0.27114028856158257],[125,91,73,-0.27402835711836815],[125,91,74,-0.2757355086505413],[125,91,75,-0.27576711773872375],[125,91,76,-0.2735925279557705],[125,91,77,-0.2692684903740883],[125,91,78,-0.2639431692659855],[125,91,79,-0.25838419049978256],[125,92,64,-0.27368461713194847],[125,92,65,-0.27540968731045723],[125,92,66,-0.27529917657375336],[125,92,67,-0.27412691712379456],[125,92,68,-0.2731870338320732],[125,92,69,-0.27341659367084503],[125,92,70,-0.2745128497481346],[125,92,71,-0.2761678770184517],[125,92,72,-0.27895278856158257],[125,92,73,-0.28184085711836815],[125,92,74,-0.2835480086505413],[125,92,75,-0.28357961773872375],[125,92,76,-0.2814050279557705],[125,92,77,-0.2770809903740883],[125,92,78,-0.2717556692659855],[125,92,79,-0.26619669049978256],[125,93,64,-0.28149711713194847],[125,93,65,-0.28322218731045723],[125,93,66,-0.28311167657375336],[125,93,67,-0.28193941712379456],[125,93,68,-0.2809995338320732],[125,93,69,-0.28122909367084503],[125,93,70,-0.2823253497481346],[125,93,71,-0.2839803770184517],[125,93,72,-0.28676528856158257],[125,93,73,-0.28965335711836815],[125,93,74,-0.2913605086505413],[125,93,75,-0.29139211773872375],[125,93,76,-0.2892175279557705],[125,93,77,-0.2848934903740883],[125,93,78,-0.2795681692659855],[125,93,79,-0.27400919049978256],[125,94,64,-0.28930961713194847],[125,94,65,-0.29103468731045723],[125,94,66,-0.29092417657375336],[125,94,67,-0.28975191712379456],[125,94,68,-0.2888120338320732],[125,94,69,-0.28904159367084503],[125,94,70,-0.2901378497481346],[125,94,71,-0.2917928770184517],[125,94,72,-0.29457778856158257],[125,94,73,-0.29746585711836815],[125,94,74,-0.2991730086505413],[125,94,75,-0.29920461773872375],[125,94,76,-0.2970300279557705],[125,94,77,-0.2927059903740883],[125,94,78,-0.2873806692659855],[125,94,79,-0.28182169049978256],[125,95,64,-0.29712211713194847],[125,95,65,-0.29884718731045723],[125,95,66,-0.29873667657375336],[125,95,67,-0.29756441712379456],[125,95,68,-0.2966245338320732],[125,95,69,-0.29685409367084503],[125,95,70,-0.2979503497481346],[125,95,71,-0.2996053770184517],[125,95,72,-0.30239028856158257],[125,95,73,-0.30527835711836815],[125,95,74,-0.3069855086505413],[125,95,75,-0.30701711773872375],[125,95,76,-0.3048425279557705],[125,95,77,-0.3005184903740883],[125,95,78,-0.2951931692659855],[125,95,79,-0.28963419049978256],[125,96,64,-0.30493461713194847],[125,96,65,-0.30665968731045723],[125,96,66,-0.30654917657375336],[125,96,67,-0.30537691712379456],[125,96,68,-0.3044370338320732],[125,96,69,-0.30466659367084503],[125,96,70,-0.3057628497481346],[125,96,71,-0.3074178770184517],[125,96,72,-0.31020278856158257],[125,96,73,-0.31309085711836815],[125,96,74,-0.3147980086505413],[125,96,75,-0.31482961773872375],[125,96,76,-0.3126550279557705],[125,96,77,-0.3083309903740883],[125,96,78,-0.3030056692659855],[125,96,79,-0.29744669049978256],[125,97,64,-0.31274711713194847],[125,97,65,-0.31447218731045723],[125,97,66,-0.31436167657375336],[125,97,67,-0.31318941712379456],[125,97,68,-0.3122495338320732],[125,97,69,-0.31247909367084503],[125,97,70,-0.3135753497481346],[125,97,71,-0.3152303770184517],[125,97,72,-0.31801528856158257],[125,97,73,-0.32090335711836815],[125,97,74,-0.3226105086505413],[125,97,75,-0.32264211773872375],[125,97,76,-0.3204675279557705],[125,97,77,-0.3161434903740883],[125,97,78,-0.3108181692659855],[125,97,79,-0.30525919049978256],[125,98,64,-0.32055961713194847],[125,98,65,-0.32228468731045723],[125,98,66,-0.32217417657375336],[125,98,67,-0.32100191712379456],[125,98,68,-0.3200620338320732],[125,98,69,-0.32029159367084503],[125,98,70,-0.3213878497481346],[125,98,71,-0.3230428770184517],[125,98,72,-0.32582778856158257],[125,98,73,-0.32871585711836815],[125,98,74,-0.3304230086505413],[125,98,75,-0.33045461773872375],[125,98,76,-0.3282800279557705],[125,98,77,-0.3239559903740883],[125,98,78,-0.3186306692659855],[125,98,79,-0.31307169049978256],[125,99,64,-0.32837211713194847],[125,99,65,-0.33009718731045723],[125,99,66,-0.32998667657375336],[125,99,67,-0.32881441712379456],[125,99,68,-0.3278745338320732],[125,99,69,-0.32810409367084503],[125,99,70,-0.3292003497481346],[125,99,71,-0.3308553770184517],[125,99,72,-0.33364028856158257],[125,99,73,-0.33652835711836815],[125,99,74,-0.3382355086505413],[125,99,75,-0.33826711773872375],[125,99,76,-0.3360925279557705],[125,99,77,-0.3317684903740883],[125,99,78,-0.3264431692659855],[125,99,79,-0.32088419049978256],[125,100,64,-0.33618461713194847],[125,100,65,-0.33790968731045723],[125,100,66,-0.33779917657375336],[125,100,67,-0.33662691712379456],[125,100,68,-0.3356870338320732],[125,100,69,-0.33591659367084503],[125,100,70,-0.3370128497481346],[125,100,71,-0.3386678770184517],[125,100,72,-0.34145278856158257],[125,100,73,-0.34434085711836815],[125,100,74,-0.3460480086505413],[125,100,75,-0.34607961773872375],[125,100,76,-0.3439050279557705],[125,100,77,-0.3395809903740883],[125,100,78,-0.3342556692659855],[125,100,79,-0.32869669049978256],[125,101,64,-0.34399711713194847],[125,101,65,-0.34572218731045723],[125,101,66,-0.34561167657375336],[125,101,67,-0.34443941712379456],[125,101,68,-0.3434995338320732],[125,101,69,-0.34372909367084503],[125,101,70,-0.3448253497481346],[125,101,71,-0.3464803770184517],[125,101,72,-0.34926528856158257],[125,101,73,-0.35215335711836815],[125,101,74,-0.3538605086505413],[125,101,75,-0.35389211773872375],[125,101,76,-0.3517175279557705],[125,101,77,-0.3473934903740883],[125,101,78,-0.3420681692659855],[125,101,79,-0.33650919049978256],[125,102,64,-0.35180961713194847],[125,102,65,-0.35353468731045723],[125,102,66,-0.35342417657375336],[125,102,67,-0.35225191712379456],[125,102,68,-0.3513120338320732],[125,102,69,-0.35154159367084503],[125,102,70,-0.3526378497481346],[125,102,71,-0.3542928770184517],[125,102,72,-0.35707778856158257],[125,102,73,-0.35996585711836815],[125,102,74,-0.3616730086505413],[125,102,75,-0.36170461773872375],[125,102,76,-0.3595300279557705],[125,102,77,-0.3552059903740883],[125,102,78,-0.3498806692659855],[125,102,79,-0.34432169049978256],[125,103,64,-0.35962211713194847],[125,103,65,-0.36134718731045723],[125,103,66,-0.36123667657375336],[125,103,67,-0.36006441712379456],[125,103,68,-0.3591245338320732],[125,103,69,-0.35935409367084503],[125,103,70,-0.3604503497481346],[125,103,71,-0.3621053770184517],[125,103,72,-0.36489028856158257],[125,103,73,-0.36777835711836815],[125,103,74,-0.3694855086505413],[125,103,75,-0.36951711773872375],[125,103,76,-0.3673425279557705],[125,103,77,-0.3630184903740883],[125,103,78,-0.3576931692659855],[125,103,79,-0.35213419049978256],[125,104,64,-0.36743461713194847],[125,104,65,-0.36915968731045723],[125,104,66,-0.36904917657375336],[125,104,67,-0.36787691712379456],[125,104,68,-0.3669370338320732],[125,104,69,-0.36716659367084503],[125,104,70,-0.3682628497481346],[125,104,71,-0.3699178770184517],[125,104,72,-0.37270278856158257],[125,104,73,-0.37559085711836815],[125,104,74,-0.3772980086505413],[125,104,75,-0.37732961773872375],[125,104,76,-0.3751550279557705],[125,104,77,-0.3708309903740883],[125,104,78,-0.3655056692659855],[125,104,79,-0.35994669049978256],[125,105,64,-0.37524711713194847],[125,105,65,-0.37697218731045723],[125,105,66,-0.37686167657375336],[125,105,67,-0.37568941712379456],[125,105,68,-0.3747495338320732],[125,105,69,-0.37497909367084503],[125,105,70,-0.3760753497481346],[125,105,71,-0.3777303770184517],[125,105,72,-0.38051528856158257],[125,105,73,-0.38340335711836815],[125,105,74,-0.3851105086505413],[125,105,75,-0.38514211773872375],[125,105,76,-0.3829675279557705],[125,105,77,-0.3786434903740883],[125,105,78,-0.3733181692659855],[125,105,79,-0.36775919049978256],[125,106,64,-0.38305961713194847],[125,106,65,-0.38478468731045723],[125,106,66,-0.38467417657375336],[125,106,67,-0.38350191712379456],[125,106,68,-0.3825620338320732],[125,106,69,-0.38279159367084503],[125,106,70,-0.3838878497481346],[125,106,71,-0.3855428770184517],[125,106,72,-0.38832778856158257],[125,106,73,-0.39121585711836815],[125,106,74,-0.3929230086505413],[125,106,75,-0.39295461773872375],[125,106,76,-0.3907800279557705],[125,106,77,-0.3864559903740883],[125,106,78,-0.3811306692659855],[125,106,79,-0.37557169049978256],[125,107,64,-0.39087211713194847],[125,107,65,-0.39259718731045723],[125,107,66,-0.39248667657375336],[125,107,67,-0.39131441712379456],[125,107,68,-0.3903745338320732],[125,107,69,-0.39060409367084503],[125,107,70,-0.3917003497481346],[125,107,71,-0.3933553770184517],[125,107,72,-0.39614028856158257],[125,107,73,-0.39902835711836815],[125,107,74,-0.4007355086505413],[125,107,75,-0.40076711773872375],[125,107,76,-0.3985925279557705],[125,107,77,-0.3942684903740883],[125,107,78,-0.3889431692659855],[125,107,79,-0.38338419049978256],[125,108,64,-0.39868461713194847],[125,108,65,-0.40040968731045723],[125,108,66,-0.40029917657375336],[125,108,67,-0.39912691712379456],[125,108,68,-0.3981870338320732],[125,108,69,-0.39841659367084503],[125,108,70,-0.3995128497481346],[125,108,71,-0.4011678770184517],[125,108,72,-0.40395278856158257],[125,108,73,-0.40684085711836815],[125,108,74,-0.4085480086505413],[125,108,75,-0.40857961773872375],[125,108,76,-0.4064050279557705],[125,108,77,-0.4020809903740883],[125,108,78,-0.3967556692659855],[125,108,79,-0.39119669049978256],[125,109,64,-0.40649711713194847],[125,109,65,-0.40822218731045723],[125,109,66,-0.40811167657375336],[125,109,67,-0.40693941712379456],[125,109,68,-0.4059995338320732],[125,109,69,-0.40622909367084503],[125,109,70,-0.4073253497481346],[125,109,71,-0.4089803770184517],[125,109,72,-0.41176528856158257],[125,109,73,-0.41465335711836815],[125,109,74,-0.4163605086505413],[125,109,75,-0.41639211773872375],[125,109,76,-0.4142175279557705],[125,109,77,-0.4098934903740883],[125,109,78,-0.4045681692659855],[125,109,79,-0.39900919049978256],[125,110,64,-0.41430961713194847],[125,110,65,-0.41603468731045723],[125,110,66,-0.41592417657375336],[125,110,67,-0.41475191712379456],[125,110,68,-0.4138120338320732],[125,110,69,-0.41404159367084503],[125,110,70,-0.4151378497481346],[125,110,71,-0.4167928770184517],[125,110,72,-0.41957778856158257],[125,110,73,-0.42246585711836815],[125,110,74,-0.4241730086505413],[125,110,75,-0.42420461773872375],[125,110,76,-0.4220300279557705],[125,110,77,-0.4177059903740883],[125,110,78,-0.4123806692659855],[125,110,79,-0.40682169049978256],[125,111,64,-0.42212211713194847],[125,111,65,-0.42384718731045723],[125,111,66,-0.42373667657375336],[125,111,67,-0.42256441712379456],[125,111,68,-0.4216245338320732],[125,111,69,-0.42185409367084503],[125,111,70,-0.4229503497481346],[125,111,71,-0.4246053770184517],[125,111,72,-0.42739028856158257],[125,111,73,-0.43027835711836815],[125,111,74,-0.4319855086505413],[125,111,75,-0.43201711773872375],[125,111,76,-0.4298425279557705],[125,111,77,-0.4255184903740883],[125,111,78,-0.4201931692659855],[125,111,79,-0.41463419049978256],[125,112,64,-0.42993461713194847],[125,112,65,-0.43165968731045723],[125,112,66,-0.43154917657375336],[125,112,67,-0.43037691712379456],[125,112,68,-0.4294370338320732],[125,112,69,-0.42966659367084503],[125,112,70,-0.4307628497481346],[125,112,71,-0.4324178770184517],[125,112,72,-0.43520278856158257],[125,112,73,-0.43809085711836815],[125,112,74,-0.4397980086505413],[125,112,75,-0.43982961773872375],[125,112,76,-0.4376550279557705],[125,112,77,-0.4333309903740883],[125,112,78,-0.4280056692659855],[125,112,79,-0.42244669049978256],[125,113,64,-0.43774711713194847],[125,113,65,-0.43947218731045723],[125,113,66,-0.43936167657375336],[125,113,67,-0.43818941712379456],[125,113,68,-0.4372495338320732],[125,113,69,-0.43747909367084503],[125,113,70,-0.4385753497481346],[125,113,71,-0.4402303770184517],[125,113,72,-0.44301528856158257],[125,113,73,-0.44590335711836815],[125,113,74,-0.4476105086505413],[125,113,75,-0.44764211773872375],[125,113,76,-0.4454675279557705],[125,113,77,-0.4411434903740883],[125,113,78,-0.4358181692659855],[125,113,79,-0.43025919049978256],[125,114,64,-0.44555961713194847],[125,114,65,-0.44728468731045723],[125,114,66,-0.44717417657375336],[125,114,67,-0.44600191712379456],[125,114,68,-0.4450620338320732],[125,114,69,-0.44529159367084503],[125,114,70,-0.4463878497481346],[125,114,71,-0.4480428770184517],[125,114,72,-0.45082778856158257],[125,114,73,-0.45371585711836815],[125,114,74,-0.4554230086505413],[125,114,75,-0.45545461773872375],[125,114,76,-0.4532800279557705],[125,114,77,-0.4489559903740883],[125,114,78,-0.4436306692659855],[125,114,79,-0.43807169049978256],[125,115,64,-0.45337211713194847],[125,115,65,-0.45509718731045723],[125,115,66,-0.45498667657375336],[125,115,67,-0.45381441712379456],[125,115,68,-0.4528745338320732],[125,115,69,-0.45310409367084503],[125,115,70,-0.4542003497481346],[125,115,71,-0.4558553770184517],[125,115,72,-0.45864028856158257],[125,115,73,-0.46152835711836815],[125,115,74,-0.4632355086505413],[125,115,75,-0.46326711773872375],[125,115,76,-0.4610925279557705],[125,115,77,-0.4567684903740883],[125,115,78,-0.4514431692659855],[125,115,79,-0.44588419049978256],[125,116,64,-0.46118461713194847],[125,116,65,-0.46290968731045723],[125,116,66,-0.46279917657375336],[125,116,67,-0.46162691712379456],[125,116,68,-0.4606870338320732],[125,116,69,-0.46091659367084503],[125,116,70,-0.4620128497481346],[125,116,71,-0.4636678770184517],[125,116,72,-0.46645278856158257],[125,116,73,-0.46934085711836815],[125,116,74,-0.4710480086505413],[125,116,75,-0.47107961773872375],[125,116,76,-0.4689050279557705],[125,116,77,-0.4645809903740883],[125,116,78,-0.4592556692659855],[125,116,79,-0.45369669049978256],[125,117,64,-0.46899711713194847],[125,117,65,-0.47072218731045723],[125,117,66,-0.47061167657375336],[125,117,67,-0.46943941712379456],[125,117,68,-0.4684995338320732],[125,117,69,-0.46872909367084503],[125,117,70,-0.4698253497481346],[125,117,71,-0.4714803770184517],[125,117,72,-0.47426528856158257],[125,117,73,-0.47715335711836815],[125,117,74,-0.4788605086505413],[125,117,75,-0.47889211773872375],[125,117,76,-0.4767175279557705],[125,117,77,-0.4723934903740883],[125,117,78,-0.4670681692659855],[125,117,79,-0.46150919049978256],[125,118,64,-0.47680961713194847],[125,118,65,-0.47853468731045723],[125,118,66,-0.47842417657375336],[125,118,67,-0.47725191712379456],[125,118,68,-0.4763120338320732],[125,118,69,-0.47654159367084503],[125,118,70,-0.4776378497481346],[125,118,71,-0.4792928770184517],[125,118,72,-0.48207778856158257],[125,118,73,-0.48496585711836815],[125,118,74,-0.4866730086505413],[125,118,75,-0.48670461773872375],[125,118,76,-0.4845300279557705],[125,118,77,-0.4802059903740883],[125,118,78,-0.4748806692659855],[125,118,79,-0.46932169049978256],[125,119,64,-0.48462211713194847],[125,119,65,-0.48634718731045723],[125,119,66,-0.48623667657375336],[125,119,67,-0.48506441712379456],[125,119,68,-0.4841245338320732],[125,119,69,-0.48435409367084503],[125,119,70,-0.4854503497481346],[125,119,71,-0.4871053770184517],[125,119,72,-0.48989028856158257],[125,119,73,-0.49277835711836815],[125,119,74,-0.4944855086505413],[125,119,75,-0.49451711773872375],[125,119,76,-0.4923425279557705],[125,119,77,-0.4880184903740883],[125,119,78,-0.4826931692659855],[125,119,79,-0.47713419049978256],[125,120,64,-0.49243461713194847],[125,120,65,-0.49415968731045723],[125,120,66,-0.49404917657375336],[125,120,67,-0.49287691712379456],[125,120,68,-0.4919370338320732],[125,120,69,-0.49216659367084503],[125,120,70,-0.4932628497481346],[125,120,71,-0.4949178770184517],[125,120,72,-0.49770278856158257],[125,120,73,-0.5005908571183681],[125,120,74,-0.5022980086505413],[125,120,75,-0.5023296177387238],[125,120,76,-0.5001550279557705],[125,120,77,-0.4958309903740883],[125,120,78,-0.4905056692659855],[125,120,79,-0.48494669049978256],[125,121,64,-0.5002471171319485],[125,121,65,-0.5019721873104572],[125,121,66,-0.5018616765737534],[125,121,67,-0.5006894171237946],[125,121,68,-0.4997495338320732],[125,121,69,-0.49997909367084503],[125,121,70,-0.5010753497481346],[125,121,71,-0.5027303770184517],[125,121,72,-0.5055152885615826],[125,121,73,-0.5084033571183681],[125,121,74,-0.5101105086505413],[125,121,75,-0.5101421177387238],[125,121,76,-0.5079675279557705],[125,121,77,-0.5036434903740883],[125,121,78,-0.4983181692659855],[125,121,79,-0.49275919049978256],[125,122,64,-0.5080596171319485],[125,122,65,-0.5097846873104572],[125,122,66,-0.5096741765737534],[125,122,67,-0.5085019171237946],[125,122,68,-0.5075620338320732],[125,122,69,-0.507791593670845],[125,122,70,-0.5088878497481346],[125,122,71,-0.5105428770184517],[125,122,72,-0.5133277885615826],[125,122,73,-0.5162158571183681],[125,122,74,-0.5179230086505413],[125,122,75,-0.5179546177387238],[125,122,76,-0.5157800279557705],[125,122,77,-0.5114559903740883],[125,122,78,-0.5061306692659855],[125,122,79,-0.5005716904997826],[125,123,64,-0.5158721171319485],[125,123,65,-0.5175971873104572],[125,123,66,-0.5174866765737534],[125,123,67,-0.5163144171237946],[125,123,68,-0.5153745338320732],[125,123,69,-0.515604093670845],[125,123,70,-0.5167003497481346],[125,123,71,-0.5183553770184517],[125,123,72,-0.5211402885615826],[125,123,73,-0.5240283571183681],[125,123,74,-0.5257355086505413],[125,123,75,-0.5257671177387238],[125,123,76,-0.5235925279557705],[125,123,77,-0.5192684903740883],[125,123,78,-0.5139431692659855],[125,123,79,-0.5083841904997826],[125,124,64,-0.5236846171319485],[125,124,65,-0.5254096873104572],[125,124,66,-0.5252991765737534],[125,124,67,-0.5241269171237946],[125,124,68,-0.5231870338320732],[125,124,69,-0.523416593670845],[125,124,70,-0.5245128497481346],[125,124,71,-0.5261678770184517],[125,124,72,-0.5289527885615826],[125,124,73,-0.5318408571183681],[125,124,74,-0.5335480086505413],[125,124,75,-0.5335796177387238],[125,124,76,-0.5314050279557705],[125,124,77,-0.5270809903740883],[125,124,78,-0.5217556692659855],[125,124,79,-0.5161966904997826],[125,125,64,-0.5314971171319485],[125,125,65,-0.5332221873104572],[125,125,66,-0.5331116765737534],[125,125,67,-0.5319394171237946],[125,125,68,-0.5309995338320732],[125,125,69,-0.531229093670845],[125,125,70,-0.5323253497481346],[125,125,71,-0.5339803770184517],[125,125,72,-0.5367652885615826],[125,125,73,-0.5396533571183681],[125,125,74,-0.5413605086505413],[125,125,75,-0.5413921177387238],[125,125,76,-0.5392175279557705],[125,125,77,-0.5348934903740883],[125,125,78,-0.5295681692659855],[125,125,79,-0.5240091904997826],[125,126,64,-0.5393096171319485],[125,126,65,-0.5410346873104572],[125,126,66,-0.5409241765737534],[125,126,67,-0.5397519171237946],[125,126,68,-0.5388120338320732],[125,126,69,-0.539041593670845],[125,126,70,-0.5401378497481346],[125,126,71,-0.5417928770184517],[125,126,72,-0.5445777885615826],[125,126,73,-0.5474658571183681],[125,126,74,-0.5491730086505413],[125,126,75,-0.5492046177387238],[125,126,76,-0.5470300279557705],[125,126,77,-0.5427059903740883],[125,126,78,-0.5373806692659855],[125,126,79,-0.5318216904997826],[125,127,64,-0.5471221171319485],[125,127,65,-0.5488471873104572],[125,127,66,-0.5487366765737534],[125,127,67,-0.5475644171237946],[125,127,68,-0.5466245338320732],[125,127,69,-0.546854093670845],[125,127,70,-0.5479503497481346],[125,127,71,-0.5496053770184517],[125,127,72,-0.5523902885615826],[125,127,73,-0.5552783571183681],[125,127,74,-0.5569855086505413],[125,127,75,-0.5570171177387238],[125,127,76,-0.5548425279557705],[125,127,77,-0.5505184903740883],[125,127,78,-0.5451931692659855],[125,127,79,-0.5396341904997826],[125,128,64,-0.5549346171319485],[125,128,65,-0.5566596873104572],[125,128,66,-0.5565491765737534],[125,128,67,-0.5553769171237946],[125,128,68,-0.5544370338320732],[125,128,69,-0.554666593670845],[125,128,70,-0.5557628497481346],[125,128,71,-0.5574178770184517],[125,128,72,-0.5602027885615826],[125,128,73,-0.5630908571183681],[125,128,74,-0.5647980086505413],[125,128,75,-0.5648296177387238],[125,128,76,-0.5626550279557705],[125,128,77,-0.5583309903740883],[125,128,78,-0.5530056692659855],[125,128,79,-0.5474466904997826],[125,129,64,-0.5627471171319485],[125,129,65,-0.5644721873104572],[125,129,66,-0.5643616765737534],[125,129,67,-0.5631894171237946],[125,129,68,-0.5622495338320732],[125,129,69,-0.562479093670845],[125,129,70,-0.5635753497481346],[125,129,71,-0.5652303770184517],[125,129,72,-0.5680152885615826],[125,129,73,-0.5709033571183681],[125,129,74,-0.5726105086505413],[125,129,75,-0.5726421177387238],[125,129,76,-0.5704675279557705],[125,129,77,-0.5661434903740883],[125,129,78,-0.5608181692659855],[125,129,79,-0.5552591904997826],[125,130,64,-0.5705596171319485],[125,130,65,-0.5722846873104572],[125,130,66,-0.5721741765737534],[125,130,67,-0.5710019171237946],[125,130,68,-0.5700620338320732],[125,130,69,-0.570291593670845],[125,130,70,-0.5713878497481346],[125,130,71,-0.5730428770184517],[125,130,72,-0.5758277885615826],[125,130,73,-0.5787158571183681],[125,130,74,-0.5804230086505413],[125,130,75,-0.5804546177387238],[125,130,76,-0.5782800279557705],[125,130,77,-0.5739559903740883],[125,130,78,-0.5686306692659855],[125,130,79,-0.5630716904997826],[125,131,64,-0.5783721171319485],[125,131,65,-0.5800971873104572],[125,131,66,-0.5799866765737534],[125,131,67,-0.5788144171237946],[125,131,68,-0.5778745338320732],[125,131,69,-0.578104093670845],[125,131,70,-0.5792003497481346],[125,131,71,-0.5808553770184517],[125,131,72,-0.5836402885615826],[125,131,73,-0.5865283571183681],[125,131,74,-0.5882355086505413],[125,131,75,-0.5882671177387238],[125,131,76,-0.5860925279557705],[125,131,77,-0.5817684903740883],[125,131,78,-0.5764431692659855],[125,131,79,-0.5708841904997826],[125,132,64,-0.5861846171319485],[125,132,65,-0.5879096873104572],[125,132,66,-0.5877991765737534],[125,132,67,-0.5866269171237946],[125,132,68,-0.5856870338320732],[125,132,69,-0.585916593670845],[125,132,70,-0.5870128497481346],[125,132,71,-0.5886678770184517],[125,132,72,-0.5914527885615826],[125,132,73,-0.5943408571183681],[125,132,74,-0.5960480086505413],[125,132,75,-0.5960796177387238],[125,132,76,-0.5939050279557705],[125,132,77,-0.5895809903740883],[125,132,78,-0.5842556692659855],[125,132,79,-0.5786966904997826],[125,133,64,-0.5939971171319485],[125,133,65,-0.5957221873104572],[125,133,66,-0.5956116765737534],[125,133,67,-0.5944394171237946],[125,133,68,-0.5934995338320732],[125,133,69,-0.593729093670845],[125,133,70,-0.5948253497481346],[125,133,71,-0.5964803770184517],[125,133,72,-0.5992652885615826],[125,133,73,-0.6021533571183681],[125,133,74,-0.6038605086505413],[125,133,75,-0.6038921177387238],[125,133,76,-0.6017175279557705],[125,133,77,-0.5973934903740883],[125,133,78,-0.5920681692659855],[125,133,79,-0.5865091904997826],[125,134,64,-0.6018096171319485],[125,134,65,-0.6035346873104572],[125,134,66,-0.6034241765737534],[125,134,67,-0.6022519171237946],[125,134,68,-0.6013120338320732],[125,134,69,-0.601541593670845],[125,134,70,-0.6026378497481346],[125,134,71,-0.6042928770184517],[125,134,72,-0.6070777885615826],[125,134,73,-0.6099658571183681],[125,134,74,-0.6116730086505413],[125,134,75,-0.6117046177387238],[125,134,76,-0.6095300279557705],[125,134,77,-0.6052059903740883],[125,134,78,-0.5998806692659855],[125,134,79,-0.5943216904997826],[125,135,64,-0.6096221171319485],[125,135,65,-0.6113471873104572],[125,135,66,-0.6112366765737534],[125,135,67,-0.6100644171237946],[125,135,68,-0.6091245338320732],[125,135,69,-0.609354093670845],[125,135,70,-0.6104503497481346],[125,135,71,-0.6121053770184517],[125,135,72,-0.6148902885615826],[125,135,73,-0.6177783571183681],[125,135,74,-0.6194855086505413],[125,135,75,-0.6195171177387238],[125,135,76,-0.6173425279557705],[125,135,77,-0.6130184903740883],[125,135,78,-0.6076931692659855],[125,135,79,-0.6021341904997826],[125,136,64,-0.6174346171319485],[125,136,65,-0.6191596873104572],[125,136,66,-0.6190491765737534],[125,136,67,-0.6178769171237946],[125,136,68,-0.6169370338320732],[125,136,69,-0.617166593670845],[125,136,70,-0.6182628497481346],[125,136,71,-0.6199178770184517],[125,136,72,-0.6227027885615826],[125,136,73,-0.6255908571183681],[125,136,74,-0.6272980086505413],[125,136,75,-0.6273296177387238],[125,136,76,-0.6251550279557705],[125,136,77,-0.6208309903740883],[125,136,78,-0.6155056692659855],[125,136,79,-0.6099466904997826],[125,137,64,-0.6252471171319485],[125,137,65,-0.6269721873104572],[125,137,66,-0.6268616765737534],[125,137,67,-0.6256894171237946],[125,137,68,-0.6247495338320732],[125,137,69,-0.624979093670845],[125,137,70,-0.6260753497481346],[125,137,71,-0.6277303770184517],[125,137,72,-0.6305152885615826],[125,137,73,-0.6334033571183681],[125,137,74,-0.6351105086505413],[125,137,75,-0.6351421177387238],[125,137,76,-0.6329675279557705],[125,137,77,-0.6286434903740883],[125,137,78,-0.6233181692659855],[125,137,79,-0.6177591904997826],[125,138,64,-0.6330596171319485],[125,138,65,-0.6347846873104572],[125,138,66,-0.6346741765737534],[125,138,67,-0.6335019171237946],[125,138,68,-0.6325620338320732],[125,138,69,-0.632791593670845],[125,138,70,-0.6338878497481346],[125,138,71,-0.6355428770184517],[125,138,72,-0.6383277885615826],[125,138,73,-0.6412158571183681],[125,138,74,-0.6429230086505413],[125,138,75,-0.6429546177387238],[125,138,76,-0.6407800279557705],[125,138,77,-0.6364559903740883],[125,138,78,-0.6311306692659855],[125,138,79,-0.6255716904997826],[125,139,64,-0.6408721171319485],[125,139,65,-0.6425971873104572],[125,139,66,-0.6424866765737534],[125,139,67,-0.6413144171237946],[125,139,68,-0.6403745338320732],[125,139,69,-0.640604093670845],[125,139,70,-0.6417003497481346],[125,139,71,-0.6433553770184517],[125,139,72,-0.6461402885615826],[125,139,73,-0.6490283571183681],[125,139,74,-0.6507355086505413],[125,139,75,-0.6507671177387238],[125,139,76,-0.6485925279557705],[125,139,77,-0.6442684903740883],[125,139,78,-0.6389431692659855],[125,139,79,-0.6333841904997826],[125,140,64,-0.6486846171319485],[125,140,65,-0.6504096873104572],[125,140,66,-0.6502991765737534],[125,140,67,-0.6491269171237946],[125,140,68,-0.6481870338320732],[125,140,69,-0.648416593670845],[125,140,70,-0.6495128497481346],[125,140,71,-0.6511678770184517],[125,140,72,-0.6539527885615826],[125,140,73,-0.6568408571183681],[125,140,74,-0.6585480086505413],[125,140,75,-0.6585796177387238],[125,140,76,-0.6564050279557705],[125,140,77,-0.6520809903740883],[125,140,78,-0.6467556692659855],[125,140,79,-0.6411966904997826],[125,141,64,-0.6564971171319485],[125,141,65,-0.6582221873104572],[125,141,66,-0.6581116765737534],[125,141,67,-0.6569394171237946],[125,141,68,-0.6559995338320732],[125,141,69,-0.656229093670845],[125,141,70,-0.6573253497481346],[125,141,71,-0.6589803770184517],[125,141,72,-0.6617652885615826],[125,141,73,-0.6646533571183681],[125,141,74,-0.6663605086505413],[125,141,75,-0.6663921177387238],[125,141,76,-0.6642175279557705],[125,141,77,-0.6598934903740883],[125,141,78,-0.6545681692659855],[125,141,79,-0.6490091904997826],[125,142,64,-0.6643096171319485],[125,142,65,-0.6660346873104572],[125,142,66,-0.6659241765737534],[125,142,67,-0.6647519171237946],[125,142,68,-0.6638120338320732],[125,142,69,-0.664041593670845],[125,142,70,-0.6651378497481346],[125,142,71,-0.6667928770184517],[125,142,72,-0.6695777885615826],[125,142,73,-0.6724658571183681],[125,142,74,-0.6741730086505413],[125,142,75,-0.6742046177387238],[125,142,76,-0.6720300279557705],[125,142,77,-0.6677059903740883],[125,142,78,-0.6623806692659855],[125,142,79,-0.6568216904997826],[125,143,64,-0.6721221171319485],[125,143,65,-0.6738471873104572],[125,143,66,-0.6737366765737534],[125,143,67,-0.6725644171237946],[125,143,68,-0.6716245338320732],[125,143,69,-0.671854093670845],[125,143,70,-0.6729503497481346],[125,143,71,-0.6746053770184517],[125,143,72,-0.6773902885615826],[125,143,73,-0.6802783571183681],[125,143,74,-0.6819855086505413],[125,143,75,-0.6820171177387238],[125,143,76,-0.6798425279557705],[125,143,77,-0.6755184903740883],[125,143,78,-0.6701931692659855],[125,143,79,-0.6646341904997826],[125,144,64,-0.6799346171319485],[125,144,65,-0.6816596873104572],[125,144,66,-0.6815491765737534],[125,144,67,-0.6803769171237946],[125,144,68,-0.6794370338320732],[125,144,69,-0.679666593670845],[125,144,70,-0.6807628497481346],[125,144,71,-0.6824178770184517],[125,144,72,-0.6852027885615826],[125,144,73,-0.6880908571183681],[125,144,74,-0.6897980086505413],[125,144,75,-0.6898296177387238],[125,144,76,-0.6876550279557705],[125,144,77,-0.6833309903740883],[125,144,78,-0.6780056692659855],[125,144,79,-0.6724466904997826],[125,145,64,-0.6877471171319485],[125,145,65,-0.6894721873104572],[125,145,66,-0.6893616765737534],[125,145,67,-0.6881894171237946],[125,145,68,-0.6872495338320732],[125,145,69,-0.687479093670845],[125,145,70,-0.6885753497481346],[125,145,71,-0.6902303770184517],[125,145,72,-0.6930152885615826],[125,145,73,-0.6959033571183681],[125,145,74,-0.6976105086505413],[125,145,75,-0.6976421177387238],[125,145,76,-0.6954675279557705],[125,145,77,-0.6911434903740883],[125,145,78,-0.6858181692659855],[125,145,79,-0.6802591904997826],[125,146,64,-0.6955596171319485],[125,146,65,-0.6972846873104572],[125,146,66,-0.6971741765737534],[125,146,67,-0.6960019171237946],[125,146,68,-0.6950620338320732],[125,146,69,-0.695291593670845],[125,146,70,-0.6963878497481346],[125,146,71,-0.6980428770184517],[125,146,72,-0.7008277885615826],[125,146,73,-0.7037158571183681],[125,146,74,-0.7054230086505413],[125,146,75,-0.7054546177387238],[125,146,76,-0.7032800279557705],[125,146,77,-0.6989559903740883],[125,146,78,-0.6936306692659855],[125,146,79,-0.6880716904997826],[125,147,64,-0.7033721171319485],[125,147,65,-0.7050971873104572],[125,147,66,-0.7049866765737534],[125,147,67,-0.7038144171237946],[125,147,68,-0.7028745338320732],[125,147,69,-0.703104093670845],[125,147,70,-0.7042003497481346],[125,147,71,-0.7058553770184517],[125,147,72,-0.7086402885615826],[125,147,73,-0.7115283571183681],[125,147,74,-0.7132355086505413],[125,147,75,-0.7132671177387238],[125,147,76,-0.7110925279557705],[125,147,77,-0.7067684903740883],[125,147,78,-0.7014431692659855],[125,147,79,-0.6958841904997826],[125,148,64,-0.7111846171319485],[125,148,65,-0.7129096873104572],[125,148,66,-0.7127991765737534],[125,148,67,-0.7116269171237946],[125,148,68,-0.7106870338320732],[125,148,69,-0.710916593670845],[125,148,70,-0.7120128497481346],[125,148,71,-0.7136678770184517],[125,148,72,-0.7164527885615826],[125,148,73,-0.7193408571183681],[125,148,74,-0.7210480086505413],[125,148,75,-0.7210796177387238],[125,148,76,-0.7189050279557705],[125,148,77,-0.7145809903740883],[125,148,78,-0.7092556692659855],[125,148,79,-0.7036966904997826],[125,149,64,-0.7189971171319485],[125,149,65,-0.7207221873104572],[125,149,66,-0.7206116765737534],[125,149,67,-0.7194394171237946],[125,149,68,-0.7184995338320732],[125,149,69,-0.718729093670845],[125,149,70,-0.7198253497481346],[125,149,71,-0.7214803770184517],[125,149,72,-0.7242652885615826],[125,149,73,-0.7271533571183681],[125,149,74,-0.7288605086505413],[125,149,75,-0.7288921177387238],[125,149,76,-0.7267175279557705],[125,149,77,-0.7223934903740883],[125,149,78,-0.7170681692659855],[125,149,79,-0.7115091904997826],[125,150,64,-0.7268096171319485],[125,150,65,-0.7285346873104572],[125,150,66,-0.7284241765737534],[125,150,67,-0.7272519171237946],[125,150,68,-0.7263120338320732],[125,150,69,-0.726541593670845],[125,150,70,-0.7276378497481346],[125,150,71,-0.7292928770184517],[125,150,72,-0.7320777885615826],[125,150,73,-0.7349658571183681],[125,150,74,-0.7366730086505413],[125,150,75,-0.7367046177387238],[125,150,76,-0.7345300279557705],[125,150,77,-0.7302059903740883],[125,150,78,-0.7248806692659855],[125,150,79,-0.7193216904997826],[125,151,64,-0.7346221171319485],[125,151,65,-0.7363471873104572],[125,151,66,-0.7362366765737534],[125,151,67,-0.7350644171237946],[125,151,68,-0.7341245338320732],[125,151,69,-0.734354093670845],[125,151,70,-0.7354503497481346],[125,151,71,-0.7371053770184517],[125,151,72,-0.7398902885615826],[125,151,73,-0.7427783571183681],[125,151,74,-0.7444855086505413],[125,151,75,-0.7445171177387238],[125,151,76,-0.7423425279557705],[125,151,77,-0.7380184903740883],[125,151,78,-0.7326931692659855],[125,151,79,-0.7271341904997826],[125,152,64,-0.7424346171319485],[125,152,65,-0.7441596873104572],[125,152,66,-0.7440491765737534],[125,152,67,-0.7428769171237946],[125,152,68,-0.7419370338320732],[125,152,69,-0.742166593670845],[125,152,70,-0.7432628497481346],[125,152,71,-0.7449178770184517],[125,152,72,-0.7477027885615826],[125,152,73,-0.7505908571183681],[125,152,74,-0.7522980086505413],[125,152,75,-0.7523296177387238],[125,152,76,-0.7501550279557705],[125,152,77,-0.7458309903740883],[125,152,78,-0.7405056692659855],[125,152,79,-0.7349466904997826],[125,153,64,-0.7502471171319485],[125,153,65,-0.7519721873104572],[125,153,66,-0.7518616765737534],[125,153,67,-0.7506894171237946],[125,153,68,-0.7497495338320732],[125,153,69,-0.749979093670845],[125,153,70,-0.7510753497481346],[125,153,71,-0.7527303770184517],[125,153,72,-0.7555152885615826],[125,153,73,-0.7584033571183681],[125,153,74,-0.7601105086505413],[125,153,75,-0.7601421177387238],[125,153,76,-0.7579675279557705],[125,153,77,-0.7536434903740883],[125,153,78,-0.7483181692659855],[125,153,79,-0.7427591904997826],[125,154,64,-0.7580596171319485],[125,154,65,-0.7597846873104572],[125,154,66,-0.7596741765737534],[125,154,67,-0.7585019171237946],[125,154,68,-0.7575620338320732],[125,154,69,-0.757791593670845],[125,154,70,-0.7588878497481346],[125,154,71,-0.7605428770184517],[125,154,72,-0.7633277885615826],[125,154,73,-0.7662158571183681],[125,154,74,-0.7679230086505413],[125,154,75,-0.7679546177387238],[125,154,76,-0.7657800279557705],[125,154,77,-0.7614559903740883],[125,154,78,-0.7561306692659855],[125,154,79,-0.7505716904997826],[125,155,64,-0.7658721171319485],[125,155,65,-0.7675971873104572],[125,155,66,-0.7674866765737534],[125,155,67,-0.7663144171237946],[125,155,68,-0.7653745338320732],[125,155,69,-0.765604093670845],[125,155,70,-0.7667003497481346],[125,155,71,-0.7683553770184517],[125,155,72,-0.7711402885615826],[125,155,73,-0.7740283571183681],[125,155,74,-0.7757355086505413],[125,155,75,-0.7757671177387238],[125,155,76,-0.7735925279557705],[125,155,77,-0.7692684903740883],[125,155,78,-0.7639431692659855],[125,155,79,-0.7583841904997826],[125,156,64,-0.7736846171319485],[125,156,65,-0.7754096873104572],[125,156,66,-0.7752991765737534],[125,156,67,-0.7741269171237946],[125,156,68,-0.7731870338320732],[125,156,69,-0.773416593670845],[125,156,70,-0.7745128497481346],[125,156,71,-0.7761678770184517],[125,156,72,-0.7789527885615826],[125,156,73,-0.7818408571183681],[125,156,74,-0.7835480086505413],[125,156,75,-0.7835796177387238],[125,156,76,-0.7814050279557705],[125,156,77,-0.7770809903740883],[125,156,78,-0.7717556692659855],[125,156,79,-0.7661966904997826],[125,157,64,-0.7814971171319485],[125,157,65,-0.7832221873104572],[125,157,66,-0.7831116765737534],[125,157,67,-0.7819394171237946],[125,157,68,-0.7809995338320732],[125,157,69,-0.781229093670845],[125,157,70,-0.7823253497481346],[125,157,71,-0.7839803770184517],[125,157,72,-0.7867652885615826],[125,157,73,-0.7896533571183681],[125,157,74,-0.7913605086505413],[125,157,75,-0.7913921177387238],[125,157,76,-0.7892175279557705],[125,157,77,-0.7848934903740883],[125,157,78,-0.7795681692659855],[125,157,79,-0.7740091904997826],[125,158,64,-0.7893096171319485],[125,158,65,-0.7910346873104572],[125,158,66,-0.7909241765737534],[125,158,67,-0.7897519171237946],[125,158,68,-0.7888120338320732],[125,158,69,-0.789041593670845],[125,158,70,-0.7901378497481346],[125,158,71,-0.7917928770184517],[125,158,72,-0.7945777885615826],[125,158,73,-0.7974658571183681],[125,158,74,-0.7991730086505413],[125,158,75,-0.7992046177387238],[125,158,76,-0.7970300279557705],[125,158,77,-0.7927059903740883],[125,158,78,-0.7873806692659855],[125,158,79,-0.7818216904997826],[125,159,64,-0.7971221171319485],[125,159,65,-0.7988471873104572],[125,159,66,-0.7987366765737534],[125,159,67,-0.7975644171237946],[125,159,68,-0.7966245338320732],[125,159,69,-0.796854093670845],[125,159,70,-0.7979503497481346],[125,159,71,-0.7996053770184517],[125,159,72,-0.8023902885615826],[125,159,73,-0.8052783571183681],[125,159,74,-0.8069855086505413],[125,159,75,-0.8070171177387238],[125,159,76,-0.8048425279557705],[125,159,77,-0.8005184903740883],[125,159,78,-0.7951931692659855],[125,159,79,-0.7896341904997826],[125,160,64,-0.8049346171319485],[125,160,65,-0.8066596873104572],[125,160,66,-0.8065491765737534],[125,160,67,-0.8053769171237946],[125,160,68,-0.8044370338320732],[125,160,69,-0.804666593670845],[125,160,70,-0.8057628497481346],[125,160,71,-0.8074178770184517],[125,160,72,-0.8102027885615826],[125,160,73,-0.8130908571183681],[125,160,74,-0.8147980086505413],[125,160,75,-0.8148296177387238],[125,160,76,-0.8126550279557705],[125,160,77,-0.8083309903740883],[125,160,78,-0.8030056692659855],[125,160,79,-0.7974466904997826],[125,161,64,-0.8127471171319485],[125,161,65,-0.8144721873104572],[125,161,66,-0.8143616765737534],[125,161,67,-0.8131894171237946],[125,161,68,-0.8122495338320732],[125,161,69,-0.812479093670845],[125,161,70,-0.8135753497481346],[125,161,71,-0.8152303770184517],[125,161,72,-0.8180152885615826],[125,161,73,-0.8209033571183681],[125,161,74,-0.8226105086505413],[125,161,75,-0.8226421177387238],[125,161,76,-0.8204675279557705],[125,161,77,-0.8161434903740883],[125,161,78,-0.8108181692659855],[125,161,79,-0.8052591904997826],[125,162,64,-0.8205596171319485],[125,162,65,-0.8222846873104572],[125,162,66,-0.8221741765737534],[125,162,67,-0.8210019171237946],[125,162,68,-0.8200620338320732],[125,162,69,-0.820291593670845],[125,162,70,-0.8213878497481346],[125,162,71,-0.8230428770184517],[125,162,72,-0.8258277885615826],[125,162,73,-0.8287158571183681],[125,162,74,-0.8304230086505413],[125,162,75,-0.8304546177387238],[125,162,76,-0.8282800279557705],[125,162,77,-0.8239559903740883],[125,162,78,-0.8186306692659855],[125,162,79,-0.8130716904997826],[125,163,64,-0.8283721171319485],[125,163,65,-0.8300971873104572],[125,163,66,-0.8299866765737534],[125,163,67,-0.8288144171237946],[125,163,68,-0.8278745338320732],[125,163,69,-0.828104093670845],[125,163,70,-0.8292003497481346],[125,163,71,-0.8308553770184517],[125,163,72,-0.8336402885615826],[125,163,73,-0.8365283571183681],[125,163,74,-0.8382355086505413],[125,163,75,-0.8382671177387238],[125,163,76,-0.8360925279557705],[125,163,77,-0.8317684903740883],[125,163,78,-0.8264431692659855],[125,163,79,-0.8208841904997826],[125,164,64,-0.8361846171319485],[125,164,65,-0.8379096873104572],[125,164,66,-0.8377991765737534],[125,164,67,-0.8366269171237946],[125,164,68,-0.8356870338320732],[125,164,69,-0.835916593670845],[125,164,70,-0.8370128497481346],[125,164,71,-0.8386678770184517],[125,164,72,-0.8414527885615826],[125,164,73,-0.8443408571183681],[125,164,74,-0.8460480086505413],[125,164,75,-0.8460796177387238],[125,164,76,-0.8439050279557705],[125,164,77,-0.8395809903740883],[125,164,78,-0.8342556692659855],[125,164,79,-0.8286966904997826],[125,165,64,-0.8439971171319485],[125,165,65,-0.8457221873104572],[125,165,66,-0.8456116765737534],[125,165,67,-0.8444394171237946],[125,165,68,-0.8434995338320732],[125,165,69,-0.843729093670845],[125,165,70,-0.8448253497481346],[125,165,71,-0.8464803770184517],[125,165,72,-0.8492652885615826],[125,165,73,-0.8521533571183681],[125,165,74,-0.8538605086505413],[125,165,75,-0.8538921177387238],[125,165,76,-0.8517175279557705],[125,165,77,-0.8473934903740883],[125,165,78,-0.8420681692659855],[125,165,79,-0.8365091904997826],[125,166,64,-0.8518096171319485],[125,166,65,-0.8535346873104572],[125,166,66,-0.8534241765737534],[125,166,67,-0.8522519171237946],[125,166,68,-0.8513120338320732],[125,166,69,-0.851541593670845],[125,166,70,-0.8526378497481346],[125,166,71,-0.8542928770184517],[125,166,72,-0.8570777885615826],[125,166,73,-0.8599658571183681],[125,166,74,-0.8616730086505413],[125,166,75,-0.8617046177387238],[125,166,76,-0.8595300279557705],[125,166,77,-0.8552059903740883],[125,166,78,-0.8498806692659855],[125,166,79,-0.8443216904997826],[125,167,64,-0.8596221171319485],[125,167,65,-0.8613471873104572],[125,167,66,-0.8612366765737534],[125,167,67,-0.8600644171237946],[125,167,68,-0.8591245338320732],[125,167,69,-0.859354093670845],[125,167,70,-0.8604503497481346],[125,167,71,-0.8621053770184517],[125,167,72,-0.8648902885615826],[125,167,73,-0.8677783571183681],[125,167,74,-0.8694855086505413],[125,167,75,-0.8695171177387238],[125,167,76,-0.8673425279557705],[125,167,77,-0.8630184903740883],[125,167,78,-0.8576931692659855],[125,167,79,-0.8521341904997826],[125,168,64,-0.8674346171319485],[125,168,65,-0.8691596873104572],[125,168,66,-0.8690491765737534],[125,168,67,-0.8678769171237946],[125,168,68,-0.8669370338320732],[125,168,69,-0.867166593670845],[125,168,70,-0.8682628497481346],[125,168,71,-0.8699178770184517],[125,168,72,-0.8727027885615826],[125,168,73,-0.8755908571183681],[125,168,74,-0.8772980086505413],[125,168,75,-0.8773296177387238],[125,168,76,-0.8751550279557705],[125,168,77,-0.8708309903740883],[125,168,78,-0.8655056692659855],[125,168,79,-0.8599466904997826],[125,169,64,-0.8752471171319485],[125,169,65,-0.8769721873104572],[125,169,66,-0.8768616765737534],[125,169,67,-0.8756894171237946],[125,169,68,-0.8747495338320732],[125,169,69,-0.874979093670845],[125,169,70,-0.8760753497481346],[125,169,71,-0.8777303770184517],[125,169,72,-0.8805152885615826],[125,169,73,-0.8834033571183681],[125,169,74,-0.8851105086505413],[125,169,75,-0.8851421177387238],[125,169,76,-0.8829675279557705],[125,169,77,-0.8786434903740883],[125,169,78,-0.8733181692659855],[125,169,79,-0.8677591904997826],[125,170,64,-0.8830596171319485],[125,170,65,-0.8847846873104572],[125,170,66,-0.8846741765737534],[125,170,67,-0.8835019171237946],[125,170,68,-0.8825620338320732],[125,170,69,-0.882791593670845],[125,170,70,-0.8838878497481346],[125,170,71,-0.8855428770184517],[125,170,72,-0.8883277885615826],[125,170,73,-0.8912158571183681],[125,170,74,-0.8929230086505413],[125,170,75,-0.8929546177387238],[125,170,76,-0.8907800279557705],[125,170,77,-0.8864559903740883],[125,170,78,-0.8811306692659855],[125,170,79,-0.8755716904997826],[125,171,64,-0.8908721171319485],[125,171,65,-0.8925971873104572],[125,171,66,-0.8924866765737534],[125,171,67,-0.8913144171237946],[125,171,68,-0.8903745338320732],[125,171,69,-0.890604093670845],[125,171,70,-0.8917003497481346],[125,171,71,-0.8933553770184517],[125,171,72,-0.8961402885615826],[125,171,73,-0.8990283571183681],[125,171,74,-0.9007355086505413],[125,171,75,-0.9007671177387238],[125,171,76,-0.8985925279557705],[125,171,77,-0.8942684903740883],[125,171,78,-0.8889431692659855],[125,171,79,-0.8833841904997826],[125,172,64,-0.8986846171319485],[125,172,65,-0.9004096873104572],[125,172,66,-0.9002991765737534],[125,172,67,-0.8991269171237946],[125,172,68,-0.8981870338320732],[125,172,69,-0.898416593670845],[125,172,70,-0.8995128497481346],[125,172,71,-0.9011678770184517],[125,172,72,-0.9039527885615826],[125,172,73,-0.9068408571183681],[125,172,74,-0.9085480086505413],[125,172,75,-0.9085796177387238],[125,172,76,-0.9064050279557705],[125,172,77,-0.9020809903740883],[125,172,78,-0.8967556692659855],[125,172,79,-0.8911966904997826],[125,173,64,-0.9064971171319485],[125,173,65,-0.9082221873104572],[125,173,66,-0.9081116765737534],[125,173,67,-0.9069394171237946],[125,173,68,-0.9059995338320732],[125,173,69,-0.906229093670845],[125,173,70,-0.9073253497481346],[125,173,71,-0.9089803770184517],[125,173,72,-0.9117652885615826],[125,173,73,-0.9146533571183681],[125,173,74,-0.9163605086505413],[125,173,75,-0.9163921177387238],[125,173,76,-0.9142175279557705],[125,173,77,-0.9098934903740883],[125,173,78,-0.9045681692659855],[125,173,79,-0.8990091904997826],[125,174,64,-0.9143096171319485],[125,174,65,-0.9160346873104572],[125,174,66,-0.9159241765737534],[125,174,67,-0.9147519171237946],[125,174,68,-0.9138120338320732],[125,174,69,-0.914041593670845],[125,174,70,-0.9151378497481346],[125,174,71,-0.9167928770184517],[125,174,72,-0.9195777885615826],[125,174,73,-0.9224658571183681],[125,174,74,-0.9241730086505413],[125,174,75,-0.9242046177387238],[125,174,76,-0.9220300279557705],[125,174,77,-0.9177059903740883],[125,174,78,-0.9123806692659855],[125,174,79,-0.9068216904997826],[125,175,64,-0.9221221171319485],[125,175,65,-0.9238471873104572],[125,175,66,-0.9237366765737534],[125,175,67,-0.9225644171237946],[125,175,68,-0.9216245338320732],[125,175,69,-0.921854093670845],[125,175,70,-0.9229503497481346],[125,175,71,-0.9246053770184517],[125,175,72,-0.9273902885615826],[125,175,73,-0.9302783571183681],[125,175,74,-0.9319855086505413],[125,175,75,-0.9320171177387238],[125,175,76,-0.9298425279557705],[125,175,77,-0.9255184903740883],[125,175,78,-0.9201931692659855],[125,175,79,-0.9146341904997826],[125,176,64,-0.9299346171319485],[125,176,65,-0.9316596873104572],[125,176,66,-0.9315491765737534],[125,176,67,-0.9303769171237946],[125,176,68,-0.9294370338320732],[125,176,69,-0.929666593670845],[125,176,70,-0.9307628497481346],[125,176,71,-0.9324178770184517],[125,176,72,-0.9352027885615826],[125,176,73,-0.9380908571183681],[125,176,74,-0.9397980086505413],[125,176,75,-0.9398296177387238],[125,176,76,-0.9376550279557705],[125,176,77,-0.9333309903740883],[125,176,78,-0.9280056692659855],[125,176,79,-0.9224466904997826],[125,177,64,-0.9377471171319485],[125,177,65,-0.9394721873104572],[125,177,66,-0.9393616765737534],[125,177,67,-0.9381894171237946],[125,177,68,-0.9372495338320732],[125,177,69,-0.937479093670845],[125,177,70,-0.9385753497481346],[125,177,71,-0.9402303770184517],[125,177,72,-0.9430152885615826],[125,177,73,-0.9459033571183681],[125,177,74,-0.9476105086505413],[125,177,75,-0.9476421177387238],[125,177,76,-0.9454675279557705],[125,177,77,-0.9411434903740883],[125,177,78,-0.9358181692659855],[125,177,79,-0.9302591904997826],[125,178,64,-0.9455596171319485],[125,178,65,-0.9472846873104572],[125,178,66,-0.9471741765737534],[125,178,67,-0.9460019171237946],[125,178,68,-0.9450620338320732],[125,178,69,-0.945291593670845],[125,178,70,-0.9463878497481346],[125,178,71,-0.9480428770184517],[125,178,72,-0.9508277885615826],[125,178,73,-0.9537158571183681],[125,178,74,-0.9554230086505413],[125,178,75,-0.9554546177387238],[125,178,76,-0.9532800279557705],[125,178,77,-0.9489559903740883],[125,178,78,-0.9436306692659855],[125,178,79,-0.9380716904997826],[125,179,64,-0.9533721171319485],[125,179,65,-0.9550971873104572],[125,179,66,-0.9549866765737534],[125,179,67,-0.9538144171237946],[125,179,68,-0.9528745338320732],[125,179,69,-0.953104093670845],[125,179,70,-0.9542003497481346],[125,179,71,-0.9558553770184517],[125,179,72,-0.9586402885615826],[125,179,73,-0.9615283571183681],[125,179,74,-0.9632355086505413],[125,179,75,-0.9632671177387238],[125,179,76,-0.9610925279557705],[125,179,77,-0.9567684903740883],[125,179,78,-0.9514431692659855],[125,179,79,-0.9458841904997826],[125,180,64,-0.9611846171319485],[125,180,65,-0.9629096873104572],[125,180,66,-0.9627991765737534],[125,180,67,-0.9616269171237946],[125,180,68,-0.9606870338320732],[125,180,69,-0.960916593670845],[125,180,70,-0.9620128497481346],[125,180,71,-0.9636678770184517],[125,180,72,-0.9664527885615826],[125,180,73,-0.9693408571183681],[125,180,74,-0.9710480086505413],[125,180,75,-0.9710796177387238],[125,180,76,-0.9689050279557705],[125,180,77,-0.9645809903740883],[125,180,78,-0.9592556692659855],[125,180,79,-0.9536966904997826],[125,181,64,-0.9689971171319485],[125,181,65,-0.9707221873104572],[125,181,66,-0.9706116765737534],[125,181,67,-0.9694394171237946],[125,181,68,-0.9684995338320732],[125,181,69,-0.968729093670845],[125,181,70,-0.9698253497481346],[125,181,71,-0.9714803770184517],[125,181,72,-0.9742652885615826],[125,181,73,-0.9771533571183681],[125,181,74,-0.9788605086505413],[125,181,75,-0.9788921177387238],[125,181,76,-0.9767175279557705],[125,181,77,-0.9723934903740883],[125,181,78,-0.9670681692659855],[125,181,79,-0.9615091904997826],[125,182,64,-0.9768096171319485],[125,182,65,-0.9785346873104572],[125,182,66,-0.9784241765737534],[125,182,67,-0.9772519171237946],[125,182,68,-0.9763120338320732],[125,182,69,-0.976541593670845],[125,182,70,-0.9776378497481346],[125,182,71,-0.9792928770184517],[125,182,72,-0.9820777885615826],[125,182,73,-0.9849658571183681],[125,182,74,-0.9866730086505413],[125,182,75,-0.9867046177387238],[125,182,76,-0.9845300279557705],[125,182,77,-0.9802059903740883],[125,182,78,-0.9748806692659855],[125,182,79,-0.9693216904997826],[125,183,64,-0.9846221171319485],[125,183,65,-0.9863471873104572],[125,183,66,-0.9862366765737534],[125,183,67,-0.9850644171237946],[125,183,68,-0.9841245338320732],[125,183,69,-0.984354093670845],[125,183,70,-0.9854503497481346],[125,183,71,-0.9871053770184517],[125,183,72,-0.9898902885615826],[125,183,73,-0.9927783571183681],[125,183,74,-0.9944855086505413],[125,183,75,-0.9945171177387238],[125,183,76,-0.9923425279557705],[125,183,77,-0.9880184903740883],[125,183,78,-0.9826931692659855],[125,183,79,-0.9771341904997826],[125,184,64,-0.9924346171319485],[125,184,65,-0.9941596873104572],[125,184,66,-0.9940491765737534],[125,184,67,-0.9928769171237946],[125,184,68,-0.9919370338320732],[125,184,69,-0.992166593670845],[125,184,70,-0.9932628497481346],[125,184,71,-0.9949178770184517],[125,184,72,-0.9977027885615826],[125,184,73,-1.0005908571183681],[125,184,74,-1.0022980086505413],[125,184,75,-1.0023296177387238],[125,184,76,-1.0001550279557705],[125,184,77,-0.9958309903740883],[125,184,78,-0.9905056692659855],[125,184,79,-0.9849466904997826],[125,185,64,-1.0002471171319485],[125,185,65,-1.0019721873104572],[125,185,66,-1.0018616765737534],[125,185,67,-1.0006894171237946],[125,185,68,-0.9997495338320732],[125,185,69,-0.999979093670845],[125,185,70,-1.0010753497481346],[125,185,71,-1.0027303770184517],[125,185,72,-1.0055152885615826],[125,185,73,-1.0084033571183681],[125,185,74,-1.0101105086505413],[125,185,75,-1.0101421177387238],[125,185,76,-1.0079675279557705],[125,185,77,-1.0036434903740883],[125,185,78,-0.9983181692659855],[125,185,79,-0.9927591904997826],[125,186,64,-1.0080596171319485],[125,186,65,-1.0097846873104572],[125,186,66,-1.0096741765737534],[125,186,67,-1.0085019171237946],[125,186,68,-1.0075620338320732],[125,186,69,-1.007791593670845],[125,186,70,-1.0088878497481346],[125,186,71,-1.0105428770184517],[125,186,72,-1.0133277885615826],[125,186,73,-1.0162158571183681],[125,186,74,-1.0179230086505413],[125,186,75,-1.0179546177387238],[125,186,76,-1.0157800279557705],[125,186,77,-1.0114559903740883],[125,186,78,-1.0061306692659855],[125,186,79,-1.0005716904997826],[125,187,64,-1.0158721171319485],[125,187,65,-1.0175971873104572],[125,187,66,-1.0174866765737534],[125,187,67,-1.0163144171237946],[125,187,68,-1.0153745338320732],[125,187,69,-1.015604093670845],[125,187,70,-1.0167003497481346],[125,187,71,-1.0183553770184517],[125,187,72,-1.0211402885615826],[125,187,73,-1.0240283571183681],[125,187,74,-1.0257355086505413],[125,187,75,-1.0257671177387238],[125,187,76,-1.0235925279557705],[125,187,77,-1.0192684903740883],[125,187,78,-1.0139431692659855],[125,187,79,-1.0083841904997826],[125,188,64,-1.0236846171319485],[125,188,65,-1.0254096873104572],[125,188,66,-1.0252991765737534],[125,188,67,-1.0241269171237946],[125,188,68,-1.0231870338320732],[125,188,69,-1.023416593670845],[125,188,70,-1.0245128497481346],[125,188,71,-1.0261678770184517],[125,188,72,-1.0289527885615826],[125,188,73,-1.0318408571183681],[125,188,74,-1.0335480086505413],[125,188,75,-1.0335796177387238],[125,188,76,-1.0314050279557705],[125,188,77,-1.0270809903740883],[125,188,78,-1.0217556692659855],[125,188,79,-1.0161966904997826],[125,189,64,-1.0314971171319485],[125,189,65,-1.0332221873104572],[125,189,66,-1.0331116765737534],[125,189,67,-1.0319394171237946],[125,189,68,-1.0309995338320732],[125,189,69,-1.031229093670845],[125,189,70,-1.0323253497481346],[125,189,71,-1.0339803770184517],[125,189,72,-1.0367652885615826],[125,189,73,-1.0396533571183681],[125,189,74,-1.0413605086505413],[125,189,75,-1.0413921177387238],[125,189,76,-1.0392175279557705],[125,189,77,-1.0348934903740883],[125,189,78,-1.0295681692659855],[125,189,79,-1.0240091904997826],[125,190,64,-1.0393096171319485],[125,190,65,-1.0410346873104572],[125,190,66,-1.0409241765737534],[125,190,67,-1.0397519171237946],[125,190,68,-1.0388120338320732],[125,190,69,-1.039041593670845],[125,190,70,-1.0401378497481346],[125,190,71,-1.0417928770184517],[125,190,72,-1.0445777885615826],[125,190,73,-1.0474658571183681],[125,190,74,-1.0491730086505413],[125,190,75,-1.0492046177387238],[125,190,76,-1.0470300279557705],[125,190,77,-1.0427059903740883],[125,190,78,-1.0373806692659855],[125,190,79,-1.0318216904997826],[125,191,64,-1.0471221171319485],[125,191,65,-1.0488471873104572],[125,191,66,-1.0487366765737534],[125,191,67,-1.0475644171237946],[125,191,68,-1.0466245338320732],[125,191,69,-1.046854093670845],[125,191,70,-1.0479503497481346],[125,191,71,-1.0496053770184517],[125,191,72,-1.0523902885615826],[125,191,73,-1.0552783571183681],[125,191,74,-1.0569855086505413],[125,191,75,-1.0570171177387238],[125,191,76,-1.0548425279557705],[125,191,77,-1.0505184903740883],[125,191,78,-1.0451931692659855],[125,191,79,-1.0396341904997826],[125,192,64,-1.0549346171319485],[125,192,65,-1.0566596873104572],[125,192,66,-1.0565491765737534],[125,192,67,-1.0553769171237946],[125,192,68,-1.0544370338320732],[125,192,69,-1.054666593670845],[125,192,70,-1.0557628497481346],[125,192,71,-1.0574178770184517],[125,192,72,-1.0602027885615826],[125,192,73,-1.0630908571183681],[125,192,74,-1.0647980086505413],[125,192,75,-1.0648296177387238],[125,192,76,-1.0626550279557705],[125,192,77,-1.0583309903740883],[125,192,78,-1.0530056692659855],[125,192,79,-1.0474466904997826],[125,193,64,-1.0627471171319485],[125,193,65,-1.0644721873104572],[125,193,66,-1.0643616765737534],[125,193,67,-1.0631894171237946],[125,193,68,-1.0622495338320732],[125,193,69,-1.062479093670845],[125,193,70,-1.0635753497481346],[125,193,71,-1.0652303770184517],[125,193,72,-1.0680152885615826],[125,193,73,-1.0709033571183681],[125,193,74,-1.0726105086505413],[125,193,75,-1.0726421177387238],[125,193,76,-1.0704675279557705],[125,193,77,-1.0661434903740883],[125,193,78,-1.0608181692659855],[125,193,79,-1.0552591904997826],[125,194,64,-1.0705596171319485],[125,194,65,-1.0722846873104572],[125,194,66,-1.0721741765737534],[125,194,67,-1.0710019171237946],[125,194,68,-1.0700620338320732],[125,194,69,-1.070291593670845],[125,194,70,-1.0713878497481346],[125,194,71,-1.0730428770184517],[125,194,72,-1.0758277885615826],[125,194,73,-1.0787158571183681],[125,194,74,-1.0804230086505413],[125,194,75,-1.0804546177387238],[125,194,76,-1.0782800279557705],[125,194,77,-1.0739559903740883],[125,194,78,-1.0686306692659855],[125,194,79,-1.0630716904997826],[125,195,64,-1.0783721171319485],[125,195,65,-1.0800971873104572],[125,195,66,-1.0799866765737534],[125,195,67,-1.0788144171237946],[125,195,68,-1.0778745338320732],[125,195,69,-1.078104093670845],[125,195,70,-1.0792003497481346],[125,195,71,-1.0808553770184517],[125,195,72,-1.0836402885615826],[125,195,73,-1.0865283571183681],[125,195,74,-1.0882355086505413],[125,195,75,-1.0882671177387238],[125,195,76,-1.0860925279557705],[125,195,77,-1.0817684903740883],[125,195,78,-1.0764431692659855],[125,195,79,-1.0708841904997826],[125,196,64,-1.0861846171319485],[125,196,65,-1.0879096873104572],[125,196,66,-1.0877991765737534],[125,196,67,-1.0866269171237946],[125,196,68,-1.0856870338320732],[125,196,69,-1.085916593670845],[125,196,70,-1.0870128497481346],[125,196,71,-1.0886678770184517],[125,196,72,-1.0914527885615826],[125,196,73,-1.0943408571183681],[125,196,74,-1.0960480086505413],[125,196,75,-1.0960796177387238],[125,196,76,-1.0939050279557705],[125,196,77,-1.0895809903740883],[125,196,78,-1.0842556692659855],[125,196,79,-1.0786966904997826],[125,197,64,-1.0939971171319485],[125,197,65,-1.0957221873104572],[125,197,66,-1.0956116765737534],[125,197,67,-1.0944394171237946],[125,197,68,-1.0934995338320732],[125,197,69,-1.093729093670845],[125,197,70,-1.0948253497481346],[125,197,71,-1.0964803770184517],[125,197,72,-1.0992652885615826],[125,197,73,-1.1021533571183681],[125,197,74,-1.1038605086505413],[125,197,75,-1.1038921177387238],[125,197,76,-1.1017175279557705],[125,197,77,-1.0973934903740883],[125,197,78,-1.0920681692659855],[125,197,79,-1.0865091904997826],[125,198,64,-1.1018096171319485],[125,198,65,-1.1035346873104572],[125,198,66,-1.1034241765737534],[125,198,67,-1.1022519171237946],[125,198,68,-1.1013120338320732],[125,198,69,-1.101541593670845],[125,198,70,-1.1026378497481346],[125,198,71,-1.1042928770184517],[125,198,72,-1.1070777885615826],[125,198,73,-1.1099658571183681],[125,198,74,-1.1116730086505413],[125,198,75,-1.1117046177387238],[125,198,76,-1.1095300279557705],[125,198,77,-1.1052059903740883],[125,198,78,-1.0998806692659855],[125,198,79,-1.0943216904997826],[125,199,64,-1.1096221171319485],[125,199,65,-1.1113471873104572],[125,199,66,-1.1112366765737534],[125,199,67,-1.1100644171237946],[125,199,68,-1.1091245338320732],[125,199,69,-1.109354093670845],[125,199,70,-1.1104503497481346],[125,199,71,-1.1121053770184517],[125,199,72,-1.1148902885615826],[125,199,73,-1.1177783571183681],[125,199,74,-1.1194855086505413],[125,199,75,-1.1195171177387238],[125,199,76,-1.1173425279557705],[125,199,77,-1.1130184903740883],[125,199,78,-1.1076931692659855],[125,199,79,-1.1021341904997826],[125,200,64,-1.1174346171319485],[125,200,65,-1.1191596873104572],[125,200,66,-1.1190491765737534],[125,200,67,-1.1178769171237946],[125,200,68,-1.1169370338320732],[125,200,69,-1.117166593670845],[125,200,70,-1.1182628497481346],[125,200,71,-1.1199178770184517],[125,200,72,-1.1227027885615826],[125,200,73,-1.1255908571183681],[125,200,74,-1.1272980086505413],[125,200,75,-1.1273296177387238],[125,200,76,-1.1251550279557705],[125,200,77,-1.1208309903740883],[125,200,78,-1.1155056692659855],[125,200,79,-1.1099466904997826],[125,201,64,-1.1252471171319485],[125,201,65,-1.1269721873104572],[125,201,66,-1.1268616765737534],[125,201,67,-1.1256894171237946],[125,201,68,-1.1247495338320732],[125,201,69,-1.124979093670845],[125,201,70,-1.1260753497481346],[125,201,71,-1.1277303770184517],[125,201,72,-1.1305152885615826],[125,201,73,-1.1334033571183681],[125,201,74,-1.1351105086505413],[125,201,75,-1.1351421177387238],[125,201,76,-1.1329675279557705],[125,201,77,-1.1286434903740883],[125,201,78,-1.1233181692659855],[125,201,79,-1.1177591904997826],[125,202,64,-1.1330596171319485],[125,202,65,-1.1347846873104572],[125,202,66,-1.1346741765737534],[125,202,67,-1.1335019171237946],[125,202,68,-1.1325620338320732],[125,202,69,-1.132791593670845],[125,202,70,-1.1338878497481346],[125,202,71,-1.1355428770184517],[125,202,72,-1.1383277885615826],[125,202,73,-1.1412158571183681],[125,202,74,-1.1429230086505413],[125,202,75,-1.1429546177387238],[125,202,76,-1.1407800279557705],[125,202,77,-1.1364559903740883],[125,202,78,-1.1311306692659855],[125,202,79,-1.1255716904997826],[125,203,64,-1.1408721171319485],[125,203,65,-1.1425971873104572],[125,203,66,-1.1424866765737534],[125,203,67,-1.1413144171237946],[125,203,68,-1.1403745338320732],[125,203,69,-1.140604093670845],[125,203,70,-1.1417003497481346],[125,203,71,-1.1433553770184517],[125,203,72,-1.1461402885615826],[125,203,73,-1.1490283571183681],[125,203,74,-1.1507355086505413],[125,203,75,-1.1507671177387238],[125,203,76,-1.1485925279557705],[125,203,77,-1.1442684903740883],[125,203,78,-1.1389431692659855],[125,203,79,-1.1333841904997826],[125,204,64,-1.1486846171319485],[125,204,65,-1.1504096873104572],[125,204,66,-1.1502991765737534],[125,204,67,-1.1491269171237946],[125,204,68,-1.1481870338320732],[125,204,69,-1.148416593670845],[125,204,70,-1.1495128497481346],[125,204,71,-1.1511678770184517],[125,204,72,-1.1539527885615826],[125,204,73,-1.1568408571183681],[125,204,74,-1.1585480086505413],[125,204,75,-1.1585796177387238],[125,204,76,-1.1564050279557705],[125,204,77,-1.1520809903740883],[125,204,78,-1.1467556692659855],[125,204,79,-1.1411966904997826],[125,205,64,-1.1564971171319485],[125,205,65,-1.1582221873104572],[125,205,66,-1.1581116765737534],[125,205,67,-1.1569394171237946],[125,205,68,-1.1559995338320732],[125,205,69,-1.156229093670845],[125,205,70,-1.1573253497481346],[125,205,71,-1.1589803770184517],[125,205,72,-1.1617652885615826],[125,205,73,-1.1646533571183681],[125,205,74,-1.1663605086505413],[125,205,75,-1.1663921177387238],[125,205,76,-1.1642175279557705],[125,205,77,-1.1598934903740883],[125,205,78,-1.1545681692659855],[125,205,79,-1.1490091904997826],[125,206,64,-1.1643096171319485],[125,206,65,-1.1660346873104572],[125,206,66,-1.1659241765737534],[125,206,67,-1.1647519171237946],[125,206,68,-1.1638120338320732],[125,206,69,-1.164041593670845],[125,206,70,-1.1651378497481346],[125,206,71,-1.1667928770184517],[125,206,72,-1.1695777885615826],[125,206,73,-1.1724658571183681],[125,206,74,-1.1741730086505413],[125,206,75,-1.1742046177387238],[125,206,76,-1.1720300279557705],[125,206,77,-1.1677059903740883],[125,206,78,-1.1623806692659855],[125,206,79,-1.1568216904997826],[125,207,64,-1.1721221171319485],[125,207,65,-1.1738471873104572],[125,207,66,-1.1737366765737534],[125,207,67,-1.1725644171237946],[125,207,68,-1.1716245338320732],[125,207,69,-1.171854093670845],[125,207,70,-1.1729503497481346],[125,207,71,-1.1746053770184517],[125,207,72,-1.1773902885615826],[125,207,73,-1.1802783571183681],[125,207,74,-1.1819855086505413],[125,207,75,-1.1820171177387238],[125,207,76,-1.1798425279557705],[125,207,77,-1.1755184903740883],[125,207,78,-1.1701931692659855],[125,207,79,-1.1646341904997826],[125,208,64,-1.1799346171319485],[125,208,65,-1.1816596873104572],[125,208,66,-1.1815491765737534],[125,208,67,-1.1803769171237946],[125,208,68,-1.1794370338320732],[125,208,69,-1.179666593670845],[125,208,70,-1.1807628497481346],[125,208,71,-1.1824178770184517],[125,208,72,-1.1852027885615826],[125,208,73,-1.1880908571183681],[125,208,74,-1.1897980086505413],[125,208,75,-1.1898296177387238],[125,208,76,-1.1876550279557705],[125,208,77,-1.1833309903740883],[125,208,78,-1.1780056692659855],[125,208,79,-1.1724466904997826],[125,209,64,-1.1877471171319485],[125,209,65,-1.1894721873104572],[125,209,66,-1.1893616765737534],[125,209,67,-1.1881894171237946],[125,209,68,-1.1872495338320732],[125,209,69,-1.187479093670845],[125,209,70,-1.1885753497481346],[125,209,71,-1.1902303770184517],[125,209,72,-1.1930152885615826],[125,209,73,-1.1959033571183681],[125,209,74,-1.1976105086505413],[125,209,75,-1.1976421177387238],[125,209,76,-1.1954675279557705],[125,209,77,-1.1911434903740883],[125,209,78,-1.1858181692659855],[125,209,79,-1.1802591904997826],[125,210,64,-1.1955596171319485],[125,210,65,-1.1972846873104572],[125,210,66,-1.1971741765737534],[125,210,67,-1.1960019171237946],[125,210,68,-1.1950620338320732],[125,210,69,-1.195291593670845],[125,210,70,-1.1963878497481346],[125,210,71,-1.1980428770184517],[125,210,72,-1.2008277885615826],[125,210,73,-1.2037158571183681],[125,210,74,-1.2054230086505413],[125,210,75,-1.2054546177387238],[125,210,76,-1.2032800279557705],[125,210,77,-1.1989559903740883],[125,210,78,-1.1936306692659855],[125,210,79,-1.1880716904997826],[125,211,64,-1.2033721171319485],[125,211,65,-1.2050971873104572],[125,211,66,-1.2049866765737534],[125,211,67,-1.2038144171237946],[125,211,68,-1.2028745338320732],[125,211,69,-1.203104093670845],[125,211,70,-1.2042003497481346],[125,211,71,-1.2058553770184517],[125,211,72,-1.2086402885615826],[125,211,73,-1.2115283571183681],[125,211,74,-1.2132355086505413],[125,211,75,-1.2132671177387238],[125,211,76,-1.2110925279557705],[125,211,77,-1.2067684903740883],[125,211,78,-1.2014431692659855],[125,211,79,-1.1958841904997826],[125,212,64,-1.2111846171319485],[125,212,65,-1.2129096873104572],[125,212,66,-1.2127991765737534],[125,212,67,-1.2116269171237946],[125,212,68,-1.2106870338320732],[125,212,69,-1.210916593670845],[125,212,70,-1.2120128497481346],[125,212,71,-1.2136678770184517],[125,212,72,-1.2164527885615826],[125,212,73,-1.2193408571183681],[125,212,74,-1.2210480086505413],[125,212,75,-1.2210796177387238],[125,212,76,-1.2189050279557705],[125,212,77,-1.2145809903740883],[125,212,78,-1.2092556692659855],[125,212,79,-1.2036966904997826],[125,213,64,-1.2189971171319485],[125,213,65,-1.2207221873104572],[125,213,66,-1.2206116765737534],[125,213,67,-1.2194394171237946],[125,213,68,-1.2184995338320732],[125,213,69,-1.218729093670845],[125,213,70,-1.2198253497481346],[125,213,71,-1.2214803770184517],[125,213,72,-1.2242652885615826],[125,213,73,-1.2271533571183681],[125,213,74,-1.2288605086505413],[125,213,75,-1.2288921177387238],[125,213,76,-1.2267175279557705],[125,213,77,-1.2223934903740883],[125,213,78,-1.2170681692659855],[125,213,79,-1.2115091904997826],[125,214,64,-1.2268096171319485],[125,214,65,-1.2285346873104572],[125,214,66,-1.2284241765737534],[125,214,67,-1.2272519171237946],[125,214,68,-1.2263120338320732],[125,214,69,-1.226541593670845],[125,214,70,-1.2276378497481346],[125,214,71,-1.2292928770184517],[125,214,72,-1.2320777885615826],[125,214,73,-1.2349658571183681],[125,214,74,-1.2366730086505413],[125,214,75,-1.2367046177387238],[125,214,76,-1.2345300279557705],[125,214,77,-1.2302059903740883],[125,214,78,-1.2248806692659855],[125,214,79,-1.2193216904997826],[125,215,64,-1.2346221171319485],[125,215,65,-1.2363471873104572],[125,215,66,-1.2362366765737534],[125,215,67,-1.2350644171237946],[125,215,68,-1.2341245338320732],[125,215,69,-1.234354093670845],[125,215,70,-1.2354503497481346],[125,215,71,-1.2371053770184517],[125,215,72,-1.2398902885615826],[125,215,73,-1.2427783571183681],[125,215,74,-1.2444855086505413],[125,215,75,-1.2445171177387238],[125,215,76,-1.2423425279557705],[125,215,77,-1.2380184903740883],[125,215,78,-1.2326931692659855],[125,215,79,-1.2271341904997826],[125,216,64,-1.2424346171319485],[125,216,65,-1.2441596873104572],[125,216,66,-1.2440491765737534],[125,216,67,-1.2428769171237946],[125,216,68,-1.2419370338320732],[125,216,69,-1.242166593670845],[125,216,70,-1.2432628497481346],[125,216,71,-1.2449178770184517],[125,216,72,-1.2477027885615826],[125,216,73,-1.2505908571183681],[125,216,74,-1.2522980086505413],[125,216,75,-1.2523296177387238],[125,216,76,-1.2501550279557705],[125,216,77,-1.2458309903740883],[125,216,78,-1.2405056692659855],[125,216,79,-1.2349466904997826],[125,217,64,-1.2502471171319485],[125,217,65,-1.2519721873104572],[125,217,66,-1.2518616765737534],[125,217,67,-1.2506894171237946],[125,217,68,-1.2497495338320732],[125,217,69,-1.249979093670845],[125,217,70,-1.2510753497481346],[125,217,71,-1.2527303770184517],[125,217,72,-1.2555152885615826],[125,217,73,-1.2584033571183681],[125,217,74,-1.2601105086505413],[125,217,75,-1.2601421177387238],[125,217,76,-1.2579675279557705],[125,217,77,-1.2536434903740883],[125,217,78,-1.2483181692659855],[125,217,79,-1.2427591904997826],[125,218,64,-1.2580596171319485],[125,218,65,-1.2597846873104572],[125,218,66,-1.2596741765737534],[125,218,67,-1.2585019171237946],[125,218,68,-1.2575620338320732],[125,218,69,-1.257791593670845],[125,218,70,-1.2588878497481346],[125,218,71,-1.2605428770184517],[125,218,72,-1.2633277885615826],[125,218,73,-1.2662158571183681],[125,218,74,-1.2679230086505413],[125,218,75,-1.2679546177387238],[125,218,76,-1.2657800279557705],[125,218,77,-1.2614559903740883],[125,218,78,-1.2561306692659855],[125,218,79,-1.2505716904997826],[125,219,64,-1.2658721171319485],[125,219,65,-1.2675971873104572],[125,219,66,-1.2674866765737534],[125,219,67,-1.2663144171237946],[125,219,68,-1.2653745338320732],[125,219,69,-1.265604093670845],[125,219,70,-1.2667003497481346],[125,219,71,-1.2683553770184517],[125,219,72,-1.2711402885615826],[125,219,73,-1.2740283571183681],[125,219,74,-1.2757355086505413],[125,219,75,-1.2757671177387238],[125,219,76,-1.2735925279557705],[125,219,77,-1.2692684903740883],[125,219,78,-1.2639431692659855],[125,219,79,-1.2583841904997826],[125,220,64,-1.2736846171319485],[125,220,65,-1.2754096873104572],[125,220,66,-1.2752991765737534],[125,220,67,-1.2741269171237946],[125,220,68,-1.2731870338320732],[125,220,69,-1.273416593670845],[125,220,70,-1.2745128497481346],[125,220,71,-1.2761678770184517],[125,220,72,-1.2789527885615826],[125,220,73,-1.2818408571183681],[125,220,74,-1.2835480086505413],[125,220,75,-1.2835796177387238],[125,220,76,-1.2814050279557705],[125,220,77,-1.2770809903740883],[125,220,78,-1.2717556692659855],[125,220,79,-1.2661966904997826],[125,221,64,-1.2814971171319485],[125,221,65,-1.2832221873104572],[125,221,66,-1.2831116765737534],[125,221,67,-1.2819394171237946],[125,221,68,-1.2809995338320732],[125,221,69,-1.281229093670845],[125,221,70,-1.2823253497481346],[125,221,71,-1.2839803770184517],[125,221,72,-1.2867652885615826],[125,221,73,-1.2896533571183681],[125,221,74,-1.2913605086505413],[125,221,75,-1.2913921177387238],[125,221,76,-1.2892175279557705],[125,221,77,-1.2848934903740883],[125,221,78,-1.2795681692659855],[125,221,79,-1.2740091904997826],[125,222,64,-1.2893096171319485],[125,222,65,-1.2910346873104572],[125,222,66,-1.2909241765737534],[125,222,67,-1.2897519171237946],[125,222,68,-1.2888120338320732],[125,222,69,-1.289041593670845],[125,222,70,-1.2901378497481346],[125,222,71,-1.2917928770184517],[125,222,72,-1.2945777885615826],[125,222,73,-1.2974658571183681],[125,222,74,-1.2991730086505413],[125,222,75,-1.2992046177387238],[125,222,76,-1.2970300279557705],[125,222,77,-1.2927059903740883],[125,222,78,-1.2873806692659855],[125,222,79,-1.2818216904997826],[125,223,64,-1.2971221171319485],[125,223,65,-1.2988471873104572],[125,223,66,-1.2987366765737534],[125,223,67,-1.2975644171237946],[125,223,68,-1.2966245338320732],[125,223,69,-1.296854093670845],[125,223,70,-1.2979503497481346],[125,223,71,-1.2996053770184517],[125,223,72,-1.3023902885615826],[125,223,73,-1.3052783571183681],[125,223,74,-1.3069855086505413],[125,223,75,-1.3070171177387238],[125,223,76,-1.3048425279557705],[125,223,77,-1.3005184903740883],[125,223,78,-1.2951931692659855],[125,223,79,-1.2896341904997826],[125,224,64,-1.3049346171319485],[125,224,65,-1.3066596873104572],[125,224,66,-1.3065491765737534],[125,224,67,-1.3053769171237946],[125,224,68,-1.3044370338320732],[125,224,69,-1.304666593670845],[125,224,70,-1.3057628497481346],[125,224,71,-1.3074178770184517],[125,224,72,-1.3102027885615826],[125,224,73,-1.3130908571183681],[125,224,74,-1.3147980086505413],[125,224,75,-1.3148296177387238],[125,224,76,-1.3126550279557705],[125,224,77,-1.3083309903740883],[125,224,78,-1.3030056692659855],[125,224,79,-1.2974466904997826],[125,225,64,-1.3127471171319485],[125,225,65,-1.3144721873104572],[125,225,66,-1.3143616765737534],[125,225,67,-1.3131894171237946],[125,225,68,-1.3122495338320732],[125,225,69,-1.312479093670845],[125,225,70,-1.3135753497481346],[125,225,71,-1.3152303770184517],[125,225,72,-1.3180152885615826],[125,225,73,-1.3209033571183681],[125,225,74,-1.3226105086505413],[125,225,75,-1.3226421177387238],[125,225,76,-1.3204675279557705],[125,225,77,-1.3161434903740883],[125,225,78,-1.3108181692659855],[125,225,79,-1.3052591904997826],[125,226,64,-1.3205596171319485],[125,226,65,-1.3222846873104572],[125,226,66,-1.3221741765737534],[125,226,67,-1.3210019171237946],[125,226,68,-1.3200620338320732],[125,226,69,-1.320291593670845],[125,226,70,-1.3213878497481346],[125,226,71,-1.3230428770184517],[125,226,72,-1.3258277885615826],[125,226,73,-1.3287158571183681],[125,226,74,-1.3304230086505413],[125,226,75,-1.3304546177387238],[125,226,76,-1.3282800279557705],[125,226,77,-1.3239559903740883],[125,226,78,-1.3186306692659855],[125,226,79,-1.3130716904997826],[125,227,64,-1.3283721171319485],[125,227,65,-1.3300971873104572],[125,227,66,-1.3299866765737534],[125,227,67,-1.3288144171237946],[125,227,68,-1.3278745338320732],[125,227,69,-1.328104093670845],[125,227,70,-1.3292003497481346],[125,227,71,-1.3308553770184517],[125,227,72,-1.3336402885615826],[125,227,73,-1.3365283571183681],[125,227,74,-1.3382355086505413],[125,227,75,-1.3382671177387238],[125,227,76,-1.3360925279557705],[125,227,77,-1.3317684903740883],[125,227,78,-1.3264431692659855],[125,227,79,-1.3208841904997826],[125,228,64,-1.3361846171319485],[125,228,65,-1.3379096873104572],[125,228,66,-1.3377991765737534],[125,228,67,-1.3366269171237946],[125,228,68,-1.3356870338320732],[125,228,69,-1.335916593670845],[125,228,70,-1.3370128497481346],[125,228,71,-1.3386678770184517],[125,228,72,-1.3414527885615826],[125,228,73,-1.3443408571183681],[125,228,74,-1.3460480086505413],[125,228,75,-1.3460796177387238],[125,228,76,-1.3439050279557705],[125,228,77,-1.3395809903740883],[125,228,78,-1.3342556692659855],[125,228,79,-1.3286966904997826],[125,229,64,-1.3439971171319485],[125,229,65,-1.3457221873104572],[125,229,66,-1.3456116765737534],[125,229,67,-1.3444394171237946],[125,229,68,-1.3434995338320732],[125,229,69,-1.343729093670845],[125,229,70,-1.3448253497481346],[125,229,71,-1.3464803770184517],[125,229,72,-1.3492652885615826],[125,229,73,-1.3521533571183681],[125,229,74,-1.3538605086505413],[125,229,75,-1.3538921177387238],[125,229,76,-1.3517175279557705],[125,229,77,-1.3473934903740883],[125,229,78,-1.3420681692659855],[125,229,79,-1.3365091904997826],[125,230,64,-1.3518096171319485],[125,230,65,-1.3535346873104572],[125,230,66,-1.3534241765737534],[125,230,67,-1.3522519171237946],[125,230,68,-1.3513120338320732],[125,230,69,-1.351541593670845],[125,230,70,-1.3526378497481346],[125,230,71,-1.3542928770184517],[125,230,72,-1.3570777885615826],[125,230,73,-1.3599658571183681],[125,230,74,-1.3616730086505413],[125,230,75,-1.3617046177387238],[125,230,76,-1.3595300279557705],[125,230,77,-1.3552059903740883],[125,230,78,-1.3498806692659855],[125,230,79,-1.3443216904997826],[125,231,64,-1.3596221171319485],[125,231,65,-1.3613471873104572],[125,231,66,-1.3612366765737534],[125,231,67,-1.3600644171237946],[125,231,68,-1.3591245338320732],[125,231,69,-1.359354093670845],[125,231,70,-1.3604503497481346],[125,231,71,-1.3621053770184517],[125,231,72,-1.3648902885615826],[125,231,73,-1.3677783571183681],[125,231,74,-1.3694855086505413],[125,231,75,-1.3695171177387238],[125,231,76,-1.3673425279557705],[125,231,77,-1.3630184903740883],[125,231,78,-1.3576931692659855],[125,231,79,-1.3521341904997826],[125,232,64,-1.3674346171319485],[125,232,65,-1.3691596873104572],[125,232,66,-1.3690491765737534],[125,232,67,-1.3678769171237946],[125,232,68,-1.3669370338320732],[125,232,69,-1.367166593670845],[125,232,70,-1.3682628497481346],[125,232,71,-1.3699178770184517],[125,232,72,-1.3727027885615826],[125,232,73,-1.3755908571183681],[125,232,74,-1.3772980086505413],[125,232,75,-1.3773296177387238],[125,232,76,-1.3751550279557705],[125,232,77,-1.3708309903740883],[125,232,78,-1.3655056692659855],[125,232,79,-1.3599466904997826],[125,233,64,-1.3752471171319485],[125,233,65,-1.3769721873104572],[125,233,66,-1.3768616765737534],[125,233,67,-1.3756894171237946],[125,233,68,-1.3747495338320732],[125,233,69,-1.374979093670845],[125,233,70,-1.3760753497481346],[125,233,71,-1.3777303770184517],[125,233,72,-1.3805152885615826],[125,233,73,-1.3834033571183681],[125,233,74,-1.3851105086505413],[125,233,75,-1.3851421177387238],[125,233,76,-1.3829675279557705],[125,233,77,-1.3786434903740883],[125,233,78,-1.3733181692659855],[125,233,79,-1.3677591904997826],[125,234,64,-1.3830596171319485],[125,234,65,-1.3847846873104572],[125,234,66,-1.3846741765737534],[125,234,67,-1.3835019171237946],[125,234,68,-1.3825620338320732],[125,234,69,-1.382791593670845],[125,234,70,-1.3838878497481346],[125,234,71,-1.3855428770184517],[125,234,72,-1.3883277885615826],[125,234,73,-1.3912158571183681],[125,234,74,-1.3929230086505413],[125,234,75,-1.3929546177387238],[125,234,76,-1.3907800279557705],[125,234,77,-1.3864559903740883],[125,234,78,-1.3811306692659855],[125,234,79,-1.3755716904997826],[125,235,64,-1.3908721171319485],[125,235,65,-1.3925971873104572],[125,235,66,-1.3924866765737534],[125,235,67,-1.3913144171237946],[125,235,68,-1.3903745338320732],[125,235,69,-1.390604093670845],[125,235,70,-1.3917003497481346],[125,235,71,-1.3933553770184517],[125,235,72,-1.3961402885615826],[125,235,73,-1.3990283571183681],[125,235,74,-1.4007355086505413],[125,235,75,-1.4007671177387238],[125,235,76,-1.3985925279557705],[125,235,77,-1.3942684903740883],[125,235,78,-1.3889431692659855],[125,235,79,-1.3833841904997826],[125,236,64,-1.3986846171319485],[125,236,65,-1.4004096873104572],[125,236,66,-1.4002991765737534],[125,236,67,-1.3991269171237946],[125,236,68,-1.3981870338320732],[125,236,69,-1.398416593670845],[125,236,70,-1.3995128497481346],[125,236,71,-1.4011678770184517],[125,236,72,-1.4039527885615826],[125,236,73,-1.4068408571183681],[125,236,74,-1.4085480086505413],[125,236,75,-1.4085796177387238],[125,236,76,-1.4064050279557705],[125,236,77,-1.4020809903740883],[125,236,78,-1.3967556692659855],[125,236,79,-1.3911966904997826],[125,237,64,-1.4064971171319485],[125,237,65,-1.4082221873104572],[125,237,66,-1.4081116765737534],[125,237,67,-1.4069394171237946],[125,237,68,-1.4059995338320732],[125,237,69,-1.406229093670845],[125,237,70,-1.4073253497481346],[125,237,71,-1.4089803770184517],[125,237,72,-1.4117652885615826],[125,237,73,-1.4146533571183681],[125,237,74,-1.4163605086505413],[125,237,75,-1.4163921177387238],[125,237,76,-1.4142175279557705],[125,237,77,-1.4098934903740883],[125,237,78,-1.4045681692659855],[125,237,79,-1.3990091904997826],[125,238,64,-1.4143096171319485],[125,238,65,-1.4160346873104572],[125,238,66,-1.4159241765737534],[125,238,67,-1.4147519171237946],[125,238,68,-1.4138120338320732],[125,238,69,-1.414041593670845],[125,238,70,-1.4151378497481346],[125,238,71,-1.4167928770184517],[125,238,72,-1.4195777885615826],[125,238,73,-1.4224658571183681],[125,238,74,-1.4241730086505413],[125,238,75,-1.4242046177387238],[125,238,76,-1.4220300279557705],[125,238,77,-1.4177059903740883],[125,238,78,-1.4123806692659855],[125,238,79,-1.4068216904997826],[125,239,64,-1.4221221171319485],[125,239,65,-1.4238471873104572],[125,239,66,-1.4237366765737534],[125,239,67,-1.4225644171237946],[125,239,68,-1.4216245338320732],[125,239,69,-1.421854093670845],[125,239,70,-1.4229503497481346],[125,239,71,-1.4246053770184517],[125,239,72,-1.4273902885615826],[125,239,73,-1.4302783571183681],[125,239,74,-1.4319855086505413],[125,239,75,-1.4320171177387238],[125,239,76,-1.4298425279557705],[125,239,77,-1.4255184903740883],[125,239,78,-1.4201931692659855],[125,239,79,-1.4146341904997826],[125,240,64,-1.4299346171319485],[125,240,65,-1.4316596873104572],[125,240,66,-1.4315491765737534],[125,240,67,-1.4303769171237946],[125,240,68,-1.4294370338320732],[125,240,69,-1.429666593670845],[125,240,70,-1.4307628497481346],[125,240,71,-1.4324178770184517],[125,240,72,-1.4352027885615826],[125,240,73,-1.4380908571183681],[125,240,74,-1.4397980086505413],[125,240,75,-1.4398296177387238],[125,240,76,-1.4376550279557705],[125,240,77,-1.4333309903740883],[125,240,78,-1.4280056692659855],[125,240,79,-1.4224466904997826],[125,241,64,-1.4377471171319485],[125,241,65,-1.4394721873104572],[125,241,66,-1.4393616765737534],[125,241,67,-1.4381894171237946],[125,241,68,-1.4372495338320732],[125,241,69,-1.437479093670845],[125,241,70,-1.4385753497481346],[125,241,71,-1.4402303770184517],[125,241,72,-1.4430152885615826],[125,241,73,-1.4459033571183681],[125,241,74,-1.4476105086505413],[125,241,75,-1.4476421177387238],[125,241,76,-1.4454675279557705],[125,241,77,-1.4411434903740883],[125,241,78,-1.4358181692659855],[125,241,79,-1.4302591904997826],[125,242,64,-1.4455596171319485],[125,242,65,-1.4472846873104572],[125,242,66,-1.4471741765737534],[125,242,67,-1.4460019171237946],[125,242,68,-1.4450620338320732],[125,242,69,-1.445291593670845],[125,242,70,-1.4463878497481346],[125,242,71,-1.4480428770184517],[125,242,72,-1.4508277885615826],[125,242,73,-1.4537158571183681],[125,242,74,-1.4554230086505413],[125,242,75,-1.4554546177387238],[125,242,76,-1.4532800279557705],[125,242,77,-1.4489559903740883],[125,242,78,-1.4436306692659855],[125,242,79,-1.4380716904997826],[125,243,64,-1.4533721171319485],[125,243,65,-1.4550971873104572],[125,243,66,-1.4549866765737534],[125,243,67,-1.4538144171237946],[125,243,68,-1.4528745338320732],[125,243,69,-1.453104093670845],[125,243,70,-1.4542003497481346],[125,243,71,-1.4558553770184517],[125,243,72,-1.4586402885615826],[125,243,73,-1.4615283571183681],[125,243,74,-1.4632355086505413],[125,243,75,-1.4632671177387238],[125,243,76,-1.4610925279557705],[125,243,77,-1.4567684903740883],[125,243,78,-1.4514431692659855],[125,243,79,-1.4458841904997826],[125,244,64,-1.4611846171319485],[125,244,65,-1.4629096873104572],[125,244,66,-1.4627991765737534],[125,244,67,-1.4616269171237946],[125,244,68,-1.4606870338320732],[125,244,69,-1.460916593670845],[125,244,70,-1.4620128497481346],[125,244,71,-1.4636678770184517],[125,244,72,-1.4664527885615826],[125,244,73,-1.4693408571183681],[125,244,74,-1.4710480086505413],[125,244,75,-1.4710796177387238],[125,244,76,-1.4689050279557705],[125,244,77,-1.4645809903740883],[125,244,78,-1.4592556692659855],[125,244,79,-1.4536966904997826],[125,245,64,-1.4689971171319485],[125,245,65,-1.4707221873104572],[125,245,66,-1.4706116765737534],[125,245,67,-1.4694394171237946],[125,245,68,-1.4684995338320732],[125,245,69,-1.468729093670845],[125,245,70,-1.4698253497481346],[125,245,71,-1.4714803770184517],[125,245,72,-1.4742652885615826],[125,245,73,-1.4771533571183681],[125,245,74,-1.4788605086505413],[125,245,75,-1.4788921177387238],[125,245,76,-1.4767175279557705],[125,245,77,-1.4723934903740883],[125,245,78,-1.4670681692659855],[125,245,79,-1.4615091904997826],[125,246,64,-1.4768096171319485],[125,246,65,-1.4785346873104572],[125,246,66,-1.4784241765737534],[125,246,67,-1.4772519171237946],[125,246,68,-1.4763120338320732],[125,246,69,-1.476541593670845],[125,246,70,-1.4776378497481346],[125,246,71,-1.4792928770184517],[125,246,72,-1.4820777885615826],[125,246,73,-1.4849658571183681],[125,246,74,-1.4866730086505413],[125,246,75,-1.4867046177387238],[125,246,76,-1.4845300279557705],[125,246,77,-1.4802059903740883],[125,246,78,-1.4748806692659855],[125,246,79,-1.4693216904997826],[125,247,64,-1.4846221171319485],[125,247,65,-1.4863471873104572],[125,247,66,-1.4862366765737534],[125,247,67,-1.4850644171237946],[125,247,68,-1.4841245338320732],[125,247,69,-1.484354093670845],[125,247,70,-1.4854503497481346],[125,247,71,-1.4871053770184517],[125,247,72,-1.4898902885615826],[125,247,73,-1.4927783571183681],[125,247,74,-1.4944855086505413],[125,247,75,-1.4945171177387238],[125,247,76,-1.4923425279557705],[125,247,77,-1.4880184903740883],[125,247,78,-1.4826931692659855],[125,247,79,-1.4771341904997826],[125,248,64,-1.4924346171319485],[125,248,65,-1.4941596873104572],[125,248,66,-1.4940491765737534],[125,248,67,-1.4928769171237946],[125,248,68,-1.4919370338320732],[125,248,69,-1.492166593670845],[125,248,70,-1.4932628497481346],[125,248,71,-1.4949178770184517],[125,248,72,-1.4977027885615826],[125,248,73,-1.5005908571183681],[125,248,74,-1.5022980086505413],[125,248,75,-1.5023296177387238],[125,248,76,-1.5001550279557705],[125,248,77,-1.4958309903740883],[125,248,78,-1.4905056692659855],[125,248,79,-1.4849466904997826],[125,249,64,-1.5002471171319485],[125,249,65,-1.5019721873104572],[125,249,66,-1.5018616765737534],[125,249,67,-1.5006894171237946],[125,249,68,-1.4997495338320732],[125,249,69,-1.499979093670845],[125,249,70,-1.5010753497481346],[125,249,71,-1.5027303770184517],[125,249,72,-1.5055152885615826],[125,249,73,-1.5084033571183681],[125,249,74,-1.5101105086505413],[125,249,75,-1.5101421177387238],[125,249,76,-1.5079675279557705],[125,249,77,-1.5036434903740883],[125,249,78,-1.4983181692659855],[125,249,79,-1.4927591904997826],[125,250,64,-1.5080596171319485],[125,250,65,-1.5097846873104572],[125,250,66,-1.5096741765737534],[125,250,67,-1.5085019171237946],[125,250,68,-1.5075620338320732],[125,250,69,-1.507791593670845],[125,250,70,-1.5088878497481346],[125,250,71,-1.5105428770184517],[125,250,72,-1.5133277885615826],[125,250,73,-1.5162158571183681],[125,250,74,-1.5179230086505413],[125,250,75,-1.5179546177387238],[125,250,76,-1.5157800279557705],[125,250,77,-1.5114559903740883],[125,250,78,-1.5061306692659855],[125,250,79,-1.5005716904997826],[125,251,64,-1.5158721171319485],[125,251,65,-1.5175971873104572],[125,251,66,-1.5174866765737534],[125,251,67,-1.5163144171237946],[125,251,68,-1.5153745338320732],[125,251,69,-1.515604093670845],[125,251,70,-1.5167003497481346],[125,251,71,-1.5183553770184517],[125,251,72,-1.5211402885615826],[125,251,73,-1.5240283571183681],[125,251,74,-1.5257355086505413],[125,251,75,-1.5257671177387238],[125,251,76,-1.5235925279557705],[125,251,77,-1.5192684903740883],[125,251,78,-1.5139431692659855],[125,251,79,-1.5083841904997826],[125,252,64,-1.5236846171319485],[125,252,65,-1.5254096873104572],[125,252,66,-1.5252991765737534],[125,252,67,-1.5241269171237946],[125,252,68,-1.5231870338320732],[125,252,69,-1.523416593670845],[125,252,70,-1.5245128497481346],[125,252,71,-1.5261678770184517],[125,252,72,-1.5289527885615826],[125,252,73,-1.5318408571183681],[125,252,74,-1.5335480086505413],[125,252,75,-1.5335796177387238],[125,252,76,-1.5314050279557705],[125,252,77,-1.5270809903740883],[125,252,78,-1.5217556692659855],[125,252,79,-1.5161966904997826],[125,253,64,-1.5314971171319485],[125,253,65,-1.5332221873104572],[125,253,66,-1.5331116765737534],[125,253,67,-1.5319394171237946],[125,253,68,-1.5309995338320732],[125,253,69,-1.531229093670845],[125,253,70,-1.5323253497481346],[125,253,71,-1.5339803770184517],[125,253,72,-1.5367652885615826],[125,253,73,-1.5396533571183681],[125,253,74,-1.5413605086505413],[125,253,75,-1.5413921177387238],[125,253,76,-1.5392175279557705],[125,253,77,-1.5348934903740883],[125,253,78,-1.5295681692659855],[125,253,79,-1.5240091904997826],[125,254,64,-1.5393096171319485],[125,254,65,-1.5410346873104572],[125,254,66,-1.5409241765737534],[125,254,67,-1.5397519171237946],[125,254,68,-1.5388120338320732],[125,254,69,-1.539041593670845],[125,254,70,-1.5401378497481346],[125,254,71,-1.5417928770184517],[125,254,72,-1.5445777885615826],[125,254,73,-1.5474658571183681],[125,254,74,-1.5491730086505413],[125,254,75,-1.5492046177387238],[125,254,76,-1.5470300279557705],[125,254,77,-1.5427059903740883],[125,254,78,-1.5373806692659855],[125,254,79,-1.5318216904997826],[125,255,64,-1.5471221171319485],[125,255,65,-1.5488471873104572],[125,255,66,-1.5487366765737534],[125,255,67,-1.5475644171237946],[125,255,68,-1.5466245338320732],[125,255,69,-1.546854093670845],[125,255,70,-1.5479503497481346],[125,255,71,-1.5496053770184517],[125,255,72,-1.5523902885615826],[125,255,73,-1.5552783571183681],[125,255,74,-1.5569855086505413],[125,255,75,-1.5570171177387238],[125,255,76,-1.5548425279557705],[125,255,77,-1.5505184903740883],[125,255,78,-1.5451931692659855],[125,255,79,-1.5396341904997826],[125,256,64,-1.5549346171319485],[125,256,65,-1.5566596873104572],[125,256,66,-1.5565491765737534],[125,256,67,-1.5553769171237946],[125,256,68,-1.5544370338320732],[125,256,69,-1.554666593670845],[125,256,70,-1.5557628497481346],[125,256,71,-1.5574178770184517],[125,256,72,-1.5602027885615826],[125,256,73,-1.5630908571183681],[125,256,74,-1.5647980086505413],[125,256,75,-1.5648296177387238],[125,256,76,-1.5626550279557705],[125,256,77,-1.5583309903740883],[125,256,78,-1.5530056692659855],[125,256,79,-1.5474466904997826],[125,257,64,-1.5627471171319485],[125,257,65,-1.5644721873104572],[125,257,66,-1.5643616765737534],[125,257,67,-1.5631894171237946],[125,257,68,-1.5622495338320732],[125,257,69,-1.562479093670845],[125,257,70,-1.5635753497481346],[125,257,71,-1.5652303770184517],[125,257,72,-1.5680152885615826],[125,257,73,-1.5709033571183681],[125,257,74,-1.5726105086505413],[125,257,75,-1.5726421177387238],[125,257,76,-1.5704675279557705],[125,257,77,-1.5661434903740883],[125,257,78,-1.5608181692659855],[125,257,79,-1.5552591904997826],[125,258,64,-1.5705596171319485],[125,258,65,-1.5722846873104572],[125,258,66,-1.5721741765737534],[125,258,67,-1.5710019171237946],[125,258,68,-1.5700620338320732],[125,258,69,-1.570291593670845],[125,258,70,-1.5713878497481346],[125,258,71,-1.5730428770184517],[125,258,72,-1.5758277885615826],[125,258,73,-1.5787158571183681],[125,258,74,-1.5804230086505413],[125,258,75,-1.5804546177387238],[125,258,76,-1.5782800279557705],[125,258,77,-1.5739559903740883],[125,258,78,-1.5686306692659855],[125,258,79,-1.5630716904997826],[125,259,64,-1.5783721171319485],[125,259,65,-1.5800971873104572],[125,259,66,-1.5799866765737534],[125,259,67,-1.5788144171237946],[125,259,68,-1.5778745338320732],[125,259,69,-1.578104093670845],[125,259,70,-1.5792003497481346],[125,259,71,-1.5808553770184517],[125,259,72,-1.5836402885615826],[125,259,73,-1.5865283571183681],[125,259,74,-1.5882355086505413],[125,259,75,-1.5882671177387238],[125,259,76,-1.5860925279557705],[125,259,77,-1.5817684903740883],[125,259,78,-1.5764431692659855],[125,259,79,-1.5708841904997826],[125,260,64,-1.5861846171319485],[125,260,65,-1.5879096873104572],[125,260,66,-1.5877991765737534],[125,260,67,-1.5866269171237946],[125,260,68,-1.5856870338320732],[125,260,69,-1.585916593670845],[125,260,70,-1.5870128497481346],[125,260,71,-1.5886678770184517],[125,260,72,-1.5914527885615826],[125,260,73,-1.5943408571183681],[125,260,74,-1.5960480086505413],[125,260,75,-1.5960796177387238],[125,260,76,-1.5939050279557705],[125,260,77,-1.5895809903740883],[125,260,78,-1.5842556692659855],[125,260,79,-1.5786966904997826],[125,261,64,-1.5939971171319485],[125,261,65,-1.5957221873104572],[125,261,66,-1.5956116765737534],[125,261,67,-1.5944394171237946],[125,261,68,-1.5934995338320732],[125,261,69,-1.593729093670845],[125,261,70,-1.5948253497481346],[125,261,71,-1.5964803770184517],[125,261,72,-1.5992652885615826],[125,261,73,-1.6021533571183681],[125,261,74,-1.6038605086505413],[125,261,75,-1.6038921177387238],[125,261,76,-1.6017175279557705],[125,261,77,-1.5973934903740883],[125,261,78,-1.5920681692659855],[125,261,79,-1.5865091904997826],[125,262,64,-1.6018096171319485],[125,262,65,-1.6035346873104572],[125,262,66,-1.6034241765737534],[125,262,67,-1.6022519171237946],[125,262,68,-1.6013120338320732],[125,262,69,-1.601541593670845],[125,262,70,-1.6026378497481346],[125,262,71,-1.6042928770184517],[125,262,72,-1.6070777885615826],[125,262,73,-1.6099658571183681],[125,262,74,-1.6116730086505413],[125,262,75,-1.6117046177387238],[125,262,76,-1.6095300279557705],[125,262,77,-1.6052059903740883],[125,262,78,-1.5998806692659855],[125,262,79,-1.5943216904997826],[125,263,64,-1.6096221171319485],[125,263,65,-1.6113471873104572],[125,263,66,-1.6112366765737534],[125,263,67,-1.6100644171237946],[125,263,68,-1.6091245338320732],[125,263,69,-1.609354093670845],[125,263,70,-1.6104503497481346],[125,263,71,-1.6121053770184517],[125,263,72,-1.6148902885615826],[125,263,73,-1.6177783571183681],[125,263,74,-1.6194855086505413],[125,263,75,-1.6195171177387238],[125,263,76,-1.6173425279557705],[125,263,77,-1.6130184903740883],[125,263,78,-1.6076931692659855],[125,263,79,-1.6021341904997826],[125,264,64,-1.6174346171319485],[125,264,65,-1.6191596873104572],[125,264,66,-1.6190491765737534],[125,264,67,-1.6178769171237946],[125,264,68,-1.6169370338320732],[125,264,69,-1.617166593670845],[125,264,70,-1.6182628497481346],[125,264,71,-1.6199178770184517],[125,264,72,-1.6227027885615826],[125,264,73,-1.6255908571183681],[125,264,74,-1.6272980086505413],[125,264,75,-1.6273296177387238],[125,264,76,-1.6251550279557705],[125,264,77,-1.6208309903740883],[125,264,78,-1.6155056692659855],[125,264,79,-1.6099466904997826],[125,265,64,-1.6252471171319485],[125,265,65,-1.6269721873104572],[125,265,66,-1.6268616765737534],[125,265,67,-1.6256894171237946],[125,265,68,-1.6247495338320732],[125,265,69,-1.624979093670845],[125,265,70,-1.6260753497481346],[125,265,71,-1.6277303770184517],[125,265,72,-1.6305152885615826],[125,265,73,-1.6334033571183681],[125,265,74,-1.6351105086505413],[125,265,75,-1.6351421177387238],[125,265,76,-1.6329675279557705],[125,265,77,-1.6286434903740883],[125,265,78,-1.6233181692659855],[125,265,79,-1.6177591904997826],[125,266,64,-1.6330596171319485],[125,266,65,-1.6347846873104572],[125,266,66,-1.6346741765737534],[125,266,67,-1.6335019171237946],[125,266,68,-1.6325620338320732],[125,266,69,-1.632791593670845],[125,266,70,-1.6338878497481346],[125,266,71,-1.6355428770184517],[125,266,72,-1.6383277885615826],[125,266,73,-1.6412158571183681],[125,266,74,-1.6429230086505413],[125,266,75,-1.6429546177387238],[125,266,76,-1.6407800279557705],[125,266,77,-1.6364559903740883],[125,266,78,-1.6311306692659855],[125,266,79,-1.6255716904997826],[125,267,64,-1.6408721171319485],[125,267,65,-1.6425971873104572],[125,267,66,-1.6424866765737534],[125,267,67,-1.6413144171237946],[125,267,68,-1.6403745338320732],[125,267,69,-1.640604093670845],[125,267,70,-1.6417003497481346],[125,267,71,-1.6433553770184517],[125,267,72,-1.6461402885615826],[125,267,73,-1.6490283571183681],[125,267,74,-1.6507355086505413],[125,267,75,-1.6507671177387238],[125,267,76,-1.6485925279557705],[125,267,77,-1.6442684903740883],[125,267,78,-1.6389431692659855],[125,267,79,-1.6333841904997826],[125,268,64,-1.6486846171319485],[125,268,65,-1.6504096873104572],[125,268,66,-1.6502991765737534],[125,268,67,-1.6491269171237946],[125,268,68,-1.6481870338320732],[125,268,69,-1.648416593670845],[125,268,70,-1.6495128497481346],[125,268,71,-1.6511678770184517],[125,268,72,-1.6539527885615826],[125,268,73,-1.6568408571183681],[125,268,74,-1.6585480086505413],[125,268,75,-1.6585796177387238],[125,268,76,-1.6564050279557705],[125,268,77,-1.6520809903740883],[125,268,78,-1.6467556692659855],[125,268,79,-1.6411966904997826],[125,269,64,-1.6564971171319485],[125,269,65,-1.6582221873104572],[125,269,66,-1.6581116765737534],[125,269,67,-1.6569394171237946],[125,269,68,-1.6559995338320732],[125,269,69,-1.656229093670845],[125,269,70,-1.6573253497481346],[125,269,71,-1.6589803770184517],[125,269,72,-1.6617652885615826],[125,269,73,-1.6646533571183681],[125,269,74,-1.6663605086505413],[125,269,75,-1.6663921177387238],[125,269,76,-1.6642175279557705],[125,269,77,-1.6598934903740883],[125,269,78,-1.6545681692659855],[125,269,79,-1.6490091904997826],[125,270,64,-1.6643096171319485],[125,270,65,-1.6660346873104572],[125,270,66,-1.6659241765737534],[125,270,67,-1.6647519171237946],[125,270,68,-1.6638120338320732],[125,270,69,-1.664041593670845],[125,270,70,-1.6651378497481346],[125,270,71,-1.6667928770184517],[125,270,72,-1.6695777885615826],[125,270,73,-1.6724658571183681],[125,270,74,-1.6741730086505413],[125,270,75,-1.6742046177387238],[125,270,76,-1.6720300279557705],[125,270,77,-1.6677059903740883],[125,270,78,-1.6623806692659855],[125,270,79,-1.6568216904997826],[125,271,64,-1.6721221171319485],[125,271,65,-1.6738471873104572],[125,271,66,-1.6737366765737534],[125,271,67,-1.6725644171237946],[125,271,68,-1.6716245338320732],[125,271,69,-1.671854093670845],[125,271,70,-1.6729503497481346],[125,271,71,-1.6746053770184517],[125,271,72,-1.6773902885615826],[125,271,73,-1.6802783571183681],[125,271,74,-1.6819855086505413],[125,271,75,-1.6820171177387238],[125,271,76,-1.6798425279557705],[125,271,77,-1.6755184903740883],[125,271,78,-1.6701931692659855],[125,271,79,-1.6646341904997826],[125,272,64,-1.6799346171319485],[125,272,65,-1.6816596873104572],[125,272,66,-1.6815491765737534],[125,272,67,-1.6803769171237946],[125,272,68,-1.6794370338320732],[125,272,69,-1.679666593670845],[125,272,70,-1.6807628497481346],[125,272,71,-1.6824178770184517],[125,272,72,-1.6852027885615826],[125,272,73,-1.6880908571183681],[125,272,74,-1.6897980086505413],[125,272,75,-1.6898296177387238],[125,272,76,-1.6876550279557705],[125,272,77,-1.6833309903740883],[125,272,78,-1.6780056692659855],[125,272,79,-1.6724466904997826],[125,273,64,-1.6877471171319485],[125,273,65,-1.6894721873104572],[125,273,66,-1.6893616765737534],[125,273,67,-1.6881894171237946],[125,273,68,-1.6872495338320732],[125,273,69,-1.687479093670845],[125,273,70,-1.6885753497481346],[125,273,71,-1.6902303770184517],[125,273,72,-1.6930152885615826],[125,273,73,-1.6959033571183681],[125,273,74,-1.6976105086505413],[125,273,75,-1.6976421177387238],[125,273,76,-1.6954675279557705],[125,273,77,-1.6911434903740883],[125,273,78,-1.6858181692659855],[125,273,79,-1.6802591904997826],[125,274,64,-1.6955596171319485],[125,274,65,-1.6972846873104572],[125,274,66,-1.6971741765737534],[125,274,67,-1.6960019171237946],[125,274,68,-1.6950620338320732],[125,274,69,-1.695291593670845],[125,274,70,-1.6963878497481346],[125,274,71,-1.6980428770184517],[125,274,72,-1.7008277885615826],[125,274,73,-1.7037158571183681],[125,274,74,-1.7054230086505413],[125,274,75,-1.7054546177387238],[125,274,76,-1.7032800279557705],[125,274,77,-1.6989559903740883],[125,274,78,-1.6936306692659855],[125,274,79,-1.6880716904997826],[125,275,64,-1.7033721171319485],[125,275,65,-1.7050971873104572],[125,275,66,-1.7049866765737534],[125,275,67,-1.7038144171237946],[125,275,68,-1.7028745338320732],[125,275,69,-1.703104093670845],[125,275,70,-1.7042003497481346],[125,275,71,-1.7058553770184517],[125,275,72,-1.7086402885615826],[125,275,73,-1.7115283571183681],[125,275,74,-1.7132355086505413],[125,275,75,-1.7132671177387238],[125,275,76,-1.7110925279557705],[125,275,77,-1.7067684903740883],[125,275,78,-1.7014431692659855],[125,275,79,-1.6958841904997826],[125,276,64,-1.7111846171319485],[125,276,65,-1.7129096873104572],[125,276,66,-1.7127991765737534],[125,276,67,-1.7116269171237946],[125,276,68,-1.7106870338320732],[125,276,69,-1.710916593670845],[125,276,70,-1.7120128497481346],[125,276,71,-1.7136678770184517],[125,276,72,-1.7164527885615826],[125,276,73,-1.7193408571183681],[125,276,74,-1.7210480086505413],[125,276,75,-1.7210796177387238],[125,276,76,-1.7189050279557705],[125,276,77,-1.7145809903740883],[125,276,78,-1.7092556692659855],[125,276,79,-1.7036966904997826],[125,277,64,-1.7189971171319485],[125,277,65,-1.7207221873104572],[125,277,66,-1.7206116765737534],[125,277,67,-1.7194394171237946],[125,277,68,-1.7184995338320732],[125,277,69,-1.718729093670845],[125,277,70,-1.7198253497481346],[125,277,71,-1.7214803770184517],[125,277,72,-1.7242652885615826],[125,277,73,-1.7271533571183681],[125,277,74,-1.7288605086505413],[125,277,75,-1.7288921177387238],[125,277,76,-1.7267175279557705],[125,277,77,-1.7223934903740883],[125,277,78,-1.7170681692659855],[125,277,79,-1.7115091904997826],[125,278,64,-1.7268096171319485],[125,278,65,-1.7285346873104572],[125,278,66,-1.7284241765737534],[125,278,67,-1.7272519171237946],[125,278,68,-1.7263120338320732],[125,278,69,-1.726541593670845],[125,278,70,-1.7276378497481346],[125,278,71,-1.7292928770184517],[125,278,72,-1.7320777885615826],[125,278,73,-1.7349658571183681],[125,278,74,-1.7366730086505413],[125,278,75,-1.7367046177387238],[125,278,76,-1.7345300279557705],[125,278,77,-1.7302059903740883],[125,278,78,-1.7248806692659855],[125,278,79,-1.7193216904997826],[125,279,64,-1.7346221171319485],[125,279,65,-1.7363471873104572],[125,279,66,-1.7362366765737534],[125,279,67,-1.7350644171237946],[125,279,68,-1.7341245338320732],[125,279,69,-1.734354093670845],[125,279,70,-1.7354503497481346],[125,279,71,-1.7371053770184517],[125,279,72,-1.7398902885615826],[125,279,73,-1.7427783571183681],[125,279,74,-1.7444855086505413],[125,279,75,-1.7445171177387238],[125,279,76,-1.7423425279557705],[125,279,77,-1.7380184903740883],[125,279,78,-1.7326931692659855],[125,279,79,-1.7271341904997826],[125,280,64,-1.7424346171319485],[125,280,65,-1.7441596873104572],[125,280,66,-1.7440491765737534],[125,280,67,-1.7428769171237946],[125,280,68,-1.7419370338320732],[125,280,69,-1.742166593670845],[125,280,70,-1.7432628497481346],[125,280,71,-1.7449178770184517],[125,280,72,-1.7477027885615826],[125,280,73,-1.7505908571183681],[125,280,74,-1.7522980086505413],[125,280,75,-1.7523296177387238],[125,280,76,-1.7501550279557705],[125,280,77,-1.7458309903740883],[125,280,78,-1.7405056692659855],[125,280,79,-1.7349466904997826],[125,281,64,-1.7502471171319485],[125,281,65,-1.7519721873104572],[125,281,66,-1.7518616765737534],[125,281,67,-1.7506894171237946],[125,281,68,-1.7497495338320732],[125,281,69,-1.749979093670845],[125,281,70,-1.7510753497481346],[125,281,71,-1.7527303770184517],[125,281,72,-1.7555152885615826],[125,281,73,-1.7584033571183681],[125,281,74,-1.7601105086505413],[125,281,75,-1.7601421177387238],[125,281,76,-1.7579675279557705],[125,281,77,-1.7536434903740883],[125,281,78,-1.7483181692659855],[125,281,79,-1.7427591904997826],[125,282,64,-1.7580596171319485],[125,282,65,-1.7597846873104572],[125,282,66,-1.7596741765737534],[125,282,67,-1.7585019171237946],[125,282,68,-1.7575620338320732],[125,282,69,-1.757791593670845],[125,282,70,-1.7588878497481346],[125,282,71,-1.7605428770184517],[125,282,72,-1.7633277885615826],[125,282,73,-1.7662158571183681],[125,282,74,-1.7679230086505413],[125,282,75,-1.7679546177387238],[125,282,76,-1.7657800279557705],[125,282,77,-1.7614559903740883],[125,282,78,-1.7561306692659855],[125,282,79,-1.7505716904997826],[125,283,64,-1.7658721171319485],[125,283,65,-1.7675971873104572],[125,283,66,-1.7674866765737534],[125,283,67,-1.7663144171237946],[125,283,68,-1.7653745338320732],[125,283,69,-1.765604093670845],[125,283,70,-1.7667003497481346],[125,283,71,-1.7683553770184517],[125,283,72,-1.7711402885615826],[125,283,73,-1.7740283571183681],[125,283,74,-1.7757355086505413],[125,283,75,-1.7757671177387238],[125,283,76,-1.7735925279557705],[125,283,77,-1.7692684903740883],[125,283,78,-1.7639431692659855],[125,283,79,-1.7583841904997826],[125,284,64,-1.7736846171319485],[125,284,65,-1.7754096873104572],[125,284,66,-1.7752991765737534],[125,284,67,-1.7741269171237946],[125,284,68,-1.7731870338320732],[125,284,69,-1.773416593670845],[125,284,70,-1.7745128497481346],[125,284,71,-1.7761678770184517],[125,284,72,-1.7789527885615826],[125,284,73,-1.7818408571183681],[125,284,74,-1.7835480086505413],[125,284,75,-1.7835796177387238],[125,284,76,-1.7814050279557705],[125,284,77,-1.7770809903740883],[125,284,78,-1.7717556692659855],[125,284,79,-1.7661966904997826],[125,285,64,-1.7814971171319485],[125,285,65,-1.7832221873104572],[125,285,66,-1.7831116765737534],[125,285,67,-1.7819394171237946],[125,285,68,-1.7809995338320732],[125,285,69,-1.781229093670845],[125,285,70,-1.7823253497481346],[125,285,71,-1.7839803770184517],[125,285,72,-1.7867652885615826],[125,285,73,-1.7896533571183681],[125,285,74,-1.7913605086505413],[125,285,75,-1.7913921177387238],[125,285,76,-1.7892175279557705],[125,285,77,-1.7848934903740883],[125,285,78,-1.7795681692659855],[125,285,79,-1.7740091904997826],[125,286,64,-1.7893096171319485],[125,286,65,-1.7910346873104572],[125,286,66,-1.7909241765737534],[125,286,67,-1.7897519171237946],[125,286,68,-1.7888120338320732],[125,286,69,-1.789041593670845],[125,286,70,-1.7901378497481346],[125,286,71,-1.7917928770184517],[125,286,72,-1.7945777885615826],[125,286,73,-1.7974658571183681],[125,286,74,-1.7991730086505413],[125,286,75,-1.7992046177387238],[125,286,76,-1.7970300279557705],[125,286,77,-1.7927059903740883],[125,286,78,-1.7873806692659855],[125,286,79,-1.7818216904997826],[125,287,64,-1.7971221171319485],[125,287,65,-1.7988471873104572],[125,287,66,-1.7987366765737534],[125,287,67,-1.7975644171237946],[125,287,68,-1.7966245338320732],[125,287,69,-1.796854093670845],[125,287,70,-1.7979503497481346],[125,287,71,-1.7996053770184517],[125,287,72,-1.8023902885615826],[125,287,73,-1.8052783571183681],[125,287,74,-1.8069855086505413],[125,287,75,-1.8070171177387238],[125,287,76,-1.8048425279557705],[125,287,77,-1.8005184903740883],[125,287,78,-1.7951931692659855],[125,287,79,-1.7896341904997826],[125,288,64,-1.8049346171319485],[125,288,65,-1.8066596873104572],[125,288,66,-1.8065491765737534],[125,288,67,-1.8053769171237946],[125,288,68,-1.8044370338320732],[125,288,69,-1.804666593670845],[125,288,70,-1.8057628497481346],[125,288,71,-1.8074178770184517],[125,288,72,-1.8102027885615826],[125,288,73,-1.8130908571183681],[125,288,74,-1.8147980086505413],[125,288,75,-1.8148296177387238],[125,288,76,-1.8126550279557705],[125,288,77,-1.8083309903740883],[125,288,78,-1.8030056692659855],[125,288,79,-1.7974466904997826],[125,289,64,-1.8127471171319485],[125,289,65,-1.8144721873104572],[125,289,66,-1.8143616765737534],[125,289,67,-1.8131894171237946],[125,289,68,-1.8122495338320732],[125,289,69,-1.812479093670845],[125,289,70,-1.8135753497481346],[125,289,71,-1.8152303770184517],[125,289,72,-1.8180152885615826],[125,289,73,-1.8209033571183681],[125,289,74,-1.8226105086505413],[125,289,75,-1.8226421177387238],[125,289,76,-1.8204675279557705],[125,289,77,-1.8161434903740883],[125,289,78,-1.8108181692659855],[125,289,79,-1.8052591904997826],[125,290,64,-1.8205596171319485],[125,290,65,-1.8222846873104572],[125,290,66,-1.8221741765737534],[125,290,67,-1.8210019171237946],[125,290,68,-1.8200620338320732],[125,290,69,-1.820291593670845],[125,290,70,-1.8213878497481346],[125,290,71,-1.8230428770184517],[125,290,72,-1.8258277885615826],[125,290,73,-1.8287158571183681],[125,290,74,-1.8304230086505413],[125,290,75,-1.8304546177387238],[125,290,76,-1.8282800279557705],[125,290,77,-1.8239559903740883],[125,290,78,-1.8186306692659855],[125,290,79,-1.8130716904997826],[125,291,64,-1.8283721171319485],[125,291,65,-1.8300971873104572],[125,291,66,-1.8299866765737534],[125,291,67,-1.8288144171237946],[125,291,68,-1.8278745338320732],[125,291,69,-1.828104093670845],[125,291,70,-1.8292003497481346],[125,291,71,-1.8308553770184517],[125,291,72,-1.8336402885615826],[125,291,73,-1.8365283571183681],[125,291,74,-1.8382355086505413],[125,291,75,-1.8382671177387238],[125,291,76,-1.8360925279557705],[125,291,77,-1.8317684903740883],[125,291,78,-1.8264431692659855],[125,291,79,-1.8208841904997826],[125,292,64,-1.8361846171319485],[125,292,65,-1.8379096873104572],[125,292,66,-1.8377991765737534],[125,292,67,-1.8366269171237946],[125,292,68,-1.8356870338320732],[125,292,69,-1.835916593670845],[125,292,70,-1.8370128497481346],[125,292,71,-1.8386678770184517],[125,292,72,-1.8414527885615826],[125,292,73,-1.8443408571183681],[125,292,74,-1.8460480086505413],[125,292,75,-1.8460796177387238],[125,292,76,-1.8439050279557705],[125,292,77,-1.8395809903740883],[125,292,78,-1.8342556692659855],[125,292,79,-1.8286966904997826],[125,293,64,-1.8439971171319485],[125,293,65,-1.8457221873104572],[125,293,66,-1.8456116765737534],[125,293,67,-1.8444394171237946],[125,293,68,-1.8434995338320732],[125,293,69,-1.843729093670845],[125,293,70,-1.8448253497481346],[125,293,71,-1.8464803770184517],[125,293,72,-1.8492652885615826],[125,293,73,-1.8521533571183681],[125,293,74,-1.8538605086505413],[125,293,75,-1.8538921177387238],[125,293,76,-1.8517175279557705],[125,293,77,-1.8473934903740883],[125,293,78,-1.8420681692659855],[125,293,79,-1.8365091904997826],[125,294,64,-1.8518096171319485],[125,294,65,-1.8535346873104572],[125,294,66,-1.8534241765737534],[125,294,67,-1.8522519171237946],[125,294,68,-1.8513120338320732],[125,294,69,-1.851541593670845],[125,294,70,-1.8526378497481346],[125,294,71,-1.8542928770184517],[125,294,72,-1.8570777885615826],[125,294,73,-1.8599658571183681],[125,294,74,-1.8616730086505413],[125,294,75,-1.8617046177387238],[125,294,76,-1.8595300279557705],[125,294,77,-1.8552059903740883],[125,294,78,-1.8498806692659855],[125,294,79,-1.8443216904997826],[125,295,64,-1.8596221171319485],[125,295,65,-1.8613471873104572],[125,295,66,-1.8612366765737534],[125,295,67,-1.8600644171237946],[125,295,68,-1.8591245338320732],[125,295,69,-1.859354093670845],[125,295,70,-1.8604503497481346],[125,295,71,-1.8621053770184517],[125,295,72,-1.8648902885615826],[125,295,73,-1.8677783571183681],[125,295,74,-1.8694855086505413],[125,295,75,-1.8695171177387238],[125,295,76,-1.8673425279557705],[125,295,77,-1.8630184903740883],[125,295,78,-1.8576931692659855],[125,295,79,-1.8521341904997826],[125,296,64,-1.8674346171319485],[125,296,65,-1.8691596873104572],[125,296,66,-1.8690491765737534],[125,296,67,-1.8678769171237946],[125,296,68,-1.8669370338320732],[125,296,69,-1.867166593670845],[125,296,70,-1.8682628497481346],[125,296,71,-1.8699178770184517],[125,296,72,-1.8727027885615826],[125,296,73,-1.8755908571183681],[125,296,74,-1.8772980086505413],[125,296,75,-1.8773296177387238],[125,296,76,-1.8751550279557705],[125,296,77,-1.8708309903740883],[125,296,78,-1.8655056692659855],[125,296,79,-1.8599466904997826],[125,297,64,-1.8752471171319485],[125,297,65,-1.8769721873104572],[125,297,66,-1.8768616765737534],[125,297,67,-1.8756894171237946],[125,297,68,-1.8747495338320732],[125,297,69,-1.874979093670845],[125,297,70,-1.8760753497481346],[125,297,71,-1.8777303770184517],[125,297,72,-1.8805152885615826],[125,297,73,-1.8834033571183681],[125,297,74,-1.8851105086505413],[125,297,75,-1.8851421177387238],[125,297,76,-1.8829675279557705],[125,297,77,-1.8786434903740883],[125,297,78,-1.8733181692659855],[125,297,79,-1.8677591904997826],[125,298,64,-1.8830596171319485],[125,298,65,-1.8847846873104572],[125,298,66,-1.8846741765737534],[125,298,67,-1.8835019171237946],[125,298,68,-1.8825620338320732],[125,298,69,-1.882791593670845],[125,298,70,-1.8838878497481346],[125,298,71,-1.8855428770184517],[125,298,72,-1.8883277885615826],[125,298,73,-1.8912158571183681],[125,298,74,-1.8929230086505413],[125,298,75,-1.8929546177387238],[125,298,76,-1.8907800279557705],[125,298,77,-1.8864559903740883],[125,298,78,-1.8811306692659855],[125,298,79,-1.8755716904997826],[125,299,64,-1.8908721171319485],[125,299,65,-1.8925971873104572],[125,299,66,-1.8924866765737534],[125,299,67,-1.8913144171237946],[125,299,68,-1.8903745338320732],[125,299,69,-1.890604093670845],[125,299,70,-1.8917003497481346],[125,299,71,-1.8933553770184517],[125,299,72,-1.8961402885615826],[125,299,73,-1.8990283571183681],[125,299,74,-1.9007355086505413],[125,299,75,-1.9007671177387238],[125,299,76,-1.8985925279557705],[125,299,77,-1.8942684903740883],[125,299,78,-1.8889431692659855],[125,299,79,-1.8833841904997826],[125,300,64,-1.8986846171319485],[125,300,65,-1.9004096873104572],[125,300,66,-1.9002991765737534],[125,300,67,-1.8991269171237946],[125,300,68,-1.8981870338320732],[125,300,69,-1.898416593670845],[125,300,70,-1.8995128497481346],[125,300,71,-1.9011678770184517],[125,300,72,-1.9039527885615826],[125,300,73,-1.9068408571183681],[125,300,74,-1.9085480086505413],[125,300,75,-1.9085796177387238],[125,300,76,-1.9064050279557705],[125,300,77,-1.9020809903740883],[125,300,78,-1.8967556692659855],[125,300,79,-1.8911966904997826],[125,301,64,-1.9064971171319485],[125,301,65,-1.9082221873104572],[125,301,66,-1.9081116765737534],[125,301,67,-1.9069394171237946],[125,301,68,-1.9059995338320732],[125,301,69,-1.906229093670845],[125,301,70,-1.9073253497481346],[125,301,71,-1.9089803770184517],[125,301,72,-1.9117652885615826],[125,301,73,-1.9146533571183681],[125,301,74,-1.9163605086505413],[125,301,75,-1.9163921177387238],[125,301,76,-1.9142175279557705],[125,301,77,-1.9098934903740883],[125,301,78,-1.9045681692659855],[125,301,79,-1.8990091904997826],[125,302,64,-1.9143096171319485],[125,302,65,-1.9160346873104572],[125,302,66,-1.9159241765737534],[125,302,67,-1.9147519171237946],[125,302,68,-1.9138120338320732],[125,302,69,-1.914041593670845],[125,302,70,-1.9151378497481346],[125,302,71,-1.9167928770184517],[125,302,72,-1.9195777885615826],[125,302,73,-1.9224658571183681],[125,302,74,-1.9241730086505413],[125,302,75,-1.9242046177387238],[125,302,76,-1.9220300279557705],[125,302,77,-1.9177059903740883],[125,302,78,-1.9123806692659855],[125,302,79,-1.9068216904997826],[125,303,64,-1.9221221171319485],[125,303,65,-1.9238471873104572],[125,303,66,-1.9237366765737534],[125,303,67,-1.9225644171237946],[125,303,68,-1.9216245338320732],[125,303,69,-1.921854093670845],[125,303,70,-1.9229503497481346],[125,303,71,-1.9246053770184517],[125,303,72,-1.9273902885615826],[125,303,73,-1.9302783571183681],[125,303,74,-1.9319855086505413],[125,303,75,-1.9320171177387238],[125,303,76,-1.9298425279557705],[125,303,77,-1.9255184903740883],[125,303,78,-1.9201931692659855],[125,303,79,-1.9146341904997826],[125,304,64,-1.9299346171319485],[125,304,65,-1.9316596873104572],[125,304,66,-1.9315491765737534],[125,304,67,-1.9303769171237946],[125,304,68,-1.9294370338320732],[125,304,69,-1.929666593670845],[125,304,70,-1.9307628497481346],[125,304,71,-1.9324178770184517],[125,304,72,-1.9352027885615826],[125,304,73,-1.9380908571183681],[125,304,74,-1.9397980086505413],[125,304,75,-1.9398296177387238],[125,304,76,-1.9376550279557705],[125,304,77,-1.9333309903740883],[125,304,78,-1.9280056692659855],[125,304,79,-1.9224466904997826],[125,305,64,-1.9377471171319485],[125,305,65,-1.9394721873104572],[125,305,66,-1.9393616765737534],[125,305,67,-1.9381894171237946],[125,305,68,-1.9372495338320732],[125,305,69,-1.937479093670845],[125,305,70,-1.9385753497481346],[125,305,71,-1.9402303770184517],[125,305,72,-1.9430152885615826],[125,305,73,-1.9459033571183681],[125,305,74,-1.9476105086505413],[125,305,75,-1.9476421177387238],[125,305,76,-1.9454675279557705],[125,305,77,-1.9411434903740883],[125,305,78,-1.9358181692659855],[125,305,79,-1.9302591904997826],[125,306,64,-1.9455596171319485],[125,306,65,-1.9472846873104572],[125,306,66,-1.9471741765737534],[125,306,67,-1.9460019171237946],[125,306,68,-1.9450620338320732],[125,306,69,-1.945291593670845],[125,306,70,-1.9463878497481346],[125,306,71,-1.9480428770184517],[125,306,72,-1.9508277885615826],[125,306,73,-1.9537158571183681],[125,306,74,-1.9554230086505413],[125,306,75,-1.9554546177387238],[125,306,76,-1.9532800279557705],[125,306,77,-1.9489559903740883],[125,306,78,-1.9436306692659855],[125,306,79,-1.9380716904997826],[125,307,64,-1.9533721171319485],[125,307,65,-1.9550971873104572],[125,307,66,-1.9549866765737534],[125,307,67,-1.9538144171237946],[125,307,68,-1.9528745338320732],[125,307,69,-1.953104093670845],[125,307,70,-1.9542003497481346],[125,307,71,-1.9558553770184517],[125,307,72,-1.9586402885615826],[125,307,73,-1.9615283571183681],[125,307,74,-1.9632355086505413],[125,307,75,-1.9632671177387238],[125,307,76,-1.9610925279557705],[125,307,77,-1.9567684903740883],[125,307,78,-1.9514431692659855],[125,307,79,-1.9458841904997826],[125,308,64,-1.9611846171319485],[125,308,65,-1.9629096873104572],[125,308,66,-1.9627991765737534],[125,308,67,-1.9616269171237946],[125,308,68,-1.9606870338320732],[125,308,69,-1.960916593670845],[125,308,70,-1.9620128497481346],[125,308,71,-1.9636678770184517],[125,308,72,-1.9664527885615826],[125,308,73,-1.9693408571183681],[125,308,74,-1.9710480086505413],[125,308,75,-1.9710796177387238],[125,308,76,-1.9689050279557705],[125,308,77,-1.9645809903740883],[125,308,78,-1.9592556692659855],[125,308,79,-1.9536966904997826],[125,309,64,-1.9689971171319485],[125,309,65,-1.9707221873104572],[125,309,66,-1.9706116765737534],[125,309,67,-1.9694394171237946],[125,309,68,-1.9684995338320732],[125,309,69,-1.968729093670845],[125,309,70,-1.9698253497481346],[125,309,71,-1.9714803770184517],[125,309,72,-1.9742652885615826],[125,309,73,-1.9771533571183681],[125,309,74,-1.9788605086505413],[125,309,75,-1.9788921177387238],[125,309,76,-1.9767175279557705],[125,309,77,-1.9723934903740883],[125,309,78,-1.9670681692659855],[125,309,79,-1.9615091904997826],[125,310,64,-1.9768096171319485],[125,310,65,-1.9785346873104572],[125,310,66,-1.9784241765737534],[125,310,67,-1.9772519171237946],[125,310,68,-1.9763120338320732],[125,310,69,-1.976541593670845],[125,310,70,-1.9776378497481346],[125,310,71,-1.9792928770184517],[125,310,72,-1.9820777885615826],[125,310,73,-1.9849658571183681],[125,310,74,-1.9866730086505413],[125,310,75,-1.9867046177387238],[125,310,76,-1.9845300279557705],[125,310,77,-1.9802059903740883],[125,310,78,-1.9748806692659855],[125,310,79,-1.9693216904997826],[125,311,64,-1.9846221171319485],[125,311,65,-1.9863471873104572],[125,311,66,-1.9862366765737534],[125,311,67,-1.9850644171237946],[125,311,68,-1.9841245338320732],[125,311,69,-1.984354093670845],[125,311,70,-1.9854503497481346],[125,311,71,-1.9871053770184517],[125,311,72,-1.9898902885615826],[125,311,73,-1.9927783571183681],[125,311,74,-1.9944855086505413],[125,311,75,-1.9945171177387238],[125,311,76,-1.9923425279557705],[125,311,77,-1.9880184903740883],[125,311,78,-1.9826931692659855],[125,311,79,-1.9771341904997826],[125,312,64,-1.9924346171319485],[125,312,65,-1.9941596873104572],[125,312,66,-1.9940491765737534],[125,312,67,-1.9928769171237946],[125,312,68,-1.9919370338320732],[125,312,69,-1.992166593670845],[125,312,70,-1.9932628497481346],[125,312,71,-1.9949178770184517],[125,312,72,-1.9977027885615826],[125,312,73,-2.000590857118368],[125,312,74,-2.0022980086505413],[125,312,75,-2.0023296177387238],[125,312,76,-2.0001550279557705],[125,312,77,-1.9958309903740883],[125,312,78,-1.9905056692659855],[125,312,79,-1.9849466904997826],[125,313,64,-2.0002471171319485],[125,313,65,-2.0019721873104572],[125,313,66,-2.0018616765737534],[125,313,67,-2.0006894171237946],[125,313,68,-1.9997495338320732],[125,313,69,-1.999979093670845],[125,313,70,-2.0010753497481346],[125,313,71,-2.0027303770184517],[125,313,72,-2.0055152885615826],[125,313,73,-2.008403357118368],[125,313,74,-2.0101105086505413],[125,313,75,-2.0101421177387238],[125,313,76,-2.0079675279557705],[125,313,77,-2.0036434903740883],[125,313,78,-1.9983181692659855],[125,313,79,-1.9927591904997826],[125,314,64,-2.0080596171319485],[125,314,65,-2.0097846873104572],[125,314,66,-2.0096741765737534],[125,314,67,-2.0085019171237946],[125,314,68,-2.007562033832073],[125,314,69,-2.007791593670845],[125,314,70,-2.0088878497481346],[125,314,71,-2.0105428770184517],[125,314,72,-2.0133277885615826],[125,314,73,-2.016215857118368],[125,314,74,-2.0179230086505413],[125,314,75,-2.0179546177387238],[125,314,76,-2.0157800279557705],[125,314,77,-2.0114559903740883],[125,314,78,-2.0061306692659855],[125,314,79,-2.0005716904997826],[125,315,64,-2.0158721171319485],[125,315,65,-2.0175971873104572],[125,315,66,-2.0174866765737534],[125,315,67,-2.0163144171237946],[125,315,68,-2.015374533832073],[125,315,69,-2.015604093670845],[125,315,70,-2.0167003497481346],[125,315,71,-2.0183553770184517],[125,315,72,-2.0211402885615826],[125,315,73,-2.024028357118368],[125,315,74,-2.0257355086505413],[125,315,75,-2.0257671177387238],[125,315,76,-2.0235925279557705],[125,315,77,-2.0192684903740883],[125,315,78,-2.0139431692659855],[125,315,79,-2.0083841904997826],[125,316,64,-2.0236846171319485],[125,316,65,-2.0254096873104572],[125,316,66,-2.0252991765737534],[125,316,67,-2.0241269171237946],[125,316,68,-2.023187033832073],[125,316,69,-2.023416593670845],[125,316,70,-2.0245128497481346],[125,316,71,-2.0261678770184517],[125,316,72,-2.0289527885615826],[125,316,73,-2.031840857118368],[125,316,74,-2.0335480086505413],[125,316,75,-2.0335796177387238],[125,316,76,-2.0314050279557705],[125,316,77,-2.0270809903740883],[125,316,78,-2.0217556692659855],[125,316,79,-2.0161966904997826],[125,317,64,-2.0314971171319485],[125,317,65,-2.0332221873104572],[125,317,66,-2.0331116765737534],[125,317,67,-2.0319394171237946],[125,317,68,-2.030999533832073],[125,317,69,-2.031229093670845],[125,317,70,-2.0323253497481346],[125,317,71,-2.0339803770184517],[125,317,72,-2.0367652885615826],[125,317,73,-2.039653357118368],[125,317,74,-2.0413605086505413],[125,317,75,-2.0413921177387238],[125,317,76,-2.0392175279557705],[125,317,77,-2.0348934903740883],[125,317,78,-2.0295681692659855],[125,317,79,-2.0240091904997826],[125,318,64,-2.0393096171319485],[125,318,65,-2.0410346873104572],[125,318,66,-2.0409241765737534],[125,318,67,-2.0397519171237946],[125,318,68,-2.038812033832073],[125,318,69,-2.039041593670845],[125,318,70,-2.0401378497481346],[125,318,71,-2.0417928770184517],[125,318,72,-2.0445777885615826],[125,318,73,-2.047465857118368],[125,318,74,-2.0491730086505413],[125,318,75,-2.0492046177387238],[125,318,76,-2.0470300279557705],[125,318,77,-2.0427059903740883],[125,318,78,-2.0373806692659855],[125,318,79,-2.0318216904997826],[125,319,64,-2.0471221171319485],[125,319,65,-2.0488471873104572],[125,319,66,-2.0487366765737534],[125,319,67,-2.0475644171237946],[125,319,68,-2.046624533832073],[125,319,69,-2.046854093670845],[125,319,70,-2.0479503497481346],[125,319,71,-2.0496053770184517],[125,319,72,-2.0523902885615826],[125,319,73,-2.055278357118368],[125,319,74,-2.0569855086505413],[125,319,75,-2.0570171177387238],[125,319,76,-2.0548425279557705],[125,319,77,-2.0505184903740883],[125,319,78,-2.0451931692659855],[125,319,79,-2.0396341904997826],[126,-64,64,0.9451941885054111],[126,-64,65,0.9429174065589905],[126,-64,66,0.9423899687826633],[126,-64,67,0.943143043667078],[126,-64,68,0.9440954476594925],[126,-64,69,0.9443206898868084],[126,-64,70,0.9439154528081417],[126,-64,71,0.9429359063506126],[126,-64,72,0.9406096488237381],[126,-64,73,0.9376913495361805],[126,-64,74,0.935717448592186],[126,-64,75,0.9355251491069794],[126,-64,76,0.9376022107899189],[126,-64,77,0.9419238455593586],[126,-64,78,0.9473614357411861],[126,-64,79,0.9529848955571651],[126,-63,64,0.9373816885054111],[126,-63,65,0.9351049065589905],[126,-63,66,0.9345774687826633],[126,-63,67,0.935330543667078],[126,-63,68,0.9362829476594925],[126,-63,69,0.9365081898868084],[126,-63,70,0.9361029528081417],[126,-63,71,0.9351234063506126],[126,-63,72,0.9327971488237381],[126,-63,73,0.9298788495361805],[126,-63,74,0.927904948592186],[126,-63,75,0.9277126491069794],[126,-63,76,0.9297897107899189],[126,-63,77,0.9341113455593586],[126,-63,78,0.9395489357411861],[126,-63,79,0.9451723955571651],[126,-62,64,0.9295691885054111],[126,-62,65,0.9272924065589905],[126,-62,66,0.9267649687826633],[126,-62,67,0.927518043667078],[126,-62,68,0.9284704476594925],[126,-62,69,0.9286956898868084],[126,-62,70,0.9282904528081417],[126,-62,71,0.9273109063506126],[126,-62,72,0.9249846488237381],[126,-62,73,0.9220663495361805],[126,-62,74,0.920092448592186],[126,-62,75,0.9199001491069794],[126,-62,76,0.9219772107899189],[126,-62,77,0.9262988455593586],[126,-62,78,0.9317364357411861],[126,-62,79,0.9373598955571651],[126,-61,64,0.9217566885054111],[126,-61,65,0.9194799065589905],[126,-61,66,0.9189524687826633],[126,-61,67,0.919705543667078],[126,-61,68,0.9206579476594925],[126,-61,69,0.9208831898868084],[126,-61,70,0.9204779528081417],[126,-61,71,0.9194984063506126],[126,-61,72,0.9171721488237381],[126,-61,73,0.9142538495361805],[126,-61,74,0.912279948592186],[126,-61,75,0.9120876491069794],[126,-61,76,0.9141647107899189],[126,-61,77,0.9184863455593586],[126,-61,78,0.9239239357411861],[126,-61,79,0.9295473955571651],[126,-60,64,0.9139441885054111],[126,-60,65,0.9116674065589905],[126,-60,66,0.9111399687826633],[126,-60,67,0.911893043667078],[126,-60,68,0.9128454476594925],[126,-60,69,0.9130706898868084],[126,-60,70,0.9126654528081417],[126,-60,71,0.9116859063506126],[126,-60,72,0.9093596488237381],[126,-60,73,0.9064413495361805],[126,-60,74,0.904467448592186],[126,-60,75,0.9042751491069794],[126,-60,76,0.9063522107899189],[126,-60,77,0.9106738455593586],[126,-60,78,0.9161114357411861],[126,-60,79,0.9217348955571651],[126,-59,64,0.9061316885054111],[126,-59,65,0.9038549065589905],[126,-59,66,0.9033274687826633],[126,-59,67,0.904080543667078],[126,-59,68,0.9050329476594925],[126,-59,69,0.9052581898868084],[126,-59,70,0.9048529528081417],[126,-59,71,0.9038734063506126],[126,-59,72,0.9015471488237381],[126,-59,73,0.8986288495361805],[126,-59,74,0.896654948592186],[126,-59,75,0.8964626491069794],[126,-59,76,0.8985397107899189],[126,-59,77,0.9028613455593586],[126,-59,78,0.9082989357411861],[126,-59,79,0.9139223955571651],[126,-58,64,0.8983191885054111],[126,-58,65,0.8960424065589905],[126,-58,66,0.8955149687826633],[126,-58,67,0.896268043667078],[126,-58,68,0.8972204476594925],[126,-58,69,0.8974456898868084],[126,-58,70,0.8970404528081417],[126,-58,71,0.8960609063506126],[126,-58,72,0.8937346488237381],[126,-58,73,0.8908163495361805],[126,-58,74,0.888842448592186],[126,-58,75,0.8886501491069794],[126,-58,76,0.8907272107899189],[126,-58,77,0.8950488455593586],[126,-58,78,0.9004864357411861],[126,-58,79,0.9061098955571651],[126,-57,64,0.8905066885054111],[126,-57,65,0.8882299065589905],[126,-57,66,0.8877024687826633],[126,-57,67,0.888455543667078],[126,-57,68,0.8894079476594925],[126,-57,69,0.8896331898868084],[126,-57,70,0.8892279528081417],[126,-57,71,0.8882484063506126],[126,-57,72,0.8859221488237381],[126,-57,73,0.8830038495361805],[126,-57,74,0.881029948592186],[126,-57,75,0.8808376491069794],[126,-57,76,0.8829147107899189],[126,-57,77,0.8872363455593586],[126,-57,78,0.8926739357411861],[126,-57,79,0.8982973955571651],[126,-56,64,0.8826941885054111],[126,-56,65,0.8804174065589905],[126,-56,66,0.8798899687826633],[126,-56,67,0.880643043667078],[126,-56,68,0.8815954476594925],[126,-56,69,0.8818206898868084],[126,-56,70,0.8814154528081417],[126,-56,71,0.8804359063506126],[126,-56,72,0.8781096488237381],[126,-56,73,0.8751913495361805],[126,-56,74,0.873217448592186],[126,-56,75,0.8730251491069794],[126,-56,76,0.8751022107899189],[126,-56,77,0.8794238455593586],[126,-56,78,0.8848614357411861],[126,-56,79,0.8904848955571651],[126,-55,64,0.8748816885054111],[126,-55,65,0.8726049065589905],[126,-55,66,0.8720774687826633],[126,-55,67,0.872830543667078],[126,-55,68,0.8737829476594925],[126,-55,69,0.8740081898868084],[126,-55,70,0.8736029528081417],[126,-55,71,0.8726234063506126],[126,-55,72,0.8702971488237381],[126,-55,73,0.8673788495361805],[126,-55,74,0.865404948592186],[126,-55,75,0.8652126491069794],[126,-55,76,0.8672897107899189],[126,-55,77,0.8716113455593586],[126,-55,78,0.8770489357411861],[126,-55,79,0.8826723955571651],[126,-54,64,0.8670691885054111],[126,-54,65,0.8647924065589905],[126,-54,66,0.8642649687826633],[126,-54,67,0.865018043667078],[126,-54,68,0.8659704476594925],[126,-54,69,0.8661956898868084],[126,-54,70,0.8657904528081417],[126,-54,71,0.8648109063506126],[126,-54,72,0.8624846488237381],[126,-54,73,0.8595663495361805],[126,-54,74,0.857592448592186],[126,-54,75,0.8574001491069794],[126,-54,76,0.8594772107899189],[126,-54,77,0.8637988455593586],[126,-54,78,0.8692364357411861],[126,-54,79,0.8748598955571651],[126,-53,64,0.8592566885054111],[126,-53,65,0.8569799065589905],[126,-53,66,0.8564524687826633],[126,-53,67,0.857205543667078],[126,-53,68,0.8581579476594925],[126,-53,69,0.8583831898868084],[126,-53,70,0.8579779528081417],[126,-53,71,0.8569984063506126],[126,-53,72,0.8546721488237381],[126,-53,73,0.8517538495361805],[126,-53,74,0.849779948592186],[126,-53,75,0.8495876491069794],[126,-53,76,0.8516647107899189],[126,-53,77,0.8559863455593586],[126,-53,78,0.8614239357411861],[126,-53,79,0.8670473955571651],[126,-52,64,0.8514441885054111],[126,-52,65,0.8491674065589905],[126,-52,66,0.8486399687826633],[126,-52,67,0.849393043667078],[126,-52,68,0.8503454476594925],[126,-52,69,0.8505706898868084],[126,-52,70,0.8501654528081417],[126,-52,71,0.8491859063506126],[126,-52,72,0.8468596488237381],[126,-52,73,0.8439413495361805],[126,-52,74,0.841967448592186],[126,-52,75,0.8417751491069794],[126,-52,76,0.8438522107899189],[126,-52,77,0.8481738455593586],[126,-52,78,0.8536114357411861],[126,-52,79,0.8592348955571651],[126,-51,64,0.8436316885054111],[126,-51,65,0.8413549065589905],[126,-51,66,0.8408274687826633],[126,-51,67,0.841580543667078],[126,-51,68,0.8425329476594925],[126,-51,69,0.8427581898868084],[126,-51,70,0.8423529528081417],[126,-51,71,0.8413734063506126],[126,-51,72,0.8390471488237381],[126,-51,73,0.8361288495361805],[126,-51,74,0.834154948592186],[126,-51,75,0.8339626491069794],[126,-51,76,0.8360397107899189],[126,-51,77,0.8403613455593586],[126,-51,78,0.8457989357411861],[126,-51,79,0.8514223955571651],[126,-50,64,0.8358191885054111],[126,-50,65,0.8335424065589905],[126,-50,66,0.8330149687826633],[126,-50,67,0.833768043667078],[126,-50,68,0.8347204476594925],[126,-50,69,0.8349456898868084],[126,-50,70,0.8345404528081417],[126,-50,71,0.8335609063506126],[126,-50,72,0.8312346488237381],[126,-50,73,0.8283163495361805],[126,-50,74,0.826342448592186],[126,-50,75,0.8261501491069794],[126,-50,76,0.8282272107899189],[126,-50,77,0.8325488455593586],[126,-50,78,0.8379864357411861],[126,-50,79,0.8436098955571651],[126,-49,64,0.8280066885054111],[126,-49,65,0.8257299065589905],[126,-49,66,0.8252024687826633],[126,-49,67,0.825955543667078],[126,-49,68,0.8269079476594925],[126,-49,69,0.8271331898868084],[126,-49,70,0.8267279528081417],[126,-49,71,0.8257484063506126],[126,-49,72,0.8234221488237381],[126,-49,73,0.8205038495361805],[126,-49,74,0.818529948592186],[126,-49,75,0.8183376491069794],[126,-49,76,0.8204147107899189],[126,-49,77,0.8247363455593586],[126,-49,78,0.8301739357411861],[126,-49,79,0.8357973955571651],[126,-48,64,0.8201941885054111],[126,-48,65,0.8179174065589905],[126,-48,66,0.8173899687826633],[126,-48,67,0.818143043667078],[126,-48,68,0.8190954476594925],[126,-48,69,0.8193206898868084],[126,-48,70,0.8189154528081417],[126,-48,71,0.8179359063506126],[126,-48,72,0.8156096488237381],[126,-48,73,0.8126913495361805],[126,-48,74,0.810717448592186],[126,-48,75,0.8105251491069794],[126,-48,76,0.8126022107899189],[126,-48,77,0.8169238455593586],[126,-48,78,0.8223614357411861],[126,-48,79,0.8279848955571651],[126,-47,64,0.8123816885054111],[126,-47,65,0.8101049065589905],[126,-47,66,0.8095774687826633],[126,-47,67,0.810330543667078],[126,-47,68,0.8112829476594925],[126,-47,69,0.8115081898868084],[126,-47,70,0.8111029528081417],[126,-47,71,0.8101234063506126],[126,-47,72,0.8077971488237381],[126,-47,73,0.8048788495361805],[126,-47,74,0.802904948592186],[126,-47,75,0.8027126491069794],[126,-47,76,0.8047897107899189],[126,-47,77,0.8091113455593586],[126,-47,78,0.8145489357411861],[126,-47,79,0.8201723955571651],[126,-46,64,0.8045691885054111],[126,-46,65,0.8022924065589905],[126,-46,66,0.8017649687826633],[126,-46,67,0.802518043667078],[126,-46,68,0.8034704476594925],[126,-46,69,0.8036956898868084],[126,-46,70,0.8032904528081417],[126,-46,71,0.8023109063506126],[126,-46,72,0.7999846488237381],[126,-46,73,0.7970663495361805],[126,-46,74,0.795092448592186],[126,-46,75,0.7949001491069794],[126,-46,76,0.7969772107899189],[126,-46,77,0.8012988455593586],[126,-46,78,0.8067364357411861],[126,-46,79,0.8123598955571651],[126,-45,64,0.7967566885054111],[126,-45,65,0.7944799065589905],[126,-45,66,0.7939524687826633],[126,-45,67,0.794705543667078],[126,-45,68,0.7956579476594925],[126,-45,69,0.7958831898868084],[126,-45,70,0.7954779528081417],[126,-45,71,0.7944984063506126],[126,-45,72,0.7921721488237381],[126,-45,73,0.7892538495361805],[126,-45,74,0.787279948592186],[126,-45,75,0.7870876491069794],[126,-45,76,0.7891647107899189],[126,-45,77,0.7934863455593586],[126,-45,78,0.7989239357411861],[126,-45,79,0.8045473955571651],[126,-44,64,0.7889441885054111],[126,-44,65,0.7866674065589905],[126,-44,66,0.7861399687826633],[126,-44,67,0.786893043667078],[126,-44,68,0.7878454476594925],[126,-44,69,0.7880706898868084],[126,-44,70,0.7876654528081417],[126,-44,71,0.7866859063506126],[126,-44,72,0.7843596488237381],[126,-44,73,0.7814413495361805],[126,-44,74,0.779467448592186],[126,-44,75,0.7792751491069794],[126,-44,76,0.7813522107899189],[126,-44,77,0.7856738455593586],[126,-44,78,0.7911114357411861],[126,-44,79,0.7967348955571651],[126,-43,64,0.7811316885054111],[126,-43,65,0.7788549065589905],[126,-43,66,0.7783274687826633],[126,-43,67,0.779080543667078],[126,-43,68,0.7800329476594925],[126,-43,69,0.7802581898868084],[126,-43,70,0.7798529528081417],[126,-43,71,0.7788734063506126],[126,-43,72,0.7765471488237381],[126,-43,73,0.7736288495361805],[126,-43,74,0.771654948592186],[126,-43,75,0.7714626491069794],[126,-43,76,0.7735397107899189],[126,-43,77,0.7778613455593586],[126,-43,78,0.7832989357411861],[126,-43,79,0.7889223955571651],[126,-42,64,0.7733191885054111],[126,-42,65,0.7710424065589905],[126,-42,66,0.7705149687826633],[126,-42,67,0.771268043667078],[126,-42,68,0.7722204476594925],[126,-42,69,0.7724456898868084],[126,-42,70,0.7720404528081417],[126,-42,71,0.7710609063506126],[126,-42,72,0.7687346488237381],[126,-42,73,0.7658163495361805],[126,-42,74,0.763842448592186],[126,-42,75,0.7636501491069794],[126,-42,76,0.7657272107899189],[126,-42,77,0.7700488455593586],[126,-42,78,0.7754864357411861],[126,-42,79,0.7811098955571651],[126,-41,64,0.7655066885054111],[126,-41,65,0.7632299065589905],[126,-41,66,0.7627024687826633],[126,-41,67,0.763455543667078],[126,-41,68,0.7644079476594925],[126,-41,69,0.7646331898868084],[126,-41,70,0.7642279528081417],[126,-41,71,0.7632484063506126],[126,-41,72,0.7609221488237381],[126,-41,73,0.7580038495361805],[126,-41,74,0.756029948592186],[126,-41,75,0.7558376491069794],[126,-41,76,0.7579147107899189],[126,-41,77,0.7622363455593586],[126,-41,78,0.7676739357411861],[126,-41,79,0.7732973955571651],[126,-40,64,0.7576941885054111],[126,-40,65,0.7554174065589905],[126,-40,66,0.7548899687826633],[126,-40,67,0.755643043667078],[126,-40,68,0.7565954476594925],[126,-40,69,0.7568206898868084],[126,-40,70,0.7564154528081417],[126,-40,71,0.7554359063506126],[126,-40,72,0.7531096488237381],[126,-40,73,0.7501913495361805],[126,-40,74,0.748217448592186],[126,-40,75,0.7480251491069794],[126,-40,76,0.7501022107899189],[126,-40,77,0.7544238455593586],[126,-40,78,0.7598614357411861],[126,-40,79,0.7654848955571651],[126,-39,64,0.7498816885054111],[126,-39,65,0.7476049065589905],[126,-39,66,0.7470774687826633],[126,-39,67,0.747830543667078],[126,-39,68,0.7487829476594925],[126,-39,69,0.7490081898868084],[126,-39,70,0.7486029528081417],[126,-39,71,0.7476234063506126],[126,-39,72,0.7452971488237381],[126,-39,73,0.7423788495361805],[126,-39,74,0.740404948592186],[126,-39,75,0.7402126491069794],[126,-39,76,0.7422897107899189],[126,-39,77,0.7466113455593586],[126,-39,78,0.7520489357411861],[126,-39,79,0.7576723955571651],[126,-38,64,0.7420691885054111],[126,-38,65,0.7397924065589905],[126,-38,66,0.7392649687826633],[126,-38,67,0.740018043667078],[126,-38,68,0.7409704476594925],[126,-38,69,0.7411956898868084],[126,-38,70,0.7407904528081417],[126,-38,71,0.7398109063506126],[126,-38,72,0.7374846488237381],[126,-38,73,0.7345663495361805],[126,-38,74,0.732592448592186],[126,-38,75,0.7324001491069794],[126,-38,76,0.7344772107899189],[126,-38,77,0.7387988455593586],[126,-38,78,0.7442364357411861],[126,-38,79,0.7498598955571651],[126,-37,64,0.7342566885054111],[126,-37,65,0.7319799065589905],[126,-37,66,0.7314524687826633],[126,-37,67,0.732205543667078],[126,-37,68,0.7331579476594925],[126,-37,69,0.7333831898868084],[126,-37,70,0.7329779528081417],[126,-37,71,0.7319984063506126],[126,-37,72,0.7296721488237381],[126,-37,73,0.7267538495361805],[126,-37,74,0.724779948592186],[126,-37,75,0.7245876491069794],[126,-37,76,0.7266647107899189],[126,-37,77,0.7309863455593586],[126,-37,78,0.7364239357411861],[126,-37,79,0.7420473955571651],[126,-36,64,0.7264441885054111],[126,-36,65,0.7241674065589905],[126,-36,66,0.7236399687826633],[126,-36,67,0.724393043667078],[126,-36,68,0.7253454476594925],[126,-36,69,0.7255706898868084],[126,-36,70,0.7251654528081417],[126,-36,71,0.7241859063506126],[126,-36,72,0.7218596488237381],[126,-36,73,0.7189413495361805],[126,-36,74,0.716967448592186],[126,-36,75,0.7167751491069794],[126,-36,76,0.7188522107899189],[126,-36,77,0.7231738455593586],[126,-36,78,0.7286114357411861],[126,-36,79,0.7342348955571651],[126,-35,64,0.7186316885054111],[126,-35,65,0.7163549065589905],[126,-35,66,0.7158274687826633],[126,-35,67,0.716580543667078],[126,-35,68,0.7175329476594925],[126,-35,69,0.7177581898868084],[126,-35,70,0.7173529528081417],[126,-35,71,0.7163734063506126],[126,-35,72,0.7140471488237381],[126,-35,73,0.7111288495361805],[126,-35,74,0.709154948592186],[126,-35,75,0.7089626491069794],[126,-35,76,0.7110397107899189],[126,-35,77,0.7153613455593586],[126,-35,78,0.7207989357411861],[126,-35,79,0.7264223955571651],[126,-34,64,0.7108191885054111],[126,-34,65,0.7085424065589905],[126,-34,66,0.7080149687826633],[126,-34,67,0.708768043667078],[126,-34,68,0.7097204476594925],[126,-34,69,0.7099456898868084],[126,-34,70,0.7095404528081417],[126,-34,71,0.7085609063506126],[126,-34,72,0.7062346488237381],[126,-34,73,0.7033163495361805],[126,-34,74,0.701342448592186],[126,-34,75,0.7011501491069794],[126,-34,76,0.7032272107899189],[126,-34,77,0.7075488455593586],[126,-34,78,0.7129864357411861],[126,-34,79,0.7186098955571651],[126,-33,64,0.7030066885054111],[126,-33,65,0.7007299065589905],[126,-33,66,0.7002024687826633],[126,-33,67,0.700955543667078],[126,-33,68,0.7019079476594925],[126,-33,69,0.7021331898868084],[126,-33,70,0.7017279528081417],[126,-33,71,0.7007484063506126],[126,-33,72,0.6984221488237381],[126,-33,73,0.6955038495361805],[126,-33,74,0.693529948592186],[126,-33,75,0.6933376491069794],[126,-33,76,0.6954147107899189],[126,-33,77,0.6997363455593586],[126,-33,78,0.7051739357411861],[126,-33,79,0.7107973955571651],[126,-32,64,0.6951941885054111],[126,-32,65,0.6929174065589905],[126,-32,66,0.6923899687826633],[126,-32,67,0.693143043667078],[126,-32,68,0.6940954476594925],[126,-32,69,0.6943206898868084],[126,-32,70,0.6939154528081417],[126,-32,71,0.6929359063506126],[126,-32,72,0.6906096488237381],[126,-32,73,0.6876913495361805],[126,-32,74,0.685717448592186],[126,-32,75,0.6855251491069794],[126,-32,76,0.6876022107899189],[126,-32,77,0.6919238455593586],[126,-32,78,0.6973614357411861],[126,-32,79,0.7029848955571651],[126,-31,64,0.6873816885054111],[126,-31,65,0.6851049065589905],[126,-31,66,0.6845774687826633],[126,-31,67,0.685330543667078],[126,-31,68,0.6862829476594925],[126,-31,69,0.6865081898868084],[126,-31,70,0.6861029528081417],[126,-31,71,0.6851234063506126],[126,-31,72,0.6827971488237381],[126,-31,73,0.6798788495361805],[126,-31,74,0.677904948592186],[126,-31,75,0.6777126491069794],[126,-31,76,0.6797897107899189],[126,-31,77,0.6841113455593586],[126,-31,78,0.6895489357411861],[126,-31,79,0.6951723955571651],[126,-30,64,0.6795691885054111],[126,-30,65,0.6772924065589905],[126,-30,66,0.6767649687826633],[126,-30,67,0.677518043667078],[126,-30,68,0.6784704476594925],[126,-30,69,0.6786956898868084],[126,-30,70,0.6782904528081417],[126,-30,71,0.6773109063506126],[126,-30,72,0.6749846488237381],[126,-30,73,0.6720663495361805],[126,-30,74,0.670092448592186],[126,-30,75,0.6699001491069794],[126,-30,76,0.6719772107899189],[126,-30,77,0.6762988455593586],[126,-30,78,0.6817364357411861],[126,-30,79,0.6873598955571651],[126,-29,64,0.6717566885054111],[126,-29,65,0.6694799065589905],[126,-29,66,0.6689524687826633],[126,-29,67,0.669705543667078],[126,-29,68,0.6706579476594925],[126,-29,69,0.6708831898868084],[126,-29,70,0.6704779528081417],[126,-29,71,0.6694984063506126],[126,-29,72,0.6671721488237381],[126,-29,73,0.6642538495361805],[126,-29,74,0.662279948592186],[126,-29,75,0.6620876491069794],[126,-29,76,0.6641647107899189],[126,-29,77,0.6684863455593586],[126,-29,78,0.6739239357411861],[126,-29,79,0.6795473955571651],[126,-28,64,0.6639441885054111],[126,-28,65,0.6616674065589905],[126,-28,66,0.6611399687826633],[126,-28,67,0.661893043667078],[126,-28,68,0.6628454476594925],[126,-28,69,0.6630706898868084],[126,-28,70,0.6626654528081417],[126,-28,71,0.6616859063506126],[126,-28,72,0.6593596488237381],[126,-28,73,0.6564413495361805],[126,-28,74,0.654467448592186],[126,-28,75,0.6542751491069794],[126,-28,76,0.6563522107899189],[126,-28,77,0.6606738455593586],[126,-28,78,0.6661114357411861],[126,-28,79,0.6717348955571651],[126,-27,64,0.6561316885054111],[126,-27,65,0.6538549065589905],[126,-27,66,0.6533274687826633],[126,-27,67,0.654080543667078],[126,-27,68,0.6550329476594925],[126,-27,69,0.6552581898868084],[126,-27,70,0.6548529528081417],[126,-27,71,0.6538734063506126],[126,-27,72,0.6515471488237381],[126,-27,73,0.6486288495361805],[126,-27,74,0.646654948592186],[126,-27,75,0.6464626491069794],[126,-27,76,0.6485397107899189],[126,-27,77,0.6528613455593586],[126,-27,78,0.6582989357411861],[126,-27,79,0.6639223955571651],[126,-26,64,0.6483191885054111],[126,-26,65,0.6460424065589905],[126,-26,66,0.6455149687826633],[126,-26,67,0.646268043667078],[126,-26,68,0.6472204476594925],[126,-26,69,0.6474456898868084],[126,-26,70,0.6470404528081417],[126,-26,71,0.6460609063506126],[126,-26,72,0.6437346488237381],[126,-26,73,0.6408163495361805],[126,-26,74,0.638842448592186],[126,-26,75,0.6386501491069794],[126,-26,76,0.6407272107899189],[126,-26,77,0.6450488455593586],[126,-26,78,0.6504864357411861],[126,-26,79,0.6561098955571651],[126,-25,64,0.6405066885054111],[126,-25,65,0.6382299065589905],[126,-25,66,0.6377024687826633],[126,-25,67,0.638455543667078],[126,-25,68,0.6394079476594925],[126,-25,69,0.6396331898868084],[126,-25,70,0.6392279528081417],[126,-25,71,0.6382484063506126],[126,-25,72,0.6359221488237381],[126,-25,73,0.6330038495361805],[126,-25,74,0.631029948592186],[126,-25,75,0.6308376491069794],[126,-25,76,0.6329147107899189],[126,-25,77,0.6372363455593586],[126,-25,78,0.6426739357411861],[126,-25,79,0.6482973955571651],[126,-24,64,0.6326941885054111],[126,-24,65,0.6304174065589905],[126,-24,66,0.6298899687826633],[126,-24,67,0.630643043667078],[126,-24,68,0.6315954476594925],[126,-24,69,0.6318206898868084],[126,-24,70,0.6314154528081417],[126,-24,71,0.6304359063506126],[126,-24,72,0.6281096488237381],[126,-24,73,0.6251913495361805],[126,-24,74,0.623217448592186],[126,-24,75,0.6230251491069794],[126,-24,76,0.6251022107899189],[126,-24,77,0.6294238455593586],[126,-24,78,0.6348614357411861],[126,-24,79,0.6404848955571651],[126,-23,64,0.6248816885054111],[126,-23,65,0.6226049065589905],[126,-23,66,0.6220774687826633],[126,-23,67,0.622830543667078],[126,-23,68,0.6237829476594925],[126,-23,69,0.6240081898868084],[126,-23,70,0.6236029528081417],[126,-23,71,0.6226234063506126],[126,-23,72,0.6202971488237381],[126,-23,73,0.6173788495361805],[126,-23,74,0.615404948592186],[126,-23,75,0.6152126491069794],[126,-23,76,0.6172897107899189],[126,-23,77,0.6216113455593586],[126,-23,78,0.6270489357411861],[126,-23,79,0.6326723955571651],[126,-22,64,0.6170691885054111],[126,-22,65,0.6147924065589905],[126,-22,66,0.6142649687826633],[126,-22,67,0.615018043667078],[126,-22,68,0.6159704476594925],[126,-22,69,0.6161956898868084],[126,-22,70,0.6157904528081417],[126,-22,71,0.6148109063506126],[126,-22,72,0.6124846488237381],[126,-22,73,0.6095663495361805],[126,-22,74,0.607592448592186],[126,-22,75,0.6074001491069794],[126,-22,76,0.6094772107899189],[126,-22,77,0.6137988455593586],[126,-22,78,0.6192364357411861],[126,-22,79,0.6248598955571651],[126,-21,64,0.6092566885054111],[126,-21,65,0.6069799065589905],[126,-21,66,0.6064524687826633],[126,-21,67,0.607205543667078],[126,-21,68,0.6081579476594925],[126,-21,69,0.6083831898868084],[126,-21,70,0.6079779528081417],[126,-21,71,0.6069984063506126],[126,-21,72,0.6046721488237381],[126,-21,73,0.6017538495361805],[126,-21,74,0.599779948592186],[126,-21,75,0.5995876491069794],[126,-21,76,0.6016647107899189],[126,-21,77,0.6059863455593586],[126,-21,78,0.6114239357411861],[126,-21,79,0.6170473955571651],[126,-20,64,0.6014441885054111],[126,-20,65,0.5991674065589905],[126,-20,66,0.5986399687826633],[126,-20,67,0.599393043667078],[126,-20,68,0.6003454476594925],[126,-20,69,0.6005706898868084],[126,-20,70,0.6001654528081417],[126,-20,71,0.5991859063506126],[126,-20,72,0.5968596488237381],[126,-20,73,0.5939413495361805],[126,-20,74,0.591967448592186],[126,-20,75,0.5917751491069794],[126,-20,76,0.5938522107899189],[126,-20,77,0.5981738455593586],[126,-20,78,0.6036114357411861],[126,-20,79,0.6092348955571651],[126,-19,64,0.5936316885054111],[126,-19,65,0.5913549065589905],[126,-19,66,0.5908274687826633],[126,-19,67,0.591580543667078],[126,-19,68,0.5925329476594925],[126,-19,69,0.5927581898868084],[126,-19,70,0.5923529528081417],[126,-19,71,0.5913734063506126],[126,-19,72,0.5890471488237381],[126,-19,73,0.5861288495361805],[126,-19,74,0.584154948592186],[126,-19,75,0.5839626491069794],[126,-19,76,0.5860397107899189],[126,-19,77,0.5903613455593586],[126,-19,78,0.5957989357411861],[126,-19,79,0.6014223955571651],[126,-18,64,0.5858191885054111],[126,-18,65,0.5835424065589905],[126,-18,66,0.5830149687826633],[126,-18,67,0.583768043667078],[126,-18,68,0.5847204476594925],[126,-18,69,0.5849456898868084],[126,-18,70,0.5845404528081417],[126,-18,71,0.5835609063506126],[126,-18,72,0.5812346488237381],[126,-18,73,0.5783163495361805],[126,-18,74,0.576342448592186],[126,-18,75,0.5761501491069794],[126,-18,76,0.5782272107899189],[126,-18,77,0.5825488455593586],[126,-18,78,0.5879864357411861],[126,-18,79,0.5936098955571651],[126,-17,64,0.5780066885054111],[126,-17,65,0.5757299065589905],[126,-17,66,0.5752024687826633],[126,-17,67,0.575955543667078],[126,-17,68,0.5769079476594925],[126,-17,69,0.5771331898868084],[126,-17,70,0.5767279528081417],[126,-17,71,0.5757484063506126],[126,-17,72,0.5734221488237381],[126,-17,73,0.5705038495361805],[126,-17,74,0.568529948592186],[126,-17,75,0.5683376491069794],[126,-17,76,0.5704147107899189],[126,-17,77,0.5747363455593586],[126,-17,78,0.5801739357411861],[126,-17,79,0.5857973955571651],[126,-16,64,0.5701941885054111],[126,-16,65,0.5679174065589905],[126,-16,66,0.5673899687826633],[126,-16,67,0.568143043667078],[126,-16,68,0.5690954476594925],[126,-16,69,0.5693206898868084],[126,-16,70,0.5689154528081417],[126,-16,71,0.5679359063506126],[126,-16,72,0.5656096488237381],[126,-16,73,0.5626913495361805],[126,-16,74,0.560717448592186],[126,-16,75,0.5605251491069794],[126,-16,76,0.5626022107899189],[126,-16,77,0.5669238455593586],[126,-16,78,0.5723614357411861],[126,-16,79,0.5779848955571651],[126,-15,64,0.5623816885054111],[126,-15,65,0.5601049065589905],[126,-15,66,0.5595774687826633],[126,-15,67,0.560330543667078],[126,-15,68,0.5612829476594925],[126,-15,69,0.5615081898868084],[126,-15,70,0.5611029528081417],[126,-15,71,0.5601234063506126],[126,-15,72,0.5577971488237381],[126,-15,73,0.5548788495361805],[126,-15,74,0.552904948592186],[126,-15,75,0.5527126491069794],[126,-15,76,0.5547897107899189],[126,-15,77,0.5591113455593586],[126,-15,78,0.5645489357411861],[126,-15,79,0.5701723955571651],[126,-14,64,0.5545691885054111],[126,-14,65,0.5522924065589905],[126,-14,66,0.5517649687826633],[126,-14,67,0.552518043667078],[126,-14,68,0.5534704476594925],[126,-14,69,0.5536956898868084],[126,-14,70,0.5532904528081417],[126,-14,71,0.5523109063506126],[126,-14,72,0.5499846488237381],[126,-14,73,0.5470663495361805],[126,-14,74,0.545092448592186],[126,-14,75,0.5449001491069794],[126,-14,76,0.5469772107899189],[126,-14,77,0.5512988455593586],[126,-14,78,0.5567364357411861],[126,-14,79,0.5623598955571651],[126,-13,64,0.5467566885054111],[126,-13,65,0.5444799065589905],[126,-13,66,0.5439524687826633],[126,-13,67,0.544705543667078],[126,-13,68,0.5456579476594925],[126,-13,69,0.5458831898868084],[126,-13,70,0.5454779528081417],[126,-13,71,0.5444984063506126],[126,-13,72,0.5421721488237381],[126,-13,73,0.5392538495361805],[126,-13,74,0.537279948592186],[126,-13,75,0.5370876491069794],[126,-13,76,0.5391647107899189],[126,-13,77,0.5434863455593586],[126,-13,78,0.5489239357411861],[126,-13,79,0.5545473955571651],[126,-12,64,0.5389441885054111],[126,-12,65,0.5366674065589905],[126,-12,66,0.5361399687826633],[126,-12,67,0.536893043667078],[126,-12,68,0.5378454476594925],[126,-12,69,0.5380706898868084],[126,-12,70,0.5376654528081417],[126,-12,71,0.5366859063506126],[126,-12,72,0.5343596488237381],[126,-12,73,0.5314413495361805],[126,-12,74,0.529467448592186],[126,-12,75,0.5292751491069794],[126,-12,76,0.5313522107899189],[126,-12,77,0.5356738455593586],[126,-12,78,0.5411114357411861],[126,-12,79,0.5467348955571651],[126,-11,64,0.5311316885054111],[126,-11,65,0.5288549065589905],[126,-11,66,0.5283274687826633],[126,-11,67,0.529080543667078],[126,-11,68,0.5300329476594925],[126,-11,69,0.5302581898868084],[126,-11,70,0.5298529528081417],[126,-11,71,0.5288734063506126],[126,-11,72,0.5265471488237381],[126,-11,73,0.5236288495361805],[126,-11,74,0.521654948592186],[126,-11,75,0.5214626491069794],[126,-11,76,0.5235397107899189],[126,-11,77,0.5278613455593586],[126,-11,78,0.5332989357411861],[126,-11,79,0.5389223955571651],[126,-10,64,0.5233191885054111],[126,-10,65,0.5210424065589905],[126,-10,66,0.5205149687826633],[126,-10,67,0.521268043667078],[126,-10,68,0.5222204476594925],[126,-10,69,0.5224456898868084],[126,-10,70,0.5220404528081417],[126,-10,71,0.5210609063506126],[126,-10,72,0.5187346488237381],[126,-10,73,0.5158163495361805],[126,-10,74,0.513842448592186],[126,-10,75,0.5136501491069794],[126,-10,76,0.5157272107899189],[126,-10,77,0.5200488455593586],[126,-10,78,0.5254864357411861],[126,-10,79,0.5311098955571651],[126,-9,64,0.5155066885054111],[126,-9,65,0.5132299065589905],[126,-9,66,0.5127024687826633],[126,-9,67,0.513455543667078],[126,-9,68,0.5144079476594925],[126,-9,69,0.5146331898868084],[126,-9,70,0.5142279528081417],[126,-9,71,0.5132484063506126],[126,-9,72,0.5109221488237381],[126,-9,73,0.5080038495361805],[126,-9,74,0.506029948592186],[126,-9,75,0.5058376491069794],[126,-9,76,0.5079147107899189],[126,-9,77,0.5122363455593586],[126,-9,78,0.5176739357411861],[126,-9,79,0.5232973955571651],[126,-8,64,0.5076941885054111],[126,-8,65,0.5054174065589905],[126,-8,66,0.5048899687826633],[126,-8,67,0.505643043667078],[126,-8,68,0.5065954476594925],[126,-8,69,0.5068206898868084],[126,-8,70,0.5064154528081417],[126,-8,71,0.5054359063506126],[126,-8,72,0.5031096488237381],[126,-8,73,0.5001913495361805],[126,-8,74,0.498217448592186],[126,-8,75,0.49802514910697937],[126,-8,76,0.5001022107899189],[126,-8,77,0.5044238455593586],[126,-8,78,0.5098614357411861],[126,-8,79,0.5154848955571651],[126,-7,64,0.49988168850541115],[126,-7,65,0.4976049065589905],[126,-7,66,0.49707746878266335],[126,-7,67,0.497830543667078],[126,-7,68,0.4987829476594925],[126,-7,69,0.4990081898868084],[126,-7,70,0.4986029528081417],[126,-7,71,0.49762340635061264],[126,-7,72,0.4952971488237381],[126,-7,73,0.4923788495361805],[126,-7,74,0.490404948592186],[126,-7,75,0.49021264910697937],[126,-7,76,0.4922897107899189],[126,-7,77,0.4966113455593586],[126,-7,78,0.5020489357411861],[126,-7,79,0.5076723955571651],[126,-6,64,0.49206918850541115],[126,-6,65,0.4897924065589905],[126,-6,66,0.48926496878266335],[126,-6,67,0.490018043667078],[126,-6,68,0.4909704476594925],[126,-6,69,0.4911956898868084],[126,-6,70,0.4907904528081417],[126,-6,71,0.48981090635061264],[126,-6,72,0.4874846488237381],[126,-6,73,0.4845663495361805],[126,-6,74,0.482592448592186],[126,-6,75,0.48240014910697937],[126,-6,76,0.4844772107899189],[126,-6,77,0.4887988455593586],[126,-6,78,0.49423643574118614],[126,-6,79,0.49985989555716515],[126,-5,64,0.48425668850541115],[126,-5,65,0.4819799065589905],[126,-5,66,0.48145246878266335],[126,-5,67,0.482205543667078],[126,-5,68,0.4831579476594925],[126,-5,69,0.4833831898868084],[126,-5,70,0.4829779528081417],[126,-5,71,0.48199840635061264],[126,-5,72,0.4796721488237381],[126,-5,73,0.4767538495361805],[126,-5,74,0.474779948592186],[126,-5,75,0.47458764910697937],[126,-5,76,0.4766647107899189],[126,-5,77,0.4809863455593586],[126,-5,78,0.48642393574118614],[126,-5,79,0.49204739555716515],[126,-4,64,0.47644418850541115],[126,-4,65,0.4741674065589905],[126,-4,66,0.47363996878266335],[126,-4,67,0.474393043667078],[126,-4,68,0.4753454476594925],[126,-4,69,0.4755706898868084],[126,-4,70,0.4751654528081417],[126,-4,71,0.47418590635061264],[126,-4,72,0.4718596488237381],[126,-4,73,0.4689413495361805],[126,-4,74,0.466967448592186],[126,-4,75,0.46677514910697937],[126,-4,76,0.4688522107899189],[126,-4,77,0.4731738455593586],[126,-4,78,0.47861143574118614],[126,-4,79,0.48423489555716515],[126,-3,64,0.46863168850541115],[126,-3,65,0.4663549065589905],[126,-3,66,0.46582746878266335],[126,-3,67,0.466580543667078],[126,-3,68,0.4675329476594925],[126,-3,69,0.4677581898868084],[126,-3,70,0.4673529528081417],[126,-3,71,0.46637340635061264],[126,-3,72,0.4640471488237381],[126,-3,73,0.4611288495361805],[126,-3,74,0.459154948592186],[126,-3,75,0.45896264910697937],[126,-3,76,0.4610397107899189],[126,-3,77,0.4653613455593586],[126,-3,78,0.47079893574118614],[126,-3,79,0.47642239555716515],[126,-2,64,0.46081918850541115],[126,-2,65,0.4585424065589905],[126,-2,66,0.45801496878266335],[126,-2,67,0.458768043667078],[126,-2,68,0.4597204476594925],[126,-2,69,0.4599456898868084],[126,-2,70,0.4595404528081417],[126,-2,71,0.45856090635061264],[126,-2,72,0.4562346488237381],[126,-2,73,0.4533163495361805],[126,-2,74,0.451342448592186],[126,-2,75,0.45115014910697937],[126,-2,76,0.4532272107899189],[126,-2,77,0.4575488455593586],[126,-2,78,0.46298643574118614],[126,-2,79,0.46860989555716515],[126,-1,64,0.45300668850541115],[126,-1,65,0.4507299065589905],[126,-1,66,0.45020246878266335],[126,-1,67,0.450955543667078],[126,-1,68,0.4519079476594925],[126,-1,69,0.4521331898868084],[126,-1,70,0.4517279528081417],[126,-1,71,0.45074840635061264],[126,-1,72,0.4484221488237381],[126,-1,73,0.4455038495361805],[126,-1,74,0.443529948592186],[126,-1,75,0.44333764910697937],[126,-1,76,0.4454147107899189],[126,-1,77,0.4497363455593586],[126,-1,78,0.45517393574118614],[126,-1,79,0.46079739555716515],[126,0,64,0.44519418850541115],[126,0,65,0.4429174065589905],[126,0,66,0.44238996878266335],[126,0,67,0.443143043667078],[126,0,68,0.4440954476594925],[126,0,69,0.4443206898868084],[126,0,70,0.4439154528081417],[126,0,71,0.44293590635061264],[126,0,72,0.4406096488237381],[126,0,73,0.4376913495361805],[126,0,74,0.435717448592186],[126,0,75,0.43552514910697937],[126,0,76,0.4376022107899189],[126,0,77,0.4419238455593586],[126,0,78,0.44736143574118614],[126,0,79,0.45298489555716515],[126,1,64,0.43738168850541115],[126,1,65,0.4351049065589905],[126,1,66,0.43457746878266335],[126,1,67,0.435330543667078],[126,1,68,0.4362829476594925],[126,1,69,0.4365081898868084],[126,1,70,0.4361029528081417],[126,1,71,0.43512340635061264],[126,1,72,0.4327971488237381],[126,1,73,0.4298788495361805],[126,1,74,0.427904948592186],[126,1,75,0.42771264910697937],[126,1,76,0.4297897107899189],[126,1,77,0.4341113455593586],[126,1,78,0.43954893574118614],[126,1,79,0.44517239555716515],[126,2,64,0.42956918850541115],[126,2,65,0.4272924065589905],[126,2,66,0.42676496878266335],[126,2,67,0.427518043667078],[126,2,68,0.4284704476594925],[126,2,69,0.4286956898868084],[126,2,70,0.4282904528081417],[126,2,71,0.42731090635061264],[126,2,72,0.4249846488237381],[126,2,73,0.4220663495361805],[126,2,74,0.420092448592186],[126,2,75,0.41990014910697937],[126,2,76,0.4219772107899189],[126,2,77,0.4262988455593586],[126,2,78,0.43173643574118614],[126,2,79,0.43735989555716515],[126,3,64,0.42175668850541115],[126,3,65,0.4194799065589905],[126,3,66,0.41895246878266335],[126,3,67,0.419705543667078],[126,3,68,0.4206579476594925],[126,3,69,0.4208831898868084],[126,3,70,0.4204779528081417],[126,3,71,0.41949840635061264],[126,3,72,0.4171721488237381],[126,3,73,0.4142538495361805],[126,3,74,0.412279948592186],[126,3,75,0.41208764910697937],[126,3,76,0.4141647107899189],[126,3,77,0.4184863455593586],[126,3,78,0.42392393574118614],[126,3,79,0.42954739555716515],[126,4,64,0.41394418850541115],[126,4,65,0.4116674065589905],[126,4,66,0.41113996878266335],[126,4,67,0.411893043667078],[126,4,68,0.4128454476594925],[126,4,69,0.4130706898868084],[126,4,70,0.4126654528081417],[126,4,71,0.41168590635061264],[126,4,72,0.4093596488237381],[126,4,73,0.4064413495361805],[126,4,74,0.404467448592186],[126,4,75,0.40427514910697937],[126,4,76,0.4063522107899189],[126,4,77,0.4106738455593586],[126,4,78,0.41611143574118614],[126,4,79,0.42173489555716515],[126,5,64,0.40613168850541115],[126,5,65,0.4038549065589905],[126,5,66,0.40332746878266335],[126,5,67,0.404080543667078],[126,5,68,0.4050329476594925],[126,5,69,0.4052581898868084],[126,5,70,0.4048529528081417],[126,5,71,0.40387340635061264],[126,5,72,0.4015471488237381],[126,5,73,0.3986288495361805],[126,5,74,0.396654948592186],[126,5,75,0.39646264910697937],[126,5,76,0.3985397107899189],[126,5,77,0.4028613455593586],[126,5,78,0.40829893574118614],[126,5,79,0.41392239555716515],[126,6,64,0.39831918850541115],[126,6,65,0.3960424065589905],[126,6,66,0.39551496878266335],[126,6,67,0.396268043667078],[126,6,68,0.3972204476594925],[126,6,69,0.3974456898868084],[126,6,70,0.3970404528081417],[126,6,71,0.39606090635061264],[126,6,72,0.3937346488237381],[126,6,73,0.3908163495361805],[126,6,74,0.388842448592186],[126,6,75,0.38865014910697937],[126,6,76,0.3907272107899189],[126,6,77,0.3950488455593586],[126,6,78,0.40048643574118614],[126,6,79,0.40610989555716515],[126,7,64,0.39050668850541115],[126,7,65,0.3882299065589905],[126,7,66,0.38770246878266335],[126,7,67,0.388455543667078],[126,7,68,0.3894079476594925],[126,7,69,0.3896331898868084],[126,7,70,0.3892279528081417],[126,7,71,0.38824840635061264],[126,7,72,0.3859221488237381],[126,7,73,0.3830038495361805],[126,7,74,0.381029948592186],[126,7,75,0.38083764910697937],[126,7,76,0.3829147107899189],[126,7,77,0.3872363455593586],[126,7,78,0.39267393574118614],[126,7,79,0.39829739555716515],[126,8,64,0.38269418850541115],[126,8,65,0.3804174065589905],[126,8,66,0.37988996878266335],[126,8,67,0.380643043667078],[126,8,68,0.3815954476594925],[126,8,69,0.3818206898868084],[126,8,70,0.3814154528081417],[126,8,71,0.38043590635061264],[126,8,72,0.3781096488237381],[126,8,73,0.3751913495361805],[126,8,74,0.373217448592186],[126,8,75,0.37302514910697937],[126,8,76,0.3751022107899189],[126,8,77,0.3794238455593586],[126,8,78,0.38486143574118614],[126,8,79,0.39048489555716515],[126,9,64,0.37488168850541115],[126,9,65,0.3726049065589905],[126,9,66,0.37207746878266335],[126,9,67,0.372830543667078],[126,9,68,0.3737829476594925],[126,9,69,0.3740081898868084],[126,9,70,0.3736029528081417],[126,9,71,0.37262340635061264],[126,9,72,0.3702971488237381],[126,9,73,0.3673788495361805],[126,9,74,0.365404948592186],[126,9,75,0.36521264910697937],[126,9,76,0.3672897107899189],[126,9,77,0.3716113455593586],[126,9,78,0.37704893574118614],[126,9,79,0.38267239555716515],[126,10,64,0.36706918850541115],[126,10,65,0.3647924065589905],[126,10,66,0.36426496878266335],[126,10,67,0.365018043667078],[126,10,68,0.3659704476594925],[126,10,69,0.3661956898868084],[126,10,70,0.3657904528081417],[126,10,71,0.36481090635061264],[126,10,72,0.3624846488237381],[126,10,73,0.3595663495361805],[126,10,74,0.357592448592186],[126,10,75,0.35740014910697937],[126,10,76,0.3594772107899189],[126,10,77,0.3637988455593586],[126,10,78,0.36923643574118614],[126,10,79,0.37485989555716515],[126,11,64,0.35925668850541115],[126,11,65,0.3569799065589905],[126,11,66,0.35645246878266335],[126,11,67,0.357205543667078],[126,11,68,0.3581579476594925],[126,11,69,0.3583831898868084],[126,11,70,0.3579779528081417],[126,11,71,0.35699840635061264],[126,11,72,0.3546721488237381],[126,11,73,0.3517538495361805],[126,11,74,0.349779948592186],[126,11,75,0.34958764910697937],[126,11,76,0.3516647107899189],[126,11,77,0.3559863455593586],[126,11,78,0.36142393574118614],[126,11,79,0.36704739555716515],[126,12,64,0.35144418850541115],[126,12,65,0.3491674065589905],[126,12,66,0.34863996878266335],[126,12,67,0.349393043667078],[126,12,68,0.3503454476594925],[126,12,69,0.3505706898868084],[126,12,70,0.3501654528081417],[126,12,71,0.34918590635061264],[126,12,72,0.3468596488237381],[126,12,73,0.3439413495361805],[126,12,74,0.341967448592186],[126,12,75,0.34177514910697937],[126,12,76,0.3438522107899189],[126,12,77,0.3481738455593586],[126,12,78,0.35361143574118614],[126,12,79,0.35923489555716515],[126,13,64,0.34363168850541115],[126,13,65,0.3413549065589905],[126,13,66,0.34082746878266335],[126,13,67,0.341580543667078],[126,13,68,0.3425329476594925],[126,13,69,0.3427581898868084],[126,13,70,0.3423529528081417],[126,13,71,0.34137340635061264],[126,13,72,0.3390471488237381],[126,13,73,0.3361288495361805],[126,13,74,0.334154948592186],[126,13,75,0.33396264910697937],[126,13,76,0.3360397107899189],[126,13,77,0.3403613455593586],[126,13,78,0.34579893574118614],[126,13,79,0.35142239555716515],[126,14,64,0.33581918850541115],[126,14,65,0.3335424065589905],[126,14,66,0.33301496878266335],[126,14,67,0.333768043667078],[126,14,68,0.3347204476594925],[126,14,69,0.3349456898868084],[126,14,70,0.3345404528081417],[126,14,71,0.33356090635061264],[126,14,72,0.3312346488237381],[126,14,73,0.3283163495361805],[126,14,74,0.326342448592186],[126,14,75,0.32615014910697937],[126,14,76,0.3282272107899189],[126,14,77,0.3325488455593586],[126,14,78,0.33798643574118614],[126,14,79,0.34360989555716515],[126,15,64,0.32800668850541115],[126,15,65,0.3257299065589905],[126,15,66,0.32520246878266335],[126,15,67,0.325955543667078],[126,15,68,0.3269079476594925],[126,15,69,0.3271331898868084],[126,15,70,0.3267279528081417],[126,15,71,0.32574840635061264],[126,15,72,0.3234221488237381],[126,15,73,0.3205038495361805],[126,15,74,0.318529948592186],[126,15,75,0.31833764910697937],[126,15,76,0.3204147107899189],[126,15,77,0.3247363455593586],[126,15,78,0.33017393574118614],[126,15,79,0.33579739555716515],[126,16,64,0.32019418850541115],[126,16,65,0.3179174065589905],[126,16,66,0.31738996878266335],[126,16,67,0.318143043667078],[126,16,68,0.3190954476594925],[126,16,69,0.3193206898868084],[126,16,70,0.3189154528081417],[126,16,71,0.31793590635061264],[126,16,72,0.3156096488237381],[126,16,73,0.3126913495361805],[126,16,74,0.310717448592186],[126,16,75,0.31052514910697937],[126,16,76,0.3126022107899189],[126,16,77,0.3169238455593586],[126,16,78,0.32236143574118614],[126,16,79,0.32798489555716515],[126,17,64,0.31238168850541115],[126,17,65,0.3101049065589905],[126,17,66,0.30957746878266335],[126,17,67,0.310330543667078],[126,17,68,0.3112829476594925],[126,17,69,0.3115081898868084],[126,17,70,0.3111029528081417],[126,17,71,0.31012340635061264],[126,17,72,0.3077971488237381],[126,17,73,0.3048788495361805],[126,17,74,0.302904948592186],[126,17,75,0.30271264910697937],[126,17,76,0.3047897107899189],[126,17,77,0.3091113455593586],[126,17,78,0.31454893574118614],[126,17,79,0.32017239555716515],[126,18,64,0.30456918850541115],[126,18,65,0.3022924065589905],[126,18,66,0.30176496878266335],[126,18,67,0.302518043667078],[126,18,68,0.3034704476594925],[126,18,69,0.3036956898868084],[126,18,70,0.3032904528081417],[126,18,71,0.30231090635061264],[126,18,72,0.2999846488237381],[126,18,73,0.2970663495361805],[126,18,74,0.295092448592186],[126,18,75,0.29490014910697937],[126,18,76,0.2969772107899189],[126,18,77,0.3012988455593586],[126,18,78,0.30673643574118614],[126,18,79,0.31235989555716515],[126,19,64,0.29675668850541115],[126,19,65,0.2944799065589905],[126,19,66,0.29395246878266335],[126,19,67,0.294705543667078],[126,19,68,0.2956579476594925],[126,19,69,0.2958831898868084],[126,19,70,0.2954779528081417],[126,19,71,0.29449840635061264],[126,19,72,0.2921721488237381],[126,19,73,0.2892538495361805],[126,19,74,0.287279948592186],[126,19,75,0.28708764910697937],[126,19,76,0.2891647107899189],[126,19,77,0.2934863455593586],[126,19,78,0.29892393574118614],[126,19,79,0.30454739555716515],[126,20,64,0.28894418850541115],[126,20,65,0.2866674065589905],[126,20,66,0.28613996878266335],[126,20,67,0.286893043667078],[126,20,68,0.2878454476594925],[126,20,69,0.2880706898868084],[126,20,70,0.2876654528081417],[126,20,71,0.28668590635061264],[126,20,72,0.2843596488237381],[126,20,73,0.2814413495361805],[126,20,74,0.279467448592186],[126,20,75,0.27927514910697937],[126,20,76,0.2813522107899189],[126,20,77,0.2856738455593586],[126,20,78,0.29111143574118614],[126,20,79,0.29673489555716515],[126,21,64,0.28113168850541115],[126,21,65,0.2788549065589905],[126,21,66,0.27832746878266335],[126,21,67,0.279080543667078],[126,21,68,0.2800329476594925],[126,21,69,0.2802581898868084],[126,21,70,0.2798529528081417],[126,21,71,0.27887340635061264],[126,21,72,0.2765471488237381],[126,21,73,0.2736288495361805],[126,21,74,0.271654948592186],[126,21,75,0.27146264910697937],[126,21,76,0.2735397107899189],[126,21,77,0.2778613455593586],[126,21,78,0.28329893574118614],[126,21,79,0.28892239555716515],[126,22,64,0.27331918850541115],[126,22,65,0.2710424065589905],[126,22,66,0.27051496878266335],[126,22,67,0.271268043667078],[126,22,68,0.2722204476594925],[126,22,69,0.2724456898868084],[126,22,70,0.2720404528081417],[126,22,71,0.27106090635061264],[126,22,72,0.2687346488237381],[126,22,73,0.2658163495361805],[126,22,74,0.263842448592186],[126,22,75,0.26365014910697937],[126,22,76,0.2657272107899189],[126,22,77,0.2700488455593586],[126,22,78,0.27548643574118614],[126,22,79,0.28110989555716515],[126,23,64,0.26550668850541115],[126,23,65,0.2632299065589905],[126,23,66,0.26270246878266335],[126,23,67,0.263455543667078],[126,23,68,0.2644079476594925],[126,23,69,0.2646331898868084],[126,23,70,0.2642279528081417],[126,23,71,0.26324840635061264],[126,23,72,0.2609221488237381],[126,23,73,0.2580038495361805],[126,23,74,0.256029948592186],[126,23,75,0.25583764910697937],[126,23,76,0.2579147107899189],[126,23,77,0.2622363455593586],[126,23,78,0.26767393574118614],[126,23,79,0.27329739555716515],[126,24,64,0.25769418850541115],[126,24,65,0.2554174065589905],[126,24,66,0.25488996878266335],[126,24,67,0.255643043667078],[126,24,68,0.2565954476594925],[126,24,69,0.2568206898868084],[126,24,70,0.2564154528081417],[126,24,71,0.25543590635061264],[126,24,72,0.2531096488237381],[126,24,73,0.2501913495361805],[126,24,74,0.24821744859218597],[126,24,75,0.24802514910697937],[126,24,76,0.2501022107899189],[126,24,77,0.2544238455593586],[126,24,78,0.25986143574118614],[126,24,79,0.26548489555716515],[126,25,64,0.24988168850541115],[126,25,65,0.24760490655899048],[126,25,66,0.24707746878266335],[126,25,67,0.24783054366707802],[126,25,68,0.2487829476594925],[126,25,69,0.2490081898868084],[126,25,70,0.2486029528081417],[126,25,71,0.24762340635061264],[126,25,72,0.2452971488237381],[126,25,73,0.2423788495361805],[126,25,74,0.24040494859218597],[126,25,75,0.24021264910697937],[126,25,76,0.2422897107899189],[126,25,77,0.2466113455593586],[126,25,78,0.25204893574118614],[126,25,79,0.25767239555716515],[126,26,64,0.24206918850541115],[126,26,65,0.23979240655899048],[126,26,66,0.23926496878266335],[126,26,67,0.24001804366707802],[126,26,68,0.2409704476594925],[126,26,69,0.2411956898868084],[126,26,70,0.2407904528081417],[126,26,71,0.23981090635061264],[126,26,72,0.2374846488237381],[126,26,73,0.2345663495361805],[126,26,74,0.23259244859218597],[126,26,75,0.23240014910697937],[126,26,76,0.2344772107899189],[126,26,77,0.2387988455593586],[126,26,78,0.24423643574118614],[126,26,79,0.24985989555716515],[126,27,64,0.23425668850541115],[126,27,65,0.23197990655899048],[126,27,66,0.23145246878266335],[126,27,67,0.23220554366707802],[126,27,68,0.2331579476594925],[126,27,69,0.2333831898868084],[126,27,70,0.2329779528081417],[126,27,71,0.23199840635061264],[126,27,72,0.2296721488237381],[126,27,73,0.2267538495361805],[126,27,74,0.22477994859218597],[126,27,75,0.22458764910697937],[126,27,76,0.2266647107899189],[126,27,77,0.2309863455593586],[126,27,78,0.23642393574118614],[126,27,79,0.24204739555716515],[126,28,64,0.22644418850541115],[126,28,65,0.22416740655899048],[126,28,66,0.22363996878266335],[126,28,67,0.22439304366707802],[126,28,68,0.2253454476594925],[126,28,69,0.2255706898868084],[126,28,70,0.2251654528081417],[126,28,71,0.22418590635061264],[126,28,72,0.2218596488237381],[126,28,73,0.2189413495361805],[126,28,74,0.21696744859218597],[126,28,75,0.21677514910697937],[126,28,76,0.2188522107899189],[126,28,77,0.2231738455593586],[126,28,78,0.22861143574118614],[126,28,79,0.23423489555716515],[126,29,64,0.21863168850541115],[126,29,65,0.21635490655899048],[126,29,66,0.21582746878266335],[126,29,67,0.21658054366707802],[126,29,68,0.2175329476594925],[126,29,69,0.2177581898868084],[126,29,70,0.2173529528081417],[126,29,71,0.21637340635061264],[126,29,72,0.2140471488237381],[126,29,73,0.2111288495361805],[126,29,74,0.20915494859218597],[126,29,75,0.20896264910697937],[126,29,76,0.2110397107899189],[126,29,77,0.2153613455593586],[126,29,78,0.22079893574118614],[126,29,79,0.22642239555716515],[126,30,64,0.21081918850541115],[126,30,65,0.20854240655899048],[126,30,66,0.20801496878266335],[126,30,67,0.20876804366707802],[126,30,68,0.2097204476594925],[126,30,69,0.2099456898868084],[126,30,70,0.2095404528081417],[126,30,71,0.20856090635061264],[126,30,72,0.2062346488237381],[126,30,73,0.2033163495361805],[126,30,74,0.20134244859218597],[126,30,75,0.20115014910697937],[126,30,76,0.2032272107899189],[126,30,77,0.2075488455593586],[126,30,78,0.21298643574118614],[126,30,79,0.21860989555716515],[126,31,64,0.20300668850541115],[126,31,65,0.20072990655899048],[126,31,66,0.20020246878266335],[126,31,67,0.20095554366707802],[126,31,68,0.2019079476594925],[126,31,69,0.2021331898868084],[126,31,70,0.2017279528081417],[126,31,71,0.20074840635061264],[126,31,72,0.1984221488237381],[126,31,73,0.1955038495361805],[126,31,74,0.19352994859218597],[126,31,75,0.19333764910697937],[126,31,76,0.1954147107899189],[126,31,77,0.1997363455593586],[126,31,78,0.20517393574118614],[126,31,79,0.21079739555716515],[126,32,64,0.19519418850541115],[126,32,65,0.19291740655899048],[126,32,66,0.19238996878266335],[126,32,67,0.19314304366707802],[126,32,68,0.1940954476594925],[126,32,69,0.1943206898868084],[126,32,70,0.1939154528081417],[126,32,71,0.19293590635061264],[126,32,72,0.1906096488237381],[126,32,73,0.1876913495361805],[126,32,74,0.18571744859218597],[126,32,75,0.18552514910697937],[126,32,76,0.1876022107899189],[126,32,77,0.1919238455593586],[126,32,78,0.19736143574118614],[126,32,79,0.20298489555716515],[126,33,64,0.18738168850541115],[126,33,65,0.18510490655899048],[126,33,66,0.18457746878266335],[126,33,67,0.18533054366707802],[126,33,68,0.1862829476594925],[126,33,69,0.1865081898868084],[126,33,70,0.1861029528081417],[126,33,71,0.18512340635061264],[126,33,72,0.1827971488237381],[126,33,73,0.1798788495361805],[126,33,74,0.17790494859218597],[126,33,75,0.17771264910697937],[126,33,76,0.1797897107899189],[126,33,77,0.1841113455593586],[126,33,78,0.18954893574118614],[126,33,79,0.19517239555716515],[126,34,64,0.17956918850541115],[126,34,65,0.17729240655899048],[126,34,66,0.17676496878266335],[126,34,67,0.17751804366707802],[126,34,68,0.1784704476594925],[126,34,69,0.1786956898868084],[126,34,70,0.1782904528081417],[126,34,71,0.17731090635061264],[126,34,72,0.1749846488237381],[126,34,73,0.1720663495361805],[126,34,74,0.17009244859218597],[126,34,75,0.16990014910697937],[126,34,76,0.1719772107899189],[126,34,77,0.1762988455593586],[126,34,78,0.18173643574118614],[126,34,79,0.18735989555716515],[126,35,64,0.17175668850541115],[126,35,65,0.16947990655899048],[126,35,66,0.16895246878266335],[126,35,67,0.16970554366707802],[126,35,68,0.1706579476594925],[126,35,69,0.1708831898868084],[126,35,70,0.1704779528081417],[126,35,71,0.16949840635061264],[126,35,72,0.1671721488237381],[126,35,73,0.1642538495361805],[126,35,74,0.16227994859218597],[126,35,75,0.16208764910697937],[126,35,76,0.1641647107899189],[126,35,77,0.1684863455593586],[126,35,78,0.17392393574118614],[126,35,79,0.17954739555716515],[126,36,64,0.16394418850541115],[126,36,65,0.16166740655899048],[126,36,66,0.16113996878266335],[126,36,67,0.16189304366707802],[126,36,68,0.1628454476594925],[126,36,69,0.1630706898868084],[126,36,70,0.1626654528081417],[126,36,71,0.16168590635061264],[126,36,72,0.1593596488237381],[126,36,73,0.1564413495361805],[126,36,74,0.15446744859218597],[126,36,75,0.15427514910697937],[126,36,76,0.1563522107899189],[126,36,77,0.1606738455593586],[126,36,78,0.16611143574118614],[126,36,79,0.17173489555716515],[126,37,64,0.15613168850541115],[126,37,65,0.15385490655899048],[126,37,66,0.15332746878266335],[126,37,67,0.15408054366707802],[126,37,68,0.1550329476594925],[126,37,69,0.1552581898868084],[126,37,70,0.1548529528081417],[126,37,71,0.15387340635061264],[126,37,72,0.1515471488237381],[126,37,73,0.1486288495361805],[126,37,74,0.14665494859218597],[126,37,75,0.14646264910697937],[126,37,76,0.1485397107899189],[126,37,77,0.1528613455593586],[126,37,78,0.15829893574118614],[126,37,79,0.16392239555716515],[126,38,64,0.14831918850541115],[126,38,65,0.14604240655899048],[126,38,66,0.14551496878266335],[126,38,67,0.14626804366707802],[126,38,68,0.1472204476594925],[126,38,69,0.1474456898868084],[126,38,70,0.1470404528081417],[126,38,71,0.14606090635061264],[126,38,72,0.1437346488237381],[126,38,73,0.1408163495361805],[126,38,74,0.13884244859218597],[126,38,75,0.13865014910697937],[126,38,76,0.1407272107899189],[126,38,77,0.1450488455593586],[126,38,78,0.15048643574118614],[126,38,79,0.15610989555716515],[126,39,64,0.14050668850541115],[126,39,65,0.13822990655899048],[126,39,66,0.13770246878266335],[126,39,67,0.13845554366707802],[126,39,68,0.1394079476594925],[126,39,69,0.1396331898868084],[126,39,70,0.1392279528081417],[126,39,71,0.13824840635061264],[126,39,72,0.1359221488237381],[126,39,73,0.1330038495361805],[126,39,74,0.13102994859218597],[126,39,75,0.13083764910697937],[126,39,76,0.1329147107899189],[126,39,77,0.1372363455593586],[126,39,78,0.14267393574118614],[126,39,79,0.14829739555716515],[126,40,64,0.13269418850541115],[126,40,65,0.13041740655899048],[126,40,66,0.12988996878266335],[126,40,67,0.13064304366707802],[126,40,68,0.1315954476594925],[126,40,69,0.1318206898868084],[126,40,70,0.1314154528081417],[126,40,71,0.13043590635061264],[126,40,72,0.1281096488237381],[126,40,73,0.1251913495361805],[126,40,74,0.12321744859218597],[126,40,75,0.12302514910697937],[126,40,76,0.1251022107899189],[126,40,77,0.1294238455593586],[126,40,78,0.13486143574118614],[126,40,79,0.14048489555716515],[126,41,64,0.12488168850541115],[126,41,65,0.12260490655899048],[126,41,66,0.12207746878266335],[126,41,67,0.12283054366707802],[126,41,68,0.12378294765949249],[126,41,69,0.1240081898868084],[126,41,70,0.12360295280814171],[126,41,71,0.12262340635061264],[126,41,72,0.1202971488237381],[126,41,73,0.1173788495361805],[126,41,74,0.11540494859218597],[126,41,75,0.11521264910697937],[126,41,76,0.1172897107899189],[126,41,77,0.1216113455593586],[126,41,78,0.12704893574118614],[126,41,79,0.13267239555716515],[126,42,64,0.11706918850541115],[126,42,65,0.11479240655899048],[126,42,66,0.11426496878266335],[126,42,67,0.11501804366707802],[126,42,68,0.11597044765949249],[126,42,69,0.1161956898868084],[126,42,70,0.11579045280814171],[126,42,71,0.11481090635061264],[126,42,72,0.1124846488237381],[126,42,73,0.1095663495361805],[126,42,74,0.10759244859218597],[126,42,75,0.10740014910697937],[126,42,76,0.1094772107899189],[126,42,77,0.1137988455593586],[126,42,78,0.11923643574118614],[126,42,79,0.12485989555716515],[126,43,64,0.10925668850541115],[126,43,65,0.10697990655899048],[126,43,66,0.10645246878266335],[126,43,67,0.10720554366707802],[126,43,68,0.10815794765949249],[126,43,69,0.1083831898868084],[126,43,70,0.10797795280814171],[126,43,71,0.10699840635061264],[126,43,72,0.1046721488237381],[126,43,73,0.1017538495361805],[126,43,74,0.09977994859218597],[126,43,75,0.09958764910697937],[126,43,76,0.1016647107899189],[126,43,77,0.1059863455593586],[126,43,78,0.11142393574118614],[126,43,79,0.11704739555716515],[126,44,64,0.10144418850541115],[126,44,65,0.09916740655899048],[126,44,66,0.09863996878266335],[126,44,67,0.09939304366707802],[126,44,68,0.10034544765949249],[126,44,69,0.1005706898868084],[126,44,70,0.10016545280814171],[126,44,71,0.09918590635061264],[126,44,72,0.0968596488237381],[126,44,73,0.0939413495361805],[126,44,74,0.09196744859218597],[126,44,75,0.09177514910697937],[126,44,76,0.0938522107899189],[126,44,77,0.0981738455593586],[126,44,78,0.10361143574118614],[126,44,79,0.10923489555716515],[126,45,64,0.09363168850541115],[126,45,65,0.09135490655899048],[126,45,66,0.09082746878266335],[126,45,67,0.09158054366707802],[126,45,68,0.09253294765949249],[126,45,69,0.0927581898868084],[126,45,70,0.09235295280814171],[126,45,71,0.09137340635061264],[126,45,72,0.0890471488237381],[126,45,73,0.0861288495361805],[126,45,74,0.08415494859218597],[126,45,75,0.08396264910697937],[126,45,76,0.0860397107899189],[126,45,77,0.0903613455593586],[126,45,78,0.09579893574118614],[126,45,79,0.10142239555716515],[126,46,64,0.08581918850541115],[126,46,65,0.08354240655899048],[126,46,66,0.08301496878266335],[126,46,67,0.08376804366707802],[126,46,68,0.08472044765949249],[126,46,69,0.0849456898868084],[126,46,70,0.08454045280814171],[126,46,71,0.08356090635061264],[126,46,72,0.0812346488237381],[126,46,73,0.0783163495361805],[126,46,74,0.07634244859218597],[126,46,75,0.07615014910697937],[126,46,76,0.0782272107899189],[126,46,77,0.0825488455593586],[126,46,78,0.08798643574118614],[126,46,79,0.09360989555716515],[126,47,64,0.07800668850541115],[126,47,65,0.07572990655899048],[126,47,66,0.07520246878266335],[126,47,67,0.07595554366707802],[126,47,68,0.07690794765949249],[126,47,69,0.0771331898868084],[126,47,70,0.07672795280814171],[126,47,71,0.07574840635061264],[126,47,72,0.0734221488237381],[126,47,73,0.0705038495361805],[126,47,74,0.06852994859218597],[126,47,75,0.06833764910697937],[126,47,76,0.0704147107899189],[126,47,77,0.0747363455593586],[126,47,78,0.08017393574118614],[126,47,79,0.08579739555716515],[126,48,64,0.07019418850541115],[126,48,65,0.06791740655899048],[126,48,66,0.06738996878266335],[126,48,67,0.06814304366707802],[126,48,68,0.06909544765949249],[126,48,69,0.0693206898868084],[126,48,70,0.06891545280814171],[126,48,71,0.06793590635061264],[126,48,72,0.0656096488237381],[126,48,73,0.0626913495361805],[126,48,74,0.060717448592185974],[126,48,75,0.06052514910697937],[126,48,76,0.0626022107899189],[126,48,77,0.0669238455593586],[126,48,78,0.07236143574118614],[126,48,79,0.07798489555716515],[126,49,64,0.06238168850541115],[126,49,65,0.06010490655899048],[126,49,66,0.059577468782663345],[126,49,67,0.06033054366707802],[126,49,68,0.06128294765949249],[126,49,69,0.061508189886808395],[126,49,70,0.06110295280814171],[126,49,71,0.06012340635061264],[126,49,72,0.0577971488237381],[126,49,73,0.054878849536180496],[126,49,74,0.052904948592185974],[126,49,75,0.05271264910697937],[126,49,76,0.0547897107899189],[126,49,77,0.0591113455593586],[126,49,78,0.06454893574118614],[126,49,79,0.07017239555716515],[126,50,64,0.05456918850541115],[126,50,65,0.05229240655899048],[126,50,66,0.051764968782663345],[126,50,67,0.05251804366707802],[126,50,68,0.05347044765949249],[126,50,69,0.053695689886808395],[126,50,70,0.05329045280814171],[126,50,71,0.05231090635061264],[126,50,72,0.0499846488237381],[126,50,73,0.047066349536180496],[126,50,74,0.045092448592185974],[126,50,75,0.04490014910697937],[126,50,76,0.0469772107899189],[126,50,77,0.0512988455593586],[126,50,78,0.05673643574118614],[126,50,79,0.062359895557165146],[126,51,64,0.04675668850541115],[126,51,65,0.04447990655899048],[126,51,66,0.043952468782663345],[126,51,67,0.04470554366707802],[126,51,68,0.04565794765949249],[126,51,69,0.045883189886808395],[126,51,70,0.04547795280814171],[126,51,71,0.04449840635061264],[126,51,72,0.0421721488237381],[126,51,73,0.039253849536180496],[126,51,74,0.037279948592185974],[126,51,75,0.03708764910697937],[126,51,76,0.0391647107899189],[126,51,77,0.0434863455593586],[126,51,78,0.04892393574118614],[126,51,79,0.054547395557165146],[126,52,64,0.03894418850541115],[126,52,65,0.03666740655899048],[126,52,66,0.036139968782663345],[126,52,67,0.03689304366707802],[126,52,68,0.03784544765949249],[126,52,69,0.038070689886808395],[126,52,70,0.03766545280814171],[126,52,71,0.03668590635061264],[126,52,72,0.0343596488237381],[126,52,73,0.031441349536180496],[126,52,74,0.029467448592185974],[126,52,75,0.02927514910697937],[126,52,76,0.0313522107899189],[126,52,77,0.0356738455593586],[126,52,78,0.04111143574118614],[126,52,79,0.046734895557165146],[126,53,64,0.031131688505411148],[126,53,65,0.02885490655899048],[126,53,66,0.028327468782663345],[126,53,67,0.029080543667078018],[126,53,68,0.030032947659492493],[126,53,69,0.030258189886808395],[126,53,70,0.02985295280814171],[126,53,71,0.02887340635061264],[126,53,72,0.026547148823738098],[126,53,73,0.023628849536180496],[126,53,74,0.021654948592185974],[126,53,75,0.02146264910697937],[126,53,76,0.0235397107899189],[126,53,77,0.027861345559358597],[126,53,78,0.03329893574118614],[126,53,79,0.038922395557165146],[126,54,64,0.023319188505411148],[126,54,65,0.02104240655899048],[126,54,66,0.020514968782663345],[126,54,67,0.021268043667078018],[126,54,68,0.022220447659492493],[126,54,69,0.022445689886808395],[126,54,70,0.02204045280814171],[126,54,71,0.02106090635061264],[126,54,72,0.018734648823738098],[126,54,73,0.015816349536180496],[126,54,74,0.013842448592185974],[126,54,75,0.01365014910697937],[126,54,76,0.0157272107899189],[126,54,77,0.020048845559358597],[126,54,78,0.025486435741186142],[126,54,79,0.031109895557165146],[126,55,64,0.015506688505411148],[126,55,65,0.013229906558990479],[126,55,66,0.012702468782663345],[126,55,67,0.013455543667078018],[126,55,68,0.014407947659492493],[126,55,69,0.014633189886808395],[126,55,70,0.014227952808141708],[126,55,71,0.01324840635061264],[126,55,72,0.010922148823738098],[126,55,73,0.008003849536180496],[126,55,74,0.006029948592185974],[126,55,75,0.00583764910697937],[126,55,76,0.0079147107899189],[126,55,77,0.012236345559358597],[126,55,78,0.017673935741186142],[126,55,79,0.023297395557165146],[126,56,64,0.007694188505411148],[126,56,65,0.0054174065589904785],[126,56,66,0.004889968782663345],[126,56,67,0.005643043667078018],[126,56,68,0.006595447659492493],[126,56,69,0.006820689886808395],[126,56,70,0.006415452808141708],[126,56,71,0.00543590635061264],[126,56,72,0.003109648823738098],[126,56,73,1.9134953618049622E-4],[126,56,74,-0.0017825514078140259],[126,56,75,-0.00197485089302063],[126,56,76,1.0221078991889954E-4],[126,56,77,0.004423845559358597],[126,56,78,0.009861435741186142],[126,56,79,0.015484895557165146],[126,57,64,-1.1831149458885193E-4],[126,57,65,-0.0023950934410095215],[126,57,66,-0.0029225312173366547],[126,57,67,-0.002169456332921982],[126,57,68,-0.0012170523405075073],[126,57,69,-9.918101131916046E-4],[126,57,70,-0.0013970471918582916],[126,57,71,-0.0023765936493873596],[126,57,72,-0.004702851176261902],[126,57,73,-0.007621150463819504],[126,57,74,-0.009595051407814026],[126,57,75,-0.00978735089302063],[126,57,76,-0.0077102892100811005],[126,57,77,-0.003388654440641403],[126,57,78,0.002048935741186142],[126,57,79,0.007672395557165146],[126,58,64,-0.007930811494588852],[126,58,65,-0.010207593441009521],[126,58,66,-0.010735031217336655],[126,58,67,-0.009981956332921982],[126,58,68,-0.009029552340507507],[126,58,69,-0.008804310113191605],[126,58,70,-0.009209547191858292],[126,58,71,-0.01018909364938736],[126,58,72,-0.012515351176261902],[126,58,73,-0.015433650463819504],[126,58,74,-0.017407551407814026],[126,58,75,-0.01759985089302063],[126,58,76,-0.0155227892100811],[126,58,77,-0.011201154440641403],[126,58,78,-0.005763564258813858],[126,58,79,-1.4010444283485413E-4],[126,59,64,-0.015743311494588852],[126,59,65,-0.01802009344100952],[126,59,66,-0.018547531217336655],[126,59,67,-0.017794456332921982],[126,59,68,-0.016842052340507507],[126,59,69,-0.016616810113191605],[126,59,70,-0.01702204719185829],[126,59,71,-0.01800159364938736],[126,59,72,-0.020327851176261902],[126,59,73,-0.023246150463819504],[126,59,74,-0.025220051407814026],[126,59,75,-0.02541235089302063],[126,59,76,-0.0233352892100811],[126,59,77,-0.019013654440641403],[126,59,78,-0.013576064258813858],[126,59,79,-0.007952604442834854],[126,60,64,-0.023555811494588852],[126,60,65,-0.02583259344100952],[126,60,66,-0.026360031217336655],[126,60,67,-0.025606956332921982],[126,60,68,-0.024654552340507507],[126,60,69,-0.024429310113191605],[126,60,70,-0.02483454719185829],[126,60,71,-0.02581409364938736],[126,60,72,-0.028140351176261902],[126,60,73,-0.031058650463819504],[126,60,74,-0.033032551407814026],[126,60,75,-0.03322485089302063],[126,60,76,-0.0311477892100811],[126,60,77,-0.026826154440641403],[126,60,78,-0.021388564258813858],[126,60,79,-0.015765104442834854],[126,61,64,-0.03136831149458885],[126,61,65,-0.03364509344100952],[126,61,66,-0.034172531217336655],[126,61,67,-0.03341945633292198],[126,61,68,-0.03246705234050751],[126,61,69,-0.032241810113191605],[126,61,70,-0.03264704719185829],[126,61,71,-0.03362659364938736],[126,61,72,-0.0359528511762619],[126,61,73,-0.038871150463819504],[126,61,74,-0.040845051407814026],[126,61,75,-0.04103735089302063],[126,61,76,-0.0389602892100811],[126,61,77,-0.0346386544406414],[126,61,78,-0.029201064258813858],[126,61,79,-0.023577604442834854],[126,62,64,-0.03918081149458885],[126,62,65,-0.04145759344100952],[126,62,66,-0.041985031217336655],[126,62,67,-0.04123195633292198],[126,62,68,-0.04027955234050751],[126,62,69,-0.040054310113191605],[126,62,70,-0.04045954719185829],[126,62,71,-0.04143909364938736],[126,62,72,-0.0437653511762619],[126,62,73,-0.046683650463819504],[126,62,74,-0.048657551407814026],[126,62,75,-0.04884985089302063],[126,62,76,-0.0467727892100811],[126,62,77,-0.0424511544406414],[126,62,78,-0.03701356425881386],[126,62,79,-0.031390104442834854],[126,63,64,-0.04699331149458885],[126,63,65,-0.04927009344100952],[126,63,66,-0.049797531217336655],[126,63,67,-0.04904445633292198],[126,63,68,-0.04809205234050751],[126,63,69,-0.047866810113191605],[126,63,70,-0.04827204719185829],[126,63,71,-0.04925159364938736],[126,63,72,-0.0515778511762619],[126,63,73,-0.054496150463819504],[126,63,74,-0.056470051407814026],[126,63,75,-0.05666235089302063],[126,63,76,-0.0545852892100811],[126,63,77,-0.0502636544406414],[126,63,78,-0.04482606425881386],[126,63,79,-0.039202604442834854],[126,64,64,-0.05480581149458885],[126,64,65,-0.05708259344100952],[126,64,66,-0.057610031217336655],[126,64,67,-0.05685695633292198],[126,64,68,-0.05590455234050751],[126,64,69,-0.055679310113191605],[126,64,70,-0.05608454719185829],[126,64,71,-0.05706409364938736],[126,64,72,-0.0593903511762619],[126,64,73,-0.062308650463819504],[126,64,74,-0.06428255140781403],[126,64,75,-0.06447485089302063],[126,64,76,-0.0623977892100811],[126,64,77,-0.0580761544406414],[126,64,78,-0.05263856425881386],[126,64,79,-0.047015104442834854],[126,65,64,-0.06261831149458885],[126,65,65,-0.06489509344100952],[126,65,66,-0.06542253121733665],[126,65,67,-0.06466945633292198],[126,65,68,-0.06371705234050751],[126,65,69,-0.0634918101131916],[126,65,70,-0.06389704719185829],[126,65,71,-0.06487659364938736],[126,65,72,-0.0672028511762619],[126,65,73,-0.0701211504638195],[126,65,74,-0.07209505140781403],[126,65,75,-0.07228735089302063],[126,65,76,-0.0702102892100811],[126,65,77,-0.0658886544406414],[126,65,78,-0.06045106425881386],[126,65,79,-0.054827604442834854],[126,66,64,-0.07043081149458885],[126,66,65,-0.07270759344100952],[126,66,66,-0.07323503121733665],[126,66,67,-0.07248195633292198],[126,66,68,-0.07152955234050751],[126,66,69,-0.0713043101131916],[126,66,70,-0.07170954719185829],[126,66,71,-0.07268909364938736],[126,66,72,-0.0750153511762619],[126,66,73,-0.0779336504638195],[126,66,74,-0.07990755140781403],[126,66,75,-0.08009985089302063],[126,66,76,-0.0780227892100811],[126,66,77,-0.0737011544406414],[126,66,78,-0.06826356425881386],[126,66,79,-0.06264010444283485],[126,67,64,-0.07824331149458885],[126,67,65,-0.08052009344100952],[126,67,66,-0.08104753121733665],[126,67,67,-0.08029445633292198],[126,67,68,-0.07934205234050751],[126,67,69,-0.0791168101131916],[126,67,70,-0.07952204719185829],[126,67,71,-0.08050159364938736],[126,67,72,-0.0828278511762619],[126,67,73,-0.0857461504638195],[126,67,74,-0.08772005140781403],[126,67,75,-0.08791235089302063],[126,67,76,-0.0858352892100811],[126,67,77,-0.0815136544406414],[126,67,78,-0.07607606425881386],[126,67,79,-0.07045260444283485],[126,68,64,-0.08605581149458885],[126,68,65,-0.08833259344100952],[126,68,66,-0.08886003121733665],[126,68,67,-0.08810695633292198],[126,68,68,-0.08715455234050751],[126,68,69,-0.0869293101131916],[126,68,70,-0.08733454719185829],[126,68,71,-0.08831409364938736],[126,68,72,-0.0906403511762619],[126,68,73,-0.0935586504638195],[126,68,74,-0.09553255140781403],[126,68,75,-0.09572485089302063],[126,68,76,-0.0936477892100811],[126,68,77,-0.0893261544406414],[126,68,78,-0.08388856425881386],[126,68,79,-0.07826510444283485],[126,69,64,-0.09386831149458885],[126,69,65,-0.09614509344100952],[126,69,66,-0.09667253121733665],[126,69,67,-0.09591945633292198],[126,69,68,-0.09496705234050751],[126,69,69,-0.0947418101131916],[126,69,70,-0.09514704719185829],[126,69,71,-0.09612659364938736],[126,69,72,-0.0984528511762619],[126,69,73,-0.1013711504638195],[126,69,74,-0.10334505140781403],[126,69,75,-0.10353735089302063],[126,69,76,-0.1014602892100811],[126,69,77,-0.0971386544406414],[126,69,78,-0.09170106425881386],[126,69,79,-0.08607760444283485],[126,70,64,-0.10168081149458885],[126,70,65,-0.10395759344100952],[126,70,66,-0.10448503121733665],[126,70,67,-0.10373195633292198],[126,70,68,-0.10277955234050751],[126,70,69,-0.1025543101131916],[126,70,70,-0.10295954719185829],[126,70,71,-0.10393909364938736],[126,70,72,-0.1062653511762619],[126,70,73,-0.1091836504638195],[126,70,74,-0.11115755140781403],[126,70,75,-0.11134985089302063],[126,70,76,-0.1092727892100811],[126,70,77,-0.1049511544406414],[126,70,78,-0.09951356425881386],[126,70,79,-0.09389010444283485],[126,71,64,-0.10949331149458885],[126,71,65,-0.11177009344100952],[126,71,66,-0.11229753121733665],[126,71,67,-0.11154445633292198],[126,71,68,-0.11059205234050751],[126,71,69,-0.1103668101131916],[126,71,70,-0.11077204719185829],[126,71,71,-0.11175159364938736],[126,71,72,-0.1140778511762619],[126,71,73,-0.1169961504638195],[126,71,74,-0.11897005140781403],[126,71,75,-0.11916235089302063],[126,71,76,-0.1170852892100811],[126,71,77,-0.1127636544406414],[126,71,78,-0.10732606425881386],[126,71,79,-0.10170260444283485],[126,72,64,-0.11730581149458885],[126,72,65,-0.11958259344100952],[126,72,66,-0.12011003121733665],[126,72,67,-0.11935695633292198],[126,72,68,-0.11840455234050751],[126,72,69,-0.1181793101131916],[126,72,70,-0.11858454719185829],[126,72,71,-0.11956409364938736],[126,72,72,-0.1218903511762619],[126,72,73,-0.1248086504638195],[126,72,74,-0.12678255140781403],[126,72,75,-0.12697485089302063],[126,72,76,-0.1248977892100811],[126,72,77,-0.1205761544406414],[126,72,78,-0.11513856425881386],[126,72,79,-0.10951510444283485],[126,73,64,-0.12511831149458885],[126,73,65,-0.12739509344100952],[126,73,66,-0.12792253121733665],[126,73,67,-0.12716945633292198],[126,73,68,-0.1262170523405075],[126,73,69,-0.1259918101131916],[126,73,70,-0.1263970471918583],[126,73,71,-0.12737659364938736],[126,73,72,-0.1297028511762619],[126,73,73,-0.1326211504638195],[126,73,74,-0.13459505140781403],[126,73,75,-0.13478735089302063],[126,73,76,-0.1327102892100811],[126,73,77,-0.1283886544406414],[126,73,78,-0.12295106425881386],[126,73,79,-0.11732760444283485],[126,74,64,-0.13293081149458885],[126,74,65,-0.13520759344100952],[126,74,66,-0.13573503121733665],[126,74,67,-0.13498195633292198],[126,74,68,-0.1340295523405075],[126,74,69,-0.1338043101131916],[126,74,70,-0.1342095471918583],[126,74,71,-0.13518909364938736],[126,74,72,-0.1375153511762619],[126,74,73,-0.1404336504638195],[126,74,74,-0.14240755140781403],[126,74,75,-0.14259985089302063],[126,74,76,-0.1405227892100811],[126,74,77,-0.1362011544406414],[126,74,78,-0.13076356425881386],[126,74,79,-0.12514010444283485],[126,75,64,-0.14074331149458885],[126,75,65,-0.14302009344100952],[126,75,66,-0.14354753121733665],[126,75,67,-0.14279445633292198],[126,75,68,-0.1418420523405075],[126,75,69,-0.1416168101131916],[126,75,70,-0.1420220471918583],[126,75,71,-0.14300159364938736],[126,75,72,-0.1453278511762619],[126,75,73,-0.1482461504638195],[126,75,74,-0.15022005140781403],[126,75,75,-0.15041235089302063],[126,75,76,-0.1483352892100811],[126,75,77,-0.1440136544406414],[126,75,78,-0.13857606425881386],[126,75,79,-0.13295260444283485],[126,76,64,-0.14855581149458885],[126,76,65,-0.15083259344100952],[126,76,66,-0.15136003121733665],[126,76,67,-0.15060695633292198],[126,76,68,-0.1496545523405075],[126,76,69,-0.1494293101131916],[126,76,70,-0.1498345471918583],[126,76,71,-0.15081409364938736],[126,76,72,-0.1531403511762619],[126,76,73,-0.1560586504638195],[126,76,74,-0.15803255140781403],[126,76,75,-0.15822485089302063],[126,76,76,-0.1561477892100811],[126,76,77,-0.1518261544406414],[126,76,78,-0.14638856425881386],[126,76,79,-0.14076510444283485],[126,77,64,-0.15636831149458885],[126,77,65,-0.15864509344100952],[126,77,66,-0.15917253121733665],[126,77,67,-0.15841945633292198],[126,77,68,-0.1574670523405075],[126,77,69,-0.1572418101131916],[126,77,70,-0.1576470471918583],[126,77,71,-0.15862659364938736],[126,77,72,-0.1609528511762619],[126,77,73,-0.1638711504638195],[126,77,74,-0.16584505140781403],[126,77,75,-0.16603735089302063],[126,77,76,-0.1639602892100811],[126,77,77,-0.1596386544406414],[126,77,78,-0.15420106425881386],[126,77,79,-0.14857760444283485],[126,78,64,-0.16418081149458885],[126,78,65,-0.16645759344100952],[126,78,66,-0.16698503121733665],[126,78,67,-0.16623195633292198],[126,78,68,-0.1652795523405075],[126,78,69,-0.1650543101131916],[126,78,70,-0.1654595471918583],[126,78,71,-0.16643909364938736],[126,78,72,-0.1687653511762619],[126,78,73,-0.1716836504638195],[126,78,74,-0.17365755140781403],[126,78,75,-0.17384985089302063],[126,78,76,-0.1717727892100811],[126,78,77,-0.1674511544406414],[126,78,78,-0.16201356425881386],[126,78,79,-0.15639010444283485],[126,79,64,-0.17199331149458885],[126,79,65,-0.17427009344100952],[126,79,66,-0.17479753121733665],[126,79,67,-0.17404445633292198],[126,79,68,-0.1730920523405075],[126,79,69,-0.1728668101131916],[126,79,70,-0.1732720471918583],[126,79,71,-0.17425159364938736],[126,79,72,-0.1765778511762619],[126,79,73,-0.1794961504638195],[126,79,74,-0.18147005140781403],[126,79,75,-0.18166235089302063],[126,79,76,-0.1795852892100811],[126,79,77,-0.1752636544406414],[126,79,78,-0.16982606425881386],[126,79,79,-0.16420260444283485],[126,80,64,-0.17980581149458885],[126,80,65,-0.18208259344100952],[126,80,66,-0.18261003121733665],[126,80,67,-0.18185695633292198],[126,80,68,-0.1809045523405075],[126,80,69,-0.1806793101131916],[126,80,70,-0.1810845471918583],[126,80,71,-0.18206409364938736],[126,80,72,-0.1843903511762619],[126,80,73,-0.1873086504638195],[126,80,74,-0.18928255140781403],[126,80,75,-0.18947485089302063],[126,80,76,-0.1873977892100811],[126,80,77,-0.1830761544406414],[126,80,78,-0.17763856425881386],[126,80,79,-0.17201510444283485],[126,81,64,-0.18761831149458885],[126,81,65,-0.18989509344100952],[126,81,66,-0.19042253121733665],[126,81,67,-0.18966945633292198],[126,81,68,-0.1887170523405075],[126,81,69,-0.1884918101131916],[126,81,70,-0.1888970471918583],[126,81,71,-0.18987659364938736],[126,81,72,-0.1922028511762619],[126,81,73,-0.1951211504638195],[126,81,74,-0.19709505140781403],[126,81,75,-0.19728735089302063],[126,81,76,-0.1952102892100811],[126,81,77,-0.1908886544406414],[126,81,78,-0.18545106425881386],[126,81,79,-0.17982760444283485],[126,82,64,-0.19543081149458885],[126,82,65,-0.19770759344100952],[126,82,66,-0.19823503121733665],[126,82,67,-0.19748195633292198],[126,82,68,-0.1965295523405075],[126,82,69,-0.1963043101131916],[126,82,70,-0.1967095471918583],[126,82,71,-0.19768909364938736],[126,82,72,-0.2000153511762619],[126,82,73,-0.2029336504638195],[126,82,74,-0.20490755140781403],[126,82,75,-0.20509985089302063],[126,82,76,-0.2030227892100811],[126,82,77,-0.1987011544406414],[126,82,78,-0.19326356425881386],[126,82,79,-0.18764010444283485],[126,83,64,-0.20324331149458885],[126,83,65,-0.20552009344100952],[126,83,66,-0.20604753121733665],[126,83,67,-0.20529445633292198],[126,83,68,-0.2043420523405075],[126,83,69,-0.2041168101131916],[126,83,70,-0.2045220471918583],[126,83,71,-0.20550159364938736],[126,83,72,-0.2078278511762619],[126,83,73,-0.2107461504638195],[126,83,74,-0.21272005140781403],[126,83,75,-0.21291235089302063],[126,83,76,-0.2108352892100811],[126,83,77,-0.2065136544406414],[126,83,78,-0.20107606425881386],[126,83,79,-0.19545260444283485],[126,84,64,-0.21105581149458885],[126,84,65,-0.21333259344100952],[126,84,66,-0.21386003121733665],[126,84,67,-0.21310695633292198],[126,84,68,-0.2121545523405075],[126,84,69,-0.2119293101131916],[126,84,70,-0.2123345471918583],[126,84,71,-0.21331409364938736],[126,84,72,-0.2156403511762619],[126,84,73,-0.2185586504638195],[126,84,74,-0.22053255140781403],[126,84,75,-0.22072485089302063],[126,84,76,-0.2186477892100811],[126,84,77,-0.2143261544406414],[126,84,78,-0.20888856425881386],[126,84,79,-0.20326510444283485],[126,85,64,-0.21886831149458885],[126,85,65,-0.22114509344100952],[126,85,66,-0.22167253121733665],[126,85,67,-0.22091945633292198],[126,85,68,-0.2199670523405075],[126,85,69,-0.2197418101131916],[126,85,70,-0.2201470471918583],[126,85,71,-0.22112659364938736],[126,85,72,-0.2234528511762619],[126,85,73,-0.2263711504638195],[126,85,74,-0.22834505140781403],[126,85,75,-0.22853735089302063],[126,85,76,-0.2264602892100811],[126,85,77,-0.2221386544406414],[126,85,78,-0.21670106425881386],[126,85,79,-0.21107760444283485],[126,86,64,-0.22668081149458885],[126,86,65,-0.22895759344100952],[126,86,66,-0.22948503121733665],[126,86,67,-0.22873195633292198],[126,86,68,-0.2277795523405075],[126,86,69,-0.2275543101131916],[126,86,70,-0.2279595471918583],[126,86,71,-0.22893909364938736],[126,86,72,-0.2312653511762619],[126,86,73,-0.2341836504638195],[126,86,74,-0.23615755140781403],[126,86,75,-0.23634985089302063],[126,86,76,-0.2342727892100811],[126,86,77,-0.2299511544406414],[126,86,78,-0.22451356425881386],[126,86,79,-0.21889010444283485],[126,87,64,-0.23449331149458885],[126,87,65,-0.23677009344100952],[126,87,66,-0.23729753121733665],[126,87,67,-0.23654445633292198],[126,87,68,-0.2355920523405075],[126,87,69,-0.2353668101131916],[126,87,70,-0.2357720471918583],[126,87,71,-0.23675159364938736],[126,87,72,-0.2390778511762619],[126,87,73,-0.2419961504638195],[126,87,74,-0.24397005140781403],[126,87,75,-0.24416235089302063],[126,87,76,-0.2420852892100811],[126,87,77,-0.2377636544406414],[126,87,78,-0.23232606425881386],[126,87,79,-0.22670260444283485],[126,88,64,-0.24230581149458885],[126,88,65,-0.24458259344100952],[126,88,66,-0.24511003121733665],[126,88,67,-0.24435695633292198],[126,88,68,-0.2434045523405075],[126,88,69,-0.2431793101131916],[126,88,70,-0.2435845471918583],[126,88,71,-0.24456409364938736],[126,88,72,-0.2468903511762619],[126,88,73,-0.2498086504638195],[126,88,74,-0.251782551407814],[126,88,75,-0.25197485089302063],[126,88,76,-0.2498977892100811],[126,88,77,-0.2455761544406414],[126,88,78,-0.24013856425881386],[126,88,79,-0.23451510444283485],[126,89,64,-0.25011831149458885],[126,89,65,-0.2523950934410095],[126,89,66,-0.25292253121733665],[126,89,67,-0.252169456332922],[126,89,68,-0.2512170523405075],[126,89,69,-0.2509918101131916],[126,89,70,-0.2513970471918583],[126,89,71,-0.25237659364938736],[126,89,72,-0.2547028511762619],[126,89,73,-0.2576211504638195],[126,89,74,-0.259595051407814],[126,89,75,-0.25978735089302063],[126,89,76,-0.2577102892100811],[126,89,77,-0.2533886544406414],[126,89,78,-0.24795106425881386],[126,89,79,-0.24232760444283485],[126,90,64,-0.25793081149458885],[126,90,65,-0.2602075934410095],[126,90,66,-0.26073503121733665],[126,90,67,-0.259981956332922],[126,90,68,-0.2590295523405075],[126,90,69,-0.2588043101131916],[126,90,70,-0.2592095471918583],[126,90,71,-0.26018909364938736],[126,90,72,-0.2625153511762619],[126,90,73,-0.2654336504638195],[126,90,74,-0.267407551407814],[126,90,75,-0.26759985089302063],[126,90,76,-0.2655227892100811],[126,90,77,-0.2612011544406414],[126,90,78,-0.25576356425881386],[126,90,79,-0.25014010444283485],[126,91,64,-0.26574331149458885],[126,91,65,-0.2680200934410095],[126,91,66,-0.26854753121733665],[126,91,67,-0.267794456332922],[126,91,68,-0.2668420523405075],[126,91,69,-0.2666168101131916],[126,91,70,-0.2670220471918583],[126,91,71,-0.26800159364938736],[126,91,72,-0.2703278511762619],[126,91,73,-0.2732461504638195],[126,91,74,-0.275220051407814],[126,91,75,-0.27541235089302063],[126,91,76,-0.2733352892100811],[126,91,77,-0.2690136544406414],[126,91,78,-0.26357606425881386],[126,91,79,-0.25795260444283485],[126,92,64,-0.27355581149458885],[126,92,65,-0.2758325934410095],[126,92,66,-0.27636003121733665],[126,92,67,-0.275606956332922],[126,92,68,-0.2746545523405075],[126,92,69,-0.2744293101131916],[126,92,70,-0.2748345471918583],[126,92,71,-0.27581409364938736],[126,92,72,-0.2781403511762619],[126,92,73,-0.2810586504638195],[126,92,74,-0.283032551407814],[126,92,75,-0.28322485089302063],[126,92,76,-0.2811477892100811],[126,92,77,-0.2768261544406414],[126,92,78,-0.27138856425881386],[126,92,79,-0.26576510444283485],[126,93,64,-0.28136831149458885],[126,93,65,-0.2836450934410095],[126,93,66,-0.28417253121733665],[126,93,67,-0.283419456332922],[126,93,68,-0.2824670523405075],[126,93,69,-0.2822418101131916],[126,93,70,-0.2826470471918583],[126,93,71,-0.28362659364938736],[126,93,72,-0.2859528511762619],[126,93,73,-0.2888711504638195],[126,93,74,-0.290845051407814],[126,93,75,-0.29103735089302063],[126,93,76,-0.2889602892100811],[126,93,77,-0.2846386544406414],[126,93,78,-0.27920106425881386],[126,93,79,-0.27357760444283485],[126,94,64,-0.28918081149458885],[126,94,65,-0.2914575934410095],[126,94,66,-0.29198503121733665],[126,94,67,-0.291231956332922],[126,94,68,-0.2902795523405075],[126,94,69,-0.2900543101131916],[126,94,70,-0.2904595471918583],[126,94,71,-0.29143909364938736],[126,94,72,-0.2937653511762619],[126,94,73,-0.2966836504638195],[126,94,74,-0.298657551407814],[126,94,75,-0.29884985089302063],[126,94,76,-0.2967727892100811],[126,94,77,-0.2924511544406414],[126,94,78,-0.28701356425881386],[126,94,79,-0.28139010444283485],[126,95,64,-0.29699331149458885],[126,95,65,-0.2992700934410095],[126,95,66,-0.29979753121733665],[126,95,67,-0.299044456332922],[126,95,68,-0.2980920523405075],[126,95,69,-0.2978668101131916],[126,95,70,-0.2982720471918583],[126,95,71,-0.29925159364938736],[126,95,72,-0.3015778511762619],[126,95,73,-0.3044961504638195],[126,95,74,-0.306470051407814],[126,95,75,-0.30666235089302063],[126,95,76,-0.3045852892100811],[126,95,77,-0.3002636544406414],[126,95,78,-0.29482606425881386],[126,95,79,-0.28920260444283485],[126,96,64,-0.30480581149458885],[126,96,65,-0.3070825934410095],[126,96,66,-0.30761003121733665],[126,96,67,-0.306856956332922],[126,96,68,-0.3059045523405075],[126,96,69,-0.3056793101131916],[126,96,70,-0.3060845471918583],[126,96,71,-0.30706409364938736],[126,96,72,-0.3093903511762619],[126,96,73,-0.3123086504638195],[126,96,74,-0.314282551407814],[126,96,75,-0.31447485089302063],[126,96,76,-0.3123977892100811],[126,96,77,-0.3080761544406414],[126,96,78,-0.30263856425881386],[126,96,79,-0.29701510444283485],[126,97,64,-0.31261831149458885],[126,97,65,-0.3148950934410095],[126,97,66,-0.31542253121733665],[126,97,67,-0.314669456332922],[126,97,68,-0.3137170523405075],[126,97,69,-0.3134918101131916],[126,97,70,-0.3138970471918583],[126,97,71,-0.31487659364938736],[126,97,72,-0.3172028511762619],[126,97,73,-0.3201211504638195],[126,97,74,-0.322095051407814],[126,97,75,-0.32228735089302063],[126,97,76,-0.3202102892100811],[126,97,77,-0.3158886544406414],[126,97,78,-0.31045106425881386],[126,97,79,-0.30482760444283485],[126,98,64,-0.32043081149458885],[126,98,65,-0.3227075934410095],[126,98,66,-0.32323503121733665],[126,98,67,-0.322481956332922],[126,98,68,-0.3215295523405075],[126,98,69,-0.3213043101131916],[126,98,70,-0.3217095471918583],[126,98,71,-0.32268909364938736],[126,98,72,-0.3250153511762619],[126,98,73,-0.3279336504638195],[126,98,74,-0.329907551407814],[126,98,75,-0.33009985089302063],[126,98,76,-0.3280227892100811],[126,98,77,-0.3237011544406414],[126,98,78,-0.31826356425881386],[126,98,79,-0.31264010444283485],[126,99,64,-0.32824331149458885],[126,99,65,-0.3305200934410095],[126,99,66,-0.33104753121733665],[126,99,67,-0.330294456332922],[126,99,68,-0.3293420523405075],[126,99,69,-0.3291168101131916],[126,99,70,-0.3295220471918583],[126,99,71,-0.33050159364938736],[126,99,72,-0.3328278511762619],[126,99,73,-0.3357461504638195],[126,99,74,-0.337720051407814],[126,99,75,-0.33791235089302063],[126,99,76,-0.3358352892100811],[126,99,77,-0.3315136544406414],[126,99,78,-0.32607606425881386],[126,99,79,-0.32045260444283485],[126,100,64,-0.33605581149458885],[126,100,65,-0.3383325934410095],[126,100,66,-0.33886003121733665],[126,100,67,-0.338106956332922],[126,100,68,-0.3371545523405075],[126,100,69,-0.3369293101131916],[126,100,70,-0.3373345471918583],[126,100,71,-0.33831409364938736],[126,100,72,-0.3406403511762619],[126,100,73,-0.3435586504638195],[126,100,74,-0.345532551407814],[126,100,75,-0.34572485089302063],[126,100,76,-0.3436477892100811],[126,100,77,-0.3393261544406414],[126,100,78,-0.33388856425881386],[126,100,79,-0.32826510444283485],[126,101,64,-0.34386831149458885],[126,101,65,-0.3461450934410095],[126,101,66,-0.34667253121733665],[126,101,67,-0.345919456332922],[126,101,68,-0.3449670523405075],[126,101,69,-0.3447418101131916],[126,101,70,-0.3451470471918583],[126,101,71,-0.34612659364938736],[126,101,72,-0.3484528511762619],[126,101,73,-0.3513711504638195],[126,101,74,-0.353345051407814],[126,101,75,-0.35353735089302063],[126,101,76,-0.3514602892100811],[126,101,77,-0.3471386544406414],[126,101,78,-0.34170106425881386],[126,101,79,-0.33607760444283485],[126,102,64,-0.35168081149458885],[126,102,65,-0.3539575934410095],[126,102,66,-0.35448503121733665],[126,102,67,-0.353731956332922],[126,102,68,-0.3527795523405075],[126,102,69,-0.3525543101131916],[126,102,70,-0.3529595471918583],[126,102,71,-0.35393909364938736],[126,102,72,-0.3562653511762619],[126,102,73,-0.3591836504638195],[126,102,74,-0.361157551407814],[126,102,75,-0.36134985089302063],[126,102,76,-0.3592727892100811],[126,102,77,-0.3549511544406414],[126,102,78,-0.34951356425881386],[126,102,79,-0.34389010444283485],[126,103,64,-0.35949331149458885],[126,103,65,-0.3617700934410095],[126,103,66,-0.36229753121733665],[126,103,67,-0.361544456332922],[126,103,68,-0.3605920523405075],[126,103,69,-0.3603668101131916],[126,103,70,-0.3607720471918583],[126,103,71,-0.36175159364938736],[126,103,72,-0.3640778511762619],[126,103,73,-0.3669961504638195],[126,103,74,-0.368970051407814],[126,103,75,-0.36916235089302063],[126,103,76,-0.3670852892100811],[126,103,77,-0.3627636544406414],[126,103,78,-0.35732606425881386],[126,103,79,-0.35170260444283485],[126,104,64,-0.36730581149458885],[126,104,65,-0.3695825934410095],[126,104,66,-0.37011003121733665],[126,104,67,-0.369356956332922],[126,104,68,-0.3684045523405075],[126,104,69,-0.3681793101131916],[126,104,70,-0.3685845471918583],[126,104,71,-0.36956409364938736],[126,104,72,-0.3718903511762619],[126,104,73,-0.3748086504638195],[126,104,74,-0.376782551407814],[126,104,75,-0.37697485089302063],[126,104,76,-0.3748977892100811],[126,104,77,-0.3705761544406414],[126,104,78,-0.36513856425881386],[126,104,79,-0.35951510444283485],[126,105,64,-0.37511831149458885],[126,105,65,-0.3773950934410095],[126,105,66,-0.37792253121733665],[126,105,67,-0.377169456332922],[126,105,68,-0.3762170523405075],[126,105,69,-0.3759918101131916],[126,105,70,-0.3763970471918583],[126,105,71,-0.37737659364938736],[126,105,72,-0.3797028511762619],[126,105,73,-0.3826211504638195],[126,105,74,-0.384595051407814],[126,105,75,-0.38478735089302063],[126,105,76,-0.3827102892100811],[126,105,77,-0.3783886544406414],[126,105,78,-0.37295106425881386],[126,105,79,-0.36732760444283485],[126,106,64,-0.38293081149458885],[126,106,65,-0.3852075934410095],[126,106,66,-0.38573503121733665],[126,106,67,-0.384981956332922],[126,106,68,-0.3840295523405075],[126,106,69,-0.3838043101131916],[126,106,70,-0.3842095471918583],[126,106,71,-0.38518909364938736],[126,106,72,-0.3875153511762619],[126,106,73,-0.3904336504638195],[126,106,74,-0.392407551407814],[126,106,75,-0.39259985089302063],[126,106,76,-0.3905227892100811],[126,106,77,-0.3862011544406414],[126,106,78,-0.38076356425881386],[126,106,79,-0.37514010444283485],[126,107,64,-0.39074331149458885],[126,107,65,-0.3930200934410095],[126,107,66,-0.39354753121733665],[126,107,67,-0.392794456332922],[126,107,68,-0.3918420523405075],[126,107,69,-0.3916168101131916],[126,107,70,-0.3920220471918583],[126,107,71,-0.39300159364938736],[126,107,72,-0.3953278511762619],[126,107,73,-0.3982461504638195],[126,107,74,-0.400220051407814],[126,107,75,-0.40041235089302063],[126,107,76,-0.3983352892100811],[126,107,77,-0.3940136544406414],[126,107,78,-0.38857606425881386],[126,107,79,-0.38295260444283485],[126,108,64,-0.39855581149458885],[126,108,65,-0.4008325934410095],[126,108,66,-0.40136003121733665],[126,108,67,-0.400606956332922],[126,108,68,-0.3996545523405075],[126,108,69,-0.3994293101131916],[126,108,70,-0.3998345471918583],[126,108,71,-0.40081409364938736],[126,108,72,-0.4031403511762619],[126,108,73,-0.4060586504638195],[126,108,74,-0.408032551407814],[126,108,75,-0.40822485089302063],[126,108,76,-0.4061477892100811],[126,108,77,-0.4018261544406414],[126,108,78,-0.39638856425881386],[126,108,79,-0.39076510444283485],[126,109,64,-0.40636831149458885],[126,109,65,-0.4086450934410095],[126,109,66,-0.40917253121733665],[126,109,67,-0.408419456332922],[126,109,68,-0.4074670523405075],[126,109,69,-0.4072418101131916],[126,109,70,-0.4076470471918583],[126,109,71,-0.40862659364938736],[126,109,72,-0.4109528511762619],[126,109,73,-0.4138711504638195],[126,109,74,-0.415845051407814],[126,109,75,-0.41603735089302063],[126,109,76,-0.4139602892100811],[126,109,77,-0.4096386544406414],[126,109,78,-0.40420106425881386],[126,109,79,-0.39857760444283485],[126,110,64,-0.41418081149458885],[126,110,65,-0.4164575934410095],[126,110,66,-0.41698503121733665],[126,110,67,-0.416231956332922],[126,110,68,-0.4152795523405075],[126,110,69,-0.4150543101131916],[126,110,70,-0.4154595471918583],[126,110,71,-0.41643909364938736],[126,110,72,-0.4187653511762619],[126,110,73,-0.4216836504638195],[126,110,74,-0.423657551407814],[126,110,75,-0.42384985089302063],[126,110,76,-0.4217727892100811],[126,110,77,-0.4174511544406414],[126,110,78,-0.41201356425881386],[126,110,79,-0.40639010444283485],[126,111,64,-0.42199331149458885],[126,111,65,-0.4242700934410095],[126,111,66,-0.42479753121733665],[126,111,67,-0.424044456332922],[126,111,68,-0.4230920523405075],[126,111,69,-0.4228668101131916],[126,111,70,-0.4232720471918583],[126,111,71,-0.42425159364938736],[126,111,72,-0.4265778511762619],[126,111,73,-0.4294961504638195],[126,111,74,-0.431470051407814],[126,111,75,-0.43166235089302063],[126,111,76,-0.4295852892100811],[126,111,77,-0.4252636544406414],[126,111,78,-0.41982606425881386],[126,111,79,-0.41420260444283485],[126,112,64,-0.42980581149458885],[126,112,65,-0.4320825934410095],[126,112,66,-0.43261003121733665],[126,112,67,-0.431856956332922],[126,112,68,-0.4309045523405075],[126,112,69,-0.4306793101131916],[126,112,70,-0.4310845471918583],[126,112,71,-0.43206409364938736],[126,112,72,-0.4343903511762619],[126,112,73,-0.4373086504638195],[126,112,74,-0.439282551407814],[126,112,75,-0.43947485089302063],[126,112,76,-0.4373977892100811],[126,112,77,-0.4330761544406414],[126,112,78,-0.42763856425881386],[126,112,79,-0.42201510444283485],[126,113,64,-0.43761831149458885],[126,113,65,-0.4398950934410095],[126,113,66,-0.44042253121733665],[126,113,67,-0.439669456332922],[126,113,68,-0.4387170523405075],[126,113,69,-0.4384918101131916],[126,113,70,-0.4388970471918583],[126,113,71,-0.43987659364938736],[126,113,72,-0.4422028511762619],[126,113,73,-0.4451211504638195],[126,113,74,-0.447095051407814],[126,113,75,-0.44728735089302063],[126,113,76,-0.4452102892100811],[126,113,77,-0.4408886544406414],[126,113,78,-0.43545106425881386],[126,113,79,-0.42982760444283485],[126,114,64,-0.44543081149458885],[126,114,65,-0.4477075934410095],[126,114,66,-0.44823503121733665],[126,114,67,-0.447481956332922],[126,114,68,-0.4465295523405075],[126,114,69,-0.4463043101131916],[126,114,70,-0.4467095471918583],[126,114,71,-0.44768909364938736],[126,114,72,-0.4500153511762619],[126,114,73,-0.4529336504638195],[126,114,74,-0.454907551407814],[126,114,75,-0.45509985089302063],[126,114,76,-0.4530227892100811],[126,114,77,-0.4487011544406414],[126,114,78,-0.44326356425881386],[126,114,79,-0.43764010444283485],[126,115,64,-0.45324331149458885],[126,115,65,-0.4555200934410095],[126,115,66,-0.45604753121733665],[126,115,67,-0.455294456332922],[126,115,68,-0.4543420523405075],[126,115,69,-0.4541168101131916],[126,115,70,-0.4545220471918583],[126,115,71,-0.45550159364938736],[126,115,72,-0.4578278511762619],[126,115,73,-0.4607461504638195],[126,115,74,-0.462720051407814],[126,115,75,-0.46291235089302063],[126,115,76,-0.4608352892100811],[126,115,77,-0.4565136544406414],[126,115,78,-0.45107606425881386],[126,115,79,-0.44545260444283485],[126,116,64,-0.46105581149458885],[126,116,65,-0.4633325934410095],[126,116,66,-0.46386003121733665],[126,116,67,-0.463106956332922],[126,116,68,-0.4621545523405075],[126,116,69,-0.4619293101131916],[126,116,70,-0.4623345471918583],[126,116,71,-0.46331409364938736],[126,116,72,-0.4656403511762619],[126,116,73,-0.4685586504638195],[126,116,74,-0.470532551407814],[126,116,75,-0.47072485089302063],[126,116,76,-0.4686477892100811],[126,116,77,-0.4643261544406414],[126,116,78,-0.45888856425881386],[126,116,79,-0.45326510444283485],[126,117,64,-0.46886831149458885],[126,117,65,-0.4711450934410095],[126,117,66,-0.47167253121733665],[126,117,67,-0.470919456332922],[126,117,68,-0.4699670523405075],[126,117,69,-0.4697418101131916],[126,117,70,-0.4701470471918583],[126,117,71,-0.47112659364938736],[126,117,72,-0.4734528511762619],[126,117,73,-0.4763711504638195],[126,117,74,-0.478345051407814],[126,117,75,-0.47853735089302063],[126,117,76,-0.4764602892100811],[126,117,77,-0.4721386544406414],[126,117,78,-0.46670106425881386],[126,117,79,-0.46107760444283485],[126,118,64,-0.47668081149458885],[126,118,65,-0.4789575934410095],[126,118,66,-0.47948503121733665],[126,118,67,-0.478731956332922],[126,118,68,-0.4777795523405075],[126,118,69,-0.4775543101131916],[126,118,70,-0.4779595471918583],[126,118,71,-0.47893909364938736],[126,118,72,-0.4812653511762619],[126,118,73,-0.4841836504638195],[126,118,74,-0.486157551407814],[126,118,75,-0.48634985089302063],[126,118,76,-0.4842727892100811],[126,118,77,-0.4799511544406414],[126,118,78,-0.47451356425881386],[126,118,79,-0.46889010444283485],[126,119,64,-0.48449331149458885],[126,119,65,-0.4867700934410095],[126,119,66,-0.48729753121733665],[126,119,67,-0.486544456332922],[126,119,68,-0.4855920523405075],[126,119,69,-0.4853668101131916],[126,119,70,-0.4857720471918583],[126,119,71,-0.48675159364938736],[126,119,72,-0.4890778511762619],[126,119,73,-0.4919961504638195],[126,119,74,-0.493970051407814],[126,119,75,-0.49416235089302063],[126,119,76,-0.4920852892100811],[126,119,77,-0.4877636544406414],[126,119,78,-0.48232606425881386],[126,119,79,-0.47670260444283485],[126,120,64,-0.49230581149458885],[126,120,65,-0.4945825934410095],[126,120,66,-0.49511003121733665],[126,120,67,-0.494356956332922],[126,120,68,-0.4934045523405075],[126,120,69,-0.4931793101131916],[126,120,70,-0.4935845471918583],[126,120,71,-0.49456409364938736],[126,120,72,-0.4968903511762619],[126,120,73,-0.4998086504638195],[126,120,74,-0.501782551407814],[126,120,75,-0.5019748508930206],[126,120,76,-0.4998977892100811],[126,120,77,-0.4955761544406414],[126,120,78,-0.49013856425881386],[126,120,79,-0.48451510444283485],[126,121,64,-0.5001183114945889],[126,121,65,-0.5023950934410095],[126,121,66,-0.5029225312173367],[126,121,67,-0.502169456332922],[126,121,68,-0.5012170523405075],[126,121,69,-0.5009918101131916],[126,121,70,-0.5013970471918583],[126,121,71,-0.5023765936493874],[126,121,72,-0.5047028511762619],[126,121,73,-0.5076211504638195],[126,121,74,-0.509595051407814],[126,121,75,-0.5097873508930206],[126,121,76,-0.5077102892100811],[126,121,77,-0.5033886544406414],[126,121,78,-0.49795106425881386],[126,121,79,-0.49232760444283485],[126,122,64,-0.5079308114945889],[126,122,65,-0.5102075934410095],[126,122,66,-0.5107350312173367],[126,122,67,-0.509981956332922],[126,122,68,-0.5090295523405075],[126,122,69,-0.5088043101131916],[126,122,70,-0.5092095471918583],[126,122,71,-0.5101890936493874],[126,122,72,-0.5125153511762619],[126,122,73,-0.5154336504638195],[126,122,74,-0.517407551407814],[126,122,75,-0.5175998508930206],[126,122,76,-0.5155227892100811],[126,122,77,-0.5112011544406414],[126,122,78,-0.5057635642588139],[126,122,79,-0.5001401044428349],[126,123,64,-0.5157433114945889],[126,123,65,-0.5180200934410095],[126,123,66,-0.5185475312173367],[126,123,67,-0.517794456332922],[126,123,68,-0.5168420523405075],[126,123,69,-0.5166168101131916],[126,123,70,-0.5170220471918583],[126,123,71,-0.5180015936493874],[126,123,72,-0.5203278511762619],[126,123,73,-0.5232461504638195],[126,123,74,-0.525220051407814],[126,123,75,-0.5254123508930206],[126,123,76,-0.5233352892100811],[126,123,77,-0.5190136544406414],[126,123,78,-0.5135760642588139],[126,123,79,-0.5079526044428349],[126,124,64,-0.5235558114945889],[126,124,65,-0.5258325934410095],[126,124,66,-0.5263600312173367],[126,124,67,-0.525606956332922],[126,124,68,-0.5246545523405075],[126,124,69,-0.5244293101131916],[126,124,70,-0.5248345471918583],[126,124,71,-0.5258140936493874],[126,124,72,-0.5281403511762619],[126,124,73,-0.5310586504638195],[126,124,74,-0.533032551407814],[126,124,75,-0.5332248508930206],[126,124,76,-0.5311477892100811],[126,124,77,-0.5268261544406414],[126,124,78,-0.5213885642588139],[126,124,79,-0.5157651044428349],[126,125,64,-0.5313683114945889],[126,125,65,-0.5336450934410095],[126,125,66,-0.5341725312173367],[126,125,67,-0.533419456332922],[126,125,68,-0.5324670523405075],[126,125,69,-0.5322418101131916],[126,125,70,-0.5326470471918583],[126,125,71,-0.5336265936493874],[126,125,72,-0.5359528511762619],[126,125,73,-0.5388711504638195],[126,125,74,-0.540845051407814],[126,125,75,-0.5410373508930206],[126,125,76,-0.5389602892100811],[126,125,77,-0.5346386544406414],[126,125,78,-0.5292010642588139],[126,125,79,-0.5235776044428349],[126,126,64,-0.5391808114945889],[126,126,65,-0.5414575934410095],[126,126,66,-0.5419850312173367],[126,126,67,-0.541231956332922],[126,126,68,-0.5402795523405075],[126,126,69,-0.5400543101131916],[126,126,70,-0.5404595471918583],[126,126,71,-0.5414390936493874],[126,126,72,-0.5437653511762619],[126,126,73,-0.5466836504638195],[126,126,74,-0.548657551407814],[126,126,75,-0.5488498508930206],[126,126,76,-0.5467727892100811],[126,126,77,-0.5424511544406414],[126,126,78,-0.5370135642588139],[126,126,79,-0.5313901044428349],[126,127,64,-0.5469933114945889],[126,127,65,-0.5492700934410095],[126,127,66,-0.5497975312173367],[126,127,67,-0.549044456332922],[126,127,68,-0.5480920523405075],[126,127,69,-0.5478668101131916],[126,127,70,-0.5482720471918583],[126,127,71,-0.5492515936493874],[126,127,72,-0.5515778511762619],[126,127,73,-0.5544961504638195],[126,127,74,-0.556470051407814],[126,127,75,-0.5566623508930206],[126,127,76,-0.5545852892100811],[126,127,77,-0.5502636544406414],[126,127,78,-0.5448260642588139],[126,127,79,-0.5392026044428349],[126,128,64,-0.5548058114945889],[126,128,65,-0.5570825934410095],[126,128,66,-0.5576100312173367],[126,128,67,-0.556856956332922],[126,128,68,-0.5559045523405075],[126,128,69,-0.5556793101131916],[126,128,70,-0.5560845471918583],[126,128,71,-0.5570640936493874],[126,128,72,-0.5593903511762619],[126,128,73,-0.5623086504638195],[126,128,74,-0.564282551407814],[126,128,75,-0.5644748508930206],[126,128,76,-0.5623977892100811],[126,128,77,-0.5580761544406414],[126,128,78,-0.5526385642588139],[126,128,79,-0.5470151044428349],[126,129,64,-0.5626183114945889],[126,129,65,-0.5648950934410095],[126,129,66,-0.5654225312173367],[126,129,67,-0.564669456332922],[126,129,68,-0.5637170523405075],[126,129,69,-0.5634918101131916],[126,129,70,-0.5638970471918583],[126,129,71,-0.5648765936493874],[126,129,72,-0.5672028511762619],[126,129,73,-0.5701211504638195],[126,129,74,-0.572095051407814],[126,129,75,-0.5722873508930206],[126,129,76,-0.5702102892100811],[126,129,77,-0.5658886544406414],[126,129,78,-0.5604510642588139],[126,129,79,-0.5548276044428349],[126,130,64,-0.5704308114945889],[126,130,65,-0.5727075934410095],[126,130,66,-0.5732350312173367],[126,130,67,-0.572481956332922],[126,130,68,-0.5715295523405075],[126,130,69,-0.5713043101131916],[126,130,70,-0.5717095471918583],[126,130,71,-0.5726890936493874],[126,130,72,-0.5750153511762619],[126,130,73,-0.5779336504638195],[126,130,74,-0.579907551407814],[126,130,75,-0.5800998508930206],[126,130,76,-0.5780227892100811],[126,130,77,-0.5737011544406414],[126,130,78,-0.5682635642588139],[126,130,79,-0.5626401044428349],[126,131,64,-0.5782433114945889],[126,131,65,-0.5805200934410095],[126,131,66,-0.5810475312173367],[126,131,67,-0.580294456332922],[126,131,68,-0.5793420523405075],[126,131,69,-0.5791168101131916],[126,131,70,-0.5795220471918583],[126,131,71,-0.5805015936493874],[126,131,72,-0.5828278511762619],[126,131,73,-0.5857461504638195],[126,131,74,-0.587720051407814],[126,131,75,-0.5879123508930206],[126,131,76,-0.5858352892100811],[126,131,77,-0.5815136544406414],[126,131,78,-0.5760760642588139],[126,131,79,-0.5704526044428349],[126,132,64,-0.5860558114945889],[126,132,65,-0.5883325934410095],[126,132,66,-0.5888600312173367],[126,132,67,-0.588106956332922],[126,132,68,-0.5871545523405075],[126,132,69,-0.5869293101131916],[126,132,70,-0.5873345471918583],[126,132,71,-0.5883140936493874],[126,132,72,-0.5906403511762619],[126,132,73,-0.5935586504638195],[126,132,74,-0.595532551407814],[126,132,75,-0.5957248508930206],[126,132,76,-0.5936477892100811],[126,132,77,-0.5893261544406414],[126,132,78,-0.5838885642588139],[126,132,79,-0.5782651044428349],[126,133,64,-0.5938683114945889],[126,133,65,-0.5961450934410095],[126,133,66,-0.5966725312173367],[126,133,67,-0.595919456332922],[126,133,68,-0.5949670523405075],[126,133,69,-0.5947418101131916],[126,133,70,-0.5951470471918583],[126,133,71,-0.5961265936493874],[126,133,72,-0.5984528511762619],[126,133,73,-0.6013711504638195],[126,133,74,-0.603345051407814],[126,133,75,-0.6035373508930206],[126,133,76,-0.6014602892100811],[126,133,77,-0.5971386544406414],[126,133,78,-0.5917010642588139],[126,133,79,-0.5860776044428349],[126,134,64,-0.6016808114945889],[126,134,65,-0.6039575934410095],[126,134,66,-0.6044850312173367],[126,134,67,-0.603731956332922],[126,134,68,-0.6027795523405075],[126,134,69,-0.6025543101131916],[126,134,70,-0.6029595471918583],[126,134,71,-0.6039390936493874],[126,134,72,-0.6062653511762619],[126,134,73,-0.6091836504638195],[126,134,74,-0.611157551407814],[126,134,75,-0.6113498508930206],[126,134,76,-0.6092727892100811],[126,134,77,-0.6049511544406414],[126,134,78,-0.5995135642588139],[126,134,79,-0.5938901044428349],[126,135,64,-0.6094933114945889],[126,135,65,-0.6117700934410095],[126,135,66,-0.6122975312173367],[126,135,67,-0.611544456332922],[126,135,68,-0.6105920523405075],[126,135,69,-0.6103668101131916],[126,135,70,-0.6107720471918583],[126,135,71,-0.6117515936493874],[126,135,72,-0.6140778511762619],[126,135,73,-0.6169961504638195],[126,135,74,-0.618970051407814],[126,135,75,-0.6191623508930206],[126,135,76,-0.6170852892100811],[126,135,77,-0.6127636544406414],[126,135,78,-0.6073260642588139],[126,135,79,-0.6017026044428349],[126,136,64,-0.6173058114945889],[126,136,65,-0.6195825934410095],[126,136,66,-0.6201100312173367],[126,136,67,-0.619356956332922],[126,136,68,-0.6184045523405075],[126,136,69,-0.6181793101131916],[126,136,70,-0.6185845471918583],[126,136,71,-0.6195640936493874],[126,136,72,-0.6218903511762619],[126,136,73,-0.6248086504638195],[126,136,74,-0.626782551407814],[126,136,75,-0.6269748508930206],[126,136,76,-0.6248977892100811],[126,136,77,-0.6205761544406414],[126,136,78,-0.6151385642588139],[126,136,79,-0.6095151044428349],[126,137,64,-0.6251183114945889],[126,137,65,-0.6273950934410095],[126,137,66,-0.6279225312173367],[126,137,67,-0.627169456332922],[126,137,68,-0.6262170523405075],[126,137,69,-0.6259918101131916],[126,137,70,-0.6263970471918583],[126,137,71,-0.6273765936493874],[126,137,72,-0.6297028511762619],[126,137,73,-0.6326211504638195],[126,137,74,-0.634595051407814],[126,137,75,-0.6347873508930206],[126,137,76,-0.6327102892100811],[126,137,77,-0.6283886544406414],[126,137,78,-0.6229510642588139],[126,137,79,-0.6173276044428349],[126,138,64,-0.6329308114945889],[126,138,65,-0.6352075934410095],[126,138,66,-0.6357350312173367],[126,138,67,-0.634981956332922],[126,138,68,-0.6340295523405075],[126,138,69,-0.6338043101131916],[126,138,70,-0.6342095471918583],[126,138,71,-0.6351890936493874],[126,138,72,-0.6375153511762619],[126,138,73,-0.6404336504638195],[126,138,74,-0.642407551407814],[126,138,75,-0.6425998508930206],[126,138,76,-0.6405227892100811],[126,138,77,-0.6362011544406414],[126,138,78,-0.6307635642588139],[126,138,79,-0.6251401044428349],[126,139,64,-0.6407433114945889],[126,139,65,-0.6430200934410095],[126,139,66,-0.6435475312173367],[126,139,67,-0.642794456332922],[126,139,68,-0.6418420523405075],[126,139,69,-0.6416168101131916],[126,139,70,-0.6420220471918583],[126,139,71,-0.6430015936493874],[126,139,72,-0.6453278511762619],[126,139,73,-0.6482461504638195],[126,139,74,-0.650220051407814],[126,139,75,-0.6504123508930206],[126,139,76,-0.6483352892100811],[126,139,77,-0.6440136544406414],[126,139,78,-0.6385760642588139],[126,139,79,-0.6329526044428349],[126,140,64,-0.6485558114945889],[126,140,65,-0.6508325934410095],[126,140,66,-0.6513600312173367],[126,140,67,-0.650606956332922],[126,140,68,-0.6496545523405075],[126,140,69,-0.6494293101131916],[126,140,70,-0.6498345471918583],[126,140,71,-0.6508140936493874],[126,140,72,-0.6531403511762619],[126,140,73,-0.6560586504638195],[126,140,74,-0.658032551407814],[126,140,75,-0.6582248508930206],[126,140,76,-0.6561477892100811],[126,140,77,-0.6518261544406414],[126,140,78,-0.6463885642588139],[126,140,79,-0.6407651044428349],[126,141,64,-0.6563683114945889],[126,141,65,-0.6586450934410095],[126,141,66,-0.6591725312173367],[126,141,67,-0.658419456332922],[126,141,68,-0.6574670523405075],[126,141,69,-0.6572418101131916],[126,141,70,-0.6576470471918583],[126,141,71,-0.6586265936493874],[126,141,72,-0.6609528511762619],[126,141,73,-0.6638711504638195],[126,141,74,-0.665845051407814],[126,141,75,-0.6660373508930206],[126,141,76,-0.6639602892100811],[126,141,77,-0.6596386544406414],[126,141,78,-0.6542010642588139],[126,141,79,-0.6485776044428349],[126,142,64,-0.6641808114945889],[126,142,65,-0.6664575934410095],[126,142,66,-0.6669850312173367],[126,142,67,-0.666231956332922],[126,142,68,-0.6652795523405075],[126,142,69,-0.6650543101131916],[126,142,70,-0.6654595471918583],[126,142,71,-0.6664390936493874],[126,142,72,-0.6687653511762619],[126,142,73,-0.6716836504638195],[126,142,74,-0.673657551407814],[126,142,75,-0.6738498508930206],[126,142,76,-0.6717727892100811],[126,142,77,-0.6674511544406414],[126,142,78,-0.6620135642588139],[126,142,79,-0.6563901044428349],[126,143,64,-0.6719933114945889],[126,143,65,-0.6742700934410095],[126,143,66,-0.6747975312173367],[126,143,67,-0.674044456332922],[126,143,68,-0.6730920523405075],[126,143,69,-0.6728668101131916],[126,143,70,-0.6732720471918583],[126,143,71,-0.6742515936493874],[126,143,72,-0.6765778511762619],[126,143,73,-0.6794961504638195],[126,143,74,-0.681470051407814],[126,143,75,-0.6816623508930206],[126,143,76,-0.6795852892100811],[126,143,77,-0.6752636544406414],[126,143,78,-0.6698260642588139],[126,143,79,-0.6642026044428349],[126,144,64,-0.6798058114945889],[126,144,65,-0.6820825934410095],[126,144,66,-0.6826100312173367],[126,144,67,-0.681856956332922],[126,144,68,-0.6809045523405075],[126,144,69,-0.6806793101131916],[126,144,70,-0.6810845471918583],[126,144,71,-0.6820640936493874],[126,144,72,-0.6843903511762619],[126,144,73,-0.6873086504638195],[126,144,74,-0.689282551407814],[126,144,75,-0.6894748508930206],[126,144,76,-0.6873977892100811],[126,144,77,-0.6830761544406414],[126,144,78,-0.6776385642588139],[126,144,79,-0.6720151044428349],[126,145,64,-0.6876183114945889],[126,145,65,-0.6898950934410095],[126,145,66,-0.6904225312173367],[126,145,67,-0.689669456332922],[126,145,68,-0.6887170523405075],[126,145,69,-0.6884918101131916],[126,145,70,-0.6888970471918583],[126,145,71,-0.6898765936493874],[126,145,72,-0.6922028511762619],[126,145,73,-0.6951211504638195],[126,145,74,-0.697095051407814],[126,145,75,-0.6972873508930206],[126,145,76,-0.6952102892100811],[126,145,77,-0.6908886544406414],[126,145,78,-0.6854510642588139],[126,145,79,-0.6798276044428349],[126,146,64,-0.6954308114945889],[126,146,65,-0.6977075934410095],[126,146,66,-0.6982350312173367],[126,146,67,-0.697481956332922],[126,146,68,-0.6965295523405075],[126,146,69,-0.6963043101131916],[126,146,70,-0.6967095471918583],[126,146,71,-0.6976890936493874],[126,146,72,-0.7000153511762619],[126,146,73,-0.7029336504638195],[126,146,74,-0.704907551407814],[126,146,75,-0.7050998508930206],[126,146,76,-0.7030227892100811],[126,146,77,-0.6987011544406414],[126,146,78,-0.6932635642588139],[126,146,79,-0.6876401044428349],[126,147,64,-0.7032433114945889],[126,147,65,-0.7055200934410095],[126,147,66,-0.7060475312173367],[126,147,67,-0.705294456332922],[126,147,68,-0.7043420523405075],[126,147,69,-0.7041168101131916],[126,147,70,-0.7045220471918583],[126,147,71,-0.7055015936493874],[126,147,72,-0.7078278511762619],[126,147,73,-0.7107461504638195],[126,147,74,-0.712720051407814],[126,147,75,-0.7129123508930206],[126,147,76,-0.7108352892100811],[126,147,77,-0.7065136544406414],[126,147,78,-0.7010760642588139],[126,147,79,-0.6954526044428349],[126,148,64,-0.7110558114945889],[126,148,65,-0.7133325934410095],[126,148,66,-0.7138600312173367],[126,148,67,-0.713106956332922],[126,148,68,-0.7121545523405075],[126,148,69,-0.7119293101131916],[126,148,70,-0.7123345471918583],[126,148,71,-0.7133140936493874],[126,148,72,-0.7156403511762619],[126,148,73,-0.7185586504638195],[126,148,74,-0.720532551407814],[126,148,75,-0.7207248508930206],[126,148,76,-0.7186477892100811],[126,148,77,-0.7143261544406414],[126,148,78,-0.7088885642588139],[126,148,79,-0.7032651044428349],[126,149,64,-0.7188683114945889],[126,149,65,-0.7211450934410095],[126,149,66,-0.7216725312173367],[126,149,67,-0.720919456332922],[126,149,68,-0.7199670523405075],[126,149,69,-0.7197418101131916],[126,149,70,-0.7201470471918583],[126,149,71,-0.7211265936493874],[126,149,72,-0.7234528511762619],[126,149,73,-0.7263711504638195],[126,149,74,-0.728345051407814],[126,149,75,-0.7285373508930206],[126,149,76,-0.7264602892100811],[126,149,77,-0.7221386544406414],[126,149,78,-0.7167010642588139],[126,149,79,-0.7110776044428349],[126,150,64,-0.7266808114945889],[126,150,65,-0.7289575934410095],[126,150,66,-0.7294850312173367],[126,150,67,-0.728731956332922],[126,150,68,-0.7277795523405075],[126,150,69,-0.7275543101131916],[126,150,70,-0.7279595471918583],[126,150,71,-0.7289390936493874],[126,150,72,-0.7312653511762619],[126,150,73,-0.7341836504638195],[126,150,74,-0.736157551407814],[126,150,75,-0.7363498508930206],[126,150,76,-0.7342727892100811],[126,150,77,-0.7299511544406414],[126,150,78,-0.7245135642588139],[126,150,79,-0.7188901044428349],[126,151,64,-0.7344933114945889],[126,151,65,-0.7367700934410095],[126,151,66,-0.7372975312173367],[126,151,67,-0.736544456332922],[126,151,68,-0.7355920523405075],[126,151,69,-0.7353668101131916],[126,151,70,-0.7357720471918583],[126,151,71,-0.7367515936493874],[126,151,72,-0.7390778511762619],[126,151,73,-0.7419961504638195],[126,151,74,-0.743970051407814],[126,151,75,-0.7441623508930206],[126,151,76,-0.7420852892100811],[126,151,77,-0.7377636544406414],[126,151,78,-0.7323260642588139],[126,151,79,-0.7267026044428349],[126,152,64,-0.7423058114945889],[126,152,65,-0.7445825934410095],[126,152,66,-0.7451100312173367],[126,152,67,-0.744356956332922],[126,152,68,-0.7434045523405075],[126,152,69,-0.7431793101131916],[126,152,70,-0.7435845471918583],[126,152,71,-0.7445640936493874],[126,152,72,-0.7468903511762619],[126,152,73,-0.7498086504638195],[126,152,74,-0.751782551407814],[126,152,75,-0.7519748508930206],[126,152,76,-0.7498977892100811],[126,152,77,-0.7455761544406414],[126,152,78,-0.7401385642588139],[126,152,79,-0.7345151044428349],[126,153,64,-0.7501183114945889],[126,153,65,-0.7523950934410095],[126,153,66,-0.7529225312173367],[126,153,67,-0.752169456332922],[126,153,68,-0.7512170523405075],[126,153,69,-0.7509918101131916],[126,153,70,-0.7513970471918583],[126,153,71,-0.7523765936493874],[126,153,72,-0.7547028511762619],[126,153,73,-0.7576211504638195],[126,153,74,-0.759595051407814],[126,153,75,-0.7597873508930206],[126,153,76,-0.7577102892100811],[126,153,77,-0.7533886544406414],[126,153,78,-0.7479510642588139],[126,153,79,-0.7423276044428349],[126,154,64,-0.7579308114945889],[126,154,65,-0.7602075934410095],[126,154,66,-0.7607350312173367],[126,154,67,-0.759981956332922],[126,154,68,-0.7590295523405075],[126,154,69,-0.7588043101131916],[126,154,70,-0.7592095471918583],[126,154,71,-0.7601890936493874],[126,154,72,-0.7625153511762619],[126,154,73,-0.7654336504638195],[126,154,74,-0.767407551407814],[126,154,75,-0.7675998508930206],[126,154,76,-0.7655227892100811],[126,154,77,-0.7612011544406414],[126,154,78,-0.7557635642588139],[126,154,79,-0.7501401044428349],[126,155,64,-0.7657433114945889],[126,155,65,-0.7680200934410095],[126,155,66,-0.7685475312173367],[126,155,67,-0.767794456332922],[126,155,68,-0.7668420523405075],[126,155,69,-0.7666168101131916],[126,155,70,-0.7670220471918583],[126,155,71,-0.7680015936493874],[126,155,72,-0.7703278511762619],[126,155,73,-0.7732461504638195],[126,155,74,-0.775220051407814],[126,155,75,-0.7754123508930206],[126,155,76,-0.7733352892100811],[126,155,77,-0.7690136544406414],[126,155,78,-0.7635760642588139],[126,155,79,-0.7579526044428349],[126,156,64,-0.7735558114945889],[126,156,65,-0.7758325934410095],[126,156,66,-0.7763600312173367],[126,156,67,-0.775606956332922],[126,156,68,-0.7746545523405075],[126,156,69,-0.7744293101131916],[126,156,70,-0.7748345471918583],[126,156,71,-0.7758140936493874],[126,156,72,-0.7781403511762619],[126,156,73,-0.7810586504638195],[126,156,74,-0.783032551407814],[126,156,75,-0.7832248508930206],[126,156,76,-0.7811477892100811],[126,156,77,-0.7768261544406414],[126,156,78,-0.7713885642588139],[126,156,79,-0.7657651044428349],[126,157,64,-0.7813683114945889],[126,157,65,-0.7836450934410095],[126,157,66,-0.7841725312173367],[126,157,67,-0.783419456332922],[126,157,68,-0.7824670523405075],[126,157,69,-0.7822418101131916],[126,157,70,-0.7826470471918583],[126,157,71,-0.7836265936493874],[126,157,72,-0.7859528511762619],[126,157,73,-0.7888711504638195],[126,157,74,-0.790845051407814],[126,157,75,-0.7910373508930206],[126,157,76,-0.7889602892100811],[126,157,77,-0.7846386544406414],[126,157,78,-0.7792010642588139],[126,157,79,-0.7735776044428349],[126,158,64,-0.7891808114945889],[126,158,65,-0.7914575934410095],[126,158,66,-0.7919850312173367],[126,158,67,-0.791231956332922],[126,158,68,-0.7902795523405075],[126,158,69,-0.7900543101131916],[126,158,70,-0.7904595471918583],[126,158,71,-0.7914390936493874],[126,158,72,-0.7937653511762619],[126,158,73,-0.7966836504638195],[126,158,74,-0.798657551407814],[126,158,75,-0.7988498508930206],[126,158,76,-0.7967727892100811],[126,158,77,-0.7924511544406414],[126,158,78,-0.7870135642588139],[126,158,79,-0.7813901044428349],[126,159,64,-0.7969933114945889],[126,159,65,-0.7992700934410095],[126,159,66,-0.7997975312173367],[126,159,67,-0.799044456332922],[126,159,68,-0.7980920523405075],[126,159,69,-0.7978668101131916],[126,159,70,-0.7982720471918583],[126,159,71,-0.7992515936493874],[126,159,72,-0.8015778511762619],[126,159,73,-0.8044961504638195],[126,159,74,-0.806470051407814],[126,159,75,-0.8066623508930206],[126,159,76,-0.8045852892100811],[126,159,77,-0.8002636544406414],[126,159,78,-0.7948260642588139],[126,159,79,-0.7892026044428349],[126,160,64,-0.8048058114945889],[126,160,65,-0.8070825934410095],[126,160,66,-0.8076100312173367],[126,160,67,-0.806856956332922],[126,160,68,-0.8059045523405075],[126,160,69,-0.8056793101131916],[126,160,70,-0.8060845471918583],[126,160,71,-0.8070640936493874],[126,160,72,-0.8093903511762619],[126,160,73,-0.8123086504638195],[126,160,74,-0.814282551407814],[126,160,75,-0.8144748508930206],[126,160,76,-0.8123977892100811],[126,160,77,-0.8080761544406414],[126,160,78,-0.8026385642588139],[126,160,79,-0.7970151044428349],[126,161,64,-0.8126183114945889],[126,161,65,-0.8148950934410095],[126,161,66,-0.8154225312173367],[126,161,67,-0.814669456332922],[126,161,68,-0.8137170523405075],[126,161,69,-0.8134918101131916],[126,161,70,-0.8138970471918583],[126,161,71,-0.8148765936493874],[126,161,72,-0.8172028511762619],[126,161,73,-0.8201211504638195],[126,161,74,-0.822095051407814],[126,161,75,-0.8222873508930206],[126,161,76,-0.8202102892100811],[126,161,77,-0.8158886544406414],[126,161,78,-0.8104510642588139],[126,161,79,-0.8048276044428349],[126,162,64,-0.8204308114945889],[126,162,65,-0.8227075934410095],[126,162,66,-0.8232350312173367],[126,162,67,-0.822481956332922],[126,162,68,-0.8215295523405075],[126,162,69,-0.8213043101131916],[126,162,70,-0.8217095471918583],[126,162,71,-0.8226890936493874],[126,162,72,-0.8250153511762619],[126,162,73,-0.8279336504638195],[126,162,74,-0.829907551407814],[126,162,75,-0.8300998508930206],[126,162,76,-0.8280227892100811],[126,162,77,-0.8237011544406414],[126,162,78,-0.8182635642588139],[126,162,79,-0.8126401044428349],[126,163,64,-0.8282433114945889],[126,163,65,-0.8305200934410095],[126,163,66,-0.8310475312173367],[126,163,67,-0.830294456332922],[126,163,68,-0.8293420523405075],[126,163,69,-0.8291168101131916],[126,163,70,-0.8295220471918583],[126,163,71,-0.8305015936493874],[126,163,72,-0.8328278511762619],[126,163,73,-0.8357461504638195],[126,163,74,-0.837720051407814],[126,163,75,-0.8379123508930206],[126,163,76,-0.8358352892100811],[126,163,77,-0.8315136544406414],[126,163,78,-0.8260760642588139],[126,163,79,-0.8204526044428349],[126,164,64,-0.8360558114945889],[126,164,65,-0.8383325934410095],[126,164,66,-0.8388600312173367],[126,164,67,-0.838106956332922],[126,164,68,-0.8371545523405075],[126,164,69,-0.8369293101131916],[126,164,70,-0.8373345471918583],[126,164,71,-0.8383140936493874],[126,164,72,-0.8406403511762619],[126,164,73,-0.8435586504638195],[126,164,74,-0.845532551407814],[126,164,75,-0.8457248508930206],[126,164,76,-0.8436477892100811],[126,164,77,-0.8393261544406414],[126,164,78,-0.8338885642588139],[126,164,79,-0.8282651044428349],[126,165,64,-0.8438683114945889],[126,165,65,-0.8461450934410095],[126,165,66,-0.8466725312173367],[126,165,67,-0.845919456332922],[126,165,68,-0.8449670523405075],[126,165,69,-0.8447418101131916],[126,165,70,-0.8451470471918583],[126,165,71,-0.8461265936493874],[126,165,72,-0.8484528511762619],[126,165,73,-0.8513711504638195],[126,165,74,-0.853345051407814],[126,165,75,-0.8535373508930206],[126,165,76,-0.8514602892100811],[126,165,77,-0.8471386544406414],[126,165,78,-0.8417010642588139],[126,165,79,-0.8360776044428349],[126,166,64,-0.8516808114945889],[126,166,65,-0.8539575934410095],[126,166,66,-0.8544850312173367],[126,166,67,-0.853731956332922],[126,166,68,-0.8527795523405075],[126,166,69,-0.8525543101131916],[126,166,70,-0.8529595471918583],[126,166,71,-0.8539390936493874],[126,166,72,-0.8562653511762619],[126,166,73,-0.8591836504638195],[126,166,74,-0.861157551407814],[126,166,75,-0.8613498508930206],[126,166,76,-0.8592727892100811],[126,166,77,-0.8549511544406414],[126,166,78,-0.8495135642588139],[126,166,79,-0.8438901044428349],[126,167,64,-0.8594933114945889],[126,167,65,-0.8617700934410095],[126,167,66,-0.8622975312173367],[126,167,67,-0.861544456332922],[126,167,68,-0.8605920523405075],[126,167,69,-0.8603668101131916],[126,167,70,-0.8607720471918583],[126,167,71,-0.8617515936493874],[126,167,72,-0.8640778511762619],[126,167,73,-0.8669961504638195],[126,167,74,-0.868970051407814],[126,167,75,-0.8691623508930206],[126,167,76,-0.8670852892100811],[126,167,77,-0.8627636544406414],[126,167,78,-0.8573260642588139],[126,167,79,-0.8517026044428349],[126,168,64,-0.8673058114945889],[126,168,65,-0.8695825934410095],[126,168,66,-0.8701100312173367],[126,168,67,-0.869356956332922],[126,168,68,-0.8684045523405075],[126,168,69,-0.8681793101131916],[126,168,70,-0.8685845471918583],[126,168,71,-0.8695640936493874],[126,168,72,-0.8718903511762619],[126,168,73,-0.8748086504638195],[126,168,74,-0.876782551407814],[126,168,75,-0.8769748508930206],[126,168,76,-0.8748977892100811],[126,168,77,-0.8705761544406414],[126,168,78,-0.8651385642588139],[126,168,79,-0.8595151044428349],[126,169,64,-0.8751183114945889],[126,169,65,-0.8773950934410095],[126,169,66,-0.8779225312173367],[126,169,67,-0.877169456332922],[126,169,68,-0.8762170523405075],[126,169,69,-0.8759918101131916],[126,169,70,-0.8763970471918583],[126,169,71,-0.8773765936493874],[126,169,72,-0.8797028511762619],[126,169,73,-0.8826211504638195],[126,169,74,-0.884595051407814],[126,169,75,-0.8847873508930206],[126,169,76,-0.8827102892100811],[126,169,77,-0.8783886544406414],[126,169,78,-0.8729510642588139],[126,169,79,-0.8673276044428349],[126,170,64,-0.8829308114945889],[126,170,65,-0.8852075934410095],[126,170,66,-0.8857350312173367],[126,170,67,-0.884981956332922],[126,170,68,-0.8840295523405075],[126,170,69,-0.8838043101131916],[126,170,70,-0.8842095471918583],[126,170,71,-0.8851890936493874],[126,170,72,-0.8875153511762619],[126,170,73,-0.8904336504638195],[126,170,74,-0.892407551407814],[126,170,75,-0.8925998508930206],[126,170,76,-0.8905227892100811],[126,170,77,-0.8862011544406414],[126,170,78,-0.8807635642588139],[126,170,79,-0.8751401044428349],[126,171,64,-0.8907433114945889],[126,171,65,-0.8930200934410095],[126,171,66,-0.8935475312173367],[126,171,67,-0.892794456332922],[126,171,68,-0.8918420523405075],[126,171,69,-0.8916168101131916],[126,171,70,-0.8920220471918583],[126,171,71,-0.8930015936493874],[126,171,72,-0.8953278511762619],[126,171,73,-0.8982461504638195],[126,171,74,-0.900220051407814],[126,171,75,-0.9004123508930206],[126,171,76,-0.8983352892100811],[126,171,77,-0.8940136544406414],[126,171,78,-0.8885760642588139],[126,171,79,-0.8829526044428349],[126,172,64,-0.8985558114945889],[126,172,65,-0.9008325934410095],[126,172,66,-0.9013600312173367],[126,172,67,-0.900606956332922],[126,172,68,-0.8996545523405075],[126,172,69,-0.8994293101131916],[126,172,70,-0.8998345471918583],[126,172,71,-0.9008140936493874],[126,172,72,-0.9031403511762619],[126,172,73,-0.9060586504638195],[126,172,74,-0.908032551407814],[126,172,75,-0.9082248508930206],[126,172,76,-0.9061477892100811],[126,172,77,-0.9018261544406414],[126,172,78,-0.8963885642588139],[126,172,79,-0.8907651044428349],[126,173,64,-0.9063683114945889],[126,173,65,-0.9086450934410095],[126,173,66,-0.9091725312173367],[126,173,67,-0.908419456332922],[126,173,68,-0.9074670523405075],[126,173,69,-0.9072418101131916],[126,173,70,-0.9076470471918583],[126,173,71,-0.9086265936493874],[126,173,72,-0.9109528511762619],[126,173,73,-0.9138711504638195],[126,173,74,-0.915845051407814],[126,173,75,-0.9160373508930206],[126,173,76,-0.9139602892100811],[126,173,77,-0.9096386544406414],[126,173,78,-0.9042010642588139],[126,173,79,-0.8985776044428349],[126,174,64,-0.9141808114945889],[126,174,65,-0.9164575934410095],[126,174,66,-0.9169850312173367],[126,174,67,-0.916231956332922],[126,174,68,-0.9152795523405075],[126,174,69,-0.9150543101131916],[126,174,70,-0.9154595471918583],[126,174,71,-0.9164390936493874],[126,174,72,-0.9187653511762619],[126,174,73,-0.9216836504638195],[126,174,74,-0.923657551407814],[126,174,75,-0.9238498508930206],[126,174,76,-0.9217727892100811],[126,174,77,-0.9174511544406414],[126,174,78,-0.9120135642588139],[126,174,79,-0.9063901044428349],[126,175,64,-0.9219933114945889],[126,175,65,-0.9242700934410095],[126,175,66,-0.9247975312173367],[126,175,67,-0.924044456332922],[126,175,68,-0.9230920523405075],[126,175,69,-0.9228668101131916],[126,175,70,-0.9232720471918583],[126,175,71,-0.9242515936493874],[126,175,72,-0.9265778511762619],[126,175,73,-0.9294961504638195],[126,175,74,-0.931470051407814],[126,175,75,-0.9316623508930206],[126,175,76,-0.9295852892100811],[126,175,77,-0.9252636544406414],[126,175,78,-0.9198260642588139],[126,175,79,-0.9142026044428349],[126,176,64,-0.9298058114945889],[126,176,65,-0.9320825934410095],[126,176,66,-0.9326100312173367],[126,176,67,-0.931856956332922],[126,176,68,-0.9309045523405075],[126,176,69,-0.9306793101131916],[126,176,70,-0.9310845471918583],[126,176,71,-0.9320640936493874],[126,176,72,-0.9343903511762619],[126,176,73,-0.9373086504638195],[126,176,74,-0.939282551407814],[126,176,75,-0.9394748508930206],[126,176,76,-0.9373977892100811],[126,176,77,-0.9330761544406414],[126,176,78,-0.9276385642588139],[126,176,79,-0.9220151044428349],[126,177,64,-0.9376183114945889],[126,177,65,-0.9398950934410095],[126,177,66,-0.9404225312173367],[126,177,67,-0.939669456332922],[126,177,68,-0.9387170523405075],[126,177,69,-0.9384918101131916],[126,177,70,-0.9388970471918583],[126,177,71,-0.9398765936493874],[126,177,72,-0.9422028511762619],[126,177,73,-0.9451211504638195],[126,177,74,-0.947095051407814],[126,177,75,-0.9472873508930206],[126,177,76,-0.9452102892100811],[126,177,77,-0.9408886544406414],[126,177,78,-0.9354510642588139],[126,177,79,-0.9298276044428349],[126,178,64,-0.9454308114945889],[126,178,65,-0.9477075934410095],[126,178,66,-0.9482350312173367],[126,178,67,-0.947481956332922],[126,178,68,-0.9465295523405075],[126,178,69,-0.9463043101131916],[126,178,70,-0.9467095471918583],[126,178,71,-0.9476890936493874],[126,178,72,-0.9500153511762619],[126,178,73,-0.9529336504638195],[126,178,74,-0.954907551407814],[126,178,75,-0.9550998508930206],[126,178,76,-0.9530227892100811],[126,178,77,-0.9487011544406414],[126,178,78,-0.9432635642588139],[126,178,79,-0.9376401044428349],[126,179,64,-0.9532433114945889],[126,179,65,-0.9555200934410095],[126,179,66,-0.9560475312173367],[126,179,67,-0.955294456332922],[126,179,68,-0.9543420523405075],[126,179,69,-0.9541168101131916],[126,179,70,-0.9545220471918583],[126,179,71,-0.9555015936493874],[126,179,72,-0.9578278511762619],[126,179,73,-0.9607461504638195],[126,179,74,-0.962720051407814],[126,179,75,-0.9629123508930206],[126,179,76,-0.9608352892100811],[126,179,77,-0.9565136544406414],[126,179,78,-0.9510760642588139],[126,179,79,-0.9454526044428349],[126,180,64,-0.9610558114945889],[126,180,65,-0.9633325934410095],[126,180,66,-0.9638600312173367],[126,180,67,-0.963106956332922],[126,180,68,-0.9621545523405075],[126,180,69,-0.9619293101131916],[126,180,70,-0.9623345471918583],[126,180,71,-0.9633140936493874],[126,180,72,-0.9656403511762619],[126,180,73,-0.9685586504638195],[126,180,74,-0.970532551407814],[126,180,75,-0.9707248508930206],[126,180,76,-0.9686477892100811],[126,180,77,-0.9643261544406414],[126,180,78,-0.9588885642588139],[126,180,79,-0.9532651044428349],[126,181,64,-0.9688683114945889],[126,181,65,-0.9711450934410095],[126,181,66,-0.9716725312173367],[126,181,67,-0.970919456332922],[126,181,68,-0.9699670523405075],[126,181,69,-0.9697418101131916],[126,181,70,-0.9701470471918583],[126,181,71,-0.9711265936493874],[126,181,72,-0.9734528511762619],[126,181,73,-0.9763711504638195],[126,181,74,-0.978345051407814],[126,181,75,-0.9785373508930206],[126,181,76,-0.9764602892100811],[126,181,77,-0.9721386544406414],[126,181,78,-0.9667010642588139],[126,181,79,-0.9610776044428349],[126,182,64,-0.9766808114945889],[126,182,65,-0.9789575934410095],[126,182,66,-0.9794850312173367],[126,182,67,-0.978731956332922],[126,182,68,-0.9777795523405075],[126,182,69,-0.9775543101131916],[126,182,70,-0.9779595471918583],[126,182,71,-0.9789390936493874],[126,182,72,-0.9812653511762619],[126,182,73,-0.9841836504638195],[126,182,74,-0.986157551407814],[126,182,75,-0.9863498508930206],[126,182,76,-0.9842727892100811],[126,182,77,-0.9799511544406414],[126,182,78,-0.9745135642588139],[126,182,79,-0.9688901044428349],[126,183,64,-0.9844933114945889],[126,183,65,-0.9867700934410095],[126,183,66,-0.9872975312173367],[126,183,67,-0.986544456332922],[126,183,68,-0.9855920523405075],[126,183,69,-0.9853668101131916],[126,183,70,-0.9857720471918583],[126,183,71,-0.9867515936493874],[126,183,72,-0.9890778511762619],[126,183,73,-0.9919961504638195],[126,183,74,-0.993970051407814],[126,183,75,-0.9941623508930206],[126,183,76,-0.9920852892100811],[126,183,77,-0.9877636544406414],[126,183,78,-0.9823260642588139],[126,183,79,-0.9767026044428349],[126,184,64,-0.9923058114945889],[126,184,65,-0.9945825934410095],[126,184,66,-0.9951100312173367],[126,184,67,-0.994356956332922],[126,184,68,-0.9934045523405075],[126,184,69,-0.9931793101131916],[126,184,70,-0.9935845471918583],[126,184,71,-0.9945640936493874],[126,184,72,-0.9968903511762619],[126,184,73,-0.9998086504638195],[126,184,74,-1.001782551407814],[126,184,75,-1.0019748508930206],[126,184,76,-0.9998977892100811],[126,184,77,-0.9955761544406414],[126,184,78,-0.9901385642588139],[126,184,79,-0.9845151044428349],[126,185,64,-1.0001183114945889],[126,185,65,-1.0023950934410095],[126,185,66,-1.0029225312173367],[126,185,67,-1.002169456332922],[126,185,68,-1.0012170523405075],[126,185,69,-1.0009918101131916],[126,185,70,-1.0013970471918583],[126,185,71,-1.0023765936493874],[126,185,72,-1.004702851176262],[126,185,73,-1.0076211504638195],[126,185,74,-1.009595051407814],[126,185,75,-1.0097873508930206],[126,185,76,-1.007710289210081],[126,185,77,-1.0033886544406414],[126,185,78,-0.9979510642588139],[126,185,79,-0.9923276044428349],[126,186,64,-1.0079308114945889],[126,186,65,-1.0102075934410095],[126,186,66,-1.0107350312173367],[126,186,67,-1.009981956332922],[126,186,68,-1.0090295523405075],[126,186,69,-1.0088043101131916],[126,186,70,-1.0092095471918583],[126,186,71,-1.0101890936493874],[126,186,72,-1.012515351176262],[126,186,73,-1.0154336504638195],[126,186,74,-1.017407551407814],[126,186,75,-1.0175998508930206],[126,186,76,-1.015522789210081],[126,186,77,-1.0112011544406414],[126,186,78,-1.0057635642588139],[126,186,79,-1.0001401044428349],[126,187,64,-1.0157433114945889],[126,187,65,-1.0180200934410095],[126,187,66,-1.0185475312173367],[126,187,67,-1.017794456332922],[126,187,68,-1.0168420523405075],[126,187,69,-1.0166168101131916],[126,187,70,-1.0170220471918583],[126,187,71,-1.0180015936493874],[126,187,72,-1.020327851176262],[126,187,73,-1.0232461504638195],[126,187,74,-1.025220051407814],[126,187,75,-1.0254123508930206],[126,187,76,-1.023335289210081],[126,187,77,-1.0190136544406414],[126,187,78,-1.0135760642588139],[126,187,79,-1.0079526044428349],[126,188,64,-1.0235558114945889],[126,188,65,-1.0258325934410095],[126,188,66,-1.0263600312173367],[126,188,67,-1.025606956332922],[126,188,68,-1.0246545523405075],[126,188,69,-1.0244293101131916],[126,188,70,-1.0248345471918583],[126,188,71,-1.0258140936493874],[126,188,72,-1.028140351176262],[126,188,73,-1.0310586504638195],[126,188,74,-1.033032551407814],[126,188,75,-1.0332248508930206],[126,188,76,-1.031147789210081],[126,188,77,-1.0268261544406414],[126,188,78,-1.0213885642588139],[126,188,79,-1.0157651044428349],[126,189,64,-1.0313683114945889],[126,189,65,-1.0336450934410095],[126,189,66,-1.0341725312173367],[126,189,67,-1.033419456332922],[126,189,68,-1.0324670523405075],[126,189,69,-1.0322418101131916],[126,189,70,-1.0326470471918583],[126,189,71,-1.0336265936493874],[126,189,72,-1.035952851176262],[126,189,73,-1.0388711504638195],[126,189,74,-1.040845051407814],[126,189,75,-1.0410373508930206],[126,189,76,-1.038960289210081],[126,189,77,-1.0346386544406414],[126,189,78,-1.0292010642588139],[126,189,79,-1.0235776044428349],[126,190,64,-1.0391808114945889],[126,190,65,-1.0414575934410095],[126,190,66,-1.0419850312173367],[126,190,67,-1.041231956332922],[126,190,68,-1.0402795523405075],[126,190,69,-1.0400543101131916],[126,190,70,-1.0404595471918583],[126,190,71,-1.0414390936493874],[126,190,72,-1.043765351176262],[126,190,73,-1.0466836504638195],[126,190,74,-1.048657551407814],[126,190,75,-1.0488498508930206],[126,190,76,-1.046772789210081],[126,190,77,-1.0424511544406414],[126,190,78,-1.0370135642588139],[126,190,79,-1.0313901044428349],[126,191,64,-1.0469933114945889],[126,191,65,-1.0492700934410095],[126,191,66,-1.0497975312173367],[126,191,67,-1.049044456332922],[126,191,68,-1.0480920523405075],[126,191,69,-1.0478668101131916],[126,191,70,-1.0482720471918583],[126,191,71,-1.0492515936493874],[126,191,72,-1.051577851176262],[126,191,73,-1.0544961504638195],[126,191,74,-1.056470051407814],[126,191,75,-1.0566623508930206],[126,191,76,-1.054585289210081],[126,191,77,-1.0502636544406414],[126,191,78,-1.0448260642588139],[126,191,79,-1.0392026044428349],[126,192,64,-1.0548058114945889],[126,192,65,-1.0570825934410095],[126,192,66,-1.0576100312173367],[126,192,67,-1.056856956332922],[126,192,68,-1.0559045523405075],[126,192,69,-1.0556793101131916],[126,192,70,-1.0560845471918583],[126,192,71,-1.0570640936493874],[126,192,72,-1.059390351176262],[126,192,73,-1.0623086504638195],[126,192,74,-1.064282551407814],[126,192,75,-1.0644748508930206],[126,192,76,-1.062397789210081],[126,192,77,-1.0580761544406414],[126,192,78,-1.0526385642588139],[126,192,79,-1.0470151044428349],[126,193,64,-1.0626183114945889],[126,193,65,-1.0648950934410095],[126,193,66,-1.0654225312173367],[126,193,67,-1.064669456332922],[126,193,68,-1.0637170523405075],[126,193,69,-1.0634918101131916],[126,193,70,-1.0638970471918583],[126,193,71,-1.0648765936493874],[126,193,72,-1.067202851176262],[126,193,73,-1.0701211504638195],[126,193,74,-1.072095051407814],[126,193,75,-1.0722873508930206],[126,193,76,-1.070210289210081],[126,193,77,-1.0658886544406414],[126,193,78,-1.0604510642588139],[126,193,79,-1.0548276044428349],[126,194,64,-1.0704308114945889],[126,194,65,-1.0727075934410095],[126,194,66,-1.0732350312173367],[126,194,67,-1.072481956332922],[126,194,68,-1.0715295523405075],[126,194,69,-1.0713043101131916],[126,194,70,-1.0717095471918583],[126,194,71,-1.0726890936493874],[126,194,72,-1.075015351176262],[126,194,73,-1.0779336504638195],[126,194,74,-1.079907551407814],[126,194,75,-1.0800998508930206],[126,194,76,-1.078022789210081],[126,194,77,-1.0737011544406414],[126,194,78,-1.0682635642588139],[126,194,79,-1.0626401044428349],[126,195,64,-1.0782433114945889],[126,195,65,-1.0805200934410095],[126,195,66,-1.0810475312173367],[126,195,67,-1.080294456332922],[126,195,68,-1.0793420523405075],[126,195,69,-1.0791168101131916],[126,195,70,-1.0795220471918583],[126,195,71,-1.0805015936493874],[126,195,72,-1.082827851176262],[126,195,73,-1.0857461504638195],[126,195,74,-1.087720051407814],[126,195,75,-1.0879123508930206],[126,195,76,-1.085835289210081],[126,195,77,-1.0815136544406414],[126,195,78,-1.0760760642588139],[126,195,79,-1.0704526044428349],[126,196,64,-1.0860558114945889],[126,196,65,-1.0883325934410095],[126,196,66,-1.0888600312173367],[126,196,67,-1.088106956332922],[126,196,68,-1.0871545523405075],[126,196,69,-1.0869293101131916],[126,196,70,-1.0873345471918583],[126,196,71,-1.0883140936493874],[126,196,72,-1.090640351176262],[126,196,73,-1.0935586504638195],[126,196,74,-1.095532551407814],[126,196,75,-1.0957248508930206],[126,196,76,-1.093647789210081],[126,196,77,-1.0893261544406414],[126,196,78,-1.0838885642588139],[126,196,79,-1.0782651044428349],[126,197,64,-1.0938683114945889],[126,197,65,-1.0961450934410095],[126,197,66,-1.0966725312173367],[126,197,67,-1.095919456332922],[126,197,68,-1.0949670523405075],[126,197,69,-1.0947418101131916],[126,197,70,-1.0951470471918583],[126,197,71,-1.0961265936493874],[126,197,72,-1.098452851176262],[126,197,73,-1.1013711504638195],[126,197,74,-1.103345051407814],[126,197,75,-1.1035373508930206],[126,197,76,-1.101460289210081],[126,197,77,-1.0971386544406414],[126,197,78,-1.0917010642588139],[126,197,79,-1.0860776044428349],[126,198,64,-1.1016808114945889],[126,198,65,-1.1039575934410095],[126,198,66,-1.1044850312173367],[126,198,67,-1.103731956332922],[126,198,68,-1.1027795523405075],[126,198,69,-1.1025543101131916],[126,198,70,-1.1029595471918583],[126,198,71,-1.1039390936493874],[126,198,72,-1.106265351176262],[126,198,73,-1.1091836504638195],[126,198,74,-1.111157551407814],[126,198,75,-1.1113498508930206],[126,198,76,-1.109272789210081],[126,198,77,-1.1049511544406414],[126,198,78,-1.0995135642588139],[126,198,79,-1.0938901044428349],[126,199,64,-1.1094933114945889],[126,199,65,-1.1117700934410095],[126,199,66,-1.1122975312173367],[126,199,67,-1.111544456332922],[126,199,68,-1.1105920523405075],[126,199,69,-1.1103668101131916],[126,199,70,-1.1107720471918583],[126,199,71,-1.1117515936493874],[126,199,72,-1.114077851176262],[126,199,73,-1.1169961504638195],[126,199,74,-1.118970051407814],[126,199,75,-1.1191623508930206],[126,199,76,-1.117085289210081],[126,199,77,-1.1127636544406414],[126,199,78,-1.1073260642588139],[126,199,79,-1.1017026044428349],[126,200,64,-1.1173058114945889],[126,200,65,-1.1195825934410095],[126,200,66,-1.1201100312173367],[126,200,67,-1.119356956332922],[126,200,68,-1.1184045523405075],[126,200,69,-1.1181793101131916],[126,200,70,-1.1185845471918583],[126,200,71,-1.1195640936493874],[126,200,72,-1.121890351176262],[126,200,73,-1.1248086504638195],[126,200,74,-1.126782551407814],[126,200,75,-1.1269748508930206],[126,200,76,-1.124897789210081],[126,200,77,-1.1205761544406414],[126,200,78,-1.1151385642588139],[126,200,79,-1.1095151044428349],[126,201,64,-1.1251183114945889],[126,201,65,-1.1273950934410095],[126,201,66,-1.1279225312173367],[126,201,67,-1.127169456332922],[126,201,68,-1.1262170523405075],[126,201,69,-1.1259918101131916],[126,201,70,-1.1263970471918583],[126,201,71,-1.1273765936493874],[126,201,72,-1.129702851176262],[126,201,73,-1.1326211504638195],[126,201,74,-1.134595051407814],[126,201,75,-1.1347873508930206],[126,201,76,-1.132710289210081],[126,201,77,-1.1283886544406414],[126,201,78,-1.1229510642588139],[126,201,79,-1.1173276044428349],[126,202,64,-1.1329308114945889],[126,202,65,-1.1352075934410095],[126,202,66,-1.1357350312173367],[126,202,67,-1.134981956332922],[126,202,68,-1.1340295523405075],[126,202,69,-1.1338043101131916],[126,202,70,-1.1342095471918583],[126,202,71,-1.1351890936493874],[126,202,72,-1.137515351176262],[126,202,73,-1.1404336504638195],[126,202,74,-1.142407551407814],[126,202,75,-1.1425998508930206],[126,202,76,-1.140522789210081],[126,202,77,-1.1362011544406414],[126,202,78,-1.1307635642588139],[126,202,79,-1.1251401044428349],[126,203,64,-1.1407433114945889],[126,203,65,-1.1430200934410095],[126,203,66,-1.1435475312173367],[126,203,67,-1.142794456332922],[126,203,68,-1.1418420523405075],[126,203,69,-1.1416168101131916],[126,203,70,-1.1420220471918583],[126,203,71,-1.1430015936493874],[126,203,72,-1.145327851176262],[126,203,73,-1.1482461504638195],[126,203,74,-1.150220051407814],[126,203,75,-1.1504123508930206],[126,203,76,-1.148335289210081],[126,203,77,-1.1440136544406414],[126,203,78,-1.1385760642588139],[126,203,79,-1.1329526044428349],[126,204,64,-1.1485558114945889],[126,204,65,-1.1508325934410095],[126,204,66,-1.1513600312173367],[126,204,67,-1.150606956332922],[126,204,68,-1.1496545523405075],[126,204,69,-1.1494293101131916],[126,204,70,-1.1498345471918583],[126,204,71,-1.1508140936493874],[126,204,72,-1.153140351176262],[126,204,73,-1.1560586504638195],[126,204,74,-1.158032551407814],[126,204,75,-1.1582248508930206],[126,204,76,-1.156147789210081],[126,204,77,-1.1518261544406414],[126,204,78,-1.1463885642588139],[126,204,79,-1.1407651044428349],[126,205,64,-1.1563683114945889],[126,205,65,-1.1586450934410095],[126,205,66,-1.1591725312173367],[126,205,67,-1.158419456332922],[126,205,68,-1.1574670523405075],[126,205,69,-1.1572418101131916],[126,205,70,-1.1576470471918583],[126,205,71,-1.1586265936493874],[126,205,72,-1.160952851176262],[126,205,73,-1.1638711504638195],[126,205,74,-1.165845051407814],[126,205,75,-1.1660373508930206],[126,205,76,-1.163960289210081],[126,205,77,-1.1596386544406414],[126,205,78,-1.1542010642588139],[126,205,79,-1.1485776044428349],[126,206,64,-1.1641808114945889],[126,206,65,-1.1664575934410095],[126,206,66,-1.1669850312173367],[126,206,67,-1.166231956332922],[126,206,68,-1.1652795523405075],[126,206,69,-1.1650543101131916],[126,206,70,-1.1654595471918583],[126,206,71,-1.1664390936493874],[126,206,72,-1.168765351176262],[126,206,73,-1.1716836504638195],[126,206,74,-1.173657551407814],[126,206,75,-1.1738498508930206],[126,206,76,-1.171772789210081],[126,206,77,-1.1674511544406414],[126,206,78,-1.1620135642588139],[126,206,79,-1.1563901044428349],[126,207,64,-1.1719933114945889],[126,207,65,-1.1742700934410095],[126,207,66,-1.1747975312173367],[126,207,67,-1.174044456332922],[126,207,68,-1.1730920523405075],[126,207,69,-1.1728668101131916],[126,207,70,-1.1732720471918583],[126,207,71,-1.1742515936493874],[126,207,72,-1.176577851176262],[126,207,73,-1.1794961504638195],[126,207,74,-1.181470051407814],[126,207,75,-1.1816623508930206],[126,207,76,-1.179585289210081],[126,207,77,-1.1752636544406414],[126,207,78,-1.1698260642588139],[126,207,79,-1.1642026044428349],[126,208,64,-1.1798058114945889],[126,208,65,-1.1820825934410095],[126,208,66,-1.1826100312173367],[126,208,67,-1.181856956332922],[126,208,68,-1.1809045523405075],[126,208,69,-1.1806793101131916],[126,208,70,-1.1810845471918583],[126,208,71,-1.1820640936493874],[126,208,72,-1.184390351176262],[126,208,73,-1.1873086504638195],[126,208,74,-1.189282551407814],[126,208,75,-1.1894748508930206],[126,208,76,-1.187397789210081],[126,208,77,-1.1830761544406414],[126,208,78,-1.1776385642588139],[126,208,79,-1.1720151044428349],[126,209,64,-1.1876183114945889],[126,209,65,-1.1898950934410095],[126,209,66,-1.1904225312173367],[126,209,67,-1.189669456332922],[126,209,68,-1.1887170523405075],[126,209,69,-1.1884918101131916],[126,209,70,-1.1888970471918583],[126,209,71,-1.1898765936493874],[126,209,72,-1.192202851176262],[126,209,73,-1.1951211504638195],[126,209,74,-1.197095051407814],[126,209,75,-1.1972873508930206],[126,209,76,-1.195210289210081],[126,209,77,-1.1908886544406414],[126,209,78,-1.1854510642588139],[126,209,79,-1.1798276044428349],[126,210,64,-1.1954308114945889],[126,210,65,-1.1977075934410095],[126,210,66,-1.1982350312173367],[126,210,67,-1.197481956332922],[126,210,68,-1.1965295523405075],[126,210,69,-1.1963043101131916],[126,210,70,-1.1967095471918583],[126,210,71,-1.1976890936493874],[126,210,72,-1.200015351176262],[126,210,73,-1.2029336504638195],[126,210,74,-1.204907551407814],[126,210,75,-1.2050998508930206],[126,210,76,-1.203022789210081],[126,210,77,-1.1987011544406414],[126,210,78,-1.1932635642588139],[126,210,79,-1.1876401044428349],[126,211,64,-1.2032433114945889],[126,211,65,-1.2055200934410095],[126,211,66,-1.2060475312173367],[126,211,67,-1.205294456332922],[126,211,68,-1.2043420523405075],[126,211,69,-1.2041168101131916],[126,211,70,-1.2045220471918583],[126,211,71,-1.2055015936493874],[126,211,72,-1.207827851176262],[126,211,73,-1.2107461504638195],[126,211,74,-1.212720051407814],[126,211,75,-1.2129123508930206],[126,211,76,-1.210835289210081],[126,211,77,-1.2065136544406414],[126,211,78,-1.2010760642588139],[126,211,79,-1.1954526044428349],[126,212,64,-1.2110558114945889],[126,212,65,-1.2133325934410095],[126,212,66,-1.2138600312173367],[126,212,67,-1.213106956332922],[126,212,68,-1.2121545523405075],[126,212,69,-1.2119293101131916],[126,212,70,-1.2123345471918583],[126,212,71,-1.2133140936493874],[126,212,72,-1.215640351176262],[126,212,73,-1.2185586504638195],[126,212,74,-1.220532551407814],[126,212,75,-1.2207248508930206],[126,212,76,-1.218647789210081],[126,212,77,-1.2143261544406414],[126,212,78,-1.2088885642588139],[126,212,79,-1.2032651044428349],[126,213,64,-1.2188683114945889],[126,213,65,-1.2211450934410095],[126,213,66,-1.2216725312173367],[126,213,67,-1.220919456332922],[126,213,68,-1.2199670523405075],[126,213,69,-1.2197418101131916],[126,213,70,-1.2201470471918583],[126,213,71,-1.2211265936493874],[126,213,72,-1.223452851176262],[126,213,73,-1.2263711504638195],[126,213,74,-1.228345051407814],[126,213,75,-1.2285373508930206],[126,213,76,-1.226460289210081],[126,213,77,-1.2221386544406414],[126,213,78,-1.2167010642588139],[126,213,79,-1.2110776044428349],[126,214,64,-1.2266808114945889],[126,214,65,-1.2289575934410095],[126,214,66,-1.2294850312173367],[126,214,67,-1.228731956332922],[126,214,68,-1.2277795523405075],[126,214,69,-1.2275543101131916],[126,214,70,-1.2279595471918583],[126,214,71,-1.2289390936493874],[126,214,72,-1.231265351176262],[126,214,73,-1.2341836504638195],[126,214,74,-1.236157551407814],[126,214,75,-1.2363498508930206],[126,214,76,-1.234272789210081],[126,214,77,-1.2299511544406414],[126,214,78,-1.2245135642588139],[126,214,79,-1.2188901044428349],[126,215,64,-1.2344933114945889],[126,215,65,-1.2367700934410095],[126,215,66,-1.2372975312173367],[126,215,67,-1.236544456332922],[126,215,68,-1.2355920523405075],[126,215,69,-1.2353668101131916],[126,215,70,-1.2357720471918583],[126,215,71,-1.2367515936493874],[126,215,72,-1.239077851176262],[126,215,73,-1.2419961504638195],[126,215,74,-1.243970051407814],[126,215,75,-1.2441623508930206],[126,215,76,-1.242085289210081],[126,215,77,-1.2377636544406414],[126,215,78,-1.2323260642588139],[126,215,79,-1.2267026044428349],[126,216,64,-1.2423058114945889],[126,216,65,-1.2445825934410095],[126,216,66,-1.2451100312173367],[126,216,67,-1.244356956332922],[126,216,68,-1.2434045523405075],[126,216,69,-1.2431793101131916],[126,216,70,-1.2435845471918583],[126,216,71,-1.2445640936493874],[126,216,72,-1.246890351176262],[126,216,73,-1.2498086504638195],[126,216,74,-1.251782551407814],[126,216,75,-1.2519748508930206],[126,216,76,-1.249897789210081],[126,216,77,-1.2455761544406414],[126,216,78,-1.2401385642588139],[126,216,79,-1.2345151044428349],[126,217,64,-1.2501183114945889],[126,217,65,-1.2523950934410095],[126,217,66,-1.2529225312173367],[126,217,67,-1.252169456332922],[126,217,68,-1.2512170523405075],[126,217,69,-1.2509918101131916],[126,217,70,-1.2513970471918583],[126,217,71,-1.2523765936493874],[126,217,72,-1.254702851176262],[126,217,73,-1.2576211504638195],[126,217,74,-1.259595051407814],[126,217,75,-1.2597873508930206],[126,217,76,-1.257710289210081],[126,217,77,-1.2533886544406414],[126,217,78,-1.2479510642588139],[126,217,79,-1.2423276044428349],[126,218,64,-1.2579308114945889],[126,218,65,-1.2602075934410095],[126,218,66,-1.2607350312173367],[126,218,67,-1.259981956332922],[126,218,68,-1.2590295523405075],[126,218,69,-1.2588043101131916],[126,218,70,-1.2592095471918583],[126,218,71,-1.2601890936493874],[126,218,72,-1.262515351176262],[126,218,73,-1.2654336504638195],[126,218,74,-1.267407551407814],[126,218,75,-1.2675998508930206],[126,218,76,-1.265522789210081],[126,218,77,-1.2612011544406414],[126,218,78,-1.2557635642588139],[126,218,79,-1.2501401044428349],[126,219,64,-1.2657433114945889],[126,219,65,-1.2680200934410095],[126,219,66,-1.2685475312173367],[126,219,67,-1.267794456332922],[126,219,68,-1.2668420523405075],[126,219,69,-1.2666168101131916],[126,219,70,-1.2670220471918583],[126,219,71,-1.2680015936493874],[126,219,72,-1.270327851176262],[126,219,73,-1.2732461504638195],[126,219,74,-1.275220051407814],[126,219,75,-1.2754123508930206],[126,219,76,-1.273335289210081],[126,219,77,-1.2690136544406414],[126,219,78,-1.2635760642588139],[126,219,79,-1.2579526044428349],[126,220,64,-1.2735558114945889],[126,220,65,-1.2758325934410095],[126,220,66,-1.2763600312173367],[126,220,67,-1.275606956332922],[126,220,68,-1.2746545523405075],[126,220,69,-1.2744293101131916],[126,220,70,-1.2748345471918583],[126,220,71,-1.2758140936493874],[126,220,72,-1.278140351176262],[126,220,73,-1.2810586504638195],[126,220,74,-1.283032551407814],[126,220,75,-1.2832248508930206],[126,220,76,-1.281147789210081],[126,220,77,-1.2768261544406414],[126,220,78,-1.2713885642588139],[126,220,79,-1.2657651044428349],[126,221,64,-1.2813683114945889],[126,221,65,-1.2836450934410095],[126,221,66,-1.2841725312173367],[126,221,67,-1.283419456332922],[126,221,68,-1.2824670523405075],[126,221,69,-1.2822418101131916],[126,221,70,-1.2826470471918583],[126,221,71,-1.2836265936493874],[126,221,72,-1.285952851176262],[126,221,73,-1.2888711504638195],[126,221,74,-1.290845051407814],[126,221,75,-1.2910373508930206],[126,221,76,-1.288960289210081],[126,221,77,-1.2846386544406414],[126,221,78,-1.2792010642588139],[126,221,79,-1.2735776044428349],[126,222,64,-1.2891808114945889],[126,222,65,-1.2914575934410095],[126,222,66,-1.2919850312173367],[126,222,67,-1.291231956332922],[126,222,68,-1.2902795523405075],[126,222,69,-1.2900543101131916],[126,222,70,-1.2904595471918583],[126,222,71,-1.2914390936493874],[126,222,72,-1.293765351176262],[126,222,73,-1.2966836504638195],[126,222,74,-1.298657551407814],[126,222,75,-1.2988498508930206],[126,222,76,-1.296772789210081],[126,222,77,-1.2924511544406414],[126,222,78,-1.2870135642588139],[126,222,79,-1.2813901044428349],[126,223,64,-1.2969933114945889],[126,223,65,-1.2992700934410095],[126,223,66,-1.2997975312173367],[126,223,67,-1.299044456332922],[126,223,68,-1.2980920523405075],[126,223,69,-1.2978668101131916],[126,223,70,-1.2982720471918583],[126,223,71,-1.2992515936493874],[126,223,72,-1.301577851176262],[126,223,73,-1.3044961504638195],[126,223,74,-1.306470051407814],[126,223,75,-1.3066623508930206],[126,223,76,-1.304585289210081],[126,223,77,-1.3002636544406414],[126,223,78,-1.2948260642588139],[126,223,79,-1.2892026044428349],[126,224,64,-1.3048058114945889],[126,224,65,-1.3070825934410095],[126,224,66,-1.3076100312173367],[126,224,67,-1.306856956332922],[126,224,68,-1.3059045523405075],[126,224,69,-1.3056793101131916],[126,224,70,-1.3060845471918583],[126,224,71,-1.3070640936493874],[126,224,72,-1.309390351176262],[126,224,73,-1.3123086504638195],[126,224,74,-1.314282551407814],[126,224,75,-1.3144748508930206],[126,224,76,-1.312397789210081],[126,224,77,-1.3080761544406414],[126,224,78,-1.3026385642588139],[126,224,79,-1.2970151044428349],[126,225,64,-1.3126183114945889],[126,225,65,-1.3148950934410095],[126,225,66,-1.3154225312173367],[126,225,67,-1.314669456332922],[126,225,68,-1.3137170523405075],[126,225,69,-1.3134918101131916],[126,225,70,-1.3138970471918583],[126,225,71,-1.3148765936493874],[126,225,72,-1.317202851176262],[126,225,73,-1.3201211504638195],[126,225,74,-1.322095051407814],[126,225,75,-1.3222873508930206],[126,225,76,-1.320210289210081],[126,225,77,-1.3158886544406414],[126,225,78,-1.3104510642588139],[126,225,79,-1.3048276044428349],[126,226,64,-1.3204308114945889],[126,226,65,-1.3227075934410095],[126,226,66,-1.3232350312173367],[126,226,67,-1.322481956332922],[126,226,68,-1.3215295523405075],[126,226,69,-1.3213043101131916],[126,226,70,-1.3217095471918583],[126,226,71,-1.3226890936493874],[126,226,72,-1.325015351176262],[126,226,73,-1.3279336504638195],[126,226,74,-1.329907551407814],[126,226,75,-1.3300998508930206],[126,226,76,-1.328022789210081],[126,226,77,-1.3237011544406414],[126,226,78,-1.3182635642588139],[126,226,79,-1.3126401044428349],[126,227,64,-1.3282433114945889],[126,227,65,-1.3305200934410095],[126,227,66,-1.3310475312173367],[126,227,67,-1.330294456332922],[126,227,68,-1.3293420523405075],[126,227,69,-1.3291168101131916],[126,227,70,-1.3295220471918583],[126,227,71,-1.3305015936493874],[126,227,72,-1.332827851176262],[126,227,73,-1.3357461504638195],[126,227,74,-1.337720051407814],[126,227,75,-1.3379123508930206],[126,227,76,-1.335835289210081],[126,227,77,-1.3315136544406414],[126,227,78,-1.3260760642588139],[126,227,79,-1.3204526044428349],[126,228,64,-1.3360558114945889],[126,228,65,-1.3383325934410095],[126,228,66,-1.3388600312173367],[126,228,67,-1.338106956332922],[126,228,68,-1.3371545523405075],[126,228,69,-1.3369293101131916],[126,228,70,-1.3373345471918583],[126,228,71,-1.3383140936493874],[126,228,72,-1.340640351176262],[126,228,73,-1.3435586504638195],[126,228,74,-1.345532551407814],[126,228,75,-1.3457248508930206],[126,228,76,-1.343647789210081],[126,228,77,-1.3393261544406414],[126,228,78,-1.3338885642588139],[126,228,79,-1.3282651044428349],[126,229,64,-1.3438683114945889],[126,229,65,-1.3461450934410095],[126,229,66,-1.3466725312173367],[126,229,67,-1.345919456332922],[126,229,68,-1.3449670523405075],[126,229,69,-1.3447418101131916],[126,229,70,-1.3451470471918583],[126,229,71,-1.3461265936493874],[126,229,72,-1.348452851176262],[126,229,73,-1.3513711504638195],[126,229,74,-1.353345051407814],[126,229,75,-1.3535373508930206],[126,229,76,-1.351460289210081],[126,229,77,-1.3471386544406414],[126,229,78,-1.3417010642588139],[126,229,79,-1.3360776044428349],[126,230,64,-1.3516808114945889],[126,230,65,-1.3539575934410095],[126,230,66,-1.3544850312173367],[126,230,67,-1.353731956332922],[126,230,68,-1.3527795523405075],[126,230,69,-1.3525543101131916],[126,230,70,-1.3529595471918583],[126,230,71,-1.3539390936493874],[126,230,72,-1.356265351176262],[126,230,73,-1.3591836504638195],[126,230,74,-1.361157551407814],[126,230,75,-1.3613498508930206],[126,230,76,-1.359272789210081],[126,230,77,-1.3549511544406414],[126,230,78,-1.3495135642588139],[126,230,79,-1.3438901044428349],[126,231,64,-1.3594933114945889],[126,231,65,-1.3617700934410095],[126,231,66,-1.3622975312173367],[126,231,67,-1.361544456332922],[126,231,68,-1.3605920523405075],[126,231,69,-1.3603668101131916],[126,231,70,-1.3607720471918583],[126,231,71,-1.3617515936493874],[126,231,72,-1.364077851176262],[126,231,73,-1.3669961504638195],[126,231,74,-1.368970051407814],[126,231,75,-1.3691623508930206],[126,231,76,-1.367085289210081],[126,231,77,-1.3627636544406414],[126,231,78,-1.3573260642588139],[126,231,79,-1.3517026044428349],[126,232,64,-1.3673058114945889],[126,232,65,-1.3695825934410095],[126,232,66,-1.3701100312173367],[126,232,67,-1.369356956332922],[126,232,68,-1.3684045523405075],[126,232,69,-1.3681793101131916],[126,232,70,-1.3685845471918583],[126,232,71,-1.3695640936493874],[126,232,72,-1.371890351176262],[126,232,73,-1.3748086504638195],[126,232,74,-1.376782551407814],[126,232,75,-1.3769748508930206],[126,232,76,-1.374897789210081],[126,232,77,-1.3705761544406414],[126,232,78,-1.3651385642588139],[126,232,79,-1.3595151044428349],[126,233,64,-1.3751183114945889],[126,233,65,-1.3773950934410095],[126,233,66,-1.3779225312173367],[126,233,67,-1.377169456332922],[126,233,68,-1.3762170523405075],[126,233,69,-1.3759918101131916],[126,233,70,-1.3763970471918583],[126,233,71,-1.3773765936493874],[126,233,72,-1.379702851176262],[126,233,73,-1.3826211504638195],[126,233,74,-1.384595051407814],[126,233,75,-1.3847873508930206],[126,233,76,-1.382710289210081],[126,233,77,-1.3783886544406414],[126,233,78,-1.3729510642588139],[126,233,79,-1.3673276044428349],[126,234,64,-1.3829308114945889],[126,234,65,-1.3852075934410095],[126,234,66,-1.3857350312173367],[126,234,67,-1.384981956332922],[126,234,68,-1.3840295523405075],[126,234,69,-1.3838043101131916],[126,234,70,-1.3842095471918583],[126,234,71,-1.3851890936493874],[126,234,72,-1.387515351176262],[126,234,73,-1.3904336504638195],[126,234,74,-1.392407551407814],[126,234,75,-1.3925998508930206],[126,234,76,-1.390522789210081],[126,234,77,-1.3862011544406414],[126,234,78,-1.3807635642588139],[126,234,79,-1.3751401044428349],[126,235,64,-1.3907433114945889],[126,235,65,-1.3930200934410095],[126,235,66,-1.3935475312173367],[126,235,67,-1.392794456332922],[126,235,68,-1.3918420523405075],[126,235,69,-1.3916168101131916],[126,235,70,-1.3920220471918583],[126,235,71,-1.3930015936493874],[126,235,72,-1.395327851176262],[126,235,73,-1.3982461504638195],[126,235,74,-1.400220051407814],[126,235,75,-1.4004123508930206],[126,235,76,-1.398335289210081],[126,235,77,-1.3940136544406414],[126,235,78,-1.3885760642588139],[126,235,79,-1.3829526044428349],[126,236,64,-1.3985558114945889],[126,236,65,-1.4008325934410095],[126,236,66,-1.4013600312173367],[126,236,67,-1.400606956332922],[126,236,68,-1.3996545523405075],[126,236,69,-1.3994293101131916],[126,236,70,-1.3998345471918583],[126,236,71,-1.4008140936493874],[126,236,72,-1.403140351176262],[126,236,73,-1.4060586504638195],[126,236,74,-1.408032551407814],[126,236,75,-1.4082248508930206],[126,236,76,-1.406147789210081],[126,236,77,-1.4018261544406414],[126,236,78,-1.3963885642588139],[126,236,79,-1.3907651044428349],[126,237,64,-1.4063683114945889],[126,237,65,-1.4086450934410095],[126,237,66,-1.4091725312173367],[126,237,67,-1.408419456332922],[126,237,68,-1.4074670523405075],[126,237,69,-1.4072418101131916],[126,237,70,-1.4076470471918583],[126,237,71,-1.4086265936493874],[126,237,72,-1.410952851176262],[126,237,73,-1.4138711504638195],[126,237,74,-1.415845051407814],[126,237,75,-1.4160373508930206],[126,237,76,-1.413960289210081],[126,237,77,-1.4096386544406414],[126,237,78,-1.4042010642588139],[126,237,79,-1.3985776044428349],[126,238,64,-1.4141808114945889],[126,238,65,-1.4164575934410095],[126,238,66,-1.4169850312173367],[126,238,67,-1.416231956332922],[126,238,68,-1.4152795523405075],[126,238,69,-1.4150543101131916],[126,238,70,-1.4154595471918583],[126,238,71,-1.4164390936493874],[126,238,72,-1.418765351176262],[126,238,73,-1.4216836504638195],[126,238,74,-1.423657551407814],[126,238,75,-1.4238498508930206],[126,238,76,-1.421772789210081],[126,238,77,-1.4174511544406414],[126,238,78,-1.4120135642588139],[126,238,79,-1.4063901044428349],[126,239,64,-1.4219933114945889],[126,239,65,-1.4242700934410095],[126,239,66,-1.4247975312173367],[126,239,67,-1.424044456332922],[126,239,68,-1.4230920523405075],[126,239,69,-1.4228668101131916],[126,239,70,-1.4232720471918583],[126,239,71,-1.4242515936493874],[126,239,72,-1.426577851176262],[126,239,73,-1.4294961504638195],[126,239,74,-1.431470051407814],[126,239,75,-1.4316623508930206],[126,239,76,-1.429585289210081],[126,239,77,-1.4252636544406414],[126,239,78,-1.4198260642588139],[126,239,79,-1.4142026044428349],[126,240,64,-1.4298058114945889],[126,240,65,-1.4320825934410095],[126,240,66,-1.4326100312173367],[126,240,67,-1.431856956332922],[126,240,68,-1.4309045523405075],[126,240,69,-1.4306793101131916],[126,240,70,-1.4310845471918583],[126,240,71,-1.4320640936493874],[126,240,72,-1.434390351176262],[126,240,73,-1.4373086504638195],[126,240,74,-1.439282551407814],[126,240,75,-1.4394748508930206],[126,240,76,-1.437397789210081],[126,240,77,-1.4330761544406414],[126,240,78,-1.4276385642588139],[126,240,79,-1.4220151044428349],[126,241,64,-1.4376183114945889],[126,241,65,-1.4398950934410095],[126,241,66,-1.4404225312173367],[126,241,67,-1.439669456332922],[126,241,68,-1.4387170523405075],[126,241,69,-1.4384918101131916],[126,241,70,-1.4388970471918583],[126,241,71,-1.4398765936493874],[126,241,72,-1.442202851176262],[126,241,73,-1.4451211504638195],[126,241,74,-1.447095051407814],[126,241,75,-1.4472873508930206],[126,241,76,-1.445210289210081],[126,241,77,-1.4408886544406414],[126,241,78,-1.4354510642588139],[126,241,79,-1.4298276044428349],[126,242,64,-1.4454308114945889],[126,242,65,-1.4477075934410095],[126,242,66,-1.4482350312173367],[126,242,67,-1.447481956332922],[126,242,68,-1.4465295523405075],[126,242,69,-1.4463043101131916],[126,242,70,-1.4467095471918583],[126,242,71,-1.4476890936493874],[126,242,72,-1.450015351176262],[126,242,73,-1.4529336504638195],[126,242,74,-1.454907551407814],[126,242,75,-1.4550998508930206],[126,242,76,-1.453022789210081],[126,242,77,-1.4487011544406414],[126,242,78,-1.4432635642588139],[126,242,79,-1.4376401044428349],[126,243,64,-1.4532433114945889],[126,243,65,-1.4555200934410095],[126,243,66,-1.4560475312173367],[126,243,67,-1.455294456332922],[126,243,68,-1.4543420523405075],[126,243,69,-1.4541168101131916],[126,243,70,-1.4545220471918583],[126,243,71,-1.4555015936493874],[126,243,72,-1.457827851176262],[126,243,73,-1.4607461504638195],[126,243,74,-1.462720051407814],[126,243,75,-1.4629123508930206],[126,243,76,-1.460835289210081],[126,243,77,-1.4565136544406414],[126,243,78,-1.4510760642588139],[126,243,79,-1.4454526044428349],[126,244,64,-1.4610558114945889],[126,244,65,-1.4633325934410095],[126,244,66,-1.4638600312173367],[126,244,67,-1.463106956332922],[126,244,68,-1.4621545523405075],[126,244,69,-1.4619293101131916],[126,244,70,-1.4623345471918583],[126,244,71,-1.4633140936493874],[126,244,72,-1.465640351176262],[126,244,73,-1.4685586504638195],[126,244,74,-1.470532551407814],[126,244,75,-1.4707248508930206],[126,244,76,-1.468647789210081],[126,244,77,-1.4643261544406414],[126,244,78,-1.4588885642588139],[126,244,79,-1.4532651044428349],[126,245,64,-1.4688683114945889],[126,245,65,-1.4711450934410095],[126,245,66,-1.4716725312173367],[126,245,67,-1.470919456332922],[126,245,68,-1.4699670523405075],[126,245,69,-1.4697418101131916],[126,245,70,-1.4701470471918583],[126,245,71,-1.4711265936493874],[126,245,72,-1.473452851176262],[126,245,73,-1.4763711504638195],[126,245,74,-1.478345051407814],[126,245,75,-1.4785373508930206],[126,245,76,-1.476460289210081],[126,245,77,-1.4721386544406414],[126,245,78,-1.4667010642588139],[126,245,79,-1.4610776044428349],[126,246,64,-1.4766808114945889],[126,246,65,-1.4789575934410095],[126,246,66,-1.4794850312173367],[126,246,67,-1.478731956332922],[126,246,68,-1.4777795523405075],[126,246,69,-1.4775543101131916],[126,246,70,-1.4779595471918583],[126,246,71,-1.4789390936493874],[126,246,72,-1.481265351176262],[126,246,73,-1.4841836504638195],[126,246,74,-1.486157551407814],[126,246,75,-1.4863498508930206],[126,246,76,-1.484272789210081],[126,246,77,-1.4799511544406414],[126,246,78,-1.4745135642588139],[126,246,79,-1.4688901044428349],[126,247,64,-1.4844933114945889],[126,247,65,-1.4867700934410095],[126,247,66,-1.4872975312173367],[126,247,67,-1.486544456332922],[126,247,68,-1.4855920523405075],[126,247,69,-1.4853668101131916],[126,247,70,-1.4857720471918583],[126,247,71,-1.4867515936493874],[126,247,72,-1.489077851176262],[126,247,73,-1.4919961504638195],[126,247,74,-1.493970051407814],[126,247,75,-1.4941623508930206],[126,247,76,-1.492085289210081],[126,247,77,-1.4877636544406414],[126,247,78,-1.4823260642588139],[126,247,79,-1.4767026044428349],[126,248,64,-1.4923058114945889],[126,248,65,-1.4945825934410095],[126,248,66,-1.4951100312173367],[126,248,67,-1.494356956332922],[126,248,68,-1.4934045523405075],[126,248,69,-1.4931793101131916],[126,248,70,-1.4935845471918583],[126,248,71,-1.4945640936493874],[126,248,72,-1.496890351176262],[126,248,73,-1.4998086504638195],[126,248,74,-1.501782551407814],[126,248,75,-1.5019748508930206],[126,248,76,-1.499897789210081],[126,248,77,-1.4955761544406414],[126,248,78,-1.4901385642588139],[126,248,79,-1.4845151044428349],[126,249,64,-1.5001183114945889],[126,249,65,-1.5023950934410095],[126,249,66,-1.5029225312173367],[126,249,67,-1.502169456332922],[126,249,68,-1.5012170523405075],[126,249,69,-1.5009918101131916],[126,249,70,-1.5013970471918583],[126,249,71,-1.5023765936493874],[126,249,72,-1.504702851176262],[126,249,73,-1.5076211504638195],[126,249,74,-1.509595051407814],[126,249,75,-1.5097873508930206],[126,249,76,-1.507710289210081],[126,249,77,-1.5033886544406414],[126,249,78,-1.4979510642588139],[126,249,79,-1.4923276044428349],[126,250,64,-1.5079308114945889],[126,250,65,-1.5102075934410095],[126,250,66,-1.5107350312173367],[126,250,67,-1.509981956332922],[126,250,68,-1.5090295523405075],[126,250,69,-1.5088043101131916],[126,250,70,-1.5092095471918583],[126,250,71,-1.5101890936493874],[126,250,72,-1.512515351176262],[126,250,73,-1.5154336504638195],[126,250,74,-1.517407551407814],[126,250,75,-1.5175998508930206],[126,250,76,-1.515522789210081],[126,250,77,-1.5112011544406414],[126,250,78,-1.5057635642588139],[126,250,79,-1.5001401044428349],[126,251,64,-1.5157433114945889],[126,251,65,-1.5180200934410095],[126,251,66,-1.5185475312173367],[126,251,67,-1.517794456332922],[126,251,68,-1.5168420523405075],[126,251,69,-1.5166168101131916],[126,251,70,-1.5170220471918583],[126,251,71,-1.5180015936493874],[126,251,72,-1.520327851176262],[126,251,73,-1.5232461504638195],[126,251,74,-1.525220051407814],[126,251,75,-1.5254123508930206],[126,251,76,-1.523335289210081],[126,251,77,-1.5190136544406414],[126,251,78,-1.5135760642588139],[126,251,79,-1.5079526044428349],[126,252,64,-1.5235558114945889],[126,252,65,-1.5258325934410095],[126,252,66,-1.5263600312173367],[126,252,67,-1.525606956332922],[126,252,68,-1.5246545523405075],[126,252,69,-1.5244293101131916],[126,252,70,-1.5248345471918583],[126,252,71,-1.5258140936493874],[126,252,72,-1.528140351176262],[126,252,73,-1.5310586504638195],[126,252,74,-1.533032551407814],[126,252,75,-1.5332248508930206],[126,252,76,-1.531147789210081],[126,252,77,-1.5268261544406414],[126,252,78,-1.5213885642588139],[126,252,79,-1.5157651044428349],[126,253,64,-1.5313683114945889],[126,253,65,-1.5336450934410095],[126,253,66,-1.5341725312173367],[126,253,67,-1.533419456332922],[126,253,68,-1.5324670523405075],[126,253,69,-1.5322418101131916],[126,253,70,-1.5326470471918583],[126,253,71,-1.5336265936493874],[126,253,72,-1.535952851176262],[126,253,73,-1.5388711504638195],[126,253,74,-1.540845051407814],[126,253,75,-1.5410373508930206],[126,253,76,-1.538960289210081],[126,253,77,-1.5346386544406414],[126,253,78,-1.5292010642588139],[126,253,79,-1.5235776044428349],[126,254,64,-1.5391808114945889],[126,254,65,-1.5414575934410095],[126,254,66,-1.5419850312173367],[126,254,67,-1.541231956332922],[126,254,68,-1.5402795523405075],[126,254,69,-1.5400543101131916],[126,254,70,-1.5404595471918583],[126,254,71,-1.5414390936493874],[126,254,72,-1.543765351176262],[126,254,73,-1.5466836504638195],[126,254,74,-1.548657551407814],[126,254,75,-1.5488498508930206],[126,254,76,-1.546772789210081],[126,254,77,-1.5424511544406414],[126,254,78,-1.5370135642588139],[126,254,79,-1.5313901044428349],[126,255,64,-1.5469933114945889],[126,255,65,-1.5492700934410095],[126,255,66,-1.5497975312173367],[126,255,67,-1.549044456332922],[126,255,68,-1.5480920523405075],[126,255,69,-1.5478668101131916],[126,255,70,-1.5482720471918583],[126,255,71,-1.5492515936493874],[126,255,72,-1.551577851176262],[126,255,73,-1.5544961504638195],[126,255,74,-1.556470051407814],[126,255,75,-1.5566623508930206],[126,255,76,-1.554585289210081],[126,255,77,-1.5502636544406414],[126,255,78,-1.5448260642588139],[126,255,79,-1.5392026044428349],[126,256,64,-1.5548058114945889],[126,256,65,-1.5570825934410095],[126,256,66,-1.5576100312173367],[126,256,67,-1.556856956332922],[126,256,68,-1.5559045523405075],[126,256,69,-1.5556793101131916],[126,256,70,-1.5560845471918583],[126,256,71,-1.5570640936493874],[126,256,72,-1.559390351176262],[126,256,73,-1.5623086504638195],[126,256,74,-1.564282551407814],[126,256,75,-1.5644748508930206],[126,256,76,-1.562397789210081],[126,256,77,-1.5580761544406414],[126,256,78,-1.5526385642588139],[126,256,79,-1.5470151044428349],[126,257,64,-1.5626183114945889],[126,257,65,-1.5648950934410095],[126,257,66,-1.5654225312173367],[126,257,67,-1.564669456332922],[126,257,68,-1.5637170523405075],[126,257,69,-1.5634918101131916],[126,257,70,-1.5638970471918583],[126,257,71,-1.5648765936493874],[126,257,72,-1.567202851176262],[126,257,73,-1.5701211504638195],[126,257,74,-1.572095051407814],[126,257,75,-1.5722873508930206],[126,257,76,-1.570210289210081],[126,257,77,-1.5658886544406414],[126,257,78,-1.5604510642588139],[126,257,79,-1.5548276044428349],[126,258,64,-1.5704308114945889],[126,258,65,-1.5727075934410095],[126,258,66,-1.5732350312173367],[126,258,67,-1.572481956332922],[126,258,68,-1.5715295523405075],[126,258,69,-1.5713043101131916],[126,258,70,-1.5717095471918583],[126,258,71,-1.5726890936493874],[126,258,72,-1.575015351176262],[126,258,73,-1.5779336504638195],[126,258,74,-1.579907551407814],[126,258,75,-1.5800998508930206],[126,258,76,-1.578022789210081],[126,258,77,-1.5737011544406414],[126,258,78,-1.5682635642588139],[126,258,79,-1.5626401044428349],[126,259,64,-1.5782433114945889],[126,259,65,-1.5805200934410095],[126,259,66,-1.5810475312173367],[126,259,67,-1.580294456332922],[126,259,68,-1.5793420523405075],[126,259,69,-1.5791168101131916],[126,259,70,-1.5795220471918583],[126,259,71,-1.5805015936493874],[126,259,72,-1.582827851176262],[126,259,73,-1.5857461504638195],[126,259,74,-1.587720051407814],[126,259,75,-1.5879123508930206],[126,259,76,-1.585835289210081],[126,259,77,-1.5815136544406414],[126,259,78,-1.5760760642588139],[126,259,79,-1.5704526044428349],[126,260,64,-1.5860558114945889],[126,260,65,-1.5883325934410095],[126,260,66,-1.5888600312173367],[126,260,67,-1.588106956332922],[126,260,68,-1.5871545523405075],[126,260,69,-1.5869293101131916],[126,260,70,-1.5873345471918583],[126,260,71,-1.5883140936493874],[126,260,72,-1.590640351176262],[126,260,73,-1.5935586504638195],[126,260,74,-1.595532551407814],[126,260,75,-1.5957248508930206],[126,260,76,-1.593647789210081],[126,260,77,-1.5893261544406414],[126,260,78,-1.5838885642588139],[126,260,79,-1.5782651044428349],[126,261,64,-1.5938683114945889],[126,261,65,-1.5961450934410095],[126,261,66,-1.5966725312173367],[126,261,67,-1.595919456332922],[126,261,68,-1.5949670523405075],[126,261,69,-1.5947418101131916],[126,261,70,-1.5951470471918583],[126,261,71,-1.5961265936493874],[126,261,72,-1.598452851176262],[126,261,73,-1.6013711504638195],[126,261,74,-1.603345051407814],[126,261,75,-1.6035373508930206],[126,261,76,-1.601460289210081],[126,261,77,-1.5971386544406414],[126,261,78,-1.5917010642588139],[126,261,79,-1.5860776044428349],[126,262,64,-1.6016808114945889],[126,262,65,-1.6039575934410095],[126,262,66,-1.6044850312173367],[126,262,67,-1.603731956332922],[126,262,68,-1.6027795523405075],[126,262,69,-1.6025543101131916],[126,262,70,-1.6029595471918583],[126,262,71,-1.6039390936493874],[126,262,72,-1.606265351176262],[126,262,73,-1.6091836504638195],[126,262,74,-1.611157551407814],[126,262,75,-1.6113498508930206],[126,262,76,-1.609272789210081],[126,262,77,-1.6049511544406414],[126,262,78,-1.5995135642588139],[126,262,79,-1.5938901044428349],[126,263,64,-1.6094933114945889],[126,263,65,-1.6117700934410095],[126,263,66,-1.6122975312173367],[126,263,67,-1.611544456332922],[126,263,68,-1.6105920523405075],[126,263,69,-1.6103668101131916],[126,263,70,-1.6107720471918583],[126,263,71,-1.6117515936493874],[126,263,72,-1.614077851176262],[126,263,73,-1.6169961504638195],[126,263,74,-1.618970051407814],[126,263,75,-1.6191623508930206],[126,263,76,-1.617085289210081],[126,263,77,-1.6127636544406414],[126,263,78,-1.6073260642588139],[126,263,79,-1.6017026044428349],[126,264,64,-1.6173058114945889],[126,264,65,-1.6195825934410095],[126,264,66,-1.6201100312173367],[126,264,67,-1.619356956332922],[126,264,68,-1.6184045523405075],[126,264,69,-1.6181793101131916],[126,264,70,-1.6185845471918583],[126,264,71,-1.6195640936493874],[126,264,72,-1.621890351176262],[126,264,73,-1.6248086504638195],[126,264,74,-1.626782551407814],[126,264,75,-1.6269748508930206],[126,264,76,-1.624897789210081],[126,264,77,-1.6205761544406414],[126,264,78,-1.6151385642588139],[126,264,79,-1.6095151044428349],[126,265,64,-1.6251183114945889],[126,265,65,-1.6273950934410095],[126,265,66,-1.6279225312173367],[126,265,67,-1.627169456332922],[126,265,68,-1.6262170523405075],[126,265,69,-1.6259918101131916],[126,265,70,-1.6263970471918583],[126,265,71,-1.6273765936493874],[126,265,72,-1.629702851176262],[126,265,73,-1.6326211504638195],[126,265,74,-1.634595051407814],[126,265,75,-1.6347873508930206],[126,265,76,-1.632710289210081],[126,265,77,-1.6283886544406414],[126,265,78,-1.6229510642588139],[126,265,79,-1.6173276044428349],[126,266,64,-1.6329308114945889],[126,266,65,-1.6352075934410095],[126,266,66,-1.6357350312173367],[126,266,67,-1.634981956332922],[126,266,68,-1.6340295523405075],[126,266,69,-1.6338043101131916],[126,266,70,-1.6342095471918583],[126,266,71,-1.6351890936493874],[126,266,72,-1.637515351176262],[126,266,73,-1.6404336504638195],[126,266,74,-1.642407551407814],[126,266,75,-1.6425998508930206],[126,266,76,-1.640522789210081],[126,266,77,-1.6362011544406414],[126,266,78,-1.6307635642588139],[126,266,79,-1.6251401044428349],[126,267,64,-1.6407433114945889],[126,267,65,-1.6430200934410095],[126,267,66,-1.6435475312173367],[126,267,67,-1.642794456332922],[126,267,68,-1.6418420523405075],[126,267,69,-1.6416168101131916],[126,267,70,-1.6420220471918583],[126,267,71,-1.6430015936493874],[126,267,72,-1.645327851176262],[126,267,73,-1.6482461504638195],[126,267,74,-1.650220051407814],[126,267,75,-1.6504123508930206],[126,267,76,-1.648335289210081],[126,267,77,-1.6440136544406414],[126,267,78,-1.6385760642588139],[126,267,79,-1.6329526044428349],[126,268,64,-1.6485558114945889],[126,268,65,-1.6508325934410095],[126,268,66,-1.6513600312173367],[126,268,67,-1.650606956332922],[126,268,68,-1.6496545523405075],[126,268,69,-1.6494293101131916],[126,268,70,-1.6498345471918583],[126,268,71,-1.6508140936493874],[126,268,72,-1.653140351176262],[126,268,73,-1.6560586504638195],[126,268,74,-1.658032551407814],[126,268,75,-1.6582248508930206],[126,268,76,-1.656147789210081],[126,268,77,-1.6518261544406414],[126,268,78,-1.6463885642588139],[126,268,79,-1.6407651044428349],[126,269,64,-1.6563683114945889],[126,269,65,-1.6586450934410095],[126,269,66,-1.6591725312173367],[126,269,67,-1.658419456332922],[126,269,68,-1.6574670523405075],[126,269,69,-1.6572418101131916],[126,269,70,-1.6576470471918583],[126,269,71,-1.6586265936493874],[126,269,72,-1.660952851176262],[126,269,73,-1.6638711504638195],[126,269,74,-1.665845051407814],[126,269,75,-1.6660373508930206],[126,269,76,-1.663960289210081],[126,269,77,-1.6596386544406414],[126,269,78,-1.6542010642588139],[126,269,79,-1.6485776044428349],[126,270,64,-1.6641808114945889],[126,270,65,-1.6664575934410095],[126,270,66,-1.6669850312173367],[126,270,67,-1.666231956332922],[126,270,68,-1.6652795523405075],[126,270,69,-1.6650543101131916],[126,270,70,-1.6654595471918583],[126,270,71,-1.6664390936493874],[126,270,72,-1.668765351176262],[126,270,73,-1.6716836504638195],[126,270,74,-1.673657551407814],[126,270,75,-1.6738498508930206],[126,270,76,-1.671772789210081],[126,270,77,-1.6674511544406414],[126,270,78,-1.6620135642588139],[126,270,79,-1.6563901044428349],[126,271,64,-1.6719933114945889],[126,271,65,-1.6742700934410095],[126,271,66,-1.6747975312173367],[126,271,67,-1.674044456332922],[126,271,68,-1.6730920523405075],[126,271,69,-1.6728668101131916],[126,271,70,-1.6732720471918583],[126,271,71,-1.6742515936493874],[126,271,72,-1.676577851176262],[126,271,73,-1.6794961504638195],[126,271,74,-1.681470051407814],[126,271,75,-1.6816623508930206],[126,271,76,-1.679585289210081],[126,271,77,-1.6752636544406414],[126,271,78,-1.6698260642588139],[126,271,79,-1.6642026044428349],[126,272,64,-1.6798058114945889],[126,272,65,-1.6820825934410095],[126,272,66,-1.6826100312173367],[126,272,67,-1.681856956332922],[126,272,68,-1.6809045523405075],[126,272,69,-1.6806793101131916],[126,272,70,-1.6810845471918583],[126,272,71,-1.6820640936493874],[126,272,72,-1.684390351176262],[126,272,73,-1.6873086504638195],[126,272,74,-1.689282551407814],[126,272,75,-1.6894748508930206],[126,272,76,-1.687397789210081],[126,272,77,-1.6830761544406414],[126,272,78,-1.6776385642588139],[126,272,79,-1.6720151044428349],[126,273,64,-1.6876183114945889],[126,273,65,-1.6898950934410095],[126,273,66,-1.6904225312173367],[126,273,67,-1.689669456332922],[126,273,68,-1.6887170523405075],[126,273,69,-1.6884918101131916],[126,273,70,-1.6888970471918583],[126,273,71,-1.6898765936493874],[126,273,72,-1.692202851176262],[126,273,73,-1.6951211504638195],[126,273,74,-1.697095051407814],[126,273,75,-1.6972873508930206],[126,273,76,-1.695210289210081],[126,273,77,-1.6908886544406414],[126,273,78,-1.6854510642588139],[126,273,79,-1.6798276044428349],[126,274,64,-1.6954308114945889],[126,274,65,-1.6977075934410095],[126,274,66,-1.6982350312173367],[126,274,67,-1.697481956332922],[126,274,68,-1.6965295523405075],[126,274,69,-1.6963043101131916],[126,274,70,-1.6967095471918583],[126,274,71,-1.6976890936493874],[126,274,72,-1.700015351176262],[126,274,73,-1.7029336504638195],[126,274,74,-1.704907551407814],[126,274,75,-1.7050998508930206],[126,274,76,-1.703022789210081],[126,274,77,-1.6987011544406414],[126,274,78,-1.6932635642588139],[126,274,79,-1.6876401044428349],[126,275,64,-1.7032433114945889],[126,275,65,-1.7055200934410095],[126,275,66,-1.7060475312173367],[126,275,67,-1.705294456332922],[126,275,68,-1.7043420523405075],[126,275,69,-1.7041168101131916],[126,275,70,-1.7045220471918583],[126,275,71,-1.7055015936493874],[126,275,72,-1.707827851176262],[126,275,73,-1.7107461504638195],[126,275,74,-1.712720051407814],[126,275,75,-1.7129123508930206],[126,275,76,-1.710835289210081],[126,275,77,-1.7065136544406414],[126,275,78,-1.7010760642588139],[126,275,79,-1.6954526044428349],[126,276,64,-1.7110558114945889],[126,276,65,-1.7133325934410095],[126,276,66,-1.7138600312173367],[126,276,67,-1.713106956332922],[126,276,68,-1.7121545523405075],[126,276,69,-1.7119293101131916],[126,276,70,-1.7123345471918583],[126,276,71,-1.7133140936493874],[126,276,72,-1.715640351176262],[126,276,73,-1.7185586504638195],[126,276,74,-1.720532551407814],[126,276,75,-1.7207248508930206],[126,276,76,-1.718647789210081],[126,276,77,-1.7143261544406414],[126,276,78,-1.7088885642588139],[126,276,79,-1.7032651044428349],[126,277,64,-1.7188683114945889],[126,277,65,-1.7211450934410095],[126,277,66,-1.7216725312173367],[126,277,67,-1.720919456332922],[126,277,68,-1.7199670523405075],[126,277,69,-1.7197418101131916],[126,277,70,-1.7201470471918583],[126,277,71,-1.7211265936493874],[126,277,72,-1.723452851176262],[126,277,73,-1.7263711504638195],[126,277,74,-1.728345051407814],[126,277,75,-1.7285373508930206],[126,277,76,-1.726460289210081],[126,277,77,-1.7221386544406414],[126,277,78,-1.7167010642588139],[126,277,79,-1.7110776044428349],[126,278,64,-1.7266808114945889],[126,278,65,-1.7289575934410095],[126,278,66,-1.7294850312173367],[126,278,67,-1.728731956332922],[126,278,68,-1.7277795523405075],[126,278,69,-1.7275543101131916],[126,278,70,-1.7279595471918583],[126,278,71,-1.7289390936493874],[126,278,72,-1.731265351176262],[126,278,73,-1.7341836504638195],[126,278,74,-1.736157551407814],[126,278,75,-1.7363498508930206],[126,278,76,-1.734272789210081],[126,278,77,-1.7299511544406414],[126,278,78,-1.7245135642588139],[126,278,79,-1.7188901044428349],[126,279,64,-1.7344933114945889],[126,279,65,-1.7367700934410095],[126,279,66,-1.7372975312173367],[126,279,67,-1.736544456332922],[126,279,68,-1.7355920523405075],[126,279,69,-1.7353668101131916],[126,279,70,-1.7357720471918583],[126,279,71,-1.7367515936493874],[126,279,72,-1.739077851176262],[126,279,73,-1.7419961504638195],[126,279,74,-1.743970051407814],[126,279,75,-1.7441623508930206],[126,279,76,-1.742085289210081],[126,279,77,-1.7377636544406414],[126,279,78,-1.7323260642588139],[126,279,79,-1.7267026044428349],[126,280,64,-1.7423058114945889],[126,280,65,-1.7445825934410095],[126,280,66,-1.7451100312173367],[126,280,67,-1.744356956332922],[126,280,68,-1.7434045523405075],[126,280,69,-1.7431793101131916],[126,280,70,-1.7435845471918583],[126,280,71,-1.7445640936493874],[126,280,72,-1.746890351176262],[126,280,73,-1.7498086504638195],[126,280,74,-1.751782551407814],[126,280,75,-1.7519748508930206],[126,280,76,-1.749897789210081],[126,280,77,-1.7455761544406414],[126,280,78,-1.7401385642588139],[126,280,79,-1.7345151044428349],[126,281,64,-1.7501183114945889],[126,281,65,-1.7523950934410095],[126,281,66,-1.7529225312173367],[126,281,67,-1.752169456332922],[126,281,68,-1.7512170523405075],[126,281,69,-1.7509918101131916],[126,281,70,-1.7513970471918583],[126,281,71,-1.7523765936493874],[126,281,72,-1.754702851176262],[126,281,73,-1.7576211504638195],[126,281,74,-1.759595051407814],[126,281,75,-1.7597873508930206],[126,281,76,-1.757710289210081],[126,281,77,-1.7533886544406414],[126,281,78,-1.7479510642588139],[126,281,79,-1.7423276044428349],[126,282,64,-1.7579308114945889],[126,282,65,-1.7602075934410095],[126,282,66,-1.7607350312173367],[126,282,67,-1.759981956332922],[126,282,68,-1.7590295523405075],[126,282,69,-1.7588043101131916],[126,282,70,-1.7592095471918583],[126,282,71,-1.7601890936493874],[126,282,72,-1.762515351176262],[126,282,73,-1.7654336504638195],[126,282,74,-1.767407551407814],[126,282,75,-1.7675998508930206],[126,282,76,-1.765522789210081],[126,282,77,-1.7612011544406414],[126,282,78,-1.7557635642588139],[126,282,79,-1.7501401044428349],[126,283,64,-1.7657433114945889],[126,283,65,-1.7680200934410095],[126,283,66,-1.7685475312173367],[126,283,67,-1.767794456332922],[126,283,68,-1.7668420523405075],[126,283,69,-1.7666168101131916],[126,283,70,-1.7670220471918583],[126,283,71,-1.7680015936493874],[126,283,72,-1.770327851176262],[126,283,73,-1.7732461504638195],[126,283,74,-1.775220051407814],[126,283,75,-1.7754123508930206],[126,283,76,-1.773335289210081],[126,283,77,-1.7690136544406414],[126,283,78,-1.7635760642588139],[126,283,79,-1.7579526044428349],[126,284,64,-1.7735558114945889],[126,284,65,-1.7758325934410095],[126,284,66,-1.7763600312173367],[126,284,67,-1.775606956332922],[126,284,68,-1.7746545523405075],[126,284,69,-1.7744293101131916],[126,284,70,-1.7748345471918583],[126,284,71,-1.7758140936493874],[126,284,72,-1.778140351176262],[126,284,73,-1.7810586504638195],[126,284,74,-1.783032551407814],[126,284,75,-1.7832248508930206],[126,284,76,-1.781147789210081],[126,284,77,-1.7768261544406414],[126,284,78,-1.7713885642588139],[126,284,79,-1.7657651044428349],[126,285,64,-1.7813683114945889],[126,285,65,-1.7836450934410095],[126,285,66,-1.7841725312173367],[126,285,67,-1.783419456332922],[126,285,68,-1.7824670523405075],[126,285,69,-1.7822418101131916],[126,285,70,-1.7826470471918583],[126,285,71,-1.7836265936493874],[126,285,72,-1.785952851176262],[126,285,73,-1.7888711504638195],[126,285,74,-1.790845051407814],[126,285,75,-1.7910373508930206],[126,285,76,-1.788960289210081],[126,285,77,-1.7846386544406414],[126,285,78,-1.7792010642588139],[126,285,79,-1.7735776044428349],[126,286,64,-1.7891808114945889],[126,286,65,-1.7914575934410095],[126,286,66,-1.7919850312173367],[126,286,67,-1.791231956332922],[126,286,68,-1.7902795523405075],[126,286,69,-1.7900543101131916],[126,286,70,-1.7904595471918583],[126,286,71,-1.7914390936493874],[126,286,72,-1.793765351176262],[126,286,73,-1.7966836504638195],[126,286,74,-1.798657551407814],[126,286,75,-1.7988498508930206],[126,286,76,-1.796772789210081],[126,286,77,-1.7924511544406414],[126,286,78,-1.7870135642588139],[126,286,79,-1.7813901044428349],[126,287,64,-1.7969933114945889],[126,287,65,-1.7992700934410095],[126,287,66,-1.7997975312173367],[126,287,67,-1.799044456332922],[126,287,68,-1.7980920523405075],[126,287,69,-1.7978668101131916],[126,287,70,-1.7982720471918583],[126,287,71,-1.7992515936493874],[126,287,72,-1.801577851176262],[126,287,73,-1.8044961504638195],[126,287,74,-1.806470051407814],[126,287,75,-1.8066623508930206],[126,287,76,-1.804585289210081],[126,287,77,-1.8002636544406414],[126,287,78,-1.7948260642588139],[126,287,79,-1.7892026044428349],[126,288,64,-1.8048058114945889],[126,288,65,-1.8070825934410095],[126,288,66,-1.8076100312173367],[126,288,67,-1.806856956332922],[126,288,68,-1.8059045523405075],[126,288,69,-1.8056793101131916],[126,288,70,-1.8060845471918583],[126,288,71,-1.8070640936493874],[126,288,72,-1.809390351176262],[126,288,73,-1.8123086504638195],[126,288,74,-1.814282551407814],[126,288,75,-1.8144748508930206],[126,288,76,-1.812397789210081],[126,288,77,-1.8080761544406414],[126,288,78,-1.8026385642588139],[126,288,79,-1.7970151044428349],[126,289,64,-1.8126183114945889],[126,289,65,-1.8148950934410095],[126,289,66,-1.8154225312173367],[126,289,67,-1.814669456332922],[126,289,68,-1.8137170523405075],[126,289,69,-1.8134918101131916],[126,289,70,-1.8138970471918583],[126,289,71,-1.8148765936493874],[126,289,72,-1.817202851176262],[126,289,73,-1.8201211504638195],[126,289,74,-1.822095051407814],[126,289,75,-1.8222873508930206],[126,289,76,-1.820210289210081],[126,289,77,-1.8158886544406414],[126,289,78,-1.8104510642588139],[126,289,79,-1.8048276044428349],[126,290,64,-1.8204308114945889],[126,290,65,-1.8227075934410095],[126,290,66,-1.8232350312173367],[126,290,67,-1.822481956332922],[126,290,68,-1.8215295523405075],[126,290,69,-1.8213043101131916],[126,290,70,-1.8217095471918583],[126,290,71,-1.8226890936493874],[126,290,72,-1.825015351176262],[126,290,73,-1.8279336504638195],[126,290,74,-1.829907551407814],[126,290,75,-1.8300998508930206],[126,290,76,-1.828022789210081],[126,290,77,-1.8237011544406414],[126,290,78,-1.8182635642588139],[126,290,79,-1.8126401044428349],[126,291,64,-1.8282433114945889],[126,291,65,-1.8305200934410095],[126,291,66,-1.8310475312173367],[126,291,67,-1.830294456332922],[126,291,68,-1.8293420523405075],[126,291,69,-1.8291168101131916],[126,291,70,-1.8295220471918583],[126,291,71,-1.8305015936493874],[126,291,72,-1.832827851176262],[126,291,73,-1.8357461504638195],[126,291,74,-1.837720051407814],[126,291,75,-1.8379123508930206],[126,291,76,-1.835835289210081],[126,291,77,-1.8315136544406414],[126,291,78,-1.8260760642588139],[126,291,79,-1.8204526044428349],[126,292,64,-1.8360558114945889],[126,292,65,-1.8383325934410095],[126,292,66,-1.8388600312173367],[126,292,67,-1.838106956332922],[126,292,68,-1.8371545523405075],[126,292,69,-1.8369293101131916],[126,292,70,-1.8373345471918583],[126,292,71,-1.8383140936493874],[126,292,72,-1.840640351176262],[126,292,73,-1.8435586504638195],[126,292,74,-1.845532551407814],[126,292,75,-1.8457248508930206],[126,292,76,-1.843647789210081],[126,292,77,-1.8393261544406414],[126,292,78,-1.8338885642588139],[126,292,79,-1.8282651044428349],[126,293,64,-1.8438683114945889],[126,293,65,-1.8461450934410095],[126,293,66,-1.8466725312173367],[126,293,67,-1.845919456332922],[126,293,68,-1.8449670523405075],[126,293,69,-1.8447418101131916],[126,293,70,-1.8451470471918583],[126,293,71,-1.8461265936493874],[126,293,72,-1.848452851176262],[126,293,73,-1.8513711504638195],[126,293,74,-1.853345051407814],[126,293,75,-1.8535373508930206],[126,293,76,-1.851460289210081],[126,293,77,-1.8471386544406414],[126,293,78,-1.8417010642588139],[126,293,79,-1.8360776044428349],[126,294,64,-1.8516808114945889],[126,294,65,-1.8539575934410095],[126,294,66,-1.8544850312173367],[126,294,67,-1.853731956332922],[126,294,68,-1.8527795523405075],[126,294,69,-1.8525543101131916],[126,294,70,-1.8529595471918583],[126,294,71,-1.8539390936493874],[126,294,72,-1.856265351176262],[126,294,73,-1.8591836504638195],[126,294,74,-1.861157551407814],[126,294,75,-1.8613498508930206],[126,294,76,-1.859272789210081],[126,294,77,-1.8549511544406414],[126,294,78,-1.8495135642588139],[126,294,79,-1.8438901044428349],[126,295,64,-1.8594933114945889],[126,295,65,-1.8617700934410095],[126,295,66,-1.8622975312173367],[126,295,67,-1.861544456332922],[126,295,68,-1.8605920523405075],[126,295,69,-1.8603668101131916],[126,295,70,-1.8607720471918583],[126,295,71,-1.8617515936493874],[126,295,72,-1.864077851176262],[126,295,73,-1.8669961504638195],[126,295,74,-1.868970051407814],[126,295,75,-1.8691623508930206],[126,295,76,-1.867085289210081],[126,295,77,-1.8627636544406414],[126,295,78,-1.8573260642588139],[126,295,79,-1.8517026044428349],[126,296,64,-1.8673058114945889],[126,296,65,-1.8695825934410095],[126,296,66,-1.8701100312173367],[126,296,67,-1.869356956332922],[126,296,68,-1.8684045523405075],[126,296,69,-1.8681793101131916],[126,296,70,-1.8685845471918583],[126,296,71,-1.8695640936493874],[126,296,72,-1.871890351176262],[126,296,73,-1.8748086504638195],[126,296,74,-1.876782551407814],[126,296,75,-1.8769748508930206],[126,296,76,-1.874897789210081],[126,296,77,-1.8705761544406414],[126,296,78,-1.8651385642588139],[126,296,79,-1.8595151044428349],[126,297,64,-1.8751183114945889],[126,297,65,-1.8773950934410095],[126,297,66,-1.8779225312173367],[126,297,67,-1.877169456332922],[126,297,68,-1.8762170523405075],[126,297,69,-1.8759918101131916],[126,297,70,-1.8763970471918583],[126,297,71,-1.8773765936493874],[126,297,72,-1.879702851176262],[126,297,73,-1.8826211504638195],[126,297,74,-1.884595051407814],[126,297,75,-1.8847873508930206],[126,297,76,-1.882710289210081],[126,297,77,-1.8783886544406414],[126,297,78,-1.8729510642588139],[126,297,79,-1.8673276044428349],[126,298,64,-1.8829308114945889],[126,298,65,-1.8852075934410095],[126,298,66,-1.8857350312173367],[126,298,67,-1.884981956332922],[126,298,68,-1.8840295523405075],[126,298,69,-1.8838043101131916],[126,298,70,-1.8842095471918583],[126,298,71,-1.8851890936493874],[126,298,72,-1.887515351176262],[126,298,73,-1.8904336504638195],[126,298,74,-1.892407551407814],[126,298,75,-1.8925998508930206],[126,298,76,-1.890522789210081],[126,298,77,-1.8862011544406414],[126,298,78,-1.8807635642588139],[126,298,79,-1.8751401044428349],[126,299,64,-1.8907433114945889],[126,299,65,-1.8930200934410095],[126,299,66,-1.8935475312173367],[126,299,67,-1.892794456332922],[126,299,68,-1.8918420523405075],[126,299,69,-1.8916168101131916],[126,299,70,-1.8920220471918583],[126,299,71,-1.8930015936493874],[126,299,72,-1.895327851176262],[126,299,73,-1.8982461504638195],[126,299,74,-1.900220051407814],[126,299,75,-1.9004123508930206],[126,299,76,-1.898335289210081],[126,299,77,-1.8940136544406414],[126,299,78,-1.8885760642588139],[126,299,79,-1.8829526044428349],[126,300,64,-1.8985558114945889],[126,300,65,-1.9008325934410095],[126,300,66,-1.9013600312173367],[126,300,67,-1.900606956332922],[126,300,68,-1.8996545523405075],[126,300,69,-1.8994293101131916],[126,300,70,-1.8998345471918583],[126,300,71,-1.9008140936493874],[126,300,72,-1.903140351176262],[126,300,73,-1.9060586504638195],[126,300,74,-1.908032551407814],[126,300,75,-1.9082248508930206],[126,300,76,-1.906147789210081],[126,300,77,-1.9018261544406414],[126,300,78,-1.8963885642588139],[126,300,79,-1.8907651044428349],[126,301,64,-1.9063683114945889],[126,301,65,-1.9086450934410095],[126,301,66,-1.9091725312173367],[126,301,67,-1.908419456332922],[126,301,68,-1.9074670523405075],[126,301,69,-1.9072418101131916],[126,301,70,-1.9076470471918583],[126,301,71,-1.9086265936493874],[126,301,72,-1.910952851176262],[126,301,73,-1.9138711504638195],[126,301,74,-1.915845051407814],[126,301,75,-1.9160373508930206],[126,301,76,-1.913960289210081],[126,301,77,-1.9096386544406414],[126,301,78,-1.9042010642588139],[126,301,79,-1.8985776044428349],[126,302,64,-1.9141808114945889],[126,302,65,-1.9164575934410095],[126,302,66,-1.9169850312173367],[126,302,67,-1.916231956332922],[126,302,68,-1.9152795523405075],[126,302,69,-1.9150543101131916],[126,302,70,-1.9154595471918583],[126,302,71,-1.9164390936493874],[126,302,72,-1.918765351176262],[126,302,73,-1.9216836504638195],[126,302,74,-1.923657551407814],[126,302,75,-1.9238498508930206],[126,302,76,-1.921772789210081],[126,302,77,-1.9174511544406414],[126,302,78,-1.9120135642588139],[126,302,79,-1.9063901044428349],[126,303,64,-1.9219933114945889],[126,303,65,-1.9242700934410095],[126,303,66,-1.9247975312173367],[126,303,67,-1.924044456332922],[126,303,68,-1.9230920523405075],[126,303,69,-1.9228668101131916],[126,303,70,-1.9232720471918583],[126,303,71,-1.9242515936493874],[126,303,72,-1.926577851176262],[126,303,73,-1.9294961504638195],[126,303,74,-1.931470051407814],[126,303,75,-1.9316623508930206],[126,303,76,-1.929585289210081],[126,303,77,-1.9252636544406414],[126,303,78,-1.9198260642588139],[126,303,79,-1.9142026044428349],[126,304,64,-1.9298058114945889],[126,304,65,-1.9320825934410095],[126,304,66,-1.9326100312173367],[126,304,67,-1.931856956332922],[126,304,68,-1.9309045523405075],[126,304,69,-1.9306793101131916],[126,304,70,-1.9310845471918583],[126,304,71,-1.9320640936493874],[126,304,72,-1.934390351176262],[126,304,73,-1.9373086504638195],[126,304,74,-1.939282551407814],[126,304,75,-1.9394748508930206],[126,304,76,-1.937397789210081],[126,304,77,-1.9330761544406414],[126,304,78,-1.9276385642588139],[126,304,79,-1.9220151044428349],[126,305,64,-1.9376183114945889],[126,305,65,-1.9398950934410095],[126,305,66,-1.9404225312173367],[126,305,67,-1.939669456332922],[126,305,68,-1.9387170523405075],[126,305,69,-1.9384918101131916],[126,305,70,-1.9388970471918583],[126,305,71,-1.9398765936493874],[126,305,72,-1.942202851176262],[126,305,73,-1.9451211504638195],[126,305,74,-1.947095051407814],[126,305,75,-1.9472873508930206],[126,305,76,-1.945210289210081],[126,305,77,-1.9408886544406414],[126,305,78,-1.9354510642588139],[126,305,79,-1.9298276044428349],[126,306,64,-1.9454308114945889],[126,306,65,-1.9477075934410095],[126,306,66,-1.9482350312173367],[126,306,67,-1.947481956332922],[126,306,68,-1.9465295523405075],[126,306,69,-1.9463043101131916],[126,306,70,-1.9467095471918583],[126,306,71,-1.9476890936493874],[126,306,72,-1.950015351176262],[126,306,73,-1.9529336504638195],[126,306,74,-1.954907551407814],[126,306,75,-1.9550998508930206],[126,306,76,-1.953022789210081],[126,306,77,-1.9487011544406414],[126,306,78,-1.9432635642588139],[126,306,79,-1.9376401044428349],[126,307,64,-1.9532433114945889],[126,307,65,-1.9555200934410095],[126,307,66,-1.9560475312173367],[126,307,67,-1.955294456332922],[126,307,68,-1.9543420523405075],[126,307,69,-1.9541168101131916],[126,307,70,-1.9545220471918583],[126,307,71,-1.9555015936493874],[126,307,72,-1.957827851176262],[126,307,73,-1.9607461504638195],[126,307,74,-1.962720051407814],[126,307,75,-1.9629123508930206],[126,307,76,-1.960835289210081],[126,307,77,-1.9565136544406414],[126,307,78,-1.9510760642588139],[126,307,79,-1.9454526044428349],[126,308,64,-1.9610558114945889],[126,308,65,-1.9633325934410095],[126,308,66,-1.9638600312173367],[126,308,67,-1.963106956332922],[126,308,68,-1.9621545523405075],[126,308,69,-1.9619293101131916],[126,308,70,-1.9623345471918583],[126,308,71,-1.9633140936493874],[126,308,72,-1.965640351176262],[126,308,73,-1.9685586504638195],[126,308,74,-1.970532551407814],[126,308,75,-1.9707248508930206],[126,308,76,-1.968647789210081],[126,308,77,-1.9643261544406414],[126,308,78,-1.9588885642588139],[126,308,79,-1.9532651044428349],[126,309,64,-1.9688683114945889],[126,309,65,-1.9711450934410095],[126,309,66,-1.9716725312173367],[126,309,67,-1.970919456332922],[126,309,68,-1.9699670523405075],[126,309,69,-1.9697418101131916],[126,309,70,-1.9701470471918583],[126,309,71,-1.9711265936493874],[126,309,72,-1.973452851176262],[126,309,73,-1.9763711504638195],[126,309,74,-1.978345051407814],[126,309,75,-1.9785373508930206],[126,309,76,-1.976460289210081],[126,309,77,-1.9721386544406414],[126,309,78,-1.9667010642588139],[126,309,79,-1.9610776044428349],[126,310,64,-1.9766808114945889],[126,310,65,-1.9789575934410095],[126,310,66,-1.9794850312173367],[126,310,67,-1.978731956332922],[126,310,68,-1.9777795523405075],[126,310,69,-1.9775543101131916],[126,310,70,-1.9779595471918583],[126,310,71,-1.9789390936493874],[126,310,72,-1.981265351176262],[126,310,73,-1.9841836504638195],[126,310,74,-1.986157551407814],[126,310,75,-1.9863498508930206],[126,310,76,-1.984272789210081],[126,310,77,-1.9799511544406414],[126,310,78,-1.9745135642588139],[126,310,79,-1.9688901044428349],[126,311,64,-1.9844933114945889],[126,311,65,-1.9867700934410095],[126,311,66,-1.9872975312173367],[126,311,67,-1.986544456332922],[126,311,68,-1.9855920523405075],[126,311,69,-1.9853668101131916],[126,311,70,-1.9857720471918583],[126,311,71,-1.9867515936493874],[126,311,72,-1.989077851176262],[126,311,73,-1.9919961504638195],[126,311,74,-1.993970051407814],[126,311,75,-1.9941623508930206],[126,311,76,-1.992085289210081],[126,311,77,-1.9877636544406414],[126,311,78,-1.9823260642588139],[126,311,79,-1.9767026044428349],[126,312,64,-1.9923058114945889],[126,312,65,-1.9945825934410095],[126,312,66,-1.9951100312173367],[126,312,67,-1.994356956332922],[126,312,68,-1.9934045523405075],[126,312,69,-1.9931793101131916],[126,312,70,-1.9935845471918583],[126,312,71,-1.9945640936493874],[126,312,72,-1.996890351176262],[126,312,73,-1.9998086504638195],[126,312,74,-2.001782551407814],[126,312,75,-2.0019748508930206],[126,312,76,-1.999897789210081],[126,312,77,-1.9955761544406414],[126,312,78,-1.9901385642588139],[126,312,79,-1.9845151044428349],[126,313,64,-2.000118311494589],[126,313,65,-2.0023950934410095],[126,313,66,-2.0029225312173367],[126,313,67,-2.002169456332922],[126,313,68,-2.0012170523405075],[126,313,69,-2.0009918101131916],[126,313,70,-2.0013970471918583],[126,313,71,-2.0023765936493874],[126,313,72,-2.004702851176262],[126,313,73,-2.0076211504638195],[126,313,74,-2.009595051407814],[126,313,75,-2.0097873508930206],[126,313,76,-2.007710289210081],[126,313,77,-2.0033886544406414],[126,313,78,-1.9979510642588139],[126,313,79,-1.9923276044428349],[126,314,64,-2.007930811494589],[126,314,65,-2.0102075934410095],[126,314,66,-2.0107350312173367],[126,314,67,-2.009981956332922],[126,314,68,-2.0090295523405075],[126,314,69,-2.0088043101131916],[126,314,70,-2.0092095471918583],[126,314,71,-2.0101890936493874],[126,314,72,-2.012515351176262],[126,314,73,-2.0154336504638195],[126,314,74,-2.017407551407814],[126,314,75,-2.0175998508930206],[126,314,76,-2.015522789210081],[126,314,77,-2.0112011544406414],[126,314,78,-2.005763564258814],[126,314,79,-2.000140104442835],[126,315,64,-2.015743311494589],[126,315,65,-2.0180200934410095],[126,315,66,-2.0185475312173367],[126,315,67,-2.017794456332922],[126,315,68,-2.0168420523405075],[126,315,69,-2.0166168101131916],[126,315,70,-2.0170220471918583],[126,315,71,-2.0180015936493874],[126,315,72,-2.020327851176262],[126,315,73,-2.0232461504638195],[126,315,74,-2.025220051407814],[126,315,75,-2.0254123508930206],[126,315,76,-2.023335289210081],[126,315,77,-2.0190136544406414],[126,315,78,-2.013576064258814],[126,315,79,-2.007952604442835],[126,316,64,-2.023555811494589],[126,316,65,-2.0258325934410095],[126,316,66,-2.0263600312173367],[126,316,67,-2.025606956332922],[126,316,68,-2.0246545523405075],[126,316,69,-2.0244293101131916],[126,316,70,-2.0248345471918583],[126,316,71,-2.0258140936493874],[126,316,72,-2.028140351176262],[126,316,73,-2.0310586504638195],[126,316,74,-2.033032551407814],[126,316,75,-2.0332248508930206],[126,316,76,-2.031147789210081],[126,316,77,-2.0268261544406414],[126,316,78,-2.021388564258814],[126,316,79,-2.015765104442835],[126,317,64,-2.031368311494589],[126,317,65,-2.0336450934410095],[126,317,66,-2.0341725312173367],[126,317,67,-2.033419456332922],[126,317,68,-2.0324670523405075],[126,317,69,-2.0322418101131916],[126,317,70,-2.0326470471918583],[126,317,71,-2.0336265936493874],[126,317,72,-2.035952851176262],[126,317,73,-2.0388711504638195],[126,317,74,-2.040845051407814],[126,317,75,-2.0410373508930206],[126,317,76,-2.038960289210081],[126,317,77,-2.0346386544406414],[126,317,78,-2.029201064258814],[126,317,79,-2.023577604442835],[126,318,64,-2.039180811494589],[126,318,65,-2.0414575934410095],[126,318,66,-2.0419850312173367],[126,318,67,-2.041231956332922],[126,318,68,-2.0402795523405075],[126,318,69,-2.0400543101131916],[126,318,70,-2.0404595471918583],[126,318,71,-2.0414390936493874],[126,318,72,-2.043765351176262],[126,318,73,-2.0466836504638195],[126,318,74,-2.048657551407814],[126,318,75,-2.0488498508930206],[126,318,76,-2.046772789210081],[126,318,77,-2.0424511544406414],[126,318,78,-2.037013564258814],[126,318,79,-2.031390104442835],[126,319,64,-2.046993311494589],[126,319,65,-2.0492700934410095],[126,319,66,-2.0497975312173367],[126,319,67,-2.049044456332922],[126,319,68,-2.0480920523405075],[126,319,69,-2.0478668101131916],[126,319,70,-2.0482720471918583],[126,319,71,-2.0492515936493874],[126,319,72,-2.051577851176262],[126,319,73,-2.0544961504638195],[126,319,74,-2.056470051407814],[126,319,75,-2.0566623508930206],[126,319,76,-2.054585289210081],[126,319,77,-2.0502636544406414],[126,319,78,-2.044826064258814],[126,319,79,-2.039202604442835],[127,-64,64,0.944921612739563],[127,-64,65,0.9422755539417267],[127,-64,66,0.9411269351840019],[127,-64,67,0.9413105510175228],[127,-64,68,0.9420438669621944],[127,-64,69,0.9425393268465996],[127,-64,70,0.9427307695150375],[127,-64,71,0.9424471370875835],[127,-64,72,0.9407803565263748],[127,-64,73,0.9382400847971439],[127,-64,74,0.9363189525902271],[127,-64,75,0.9361064061522484],[127,-64,76,0.9381089694797993],[127,-64,77,0.9423019401729107],[127,-64,78,0.9476622752845287],[127,-64,79,0.9531769268214703],[127,-63,64,0.937109112739563],[127,-63,65,0.9344630539417267],[127,-63,66,0.9333144351840019],[127,-63,67,0.9334980510175228],[127,-63,68,0.9342313669621944],[127,-63,69,0.9347268268465996],[127,-63,70,0.9349182695150375],[127,-63,71,0.9346346370875835],[127,-63,72,0.9329678565263748],[127,-63,73,0.9304275847971439],[127,-63,74,0.9285064525902271],[127,-63,75,0.9282939061522484],[127,-63,76,0.9302964694797993],[127,-63,77,0.9344894401729107],[127,-63,78,0.9398497752845287],[127,-63,79,0.9453644268214703],[127,-62,64,0.929296612739563],[127,-62,65,0.9266505539417267],[127,-62,66,0.9255019351840019],[127,-62,67,0.9256855510175228],[127,-62,68,0.9264188669621944],[127,-62,69,0.9269143268465996],[127,-62,70,0.9271057695150375],[127,-62,71,0.9268221370875835],[127,-62,72,0.9251553565263748],[127,-62,73,0.9226150847971439],[127,-62,74,0.9206939525902271],[127,-62,75,0.9204814061522484],[127,-62,76,0.9224839694797993],[127,-62,77,0.9266769401729107],[127,-62,78,0.9320372752845287],[127,-62,79,0.9375519268214703],[127,-61,64,0.921484112739563],[127,-61,65,0.9188380539417267],[127,-61,66,0.9176894351840019],[127,-61,67,0.9178730510175228],[127,-61,68,0.9186063669621944],[127,-61,69,0.9191018268465996],[127,-61,70,0.9192932695150375],[127,-61,71,0.9190096370875835],[127,-61,72,0.9173428565263748],[127,-61,73,0.9148025847971439],[127,-61,74,0.9128814525902271],[127,-61,75,0.9126689061522484],[127,-61,76,0.9146714694797993],[127,-61,77,0.9188644401729107],[127,-61,78,0.9242247752845287],[127,-61,79,0.9297394268214703],[127,-60,64,0.913671612739563],[127,-60,65,0.9110255539417267],[127,-60,66,0.9098769351840019],[127,-60,67,0.9100605510175228],[127,-60,68,0.9107938669621944],[127,-60,69,0.9112893268465996],[127,-60,70,0.9114807695150375],[127,-60,71,0.9111971370875835],[127,-60,72,0.9095303565263748],[127,-60,73,0.9069900847971439],[127,-60,74,0.9050689525902271],[127,-60,75,0.9048564061522484],[127,-60,76,0.9068589694797993],[127,-60,77,0.9110519401729107],[127,-60,78,0.9164122752845287],[127,-60,79,0.9219269268214703],[127,-59,64,0.905859112739563],[127,-59,65,0.9032130539417267],[127,-59,66,0.9020644351840019],[127,-59,67,0.9022480510175228],[127,-59,68,0.9029813669621944],[127,-59,69,0.9034768268465996],[127,-59,70,0.9036682695150375],[127,-59,71,0.9033846370875835],[127,-59,72,0.9017178565263748],[127,-59,73,0.8991775847971439],[127,-59,74,0.8972564525902271],[127,-59,75,0.8970439061522484],[127,-59,76,0.8990464694797993],[127,-59,77,0.9032394401729107],[127,-59,78,0.9085997752845287],[127,-59,79,0.9141144268214703],[127,-58,64,0.898046612739563],[127,-58,65,0.8954005539417267],[127,-58,66,0.8942519351840019],[127,-58,67,0.8944355510175228],[127,-58,68,0.8951688669621944],[127,-58,69,0.8956643268465996],[127,-58,70,0.8958557695150375],[127,-58,71,0.8955721370875835],[127,-58,72,0.8939053565263748],[127,-58,73,0.8913650847971439],[127,-58,74,0.8894439525902271],[127,-58,75,0.8892314061522484],[127,-58,76,0.8912339694797993],[127,-58,77,0.8954269401729107],[127,-58,78,0.9007872752845287],[127,-58,79,0.9063019268214703],[127,-57,64,0.890234112739563],[127,-57,65,0.8875880539417267],[127,-57,66,0.8864394351840019],[127,-57,67,0.8866230510175228],[127,-57,68,0.8873563669621944],[127,-57,69,0.8878518268465996],[127,-57,70,0.8880432695150375],[127,-57,71,0.8877596370875835],[127,-57,72,0.8860928565263748],[127,-57,73,0.8835525847971439],[127,-57,74,0.8816314525902271],[127,-57,75,0.8814189061522484],[127,-57,76,0.8834214694797993],[127,-57,77,0.8876144401729107],[127,-57,78,0.8929747752845287],[127,-57,79,0.8984894268214703],[127,-56,64,0.882421612739563],[127,-56,65,0.8797755539417267],[127,-56,66,0.8786269351840019],[127,-56,67,0.8788105510175228],[127,-56,68,0.8795438669621944],[127,-56,69,0.8800393268465996],[127,-56,70,0.8802307695150375],[127,-56,71,0.8799471370875835],[127,-56,72,0.8782803565263748],[127,-56,73,0.8757400847971439],[127,-56,74,0.8738189525902271],[127,-56,75,0.8736064061522484],[127,-56,76,0.8756089694797993],[127,-56,77,0.8798019401729107],[127,-56,78,0.8851622752845287],[127,-56,79,0.8906769268214703],[127,-55,64,0.874609112739563],[127,-55,65,0.8719630539417267],[127,-55,66,0.8708144351840019],[127,-55,67,0.8709980510175228],[127,-55,68,0.8717313669621944],[127,-55,69,0.8722268268465996],[127,-55,70,0.8724182695150375],[127,-55,71,0.8721346370875835],[127,-55,72,0.8704678565263748],[127,-55,73,0.8679275847971439],[127,-55,74,0.8660064525902271],[127,-55,75,0.8657939061522484],[127,-55,76,0.8677964694797993],[127,-55,77,0.8719894401729107],[127,-55,78,0.8773497752845287],[127,-55,79,0.8828644268214703],[127,-54,64,0.866796612739563],[127,-54,65,0.8641505539417267],[127,-54,66,0.8630019351840019],[127,-54,67,0.8631855510175228],[127,-54,68,0.8639188669621944],[127,-54,69,0.8644143268465996],[127,-54,70,0.8646057695150375],[127,-54,71,0.8643221370875835],[127,-54,72,0.8626553565263748],[127,-54,73,0.8601150847971439],[127,-54,74,0.8581939525902271],[127,-54,75,0.8579814061522484],[127,-54,76,0.8599839694797993],[127,-54,77,0.8641769401729107],[127,-54,78,0.8695372752845287],[127,-54,79,0.8750519268214703],[127,-53,64,0.858984112739563],[127,-53,65,0.8563380539417267],[127,-53,66,0.8551894351840019],[127,-53,67,0.8553730510175228],[127,-53,68,0.8561063669621944],[127,-53,69,0.8566018268465996],[127,-53,70,0.8567932695150375],[127,-53,71,0.8565096370875835],[127,-53,72,0.8548428565263748],[127,-53,73,0.8523025847971439],[127,-53,74,0.8503814525902271],[127,-53,75,0.8501689061522484],[127,-53,76,0.8521714694797993],[127,-53,77,0.8563644401729107],[127,-53,78,0.8617247752845287],[127,-53,79,0.8672394268214703],[127,-52,64,0.851171612739563],[127,-52,65,0.8485255539417267],[127,-52,66,0.8473769351840019],[127,-52,67,0.8475605510175228],[127,-52,68,0.8482938669621944],[127,-52,69,0.8487893268465996],[127,-52,70,0.8489807695150375],[127,-52,71,0.8486971370875835],[127,-52,72,0.8470303565263748],[127,-52,73,0.8444900847971439],[127,-52,74,0.8425689525902271],[127,-52,75,0.8423564061522484],[127,-52,76,0.8443589694797993],[127,-52,77,0.8485519401729107],[127,-52,78,0.8539122752845287],[127,-52,79,0.8594269268214703],[127,-51,64,0.843359112739563],[127,-51,65,0.8407130539417267],[127,-51,66,0.8395644351840019],[127,-51,67,0.8397480510175228],[127,-51,68,0.8404813669621944],[127,-51,69,0.8409768268465996],[127,-51,70,0.8411682695150375],[127,-51,71,0.8408846370875835],[127,-51,72,0.8392178565263748],[127,-51,73,0.8366775847971439],[127,-51,74,0.8347564525902271],[127,-51,75,0.8345439061522484],[127,-51,76,0.8365464694797993],[127,-51,77,0.8407394401729107],[127,-51,78,0.8460997752845287],[127,-51,79,0.8516144268214703],[127,-50,64,0.835546612739563],[127,-50,65,0.8329005539417267],[127,-50,66,0.8317519351840019],[127,-50,67,0.8319355510175228],[127,-50,68,0.8326688669621944],[127,-50,69,0.8331643268465996],[127,-50,70,0.8333557695150375],[127,-50,71,0.8330721370875835],[127,-50,72,0.8314053565263748],[127,-50,73,0.8288650847971439],[127,-50,74,0.8269439525902271],[127,-50,75,0.8267314061522484],[127,-50,76,0.8287339694797993],[127,-50,77,0.8329269401729107],[127,-50,78,0.8382872752845287],[127,-50,79,0.8438019268214703],[127,-49,64,0.827734112739563],[127,-49,65,0.8250880539417267],[127,-49,66,0.8239394351840019],[127,-49,67,0.8241230510175228],[127,-49,68,0.8248563669621944],[127,-49,69,0.8253518268465996],[127,-49,70,0.8255432695150375],[127,-49,71,0.8252596370875835],[127,-49,72,0.8235928565263748],[127,-49,73,0.8210525847971439],[127,-49,74,0.8191314525902271],[127,-49,75,0.8189189061522484],[127,-49,76,0.8209214694797993],[127,-49,77,0.8251144401729107],[127,-49,78,0.8304747752845287],[127,-49,79,0.8359894268214703],[127,-48,64,0.819921612739563],[127,-48,65,0.8172755539417267],[127,-48,66,0.8161269351840019],[127,-48,67,0.8163105510175228],[127,-48,68,0.8170438669621944],[127,-48,69,0.8175393268465996],[127,-48,70,0.8177307695150375],[127,-48,71,0.8174471370875835],[127,-48,72,0.8157803565263748],[127,-48,73,0.8132400847971439],[127,-48,74,0.8113189525902271],[127,-48,75,0.8111064061522484],[127,-48,76,0.8131089694797993],[127,-48,77,0.8173019401729107],[127,-48,78,0.8226622752845287],[127,-48,79,0.8281769268214703],[127,-47,64,0.812109112739563],[127,-47,65,0.8094630539417267],[127,-47,66,0.8083144351840019],[127,-47,67,0.8084980510175228],[127,-47,68,0.8092313669621944],[127,-47,69,0.8097268268465996],[127,-47,70,0.8099182695150375],[127,-47,71,0.8096346370875835],[127,-47,72,0.8079678565263748],[127,-47,73,0.8054275847971439],[127,-47,74,0.8035064525902271],[127,-47,75,0.8032939061522484],[127,-47,76,0.8052964694797993],[127,-47,77,0.8094894401729107],[127,-47,78,0.8148497752845287],[127,-47,79,0.8203644268214703],[127,-46,64,0.804296612739563],[127,-46,65,0.8016505539417267],[127,-46,66,0.8005019351840019],[127,-46,67,0.8006855510175228],[127,-46,68,0.8014188669621944],[127,-46,69,0.8019143268465996],[127,-46,70,0.8021057695150375],[127,-46,71,0.8018221370875835],[127,-46,72,0.8001553565263748],[127,-46,73,0.7976150847971439],[127,-46,74,0.7956939525902271],[127,-46,75,0.7954814061522484],[127,-46,76,0.7974839694797993],[127,-46,77,0.8016769401729107],[127,-46,78,0.8070372752845287],[127,-46,79,0.8125519268214703],[127,-45,64,0.796484112739563],[127,-45,65,0.7938380539417267],[127,-45,66,0.7926894351840019],[127,-45,67,0.7928730510175228],[127,-45,68,0.7936063669621944],[127,-45,69,0.7941018268465996],[127,-45,70,0.7942932695150375],[127,-45,71,0.7940096370875835],[127,-45,72,0.7923428565263748],[127,-45,73,0.7898025847971439],[127,-45,74,0.7878814525902271],[127,-45,75,0.7876689061522484],[127,-45,76,0.7896714694797993],[127,-45,77,0.7938644401729107],[127,-45,78,0.7992247752845287],[127,-45,79,0.8047394268214703],[127,-44,64,0.788671612739563],[127,-44,65,0.7860255539417267],[127,-44,66,0.7848769351840019],[127,-44,67,0.7850605510175228],[127,-44,68,0.7857938669621944],[127,-44,69,0.7862893268465996],[127,-44,70,0.7864807695150375],[127,-44,71,0.7861971370875835],[127,-44,72,0.7845303565263748],[127,-44,73,0.7819900847971439],[127,-44,74,0.7800689525902271],[127,-44,75,0.7798564061522484],[127,-44,76,0.7818589694797993],[127,-44,77,0.7860519401729107],[127,-44,78,0.7914122752845287],[127,-44,79,0.7969269268214703],[127,-43,64,0.780859112739563],[127,-43,65,0.7782130539417267],[127,-43,66,0.7770644351840019],[127,-43,67,0.7772480510175228],[127,-43,68,0.7779813669621944],[127,-43,69,0.7784768268465996],[127,-43,70,0.7786682695150375],[127,-43,71,0.7783846370875835],[127,-43,72,0.7767178565263748],[127,-43,73,0.7741775847971439],[127,-43,74,0.7722564525902271],[127,-43,75,0.7720439061522484],[127,-43,76,0.7740464694797993],[127,-43,77,0.7782394401729107],[127,-43,78,0.7835997752845287],[127,-43,79,0.7891144268214703],[127,-42,64,0.773046612739563],[127,-42,65,0.7704005539417267],[127,-42,66,0.7692519351840019],[127,-42,67,0.7694355510175228],[127,-42,68,0.7701688669621944],[127,-42,69,0.7706643268465996],[127,-42,70,0.7708557695150375],[127,-42,71,0.7705721370875835],[127,-42,72,0.7689053565263748],[127,-42,73,0.7663650847971439],[127,-42,74,0.7644439525902271],[127,-42,75,0.7642314061522484],[127,-42,76,0.7662339694797993],[127,-42,77,0.7704269401729107],[127,-42,78,0.7757872752845287],[127,-42,79,0.7813019268214703],[127,-41,64,0.765234112739563],[127,-41,65,0.7625880539417267],[127,-41,66,0.7614394351840019],[127,-41,67,0.7616230510175228],[127,-41,68,0.7623563669621944],[127,-41,69,0.7628518268465996],[127,-41,70,0.7630432695150375],[127,-41,71,0.7627596370875835],[127,-41,72,0.7610928565263748],[127,-41,73,0.7585525847971439],[127,-41,74,0.7566314525902271],[127,-41,75,0.7564189061522484],[127,-41,76,0.7584214694797993],[127,-41,77,0.7626144401729107],[127,-41,78,0.7679747752845287],[127,-41,79,0.7734894268214703],[127,-40,64,0.757421612739563],[127,-40,65,0.7547755539417267],[127,-40,66,0.7536269351840019],[127,-40,67,0.7538105510175228],[127,-40,68,0.7545438669621944],[127,-40,69,0.7550393268465996],[127,-40,70,0.7552307695150375],[127,-40,71,0.7549471370875835],[127,-40,72,0.7532803565263748],[127,-40,73,0.7507400847971439],[127,-40,74,0.7488189525902271],[127,-40,75,0.7486064061522484],[127,-40,76,0.7506089694797993],[127,-40,77,0.7548019401729107],[127,-40,78,0.7601622752845287],[127,-40,79,0.7656769268214703],[127,-39,64,0.749609112739563],[127,-39,65,0.7469630539417267],[127,-39,66,0.7458144351840019],[127,-39,67,0.7459980510175228],[127,-39,68,0.7467313669621944],[127,-39,69,0.7472268268465996],[127,-39,70,0.7474182695150375],[127,-39,71,0.7471346370875835],[127,-39,72,0.7454678565263748],[127,-39,73,0.7429275847971439],[127,-39,74,0.7410064525902271],[127,-39,75,0.7407939061522484],[127,-39,76,0.7427964694797993],[127,-39,77,0.7469894401729107],[127,-39,78,0.7523497752845287],[127,-39,79,0.7578644268214703],[127,-38,64,0.741796612739563],[127,-38,65,0.7391505539417267],[127,-38,66,0.7380019351840019],[127,-38,67,0.7381855510175228],[127,-38,68,0.7389188669621944],[127,-38,69,0.7394143268465996],[127,-38,70,0.7396057695150375],[127,-38,71,0.7393221370875835],[127,-38,72,0.7376553565263748],[127,-38,73,0.7351150847971439],[127,-38,74,0.7331939525902271],[127,-38,75,0.7329814061522484],[127,-38,76,0.7349839694797993],[127,-38,77,0.7391769401729107],[127,-38,78,0.7445372752845287],[127,-38,79,0.7500519268214703],[127,-37,64,0.733984112739563],[127,-37,65,0.7313380539417267],[127,-37,66,0.7301894351840019],[127,-37,67,0.7303730510175228],[127,-37,68,0.7311063669621944],[127,-37,69,0.7316018268465996],[127,-37,70,0.7317932695150375],[127,-37,71,0.7315096370875835],[127,-37,72,0.7298428565263748],[127,-37,73,0.7273025847971439],[127,-37,74,0.7253814525902271],[127,-37,75,0.7251689061522484],[127,-37,76,0.7271714694797993],[127,-37,77,0.7313644401729107],[127,-37,78,0.7367247752845287],[127,-37,79,0.7422394268214703],[127,-36,64,0.726171612739563],[127,-36,65,0.7235255539417267],[127,-36,66,0.7223769351840019],[127,-36,67,0.7225605510175228],[127,-36,68,0.7232938669621944],[127,-36,69,0.7237893268465996],[127,-36,70,0.7239807695150375],[127,-36,71,0.7236971370875835],[127,-36,72,0.7220303565263748],[127,-36,73,0.7194900847971439],[127,-36,74,0.7175689525902271],[127,-36,75,0.7173564061522484],[127,-36,76,0.7193589694797993],[127,-36,77,0.7235519401729107],[127,-36,78,0.7289122752845287],[127,-36,79,0.7344269268214703],[127,-35,64,0.718359112739563],[127,-35,65,0.7157130539417267],[127,-35,66,0.7145644351840019],[127,-35,67,0.7147480510175228],[127,-35,68,0.7154813669621944],[127,-35,69,0.7159768268465996],[127,-35,70,0.7161682695150375],[127,-35,71,0.7158846370875835],[127,-35,72,0.7142178565263748],[127,-35,73,0.7116775847971439],[127,-35,74,0.7097564525902271],[127,-35,75,0.7095439061522484],[127,-35,76,0.7115464694797993],[127,-35,77,0.7157394401729107],[127,-35,78,0.7210997752845287],[127,-35,79,0.7266144268214703],[127,-34,64,0.710546612739563],[127,-34,65,0.7079005539417267],[127,-34,66,0.7067519351840019],[127,-34,67,0.7069355510175228],[127,-34,68,0.7076688669621944],[127,-34,69,0.7081643268465996],[127,-34,70,0.7083557695150375],[127,-34,71,0.7080721370875835],[127,-34,72,0.7064053565263748],[127,-34,73,0.7038650847971439],[127,-34,74,0.7019439525902271],[127,-34,75,0.7017314061522484],[127,-34,76,0.7037339694797993],[127,-34,77,0.7079269401729107],[127,-34,78,0.7132872752845287],[127,-34,79,0.7188019268214703],[127,-33,64,0.702734112739563],[127,-33,65,0.7000880539417267],[127,-33,66,0.6989394351840019],[127,-33,67,0.6991230510175228],[127,-33,68,0.6998563669621944],[127,-33,69,0.7003518268465996],[127,-33,70,0.7005432695150375],[127,-33,71,0.7002596370875835],[127,-33,72,0.6985928565263748],[127,-33,73,0.6960525847971439],[127,-33,74,0.6941314525902271],[127,-33,75,0.6939189061522484],[127,-33,76,0.6959214694797993],[127,-33,77,0.7001144401729107],[127,-33,78,0.7054747752845287],[127,-33,79,0.7109894268214703],[127,-32,64,0.694921612739563],[127,-32,65,0.6922755539417267],[127,-32,66,0.6911269351840019],[127,-32,67,0.6913105510175228],[127,-32,68,0.6920438669621944],[127,-32,69,0.6925393268465996],[127,-32,70,0.6927307695150375],[127,-32,71,0.6924471370875835],[127,-32,72,0.6907803565263748],[127,-32,73,0.6882400847971439],[127,-32,74,0.6863189525902271],[127,-32,75,0.6861064061522484],[127,-32,76,0.6881089694797993],[127,-32,77,0.6923019401729107],[127,-32,78,0.6976622752845287],[127,-32,79,0.7031769268214703],[127,-31,64,0.687109112739563],[127,-31,65,0.6844630539417267],[127,-31,66,0.6833144351840019],[127,-31,67,0.6834980510175228],[127,-31,68,0.6842313669621944],[127,-31,69,0.6847268268465996],[127,-31,70,0.6849182695150375],[127,-31,71,0.6846346370875835],[127,-31,72,0.6829678565263748],[127,-31,73,0.6804275847971439],[127,-31,74,0.6785064525902271],[127,-31,75,0.6782939061522484],[127,-31,76,0.6802964694797993],[127,-31,77,0.6844894401729107],[127,-31,78,0.6898497752845287],[127,-31,79,0.6953644268214703],[127,-30,64,0.679296612739563],[127,-30,65,0.6766505539417267],[127,-30,66,0.6755019351840019],[127,-30,67,0.6756855510175228],[127,-30,68,0.6764188669621944],[127,-30,69,0.6769143268465996],[127,-30,70,0.6771057695150375],[127,-30,71,0.6768221370875835],[127,-30,72,0.6751553565263748],[127,-30,73,0.6726150847971439],[127,-30,74,0.6706939525902271],[127,-30,75,0.6704814061522484],[127,-30,76,0.6724839694797993],[127,-30,77,0.6766769401729107],[127,-30,78,0.6820372752845287],[127,-30,79,0.6875519268214703],[127,-29,64,0.671484112739563],[127,-29,65,0.6688380539417267],[127,-29,66,0.6676894351840019],[127,-29,67,0.6678730510175228],[127,-29,68,0.6686063669621944],[127,-29,69,0.6691018268465996],[127,-29,70,0.6692932695150375],[127,-29,71,0.6690096370875835],[127,-29,72,0.6673428565263748],[127,-29,73,0.6648025847971439],[127,-29,74,0.6628814525902271],[127,-29,75,0.6626689061522484],[127,-29,76,0.6646714694797993],[127,-29,77,0.6688644401729107],[127,-29,78,0.6742247752845287],[127,-29,79,0.6797394268214703],[127,-28,64,0.663671612739563],[127,-28,65,0.6610255539417267],[127,-28,66,0.6598769351840019],[127,-28,67,0.6600605510175228],[127,-28,68,0.6607938669621944],[127,-28,69,0.6612893268465996],[127,-28,70,0.6614807695150375],[127,-28,71,0.6611971370875835],[127,-28,72,0.6595303565263748],[127,-28,73,0.6569900847971439],[127,-28,74,0.6550689525902271],[127,-28,75,0.6548564061522484],[127,-28,76,0.6568589694797993],[127,-28,77,0.6610519401729107],[127,-28,78,0.6664122752845287],[127,-28,79,0.6719269268214703],[127,-27,64,0.655859112739563],[127,-27,65,0.6532130539417267],[127,-27,66,0.6520644351840019],[127,-27,67,0.6522480510175228],[127,-27,68,0.6529813669621944],[127,-27,69,0.6534768268465996],[127,-27,70,0.6536682695150375],[127,-27,71,0.6533846370875835],[127,-27,72,0.6517178565263748],[127,-27,73,0.6491775847971439],[127,-27,74,0.6472564525902271],[127,-27,75,0.6470439061522484],[127,-27,76,0.6490464694797993],[127,-27,77,0.6532394401729107],[127,-27,78,0.6585997752845287],[127,-27,79,0.6641144268214703],[127,-26,64,0.648046612739563],[127,-26,65,0.6454005539417267],[127,-26,66,0.6442519351840019],[127,-26,67,0.6444355510175228],[127,-26,68,0.6451688669621944],[127,-26,69,0.6456643268465996],[127,-26,70,0.6458557695150375],[127,-26,71,0.6455721370875835],[127,-26,72,0.6439053565263748],[127,-26,73,0.6413650847971439],[127,-26,74,0.6394439525902271],[127,-26,75,0.6392314061522484],[127,-26,76,0.6412339694797993],[127,-26,77,0.6454269401729107],[127,-26,78,0.6507872752845287],[127,-26,79,0.6563019268214703],[127,-25,64,0.640234112739563],[127,-25,65,0.6375880539417267],[127,-25,66,0.6364394351840019],[127,-25,67,0.6366230510175228],[127,-25,68,0.6373563669621944],[127,-25,69,0.6378518268465996],[127,-25,70,0.6380432695150375],[127,-25,71,0.6377596370875835],[127,-25,72,0.6360928565263748],[127,-25,73,0.6335525847971439],[127,-25,74,0.6316314525902271],[127,-25,75,0.6314189061522484],[127,-25,76,0.6334214694797993],[127,-25,77,0.6376144401729107],[127,-25,78,0.6429747752845287],[127,-25,79,0.6484894268214703],[127,-24,64,0.632421612739563],[127,-24,65,0.6297755539417267],[127,-24,66,0.6286269351840019],[127,-24,67,0.6288105510175228],[127,-24,68,0.6295438669621944],[127,-24,69,0.6300393268465996],[127,-24,70,0.6302307695150375],[127,-24,71,0.6299471370875835],[127,-24,72,0.6282803565263748],[127,-24,73,0.6257400847971439],[127,-24,74,0.6238189525902271],[127,-24,75,0.6236064061522484],[127,-24,76,0.6256089694797993],[127,-24,77,0.6298019401729107],[127,-24,78,0.6351622752845287],[127,-24,79,0.6406769268214703],[127,-23,64,0.624609112739563],[127,-23,65,0.6219630539417267],[127,-23,66,0.6208144351840019],[127,-23,67,0.6209980510175228],[127,-23,68,0.6217313669621944],[127,-23,69,0.6222268268465996],[127,-23,70,0.6224182695150375],[127,-23,71,0.6221346370875835],[127,-23,72,0.6204678565263748],[127,-23,73,0.6179275847971439],[127,-23,74,0.6160064525902271],[127,-23,75,0.6157939061522484],[127,-23,76,0.6177964694797993],[127,-23,77,0.6219894401729107],[127,-23,78,0.6273497752845287],[127,-23,79,0.6328644268214703],[127,-22,64,0.616796612739563],[127,-22,65,0.6141505539417267],[127,-22,66,0.6130019351840019],[127,-22,67,0.6131855510175228],[127,-22,68,0.6139188669621944],[127,-22,69,0.6144143268465996],[127,-22,70,0.6146057695150375],[127,-22,71,0.6143221370875835],[127,-22,72,0.6126553565263748],[127,-22,73,0.6101150847971439],[127,-22,74,0.6081939525902271],[127,-22,75,0.6079814061522484],[127,-22,76,0.6099839694797993],[127,-22,77,0.6141769401729107],[127,-22,78,0.6195372752845287],[127,-22,79,0.6250519268214703],[127,-21,64,0.608984112739563],[127,-21,65,0.6063380539417267],[127,-21,66,0.6051894351840019],[127,-21,67,0.6053730510175228],[127,-21,68,0.6061063669621944],[127,-21,69,0.6066018268465996],[127,-21,70,0.6067932695150375],[127,-21,71,0.6065096370875835],[127,-21,72,0.6048428565263748],[127,-21,73,0.6023025847971439],[127,-21,74,0.6003814525902271],[127,-21,75,0.6001689061522484],[127,-21,76,0.6021714694797993],[127,-21,77,0.6063644401729107],[127,-21,78,0.6117247752845287],[127,-21,79,0.6172394268214703],[127,-20,64,0.601171612739563],[127,-20,65,0.5985255539417267],[127,-20,66,0.5973769351840019],[127,-20,67,0.5975605510175228],[127,-20,68,0.5982938669621944],[127,-20,69,0.5987893268465996],[127,-20,70,0.5989807695150375],[127,-20,71,0.5986971370875835],[127,-20,72,0.5970303565263748],[127,-20,73,0.5944900847971439],[127,-20,74,0.5925689525902271],[127,-20,75,0.5923564061522484],[127,-20,76,0.5943589694797993],[127,-20,77,0.5985519401729107],[127,-20,78,0.6039122752845287],[127,-20,79,0.6094269268214703],[127,-19,64,0.593359112739563],[127,-19,65,0.5907130539417267],[127,-19,66,0.5895644351840019],[127,-19,67,0.5897480510175228],[127,-19,68,0.5904813669621944],[127,-19,69,0.5909768268465996],[127,-19,70,0.5911682695150375],[127,-19,71,0.5908846370875835],[127,-19,72,0.5892178565263748],[127,-19,73,0.5866775847971439],[127,-19,74,0.5847564525902271],[127,-19,75,0.5845439061522484],[127,-19,76,0.5865464694797993],[127,-19,77,0.5907394401729107],[127,-19,78,0.5960997752845287],[127,-19,79,0.6016144268214703],[127,-18,64,0.585546612739563],[127,-18,65,0.5829005539417267],[127,-18,66,0.5817519351840019],[127,-18,67,0.5819355510175228],[127,-18,68,0.5826688669621944],[127,-18,69,0.5831643268465996],[127,-18,70,0.5833557695150375],[127,-18,71,0.5830721370875835],[127,-18,72,0.5814053565263748],[127,-18,73,0.5788650847971439],[127,-18,74,0.5769439525902271],[127,-18,75,0.5767314061522484],[127,-18,76,0.5787339694797993],[127,-18,77,0.5829269401729107],[127,-18,78,0.5882872752845287],[127,-18,79,0.5938019268214703],[127,-17,64,0.577734112739563],[127,-17,65,0.5750880539417267],[127,-17,66,0.5739394351840019],[127,-17,67,0.5741230510175228],[127,-17,68,0.5748563669621944],[127,-17,69,0.5753518268465996],[127,-17,70,0.5755432695150375],[127,-17,71,0.5752596370875835],[127,-17,72,0.5735928565263748],[127,-17,73,0.5710525847971439],[127,-17,74,0.5691314525902271],[127,-17,75,0.5689189061522484],[127,-17,76,0.5709214694797993],[127,-17,77,0.5751144401729107],[127,-17,78,0.5804747752845287],[127,-17,79,0.5859894268214703],[127,-16,64,0.569921612739563],[127,-16,65,0.5672755539417267],[127,-16,66,0.5661269351840019],[127,-16,67,0.5663105510175228],[127,-16,68,0.5670438669621944],[127,-16,69,0.5675393268465996],[127,-16,70,0.5677307695150375],[127,-16,71,0.5674471370875835],[127,-16,72,0.5657803565263748],[127,-16,73,0.5632400847971439],[127,-16,74,0.5613189525902271],[127,-16,75,0.5611064061522484],[127,-16,76,0.5631089694797993],[127,-16,77,0.5673019401729107],[127,-16,78,0.5726622752845287],[127,-16,79,0.5781769268214703],[127,-15,64,0.562109112739563],[127,-15,65,0.5594630539417267],[127,-15,66,0.5583144351840019],[127,-15,67,0.5584980510175228],[127,-15,68,0.5592313669621944],[127,-15,69,0.5597268268465996],[127,-15,70,0.5599182695150375],[127,-15,71,0.5596346370875835],[127,-15,72,0.5579678565263748],[127,-15,73,0.5554275847971439],[127,-15,74,0.5535064525902271],[127,-15,75,0.5532939061522484],[127,-15,76,0.5552964694797993],[127,-15,77,0.5594894401729107],[127,-15,78,0.5648497752845287],[127,-15,79,0.5703644268214703],[127,-14,64,0.554296612739563],[127,-14,65,0.5516505539417267],[127,-14,66,0.5505019351840019],[127,-14,67,0.5506855510175228],[127,-14,68,0.5514188669621944],[127,-14,69,0.5519143268465996],[127,-14,70,0.5521057695150375],[127,-14,71,0.5518221370875835],[127,-14,72,0.5501553565263748],[127,-14,73,0.5476150847971439],[127,-14,74,0.5456939525902271],[127,-14,75,0.5454814061522484],[127,-14,76,0.5474839694797993],[127,-14,77,0.5516769401729107],[127,-14,78,0.5570372752845287],[127,-14,79,0.5625519268214703],[127,-13,64,0.546484112739563],[127,-13,65,0.5438380539417267],[127,-13,66,0.5426894351840019],[127,-13,67,0.5428730510175228],[127,-13,68,0.5436063669621944],[127,-13,69,0.5441018268465996],[127,-13,70,0.5442932695150375],[127,-13,71,0.5440096370875835],[127,-13,72,0.5423428565263748],[127,-13,73,0.5398025847971439],[127,-13,74,0.5378814525902271],[127,-13,75,0.5376689061522484],[127,-13,76,0.5396714694797993],[127,-13,77,0.5438644401729107],[127,-13,78,0.5492247752845287],[127,-13,79,0.5547394268214703],[127,-12,64,0.538671612739563],[127,-12,65,0.5360255539417267],[127,-12,66,0.5348769351840019],[127,-12,67,0.5350605510175228],[127,-12,68,0.5357938669621944],[127,-12,69,0.5362893268465996],[127,-12,70,0.5364807695150375],[127,-12,71,0.5361971370875835],[127,-12,72,0.5345303565263748],[127,-12,73,0.5319900847971439],[127,-12,74,0.5300689525902271],[127,-12,75,0.5298564061522484],[127,-12,76,0.5318589694797993],[127,-12,77,0.5360519401729107],[127,-12,78,0.5414122752845287],[127,-12,79,0.5469269268214703],[127,-11,64,0.530859112739563],[127,-11,65,0.5282130539417267],[127,-11,66,0.5270644351840019],[127,-11,67,0.5272480510175228],[127,-11,68,0.5279813669621944],[127,-11,69,0.5284768268465996],[127,-11,70,0.5286682695150375],[127,-11,71,0.5283846370875835],[127,-11,72,0.5267178565263748],[127,-11,73,0.5241775847971439],[127,-11,74,0.5222564525902271],[127,-11,75,0.5220439061522484],[127,-11,76,0.5240464694797993],[127,-11,77,0.5282394401729107],[127,-11,78,0.5335997752845287],[127,-11,79,0.5391144268214703],[127,-10,64,0.523046612739563],[127,-10,65,0.5204005539417267],[127,-10,66,0.5192519351840019],[127,-10,67,0.5194355510175228],[127,-10,68,0.5201688669621944],[127,-10,69,0.5206643268465996],[127,-10,70,0.5208557695150375],[127,-10,71,0.5205721370875835],[127,-10,72,0.5189053565263748],[127,-10,73,0.5163650847971439],[127,-10,74,0.5144439525902271],[127,-10,75,0.5142314061522484],[127,-10,76,0.5162339694797993],[127,-10,77,0.5204269401729107],[127,-10,78,0.5257872752845287],[127,-10,79,0.5313019268214703],[127,-9,64,0.515234112739563],[127,-9,65,0.5125880539417267],[127,-9,66,0.5114394351840019],[127,-9,67,0.5116230510175228],[127,-9,68,0.5123563669621944],[127,-9,69,0.5128518268465996],[127,-9,70,0.5130432695150375],[127,-9,71,0.5127596370875835],[127,-9,72,0.5110928565263748],[127,-9,73,0.5085525847971439],[127,-9,74,0.5066314525902271],[127,-9,75,0.5064189061522484],[127,-9,76,0.5084214694797993],[127,-9,77,0.5126144401729107],[127,-9,78,0.5179747752845287],[127,-9,79,0.5234894268214703],[127,-8,64,0.507421612739563],[127,-8,65,0.5047755539417267],[127,-8,66,0.5036269351840019],[127,-8,67,0.5038105510175228],[127,-8,68,0.5045438669621944],[127,-8,69,0.5050393268465996],[127,-8,70,0.5052307695150375],[127,-8,71,0.5049471370875835],[127,-8,72,0.5032803565263748],[127,-8,73,0.5007400847971439],[127,-8,74,0.4988189525902271],[127,-8,75,0.4986064061522484],[127,-8,76,0.5006089694797993],[127,-8,77,0.5048019401729107],[127,-8,78,0.5101622752845287],[127,-8,79,0.5156769268214703],[127,-7,64,0.499609112739563],[127,-7,65,0.4969630539417267],[127,-7,66,0.4958144351840019],[127,-7,67,0.4959980510175228],[127,-7,68,0.49673136696219444],[127,-7,69,0.4972268268465996],[127,-7,70,0.49741826951503754],[127,-7,71,0.49713463708758354],[127,-7,72,0.4954678565263748],[127,-7,73,0.49292758479714394],[127,-7,74,0.4910064525902271],[127,-7,75,0.4907939061522484],[127,-7,76,0.49279646947979927],[127,-7,77,0.4969894401729107],[127,-7,78,0.5023497752845287],[127,-7,79,0.5078644268214703],[127,-6,64,0.491796612739563],[127,-6,65,0.4891505539417267],[127,-6,66,0.4880019351840019],[127,-6,67,0.4881855510175228],[127,-6,68,0.48891886696219444],[127,-6,69,0.4894143268465996],[127,-6,70,0.48960576951503754],[127,-6,71,0.48932213708758354],[127,-6,72,0.4876553565263748],[127,-6,73,0.48511508479714394],[127,-6,74,0.4831939525902271],[127,-6,75,0.4829814061522484],[127,-6,76,0.48498396947979927],[127,-6,77,0.4891769401729107],[127,-6,78,0.49453727528452873],[127,-6,79,0.5000519268214703],[127,-5,64,0.483984112739563],[127,-5,65,0.4813380539417267],[127,-5,66,0.4801894351840019],[127,-5,67,0.4803730510175228],[127,-5,68,0.48110636696219444],[127,-5,69,0.4816018268465996],[127,-5,70,0.48179326951503754],[127,-5,71,0.48150963708758354],[127,-5,72,0.4798428565263748],[127,-5,73,0.47730258479714394],[127,-5,74,0.4753814525902271],[127,-5,75,0.4751689061522484],[127,-5,76,0.47717146947979927],[127,-5,77,0.4813644401729107],[127,-5,78,0.48672477528452873],[127,-5,79,0.49223942682147026],[127,-4,64,0.476171612739563],[127,-4,65,0.4735255539417267],[127,-4,66,0.4723769351840019],[127,-4,67,0.4725605510175228],[127,-4,68,0.47329386696219444],[127,-4,69,0.4737893268465996],[127,-4,70,0.47398076951503754],[127,-4,71,0.47369713708758354],[127,-4,72,0.4720303565263748],[127,-4,73,0.46949008479714394],[127,-4,74,0.4675689525902271],[127,-4,75,0.4673564061522484],[127,-4,76,0.46935896947979927],[127,-4,77,0.4735519401729107],[127,-4,78,0.47891227528452873],[127,-4,79,0.48442692682147026],[127,-3,64,0.468359112739563],[127,-3,65,0.4657130539417267],[127,-3,66,0.4645644351840019],[127,-3,67,0.4647480510175228],[127,-3,68,0.46548136696219444],[127,-3,69,0.4659768268465996],[127,-3,70,0.46616826951503754],[127,-3,71,0.46588463708758354],[127,-3,72,0.4642178565263748],[127,-3,73,0.46167758479714394],[127,-3,74,0.4597564525902271],[127,-3,75,0.4595439061522484],[127,-3,76,0.46154646947979927],[127,-3,77,0.4657394401729107],[127,-3,78,0.47109977528452873],[127,-3,79,0.47661442682147026],[127,-2,64,0.460546612739563],[127,-2,65,0.4579005539417267],[127,-2,66,0.4567519351840019],[127,-2,67,0.4569355510175228],[127,-2,68,0.45766886696219444],[127,-2,69,0.4581643268465996],[127,-2,70,0.45835576951503754],[127,-2,71,0.45807213708758354],[127,-2,72,0.4564053565263748],[127,-2,73,0.45386508479714394],[127,-2,74,0.4519439525902271],[127,-2,75,0.4517314061522484],[127,-2,76,0.45373396947979927],[127,-2,77,0.4579269401729107],[127,-2,78,0.46328727528452873],[127,-2,79,0.46880192682147026],[127,-1,64,0.452734112739563],[127,-1,65,0.4500880539417267],[127,-1,66,0.4489394351840019],[127,-1,67,0.4491230510175228],[127,-1,68,0.44985636696219444],[127,-1,69,0.4503518268465996],[127,-1,70,0.45054326951503754],[127,-1,71,0.45025963708758354],[127,-1,72,0.4485928565263748],[127,-1,73,0.44605258479714394],[127,-1,74,0.4441314525902271],[127,-1,75,0.4439189061522484],[127,-1,76,0.44592146947979927],[127,-1,77,0.4501144401729107],[127,-1,78,0.45547477528452873],[127,-1,79,0.46098942682147026],[127,0,64,0.444921612739563],[127,0,65,0.4422755539417267],[127,0,66,0.4411269351840019],[127,0,67,0.4413105510175228],[127,0,68,0.44204386696219444],[127,0,69,0.4425393268465996],[127,0,70,0.44273076951503754],[127,0,71,0.44244713708758354],[127,0,72,0.4407803565263748],[127,0,73,0.43824008479714394],[127,0,74,0.4363189525902271],[127,0,75,0.4361064061522484],[127,0,76,0.43810896947979927],[127,0,77,0.4423019401729107],[127,0,78,0.44766227528452873],[127,0,79,0.45317692682147026],[127,1,64,0.437109112739563],[127,1,65,0.4344630539417267],[127,1,66,0.4333144351840019],[127,1,67,0.4334980510175228],[127,1,68,0.43423136696219444],[127,1,69,0.4347268268465996],[127,1,70,0.43491826951503754],[127,1,71,0.43463463708758354],[127,1,72,0.4329678565263748],[127,1,73,0.43042758479714394],[127,1,74,0.4285064525902271],[127,1,75,0.4282939061522484],[127,1,76,0.43029646947979927],[127,1,77,0.4344894401729107],[127,1,78,0.43984977528452873],[127,1,79,0.44536442682147026],[127,2,64,0.429296612739563],[127,2,65,0.4266505539417267],[127,2,66,0.4255019351840019],[127,2,67,0.4256855510175228],[127,2,68,0.42641886696219444],[127,2,69,0.4269143268465996],[127,2,70,0.42710576951503754],[127,2,71,0.42682213708758354],[127,2,72,0.4251553565263748],[127,2,73,0.42261508479714394],[127,2,74,0.4206939525902271],[127,2,75,0.4204814061522484],[127,2,76,0.42248396947979927],[127,2,77,0.4266769401729107],[127,2,78,0.43203727528452873],[127,2,79,0.43755192682147026],[127,3,64,0.421484112739563],[127,3,65,0.4188380539417267],[127,3,66,0.4176894351840019],[127,3,67,0.4178730510175228],[127,3,68,0.41860636696219444],[127,3,69,0.4191018268465996],[127,3,70,0.41929326951503754],[127,3,71,0.41900963708758354],[127,3,72,0.4173428565263748],[127,3,73,0.41480258479714394],[127,3,74,0.4128814525902271],[127,3,75,0.4126689061522484],[127,3,76,0.41467146947979927],[127,3,77,0.4188644401729107],[127,3,78,0.42422477528452873],[127,3,79,0.42973942682147026],[127,4,64,0.413671612739563],[127,4,65,0.4110255539417267],[127,4,66,0.4098769351840019],[127,4,67,0.4100605510175228],[127,4,68,0.41079386696219444],[127,4,69,0.4112893268465996],[127,4,70,0.41148076951503754],[127,4,71,0.41119713708758354],[127,4,72,0.4095303565263748],[127,4,73,0.40699008479714394],[127,4,74,0.4050689525902271],[127,4,75,0.4048564061522484],[127,4,76,0.40685896947979927],[127,4,77,0.4110519401729107],[127,4,78,0.41641227528452873],[127,4,79,0.42192692682147026],[127,5,64,0.405859112739563],[127,5,65,0.4032130539417267],[127,5,66,0.4020644351840019],[127,5,67,0.4022480510175228],[127,5,68,0.40298136696219444],[127,5,69,0.4034768268465996],[127,5,70,0.40366826951503754],[127,5,71,0.40338463708758354],[127,5,72,0.4017178565263748],[127,5,73,0.39917758479714394],[127,5,74,0.3972564525902271],[127,5,75,0.3970439061522484],[127,5,76,0.39904646947979927],[127,5,77,0.4032394401729107],[127,5,78,0.40859977528452873],[127,5,79,0.41411442682147026],[127,6,64,0.398046612739563],[127,6,65,0.3954005539417267],[127,6,66,0.3942519351840019],[127,6,67,0.3944355510175228],[127,6,68,0.39516886696219444],[127,6,69,0.3956643268465996],[127,6,70,0.39585576951503754],[127,6,71,0.39557213708758354],[127,6,72,0.3939053565263748],[127,6,73,0.39136508479714394],[127,6,74,0.3894439525902271],[127,6,75,0.3892314061522484],[127,6,76,0.39123396947979927],[127,6,77,0.3954269401729107],[127,6,78,0.40078727528452873],[127,6,79,0.40630192682147026],[127,7,64,0.390234112739563],[127,7,65,0.3875880539417267],[127,7,66,0.3864394351840019],[127,7,67,0.3866230510175228],[127,7,68,0.38735636696219444],[127,7,69,0.3878518268465996],[127,7,70,0.38804326951503754],[127,7,71,0.38775963708758354],[127,7,72,0.3860928565263748],[127,7,73,0.38355258479714394],[127,7,74,0.3816314525902271],[127,7,75,0.3814189061522484],[127,7,76,0.38342146947979927],[127,7,77,0.3876144401729107],[127,7,78,0.39297477528452873],[127,7,79,0.39848942682147026],[127,8,64,0.382421612739563],[127,8,65,0.3797755539417267],[127,8,66,0.3786269351840019],[127,8,67,0.3788105510175228],[127,8,68,0.37954386696219444],[127,8,69,0.3800393268465996],[127,8,70,0.38023076951503754],[127,8,71,0.37994713708758354],[127,8,72,0.3782803565263748],[127,8,73,0.37574008479714394],[127,8,74,0.3738189525902271],[127,8,75,0.3736064061522484],[127,8,76,0.37560896947979927],[127,8,77,0.3798019401729107],[127,8,78,0.38516227528452873],[127,8,79,0.39067692682147026],[127,9,64,0.374609112739563],[127,9,65,0.3719630539417267],[127,9,66,0.3708144351840019],[127,9,67,0.3709980510175228],[127,9,68,0.37173136696219444],[127,9,69,0.3722268268465996],[127,9,70,0.37241826951503754],[127,9,71,0.37213463708758354],[127,9,72,0.3704678565263748],[127,9,73,0.36792758479714394],[127,9,74,0.3660064525902271],[127,9,75,0.3657939061522484],[127,9,76,0.36779646947979927],[127,9,77,0.3719894401729107],[127,9,78,0.37734977528452873],[127,9,79,0.38286442682147026],[127,10,64,0.366796612739563],[127,10,65,0.3641505539417267],[127,10,66,0.3630019351840019],[127,10,67,0.3631855510175228],[127,10,68,0.36391886696219444],[127,10,69,0.3644143268465996],[127,10,70,0.36460576951503754],[127,10,71,0.36432213708758354],[127,10,72,0.3626553565263748],[127,10,73,0.36011508479714394],[127,10,74,0.3581939525902271],[127,10,75,0.3579814061522484],[127,10,76,0.35998396947979927],[127,10,77,0.3641769401729107],[127,10,78,0.36953727528452873],[127,10,79,0.37505192682147026],[127,11,64,0.358984112739563],[127,11,65,0.3563380539417267],[127,11,66,0.3551894351840019],[127,11,67,0.3553730510175228],[127,11,68,0.35610636696219444],[127,11,69,0.3566018268465996],[127,11,70,0.35679326951503754],[127,11,71,0.35650963708758354],[127,11,72,0.3548428565263748],[127,11,73,0.35230258479714394],[127,11,74,0.3503814525902271],[127,11,75,0.3501689061522484],[127,11,76,0.35217146947979927],[127,11,77,0.3563644401729107],[127,11,78,0.36172477528452873],[127,11,79,0.36723942682147026],[127,12,64,0.351171612739563],[127,12,65,0.3485255539417267],[127,12,66,0.3473769351840019],[127,12,67,0.3475605510175228],[127,12,68,0.34829386696219444],[127,12,69,0.3487893268465996],[127,12,70,0.34898076951503754],[127,12,71,0.34869713708758354],[127,12,72,0.3470303565263748],[127,12,73,0.34449008479714394],[127,12,74,0.3425689525902271],[127,12,75,0.3423564061522484],[127,12,76,0.34435896947979927],[127,12,77,0.3485519401729107],[127,12,78,0.35391227528452873],[127,12,79,0.35942692682147026],[127,13,64,0.343359112739563],[127,13,65,0.3407130539417267],[127,13,66,0.3395644351840019],[127,13,67,0.3397480510175228],[127,13,68,0.34048136696219444],[127,13,69,0.3409768268465996],[127,13,70,0.34116826951503754],[127,13,71,0.34088463708758354],[127,13,72,0.3392178565263748],[127,13,73,0.33667758479714394],[127,13,74,0.3347564525902271],[127,13,75,0.3345439061522484],[127,13,76,0.33654646947979927],[127,13,77,0.3407394401729107],[127,13,78,0.34609977528452873],[127,13,79,0.35161442682147026],[127,14,64,0.335546612739563],[127,14,65,0.3329005539417267],[127,14,66,0.3317519351840019],[127,14,67,0.3319355510175228],[127,14,68,0.33266886696219444],[127,14,69,0.3331643268465996],[127,14,70,0.33335576951503754],[127,14,71,0.33307213708758354],[127,14,72,0.3314053565263748],[127,14,73,0.32886508479714394],[127,14,74,0.3269439525902271],[127,14,75,0.3267314061522484],[127,14,76,0.32873396947979927],[127,14,77,0.3329269401729107],[127,14,78,0.33828727528452873],[127,14,79,0.34380192682147026],[127,15,64,0.327734112739563],[127,15,65,0.3250880539417267],[127,15,66,0.3239394351840019],[127,15,67,0.3241230510175228],[127,15,68,0.32485636696219444],[127,15,69,0.3253518268465996],[127,15,70,0.32554326951503754],[127,15,71,0.32525963708758354],[127,15,72,0.3235928565263748],[127,15,73,0.32105258479714394],[127,15,74,0.3191314525902271],[127,15,75,0.3189189061522484],[127,15,76,0.32092146947979927],[127,15,77,0.3251144401729107],[127,15,78,0.33047477528452873],[127,15,79,0.33598942682147026],[127,16,64,0.319921612739563],[127,16,65,0.3172755539417267],[127,16,66,0.3161269351840019],[127,16,67,0.3163105510175228],[127,16,68,0.31704386696219444],[127,16,69,0.3175393268465996],[127,16,70,0.31773076951503754],[127,16,71,0.31744713708758354],[127,16,72,0.3157803565263748],[127,16,73,0.31324008479714394],[127,16,74,0.3113189525902271],[127,16,75,0.3111064061522484],[127,16,76,0.31310896947979927],[127,16,77,0.3173019401729107],[127,16,78,0.32266227528452873],[127,16,79,0.32817692682147026],[127,17,64,0.312109112739563],[127,17,65,0.3094630539417267],[127,17,66,0.3083144351840019],[127,17,67,0.3084980510175228],[127,17,68,0.30923136696219444],[127,17,69,0.3097268268465996],[127,17,70,0.30991826951503754],[127,17,71,0.30963463708758354],[127,17,72,0.3079678565263748],[127,17,73,0.30542758479714394],[127,17,74,0.3035064525902271],[127,17,75,0.3032939061522484],[127,17,76,0.30529646947979927],[127,17,77,0.3094894401729107],[127,17,78,0.31484977528452873],[127,17,79,0.32036442682147026],[127,18,64,0.304296612739563],[127,18,65,0.3016505539417267],[127,18,66,0.3005019351840019],[127,18,67,0.3006855510175228],[127,18,68,0.30141886696219444],[127,18,69,0.3019143268465996],[127,18,70,0.30210576951503754],[127,18,71,0.30182213708758354],[127,18,72,0.3001553565263748],[127,18,73,0.29761508479714394],[127,18,74,0.2956939525902271],[127,18,75,0.2954814061522484],[127,18,76,0.29748396947979927],[127,18,77,0.3016769401729107],[127,18,78,0.30703727528452873],[127,18,79,0.31255192682147026],[127,19,64,0.296484112739563],[127,19,65,0.2938380539417267],[127,19,66,0.2926894351840019],[127,19,67,0.2928730510175228],[127,19,68,0.29360636696219444],[127,19,69,0.2941018268465996],[127,19,70,0.29429326951503754],[127,19,71,0.29400963708758354],[127,19,72,0.2923428565263748],[127,19,73,0.28980258479714394],[127,19,74,0.2878814525902271],[127,19,75,0.2876689061522484],[127,19,76,0.28967146947979927],[127,19,77,0.2938644401729107],[127,19,78,0.29922477528452873],[127,19,79,0.30473942682147026],[127,20,64,0.288671612739563],[127,20,65,0.2860255539417267],[127,20,66,0.2848769351840019],[127,20,67,0.2850605510175228],[127,20,68,0.28579386696219444],[127,20,69,0.2862893268465996],[127,20,70,0.28648076951503754],[127,20,71,0.28619713708758354],[127,20,72,0.2845303565263748],[127,20,73,0.28199008479714394],[127,20,74,0.2800689525902271],[127,20,75,0.2798564061522484],[127,20,76,0.28185896947979927],[127,20,77,0.2860519401729107],[127,20,78,0.29141227528452873],[127,20,79,0.29692692682147026],[127,21,64,0.280859112739563],[127,21,65,0.2782130539417267],[127,21,66,0.2770644351840019],[127,21,67,0.2772480510175228],[127,21,68,0.27798136696219444],[127,21,69,0.2784768268465996],[127,21,70,0.27866826951503754],[127,21,71,0.27838463708758354],[127,21,72,0.2767178565263748],[127,21,73,0.27417758479714394],[127,21,74,0.2722564525902271],[127,21,75,0.2720439061522484],[127,21,76,0.27404646947979927],[127,21,77,0.2782394401729107],[127,21,78,0.28359977528452873],[127,21,79,0.28911442682147026],[127,22,64,0.273046612739563],[127,22,65,0.2704005539417267],[127,22,66,0.2692519351840019],[127,22,67,0.2694355510175228],[127,22,68,0.27016886696219444],[127,22,69,0.2706643268465996],[127,22,70,0.27085576951503754],[127,22,71,0.27057213708758354],[127,22,72,0.2689053565263748],[127,22,73,0.26636508479714394],[127,22,74,0.2644439525902271],[127,22,75,0.2642314061522484],[127,22,76,0.26623396947979927],[127,22,77,0.2704269401729107],[127,22,78,0.27578727528452873],[127,22,79,0.28130192682147026],[127,23,64,0.265234112739563],[127,23,65,0.2625880539417267],[127,23,66,0.2614394351840019],[127,23,67,0.2616230510175228],[127,23,68,0.26235636696219444],[127,23,69,0.2628518268465996],[127,23,70,0.26304326951503754],[127,23,71,0.26275963708758354],[127,23,72,0.2610928565263748],[127,23,73,0.25855258479714394],[127,23,74,0.2566314525902271],[127,23,75,0.2564189061522484],[127,23,76,0.25842146947979927],[127,23,77,0.2626144401729107],[127,23,78,0.26797477528452873],[127,23,79,0.27348942682147026],[127,24,64,0.257421612739563],[127,24,65,0.2547755539417267],[127,24,66,0.2536269351840019],[127,24,67,0.2538105510175228],[127,24,68,0.25454386696219444],[127,24,69,0.2550393268465996],[127,24,70,0.25523076951503754],[127,24,71,0.25494713708758354],[127,24,72,0.2532803565263748],[127,24,73,0.25074008479714394],[127,24,74,0.24881895259022713],[127,24,75,0.24860640615224838],[127,24,76,0.25060896947979927],[127,24,77,0.2548019401729107],[127,24,78,0.26016227528452873],[127,24,79,0.26567692682147026],[127,25,64,0.249609112739563],[127,25,65,0.24696305394172668],[127,25,66,0.24581443518400192],[127,25,67,0.2459980510175228],[127,25,68,0.24673136696219444],[127,25,69,0.24722682684659958],[127,25,70,0.24741826951503754],[127,25,71,0.24713463708758354],[127,25,72,0.24546785652637482],[127,25,73,0.24292758479714394],[127,25,74,0.24100645259022713],[127,25,75,0.24079390615224838],[127,25,76,0.24279646947979927],[127,25,77,0.2469894401729107],[127,25,78,0.25234977528452873],[127,25,79,0.25786442682147026],[127,26,64,0.241796612739563],[127,26,65,0.23915055394172668],[127,26,66,0.23800193518400192],[127,26,67,0.2381855510175228],[127,26,68,0.23891886696219444],[127,26,69,0.23941432684659958],[127,26,70,0.23960576951503754],[127,26,71,0.23932213708758354],[127,26,72,0.23765535652637482],[127,26,73,0.23511508479714394],[127,26,74,0.23319395259022713],[127,26,75,0.23298140615224838],[127,26,76,0.23498396947979927],[127,26,77,0.2391769401729107],[127,26,78,0.24453727528452873],[127,26,79,0.25005192682147026],[127,27,64,0.233984112739563],[127,27,65,0.23133805394172668],[127,27,66,0.23018943518400192],[127,27,67,0.2303730510175228],[127,27,68,0.23110636696219444],[127,27,69,0.23160182684659958],[127,27,70,0.23179326951503754],[127,27,71,0.23150963708758354],[127,27,72,0.22984285652637482],[127,27,73,0.22730258479714394],[127,27,74,0.22538145259022713],[127,27,75,0.22516890615224838],[127,27,76,0.22717146947979927],[127,27,77,0.2313644401729107],[127,27,78,0.23672477528452873],[127,27,79,0.24223942682147026],[127,28,64,0.226171612739563],[127,28,65,0.22352555394172668],[127,28,66,0.22237693518400192],[127,28,67,0.2225605510175228],[127,28,68,0.22329386696219444],[127,28,69,0.22378932684659958],[127,28,70,0.22398076951503754],[127,28,71,0.22369713708758354],[127,28,72,0.22203035652637482],[127,28,73,0.21949008479714394],[127,28,74,0.21756895259022713],[127,28,75,0.21735640615224838],[127,28,76,0.21935896947979927],[127,28,77,0.2235519401729107],[127,28,78,0.22891227528452873],[127,28,79,0.23442692682147026],[127,29,64,0.218359112739563],[127,29,65,0.21571305394172668],[127,29,66,0.21456443518400192],[127,29,67,0.2147480510175228],[127,29,68,0.21548136696219444],[127,29,69,0.21597682684659958],[127,29,70,0.21616826951503754],[127,29,71,0.21588463708758354],[127,29,72,0.21421785652637482],[127,29,73,0.21167758479714394],[127,29,74,0.20975645259022713],[127,29,75,0.20954390615224838],[127,29,76,0.21154646947979927],[127,29,77,0.2157394401729107],[127,29,78,0.22109977528452873],[127,29,79,0.22661442682147026],[127,30,64,0.210546612739563],[127,30,65,0.20790055394172668],[127,30,66,0.20675193518400192],[127,30,67,0.2069355510175228],[127,30,68,0.20766886696219444],[127,30,69,0.20816432684659958],[127,30,70,0.20835576951503754],[127,30,71,0.20807213708758354],[127,30,72,0.20640535652637482],[127,30,73,0.20386508479714394],[127,30,74,0.20194395259022713],[127,30,75,0.20173140615224838],[127,30,76,0.20373396947979927],[127,30,77,0.2079269401729107],[127,30,78,0.21328727528452873],[127,30,79,0.21880192682147026],[127,31,64,0.202734112739563],[127,31,65,0.20008805394172668],[127,31,66,0.19893943518400192],[127,31,67,0.1991230510175228],[127,31,68,0.19985636696219444],[127,31,69,0.20035182684659958],[127,31,70,0.20054326951503754],[127,31,71,0.20025963708758354],[127,31,72,0.19859285652637482],[127,31,73,0.19605258479714394],[127,31,74,0.19413145259022713],[127,31,75,0.19391890615224838],[127,31,76,0.19592146947979927],[127,31,77,0.2001144401729107],[127,31,78,0.20547477528452873],[127,31,79,0.21098942682147026],[127,32,64,0.194921612739563],[127,32,65,0.19227555394172668],[127,32,66,0.19112693518400192],[127,32,67,0.1913105510175228],[127,32,68,0.19204386696219444],[127,32,69,0.19253932684659958],[127,32,70,0.19273076951503754],[127,32,71,0.19244713708758354],[127,32,72,0.19078035652637482],[127,32,73,0.18824008479714394],[127,32,74,0.18631895259022713],[127,32,75,0.18610640615224838],[127,32,76,0.18810896947979927],[127,32,77,0.1923019401729107],[127,32,78,0.19766227528452873],[127,32,79,0.20317692682147026],[127,33,64,0.187109112739563],[127,33,65,0.18446305394172668],[127,33,66,0.18331443518400192],[127,33,67,0.1834980510175228],[127,33,68,0.18423136696219444],[127,33,69,0.18472682684659958],[127,33,70,0.18491826951503754],[127,33,71,0.18463463708758354],[127,33,72,0.18296785652637482],[127,33,73,0.18042758479714394],[127,33,74,0.17850645259022713],[127,33,75,0.17829390615224838],[127,33,76,0.18029646947979927],[127,33,77,0.1844894401729107],[127,33,78,0.18984977528452873],[127,33,79,0.19536442682147026],[127,34,64,0.179296612739563],[127,34,65,0.17665055394172668],[127,34,66,0.17550193518400192],[127,34,67,0.1756855510175228],[127,34,68,0.17641886696219444],[127,34,69,0.17691432684659958],[127,34,70,0.17710576951503754],[127,34,71,0.17682213708758354],[127,34,72,0.17515535652637482],[127,34,73,0.17261508479714394],[127,34,74,0.17069395259022713],[127,34,75,0.17048140615224838],[127,34,76,0.17248396947979927],[127,34,77,0.1766769401729107],[127,34,78,0.18203727528452873],[127,34,79,0.18755192682147026],[127,35,64,0.171484112739563],[127,35,65,0.16883805394172668],[127,35,66,0.16768943518400192],[127,35,67,0.1678730510175228],[127,35,68,0.16860636696219444],[127,35,69,0.16910182684659958],[127,35,70,0.16929326951503754],[127,35,71,0.16900963708758354],[127,35,72,0.16734285652637482],[127,35,73,0.16480258479714394],[127,35,74,0.16288145259022713],[127,35,75,0.16266890615224838],[127,35,76,0.16467146947979927],[127,35,77,0.1688644401729107],[127,35,78,0.17422477528452873],[127,35,79,0.17973942682147026],[127,36,64,0.163671612739563],[127,36,65,0.16102555394172668],[127,36,66,0.15987693518400192],[127,36,67,0.1600605510175228],[127,36,68,0.16079386696219444],[127,36,69,0.16128932684659958],[127,36,70,0.16148076951503754],[127,36,71,0.16119713708758354],[127,36,72,0.15953035652637482],[127,36,73,0.15699008479714394],[127,36,74,0.15506895259022713],[127,36,75,0.15485640615224838],[127,36,76,0.15685896947979927],[127,36,77,0.1610519401729107],[127,36,78,0.16641227528452873],[127,36,79,0.17192692682147026],[127,37,64,0.155859112739563],[127,37,65,0.15321305394172668],[127,37,66,0.15206443518400192],[127,37,67,0.1522480510175228],[127,37,68,0.15298136696219444],[127,37,69,0.15347682684659958],[127,37,70,0.15366826951503754],[127,37,71,0.15338463708758354],[127,37,72,0.15171785652637482],[127,37,73,0.14917758479714394],[127,37,74,0.14725645259022713],[127,37,75,0.14704390615224838],[127,37,76,0.14904646947979927],[127,37,77,0.1532394401729107],[127,37,78,0.15859977528452873],[127,37,79,0.16411442682147026],[127,38,64,0.148046612739563],[127,38,65,0.14540055394172668],[127,38,66,0.14425193518400192],[127,38,67,0.1444355510175228],[127,38,68,0.14516886696219444],[127,38,69,0.14566432684659958],[127,38,70,0.14585576951503754],[127,38,71,0.14557213708758354],[127,38,72,0.14390535652637482],[127,38,73,0.14136508479714394],[127,38,74,0.13944395259022713],[127,38,75,0.13923140615224838],[127,38,76,0.14123396947979927],[127,38,77,0.1454269401729107],[127,38,78,0.15078727528452873],[127,38,79,0.15630192682147026],[127,39,64,0.140234112739563],[127,39,65,0.13758805394172668],[127,39,66,0.13643943518400192],[127,39,67,0.1366230510175228],[127,39,68,0.13735636696219444],[127,39,69,0.13785182684659958],[127,39,70,0.13804326951503754],[127,39,71,0.13775963708758354],[127,39,72,0.13609285652637482],[127,39,73,0.13355258479714394],[127,39,74,0.13163145259022713],[127,39,75,0.13141890615224838],[127,39,76,0.13342146947979927],[127,39,77,0.1376144401729107],[127,39,78,0.14297477528452873],[127,39,79,0.14848942682147026],[127,40,64,0.132421612739563],[127,40,65,0.12977555394172668],[127,40,66,0.12862693518400192],[127,40,67,0.1288105510175228],[127,40,68,0.12954386696219444],[127,40,69,0.13003932684659958],[127,40,70,0.13023076951503754],[127,40,71,0.12994713708758354],[127,40,72,0.12828035652637482],[127,40,73,0.12574008479714394],[127,40,74,0.12381895259022713],[127,40,75,0.12360640615224838],[127,40,76,0.12560896947979927],[127,40,77,0.1298019401729107],[127,40,78,0.13516227528452873],[127,40,79,0.14067692682147026],[127,41,64,0.12460911273956299],[127,41,65,0.12196305394172668],[127,41,66,0.12081443518400192],[127,41,67,0.12099805101752281],[127,41,68,0.12173136696219444],[127,41,69,0.12222682684659958],[127,41,70,0.12241826951503754],[127,41,71,0.12213463708758354],[127,41,72,0.12046785652637482],[127,41,73,0.11792758479714394],[127,41,74,0.11600645259022713],[127,41,75,0.11579390615224838],[127,41,76,0.11779646947979927],[127,41,77,0.12198944017291069],[127,41,78,0.12734977528452873],[127,41,79,0.13286442682147026],[127,42,64,0.11679661273956299],[127,42,65,0.11415055394172668],[127,42,66,0.11300193518400192],[127,42,67,0.11318555101752281],[127,42,68,0.11391886696219444],[127,42,69,0.11441432684659958],[127,42,70,0.11460576951503754],[127,42,71,0.11432213708758354],[127,42,72,0.11265535652637482],[127,42,73,0.11011508479714394],[127,42,74,0.10819395259022713],[127,42,75,0.10798140615224838],[127,42,76,0.10998396947979927],[127,42,77,0.11417694017291069],[127,42,78,0.11953727528452873],[127,42,79,0.12505192682147026],[127,43,64,0.10898411273956299],[127,43,65,0.10633805394172668],[127,43,66,0.10518943518400192],[127,43,67,0.10537305101752281],[127,43,68,0.10610636696219444],[127,43,69,0.10660182684659958],[127,43,70,0.10679326951503754],[127,43,71,0.10650963708758354],[127,43,72,0.10484285652637482],[127,43,73,0.10230258479714394],[127,43,74,0.10038145259022713],[127,43,75,0.10016890615224838],[127,43,76,0.10217146947979927],[127,43,77,0.10636444017291069],[127,43,78,0.11172477528452873],[127,43,79,0.11723942682147026],[127,44,64,0.10117161273956299],[127,44,65,0.09852555394172668],[127,44,66,0.09737693518400192],[127,44,67,0.09756055101752281],[127,44,68,0.09829386696219444],[127,44,69,0.09878932684659958],[127,44,70,0.09898076951503754],[127,44,71,0.09869713708758354],[127,44,72,0.09703035652637482],[127,44,73,0.09449008479714394],[127,44,74,0.09256895259022713],[127,44,75,0.09235640615224838],[127,44,76,0.09435896947979927],[127,44,77,0.09855194017291069],[127,44,78,0.10391227528452873],[127,44,79,0.10942692682147026],[127,45,64,0.09335911273956299],[127,45,65,0.09071305394172668],[127,45,66,0.08956443518400192],[127,45,67,0.08974805101752281],[127,45,68,0.09048136696219444],[127,45,69,0.09097682684659958],[127,45,70,0.09116826951503754],[127,45,71,0.09088463708758354],[127,45,72,0.08921785652637482],[127,45,73,0.08667758479714394],[127,45,74,0.08475645259022713],[127,45,75,0.08454390615224838],[127,45,76,0.08654646947979927],[127,45,77,0.09073944017291069],[127,45,78,0.09609977528452873],[127,45,79,0.10161442682147026],[127,46,64,0.08554661273956299],[127,46,65,0.08290055394172668],[127,46,66,0.08175193518400192],[127,46,67,0.08193555101752281],[127,46,68,0.08266886696219444],[127,46,69,0.08316432684659958],[127,46,70,0.08335576951503754],[127,46,71,0.08307213708758354],[127,46,72,0.08140535652637482],[127,46,73,0.07886508479714394],[127,46,74,0.07694395259022713],[127,46,75,0.07673140615224838],[127,46,76,0.07873396947979927],[127,46,77,0.08292694017291069],[127,46,78,0.08828727528452873],[127,46,79,0.09380192682147026],[127,47,64,0.07773411273956299],[127,47,65,0.07508805394172668],[127,47,66,0.07393943518400192],[127,47,67,0.07412305101752281],[127,47,68,0.07485636696219444],[127,47,69,0.07535182684659958],[127,47,70,0.07554326951503754],[127,47,71,0.07525963708758354],[127,47,72,0.07359285652637482],[127,47,73,0.07105258479714394],[127,47,74,0.06913145259022713],[127,47,75,0.06891890615224838],[127,47,76,0.07092146947979927],[127,47,77,0.07511444017291069],[127,47,78,0.08047477528452873],[127,47,79,0.08598942682147026],[127,48,64,0.06992161273956299],[127,48,65,0.06727555394172668],[127,48,66,0.06612693518400192],[127,48,67,0.06631055101752281],[127,48,68,0.06704386696219444],[127,48,69,0.06753932684659958],[127,48,70,0.06773076951503754],[127,48,71,0.06744713708758354],[127,48,72,0.06578035652637482],[127,48,73,0.06324008479714394],[127,48,74,0.06131895259022713],[127,48,75,0.06110640615224838],[127,48,76,0.06310896947979927],[127,48,77,0.06730194017291069],[127,48,78,0.07266227528452873],[127,48,79,0.07817692682147026],[127,49,64,0.06210911273956299],[127,49,65,0.059463053941726685],[127,49,66,0.05831443518400192],[127,49,67,0.05849805101752281],[127,49,68,0.05923136696219444],[127,49,69,0.05972682684659958],[127,49,70,0.05991826951503754],[127,49,71,0.05963463708758354],[127,49,72,0.05796785652637482],[127,49,73,0.055427584797143936],[127,49,74,0.05350645259022713],[127,49,75,0.05329390615224838],[127,49,76,0.05529646947979927],[127,49,77,0.05948944017291069],[127,49,78,0.06484977528452873],[127,49,79,0.07036442682147026],[127,50,64,0.05429661273956299],[127,50,65,0.051650553941726685],[127,50,66,0.05050193518400192],[127,50,67,0.05068555101752281],[127,50,68,0.05141886696219444],[127,50,69,0.05191432684659958],[127,50,70,0.05210576951503754],[127,50,71,0.05182213708758354],[127,50,72,0.05015535652637482],[127,50,73,0.047615084797143936],[127,50,74,0.04569395259022713],[127,50,75,0.04548140615224838],[127,50,76,0.04748396947979927],[127,50,77,0.05167694017291069],[127,50,78,0.05703727528452873],[127,50,79,0.06255192682147026],[127,51,64,0.04648411273956299],[127,51,65,0.043838053941726685],[127,51,66,0.04268943518400192],[127,51,67,0.04287305101752281],[127,51,68,0.04360636696219444],[127,51,69,0.04410182684659958],[127,51,70,0.04429326951503754],[127,51,71,0.04400963708758354],[127,51,72,0.04234285652637482],[127,51,73,0.039802584797143936],[127,51,74,0.03788145259022713],[127,51,75,0.03766890615224838],[127,51,76,0.03967146947979927],[127,51,77,0.04386444017291069],[127,51,78,0.04922477528452873],[127,51,79,0.05473942682147026],[127,52,64,0.03867161273956299],[127,52,65,0.036025553941726685],[127,52,66,0.03487693518400192],[127,52,67,0.03506055101752281],[127,52,68,0.03579386696219444],[127,52,69,0.03628932684659958],[127,52,70,0.03648076951503754],[127,52,71,0.03619713708758354],[127,52,72,0.03453035652637482],[127,52,73,0.031990084797143936],[127,52,74,0.030068952590227127],[127,52,75,0.029856406152248383],[127,52,76,0.03185896947979927],[127,52,77,0.03605194017291069],[127,52,78,0.04141227528452873],[127,52,79,0.04692692682147026],[127,53,64,0.03085911273956299],[127,53,65,0.028213053941726685],[127,53,66,0.027064435184001923],[127,53,67,0.027248051017522812],[127,53,68,0.027981366962194443],[127,53,69,0.02847682684659958],[127,53,70,0.028668269515037537],[127,53,71,0.028384637087583542],[127,53,72,0.026717856526374817],[127,53,73,0.024177584797143936],[127,53,74,0.022256452590227127],[127,53,75,0.022043906152248383],[127,53,76,0.02404646947979927],[127,53,77,0.02823944017291069],[127,53,78,0.03359977528452873],[127,53,79,0.03911442682147026],[127,54,64,0.02304661273956299],[127,54,65,0.020400553941726685],[127,54,66,0.019251935184001923],[127,54,67,0.019435551017522812],[127,54,68,0.020168866962194443],[127,54,69,0.02066432684659958],[127,54,70,0.020855769515037537],[127,54,71,0.020572137087583542],[127,54,72,0.018905356526374817],[127,54,73,0.016365084797143936],[127,54,74,0.014443952590227127],[127,54,75,0.014231406152248383],[127,54,76,0.01623396947979927],[127,54,77,0.02042694017291069],[127,54,78,0.025787275284528732],[127,54,79,0.03130192682147026],[127,55,64,0.015234112739562988],[127,55,65,0.012588053941726685],[127,55,66,0.011439435184001923],[127,55,67,0.011623051017522812],[127,55,68,0.012356366962194443],[127,55,69,0.012851826846599579],[127,55,70,0.013043269515037537],[127,55,71,0.012759637087583542],[127,55,72,0.011092856526374817],[127,55,73,0.008552584797143936],[127,55,74,0.006631452590227127],[127,55,75,0.006418906152248383],[127,55,76,0.00842146947979927],[127,55,77,0.01261444017291069],[127,55,78,0.017974775284528732],[127,55,79,0.02348942682147026],[127,56,64,0.007421612739562988],[127,56,65,0.004775553941726685],[127,56,66,0.0036269351840019226],[127,56,67,0.003810551017522812],[127,56,68,0.004543866962194443],[127,56,69,0.005039326846599579],[127,56,70,0.005230769515037537],[127,56,71,0.004947137087583542],[127,56,72,0.003280356526374817],[127,56,73,7.400847971439362E-4],[127,56,74,-0.001181047409772873],[127,56,75,-0.0013935938477516174],[127,56,76,6.089694797992706E-4],[127,56,77,0.00480194017291069],[127,56,78,0.010162275284528732],[127,56,79,0.01567692682147026],[127,57,64,-3.908872604370117E-4],[127,57,65,-0.0030369460582733154],[127,57,66,-0.004185564815998077],[127,57,67,-0.004001948982477188],[127,57,68,-0.0032686330378055573],[127,57,69,-0.002773173153400421],[127,57,70,-0.0025817304849624634],[127,57,71,-0.002865362912416458],[127,57,72,-0.004532143473625183],[127,57,73,-0.007072415202856064],[127,57,74,-0.008993547409772873],[127,57,75,-0.009206093847751617],[127,57,76,-0.007203530520200729],[127,57,77,-0.0030105598270893097],[127,57,78,0.0023497752845287323],[127,57,79,0.00786442682147026],[127,58,64,-0.008203387260437012],[127,58,65,-0.010849446058273315],[127,58,66,-0.011998064815998077],[127,58,67,-0.011814448982477188],[127,58,68,-0.011081133037805557],[127,58,69,-0.010585673153400421],[127,58,70,-0.010394230484962463],[127,58,71,-0.010677862912416458],[127,58,72,-0.012344643473625183],[127,58,73,-0.014884915202856064],[127,58,74,-0.016806047409772873],[127,58,75,-0.017018593847751617],[127,58,76,-0.01501603052020073],[127,58,77,-0.01082305982708931],[127,58,78,-0.005462724715471268],[127,58,79,5.192682147026062E-5],[127,59,64,-0.01601588726043701],[127,59,65,-0.018661946058273315],[127,59,66,-0.019810564815998077],[127,59,67,-0.019626948982477188],[127,59,68,-0.018893633037805557],[127,59,69,-0.01839817315340042],[127,59,70,-0.018206730484962463],[127,59,71,-0.018490362912416458],[127,59,72,-0.020157143473625183],[127,59,73,-0.022697415202856064],[127,59,74,-0.024618547409772873],[127,59,75,-0.024831093847751617],[127,59,76,-0.02282853052020073],[127,59,77,-0.01863555982708931],[127,59,78,-0.013275224715471268],[127,59,79,-0.007760573178529739],[127,60,64,-0.02382838726043701],[127,60,65,-0.026474446058273315],[127,60,66,-0.027623064815998077],[127,60,67,-0.027439448982477188],[127,60,68,-0.026706133037805557],[127,60,69,-0.02621067315340042],[127,60,70,-0.026019230484962463],[127,60,71,-0.026302862912416458],[127,60,72,-0.027969643473625183],[127,60,73,-0.030509915202856064],[127,60,74,-0.03243104740977287],[127,60,75,-0.03264359384775162],[127,60,76,-0.03064103052020073],[127,60,77,-0.02644805982708931],[127,60,78,-0.021087724715471268],[127,60,79,-0.01557307317852974],[127,61,64,-0.03164088726043701],[127,61,65,-0.034286946058273315],[127,61,66,-0.03543556481599808],[127,61,67,-0.03525194898247719],[127,61,68,-0.03451863303780556],[127,61,69,-0.03402317315340042],[127,61,70,-0.03383173048496246],[127,61,71,-0.03411536291241646],[127,61,72,-0.03578214347362518],[127,61,73,-0.038322415202856064],[127,61,74,-0.04024354740977287],[127,61,75,-0.04045609384775162],[127,61,76,-0.03845353052020073],[127,61,77,-0.03426055982708931],[127,61,78,-0.028900224715471268],[127,61,79,-0.02338557317852974],[127,62,64,-0.03945338726043701],[127,62,65,-0.042099446058273315],[127,62,66,-0.04324806481599808],[127,62,67,-0.04306444898247719],[127,62,68,-0.04233113303780556],[127,62,69,-0.04183567315340042],[127,62,70,-0.04164423048496246],[127,62,71,-0.04192786291241646],[127,62,72,-0.04359464347362518],[127,62,73,-0.046134915202856064],[127,62,74,-0.04805604740977287],[127,62,75,-0.04826859384775162],[127,62,76,-0.04626603052020073],[127,62,77,-0.04207305982708931],[127,62,78,-0.03671272471547127],[127,62,79,-0.03119807317852974],[127,63,64,-0.04726588726043701],[127,63,65,-0.049911946058273315],[127,63,66,-0.05106056481599808],[127,63,67,-0.05087694898247719],[127,63,68,-0.05014363303780556],[127,63,69,-0.04964817315340042],[127,63,70,-0.04945673048496246],[127,63,71,-0.04974036291241646],[127,63,72,-0.05140714347362518],[127,63,73,-0.053947415202856064],[127,63,74,-0.05586854740977287],[127,63,75,-0.05608109384775162],[127,63,76,-0.05407853052020073],[127,63,77,-0.04988555982708931],[127,63,78,-0.04452522471547127],[127,63,79,-0.03901057317852974],[127,64,64,-0.05507838726043701],[127,64,65,-0.057724446058273315],[127,64,66,-0.05887306481599808],[127,64,67,-0.05868944898247719],[127,64,68,-0.05795613303780556],[127,64,69,-0.05746067315340042],[127,64,70,-0.05726923048496246],[127,64,71,-0.05755286291241646],[127,64,72,-0.05921964347362518],[127,64,73,-0.061759915202856064],[127,64,74,-0.06368104740977287],[127,64,75,-0.06389359384775162],[127,64,76,-0.06189103052020073],[127,64,77,-0.05769805982708931],[127,64,78,-0.05233772471547127],[127,64,79,-0.04682307317852974],[127,65,64,-0.06289088726043701],[127,65,65,-0.06553694605827332],[127,65,66,-0.06668556481599808],[127,65,67,-0.06650194898247719],[127,65,68,-0.06576863303780556],[127,65,69,-0.06527317315340042],[127,65,70,-0.06508173048496246],[127,65,71,-0.06536536291241646],[127,65,72,-0.06703214347362518],[127,65,73,-0.06957241520285606],[127,65,74,-0.07149354740977287],[127,65,75,-0.07170609384775162],[127,65,76,-0.06970353052020073],[127,65,77,-0.06551055982708931],[127,65,78,-0.06015022471547127],[127,65,79,-0.05463557317852974],[127,66,64,-0.07070338726043701],[127,66,65,-0.07334944605827332],[127,66,66,-0.07449806481599808],[127,66,67,-0.07431444898247719],[127,66,68,-0.07358113303780556],[127,66,69,-0.07308567315340042],[127,66,70,-0.07289423048496246],[127,66,71,-0.07317786291241646],[127,66,72,-0.07484464347362518],[127,66,73,-0.07738491520285606],[127,66,74,-0.07930604740977287],[127,66,75,-0.07951859384775162],[127,66,76,-0.07751603052020073],[127,66,77,-0.07332305982708931],[127,66,78,-0.06796272471547127],[127,66,79,-0.06244807317852974],[127,67,64,-0.07851588726043701],[127,67,65,-0.08116194605827332],[127,67,66,-0.08231056481599808],[127,67,67,-0.08212694898247719],[127,67,68,-0.08139363303780556],[127,67,69,-0.08089817315340042],[127,67,70,-0.08070673048496246],[127,67,71,-0.08099036291241646],[127,67,72,-0.08265714347362518],[127,67,73,-0.08519741520285606],[127,67,74,-0.08711854740977287],[127,67,75,-0.08733109384775162],[127,67,76,-0.08532853052020073],[127,67,77,-0.08113555982708931],[127,67,78,-0.07577522471547127],[127,67,79,-0.07026057317852974],[127,68,64,-0.08632838726043701],[127,68,65,-0.08897444605827332],[127,68,66,-0.09012306481599808],[127,68,67,-0.08993944898247719],[127,68,68,-0.08920613303780556],[127,68,69,-0.08871067315340042],[127,68,70,-0.08851923048496246],[127,68,71,-0.08880286291241646],[127,68,72,-0.09046964347362518],[127,68,73,-0.09300991520285606],[127,68,74,-0.09493104740977287],[127,68,75,-0.09514359384775162],[127,68,76,-0.09314103052020073],[127,68,77,-0.08894805982708931],[127,68,78,-0.08358772471547127],[127,68,79,-0.07807307317852974],[127,69,64,-0.09414088726043701],[127,69,65,-0.09678694605827332],[127,69,66,-0.09793556481599808],[127,69,67,-0.09775194898247719],[127,69,68,-0.09701863303780556],[127,69,69,-0.09652317315340042],[127,69,70,-0.09633173048496246],[127,69,71,-0.09661536291241646],[127,69,72,-0.09828214347362518],[127,69,73,-0.10082241520285606],[127,69,74,-0.10274354740977287],[127,69,75,-0.10295609384775162],[127,69,76,-0.10095353052020073],[127,69,77,-0.09676055982708931],[127,69,78,-0.09140022471547127],[127,69,79,-0.08588557317852974],[127,70,64,-0.10195338726043701],[127,70,65,-0.10459944605827332],[127,70,66,-0.10574806481599808],[127,70,67,-0.10556444898247719],[127,70,68,-0.10483113303780556],[127,70,69,-0.10433567315340042],[127,70,70,-0.10414423048496246],[127,70,71,-0.10442786291241646],[127,70,72,-0.10609464347362518],[127,70,73,-0.10863491520285606],[127,70,74,-0.11055604740977287],[127,70,75,-0.11076859384775162],[127,70,76,-0.10876603052020073],[127,70,77,-0.10457305982708931],[127,70,78,-0.09921272471547127],[127,70,79,-0.09369807317852974],[127,71,64,-0.10976588726043701],[127,71,65,-0.11241194605827332],[127,71,66,-0.11356056481599808],[127,71,67,-0.11337694898247719],[127,71,68,-0.11264363303780556],[127,71,69,-0.11214817315340042],[127,71,70,-0.11195673048496246],[127,71,71,-0.11224036291241646],[127,71,72,-0.11390714347362518],[127,71,73,-0.11644741520285606],[127,71,74,-0.11836854740977287],[127,71,75,-0.11858109384775162],[127,71,76,-0.11657853052020073],[127,71,77,-0.11238555982708931],[127,71,78,-0.10702522471547127],[127,71,79,-0.10151057317852974],[127,72,64,-0.11757838726043701],[127,72,65,-0.12022444605827332],[127,72,66,-0.12137306481599808],[127,72,67,-0.12118944898247719],[127,72,68,-0.12045613303780556],[127,72,69,-0.11996067315340042],[127,72,70,-0.11976923048496246],[127,72,71,-0.12005286291241646],[127,72,72,-0.12171964347362518],[127,72,73,-0.12425991520285606],[127,72,74,-0.12618104740977287],[127,72,75,-0.12639359384775162],[127,72,76,-0.12439103052020073],[127,72,77,-0.12019805982708931],[127,72,78,-0.11483772471547127],[127,72,79,-0.10932307317852974],[127,73,64,-0.125390887260437],[127,73,65,-0.12803694605827332],[127,73,66,-0.12918556481599808],[127,73,67,-0.1290019489824772],[127,73,68,-0.12826863303780556],[127,73,69,-0.12777317315340042],[127,73,70,-0.12758173048496246],[127,73,71,-0.12786536291241646],[127,73,72,-0.12953214347362518],[127,73,73,-0.13207241520285606],[127,73,74,-0.13399354740977287],[127,73,75,-0.13420609384775162],[127,73,76,-0.13220353052020073],[127,73,77,-0.1280105598270893],[127,73,78,-0.12265022471547127],[127,73,79,-0.11713557317852974],[127,74,64,-0.133203387260437],[127,74,65,-0.13584944605827332],[127,74,66,-0.13699806481599808],[127,74,67,-0.1368144489824772],[127,74,68,-0.13608113303780556],[127,74,69,-0.13558567315340042],[127,74,70,-0.13539423048496246],[127,74,71,-0.13567786291241646],[127,74,72,-0.13734464347362518],[127,74,73,-0.13988491520285606],[127,74,74,-0.14180604740977287],[127,74,75,-0.14201859384775162],[127,74,76,-0.14001603052020073],[127,74,77,-0.1358230598270893],[127,74,78,-0.13046272471547127],[127,74,79,-0.12494807317852974],[127,75,64,-0.141015887260437],[127,75,65,-0.14366194605827332],[127,75,66,-0.14481056481599808],[127,75,67,-0.1446269489824772],[127,75,68,-0.14389363303780556],[127,75,69,-0.14339817315340042],[127,75,70,-0.14320673048496246],[127,75,71,-0.14349036291241646],[127,75,72,-0.14515714347362518],[127,75,73,-0.14769741520285606],[127,75,74,-0.14961854740977287],[127,75,75,-0.14983109384775162],[127,75,76,-0.14782853052020073],[127,75,77,-0.1436355598270893],[127,75,78,-0.13827522471547127],[127,75,79,-0.13276057317852974],[127,76,64,-0.148828387260437],[127,76,65,-0.15147444605827332],[127,76,66,-0.15262306481599808],[127,76,67,-0.1524394489824772],[127,76,68,-0.15170613303780556],[127,76,69,-0.15121067315340042],[127,76,70,-0.15101923048496246],[127,76,71,-0.15130286291241646],[127,76,72,-0.15296964347362518],[127,76,73,-0.15550991520285606],[127,76,74,-0.15743104740977287],[127,76,75,-0.15764359384775162],[127,76,76,-0.15564103052020073],[127,76,77,-0.1514480598270893],[127,76,78,-0.14608772471547127],[127,76,79,-0.14057307317852974],[127,77,64,-0.156640887260437],[127,77,65,-0.15928694605827332],[127,77,66,-0.16043556481599808],[127,77,67,-0.1602519489824772],[127,77,68,-0.15951863303780556],[127,77,69,-0.15902317315340042],[127,77,70,-0.15883173048496246],[127,77,71,-0.15911536291241646],[127,77,72,-0.16078214347362518],[127,77,73,-0.16332241520285606],[127,77,74,-0.16524354740977287],[127,77,75,-0.16545609384775162],[127,77,76,-0.16345353052020073],[127,77,77,-0.1592605598270893],[127,77,78,-0.15390022471547127],[127,77,79,-0.14838557317852974],[127,78,64,-0.164453387260437],[127,78,65,-0.16709944605827332],[127,78,66,-0.16824806481599808],[127,78,67,-0.1680644489824772],[127,78,68,-0.16733113303780556],[127,78,69,-0.16683567315340042],[127,78,70,-0.16664423048496246],[127,78,71,-0.16692786291241646],[127,78,72,-0.16859464347362518],[127,78,73,-0.17113491520285606],[127,78,74,-0.17305604740977287],[127,78,75,-0.17326859384775162],[127,78,76,-0.17126603052020073],[127,78,77,-0.1670730598270893],[127,78,78,-0.16171272471547127],[127,78,79,-0.15619807317852974],[127,79,64,-0.172265887260437],[127,79,65,-0.17491194605827332],[127,79,66,-0.17606056481599808],[127,79,67,-0.1758769489824772],[127,79,68,-0.17514363303780556],[127,79,69,-0.17464817315340042],[127,79,70,-0.17445673048496246],[127,79,71,-0.17474036291241646],[127,79,72,-0.17640714347362518],[127,79,73,-0.17894741520285606],[127,79,74,-0.18086854740977287],[127,79,75,-0.18108109384775162],[127,79,76,-0.17907853052020073],[127,79,77,-0.1748855598270893],[127,79,78,-0.16952522471547127],[127,79,79,-0.16401057317852974],[127,80,64,-0.180078387260437],[127,80,65,-0.18272444605827332],[127,80,66,-0.18387306481599808],[127,80,67,-0.1836894489824772],[127,80,68,-0.18295613303780556],[127,80,69,-0.18246067315340042],[127,80,70,-0.18226923048496246],[127,80,71,-0.18255286291241646],[127,80,72,-0.18421964347362518],[127,80,73,-0.18675991520285606],[127,80,74,-0.18868104740977287],[127,80,75,-0.18889359384775162],[127,80,76,-0.18689103052020073],[127,80,77,-0.1826980598270893],[127,80,78,-0.17733772471547127],[127,80,79,-0.17182307317852974],[127,81,64,-0.187890887260437],[127,81,65,-0.19053694605827332],[127,81,66,-0.19168556481599808],[127,81,67,-0.1915019489824772],[127,81,68,-0.19076863303780556],[127,81,69,-0.19027317315340042],[127,81,70,-0.19008173048496246],[127,81,71,-0.19036536291241646],[127,81,72,-0.19203214347362518],[127,81,73,-0.19457241520285606],[127,81,74,-0.19649354740977287],[127,81,75,-0.19670609384775162],[127,81,76,-0.19470353052020073],[127,81,77,-0.1905105598270893],[127,81,78,-0.18515022471547127],[127,81,79,-0.17963557317852974],[127,82,64,-0.195703387260437],[127,82,65,-0.19834944605827332],[127,82,66,-0.19949806481599808],[127,82,67,-0.1993144489824772],[127,82,68,-0.19858113303780556],[127,82,69,-0.19808567315340042],[127,82,70,-0.19789423048496246],[127,82,71,-0.19817786291241646],[127,82,72,-0.19984464347362518],[127,82,73,-0.20238491520285606],[127,82,74,-0.20430604740977287],[127,82,75,-0.20451859384775162],[127,82,76,-0.20251603052020073],[127,82,77,-0.1983230598270893],[127,82,78,-0.19296272471547127],[127,82,79,-0.18744807317852974],[127,83,64,-0.203515887260437],[127,83,65,-0.20616194605827332],[127,83,66,-0.20731056481599808],[127,83,67,-0.2071269489824772],[127,83,68,-0.20639363303780556],[127,83,69,-0.20589817315340042],[127,83,70,-0.20570673048496246],[127,83,71,-0.20599036291241646],[127,83,72,-0.20765714347362518],[127,83,73,-0.21019741520285606],[127,83,74,-0.21211854740977287],[127,83,75,-0.21233109384775162],[127,83,76,-0.21032853052020073],[127,83,77,-0.2061355598270893],[127,83,78,-0.20077522471547127],[127,83,79,-0.19526057317852974],[127,84,64,-0.211328387260437],[127,84,65,-0.21397444605827332],[127,84,66,-0.21512306481599808],[127,84,67,-0.2149394489824772],[127,84,68,-0.21420613303780556],[127,84,69,-0.21371067315340042],[127,84,70,-0.21351923048496246],[127,84,71,-0.21380286291241646],[127,84,72,-0.21546964347362518],[127,84,73,-0.21800991520285606],[127,84,74,-0.21993104740977287],[127,84,75,-0.22014359384775162],[127,84,76,-0.21814103052020073],[127,84,77,-0.2139480598270893],[127,84,78,-0.20858772471547127],[127,84,79,-0.20307307317852974],[127,85,64,-0.219140887260437],[127,85,65,-0.22178694605827332],[127,85,66,-0.22293556481599808],[127,85,67,-0.2227519489824772],[127,85,68,-0.22201863303780556],[127,85,69,-0.22152317315340042],[127,85,70,-0.22133173048496246],[127,85,71,-0.22161536291241646],[127,85,72,-0.22328214347362518],[127,85,73,-0.22582241520285606],[127,85,74,-0.22774354740977287],[127,85,75,-0.22795609384775162],[127,85,76,-0.22595353052020073],[127,85,77,-0.2217605598270893],[127,85,78,-0.21640022471547127],[127,85,79,-0.21088557317852974],[127,86,64,-0.226953387260437],[127,86,65,-0.22959944605827332],[127,86,66,-0.23074806481599808],[127,86,67,-0.2305644489824772],[127,86,68,-0.22983113303780556],[127,86,69,-0.22933567315340042],[127,86,70,-0.22914423048496246],[127,86,71,-0.22942786291241646],[127,86,72,-0.23109464347362518],[127,86,73,-0.23363491520285606],[127,86,74,-0.23555604740977287],[127,86,75,-0.23576859384775162],[127,86,76,-0.23376603052020073],[127,86,77,-0.2295730598270893],[127,86,78,-0.22421272471547127],[127,86,79,-0.21869807317852974],[127,87,64,-0.234765887260437],[127,87,65,-0.23741194605827332],[127,87,66,-0.23856056481599808],[127,87,67,-0.2383769489824772],[127,87,68,-0.23764363303780556],[127,87,69,-0.23714817315340042],[127,87,70,-0.23695673048496246],[127,87,71,-0.23724036291241646],[127,87,72,-0.23890714347362518],[127,87,73,-0.24144741520285606],[127,87,74,-0.24336854740977287],[127,87,75,-0.24358109384775162],[127,87,76,-0.24157853052020073],[127,87,77,-0.2373855598270893],[127,87,78,-0.23202522471547127],[127,87,79,-0.22651057317852974],[127,88,64,-0.242578387260437],[127,88,65,-0.24522444605827332],[127,88,66,-0.24637306481599808],[127,88,67,-0.2461894489824772],[127,88,68,-0.24545613303780556],[127,88,69,-0.24496067315340042],[127,88,70,-0.24476923048496246],[127,88,71,-0.24505286291241646],[127,88,72,-0.24671964347362518],[127,88,73,-0.24925991520285606],[127,88,74,-0.2511810474097729],[127,88,75,-0.2513935938477516],[127,88,76,-0.24939103052020073],[127,88,77,-0.2451980598270893],[127,88,78,-0.23983772471547127],[127,88,79,-0.23432307317852974],[127,89,64,-0.250390887260437],[127,89,65,-0.2530369460582733],[127,89,66,-0.2541855648159981],[127,89,67,-0.2540019489824772],[127,89,68,-0.25326863303780556],[127,89,69,-0.2527731731534004],[127,89,70,-0.25258173048496246],[127,89,71,-0.25286536291241646],[127,89,72,-0.2545321434736252],[127,89,73,-0.25707241520285606],[127,89,74,-0.2589935474097729],[127,89,75,-0.2592060938477516],[127,89,76,-0.25720353052020073],[127,89,77,-0.2530105598270893],[127,89,78,-0.24765022471547127],[127,89,79,-0.24213557317852974],[127,90,64,-0.258203387260437],[127,90,65,-0.2608494460582733],[127,90,66,-0.2619980648159981],[127,90,67,-0.2618144489824772],[127,90,68,-0.26108113303780556],[127,90,69,-0.2605856731534004],[127,90,70,-0.26039423048496246],[127,90,71,-0.26067786291241646],[127,90,72,-0.2623446434736252],[127,90,73,-0.26488491520285606],[127,90,74,-0.2668060474097729],[127,90,75,-0.2670185938477516],[127,90,76,-0.26501603052020073],[127,90,77,-0.2608230598270893],[127,90,78,-0.25546272471547127],[127,90,79,-0.24994807317852974],[127,91,64,-0.266015887260437],[127,91,65,-0.2686619460582733],[127,91,66,-0.2698105648159981],[127,91,67,-0.2696269489824772],[127,91,68,-0.26889363303780556],[127,91,69,-0.2683981731534004],[127,91,70,-0.26820673048496246],[127,91,71,-0.26849036291241646],[127,91,72,-0.2701571434736252],[127,91,73,-0.27269741520285606],[127,91,74,-0.2746185474097729],[127,91,75,-0.2748310938477516],[127,91,76,-0.27282853052020073],[127,91,77,-0.2686355598270893],[127,91,78,-0.26327522471547127],[127,91,79,-0.25776057317852974],[127,92,64,-0.273828387260437],[127,92,65,-0.2764744460582733],[127,92,66,-0.2776230648159981],[127,92,67,-0.2774394489824772],[127,92,68,-0.27670613303780556],[127,92,69,-0.2762106731534004],[127,92,70,-0.27601923048496246],[127,92,71,-0.27630286291241646],[127,92,72,-0.2779696434736252],[127,92,73,-0.28050991520285606],[127,92,74,-0.2824310474097729],[127,92,75,-0.2826435938477516],[127,92,76,-0.28064103052020073],[127,92,77,-0.2764480598270893],[127,92,78,-0.27108772471547127],[127,92,79,-0.26557307317852974],[127,93,64,-0.281640887260437],[127,93,65,-0.2842869460582733],[127,93,66,-0.2854355648159981],[127,93,67,-0.2852519489824772],[127,93,68,-0.28451863303780556],[127,93,69,-0.2840231731534004],[127,93,70,-0.28383173048496246],[127,93,71,-0.28411536291241646],[127,93,72,-0.2857821434736252],[127,93,73,-0.28832241520285606],[127,93,74,-0.2902435474097729],[127,93,75,-0.2904560938477516],[127,93,76,-0.28845353052020073],[127,93,77,-0.2842605598270893],[127,93,78,-0.27890022471547127],[127,93,79,-0.27338557317852974],[127,94,64,-0.289453387260437],[127,94,65,-0.2920994460582733],[127,94,66,-0.2932480648159981],[127,94,67,-0.2930644489824772],[127,94,68,-0.29233113303780556],[127,94,69,-0.2918356731534004],[127,94,70,-0.29164423048496246],[127,94,71,-0.29192786291241646],[127,94,72,-0.2935946434736252],[127,94,73,-0.29613491520285606],[127,94,74,-0.2980560474097729],[127,94,75,-0.2982685938477516],[127,94,76,-0.29626603052020073],[127,94,77,-0.2920730598270893],[127,94,78,-0.28671272471547127],[127,94,79,-0.28119807317852974],[127,95,64,-0.297265887260437],[127,95,65,-0.2999119460582733],[127,95,66,-0.3010605648159981],[127,95,67,-0.3008769489824772],[127,95,68,-0.30014363303780556],[127,95,69,-0.2996481731534004],[127,95,70,-0.29945673048496246],[127,95,71,-0.29974036291241646],[127,95,72,-0.3014071434736252],[127,95,73,-0.30394741520285606],[127,95,74,-0.3058685474097729],[127,95,75,-0.3060810938477516],[127,95,76,-0.30407853052020073],[127,95,77,-0.2998855598270893],[127,95,78,-0.29452522471547127],[127,95,79,-0.28901057317852974],[127,96,64,-0.305078387260437],[127,96,65,-0.3077244460582733],[127,96,66,-0.3088730648159981],[127,96,67,-0.3086894489824772],[127,96,68,-0.30795613303780556],[127,96,69,-0.3074606731534004],[127,96,70,-0.30726923048496246],[127,96,71,-0.30755286291241646],[127,96,72,-0.3092196434736252],[127,96,73,-0.31175991520285606],[127,96,74,-0.3136810474097729],[127,96,75,-0.3138935938477516],[127,96,76,-0.31189103052020073],[127,96,77,-0.3076980598270893],[127,96,78,-0.30233772471547127],[127,96,79,-0.29682307317852974],[127,97,64,-0.312890887260437],[127,97,65,-0.3155369460582733],[127,97,66,-0.3166855648159981],[127,97,67,-0.3165019489824772],[127,97,68,-0.31576863303780556],[127,97,69,-0.3152731731534004],[127,97,70,-0.31508173048496246],[127,97,71,-0.31536536291241646],[127,97,72,-0.3170321434736252],[127,97,73,-0.31957241520285606],[127,97,74,-0.3214935474097729],[127,97,75,-0.3217060938477516],[127,97,76,-0.31970353052020073],[127,97,77,-0.3155105598270893],[127,97,78,-0.31015022471547127],[127,97,79,-0.30463557317852974],[127,98,64,-0.320703387260437],[127,98,65,-0.3233494460582733],[127,98,66,-0.3244980648159981],[127,98,67,-0.3243144489824772],[127,98,68,-0.32358113303780556],[127,98,69,-0.3230856731534004],[127,98,70,-0.32289423048496246],[127,98,71,-0.32317786291241646],[127,98,72,-0.3248446434736252],[127,98,73,-0.32738491520285606],[127,98,74,-0.3293060474097729],[127,98,75,-0.3295185938477516],[127,98,76,-0.32751603052020073],[127,98,77,-0.3233230598270893],[127,98,78,-0.31796272471547127],[127,98,79,-0.31244807317852974],[127,99,64,-0.328515887260437],[127,99,65,-0.3311619460582733],[127,99,66,-0.3323105648159981],[127,99,67,-0.3321269489824772],[127,99,68,-0.33139363303780556],[127,99,69,-0.3308981731534004],[127,99,70,-0.33070673048496246],[127,99,71,-0.33099036291241646],[127,99,72,-0.3326571434736252],[127,99,73,-0.33519741520285606],[127,99,74,-0.3371185474097729],[127,99,75,-0.3373310938477516],[127,99,76,-0.33532853052020073],[127,99,77,-0.3311355598270893],[127,99,78,-0.32577522471547127],[127,99,79,-0.32026057317852974],[127,100,64,-0.336328387260437],[127,100,65,-0.3389744460582733],[127,100,66,-0.3401230648159981],[127,100,67,-0.3399394489824772],[127,100,68,-0.33920613303780556],[127,100,69,-0.3387106731534004],[127,100,70,-0.33851923048496246],[127,100,71,-0.33880286291241646],[127,100,72,-0.3404696434736252],[127,100,73,-0.34300991520285606],[127,100,74,-0.3449310474097729],[127,100,75,-0.3451435938477516],[127,100,76,-0.34314103052020073],[127,100,77,-0.3389480598270893],[127,100,78,-0.33358772471547127],[127,100,79,-0.32807307317852974],[127,101,64,-0.344140887260437],[127,101,65,-0.3467869460582733],[127,101,66,-0.3479355648159981],[127,101,67,-0.3477519489824772],[127,101,68,-0.34701863303780556],[127,101,69,-0.3465231731534004],[127,101,70,-0.34633173048496246],[127,101,71,-0.34661536291241646],[127,101,72,-0.3482821434736252],[127,101,73,-0.35082241520285606],[127,101,74,-0.3527435474097729],[127,101,75,-0.3529560938477516],[127,101,76,-0.35095353052020073],[127,101,77,-0.3467605598270893],[127,101,78,-0.34140022471547127],[127,101,79,-0.33588557317852974],[127,102,64,-0.351953387260437],[127,102,65,-0.3545994460582733],[127,102,66,-0.3557480648159981],[127,102,67,-0.3555644489824772],[127,102,68,-0.35483113303780556],[127,102,69,-0.3543356731534004],[127,102,70,-0.35414423048496246],[127,102,71,-0.35442786291241646],[127,102,72,-0.3560946434736252],[127,102,73,-0.35863491520285606],[127,102,74,-0.3605560474097729],[127,102,75,-0.3607685938477516],[127,102,76,-0.35876603052020073],[127,102,77,-0.3545730598270893],[127,102,78,-0.34921272471547127],[127,102,79,-0.34369807317852974],[127,103,64,-0.359765887260437],[127,103,65,-0.3624119460582733],[127,103,66,-0.3635605648159981],[127,103,67,-0.3633769489824772],[127,103,68,-0.36264363303780556],[127,103,69,-0.3621481731534004],[127,103,70,-0.36195673048496246],[127,103,71,-0.36224036291241646],[127,103,72,-0.3639071434736252],[127,103,73,-0.36644741520285606],[127,103,74,-0.3683685474097729],[127,103,75,-0.3685810938477516],[127,103,76,-0.36657853052020073],[127,103,77,-0.3623855598270893],[127,103,78,-0.35702522471547127],[127,103,79,-0.35151057317852974],[127,104,64,-0.367578387260437],[127,104,65,-0.3702244460582733],[127,104,66,-0.3713730648159981],[127,104,67,-0.3711894489824772],[127,104,68,-0.37045613303780556],[127,104,69,-0.3699606731534004],[127,104,70,-0.36976923048496246],[127,104,71,-0.37005286291241646],[127,104,72,-0.3717196434736252],[127,104,73,-0.37425991520285606],[127,104,74,-0.3761810474097729],[127,104,75,-0.3763935938477516],[127,104,76,-0.37439103052020073],[127,104,77,-0.3701980598270893],[127,104,78,-0.36483772471547127],[127,104,79,-0.35932307317852974],[127,105,64,-0.375390887260437],[127,105,65,-0.3780369460582733],[127,105,66,-0.3791855648159981],[127,105,67,-0.3790019489824772],[127,105,68,-0.37826863303780556],[127,105,69,-0.3777731731534004],[127,105,70,-0.37758173048496246],[127,105,71,-0.37786536291241646],[127,105,72,-0.3795321434736252],[127,105,73,-0.38207241520285606],[127,105,74,-0.3839935474097729],[127,105,75,-0.3842060938477516],[127,105,76,-0.38220353052020073],[127,105,77,-0.3780105598270893],[127,105,78,-0.37265022471547127],[127,105,79,-0.36713557317852974],[127,106,64,-0.383203387260437],[127,106,65,-0.3858494460582733],[127,106,66,-0.3869980648159981],[127,106,67,-0.3868144489824772],[127,106,68,-0.38608113303780556],[127,106,69,-0.3855856731534004],[127,106,70,-0.38539423048496246],[127,106,71,-0.38567786291241646],[127,106,72,-0.3873446434736252],[127,106,73,-0.38988491520285606],[127,106,74,-0.3918060474097729],[127,106,75,-0.3920185938477516],[127,106,76,-0.39001603052020073],[127,106,77,-0.3858230598270893],[127,106,78,-0.38046272471547127],[127,106,79,-0.37494807317852974],[127,107,64,-0.391015887260437],[127,107,65,-0.3936619460582733],[127,107,66,-0.3948105648159981],[127,107,67,-0.3946269489824772],[127,107,68,-0.39389363303780556],[127,107,69,-0.3933981731534004],[127,107,70,-0.39320673048496246],[127,107,71,-0.39349036291241646],[127,107,72,-0.3951571434736252],[127,107,73,-0.39769741520285606],[127,107,74,-0.3996185474097729],[127,107,75,-0.3998310938477516],[127,107,76,-0.39782853052020073],[127,107,77,-0.3936355598270893],[127,107,78,-0.38827522471547127],[127,107,79,-0.38276057317852974],[127,108,64,-0.398828387260437],[127,108,65,-0.4014744460582733],[127,108,66,-0.4026230648159981],[127,108,67,-0.4024394489824772],[127,108,68,-0.40170613303780556],[127,108,69,-0.4012106731534004],[127,108,70,-0.40101923048496246],[127,108,71,-0.40130286291241646],[127,108,72,-0.4029696434736252],[127,108,73,-0.40550991520285606],[127,108,74,-0.4074310474097729],[127,108,75,-0.4076435938477516],[127,108,76,-0.40564103052020073],[127,108,77,-0.4014480598270893],[127,108,78,-0.39608772471547127],[127,108,79,-0.39057307317852974],[127,109,64,-0.406640887260437],[127,109,65,-0.4092869460582733],[127,109,66,-0.4104355648159981],[127,109,67,-0.4102519489824772],[127,109,68,-0.40951863303780556],[127,109,69,-0.4090231731534004],[127,109,70,-0.40883173048496246],[127,109,71,-0.40911536291241646],[127,109,72,-0.4107821434736252],[127,109,73,-0.41332241520285606],[127,109,74,-0.4152435474097729],[127,109,75,-0.4154560938477516],[127,109,76,-0.41345353052020073],[127,109,77,-0.4092605598270893],[127,109,78,-0.40390022471547127],[127,109,79,-0.39838557317852974],[127,110,64,-0.414453387260437],[127,110,65,-0.4170994460582733],[127,110,66,-0.4182480648159981],[127,110,67,-0.4180644489824772],[127,110,68,-0.41733113303780556],[127,110,69,-0.4168356731534004],[127,110,70,-0.41664423048496246],[127,110,71,-0.41692786291241646],[127,110,72,-0.4185946434736252],[127,110,73,-0.42113491520285606],[127,110,74,-0.4230560474097729],[127,110,75,-0.4232685938477516],[127,110,76,-0.42126603052020073],[127,110,77,-0.4170730598270893],[127,110,78,-0.41171272471547127],[127,110,79,-0.40619807317852974],[127,111,64,-0.422265887260437],[127,111,65,-0.4249119460582733],[127,111,66,-0.4260605648159981],[127,111,67,-0.4258769489824772],[127,111,68,-0.42514363303780556],[127,111,69,-0.4246481731534004],[127,111,70,-0.42445673048496246],[127,111,71,-0.42474036291241646],[127,111,72,-0.4264071434736252],[127,111,73,-0.42894741520285606],[127,111,74,-0.4308685474097729],[127,111,75,-0.4310810938477516],[127,111,76,-0.42907853052020073],[127,111,77,-0.4248855598270893],[127,111,78,-0.41952522471547127],[127,111,79,-0.41401057317852974],[127,112,64,-0.430078387260437],[127,112,65,-0.4327244460582733],[127,112,66,-0.4338730648159981],[127,112,67,-0.4336894489824772],[127,112,68,-0.43295613303780556],[127,112,69,-0.4324606731534004],[127,112,70,-0.43226923048496246],[127,112,71,-0.43255286291241646],[127,112,72,-0.4342196434736252],[127,112,73,-0.43675991520285606],[127,112,74,-0.4386810474097729],[127,112,75,-0.4388935938477516],[127,112,76,-0.43689103052020073],[127,112,77,-0.4326980598270893],[127,112,78,-0.42733772471547127],[127,112,79,-0.42182307317852974],[127,113,64,-0.437890887260437],[127,113,65,-0.4405369460582733],[127,113,66,-0.4416855648159981],[127,113,67,-0.4415019489824772],[127,113,68,-0.44076863303780556],[127,113,69,-0.4402731731534004],[127,113,70,-0.44008173048496246],[127,113,71,-0.44036536291241646],[127,113,72,-0.4420321434736252],[127,113,73,-0.44457241520285606],[127,113,74,-0.4464935474097729],[127,113,75,-0.4467060938477516],[127,113,76,-0.44470353052020073],[127,113,77,-0.4405105598270893],[127,113,78,-0.43515022471547127],[127,113,79,-0.42963557317852974],[127,114,64,-0.445703387260437],[127,114,65,-0.4483494460582733],[127,114,66,-0.4494980648159981],[127,114,67,-0.4493144489824772],[127,114,68,-0.44858113303780556],[127,114,69,-0.4480856731534004],[127,114,70,-0.44789423048496246],[127,114,71,-0.44817786291241646],[127,114,72,-0.4498446434736252],[127,114,73,-0.45238491520285606],[127,114,74,-0.4543060474097729],[127,114,75,-0.4545185938477516],[127,114,76,-0.45251603052020073],[127,114,77,-0.4483230598270893],[127,114,78,-0.44296272471547127],[127,114,79,-0.43744807317852974],[127,115,64,-0.453515887260437],[127,115,65,-0.4561619460582733],[127,115,66,-0.4573105648159981],[127,115,67,-0.4571269489824772],[127,115,68,-0.45639363303780556],[127,115,69,-0.4558981731534004],[127,115,70,-0.45570673048496246],[127,115,71,-0.45599036291241646],[127,115,72,-0.4576571434736252],[127,115,73,-0.46019741520285606],[127,115,74,-0.4621185474097729],[127,115,75,-0.4623310938477516],[127,115,76,-0.46032853052020073],[127,115,77,-0.4561355598270893],[127,115,78,-0.45077522471547127],[127,115,79,-0.44526057317852974],[127,116,64,-0.461328387260437],[127,116,65,-0.4639744460582733],[127,116,66,-0.4651230648159981],[127,116,67,-0.4649394489824772],[127,116,68,-0.46420613303780556],[127,116,69,-0.4637106731534004],[127,116,70,-0.46351923048496246],[127,116,71,-0.46380286291241646],[127,116,72,-0.4654696434736252],[127,116,73,-0.46800991520285606],[127,116,74,-0.4699310474097729],[127,116,75,-0.4701435938477516],[127,116,76,-0.46814103052020073],[127,116,77,-0.4639480598270893],[127,116,78,-0.45858772471547127],[127,116,79,-0.45307307317852974],[127,117,64,-0.469140887260437],[127,117,65,-0.4717869460582733],[127,117,66,-0.4729355648159981],[127,117,67,-0.4727519489824772],[127,117,68,-0.47201863303780556],[127,117,69,-0.4715231731534004],[127,117,70,-0.47133173048496246],[127,117,71,-0.47161536291241646],[127,117,72,-0.4732821434736252],[127,117,73,-0.47582241520285606],[127,117,74,-0.4777435474097729],[127,117,75,-0.4779560938477516],[127,117,76,-0.47595353052020073],[127,117,77,-0.4717605598270893],[127,117,78,-0.46640022471547127],[127,117,79,-0.46088557317852974],[127,118,64,-0.476953387260437],[127,118,65,-0.4795994460582733],[127,118,66,-0.4807480648159981],[127,118,67,-0.4805644489824772],[127,118,68,-0.47983113303780556],[127,118,69,-0.4793356731534004],[127,118,70,-0.47914423048496246],[127,118,71,-0.47942786291241646],[127,118,72,-0.4810946434736252],[127,118,73,-0.48363491520285606],[127,118,74,-0.4855560474097729],[127,118,75,-0.4857685938477516],[127,118,76,-0.48376603052020073],[127,118,77,-0.4795730598270893],[127,118,78,-0.47421272471547127],[127,118,79,-0.46869807317852974],[127,119,64,-0.484765887260437],[127,119,65,-0.4874119460582733],[127,119,66,-0.4885605648159981],[127,119,67,-0.4883769489824772],[127,119,68,-0.48764363303780556],[127,119,69,-0.4871481731534004],[127,119,70,-0.48695673048496246],[127,119,71,-0.48724036291241646],[127,119,72,-0.4889071434736252],[127,119,73,-0.49144741520285606],[127,119,74,-0.4933685474097729],[127,119,75,-0.4935810938477516],[127,119,76,-0.49157853052020073],[127,119,77,-0.4873855598270893],[127,119,78,-0.48202522471547127],[127,119,79,-0.47651057317852974],[127,120,64,-0.492578387260437],[127,120,65,-0.4952244460582733],[127,120,66,-0.4963730648159981],[127,120,67,-0.4961894489824772],[127,120,68,-0.49545613303780556],[127,120,69,-0.4949606731534004],[127,120,70,-0.49476923048496246],[127,120,71,-0.49505286291241646],[127,120,72,-0.4967196434736252],[127,120,73,-0.49925991520285606],[127,120,74,-0.5011810474097729],[127,120,75,-0.5013935938477516],[127,120,76,-0.49939103052020073],[127,120,77,-0.4951980598270893],[127,120,78,-0.48983772471547127],[127,120,79,-0.48432307317852974],[127,121,64,-0.500390887260437],[127,121,65,-0.5030369460582733],[127,121,66,-0.5041855648159981],[127,121,67,-0.5040019489824772],[127,121,68,-0.5032686330378056],[127,121,69,-0.5027731731534004],[127,121,70,-0.5025817304849625],[127,121,71,-0.5028653629124165],[127,121,72,-0.5045321434736252],[127,121,73,-0.5070724152028561],[127,121,74,-0.5089935474097729],[127,121,75,-0.5092060938477516],[127,121,76,-0.5072035305202007],[127,121,77,-0.5030105598270893],[127,121,78,-0.49765022471547127],[127,121,79,-0.49213557317852974],[127,122,64,-0.508203387260437],[127,122,65,-0.5108494460582733],[127,122,66,-0.5119980648159981],[127,122,67,-0.5118144489824772],[127,122,68,-0.5110811330378056],[127,122,69,-0.5105856731534004],[127,122,70,-0.5103942304849625],[127,122,71,-0.5106778629124165],[127,122,72,-0.5123446434736252],[127,122,73,-0.5148849152028561],[127,122,74,-0.5168060474097729],[127,122,75,-0.5170185938477516],[127,122,76,-0.5150160305202007],[127,122,77,-0.5108230598270893],[127,122,78,-0.5054627247154713],[127,122,79,-0.49994807317852974],[127,123,64,-0.516015887260437],[127,123,65,-0.5186619460582733],[127,123,66,-0.5198105648159981],[127,123,67,-0.5196269489824772],[127,123,68,-0.5188936330378056],[127,123,69,-0.5183981731534004],[127,123,70,-0.5182067304849625],[127,123,71,-0.5184903629124165],[127,123,72,-0.5201571434736252],[127,123,73,-0.5226974152028561],[127,123,74,-0.5246185474097729],[127,123,75,-0.5248310938477516],[127,123,76,-0.5228285305202007],[127,123,77,-0.5186355598270893],[127,123,78,-0.5132752247154713],[127,123,79,-0.5077605731785297],[127,124,64,-0.523828387260437],[127,124,65,-0.5264744460582733],[127,124,66,-0.5276230648159981],[127,124,67,-0.5274394489824772],[127,124,68,-0.5267061330378056],[127,124,69,-0.5262106731534004],[127,124,70,-0.5260192304849625],[127,124,71,-0.5263028629124165],[127,124,72,-0.5279696434736252],[127,124,73,-0.5305099152028561],[127,124,74,-0.5324310474097729],[127,124,75,-0.5326435938477516],[127,124,76,-0.5306410305202007],[127,124,77,-0.5264480598270893],[127,124,78,-0.5210877247154713],[127,124,79,-0.5155730731785297],[127,125,64,-0.531640887260437],[127,125,65,-0.5342869460582733],[127,125,66,-0.5354355648159981],[127,125,67,-0.5352519489824772],[127,125,68,-0.5345186330378056],[127,125,69,-0.5340231731534004],[127,125,70,-0.5338317304849625],[127,125,71,-0.5341153629124165],[127,125,72,-0.5357821434736252],[127,125,73,-0.5383224152028561],[127,125,74,-0.5402435474097729],[127,125,75,-0.5404560938477516],[127,125,76,-0.5384535305202007],[127,125,77,-0.5342605598270893],[127,125,78,-0.5289002247154713],[127,125,79,-0.5233855731785297],[127,126,64,-0.539453387260437],[127,126,65,-0.5420994460582733],[127,126,66,-0.5432480648159981],[127,126,67,-0.5430644489824772],[127,126,68,-0.5423311330378056],[127,126,69,-0.5418356731534004],[127,126,70,-0.5416442304849625],[127,126,71,-0.5419278629124165],[127,126,72,-0.5435946434736252],[127,126,73,-0.5461349152028561],[127,126,74,-0.5480560474097729],[127,126,75,-0.5482685938477516],[127,126,76,-0.5462660305202007],[127,126,77,-0.5420730598270893],[127,126,78,-0.5367127247154713],[127,126,79,-0.5311980731785297],[127,127,64,-0.547265887260437],[127,127,65,-0.5499119460582733],[127,127,66,-0.5510605648159981],[127,127,67,-0.5508769489824772],[127,127,68,-0.5501436330378056],[127,127,69,-0.5496481731534004],[127,127,70,-0.5494567304849625],[127,127,71,-0.5497403629124165],[127,127,72,-0.5514071434736252],[127,127,73,-0.5539474152028561],[127,127,74,-0.5558685474097729],[127,127,75,-0.5560810938477516],[127,127,76,-0.5540785305202007],[127,127,77,-0.5498855598270893],[127,127,78,-0.5445252247154713],[127,127,79,-0.5390105731785297],[127,128,64,-0.555078387260437],[127,128,65,-0.5577244460582733],[127,128,66,-0.5588730648159981],[127,128,67,-0.5586894489824772],[127,128,68,-0.5579561330378056],[127,128,69,-0.5574606731534004],[127,128,70,-0.5572692304849625],[127,128,71,-0.5575528629124165],[127,128,72,-0.5592196434736252],[127,128,73,-0.5617599152028561],[127,128,74,-0.5636810474097729],[127,128,75,-0.5638935938477516],[127,128,76,-0.5618910305202007],[127,128,77,-0.5576980598270893],[127,128,78,-0.5523377247154713],[127,128,79,-0.5468230731785297],[127,129,64,-0.562890887260437],[127,129,65,-0.5655369460582733],[127,129,66,-0.5666855648159981],[127,129,67,-0.5665019489824772],[127,129,68,-0.5657686330378056],[127,129,69,-0.5652731731534004],[127,129,70,-0.5650817304849625],[127,129,71,-0.5653653629124165],[127,129,72,-0.5670321434736252],[127,129,73,-0.5695724152028561],[127,129,74,-0.5714935474097729],[127,129,75,-0.5717060938477516],[127,129,76,-0.5697035305202007],[127,129,77,-0.5655105598270893],[127,129,78,-0.5601502247154713],[127,129,79,-0.5546355731785297],[127,130,64,-0.570703387260437],[127,130,65,-0.5733494460582733],[127,130,66,-0.5744980648159981],[127,130,67,-0.5743144489824772],[127,130,68,-0.5735811330378056],[127,130,69,-0.5730856731534004],[127,130,70,-0.5728942304849625],[127,130,71,-0.5731778629124165],[127,130,72,-0.5748446434736252],[127,130,73,-0.5773849152028561],[127,130,74,-0.5793060474097729],[127,130,75,-0.5795185938477516],[127,130,76,-0.5775160305202007],[127,130,77,-0.5733230598270893],[127,130,78,-0.5679627247154713],[127,130,79,-0.5624480731785297],[127,131,64,-0.578515887260437],[127,131,65,-0.5811619460582733],[127,131,66,-0.5823105648159981],[127,131,67,-0.5821269489824772],[127,131,68,-0.5813936330378056],[127,131,69,-0.5808981731534004],[127,131,70,-0.5807067304849625],[127,131,71,-0.5809903629124165],[127,131,72,-0.5826571434736252],[127,131,73,-0.5851974152028561],[127,131,74,-0.5871185474097729],[127,131,75,-0.5873310938477516],[127,131,76,-0.5853285305202007],[127,131,77,-0.5811355598270893],[127,131,78,-0.5757752247154713],[127,131,79,-0.5702605731785297],[127,132,64,-0.586328387260437],[127,132,65,-0.5889744460582733],[127,132,66,-0.5901230648159981],[127,132,67,-0.5899394489824772],[127,132,68,-0.5892061330378056],[127,132,69,-0.5887106731534004],[127,132,70,-0.5885192304849625],[127,132,71,-0.5888028629124165],[127,132,72,-0.5904696434736252],[127,132,73,-0.5930099152028561],[127,132,74,-0.5949310474097729],[127,132,75,-0.5951435938477516],[127,132,76,-0.5931410305202007],[127,132,77,-0.5889480598270893],[127,132,78,-0.5835877247154713],[127,132,79,-0.5780730731785297],[127,133,64,-0.594140887260437],[127,133,65,-0.5967869460582733],[127,133,66,-0.5979355648159981],[127,133,67,-0.5977519489824772],[127,133,68,-0.5970186330378056],[127,133,69,-0.5965231731534004],[127,133,70,-0.5963317304849625],[127,133,71,-0.5966153629124165],[127,133,72,-0.5982821434736252],[127,133,73,-0.6008224152028561],[127,133,74,-0.6027435474097729],[127,133,75,-0.6029560938477516],[127,133,76,-0.6009535305202007],[127,133,77,-0.5967605598270893],[127,133,78,-0.5914002247154713],[127,133,79,-0.5858855731785297],[127,134,64,-0.601953387260437],[127,134,65,-0.6045994460582733],[127,134,66,-0.6057480648159981],[127,134,67,-0.6055644489824772],[127,134,68,-0.6048311330378056],[127,134,69,-0.6043356731534004],[127,134,70,-0.6041442304849625],[127,134,71,-0.6044278629124165],[127,134,72,-0.6060946434736252],[127,134,73,-0.6086349152028561],[127,134,74,-0.6105560474097729],[127,134,75,-0.6107685938477516],[127,134,76,-0.6087660305202007],[127,134,77,-0.6045730598270893],[127,134,78,-0.5992127247154713],[127,134,79,-0.5936980731785297],[127,135,64,-0.609765887260437],[127,135,65,-0.6124119460582733],[127,135,66,-0.6135605648159981],[127,135,67,-0.6133769489824772],[127,135,68,-0.6126436330378056],[127,135,69,-0.6121481731534004],[127,135,70,-0.6119567304849625],[127,135,71,-0.6122403629124165],[127,135,72,-0.6139071434736252],[127,135,73,-0.6164474152028561],[127,135,74,-0.6183685474097729],[127,135,75,-0.6185810938477516],[127,135,76,-0.6165785305202007],[127,135,77,-0.6123855598270893],[127,135,78,-0.6070252247154713],[127,135,79,-0.6015105731785297],[127,136,64,-0.617578387260437],[127,136,65,-0.6202244460582733],[127,136,66,-0.6213730648159981],[127,136,67,-0.6211894489824772],[127,136,68,-0.6204561330378056],[127,136,69,-0.6199606731534004],[127,136,70,-0.6197692304849625],[127,136,71,-0.6200528629124165],[127,136,72,-0.6217196434736252],[127,136,73,-0.6242599152028561],[127,136,74,-0.6261810474097729],[127,136,75,-0.6263935938477516],[127,136,76,-0.6243910305202007],[127,136,77,-0.6201980598270893],[127,136,78,-0.6148377247154713],[127,136,79,-0.6093230731785297],[127,137,64,-0.625390887260437],[127,137,65,-0.6280369460582733],[127,137,66,-0.6291855648159981],[127,137,67,-0.6290019489824772],[127,137,68,-0.6282686330378056],[127,137,69,-0.6277731731534004],[127,137,70,-0.6275817304849625],[127,137,71,-0.6278653629124165],[127,137,72,-0.6295321434736252],[127,137,73,-0.6320724152028561],[127,137,74,-0.6339935474097729],[127,137,75,-0.6342060938477516],[127,137,76,-0.6322035305202007],[127,137,77,-0.6280105598270893],[127,137,78,-0.6226502247154713],[127,137,79,-0.6171355731785297],[127,138,64,-0.633203387260437],[127,138,65,-0.6358494460582733],[127,138,66,-0.6369980648159981],[127,138,67,-0.6368144489824772],[127,138,68,-0.6360811330378056],[127,138,69,-0.6355856731534004],[127,138,70,-0.6353942304849625],[127,138,71,-0.6356778629124165],[127,138,72,-0.6373446434736252],[127,138,73,-0.6398849152028561],[127,138,74,-0.6418060474097729],[127,138,75,-0.6420185938477516],[127,138,76,-0.6400160305202007],[127,138,77,-0.6358230598270893],[127,138,78,-0.6304627247154713],[127,138,79,-0.6249480731785297],[127,139,64,-0.641015887260437],[127,139,65,-0.6436619460582733],[127,139,66,-0.6448105648159981],[127,139,67,-0.6446269489824772],[127,139,68,-0.6438936330378056],[127,139,69,-0.6433981731534004],[127,139,70,-0.6432067304849625],[127,139,71,-0.6434903629124165],[127,139,72,-0.6451571434736252],[127,139,73,-0.6476974152028561],[127,139,74,-0.6496185474097729],[127,139,75,-0.6498310938477516],[127,139,76,-0.6478285305202007],[127,139,77,-0.6436355598270893],[127,139,78,-0.6382752247154713],[127,139,79,-0.6327605731785297],[127,140,64,-0.648828387260437],[127,140,65,-0.6514744460582733],[127,140,66,-0.6526230648159981],[127,140,67,-0.6524394489824772],[127,140,68,-0.6517061330378056],[127,140,69,-0.6512106731534004],[127,140,70,-0.6510192304849625],[127,140,71,-0.6513028629124165],[127,140,72,-0.6529696434736252],[127,140,73,-0.6555099152028561],[127,140,74,-0.6574310474097729],[127,140,75,-0.6576435938477516],[127,140,76,-0.6556410305202007],[127,140,77,-0.6514480598270893],[127,140,78,-0.6460877247154713],[127,140,79,-0.6405730731785297],[127,141,64,-0.656640887260437],[127,141,65,-0.6592869460582733],[127,141,66,-0.6604355648159981],[127,141,67,-0.6602519489824772],[127,141,68,-0.6595186330378056],[127,141,69,-0.6590231731534004],[127,141,70,-0.6588317304849625],[127,141,71,-0.6591153629124165],[127,141,72,-0.6607821434736252],[127,141,73,-0.6633224152028561],[127,141,74,-0.6652435474097729],[127,141,75,-0.6654560938477516],[127,141,76,-0.6634535305202007],[127,141,77,-0.6592605598270893],[127,141,78,-0.6539002247154713],[127,141,79,-0.6483855731785297],[127,142,64,-0.664453387260437],[127,142,65,-0.6670994460582733],[127,142,66,-0.6682480648159981],[127,142,67,-0.6680644489824772],[127,142,68,-0.6673311330378056],[127,142,69,-0.6668356731534004],[127,142,70,-0.6666442304849625],[127,142,71,-0.6669278629124165],[127,142,72,-0.6685946434736252],[127,142,73,-0.6711349152028561],[127,142,74,-0.6730560474097729],[127,142,75,-0.6732685938477516],[127,142,76,-0.6712660305202007],[127,142,77,-0.6670730598270893],[127,142,78,-0.6617127247154713],[127,142,79,-0.6561980731785297],[127,143,64,-0.672265887260437],[127,143,65,-0.6749119460582733],[127,143,66,-0.6760605648159981],[127,143,67,-0.6758769489824772],[127,143,68,-0.6751436330378056],[127,143,69,-0.6746481731534004],[127,143,70,-0.6744567304849625],[127,143,71,-0.6747403629124165],[127,143,72,-0.6764071434736252],[127,143,73,-0.6789474152028561],[127,143,74,-0.6808685474097729],[127,143,75,-0.6810810938477516],[127,143,76,-0.6790785305202007],[127,143,77,-0.6748855598270893],[127,143,78,-0.6695252247154713],[127,143,79,-0.6640105731785297],[127,144,64,-0.680078387260437],[127,144,65,-0.6827244460582733],[127,144,66,-0.6838730648159981],[127,144,67,-0.6836894489824772],[127,144,68,-0.6829561330378056],[127,144,69,-0.6824606731534004],[127,144,70,-0.6822692304849625],[127,144,71,-0.6825528629124165],[127,144,72,-0.6842196434736252],[127,144,73,-0.6867599152028561],[127,144,74,-0.6886810474097729],[127,144,75,-0.6888935938477516],[127,144,76,-0.6868910305202007],[127,144,77,-0.6826980598270893],[127,144,78,-0.6773377247154713],[127,144,79,-0.6718230731785297],[127,145,64,-0.687890887260437],[127,145,65,-0.6905369460582733],[127,145,66,-0.6916855648159981],[127,145,67,-0.6915019489824772],[127,145,68,-0.6907686330378056],[127,145,69,-0.6902731731534004],[127,145,70,-0.6900817304849625],[127,145,71,-0.6903653629124165],[127,145,72,-0.6920321434736252],[127,145,73,-0.6945724152028561],[127,145,74,-0.6964935474097729],[127,145,75,-0.6967060938477516],[127,145,76,-0.6947035305202007],[127,145,77,-0.6905105598270893],[127,145,78,-0.6851502247154713],[127,145,79,-0.6796355731785297],[127,146,64,-0.695703387260437],[127,146,65,-0.6983494460582733],[127,146,66,-0.6994980648159981],[127,146,67,-0.6993144489824772],[127,146,68,-0.6985811330378056],[127,146,69,-0.6980856731534004],[127,146,70,-0.6978942304849625],[127,146,71,-0.6981778629124165],[127,146,72,-0.6998446434736252],[127,146,73,-0.7023849152028561],[127,146,74,-0.7043060474097729],[127,146,75,-0.7045185938477516],[127,146,76,-0.7025160305202007],[127,146,77,-0.6983230598270893],[127,146,78,-0.6929627247154713],[127,146,79,-0.6874480731785297],[127,147,64,-0.703515887260437],[127,147,65,-0.7061619460582733],[127,147,66,-0.7073105648159981],[127,147,67,-0.7071269489824772],[127,147,68,-0.7063936330378056],[127,147,69,-0.7058981731534004],[127,147,70,-0.7057067304849625],[127,147,71,-0.7059903629124165],[127,147,72,-0.7076571434736252],[127,147,73,-0.7101974152028561],[127,147,74,-0.7121185474097729],[127,147,75,-0.7123310938477516],[127,147,76,-0.7103285305202007],[127,147,77,-0.7061355598270893],[127,147,78,-0.7007752247154713],[127,147,79,-0.6952605731785297],[127,148,64,-0.711328387260437],[127,148,65,-0.7139744460582733],[127,148,66,-0.7151230648159981],[127,148,67,-0.7149394489824772],[127,148,68,-0.7142061330378056],[127,148,69,-0.7137106731534004],[127,148,70,-0.7135192304849625],[127,148,71,-0.7138028629124165],[127,148,72,-0.7154696434736252],[127,148,73,-0.7180099152028561],[127,148,74,-0.7199310474097729],[127,148,75,-0.7201435938477516],[127,148,76,-0.7181410305202007],[127,148,77,-0.7139480598270893],[127,148,78,-0.7085877247154713],[127,148,79,-0.7030730731785297],[127,149,64,-0.719140887260437],[127,149,65,-0.7217869460582733],[127,149,66,-0.7229355648159981],[127,149,67,-0.7227519489824772],[127,149,68,-0.7220186330378056],[127,149,69,-0.7215231731534004],[127,149,70,-0.7213317304849625],[127,149,71,-0.7216153629124165],[127,149,72,-0.7232821434736252],[127,149,73,-0.7258224152028561],[127,149,74,-0.7277435474097729],[127,149,75,-0.7279560938477516],[127,149,76,-0.7259535305202007],[127,149,77,-0.7217605598270893],[127,149,78,-0.7164002247154713],[127,149,79,-0.7108855731785297],[127,150,64,-0.726953387260437],[127,150,65,-0.7295994460582733],[127,150,66,-0.7307480648159981],[127,150,67,-0.7305644489824772],[127,150,68,-0.7298311330378056],[127,150,69,-0.7293356731534004],[127,150,70,-0.7291442304849625],[127,150,71,-0.7294278629124165],[127,150,72,-0.7310946434736252],[127,150,73,-0.7336349152028561],[127,150,74,-0.7355560474097729],[127,150,75,-0.7357685938477516],[127,150,76,-0.7337660305202007],[127,150,77,-0.7295730598270893],[127,150,78,-0.7242127247154713],[127,150,79,-0.7186980731785297],[127,151,64,-0.734765887260437],[127,151,65,-0.7374119460582733],[127,151,66,-0.7385605648159981],[127,151,67,-0.7383769489824772],[127,151,68,-0.7376436330378056],[127,151,69,-0.7371481731534004],[127,151,70,-0.7369567304849625],[127,151,71,-0.7372403629124165],[127,151,72,-0.7389071434736252],[127,151,73,-0.7414474152028561],[127,151,74,-0.7433685474097729],[127,151,75,-0.7435810938477516],[127,151,76,-0.7415785305202007],[127,151,77,-0.7373855598270893],[127,151,78,-0.7320252247154713],[127,151,79,-0.7265105731785297],[127,152,64,-0.742578387260437],[127,152,65,-0.7452244460582733],[127,152,66,-0.7463730648159981],[127,152,67,-0.7461894489824772],[127,152,68,-0.7454561330378056],[127,152,69,-0.7449606731534004],[127,152,70,-0.7447692304849625],[127,152,71,-0.7450528629124165],[127,152,72,-0.7467196434736252],[127,152,73,-0.7492599152028561],[127,152,74,-0.7511810474097729],[127,152,75,-0.7513935938477516],[127,152,76,-0.7493910305202007],[127,152,77,-0.7451980598270893],[127,152,78,-0.7398377247154713],[127,152,79,-0.7343230731785297],[127,153,64,-0.750390887260437],[127,153,65,-0.7530369460582733],[127,153,66,-0.7541855648159981],[127,153,67,-0.7540019489824772],[127,153,68,-0.7532686330378056],[127,153,69,-0.7527731731534004],[127,153,70,-0.7525817304849625],[127,153,71,-0.7528653629124165],[127,153,72,-0.7545321434736252],[127,153,73,-0.7570724152028561],[127,153,74,-0.7589935474097729],[127,153,75,-0.7592060938477516],[127,153,76,-0.7572035305202007],[127,153,77,-0.7530105598270893],[127,153,78,-0.7476502247154713],[127,153,79,-0.7421355731785297],[127,154,64,-0.758203387260437],[127,154,65,-0.7608494460582733],[127,154,66,-0.7619980648159981],[127,154,67,-0.7618144489824772],[127,154,68,-0.7610811330378056],[127,154,69,-0.7605856731534004],[127,154,70,-0.7603942304849625],[127,154,71,-0.7606778629124165],[127,154,72,-0.7623446434736252],[127,154,73,-0.7648849152028561],[127,154,74,-0.7668060474097729],[127,154,75,-0.7670185938477516],[127,154,76,-0.7650160305202007],[127,154,77,-0.7608230598270893],[127,154,78,-0.7554627247154713],[127,154,79,-0.7499480731785297],[127,155,64,-0.766015887260437],[127,155,65,-0.7686619460582733],[127,155,66,-0.7698105648159981],[127,155,67,-0.7696269489824772],[127,155,68,-0.7688936330378056],[127,155,69,-0.7683981731534004],[127,155,70,-0.7682067304849625],[127,155,71,-0.7684903629124165],[127,155,72,-0.7701571434736252],[127,155,73,-0.7726974152028561],[127,155,74,-0.7746185474097729],[127,155,75,-0.7748310938477516],[127,155,76,-0.7728285305202007],[127,155,77,-0.7686355598270893],[127,155,78,-0.7632752247154713],[127,155,79,-0.7577605731785297],[127,156,64,-0.773828387260437],[127,156,65,-0.7764744460582733],[127,156,66,-0.7776230648159981],[127,156,67,-0.7774394489824772],[127,156,68,-0.7767061330378056],[127,156,69,-0.7762106731534004],[127,156,70,-0.7760192304849625],[127,156,71,-0.7763028629124165],[127,156,72,-0.7779696434736252],[127,156,73,-0.7805099152028561],[127,156,74,-0.7824310474097729],[127,156,75,-0.7826435938477516],[127,156,76,-0.7806410305202007],[127,156,77,-0.7764480598270893],[127,156,78,-0.7710877247154713],[127,156,79,-0.7655730731785297],[127,157,64,-0.781640887260437],[127,157,65,-0.7842869460582733],[127,157,66,-0.7854355648159981],[127,157,67,-0.7852519489824772],[127,157,68,-0.7845186330378056],[127,157,69,-0.7840231731534004],[127,157,70,-0.7838317304849625],[127,157,71,-0.7841153629124165],[127,157,72,-0.7857821434736252],[127,157,73,-0.7883224152028561],[127,157,74,-0.7902435474097729],[127,157,75,-0.7904560938477516],[127,157,76,-0.7884535305202007],[127,157,77,-0.7842605598270893],[127,157,78,-0.7789002247154713],[127,157,79,-0.7733855731785297],[127,158,64,-0.789453387260437],[127,158,65,-0.7920994460582733],[127,158,66,-0.7932480648159981],[127,158,67,-0.7930644489824772],[127,158,68,-0.7923311330378056],[127,158,69,-0.7918356731534004],[127,158,70,-0.7916442304849625],[127,158,71,-0.7919278629124165],[127,158,72,-0.7935946434736252],[127,158,73,-0.7961349152028561],[127,158,74,-0.7980560474097729],[127,158,75,-0.7982685938477516],[127,158,76,-0.7962660305202007],[127,158,77,-0.7920730598270893],[127,158,78,-0.7867127247154713],[127,158,79,-0.7811980731785297],[127,159,64,-0.797265887260437],[127,159,65,-0.7999119460582733],[127,159,66,-0.8010605648159981],[127,159,67,-0.8008769489824772],[127,159,68,-0.8001436330378056],[127,159,69,-0.7996481731534004],[127,159,70,-0.7994567304849625],[127,159,71,-0.7997403629124165],[127,159,72,-0.8014071434736252],[127,159,73,-0.8039474152028561],[127,159,74,-0.8058685474097729],[127,159,75,-0.8060810938477516],[127,159,76,-0.8040785305202007],[127,159,77,-0.7998855598270893],[127,159,78,-0.7945252247154713],[127,159,79,-0.7890105731785297],[127,160,64,-0.805078387260437],[127,160,65,-0.8077244460582733],[127,160,66,-0.8088730648159981],[127,160,67,-0.8086894489824772],[127,160,68,-0.8079561330378056],[127,160,69,-0.8074606731534004],[127,160,70,-0.8072692304849625],[127,160,71,-0.8075528629124165],[127,160,72,-0.8092196434736252],[127,160,73,-0.8117599152028561],[127,160,74,-0.8136810474097729],[127,160,75,-0.8138935938477516],[127,160,76,-0.8118910305202007],[127,160,77,-0.8076980598270893],[127,160,78,-0.8023377247154713],[127,160,79,-0.7968230731785297],[127,161,64,-0.812890887260437],[127,161,65,-0.8155369460582733],[127,161,66,-0.8166855648159981],[127,161,67,-0.8165019489824772],[127,161,68,-0.8157686330378056],[127,161,69,-0.8152731731534004],[127,161,70,-0.8150817304849625],[127,161,71,-0.8153653629124165],[127,161,72,-0.8170321434736252],[127,161,73,-0.8195724152028561],[127,161,74,-0.8214935474097729],[127,161,75,-0.8217060938477516],[127,161,76,-0.8197035305202007],[127,161,77,-0.8155105598270893],[127,161,78,-0.8101502247154713],[127,161,79,-0.8046355731785297],[127,162,64,-0.820703387260437],[127,162,65,-0.8233494460582733],[127,162,66,-0.8244980648159981],[127,162,67,-0.8243144489824772],[127,162,68,-0.8235811330378056],[127,162,69,-0.8230856731534004],[127,162,70,-0.8228942304849625],[127,162,71,-0.8231778629124165],[127,162,72,-0.8248446434736252],[127,162,73,-0.8273849152028561],[127,162,74,-0.8293060474097729],[127,162,75,-0.8295185938477516],[127,162,76,-0.8275160305202007],[127,162,77,-0.8233230598270893],[127,162,78,-0.8179627247154713],[127,162,79,-0.8124480731785297],[127,163,64,-0.828515887260437],[127,163,65,-0.8311619460582733],[127,163,66,-0.8323105648159981],[127,163,67,-0.8321269489824772],[127,163,68,-0.8313936330378056],[127,163,69,-0.8308981731534004],[127,163,70,-0.8307067304849625],[127,163,71,-0.8309903629124165],[127,163,72,-0.8326571434736252],[127,163,73,-0.8351974152028561],[127,163,74,-0.8371185474097729],[127,163,75,-0.8373310938477516],[127,163,76,-0.8353285305202007],[127,163,77,-0.8311355598270893],[127,163,78,-0.8257752247154713],[127,163,79,-0.8202605731785297],[127,164,64,-0.836328387260437],[127,164,65,-0.8389744460582733],[127,164,66,-0.8401230648159981],[127,164,67,-0.8399394489824772],[127,164,68,-0.8392061330378056],[127,164,69,-0.8387106731534004],[127,164,70,-0.8385192304849625],[127,164,71,-0.8388028629124165],[127,164,72,-0.8404696434736252],[127,164,73,-0.8430099152028561],[127,164,74,-0.8449310474097729],[127,164,75,-0.8451435938477516],[127,164,76,-0.8431410305202007],[127,164,77,-0.8389480598270893],[127,164,78,-0.8335877247154713],[127,164,79,-0.8280730731785297],[127,165,64,-0.844140887260437],[127,165,65,-0.8467869460582733],[127,165,66,-0.8479355648159981],[127,165,67,-0.8477519489824772],[127,165,68,-0.8470186330378056],[127,165,69,-0.8465231731534004],[127,165,70,-0.8463317304849625],[127,165,71,-0.8466153629124165],[127,165,72,-0.8482821434736252],[127,165,73,-0.8508224152028561],[127,165,74,-0.8527435474097729],[127,165,75,-0.8529560938477516],[127,165,76,-0.8509535305202007],[127,165,77,-0.8467605598270893],[127,165,78,-0.8414002247154713],[127,165,79,-0.8358855731785297],[127,166,64,-0.851953387260437],[127,166,65,-0.8545994460582733],[127,166,66,-0.8557480648159981],[127,166,67,-0.8555644489824772],[127,166,68,-0.8548311330378056],[127,166,69,-0.8543356731534004],[127,166,70,-0.8541442304849625],[127,166,71,-0.8544278629124165],[127,166,72,-0.8560946434736252],[127,166,73,-0.8586349152028561],[127,166,74,-0.8605560474097729],[127,166,75,-0.8607685938477516],[127,166,76,-0.8587660305202007],[127,166,77,-0.8545730598270893],[127,166,78,-0.8492127247154713],[127,166,79,-0.8436980731785297],[127,167,64,-0.859765887260437],[127,167,65,-0.8624119460582733],[127,167,66,-0.8635605648159981],[127,167,67,-0.8633769489824772],[127,167,68,-0.8626436330378056],[127,167,69,-0.8621481731534004],[127,167,70,-0.8619567304849625],[127,167,71,-0.8622403629124165],[127,167,72,-0.8639071434736252],[127,167,73,-0.8664474152028561],[127,167,74,-0.8683685474097729],[127,167,75,-0.8685810938477516],[127,167,76,-0.8665785305202007],[127,167,77,-0.8623855598270893],[127,167,78,-0.8570252247154713],[127,167,79,-0.8515105731785297],[127,168,64,-0.867578387260437],[127,168,65,-0.8702244460582733],[127,168,66,-0.8713730648159981],[127,168,67,-0.8711894489824772],[127,168,68,-0.8704561330378056],[127,168,69,-0.8699606731534004],[127,168,70,-0.8697692304849625],[127,168,71,-0.8700528629124165],[127,168,72,-0.8717196434736252],[127,168,73,-0.8742599152028561],[127,168,74,-0.8761810474097729],[127,168,75,-0.8763935938477516],[127,168,76,-0.8743910305202007],[127,168,77,-0.8701980598270893],[127,168,78,-0.8648377247154713],[127,168,79,-0.8593230731785297],[127,169,64,-0.875390887260437],[127,169,65,-0.8780369460582733],[127,169,66,-0.8791855648159981],[127,169,67,-0.8790019489824772],[127,169,68,-0.8782686330378056],[127,169,69,-0.8777731731534004],[127,169,70,-0.8775817304849625],[127,169,71,-0.8778653629124165],[127,169,72,-0.8795321434736252],[127,169,73,-0.8820724152028561],[127,169,74,-0.8839935474097729],[127,169,75,-0.8842060938477516],[127,169,76,-0.8822035305202007],[127,169,77,-0.8780105598270893],[127,169,78,-0.8726502247154713],[127,169,79,-0.8671355731785297],[127,170,64,-0.883203387260437],[127,170,65,-0.8858494460582733],[127,170,66,-0.8869980648159981],[127,170,67,-0.8868144489824772],[127,170,68,-0.8860811330378056],[127,170,69,-0.8855856731534004],[127,170,70,-0.8853942304849625],[127,170,71,-0.8856778629124165],[127,170,72,-0.8873446434736252],[127,170,73,-0.8898849152028561],[127,170,74,-0.8918060474097729],[127,170,75,-0.8920185938477516],[127,170,76,-0.8900160305202007],[127,170,77,-0.8858230598270893],[127,170,78,-0.8804627247154713],[127,170,79,-0.8749480731785297],[127,171,64,-0.891015887260437],[127,171,65,-0.8936619460582733],[127,171,66,-0.8948105648159981],[127,171,67,-0.8946269489824772],[127,171,68,-0.8938936330378056],[127,171,69,-0.8933981731534004],[127,171,70,-0.8932067304849625],[127,171,71,-0.8934903629124165],[127,171,72,-0.8951571434736252],[127,171,73,-0.8976974152028561],[127,171,74,-0.8996185474097729],[127,171,75,-0.8998310938477516],[127,171,76,-0.8978285305202007],[127,171,77,-0.8936355598270893],[127,171,78,-0.8882752247154713],[127,171,79,-0.8827605731785297],[127,172,64,-0.898828387260437],[127,172,65,-0.9014744460582733],[127,172,66,-0.9026230648159981],[127,172,67,-0.9024394489824772],[127,172,68,-0.9017061330378056],[127,172,69,-0.9012106731534004],[127,172,70,-0.9010192304849625],[127,172,71,-0.9013028629124165],[127,172,72,-0.9029696434736252],[127,172,73,-0.9055099152028561],[127,172,74,-0.9074310474097729],[127,172,75,-0.9076435938477516],[127,172,76,-0.9056410305202007],[127,172,77,-0.9014480598270893],[127,172,78,-0.8960877247154713],[127,172,79,-0.8905730731785297],[127,173,64,-0.906640887260437],[127,173,65,-0.9092869460582733],[127,173,66,-0.9104355648159981],[127,173,67,-0.9102519489824772],[127,173,68,-0.9095186330378056],[127,173,69,-0.9090231731534004],[127,173,70,-0.9088317304849625],[127,173,71,-0.9091153629124165],[127,173,72,-0.9107821434736252],[127,173,73,-0.9133224152028561],[127,173,74,-0.9152435474097729],[127,173,75,-0.9154560938477516],[127,173,76,-0.9134535305202007],[127,173,77,-0.9092605598270893],[127,173,78,-0.9039002247154713],[127,173,79,-0.8983855731785297],[127,174,64,-0.914453387260437],[127,174,65,-0.9170994460582733],[127,174,66,-0.9182480648159981],[127,174,67,-0.9180644489824772],[127,174,68,-0.9173311330378056],[127,174,69,-0.9168356731534004],[127,174,70,-0.9166442304849625],[127,174,71,-0.9169278629124165],[127,174,72,-0.9185946434736252],[127,174,73,-0.9211349152028561],[127,174,74,-0.9230560474097729],[127,174,75,-0.9232685938477516],[127,174,76,-0.9212660305202007],[127,174,77,-0.9170730598270893],[127,174,78,-0.9117127247154713],[127,174,79,-0.9061980731785297],[127,175,64,-0.922265887260437],[127,175,65,-0.9249119460582733],[127,175,66,-0.9260605648159981],[127,175,67,-0.9258769489824772],[127,175,68,-0.9251436330378056],[127,175,69,-0.9246481731534004],[127,175,70,-0.9244567304849625],[127,175,71,-0.9247403629124165],[127,175,72,-0.9264071434736252],[127,175,73,-0.9289474152028561],[127,175,74,-0.9308685474097729],[127,175,75,-0.9310810938477516],[127,175,76,-0.9290785305202007],[127,175,77,-0.9248855598270893],[127,175,78,-0.9195252247154713],[127,175,79,-0.9140105731785297],[127,176,64,-0.930078387260437],[127,176,65,-0.9327244460582733],[127,176,66,-0.9338730648159981],[127,176,67,-0.9336894489824772],[127,176,68,-0.9329561330378056],[127,176,69,-0.9324606731534004],[127,176,70,-0.9322692304849625],[127,176,71,-0.9325528629124165],[127,176,72,-0.9342196434736252],[127,176,73,-0.9367599152028561],[127,176,74,-0.9386810474097729],[127,176,75,-0.9388935938477516],[127,176,76,-0.9368910305202007],[127,176,77,-0.9326980598270893],[127,176,78,-0.9273377247154713],[127,176,79,-0.9218230731785297],[127,177,64,-0.937890887260437],[127,177,65,-0.9405369460582733],[127,177,66,-0.9416855648159981],[127,177,67,-0.9415019489824772],[127,177,68,-0.9407686330378056],[127,177,69,-0.9402731731534004],[127,177,70,-0.9400817304849625],[127,177,71,-0.9403653629124165],[127,177,72,-0.9420321434736252],[127,177,73,-0.9445724152028561],[127,177,74,-0.9464935474097729],[127,177,75,-0.9467060938477516],[127,177,76,-0.9447035305202007],[127,177,77,-0.9405105598270893],[127,177,78,-0.9351502247154713],[127,177,79,-0.9296355731785297],[127,178,64,-0.945703387260437],[127,178,65,-0.9483494460582733],[127,178,66,-0.9494980648159981],[127,178,67,-0.9493144489824772],[127,178,68,-0.9485811330378056],[127,178,69,-0.9480856731534004],[127,178,70,-0.9478942304849625],[127,178,71,-0.9481778629124165],[127,178,72,-0.9498446434736252],[127,178,73,-0.9523849152028561],[127,178,74,-0.9543060474097729],[127,178,75,-0.9545185938477516],[127,178,76,-0.9525160305202007],[127,178,77,-0.9483230598270893],[127,178,78,-0.9429627247154713],[127,178,79,-0.9374480731785297],[127,179,64,-0.953515887260437],[127,179,65,-0.9561619460582733],[127,179,66,-0.9573105648159981],[127,179,67,-0.9571269489824772],[127,179,68,-0.9563936330378056],[127,179,69,-0.9558981731534004],[127,179,70,-0.9557067304849625],[127,179,71,-0.9559903629124165],[127,179,72,-0.9576571434736252],[127,179,73,-0.9601974152028561],[127,179,74,-0.9621185474097729],[127,179,75,-0.9623310938477516],[127,179,76,-0.9603285305202007],[127,179,77,-0.9561355598270893],[127,179,78,-0.9507752247154713],[127,179,79,-0.9452605731785297],[127,180,64,-0.961328387260437],[127,180,65,-0.9639744460582733],[127,180,66,-0.9651230648159981],[127,180,67,-0.9649394489824772],[127,180,68,-0.9642061330378056],[127,180,69,-0.9637106731534004],[127,180,70,-0.9635192304849625],[127,180,71,-0.9638028629124165],[127,180,72,-0.9654696434736252],[127,180,73,-0.9680099152028561],[127,180,74,-0.9699310474097729],[127,180,75,-0.9701435938477516],[127,180,76,-0.9681410305202007],[127,180,77,-0.9639480598270893],[127,180,78,-0.9585877247154713],[127,180,79,-0.9530730731785297],[127,181,64,-0.969140887260437],[127,181,65,-0.9717869460582733],[127,181,66,-0.9729355648159981],[127,181,67,-0.9727519489824772],[127,181,68,-0.9720186330378056],[127,181,69,-0.9715231731534004],[127,181,70,-0.9713317304849625],[127,181,71,-0.9716153629124165],[127,181,72,-0.9732821434736252],[127,181,73,-0.9758224152028561],[127,181,74,-0.9777435474097729],[127,181,75,-0.9779560938477516],[127,181,76,-0.9759535305202007],[127,181,77,-0.9717605598270893],[127,181,78,-0.9664002247154713],[127,181,79,-0.9608855731785297],[127,182,64,-0.976953387260437],[127,182,65,-0.9795994460582733],[127,182,66,-0.9807480648159981],[127,182,67,-0.9805644489824772],[127,182,68,-0.9798311330378056],[127,182,69,-0.9793356731534004],[127,182,70,-0.9791442304849625],[127,182,71,-0.9794278629124165],[127,182,72,-0.9810946434736252],[127,182,73,-0.9836349152028561],[127,182,74,-0.9855560474097729],[127,182,75,-0.9857685938477516],[127,182,76,-0.9837660305202007],[127,182,77,-0.9795730598270893],[127,182,78,-0.9742127247154713],[127,182,79,-0.9686980731785297],[127,183,64,-0.984765887260437],[127,183,65,-0.9874119460582733],[127,183,66,-0.9885605648159981],[127,183,67,-0.9883769489824772],[127,183,68,-0.9876436330378056],[127,183,69,-0.9871481731534004],[127,183,70,-0.9869567304849625],[127,183,71,-0.9872403629124165],[127,183,72,-0.9889071434736252],[127,183,73,-0.9914474152028561],[127,183,74,-0.9933685474097729],[127,183,75,-0.9935810938477516],[127,183,76,-0.9915785305202007],[127,183,77,-0.9873855598270893],[127,183,78,-0.9820252247154713],[127,183,79,-0.9765105731785297],[127,184,64,-0.992578387260437],[127,184,65,-0.9952244460582733],[127,184,66,-0.9963730648159981],[127,184,67,-0.9961894489824772],[127,184,68,-0.9954561330378056],[127,184,69,-0.9949606731534004],[127,184,70,-0.9947692304849625],[127,184,71,-0.9950528629124165],[127,184,72,-0.9967196434736252],[127,184,73,-0.9992599152028561],[127,184,74,-1.0011810474097729],[127,184,75,-1.0013935938477516],[127,184,76,-0.9993910305202007],[127,184,77,-0.9951980598270893],[127,184,78,-0.9898377247154713],[127,184,79,-0.9843230731785297],[127,185,64,-1.000390887260437],[127,185,65,-1.0030369460582733],[127,185,66,-1.004185564815998],[127,185,67,-1.0040019489824772],[127,185,68,-1.0032686330378056],[127,185,69,-1.0027731731534004],[127,185,70,-1.0025817304849625],[127,185,71,-1.0028653629124165],[127,185,72,-1.0045321434736252],[127,185,73,-1.007072415202856],[127,185,74,-1.0089935474097729],[127,185,75,-1.0092060938477516],[127,185,76,-1.0072035305202007],[127,185,77,-1.0030105598270893],[127,185,78,-0.9976502247154713],[127,185,79,-0.9921355731785297],[127,186,64,-1.008203387260437],[127,186,65,-1.0108494460582733],[127,186,66,-1.011998064815998],[127,186,67,-1.0118144489824772],[127,186,68,-1.0110811330378056],[127,186,69,-1.0105856731534004],[127,186,70,-1.0103942304849625],[127,186,71,-1.0106778629124165],[127,186,72,-1.0123446434736252],[127,186,73,-1.014884915202856],[127,186,74,-1.0168060474097729],[127,186,75,-1.0170185938477516],[127,186,76,-1.0150160305202007],[127,186,77,-1.0108230598270893],[127,186,78,-1.0054627247154713],[127,186,79,-0.9999480731785297],[127,187,64,-1.016015887260437],[127,187,65,-1.0186619460582733],[127,187,66,-1.019810564815998],[127,187,67,-1.0196269489824772],[127,187,68,-1.0188936330378056],[127,187,69,-1.0183981731534004],[127,187,70,-1.0182067304849625],[127,187,71,-1.0184903629124165],[127,187,72,-1.0201571434736252],[127,187,73,-1.022697415202856],[127,187,74,-1.0246185474097729],[127,187,75,-1.0248310938477516],[127,187,76,-1.0228285305202007],[127,187,77,-1.0186355598270893],[127,187,78,-1.0132752247154713],[127,187,79,-1.0077605731785297],[127,188,64,-1.023828387260437],[127,188,65,-1.0264744460582733],[127,188,66,-1.027623064815998],[127,188,67,-1.0274394489824772],[127,188,68,-1.0267061330378056],[127,188,69,-1.0262106731534004],[127,188,70,-1.0260192304849625],[127,188,71,-1.0263028629124165],[127,188,72,-1.0279696434736252],[127,188,73,-1.030509915202856],[127,188,74,-1.0324310474097729],[127,188,75,-1.0326435938477516],[127,188,76,-1.0306410305202007],[127,188,77,-1.0264480598270893],[127,188,78,-1.0210877247154713],[127,188,79,-1.0155730731785297],[127,189,64,-1.031640887260437],[127,189,65,-1.0342869460582733],[127,189,66,-1.035435564815998],[127,189,67,-1.0352519489824772],[127,189,68,-1.0345186330378056],[127,189,69,-1.0340231731534004],[127,189,70,-1.0338317304849625],[127,189,71,-1.0341153629124165],[127,189,72,-1.0357821434736252],[127,189,73,-1.038322415202856],[127,189,74,-1.0402435474097729],[127,189,75,-1.0404560938477516],[127,189,76,-1.0384535305202007],[127,189,77,-1.0342605598270893],[127,189,78,-1.0289002247154713],[127,189,79,-1.0233855731785297],[127,190,64,-1.039453387260437],[127,190,65,-1.0420994460582733],[127,190,66,-1.043248064815998],[127,190,67,-1.0430644489824772],[127,190,68,-1.0423311330378056],[127,190,69,-1.0418356731534004],[127,190,70,-1.0416442304849625],[127,190,71,-1.0419278629124165],[127,190,72,-1.0435946434736252],[127,190,73,-1.046134915202856],[127,190,74,-1.0480560474097729],[127,190,75,-1.0482685938477516],[127,190,76,-1.0462660305202007],[127,190,77,-1.0420730598270893],[127,190,78,-1.0367127247154713],[127,190,79,-1.0311980731785297],[127,191,64,-1.047265887260437],[127,191,65,-1.0499119460582733],[127,191,66,-1.051060564815998],[127,191,67,-1.0508769489824772],[127,191,68,-1.0501436330378056],[127,191,69,-1.0496481731534004],[127,191,70,-1.0494567304849625],[127,191,71,-1.0497403629124165],[127,191,72,-1.0514071434736252],[127,191,73,-1.053947415202856],[127,191,74,-1.0558685474097729],[127,191,75,-1.0560810938477516],[127,191,76,-1.0540785305202007],[127,191,77,-1.0498855598270893],[127,191,78,-1.0445252247154713],[127,191,79,-1.0390105731785297],[127,192,64,-1.055078387260437],[127,192,65,-1.0577244460582733],[127,192,66,-1.058873064815998],[127,192,67,-1.0586894489824772],[127,192,68,-1.0579561330378056],[127,192,69,-1.0574606731534004],[127,192,70,-1.0572692304849625],[127,192,71,-1.0575528629124165],[127,192,72,-1.0592196434736252],[127,192,73,-1.061759915202856],[127,192,74,-1.0636810474097729],[127,192,75,-1.0638935938477516],[127,192,76,-1.0618910305202007],[127,192,77,-1.0576980598270893],[127,192,78,-1.0523377247154713],[127,192,79,-1.0468230731785297],[127,193,64,-1.062890887260437],[127,193,65,-1.0655369460582733],[127,193,66,-1.066685564815998],[127,193,67,-1.0665019489824772],[127,193,68,-1.0657686330378056],[127,193,69,-1.0652731731534004],[127,193,70,-1.0650817304849625],[127,193,71,-1.0653653629124165],[127,193,72,-1.0670321434736252],[127,193,73,-1.069572415202856],[127,193,74,-1.0714935474097729],[127,193,75,-1.0717060938477516],[127,193,76,-1.0697035305202007],[127,193,77,-1.0655105598270893],[127,193,78,-1.0601502247154713],[127,193,79,-1.0546355731785297],[127,194,64,-1.070703387260437],[127,194,65,-1.0733494460582733],[127,194,66,-1.074498064815998],[127,194,67,-1.0743144489824772],[127,194,68,-1.0735811330378056],[127,194,69,-1.0730856731534004],[127,194,70,-1.0728942304849625],[127,194,71,-1.0731778629124165],[127,194,72,-1.0748446434736252],[127,194,73,-1.077384915202856],[127,194,74,-1.0793060474097729],[127,194,75,-1.0795185938477516],[127,194,76,-1.0775160305202007],[127,194,77,-1.0733230598270893],[127,194,78,-1.0679627247154713],[127,194,79,-1.0624480731785297],[127,195,64,-1.078515887260437],[127,195,65,-1.0811619460582733],[127,195,66,-1.082310564815998],[127,195,67,-1.0821269489824772],[127,195,68,-1.0813936330378056],[127,195,69,-1.0808981731534004],[127,195,70,-1.0807067304849625],[127,195,71,-1.0809903629124165],[127,195,72,-1.0826571434736252],[127,195,73,-1.085197415202856],[127,195,74,-1.0871185474097729],[127,195,75,-1.0873310938477516],[127,195,76,-1.0853285305202007],[127,195,77,-1.0811355598270893],[127,195,78,-1.0757752247154713],[127,195,79,-1.0702605731785297],[127,196,64,-1.086328387260437],[127,196,65,-1.0889744460582733],[127,196,66,-1.090123064815998],[127,196,67,-1.0899394489824772],[127,196,68,-1.0892061330378056],[127,196,69,-1.0887106731534004],[127,196,70,-1.0885192304849625],[127,196,71,-1.0888028629124165],[127,196,72,-1.0904696434736252],[127,196,73,-1.093009915202856],[127,196,74,-1.0949310474097729],[127,196,75,-1.0951435938477516],[127,196,76,-1.0931410305202007],[127,196,77,-1.0889480598270893],[127,196,78,-1.0835877247154713],[127,196,79,-1.0780730731785297],[127,197,64,-1.094140887260437],[127,197,65,-1.0967869460582733],[127,197,66,-1.097935564815998],[127,197,67,-1.0977519489824772],[127,197,68,-1.0970186330378056],[127,197,69,-1.0965231731534004],[127,197,70,-1.0963317304849625],[127,197,71,-1.0966153629124165],[127,197,72,-1.0982821434736252],[127,197,73,-1.100822415202856],[127,197,74,-1.1027435474097729],[127,197,75,-1.1029560938477516],[127,197,76,-1.1009535305202007],[127,197,77,-1.0967605598270893],[127,197,78,-1.0914002247154713],[127,197,79,-1.0858855731785297],[127,198,64,-1.101953387260437],[127,198,65,-1.1045994460582733],[127,198,66,-1.105748064815998],[127,198,67,-1.1055644489824772],[127,198,68,-1.1048311330378056],[127,198,69,-1.1043356731534004],[127,198,70,-1.1041442304849625],[127,198,71,-1.1044278629124165],[127,198,72,-1.1060946434736252],[127,198,73,-1.108634915202856],[127,198,74,-1.1105560474097729],[127,198,75,-1.1107685938477516],[127,198,76,-1.1087660305202007],[127,198,77,-1.1045730598270893],[127,198,78,-1.0992127247154713],[127,198,79,-1.0936980731785297],[127,199,64,-1.109765887260437],[127,199,65,-1.1124119460582733],[127,199,66,-1.113560564815998],[127,199,67,-1.1133769489824772],[127,199,68,-1.1126436330378056],[127,199,69,-1.1121481731534004],[127,199,70,-1.1119567304849625],[127,199,71,-1.1122403629124165],[127,199,72,-1.1139071434736252],[127,199,73,-1.116447415202856],[127,199,74,-1.1183685474097729],[127,199,75,-1.1185810938477516],[127,199,76,-1.1165785305202007],[127,199,77,-1.1123855598270893],[127,199,78,-1.1070252247154713],[127,199,79,-1.1015105731785297],[127,200,64,-1.117578387260437],[127,200,65,-1.1202244460582733],[127,200,66,-1.121373064815998],[127,200,67,-1.1211894489824772],[127,200,68,-1.1204561330378056],[127,200,69,-1.1199606731534004],[127,200,70,-1.1197692304849625],[127,200,71,-1.1200528629124165],[127,200,72,-1.1217196434736252],[127,200,73,-1.124259915202856],[127,200,74,-1.1261810474097729],[127,200,75,-1.1263935938477516],[127,200,76,-1.1243910305202007],[127,200,77,-1.1201980598270893],[127,200,78,-1.1148377247154713],[127,200,79,-1.1093230731785297],[127,201,64,-1.125390887260437],[127,201,65,-1.1280369460582733],[127,201,66,-1.129185564815998],[127,201,67,-1.1290019489824772],[127,201,68,-1.1282686330378056],[127,201,69,-1.1277731731534004],[127,201,70,-1.1275817304849625],[127,201,71,-1.1278653629124165],[127,201,72,-1.1295321434736252],[127,201,73,-1.132072415202856],[127,201,74,-1.1339935474097729],[127,201,75,-1.1342060938477516],[127,201,76,-1.1322035305202007],[127,201,77,-1.1280105598270893],[127,201,78,-1.1226502247154713],[127,201,79,-1.1171355731785297],[127,202,64,-1.133203387260437],[127,202,65,-1.1358494460582733],[127,202,66,-1.136998064815998],[127,202,67,-1.1368144489824772],[127,202,68,-1.1360811330378056],[127,202,69,-1.1355856731534004],[127,202,70,-1.1353942304849625],[127,202,71,-1.1356778629124165],[127,202,72,-1.1373446434736252],[127,202,73,-1.139884915202856],[127,202,74,-1.1418060474097729],[127,202,75,-1.1420185938477516],[127,202,76,-1.1400160305202007],[127,202,77,-1.1358230598270893],[127,202,78,-1.1304627247154713],[127,202,79,-1.1249480731785297],[127,203,64,-1.141015887260437],[127,203,65,-1.1436619460582733],[127,203,66,-1.144810564815998],[127,203,67,-1.1446269489824772],[127,203,68,-1.1438936330378056],[127,203,69,-1.1433981731534004],[127,203,70,-1.1432067304849625],[127,203,71,-1.1434903629124165],[127,203,72,-1.1451571434736252],[127,203,73,-1.147697415202856],[127,203,74,-1.1496185474097729],[127,203,75,-1.1498310938477516],[127,203,76,-1.1478285305202007],[127,203,77,-1.1436355598270893],[127,203,78,-1.1382752247154713],[127,203,79,-1.1327605731785297],[127,204,64,-1.148828387260437],[127,204,65,-1.1514744460582733],[127,204,66,-1.152623064815998],[127,204,67,-1.1524394489824772],[127,204,68,-1.1517061330378056],[127,204,69,-1.1512106731534004],[127,204,70,-1.1510192304849625],[127,204,71,-1.1513028629124165],[127,204,72,-1.1529696434736252],[127,204,73,-1.155509915202856],[127,204,74,-1.1574310474097729],[127,204,75,-1.1576435938477516],[127,204,76,-1.1556410305202007],[127,204,77,-1.1514480598270893],[127,204,78,-1.1460877247154713],[127,204,79,-1.1405730731785297],[127,205,64,-1.156640887260437],[127,205,65,-1.1592869460582733],[127,205,66,-1.160435564815998],[127,205,67,-1.1602519489824772],[127,205,68,-1.1595186330378056],[127,205,69,-1.1590231731534004],[127,205,70,-1.1588317304849625],[127,205,71,-1.1591153629124165],[127,205,72,-1.1607821434736252],[127,205,73,-1.163322415202856],[127,205,74,-1.1652435474097729],[127,205,75,-1.1654560938477516],[127,205,76,-1.1634535305202007],[127,205,77,-1.1592605598270893],[127,205,78,-1.1539002247154713],[127,205,79,-1.1483855731785297],[127,206,64,-1.164453387260437],[127,206,65,-1.1670994460582733],[127,206,66,-1.168248064815998],[127,206,67,-1.1680644489824772],[127,206,68,-1.1673311330378056],[127,206,69,-1.1668356731534004],[127,206,70,-1.1666442304849625],[127,206,71,-1.1669278629124165],[127,206,72,-1.1685946434736252],[127,206,73,-1.171134915202856],[127,206,74,-1.1730560474097729],[127,206,75,-1.1732685938477516],[127,206,76,-1.1712660305202007],[127,206,77,-1.1670730598270893],[127,206,78,-1.1617127247154713],[127,206,79,-1.1561980731785297],[127,207,64,-1.172265887260437],[127,207,65,-1.1749119460582733],[127,207,66,-1.176060564815998],[127,207,67,-1.1758769489824772],[127,207,68,-1.1751436330378056],[127,207,69,-1.1746481731534004],[127,207,70,-1.1744567304849625],[127,207,71,-1.1747403629124165],[127,207,72,-1.1764071434736252],[127,207,73,-1.178947415202856],[127,207,74,-1.1808685474097729],[127,207,75,-1.1810810938477516],[127,207,76,-1.1790785305202007],[127,207,77,-1.1748855598270893],[127,207,78,-1.1695252247154713],[127,207,79,-1.1640105731785297],[127,208,64,-1.180078387260437],[127,208,65,-1.1827244460582733],[127,208,66,-1.183873064815998],[127,208,67,-1.1836894489824772],[127,208,68,-1.1829561330378056],[127,208,69,-1.1824606731534004],[127,208,70,-1.1822692304849625],[127,208,71,-1.1825528629124165],[127,208,72,-1.1842196434736252],[127,208,73,-1.186759915202856],[127,208,74,-1.1886810474097729],[127,208,75,-1.1888935938477516],[127,208,76,-1.1868910305202007],[127,208,77,-1.1826980598270893],[127,208,78,-1.1773377247154713],[127,208,79,-1.1718230731785297],[127,209,64,-1.187890887260437],[127,209,65,-1.1905369460582733],[127,209,66,-1.191685564815998],[127,209,67,-1.1915019489824772],[127,209,68,-1.1907686330378056],[127,209,69,-1.1902731731534004],[127,209,70,-1.1900817304849625],[127,209,71,-1.1903653629124165],[127,209,72,-1.1920321434736252],[127,209,73,-1.194572415202856],[127,209,74,-1.1964935474097729],[127,209,75,-1.1967060938477516],[127,209,76,-1.1947035305202007],[127,209,77,-1.1905105598270893],[127,209,78,-1.1851502247154713],[127,209,79,-1.1796355731785297],[127,210,64,-1.195703387260437],[127,210,65,-1.1983494460582733],[127,210,66,-1.199498064815998],[127,210,67,-1.1993144489824772],[127,210,68,-1.1985811330378056],[127,210,69,-1.1980856731534004],[127,210,70,-1.1978942304849625],[127,210,71,-1.1981778629124165],[127,210,72,-1.1998446434736252],[127,210,73,-1.202384915202856],[127,210,74,-1.2043060474097729],[127,210,75,-1.2045185938477516],[127,210,76,-1.2025160305202007],[127,210,77,-1.1983230598270893],[127,210,78,-1.1929627247154713],[127,210,79,-1.1874480731785297],[127,211,64,-1.203515887260437],[127,211,65,-1.2061619460582733],[127,211,66,-1.207310564815998],[127,211,67,-1.2071269489824772],[127,211,68,-1.2063936330378056],[127,211,69,-1.2058981731534004],[127,211,70,-1.2057067304849625],[127,211,71,-1.2059903629124165],[127,211,72,-1.2076571434736252],[127,211,73,-1.210197415202856],[127,211,74,-1.2121185474097729],[127,211,75,-1.2123310938477516],[127,211,76,-1.2103285305202007],[127,211,77,-1.2061355598270893],[127,211,78,-1.2007752247154713],[127,211,79,-1.1952605731785297],[127,212,64,-1.211328387260437],[127,212,65,-1.2139744460582733],[127,212,66,-1.215123064815998],[127,212,67,-1.2149394489824772],[127,212,68,-1.2142061330378056],[127,212,69,-1.2137106731534004],[127,212,70,-1.2135192304849625],[127,212,71,-1.2138028629124165],[127,212,72,-1.2154696434736252],[127,212,73,-1.218009915202856],[127,212,74,-1.2199310474097729],[127,212,75,-1.2201435938477516],[127,212,76,-1.2181410305202007],[127,212,77,-1.2139480598270893],[127,212,78,-1.2085877247154713],[127,212,79,-1.2030730731785297],[127,213,64,-1.219140887260437],[127,213,65,-1.2217869460582733],[127,213,66,-1.222935564815998],[127,213,67,-1.2227519489824772],[127,213,68,-1.2220186330378056],[127,213,69,-1.2215231731534004],[127,213,70,-1.2213317304849625],[127,213,71,-1.2216153629124165],[127,213,72,-1.2232821434736252],[127,213,73,-1.225822415202856],[127,213,74,-1.2277435474097729],[127,213,75,-1.2279560938477516],[127,213,76,-1.2259535305202007],[127,213,77,-1.2217605598270893],[127,213,78,-1.2164002247154713],[127,213,79,-1.2108855731785297],[127,214,64,-1.226953387260437],[127,214,65,-1.2295994460582733],[127,214,66,-1.230748064815998],[127,214,67,-1.2305644489824772],[127,214,68,-1.2298311330378056],[127,214,69,-1.2293356731534004],[127,214,70,-1.2291442304849625],[127,214,71,-1.2294278629124165],[127,214,72,-1.2310946434736252],[127,214,73,-1.233634915202856],[127,214,74,-1.2355560474097729],[127,214,75,-1.2357685938477516],[127,214,76,-1.2337660305202007],[127,214,77,-1.2295730598270893],[127,214,78,-1.2242127247154713],[127,214,79,-1.2186980731785297],[127,215,64,-1.234765887260437],[127,215,65,-1.2374119460582733],[127,215,66,-1.238560564815998],[127,215,67,-1.2383769489824772],[127,215,68,-1.2376436330378056],[127,215,69,-1.2371481731534004],[127,215,70,-1.2369567304849625],[127,215,71,-1.2372403629124165],[127,215,72,-1.2389071434736252],[127,215,73,-1.241447415202856],[127,215,74,-1.2433685474097729],[127,215,75,-1.2435810938477516],[127,215,76,-1.2415785305202007],[127,215,77,-1.2373855598270893],[127,215,78,-1.2320252247154713],[127,215,79,-1.2265105731785297],[127,216,64,-1.242578387260437],[127,216,65,-1.2452244460582733],[127,216,66,-1.246373064815998],[127,216,67,-1.2461894489824772],[127,216,68,-1.2454561330378056],[127,216,69,-1.2449606731534004],[127,216,70,-1.2447692304849625],[127,216,71,-1.2450528629124165],[127,216,72,-1.2467196434736252],[127,216,73,-1.249259915202856],[127,216,74,-1.2511810474097729],[127,216,75,-1.2513935938477516],[127,216,76,-1.2493910305202007],[127,216,77,-1.2451980598270893],[127,216,78,-1.2398377247154713],[127,216,79,-1.2343230731785297],[127,217,64,-1.250390887260437],[127,217,65,-1.2530369460582733],[127,217,66,-1.254185564815998],[127,217,67,-1.2540019489824772],[127,217,68,-1.2532686330378056],[127,217,69,-1.2527731731534004],[127,217,70,-1.2525817304849625],[127,217,71,-1.2528653629124165],[127,217,72,-1.2545321434736252],[127,217,73,-1.257072415202856],[127,217,74,-1.2589935474097729],[127,217,75,-1.2592060938477516],[127,217,76,-1.2572035305202007],[127,217,77,-1.2530105598270893],[127,217,78,-1.2476502247154713],[127,217,79,-1.2421355731785297],[127,218,64,-1.258203387260437],[127,218,65,-1.2608494460582733],[127,218,66,-1.261998064815998],[127,218,67,-1.2618144489824772],[127,218,68,-1.2610811330378056],[127,218,69,-1.2605856731534004],[127,218,70,-1.2603942304849625],[127,218,71,-1.2606778629124165],[127,218,72,-1.2623446434736252],[127,218,73,-1.264884915202856],[127,218,74,-1.2668060474097729],[127,218,75,-1.2670185938477516],[127,218,76,-1.2650160305202007],[127,218,77,-1.2608230598270893],[127,218,78,-1.2554627247154713],[127,218,79,-1.2499480731785297],[127,219,64,-1.266015887260437],[127,219,65,-1.2686619460582733],[127,219,66,-1.269810564815998],[127,219,67,-1.2696269489824772],[127,219,68,-1.2688936330378056],[127,219,69,-1.2683981731534004],[127,219,70,-1.2682067304849625],[127,219,71,-1.2684903629124165],[127,219,72,-1.2701571434736252],[127,219,73,-1.272697415202856],[127,219,74,-1.2746185474097729],[127,219,75,-1.2748310938477516],[127,219,76,-1.2728285305202007],[127,219,77,-1.2686355598270893],[127,219,78,-1.2632752247154713],[127,219,79,-1.2577605731785297],[127,220,64,-1.273828387260437],[127,220,65,-1.2764744460582733],[127,220,66,-1.277623064815998],[127,220,67,-1.2774394489824772],[127,220,68,-1.2767061330378056],[127,220,69,-1.2762106731534004],[127,220,70,-1.2760192304849625],[127,220,71,-1.2763028629124165],[127,220,72,-1.2779696434736252],[127,220,73,-1.280509915202856],[127,220,74,-1.2824310474097729],[127,220,75,-1.2826435938477516],[127,220,76,-1.2806410305202007],[127,220,77,-1.2764480598270893],[127,220,78,-1.2710877247154713],[127,220,79,-1.2655730731785297],[127,221,64,-1.281640887260437],[127,221,65,-1.2842869460582733],[127,221,66,-1.285435564815998],[127,221,67,-1.2852519489824772],[127,221,68,-1.2845186330378056],[127,221,69,-1.2840231731534004],[127,221,70,-1.2838317304849625],[127,221,71,-1.2841153629124165],[127,221,72,-1.2857821434736252],[127,221,73,-1.288322415202856],[127,221,74,-1.2902435474097729],[127,221,75,-1.2904560938477516],[127,221,76,-1.2884535305202007],[127,221,77,-1.2842605598270893],[127,221,78,-1.2789002247154713],[127,221,79,-1.2733855731785297],[127,222,64,-1.289453387260437],[127,222,65,-1.2920994460582733],[127,222,66,-1.293248064815998],[127,222,67,-1.2930644489824772],[127,222,68,-1.2923311330378056],[127,222,69,-1.2918356731534004],[127,222,70,-1.2916442304849625],[127,222,71,-1.2919278629124165],[127,222,72,-1.2935946434736252],[127,222,73,-1.296134915202856],[127,222,74,-1.2980560474097729],[127,222,75,-1.2982685938477516],[127,222,76,-1.2962660305202007],[127,222,77,-1.2920730598270893],[127,222,78,-1.2867127247154713],[127,222,79,-1.2811980731785297],[127,223,64,-1.297265887260437],[127,223,65,-1.2999119460582733],[127,223,66,-1.301060564815998],[127,223,67,-1.3008769489824772],[127,223,68,-1.3001436330378056],[127,223,69,-1.2996481731534004],[127,223,70,-1.2994567304849625],[127,223,71,-1.2997403629124165],[127,223,72,-1.3014071434736252],[127,223,73,-1.303947415202856],[127,223,74,-1.3058685474097729],[127,223,75,-1.3060810938477516],[127,223,76,-1.3040785305202007],[127,223,77,-1.2998855598270893],[127,223,78,-1.2945252247154713],[127,223,79,-1.2890105731785297],[127,224,64,-1.305078387260437],[127,224,65,-1.3077244460582733],[127,224,66,-1.308873064815998],[127,224,67,-1.3086894489824772],[127,224,68,-1.3079561330378056],[127,224,69,-1.3074606731534004],[127,224,70,-1.3072692304849625],[127,224,71,-1.3075528629124165],[127,224,72,-1.3092196434736252],[127,224,73,-1.311759915202856],[127,224,74,-1.3136810474097729],[127,224,75,-1.3138935938477516],[127,224,76,-1.3118910305202007],[127,224,77,-1.3076980598270893],[127,224,78,-1.3023377247154713],[127,224,79,-1.2968230731785297],[127,225,64,-1.312890887260437],[127,225,65,-1.3155369460582733],[127,225,66,-1.316685564815998],[127,225,67,-1.3165019489824772],[127,225,68,-1.3157686330378056],[127,225,69,-1.3152731731534004],[127,225,70,-1.3150817304849625],[127,225,71,-1.3153653629124165],[127,225,72,-1.3170321434736252],[127,225,73,-1.319572415202856],[127,225,74,-1.3214935474097729],[127,225,75,-1.3217060938477516],[127,225,76,-1.3197035305202007],[127,225,77,-1.3155105598270893],[127,225,78,-1.3101502247154713],[127,225,79,-1.3046355731785297],[127,226,64,-1.320703387260437],[127,226,65,-1.3233494460582733],[127,226,66,-1.324498064815998],[127,226,67,-1.3243144489824772],[127,226,68,-1.3235811330378056],[127,226,69,-1.3230856731534004],[127,226,70,-1.3228942304849625],[127,226,71,-1.3231778629124165],[127,226,72,-1.3248446434736252],[127,226,73,-1.327384915202856],[127,226,74,-1.3293060474097729],[127,226,75,-1.3295185938477516],[127,226,76,-1.3275160305202007],[127,226,77,-1.3233230598270893],[127,226,78,-1.3179627247154713],[127,226,79,-1.3124480731785297],[127,227,64,-1.328515887260437],[127,227,65,-1.3311619460582733],[127,227,66,-1.332310564815998],[127,227,67,-1.3321269489824772],[127,227,68,-1.3313936330378056],[127,227,69,-1.3308981731534004],[127,227,70,-1.3307067304849625],[127,227,71,-1.3309903629124165],[127,227,72,-1.3326571434736252],[127,227,73,-1.335197415202856],[127,227,74,-1.3371185474097729],[127,227,75,-1.3373310938477516],[127,227,76,-1.3353285305202007],[127,227,77,-1.3311355598270893],[127,227,78,-1.3257752247154713],[127,227,79,-1.3202605731785297],[127,228,64,-1.336328387260437],[127,228,65,-1.3389744460582733],[127,228,66,-1.340123064815998],[127,228,67,-1.3399394489824772],[127,228,68,-1.3392061330378056],[127,228,69,-1.3387106731534004],[127,228,70,-1.3385192304849625],[127,228,71,-1.3388028629124165],[127,228,72,-1.3404696434736252],[127,228,73,-1.343009915202856],[127,228,74,-1.3449310474097729],[127,228,75,-1.3451435938477516],[127,228,76,-1.3431410305202007],[127,228,77,-1.3389480598270893],[127,228,78,-1.3335877247154713],[127,228,79,-1.3280730731785297],[127,229,64,-1.344140887260437],[127,229,65,-1.3467869460582733],[127,229,66,-1.347935564815998],[127,229,67,-1.3477519489824772],[127,229,68,-1.3470186330378056],[127,229,69,-1.3465231731534004],[127,229,70,-1.3463317304849625],[127,229,71,-1.3466153629124165],[127,229,72,-1.3482821434736252],[127,229,73,-1.350822415202856],[127,229,74,-1.3527435474097729],[127,229,75,-1.3529560938477516],[127,229,76,-1.3509535305202007],[127,229,77,-1.3467605598270893],[127,229,78,-1.3414002247154713],[127,229,79,-1.3358855731785297],[127,230,64,-1.351953387260437],[127,230,65,-1.3545994460582733],[127,230,66,-1.355748064815998],[127,230,67,-1.3555644489824772],[127,230,68,-1.3548311330378056],[127,230,69,-1.3543356731534004],[127,230,70,-1.3541442304849625],[127,230,71,-1.3544278629124165],[127,230,72,-1.3560946434736252],[127,230,73,-1.358634915202856],[127,230,74,-1.3605560474097729],[127,230,75,-1.3607685938477516],[127,230,76,-1.3587660305202007],[127,230,77,-1.3545730598270893],[127,230,78,-1.3492127247154713],[127,230,79,-1.3436980731785297],[127,231,64,-1.359765887260437],[127,231,65,-1.3624119460582733],[127,231,66,-1.363560564815998],[127,231,67,-1.3633769489824772],[127,231,68,-1.3626436330378056],[127,231,69,-1.3621481731534004],[127,231,70,-1.3619567304849625],[127,231,71,-1.3622403629124165],[127,231,72,-1.3639071434736252],[127,231,73,-1.366447415202856],[127,231,74,-1.3683685474097729],[127,231,75,-1.3685810938477516],[127,231,76,-1.3665785305202007],[127,231,77,-1.3623855598270893],[127,231,78,-1.3570252247154713],[127,231,79,-1.3515105731785297],[127,232,64,-1.367578387260437],[127,232,65,-1.3702244460582733],[127,232,66,-1.371373064815998],[127,232,67,-1.3711894489824772],[127,232,68,-1.3704561330378056],[127,232,69,-1.3699606731534004],[127,232,70,-1.3697692304849625],[127,232,71,-1.3700528629124165],[127,232,72,-1.3717196434736252],[127,232,73,-1.374259915202856],[127,232,74,-1.3761810474097729],[127,232,75,-1.3763935938477516],[127,232,76,-1.3743910305202007],[127,232,77,-1.3701980598270893],[127,232,78,-1.3648377247154713],[127,232,79,-1.3593230731785297],[127,233,64,-1.375390887260437],[127,233,65,-1.3780369460582733],[127,233,66,-1.379185564815998],[127,233,67,-1.3790019489824772],[127,233,68,-1.3782686330378056],[127,233,69,-1.3777731731534004],[127,233,70,-1.3775817304849625],[127,233,71,-1.3778653629124165],[127,233,72,-1.3795321434736252],[127,233,73,-1.382072415202856],[127,233,74,-1.3839935474097729],[127,233,75,-1.3842060938477516],[127,233,76,-1.3822035305202007],[127,233,77,-1.3780105598270893],[127,233,78,-1.3726502247154713],[127,233,79,-1.3671355731785297],[127,234,64,-1.383203387260437],[127,234,65,-1.3858494460582733],[127,234,66,-1.386998064815998],[127,234,67,-1.3868144489824772],[127,234,68,-1.3860811330378056],[127,234,69,-1.3855856731534004],[127,234,70,-1.3853942304849625],[127,234,71,-1.3856778629124165],[127,234,72,-1.3873446434736252],[127,234,73,-1.389884915202856],[127,234,74,-1.3918060474097729],[127,234,75,-1.3920185938477516],[127,234,76,-1.3900160305202007],[127,234,77,-1.3858230598270893],[127,234,78,-1.3804627247154713],[127,234,79,-1.3749480731785297],[127,235,64,-1.391015887260437],[127,235,65,-1.3936619460582733],[127,235,66,-1.394810564815998],[127,235,67,-1.3946269489824772],[127,235,68,-1.3938936330378056],[127,235,69,-1.3933981731534004],[127,235,70,-1.3932067304849625],[127,235,71,-1.3934903629124165],[127,235,72,-1.3951571434736252],[127,235,73,-1.397697415202856],[127,235,74,-1.3996185474097729],[127,235,75,-1.3998310938477516],[127,235,76,-1.3978285305202007],[127,235,77,-1.3936355598270893],[127,235,78,-1.3882752247154713],[127,235,79,-1.3827605731785297],[127,236,64,-1.398828387260437],[127,236,65,-1.4014744460582733],[127,236,66,-1.402623064815998],[127,236,67,-1.4024394489824772],[127,236,68,-1.4017061330378056],[127,236,69,-1.4012106731534004],[127,236,70,-1.4010192304849625],[127,236,71,-1.4013028629124165],[127,236,72,-1.4029696434736252],[127,236,73,-1.405509915202856],[127,236,74,-1.4074310474097729],[127,236,75,-1.4076435938477516],[127,236,76,-1.4056410305202007],[127,236,77,-1.4014480598270893],[127,236,78,-1.3960877247154713],[127,236,79,-1.3905730731785297],[127,237,64,-1.406640887260437],[127,237,65,-1.4092869460582733],[127,237,66,-1.410435564815998],[127,237,67,-1.4102519489824772],[127,237,68,-1.4095186330378056],[127,237,69,-1.4090231731534004],[127,237,70,-1.4088317304849625],[127,237,71,-1.4091153629124165],[127,237,72,-1.4107821434736252],[127,237,73,-1.413322415202856],[127,237,74,-1.4152435474097729],[127,237,75,-1.4154560938477516],[127,237,76,-1.4134535305202007],[127,237,77,-1.4092605598270893],[127,237,78,-1.4039002247154713],[127,237,79,-1.3983855731785297],[127,238,64,-1.414453387260437],[127,238,65,-1.4170994460582733],[127,238,66,-1.418248064815998],[127,238,67,-1.4180644489824772],[127,238,68,-1.4173311330378056],[127,238,69,-1.4168356731534004],[127,238,70,-1.4166442304849625],[127,238,71,-1.4169278629124165],[127,238,72,-1.4185946434736252],[127,238,73,-1.421134915202856],[127,238,74,-1.4230560474097729],[127,238,75,-1.4232685938477516],[127,238,76,-1.4212660305202007],[127,238,77,-1.4170730598270893],[127,238,78,-1.4117127247154713],[127,238,79,-1.4061980731785297],[127,239,64,-1.422265887260437],[127,239,65,-1.4249119460582733],[127,239,66,-1.426060564815998],[127,239,67,-1.4258769489824772],[127,239,68,-1.4251436330378056],[127,239,69,-1.4246481731534004],[127,239,70,-1.4244567304849625],[127,239,71,-1.4247403629124165],[127,239,72,-1.4264071434736252],[127,239,73,-1.428947415202856],[127,239,74,-1.4308685474097729],[127,239,75,-1.4310810938477516],[127,239,76,-1.4290785305202007],[127,239,77,-1.4248855598270893],[127,239,78,-1.4195252247154713],[127,239,79,-1.4140105731785297],[127,240,64,-1.430078387260437],[127,240,65,-1.4327244460582733],[127,240,66,-1.433873064815998],[127,240,67,-1.4336894489824772],[127,240,68,-1.4329561330378056],[127,240,69,-1.4324606731534004],[127,240,70,-1.4322692304849625],[127,240,71,-1.4325528629124165],[127,240,72,-1.4342196434736252],[127,240,73,-1.436759915202856],[127,240,74,-1.4386810474097729],[127,240,75,-1.4388935938477516],[127,240,76,-1.4368910305202007],[127,240,77,-1.4326980598270893],[127,240,78,-1.4273377247154713],[127,240,79,-1.4218230731785297],[127,241,64,-1.437890887260437],[127,241,65,-1.4405369460582733],[127,241,66,-1.441685564815998],[127,241,67,-1.4415019489824772],[127,241,68,-1.4407686330378056],[127,241,69,-1.4402731731534004],[127,241,70,-1.4400817304849625],[127,241,71,-1.4403653629124165],[127,241,72,-1.4420321434736252],[127,241,73,-1.444572415202856],[127,241,74,-1.4464935474097729],[127,241,75,-1.4467060938477516],[127,241,76,-1.4447035305202007],[127,241,77,-1.4405105598270893],[127,241,78,-1.4351502247154713],[127,241,79,-1.4296355731785297],[127,242,64,-1.445703387260437],[127,242,65,-1.4483494460582733],[127,242,66,-1.449498064815998],[127,242,67,-1.4493144489824772],[127,242,68,-1.4485811330378056],[127,242,69,-1.4480856731534004],[127,242,70,-1.4478942304849625],[127,242,71,-1.4481778629124165],[127,242,72,-1.4498446434736252],[127,242,73,-1.452384915202856],[127,242,74,-1.4543060474097729],[127,242,75,-1.4545185938477516],[127,242,76,-1.4525160305202007],[127,242,77,-1.4483230598270893],[127,242,78,-1.4429627247154713],[127,242,79,-1.4374480731785297],[127,243,64,-1.453515887260437],[127,243,65,-1.4561619460582733],[127,243,66,-1.457310564815998],[127,243,67,-1.4571269489824772],[127,243,68,-1.4563936330378056],[127,243,69,-1.4558981731534004],[127,243,70,-1.4557067304849625],[127,243,71,-1.4559903629124165],[127,243,72,-1.4576571434736252],[127,243,73,-1.460197415202856],[127,243,74,-1.4621185474097729],[127,243,75,-1.4623310938477516],[127,243,76,-1.4603285305202007],[127,243,77,-1.4561355598270893],[127,243,78,-1.4507752247154713],[127,243,79,-1.4452605731785297],[127,244,64,-1.461328387260437],[127,244,65,-1.4639744460582733],[127,244,66,-1.465123064815998],[127,244,67,-1.4649394489824772],[127,244,68,-1.4642061330378056],[127,244,69,-1.4637106731534004],[127,244,70,-1.4635192304849625],[127,244,71,-1.4638028629124165],[127,244,72,-1.4654696434736252],[127,244,73,-1.468009915202856],[127,244,74,-1.4699310474097729],[127,244,75,-1.4701435938477516],[127,244,76,-1.4681410305202007],[127,244,77,-1.4639480598270893],[127,244,78,-1.4585877247154713],[127,244,79,-1.4530730731785297],[127,245,64,-1.469140887260437],[127,245,65,-1.4717869460582733],[127,245,66,-1.472935564815998],[127,245,67,-1.4727519489824772],[127,245,68,-1.4720186330378056],[127,245,69,-1.4715231731534004],[127,245,70,-1.4713317304849625],[127,245,71,-1.4716153629124165],[127,245,72,-1.4732821434736252],[127,245,73,-1.475822415202856],[127,245,74,-1.4777435474097729],[127,245,75,-1.4779560938477516],[127,245,76,-1.4759535305202007],[127,245,77,-1.4717605598270893],[127,245,78,-1.4664002247154713],[127,245,79,-1.4608855731785297],[127,246,64,-1.476953387260437],[127,246,65,-1.4795994460582733],[127,246,66,-1.480748064815998],[127,246,67,-1.4805644489824772],[127,246,68,-1.4798311330378056],[127,246,69,-1.4793356731534004],[127,246,70,-1.4791442304849625],[127,246,71,-1.4794278629124165],[127,246,72,-1.4810946434736252],[127,246,73,-1.483634915202856],[127,246,74,-1.4855560474097729],[127,246,75,-1.4857685938477516],[127,246,76,-1.4837660305202007],[127,246,77,-1.4795730598270893],[127,246,78,-1.4742127247154713],[127,246,79,-1.4686980731785297],[127,247,64,-1.484765887260437],[127,247,65,-1.4874119460582733],[127,247,66,-1.488560564815998],[127,247,67,-1.4883769489824772],[127,247,68,-1.4876436330378056],[127,247,69,-1.4871481731534004],[127,247,70,-1.4869567304849625],[127,247,71,-1.4872403629124165],[127,247,72,-1.4889071434736252],[127,247,73,-1.491447415202856],[127,247,74,-1.4933685474097729],[127,247,75,-1.4935810938477516],[127,247,76,-1.4915785305202007],[127,247,77,-1.4873855598270893],[127,247,78,-1.4820252247154713],[127,247,79,-1.4765105731785297],[127,248,64,-1.492578387260437],[127,248,65,-1.4952244460582733],[127,248,66,-1.496373064815998],[127,248,67,-1.4961894489824772],[127,248,68,-1.4954561330378056],[127,248,69,-1.4949606731534004],[127,248,70,-1.4947692304849625],[127,248,71,-1.4950528629124165],[127,248,72,-1.4967196434736252],[127,248,73,-1.499259915202856],[127,248,74,-1.5011810474097729],[127,248,75,-1.5013935938477516],[127,248,76,-1.4993910305202007],[127,248,77,-1.4951980598270893],[127,248,78,-1.4898377247154713],[127,248,79,-1.4843230731785297],[127,249,64,-1.500390887260437],[127,249,65,-1.5030369460582733],[127,249,66,-1.504185564815998],[127,249,67,-1.5040019489824772],[127,249,68,-1.5032686330378056],[127,249,69,-1.5027731731534004],[127,249,70,-1.5025817304849625],[127,249,71,-1.5028653629124165],[127,249,72,-1.5045321434736252],[127,249,73,-1.507072415202856],[127,249,74,-1.5089935474097729],[127,249,75,-1.5092060938477516],[127,249,76,-1.5072035305202007],[127,249,77,-1.5030105598270893],[127,249,78,-1.4976502247154713],[127,249,79,-1.4921355731785297],[127,250,64,-1.508203387260437],[127,250,65,-1.5108494460582733],[127,250,66,-1.511998064815998],[127,250,67,-1.5118144489824772],[127,250,68,-1.5110811330378056],[127,250,69,-1.5105856731534004],[127,250,70,-1.5103942304849625],[127,250,71,-1.5106778629124165],[127,250,72,-1.5123446434736252],[127,250,73,-1.514884915202856],[127,250,74,-1.5168060474097729],[127,250,75,-1.5170185938477516],[127,250,76,-1.5150160305202007],[127,250,77,-1.5108230598270893],[127,250,78,-1.5054627247154713],[127,250,79,-1.4999480731785297],[127,251,64,-1.516015887260437],[127,251,65,-1.5186619460582733],[127,251,66,-1.519810564815998],[127,251,67,-1.5196269489824772],[127,251,68,-1.5188936330378056],[127,251,69,-1.5183981731534004],[127,251,70,-1.5182067304849625],[127,251,71,-1.5184903629124165],[127,251,72,-1.5201571434736252],[127,251,73,-1.522697415202856],[127,251,74,-1.5246185474097729],[127,251,75,-1.5248310938477516],[127,251,76,-1.5228285305202007],[127,251,77,-1.5186355598270893],[127,251,78,-1.5132752247154713],[127,251,79,-1.5077605731785297],[127,252,64,-1.523828387260437],[127,252,65,-1.5264744460582733],[127,252,66,-1.527623064815998],[127,252,67,-1.5274394489824772],[127,252,68,-1.5267061330378056],[127,252,69,-1.5262106731534004],[127,252,70,-1.5260192304849625],[127,252,71,-1.5263028629124165],[127,252,72,-1.5279696434736252],[127,252,73,-1.530509915202856],[127,252,74,-1.5324310474097729],[127,252,75,-1.5326435938477516],[127,252,76,-1.5306410305202007],[127,252,77,-1.5264480598270893],[127,252,78,-1.5210877247154713],[127,252,79,-1.5155730731785297],[127,253,64,-1.531640887260437],[127,253,65,-1.5342869460582733],[127,253,66,-1.535435564815998],[127,253,67,-1.5352519489824772],[127,253,68,-1.5345186330378056],[127,253,69,-1.5340231731534004],[127,253,70,-1.5338317304849625],[127,253,71,-1.5341153629124165],[127,253,72,-1.5357821434736252],[127,253,73,-1.538322415202856],[127,253,74,-1.5402435474097729],[127,253,75,-1.5404560938477516],[127,253,76,-1.5384535305202007],[127,253,77,-1.5342605598270893],[127,253,78,-1.5289002247154713],[127,253,79,-1.5233855731785297],[127,254,64,-1.539453387260437],[127,254,65,-1.5420994460582733],[127,254,66,-1.543248064815998],[127,254,67,-1.5430644489824772],[127,254,68,-1.5423311330378056],[127,254,69,-1.5418356731534004],[127,254,70,-1.5416442304849625],[127,254,71,-1.5419278629124165],[127,254,72,-1.5435946434736252],[127,254,73,-1.546134915202856],[127,254,74,-1.5480560474097729],[127,254,75,-1.5482685938477516],[127,254,76,-1.5462660305202007],[127,254,77,-1.5420730598270893],[127,254,78,-1.5367127247154713],[127,254,79,-1.5311980731785297],[127,255,64,-1.547265887260437],[127,255,65,-1.5499119460582733],[127,255,66,-1.551060564815998],[127,255,67,-1.5508769489824772],[127,255,68,-1.5501436330378056],[127,255,69,-1.5496481731534004],[127,255,70,-1.5494567304849625],[127,255,71,-1.5497403629124165],[127,255,72,-1.5514071434736252],[127,255,73,-1.553947415202856],[127,255,74,-1.5558685474097729],[127,255,75,-1.5560810938477516],[127,255,76,-1.5540785305202007],[127,255,77,-1.5498855598270893],[127,255,78,-1.5445252247154713],[127,255,79,-1.5390105731785297],[127,256,64,-1.555078387260437],[127,256,65,-1.5577244460582733],[127,256,66,-1.558873064815998],[127,256,67,-1.5586894489824772],[127,256,68,-1.5579561330378056],[127,256,69,-1.5574606731534004],[127,256,70,-1.5572692304849625],[127,256,71,-1.5575528629124165],[127,256,72,-1.5592196434736252],[127,256,73,-1.561759915202856],[127,256,74,-1.5636810474097729],[127,256,75,-1.5638935938477516],[127,256,76,-1.5618910305202007],[127,256,77,-1.5576980598270893],[127,256,78,-1.5523377247154713],[127,256,79,-1.5468230731785297],[127,257,64,-1.562890887260437],[127,257,65,-1.5655369460582733],[127,257,66,-1.566685564815998],[127,257,67,-1.5665019489824772],[127,257,68,-1.5657686330378056],[127,257,69,-1.5652731731534004],[127,257,70,-1.5650817304849625],[127,257,71,-1.5653653629124165],[127,257,72,-1.5670321434736252],[127,257,73,-1.569572415202856],[127,257,74,-1.5714935474097729],[127,257,75,-1.5717060938477516],[127,257,76,-1.5697035305202007],[127,257,77,-1.5655105598270893],[127,257,78,-1.5601502247154713],[127,257,79,-1.5546355731785297],[127,258,64,-1.570703387260437],[127,258,65,-1.5733494460582733],[127,258,66,-1.574498064815998],[127,258,67,-1.5743144489824772],[127,258,68,-1.5735811330378056],[127,258,69,-1.5730856731534004],[127,258,70,-1.5728942304849625],[127,258,71,-1.5731778629124165],[127,258,72,-1.5748446434736252],[127,258,73,-1.577384915202856],[127,258,74,-1.5793060474097729],[127,258,75,-1.5795185938477516],[127,258,76,-1.5775160305202007],[127,258,77,-1.5733230598270893],[127,258,78,-1.5679627247154713],[127,258,79,-1.5624480731785297],[127,259,64,-1.578515887260437],[127,259,65,-1.5811619460582733],[127,259,66,-1.582310564815998],[127,259,67,-1.5821269489824772],[127,259,68,-1.5813936330378056],[127,259,69,-1.5808981731534004],[127,259,70,-1.5807067304849625],[127,259,71,-1.5809903629124165],[127,259,72,-1.5826571434736252],[127,259,73,-1.585197415202856],[127,259,74,-1.5871185474097729],[127,259,75,-1.5873310938477516],[127,259,76,-1.5853285305202007],[127,259,77,-1.5811355598270893],[127,259,78,-1.5757752247154713],[127,259,79,-1.5702605731785297],[127,260,64,-1.586328387260437],[127,260,65,-1.5889744460582733],[127,260,66,-1.590123064815998],[127,260,67,-1.5899394489824772],[127,260,68,-1.5892061330378056],[127,260,69,-1.5887106731534004],[127,260,70,-1.5885192304849625],[127,260,71,-1.5888028629124165],[127,260,72,-1.5904696434736252],[127,260,73,-1.593009915202856],[127,260,74,-1.5949310474097729],[127,260,75,-1.5951435938477516],[127,260,76,-1.5931410305202007],[127,260,77,-1.5889480598270893],[127,260,78,-1.5835877247154713],[127,260,79,-1.5780730731785297],[127,261,64,-1.594140887260437],[127,261,65,-1.5967869460582733],[127,261,66,-1.597935564815998],[127,261,67,-1.5977519489824772],[127,261,68,-1.5970186330378056],[127,261,69,-1.5965231731534004],[127,261,70,-1.5963317304849625],[127,261,71,-1.5966153629124165],[127,261,72,-1.5982821434736252],[127,261,73,-1.600822415202856],[127,261,74,-1.6027435474097729],[127,261,75,-1.6029560938477516],[127,261,76,-1.6009535305202007],[127,261,77,-1.5967605598270893],[127,261,78,-1.5914002247154713],[127,261,79,-1.5858855731785297],[127,262,64,-1.601953387260437],[127,262,65,-1.6045994460582733],[127,262,66,-1.605748064815998],[127,262,67,-1.6055644489824772],[127,262,68,-1.6048311330378056],[127,262,69,-1.6043356731534004],[127,262,70,-1.6041442304849625],[127,262,71,-1.6044278629124165],[127,262,72,-1.6060946434736252],[127,262,73,-1.608634915202856],[127,262,74,-1.6105560474097729],[127,262,75,-1.6107685938477516],[127,262,76,-1.6087660305202007],[127,262,77,-1.6045730598270893],[127,262,78,-1.5992127247154713],[127,262,79,-1.5936980731785297],[127,263,64,-1.609765887260437],[127,263,65,-1.6124119460582733],[127,263,66,-1.613560564815998],[127,263,67,-1.6133769489824772],[127,263,68,-1.6126436330378056],[127,263,69,-1.6121481731534004],[127,263,70,-1.6119567304849625],[127,263,71,-1.6122403629124165],[127,263,72,-1.6139071434736252],[127,263,73,-1.616447415202856],[127,263,74,-1.6183685474097729],[127,263,75,-1.6185810938477516],[127,263,76,-1.6165785305202007],[127,263,77,-1.6123855598270893],[127,263,78,-1.6070252247154713],[127,263,79,-1.6015105731785297],[127,264,64,-1.617578387260437],[127,264,65,-1.6202244460582733],[127,264,66,-1.621373064815998],[127,264,67,-1.6211894489824772],[127,264,68,-1.6204561330378056],[127,264,69,-1.6199606731534004],[127,264,70,-1.6197692304849625],[127,264,71,-1.6200528629124165],[127,264,72,-1.6217196434736252],[127,264,73,-1.624259915202856],[127,264,74,-1.6261810474097729],[127,264,75,-1.6263935938477516],[127,264,76,-1.6243910305202007],[127,264,77,-1.6201980598270893],[127,264,78,-1.6148377247154713],[127,264,79,-1.6093230731785297],[127,265,64,-1.625390887260437],[127,265,65,-1.6280369460582733],[127,265,66,-1.629185564815998],[127,265,67,-1.6290019489824772],[127,265,68,-1.6282686330378056],[127,265,69,-1.6277731731534004],[127,265,70,-1.6275817304849625],[127,265,71,-1.6278653629124165],[127,265,72,-1.6295321434736252],[127,265,73,-1.632072415202856],[127,265,74,-1.6339935474097729],[127,265,75,-1.6342060938477516],[127,265,76,-1.6322035305202007],[127,265,77,-1.6280105598270893],[127,265,78,-1.6226502247154713],[127,265,79,-1.6171355731785297],[127,266,64,-1.633203387260437],[127,266,65,-1.6358494460582733],[127,266,66,-1.636998064815998],[127,266,67,-1.6368144489824772],[127,266,68,-1.6360811330378056],[127,266,69,-1.6355856731534004],[127,266,70,-1.6353942304849625],[127,266,71,-1.6356778629124165],[127,266,72,-1.6373446434736252],[127,266,73,-1.639884915202856],[127,266,74,-1.6418060474097729],[127,266,75,-1.6420185938477516],[127,266,76,-1.6400160305202007],[127,266,77,-1.6358230598270893],[127,266,78,-1.6304627247154713],[127,266,79,-1.6249480731785297],[127,267,64,-1.641015887260437],[127,267,65,-1.6436619460582733],[127,267,66,-1.644810564815998],[127,267,67,-1.6446269489824772],[127,267,68,-1.6438936330378056],[127,267,69,-1.6433981731534004],[127,267,70,-1.6432067304849625],[127,267,71,-1.6434903629124165],[127,267,72,-1.6451571434736252],[127,267,73,-1.647697415202856],[127,267,74,-1.6496185474097729],[127,267,75,-1.6498310938477516],[127,267,76,-1.6478285305202007],[127,267,77,-1.6436355598270893],[127,267,78,-1.6382752247154713],[127,267,79,-1.6327605731785297],[127,268,64,-1.648828387260437],[127,268,65,-1.6514744460582733],[127,268,66,-1.652623064815998],[127,268,67,-1.6524394489824772],[127,268,68,-1.6517061330378056],[127,268,69,-1.6512106731534004],[127,268,70,-1.6510192304849625],[127,268,71,-1.6513028629124165],[127,268,72,-1.6529696434736252],[127,268,73,-1.655509915202856],[127,268,74,-1.6574310474097729],[127,268,75,-1.6576435938477516],[127,268,76,-1.6556410305202007],[127,268,77,-1.6514480598270893],[127,268,78,-1.6460877247154713],[127,268,79,-1.6405730731785297],[127,269,64,-1.656640887260437],[127,269,65,-1.6592869460582733],[127,269,66,-1.660435564815998],[127,269,67,-1.6602519489824772],[127,269,68,-1.6595186330378056],[127,269,69,-1.6590231731534004],[127,269,70,-1.6588317304849625],[127,269,71,-1.6591153629124165],[127,269,72,-1.6607821434736252],[127,269,73,-1.663322415202856],[127,269,74,-1.6652435474097729],[127,269,75,-1.6654560938477516],[127,269,76,-1.6634535305202007],[127,269,77,-1.6592605598270893],[127,269,78,-1.6539002247154713],[127,269,79,-1.6483855731785297],[127,270,64,-1.664453387260437],[127,270,65,-1.6670994460582733],[127,270,66,-1.668248064815998],[127,270,67,-1.6680644489824772],[127,270,68,-1.6673311330378056],[127,270,69,-1.6668356731534004],[127,270,70,-1.6666442304849625],[127,270,71,-1.6669278629124165],[127,270,72,-1.6685946434736252],[127,270,73,-1.671134915202856],[127,270,74,-1.6730560474097729],[127,270,75,-1.6732685938477516],[127,270,76,-1.6712660305202007],[127,270,77,-1.6670730598270893],[127,270,78,-1.6617127247154713],[127,270,79,-1.6561980731785297],[127,271,64,-1.672265887260437],[127,271,65,-1.6749119460582733],[127,271,66,-1.676060564815998],[127,271,67,-1.6758769489824772],[127,271,68,-1.6751436330378056],[127,271,69,-1.6746481731534004],[127,271,70,-1.6744567304849625],[127,271,71,-1.6747403629124165],[127,271,72,-1.6764071434736252],[127,271,73,-1.678947415202856],[127,271,74,-1.6808685474097729],[127,271,75,-1.6810810938477516],[127,271,76,-1.6790785305202007],[127,271,77,-1.6748855598270893],[127,271,78,-1.6695252247154713],[127,271,79,-1.6640105731785297],[127,272,64,-1.680078387260437],[127,272,65,-1.6827244460582733],[127,272,66,-1.683873064815998],[127,272,67,-1.6836894489824772],[127,272,68,-1.6829561330378056],[127,272,69,-1.6824606731534004],[127,272,70,-1.6822692304849625],[127,272,71,-1.6825528629124165],[127,272,72,-1.6842196434736252],[127,272,73,-1.686759915202856],[127,272,74,-1.6886810474097729],[127,272,75,-1.6888935938477516],[127,272,76,-1.6868910305202007],[127,272,77,-1.6826980598270893],[127,272,78,-1.6773377247154713],[127,272,79,-1.6718230731785297],[127,273,64,-1.687890887260437],[127,273,65,-1.6905369460582733],[127,273,66,-1.691685564815998],[127,273,67,-1.6915019489824772],[127,273,68,-1.6907686330378056],[127,273,69,-1.6902731731534004],[127,273,70,-1.6900817304849625],[127,273,71,-1.6903653629124165],[127,273,72,-1.6920321434736252],[127,273,73,-1.694572415202856],[127,273,74,-1.6964935474097729],[127,273,75,-1.6967060938477516],[127,273,76,-1.6947035305202007],[127,273,77,-1.6905105598270893],[127,273,78,-1.6851502247154713],[127,273,79,-1.6796355731785297],[127,274,64,-1.695703387260437],[127,274,65,-1.6983494460582733],[127,274,66,-1.699498064815998],[127,274,67,-1.6993144489824772],[127,274,68,-1.6985811330378056],[127,274,69,-1.6980856731534004],[127,274,70,-1.6978942304849625],[127,274,71,-1.6981778629124165],[127,274,72,-1.6998446434736252],[127,274,73,-1.702384915202856],[127,274,74,-1.7043060474097729],[127,274,75,-1.7045185938477516],[127,274,76,-1.7025160305202007],[127,274,77,-1.6983230598270893],[127,274,78,-1.6929627247154713],[127,274,79,-1.6874480731785297],[127,275,64,-1.703515887260437],[127,275,65,-1.7061619460582733],[127,275,66,-1.707310564815998],[127,275,67,-1.7071269489824772],[127,275,68,-1.7063936330378056],[127,275,69,-1.7058981731534004],[127,275,70,-1.7057067304849625],[127,275,71,-1.7059903629124165],[127,275,72,-1.7076571434736252],[127,275,73,-1.710197415202856],[127,275,74,-1.7121185474097729],[127,275,75,-1.7123310938477516],[127,275,76,-1.7103285305202007],[127,275,77,-1.7061355598270893],[127,275,78,-1.7007752247154713],[127,275,79,-1.6952605731785297],[127,276,64,-1.711328387260437],[127,276,65,-1.7139744460582733],[127,276,66,-1.715123064815998],[127,276,67,-1.7149394489824772],[127,276,68,-1.7142061330378056],[127,276,69,-1.7137106731534004],[127,276,70,-1.7135192304849625],[127,276,71,-1.7138028629124165],[127,276,72,-1.7154696434736252],[127,276,73,-1.718009915202856],[127,276,74,-1.7199310474097729],[127,276,75,-1.7201435938477516],[127,276,76,-1.7181410305202007],[127,276,77,-1.7139480598270893],[127,276,78,-1.7085877247154713],[127,276,79,-1.7030730731785297],[127,277,64,-1.719140887260437],[127,277,65,-1.7217869460582733],[127,277,66,-1.722935564815998],[127,277,67,-1.7227519489824772],[127,277,68,-1.7220186330378056],[127,277,69,-1.7215231731534004],[127,277,70,-1.7213317304849625],[127,277,71,-1.7216153629124165],[127,277,72,-1.7232821434736252],[127,277,73,-1.725822415202856],[127,277,74,-1.7277435474097729],[127,277,75,-1.7279560938477516],[127,277,76,-1.7259535305202007],[127,277,77,-1.7217605598270893],[127,277,78,-1.7164002247154713],[127,277,79,-1.7108855731785297],[127,278,64,-1.726953387260437],[127,278,65,-1.7295994460582733],[127,278,66,-1.730748064815998],[127,278,67,-1.7305644489824772],[127,278,68,-1.7298311330378056],[127,278,69,-1.7293356731534004],[127,278,70,-1.7291442304849625],[127,278,71,-1.7294278629124165],[127,278,72,-1.7310946434736252],[127,278,73,-1.733634915202856],[127,278,74,-1.7355560474097729],[127,278,75,-1.7357685938477516],[127,278,76,-1.7337660305202007],[127,278,77,-1.7295730598270893],[127,278,78,-1.7242127247154713],[127,278,79,-1.7186980731785297],[127,279,64,-1.734765887260437],[127,279,65,-1.7374119460582733],[127,279,66,-1.738560564815998],[127,279,67,-1.7383769489824772],[127,279,68,-1.7376436330378056],[127,279,69,-1.7371481731534004],[127,279,70,-1.7369567304849625],[127,279,71,-1.7372403629124165],[127,279,72,-1.7389071434736252],[127,279,73,-1.741447415202856],[127,279,74,-1.7433685474097729],[127,279,75,-1.7435810938477516],[127,279,76,-1.7415785305202007],[127,279,77,-1.7373855598270893],[127,279,78,-1.7320252247154713],[127,279,79,-1.7265105731785297],[127,280,64,-1.742578387260437],[127,280,65,-1.7452244460582733],[127,280,66,-1.746373064815998],[127,280,67,-1.7461894489824772],[127,280,68,-1.7454561330378056],[127,280,69,-1.7449606731534004],[127,280,70,-1.7447692304849625],[127,280,71,-1.7450528629124165],[127,280,72,-1.7467196434736252],[127,280,73,-1.749259915202856],[127,280,74,-1.7511810474097729],[127,280,75,-1.7513935938477516],[127,280,76,-1.7493910305202007],[127,280,77,-1.7451980598270893],[127,280,78,-1.7398377247154713],[127,280,79,-1.7343230731785297],[127,281,64,-1.750390887260437],[127,281,65,-1.7530369460582733],[127,281,66,-1.754185564815998],[127,281,67,-1.7540019489824772],[127,281,68,-1.7532686330378056],[127,281,69,-1.7527731731534004],[127,281,70,-1.7525817304849625],[127,281,71,-1.7528653629124165],[127,281,72,-1.7545321434736252],[127,281,73,-1.757072415202856],[127,281,74,-1.7589935474097729],[127,281,75,-1.7592060938477516],[127,281,76,-1.7572035305202007],[127,281,77,-1.7530105598270893],[127,281,78,-1.7476502247154713],[127,281,79,-1.7421355731785297],[127,282,64,-1.758203387260437],[127,282,65,-1.7608494460582733],[127,282,66,-1.761998064815998],[127,282,67,-1.7618144489824772],[127,282,68,-1.7610811330378056],[127,282,69,-1.7605856731534004],[127,282,70,-1.7603942304849625],[127,282,71,-1.7606778629124165],[127,282,72,-1.7623446434736252],[127,282,73,-1.764884915202856],[127,282,74,-1.7668060474097729],[127,282,75,-1.7670185938477516],[127,282,76,-1.7650160305202007],[127,282,77,-1.7608230598270893],[127,282,78,-1.7554627247154713],[127,282,79,-1.7499480731785297],[127,283,64,-1.766015887260437],[127,283,65,-1.7686619460582733],[127,283,66,-1.769810564815998],[127,283,67,-1.7696269489824772],[127,283,68,-1.7688936330378056],[127,283,69,-1.7683981731534004],[127,283,70,-1.7682067304849625],[127,283,71,-1.7684903629124165],[127,283,72,-1.7701571434736252],[127,283,73,-1.772697415202856],[127,283,74,-1.7746185474097729],[127,283,75,-1.7748310938477516],[127,283,76,-1.7728285305202007],[127,283,77,-1.7686355598270893],[127,283,78,-1.7632752247154713],[127,283,79,-1.7577605731785297],[127,284,64,-1.773828387260437],[127,284,65,-1.7764744460582733],[127,284,66,-1.777623064815998],[127,284,67,-1.7774394489824772],[127,284,68,-1.7767061330378056],[127,284,69,-1.7762106731534004],[127,284,70,-1.7760192304849625],[127,284,71,-1.7763028629124165],[127,284,72,-1.7779696434736252],[127,284,73,-1.780509915202856],[127,284,74,-1.7824310474097729],[127,284,75,-1.7826435938477516],[127,284,76,-1.7806410305202007],[127,284,77,-1.7764480598270893],[127,284,78,-1.7710877247154713],[127,284,79,-1.7655730731785297],[127,285,64,-1.781640887260437],[127,285,65,-1.7842869460582733],[127,285,66,-1.785435564815998],[127,285,67,-1.7852519489824772],[127,285,68,-1.7845186330378056],[127,285,69,-1.7840231731534004],[127,285,70,-1.7838317304849625],[127,285,71,-1.7841153629124165],[127,285,72,-1.7857821434736252],[127,285,73,-1.788322415202856],[127,285,74,-1.7902435474097729],[127,285,75,-1.7904560938477516],[127,285,76,-1.7884535305202007],[127,285,77,-1.7842605598270893],[127,285,78,-1.7789002247154713],[127,285,79,-1.7733855731785297],[127,286,64,-1.789453387260437],[127,286,65,-1.7920994460582733],[127,286,66,-1.793248064815998],[127,286,67,-1.7930644489824772],[127,286,68,-1.7923311330378056],[127,286,69,-1.7918356731534004],[127,286,70,-1.7916442304849625],[127,286,71,-1.7919278629124165],[127,286,72,-1.7935946434736252],[127,286,73,-1.796134915202856],[127,286,74,-1.7980560474097729],[127,286,75,-1.7982685938477516],[127,286,76,-1.7962660305202007],[127,286,77,-1.7920730598270893],[127,286,78,-1.7867127247154713],[127,286,79,-1.7811980731785297],[127,287,64,-1.797265887260437],[127,287,65,-1.7999119460582733],[127,287,66,-1.801060564815998],[127,287,67,-1.8008769489824772],[127,287,68,-1.8001436330378056],[127,287,69,-1.7996481731534004],[127,287,70,-1.7994567304849625],[127,287,71,-1.7997403629124165],[127,287,72,-1.8014071434736252],[127,287,73,-1.803947415202856],[127,287,74,-1.8058685474097729],[127,287,75,-1.8060810938477516],[127,287,76,-1.8040785305202007],[127,287,77,-1.7998855598270893],[127,287,78,-1.7945252247154713],[127,287,79,-1.7890105731785297],[127,288,64,-1.805078387260437],[127,288,65,-1.8077244460582733],[127,288,66,-1.808873064815998],[127,288,67,-1.8086894489824772],[127,288,68,-1.8079561330378056],[127,288,69,-1.8074606731534004],[127,288,70,-1.8072692304849625],[127,288,71,-1.8075528629124165],[127,288,72,-1.8092196434736252],[127,288,73,-1.811759915202856],[127,288,74,-1.8136810474097729],[127,288,75,-1.8138935938477516],[127,288,76,-1.8118910305202007],[127,288,77,-1.8076980598270893],[127,288,78,-1.8023377247154713],[127,288,79,-1.7968230731785297],[127,289,64,-1.812890887260437],[127,289,65,-1.8155369460582733],[127,289,66,-1.816685564815998],[127,289,67,-1.8165019489824772],[127,289,68,-1.8157686330378056],[127,289,69,-1.8152731731534004],[127,289,70,-1.8150817304849625],[127,289,71,-1.8153653629124165],[127,289,72,-1.8170321434736252],[127,289,73,-1.819572415202856],[127,289,74,-1.8214935474097729],[127,289,75,-1.8217060938477516],[127,289,76,-1.8197035305202007],[127,289,77,-1.8155105598270893],[127,289,78,-1.8101502247154713],[127,289,79,-1.8046355731785297],[127,290,64,-1.820703387260437],[127,290,65,-1.8233494460582733],[127,290,66,-1.824498064815998],[127,290,67,-1.8243144489824772],[127,290,68,-1.8235811330378056],[127,290,69,-1.8230856731534004],[127,290,70,-1.8228942304849625],[127,290,71,-1.8231778629124165],[127,290,72,-1.8248446434736252],[127,290,73,-1.827384915202856],[127,290,74,-1.8293060474097729],[127,290,75,-1.8295185938477516],[127,290,76,-1.8275160305202007],[127,290,77,-1.8233230598270893],[127,290,78,-1.8179627247154713],[127,290,79,-1.8124480731785297],[127,291,64,-1.828515887260437],[127,291,65,-1.8311619460582733],[127,291,66,-1.832310564815998],[127,291,67,-1.8321269489824772],[127,291,68,-1.8313936330378056],[127,291,69,-1.8308981731534004],[127,291,70,-1.8307067304849625],[127,291,71,-1.8309903629124165],[127,291,72,-1.8326571434736252],[127,291,73,-1.835197415202856],[127,291,74,-1.8371185474097729],[127,291,75,-1.8373310938477516],[127,291,76,-1.8353285305202007],[127,291,77,-1.8311355598270893],[127,291,78,-1.8257752247154713],[127,291,79,-1.8202605731785297],[127,292,64,-1.836328387260437],[127,292,65,-1.8389744460582733],[127,292,66,-1.840123064815998],[127,292,67,-1.8399394489824772],[127,292,68,-1.8392061330378056],[127,292,69,-1.8387106731534004],[127,292,70,-1.8385192304849625],[127,292,71,-1.8388028629124165],[127,292,72,-1.8404696434736252],[127,292,73,-1.843009915202856],[127,292,74,-1.8449310474097729],[127,292,75,-1.8451435938477516],[127,292,76,-1.8431410305202007],[127,292,77,-1.8389480598270893],[127,292,78,-1.8335877247154713],[127,292,79,-1.8280730731785297],[127,293,64,-1.844140887260437],[127,293,65,-1.8467869460582733],[127,293,66,-1.847935564815998],[127,293,67,-1.8477519489824772],[127,293,68,-1.8470186330378056],[127,293,69,-1.8465231731534004],[127,293,70,-1.8463317304849625],[127,293,71,-1.8466153629124165],[127,293,72,-1.8482821434736252],[127,293,73,-1.850822415202856],[127,293,74,-1.8527435474097729],[127,293,75,-1.8529560938477516],[127,293,76,-1.8509535305202007],[127,293,77,-1.8467605598270893],[127,293,78,-1.8414002247154713],[127,293,79,-1.8358855731785297],[127,294,64,-1.851953387260437],[127,294,65,-1.8545994460582733],[127,294,66,-1.855748064815998],[127,294,67,-1.8555644489824772],[127,294,68,-1.8548311330378056],[127,294,69,-1.8543356731534004],[127,294,70,-1.8541442304849625],[127,294,71,-1.8544278629124165],[127,294,72,-1.8560946434736252],[127,294,73,-1.858634915202856],[127,294,74,-1.8605560474097729],[127,294,75,-1.8607685938477516],[127,294,76,-1.8587660305202007],[127,294,77,-1.8545730598270893],[127,294,78,-1.8492127247154713],[127,294,79,-1.8436980731785297],[127,295,64,-1.859765887260437],[127,295,65,-1.8624119460582733],[127,295,66,-1.863560564815998],[127,295,67,-1.8633769489824772],[127,295,68,-1.8626436330378056],[127,295,69,-1.8621481731534004],[127,295,70,-1.8619567304849625],[127,295,71,-1.8622403629124165],[127,295,72,-1.8639071434736252],[127,295,73,-1.866447415202856],[127,295,74,-1.8683685474097729],[127,295,75,-1.8685810938477516],[127,295,76,-1.8665785305202007],[127,295,77,-1.8623855598270893],[127,295,78,-1.8570252247154713],[127,295,79,-1.8515105731785297],[127,296,64,-1.867578387260437],[127,296,65,-1.8702244460582733],[127,296,66,-1.871373064815998],[127,296,67,-1.8711894489824772],[127,296,68,-1.8704561330378056],[127,296,69,-1.8699606731534004],[127,296,70,-1.8697692304849625],[127,296,71,-1.8700528629124165],[127,296,72,-1.8717196434736252],[127,296,73,-1.874259915202856],[127,296,74,-1.8761810474097729],[127,296,75,-1.8763935938477516],[127,296,76,-1.8743910305202007],[127,296,77,-1.8701980598270893],[127,296,78,-1.8648377247154713],[127,296,79,-1.8593230731785297],[127,297,64,-1.875390887260437],[127,297,65,-1.8780369460582733],[127,297,66,-1.879185564815998],[127,297,67,-1.8790019489824772],[127,297,68,-1.8782686330378056],[127,297,69,-1.8777731731534004],[127,297,70,-1.8775817304849625],[127,297,71,-1.8778653629124165],[127,297,72,-1.8795321434736252],[127,297,73,-1.882072415202856],[127,297,74,-1.8839935474097729],[127,297,75,-1.8842060938477516],[127,297,76,-1.8822035305202007],[127,297,77,-1.8780105598270893],[127,297,78,-1.8726502247154713],[127,297,79,-1.8671355731785297],[127,298,64,-1.883203387260437],[127,298,65,-1.8858494460582733],[127,298,66,-1.886998064815998],[127,298,67,-1.8868144489824772],[127,298,68,-1.8860811330378056],[127,298,69,-1.8855856731534004],[127,298,70,-1.8853942304849625],[127,298,71,-1.8856778629124165],[127,298,72,-1.8873446434736252],[127,298,73,-1.889884915202856],[127,298,74,-1.8918060474097729],[127,298,75,-1.8920185938477516],[127,298,76,-1.8900160305202007],[127,298,77,-1.8858230598270893],[127,298,78,-1.8804627247154713],[127,298,79,-1.8749480731785297],[127,299,64,-1.891015887260437],[127,299,65,-1.8936619460582733],[127,299,66,-1.894810564815998],[127,299,67,-1.8946269489824772],[127,299,68,-1.8938936330378056],[127,299,69,-1.8933981731534004],[127,299,70,-1.8932067304849625],[127,299,71,-1.8934903629124165],[127,299,72,-1.8951571434736252],[127,299,73,-1.897697415202856],[127,299,74,-1.8996185474097729],[127,299,75,-1.8998310938477516],[127,299,76,-1.8978285305202007],[127,299,77,-1.8936355598270893],[127,299,78,-1.8882752247154713],[127,299,79,-1.8827605731785297],[127,300,64,-1.898828387260437],[127,300,65,-1.9014744460582733],[127,300,66,-1.902623064815998],[127,300,67,-1.9024394489824772],[127,300,68,-1.9017061330378056],[127,300,69,-1.9012106731534004],[127,300,70,-1.9010192304849625],[127,300,71,-1.9013028629124165],[127,300,72,-1.9029696434736252],[127,300,73,-1.905509915202856],[127,300,74,-1.9074310474097729],[127,300,75,-1.9076435938477516],[127,300,76,-1.9056410305202007],[127,300,77,-1.9014480598270893],[127,300,78,-1.8960877247154713],[127,300,79,-1.8905730731785297],[127,301,64,-1.906640887260437],[127,301,65,-1.9092869460582733],[127,301,66,-1.910435564815998],[127,301,67,-1.9102519489824772],[127,301,68,-1.9095186330378056],[127,301,69,-1.9090231731534004],[127,301,70,-1.9088317304849625],[127,301,71,-1.9091153629124165],[127,301,72,-1.9107821434736252],[127,301,73,-1.913322415202856],[127,301,74,-1.9152435474097729],[127,301,75,-1.9154560938477516],[127,301,76,-1.9134535305202007],[127,301,77,-1.9092605598270893],[127,301,78,-1.9039002247154713],[127,301,79,-1.8983855731785297],[127,302,64,-1.914453387260437],[127,302,65,-1.9170994460582733],[127,302,66,-1.918248064815998],[127,302,67,-1.9180644489824772],[127,302,68,-1.9173311330378056],[127,302,69,-1.9168356731534004],[127,302,70,-1.9166442304849625],[127,302,71,-1.9169278629124165],[127,302,72,-1.9185946434736252],[127,302,73,-1.921134915202856],[127,302,74,-1.9230560474097729],[127,302,75,-1.9232685938477516],[127,302,76,-1.9212660305202007],[127,302,77,-1.9170730598270893],[127,302,78,-1.9117127247154713],[127,302,79,-1.9061980731785297],[127,303,64,-1.922265887260437],[127,303,65,-1.9249119460582733],[127,303,66,-1.926060564815998],[127,303,67,-1.9258769489824772],[127,303,68,-1.9251436330378056],[127,303,69,-1.9246481731534004],[127,303,70,-1.9244567304849625],[127,303,71,-1.9247403629124165],[127,303,72,-1.9264071434736252],[127,303,73,-1.928947415202856],[127,303,74,-1.9308685474097729],[127,303,75,-1.9310810938477516],[127,303,76,-1.9290785305202007],[127,303,77,-1.9248855598270893],[127,303,78,-1.9195252247154713],[127,303,79,-1.9140105731785297],[127,304,64,-1.930078387260437],[127,304,65,-1.9327244460582733],[127,304,66,-1.933873064815998],[127,304,67,-1.9336894489824772],[127,304,68,-1.9329561330378056],[127,304,69,-1.9324606731534004],[127,304,70,-1.9322692304849625],[127,304,71,-1.9325528629124165],[127,304,72,-1.9342196434736252],[127,304,73,-1.936759915202856],[127,304,74,-1.9386810474097729],[127,304,75,-1.9388935938477516],[127,304,76,-1.9368910305202007],[127,304,77,-1.9326980598270893],[127,304,78,-1.9273377247154713],[127,304,79,-1.9218230731785297],[127,305,64,-1.937890887260437],[127,305,65,-1.9405369460582733],[127,305,66,-1.941685564815998],[127,305,67,-1.9415019489824772],[127,305,68,-1.9407686330378056],[127,305,69,-1.9402731731534004],[127,305,70,-1.9400817304849625],[127,305,71,-1.9403653629124165],[127,305,72,-1.9420321434736252],[127,305,73,-1.944572415202856],[127,305,74,-1.9464935474097729],[127,305,75,-1.9467060938477516],[127,305,76,-1.9447035305202007],[127,305,77,-1.9405105598270893],[127,305,78,-1.9351502247154713],[127,305,79,-1.9296355731785297],[127,306,64,-1.945703387260437],[127,306,65,-1.9483494460582733],[127,306,66,-1.949498064815998],[127,306,67,-1.9493144489824772],[127,306,68,-1.9485811330378056],[127,306,69,-1.9480856731534004],[127,306,70,-1.9478942304849625],[127,306,71,-1.9481778629124165],[127,306,72,-1.9498446434736252],[127,306,73,-1.952384915202856],[127,306,74,-1.9543060474097729],[127,306,75,-1.9545185938477516],[127,306,76,-1.9525160305202007],[127,306,77,-1.9483230598270893],[127,306,78,-1.9429627247154713],[127,306,79,-1.9374480731785297],[127,307,64,-1.953515887260437],[127,307,65,-1.9561619460582733],[127,307,66,-1.957310564815998],[127,307,67,-1.9571269489824772],[127,307,68,-1.9563936330378056],[127,307,69,-1.9558981731534004],[127,307,70,-1.9557067304849625],[127,307,71,-1.9559903629124165],[127,307,72,-1.9576571434736252],[127,307,73,-1.960197415202856],[127,307,74,-1.9621185474097729],[127,307,75,-1.9623310938477516],[127,307,76,-1.9603285305202007],[127,307,77,-1.9561355598270893],[127,307,78,-1.9507752247154713],[127,307,79,-1.9452605731785297],[127,308,64,-1.961328387260437],[127,308,65,-1.9639744460582733],[127,308,66,-1.965123064815998],[127,308,67,-1.9649394489824772],[127,308,68,-1.9642061330378056],[127,308,69,-1.9637106731534004],[127,308,70,-1.9635192304849625],[127,308,71,-1.9638028629124165],[127,308,72,-1.9654696434736252],[127,308,73,-1.968009915202856],[127,308,74,-1.9699310474097729],[127,308,75,-1.9701435938477516],[127,308,76,-1.9681410305202007],[127,308,77,-1.9639480598270893],[127,308,78,-1.9585877247154713],[127,308,79,-1.9530730731785297],[127,309,64,-1.969140887260437],[127,309,65,-1.9717869460582733],[127,309,66,-1.972935564815998],[127,309,67,-1.9727519489824772],[127,309,68,-1.9720186330378056],[127,309,69,-1.9715231731534004],[127,309,70,-1.9713317304849625],[127,309,71,-1.9716153629124165],[127,309,72,-1.9732821434736252],[127,309,73,-1.975822415202856],[127,309,74,-1.9777435474097729],[127,309,75,-1.9779560938477516],[127,309,76,-1.9759535305202007],[127,309,77,-1.9717605598270893],[127,309,78,-1.9664002247154713],[127,309,79,-1.9608855731785297],[127,310,64,-1.976953387260437],[127,310,65,-1.9795994460582733],[127,310,66,-1.980748064815998],[127,310,67,-1.9805644489824772],[127,310,68,-1.9798311330378056],[127,310,69,-1.9793356731534004],[127,310,70,-1.9791442304849625],[127,310,71,-1.9794278629124165],[127,310,72,-1.9810946434736252],[127,310,73,-1.983634915202856],[127,310,74,-1.9855560474097729],[127,310,75,-1.9857685938477516],[127,310,76,-1.9837660305202007],[127,310,77,-1.9795730598270893],[127,310,78,-1.9742127247154713],[127,310,79,-1.9686980731785297],[127,311,64,-1.984765887260437],[127,311,65,-1.9874119460582733],[127,311,66,-1.988560564815998],[127,311,67,-1.9883769489824772],[127,311,68,-1.9876436330378056],[127,311,69,-1.9871481731534004],[127,311,70,-1.9869567304849625],[127,311,71,-1.9872403629124165],[127,311,72,-1.9889071434736252],[127,311,73,-1.991447415202856],[127,311,74,-1.9933685474097729],[127,311,75,-1.9935810938477516],[127,311,76,-1.9915785305202007],[127,311,77,-1.9873855598270893],[127,311,78,-1.9820252247154713],[127,311,79,-1.9765105731785297],[127,312,64,-1.992578387260437],[127,312,65,-1.9952244460582733],[127,312,66,-1.996373064815998],[127,312,67,-1.9961894489824772],[127,312,68,-1.9954561330378056],[127,312,69,-1.9949606731534004],[127,312,70,-1.9947692304849625],[127,312,71,-1.9950528629124165],[127,312,72,-1.9967196434736252],[127,312,73,-1.999259915202856],[127,312,74,-2.001181047409773],[127,312,75,-2.0013935938477516],[127,312,76,-1.9993910305202007],[127,312,77,-1.9951980598270893],[127,312,78,-1.9898377247154713],[127,312,79,-1.9843230731785297],[127,313,64,-2.000390887260437],[127,313,65,-2.0030369460582733],[127,313,66,-2.004185564815998],[127,313,67,-2.004001948982477],[127,313,68,-2.0032686330378056],[127,313,69,-2.0027731731534004],[127,313,70,-2.0025817304849625],[127,313,71,-2.0028653629124165],[127,313,72,-2.004532143473625],[127,313,73,-2.007072415202856],[127,313,74,-2.008993547409773],[127,313,75,-2.0092060938477516],[127,313,76,-2.0072035305202007],[127,313,77,-2.0030105598270893],[127,313,78,-1.9976502247154713],[127,313,79,-1.9921355731785297],[127,314,64,-2.008203387260437],[127,314,65,-2.0108494460582733],[127,314,66,-2.011998064815998],[127,314,67,-2.011814448982477],[127,314,68,-2.0110811330378056],[127,314,69,-2.0105856731534004],[127,314,70,-2.0103942304849625],[127,314,71,-2.0106778629124165],[127,314,72,-2.012344643473625],[127,314,73,-2.014884915202856],[127,314,74,-2.016806047409773],[127,314,75,-2.0170185938477516],[127,314,76,-2.0150160305202007],[127,314,77,-2.0108230598270893],[127,314,78,-2.0054627247154713],[127,314,79,-1.9999480731785297],[127,315,64,-2.016015887260437],[127,315,65,-2.0186619460582733],[127,315,66,-2.019810564815998],[127,315,67,-2.019626948982477],[127,315,68,-2.0188936330378056],[127,315,69,-2.0183981731534004],[127,315,70,-2.0182067304849625],[127,315,71,-2.0184903629124165],[127,315,72,-2.020157143473625],[127,315,73,-2.022697415202856],[127,315,74,-2.024618547409773],[127,315,75,-2.0248310938477516],[127,315,76,-2.0228285305202007],[127,315,77,-2.0186355598270893],[127,315,78,-2.0132752247154713],[127,315,79,-2.0077605731785297],[127,316,64,-2.023828387260437],[127,316,65,-2.0264744460582733],[127,316,66,-2.027623064815998],[127,316,67,-2.027439448982477],[127,316,68,-2.0267061330378056],[127,316,69,-2.0262106731534004],[127,316,70,-2.0260192304849625],[127,316,71,-2.0263028629124165],[127,316,72,-2.027969643473625],[127,316,73,-2.030509915202856],[127,316,74,-2.032431047409773],[127,316,75,-2.0326435938477516],[127,316,76,-2.0306410305202007],[127,316,77,-2.0264480598270893],[127,316,78,-2.0210877247154713],[127,316,79,-2.0155730731785297],[127,317,64,-2.031640887260437],[127,317,65,-2.0342869460582733],[127,317,66,-2.035435564815998],[127,317,67,-2.035251948982477],[127,317,68,-2.0345186330378056],[127,317,69,-2.0340231731534004],[127,317,70,-2.0338317304849625],[127,317,71,-2.0341153629124165],[127,317,72,-2.035782143473625],[127,317,73,-2.038322415202856],[127,317,74,-2.040243547409773],[127,317,75,-2.0404560938477516],[127,317,76,-2.0384535305202007],[127,317,77,-2.0342605598270893],[127,317,78,-2.0289002247154713],[127,317,79,-2.0233855731785297],[127,318,64,-2.039453387260437],[127,318,65,-2.0420994460582733],[127,318,66,-2.043248064815998],[127,318,67,-2.043064448982477],[127,318,68,-2.0423311330378056],[127,318,69,-2.0418356731534004],[127,318,70,-2.0416442304849625],[127,318,71,-2.0419278629124165],[127,318,72,-2.043594643473625],[127,318,73,-2.046134915202856],[127,318,74,-2.048056047409773],[127,318,75,-2.0482685938477516],[127,318,76,-2.0462660305202007],[127,318,77,-2.0420730598270893],[127,318,78,-2.0367127247154713],[127,318,79,-2.0311980731785297],[127,319,64,-2.047265887260437],[127,319,65,-2.0499119460582733],[127,319,66,-2.051060564815998],[127,319,67,-2.050876948982477],[127,319,68,-2.0501436330378056],[127,319,69,-2.0496481731534004],[127,319,70,-2.0494567304849625],[127,319,71,-2.0497403629124165],[127,319,72,-2.051407143473625],[127,319,73,-2.053947415202856],[127,319,74,-2.055868547409773],[127,319,75,-2.0560810938477516],[127,319,76,-2.0540785305202007],[127,319,77,-2.0498855598270893],[127,319,78,-2.0445252247154713],[127,319,79,-2.0390105731785297]] diff --git a/pumpkin-world/assets/converted_factor_7_4.json b/pumpkin-world/assets/converted_factor_7_4.json new file mode 100644 index 000000000..21a7c58f4 --- /dev/null +++ b/pumpkin-world/assets/converted_factor_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,5.943154811859131],[112,-64,65,5.932080268859863],[112,-64,66,5.9225616455078125],[112,-64,67,5.917882919311523],[112,-64,68,5.9184064865112305],[112,-64,69,5.923328876495361],[112,-64,70,5.931975364685059],[112,-64,71,5.941537857055664],[112,-64,72,5.945594310760498],[112,-64,73,5.946962833404541],[112,-64,74,5.956364631652832],[112,-64,75,5.9605536460876465],[112,-64,76,5.951775550842285],[112,-64,77,5.933669567108154],[112,-64,78,5.909780025482178],[112,-64,79,5.880720138549805],[112,-63,64,5.943154811859131],[112,-63,65,5.932080268859863],[112,-63,66,5.9225616455078125],[112,-63,67,5.917882919311523],[112,-63,68,5.9184064865112305],[112,-63,69,5.923328876495361],[112,-63,70,5.931975364685059],[112,-63,71,5.941537857055664],[112,-63,72,5.945594310760498],[112,-63,73,5.946962833404541],[112,-63,74,5.956364631652832],[112,-63,75,5.9605536460876465],[112,-63,76,5.951775550842285],[112,-63,77,5.933669567108154],[112,-63,78,5.909780025482178],[112,-63,79,5.880720138549805],[112,-62,64,5.943154811859131],[112,-62,65,5.932080268859863],[112,-62,66,5.9225616455078125],[112,-62,67,5.917882919311523],[112,-62,68,5.9184064865112305],[112,-62,69,5.923328876495361],[112,-62,70,5.931975364685059],[112,-62,71,5.941537857055664],[112,-62,72,5.945594310760498],[112,-62,73,5.946962833404541],[112,-62,74,5.956364631652832],[112,-62,75,5.9605536460876465],[112,-62,76,5.951775550842285],[112,-62,77,5.933669567108154],[112,-62,78,5.909780025482178],[112,-62,79,5.880720138549805],[112,-61,64,5.943154811859131],[112,-61,65,5.932080268859863],[112,-61,66,5.9225616455078125],[112,-61,67,5.917882919311523],[112,-61,68,5.9184064865112305],[112,-61,69,5.923328876495361],[112,-61,70,5.931975364685059],[112,-61,71,5.941537857055664],[112,-61,72,5.945594310760498],[112,-61,73,5.946962833404541],[112,-61,74,5.956364631652832],[112,-61,75,5.9605536460876465],[112,-61,76,5.951775550842285],[112,-61,77,5.933669567108154],[112,-61,78,5.909780025482178],[112,-61,79,5.880720138549805],[112,-60,64,5.943154811859131],[112,-60,65,5.932080268859863],[112,-60,66,5.9225616455078125],[112,-60,67,5.917882919311523],[112,-60,68,5.9184064865112305],[112,-60,69,5.923328876495361],[112,-60,70,5.931975364685059],[112,-60,71,5.941537857055664],[112,-60,72,5.945594310760498],[112,-60,73,5.946962833404541],[112,-60,74,5.956364631652832],[112,-60,75,5.9605536460876465],[112,-60,76,5.951775550842285],[112,-60,77,5.933669567108154],[112,-60,78,5.909780025482178],[112,-60,79,5.880720138549805],[112,-59,64,5.943154811859131],[112,-59,65,5.932080268859863],[112,-59,66,5.9225616455078125],[112,-59,67,5.917882919311523],[112,-59,68,5.9184064865112305],[112,-59,69,5.923328876495361],[112,-59,70,5.931975364685059],[112,-59,71,5.941537857055664],[112,-59,72,5.945594310760498],[112,-59,73,5.946962833404541],[112,-59,74,5.956364631652832],[112,-59,75,5.9605536460876465],[112,-59,76,5.951775550842285],[112,-59,77,5.933669567108154],[112,-59,78,5.909780025482178],[112,-59,79,5.880720138549805],[112,-58,64,5.943154811859131],[112,-58,65,5.932080268859863],[112,-58,66,5.9225616455078125],[112,-58,67,5.917882919311523],[112,-58,68,5.9184064865112305],[112,-58,69,5.923328876495361],[112,-58,70,5.931975364685059],[112,-58,71,5.941537857055664],[112,-58,72,5.945594310760498],[112,-58,73,5.946962833404541],[112,-58,74,5.956364631652832],[112,-58,75,5.9605536460876465],[112,-58,76,5.951775550842285],[112,-58,77,5.933669567108154],[112,-58,78,5.909780025482178],[112,-58,79,5.880720138549805],[112,-57,64,5.943154811859131],[112,-57,65,5.932080268859863],[112,-57,66,5.9225616455078125],[112,-57,67,5.917882919311523],[112,-57,68,5.9184064865112305],[112,-57,69,5.923328876495361],[112,-57,70,5.931975364685059],[112,-57,71,5.941537857055664],[112,-57,72,5.945594310760498],[112,-57,73,5.946962833404541],[112,-57,74,5.956364631652832],[112,-57,75,5.9605536460876465],[112,-57,76,5.951775550842285],[112,-57,77,5.933669567108154],[112,-57,78,5.909780025482178],[112,-57,79,5.880720138549805],[112,-56,64,5.943154811859131],[112,-56,65,5.932080268859863],[112,-56,66,5.9225616455078125],[112,-56,67,5.917882919311523],[112,-56,68,5.9184064865112305],[112,-56,69,5.923328876495361],[112,-56,70,5.931975364685059],[112,-56,71,5.941537857055664],[112,-56,72,5.945594310760498],[112,-56,73,5.946962833404541],[112,-56,74,5.956364631652832],[112,-56,75,5.9605536460876465],[112,-56,76,5.951775550842285],[112,-56,77,5.933669567108154],[112,-56,78,5.909780025482178],[112,-56,79,5.880720138549805],[112,-55,64,5.943154811859131],[112,-55,65,5.932080268859863],[112,-55,66,5.9225616455078125],[112,-55,67,5.917882919311523],[112,-55,68,5.9184064865112305],[112,-55,69,5.923328876495361],[112,-55,70,5.931975364685059],[112,-55,71,5.941537857055664],[112,-55,72,5.945594310760498],[112,-55,73,5.946962833404541],[112,-55,74,5.956364631652832],[112,-55,75,5.9605536460876465],[112,-55,76,5.951775550842285],[112,-55,77,5.933669567108154],[112,-55,78,5.909780025482178],[112,-55,79,5.880720138549805],[112,-54,64,5.943154811859131],[112,-54,65,5.932080268859863],[112,-54,66,5.9225616455078125],[112,-54,67,5.917882919311523],[112,-54,68,5.9184064865112305],[112,-54,69,5.923328876495361],[112,-54,70,5.931975364685059],[112,-54,71,5.941537857055664],[112,-54,72,5.945594310760498],[112,-54,73,5.946962833404541],[112,-54,74,5.956364631652832],[112,-54,75,5.9605536460876465],[112,-54,76,5.951775550842285],[112,-54,77,5.933669567108154],[112,-54,78,5.909780025482178],[112,-54,79,5.880720138549805],[112,-53,64,5.943154811859131],[112,-53,65,5.932080268859863],[112,-53,66,5.9225616455078125],[112,-53,67,5.917882919311523],[112,-53,68,5.9184064865112305],[112,-53,69,5.923328876495361],[112,-53,70,5.931975364685059],[112,-53,71,5.941537857055664],[112,-53,72,5.945594310760498],[112,-53,73,5.946962833404541],[112,-53,74,5.956364631652832],[112,-53,75,5.9605536460876465],[112,-53,76,5.951775550842285],[112,-53,77,5.933669567108154],[112,-53,78,5.909780025482178],[112,-53,79,5.880720138549805],[112,-52,64,5.943154811859131],[112,-52,65,5.932080268859863],[112,-52,66,5.9225616455078125],[112,-52,67,5.917882919311523],[112,-52,68,5.9184064865112305],[112,-52,69,5.923328876495361],[112,-52,70,5.931975364685059],[112,-52,71,5.941537857055664],[112,-52,72,5.945594310760498],[112,-52,73,5.946962833404541],[112,-52,74,5.956364631652832],[112,-52,75,5.9605536460876465],[112,-52,76,5.951775550842285],[112,-52,77,5.933669567108154],[112,-52,78,5.909780025482178],[112,-52,79,5.880720138549805],[112,-51,64,5.943154811859131],[112,-51,65,5.932080268859863],[112,-51,66,5.9225616455078125],[112,-51,67,5.917882919311523],[112,-51,68,5.9184064865112305],[112,-51,69,5.923328876495361],[112,-51,70,5.931975364685059],[112,-51,71,5.941537857055664],[112,-51,72,5.945594310760498],[112,-51,73,5.946962833404541],[112,-51,74,5.956364631652832],[112,-51,75,5.9605536460876465],[112,-51,76,5.951775550842285],[112,-51,77,5.933669567108154],[112,-51,78,5.909780025482178],[112,-51,79,5.880720138549805],[112,-50,64,5.943154811859131],[112,-50,65,5.932080268859863],[112,-50,66,5.9225616455078125],[112,-50,67,5.917882919311523],[112,-50,68,5.9184064865112305],[112,-50,69,5.923328876495361],[112,-50,70,5.931975364685059],[112,-50,71,5.941537857055664],[112,-50,72,5.945594310760498],[112,-50,73,5.946962833404541],[112,-50,74,5.956364631652832],[112,-50,75,5.9605536460876465],[112,-50,76,5.951775550842285],[112,-50,77,5.933669567108154],[112,-50,78,5.909780025482178],[112,-50,79,5.880720138549805],[112,-49,64,5.943154811859131],[112,-49,65,5.932080268859863],[112,-49,66,5.9225616455078125],[112,-49,67,5.917882919311523],[112,-49,68,5.9184064865112305],[112,-49,69,5.923328876495361],[112,-49,70,5.931975364685059],[112,-49,71,5.941537857055664],[112,-49,72,5.945594310760498],[112,-49,73,5.946962833404541],[112,-49,74,5.956364631652832],[112,-49,75,5.9605536460876465],[112,-49,76,5.951775550842285],[112,-49,77,5.933669567108154],[112,-49,78,5.909780025482178],[112,-49,79,5.880720138549805],[112,-48,64,5.943154811859131],[112,-48,65,5.932080268859863],[112,-48,66,5.9225616455078125],[112,-48,67,5.917882919311523],[112,-48,68,5.9184064865112305],[112,-48,69,5.923328876495361],[112,-48,70,5.931975364685059],[112,-48,71,5.941537857055664],[112,-48,72,5.945594310760498],[112,-48,73,5.946962833404541],[112,-48,74,5.956364631652832],[112,-48,75,5.9605536460876465],[112,-48,76,5.951775550842285],[112,-48,77,5.933669567108154],[112,-48,78,5.909780025482178],[112,-48,79,5.880720138549805],[112,-47,64,5.943154811859131],[112,-47,65,5.932080268859863],[112,-47,66,5.9225616455078125],[112,-47,67,5.917882919311523],[112,-47,68,5.9184064865112305],[112,-47,69,5.923328876495361],[112,-47,70,5.931975364685059],[112,-47,71,5.941537857055664],[112,-47,72,5.945594310760498],[112,-47,73,5.946962833404541],[112,-47,74,5.956364631652832],[112,-47,75,5.9605536460876465],[112,-47,76,5.951775550842285],[112,-47,77,5.933669567108154],[112,-47,78,5.909780025482178],[112,-47,79,5.880720138549805],[112,-46,64,5.943154811859131],[112,-46,65,5.932080268859863],[112,-46,66,5.9225616455078125],[112,-46,67,5.917882919311523],[112,-46,68,5.9184064865112305],[112,-46,69,5.923328876495361],[112,-46,70,5.931975364685059],[112,-46,71,5.941537857055664],[112,-46,72,5.945594310760498],[112,-46,73,5.946962833404541],[112,-46,74,5.956364631652832],[112,-46,75,5.9605536460876465],[112,-46,76,5.951775550842285],[112,-46,77,5.933669567108154],[112,-46,78,5.909780025482178],[112,-46,79,5.880720138549805],[112,-45,64,5.943154811859131],[112,-45,65,5.932080268859863],[112,-45,66,5.9225616455078125],[112,-45,67,5.917882919311523],[112,-45,68,5.9184064865112305],[112,-45,69,5.923328876495361],[112,-45,70,5.931975364685059],[112,-45,71,5.941537857055664],[112,-45,72,5.945594310760498],[112,-45,73,5.946962833404541],[112,-45,74,5.956364631652832],[112,-45,75,5.9605536460876465],[112,-45,76,5.951775550842285],[112,-45,77,5.933669567108154],[112,-45,78,5.909780025482178],[112,-45,79,5.880720138549805],[112,-44,64,5.943154811859131],[112,-44,65,5.932080268859863],[112,-44,66,5.9225616455078125],[112,-44,67,5.917882919311523],[112,-44,68,5.9184064865112305],[112,-44,69,5.923328876495361],[112,-44,70,5.931975364685059],[112,-44,71,5.941537857055664],[112,-44,72,5.945594310760498],[112,-44,73,5.946962833404541],[112,-44,74,5.956364631652832],[112,-44,75,5.9605536460876465],[112,-44,76,5.951775550842285],[112,-44,77,5.933669567108154],[112,-44,78,5.909780025482178],[112,-44,79,5.880720138549805],[112,-43,64,5.943154811859131],[112,-43,65,5.932080268859863],[112,-43,66,5.9225616455078125],[112,-43,67,5.917882919311523],[112,-43,68,5.9184064865112305],[112,-43,69,5.923328876495361],[112,-43,70,5.931975364685059],[112,-43,71,5.941537857055664],[112,-43,72,5.945594310760498],[112,-43,73,5.946962833404541],[112,-43,74,5.956364631652832],[112,-43,75,5.9605536460876465],[112,-43,76,5.951775550842285],[112,-43,77,5.933669567108154],[112,-43,78,5.909780025482178],[112,-43,79,5.880720138549805],[112,-42,64,5.943154811859131],[112,-42,65,5.932080268859863],[112,-42,66,5.9225616455078125],[112,-42,67,5.917882919311523],[112,-42,68,5.9184064865112305],[112,-42,69,5.923328876495361],[112,-42,70,5.931975364685059],[112,-42,71,5.941537857055664],[112,-42,72,5.945594310760498],[112,-42,73,5.946962833404541],[112,-42,74,5.956364631652832],[112,-42,75,5.9605536460876465],[112,-42,76,5.951775550842285],[112,-42,77,5.933669567108154],[112,-42,78,5.909780025482178],[112,-42,79,5.880720138549805],[112,-41,64,5.943154811859131],[112,-41,65,5.932080268859863],[112,-41,66,5.9225616455078125],[112,-41,67,5.917882919311523],[112,-41,68,5.9184064865112305],[112,-41,69,5.923328876495361],[112,-41,70,5.931975364685059],[112,-41,71,5.941537857055664],[112,-41,72,5.945594310760498],[112,-41,73,5.946962833404541],[112,-41,74,5.956364631652832],[112,-41,75,5.9605536460876465],[112,-41,76,5.951775550842285],[112,-41,77,5.933669567108154],[112,-41,78,5.909780025482178],[112,-41,79,5.880720138549805],[112,-40,64,5.943154811859131],[112,-40,65,5.932080268859863],[112,-40,66,5.9225616455078125],[112,-40,67,5.917882919311523],[112,-40,68,5.9184064865112305],[112,-40,69,5.923328876495361],[112,-40,70,5.931975364685059],[112,-40,71,5.941537857055664],[112,-40,72,5.945594310760498],[112,-40,73,5.946962833404541],[112,-40,74,5.956364631652832],[112,-40,75,5.9605536460876465],[112,-40,76,5.951775550842285],[112,-40,77,5.933669567108154],[112,-40,78,5.909780025482178],[112,-40,79,5.880720138549805],[112,-39,64,5.943154811859131],[112,-39,65,5.932080268859863],[112,-39,66,5.9225616455078125],[112,-39,67,5.917882919311523],[112,-39,68,5.9184064865112305],[112,-39,69,5.923328876495361],[112,-39,70,5.931975364685059],[112,-39,71,5.941537857055664],[112,-39,72,5.945594310760498],[112,-39,73,5.946962833404541],[112,-39,74,5.956364631652832],[112,-39,75,5.9605536460876465],[112,-39,76,5.951775550842285],[112,-39,77,5.933669567108154],[112,-39,78,5.909780025482178],[112,-39,79,5.880720138549805],[112,-38,64,5.943154811859131],[112,-38,65,5.932080268859863],[112,-38,66,5.9225616455078125],[112,-38,67,5.917882919311523],[112,-38,68,5.9184064865112305],[112,-38,69,5.923328876495361],[112,-38,70,5.931975364685059],[112,-38,71,5.941537857055664],[112,-38,72,5.945594310760498],[112,-38,73,5.946962833404541],[112,-38,74,5.956364631652832],[112,-38,75,5.9605536460876465],[112,-38,76,5.951775550842285],[112,-38,77,5.933669567108154],[112,-38,78,5.909780025482178],[112,-38,79,5.880720138549805],[112,-37,64,5.943154811859131],[112,-37,65,5.932080268859863],[112,-37,66,5.9225616455078125],[112,-37,67,5.917882919311523],[112,-37,68,5.9184064865112305],[112,-37,69,5.923328876495361],[112,-37,70,5.931975364685059],[112,-37,71,5.941537857055664],[112,-37,72,5.945594310760498],[112,-37,73,5.946962833404541],[112,-37,74,5.956364631652832],[112,-37,75,5.9605536460876465],[112,-37,76,5.951775550842285],[112,-37,77,5.933669567108154],[112,-37,78,5.909780025482178],[112,-37,79,5.880720138549805],[112,-36,64,5.943154811859131],[112,-36,65,5.932080268859863],[112,-36,66,5.9225616455078125],[112,-36,67,5.917882919311523],[112,-36,68,5.9184064865112305],[112,-36,69,5.923328876495361],[112,-36,70,5.931975364685059],[112,-36,71,5.941537857055664],[112,-36,72,5.945594310760498],[112,-36,73,5.946962833404541],[112,-36,74,5.956364631652832],[112,-36,75,5.9605536460876465],[112,-36,76,5.951775550842285],[112,-36,77,5.933669567108154],[112,-36,78,5.909780025482178],[112,-36,79,5.880720138549805],[112,-35,64,5.943154811859131],[112,-35,65,5.932080268859863],[112,-35,66,5.9225616455078125],[112,-35,67,5.917882919311523],[112,-35,68,5.9184064865112305],[112,-35,69,5.923328876495361],[112,-35,70,5.931975364685059],[112,-35,71,5.941537857055664],[112,-35,72,5.945594310760498],[112,-35,73,5.946962833404541],[112,-35,74,5.956364631652832],[112,-35,75,5.9605536460876465],[112,-35,76,5.951775550842285],[112,-35,77,5.933669567108154],[112,-35,78,5.909780025482178],[112,-35,79,5.880720138549805],[112,-34,64,5.943154811859131],[112,-34,65,5.932080268859863],[112,-34,66,5.9225616455078125],[112,-34,67,5.917882919311523],[112,-34,68,5.9184064865112305],[112,-34,69,5.923328876495361],[112,-34,70,5.931975364685059],[112,-34,71,5.941537857055664],[112,-34,72,5.945594310760498],[112,-34,73,5.946962833404541],[112,-34,74,5.956364631652832],[112,-34,75,5.9605536460876465],[112,-34,76,5.951775550842285],[112,-34,77,5.933669567108154],[112,-34,78,5.909780025482178],[112,-34,79,5.880720138549805],[112,-33,64,5.943154811859131],[112,-33,65,5.932080268859863],[112,-33,66,5.9225616455078125],[112,-33,67,5.917882919311523],[112,-33,68,5.9184064865112305],[112,-33,69,5.923328876495361],[112,-33,70,5.931975364685059],[112,-33,71,5.941537857055664],[112,-33,72,5.945594310760498],[112,-33,73,5.946962833404541],[112,-33,74,5.956364631652832],[112,-33,75,5.9605536460876465],[112,-33,76,5.951775550842285],[112,-33,77,5.933669567108154],[112,-33,78,5.909780025482178],[112,-33,79,5.880720138549805],[112,-32,64,5.943154811859131],[112,-32,65,5.932080268859863],[112,-32,66,5.9225616455078125],[112,-32,67,5.917882919311523],[112,-32,68,5.9184064865112305],[112,-32,69,5.923328876495361],[112,-32,70,5.931975364685059],[112,-32,71,5.941537857055664],[112,-32,72,5.945594310760498],[112,-32,73,5.946962833404541],[112,-32,74,5.956364631652832],[112,-32,75,5.9605536460876465],[112,-32,76,5.951775550842285],[112,-32,77,5.933669567108154],[112,-32,78,5.909780025482178],[112,-32,79,5.880720138549805],[112,-31,64,5.943154811859131],[112,-31,65,5.932080268859863],[112,-31,66,5.9225616455078125],[112,-31,67,5.917882919311523],[112,-31,68,5.9184064865112305],[112,-31,69,5.923328876495361],[112,-31,70,5.931975364685059],[112,-31,71,5.941537857055664],[112,-31,72,5.945594310760498],[112,-31,73,5.946962833404541],[112,-31,74,5.956364631652832],[112,-31,75,5.9605536460876465],[112,-31,76,5.951775550842285],[112,-31,77,5.933669567108154],[112,-31,78,5.909780025482178],[112,-31,79,5.880720138549805],[112,-30,64,5.943154811859131],[112,-30,65,5.932080268859863],[112,-30,66,5.9225616455078125],[112,-30,67,5.917882919311523],[112,-30,68,5.9184064865112305],[112,-30,69,5.923328876495361],[112,-30,70,5.931975364685059],[112,-30,71,5.941537857055664],[112,-30,72,5.945594310760498],[112,-30,73,5.946962833404541],[112,-30,74,5.956364631652832],[112,-30,75,5.9605536460876465],[112,-30,76,5.951775550842285],[112,-30,77,5.933669567108154],[112,-30,78,5.909780025482178],[112,-30,79,5.880720138549805],[112,-29,64,5.943154811859131],[112,-29,65,5.932080268859863],[112,-29,66,5.9225616455078125],[112,-29,67,5.917882919311523],[112,-29,68,5.9184064865112305],[112,-29,69,5.923328876495361],[112,-29,70,5.931975364685059],[112,-29,71,5.941537857055664],[112,-29,72,5.945594310760498],[112,-29,73,5.946962833404541],[112,-29,74,5.956364631652832],[112,-29,75,5.9605536460876465],[112,-29,76,5.951775550842285],[112,-29,77,5.933669567108154],[112,-29,78,5.909780025482178],[112,-29,79,5.880720138549805],[112,-28,64,5.943154811859131],[112,-28,65,5.932080268859863],[112,-28,66,5.9225616455078125],[112,-28,67,5.917882919311523],[112,-28,68,5.9184064865112305],[112,-28,69,5.923328876495361],[112,-28,70,5.931975364685059],[112,-28,71,5.941537857055664],[112,-28,72,5.945594310760498],[112,-28,73,5.946962833404541],[112,-28,74,5.956364631652832],[112,-28,75,5.9605536460876465],[112,-28,76,5.951775550842285],[112,-28,77,5.933669567108154],[112,-28,78,5.909780025482178],[112,-28,79,5.880720138549805],[112,-27,64,5.943154811859131],[112,-27,65,5.932080268859863],[112,-27,66,5.9225616455078125],[112,-27,67,5.917882919311523],[112,-27,68,5.9184064865112305],[112,-27,69,5.923328876495361],[112,-27,70,5.931975364685059],[112,-27,71,5.941537857055664],[112,-27,72,5.945594310760498],[112,-27,73,5.946962833404541],[112,-27,74,5.956364631652832],[112,-27,75,5.9605536460876465],[112,-27,76,5.951775550842285],[112,-27,77,5.933669567108154],[112,-27,78,5.909780025482178],[112,-27,79,5.880720138549805],[112,-26,64,5.943154811859131],[112,-26,65,5.932080268859863],[112,-26,66,5.9225616455078125],[112,-26,67,5.917882919311523],[112,-26,68,5.9184064865112305],[112,-26,69,5.923328876495361],[112,-26,70,5.931975364685059],[112,-26,71,5.941537857055664],[112,-26,72,5.945594310760498],[112,-26,73,5.946962833404541],[112,-26,74,5.956364631652832],[112,-26,75,5.9605536460876465],[112,-26,76,5.951775550842285],[112,-26,77,5.933669567108154],[112,-26,78,5.909780025482178],[112,-26,79,5.880720138549805],[112,-25,64,5.943154811859131],[112,-25,65,5.932080268859863],[112,-25,66,5.9225616455078125],[112,-25,67,5.917882919311523],[112,-25,68,5.9184064865112305],[112,-25,69,5.923328876495361],[112,-25,70,5.931975364685059],[112,-25,71,5.941537857055664],[112,-25,72,5.945594310760498],[112,-25,73,5.946962833404541],[112,-25,74,5.956364631652832],[112,-25,75,5.9605536460876465],[112,-25,76,5.951775550842285],[112,-25,77,5.933669567108154],[112,-25,78,5.909780025482178],[112,-25,79,5.880720138549805],[112,-24,64,5.943154811859131],[112,-24,65,5.932080268859863],[112,-24,66,5.9225616455078125],[112,-24,67,5.917882919311523],[112,-24,68,5.9184064865112305],[112,-24,69,5.923328876495361],[112,-24,70,5.931975364685059],[112,-24,71,5.941537857055664],[112,-24,72,5.945594310760498],[112,-24,73,5.946962833404541],[112,-24,74,5.956364631652832],[112,-24,75,5.9605536460876465],[112,-24,76,5.951775550842285],[112,-24,77,5.933669567108154],[112,-24,78,5.909780025482178],[112,-24,79,5.880720138549805],[112,-23,64,5.943154811859131],[112,-23,65,5.932080268859863],[112,-23,66,5.9225616455078125],[112,-23,67,5.917882919311523],[112,-23,68,5.9184064865112305],[112,-23,69,5.923328876495361],[112,-23,70,5.931975364685059],[112,-23,71,5.941537857055664],[112,-23,72,5.945594310760498],[112,-23,73,5.946962833404541],[112,-23,74,5.956364631652832],[112,-23,75,5.9605536460876465],[112,-23,76,5.951775550842285],[112,-23,77,5.933669567108154],[112,-23,78,5.909780025482178],[112,-23,79,5.880720138549805],[112,-22,64,5.943154811859131],[112,-22,65,5.932080268859863],[112,-22,66,5.9225616455078125],[112,-22,67,5.917882919311523],[112,-22,68,5.9184064865112305],[112,-22,69,5.923328876495361],[112,-22,70,5.931975364685059],[112,-22,71,5.941537857055664],[112,-22,72,5.945594310760498],[112,-22,73,5.946962833404541],[112,-22,74,5.956364631652832],[112,-22,75,5.9605536460876465],[112,-22,76,5.951775550842285],[112,-22,77,5.933669567108154],[112,-22,78,5.909780025482178],[112,-22,79,5.880720138549805],[112,-21,64,5.943154811859131],[112,-21,65,5.932080268859863],[112,-21,66,5.9225616455078125],[112,-21,67,5.917882919311523],[112,-21,68,5.9184064865112305],[112,-21,69,5.923328876495361],[112,-21,70,5.931975364685059],[112,-21,71,5.941537857055664],[112,-21,72,5.945594310760498],[112,-21,73,5.946962833404541],[112,-21,74,5.956364631652832],[112,-21,75,5.9605536460876465],[112,-21,76,5.951775550842285],[112,-21,77,5.933669567108154],[112,-21,78,5.909780025482178],[112,-21,79,5.880720138549805],[112,-20,64,5.943154811859131],[112,-20,65,5.932080268859863],[112,-20,66,5.9225616455078125],[112,-20,67,5.917882919311523],[112,-20,68,5.9184064865112305],[112,-20,69,5.923328876495361],[112,-20,70,5.931975364685059],[112,-20,71,5.941537857055664],[112,-20,72,5.945594310760498],[112,-20,73,5.946962833404541],[112,-20,74,5.956364631652832],[112,-20,75,5.9605536460876465],[112,-20,76,5.951775550842285],[112,-20,77,5.933669567108154],[112,-20,78,5.909780025482178],[112,-20,79,5.880720138549805],[112,-19,64,5.943154811859131],[112,-19,65,5.932080268859863],[112,-19,66,5.9225616455078125],[112,-19,67,5.917882919311523],[112,-19,68,5.9184064865112305],[112,-19,69,5.923328876495361],[112,-19,70,5.931975364685059],[112,-19,71,5.941537857055664],[112,-19,72,5.945594310760498],[112,-19,73,5.946962833404541],[112,-19,74,5.956364631652832],[112,-19,75,5.9605536460876465],[112,-19,76,5.951775550842285],[112,-19,77,5.933669567108154],[112,-19,78,5.909780025482178],[112,-19,79,5.880720138549805],[112,-18,64,5.943154811859131],[112,-18,65,5.932080268859863],[112,-18,66,5.9225616455078125],[112,-18,67,5.917882919311523],[112,-18,68,5.9184064865112305],[112,-18,69,5.923328876495361],[112,-18,70,5.931975364685059],[112,-18,71,5.941537857055664],[112,-18,72,5.945594310760498],[112,-18,73,5.946962833404541],[112,-18,74,5.956364631652832],[112,-18,75,5.9605536460876465],[112,-18,76,5.951775550842285],[112,-18,77,5.933669567108154],[112,-18,78,5.909780025482178],[112,-18,79,5.880720138549805],[112,-17,64,5.943154811859131],[112,-17,65,5.932080268859863],[112,-17,66,5.9225616455078125],[112,-17,67,5.917882919311523],[112,-17,68,5.9184064865112305],[112,-17,69,5.923328876495361],[112,-17,70,5.931975364685059],[112,-17,71,5.941537857055664],[112,-17,72,5.945594310760498],[112,-17,73,5.946962833404541],[112,-17,74,5.956364631652832],[112,-17,75,5.9605536460876465],[112,-17,76,5.951775550842285],[112,-17,77,5.933669567108154],[112,-17,78,5.909780025482178],[112,-17,79,5.880720138549805],[112,-16,64,5.943154811859131],[112,-16,65,5.932080268859863],[112,-16,66,5.9225616455078125],[112,-16,67,5.917882919311523],[112,-16,68,5.9184064865112305],[112,-16,69,5.923328876495361],[112,-16,70,5.931975364685059],[112,-16,71,5.941537857055664],[112,-16,72,5.945594310760498],[112,-16,73,5.946962833404541],[112,-16,74,5.956364631652832],[112,-16,75,5.9605536460876465],[112,-16,76,5.951775550842285],[112,-16,77,5.933669567108154],[112,-16,78,5.909780025482178],[112,-16,79,5.880720138549805],[112,-15,64,5.943154811859131],[112,-15,65,5.932080268859863],[112,-15,66,5.9225616455078125],[112,-15,67,5.917882919311523],[112,-15,68,5.9184064865112305],[112,-15,69,5.923328876495361],[112,-15,70,5.931975364685059],[112,-15,71,5.941537857055664],[112,-15,72,5.945594310760498],[112,-15,73,5.946962833404541],[112,-15,74,5.956364631652832],[112,-15,75,5.9605536460876465],[112,-15,76,5.951775550842285],[112,-15,77,5.933669567108154],[112,-15,78,5.909780025482178],[112,-15,79,5.880720138549805],[112,-14,64,5.943154811859131],[112,-14,65,5.932080268859863],[112,-14,66,5.9225616455078125],[112,-14,67,5.917882919311523],[112,-14,68,5.9184064865112305],[112,-14,69,5.923328876495361],[112,-14,70,5.931975364685059],[112,-14,71,5.941537857055664],[112,-14,72,5.945594310760498],[112,-14,73,5.946962833404541],[112,-14,74,5.956364631652832],[112,-14,75,5.9605536460876465],[112,-14,76,5.951775550842285],[112,-14,77,5.933669567108154],[112,-14,78,5.909780025482178],[112,-14,79,5.880720138549805],[112,-13,64,5.943154811859131],[112,-13,65,5.932080268859863],[112,-13,66,5.9225616455078125],[112,-13,67,5.917882919311523],[112,-13,68,5.9184064865112305],[112,-13,69,5.923328876495361],[112,-13,70,5.931975364685059],[112,-13,71,5.941537857055664],[112,-13,72,5.945594310760498],[112,-13,73,5.946962833404541],[112,-13,74,5.956364631652832],[112,-13,75,5.9605536460876465],[112,-13,76,5.951775550842285],[112,-13,77,5.933669567108154],[112,-13,78,5.909780025482178],[112,-13,79,5.880720138549805],[112,-12,64,5.943154811859131],[112,-12,65,5.932080268859863],[112,-12,66,5.9225616455078125],[112,-12,67,5.917882919311523],[112,-12,68,5.9184064865112305],[112,-12,69,5.923328876495361],[112,-12,70,5.931975364685059],[112,-12,71,5.941537857055664],[112,-12,72,5.945594310760498],[112,-12,73,5.946962833404541],[112,-12,74,5.956364631652832],[112,-12,75,5.9605536460876465],[112,-12,76,5.951775550842285],[112,-12,77,5.933669567108154],[112,-12,78,5.909780025482178],[112,-12,79,5.880720138549805],[112,-11,64,5.943154811859131],[112,-11,65,5.932080268859863],[112,-11,66,5.9225616455078125],[112,-11,67,5.917882919311523],[112,-11,68,5.9184064865112305],[112,-11,69,5.923328876495361],[112,-11,70,5.931975364685059],[112,-11,71,5.941537857055664],[112,-11,72,5.945594310760498],[112,-11,73,5.946962833404541],[112,-11,74,5.956364631652832],[112,-11,75,5.9605536460876465],[112,-11,76,5.951775550842285],[112,-11,77,5.933669567108154],[112,-11,78,5.909780025482178],[112,-11,79,5.880720138549805],[112,-10,64,5.943154811859131],[112,-10,65,5.932080268859863],[112,-10,66,5.9225616455078125],[112,-10,67,5.917882919311523],[112,-10,68,5.9184064865112305],[112,-10,69,5.923328876495361],[112,-10,70,5.931975364685059],[112,-10,71,5.941537857055664],[112,-10,72,5.945594310760498],[112,-10,73,5.946962833404541],[112,-10,74,5.956364631652832],[112,-10,75,5.9605536460876465],[112,-10,76,5.951775550842285],[112,-10,77,5.933669567108154],[112,-10,78,5.909780025482178],[112,-10,79,5.880720138549805],[112,-9,64,5.943154811859131],[112,-9,65,5.932080268859863],[112,-9,66,5.9225616455078125],[112,-9,67,5.917882919311523],[112,-9,68,5.9184064865112305],[112,-9,69,5.923328876495361],[112,-9,70,5.931975364685059],[112,-9,71,5.941537857055664],[112,-9,72,5.945594310760498],[112,-9,73,5.946962833404541],[112,-9,74,5.956364631652832],[112,-9,75,5.9605536460876465],[112,-9,76,5.951775550842285],[112,-9,77,5.933669567108154],[112,-9,78,5.909780025482178],[112,-9,79,5.880720138549805],[112,-8,64,5.943154811859131],[112,-8,65,5.932080268859863],[112,-8,66,5.9225616455078125],[112,-8,67,5.917882919311523],[112,-8,68,5.9184064865112305],[112,-8,69,5.923328876495361],[112,-8,70,5.931975364685059],[112,-8,71,5.941537857055664],[112,-8,72,5.945594310760498],[112,-8,73,5.946962833404541],[112,-8,74,5.956364631652832],[112,-8,75,5.9605536460876465],[112,-8,76,5.951775550842285],[112,-8,77,5.933669567108154],[112,-8,78,5.909780025482178],[112,-8,79,5.880720138549805],[112,-7,64,5.943154811859131],[112,-7,65,5.932080268859863],[112,-7,66,5.9225616455078125],[112,-7,67,5.917882919311523],[112,-7,68,5.9184064865112305],[112,-7,69,5.923328876495361],[112,-7,70,5.931975364685059],[112,-7,71,5.941537857055664],[112,-7,72,5.945594310760498],[112,-7,73,5.946962833404541],[112,-7,74,5.956364631652832],[112,-7,75,5.9605536460876465],[112,-7,76,5.951775550842285],[112,-7,77,5.933669567108154],[112,-7,78,5.909780025482178],[112,-7,79,5.880720138549805],[112,-6,64,5.943154811859131],[112,-6,65,5.932080268859863],[112,-6,66,5.9225616455078125],[112,-6,67,5.917882919311523],[112,-6,68,5.9184064865112305],[112,-6,69,5.923328876495361],[112,-6,70,5.931975364685059],[112,-6,71,5.941537857055664],[112,-6,72,5.945594310760498],[112,-6,73,5.946962833404541],[112,-6,74,5.956364631652832],[112,-6,75,5.9605536460876465],[112,-6,76,5.951775550842285],[112,-6,77,5.933669567108154],[112,-6,78,5.909780025482178],[112,-6,79,5.880720138549805],[112,-5,64,5.943154811859131],[112,-5,65,5.932080268859863],[112,-5,66,5.9225616455078125],[112,-5,67,5.917882919311523],[112,-5,68,5.9184064865112305],[112,-5,69,5.923328876495361],[112,-5,70,5.931975364685059],[112,-5,71,5.941537857055664],[112,-5,72,5.945594310760498],[112,-5,73,5.946962833404541],[112,-5,74,5.956364631652832],[112,-5,75,5.9605536460876465],[112,-5,76,5.951775550842285],[112,-5,77,5.933669567108154],[112,-5,78,5.909780025482178],[112,-5,79,5.880720138549805],[112,-4,64,5.943154811859131],[112,-4,65,5.932080268859863],[112,-4,66,5.9225616455078125],[112,-4,67,5.917882919311523],[112,-4,68,5.9184064865112305],[112,-4,69,5.923328876495361],[112,-4,70,5.931975364685059],[112,-4,71,5.941537857055664],[112,-4,72,5.945594310760498],[112,-4,73,5.946962833404541],[112,-4,74,5.956364631652832],[112,-4,75,5.9605536460876465],[112,-4,76,5.951775550842285],[112,-4,77,5.933669567108154],[112,-4,78,5.909780025482178],[112,-4,79,5.880720138549805],[112,-3,64,5.943154811859131],[112,-3,65,5.932080268859863],[112,-3,66,5.9225616455078125],[112,-3,67,5.917882919311523],[112,-3,68,5.9184064865112305],[112,-3,69,5.923328876495361],[112,-3,70,5.931975364685059],[112,-3,71,5.941537857055664],[112,-3,72,5.945594310760498],[112,-3,73,5.946962833404541],[112,-3,74,5.956364631652832],[112,-3,75,5.9605536460876465],[112,-3,76,5.951775550842285],[112,-3,77,5.933669567108154],[112,-3,78,5.909780025482178],[112,-3,79,5.880720138549805],[112,-2,64,5.943154811859131],[112,-2,65,5.932080268859863],[112,-2,66,5.9225616455078125],[112,-2,67,5.917882919311523],[112,-2,68,5.9184064865112305],[112,-2,69,5.923328876495361],[112,-2,70,5.931975364685059],[112,-2,71,5.941537857055664],[112,-2,72,5.945594310760498],[112,-2,73,5.946962833404541],[112,-2,74,5.956364631652832],[112,-2,75,5.9605536460876465],[112,-2,76,5.951775550842285],[112,-2,77,5.933669567108154],[112,-2,78,5.909780025482178],[112,-2,79,5.880720138549805],[112,-1,64,5.943154811859131],[112,-1,65,5.932080268859863],[112,-1,66,5.9225616455078125],[112,-1,67,5.917882919311523],[112,-1,68,5.9184064865112305],[112,-1,69,5.923328876495361],[112,-1,70,5.931975364685059],[112,-1,71,5.941537857055664],[112,-1,72,5.945594310760498],[112,-1,73,5.946962833404541],[112,-1,74,5.956364631652832],[112,-1,75,5.9605536460876465],[112,-1,76,5.951775550842285],[112,-1,77,5.933669567108154],[112,-1,78,5.909780025482178],[112,-1,79,5.880720138549805],[112,0,64,5.943154811859131],[112,0,65,5.932080268859863],[112,0,66,5.9225616455078125],[112,0,67,5.917882919311523],[112,0,68,5.9184064865112305],[112,0,69,5.923328876495361],[112,0,70,5.931975364685059],[112,0,71,5.941537857055664],[112,0,72,5.945594310760498],[112,0,73,5.946962833404541],[112,0,74,5.956364631652832],[112,0,75,5.9605536460876465],[112,0,76,5.951775550842285],[112,0,77,5.933669567108154],[112,0,78,5.909780025482178],[112,0,79,5.880720138549805],[112,1,64,5.943154811859131],[112,1,65,5.932080268859863],[112,1,66,5.9225616455078125],[112,1,67,5.917882919311523],[112,1,68,5.9184064865112305],[112,1,69,5.923328876495361],[112,1,70,5.931975364685059],[112,1,71,5.941537857055664],[112,1,72,5.945594310760498],[112,1,73,5.946962833404541],[112,1,74,5.956364631652832],[112,1,75,5.9605536460876465],[112,1,76,5.951775550842285],[112,1,77,5.933669567108154],[112,1,78,5.909780025482178],[112,1,79,5.880720138549805],[112,2,64,5.943154811859131],[112,2,65,5.932080268859863],[112,2,66,5.9225616455078125],[112,2,67,5.917882919311523],[112,2,68,5.9184064865112305],[112,2,69,5.923328876495361],[112,2,70,5.931975364685059],[112,2,71,5.941537857055664],[112,2,72,5.945594310760498],[112,2,73,5.946962833404541],[112,2,74,5.956364631652832],[112,2,75,5.9605536460876465],[112,2,76,5.951775550842285],[112,2,77,5.933669567108154],[112,2,78,5.909780025482178],[112,2,79,5.880720138549805],[112,3,64,5.943154811859131],[112,3,65,5.932080268859863],[112,3,66,5.9225616455078125],[112,3,67,5.917882919311523],[112,3,68,5.9184064865112305],[112,3,69,5.923328876495361],[112,3,70,5.931975364685059],[112,3,71,5.941537857055664],[112,3,72,5.945594310760498],[112,3,73,5.946962833404541],[112,3,74,5.956364631652832],[112,3,75,5.9605536460876465],[112,3,76,5.951775550842285],[112,3,77,5.933669567108154],[112,3,78,5.909780025482178],[112,3,79,5.880720138549805],[112,4,64,5.943154811859131],[112,4,65,5.932080268859863],[112,4,66,5.9225616455078125],[112,4,67,5.917882919311523],[112,4,68,5.9184064865112305],[112,4,69,5.923328876495361],[112,4,70,5.931975364685059],[112,4,71,5.941537857055664],[112,4,72,5.945594310760498],[112,4,73,5.946962833404541],[112,4,74,5.956364631652832],[112,4,75,5.9605536460876465],[112,4,76,5.951775550842285],[112,4,77,5.933669567108154],[112,4,78,5.909780025482178],[112,4,79,5.880720138549805],[112,5,64,5.943154811859131],[112,5,65,5.932080268859863],[112,5,66,5.9225616455078125],[112,5,67,5.917882919311523],[112,5,68,5.9184064865112305],[112,5,69,5.923328876495361],[112,5,70,5.931975364685059],[112,5,71,5.941537857055664],[112,5,72,5.945594310760498],[112,5,73,5.946962833404541],[112,5,74,5.956364631652832],[112,5,75,5.9605536460876465],[112,5,76,5.951775550842285],[112,5,77,5.933669567108154],[112,5,78,5.909780025482178],[112,5,79,5.880720138549805],[112,6,64,5.943154811859131],[112,6,65,5.932080268859863],[112,6,66,5.9225616455078125],[112,6,67,5.917882919311523],[112,6,68,5.9184064865112305],[112,6,69,5.923328876495361],[112,6,70,5.931975364685059],[112,6,71,5.941537857055664],[112,6,72,5.945594310760498],[112,6,73,5.946962833404541],[112,6,74,5.956364631652832],[112,6,75,5.9605536460876465],[112,6,76,5.951775550842285],[112,6,77,5.933669567108154],[112,6,78,5.909780025482178],[112,6,79,5.880720138549805],[112,7,64,5.943154811859131],[112,7,65,5.932080268859863],[112,7,66,5.9225616455078125],[112,7,67,5.917882919311523],[112,7,68,5.9184064865112305],[112,7,69,5.923328876495361],[112,7,70,5.931975364685059],[112,7,71,5.941537857055664],[112,7,72,5.945594310760498],[112,7,73,5.946962833404541],[112,7,74,5.956364631652832],[112,7,75,5.9605536460876465],[112,7,76,5.951775550842285],[112,7,77,5.933669567108154],[112,7,78,5.909780025482178],[112,7,79,5.880720138549805],[112,8,64,5.943154811859131],[112,8,65,5.932080268859863],[112,8,66,5.9225616455078125],[112,8,67,5.917882919311523],[112,8,68,5.9184064865112305],[112,8,69,5.923328876495361],[112,8,70,5.931975364685059],[112,8,71,5.941537857055664],[112,8,72,5.945594310760498],[112,8,73,5.946962833404541],[112,8,74,5.956364631652832],[112,8,75,5.9605536460876465],[112,8,76,5.951775550842285],[112,8,77,5.933669567108154],[112,8,78,5.909780025482178],[112,8,79,5.880720138549805],[112,9,64,5.943154811859131],[112,9,65,5.932080268859863],[112,9,66,5.9225616455078125],[112,9,67,5.917882919311523],[112,9,68,5.9184064865112305],[112,9,69,5.923328876495361],[112,9,70,5.931975364685059],[112,9,71,5.941537857055664],[112,9,72,5.945594310760498],[112,9,73,5.946962833404541],[112,9,74,5.956364631652832],[112,9,75,5.9605536460876465],[112,9,76,5.951775550842285],[112,9,77,5.933669567108154],[112,9,78,5.909780025482178],[112,9,79,5.880720138549805],[112,10,64,5.943154811859131],[112,10,65,5.932080268859863],[112,10,66,5.9225616455078125],[112,10,67,5.917882919311523],[112,10,68,5.9184064865112305],[112,10,69,5.923328876495361],[112,10,70,5.931975364685059],[112,10,71,5.941537857055664],[112,10,72,5.945594310760498],[112,10,73,5.946962833404541],[112,10,74,5.956364631652832],[112,10,75,5.9605536460876465],[112,10,76,5.951775550842285],[112,10,77,5.933669567108154],[112,10,78,5.909780025482178],[112,10,79,5.880720138549805],[112,11,64,5.943154811859131],[112,11,65,5.932080268859863],[112,11,66,5.9225616455078125],[112,11,67,5.917882919311523],[112,11,68,5.9184064865112305],[112,11,69,5.923328876495361],[112,11,70,5.931975364685059],[112,11,71,5.941537857055664],[112,11,72,5.945594310760498],[112,11,73,5.946962833404541],[112,11,74,5.956364631652832],[112,11,75,5.9605536460876465],[112,11,76,5.951775550842285],[112,11,77,5.933669567108154],[112,11,78,5.909780025482178],[112,11,79,5.880720138549805],[112,12,64,5.943154811859131],[112,12,65,5.932080268859863],[112,12,66,5.9225616455078125],[112,12,67,5.917882919311523],[112,12,68,5.9184064865112305],[112,12,69,5.923328876495361],[112,12,70,5.931975364685059],[112,12,71,5.941537857055664],[112,12,72,5.945594310760498],[112,12,73,5.946962833404541],[112,12,74,5.956364631652832],[112,12,75,5.9605536460876465],[112,12,76,5.951775550842285],[112,12,77,5.933669567108154],[112,12,78,5.909780025482178],[112,12,79,5.880720138549805],[112,13,64,5.943154811859131],[112,13,65,5.932080268859863],[112,13,66,5.9225616455078125],[112,13,67,5.917882919311523],[112,13,68,5.9184064865112305],[112,13,69,5.923328876495361],[112,13,70,5.931975364685059],[112,13,71,5.941537857055664],[112,13,72,5.945594310760498],[112,13,73,5.946962833404541],[112,13,74,5.956364631652832],[112,13,75,5.9605536460876465],[112,13,76,5.951775550842285],[112,13,77,5.933669567108154],[112,13,78,5.909780025482178],[112,13,79,5.880720138549805],[112,14,64,5.943154811859131],[112,14,65,5.932080268859863],[112,14,66,5.9225616455078125],[112,14,67,5.917882919311523],[112,14,68,5.9184064865112305],[112,14,69,5.923328876495361],[112,14,70,5.931975364685059],[112,14,71,5.941537857055664],[112,14,72,5.945594310760498],[112,14,73,5.946962833404541],[112,14,74,5.956364631652832],[112,14,75,5.9605536460876465],[112,14,76,5.951775550842285],[112,14,77,5.933669567108154],[112,14,78,5.909780025482178],[112,14,79,5.880720138549805],[112,15,64,5.943154811859131],[112,15,65,5.932080268859863],[112,15,66,5.9225616455078125],[112,15,67,5.917882919311523],[112,15,68,5.9184064865112305],[112,15,69,5.923328876495361],[112,15,70,5.931975364685059],[112,15,71,5.941537857055664],[112,15,72,5.945594310760498],[112,15,73,5.946962833404541],[112,15,74,5.956364631652832],[112,15,75,5.9605536460876465],[112,15,76,5.951775550842285],[112,15,77,5.933669567108154],[112,15,78,5.909780025482178],[112,15,79,5.880720138549805],[112,16,64,5.943154811859131],[112,16,65,5.932080268859863],[112,16,66,5.9225616455078125],[112,16,67,5.917882919311523],[112,16,68,5.9184064865112305],[112,16,69,5.923328876495361],[112,16,70,5.931975364685059],[112,16,71,5.941537857055664],[112,16,72,5.945594310760498],[112,16,73,5.946962833404541],[112,16,74,5.956364631652832],[112,16,75,5.9605536460876465],[112,16,76,5.951775550842285],[112,16,77,5.933669567108154],[112,16,78,5.909780025482178],[112,16,79,5.880720138549805],[112,17,64,5.943154811859131],[112,17,65,5.932080268859863],[112,17,66,5.9225616455078125],[112,17,67,5.917882919311523],[112,17,68,5.9184064865112305],[112,17,69,5.923328876495361],[112,17,70,5.931975364685059],[112,17,71,5.941537857055664],[112,17,72,5.945594310760498],[112,17,73,5.946962833404541],[112,17,74,5.956364631652832],[112,17,75,5.9605536460876465],[112,17,76,5.951775550842285],[112,17,77,5.933669567108154],[112,17,78,5.909780025482178],[112,17,79,5.880720138549805],[112,18,64,5.943154811859131],[112,18,65,5.932080268859863],[112,18,66,5.9225616455078125],[112,18,67,5.917882919311523],[112,18,68,5.9184064865112305],[112,18,69,5.923328876495361],[112,18,70,5.931975364685059],[112,18,71,5.941537857055664],[112,18,72,5.945594310760498],[112,18,73,5.946962833404541],[112,18,74,5.956364631652832],[112,18,75,5.9605536460876465],[112,18,76,5.951775550842285],[112,18,77,5.933669567108154],[112,18,78,5.909780025482178],[112,18,79,5.880720138549805],[112,19,64,5.943154811859131],[112,19,65,5.932080268859863],[112,19,66,5.9225616455078125],[112,19,67,5.917882919311523],[112,19,68,5.9184064865112305],[112,19,69,5.923328876495361],[112,19,70,5.931975364685059],[112,19,71,5.941537857055664],[112,19,72,5.945594310760498],[112,19,73,5.946962833404541],[112,19,74,5.956364631652832],[112,19,75,5.9605536460876465],[112,19,76,5.951775550842285],[112,19,77,5.933669567108154],[112,19,78,5.909780025482178],[112,19,79,5.880720138549805],[112,20,64,5.943154811859131],[112,20,65,5.932080268859863],[112,20,66,5.9225616455078125],[112,20,67,5.917882919311523],[112,20,68,5.9184064865112305],[112,20,69,5.923328876495361],[112,20,70,5.931975364685059],[112,20,71,5.941537857055664],[112,20,72,5.945594310760498],[112,20,73,5.946962833404541],[112,20,74,5.956364631652832],[112,20,75,5.9605536460876465],[112,20,76,5.951775550842285],[112,20,77,5.933669567108154],[112,20,78,5.909780025482178],[112,20,79,5.880720138549805],[112,21,64,5.943154811859131],[112,21,65,5.932080268859863],[112,21,66,5.9225616455078125],[112,21,67,5.917882919311523],[112,21,68,5.9184064865112305],[112,21,69,5.923328876495361],[112,21,70,5.931975364685059],[112,21,71,5.941537857055664],[112,21,72,5.945594310760498],[112,21,73,5.946962833404541],[112,21,74,5.956364631652832],[112,21,75,5.9605536460876465],[112,21,76,5.951775550842285],[112,21,77,5.933669567108154],[112,21,78,5.909780025482178],[112,21,79,5.880720138549805],[112,22,64,5.943154811859131],[112,22,65,5.932080268859863],[112,22,66,5.9225616455078125],[112,22,67,5.917882919311523],[112,22,68,5.9184064865112305],[112,22,69,5.923328876495361],[112,22,70,5.931975364685059],[112,22,71,5.941537857055664],[112,22,72,5.945594310760498],[112,22,73,5.946962833404541],[112,22,74,5.956364631652832],[112,22,75,5.9605536460876465],[112,22,76,5.951775550842285],[112,22,77,5.933669567108154],[112,22,78,5.909780025482178],[112,22,79,5.880720138549805],[112,23,64,5.943154811859131],[112,23,65,5.932080268859863],[112,23,66,5.9225616455078125],[112,23,67,5.917882919311523],[112,23,68,5.9184064865112305],[112,23,69,5.923328876495361],[112,23,70,5.931975364685059],[112,23,71,5.941537857055664],[112,23,72,5.945594310760498],[112,23,73,5.946962833404541],[112,23,74,5.956364631652832],[112,23,75,5.9605536460876465],[112,23,76,5.951775550842285],[112,23,77,5.933669567108154],[112,23,78,5.909780025482178],[112,23,79,5.880720138549805],[112,24,64,5.943154811859131],[112,24,65,5.932080268859863],[112,24,66,5.9225616455078125],[112,24,67,5.917882919311523],[112,24,68,5.9184064865112305],[112,24,69,5.923328876495361],[112,24,70,5.931975364685059],[112,24,71,5.941537857055664],[112,24,72,5.945594310760498],[112,24,73,5.946962833404541],[112,24,74,5.956364631652832],[112,24,75,5.9605536460876465],[112,24,76,5.951775550842285],[112,24,77,5.933669567108154],[112,24,78,5.909780025482178],[112,24,79,5.880720138549805],[112,25,64,5.943154811859131],[112,25,65,5.932080268859863],[112,25,66,5.9225616455078125],[112,25,67,5.917882919311523],[112,25,68,5.9184064865112305],[112,25,69,5.923328876495361],[112,25,70,5.931975364685059],[112,25,71,5.941537857055664],[112,25,72,5.945594310760498],[112,25,73,5.946962833404541],[112,25,74,5.956364631652832],[112,25,75,5.9605536460876465],[112,25,76,5.951775550842285],[112,25,77,5.933669567108154],[112,25,78,5.909780025482178],[112,25,79,5.880720138549805],[112,26,64,5.943154811859131],[112,26,65,5.932080268859863],[112,26,66,5.9225616455078125],[112,26,67,5.917882919311523],[112,26,68,5.9184064865112305],[112,26,69,5.923328876495361],[112,26,70,5.931975364685059],[112,26,71,5.941537857055664],[112,26,72,5.945594310760498],[112,26,73,5.946962833404541],[112,26,74,5.956364631652832],[112,26,75,5.9605536460876465],[112,26,76,5.951775550842285],[112,26,77,5.933669567108154],[112,26,78,5.909780025482178],[112,26,79,5.880720138549805],[112,27,64,5.943154811859131],[112,27,65,5.932080268859863],[112,27,66,5.9225616455078125],[112,27,67,5.917882919311523],[112,27,68,5.9184064865112305],[112,27,69,5.923328876495361],[112,27,70,5.931975364685059],[112,27,71,5.941537857055664],[112,27,72,5.945594310760498],[112,27,73,5.946962833404541],[112,27,74,5.956364631652832],[112,27,75,5.9605536460876465],[112,27,76,5.951775550842285],[112,27,77,5.933669567108154],[112,27,78,5.909780025482178],[112,27,79,5.880720138549805],[112,28,64,5.943154811859131],[112,28,65,5.932080268859863],[112,28,66,5.9225616455078125],[112,28,67,5.917882919311523],[112,28,68,5.9184064865112305],[112,28,69,5.923328876495361],[112,28,70,5.931975364685059],[112,28,71,5.941537857055664],[112,28,72,5.945594310760498],[112,28,73,5.946962833404541],[112,28,74,5.956364631652832],[112,28,75,5.9605536460876465],[112,28,76,5.951775550842285],[112,28,77,5.933669567108154],[112,28,78,5.909780025482178],[112,28,79,5.880720138549805],[112,29,64,5.943154811859131],[112,29,65,5.932080268859863],[112,29,66,5.9225616455078125],[112,29,67,5.917882919311523],[112,29,68,5.9184064865112305],[112,29,69,5.923328876495361],[112,29,70,5.931975364685059],[112,29,71,5.941537857055664],[112,29,72,5.945594310760498],[112,29,73,5.946962833404541],[112,29,74,5.956364631652832],[112,29,75,5.9605536460876465],[112,29,76,5.951775550842285],[112,29,77,5.933669567108154],[112,29,78,5.909780025482178],[112,29,79,5.880720138549805],[112,30,64,5.943154811859131],[112,30,65,5.932080268859863],[112,30,66,5.9225616455078125],[112,30,67,5.917882919311523],[112,30,68,5.9184064865112305],[112,30,69,5.923328876495361],[112,30,70,5.931975364685059],[112,30,71,5.941537857055664],[112,30,72,5.945594310760498],[112,30,73,5.946962833404541],[112,30,74,5.956364631652832],[112,30,75,5.9605536460876465],[112,30,76,5.951775550842285],[112,30,77,5.933669567108154],[112,30,78,5.909780025482178],[112,30,79,5.880720138549805],[112,31,64,5.943154811859131],[112,31,65,5.932080268859863],[112,31,66,5.9225616455078125],[112,31,67,5.917882919311523],[112,31,68,5.9184064865112305],[112,31,69,5.923328876495361],[112,31,70,5.931975364685059],[112,31,71,5.941537857055664],[112,31,72,5.945594310760498],[112,31,73,5.946962833404541],[112,31,74,5.956364631652832],[112,31,75,5.9605536460876465],[112,31,76,5.951775550842285],[112,31,77,5.933669567108154],[112,31,78,5.909780025482178],[112,31,79,5.880720138549805],[112,32,64,5.943154811859131],[112,32,65,5.932080268859863],[112,32,66,5.9225616455078125],[112,32,67,5.917882919311523],[112,32,68,5.9184064865112305],[112,32,69,5.923328876495361],[112,32,70,5.931975364685059],[112,32,71,5.941537857055664],[112,32,72,5.945594310760498],[112,32,73,5.946962833404541],[112,32,74,5.956364631652832],[112,32,75,5.9605536460876465],[112,32,76,5.951775550842285],[112,32,77,5.933669567108154],[112,32,78,5.909780025482178],[112,32,79,5.880720138549805],[112,33,64,5.943154811859131],[112,33,65,5.932080268859863],[112,33,66,5.9225616455078125],[112,33,67,5.917882919311523],[112,33,68,5.9184064865112305],[112,33,69,5.923328876495361],[112,33,70,5.931975364685059],[112,33,71,5.941537857055664],[112,33,72,5.945594310760498],[112,33,73,5.946962833404541],[112,33,74,5.956364631652832],[112,33,75,5.9605536460876465],[112,33,76,5.951775550842285],[112,33,77,5.933669567108154],[112,33,78,5.909780025482178],[112,33,79,5.880720138549805],[112,34,64,5.943154811859131],[112,34,65,5.932080268859863],[112,34,66,5.9225616455078125],[112,34,67,5.917882919311523],[112,34,68,5.9184064865112305],[112,34,69,5.923328876495361],[112,34,70,5.931975364685059],[112,34,71,5.941537857055664],[112,34,72,5.945594310760498],[112,34,73,5.946962833404541],[112,34,74,5.956364631652832],[112,34,75,5.9605536460876465],[112,34,76,5.951775550842285],[112,34,77,5.933669567108154],[112,34,78,5.909780025482178],[112,34,79,5.880720138549805],[112,35,64,5.943154811859131],[112,35,65,5.932080268859863],[112,35,66,5.9225616455078125],[112,35,67,5.917882919311523],[112,35,68,5.9184064865112305],[112,35,69,5.923328876495361],[112,35,70,5.931975364685059],[112,35,71,5.941537857055664],[112,35,72,5.945594310760498],[112,35,73,5.946962833404541],[112,35,74,5.956364631652832],[112,35,75,5.9605536460876465],[112,35,76,5.951775550842285],[112,35,77,5.933669567108154],[112,35,78,5.909780025482178],[112,35,79,5.880720138549805],[112,36,64,5.943154811859131],[112,36,65,5.932080268859863],[112,36,66,5.9225616455078125],[112,36,67,5.917882919311523],[112,36,68,5.9184064865112305],[112,36,69,5.923328876495361],[112,36,70,5.931975364685059],[112,36,71,5.941537857055664],[112,36,72,5.945594310760498],[112,36,73,5.946962833404541],[112,36,74,5.956364631652832],[112,36,75,5.9605536460876465],[112,36,76,5.951775550842285],[112,36,77,5.933669567108154],[112,36,78,5.909780025482178],[112,36,79,5.880720138549805],[112,37,64,5.943154811859131],[112,37,65,5.932080268859863],[112,37,66,5.9225616455078125],[112,37,67,5.917882919311523],[112,37,68,5.9184064865112305],[112,37,69,5.923328876495361],[112,37,70,5.931975364685059],[112,37,71,5.941537857055664],[112,37,72,5.945594310760498],[112,37,73,5.946962833404541],[112,37,74,5.956364631652832],[112,37,75,5.9605536460876465],[112,37,76,5.951775550842285],[112,37,77,5.933669567108154],[112,37,78,5.909780025482178],[112,37,79,5.880720138549805],[112,38,64,5.943154811859131],[112,38,65,5.932080268859863],[112,38,66,5.9225616455078125],[112,38,67,5.917882919311523],[112,38,68,5.9184064865112305],[112,38,69,5.923328876495361],[112,38,70,5.931975364685059],[112,38,71,5.941537857055664],[112,38,72,5.945594310760498],[112,38,73,5.946962833404541],[112,38,74,5.956364631652832],[112,38,75,5.9605536460876465],[112,38,76,5.951775550842285],[112,38,77,5.933669567108154],[112,38,78,5.909780025482178],[112,38,79,5.880720138549805],[112,39,64,5.943154811859131],[112,39,65,5.932080268859863],[112,39,66,5.9225616455078125],[112,39,67,5.917882919311523],[112,39,68,5.9184064865112305],[112,39,69,5.923328876495361],[112,39,70,5.931975364685059],[112,39,71,5.941537857055664],[112,39,72,5.945594310760498],[112,39,73,5.946962833404541],[112,39,74,5.956364631652832],[112,39,75,5.9605536460876465],[112,39,76,5.951775550842285],[112,39,77,5.933669567108154],[112,39,78,5.909780025482178],[112,39,79,5.880720138549805],[112,40,64,5.943154811859131],[112,40,65,5.932080268859863],[112,40,66,5.9225616455078125],[112,40,67,5.917882919311523],[112,40,68,5.9184064865112305],[112,40,69,5.923328876495361],[112,40,70,5.931975364685059],[112,40,71,5.941537857055664],[112,40,72,5.945594310760498],[112,40,73,5.946962833404541],[112,40,74,5.956364631652832],[112,40,75,5.9605536460876465],[112,40,76,5.951775550842285],[112,40,77,5.933669567108154],[112,40,78,5.909780025482178],[112,40,79,5.880720138549805],[112,41,64,5.943154811859131],[112,41,65,5.932080268859863],[112,41,66,5.9225616455078125],[112,41,67,5.917882919311523],[112,41,68,5.9184064865112305],[112,41,69,5.923328876495361],[112,41,70,5.931975364685059],[112,41,71,5.941537857055664],[112,41,72,5.945594310760498],[112,41,73,5.946962833404541],[112,41,74,5.956364631652832],[112,41,75,5.9605536460876465],[112,41,76,5.951775550842285],[112,41,77,5.933669567108154],[112,41,78,5.909780025482178],[112,41,79,5.880720138549805],[112,42,64,5.943154811859131],[112,42,65,5.932080268859863],[112,42,66,5.9225616455078125],[112,42,67,5.917882919311523],[112,42,68,5.9184064865112305],[112,42,69,5.923328876495361],[112,42,70,5.931975364685059],[112,42,71,5.941537857055664],[112,42,72,5.945594310760498],[112,42,73,5.946962833404541],[112,42,74,5.956364631652832],[112,42,75,5.9605536460876465],[112,42,76,5.951775550842285],[112,42,77,5.933669567108154],[112,42,78,5.909780025482178],[112,42,79,5.880720138549805],[112,43,64,5.943154811859131],[112,43,65,5.932080268859863],[112,43,66,5.9225616455078125],[112,43,67,5.917882919311523],[112,43,68,5.9184064865112305],[112,43,69,5.923328876495361],[112,43,70,5.931975364685059],[112,43,71,5.941537857055664],[112,43,72,5.945594310760498],[112,43,73,5.946962833404541],[112,43,74,5.956364631652832],[112,43,75,5.9605536460876465],[112,43,76,5.951775550842285],[112,43,77,5.933669567108154],[112,43,78,5.909780025482178],[112,43,79,5.880720138549805],[112,44,64,5.943154811859131],[112,44,65,5.932080268859863],[112,44,66,5.9225616455078125],[112,44,67,5.917882919311523],[112,44,68,5.9184064865112305],[112,44,69,5.923328876495361],[112,44,70,5.931975364685059],[112,44,71,5.941537857055664],[112,44,72,5.945594310760498],[112,44,73,5.946962833404541],[112,44,74,5.956364631652832],[112,44,75,5.9605536460876465],[112,44,76,5.951775550842285],[112,44,77,5.933669567108154],[112,44,78,5.909780025482178],[112,44,79,5.880720138549805],[112,45,64,5.943154811859131],[112,45,65,5.932080268859863],[112,45,66,5.9225616455078125],[112,45,67,5.917882919311523],[112,45,68,5.9184064865112305],[112,45,69,5.923328876495361],[112,45,70,5.931975364685059],[112,45,71,5.941537857055664],[112,45,72,5.945594310760498],[112,45,73,5.946962833404541],[112,45,74,5.956364631652832],[112,45,75,5.9605536460876465],[112,45,76,5.951775550842285],[112,45,77,5.933669567108154],[112,45,78,5.909780025482178],[112,45,79,5.880720138549805],[112,46,64,5.943154811859131],[112,46,65,5.932080268859863],[112,46,66,5.9225616455078125],[112,46,67,5.917882919311523],[112,46,68,5.9184064865112305],[112,46,69,5.923328876495361],[112,46,70,5.931975364685059],[112,46,71,5.941537857055664],[112,46,72,5.945594310760498],[112,46,73,5.946962833404541],[112,46,74,5.956364631652832],[112,46,75,5.9605536460876465],[112,46,76,5.951775550842285],[112,46,77,5.933669567108154],[112,46,78,5.909780025482178],[112,46,79,5.880720138549805],[112,47,64,5.943154811859131],[112,47,65,5.932080268859863],[112,47,66,5.9225616455078125],[112,47,67,5.917882919311523],[112,47,68,5.9184064865112305],[112,47,69,5.923328876495361],[112,47,70,5.931975364685059],[112,47,71,5.941537857055664],[112,47,72,5.945594310760498],[112,47,73,5.946962833404541],[112,47,74,5.956364631652832],[112,47,75,5.9605536460876465],[112,47,76,5.951775550842285],[112,47,77,5.933669567108154],[112,47,78,5.909780025482178],[112,47,79,5.880720138549805],[112,48,64,5.943154811859131],[112,48,65,5.932080268859863],[112,48,66,5.9225616455078125],[112,48,67,5.917882919311523],[112,48,68,5.9184064865112305],[112,48,69,5.923328876495361],[112,48,70,5.931975364685059],[112,48,71,5.941537857055664],[112,48,72,5.945594310760498],[112,48,73,5.946962833404541],[112,48,74,5.956364631652832],[112,48,75,5.9605536460876465],[112,48,76,5.951775550842285],[112,48,77,5.933669567108154],[112,48,78,5.909780025482178],[112,48,79,5.880720138549805],[112,49,64,5.943154811859131],[112,49,65,5.932080268859863],[112,49,66,5.9225616455078125],[112,49,67,5.917882919311523],[112,49,68,5.9184064865112305],[112,49,69,5.923328876495361],[112,49,70,5.931975364685059],[112,49,71,5.941537857055664],[112,49,72,5.945594310760498],[112,49,73,5.946962833404541],[112,49,74,5.956364631652832],[112,49,75,5.9605536460876465],[112,49,76,5.951775550842285],[112,49,77,5.933669567108154],[112,49,78,5.909780025482178],[112,49,79,5.880720138549805],[112,50,64,5.943154811859131],[112,50,65,5.932080268859863],[112,50,66,5.9225616455078125],[112,50,67,5.917882919311523],[112,50,68,5.9184064865112305],[112,50,69,5.923328876495361],[112,50,70,5.931975364685059],[112,50,71,5.941537857055664],[112,50,72,5.945594310760498],[112,50,73,5.946962833404541],[112,50,74,5.956364631652832],[112,50,75,5.9605536460876465],[112,50,76,5.951775550842285],[112,50,77,5.933669567108154],[112,50,78,5.909780025482178],[112,50,79,5.880720138549805],[112,51,64,5.943154811859131],[112,51,65,5.932080268859863],[112,51,66,5.9225616455078125],[112,51,67,5.917882919311523],[112,51,68,5.9184064865112305],[112,51,69,5.923328876495361],[112,51,70,5.931975364685059],[112,51,71,5.941537857055664],[112,51,72,5.945594310760498],[112,51,73,5.946962833404541],[112,51,74,5.956364631652832],[112,51,75,5.9605536460876465],[112,51,76,5.951775550842285],[112,51,77,5.933669567108154],[112,51,78,5.909780025482178],[112,51,79,5.880720138549805],[112,52,64,5.943154811859131],[112,52,65,5.932080268859863],[112,52,66,5.9225616455078125],[112,52,67,5.917882919311523],[112,52,68,5.9184064865112305],[112,52,69,5.923328876495361],[112,52,70,5.931975364685059],[112,52,71,5.941537857055664],[112,52,72,5.945594310760498],[112,52,73,5.946962833404541],[112,52,74,5.956364631652832],[112,52,75,5.9605536460876465],[112,52,76,5.951775550842285],[112,52,77,5.933669567108154],[112,52,78,5.909780025482178],[112,52,79,5.880720138549805],[112,53,64,5.943154811859131],[112,53,65,5.932080268859863],[112,53,66,5.9225616455078125],[112,53,67,5.917882919311523],[112,53,68,5.9184064865112305],[112,53,69,5.923328876495361],[112,53,70,5.931975364685059],[112,53,71,5.941537857055664],[112,53,72,5.945594310760498],[112,53,73,5.946962833404541],[112,53,74,5.956364631652832],[112,53,75,5.9605536460876465],[112,53,76,5.951775550842285],[112,53,77,5.933669567108154],[112,53,78,5.909780025482178],[112,53,79,5.880720138549805],[112,54,64,5.943154811859131],[112,54,65,5.932080268859863],[112,54,66,5.9225616455078125],[112,54,67,5.917882919311523],[112,54,68,5.9184064865112305],[112,54,69,5.923328876495361],[112,54,70,5.931975364685059],[112,54,71,5.941537857055664],[112,54,72,5.945594310760498],[112,54,73,5.946962833404541],[112,54,74,5.956364631652832],[112,54,75,5.9605536460876465],[112,54,76,5.951775550842285],[112,54,77,5.933669567108154],[112,54,78,5.909780025482178],[112,54,79,5.880720138549805],[112,55,64,5.943154811859131],[112,55,65,5.932080268859863],[112,55,66,5.9225616455078125],[112,55,67,5.917882919311523],[112,55,68,5.9184064865112305],[112,55,69,5.923328876495361],[112,55,70,5.931975364685059],[112,55,71,5.941537857055664],[112,55,72,5.945594310760498],[112,55,73,5.946962833404541],[112,55,74,5.956364631652832],[112,55,75,5.9605536460876465],[112,55,76,5.951775550842285],[112,55,77,5.933669567108154],[112,55,78,5.909780025482178],[112,55,79,5.880720138549805],[112,56,64,5.943154811859131],[112,56,65,5.932080268859863],[112,56,66,5.9225616455078125],[112,56,67,5.917882919311523],[112,56,68,5.9184064865112305],[112,56,69,5.923328876495361],[112,56,70,5.931975364685059],[112,56,71,5.941537857055664],[112,56,72,5.945594310760498],[112,56,73,5.946962833404541],[112,56,74,5.956364631652832],[112,56,75,5.9605536460876465],[112,56,76,5.951775550842285],[112,56,77,5.933669567108154],[112,56,78,5.909780025482178],[112,56,79,5.880720138549805],[112,57,64,5.943154811859131],[112,57,65,5.932080268859863],[112,57,66,5.9225616455078125],[112,57,67,5.917882919311523],[112,57,68,5.9184064865112305],[112,57,69,5.923328876495361],[112,57,70,5.931975364685059],[112,57,71,5.941537857055664],[112,57,72,5.945594310760498],[112,57,73,5.946962833404541],[112,57,74,5.956364631652832],[112,57,75,5.9605536460876465],[112,57,76,5.951775550842285],[112,57,77,5.933669567108154],[112,57,78,5.909780025482178],[112,57,79,5.880720138549805],[112,58,64,5.943154811859131],[112,58,65,5.932080268859863],[112,58,66,5.9225616455078125],[112,58,67,5.917882919311523],[112,58,68,5.9184064865112305],[112,58,69,5.923328876495361],[112,58,70,5.931975364685059],[112,58,71,5.941537857055664],[112,58,72,5.945594310760498],[112,58,73,5.946962833404541],[112,58,74,5.956364631652832],[112,58,75,5.9605536460876465],[112,58,76,5.951775550842285],[112,58,77,5.933669567108154],[112,58,78,5.909780025482178],[112,58,79,5.880720138549805],[112,59,64,5.943154811859131],[112,59,65,5.932080268859863],[112,59,66,5.9225616455078125],[112,59,67,5.917882919311523],[112,59,68,5.9184064865112305],[112,59,69,5.923328876495361],[112,59,70,5.931975364685059],[112,59,71,5.941537857055664],[112,59,72,5.945594310760498],[112,59,73,5.946962833404541],[112,59,74,5.956364631652832],[112,59,75,5.9605536460876465],[112,59,76,5.951775550842285],[112,59,77,5.933669567108154],[112,59,78,5.909780025482178],[112,59,79,5.880720138549805],[112,60,64,5.943154811859131],[112,60,65,5.932080268859863],[112,60,66,5.9225616455078125],[112,60,67,5.917882919311523],[112,60,68,5.9184064865112305],[112,60,69,5.923328876495361],[112,60,70,5.931975364685059],[112,60,71,5.941537857055664],[112,60,72,5.945594310760498],[112,60,73,5.946962833404541],[112,60,74,5.956364631652832],[112,60,75,5.9605536460876465],[112,60,76,5.951775550842285],[112,60,77,5.933669567108154],[112,60,78,5.909780025482178],[112,60,79,5.880720138549805],[112,61,64,5.943154811859131],[112,61,65,5.932080268859863],[112,61,66,5.9225616455078125],[112,61,67,5.917882919311523],[112,61,68,5.9184064865112305],[112,61,69,5.923328876495361],[112,61,70,5.931975364685059],[112,61,71,5.941537857055664],[112,61,72,5.945594310760498],[112,61,73,5.946962833404541],[112,61,74,5.956364631652832],[112,61,75,5.9605536460876465],[112,61,76,5.951775550842285],[112,61,77,5.933669567108154],[112,61,78,5.909780025482178],[112,61,79,5.880720138549805],[112,62,64,5.943154811859131],[112,62,65,5.932080268859863],[112,62,66,5.9225616455078125],[112,62,67,5.917882919311523],[112,62,68,5.9184064865112305],[112,62,69,5.923328876495361],[112,62,70,5.931975364685059],[112,62,71,5.941537857055664],[112,62,72,5.945594310760498],[112,62,73,5.946962833404541],[112,62,74,5.956364631652832],[112,62,75,5.9605536460876465],[112,62,76,5.951775550842285],[112,62,77,5.933669567108154],[112,62,78,5.909780025482178],[112,62,79,5.880720138549805],[112,63,64,5.943154811859131],[112,63,65,5.932080268859863],[112,63,66,5.9225616455078125],[112,63,67,5.917882919311523],[112,63,68,5.9184064865112305],[112,63,69,5.923328876495361],[112,63,70,5.931975364685059],[112,63,71,5.941537857055664],[112,63,72,5.945594310760498],[112,63,73,5.946962833404541],[112,63,74,5.956364631652832],[112,63,75,5.9605536460876465],[112,63,76,5.951775550842285],[112,63,77,5.933669567108154],[112,63,78,5.909780025482178],[112,63,79,5.880720138549805],[112,64,64,5.943154811859131],[112,64,65,5.932080268859863],[112,64,66,5.9225616455078125],[112,64,67,5.917882919311523],[112,64,68,5.9184064865112305],[112,64,69,5.923328876495361],[112,64,70,5.931975364685059],[112,64,71,5.941537857055664],[112,64,72,5.945594310760498],[112,64,73,5.946962833404541],[112,64,74,5.956364631652832],[112,64,75,5.9605536460876465],[112,64,76,5.951775550842285],[112,64,77,5.933669567108154],[112,64,78,5.909780025482178],[112,64,79,5.880720138549805],[112,65,64,5.943154811859131],[112,65,65,5.932080268859863],[112,65,66,5.9225616455078125],[112,65,67,5.917882919311523],[112,65,68,5.9184064865112305],[112,65,69,5.923328876495361],[112,65,70,5.931975364685059],[112,65,71,5.941537857055664],[112,65,72,5.945594310760498],[112,65,73,5.946962833404541],[112,65,74,5.956364631652832],[112,65,75,5.9605536460876465],[112,65,76,5.951775550842285],[112,65,77,5.933669567108154],[112,65,78,5.909780025482178],[112,65,79,5.880720138549805],[112,66,64,5.943154811859131],[112,66,65,5.932080268859863],[112,66,66,5.9225616455078125],[112,66,67,5.917882919311523],[112,66,68,5.9184064865112305],[112,66,69,5.923328876495361],[112,66,70,5.931975364685059],[112,66,71,5.941537857055664],[112,66,72,5.945594310760498],[112,66,73,5.946962833404541],[112,66,74,5.956364631652832],[112,66,75,5.9605536460876465],[112,66,76,5.951775550842285],[112,66,77,5.933669567108154],[112,66,78,5.909780025482178],[112,66,79,5.880720138549805],[112,67,64,5.943154811859131],[112,67,65,5.932080268859863],[112,67,66,5.9225616455078125],[112,67,67,5.917882919311523],[112,67,68,5.9184064865112305],[112,67,69,5.923328876495361],[112,67,70,5.931975364685059],[112,67,71,5.941537857055664],[112,67,72,5.945594310760498],[112,67,73,5.946962833404541],[112,67,74,5.956364631652832],[112,67,75,5.9605536460876465],[112,67,76,5.951775550842285],[112,67,77,5.933669567108154],[112,67,78,5.909780025482178],[112,67,79,5.880720138549805],[112,68,64,5.943154811859131],[112,68,65,5.932080268859863],[112,68,66,5.9225616455078125],[112,68,67,5.917882919311523],[112,68,68,5.9184064865112305],[112,68,69,5.923328876495361],[112,68,70,5.931975364685059],[112,68,71,5.941537857055664],[112,68,72,5.945594310760498],[112,68,73,5.946962833404541],[112,68,74,5.956364631652832],[112,68,75,5.9605536460876465],[112,68,76,5.951775550842285],[112,68,77,5.933669567108154],[112,68,78,5.909780025482178],[112,68,79,5.880720138549805],[112,69,64,5.943154811859131],[112,69,65,5.932080268859863],[112,69,66,5.9225616455078125],[112,69,67,5.917882919311523],[112,69,68,5.9184064865112305],[112,69,69,5.923328876495361],[112,69,70,5.931975364685059],[112,69,71,5.941537857055664],[112,69,72,5.945594310760498],[112,69,73,5.946962833404541],[112,69,74,5.956364631652832],[112,69,75,5.9605536460876465],[112,69,76,5.951775550842285],[112,69,77,5.933669567108154],[112,69,78,5.909780025482178],[112,69,79,5.880720138549805],[112,70,64,5.943154811859131],[112,70,65,5.932080268859863],[112,70,66,5.9225616455078125],[112,70,67,5.917882919311523],[112,70,68,5.9184064865112305],[112,70,69,5.923328876495361],[112,70,70,5.931975364685059],[112,70,71,5.941537857055664],[112,70,72,5.945594310760498],[112,70,73,5.946962833404541],[112,70,74,5.956364631652832],[112,70,75,5.9605536460876465],[112,70,76,5.951775550842285],[112,70,77,5.933669567108154],[112,70,78,5.909780025482178],[112,70,79,5.880720138549805],[112,71,64,5.943154811859131],[112,71,65,5.932080268859863],[112,71,66,5.9225616455078125],[112,71,67,5.917882919311523],[112,71,68,5.9184064865112305],[112,71,69,5.923328876495361],[112,71,70,5.931975364685059],[112,71,71,5.941537857055664],[112,71,72,5.945594310760498],[112,71,73,5.946962833404541],[112,71,74,5.956364631652832],[112,71,75,5.9605536460876465],[112,71,76,5.951775550842285],[112,71,77,5.933669567108154],[112,71,78,5.909780025482178],[112,71,79,5.880720138549805],[112,72,64,5.943154811859131],[112,72,65,5.932080268859863],[112,72,66,5.9225616455078125],[112,72,67,5.917882919311523],[112,72,68,5.9184064865112305],[112,72,69,5.923328876495361],[112,72,70,5.931975364685059],[112,72,71,5.941537857055664],[112,72,72,5.945594310760498],[112,72,73,5.946962833404541],[112,72,74,5.956364631652832],[112,72,75,5.9605536460876465],[112,72,76,5.951775550842285],[112,72,77,5.933669567108154],[112,72,78,5.909780025482178],[112,72,79,5.880720138549805],[112,73,64,5.943154811859131],[112,73,65,5.932080268859863],[112,73,66,5.9225616455078125],[112,73,67,5.917882919311523],[112,73,68,5.9184064865112305],[112,73,69,5.923328876495361],[112,73,70,5.931975364685059],[112,73,71,5.941537857055664],[112,73,72,5.945594310760498],[112,73,73,5.946962833404541],[112,73,74,5.956364631652832],[112,73,75,5.9605536460876465],[112,73,76,5.951775550842285],[112,73,77,5.933669567108154],[112,73,78,5.909780025482178],[112,73,79,5.880720138549805],[112,74,64,5.943154811859131],[112,74,65,5.932080268859863],[112,74,66,5.9225616455078125],[112,74,67,5.917882919311523],[112,74,68,5.9184064865112305],[112,74,69,5.923328876495361],[112,74,70,5.931975364685059],[112,74,71,5.941537857055664],[112,74,72,5.945594310760498],[112,74,73,5.946962833404541],[112,74,74,5.956364631652832],[112,74,75,5.9605536460876465],[112,74,76,5.951775550842285],[112,74,77,5.933669567108154],[112,74,78,5.909780025482178],[112,74,79,5.880720138549805],[112,75,64,5.943154811859131],[112,75,65,5.932080268859863],[112,75,66,5.9225616455078125],[112,75,67,5.917882919311523],[112,75,68,5.9184064865112305],[112,75,69,5.923328876495361],[112,75,70,5.931975364685059],[112,75,71,5.941537857055664],[112,75,72,5.945594310760498],[112,75,73,5.946962833404541],[112,75,74,5.956364631652832],[112,75,75,5.9605536460876465],[112,75,76,5.951775550842285],[112,75,77,5.933669567108154],[112,75,78,5.909780025482178],[112,75,79,5.880720138549805],[112,76,64,5.943154811859131],[112,76,65,5.932080268859863],[112,76,66,5.9225616455078125],[112,76,67,5.917882919311523],[112,76,68,5.9184064865112305],[112,76,69,5.923328876495361],[112,76,70,5.931975364685059],[112,76,71,5.941537857055664],[112,76,72,5.945594310760498],[112,76,73,5.946962833404541],[112,76,74,5.956364631652832],[112,76,75,5.9605536460876465],[112,76,76,5.951775550842285],[112,76,77,5.933669567108154],[112,76,78,5.909780025482178],[112,76,79,5.880720138549805],[112,77,64,5.943154811859131],[112,77,65,5.932080268859863],[112,77,66,5.9225616455078125],[112,77,67,5.917882919311523],[112,77,68,5.9184064865112305],[112,77,69,5.923328876495361],[112,77,70,5.931975364685059],[112,77,71,5.941537857055664],[112,77,72,5.945594310760498],[112,77,73,5.946962833404541],[112,77,74,5.956364631652832],[112,77,75,5.9605536460876465],[112,77,76,5.951775550842285],[112,77,77,5.933669567108154],[112,77,78,5.909780025482178],[112,77,79,5.880720138549805],[112,78,64,5.943154811859131],[112,78,65,5.932080268859863],[112,78,66,5.9225616455078125],[112,78,67,5.917882919311523],[112,78,68,5.9184064865112305],[112,78,69,5.923328876495361],[112,78,70,5.931975364685059],[112,78,71,5.941537857055664],[112,78,72,5.945594310760498],[112,78,73,5.946962833404541],[112,78,74,5.956364631652832],[112,78,75,5.9605536460876465],[112,78,76,5.951775550842285],[112,78,77,5.933669567108154],[112,78,78,5.909780025482178],[112,78,79,5.880720138549805],[112,79,64,5.943154811859131],[112,79,65,5.932080268859863],[112,79,66,5.9225616455078125],[112,79,67,5.917882919311523],[112,79,68,5.9184064865112305],[112,79,69,5.923328876495361],[112,79,70,5.931975364685059],[112,79,71,5.941537857055664],[112,79,72,5.945594310760498],[112,79,73,5.946962833404541],[112,79,74,5.956364631652832],[112,79,75,5.9605536460876465],[112,79,76,5.951775550842285],[112,79,77,5.933669567108154],[112,79,78,5.909780025482178],[112,79,79,5.880720138549805],[112,80,64,5.943154811859131],[112,80,65,5.932080268859863],[112,80,66,5.9225616455078125],[112,80,67,5.917882919311523],[112,80,68,5.9184064865112305],[112,80,69,5.923328876495361],[112,80,70,5.931975364685059],[112,80,71,5.941537857055664],[112,80,72,5.945594310760498],[112,80,73,5.946962833404541],[112,80,74,5.956364631652832],[112,80,75,5.9605536460876465],[112,80,76,5.951775550842285],[112,80,77,5.933669567108154],[112,80,78,5.909780025482178],[112,80,79,5.880720138549805],[112,81,64,5.943154811859131],[112,81,65,5.932080268859863],[112,81,66,5.9225616455078125],[112,81,67,5.917882919311523],[112,81,68,5.9184064865112305],[112,81,69,5.923328876495361],[112,81,70,5.931975364685059],[112,81,71,5.941537857055664],[112,81,72,5.945594310760498],[112,81,73,5.946962833404541],[112,81,74,5.956364631652832],[112,81,75,5.9605536460876465],[112,81,76,5.951775550842285],[112,81,77,5.933669567108154],[112,81,78,5.909780025482178],[112,81,79,5.880720138549805],[112,82,64,5.943154811859131],[112,82,65,5.932080268859863],[112,82,66,5.9225616455078125],[112,82,67,5.917882919311523],[112,82,68,5.9184064865112305],[112,82,69,5.923328876495361],[112,82,70,5.931975364685059],[112,82,71,5.941537857055664],[112,82,72,5.945594310760498],[112,82,73,5.946962833404541],[112,82,74,5.956364631652832],[112,82,75,5.9605536460876465],[112,82,76,5.951775550842285],[112,82,77,5.933669567108154],[112,82,78,5.909780025482178],[112,82,79,5.880720138549805],[112,83,64,5.943154811859131],[112,83,65,5.932080268859863],[112,83,66,5.9225616455078125],[112,83,67,5.917882919311523],[112,83,68,5.9184064865112305],[112,83,69,5.923328876495361],[112,83,70,5.931975364685059],[112,83,71,5.941537857055664],[112,83,72,5.945594310760498],[112,83,73,5.946962833404541],[112,83,74,5.956364631652832],[112,83,75,5.9605536460876465],[112,83,76,5.951775550842285],[112,83,77,5.933669567108154],[112,83,78,5.909780025482178],[112,83,79,5.880720138549805],[112,84,64,5.943154811859131],[112,84,65,5.932080268859863],[112,84,66,5.9225616455078125],[112,84,67,5.917882919311523],[112,84,68,5.9184064865112305],[112,84,69,5.923328876495361],[112,84,70,5.931975364685059],[112,84,71,5.941537857055664],[112,84,72,5.945594310760498],[112,84,73,5.946962833404541],[112,84,74,5.956364631652832],[112,84,75,5.9605536460876465],[112,84,76,5.951775550842285],[112,84,77,5.933669567108154],[112,84,78,5.909780025482178],[112,84,79,5.880720138549805],[112,85,64,5.943154811859131],[112,85,65,5.932080268859863],[112,85,66,5.9225616455078125],[112,85,67,5.917882919311523],[112,85,68,5.9184064865112305],[112,85,69,5.923328876495361],[112,85,70,5.931975364685059],[112,85,71,5.941537857055664],[112,85,72,5.945594310760498],[112,85,73,5.946962833404541],[112,85,74,5.956364631652832],[112,85,75,5.9605536460876465],[112,85,76,5.951775550842285],[112,85,77,5.933669567108154],[112,85,78,5.909780025482178],[112,85,79,5.880720138549805],[112,86,64,5.943154811859131],[112,86,65,5.932080268859863],[112,86,66,5.9225616455078125],[112,86,67,5.917882919311523],[112,86,68,5.9184064865112305],[112,86,69,5.923328876495361],[112,86,70,5.931975364685059],[112,86,71,5.941537857055664],[112,86,72,5.945594310760498],[112,86,73,5.946962833404541],[112,86,74,5.956364631652832],[112,86,75,5.9605536460876465],[112,86,76,5.951775550842285],[112,86,77,5.933669567108154],[112,86,78,5.909780025482178],[112,86,79,5.880720138549805],[112,87,64,5.943154811859131],[112,87,65,5.932080268859863],[112,87,66,5.9225616455078125],[112,87,67,5.917882919311523],[112,87,68,5.9184064865112305],[112,87,69,5.923328876495361],[112,87,70,5.931975364685059],[112,87,71,5.941537857055664],[112,87,72,5.945594310760498],[112,87,73,5.946962833404541],[112,87,74,5.956364631652832],[112,87,75,5.9605536460876465],[112,87,76,5.951775550842285],[112,87,77,5.933669567108154],[112,87,78,5.909780025482178],[112,87,79,5.880720138549805],[112,88,64,5.943154811859131],[112,88,65,5.932080268859863],[112,88,66,5.9225616455078125],[112,88,67,5.917882919311523],[112,88,68,5.9184064865112305],[112,88,69,5.923328876495361],[112,88,70,5.931975364685059],[112,88,71,5.941537857055664],[112,88,72,5.945594310760498],[112,88,73,5.946962833404541],[112,88,74,5.956364631652832],[112,88,75,5.9605536460876465],[112,88,76,5.951775550842285],[112,88,77,5.933669567108154],[112,88,78,5.909780025482178],[112,88,79,5.880720138549805],[112,89,64,5.943154811859131],[112,89,65,5.932080268859863],[112,89,66,5.9225616455078125],[112,89,67,5.917882919311523],[112,89,68,5.9184064865112305],[112,89,69,5.923328876495361],[112,89,70,5.931975364685059],[112,89,71,5.941537857055664],[112,89,72,5.945594310760498],[112,89,73,5.946962833404541],[112,89,74,5.956364631652832],[112,89,75,5.9605536460876465],[112,89,76,5.951775550842285],[112,89,77,5.933669567108154],[112,89,78,5.909780025482178],[112,89,79,5.880720138549805],[112,90,64,5.943154811859131],[112,90,65,5.932080268859863],[112,90,66,5.9225616455078125],[112,90,67,5.917882919311523],[112,90,68,5.9184064865112305],[112,90,69,5.923328876495361],[112,90,70,5.931975364685059],[112,90,71,5.941537857055664],[112,90,72,5.945594310760498],[112,90,73,5.946962833404541],[112,90,74,5.956364631652832],[112,90,75,5.9605536460876465],[112,90,76,5.951775550842285],[112,90,77,5.933669567108154],[112,90,78,5.909780025482178],[112,90,79,5.880720138549805],[112,91,64,5.943154811859131],[112,91,65,5.932080268859863],[112,91,66,5.9225616455078125],[112,91,67,5.917882919311523],[112,91,68,5.9184064865112305],[112,91,69,5.923328876495361],[112,91,70,5.931975364685059],[112,91,71,5.941537857055664],[112,91,72,5.945594310760498],[112,91,73,5.946962833404541],[112,91,74,5.956364631652832],[112,91,75,5.9605536460876465],[112,91,76,5.951775550842285],[112,91,77,5.933669567108154],[112,91,78,5.909780025482178],[112,91,79,5.880720138549805],[112,92,64,5.943154811859131],[112,92,65,5.932080268859863],[112,92,66,5.9225616455078125],[112,92,67,5.917882919311523],[112,92,68,5.9184064865112305],[112,92,69,5.923328876495361],[112,92,70,5.931975364685059],[112,92,71,5.941537857055664],[112,92,72,5.945594310760498],[112,92,73,5.946962833404541],[112,92,74,5.956364631652832],[112,92,75,5.9605536460876465],[112,92,76,5.951775550842285],[112,92,77,5.933669567108154],[112,92,78,5.909780025482178],[112,92,79,5.880720138549805],[112,93,64,5.943154811859131],[112,93,65,5.932080268859863],[112,93,66,5.9225616455078125],[112,93,67,5.917882919311523],[112,93,68,5.9184064865112305],[112,93,69,5.923328876495361],[112,93,70,5.931975364685059],[112,93,71,5.941537857055664],[112,93,72,5.945594310760498],[112,93,73,5.946962833404541],[112,93,74,5.956364631652832],[112,93,75,5.9605536460876465],[112,93,76,5.951775550842285],[112,93,77,5.933669567108154],[112,93,78,5.909780025482178],[112,93,79,5.880720138549805],[112,94,64,5.943154811859131],[112,94,65,5.932080268859863],[112,94,66,5.9225616455078125],[112,94,67,5.917882919311523],[112,94,68,5.9184064865112305],[112,94,69,5.923328876495361],[112,94,70,5.931975364685059],[112,94,71,5.941537857055664],[112,94,72,5.945594310760498],[112,94,73,5.946962833404541],[112,94,74,5.956364631652832],[112,94,75,5.9605536460876465],[112,94,76,5.951775550842285],[112,94,77,5.933669567108154],[112,94,78,5.909780025482178],[112,94,79,5.880720138549805],[112,95,64,5.943154811859131],[112,95,65,5.932080268859863],[112,95,66,5.9225616455078125],[112,95,67,5.917882919311523],[112,95,68,5.9184064865112305],[112,95,69,5.923328876495361],[112,95,70,5.931975364685059],[112,95,71,5.941537857055664],[112,95,72,5.945594310760498],[112,95,73,5.946962833404541],[112,95,74,5.956364631652832],[112,95,75,5.9605536460876465],[112,95,76,5.951775550842285],[112,95,77,5.933669567108154],[112,95,78,5.909780025482178],[112,95,79,5.880720138549805],[112,96,64,5.943154811859131],[112,96,65,5.932080268859863],[112,96,66,5.9225616455078125],[112,96,67,5.917882919311523],[112,96,68,5.9184064865112305],[112,96,69,5.923328876495361],[112,96,70,5.931975364685059],[112,96,71,5.941537857055664],[112,96,72,5.945594310760498],[112,96,73,5.946962833404541],[112,96,74,5.956364631652832],[112,96,75,5.9605536460876465],[112,96,76,5.951775550842285],[112,96,77,5.933669567108154],[112,96,78,5.909780025482178],[112,96,79,5.880720138549805],[112,97,64,5.943154811859131],[112,97,65,5.932080268859863],[112,97,66,5.9225616455078125],[112,97,67,5.917882919311523],[112,97,68,5.9184064865112305],[112,97,69,5.923328876495361],[112,97,70,5.931975364685059],[112,97,71,5.941537857055664],[112,97,72,5.945594310760498],[112,97,73,5.946962833404541],[112,97,74,5.956364631652832],[112,97,75,5.9605536460876465],[112,97,76,5.951775550842285],[112,97,77,5.933669567108154],[112,97,78,5.909780025482178],[112,97,79,5.880720138549805],[112,98,64,5.943154811859131],[112,98,65,5.932080268859863],[112,98,66,5.9225616455078125],[112,98,67,5.917882919311523],[112,98,68,5.9184064865112305],[112,98,69,5.923328876495361],[112,98,70,5.931975364685059],[112,98,71,5.941537857055664],[112,98,72,5.945594310760498],[112,98,73,5.946962833404541],[112,98,74,5.956364631652832],[112,98,75,5.9605536460876465],[112,98,76,5.951775550842285],[112,98,77,5.933669567108154],[112,98,78,5.909780025482178],[112,98,79,5.880720138549805],[112,99,64,5.943154811859131],[112,99,65,5.932080268859863],[112,99,66,5.9225616455078125],[112,99,67,5.917882919311523],[112,99,68,5.9184064865112305],[112,99,69,5.923328876495361],[112,99,70,5.931975364685059],[112,99,71,5.941537857055664],[112,99,72,5.945594310760498],[112,99,73,5.946962833404541],[112,99,74,5.956364631652832],[112,99,75,5.9605536460876465],[112,99,76,5.951775550842285],[112,99,77,5.933669567108154],[112,99,78,5.909780025482178],[112,99,79,5.880720138549805],[112,100,64,5.943154811859131],[112,100,65,5.932080268859863],[112,100,66,5.9225616455078125],[112,100,67,5.917882919311523],[112,100,68,5.9184064865112305],[112,100,69,5.923328876495361],[112,100,70,5.931975364685059],[112,100,71,5.941537857055664],[112,100,72,5.945594310760498],[112,100,73,5.946962833404541],[112,100,74,5.956364631652832],[112,100,75,5.9605536460876465],[112,100,76,5.951775550842285],[112,100,77,5.933669567108154],[112,100,78,5.909780025482178],[112,100,79,5.880720138549805],[112,101,64,5.943154811859131],[112,101,65,5.932080268859863],[112,101,66,5.9225616455078125],[112,101,67,5.917882919311523],[112,101,68,5.9184064865112305],[112,101,69,5.923328876495361],[112,101,70,5.931975364685059],[112,101,71,5.941537857055664],[112,101,72,5.945594310760498],[112,101,73,5.946962833404541],[112,101,74,5.956364631652832],[112,101,75,5.9605536460876465],[112,101,76,5.951775550842285],[112,101,77,5.933669567108154],[112,101,78,5.909780025482178],[112,101,79,5.880720138549805],[112,102,64,5.943154811859131],[112,102,65,5.932080268859863],[112,102,66,5.9225616455078125],[112,102,67,5.917882919311523],[112,102,68,5.9184064865112305],[112,102,69,5.923328876495361],[112,102,70,5.931975364685059],[112,102,71,5.941537857055664],[112,102,72,5.945594310760498],[112,102,73,5.946962833404541],[112,102,74,5.956364631652832],[112,102,75,5.9605536460876465],[112,102,76,5.951775550842285],[112,102,77,5.933669567108154],[112,102,78,5.909780025482178],[112,102,79,5.880720138549805],[112,103,64,5.943154811859131],[112,103,65,5.932080268859863],[112,103,66,5.9225616455078125],[112,103,67,5.917882919311523],[112,103,68,5.9184064865112305],[112,103,69,5.923328876495361],[112,103,70,5.931975364685059],[112,103,71,5.941537857055664],[112,103,72,5.945594310760498],[112,103,73,5.946962833404541],[112,103,74,5.956364631652832],[112,103,75,5.9605536460876465],[112,103,76,5.951775550842285],[112,103,77,5.933669567108154],[112,103,78,5.909780025482178],[112,103,79,5.880720138549805],[112,104,64,5.943154811859131],[112,104,65,5.932080268859863],[112,104,66,5.9225616455078125],[112,104,67,5.917882919311523],[112,104,68,5.9184064865112305],[112,104,69,5.923328876495361],[112,104,70,5.931975364685059],[112,104,71,5.941537857055664],[112,104,72,5.945594310760498],[112,104,73,5.946962833404541],[112,104,74,5.956364631652832],[112,104,75,5.9605536460876465],[112,104,76,5.951775550842285],[112,104,77,5.933669567108154],[112,104,78,5.909780025482178],[112,104,79,5.880720138549805],[112,105,64,5.943154811859131],[112,105,65,5.932080268859863],[112,105,66,5.9225616455078125],[112,105,67,5.917882919311523],[112,105,68,5.9184064865112305],[112,105,69,5.923328876495361],[112,105,70,5.931975364685059],[112,105,71,5.941537857055664],[112,105,72,5.945594310760498],[112,105,73,5.946962833404541],[112,105,74,5.956364631652832],[112,105,75,5.9605536460876465],[112,105,76,5.951775550842285],[112,105,77,5.933669567108154],[112,105,78,5.909780025482178],[112,105,79,5.880720138549805],[112,106,64,5.943154811859131],[112,106,65,5.932080268859863],[112,106,66,5.9225616455078125],[112,106,67,5.917882919311523],[112,106,68,5.9184064865112305],[112,106,69,5.923328876495361],[112,106,70,5.931975364685059],[112,106,71,5.941537857055664],[112,106,72,5.945594310760498],[112,106,73,5.946962833404541],[112,106,74,5.956364631652832],[112,106,75,5.9605536460876465],[112,106,76,5.951775550842285],[112,106,77,5.933669567108154],[112,106,78,5.909780025482178],[112,106,79,5.880720138549805],[112,107,64,5.943154811859131],[112,107,65,5.932080268859863],[112,107,66,5.9225616455078125],[112,107,67,5.917882919311523],[112,107,68,5.9184064865112305],[112,107,69,5.923328876495361],[112,107,70,5.931975364685059],[112,107,71,5.941537857055664],[112,107,72,5.945594310760498],[112,107,73,5.946962833404541],[112,107,74,5.956364631652832],[112,107,75,5.9605536460876465],[112,107,76,5.951775550842285],[112,107,77,5.933669567108154],[112,107,78,5.909780025482178],[112,107,79,5.880720138549805],[112,108,64,5.943154811859131],[112,108,65,5.932080268859863],[112,108,66,5.9225616455078125],[112,108,67,5.917882919311523],[112,108,68,5.9184064865112305],[112,108,69,5.923328876495361],[112,108,70,5.931975364685059],[112,108,71,5.941537857055664],[112,108,72,5.945594310760498],[112,108,73,5.946962833404541],[112,108,74,5.956364631652832],[112,108,75,5.9605536460876465],[112,108,76,5.951775550842285],[112,108,77,5.933669567108154],[112,108,78,5.909780025482178],[112,108,79,5.880720138549805],[112,109,64,5.943154811859131],[112,109,65,5.932080268859863],[112,109,66,5.9225616455078125],[112,109,67,5.917882919311523],[112,109,68,5.9184064865112305],[112,109,69,5.923328876495361],[112,109,70,5.931975364685059],[112,109,71,5.941537857055664],[112,109,72,5.945594310760498],[112,109,73,5.946962833404541],[112,109,74,5.956364631652832],[112,109,75,5.9605536460876465],[112,109,76,5.951775550842285],[112,109,77,5.933669567108154],[112,109,78,5.909780025482178],[112,109,79,5.880720138549805],[112,110,64,5.943154811859131],[112,110,65,5.932080268859863],[112,110,66,5.9225616455078125],[112,110,67,5.917882919311523],[112,110,68,5.9184064865112305],[112,110,69,5.923328876495361],[112,110,70,5.931975364685059],[112,110,71,5.941537857055664],[112,110,72,5.945594310760498],[112,110,73,5.946962833404541],[112,110,74,5.956364631652832],[112,110,75,5.9605536460876465],[112,110,76,5.951775550842285],[112,110,77,5.933669567108154],[112,110,78,5.909780025482178],[112,110,79,5.880720138549805],[112,111,64,5.943154811859131],[112,111,65,5.932080268859863],[112,111,66,5.9225616455078125],[112,111,67,5.917882919311523],[112,111,68,5.9184064865112305],[112,111,69,5.923328876495361],[112,111,70,5.931975364685059],[112,111,71,5.941537857055664],[112,111,72,5.945594310760498],[112,111,73,5.946962833404541],[112,111,74,5.956364631652832],[112,111,75,5.9605536460876465],[112,111,76,5.951775550842285],[112,111,77,5.933669567108154],[112,111,78,5.909780025482178],[112,111,79,5.880720138549805],[112,112,64,5.943154811859131],[112,112,65,5.932080268859863],[112,112,66,5.9225616455078125],[112,112,67,5.917882919311523],[112,112,68,5.9184064865112305],[112,112,69,5.923328876495361],[112,112,70,5.931975364685059],[112,112,71,5.941537857055664],[112,112,72,5.945594310760498],[112,112,73,5.946962833404541],[112,112,74,5.956364631652832],[112,112,75,5.9605536460876465],[112,112,76,5.951775550842285],[112,112,77,5.933669567108154],[112,112,78,5.909780025482178],[112,112,79,5.880720138549805],[112,113,64,5.943154811859131],[112,113,65,5.932080268859863],[112,113,66,5.9225616455078125],[112,113,67,5.917882919311523],[112,113,68,5.9184064865112305],[112,113,69,5.923328876495361],[112,113,70,5.931975364685059],[112,113,71,5.941537857055664],[112,113,72,5.945594310760498],[112,113,73,5.946962833404541],[112,113,74,5.956364631652832],[112,113,75,5.9605536460876465],[112,113,76,5.951775550842285],[112,113,77,5.933669567108154],[112,113,78,5.909780025482178],[112,113,79,5.880720138549805],[112,114,64,5.943154811859131],[112,114,65,5.932080268859863],[112,114,66,5.9225616455078125],[112,114,67,5.917882919311523],[112,114,68,5.9184064865112305],[112,114,69,5.923328876495361],[112,114,70,5.931975364685059],[112,114,71,5.941537857055664],[112,114,72,5.945594310760498],[112,114,73,5.946962833404541],[112,114,74,5.956364631652832],[112,114,75,5.9605536460876465],[112,114,76,5.951775550842285],[112,114,77,5.933669567108154],[112,114,78,5.909780025482178],[112,114,79,5.880720138549805],[112,115,64,5.943154811859131],[112,115,65,5.932080268859863],[112,115,66,5.9225616455078125],[112,115,67,5.917882919311523],[112,115,68,5.9184064865112305],[112,115,69,5.923328876495361],[112,115,70,5.931975364685059],[112,115,71,5.941537857055664],[112,115,72,5.945594310760498],[112,115,73,5.946962833404541],[112,115,74,5.956364631652832],[112,115,75,5.9605536460876465],[112,115,76,5.951775550842285],[112,115,77,5.933669567108154],[112,115,78,5.909780025482178],[112,115,79,5.880720138549805],[112,116,64,5.943154811859131],[112,116,65,5.932080268859863],[112,116,66,5.9225616455078125],[112,116,67,5.917882919311523],[112,116,68,5.9184064865112305],[112,116,69,5.923328876495361],[112,116,70,5.931975364685059],[112,116,71,5.941537857055664],[112,116,72,5.945594310760498],[112,116,73,5.946962833404541],[112,116,74,5.956364631652832],[112,116,75,5.9605536460876465],[112,116,76,5.951775550842285],[112,116,77,5.933669567108154],[112,116,78,5.909780025482178],[112,116,79,5.880720138549805],[112,117,64,5.943154811859131],[112,117,65,5.932080268859863],[112,117,66,5.9225616455078125],[112,117,67,5.917882919311523],[112,117,68,5.9184064865112305],[112,117,69,5.923328876495361],[112,117,70,5.931975364685059],[112,117,71,5.941537857055664],[112,117,72,5.945594310760498],[112,117,73,5.946962833404541],[112,117,74,5.956364631652832],[112,117,75,5.9605536460876465],[112,117,76,5.951775550842285],[112,117,77,5.933669567108154],[112,117,78,5.909780025482178],[112,117,79,5.880720138549805],[112,118,64,5.943154811859131],[112,118,65,5.932080268859863],[112,118,66,5.9225616455078125],[112,118,67,5.917882919311523],[112,118,68,5.9184064865112305],[112,118,69,5.923328876495361],[112,118,70,5.931975364685059],[112,118,71,5.941537857055664],[112,118,72,5.945594310760498],[112,118,73,5.946962833404541],[112,118,74,5.956364631652832],[112,118,75,5.9605536460876465],[112,118,76,5.951775550842285],[112,118,77,5.933669567108154],[112,118,78,5.909780025482178],[112,118,79,5.880720138549805],[112,119,64,5.943154811859131],[112,119,65,5.932080268859863],[112,119,66,5.9225616455078125],[112,119,67,5.917882919311523],[112,119,68,5.9184064865112305],[112,119,69,5.923328876495361],[112,119,70,5.931975364685059],[112,119,71,5.941537857055664],[112,119,72,5.945594310760498],[112,119,73,5.946962833404541],[112,119,74,5.956364631652832],[112,119,75,5.9605536460876465],[112,119,76,5.951775550842285],[112,119,77,5.933669567108154],[112,119,78,5.909780025482178],[112,119,79,5.880720138549805],[112,120,64,5.943154811859131],[112,120,65,5.932080268859863],[112,120,66,5.9225616455078125],[112,120,67,5.917882919311523],[112,120,68,5.9184064865112305],[112,120,69,5.923328876495361],[112,120,70,5.931975364685059],[112,120,71,5.941537857055664],[112,120,72,5.945594310760498],[112,120,73,5.946962833404541],[112,120,74,5.956364631652832],[112,120,75,5.9605536460876465],[112,120,76,5.951775550842285],[112,120,77,5.933669567108154],[112,120,78,5.909780025482178],[112,120,79,5.880720138549805],[112,121,64,5.943154811859131],[112,121,65,5.932080268859863],[112,121,66,5.9225616455078125],[112,121,67,5.917882919311523],[112,121,68,5.9184064865112305],[112,121,69,5.923328876495361],[112,121,70,5.931975364685059],[112,121,71,5.941537857055664],[112,121,72,5.945594310760498],[112,121,73,5.946962833404541],[112,121,74,5.956364631652832],[112,121,75,5.9605536460876465],[112,121,76,5.951775550842285],[112,121,77,5.933669567108154],[112,121,78,5.909780025482178],[112,121,79,5.880720138549805],[112,122,64,5.943154811859131],[112,122,65,5.932080268859863],[112,122,66,5.9225616455078125],[112,122,67,5.917882919311523],[112,122,68,5.9184064865112305],[112,122,69,5.923328876495361],[112,122,70,5.931975364685059],[112,122,71,5.941537857055664],[112,122,72,5.945594310760498],[112,122,73,5.946962833404541],[112,122,74,5.956364631652832],[112,122,75,5.9605536460876465],[112,122,76,5.951775550842285],[112,122,77,5.933669567108154],[112,122,78,5.909780025482178],[112,122,79,5.880720138549805],[112,123,64,5.943154811859131],[112,123,65,5.932080268859863],[112,123,66,5.9225616455078125],[112,123,67,5.917882919311523],[112,123,68,5.9184064865112305],[112,123,69,5.923328876495361],[112,123,70,5.931975364685059],[112,123,71,5.941537857055664],[112,123,72,5.945594310760498],[112,123,73,5.946962833404541],[112,123,74,5.956364631652832],[112,123,75,5.9605536460876465],[112,123,76,5.951775550842285],[112,123,77,5.933669567108154],[112,123,78,5.909780025482178],[112,123,79,5.880720138549805],[112,124,64,5.943154811859131],[112,124,65,5.932080268859863],[112,124,66,5.9225616455078125],[112,124,67,5.917882919311523],[112,124,68,5.9184064865112305],[112,124,69,5.923328876495361],[112,124,70,5.931975364685059],[112,124,71,5.941537857055664],[112,124,72,5.945594310760498],[112,124,73,5.946962833404541],[112,124,74,5.956364631652832],[112,124,75,5.9605536460876465],[112,124,76,5.951775550842285],[112,124,77,5.933669567108154],[112,124,78,5.909780025482178],[112,124,79,5.880720138549805],[112,125,64,5.943154811859131],[112,125,65,5.932080268859863],[112,125,66,5.9225616455078125],[112,125,67,5.917882919311523],[112,125,68,5.9184064865112305],[112,125,69,5.923328876495361],[112,125,70,5.931975364685059],[112,125,71,5.941537857055664],[112,125,72,5.945594310760498],[112,125,73,5.946962833404541],[112,125,74,5.956364631652832],[112,125,75,5.9605536460876465],[112,125,76,5.951775550842285],[112,125,77,5.933669567108154],[112,125,78,5.909780025482178],[112,125,79,5.880720138549805],[112,126,64,5.943154811859131],[112,126,65,5.932080268859863],[112,126,66,5.9225616455078125],[112,126,67,5.917882919311523],[112,126,68,5.9184064865112305],[112,126,69,5.923328876495361],[112,126,70,5.931975364685059],[112,126,71,5.941537857055664],[112,126,72,5.945594310760498],[112,126,73,5.946962833404541],[112,126,74,5.956364631652832],[112,126,75,5.9605536460876465],[112,126,76,5.951775550842285],[112,126,77,5.933669567108154],[112,126,78,5.909780025482178],[112,126,79,5.880720138549805],[112,127,64,5.943154811859131],[112,127,65,5.932080268859863],[112,127,66,5.9225616455078125],[112,127,67,5.917882919311523],[112,127,68,5.9184064865112305],[112,127,69,5.923328876495361],[112,127,70,5.931975364685059],[112,127,71,5.941537857055664],[112,127,72,5.945594310760498],[112,127,73,5.946962833404541],[112,127,74,5.956364631652832],[112,127,75,5.9605536460876465],[112,127,76,5.951775550842285],[112,127,77,5.933669567108154],[112,127,78,5.909780025482178],[112,127,79,5.880720138549805],[112,128,64,5.943154811859131],[112,128,65,5.932080268859863],[112,128,66,5.9225616455078125],[112,128,67,5.917882919311523],[112,128,68,5.9184064865112305],[112,128,69,5.923328876495361],[112,128,70,5.931975364685059],[112,128,71,5.941537857055664],[112,128,72,5.945594310760498],[112,128,73,5.946962833404541],[112,128,74,5.956364631652832],[112,128,75,5.9605536460876465],[112,128,76,5.951775550842285],[112,128,77,5.933669567108154],[112,128,78,5.909780025482178],[112,128,79,5.880720138549805],[112,129,64,5.943154811859131],[112,129,65,5.932080268859863],[112,129,66,5.9225616455078125],[112,129,67,5.917882919311523],[112,129,68,5.9184064865112305],[112,129,69,5.923328876495361],[112,129,70,5.931975364685059],[112,129,71,5.941537857055664],[112,129,72,5.945594310760498],[112,129,73,5.946962833404541],[112,129,74,5.956364631652832],[112,129,75,5.9605536460876465],[112,129,76,5.951775550842285],[112,129,77,5.933669567108154],[112,129,78,5.909780025482178],[112,129,79,5.880720138549805],[112,130,64,5.943154811859131],[112,130,65,5.932080268859863],[112,130,66,5.9225616455078125],[112,130,67,5.917882919311523],[112,130,68,5.9184064865112305],[112,130,69,5.923328876495361],[112,130,70,5.931975364685059],[112,130,71,5.941537857055664],[112,130,72,5.945594310760498],[112,130,73,5.946962833404541],[112,130,74,5.956364631652832],[112,130,75,5.9605536460876465],[112,130,76,5.951775550842285],[112,130,77,5.933669567108154],[112,130,78,5.909780025482178],[112,130,79,5.880720138549805],[112,131,64,5.943154811859131],[112,131,65,5.932080268859863],[112,131,66,5.9225616455078125],[112,131,67,5.917882919311523],[112,131,68,5.9184064865112305],[112,131,69,5.923328876495361],[112,131,70,5.931975364685059],[112,131,71,5.941537857055664],[112,131,72,5.945594310760498],[112,131,73,5.946962833404541],[112,131,74,5.956364631652832],[112,131,75,5.9605536460876465],[112,131,76,5.951775550842285],[112,131,77,5.933669567108154],[112,131,78,5.909780025482178],[112,131,79,5.880720138549805],[112,132,64,5.943154811859131],[112,132,65,5.932080268859863],[112,132,66,5.9225616455078125],[112,132,67,5.917882919311523],[112,132,68,5.9184064865112305],[112,132,69,5.923328876495361],[112,132,70,5.931975364685059],[112,132,71,5.941537857055664],[112,132,72,5.945594310760498],[112,132,73,5.946962833404541],[112,132,74,5.956364631652832],[112,132,75,5.9605536460876465],[112,132,76,5.951775550842285],[112,132,77,5.933669567108154],[112,132,78,5.909780025482178],[112,132,79,5.880720138549805],[112,133,64,5.943154811859131],[112,133,65,5.932080268859863],[112,133,66,5.9225616455078125],[112,133,67,5.917882919311523],[112,133,68,5.9184064865112305],[112,133,69,5.923328876495361],[112,133,70,5.931975364685059],[112,133,71,5.941537857055664],[112,133,72,5.945594310760498],[112,133,73,5.946962833404541],[112,133,74,5.956364631652832],[112,133,75,5.9605536460876465],[112,133,76,5.951775550842285],[112,133,77,5.933669567108154],[112,133,78,5.909780025482178],[112,133,79,5.880720138549805],[112,134,64,5.943154811859131],[112,134,65,5.932080268859863],[112,134,66,5.9225616455078125],[112,134,67,5.917882919311523],[112,134,68,5.9184064865112305],[112,134,69,5.923328876495361],[112,134,70,5.931975364685059],[112,134,71,5.941537857055664],[112,134,72,5.945594310760498],[112,134,73,5.946962833404541],[112,134,74,5.956364631652832],[112,134,75,5.9605536460876465],[112,134,76,5.951775550842285],[112,134,77,5.933669567108154],[112,134,78,5.909780025482178],[112,134,79,5.880720138549805],[112,135,64,5.943154811859131],[112,135,65,5.932080268859863],[112,135,66,5.9225616455078125],[112,135,67,5.917882919311523],[112,135,68,5.9184064865112305],[112,135,69,5.923328876495361],[112,135,70,5.931975364685059],[112,135,71,5.941537857055664],[112,135,72,5.945594310760498],[112,135,73,5.946962833404541],[112,135,74,5.956364631652832],[112,135,75,5.9605536460876465],[112,135,76,5.951775550842285],[112,135,77,5.933669567108154],[112,135,78,5.909780025482178],[112,135,79,5.880720138549805],[112,136,64,5.943154811859131],[112,136,65,5.932080268859863],[112,136,66,5.9225616455078125],[112,136,67,5.917882919311523],[112,136,68,5.9184064865112305],[112,136,69,5.923328876495361],[112,136,70,5.931975364685059],[112,136,71,5.941537857055664],[112,136,72,5.945594310760498],[112,136,73,5.946962833404541],[112,136,74,5.956364631652832],[112,136,75,5.9605536460876465],[112,136,76,5.951775550842285],[112,136,77,5.933669567108154],[112,136,78,5.909780025482178],[112,136,79,5.880720138549805],[112,137,64,5.943154811859131],[112,137,65,5.932080268859863],[112,137,66,5.9225616455078125],[112,137,67,5.917882919311523],[112,137,68,5.9184064865112305],[112,137,69,5.923328876495361],[112,137,70,5.931975364685059],[112,137,71,5.941537857055664],[112,137,72,5.945594310760498],[112,137,73,5.946962833404541],[112,137,74,5.956364631652832],[112,137,75,5.9605536460876465],[112,137,76,5.951775550842285],[112,137,77,5.933669567108154],[112,137,78,5.909780025482178],[112,137,79,5.880720138549805],[112,138,64,5.943154811859131],[112,138,65,5.932080268859863],[112,138,66,5.9225616455078125],[112,138,67,5.917882919311523],[112,138,68,5.9184064865112305],[112,138,69,5.923328876495361],[112,138,70,5.931975364685059],[112,138,71,5.941537857055664],[112,138,72,5.945594310760498],[112,138,73,5.946962833404541],[112,138,74,5.956364631652832],[112,138,75,5.9605536460876465],[112,138,76,5.951775550842285],[112,138,77,5.933669567108154],[112,138,78,5.909780025482178],[112,138,79,5.880720138549805],[112,139,64,5.943154811859131],[112,139,65,5.932080268859863],[112,139,66,5.9225616455078125],[112,139,67,5.917882919311523],[112,139,68,5.9184064865112305],[112,139,69,5.923328876495361],[112,139,70,5.931975364685059],[112,139,71,5.941537857055664],[112,139,72,5.945594310760498],[112,139,73,5.946962833404541],[112,139,74,5.956364631652832],[112,139,75,5.9605536460876465],[112,139,76,5.951775550842285],[112,139,77,5.933669567108154],[112,139,78,5.909780025482178],[112,139,79,5.880720138549805],[112,140,64,5.943154811859131],[112,140,65,5.932080268859863],[112,140,66,5.9225616455078125],[112,140,67,5.917882919311523],[112,140,68,5.9184064865112305],[112,140,69,5.923328876495361],[112,140,70,5.931975364685059],[112,140,71,5.941537857055664],[112,140,72,5.945594310760498],[112,140,73,5.946962833404541],[112,140,74,5.956364631652832],[112,140,75,5.9605536460876465],[112,140,76,5.951775550842285],[112,140,77,5.933669567108154],[112,140,78,5.909780025482178],[112,140,79,5.880720138549805],[112,141,64,5.943154811859131],[112,141,65,5.932080268859863],[112,141,66,5.9225616455078125],[112,141,67,5.917882919311523],[112,141,68,5.9184064865112305],[112,141,69,5.923328876495361],[112,141,70,5.931975364685059],[112,141,71,5.941537857055664],[112,141,72,5.945594310760498],[112,141,73,5.946962833404541],[112,141,74,5.956364631652832],[112,141,75,5.9605536460876465],[112,141,76,5.951775550842285],[112,141,77,5.933669567108154],[112,141,78,5.909780025482178],[112,141,79,5.880720138549805],[112,142,64,5.943154811859131],[112,142,65,5.932080268859863],[112,142,66,5.9225616455078125],[112,142,67,5.917882919311523],[112,142,68,5.9184064865112305],[112,142,69,5.923328876495361],[112,142,70,5.931975364685059],[112,142,71,5.941537857055664],[112,142,72,5.945594310760498],[112,142,73,5.946962833404541],[112,142,74,5.956364631652832],[112,142,75,5.9605536460876465],[112,142,76,5.951775550842285],[112,142,77,5.933669567108154],[112,142,78,5.909780025482178],[112,142,79,5.880720138549805],[112,143,64,5.943154811859131],[112,143,65,5.932080268859863],[112,143,66,5.9225616455078125],[112,143,67,5.917882919311523],[112,143,68,5.9184064865112305],[112,143,69,5.923328876495361],[112,143,70,5.931975364685059],[112,143,71,5.941537857055664],[112,143,72,5.945594310760498],[112,143,73,5.946962833404541],[112,143,74,5.956364631652832],[112,143,75,5.9605536460876465],[112,143,76,5.951775550842285],[112,143,77,5.933669567108154],[112,143,78,5.909780025482178],[112,143,79,5.880720138549805],[112,144,64,5.943154811859131],[112,144,65,5.932080268859863],[112,144,66,5.9225616455078125],[112,144,67,5.917882919311523],[112,144,68,5.9184064865112305],[112,144,69,5.923328876495361],[112,144,70,5.931975364685059],[112,144,71,5.941537857055664],[112,144,72,5.945594310760498],[112,144,73,5.946962833404541],[112,144,74,5.956364631652832],[112,144,75,5.9605536460876465],[112,144,76,5.951775550842285],[112,144,77,5.933669567108154],[112,144,78,5.909780025482178],[112,144,79,5.880720138549805],[112,145,64,5.943154811859131],[112,145,65,5.932080268859863],[112,145,66,5.9225616455078125],[112,145,67,5.917882919311523],[112,145,68,5.9184064865112305],[112,145,69,5.923328876495361],[112,145,70,5.931975364685059],[112,145,71,5.941537857055664],[112,145,72,5.945594310760498],[112,145,73,5.946962833404541],[112,145,74,5.956364631652832],[112,145,75,5.9605536460876465],[112,145,76,5.951775550842285],[112,145,77,5.933669567108154],[112,145,78,5.909780025482178],[112,145,79,5.880720138549805],[112,146,64,5.943154811859131],[112,146,65,5.932080268859863],[112,146,66,5.9225616455078125],[112,146,67,5.917882919311523],[112,146,68,5.9184064865112305],[112,146,69,5.923328876495361],[112,146,70,5.931975364685059],[112,146,71,5.941537857055664],[112,146,72,5.945594310760498],[112,146,73,5.946962833404541],[112,146,74,5.956364631652832],[112,146,75,5.9605536460876465],[112,146,76,5.951775550842285],[112,146,77,5.933669567108154],[112,146,78,5.909780025482178],[112,146,79,5.880720138549805],[112,147,64,5.943154811859131],[112,147,65,5.932080268859863],[112,147,66,5.9225616455078125],[112,147,67,5.917882919311523],[112,147,68,5.9184064865112305],[112,147,69,5.923328876495361],[112,147,70,5.931975364685059],[112,147,71,5.941537857055664],[112,147,72,5.945594310760498],[112,147,73,5.946962833404541],[112,147,74,5.956364631652832],[112,147,75,5.9605536460876465],[112,147,76,5.951775550842285],[112,147,77,5.933669567108154],[112,147,78,5.909780025482178],[112,147,79,5.880720138549805],[112,148,64,5.943154811859131],[112,148,65,5.932080268859863],[112,148,66,5.9225616455078125],[112,148,67,5.917882919311523],[112,148,68,5.9184064865112305],[112,148,69,5.923328876495361],[112,148,70,5.931975364685059],[112,148,71,5.941537857055664],[112,148,72,5.945594310760498],[112,148,73,5.946962833404541],[112,148,74,5.956364631652832],[112,148,75,5.9605536460876465],[112,148,76,5.951775550842285],[112,148,77,5.933669567108154],[112,148,78,5.909780025482178],[112,148,79,5.880720138549805],[112,149,64,5.943154811859131],[112,149,65,5.932080268859863],[112,149,66,5.9225616455078125],[112,149,67,5.917882919311523],[112,149,68,5.9184064865112305],[112,149,69,5.923328876495361],[112,149,70,5.931975364685059],[112,149,71,5.941537857055664],[112,149,72,5.945594310760498],[112,149,73,5.946962833404541],[112,149,74,5.956364631652832],[112,149,75,5.9605536460876465],[112,149,76,5.951775550842285],[112,149,77,5.933669567108154],[112,149,78,5.909780025482178],[112,149,79,5.880720138549805],[112,150,64,5.943154811859131],[112,150,65,5.932080268859863],[112,150,66,5.9225616455078125],[112,150,67,5.917882919311523],[112,150,68,5.9184064865112305],[112,150,69,5.923328876495361],[112,150,70,5.931975364685059],[112,150,71,5.941537857055664],[112,150,72,5.945594310760498],[112,150,73,5.946962833404541],[112,150,74,5.956364631652832],[112,150,75,5.9605536460876465],[112,150,76,5.951775550842285],[112,150,77,5.933669567108154],[112,150,78,5.909780025482178],[112,150,79,5.880720138549805],[112,151,64,5.943154811859131],[112,151,65,5.932080268859863],[112,151,66,5.9225616455078125],[112,151,67,5.917882919311523],[112,151,68,5.9184064865112305],[112,151,69,5.923328876495361],[112,151,70,5.931975364685059],[112,151,71,5.941537857055664],[112,151,72,5.945594310760498],[112,151,73,5.946962833404541],[112,151,74,5.956364631652832],[112,151,75,5.9605536460876465],[112,151,76,5.951775550842285],[112,151,77,5.933669567108154],[112,151,78,5.909780025482178],[112,151,79,5.880720138549805],[112,152,64,5.943154811859131],[112,152,65,5.932080268859863],[112,152,66,5.9225616455078125],[112,152,67,5.917882919311523],[112,152,68,5.9184064865112305],[112,152,69,5.923328876495361],[112,152,70,5.931975364685059],[112,152,71,5.941537857055664],[112,152,72,5.945594310760498],[112,152,73,5.946962833404541],[112,152,74,5.956364631652832],[112,152,75,5.9605536460876465],[112,152,76,5.951775550842285],[112,152,77,5.933669567108154],[112,152,78,5.909780025482178],[112,152,79,5.880720138549805],[112,153,64,5.943154811859131],[112,153,65,5.932080268859863],[112,153,66,5.9225616455078125],[112,153,67,5.917882919311523],[112,153,68,5.9184064865112305],[112,153,69,5.923328876495361],[112,153,70,5.931975364685059],[112,153,71,5.941537857055664],[112,153,72,5.945594310760498],[112,153,73,5.946962833404541],[112,153,74,5.956364631652832],[112,153,75,5.9605536460876465],[112,153,76,5.951775550842285],[112,153,77,5.933669567108154],[112,153,78,5.909780025482178],[112,153,79,5.880720138549805],[112,154,64,5.943154811859131],[112,154,65,5.932080268859863],[112,154,66,5.9225616455078125],[112,154,67,5.917882919311523],[112,154,68,5.9184064865112305],[112,154,69,5.923328876495361],[112,154,70,5.931975364685059],[112,154,71,5.941537857055664],[112,154,72,5.945594310760498],[112,154,73,5.946962833404541],[112,154,74,5.956364631652832],[112,154,75,5.9605536460876465],[112,154,76,5.951775550842285],[112,154,77,5.933669567108154],[112,154,78,5.909780025482178],[112,154,79,5.880720138549805],[112,155,64,5.943154811859131],[112,155,65,5.932080268859863],[112,155,66,5.9225616455078125],[112,155,67,5.917882919311523],[112,155,68,5.9184064865112305],[112,155,69,5.923328876495361],[112,155,70,5.931975364685059],[112,155,71,5.941537857055664],[112,155,72,5.945594310760498],[112,155,73,5.946962833404541],[112,155,74,5.956364631652832],[112,155,75,5.9605536460876465],[112,155,76,5.951775550842285],[112,155,77,5.933669567108154],[112,155,78,5.909780025482178],[112,155,79,5.880720138549805],[112,156,64,5.943154811859131],[112,156,65,5.932080268859863],[112,156,66,5.9225616455078125],[112,156,67,5.917882919311523],[112,156,68,5.9184064865112305],[112,156,69,5.923328876495361],[112,156,70,5.931975364685059],[112,156,71,5.941537857055664],[112,156,72,5.945594310760498],[112,156,73,5.946962833404541],[112,156,74,5.956364631652832],[112,156,75,5.9605536460876465],[112,156,76,5.951775550842285],[112,156,77,5.933669567108154],[112,156,78,5.909780025482178],[112,156,79,5.880720138549805],[112,157,64,5.943154811859131],[112,157,65,5.932080268859863],[112,157,66,5.9225616455078125],[112,157,67,5.917882919311523],[112,157,68,5.9184064865112305],[112,157,69,5.923328876495361],[112,157,70,5.931975364685059],[112,157,71,5.941537857055664],[112,157,72,5.945594310760498],[112,157,73,5.946962833404541],[112,157,74,5.956364631652832],[112,157,75,5.9605536460876465],[112,157,76,5.951775550842285],[112,157,77,5.933669567108154],[112,157,78,5.909780025482178],[112,157,79,5.880720138549805],[112,158,64,5.943154811859131],[112,158,65,5.932080268859863],[112,158,66,5.9225616455078125],[112,158,67,5.917882919311523],[112,158,68,5.9184064865112305],[112,158,69,5.923328876495361],[112,158,70,5.931975364685059],[112,158,71,5.941537857055664],[112,158,72,5.945594310760498],[112,158,73,5.946962833404541],[112,158,74,5.956364631652832],[112,158,75,5.9605536460876465],[112,158,76,5.951775550842285],[112,158,77,5.933669567108154],[112,158,78,5.909780025482178],[112,158,79,5.880720138549805],[112,159,64,5.943154811859131],[112,159,65,5.932080268859863],[112,159,66,5.9225616455078125],[112,159,67,5.917882919311523],[112,159,68,5.9184064865112305],[112,159,69,5.923328876495361],[112,159,70,5.931975364685059],[112,159,71,5.941537857055664],[112,159,72,5.945594310760498],[112,159,73,5.946962833404541],[112,159,74,5.956364631652832],[112,159,75,5.9605536460876465],[112,159,76,5.951775550842285],[112,159,77,5.933669567108154],[112,159,78,5.909780025482178],[112,159,79,5.880720138549805],[112,160,64,5.943154811859131],[112,160,65,5.932080268859863],[112,160,66,5.9225616455078125],[112,160,67,5.917882919311523],[112,160,68,5.9184064865112305],[112,160,69,5.923328876495361],[112,160,70,5.931975364685059],[112,160,71,5.941537857055664],[112,160,72,5.945594310760498],[112,160,73,5.946962833404541],[112,160,74,5.956364631652832],[112,160,75,5.9605536460876465],[112,160,76,5.951775550842285],[112,160,77,5.933669567108154],[112,160,78,5.909780025482178],[112,160,79,5.880720138549805],[112,161,64,5.943154811859131],[112,161,65,5.932080268859863],[112,161,66,5.9225616455078125],[112,161,67,5.917882919311523],[112,161,68,5.9184064865112305],[112,161,69,5.923328876495361],[112,161,70,5.931975364685059],[112,161,71,5.941537857055664],[112,161,72,5.945594310760498],[112,161,73,5.946962833404541],[112,161,74,5.956364631652832],[112,161,75,5.9605536460876465],[112,161,76,5.951775550842285],[112,161,77,5.933669567108154],[112,161,78,5.909780025482178],[112,161,79,5.880720138549805],[112,162,64,5.943154811859131],[112,162,65,5.932080268859863],[112,162,66,5.9225616455078125],[112,162,67,5.917882919311523],[112,162,68,5.9184064865112305],[112,162,69,5.923328876495361],[112,162,70,5.931975364685059],[112,162,71,5.941537857055664],[112,162,72,5.945594310760498],[112,162,73,5.946962833404541],[112,162,74,5.956364631652832],[112,162,75,5.9605536460876465],[112,162,76,5.951775550842285],[112,162,77,5.933669567108154],[112,162,78,5.909780025482178],[112,162,79,5.880720138549805],[112,163,64,5.943154811859131],[112,163,65,5.932080268859863],[112,163,66,5.9225616455078125],[112,163,67,5.917882919311523],[112,163,68,5.9184064865112305],[112,163,69,5.923328876495361],[112,163,70,5.931975364685059],[112,163,71,5.941537857055664],[112,163,72,5.945594310760498],[112,163,73,5.946962833404541],[112,163,74,5.956364631652832],[112,163,75,5.9605536460876465],[112,163,76,5.951775550842285],[112,163,77,5.933669567108154],[112,163,78,5.909780025482178],[112,163,79,5.880720138549805],[112,164,64,5.943154811859131],[112,164,65,5.932080268859863],[112,164,66,5.9225616455078125],[112,164,67,5.917882919311523],[112,164,68,5.9184064865112305],[112,164,69,5.923328876495361],[112,164,70,5.931975364685059],[112,164,71,5.941537857055664],[112,164,72,5.945594310760498],[112,164,73,5.946962833404541],[112,164,74,5.956364631652832],[112,164,75,5.9605536460876465],[112,164,76,5.951775550842285],[112,164,77,5.933669567108154],[112,164,78,5.909780025482178],[112,164,79,5.880720138549805],[112,165,64,5.943154811859131],[112,165,65,5.932080268859863],[112,165,66,5.9225616455078125],[112,165,67,5.917882919311523],[112,165,68,5.9184064865112305],[112,165,69,5.923328876495361],[112,165,70,5.931975364685059],[112,165,71,5.941537857055664],[112,165,72,5.945594310760498],[112,165,73,5.946962833404541],[112,165,74,5.956364631652832],[112,165,75,5.9605536460876465],[112,165,76,5.951775550842285],[112,165,77,5.933669567108154],[112,165,78,5.909780025482178],[112,165,79,5.880720138549805],[112,166,64,5.943154811859131],[112,166,65,5.932080268859863],[112,166,66,5.9225616455078125],[112,166,67,5.917882919311523],[112,166,68,5.9184064865112305],[112,166,69,5.923328876495361],[112,166,70,5.931975364685059],[112,166,71,5.941537857055664],[112,166,72,5.945594310760498],[112,166,73,5.946962833404541],[112,166,74,5.956364631652832],[112,166,75,5.9605536460876465],[112,166,76,5.951775550842285],[112,166,77,5.933669567108154],[112,166,78,5.909780025482178],[112,166,79,5.880720138549805],[112,167,64,5.943154811859131],[112,167,65,5.932080268859863],[112,167,66,5.9225616455078125],[112,167,67,5.917882919311523],[112,167,68,5.9184064865112305],[112,167,69,5.923328876495361],[112,167,70,5.931975364685059],[112,167,71,5.941537857055664],[112,167,72,5.945594310760498],[112,167,73,5.946962833404541],[112,167,74,5.956364631652832],[112,167,75,5.9605536460876465],[112,167,76,5.951775550842285],[112,167,77,5.933669567108154],[112,167,78,5.909780025482178],[112,167,79,5.880720138549805],[112,168,64,5.943154811859131],[112,168,65,5.932080268859863],[112,168,66,5.9225616455078125],[112,168,67,5.917882919311523],[112,168,68,5.9184064865112305],[112,168,69,5.923328876495361],[112,168,70,5.931975364685059],[112,168,71,5.941537857055664],[112,168,72,5.945594310760498],[112,168,73,5.946962833404541],[112,168,74,5.956364631652832],[112,168,75,5.9605536460876465],[112,168,76,5.951775550842285],[112,168,77,5.933669567108154],[112,168,78,5.909780025482178],[112,168,79,5.880720138549805],[112,169,64,5.943154811859131],[112,169,65,5.932080268859863],[112,169,66,5.9225616455078125],[112,169,67,5.917882919311523],[112,169,68,5.9184064865112305],[112,169,69,5.923328876495361],[112,169,70,5.931975364685059],[112,169,71,5.941537857055664],[112,169,72,5.945594310760498],[112,169,73,5.946962833404541],[112,169,74,5.956364631652832],[112,169,75,5.9605536460876465],[112,169,76,5.951775550842285],[112,169,77,5.933669567108154],[112,169,78,5.909780025482178],[112,169,79,5.880720138549805],[112,170,64,5.943154811859131],[112,170,65,5.932080268859863],[112,170,66,5.9225616455078125],[112,170,67,5.917882919311523],[112,170,68,5.9184064865112305],[112,170,69,5.923328876495361],[112,170,70,5.931975364685059],[112,170,71,5.941537857055664],[112,170,72,5.945594310760498],[112,170,73,5.946962833404541],[112,170,74,5.956364631652832],[112,170,75,5.9605536460876465],[112,170,76,5.951775550842285],[112,170,77,5.933669567108154],[112,170,78,5.909780025482178],[112,170,79,5.880720138549805],[112,171,64,5.943154811859131],[112,171,65,5.932080268859863],[112,171,66,5.9225616455078125],[112,171,67,5.917882919311523],[112,171,68,5.9184064865112305],[112,171,69,5.923328876495361],[112,171,70,5.931975364685059],[112,171,71,5.941537857055664],[112,171,72,5.945594310760498],[112,171,73,5.946962833404541],[112,171,74,5.956364631652832],[112,171,75,5.9605536460876465],[112,171,76,5.951775550842285],[112,171,77,5.933669567108154],[112,171,78,5.909780025482178],[112,171,79,5.880720138549805],[112,172,64,5.943154811859131],[112,172,65,5.932080268859863],[112,172,66,5.9225616455078125],[112,172,67,5.917882919311523],[112,172,68,5.9184064865112305],[112,172,69,5.923328876495361],[112,172,70,5.931975364685059],[112,172,71,5.941537857055664],[112,172,72,5.945594310760498],[112,172,73,5.946962833404541],[112,172,74,5.956364631652832],[112,172,75,5.9605536460876465],[112,172,76,5.951775550842285],[112,172,77,5.933669567108154],[112,172,78,5.909780025482178],[112,172,79,5.880720138549805],[112,173,64,5.943154811859131],[112,173,65,5.932080268859863],[112,173,66,5.9225616455078125],[112,173,67,5.917882919311523],[112,173,68,5.9184064865112305],[112,173,69,5.923328876495361],[112,173,70,5.931975364685059],[112,173,71,5.941537857055664],[112,173,72,5.945594310760498],[112,173,73,5.946962833404541],[112,173,74,5.956364631652832],[112,173,75,5.9605536460876465],[112,173,76,5.951775550842285],[112,173,77,5.933669567108154],[112,173,78,5.909780025482178],[112,173,79,5.880720138549805],[112,174,64,5.943154811859131],[112,174,65,5.932080268859863],[112,174,66,5.9225616455078125],[112,174,67,5.917882919311523],[112,174,68,5.9184064865112305],[112,174,69,5.923328876495361],[112,174,70,5.931975364685059],[112,174,71,5.941537857055664],[112,174,72,5.945594310760498],[112,174,73,5.946962833404541],[112,174,74,5.956364631652832],[112,174,75,5.9605536460876465],[112,174,76,5.951775550842285],[112,174,77,5.933669567108154],[112,174,78,5.909780025482178],[112,174,79,5.880720138549805],[112,175,64,5.943154811859131],[112,175,65,5.932080268859863],[112,175,66,5.9225616455078125],[112,175,67,5.917882919311523],[112,175,68,5.9184064865112305],[112,175,69,5.923328876495361],[112,175,70,5.931975364685059],[112,175,71,5.941537857055664],[112,175,72,5.945594310760498],[112,175,73,5.946962833404541],[112,175,74,5.956364631652832],[112,175,75,5.9605536460876465],[112,175,76,5.951775550842285],[112,175,77,5.933669567108154],[112,175,78,5.909780025482178],[112,175,79,5.880720138549805],[112,176,64,5.943154811859131],[112,176,65,5.932080268859863],[112,176,66,5.9225616455078125],[112,176,67,5.917882919311523],[112,176,68,5.9184064865112305],[112,176,69,5.923328876495361],[112,176,70,5.931975364685059],[112,176,71,5.941537857055664],[112,176,72,5.945594310760498],[112,176,73,5.946962833404541],[112,176,74,5.956364631652832],[112,176,75,5.9605536460876465],[112,176,76,5.951775550842285],[112,176,77,5.933669567108154],[112,176,78,5.909780025482178],[112,176,79,5.880720138549805],[112,177,64,5.943154811859131],[112,177,65,5.932080268859863],[112,177,66,5.9225616455078125],[112,177,67,5.917882919311523],[112,177,68,5.9184064865112305],[112,177,69,5.923328876495361],[112,177,70,5.931975364685059],[112,177,71,5.941537857055664],[112,177,72,5.945594310760498],[112,177,73,5.946962833404541],[112,177,74,5.956364631652832],[112,177,75,5.9605536460876465],[112,177,76,5.951775550842285],[112,177,77,5.933669567108154],[112,177,78,5.909780025482178],[112,177,79,5.880720138549805],[112,178,64,5.943154811859131],[112,178,65,5.932080268859863],[112,178,66,5.9225616455078125],[112,178,67,5.917882919311523],[112,178,68,5.9184064865112305],[112,178,69,5.923328876495361],[112,178,70,5.931975364685059],[112,178,71,5.941537857055664],[112,178,72,5.945594310760498],[112,178,73,5.946962833404541],[112,178,74,5.956364631652832],[112,178,75,5.9605536460876465],[112,178,76,5.951775550842285],[112,178,77,5.933669567108154],[112,178,78,5.909780025482178],[112,178,79,5.880720138549805],[112,179,64,5.943154811859131],[112,179,65,5.932080268859863],[112,179,66,5.9225616455078125],[112,179,67,5.917882919311523],[112,179,68,5.9184064865112305],[112,179,69,5.923328876495361],[112,179,70,5.931975364685059],[112,179,71,5.941537857055664],[112,179,72,5.945594310760498],[112,179,73,5.946962833404541],[112,179,74,5.956364631652832],[112,179,75,5.9605536460876465],[112,179,76,5.951775550842285],[112,179,77,5.933669567108154],[112,179,78,5.909780025482178],[112,179,79,5.880720138549805],[112,180,64,5.943154811859131],[112,180,65,5.932080268859863],[112,180,66,5.9225616455078125],[112,180,67,5.917882919311523],[112,180,68,5.9184064865112305],[112,180,69,5.923328876495361],[112,180,70,5.931975364685059],[112,180,71,5.941537857055664],[112,180,72,5.945594310760498],[112,180,73,5.946962833404541],[112,180,74,5.956364631652832],[112,180,75,5.9605536460876465],[112,180,76,5.951775550842285],[112,180,77,5.933669567108154],[112,180,78,5.909780025482178],[112,180,79,5.880720138549805],[112,181,64,5.943154811859131],[112,181,65,5.932080268859863],[112,181,66,5.9225616455078125],[112,181,67,5.917882919311523],[112,181,68,5.9184064865112305],[112,181,69,5.923328876495361],[112,181,70,5.931975364685059],[112,181,71,5.941537857055664],[112,181,72,5.945594310760498],[112,181,73,5.946962833404541],[112,181,74,5.956364631652832],[112,181,75,5.9605536460876465],[112,181,76,5.951775550842285],[112,181,77,5.933669567108154],[112,181,78,5.909780025482178],[112,181,79,5.880720138549805],[112,182,64,5.943154811859131],[112,182,65,5.932080268859863],[112,182,66,5.9225616455078125],[112,182,67,5.917882919311523],[112,182,68,5.9184064865112305],[112,182,69,5.923328876495361],[112,182,70,5.931975364685059],[112,182,71,5.941537857055664],[112,182,72,5.945594310760498],[112,182,73,5.946962833404541],[112,182,74,5.956364631652832],[112,182,75,5.9605536460876465],[112,182,76,5.951775550842285],[112,182,77,5.933669567108154],[112,182,78,5.909780025482178],[112,182,79,5.880720138549805],[112,183,64,5.943154811859131],[112,183,65,5.932080268859863],[112,183,66,5.9225616455078125],[112,183,67,5.917882919311523],[112,183,68,5.9184064865112305],[112,183,69,5.923328876495361],[112,183,70,5.931975364685059],[112,183,71,5.941537857055664],[112,183,72,5.945594310760498],[112,183,73,5.946962833404541],[112,183,74,5.956364631652832],[112,183,75,5.9605536460876465],[112,183,76,5.951775550842285],[112,183,77,5.933669567108154],[112,183,78,5.909780025482178],[112,183,79,5.880720138549805],[112,184,64,5.943154811859131],[112,184,65,5.932080268859863],[112,184,66,5.9225616455078125],[112,184,67,5.917882919311523],[112,184,68,5.9184064865112305],[112,184,69,5.923328876495361],[112,184,70,5.931975364685059],[112,184,71,5.941537857055664],[112,184,72,5.945594310760498],[112,184,73,5.946962833404541],[112,184,74,5.956364631652832],[112,184,75,5.9605536460876465],[112,184,76,5.951775550842285],[112,184,77,5.933669567108154],[112,184,78,5.909780025482178],[112,184,79,5.880720138549805],[112,185,64,5.943154811859131],[112,185,65,5.932080268859863],[112,185,66,5.9225616455078125],[112,185,67,5.917882919311523],[112,185,68,5.9184064865112305],[112,185,69,5.923328876495361],[112,185,70,5.931975364685059],[112,185,71,5.941537857055664],[112,185,72,5.945594310760498],[112,185,73,5.946962833404541],[112,185,74,5.956364631652832],[112,185,75,5.9605536460876465],[112,185,76,5.951775550842285],[112,185,77,5.933669567108154],[112,185,78,5.909780025482178],[112,185,79,5.880720138549805],[112,186,64,5.943154811859131],[112,186,65,5.932080268859863],[112,186,66,5.9225616455078125],[112,186,67,5.917882919311523],[112,186,68,5.9184064865112305],[112,186,69,5.923328876495361],[112,186,70,5.931975364685059],[112,186,71,5.941537857055664],[112,186,72,5.945594310760498],[112,186,73,5.946962833404541],[112,186,74,5.956364631652832],[112,186,75,5.9605536460876465],[112,186,76,5.951775550842285],[112,186,77,5.933669567108154],[112,186,78,5.909780025482178],[112,186,79,5.880720138549805],[112,187,64,5.943154811859131],[112,187,65,5.932080268859863],[112,187,66,5.9225616455078125],[112,187,67,5.917882919311523],[112,187,68,5.9184064865112305],[112,187,69,5.923328876495361],[112,187,70,5.931975364685059],[112,187,71,5.941537857055664],[112,187,72,5.945594310760498],[112,187,73,5.946962833404541],[112,187,74,5.956364631652832],[112,187,75,5.9605536460876465],[112,187,76,5.951775550842285],[112,187,77,5.933669567108154],[112,187,78,5.909780025482178],[112,187,79,5.880720138549805],[112,188,64,5.943154811859131],[112,188,65,5.932080268859863],[112,188,66,5.9225616455078125],[112,188,67,5.917882919311523],[112,188,68,5.9184064865112305],[112,188,69,5.923328876495361],[112,188,70,5.931975364685059],[112,188,71,5.941537857055664],[112,188,72,5.945594310760498],[112,188,73,5.946962833404541],[112,188,74,5.956364631652832],[112,188,75,5.9605536460876465],[112,188,76,5.951775550842285],[112,188,77,5.933669567108154],[112,188,78,5.909780025482178],[112,188,79,5.880720138549805],[112,189,64,5.943154811859131],[112,189,65,5.932080268859863],[112,189,66,5.9225616455078125],[112,189,67,5.917882919311523],[112,189,68,5.9184064865112305],[112,189,69,5.923328876495361],[112,189,70,5.931975364685059],[112,189,71,5.941537857055664],[112,189,72,5.945594310760498],[112,189,73,5.946962833404541],[112,189,74,5.956364631652832],[112,189,75,5.9605536460876465],[112,189,76,5.951775550842285],[112,189,77,5.933669567108154],[112,189,78,5.909780025482178],[112,189,79,5.880720138549805],[112,190,64,5.943154811859131],[112,190,65,5.932080268859863],[112,190,66,5.9225616455078125],[112,190,67,5.917882919311523],[112,190,68,5.9184064865112305],[112,190,69,5.923328876495361],[112,190,70,5.931975364685059],[112,190,71,5.941537857055664],[112,190,72,5.945594310760498],[112,190,73,5.946962833404541],[112,190,74,5.956364631652832],[112,190,75,5.9605536460876465],[112,190,76,5.951775550842285],[112,190,77,5.933669567108154],[112,190,78,5.909780025482178],[112,190,79,5.880720138549805],[112,191,64,5.943154811859131],[112,191,65,5.932080268859863],[112,191,66,5.9225616455078125],[112,191,67,5.917882919311523],[112,191,68,5.9184064865112305],[112,191,69,5.923328876495361],[112,191,70,5.931975364685059],[112,191,71,5.941537857055664],[112,191,72,5.945594310760498],[112,191,73,5.946962833404541],[112,191,74,5.956364631652832],[112,191,75,5.9605536460876465],[112,191,76,5.951775550842285],[112,191,77,5.933669567108154],[112,191,78,5.909780025482178],[112,191,79,5.880720138549805],[112,192,64,5.943154811859131],[112,192,65,5.932080268859863],[112,192,66,5.9225616455078125],[112,192,67,5.917882919311523],[112,192,68,5.9184064865112305],[112,192,69,5.923328876495361],[112,192,70,5.931975364685059],[112,192,71,5.941537857055664],[112,192,72,5.945594310760498],[112,192,73,5.946962833404541],[112,192,74,5.956364631652832],[112,192,75,5.9605536460876465],[112,192,76,5.951775550842285],[112,192,77,5.933669567108154],[112,192,78,5.909780025482178],[112,192,79,5.880720138549805],[112,193,64,5.943154811859131],[112,193,65,5.932080268859863],[112,193,66,5.9225616455078125],[112,193,67,5.917882919311523],[112,193,68,5.9184064865112305],[112,193,69,5.923328876495361],[112,193,70,5.931975364685059],[112,193,71,5.941537857055664],[112,193,72,5.945594310760498],[112,193,73,5.946962833404541],[112,193,74,5.956364631652832],[112,193,75,5.9605536460876465],[112,193,76,5.951775550842285],[112,193,77,5.933669567108154],[112,193,78,5.909780025482178],[112,193,79,5.880720138549805],[112,194,64,5.943154811859131],[112,194,65,5.932080268859863],[112,194,66,5.9225616455078125],[112,194,67,5.917882919311523],[112,194,68,5.9184064865112305],[112,194,69,5.923328876495361],[112,194,70,5.931975364685059],[112,194,71,5.941537857055664],[112,194,72,5.945594310760498],[112,194,73,5.946962833404541],[112,194,74,5.956364631652832],[112,194,75,5.9605536460876465],[112,194,76,5.951775550842285],[112,194,77,5.933669567108154],[112,194,78,5.909780025482178],[112,194,79,5.880720138549805],[112,195,64,5.943154811859131],[112,195,65,5.932080268859863],[112,195,66,5.9225616455078125],[112,195,67,5.917882919311523],[112,195,68,5.9184064865112305],[112,195,69,5.923328876495361],[112,195,70,5.931975364685059],[112,195,71,5.941537857055664],[112,195,72,5.945594310760498],[112,195,73,5.946962833404541],[112,195,74,5.956364631652832],[112,195,75,5.9605536460876465],[112,195,76,5.951775550842285],[112,195,77,5.933669567108154],[112,195,78,5.909780025482178],[112,195,79,5.880720138549805],[112,196,64,5.943154811859131],[112,196,65,5.932080268859863],[112,196,66,5.9225616455078125],[112,196,67,5.917882919311523],[112,196,68,5.9184064865112305],[112,196,69,5.923328876495361],[112,196,70,5.931975364685059],[112,196,71,5.941537857055664],[112,196,72,5.945594310760498],[112,196,73,5.946962833404541],[112,196,74,5.956364631652832],[112,196,75,5.9605536460876465],[112,196,76,5.951775550842285],[112,196,77,5.933669567108154],[112,196,78,5.909780025482178],[112,196,79,5.880720138549805],[112,197,64,5.943154811859131],[112,197,65,5.932080268859863],[112,197,66,5.9225616455078125],[112,197,67,5.917882919311523],[112,197,68,5.9184064865112305],[112,197,69,5.923328876495361],[112,197,70,5.931975364685059],[112,197,71,5.941537857055664],[112,197,72,5.945594310760498],[112,197,73,5.946962833404541],[112,197,74,5.956364631652832],[112,197,75,5.9605536460876465],[112,197,76,5.951775550842285],[112,197,77,5.933669567108154],[112,197,78,5.909780025482178],[112,197,79,5.880720138549805],[112,198,64,5.943154811859131],[112,198,65,5.932080268859863],[112,198,66,5.9225616455078125],[112,198,67,5.917882919311523],[112,198,68,5.9184064865112305],[112,198,69,5.923328876495361],[112,198,70,5.931975364685059],[112,198,71,5.941537857055664],[112,198,72,5.945594310760498],[112,198,73,5.946962833404541],[112,198,74,5.956364631652832],[112,198,75,5.9605536460876465],[112,198,76,5.951775550842285],[112,198,77,5.933669567108154],[112,198,78,5.909780025482178],[112,198,79,5.880720138549805],[112,199,64,5.943154811859131],[112,199,65,5.932080268859863],[112,199,66,5.9225616455078125],[112,199,67,5.917882919311523],[112,199,68,5.9184064865112305],[112,199,69,5.923328876495361],[112,199,70,5.931975364685059],[112,199,71,5.941537857055664],[112,199,72,5.945594310760498],[112,199,73,5.946962833404541],[112,199,74,5.956364631652832],[112,199,75,5.9605536460876465],[112,199,76,5.951775550842285],[112,199,77,5.933669567108154],[112,199,78,5.909780025482178],[112,199,79,5.880720138549805],[112,200,64,5.943154811859131],[112,200,65,5.932080268859863],[112,200,66,5.9225616455078125],[112,200,67,5.917882919311523],[112,200,68,5.9184064865112305],[112,200,69,5.923328876495361],[112,200,70,5.931975364685059],[112,200,71,5.941537857055664],[112,200,72,5.945594310760498],[112,200,73,5.946962833404541],[112,200,74,5.956364631652832],[112,200,75,5.9605536460876465],[112,200,76,5.951775550842285],[112,200,77,5.933669567108154],[112,200,78,5.909780025482178],[112,200,79,5.880720138549805],[112,201,64,5.943154811859131],[112,201,65,5.932080268859863],[112,201,66,5.9225616455078125],[112,201,67,5.917882919311523],[112,201,68,5.9184064865112305],[112,201,69,5.923328876495361],[112,201,70,5.931975364685059],[112,201,71,5.941537857055664],[112,201,72,5.945594310760498],[112,201,73,5.946962833404541],[112,201,74,5.956364631652832],[112,201,75,5.9605536460876465],[112,201,76,5.951775550842285],[112,201,77,5.933669567108154],[112,201,78,5.909780025482178],[112,201,79,5.880720138549805],[112,202,64,5.943154811859131],[112,202,65,5.932080268859863],[112,202,66,5.9225616455078125],[112,202,67,5.917882919311523],[112,202,68,5.9184064865112305],[112,202,69,5.923328876495361],[112,202,70,5.931975364685059],[112,202,71,5.941537857055664],[112,202,72,5.945594310760498],[112,202,73,5.946962833404541],[112,202,74,5.956364631652832],[112,202,75,5.9605536460876465],[112,202,76,5.951775550842285],[112,202,77,5.933669567108154],[112,202,78,5.909780025482178],[112,202,79,5.880720138549805],[112,203,64,5.943154811859131],[112,203,65,5.932080268859863],[112,203,66,5.9225616455078125],[112,203,67,5.917882919311523],[112,203,68,5.9184064865112305],[112,203,69,5.923328876495361],[112,203,70,5.931975364685059],[112,203,71,5.941537857055664],[112,203,72,5.945594310760498],[112,203,73,5.946962833404541],[112,203,74,5.956364631652832],[112,203,75,5.9605536460876465],[112,203,76,5.951775550842285],[112,203,77,5.933669567108154],[112,203,78,5.909780025482178],[112,203,79,5.880720138549805],[112,204,64,5.943154811859131],[112,204,65,5.932080268859863],[112,204,66,5.9225616455078125],[112,204,67,5.917882919311523],[112,204,68,5.9184064865112305],[112,204,69,5.923328876495361],[112,204,70,5.931975364685059],[112,204,71,5.941537857055664],[112,204,72,5.945594310760498],[112,204,73,5.946962833404541],[112,204,74,5.956364631652832],[112,204,75,5.9605536460876465],[112,204,76,5.951775550842285],[112,204,77,5.933669567108154],[112,204,78,5.909780025482178],[112,204,79,5.880720138549805],[112,205,64,5.943154811859131],[112,205,65,5.932080268859863],[112,205,66,5.9225616455078125],[112,205,67,5.917882919311523],[112,205,68,5.9184064865112305],[112,205,69,5.923328876495361],[112,205,70,5.931975364685059],[112,205,71,5.941537857055664],[112,205,72,5.945594310760498],[112,205,73,5.946962833404541],[112,205,74,5.956364631652832],[112,205,75,5.9605536460876465],[112,205,76,5.951775550842285],[112,205,77,5.933669567108154],[112,205,78,5.909780025482178],[112,205,79,5.880720138549805],[112,206,64,5.943154811859131],[112,206,65,5.932080268859863],[112,206,66,5.9225616455078125],[112,206,67,5.917882919311523],[112,206,68,5.9184064865112305],[112,206,69,5.923328876495361],[112,206,70,5.931975364685059],[112,206,71,5.941537857055664],[112,206,72,5.945594310760498],[112,206,73,5.946962833404541],[112,206,74,5.956364631652832],[112,206,75,5.9605536460876465],[112,206,76,5.951775550842285],[112,206,77,5.933669567108154],[112,206,78,5.909780025482178],[112,206,79,5.880720138549805],[112,207,64,5.943154811859131],[112,207,65,5.932080268859863],[112,207,66,5.9225616455078125],[112,207,67,5.917882919311523],[112,207,68,5.9184064865112305],[112,207,69,5.923328876495361],[112,207,70,5.931975364685059],[112,207,71,5.941537857055664],[112,207,72,5.945594310760498],[112,207,73,5.946962833404541],[112,207,74,5.956364631652832],[112,207,75,5.9605536460876465],[112,207,76,5.951775550842285],[112,207,77,5.933669567108154],[112,207,78,5.909780025482178],[112,207,79,5.880720138549805],[112,208,64,5.943154811859131],[112,208,65,5.932080268859863],[112,208,66,5.9225616455078125],[112,208,67,5.917882919311523],[112,208,68,5.9184064865112305],[112,208,69,5.923328876495361],[112,208,70,5.931975364685059],[112,208,71,5.941537857055664],[112,208,72,5.945594310760498],[112,208,73,5.946962833404541],[112,208,74,5.956364631652832],[112,208,75,5.9605536460876465],[112,208,76,5.951775550842285],[112,208,77,5.933669567108154],[112,208,78,5.909780025482178],[112,208,79,5.880720138549805],[112,209,64,5.943154811859131],[112,209,65,5.932080268859863],[112,209,66,5.9225616455078125],[112,209,67,5.917882919311523],[112,209,68,5.9184064865112305],[112,209,69,5.923328876495361],[112,209,70,5.931975364685059],[112,209,71,5.941537857055664],[112,209,72,5.945594310760498],[112,209,73,5.946962833404541],[112,209,74,5.956364631652832],[112,209,75,5.9605536460876465],[112,209,76,5.951775550842285],[112,209,77,5.933669567108154],[112,209,78,5.909780025482178],[112,209,79,5.880720138549805],[112,210,64,5.943154811859131],[112,210,65,5.932080268859863],[112,210,66,5.9225616455078125],[112,210,67,5.917882919311523],[112,210,68,5.9184064865112305],[112,210,69,5.923328876495361],[112,210,70,5.931975364685059],[112,210,71,5.941537857055664],[112,210,72,5.945594310760498],[112,210,73,5.946962833404541],[112,210,74,5.956364631652832],[112,210,75,5.9605536460876465],[112,210,76,5.951775550842285],[112,210,77,5.933669567108154],[112,210,78,5.909780025482178],[112,210,79,5.880720138549805],[112,211,64,5.943154811859131],[112,211,65,5.932080268859863],[112,211,66,5.9225616455078125],[112,211,67,5.917882919311523],[112,211,68,5.9184064865112305],[112,211,69,5.923328876495361],[112,211,70,5.931975364685059],[112,211,71,5.941537857055664],[112,211,72,5.945594310760498],[112,211,73,5.946962833404541],[112,211,74,5.956364631652832],[112,211,75,5.9605536460876465],[112,211,76,5.951775550842285],[112,211,77,5.933669567108154],[112,211,78,5.909780025482178],[112,211,79,5.880720138549805],[112,212,64,5.943154811859131],[112,212,65,5.932080268859863],[112,212,66,5.9225616455078125],[112,212,67,5.917882919311523],[112,212,68,5.9184064865112305],[112,212,69,5.923328876495361],[112,212,70,5.931975364685059],[112,212,71,5.941537857055664],[112,212,72,5.945594310760498],[112,212,73,5.946962833404541],[112,212,74,5.956364631652832],[112,212,75,5.9605536460876465],[112,212,76,5.951775550842285],[112,212,77,5.933669567108154],[112,212,78,5.909780025482178],[112,212,79,5.880720138549805],[112,213,64,5.943154811859131],[112,213,65,5.932080268859863],[112,213,66,5.9225616455078125],[112,213,67,5.917882919311523],[112,213,68,5.9184064865112305],[112,213,69,5.923328876495361],[112,213,70,5.931975364685059],[112,213,71,5.941537857055664],[112,213,72,5.945594310760498],[112,213,73,5.946962833404541],[112,213,74,5.956364631652832],[112,213,75,5.9605536460876465],[112,213,76,5.951775550842285],[112,213,77,5.933669567108154],[112,213,78,5.909780025482178],[112,213,79,5.880720138549805],[112,214,64,5.943154811859131],[112,214,65,5.932080268859863],[112,214,66,5.9225616455078125],[112,214,67,5.917882919311523],[112,214,68,5.9184064865112305],[112,214,69,5.923328876495361],[112,214,70,5.931975364685059],[112,214,71,5.941537857055664],[112,214,72,5.945594310760498],[112,214,73,5.946962833404541],[112,214,74,5.956364631652832],[112,214,75,5.9605536460876465],[112,214,76,5.951775550842285],[112,214,77,5.933669567108154],[112,214,78,5.909780025482178],[112,214,79,5.880720138549805],[112,215,64,5.943154811859131],[112,215,65,5.932080268859863],[112,215,66,5.9225616455078125],[112,215,67,5.917882919311523],[112,215,68,5.9184064865112305],[112,215,69,5.923328876495361],[112,215,70,5.931975364685059],[112,215,71,5.941537857055664],[112,215,72,5.945594310760498],[112,215,73,5.946962833404541],[112,215,74,5.956364631652832],[112,215,75,5.9605536460876465],[112,215,76,5.951775550842285],[112,215,77,5.933669567108154],[112,215,78,5.909780025482178],[112,215,79,5.880720138549805],[112,216,64,5.943154811859131],[112,216,65,5.932080268859863],[112,216,66,5.9225616455078125],[112,216,67,5.917882919311523],[112,216,68,5.9184064865112305],[112,216,69,5.923328876495361],[112,216,70,5.931975364685059],[112,216,71,5.941537857055664],[112,216,72,5.945594310760498],[112,216,73,5.946962833404541],[112,216,74,5.956364631652832],[112,216,75,5.9605536460876465],[112,216,76,5.951775550842285],[112,216,77,5.933669567108154],[112,216,78,5.909780025482178],[112,216,79,5.880720138549805],[112,217,64,5.943154811859131],[112,217,65,5.932080268859863],[112,217,66,5.9225616455078125],[112,217,67,5.917882919311523],[112,217,68,5.9184064865112305],[112,217,69,5.923328876495361],[112,217,70,5.931975364685059],[112,217,71,5.941537857055664],[112,217,72,5.945594310760498],[112,217,73,5.946962833404541],[112,217,74,5.956364631652832],[112,217,75,5.9605536460876465],[112,217,76,5.951775550842285],[112,217,77,5.933669567108154],[112,217,78,5.909780025482178],[112,217,79,5.880720138549805],[112,218,64,5.943154811859131],[112,218,65,5.932080268859863],[112,218,66,5.9225616455078125],[112,218,67,5.917882919311523],[112,218,68,5.9184064865112305],[112,218,69,5.923328876495361],[112,218,70,5.931975364685059],[112,218,71,5.941537857055664],[112,218,72,5.945594310760498],[112,218,73,5.946962833404541],[112,218,74,5.956364631652832],[112,218,75,5.9605536460876465],[112,218,76,5.951775550842285],[112,218,77,5.933669567108154],[112,218,78,5.909780025482178],[112,218,79,5.880720138549805],[112,219,64,5.943154811859131],[112,219,65,5.932080268859863],[112,219,66,5.9225616455078125],[112,219,67,5.917882919311523],[112,219,68,5.9184064865112305],[112,219,69,5.923328876495361],[112,219,70,5.931975364685059],[112,219,71,5.941537857055664],[112,219,72,5.945594310760498],[112,219,73,5.946962833404541],[112,219,74,5.956364631652832],[112,219,75,5.9605536460876465],[112,219,76,5.951775550842285],[112,219,77,5.933669567108154],[112,219,78,5.909780025482178],[112,219,79,5.880720138549805],[112,220,64,5.943154811859131],[112,220,65,5.932080268859863],[112,220,66,5.9225616455078125],[112,220,67,5.917882919311523],[112,220,68,5.9184064865112305],[112,220,69,5.923328876495361],[112,220,70,5.931975364685059],[112,220,71,5.941537857055664],[112,220,72,5.945594310760498],[112,220,73,5.946962833404541],[112,220,74,5.956364631652832],[112,220,75,5.9605536460876465],[112,220,76,5.951775550842285],[112,220,77,5.933669567108154],[112,220,78,5.909780025482178],[112,220,79,5.880720138549805],[112,221,64,5.943154811859131],[112,221,65,5.932080268859863],[112,221,66,5.9225616455078125],[112,221,67,5.917882919311523],[112,221,68,5.9184064865112305],[112,221,69,5.923328876495361],[112,221,70,5.931975364685059],[112,221,71,5.941537857055664],[112,221,72,5.945594310760498],[112,221,73,5.946962833404541],[112,221,74,5.956364631652832],[112,221,75,5.9605536460876465],[112,221,76,5.951775550842285],[112,221,77,5.933669567108154],[112,221,78,5.909780025482178],[112,221,79,5.880720138549805],[112,222,64,5.943154811859131],[112,222,65,5.932080268859863],[112,222,66,5.9225616455078125],[112,222,67,5.917882919311523],[112,222,68,5.9184064865112305],[112,222,69,5.923328876495361],[112,222,70,5.931975364685059],[112,222,71,5.941537857055664],[112,222,72,5.945594310760498],[112,222,73,5.946962833404541],[112,222,74,5.956364631652832],[112,222,75,5.9605536460876465],[112,222,76,5.951775550842285],[112,222,77,5.933669567108154],[112,222,78,5.909780025482178],[112,222,79,5.880720138549805],[112,223,64,5.943154811859131],[112,223,65,5.932080268859863],[112,223,66,5.9225616455078125],[112,223,67,5.917882919311523],[112,223,68,5.9184064865112305],[112,223,69,5.923328876495361],[112,223,70,5.931975364685059],[112,223,71,5.941537857055664],[112,223,72,5.945594310760498],[112,223,73,5.946962833404541],[112,223,74,5.956364631652832],[112,223,75,5.9605536460876465],[112,223,76,5.951775550842285],[112,223,77,5.933669567108154],[112,223,78,5.909780025482178],[112,223,79,5.880720138549805],[112,224,64,5.943154811859131],[112,224,65,5.932080268859863],[112,224,66,5.9225616455078125],[112,224,67,5.917882919311523],[112,224,68,5.9184064865112305],[112,224,69,5.923328876495361],[112,224,70,5.931975364685059],[112,224,71,5.941537857055664],[112,224,72,5.945594310760498],[112,224,73,5.946962833404541],[112,224,74,5.956364631652832],[112,224,75,5.9605536460876465],[112,224,76,5.951775550842285],[112,224,77,5.933669567108154],[112,224,78,5.909780025482178],[112,224,79,5.880720138549805],[112,225,64,5.943154811859131],[112,225,65,5.932080268859863],[112,225,66,5.9225616455078125],[112,225,67,5.917882919311523],[112,225,68,5.9184064865112305],[112,225,69,5.923328876495361],[112,225,70,5.931975364685059],[112,225,71,5.941537857055664],[112,225,72,5.945594310760498],[112,225,73,5.946962833404541],[112,225,74,5.956364631652832],[112,225,75,5.9605536460876465],[112,225,76,5.951775550842285],[112,225,77,5.933669567108154],[112,225,78,5.909780025482178],[112,225,79,5.880720138549805],[112,226,64,5.943154811859131],[112,226,65,5.932080268859863],[112,226,66,5.9225616455078125],[112,226,67,5.917882919311523],[112,226,68,5.9184064865112305],[112,226,69,5.923328876495361],[112,226,70,5.931975364685059],[112,226,71,5.941537857055664],[112,226,72,5.945594310760498],[112,226,73,5.946962833404541],[112,226,74,5.956364631652832],[112,226,75,5.9605536460876465],[112,226,76,5.951775550842285],[112,226,77,5.933669567108154],[112,226,78,5.909780025482178],[112,226,79,5.880720138549805],[112,227,64,5.943154811859131],[112,227,65,5.932080268859863],[112,227,66,5.9225616455078125],[112,227,67,5.917882919311523],[112,227,68,5.9184064865112305],[112,227,69,5.923328876495361],[112,227,70,5.931975364685059],[112,227,71,5.941537857055664],[112,227,72,5.945594310760498],[112,227,73,5.946962833404541],[112,227,74,5.956364631652832],[112,227,75,5.9605536460876465],[112,227,76,5.951775550842285],[112,227,77,5.933669567108154],[112,227,78,5.909780025482178],[112,227,79,5.880720138549805],[112,228,64,5.943154811859131],[112,228,65,5.932080268859863],[112,228,66,5.9225616455078125],[112,228,67,5.917882919311523],[112,228,68,5.9184064865112305],[112,228,69,5.923328876495361],[112,228,70,5.931975364685059],[112,228,71,5.941537857055664],[112,228,72,5.945594310760498],[112,228,73,5.946962833404541],[112,228,74,5.956364631652832],[112,228,75,5.9605536460876465],[112,228,76,5.951775550842285],[112,228,77,5.933669567108154],[112,228,78,5.909780025482178],[112,228,79,5.880720138549805],[112,229,64,5.943154811859131],[112,229,65,5.932080268859863],[112,229,66,5.9225616455078125],[112,229,67,5.917882919311523],[112,229,68,5.9184064865112305],[112,229,69,5.923328876495361],[112,229,70,5.931975364685059],[112,229,71,5.941537857055664],[112,229,72,5.945594310760498],[112,229,73,5.946962833404541],[112,229,74,5.956364631652832],[112,229,75,5.9605536460876465],[112,229,76,5.951775550842285],[112,229,77,5.933669567108154],[112,229,78,5.909780025482178],[112,229,79,5.880720138549805],[112,230,64,5.943154811859131],[112,230,65,5.932080268859863],[112,230,66,5.9225616455078125],[112,230,67,5.917882919311523],[112,230,68,5.9184064865112305],[112,230,69,5.923328876495361],[112,230,70,5.931975364685059],[112,230,71,5.941537857055664],[112,230,72,5.945594310760498],[112,230,73,5.946962833404541],[112,230,74,5.956364631652832],[112,230,75,5.9605536460876465],[112,230,76,5.951775550842285],[112,230,77,5.933669567108154],[112,230,78,5.909780025482178],[112,230,79,5.880720138549805],[112,231,64,5.943154811859131],[112,231,65,5.932080268859863],[112,231,66,5.9225616455078125],[112,231,67,5.917882919311523],[112,231,68,5.9184064865112305],[112,231,69,5.923328876495361],[112,231,70,5.931975364685059],[112,231,71,5.941537857055664],[112,231,72,5.945594310760498],[112,231,73,5.946962833404541],[112,231,74,5.956364631652832],[112,231,75,5.9605536460876465],[112,231,76,5.951775550842285],[112,231,77,5.933669567108154],[112,231,78,5.909780025482178],[112,231,79,5.880720138549805],[112,232,64,5.943154811859131],[112,232,65,5.932080268859863],[112,232,66,5.9225616455078125],[112,232,67,5.917882919311523],[112,232,68,5.9184064865112305],[112,232,69,5.923328876495361],[112,232,70,5.931975364685059],[112,232,71,5.941537857055664],[112,232,72,5.945594310760498],[112,232,73,5.946962833404541],[112,232,74,5.956364631652832],[112,232,75,5.9605536460876465],[112,232,76,5.951775550842285],[112,232,77,5.933669567108154],[112,232,78,5.909780025482178],[112,232,79,5.880720138549805],[112,233,64,5.943154811859131],[112,233,65,5.932080268859863],[112,233,66,5.9225616455078125],[112,233,67,5.917882919311523],[112,233,68,5.9184064865112305],[112,233,69,5.923328876495361],[112,233,70,5.931975364685059],[112,233,71,5.941537857055664],[112,233,72,5.945594310760498],[112,233,73,5.946962833404541],[112,233,74,5.956364631652832],[112,233,75,5.9605536460876465],[112,233,76,5.951775550842285],[112,233,77,5.933669567108154],[112,233,78,5.909780025482178],[112,233,79,5.880720138549805],[112,234,64,5.943154811859131],[112,234,65,5.932080268859863],[112,234,66,5.9225616455078125],[112,234,67,5.917882919311523],[112,234,68,5.9184064865112305],[112,234,69,5.923328876495361],[112,234,70,5.931975364685059],[112,234,71,5.941537857055664],[112,234,72,5.945594310760498],[112,234,73,5.946962833404541],[112,234,74,5.956364631652832],[112,234,75,5.9605536460876465],[112,234,76,5.951775550842285],[112,234,77,5.933669567108154],[112,234,78,5.909780025482178],[112,234,79,5.880720138549805],[112,235,64,5.943154811859131],[112,235,65,5.932080268859863],[112,235,66,5.9225616455078125],[112,235,67,5.917882919311523],[112,235,68,5.9184064865112305],[112,235,69,5.923328876495361],[112,235,70,5.931975364685059],[112,235,71,5.941537857055664],[112,235,72,5.945594310760498],[112,235,73,5.946962833404541],[112,235,74,5.956364631652832],[112,235,75,5.9605536460876465],[112,235,76,5.951775550842285],[112,235,77,5.933669567108154],[112,235,78,5.909780025482178],[112,235,79,5.880720138549805],[112,236,64,5.943154811859131],[112,236,65,5.932080268859863],[112,236,66,5.9225616455078125],[112,236,67,5.917882919311523],[112,236,68,5.9184064865112305],[112,236,69,5.923328876495361],[112,236,70,5.931975364685059],[112,236,71,5.941537857055664],[112,236,72,5.945594310760498],[112,236,73,5.946962833404541],[112,236,74,5.956364631652832],[112,236,75,5.9605536460876465],[112,236,76,5.951775550842285],[112,236,77,5.933669567108154],[112,236,78,5.909780025482178],[112,236,79,5.880720138549805],[112,237,64,5.943154811859131],[112,237,65,5.932080268859863],[112,237,66,5.9225616455078125],[112,237,67,5.917882919311523],[112,237,68,5.9184064865112305],[112,237,69,5.923328876495361],[112,237,70,5.931975364685059],[112,237,71,5.941537857055664],[112,237,72,5.945594310760498],[112,237,73,5.946962833404541],[112,237,74,5.956364631652832],[112,237,75,5.9605536460876465],[112,237,76,5.951775550842285],[112,237,77,5.933669567108154],[112,237,78,5.909780025482178],[112,237,79,5.880720138549805],[112,238,64,5.943154811859131],[112,238,65,5.932080268859863],[112,238,66,5.9225616455078125],[112,238,67,5.917882919311523],[112,238,68,5.9184064865112305],[112,238,69,5.923328876495361],[112,238,70,5.931975364685059],[112,238,71,5.941537857055664],[112,238,72,5.945594310760498],[112,238,73,5.946962833404541],[112,238,74,5.956364631652832],[112,238,75,5.9605536460876465],[112,238,76,5.951775550842285],[112,238,77,5.933669567108154],[112,238,78,5.909780025482178],[112,238,79,5.880720138549805],[112,239,64,5.943154811859131],[112,239,65,5.932080268859863],[112,239,66,5.9225616455078125],[112,239,67,5.917882919311523],[112,239,68,5.9184064865112305],[112,239,69,5.923328876495361],[112,239,70,5.931975364685059],[112,239,71,5.941537857055664],[112,239,72,5.945594310760498],[112,239,73,5.946962833404541],[112,239,74,5.956364631652832],[112,239,75,5.9605536460876465],[112,239,76,5.951775550842285],[112,239,77,5.933669567108154],[112,239,78,5.909780025482178],[112,239,79,5.880720138549805],[112,240,64,5.943154811859131],[112,240,65,5.932080268859863],[112,240,66,5.9225616455078125],[112,240,67,5.917882919311523],[112,240,68,5.9184064865112305],[112,240,69,5.923328876495361],[112,240,70,5.931975364685059],[112,240,71,5.941537857055664],[112,240,72,5.945594310760498],[112,240,73,5.946962833404541],[112,240,74,5.956364631652832],[112,240,75,5.9605536460876465],[112,240,76,5.951775550842285],[112,240,77,5.933669567108154],[112,240,78,5.909780025482178],[112,240,79,5.880720138549805],[112,241,64,5.943154811859131],[112,241,65,5.932080268859863],[112,241,66,5.9225616455078125],[112,241,67,5.917882919311523],[112,241,68,5.9184064865112305],[112,241,69,5.923328876495361],[112,241,70,5.931975364685059],[112,241,71,5.941537857055664],[112,241,72,5.945594310760498],[112,241,73,5.946962833404541],[112,241,74,5.956364631652832],[112,241,75,5.9605536460876465],[112,241,76,5.951775550842285],[112,241,77,5.933669567108154],[112,241,78,5.909780025482178],[112,241,79,5.880720138549805],[112,242,64,5.943154811859131],[112,242,65,5.932080268859863],[112,242,66,5.9225616455078125],[112,242,67,5.917882919311523],[112,242,68,5.9184064865112305],[112,242,69,5.923328876495361],[112,242,70,5.931975364685059],[112,242,71,5.941537857055664],[112,242,72,5.945594310760498],[112,242,73,5.946962833404541],[112,242,74,5.956364631652832],[112,242,75,5.9605536460876465],[112,242,76,5.951775550842285],[112,242,77,5.933669567108154],[112,242,78,5.909780025482178],[112,242,79,5.880720138549805],[112,243,64,5.943154811859131],[112,243,65,5.932080268859863],[112,243,66,5.9225616455078125],[112,243,67,5.917882919311523],[112,243,68,5.9184064865112305],[112,243,69,5.923328876495361],[112,243,70,5.931975364685059],[112,243,71,5.941537857055664],[112,243,72,5.945594310760498],[112,243,73,5.946962833404541],[112,243,74,5.956364631652832],[112,243,75,5.9605536460876465],[112,243,76,5.951775550842285],[112,243,77,5.933669567108154],[112,243,78,5.909780025482178],[112,243,79,5.880720138549805],[112,244,64,5.943154811859131],[112,244,65,5.932080268859863],[112,244,66,5.9225616455078125],[112,244,67,5.917882919311523],[112,244,68,5.9184064865112305],[112,244,69,5.923328876495361],[112,244,70,5.931975364685059],[112,244,71,5.941537857055664],[112,244,72,5.945594310760498],[112,244,73,5.946962833404541],[112,244,74,5.956364631652832],[112,244,75,5.9605536460876465],[112,244,76,5.951775550842285],[112,244,77,5.933669567108154],[112,244,78,5.909780025482178],[112,244,79,5.880720138549805],[112,245,64,5.943154811859131],[112,245,65,5.932080268859863],[112,245,66,5.9225616455078125],[112,245,67,5.917882919311523],[112,245,68,5.9184064865112305],[112,245,69,5.923328876495361],[112,245,70,5.931975364685059],[112,245,71,5.941537857055664],[112,245,72,5.945594310760498],[112,245,73,5.946962833404541],[112,245,74,5.956364631652832],[112,245,75,5.9605536460876465],[112,245,76,5.951775550842285],[112,245,77,5.933669567108154],[112,245,78,5.909780025482178],[112,245,79,5.880720138549805],[112,246,64,5.943154811859131],[112,246,65,5.932080268859863],[112,246,66,5.9225616455078125],[112,246,67,5.917882919311523],[112,246,68,5.9184064865112305],[112,246,69,5.923328876495361],[112,246,70,5.931975364685059],[112,246,71,5.941537857055664],[112,246,72,5.945594310760498],[112,246,73,5.946962833404541],[112,246,74,5.956364631652832],[112,246,75,5.9605536460876465],[112,246,76,5.951775550842285],[112,246,77,5.933669567108154],[112,246,78,5.909780025482178],[112,246,79,5.880720138549805],[112,247,64,5.943154811859131],[112,247,65,5.932080268859863],[112,247,66,5.9225616455078125],[112,247,67,5.917882919311523],[112,247,68,5.9184064865112305],[112,247,69,5.923328876495361],[112,247,70,5.931975364685059],[112,247,71,5.941537857055664],[112,247,72,5.945594310760498],[112,247,73,5.946962833404541],[112,247,74,5.956364631652832],[112,247,75,5.9605536460876465],[112,247,76,5.951775550842285],[112,247,77,5.933669567108154],[112,247,78,5.909780025482178],[112,247,79,5.880720138549805],[112,248,64,5.943154811859131],[112,248,65,5.932080268859863],[112,248,66,5.9225616455078125],[112,248,67,5.917882919311523],[112,248,68,5.9184064865112305],[112,248,69,5.923328876495361],[112,248,70,5.931975364685059],[112,248,71,5.941537857055664],[112,248,72,5.945594310760498],[112,248,73,5.946962833404541],[112,248,74,5.956364631652832],[112,248,75,5.9605536460876465],[112,248,76,5.951775550842285],[112,248,77,5.933669567108154],[112,248,78,5.909780025482178],[112,248,79,5.880720138549805],[112,249,64,5.943154811859131],[112,249,65,5.932080268859863],[112,249,66,5.9225616455078125],[112,249,67,5.917882919311523],[112,249,68,5.9184064865112305],[112,249,69,5.923328876495361],[112,249,70,5.931975364685059],[112,249,71,5.941537857055664],[112,249,72,5.945594310760498],[112,249,73,5.946962833404541],[112,249,74,5.956364631652832],[112,249,75,5.9605536460876465],[112,249,76,5.951775550842285],[112,249,77,5.933669567108154],[112,249,78,5.909780025482178],[112,249,79,5.880720138549805],[112,250,64,5.943154811859131],[112,250,65,5.932080268859863],[112,250,66,5.9225616455078125],[112,250,67,5.917882919311523],[112,250,68,5.9184064865112305],[112,250,69,5.923328876495361],[112,250,70,5.931975364685059],[112,250,71,5.941537857055664],[112,250,72,5.945594310760498],[112,250,73,5.946962833404541],[112,250,74,5.956364631652832],[112,250,75,5.9605536460876465],[112,250,76,5.951775550842285],[112,250,77,5.933669567108154],[112,250,78,5.909780025482178],[112,250,79,5.880720138549805],[112,251,64,5.943154811859131],[112,251,65,5.932080268859863],[112,251,66,5.9225616455078125],[112,251,67,5.917882919311523],[112,251,68,5.9184064865112305],[112,251,69,5.923328876495361],[112,251,70,5.931975364685059],[112,251,71,5.941537857055664],[112,251,72,5.945594310760498],[112,251,73,5.946962833404541],[112,251,74,5.956364631652832],[112,251,75,5.9605536460876465],[112,251,76,5.951775550842285],[112,251,77,5.933669567108154],[112,251,78,5.909780025482178],[112,251,79,5.880720138549805],[112,252,64,5.943154811859131],[112,252,65,5.932080268859863],[112,252,66,5.9225616455078125],[112,252,67,5.917882919311523],[112,252,68,5.9184064865112305],[112,252,69,5.923328876495361],[112,252,70,5.931975364685059],[112,252,71,5.941537857055664],[112,252,72,5.945594310760498],[112,252,73,5.946962833404541],[112,252,74,5.956364631652832],[112,252,75,5.9605536460876465],[112,252,76,5.951775550842285],[112,252,77,5.933669567108154],[112,252,78,5.909780025482178],[112,252,79,5.880720138549805],[112,253,64,5.943154811859131],[112,253,65,5.932080268859863],[112,253,66,5.9225616455078125],[112,253,67,5.917882919311523],[112,253,68,5.9184064865112305],[112,253,69,5.923328876495361],[112,253,70,5.931975364685059],[112,253,71,5.941537857055664],[112,253,72,5.945594310760498],[112,253,73,5.946962833404541],[112,253,74,5.956364631652832],[112,253,75,5.9605536460876465],[112,253,76,5.951775550842285],[112,253,77,5.933669567108154],[112,253,78,5.909780025482178],[112,253,79,5.880720138549805],[112,254,64,5.943154811859131],[112,254,65,5.932080268859863],[112,254,66,5.9225616455078125],[112,254,67,5.917882919311523],[112,254,68,5.9184064865112305],[112,254,69,5.923328876495361],[112,254,70,5.931975364685059],[112,254,71,5.941537857055664],[112,254,72,5.945594310760498],[112,254,73,5.946962833404541],[112,254,74,5.956364631652832],[112,254,75,5.9605536460876465],[112,254,76,5.951775550842285],[112,254,77,5.933669567108154],[112,254,78,5.909780025482178],[112,254,79,5.880720138549805],[112,255,64,5.943154811859131],[112,255,65,5.932080268859863],[112,255,66,5.9225616455078125],[112,255,67,5.917882919311523],[112,255,68,5.9184064865112305],[112,255,69,5.923328876495361],[112,255,70,5.931975364685059],[112,255,71,5.941537857055664],[112,255,72,5.945594310760498],[112,255,73,5.946962833404541],[112,255,74,5.956364631652832],[112,255,75,5.9605536460876465],[112,255,76,5.951775550842285],[112,255,77,5.933669567108154],[112,255,78,5.909780025482178],[112,255,79,5.880720138549805],[112,256,64,5.943154811859131],[112,256,65,5.932080268859863],[112,256,66,5.9225616455078125],[112,256,67,5.917882919311523],[112,256,68,5.9184064865112305],[112,256,69,5.923328876495361],[112,256,70,5.931975364685059],[112,256,71,5.941537857055664],[112,256,72,5.945594310760498],[112,256,73,5.946962833404541],[112,256,74,5.956364631652832],[112,256,75,5.9605536460876465],[112,256,76,5.951775550842285],[112,256,77,5.933669567108154],[112,256,78,5.909780025482178],[112,256,79,5.880720138549805],[112,257,64,5.943154811859131],[112,257,65,5.932080268859863],[112,257,66,5.9225616455078125],[112,257,67,5.917882919311523],[112,257,68,5.9184064865112305],[112,257,69,5.923328876495361],[112,257,70,5.931975364685059],[112,257,71,5.941537857055664],[112,257,72,5.945594310760498],[112,257,73,5.946962833404541],[112,257,74,5.956364631652832],[112,257,75,5.9605536460876465],[112,257,76,5.951775550842285],[112,257,77,5.933669567108154],[112,257,78,5.909780025482178],[112,257,79,5.880720138549805],[112,258,64,5.943154811859131],[112,258,65,5.932080268859863],[112,258,66,5.9225616455078125],[112,258,67,5.917882919311523],[112,258,68,5.9184064865112305],[112,258,69,5.923328876495361],[112,258,70,5.931975364685059],[112,258,71,5.941537857055664],[112,258,72,5.945594310760498],[112,258,73,5.946962833404541],[112,258,74,5.956364631652832],[112,258,75,5.9605536460876465],[112,258,76,5.951775550842285],[112,258,77,5.933669567108154],[112,258,78,5.909780025482178],[112,258,79,5.880720138549805],[112,259,64,5.943154811859131],[112,259,65,5.932080268859863],[112,259,66,5.9225616455078125],[112,259,67,5.917882919311523],[112,259,68,5.9184064865112305],[112,259,69,5.923328876495361],[112,259,70,5.931975364685059],[112,259,71,5.941537857055664],[112,259,72,5.945594310760498],[112,259,73,5.946962833404541],[112,259,74,5.956364631652832],[112,259,75,5.9605536460876465],[112,259,76,5.951775550842285],[112,259,77,5.933669567108154],[112,259,78,5.909780025482178],[112,259,79,5.880720138549805],[112,260,64,5.943154811859131],[112,260,65,5.932080268859863],[112,260,66,5.9225616455078125],[112,260,67,5.917882919311523],[112,260,68,5.9184064865112305],[112,260,69,5.923328876495361],[112,260,70,5.931975364685059],[112,260,71,5.941537857055664],[112,260,72,5.945594310760498],[112,260,73,5.946962833404541],[112,260,74,5.956364631652832],[112,260,75,5.9605536460876465],[112,260,76,5.951775550842285],[112,260,77,5.933669567108154],[112,260,78,5.909780025482178],[112,260,79,5.880720138549805],[112,261,64,5.943154811859131],[112,261,65,5.932080268859863],[112,261,66,5.9225616455078125],[112,261,67,5.917882919311523],[112,261,68,5.9184064865112305],[112,261,69,5.923328876495361],[112,261,70,5.931975364685059],[112,261,71,5.941537857055664],[112,261,72,5.945594310760498],[112,261,73,5.946962833404541],[112,261,74,5.956364631652832],[112,261,75,5.9605536460876465],[112,261,76,5.951775550842285],[112,261,77,5.933669567108154],[112,261,78,5.909780025482178],[112,261,79,5.880720138549805],[112,262,64,5.943154811859131],[112,262,65,5.932080268859863],[112,262,66,5.9225616455078125],[112,262,67,5.917882919311523],[112,262,68,5.9184064865112305],[112,262,69,5.923328876495361],[112,262,70,5.931975364685059],[112,262,71,5.941537857055664],[112,262,72,5.945594310760498],[112,262,73,5.946962833404541],[112,262,74,5.956364631652832],[112,262,75,5.9605536460876465],[112,262,76,5.951775550842285],[112,262,77,5.933669567108154],[112,262,78,5.909780025482178],[112,262,79,5.880720138549805],[112,263,64,5.943154811859131],[112,263,65,5.932080268859863],[112,263,66,5.9225616455078125],[112,263,67,5.917882919311523],[112,263,68,5.9184064865112305],[112,263,69,5.923328876495361],[112,263,70,5.931975364685059],[112,263,71,5.941537857055664],[112,263,72,5.945594310760498],[112,263,73,5.946962833404541],[112,263,74,5.956364631652832],[112,263,75,5.9605536460876465],[112,263,76,5.951775550842285],[112,263,77,5.933669567108154],[112,263,78,5.909780025482178],[112,263,79,5.880720138549805],[112,264,64,5.943154811859131],[112,264,65,5.932080268859863],[112,264,66,5.9225616455078125],[112,264,67,5.917882919311523],[112,264,68,5.9184064865112305],[112,264,69,5.923328876495361],[112,264,70,5.931975364685059],[112,264,71,5.941537857055664],[112,264,72,5.945594310760498],[112,264,73,5.946962833404541],[112,264,74,5.956364631652832],[112,264,75,5.9605536460876465],[112,264,76,5.951775550842285],[112,264,77,5.933669567108154],[112,264,78,5.909780025482178],[112,264,79,5.880720138549805],[112,265,64,5.943154811859131],[112,265,65,5.932080268859863],[112,265,66,5.9225616455078125],[112,265,67,5.917882919311523],[112,265,68,5.9184064865112305],[112,265,69,5.923328876495361],[112,265,70,5.931975364685059],[112,265,71,5.941537857055664],[112,265,72,5.945594310760498],[112,265,73,5.946962833404541],[112,265,74,5.956364631652832],[112,265,75,5.9605536460876465],[112,265,76,5.951775550842285],[112,265,77,5.933669567108154],[112,265,78,5.909780025482178],[112,265,79,5.880720138549805],[112,266,64,5.943154811859131],[112,266,65,5.932080268859863],[112,266,66,5.9225616455078125],[112,266,67,5.917882919311523],[112,266,68,5.9184064865112305],[112,266,69,5.923328876495361],[112,266,70,5.931975364685059],[112,266,71,5.941537857055664],[112,266,72,5.945594310760498],[112,266,73,5.946962833404541],[112,266,74,5.956364631652832],[112,266,75,5.9605536460876465],[112,266,76,5.951775550842285],[112,266,77,5.933669567108154],[112,266,78,5.909780025482178],[112,266,79,5.880720138549805],[112,267,64,5.943154811859131],[112,267,65,5.932080268859863],[112,267,66,5.9225616455078125],[112,267,67,5.917882919311523],[112,267,68,5.9184064865112305],[112,267,69,5.923328876495361],[112,267,70,5.931975364685059],[112,267,71,5.941537857055664],[112,267,72,5.945594310760498],[112,267,73,5.946962833404541],[112,267,74,5.956364631652832],[112,267,75,5.9605536460876465],[112,267,76,5.951775550842285],[112,267,77,5.933669567108154],[112,267,78,5.909780025482178],[112,267,79,5.880720138549805],[112,268,64,5.943154811859131],[112,268,65,5.932080268859863],[112,268,66,5.9225616455078125],[112,268,67,5.917882919311523],[112,268,68,5.9184064865112305],[112,268,69,5.923328876495361],[112,268,70,5.931975364685059],[112,268,71,5.941537857055664],[112,268,72,5.945594310760498],[112,268,73,5.946962833404541],[112,268,74,5.956364631652832],[112,268,75,5.9605536460876465],[112,268,76,5.951775550842285],[112,268,77,5.933669567108154],[112,268,78,5.909780025482178],[112,268,79,5.880720138549805],[112,269,64,5.943154811859131],[112,269,65,5.932080268859863],[112,269,66,5.9225616455078125],[112,269,67,5.917882919311523],[112,269,68,5.9184064865112305],[112,269,69,5.923328876495361],[112,269,70,5.931975364685059],[112,269,71,5.941537857055664],[112,269,72,5.945594310760498],[112,269,73,5.946962833404541],[112,269,74,5.956364631652832],[112,269,75,5.9605536460876465],[112,269,76,5.951775550842285],[112,269,77,5.933669567108154],[112,269,78,5.909780025482178],[112,269,79,5.880720138549805],[112,270,64,5.943154811859131],[112,270,65,5.932080268859863],[112,270,66,5.9225616455078125],[112,270,67,5.917882919311523],[112,270,68,5.9184064865112305],[112,270,69,5.923328876495361],[112,270,70,5.931975364685059],[112,270,71,5.941537857055664],[112,270,72,5.945594310760498],[112,270,73,5.946962833404541],[112,270,74,5.956364631652832],[112,270,75,5.9605536460876465],[112,270,76,5.951775550842285],[112,270,77,5.933669567108154],[112,270,78,5.909780025482178],[112,270,79,5.880720138549805],[112,271,64,5.943154811859131],[112,271,65,5.932080268859863],[112,271,66,5.9225616455078125],[112,271,67,5.917882919311523],[112,271,68,5.9184064865112305],[112,271,69,5.923328876495361],[112,271,70,5.931975364685059],[112,271,71,5.941537857055664],[112,271,72,5.945594310760498],[112,271,73,5.946962833404541],[112,271,74,5.956364631652832],[112,271,75,5.9605536460876465],[112,271,76,5.951775550842285],[112,271,77,5.933669567108154],[112,271,78,5.909780025482178],[112,271,79,5.880720138549805],[112,272,64,5.943154811859131],[112,272,65,5.932080268859863],[112,272,66,5.9225616455078125],[112,272,67,5.917882919311523],[112,272,68,5.9184064865112305],[112,272,69,5.923328876495361],[112,272,70,5.931975364685059],[112,272,71,5.941537857055664],[112,272,72,5.945594310760498],[112,272,73,5.946962833404541],[112,272,74,5.956364631652832],[112,272,75,5.9605536460876465],[112,272,76,5.951775550842285],[112,272,77,5.933669567108154],[112,272,78,5.909780025482178],[112,272,79,5.880720138549805],[112,273,64,5.943154811859131],[112,273,65,5.932080268859863],[112,273,66,5.9225616455078125],[112,273,67,5.917882919311523],[112,273,68,5.9184064865112305],[112,273,69,5.923328876495361],[112,273,70,5.931975364685059],[112,273,71,5.941537857055664],[112,273,72,5.945594310760498],[112,273,73,5.946962833404541],[112,273,74,5.956364631652832],[112,273,75,5.9605536460876465],[112,273,76,5.951775550842285],[112,273,77,5.933669567108154],[112,273,78,5.909780025482178],[112,273,79,5.880720138549805],[112,274,64,5.943154811859131],[112,274,65,5.932080268859863],[112,274,66,5.9225616455078125],[112,274,67,5.917882919311523],[112,274,68,5.9184064865112305],[112,274,69,5.923328876495361],[112,274,70,5.931975364685059],[112,274,71,5.941537857055664],[112,274,72,5.945594310760498],[112,274,73,5.946962833404541],[112,274,74,5.956364631652832],[112,274,75,5.9605536460876465],[112,274,76,5.951775550842285],[112,274,77,5.933669567108154],[112,274,78,5.909780025482178],[112,274,79,5.880720138549805],[112,275,64,5.943154811859131],[112,275,65,5.932080268859863],[112,275,66,5.9225616455078125],[112,275,67,5.917882919311523],[112,275,68,5.9184064865112305],[112,275,69,5.923328876495361],[112,275,70,5.931975364685059],[112,275,71,5.941537857055664],[112,275,72,5.945594310760498],[112,275,73,5.946962833404541],[112,275,74,5.956364631652832],[112,275,75,5.9605536460876465],[112,275,76,5.951775550842285],[112,275,77,5.933669567108154],[112,275,78,5.909780025482178],[112,275,79,5.880720138549805],[112,276,64,5.943154811859131],[112,276,65,5.932080268859863],[112,276,66,5.9225616455078125],[112,276,67,5.917882919311523],[112,276,68,5.9184064865112305],[112,276,69,5.923328876495361],[112,276,70,5.931975364685059],[112,276,71,5.941537857055664],[112,276,72,5.945594310760498],[112,276,73,5.946962833404541],[112,276,74,5.956364631652832],[112,276,75,5.9605536460876465],[112,276,76,5.951775550842285],[112,276,77,5.933669567108154],[112,276,78,5.909780025482178],[112,276,79,5.880720138549805],[112,277,64,5.943154811859131],[112,277,65,5.932080268859863],[112,277,66,5.9225616455078125],[112,277,67,5.917882919311523],[112,277,68,5.9184064865112305],[112,277,69,5.923328876495361],[112,277,70,5.931975364685059],[112,277,71,5.941537857055664],[112,277,72,5.945594310760498],[112,277,73,5.946962833404541],[112,277,74,5.956364631652832],[112,277,75,5.9605536460876465],[112,277,76,5.951775550842285],[112,277,77,5.933669567108154],[112,277,78,5.909780025482178],[112,277,79,5.880720138549805],[112,278,64,5.943154811859131],[112,278,65,5.932080268859863],[112,278,66,5.9225616455078125],[112,278,67,5.917882919311523],[112,278,68,5.9184064865112305],[112,278,69,5.923328876495361],[112,278,70,5.931975364685059],[112,278,71,5.941537857055664],[112,278,72,5.945594310760498],[112,278,73,5.946962833404541],[112,278,74,5.956364631652832],[112,278,75,5.9605536460876465],[112,278,76,5.951775550842285],[112,278,77,5.933669567108154],[112,278,78,5.909780025482178],[112,278,79,5.880720138549805],[112,279,64,5.943154811859131],[112,279,65,5.932080268859863],[112,279,66,5.9225616455078125],[112,279,67,5.917882919311523],[112,279,68,5.9184064865112305],[112,279,69,5.923328876495361],[112,279,70,5.931975364685059],[112,279,71,5.941537857055664],[112,279,72,5.945594310760498],[112,279,73,5.946962833404541],[112,279,74,5.956364631652832],[112,279,75,5.9605536460876465],[112,279,76,5.951775550842285],[112,279,77,5.933669567108154],[112,279,78,5.909780025482178],[112,279,79,5.880720138549805],[112,280,64,5.943154811859131],[112,280,65,5.932080268859863],[112,280,66,5.9225616455078125],[112,280,67,5.917882919311523],[112,280,68,5.9184064865112305],[112,280,69,5.923328876495361],[112,280,70,5.931975364685059],[112,280,71,5.941537857055664],[112,280,72,5.945594310760498],[112,280,73,5.946962833404541],[112,280,74,5.956364631652832],[112,280,75,5.9605536460876465],[112,280,76,5.951775550842285],[112,280,77,5.933669567108154],[112,280,78,5.909780025482178],[112,280,79,5.880720138549805],[112,281,64,5.943154811859131],[112,281,65,5.932080268859863],[112,281,66,5.9225616455078125],[112,281,67,5.917882919311523],[112,281,68,5.9184064865112305],[112,281,69,5.923328876495361],[112,281,70,5.931975364685059],[112,281,71,5.941537857055664],[112,281,72,5.945594310760498],[112,281,73,5.946962833404541],[112,281,74,5.956364631652832],[112,281,75,5.9605536460876465],[112,281,76,5.951775550842285],[112,281,77,5.933669567108154],[112,281,78,5.909780025482178],[112,281,79,5.880720138549805],[112,282,64,5.943154811859131],[112,282,65,5.932080268859863],[112,282,66,5.9225616455078125],[112,282,67,5.917882919311523],[112,282,68,5.9184064865112305],[112,282,69,5.923328876495361],[112,282,70,5.931975364685059],[112,282,71,5.941537857055664],[112,282,72,5.945594310760498],[112,282,73,5.946962833404541],[112,282,74,5.956364631652832],[112,282,75,5.9605536460876465],[112,282,76,5.951775550842285],[112,282,77,5.933669567108154],[112,282,78,5.909780025482178],[112,282,79,5.880720138549805],[112,283,64,5.943154811859131],[112,283,65,5.932080268859863],[112,283,66,5.9225616455078125],[112,283,67,5.917882919311523],[112,283,68,5.9184064865112305],[112,283,69,5.923328876495361],[112,283,70,5.931975364685059],[112,283,71,5.941537857055664],[112,283,72,5.945594310760498],[112,283,73,5.946962833404541],[112,283,74,5.956364631652832],[112,283,75,5.9605536460876465],[112,283,76,5.951775550842285],[112,283,77,5.933669567108154],[112,283,78,5.909780025482178],[112,283,79,5.880720138549805],[112,284,64,5.943154811859131],[112,284,65,5.932080268859863],[112,284,66,5.9225616455078125],[112,284,67,5.917882919311523],[112,284,68,5.9184064865112305],[112,284,69,5.923328876495361],[112,284,70,5.931975364685059],[112,284,71,5.941537857055664],[112,284,72,5.945594310760498],[112,284,73,5.946962833404541],[112,284,74,5.956364631652832],[112,284,75,5.9605536460876465],[112,284,76,5.951775550842285],[112,284,77,5.933669567108154],[112,284,78,5.909780025482178],[112,284,79,5.880720138549805],[112,285,64,5.943154811859131],[112,285,65,5.932080268859863],[112,285,66,5.9225616455078125],[112,285,67,5.917882919311523],[112,285,68,5.9184064865112305],[112,285,69,5.923328876495361],[112,285,70,5.931975364685059],[112,285,71,5.941537857055664],[112,285,72,5.945594310760498],[112,285,73,5.946962833404541],[112,285,74,5.956364631652832],[112,285,75,5.9605536460876465],[112,285,76,5.951775550842285],[112,285,77,5.933669567108154],[112,285,78,5.909780025482178],[112,285,79,5.880720138549805],[112,286,64,5.943154811859131],[112,286,65,5.932080268859863],[112,286,66,5.9225616455078125],[112,286,67,5.917882919311523],[112,286,68,5.9184064865112305],[112,286,69,5.923328876495361],[112,286,70,5.931975364685059],[112,286,71,5.941537857055664],[112,286,72,5.945594310760498],[112,286,73,5.946962833404541],[112,286,74,5.956364631652832],[112,286,75,5.9605536460876465],[112,286,76,5.951775550842285],[112,286,77,5.933669567108154],[112,286,78,5.909780025482178],[112,286,79,5.880720138549805],[112,287,64,5.943154811859131],[112,287,65,5.932080268859863],[112,287,66,5.9225616455078125],[112,287,67,5.917882919311523],[112,287,68,5.9184064865112305],[112,287,69,5.923328876495361],[112,287,70,5.931975364685059],[112,287,71,5.941537857055664],[112,287,72,5.945594310760498],[112,287,73,5.946962833404541],[112,287,74,5.956364631652832],[112,287,75,5.9605536460876465],[112,287,76,5.951775550842285],[112,287,77,5.933669567108154],[112,287,78,5.909780025482178],[112,287,79,5.880720138549805],[112,288,64,5.943154811859131],[112,288,65,5.932080268859863],[112,288,66,5.9225616455078125],[112,288,67,5.917882919311523],[112,288,68,5.9184064865112305],[112,288,69,5.923328876495361],[112,288,70,5.931975364685059],[112,288,71,5.941537857055664],[112,288,72,5.945594310760498],[112,288,73,5.946962833404541],[112,288,74,5.956364631652832],[112,288,75,5.9605536460876465],[112,288,76,5.951775550842285],[112,288,77,5.933669567108154],[112,288,78,5.909780025482178],[112,288,79,5.880720138549805],[112,289,64,5.943154811859131],[112,289,65,5.932080268859863],[112,289,66,5.9225616455078125],[112,289,67,5.917882919311523],[112,289,68,5.9184064865112305],[112,289,69,5.923328876495361],[112,289,70,5.931975364685059],[112,289,71,5.941537857055664],[112,289,72,5.945594310760498],[112,289,73,5.946962833404541],[112,289,74,5.956364631652832],[112,289,75,5.9605536460876465],[112,289,76,5.951775550842285],[112,289,77,5.933669567108154],[112,289,78,5.909780025482178],[112,289,79,5.880720138549805],[112,290,64,5.943154811859131],[112,290,65,5.932080268859863],[112,290,66,5.9225616455078125],[112,290,67,5.917882919311523],[112,290,68,5.9184064865112305],[112,290,69,5.923328876495361],[112,290,70,5.931975364685059],[112,290,71,5.941537857055664],[112,290,72,5.945594310760498],[112,290,73,5.946962833404541],[112,290,74,5.956364631652832],[112,290,75,5.9605536460876465],[112,290,76,5.951775550842285],[112,290,77,5.933669567108154],[112,290,78,5.909780025482178],[112,290,79,5.880720138549805],[112,291,64,5.943154811859131],[112,291,65,5.932080268859863],[112,291,66,5.9225616455078125],[112,291,67,5.917882919311523],[112,291,68,5.9184064865112305],[112,291,69,5.923328876495361],[112,291,70,5.931975364685059],[112,291,71,5.941537857055664],[112,291,72,5.945594310760498],[112,291,73,5.946962833404541],[112,291,74,5.956364631652832],[112,291,75,5.9605536460876465],[112,291,76,5.951775550842285],[112,291,77,5.933669567108154],[112,291,78,5.909780025482178],[112,291,79,5.880720138549805],[112,292,64,5.943154811859131],[112,292,65,5.932080268859863],[112,292,66,5.9225616455078125],[112,292,67,5.917882919311523],[112,292,68,5.9184064865112305],[112,292,69,5.923328876495361],[112,292,70,5.931975364685059],[112,292,71,5.941537857055664],[112,292,72,5.945594310760498],[112,292,73,5.946962833404541],[112,292,74,5.956364631652832],[112,292,75,5.9605536460876465],[112,292,76,5.951775550842285],[112,292,77,5.933669567108154],[112,292,78,5.909780025482178],[112,292,79,5.880720138549805],[112,293,64,5.943154811859131],[112,293,65,5.932080268859863],[112,293,66,5.9225616455078125],[112,293,67,5.917882919311523],[112,293,68,5.9184064865112305],[112,293,69,5.923328876495361],[112,293,70,5.931975364685059],[112,293,71,5.941537857055664],[112,293,72,5.945594310760498],[112,293,73,5.946962833404541],[112,293,74,5.956364631652832],[112,293,75,5.9605536460876465],[112,293,76,5.951775550842285],[112,293,77,5.933669567108154],[112,293,78,5.909780025482178],[112,293,79,5.880720138549805],[112,294,64,5.943154811859131],[112,294,65,5.932080268859863],[112,294,66,5.9225616455078125],[112,294,67,5.917882919311523],[112,294,68,5.9184064865112305],[112,294,69,5.923328876495361],[112,294,70,5.931975364685059],[112,294,71,5.941537857055664],[112,294,72,5.945594310760498],[112,294,73,5.946962833404541],[112,294,74,5.956364631652832],[112,294,75,5.9605536460876465],[112,294,76,5.951775550842285],[112,294,77,5.933669567108154],[112,294,78,5.909780025482178],[112,294,79,5.880720138549805],[112,295,64,5.943154811859131],[112,295,65,5.932080268859863],[112,295,66,5.9225616455078125],[112,295,67,5.917882919311523],[112,295,68,5.9184064865112305],[112,295,69,5.923328876495361],[112,295,70,5.931975364685059],[112,295,71,5.941537857055664],[112,295,72,5.945594310760498],[112,295,73,5.946962833404541],[112,295,74,5.956364631652832],[112,295,75,5.9605536460876465],[112,295,76,5.951775550842285],[112,295,77,5.933669567108154],[112,295,78,5.909780025482178],[112,295,79,5.880720138549805],[112,296,64,5.943154811859131],[112,296,65,5.932080268859863],[112,296,66,5.9225616455078125],[112,296,67,5.917882919311523],[112,296,68,5.9184064865112305],[112,296,69,5.923328876495361],[112,296,70,5.931975364685059],[112,296,71,5.941537857055664],[112,296,72,5.945594310760498],[112,296,73,5.946962833404541],[112,296,74,5.956364631652832],[112,296,75,5.9605536460876465],[112,296,76,5.951775550842285],[112,296,77,5.933669567108154],[112,296,78,5.909780025482178],[112,296,79,5.880720138549805],[112,297,64,5.943154811859131],[112,297,65,5.932080268859863],[112,297,66,5.9225616455078125],[112,297,67,5.917882919311523],[112,297,68,5.9184064865112305],[112,297,69,5.923328876495361],[112,297,70,5.931975364685059],[112,297,71,5.941537857055664],[112,297,72,5.945594310760498],[112,297,73,5.946962833404541],[112,297,74,5.956364631652832],[112,297,75,5.9605536460876465],[112,297,76,5.951775550842285],[112,297,77,5.933669567108154],[112,297,78,5.909780025482178],[112,297,79,5.880720138549805],[112,298,64,5.943154811859131],[112,298,65,5.932080268859863],[112,298,66,5.9225616455078125],[112,298,67,5.917882919311523],[112,298,68,5.9184064865112305],[112,298,69,5.923328876495361],[112,298,70,5.931975364685059],[112,298,71,5.941537857055664],[112,298,72,5.945594310760498],[112,298,73,5.946962833404541],[112,298,74,5.956364631652832],[112,298,75,5.9605536460876465],[112,298,76,5.951775550842285],[112,298,77,5.933669567108154],[112,298,78,5.909780025482178],[112,298,79,5.880720138549805],[112,299,64,5.943154811859131],[112,299,65,5.932080268859863],[112,299,66,5.9225616455078125],[112,299,67,5.917882919311523],[112,299,68,5.9184064865112305],[112,299,69,5.923328876495361],[112,299,70,5.931975364685059],[112,299,71,5.941537857055664],[112,299,72,5.945594310760498],[112,299,73,5.946962833404541],[112,299,74,5.956364631652832],[112,299,75,5.9605536460876465],[112,299,76,5.951775550842285],[112,299,77,5.933669567108154],[112,299,78,5.909780025482178],[112,299,79,5.880720138549805],[112,300,64,5.943154811859131],[112,300,65,5.932080268859863],[112,300,66,5.9225616455078125],[112,300,67,5.917882919311523],[112,300,68,5.9184064865112305],[112,300,69,5.923328876495361],[112,300,70,5.931975364685059],[112,300,71,5.941537857055664],[112,300,72,5.945594310760498],[112,300,73,5.946962833404541],[112,300,74,5.956364631652832],[112,300,75,5.9605536460876465],[112,300,76,5.951775550842285],[112,300,77,5.933669567108154],[112,300,78,5.909780025482178],[112,300,79,5.880720138549805],[112,301,64,5.943154811859131],[112,301,65,5.932080268859863],[112,301,66,5.9225616455078125],[112,301,67,5.917882919311523],[112,301,68,5.9184064865112305],[112,301,69,5.923328876495361],[112,301,70,5.931975364685059],[112,301,71,5.941537857055664],[112,301,72,5.945594310760498],[112,301,73,5.946962833404541],[112,301,74,5.956364631652832],[112,301,75,5.9605536460876465],[112,301,76,5.951775550842285],[112,301,77,5.933669567108154],[112,301,78,5.909780025482178],[112,301,79,5.880720138549805],[112,302,64,5.943154811859131],[112,302,65,5.932080268859863],[112,302,66,5.9225616455078125],[112,302,67,5.917882919311523],[112,302,68,5.9184064865112305],[112,302,69,5.923328876495361],[112,302,70,5.931975364685059],[112,302,71,5.941537857055664],[112,302,72,5.945594310760498],[112,302,73,5.946962833404541],[112,302,74,5.956364631652832],[112,302,75,5.9605536460876465],[112,302,76,5.951775550842285],[112,302,77,5.933669567108154],[112,302,78,5.909780025482178],[112,302,79,5.880720138549805],[112,303,64,5.943154811859131],[112,303,65,5.932080268859863],[112,303,66,5.9225616455078125],[112,303,67,5.917882919311523],[112,303,68,5.9184064865112305],[112,303,69,5.923328876495361],[112,303,70,5.931975364685059],[112,303,71,5.941537857055664],[112,303,72,5.945594310760498],[112,303,73,5.946962833404541],[112,303,74,5.956364631652832],[112,303,75,5.9605536460876465],[112,303,76,5.951775550842285],[112,303,77,5.933669567108154],[112,303,78,5.909780025482178],[112,303,79,5.880720138549805],[112,304,64,5.943154811859131],[112,304,65,5.932080268859863],[112,304,66,5.9225616455078125],[112,304,67,5.917882919311523],[112,304,68,5.9184064865112305],[112,304,69,5.923328876495361],[112,304,70,5.931975364685059],[112,304,71,5.941537857055664],[112,304,72,5.945594310760498],[112,304,73,5.946962833404541],[112,304,74,5.956364631652832],[112,304,75,5.9605536460876465],[112,304,76,5.951775550842285],[112,304,77,5.933669567108154],[112,304,78,5.909780025482178],[112,304,79,5.880720138549805],[112,305,64,5.943154811859131],[112,305,65,5.932080268859863],[112,305,66,5.9225616455078125],[112,305,67,5.917882919311523],[112,305,68,5.9184064865112305],[112,305,69,5.923328876495361],[112,305,70,5.931975364685059],[112,305,71,5.941537857055664],[112,305,72,5.945594310760498],[112,305,73,5.946962833404541],[112,305,74,5.956364631652832],[112,305,75,5.9605536460876465],[112,305,76,5.951775550842285],[112,305,77,5.933669567108154],[112,305,78,5.909780025482178],[112,305,79,5.880720138549805],[112,306,64,5.943154811859131],[112,306,65,5.932080268859863],[112,306,66,5.9225616455078125],[112,306,67,5.917882919311523],[112,306,68,5.9184064865112305],[112,306,69,5.923328876495361],[112,306,70,5.931975364685059],[112,306,71,5.941537857055664],[112,306,72,5.945594310760498],[112,306,73,5.946962833404541],[112,306,74,5.956364631652832],[112,306,75,5.9605536460876465],[112,306,76,5.951775550842285],[112,306,77,5.933669567108154],[112,306,78,5.909780025482178],[112,306,79,5.880720138549805],[112,307,64,5.943154811859131],[112,307,65,5.932080268859863],[112,307,66,5.9225616455078125],[112,307,67,5.917882919311523],[112,307,68,5.9184064865112305],[112,307,69,5.923328876495361],[112,307,70,5.931975364685059],[112,307,71,5.941537857055664],[112,307,72,5.945594310760498],[112,307,73,5.946962833404541],[112,307,74,5.956364631652832],[112,307,75,5.9605536460876465],[112,307,76,5.951775550842285],[112,307,77,5.933669567108154],[112,307,78,5.909780025482178],[112,307,79,5.880720138549805],[112,308,64,5.943154811859131],[112,308,65,5.932080268859863],[112,308,66,5.9225616455078125],[112,308,67,5.917882919311523],[112,308,68,5.9184064865112305],[112,308,69,5.923328876495361],[112,308,70,5.931975364685059],[112,308,71,5.941537857055664],[112,308,72,5.945594310760498],[112,308,73,5.946962833404541],[112,308,74,5.956364631652832],[112,308,75,5.9605536460876465],[112,308,76,5.951775550842285],[112,308,77,5.933669567108154],[112,308,78,5.909780025482178],[112,308,79,5.880720138549805],[112,309,64,5.943154811859131],[112,309,65,5.932080268859863],[112,309,66,5.9225616455078125],[112,309,67,5.917882919311523],[112,309,68,5.9184064865112305],[112,309,69,5.923328876495361],[112,309,70,5.931975364685059],[112,309,71,5.941537857055664],[112,309,72,5.945594310760498],[112,309,73,5.946962833404541],[112,309,74,5.956364631652832],[112,309,75,5.9605536460876465],[112,309,76,5.951775550842285],[112,309,77,5.933669567108154],[112,309,78,5.909780025482178],[112,309,79,5.880720138549805],[112,310,64,5.943154811859131],[112,310,65,5.932080268859863],[112,310,66,5.9225616455078125],[112,310,67,5.917882919311523],[112,310,68,5.9184064865112305],[112,310,69,5.923328876495361],[112,310,70,5.931975364685059],[112,310,71,5.941537857055664],[112,310,72,5.945594310760498],[112,310,73,5.946962833404541],[112,310,74,5.956364631652832],[112,310,75,5.9605536460876465],[112,310,76,5.951775550842285],[112,310,77,5.933669567108154],[112,310,78,5.909780025482178],[112,310,79,5.880720138549805],[112,311,64,5.943154811859131],[112,311,65,5.932080268859863],[112,311,66,5.9225616455078125],[112,311,67,5.917882919311523],[112,311,68,5.9184064865112305],[112,311,69,5.923328876495361],[112,311,70,5.931975364685059],[112,311,71,5.941537857055664],[112,311,72,5.945594310760498],[112,311,73,5.946962833404541],[112,311,74,5.956364631652832],[112,311,75,5.9605536460876465],[112,311,76,5.951775550842285],[112,311,77,5.933669567108154],[112,311,78,5.909780025482178],[112,311,79,5.880720138549805],[112,312,64,5.943154811859131],[112,312,65,5.932080268859863],[112,312,66,5.9225616455078125],[112,312,67,5.917882919311523],[112,312,68,5.9184064865112305],[112,312,69,5.923328876495361],[112,312,70,5.931975364685059],[112,312,71,5.941537857055664],[112,312,72,5.945594310760498],[112,312,73,5.946962833404541],[112,312,74,5.956364631652832],[112,312,75,5.9605536460876465],[112,312,76,5.951775550842285],[112,312,77,5.933669567108154],[112,312,78,5.909780025482178],[112,312,79,5.880720138549805],[112,313,64,5.943154811859131],[112,313,65,5.932080268859863],[112,313,66,5.9225616455078125],[112,313,67,5.917882919311523],[112,313,68,5.9184064865112305],[112,313,69,5.923328876495361],[112,313,70,5.931975364685059],[112,313,71,5.941537857055664],[112,313,72,5.945594310760498],[112,313,73,5.946962833404541],[112,313,74,5.956364631652832],[112,313,75,5.9605536460876465],[112,313,76,5.951775550842285],[112,313,77,5.933669567108154],[112,313,78,5.909780025482178],[112,313,79,5.880720138549805],[112,314,64,5.943154811859131],[112,314,65,5.932080268859863],[112,314,66,5.9225616455078125],[112,314,67,5.917882919311523],[112,314,68,5.9184064865112305],[112,314,69,5.923328876495361],[112,314,70,5.931975364685059],[112,314,71,5.941537857055664],[112,314,72,5.945594310760498],[112,314,73,5.946962833404541],[112,314,74,5.956364631652832],[112,314,75,5.9605536460876465],[112,314,76,5.951775550842285],[112,314,77,5.933669567108154],[112,314,78,5.909780025482178],[112,314,79,5.880720138549805],[112,315,64,5.943154811859131],[112,315,65,5.932080268859863],[112,315,66,5.9225616455078125],[112,315,67,5.917882919311523],[112,315,68,5.9184064865112305],[112,315,69,5.923328876495361],[112,315,70,5.931975364685059],[112,315,71,5.941537857055664],[112,315,72,5.945594310760498],[112,315,73,5.946962833404541],[112,315,74,5.956364631652832],[112,315,75,5.9605536460876465],[112,315,76,5.951775550842285],[112,315,77,5.933669567108154],[112,315,78,5.909780025482178],[112,315,79,5.880720138549805],[112,316,64,5.943154811859131],[112,316,65,5.932080268859863],[112,316,66,5.9225616455078125],[112,316,67,5.917882919311523],[112,316,68,5.9184064865112305],[112,316,69,5.923328876495361],[112,316,70,5.931975364685059],[112,316,71,5.941537857055664],[112,316,72,5.945594310760498],[112,316,73,5.946962833404541],[112,316,74,5.956364631652832],[112,316,75,5.9605536460876465],[112,316,76,5.951775550842285],[112,316,77,5.933669567108154],[112,316,78,5.909780025482178],[112,316,79,5.880720138549805],[112,317,64,5.943154811859131],[112,317,65,5.932080268859863],[112,317,66,5.9225616455078125],[112,317,67,5.917882919311523],[112,317,68,5.9184064865112305],[112,317,69,5.923328876495361],[112,317,70,5.931975364685059],[112,317,71,5.941537857055664],[112,317,72,5.945594310760498],[112,317,73,5.946962833404541],[112,317,74,5.956364631652832],[112,317,75,5.9605536460876465],[112,317,76,5.951775550842285],[112,317,77,5.933669567108154],[112,317,78,5.909780025482178],[112,317,79,5.880720138549805],[112,318,64,5.943154811859131],[112,318,65,5.932080268859863],[112,318,66,5.9225616455078125],[112,318,67,5.917882919311523],[112,318,68,5.9184064865112305],[112,318,69,5.923328876495361],[112,318,70,5.931975364685059],[112,318,71,5.941537857055664],[112,318,72,5.945594310760498],[112,318,73,5.946962833404541],[112,318,74,5.956364631652832],[112,318,75,5.9605536460876465],[112,318,76,5.951775550842285],[112,318,77,5.933669567108154],[112,318,78,5.909780025482178],[112,318,79,5.880720138549805],[112,319,64,5.943154811859131],[112,319,65,5.932080268859863],[112,319,66,5.9225616455078125],[112,319,67,5.917882919311523],[112,319,68,5.9184064865112305],[112,319,69,5.923328876495361],[112,319,70,5.931975364685059],[112,319,71,5.941537857055664],[112,319,72,5.945594310760498],[112,319,73,5.946962833404541],[112,319,74,5.956364631652832],[112,319,75,5.9605536460876465],[112,319,76,5.951775550842285],[112,319,77,5.933669567108154],[112,319,78,5.909780025482178],[112,319,79,5.880720138549805],[113,-64,64,5.97165060043335],[113,-64,65,5.966513633728027],[113,-64,66,5.960428237915039],[113,-64,67,5.9564528465271],[113,-64,68,5.955707550048828],[113,-64,69,5.9557929039001465],[113,-64,70,5.957937717437744],[113,-64,71,5.9632954597473145],[113,-64,72,5.967661380767822],[113,-64,73,5.966158390045166],[113,-64,74,5.969226360321045],[113,-64,75,5.980562686920166],[113,-64,76,5.990850448608398],[113,-64,77,5.993145942687988],[113,-64,78,5.98264741897583],[113,-64,79,5.955428600311279],[113,-63,64,5.97165060043335],[113,-63,65,5.966513633728027],[113,-63,66,5.960428237915039],[113,-63,67,5.9564528465271],[113,-63,68,5.955707550048828],[113,-63,69,5.9557929039001465],[113,-63,70,5.957937717437744],[113,-63,71,5.9632954597473145],[113,-63,72,5.967661380767822],[113,-63,73,5.966158390045166],[113,-63,74,5.969226360321045],[113,-63,75,5.980562686920166],[113,-63,76,5.990850448608398],[113,-63,77,5.993145942687988],[113,-63,78,5.98264741897583],[113,-63,79,5.955428600311279],[113,-62,64,5.97165060043335],[113,-62,65,5.966513633728027],[113,-62,66,5.960428237915039],[113,-62,67,5.9564528465271],[113,-62,68,5.955707550048828],[113,-62,69,5.9557929039001465],[113,-62,70,5.957937717437744],[113,-62,71,5.9632954597473145],[113,-62,72,5.967661380767822],[113,-62,73,5.966158390045166],[113,-62,74,5.969226360321045],[113,-62,75,5.980562686920166],[113,-62,76,5.990850448608398],[113,-62,77,5.993145942687988],[113,-62,78,5.98264741897583],[113,-62,79,5.955428600311279],[113,-61,64,5.97165060043335],[113,-61,65,5.966513633728027],[113,-61,66,5.960428237915039],[113,-61,67,5.9564528465271],[113,-61,68,5.955707550048828],[113,-61,69,5.9557929039001465],[113,-61,70,5.957937717437744],[113,-61,71,5.9632954597473145],[113,-61,72,5.967661380767822],[113,-61,73,5.966158390045166],[113,-61,74,5.969226360321045],[113,-61,75,5.980562686920166],[113,-61,76,5.990850448608398],[113,-61,77,5.993145942687988],[113,-61,78,5.98264741897583],[113,-61,79,5.955428600311279],[113,-60,64,5.97165060043335],[113,-60,65,5.966513633728027],[113,-60,66,5.960428237915039],[113,-60,67,5.9564528465271],[113,-60,68,5.955707550048828],[113,-60,69,5.9557929039001465],[113,-60,70,5.957937717437744],[113,-60,71,5.9632954597473145],[113,-60,72,5.967661380767822],[113,-60,73,5.966158390045166],[113,-60,74,5.969226360321045],[113,-60,75,5.980562686920166],[113,-60,76,5.990850448608398],[113,-60,77,5.993145942687988],[113,-60,78,5.98264741897583],[113,-60,79,5.955428600311279],[113,-59,64,5.97165060043335],[113,-59,65,5.966513633728027],[113,-59,66,5.960428237915039],[113,-59,67,5.9564528465271],[113,-59,68,5.955707550048828],[113,-59,69,5.9557929039001465],[113,-59,70,5.957937717437744],[113,-59,71,5.9632954597473145],[113,-59,72,5.967661380767822],[113,-59,73,5.966158390045166],[113,-59,74,5.969226360321045],[113,-59,75,5.980562686920166],[113,-59,76,5.990850448608398],[113,-59,77,5.993145942687988],[113,-59,78,5.98264741897583],[113,-59,79,5.955428600311279],[113,-58,64,5.97165060043335],[113,-58,65,5.966513633728027],[113,-58,66,5.960428237915039],[113,-58,67,5.9564528465271],[113,-58,68,5.955707550048828],[113,-58,69,5.9557929039001465],[113,-58,70,5.957937717437744],[113,-58,71,5.9632954597473145],[113,-58,72,5.967661380767822],[113,-58,73,5.966158390045166],[113,-58,74,5.969226360321045],[113,-58,75,5.980562686920166],[113,-58,76,5.990850448608398],[113,-58,77,5.993145942687988],[113,-58,78,5.98264741897583],[113,-58,79,5.955428600311279],[113,-57,64,5.97165060043335],[113,-57,65,5.966513633728027],[113,-57,66,5.960428237915039],[113,-57,67,5.9564528465271],[113,-57,68,5.955707550048828],[113,-57,69,5.9557929039001465],[113,-57,70,5.957937717437744],[113,-57,71,5.9632954597473145],[113,-57,72,5.967661380767822],[113,-57,73,5.966158390045166],[113,-57,74,5.969226360321045],[113,-57,75,5.980562686920166],[113,-57,76,5.990850448608398],[113,-57,77,5.993145942687988],[113,-57,78,5.98264741897583],[113,-57,79,5.955428600311279],[113,-56,64,5.97165060043335],[113,-56,65,5.966513633728027],[113,-56,66,5.960428237915039],[113,-56,67,5.9564528465271],[113,-56,68,5.955707550048828],[113,-56,69,5.9557929039001465],[113,-56,70,5.957937717437744],[113,-56,71,5.9632954597473145],[113,-56,72,5.967661380767822],[113,-56,73,5.966158390045166],[113,-56,74,5.969226360321045],[113,-56,75,5.980562686920166],[113,-56,76,5.990850448608398],[113,-56,77,5.993145942687988],[113,-56,78,5.98264741897583],[113,-56,79,5.955428600311279],[113,-55,64,5.97165060043335],[113,-55,65,5.966513633728027],[113,-55,66,5.960428237915039],[113,-55,67,5.9564528465271],[113,-55,68,5.955707550048828],[113,-55,69,5.9557929039001465],[113,-55,70,5.957937717437744],[113,-55,71,5.9632954597473145],[113,-55,72,5.967661380767822],[113,-55,73,5.966158390045166],[113,-55,74,5.969226360321045],[113,-55,75,5.980562686920166],[113,-55,76,5.990850448608398],[113,-55,77,5.993145942687988],[113,-55,78,5.98264741897583],[113,-55,79,5.955428600311279],[113,-54,64,5.97165060043335],[113,-54,65,5.966513633728027],[113,-54,66,5.960428237915039],[113,-54,67,5.9564528465271],[113,-54,68,5.955707550048828],[113,-54,69,5.9557929039001465],[113,-54,70,5.957937717437744],[113,-54,71,5.9632954597473145],[113,-54,72,5.967661380767822],[113,-54,73,5.966158390045166],[113,-54,74,5.969226360321045],[113,-54,75,5.980562686920166],[113,-54,76,5.990850448608398],[113,-54,77,5.993145942687988],[113,-54,78,5.98264741897583],[113,-54,79,5.955428600311279],[113,-53,64,5.97165060043335],[113,-53,65,5.966513633728027],[113,-53,66,5.960428237915039],[113,-53,67,5.9564528465271],[113,-53,68,5.955707550048828],[113,-53,69,5.9557929039001465],[113,-53,70,5.957937717437744],[113,-53,71,5.9632954597473145],[113,-53,72,5.967661380767822],[113,-53,73,5.966158390045166],[113,-53,74,5.969226360321045],[113,-53,75,5.980562686920166],[113,-53,76,5.990850448608398],[113,-53,77,5.993145942687988],[113,-53,78,5.98264741897583],[113,-53,79,5.955428600311279],[113,-52,64,5.97165060043335],[113,-52,65,5.966513633728027],[113,-52,66,5.960428237915039],[113,-52,67,5.9564528465271],[113,-52,68,5.955707550048828],[113,-52,69,5.9557929039001465],[113,-52,70,5.957937717437744],[113,-52,71,5.9632954597473145],[113,-52,72,5.967661380767822],[113,-52,73,5.966158390045166],[113,-52,74,5.969226360321045],[113,-52,75,5.980562686920166],[113,-52,76,5.990850448608398],[113,-52,77,5.993145942687988],[113,-52,78,5.98264741897583],[113,-52,79,5.955428600311279],[113,-51,64,5.97165060043335],[113,-51,65,5.966513633728027],[113,-51,66,5.960428237915039],[113,-51,67,5.9564528465271],[113,-51,68,5.955707550048828],[113,-51,69,5.9557929039001465],[113,-51,70,5.957937717437744],[113,-51,71,5.9632954597473145],[113,-51,72,5.967661380767822],[113,-51,73,5.966158390045166],[113,-51,74,5.969226360321045],[113,-51,75,5.980562686920166],[113,-51,76,5.990850448608398],[113,-51,77,5.993145942687988],[113,-51,78,5.98264741897583],[113,-51,79,5.955428600311279],[113,-50,64,5.97165060043335],[113,-50,65,5.966513633728027],[113,-50,66,5.960428237915039],[113,-50,67,5.9564528465271],[113,-50,68,5.955707550048828],[113,-50,69,5.9557929039001465],[113,-50,70,5.957937717437744],[113,-50,71,5.9632954597473145],[113,-50,72,5.967661380767822],[113,-50,73,5.966158390045166],[113,-50,74,5.969226360321045],[113,-50,75,5.980562686920166],[113,-50,76,5.990850448608398],[113,-50,77,5.993145942687988],[113,-50,78,5.98264741897583],[113,-50,79,5.955428600311279],[113,-49,64,5.97165060043335],[113,-49,65,5.966513633728027],[113,-49,66,5.960428237915039],[113,-49,67,5.9564528465271],[113,-49,68,5.955707550048828],[113,-49,69,5.9557929039001465],[113,-49,70,5.957937717437744],[113,-49,71,5.9632954597473145],[113,-49,72,5.967661380767822],[113,-49,73,5.966158390045166],[113,-49,74,5.969226360321045],[113,-49,75,5.980562686920166],[113,-49,76,5.990850448608398],[113,-49,77,5.993145942687988],[113,-49,78,5.98264741897583],[113,-49,79,5.955428600311279],[113,-48,64,5.97165060043335],[113,-48,65,5.966513633728027],[113,-48,66,5.960428237915039],[113,-48,67,5.9564528465271],[113,-48,68,5.955707550048828],[113,-48,69,5.9557929039001465],[113,-48,70,5.957937717437744],[113,-48,71,5.9632954597473145],[113,-48,72,5.967661380767822],[113,-48,73,5.966158390045166],[113,-48,74,5.969226360321045],[113,-48,75,5.980562686920166],[113,-48,76,5.990850448608398],[113,-48,77,5.993145942687988],[113,-48,78,5.98264741897583],[113,-48,79,5.955428600311279],[113,-47,64,5.97165060043335],[113,-47,65,5.966513633728027],[113,-47,66,5.960428237915039],[113,-47,67,5.9564528465271],[113,-47,68,5.955707550048828],[113,-47,69,5.9557929039001465],[113,-47,70,5.957937717437744],[113,-47,71,5.9632954597473145],[113,-47,72,5.967661380767822],[113,-47,73,5.966158390045166],[113,-47,74,5.969226360321045],[113,-47,75,5.980562686920166],[113,-47,76,5.990850448608398],[113,-47,77,5.993145942687988],[113,-47,78,5.98264741897583],[113,-47,79,5.955428600311279],[113,-46,64,5.97165060043335],[113,-46,65,5.966513633728027],[113,-46,66,5.960428237915039],[113,-46,67,5.9564528465271],[113,-46,68,5.955707550048828],[113,-46,69,5.9557929039001465],[113,-46,70,5.957937717437744],[113,-46,71,5.9632954597473145],[113,-46,72,5.967661380767822],[113,-46,73,5.966158390045166],[113,-46,74,5.969226360321045],[113,-46,75,5.980562686920166],[113,-46,76,5.990850448608398],[113,-46,77,5.993145942687988],[113,-46,78,5.98264741897583],[113,-46,79,5.955428600311279],[113,-45,64,5.97165060043335],[113,-45,65,5.966513633728027],[113,-45,66,5.960428237915039],[113,-45,67,5.9564528465271],[113,-45,68,5.955707550048828],[113,-45,69,5.9557929039001465],[113,-45,70,5.957937717437744],[113,-45,71,5.9632954597473145],[113,-45,72,5.967661380767822],[113,-45,73,5.966158390045166],[113,-45,74,5.969226360321045],[113,-45,75,5.980562686920166],[113,-45,76,5.990850448608398],[113,-45,77,5.993145942687988],[113,-45,78,5.98264741897583],[113,-45,79,5.955428600311279],[113,-44,64,5.97165060043335],[113,-44,65,5.966513633728027],[113,-44,66,5.960428237915039],[113,-44,67,5.9564528465271],[113,-44,68,5.955707550048828],[113,-44,69,5.9557929039001465],[113,-44,70,5.957937717437744],[113,-44,71,5.9632954597473145],[113,-44,72,5.967661380767822],[113,-44,73,5.966158390045166],[113,-44,74,5.969226360321045],[113,-44,75,5.980562686920166],[113,-44,76,5.990850448608398],[113,-44,77,5.993145942687988],[113,-44,78,5.98264741897583],[113,-44,79,5.955428600311279],[113,-43,64,5.97165060043335],[113,-43,65,5.966513633728027],[113,-43,66,5.960428237915039],[113,-43,67,5.9564528465271],[113,-43,68,5.955707550048828],[113,-43,69,5.9557929039001465],[113,-43,70,5.957937717437744],[113,-43,71,5.9632954597473145],[113,-43,72,5.967661380767822],[113,-43,73,5.966158390045166],[113,-43,74,5.969226360321045],[113,-43,75,5.980562686920166],[113,-43,76,5.990850448608398],[113,-43,77,5.993145942687988],[113,-43,78,5.98264741897583],[113,-43,79,5.955428600311279],[113,-42,64,5.97165060043335],[113,-42,65,5.966513633728027],[113,-42,66,5.960428237915039],[113,-42,67,5.9564528465271],[113,-42,68,5.955707550048828],[113,-42,69,5.9557929039001465],[113,-42,70,5.957937717437744],[113,-42,71,5.9632954597473145],[113,-42,72,5.967661380767822],[113,-42,73,5.966158390045166],[113,-42,74,5.969226360321045],[113,-42,75,5.980562686920166],[113,-42,76,5.990850448608398],[113,-42,77,5.993145942687988],[113,-42,78,5.98264741897583],[113,-42,79,5.955428600311279],[113,-41,64,5.97165060043335],[113,-41,65,5.966513633728027],[113,-41,66,5.960428237915039],[113,-41,67,5.9564528465271],[113,-41,68,5.955707550048828],[113,-41,69,5.9557929039001465],[113,-41,70,5.957937717437744],[113,-41,71,5.9632954597473145],[113,-41,72,5.967661380767822],[113,-41,73,5.966158390045166],[113,-41,74,5.969226360321045],[113,-41,75,5.980562686920166],[113,-41,76,5.990850448608398],[113,-41,77,5.993145942687988],[113,-41,78,5.98264741897583],[113,-41,79,5.955428600311279],[113,-40,64,5.97165060043335],[113,-40,65,5.966513633728027],[113,-40,66,5.960428237915039],[113,-40,67,5.9564528465271],[113,-40,68,5.955707550048828],[113,-40,69,5.9557929039001465],[113,-40,70,5.957937717437744],[113,-40,71,5.9632954597473145],[113,-40,72,5.967661380767822],[113,-40,73,5.966158390045166],[113,-40,74,5.969226360321045],[113,-40,75,5.980562686920166],[113,-40,76,5.990850448608398],[113,-40,77,5.993145942687988],[113,-40,78,5.98264741897583],[113,-40,79,5.955428600311279],[113,-39,64,5.97165060043335],[113,-39,65,5.966513633728027],[113,-39,66,5.960428237915039],[113,-39,67,5.9564528465271],[113,-39,68,5.955707550048828],[113,-39,69,5.9557929039001465],[113,-39,70,5.957937717437744],[113,-39,71,5.9632954597473145],[113,-39,72,5.967661380767822],[113,-39,73,5.966158390045166],[113,-39,74,5.969226360321045],[113,-39,75,5.980562686920166],[113,-39,76,5.990850448608398],[113,-39,77,5.993145942687988],[113,-39,78,5.98264741897583],[113,-39,79,5.955428600311279],[113,-38,64,5.97165060043335],[113,-38,65,5.966513633728027],[113,-38,66,5.960428237915039],[113,-38,67,5.9564528465271],[113,-38,68,5.955707550048828],[113,-38,69,5.9557929039001465],[113,-38,70,5.957937717437744],[113,-38,71,5.9632954597473145],[113,-38,72,5.967661380767822],[113,-38,73,5.966158390045166],[113,-38,74,5.969226360321045],[113,-38,75,5.980562686920166],[113,-38,76,5.990850448608398],[113,-38,77,5.993145942687988],[113,-38,78,5.98264741897583],[113,-38,79,5.955428600311279],[113,-37,64,5.97165060043335],[113,-37,65,5.966513633728027],[113,-37,66,5.960428237915039],[113,-37,67,5.9564528465271],[113,-37,68,5.955707550048828],[113,-37,69,5.9557929039001465],[113,-37,70,5.957937717437744],[113,-37,71,5.9632954597473145],[113,-37,72,5.967661380767822],[113,-37,73,5.966158390045166],[113,-37,74,5.969226360321045],[113,-37,75,5.980562686920166],[113,-37,76,5.990850448608398],[113,-37,77,5.993145942687988],[113,-37,78,5.98264741897583],[113,-37,79,5.955428600311279],[113,-36,64,5.97165060043335],[113,-36,65,5.966513633728027],[113,-36,66,5.960428237915039],[113,-36,67,5.9564528465271],[113,-36,68,5.955707550048828],[113,-36,69,5.9557929039001465],[113,-36,70,5.957937717437744],[113,-36,71,5.9632954597473145],[113,-36,72,5.967661380767822],[113,-36,73,5.966158390045166],[113,-36,74,5.969226360321045],[113,-36,75,5.980562686920166],[113,-36,76,5.990850448608398],[113,-36,77,5.993145942687988],[113,-36,78,5.98264741897583],[113,-36,79,5.955428600311279],[113,-35,64,5.97165060043335],[113,-35,65,5.966513633728027],[113,-35,66,5.960428237915039],[113,-35,67,5.9564528465271],[113,-35,68,5.955707550048828],[113,-35,69,5.9557929039001465],[113,-35,70,5.957937717437744],[113,-35,71,5.9632954597473145],[113,-35,72,5.967661380767822],[113,-35,73,5.966158390045166],[113,-35,74,5.969226360321045],[113,-35,75,5.980562686920166],[113,-35,76,5.990850448608398],[113,-35,77,5.993145942687988],[113,-35,78,5.98264741897583],[113,-35,79,5.955428600311279],[113,-34,64,5.97165060043335],[113,-34,65,5.966513633728027],[113,-34,66,5.960428237915039],[113,-34,67,5.9564528465271],[113,-34,68,5.955707550048828],[113,-34,69,5.9557929039001465],[113,-34,70,5.957937717437744],[113,-34,71,5.9632954597473145],[113,-34,72,5.967661380767822],[113,-34,73,5.966158390045166],[113,-34,74,5.969226360321045],[113,-34,75,5.980562686920166],[113,-34,76,5.990850448608398],[113,-34,77,5.993145942687988],[113,-34,78,5.98264741897583],[113,-34,79,5.955428600311279],[113,-33,64,5.97165060043335],[113,-33,65,5.966513633728027],[113,-33,66,5.960428237915039],[113,-33,67,5.9564528465271],[113,-33,68,5.955707550048828],[113,-33,69,5.9557929039001465],[113,-33,70,5.957937717437744],[113,-33,71,5.9632954597473145],[113,-33,72,5.967661380767822],[113,-33,73,5.966158390045166],[113,-33,74,5.969226360321045],[113,-33,75,5.980562686920166],[113,-33,76,5.990850448608398],[113,-33,77,5.993145942687988],[113,-33,78,5.98264741897583],[113,-33,79,5.955428600311279],[113,-32,64,5.97165060043335],[113,-32,65,5.966513633728027],[113,-32,66,5.960428237915039],[113,-32,67,5.9564528465271],[113,-32,68,5.955707550048828],[113,-32,69,5.9557929039001465],[113,-32,70,5.957937717437744],[113,-32,71,5.9632954597473145],[113,-32,72,5.967661380767822],[113,-32,73,5.966158390045166],[113,-32,74,5.969226360321045],[113,-32,75,5.980562686920166],[113,-32,76,5.990850448608398],[113,-32,77,5.993145942687988],[113,-32,78,5.98264741897583],[113,-32,79,5.955428600311279],[113,-31,64,5.97165060043335],[113,-31,65,5.966513633728027],[113,-31,66,5.960428237915039],[113,-31,67,5.9564528465271],[113,-31,68,5.955707550048828],[113,-31,69,5.9557929039001465],[113,-31,70,5.957937717437744],[113,-31,71,5.9632954597473145],[113,-31,72,5.967661380767822],[113,-31,73,5.966158390045166],[113,-31,74,5.969226360321045],[113,-31,75,5.980562686920166],[113,-31,76,5.990850448608398],[113,-31,77,5.993145942687988],[113,-31,78,5.98264741897583],[113,-31,79,5.955428600311279],[113,-30,64,5.97165060043335],[113,-30,65,5.966513633728027],[113,-30,66,5.960428237915039],[113,-30,67,5.9564528465271],[113,-30,68,5.955707550048828],[113,-30,69,5.9557929039001465],[113,-30,70,5.957937717437744],[113,-30,71,5.9632954597473145],[113,-30,72,5.967661380767822],[113,-30,73,5.966158390045166],[113,-30,74,5.969226360321045],[113,-30,75,5.980562686920166],[113,-30,76,5.990850448608398],[113,-30,77,5.993145942687988],[113,-30,78,5.98264741897583],[113,-30,79,5.955428600311279],[113,-29,64,5.97165060043335],[113,-29,65,5.966513633728027],[113,-29,66,5.960428237915039],[113,-29,67,5.9564528465271],[113,-29,68,5.955707550048828],[113,-29,69,5.9557929039001465],[113,-29,70,5.957937717437744],[113,-29,71,5.9632954597473145],[113,-29,72,5.967661380767822],[113,-29,73,5.966158390045166],[113,-29,74,5.969226360321045],[113,-29,75,5.980562686920166],[113,-29,76,5.990850448608398],[113,-29,77,5.993145942687988],[113,-29,78,5.98264741897583],[113,-29,79,5.955428600311279],[113,-28,64,5.97165060043335],[113,-28,65,5.966513633728027],[113,-28,66,5.960428237915039],[113,-28,67,5.9564528465271],[113,-28,68,5.955707550048828],[113,-28,69,5.9557929039001465],[113,-28,70,5.957937717437744],[113,-28,71,5.9632954597473145],[113,-28,72,5.967661380767822],[113,-28,73,5.966158390045166],[113,-28,74,5.969226360321045],[113,-28,75,5.980562686920166],[113,-28,76,5.990850448608398],[113,-28,77,5.993145942687988],[113,-28,78,5.98264741897583],[113,-28,79,5.955428600311279],[113,-27,64,5.97165060043335],[113,-27,65,5.966513633728027],[113,-27,66,5.960428237915039],[113,-27,67,5.9564528465271],[113,-27,68,5.955707550048828],[113,-27,69,5.9557929039001465],[113,-27,70,5.957937717437744],[113,-27,71,5.9632954597473145],[113,-27,72,5.967661380767822],[113,-27,73,5.966158390045166],[113,-27,74,5.969226360321045],[113,-27,75,5.980562686920166],[113,-27,76,5.990850448608398],[113,-27,77,5.993145942687988],[113,-27,78,5.98264741897583],[113,-27,79,5.955428600311279],[113,-26,64,5.97165060043335],[113,-26,65,5.966513633728027],[113,-26,66,5.960428237915039],[113,-26,67,5.9564528465271],[113,-26,68,5.955707550048828],[113,-26,69,5.9557929039001465],[113,-26,70,5.957937717437744],[113,-26,71,5.9632954597473145],[113,-26,72,5.967661380767822],[113,-26,73,5.966158390045166],[113,-26,74,5.969226360321045],[113,-26,75,5.980562686920166],[113,-26,76,5.990850448608398],[113,-26,77,5.993145942687988],[113,-26,78,5.98264741897583],[113,-26,79,5.955428600311279],[113,-25,64,5.97165060043335],[113,-25,65,5.966513633728027],[113,-25,66,5.960428237915039],[113,-25,67,5.9564528465271],[113,-25,68,5.955707550048828],[113,-25,69,5.9557929039001465],[113,-25,70,5.957937717437744],[113,-25,71,5.9632954597473145],[113,-25,72,5.967661380767822],[113,-25,73,5.966158390045166],[113,-25,74,5.969226360321045],[113,-25,75,5.980562686920166],[113,-25,76,5.990850448608398],[113,-25,77,5.993145942687988],[113,-25,78,5.98264741897583],[113,-25,79,5.955428600311279],[113,-24,64,5.97165060043335],[113,-24,65,5.966513633728027],[113,-24,66,5.960428237915039],[113,-24,67,5.9564528465271],[113,-24,68,5.955707550048828],[113,-24,69,5.9557929039001465],[113,-24,70,5.957937717437744],[113,-24,71,5.9632954597473145],[113,-24,72,5.967661380767822],[113,-24,73,5.966158390045166],[113,-24,74,5.969226360321045],[113,-24,75,5.980562686920166],[113,-24,76,5.990850448608398],[113,-24,77,5.993145942687988],[113,-24,78,5.98264741897583],[113,-24,79,5.955428600311279],[113,-23,64,5.97165060043335],[113,-23,65,5.966513633728027],[113,-23,66,5.960428237915039],[113,-23,67,5.9564528465271],[113,-23,68,5.955707550048828],[113,-23,69,5.9557929039001465],[113,-23,70,5.957937717437744],[113,-23,71,5.9632954597473145],[113,-23,72,5.967661380767822],[113,-23,73,5.966158390045166],[113,-23,74,5.969226360321045],[113,-23,75,5.980562686920166],[113,-23,76,5.990850448608398],[113,-23,77,5.993145942687988],[113,-23,78,5.98264741897583],[113,-23,79,5.955428600311279],[113,-22,64,5.97165060043335],[113,-22,65,5.966513633728027],[113,-22,66,5.960428237915039],[113,-22,67,5.9564528465271],[113,-22,68,5.955707550048828],[113,-22,69,5.9557929039001465],[113,-22,70,5.957937717437744],[113,-22,71,5.9632954597473145],[113,-22,72,5.967661380767822],[113,-22,73,5.966158390045166],[113,-22,74,5.969226360321045],[113,-22,75,5.980562686920166],[113,-22,76,5.990850448608398],[113,-22,77,5.993145942687988],[113,-22,78,5.98264741897583],[113,-22,79,5.955428600311279],[113,-21,64,5.97165060043335],[113,-21,65,5.966513633728027],[113,-21,66,5.960428237915039],[113,-21,67,5.9564528465271],[113,-21,68,5.955707550048828],[113,-21,69,5.9557929039001465],[113,-21,70,5.957937717437744],[113,-21,71,5.9632954597473145],[113,-21,72,5.967661380767822],[113,-21,73,5.966158390045166],[113,-21,74,5.969226360321045],[113,-21,75,5.980562686920166],[113,-21,76,5.990850448608398],[113,-21,77,5.993145942687988],[113,-21,78,5.98264741897583],[113,-21,79,5.955428600311279],[113,-20,64,5.97165060043335],[113,-20,65,5.966513633728027],[113,-20,66,5.960428237915039],[113,-20,67,5.9564528465271],[113,-20,68,5.955707550048828],[113,-20,69,5.9557929039001465],[113,-20,70,5.957937717437744],[113,-20,71,5.9632954597473145],[113,-20,72,5.967661380767822],[113,-20,73,5.966158390045166],[113,-20,74,5.969226360321045],[113,-20,75,5.980562686920166],[113,-20,76,5.990850448608398],[113,-20,77,5.993145942687988],[113,-20,78,5.98264741897583],[113,-20,79,5.955428600311279],[113,-19,64,5.97165060043335],[113,-19,65,5.966513633728027],[113,-19,66,5.960428237915039],[113,-19,67,5.9564528465271],[113,-19,68,5.955707550048828],[113,-19,69,5.9557929039001465],[113,-19,70,5.957937717437744],[113,-19,71,5.9632954597473145],[113,-19,72,5.967661380767822],[113,-19,73,5.966158390045166],[113,-19,74,5.969226360321045],[113,-19,75,5.980562686920166],[113,-19,76,5.990850448608398],[113,-19,77,5.993145942687988],[113,-19,78,5.98264741897583],[113,-19,79,5.955428600311279],[113,-18,64,5.97165060043335],[113,-18,65,5.966513633728027],[113,-18,66,5.960428237915039],[113,-18,67,5.9564528465271],[113,-18,68,5.955707550048828],[113,-18,69,5.9557929039001465],[113,-18,70,5.957937717437744],[113,-18,71,5.9632954597473145],[113,-18,72,5.967661380767822],[113,-18,73,5.966158390045166],[113,-18,74,5.969226360321045],[113,-18,75,5.980562686920166],[113,-18,76,5.990850448608398],[113,-18,77,5.993145942687988],[113,-18,78,5.98264741897583],[113,-18,79,5.955428600311279],[113,-17,64,5.97165060043335],[113,-17,65,5.966513633728027],[113,-17,66,5.960428237915039],[113,-17,67,5.9564528465271],[113,-17,68,5.955707550048828],[113,-17,69,5.9557929039001465],[113,-17,70,5.957937717437744],[113,-17,71,5.9632954597473145],[113,-17,72,5.967661380767822],[113,-17,73,5.966158390045166],[113,-17,74,5.969226360321045],[113,-17,75,5.980562686920166],[113,-17,76,5.990850448608398],[113,-17,77,5.993145942687988],[113,-17,78,5.98264741897583],[113,-17,79,5.955428600311279],[113,-16,64,5.97165060043335],[113,-16,65,5.966513633728027],[113,-16,66,5.960428237915039],[113,-16,67,5.9564528465271],[113,-16,68,5.955707550048828],[113,-16,69,5.9557929039001465],[113,-16,70,5.957937717437744],[113,-16,71,5.9632954597473145],[113,-16,72,5.967661380767822],[113,-16,73,5.966158390045166],[113,-16,74,5.969226360321045],[113,-16,75,5.980562686920166],[113,-16,76,5.990850448608398],[113,-16,77,5.993145942687988],[113,-16,78,5.98264741897583],[113,-16,79,5.955428600311279],[113,-15,64,5.97165060043335],[113,-15,65,5.966513633728027],[113,-15,66,5.960428237915039],[113,-15,67,5.9564528465271],[113,-15,68,5.955707550048828],[113,-15,69,5.9557929039001465],[113,-15,70,5.957937717437744],[113,-15,71,5.9632954597473145],[113,-15,72,5.967661380767822],[113,-15,73,5.966158390045166],[113,-15,74,5.969226360321045],[113,-15,75,5.980562686920166],[113,-15,76,5.990850448608398],[113,-15,77,5.993145942687988],[113,-15,78,5.98264741897583],[113,-15,79,5.955428600311279],[113,-14,64,5.97165060043335],[113,-14,65,5.966513633728027],[113,-14,66,5.960428237915039],[113,-14,67,5.9564528465271],[113,-14,68,5.955707550048828],[113,-14,69,5.9557929039001465],[113,-14,70,5.957937717437744],[113,-14,71,5.9632954597473145],[113,-14,72,5.967661380767822],[113,-14,73,5.966158390045166],[113,-14,74,5.969226360321045],[113,-14,75,5.980562686920166],[113,-14,76,5.990850448608398],[113,-14,77,5.993145942687988],[113,-14,78,5.98264741897583],[113,-14,79,5.955428600311279],[113,-13,64,5.97165060043335],[113,-13,65,5.966513633728027],[113,-13,66,5.960428237915039],[113,-13,67,5.9564528465271],[113,-13,68,5.955707550048828],[113,-13,69,5.9557929039001465],[113,-13,70,5.957937717437744],[113,-13,71,5.9632954597473145],[113,-13,72,5.967661380767822],[113,-13,73,5.966158390045166],[113,-13,74,5.969226360321045],[113,-13,75,5.980562686920166],[113,-13,76,5.990850448608398],[113,-13,77,5.993145942687988],[113,-13,78,5.98264741897583],[113,-13,79,5.955428600311279],[113,-12,64,5.97165060043335],[113,-12,65,5.966513633728027],[113,-12,66,5.960428237915039],[113,-12,67,5.9564528465271],[113,-12,68,5.955707550048828],[113,-12,69,5.9557929039001465],[113,-12,70,5.957937717437744],[113,-12,71,5.9632954597473145],[113,-12,72,5.967661380767822],[113,-12,73,5.966158390045166],[113,-12,74,5.969226360321045],[113,-12,75,5.980562686920166],[113,-12,76,5.990850448608398],[113,-12,77,5.993145942687988],[113,-12,78,5.98264741897583],[113,-12,79,5.955428600311279],[113,-11,64,5.97165060043335],[113,-11,65,5.966513633728027],[113,-11,66,5.960428237915039],[113,-11,67,5.9564528465271],[113,-11,68,5.955707550048828],[113,-11,69,5.9557929039001465],[113,-11,70,5.957937717437744],[113,-11,71,5.9632954597473145],[113,-11,72,5.967661380767822],[113,-11,73,5.966158390045166],[113,-11,74,5.969226360321045],[113,-11,75,5.980562686920166],[113,-11,76,5.990850448608398],[113,-11,77,5.993145942687988],[113,-11,78,5.98264741897583],[113,-11,79,5.955428600311279],[113,-10,64,5.97165060043335],[113,-10,65,5.966513633728027],[113,-10,66,5.960428237915039],[113,-10,67,5.9564528465271],[113,-10,68,5.955707550048828],[113,-10,69,5.9557929039001465],[113,-10,70,5.957937717437744],[113,-10,71,5.9632954597473145],[113,-10,72,5.967661380767822],[113,-10,73,5.966158390045166],[113,-10,74,5.969226360321045],[113,-10,75,5.980562686920166],[113,-10,76,5.990850448608398],[113,-10,77,5.993145942687988],[113,-10,78,5.98264741897583],[113,-10,79,5.955428600311279],[113,-9,64,5.97165060043335],[113,-9,65,5.966513633728027],[113,-9,66,5.960428237915039],[113,-9,67,5.9564528465271],[113,-9,68,5.955707550048828],[113,-9,69,5.9557929039001465],[113,-9,70,5.957937717437744],[113,-9,71,5.9632954597473145],[113,-9,72,5.967661380767822],[113,-9,73,5.966158390045166],[113,-9,74,5.969226360321045],[113,-9,75,5.980562686920166],[113,-9,76,5.990850448608398],[113,-9,77,5.993145942687988],[113,-9,78,5.98264741897583],[113,-9,79,5.955428600311279],[113,-8,64,5.97165060043335],[113,-8,65,5.966513633728027],[113,-8,66,5.960428237915039],[113,-8,67,5.9564528465271],[113,-8,68,5.955707550048828],[113,-8,69,5.9557929039001465],[113,-8,70,5.957937717437744],[113,-8,71,5.9632954597473145],[113,-8,72,5.967661380767822],[113,-8,73,5.966158390045166],[113,-8,74,5.969226360321045],[113,-8,75,5.980562686920166],[113,-8,76,5.990850448608398],[113,-8,77,5.993145942687988],[113,-8,78,5.98264741897583],[113,-8,79,5.955428600311279],[113,-7,64,5.97165060043335],[113,-7,65,5.966513633728027],[113,-7,66,5.960428237915039],[113,-7,67,5.9564528465271],[113,-7,68,5.955707550048828],[113,-7,69,5.9557929039001465],[113,-7,70,5.957937717437744],[113,-7,71,5.9632954597473145],[113,-7,72,5.967661380767822],[113,-7,73,5.966158390045166],[113,-7,74,5.969226360321045],[113,-7,75,5.980562686920166],[113,-7,76,5.990850448608398],[113,-7,77,5.993145942687988],[113,-7,78,5.98264741897583],[113,-7,79,5.955428600311279],[113,-6,64,5.97165060043335],[113,-6,65,5.966513633728027],[113,-6,66,5.960428237915039],[113,-6,67,5.9564528465271],[113,-6,68,5.955707550048828],[113,-6,69,5.9557929039001465],[113,-6,70,5.957937717437744],[113,-6,71,5.9632954597473145],[113,-6,72,5.967661380767822],[113,-6,73,5.966158390045166],[113,-6,74,5.969226360321045],[113,-6,75,5.980562686920166],[113,-6,76,5.990850448608398],[113,-6,77,5.993145942687988],[113,-6,78,5.98264741897583],[113,-6,79,5.955428600311279],[113,-5,64,5.97165060043335],[113,-5,65,5.966513633728027],[113,-5,66,5.960428237915039],[113,-5,67,5.9564528465271],[113,-5,68,5.955707550048828],[113,-5,69,5.9557929039001465],[113,-5,70,5.957937717437744],[113,-5,71,5.9632954597473145],[113,-5,72,5.967661380767822],[113,-5,73,5.966158390045166],[113,-5,74,5.969226360321045],[113,-5,75,5.980562686920166],[113,-5,76,5.990850448608398],[113,-5,77,5.993145942687988],[113,-5,78,5.98264741897583],[113,-5,79,5.955428600311279],[113,-4,64,5.97165060043335],[113,-4,65,5.966513633728027],[113,-4,66,5.960428237915039],[113,-4,67,5.9564528465271],[113,-4,68,5.955707550048828],[113,-4,69,5.9557929039001465],[113,-4,70,5.957937717437744],[113,-4,71,5.9632954597473145],[113,-4,72,5.967661380767822],[113,-4,73,5.966158390045166],[113,-4,74,5.969226360321045],[113,-4,75,5.980562686920166],[113,-4,76,5.990850448608398],[113,-4,77,5.993145942687988],[113,-4,78,5.98264741897583],[113,-4,79,5.955428600311279],[113,-3,64,5.97165060043335],[113,-3,65,5.966513633728027],[113,-3,66,5.960428237915039],[113,-3,67,5.9564528465271],[113,-3,68,5.955707550048828],[113,-3,69,5.9557929039001465],[113,-3,70,5.957937717437744],[113,-3,71,5.9632954597473145],[113,-3,72,5.967661380767822],[113,-3,73,5.966158390045166],[113,-3,74,5.969226360321045],[113,-3,75,5.980562686920166],[113,-3,76,5.990850448608398],[113,-3,77,5.993145942687988],[113,-3,78,5.98264741897583],[113,-3,79,5.955428600311279],[113,-2,64,5.97165060043335],[113,-2,65,5.966513633728027],[113,-2,66,5.960428237915039],[113,-2,67,5.9564528465271],[113,-2,68,5.955707550048828],[113,-2,69,5.9557929039001465],[113,-2,70,5.957937717437744],[113,-2,71,5.9632954597473145],[113,-2,72,5.967661380767822],[113,-2,73,5.966158390045166],[113,-2,74,5.969226360321045],[113,-2,75,5.980562686920166],[113,-2,76,5.990850448608398],[113,-2,77,5.993145942687988],[113,-2,78,5.98264741897583],[113,-2,79,5.955428600311279],[113,-1,64,5.97165060043335],[113,-1,65,5.966513633728027],[113,-1,66,5.960428237915039],[113,-1,67,5.9564528465271],[113,-1,68,5.955707550048828],[113,-1,69,5.9557929039001465],[113,-1,70,5.957937717437744],[113,-1,71,5.9632954597473145],[113,-1,72,5.967661380767822],[113,-1,73,5.966158390045166],[113,-1,74,5.969226360321045],[113,-1,75,5.980562686920166],[113,-1,76,5.990850448608398],[113,-1,77,5.993145942687988],[113,-1,78,5.98264741897583],[113,-1,79,5.955428600311279],[113,0,64,5.97165060043335],[113,0,65,5.966513633728027],[113,0,66,5.960428237915039],[113,0,67,5.9564528465271],[113,0,68,5.955707550048828],[113,0,69,5.9557929039001465],[113,0,70,5.957937717437744],[113,0,71,5.9632954597473145],[113,0,72,5.967661380767822],[113,0,73,5.966158390045166],[113,0,74,5.969226360321045],[113,0,75,5.980562686920166],[113,0,76,5.990850448608398],[113,0,77,5.993145942687988],[113,0,78,5.98264741897583],[113,0,79,5.955428600311279],[113,1,64,5.97165060043335],[113,1,65,5.966513633728027],[113,1,66,5.960428237915039],[113,1,67,5.9564528465271],[113,1,68,5.955707550048828],[113,1,69,5.9557929039001465],[113,1,70,5.957937717437744],[113,1,71,5.9632954597473145],[113,1,72,5.967661380767822],[113,1,73,5.966158390045166],[113,1,74,5.969226360321045],[113,1,75,5.980562686920166],[113,1,76,5.990850448608398],[113,1,77,5.993145942687988],[113,1,78,5.98264741897583],[113,1,79,5.955428600311279],[113,2,64,5.97165060043335],[113,2,65,5.966513633728027],[113,2,66,5.960428237915039],[113,2,67,5.9564528465271],[113,2,68,5.955707550048828],[113,2,69,5.9557929039001465],[113,2,70,5.957937717437744],[113,2,71,5.9632954597473145],[113,2,72,5.967661380767822],[113,2,73,5.966158390045166],[113,2,74,5.969226360321045],[113,2,75,5.980562686920166],[113,2,76,5.990850448608398],[113,2,77,5.993145942687988],[113,2,78,5.98264741897583],[113,2,79,5.955428600311279],[113,3,64,5.97165060043335],[113,3,65,5.966513633728027],[113,3,66,5.960428237915039],[113,3,67,5.9564528465271],[113,3,68,5.955707550048828],[113,3,69,5.9557929039001465],[113,3,70,5.957937717437744],[113,3,71,5.9632954597473145],[113,3,72,5.967661380767822],[113,3,73,5.966158390045166],[113,3,74,5.969226360321045],[113,3,75,5.980562686920166],[113,3,76,5.990850448608398],[113,3,77,5.993145942687988],[113,3,78,5.98264741897583],[113,3,79,5.955428600311279],[113,4,64,5.97165060043335],[113,4,65,5.966513633728027],[113,4,66,5.960428237915039],[113,4,67,5.9564528465271],[113,4,68,5.955707550048828],[113,4,69,5.9557929039001465],[113,4,70,5.957937717437744],[113,4,71,5.9632954597473145],[113,4,72,5.967661380767822],[113,4,73,5.966158390045166],[113,4,74,5.969226360321045],[113,4,75,5.980562686920166],[113,4,76,5.990850448608398],[113,4,77,5.993145942687988],[113,4,78,5.98264741897583],[113,4,79,5.955428600311279],[113,5,64,5.97165060043335],[113,5,65,5.966513633728027],[113,5,66,5.960428237915039],[113,5,67,5.9564528465271],[113,5,68,5.955707550048828],[113,5,69,5.9557929039001465],[113,5,70,5.957937717437744],[113,5,71,5.9632954597473145],[113,5,72,5.967661380767822],[113,5,73,5.966158390045166],[113,5,74,5.969226360321045],[113,5,75,5.980562686920166],[113,5,76,5.990850448608398],[113,5,77,5.993145942687988],[113,5,78,5.98264741897583],[113,5,79,5.955428600311279],[113,6,64,5.97165060043335],[113,6,65,5.966513633728027],[113,6,66,5.960428237915039],[113,6,67,5.9564528465271],[113,6,68,5.955707550048828],[113,6,69,5.9557929039001465],[113,6,70,5.957937717437744],[113,6,71,5.9632954597473145],[113,6,72,5.967661380767822],[113,6,73,5.966158390045166],[113,6,74,5.969226360321045],[113,6,75,5.980562686920166],[113,6,76,5.990850448608398],[113,6,77,5.993145942687988],[113,6,78,5.98264741897583],[113,6,79,5.955428600311279],[113,7,64,5.97165060043335],[113,7,65,5.966513633728027],[113,7,66,5.960428237915039],[113,7,67,5.9564528465271],[113,7,68,5.955707550048828],[113,7,69,5.9557929039001465],[113,7,70,5.957937717437744],[113,7,71,5.9632954597473145],[113,7,72,5.967661380767822],[113,7,73,5.966158390045166],[113,7,74,5.969226360321045],[113,7,75,5.980562686920166],[113,7,76,5.990850448608398],[113,7,77,5.993145942687988],[113,7,78,5.98264741897583],[113,7,79,5.955428600311279],[113,8,64,5.97165060043335],[113,8,65,5.966513633728027],[113,8,66,5.960428237915039],[113,8,67,5.9564528465271],[113,8,68,5.955707550048828],[113,8,69,5.9557929039001465],[113,8,70,5.957937717437744],[113,8,71,5.9632954597473145],[113,8,72,5.967661380767822],[113,8,73,5.966158390045166],[113,8,74,5.969226360321045],[113,8,75,5.980562686920166],[113,8,76,5.990850448608398],[113,8,77,5.993145942687988],[113,8,78,5.98264741897583],[113,8,79,5.955428600311279],[113,9,64,5.97165060043335],[113,9,65,5.966513633728027],[113,9,66,5.960428237915039],[113,9,67,5.9564528465271],[113,9,68,5.955707550048828],[113,9,69,5.9557929039001465],[113,9,70,5.957937717437744],[113,9,71,5.9632954597473145],[113,9,72,5.967661380767822],[113,9,73,5.966158390045166],[113,9,74,5.969226360321045],[113,9,75,5.980562686920166],[113,9,76,5.990850448608398],[113,9,77,5.993145942687988],[113,9,78,5.98264741897583],[113,9,79,5.955428600311279],[113,10,64,5.97165060043335],[113,10,65,5.966513633728027],[113,10,66,5.960428237915039],[113,10,67,5.9564528465271],[113,10,68,5.955707550048828],[113,10,69,5.9557929039001465],[113,10,70,5.957937717437744],[113,10,71,5.9632954597473145],[113,10,72,5.967661380767822],[113,10,73,5.966158390045166],[113,10,74,5.969226360321045],[113,10,75,5.980562686920166],[113,10,76,5.990850448608398],[113,10,77,5.993145942687988],[113,10,78,5.98264741897583],[113,10,79,5.955428600311279],[113,11,64,5.97165060043335],[113,11,65,5.966513633728027],[113,11,66,5.960428237915039],[113,11,67,5.9564528465271],[113,11,68,5.955707550048828],[113,11,69,5.9557929039001465],[113,11,70,5.957937717437744],[113,11,71,5.9632954597473145],[113,11,72,5.967661380767822],[113,11,73,5.966158390045166],[113,11,74,5.969226360321045],[113,11,75,5.980562686920166],[113,11,76,5.990850448608398],[113,11,77,5.993145942687988],[113,11,78,5.98264741897583],[113,11,79,5.955428600311279],[113,12,64,5.97165060043335],[113,12,65,5.966513633728027],[113,12,66,5.960428237915039],[113,12,67,5.9564528465271],[113,12,68,5.955707550048828],[113,12,69,5.9557929039001465],[113,12,70,5.957937717437744],[113,12,71,5.9632954597473145],[113,12,72,5.967661380767822],[113,12,73,5.966158390045166],[113,12,74,5.969226360321045],[113,12,75,5.980562686920166],[113,12,76,5.990850448608398],[113,12,77,5.993145942687988],[113,12,78,5.98264741897583],[113,12,79,5.955428600311279],[113,13,64,5.97165060043335],[113,13,65,5.966513633728027],[113,13,66,5.960428237915039],[113,13,67,5.9564528465271],[113,13,68,5.955707550048828],[113,13,69,5.9557929039001465],[113,13,70,5.957937717437744],[113,13,71,5.9632954597473145],[113,13,72,5.967661380767822],[113,13,73,5.966158390045166],[113,13,74,5.969226360321045],[113,13,75,5.980562686920166],[113,13,76,5.990850448608398],[113,13,77,5.993145942687988],[113,13,78,5.98264741897583],[113,13,79,5.955428600311279],[113,14,64,5.97165060043335],[113,14,65,5.966513633728027],[113,14,66,5.960428237915039],[113,14,67,5.9564528465271],[113,14,68,5.955707550048828],[113,14,69,5.9557929039001465],[113,14,70,5.957937717437744],[113,14,71,5.9632954597473145],[113,14,72,5.967661380767822],[113,14,73,5.966158390045166],[113,14,74,5.969226360321045],[113,14,75,5.980562686920166],[113,14,76,5.990850448608398],[113,14,77,5.993145942687988],[113,14,78,5.98264741897583],[113,14,79,5.955428600311279],[113,15,64,5.97165060043335],[113,15,65,5.966513633728027],[113,15,66,5.960428237915039],[113,15,67,5.9564528465271],[113,15,68,5.955707550048828],[113,15,69,5.9557929039001465],[113,15,70,5.957937717437744],[113,15,71,5.9632954597473145],[113,15,72,5.967661380767822],[113,15,73,5.966158390045166],[113,15,74,5.969226360321045],[113,15,75,5.980562686920166],[113,15,76,5.990850448608398],[113,15,77,5.993145942687988],[113,15,78,5.98264741897583],[113,15,79,5.955428600311279],[113,16,64,5.97165060043335],[113,16,65,5.966513633728027],[113,16,66,5.960428237915039],[113,16,67,5.9564528465271],[113,16,68,5.955707550048828],[113,16,69,5.9557929039001465],[113,16,70,5.957937717437744],[113,16,71,5.9632954597473145],[113,16,72,5.967661380767822],[113,16,73,5.966158390045166],[113,16,74,5.969226360321045],[113,16,75,5.980562686920166],[113,16,76,5.990850448608398],[113,16,77,5.993145942687988],[113,16,78,5.98264741897583],[113,16,79,5.955428600311279],[113,17,64,5.97165060043335],[113,17,65,5.966513633728027],[113,17,66,5.960428237915039],[113,17,67,5.9564528465271],[113,17,68,5.955707550048828],[113,17,69,5.9557929039001465],[113,17,70,5.957937717437744],[113,17,71,5.9632954597473145],[113,17,72,5.967661380767822],[113,17,73,5.966158390045166],[113,17,74,5.969226360321045],[113,17,75,5.980562686920166],[113,17,76,5.990850448608398],[113,17,77,5.993145942687988],[113,17,78,5.98264741897583],[113,17,79,5.955428600311279],[113,18,64,5.97165060043335],[113,18,65,5.966513633728027],[113,18,66,5.960428237915039],[113,18,67,5.9564528465271],[113,18,68,5.955707550048828],[113,18,69,5.9557929039001465],[113,18,70,5.957937717437744],[113,18,71,5.9632954597473145],[113,18,72,5.967661380767822],[113,18,73,5.966158390045166],[113,18,74,5.969226360321045],[113,18,75,5.980562686920166],[113,18,76,5.990850448608398],[113,18,77,5.993145942687988],[113,18,78,5.98264741897583],[113,18,79,5.955428600311279],[113,19,64,5.97165060043335],[113,19,65,5.966513633728027],[113,19,66,5.960428237915039],[113,19,67,5.9564528465271],[113,19,68,5.955707550048828],[113,19,69,5.9557929039001465],[113,19,70,5.957937717437744],[113,19,71,5.9632954597473145],[113,19,72,5.967661380767822],[113,19,73,5.966158390045166],[113,19,74,5.969226360321045],[113,19,75,5.980562686920166],[113,19,76,5.990850448608398],[113,19,77,5.993145942687988],[113,19,78,5.98264741897583],[113,19,79,5.955428600311279],[113,20,64,5.97165060043335],[113,20,65,5.966513633728027],[113,20,66,5.960428237915039],[113,20,67,5.9564528465271],[113,20,68,5.955707550048828],[113,20,69,5.9557929039001465],[113,20,70,5.957937717437744],[113,20,71,5.9632954597473145],[113,20,72,5.967661380767822],[113,20,73,5.966158390045166],[113,20,74,5.969226360321045],[113,20,75,5.980562686920166],[113,20,76,5.990850448608398],[113,20,77,5.993145942687988],[113,20,78,5.98264741897583],[113,20,79,5.955428600311279],[113,21,64,5.97165060043335],[113,21,65,5.966513633728027],[113,21,66,5.960428237915039],[113,21,67,5.9564528465271],[113,21,68,5.955707550048828],[113,21,69,5.9557929039001465],[113,21,70,5.957937717437744],[113,21,71,5.9632954597473145],[113,21,72,5.967661380767822],[113,21,73,5.966158390045166],[113,21,74,5.969226360321045],[113,21,75,5.980562686920166],[113,21,76,5.990850448608398],[113,21,77,5.993145942687988],[113,21,78,5.98264741897583],[113,21,79,5.955428600311279],[113,22,64,5.97165060043335],[113,22,65,5.966513633728027],[113,22,66,5.960428237915039],[113,22,67,5.9564528465271],[113,22,68,5.955707550048828],[113,22,69,5.9557929039001465],[113,22,70,5.957937717437744],[113,22,71,5.9632954597473145],[113,22,72,5.967661380767822],[113,22,73,5.966158390045166],[113,22,74,5.969226360321045],[113,22,75,5.980562686920166],[113,22,76,5.990850448608398],[113,22,77,5.993145942687988],[113,22,78,5.98264741897583],[113,22,79,5.955428600311279],[113,23,64,5.97165060043335],[113,23,65,5.966513633728027],[113,23,66,5.960428237915039],[113,23,67,5.9564528465271],[113,23,68,5.955707550048828],[113,23,69,5.9557929039001465],[113,23,70,5.957937717437744],[113,23,71,5.9632954597473145],[113,23,72,5.967661380767822],[113,23,73,5.966158390045166],[113,23,74,5.969226360321045],[113,23,75,5.980562686920166],[113,23,76,5.990850448608398],[113,23,77,5.993145942687988],[113,23,78,5.98264741897583],[113,23,79,5.955428600311279],[113,24,64,5.97165060043335],[113,24,65,5.966513633728027],[113,24,66,5.960428237915039],[113,24,67,5.9564528465271],[113,24,68,5.955707550048828],[113,24,69,5.9557929039001465],[113,24,70,5.957937717437744],[113,24,71,5.9632954597473145],[113,24,72,5.967661380767822],[113,24,73,5.966158390045166],[113,24,74,5.969226360321045],[113,24,75,5.980562686920166],[113,24,76,5.990850448608398],[113,24,77,5.993145942687988],[113,24,78,5.98264741897583],[113,24,79,5.955428600311279],[113,25,64,5.97165060043335],[113,25,65,5.966513633728027],[113,25,66,5.960428237915039],[113,25,67,5.9564528465271],[113,25,68,5.955707550048828],[113,25,69,5.9557929039001465],[113,25,70,5.957937717437744],[113,25,71,5.9632954597473145],[113,25,72,5.967661380767822],[113,25,73,5.966158390045166],[113,25,74,5.969226360321045],[113,25,75,5.980562686920166],[113,25,76,5.990850448608398],[113,25,77,5.993145942687988],[113,25,78,5.98264741897583],[113,25,79,5.955428600311279],[113,26,64,5.97165060043335],[113,26,65,5.966513633728027],[113,26,66,5.960428237915039],[113,26,67,5.9564528465271],[113,26,68,5.955707550048828],[113,26,69,5.9557929039001465],[113,26,70,5.957937717437744],[113,26,71,5.9632954597473145],[113,26,72,5.967661380767822],[113,26,73,5.966158390045166],[113,26,74,5.969226360321045],[113,26,75,5.980562686920166],[113,26,76,5.990850448608398],[113,26,77,5.993145942687988],[113,26,78,5.98264741897583],[113,26,79,5.955428600311279],[113,27,64,5.97165060043335],[113,27,65,5.966513633728027],[113,27,66,5.960428237915039],[113,27,67,5.9564528465271],[113,27,68,5.955707550048828],[113,27,69,5.9557929039001465],[113,27,70,5.957937717437744],[113,27,71,5.9632954597473145],[113,27,72,5.967661380767822],[113,27,73,5.966158390045166],[113,27,74,5.969226360321045],[113,27,75,5.980562686920166],[113,27,76,5.990850448608398],[113,27,77,5.993145942687988],[113,27,78,5.98264741897583],[113,27,79,5.955428600311279],[113,28,64,5.97165060043335],[113,28,65,5.966513633728027],[113,28,66,5.960428237915039],[113,28,67,5.9564528465271],[113,28,68,5.955707550048828],[113,28,69,5.9557929039001465],[113,28,70,5.957937717437744],[113,28,71,5.9632954597473145],[113,28,72,5.967661380767822],[113,28,73,5.966158390045166],[113,28,74,5.969226360321045],[113,28,75,5.980562686920166],[113,28,76,5.990850448608398],[113,28,77,5.993145942687988],[113,28,78,5.98264741897583],[113,28,79,5.955428600311279],[113,29,64,5.97165060043335],[113,29,65,5.966513633728027],[113,29,66,5.960428237915039],[113,29,67,5.9564528465271],[113,29,68,5.955707550048828],[113,29,69,5.9557929039001465],[113,29,70,5.957937717437744],[113,29,71,5.9632954597473145],[113,29,72,5.967661380767822],[113,29,73,5.966158390045166],[113,29,74,5.969226360321045],[113,29,75,5.980562686920166],[113,29,76,5.990850448608398],[113,29,77,5.993145942687988],[113,29,78,5.98264741897583],[113,29,79,5.955428600311279],[113,30,64,5.97165060043335],[113,30,65,5.966513633728027],[113,30,66,5.960428237915039],[113,30,67,5.9564528465271],[113,30,68,5.955707550048828],[113,30,69,5.9557929039001465],[113,30,70,5.957937717437744],[113,30,71,5.9632954597473145],[113,30,72,5.967661380767822],[113,30,73,5.966158390045166],[113,30,74,5.969226360321045],[113,30,75,5.980562686920166],[113,30,76,5.990850448608398],[113,30,77,5.993145942687988],[113,30,78,5.98264741897583],[113,30,79,5.955428600311279],[113,31,64,5.97165060043335],[113,31,65,5.966513633728027],[113,31,66,5.960428237915039],[113,31,67,5.9564528465271],[113,31,68,5.955707550048828],[113,31,69,5.9557929039001465],[113,31,70,5.957937717437744],[113,31,71,5.9632954597473145],[113,31,72,5.967661380767822],[113,31,73,5.966158390045166],[113,31,74,5.969226360321045],[113,31,75,5.980562686920166],[113,31,76,5.990850448608398],[113,31,77,5.993145942687988],[113,31,78,5.98264741897583],[113,31,79,5.955428600311279],[113,32,64,5.97165060043335],[113,32,65,5.966513633728027],[113,32,66,5.960428237915039],[113,32,67,5.9564528465271],[113,32,68,5.955707550048828],[113,32,69,5.9557929039001465],[113,32,70,5.957937717437744],[113,32,71,5.9632954597473145],[113,32,72,5.967661380767822],[113,32,73,5.966158390045166],[113,32,74,5.969226360321045],[113,32,75,5.980562686920166],[113,32,76,5.990850448608398],[113,32,77,5.993145942687988],[113,32,78,5.98264741897583],[113,32,79,5.955428600311279],[113,33,64,5.97165060043335],[113,33,65,5.966513633728027],[113,33,66,5.960428237915039],[113,33,67,5.9564528465271],[113,33,68,5.955707550048828],[113,33,69,5.9557929039001465],[113,33,70,5.957937717437744],[113,33,71,5.9632954597473145],[113,33,72,5.967661380767822],[113,33,73,5.966158390045166],[113,33,74,5.969226360321045],[113,33,75,5.980562686920166],[113,33,76,5.990850448608398],[113,33,77,5.993145942687988],[113,33,78,5.98264741897583],[113,33,79,5.955428600311279],[113,34,64,5.97165060043335],[113,34,65,5.966513633728027],[113,34,66,5.960428237915039],[113,34,67,5.9564528465271],[113,34,68,5.955707550048828],[113,34,69,5.9557929039001465],[113,34,70,5.957937717437744],[113,34,71,5.9632954597473145],[113,34,72,5.967661380767822],[113,34,73,5.966158390045166],[113,34,74,5.969226360321045],[113,34,75,5.980562686920166],[113,34,76,5.990850448608398],[113,34,77,5.993145942687988],[113,34,78,5.98264741897583],[113,34,79,5.955428600311279],[113,35,64,5.97165060043335],[113,35,65,5.966513633728027],[113,35,66,5.960428237915039],[113,35,67,5.9564528465271],[113,35,68,5.955707550048828],[113,35,69,5.9557929039001465],[113,35,70,5.957937717437744],[113,35,71,5.9632954597473145],[113,35,72,5.967661380767822],[113,35,73,5.966158390045166],[113,35,74,5.969226360321045],[113,35,75,5.980562686920166],[113,35,76,5.990850448608398],[113,35,77,5.993145942687988],[113,35,78,5.98264741897583],[113,35,79,5.955428600311279],[113,36,64,5.97165060043335],[113,36,65,5.966513633728027],[113,36,66,5.960428237915039],[113,36,67,5.9564528465271],[113,36,68,5.955707550048828],[113,36,69,5.9557929039001465],[113,36,70,5.957937717437744],[113,36,71,5.9632954597473145],[113,36,72,5.967661380767822],[113,36,73,5.966158390045166],[113,36,74,5.969226360321045],[113,36,75,5.980562686920166],[113,36,76,5.990850448608398],[113,36,77,5.993145942687988],[113,36,78,5.98264741897583],[113,36,79,5.955428600311279],[113,37,64,5.97165060043335],[113,37,65,5.966513633728027],[113,37,66,5.960428237915039],[113,37,67,5.9564528465271],[113,37,68,5.955707550048828],[113,37,69,5.9557929039001465],[113,37,70,5.957937717437744],[113,37,71,5.9632954597473145],[113,37,72,5.967661380767822],[113,37,73,5.966158390045166],[113,37,74,5.969226360321045],[113,37,75,5.980562686920166],[113,37,76,5.990850448608398],[113,37,77,5.993145942687988],[113,37,78,5.98264741897583],[113,37,79,5.955428600311279],[113,38,64,5.97165060043335],[113,38,65,5.966513633728027],[113,38,66,5.960428237915039],[113,38,67,5.9564528465271],[113,38,68,5.955707550048828],[113,38,69,5.9557929039001465],[113,38,70,5.957937717437744],[113,38,71,5.9632954597473145],[113,38,72,5.967661380767822],[113,38,73,5.966158390045166],[113,38,74,5.969226360321045],[113,38,75,5.980562686920166],[113,38,76,5.990850448608398],[113,38,77,5.993145942687988],[113,38,78,5.98264741897583],[113,38,79,5.955428600311279],[113,39,64,5.97165060043335],[113,39,65,5.966513633728027],[113,39,66,5.960428237915039],[113,39,67,5.9564528465271],[113,39,68,5.955707550048828],[113,39,69,5.9557929039001465],[113,39,70,5.957937717437744],[113,39,71,5.9632954597473145],[113,39,72,5.967661380767822],[113,39,73,5.966158390045166],[113,39,74,5.969226360321045],[113,39,75,5.980562686920166],[113,39,76,5.990850448608398],[113,39,77,5.993145942687988],[113,39,78,5.98264741897583],[113,39,79,5.955428600311279],[113,40,64,5.97165060043335],[113,40,65,5.966513633728027],[113,40,66,5.960428237915039],[113,40,67,5.9564528465271],[113,40,68,5.955707550048828],[113,40,69,5.9557929039001465],[113,40,70,5.957937717437744],[113,40,71,5.9632954597473145],[113,40,72,5.967661380767822],[113,40,73,5.966158390045166],[113,40,74,5.969226360321045],[113,40,75,5.980562686920166],[113,40,76,5.990850448608398],[113,40,77,5.993145942687988],[113,40,78,5.98264741897583],[113,40,79,5.955428600311279],[113,41,64,5.97165060043335],[113,41,65,5.966513633728027],[113,41,66,5.960428237915039],[113,41,67,5.9564528465271],[113,41,68,5.955707550048828],[113,41,69,5.9557929039001465],[113,41,70,5.957937717437744],[113,41,71,5.9632954597473145],[113,41,72,5.967661380767822],[113,41,73,5.966158390045166],[113,41,74,5.969226360321045],[113,41,75,5.980562686920166],[113,41,76,5.990850448608398],[113,41,77,5.993145942687988],[113,41,78,5.98264741897583],[113,41,79,5.955428600311279],[113,42,64,5.97165060043335],[113,42,65,5.966513633728027],[113,42,66,5.960428237915039],[113,42,67,5.9564528465271],[113,42,68,5.955707550048828],[113,42,69,5.9557929039001465],[113,42,70,5.957937717437744],[113,42,71,5.9632954597473145],[113,42,72,5.967661380767822],[113,42,73,5.966158390045166],[113,42,74,5.969226360321045],[113,42,75,5.980562686920166],[113,42,76,5.990850448608398],[113,42,77,5.993145942687988],[113,42,78,5.98264741897583],[113,42,79,5.955428600311279],[113,43,64,5.97165060043335],[113,43,65,5.966513633728027],[113,43,66,5.960428237915039],[113,43,67,5.9564528465271],[113,43,68,5.955707550048828],[113,43,69,5.9557929039001465],[113,43,70,5.957937717437744],[113,43,71,5.9632954597473145],[113,43,72,5.967661380767822],[113,43,73,5.966158390045166],[113,43,74,5.969226360321045],[113,43,75,5.980562686920166],[113,43,76,5.990850448608398],[113,43,77,5.993145942687988],[113,43,78,5.98264741897583],[113,43,79,5.955428600311279],[113,44,64,5.97165060043335],[113,44,65,5.966513633728027],[113,44,66,5.960428237915039],[113,44,67,5.9564528465271],[113,44,68,5.955707550048828],[113,44,69,5.9557929039001465],[113,44,70,5.957937717437744],[113,44,71,5.9632954597473145],[113,44,72,5.967661380767822],[113,44,73,5.966158390045166],[113,44,74,5.969226360321045],[113,44,75,5.980562686920166],[113,44,76,5.990850448608398],[113,44,77,5.993145942687988],[113,44,78,5.98264741897583],[113,44,79,5.955428600311279],[113,45,64,5.97165060043335],[113,45,65,5.966513633728027],[113,45,66,5.960428237915039],[113,45,67,5.9564528465271],[113,45,68,5.955707550048828],[113,45,69,5.9557929039001465],[113,45,70,5.957937717437744],[113,45,71,5.9632954597473145],[113,45,72,5.967661380767822],[113,45,73,5.966158390045166],[113,45,74,5.969226360321045],[113,45,75,5.980562686920166],[113,45,76,5.990850448608398],[113,45,77,5.993145942687988],[113,45,78,5.98264741897583],[113,45,79,5.955428600311279],[113,46,64,5.97165060043335],[113,46,65,5.966513633728027],[113,46,66,5.960428237915039],[113,46,67,5.9564528465271],[113,46,68,5.955707550048828],[113,46,69,5.9557929039001465],[113,46,70,5.957937717437744],[113,46,71,5.9632954597473145],[113,46,72,5.967661380767822],[113,46,73,5.966158390045166],[113,46,74,5.969226360321045],[113,46,75,5.980562686920166],[113,46,76,5.990850448608398],[113,46,77,5.993145942687988],[113,46,78,5.98264741897583],[113,46,79,5.955428600311279],[113,47,64,5.97165060043335],[113,47,65,5.966513633728027],[113,47,66,5.960428237915039],[113,47,67,5.9564528465271],[113,47,68,5.955707550048828],[113,47,69,5.9557929039001465],[113,47,70,5.957937717437744],[113,47,71,5.9632954597473145],[113,47,72,5.967661380767822],[113,47,73,5.966158390045166],[113,47,74,5.969226360321045],[113,47,75,5.980562686920166],[113,47,76,5.990850448608398],[113,47,77,5.993145942687988],[113,47,78,5.98264741897583],[113,47,79,5.955428600311279],[113,48,64,5.97165060043335],[113,48,65,5.966513633728027],[113,48,66,5.960428237915039],[113,48,67,5.9564528465271],[113,48,68,5.955707550048828],[113,48,69,5.9557929039001465],[113,48,70,5.957937717437744],[113,48,71,5.9632954597473145],[113,48,72,5.967661380767822],[113,48,73,5.966158390045166],[113,48,74,5.969226360321045],[113,48,75,5.980562686920166],[113,48,76,5.990850448608398],[113,48,77,5.993145942687988],[113,48,78,5.98264741897583],[113,48,79,5.955428600311279],[113,49,64,5.97165060043335],[113,49,65,5.966513633728027],[113,49,66,5.960428237915039],[113,49,67,5.9564528465271],[113,49,68,5.955707550048828],[113,49,69,5.9557929039001465],[113,49,70,5.957937717437744],[113,49,71,5.9632954597473145],[113,49,72,5.967661380767822],[113,49,73,5.966158390045166],[113,49,74,5.969226360321045],[113,49,75,5.980562686920166],[113,49,76,5.990850448608398],[113,49,77,5.993145942687988],[113,49,78,5.98264741897583],[113,49,79,5.955428600311279],[113,50,64,5.97165060043335],[113,50,65,5.966513633728027],[113,50,66,5.960428237915039],[113,50,67,5.9564528465271],[113,50,68,5.955707550048828],[113,50,69,5.9557929039001465],[113,50,70,5.957937717437744],[113,50,71,5.9632954597473145],[113,50,72,5.967661380767822],[113,50,73,5.966158390045166],[113,50,74,5.969226360321045],[113,50,75,5.980562686920166],[113,50,76,5.990850448608398],[113,50,77,5.993145942687988],[113,50,78,5.98264741897583],[113,50,79,5.955428600311279],[113,51,64,5.97165060043335],[113,51,65,5.966513633728027],[113,51,66,5.960428237915039],[113,51,67,5.9564528465271],[113,51,68,5.955707550048828],[113,51,69,5.9557929039001465],[113,51,70,5.957937717437744],[113,51,71,5.9632954597473145],[113,51,72,5.967661380767822],[113,51,73,5.966158390045166],[113,51,74,5.969226360321045],[113,51,75,5.980562686920166],[113,51,76,5.990850448608398],[113,51,77,5.993145942687988],[113,51,78,5.98264741897583],[113,51,79,5.955428600311279],[113,52,64,5.97165060043335],[113,52,65,5.966513633728027],[113,52,66,5.960428237915039],[113,52,67,5.9564528465271],[113,52,68,5.955707550048828],[113,52,69,5.9557929039001465],[113,52,70,5.957937717437744],[113,52,71,5.9632954597473145],[113,52,72,5.967661380767822],[113,52,73,5.966158390045166],[113,52,74,5.969226360321045],[113,52,75,5.980562686920166],[113,52,76,5.990850448608398],[113,52,77,5.993145942687988],[113,52,78,5.98264741897583],[113,52,79,5.955428600311279],[113,53,64,5.97165060043335],[113,53,65,5.966513633728027],[113,53,66,5.960428237915039],[113,53,67,5.9564528465271],[113,53,68,5.955707550048828],[113,53,69,5.9557929039001465],[113,53,70,5.957937717437744],[113,53,71,5.9632954597473145],[113,53,72,5.967661380767822],[113,53,73,5.966158390045166],[113,53,74,5.969226360321045],[113,53,75,5.980562686920166],[113,53,76,5.990850448608398],[113,53,77,5.993145942687988],[113,53,78,5.98264741897583],[113,53,79,5.955428600311279],[113,54,64,5.97165060043335],[113,54,65,5.966513633728027],[113,54,66,5.960428237915039],[113,54,67,5.9564528465271],[113,54,68,5.955707550048828],[113,54,69,5.9557929039001465],[113,54,70,5.957937717437744],[113,54,71,5.9632954597473145],[113,54,72,5.967661380767822],[113,54,73,5.966158390045166],[113,54,74,5.969226360321045],[113,54,75,5.980562686920166],[113,54,76,5.990850448608398],[113,54,77,5.993145942687988],[113,54,78,5.98264741897583],[113,54,79,5.955428600311279],[113,55,64,5.97165060043335],[113,55,65,5.966513633728027],[113,55,66,5.960428237915039],[113,55,67,5.9564528465271],[113,55,68,5.955707550048828],[113,55,69,5.9557929039001465],[113,55,70,5.957937717437744],[113,55,71,5.9632954597473145],[113,55,72,5.967661380767822],[113,55,73,5.966158390045166],[113,55,74,5.969226360321045],[113,55,75,5.980562686920166],[113,55,76,5.990850448608398],[113,55,77,5.993145942687988],[113,55,78,5.98264741897583],[113,55,79,5.955428600311279],[113,56,64,5.97165060043335],[113,56,65,5.966513633728027],[113,56,66,5.960428237915039],[113,56,67,5.9564528465271],[113,56,68,5.955707550048828],[113,56,69,5.9557929039001465],[113,56,70,5.957937717437744],[113,56,71,5.9632954597473145],[113,56,72,5.967661380767822],[113,56,73,5.966158390045166],[113,56,74,5.969226360321045],[113,56,75,5.980562686920166],[113,56,76,5.990850448608398],[113,56,77,5.993145942687988],[113,56,78,5.98264741897583],[113,56,79,5.955428600311279],[113,57,64,5.97165060043335],[113,57,65,5.966513633728027],[113,57,66,5.960428237915039],[113,57,67,5.9564528465271],[113,57,68,5.955707550048828],[113,57,69,5.9557929039001465],[113,57,70,5.957937717437744],[113,57,71,5.9632954597473145],[113,57,72,5.967661380767822],[113,57,73,5.966158390045166],[113,57,74,5.969226360321045],[113,57,75,5.980562686920166],[113,57,76,5.990850448608398],[113,57,77,5.993145942687988],[113,57,78,5.98264741897583],[113,57,79,5.955428600311279],[113,58,64,5.97165060043335],[113,58,65,5.966513633728027],[113,58,66,5.960428237915039],[113,58,67,5.9564528465271],[113,58,68,5.955707550048828],[113,58,69,5.9557929039001465],[113,58,70,5.957937717437744],[113,58,71,5.9632954597473145],[113,58,72,5.967661380767822],[113,58,73,5.966158390045166],[113,58,74,5.969226360321045],[113,58,75,5.980562686920166],[113,58,76,5.990850448608398],[113,58,77,5.993145942687988],[113,58,78,5.98264741897583],[113,58,79,5.955428600311279],[113,59,64,5.97165060043335],[113,59,65,5.966513633728027],[113,59,66,5.960428237915039],[113,59,67,5.9564528465271],[113,59,68,5.955707550048828],[113,59,69,5.9557929039001465],[113,59,70,5.957937717437744],[113,59,71,5.9632954597473145],[113,59,72,5.967661380767822],[113,59,73,5.966158390045166],[113,59,74,5.969226360321045],[113,59,75,5.980562686920166],[113,59,76,5.990850448608398],[113,59,77,5.993145942687988],[113,59,78,5.98264741897583],[113,59,79,5.955428600311279],[113,60,64,5.97165060043335],[113,60,65,5.966513633728027],[113,60,66,5.960428237915039],[113,60,67,5.9564528465271],[113,60,68,5.955707550048828],[113,60,69,5.9557929039001465],[113,60,70,5.957937717437744],[113,60,71,5.9632954597473145],[113,60,72,5.967661380767822],[113,60,73,5.966158390045166],[113,60,74,5.969226360321045],[113,60,75,5.980562686920166],[113,60,76,5.990850448608398],[113,60,77,5.993145942687988],[113,60,78,5.98264741897583],[113,60,79,5.955428600311279],[113,61,64,5.97165060043335],[113,61,65,5.966513633728027],[113,61,66,5.960428237915039],[113,61,67,5.9564528465271],[113,61,68,5.955707550048828],[113,61,69,5.9557929039001465],[113,61,70,5.957937717437744],[113,61,71,5.9632954597473145],[113,61,72,5.967661380767822],[113,61,73,5.966158390045166],[113,61,74,5.969226360321045],[113,61,75,5.980562686920166],[113,61,76,5.990850448608398],[113,61,77,5.993145942687988],[113,61,78,5.98264741897583],[113,61,79,5.955428600311279],[113,62,64,5.97165060043335],[113,62,65,5.966513633728027],[113,62,66,5.960428237915039],[113,62,67,5.9564528465271],[113,62,68,5.955707550048828],[113,62,69,5.9557929039001465],[113,62,70,5.957937717437744],[113,62,71,5.9632954597473145],[113,62,72,5.967661380767822],[113,62,73,5.966158390045166],[113,62,74,5.969226360321045],[113,62,75,5.980562686920166],[113,62,76,5.990850448608398],[113,62,77,5.993145942687988],[113,62,78,5.98264741897583],[113,62,79,5.955428600311279],[113,63,64,5.97165060043335],[113,63,65,5.966513633728027],[113,63,66,5.960428237915039],[113,63,67,5.9564528465271],[113,63,68,5.955707550048828],[113,63,69,5.9557929039001465],[113,63,70,5.957937717437744],[113,63,71,5.9632954597473145],[113,63,72,5.967661380767822],[113,63,73,5.966158390045166],[113,63,74,5.969226360321045],[113,63,75,5.980562686920166],[113,63,76,5.990850448608398],[113,63,77,5.993145942687988],[113,63,78,5.98264741897583],[113,63,79,5.955428600311279],[113,64,64,5.97165060043335],[113,64,65,5.966513633728027],[113,64,66,5.960428237915039],[113,64,67,5.9564528465271],[113,64,68,5.955707550048828],[113,64,69,5.9557929039001465],[113,64,70,5.957937717437744],[113,64,71,5.9632954597473145],[113,64,72,5.967661380767822],[113,64,73,5.966158390045166],[113,64,74,5.969226360321045],[113,64,75,5.980562686920166],[113,64,76,5.990850448608398],[113,64,77,5.993145942687988],[113,64,78,5.98264741897583],[113,64,79,5.955428600311279],[113,65,64,5.97165060043335],[113,65,65,5.966513633728027],[113,65,66,5.960428237915039],[113,65,67,5.9564528465271],[113,65,68,5.955707550048828],[113,65,69,5.9557929039001465],[113,65,70,5.957937717437744],[113,65,71,5.9632954597473145],[113,65,72,5.967661380767822],[113,65,73,5.966158390045166],[113,65,74,5.969226360321045],[113,65,75,5.980562686920166],[113,65,76,5.990850448608398],[113,65,77,5.993145942687988],[113,65,78,5.98264741897583],[113,65,79,5.955428600311279],[113,66,64,5.97165060043335],[113,66,65,5.966513633728027],[113,66,66,5.960428237915039],[113,66,67,5.9564528465271],[113,66,68,5.955707550048828],[113,66,69,5.9557929039001465],[113,66,70,5.957937717437744],[113,66,71,5.9632954597473145],[113,66,72,5.967661380767822],[113,66,73,5.966158390045166],[113,66,74,5.969226360321045],[113,66,75,5.980562686920166],[113,66,76,5.990850448608398],[113,66,77,5.993145942687988],[113,66,78,5.98264741897583],[113,66,79,5.955428600311279],[113,67,64,5.97165060043335],[113,67,65,5.966513633728027],[113,67,66,5.960428237915039],[113,67,67,5.9564528465271],[113,67,68,5.955707550048828],[113,67,69,5.9557929039001465],[113,67,70,5.957937717437744],[113,67,71,5.9632954597473145],[113,67,72,5.967661380767822],[113,67,73,5.966158390045166],[113,67,74,5.969226360321045],[113,67,75,5.980562686920166],[113,67,76,5.990850448608398],[113,67,77,5.993145942687988],[113,67,78,5.98264741897583],[113,67,79,5.955428600311279],[113,68,64,5.97165060043335],[113,68,65,5.966513633728027],[113,68,66,5.960428237915039],[113,68,67,5.9564528465271],[113,68,68,5.955707550048828],[113,68,69,5.9557929039001465],[113,68,70,5.957937717437744],[113,68,71,5.9632954597473145],[113,68,72,5.967661380767822],[113,68,73,5.966158390045166],[113,68,74,5.969226360321045],[113,68,75,5.980562686920166],[113,68,76,5.990850448608398],[113,68,77,5.993145942687988],[113,68,78,5.98264741897583],[113,68,79,5.955428600311279],[113,69,64,5.97165060043335],[113,69,65,5.966513633728027],[113,69,66,5.960428237915039],[113,69,67,5.9564528465271],[113,69,68,5.955707550048828],[113,69,69,5.9557929039001465],[113,69,70,5.957937717437744],[113,69,71,5.9632954597473145],[113,69,72,5.967661380767822],[113,69,73,5.966158390045166],[113,69,74,5.969226360321045],[113,69,75,5.980562686920166],[113,69,76,5.990850448608398],[113,69,77,5.993145942687988],[113,69,78,5.98264741897583],[113,69,79,5.955428600311279],[113,70,64,5.97165060043335],[113,70,65,5.966513633728027],[113,70,66,5.960428237915039],[113,70,67,5.9564528465271],[113,70,68,5.955707550048828],[113,70,69,5.9557929039001465],[113,70,70,5.957937717437744],[113,70,71,5.9632954597473145],[113,70,72,5.967661380767822],[113,70,73,5.966158390045166],[113,70,74,5.969226360321045],[113,70,75,5.980562686920166],[113,70,76,5.990850448608398],[113,70,77,5.993145942687988],[113,70,78,5.98264741897583],[113,70,79,5.955428600311279],[113,71,64,5.97165060043335],[113,71,65,5.966513633728027],[113,71,66,5.960428237915039],[113,71,67,5.9564528465271],[113,71,68,5.955707550048828],[113,71,69,5.9557929039001465],[113,71,70,5.957937717437744],[113,71,71,5.9632954597473145],[113,71,72,5.967661380767822],[113,71,73,5.966158390045166],[113,71,74,5.969226360321045],[113,71,75,5.980562686920166],[113,71,76,5.990850448608398],[113,71,77,5.993145942687988],[113,71,78,5.98264741897583],[113,71,79,5.955428600311279],[113,72,64,5.97165060043335],[113,72,65,5.966513633728027],[113,72,66,5.960428237915039],[113,72,67,5.9564528465271],[113,72,68,5.955707550048828],[113,72,69,5.9557929039001465],[113,72,70,5.957937717437744],[113,72,71,5.9632954597473145],[113,72,72,5.967661380767822],[113,72,73,5.966158390045166],[113,72,74,5.969226360321045],[113,72,75,5.980562686920166],[113,72,76,5.990850448608398],[113,72,77,5.993145942687988],[113,72,78,5.98264741897583],[113,72,79,5.955428600311279],[113,73,64,5.97165060043335],[113,73,65,5.966513633728027],[113,73,66,5.960428237915039],[113,73,67,5.9564528465271],[113,73,68,5.955707550048828],[113,73,69,5.9557929039001465],[113,73,70,5.957937717437744],[113,73,71,5.9632954597473145],[113,73,72,5.967661380767822],[113,73,73,5.966158390045166],[113,73,74,5.969226360321045],[113,73,75,5.980562686920166],[113,73,76,5.990850448608398],[113,73,77,5.993145942687988],[113,73,78,5.98264741897583],[113,73,79,5.955428600311279],[113,74,64,5.97165060043335],[113,74,65,5.966513633728027],[113,74,66,5.960428237915039],[113,74,67,5.9564528465271],[113,74,68,5.955707550048828],[113,74,69,5.9557929039001465],[113,74,70,5.957937717437744],[113,74,71,5.9632954597473145],[113,74,72,5.967661380767822],[113,74,73,5.966158390045166],[113,74,74,5.969226360321045],[113,74,75,5.980562686920166],[113,74,76,5.990850448608398],[113,74,77,5.993145942687988],[113,74,78,5.98264741897583],[113,74,79,5.955428600311279],[113,75,64,5.97165060043335],[113,75,65,5.966513633728027],[113,75,66,5.960428237915039],[113,75,67,5.9564528465271],[113,75,68,5.955707550048828],[113,75,69,5.9557929039001465],[113,75,70,5.957937717437744],[113,75,71,5.9632954597473145],[113,75,72,5.967661380767822],[113,75,73,5.966158390045166],[113,75,74,5.969226360321045],[113,75,75,5.980562686920166],[113,75,76,5.990850448608398],[113,75,77,5.993145942687988],[113,75,78,5.98264741897583],[113,75,79,5.955428600311279],[113,76,64,5.97165060043335],[113,76,65,5.966513633728027],[113,76,66,5.960428237915039],[113,76,67,5.9564528465271],[113,76,68,5.955707550048828],[113,76,69,5.9557929039001465],[113,76,70,5.957937717437744],[113,76,71,5.9632954597473145],[113,76,72,5.967661380767822],[113,76,73,5.966158390045166],[113,76,74,5.969226360321045],[113,76,75,5.980562686920166],[113,76,76,5.990850448608398],[113,76,77,5.993145942687988],[113,76,78,5.98264741897583],[113,76,79,5.955428600311279],[113,77,64,5.97165060043335],[113,77,65,5.966513633728027],[113,77,66,5.960428237915039],[113,77,67,5.9564528465271],[113,77,68,5.955707550048828],[113,77,69,5.9557929039001465],[113,77,70,5.957937717437744],[113,77,71,5.9632954597473145],[113,77,72,5.967661380767822],[113,77,73,5.966158390045166],[113,77,74,5.969226360321045],[113,77,75,5.980562686920166],[113,77,76,5.990850448608398],[113,77,77,5.993145942687988],[113,77,78,5.98264741897583],[113,77,79,5.955428600311279],[113,78,64,5.97165060043335],[113,78,65,5.966513633728027],[113,78,66,5.960428237915039],[113,78,67,5.9564528465271],[113,78,68,5.955707550048828],[113,78,69,5.9557929039001465],[113,78,70,5.957937717437744],[113,78,71,5.9632954597473145],[113,78,72,5.967661380767822],[113,78,73,5.966158390045166],[113,78,74,5.969226360321045],[113,78,75,5.980562686920166],[113,78,76,5.990850448608398],[113,78,77,5.993145942687988],[113,78,78,5.98264741897583],[113,78,79,5.955428600311279],[113,79,64,5.97165060043335],[113,79,65,5.966513633728027],[113,79,66,5.960428237915039],[113,79,67,5.9564528465271],[113,79,68,5.955707550048828],[113,79,69,5.9557929039001465],[113,79,70,5.957937717437744],[113,79,71,5.9632954597473145],[113,79,72,5.967661380767822],[113,79,73,5.966158390045166],[113,79,74,5.969226360321045],[113,79,75,5.980562686920166],[113,79,76,5.990850448608398],[113,79,77,5.993145942687988],[113,79,78,5.98264741897583],[113,79,79,5.955428600311279],[113,80,64,5.97165060043335],[113,80,65,5.966513633728027],[113,80,66,5.960428237915039],[113,80,67,5.9564528465271],[113,80,68,5.955707550048828],[113,80,69,5.9557929039001465],[113,80,70,5.957937717437744],[113,80,71,5.9632954597473145],[113,80,72,5.967661380767822],[113,80,73,5.966158390045166],[113,80,74,5.969226360321045],[113,80,75,5.980562686920166],[113,80,76,5.990850448608398],[113,80,77,5.993145942687988],[113,80,78,5.98264741897583],[113,80,79,5.955428600311279],[113,81,64,5.97165060043335],[113,81,65,5.966513633728027],[113,81,66,5.960428237915039],[113,81,67,5.9564528465271],[113,81,68,5.955707550048828],[113,81,69,5.9557929039001465],[113,81,70,5.957937717437744],[113,81,71,5.9632954597473145],[113,81,72,5.967661380767822],[113,81,73,5.966158390045166],[113,81,74,5.969226360321045],[113,81,75,5.980562686920166],[113,81,76,5.990850448608398],[113,81,77,5.993145942687988],[113,81,78,5.98264741897583],[113,81,79,5.955428600311279],[113,82,64,5.97165060043335],[113,82,65,5.966513633728027],[113,82,66,5.960428237915039],[113,82,67,5.9564528465271],[113,82,68,5.955707550048828],[113,82,69,5.9557929039001465],[113,82,70,5.957937717437744],[113,82,71,5.9632954597473145],[113,82,72,5.967661380767822],[113,82,73,5.966158390045166],[113,82,74,5.969226360321045],[113,82,75,5.980562686920166],[113,82,76,5.990850448608398],[113,82,77,5.993145942687988],[113,82,78,5.98264741897583],[113,82,79,5.955428600311279],[113,83,64,5.97165060043335],[113,83,65,5.966513633728027],[113,83,66,5.960428237915039],[113,83,67,5.9564528465271],[113,83,68,5.955707550048828],[113,83,69,5.9557929039001465],[113,83,70,5.957937717437744],[113,83,71,5.9632954597473145],[113,83,72,5.967661380767822],[113,83,73,5.966158390045166],[113,83,74,5.969226360321045],[113,83,75,5.980562686920166],[113,83,76,5.990850448608398],[113,83,77,5.993145942687988],[113,83,78,5.98264741897583],[113,83,79,5.955428600311279],[113,84,64,5.97165060043335],[113,84,65,5.966513633728027],[113,84,66,5.960428237915039],[113,84,67,5.9564528465271],[113,84,68,5.955707550048828],[113,84,69,5.9557929039001465],[113,84,70,5.957937717437744],[113,84,71,5.9632954597473145],[113,84,72,5.967661380767822],[113,84,73,5.966158390045166],[113,84,74,5.969226360321045],[113,84,75,5.980562686920166],[113,84,76,5.990850448608398],[113,84,77,5.993145942687988],[113,84,78,5.98264741897583],[113,84,79,5.955428600311279],[113,85,64,5.97165060043335],[113,85,65,5.966513633728027],[113,85,66,5.960428237915039],[113,85,67,5.9564528465271],[113,85,68,5.955707550048828],[113,85,69,5.9557929039001465],[113,85,70,5.957937717437744],[113,85,71,5.9632954597473145],[113,85,72,5.967661380767822],[113,85,73,5.966158390045166],[113,85,74,5.969226360321045],[113,85,75,5.980562686920166],[113,85,76,5.990850448608398],[113,85,77,5.993145942687988],[113,85,78,5.98264741897583],[113,85,79,5.955428600311279],[113,86,64,5.97165060043335],[113,86,65,5.966513633728027],[113,86,66,5.960428237915039],[113,86,67,5.9564528465271],[113,86,68,5.955707550048828],[113,86,69,5.9557929039001465],[113,86,70,5.957937717437744],[113,86,71,5.9632954597473145],[113,86,72,5.967661380767822],[113,86,73,5.966158390045166],[113,86,74,5.969226360321045],[113,86,75,5.980562686920166],[113,86,76,5.990850448608398],[113,86,77,5.993145942687988],[113,86,78,5.98264741897583],[113,86,79,5.955428600311279],[113,87,64,5.97165060043335],[113,87,65,5.966513633728027],[113,87,66,5.960428237915039],[113,87,67,5.9564528465271],[113,87,68,5.955707550048828],[113,87,69,5.9557929039001465],[113,87,70,5.957937717437744],[113,87,71,5.9632954597473145],[113,87,72,5.967661380767822],[113,87,73,5.966158390045166],[113,87,74,5.969226360321045],[113,87,75,5.980562686920166],[113,87,76,5.990850448608398],[113,87,77,5.993145942687988],[113,87,78,5.98264741897583],[113,87,79,5.955428600311279],[113,88,64,5.97165060043335],[113,88,65,5.966513633728027],[113,88,66,5.960428237915039],[113,88,67,5.9564528465271],[113,88,68,5.955707550048828],[113,88,69,5.9557929039001465],[113,88,70,5.957937717437744],[113,88,71,5.9632954597473145],[113,88,72,5.967661380767822],[113,88,73,5.966158390045166],[113,88,74,5.969226360321045],[113,88,75,5.980562686920166],[113,88,76,5.990850448608398],[113,88,77,5.993145942687988],[113,88,78,5.98264741897583],[113,88,79,5.955428600311279],[113,89,64,5.97165060043335],[113,89,65,5.966513633728027],[113,89,66,5.960428237915039],[113,89,67,5.9564528465271],[113,89,68,5.955707550048828],[113,89,69,5.9557929039001465],[113,89,70,5.957937717437744],[113,89,71,5.9632954597473145],[113,89,72,5.967661380767822],[113,89,73,5.966158390045166],[113,89,74,5.969226360321045],[113,89,75,5.980562686920166],[113,89,76,5.990850448608398],[113,89,77,5.993145942687988],[113,89,78,5.98264741897583],[113,89,79,5.955428600311279],[113,90,64,5.97165060043335],[113,90,65,5.966513633728027],[113,90,66,5.960428237915039],[113,90,67,5.9564528465271],[113,90,68,5.955707550048828],[113,90,69,5.9557929039001465],[113,90,70,5.957937717437744],[113,90,71,5.9632954597473145],[113,90,72,5.967661380767822],[113,90,73,5.966158390045166],[113,90,74,5.969226360321045],[113,90,75,5.980562686920166],[113,90,76,5.990850448608398],[113,90,77,5.993145942687988],[113,90,78,5.98264741897583],[113,90,79,5.955428600311279],[113,91,64,5.97165060043335],[113,91,65,5.966513633728027],[113,91,66,5.960428237915039],[113,91,67,5.9564528465271],[113,91,68,5.955707550048828],[113,91,69,5.9557929039001465],[113,91,70,5.957937717437744],[113,91,71,5.9632954597473145],[113,91,72,5.967661380767822],[113,91,73,5.966158390045166],[113,91,74,5.969226360321045],[113,91,75,5.980562686920166],[113,91,76,5.990850448608398],[113,91,77,5.993145942687988],[113,91,78,5.98264741897583],[113,91,79,5.955428600311279],[113,92,64,5.97165060043335],[113,92,65,5.966513633728027],[113,92,66,5.960428237915039],[113,92,67,5.9564528465271],[113,92,68,5.955707550048828],[113,92,69,5.9557929039001465],[113,92,70,5.957937717437744],[113,92,71,5.9632954597473145],[113,92,72,5.967661380767822],[113,92,73,5.966158390045166],[113,92,74,5.969226360321045],[113,92,75,5.980562686920166],[113,92,76,5.990850448608398],[113,92,77,5.993145942687988],[113,92,78,5.98264741897583],[113,92,79,5.955428600311279],[113,93,64,5.97165060043335],[113,93,65,5.966513633728027],[113,93,66,5.960428237915039],[113,93,67,5.9564528465271],[113,93,68,5.955707550048828],[113,93,69,5.9557929039001465],[113,93,70,5.957937717437744],[113,93,71,5.9632954597473145],[113,93,72,5.967661380767822],[113,93,73,5.966158390045166],[113,93,74,5.969226360321045],[113,93,75,5.980562686920166],[113,93,76,5.990850448608398],[113,93,77,5.993145942687988],[113,93,78,5.98264741897583],[113,93,79,5.955428600311279],[113,94,64,5.97165060043335],[113,94,65,5.966513633728027],[113,94,66,5.960428237915039],[113,94,67,5.9564528465271],[113,94,68,5.955707550048828],[113,94,69,5.9557929039001465],[113,94,70,5.957937717437744],[113,94,71,5.9632954597473145],[113,94,72,5.967661380767822],[113,94,73,5.966158390045166],[113,94,74,5.969226360321045],[113,94,75,5.980562686920166],[113,94,76,5.990850448608398],[113,94,77,5.993145942687988],[113,94,78,5.98264741897583],[113,94,79,5.955428600311279],[113,95,64,5.97165060043335],[113,95,65,5.966513633728027],[113,95,66,5.960428237915039],[113,95,67,5.9564528465271],[113,95,68,5.955707550048828],[113,95,69,5.9557929039001465],[113,95,70,5.957937717437744],[113,95,71,5.9632954597473145],[113,95,72,5.967661380767822],[113,95,73,5.966158390045166],[113,95,74,5.969226360321045],[113,95,75,5.980562686920166],[113,95,76,5.990850448608398],[113,95,77,5.993145942687988],[113,95,78,5.98264741897583],[113,95,79,5.955428600311279],[113,96,64,5.97165060043335],[113,96,65,5.966513633728027],[113,96,66,5.960428237915039],[113,96,67,5.9564528465271],[113,96,68,5.955707550048828],[113,96,69,5.9557929039001465],[113,96,70,5.957937717437744],[113,96,71,5.9632954597473145],[113,96,72,5.967661380767822],[113,96,73,5.966158390045166],[113,96,74,5.969226360321045],[113,96,75,5.980562686920166],[113,96,76,5.990850448608398],[113,96,77,5.993145942687988],[113,96,78,5.98264741897583],[113,96,79,5.955428600311279],[113,97,64,5.97165060043335],[113,97,65,5.966513633728027],[113,97,66,5.960428237915039],[113,97,67,5.9564528465271],[113,97,68,5.955707550048828],[113,97,69,5.9557929039001465],[113,97,70,5.957937717437744],[113,97,71,5.9632954597473145],[113,97,72,5.967661380767822],[113,97,73,5.966158390045166],[113,97,74,5.969226360321045],[113,97,75,5.980562686920166],[113,97,76,5.990850448608398],[113,97,77,5.993145942687988],[113,97,78,5.98264741897583],[113,97,79,5.955428600311279],[113,98,64,5.97165060043335],[113,98,65,5.966513633728027],[113,98,66,5.960428237915039],[113,98,67,5.9564528465271],[113,98,68,5.955707550048828],[113,98,69,5.9557929039001465],[113,98,70,5.957937717437744],[113,98,71,5.9632954597473145],[113,98,72,5.967661380767822],[113,98,73,5.966158390045166],[113,98,74,5.969226360321045],[113,98,75,5.980562686920166],[113,98,76,5.990850448608398],[113,98,77,5.993145942687988],[113,98,78,5.98264741897583],[113,98,79,5.955428600311279],[113,99,64,5.97165060043335],[113,99,65,5.966513633728027],[113,99,66,5.960428237915039],[113,99,67,5.9564528465271],[113,99,68,5.955707550048828],[113,99,69,5.9557929039001465],[113,99,70,5.957937717437744],[113,99,71,5.9632954597473145],[113,99,72,5.967661380767822],[113,99,73,5.966158390045166],[113,99,74,5.969226360321045],[113,99,75,5.980562686920166],[113,99,76,5.990850448608398],[113,99,77,5.993145942687988],[113,99,78,5.98264741897583],[113,99,79,5.955428600311279],[113,100,64,5.97165060043335],[113,100,65,5.966513633728027],[113,100,66,5.960428237915039],[113,100,67,5.9564528465271],[113,100,68,5.955707550048828],[113,100,69,5.9557929039001465],[113,100,70,5.957937717437744],[113,100,71,5.9632954597473145],[113,100,72,5.967661380767822],[113,100,73,5.966158390045166],[113,100,74,5.969226360321045],[113,100,75,5.980562686920166],[113,100,76,5.990850448608398],[113,100,77,5.993145942687988],[113,100,78,5.98264741897583],[113,100,79,5.955428600311279],[113,101,64,5.97165060043335],[113,101,65,5.966513633728027],[113,101,66,5.960428237915039],[113,101,67,5.9564528465271],[113,101,68,5.955707550048828],[113,101,69,5.9557929039001465],[113,101,70,5.957937717437744],[113,101,71,5.9632954597473145],[113,101,72,5.967661380767822],[113,101,73,5.966158390045166],[113,101,74,5.969226360321045],[113,101,75,5.980562686920166],[113,101,76,5.990850448608398],[113,101,77,5.993145942687988],[113,101,78,5.98264741897583],[113,101,79,5.955428600311279],[113,102,64,5.97165060043335],[113,102,65,5.966513633728027],[113,102,66,5.960428237915039],[113,102,67,5.9564528465271],[113,102,68,5.955707550048828],[113,102,69,5.9557929039001465],[113,102,70,5.957937717437744],[113,102,71,5.9632954597473145],[113,102,72,5.967661380767822],[113,102,73,5.966158390045166],[113,102,74,5.969226360321045],[113,102,75,5.980562686920166],[113,102,76,5.990850448608398],[113,102,77,5.993145942687988],[113,102,78,5.98264741897583],[113,102,79,5.955428600311279],[113,103,64,5.97165060043335],[113,103,65,5.966513633728027],[113,103,66,5.960428237915039],[113,103,67,5.9564528465271],[113,103,68,5.955707550048828],[113,103,69,5.9557929039001465],[113,103,70,5.957937717437744],[113,103,71,5.9632954597473145],[113,103,72,5.967661380767822],[113,103,73,5.966158390045166],[113,103,74,5.969226360321045],[113,103,75,5.980562686920166],[113,103,76,5.990850448608398],[113,103,77,5.993145942687988],[113,103,78,5.98264741897583],[113,103,79,5.955428600311279],[113,104,64,5.97165060043335],[113,104,65,5.966513633728027],[113,104,66,5.960428237915039],[113,104,67,5.9564528465271],[113,104,68,5.955707550048828],[113,104,69,5.9557929039001465],[113,104,70,5.957937717437744],[113,104,71,5.9632954597473145],[113,104,72,5.967661380767822],[113,104,73,5.966158390045166],[113,104,74,5.969226360321045],[113,104,75,5.980562686920166],[113,104,76,5.990850448608398],[113,104,77,5.993145942687988],[113,104,78,5.98264741897583],[113,104,79,5.955428600311279],[113,105,64,5.97165060043335],[113,105,65,5.966513633728027],[113,105,66,5.960428237915039],[113,105,67,5.9564528465271],[113,105,68,5.955707550048828],[113,105,69,5.9557929039001465],[113,105,70,5.957937717437744],[113,105,71,5.9632954597473145],[113,105,72,5.967661380767822],[113,105,73,5.966158390045166],[113,105,74,5.969226360321045],[113,105,75,5.980562686920166],[113,105,76,5.990850448608398],[113,105,77,5.993145942687988],[113,105,78,5.98264741897583],[113,105,79,5.955428600311279],[113,106,64,5.97165060043335],[113,106,65,5.966513633728027],[113,106,66,5.960428237915039],[113,106,67,5.9564528465271],[113,106,68,5.955707550048828],[113,106,69,5.9557929039001465],[113,106,70,5.957937717437744],[113,106,71,5.9632954597473145],[113,106,72,5.967661380767822],[113,106,73,5.966158390045166],[113,106,74,5.969226360321045],[113,106,75,5.980562686920166],[113,106,76,5.990850448608398],[113,106,77,5.993145942687988],[113,106,78,5.98264741897583],[113,106,79,5.955428600311279],[113,107,64,5.97165060043335],[113,107,65,5.966513633728027],[113,107,66,5.960428237915039],[113,107,67,5.9564528465271],[113,107,68,5.955707550048828],[113,107,69,5.9557929039001465],[113,107,70,5.957937717437744],[113,107,71,5.9632954597473145],[113,107,72,5.967661380767822],[113,107,73,5.966158390045166],[113,107,74,5.969226360321045],[113,107,75,5.980562686920166],[113,107,76,5.990850448608398],[113,107,77,5.993145942687988],[113,107,78,5.98264741897583],[113,107,79,5.955428600311279],[113,108,64,5.97165060043335],[113,108,65,5.966513633728027],[113,108,66,5.960428237915039],[113,108,67,5.9564528465271],[113,108,68,5.955707550048828],[113,108,69,5.9557929039001465],[113,108,70,5.957937717437744],[113,108,71,5.9632954597473145],[113,108,72,5.967661380767822],[113,108,73,5.966158390045166],[113,108,74,5.969226360321045],[113,108,75,5.980562686920166],[113,108,76,5.990850448608398],[113,108,77,5.993145942687988],[113,108,78,5.98264741897583],[113,108,79,5.955428600311279],[113,109,64,5.97165060043335],[113,109,65,5.966513633728027],[113,109,66,5.960428237915039],[113,109,67,5.9564528465271],[113,109,68,5.955707550048828],[113,109,69,5.9557929039001465],[113,109,70,5.957937717437744],[113,109,71,5.9632954597473145],[113,109,72,5.967661380767822],[113,109,73,5.966158390045166],[113,109,74,5.969226360321045],[113,109,75,5.980562686920166],[113,109,76,5.990850448608398],[113,109,77,5.993145942687988],[113,109,78,5.98264741897583],[113,109,79,5.955428600311279],[113,110,64,5.97165060043335],[113,110,65,5.966513633728027],[113,110,66,5.960428237915039],[113,110,67,5.9564528465271],[113,110,68,5.955707550048828],[113,110,69,5.9557929039001465],[113,110,70,5.957937717437744],[113,110,71,5.9632954597473145],[113,110,72,5.967661380767822],[113,110,73,5.966158390045166],[113,110,74,5.969226360321045],[113,110,75,5.980562686920166],[113,110,76,5.990850448608398],[113,110,77,5.993145942687988],[113,110,78,5.98264741897583],[113,110,79,5.955428600311279],[113,111,64,5.97165060043335],[113,111,65,5.966513633728027],[113,111,66,5.960428237915039],[113,111,67,5.9564528465271],[113,111,68,5.955707550048828],[113,111,69,5.9557929039001465],[113,111,70,5.957937717437744],[113,111,71,5.9632954597473145],[113,111,72,5.967661380767822],[113,111,73,5.966158390045166],[113,111,74,5.969226360321045],[113,111,75,5.980562686920166],[113,111,76,5.990850448608398],[113,111,77,5.993145942687988],[113,111,78,5.98264741897583],[113,111,79,5.955428600311279],[113,112,64,5.97165060043335],[113,112,65,5.966513633728027],[113,112,66,5.960428237915039],[113,112,67,5.9564528465271],[113,112,68,5.955707550048828],[113,112,69,5.9557929039001465],[113,112,70,5.957937717437744],[113,112,71,5.9632954597473145],[113,112,72,5.967661380767822],[113,112,73,5.966158390045166],[113,112,74,5.969226360321045],[113,112,75,5.980562686920166],[113,112,76,5.990850448608398],[113,112,77,5.993145942687988],[113,112,78,5.98264741897583],[113,112,79,5.955428600311279],[113,113,64,5.97165060043335],[113,113,65,5.966513633728027],[113,113,66,5.960428237915039],[113,113,67,5.9564528465271],[113,113,68,5.955707550048828],[113,113,69,5.9557929039001465],[113,113,70,5.957937717437744],[113,113,71,5.9632954597473145],[113,113,72,5.967661380767822],[113,113,73,5.966158390045166],[113,113,74,5.969226360321045],[113,113,75,5.980562686920166],[113,113,76,5.990850448608398],[113,113,77,5.993145942687988],[113,113,78,5.98264741897583],[113,113,79,5.955428600311279],[113,114,64,5.97165060043335],[113,114,65,5.966513633728027],[113,114,66,5.960428237915039],[113,114,67,5.9564528465271],[113,114,68,5.955707550048828],[113,114,69,5.9557929039001465],[113,114,70,5.957937717437744],[113,114,71,5.9632954597473145],[113,114,72,5.967661380767822],[113,114,73,5.966158390045166],[113,114,74,5.969226360321045],[113,114,75,5.980562686920166],[113,114,76,5.990850448608398],[113,114,77,5.993145942687988],[113,114,78,5.98264741897583],[113,114,79,5.955428600311279],[113,115,64,5.97165060043335],[113,115,65,5.966513633728027],[113,115,66,5.960428237915039],[113,115,67,5.9564528465271],[113,115,68,5.955707550048828],[113,115,69,5.9557929039001465],[113,115,70,5.957937717437744],[113,115,71,5.9632954597473145],[113,115,72,5.967661380767822],[113,115,73,5.966158390045166],[113,115,74,5.969226360321045],[113,115,75,5.980562686920166],[113,115,76,5.990850448608398],[113,115,77,5.993145942687988],[113,115,78,5.98264741897583],[113,115,79,5.955428600311279],[113,116,64,5.97165060043335],[113,116,65,5.966513633728027],[113,116,66,5.960428237915039],[113,116,67,5.9564528465271],[113,116,68,5.955707550048828],[113,116,69,5.9557929039001465],[113,116,70,5.957937717437744],[113,116,71,5.9632954597473145],[113,116,72,5.967661380767822],[113,116,73,5.966158390045166],[113,116,74,5.969226360321045],[113,116,75,5.980562686920166],[113,116,76,5.990850448608398],[113,116,77,5.993145942687988],[113,116,78,5.98264741897583],[113,116,79,5.955428600311279],[113,117,64,5.97165060043335],[113,117,65,5.966513633728027],[113,117,66,5.960428237915039],[113,117,67,5.9564528465271],[113,117,68,5.955707550048828],[113,117,69,5.9557929039001465],[113,117,70,5.957937717437744],[113,117,71,5.9632954597473145],[113,117,72,5.967661380767822],[113,117,73,5.966158390045166],[113,117,74,5.969226360321045],[113,117,75,5.980562686920166],[113,117,76,5.990850448608398],[113,117,77,5.993145942687988],[113,117,78,5.98264741897583],[113,117,79,5.955428600311279],[113,118,64,5.97165060043335],[113,118,65,5.966513633728027],[113,118,66,5.960428237915039],[113,118,67,5.9564528465271],[113,118,68,5.955707550048828],[113,118,69,5.9557929039001465],[113,118,70,5.957937717437744],[113,118,71,5.9632954597473145],[113,118,72,5.967661380767822],[113,118,73,5.966158390045166],[113,118,74,5.969226360321045],[113,118,75,5.980562686920166],[113,118,76,5.990850448608398],[113,118,77,5.993145942687988],[113,118,78,5.98264741897583],[113,118,79,5.955428600311279],[113,119,64,5.97165060043335],[113,119,65,5.966513633728027],[113,119,66,5.960428237915039],[113,119,67,5.9564528465271],[113,119,68,5.955707550048828],[113,119,69,5.9557929039001465],[113,119,70,5.957937717437744],[113,119,71,5.9632954597473145],[113,119,72,5.967661380767822],[113,119,73,5.966158390045166],[113,119,74,5.969226360321045],[113,119,75,5.980562686920166],[113,119,76,5.990850448608398],[113,119,77,5.993145942687988],[113,119,78,5.98264741897583],[113,119,79,5.955428600311279],[113,120,64,5.97165060043335],[113,120,65,5.966513633728027],[113,120,66,5.960428237915039],[113,120,67,5.9564528465271],[113,120,68,5.955707550048828],[113,120,69,5.9557929039001465],[113,120,70,5.957937717437744],[113,120,71,5.9632954597473145],[113,120,72,5.967661380767822],[113,120,73,5.966158390045166],[113,120,74,5.969226360321045],[113,120,75,5.980562686920166],[113,120,76,5.990850448608398],[113,120,77,5.993145942687988],[113,120,78,5.98264741897583],[113,120,79,5.955428600311279],[113,121,64,5.97165060043335],[113,121,65,5.966513633728027],[113,121,66,5.960428237915039],[113,121,67,5.9564528465271],[113,121,68,5.955707550048828],[113,121,69,5.9557929039001465],[113,121,70,5.957937717437744],[113,121,71,5.9632954597473145],[113,121,72,5.967661380767822],[113,121,73,5.966158390045166],[113,121,74,5.969226360321045],[113,121,75,5.980562686920166],[113,121,76,5.990850448608398],[113,121,77,5.993145942687988],[113,121,78,5.98264741897583],[113,121,79,5.955428600311279],[113,122,64,5.97165060043335],[113,122,65,5.966513633728027],[113,122,66,5.960428237915039],[113,122,67,5.9564528465271],[113,122,68,5.955707550048828],[113,122,69,5.9557929039001465],[113,122,70,5.957937717437744],[113,122,71,5.9632954597473145],[113,122,72,5.967661380767822],[113,122,73,5.966158390045166],[113,122,74,5.969226360321045],[113,122,75,5.980562686920166],[113,122,76,5.990850448608398],[113,122,77,5.993145942687988],[113,122,78,5.98264741897583],[113,122,79,5.955428600311279],[113,123,64,5.97165060043335],[113,123,65,5.966513633728027],[113,123,66,5.960428237915039],[113,123,67,5.9564528465271],[113,123,68,5.955707550048828],[113,123,69,5.9557929039001465],[113,123,70,5.957937717437744],[113,123,71,5.9632954597473145],[113,123,72,5.967661380767822],[113,123,73,5.966158390045166],[113,123,74,5.969226360321045],[113,123,75,5.980562686920166],[113,123,76,5.990850448608398],[113,123,77,5.993145942687988],[113,123,78,5.98264741897583],[113,123,79,5.955428600311279],[113,124,64,5.97165060043335],[113,124,65,5.966513633728027],[113,124,66,5.960428237915039],[113,124,67,5.9564528465271],[113,124,68,5.955707550048828],[113,124,69,5.9557929039001465],[113,124,70,5.957937717437744],[113,124,71,5.9632954597473145],[113,124,72,5.967661380767822],[113,124,73,5.966158390045166],[113,124,74,5.969226360321045],[113,124,75,5.980562686920166],[113,124,76,5.990850448608398],[113,124,77,5.993145942687988],[113,124,78,5.98264741897583],[113,124,79,5.955428600311279],[113,125,64,5.97165060043335],[113,125,65,5.966513633728027],[113,125,66,5.960428237915039],[113,125,67,5.9564528465271],[113,125,68,5.955707550048828],[113,125,69,5.9557929039001465],[113,125,70,5.957937717437744],[113,125,71,5.9632954597473145],[113,125,72,5.967661380767822],[113,125,73,5.966158390045166],[113,125,74,5.969226360321045],[113,125,75,5.980562686920166],[113,125,76,5.990850448608398],[113,125,77,5.993145942687988],[113,125,78,5.98264741897583],[113,125,79,5.955428600311279],[113,126,64,5.97165060043335],[113,126,65,5.966513633728027],[113,126,66,5.960428237915039],[113,126,67,5.9564528465271],[113,126,68,5.955707550048828],[113,126,69,5.9557929039001465],[113,126,70,5.957937717437744],[113,126,71,5.9632954597473145],[113,126,72,5.967661380767822],[113,126,73,5.966158390045166],[113,126,74,5.969226360321045],[113,126,75,5.980562686920166],[113,126,76,5.990850448608398],[113,126,77,5.993145942687988],[113,126,78,5.98264741897583],[113,126,79,5.955428600311279],[113,127,64,5.97165060043335],[113,127,65,5.966513633728027],[113,127,66,5.960428237915039],[113,127,67,5.9564528465271],[113,127,68,5.955707550048828],[113,127,69,5.9557929039001465],[113,127,70,5.957937717437744],[113,127,71,5.9632954597473145],[113,127,72,5.967661380767822],[113,127,73,5.966158390045166],[113,127,74,5.969226360321045],[113,127,75,5.980562686920166],[113,127,76,5.990850448608398],[113,127,77,5.993145942687988],[113,127,78,5.98264741897583],[113,127,79,5.955428600311279],[113,128,64,5.97165060043335],[113,128,65,5.966513633728027],[113,128,66,5.960428237915039],[113,128,67,5.9564528465271],[113,128,68,5.955707550048828],[113,128,69,5.9557929039001465],[113,128,70,5.957937717437744],[113,128,71,5.9632954597473145],[113,128,72,5.967661380767822],[113,128,73,5.966158390045166],[113,128,74,5.969226360321045],[113,128,75,5.980562686920166],[113,128,76,5.990850448608398],[113,128,77,5.993145942687988],[113,128,78,5.98264741897583],[113,128,79,5.955428600311279],[113,129,64,5.97165060043335],[113,129,65,5.966513633728027],[113,129,66,5.960428237915039],[113,129,67,5.9564528465271],[113,129,68,5.955707550048828],[113,129,69,5.9557929039001465],[113,129,70,5.957937717437744],[113,129,71,5.9632954597473145],[113,129,72,5.967661380767822],[113,129,73,5.966158390045166],[113,129,74,5.969226360321045],[113,129,75,5.980562686920166],[113,129,76,5.990850448608398],[113,129,77,5.993145942687988],[113,129,78,5.98264741897583],[113,129,79,5.955428600311279],[113,130,64,5.97165060043335],[113,130,65,5.966513633728027],[113,130,66,5.960428237915039],[113,130,67,5.9564528465271],[113,130,68,5.955707550048828],[113,130,69,5.9557929039001465],[113,130,70,5.957937717437744],[113,130,71,5.9632954597473145],[113,130,72,5.967661380767822],[113,130,73,5.966158390045166],[113,130,74,5.969226360321045],[113,130,75,5.980562686920166],[113,130,76,5.990850448608398],[113,130,77,5.993145942687988],[113,130,78,5.98264741897583],[113,130,79,5.955428600311279],[113,131,64,5.97165060043335],[113,131,65,5.966513633728027],[113,131,66,5.960428237915039],[113,131,67,5.9564528465271],[113,131,68,5.955707550048828],[113,131,69,5.9557929039001465],[113,131,70,5.957937717437744],[113,131,71,5.9632954597473145],[113,131,72,5.967661380767822],[113,131,73,5.966158390045166],[113,131,74,5.969226360321045],[113,131,75,5.980562686920166],[113,131,76,5.990850448608398],[113,131,77,5.993145942687988],[113,131,78,5.98264741897583],[113,131,79,5.955428600311279],[113,132,64,5.97165060043335],[113,132,65,5.966513633728027],[113,132,66,5.960428237915039],[113,132,67,5.9564528465271],[113,132,68,5.955707550048828],[113,132,69,5.9557929039001465],[113,132,70,5.957937717437744],[113,132,71,5.9632954597473145],[113,132,72,5.967661380767822],[113,132,73,5.966158390045166],[113,132,74,5.969226360321045],[113,132,75,5.980562686920166],[113,132,76,5.990850448608398],[113,132,77,5.993145942687988],[113,132,78,5.98264741897583],[113,132,79,5.955428600311279],[113,133,64,5.97165060043335],[113,133,65,5.966513633728027],[113,133,66,5.960428237915039],[113,133,67,5.9564528465271],[113,133,68,5.955707550048828],[113,133,69,5.9557929039001465],[113,133,70,5.957937717437744],[113,133,71,5.9632954597473145],[113,133,72,5.967661380767822],[113,133,73,5.966158390045166],[113,133,74,5.969226360321045],[113,133,75,5.980562686920166],[113,133,76,5.990850448608398],[113,133,77,5.993145942687988],[113,133,78,5.98264741897583],[113,133,79,5.955428600311279],[113,134,64,5.97165060043335],[113,134,65,5.966513633728027],[113,134,66,5.960428237915039],[113,134,67,5.9564528465271],[113,134,68,5.955707550048828],[113,134,69,5.9557929039001465],[113,134,70,5.957937717437744],[113,134,71,5.9632954597473145],[113,134,72,5.967661380767822],[113,134,73,5.966158390045166],[113,134,74,5.969226360321045],[113,134,75,5.980562686920166],[113,134,76,5.990850448608398],[113,134,77,5.993145942687988],[113,134,78,5.98264741897583],[113,134,79,5.955428600311279],[113,135,64,5.97165060043335],[113,135,65,5.966513633728027],[113,135,66,5.960428237915039],[113,135,67,5.9564528465271],[113,135,68,5.955707550048828],[113,135,69,5.9557929039001465],[113,135,70,5.957937717437744],[113,135,71,5.9632954597473145],[113,135,72,5.967661380767822],[113,135,73,5.966158390045166],[113,135,74,5.969226360321045],[113,135,75,5.980562686920166],[113,135,76,5.990850448608398],[113,135,77,5.993145942687988],[113,135,78,5.98264741897583],[113,135,79,5.955428600311279],[113,136,64,5.97165060043335],[113,136,65,5.966513633728027],[113,136,66,5.960428237915039],[113,136,67,5.9564528465271],[113,136,68,5.955707550048828],[113,136,69,5.9557929039001465],[113,136,70,5.957937717437744],[113,136,71,5.9632954597473145],[113,136,72,5.967661380767822],[113,136,73,5.966158390045166],[113,136,74,5.969226360321045],[113,136,75,5.980562686920166],[113,136,76,5.990850448608398],[113,136,77,5.993145942687988],[113,136,78,5.98264741897583],[113,136,79,5.955428600311279],[113,137,64,5.97165060043335],[113,137,65,5.966513633728027],[113,137,66,5.960428237915039],[113,137,67,5.9564528465271],[113,137,68,5.955707550048828],[113,137,69,5.9557929039001465],[113,137,70,5.957937717437744],[113,137,71,5.9632954597473145],[113,137,72,5.967661380767822],[113,137,73,5.966158390045166],[113,137,74,5.969226360321045],[113,137,75,5.980562686920166],[113,137,76,5.990850448608398],[113,137,77,5.993145942687988],[113,137,78,5.98264741897583],[113,137,79,5.955428600311279],[113,138,64,5.97165060043335],[113,138,65,5.966513633728027],[113,138,66,5.960428237915039],[113,138,67,5.9564528465271],[113,138,68,5.955707550048828],[113,138,69,5.9557929039001465],[113,138,70,5.957937717437744],[113,138,71,5.9632954597473145],[113,138,72,5.967661380767822],[113,138,73,5.966158390045166],[113,138,74,5.969226360321045],[113,138,75,5.980562686920166],[113,138,76,5.990850448608398],[113,138,77,5.993145942687988],[113,138,78,5.98264741897583],[113,138,79,5.955428600311279],[113,139,64,5.97165060043335],[113,139,65,5.966513633728027],[113,139,66,5.960428237915039],[113,139,67,5.9564528465271],[113,139,68,5.955707550048828],[113,139,69,5.9557929039001465],[113,139,70,5.957937717437744],[113,139,71,5.9632954597473145],[113,139,72,5.967661380767822],[113,139,73,5.966158390045166],[113,139,74,5.969226360321045],[113,139,75,5.980562686920166],[113,139,76,5.990850448608398],[113,139,77,5.993145942687988],[113,139,78,5.98264741897583],[113,139,79,5.955428600311279],[113,140,64,5.97165060043335],[113,140,65,5.966513633728027],[113,140,66,5.960428237915039],[113,140,67,5.9564528465271],[113,140,68,5.955707550048828],[113,140,69,5.9557929039001465],[113,140,70,5.957937717437744],[113,140,71,5.9632954597473145],[113,140,72,5.967661380767822],[113,140,73,5.966158390045166],[113,140,74,5.969226360321045],[113,140,75,5.980562686920166],[113,140,76,5.990850448608398],[113,140,77,5.993145942687988],[113,140,78,5.98264741897583],[113,140,79,5.955428600311279],[113,141,64,5.97165060043335],[113,141,65,5.966513633728027],[113,141,66,5.960428237915039],[113,141,67,5.9564528465271],[113,141,68,5.955707550048828],[113,141,69,5.9557929039001465],[113,141,70,5.957937717437744],[113,141,71,5.9632954597473145],[113,141,72,5.967661380767822],[113,141,73,5.966158390045166],[113,141,74,5.969226360321045],[113,141,75,5.980562686920166],[113,141,76,5.990850448608398],[113,141,77,5.993145942687988],[113,141,78,5.98264741897583],[113,141,79,5.955428600311279],[113,142,64,5.97165060043335],[113,142,65,5.966513633728027],[113,142,66,5.960428237915039],[113,142,67,5.9564528465271],[113,142,68,5.955707550048828],[113,142,69,5.9557929039001465],[113,142,70,5.957937717437744],[113,142,71,5.9632954597473145],[113,142,72,5.967661380767822],[113,142,73,5.966158390045166],[113,142,74,5.969226360321045],[113,142,75,5.980562686920166],[113,142,76,5.990850448608398],[113,142,77,5.993145942687988],[113,142,78,5.98264741897583],[113,142,79,5.955428600311279],[113,143,64,5.97165060043335],[113,143,65,5.966513633728027],[113,143,66,5.960428237915039],[113,143,67,5.9564528465271],[113,143,68,5.955707550048828],[113,143,69,5.9557929039001465],[113,143,70,5.957937717437744],[113,143,71,5.9632954597473145],[113,143,72,5.967661380767822],[113,143,73,5.966158390045166],[113,143,74,5.969226360321045],[113,143,75,5.980562686920166],[113,143,76,5.990850448608398],[113,143,77,5.993145942687988],[113,143,78,5.98264741897583],[113,143,79,5.955428600311279],[113,144,64,5.97165060043335],[113,144,65,5.966513633728027],[113,144,66,5.960428237915039],[113,144,67,5.9564528465271],[113,144,68,5.955707550048828],[113,144,69,5.9557929039001465],[113,144,70,5.957937717437744],[113,144,71,5.9632954597473145],[113,144,72,5.967661380767822],[113,144,73,5.966158390045166],[113,144,74,5.969226360321045],[113,144,75,5.980562686920166],[113,144,76,5.990850448608398],[113,144,77,5.993145942687988],[113,144,78,5.98264741897583],[113,144,79,5.955428600311279],[113,145,64,5.97165060043335],[113,145,65,5.966513633728027],[113,145,66,5.960428237915039],[113,145,67,5.9564528465271],[113,145,68,5.955707550048828],[113,145,69,5.9557929039001465],[113,145,70,5.957937717437744],[113,145,71,5.9632954597473145],[113,145,72,5.967661380767822],[113,145,73,5.966158390045166],[113,145,74,5.969226360321045],[113,145,75,5.980562686920166],[113,145,76,5.990850448608398],[113,145,77,5.993145942687988],[113,145,78,5.98264741897583],[113,145,79,5.955428600311279],[113,146,64,5.97165060043335],[113,146,65,5.966513633728027],[113,146,66,5.960428237915039],[113,146,67,5.9564528465271],[113,146,68,5.955707550048828],[113,146,69,5.9557929039001465],[113,146,70,5.957937717437744],[113,146,71,5.9632954597473145],[113,146,72,5.967661380767822],[113,146,73,5.966158390045166],[113,146,74,5.969226360321045],[113,146,75,5.980562686920166],[113,146,76,5.990850448608398],[113,146,77,5.993145942687988],[113,146,78,5.98264741897583],[113,146,79,5.955428600311279],[113,147,64,5.97165060043335],[113,147,65,5.966513633728027],[113,147,66,5.960428237915039],[113,147,67,5.9564528465271],[113,147,68,5.955707550048828],[113,147,69,5.9557929039001465],[113,147,70,5.957937717437744],[113,147,71,5.9632954597473145],[113,147,72,5.967661380767822],[113,147,73,5.966158390045166],[113,147,74,5.969226360321045],[113,147,75,5.980562686920166],[113,147,76,5.990850448608398],[113,147,77,5.993145942687988],[113,147,78,5.98264741897583],[113,147,79,5.955428600311279],[113,148,64,5.97165060043335],[113,148,65,5.966513633728027],[113,148,66,5.960428237915039],[113,148,67,5.9564528465271],[113,148,68,5.955707550048828],[113,148,69,5.9557929039001465],[113,148,70,5.957937717437744],[113,148,71,5.9632954597473145],[113,148,72,5.967661380767822],[113,148,73,5.966158390045166],[113,148,74,5.969226360321045],[113,148,75,5.980562686920166],[113,148,76,5.990850448608398],[113,148,77,5.993145942687988],[113,148,78,5.98264741897583],[113,148,79,5.955428600311279],[113,149,64,5.97165060043335],[113,149,65,5.966513633728027],[113,149,66,5.960428237915039],[113,149,67,5.9564528465271],[113,149,68,5.955707550048828],[113,149,69,5.9557929039001465],[113,149,70,5.957937717437744],[113,149,71,5.9632954597473145],[113,149,72,5.967661380767822],[113,149,73,5.966158390045166],[113,149,74,5.969226360321045],[113,149,75,5.980562686920166],[113,149,76,5.990850448608398],[113,149,77,5.993145942687988],[113,149,78,5.98264741897583],[113,149,79,5.955428600311279],[113,150,64,5.97165060043335],[113,150,65,5.966513633728027],[113,150,66,5.960428237915039],[113,150,67,5.9564528465271],[113,150,68,5.955707550048828],[113,150,69,5.9557929039001465],[113,150,70,5.957937717437744],[113,150,71,5.9632954597473145],[113,150,72,5.967661380767822],[113,150,73,5.966158390045166],[113,150,74,5.969226360321045],[113,150,75,5.980562686920166],[113,150,76,5.990850448608398],[113,150,77,5.993145942687988],[113,150,78,5.98264741897583],[113,150,79,5.955428600311279],[113,151,64,5.97165060043335],[113,151,65,5.966513633728027],[113,151,66,5.960428237915039],[113,151,67,5.9564528465271],[113,151,68,5.955707550048828],[113,151,69,5.9557929039001465],[113,151,70,5.957937717437744],[113,151,71,5.9632954597473145],[113,151,72,5.967661380767822],[113,151,73,5.966158390045166],[113,151,74,5.969226360321045],[113,151,75,5.980562686920166],[113,151,76,5.990850448608398],[113,151,77,5.993145942687988],[113,151,78,5.98264741897583],[113,151,79,5.955428600311279],[113,152,64,5.97165060043335],[113,152,65,5.966513633728027],[113,152,66,5.960428237915039],[113,152,67,5.9564528465271],[113,152,68,5.955707550048828],[113,152,69,5.9557929039001465],[113,152,70,5.957937717437744],[113,152,71,5.9632954597473145],[113,152,72,5.967661380767822],[113,152,73,5.966158390045166],[113,152,74,5.969226360321045],[113,152,75,5.980562686920166],[113,152,76,5.990850448608398],[113,152,77,5.993145942687988],[113,152,78,5.98264741897583],[113,152,79,5.955428600311279],[113,153,64,5.97165060043335],[113,153,65,5.966513633728027],[113,153,66,5.960428237915039],[113,153,67,5.9564528465271],[113,153,68,5.955707550048828],[113,153,69,5.9557929039001465],[113,153,70,5.957937717437744],[113,153,71,5.9632954597473145],[113,153,72,5.967661380767822],[113,153,73,5.966158390045166],[113,153,74,5.969226360321045],[113,153,75,5.980562686920166],[113,153,76,5.990850448608398],[113,153,77,5.993145942687988],[113,153,78,5.98264741897583],[113,153,79,5.955428600311279],[113,154,64,5.97165060043335],[113,154,65,5.966513633728027],[113,154,66,5.960428237915039],[113,154,67,5.9564528465271],[113,154,68,5.955707550048828],[113,154,69,5.9557929039001465],[113,154,70,5.957937717437744],[113,154,71,5.9632954597473145],[113,154,72,5.967661380767822],[113,154,73,5.966158390045166],[113,154,74,5.969226360321045],[113,154,75,5.980562686920166],[113,154,76,5.990850448608398],[113,154,77,5.993145942687988],[113,154,78,5.98264741897583],[113,154,79,5.955428600311279],[113,155,64,5.97165060043335],[113,155,65,5.966513633728027],[113,155,66,5.960428237915039],[113,155,67,5.9564528465271],[113,155,68,5.955707550048828],[113,155,69,5.9557929039001465],[113,155,70,5.957937717437744],[113,155,71,5.9632954597473145],[113,155,72,5.967661380767822],[113,155,73,5.966158390045166],[113,155,74,5.969226360321045],[113,155,75,5.980562686920166],[113,155,76,5.990850448608398],[113,155,77,5.993145942687988],[113,155,78,5.98264741897583],[113,155,79,5.955428600311279],[113,156,64,5.97165060043335],[113,156,65,5.966513633728027],[113,156,66,5.960428237915039],[113,156,67,5.9564528465271],[113,156,68,5.955707550048828],[113,156,69,5.9557929039001465],[113,156,70,5.957937717437744],[113,156,71,5.9632954597473145],[113,156,72,5.967661380767822],[113,156,73,5.966158390045166],[113,156,74,5.969226360321045],[113,156,75,5.980562686920166],[113,156,76,5.990850448608398],[113,156,77,5.993145942687988],[113,156,78,5.98264741897583],[113,156,79,5.955428600311279],[113,157,64,5.97165060043335],[113,157,65,5.966513633728027],[113,157,66,5.960428237915039],[113,157,67,5.9564528465271],[113,157,68,5.955707550048828],[113,157,69,5.9557929039001465],[113,157,70,5.957937717437744],[113,157,71,5.9632954597473145],[113,157,72,5.967661380767822],[113,157,73,5.966158390045166],[113,157,74,5.969226360321045],[113,157,75,5.980562686920166],[113,157,76,5.990850448608398],[113,157,77,5.993145942687988],[113,157,78,5.98264741897583],[113,157,79,5.955428600311279],[113,158,64,5.97165060043335],[113,158,65,5.966513633728027],[113,158,66,5.960428237915039],[113,158,67,5.9564528465271],[113,158,68,5.955707550048828],[113,158,69,5.9557929039001465],[113,158,70,5.957937717437744],[113,158,71,5.9632954597473145],[113,158,72,5.967661380767822],[113,158,73,5.966158390045166],[113,158,74,5.969226360321045],[113,158,75,5.980562686920166],[113,158,76,5.990850448608398],[113,158,77,5.993145942687988],[113,158,78,5.98264741897583],[113,158,79,5.955428600311279],[113,159,64,5.97165060043335],[113,159,65,5.966513633728027],[113,159,66,5.960428237915039],[113,159,67,5.9564528465271],[113,159,68,5.955707550048828],[113,159,69,5.9557929039001465],[113,159,70,5.957937717437744],[113,159,71,5.9632954597473145],[113,159,72,5.967661380767822],[113,159,73,5.966158390045166],[113,159,74,5.969226360321045],[113,159,75,5.980562686920166],[113,159,76,5.990850448608398],[113,159,77,5.993145942687988],[113,159,78,5.98264741897583],[113,159,79,5.955428600311279],[113,160,64,5.97165060043335],[113,160,65,5.966513633728027],[113,160,66,5.960428237915039],[113,160,67,5.9564528465271],[113,160,68,5.955707550048828],[113,160,69,5.9557929039001465],[113,160,70,5.957937717437744],[113,160,71,5.9632954597473145],[113,160,72,5.967661380767822],[113,160,73,5.966158390045166],[113,160,74,5.969226360321045],[113,160,75,5.980562686920166],[113,160,76,5.990850448608398],[113,160,77,5.993145942687988],[113,160,78,5.98264741897583],[113,160,79,5.955428600311279],[113,161,64,5.97165060043335],[113,161,65,5.966513633728027],[113,161,66,5.960428237915039],[113,161,67,5.9564528465271],[113,161,68,5.955707550048828],[113,161,69,5.9557929039001465],[113,161,70,5.957937717437744],[113,161,71,5.9632954597473145],[113,161,72,5.967661380767822],[113,161,73,5.966158390045166],[113,161,74,5.969226360321045],[113,161,75,5.980562686920166],[113,161,76,5.990850448608398],[113,161,77,5.993145942687988],[113,161,78,5.98264741897583],[113,161,79,5.955428600311279],[113,162,64,5.97165060043335],[113,162,65,5.966513633728027],[113,162,66,5.960428237915039],[113,162,67,5.9564528465271],[113,162,68,5.955707550048828],[113,162,69,5.9557929039001465],[113,162,70,5.957937717437744],[113,162,71,5.9632954597473145],[113,162,72,5.967661380767822],[113,162,73,5.966158390045166],[113,162,74,5.969226360321045],[113,162,75,5.980562686920166],[113,162,76,5.990850448608398],[113,162,77,5.993145942687988],[113,162,78,5.98264741897583],[113,162,79,5.955428600311279],[113,163,64,5.97165060043335],[113,163,65,5.966513633728027],[113,163,66,5.960428237915039],[113,163,67,5.9564528465271],[113,163,68,5.955707550048828],[113,163,69,5.9557929039001465],[113,163,70,5.957937717437744],[113,163,71,5.9632954597473145],[113,163,72,5.967661380767822],[113,163,73,5.966158390045166],[113,163,74,5.969226360321045],[113,163,75,5.980562686920166],[113,163,76,5.990850448608398],[113,163,77,5.993145942687988],[113,163,78,5.98264741897583],[113,163,79,5.955428600311279],[113,164,64,5.97165060043335],[113,164,65,5.966513633728027],[113,164,66,5.960428237915039],[113,164,67,5.9564528465271],[113,164,68,5.955707550048828],[113,164,69,5.9557929039001465],[113,164,70,5.957937717437744],[113,164,71,5.9632954597473145],[113,164,72,5.967661380767822],[113,164,73,5.966158390045166],[113,164,74,5.969226360321045],[113,164,75,5.980562686920166],[113,164,76,5.990850448608398],[113,164,77,5.993145942687988],[113,164,78,5.98264741897583],[113,164,79,5.955428600311279],[113,165,64,5.97165060043335],[113,165,65,5.966513633728027],[113,165,66,5.960428237915039],[113,165,67,5.9564528465271],[113,165,68,5.955707550048828],[113,165,69,5.9557929039001465],[113,165,70,5.957937717437744],[113,165,71,5.9632954597473145],[113,165,72,5.967661380767822],[113,165,73,5.966158390045166],[113,165,74,5.969226360321045],[113,165,75,5.980562686920166],[113,165,76,5.990850448608398],[113,165,77,5.993145942687988],[113,165,78,5.98264741897583],[113,165,79,5.955428600311279],[113,166,64,5.97165060043335],[113,166,65,5.966513633728027],[113,166,66,5.960428237915039],[113,166,67,5.9564528465271],[113,166,68,5.955707550048828],[113,166,69,5.9557929039001465],[113,166,70,5.957937717437744],[113,166,71,5.9632954597473145],[113,166,72,5.967661380767822],[113,166,73,5.966158390045166],[113,166,74,5.969226360321045],[113,166,75,5.980562686920166],[113,166,76,5.990850448608398],[113,166,77,5.993145942687988],[113,166,78,5.98264741897583],[113,166,79,5.955428600311279],[113,167,64,5.97165060043335],[113,167,65,5.966513633728027],[113,167,66,5.960428237915039],[113,167,67,5.9564528465271],[113,167,68,5.955707550048828],[113,167,69,5.9557929039001465],[113,167,70,5.957937717437744],[113,167,71,5.9632954597473145],[113,167,72,5.967661380767822],[113,167,73,5.966158390045166],[113,167,74,5.969226360321045],[113,167,75,5.980562686920166],[113,167,76,5.990850448608398],[113,167,77,5.993145942687988],[113,167,78,5.98264741897583],[113,167,79,5.955428600311279],[113,168,64,5.97165060043335],[113,168,65,5.966513633728027],[113,168,66,5.960428237915039],[113,168,67,5.9564528465271],[113,168,68,5.955707550048828],[113,168,69,5.9557929039001465],[113,168,70,5.957937717437744],[113,168,71,5.9632954597473145],[113,168,72,5.967661380767822],[113,168,73,5.966158390045166],[113,168,74,5.969226360321045],[113,168,75,5.980562686920166],[113,168,76,5.990850448608398],[113,168,77,5.993145942687988],[113,168,78,5.98264741897583],[113,168,79,5.955428600311279],[113,169,64,5.97165060043335],[113,169,65,5.966513633728027],[113,169,66,5.960428237915039],[113,169,67,5.9564528465271],[113,169,68,5.955707550048828],[113,169,69,5.9557929039001465],[113,169,70,5.957937717437744],[113,169,71,5.9632954597473145],[113,169,72,5.967661380767822],[113,169,73,5.966158390045166],[113,169,74,5.969226360321045],[113,169,75,5.980562686920166],[113,169,76,5.990850448608398],[113,169,77,5.993145942687988],[113,169,78,5.98264741897583],[113,169,79,5.955428600311279],[113,170,64,5.97165060043335],[113,170,65,5.966513633728027],[113,170,66,5.960428237915039],[113,170,67,5.9564528465271],[113,170,68,5.955707550048828],[113,170,69,5.9557929039001465],[113,170,70,5.957937717437744],[113,170,71,5.9632954597473145],[113,170,72,5.967661380767822],[113,170,73,5.966158390045166],[113,170,74,5.969226360321045],[113,170,75,5.980562686920166],[113,170,76,5.990850448608398],[113,170,77,5.993145942687988],[113,170,78,5.98264741897583],[113,170,79,5.955428600311279],[113,171,64,5.97165060043335],[113,171,65,5.966513633728027],[113,171,66,5.960428237915039],[113,171,67,5.9564528465271],[113,171,68,5.955707550048828],[113,171,69,5.9557929039001465],[113,171,70,5.957937717437744],[113,171,71,5.9632954597473145],[113,171,72,5.967661380767822],[113,171,73,5.966158390045166],[113,171,74,5.969226360321045],[113,171,75,5.980562686920166],[113,171,76,5.990850448608398],[113,171,77,5.993145942687988],[113,171,78,5.98264741897583],[113,171,79,5.955428600311279],[113,172,64,5.97165060043335],[113,172,65,5.966513633728027],[113,172,66,5.960428237915039],[113,172,67,5.9564528465271],[113,172,68,5.955707550048828],[113,172,69,5.9557929039001465],[113,172,70,5.957937717437744],[113,172,71,5.9632954597473145],[113,172,72,5.967661380767822],[113,172,73,5.966158390045166],[113,172,74,5.969226360321045],[113,172,75,5.980562686920166],[113,172,76,5.990850448608398],[113,172,77,5.993145942687988],[113,172,78,5.98264741897583],[113,172,79,5.955428600311279],[113,173,64,5.97165060043335],[113,173,65,5.966513633728027],[113,173,66,5.960428237915039],[113,173,67,5.9564528465271],[113,173,68,5.955707550048828],[113,173,69,5.9557929039001465],[113,173,70,5.957937717437744],[113,173,71,5.9632954597473145],[113,173,72,5.967661380767822],[113,173,73,5.966158390045166],[113,173,74,5.969226360321045],[113,173,75,5.980562686920166],[113,173,76,5.990850448608398],[113,173,77,5.993145942687988],[113,173,78,5.98264741897583],[113,173,79,5.955428600311279],[113,174,64,5.97165060043335],[113,174,65,5.966513633728027],[113,174,66,5.960428237915039],[113,174,67,5.9564528465271],[113,174,68,5.955707550048828],[113,174,69,5.9557929039001465],[113,174,70,5.957937717437744],[113,174,71,5.9632954597473145],[113,174,72,5.967661380767822],[113,174,73,5.966158390045166],[113,174,74,5.969226360321045],[113,174,75,5.980562686920166],[113,174,76,5.990850448608398],[113,174,77,5.993145942687988],[113,174,78,5.98264741897583],[113,174,79,5.955428600311279],[113,175,64,5.97165060043335],[113,175,65,5.966513633728027],[113,175,66,5.960428237915039],[113,175,67,5.9564528465271],[113,175,68,5.955707550048828],[113,175,69,5.9557929039001465],[113,175,70,5.957937717437744],[113,175,71,5.9632954597473145],[113,175,72,5.967661380767822],[113,175,73,5.966158390045166],[113,175,74,5.969226360321045],[113,175,75,5.980562686920166],[113,175,76,5.990850448608398],[113,175,77,5.993145942687988],[113,175,78,5.98264741897583],[113,175,79,5.955428600311279],[113,176,64,5.97165060043335],[113,176,65,5.966513633728027],[113,176,66,5.960428237915039],[113,176,67,5.9564528465271],[113,176,68,5.955707550048828],[113,176,69,5.9557929039001465],[113,176,70,5.957937717437744],[113,176,71,5.9632954597473145],[113,176,72,5.967661380767822],[113,176,73,5.966158390045166],[113,176,74,5.969226360321045],[113,176,75,5.980562686920166],[113,176,76,5.990850448608398],[113,176,77,5.993145942687988],[113,176,78,5.98264741897583],[113,176,79,5.955428600311279],[113,177,64,5.97165060043335],[113,177,65,5.966513633728027],[113,177,66,5.960428237915039],[113,177,67,5.9564528465271],[113,177,68,5.955707550048828],[113,177,69,5.9557929039001465],[113,177,70,5.957937717437744],[113,177,71,5.9632954597473145],[113,177,72,5.967661380767822],[113,177,73,5.966158390045166],[113,177,74,5.969226360321045],[113,177,75,5.980562686920166],[113,177,76,5.990850448608398],[113,177,77,5.993145942687988],[113,177,78,5.98264741897583],[113,177,79,5.955428600311279],[113,178,64,5.97165060043335],[113,178,65,5.966513633728027],[113,178,66,5.960428237915039],[113,178,67,5.9564528465271],[113,178,68,5.955707550048828],[113,178,69,5.9557929039001465],[113,178,70,5.957937717437744],[113,178,71,5.9632954597473145],[113,178,72,5.967661380767822],[113,178,73,5.966158390045166],[113,178,74,5.969226360321045],[113,178,75,5.980562686920166],[113,178,76,5.990850448608398],[113,178,77,5.993145942687988],[113,178,78,5.98264741897583],[113,178,79,5.955428600311279],[113,179,64,5.97165060043335],[113,179,65,5.966513633728027],[113,179,66,5.960428237915039],[113,179,67,5.9564528465271],[113,179,68,5.955707550048828],[113,179,69,5.9557929039001465],[113,179,70,5.957937717437744],[113,179,71,5.9632954597473145],[113,179,72,5.967661380767822],[113,179,73,5.966158390045166],[113,179,74,5.969226360321045],[113,179,75,5.980562686920166],[113,179,76,5.990850448608398],[113,179,77,5.993145942687988],[113,179,78,5.98264741897583],[113,179,79,5.955428600311279],[113,180,64,5.97165060043335],[113,180,65,5.966513633728027],[113,180,66,5.960428237915039],[113,180,67,5.9564528465271],[113,180,68,5.955707550048828],[113,180,69,5.9557929039001465],[113,180,70,5.957937717437744],[113,180,71,5.9632954597473145],[113,180,72,5.967661380767822],[113,180,73,5.966158390045166],[113,180,74,5.969226360321045],[113,180,75,5.980562686920166],[113,180,76,5.990850448608398],[113,180,77,5.993145942687988],[113,180,78,5.98264741897583],[113,180,79,5.955428600311279],[113,181,64,5.97165060043335],[113,181,65,5.966513633728027],[113,181,66,5.960428237915039],[113,181,67,5.9564528465271],[113,181,68,5.955707550048828],[113,181,69,5.9557929039001465],[113,181,70,5.957937717437744],[113,181,71,5.9632954597473145],[113,181,72,5.967661380767822],[113,181,73,5.966158390045166],[113,181,74,5.969226360321045],[113,181,75,5.980562686920166],[113,181,76,5.990850448608398],[113,181,77,5.993145942687988],[113,181,78,5.98264741897583],[113,181,79,5.955428600311279],[113,182,64,5.97165060043335],[113,182,65,5.966513633728027],[113,182,66,5.960428237915039],[113,182,67,5.9564528465271],[113,182,68,5.955707550048828],[113,182,69,5.9557929039001465],[113,182,70,5.957937717437744],[113,182,71,5.9632954597473145],[113,182,72,5.967661380767822],[113,182,73,5.966158390045166],[113,182,74,5.969226360321045],[113,182,75,5.980562686920166],[113,182,76,5.990850448608398],[113,182,77,5.993145942687988],[113,182,78,5.98264741897583],[113,182,79,5.955428600311279],[113,183,64,5.97165060043335],[113,183,65,5.966513633728027],[113,183,66,5.960428237915039],[113,183,67,5.9564528465271],[113,183,68,5.955707550048828],[113,183,69,5.9557929039001465],[113,183,70,5.957937717437744],[113,183,71,5.9632954597473145],[113,183,72,5.967661380767822],[113,183,73,5.966158390045166],[113,183,74,5.969226360321045],[113,183,75,5.980562686920166],[113,183,76,5.990850448608398],[113,183,77,5.993145942687988],[113,183,78,5.98264741897583],[113,183,79,5.955428600311279],[113,184,64,5.97165060043335],[113,184,65,5.966513633728027],[113,184,66,5.960428237915039],[113,184,67,5.9564528465271],[113,184,68,5.955707550048828],[113,184,69,5.9557929039001465],[113,184,70,5.957937717437744],[113,184,71,5.9632954597473145],[113,184,72,5.967661380767822],[113,184,73,5.966158390045166],[113,184,74,5.969226360321045],[113,184,75,5.980562686920166],[113,184,76,5.990850448608398],[113,184,77,5.993145942687988],[113,184,78,5.98264741897583],[113,184,79,5.955428600311279],[113,185,64,5.97165060043335],[113,185,65,5.966513633728027],[113,185,66,5.960428237915039],[113,185,67,5.9564528465271],[113,185,68,5.955707550048828],[113,185,69,5.9557929039001465],[113,185,70,5.957937717437744],[113,185,71,5.9632954597473145],[113,185,72,5.967661380767822],[113,185,73,5.966158390045166],[113,185,74,5.969226360321045],[113,185,75,5.980562686920166],[113,185,76,5.990850448608398],[113,185,77,5.993145942687988],[113,185,78,5.98264741897583],[113,185,79,5.955428600311279],[113,186,64,5.97165060043335],[113,186,65,5.966513633728027],[113,186,66,5.960428237915039],[113,186,67,5.9564528465271],[113,186,68,5.955707550048828],[113,186,69,5.9557929039001465],[113,186,70,5.957937717437744],[113,186,71,5.9632954597473145],[113,186,72,5.967661380767822],[113,186,73,5.966158390045166],[113,186,74,5.969226360321045],[113,186,75,5.980562686920166],[113,186,76,5.990850448608398],[113,186,77,5.993145942687988],[113,186,78,5.98264741897583],[113,186,79,5.955428600311279],[113,187,64,5.97165060043335],[113,187,65,5.966513633728027],[113,187,66,5.960428237915039],[113,187,67,5.9564528465271],[113,187,68,5.955707550048828],[113,187,69,5.9557929039001465],[113,187,70,5.957937717437744],[113,187,71,5.9632954597473145],[113,187,72,5.967661380767822],[113,187,73,5.966158390045166],[113,187,74,5.969226360321045],[113,187,75,5.980562686920166],[113,187,76,5.990850448608398],[113,187,77,5.993145942687988],[113,187,78,5.98264741897583],[113,187,79,5.955428600311279],[113,188,64,5.97165060043335],[113,188,65,5.966513633728027],[113,188,66,5.960428237915039],[113,188,67,5.9564528465271],[113,188,68,5.955707550048828],[113,188,69,5.9557929039001465],[113,188,70,5.957937717437744],[113,188,71,5.9632954597473145],[113,188,72,5.967661380767822],[113,188,73,5.966158390045166],[113,188,74,5.969226360321045],[113,188,75,5.980562686920166],[113,188,76,5.990850448608398],[113,188,77,5.993145942687988],[113,188,78,5.98264741897583],[113,188,79,5.955428600311279],[113,189,64,5.97165060043335],[113,189,65,5.966513633728027],[113,189,66,5.960428237915039],[113,189,67,5.9564528465271],[113,189,68,5.955707550048828],[113,189,69,5.9557929039001465],[113,189,70,5.957937717437744],[113,189,71,5.9632954597473145],[113,189,72,5.967661380767822],[113,189,73,5.966158390045166],[113,189,74,5.969226360321045],[113,189,75,5.980562686920166],[113,189,76,5.990850448608398],[113,189,77,5.993145942687988],[113,189,78,5.98264741897583],[113,189,79,5.955428600311279],[113,190,64,5.97165060043335],[113,190,65,5.966513633728027],[113,190,66,5.960428237915039],[113,190,67,5.9564528465271],[113,190,68,5.955707550048828],[113,190,69,5.9557929039001465],[113,190,70,5.957937717437744],[113,190,71,5.9632954597473145],[113,190,72,5.967661380767822],[113,190,73,5.966158390045166],[113,190,74,5.969226360321045],[113,190,75,5.980562686920166],[113,190,76,5.990850448608398],[113,190,77,5.993145942687988],[113,190,78,5.98264741897583],[113,190,79,5.955428600311279],[113,191,64,5.97165060043335],[113,191,65,5.966513633728027],[113,191,66,5.960428237915039],[113,191,67,5.9564528465271],[113,191,68,5.955707550048828],[113,191,69,5.9557929039001465],[113,191,70,5.957937717437744],[113,191,71,5.9632954597473145],[113,191,72,5.967661380767822],[113,191,73,5.966158390045166],[113,191,74,5.969226360321045],[113,191,75,5.980562686920166],[113,191,76,5.990850448608398],[113,191,77,5.993145942687988],[113,191,78,5.98264741897583],[113,191,79,5.955428600311279],[113,192,64,5.97165060043335],[113,192,65,5.966513633728027],[113,192,66,5.960428237915039],[113,192,67,5.9564528465271],[113,192,68,5.955707550048828],[113,192,69,5.9557929039001465],[113,192,70,5.957937717437744],[113,192,71,5.9632954597473145],[113,192,72,5.967661380767822],[113,192,73,5.966158390045166],[113,192,74,5.969226360321045],[113,192,75,5.980562686920166],[113,192,76,5.990850448608398],[113,192,77,5.993145942687988],[113,192,78,5.98264741897583],[113,192,79,5.955428600311279],[113,193,64,5.97165060043335],[113,193,65,5.966513633728027],[113,193,66,5.960428237915039],[113,193,67,5.9564528465271],[113,193,68,5.955707550048828],[113,193,69,5.9557929039001465],[113,193,70,5.957937717437744],[113,193,71,5.9632954597473145],[113,193,72,5.967661380767822],[113,193,73,5.966158390045166],[113,193,74,5.969226360321045],[113,193,75,5.980562686920166],[113,193,76,5.990850448608398],[113,193,77,5.993145942687988],[113,193,78,5.98264741897583],[113,193,79,5.955428600311279],[113,194,64,5.97165060043335],[113,194,65,5.966513633728027],[113,194,66,5.960428237915039],[113,194,67,5.9564528465271],[113,194,68,5.955707550048828],[113,194,69,5.9557929039001465],[113,194,70,5.957937717437744],[113,194,71,5.9632954597473145],[113,194,72,5.967661380767822],[113,194,73,5.966158390045166],[113,194,74,5.969226360321045],[113,194,75,5.980562686920166],[113,194,76,5.990850448608398],[113,194,77,5.993145942687988],[113,194,78,5.98264741897583],[113,194,79,5.955428600311279],[113,195,64,5.97165060043335],[113,195,65,5.966513633728027],[113,195,66,5.960428237915039],[113,195,67,5.9564528465271],[113,195,68,5.955707550048828],[113,195,69,5.9557929039001465],[113,195,70,5.957937717437744],[113,195,71,5.9632954597473145],[113,195,72,5.967661380767822],[113,195,73,5.966158390045166],[113,195,74,5.969226360321045],[113,195,75,5.980562686920166],[113,195,76,5.990850448608398],[113,195,77,5.993145942687988],[113,195,78,5.98264741897583],[113,195,79,5.955428600311279],[113,196,64,5.97165060043335],[113,196,65,5.966513633728027],[113,196,66,5.960428237915039],[113,196,67,5.9564528465271],[113,196,68,5.955707550048828],[113,196,69,5.9557929039001465],[113,196,70,5.957937717437744],[113,196,71,5.9632954597473145],[113,196,72,5.967661380767822],[113,196,73,5.966158390045166],[113,196,74,5.969226360321045],[113,196,75,5.980562686920166],[113,196,76,5.990850448608398],[113,196,77,5.993145942687988],[113,196,78,5.98264741897583],[113,196,79,5.955428600311279],[113,197,64,5.97165060043335],[113,197,65,5.966513633728027],[113,197,66,5.960428237915039],[113,197,67,5.9564528465271],[113,197,68,5.955707550048828],[113,197,69,5.9557929039001465],[113,197,70,5.957937717437744],[113,197,71,5.9632954597473145],[113,197,72,5.967661380767822],[113,197,73,5.966158390045166],[113,197,74,5.969226360321045],[113,197,75,5.980562686920166],[113,197,76,5.990850448608398],[113,197,77,5.993145942687988],[113,197,78,5.98264741897583],[113,197,79,5.955428600311279],[113,198,64,5.97165060043335],[113,198,65,5.966513633728027],[113,198,66,5.960428237915039],[113,198,67,5.9564528465271],[113,198,68,5.955707550048828],[113,198,69,5.9557929039001465],[113,198,70,5.957937717437744],[113,198,71,5.9632954597473145],[113,198,72,5.967661380767822],[113,198,73,5.966158390045166],[113,198,74,5.969226360321045],[113,198,75,5.980562686920166],[113,198,76,5.990850448608398],[113,198,77,5.993145942687988],[113,198,78,5.98264741897583],[113,198,79,5.955428600311279],[113,199,64,5.97165060043335],[113,199,65,5.966513633728027],[113,199,66,5.960428237915039],[113,199,67,5.9564528465271],[113,199,68,5.955707550048828],[113,199,69,5.9557929039001465],[113,199,70,5.957937717437744],[113,199,71,5.9632954597473145],[113,199,72,5.967661380767822],[113,199,73,5.966158390045166],[113,199,74,5.969226360321045],[113,199,75,5.980562686920166],[113,199,76,5.990850448608398],[113,199,77,5.993145942687988],[113,199,78,5.98264741897583],[113,199,79,5.955428600311279],[113,200,64,5.97165060043335],[113,200,65,5.966513633728027],[113,200,66,5.960428237915039],[113,200,67,5.9564528465271],[113,200,68,5.955707550048828],[113,200,69,5.9557929039001465],[113,200,70,5.957937717437744],[113,200,71,5.9632954597473145],[113,200,72,5.967661380767822],[113,200,73,5.966158390045166],[113,200,74,5.969226360321045],[113,200,75,5.980562686920166],[113,200,76,5.990850448608398],[113,200,77,5.993145942687988],[113,200,78,5.98264741897583],[113,200,79,5.955428600311279],[113,201,64,5.97165060043335],[113,201,65,5.966513633728027],[113,201,66,5.960428237915039],[113,201,67,5.9564528465271],[113,201,68,5.955707550048828],[113,201,69,5.9557929039001465],[113,201,70,5.957937717437744],[113,201,71,5.9632954597473145],[113,201,72,5.967661380767822],[113,201,73,5.966158390045166],[113,201,74,5.969226360321045],[113,201,75,5.980562686920166],[113,201,76,5.990850448608398],[113,201,77,5.993145942687988],[113,201,78,5.98264741897583],[113,201,79,5.955428600311279],[113,202,64,5.97165060043335],[113,202,65,5.966513633728027],[113,202,66,5.960428237915039],[113,202,67,5.9564528465271],[113,202,68,5.955707550048828],[113,202,69,5.9557929039001465],[113,202,70,5.957937717437744],[113,202,71,5.9632954597473145],[113,202,72,5.967661380767822],[113,202,73,5.966158390045166],[113,202,74,5.969226360321045],[113,202,75,5.980562686920166],[113,202,76,5.990850448608398],[113,202,77,5.993145942687988],[113,202,78,5.98264741897583],[113,202,79,5.955428600311279],[113,203,64,5.97165060043335],[113,203,65,5.966513633728027],[113,203,66,5.960428237915039],[113,203,67,5.9564528465271],[113,203,68,5.955707550048828],[113,203,69,5.9557929039001465],[113,203,70,5.957937717437744],[113,203,71,5.9632954597473145],[113,203,72,5.967661380767822],[113,203,73,5.966158390045166],[113,203,74,5.969226360321045],[113,203,75,5.980562686920166],[113,203,76,5.990850448608398],[113,203,77,5.993145942687988],[113,203,78,5.98264741897583],[113,203,79,5.955428600311279],[113,204,64,5.97165060043335],[113,204,65,5.966513633728027],[113,204,66,5.960428237915039],[113,204,67,5.9564528465271],[113,204,68,5.955707550048828],[113,204,69,5.9557929039001465],[113,204,70,5.957937717437744],[113,204,71,5.9632954597473145],[113,204,72,5.967661380767822],[113,204,73,5.966158390045166],[113,204,74,5.969226360321045],[113,204,75,5.980562686920166],[113,204,76,5.990850448608398],[113,204,77,5.993145942687988],[113,204,78,5.98264741897583],[113,204,79,5.955428600311279],[113,205,64,5.97165060043335],[113,205,65,5.966513633728027],[113,205,66,5.960428237915039],[113,205,67,5.9564528465271],[113,205,68,5.955707550048828],[113,205,69,5.9557929039001465],[113,205,70,5.957937717437744],[113,205,71,5.9632954597473145],[113,205,72,5.967661380767822],[113,205,73,5.966158390045166],[113,205,74,5.969226360321045],[113,205,75,5.980562686920166],[113,205,76,5.990850448608398],[113,205,77,5.993145942687988],[113,205,78,5.98264741897583],[113,205,79,5.955428600311279],[113,206,64,5.97165060043335],[113,206,65,5.966513633728027],[113,206,66,5.960428237915039],[113,206,67,5.9564528465271],[113,206,68,5.955707550048828],[113,206,69,5.9557929039001465],[113,206,70,5.957937717437744],[113,206,71,5.9632954597473145],[113,206,72,5.967661380767822],[113,206,73,5.966158390045166],[113,206,74,5.969226360321045],[113,206,75,5.980562686920166],[113,206,76,5.990850448608398],[113,206,77,5.993145942687988],[113,206,78,5.98264741897583],[113,206,79,5.955428600311279],[113,207,64,5.97165060043335],[113,207,65,5.966513633728027],[113,207,66,5.960428237915039],[113,207,67,5.9564528465271],[113,207,68,5.955707550048828],[113,207,69,5.9557929039001465],[113,207,70,5.957937717437744],[113,207,71,5.9632954597473145],[113,207,72,5.967661380767822],[113,207,73,5.966158390045166],[113,207,74,5.969226360321045],[113,207,75,5.980562686920166],[113,207,76,5.990850448608398],[113,207,77,5.993145942687988],[113,207,78,5.98264741897583],[113,207,79,5.955428600311279],[113,208,64,5.97165060043335],[113,208,65,5.966513633728027],[113,208,66,5.960428237915039],[113,208,67,5.9564528465271],[113,208,68,5.955707550048828],[113,208,69,5.9557929039001465],[113,208,70,5.957937717437744],[113,208,71,5.9632954597473145],[113,208,72,5.967661380767822],[113,208,73,5.966158390045166],[113,208,74,5.969226360321045],[113,208,75,5.980562686920166],[113,208,76,5.990850448608398],[113,208,77,5.993145942687988],[113,208,78,5.98264741897583],[113,208,79,5.955428600311279],[113,209,64,5.97165060043335],[113,209,65,5.966513633728027],[113,209,66,5.960428237915039],[113,209,67,5.9564528465271],[113,209,68,5.955707550048828],[113,209,69,5.9557929039001465],[113,209,70,5.957937717437744],[113,209,71,5.9632954597473145],[113,209,72,5.967661380767822],[113,209,73,5.966158390045166],[113,209,74,5.969226360321045],[113,209,75,5.980562686920166],[113,209,76,5.990850448608398],[113,209,77,5.993145942687988],[113,209,78,5.98264741897583],[113,209,79,5.955428600311279],[113,210,64,5.97165060043335],[113,210,65,5.966513633728027],[113,210,66,5.960428237915039],[113,210,67,5.9564528465271],[113,210,68,5.955707550048828],[113,210,69,5.9557929039001465],[113,210,70,5.957937717437744],[113,210,71,5.9632954597473145],[113,210,72,5.967661380767822],[113,210,73,5.966158390045166],[113,210,74,5.969226360321045],[113,210,75,5.980562686920166],[113,210,76,5.990850448608398],[113,210,77,5.993145942687988],[113,210,78,5.98264741897583],[113,210,79,5.955428600311279],[113,211,64,5.97165060043335],[113,211,65,5.966513633728027],[113,211,66,5.960428237915039],[113,211,67,5.9564528465271],[113,211,68,5.955707550048828],[113,211,69,5.9557929039001465],[113,211,70,5.957937717437744],[113,211,71,5.9632954597473145],[113,211,72,5.967661380767822],[113,211,73,5.966158390045166],[113,211,74,5.969226360321045],[113,211,75,5.980562686920166],[113,211,76,5.990850448608398],[113,211,77,5.993145942687988],[113,211,78,5.98264741897583],[113,211,79,5.955428600311279],[113,212,64,5.97165060043335],[113,212,65,5.966513633728027],[113,212,66,5.960428237915039],[113,212,67,5.9564528465271],[113,212,68,5.955707550048828],[113,212,69,5.9557929039001465],[113,212,70,5.957937717437744],[113,212,71,5.9632954597473145],[113,212,72,5.967661380767822],[113,212,73,5.966158390045166],[113,212,74,5.969226360321045],[113,212,75,5.980562686920166],[113,212,76,5.990850448608398],[113,212,77,5.993145942687988],[113,212,78,5.98264741897583],[113,212,79,5.955428600311279],[113,213,64,5.97165060043335],[113,213,65,5.966513633728027],[113,213,66,5.960428237915039],[113,213,67,5.9564528465271],[113,213,68,5.955707550048828],[113,213,69,5.9557929039001465],[113,213,70,5.957937717437744],[113,213,71,5.9632954597473145],[113,213,72,5.967661380767822],[113,213,73,5.966158390045166],[113,213,74,5.969226360321045],[113,213,75,5.980562686920166],[113,213,76,5.990850448608398],[113,213,77,5.993145942687988],[113,213,78,5.98264741897583],[113,213,79,5.955428600311279],[113,214,64,5.97165060043335],[113,214,65,5.966513633728027],[113,214,66,5.960428237915039],[113,214,67,5.9564528465271],[113,214,68,5.955707550048828],[113,214,69,5.9557929039001465],[113,214,70,5.957937717437744],[113,214,71,5.9632954597473145],[113,214,72,5.967661380767822],[113,214,73,5.966158390045166],[113,214,74,5.969226360321045],[113,214,75,5.980562686920166],[113,214,76,5.990850448608398],[113,214,77,5.993145942687988],[113,214,78,5.98264741897583],[113,214,79,5.955428600311279],[113,215,64,5.97165060043335],[113,215,65,5.966513633728027],[113,215,66,5.960428237915039],[113,215,67,5.9564528465271],[113,215,68,5.955707550048828],[113,215,69,5.9557929039001465],[113,215,70,5.957937717437744],[113,215,71,5.9632954597473145],[113,215,72,5.967661380767822],[113,215,73,5.966158390045166],[113,215,74,5.969226360321045],[113,215,75,5.980562686920166],[113,215,76,5.990850448608398],[113,215,77,5.993145942687988],[113,215,78,5.98264741897583],[113,215,79,5.955428600311279],[113,216,64,5.97165060043335],[113,216,65,5.966513633728027],[113,216,66,5.960428237915039],[113,216,67,5.9564528465271],[113,216,68,5.955707550048828],[113,216,69,5.9557929039001465],[113,216,70,5.957937717437744],[113,216,71,5.9632954597473145],[113,216,72,5.967661380767822],[113,216,73,5.966158390045166],[113,216,74,5.969226360321045],[113,216,75,5.980562686920166],[113,216,76,5.990850448608398],[113,216,77,5.993145942687988],[113,216,78,5.98264741897583],[113,216,79,5.955428600311279],[113,217,64,5.97165060043335],[113,217,65,5.966513633728027],[113,217,66,5.960428237915039],[113,217,67,5.9564528465271],[113,217,68,5.955707550048828],[113,217,69,5.9557929039001465],[113,217,70,5.957937717437744],[113,217,71,5.9632954597473145],[113,217,72,5.967661380767822],[113,217,73,5.966158390045166],[113,217,74,5.969226360321045],[113,217,75,5.980562686920166],[113,217,76,5.990850448608398],[113,217,77,5.993145942687988],[113,217,78,5.98264741897583],[113,217,79,5.955428600311279],[113,218,64,5.97165060043335],[113,218,65,5.966513633728027],[113,218,66,5.960428237915039],[113,218,67,5.9564528465271],[113,218,68,5.955707550048828],[113,218,69,5.9557929039001465],[113,218,70,5.957937717437744],[113,218,71,5.9632954597473145],[113,218,72,5.967661380767822],[113,218,73,5.966158390045166],[113,218,74,5.969226360321045],[113,218,75,5.980562686920166],[113,218,76,5.990850448608398],[113,218,77,5.993145942687988],[113,218,78,5.98264741897583],[113,218,79,5.955428600311279],[113,219,64,5.97165060043335],[113,219,65,5.966513633728027],[113,219,66,5.960428237915039],[113,219,67,5.9564528465271],[113,219,68,5.955707550048828],[113,219,69,5.9557929039001465],[113,219,70,5.957937717437744],[113,219,71,5.9632954597473145],[113,219,72,5.967661380767822],[113,219,73,5.966158390045166],[113,219,74,5.969226360321045],[113,219,75,5.980562686920166],[113,219,76,5.990850448608398],[113,219,77,5.993145942687988],[113,219,78,5.98264741897583],[113,219,79,5.955428600311279],[113,220,64,5.97165060043335],[113,220,65,5.966513633728027],[113,220,66,5.960428237915039],[113,220,67,5.9564528465271],[113,220,68,5.955707550048828],[113,220,69,5.9557929039001465],[113,220,70,5.957937717437744],[113,220,71,5.9632954597473145],[113,220,72,5.967661380767822],[113,220,73,5.966158390045166],[113,220,74,5.969226360321045],[113,220,75,5.980562686920166],[113,220,76,5.990850448608398],[113,220,77,5.993145942687988],[113,220,78,5.98264741897583],[113,220,79,5.955428600311279],[113,221,64,5.97165060043335],[113,221,65,5.966513633728027],[113,221,66,5.960428237915039],[113,221,67,5.9564528465271],[113,221,68,5.955707550048828],[113,221,69,5.9557929039001465],[113,221,70,5.957937717437744],[113,221,71,5.9632954597473145],[113,221,72,5.967661380767822],[113,221,73,5.966158390045166],[113,221,74,5.969226360321045],[113,221,75,5.980562686920166],[113,221,76,5.990850448608398],[113,221,77,5.993145942687988],[113,221,78,5.98264741897583],[113,221,79,5.955428600311279],[113,222,64,5.97165060043335],[113,222,65,5.966513633728027],[113,222,66,5.960428237915039],[113,222,67,5.9564528465271],[113,222,68,5.955707550048828],[113,222,69,5.9557929039001465],[113,222,70,5.957937717437744],[113,222,71,5.9632954597473145],[113,222,72,5.967661380767822],[113,222,73,5.966158390045166],[113,222,74,5.969226360321045],[113,222,75,5.980562686920166],[113,222,76,5.990850448608398],[113,222,77,5.993145942687988],[113,222,78,5.98264741897583],[113,222,79,5.955428600311279],[113,223,64,5.97165060043335],[113,223,65,5.966513633728027],[113,223,66,5.960428237915039],[113,223,67,5.9564528465271],[113,223,68,5.955707550048828],[113,223,69,5.9557929039001465],[113,223,70,5.957937717437744],[113,223,71,5.9632954597473145],[113,223,72,5.967661380767822],[113,223,73,5.966158390045166],[113,223,74,5.969226360321045],[113,223,75,5.980562686920166],[113,223,76,5.990850448608398],[113,223,77,5.993145942687988],[113,223,78,5.98264741897583],[113,223,79,5.955428600311279],[113,224,64,5.97165060043335],[113,224,65,5.966513633728027],[113,224,66,5.960428237915039],[113,224,67,5.9564528465271],[113,224,68,5.955707550048828],[113,224,69,5.9557929039001465],[113,224,70,5.957937717437744],[113,224,71,5.9632954597473145],[113,224,72,5.967661380767822],[113,224,73,5.966158390045166],[113,224,74,5.969226360321045],[113,224,75,5.980562686920166],[113,224,76,5.990850448608398],[113,224,77,5.993145942687988],[113,224,78,5.98264741897583],[113,224,79,5.955428600311279],[113,225,64,5.97165060043335],[113,225,65,5.966513633728027],[113,225,66,5.960428237915039],[113,225,67,5.9564528465271],[113,225,68,5.955707550048828],[113,225,69,5.9557929039001465],[113,225,70,5.957937717437744],[113,225,71,5.9632954597473145],[113,225,72,5.967661380767822],[113,225,73,5.966158390045166],[113,225,74,5.969226360321045],[113,225,75,5.980562686920166],[113,225,76,5.990850448608398],[113,225,77,5.993145942687988],[113,225,78,5.98264741897583],[113,225,79,5.955428600311279],[113,226,64,5.97165060043335],[113,226,65,5.966513633728027],[113,226,66,5.960428237915039],[113,226,67,5.9564528465271],[113,226,68,5.955707550048828],[113,226,69,5.9557929039001465],[113,226,70,5.957937717437744],[113,226,71,5.9632954597473145],[113,226,72,5.967661380767822],[113,226,73,5.966158390045166],[113,226,74,5.969226360321045],[113,226,75,5.980562686920166],[113,226,76,5.990850448608398],[113,226,77,5.993145942687988],[113,226,78,5.98264741897583],[113,226,79,5.955428600311279],[113,227,64,5.97165060043335],[113,227,65,5.966513633728027],[113,227,66,5.960428237915039],[113,227,67,5.9564528465271],[113,227,68,5.955707550048828],[113,227,69,5.9557929039001465],[113,227,70,5.957937717437744],[113,227,71,5.9632954597473145],[113,227,72,5.967661380767822],[113,227,73,5.966158390045166],[113,227,74,5.969226360321045],[113,227,75,5.980562686920166],[113,227,76,5.990850448608398],[113,227,77,5.993145942687988],[113,227,78,5.98264741897583],[113,227,79,5.955428600311279],[113,228,64,5.97165060043335],[113,228,65,5.966513633728027],[113,228,66,5.960428237915039],[113,228,67,5.9564528465271],[113,228,68,5.955707550048828],[113,228,69,5.9557929039001465],[113,228,70,5.957937717437744],[113,228,71,5.9632954597473145],[113,228,72,5.967661380767822],[113,228,73,5.966158390045166],[113,228,74,5.969226360321045],[113,228,75,5.980562686920166],[113,228,76,5.990850448608398],[113,228,77,5.993145942687988],[113,228,78,5.98264741897583],[113,228,79,5.955428600311279],[113,229,64,5.97165060043335],[113,229,65,5.966513633728027],[113,229,66,5.960428237915039],[113,229,67,5.9564528465271],[113,229,68,5.955707550048828],[113,229,69,5.9557929039001465],[113,229,70,5.957937717437744],[113,229,71,5.9632954597473145],[113,229,72,5.967661380767822],[113,229,73,5.966158390045166],[113,229,74,5.969226360321045],[113,229,75,5.980562686920166],[113,229,76,5.990850448608398],[113,229,77,5.993145942687988],[113,229,78,5.98264741897583],[113,229,79,5.955428600311279],[113,230,64,5.97165060043335],[113,230,65,5.966513633728027],[113,230,66,5.960428237915039],[113,230,67,5.9564528465271],[113,230,68,5.955707550048828],[113,230,69,5.9557929039001465],[113,230,70,5.957937717437744],[113,230,71,5.9632954597473145],[113,230,72,5.967661380767822],[113,230,73,5.966158390045166],[113,230,74,5.969226360321045],[113,230,75,5.980562686920166],[113,230,76,5.990850448608398],[113,230,77,5.993145942687988],[113,230,78,5.98264741897583],[113,230,79,5.955428600311279],[113,231,64,5.97165060043335],[113,231,65,5.966513633728027],[113,231,66,5.960428237915039],[113,231,67,5.9564528465271],[113,231,68,5.955707550048828],[113,231,69,5.9557929039001465],[113,231,70,5.957937717437744],[113,231,71,5.9632954597473145],[113,231,72,5.967661380767822],[113,231,73,5.966158390045166],[113,231,74,5.969226360321045],[113,231,75,5.980562686920166],[113,231,76,5.990850448608398],[113,231,77,5.993145942687988],[113,231,78,5.98264741897583],[113,231,79,5.955428600311279],[113,232,64,5.97165060043335],[113,232,65,5.966513633728027],[113,232,66,5.960428237915039],[113,232,67,5.9564528465271],[113,232,68,5.955707550048828],[113,232,69,5.9557929039001465],[113,232,70,5.957937717437744],[113,232,71,5.9632954597473145],[113,232,72,5.967661380767822],[113,232,73,5.966158390045166],[113,232,74,5.969226360321045],[113,232,75,5.980562686920166],[113,232,76,5.990850448608398],[113,232,77,5.993145942687988],[113,232,78,5.98264741897583],[113,232,79,5.955428600311279],[113,233,64,5.97165060043335],[113,233,65,5.966513633728027],[113,233,66,5.960428237915039],[113,233,67,5.9564528465271],[113,233,68,5.955707550048828],[113,233,69,5.9557929039001465],[113,233,70,5.957937717437744],[113,233,71,5.9632954597473145],[113,233,72,5.967661380767822],[113,233,73,5.966158390045166],[113,233,74,5.969226360321045],[113,233,75,5.980562686920166],[113,233,76,5.990850448608398],[113,233,77,5.993145942687988],[113,233,78,5.98264741897583],[113,233,79,5.955428600311279],[113,234,64,5.97165060043335],[113,234,65,5.966513633728027],[113,234,66,5.960428237915039],[113,234,67,5.9564528465271],[113,234,68,5.955707550048828],[113,234,69,5.9557929039001465],[113,234,70,5.957937717437744],[113,234,71,5.9632954597473145],[113,234,72,5.967661380767822],[113,234,73,5.966158390045166],[113,234,74,5.969226360321045],[113,234,75,5.980562686920166],[113,234,76,5.990850448608398],[113,234,77,5.993145942687988],[113,234,78,5.98264741897583],[113,234,79,5.955428600311279],[113,235,64,5.97165060043335],[113,235,65,5.966513633728027],[113,235,66,5.960428237915039],[113,235,67,5.9564528465271],[113,235,68,5.955707550048828],[113,235,69,5.9557929039001465],[113,235,70,5.957937717437744],[113,235,71,5.9632954597473145],[113,235,72,5.967661380767822],[113,235,73,5.966158390045166],[113,235,74,5.969226360321045],[113,235,75,5.980562686920166],[113,235,76,5.990850448608398],[113,235,77,5.993145942687988],[113,235,78,5.98264741897583],[113,235,79,5.955428600311279],[113,236,64,5.97165060043335],[113,236,65,5.966513633728027],[113,236,66,5.960428237915039],[113,236,67,5.9564528465271],[113,236,68,5.955707550048828],[113,236,69,5.9557929039001465],[113,236,70,5.957937717437744],[113,236,71,5.9632954597473145],[113,236,72,5.967661380767822],[113,236,73,5.966158390045166],[113,236,74,5.969226360321045],[113,236,75,5.980562686920166],[113,236,76,5.990850448608398],[113,236,77,5.993145942687988],[113,236,78,5.98264741897583],[113,236,79,5.955428600311279],[113,237,64,5.97165060043335],[113,237,65,5.966513633728027],[113,237,66,5.960428237915039],[113,237,67,5.9564528465271],[113,237,68,5.955707550048828],[113,237,69,5.9557929039001465],[113,237,70,5.957937717437744],[113,237,71,5.9632954597473145],[113,237,72,5.967661380767822],[113,237,73,5.966158390045166],[113,237,74,5.969226360321045],[113,237,75,5.980562686920166],[113,237,76,5.990850448608398],[113,237,77,5.993145942687988],[113,237,78,5.98264741897583],[113,237,79,5.955428600311279],[113,238,64,5.97165060043335],[113,238,65,5.966513633728027],[113,238,66,5.960428237915039],[113,238,67,5.9564528465271],[113,238,68,5.955707550048828],[113,238,69,5.9557929039001465],[113,238,70,5.957937717437744],[113,238,71,5.9632954597473145],[113,238,72,5.967661380767822],[113,238,73,5.966158390045166],[113,238,74,5.969226360321045],[113,238,75,5.980562686920166],[113,238,76,5.990850448608398],[113,238,77,5.993145942687988],[113,238,78,5.98264741897583],[113,238,79,5.955428600311279],[113,239,64,5.97165060043335],[113,239,65,5.966513633728027],[113,239,66,5.960428237915039],[113,239,67,5.9564528465271],[113,239,68,5.955707550048828],[113,239,69,5.9557929039001465],[113,239,70,5.957937717437744],[113,239,71,5.9632954597473145],[113,239,72,5.967661380767822],[113,239,73,5.966158390045166],[113,239,74,5.969226360321045],[113,239,75,5.980562686920166],[113,239,76,5.990850448608398],[113,239,77,5.993145942687988],[113,239,78,5.98264741897583],[113,239,79,5.955428600311279],[113,240,64,5.97165060043335],[113,240,65,5.966513633728027],[113,240,66,5.960428237915039],[113,240,67,5.9564528465271],[113,240,68,5.955707550048828],[113,240,69,5.9557929039001465],[113,240,70,5.957937717437744],[113,240,71,5.9632954597473145],[113,240,72,5.967661380767822],[113,240,73,5.966158390045166],[113,240,74,5.969226360321045],[113,240,75,5.980562686920166],[113,240,76,5.990850448608398],[113,240,77,5.993145942687988],[113,240,78,5.98264741897583],[113,240,79,5.955428600311279],[113,241,64,5.97165060043335],[113,241,65,5.966513633728027],[113,241,66,5.960428237915039],[113,241,67,5.9564528465271],[113,241,68,5.955707550048828],[113,241,69,5.9557929039001465],[113,241,70,5.957937717437744],[113,241,71,5.9632954597473145],[113,241,72,5.967661380767822],[113,241,73,5.966158390045166],[113,241,74,5.969226360321045],[113,241,75,5.980562686920166],[113,241,76,5.990850448608398],[113,241,77,5.993145942687988],[113,241,78,5.98264741897583],[113,241,79,5.955428600311279],[113,242,64,5.97165060043335],[113,242,65,5.966513633728027],[113,242,66,5.960428237915039],[113,242,67,5.9564528465271],[113,242,68,5.955707550048828],[113,242,69,5.9557929039001465],[113,242,70,5.957937717437744],[113,242,71,5.9632954597473145],[113,242,72,5.967661380767822],[113,242,73,5.966158390045166],[113,242,74,5.969226360321045],[113,242,75,5.980562686920166],[113,242,76,5.990850448608398],[113,242,77,5.993145942687988],[113,242,78,5.98264741897583],[113,242,79,5.955428600311279],[113,243,64,5.97165060043335],[113,243,65,5.966513633728027],[113,243,66,5.960428237915039],[113,243,67,5.9564528465271],[113,243,68,5.955707550048828],[113,243,69,5.9557929039001465],[113,243,70,5.957937717437744],[113,243,71,5.9632954597473145],[113,243,72,5.967661380767822],[113,243,73,5.966158390045166],[113,243,74,5.969226360321045],[113,243,75,5.980562686920166],[113,243,76,5.990850448608398],[113,243,77,5.993145942687988],[113,243,78,5.98264741897583],[113,243,79,5.955428600311279],[113,244,64,5.97165060043335],[113,244,65,5.966513633728027],[113,244,66,5.960428237915039],[113,244,67,5.9564528465271],[113,244,68,5.955707550048828],[113,244,69,5.9557929039001465],[113,244,70,5.957937717437744],[113,244,71,5.9632954597473145],[113,244,72,5.967661380767822],[113,244,73,5.966158390045166],[113,244,74,5.969226360321045],[113,244,75,5.980562686920166],[113,244,76,5.990850448608398],[113,244,77,5.993145942687988],[113,244,78,5.98264741897583],[113,244,79,5.955428600311279],[113,245,64,5.97165060043335],[113,245,65,5.966513633728027],[113,245,66,5.960428237915039],[113,245,67,5.9564528465271],[113,245,68,5.955707550048828],[113,245,69,5.9557929039001465],[113,245,70,5.957937717437744],[113,245,71,5.9632954597473145],[113,245,72,5.967661380767822],[113,245,73,5.966158390045166],[113,245,74,5.969226360321045],[113,245,75,5.980562686920166],[113,245,76,5.990850448608398],[113,245,77,5.993145942687988],[113,245,78,5.98264741897583],[113,245,79,5.955428600311279],[113,246,64,5.97165060043335],[113,246,65,5.966513633728027],[113,246,66,5.960428237915039],[113,246,67,5.9564528465271],[113,246,68,5.955707550048828],[113,246,69,5.9557929039001465],[113,246,70,5.957937717437744],[113,246,71,5.9632954597473145],[113,246,72,5.967661380767822],[113,246,73,5.966158390045166],[113,246,74,5.969226360321045],[113,246,75,5.980562686920166],[113,246,76,5.990850448608398],[113,246,77,5.993145942687988],[113,246,78,5.98264741897583],[113,246,79,5.955428600311279],[113,247,64,5.97165060043335],[113,247,65,5.966513633728027],[113,247,66,5.960428237915039],[113,247,67,5.9564528465271],[113,247,68,5.955707550048828],[113,247,69,5.9557929039001465],[113,247,70,5.957937717437744],[113,247,71,5.9632954597473145],[113,247,72,5.967661380767822],[113,247,73,5.966158390045166],[113,247,74,5.969226360321045],[113,247,75,5.980562686920166],[113,247,76,5.990850448608398],[113,247,77,5.993145942687988],[113,247,78,5.98264741897583],[113,247,79,5.955428600311279],[113,248,64,5.97165060043335],[113,248,65,5.966513633728027],[113,248,66,5.960428237915039],[113,248,67,5.9564528465271],[113,248,68,5.955707550048828],[113,248,69,5.9557929039001465],[113,248,70,5.957937717437744],[113,248,71,5.9632954597473145],[113,248,72,5.967661380767822],[113,248,73,5.966158390045166],[113,248,74,5.969226360321045],[113,248,75,5.980562686920166],[113,248,76,5.990850448608398],[113,248,77,5.993145942687988],[113,248,78,5.98264741897583],[113,248,79,5.955428600311279],[113,249,64,5.97165060043335],[113,249,65,5.966513633728027],[113,249,66,5.960428237915039],[113,249,67,5.9564528465271],[113,249,68,5.955707550048828],[113,249,69,5.9557929039001465],[113,249,70,5.957937717437744],[113,249,71,5.9632954597473145],[113,249,72,5.967661380767822],[113,249,73,5.966158390045166],[113,249,74,5.969226360321045],[113,249,75,5.980562686920166],[113,249,76,5.990850448608398],[113,249,77,5.993145942687988],[113,249,78,5.98264741897583],[113,249,79,5.955428600311279],[113,250,64,5.97165060043335],[113,250,65,5.966513633728027],[113,250,66,5.960428237915039],[113,250,67,5.9564528465271],[113,250,68,5.955707550048828],[113,250,69,5.9557929039001465],[113,250,70,5.957937717437744],[113,250,71,5.9632954597473145],[113,250,72,5.967661380767822],[113,250,73,5.966158390045166],[113,250,74,5.969226360321045],[113,250,75,5.980562686920166],[113,250,76,5.990850448608398],[113,250,77,5.993145942687988],[113,250,78,5.98264741897583],[113,250,79,5.955428600311279],[113,251,64,5.97165060043335],[113,251,65,5.966513633728027],[113,251,66,5.960428237915039],[113,251,67,5.9564528465271],[113,251,68,5.955707550048828],[113,251,69,5.9557929039001465],[113,251,70,5.957937717437744],[113,251,71,5.9632954597473145],[113,251,72,5.967661380767822],[113,251,73,5.966158390045166],[113,251,74,5.969226360321045],[113,251,75,5.980562686920166],[113,251,76,5.990850448608398],[113,251,77,5.993145942687988],[113,251,78,5.98264741897583],[113,251,79,5.955428600311279],[113,252,64,5.97165060043335],[113,252,65,5.966513633728027],[113,252,66,5.960428237915039],[113,252,67,5.9564528465271],[113,252,68,5.955707550048828],[113,252,69,5.9557929039001465],[113,252,70,5.957937717437744],[113,252,71,5.9632954597473145],[113,252,72,5.967661380767822],[113,252,73,5.966158390045166],[113,252,74,5.969226360321045],[113,252,75,5.980562686920166],[113,252,76,5.990850448608398],[113,252,77,5.993145942687988],[113,252,78,5.98264741897583],[113,252,79,5.955428600311279],[113,253,64,5.97165060043335],[113,253,65,5.966513633728027],[113,253,66,5.960428237915039],[113,253,67,5.9564528465271],[113,253,68,5.955707550048828],[113,253,69,5.9557929039001465],[113,253,70,5.957937717437744],[113,253,71,5.9632954597473145],[113,253,72,5.967661380767822],[113,253,73,5.966158390045166],[113,253,74,5.969226360321045],[113,253,75,5.980562686920166],[113,253,76,5.990850448608398],[113,253,77,5.993145942687988],[113,253,78,5.98264741897583],[113,253,79,5.955428600311279],[113,254,64,5.97165060043335],[113,254,65,5.966513633728027],[113,254,66,5.960428237915039],[113,254,67,5.9564528465271],[113,254,68,5.955707550048828],[113,254,69,5.9557929039001465],[113,254,70,5.957937717437744],[113,254,71,5.9632954597473145],[113,254,72,5.967661380767822],[113,254,73,5.966158390045166],[113,254,74,5.969226360321045],[113,254,75,5.980562686920166],[113,254,76,5.990850448608398],[113,254,77,5.993145942687988],[113,254,78,5.98264741897583],[113,254,79,5.955428600311279],[113,255,64,5.97165060043335],[113,255,65,5.966513633728027],[113,255,66,5.960428237915039],[113,255,67,5.9564528465271],[113,255,68,5.955707550048828],[113,255,69,5.9557929039001465],[113,255,70,5.957937717437744],[113,255,71,5.9632954597473145],[113,255,72,5.967661380767822],[113,255,73,5.966158390045166],[113,255,74,5.969226360321045],[113,255,75,5.980562686920166],[113,255,76,5.990850448608398],[113,255,77,5.993145942687988],[113,255,78,5.98264741897583],[113,255,79,5.955428600311279],[113,256,64,5.97165060043335],[113,256,65,5.966513633728027],[113,256,66,5.960428237915039],[113,256,67,5.9564528465271],[113,256,68,5.955707550048828],[113,256,69,5.9557929039001465],[113,256,70,5.957937717437744],[113,256,71,5.9632954597473145],[113,256,72,5.967661380767822],[113,256,73,5.966158390045166],[113,256,74,5.969226360321045],[113,256,75,5.980562686920166],[113,256,76,5.990850448608398],[113,256,77,5.993145942687988],[113,256,78,5.98264741897583],[113,256,79,5.955428600311279],[113,257,64,5.97165060043335],[113,257,65,5.966513633728027],[113,257,66,5.960428237915039],[113,257,67,5.9564528465271],[113,257,68,5.955707550048828],[113,257,69,5.9557929039001465],[113,257,70,5.957937717437744],[113,257,71,5.9632954597473145],[113,257,72,5.967661380767822],[113,257,73,5.966158390045166],[113,257,74,5.969226360321045],[113,257,75,5.980562686920166],[113,257,76,5.990850448608398],[113,257,77,5.993145942687988],[113,257,78,5.98264741897583],[113,257,79,5.955428600311279],[113,258,64,5.97165060043335],[113,258,65,5.966513633728027],[113,258,66,5.960428237915039],[113,258,67,5.9564528465271],[113,258,68,5.955707550048828],[113,258,69,5.9557929039001465],[113,258,70,5.957937717437744],[113,258,71,5.9632954597473145],[113,258,72,5.967661380767822],[113,258,73,5.966158390045166],[113,258,74,5.969226360321045],[113,258,75,5.980562686920166],[113,258,76,5.990850448608398],[113,258,77,5.993145942687988],[113,258,78,5.98264741897583],[113,258,79,5.955428600311279],[113,259,64,5.97165060043335],[113,259,65,5.966513633728027],[113,259,66,5.960428237915039],[113,259,67,5.9564528465271],[113,259,68,5.955707550048828],[113,259,69,5.9557929039001465],[113,259,70,5.957937717437744],[113,259,71,5.9632954597473145],[113,259,72,5.967661380767822],[113,259,73,5.966158390045166],[113,259,74,5.969226360321045],[113,259,75,5.980562686920166],[113,259,76,5.990850448608398],[113,259,77,5.993145942687988],[113,259,78,5.98264741897583],[113,259,79,5.955428600311279],[113,260,64,5.97165060043335],[113,260,65,5.966513633728027],[113,260,66,5.960428237915039],[113,260,67,5.9564528465271],[113,260,68,5.955707550048828],[113,260,69,5.9557929039001465],[113,260,70,5.957937717437744],[113,260,71,5.9632954597473145],[113,260,72,5.967661380767822],[113,260,73,5.966158390045166],[113,260,74,5.969226360321045],[113,260,75,5.980562686920166],[113,260,76,5.990850448608398],[113,260,77,5.993145942687988],[113,260,78,5.98264741897583],[113,260,79,5.955428600311279],[113,261,64,5.97165060043335],[113,261,65,5.966513633728027],[113,261,66,5.960428237915039],[113,261,67,5.9564528465271],[113,261,68,5.955707550048828],[113,261,69,5.9557929039001465],[113,261,70,5.957937717437744],[113,261,71,5.9632954597473145],[113,261,72,5.967661380767822],[113,261,73,5.966158390045166],[113,261,74,5.969226360321045],[113,261,75,5.980562686920166],[113,261,76,5.990850448608398],[113,261,77,5.993145942687988],[113,261,78,5.98264741897583],[113,261,79,5.955428600311279],[113,262,64,5.97165060043335],[113,262,65,5.966513633728027],[113,262,66,5.960428237915039],[113,262,67,5.9564528465271],[113,262,68,5.955707550048828],[113,262,69,5.9557929039001465],[113,262,70,5.957937717437744],[113,262,71,5.9632954597473145],[113,262,72,5.967661380767822],[113,262,73,5.966158390045166],[113,262,74,5.969226360321045],[113,262,75,5.980562686920166],[113,262,76,5.990850448608398],[113,262,77,5.993145942687988],[113,262,78,5.98264741897583],[113,262,79,5.955428600311279],[113,263,64,5.97165060043335],[113,263,65,5.966513633728027],[113,263,66,5.960428237915039],[113,263,67,5.9564528465271],[113,263,68,5.955707550048828],[113,263,69,5.9557929039001465],[113,263,70,5.957937717437744],[113,263,71,5.9632954597473145],[113,263,72,5.967661380767822],[113,263,73,5.966158390045166],[113,263,74,5.969226360321045],[113,263,75,5.980562686920166],[113,263,76,5.990850448608398],[113,263,77,5.993145942687988],[113,263,78,5.98264741897583],[113,263,79,5.955428600311279],[113,264,64,5.97165060043335],[113,264,65,5.966513633728027],[113,264,66,5.960428237915039],[113,264,67,5.9564528465271],[113,264,68,5.955707550048828],[113,264,69,5.9557929039001465],[113,264,70,5.957937717437744],[113,264,71,5.9632954597473145],[113,264,72,5.967661380767822],[113,264,73,5.966158390045166],[113,264,74,5.969226360321045],[113,264,75,5.980562686920166],[113,264,76,5.990850448608398],[113,264,77,5.993145942687988],[113,264,78,5.98264741897583],[113,264,79,5.955428600311279],[113,265,64,5.97165060043335],[113,265,65,5.966513633728027],[113,265,66,5.960428237915039],[113,265,67,5.9564528465271],[113,265,68,5.955707550048828],[113,265,69,5.9557929039001465],[113,265,70,5.957937717437744],[113,265,71,5.9632954597473145],[113,265,72,5.967661380767822],[113,265,73,5.966158390045166],[113,265,74,5.969226360321045],[113,265,75,5.980562686920166],[113,265,76,5.990850448608398],[113,265,77,5.993145942687988],[113,265,78,5.98264741897583],[113,265,79,5.955428600311279],[113,266,64,5.97165060043335],[113,266,65,5.966513633728027],[113,266,66,5.960428237915039],[113,266,67,5.9564528465271],[113,266,68,5.955707550048828],[113,266,69,5.9557929039001465],[113,266,70,5.957937717437744],[113,266,71,5.9632954597473145],[113,266,72,5.967661380767822],[113,266,73,5.966158390045166],[113,266,74,5.969226360321045],[113,266,75,5.980562686920166],[113,266,76,5.990850448608398],[113,266,77,5.993145942687988],[113,266,78,5.98264741897583],[113,266,79,5.955428600311279],[113,267,64,5.97165060043335],[113,267,65,5.966513633728027],[113,267,66,5.960428237915039],[113,267,67,5.9564528465271],[113,267,68,5.955707550048828],[113,267,69,5.9557929039001465],[113,267,70,5.957937717437744],[113,267,71,5.9632954597473145],[113,267,72,5.967661380767822],[113,267,73,5.966158390045166],[113,267,74,5.969226360321045],[113,267,75,5.980562686920166],[113,267,76,5.990850448608398],[113,267,77,5.993145942687988],[113,267,78,5.98264741897583],[113,267,79,5.955428600311279],[113,268,64,5.97165060043335],[113,268,65,5.966513633728027],[113,268,66,5.960428237915039],[113,268,67,5.9564528465271],[113,268,68,5.955707550048828],[113,268,69,5.9557929039001465],[113,268,70,5.957937717437744],[113,268,71,5.9632954597473145],[113,268,72,5.967661380767822],[113,268,73,5.966158390045166],[113,268,74,5.969226360321045],[113,268,75,5.980562686920166],[113,268,76,5.990850448608398],[113,268,77,5.993145942687988],[113,268,78,5.98264741897583],[113,268,79,5.955428600311279],[113,269,64,5.97165060043335],[113,269,65,5.966513633728027],[113,269,66,5.960428237915039],[113,269,67,5.9564528465271],[113,269,68,5.955707550048828],[113,269,69,5.9557929039001465],[113,269,70,5.957937717437744],[113,269,71,5.9632954597473145],[113,269,72,5.967661380767822],[113,269,73,5.966158390045166],[113,269,74,5.969226360321045],[113,269,75,5.980562686920166],[113,269,76,5.990850448608398],[113,269,77,5.993145942687988],[113,269,78,5.98264741897583],[113,269,79,5.955428600311279],[113,270,64,5.97165060043335],[113,270,65,5.966513633728027],[113,270,66,5.960428237915039],[113,270,67,5.9564528465271],[113,270,68,5.955707550048828],[113,270,69,5.9557929039001465],[113,270,70,5.957937717437744],[113,270,71,5.9632954597473145],[113,270,72,5.967661380767822],[113,270,73,5.966158390045166],[113,270,74,5.969226360321045],[113,270,75,5.980562686920166],[113,270,76,5.990850448608398],[113,270,77,5.993145942687988],[113,270,78,5.98264741897583],[113,270,79,5.955428600311279],[113,271,64,5.97165060043335],[113,271,65,5.966513633728027],[113,271,66,5.960428237915039],[113,271,67,5.9564528465271],[113,271,68,5.955707550048828],[113,271,69,5.9557929039001465],[113,271,70,5.957937717437744],[113,271,71,5.9632954597473145],[113,271,72,5.967661380767822],[113,271,73,5.966158390045166],[113,271,74,5.969226360321045],[113,271,75,5.980562686920166],[113,271,76,5.990850448608398],[113,271,77,5.993145942687988],[113,271,78,5.98264741897583],[113,271,79,5.955428600311279],[113,272,64,5.97165060043335],[113,272,65,5.966513633728027],[113,272,66,5.960428237915039],[113,272,67,5.9564528465271],[113,272,68,5.955707550048828],[113,272,69,5.9557929039001465],[113,272,70,5.957937717437744],[113,272,71,5.9632954597473145],[113,272,72,5.967661380767822],[113,272,73,5.966158390045166],[113,272,74,5.969226360321045],[113,272,75,5.980562686920166],[113,272,76,5.990850448608398],[113,272,77,5.993145942687988],[113,272,78,5.98264741897583],[113,272,79,5.955428600311279],[113,273,64,5.97165060043335],[113,273,65,5.966513633728027],[113,273,66,5.960428237915039],[113,273,67,5.9564528465271],[113,273,68,5.955707550048828],[113,273,69,5.9557929039001465],[113,273,70,5.957937717437744],[113,273,71,5.9632954597473145],[113,273,72,5.967661380767822],[113,273,73,5.966158390045166],[113,273,74,5.969226360321045],[113,273,75,5.980562686920166],[113,273,76,5.990850448608398],[113,273,77,5.993145942687988],[113,273,78,5.98264741897583],[113,273,79,5.955428600311279],[113,274,64,5.97165060043335],[113,274,65,5.966513633728027],[113,274,66,5.960428237915039],[113,274,67,5.9564528465271],[113,274,68,5.955707550048828],[113,274,69,5.9557929039001465],[113,274,70,5.957937717437744],[113,274,71,5.9632954597473145],[113,274,72,5.967661380767822],[113,274,73,5.966158390045166],[113,274,74,5.969226360321045],[113,274,75,5.980562686920166],[113,274,76,5.990850448608398],[113,274,77,5.993145942687988],[113,274,78,5.98264741897583],[113,274,79,5.955428600311279],[113,275,64,5.97165060043335],[113,275,65,5.966513633728027],[113,275,66,5.960428237915039],[113,275,67,5.9564528465271],[113,275,68,5.955707550048828],[113,275,69,5.9557929039001465],[113,275,70,5.957937717437744],[113,275,71,5.9632954597473145],[113,275,72,5.967661380767822],[113,275,73,5.966158390045166],[113,275,74,5.969226360321045],[113,275,75,5.980562686920166],[113,275,76,5.990850448608398],[113,275,77,5.993145942687988],[113,275,78,5.98264741897583],[113,275,79,5.955428600311279],[113,276,64,5.97165060043335],[113,276,65,5.966513633728027],[113,276,66,5.960428237915039],[113,276,67,5.9564528465271],[113,276,68,5.955707550048828],[113,276,69,5.9557929039001465],[113,276,70,5.957937717437744],[113,276,71,5.9632954597473145],[113,276,72,5.967661380767822],[113,276,73,5.966158390045166],[113,276,74,5.969226360321045],[113,276,75,5.980562686920166],[113,276,76,5.990850448608398],[113,276,77,5.993145942687988],[113,276,78,5.98264741897583],[113,276,79,5.955428600311279],[113,277,64,5.97165060043335],[113,277,65,5.966513633728027],[113,277,66,5.960428237915039],[113,277,67,5.9564528465271],[113,277,68,5.955707550048828],[113,277,69,5.9557929039001465],[113,277,70,5.957937717437744],[113,277,71,5.9632954597473145],[113,277,72,5.967661380767822],[113,277,73,5.966158390045166],[113,277,74,5.969226360321045],[113,277,75,5.980562686920166],[113,277,76,5.990850448608398],[113,277,77,5.993145942687988],[113,277,78,5.98264741897583],[113,277,79,5.955428600311279],[113,278,64,5.97165060043335],[113,278,65,5.966513633728027],[113,278,66,5.960428237915039],[113,278,67,5.9564528465271],[113,278,68,5.955707550048828],[113,278,69,5.9557929039001465],[113,278,70,5.957937717437744],[113,278,71,5.9632954597473145],[113,278,72,5.967661380767822],[113,278,73,5.966158390045166],[113,278,74,5.969226360321045],[113,278,75,5.980562686920166],[113,278,76,5.990850448608398],[113,278,77,5.993145942687988],[113,278,78,5.98264741897583],[113,278,79,5.955428600311279],[113,279,64,5.97165060043335],[113,279,65,5.966513633728027],[113,279,66,5.960428237915039],[113,279,67,5.9564528465271],[113,279,68,5.955707550048828],[113,279,69,5.9557929039001465],[113,279,70,5.957937717437744],[113,279,71,5.9632954597473145],[113,279,72,5.967661380767822],[113,279,73,5.966158390045166],[113,279,74,5.969226360321045],[113,279,75,5.980562686920166],[113,279,76,5.990850448608398],[113,279,77,5.993145942687988],[113,279,78,5.98264741897583],[113,279,79,5.955428600311279],[113,280,64,5.97165060043335],[113,280,65,5.966513633728027],[113,280,66,5.960428237915039],[113,280,67,5.9564528465271],[113,280,68,5.955707550048828],[113,280,69,5.9557929039001465],[113,280,70,5.957937717437744],[113,280,71,5.9632954597473145],[113,280,72,5.967661380767822],[113,280,73,5.966158390045166],[113,280,74,5.969226360321045],[113,280,75,5.980562686920166],[113,280,76,5.990850448608398],[113,280,77,5.993145942687988],[113,280,78,5.98264741897583],[113,280,79,5.955428600311279],[113,281,64,5.97165060043335],[113,281,65,5.966513633728027],[113,281,66,5.960428237915039],[113,281,67,5.9564528465271],[113,281,68,5.955707550048828],[113,281,69,5.9557929039001465],[113,281,70,5.957937717437744],[113,281,71,5.9632954597473145],[113,281,72,5.967661380767822],[113,281,73,5.966158390045166],[113,281,74,5.969226360321045],[113,281,75,5.980562686920166],[113,281,76,5.990850448608398],[113,281,77,5.993145942687988],[113,281,78,5.98264741897583],[113,281,79,5.955428600311279],[113,282,64,5.97165060043335],[113,282,65,5.966513633728027],[113,282,66,5.960428237915039],[113,282,67,5.9564528465271],[113,282,68,5.955707550048828],[113,282,69,5.9557929039001465],[113,282,70,5.957937717437744],[113,282,71,5.9632954597473145],[113,282,72,5.967661380767822],[113,282,73,5.966158390045166],[113,282,74,5.969226360321045],[113,282,75,5.980562686920166],[113,282,76,5.990850448608398],[113,282,77,5.993145942687988],[113,282,78,5.98264741897583],[113,282,79,5.955428600311279],[113,283,64,5.97165060043335],[113,283,65,5.966513633728027],[113,283,66,5.960428237915039],[113,283,67,5.9564528465271],[113,283,68,5.955707550048828],[113,283,69,5.9557929039001465],[113,283,70,5.957937717437744],[113,283,71,5.9632954597473145],[113,283,72,5.967661380767822],[113,283,73,5.966158390045166],[113,283,74,5.969226360321045],[113,283,75,5.980562686920166],[113,283,76,5.990850448608398],[113,283,77,5.993145942687988],[113,283,78,5.98264741897583],[113,283,79,5.955428600311279],[113,284,64,5.97165060043335],[113,284,65,5.966513633728027],[113,284,66,5.960428237915039],[113,284,67,5.9564528465271],[113,284,68,5.955707550048828],[113,284,69,5.9557929039001465],[113,284,70,5.957937717437744],[113,284,71,5.9632954597473145],[113,284,72,5.967661380767822],[113,284,73,5.966158390045166],[113,284,74,5.969226360321045],[113,284,75,5.980562686920166],[113,284,76,5.990850448608398],[113,284,77,5.993145942687988],[113,284,78,5.98264741897583],[113,284,79,5.955428600311279],[113,285,64,5.97165060043335],[113,285,65,5.966513633728027],[113,285,66,5.960428237915039],[113,285,67,5.9564528465271],[113,285,68,5.955707550048828],[113,285,69,5.9557929039001465],[113,285,70,5.957937717437744],[113,285,71,5.9632954597473145],[113,285,72,5.967661380767822],[113,285,73,5.966158390045166],[113,285,74,5.969226360321045],[113,285,75,5.980562686920166],[113,285,76,5.990850448608398],[113,285,77,5.993145942687988],[113,285,78,5.98264741897583],[113,285,79,5.955428600311279],[113,286,64,5.97165060043335],[113,286,65,5.966513633728027],[113,286,66,5.960428237915039],[113,286,67,5.9564528465271],[113,286,68,5.955707550048828],[113,286,69,5.9557929039001465],[113,286,70,5.957937717437744],[113,286,71,5.9632954597473145],[113,286,72,5.967661380767822],[113,286,73,5.966158390045166],[113,286,74,5.969226360321045],[113,286,75,5.980562686920166],[113,286,76,5.990850448608398],[113,286,77,5.993145942687988],[113,286,78,5.98264741897583],[113,286,79,5.955428600311279],[113,287,64,5.97165060043335],[113,287,65,5.966513633728027],[113,287,66,5.960428237915039],[113,287,67,5.9564528465271],[113,287,68,5.955707550048828],[113,287,69,5.9557929039001465],[113,287,70,5.957937717437744],[113,287,71,5.9632954597473145],[113,287,72,5.967661380767822],[113,287,73,5.966158390045166],[113,287,74,5.969226360321045],[113,287,75,5.980562686920166],[113,287,76,5.990850448608398],[113,287,77,5.993145942687988],[113,287,78,5.98264741897583],[113,287,79,5.955428600311279],[113,288,64,5.97165060043335],[113,288,65,5.966513633728027],[113,288,66,5.960428237915039],[113,288,67,5.9564528465271],[113,288,68,5.955707550048828],[113,288,69,5.9557929039001465],[113,288,70,5.957937717437744],[113,288,71,5.9632954597473145],[113,288,72,5.967661380767822],[113,288,73,5.966158390045166],[113,288,74,5.969226360321045],[113,288,75,5.980562686920166],[113,288,76,5.990850448608398],[113,288,77,5.993145942687988],[113,288,78,5.98264741897583],[113,288,79,5.955428600311279],[113,289,64,5.97165060043335],[113,289,65,5.966513633728027],[113,289,66,5.960428237915039],[113,289,67,5.9564528465271],[113,289,68,5.955707550048828],[113,289,69,5.9557929039001465],[113,289,70,5.957937717437744],[113,289,71,5.9632954597473145],[113,289,72,5.967661380767822],[113,289,73,5.966158390045166],[113,289,74,5.969226360321045],[113,289,75,5.980562686920166],[113,289,76,5.990850448608398],[113,289,77,5.993145942687988],[113,289,78,5.98264741897583],[113,289,79,5.955428600311279],[113,290,64,5.97165060043335],[113,290,65,5.966513633728027],[113,290,66,5.960428237915039],[113,290,67,5.9564528465271],[113,290,68,5.955707550048828],[113,290,69,5.9557929039001465],[113,290,70,5.957937717437744],[113,290,71,5.9632954597473145],[113,290,72,5.967661380767822],[113,290,73,5.966158390045166],[113,290,74,5.969226360321045],[113,290,75,5.980562686920166],[113,290,76,5.990850448608398],[113,290,77,5.993145942687988],[113,290,78,5.98264741897583],[113,290,79,5.955428600311279],[113,291,64,5.97165060043335],[113,291,65,5.966513633728027],[113,291,66,5.960428237915039],[113,291,67,5.9564528465271],[113,291,68,5.955707550048828],[113,291,69,5.9557929039001465],[113,291,70,5.957937717437744],[113,291,71,5.9632954597473145],[113,291,72,5.967661380767822],[113,291,73,5.966158390045166],[113,291,74,5.969226360321045],[113,291,75,5.980562686920166],[113,291,76,5.990850448608398],[113,291,77,5.993145942687988],[113,291,78,5.98264741897583],[113,291,79,5.955428600311279],[113,292,64,5.97165060043335],[113,292,65,5.966513633728027],[113,292,66,5.960428237915039],[113,292,67,5.9564528465271],[113,292,68,5.955707550048828],[113,292,69,5.9557929039001465],[113,292,70,5.957937717437744],[113,292,71,5.9632954597473145],[113,292,72,5.967661380767822],[113,292,73,5.966158390045166],[113,292,74,5.969226360321045],[113,292,75,5.980562686920166],[113,292,76,5.990850448608398],[113,292,77,5.993145942687988],[113,292,78,5.98264741897583],[113,292,79,5.955428600311279],[113,293,64,5.97165060043335],[113,293,65,5.966513633728027],[113,293,66,5.960428237915039],[113,293,67,5.9564528465271],[113,293,68,5.955707550048828],[113,293,69,5.9557929039001465],[113,293,70,5.957937717437744],[113,293,71,5.9632954597473145],[113,293,72,5.967661380767822],[113,293,73,5.966158390045166],[113,293,74,5.969226360321045],[113,293,75,5.980562686920166],[113,293,76,5.990850448608398],[113,293,77,5.993145942687988],[113,293,78,5.98264741897583],[113,293,79,5.955428600311279],[113,294,64,5.97165060043335],[113,294,65,5.966513633728027],[113,294,66,5.960428237915039],[113,294,67,5.9564528465271],[113,294,68,5.955707550048828],[113,294,69,5.9557929039001465],[113,294,70,5.957937717437744],[113,294,71,5.9632954597473145],[113,294,72,5.967661380767822],[113,294,73,5.966158390045166],[113,294,74,5.969226360321045],[113,294,75,5.980562686920166],[113,294,76,5.990850448608398],[113,294,77,5.993145942687988],[113,294,78,5.98264741897583],[113,294,79,5.955428600311279],[113,295,64,5.97165060043335],[113,295,65,5.966513633728027],[113,295,66,5.960428237915039],[113,295,67,5.9564528465271],[113,295,68,5.955707550048828],[113,295,69,5.9557929039001465],[113,295,70,5.957937717437744],[113,295,71,5.9632954597473145],[113,295,72,5.967661380767822],[113,295,73,5.966158390045166],[113,295,74,5.969226360321045],[113,295,75,5.980562686920166],[113,295,76,5.990850448608398],[113,295,77,5.993145942687988],[113,295,78,5.98264741897583],[113,295,79,5.955428600311279],[113,296,64,5.97165060043335],[113,296,65,5.966513633728027],[113,296,66,5.960428237915039],[113,296,67,5.9564528465271],[113,296,68,5.955707550048828],[113,296,69,5.9557929039001465],[113,296,70,5.957937717437744],[113,296,71,5.9632954597473145],[113,296,72,5.967661380767822],[113,296,73,5.966158390045166],[113,296,74,5.969226360321045],[113,296,75,5.980562686920166],[113,296,76,5.990850448608398],[113,296,77,5.993145942687988],[113,296,78,5.98264741897583],[113,296,79,5.955428600311279],[113,297,64,5.97165060043335],[113,297,65,5.966513633728027],[113,297,66,5.960428237915039],[113,297,67,5.9564528465271],[113,297,68,5.955707550048828],[113,297,69,5.9557929039001465],[113,297,70,5.957937717437744],[113,297,71,5.9632954597473145],[113,297,72,5.967661380767822],[113,297,73,5.966158390045166],[113,297,74,5.969226360321045],[113,297,75,5.980562686920166],[113,297,76,5.990850448608398],[113,297,77,5.993145942687988],[113,297,78,5.98264741897583],[113,297,79,5.955428600311279],[113,298,64,5.97165060043335],[113,298,65,5.966513633728027],[113,298,66,5.960428237915039],[113,298,67,5.9564528465271],[113,298,68,5.955707550048828],[113,298,69,5.9557929039001465],[113,298,70,5.957937717437744],[113,298,71,5.9632954597473145],[113,298,72,5.967661380767822],[113,298,73,5.966158390045166],[113,298,74,5.969226360321045],[113,298,75,5.980562686920166],[113,298,76,5.990850448608398],[113,298,77,5.993145942687988],[113,298,78,5.98264741897583],[113,298,79,5.955428600311279],[113,299,64,5.97165060043335],[113,299,65,5.966513633728027],[113,299,66,5.960428237915039],[113,299,67,5.9564528465271],[113,299,68,5.955707550048828],[113,299,69,5.9557929039001465],[113,299,70,5.957937717437744],[113,299,71,5.9632954597473145],[113,299,72,5.967661380767822],[113,299,73,5.966158390045166],[113,299,74,5.969226360321045],[113,299,75,5.980562686920166],[113,299,76,5.990850448608398],[113,299,77,5.993145942687988],[113,299,78,5.98264741897583],[113,299,79,5.955428600311279],[113,300,64,5.97165060043335],[113,300,65,5.966513633728027],[113,300,66,5.960428237915039],[113,300,67,5.9564528465271],[113,300,68,5.955707550048828],[113,300,69,5.9557929039001465],[113,300,70,5.957937717437744],[113,300,71,5.9632954597473145],[113,300,72,5.967661380767822],[113,300,73,5.966158390045166],[113,300,74,5.969226360321045],[113,300,75,5.980562686920166],[113,300,76,5.990850448608398],[113,300,77,5.993145942687988],[113,300,78,5.98264741897583],[113,300,79,5.955428600311279],[113,301,64,5.97165060043335],[113,301,65,5.966513633728027],[113,301,66,5.960428237915039],[113,301,67,5.9564528465271],[113,301,68,5.955707550048828],[113,301,69,5.9557929039001465],[113,301,70,5.957937717437744],[113,301,71,5.9632954597473145],[113,301,72,5.967661380767822],[113,301,73,5.966158390045166],[113,301,74,5.969226360321045],[113,301,75,5.980562686920166],[113,301,76,5.990850448608398],[113,301,77,5.993145942687988],[113,301,78,5.98264741897583],[113,301,79,5.955428600311279],[113,302,64,5.97165060043335],[113,302,65,5.966513633728027],[113,302,66,5.960428237915039],[113,302,67,5.9564528465271],[113,302,68,5.955707550048828],[113,302,69,5.9557929039001465],[113,302,70,5.957937717437744],[113,302,71,5.9632954597473145],[113,302,72,5.967661380767822],[113,302,73,5.966158390045166],[113,302,74,5.969226360321045],[113,302,75,5.980562686920166],[113,302,76,5.990850448608398],[113,302,77,5.993145942687988],[113,302,78,5.98264741897583],[113,302,79,5.955428600311279],[113,303,64,5.97165060043335],[113,303,65,5.966513633728027],[113,303,66,5.960428237915039],[113,303,67,5.9564528465271],[113,303,68,5.955707550048828],[113,303,69,5.9557929039001465],[113,303,70,5.957937717437744],[113,303,71,5.9632954597473145],[113,303,72,5.967661380767822],[113,303,73,5.966158390045166],[113,303,74,5.969226360321045],[113,303,75,5.980562686920166],[113,303,76,5.990850448608398],[113,303,77,5.993145942687988],[113,303,78,5.98264741897583],[113,303,79,5.955428600311279],[113,304,64,5.97165060043335],[113,304,65,5.966513633728027],[113,304,66,5.960428237915039],[113,304,67,5.9564528465271],[113,304,68,5.955707550048828],[113,304,69,5.9557929039001465],[113,304,70,5.957937717437744],[113,304,71,5.9632954597473145],[113,304,72,5.967661380767822],[113,304,73,5.966158390045166],[113,304,74,5.969226360321045],[113,304,75,5.980562686920166],[113,304,76,5.990850448608398],[113,304,77,5.993145942687988],[113,304,78,5.98264741897583],[113,304,79,5.955428600311279],[113,305,64,5.97165060043335],[113,305,65,5.966513633728027],[113,305,66,5.960428237915039],[113,305,67,5.9564528465271],[113,305,68,5.955707550048828],[113,305,69,5.9557929039001465],[113,305,70,5.957937717437744],[113,305,71,5.9632954597473145],[113,305,72,5.967661380767822],[113,305,73,5.966158390045166],[113,305,74,5.969226360321045],[113,305,75,5.980562686920166],[113,305,76,5.990850448608398],[113,305,77,5.993145942687988],[113,305,78,5.98264741897583],[113,305,79,5.955428600311279],[113,306,64,5.97165060043335],[113,306,65,5.966513633728027],[113,306,66,5.960428237915039],[113,306,67,5.9564528465271],[113,306,68,5.955707550048828],[113,306,69,5.9557929039001465],[113,306,70,5.957937717437744],[113,306,71,5.9632954597473145],[113,306,72,5.967661380767822],[113,306,73,5.966158390045166],[113,306,74,5.969226360321045],[113,306,75,5.980562686920166],[113,306,76,5.990850448608398],[113,306,77,5.993145942687988],[113,306,78,5.98264741897583],[113,306,79,5.955428600311279],[113,307,64,5.97165060043335],[113,307,65,5.966513633728027],[113,307,66,5.960428237915039],[113,307,67,5.9564528465271],[113,307,68,5.955707550048828],[113,307,69,5.9557929039001465],[113,307,70,5.957937717437744],[113,307,71,5.9632954597473145],[113,307,72,5.967661380767822],[113,307,73,5.966158390045166],[113,307,74,5.969226360321045],[113,307,75,5.980562686920166],[113,307,76,5.990850448608398],[113,307,77,5.993145942687988],[113,307,78,5.98264741897583],[113,307,79,5.955428600311279],[113,308,64,5.97165060043335],[113,308,65,5.966513633728027],[113,308,66,5.960428237915039],[113,308,67,5.9564528465271],[113,308,68,5.955707550048828],[113,308,69,5.9557929039001465],[113,308,70,5.957937717437744],[113,308,71,5.9632954597473145],[113,308,72,5.967661380767822],[113,308,73,5.966158390045166],[113,308,74,5.969226360321045],[113,308,75,5.980562686920166],[113,308,76,5.990850448608398],[113,308,77,5.993145942687988],[113,308,78,5.98264741897583],[113,308,79,5.955428600311279],[113,309,64,5.97165060043335],[113,309,65,5.966513633728027],[113,309,66,5.960428237915039],[113,309,67,5.9564528465271],[113,309,68,5.955707550048828],[113,309,69,5.9557929039001465],[113,309,70,5.957937717437744],[113,309,71,5.9632954597473145],[113,309,72,5.967661380767822],[113,309,73,5.966158390045166],[113,309,74,5.969226360321045],[113,309,75,5.980562686920166],[113,309,76,5.990850448608398],[113,309,77,5.993145942687988],[113,309,78,5.98264741897583],[113,309,79,5.955428600311279],[113,310,64,5.97165060043335],[113,310,65,5.966513633728027],[113,310,66,5.960428237915039],[113,310,67,5.9564528465271],[113,310,68,5.955707550048828],[113,310,69,5.9557929039001465],[113,310,70,5.957937717437744],[113,310,71,5.9632954597473145],[113,310,72,5.967661380767822],[113,310,73,5.966158390045166],[113,310,74,5.969226360321045],[113,310,75,5.980562686920166],[113,310,76,5.990850448608398],[113,310,77,5.993145942687988],[113,310,78,5.98264741897583],[113,310,79,5.955428600311279],[113,311,64,5.97165060043335],[113,311,65,5.966513633728027],[113,311,66,5.960428237915039],[113,311,67,5.9564528465271],[113,311,68,5.955707550048828],[113,311,69,5.9557929039001465],[113,311,70,5.957937717437744],[113,311,71,5.9632954597473145],[113,311,72,5.967661380767822],[113,311,73,5.966158390045166],[113,311,74,5.969226360321045],[113,311,75,5.980562686920166],[113,311,76,5.990850448608398],[113,311,77,5.993145942687988],[113,311,78,5.98264741897583],[113,311,79,5.955428600311279],[113,312,64,5.97165060043335],[113,312,65,5.966513633728027],[113,312,66,5.960428237915039],[113,312,67,5.9564528465271],[113,312,68,5.955707550048828],[113,312,69,5.9557929039001465],[113,312,70,5.957937717437744],[113,312,71,5.9632954597473145],[113,312,72,5.967661380767822],[113,312,73,5.966158390045166],[113,312,74,5.969226360321045],[113,312,75,5.980562686920166],[113,312,76,5.990850448608398],[113,312,77,5.993145942687988],[113,312,78,5.98264741897583],[113,312,79,5.955428600311279],[113,313,64,5.97165060043335],[113,313,65,5.966513633728027],[113,313,66,5.960428237915039],[113,313,67,5.9564528465271],[113,313,68,5.955707550048828],[113,313,69,5.9557929039001465],[113,313,70,5.957937717437744],[113,313,71,5.9632954597473145],[113,313,72,5.967661380767822],[113,313,73,5.966158390045166],[113,313,74,5.969226360321045],[113,313,75,5.980562686920166],[113,313,76,5.990850448608398],[113,313,77,5.993145942687988],[113,313,78,5.98264741897583],[113,313,79,5.955428600311279],[113,314,64,5.97165060043335],[113,314,65,5.966513633728027],[113,314,66,5.960428237915039],[113,314,67,5.9564528465271],[113,314,68,5.955707550048828],[113,314,69,5.9557929039001465],[113,314,70,5.957937717437744],[113,314,71,5.9632954597473145],[113,314,72,5.967661380767822],[113,314,73,5.966158390045166],[113,314,74,5.969226360321045],[113,314,75,5.980562686920166],[113,314,76,5.990850448608398],[113,314,77,5.993145942687988],[113,314,78,5.98264741897583],[113,314,79,5.955428600311279],[113,315,64,5.97165060043335],[113,315,65,5.966513633728027],[113,315,66,5.960428237915039],[113,315,67,5.9564528465271],[113,315,68,5.955707550048828],[113,315,69,5.9557929039001465],[113,315,70,5.957937717437744],[113,315,71,5.9632954597473145],[113,315,72,5.967661380767822],[113,315,73,5.966158390045166],[113,315,74,5.969226360321045],[113,315,75,5.980562686920166],[113,315,76,5.990850448608398],[113,315,77,5.993145942687988],[113,315,78,5.98264741897583],[113,315,79,5.955428600311279],[113,316,64,5.97165060043335],[113,316,65,5.966513633728027],[113,316,66,5.960428237915039],[113,316,67,5.9564528465271],[113,316,68,5.955707550048828],[113,316,69,5.9557929039001465],[113,316,70,5.957937717437744],[113,316,71,5.9632954597473145],[113,316,72,5.967661380767822],[113,316,73,5.966158390045166],[113,316,74,5.969226360321045],[113,316,75,5.980562686920166],[113,316,76,5.990850448608398],[113,316,77,5.993145942687988],[113,316,78,5.98264741897583],[113,316,79,5.955428600311279],[113,317,64,5.97165060043335],[113,317,65,5.966513633728027],[113,317,66,5.960428237915039],[113,317,67,5.9564528465271],[113,317,68,5.955707550048828],[113,317,69,5.9557929039001465],[113,317,70,5.957937717437744],[113,317,71,5.9632954597473145],[113,317,72,5.967661380767822],[113,317,73,5.966158390045166],[113,317,74,5.969226360321045],[113,317,75,5.980562686920166],[113,317,76,5.990850448608398],[113,317,77,5.993145942687988],[113,317,78,5.98264741897583],[113,317,79,5.955428600311279],[113,318,64,5.97165060043335],[113,318,65,5.966513633728027],[113,318,66,5.960428237915039],[113,318,67,5.9564528465271],[113,318,68,5.955707550048828],[113,318,69,5.9557929039001465],[113,318,70,5.957937717437744],[113,318,71,5.9632954597473145],[113,318,72,5.967661380767822],[113,318,73,5.966158390045166],[113,318,74,5.969226360321045],[113,318,75,5.980562686920166],[113,318,76,5.990850448608398],[113,318,77,5.993145942687988],[113,318,78,5.98264741897583],[113,318,79,5.955428600311279],[113,319,64,5.97165060043335],[113,319,65,5.966513633728027],[113,319,66,5.960428237915039],[113,319,67,5.9564528465271],[113,319,68,5.955707550048828],[113,319,69,5.9557929039001465],[113,319,70,5.957937717437744],[113,319,71,5.9632954597473145],[113,319,72,5.967661380767822],[113,319,73,5.966158390045166],[113,319,74,5.969226360321045],[113,319,75,5.980562686920166],[113,319,76,5.990850448608398],[113,319,77,5.993145942687988],[113,319,78,5.98264741897583],[113,319,79,5.955428600311279],[114,-64,64,6.004017353057861],[114,-64,65,6.005990982055664],[114,-64,66,6.005512237548828],[114,-64,67,6.0021138191223145],[114,-64,68,5.998892784118652],[114,-64,69,5.994562149047852],[114,-64,70,5.99104118347168],[114,-64,71,5.989717483520508],[114,-64,72,5.989929676055908],[114,-64,73,5.989076137542725],[114,-64,74,5.987583160400391],[114,-64,75,5.996276378631592],[114,-64,76,6.015043258666992],[114,-64,77,6.035196781158447],[114,-64,78,6.042359828948975],[114,-64,79,6.033916473388672],[114,-63,64,6.004017353057861],[114,-63,65,6.005990982055664],[114,-63,66,6.005512237548828],[114,-63,67,6.0021138191223145],[114,-63,68,5.998892784118652],[114,-63,69,5.994562149047852],[114,-63,70,5.99104118347168],[114,-63,71,5.989717483520508],[114,-63,72,5.989929676055908],[114,-63,73,5.989076137542725],[114,-63,74,5.987583160400391],[114,-63,75,5.996276378631592],[114,-63,76,6.015043258666992],[114,-63,77,6.035196781158447],[114,-63,78,6.042359828948975],[114,-63,79,6.033916473388672],[114,-62,64,6.004017353057861],[114,-62,65,6.005990982055664],[114,-62,66,6.005512237548828],[114,-62,67,6.0021138191223145],[114,-62,68,5.998892784118652],[114,-62,69,5.994562149047852],[114,-62,70,5.99104118347168],[114,-62,71,5.989717483520508],[114,-62,72,5.989929676055908],[114,-62,73,5.989076137542725],[114,-62,74,5.987583160400391],[114,-62,75,5.996276378631592],[114,-62,76,6.015043258666992],[114,-62,77,6.035196781158447],[114,-62,78,6.042359828948975],[114,-62,79,6.033916473388672],[114,-61,64,6.004017353057861],[114,-61,65,6.005990982055664],[114,-61,66,6.005512237548828],[114,-61,67,6.0021138191223145],[114,-61,68,5.998892784118652],[114,-61,69,5.994562149047852],[114,-61,70,5.99104118347168],[114,-61,71,5.989717483520508],[114,-61,72,5.989929676055908],[114,-61,73,5.989076137542725],[114,-61,74,5.987583160400391],[114,-61,75,5.996276378631592],[114,-61,76,6.015043258666992],[114,-61,77,6.035196781158447],[114,-61,78,6.042359828948975],[114,-61,79,6.033916473388672],[114,-60,64,6.004017353057861],[114,-60,65,6.005990982055664],[114,-60,66,6.005512237548828],[114,-60,67,6.0021138191223145],[114,-60,68,5.998892784118652],[114,-60,69,5.994562149047852],[114,-60,70,5.99104118347168],[114,-60,71,5.989717483520508],[114,-60,72,5.989929676055908],[114,-60,73,5.989076137542725],[114,-60,74,5.987583160400391],[114,-60,75,5.996276378631592],[114,-60,76,6.015043258666992],[114,-60,77,6.035196781158447],[114,-60,78,6.042359828948975],[114,-60,79,6.033916473388672],[114,-59,64,6.004017353057861],[114,-59,65,6.005990982055664],[114,-59,66,6.005512237548828],[114,-59,67,6.0021138191223145],[114,-59,68,5.998892784118652],[114,-59,69,5.994562149047852],[114,-59,70,5.99104118347168],[114,-59,71,5.989717483520508],[114,-59,72,5.989929676055908],[114,-59,73,5.989076137542725],[114,-59,74,5.987583160400391],[114,-59,75,5.996276378631592],[114,-59,76,6.015043258666992],[114,-59,77,6.035196781158447],[114,-59,78,6.042359828948975],[114,-59,79,6.033916473388672],[114,-58,64,6.004017353057861],[114,-58,65,6.005990982055664],[114,-58,66,6.005512237548828],[114,-58,67,6.0021138191223145],[114,-58,68,5.998892784118652],[114,-58,69,5.994562149047852],[114,-58,70,5.99104118347168],[114,-58,71,5.989717483520508],[114,-58,72,5.989929676055908],[114,-58,73,5.989076137542725],[114,-58,74,5.987583160400391],[114,-58,75,5.996276378631592],[114,-58,76,6.015043258666992],[114,-58,77,6.035196781158447],[114,-58,78,6.042359828948975],[114,-58,79,6.033916473388672],[114,-57,64,6.004017353057861],[114,-57,65,6.005990982055664],[114,-57,66,6.005512237548828],[114,-57,67,6.0021138191223145],[114,-57,68,5.998892784118652],[114,-57,69,5.994562149047852],[114,-57,70,5.99104118347168],[114,-57,71,5.989717483520508],[114,-57,72,5.989929676055908],[114,-57,73,5.989076137542725],[114,-57,74,5.987583160400391],[114,-57,75,5.996276378631592],[114,-57,76,6.015043258666992],[114,-57,77,6.035196781158447],[114,-57,78,6.042359828948975],[114,-57,79,6.033916473388672],[114,-56,64,6.004017353057861],[114,-56,65,6.005990982055664],[114,-56,66,6.005512237548828],[114,-56,67,6.0021138191223145],[114,-56,68,5.998892784118652],[114,-56,69,5.994562149047852],[114,-56,70,5.99104118347168],[114,-56,71,5.989717483520508],[114,-56,72,5.989929676055908],[114,-56,73,5.989076137542725],[114,-56,74,5.987583160400391],[114,-56,75,5.996276378631592],[114,-56,76,6.015043258666992],[114,-56,77,6.035196781158447],[114,-56,78,6.042359828948975],[114,-56,79,6.033916473388672],[114,-55,64,6.004017353057861],[114,-55,65,6.005990982055664],[114,-55,66,6.005512237548828],[114,-55,67,6.0021138191223145],[114,-55,68,5.998892784118652],[114,-55,69,5.994562149047852],[114,-55,70,5.99104118347168],[114,-55,71,5.989717483520508],[114,-55,72,5.989929676055908],[114,-55,73,5.989076137542725],[114,-55,74,5.987583160400391],[114,-55,75,5.996276378631592],[114,-55,76,6.015043258666992],[114,-55,77,6.035196781158447],[114,-55,78,6.042359828948975],[114,-55,79,6.033916473388672],[114,-54,64,6.004017353057861],[114,-54,65,6.005990982055664],[114,-54,66,6.005512237548828],[114,-54,67,6.0021138191223145],[114,-54,68,5.998892784118652],[114,-54,69,5.994562149047852],[114,-54,70,5.99104118347168],[114,-54,71,5.989717483520508],[114,-54,72,5.989929676055908],[114,-54,73,5.989076137542725],[114,-54,74,5.987583160400391],[114,-54,75,5.996276378631592],[114,-54,76,6.015043258666992],[114,-54,77,6.035196781158447],[114,-54,78,6.042359828948975],[114,-54,79,6.033916473388672],[114,-53,64,6.004017353057861],[114,-53,65,6.005990982055664],[114,-53,66,6.005512237548828],[114,-53,67,6.0021138191223145],[114,-53,68,5.998892784118652],[114,-53,69,5.994562149047852],[114,-53,70,5.99104118347168],[114,-53,71,5.989717483520508],[114,-53,72,5.989929676055908],[114,-53,73,5.989076137542725],[114,-53,74,5.987583160400391],[114,-53,75,5.996276378631592],[114,-53,76,6.015043258666992],[114,-53,77,6.035196781158447],[114,-53,78,6.042359828948975],[114,-53,79,6.033916473388672],[114,-52,64,6.004017353057861],[114,-52,65,6.005990982055664],[114,-52,66,6.005512237548828],[114,-52,67,6.0021138191223145],[114,-52,68,5.998892784118652],[114,-52,69,5.994562149047852],[114,-52,70,5.99104118347168],[114,-52,71,5.989717483520508],[114,-52,72,5.989929676055908],[114,-52,73,5.989076137542725],[114,-52,74,5.987583160400391],[114,-52,75,5.996276378631592],[114,-52,76,6.015043258666992],[114,-52,77,6.035196781158447],[114,-52,78,6.042359828948975],[114,-52,79,6.033916473388672],[114,-51,64,6.004017353057861],[114,-51,65,6.005990982055664],[114,-51,66,6.005512237548828],[114,-51,67,6.0021138191223145],[114,-51,68,5.998892784118652],[114,-51,69,5.994562149047852],[114,-51,70,5.99104118347168],[114,-51,71,5.989717483520508],[114,-51,72,5.989929676055908],[114,-51,73,5.989076137542725],[114,-51,74,5.987583160400391],[114,-51,75,5.996276378631592],[114,-51,76,6.015043258666992],[114,-51,77,6.035196781158447],[114,-51,78,6.042359828948975],[114,-51,79,6.033916473388672],[114,-50,64,6.004017353057861],[114,-50,65,6.005990982055664],[114,-50,66,6.005512237548828],[114,-50,67,6.0021138191223145],[114,-50,68,5.998892784118652],[114,-50,69,5.994562149047852],[114,-50,70,5.99104118347168],[114,-50,71,5.989717483520508],[114,-50,72,5.989929676055908],[114,-50,73,5.989076137542725],[114,-50,74,5.987583160400391],[114,-50,75,5.996276378631592],[114,-50,76,6.015043258666992],[114,-50,77,6.035196781158447],[114,-50,78,6.042359828948975],[114,-50,79,6.033916473388672],[114,-49,64,6.004017353057861],[114,-49,65,6.005990982055664],[114,-49,66,6.005512237548828],[114,-49,67,6.0021138191223145],[114,-49,68,5.998892784118652],[114,-49,69,5.994562149047852],[114,-49,70,5.99104118347168],[114,-49,71,5.989717483520508],[114,-49,72,5.989929676055908],[114,-49,73,5.989076137542725],[114,-49,74,5.987583160400391],[114,-49,75,5.996276378631592],[114,-49,76,6.015043258666992],[114,-49,77,6.035196781158447],[114,-49,78,6.042359828948975],[114,-49,79,6.033916473388672],[114,-48,64,6.004017353057861],[114,-48,65,6.005990982055664],[114,-48,66,6.005512237548828],[114,-48,67,6.0021138191223145],[114,-48,68,5.998892784118652],[114,-48,69,5.994562149047852],[114,-48,70,5.99104118347168],[114,-48,71,5.989717483520508],[114,-48,72,5.989929676055908],[114,-48,73,5.989076137542725],[114,-48,74,5.987583160400391],[114,-48,75,5.996276378631592],[114,-48,76,6.015043258666992],[114,-48,77,6.035196781158447],[114,-48,78,6.042359828948975],[114,-48,79,6.033916473388672],[114,-47,64,6.004017353057861],[114,-47,65,6.005990982055664],[114,-47,66,6.005512237548828],[114,-47,67,6.0021138191223145],[114,-47,68,5.998892784118652],[114,-47,69,5.994562149047852],[114,-47,70,5.99104118347168],[114,-47,71,5.989717483520508],[114,-47,72,5.989929676055908],[114,-47,73,5.989076137542725],[114,-47,74,5.987583160400391],[114,-47,75,5.996276378631592],[114,-47,76,6.015043258666992],[114,-47,77,6.035196781158447],[114,-47,78,6.042359828948975],[114,-47,79,6.033916473388672],[114,-46,64,6.004017353057861],[114,-46,65,6.005990982055664],[114,-46,66,6.005512237548828],[114,-46,67,6.0021138191223145],[114,-46,68,5.998892784118652],[114,-46,69,5.994562149047852],[114,-46,70,5.99104118347168],[114,-46,71,5.989717483520508],[114,-46,72,5.989929676055908],[114,-46,73,5.989076137542725],[114,-46,74,5.987583160400391],[114,-46,75,5.996276378631592],[114,-46,76,6.015043258666992],[114,-46,77,6.035196781158447],[114,-46,78,6.042359828948975],[114,-46,79,6.033916473388672],[114,-45,64,6.004017353057861],[114,-45,65,6.005990982055664],[114,-45,66,6.005512237548828],[114,-45,67,6.0021138191223145],[114,-45,68,5.998892784118652],[114,-45,69,5.994562149047852],[114,-45,70,5.99104118347168],[114,-45,71,5.989717483520508],[114,-45,72,5.989929676055908],[114,-45,73,5.989076137542725],[114,-45,74,5.987583160400391],[114,-45,75,5.996276378631592],[114,-45,76,6.015043258666992],[114,-45,77,6.035196781158447],[114,-45,78,6.042359828948975],[114,-45,79,6.033916473388672],[114,-44,64,6.004017353057861],[114,-44,65,6.005990982055664],[114,-44,66,6.005512237548828],[114,-44,67,6.0021138191223145],[114,-44,68,5.998892784118652],[114,-44,69,5.994562149047852],[114,-44,70,5.99104118347168],[114,-44,71,5.989717483520508],[114,-44,72,5.989929676055908],[114,-44,73,5.989076137542725],[114,-44,74,5.987583160400391],[114,-44,75,5.996276378631592],[114,-44,76,6.015043258666992],[114,-44,77,6.035196781158447],[114,-44,78,6.042359828948975],[114,-44,79,6.033916473388672],[114,-43,64,6.004017353057861],[114,-43,65,6.005990982055664],[114,-43,66,6.005512237548828],[114,-43,67,6.0021138191223145],[114,-43,68,5.998892784118652],[114,-43,69,5.994562149047852],[114,-43,70,5.99104118347168],[114,-43,71,5.989717483520508],[114,-43,72,5.989929676055908],[114,-43,73,5.989076137542725],[114,-43,74,5.987583160400391],[114,-43,75,5.996276378631592],[114,-43,76,6.015043258666992],[114,-43,77,6.035196781158447],[114,-43,78,6.042359828948975],[114,-43,79,6.033916473388672],[114,-42,64,6.004017353057861],[114,-42,65,6.005990982055664],[114,-42,66,6.005512237548828],[114,-42,67,6.0021138191223145],[114,-42,68,5.998892784118652],[114,-42,69,5.994562149047852],[114,-42,70,5.99104118347168],[114,-42,71,5.989717483520508],[114,-42,72,5.989929676055908],[114,-42,73,5.989076137542725],[114,-42,74,5.987583160400391],[114,-42,75,5.996276378631592],[114,-42,76,6.015043258666992],[114,-42,77,6.035196781158447],[114,-42,78,6.042359828948975],[114,-42,79,6.033916473388672],[114,-41,64,6.004017353057861],[114,-41,65,6.005990982055664],[114,-41,66,6.005512237548828],[114,-41,67,6.0021138191223145],[114,-41,68,5.998892784118652],[114,-41,69,5.994562149047852],[114,-41,70,5.99104118347168],[114,-41,71,5.989717483520508],[114,-41,72,5.989929676055908],[114,-41,73,5.989076137542725],[114,-41,74,5.987583160400391],[114,-41,75,5.996276378631592],[114,-41,76,6.015043258666992],[114,-41,77,6.035196781158447],[114,-41,78,6.042359828948975],[114,-41,79,6.033916473388672],[114,-40,64,6.004017353057861],[114,-40,65,6.005990982055664],[114,-40,66,6.005512237548828],[114,-40,67,6.0021138191223145],[114,-40,68,5.998892784118652],[114,-40,69,5.994562149047852],[114,-40,70,5.99104118347168],[114,-40,71,5.989717483520508],[114,-40,72,5.989929676055908],[114,-40,73,5.989076137542725],[114,-40,74,5.987583160400391],[114,-40,75,5.996276378631592],[114,-40,76,6.015043258666992],[114,-40,77,6.035196781158447],[114,-40,78,6.042359828948975],[114,-40,79,6.033916473388672],[114,-39,64,6.004017353057861],[114,-39,65,6.005990982055664],[114,-39,66,6.005512237548828],[114,-39,67,6.0021138191223145],[114,-39,68,5.998892784118652],[114,-39,69,5.994562149047852],[114,-39,70,5.99104118347168],[114,-39,71,5.989717483520508],[114,-39,72,5.989929676055908],[114,-39,73,5.989076137542725],[114,-39,74,5.987583160400391],[114,-39,75,5.996276378631592],[114,-39,76,6.015043258666992],[114,-39,77,6.035196781158447],[114,-39,78,6.042359828948975],[114,-39,79,6.033916473388672],[114,-38,64,6.004017353057861],[114,-38,65,6.005990982055664],[114,-38,66,6.005512237548828],[114,-38,67,6.0021138191223145],[114,-38,68,5.998892784118652],[114,-38,69,5.994562149047852],[114,-38,70,5.99104118347168],[114,-38,71,5.989717483520508],[114,-38,72,5.989929676055908],[114,-38,73,5.989076137542725],[114,-38,74,5.987583160400391],[114,-38,75,5.996276378631592],[114,-38,76,6.015043258666992],[114,-38,77,6.035196781158447],[114,-38,78,6.042359828948975],[114,-38,79,6.033916473388672],[114,-37,64,6.004017353057861],[114,-37,65,6.005990982055664],[114,-37,66,6.005512237548828],[114,-37,67,6.0021138191223145],[114,-37,68,5.998892784118652],[114,-37,69,5.994562149047852],[114,-37,70,5.99104118347168],[114,-37,71,5.989717483520508],[114,-37,72,5.989929676055908],[114,-37,73,5.989076137542725],[114,-37,74,5.987583160400391],[114,-37,75,5.996276378631592],[114,-37,76,6.015043258666992],[114,-37,77,6.035196781158447],[114,-37,78,6.042359828948975],[114,-37,79,6.033916473388672],[114,-36,64,6.004017353057861],[114,-36,65,6.005990982055664],[114,-36,66,6.005512237548828],[114,-36,67,6.0021138191223145],[114,-36,68,5.998892784118652],[114,-36,69,5.994562149047852],[114,-36,70,5.99104118347168],[114,-36,71,5.989717483520508],[114,-36,72,5.989929676055908],[114,-36,73,5.989076137542725],[114,-36,74,5.987583160400391],[114,-36,75,5.996276378631592],[114,-36,76,6.015043258666992],[114,-36,77,6.035196781158447],[114,-36,78,6.042359828948975],[114,-36,79,6.033916473388672],[114,-35,64,6.004017353057861],[114,-35,65,6.005990982055664],[114,-35,66,6.005512237548828],[114,-35,67,6.0021138191223145],[114,-35,68,5.998892784118652],[114,-35,69,5.994562149047852],[114,-35,70,5.99104118347168],[114,-35,71,5.989717483520508],[114,-35,72,5.989929676055908],[114,-35,73,5.989076137542725],[114,-35,74,5.987583160400391],[114,-35,75,5.996276378631592],[114,-35,76,6.015043258666992],[114,-35,77,6.035196781158447],[114,-35,78,6.042359828948975],[114,-35,79,6.033916473388672],[114,-34,64,6.004017353057861],[114,-34,65,6.005990982055664],[114,-34,66,6.005512237548828],[114,-34,67,6.0021138191223145],[114,-34,68,5.998892784118652],[114,-34,69,5.994562149047852],[114,-34,70,5.99104118347168],[114,-34,71,5.989717483520508],[114,-34,72,5.989929676055908],[114,-34,73,5.989076137542725],[114,-34,74,5.987583160400391],[114,-34,75,5.996276378631592],[114,-34,76,6.015043258666992],[114,-34,77,6.035196781158447],[114,-34,78,6.042359828948975],[114,-34,79,6.033916473388672],[114,-33,64,6.004017353057861],[114,-33,65,6.005990982055664],[114,-33,66,6.005512237548828],[114,-33,67,6.0021138191223145],[114,-33,68,5.998892784118652],[114,-33,69,5.994562149047852],[114,-33,70,5.99104118347168],[114,-33,71,5.989717483520508],[114,-33,72,5.989929676055908],[114,-33,73,5.989076137542725],[114,-33,74,5.987583160400391],[114,-33,75,5.996276378631592],[114,-33,76,6.015043258666992],[114,-33,77,6.035196781158447],[114,-33,78,6.042359828948975],[114,-33,79,6.033916473388672],[114,-32,64,6.004017353057861],[114,-32,65,6.005990982055664],[114,-32,66,6.005512237548828],[114,-32,67,6.0021138191223145],[114,-32,68,5.998892784118652],[114,-32,69,5.994562149047852],[114,-32,70,5.99104118347168],[114,-32,71,5.989717483520508],[114,-32,72,5.989929676055908],[114,-32,73,5.989076137542725],[114,-32,74,5.987583160400391],[114,-32,75,5.996276378631592],[114,-32,76,6.015043258666992],[114,-32,77,6.035196781158447],[114,-32,78,6.042359828948975],[114,-32,79,6.033916473388672],[114,-31,64,6.004017353057861],[114,-31,65,6.005990982055664],[114,-31,66,6.005512237548828],[114,-31,67,6.0021138191223145],[114,-31,68,5.998892784118652],[114,-31,69,5.994562149047852],[114,-31,70,5.99104118347168],[114,-31,71,5.989717483520508],[114,-31,72,5.989929676055908],[114,-31,73,5.989076137542725],[114,-31,74,5.987583160400391],[114,-31,75,5.996276378631592],[114,-31,76,6.015043258666992],[114,-31,77,6.035196781158447],[114,-31,78,6.042359828948975],[114,-31,79,6.033916473388672],[114,-30,64,6.004017353057861],[114,-30,65,6.005990982055664],[114,-30,66,6.005512237548828],[114,-30,67,6.0021138191223145],[114,-30,68,5.998892784118652],[114,-30,69,5.994562149047852],[114,-30,70,5.99104118347168],[114,-30,71,5.989717483520508],[114,-30,72,5.989929676055908],[114,-30,73,5.989076137542725],[114,-30,74,5.987583160400391],[114,-30,75,5.996276378631592],[114,-30,76,6.015043258666992],[114,-30,77,6.035196781158447],[114,-30,78,6.042359828948975],[114,-30,79,6.033916473388672],[114,-29,64,6.004017353057861],[114,-29,65,6.005990982055664],[114,-29,66,6.005512237548828],[114,-29,67,6.0021138191223145],[114,-29,68,5.998892784118652],[114,-29,69,5.994562149047852],[114,-29,70,5.99104118347168],[114,-29,71,5.989717483520508],[114,-29,72,5.989929676055908],[114,-29,73,5.989076137542725],[114,-29,74,5.987583160400391],[114,-29,75,5.996276378631592],[114,-29,76,6.015043258666992],[114,-29,77,6.035196781158447],[114,-29,78,6.042359828948975],[114,-29,79,6.033916473388672],[114,-28,64,6.004017353057861],[114,-28,65,6.005990982055664],[114,-28,66,6.005512237548828],[114,-28,67,6.0021138191223145],[114,-28,68,5.998892784118652],[114,-28,69,5.994562149047852],[114,-28,70,5.99104118347168],[114,-28,71,5.989717483520508],[114,-28,72,5.989929676055908],[114,-28,73,5.989076137542725],[114,-28,74,5.987583160400391],[114,-28,75,5.996276378631592],[114,-28,76,6.015043258666992],[114,-28,77,6.035196781158447],[114,-28,78,6.042359828948975],[114,-28,79,6.033916473388672],[114,-27,64,6.004017353057861],[114,-27,65,6.005990982055664],[114,-27,66,6.005512237548828],[114,-27,67,6.0021138191223145],[114,-27,68,5.998892784118652],[114,-27,69,5.994562149047852],[114,-27,70,5.99104118347168],[114,-27,71,5.989717483520508],[114,-27,72,5.989929676055908],[114,-27,73,5.989076137542725],[114,-27,74,5.987583160400391],[114,-27,75,5.996276378631592],[114,-27,76,6.015043258666992],[114,-27,77,6.035196781158447],[114,-27,78,6.042359828948975],[114,-27,79,6.033916473388672],[114,-26,64,6.004017353057861],[114,-26,65,6.005990982055664],[114,-26,66,6.005512237548828],[114,-26,67,6.0021138191223145],[114,-26,68,5.998892784118652],[114,-26,69,5.994562149047852],[114,-26,70,5.99104118347168],[114,-26,71,5.989717483520508],[114,-26,72,5.989929676055908],[114,-26,73,5.989076137542725],[114,-26,74,5.987583160400391],[114,-26,75,5.996276378631592],[114,-26,76,6.015043258666992],[114,-26,77,6.035196781158447],[114,-26,78,6.042359828948975],[114,-26,79,6.033916473388672],[114,-25,64,6.004017353057861],[114,-25,65,6.005990982055664],[114,-25,66,6.005512237548828],[114,-25,67,6.0021138191223145],[114,-25,68,5.998892784118652],[114,-25,69,5.994562149047852],[114,-25,70,5.99104118347168],[114,-25,71,5.989717483520508],[114,-25,72,5.989929676055908],[114,-25,73,5.989076137542725],[114,-25,74,5.987583160400391],[114,-25,75,5.996276378631592],[114,-25,76,6.015043258666992],[114,-25,77,6.035196781158447],[114,-25,78,6.042359828948975],[114,-25,79,6.033916473388672],[114,-24,64,6.004017353057861],[114,-24,65,6.005990982055664],[114,-24,66,6.005512237548828],[114,-24,67,6.0021138191223145],[114,-24,68,5.998892784118652],[114,-24,69,5.994562149047852],[114,-24,70,5.99104118347168],[114,-24,71,5.989717483520508],[114,-24,72,5.989929676055908],[114,-24,73,5.989076137542725],[114,-24,74,5.987583160400391],[114,-24,75,5.996276378631592],[114,-24,76,6.015043258666992],[114,-24,77,6.035196781158447],[114,-24,78,6.042359828948975],[114,-24,79,6.033916473388672],[114,-23,64,6.004017353057861],[114,-23,65,6.005990982055664],[114,-23,66,6.005512237548828],[114,-23,67,6.0021138191223145],[114,-23,68,5.998892784118652],[114,-23,69,5.994562149047852],[114,-23,70,5.99104118347168],[114,-23,71,5.989717483520508],[114,-23,72,5.989929676055908],[114,-23,73,5.989076137542725],[114,-23,74,5.987583160400391],[114,-23,75,5.996276378631592],[114,-23,76,6.015043258666992],[114,-23,77,6.035196781158447],[114,-23,78,6.042359828948975],[114,-23,79,6.033916473388672],[114,-22,64,6.004017353057861],[114,-22,65,6.005990982055664],[114,-22,66,6.005512237548828],[114,-22,67,6.0021138191223145],[114,-22,68,5.998892784118652],[114,-22,69,5.994562149047852],[114,-22,70,5.99104118347168],[114,-22,71,5.989717483520508],[114,-22,72,5.989929676055908],[114,-22,73,5.989076137542725],[114,-22,74,5.987583160400391],[114,-22,75,5.996276378631592],[114,-22,76,6.015043258666992],[114,-22,77,6.035196781158447],[114,-22,78,6.042359828948975],[114,-22,79,6.033916473388672],[114,-21,64,6.004017353057861],[114,-21,65,6.005990982055664],[114,-21,66,6.005512237548828],[114,-21,67,6.0021138191223145],[114,-21,68,5.998892784118652],[114,-21,69,5.994562149047852],[114,-21,70,5.99104118347168],[114,-21,71,5.989717483520508],[114,-21,72,5.989929676055908],[114,-21,73,5.989076137542725],[114,-21,74,5.987583160400391],[114,-21,75,5.996276378631592],[114,-21,76,6.015043258666992],[114,-21,77,6.035196781158447],[114,-21,78,6.042359828948975],[114,-21,79,6.033916473388672],[114,-20,64,6.004017353057861],[114,-20,65,6.005990982055664],[114,-20,66,6.005512237548828],[114,-20,67,6.0021138191223145],[114,-20,68,5.998892784118652],[114,-20,69,5.994562149047852],[114,-20,70,5.99104118347168],[114,-20,71,5.989717483520508],[114,-20,72,5.989929676055908],[114,-20,73,5.989076137542725],[114,-20,74,5.987583160400391],[114,-20,75,5.996276378631592],[114,-20,76,6.015043258666992],[114,-20,77,6.035196781158447],[114,-20,78,6.042359828948975],[114,-20,79,6.033916473388672],[114,-19,64,6.004017353057861],[114,-19,65,6.005990982055664],[114,-19,66,6.005512237548828],[114,-19,67,6.0021138191223145],[114,-19,68,5.998892784118652],[114,-19,69,5.994562149047852],[114,-19,70,5.99104118347168],[114,-19,71,5.989717483520508],[114,-19,72,5.989929676055908],[114,-19,73,5.989076137542725],[114,-19,74,5.987583160400391],[114,-19,75,5.996276378631592],[114,-19,76,6.015043258666992],[114,-19,77,6.035196781158447],[114,-19,78,6.042359828948975],[114,-19,79,6.033916473388672],[114,-18,64,6.004017353057861],[114,-18,65,6.005990982055664],[114,-18,66,6.005512237548828],[114,-18,67,6.0021138191223145],[114,-18,68,5.998892784118652],[114,-18,69,5.994562149047852],[114,-18,70,5.99104118347168],[114,-18,71,5.989717483520508],[114,-18,72,5.989929676055908],[114,-18,73,5.989076137542725],[114,-18,74,5.987583160400391],[114,-18,75,5.996276378631592],[114,-18,76,6.015043258666992],[114,-18,77,6.035196781158447],[114,-18,78,6.042359828948975],[114,-18,79,6.033916473388672],[114,-17,64,6.004017353057861],[114,-17,65,6.005990982055664],[114,-17,66,6.005512237548828],[114,-17,67,6.0021138191223145],[114,-17,68,5.998892784118652],[114,-17,69,5.994562149047852],[114,-17,70,5.99104118347168],[114,-17,71,5.989717483520508],[114,-17,72,5.989929676055908],[114,-17,73,5.989076137542725],[114,-17,74,5.987583160400391],[114,-17,75,5.996276378631592],[114,-17,76,6.015043258666992],[114,-17,77,6.035196781158447],[114,-17,78,6.042359828948975],[114,-17,79,6.033916473388672],[114,-16,64,6.004017353057861],[114,-16,65,6.005990982055664],[114,-16,66,6.005512237548828],[114,-16,67,6.0021138191223145],[114,-16,68,5.998892784118652],[114,-16,69,5.994562149047852],[114,-16,70,5.99104118347168],[114,-16,71,5.989717483520508],[114,-16,72,5.989929676055908],[114,-16,73,5.989076137542725],[114,-16,74,5.987583160400391],[114,-16,75,5.996276378631592],[114,-16,76,6.015043258666992],[114,-16,77,6.035196781158447],[114,-16,78,6.042359828948975],[114,-16,79,6.033916473388672],[114,-15,64,6.004017353057861],[114,-15,65,6.005990982055664],[114,-15,66,6.005512237548828],[114,-15,67,6.0021138191223145],[114,-15,68,5.998892784118652],[114,-15,69,5.994562149047852],[114,-15,70,5.99104118347168],[114,-15,71,5.989717483520508],[114,-15,72,5.989929676055908],[114,-15,73,5.989076137542725],[114,-15,74,5.987583160400391],[114,-15,75,5.996276378631592],[114,-15,76,6.015043258666992],[114,-15,77,6.035196781158447],[114,-15,78,6.042359828948975],[114,-15,79,6.033916473388672],[114,-14,64,6.004017353057861],[114,-14,65,6.005990982055664],[114,-14,66,6.005512237548828],[114,-14,67,6.0021138191223145],[114,-14,68,5.998892784118652],[114,-14,69,5.994562149047852],[114,-14,70,5.99104118347168],[114,-14,71,5.989717483520508],[114,-14,72,5.989929676055908],[114,-14,73,5.989076137542725],[114,-14,74,5.987583160400391],[114,-14,75,5.996276378631592],[114,-14,76,6.015043258666992],[114,-14,77,6.035196781158447],[114,-14,78,6.042359828948975],[114,-14,79,6.033916473388672],[114,-13,64,6.004017353057861],[114,-13,65,6.005990982055664],[114,-13,66,6.005512237548828],[114,-13,67,6.0021138191223145],[114,-13,68,5.998892784118652],[114,-13,69,5.994562149047852],[114,-13,70,5.99104118347168],[114,-13,71,5.989717483520508],[114,-13,72,5.989929676055908],[114,-13,73,5.989076137542725],[114,-13,74,5.987583160400391],[114,-13,75,5.996276378631592],[114,-13,76,6.015043258666992],[114,-13,77,6.035196781158447],[114,-13,78,6.042359828948975],[114,-13,79,6.033916473388672],[114,-12,64,6.004017353057861],[114,-12,65,6.005990982055664],[114,-12,66,6.005512237548828],[114,-12,67,6.0021138191223145],[114,-12,68,5.998892784118652],[114,-12,69,5.994562149047852],[114,-12,70,5.99104118347168],[114,-12,71,5.989717483520508],[114,-12,72,5.989929676055908],[114,-12,73,5.989076137542725],[114,-12,74,5.987583160400391],[114,-12,75,5.996276378631592],[114,-12,76,6.015043258666992],[114,-12,77,6.035196781158447],[114,-12,78,6.042359828948975],[114,-12,79,6.033916473388672],[114,-11,64,6.004017353057861],[114,-11,65,6.005990982055664],[114,-11,66,6.005512237548828],[114,-11,67,6.0021138191223145],[114,-11,68,5.998892784118652],[114,-11,69,5.994562149047852],[114,-11,70,5.99104118347168],[114,-11,71,5.989717483520508],[114,-11,72,5.989929676055908],[114,-11,73,5.989076137542725],[114,-11,74,5.987583160400391],[114,-11,75,5.996276378631592],[114,-11,76,6.015043258666992],[114,-11,77,6.035196781158447],[114,-11,78,6.042359828948975],[114,-11,79,6.033916473388672],[114,-10,64,6.004017353057861],[114,-10,65,6.005990982055664],[114,-10,66,6.005512237548828],[114,-10,67,6.0021138191223145],[114,-10,68,5.998892784118652],[114,-10,69,5.994562149047852],[114,-10,70,5.99104118347168],[114,-10,71,5.989717483520508],[114,-10,72,5.989929676055908],[114,-10,73,5.989076137542725],[114,-10,74,5.987583160400391],[114,-10,75,5.996276378631592],[114,-10,76,6.015043258666992],[114,-10,77,6.035196781158447],[114,-10,78,6.042359828948975],[114,-10,79,6.033916473388672],[114,-9,64,6.004017353057861],[114,-9,65,6.005990982055664],[114,-9,66,6.005512237548828],[114,-9,67,6.0021138191223145],[114,-9,68,5.998892784118652],[114,-9,69,5.994562149047852],[114,-9,70,5.99104118347168],[114,-9,71,5.989717483520508],[114,-9,72,5.989929676055908],[114,-9,73,5.989076137542725],[114,-9,74,5.987583160400391],[114,-9,75,5.996276378631592],[114,-9,76,6.015043258666992],[114,-9,77,6.035196781158447],[114,-9,78,6.042359828948975],[114,-9,79,6.033916473388672],[114,-8,64,6.004017353057861],[114,-8,65,6.005990982055664],[114,-8,66,6.005512237548828],[114,-8,67,6.0021138191223145],[114,-8,68,5.998892784118652],[114,-8,69,5.994562149047852],[114,-8,70,5.99104118347168],[114,-8,71,5.989717483520508],[114,-8,72,5.989929676055908],[114,-8,73,5.989076137542725],[114,-8,74,5.987583160400391],[114,-8,75,5.996276378631592],[114,-8,76,6.015043258666992],[114,-8,77,6.035196781158447],[114,-8,78,6.042359828948975],[114,-8,79,6.033916473388672],[114,-7,64,6.004017353057861],[114,-7,65,6.005990982055664],[114,-7,66,6.005512237548828],[114,-7,67,6.0021138191223145],[114,-7,68,5.998892784118652],[114,-7,69,5.994562149047852],[114,-7,70,5.99104118347168],[114,-7,71,5.989717483520508],[114,-7,72,5.989929676055908],[114,-7,73,5.989076137542725],[114,-7,74,5.987583160400391],[114,-7,75,5.996276378631592],[114,-7,76,6.015043258666992],[114,-7,77,6.035196781158447],[114,-7,78,6.042359828948975],[114,-7,79,6.033916473388672],[114,-6,64,6.004017353057861],[114,-6,65,6.005990982055664],[114,-6,66,6.005512237548828],[114,-6,67,6.0021138191223145],[114,-6,68,5.998892784118652],[114,-6,69,5.994562149047852],[114,-6,70,5.99104118347168],[114,-6,71,5.989717483520508],[114,-6,72,5.989929676055908],[114,-6,73,5.989076137542725],[114,-6,74,5.987583160400391],[114,-6,75,5.996276378631592],[114,-6,76,6.015043258666992],[114,-6,77,6.035196781158447],[114,-6,78,6.042359828948975],[114,-6,79,6.033916473388672],[114,-5,64,6.004017353057861],[114,-5,65,6.005990982055664],[114,-5,66,6.005512237548828],[114,-5,67,6.0021138191223145],[114,-5,68,5.998892784118652],[114,-5,69,5.994562149047852],[114,-5,70,5.99104118347168],[114,-5,71,5.989717483520508],[114,-5,72,5.989929676055908],[114,-5,73,5.989076137542725],[114,-5,74,5.987583160400391],[114,-5,75,5.996276378631592],[114,-5,76,6.015043258666992],[114,-5,77,6.035196781158447],[114,-5,78,6.042359828948975],[114,-5,79,6.033916473388672],[114,-4,64,6.004017353057861],[114,-4,65,6.005990982055664],[114,-4,66,6.005512237548828],[114,-4,67,6.0021138191223145],[114,-4,68,5.998892784118652],[114,-4,69,5.994562149047852],[114,-4,70,5.99104118347168],[114,-4,71,5.989717483520508],[114,-4,72,5.989929676055908],[114,-4,73,5.989076137542725],[114,-4,74,5.987583160400391],[114,-4,75,5.996276378631592],[114,-4,76,6.015043258666992],[114,-4,77,6.035196781158447],[114,-4,78,6.042359828948975],[114,-4,79,6.033916473388672],[114,-3,64,6.004017353057861],[114,-3,65,6.005990982055664],[114,-3,66,6.005512237548828],[114,-3,67,6.0021138191223145],[114,-3,68,5.998892784118652],[114,-3,69,5.994562149047852],[114,-3,70,5.99104118347168],[114,-3,71,5.989717483520508],[114,-3,72,5.989929676055908],[114,-3,73,5.989076137542725],[114,-3,74,5.987583160400391],[114,-3,75,5.996276378631592],[114,-3,76,6.015043258666992],[114,-3,77,6.035196781158447],[114,-3,78,6.042359828948975],[114,-3,79,6.033916473388672],[114,-2,64,6.004017353057861],[114,-2,65,6.005990982055664],[114,-2,66,6.005512237548828],[114,-2,67,6.0021138191223145],[114,-2,68,5.998892784118652],[114,-2,69,5.994562149047852],[114,-2,70,5.99104118347168],[114,-2,71,5.989717483520508],[114,-2,72,5.989929676055908],[114,-2,73,5.989076137542725],[114,-2,74,5.987583160400391],[114,-2,75,5.996276378631592],[114,-2,76,6.015043258666992],[114,-2,77,6.035196781158447],[114,-2,78,6.042359828948975],[114,-2,79,6.033916473388672],[114,-1,64,6.004017353057861],[114,-1,65,6.005990982055664],[114,-1,66,6.005512237548828],[114,-1,67,6.0021138191223145],[114,-1,68,5.998892784118652],[114,-1,69,5.994562149047852],[114,-1,70,5.99104118347168],[114,-1,71,5.989717483520508],[114,-1,72,5.989929676055908],[114,-1,73,5.989076137542725],[114,-1,74,5.987583160400391],[114,-1,75,5.996276378631592],[114,-1,76,6.015043258666992],[114,-1,77,6.035196781158447],[114,-1,78,6.042359828948975],[114,-1,79,6.033916473388672],[114,0,64,6.004017353057861],[114,0,65,6.005990982055664],[114,0,66,6.005512237548828],[114,0,67,6.0021138191223145],[114,0,68,5.998892784118652],[114,0,69,5.994562149047852],[114,0,70,5.99104118347168],[114,0,71,5.989717483520508],[114,0,72,5.989929676055908],[114,0,73,5.989076137542725],[114,0,74,5.987583160400391],[114,0,75,5.996276378631592],[114,0,76,6.015043258666992],[114,0,77,6.035196781158447],[114,0,78,6.042359828948975],[114,0,79,6.033916473388672],[114,1,64,6.004017353057861],[114,1,65,6.005990982055664],[114,1,66,6.005512237548828],[114,1,67,6.0021138191223145],[114,1,68,5.998892784118652],[114,1,69,5.994562149047852],[114,1,70,5.99104118347168],[114,1,71,5.989717483520508],[114,1,72,5.989929676055908],[114,1,73,5.989076137542725],[114,1,74,5.987583160400391],[114,1,75,5.996276378631592],[114,1,76,6.015043258666992],[114,1,77,6.035196781158447],[114,1,78,6.042359828948975],[114,1,79,6.033916473388672],[114,2,64,6.004017353057861],[114,2,65,6.005990982055664],[114,2,66,6.005512237548828],[114,2,67,6.0021138191223145],[114,2,68,5.998892784118652],[114,2,69,5.994562149047852],[114,2,70,5.99104118347168],[114,2,71,5.989717483520508],[114,2,72,5.989929676055908],[114,2,73,5.989076137542725],[114,2,74,5.987583160400391],[114,2,75,5.996276378631592],[114,2,76,6.015043258666992],[114,2,77,6.035196781158447],[114,2,78,6.042359828948975],[114,2,79,6.033916473388672],[114,3,64,6.004017353057861],[114,3,65,6.005990982055664],[114,3,66,6.005512237548828],[114,3,67,6.0021138191223145],[114,3,68,5.998892784118652],[114,3,69,5.994562149047852],[114,3,70,5.99104118347168],[114,3,71,5.989717483520508],[114,3,72,5.989929676055908],[114,3,73,5.989076137542725],[114,3,74,5.987583160400391],[114,3,75,5.996276378631592],[114,3,76,6.015043258666992],[114,3,77,6.035196781158447],[114,3,78,6.042359828948975],[114,3,79,6.033916473388672],[114,4,64,6.004017353057861],[114,4,65,6.005990982055664],[114,4,66,6.005512237548828],[114,4,67,6.0021138191223145],[114,4,68,5.998892784118652],[114,4,69,5.994562149047852],[114,4,70,5.99104118347168],[114,4,71,5.989717483520508],[114,4,72,5.989929676055908],[114,4,73,5.989076137542725],[114,4,74,5.987583160400391],[114,4,75,5.996276378631592],[114,4,76,6.015043258666992],[114,4,77,6.035196781158447],[114,4,78,6.042359828948975],[114,4,79,6.033916473388672],[114,5,64,6.004017353057861],[114,5,65,6.005990982055664],[114,5,66,6.005512237548828],[114,5,67,6.0021138191223145],[114,5,68,5.998892784118652],[114,5,69,5.994562149047852],[114,5,70,5.99104118347168],[114,5,71,5.989717483520508],[114,5,72,5.989929676055908],[114,5,73,5.989076137542725],[114,5,74,5.987583160400391],[114,5,75,5.996276378631592],[114,5,76,6.015043258666992],[114,5,77,6.035196781158447],[114,5,78,6.042359828948975],[114,5,79,6.033916473388672],[114,6,64,6.004017353057861],[114,6,65,6.005990982055664],[114,6,66,6.005512237548828],[114,6,67,6.0021138191223145],[114,6,68,5.998892784118652],[114,6,69,5.994562149047852],[114,6,70,5.99104118347168],[114,6,71,5.989717483520508],[114,6,72,5.989929676055908],[114,6,73,5.989076137542725],[114,6,74,5.987583160400391],[114,6,75,5.996276378631592],[114,6,76,6.015043258666992],[114,6,77,6.035196781158447],[114,6,78,6.042359828948975],[114,6,79,6.033916473388672],[114,7,64,6.004017353057861],[114,7,65,6.005990982055664],[114,7,66,6.005512237548828],[114,7,67,6.0021138191223145],[114,7,68,5.998892784118652],[114,7,69,5.994562149047852],[114,7,70,5.99104118347168],[114,7,71,5.989717483520508],[114,7,72,5.989929676055908],[114,7,73,5.989076137542725],[114,7,74,5.987583160400391],[114,7,75,5.996276378631592],[114,7,76,6.015043258666992],[114,7,77,6.035196781158447],[114,7,78,6.042359828948975],[114,7,79,6.033916473388672],[114,8,64,6.004017353057861],[114,8,65,6.005990982055664],[114,8,66,6.005512237548828],[114,8,67,6.0021138191223145],[114,8,68,5.998892784118652],[114,8,69,5.994562149047852],[114,8,70,5.99104118347168],[114,8,71,5.989717483520508],[114,8,72,5.989929676055908],[114,8,73,5.989076137542725],[114,8,74,5.987583160400391],[114,8,75,5.996276378631592],[114,8,76,6.015043258666992],[114,8,77,6.035196781158447],[114,8,78,6.042359828948975],[114,8,79,6.033916473388672],[114,9,64,6.004017353057861],[114,9,65,6.005990982055664],[114,9,66,6.005512237548828],[114,9,67,6.0021138191223145],[114,9,68,5.998892784118652],[114,9,69,5.994562149047852],[114,9,70,5.99104118347168],[114,9,71,5.989717483520508],[114,9,72,5.989929676055908],[114,9,73,5.989076137542725],[114,9,74,5.987583160400391],[114,9,75,5.996276378631592],[114,9,76,6.015043258666992],[114,9,77,6.035196781158447],[114,9,78,6.042359828948975],[114,9,79,6.033916473388672],[114,10,64,6.004017353057861],[114,10,65,6.005990982055664],[114,10,66,6.005512237548828],[114,10,67,6.0021138191223145],[114,10,68,5.998892784118652],[114,10,69,5.994562149047852],[114,10,70,5.99104118347168],[114,10,71,5.989717483520508],[114,10,72,5.989929676055908],[114,10,73,5.989076137542725],[114,10,74,5.987583160400391],[114,10,75,5.996276378631592],[114,10,76,6.015043258666992],[114,10,77,6.035196781158447],[114,10,78,6.042359828948975],[114,10,79,6.033916473388672],[114,11,64,6.004017353057861],[114,11,65,6.005990982055664],[114,11,66,6.005512237548828],[114,11,67,6.0021138191223145],[114,11,68,5.998892784118652],[114,11,69,5.994562149047852],[114,11,70,5.99104118347168],[114,11,71,5.989717483520508],[114,11,72,5.989929676055908],[114,11,73,5.989076137542725],[114,11,74,5.987583160400391],[114,11,75,5.996276378631592],[114,11,76,6.015043258666992],[114,11,77,6.035196781158447],[114,11,78,6.042359828948975],[114,11,79,6.033916473388672],[114,12,64,6.004017353057861],[114,12,65,6.005990982055664],[114,12,66,6.005512237548828],[114,12,67,6.0021138191223145],[114,12,68,5.998892784118652],[114,12,69,5.994562149047852],[114,12,70,5.99104118347168],[114,12,71,5.989717483520508],[114,12,72,5.989929676055908],[114,12,73,5.989076137542725],[114,12,74,5.987583160400391],[114,12,75,5.996276378631592],[114,12,76,6.015043258666992],[114,12,77,6.035196781158447],[114,12,78,6.042359828948975],[114,12,79,6.033916473388672],[114,13,64,6.004017353057861],[114,13,65,6.005990982055664],[114,13,66,6.005512237548828],[114,13,67,6.0021138191223145],[114,13,68,5.998892784118652],[114,13,69,5.994562149047852],[114,13,70,5.99104118347168],[114,13,71,5.989717483520508],[114,13,72,5.989929676055908],[114,13,73,5.989076137542725],[114,13,74,5.987583160400391],[114,13,75,5.996276378631592],[114,13,76,6.015043258666992],[114,13,77,6.035196781158447],[114,13,78,6.042359828948975],[114,13,79,6.033916473388672],[114,14,64,6.004017353057861],[114,14,65,6.005990982055664],[114,14,66,6.005512237548828],[114,14,67,6.0021138191223145],[114,14,68,5.998892784118652],[114,14,69,5.994562149047852],[114,14,70,5.99104118347168],[114,14,71,5.989717483520508],[114,14,72,5.989929676055908],[114,14,73,5.989076137542725],[114,14,74,5.987583160400391],[114,14,75,5.996276378631592],[114,14,76,6.015043258666992],[114,14,77,6.035196781158447],[114,14,78,6.042359828948975],[114,14,79,6.033916473388672],[114,15,64,6.004017353057861],[114,15,65,6.005990982055664],[114,15,66,6.005512237548828],[114,15,67,6.0021138191223145],[114,15,68,5.998892784118652],[114,15,69,5.994562149047852],[114,15,70,5.99104118347168],[114,15,71,5.989717483520508],[114,15,72,5.989929676055908],[114,15,73,5.989076137542725],[114,15,74,5.987583160400391],[114,15,75,5.996276378631592],[114,15,76,6.015043258666992],[114,15,77,6.035196781158447],[114,15,78,6.042359828948975],[114,15,79,6.033916473388672],[114,16,64,6.004017353057861],[114,16,65,6.005990982055664],[114,16,66,6.005512237548828],[114,16,67,6.0021138191223145],[114,16,68,5.998892784118652],[114,16,69,5.994562149047852],[114,16,70,5.99104118347168],[114,16,71,5.989717483520508],[114,16,72,5.989929676055908],[114,16,73,5.989076137542725],[114,16,74,5.987583160400391],[114,16,75,5.996276378631592],[114,16,76,6.015043258666992],[114,16,77,6.035196781158447],[114,16,78,6.042359828948975],[114,16,79,6.033916473388672],[114,17,64,6.004017353057861],[114,17,65,6.005990982055664],[114,17,66,6.005512237548828],[114,17,67,6.0021138191223145],[114,17,68,5.998892784118652],[114,17,69,5.994562149047852],[114,17,70,5.99104118347168],[114,17,71,5.989717483520508],[114,17,72,5.989929676055908],[114,17,73,5.989076137542725],[114,17,74,5.987583160400391],[114,17,75,5.996276378631592],[114,17,76,6.015043258666992],[114,17,77,6.035196781158447],[114,17,78,6.042359828948975],[114,17,79,6.033916473388672],[114,18,64,6.004017353057861],[114,18,65,6.005990982055664],[114,18,66,6.005512237548828],[114,18,67,6.0021138191223145],[114,18,68,5.998892784118652],[114,18,69,5.994562149047852],[114,18,70,5.99104118347168],[114,18,71,5.989717483520508],[114,18,72,5.989929676055908],[114,18,73,5.989076137542725],[114,18,74,5.987583160400391],[114,18,75,5.996276378631592],[114,18,76,6.015043258666992],[114,18,77,6.035196781158447],[114,18,78,6.042359828948975],[114,18,79,6.033916473388672],[114,19,64,6.004017353057861],[114,19,65,6.005990982055664],[114,19,66,6.005512237548828],[114,19,67,6.0021138191223145],[114,19,68,5.998892784118652],[114,19,69,5.994562149047852],[114,19,70,5.99104118347168],[114,19,71,5.989717483520508],[114,19,72,5.989929676055908],[114,19,73,5.989076137542725],[114,19,74,5.987583160400391],[114,19,75,5.996276378631592],[114,19,76,6.015043258666992],[114,19,77,6.035196781158447],[114,19,78,6.042359828948975],[114,19,79,6.033916473388672],[114,20,64,6.004017353057861],[114,20,65,6.005990982055664],[114,20,66,6.005512237548828],[114,20,67,6.0021138191223145],[114,20,68,5.998892784118652],[114,20,69,5.994562149047852],[114,20,70,5.99104118347168],[114,20,71,5.989717483520508],[114,20,72,5.989929676055908],[114,20,73,5.989076137542725],[114,20,74,5.987583160400391],[114,20,75,5.996276378631592],[114,20,76,6.015043258666992],[114,20,77,6.035196781158447],[114,20,78,6.042359828948975],[114,20,79,6.033916473388672],[114,21,64,6.004017353057861],[114,21,65,6.005990982055664],[114,21,66,6.005512237548828],[114,21,67,6.0021138191223145],[114,21,68,5.998892784118652],[114,21,69,5.994562149047852],[114,21,70,5.99104118347168],[114,21,71,5.989717483520508],[114,21,72,5.989929676055908],[114,21,73,5.989076137542725],[114,21,74,5.987583160400391],[114,21,75,5.996276378631592],[114,21,76,6.015043258666992],[114,21,77,6.035196781158447],[114,21,78,6.042359828948975],[114,21,79,6.033916473388672],[114,22,64,6.004017353057861],[114,22,65,6.005990982055664],[114,22,66,6.005512237548828],[114,22,67,6.0021138191223145],[114,22,68,5.998892784118652],[114,22,69,5.994562149047852],[114,22,70,5.99104118347168],[114,22,71,5.989717483520508],[114,22,72,5.989929676055908],[114,22,73,5.989076137542725],[114,22,74,5.987583160400391],[114,22,75,5.996276378631592],[114,22,76,6.015043258666992],[114,22,77,6.035196781158447],[114,22,78,6.042359828948975],[114,22,79,6.033916473388672],[114,23,64,6.004017353057861],[114,23,65,6.005990982055664],[114,23,66,6.005512237548828],[114,23,67,6.0021138191223145],[114,23,68,5.998892784118652],[114,23,69,5.994562149047852],[114,23,70,5.99104118347168],[114,23,71,5.989717483520508],[114,23,72,5.989929676055908],[114,23,73,5.989076137542725],[114,23,74,5.987583160400391],[114,23,75,5.996276378631592],[114,23,76,6.015043258666992],[114,23,77,6.035196781158447],[114,23,78,6.042359828948975],[114,23,79,6.033916473388672],[114,24,64,6.004017353057861],[114,24,65,6.005990982055664],[114,24,66,6.005512237548828],[114,24,67,6.0021138191223145],[114,24,68,5.998892784118652],[114,24,69,5.994562149047852],[114,24,70,5.99104118347168],[114,24,71,5.989717483520508],[114,24,72,5.989929676055908],[114,24,73,5.989076137542725],[114,24,74,5.987583160400391],[114,24,75,5.996276378631592],[114,24,76,6.015043258666992],[114,24,77,6.035196781158447],[114,24,78,6.042359828948975],[114,24,79,6.033916473388672],[114,25,64,6.004017353057861],[114,25,65,6.005990982055664],[114,25,66,6.005512237548828],[114,25,67,6.0021138191223145],[114,25,68,5.998892784118652],[114,25,69,5.994562149047852],[114,25,70,5.99104118347168],[114,25,71,5.989717483520508],[114,25,72,5.989929676055908],[114,25,73,5.989076137542725],[114,25,74,5.987583160400391],[114,25,75,5.996276378631592],[114,25,76,6.015043258666992],[114,25,77,6.035196781158447],[114,25,78,6.042359828948975],[114,25,79,6.033916473388672],[114,26,64,6.004017353057861],[114,26,65,6.005990982055664],[114,26,66,6.005512237548828],[114,26,67,6.0021138191223145],[114,26,68,5.998892784118652],[114,26,69,5.994562149047852],[114,26,70,5.99104118347168],[114,26,71,5.989717483520508],[114,26,72,5.989929676055908],[114,26,73,5.989076137542725],[114,26,74,5.987583160400391],[114,26,75,5.996276378631592],[114,26,76,6.015043258666992],[114,26,77,6.035196781158447],[114,26,78,6.042359828948975],[114,26,79,6.033916473388672],[114,27,64,6.004017353057861],[114,27,65,6.005990982055664],[114,27,66,6.005512237548828],[114,27,67,6.0021138191223145],[114,27,68,5.998892784118652],[114,27,69,5.994562149047852],[114,27,70,5.99104118347168],[114,27,71,5.989717483520508],[114,27,72,5.989929676055908],[114,27,73,5.989076137542725],[114,27,74,5.987583160400391],[114,27,75,5.996276378631592],[114,27,76,6.015043258666992],[114,27,77,6.035196781158447],[114,27,78,6.042359828948975],[114,27,79,6.033916473388672],[114,28,64,6.004017353057861],[114,28,65,6.005990982055664],[114,28,66,6.005512237548828],[114,28,67,6.0021138191223145],[114,28,68,5.998892784118652],[114,28,69,5.994562149047852],[114,28,70,5.99104118347168],[114,28,71,5.989717483520508],[114,28,72,5.989929676055908],[114,28,73,5.989076137542725],[114,28,74,5.987583160400391],[114,28,75,5.996276378631592],[114,28,76,6.015043258666992],[114,28,77,6.035196781158447],[114,28,78,6.042359828948975],[114,28,79,6.033916473388672],[114,29,64,6.004017353057861],[114,29,65,6.005990982055664],[114,29,66,6.005512237548828],[114,29,67,6.0021138191223145],[114,29,68,5.998892784118652],[114,29,69,5.994562149047852],[114,29,70,5.99104118347168],[114,29,71,5.989717483520508],[114,29,72,5.989929676055908],[114,29,73,5.989076137542725],[114,29,74,5.987583160400391],[114,29,75,5.996276378631592],[114,29,76,6.015043258666992],[114,29,77,6.035196781158447],[114,29,78,6.042359828948975],[114,29,79,6.033916473388672],[114,30,64,6.004017353057861],[114,30,65,6.005990982055664],[114,30,66,6.005512237548828],[114,30,67,6.0021138191223145],[114,30,68,5.998892784118652],[114,30,69,5.994562149047852],[114,30,70,5.99104118347168],[114,30,71,5.989717483520508],[114,30,72,5.989929676055908],[114,30,73,5.989076137542725],[114,30,74,5.987583160400391],[114,30,75,5.996276378631592],[114,30,76,6.015043258666992],[114,30,77,6.035196781158447],[114,30,78,6.042359828948975],[114,30,79,6.033916473388672],[114,31,64,6.004017353057861],[114,31,65,6.005990982055664],[114,31,66,6.005512237548828],[114,31,67,6.0021138191223145],[114,31,68,5.998892784118652],[114,31,69,5.994562149047852],[114,31,70,5.99104118347168],[114,31,71,5.989717483520508],[114,31,72,5.989929676055908],[114,31,73,5.989076137542725],[114,31,74,5.987583160400391],[114,31,75,5.996276378631592],[114,31,76,6.015043258666992],[114,31,77,6.035196781158447],[114,31,78,6.042359828948975],[114,31,79,6.033916473388672],[114,32,64,6.004017353057861],[114,32,65,6.005990982055664],[114,32,66,6.005512237548828],[114,32,67,6.0021138191223145],[114,32,68,5.998892784118652],[114,32,69,5.994562149047852],[114,32,70,5.99104118347168],[114,32,71,5.989717483520508],[114,32,72,5.989929676055908],[114,32,73,5.989076137542725],[114,32,74,5.987583160400391],[114,32,75,5.996276378631592],[114,32,76,6.015043258666992],[114,32,77,6.035196781158447],[114,32,78,6.042359828948975],[114,32,79,6.033916473388672],[114,33,64,6.004017353057861],[114,33,65,6.005990982055664],[114,33,66,6.005512237548828],[114,33,67,6.0021138191223145],[114,33,68,5.998892784118652],[114,33,69,5.994562149047852],[114,33,70,5.99104118347168],[114,33,71,5.989717483520508],[114,33,72,5.989929676055908],[114,33,73,5.989076137542725],[114,33,74,5.987583160400391],[114,33,75,5.996276378631592],[114,33,76,6.015043258666992],[114,33,77,6.035196781158447],[114,33,78,6.042359828948975],[114,33,79,6.033916473388672],[114,34,64,6.004017353057861],[114,34,65,6.005990982055664],[114,34,66,6.005512237548828],[114,34,67,6.0021138191223145],[114,34,68,5.998892784118652],[114,34,69,5.994562149047852],[114,34,70,5.99104118347168],[114,34,71,5.989717483520508],[114,34,72,5.989929676055908],[114,34,73,5.989076137542725],[114,34,74,5.987583160400391],[114,34,75,5.996276378631592],[114,34,76,6.015043258666992],[114,34,77,6.035196781158447],[114,34,78,6.042359828948975],[114,34,79,6.033916473388672],[114,35,64,6.004017353057861],[114,35,65,6.005990982055664],[114,35,66,6.005512237548828],[114,35,67,6.0021138191223145],[114,35,68,5.998892784118652],[114,35,69,5.994562149047852],[114,35,70,5.99104118347168],[114,35,71,5.989717483520508],[114,35,72,5.989929676055908],[114,35,73,5.989076137542725],[114,35,74,5.987583160400391],[114,35,75,5.996276378631592],[114,35,76,6.015043258666992],[114,35,77,6.035196781158447],[114,35,78,6.042359828948975],[114,35,79,6.033916473388672],[114,36,64,6.004017353057861],[114,36,65,6.005990982055664],[114,36,66,6.005512237548828],[114,36,67,6.0021138191223145],[114,36,68,5.998892784118652],[114,36,69,5.994562149047852],[114,36,70,5.99104118347168],[114,36,71,5.989717483520508],[114,36,72,5.989929676055908],[114,36,73,5.989076137542725],[114,36,74,5.987583160400391],[114,36,75,5.996276378631592],[114,36,76,6.015043258666992],[114,36,77,6.035196781158447],[114,36,78,6.042359828948975],[114,36,79,6.033916473388672],[114,37,64,6.004017353057861],[114,37,65,6.005990982055664],[114,37,66,6.005512237548828],[114,37,67,6.0021138191223145],[114,37,68,5.998892784118652],[114,37,69,5.994562149047852],[114,37,70,5.99104118347168],[114,37,71,5.989717483520508],[114,37,72,5.989929676055908],[114,37,73,5.989076137542725],[114,37,74,5.987583160400391],[114,37,75,5.996276378631592],[114,37,76,6.015043258666992],[114,37,77,6.035196781158447],[114,37,78,6.042359828948975],[114,37,79,6.033916473388672],[114,38,64,6.004017353057861],[114,38,65,6.005990982055664],[114,38,66,6.005512237548828],[114,38,67,6.0021138191223145],[114,38,68,5.998892784118652],[114,38,69,5.994562149047852],[114,38,70,5.99104118347168],[114,38,71,5.989717483520508],[114,38,72,5.989929676055908],[114,38,73,5.989076137542725],[114,38,74,5.987583160400391],[114,38,75,5.996276378631592],[114,38,76,6.015043258666992],[114,38,77,6.035196781158447],[114,38,78,6.042359828948975],[114,38,79,6.033916473388672],[114,39,64,6.004017353057861],[114,39,65,6.005990982055664],[114,39,66,6.005512237548828],[114,39,67,6.0021138191223145],[114,39,68,5.998892784118652],[114,39,69,5.994562149047852],[114,39,70,5.99104118347168],[114,39,71,5.989717483520508],[114,39,72,5.989929676055908],[114,39,73,5.989076137542725],[114,39,74,5.987583160400391],[114,39,75,5.996276378631592],[114,39,76,6.015043258666992],[114,39,77,6.035196781158447],[114,39,78,6.042359828948975],[114,39,79,6.033916473388672],[114,40,64,6.004017353057861],[114,40,65,6.005990982055664],[114,40,66,6.005512237548828],[114,40,67,6.0021138191223145],[114,40,68,5.998892784118652],[114,40,69,5.994562149047852],[114,40,70,5.99104118347168],[114,40,71,5.989717483520508],[114,40,72,5.989929676055908],[114,40,73,5.989076137542725],[114,40,74,5.987583160400391],[114,40,75,5.996276378631592],[114,40,76,6.015043258666992],[114,40,77,6.035196781158447],[114,40,78,6.042359828948975],[114,40,79,6.033916473388672],[114,41,64,6.004017353057861],[114,41,65,6.005990982055664],[114,41,66,6.005512237548828],[114,41,67,6.0021138191223145],[114,41,68,5.998892784118652],[114,41,69,5.994562149047852],[114,41,70,5.99104118347168],[114,41,71,5.989717483520508],[114,41,72,5.989929676055908],[114,41,73,5.989076137542725],[114,41,74,5.987583160400391],[114,41,75,5.996276378631592],[114,41,76,6.015043258666992],[114,41,77,6.035196781158447],[114,41,78,6.042359828948975],[114,41,79,6.033916473388672],[114,42,64,6.004017353057861],[114,42,65,6.005990982055664],[114,42,66,6.005512237548828],[114,42,67,6.0021138191223145],[114,42,68,5.998892784118652],[114,42,69,5.994562149047852],[114,42,70,5.99104118347168],[114,42,71,5.989717483520508],[114,42,72,5.989929676055908],[114,42,73,5.989076137542725],[114,42,74,5.987583160400391],[114,42,75,5.996276378631592],[114,42,76,6.015043258666992],[114,42,77,6.035196781158447],[114,42,78,6.042359828948975],[114,42,79,6.033916473388672],[114,43,64,6.004017353057861],[114,43,65,6.005990982055664],[114,43,66,6.005512237548828],[114,43,67,6.0021138191223145],[114,43,68,5.998892784118652],[114,43,69,5.994562149047852],[114,43,70,5.99104118347168],[114,43,71,5.989717483520508],[114,43,72,5.989929676055908],[114,43,73,5.989076137542725],[114,43,74,5.987583160400391],[114,43,75,5.996276378631592],[114,43,76,6.015043258666992],[114,43,77,6.035196781158447],[114,43,78,6.042359828948975],[114,43,79,6.033916473388672],[114,44,64,6.004017353057861],[114,44,65,6.005990982055664],[114,44,66,6.005512237548828],[114,44,67,6.0021138191223145],[114,44,68,5.998892784118652],[114,44,69,5.994562149047852],[114,44,70,5.99104118347168],[114,44,71,5.989717483520508],[114,44,72,5.989929676055908],[114,44,73,5.989076137542725],[114,44,74,5.987583160400391],[114,44,75,5.996276378631592],[114,44,76,6.015043258666992],[114,44,77,6.035196781158447],[114,44,78,6.042359828948975],[114,44,79,6.033916473388672],[114,45,64,6.004017353057861],[114,45,65,6.005990982055664],[114,45,66,6.005512237548828],[114,45,67,6.0021138191223145],[114,45,68,5.998892784118652],[114,45,69,5.994562149047852],[114,45,70,5.99104118347168],[114,45,71,5.989717483520508],[114,45,72,5.989929676055908],[114,45,73,5.989076137542725],[114,45,74,5.987583160400391],[114,45,75,5.996276378631592],[114,45,76,6.015043258666992],[114,45,77,6.035196781158447],[114,45,78,6.042359828948975],[114,45,79,6.033916473388672],[114,46,64,6.004017353057861],[114,46,65,6.005990982055664],[114,46,66,6.005512237548828],[114,46,67,6.0021138191223145],[114,46,68,5.998892784118652],[114,46,69,5.994562149047852],[114,46,70,5.99104118347168],[114,46,71,5.989717483520508],[114,46,72,5.989929676055908],[114,46,73,5.989076137542725],[114,46,74,5.987583160400391],[114,46,75,5.996276378631592],[114,46,76,6.015043258666992],[114,46,77,6.035196781158447],[114,46,78,6.042359828948975],[114,46,79,6.033916473388672],[114,47,64,6.004017353057861],[114,47,65,6.005990982055664],[114,47,66,6.005512237548828],[114,47,67,6.0021138191223145],[114,47,68,5.998892784118652],[114,47,69,5.994562149047852],[114,47,70,5.99104118347168],[114,47,71,5.989717483520508],[114,47,72,5.989929676055908],[114,47,73,5.989076137542725],[114,47,74,5.987583160400391],[114,47,75,5.996276378631592],[114,47,76,6.015043258666992],[114,47,77,6.035196781158447],[114,47,78,6.042359828948975],[114,47,79,6.033916473388672],[114,48,64,6.004017353057861],[114,48,65,6.005990982055664],[114,48,66,6.005512237548828],[114,48,67,6.0021138191223145],[114,48,68,5.998892784118652],[114,48,69,5.994562149047852],[114,48,70,5.99104118347168],[114,48,71,5.989717483520508],[114,48,72,5.989929676055908],[114,48,73,5.989076137542725],[114,48,74,5.987583160400391],[114,48,75,5.996276378631592],[114,48,76,6.015043258666992],[114,48,77,6.035196781158447],[114,48,78,6.042359828948975],[114,48,79,6.033916473388672],[114,49,64,6.004017353057861],[114,49,65,6.005990982055664],[114,49,66,6.005512237548828],[114,49,67,6.0021138191223145],[114,49,68,5.998892784118652],[114,49,69,5.994562149047852],[114,49,70,5.99104118347168],[114,49,71,5.989717483520508],[114,49,72,5.989929676055908],[114,49,73,5.989076137542725],[114,49,74,5.987583160400391],[114,49,75,5.996276378631592],[114,49,76,6.015043258666992],[114,49,77,6.035196781158447],[114,49,78,6.042359828948975],[114,49,79,6.033916473388672],[114,50,64,6.004017353057861],[114,50,65,6.005990982055664],[114,50,66,6.005512237548828],[114,50,67,6.0021138191223145],[114,50,68,5.998892784118652],[114,50,69,5.994562149047852],[114,50,70,5.99104118347168],[114,50,71,5.989717483520508],[114,50,72,5.989929676055908],[114,50,73,5.989076137542725],[114,50,74,5.987583160400391],[114,50,75,5.996276378631592],[114,50,76,6.015043258666992],[114,50,77,6.035196781158447],[114,50,78,6.042359828948975],[114,50,79,6.033916473388672],[114,51,64,6.004017353057861],[114,51,65,6.005990982055664],[114,51,66,6.005512237548828],[114,51,67,6.0021138191223145],[114,51,68,5.998892784118652],[114,51,69,5.994562149047852],[114,51,70,5.99104118347168],[114,51,71,5.989717483520508],[114,51,72,5.989929676055908],[114,51,73,5.989076137542725],[114,51,74,5.987583160400391],[114,51,75,5.996276378631592],[114,51,76,6.015043258666992],[114,51,77,6.035196781158447],[114,51,78,6.042359828948975],[114,51,79,6.033916473388672],[114,52,64,6.004017353057861],[114,52,65,6.005990982055664],[114,52,66,6.005512237548828],[114,52,67,6.0021138191223145],[114,52,68,5.998892784118652],[114,52,69,5.994562149047852],[114,52,70,5.99104118347168],[114,52,71,5.989717483520508],[114,52,72,5.989929676055908],[114,52,73,5.989076137542725],[114,52,74,5.987583160400391],[114,52,75,5.996276378631592],[114,52,76,6.015043258666992],[114,52,77,6.035196781158447],[114,52,78,6.042359828948975],[114,52,79,6.033916473388672],[114,53,64,6.004017353057861],[114,53,65,6.005990982055664],[114,53,66,6.005512237548828],[114,53,67,6.0021138191223145],[114,53,68,5.998892784118652],[114,53,69,5.994562149047852],[114,53,70,5.99104118347168],[114,53,71,5.989717483520508],[114,53,72,5.989929676055908],[114,53,73,5.989076137542725],[114,53,74,5.987583160400391],[114,53,75,5.996276378631592],[114,53,76,6.015043258666992],[114,53,77,6.035196781158447],[114,53,78,6.042359828948975],[114,53,79,6.033916473388672],[114,54,64,6.004017353057861],[114,54,65,6.005990982055664],[114,54,66,6.005512237548828],[114,54,67,6.0021138191223145],[114,54,68,5.998892784118652],[114,54,69,5.994562149047852],[114,54,70,5.99104118347168],[114,54,71,5.989717483520508],[114,54,72,5.989929676055908],[114,54,73,5.989076137542725],[114,54,74,5.987583160400391],[114,54,75,5.996276378631592],[114,54,76,6.015043258666992],[114,54,77,6.035196781158447],[114,54,78,6.042359828948975],[114,54,79,6.033916473388672],[114,55,64,6.004017353057861],[114,55,65,6.005990982055664],[114,55,66,6.005512237548828],[114,55,67,6.0021138191223145],[114,55,68,5.998892784118652],[114,55,69,5.994562149047852],[114,55,70,5.99104118347168],[114,55,71,5.989717483520508],[114,55,72,5.989929676055908],[114,55,73,5.989076137542725],[114,55,74,5.987583160400391],[114,55,75,5.996276378631592],[114,55,76,6.015043258666992],[114,55,77,6.035196781158447],[114,55,78,6.042359828948975],[114,55,79,6.033916473388672],[114,56,64,6.004017353057861],[114,56,65,6.005990982055664],[114,56,66,6.005512237548828],[114,56,67,6.0021138191223145],[114,56,68,5.998892784118652],[114,56,69,5.994562149047852],[114,56,70,5.99104118347168],[114,56,71,5.989717483520508],[114,56,72,5.989929676055908],[114,56,73,5.989076137542725],[114,56,74,5.987583160400391],[114,56,75,5.996276378631592],[114,56,76,6.015043258666992],[114,56,77,6.035196781158447],[114,56,78,6.042359828948975],[114,56,79,6.033916473388672],[114,57,64,6.004017353057861],[114,57,65,6.005990982055664],[114,57,66,6.005512237548828],[114,57,67,6.0021138191223145],[114,57,68,5.998892784118652],[114,57,69,5.994562149047852],[114,57,70,5.99104118347168],[114,57,71,5.989717483520508],[114,57,72,5.989929676055908],[114,57,73,5.989076137542725],[114,57,74,5.987583160400391],[114,57,75,5.996276378631592],[114,57,76,6.015043258666992],[114,57,77,6.035196781158447],[114,57,78,6.042359828948975],[114,57,79,6.033916473388672],[114,58,64,6.004017353057861],[114,58,65,6.005990982055664],[114,58,66,6.005512237548828],[114,58,67,6.0021138191223145],[114,58,68,5.998892784118652],[114,58,69,5.994562149047852],[114,58,70,5.99104118347168],[114,58,71,5.989717483520508],[114,58,72,5.989929676055908],[114,58,73,5.989076137542725],[114,58,74,5.987583160400391],[114,58,75,5.996276378631592],[114,58,76,6.015043258666992],[114,58,77,6.035196781158447],[114,58,78,6.042359828948975],[114,58,79,6.033916473388672],[114,59,64,6.004017353057861],[114,59,65,6.005990982055664],[114,59,66,6.005512237548828],[114,59,67,6.0021138191223145],[114,59,68,5.998892784118652],[114,59,69,5.994562149047852],[114,59,70,5.99104118347168],[114,59,71,5.989717483520508],[114,59,72,5.989929676055908],[114,59,73,5.989076137542725],[114,59,74,5.987583160400391],[114,59,75,5.996276378631592],[114,59,76,6.015043258666992],[114,59,77,6.035196781158447],[114,59,78,6.042359828948975],[114,59,79,6.033916473388672],[114,60,64,6.004017353057861],[114,60,65,6.005990982055664],[114,60,66,6.005512237548828],[114,60,67,6.0021138191223145],[114,60,68,5.998892784118652],[114,60,69,5.994562149047852],[114,60,70,5.99104118347168],[114,60,71,5.989717483520508],[114,60,72,5.989929676055908],[114,60,73,5.989076137542725],[114,60,74,5.987583160400391],[114,60,75,5.996276378631592],[114,60,76,6.015043258666992],[114,60,77,6.035196781158447],[114,60,78,6.042359828948975],[114,60,79,6.033916473388672],[114,61,64,6.004017353057861],[114,61,65,6.005990982055664],[114,61,66,6.005512237548828],[114,61,67,6.0021138191223145],[114,61,68,5.998892784118652],[114,61,69,5.994562149047852],[114,61,70,5.99104118347168],[114,61,71,5.989717483520508],[114,61,72,5.989929676055908],[114,61,73,5.989076137542725],[114,61,74,5.987583160400391],[114,61,75,5.996276378631592],[114,61,76,6.015043258666992],[114,61,77,6.035196781158447],[114,61,78,6.042359828948975],[114,61,79,6.033916473388672],[114,62,64,6.004017353057861],[114,62,65,6.005990982055664],[114,62,66,6.005512237548828],[114,62,67,6.0021138191223145],[114,62,68,5.998892784118652],[114,62,69,5.994562149047852],[114,62,70,5.99104118347168],[114,62,71,5.989717483520508],[114,62,72,5.989929676055908],[114,62,73,5.989076137542725],[114,62,74,5.987583160400391],[114,62,75,5.996276378631592],[114,62,76,6.015043258666992],[114,62,77,6.035196781158447],[114,62,78,6.042359828948975],[114,62,79,6.033916473388672],[114,63,64,6.004017353057861],[114,63,65,6.005990982055664],[114,63,66,6.005512237548828],[114,63,67,6.0021138191223145],[114,63,68,5.998892784118652],[114,63,69,5.994562149047852],[114,63,70,5.99104118347168],[114,63,71,5.989717483520508],[114,63,72,5.989929676055908],[114,63,73,5.989076137542725],[114,63,74,5.987583160400391],[114,63,75,5.996276378631592],[114,63,76,6.015043258666992],[114,63,77,6.035196781158447],[114,63,78,6.042359828948975],[114,63,79,6.033916473388672],[114,64,64,6.004017353057861],[114,64,65,6.005990982055664],[114,64,66,6.005512237548828],[114,64,67,6.0021138191223145],[114,64,68,5.998892784118652],[114,64,69,5.994562149047852],[114,64,70,5.99104118347168],[114,64,71,5.989717483520508],[114,64,72,5.989929676055908],[114,64,73,5.989076137542725],[114,64,74,5.987583160400391],[114,64,75,5.996276378631592],[114,64,76,6.015043258666992],[114,64,77,6.035196781158447],[114,64,78,6.042359828948975],[114,64,79,6.033916473388672],[114,65,64,6.004017353057861],[114,65,65,6.005990982055664],[114,65,66,6.005512237548828],[114,65,67,6.0021138191223145],[114,65,68,5.998892784118652],[114,65,69,5.994562149047852],[114,65,70,5.99104118347168],[114,65,71,5.989717483520508],[114,65,72,5.989929676055908],[114,65,73,5.989076137542725],[114,65,74,5.987583160400391],[114,65,75,5.996276378631592],[114,65,76,6.015043258666992],[114,65,77,6.035196781158447],[114,65,78,6.042359828948975],[114,65,79,6.033916473388672],[114,66,64,6.004017353057861],[114,66,65,6.005990982055664],[114,66,66,6.005512237548828],[114,66,67,6.0021138191223145],[114,66,68,5.998892784118652],[114,66,69,5.994562149047852],[114,66,70,5.99104118347168],[114,66,71,5.989717483520508],[114,66,72,5.989929676055908],[114,66,73,5.989076137542725],[114,66,74,5.987583160400391],[114,66,75,5.996276378631592],[114,66,76,6.015043258666992],[114,66,77,6.035196781158447],[114,66,78,6.042359828948975],[114,66,79,6.033916473388672],[114,67,64,6.004017353057861],[114,67,65,6.005990982055664],[114,67,66,6.005512237548828],[114,67,67,6.0021138191223145],[114,67,68,5.998892784118652],[114,67,69,5.994562149047852],[114,67,70,5.99104118347168],[114,67,71,5.989717483520508],[114,67,72,5.989929676055908],[114,67,73,5.989076137542725],[114,67,74,5.987583160400391],[114,67,75,5.996276378631592],[114,67,76,6.015043258666992],[114,67,77,6.035196781158447],[114,67,78,6.042359828948975],[114,67,79,6.033916473388672],[114,68,64,6.004017353057861],[114,68,65,6.005990982055664],[114,68,66,6.005512237548828],[114,68,67,6.0021138191223145],[114,68,68,5.998892784118652],[114,68,69,5.994562149047852],[114,68,70,5.99104118347168],[114,68,71,5.989717483520508],[114,68,72,5.989929676055908],[114,68,73,5.989076137542725],[114,68,74,5.987583160400391],[114,68,75,5.996276378631592],[114,68,76,6.015043258666992],[114,68,77,6.035196781158447],[114,68,78,6.042359828948975],[114,68,79,6.033916473388672],[114,69,64,6.004017353057861],[114,69,65,6.005990982055664],[114,69,66,6.005512237548828],[114,69,67,6.0021138191223145],[114,69,68,5.998892784118652],[114,69,69,5.994562149047852],[114,69,70,5.99104118347168],[114,69,71,5.989717483520508],[114,69,72,5.989929676055908],[114,69,73,5.989076137542725],[114,69,74,5.987583160400391],[114,69,75,5.996276378631592],[114,69,76,6.015043258666992],[114,69,77,6.035196781158447],[114,69,78,6.042359828948975],[114,69,79,6.033916473388672],[114,70,64,6.004017353057861],[114,70,65,6.005990982055664],[114,70,66,6.005512237548828],[114,70,67,6.0021138191223145],[114,70,68,5.998892784118652],[114,70,69,5.994562149047852],[114,70,70,5.99104118347168],[114,70,71,5.989717483520508],[114,70,72,5.989929676055908],[114,70,73,5.989076137542725],[114,70,74,5.987583160400391],[114,70,75,5.996276378631592],[114,70,76,6.015043258666992],[114,70,77,6.035196781158447],[114,70,78,6.042359828948975],[114,70,79,6.033916473388672],[114,71,64,6.004017353057861],[114,71,65,6.005990982055664],[114,71,66,6.005512237548828],[114,71,67,6.0021138191223145],[114,71,68,5.998892784118652],[114,71,69,5.994562149047852],[114,71,70,5.99104118347168],[114,71,71,5.989717483520508],[114,71,72,5.989929676055908],[114,71,73,5.989076137542725],[114,71,74,5.987583160400391],[114,71,75,5.996276378631592],[114,71,76,6.015043258666992],[114,71,77,6.035196781158447],[114,71,78,6.042359828948975],[114,71,79,6.033916473388672],[114,72,64,6.004017353057861],[114,72,65,6.005990982055664],[114,72,66,6.005512237548828],[114,72,67,6.0021138191223145],[114,72,68,5.998892784118652],[114,72,69,5.994562149047852],[114,72,70,5.99104118347168],[114,72,71,5.989717483520508],[114,72,72,5.989929676055908],[114,72,73,5.989076137542725],[114,72,74,5.987583160400391],[114,72,75,5.996276378631592],[114,72,76,6.015043258666992],[114,72,77,6.035196781158447],[114,72,78,6.042359828948975],[114,72,79,6.033916473388672],[114,73,64,6.004017353057861],[114,73,65,6.005990982055664],[114,73,66,6.005512237548828],[114,73,67,6.0021138191223145],[114,73,68,5.998892784118652],[114,73,69,5.994562149047852],[114,73,70,5.99104118347168],[114,73,71,5.989717483520508],[114,73,72,5.989929676055908],[114,73,73,5.989076137542725],[114,73,74,5.987583160400391],[114,73,75,5.996276378631592],[114,73,76,6.015043258666992],[114,73,77,6.035196781158447],[114,73,78,6.042359828948975],[114,73,79,6.033916473388672],[114,74,64,6.004017353057861],[114,74,65,6.005990982055664],[114,74,66,6.005512237548828],[114,74,67,6.0021138191223145],[114,74,68,5.998892784118652],[114,74,69,5.994562149047852],[114,74,70,5.99104118347168],[114,74,71,5.989717483520508],[114,74,72,5.989929676055908],[114,74,73,5.989076137542725],[114,74,74,5.987583160400391],[114,74,75,5.996276378631592],[114,74,76,6.015043258666992],[114,74,77,6.035196781158447],[114,74,78,6.042359828948975],[114,74,79,6.033916473388672],[114,75,64,6.004017353057861],[114,75,65,6.005990982055664],[114,75,66,6.005512237548828],[114,75,67,6.0021138191223145],[114,75,68,5.998892784118652],[114,75,69,5.994562149047852],[114,75,70,5.99104118347168],[114,75,71,5.989717483520508],[114,75,72,5.989929676055908],[114,75,73,5.989076137542725],[114,75,74,5.987583160400391],[114,75,75,5.996276378631592],[114,75,76,6.015043258666992],[114,75,77,6.035196781158447],[114,75,78,6.042359828948975],[114,75,79,6.033916473388672],[114,76,64,6.004017353057861],[114,76,65,6.005990982055664],[114,76,66,6.005512237548828],[114,76,67,6.0021138191223145],[114,76,68,5.998892784118652],[114,76,69,5.994562149047852],[114,76,70,5.99104118347168],[114,76,71,5.989717483520508],[114,76,72,5.989929676055908],[114,76,73,5.989076137542725],[114,76,74,5.987583160400391],[114,76,75,5.996276378631592],[114,76,76,6.015043258666992],[114,76,77,6.035196781158447],[114,76,78,6.042359828948975],[114,76,79,6.033916473388672],[114,77,64,6.004017353057861],[114,77,65,6.005990982055664],[114,77,66,6.005512237548828],[114,77,67,6.0021138191223145],[114,77,68,5.998892784118652],[114,77,69,5.994562149047852],[114,77,70,5.99104118347168],[114,77,71,5.989717483520508],[114,77,72,5.989929676055908],[114,77,73,5.989076137542725],[114,77,74,5.987583160400391],[114,77,75,5.996276378631592],[114,77,76,6.015043258666992],[114,77,77,6.035196781158447],[114,77,78,6.042359828948975],[114,77,79,6.033916473388672],[114,78,64,6.004017353057861],[114,78,65,6.005990982055664],[114,78,66,6.005512237548828],[114,78,67,6.0021138191223145],[114,78,68,5.998892784118652],[114,78,69,5.994562149047852],[114,78,70,5.99104118347168],[114,78,71,5.989717483520508],[114,78,72,5.989929676055908],[114,78,73,5.989076137542725],[114,78,74,5.987583160400391],[114,78,75,5.996276378631592],[114,78,76,6.015043258666992],[114,78,77,6.035196781158447],[114,78,78,6.042359828948975],[114,78,79,6.033916473388672],[114,79,64,6.004017353057861],[114,79,65,6.005990982055664],[114,79,66,6.005512237548828],[114,79,67,6.0021138191223145],[114,79,68,5.998892784118652],[114,79,69,5.994562149047852],[114,79,70,5.99104118347168],[114,79,71,5.989717483520508],[114,79,72,5.989929676055908],[114,79,73,5.989076137542725],[114,79,74,5.987583160400391],[114,79,75,5.996276378631592],[114,79,76,6.015043258666992],[114,79,77,6.035196781158447],[114,79,78,6.042359828948975],[114,79,79,6.033916473388672],[114,80,64,6.004017353057861],[114,80,65,6.005990982055664],[114,80,66,6.005512237548828],[114,80,67,6.0021138191223145],[114,80,68,5.998892784118652],[114,80,69,5.994562149047852],[114,80,70,5.99104118347168],[114,80,71,5.989717483520508],[114,80,72,5.989929676055908],[114,80,73,5.989076137542725],[114,80,74,5.987583160400391],[114,80,75,5.996276378631592],[114,80,76,6.015043258666992],[114,80,77,6.035196781158447],[114,80,78,6.042359828948975],[114,80,79,6.033916473388672],[114,81,64,6.004017353057861],[114,81,65,6.005990982055664],[114,81,66,6.005512237548828],[114,81,67,6.0021138191223145],[114,81,68,5.998892784118652],[114,81,69,5.994562149047852],[114,81,70,5.99104118347168],[114,81,71,5.989717483520508],[114,81,72,5.989929676055908],[114,81,73,5.989076137542725],[114,81,74,5.987583160400391],[114,81,75,5.996276378631592],[114,81,76,6.015043258666992],[114,81,77,6.035196781158447],[114,81,78,6.042359828948975],[114,81,79,6.033916473388672],[114,82,64,6.004017353057861],[114,82,65,6.005990982055664],[114,82,66,6.005512237548828],[114,82,67,6.0021138191223145],[114,82,68,5.998892784118652],[114,82,69,5.994562149047852],[114,82,70,5.99104118347168],[114,82,71,5.989717483520508],[114,82,72,5.989929676055908],[114,82,73,5.989076137542725],[114,82,74,5.987583160400391],[114,82,75,5.996276378631592],[114,82,76,6.015043258666992],[114,82,77,6.035196781158447],[114,82,78,6.042359828948975],[114,82,79,6.033916473388672],[114,83,64,6.004017353057861],[114,83,65,6.005990982055664],[114,83,66,6.005512237548828],[114,83,67,6.0021138191223145],[114,83,68,5.998892784118652],[114,83,69,5.994562149047852],[114,83,70,5.99104118347168],[114,83,71,5.989717483520508],[114,83,72,5.989929676055908],[114,83,73,5.989076137542725],[114,83,74,5.987583160400391],[114,83,75,5.996276378631592],[114,83,76,6.015043258666992],[114,83,77,6.035196781158447],[114,83,78,6.042359828948975],[114,83,79,6.033916473388672],[114,84,64,6.004017353057861],[114,84,65,6.005990982055664],[114,84,66,6.005512237548828],[114,84,67,6.0021138191223145],[114,84,68,5.998892784118652],[114,84,69,5.994562149047852],[114,84,70,5.99104118347168],[114,84,71,5.989717483520508],[114,84,72,5.989929676055908],[114,84,73,5.989076137542725],[114,84,74,5.987583160400391],[114,84,75,5.996276378631592],[114,84,76,6.015043258666992],[114,84,77,6.035196781158447],[114,84,78,6.042359828948975],[114,84,79,6.033916473388672],[114,85,64,6.004017353057861],[114,85,65,6.005990982055664],[114,85,66,6.005512237548828],[114,85,67,6.0021138191223145],[114,85,68,5.998892784118652],[114,85,69,5.994562149047852],[114,85,70,5.99104118347168],[114,85,71,5.989717483520508],[114,85,72,5.989929676055908],[114,85,73,5.989076137542725],[114,85,74,5.987583160400391],[114,85,75,5.996276378631592],[114,85,76,6.015043258666992],[114,85,77,6.035196781158447],[114,85,78,6.042359828948975],[114,85,79,6.033916473388672],[114,86,64,6.004017353057861],[114,86,65,6.005990982055664],[114,86,66,6.005512237548828],[114,86,67,6.0021138191223145],[114,86,68,5.998892784118652],[114,86,69,5.994562149047852],[114,86,70,5.99104118347168],[114,86,71,5.989717483520508],[114,86,72,5.989929676055908],[114,86,73,5.989076137542725],[114,86,74,5.987583160400391],[114,86,75,5.996276378631592],[114,86,76,6.015043258666992],[114,86,77,6.035196781158447],[114,86,78,6.042359828948975],[114,86,79,6.033916473388672],[114,87,64,6.004017353057861],[114,87,65,6.005990982055664],[114,87,66,6.005512237548828],[114,87,67,6.0021138191223145],[114,87,68,5.998892784118652],[114,87,69,5.994562149047852],[114,87,70,5.99104118347168],[114,87,71,5.989717483520508],[114,87,72,5.989929676055908],[114,87,73,5.989076137542725],[114,87,74,5.987583160400391],[114,87,75,5.996276378631592],[114,87,76,6.015043258666992],[114,87,77,6.035196781158447],[114,87,78,6.042359828948975],[114,87,79,6.033916473388672],[114,88,64,6.004017353057861],[114,88,65,6.005990982055664],[114,88,66,6.005512237548828],[114,88,67,6.0021138191223145],[114,88,68,5.998892784118652],[114,88,69,5.994562149047852],[114,88,70,5.99104118347168],[114,88,71,5.989717483520508],[114,88,72,5.989929676055908],[114,88,73,5.989076137542725],[114,88,74,5.987583160400391],[114,88,75,5.996276378631592],[114,88,76,6.015043258666992],[114,88,77,6.035196781158447],[114,88,78,6.042359828948975],[114,88,79,6.033916473388672],[114,89,64,6.004017353057861],[114,89,65,6.005990982055664],[114,89,66,6.005512237548828],[114,89,67,6.0021138191223145],[114,89,68,5.998892784118652],[114,89,69,5.994562149047852],[114,89,70,5.99104118347168],[114,89,71,5.989717483520508],[114,89,72,5.989929676055908],[114,89,73,5.989076137542725],[114,89,74,5.987583160400391],[114,89,75,5.996276378631592],[114,89,76,6.015043258666992],[114,89,77,6.035196781158447],[114,89,78,6.042359828948975],[114,89,79,6.033916473388672],[114,90,64,6.004017353057861],[114,90,65,6.005990982055664],[114,90,66,6.005512237548828],[114,90,67,6.0021138191223145],[114,90,68,5.998892784118652],[114,90,69,5.994562149047852],[114,90,70,5.99104118347168],[114,90,71,5.989717483520508],[114,90,72,5.989929676055908],[114,90,73,5.989076137542725],[114,90,74,5.987583160400391],[114,90,75,5.996276378631592],[114,90,76,6.015043258666992],[114,90,77,6.035196781158447],[114,90,78,6.042359828948975],[114,90,79,6.033916473388672],[114,91,64,6.004017353057861],[114,91,65,6.005990982055664],[114,91,66,6.005512237548828],[114,91,67,6.0021138191223145],[114,91,68,5.998892784118652],[114,91,69,5.994562149047852],[114,91,70,5.99104118347168],[114,91,71,5.989717483520508],[114,91,72,5.989929676055908],[114,91,73,5.989076137542725],[114,91,74,5.987583160400391],[114,91,75,5.996276378631592],[114,91,76,6.015043258666992],[114,91,77,6.035196781158447],[114,91,78,6.042359828948975],[114,91,79,6.033916473388672],[114,92,64,6.004017353057861],[114,92,65,6.005990982055664],[114,92,66,6.005512237548828],[114,92,67,6.0021138191223145],[114,92,68,5.998892784118652],[114,92,69,5.994562149047852],[114,92,70,5.99104118347168],[114,92,71,5.989717483520508],[114,92,72,5.989929676055908],[114,92,73,5.989076137542725],[114,92,74,5.987583160400391],[114,92,75,5.996276378631592],[114,92,76,6.015043258666992],[114,92,77,6.035196781158447],[114,92,78,6.042359828948975],[114,92,79,6.033916473388672],[114,93,64,6.004017353057861],[114,93,65,6.005990982055664],[114,93,66,6.005512237548828],[114,93,67,6.0021138191223145],[114,93,68,5.998892784118652],[114,93,69,5.994562149047852],[114,93,70,5.99104118347168],[114,93,71,5.989717483520508],[114,93,72,5.989929676055908],[114,93,73,5.989076137542725],[114,93,74,5.987583160400391],[114,93,75,5.996276378631592],[114,93,76,6.015043258666992],[114,93,77,6.035196781158447],[114,93,78,6.042359828948975],[114,93,79,6.033916473388672],[114,94,64,6.004017353057861],[114,94,65,6.005990982055664],[114,94,66,6.005512237548828],[114,94,67,6.0021138191223145],[114,94,68,5.998892784118652],[114,94,69,5.994562149047852],[114,94,70,5.99104118347168],[114,94,71,5.989717483520508],[114,94,72,5.989929676055908],[114,94,73,5.989076137542725],[114,94,74,5.987583160400391],[114,94,75,5.996276378631592],[114,94,76,6.015043258666992],[114,94,77,6.035196781158447],[114,94,78,6.042359828948975],[114,94,79,6.033916473388672],[114,95,64,6.004017353057861],[114,95,65,6.005990982055664],[114,95,66,6.005512237548828],[114,95,67,6.0021138191223145],[114,95,68,5.998892784118652],[114,95,69,5.994562149047852],[114,95,70,5.99104118347168],[114,95,71,5.989717483520508],[114,95,72,5.989929676055908],[114,95,73,5.989076137542725],[114,95,74,5.987583160400391],[114,95,75,5.996276378631592],[114,95,76,6.015043258666992],[114,95,77,6.035196781158447],[114,95,78,6.042359828948975],[114,95,79,6.033916473388672],[114,96,64,6.004017353057861],[114,96,65,6.005990982055664],[114,96,66,6.005512237548828],[114,96,67,6.0021138191223145],[114,96,68,5.998892784118652],[114,96,69,5.994562149047852],[114,96,70,5.99104118347168],[114,96,71,5.989717483520508],[114,96,72,5.989929676055908],[114,96,73,5.989076137542725],[114,96,74,5.987583160400391],[114,96,75,5.996276378631592],[114,96,76,6.015043258666992],[114,96,77,6.035196781158447],[114,96,78,6.042359828948975],[114,96,79,6.033916473388672],[114,97,64,6.004017353057861],[114,97,65,6.005990982055664],[114,97,66,6.005512237548828],[114,97,67,6.0021138191223145],[114,97,68,5.998892784118652],[114,97,69,5.994562149047852],[114,97,70,5.99104118347168],[114,97,71,5.989717483520508],[114,97,72,5.989929676055908],[114,97,73,5.989076137542725],[114,97,74,5.987583160400391],[114,97,75,5.996276378631592],[114,97,76,6.015043258666992],[114,97,77,6.035196781158447],[114,97,78,6.042359828948975],[114,97,79,6.033916473388672],[114,98,64,6.004017353057861],[114,98,65,6.005990982055664],[114,98,66,6.005512237548828],[114,98,67,6.0021138191223145],[114,98,68,5.998892784118652],[114,98,69,5.994562149047852],[114,98,70,5.99104118347168],[114,98,71,5.989717483520508],[114,98,72,5.989929676055908],[114,98,73,5.989076137542725],[114,98,74,5.987583160400391],[114,98,75,5.996276378631592],[114,98,76,6.015043258666992],[114,98,77,6.035196781158447],[114,98,78,6.042359828948975],[114,98,79,6.033916473388672],[114,99,64,6.004017353057861],[114,99,65,6.005990982055664],[114,99,66,6.005512237548828],[114,99,67,6.0021138191223145],[114,99,68,5.998892784118652],[114,99,69,5.994562149047852],[114,99,70,5.99104118347168],[114,99,71,5.989717483520508],[114,99,72,5.989929676055908],[114,99,73,5.989076137542725],[114,99,74,5.987583160400391],[114,99,75,5.996276378631592],[114,99,76,6.015043258666992],[114,99,77,6.035196781158447],[114,99,78,6.042359828948975],[114,99,79,6.033916473388672],[114,100,64,6.004017353057861],[114,100,65,6.005990982055664],[114,100,66,6.005512237548828],[114,100,67,6.0021138191223145],[114,100,68,5.998892784118652],[114,100,69,5.994562149047852],[114,100,70,5.99104118347168],[114,100,71,5.989717483520508],[114,100,72,5.989929676055908],[114,100,73,5.989076137542725],[114,100,74,5.987583160400391],[114,100,75,5.996276378631592],[114,100,76,6.015043258666992],[114,100,77,6.035196781158447],[114,100,78,6.042359828948975],[114,100,79,6.033916473388672],[114,101,64,6.004017353057861],[114,101,65,6.005990982055664],[114,101,66,6.005512237548828],[114,101,67,6.0021138191223145],[114,101,68,5.998892784118652],[114,101,69,5.994562149047852],[114,101,70,5.99104118347168],[114,101,71,5.989717483520508],[114,101,72,5.989929676055908],[114,101,73,5.989076137542725],[114,101,74,5.987583160400391],[114,101,75,5.996276378631592],[114,101,76,6.015043258666992],[114,101,77,6.035196781158447],[114,101,78,6.042359828948975],[114,101,79,6.033916473388672],[114,102,64,6.004017353057861],[114,102,65,6.005990982055664],[114,102,66,6.005512237548828],[114,102,67,6.0021138191223145],[114,102,68,5.998892784118652],[114,102,69,5.994562149047852],[114,102,70,5.99104118347168],[114,102,71,5.989717483520508],[114,102,72,5.989929676055908],[114,102,73,5.989076137542725],[114,102,74,5.987583160400391],[114,102,75,5.996276378631592],[114,102,76,6.015043258666992],[114,102,77,6.035196781158447],[114,102,78,6.042359828948975],[114,102,79,6.033916473388672],[114,103,64,6.004017353057861],[114,103,65,6.005990982055664],[114,103,66,6.005512237548828],[114,103,67,6.0021138191223145],[114,103,68,5.998892784118652],[114,103,69,5.994562149047852],[114,103,70,5.99104118347168],[114,103,71,5.989717483520508],[114,103,72,5.989929676055908],[114,103,73,5.989076137542725],[114,103,74,5.987583160400391],[114,103,75,5.996276378631592],[114,103,76,6.015043258666992],[114,103,77,6.035196781158447],[114,103,78,6.042359828948975],[114,103,79,6.033916473388672],[114,104,64,6.004017353057861],[114,104,65,6.005990982055664],[114,104,66,6.005512237548828],[114,104,67,6.0021138191223145],[114,104,68,5.998892784118652],[114,104,69,5.994562149047852],[114,104,70,5.99104118347168],[114,104,71,5.989717483520508],[114,104,72,5.989929676055908],[114,104,73,5.989076137542725],[114,104,74,5.987583160400391],[114,104,75,5.996276378631592],[114,104,76,6.015043258666992],[114,104,77,6.035196781158447],[114,104,78,6.042359828948975],[114,104,79,6.033916473388672],[114,105,64,6.004017353057861],[114,105,65,6.005990982055664],[114,105,66,6.005512237548828],[114,105,67,6.0021138191223145],[114,105,68,5.998892784118652],[114,105,69,5.994562149047852],[114,105,70,5.99104118347168],[114,105,71,5.989717483520508],[114,105,72,5.989929676055908],[114,105,73,5.989076137542725],[114,105,74,5.987583160400391],[114,105,75,5.996276378631592],[114,105,76,6.015043258666992],[114,105,77,6.035196781158447],[114,105,78,6.042359828948975],[114,105,79,6.033916473388672],[114,106,64,6.004017353057861],[114,106,65,6.005990982055664],[114,106,66,6.005512237548828],[114,106,67,6.0021138191223145],[114,106,68,5.998892784118652],[114,106,69,5.994562149047852],[114,106,70,5.99104118347168],[114,106,71,5.989717483520508],[114,106,72,5.989929676055908],[114,106,73,5.989076137542725],[114,106,74,5.987583160400391],[114,106,75,5.996276378631592],[114,106,76,6.015043258666992],[114,106,77,6.035196781158447],[114,106,78,6.042359828948975],[114,106,79,6.033916473388672],[114,107,64,6.004017353057861],[114,107,65,6.005990982055664],[114,107,66,6.005512237548828],[114,107,67,6.0021138191223145],[114,107,68,5.998892784118652],[114,107,69,5.994562149047852],[114,107,70,5.99104118347168],[114,107,71,5.989717483520508],[114,107,72,5.989929676055908],[114,107,73,5.989076137542725],[114,107,74,5.987583160400391],[114,107,75,5.996276378631592],[114,107,76,6.015043258666992],[114,107,77,6.035196781158447],[114,107,78,6.042359828948975],[114,107,79,6.033916473388672],[114,108,64,6.004017353057861],[114,108,65,6.005990982055664],[114,108,66,6.005512237548828],[114,108,67,6.0021138191223145],[114,108,68,5.998892784118652],[114,108,69,5.994562149047852],[114,108,70,5.99104118347168],[114,108,71,5.989717483520508],[114,108,72,5.989929676055908],[114,108,73,5.989076137542725],[114,108,74,5.987583160400391],[114,108,75,5.996276378631592],[114,108,76,6.015043258666992],[114,108,77,6.035196781158447],[114,108,78,6.042359828948975],[114,108,79,6.033916473388672],[114,109,64,6.004017353057861],[114,109,65,6.005990982055664],[114,109,66,6.005512237548828],[114,109,67,6.0021138191223145],[114,109,68,5.998892784118652],[114,109,69,5.994562149047852],[114,109,70,5.99104118347168],[114,109,71,5.989717483520508],[114,109,72,5.989929676055908],[114,109,73,5.989076137542725],[114,109,74,5.987583160400391],[114,109,75,5.996276378631592],[114,109,76,6.015043258666992],[114,109,77,6.035196781158447],[114,109,78,6.042359828948975],[114,109,79,6.033916473388672],[114,110,64,6.004017353057861],[114,110,65,6.005990982055664],[114,110,66,6.005512237548828],[114,110,67,6.0021138191223145],[114,110,68,5.998892784118652],[114,110,69,5.994562149047852],[114,110,70,5.99104118347168],[114,110,71,5.989717483520508],[114,110,72,5.989929676055908],[114,110,73,5.989076137542725],[114,110,74,5.987583160400391],[114,110,75,5.996276378631592],[114,110,76,6.015043258666992],[114,110,77,6.035196781158447],[114,110,78,6.042359828948975],[114,110,79,6.033916473388672],[114,111,64,6.004017353057861],[114,111,65,6.005990982055664],[114,111,66,6.005512237548828],[114,111,67,6.0021138191223145],[114,111,68,5.998892784118652],[114,111,69,5.994562149047852],[114,111,70,5.99104118347168],[114,111,71,5.989717483520508],[114,111,72,5.989929676055908],[114,111,73,5.989076137542725],[114,111,74,5.987583160400391],[114,111,75,5.996276378631592],[114,111,76,6.015043258666992],[114,111,77,6.035196781158447],[114,111,78,6.042359828948975],[114,111,79,6.033916473388672],[114,112,64,6.004017353057861],[114,112,65,6.005990982055664],[114,112,66,6.005512237548828],[114,112,67,6.0021138191223145],[114,112,68,5.998892784118652],[114,112,69,5.994562149047852],[114,112,70,5.99104118347168],[114,112,71,5.989717483520508],[114,112,72,5.989929676055908],[114,112,73,5.989076137542725],[114,112,74,5.987583160400391],[114,112,75,5.996276378631592],[114,112,76,6.015043258666992],[114,112,77,6.035196781158447],[114,112,78,6.042359828948975],[114,112,79,6.033916473388672],[114,113,64,6.004017353057861],[114,113,65,6.005990982055664],[114,113,66,6.005512237548828],[114,113,67,6.0021138191223145],[114,113,68,5.998892784118652],[114,113,69,5.994562149047852],[114,113,70,5.99104118347168],[114,113,71,5.989717483520508],[114,113,72,5.989929676055908],[114,113,73,5.989076137542725],[114,113,74,5.987583160400391],[114,113,75,5.996276378631592],[114,113,76,6.015043258666992],[114,113,77,6.035196781158447],[114,113,78,6.042359828948975],[114,113,79,6.033916473388672],[114,114,64,6.004017353057861],[114,114,65,6.005990982055664],[114,114,66,6.005512237548828],[114,114,67,6.0021138191223145],[114,114,68,5.998892784118652],[114,114,69,5.994562149047852],[114,114,70,5.99104118347168],[114,114,71,5.989717483520508],[114,114,72,5.989929676055908],[114,114,73,5.989076137542725],[114,114,74,5.987583160400391],[114,114,75,5.996276378631592],[114,114,76,6.015043258666992],[114,114,77,6.035196781158447],[114,114,78,6.042359828948975],[114,114,79,6.033916473388672],[114,115,64,6.004017353057861],[114,115,65,6.005990982055664],[114,115,66,6.005512237548828],[114,115,67,6.0021138191223145],[114,115,68,5.998892784118652],[114,115,69,5.994562149047852],[114,115,70,5.99104118347168],[114,115,71,5.989717483520508],[114,115,72,5.989929676055908],[114,115,73,5.989076137542725],[114,115,74,5.987583160400391],[114,115,75,5.996276378631592],[114,115,76,6.015043258666992],[114,115,77,6.035196781158447],[114,115,78,6.042359828948975],[114,115,79,6.033916473388672],[114,116,64,6.004017353057861],[114,116,65,6.005990982055664],[114,116,66,6.005512237548828],[114,116,67,6.0021138191223145],[114,116,68,5.998892784118652],[114,116,69,5.994562149047852],[114,116,70,5.99104118347168],[114,116,71,5.989717483520508],[114,116,72,5.989929676055908],[114,116,73,5.989076137542725],[114,116,74,5.987583160400391],[114,116,75,5.996276378631592],[114,116,76,6.015043258666992],[114,116,77,6.035196781158447],[114,116,78,6.042359828948975],[114,116,79,6.033916473388672],[114,117,64,6.004017353057861],[114,117,65,6.005990982055664],[114,117,66,6.005512237548828],[114,117,67,6.0021138191223145],[114,117,68,5.998892784118652],[114,117,69,5.994562149047852],[114,117,70,5.99104118347168],[114,117,71,5.989717483520508],[114,117,72,5.989929676055908],[114,117,73,5.989076137542725],[114,117,74,5.987583160400391],[114,117,75,5.996276378631592],[114,117,76,6.015043258666992],[114,117,77,6.035196781158447],[114,117,78,6.042359828948975],[114,117,79,6.033916473388672],[114,118,64,6.004017353057861],[114,118,65,6.005990982055664],[114,118,66,6.005512237548828],[114,118,67,6.0021138191223145],[114,118,68,5.998892784118652],[114,118,69,5.994562149047852],[114,118,70,5.99104118347168],[114,118,71,5.989717483520508],[114,118,72,5.989929676055908],[114,118,73,5.989076137542725],[114,118,74,5.987583160400391],[114,118,75,5.996276378631592],[114,118,76,6.015043258666992],[114,118,77,6.035196781158447],[114,118,78,6.042359828948975],[114,118,79,6.033916473388672],[114,119,64,6.004017353057861],[114,119,65,6.005990982055664],[114,119,66,6.005512237548828],[114,119,67,6.0021138191223145],[114,119,68,5.998892784118652],[114,119,69,5.994562149047852],[114,119,70,5.99104118347168],[114,119,71,5.989717483520508],[114,119,72,5.989929676055908],[114,119,73,5.989076137542725],[114,119,74,5.987583160400391],[114,119,75,5.996276378631592],[114,119,76,6.015043258666992],[114,119,77,6.035196781158447],[114,119,78,6.042359828948975],[114,119,79,6.033916473388672],[114,120,64,6.004017353057861],[114,120,65,6.005990982055664],[114,120,66,6.005512237548828],[114,120,67,6.0021138191223145],[114,120,68,5.998892784118652],[114,120,69,5.994562149047852],[114,120,70,5.99104118347168],[114,120,71,5.989717483520508],[114,120,72,5.989929676055908],[114,120,73,5.989076137542725],[114,120,74,5.987583160400391],[114,120,75,5.996276378631592],[114,120,76,6.015043258666992],[114,120,77,6.035196781158447],[114,120,78,6.042359828948975],[114,120,79,6.033916473388672],[114,121,64,6.004017353057861],[114,121,65,6.005990982055664],[114,121,66,6.005512237548828],[114,121,67,6.0021138191223145],[114,121,68,5.998892784118652],[114,121,69,5.994562149047852],[114,121,70,5.99104118347168],[114,121,71,5.989717483520508],[114,121,72,5.989929676055908],[114,121,73,5.989076137542725],[114,121,74,5.987583160400391],[114,121,75,5.996276378631592],[114,121,76,6.015043258666992],[114,121,77,6.035196781158447],[114,121,78,6.042359828948975],[114,121,79,6.033916473388672],[114,122,64,6.004017353057861],[114,122,65,6.005990982055664],[114,122,66,6.005512237548828],[114,122,67,6.0021138191223145],[114,122,68,5.998892784118652],[114,122,69,5.994562149047852],[114,122,70,5.99104118347168],[114,122,71,5.989717483520508],[114,122,72,5.989929676055908],[114,122,73,5.989076137542725],[114,122,74,5.987583160400391],[114,122,75,5.996276378631592],[114,122,76,6.015043258666992],[114,122,77,6.035196781158447],[114,122,78,6.042359828948975],[114,122,79,6.033916473388672],[114,123,64,6.004017353057861],[114,123,65,6.005990982055664],[114,123,66,6.005512237548828],[114,123,67,6.0021138191223145],[114,123,68,5.998892784118652],[114,123,69,5.994562149047852],[114,123,70,5.99104118347168],[114,123,71,5.989717483520508],[114,123,72,5.989929676055908],[114,123,73,5.989076137542725],[114,123,74,5.987583160400391],[114,123,75,5.996276378631592],[114,123,76,6.015043258666992],[114,123,77,6.035196781158447],[114,123,78,6.042359828948975],[114,123,79,6.033916473388672],[114,124,64,6.004017353057861],[114,124,65,6.005990982055664],[114,124,66,6.005512237548828],[114,124,67,6.0021138191223145],[114,124,68,5.998892784118652],[114,124,69,5.994562149047852],[114,124,70,5.99104118347168],[114,124,71,5.989717483520508],[114,124,72,5.989929676055908],[114,124,73,5.989076137542725],[114,124,74,5.987583160400391],[114,124,75,5.996276378631592],[114,124,76,6.015043258666992],[114,124,77,6.035196781158447],[114,124,78,6.042359828948975],[114,124,79,6.033916473388672],[114,125,64,6.004017353057861],[114,125,65,6.005990982055664],[114,125,66,6.005512237548828],[114,125,67,6.0021138191223145],[114,125,68,5.998892784118652],[114,125,69,5.994562149047852],[114,125,70,5.99104118347168],[114,125,71,5.989717483520508],[114,125,72,5.989929676055908],[114,125,73,5.989076137542725],[114,125,74,5.987583160400391],[114,125,75,5.996276378631592],[114,125,76,6.015043258666992],[114,125,77,6.035196781158447],[114,125,78,6.042359828948975],[114,125,79,6.033916473388672],[114,126,64,6.004017353057861],[114,126,65,6.005990982055664],[114,126,66,6.005512237548828],[114,126,67,6.0021138191223145],[114,126,68,5.998892784118652],[114,126,69,5.994562149047852],[114,126,70,5.99104118347168],[114,126,71,5.989717483520508],[114,126,72,5.989929676055908],[114,126,73,5.989076137542725],[114,126,74,5.987583160400391],[114,126,75,5.996276378631592],[114,126,76,6.015043258666992],[114,126,77,6.035196781158447],[114,126,78,6.042359828948975],[114,126,79,6.033916473388672],[114,127,64,6.004017353057861],[114,127,65,6.005990982055664],[114,127,66,6.005512237548828],[114,127,67,6.0021138191223145],[114,127,68,5.998892784118652],[114,127,69,5.994562149047852],[114,127,70,5.99104118347168],[114,127,71,5.989717483520508],[114,127,72,5.989929676055908],[114,127,73,5.989076137542725],[114,127,74,5.987583160400391],[114,127,75,5.996276378631592],[114,127,76,6.015043258666992],[114,127,77,6.035196781158447],[114,127,78,6.042359828948975],[114,127,79,6.033916473388672],[114,128,64,6.004017353057861],[114,128,65,6.005990982055664],[114,128,66,6.005512237548828],[114,128,67,6.0021138191223145],[114,128,68,5.998892784118652],[114,128,69,5.994562149047852],[114,128,70,5.99104118347168],[114,128,71,5.989717483520508],[114,128,72,5.989929676055908],[114,128,73,5.989076137542725],[114,128,74,5.987583160400391],[114,128,75,5.996276378631592],[114,128,76,6.015043258666992],[114,128,77,6.035196781158447],[114,128,78,6.042359828948975],[114,128,79,6.033916473388672],[114,129,64,6.004017353057861],[114,129,65,6.005990982055664],[114,129,66,6.005512237548828],[114,129,67,6.0021138191223145],[114,129,68,5.998892784118652],[114,129,69,5.994562149047852],[114,129,70,5.99104118347168],[114,129,71,5.989717483520508],[114,129,72,5.989929676055908],[114,129,73,5.989076137542725],[114,129,74,5.987583160400391],[114,129,75,5.996276378631592],[114,129,76,6.015043258666992],[114,129,77,6.035196781158447],[114,129,78,6.042359828948975],[114,129,79,6.033916473388672],[114,130,64,6.004017353057861],[114,130,65,6.005990982055664],[114,130,66,6.005512237548828],[114,130,67,6.0021138191223145],[114,130,68,5.998892784118652],[114,130,69,5.994562149047852],[114,130,70,5.99104118347168],[114,130,71,5.989717483520508],[114,130,72,5.989929676055908],[114,130,73,5.989076137542725],[114,130,74,5.987583160400391],[114,130,75,5.996276378631592],[114,130,76,6.015043258666992],[114,130,77,6.035196781158447],[114,130,78,6.042359828948975],[114,130,79,6.033916473388672],[114,131,64,6.004017353057861],[114,131,65,6.005990982055664],[114,131,66,6.005512237548828],[114,131,67,6.0021138191223145],[114,131,68,5.998892784118652],[114,131,69,5.994562149047852],[114,131,70,5.99104118347168],[114,131,71,5.989717483520508],[114,131,72,5.989929676055908],[114,131,73,5.989076137542725],[114,131,74,5.987583160400391],[114,131,75,5.996276378631592],[114,131,76,6.015043258666992],[114,131,77,6.035196781158447],[114,131,78,6.042359828948975],[114,131,79,6.033916473388672],[114,132,64,6.004017353057861],[114,132,65,6.005990982055664],[114,132,66,6.005512237548828],[114,132,67,6.0021138191223145],[114,132,68,5.998892784118652],[114,132,69,5.994562149047852],[114,132,70,5.99104118347168],[114,132,71,5.989717483520508],[114,132,72,5.989929676055908],[114,132,73,5.989076137542725],[114,132,74,5.987583160400391],[114,132,75,5.996276378631592],[114,132,76,6.015043258666992],[114,132,77,6.035196781158447],[114,132,78,6.042359828948975],[114,132,79,6.033916473388672],[114,133,64,6.004017353057861],[114,133,65,6.005990982055664],[114,133,66,6.005512237548828],[114,133,67,6.0021138191223145],[114,133,68,5.998892784118652],[114,133,69,5.994562149047852],[114,133,70,5.99104118347168],[114,133,71,5.989717483520508],[114,133,72,5.989929676055908],[114,133,73,5.989076137542725],[114,133,74,5.987583160400391],[114,133,75,5.996276378631592],[114,133,76,6.015043258666992],[114,133,77,6.035196781158447],[114,133,78,6.042359828948975],[114,133,79,6.033916473388672],[114,134,64,6.004017353057861],[114,134,65,6.005990982055664],[114,134,66,6.005512237548828],[114,134,67,6.0021138191223145],[114,134,68,5.998892784118652],[114,134,69,5.994562149047852],[114,134,70,5.99104118347168],[114,134,71,5.989717483520508],[114,134,72,5.989929676055908],[114,134,73,5.989076137542725],[114,134,74,5.987583160400391],[114,134,75,5.996276378631592],[114,134,76,6.015043258666992],[114,134,77,6.035196781158447],[114,134,78,6.042359828948975],[114,134,79,6.033916473388672],[114,135,64,6.004017353057861],[114,135,65,6.005990982055664],[114,135,66,6.005512237548828],[114,135,67,6.0021138191223145],[114,135,68,5.998892784118652],[114,135,69,5.994562149047852],[114,135,70,5.99104118347168],[114,135,71,5.989717483520508],[114,135,72,5.989929676055908],[114,135,73,5.989076137542725],[114,135,74,5.987583160400391],[114,135,75,5.996276378631592],[114,135,76,6.015043258666992],[114,135,77,6.035196781158447],[114,135,78,6.042359828948975],[114,135,79,6.033916473388672],[114,136,64,6.004017353057861],[114,136,65,6.005990982055664],[114,136,66,6.005512237548828],[114,136,67,6.0021138191223145],[114,136,68,5.998892784118652],[114,136,69,5.994562149047852],[114,136,70,5.99104118347168],[114,136,71,5.989717483520508],[114,136,72,5.989929676055908],[114,136,73,5.989076137542725],[114,136,74,5.987583160400391],[114,136,75,5.996276378631592],[114,136,76,6.015043258666992],[114,136,77,6.035196781158447],[114,136,78,6.042359828948975],[114,136,79,6.033916473388672],[114,137,64,6.004017353057861],[114,137,65,6.005990982055664],[114,137,66,6.005512237548828],[114,137,67,6.0021138191223145],[114,137,68,5.998892784118652],[114,137,69,5.994562149047852],[114,137,70,5.99104118347168],[114,137,71,5.989717483520508],[114,137,72,5.989929676055908],[114,137,73,5.989076137542725],[114,137,74,5.987583160400391],[114,137,75,5.996276378631592],[114,137,76,6.015043258666992],[114,137,77,6.035196781158447],[114,137,78,6.042359828948975],[114,137,79,6.033916473388672],[114,138,64,6.004017353057861],[114,138,65,6.005990982055664],[114,138,66,6.005512237548828],[114,138,67,6.0021138191223145],[114,138,68,5.998892784118652],[114,138,69,5.994562149047852],[114,138,70,5.99104118347168],[114,138,71,5.989717483520508],[114,138,72,5.989929676055908],[114,138,73,5.989076137542725],[114,138,74,5.987583160400391],[114,138,75,5.996276378631592],[114,138,76,6.015043258666992],[114,138,77,6.035196781158447],[114,138,78,6.042359828948975],[114,138,79,6.033916473388672],[114,139,64,6.004017353057861],[114,139,65,6.005990982055664],[114,139,66,6.005512237548828],[114,139,67,6.0021138191223145],[114,139,68,5.998892784118652],[114,139,69,5.994562149047852],[114,139,70,5.99104118347168],[114,139,71,5.989717483520508],[114,139,72,5.989929676055908],[114,139,73,5.989076137542725],[114,139,74,5.987583160400391],[114,139,75,5.996276378631592],[114,139,76,6.015043258666992],[114,139,77,6.035196781158447],[114,139,78,6.042359828948975],[114,139,79,6.033916473388672],[114,140,64,6.004017353057861],[114,140,65,6.005990982055664],[114,140,66,6.005512237548828],[114,140,67,6.0021138191223145],[114,140,68,5.998892784118652],[114,140,69,5.994562149047852],[114,140,70,5.99104118347168],[114,140,71,5.989717483520508],[114,140,72,5.989929676055908],[114,140,73,5.989076137542725],[114,140,74,5.987583160400391],[114,140,75,5.996276378631592],[114,140,76,6.015043258666992],[114,140,77,6.035196781158447],[114,140,78,6.042359828948975],[114,140,79,6.033916473388672],[114,141,64,6.004017353057861],[114,141,65,6.005990982055664],[114,141,66,6.005512237548828],[114,141,67,6.0021138191223145],[114,141,68,5.998892784118652],[114,141,69,5.994562149047852],[114,141,70,5.99104118347168],[114,141,71,5.989717483520508],[114,141,72,5.989929676055908],[114,141,73,5.989076137542725],[114,141,74,5.987583160400391],[114,141,75,5.996276378631592],[114,141,76,6.015043258666992],[114,141,77,6.035196781158447],[114,141,78,6.042359828948975],[114,141,79,6.033916473388672],[114,142,64,6.004017353057861],[114,142,65,6.005990982055664],[114,142,66,6.005512237548828],[114,142,67,6.0021138191223145],[114,142,68,5.998892784118652],[114,142,69,5.994562149047852],[114,142,70,5.99104118347168],[114,142,71,5.989717483520508],[114,142,72,5.989929676055908],[114,142,73,5.989076137542725],[114,142,74,5.987583160400391],[114,142,75,5.996276378631592],[114,142,76,6.015043258666992],[114,142,77,6.035196781158447],[114,142,78,6.042359828948975],[114,142,79,6.033916473388672],[114,143,64,6.004017353057861],[114,143,65,6.005990982055664],[114,143,66,6.005512237548828],[114,143,67,6.0021138191223145],[114,143,68,5.998892784118652],[114,143,69,5.994562149047852],[114,143,70,5.99104118347168],[114,143,71,5.989717483520508],[114,143,72,5.989929676055908],[114,143,73,5.989076137542725],[114,143,74,5.987583160400391],[114,143,75,5.996276378631592],[114,143,76,6.015043258666992],[114,143,77,6.035196781158447],[114,143,78,6.042359828948975],[114,143,79,6.033916473388672],[114,144,64,6.004017353057861],[114,144,65,6.005990982055664],[114,144,66,6.005512237548828],[114,144,67,6.0021138191223145],[114,144,68,5.998892784118652],[114,144,69,5.994562149047852],[114,144,70,5.99104118347168],[114,144,71,5.989717483520508],[114,144,72,5.989929676055908],[114,144,73,5.989076137542725],[114,144,74,5.987583160400391],[114,144,75,5.996276378631592],[114,144,76,6.015043258666992],[114,144,77,6.035196781158447],[114,144,78,6.042359828948975],[114,144,79,6.033916473388672],[114,145,64,6.004017353057861],[114,145,65,6.005990982055664],[114,145,66,6.005512237548828],[114,145,67,6.0021138191223145],[114,145,68,5.998892784118652],[114,145,69,5.994562149047852],[114,145,70,5.99104118347168],[114,145,71,5.989717483520508],[114,145,72,5.989929676055908],[114,145,73,5.989076137542725],[114,145,74,5.987583160400391],[114,145,75,5.996276378631592],[114,145,76,6.015043258666992],[114,145,77,6.035196781158447],[114,145,78,6.042359828948975],[114,145,79,6.033916473388672],[114,146,64,6.004017353057861],[114,146,65,6.005990982055664],[114,146,66,6.005512237548828],[114,146,67,6.0021138191223145],[114,146,68,5.998892784118652],[114,146,69,5.994562149047852],[114,146,70,5.99104118347168],[114,146,71,5.989717483520508],[114,146,72,5.989929676055908],[114,146,73,5.989076137542725],[114,146,74,5.987583160400391],[114,146,75,5.996276378631592],[114,146,76,6.015043258666992],[114,146,77,6.035196781158447],[114,146,78,6.042359828948975],[114,146,79,6.033916473388672],[114,147,64,6.004017353057861],[114,147,65,6.005990982055664],[114,147,66,6.005512237548828],[114,147,67,6.0021138191223145],[114,147,68,5.998892784118652],[114,147,69,5.994562149047852],[114,147,70,5.99104118347168],[114,147,71,5.989717483520508],[114,147,72,5.989929676055908],[114,147,73,5.989076137542725],[114,147,74,5.987583160400391],[114,147,75,5.996276378631592],[114,147,76,6.015043258666992],[114,147,77,6.035196781158447],[114,147,78,6.042359828948975],[114,147,79,6.033916473388672],[114,148,64,6.004017353057861],[114,148,65,6.005990982055664],[114,148,66,6.005512237548828],[114,148,67,6.0021138191223145],[114,148,68,5.998892784118652],[114,148,69,5.994562149047852],[114,148,70,5.99104118347168],[114,148,71,5.989717483520508],[114,148,72,5.989929676055908],[114,148,73,5.989076137542725],[114,148,74,5.987583160400391],[114,148,75,5.996276378631592],[114,148,76,6.015043258666992],[114,148,77,6.035196781158447],[114,148,78,6.042359828948975],[114,148,79,6.033916473388672],[114,149,64,6.004017353057861],[114,149,65,6.005990982055664],[114,149,66,6.005512237548828],[114,149,67,6.0021138191223145],[114,149,68,5.998892784118652],[114,149,69,5.994562149047852],[114,149,70,5.99104118347168],[114,149,71,5.989717483520508],[114,149,72,5.989929676055908],[114,149,73,5.989076137542725],[114,149,74,5.987583160400391],[114,149,75,5.996276378631592],[114,149,76,6.015043258666992],[114,149,77,6.035196781158447],[114,149,78,6.042359828948975],[114,149,79,6.033916473388672],[114,150,64,6.004017353057861],[114,150,65,6.005990982055664],[114,150,66,6.005512237548828],[114,150,67,6.0021138191223145],[114,150,68,5.998892784118652],[114,150,69,5.994562149047852],[114,150,70,5.99104118347168],[114,150,71,5.989717483520508],[114,150,72,5.989929676055908],[114,150,73,5.989076137542725],[114,150,74,5.987583160400391],[114,150,75,5.996276378631592],[114,150,76,6.015043258666992],[114,150,77,6.035196781158447],[114,150,78,6.042359828948975],[114,150,79,6.033916473388672],[114,151,64,6.004017353057861],[114,151,65,6.005990982055664],[114,151,66,6.005512237548828],[114,151,67,6.0021138191223145],[114,151,68,5.998892784118652],[114,151,69,5.994562149047852],[114,151,70,5.99104118347168],[114,151,71,5.989717483520508],[114,151,72,5.989929676055908],[114,151,73,5.989076137542725],[114,151,74,5.987583160400391],[114,151,75,5.996276378631592],[114,151,76,6.015043258666992],[114,151,77,6.035196781158447],[114,151,78,6.042359828948975],[114,151,79,6.033916473388672],[114,152,64,6.004017353057861],[114,152,65,6.005990982055664],[114,152,66,6.005512237548828],[114,152,67,6.0021138191223145],[114,152,68,5.998892784118652],[114,152,69,5.994562149047852],[114,152,70,5.99104118347168],[114,152,71,5.989717483520508],[114,152,72,5.989929676055908],[114,152,73,5.989076137542725],[114,152,74,5.987583160400391],[114,152,75,5.996276378631592],[114,152,76,6.015043258666992],[114,152,77,6.035196781158447],[114,152,78,6.042359828948975],[114,152,79,6.033916473388672],[114,153,64,6.004017353057861],[114,153,65,6.005990982055664],[114,153,66,6.005512237548828],[114,153,67,6.0021138191223145],[114,153,68,5.998892784118652],[114,153,69,5.994562149047852],[114,153,70,5.99104118347168],[114,153,71,5.989717483520508],[114,153,72,5.989929676055908],[114,153,73,5.989076137542725],[114,153,74,5.987583160400391],[114,153,75,5.996276378631592],[114,153,76,6.015043258666992],[114,153,77,6.035196781158447],[114,153,78,6.042359828948975],[114,153,79,6.033916473388672],[114,154,64,6.004017353057861],[114,154,65,6.005990982055664],[114,154,66,6.005512237548828],[114,154,67,6.0021138191223145],[114,154,68,5.998892784118652],[114,154,69,5.994562149047852],[114,154,70,5.99104118347168],[114,154,71,5.989717483520508],[114,154,72,5.989929676055908],[114,154,73,5.989076137542725],[114,154,74,5.987583160400391],[114,154,75,5.996276378631592],[114,154,76,6.015043258666992],[114,154,77,6.035196781158447],[114,154,78,6.042359828948975],[114,154,79,6.033916473388672],[114,155,64,6.004017353057861],[114,155,65,6.005990982055664],[114,155,66,6.005512237548828],[114,155,67,6.0021138191223145],[114,155,68,5.998892784118652],[114,155,69,5.994562149047852],[114,155,70,5.99104118347168],[114,155,71,5.989717483520508],[114,155,72,5.989929676055908],[114,155,73,5.989076137542725],[114,155,74,5.987583160400391],[114,155,75,5.996276378631592],[114,155,76,6.015043258666992],[114,155,77,6.035196781158447],[114,155,78,6.042359828948975],[114,155,79,6.033916473388672],[114,156,64,6.004017353057861],[114,156,65,6.005990982055664],[114,156,66,6.005512237548828],[114,156,67,6.0021138191223145],[114,156,68,5.998892784118652],[114,156,69,5.994562149047852],[114,156,70,5.99104118347168],[114,156,71,5.989717483520508],[114,156,72,5.989929676055908],[114,156,73,5.989076137542725],[114,156,74,5.987583160400391],[114,156,75,5.996276378631592],[114,156,76,6.015043258666992],[114,156,77,6.035196781158447],[114,156,78,6.042359828948975],[114,156,79,6.033916473388672],[114,157,64,6.004017353057861],[114,157,65,6.005990982055664],[114,157,66,6.005512237548828],[114,157,67,6.0021138191223145],[114,157,68,5.998892784118652],[114,157,69,5.994562149047852],[114,157,70,5.99104118347168],[114,157,71,5.989717483520508],[114,157,72,5.989929676055908],[114,157,73,5.989076137542725],[114,157,74,5.987583160400391],[114,157,75,5.996276378631592],[114,157,76,6.015043258666992],[114,157,77,6.035196781158447],[114,157,78,6.042359828948975],[114,157,79,6.033916473388672],[114,158,64,6.004017353057861],[114,158,65,6.005990982055664],[114,158,66,6.005512237548828],[114,158,67,6.0021138191223145],[114,158,68,5.998892784118652],[114,158,69,5.994562149047852],[114,158,70,5.99104118347168],[114,158,71,5.989717483520508],[114,158,72,5.989929676055908],[114,158,73,5.989076137542725],[114,158,74,5.987583160400391],[114,158,75,5.996276378631592],[114,158,76,6.015043258666992],[114,158,77,6.035196781158447],[114,158,78,6.042359828948975],[114,158,79,6.033916473388672],[114,159,64,6.004017353057861],[114,159,65,6.005990982055664],[114,159,66,6.005512237548828],[114,159,67,6.0021138191223145],[114,159,68,5.998892784118652],[114,159,69,5.994562149047852],[114,159,70,5.99104118347168],[114,159,71,5.989717483520508],[114,159,72,5.989929676055908],[114,159,73,5.989076137542725],[114,159,74,5.987583160400391],[114,159,75,5.996276378631592],[114,159,76,6.015043258666992],[114,159,77,6.035196781158447],[114,159,78,6.042359828948975],[114,159,79,6.033916473388672],[114,160,64,6.004017353057861],[114,160,65,6.005990982055664],[114,160,66,6.005512237548828],[114,160,67,6.0021138191223145],[114,160,68,5.998892784118652],[114,160,69,5.994562149047852],[114,160,70,5.99104118347168],[114,160,71,5.989717483520508],[114,160,72,5.989929676055908],[114,160,73,5.989076137542725],[114,160,74,5.987583160400391],[114,160,75,5.996276378631592],[114,160,76,6.015043258666992],[114,160,77,6.035196781158447],[114,160,78,6.042359828948975],[114,160,79,6.033916473388672],[114,161,64,6.004017353057861],[114,161,65,6.005990982055664],[114,161,66,6.005512237548828],[114,161,67,6.0021138191223145],[114,161,68,5.998892784118652],[114,161,69,5.994562149047852],[114,161,70,5.99104118347168],[114,161,71,5.989717483520508],[114,161,72,5.989929676055908],[114,161,73,5.989076137542725],[114,161,74,5.987583160400391],[114,161,75,5.996276378631592],[114,161,76,6.015043258666992],[114,161,77,6.035196781158447],[114,161,78,6.042359828948975],[114,161,79,6.033916473388672],[114,162,64,6.004017353057861],[114,162,65,6.005990982055664],[114,162,66,6.005512237548828],[114,162,67,6.0021138191223145],[114,162,68,5.998892784118652],[114,162,69,5.994562149047852],[114,162,70,5.99104118347168],[114,162,71,5.989717483520508],[114,162,72,5.989929676055908],[114,162,73,5.989076137542725],[114,162,74,5.987583160400391],[114,162,75,5.996276378631592],[114,162,76,6.015043258666992],[114,162,77,6.035196781158447],[114,162,78,6.042359828948975],[114,162,79,6.033916473388672],[114,163,64,6.004017353057861],[114,163,65,6.005990982055664],[114,163,66,6.005512237548828],[114,163,67,6.0021138191223145],[114,163,68,5.998892784118652],[114,163,69,5.994562149047852],[114,163,70,5.99104118347168],[114,163,71,5.989717483520508],[114,163,72,5.989929676055908],[114,163,73,5.989076137542725],[114,163,74,5.987583160400391],[114,163,75,5.996276378631592],[114,163,76,6.015043258666992],[114,163,77,6.035196781158447],[114,163,78,6.042359828948975],[114,163,79,6.033916473388672],[114,164,64,6.004017353057861],[114,164,65,6.005990982055664],[114,164,66,6.005512237548828],[114,164,67,6.0021138191223145],[114,164,68,5.998892784118652],[114,164,69,5.994562149047852],[114,164,70,5.99104118347168],[114,164,71,5.989717483520508],[114,164,72,5.989929676055908],[114,164,73,5.989076137542725],[114,164,74,5.987583160400391],[114,164,75,5.996276378631592],[114,164,76,6.015043258666992],[114,164,77,6.035196781158447],[114,164,78,6.042359828948975],[114,164,79,6.033916473388672],[114,165,64,6.004017353057861],[114,165,65,6.005990982055664],[114,165,66,6.005512237548828],[114,165,67,6.0021138191223145],[114,165,68,5.998892784118652],[114,165,69,5.994562149047852],[114,165,70,5.99104118347168],[114,165,71,5.989717483520508],[114,165,72,5.989929676055908],[114,165,73,5.989076137542725],[114,165,74,5.987583160400391],[114,165,75,5.996276378631592],[114,165,76,6.015043258666992],[114,165,77,6.035196781158447],[114,165,78,6.042359828948975],[114,165,79,6.033916473388672],[114,166,64,6.004017353057861],[114,166,65,6.005990982055664],[114,166,66,6.005512237548828],[114,166,67,6.0021138191223145],[114,166,68,5.998892784118652],[114,166,69,5.994562149047852],[114,166,70,5.99104118347168],[114,166,71,5.989717483520508],[114,166,72,5.989929676055908],[114,166,73,5.989076137542725],[114,166,74,5.987583160400391],[114,166,75,5.996276378631592],[114,166,76,6.015043258666992],[114,166,77,6.035196781158447],[114,166,78,6.042359828948975],[114,166,79,6.033916473388672],[114,167,64,6.004017353057861],[114,167,65,6.005990982055664],[114,167,66,6.005512237548828],[114,167,67,6.0021138191223145],[114,167,68,5.998892784118652],[114,167,69,5.994562149047852],[114,167,70,5.99104118347168],[114,167,71,5.989717483520508],[114,167,72,5.989929676055908],[114,167,73,5.989076137542725],[114,167,74,5.987583160400391],[114,167,75,5.996276378631592],[114,167,76,6.015043258666992],[114,167,77,6.035196781158447],[114,167,78,6.042359828948975],[114,167,79,6.033916473388672],[114,168,64,6.004017353057861],[114,168,65,6.005990982055664],[114,168,66,6.005512237548828],[114,168,67,6.0021138191223145],[114,168,68,5.998892784118652],[114,168,69,5.994562149047852],[114,168,70,5.99104118347168],[114,168,71,5.989717483520508],[114,168,72,5.989929676055908],[114,168,73,5.989076137542725],[114,168,74,5.987583160400391],[114,168,75,5.996276378631592],[114,168,76,6.015043258666992],[114,168,77,6.035196781158447],[114,168,78,6.042359828948975],[114,168,79,6.033916473388672],[114,169,64,6.004017353057861],[114,169,65,6.005990982055664],[114,169,66,6.005512237548828],[114,169,67,6.0021138191223145],[114,169,68,5.998892784118652],[114,169,69,5.994562149047852],[114,169,70,5.99104118347168],[114,169,71,5.989717483520508],[114,169,72,5.989929676055908],[114,169,73,5.989076137542725],[114,169,74,5.987583160400391],[114,169,75,5.996276378631592],[114,169,76,6.015043258666992],[114,169,77,6.035196781158447],[114,169,78,6.042359828948975],[114,169,79,6.033916473388672],[114,170,64,6.004017353057861],[114,170,65,6.005990982055664],[114,170,66,6.005512237548828],[114,170,67,6.0021138191223145],[114,170,68,5.998892784118652],[114,170,69,5.994562149047852],[114,170,70,5.99104118347168],[114,170,71,5.989717483520508],[114,170,72,5.989929676055908],[114,170,73,5.989076137542725],[114,170,74,5.987583160400391],[114,170,75,5.996276378631592],[114,170,76,6.015043258666992],[114,170,77,6.035196781158447],[114,170,78,6.042359828948975],[114,170,79,6.033916473388672],[114,171,64,6.004017353057861],[114,171,65,6.005990982055664],[114,171,66,6.005512237548828],[114,171,67,6.0021138191223145],[114,171,68,5.998892784118652],[114,171,69,5.994562149047852],[114,171,70,5.99104118347168],[114,171,71,5.989717483520508],[114,171,72,5.989929676055908],[114,171,73,5.989076137542725],[114,171,74,5.987583160400391],[114,171,75,5.996276378631592],[114,171,76,6.015043258666992],[114,171,77,6.035196781158447],[114,171,78,6.042359828948975],[114,171,79,6.033916473388672],[114,172,64,6.004017353057861],[114,172,65,6.005990982055664],[114,172,66,6.005512237548828],[114,172,67,6.0021138191223145],[114,172,68,5.998892784118652],[114,172,69,5.994562149047852],[114,172,70,5.99104118347168],[114,172,71,5.989717483520508],[114,172,72,5.989929676055908],[114,172,73,5.989076137542725],[114,172,74,5.987583160400391],[114,172,75,5.996276378631592],[114,172,76,6.015043258666992],[114,172,77,6.035196781158447],[114,172,78,6.042359828948975],[114,172,79,6.033916473388672],[114,173,64,6.004017353057861],[114,173,65,6.005990982055664],[114,173,66,6.005512237548828],[114,173,67,6.0021138191223145],[114,173,68,5.998892784118652],[114,173,69,5.994562149047852],[114,173,70,5.99104118347168],[114,173,71,5.989717483520508],[114,173,72,5.989929676055908],[114,173,73,5.989076137542725],[114,173,74,5.987583160400391],[114,173,75,5.996276378631592],[114,173,76,6.015043258666992],[114,173,77,6.035196781158447],[114,173,78,6.042359828948975],[114,173,79,6.033916473388672],[114,174,64,6.004017353057861],[114,174,65,6.005990982055664],[114,174,66,6.005512237548828],[114,174,67,6.0021138191223145],[114,174,68,5.998892784118652],[114,174,69,5.994562149047852],[114,174,70,5.99104118347168],[114,174,71,5.989717483520508],[114,174,72,5.989929676055908],[114,174,73,5.989076137542725],[114,174,74,5.987583160400391],[114,174,75,5.996276378631592],[114,174,76,6.015043258666992],[114,174,77,6.035196781158447],[114,174,78,6.042359828948975],[114,174,79,6.033916473388672],[114,175,64,6.004017353057861],[114,175,65,6.005990982055664],[114,175,66,6.005512237548828],[114,175,67,6.0021138191223145],[114,175,68,5.998892784118652],[114,175,69,5.994562149047852],[114,175,70,5.99104118347168],[114,175,71,5.989717483520508],[114,175,72,5.989929676055908],[114,175,73,5.989076137542725],[114,175,74,5.987583160400391],[114,175,75,5.996276378631592],[114,175,76,6.015043258666992],[114,175,77,6.035196781158447],[114,175,78,6.042359828948975],[114,175,79,6.033916473388672],[114,176,64,6.004017353057861],[114,176,65,6.005990982055664],[114,176,66,6.005512237548828],[114,176,67,6.0021138191223145],[114,176,68,5.998892784118652],[114,176,69,5.994562149047852],[114,176,70,5.99104118347168],[114,176,71,5.989717483520508],[114,176,72,5.989929676055908],[114,176,73,5.989076137542725],[114,176,74,5.987583160400391],[114,176,75,5.996276378631592],[114,176,76,6.015043258666992],[114,176,77,6.035196781158447],[114,176,78,6.042359828948975],[114,176,79,6.033916473388672],[114,177,64,6.004017353057861],[114,177,65,6.005990982055664],[114,177,66,6.005512237548828],[114,177,67,6.0021138191223145],[114,177,68,5.998892784118652],[114,177,69,5.994562149047852],[114,177,70,5.99104118347168],[114,177,71,5.989717483520508],[114,177,72,5.989929676055908],[114,177,73,5.989076137542725],[114,177,74,5.987583160400391],[114,177,75,5.996276378631592],[114,177,76,6.015043258666992],[114,177,77,6.035196781158447],[114,177,78,6.042359828948975],[114,177,79,6.033916473388672],[114,178,64,6.004017353057861],[114,178,65,6.005990982055664],[114,178,66,6.005512237548828],[114,178,67,6.0021138191223145],[114,178,68,5.998892784118652],[114,178,69,5.994562149047852],[114,178,70,5.99104118347168],[114,178,71,5.989717483520508],[114,178,72,5.989929676055908],[114,178,73,5.989076137542725],[114,178,74,5.987583160400391],[114,178,75,5.996276378631592],[114,178,76,6.015043258666992],[114,178,77,6.035196781158447],[114,178,78,6.042359828948975],[114,178,79,6.033916473388672],[114,179,64,6.004017353057861],[114,179,65,6.005990982055664],[114,179,66,6.005512237548828],[114,179,67,6.0021138191223145],[114,179,68,5.998892784118652],[114,179,69,5.994562149047852],[114,179,70,5.99104118347168],[114,179,71,5.989717483520508],[114,179,72,5.989929676055908],[114,179,73,5.989076137542725],[114,179,74,5.987583160400391],[114,179,75,5.996276378631592],[114,179,76,6.015043258666992],[114,179,77,6.035196781158447],[114,179,78,6.042359828948975],[114,179,79,6.033916473388672],[114,180,64,6.004017353057861],[114,180,65,6.005990982055664],[114,180,66,6.005512237548828],[114,180,67,6.0021138191223145],[114,180,68,5.998892784118652],[114,180,69,5.994562149047852],[114,180,70,5.99104118347168],[114,180,71,5.989717483520508],[114,180,72,5.989929676055908],[114,180,73,5.989076137542725],[114,180,74,5.987583160400391],[114,180,75,5.996276378631592],[114,180,76,6.015043258666992],[114,180,77,6.035196781158447],[114,180,78,6.042359828948975],[114,180,79,6.033916473388672],[114,181,64,6.004017353057861],[114,181,65,6.005990982055664],[114,181,66,6.005512237548828],[114,181,67,6.0021138191223145],[114,181,68,5.998892784118652],[114,181,69,5.994562149047852],[114,181,70,5.99104118347168],[114,181,71,5.989717483520508],[114,181,72,5.989929676055908],[114,181,73,5.989076137542725],[114,181,74,5.987583160400391],[114,181,75,5.996276378631592],[114,181,76,6.015043258666992],[114,181,77,6.035196781158447],[114,181,78,6.042359828948975],[114,181,79,6.033916473388672],[114,182,64,6.004017353057861],[114,182,65,6.005990982055664],[114,182,66,6.005512237548828],[114,182,67,6.0021138191223145],[114,182,68,5.998892784118652],[114,182,69,5.994562149047852],[114,182,70,5.99104118347168],[114,182,71,5.989717483520508],[114,182,72,5.989929676055908],[114,182,73,5.989076137542725],[114,182,74,5.987583160400391],[114,182,75,5.996276378631592],[114,182,76,6.015043258666992],[114,182,77,6.035196781158447],[114,182,78,6.042359828948975],[114,182,79,6.033916473388672],[114,183,64,6.004017353057861],[114,183,65,6.005990982055664],[114,183,66,6.005512237548828],[114,183,67,6.0021138191223145],[114,183,68,5.998892784118652],[114,183,69,5.994562149047852],[114,183,70,5.99104118347168],[114,183,71,5.989717483520508],[114,183,72,5.989929676055908],[114,183,73,5.989076137542725],[114,183,74,5.987583160400391],[114,183,75,5.996276378631592],[114,183,76,6.015043258666992],[114,183,77,6.035196781158447],[114,183,78,6.042359828948975],[114,183,79,6.033916473388672],[114,184,64,6.004017353057861],[114,184,65,6.005990982055664],[114,184,66,6.005512237548828],[114,184,67,6.0021138191223145],[114,184,68,5.998892784118652],[114,184,69,5.994562149047852],[114,184,70,5.99104118347168],[114,184,71,5.989717483520508],[114,184,72,5.989929676055908],[114,184,73,5.989076137542725],[114,184,74,5.987583160400391],[114,184,75,5.996276378631592],[114,184,76,6.015043258666992],[114,184,77,6.035196781158447],[114,184,78,6.042359828948975],[114,184,79,6.033916473388672],[114,185,64,6.004017353057861],[114,185,65,6.005990982055664],[114,185,66,6.005512237548828],[114,185,67,6.0021138191223145],[114,185,68,5.998892784118652],[114,185,69,5.994562149047852],[114,185,70,5.99104118347168],[114,185,71,5.989717483520508],[114,185,72,5.989929676055908],[114,185,73,5.989076137542725],[114,185,74,5.987583160400391],[114,185,75,5.996276378631592],[114,185,76,6.015043258666992],[114,185,77,6.035196781158447],[114,185,78,6.042359828948975],[114,185,79,6.033916473388672],[114,186,64,6.004017353057861],[114,186,65,6.005990982055664],[114,186,66,6.005512237548828],[114,186,67,6.0021138191223145],[114,186,68,5.998892784118652],[114,186,69,5.994562149047852],[114,186,70,5.99104118347168],[114,186,71,5.989717483520508],[114,186,72,5.989929676055908],[114,186,73,5.989076137542725],[114,186,74,5.987583160400391],[114,186,75,5.996276378631592],[114,186,76,6.015043258666992],[114,186,77,6.035196781158447],[114,186,78,6.042359828948975],[114,186,79,6.033916473388672],[114,187,64,6.004017353057861],[114,187,65,6.005990982055664],[114,187,66,6.005512237548828],[114,187,67,6.0021138191223145],[114,187,68,5.998892784118652],[114,187,69,5.994562149047852],[114,187,70,5.99104118347168],[114,187,71,5.989717483520508],[114,187,72,5.989929676055908],[114,187,73,5.989076137542725],[114,187,74,5.987583160400391],[114,187,75,5.996276378631592],[114,187,76,6.015043258666992],[114,187,77,6.035196781158447],[114,187,78,6.042359828948975],[114,187,79,6.033916473388672],[114,188,64,6.004017353057861],[114,188,65,6.005990982055664],[114,188,66,6.005512237548828],[114,188,67,6.0021138191223145],[114,188,68,5.998892784118652],[114,188,69,5.994562149047852],[114,188,70,5.99104118347168],[114,188,71,5.989717483520508],[114,188,72,5.989929676055908],[114,188,73,5.989076137542725],[114,188,74,5.987583160400391],[114,188,75,5.996276378631592],[114,188,76,6.015043258666992],[114,188,77,6.035196781158447],[114,188,78,6.042359828948975],[114,188,79,6.033916473388672],[114,189,64,6.004017353057861],[114,189,65,6.005990982055664],[114,189,66,6.005512237548828],[114,189,67,6.0021138191223145],[114,189,68,5.998892784118652],[114,189,69,5.994562149047852],[114,189,70,5.99104118347168],[114,189,71,5.989717483520508],[114,189,72,5.989929676055908],[114,189,73,5.989076137542725],[114,189,74,5.987583160400391],[114,189,75,5.996276378631592],[114,189,76,6.015043258666992],[114,189,77,6.035196781158447],[114,189,78,6.042359828948975],[114,189,79,6.033916473388672],[114,190,64,6.004017353057861],[114,190,65,6.005990982055664],[114,190,66,6.005512237548828],[114,190,67,6.0021138191223145],[114,190,68,5.998892784118652],[114,190,69,5.994562149047852],[114,190,70,5.99104118347168],[114,190,71,5.989717483520508],[114,190,72,5.989929676055908],[114,190,73,5.989076137542725],[114,190,74,5.987583160400391],[114,190,75,5.996276378631592],[114,190,76,6.015043258666992],[114,190,77,6.035196781158447],[114,190,78,6.042359828948975],[114,190,79,6.033916473388672],[114,191,64,6.004017353057861],[114,191,65,6.005990982055664],[114,191,66,6.005512237548828],[114,191,67,6.0021138191223145],[114,191,68,5.998892784118652],[114,191,69,5.994562149047852],[114,191,70,5.99104118347168],[114,191,71,5.989717483520508],[114,191,72,5.989929676055908],[114,191,73,5.989076137542725],[114,191,74,5.987583160400391],[114,191,75,5.996276378631592],[114,191,76,6.015043258666992],[114,191,77,6.035196781158447],[114,191,78,6.042359828948975],[114,191,79,6.033916473388672],[114,192,64,6.004017353057861],[114,192,65,6.005990982055664],[114,192,66,6.005512237548828],[114,192,67,6.0021138191223145],[114,192,68,5.998892784118652],[114,192,69,5.994562149047852],[114,192,70,5.99104118347168],[114,192,71,5.989717483520508],[114,192,72,5.989929676055908],[114,192,73,5.989076137542725],[114,192,74,5.987583160400391],[114,192,75,5.996276378631592],[114,192,76,6.015043258666992],[114,192,77,6.035196781158447],[114,192,78,6.042359828948975],[114,192,79,6.033916473388672],[114,193,64,6.004017353057861],[114,193,65,6.005990982055664],[114,193,66,6.005512237548828],[114,193,67,6.0021138191223145],[114,193,68,5.998892784118652],[114,193,69,5.994562149047852],[114,193,70,5.99104118347168],[114,193,71,5.989717483520508],[114,193,72,5.989929676055908],[114,193,73,5.989076137542725],[114,193,74,5.987583160400391],[114,193,75,5.996276378631592],[114,193,76,6.015043258666992],[114,193,77,6.035196781158447],[114,193,78,6.042359828948975],[114,193,79,6.033916473388672],[114,194,64,6.004017353057861],[114,194,65,6.005990982055664],[114,194,66,6.005512237548828],[114,194,67,6.0021138191223145],[114,194,68,5.998892784118652],[114,194,69,5.994562149047852],[114,194,70,5.99104118347168],[114,194,71,5.989717483520508],[114,194,72,5.989929676055908],[114,194,73,5.989076137542725],[114,194,74,5.987583160400391],[114,194,75,5.996276378631592],[114,194,76,6.015043258666992],[114,194,77,6.035196781158447],[114,194,78,6.042359828948975],[114,194,79,6.033916473388672],[114,195,64,6.004017353057861],[114,195,65,6.005990982055664],[114,195,66,6.005512237548828],[114,195,67,6.0021138191223145],[114,195,68,5.998892784118652],[114,195,69,5.994562149047852],[114,195,70,5.99104118347168],[114,195,71,5.989717483520508],[114,195,72,5.989929676055908],[114,195,73,5.989076137542725],[114,195,74,5.987583160400391],[114,195,75,5.996276378631592],[114,195,76,6.015043258666992],[114,195,77,6.035196781158447],[114,195,78,6.042359828948975],[114,195,79,6.033916473388672],[114,196,64,6.004017353057861],[114,196,65,6.005990982055664],[114,196,66,6.005512237548828],[114,196,67,6.0021138191223145],[114,196,68,5.998892784118652],[114,196,69,5.994562149047852],[114,196,70,5.99104118347168],[114,196,71,5.989717483520508],[114,196,72,5.989929676055908],[114,196,73,5.989076137542725],[114,196,74,5.987583160400391],[114,196,75,5.996276378631592],[114,196,76,6.015043258666992],[114,196,77,6.035196781158447],[114,196,78,6.042359828948975],[114,196,79,6.033916473388672],[114,197,64,6.004017353057861],[114,197,65,6.005990982055664],[114,197,66,6.005512237548828],[114,197,67,6.0021138191223145],[114,197,68,5.998892784118652],[114,197,69,5.994562149047852],[114,197,70,5.99104118347168],[114,197,71,5.989717483520508],[114,197,72,5.989929676055908],[114,197,73,5.989076137542725],[114,197,74,5.987583160400391],[114,197,75,5.996276378631592],[114,197,76,6.015043258666992],[114,197,77,6.035196781158447],[114,197,78,6.042359828948975],[114,197,79,6.033916473388672],[114,198,64,6.004017353057861],[114,198,65,6.005990982055664],[114,198,66,6.005512237548828],[114,198,67,6.0021138191223145],[114,198,68,5.998892784118652],[114,198,69,5.994562149047852],[114,198,70,5.99104118347168],[114,198,71,5.989717483520508],[114,198,72,5.989929676055908],[114,198,73,5.989076137542725],[114,198,74,5.987583160400391],[114,198,75,5.996276378631592],[114,198,76,6.015043258666992],[114,198,77,6.035196781158447],[114,198,78,6.042359828948975],[114,198,79,6.033916473388672],[114,199,64,6.004017353057861],[114,199,65,6.005990982055664],[114,199,66,6.005512237548828],[114,199,67,6.0021138191223145],[114,199,68,5.998892784118652],[114,199,69,5.994562149047852],[114,199,70,5.99104118347168],[114,199,71,5.989717483520508],[114,199,72,5.989929676055908],[114,199,73,5.989076137542725],[114,199,74,5.987583160400391],[114,199,75,5.996276378631592],[114,199,76,6.015043258666992],[114,199,77,6.035196781158447],[114,199,78,6.042359828948975],[114,199,79,6.033916473388672],[114,200,64,6.004017353057861],[114,200,65,6.005990982055664],[114,200,66,6.005512237548828],[114,200,67,6.0021138191223145],[114,200,68,5.998892784118652],[114,200,69,5.994562149047852],[114,200,70,5.99104118347168],[114,200,71,5.989717483520508],[114,200,72,5.989929676055908],[114,200,73,5.989076137542725],[114,200,74,5.987583160400391],[114,200,75,5.996276378631592],[114,200,76,6.015043258666992],[114,200,77,6.035196781158447],[114,200,78,6.042359828948975],[114,200,79,6.033916473388672],[114,201,64,6.004017353057861],[114,201,65,6.005990982055664],[114,201,66,6.005512237548828],[114,201,67,6.0021138191223145],[114,201,68,5.998892784118652],[114,201,69,5.994562149047852],[114,201,70,5.99104118347168],[114,201,71,5.989717483520508],[114,201,72,5.989929676055908],[114,201,73,5.989076137542725],[114,201,74,5.987583160400391],[114,201,75,5.996276378631592],[114,201,76,6.015043258666992],[114,201,77,6.035196781158447],[114,201,78,6.042359828948975],[114,201,79,6.033916473388672],[114,202,64,6.004017353057861],[114,202,65,6.005990982055664],[114,202,66,6.005512237548828],[114,202,67,6.0021138191223145],[114,202,68,5.998892784118652],[114,202,69,5.994562149047852],[114,202,70,5.99104118347168],[114,202,71,5.989717483520508],[114,202,72,5.989929676055908],[114,202,73,5.989076137542725],[114,202,74,5.987583160400391],[114,202,75,5.996276378631592],[114,202,76,6.015043258666992],[114,202,77,6.035196781158447],[114,202,78,6.042359828948975],[114,202,79,6.033916473388672],[114,203,64,6.004017353057861],[114,203,65,6.005990982055664],[114,203,66,6.005512237548828],[114,203,67,6.0021138191223145],[114,203,68,5.998892784118652],[114,203,69,5.994562149047852],[114,203,70,5.99104118347168],[114,203,71,5.989717483520508],[114,203,72,5.989929676055908],[114,203,73,5.989076137542725],[114,203,74,5.987583160400391],[114,203,75,5.996276378631592],[114,203,76,6.015043258666992],[114,203,77,6.035196781158447],[114,203,78,6.042359828948975],[114,203,79,6.033916473388672],[114,204,64,6.004017353057861],[114,204,65,6.005990982055664],[114,204,66,6.005512237548828],[114,204,67,6.0021138191223145],[114,204,68,5.998892784118652],[114,204,69,5.994562149047852],[114,204,70,5.99104118347168],[114,204,71,5.989717483520508],[114,204,72,5.989929676055908],[114,204,73,5.989076137542725],[114,204,74,5.987583160400391],[114,204,75,5.996276378631592],[114,204,76,6.015043258666992],[114,204,77,6.035196781158447],[114,204,78,6.042359828948975],[114,204,79,6.033916473388672],[114,205,64,6.004017353057861],[114,205,65,6.005990982055664],[114,205,66,6.005512237548828],[114,205,67,6.0021138191223145],[114,205,68,5.998892784118652],[114,205,69,5.994562149047852],[114,205,70,5.99104118347168],[114,205,71,5.989717483520508],[114,205,72,5.989929676055908],[114,205,73,5.989076137542725],[114,205,74,5.987583160400391],[114,205,75,5.996276378631592],[114,205,76,6.015043258666992],[114,205,77,6.035196781158447],[114,205,78,6.042359828948975],[114,205,79,6.033916473388672],[114,206,64,6.004017353057861],[114,206,65,6.005990982055664],[114,206,66,6.005512237548828],[114,206,67,6.0021138191223145],[114,206,68,5.998892784118652],[114,206,69,5.994562149047852],[114,206,70,5.99104118347168],[114,206,71,5.989717483520508],[114,206,72,5.989929676055908],[114,206,73,5.989076137542725],[114,206,74,5.987583160400391],[114,206,75,5.996276378631592],[114,206,76,6.015043258666992],[114,206,77,6.035196781158447],[114,206,78,6.042359828948975],[114,206,79,6.033916473388672],[114,207,64,6.004017353057861],[114,207,65,6.005990982055664],[114,207,66,6.005512237548828],[114,207,67,6.0021138191223145],[114,207,68,5.998892784118652],[114,207,69,5.994562149047852],[114,207,70,5.99104118347168],[114,207,71,5.989717483520508],[114,207,72,5.989929676055908],[114,207,73,5.989076137542725],[114,207,74,5.987583160400391],[114,207,75,5.996276378631592],[114,207,76,6.015043258666992],[114,207,77,6.035196781158447],[114,207,78,6.042359828948975],[114,207,79,6.033916473388672],[114,208,64,6.004017353057861],[114,208,65,6.005990982055664],[114,208,66,6.005512237548828],[114,208,67,6.0021138191223145],[114,208,68,5.998892784118652],[114,208,69,5.994562149047852],[114,208,70,5.99104118347168],[114,208,71,5.989717483520508],[114,208,72,5.989929676055908],[114,208,73,5.989076137542725],[114,208,74,5.987583160400391],[114,208,75,5.996276378631592],[114,208,76,6.015043258666992],[114,208,77,6.035196781158447],[114,208,78,6.042359828948975],[114,208,79,6.033916473388672],[114,209,64,6.004017353057861],[114,209,65,6.005990982055664],[114,209,66,6.005512237548828],[114,209,67,6.0021138191223145],[114,209,68,5.998892784118652],[114,209,69,5.994562149047852],[114,209,70,5.99104118347168],[114,209,71,5.989717483520508],[114,209,72,5.989929676055908],[114,209,73,5.989076137542725],[114,209,74,5.987583160400391],[114,209,75,5.996276378631592],[114,209,76,6.015043258666992],[114,209,77,6.035196781158447],[114,209,78,6.042359828948975],[114,209,79,6.033916473388672],[114,210,64,6.004017353057861],[114,210,65,6.005990982055664],[114,210,66,6.005512237548828],[114,210,67,6.0021138191223145],[114,210,68,5.998892784118652],[114,210,69,5.994562149047852],[114,210,70,5.99104118347168],[114,210,71,5.989717483520508],[114,210,72,5.989929676055908],[114,210,73,5.989076137542725],[114,210,74,5.987583160400391],[114,210,75,5.996276378631592],[114,210,76,6.015043258666992],[114,210,77,6.035196781158447],[114,210,78,6.042359828948975],[114,210,79,6.033916473388672],[114,211,64,6.004017353057861],[114,211,65,6.005990982055664],[114,211,66,6.005512237548828],[114,211,67,6.0021138191223145],[114,211,68,5.998892784118652],[114,211,69,5.994562149047852],[114,211,70,5.99104118347168],[114,211,71,5.989717483520508],[114,211,72,5.989929676055908],[114,211,73,5.989076137542725],[114,211,74,5.987583160400391],[114,211,75,5.996276378631592],[114,211,76,6.015043258666992],[114,211,77,6.035196781158447],[114,211,78,6.042359828948975],[114,211,79,6.033916473388672],[114,212,64,6.004017353057861],[114,212,65,6.005990982055664],[114,212,66,6.005512237548828],[114,212,67,6.0021138191223145],[114,212,68,5.998892784118652],[114,212,69,5.994562149047852],[114,212,70,5.99104118347168],[114,212,71,5.989717483520508],[114,212,72,5.989929676055908],[114,212,73,5.989076137542725],[114,212,74,5.987583160400391],[114,212,75,5.996276378631592],[114,212,76,6.015043258666992],[114,212,77,6.035196781158447],[114,212,78,6.042359828948975],[114,212,79,6.033916473388672],[114,213,64,6.004017353057861],[114,213,65,6.005990982055664],[114,213,66,6.005512237548828],[114,213,67,6.0021138191223145],[114,213,68,5.998892784118652],[114,213,69,5.994562149047852],[114,213,70,5.99104118347168],[114,213,71,5.989717483520508],[114,213,72,5.989929676055908],[114,213,73,5.989076137542725],[114,213,74,5.987583160400391],[114,213,75,5.996276378631592],[114,213,76,6.015043258666992],[114,213,77,6.035196781158447],[114,213,78,6.042359828948975],[114,213,79,6.033916473388672],[114,214,64,6.004017353057861],[114,214,65,6.005990982055664],[114,214,66,6.005512237548828],[114,214,67,6.0021138191223145],[114,214,68,5.998892784118652],[114,214,69,5.994562149047852],[114,214,70,5.99104118347168],[114,214,71,5.989717483520508],[114,214,72,5.989929676055908],[114,214,73,5.989076137542725],[114,214,74,5.987583160400391],[114,214,75,5.996276378631592],[114,214,76,6.015043258666992],[114,214,77,6.035196781158447],[114,214,78,6.042359828948975],[114,214,79,6.033916473388672],[114,215,64,6.004017353057861],[114,215,65,6.005990982055664],[114,215,66,6.005512237548828],[114,215,67,6.0021138191223145],[114,215,68,5.998892784118652],[114,215,69,5.994562149047852],[114,215,70,5.99104118347168],[114,215,71,5.989717483520508],[114,215,72,5.989929676055908],[114,215,73,5.989076137542725],[114,215,74,5.987583160400391],[114,215,75,5.996276378631592],[114,215,76,6.015043258666992],[114,215,77,6.035196781158447],[114,215,78,6.042359828948975],[114,215,79,6.033916473388672],[114,216,64,6.004017353057861],[114,216,65,6.005990982055664],[114,216,66,6.005512237548828],[114,216,67,6.0021138191223145],[114,216,68,5.998892784118652],[114,216,69,5.994562149047852],[114,216,70,5.99104118347168],[114,216,71,5.989717483520508],[114,216,72,5.989929676055908],[114,216,73,5.989076137542725],[114,216,74,5.987583160400391],[114,216,75,5.996276378631592],[114,216,76,6.015043258666992],[114,216,77,6.035196781158447],[114,216,78,6.042359828948975],[114,216,79,6.033916473388672],[114,217,64,6.004017353057861],[114,217,65,6.005990982055664],[114,217,66,6.005512237548828],[114,217,67,6.0021138191223145],[114,217,68,5.998892784118652],[114,217,69,5.994562149047852],[114,217,70,5.99104118347168],[114,217,71,5.989717483520508],[114,217,72,5.989929676055908],[114,217,73,5.989076137542725],[114,217,74,5.987583160400391],[114,217,75,5.996276378631592],[114,217,76,6.015043258666992],[114,217,77,6.035196781158447],[114,217,78,6.042359828948975],[114,217,79,6.033916473388672],[114,218,64,6.004017353057861],[114,218,65,6.005990982055664],[114,218,66,6.005512237548828],[114,218,67,6.0021138191223145],[114,218,68,5.998892784118652],[114,218,69,5.994562149047852],[114,218,70,5.99104118347168],[114,218,71,5.989717483520508],[114,218,72,5.989929676055908],[114,218,73,5.989076137542725],[114,218,74,5.987583160400391],[114,218,75,5.996276378631592],[114,218,76,6.015043258666992],[114,218,77,6.035196781158447],[114,218,78,6.042359828948975],[114,218,79,6.033916473388672],[114,219,64,6.004017353057861],[114,219,65,6.005990982055664],[114,219,66,6.005512237548828],[114,219,67,6.0021138191223145],[114,219,68,5.998892784118652],[114,219,69,5.994562149047852],[114,219,70,5.99104118347168],[114,219,71,5.989717483520508],[114,219,72,5.989929676055908],[114,219,73,5.989076137542725],[114,219,74,5.987583160400391],[114,219,75,5.996276378631592],[114,219,76,6.015043258666992],[114,219,77,6.035196781158447],[114,219,78,6.042359828948975],[114,219,79,6.033916473388672],[114,220,64,6.004017353057861],[114,220,65,6.005990982055664],[114,220,66,6.005512237548828],[114,220,67,6.0021138191223145],[114,220,68,5.998892784118652],[114,220,69,5.994562149047852],[114,220,70,5.99104118347168],[114,220,71,5.989717483520508],[114,220,72,5.989929676055908],[114,220,73,5.989076137542725],[114,220,74,5.987583160400391],[114,220,75,5.996276378631592],[114,220,76,6.015043258666992],[114,220,77,6.035196781158447],[114,220,78,6.042359828948975],[114,220,79,6.033916473388672],[114,221,64,6.004017353057861],[114,221,65,6.005990982055664],[114,221,66,6.005512237548828],[114,221,67,6.0021138191223145],[114,221,68,5.998892784118652],[114,221,69,5.994562149047852],[114,221,70,5.99104118347168],[114,221,71,5.989717483520508],[114,221,72,5.989929676055908],[114,221,73,5.989076137542725],[114,221,74,5.987583160400391],[114,221,75,5.996276378631592],[114,221,76,6.015043258666992],[114,221,77,6.035196781158447],[114,221,78,6.042359828948975],[114,221,79,6.033916473388672],[114,222,64,6.004017353057861],[114,222,65,6.005990982055664],[114,222,66,6.005512237548828],[114,222,67,6.0021138191223145],[114,222,68,5.998892784118652],[114,222,69,5.994562149047852],[114,222,70,5.99104118347168],[114,222,71,5.989717483520508],[114,222,72,5.989929676055908],[114,222,73,5.989076137542725],[114,222,74,5.987583160400391],[114,222,75,5.996276378631592],[114,222,76,6.015043258666992],[114,222,77,6.035196781158447],[114,222,78,6.042359828948975],[114,222,79,6.033916473388672],[114,223,64,6.004017353057861],[114,223,65,6.005990982055664],[114,223,66,6.005512237548828],[114,223,67,6.0021138191223145],[114,223,68,5.998892784118652],[114,223,69,5.994562149047852],[114,223,70,5.99104118347168],[114,223,71,5.989717483520508],[114,223,72,5.989929676055908],[114,223,73,5.989076137542725],[114,223,74,5.987583160400391],[114,223,75,5.996276378631592],[114,223,76,6.015043258666992],[114,223,77,6.035196781158447],[114,223,78,6.042359828948975],[114,223,79,6.033916473388672],[114,224,64,6.004017353057861],[114,224,65,6.005990982055664],[114,224,66,6.005512237548828],[114,224,67,6.0021138191223145],[114,224,68,5.998892784118652],[114,224,69,5.994562149047852],[114,224,70,5.99104118347168],[114,224,71,5.989717483520508],[114,224,72,5.989929676055908],[114,224,73,5.989076137542725],[114,224,74,5.987583160400391],[114,224,75,5.996276378631592],[114,224,76,6.015043258666992],[114,224,77,6.035196781158447],[114,224,78,6.042359828948975],[114,224,79,6.033916473388672],[114,225,64,6.004017353057861],[114,225,65,6.005990982055664],[114,225,66,6.005512237548828],[114,225,67,6.0021138191223145],[114,225,68,5.998892784118652],[114,225,69,5.994562149047852],[114,225,70,5.99104118347168],[114,225,71,5.989717483520508],[114,225,72,5.989929676055908],[114,225,73,5.989076137542725],[114,225,74,5.987583160400391],[114,225,75,5.996276378631592],[114,225,76,6.015043258666992],[114,225,77,6.035196781158447],[114,225,78,6.042359828948975],[114,225,79,6.033916473388672],[114,226,64,6.004017353057861],[114,226,65,6.005990982055664],[114,226,66,6.005512237548828],[114,226,67,6.0021138191223145],[114,226,68,5.998892784118652],[114,226,69,5.994562149047852],[114,226,70,5.99104118347168],[114,226,71,5.989717483520508],[114,226,72,5.989929676055908],[114,226,73,5.989076137542725],[114,226,74,5.987583160400391],[114,226,75,5.996276378631592],[114,226,76,6.015043258666992],[114,226,77,6.035196781158447],[114,226,78,6.042359828948975],[114,226,79,6.033916473388672],[114,227,64,6.004017353057861],[114,227,65,6.005990982055664],[114,227,66,6.005512237548828],[114,227,67,6.0021138191223145],[114,227,68,5.998892784118652],[114,227,69,5.994562149047852],[114,227,70,5.99104118347168],[114,227,71,5.989717483520508],[114,227,72,5.989929676055908],[114,227,73,5.989076137542725],[114,227,74,5.987583160400391],[114,227,75,5.996276378631592],[114,227,76,6.015043258666992],[114,227,77,6.035196781158447],[114,227,78,6.042359828948975],[114,227,79,6.033916473388672],[114,228,64,6.004017353057861],[114,228,65,6.005990982055664],[114,228,66,6.005512237548828],[114,228,67,6.0021138191223145],[114,228,68,5.998892784118652],[114,228,69,5.994562149047852],[114,228,70,5.99104118347168],[114,228,71,5.989717483520508],[114,228,72,5.989929676055908],[114,228,73,5.989076137542725],[114,228,74,5.987583160400391],[114,228,75,5.996276378631592],[114,228,76,6.015043258666992],[114,228,77,6.035196781158447],[114,228,78,6.042359828948975],[114,228,79,6.033916473388672],[114,229,64,6.004017353057861],[114,229,65,6.005990982055664],[114,229,66,6.005512237548828],[114,229,67,6.0021138191223145],[114,229,68,5.998892784118652],[114,229,69,5.994562149047852],[114,229,70,5.99104118347168],[114,229,71,5.989717483520508],[114,229,72,5.989929676055908],[114,229,73,5.989076137542725],[114,229,74,5.987583160400391],[114,229,75,5.996276378631592],[114,229,76,6.015043258666992],[114,229,77,6.035196781158447],[114,229,78,6.042359828948975],[114,229,79,6.033916473388672],[114,230,64,6.004017353057861],[114,230,65,6.005990982055664],[114,230,66,6.005512237548828],[114,230,67,6.0021138191223145],[114,230,68,5.998892784118652],[114,230,69,5.994562149047852],[114,230,70,5.99104118347168],[114,230,71,5.989717483520508],[114,230,72,5.989929676055908],[114,230,73,5.989076137542725],[114,230,74,5.987583160400391],[114,230,75,5.996276378631592],[114,230,76,6.015043258666992],[114,230,77,6.035196781158447],[114,230,78,6.042359828948975],[114,230,79,6.033916473388672],[114,231,64,6.004017353057861],[114,231,65,6.005990982055664],[114,231,66,6.005512237548828],[114,231,67,6.0021138191223145],[114,231,68,5.998892784118652],[114,231,69,5.994562149047852],[114,231,70,5.99104118347168],[114,231,71,5.989717483520508],[114,231,72,5.989929676055908],[114,231,73,5.989076137542725],[114,231,74,5.987583160400391],[114,231,75,5.996276378631592],[114,231,76,6.015043258666992],[114,231,77,6.035196781158447],[114,231,78,6.042359828948975],[114,231,79,6.033916473388672],[114,232,64,6.004017353057861],[114,232,65,6.005990982055664],[114,232,66,6.005512237548828],[114,232,67,6.0021138191223145],[114,232,68,5.998892784118652],[114,232,69,5.994562149047852],[114,232,70,5.99104118347168],[114,232,71,5.989717483520508],[114,232,72,5.989929676055908],[114,232,73,5.989076137542725],[114,232,74,5.987583160400391],[114,232,75,5.996276378631592],[114,232,76,6.015043258666992],[114,232,77,6.035196781158447],[114,232,78,6.042359828948975],[114,232,79,6.033916473388672],[114,233,64,6.004017353057861],[114,233,65,6.005990982055664],[114,233,66,6.005512237548828],[114,233,67,6.0021138191223145],[114,233,68,5.998892784118652],[114,233,69,5.994562149047852],[114,233,70,5.99104118347168],[114,233,71,5.989717483520508],[114,233,72,5.989929676055908],[114,233,73,5.989076137542725],[114,233,74,5.987583160400391],[114,233,75,5.996276378631592],[114,233,76,6.015043258666992],[114,233,77,6.035196781158447],[114,233,78,6.042359828948975],[114,233,79,6.033916473388672],[114,234,64,6.004017353057861],[114,234,65,6.005990982055664],[114,234,66,6.005512237548828],[114,234,67,6.0021138191223145],[114,234,68,5.998892784118652],[114,234,69,5.994562149047852],[114,234,70,5.99104118347168],[114,234,71,5.989717483520508],[114,234,72,5.989929676055908],[114,234,73,5.989076137542725],[114,234,74,5.987583160400391],[114,234,75,5.996276378631592],[114,234,76,6.015043258666992],[114,234,77,6.035196781158447],[114,234,78,6.042359828948975],[114,234,79,6.033916473388672],[114,235,64,6.004017353057861],[114,235,65,6.005990982055664],[114,235,66,6.005512237548828],[114,235,67,6.0021138191223145],[114,235,68,5.998892784118652],[114,235,69,5.994562149047852],[114,235,70,5.99104118347168],[114,235,71,5.989717483520508],[114,235,72,5.989929676055908],[114,235,73,5.989076137542725],[114,235,74,5.987583160400391],[114,235,75,5.996276378631592],[114,235,76,6.015043258666992],[114,235,77,6.035196781158447],[114,235,78,6.042359828948975],[114,235,79,6.033916473388672],[114,236,64,6.004017353057861],[114,236,65,6.005990982055664],[114,236,66,6.005512237548828],[114,236,67,6.0021138191223145],[114,236,68,5.998892784118652],[114,236,69,5.994562149047852],[114,236,70,5.99104118347168],[114,236,71,5.989717483520508],[114,236,72,5.989929676055908],[114,236,73,5.989076137542725],[114,236,74,5.987583160400391],[114,236,75,5.996276378631592],[114,236,76,6.015043258666992],[114,236,77,6.035196781158447],[114,236,78,6.042359828948975],[114,236,79,6.033916473388672],[114,237,64,6.004017353057861],[114,237,65,6.005990982055664],[114,237,66,6.005512237548828],[114,237,67,6.0021138191223145],[114,237,68,5.998892784118652],[114,237,69,5.994562149047852],[114,237,70,5.99104118347168],[114,237,71,5.989717483520508],[114,237,72,5.989929676055908],[114,237,73,5.989076137542725],[114,237,74,5.987583160400391],[114,237,75,5.996276378631592],[114,237,76,6.015043258666992],[114,237,77,6.035196781158447],[114,237,78,6.042359828948975],[114,237,79,6.033916473388672],[114,238,64,6.004017353057861],[114,238,65,6.005990982055664],[114,238,66,6.005512237548828],[114,238,67,6.0021138191223145],[114,238,68,5.998892784118652],[114,238,69,5.994562149047852],[114,238,70,5.99104118347168],[114,238,71,5.989717483520508],[114,238,72,5.989929676055908],[114,238,73,5.989076137542725],[114,238,74,5.987583160400391],[114,238,75,5.996276378631592],[114,238,76,6.015043258666992],[114,238,77,6.035196781158447],[114,238,78,6.042359828948975],[114,238,79,6.033916473388672],[114,239,64,6.004017353057861],[114,239,65,6.005990982055664],[114,239,66,6.005512237548828],[114,239,67,6.0021138191223145],[114,239,68,5.998892784118652],[114,239,69,5.994562149047852],[114,239,70,5.99104118347168],[114,239,71,5.989717483520508],[114,239,72,5.989929676055908],[114,239,73,5.989076137542725],[114,239,74,5.987583160400391],[114,239,75,5.996276378631592],[114,239,76,6.015043258666992],[114,239,77,6.035196781158447],[114,239,78,6.042359828948975],[114,239,79,6.033916473388672],[114,240,64,6.004017353057861],[114,240,65,6.005990982055664],[114,240,66,6.005512237548828],[114,240,67,6.0021138191223145],[114,240,68,5.998892784118652],[114,240,69,5.994562149047852],[114,240,70,5.99104118347168],[114,240,71,5.989717483520508],[114,240,72,5.989929676055908],[114,240,73,5.989076137542725],[114,240,74,5.987583160400391],[114,240,75,5.996276378631592],[114,240,76,6.015043258666992],[114,240,77,6.035196781158447],[114,240,78,6.042359828948975],[114,240,79,6.033916473388672],[114,241,64,6.004017353057861],[114,241,65,6.005990982055664],[114,241,66,6.005512237548828],[114,241,67,6.0021138191223145],[114,241,68,5.998892784118652],[114,241,69,5.994562149047852],[114,241,70,5.99104118347168],[114,241,71,5.989717483520508],[114,241,72,5.989929676055908],[114,241,73,5.989076137542725],[114,241,74,5.987583160400391],[114,241,75,5.996276378631592],[114,241,76,6.015043258666992],[114,241,77,6.035196781158447],[114,241,78,6.042359828948975],[114,241,79,6.033916473388672],[114,242,64,6.004017353057861],[114,242,65,6.005990982055664],[114,242,66,6.005512237548828],[114,242,67,6.0021138191223145],[114,242,68,5.998892784118652],[114,242,69,5.994562149047852],[114,242,70,5.99104118347168],[114,242,71,5.989717483520508],[114,242,72,5.989929676055908],[114,242,73,5.989076137542725],[114,242,74,5.987583160400391],[114,242,75,5.996276378631592],[114,242,76,6.015043258666992],[114,242,77,6.035196781158447],[114,242,78,6.042359828948975],[114,242,79,6.033916473388672],[114,243,64,6.004017353057861],[114,243,65,6.005990982055664],[114,243,66,6.005512237548828],[114,243,67,6.0021138191223145],[114,243,68,5.998892784118652],[114,243,69,5.994562149047852],[114,243,70,5.99104118347168],[114,243,71,5.989717483520508],[114,243,72,5.989929676055908],[114,243,73,5.989076137542725],[114,243,74,5.987583160400391],[114,243,75,5.996276378631592],[114,243,76,6.015043258666992],[114,243,77,6.035196781158447],[114,243,78,6.042359828948975],[114,243,79,6.033916473388672],[114,244,64,6.004017353057861],[114,244,65,6.005990982055664],[114,244,66,6.005512237548828],[114,244,67,6.0021138191223145],[114,244,68,5.998892784118652],[114,244,69,5.994562149047852],[114,244,70,5.99104118347168],[114,244,71,5.989717483520508],[114,244,72,5.989929676055908],[114,244,73,5.989076137542725],[114,244,74,5.987583160400391],[114,244,75,5.996276378631592],[114,244,76,6.015043258666992],[114,244,77,6.035196781158447],[114,244,78,6.042359828948975],[114,244,79,6.033916473388672],[114,245,64,6.004017353057861],[114,245,65,6.005990982055664],[114,245,66,6.005512237548828],[114,245,67,6.0021138191223145],[114,245,68,5.998892784118652],[114,245,69,5.994562149047852],[114,245,70,5.99104118347168],[114,245,71,5.989717483520508],[114,245,72,5.989929676055908],[114,245,73,5.989076137542725],[114,245,74,5.987583160400391],[114,245,75,5.996276378631592],[114,245,76,6.015043258666992],[114,245,77,6.035196781158447],[114,245,78,6.042359828948975],[114,245,79,6.033916473388672],[114,246,64,6.004017353057861],[114,246,65,6.005990982055664],[114,246,66,6.005512237548828],[114,246,67,6.0021138191223145],[114,246,68,5.998892784118652],[114,246,69,5.994562149047852],[114,246,70,5.99104118347168],[114,246,71,5.989717483520508],[114,246,72,5.989929676055908],[114,246,73,5.989076137542725],[114,246,74,5.987583160400391],[114,246,75,5.996276378631592],[114,246,76,6.015043258666992],[114,246,77,6.035196781158447],[114,246,78,6.042359828948975],[114,246,79,6.033916473388672],[114,247,64,6.004017353057861],[114,247,65,6.005990982055664],[114,247,66,6.005512237548828],[114,247,67,6.0021138191223145],[114,247,68,5.998892784118652],[114,247,69,5.994562149047852],[114,247,70,5.99104118347168],[114,247,71,5.989717483520508],[114,247,72,5.989929676055908],[114,247,73,5.989076137542725],[114,247,74,5.987583160400391],[114,247,75,5.996276378631592],[114,247,76,6.015043258666992],[114,247,77,6.035196781158447],[114,247,78,6.042359828948975],[114,247,79,6.033916473388672],[114,248,64,6.004017353057861],[114,248,65,6.005990982055664],[114,248,66,6.005512237548828],[114,248,67,6.0021138191223145],[114,248,68,5.998892784118652],[114,248,69,5.994562149047852],[114,248,70,5.99104118347168],[114,248,71,5.989717483520508],[114,248,72,5.989929676055908],[114,248,73,5.989076137542725],[114,248,74,5.987583160400391],[114,248,75,5.996276378631592],[114,248,76,6.015043258666992],[114,248,77,6.035196781158447],[114,248,78,6.042359828948975],[114,248,79,6.033916473388672],[114,249,64,6.004017353057861],[114,249,65,6.005990982055664],[114,249,66,6.005512237548828],[114,249,67,6.0021138191223145],[114,249,68,5.998892784118652],[114,249,69,5.994562149047852],[114,249,70,5.99104118347168],[114,249,71,5.989717483520508],[114,249,72,5.989929676055908],[114,249,73,5.989076137542725],[114,249,74,5.987583160400391],[114,249,75,5.996276378631592],[114,249,76,6.015043258666992],[114,249,77,6.035196781158447],[114,249,78,6.042359828948975],[114,249,79,6.033916473388672],[114,250,64,6.004017353057861],[114,250,65,6.005990982055664],[114,250,66,6.005512237548828],[114,250,67,6.0021138191223145],[114,250,68,5.998892784118652],[114,250,69,5.994562149047852],[114,250,70,5.99104118347168],[114,250,71,5.989717483520508],[114,250,72,5.989929676055908],[114,250,73,5.989076137542725],[114,250,74,5.987583160400391],[114,250,75,5.996276378631592],[114,250,76,6.015043258666992],[114,250,77,6.035196781158447],[114,250,78,6.042359828948975],[114,250,79,6.033916473388672],[114,251,64,6.004017353057861],[114,251,65,6.005990982055664],[114,251,66,6.005512237548828],[114,251,67,6.0021138191223145],[114,251,68,5.998892784118652],[114,251,69,5.994562149047852],[114,251,70,5.99104118347168],[114,251,71,5.989717483520508],[114,251,72,5.989929676055908],[114,251,73,5.989076137542725],[114,251,74,5.987583160400391],[114,251,75,5.996276378631592],[114,251,76,6.015043258666992],[114,251,77,6.035196781158447],[114,251,78,6.042359828948975],[114,251,79,6.033916473388672],[114,252,64,6.004017353057861],[114,252,65,6.005990982055664],[114,252,66,6.005512237548828],[114,252,67,6.0021138191223145],[114,252,68,5.998892784118652],[114,252,69,5.994562149047852],[114,252,70,5.99104118347168],[114,252,71,5.989717483520508],[114,252,72,5.989929676055908],[114,252,73,5.989076137542725],[114,252,74,5.987583160400391],[114,252,75,5.996276378631592],[114,252,76,6.015043258666992],[114,252,77,6.035196781158447],[114,252,78,6.042359828948975],[114,252,79,6.033916473388672],[114,253,64,6.004017353057861],[114,253,65,6.005990982055664],[114,253,66,6.005512237548828],[114,253,67,6.0021138191223145],[114,253,68,5.998892784118652],[114,253,69,5.994562149047852],[114,253,70,5.99104118347168],[114,253,71,5.989717483520508],[114,253,72,5.989929676055908],[114,253,73,5.989076137542725],[114,253,74,5.987583160400391],[114,253,75,5.996276378631592],[114,253,76,6.015043258666992],[114,253,77,6.035196781158447],[114,253,78,6.042359828948975],[114,253,79,6.033916473388672],[114,254,64,6.004017353057861],[114,254,65,6.005990982055664],[114,254,66,6.005512237548828],[114,254,67,6.0021138191223145],[114,254,68,5.998892784118652],[114,254,69,5.994562149047852],[114,254,70,5.99104118347168],[114,254,71,5.989717483520508],[114,254,72,5.989929676055908],[114,254,73,5.989076137542725],[114,254,74,5.987583160400391],[114,254,75,5.996276378631592],[114,254,76,6.015043258666992],[114,254,77,6.035196781158447],[114,254,78,6.042359828948975],[114,254,79,6.033916473388672],[114,255,64,6.004017353057861],[114,255,65,6.005990982055664],[114,255,66,6.005512237548828],[114,255,67,6.0021138191223145],[114,255,68,5.998892784118652],[114,255,69,5.994562149047852],[114,255,70,5.99104118347168],[114,255,71,5.989717483520508],[114,255,72,5.989929676055908],[114,255,73,5.989076137542725],[114,255,74,5.987583160400391],[114,255,75,5.996276378631592],[114,255,76,6.015043258666992],[114,255,77,6.035196781158447],[114,255,78,6.042359828948975],[114,255,79,6.033916473388672],[114,256,64,6.004017353057861],[114,256,65,6.005990982055664],[114,256,66,6.005512237548828],[114,256,67,6.0021138191223145],[114,256,68,5.998892784118652],[114,256,69,5.994562149047852],[114,256,70,5.99104118347168],[114,256,71,5.989717483520508],[114,256,72,5.989929676055908],[114,256,73,5.989076137542725],[114,256,74,5.987583160400391],[114,256,75,5.996276378631592],[114,256,76,6.015043258666992],[114,256,77,6.035196781158447],[114,256,78,6.042359828948975],[114,256,79,6.033916473388672],[114,257,64,6.004017353057861],[114,257,65,6.005990982055664],[114,257,66,6.005512237548828],[114,257,67,6.0021138191223145],[114,257,68,5.998892784118652],[114,257,69,5.994562149047852],[114,257,70,5.99104118347168],[114,257,71,5.989717483520508],[114,257,72,5.989929676055908],[114,257,73,5.989076137542725],[114,257,74,5.987583160400391],[114,257,75,5.996276378631592],[114,257,76,6.015043258666992],[114,257,77,6.035196781158447],[114,257,78,6.042359828948975],[114,257,79,6.033916473388672],[114,258,64,6.004017353057861],[114,258,65,6.005990982055664],[114,258,66,6.005512237548828],[114,258,67,6.0021138191223145],[114,258,68,5.998892784118652],[114,258,69,5.994562149047852],[114,258,70,5.99104118347168],[114,258,71,5.989717483520508],[114,258,72,5.989929676055908],[114,258,73,5.989076137542725],[114,258,74,5.987583160400391],[114,258,75,5.996276378631592],[114,258,76,6.015043258666992],[114,258,77,6.035196781158447],[114,258,78,6.042359828948975],[114,258,79,6.033916473388672],[114,259,64,6.004017353057861],[114,259,65,6.005990982055664],[114,259,66,6.005512237548828],[114,259,67,6.0021138191223145],[114,259,68,5.998892784118652],[114,259,69,5.994562149047852],[114,259,70,5.99104118347168],[114,259,71,5.989717483520508],[114,259,72,5.989929676055908],[114,259,73,5.989076137542725],[114,259,74,5.987583160400391],[114,259,75,5.996276378631592],[114,259,76,6.015043258666992],[114,259,77,6.035196781158447],[114,259,78,6.042359828948975],[114,259,79,6.033916473388672],[114,260,64,6.004017353057861],[114,260,65,6.005990982055664],[114,260,66,6.005512237548828],[114,260,67,6.0021138191223145],[114,260,68,5.998892784118652],[114,260,69,5.994562149047852],[114,260,70,5.99104118347168],[114,260,71,5.989717483520508],[114,260,72,5.989929676055908],[114,260,73,5.989076137542725],[114,260,74,5.987583160400391],[114,260,75,5.996276378631592],[114,260,76,6.015043258666992],[114,260,77,6.035196781158447],[114,260,78,6.042359828948975],[114,260,79,6.033916473388672],[114,261,64,6.004017353057861],[114,261,65,6.005990982055664],[114,261,66,6.005512237548828],[114,261,67,6.0021138191223145],[114,261,68,5.998892784118652],[114,261,69,5.994562149047852],[114,261,70,5.99104118347168],[114,261,71,5.989717483520508],[114,261,72,5.989929676055908],[114,261,73,5.989076137542725],[114,261,74,5.987583160400391],[114,261,75,5.996276378631592],[114,261,76,6.015043258666992],[114,261,77,6.035196781158447],[114,261,78,6.042359828948975],[114,261,79,6.033916473388672],[114,262,64,6.004017353057861],[114,262,65,6.005990982055664],[114,262,66,6.005512237548828],[114,262,67,6.0021138191223145],[114,262,68,5.998892784118652],[114,262,69,5.994562149047852],[114,262,70,5.99104118347168],[114,262,71,5.989717483520508],[114,262,72,5.989929676055908],[114,262,73,5.989076137542725],[114,262,74,5.987583160400391],[114,262,75,5.996276378631592],[114,262,76,6.015043258666992],[114,262,77,6.035196781158447],[114,262,78,6.042359828948975],[114,262,79,6.033916473388672],[114,263,64,6.004017353057861],[114,263,65,6.005990982055664],[114,263,66,6.005512237548828],[114,263,67,6.0021138191223145],[114,263,68,5.998892784118652],[114,263,69,5.994562149047852],[114,263,70,5.99104118347168],[114,263,71,5.989717483520508],[114,263,72,5.989929676055908],[114,263,73,5.989076137542725],[114,263,74,5.987583160400391],[114,263,75,5.996276378631592],[114,263,76,6.015043258666992],[114,263,77,6.035196781158447],[114,263,78,6.042359828948975],[114,263,79,6.033916473388672],[114,264,64,6.004017353057861],[114,264,65,6.005990982055664],[114,264,66,6.005512237548828],[114,264,67,6.0021138191223145],[114,264,68,5.998892784118652],[114,264,69,5.994562149047852],[114,264,70,5.99104118347168],[114,264,71,5.989717483520508],[114,264,72,5.989929676055908],[114,264,73,5.989076137542725],[114,264,74,5.987583160400391],[114,264,75,5.996276378631592],[114,264,76,6.015043258666992],[114,264,77,6.035196781158447],[114,264,78,6.042359828948975],[114,264,79,6.033916473388672],[114,265,64,6.004017353057861],[114,265,65,6.005990982055664],[114,265,66,6.005512237548828],[114,265,67,6.0021138191223145],[114,265,68,5.998892784118652],[114,265,69,5.994562149047852],[114,265,70,5.99104118347168],[114,265,71,5.989717483520508],[114,265,72,5.989929676055908],[114,265,73,5.989076137542725],[114,265,74,5.987583160400391],[114,265,75,5.996276378631592],[114,265,76,6.015043258666992],[114,265,77,6.035196781158447],[114,265,78,6.042359828948975],[114,265,79,6.033916473388672],[114,266,64,6.004017353057861],[114,266,65,6.005990982055664],[114,266,66,6.005512237548828],[114,266,67,6.0021138191223145],[114,266,68,5.998892784118652],[114,266,69,5.994562149047852],[114,266,70,5.99104118347168],[114,266,71,5.989717483520508],[114,266,72,5.989929676055908],[114,266,73,5.989076137542725],[114,266,74,5.987583160400391],[114,266,75,5.996276378631592],[114,266,76,6.015043258666992],[114,266,77,6.035196781158447],[114,266,78,6.042359828948975],[114,266,79,6.033916473388672],[114,267,64,6.004017353057861],[114,267,65,6.005990982055664],[114,267,66,6.005512237548828],[114,267,67,6.0021138191223145],[114,267,68,5.998892784118652],[114,267,69,5.994562149047852],[114,267,70,5.99104118347168],[114,267,71,5.989717483520508],[114,267,72,5.989929676055908],[114,267,73,5.989076137542725],[114,267,74,5.987583160400391],[114,267,75,5.996276378631592],[114,267,76,6.015043258666992],[114,267,77,6.035196781158447],[114,267,78,6.042359828948975],[114,267,79,6.033916473388672],[114,268,64,6.004017353057861],[114,268,65,6.005990982055664],[114,268,66,6.005512237548828],[114,268,67,6.0021138191223145],[114,268,68,5.998892784118652],[114,268,69,5.994562149047852],[114,268,70,5.99104118347168],[114,268,71,5.989717483520508],[114,268,72,5.989929676055908],[114,268,73,5.989076137542725],[114,268,74,5.987583160400391],[114,268,75,5.996276378631592],[114,268,76,6.015043258666992],[114,268,77,6.035196781158447],[114,268,78,6.042359828948975],[114,268,79,6.033916473388672],[114,269,64,6.004017353057861],[114,269,65,6.005990982055664],[114,269,66,6.005512237548828],[114,269,67,6.0021138191223145],[114,269,68,5.998892784118652],[114,269,69,5.994562149047852],[114,269,70,5.99104118347168],[114,269,71,5.989717483520508],[114,269,72,5.989929676055908],[114,269,73,5.989076137542725],[114,269,74,5.987583160400391],[114,269,75,5.996276378631592],[114,269,76,6.015043258666992],[114,269,77,6.035196781158447],[114,269,78,6.042359828948975],[114,269,79,6.033916473388672],[114,270,64,6.004017353057861],[114,270,65,6.005990982055664],[114,270,66,6.005512237548828],[114,270,67,6.0021138191223145],[114,270,68,5.998892784118652],[114,270,69,5.994562149047852],[114,270,70,5.99104118347168],[114,270,71,5.989717483520508],[114,270,72,5.989929676055908],[114,270,73,5.989076137542725],[114,270,74,5.987583160400391],[114,270,75,5.996276378631592],[114,270,76,6.015043258666992],[114,270,77,6.035196781158447],[114,270,78,6.042359828948975],[114,270,79,6.033916473388672],[114,271,64,6.004017353057861],[114,271,65,6.005990982055664],[114,271,66,6.005512237548828],[114,271,67,6.0021138191223145],[114,271,68,5.998892784118652],[114,271,69,5.994562149047852],[114,271,70,5.99104118347168],[114,271,71,5.989717483520508],[114,271,72,5.989929676055908],[114,271,73,5.989076137542725],[114,271,74,5.987583160400391],[114,271,75,5.996276378631592],[114,271,76,6.015043258666992],[114,271,77,6.035196781158447],[114,271,78,6.042359828948975],[114,271,79,6.033916473388672],[114,272,64,6.004017353057861],[114,272,65,6.005990982055664],[114,272,66,6.005512237548828],[114,272,67,6.0021138191223145],[114,272,68,5.998892784118652],[114,272,69,5.994562149047852],[114,272,70,5.99104118347168],[114,272,71,5.989717483520508],[114,272,72,5.989929676055908],[114,272,73,5.989076137542725],[114,272,74,5.987583160400391],[114,272,75,5.996276378631592],[114,272,76,6.015043258666992],[114,272,77,6.035196781158447],[114,272,78,6.042359828948975],[114,272,79,6.033916473388672],[114,273,64,6.004017353057861],[114,273,65,6.005990982055664],[114,273,66,6.005512237548828],[114,273,67,6.0021138191223145],[114,273,68,5.998892784118652],[114,273,69,5.994562149047852],[114,273,70,5.99104118347168],[114,273,71,5.989717483520508],[114,273,72,5.989929676055908],[114,273,73,5.989076137542725],[114,273,74,5.987583160400391],[114,273,75,5.996276378631592],[114,273,76,6.015043258666992],[114,273,77,6.035196781158447],[114,273,78,6.042359828948975],[114,273,79,6.033916473388672],[114,274,64,6.004017353057861],[114,274,65,6.005990982055664],[114,274,66,6.005512237548828],[114,274,67,6.0021138191223145],[114,274,68,5.998892784118652],[114,274,69,5.994562149047852],[114,274,70,5.99104118347168],[114,274,71,5.989717483520508],[114,274,72,5.989929676055908],[114,274,73,5.989076137542725],[114,274,74,5.987583160400391],[114,274,75,5.996276378631592],[114,274,76,6.015043258666992],[114,274,77,6.035196781158447],[114,274,78,6.042359828948975],[114,274,79,6.033916473388672],[114,275,64,6.004017353057861],[114,275,65,6.005990982055664],[114,275,66,6.005512237548828],[114,275,67,6.0021138191223145],[114,275,68,5.998892784118652],[114,275,69,5.994562149047852],[114,275,70,5.99104118347168],[114,275,71,5.989717483520508],[114,275,72,5.989929676055908],[114,275,73,5.989076137542725],[114,275,74,5.987583160400391],[114,275,75,5.996276378631592],[114,275,76,6.015043258666992],[114,275,77,6.035196781158447],[114,275,78,6.042359828948975],[114,275,79,6.033916473388672],[114,276,64,6.004017353057861],[114,276,65,6.005990982055664],[114,276,66,6.005512237548828],[114,276,67,6.0021138191223145],[114,276,68,5.998892784118652],[114,276,69,5.994562149047852],[114,276,70,5.99104118347168],[114,276,71,5.989717483520508],[114,276,72,5.989929676055908],[114,276,73,5.989076137542725],[114,276,74,5.987583160400391],[114,276,75,5.996276378631592],[114,276,76,6.015043258666992],[114,276,77,6.035196781158447],[114,276,78,6.042359828948975],[114,276,79,6.033916473388672],[114,277,64,6.004017353057861],[114,277,65,6.005990982055664],[114,277,66,6.005512237548828],[114,277,67,6.0021138191223145],[114,277,68,5.998892784118652],[114,277,69,5.994562149047852],[114,277,70,5.99104118347168],[114,277,71,5.989717483520508],[114,277,72,5.989929676055908],[114,277,73,5.989076137542725],[114,277,74,5.987583160400391],[114,277,75,5.996276378631592],[114,277,76,6.015043258666992],[114,277,77,6.035196781158447],[114,277,78,6.042359828948975],[114,277,79,6.033916473388672],[114,278,64,6.004017353057861],[114,278,65,6.005990982055664],[114,278,66,6.005512237548828],[114,278,67,6.0021138191223145],[114,278,68,5.998892784118652],[114,278,69,5.994562149047852],[114,278,70,5.99104118347168],[114,278,71,5.989717483520508],[114,278,72,5.989929676055908],[114,278,73,5.989076137542725],[114,278,74,5.987583160400391],[114,278,75,5.996276378631592],[114,278,76,6.015043258666992],[114,278,77,6.035196781158447],[114,278,78,6.042359828948975],[114,278,79,6.033916473388672],[114,279,64,6.004017353057861],[114,279,65,6.005990982055664],[114,279,66,6.005512237548828],[114,279,67,6.0021138191223145],[114,279,68,5.998892784118652],[114,279,69,5.994562149047852],[114,279,70,5.99104118347168],[114,279,71,5.989717483520508],[114,279,72,5.989929676055908],[114,279,73,5.989076137542725],[114,279,74,5.987583160400391],[114,279,75,5.996276378631592],[114,279,76,6.015043258666992],[114,279,77,6.035196781158447],[114,279,78,6.042359828948975],[114,279,79,6.033916473388672],[114,280,64,6.004017353057861],[114,280,65,6.005990982055664],[114,280,66,6.005512237548828],[114,280,67,6.0021138191223145],[114,280,68,5.998892784118652],[114,280,69,5.994562149047852],[114,280,70,5.99104118347168],[114,280,71,5.989717483520508],[114,280,72,5.989929676055908],[114,280,73,5.989076137542725],[114,280,74,5.987583160400391],[114,280,75,5.996276378631592],[114,280,76,6.015043258666992],[114,280,77,6.035196781158447],[114,280,78,6.042359828948975],[114,280,79,6.033916473388672],[114,281,64,6.004017353057861],[114,281,65,6.005990982055664],[114,281,66,6.005512237548828],[114,281,67,6.0021138191223145],[114,281,68,5.998892784118652],[114,281,69,5.994562149047852],[114,281,70,5.99104118347168],[114,281,71,5.989717483520508],[114,281,72,5.989929676055908],[114,281,73,5.989076137542725],[114,281,74,5.987583160400391],[114,281,75,5.996276378631592],[114,281,76,6.015043258666992],[114,281,77,6.035196781158447],[114,281,78,6.042359828948975],[114,281,79,6.033916473388672],[114,282,64,6.004017353057861],[114,282,65,6.005990982055664],[114,282,66,6.005512237548828],[114,282,67,6.0021138191223145],[114,282,68,5.998892784118652],[114,282,69,5.994562149047852],[114,282,70,5.99104118347168],[114,282,71,5.989717483520508],[114,282,72,5.989929676055908],[114,282,73,5.989076137542725],[114,282,74,5.987583160400391],[114,282,75,5.996276378631592],[114,282,76,6.015043258666992],[114,282,77,6.035196781158447],[114,282,78,6.042359828948975],[114,282,79,6.033916473388672],[114,283,64,6.004017353057861],[114,283,65,6.005990982055664],[114,283,66,6.005512237548828],[114,283,67,6.0021138191223145],[114,283,68,5.998892784118652],[114,283,69,5.994562149047852],[114,283,70,5.99104118347168],[114,283,71,5.989717483520508],[114,283,72,5.989929676055908],[114,283,73,5.989076137542725],[114,283,74,5.987583160400391],[114,283,75,5.996276378631592],[114,283,76,6.015043258666992],[114,283,77,6.035196781158447],[114,283,78,6.042359828948975],[114,283,79,6.033916473388672],[114,284,64,6.004017353057861],[114,284,65,6.005990982055664],[114,284,66,6.005512237548828],[114,284,67,6.0021138191223145],[114,284,68,5.998892784118652],[114,284,69,5.994562149047852],[114,284,70,5.99104118347168],[114,284,71,5.989717483520508],[114,284,72,5.989929676055908],[114,284,73,5.989076137542725],[114,284,74,5.987583160400391],[114,284,75,5.996276378631592],[114,284,76,6.015043258666992],[114,284,77,6.035196781158447],[114,284,78,6.042359828948975],[114,284,79,6.033916473388672],[114,285,64,6.004017353057861],[114,285,65,6.005990982055664],[114,285,66,6.005512237548828],[114,285,67,6.0021138191223145],[114,285,68,5.998892784118652],[114,285,69,5.994562149047852],[114,285,70,5.99104118347168],[114,285,71,5.989717483520508],[114,285,72,5.989929676055908],[114,285,73,5.989076137542725],[114,285,74,5.987583160400391],[114,285,75,5.996276378631592],[114,285,76,6.015043258666992],[114,285,77,6.035196781158447],[114,285,78,6.042359828948975],[114,285,79,6.033916473388672],[114,286,64,6.004017353057861],[114,286,65,6.005990982055664],[114,286,66,6.005512237548828],[114,286,67,6.0021138191223145],[114,286,68,5.998892784118652],[114,286,69,5.994562149047852],[114,286,70,5.99104118347168],[114,286,71,5.989717483520508],[114,286,72,5.989929676055908],[114,286,73,5.989076137542725],[114,286,74,5.987583160400391],[114,286,75,5.996276378631592],[114,286,76,6.015043258666992],[114,286,77,6.035196781158447],[114,286,78,6.042359828948975],[114,286,79,6.033916473388672],[114,287,64,6.004017353057861],[114,287,65,6.005990982055664],[114,287,66,6.005512237548828],[114,287,67,6.0021138191223145],[114,287,68,5.998892784118652],[114,287,69,5.994562149047852],[114,287,70,5.99104118347168],[114,287,71,5.989717483520508],[114,287,72,5.989929676055908],[114,287,73,5.989076137542725],[114,287,74,5.987583160400391],[114,287,75,5.996276378631592],[114,287,76,6.015043258666992],[114,287,77,6.035196781158447],[114,287,78,6.042359828948975],[114,287,79,6.033916473388672],[114,288,64,6.004017353057861],[114,288,65,6.005990982055664],[114,288,66,6.005512237548828],[114,288,67,6.0021138191223145],[114,288,68,5.998892784118652],[114,288,69,5.994562149047852],[114,288,70,5.99104118347168],[114,288,71,5.989717483520508],[114,288,72,5.989929676055908],[114,288,73,5.989076137542725],[114,288,74,5.987583160400391],[114,288,75,5.996276378631592],[114,288,76,6.015043258666992],[114,288,77,6.035196781158447],[114,288,78,6.042359828948975],[114,288,79,6.033916473388672],[114,289,64,6.004017353057861],[114,289,65,6.005990982055664],[114,289,66,6.005512237548828],[114,289,67,6.0021138191223145],[114,289,68,5.998892784118652],[114,289,69,5.994562149047852],[114,289,70,5.99104118347168],[114,289,71,5.989717483520508],[114,289,72,5.989929676055908],[114,289,73,5.989076137542725],[114,289,74,5.987583160400391],[114,289,75,5.996276378631592],[114,289,76,6.015043258666992],[114,289,77,6.035196781158447],[114,289,78,6.042359828948975],[114,289,79,6.033916473388672],[114,290,64,6.004017353057861],[114,290,65,6.005990982055664],[114,290,66,6.005512237548828],[114,290,67,6.0021138191223145],[114,290,68,5.998892784118652],[114,290,69,5.994562149047852],[114,290,70,5.99104118347168],[114,290,71,5.989717483520508],[114,290,72,5.989929676055908],[114,290,73,5.989076137542725],[114,290,74,5.987583160400391],[114,290,75,5.996276378631592],[114,290,76,6.015043258666992],[114,290,77,6.035196781158447],[114,290,78,6.042359828948975],[114,290,79,6.033916473388672],[114,291,64,6.004017353057861],[114,291,65,6.005990982055664],[114,291,66,6.005512237548828],[114,291,67,6.0021138191223145],[114,291,68,5.998892784118652],[114,291,69,5.994562149047852],[114,291,70,5.99104118347168],[114,291,71,5.989717483520508],[114,291,72,5.989929676055908],[114,291,73,5.989076137542725],[114,291,74,5.987583160400391],[114,291,75,5.996276378631592],[114,291,76,6.015043258666992],[114,291,77,6.035196781158447],[114,291,78,6.042359828948975],[114,291,79,6.033916473388672],[114,292,64,6.004017353057861],[114,292,65,6.005990982055664],[114,292,66,6.005512237548828],[114,292,67,6.0021138191223145],[114,292,68,5.998892784118652],[114,292,69,5.994562149047852],[114,292,70,5.99104118347168],[114,292,71,5.989717483520508],[114,292,72,5.989929676055908],[114,292,73,5.989076137542725],[114,292,74,5.987583160400391],[114,292,75,5.996276378631592],[114,292,76,6.015043258666992],[114,292,77,6.035196781158447],[114,292,78,6.042359828948975],[114,292,79,6.033916473388672],[114,293,64,6.004017353057861],[114,293,65,6.005990982055664],[114,293,66,6.005512237548828],[114,293,67,6.0021138191223145],[114,293,68,5.998892784118652],[114,293,69,5.994562149047852],[114,293,70,5.99104118347168],[114,293,71,5.989717483520508],[114,293,72,5.989929676055908],[114,293,73,5.989076137542725],[114,293,74,5.987583160400391],[114,293,75,5.996276378631592],[114,293,76,6.015043258666992],[114,293,77,6.035196781158447],[114,293,78,6.042359828948975],[114,293,79,6.033916473388672],[114,294,64,6.004017353057861],[114,294,65,6.005990982055664],[114,294,66,6.005512237548828],[114,294,67,6.0021138191223145],[114,294,68,5.998892784118652],[114,294,69,5.994562149047852],[114,294,70,5.99104118347168],[114,294,71,5.989717483520508],[114,294,72,5.989929676055908],[114,294,73,5.989076137542725],[114,294,74,5.987583160400391],[114,294,75,5.996276378631592],[114,294,76,6.015043258666992],[114,294,77,6.035196781158447],[114,294,78,6.042359828948975],[114,294,79,6.033916473388672],[114,295,64,6.004017353057861],[114,295,65,6.005990982055664],[114,295,66,6.005512237548828],[114,295,67,6.0021138191223145],[114,295,68,5.998892784118652],[114,295,69,5.994562149047852],[114,295,70,5.99104118347168],[114,295,71,5.989717483520508],[114,295,72,5.989929676055908],[114,295,73,5.989076137542725],[114,295,74,5.987583160400391],[114,295,75,5.996276378631592],[114,295,76,6.015043258666992],[114,295,77,6.035196781158447],[114,295,78,6.042359828948975],[114,295,79,6.033916473388672],[114,296,64,6.004017353057861],[114,296,65,6.005990982055664],[114,296,66,6.005512237548828],[114,296,67,6.0021138191223145],[114,296,68,5.998892784118652],[114,296,69,5.994562149047852],[114,296,70,5.99104118347168],[114,296,71,5.989717483520508],[114,296,72,5.989929676055908],[114,296,73,5.989076137542725],[114,296,74,5.987583160400391],[114,296,75,5.996276378631592],[114,296,76,6.015043258666992],[114,296,77,6.035196781158447],[114,296,78,6.042359828948975],[114,296,79,6.033916473388672],[114,297,64,6.004017353057861],[114,297,65,6.005990982055664],[114,297,66,6.005512237548828],[114,297,67,6.0021138191223145],[114,297,68,5.998892784118652],[114,297,69,5.994562149047852],[114,297,70,5.99104118347168],[114,297,71,5.989717483520508],[114,297,72,5.989929676055908],[114,297,73,5.989076137542725],[114,297,74,5.987583160400391],[114,297,75,5.996276378631592],[114,297,76,6.015043258666992],[114,297,77,6.035196781158447],[114,297,78,6.042359828948975],[114,297,79,6.033916473388672],[114,298,64,6.004017353057861],[114,298,65,6.005990982055664],[114,298,66,6.005512237548828],[114,298,67,6.0021138191223145],[114,298,68,5.998892784118652],[114,298,69,5.994562149047852],[114,298,70,5.99104118347168],[114,298,71,5.989717483520508],[114,298,72,5.989929676055908],[114,298,73,5.989076137542725],[114,298,74,5.987583160400391],[114,298,75,5.996276378631592],[114,298,76,6.015043258666992],[114,298,77,6.035196781158447],[114,298,78,6.042359828948975],[114,298,79,6.033916473388672],[114,299,64,6.004017353057861],[114,299,65,6.005990982055664],[114,299,66,6.005512237548828],[114,299,67,6.0021138191223145],[114,299,68,5.998892784118652],[114,299,69,5.994562149047852],[114,299,70,5.99104118347168],[114,299,71,5.989717483520508],[114,299,72,5.989929676055908],[114,299,73,5.989076137542725],[114,299,74,5.987583160400391],[114,299,75,5.996276378631592],[114,299,76,6.015043258666992],[114,299,77,6.035196781158447],[114,299,78,6.042359828948975],[114,299,79,6.033916473388672],[114,300,64,6.004017353057861],[114,300,65,6.005990982055664],[114,300,66,6.005512237548828],[114,300,67,6.0021138191223145],[114,300,68,5.998892784118652],[114,300,69,5.994562149047852],[114,300,70,5.99104118347168],[114,300,71,5.989717483520508],[114,300,72,5.989929676055908],[114,300,73,5.989076137542725],[114,300,74,5.987583160400391],[114,300,75,5.996276378631592],[114,300,76,6.015043258666992],[114,300,77,6.035196781158447],[114,300,78,6.042359828948975],[114,300,79,6.033916473388672],[114,301,64,6.004017353057861],[114,301,65,6.005990982055664],[114,301,66,6.005512237548828],[114,301,67,6.0021138191223145],[114,301,68,5.998892784118652],[114,301,69,5.994562149047852],[114,301,70,5.99104118347168],[114,301,71,5.989717483520508],[114,301,72,5.989929676055908],[114,301,73,5.989076137542725],[114,301,74,5.987583160400391],[114,301,75,5.996276378631592],[114,301,76,6.015043258666992],[114,301,77,6.035196781158447],[114,301,78,6.042359828948975],[114,301,79,6.033916473388672],[114,302,64,6.004017353057861],[114,302,65,6.005990982055664],[114,302,66,6.005512237548828],[114,302,67,6.0021138191223145],[114,302,68,5.998892784118652],[114,302,69,5.994562149047852],[114,302,70,5.99104118347168],[114,302,71,5.989717483520508],[114,302,72,5.989929676055908],[114,302,73,5.989076137542725],[114,302,74,5.987583160400391],[114,302,75,5.996276378631592],[114,302,76,6.015043258666992],[114,302,77,6.035196781158447],[114,302,78,6.042359828948975],[114,302,79,6.033916473388672],[114,303,64,6.004017353057861],[114,303,65,6.005990982055664],[114,303,66,6.005512237548828],[114,303,67,6.0021138191223145],[114,303,68,5.998892784118652],[114,303,69,5.994562149047852],[114,303,70,5.99104118347168],[114,303,71,5.989717483520508],[114,303,72,5.989929676055908],[114,303,73,5.989076137542725],[114,303,74,5.987583160400391],[114,303,75,5.996276378631592],[114,303,76,6.015043258666992],[114,303,77,6.035196781158447],[114,303,78,6.042359828948975],[114,303,79,6.033916473388672],[114,304,64,6.004017353057861],[114,304,65,6.005990982055664],[114,304,66,6.005512237548828],[114,304,67,6.0021138191223145],[114,304,68,5.998892784118652],[114,304,69,5.994562149047852],[114,304,70,5.99104118347168],[114,304,71,5.989717483520508],[114,304,72,5.989929676055908],[114,304,73,5.989076137542725],[114,304,74,5.987583160400391],[114,304,75,5.996276378631592],[114,304,76,6.015043258666992],[114,304,77,6.035196781158447],[114,304,78,6.042359828948975],[114,304,79,6.033916473388672],[114,305,64,6.004017353057861],[114,305,65,6.005990982055664],[114,305,66,6.005512237548828],[114,305,67,6.0021138191223145],[114,305,68,5.998892784118652],[114,305,69,5.994562149047852],[114,305,70,5.99104118347168],[114,305,71,5.989717483520508],[114,305,72,5.989929676055908],[114,305,73,5.989076137542725],[114,305,74,5.987583160400391],[114,305,75,5.996276378631592],[114,305,76,6.015043258666992],[114,305,77,6.035196781158447],[114,305,78,6.042359828948975],[114,305,79,6.033916473388672],[114,306,64,6.004017353057861],[114,306,65,6.005990982055664],[114,306,66,6.005512237548828],[114,306,67,6.0021138191223145],[114,306,68,5.998892784118652],[114,306,69,5.994562149047852],[114,306,70,5.99104118347168],[114,306,71,5.989717483520508],[114,306,72,5.989929676055908],[114,306,73,5.989076137542725],[114,306,74,5.987583160400391],[114,306,75,5.996276378631592],[114,306,76,6.015043258666992],[114,306,77,6.035196781158447],[114,306,78,6.042359828948975],[114,306,79,6.033916473388672],[114,307,64,6.004017353057861],[114,307,65,6.005990982055664],[114,307,66,6.005512237548828],[114,307,67,6.0021138191223145],[114,307,68,5.998892784118652],[114,307,69,5.994562149047852],[114,307,70,5.99104118347168],[114,307,71,5.989717483520508],[114,307,72,5.989929676055908],[114,307,73,5.989076137542725],[114,307,74,5.987583160400391],[114,307,75,5.996276378631592],[114,307,76,6.015043258666992],[114,307,77,6.035196781158447],[114,307,78,6.042359828948975],[114,307,79,6.033916473388672],[114,308,64,6.004017353057861],[114,308,65,6.005990982055664],[114,308,66,6.005512237548828],[114,308,67,6.0021138191223145],[114,308,68,5.998892784118652],[114,308,69,5.994562149047852],[114,308,70,5.99104118347168],[114,308,71,5.989717483520508],[114,308,72,5.989929676055908],[114,308,73,5.989076137542725],[114,308,74,5.987583160400391],[114,308,75,5.996276378631592],[114,308,76,6.015043258666992],[114,308,77,6.035196781158447],[114,308,78,6.042359828948975],[114,308,79,6.033916473388672],[114,309,64,6.004017353057861],[114,309,65,6.005990982055664],[114,309,66,6.005512237548828],[114,309,67,6.0021138191223145],[114,309,68,5.998892784118652],[114,309,69,5.994562149047852],[114,309,70,5.99104118347168],[114,309,71,5.989717483520508],[114,309,72,5.989929676055908],[114,309,73,5.989076137542725],[114,309,74,5.987583160400391],[114,309,75,5.996276378631592],[114,309,76,6.015043258666992],[114,309,77,6.035196781158447],[114,309,78,6.042359828948975],[114,309,79,6.033916473388672],[114,310,64,6.004017353057861],[114,310,65,6.005990982055664],[114,310,66,6.005512237548828],[114,310,67,6.0021138191223145],[114,310,68,5.998892784118652],[114,310,69,5.994562149047852],[114,310,70,5.99104118347168],[114,310,71,5.989717483520508],[114,310,72,5.989929676055908],[114,310,73,5.989076137542725],[114,310,74,5.987583160400391],[114,310,75,5.996276378631592],[114,310,76,6.015043258666992],[114,310,77,6.035196781158447],[114,310,78,6.042359828948975],[114,310,79,6.033916473388672],[114,311,64,6.004017353057861],[114,311,65,6.005990982055664],[114,311,66,6.005512237548828],[114,311,67,6.0021138191223145],[114,311,68,5.998892784118652],[114,311,69,5.994562149047852],[114,311,70,5.99104118347168],[114,311,71,5.989717483520508],[114,311,72,5.989929676055908],[114,311,73,5.989076137542725],[114,311,74,5.987583160400391],[114,311,75,5.996276378631592],[114,311,76,6.015043258666992],[114,311,77,6.035196781158447],[114,311,78,6.042359828948975],[114,311,79,6.033916473388672],[114,312,64,6.004017353057861],[114,312,65,6.005990982055664],[114,312,66,6.005512237548828],[114,312,67,6.0021138191223145],[114,312,68,5.998892784118652],[114,312,69,5.994562149047852],[114,312,70,5.99104118347168],[114,312,71,5.989717483520508],[114,312,72,5.989929676055908],[114,312,73,5.989076137542725],[114,312,74,5.987583160400391],[114,312,75,5.996276378631592],[114,312,76,6.015043258666992],[114,312,77,6.035196781158447],[114,312,78,6.042359828948975],[114,312,79,6.033916473388672],[114,313,64,6.004017353057861],[114,313,65,6.005990982055664],[114,313,66,6.005512237548828],[114,313,67,6.0021138191223145],[114,313,68,5.998892784118652],[114,313,69,5.994562149047852],[114,313,70,5.99104118347168],[114,313,71,5.989717483520508],[114,313,72,5.989929676055908],[114,313,73,5.989076137542725],[114,313,74,5.987583160400391],[114,313,75,5.996276378631592],[114,313,76,6.015043258666992],[114,313,77,6.035196781158447],[114,313,78,6.042359828948975],[114,313,79,6.033916473388672],[114,314,64,6.004017353057861],[114,314,65,6.005990982055664],[114,314,66,6.005512237548828],[114,314,67,6.0021138191223145],[114,314,68,5.998892784118652],[114,314,69,5.994562149047852],[114,314,70,5.99104118347168],[114,314,71,5.989717483520508],[114,314,72,5.989929676055908],[114,314,73,5.989076137542725],[114,314,74,5.987583160400391],[114,314,75,5.996276378631592],[114,314,76,6.015043258666992],[114,314,77,6.035196781158447],[114,314,78,6.042359828948975],[114,314,79,6.033916473388672],[114,315,64,6.004017353057861],[114,315,65,6.005990982055664],[114,315,66,6.005512237548828],[114,315,67,6.0021138191223145],[114,315,68,5.998892784118652],[114,315,69,5.994562149047852],[114,315,70,5.99104118347168],[114,315,71,5.989717483520508],[114,315,72,5.989929676055908],[114,315,73,5.989076137542725],[114,315,74,5.987583160400391],[114,315,75,5.996276378631592],[114,315,76,6.015043258666992],[114,315,77,6.035196781158447],[114,315,78,6.042359828948975],[114,315,79,6.033916473388672],[114,316,64,6.004017353057861],[114,316,65,6.005990982055664],[114,316,66,6.005512237548828],[114,316,67,6.0021138191223145],[114,316,68,5.998892784118652],[114,316,69,5.994562149047852],[114,316,70,5.99104118347168],[114,316,71,5.989717483520508],[114,316,72,5.989929676055908],[114,316,73,5.989076137542725],[114,316,74,5.987583160400391],[114,316,75,5.996276378631592],[114,316,76,6.015043258666992],[114,316,77,6.035196781158447],[114,316,78,6.042359828948975],[114,316,79,6.033916473388672],[114,317,64,6.004017353057861],[114,317,65,6.005990982055664],[114,317,66,6.005512237548828],[114,317,67,6.0021138191223145],[114,317,68,5.998892784118652],[114,317,69,5.994562149047852],[114,317,70,5.99104118347168],[114,317,71,5.989717483520508],[114,317,72,5.989929676055908],[114,317,73,5.989076137542725],[114,317,74,5.987583160400391],[114,317,75,5.996276378631592],[114,317,76,6.015043258666992],[114,317,77,6.035196781158447],[114,317,78,6.042359828948975],[114,317,79,6.033916473388672],[114,318,64,6.004017353057861],[114,318,65,6.005990982055664],[114,318,66,6.005512237548828],[114,318,67,6.0021138191223145],[114,318,68,5.998892784118652],[114,318,69,5.994562149047852],[114,318,70,5.99104118347168],[114,318,71,5.989717483520508],[114,318,72,5.989929676055908],[114,318,73,5.989076137542725],[114,318,74,5.987583160400391],[114,318,75,5.996276378631592],[114,318,76,6.015043258666992],[114,318,77,6.035196781158447],[114,318,78,6.042359828948975],[114,318,79,6.033916473388672],[114,319,64,6.004017353057861],[114,319,65,6.005990982055664],[114,319,66,6.005512237548828],[114,319,67,6.0021138191223145],[114,319,68,5.998892784118652],[114,319,69,5.994562149047852],[114,319,70,5.99104118347168],[114,319,71,5.989717483520508],[114,319,72,5.989929676055908],[114,319,73,5.989076137542725],[114,319,74,5.987583160400391],[114,319,75,5.996276378631592],[114,319,76,6.015043258666992],[114,319,77,6.035196781158447],[114,319,78,6.042359828948975],[114,319,79,6.033916473388672],[115,-64,64,6.030251979827881],[115,-64,65,6.037074565887451],[115,-64,66,6.038665294647217],[115,-64,67,6.034188747406006],[115,-64,68,6.028587818145752],[115,-64,69,6.022512435913086],[115,-64,70,6.0178608894348145],[115,-64,71,6.014236927032471],[115,-64,72,6.0120463371276855],[115,-64,73,6.012378215789795],[115,-64,74,6.012474060058594],[115,-64,75,6.016749382019043],[115,-64,76,6.0334553718566895],[115,-64,77,6.058749198913574],[115,-64,78,6.076561450958252],[115,-64,79,6.080285549163818],[115,-63,64,6.030251979827881],[115,-63,65,6.037074565887451],[115,-63,66,6.038665294647217],[115,-63,67,6.034188747406006],[115,-63,68,6.028587818145752],[115,-63,69,6.022512435913086],[115,-63,70,6.0178608894348145],[115,-63,71,6.014236927032471],[115,-63,72,6.0120463371276855],[115,-63,73,6.012378215789795],[115,-63,74,6.012474060058594],[115,-63,75,6.016749382019043],[115,-63,76,6.0334553718566895],[115,-63,77,6.058749198913574],[115,-63,78,6.076561450958252],[115,-63,79,6.080285549163818],[115,-62,64,6.030251979827881],[115,-62,65,6.037074565887451],[115,-62,66,6.038665294647217],[115,-62,67,6.034188747406006],[115,-62,68,6.028587818145752],[115,-62,69,6.022512435913086],[115,-62,70,6.0178608894348145],[115,-62,71,6.014236927032471],[115,-62,72,6.0120463371276855],[115,-62,73,6.012378215789795],[115,-62,74,6.012474060058594],[115,-62,75,6.016749382019043],[115,-62,76,6.0334553718566895],[115,-62,77,6.058749198913574],[115,-62,78,6.076561450958252],[115,-62,79,6.080285549163818],[115,-61,64,6.030251979827881],[115,-61,65,6.037074565887451],[115,-61,66,6.038665294647217],[115,-61,67,6.034188747406006],[115,-61,68,6.028587818145752],[115,-61,69,6.022512435913086],[115,-61,70,6.0178608894348145],[115,-61,71,6.014236927032471],[115,-61,72,6.0120463371276855],[115,-61,73,6.012378215789795],[115,-61,74,6.012474060058594],[115,-61,75,6.016749382019043],[115,-61,76,6.0334553718566895],[115,-61,77,6.058749198913574],[115,-61,78,6.076561450958252],[115,-61,79,6.080285549163818],[115,-60,64,6.030251979827881],[115,-60,65,6.037074565887451],[115,-60,66,6.038665294647217],[115,-60,67,6.034188747406006],[115,-60,68,6.028587818145752],[115,-60,69,6.022512435913086],[115,-60,70,6.0178608894348145],[115,-60,71,6.014236927032471],[115,-60,72,6.0120463371276855],[115,-60,73,6.012378215789795],[115,-60,74,6.012474060058594],[115,-60,75,6.016749382019043],[115,-60,76,6.0334553718566895],[115,-60,77,6.058749198913574],[115,-60,78,6.076561450958252],[115,-60,79,6.080285549163818],[115,-59,64,6.030251979827881],[115,-59,65,6.037074565887451],[115,-59,66,6.038665294647217],[115,-59,67,6.034188747406006],[115,-59,68,6.028587818145752],[115,-59,69,6.022512435913086],[115,-59,70,6.0178608894348145],[115,-59,71,6.014236927032471],[115,-59,72,6.0120463371276855],[115,-59,73,6.012378215789795],[115,-59,74,6.012474060058594],[115,-59,75,6.016749382019043],[115,-59,76,6.0334553718566895],[115,-59,77,6.058749198913574],[115,-59,78,6.076561450958252],[115,-59,79,6.080285549163818],[115,-58,64,6.030251979827881],[115,-58,65,6.037074565887451],[115,-58,66,6.038665294647217],[115,-58,67,6.034188747406006],[115,-58,68,6.028587818145752],[115,-58,69,6.022512435913086],[115,-58,70,6.0178608894348145],[115,-58,71,6.014236927032471],[115,-58,72,6.0120463371276855],[115,-58,73,6.012378215789795],[115,-58,74,6.012474060058594],[115,-58,75,6.016749382019043],[115,-58,76,6.0334553718566895],[115,-58,77,6.058749198913574],[115,-58,78,6.076561450958252],[115,-58,79,6.080285549163818],[115,-57,64,6.030251979827881],[115,-57,65,6.037074565887451],[115,-57,66,6.038665294647217],[115,-57,67,6.034188747406006],[115,-57,68,6.028587818145752],[115,-57,69,6.022512435913086],[115,-57,70,6.0178608894348145],[115,-57,71,6.014236927032471],[115,-57,72,6.0120463371276855],[115,-57,73,6.012378215789795],[115,-57,74,6.012474060058594],[115,-57,75,6.016749382019043],[115,-57,76,6.0334553718566895],[115,-57,77,6.058749198913574],[115,-57,78,6.076561450958252],[115,-57,79,6.080285549163818],[115,-56,64,6.030251979827881],[115,-56,65,6.037074565887451],[115,-56,66,6.038665294647217],[115,-56,67,6.034188747406006],[115,-56,68,6.028587818145752],[115,-56,69,6.022512435913086],[115,-56,70,6.0178608894348145],[115,-56,71,6.014236927032471],[115,-56,72,6.0120463371276855],[115,-56,73,6.012378215789795],[115,-56,74,6.012474060058594],[115,-56,75,6.016749382019043],[115,-56,76,6.0334553718566895],[115,-56,77,6.058749198913574],[115,-56,78,6.076561450958252],[115,-56,79,6.080285549163818],[115,-55,64,6.030251979827881],[115,-55,65,6.037074565887451],[115,-55,66,6.038665294647217],[115,-55,67,6.034188747406006],[115,-55,68,6.028587818145752],[115,-55,69,6.022512435913086],[115,-55,70,6.0178608894348145],[115,-55,71,6.014236927032471],[115,-55,72,6.0120463371276855],[115,-55,73,6.012378215789795],[115,-55,74,6.012474060058594],[115,-55,75,6.016749382019043],[115,-55,76,6.0334553718566895],[115,-55,77,6.058749198913574],[115,-55,78,6.076561450958252],[115,-55,79,6.080285549163818],[115,-54,64,6.030251979827881],[115,-54,65,6.037074565887451],[115,-54,66,6.038665294647217],[115,-54,67,6.034188747406006],[115,-54,68,6.028587818145752],[115,-54,69,6.022512435913086],[115,-54,70,6.0178608894348145],[115,-54,71,6.014236927032471],[115,-54,72,6.0120463371276855],[115,-54,73,6.012378215789795],[115,-54,74,6.012474060058594],[115,-54,75,6.016749382019043],[115,-54,76,6.0334553718566895],[115,-54,77,6.058749198913574],[115,-54,78,6.076561450958252],[115,-54,79,6.080285549163818],[115,-53,64,6.030251979827881],[115,-53,65,6.037074565887451],[115,-53,66,6.038665294647217],[115,-53,67,6.034188747406006],[115,-53,68,6.028587818145752],[115,-53,69,6.022512435913086],[115,-53,70,6.0178608894348145],[115,-53,71,6.014236927032471],[115,-53,72,6.0120463371276855],[115,-53,73,6.012378215789795],[115,-53,74,6.012474060058594],[115,-53,75,6.016749382019043],[115,-53,76,6.0334553718566895],[115,-53,77,6.058749198913574],[115,-53,78,6.076561450958252],[115,-53,79,6.080285549163818],[115,-52,64,6.030251979827881],[115,-52,65,6.037074565887451],[115,-52,66,6.038665294647217],[115,-52,67,6.034188747406006],[115,-52,68,6.028587818145752],[115,-52,69,6.022512435913086],[115,-52,70,6.0178608894348145],[115,-52,71,6.014236927032471],[115,-52,72,6.0120463371276855],[115,-52,73,6.012378215789795],[115,-52,74,6.012474060058594],[115,-52,75,6.016749382019043],[115,-52,76,6.0334553718566895],[115,-52,77,6.058749198913574],[115,-52,78,6.076561450958252],[115,-52,79,6.080285549163818],[115,-51,64,6.030251979827881],[115,-51,65,6.037074565887451],[115,-51,66,6.038665294647217],[115,-51,67,6.034188747406006],[115,-51,68,6.028587818145752],[115,-51,69,6.022512435913086],[115,-51,70,6.0178608894348145],[115,-51,71,6.014236927032471],[115,-51,72,6.0120463371276855],[115,-51,73,6.012378215789795],[115,-51,74,6.012474060058594],[115,-51,75,6.016749382019043],[115,-51,76,6.0334553718566895],[115,-51,77,6.058749198913574],[115,-51,78,6.076561450958252],[115,-51,79,6.080285549163818],[115,-50,64,6.030251979827881],[115,-50,65,6.037074565887451],[115,-50,66,6.038665294647217],[115,-50,67,6.034188747406006],[115,-50,68,6.028587818145752],[115,-50,69,6.022512435913086],[115,-50,70,6.0178608894348145],[115,-50,71,6.014236927032471],[115,-50,72,6.0120463371276855],[115,-50,73,6.012378215789795],[115,-50,74,6.012474060058594],[115,-50,75,6.016749382019043],[115,-50,76,6.0334553718566895],[115,-50,77,6.058749198913574],[115,-50,78,6.076561450958252],[115,-50,79,6.080285549163818],[115,-49,64,6.030251979827881],[115,-49,65,6.037074565887451],[115,-49,66,6.038665294647217],[115,-49,67,6.034188747406006],[115,-49,68,6.028587818145752],[115,-49,69,6.022512435913086],[115,-49,70,6.0178608894348145],[115,-49,71,6.014236927032471],[115,-49,72,6.0120463371276855],[115,-49,73,6.012378215789795],[115,-49,74,6.012474060058594],[115,-49,75,6.016749382019043],[115,-49,76,6.0334553718566895],[115,-49,77,6.058749198913574],[115,-49,78,6.076561450958252],[115,-49,79,6.080285549163818],[115,-48,64,6.030251979827881],[115,-48,65,6.037074565887451],[115,-48,66,6.038665294647217],[115,-48,67,6.034188747406006],[115,-48,68,6.028587818145752],[115,-48,69,6.022512435913086],[115,-48,70,6.0178608894348145],[115,-48,71,6.014236927032471],[115,-48,72,6.0120463371276855],[115,-48,73,6.012378215789795],[115,-48,74,6.012474060058594],[115,-48,75,6.016749382019043],[115,-48,76,6.0334553718566895],[115,-48,77,6.058749198913574],[115,-48,78,6.076561450958252],[115,-48,79,6.080285549163818],[115,-47,64,6.030251979827881],[115,-47,65,6.037074565887451],[115,-47,66,6.038665294647217],[115,-47,67,6.034188747406006],[115,-47,68,6.028587818145752],[115,-47,69,6.022512435913086],[115,-47,70,6.0178608894348145],[115,-47,71,6.014236927032471],[115,-47,72,6.0120463371276855],[115,-47,73,6.012378215789795],[115,-47,74,6.012474060058594],[115,-47,75,6.016749382019043],[115,-47,76,6.0334553718566895],[115,-47,77,6.058749198913574],[115,-47,78,6.076561450958252],[115,-47,79,6.080285549163818],[115,-46,64,6.030251979827881],[115,-46,65,6.037074565887451],[115,-46,66,6.038665294647217],[115,-46,67,6.034188747406006],[115,-46,68,6.028587818145752],[115,-46,69,6.022512435913086],[115,-46,70,6.0178608894348145],[115,-46,71,6.014236927032471],[115,-46,72,6.0120463371276855],[115,-46,73,6.012378215789795],[115,-46,74,6.012474060058594],[115,-46,75,6.016749382019043],[115,-46,76,6.0334553718566895],[115,-46,77,6.058749198913574],[115,-46,78,6.076561450958252],[115,-46,79,6.080285549163818],[115,-45,64,6.030251979827881],[115,-45,65,6.037074565887451],[115,-45,66,6.038665294647217],[115,-45,67,6.034188747406006],[115,-45,68,6.028587818145752],[115,-45,69,6.022512435913086],[115,-45,70,6.0178608894348145],[115,-45,71,6.014236927032471],[115,-45,72,6.0120463371276855],[115,-45,73,6.012378215789795],[115,-45,74,6.012474060058594],[115,-45,75,6.016749382019043],[115,-45,76,6.0334553718566895],[115,-45,77,6.058749198913574],[115,-45,78,6.076561450958252],[115,-45,79,6.080285549163818],[115,-44,64,6.030251979827881],[115,-44,65,6.037074565887451],[115,-44,66,6.038665294647217],[115,-44,67,6.034188747406006],[115,-44,68,6.028587818145752],[115,-44,69,6.022512435913086],[115,-44,70,6.0178608894348145],[115,-44,71,6.014236927032471],[115,-44,72,6.0120463371276855],[115,-44,73,6.012378215789795],[115,-44,74,6.012474060058594],[115,-44,75,6.016749382019043],[115,-44,76,6.0334553718566895],[115,-44,77,6.058749198913574],[115,-44,78,6.076561450958252],[115,-44,79,6.080285549163818],[115,-43,64,6.030251979827881],[115,-43,65,6.037074565887451],[115,-43,66,6.038665294647217],[115,-43,67,6.034188747406006],[115,-43,68,6.028587818145752],[115,-43,69,6.022512435913086],[115,-43,70,6.0178608894348145],[115,-43,71,6.014236927032471],[115,-43,72,6.0120463371276855],[115,-43,73,6.012378215789795],[115,-43,74,6.012474060058594],[115,-43,75,6.016749382019043],[115,-43,76,6.0334553718566895],[115,-43,77,6.058749198913574],[115,-43,78,6.076561450958252],[115,-43,79,6.080285549163818],[115,-42,64,6.030251979827881],[115,-42,65,6.037074565887451],[115,-42,66,6.038665294647217],[115,-42,67,6.034188747406006],[115,-42,68,6.028587818145752],[115,-42,69,6.022512435913086],[115,-42,70,6.0178608894348145],[115,-42,71,6.014236927032471],[115,-42,72,6.0120463371276855],[115,-42,73,6.012378215789795],[115,-42,74,6.012474060058594],[115,-42,75,6.016749382019043],[115,-42,76,6.0334553718566895],[115,-42,77,6.058749198913574],[115,-42,78,6.076561450958252],[115,-42,79,6.080285549163818],[115,-41,64,6.030251979827881],[115,-41,65,6.037074565887451],[115,-41,66,6.038665294647217],[115,-41,67,6.034188747406006],[115,-41,68,6.028587818145752],[115,-41,69,6.022512435913086],[115,-41,70,6.0178608894348145],[115,-41,71,6.014236927032471],[115,-41,72,6.0120463371276855],[115,-41,73,6.012378215789795],[115,-41,74,6.012474060058594],[115,-41,75,6.016749382019043],[115,-41,76,6.0334553718566895],[115,-41,77,6.058749198913574],[115,-41,78,6.076561450958252],[115,-41,79,6.080285549163818],[115,-40,64,6.030251979827881],[115,-40,65,6.037074565887451],[115,-40,66,6.038665294647217],[115,-40,67,6.034188747406006],[115,-40,68,6.028587818145752],[115,-40,69,6.022512435913086],[115,-40,70,6.0178608894348145],[115,-40,71,6.014236927032471],[115,-40,72,6.0120463371276855],[115,-40,73,6.012378215789795],[115,-40,74,6.012474060058594],[115,-40,75,6.016749382019043],[115,-40,76,6.0334553718566895],[115,-40,77,6.058749198913574],[115,-40,78,6.076561450958252],[115,-40,79,6.080285549163818],[115,-39,64,6.030251979827881],[115,-39,65,6.037074565887451],[115,-39,66,6.038665294647217],[115,-39,67,6.034188747406006],[115,-39,68,6.028587818145752],[115,-39,69,6.022512435913086],[115,-39,70,6.0178608894348145],[115,-39,71,6.014236927032471],[115,-39,72,6.0120463371276855],[115,-39,73,6.012378215789795],[115,-39,74,6.012474060058594],[115,-39,75,6.016749382019043],[115,-39,76,6.0334553718566895],[115,-39,77,6.058749198913574],[115,-39,78,6.076561450958252],[115,-39,79,6.080285549163818],[115,-38,64,6.030251979827881],[115,-38,65,6.037074565887451],[115,-38,66,6.038665294647217],[115,-38,67,6.034188747406006],[115,-38,68,6.028587818145752],[115,-38,69,6.022512435913086],[115,-38,70,6.0178608894348145],[115,-38,71,6.014236927032471],[115,-38,72,6.0120463371276855],[115,-38,73,6.012378215789795],[115,-38,74,6.012474060058594],[115,-38,75,6.016749382019043],[115,-38,76,6.0334553718566895],[115,-38,77,6.058749198913574],[115,-38,78,6.076561450958252],[115,-38,79,6.080285549163818],[115,-37,64,6.030251979827881],[115,-37,65,6.037074565887451],[115,-37,66,6.038665294647217],[115,-37,67,6.034188747406006],[115,-37,68,6.028587818145752],[115,-37,69,6.022512435913086],[115,-37,70,6.0178608894348145],[115,-37,71,6.014236927032471],[115,-37,72,6.0120463371276855],[115,-37,73,6.012378215789795],[115,-37,74,6.012474060058594],[115,-37,75,6.016749382019043],[115,-37,76,6.0334553718566895],[115,-37,77,6.058749198913574],[115,-37,78,6.076561450958252],[115,-37,79,6.080285549163818],[115,-36,64,6.030251979827881],[115,-36,65,6.037074565887451],[115,-36,66,6.038665294647217],[115,-36,67,6.034188747406006],[115,-36,68,6.028587818145752],[115,-36,69,6.022512435913086],[115,-36,70,6.0178608894348145],[115,-36,71,6.014236927032471],[115,-36,72,6.0120463371276855],[115,-36,73,6.012378215789795],[115,-36,74,6.012474060058594],[115,-36,75,6.016749382019043],[115,-36,76,6.0334553718566895],[115,-36,77,6.058749198913574],[115,-36,78,6.076561450958252],[115,-36,79,6.080285549163818],[115,-35,64,6.030251979827881],[115,-35,65,6.037074565887451],[115,-35,66,6.038665294647217],[115,-35,67,6.034188747406006],[115,-35,68,6.028587818145752],[115,-35,69,6.022512435913086],[115,-35,70,6.0178608894348145],[115,-35,71,6.014236927032471],[115,-35,72,6.0120463371276855],[115,-35,73,6.012378215789795],[115,-35,74,6.012474060058594],[115,-35,75,6.016749382019043],[115,-35,76,6.0334553718566895],[115,-35,77,6.058749198913574],[115,-35,78,6.076561450958252],[115,-35,79,6.080285549163818],[115,-34,64,6.030251979827881],[115,-34,65,6.037074565887451],[115,-34,66,6.038665294647217],[115,-34,67,6.034188747406006],[115,-34,68,6.028587818145752],[115,-34,69,6.022512435913086],[115,-34,70,6.0178608894348145],[115,-34,71,6.014236927032471],[115,-34,72,6.0120463371276855],[115,-34,73,6.012378215789795],[115,-34,74,6.012474060058594],[115,-34,75,6.016749382019043],[115,-34,76,6.0334553718566895],[115,-34,77,6.058749198913574],[115,-34,78,6.076561450958252],[115,-34,79,6.080285549163818],[115,-33,64,6.030251979827881],[115,-33,65,6.037074565887451],[115,-33,66,6.038665294647217],[115,-33,67,6.034188747406006],[115,-33,68,6.028587818145752],[115,-33,69,6.022512435913086],[115,-33,70,6.0178608894348145],[115,-33,71,6.014236927032471],[115,-33,72,6.0120463371276855],[115,-33,73,6.012378215789795],[115,-33,74,6.012474060058594],[115,-33,75,6.016749382019043],[115,-33,76,6.0334553718566895],[115,-33,77,6.058749198913574],[115,-33,78,6.076561450958252],[115,-33,79,6.080285549163818],[115,-32,64,6.030251979827881],[115,-32,65,6.037074565887451],[115,-32,66,6.038665294647217],[115,-32,67,6.034188747406006],[115,-32,68,6.028587818145752],[115,-32,69,6.022512435913086],[115,-32,70,6.0178608894348145],[115,-32,71,6.014236927032471],[115,-32,72,6.0120463371276855],[115,-32,73,6.012378215789795],[115,-32,74,6.012474060058594],[115,-32,75,6.016749382019043],[115,-32,76,6.0334553718566895],[115,-32,77,6.058749198913574],[115,-32,78,6.076561450958252],[115,-32,79,6.080285549163818],[115,-31,64,6.030251979827881],[115,-31,65,6.037074565887451],[115,-31,66,6.038665294647217],[115,-31,67,6.034188747406006],[115,-31,68,6.028587818145752],[115,-31,69,6.022512435913086],[115,-31,70,6.0178608894348145],[115,-31,71,6.014236927032471],[115,-31,72,6.0120463371276855],[115,-31,73,6.012378215789795],[115,-31,74,6.012474060058594],[115,-31,75,6.016749382019043],[115,-31,76,6.0334553718566895],[115,-31,77,6.058749198913574],[115,-31,78,6.076561450958252],[115,-31,79,6.080285549163818],[115,-30,64,6.030251979827881],[115,-30,65,6.037074565887451],[115,-30,66,6.038665294647217],[115,-30,67,6.034188747406006],[115,-30,68,6.028587818145752],[115,-30,69,6.022512435913086],[115,-30,70,6.0178608894348145],[115,-30,71,6.014236927032471],[115,-30,72,6.0120463371276855],[115,-30,73,6.012378215789795],[115,-30,74,6.012474060058594],[115,-30,75,6.016749382019043],[115,-30,76,6.0334553718566895],[115,-30,77,6.058749198913574],[115,-30,78,6.076561450958252],[115,-30,79,6.080285549163818],[115,-29,64,6.030251979827881],[115,-29,65,6.037074565887451],[115,-29,66,6.038665294647217],[115,-29,67,6.034188747406006],[115,-29,68,6.028587818145752],[115,-29,69,6.022512435913086],[115,-29,70,6.0178608894348145],[115,-29,71,6.014236927032471],[115,-29,72,6.0120463371276855],[115,-29,73,6.012378215789795],[115,-29,74,6.012474060058594],[115,-29,75,6.016749382019043],[115,-29,76,6.0334553718566895],[115,-29,77,6.058749198913574],[115,-29,78,6.076561450958252],[115,-29,79,6.080285549163818],[115,-28,64,6.030251979827881],[115,-28,65,6.037074565887451],[115,-28,66,6.038665294647217],[115,-28,67,6.034188747406006],[115,-28,68,6.028587818145752],[115,-28,69,6.022512435913086],[115,-28,70,6.0178608894348145],[115,-28,71,6.014236927032471],[115,-28,72,6.0120463371276855],[115,-28,73,6.012378215789795],[115,-28,74,6.012474060058594],[115,-28,75,6.016749382019043],[115,-28,76,6.0334553718566895],[115,-28,77,6.058749198913574],[115,-28,78,6.076561450958252],[115,-28,79,6.080285549163818],[115,-27,64,6.030251979827881],[115,-27,65,6.037074565887451],[115,-27,66,6.038665294647217],[115,-27,67,6.034188747406006],[115,-27,68,6.028587818145752],[115,-27,69,6.022512435913086],[115,-27,70,6.0178608894348145],[115,-27,71,6.014236927032471],[115,-27,72,6.0120463371276855],[115,-27,73,6.012378215789795],[115,-27,74,6.012474060058594],[115,-27,75,6.016749382019043],[115,-27,76,6.0334553718566895],[115,-27,77,6.058749198913574],[115,-27,78,6.076561450958252],[115,-27,79,6.080285549163818],[115,-26,64,6.030251979827881],[115,-26,65,6.037074565887451],[115,-26,66,6.038665294647217],[115,-26,67,6.034188747406006],[115,-26,68,6.028587818145752],[115,-26,69,6.022512435913086],[115,-26,70,6.0178608894348145],[115,-26,71,6.014236927032471],[115,-26,72,6.0120463371276855],[115,-26,73,6.012378215789795],[115,-26,74,6.012474060058594],[115,-26,75,6.016749382019043],[115,-26,76,6.0334553718566895],[115,-26,77,6.058749198913574],[115,-26,78,6.076561450958252],[115,-26,79,6.080285549163818],[115,-25,64,6.030251979827881],[115,-25,65,6.037074565887451],[115,-25,66,6.038665294647217],[115,-25,67,6.034188747406006],[115,-25,68,6.028587818145752],[115,-25,69,6.022512435913086],[115,-25,70,6.0178608894348145],[115,-25,71,6.014236927032471],[115,-25,72,6.0120463371276855],[115,-25,73,6.012378215789795],[115,-25,74,6.012474060058594],[115,-25,75,6.016749382019043],[115,-25,76,6.0334553718566895],[115,-25,77,6.058749198913574],[115,-25,78,6.076561450958252],[115,-25,79,6.080285549163818],[115,-24,64,6.030251979827881],[115,-24,65,6.037074565887451],[115,-24,66,6.038665294647217],[115,-24,67,6.034188747406006],[115,-24,68,6.028587818145752],[115,-24,69,6.022512435913086],[115,-24,70,6.0178608894348145],[115,-24,71,6.014236927032471],[115,-24,72,6.0120463371276855],[115,-24,73,6.012378215789795],[115,-24,74,6.012474060058594],[115,-24,75,6.016749382019043],[115,-24,76,6.0334553718566895],[115,-24,77,6.058749198913574],[115,-24,78,6.076561450958252],[115,-24,79,6.080285549163818],[115,-23,64,6.030251979827881],[115,-23,65,6.037074565887451],[115,-23,66,6.038665294647217],[115,-23,67,6.034188747406006],[115,-23,68,6.028587818145752],[115,-23,69,6.022512435913086],[115,-23,70,6.0178608894348145],[115,-23,71,6.014236927032471],[115,-23,72,6.0120463371276855],[115,-23,73,6.012378215789795],[115,-23,74,6.012474060058594],[115,-23,75,6.016749382019043],[115,-23,76,6.0334553718566895],[115,-23,77,6.058749198913574],[115,-23,78,6.076561450958252],[115,-23,79,6.080285549163818],[115,-22,64,6.030251979827881],[115,-22,65,6.037074565887451],[115,-22,66,6.038665294647217],[115,-22,67,6.034188747406006],[115,-22,68,6.028587818145752],[115,-22,69,6.022512435913086],[115,-22,70,6.0178608894348145],[115,-22,71,6.014236927032471],[115,-22,72,6.0120463371276855],[115,-22,73,6.012378215789795],[115,-22,74,6.012474060058594],[115,-22,75,6.016749382019043],[115,-22,76,6.0334553718566895],[115,-22,77,6.058749198913574],[115,-22,78,6.076561450958252],[115,-22,79,6.080285549163818],[115,-21,64,6.030251979827881],[115,-21,65,6.037074565887451],[115,-21,66,6.038665294647217],[115,-21,67,6.034188747406006],[115,-21,68,6.028587818145752],[115,-21,69,6.022512435913086],[115,-21,70,6.0178608894348145],[115,-21,71,6.014236927032471],[115,-21,72,6.0120463371276855],[115,-21,73,6.012378215789795],[115,-21,74,6.012474060058594],[115,-21,75,6.016749382019043],[115,-21,76,6.0334553718566895],[115,-21,77,6.058749198913574],[115,-21,78,6.076561450958252],[115,-21,79,6.080285549163818],[115,-20,64,6.030251979827881],[115,-20,65,6.037074565887451],[115,-20,66,6.038665294647217],[115,-20,67,6.034188747406006],[115,-20,68,6.028587818145752],[115,-20,69,6.022512435913086],[115,-20,70,6.0178608894348145],[115,-20,71,6.014236927032471],[115,-20,72,6.0120463371276855],[115,-20,73,6.012378215789795],[115,-20,74,6.012474060058594],[115,-20,75,6.016749382019043],[115,-20,76,6.0334553718566895],[115,-20,77,6.058749198913574],[115,-20,78,6.076561450958252],[115,-20,79,6.080285549163818],[115,-19,64,6.030251979827881],[115,-19,65,6.037074565887451],[115,-19,66,6.038665294647217],[115,-19,67,6.034188747406006],[115,-19,68,6.028587818145752],[115,-19,69,6.022512435913086],[115,-19,70,6.0178608894348145],[115,-19,71,6.014236927032471],[115,-19,72,6.0120463371276855],[115,-19,73,6.012378215789795],[115,-19,74,6.012474060058594],[115,-19,75,6.016749382019043],[115,-19,76,6.0334553718566895],[115,-19,77,6.058749198913574],[115,-19,78,6.076561450958252],[115,-19,79,6.080285549163818],[115,-18,64,6.030251979827881],[115,-18,65,6.037074565887451],[115,-18,66,6.038665294647217],[115,-18,67,6.034188747406006],[115,-18,68,6.028587818145752],[115,-18,69,6.022512435913086],[115,-18,70,6.0178608894348145],[115,-18,71,6.014236927032471],[115,-18,72,6.0120463371276855],[115,-18,73,6.012378215789795],[115,-18,74,6.012474060058594],[115,-18,75,6.016749382019043],[115,-18,76,6.0334553718566895],[115,-18,77,6.058749198913574],[115,-18,78,6.076561450958252],[115,-18,79,6.080285549163818],[115,-17,64,6.030251979827881],[115,-17,65,6.037074565887451],[115,-17,66,6.038665294647217],[115,-17,67,6.034188747406006],[115,-17,68,6.028587818145752],[115,-17,69,6.022512435913086],[115,-17,70,6.0178608894348145],[115,-17,71,6.014236927032471],[115,-17,72,6.0120463371276855],[115,-17,73,6.012378215789795],[115,-17,74,6.012474060058594],[115,-17,75,6.016749382019043],[115,-17,76,6.0334553718566895],[115,-17,77,6.058749198913574],[115,-17,78,6.076561450958252],[115,-17,79,6.080285549163818],[115,-16,64,6.030251979827881],[115,-16,65,6.037074565887451],[115,-16,66,6.038665294647217],[115,-16,67,6.034188747406006],[115,-16,68,6.028587818145752],[115,-16,69,6.022512435913086],[115,-16,70,6.0178608894348145],[115,-16,71,6.014236927032471],[115,-16,72,6.0120463371276855],[115,-16,73,6.012378215789795],[115,-16,74,6.012474060058594],[115,-16,75,6.016749382019043],[115,-16,76,6.0334553718566895],[115,-16,77,6.058749198913574],[115,-16,78,6.076561450958252],[115,-16,79,6.080285549163818],[115,-15,64,6.030251979827881],[115,-15,65,6.037074565887451],[115,-15,66,6.038665294647217],[115,-15,67,6.034188747406006],[115,-15,68,6.028587818145752],[115,-15,69,6.022512435913086],[115,-15,70,6.0178608894348145],[115,-15,71,6.014236927032471],[115,-15,72,6.0120463371276855],[115,-15,73,6.012378215789795],[115,-15,74,6.012474060058594],[115,-15,75,6.016749382019043],[115,-15,76,6.0334553718566895],[115,-15,77,6.058749198913574],[115,-15,78,6.076561450958252],[115,-15,79,6.080285549163818],[115,-14,64,6.030251979827881],[115,-14,65,6.037074565887451],[115,-14,66,6.038665294647217],[115,-14,67,6.034188747406006],[115,-14,68,6.028587818145752],[115,-14,69,6.022512435913086],[115,-14,70,6.0178608894348145],[115,-14,71,6.014236927032471],[115,-14,72,6.0120463371276855],[115,-14,73,6.012378215789795],[115,-14,74,6.012474060058594],[115,-14,75,6.016749382019043],[115,-14,76,6.0334553718566895],[115,-14,77,6.058749198913574],[115,-14,78,6.076561450958252],[115,-14,79,6.080285549163818],[115,-13,64,6.030251979827881],[115,-13,65,6.037074565887451],[115,-13,66,6.038665294647217],[115,-13,67,6.034188747406006],[115,-13,68,6.028587818145752],[115,-13,69,6.022512435913086],[115,-13,70,6.0178608894348145],[115,-13,71,6.014236927032471],[115,-13,72,6.0120463371276855],[115,-13,73,6.012378215789795],[115,-13,74,6.012474060058594],[115,-13,75,6.016749382019043],[115,-13,76,6.0334553718566895],[115,-13,77,6.058749198913574],[115,-13,78,6.076561450958252],[115,-13,79,6.080285549163818],[115,-12,64,6.030251979827881],[115,-12,65,6.037074565887451],[115,-12,66,6.038665294647217],[115,-12,67,6.034188747406006],[115,-12,68,6.028587818145752],[115,-12,69,6.022512435913086],[115,-12,70,6.0178608894348145],[115,-12,71,6.014236927032471],[115,-12,72,6.0120463371276855],[115,-12,73,6.012378215789795],[115,-12,74,6.012474060058594],[115,-12,75,6.016749382019043],[115,-12,76,6.0334553718566895],[115,-12,77,6.058749198913574],[115,-12,78,6.076561450958252],[115,-12,79,6.080285549163818],[115,-11,64,6.030251979827881],[115,-11,65,6.037074565887451],[115,-11,66,6.038665294647217],[115,-11,67,6.034188747406006],[115,-11,68,6.028587818145752],[115,-11,69,6.022512435913086],[115,-11,70,6.0178608894348145],[115,-11,71,6.014236927032471],[115,-11,72,6.0120463371276855],[115,-11,73,6.012378215789795],[115,-11,74,6.012474060058594],[115,-11,75,6.016749382019043],[115,-11,76,6.0334553718566895],[115,-11,77,6.058749198913574],[115,-11,78,6.076561450958252],[115,-11,79,6.080285549163818],[115,-10,64,6.030251979827881],[115,-10,65,6.037074565887451],[115,-10,66,6.038665294647217],[115,-10,67,6.034188747406006],[115,-10,68,6.028587818145752],[115,-10,69,6.022512435913086],[115,-10,70,6.0178608894348145],[115,-10,71,6.014236927032471],[115,-10,72,6.0120463371276855],[115,-10,73,6.012378215789795],[115,-10,74,6.012474060058594],[115,-10,75,6.016749382019043],[115,-10,76,6.0334553718566895],[115,-10,77,6.058749198913574],[115,-10,78,6.076561450958252],[115,-10,79,6.080285549163818],[115,-9,64,6.030251979827881],[115,-9,65,6.037074565887451],[115,-9,66,6.038665294647217],[115,-9,67,6.034188747406006],[115,-9,68,6.028587818145752],[115,-9,69,6.022512435913086],[115,-9,70,6.0178608894348145],[115,-9,71,6.014236927032471],[115,-9,72,6.0120463371276855],[115,-9,73,6.012378215789795],[115,-9,74,6.012474060058594],[115,-9,75,6.016749382019043],[115,-9,76,6.0334553718566895],[115,-9,77,6.058749198913574],[115,-9,78,6.076561450958252],[115,-9,79,6.080285549163818],[115,-8,64,6.030251979827881],[115,-8,65,6.037074565887451],[115,-8,66,6.038665294647217],[115,-8,67,6.034188747406006],[115,-8,68,6.028587818145752],[115,-8,69,6.022512435913086],[115,-8,70,6.0178608894348145],[115,-8,71,6.014236927032471],[115,-8,72,6.0120463371276855],[115,-8,73,6.012378215789795],[115,-8,74,6.012474060058594],[115,-8,75,6.016749382019043],[115,-8,76,6.0334553718566895],[115,-8,77,6.058749198913574],[115,-8,78,6.076561450958252],[115,-8,79,6.080285549163818],[115,-7,64,6.030251979827881],[115,-7,65,6.037074565887451],[115,-7,66,6.038665294647217],[115,-7,67,6.034188747406006],[115,-7,68,6.028587818145752],[115,-7,69,6.022512435913086],[115,-7,70,6.0178608894348145],[115,-7,71,6.014236927032471],[115,-7,72,6.0120463371276855],[115,-7,73,6.012378215789795],[115,-7,74,6.012474060058594],[115,-7,75,6.016749382019043],[115,-7,76,6.0334553718566895],[115,-7,77,6.058749198913574],[115,-7,78,6.076561450958252],[115,-7,79,6.080285549163818],[115,-6,64,6.030251979827881],[115,-6,65,6.037074565887451],[115,-6,66,6.038665294647217],[115,-6,67,6.034188747406006],[115,-6,68,6.028587818145752],[115,-6,69,6.022512435913086],[115,-6,70,6.0178608894348145],[115,-6,71,6.014236927032471],[115,-6,72,6.0120463371276855],[115,-6,73,6.012378215789795],[115,-6,74,6.012474060058594],[115,-6,75,6.016749382019043],[115,-6,76,6.0334553718566895],[115,-6,77,6.058749198913574],[115,-6,78,6.076561450958252],[115,-6,79,6.080285549163818],[115,-5,64,6.030251979827881],[115,-5,65,6.037074565887451],[115,-5,66,6.038665294647217],[115,-5,67,6.034188747406006],[115,-5,68,6.028587818145752],[115,-5,69,6.022512435913086],[115,-5,70,6.0178608894348145],[115,-5,71,6.014236927032471],[115,-5,72,6.0120463371276855],[115,-5,73,6.012378215789795],[115,-5,74,6.012474060058594],[115,-5,75,6.016749382019043],[115,-5,76,6.0334553718566895],[115,-5,77,6.058749198913574],[115,-5,78,6.076561450958252],[115,-5,79,6.080285549163818],[115,-4,64,6.030251979827881],[115,-4,65,6.037074565887451],[115,-4,66,6.038665294647217],[115,-4,67,6.034188747406006],[115,-4,68,6.028587818145752],[115,-4,69,6.022512435913086],[115,-4,70,6.0178608894348145],[115,-4,71,6.014236927032471],[115,-4,72,6.0120463371276855],[115,-4,73,6.012378215789795],[115,-4,74,6.012474060058594],[115,-4,75,6.016749382019043],[115,-4,76,6.0334553718566895],[115,-4,77,6.058749198913574],[115,-4,78,6.076561450958252],[115,-4,79,6.080285549163818],[115,-3,64,6.030251979827881],[115,-3,65,6.037074565887451],[115,-3,66,6.038665294647217],[115,-3,67,6.034188747406006],[115,-3,68,6.028587818145752],[115,-3,69,6.022512435913086],[115,-3,70,6.0178608894348145],[115,-3,71,6.014236927032471],[115,-3,72,6.0120463371276855],[115,-3,73,6.012378215789795],[115,-3,74,6.012474060058594],[115,-3,75,6.016749382019043],[115,-3,76,6.0334553718566895],[115,-3,77,6.058749198913574],[115,-3,78,6.076561450958252],[115,-3,79,6.080285549163818],[115,-2,64,6.030251979827881],[115,-2,65,6.037074565887451],[115,-2,66,6.038665294647217],[115,-2,67,6.034188747406006],[115,-2,68,6.028587818145752],[115,-2,69,6.022512435913086],[115,-2,70,6.0178608894348145],[115,-2,71,6.014236927032471],[115,-2,72,6.0120463371276855],[115,-2,73,6.012378215789795],[115,-2,74,6.012474060058594],[115,-2,75,6.016749382019043],[115,-2,76,6.0334553718566895],[115,-2,77,6.058749198913574],[115,-2,78,6.076561450958252],[115,-2,79,6.080285549163818],[115,-1,64,6.030251979827881],[115,-1,65,6.037074565887451],[115,-1,66,6.038665294647217],[115,-1,67,6.034188747406006],[115,-1,68,6.028587818145752],[115,-1,69,6.022512435913086],[115,-1,70,6.0178608894348145],[115,-1,71,6.014236927032471],[115,-1,72,6.0120463371276855],[115,-1,73,6.012378215789795],[115,-1,74,6.012474060058594],[115,-1,75,6.016749382019043],[115,-1,76,6.0334553718566895],[115,-1,77,6.058749198913574],[115,-1,78,6.076561450958252],[115,-1,79,6.080285549163818],[115,0,64,6.030251979827881],[115,0,65,6.037074565887451],[115,0,66,6.038665294647217],[115,0,67,6.034188747406006],[115,0,68,6.028587818145752],[115,0,69,6.022512435913086],[115,0,70,6.0178608894348145],[115,0,71,6.014236927032471],[115,0,72,6.0120463371276855],[115,0,73,6.012378215789795],[115,0,74,6.012474060058594],[115,0,75,6.016749382019043],[115,0,76,6.0334553718566895],[115,0,77,6.058749198913574],[115,0,78,6.076561450958252],[115,0,79,6.080285549163818],[115,1,64,6.030251979827881],[115,1,65,6.037074565887451],[115,1,66,6.038665294647217],[115,1,67,6.034188747406006],[115,1,68,6.028587818145752],[115,1,69,6.022512435913086],[115,1,70,6.0178608894348145],[115,1,71,6.014236927032471],[115,1,72,6.0120463371276855],[115,1,73,6.012378215789795],[115,1,74,6.012474060058594],[115,1,75,6.016749382019043],[115,1,76,6.0334553718566895],[115,1,77,6.058749198913574],[115,1,78,6.076561450958252],[115,1,79,6.080285549163818],[115,2,64,6.030251979827881],[115,2,65,6.037074565887451],[115,2,66,6.038665294647217],[115,2,67,6.034188747406006],[115,2,68,6.028587818145752],[115,2,69,6.022512435913086],[115,2,70,6.0178608894348145],[115,2,71,6.014236927032471],[115,2,72,6.0120463371276855],[115,2,73,6.012378215789795],[115,2,74,6.012474060058594],[115,2,75,6.016749382019043],[115,2,76,6.0334553718566895],[115,2,77,6.058749198913574],[115,2,78,6.076561450958252],[115,2,79,6.080285549163818],[115,3,64,6.030251979827881],[115,3,65,6.037074565887451],[115,3,66,6.038665294647217],[115,3,67,6.034188747406006],[115,3,68,6.028587818145752],[115,3,69,6.022512435913086],[115,3,70,6.0178608894348145],[115,3,71,6.014236927032471],[115,3,72,6.0120463371276855],[115,3,73,6.012378215789795],[115,3,74,6.012474060058594],[115,3,75,6.016749382019043],[115,3,76,6.0334553718566895],[115,3,77,6.058749198913574],[115,3,78,6.076561450958252],[115,3,79,6.080285549163818],[115,4,64,6.030251979827881],[115,4,65,6.037074565887451],[115,4,66,6.038665294647217],[115,4,67,6.034188747406006],[115,4,68,6.028587818145752],[115,4,69,6.022512435913086],[115,4,70,6.0178608894348145],[115,4,71,6.014236927032471],[115,4,72,6.0120463371276855],[115,4,73,6.012378215789795],[115,4,74,6.012474060058594],[115,4,75,6.016749382019043],[115,4,76,6.0334553718566895],[115,4,77,6.058749198913574],[115,4,78,6.076561450958252],[115,4,79,6.080285549163818],[115,5,64,6.030251979827881],[115,5,65,6.037074565887451],[115,5,66,6.038665294647217],[115,5,67,6.034188747406006],[115,5,68,6.028587818145752],[115,5,69,6.022512435913086],[115,5,70,6.0178608894348145],[115,5,71,6.014236927032471],[115,5,72,6.0120463371276855],[115,5,73,6.012378215789795],[115,5,74,6.012474060058594],[115,5,75,6.016749382019043],[115,5,76,6.0334553718566895],[115,5,77,6.058749198913574],[115,5,78,6.076561450958252],[115,5,79,6.080285549163818],[115,6,64,6.030251979827881],[115,6,65,6.037074565887451],[115,6,66,6.038665294647217],[115,6,67,6.034188747406006],[115,6,68,6.028587818145752],[115,6,69,6.022512435913086],[115,6,70,6.0178608894348145],[115,6,71,6.014236927032471],[115,6,72,6.0120463371276855],[115,6,73,6.012378215789795],[115,6,74,6.012474060058594],[115,6,75,6.016749382019043],[115,6,76,6.0334553718566895],[115,6,77,6.058749198913574],[115,6,78,6.076561450958252],[115,6,79,6.080285549163818],[115,7,64,6.030251979827881],[115,7,65,6.037074565887451],[115,7,66,6.038665294647217],[115,7,67,6.034188747406006],[115,7,68,6.028587818145752],[115,7,69,6.022512435913086],[115,7,70,6.0178608894348145],[115,7,71,6.014236927032471],[115,7,72,6.0120463371276855],[115,7,73,6.012378215789795],[115,7,74,6.012474060058594],[115,7,75,6.016749382019043],[115,7,76,6.0334553718566895],[115,7,77,6.058749198913574],[115,7,78,6.076561450958252],[115,7,79,6.080285549163818],[115,8,64,6.030251979827881],[115,8,65,6.037074565887451],[115,8,66,6.038665294647217],[115,8,67,6.034188747406006],[115,8,68,6.028587818145752],[115,8,69,6.022512435913086],[115,8,70,6.0178608894348145],[115,8,71,6.014236927032471],[115,8,72,6.0120463371276855],[115,8,73,6.012378215789795],[115,8,74,6.012474060058594],[115,8,75,6.016749382019043],[115,8,76,6.0334553718566895],[115,8,77,6.058749198913574],[115,8,78,6.076561450958252],[115,8,79,6.080285549163818],[115,9,64,6.030251979827881],[115,9,65,6.037074565887451],[115,9,66,6.038665294647217],[115,9,67,6.034188747406006],[115,9,68,6.028587818145752],[115,9,69,6.022512435913086],[115,9,70,6.0178608894348145],[115,9,71,6.014236927032471],[115,9,72,6.0120463371276855],[115,9,73,6.012378215789795],[115,9,74,6.012474060058594],[115,9,75,6.016749382019043],[115,9,76,6.0334553718566895],[115,9,77,6.058749198913574],[115,9,78,6.076561450958252],[115,9,79,6.080285549163818],[115,10,64,6.030251979827881],[115,10,65,6.037074565887451],[115,10,66,6.038665294647217],[115,10,67,6.034188747406006],[115,10,68,6.028587818145752],[115,10,69,6.022512435913086],[115,10,70,6.0178608894348145],[115,10,71,6.014236927032471],[115,10,72,6.0120463371276855],[115,10,73,6.012378215789795],[115,10,74,6.012474060058594],[115,10,75,6.016749382019043],[115,10,76,6.0334553718566895],[115,10,77,6.058749198913574],[115,10,78,6.076561450958252],[115,10,79,6.080285549163818],[115,11,64,6.030251979827881],[115,11,65,6.037074565887451],[115,11,66,6.038665294647217],[115,11,67,6.034188747406006],[115,11,68,6.028587818145752],[115,11,69,6.022512435913086],[115,11,70,6.0178608894348145],[115,11,71,6.014236927032471],[115,11,72,6.0120463371276855],[115,11,73,6.012378215789795],[115,11,74,6.012474060058594],[115,11,75,6.016749382019043],[115,11,76,6.0334553718566895],[115,11,77,6.058749198913574],[115,11,78,6.076561450958252],[115,11,79,6.080285549163818],[115,12,64,6.030251979827881],[115,12,65,6.037074565887451],[115,12,66,6.038665294647217],[115,12,67,6.034188747406006],[115,12,68,6.028587818145752],[115,12,69,6.022512435913086],[115,12,70,6.0178608894348145],[115,12,71,6.014236927032471],[115,12,72,6.0120463371276855],[115,12,73,6.012378215789795],[115,12,74,6.012474060058594],[115,12,75,6.016749382019043],[115,12,76,6.0334553718566895],[115,12,77,6.058749198913574],[115,12,78,6.076561450958252],[115,12,79,6.080285549163818],[115,13,64,6.030251979827881],[115,13,65,6.037074565887451],[115,13,66,6.038665294647217],[115,13,67,6.034188747406006],[115,13,68,6.028587818145752],[115,13,69,6.022512435913086],[115,13,70,6.0178608894348145],[115,13,71,6.014236927032471],[115,13,72,6.0120463371276855],[115,13,73,6.012378215789795],[115,13,74,6.012474060058594],[115,13,75,6.016749382019043],[115,13,76,6.0334553718566895],[115,13,77,6.058749198913574],[115,13,78,6.076561450958252],[115,13,79,6.080285549163818],[115,14,64,6.030251979827881],[115,14,65,6.037074565887451],[115,14,66,6.038665294647217],[115,14,67,6.034188747406006],[115,14,68,6.028587818145752],[115,14,69,6.022512435913086],[115,14,70,6.0178608894348145],[115,14,71,6.014236927032471],[115,14,72,6.0120463371276855],[115,14,73,6.012378215789795],[115,14,74,6.012474060058594],[115,14,75,6.016749382019043],[115,14,76,6.0334553718566895],[115,14,77,6.058749198913574],[115,14,78,6.076561450958252],[115,14,79,6.080285549163818],[115,15,64,6.030251979827881],[115,15,65,6.037074565887451],[115,15,66,6.038665294647217],[115,15,67,6.034188747406006],[115,15,68,6.028587818145752],[115,15,69,6.022512435913086],[115,15,70,6.0178608894348145],[115,15,71,6.014236927032471],[115,15,72,6.0120463371276855],[115,15,73,6.012378215789795],[115,15,74,6.012474060058594],[115,15,75,6.016749382019043],[115,15,76,6.0334553718566895],[115,15,77,6.058749198913574],[115,15,78,6.076561450958252],[115,15,79,6.080285549163818],[115,16,64,6.030251979827881],[115,16,65,6.037074565887451],[115,16,66,6.038665294647217],[115,16,67,6.034188747406006],[115,16,68,6.028587818145752],[115,16,69,6.022512435913086],[115,16,70,6.0178608894348145],[115,16,71,6.014236927032471],[115,16,72,6.0120463371276855],[115,16,73,6.012378215789795],[115,16,74,6.012474060058594],[115,16,75,6.016749382019043],[115,16,76,6.0334553718566895],[115,16,77,6.058749198913574],[115,16,78,6.076561450958252],[115,16,79,6.080285549163818],[115,17,64,6.030251979827881],[115,17,65,6.037074565887451],[115,17,66,6.038665294647217],[115,17,67,6.034188747406006],[115,17,68,6.028587818145752],[115,17,69,6.022512435913086],[115,17,70,6.0178608894348145],[115,17,71,6.014236927032471],[115,17,72,6.0120463371276855],[115,17,73,6.012378215789795],[115,17,74,6.012474060058594],[115,17,75,6.016749382019043],[115,17,76,6.0334553718566895],[115,17,77,6.058749198913574],[115,17,78,6.076561450958252],[115,17,79,6.080285549163818],[115,18,64,6.030251979827881],[115,18,65,6.037074565887451],[115,18,66,6.038665294647217],[115,18,67,6.034188747406006],[115,18,68,6.028587818145752],[115,18,69,6.022512435913086],[115,18,70,6.0178608894348145],[115,18,71,6.014236927032471],[115,18,72,6.0120463371276855],[115,18,73,6.012378215789795],[115,18,74,6.012474060058594],[115,18,75,6.016749382019043],[115,18,76,6.0334553718566895],[115,18,77,6.058749198913574],[115,18,78,6.076561450958252],[115,18,79,6.080285549163818],[115,19,64,6.030251979827881],[115,19,65,6.037074565887451],[115,19,66,6.038665294647217],[115,19,67,6.034188747406006],[115,19,68,6.028587818145752],[115,19,69,6.022512435913086],[115,19,70,6.0178608894348145],[115,19,71,6.014236927032471],[115,19,72,6.0120463371276855],[115,19,73,6.012378215789795],[115,19,74,6.012474060058594],[115,19,75,6.016749382019043],[115,19,76,6.0334553718566895],[115,19,77,6.058749198913574],[115,19,78,6.076561450958252],[115,19,79,6.080285549163818],[115,20,64,6.030251979827881],[115,20,65,6.037074565887451],[115,20,66,6.038665294647217],[115,20,67,6.034188747406006],[115,20,68,6.028587818145752],[115,20,69,6.022512435913086],[115,20,70,6.0178608894348145],[115,20,71,6.014236927032471],[115,20,72,6.0120463371276855],[115,20,73,6.012378215789795],[115,20,74,6.012474060058594],[115,20,75,6.016749382019043],[115,20,76,6.0334553718566895],[115,20,77,6.058749198913574],[115,20,78,6.076561450958252],[115,20,79,6.080285549163818],[115,21,64,6.030251979827881],[115,21,65,6.037074565887451],[115,21,66,6.038665294647217],[115,21,67,6.034188747406006],[115,21,68,6.028587818145752],[115,21,69,6.022512435913086],[115,21,70,6.0178608894348145],[115,21,71,6.014236927032471],[115,21,72,6.0120463371276855],[115,21,73,6.012378215789795],[115,21,74,6.012474060058594],[115,21,75,6.016749382019043],[115,21,76,6.0334553718566895],[115,21,77,6.058749198913574],[115,21,78,6.076561450958252],[115,21,79,6.080285549163818],[115,22,64,6.030251979827881],[115,22,65,6.037074565887451],[115,22,66,6.038665294647217],[115,22,67,6.034188747406006],[115,22,68,6.028587818145752],[115,22,69,6.022512435913086],[115,22,70,6.0178608894348145],[115,22,71,6.014236927032471],[115,22,72,6.0120463371276855],[115,22,73,6.012378215789795],[115,22,74,6.012474060058594],[115,22,75,6.016749382019043],[115,22,76,6.0334553718566895],[115,22,77,6.058749198913574],[115,22,78,6.076561450958252],[115,22,79,6.080285549163818],[115,23,64,6.030251979827881],[115,23,65,6.037074565887451],[115,23,66,6.038665294647217],[115,23,67,6.034188747406006],[115,23,68,6.028587818145752],[115,23,69,6.022512435913086],[115,23,70,6.0178608894348145],[115,23,71,6.014236927032471],[115,23,72,6.0120463371276855],[115,23,73,6.012378215789795],[115,23,74,6.012474060058594],[115,23,75,6.016749382019043],[115,23,76,6.0334553718566895],[115,23,77,6.058749198913574],[115,23,78,6.076561450958252],[115,23,79,6.080285549163818],[115,24,64,6.030251979827881],[115,24,65,6.037074565887451],[115,24,66,6.038665294647217],[115,24,67,6.034188747406006],[115,24,68,6.028587818145752],[115,24,69,6.022512435913086],[115,24,70,6.0178608894348145],[115,24,71,6.014236927032471],[115,24,72,6.0120463371276855],[115,24,73,6.012378215789795],[115,24,74,6.012474060058594],[115,24,75,6.016749382019043],[115,24,76,6.0334553718566895],[115,24,77,6.058749198913574],[115,24,78,6.076561450958252],[115,24,79,6.080285549163818],[115,25,64,6.030251979827881],[115,25,65,6.037074565887451],[115,25,66,6.038665294647217],[115,25,67,6.034188747406006],[115,25,68,6.028587818145752],[115,25,69,6.022512435913086],[115,25,70,6.0178608894348145],[115,25,71,6.014236927032471],[115,25,72,6.0120463371276855],[115,25,73,6.012378215789795],[115,25,74,6.012474060058594],[115,25,75,6.016749382019043],[115,25,76,6.0334553718566895],[115,25,77,6.058749198913574],[115,25,78,6.076561450958252],[115,25,79,6.080285549163818],[115,26,64,6.030251979827881],[115,26,65,6.037074565887451],[115,26,66,6.038665294647217],[115,26,67,6.034188747406006],[115,26,68,6.028587818145752],[115,26,69,6.022512435913086],[115,26,70,6.0178608894348145],[115,26,71,6.014236927032471],[115,26,72,6.0120463371276855],[115,26,73,6.012378215789795],[115,26,74,6.012474060058594],[115,26,75,6.016749382019043],[115,26,76,6.0334553718566895],[115,26,77,6.058749198913574],[115,26,78,6.076561450958252],[115,26,79,6.080285549163818],[115,27,64,6.030251979827881],[115,27,65,6.037074565887451],[115,27,66,6.038665294647217],[115,27,67,6.034188747406006],[115,27,68,6.028587818145752],[115,27,69,6.022512435913086],[115,27,70,6.0178608894348145],[115,27,71,6.014236927032471],[115,27,72,6.0120463371276855],[115,27,73,6.012378215789795],[115,27,74,6.012474060058594],[115,27,75,6.016749382019043],[115,27,76,6.0334553718566895],[115,27,77,6.058749198913574],[115,27,78,6.076561450958252],[115,27,79,6.080285549163818],[115,28,64,6.030251979827881],[115,28,65,6.037074565887451],[115,28,66,6.038665294647217],[115,28,67,6.034188747406006],[115,28,68,6.028587818145752],[115,28,69,6.022512435913086],[115,28,70,6.0178608894348145],[115,28,71,6.014236927032471],[115,28,72,6.0120463371276855],[115,28,73,6.012378215789795],[115,28,74,6.012474060058594],[115,28,75,6.016749382019043],[115,28,76,6.0334553718566895],[115,28,77,6.058749198913574],[115,28,78,6.076561450958252],[115,28,79,6.080285549163818],[115,29,64,6.030251979827881],[115,29,65,6.037074565887451],[115,29,66,6.038665294647217],[115,29,67,6.034188747406006],[115,29,68,6.028587818145752],[115,29,69,6.022512435913086],[115,29,70,6.0178608894348145],[115,29,71,6.014236927032471],[115,29,72,6.0120463371276855],[115,29,73,6.012378215789795],[115,29,74,6.012474060058594],[115,29,75,6.016749382019043],[115,29,76,6.0334553718566895],[115,29,77,6.058749198913574],[115,29,78,6.076561450958252],[115,29,79,6.080285549163818],[115,30,64,6.030251979827881],[115,30,65,6.037074565887451],[115,30,66,6.038665294647217],[115,30,67,6.034188747406006],[115,30,68,6.028587818145752],[115,30,69,6.022512435913086],[115,30,70,6.0178608894348145],[115,30,71,6.014236927032471],[115,30,72,6.0120463371276855],[115,30,73,6.012378215789795],[115,30,74,6.012474060058594],[115,30,75,6.016749382019043],[115,30,76,6.0334553718566895],[115,30,77,6.058749198913574],[115,30,78,6.076561450958252],[115,30,79,6.080285549163818],[115,31,64,6.030251979827881],[115,31,65,6.037074565887451],[115,31,66,6.038665294647217],[115,31,67,6.034188747406006],[115,31,68,6.028587818145752],[115,31,69,6.022512435913086],[115,31,70,6.0178608894348145],[115,31,71,6.014236927032471],[115,31,72,6.0120463371276855],[115,31,73,6.012378215789795],[115,31,74,6.012474060058594],[115,31,75,6.016749382019043],[115,31,76,6.0334553718566895],[115,31,77,6.058749198913574],[115,31,78,6.076561450958252],[115,31,79,6.080285549163818],[115,32,64,6.030251979827881],[115,32,65,6.037074565887451],[115,32,66,6.038665294647217],[115,32,67,6.034188747406006],[115,32,68,6.028587818145752],[115,32,69,6.022512435913086],[115,32,70,6.0178608894348145],[115,32,71,6.014236927032471],[115,32,72,6.0120463371276855],[115,32,73,6.012378215789795],[115,32,74,6.012474060058594],[115,32,75,6.016749382019043],[115,32,76,6.0334553718566895],[115,32,77,6.058749198913574],[115,32,78,6.076561450958252],[115,32,79,6.080285549163818],[115,33,64,6.030251979827881],[115,33,65,6.037074565887451],[115,33,66,6.038665294647217],[115,33,67,6.034188747406006],[115,33,68,6.028587818145752],[115,33,69,6.022512435913086],[115,33,70,6.0178608894348145],[115,33,71,6.014236927032471],[115,33,72,6.0120463371276855],[115,33,73,6.012378215789795],[115,33,74,6.012474060058594],[115,33,75,6.016749382019043],[115,33,76,6.0334553718566895],[115,33,77,6.058749198913574],[115,33,78,6.076561450958252],[115,33,79,6.080285549163818],[115,34,64,6.030251979827881],[115,34,65,6.037074565887451],[115,34,66,6.038665294647217],[115,34,67,6.034188747406006],[115,34,68,6.028587818145752],[115,34,69,6.022512435913086],[115,34,70,6.0178608894348145],[115,34,71,6.014236927032471],[115,34,72,6.0120463371276855],[115,34,73,6.012378215789795],[115,34,74,6.012474060058594],[115,34,75,6.016749382019043],[115,34,76,6.0334553718566895],[115,34,77,6.058749198913574],[115,34,78,6.076561450958252],[115,34,79,6.080285549163818],[115,35,64,6.030251979827881],[115,35,65,6.037074565887451],[115,35,66,6.038665294647217],[115,35,67,6.034188747406006],[115,35,68,6.028587818145752],[115,35,69,6.022512435913086],[115,35,70,6.0178608894348145],[115,35,71,6.014236927032471],[115,35,72,6.0120463371276855],[115,35,73,6.012378215789795],[115,35,74,6.012474060058594],[115,35,75,6.016749382019043],[115,35,76,6.0334553718566895],[115,35,77,6.058749198913574],[115,35,78,6.076561450958252],[115,35,79,6.080285549163818],[115,36,64,6.030251979827881],[115,36,65,6.037074565887451],[115,36,66,6.038665294647217],[115,36,67,6.034188747406006],[115,36,68,6.028587818145752],[115,36,69,6.022512435913086],[115,36,70,6.0178608894348145],[115,36,71,6.014236927032471],[115,36,72,6.0120463371276855],[115,36,73,6.012378215789795],[115,36,74,6.012474060058594],[115,36,75,6.016749382019043],[115,36,76,6.0334553718566895],[115,36,77,6.058749198913574],[115,36,78,6.076561450958252],[115,36,79,6.080285549163818],[115,37,64,6.030251979827881],[115,37,65,6.037074565887451],[115,37,66,6.038665294647217],[115,37,67,6.034188747406006],[115,37,68,6.028587818145752],[115,37,69,6.022512435913086],[115,37,70,6.0178608894348145],[115,37,71,6.014236927032471],[115,37,72,6.0120463371276855],[115,37,73,6.012378215789795],[115,37,74,6.012474060058594],[115,37,75,6.016749382019043],[115,37,76,6.0334553718566895],[115,37,77,6.058749198913574],[115,37,78,6.076561450958252],[115,37,79,6.080285549163818],[115,38,64,6.030251979827881],[115,38,65,6.037074565887451],[115,38,66,6.038665294647217],[115,38,67,6.034188747406006],[115,38,68,6.028587818145752],[115,38,69,6.022512435913086],[115,38,70,6.0178608894348145],[115,38,71,6.014236927032471],[115,38,72,6.0120463371276855],[115,38,73,6.012378215789795],[115,38,74,6.012474060058594],[115,38,75,6.016749382019043],[115,38,76,6.0334553718566895],[115,38,77,6.058749198913574],[115,38,78,6.076561450958252],[115,38,79,6.080285549163818],[115,39,64,6.030251979827881],[115,39,65,6.037074565887451],[115,39,66,6.038665294647217],[115,39,67,6.034188747406006],[115,39,68,6.028587818145752],[115,39,69,6.022512435913086],[115,39,70,6.0178608894348145],[115,39,71,6.014236927032471],[115,39,72,6.0120463371276855],[115,39,73,6.012378215789795],[115,39,74,6.012474060058594],[115,39,75,6.016749382019043],[115,39,76,6.0334553718566895],[115,39,77,6.058749198913574],[115,39,78,6.076561450958252],[115,39,79,6.080285549163818],[115,40,64,6.030251979827881],[115,40,65,6.037074565887451],[115,40,66,6.038665294647217],[115,40,67,6.034188747406006],[115,40,68,6.028587818145752],[115,40,69,6.022512435913086],[115,40,70,6.0178608894348145],[115,40,71,6.014236927032471],[115,40,72,6.0120463371276855],[115,40,73,6.012378215789795],[115,40,74,6.012474060058594],[115,40,75,6.016749382019043],[115,40,76,6.0334553718566895],[115,40,77,6.058749198913574],[115,40,78,6.076561450958252],[115,40,79,6.080285549163818],[115,41,64,6.030251979827881],[115,41,65,6.037074565887451],[115,41,66,6.038665294647217],[115,41,67,6.034188747406006],[115,41,68,6.028587818145752],[115,41,69,6.022512435913086],[115,41,70,6.0178608894348145],[115,41,71,6.014236927032471],[115,41,72,6.0120463371276855],[115,41,73,6.012378215789795],[115,41,74,6.012474060058594],[115,41,75,6.016749382019043],[115,41,76,6.0334553718566895],[115,41,77,6.058749198913574],[115,41,78,6.076561450958252],[115,41,79,6.080285549163818],[115,42,64,6.030251979827881],[115,42,65,6.037074565887451],[115,42,66,6.038665294647217],[115,42,67,6.034188747406006],[115,42,68,6.028587818145752],[115,42,69,6.022512435913086],[115,42,70,6.0178608894348145],[115,42,71,6.014236927032471],[115,42,72,6.0120463371276855],[115,42,73,6.012378215789795],[115,42,74,6.012474060058594],[115,42,75,6.016749382019043],[115,42,76,6.0334553718566895],[115,42,77,6.058749198913574],[115,42,78,6.076561450958252],[115,42,79,6.080285549163818],[115,43,64,6.030251979827881],[115,43,65,6.037074565887451],[115,43,66,6.038665294647217],[115,43,67,6.034188747406006],[115,43,68,6.028587818145752],[115,43,69,6.022512435913086],[115,43,70,6.0178608894348145],[115,43,71,6.014236927032471],[115,43,72,6.0120463371276855],[115,43,73,6.012378215789795],[115,43,74,6.012474060058594],[115,43,75,6.016749382019043],[115,43,76,6.0334553718566895],[115,43,77,6.058749198913574],[115,43,78,6.076561450958252],[115,43,79,6.080285549163818],[115,44,64,6.030251979827881],[115,44,65,6.037074565887451],[115,44,66,6.038665294647217],[115,44,67,6.034188747406006],[115,44,68,6.028587818145752],[115,44,69,6.022512435913086],[115,44,70,6.0178608894348145],[115,44,71,6.014236927032471],[115,44,72,6.0120463371276855],[115,44,73,6.012378215789795],[115,44,74,6.012474060058594],[115,44,75,6.016749382019043],[115,44,76,6.0334553718566895],[115,44,77,6.058749198913574],[115,44,78,6.076561450958252],[115,44,79,6.080285549163818],[115,45,64,6.030251979827881],[115,45,65,6.037074565887451],[115,45,66,6.038665294647217],[115,45,67,6.034188747406006],[115,45,68,6.028587818145752],[115,45,69,6.022512435913086],[115,45,70,6.0178608894348145],[115,45,71,6.014236927032471],[115,45,72,6.0120463371276855],[115,45,73,6.012378215789795],[115,45,74,6.012474060058594],[115,45,75,6.016749382019043],[115,45,76,6.0334553718566895],[115,45,77,6.058749198913574],[115,45,78,6.076561450958252],[115,45,79,6.080285549163818],[115,46,64,6.030251979827881],[115,46,65,6.037074565887451],[115,46,66,6.038665294647217],[115,46,67,6.034188747406006],[115,46,68,6.028587818145752],[115,46,69,6.022512435913086],[115,46,70,6.0178608894348145],[115,46,71,6.014236927032471],[115,46,72,6.0120463371276855],[115,46,73,6.012378215789795],[115,46,74,6.012474060058594],[115,46,75,6.016749382019043],[115,46,76,6.0334553718566895],[115,46,77,6.058749198913574],[115,46,78,6.076561450958252],[115,46,79,6.080285549163818],[115,47,64,6.030251979827881],[115,47,65,6.037074565887451],[115,47,66,6.038665294647217],[115,47,67,6.034188747406006],[115,47,68,6.028587818145752],[115,47,69,6.022512435913086],[115,47,70,6.0178608894348145],[115,47,71,6.014236927032471],[115,47,72,6.0120463371276855],[115,47,73,6.012378215789795],[115,47,74,6.012474060058594],[115,47,75,6.016749382019043],[115,47,76,6.0334553718566895],[115,47,77,6.058749198913574],[115,47,78,6.076561450958252],[115,47,79,6.080285549163818],[115,48,64,6.030251979827881],[115,48,65,6.037074565887451],[115,48,66,6.038665294647217],[115,48,67,6.034188747406006],[115,48,68,6.028587818145752],[115,48,69,6.022512435913086],[115,48,70,6.0178608894348145],[115,48,71,6.014236927032471],[115,48,72,6.0120463371276855],[115,48,73,6.012378215789795],[115,48,74,6.012474060058594],[115,48,75,6.016749382019043],[115,48,76,6.0334553718566895],[115,48,77,6.058749198913574],[115,48,78,6.076561450958252],[115,48,79,6.080285549163818],[115,49,64,6.030251979827881],[115,49,65,6.037074565887451],[115,49,66,6.038665294647217],[115,49,67,6.034188747406006],[115,49,68,6.028587818145752],[115,49,69,6.022512435913086],[115,49,70,6.0178608894348145],[115,49,71,6.014236927032471],[115,49,72,6.0120463371276855],[115,49,73,6.012378215789795],[115,49,74,6.012474060058594],[115,49,75,6.016749382019043],[115,49,76,6.0334553718566895],[115,49,77,6.058749198913574],[115,49,78,6.076561450958252],[115,49,79,6.080285549163818],[115,50,64,6.030251979827881],[115,50,65,6.037074565887451],[115,50,66,6.038665294647217],[115,50,67,6.034188747406006],[115,50,68,6.028587818145752],[115,50,69,6.022512435913086],[115,50,70,6.0178608894348145],[115,50,71,6.014236927032471],[115,50,72,6.0120463371276855],[115,50,73,6.012378215789795],[115,50,74,6.012474060058594],[115,50,75,6.016749382019043],[115,50,76,6.0334553718566895],[115,50,77,6.058749198913574],[115,50,78,6.076561450958252],[115,50,79,6.080285549163818],[115,51,64,6.030251979827881],[115,51,65,6.037074565887451],[115,51,66,6.038665294647217],[115,51,67,6.034188747406006],[115,51,68,6.028587818145752],[115,51,69,6.022512435913086],[115,51,70,6.0178608894348145],[115,51,71,6.014236927032471],[115,51,72,6.0120463371276855],[115,51,73,6.012378215789795],[115,51,74,6.012474060058594],[115,51,75,6.016749382019043],[115,51,76,6.0334553718566895],[115,51,77,6.058749198913574],[115,51,78,6.076561450958252],[115,51,79,6.080285549163818],[115,52,64,6.030251979827881],[115,52,65,6.037074565887451],[115,52,66,6.038665294647217],[115,52,67,6.034188747406006],[115,52,68,6.028587818145752],[115,52,69,6.022512435913086],[115,52,70,6.0178608894348145],[115,52,71,6.014236927032471],[115,52,72,6.0120463371276855],[115,52,73,6.012378215789795],[115,52,74,6.012474060058594],[115,52,75,6.016749382019043],[115,52,76,6.0334553718566895],[115,52,77,6.058749198913574],[115,52,78,6.076561450958252],[115,52,79,6.080285549163818],[115,53,64,6.030251979827881],[115,53,65,6.037074565887451],[115,53,66,6.038665294647217],[115,53,67,6.034188747406006],[115,53,68,6.028587818145752],[115,53,69,6.022512435913086],[115,53,70,6.0178608894348145],[115,53,71,6.014236927032471],[115,53,72,6.0120463371276855],[115,53,73,6.012378215789795],[115,53,74,6.012474060058594],[115,53,75,6.016749382019043],[115,53,76,6.0334553718566895],[115,53,77,6.058749198913574],[115,53,78,6.076561450958252],[115,53,79,6.080285549163818],[115,54,64,6.030251979827881],[115,54,65,6.037074565887451],[115,54,66,6.038665294647217],[115,54,67,6.034188747406006],[115,54,68,6.028587818145752],[115,54,69,6.022512435913086],[115,54,70,6.0178608894348145],[115,54,71,6.014236927032471],[115,54,72,6.0120463371276855],[115,54,73,6.012378215789795],[115,54,74,6.012474060058594],[115,54,75,6.016749382019043],[115,54,76,6.0334553718566895],[115,54,77,6.058749198913574],[115,54,78,6.076561450958252],[115,54,79,6.080285549163818],[115,55,64,6.030251979827881],[115,55,65,6.037074565887451],[115,55,66,6.038665294647217],[115,55,67,6.034188747406006],[115,55,68,6.028587818145752],[115,55,69,6.022512435913086],[115,55,70,6.0178608894348145],[115,55,71,6.014236927032471],[115,55,72,6.0120463371276855],[115,55,73,6.012378215789795],[115,55,74,6.012474060058594],[115,55,75,6.016749382019043],[115,55,76,6.0334553718566895],[115,55,77,6.058749198913574],[115,55,78,6.076561450958252],[115,55,79,6.080285549163818],[115,56,64,6.030251979827881],[115,56,65,6.037074565887451],[115,56,66,6.038665294647217],[115,56,67,6.034188747406006],[115,56,68,6.028587818145752],[115,56,69,6.022512435913086],[115,56,70,6.0178608894348145],[115,56,71,6.014236927032471],[115,56,72,6.0120463371276855],[115,56,73,6.012378215789795],[115,56,74,6.012474060058594],[115,56,75,6.016749382019043],[115,56,76,6.0334553718566895],[115,56,77,6.058749198913574],[115,56,78,6.076561450958252],[115,56,79,6.080285549163818],[115,57,64,6.030251979827881],[115,57,65,6.037074565887451],[115,57,66,6.038665294647217],[115,57,67,6.034188747406006],[115,57,68,6.028587818145752],[115,57,69,6.022512435913086],[115,57,70,6.0178608894348145],[115,57,71,6.014236927032471],[115,57,72,6.0120463371276855],[115,57,73,6.012378215789795],[115,57,74,6.012474060058594],[115,57,75,6.016749382019043],[115,57,76,6.0334553718566895],[115,57,77,6.058749198913574],[115,57,78,6.076561450958252],[115,57,79,6.080285549163818],[115,58,64,6.030251979827881],[115,58,65,6.037074565887451],[115,58,66,6.038665294647217],[115,58,67,6.034188747406006],[115,58,68,6.028587818145752],[115,58,69,6.022512435913086],[115,58,70,6.0178608894348145],[115,58,71,6.014236927032471],[115,58,72,6.0120463371276855],[115,58,73,6.012378215789795],[115,58,74,6.012474060058594],[115,58,75,6.016749382019043],[115,58,76,6.0334553718566895],[115,58,77,6.058749198913574],[115,58,78,6.076561450958252],[115,58,79,6.080285549163818],[115,59,64,6.030251979827881],[115,59,65,6.037074565887451],[115,59,66,6.038665294647217],[115,59,67,6.034188747406006],[115,59,68,6.028587818145752],[115,59,69,6.022512435913086],[115,59,70,6.0178608894348145],[115,59,71,6.014236927032471],[115,59,72,6.0120463371276855],[115,59,73,6.012378215789795],[115,59,74,6.012474060058594],[115,59,75,6.016749382019043],[115,59,76,6.0334553718566895],[115,59,77,6.058749198913574],[115,59,78,6.076561450958252],[115,59,79,6.080285549163818],[115,60,64,6.030251979827881],[115,60,65,6.037074565887451],[115,60,66,6.038665294647217],[115,60,67,6.034188747406006],[115,60,68,6.028587818145752],[115,60,69,6.022512435913086],[115,60,70,6.0178608894348145],[115,60,71,6.014236927032471],[115,60,72,6.0120463371276855],[115,60,73,6.012378215789795],[115,60,74,6.012474060058594],[115,60,75,6.016749382019043],[115,60,76,6.0334553718566895],[115,60,77,6.058749198913574],[115,60,78,6.076561450958252],[115,60,79,6.080285549163818],[115,61,64,6.030251979827881],[115,61,65,6.037074565887451],[115,61,66,6.038665294647217],[115,61,67,6.034188747406006],[115,61,68,6.028587818145752],[115,61,69,6.022512435913086],[115,61,70,6.0178608894348145],[115,61,71,6.014236927032471],[115,61,72,6.0120463371276855],[115,61,73,6.012378215789795],[115,61,74,6.012474060058594],[115,61,75,6.016749382019043],[115,61,76,6.0334553718566895],[115,61,77,6.058749198913574],[115,61,78,6.076561450958252],[115,61,79,6.080285549163818],[115,62,64,6.030251979827881],[115,62,65,6.037074565887451],[115,62,66,6.038665294647217],[115,62,67,6.034188747406006],[115,62,68,6.028587818145752],[115,62,69,6.022512435913086],[115,62,70,6.0178608894348145],[115,62,71,6.014236927032471],[115,62,72,6.0120463371276855],[115,62,73,6.012378215789795],[115,62,74,6.012474060058594],[115,62,75,6.016749382019043],[115,62,76,6.0334553718566895],[115,62,77,6.058749198913574],[115,62,78,6.076561450958252],[115,62,79,6.080285549163818],[115,63,64,6.030251979827881],[115,63,65,6.037074565887451],[115,63,66,6.038665294647217],[115,63,67,6.034188747406006],[115,63,68,6.028587818145752],[115,63,69,6.022512435913086],[115,63,70,6.0178608894348145],[115,63,71,6.014236927032471],[115,63,72,6.0120463371276855],[115,63,73,6.012378215789795],[115,63,74,6.012474060058594],[115,63,75,6.016749382019043],[115,63,76,6.0334553718566895],[115,63,77,6.058749198913574],[115,63,78,6.076561450958252],[115,63,79,6.080285549163818],[115,64,64,6.030251979827881],[115,64,65,6.037074565887451],[115,64,66,6.038665294647217],[115,64,67,6.034188747406006],[115,64,68,6.028587818145752],[115,64,69,6.022512435913086],[115,64,70,6.0178608894348145],[115,64,71,6.014236927032471],[115,64,72,6.0120463371276855],[115,64,73,6.012378215789795],[115,64,74,6.012474060058594],[115,64,75,6.016749382019043],[115,64,76,6.0334553718566895],[115,64,77,6.058749198913574],[115,64,78,6.076561450958252],[115,64,79,6.080285549163818],[115,65,64,6.030251979827881],[115,65,65,6.037074565887451],[115,65,66,6.038665294647217],[115,65,67,6.034188747406006],[115,65,68,6.028587818145752],[115,65,69,6.022512435913086],[115,65,70,6.0178608894348145],[115,65,71,6.014236927032471],[115,65,72,6.0120463371276855],[115,65,73,6.012378215789795],[115,65,74,6.012474060058594],[115,65,75,6.016749382019043],[115,65,76,6.0334553718566895],[115,65,77,6.058749198913574],[115,65,78,6.076561450958252],[115,65,79,6.080285549163818],[115,66,64,6.030251979827881],[115,66,65,6.037074565887451],[115,66,66,6.038665294647217],[115,66,67,6.034188747406006],[115,66,68,6.028587818145752],[115,66,69,6.022512435913086],[115,66,70,6.0178608894348145],[115,66,71,6.014236927032471],[115,66,72,6.0120463371276855],[115,66,73,6.012378215789795],[115,66,74,6.012474060058594],[115,66,75,6.016749382019043],[115,66,76,6.0334553718566895],[115,66,77,6.058749198913574],[115,66,78,6.076561450958252],[115,66,79,6.080285549163818],[115,67,64,6.030251979827881],[115,67,65,6.037074565887451],[115,67,66,6.038665294647217],[115,67,67,6.034188747406006],[115,67,68,6.028587818145752],[115,67,69,6.022512435913086],[115,67,70,6.0178608894348145],[115,67,71,6.014236927032471],[115,67,72,6.0120463371276855],[115,67,73,6.012378215789795],[115,67,74,6.012474060058594],[115,67,75,6.016749382019043],[115,67,76,6.0334553718566895],[115,67,77,6.058749198913574],[115,67,78,6.076561450958252],[115,67,79,6.080285549163818],[115,68,64,6.030251979827881],[115,68,65,6.037074565887451],[115,68,66,6.038665294647217],[115,68,67,6.034188747406006],[115,68,68,6.028587818145752],[115,68,69,6.022512435913086],[115,68,70,6.0178608894348145],[115,68,71,6.014236927032471],[115,68,72,6.0120463371276855],[115,68,73,6.012378215789795],[115,68,74,6.012474060058594],[115,68,75,6.016749382019043],[115,68,76,6.0334553718566895],[115,68,77,6.058749198913574],[115,68,78,6.076561450958252],[115,68,79,6.080285549163818],[115,69,64,6.030251979827881],[115,69,65,6.037074565887451],[115,69,66,6.038665294647217],[115,69,67,6.034188747406006],[115,69,68,6.028587818145752],[115,69,69,6.022512435913086],[115,69,70,6.0178608894348145],[115,69,71,6.014236927032471],[115,69,72,6.0120463371276855],[115,69,73,6.012378215789795],[115,69,74,6.012474060058594],[115,69,75,6.016749382019043],[115,69,76,6.0334553718566895],[115,69,77,6.058749198913574],[115,69,78,6.076561450958252],[115,69,79,6.080285549163818],[115,70,64,6.030251979827881],[115,70,65,6.037074565887451],[115,70,66,6.038665294647217],[115,70,67,6.034188747406006],[115,70,68,6.028587818145752],[115,70,69,6.022512435913086],[115,70,70,6.0178608894348145],[115,70,71,6.014236927032471],[115,70,72,6.0120463371276855],[115,70,73,6.012378215789795],[115,70,74,6.012474060058594],[115,70,75,6.016749382019043],[115,70,76,6.0334553718566895],[115,70,77,6.058749198913574],[115,70,78,6.076561450958252],[115,70,79,6.080285549163818],[115,71,64,6.030251979827881],[115,71,65,6.037074565887451],[115,71,66,6.038665294647217],[115,71,67,6.034188747406006],[115,71,68,6.028587818145752],[115,71,69,6.022512435913086],[115,71,70,6.0178608894348145],[115,71,71,6.014236927032471],[115,71,72,6.0120463371276855],[115,71,73,6.012378215789795],[115,71,74,6.012474060058594],[115,71,75,6.016749382019043],[115,71,76,6.0334553718566895],[115,71,77,6.058749198913574],[115,71,78,6.076561450958252],[115,71,79,6.080285549163818],[115,72,64,6.030251979827881],[115,72,65,6.037074565887451],[115,72,66,6.038665294647217],[115,72,67,6.034188747406006],[115,72,68,6.028587818145752],[115,72,69,6.022512435913086],[115,72,70,6.0178608894348145],[115,72,71,6.014236927032471],[115,72,72,6.0120463371276855],[115,72,73,6.012378215789795],[115,72,74,6.012474060058594],[115,72,75,6.016749382019043],[115,72,76,6.0334553718566895],[115,72,77,6.058749198913574],[115,72,78,6.076561450958252],[115,72,79,6.080285549163818],[115,73,64,6.030251979827881],[115,73,65,6.037074565887451],[115,73,66,6.038665294647217],[115,73,67,6.034188747406006],[115,73,68,6.028587818145752],[115,73,69,6.022512435913086],[115,73,70,6.0178608894348145],[115,73,71,6.014236927032471],[115,73,72,6.0120463371276855],[115,73,73,6.012378215789795],[115,73,74,6.012474060058594],[115,73,75,6.016749382019043],[115,73,76,6.0334553718566895],[115,73,77,6.058749198913574],[115,73,78,6.076561450958252],[115,73,79,6.080285549163818],[115,74,64,6.030251979827881],[115,74,65,6.037074565887451],[115,74,66,6.038665294647217],[115,74,67,6.034188747406006],[115,74,68,6.028587818145752],[115,74,69,6.022512435913086],[115,74,70,6.0178608894348145],[115,74,71,6.014236927032471],[115,74,72,6.0120463371276855],[115,74,73,6.012378215789795],[115,74,74,6.012474060058594],[115,74,75,6.016749382019043],[115,74,76,6.0334553718566895],[115,74,77,6.058749198913574],[115,74,78,6.076561450958252],[115,74,79,6.080285549163818],[115,75,64,6.030251979827881],[115,75,65,6.037074565887451],[115,75,66,6.038665294647217],[115,75,67,6.034188747406006],[115,75,68,6.028587818145752],[115,75,69,6.022512435913086],[115,75,70,6.0178608894348145],[115,75,71,6.014236927032471],[115,75,72,6.0120463371276855],[115,75,73,6.012378215789795],[115,75,74,6.012474060058594],[115,75,75,6.016749382019043],[115,75,76,6.0334553718566895],[115,75,77,6.058749198913574],[115,75,78,6.076561450958252],[115,75,79,6.080285549163818],[115,76,64,6.030251979827881],[115,76,65,6.037074565887451],[115,76,66,6.038665294647217],[115,76,67,6.034188747406006],[115,76,68,6.028587818145752],[115,76,69,6.022512435913086],[115,76,70,6.0178608894348145],[115,76,71,6.014236927032471],[115,76,72,6.0120463371276855],[115,76,73,6.012378215789795],[115,76,74,6.012474060058594],[115,76,75,6.016749382019043],[115,76,76,6.0334553718566895],[115,76,77,6.058749198913574],[115,76,78,6.076561450958252],[115,76,79,6.080285549163818],[115,77,64,6.030251979827881],[115,77,65,6.037074565887451],[115,77,66,6.038665294647217],[115,77,67,6.034188747406006],[115,77,68,6.028587818145752],[115,77,69,6.022512435913086],[115,77,70,6.0178608894348145],[115,77,71,6.014236927032471],[115,77,72,6.0120463371276855],[115,77,73,6.012378215789795],[115,77,74,6.012474060058594],[115,77,75,6.016749382019043],[115,77,76,6.0334553718566895],[115,77,77,6.058749198913574],[115,77,78,6.076561450958252],[115,77,79,6.080285549163818],[115,78,64,6.030251979827881],[115,78,65,6.037074565887451],[115,78,66,6.038665294647217],[115,78,67,6.034188747406006],[115,78,68,6.028587818145752],[115,78,69,6.022512435913086],[115,78,70,6.0178608894348145],[115,78,71,6.014236927032471],[115,78,72,6.0120463371276855],[115,78,73,6.012378215789795],[115,78,74,6.012474060058594],[115,78,75,6.016749382019043],[115,78,76,6.0334553718566895],[115,78,77,6.058749198913574],[115,78,78,6.076561450958252],[115,78,79,6.080285549163818],[115,79,64,6.030251979827881],[115,79,65,6.037074565887451],[115,79,66,6.038665294647217],[115,79,67,6.034188747406006],[115,79,68,6.028587818145752],[115,79,69,6.022512435913086],[115,79,70,6.0178608894348145],[115,79,71,6.014236927032471],[115,79,72,6.0120463371276855],[115,79,73,6.012378215789795],[115,79,74,6.012474060058594],[115,79,75,6.016749382019043],[115,79,76,6.0334553718566895],[115,79,77,6.058749198913574],[115,79,78,6.076561450958252],[115,79,79,6.080285549163818],[115,80,64,6.030251979827881],[115,80,65,6.037074565887451],[115,80,66,6.038665294647217],[115,80,67,6.034188747406006],[115,80,68,6.028587818145752],[115,80,69,6.022512435913086],[115,80,70,6.0178608894348145],[115,80,71,6.014236927032471],[115,80,72,6.0120463371276855],[115,80,73,6.012378215789795],[115,80,74,6.012474060058594],[115,80,75,6.016749382019043],[115,80,76,6.0334553718566895],[115,80,77,6.058749198913574],[115,80,78,6.076561450958252],[115,80,79,6.080285549163818],[115,81,64,6.030251979827881],[115,81,65,6.037074565887451],[115,81,66,6.038665294647217],[115,81,67,6.034188747406006],[115,81,68,6.028587818145752],[115,81,69,6.022512435913086],[115,81,70,6.0178608894348145],[115,81,71,6.014236927032471],[115,81,72,6.0120463371276855],[115,81,73,6.012378215789795],[115,81,74,6.012474060058594],[115,81,75,6.016749382019043],[115,81,76,6.0334553718566895],[115,81,77,6.058749198913574],[115,81,78,6.076561450958252],[115,81,79,6.080285549163818],[115,82,64,6.030251979827881],[115,82,65,6.037074565887451],[115,82,66,6.038665294647217],[115,82,67,6.034188747406006],[115,82,68,6.028587818145752],[115,82,69,6.022512435913086],[115,82,70,6.0178608894348145],[115,82,71,6.014236927032471],[115,82,72,6.0120463371276855],[115,82,73,6.012378215789795],[115,82,74,6.012474060058594],[115,82,75,6.016749382019043],[115,82,76,6.0334553718566895],[115,82,77,6.058749198913574],[115,82,78,6.076561450958252],[115,82,79,6.080285549163818],[115,83,64,6.030251979827881],[115,83,65,6.037074565887451],[115,83,66,6.038665294647217],[115,83,67,6.034188747406006],[115,83,68,6.028587818145752],[115,83,69,6.022512435913086],[115,83,70,6.0178608894348145],[115,83,71,6.014236927032471],[115,83,72,6.0120463371276855],[115,83,73,6.012378215789795],[115,83,74,6.012474060058594],[115,83,75,6.016749382019043],[115,83,76,6.0334553718566895],[115,83,77,6.058749198913574],[115,83,78,6.076561450958252],[115,83,79,6.080285549163818],[115,84,64,6.030251979827881],[115,84,65,6.037074565887451],[115,84,66,6.038665294647217],[115,84,67,6.034188747406006],[115,84,68,6.028587818145752],[115,84,69,6.022512435913086],[115,84,70,6.0178608894348145],[115,84,71,6.014236927032471],[115,84,72,6.0120463371276855],[115,84,73,6.012378215789795],[115,84,74,6.012474060058594],[115,84,75,6.016749382019043],[115,84,76,6.0334553718566895],[115,84,77,6.058749198913574],[115,84,78,6.076561450958252],[115,84,79,6.080285549163818],[115,85,64,6.030251979827881],[115,85,65,6.037074565887451],[115,85,66,6.038665294647217],[115,85,67,6.034188747406006],[115,85,68,6.028587818145752],[115,85,69,6.022512435913086],[115,85,70,6.0178608894348145],[115,85,71,6.014236927032471],[115,85,72,6.0120463371276855],[115,85,73,6.012378215789795],[115,85,74,6.012474060058594],[115,85,75,6.016749382019043],[115,85,76,6.0334553718566895],[115,85,77,6.058749198913574],[115,85,78,6.076561450958252],[115,85,79,6.080285549163818],[115,86,64,6.030251979827881],[115,86,65,6.037074565887451],[115,86,66,6.038665294647217],[115,86,67,6.034188747406006],[115,86,68,6.028587818145752],[115,86,69,6.022512435913086],[115,86,70,6.0178608894348145],[115,86,71,6.014236927032471],[115,86,72,6.0120463371276855],[115,86,73,6.012378215789795],[115,86,74,6.012474060058594],[115,86,75,6.016749382019043],[115,86,76,6.0334553718566895],[115,86,77,6.058749198913574],[115,86,78,6.076561450958252],[115,86,79,6.080285549163818],[115,87,64,6.030251979827881],[115,87,65,6.037074565887451],[115,87,66,6.038665294647217],[115,87,67,6.034188747406006],[115,87,68,6.028587818145752],[115,87,69,6.022512435913086],[115,87,70,6.0178608894348145],[115,87,71,6.014236927032471],[115,87,72,6.0120463371276855],[115,87,73,6.012378215789795],[115,87,74,6.012474060058594],[115,87,75,6.016749382019043],[115,87,76,6.0334553718566895],[115,87,77,6.058749198913574],[115,87,78,6.076561450958252],[115,87,79,6.080285549163818],[115,88,64,6.030251979827881],[115,88,65,6.037074565887451],[115,88,66,6.038665294647217],[115,88,67,6.034188747406006],[115,88,68,6.028587818145752],[115,88,69,6.022512435913086],[115,88,70,6.0178608894348145],[115,88,71,6.014236927032471],[115,88,72,6.0120463371276855],[115,88,73,6.012378215789795],[115,88,74,6.012474060058594],[115,88,75,6.016749382019043],[115,88,76,6.0334553718566895],[115,88,77,6.058749198913574],[115,88,78,6.076561450958252],[115,88,79,6.080285549163818],[115,89,64,6.030251979827881],[115,89,65,6.037074565887451],[115,89,66,6.038665294647217],[115,89,67,6.034188747406006],[115,89,68,6.028587818145752],[115,89,69,6.022512435913086],[115,89,70,6.0178608894348145],[115,89,71,6.014236927032471],[115,89,72,6.0120463371276855],[115,89,73,6.012378215789795],[115,89,74,6.012474060058594],[115,89,75,6.016749382019043],[115,89,76,6.0334553718566895],[115,89,77,6.058749198913574],[115,89,78,6.076561450958252],[115,89,79,6.080285549163818],[115,90,64,6.030251979827881],[115,90,65,6.037074565887451],[115,90,66,6.038665294647217],[115,90,67,6.034188747406006],[115,90,68,6.028587818145752],[115,90,69,6.022512435913086],[115,90,70,6.0178608894348145],[115,90,71,6.014236927032471],[115,90,72,6.0120463371276855],[115,90,73,6.012378215789795],[115,90,74,6.012474060058594],[115,90,75,6.016749382019043],[115,90,76,6.0334553718566895],[115,90,77,6.058749198913574],[115,90,78,6.076561450958252],[115,90,79,6.080285549163818],[115,91,64,6.030251979827881],[115,91,65,6.037074565887451],[115,91,66,6.038665294647217],[115,91,67,6.034188747406006],[115,91,68,6.028587818145752],[115,91,69,6.022512435913086],[115,91,70,6.0178608894348145],[115,91,71,6.014236927032471],[115,91,72,6.0120463371276855],[115,91,73,6.012378215789795],[115,91,74,6.012474060058594],[115,91,75,6.016749382019043],[115,91,76,6.0334553718566895],[115,91,77,6.058749198913574],[115,91,78,6.076561450958252],[115,91,79,6.080285549163818],[115,92,64,6.030251979827881],[115,92,65,6.037074565887451],[115,92,66,6.038665294647217],[115,92,67,6.034188747406006],[115,92,68,6.028587818145752],[115,92,69,6.022512435913086],[115,92,70,6.0178608894348145],[115,92,71,6.014236927032471],[115,92,72,6.0120463371276855],[115,92,73,6.012378215789795],[115,92,74,6.012474060058594],[115,92,75,6.016749382019043],[115,92,76,6.0334553718566895],[115,92,77,6.058749198913574],[115,92,78,6.076561450958252],[115,92,79,6.080285549163818],[115,93,64,6.030251979827881],[115,93,65,6.037074565887451],[115,93,66,6.038665294647217],[115,93,67,6.034188747406006],[115,93,68,6.028587818145752],[115,93,69,6.022512435913086],[115,93,70,6.0178608894348145],[115,93,71,6.014236927032471],[115,93,72,6.0120463371276855],[115,93,73,6.012378215789795],[115,93,74,6.012474060058594],[115,93,75,6.016749382019043],[115,93,76,6.0334553718566895],[115,93,77,6.058749198913574],[115,93,78,6.076561450958252],[115,93,79,6.080285549163818],[115,94,64,6.030251979827881],[115,94,65,6.037074565887451],[115,94,66,6.038665294647217],[115,94,67,6.034188747406006],[115,94,68,6.028587818145752],[115,94,69,6.022512435913086],[115,94,70,6.0178608894348145],[115,94,71,6.014236927032471],[115,94,72,6.0120463371276855],[115,94,73,6.012378215789795],[115,94,74,6.012474060058594],[115,94,75,6.016749382019043],[115,94,76,6.0334553718566895],[115,94,77,6.058749198913574],[115,94,78,6.076561450958252],[115,94,79,6.080285549163818],[115,95,64,6.030251979827881],[115,95,65,6.037074565887451],[115,95,66,6.038665294647217],[115,95,67,6.034188747406006],[115,95,68,6.028587818145752],[115,95,69,6.022512435913086],[115,95,70,6.0178608894348145],[115,95,71,6.014236927032471],[115,95,72,6.0120463371276855],[115,95,73,6.012378215789795],[115,95,74,6.012474060058594],[115,95,75,6.016749382019043],[115,95,76,6.0334553718566895],[115,95,77,6.058749198913574],[115,95,78,6.076561450958252],[115,95,79,6.080285549163818],[115,96,64,6.030251979827881],[115,96,65,6.037074565887451],[115,96,66,6.038665294647217],[115,96,67,6.034188747406006],[115,96,68,6.028587818145752],[115,96,69,6.022512435913086],[115,96,70,6.0178608894348145],[115,96,71,6.014236927032471],[115,96,72,6.0120463371276855],[115,96,73,6.012378215789795],[115,96,74,6.012474060058594],[115,96,75,6.016749382019043],[115,96,76,6.0334553718566895],[115,96,77,6.058749198913574],[115,96,78,6.076561450958252],[115,96,79,6.080285549163818],[115,97,64,6.030251979827881],[115,97,65,6.037074565887451],[115,97,66,6.038665294647217],[115,97,67,6.034188747406006],[115,97,68,6.028587818145752],[115,97,69,6.022512435913086],[115,97,70,6.0178608894348145],[115,97,71,6.014236927032471],[115,97,72,6.0120463371276855],[115,97,73,6.012378215789795],[115,97,74,6.012474060058594],[115,97,75,6.016749382019043],[115,97,76,6.0334553718566895],[115,97,77,6.058749198913574],[115,97,78,6.076561450958252],[115,97,79,6.080285549163818],[115,98,64,6.030251979827881],[115,98,65,6.037074565887451],[115,98,66,6.038665294647217],[115,98,67,6.034188747406006],[115,98,68,6.028587818145752],[115,98,69,6.022512435913086],[115,98,70,6.0178608894348145],[115,98,71,6.014236927032471],[115,98,72,6.0120463371276855],[115,98,73,6.012378215789795],[115,98,74,6.012474060058594],[115,98,75,6.016749382019043],[115,98,76,6.0334553718566895],[115,98,77,6.058749198913574],[115,98,78,6.076561450958252],[115,98,79,6.080285549163818],[115,99,64,6.030251979827881],[115,99,65,6.037074565887451],[115,99,66,6.038665294647217],[115,99,67,6.034188747406006],[115,99,68,6.028587818145752],[115,99,69,6.022512435913086],[115,99,70,6.0178608894348145],[115,99,71,6.014236927032471],[115,99,72,6.0120463371276855],[115,99,73,6.012378215789795],[115,99,74,6.012474060058594],[115,99,75,6.016749382019043],[115,99,76,6.0334553718566895],[115,99,77,6.058749198913574],[115,99,78,6.076561450958252],[115,99,79,6.080285549163818],[115,100,64,6.030251979827881],[115,100,65,6.037074565887451],[115,100,66,6.038665294647217],[115,100,67,6.034188747406006],[115,100,68,6.028587818145752],[115,100,69,6.022512435913086],[115,100,70,6.0178608894348145],[115,100,71,6.014236927032471],[115,100,72,6.0120463371276855],[115,100,73,6.012378215789795],[115,100,74,6.012474060058594],[115,100,75,6.016749382019043],[115,100,76,6.0334553718566895],[115,100,77,6.058749198913574],[115,100,78,6.076561450958252],[115,100,79,6.080285549163818],[115,101,64,6.030251979827881],[115,101,65,6.037074565887451],[115,101,66,6.038665294647217],[115,101,67,6.034188747406006],[115,101,68,6.028587818145752],[115,101,69,6.022512435913086],[115,101,70,6.0178608894348145],[115,101,71,6.014236927032471],[115,101,72,6.0120463371276855],[115,101,73,6.012378215789795],[115,101,74,6.012474060058594],[115,101,75,6.016749382019043],[115,101,76,6.0334553718566895],[115,101,77,6.058749198913574],[115,101,78,6.076561450958252],[115,101,79,6.080285549163818],[115,102,64,6.030251979827881],[115,102,65,6.037074565887451],[115,102,66,6.038665294647217],[115,102,67,6.034188747406006],[115,102,68,6.028587818145752],[115,102,69,6.022512435913086],[115,102,70,6.0178608894348145],[115,102,71,6.014236927032471],[115,102,72,6.0120463371276855],[115,102,73,6.012378215789795],[115,102,74,6.012474060058594],[115,102,75,6.016749382019043],[115,102,76,6.0334553718566895],[115,102,77,6.058749198913574],[115,102,78,6.076561450958252],[115,102,79,6.080285549163818],[115,103,64,6.030251979827881],[115,103,65,6.037074565887451],[115,103,66,6.038665294647217],[115,103,67,6.034188747406006],[115,103,68,6.028587818145752],[115,103,69,6.022512435913086],[115,103,70,6.0178608894348145],[115,103,71,6.014236927032471],[115,103,72,6.0120463371276855],[115,103,73,6.012378215789795],[115,103,74,6.012474060058594],[115,103,75,6.016749382019043],[115,103,76,6.0334553718566895],[115,103,77,6.058749198913574],[115,103,78,6.076561450958252],[115,103,79,6.080285549163818],[115,104,64,6.030251979827881],[115,104,65,6.037074565887451],[115,104,66,6.038665294647217],[115,104,67,6.034188747406006],[115,104,68,6.028587818145752],[115,104,69,6.022512435913086],[115,104,70,6.0178608894348145],[115,104,71,6.014236927032471],[115,104,72,6.0120463371276855],[115,104,73,6.012378215789795],[115,104,74,6.012474060058594],[115,104,75,6.016749382019043],[115,104,76,6.0334553718566895],[115,104,77,6.058749198913574],[115,104,78,6.076561450958252],[115,104,79,6.080285549163818],[115,105,64,6.030251979827881],[115,105,65,6.037074565887451],[115,105,66,6.038665294647217],[115,105,67,6.034188747406006],[115,105,68,6.028587818145752],[115,105,69,6.022512435913086],[115,105,70,6.0178608894348145],[115,105,71,6.014236927032471],[115,105,72,6.0120463371276855],[115,105,73,6.012378215789795],[115,105,74,6.012474060058594],[115,105,75,6.016749382019043],[115,105,76,6.0334553718566895],[115,105,77,6.058749198913574],[115,105,78,6.076561450958252],[115,105,79,6.080285549163818],[115,106,64,6.030251979827881],[115,106,65,6.037074565887451],[115,106,66,6.038665294647217],[115,106,67,6.034188747406006],[115,106,68,6.028587818145752],[115,106,69,6.022512435913086],[115,106,70,6.0178608894348145],[115,106,71,6.014236927032471],[115,106,72,6.0120463371276855],[115,106,73,6.012378215789795],[115,106,74,6.012474060058594],[115,106,75,6.016749382019043],[115,106,76,6.0334553718566895],[115,106,77,6.058749198913574],[115,106,78,6.076561450958252],[115,106,79,6.080285549163818],[115,107,64,6.030251979827881],[115,107,65,6.037074565887451],[115,107,66,6.038665294647217],[115,107,67,6.034188747406006],[115,107,68,6.028587818145752],[115,107,69,6.022512435913086],[115,107,70,6.0178608894348145],[115,107,71,6.014236927032471],[115,107,72,6.0120463371276855],[115,107,73,6.012378215789795],[115,107,74,6.012474060058594],[115,107,75,6.016749382019043],[115,107,76,6.0334553718566895],[115,107,77,6.058749198913574],[115,107,78,6.076561450958252],[115,107,79,6.080285549163818],[115,108,64,6.030251979827881],[115,108,65,6.037074565887451],[115,108,66,6.038665294647217],[115,108,67,6.034188747406006],[115,108,68,6.028587818145752],[115,108,69,6.022512435913086],[115,108,70,6.0178608894348145],[115,108,71,6.014236927032471],[115,108,72,6.0120463371276855],[115,108,73,6.012378215789795],[115,108,74,6.012474060058594],[115,108,75,6.016749382019043],[115,108,76,6.0334553718566895],[115,108,77,6.058749198913574],[115,108,78,6.076561450958252],[115,108,79,6.080285549163818],[115,109,64,6.030251979827881],[115,109,65,6.037074565887451],[115,109,66,6.038665294647217],[115,109,67,6.034188747406006],[115,109,68,6.028587818145752],[115,109,69,6.022512435913086],[115,109,70,6.0178608894348145],[115,109,71,6.014236927032471],[115,109,72,6.0120463371276855],[115,109,73,6.012378215789795],[115,109,74,6.012474060058594],[115,109,75,6.016749382019043],[115,109,76,6.0334553718566895],[115,109,77,6.058749198913574],[115,109,78,6.076561450958252],[115,109,79,6.080285549163818],[115,110,64,6.030251979827881],[115,110,65,6.037074565887451],[115,110,66,6.038665294647217],[115,110,67,6.034188747406006],[115,110,68,6.028587818145752],[115,110,69,6.022512435913086],[115,110,70,6.0178608894348145],[115,110,71,6.014236927032471],[115,110,72,6.0120463371276855],[115,110,73,6.012378215789795],[115,110,74,6.012474060058594],[115,110,75,6.016749382019043],[115,110,76,6.0334553718566895],[115,110,77,6.058749198913574],[115,110,78,6.076561450958252],[115,110,79,6.080285549163818],[115,111,64,6.030251979827881],[115,111,65,6.037074565887451],[115,111,66,6.038665294647217],[115,111,67,6.034188747406006],[115,111,68,6.028587818145752],[115,111,69,6.022512435913086],[115,111,70,6.0178608894348145],[115,111,71,6.014236927032471],[115,111,72,6.0120463371276855],[115,111,73,6.012378215789795],[115,111,74,6.012474060058594],[115,111,75,6.016749382019043],[115,111,76,6.0334553718566895],[115,111,77,6.058749198913574],[115,111,78,6.076561450958252],[115,111,79,6.080285549163818],[115,112,64,6.030251979827881],[115,112,65,6.037074565887451],[115,112,66,6.038665294647217],[115,112,67,6.034188747406006],[115,112,68,6.028587818145752],[115,112,69,6.022512435913086],[115,112,70,6.0178608894348145],[115,112,71,6.014236927032471],[115,112,72,6.0120463371276855],[115,112,73,6.012378215789795],[115,112,74,6.012474060058594],[115,112,75,6.016749382019043],[115,112,76,6.0334553718566895],[115,112,77,6.058749198913574],[115,112,78,6.076561450958252],[115,112,79,6.080285549163818],[115,113,64,6.030251979827881],[115,113,65,6.037074565887451],[115,113,66,6.038665294647217],[115,113,67,6.034188747406006],[115,113,68,6.028587818145752],[115,113,69,6.022512435913086],[115,113,70,6.0178608894348145],[115,113,71,6.014236927032471],[115,113,72,6.0120463371276855],[115,113,73,6.012378215789795],[115,113,74,6.012474060058594],[115,113,75,6.016749382019043],[115,113,76,6.0334553718566895],[115,113,77,6.058749198913574],[115,113,78,6.076561450958252],[115,113,79,6.080285549163818],[115,114,64,6.030251979827881],[115,114,65,6.037074565887451],[115,114,66,6.038665294647217],[115,114,67,6.034188747406006],[115,114,68,6.028587818145752],[115,114,69,6.022512435913086],[115,114,70,6.0178608894348145],[115,114,71,6.014236927032471],[115,114,72,6.0120463371276855],[115,114,73,6.012378215789795],[115,114,74,6.012474060058594],[115,114,75,6.016749382019043],[115,114,76,6.0334553718566895],[115,114,77,6.058749198913574],[115,114,78,6.076561450958252],[115,114,79,6.080285549163818],[115,115,64,6.030251979827881],[115,115,65,6.037074565887451],[115,115,66,6.038665294647217],[115,115,67,6.034188747406006],[115,115,68,6.028587818145752],[115,115,69,6.022512435913086],[115,115,70,6.0178608894348145],[115,115,71,6.014236927032471],[115,115,72,6.0120463371276855],[115,115,73,6.012378215789795],[115,115,74,6.012474060058594],[115,115,75,6.016749382019043],[115,115,76,6.0334553718566895],[115,115,77,6.058749198913574],[115,115,78,6.076561450958252],[115,115,79,6.080285549163818],[115,116,64,6.030251979827881],[115,116,65,6.037074565887451],[115,116,66,6.038665294647217],[115,116,67,6.034188747406006],[115,116,68,6.028587818145752],[115,116,69,6.022512435913086],[115,116,70,6.0178608894348145],[115,116,71,6.014236927032471],[115,116,72,6.0120463371276855],[115,116,73,6.012378215789795],[115,116,74,6.012474060058594],[115,116,75,6.016749382019043],[115,116,76,6.0334553718566895],[115,116,77,6.058749198913574],[115,116,78,6.076561450958252],[115,116,79,6.080285549163818],[115,117,64,6.030251979827881],[115,117,65,6.037074565887451],[115,117,66,6.038665294647217],[115,117,67,6.034188747406006],[115,117,68,6.028587818145752],[115,117,69,6.022512435913086],[115,117,70,6.0178608894348145],[115,117,71,6.014236927032471],[115,117,72,6.0120463371276855],[115,117,73,6.012378215789795],[115,117,74,6.012474060058594],[115,117,75,6.016749382019043],[115,117,76,6.0334553718566895],[115,117,77,6.058749198913574],[115,117,78,6.076561450958252],[115,117,79,6.080285549163818],[115,118,64,6.030251979827881],[115,118,65,6.037074565887451],[115,118,66,6.038665294647217],[115,118,67,6.034188747406006],[115,118,68,6.028587818145752],[115,118,69,6.022512435913086],[115,118,70,6.0178608894348145],[115,118,71,6.014236927032471],[115,118,72,6.0120463371276855],[115,118,73,6.012378215789795],[115,118,74,6.012474060058594],[115,118,75,6.016749382019043],[115,118,76,6.0334553718566895],[115,118,77,6.058749198913574],[115,118,78,6.076561450958252],[115,118,79,6.080285549163818],[115,119,64,6.030251979827881],[115,119,65,6.037074565887451],[115,119,66,6.038665294647217],[115,119,67,6.034188747406006],[115,119,68,6.028587818145752],[115,119,69,6.022512435913086],[115,119,70,6.0178608894348145],[115,119,71,6.014236927032471],[115,119,72,6.0120463371276855],[115,119,73,6.012378215789795],[115,119,74,6.012474060058594],[115,119,75,6.016749382019043],[115,119,76,6.0334553718566895],[115,119,77,6.058749198913574],[115,119,78,6.076561450958252],[115,119,79,6.080285549163818],[115,120,64,6.030251979827881],[115,120,65,6.037074565887451],[115,120,66,6.038665294647217],[115,120,67,6.034188747406006],[115,120,68,6.028587818145752],[115,120,69,6.022512435913086],[115,120,70,6.0178608894348145],[115,120,71,6.014236927032471],[115,120,72,6.0120463371276855],[115,120,73,6.012378215789795],[115,120,74,6.012474060058594],[115,120,75,6.016749382019043],[115,120,76,6.0334553718566895],[115,120,77,6.058749198913574],[115,120,78,6.076561450958252],[115,120,79,6.080285549163818],[115,121,64,6.030251979827881],[115,121,65,6.037074565887451],[115,121,66,6.038665294647217],[115,121,67,6.034188747406006],[115,121,68,6.028587818145752],[115,121,69,6.022512435913086],[115,121,70,6.0178608894348145],[115,121,71,6.014236927032471],[115,121,72,6.0120463371276855],[115,121,73,6.012378215789795],[115,121,74,6.012474060058594],[115,121,75,6.016749382019043],[115,121,76,6.0334553718566895],[115,121,77,6.058749198913574],[115,121,78,6.076561450958252],[115,121,79,6.080285549163818],[115,122,64,6.030251979827881],[115,122,65,6.037074565887451],[115,122,66,6.038665294647217],[115,122,67,6.034188747406006],[115,122,68,6.028587818145752],[115,122,69,6.022512435913086],[115,122,70,6.0178608894348145],[115,122,71,6.014236927032471],[115,122,72,6.0120463371276855],[115,122,73,6.012378215789795],[115,122,74,6.012474060058594],[115,122,75,6.016749382019043],[115,122,76,6.0334553718566895],[115,122,77,6.058749198913574],[115,122,78,6.076561450958252],[115,122,79,6.080285549163818],[115,123,64,6.030251979827881],[115,123,65,6.037074565887451],[115,123,66,6.038665294647217],[115,123,67,6.034188747406006],[115,123,68,6.028587818145752],[115,123,69,6.022512435913086],[115,123,70,6.0178608894348145],[115,123,71,6.014236927032471],[115,123,72,6.0120463371276855],[115,123,73,6.012378215789795],[115,123,74,6.012474060058594],[115,123,75,6.016749382019043],[115,123,76,6.0334553718566895],[115,123,77,6.058749198913574],[115,123,78,6.076561450958252],[115,123,79,6.080285549163818],[115,124,64,6.030251979827881],[115,124,65,6.037074565887451],[115,124,66,6.038665294647217],[115,124,67,6.034188747406006],[115,124,68,6.028587818145752],[115,124,69,6.022512435913086],[115,124,70,6.0178608894348145],[115,124,71,6.014236927032471],[115,124,72,6.0120463371276855],[115,124,73,6.012378215789795],[115,124,74,6.012474060058594],[115,124,75,6.016749382019043],[115,124,76,6.0334553718566895],[115,124,77,6.058749198913574],[115,124,78,6.076561450958252],[115,124,79,6.080285549163818],[115,125,64,6.030251979827881],[115,125,65,6.037074565887451],[115,125,66,6.038665294647217],[115,125,67,6.034188747406006],[115,125,68,6.028587818145752],[115,125,69,6.022512435913086],[115,125,70,6.0178608894348145],[115,125,71,6.014236927032471],[115,125,72,6.0120463371276855],[115,125,73,6.012378215789795],[115,125,74,6.012474060058594],[115,125,75,6.016749382019043],[115,125,76,6.0334553718566895],[115,125,77,6.058749198913574],[115,125,78,6.076561450958252],[115,125,79,6.080285549163818],[115,126,64,6.030251979827881],[115,126,65,6.037074565887451],[115,126,66,6.038665294647217],[115,126,67,6.034188747406006],[115,126,68,6.028587818145752],[115,126,69,6.022512435913086],[115,126,70,6.0178608894348145],[115,126,71,6.014236927032471],[115,126,72,6.0120463371276855],[115,126,73,6.012378215789795],[115,126,74,6.012474060058594],[115,126,75,6.016749382019043],[115,126,76,6.0334553718566895],[115,126,77,6.058749198913574],[115,126,78,6.076561450958252],[115,126,79,6.080285549163818],[115,127,64,6.030251979827881],[115,127,65,6.037074565887451],[115,127,66,6.038665294647217],[115,127,67,6.034188747406006],[115,127,68,6.028587818145752],[115,127,69,6.022512435913086],[115,127,70,6.0178608894348145],[115,127,71,6.014236927032471],[115,127,72,6.0120463371276855],[115,127,73,6.012378215789795],[115,127,74,6.012474060058594],[115,127,75,6.016749382019043],[115,127,76,6.0334553718566895],[115,127,77,6.058749198913574],[115,127,78,6.076561450958252],[115,127,79,6.080285549163818],[115,128,64,6.030251979827881],[115,128,65,6.037074565887451],[115,128,66,6.038665294647217],[115,128,67,6.034188747406006],[115,128,68,6.028587818145752],[115,128,69,6.022512435913086],[115,128,70,6.0178608894348145],[115,128,71,6.014236927032471],[115,128,72,6.0120463371276855],[115,128,73,6.012378215789795],[115,128,74,6.012474060058594],[115,128,75,6.016749382019043],[115,128,76,6.0334553718566895],[115,128,77,6.058749198913574],[115,128,78,6.076561450958252],[115,128,79,6.080285549163818],[115,129,64,6.030251979827881],[115,129,65,6.037074565887451],[115,129,66,6.038665294647217],[115,129,67,6.034188747406006],[115,129,68,6.028587818145752],[115,129,69,6.022512435913086],[115,129,70,6.0178608894348145],[115,129,71,6.014236927032471],[115,129,72,6.0120463371276855],[115,129,73,6.012378215789795],[115,129,74,6.012474060058594],[115,129,75,6.016749382019043],[115,129,76,6.0334553718566895],[115,129,77,6.058749198913574],[115,129,78,6.076561450958252],[115,129,79,6.080285549163818],[115,130,64,6.030251979827881],[115,130,65,6.037074565887451],[115,130,66,6.038665294647217],[115,130,67,6.034188747406006],[115,130,68,6.028587818145752],[115,130,69,6.022512435913086],[115,130,70,6.0178608894348145],[115,130,71,6.014236927032471],[115,130,72,6.0120463371276855],[115,130,73,6.012378215789795],[115,130,74,6.012474060058594],[115,130,75,6.016749382019043],[115,130,76,6.0334553718566895],[115,130,77,6.058749198913574],[115,130,78,6.076561450958252],[115,130,79,6.080285549163818],[115,131,64,6.030251979827881],[115,131,65,6.037074565887451],[115,131,66,6.038665294647217],[115,131,67,6.034188747406006],[115,131,68,6.028587818145752],[115,131,69,6.022512435913086],[115,131,70,6.0178608894348145],[115,131,71,6.014236927032471],[115,131,72,6.0120463371276855],[115,131,73,6.012378215789795],[115,131,74,6.012474060058594],[115,131,75,6.016749382019043],[115,131,76,6.0334553718566895],[115,131,77,6.058749198913574],[115,131,78,6.076561450958252],[115,131,79,6.080285549163818],[115,132,64,6.030251979827881],[115,132,65,6.037074565887451],[115,132,66,6.038665294647217],[115,132,67,6.034188747406006],[115,132,68,6.028587818145752],[115,132,69,6.022512435913086],[115,132,70,6.0178608894348145],[115,132,71,6.014236927032471],[115,132,72,6.0120463371276855],[115,132,73,6.012378215789795],[115,132,74,6.012474060058594],[115,132,75,6.016749382019043],[115,132,76,6.0334553718566895],[115,132,77,6.058749198913574],[115,132,78,6.076561450958252],[115,132,79,6.080285549163818],[115,133,64,6.030251979827881],[115,133,65,6.037074565887451],[115,133,66,6.038665294647217],[115,133,67,6.034188747406006],[115,133,68,6.028587818145752],[115,133,69,6.022512435913086],[115,133,70,6.0178608894348145],[115,133,71,6.014236927032471],[115,133,72,6.0120463371276855],[115,133,73,6.012378215789795],[115,133,74,6.012474060058594],[115,133,75,6.016749382019043],[115,133,76,6.0334553718566895],[115,133,77,6.058749198913574],[115,133,78,6.076561450958252],[115,133,79,6.080285549163818],[115,134,64,6.030251979827881],[115,134,65,6.037074565887451],[115,134,66,6.038665294647217],[115,134,67,6.034188747406006],[115,134,68,6.028587818145752],[115,134,69,6.022512435913086],[115,134,70,6.0178608894348145],[115,134,71,6.014236927032471],[115,134,72,6.0120463371276855],[115,134,73,6.012378215789795],[115,134,74,6.012474060058594],[115,134,75,6.016749382019043],[115,134,76,6.0334553718566895],[115,134,77,6.058749198913574],[115,134,78,6.076561450958252],[115,134,79,6.080285549163818],[115,135,64,6.030251979827881],[115,135,65,6.037074565887451],[115,135,66,6.038665294647217],[115,135,67,6.034188747406006],[115,135,68,6.028587818145752],[115,135,69,6.022512435913086],[115,135,70,6.0178608894348145],[115,135,71,6.014236927032471],[115,135,72,6.0120463371276855],[115,135,73,6.012378215789795],[115,135,74,6.012474060058594],[115,135,75,6.016749382019043],[115,135,76,6.0334553718566895],[115,135,77,6.058749198913574],[115,135,78,6.076561450958252],[115,135,79,6.080285549163818],[115,136,64,6.030251979827881],[115,136,65,6.037074565887451],[115,136,66,6.038665294647217],[115,136,67,6.034188747406006],[115,136,68,6.028587818145752],[115,136,69,6.022512435913086],[115,136,70,6.0178608894348145],[115,136,71,6.014236927032471],[115,136,72,6.0120463371276855],[115,136,73,6.012378215789795],[115,136,74,6.012474060058594],[115,136,75,6.016749382019043],[115,136,76,6.0334553718566895],[115,136,77,6.058749198913574],[115,136,78,6.076561450958252],[115,136,79,6.080285549163818],[115,137,64,6.030251979827881],[115,137,65,6.037074565887451],[115,137,66,6.038665294647217],[115,137,67,6.034188747406006],[115,137,68,6.028587818145752],[115,137,69,6.022512435913086],[115,137,70,6.0178608894348145],[115,137,71,6.014236927032471],[115,137,72,6.0120463371276855],[115,137,73,6.012378215789795],[115,137,74,6.012474060058594],[115,137,75,6.016749382019043],[115,137,76,6.0334553718566895],[115,137,77,6.058749198913574],[115,137,78,6.076561450958252],[115,137,79,6.080285549163818],[115,138,64,6.030251979827881],[115,138,65,6.037074565887451],[115,138,66,6.038665294647217],[115,138,67,6.034188747406006],[115,138,68,6.028587818145752],[115,138,69,6.022512435913086],[115,138,70,6.0178608894348145],[115,138,71,6.014236927032471],[115,138,72,6.0120463371276855],[115,138,73,6.012378215789795],[115,138,74,6.012474060058594],[115,138,75,6.016749382019043],[115,138,76,6.0334553718566895],[115,138,77,6.058749198913574],[115,138,78,6.076561450958252],[115,138,79,6.080285549163818],[115,139,64,6.030251979827881],[115,139,65,6.037074565887451],[115,139,66,6.038665294647217],[115,139,67,6.034188747406006],[115,139,68,6.028587818145752],[115,139,69,6.022512435913086],[115,139,70,6.0178608894348145],[115,139,71,6.014236927032471],[115,139,72,6.0120463371276855],[115,139,73,6.012378215789795],[115,139,74,6.012474060058594],[115,139,75,6.016749382019043],[115,139,76,6.0334553718566895],[115,139,77,6.058749198913574],[115,139,78,6.076561450958252],[115,139,79,6.080285549163818],[115,140,64,6.030251979827881],[115,140,65,6.037074565887451],[115,140,66,6.038665294647217],[115,140,67,6.034188747406006],[115,140,68,6.028587818145752],[115,140,69,6.022512435913086],[115,140,70,6.0178608894348145],[115,140,71,6.014236927032471],[115,140,72,6.0120463371276855],[115,140,73,6.012378215789795],[115,140,74,6.012474060058594],[115,140,75,6.016749382019043],[115,140,76,6.0334553718566895],[115,140,77,6.058749198913574],[115,140,78,6.076561450958252],[115,140,79,6.080285549163818],[115,141,64,6.030251979827881],[115,141,65,6.037074565887451],[115,141,66,6.038665294647217],[115,141,67,6.034188747406006],[115,141,68,6.028587818145752],[115,141,69,6.022512435913086],[115,141,70,6.0178608894348145],[115,141,71,6.014236927032471],[115,141,72,6.0120463371276855],[115,141,73,6.012378215789795],[115,141,74,6.012474060058594],[115,141,75,6.016749382019043],[115,141,76,6.0334553718566895],[115,141,77,6.058749198913574],[115,141,78,6.076561450958252],[115,141,79,6.080285549163818],[115,142,64,6.030251979827881],[115,142,65,6.037074565887451],[115,142,66,6.038665294647217],[115,142,67,6.034188747406006],[115,142,68,6.028587818145752],[115,142,69,6.022512435913086],[115,142,70,6.0178608894348145],[115,142,71,6.014236927032471],[115,142,72,6.0120463371276855],[115,142,73,6.012378215789795],[115,142,74,6.012474060058594],[115,142,75,6.016749382019043],[115,142,76,6.0334553718566895],[115,142,77,6.058749198913574],[115,142,78,6.076561450958252],[115,142,79,6.080285549163818],[115,143,64,6.030251979827881],[115,143,65,6.037074565887451],[115,143,66,6.038665294647217],[115,143,67,6.034188747406006],[115,143,68,6.028587818145752],[115,143,69,6.022512435913086],[115,143,70,6.0178608894348145],[115,143,71,6.014236927032471],[115,143,72,6.0120463371276855],[115,143,73,6.012378215789795],[115,143,74,6.012474060058594],[115,143,75,6.016749382019043],[115,143,76,6.0334553718566895],[115,143,77,6.058749198913574],[115,143,78,6.076561450958252],[115,143,79,6.080285549163818],[115,144,64,6.030251979827881],[115,144,65,6.037074565887451],[115,144,66,6.038665294647217],[115,144,67,6.034188747406006],[115,144,68,6.028587818145752],[115,144,69,6.022512435913086],[115,144,70,6.0178608894348145],[115,144,71,6.014236927032471],[115,144,72,6.0120463371276855],[115,144,73,6.012378215789795],[115,144,74,6.012474060058594],[115,144,75,6.016749382019043],[115,144,76,6.0334553718566895],[115,144,77,6.058749198913574],[115,144,78,6.076561450958252],[115,144,79,6.080285549163818],[115,145,64,6.030251979827881],[115,145,65,6.037074565887451],[115,145,66,6.038665294647217],[115,145,67,6.034188747406006],[115,145,68,6.028587818145752],[115,145,69,6.022512435913086],[115,145,70,6.0178608894348145],[115,145,71,6.014236927032471],[115,145,72,6.0120463371276855],[115,145,73,6.012378215789795],[115,145,74,6.012474060058594],[115,145,75,6.016749382019043],[115,145,76,6.0334553718566895],[115,145,77,6.058749198913574],[115,145,78,6.076561450958252],[115,145,79,6.080285549163818],[115,146,64,6.030251979827881],[115,146,65,6.037074565887451],[115,146,66,6.038665294647217],[115,146,67,6.034188747406006],[115,146,68,6.028587818145752],[115,146,69,6.022512435913086],[115,146,70,6.0178608894348145],[115,146,71,6.014236927032471],[115,146,72,6.0120463371276855],[115,146,73,6.012378215789795],[115,146,74,6.012474060058594],[115,146,75,6.016749382019043],[115,146,76,6.0334553718566895],[115,146,77,6.058749198913574],[115,146,78,6.076561450958252],[115,146,79,6.080285549163818],[115,147,64,6.030251979827881],[115,147,65,6.037074565887451],[115,147,66,6.038665294647217],[115,147,67,6.034188747406006],[115,147,68,6.028587818145752],[115,147,69,6.022512435913086],[115,147,70,6.0178608894348145],[115,147,71,6.014236927032471],[115,147,72,6.0120463371276855],[115,147,73,6.012378215789795],[115,147,74,6.012474060058594],[115,147,75,6.016749382019043],[115,147,76,6.0334553718566895],[115,147,77,6.058749198913574],[115,147,78,6.076561450958252],[115,147,79,6.080285549163818],[115,148,64,6.030251979827881],[115,148,65,6.037074565887451],[115,148,66,6.038665294647217],[115,148,67,6.034188747406006],[115,148,68,6.028587818145752],[115,148,69,6.022512435913086],[115,148,70,6.0178608894348145],[115,148,71,6.014236927032471],[115,148,72,6.0120463371276855],[115,148,73,6.012378215789795],[115,148,74,6.012474060058594],[115,148,75,6.016749382019043],[115,148,76,6.0334553718566895],[115,148,77,6.058749198913574],[115,148,78,6.076561450958252],[115,148,79,6.080285549163818],[115,149,64,6.030251979827881],[115,149,65,6.037074565887451],[115,149,66,6.038665294647217],[115,149,67,6.034188747406006],[115,149,68,6.028587818145752],[115,149,69,6.022512435913086],[115,149,70,6.0178608894348145],[115,149,71,6.014236927032471],[115,149,72,6.0120463371276855],[115,149,73,6.012378215789795],[115,149,74,6.012474060058594],[115,149,75,6.016749382019043],[115,149,76,6.0334553718566895],[115,149,77,6.058749198913574],[115,149,78,6.076561450958252],[115,149,79,6.080285549163818],[115,150,64,6.030251979827881],[115,150,65,6.037074565887451],[115,150,66,6.038665294647217],[115,150,67,6.034188747406006],[115,150,68,6.028587818145752],[115,150,69,6.022512435913086],[115,150,70,6.0178608894348145],[115,150,71,6.014236927032471],[115,150,72,6.0120463371276855],[115,150,73,6.012378215789795],[115,150,74,6.012474060058594],[115,150,75,6.016749382019043],[115,150,76,6.0334553718566895],[115,150,77,6.058749198913574],[115,150,78,6.076561450958252],[115,150,79,6.080285549163818],[115,151,64,6.030251979827881],[115,151,65,6.037074565887451],[115,151,66,6.038665294647217],[115,151,67,6.034188747406006],[115,151,68,6.028587818145752],[115,151,69,6.022512435913086],[115,151,70,6.0178608894348145],[115,151,71,6.014236927032471],[115,151,72,6.0120463371276855],[115,151,73,6.012378215789795],[115,151,74,6.012474060058594],[115,151,75,6.016749382019043],[115,151,76,6.0334553718566895],[115,151,77,6.058749198913574],[115,151,78,6.076561450958252],[115,151,79,6.080285549163818],[115,152,64,6.030251979827881],[115,152,65,6.037074565887451],[115,152,66,6.038665294647217],[115,152,67,6.034188747406006],[115,152,68,6.028587818145752],[115,152,69,6.022512435913086],[115,152,70,6.0178608894348145],[115,152,71,6.014236927032471],[115,152,72,6.0120463371276855],[115,152,73,6.012378215789795],[115,152,74,6.012474060058594],[115,152,75,6.016749382019043],[115,152,76,6.0334553718566895],[115,152,77,6.058749198913574],[115,152,78,6.076561450958252],[115,152,79,6.080285549163818],[115,153,64,6.030251979827881],[115,153,65,6.037074565887451],[115,153,66,6.038665294647217],[115,153,67,6.034188747406006],[115,153,68,6.028587818145752],[115,153,69,6.022512435913086],[115,153,70,6.0178608894348145],[115,153,71,6.014236927032471],[115,153,72,6.0120463371276855],[115,153,73,6.012378215789795],[115,153,74,6.012474060058594],[115,153,75,6.016749382019043],[115,153,76,6.0334553718566895],[115,153,77,6.058749198913574],[115,153,78,6.076561450958252],[115,153,79,6.080285549163818],[115,154,64,6.030251979827881],[115,154,65,6.037074565887451],[115,154,66,6.038665294647217],[115,154,67,6.034188747406006],[115,154,68,6.028587818145752],[115,154,69,6.022512435913086],[115,154,70,6.0178608894348145],[115,154,71,6.014236927032471],[115,154,72,6.0120463371276855],[115,154,73,6.012378215789795],[115,154,74,6.012474060058594],[115,154,75,6.016749382019043],[115,154,76,6.0334553718566895],[115,154,77,6.058749198913574],[115,154,78,6.076561450958252],[115,154,79,6.080285549163818],[115,155,64,6.030251979827881],[115,155,65,6.037074565887451],[115,155,66,6.038665294647217],[115,155,67,6.034188747406006],[115,155,68,6.028587818145752],[115,155,69,6.022512435913086],[115,155,70,6.0178608894348145],[115,155,71,6.014236927032471],[115,155,72,6.0120463371276855],[115,155,73,6.012378215789795],[115,155,74,6.012474060058594],[115,155,75,6.016749382019043],[115,155,76,6.0334553718566895],[115,155,77,6.058749198913574],[115,155,78,6.076561450958252],[115,155,79,6.080285549163818],[115,156,64,6.030251979827881],[115,156,65,6.037074565887451],[115,156,66,6.038665294647217],[115,156,67,6.034188747406006],[115,156,68,6.028587818145752],[115,156,69,6.022512435913086],[115,156,70,6.0178608894348145],[115,156,71,6.014236927032471],[115,156,72,6.0120463371276855],[115,156,73,6.012378215789795],[115,156,74,6.012474060058594],[115,156,75,6.016749382019043],[115,156,76,6.0334553718566895],[115,156,77,6.058749198913574],[115,156,78,6.076561450958252],[115,156,79,6.080285549163818],[115,157,64,6.030251979827881],[115,157,65,6.037074565887451],[115,157,66,6.038665294647217],[115,157,67,6.034188747406006],[115,157,68,6.028587818145752],[115,157,69,6.022512435913086],[115,157,70,6.0178608894348145],[115,157,71,6.014236927032471],[115,157,72,6.0120463371276855],[115,157,73,6.012378215789795],[115,157,74,6.012474060058594],[115,157,75,6.016749382019043],[115,157,76,6.0334553718566895],[115,157,77,6.058749198913574],[115,157,78,6.076561450958252],[115,157,79,6.080285549163818],[115,158,64,6.030251979827881],[115,158,65,6.037074565887451],[115,158,66,6.038665294647217],[115,158,67,6.034188747406006],[115,158,68,6.028587818145752],[115,158,69,6.022512435913086],[115,158,70,6.0178608894348145],[115,158,71,6.014236927032471],[115,158,72,6.0120463371276855],[115,158,73,6.012378215789795],[115,158,74,6.012474060058594],[115,158,75,6.016749382019043],[115,158,76,6.0334553718566895],[115,158,77,6.058749198913574],[115,158,78,6.076561450958252],[115,158,79,6.080285549163818],[115,159,64,6.030251979827881],[115,159,65,6.037074565887451],[115,159,66,6.038665294647217],[115,159,67,6.034188747406006],[115,159,68,6.028587818145752],[115,159,69,6.022512435913086],[115,159,70,6.0178608894348145],[115,159,71,6.014236927032471],[115,159,72,6.0120463371276855],[115,159,73,6.012378215789795],[115,159,74,6.012474060058594],[115,159,75,6.016749382019043],[115,159,76,6.0334553718566895],[115,159,77,6.058749198913574],[115,159,78,6.076561450958252],[115,159,79,6.080285549163818],[115,160,64,6.030251979827881],[115,160,65,6.037074565887451],[115,160,66,6.038665294647217],[115,160,67,6.034188747406006],[115,160,68,6.028587818145752],[115,160,69,6.022512435913086],[115,160,70,6.0178608894348145],[115,160,71,6.014236927032471],[115,160,72,6.0120463371276855],[115,160,73,6.012378215789795],[115,160,74,6.012474060058594],[115,160,75,6.016749382019043],[115,160,76,6.0334553718566895],[115,160,77,6.058749198913574],[115,160,78,6.076561450958252],[115,160,79,6.080285549163818],[115,161,64,6.030251979827881],[115,161,65,6.037074565887451],[115,161,66,6.038665294647217],[115,161,67,6.034188747406006],[115,161,68,6.028587818145752],[115,161,69,6.022512435913086],[115,161,70,6.0178608894348145],[115,161,71,6.014236927032471],[115,161,72,6.0120463371276855],[115,161,73,6.012378215789795],[115,161,74,6.012474060058594],[115,161,75,6.016749382019043],[115,161,76,6.0334553718566895],[115,161,77,6.058749198913574],[115,161,78,6.076561450958252],[115,161,79,6.080285549163818],[115,162,64,6.030251979827881],[115,162,65,6.037074565887451],[115,162,66,6.038665294647217],[115,162,67,6.034188747406006],[115,162,68,6.028587818145752],[115,162,69,6.022512435913086],[115,162,70,6.0178608894348145],[115,162,71,6.014236927032471],[115,162,72,6.0120463371276855],[115,162,73,6.012378215789795],[115,162,74,6.012474060058594],[115,162,75,6.016749382019043],[115,162,76,6.0334553718566895],[115,162,77,6.058749198913574],[115,162,78,6.076561450958252],[115,162,79,6.080285549163818],[115,163,64,6.030251979827881],[115,163,65,6.037074565887451],[115,163,66,6.038665294647217],[115,163,67,6.034188747406006],[115,163,68,6.028587818145752],[115,163,69,6.022512435913086],[115,163,70,6.0178608894348145],[115,163,71,6.014236927032471],[115,163,72,6.0120463371276855],[115,163,73,6.012378215789795],[115,163,74,6.012474060058594],[115,163,75,6.016749382019043],[115,163,76,6.0334553718566895],[115,163,77,6.058749198913574],[115,163,78,6.076561450958252],[115,163,79,6.080285549163818],[115,164,64,6.030251979827881],[115,164,65,6.037074565887451],[115,164,66,6.038665294647217],[115,164,67,6.034188747406006],[115,164,68,6.028587818145752],[115,164,69,6.022512435913086],[115,164,70,6.0178608894348145],[115,164,71,6.014236927032471],[115,164,72,6.0120463371276855],[115,164,73,6.012378215789795],[115,164,74,6.012474060058594],[115,164,75,6.016749382019043],[115,164,76,6.0334553718566895],[115,164,77,6.058749198913574],[115,164,78,6.076561450958252],[115,164,79,6.080285549163818],[115,165,64,6.030251979827881],[115,165,65,6.037074565887451],[115,165,66,6.038665294647217],[115,165,67,6.034188747406006],[115,165,68,6.028587818145752],[115,165,69,6.022512435913086],[115,165,70,6.0178608894348145],[115,165,71,6.014236927032471],[115,165,72,6.0120463371276855],[115,165,73,6.012378215789795],[115,165,74,6.012474060058594],[115,165,75,6.016749382019043],[115,165,76,6.0334553718566895],[115,165,77,6.058749198913574],[115,165,78,6.076561450958252],[115,165,79,6.080285549163818],[115,166,64,6.030251979827881],[115,166,65,6.037074565887451],[115,166,66,6.038665294647217],[115,166,67,6.034188747406006],[115,166,68,6.028587818145752],[115,166,69,6.022512435913086],[115,166,70,6.0178608894348145],[115,166,71,6.014236927032471],[115,166,72,6.0120463371276855],[115,166,73,6.012378215789795],[115,166,74,6.012474060058594],[115,166,75,6.016749382019043],[115,166,76,6.0334553718566895],[115,166,77,6.058749198913574],[115,166,78,6.076561450958252],[115,166,79,6.080285549163818],[115,167,64,6.030251979827881],[115,167,65,6.037074565887451],[115,167,66,6.038665294647217],[115,167,67,6.034188747406006],[115,167,68,6.028587818145752],[115,167,69,6.022512435913086],[115,167,70,6.0178608894348145],[115,167,71,6.014236927032471],[115,167,72,6.0120463371276855],[115,167,73,6.012378215789795],[115,167,74,6.012474060058594],[115,167,75,6.016749382019043],[115,167,76,6.0334553718566895],[115,167,77,6.058749198913574],[115,167,78,6.076561450958252],[115,167,79,6.080285549163818],[115,168,64,6.030251979827881],[115,168,65,6.037074565887451],[115,168,66,6.038665294647217],[115,168,67,6.034188747406006],[115,168,68,6.028587818145752],[115,168,69,6.022512435913086],[115,168,70,6.0178608894348145],[115,168,71,6.014236927032471],[115,168,72,6.0120463371276855],[115,168,73,6.012378215789795],[115,168,74,6.012474060058594],[115,168,75,6.016749382019043],[115,168,76,6.0334553718566895],[115,168,77,6.058749198913574],[115,168,78,6.076561450958252],[115,168,79,6.080285549163818],[115,169,64,6.030251979827881],[115,169,65,6.037074565887451],[115,169,66,6.038665294647217],[115,169,67,6.034188747406006],[115,169,68,6.028587818145752],[115,169,69,6.022512435913086],[115,169,70,6.0178608894348145],[115,169,71,6.014236927032471],[115,169,72,6.0120463371276855],[115,169,73,6.012378215789795],[115,169,74,6.012474060058594],[115,169,75,6.016749382019043],[115,169,76,6.0334553718566895],[115,169,77,6.058749198913574],[115,169,78,6.076561450958252],[115,169,79,6.080285549163818],[115,170,64,6.030251979827881],[115,170,65,6.037074565887451],[115,170,66,6.038665294647217],[115,170,67,6.034188747406006],[115,170,68,6.028587818145752],[115,170,69,6.022512435913086],[115,170,70,6.0178608894348145],[115,170,71,6.014236927032471],[115,170,72,6.0120463371276855],[115,170,73,6.012378215789795],[115,170,74,6.012474060058594],[115,170,75,6.016749382019043],[115,170,76,6.0334553718566895],[115,170,77,6.058749198913574],[115,170,78,6.076561450958252],[115,170,79,6.080285549163818],[115,171,64,6.030251979827881],[115,171,65,6.037074565887451],[115,171,66,6.038665294647217],[115,171,67,6.034188747406006],[115,171,68,6.028587818145752],[115,171,69,6.022512435913086],[115,171,70,6.0178608894348145],[115,171,71,6.014236927032471],[115,171,72,6.0120463371276855],[115,171,73,6.012378215789795],[115,171,74,6.012474060058594],[115,171,75,6.016749382019043],[115,171,76,6.0334553718566895],[115,171,77,6.058749198913574],[115,171,78,6.076561450958252],[115,171,79,6.080285549163818],[115,172,64,6.030251979827881],[115,172,65,6.037074565887451],[115,172,66,6.038665294647217],[115,172,67,6.034188747406006],[115,172,68,6.028587818145752],[115,172,69,6.022512435913086],[115,172,70,6.0178608894348145],[115,172,71,6.014236927032471],[115,172,72,6.0120463371276855],[115,172,73,6.012378215789795],[115,172,74,6.012474060058594],[115,172,75,6.016749382019043],[115,172,76,6.0334553718566895],[115,172,77,6.058749198913574],[115,172,78,6.076561450958252],[115,172,79,6.080285549163818],[115,173,64,6.030251979827881],[115,173,65,6.037074565887451],[115,173,66,6.038665294647217],[115,173,67,6.034188747406006],[115,173,68,6.028587818145752],[115,173,69,6.022512435913086],[115,173,70,6.0178608894348145],[115,173,71,6.014236927032471],[115,173,72,6.0120463371276855],[115,173,73,6.012378215789795],[115,173,74,6.012474060058594],[115,173,75,6.016749382019043],[115,173,76,6.0334553718566895],[115,173,77,6.058749198913574],[115,173,78,6.076561450958252],[115,173,79,6.080285549163818],[115,174,64,6.030251979827881],[115,174,65,6.037074565887451],[115,174,66,6.038665294647217],[115,174,67,6.034188747406006],[115,174,68,6.028587818145752],[115,174,69,6.022512435913086],[115,174,70,6.0178608894348145],[115,174,71,6.014236927032471],[115,174,72,6.0120463371276855],[115,174,73,6.012378215789795],[115,174,74,6.012474060058594],[115,174,75,6.016749382019043],[115,174,76,6.0334553718566895],[115,174,77,6.058749198913574],[115,174,78,6.076561450958252],[115,174,79,6.080285549163818],[115,175,64,6.030251979827881],[115,175,65,6.037074565887451],[115,175,66,6.038665294647217],[115,175,67,6.034188747406006],[115,175,68,6.028587818145752],[115,175,69,6.022512435913086],[115,175,70,6.0178608894348145],[115,175,71,6.014236927032471],[115,175,72,6.0120463371276855],[115,175,73,6.012378215789795],[115,175,74,6.012474060058594],[115,175,75,6.016749382019043],[115,175,76,6.0334553718566895],[115,175,77,6.058749198913574],[115,175,78,6.076561450958252],[115,175,79,6.080285549163818],[115,176,64,6.030251979827881],[115,176,65,6.037074565887451],[115,176,66,6.038665294647217],[115,176,67,6.034188747406006],[115,176,68,6.028587818145752],[115,176,69,6.022512435913086],[115,176,70,6.0178608894348145],[115,176,71,6.014236927032471],[115,176,72,6.0120463371276855],[115,176,73,6.012378215789795],[115,176,74,6.012474060058594],[115,176,75,6.016749382019043],[115,176,76,6.0334553718566895],[115,176,77,6.058749198913574],[115,176,78,6.076561450958252],[115,176,79,6.080285549163818],[115,177,64,6.030251979827881],[115,177,65,6.037074565887451],[115,177,66,6.038665294647217],[115,177,67,6.034188747406006],[115,177,68,6.028587818145752],[115,177,69,6.022512435913086],[115,177,70,6.0178608894348145],[115,177,71,6.014236927032471],[115,177,72,6.0120463371276855],[115,177,73,6.012378215789795],[115,177,74,6.012474060058594],[115,177,75,6.016749382019043],[115,177,76,6.0334553718566895],[115,177,77,6.058749198913574],[115,177,78,6.076561450958252],[115,177,79,6.080285549163818],[115,178,64,6.030251979827881],[115,178,65,6.037074565887451],[115,178,66,6.038665294647217],[115,178,67,6.034188747406006],[115,178,68,6.028587818145752],[115,178,69,6.022512435913086],[115,178,70,6.0178608894348145],[115,178,71,6.014236927032471],[115,178,72,6.0120463371276855],[115,178,73,6.012378215789795],[115,178,74,6.012474060058594],[115,178,75,6.016749382019043],[115,178,76,6.0334553718566895],[115,178,77,6.058749198913574],[115,178,78,6.076561450958252],[115,178,79,6.080285549163818],[115,179,64,6.030251979827881],[115,179,65,6.037074565887451],[115,179,66,6.038665294647217],[115,179,67,6.034188747406006],[115,179,68,6.028587818145752],[115,179,69,6.022512435913086],[115,179,70,6.0178608894348145],[115,179,71,6.014236927032471],[115,179,72,6.0120463371276855],[115,179,73,6.012378215789795],[115,179,74,6.012474060058594],[115,179,75,6.016749382019043],[115,179,76,6.0334553718566895],[115,179,77,6.058749198913574],[115,179,78,6.076561450958252],[115,179,79,6.080285549163818],[115,180,64,6.030251979827881],[115,180,65,6.037074565887451],[115,180,66,6.038665294647217],[115,180,67,6.034188747406006],[115,180,68,6.028587818145752],[115,180,69,6.022512435913086],[115,180,70,6.0178608894348145],[115,180,71,6.014236927032471],[115,180,72,6.0120463371276855],[115,180,73,6.012378215789795],[115,180,74,6.012474060058594],[115,180,75,6.016749382019043],[115,180,76,6.0334553718566895],[115,180,77,6.058749198913574],[115,180,78,6.076561450958252],[115,180,79,6.080285549163818],[115,181,64,6.030251979827881],[115,181,65,6.037074565887451],[115,181,66,6.038665294647217],[115,181,67,6.034188747406006],[115,181,68,6.028587818145752],[115,181,69,6.022512435913086],[115,181,70,6.0178608894348145],[115,181,71,6.014236927032471],[115,181,72,6.0120463371276855],[115,181,73,6.012378215789795],[115,181,74,6.012474060058594],[115,181,75,6.016749382019043],[115,181,76,6.0334553718566895],[115,181,77,6.058749198913574],[115,181,78,6.076561450958252],[115,181,79,6.080285549163818],[115,182,64,6.030251979827881],[115,182,65,6.037074565887451],[115,182,66,6.038665294647217],[115,182,67,6.034188747406006],[115,182,68,6.028587818145752],[115,182,69,6.022512435913086],[115,182,70,6.0178608894348145],[115,182,71,6.014236927032471],[115,182,72,6.0120463371276855],[115,182,73,6.012378215789795],[115,182,74,6.012474060058594],[115,182,75,6.016749382019043],[115,182,76,6.0334553718566895],[115,182,77,6.058749198913574],[115,182,78,6.076561450958252],[115,182,79,6.080285549163818],[115,183,64,6.030251979827881],[115,183,65,6.037074565887451],[115,183,66,6.038665294647217],[115,183,67,6.034188747406006],[115,183,68,6.028587818145752],[115,183,69,6.022512435913086],[115,183,70,6.0178608894348145],[115,183,71,6.014236927032471],[115,183,72,6.0120463371276855],[115,183,73,6.012378215789795],[115,183,74,6.012474060058594],[115,183,75,6.016749382019043],[115,183,76,6.0334553718566895],[115,183,77,6.058749198913574],[115,183,78,6.076561450958252],[115,183,79,6.080285549163818],[115,184,64,6.030251979827881],[115,184,65,6.037074565887451],[115,184,66,6.038665294647217],[115,184,67,6.034188747406006],[115,184,68,6.028587818145752],[115,184,69,6.022512435913086],[115,184,70,6.0178608894348145],[115,184,71,6.014236927032471],[115,184,72,6.0120463371276855],[115,184,73,6.012378215789795],[115,184,74,6.012474060058594],[115,184,75,6.016749382019043],[115,184,76,6.0334553718566895],[115,184,77,6.058749198913574],[115,184,78,6.076561450958252],[115,184,79,6.080285549163818],[115,185,64,6.030251979827881],[115,185,65,6.037074565887451],[115,185,66,6.038665294647217],[115,185,67,6.034188747406006],[115,185,68,6.028587818145752],[115,185,69,6.022512435913086],[115,185,70,6.0178608894348145],[115,185,71,6.014236927032471],[115,185,72,6.0120463371276855],[115,185,73,6.012378215789795],[115,185,74,6.012474060058594],[115,185,75,6.016749382019043],[115,185,76,6.0334553718566895],[115,185,77,6.058749198913574],[115,185,78,6.076561450958252],[115,185,79,6.080285549163818],[115,186,64,6.030251979827881],[115,186,65,6.037074565887451],[115,186,66,6.038665294647217],[115,186,67,6.034188747406006],[115,186,68,6.028587818145752],[115,186,69,6.022512435913086],[115,186,70,6.0178608894348145],[115,186,71,6.014236927032471],[115,186,72,6.0120463371276855],[115,186,73,6.012378215789795],[115,186,74,6.012474060058594],[115,186,75,6.016749382019043],[115,186,76,6.0334553718566895],[115,186,77,6.058749198913574],[115,186,78,6.076561450958252],[115,186,79,6.080285549163818],[115,187,64,6.030251979827881],[115,187,65,6.037074565887451],[115,187,66,6.038665294647217],[115,187,67,6.034188747406006],[115,187,68,6.028587818145752],[115,187,69,6.022512435913086],[115,187,70,6.0178608894348145],[115,187,71,6.014236927032471],[115,187,72,6.0120463371276855],[115,187,73,6.012378215789795],[115,187,74,6.012474060058594],[115,187,75,6.016749382019043],[115,187,76,6.0334553718566895],[115,187,77,6.058749198913574],[115,187,78,6.076561450958252],[115,187,79,6.080285549163818],[115,188,64,6.030251979827881],[115,188,65,6.037074565887451],[115,188,66,6.038665294647217],[115,188,67,6.034188747406006],[115,188,68,6.028587818145752],[115,188,69,6.022512435913086],[115,188,70,6.0178608894348145],[115,188,71,6.014236927032471],[115,188,72,6.0120463371276855],[115,188,73,6.012378215789795],[115,188,74,6.012474060058594],[115,188,75,6.016749382019043],[115,188,76,6.0334553718566895],[115,188,77,6.058749198913574],[115,188,78,6.076561450958252],[115,188,79,6.080285549163818],[115,189,64,6.030251979827881],[115,189,65,6.037074565887451],[115,189,66,6.038665294647217],[115,189,67,6.034188747406006],[115,189,68,6.028587818145752],[115,189,69,6.022512435913086],[115,189,70,6.0178608894348145],[115,189,71,6.014236927032471],[115,189,72,6.0120463371276855],[115,189,73,6.012378215789795],[115,189,74,6.012474060058594],[115,189,75,6.016749382019043],[115,189,76,6.0334553718566895],[115,189,77,6.058749198913574],[115,189,78,6.076561450958252],[115,189,79,6.080285549163818],[115,190,64,6.030251979827881],[115,190,65,6.037074565887451],[115,190,66,6.038665294647217],[115,190,67,6.034188747406006],[115,190,68,6.028587818145752],[115,190,69,6.022512435913086],[115,190,70,6.0178608894348145],[115,190,71,6.014236927032471],[115,190,72,6.0120463371276855],[115,190,73,6.012378215789795],[115,190,74,6.012474060058594],[115,190,75,6.016749382019043],[115,190,76,6.0334553718566895],[115,190,77,6.058749198913574],[115,190,78,6.076561450958252],[115,190,79,6.080285549163818],[115,191,64,6.030251979827881],[115,191,65,6.037074565887451],[115,191,66,6.038665294647217],[115,191,67,6.034188747406006],[115,191,68,6.028587818145752],[115,191,69,6.022512435913086],[115,191,70,6.0178608894348145],[115,191,71,6.014236927032471],[115,191,72,6.0120463371276855],[115,191,73,6.012378215789795],[115,191,74,6.012474060058594],[115,191,75,6.016749382019043],[115,191,76,6.0334553718566895],[115,191,77,6.058749198913574],[115,191,78,6.076561450958252],[115,191,79,6.080285549163818],[115,192,64,6.030251979827881],[115,192,65,6.037074565887451],[115,192,66,6.038665294647217],[115,192,67,6.034188747406006],[115,192,68,6.028587818145752],[115,192,69,6.022512435913086],[115,192,70,6.0178608894348145],[115,192,71,6.014236927032471],[115,192,72,6.0120463371276855],[115,192,73,6.012378215789795],[115,192,74,6.012474060058594],[115,192,75,6.016749382019043],[115,192,76,6.0334553718566895],[115,192,77,6.058749198913574],[115,192,78,6.076561450958252],[115,192,79,6.080285549163818],[115,193,64,6.030251979827881],[115,193,65,6.037074565887451],[115,193,66,6.038665294647217],[115,193,67,6.034188747406006],[115,193,68,6.028587818145752],[115,193,69,6.022512435913086],[115,193,70,6.0178608894348145],[115,193,71,6.014236927032471],[115,193,72,6.0120463371276855],[115,193,73,6.012378215789795],[115,193,74,6.012474060058594],[115,193,75,6.016749382019043],[115,193,76,6.0334553718566895],[115,193,77,6.058749198913574],[115,193,78,6.076561450958252],[115,193,79,6.080285549163818],[115,194,64,6.030251979827881],[115,194,65,6.037074565887451],[115,194,66,6.038665294647217],[115,194,67,6.034188747406006],[115,194,68,6.028587818145752],[115,194,69,6.022512435913086],[115,194,70,6.0178608894348145],[115,194,71,6.014236927032471],[115,194,72,6.0120463371276855],[115,194,73,6.012378215789795],[115,194,74,6.012474060058594],[115,194,75,6.016749382019043],[115,194,76,6.0334553718566895],[115,194,77,6.058749198913574],[115,194,78,6.076561450958252],[115,194,79,6.080285549163818],[115,195,64,6.030251979827881],[115,195,65,6.037074565887451],[115,195,66,6.038665294647217],[115,195,67,6.034188747406006],[115,195,68,6.028587818145752],[115,195,69,6.022512435913086],[115,195,70,6.0178608894348145],[115,195,71,6.014236927032471],[115,195,72,6.0120463371276855],[115,195,73,6.012378215789795],[115,195,74,6.012474060058594],[115,195,75,6.016749382019043],[115,195,76,6.0334553718566895],[115,195,77,6.058749198913574],[115,195,78,6.076561450958252],[115,195,79,6.080285549163818],[115,196,64,6.030251979827881],[115,196,65,6.037074565887451],[115,196,66,6.038665294647217],[115,196,67,6.034188747406006],[115,196,68,6.028587818145752],[115,196,69,6.022512435913086],[115,196,70,6.0178608894348145],[115,196,71,6.014236927032471],[115,196,72,6.0120463371276855],[115,196,73,6.012378215789795],[115,196,74,6.012474060058594],[115,196,75,6.016749382019043],[115,196,76,6.0334553718566895],[115,196,77,6.058749198913574],[115,196,78,6.076561450958252],[115,196,79,6.080285549163818],[115,197,64,6.030251979827881],[115,197,65,6.037074565887451],[115,197,66,6.038665294647217],[115,197,67,6.034188747406006],[115,197,68,6.028587818145752],[115,197,69,6.022512435913086],[115,197,70,6.0178608894348145],[115,197,71,6.014236927032471],[115,197,72,6.0120463371276855],[115,197,73,6.012378215789795],[115,197,74,6.012474060058594],[115,197,75,6.016749382019043],[115,197,76,6.0334553718566895],[115,197,77,6.058749198913574],[115,197,78,6.076561450958252],[115,197,79,6.080285549163818],[115,198,64,6.030251979827881],[115,198,65,6.037074565887451],[115,198,66,6.038665294647217],[115,198,67,6.034188747406006],[115,198,68,6.028587818145752],[115,198,69,6.022512435913086],[115,198,70,6.0178608894348145],[115,198,71,6.014236927032471],[115,198,72,6.0120463371276855],[115,198,73,6.012378215789795],[115,198,74,6.012474060058594],[115,198,75,6.016749382019043],[115,198,76,6.0334553718566895],[115,198,77,6.058749198913574],[115,198,78,6.076561450958252],[115,198,79,6.080285549163818],[115,199,64,6.030251979827881],[115,199,65,6.037074565887451],[115,199,66,6.038665294647217],[115,199,67,6.034188747406006],[115,199,68,6.028587818145752],[115,199,69,6.022512435913086],[115,199,70,6.0178608894348145],[115,199,71,6.014236927032471],[115,199,72,6.0120463371276855],[115,199,73,6.012378215789795],[115,199,74,6.012474060058594],[115,199,75,6.016749382019043],[115,199,76,6.0334553718566895],[115,199,77,6.058749198913574],[115,199,78,6.076561450958252],[115,199,79,6.080285549163818],[115,200,64,6.030251979827881],[115,200,65,6.037074565887451],[115,200,66,6.038665294647217],[115,200,67,6.034188747406006],[115,200,68,6.028587818145752],[115,200,69,6.022512435913086],[115,200,70,6.0178608894348145],[115,200,71,6.014236927032471],[115,200,72,6.0120463371276855],[115,200,73,6.012378215789795],[115,200,74,6.012474060058594],[115,200,75,6.016749382019043],[115,200,76,6.0334553718566895],[115,200,77,6.058749198913574],[115,200,78,6.076561450958252],[115,200,79,6.080285549163818],[115,201,64,6.030251979827881],[115,201,65,6.037074565887451],[115,201,66,6.038665294647217],[115,201,67,6.034188747406006],[115,201,68,6.028587818145752],[115,201,69,6.022512435913086],[115,201,70,6.0178608894348145],[115,201,71,6.014236927032471],[115,201,72,6.0120463371276855],[115,201,73,6.012378215789795],[115,201,74,6.012474060058594],[115,201,75,6.016749382019043],[115,201,76,6.0334553718566895],[115,201,77,6.058749198913574],[115,201,78,6.076561450958252],[115,201,79,6.080285549163818],[115,202,64,6.030251979827881],[115,202,65,6.037074565887451],[115,202,66,6.038665294647217],[115,202,67,6.034188747406006],[115,202,68,6.028587818145752],[115,202,69,6.022512435913086],[115,202,70,6.0178608894348145],[115,202,71,6.014236927032471],[115,202,72,6.0120463371276855],[115,202,73,6.012378215789795],[115,202,74,6.012474060058594],[115,202,75,6.016749382019043],[115,202,76,6.0334553718566895],[115,202,77,6.058749198913574],[115,202,78,6.076561450958252],[115,202,79,6.080285549163818],[115,203,64,6.030251979827881],[115,203,65,6.037074565887451],[115,203,66,6.038665294647217],[115,203,67,6.034188747406006],[115,203,68,6.028587818145752],[115,203,69,6.022512435913086],[115,203,70,6.0178608894348145],[115,203,71,6.014236927032471],[115,203,72,6.0120463371276855],[115,203,73,6.012378215789795],[115,203,74,6.012474060058594],[115,203,75,6.016749382019043],[115,203,76,6.0334553718566895],[115,203,77,6.058749198913574],[115,203,78,6.076561450958252],[115,203,79,6.080285549163818],[115,204,64,6.030251979827881],[115,204,65,6.037074565887451],[115,204,66,6.038665294647217],[115,204,67,6.034188747406006],[115,204,68,6.028587818145752],[115,204,69,6.022512435913086],[115,204,70,6.0178608894348145],[115,204,71,6.014236927032471],[115,204,72,6.0120463371276855],[115,204,73,6.012378215789795],[115,204,74,6.012474060058594],[115,204,75,6.016749382019043],[115,204,76,6.0334553718566895],[115,204,77,6.058749198913574],[115,204,78,6.076561450958252],[115,204,79,6.080285549163818],[115,205,64,6.030251979827881],[115,205,65,6.037074565887451],[115,205,66,6.038665294647217],[115,205,67,6.034188747406006],[115,205,68,6.028587818145752],[115,205,69,6.022512435913086],[115,205,70,6.0178608894348145],[115,205,71,6.014236927032471],[115,205,72,6.0120463371276855],[115,205,73,6.012378215789795],[115,205,74,6.012474060058594],[115,205,75,6.016749382019043],[115,205,76,6.0334553718566895],[115,205,77,6.058749198913574],[115,205,78,6.076561450958252],[115,205,79,6.080285549163818],[115,206,64,6.030251979827881],[115,206,65,6.037074565887451],[115,206,66,6.038665294647217],[115,206,67,6.034188747406006],[115,206,68,6.028587818145752],[115,206,69,6.022512435913086],[115,206,70,6.0178608894348145],[115,206,71,6.014236927032471],[115,206,72,6.0120463371276855],[115,206,73,6.012378215789795],[115,206,74,6.012474060058594],[115,206,75,6.016749382019043],[115,206,76,6.0334553718566895],[115,206,77,6.058749198913574],[115,206,78,6.076561450958252],[115,206,79,6.080285549163818],[115,207,64,6.030251979827881],[115,207,65,6.037074565887451],[115,207,66,6.038665294647217],[115,207,67,6.034188747406006],[115,207,68,6.028587818145752],[115,207,69,6.022512435913086],[115,207,70,6.0178608894348145],[115,207,71,6.014236927032471],[115,207,72,6.0120463371276855],[115,207,73,6.012378215789795],[115,207,74,6.012474060058594],[115,207,75,6.016749382019043],[115,207,76,6.0334553718566895],[115,207,77,6.058749198913574],[115,207,78,6.076561450958252],[115,207,79,6.080285549163818],[115,208,64,6.030251979827881],[115,208,65,6.037074565887451],[115,208,66,6.038665294647217],[115,208,67,6.034188747406006],[115,208,68,6.028587818145752],[115,208,69,6.022512435913086],[115,208,70,6.0178608894348145],[115,208,71,6.014236927032471],[115,208,72,6.0120463371276855],[115,208,73,6.012378215789795],[115,208,74,6.012474060058594],[115,208,75,6.016749382019043],[115,208,76,6.0334553718566895],[115,208,77,6.058749198913574],[115,208,78,6.076561450958252],[115,208,79,6.080285549163818],[115,209,64,6.030251979827881],[115,209,65,6.037074565887451],[115,209,66,6.038665294647217],[115,209,67,6.034188747406006],[115,209,68,6.028587818145752],[115,209,69,6.022512435913086],[115,209,70,6.0178608894348145],[115,209,71,6.014236927032471],[115,209,72,6.0120463371276855],[115,209,73,6.012378215789795],[115,209,74,6.012474060058594],[115,209,75,6.016749382019043],[115,209,76,6.0334553718566895],[115,209,77,6.058749198913574],[115,209,78,6.076561450958252],[115,209,79,6.080285549163818],[115,210,64,6.030251979827881],[115,210,65,6.037074565887451],[115,210,66,6.038665294647217],[115,210,67,6.034188747406006],[115,210,68,6.028587818145752],[115,210,69,6.022512435913086],[115,210,70,6.0178608894348145],[115,210,71,6.014236927032471],[115,210,72,6.0120463371276855],[115,210,73,6.012378215789795],[115,210,74,6.012474060058594],[115,210,75,6.016749382019043],[115,210,76,6.0334553718566895],[115,210,77,6.058749198913574],[115,210,78,6.076561450958252],[115,210,79,6.080285549163818],[115,211,64,6.030251979827881],[115,211,65,6.037074565887451],[115,211,66,6.038665294647217],[115,211,67,6.034188747406006],[115,211,68,6.028587818145752],[115,211,69,6.022512435913086],[115,211,70,6.0178608894348145],[115,211,71,6.014236927032471],[115,211,72,6.0120463371276855],[115,211,73,6.012378215789795],[115,211,74,6.012474060058594],[115,211,75,6.016749382019043],[115,211,76,6.0334553718566895],[115,211,77,6.058749198913574],[115,211,78,6.076561450958252],[115,211,79,6.080285549163818],[115,212,64,6.030251979827881],[115,212,65,6.037074565887451],[115,212,66,6.038665294647217],[115,212,67,6.034188747406006],[115,212,68,6.028587818145752],[115,212,69,6.022512435913086],[115,212,70,6.0178608894348145],[115,212,71,6.014236927032471],[115,212,72,6.0120463371276855],[115,212,73,6.012378215789795],[115,212,74,6.012474060058594],[115,212,75,6.016749382019043],[115,212,76,6.0334553718566895],[115,212,77,6.058749198913574],[115,212,78,6.076561450958252],[115,212,79,6.080285549163818],[115,213,64,6.030251979827881],[115,213,65,6.037074565887451],[115,213,66,6.038665294647217],[115,213,67,6.034188747406006],[115,213,68,6.028587818145752],[115,213,69,6.022512435913086],[115,213,70,6.0178608894348145],[115,213,71,6.014236927032471],[115,213,72,6.0120463371276855],[115,213,73,6.012378215789795],[115,213,74,6.012474060058594],[115,213,75,6.016749382019043],[115,213,76,6.0334553718566895],[115,213,77,6.058749198913574],[115,213,78,6.076561450958252],[115,213,79,6.080285549163818],[115,214,64,6.030251979827881],[115,214,65,6.037074565887451],[115,214,66,6.038665294647217],[115,214,67,6.034188747406006],[115,214,68,6.028587818145752],[115,214,69,6.022512435913086],[115,214,70,6.0178608894348145],[115,214,71,6.014236927032471],[115,214,72,6.0120463371276855],[115,214,73,6.012378215789795],[115,214,74,6.012474060058594],[115,214,75,6.016749382019043],[115,214,76,6.0334553718566895],[115,214,77,6.058749198913574],[115,214,78,6.076561450958252],[115,214,79,6.080285549163818],[115,215,64,6.030251979827881],[115,215,65,6.037074565887451],[115,215,66,6.038665294647217],[115,215,67,6.034188747406006],[115,215,68,6.028587818145752],[115,215,69,6.022512435913086],[115,215,70,6.0178608894348145],[115,215,71,6.014236927032471],[115,215,72,6.0120463371276855],[115,215,73,6.012378215789795],[115,215,74,6.012474060058594],[115,215,75,6.016749382019043],[115,215,76,6.0334553718566895],[115,215,77,6.058749198913574],[115,215,78,6.076561450958252],[115,215,79,6.080285549163818],[115,216,64,6.030251979827881],[115,216,65,6.037074565887451],[115,216,66,6.038665294647217],[115,216,67,6.034188747406006],[115,216,68,6.028587818145752],[115,216,69,6.022512435913086],[115,216,70,6.0178608894348145],[115,216,71,6.014236927032471],[115,216,72,6.0120463371276855],[115,216,73,6.012378215789795],[115,216,74,6.012474060058594],[115,216,75,6.016749382019043],[115,216,76,6.0334553718566895],[115,216,77,6.058749198913574],[115,216,78,6.076561450958252],[115,216,79,6.080285549163818],[115,217,64,6.030251979827881],[115,217,65,6.037074565887451],[115,217,66,6.038665294647217],[115,217,67,6.034188747406006],[115,217,68,6.028587818145752],[115,217,69,6.022512435913086],[115,217,70,6.0178608894348145],[115,217,71,6.014236927032471],[115,217,72,6.0120463371276855],[115,217,73,6.012378215789795],[115,217,74,6.012474060058594],[115,217,75,6.016749382019043],[115,217,76,6.0334553718566895],[115,217,77,6.058749198913574],[115,217,78,6.076561450958252],[115,217,79,6.080285549163818],[115,218,64,6.030251979827881],[115,218,65,6.037074565887451],[115,218,66,6.038665294647217],[115,218,67,6.034188747406006],[115,218,68,6.028587818145752],[115,218,69,6.022512435913086],[115,218,70,6.0178608894348145],[115,218,71,6.014236927032471],[115,218,72,6.0120463371276855],[115,218,73,6.012378215789795],[115,218,74,6.012474060058594],[115,218,75,6.016749382019043],[115,218,76,6.0334553718566895],[115,218,77,6.058749198913574],[115,218,78,6.076561450958252],[115,218,79,6.080285549163818],[115,219,64,6.030251979827881],[115,219,65,6.037074565887451],[115,219,66,6.038665294647217],[115,219,67,6.034188747406006],[115,219,68,6.028587818145752],[115,219,69,6.022512435913086],[115,219,70,6.0178608894348145],[115,219,71,6.014236927032471],[115,219,72,6.0120463371276855],[115,219,73,6.012378215789795],[115,219,74,6.012474060058594],[115,219,75,6.016749382019043],[115,219,76,6.0334553718566895],[115,219,77,6.058749198913574],[115,219,78,6.076561450958252],[115,219,79,6.080285549163818],[115,220,64,6.030251979827881],[115,220,65,6.037074565887451],[115,220,66,6.038665294647217],[115,220,67,6.034188747406006],[115,220,68,6.028587818145752],[115,220,69,6.022512435913086],[115,220,70,6.0178608894348145],[115,220,71,6.014236927032471],[115,220,72,6.0120463371276855],[115,220,73,6.012378215789795],[115,220,74,6.012474060058594],[115,220,75,6.016749382019043],[115,220,76,6.0334553718566895],[115,220,77,6.058749198913574],[115,220,78,6.076561450958252],[115,220,79,6.080285549163818],[115,221,64,6.030251979827881],[115,221,65,6.037074565887451],[115,221,66,6.038665294647217],[115,221,67,6.034188747406006],[115,221,68,6.028587818145752],[115,221,69,6.022512435913086],[115,221,70,6.0178608894348145],[115,221,71,6.014236927032471],[115,221,72,6.0120463371276855],[115,221,73,6.012378215789795],[115,221,74,6.012474060058594],[115,221,75,6.016749382019043],[115,221,76,6.0334553718566895],[115,221,77,6.058749198913574],[115,221,78,6.076561450958252],[115,221,79,6.080285549163818],[115,222,64,6.030251979827881],[115,222,65,6.037074565887451],[115,222,66,6.038665294647217],[115,222,67,6.034188747406006],[115,222,68,6.028587818145752],[115,222,69,6.022512435913086],[115,222,70,6.0178608894348145],[115,222,71,6.014236927032471],[115,222,72,6.0120463371276855],[115,222,73,6.012378215789795],[115,222,74,6.012474060058594],[115,222,75,6.016749382019043],[115,222,76,6.0334553718566895],[115,222,77,6.058749198913574],[115,222,78,6.076561450958252],[115,222,79,6.080285549163818],[115,223,64,6.030251979827881],[115,223,65,6.037074565887451],[115,223,66,6.038665294647217],[115,223,67,6.034188747406006],[115,223,68,6.028587818145752],[115,223,69,6.022512435913086],[115,223,70,6.0178608894348145],[115,223,71,6.014236927032471],[115,223,72,6.0120463371276855],[115,223,73,6.012378215789795],[115,223,74,6.012474060058594],[115,223,75,6.016749382019043],[115,223,76,6.0334553718566895],[115,223,77,6.058749198913574],[115,223,78,6.076561450958252],[115,223,79,6.080285549163818],[115,224,64,6.030251979827881],[115,224,65,6.037074565887451],[115,224,66,6.038665294647217],[115,224,67,6.034188747406006],[115,224,68,6.028587818145752],[115,224,69,6.022512435913086],[115,224,70,6.0178608894348145],[115,224,71,6.014236927032471],[115,224,72,6.0120463371276855],[115,224,73,6.012378215789795],[115,224,74,6.012474060058594],[115,224,75,6.016749382019043],[115,224,76,6.0334553718566895],[115,224,77,6.058749198913574],[115,224,78,6.076561450958252],[115,224,79,6.080285549163818],[115,225,64,6.030251979827881],[115,225,65,6.037074565887451],[115,225,66,6.038665294647217],[115,225,67,6.034188747406006],[115,225,68,6.028587818145752],[115,225,69,6.022512435913086],[115,225,70,6.0178608894348145],[115,225,71,6.014236927032471],[115,225,72,6.0120463371276855],[115,225,73,6.012378215789795],[115,225,74,6.012474060058594],[115,225,75,6.016749382019043],[115,225,76,6.0334553718566895],[115,225,77,6.058749198913574],[115,225,78,6.076561450958252],[115,225,79,6.080285549163818],[115,226,64,6.030251979827881],[115,226,65,6.037074565887451],[115,226,66,6.038665294647217],[115,226,67,6.034188747406006],[115,226,68,6.028587818145752],[115,226,69,6.022512435913086],[115,226,70,6.0178608894348145],[115,226,71,6.014236927032471],[115,226,72,6.0120463371276855],[115,226,73,6.012378215789795],[115,226,74,6.012474060058594],[115,226,75,6.016749382019043],[115,226,76,6.0334553718566895],[115,226,77,6.058749198913574],[115,226,78,6.076561450958252],[115,226,79,6.080285549163818],[115,227,64,6.030251979827881],[115,227,65,6.037074565887451],[115,227,66,6.038665294647217],[115,227,67,6.034188747406006],[115,227,68,6.028587818145752],[115,227,69,6.022512435913086],[115,227,70,6.0178608894348145],[115,227,71,6.014236927032471],[115,227,72,6.0120463371276855],[115,227,73,6.012378215789795],[115,227,74,6.012474060058594],[115,227,75,6.016749382019043],[115,227,76,6.0334553718566895],[115,227,77,6.058749198913574],[115,227,78,6.076561450958252],[115,227,79,6.080285549163818],[115,228,64,6.030251979827881],[115,228,65,6.037074565887451],[115,228,66,6.038665294647217],[115,228,67,6.034188747406006],[115,228,68,6.028587818145752],[115,228,69,6.022512435913086],[115,228,70,6.0178608894348145],[115,228,71,6.014236927032471],[115,228,72,6.0120463371276855],[115,228,73,6.012378215789795],[115,228,74,6.012474060058594],[115,228,75,6.016749382019043],[115,228,76,6.0334553718566895],[115,228,77,6.058749198913574],[115,228,78,6.076561450958252],[115,228,79,6.080285549163818],[115,229,64,6.030251979827881],[115,229,65,6.037074565887451],[115,229,66,6.038665294647217],[115,229,67,6.034188747406006],[115,229,68,6.028587818145752],[115,229,69,6.022512435913086],[115,229,70,6.0178608894348145],[115,229,71,6.014236927032471],[115,229,72,6.0120463371276855],[115,229,73,6.012378215789795],[115,229,74,6.012474060058594],[115,229,75,6.016749382019043],[115,229,76,6.0334553718566895],[115,229,77,6.058749198913574],[115,229,78,6.076561450958252],[115,229,79,6.080285549163818],[115,230,64,6.030251979827881],[115,230,65,6.037074565887451],[115,230,66,6.038665294647217],[115,230,67,6.034188747406006],[115,230,68,6.028587818145752],[115,230,69,6.022512435913086],[115,230,70,6.0178608894348145],[115,230,71,6.014236927032471],[115,230,72,6.0120463371276855],[115,230,73,6.012378215789795],[115,230,74,6.012474060058594],[115,230,75,6.016749382019043],[115,230,76,6.0334553718566895],[115,230,77,6.058749198913574],[115,230,78,6.076561450958252],[115,230,79,6.080285549163818],[115,231,64,6.030251979827881],[115,231,65,6.037074565887451],[115,231,66,6.038665294647217],[115,231,67,6.034188747406006],[115,231,68,6.028587818145752],[115,231,69,6.022512435913086],[115,231,70,6.0178608894348145],[115,231,71,6.014236927032471],[115,231,72,6.0120463371276855],[115,231,73,6.012378215789795],[115,231,74,6.012474060058594],[115,231,75,6.016749382019043],[115,231,76,6.0334553718566895],[115,231,77,6.058749198913574],[115,231,78,6.076561450958252],[115,231,79,6.080285549163818],[115,232,64,6.030251979827881],[115,232,65,6.037074565887451],[115,232,66,6.038665294647217],[115,232,67,6.034188747406006],[115,232,68,6.028587818145752],[115,232,69,6.022512435913086],[115,232,70,6.0178608894348145],[115,232,71,6.014236927032471],[115,232,72,6.0120463371276855],[115,232,73,6.012378215789795],[115,232,74,6.012474060058594],[115,232,75,6.016749382019043],[115,232,76,6.0334553718566895],[115,232,77,6.058749198913574],[115,232,78,6.076561450958252],[115,232,79,6.080285549163818],[115,233,64,6.030251979827881],[115,233,65,6.037074565887451],[115,233,66,6.038665294647217],[115,233,67,6.034188747406006],[115,233,68,6.028587818145752],[115,233,69,6.022512435913086],[115,233,70,6.0178608894348145],[115,233,71,6.014236927032471],[115,233,72,6.0120463371276855],[115,233,73,6.012378215789795],[115,233,74,6.012474060058594],[115,233,75,6.016749382019043],[115,233,76,6.0334553718566895],[115,233,77,6.058749198913574],[115,233,78,6.076561450958252],[115,233,79,6.080285549163818],[115,234,64,6.030251979827881],[115,234,65,6.037074565887451],[115,234,66,6.038665294647217],[115,234,67,6.034188747406006],[115,234,68,6.028587818145752],[115,234,69,6.022512435913086],[115,234,70,6.0178608894348145],[115,234,71,6.014236927032471],[115,234,72,6.0120463371276855],[115,234,73,6.012378215789795],[115,234,74,6.012474060058594],[115,234,75,6.016749382019043],[115,234,76,6.0334553718566895],[115,234,77,6.058749198913574],[115,234,78,6.076561450958252],[115,234,79,6.080285549163818],[115,235,64,6.030251979827881],[115,235,65,6.037074565887451],[115,235,66,6.038665294647217],[115,235,67,6.034188747406006],[115,235,68,6.028587818145752],[115,235,69,6.022512435913086],[115,235,70,6.0178608894348145],[115,235,71,6.014236927032471],[115,235,72,6.0120463371276855],[115,235,73,6.012378215789795],[115,235,74,6.012474060058594],[115,235,75,6.016749382019043],[115,235,76,6.0334553718566895],[115,235,77,6.058749198913574],[115,235,78,6.076561450958252],[115,235,79,6.080285549163818],[115,236,64,6.030251979827881],[115,236,65,6.037074565887451],[115,236,66,6.038665294647217],[115,236,67,6.034188747406006],[115,236,68,6.028587818145752],[115,236,69,6.022512435913086],[115,236,70,6.0178608894348145],[115,236,71,6.014236927032471],[115,236,72,6.0120463371276855],[115,236,73,6.012378215789795],[115,236,74,6.012474060058594],[115,236,75,6.016749382019043],[115,236,76,6.0334553718566895],[115,236,77,6.058749198913574],[115,236,78,6.076561450958252],[115,236,79,6.080285549163818],[115,237,64,6.030251979827881],[115,237,65,6.037074565887451],[115,237,66,6.038665294647217],[115,237,67,6.034188747406006],[115,237,68,6.028587818145752],[115,237,69,6.022512435913086],[115,237,70,6.0178608894348145],[115,237,71,6.014236927032471],[115,237,72,6.0120463371276855],[115,237,73,6.012378215789795],[115,237,74,6.012474060058594],[115,237,75,6.016749382019043],[115,237,76,6.0334553718566895],[115,237,77,6.058749198913574],[115,237,78,6.076561450958252],[115,237,79,6.080285549163818],[115,238,64,6.030251979827881],[115,238,65,6.037074565887451],[115,238,66,6.038665294647217],[115,238,67,6.034188747406006],[115,238,68,6.028587818145752],[115,238,69,6.022512435913086],[115,238,70,6.0178608894348145],[115,238,71,6.014236927032471],[115,238,72,6.0120463371276855],[115,238,73,6.012378215789795],[115,238,74,6.012474060058594],[115,238,75,6.016749382019043],[115,238,76,6.0334553718566895],[115,238,77,6.058749198913574],[115,238,78,6.076561450958252],[115,238,79,6.080285549163818],[115,239,64,6.030251979827881],[115,239,65,6.037074565887451],[115,239,66,6.038665294647217],[115,239,67,6.034188747406006],[115,239,68,6.028587818145752],[115,239,69,6.022512435913086],[115,239,70,6.0178608894348145],[115,239,71,6.014236927032471],[115,239,72,6.0120463371276855],[115,239,73,6.012378215789795],[115,239,74,6.012474060058594],[115,239,75,6.016749382019043],[115,239,76,6.0334553718566895],[115,239,77,6.058749198913574],[115,239,78,6.076561450958252],[115,239,79,6.080285549163818],[115,240,64,6.030251979827881],[115,240,65,6.037074565887451],[115,240,66,6.038665294647217],[115,240,67,6.034188747406006],[115,240,68,6.028587818145752],[115,240,69,6.022512435913086],[115,240,70,6.0178608894348145],[115,240,71,6.014236927032471],[115,240,72,6.0120463371276855],[115,240,73,6.012378215789795],[115,240,74,6.012474060058594],[115,240,75,6.016749382019043],[115,240,76,6.0334553718566895],[115,240,77,6.058749198913574],[115,240,78,6.076561450958252],[115,240,79,6.080285549163818],[115,241,64,6.030251979827881],[115,241,65,6.037074565887451],[115,241,66,6.038665294647217],[115,241,67,6.034188747406006],[115,241,68,6.028587818145752],[115,241,69,6.022512435913086],[115,241,70,6.0178608894348145],[115,241,71,6.014236927032471],[115,241,72,6.0120463371276855],[115,241,73,6.012378215789795],[115,241,74,6.012474060058594],[115,241,75,6.016749382019043],[115,241,76,6.0334553718566895],[115,241,77,6.058749198913574],[115,241,78,6.076561450958252],[115,241,79,6.080285549163818],[115,242,64,6.030251979827881],[115,242,65,6.037074565887451],[115,242,66,6.038665294647217],[115,242,67,6.034188747406006],[115,242,68,6.028587818145752],[115,242,69,6.022512435913086],[115,242,70,6.0178608894348145],[115,242,71,6.014236927032471],[115,242,72,6.0120463371276855],[115,242,73,6.012378215789795],[115,242,74,6.012474060058594],[115,242,75,6.016749382019043],[115,242,76,6.0334553718566895],[115,242,77,6.058749198913574],[115,242,78,6.076561450958252],[115,242,79,6.080285549163818],[115,243,64,6.030251979827881],[115,243,65,6.037074565887451],[115,243,66,6.038665294647217],[115,243,67,6.034188747406006],[115,243,68,6.028587818145752],[115,243,69,6.022512435913086],[115,243,70,6.0178608894348145],[115,243,71,6.014236927032471],[115,243,72,6.0120463371276855],[115,243,73,6.012378215789795],[115,243,74,6.012474060058594],[115,243,75,6.016749382019043],[115,243,76,6.0334553718566895],[115,243,77,6.058749198913574],[115,243,78,6.076561450958252],[115,243,79,6.080285549163818],[115,244,64,6.030251979827881],[115,244,65,6.037074565887451],[115,244,66,6.038665294647217],[115,244,67,6.034188747406006],[115,244,68,6.028587818145752],[115,244,69,6.022512435913086],[115,244,70,6.0178608894348145],[115,244,71,6.014236927032471],[115,244,72,6.0120463371276855],[115,244,73,6.012378215789795],[115,244,74,6.012474060058594],[115,244,75,6.016749382019043],[115,244,76,6.0334553718566895],[115,244,77,6.058749198913574],[115,244,78,6.076561450958252],[115,244,79,6.080285549163818],[115,245,64,6.030251979827881],[115,245,65,6.037074565887451],[115,245,66,6.038665294647217],[115,245,67,6.034188747406006],[115,245,68,6.028587818145752],[115,245,69,6.022512435913086],[115,245,70,6.0178608894348145],[115,245,71,6.014236927032471],[115,245,72,6.0120463371276855],[115,245,73,6.012378215789795],[115,245,74,6.012474060058594],[115,245,75,6.016749382019043],[115,245,76,6.0334553718566895],[115,245,77,6.058749198913574],[115,245,78,6.076561450958252],[115,245,79,6.080285549163818],[115,246,64,6.030251979827881],[115,246,65,6.037074565887451],[115,246,66,6.038665294647217],[115,246,67,6.034188747406006],[115,246,68,6.028587818145752],[115,246,69,6.022512435913086],[115,246,70,6.0178608894348145],[115,246,71,6.014236927032471],[115,246,72,6.0120463371276855],[115,246,73,6.012378215789795],[115,246,74,6.012474060058594],[115,246,75,6.016749382019043],[115,246,76,6.0334553718566895],[115,246,77,6.058749198913574],[115,246,78,6.076561450958252],[115,246,79,6.080285549163818],[115,247,64,6.030251979827881],[115,247,65,6.037074565887451],[115,247,66,6.038665294647217],[115,247,67,6.034188747406006],[115,247,68,6.028587818145752],[115,247,69,6.022512435913086],[115,247,70,6.0178608894348145],[115,247,71,6.014236927032471],[115,247,72,6.0120463371276855],[115,247,73,6.012378215789795],[115,247,74,6.012474060058594],[115,247,75,6.016749382019043],[115,247,76,6.0334553718566895],[115,247,77,6.058749198913574],[115,247,78,6.076561450958252],[115,247,79,6.080285549163818],[115,248,64,6.030251979827881],[115,248,65,6.037074565887451],[115,248,66,6.038665294647217],[115,248,67,6.034188747406006],[115,248,68,6.028587818145752],[115,248,69,6.022512435913086],[115,248,70,6.0178608894348145],[115,248,71,6.014236927032471],[115,248,72,6.0120463371276855],[115,248,73,6.012378215789795],[115,248,74,6.012474060058594],[115,248,75,6.016749382019043],[115,248,76,6.0334553718566895],[115,248,77,6.058749198913574],[115,248,78,6.076561450958252],[115,248,79,6.080285549163818],[115,249,64,6.030251979827881],[115,249,65,6.037074565887451],[115,249,66,6.038665294647217],[115,249,67,6.034188747406006],[115,249,68,6.028587818145752],[115,249,69,6.022512435913086],[115,249,70,6.0178608894348145],[115,249,71,6.014236927032471],[115,249,72,6.0120463371276855],[115,249,73,6.012378215789795],[115,249,74,6.012474060058594],[115,249,75,6.016749382019043],[115,249,76,6.0334553718566895],[115,249,77,6.058749198913574],[115,249,78,6.076561450958252],[115,249,79,6.080285549163818],[115,250,64,6.030251979827881],[115,250,65,6.037074565887451],[115,250,66,6.038665294647217],[115,250,67,6.034188747406006],[115,250,68,6.028587818145752],[115,250,69,6.022512435913086],[115,250,70,6.0178608894348145],[115,250,71,6.014236927032471],[115,250,72,6.0120463371276855],[115,250,73,6.012378215789795],[115,250,74,6.012474060058594],[115,250,75,6.016749382019043],[115,250,76,6.0334553718566895],[115,250,77,6.058749198913574],[115,250,78,6.076561450958252],[115,250,79,6.080285549163818],[115,251,64,6.030251979827881],[115,251,65,6.037074565887451],[115,251,66,6.038665294647217],[115,251,67,6.034188747406006],[115,251,68,6.028587818145752],[115,251,69,6.022512435913086],[115,251,70,6.0178608894348145],[115,251,71,6.014236927032471],[115,251,72,6.0120463371276855],[115,251,73,6.012378215789795],[115,251,74,6.012474060058594],[115,251,75,6.016749382019043],[115,251,76,6.0334553718566895],[115,251,77,6.058749198913574],[115,251,78,6.076561450958252],[115,251,79,6.080285549163818],[115,252,64,6.030251979827881],[115,252,65,6.037074565887451],[115,252,66,6.038665294647217],[115,252,67,6.034188747406006],[115,252,68,6.028587818145752],[115,252,69,6.022512435913086],[115,252,70,6.0178608894348145],[115,252,71,6.014236927032471],[115,252,72,6.0120463371276855],[115,252,73,6.012378215789795],[115,252,74,6.012474060058594],[115,252,75,6.016749382019043],[115,252,76,6.0334553718566895],[115,252,77,6.058749198913574],[115,252,78,6.076561450958252],[115,252,79,6.080285549163818],[115,253,64,6.030251979827881],[115,253,65,6.037074565887451],[115,253,66,6.038665294647217],[115,253,67,6.034188747406006],[115,253,68,6.028587818145752],[115,253,69,6.022512435913086],[115,253,70,6.0178608894348145],[115,253,71,6.014236927032471],[115,253,72,6.0120463371276855],[115,253,73,6.012378215789795],[115,253,74,6.012474060058594],[115,253,75,6.016749382019043],[115,253,76,6.0334553718566895],[115,253,77,6.058749198913574],[115,253,78,6.076561450958252],[115,253,79,6.080285549163818],[115,254,64,6.030251979827881],[115,254,65,6.037074565887451],[115,254,66,6.038665294647217],[115,254,67,6.034188747406006],[115,254,68,6.028587818145752],[115,254,69,6.022512435913086],[115,254,70,6.0178608894348145],[115,254,71,6.014236927032471],[115,254,72,6.0120463371276855],[115,254,73,6.012378215789795],[115,254,74,6.012474060058594],[115,254,75,6.016749382019043],[115,254,76,6.0334553718566895],[115,254,77,6.058749198913574],[115,254,78,6.076561450958252],[115,254,79,6.080285549163818],[115,255,64,6.030251979827881],[115,255,65,6.037074565887451],[115,255,66,6.038665294647217],[115,255,67,6.034188747406006],[115,255,68,6.028587818145752],[115,255,69,6.022512435913086],[115,255,70,6.0178608894348145],[115,255,71,6.014236927032471],[115,255,72,6.0120463371276855],[115,255,73,6.012378215789795],[115,255,74,6.012474060058594],[115,255,75,6.016749382019043],[115,255,76,6.0334553718566895],[115,255,77,6.058749198913574],[115,255,78,6.076561450958252],[115,255,79,6.080285549163818],[115,256,64,6.030251979827881],[115,256,65,6.037074565887451],[115,256,66,6.038665294647217],[115,256,67,6.034188747406006],[115,256,68,6.028587818145752],[115,256,69,6.022512435913086],[115,256,70,6.0178608894348145],[115,256,71,6.014236927032471],[115,256,72,6.0120463371276855],[115,256,73,6.012378215789795],[115,256,74,6.012474060058594],[115,256,75,6.016749382019043],[115,256,76,6.0334553718566895],[115,256,77,6.058749198913574],[115,256,78,6.076561450958252],[115,256,79,6.080285549163818],[115,257,64,6.030251979827881],[115,257,65,6.037074565887451],[115,257,66,6.038665294647217],[115,257,67,6.034188747406006],[115,257,68,6.028587818145752],[115,257,69,6.022512435913086],[115,257,70,6.0178608894348145],[115,257,71,6.014236927032471],[115,257,72,6.0120463371276855],[115,257,73,6.012378215789795],[115,257,74,6.012474060058594],[115,257,75,6.016749382019043],[115,257,76,6.0334553718566895],[115,257,77,6.058749198913574],[115,257,78,6.076561450958252],[115,257,79,6.080285549163818],[115,258,64,6.030251979827881],[115,258,65,6.037074565887451],[115,258,66,6.038665294647217],[115,258,67,6.034188747406006],[115,258,68,6.028587818145752],[115,258,69,6.022512435913086],[115,258,70,6.0178608894348145],[115,258,71,6.014236927032471],[115,258,72,6.0120463371276855],[115,258,73,6.012378215789795],[115,258,74,6.012474060058594],[115,258,75,6.016749382019043],[115,258,76,6.0334553718566895],[115,258,77,6.058749198913574],[115,258,78,6.076561450958252],[115,258,79,6.080285549163818],[115,259,64,6.030251979827881],[115,259,65,6.037074565887451],[115,259,66,6.038665294647217],[115,259,67,6.034188747406006],[115,259,68,6.028587818145752],[115,259,69,6.022512435913086],[115,259,70,6.0178608894348145],[115,259,71,6.014236927032471],[115,259,72,6.0120463371276855],[115,259,73,6.012378215789795],[115,259,74,6.012474060058594],[115,259,75,6.016749382019043],[115,259,76,6.0334553718566895],[115,259,77,6.058749198913574],[115,259,78,6.076561450958252],[115,259,79,6.080285549163818],[115,260,64,6.030251979827881],[115,260,65,6.037074565887451],[115,260,66,6.038665294647217],[115,260,67,6.034188747406006],[115,260,68,6.028587818145752],[115,260,69,6.022512435913086],[115,260,70,6.0178608894348145],[115,260,71,6.014236927032471],[115,260,72,6.0120463371276855],[115,260,73,6.012378215789795],[115,260,74,6.012474060058594],[115,260,75,6.016749382019043],[115,260,76,6.0334553718566895],[115,260,77,6.058749198913574],[115,260,78,6.076561450958252],[115,260,79,6.080285549163818],[115,261,64,6.030251979827881],[115,261,65,6.037074565887451],[115,261,66,6.038665294647217],[115,261,67,6.034188747406006],[115,261,68,6.028587818145752],[115,261,69,6.022512435913086],[115,261,70,6.0178608894348145],[115,261,71,6.014236927032471],[115,261,72,6.0120463371276855],[115,261,73,6.012378215789795],[115,261,74,6.012474060058594],[115,261,75,6.016749382019043],[115,261,76,6.0334553718566895],[115,261,77,6.058749198913574],[115,261,78,6.076561450958252],[115,261,79,6.080285549163818],[115,262,64,6.030251979827881],[115,262,65,6.037074565887451],[115,262,66,6.038665294647217],[115,262,67,6.034188747406006],[115,262,68,6.028587818145752],[115,262,69,6.022512435913086],[115,262,70,6.0178608894348145],[115,262,71,6.014236927032471],[115,262,72,6.0120463371276855],[115,262,73,6.012378215789795],[115,262,74,6.012474060058594],[115,262,75,6.016749382019043],[115,262,76,6.0334553718566895],[115,262,77,6.058749198913574],[115,262,78,6.076561450958252],[115,262,79,6.080285549163818],[115,263,64,6.030251979827881],[115,263,65,6.037074565887451],[115,263,66,6.038665294647217],[115,263,67,6.034188747406006],[115,263,68,6.028587818145752],[115,263,69,6.022512435913086],[115,263,70,6.0178608894348145],[115,263,71,6.014236927032471],[115,263,72,6.0120463371276855],[115,263,73,6.012378215789795],[115,263,74,6.012474060058594],[115,263,75,6.016749382019043],[115,263,76,6.0334553718566895],[115,263,77,6.058749198913574],[115,263,78,6.076561450958252],[115,263,79,6.080285549163818],[115,264,64,6.030251979827881],[115,264,65,6.037074565887451],[115,264,66,6.038665294647217],[115,264,67,6.034188747406006],[115,264,68,6.028587818145752],[115,264,69,6.022512435913086],[115,264,70,6.0178608894348145],[115,264,71,6.014236927032471],[115,264,72,6.0120463371276855],[115,264,73,6.012378215789795],[115,264,74,6.012474060058594],[115,264,75,6.016749382019043],[115,264,76,6.0334553718566895],[115,264,77,6.058749198913574],[115,264,78,6.076561450958252],[115,264,79,6.080285549163818],[115,265,64,6.030251979827881],[115,265,65,6.037074565887451],[115,265,66,6.038665294647217],[115,265,67,6.034188747406006],[115,265,68,6.028587818145752],[115,265,69,6.022512435913086],[115,265,70,6.0178608894348145],[115,265,71,6.014236927032471],[115,265,72,6.0120463371276855],[115,265,73,6.012378215789795],[115,265,74,6.012474060058594],[115,265,75,6.016749382019043],[115,265,76,6.0334553718566895],[115,265,77,6.058749198913574],[115,265,78,6.076561450958252],[115,265,79,6.080285549163818],[115,266,64,6.030251979827881],[115,266,65,6.037074565887451],[115,266,66,6.038665294647217],[115,266,67,6.034188747406006],[115,266,68,6.028587818145752],[115,266,69,6.022512435913086],[115,266,70,6.0178608894348145],[115,266,71,6.014236927032471],[115,266,72,6.0120463371276855],[115,266,73,6.012378215789795],[115,266,74,6.012474060058594],[115,266,75,6.016749382019043],[115,266,76,6.0334553718566895],[115,266,77,6.058749198913574],[115,266,78,6.076561450958252],[115,266,79,6.080285549163818],[115,267,64,6.030251979827881],[115,267,65,6.037074565887451],[115,267,66,6.038665294647217],[115,267,67,6.034188747406006],[115,267,68,6.028587818145752],[115,267,69,6.022512435913086],[115,267,70,6.0178608894348145],[115,267,71,6.014236927032471],[115,267,72,6.0120463371276855],[115,267,73,6.012378215789795],[115,267,74,6.012474060058594],[115,267,75,6.016749382019043],[115,267,76,6.0334553718566895],[115,267,77,6.058749198913574],[115,267,78,6.076561450958252],[115,267,79,6.080285549163818],[115,268,64,6.030251979827881],[115,268,65,6.037074565887451],[115,268,66,6.038665294647217],[115,268,67,6.034188747406006],[115,268,68,6.028587818145752],[115,268,69,6.022512435913086],[115,268,70,6.0178608894348145],[115,268,71,6.014236927032471],[115,268,72,6.0120463371276855],[115,268,73,6.012378215789795],[115,268,74,6.012474060058594],[115,268,75,6.016749382019043],[115,268,76,6.0334553718566895],[115,268,77,6.058749198913574],[115,268,78,6.076561450958252],[115,268,79,6.080285549163818],[115,269,64,6.030251979827881],[115,269,65,6.037074565887451],[115,269,66,6.038665294647217],[115,269,67,6.034188747406006],[115,269,68,6.028587818145752],[115,269,69,6.022512435913086],[115,269,70,6.0178608894348145],[115,269,71,6.014236927032471],[115,269,72,6.0120463371276855],[115,269,73,6.012378215789795],[115,269,74,6.012474060058594],[115,269,75,6.016749382019043],[115,269,76,6.0334553718566895],[115,269,77,6.058749198913574],[115,269,78,6.076561450958252],[115,269,79,6.080285549163818],[115,270,64,6.030251979827881],[115,270,65,6.037074565887451],[115,270,66,6.038665294647217],[115,270,67,6.034188747406006],[115,270,68,6.028587818145752],[115,270,69,6.022512435913086],[115,270,70,6.0178608894348145],[115,270,71,6.014236927032471],[115,270,72,6.0120463371276855],[115,270,73,6.012378215789795],[115,270,74,6.012474060058594],[115,270,75,6.016749382019043],[115,270,76,6.0334553718566895],[115,270,77,6.058749198913574],[115,270,78,6.076561450958252],[115,270,79,6.080285549163818],[115,271,64,6.030251979827881],[115,271,65,6.037074565887451],[115,271,66,6.038665294647217],[115,271,67,6.034188747406006],[115,271,68,6.028587818145752],[115,271,69,6.022512435913086],[115,271,70,6.0178608894348145],[115,271,71,6.014236927032471],[115,271,72,6.0120463371276855],[115,271,73,6.012378215789795],[115,271,74,6.012474060058594],[115,271,75,6.016749382019043],[115,271,76,6.0334553718566895],[115,271,77,6.058749198913574],[115,271,78,6.076561450958252],[115,271,79,6.080285549163818],[115,272,64,6.030251979827881],[115,272,65,6.037074565887451],[115,272,66,6.038665294647217],[115,272,67,6.034188747406006],[115,272,68,6.028587818145752],[115,272,69,6.022512435913086],[115,272,70,6.0178608894348145],[115,272,71,6.014236927032471],[115,272,72,6.0120463371276855],[115,272,73,6.012378215789795],[115,272,74,6.012474060058594],[115,272,75,6.016749382019043],[115,272,76,6.0334553718566895],[115,272,77,6.058749198913574],[115,272,78,6.076561450958252],[115,272,79,6.080285549163818],[115,273,64,6.030251979827881],[115,273,65,6.037074565887451],[115,273,66,6.038665294647217],[115,273,67,6.034188747406006],[115,273,68,6.028587818145752],[115,273,69,6.022512435913086],[115,273,70,6.0178608894348145],[115,273,71,6.014236927032471],[115,273,72,6.0120463371276855],[115,273,73,6.012378215789795],[115,273,74,6.012474060058594],[115,273,75,6.016749382019043],[115,273,76,6.0334553718566895],[115,273,77,6.058749198913574],[115,273,78,6.076561450958252],[115,273,79,6.080285549163818],[115,274,64,6.030251979827881],[115,274,65,6.037074565887451],[115,274,66,6.038665294647217],[115,274,67,6.034188747406006],[115,274,68,6.028587818145752],[115,274,69,6.022512435913086],[115,274,70,6.0178608894348145],[115,274,71,6.014236927032471],[115,274,72,6.0120463371276855],[115,274,73,6.012378215789795],[115,274,74,6.012474060058594],[115,274,75,6.016749382019043],[115,274,76,6.0334553718566895],[115,274,77,6.058749198913574],[115,274,78,6.076561450958252],[115,274,79,6.080285549163818],[115,275,64,6.030251979827881],[115,275,65,6.037074565887451],[115,275,66,6.038665294647217],[115,275,67,6.034188747406006],[115,275,68,6.028587818145752],[115,275,69,6.022512435913086],[115,275,70,6.0178608894348145],[115,275,71,6.014236927032471],[115,275,72,6.0120463371276855],[115,275,73,6.012378215789795],[115,275,74,6.012474060058594],[115,275,75,6.016749382019043],[115,275,76,6.0334553718566895],[115,275,77,6.058749198913574],[115,275,78,6.076561450958252],[115,275,79,6.080285549163818],[115,276,64,6.030251979827881],[115,276,65,6.037074565887451],[115,276,66,6.038665294647217],[115,276,67,6.034188747406006],[115,276,68,6.028587818145752],[115,276,69,6.022512435913086],[115,276,70,6.0178608894348145],[115,276,71,6.014236927032471],[115,276,72,6.0120463371276855],[115,276,73,6.012378215789795],[115,276,74,6.012474060058594],[115,276,75,6.016749382019043],[115,276,76,6.0334553718566895],[115,276,77,6.058749198913574],[115,276,78,6.076561450958252],[115,276,79,6.080285549163818],[115,277,64,6.030251979827881],[115,277,65,6.037074565887451],[115,277,66,6.038665294647217],[115,277,67,6.034188747406006],[115,277,68,6.028587818145752],[115,277,69,6.022512435913086],[115,277,70,6.0178608894348145],[115,277,71,6.014236927032471],[115,277,72,6.0120463371276855],[115,277,73,6.012378215789795],[115,277,74,6.012474060058594],[115,277,75,6.016749382019043],[115,277,76,6.0334553718566895],[115,277,77,6.058749198913574],[115,277,78,6.076561450958252],[115,277,79,6.080285549163818],[115,278,64,6.030251979827881],[115,278,65,6.037074565887451],[115,278,66,6.038665294647217],[115,278,67,6.034188747406006],[115,278,68,6.028587818145752],[115,278,69,6.022512435913086],[115,278,70,6.0178608894348145],[115,278,71,6.014236927032471],[115,278,72,6.0120463371276855],[115,278,73,6.012378215789795],[115,278,74,6.012474060058594],[115,278,75,6.016749382019043],[115,278,76,6.0334553718566895],[115,278,77,6.058749198913574],[115,278,78,6.076561450958252],[115,278,79,6.080285549163818],[115,279,64,6.030251979827881],[115,279,65,6.037074565887451],[115,279,66,6.038665294647217],[115,279,67,6.034188747406006],[115,279,68,6.028587818145752],[115,279,69,6.022512435913086],[115,279,70,6.0178608894348145],[115,279,71,6.014236927032471],[115,279,72,6.0120463371276855],[115,279,73,6.012378215789795],[115,279,74,6.012474060058594],[115,279,75,6.016749382019043],[115,279,76,6.0334553718566895],[115,279,77,6.058749198913574],[115,279,78,6.076561450958252],[115,279,79,6.080285549163818],[115,280,64,6.030251979827881],[115,280,65,6.037074565887451],[115,280,66,6.038665294647217],[115,280,67,6.034188747406006],[115,280,68,6.028587818145752],[115,280,69,6.022512435913086],[115,280,70,6.0178608894348145],[115,280,71,6.014236927032471],[115,280,72,6.0120463371276855],[115,280,73,6.012378215789795],[115,280,74,6.012474060058594],[115,280,75,6.016749382019043],[115,280,76,6.0334553718566895],[115,280,77,6.058749198913574],[115,280,78,6.076561450958252],[115,280,79,6.080285549163818],[115,281,64,6.030251979827881],[115,281,65,6.037074565887451],[115,281,66,6.038665294647217],[115,281,67,6.034188747406006],[115,281,68,6.028587818145752],[115,281,69,6.022512435913086],[115,281,70,6.0178608894348145],[115,281,71,6.014236927032471],[115,281,72,6.0120463371276855],[115,281,73,6.012378215789795],[115,281,74,6.012474060058594],[115,281,75,6.016749382019043],[115,281,76,6.0334553718566895],[115,281,77,6.058749198913574],[115,281,78,6.076561450958252],[115,281,79,6.080285549163818],[115,282,64,6.030251979827881],[115,282,65,6.037074565887451],[115,282,66,6.038665294647217],[115,282,67,6.034188747406006],[115,282,68,6.028587818145752],[115,282,69,6.022512435913086],[115,282,70,6.0178608894348145],[115,282,71,6.014236927032471],[115,282,72,6.0120463371276855],[115,282,73,6.012378215789795],[115,282,74,6.012474060058594],[115,282,75,6.016749382019043],[115,282,76,6.0334553718566895],[115,282,77,6.058749198913574],[115,282,78,6.076561450958252],[115,282,79,6.080285549163818],[115,283,64,6.030251979827881],[115,283,65,6.037074565887451],[115,283,66,6.038665294647217],[115,283,67,6.034188747406006],[115,283,68,6.028587818145752],[115,283,69,6.022512435913086],[115,283,70,6.0178608894348145],[115,283,71,6.014236927032471],[115,283,72,6.0120463371276855],[115,283,73,6.012378215789795],[115,283,74,6.012474060058594],[115,283,75,6.016749382019043],[115,283,76,6.0334553718566895],[115,283,77,6.058749198913574],[115,283,78,6.076561450958252],[115,283,79,6.080285549163818],[115,284,64,6.030251979827881],[115,284,65,6.037074565887451],[115,284,66,6.038665294647217],[115,284,67,6.034188747406006],[115,284,68,6.028587818145752],[115,284,69,6.022512435913086],[115,284,70,6.0178608894348145],[115,284,71,6.014236927032471],[115,284,72,6.0120463371276855],[115,284,73,6.012378215789795],[115,284,74,6.012474060058594],[115,284,75,6.016749382019043],[115,284,76,6.0334553718566895],[115,284,77,6.058749198913574],[115,284,78,6.076561450958252],[115,284,79,6.080285549163818],[115,285,64,6.030251979827881],[115,285,65,6.037074565887451],[115,285,66,6.038665294647217],[115,285,67,6.034188747406006],[115,285,68,6.028587818145752],[115,285,69,6.022512435913086],[115,285,70,6.0178608894348145],[115,285,71,6.014236927032471],[115,285,72,6.0120463371276855],[115,285,73,6.012378215789795],[115,285,74,6.012474060058594],[115,285,75,6.016749382019043],[115,285,76,6.0334553718566895],[115,285,77,6.058749198913574],[115,285,78,6.076561450958252],[115,285,79,6.080285549163818],[115,286,64,6.030251979827881],[115,286,65,6.037074565887451],[115,286,66,6.038665294647217],[115,286,67,6.034188747406006],[115,286,68,6.028587818145752],[115,286,69,6.022512435913086],[115,286,70,6.0178608894348145],[115,286,71,6.014236927032471],[115,286,72,6.0120463371276855],[115,286,73,6.012378215789795],[115,286,74,6.012474060058594],[115,286,75,6.016749382019043],[115,286,76,6.0334553718566895],[115,286,77,6.058749198913574],[115,286,78,6.076561450958252],[115,286,79,6.080285549163818],[115,287,64,6.030251979827881],[115,287,65,6.037074565887451],[115,287,66,6.038665294647217],[115,287,67,6.034188747406006],[115,287,68,6.028587818145752],[115,287,69,6.022512435913086],[115,287,70,6.0178608894348145],[115,287,71,6.014236927032471],[115,287,72,6.0120463371276855],[115,287,73,6.012378215789795],[115,287,74,6.012474060058594],[115,287,75,6.016749382019043],[115,287,76,6.0334553718566895],[115,287,77,6.058749198913574],[115,287,78,6.076561450958252],[115,287,79,6.080285549163818],[115,288,64,6.030251979827881],[115,288,65,6.037074565887451],[115,288,66,6.038665294647217],[115,288,67,6.034188747406006],[115,288,68,6.028587818145752],[115,288,69,6.022512435913086],[115,288,70,6.0178608894348145],[115,288,71,6.014236927032471],[115,288,72,6.0120463371276855],[115,288,73,6.012378215789795],[115,288,74,6.012474060058594],[115,288,75,6.016749382019043],[115,288,76,6.0334553718566895],[115,288,77,6.058749198913574],[115,288,78,6.076561450958252],[115,288,79,6.080285549163818],[115,289,64,6.030251979827881],[115,289,65,6.037074565887451],[115,289,66,6.038665294647217],[115,289,67,6.034188747406006],[115,289,68,6.028587818145752],[115,289,69,6.022512435913086],[115,289,70,6.0178608894348145],[115,289,71,6.014236927032471],[115,289,72,6.0120463371276855],[115,289,73,6.012378215789795],[115,289,74,6.012474060058594],[115,289,75,6.016749382019043],[115,289,76,6.0334553718566895],[115,289,77,6.058749198913574],[115,289,78,6.076561450958252],[115,289,79,6.080285549163818],[115,290,64,6.030251979827881],[115,290,65,6.037074565887451],[115,290,66,6.038665294647217],[115,290,67,6.034188747406006],[115,290,68,6.028587818145752],[115,290,69,6.022512435913086],[115,290,70,6.0178608894348145],[115,290,71,6.014236927032471],[115,290,72,6.0120463371276855],[115,290,73,6.012378215789795],[115,290,74,6.012474060058594],[115,290,75,6.016749382019043],[115,290,76,6.0334553718566895],[115,290,77,6.058749198913574],[115,290,78,6.076561450958252],[115,290,79,6.080285549163818],[115,291,64,6.030251979827881],[115,291,65,6.037074565887451],[115,291,66,6.038665294647217],[115,291,67,6.034188747406006],[115,291,68,6.028587818145752],[115,291,69,6.022512435913086],[115,291,70,6.0178608894348145],[115,291,71,6.014236927032471],[115,291,72,6.0120463371276855],[115,291,73,6.012378215789795],[115,291,74,6.012474060058594],[115,291,75,6.016749382019043],[115,291,76,6.0334553718566895],[115,291,77,6.058749198913574],[115,291,78,6.076561450958252],[115,291,79,6.080285549163818],[115,292,64,6.030251979827881],[115,292,65,6.037074565887451],[115,292,66,6.038665294647217],[115,292,67,6.034188747406006],[115,292,68,6.028587818145752],[115,292,69,6.022512435913086],[115,292,70,6.0178608894348145],[115,292,71,6.014236927032471],[115,292,72,6.0120463371276855],[115,292,73,6.012378215789795],[115,292,74,6.012474060058594],[115,292,75,6.016749382019043],[115,292,76,6.0334553718566895],[115,292,77,6.058749198913574],[115,292,78,6.076561450958252],[115,292,79,6.080285549163818],[115,293,64,6.030251979827881],[115,293,65,6.037074565887451],[115,293,66,6.038665294647217],[115,293,67,6.034188747406006],[115,293,68,6.028587818145752],[115,293,69,6.022512435913086],[115,293,70,6.0178608894348145],[115,293,71,6.014236927032471],[115,293,72,6.0120463371276855],[115,293,73,6.012378215789795],[115,293,74,6.012474060058594],[115,293,75,6.016749382019043],[115,293,76,6.0334553718566895],[115,293,77,6.058749198913574],[115,293,78,6.076561450958252],[115,293,79,6.080285549163818],[115,294,64,6.030251979827881],[115,294,65,6.037074565887451],[115,294,66,6.038665294647217],[115,294,67,6.034188747406006],[115,294,68,6.028587818145752],[115,294,69,6.022512435913086],[115,294,70,6.0178608894348145],[115,294,71,6.014236927032471],[115,294,72,6.0120463371276855],[115,294,73,6.012378215789795],[115,294,74,6.012474060058594],[115,294,75,6.016749382019043],[115,294,76,6.0334553718566895],[115,294,77,6.058749198913574],[115,294,78,6.076561450958252],[115,294,79,6.080285549163818],[115,295,64,6.030251979827881],[115,295,65,6.037074565887451],[115,295,66,6.038665294647217],[115,295,67,6.034188747406006],[115,295,68,6.028587818145752],[115,295,69,6.022512435913086],[115,295,70,6.0178608894348145],[115,295,71,6.014236927032471],[115,295,72,6.0120463371276855],[115,295,73,6.012378215789795],[115,295,74,6.012474060058594],[115,295,75,6.016749382019043],[115,295,76,6.0334553718566895],[115,295,77,6.058749198913574],[115,295,78,6.076561450958252],[115,295,79,6.080285549163818],[115,296,64,6.030251979827881],[115,296,65,6.037074565887451],[115,296,66,6.038665294647217],[115,296,67,6.034188747406006],[115,296,68,6.028587818145752],[115,296,69,6.022512435913086],[115,296,70,6.0178608894348145],[115,296,71,6.014236927032471],[115,296,72,6.0120463371276855],[115,296,73,6.012378215789795],[115,296,74,6.012474060058594],[115,296,75,6.016749382019043],[115,296,76,6.0334553718566895],[115,296,77,6.058749198913574],[115,296,78,6.076561450958252],[115,296,79,6.080285549163818],[115,297,64,6.030251979827881],[115,297,65,6.037074565887451],[115,297,66,6.038665294647217],[115,297,67,6.034188747406006],[115,297,68,6.028587818145752],[115,297,69,6.022512435913086],[115,297,70,6.0178608894348145],[115,297,71,6.014236927032471],[115,297,72,6.0120463371276855],[115,297,73,6.012378215789795],[115,297,74,6.012474060058594],[115,297,75,6.016749382019043],[115,297,76,6.0334553718566895],[115,297,77,6.058749198913574],[115,297,78,6.076561450958252],[115,297,79,6.080285549163818],[115,298,64,6.030251979827881],[115,298,65,6.037074565887451],[115,298,66,6.038665294647217],[115,298,67,6.034188747406006],[115,298,68,6.028587818145752],[115,298,69,6.022512435913086],[115,298,70,6.0178608894348145],[115,298,71,6.014236927032471],[115,298,72,6.0120463371276855],[115,298,73,6.012378215789795],[115,298,74,6.012474060058594],[115,298,75,6.016749382019043],[115,298,76,6.0334553718566895],[115,298,77,6.058749198913574],[115,298,78,6.076561450958252],[115,298,79,6.080285549163818],[115,299,64,6.030251979827881],[115,299,65,6.037074565887451],[115,299,66,6.038665294647217],[115,299,67,6.034188747406006],[115,299,68,6.028587818145752],[115,299,69,6.022512435913086],[115,299,70,6.0178608894348145],[115,299,71,6.014236927032471],[115,299,72,6.0120463371276855],[115,299,73,6.012378215789795],[115,299,74,6.012474060058594],[115,299,75,6.016749382019043],[115,299,76,6.0334553718566895],[115,299,77,6.058749198913574],[115,299,78,6.076561450958252],[115,299,79,6.080285549163818],[115,300,64,6.030251979827881],[115,300,65,6.037074565887451],[115,300,66,6.038665294647217],[115,300,67,6.034188747406006],[115,300,68,6.028587818145752],[115,300,69,6.022512435913086],[115,300,70,6.0178608894348145],[115,300,71,6.014236927032471],[115,300,72,6.0120463371276855],[115,300,73,6.012378215789795],[115,300,74,6.012474060058594],[115,300,75,6.016749382019043],[115,300,76,6.0334553718566895],[115,300,77,6.058749198913574],[115,300,78,6.076561450958252],[115,300,79,6.080285549163818],[115,301,64,6.030251979827881],[115,301,65,6.037074565887451],[115,301,66,6.038665294647217],[115,301,67,6.034188747406006],[115,301,68,6.028587818145752],[115,301,69,6.022512435913086],[115,301,70,6.0178608894348145],[115,301,71,6.014236927032471],[115,301,72,6.0120463371276855],[115,301,73,6.012378215789795],[115,301,74,6.012474060058594],[115,301,75,6.016749382019043],[115,301,76,6.0334553718566895],[115,301,77,6.058749198913574],[115,301,78,6.076561450958252],[115,301,79,6.080285549163818],[115,302,64,6.030251979827881],[115,302,65,6.037074565887451],[115,302,66,6.038665294647217],[115,302,67,6.034188747406006],[115,302,68,6.028587818145752],[115,302,69,6.022512435913086],[115,302,70,6.0178608894348145],[115,302,71,6.014236927032471],[115,302,72,6.0120463371276855],[115,302,73,6.012378215789795],[115,302,74,6.012474060058594],[115,302,75,6.016749382019043],[115,302,76,6.0334553718566895],[115,302,77,6.058749198913574],[115,302,78,6.076561450958252],[115,302,79,6.080285549163818],[115,303,64,6.030251979827881],[115,303,65,6.037074565887451],[115,303,66,6.038665294647217],[115,303,67,6.034188747406006],[115,303,68,6.028587818145752],[115,303,69,6.022512435913086],[115,303,70,6.0178608894348145],[115,303,71,6.014236927032471],[115,303,72,6.0120463371276855],[115,303,73,6.012378215789795],[115,303,74,6.012474060058594],[115,303,75,6.016749382019043],[115,303,76,6.0334553718566895],[115,303,77,6.058749198913574],[115,303,78,6.076561450958252],[115,303,79,6.080285549163818],[115,304,64,6.030251979827881],[115,304,65,6.037074565887451],[115,304,66,6.038665294647217],[115,304,67,6.034188747406006],[115,304,68,6.028587818145752],[115,304,69,6.022512435913086],[115,304,70,6.0178608894348145],[115,304,71,6.014236927032471],[115,304,72,6.0120463371276855],[115,304,73,6.012378215789795],[115,304,74,6.012474060058594],[115,304,75,6.016749382019043],[115,304,76,6.0334553718566895],[115,304,77,6.058749198913574],[115,304,78,6.076561450958252],[115,304,79,6.080285549163818],[115,305,64,6.030251979827881],[115,305,65,6.037074565887451],[115,305,66,6.038665294647217],[115,305,67,6.034188747406006],[115,305,68,6.028587818145752],[115,305,69,6.022512435913086],[115,305,70,6.0178608894348145],[115,305,71,6.014236927032471],[115,305,72,6.0120463371276855],[115,305,73,6.012378215789795],[115,305,74,6.012474060058594],[115,305,75,6.016749382019043],[115,305,76,6.0334553718566895],[115,305,77,6.058749198913574],[115,305,78,6.076561450958252],[115,305,79,6.080285549163818],[115,306,64,6.030251979827881],[115,306,65,6.037074565887451],[115,306,66,6.038665294647217],[115,306,67,6.034188747406006],[115,306,68,6.028587818145752],[115,306,69,6.022512435913086],[115,306,70,6.0178608894348145],[115,306,71,6.014236927032471],[115,306,72,6.0120463371276855],[115,306,73,6.012378215789795],[115,306,74,6.012474060058594],[115,306,75,6.016749382019043],[115,306,76,6.0334553718566895],[115,306,77,6.058749198913574],[115,306,78,6.076561450958252],[115,306,79,6.080285549163818],[115,307,64,6.030251979827881],[115,307,65,6.037074565887451],[115,307,66,6.038665294647217],[115,307,67,6.034188747406006],[115,307,68,6.028587818145752],[115,307,69,6.022512435913086],[115,307,70,6.0178608894348145],[115,307,71,6.014236927032471],[115,307,72,6.0120463371276855],[115,307,73,6.012378215789795],[115,307,74,6.012474060058594],[115,307,75,6.016749382019043],[115,307,76,6.0334553718566895],[115,307,77,6.058749198913574],[115,307,78,6.076561450958252],[115,307,79,6.080285549163818],[115,308,64,6.030251979827881],[115,308,65,6.037074565887451],[115,308,66,6.038665294647217],[115,308,67,6.034188747406006],[115,308,68,6.028587818145752],[115,308,69,6.022512435913086],[115,308,70,6.0178608894348145],[115,308,71,6.014236927032471],[115,308,72,6.0120463371276855],[115,308,73,6.012378215789795],[115,308,74,6.012474060058594],[115,308,75,6.016749382019043],[115,308,76,6.0334553718566895],[115,308,77,6.058749198913574],[115,308,78,6.076561450958252],[115,308,79,6.080285549163818],[115,309,64,6.030251979827881],[115,309,65,6.037074565887451],[115,309,66,6.038665294647217],[115,309,67,6.034188747406006],[115,309,68,6.028587818145752],[115,309,69,6.022512435913086],[115,309,70,6.0178608894348145],[115,309,71,6.014236927032471],[115,309,72,6.0120463371276855],[115,309,73,6.012378215789795],[115,309,74,6.012474060058594],[115,309,75,6.016749382019043],[115,309,76,6.0334553718566895],[115,309,77,6.058749198913574],[115,309,78,6.076561450958252],[115,309,79,6.080285549163818],[115,310,64,6.030251979827881],[115,310,65,6.037074565887451],[115,310,66,6.038665294647217],[115,310,67,6.034188747406006],[115,310,68,6.028587818145752],[115,310,69,6.022512435913086],[115,310,70,6.0178608894348145],[115,310,71,6.014236927032471],[115,310,72,6.0120463371276855],[115,310,73,6.012378215789795],[115,310,74,6.012474060058594],[115,310,75,6.016749382019043],[115,310,76,6.0334553718566895],[115,310,77,6.058749198913574],[115,310,78,6.076561450958252],[115,310,79,6.080285549163818],[115,311,64,6.030251979827881],[115,311,65,6.037074565887451],[115,311,66,6.038665294647217],[115,311,67,6.034188747406006],[115,311,68,6.028587818145752],[115,311,69,6.022512435913086],[115,311,70,6.0178608894348145],[115,311,71,6.014236927032471],[115,311,72,6.0120463371276855],[115,311,73,6.012378215789795],[115,311,74,6.012474060058594],[115,311,75,6.016749382019043],[115,311,76,6.0334553718566895],[115,311,77,6.058749198913574],[115,311,78,6.076561450958252],[115,311,79,6.080285549163818],[115,312,64,6.030251979827881],[115,312,65,6.037074565887451],[115,312,66,6.038665294647217],[115,312,67,6.034188747406006],[115,312,68,6.028587818145752],[115,312,69,6.022512435913086],[115,312,70,6.0178608894348145],[115,312,71,6.014236927032471],[115,312,72,6.0120463371276855],[115,312,73,6.012378215789795],[115,312,74,6.012474060058594],[115,312,75,6.016749382019043],[115,312,76,6.0334553718566895],[115,312,77,6.058749198913574],[115,312,78,6.076561450958252],[115,312,79,6.080285549163818],[115,313,64,6.030251979827881],[115,313,65,6.037074565887451],[115,313,66,6.038665294647217],[115,313,67,6.034188747406006],[115,313,68,6.028587818145752],[115,313,69,6.022512435913086],[115,313,70,6.0178608894348145],[115,313,71,6.014236927032471],[115,313,72,6.0120463371276855],[115,313,73,6.012378215789795],[115,313,74,6.012474060058594],[115,313,75,6.016749382019043],[115,313,76,6.0334553718566895],[115,313,77,6.058749198913574],[115,313,78,6.076561450958252],[115,313,79,6.080285549163818],[115,314,64,6.030251979827881],[115,314,65,6.037074565887451],[115,314,66,6.038665294647217],[115,314,67,6.034188747406006],[115,314,68,6.028587818145752],[115,314,69,6.022512435913086],[115,314,70,6.0178608894348145],[115,314,71,6.014236927032471],[115,314,72,6.0120463371276855],[115,314,73,6.012378215789795],[115,314,74,6.012474060058594],[115,314,75,6.016749382019043],[115,314,76,6.0334553718566895],[115,314,77,6.058749198913574],[115,314,78,6.076561450958252],[115,314,79,6.080285549163818],[115,315,64,6.030251979827881],[115,315,65,6.037074565887451],[115,315,66,6.038665294647217],[115,315,67,6.034188747406006],[115,315,68,6.028587818145752],[115,315,69,6.022512435913086],[115,315,70,6.0178608894348145],[115,315,71,6.014236927032471],[115,315,72,6.0120463371276855],[115,315,73,6.012378215789795],[115,315,74,6.012474060058594],[115,315,75,6.016749382019043],[115,315,76,6.0334553718566895],[115,315,77,6.058749198913574],[115,315,78,6.076561450958252],[115,315,79,6.080285549163818],[115,316,64,6.030251979827881],[115,316,65,6.037074565887451],[115,316,66,6.038665294647217],[115,316,67,6.034188747406006],[115,316,68,6.028587818145752],[115,316,69,6.022512435913086],[115,316,70,6.0178608894348145],[115,316,71,6.014236927032471],[115,316,72,6.0120463371276855],[115,316,73,6.012378215789795],[115,316,74,6.012474060058594],[115,316,75,6.016749382019043],[115,316,76,6.0334553718566895],[115,316,77,6.058749198913574],[115,316,78,6.076561450958252],[115,316,79,6.080285549163818],[115,317,64,6.030251979827881],[115,317,65,6.037074565887451],[115,317,66,6.038665294647217],[115,317,67,6.034188747406006],[115,317,68,6.028587818145752],[115,317,69,6.022512435913086],[115,317,70,6.0178608894348145],[115,317,71,6.014236927032471],[115,317,72,6.0120463371276855],[115,317,73,6.012378215789795],[115,317,74,6.012474060058594],[115,317,75,6.016749382019043],[115,317,76,6.0334553718566895],[115,317,77,6.058749198913574],[115,317,78,6.076561450958252],[115,317,79,6.080285549163818],[115,318,64,6.030251979827881],[115,318,65,6.037074565887451],[115,318,66,6.038665294647217],[115,318,67,6.034188747406006],[115,318,68,6.028587818145752],[115,318,69,6.022512435913086],[115,318,70,6.0178608894348145],[115,318,71,6.014236927032471],[115,318,72,6.0120463371276855],[115,318,73,6.012378215789795],[115,318,74,6.012474060058594],[115,318,75,6.016749382019043],[115,318,76,6.0334553718566895],[115,318,77,6.058749198913574],[115,318,78,6.076561450958252],[115,318,79,6.080285549163818],[115,319,64,6.030251979827881],[115,319,65,6.037074565887451],[115,319,66,6.038665294647217],[115,319,67,6.034188747406006],[115,319,68,6.028587818145752],[115,319,69,6.022512435913086],[115,319,70,6.0178608894348145],[115,319,71,6.014236927032471],[115,319,72,6.0120463371276855],[115,319,73,6.012378215789795],[115,319,74,6.012474060058594],[115,319,75,6.016749382019043],[115,319,76,6.0334553718566895],[115,319,77,6.058749198913574],[115,319,78,6.076561450958252],[115,319,79,6.080285549163818],[116,-64,64,6.05026912689209],[116,-64,65,6.060091018676758],[116,-64,66,6.061452865600586],[116,-64,67,6.054780006408691],[116,-64,68,6.046853065490723],[116,-64,69,6.040349006652832],[116,-64,70,6.036932468414307],[116,-64,71,6.034491062164307],[116,-64,72,6.033131122589111],[116,-64,73,6.036201000213623],[116,-64,74,6.041961669921875],[116,-64,75,6.048854351043701],[116,-64,76,6.061378002166748],[116,-64,77,6.080756187438965],[116,-64,78,6.0968451499938965],[116,-64,79,6.103983402252197],[116,-63,64,6.05026912689209],[116,-63,65,6.060091018676758],[116,-63,66,6.061452865600586],[116,-63,67,6.054780006408691],[116,-63,68,6.046853065490723],[116,-63,69,6.040349006652832],[116,-63,70,6.036932468414307],[116,-63,71,6.034491062164307],[116,-63,72,6.033131122589111],[116,-63,73,6.036201000213623],[116,-63,74,6.041961669921875],[116,-63,75,6.048854351043701],[116,-63,76,6.061378002166748],[116,-63,77,6.080756187438965],[116,-63,78,6.0968451499938965],[116,-63,79,6.103983402252197],[116,-62,64,6.05026912689209],[116,-62,65,6.060091018676758],[116,-62,66,6.061452865600586],[116,-62,67,6.054780006408691],[116,-62,68,6.046853065490723],[116,-62,69,6.040349006652832],[116,-62,70,6.036932468414307],[116,-62,71,6.034491062164307],[116,-62,72,6.033131122589111],[116,-62,73,6.036201000213623],[116,-62,74,6.041961669921875],[116,-62,75,6.048854351043701],[116,-62,76,6.061378002166748],[116,-62,77,6.080756187438965],[116,-62,78,6.0968451499938965],[116,-62,79,6.103983402252197],[116,-61,64,6.05026912689209],[116,-61,65,6.060091018676758],[116,-61,66,6.061452865600586],[116,-61,67,6.054780006408691],[116,-61,68,6.046853065490723],[116,-61,69,6.040349006652832],[116,-61,70,6.036932468414307],[116,-61,71,6.034491062164307],[116,-61,72,6.033131122589111],[116,-61,73,6.036201000213623],[116,-61,74,6.041961669921875],[116,-61,75,6.048854351043701],[116,-61,76,6.061378002166748],[116,-61,77,6.080756187438965],[116,-61,78,6.0968451499938965],[116,-61,79,6.103983402252197],[116,-60,64,6.05026912689209],[116,-60,65,6.060091018676758],[116,-60,66,6.061452865600586],[116,-60,67,6.054780006408691],[116,-60,68,6.046853065490723],[116,-60,69,6.040349006652832],[116,-60,70,6.036932468414307],[116,-60,71,6.034491062164307],[116,-60,72,6.033131122589111],[116,-60,73,6.036201000213623],[116,-60,74,6.041961669921875],[116,-60,75,6.048854351043701],[116,-60,76,6.061378002166748],[116,-60,77,6.080756187438965],[116,-60,78,6.0968451499938965],[116,-60,79,6.103983402252197],[116,-59,64,6.05026912689209],[116,-59,65,6.060091018676758],[116,-59,66,6.061452865600586],[116,-59,67,6.054780006408691],[116,-59,68,6.046853065490723],[116,-59,69,6.040349006652832],[116,-59,70,6.036932468414307],[116,-59,71,6.034491062164307],[116,-59,72,6.033131122589111],[116,-59,73,6.036201000213623],[116,-59,74,6.041961669921875],[116,-59,75,6.048854351043701],[116,-59,76,6.061378002166748],[116,-59,77,6.080756187438965],[116,-59,78,6.0968451499938965],[116,-59,79,6.103983402252197],[116,-58,64,6.05026912689209],[116,-58,65,6.060091018676758],[116,-58,66,6.061452865600586],[116,-58,67,6.054780006408691],[116,-58,68,6.046853065490723],[116,-58,69,6.040349006652832],[116,-58,70,6.036932468414307],[116,-58,71,6.034491062164307],[116,-58,72,6.033131122589111],[116,-58,73,6.036201000213623],[116,-58,74,6.041961669921875],[116,-58,75,6.048854351043701],[116,-58,76,6.061378002166748],[116,-58,77,6.080756187438965],[116,-58,78,6.0968451499938965],[116,-58,79,6.103983402252197],[116,-57,64,6.05026912689209],[116,-57,65,6.060091018676758],[116,-57,66,6.061452865600586],[116,-57,67,6.054780006408691],[116,-57,68,6.046853065490723],[116,-57,69,6.040349006652832],[116,-57,70,6.036932468414307],[116,-57,71,6.034491062164307],[116,-57,72,6.033131122589111],[116,-57,73,6.036201000213623],[116,-57,74,6.041961669921875],[116,-57,75,6.048854351043701],[116,-57,76,6.061378002166748],[116,-57,77,6.080756187438965],[116,-57,78,6.0968451499938965],[116,-57,79,6.103983402252197],[116,-56,64,6.05026912689209],[116,-56,65,6.060091018676758],[116,-56,66,6.061452865600586],[116,-56,67,6.054780006408691],[116,-56,68,6.046853065490723],[116,-56,69,6.040349006652832],[116,-56,70,6.036932468414307],[116,-56,71,6.034491062164307],[116,-56,72,6.033131122589111],[116,-56,73,6.036201000213623],[116,-56,74,6.041961669921875],[116,-56,75,6.048854351043701],[116,-56,76,6.061378002166748],[116,-56,77,6.080756187438965],[116,-56,78,6.0968451499938965],[116,-56,79,6.103983402252197],[116,-55,64,6.05026912689209],[116,-55,65,6.060091018676758],[116,-55,66,6.061452865600586],[116,-55,67,6.054780006408691],[116,-55,68,6.046853065490723],[116,-55,69,6.040349006652832],[116,-55,70,6.036932468414307],[116,-55,71,6.034491062164307],[116,-55,72,6.033131122589111],[116,-55,73,6.036201000213623],[116,-55,74,6.041961669921875],[116,-55,75,6.048854351043701],[116,-55,76,6.061378002166748],[116,-55,77,6.080756187438965],[116,-55,78,6.0968451499938965],[116,-55,79,6.103983402252197],[116,-54,64,6.05026912689209],[116,-54,65,6.060091018676758],[116,-54,66,6.061452865600586],[116,-54,67,6.054780006408691],[116,-54,68,6.046853065490723],[116,-54,69,6.040349006652832],[116,-54,70,6.036932468414307],[116,-54,71,6.034491062164307],[116,-54,72,6.033131122589111],[116,-54,73,6.036201000213623],[116,-54,74,6.041961669921875],[116,-54,75,6.048854351043701],[116,-54,76,6.061378002166748],[116,-54,77,6.080756187438965],[116,-54,78,6.0968451499938965],[116,-54,79,6.103983402252197],[116,-53,64,6.05026912689209],[116,-53,65,6.060091018676758],[116,-53,66,6.061452865600586],[116,-53,67,6.054780006408691],[116,-53,68,6.046853065490723],[116,-53,69,6.040349006652832],[116,-53,70,6.036932468414307],[116,-53,71,6.034491062164307],[116,-53,72,6.033131122589111],[116,-53,73,6.036201000213623],[116,-53,74,6.041961669921875],[116,-53,75,6.048854351043701],[116,-53,76,6.061378002166748],[116,-53,77,6.080756187438965],[116,-53,78,6.0968451499938965],[116,-53,79,6.103983402252197],[116,-52,64,6.05026912689209],[116,-52,65,6.060091018676758],[116,-52,66,6.061452865600586],[116,-52,67,6.054780006408691],[116,-52,68,6.046853065490723],[116,-52,69,6.040349006652832],[116,-52,70,6.036932468414307],[116,-52,71,6.034491062164307],[116,-52,72,6.033131122589111],[116,-52,73,6.036201000213623],[116,-52,74,6.041961669921875],[116,-52,75,6.048854351043701],[116,-52,76,6.061378002166748],[116,-52,77,6.080756187438965],[116,-52,78,6.0968451499938965],[116,-52,79,6.103983402252197],[116,-51,64,6.05026912689209],[116,-51,65,6.060091018676758],[116,-51,66,6.061452865600586],[116,-51,67,6.054780006408691],[116,-51,68,6.046853065490723],[116,-51,69,6.040349006652832],[116,-51,70,6.036932468414307],[116,-51,71,6.034491062164307],[116,-51,72,6.033131122589111],[116,-51,73,6.036201000213623],[116,-51,74,6.041961669921875],[116,-51,75,6.048854351043701],[116,-51,76,6.061378002166748],[116,-51,77,6.080756187438965],[116,-51,78,6.0968451499938965],[116,-51,79,6.103983402252197],[116,-50,64,6.05026912689209],[116,-50,65,6.060091018676758],[116,-50,66,6.061452865600586],[116,-50,67,6.054780006408691],[116,-50,68,6.046853065490723],[116,-50,69,6.040349006652832],[116,-50,70,6.036932468414307],[116,-50,71,6.034491062164307],[116,-50,72,6.033131122589111],[116,-50,73,6.036201000213623],[116,-50,74,6.041961669921875],[116,-50,75,6.048854351043701],[116,-50,76,6.061378002166748],[116,-50,77,6.080756187438965],[116,-50,78,6.0968451499938965],[116,-50,79,6.103983402252197],[116,-49,64,6.05026912689209],[116,-49,65,6.060091018676758],[116,-49,66,6.061452865600586],[116,-49,67,6.054780006408691],[116,-49,68,6.046853065490723],[116,-49,69,6.040349006652832],[116,-49,70,6.036932468414307],[116,-49,71,6.034491062164307],[116,-49,72,6.033131122589111],[116,-49,73,6.036201000213623],[116,-49,74,6.041961669921875],[116,-49,75,6.048854351043701],[116,-49,76,6.061378002166748],[116,-49,77,6.080756187438965],[116,-49,78,6.0968451499938965],[116,-49,79,6.103983402252197],[116,-48,64,6.05026912689209],[116,-48,65,6.060091018676758],[116,-48,66,6.061452865600586],[116,-48,67,6.054780006408691],[116,-48,68,6.046853065490723],[116,-48,69,6.040349006652832],[116,-48,70,6.036932468414307],[116,-48,71,6.034491062164307],[116,-48,72,6.033131122589111],[116,-48,73,6.036201000213623],[116,-48,74,6.041961669921875],[116,-48,75,6.048854351043701],[116,-48,76,6.061378002166748],[116,-48,77,6.080756187438965],[116,-48,78,6.0968451499938965],[116,-48,79,6.103983402252197],[116,-47,64,6.05026912689209],[116,-47,65,6.060091018676758],[116,-47,66,6.061452865600586],[116,-47,67,6.054780006408691],[116,-47,68,6.046853065490723],[116,-47,69,6.040349006652832],[116,-47,70,6.036932468414307],[116,-47,71,6.034491062164307],[116,-47,72,6.033131122589111],[116,-47,73,6.036201000213623],[116,-47,74,6.041961669921875],[116,-47,75,6.048854351043701],[116,-47,76,6.061378002166748],[116,-47,77,6.080756187438965],[116,-47,78,6.0968451499938965],[116,-47,79,6.103983402252197],[116,-46,64,6.05026912689209],[116,-46,65,6.060091018676758],[116,-46,66,6.061452865600586],[116,-46,67,6.054780006408691],[116,-46,68,6.046853065490723],[116,-46,69,6.040349006652832],[116,-46,70,6.036932468414307],[116,-46,71,6.034491062164307],[116,-46,72,6.033131122589111],[116,-46,73,6.036201000213623],[116,-46,74,6.041961669921875],[116,-46,75,6.048854351043701],[116,-46,76,6.061378002166748],[116,-46,77,6.080756187438965],[116,-46,78,6.0968451499938965],[116,-46,79,6.103983402252197],[116,-45,64,6.05026912689209],[116,-45,65,6.060091018676758],[116,-45,66,6.061452865600586],[116,-45,67,6.054780006408691],[116,-45,68,6.046853065490723],[116,-45,69,6.040349006652832],[116,-45,70,6.036932468414307],[116,-45,71,6.034491062164307],[116,-45,72,6.033131122589111],[116,-45,73,6.036201000213623],[116,-45,74,6.041961669921875],[116,-45,75,6.048854351043701],[116,-45,76,6.061378002166748],[116,-45,77,6.080756187438965],[116,-45,78,6.0968451499938965],[116,-45,79,6.103983402252197],[116,-44,64,6.05026912689209],[116,-44,65,6.060091018676758],[116,-44,66,6.061452865600586],[116,-44,67,6.054780006408691],[116,-44,68,6.046853065490723],[116,-44,69,6.040349006652832],[116,-44,70,6.036932468414307],[116,-44,71,6.034491062164307],[116,-44,72,6.033131122589111],[116,-44,73,6.036201000213623],[116,-44,74,6.041961669921875],[116,-44,75,6.048854351043701],[116,-44,76,6.061378002166748],[116,-44,77,6.080756187438965],[116,-44,78,6.0968451499938965],[116,-44,79,6.103983402252197],[116,-43,64,6.05026912689209],[116,-43,65,6.060091018676758],[116,-43,66,6.061452865600586],[116,-43,67,6.054780006408691],[116,-43,68,6.046853065490723],[116,-43,69,6.040349006652832],[116,-43,70,6.036932468414307],[116,-43,71,6.034491062164307],[116,-43,72,6.033131122589111],[116,-43,73,6.036201000213623],[116,-43,74,6.041961669921875],[116,-43,75,6.048854351043701],[116,-43,76,6.061378002166748],[116,-43,77,6.080756187438965],[116,-43,78,6.0968451499938965],[116,-43,79,6.103983402252197],[116,-42,64,6.05026912689209],[116,-42,65,6.060091018676758],[116,-42,66,6.061452865600586],[116,-42,67,6.054780006408691],[116,-42,68,6.046853065490723],[116,-42,69,6.040349006652832],[116,-42,70,6.036932468414307],[116,-42,71,6.034491062164307],[116,-42,72,6.033131122589111],[116,-42,73,6.036201000213623],[116,-42,74,6.041961669921875],[116,-42,75,6.048854351043701],[116,-42,76,6.061378002166748],[116,-42,77,6.080756187438965],[116,-42,78,6.0968451499938965],[116,-42,79,6.103983402252197],[116,-41,64,6.05026912689209],[116,-41,65,6.060091018676758],[116,-41,66,6.061452865600586],[116,-41,67,6.054780006408691],[116,-41,68,6.046853065490723],[116,-41,69,6.040349006652832],[116,-41,70,6.036932468414307],[116,-41,71,6.034491062164307],[116,-41,72,6.033131122589111],[116,-41,73,6.036201000213623],[116,-41,74,6.041961669921875],[116,-41,75,6.048854351043701],[116,-41,76,6.061378002166748],[116,-41,77,6.080756187438965],[116,-41,78,6.0968451499938965],[116,-41,79,6.103983402252197],[116,-40,64,6.05026912689209],[116,-40,65,6.060091018676758],[116,-40,66,6.061452865600586],[116,-40,67,6.054780006408691],[116,-40,68,6.046853065490723],[116,-40,69,6.040349006652832],[116,-40,70,6.036932468414307],[116,-40,71,6.034491062164307],[116,-40,72,6.033131122589111],[116,-40,73,6.036201000213623],[116,-40,74,6.041961669921875],[116,-40,75,6.048854351043701],[116,-40,76,6.061378002166748],[116,-40,77,6.080756187438965],[116,-40,78,6.0968451499938965],[116,-40,79,6.103983402252197],[116,-39,64,6.05026912689209],[116,-39,65,6.060091018676758],[116,-39,66,6.061452865600586],[116,-39,67,6.054780006408691],[116,-39,68,6.046853065490723],[116,-39,69,6.040349006652832],[116,-39,70,6.036932468414307],[116,-39,71,6.034491062164307],[116,-39,72,6.033131122589111],[116,-39,73,6.036201000213623],[116,-39,74,6.041961669921875],[116,-39,75,6.048854351043701],[116,-39,76,6.061378002166748],[116,-39,77,6.080756187438965],[116,-39,78,6.0968451499938965],[116,-39,79,6.103983402252197],[116,-38,64,6.05026912689209],[116,-38,65,6.060091018676758],[116,-38,66,6.061452865600586],[116,-38,67,6.054780006408691],[116,-38,68,6.046853065490723],[116,-38,69,6.040349006652832],[116,-38,70,6.036932468414307],[116,-38,71,6.034491062164307],[116,-38,72,6.033131122589111],[116,-38,73,6.036201000213623],[116,-38,74,6.041961669921875],[116,-38,75,6.048854351043701],[116,-38,76,6.061378002166748],[116,-38,77,6.080756187438965],[116,-38,78,6.0968451499938965],[116,-38,79,6.103983402252197],[116,-37,64,6.05026912689209],[116,-37,65,6.060091018676758],[116,-37,66,6.061452865600586],[116,-37,67,6.054780006408691],[116,-37,68,6.046853065490723],[116,-37,69,6.040349006652832],[116,-37,70,6.036932468414307],[116,-37,71,6.034491062164307],[116,-37,72,6.033131122589111],[116,-37,73,6.036201000213623],[116,-37,74,6.041961669921875],[116,-37,75,6.048854351043701],[116,-37,76,6.061378002166748],[116,-37,77,6.080756187438965],[116,-37,78,6.0968451499938965],[116,-37,79,6.103983402252197],[116,-36,64,6.05026912689209],[116,-36,65,6.060091018676758],[116,-36,66,6.061452865600586],[116,-36,67,6.054780006408691],[116,-36,68,6.046853065490723],[116,-36,69,6.040349006652832],[116,-36,70,6.036932468414307],[116,-36,71,6.034491062164307],[116,-36,72,6.033131122589111],[116,-36,73,6.036201000213623],[116,-36,74,6.041961669921875],[116,-36,75,6.048854351043701],[116,-36,76,6.061378002166748],[116,-36,77,6.080756187438965],[116,-36,78,6.0968451499938965],[116,-36,79,6.103983402252197],[116,-35,64,6.05026912689209],[116,-35,65,6.060091018676758],[116,-35,66,6.061452865600586],[116,-35,67,6.054780006408691],[116,-35,68,6.046853065490723],[116,-35,69,6.040349006652832],[116,-35,70,6.036932468414307],[116,-35,71,6.034491062164307],[116,-35,72,6.033131122589111],[116,-35,73,6.036201000213623],[116,-35,74,6.041961669921875],[116,-35,75,6.048854351043701],[116,-35,76,6.061378002166748],[116,-35,77,6.080756187438965],[116,-35,78,6.0968451499938965],[116,-35,79,6.103983402252197],[116,-34,64,6.05026912689209],[116,-34,65,6.060091018676758],[116,-34,66,6.061452865600586],[116,-34,67,6.054780006408691],[116,-34,68,6.046853065490723],[116,-34,69,6.040349006652832],[116,-34,70,6.036932468414307],[116,-34,71,6.034491062164307],[116,-34,72,6.033131122589111],[116,-34,73,6.036201000213623],[116,-34,74,6.041961669921875],[116,-34,75,6.048854351043701],[116,-34,76,6.061378002166748],[116,-34,77,6.080756187438965],[116,-34,78,6.0968451499938965],[116,-34,79,6.103983402252197],[116,-33,64,6.05026912689209],[116,-33,65,6.060091018676758],[116,-33,66,6.061452865600586],[116,-33,67,6.054780006408691],[116,-33,68,6.046853065490723],[116,-33,69,6.040349006652832],[116,-33,70,6.036932468414307],[116,-33,71,6.034491062164307],[116,-33,72,6.033131122589111],[116,-33,73,6.036201000213623],[116,-33,74,6.041961669921875],[116,-33,75,6.048854351043701],[116,-33,76,6.061378002166748],[116,-33,77,6.080756187438965],[116,-33,78,6.0968451499938965],[116,-33,79,6.103983402252197],[116,-32,64,6.05026912689209],[116,-32,65,6.060091018676758],[116,-32,66,6.061452865600586],[116,-32,67,6.054780006408691],[116,-32,68,6.046853065490723],[116,-32,69,6.040349006652832],[116,-32,70,6.036932468414307],[116,-32,71,6.034491062164307],[116,-32,72,6.033131122589111],[116,-32,73,6.036201000213623],[116,-32,74,6.041961669921875],[116,-32,75,6.048854351043701],[116,-32,76,6.061378002166748],[116,-32,77,6.080756187438965],[116,-32,78,6.0968451499938965],[116,-32,79,6.103983402252197],[116,-31,64,6.05026912689209],[116,-31,65,6.060091018676758],[116,-31,66,6.061452865600586],[116,-31,67,6.054780006408691],[116,-31,68,6.046853065490723],[116,-31,69,6.040349006652832],[116,-31,70,6.036932468414307],[116,-31,71,6.034491062164307],[116,-31,72,6.033131122589111],[116,-31,73,6.036201000213623],[116,-31,74,6.041961669921875],[116,-31,75,6.048854351043701],[116,-31,76,6.061378002166748],[116,-31,77,6.080756187438965],[116,-31,78,6.0968451499938965],[116,-31,79,6.103983402252197],[116,-30,64,6.05026912689209],[116,-30,65,6.060091018676758],[116,-30,66,6.061452865600586],[116,-30,67,6.054780006408691],[116,-30,68,6.046853065490723],[116,-30,69,6.040349006652832],[116,-30,70,6.036932468414307],[116,-30,71,6.034491062164307],[116,-30,72,6.033131122589111],[116,-30,73,6.036201000213623],[116,-30,74,6.041961669921875],[116,-30,75,6.048854351043701],[116,-30,76,6.061378002166748],[116,-30,77,6.080756187438965],[116,-30,78,6.0968451499938965],[116,-30,79,6.103983402252197],[116,-29,64,6.05026912689209],[116,-29,65,6.060091018676758],[116,-29,66,6.061452865600586],[116,-29,67,6.054780006408691],[116,-29,68,6.046853065490723],[116,-29,69,6.040349006652832],[116,-29,70,6.036932468414307],[116,-29,71,6.034491062164307],[116,-29,72,6.033131122589111],[116,-29,73,6.036201000213623],[116,-29,74,6.041961669921875],[116,-29,75,6.048854351043701],[116,-29,76,6.061378002166748],[116,-29,77,6.080756187438965],[116,-29,78,6.0968451499938965],[116,-29,79,6.103983402252197],[116,-28,64,6.05026912689209],[116,-28,65,6.060091018676758],[116,-28,66,6.061452865600586],[116,-28,67,6.054780006408691],[116,-28,68,6.046853065490723],[116,-28,69,6.040349006652832],[116,-28,70,6.036932468414307],[116,-28,71,6.034491062164307],[116,-28,72,6.033131122589111],[116,-28,73,6.036201000213623],[116,-28,74,6.041961669921875],[116,-28,75,6.048854351043701],[116,-28,76,6.061378002166748],[116,-28,77,6.080756187438965],[116,-28,78,6.0968451499938965],[116,-28,79,6.103983402252197],[116,-27,64,6.05026912689209],[116,-27,65,6.060091018676758],[116,-27,66,6.061452865600586],[116,-27,67,6.054780006408691],[116,-27,68,6.046853065490723],[116,-27,69,6.040349006652832],[116,-27,70,6.036932468414307],[116,-27,71,6.034491062164307],[116,-27,72,6.033131122589111],[116,-27,73,6.036201000213623],[116,-27,74,6.041961669921875],[116,-27,75,6.048854351043701],[116,-27,76,6.061378002166748],[116,-27,77,6.080756187438965],[116,-27,78,6.0968451499938965],[116,-27,79,6.103983402252197],[116,-26,64,6.05026912689209],[116,-26,65,6.060091018676758],[116,-26,66,6.061452865600586],[116,-26,67,6.054780006408691],[116,-26,68,6.046853065490723],[116,-26,69,6.040349006652832],[116,-26,70,6.036932468414307],[116,-26,71,6.034491062164307],[116,-26,72,6.033131122589111],[116,-26,73,6.036201000213623],[116,-26,74,6.041961669921875],[116,-26,75,6.048854351043701],[116,-26,76,6.061378002166748],[116,-26,77,6.080756187438965],[116,-26,78,6.0968451499938965],[116,-26,79,6.103983402252197],[116,-25,64,6.05026912689209],[116,-25,65,6.060091018676758],[116,-25,66,6.061452865600586],[116,-25,67,6.054780006408691],[116,-25,68,6.046853065490723],[116,-25,69,6.040349006652832],[116,-25,70,6.036932468414307],[116,-25,71,6.034491062164307],[116,-25,72,6.033131122589111],[116,-25,73,6.036201000213623],[116,-25,74,6.041961669921875],[116,-25,75,6.048854351043701],[116,-25,76,6.061378002166748],[116,-25,77,6.080756187438965],[116,-25,78,6.0968451499938965],[116,-25,79,6.103983402252197],[116,-24,64,6.05026912689209],[116,-24,65,6.060091018676758],[116,-24,66,6.061452865600586],[116,-24,67,6.054780006408691],[116,-24,68,6.046853065490723],[116,-24,69,6.040349006652832],[116,-24,70,6.036932468414307],[116,-24,71,6.034491062164307],[116,-24,72,6.033131122589111],[116,-24,73,6.036201000213623],[116,-24,74,6.041961669921875],[116,-24,75,6.048854351043701],[116,-24,76,6.061378002166748],[116,-24,77,6.080756187438965],[116,-24,78,6.0968451499938965],[116,-24,79,6.103983402252197],[116,-23,64,6.05026912689209],[116,-23,65,6.060091018676758],[116,-23,66,6.061452865600586],[116,-23,67,6.054780006408691],[116,-23,68,6.046853065490723],[116,-23,69,6.040349006652832],[116,-23,70,6.036932468414307],[116,-23,71,6.034491062164307],[116,-23,72,6.033131122589111],[116,-23,73,6.036201000213623],[116,-23,74,6.041961669921875],[116,-23,75,6.048854351043701],[116,-23,76,6.061378002166748],[116,-23,77,6.080756187438965],[116,-23,78,6.0968451499938965],[116,-23,79,6.103983402252197],[116,-22,64,6.05026912689209],[116,-22,65,6.060091018676758],[116,-22,66,6.061452865600586],[116,-22,67,6.054780006408691],[116,-22,68,6.046853065490723],[116,-22,69,6.040349006652832],[116,-22,70,6.036932468414307],[116,-22,71,6.034491062164307],[116,-22,72,6.033131122589111],[116,-22,73,6.036201000213623],[116,-22,74,6.041961669921875],[116,-22,75,6.048854351043701],[116,-22,76,6.061378002166748],[116,-22,77,6.080756187438965],[116,-22,78,6.0968451499938965],[116,-22,79,6.103983402252197],[116,-21,64,6.05026912689209],[116,-21,65,6.060091018676758],[116,-21,66,6.061452865600586],[116,-21,67,6.054780006408691],[116,-21,68,6.046853065490723],[116,-21,69,6.040349006652832],[116,-21,70,6.036932468414307],[116,-21,71,6.034491062164307],[116,-21,72,6.033131122589111],[116,-21,73,6.036201000213623],[116,-21,74,6.041961669921875],[116,-21,75,6.048854351043701],[116,-21,76,6.061378002166748],[116,-21,77,6.080756187438965],[116,-21,78,6.0968451499938965],[116,-21,79,6.103983402252197],[116,-20,64,6.05026912689209],[116,-20,65,6.060091018676758],[116,-20,66,6.061452865600586],[116,-20,67,6.054780006408691],[116,-20,68,6.046853065490723],[116,-20,69,6.040349006652832],[116,-20,70,6.036932468414307],[116,-20,71,6.034491062164307],[116,-20,72,6.033131122589111],[116,-20,73,6.036201000213623],[116,-20,74,6.041961669921875],[116,-20,75,6.048854351043701],[116,-20,76,6.061378002166748],[116,-20,77,6.080756187438965],[116,-20,78,6.0968451499938965],[116,-20,79,6.103983402252197],[116,-19,64,6.05026912689209],[116,-19,65,6.060091018676758],[116,-19,66,6.061452865600586],[116,-19,67,6.054780006408691],[116,-19,68,6.046853065490723],[116,-19,69,6.040349006652832],[116,-19,70,6.036932468414307],[116,-19,71,6.034491062164307],[116,-19,72,6.033131122589111],[116,-19,73,6.036201000213623],[116,-19,74,6.041961669921875],[116,-19,75,6.048854351043701],[116,-19,76,6.061378002166748],[116,-19,77,6.080756187438965],[116,-19,78,6.0968451499938965],[116,-19,79,6.103983402252197],[116,-18,64,6.05026912689209],[116,-18,65,6.060091018676758],[116,-18,66,6.061452865600586],[116,-18,67,6.054780006408691],[116,-18,68,6.046853065490723],[116,-18,69,6.040349006652832],[116,-18,70,6.036932468414307],[116,-18,71,6.034491062164307],[116,-18,72,6.033131122589111],[116,-18,73,6.036201000213623],[116,-18,74,6.041961669921875],[116,-18,75,6.048854351043701],[116,-18,76,6.061378002166748],[116,-18,77,6.080756187438965],[116,-18,78,6.0968451499938965],[116,-18,79,6.103983402252197],[116,-17,64,6.05026912689209],[116,-17,65,6.060091018676758],[116,-17,66,6.061452865600586],[116,-17,67,6.054780006408691],[116,-17,68,6.046853065490723],[116,-17,69,6.040349006652832],[116,-17,70,6.036932468414307],[116,-17,71,6.034491062164307],[116,-17,72,6.033131122589111],[116,-17,73,6.036201000213623],[116,-17,74,6.041961669921875],[116,-17,75,6.048854351043701],[116,-17,76,6.061378002166748],[116,-17,77,6.080756187438965],[116,-17,78,6.0968451499938965],[116,-17,79,6.103983402252197],[116,-16,64,6.05026912689209],[116,-16,65,6.060091018676758],[116,-16,66,6.061452865600586],[116,-16,67,6.054780006408691],[116,-16,68,6.046853065490723],[116,-16,69,6.040349006652832],[116,-16,70,6.036932468414307],[116,-16,71,6.034491062164307],[116,-16,72,6.033131122589111],[116,-16,73,6.036201000213623],[116,-16,74,6.041961669921875],[116,-16,75,6.048854351043701],[116,-16,76,6.061378002166748],[116,-16,77,6.080756187438965],[116,-16,78,6.0968451499938965],[116,-16,79,6.103983402252197],[116,-15,64,6.05026912689209],[116,-15,65,6.060091018676758],[116,-15,66,6.061452865600586],[116,-15,67,6.054780006408691],[116,-15,68,6.046853065490723],[116,-15,69,6.040349006652832],[116,-15,70,6.036932468414307],[116,-15,71,6.034491062164307],[116,-15,72,6.033131122589111],[116,-15,73,6.036201000213623],[116,-15,74,6.041961669921875],[116,-15,75,6.048854351043701],[116,-15,76,6.061378002166748],[116,-15,77,6.080756187438965],[116,-15,78,6.0968451499938965],[116,-15,79,6.103983402252197],[116,-14,64,6.05026912689209],[116,-14,65,6.060091018676758],[116,-14,66,6.061452865600586],[116,-14,67,6.054780006408691],[116,-14,68,6.046853065490723],[116,-14,69,6.040349006652832],[116,-14,70,6.036932468414307],[116,-14,71,6.034491062164307],[116,-14,72,6.033131122589111],[116,-14,73,6.036201000213623],[116,-14,74,6.041961669921875],[116,-14,75,6.048854351043701],[116,-14,76,6.061378002166748],[116,-14,77,6.080756187438965],[116,-14,78,6.0968451499938965],[116,-14,79,6.103983402252197],[116,-13,64,6.05026912689209],[116,-13,65,6.060091018676758],[116,-13,66,6.061452865600586],[116,-13,67,6.054780006408691],[116,-13,68,6.046853065490723],[116,-13,69,6.040349006652832],[116,-13,70,6.036932468414307],[116,-13,71,6.034491062164307],[116,-13,72,6.033131122589111],[116,-13,73,6.036201000213623],[116,-13,74,6.041961669921875],[116,-13,75,6.048854351043701],[116,-13,76,6.061378002166748],[116,-13,77,6.080756187438965],[116,-13,78,6.0968451499938965],[116,-13,79,6.103983402252197],[116,-12,64,6.05026912689209],[116,-12,65,6.060091018676758],[116,-12,66,6.061452865600586],[116,-12,67,6.054780006408691],[116,-12,68,6.046853065490723],[116,-12,69,6.040349006652832],[116,-12,70,6.036932468414307],[116,-12,71,6.034491062164307],[116,-12,72,6.033131122589111],[116,-12,73,6.036201000213623],[116,-12,74,6.041961669921875],[116,-12,75,6.048854351043701],[116,-12,76,6.061378002166748],[116,-12,77,6.080756187438965],[116,-12,78,6.0968451499938965],[116,-12,79,6.103983402252197],[116,-11,64,6.05026912689209],[116,-11,65,6.060091018676758],[116,-11,66,6.061452865600586],[116,-11,67,6.054780006408691],[116,-11,68,6.046853065490723],[116,-11,69,6.040349006652832],[116,-11,70,6.036932468414307],[116,-11,71,6.034491062164307],[116,-11,72,6.033131122589111],[116,-11,73,6.036201000213623],[116,-11,74,6.041961669921875],[116,-11,75,6.048854351043701],[116,-11,76,6.061378002166748],[116,-11,77,6.080756187438965],[116,-11,78,6.0968451499938965],[116,-11,79,6.103983402252197],[116,-10,64,6.05026912689209],[116,-10,65,6.060091018676758],[116,-10,66,6.061452865600586],[116,-10,67,6.054780006408691],[116,-10,68,6.046853065490723],[116,-10,69,6.040349006652832],[116,-10,70,6.036932468414307],[116,-10,71,6.034491062164307],[116,-10,72,6.033131122589111],[116,-10,73,6.036201000213623],[116,-10,74,6.041961669921875],[116,-10,75,6.048854351043701],[116,-10,76,6.061378002166748],[116,-10,77,6.080756187438965],[116,-10,78,6.0968451499938965],[116,-10,79,6.103983402252197],[116,-9,64,6.05026912689209],[116,-9,65,6.060091018676758],[116,-9,66,6.061452865600586],[116,-9,67,6.054780006408691],[116,-9,68,6.046853065490723],[116,-9,69,6.040349006652832],[116,-9,70,6.036932468414307],[116,-9,71,6.034491062164307],[116,-9,72,6.033131122589111],[116,-9,73,6.036201000213623],[116,-9,74,6.041961669921875],[116,-9,75,6.048854351043701],[116,-9,76,6.061378002166748],[116,-9,77,6.080756187438965],[116,-9,78,6.0968451499938965],[116,-9,79,6.103983402252197],[116,-8,64,6.05026912689209],[116,-8,65,6.060091018676758],[116,-8,66,6.061452865600586],[116,-8,67,6.054780006408691],[116,-8,68,6.046853065490723],[116,-8,69,6.040349006652832],[116,-8,70,6.036932468414307],[116,-8,71,6.034491062164307],[116,-8,72,6.033131122589111],[116,-8,73,6.036201000213623],[116,-8,74,6.041961669921875],[116,-8,75,6.048854351043701],[116,-8,76,6.061378002166748],[116,-8,77,6.080756187438965],[116,-8,78,6.0968451499938965],[116,-8,79,6.103983402252197],[116,-7,64,6.05026912689209],[116,-7,65,6.060091018676758],[116,-7,66,6.061452865600586],[116,-7,67,6.054780006408691],[116,-7,68,6.046853065490723],[116,-7,69,6.040349006652832],[116,-7,70,6.036932468414307],[116,-7,71,6.034491062164307],[116,-7,72,6.033131122589111],[116,-7,73,6.036201000213623],[116,-7,74,6.041961669921875],[116,-7,75,6.048854351043701],[116,-7,76,6.061378002166748],[116,-7,77,6.080756187438965],[116,-7,78,6.0968451499938965],[116,-7,79,6.103983402252197],[116,-6,64,6.05026912689209],[116,-6,65,6.060091018676758],[116,-6,66,6.061452865600586],[116,-6,67,6.054780006408691],[116,-6,68,6.046853065490723],[116,-6,69,6.040349006652832],[116,-6,70,6.036932468414307],[116,-6,71,6.034491062164307],[116,-6,72,6.033131122589111],[116,-6,73,6.036201000213623],[116,-6,74,6.041961669921875],[116,-6,75,6.048854351043701],[116,-6,76,6.061378002166748],[116,-6,77,6.080756187438965],[116,-6,78,6.0968451499938965],[116,-6,79,6.103983402252197],[116,-5,64,6.05026912689209],[116,-5,65,6.060091018676758],[116,-5,66,6.061452865600586],[116,-5,67,6.054780006408691],[116,-5,68,6.046853065490723],[116,-5,69,6.040349006652832],[116,-5,70,6.036932468414307],[116,-5,71,6.034491062164307],[116,-5,72,6.033131122589111],[116,-5,73,6.036201000213623],[116,-5,74,6.041961669921875],[116,-5,75,6.048854351043701],[116,-5,76,6.061378002166748],[116,-5,77,6.080756187438965],[116,-5,78,6.0968451499938965],[116,-5,79,6.103983402252197],[116,-4,64,6.05026912689209],[116,-4,65,6.060091018676758],[116,-4,66,6.061452865600586],[116,-4,67,6.054780006408691],[116,-4,68,6.046853065490723],[116,-4,69,6.040349006652832],[116,-4,70,6.036932468414307],[116,-4,71,6.034491062164307],[116,-4,72,6.033131122589111],[116,-4,73,6.036201000213623],[116,-4,74,6.041961669921875],[116,-4,75,6.048854351043701],[116,-4,76,6.061378002166748],[116,-4,77,6.080756187438965],[116,-4,78,6.0968451499938965],[116,-4,79,6.103983402252197],[116,-3,64,6.05026912689209],[116,-3,65,6.060091018676758],[116,-3,66,6.061452865600586],[116,-3,67,6.054780006408691],[116,-3,68,6.046853065490723],[116,-3,69,6.040349006652832],[116,-3,70,6.036932468414307],[116,-3,71,6.034491062164307],[116,-3,72,6.033131122589111],[116,-3,73,6.036201000213623],[116,-3,74,6.041961669921875],[116,-3,75,6.048854351043701],[116,-3,76,6.061378002166748],[116,-3,77,6.080756187438965],[116,-3,78,6.0968451499938965],[116,-3,79,6.103983402252197],[116,-2,64,6.05026912689209],[116,-2,65,6.060091018676758],[116,-2,66,6.061452865600586],[116,-2,67,6.054780006408691],[116,-2,68,6.046853065490723],[116,-2,69,6.040349006652832],[116,-2,70,6.036932468414307],[116,-2,71,6.034491062164307],[116,-2,72,6.033131122589111],[116,-2,73,6.036201000213623],[116,-2,74,6.041961669921875],[116,-2,75,6.048854351043701],[116,-2,76,6.061378002166748],[116,-2,77,6.080756187438965],[116,-2,78,6.0968451499938965],[116,-2,79,6.103983402252197],[116,-1,64,6.05026912689209],[116,-1,65,6.060091018676758],[116,-1,66,6.061452865600586],[116,-1,67,6.054780006408691],[116,-1,68,6.046853065490723],[116,-1,69,6.040349006652832],[116,-1,70,6.036932468414307],[116,-1,71,6.034491062164307],[116,-1,72,6.033131122589111],[116,-1,73,6.036201000213623],[116,-1,74,6.041961669921875],[116,-1,75,6.048854351043701],[116,-1,76,6.061378002166748],[116,-1,77,6.080756187438965],[116,-1,78,6.0968451499938965],[116,-1,79,6.103983402252197],[116,0,64,6.05026912689209],[116,0,65,6.060091018676758],[116,0,66,6.061452865600586],[116,0,67,6.054780006408691],[116,0,68,6.046853065490723],[116,0,69,6.040349006652832],[116,0,70,6.036932468414307],[116,0,71,6.034491062164307],[116,0,72,6.033131122589111],[116,0,73,6.036201000213623],[116,0,74,6.041961669921875],[116,0,75,6.048854351043701],[116,0,76,6.061378002166748],[116,0,77,6.080756187438965],[116,0,78,6.0968451499938965],[116,0,79,6.103983402252197],[116,1,64,6.05026912689209],[116,1,65,6.060091018676758],[116,1,66,6.061452865600586],[116,1,67,6.054780006408691],[116,1,68,6.046853065490723],[116,1,69,6.040349006652832],[116,1,70,6.036932468414307],[116,1,71,6.034491062164307],[116,1,72,6.033131122589111],[116,1,73,6.036201000213623],[116,1,74,6.041961669921875],[116,1,75,6.048854351043701],[116,1,76,6.061378002166748],[116,1,77,6.080756187438965],[116,1,78,6.0968451499938965],[116,1,79,6.103983402252197],[116,2,64,6.05026912689209],[116,2,65,6.060091018676758],[116,2,66,6.061452865600586],[116,2,67,6.054780006408691],[116,2,68,6.046853065490723],[116,2,69,6.040349006652832],[116,2,70,6.036932468414307],[116,2,71,6.034491062164307],[116,2,72,6.033131122589111],[116,2,73,6.036201000213623],[116,2,74,6.041961669921875],[116,2,75,6.048854351043701],[116,2,76,6.061378002166748],[116,2,77,6.080756187438965],[116,2,78,6.0968451499938965],[116,2,79,6.103983402252197],[116,3,64,6.05026912689209],[116,3,65,6.060091018676758],[116,3,66,6.061452865600586],[116,3,67,6.054780006408691],[116,3,68,6.046853065490723],[116,3,69,6.040349006652832],[116,3,70,6.036932468414307],[116,3,71,6.034491062164307],[116,3,72,6.033131122589111],[116,3,73,6.036201000213623],[116,3,74,6.041961669921875],[116,3,75,6.048854351043701],[116,3,76,6.061378002166748],[116,3,77,6.080756187438965],[116,3,78,6.0968451499938965],[116,3,79,6.103983402252197],[116,4,64,6.05026912689209],[116,4,65,6.060091018676758],[116,4,66,6.061452865600586],[116,4,67,6.054780006408691],[116,4,68,6.046853065490723],[116,4,69,6.040349006652832],[116,4,70,6.036932468414307],[116,4,71,6.034491062164307],[116,4,72,6.033131122589111],[116,4,73,6.036201000213623],[116,4,74,6.041961669921875],[116,4,75,6.048854351043701],[116,4,76,6.061378002166748],[116,4,77,6.080756187438965],[116,4,78,6.0968451499938965],[116,4,79,6.103983402252197],[116,5,64,6.05026912689209],[116,5,65,6.060091018676758],[116,5,66,6.061452865600586],[116,5,67,6.054780006408691],[116,5,68,6.046853065490723],[116,5,69,6.040349006652832],[116,5,70,6.036932468414307],[116,5,71,6.034491062164307],[116,5,72,6.033131122589111],[116,5,73,6.036201000213623],[116,5,74,6.041961669921875],[116,5,75,6.048854351043701],[116,5,76,6.061378002166748],[116,5,77,6.080756187438965],[116,5,78,6.0968451499938965],[116,5,79,6.103983402252197],[116,6,64,6.05026912689209],[116,6,65,6.060091018676758],[116,6,66,6.061452865600586],[116,6,67,6.054780006408691],[116,6,68,6.046853065490723],[116,6,69,6.040349006652832],[116,6,70,6.036932468414307],[116,6,71,6.034491062164307],[116,6,72,6.033131122589111],[116,6,73,6.036201000213623],[116,6,74,6.041961669921875],[116,6,75,6.048854351043701],[116,6,76,6.061378002166748],[116,6,77,6.080756187438965],[116,6,78,6.0968451499938965],[116,6,79,6.103983402252197],[116,7,64,6.05026912689209],[116,7,65,6.060091018676758],[116,7,66,6.061452865600586],[116,7,67,6.054780006408691],[116,7,68,6.046853065490723],[116,7,69,6.040349006652832],[116,7,70,6.036932468414307],[116,7,71,6.034491062164307],[116,7,72,6.033131122589111],[116,7,73,6.036201000213623],[116,7,74,6.041961669921875],[116,7,75,6.048854351043701],[116,7,76,6.061378002166748],[116,7,77,6.080756187438965],[116,7,78,6.0968451499938965],[116,7,79,6.103983402252197],[116,8,64,6.05026912689209],[116,8,65,6.060091018676758],[116,8,66,6.061452865600586],[116,8,67,6.054780006408691],[116,8,68,6.046853065490723],[116,8,69,6.040349006652832],[116,8,70,6.036932468414307],[116,8,71,6.034491062164307],[116,8,72,6.033131122589111],[116,8,73,6.036201000213623],[116,8,74,6.041961669921875],[116,8,75,6.048854351043701],[116,8,76,6.061378002166748],[116,8,77,6.080756187438965],[116,8,78,6.0968451499938965],[116,8,79,6.103983402252197],[116,9,64,6.05026912689209],[116,9,65,6.060091018676758],[116,9,66,6.061452865600586],[116,9,67,6.054780006408691],[116,9,68,6.046853065490723],[116,9,69,6.040349006652832],[116,9,70,6.036932468414307],[116,9,71,6.034491062164307],[116,9,72,6.033131122589111],[116,9,73,6.036201000213623],[116,9,74,6.041961669921875],[116,9,75,6.048854351043701],[116,9,76,6.061378002166748],[116,9,77,6.080756187438965],[116,9,78,6.0968451499938965],[116,9,79,6.103983402252197],[116,10,64,6.05026912689209],[116,10,65,6.060091018676758],[116,10,66,6.061452865600586],[116,10,67,6.054780006408691],[116,10,68,6.046853065490723],[116,10,69,6.040349006652832],[116,10,70,6.036932468414307],[116,10,71,6.034491062164307],[116,10,72,6.033131122589111],[116,10,73,6.036201000213623],[116,10,74,6.041961669921875],[116,10,75,6.048854351043701],[116,10,76,6.061378002166748],[116,10,77,6.080756187438965],[116,10,78,6.0968451499938965],[116,10,79,6.103983402252197],[116,11,64,6.05026912689209],[116,11,65,6.060091018676758],[116,11,66,6.061452865600586],[116,11,67,6.054780006408691],[116,11,68,6.046853065490723],[116,11,69,6.040349006652832],[116,11,70,6.036932468414307],[116,11,71,6.034491062164307],[116,11,72,6.033131122589111],[116,11,73,6.036201000213623],[116,11,74,6.041961669921875],[116,11,75,6.048854351043701],[116,11,76,6.061378002166748],[116,11,77,6.080756187438965],[116,11,78,6.0968451499938965],[116,11,79,6.103983402252197],[116,12,64,6.05026912689209],[116,12,65,6.060091018676758],[116,12,66,6.061452865600586],[116,12,67,6.054780006408691],[116,12,68,6.046853065490723],[116,12,69,6.040349006652832],[116,12,70,6.036932468414307],[116,12,71,6.034491062164307],[116,12,72,6.033131122589111],[116,12,73,6.036201000213623],[116,12,74,6.041961669921875],[116,12,75,6.048854351043701],[116,12,76,6.061378002166748],[116,12,77,6.080756187438965],[116,12,78,6.0968451499938965],[116,12,79,6.103983402252197],[116,13,64,6.05026912689209],[116,13,65,6.060091018676758],[116,13,66,6.061452865600586],[116,13,67,6.054780006408691],[116,13,68,6.046853065490723],[116,13,69,6.040349006652832],[116,13,70,6.036932468414307],[116,13,71,6.034491062164307],[116,13,72,6.033131122589111],[116,13,73,6.036201000213623],[116,13,74,6.041961669921875],[116,13,75,6.048854351043701],[116,13,76,6.061378002166748],[116,13,77,6.080756187438965],[116,13,78,6.0968451499938965],[116,13,79,6.103983402252197],[116,14,64,6.05026912689209],[116,14,65,6.060091018676758],[116,14,66,6.061452865600586],[116,14,67,6.054780006408691],[116,14,68,6.046853065490723],[116,14,69,6.040349006652832],[116,14,70,6.036932468414307],[116,14,71,6.034491062164307],[116,14,72,6.033131122589111],[116,14,73,6.036201000213623],[116,14,74,6.041961669921875],[116,14,75,6.048854351043701],[116,14,76,6.061378002166748],[116,14,77,6.080756187438965],[116,14,78,6.0968451499938965],[116,14,79,6.103983402252197],[116,15,64,6.05026912689209],[116,15,65,6.060091018676758],[116,15,66,6.061452865600586],[116,15,67,6.054780006408691],[116,15,68,6.046853065490723],[116,15,69,6.040349006652832],[116,15,70,6.036932468414307],[116,15,71,6.034491062164307],[116,15,72,6.033131122589111],[116,15,73,6.036201000213623],[116,15,74,6.041961669921875],[116,15,75,6.048854351043701],[116,15,76,6.061378002166748],[116,15,77,6.080756187438965],[116,15,78,6.0968451499938965],[116,15,79,6.103983402252197],[116,16,64,6.05026912689209],[116,16,65,6.060091018676758],[116,16,66,6.061452865600586],[116,16,67,6.054780006408691],[116,16,68,6.046853065490723],[116,16,69,6.040349006652832],[116,16,70,6.036932468414307],[116,16,71,6.034491062164307],[116,16,72,6.033131122589111],[116,16,73,6.036201000213623],[116,16,74,6.041961669921875],[116,16,75,6.048854351043701],[116,16,76,6.061378002166748],[116,16,77,6.080756187438965],[116,16,78,6.0968451499938965],[116,16,79,6.103983402252197],[116,17,64,6.05026912689209],[116,17,65,6.060091018676758],[116,17,66,6.061452865600586],[116,17,67,6.054780006408691],[116,17,68,6.046853065490723],[116,17,69,6.040349006652832],[116,17,70,6.036932468414307],[116,17,71,6.034491062164307],[116,17,72,6.033131122589111],[116,17,73,6.036201000213623],[116,17,74,6.041961669921875],[116,17,75,6.048854351043701],[116,17,76,6.061378002166748],[116,17,77,6.080756187438965],[116,17,78,6.0968451499938965],[116,17,79,6.103983402252197],[116,18,64,6.05026912689209],[116,18,65,6.060091018676758],[116,18,66,6.061452865600586],[116,18,67,6.054780006408691],[116,18,68,6.046853065490723],[116,18,69,6.040349006652832],[116,18,70,6.036932468414307],[116,18,71,6.034491062164307],[116,18,72,6.033131122589111],[116,18,73,6.036201000213623],[116,18,74,6.041961669921875],[116,18,75,6.048854351043701],[116,18,76,6.061378002166748],[116,18,77,6.080756187438965],[116,18,78,6.0968451499938965],[116,18,79,6.103983402252197],[116,19,64,6.05026912689209],[116,19,65,6.060091018676758],[116,19,66,6.061452865600586],[116,19,67,6.054780006408691],[116,19,68,6.046853065490723],[116,19,69,6.040349006652832],[116,19,70,6.036932468414307],[116,19,71,6.034491062164307],[116,19,72,6.033131122589111],[116,19,73,6.036201000213623],[116,19,74,6.041961669921875],[116,19,75,6.048854351043701],[116,19,76,6.061378002166748],[116,19,77,6.080756187438965],[116,19,78,6.0968451499938965],[116,19,79,6.103983402252197],[116,20,64,6.05026912689209],[116,20,65,6.060091018676758],[116,20,66,6.061452865600586],[116,20,67,6.054780006408691],[116,20,68,6.046853065490723],[116,20,69,6.040349006652832],[116,20,70,6.036932468414307],[116,20,71,6.034491062164307],[116,20,72,6.033131122589111],[116,20,73,6.036201000213623],[116,20,74,6.041961669921875],[116,20,75,6.048854351043701],[116,20,76,6.061378002166748],[116,20,77,6.080756187438965],[116,20,78,6.0968451499938965],[116,20,79,6.103983402252197],[116,21,64,6.05026912689209],[116,21,65,6.060091018676758],[116,21,66,6.061452865600586],[116,21,67,6.054780006408691],[116,21,68,6.046853065490723],[116,21,69,6.040349006652832],[116,21,70,6.036932468414307],[116,21,71,6.034491062164307],[116,21,72,6.033131122589111],[116,21,73,6.036201000213623],[116,21,74,6.041961669921875],[116,21,75,6.048854351043701],[116,21,76,6.061378002166748],[116,21,77,6.080756187438965],[116,21,78,6.0968451499938965],[116,21,79,6.103983402252197],[116,22,64,6.05026912689209],[116,22,65,6.060091018676758],[116,22,66,6.061452865600586],[116,22,67,6.054780006408691],[116,22,68,6.046853065490723],[116,22,69,6.040349006652832],[116,22,70,6.036932468414307],[116,22,71,6.034491062164307],[116,22,72,6.033131122589111],[116,22,73,6.036201000213623],[116,22,74,6.041961669921875],[116,22,75,6.048854351043701],[116,22,76,6.061378002166748],[116,22,77,6.080756187438965],[116,22,78,6.0968451499938965],[116,22,79,6.103983402252197],[116,23,64,6.05026912689209],[116,23,65,6.060091018676758],[116,23,66,6.061452865600586],[116,23,67,6.054780006408691],[116,23,68,6.046853065490723],[116,23,69,6.040349006652832],[116,23,70,6.036932468414307],[116,23,71,6.034491062164307],[116,23,72,6.033131122589111],[116,23,73,6.036201000213623],[116,23,74,6.041961669921875],[116,23,75,6.048854351043701],[116,23,76,6.061378002166748],[116,23,77,6.080756187438965],[116,23,78,6.0968451499938965],[116,23,79,6.103983402252197],[116,24,64,6.05026912689209],[116,24,65,6.060091018676758],[116,24,66,6.061452865600586],[116,24,67,6.054780006408691],[116,24,68,6.046853065490723],[116,24,69,6.040349006652832],[116,24,70,6.036932468414307],[116,24,71,6.034491062164307],[116,24,72,6.033131122589111],[116,24,73,6.036201000213623],[116,24,74,6.041961669921875],[116,24,75,6.048854351043701],[116,24,76,6.061378002166748],[116,24,77,6.080756187438965],[116,24,78,6.0968451499938965],[116,24,79,6.103983402252197],[116,25,64,6.05026912689209],[116,25,65,6.060091018676758],[116,25,66,6.061452865600586],[116,25,67,6.054780006408691],[116,25,68,6.046853065490723],[116,25,69,6.040349006652832],[116,25,70,6.036932468414307],[116,25,71,6.034491062164307],[116,25,72,6.033131122589111],[116,25,73,6.036201000213623],[116,25,74,6.041961669921875],[116,25,75,6.048854351043701],[116,25,76,6.061378002166748],[116,25,77,6.080756187438965],[116,25,78,6.0968451499938965],[116,25,79,6.103983402252197],[116,26,64,6.05026912689209],[116,26,65,6.060091018676758],[116,26,66,6.061452865600586],[116,26,67,6.054780006408691],[116,26,68,6.046853065490723],[116,26,69,6.040349006652832],[116,26,70,6.036932468414307],[116,26,71,6.034491062164307],[116,26,72,6.033131122589111],[116,26,73,6.036201000213623],[116,26,74,6.041961669921875],[116,26,75,6.048854351043701],[116,26,76,6.061378002166748],[116,26,77,6.080756187438965],[116,26,78,6.0968451499938965],[116,26,79,6.103983402252197],[116,27,64,6.05026912689209],[116,27,65,6.060091018676758],[116,27,66,6.061452865600586],[116,27,67,6.054780006408691],[116,27,68,6.046853065490723],[116,27,69,6.040349006652832],[116,27,70,6.036932468414307],[116,27,71,6.034491062164307],[116,27,72,6.033131122589111],[116,27,73,6.036201000213623],[116,27,74,6.041961669921875],[116,27,75,6.048854351043701],[116,27,76,6.061378002166748],[116,27,77,6.080756187438965],[116,27,78,6.0968451499938965],[116,27,79,6.103983402252197],[116,28,64,6.05026912689209],[116,28,65,6.060091018676758],[116,28,66,6.061452865600586],[116,28,67,6.054780006408691],[116,28,68,6.046853065490723],[116,28,69,6.040349006652832],[116,28,70,6.036932468414307],[116,28,71,6.034491062164307],[116,28,72,6.033131122589111],[116,28,73,6.036201000213623],[116,28,74,6.041961669921875],[116,28,75,6.048854351043701],[116,28,76,6.061378002166748],[116,28,77,6.080756187438965],[116,28,78,6.0968451499938965],[116,28,79,6.103983402252197],[116,29,64,6.05026912689209],[116,29,65,6.060091018676758],[116,29,66,6.061452865600586],[116,29,67,6.054780006408691],[116,29,68,6.046853065490723],[116,29,69,6.040349006652832],[116,29,70,6.036932468414307],[116,29,71,6.034491062164307],[116,29,72,6.033131122589111],[116,29,73,6.036201000213623],[116,29,74,6.041961669921875],[116,29,75,6.048854351043701],[116,29,76,6.061378002166748],[116,29,77,6.080756187438965],[116,29,78,6.0968451499938965],[116,29,79,6.103983402252197],[116,30,64,6.05026912689209],[116,30,65,6.060091018676758],[116,30,66,6.061452865600586],[116,30,67,6.054780006408691],[116,30,68,6.046853065490723],[116,30,69,6.040349006652832],[116,30,70,6.036932468414307],[116,30,71,6.034491062164307],[116,30,72,6.033131122589111],[116,30,73,6.036201000213623],[116,30,74,6.041961669921875],[116,30,75,6.048854351043701],[116,30,76,6.061378002166748],[116,30,77,6.080756187438965],[116,30,78,6.0968451499938965],[116,30,79,6.103983402252197],[116,31,64,6.05026912689209],[116,31,65,6.060091018676758],[116,31,66,6.061452865600586],[116,31,67,6.054780006408691],[116,31,68,6.046853065490723],[116,31,69,6.040349006652832],[116,31,70,6.036932468414307],[116,31,71,6.034491062164307],[116,31,72,6.033131122589111],[116,31,73,6.036201000213623],[116,31,74,6.041961669921875],[116,31,75,6.048854351043701],[116,31,76,6.061378002166748],[116,31,77,6.080756187438965],[116,31,78,6.0968451499938965],[116,31,79,6.103983402252197],[116,32,64,6.05026912689209],[116,32,65,6.060091018676758],[116,32,66,6.061452865600586],[116,32,67,6.054780006408691],[116,32,68,6.046853065490723],[116,32,69,6.040349006652832],[116,32,70,6.036932468414307],[116,32,71,6.034491062164307],[116,32,72,6.033131122589111],[116,32,73,6.036201000213623],[116,32,74,6.041961669921875],[116,32,75,6.048854351043701],[116,32,76,6.061378002166748],[116,32,77,6.080756187438965],[116,32,78,6.0968451499938965],[116,32,79,6.103983402252197],[116,33,64,6.05026912689209],[116,33,65,6.060091018676758],[116,33,66,6.061452865600586],[116,33,67,6.054780006408691],[116,33,68,6.046853065490723],[116,33,69,6.040349006652832],[116,33,70,6.036932468414307],[116,33,71,6.034491062164307],[116,33,72,6.033131122589111],[116,33,73,6.036201000213623],[116,33,74,6.041961669921875],[116,33,75,6.048854351043701],[116,33,76,6.061378002166748],[116,33,77,6.080756187438965],[116,33,78,6.0968451499938965],[116,33,79,6.103983402252197],[116,34,64,6.05026912689209],[116,34,65,6.060091018676758],[116,34,66,6.061452865600586],[116,34,67,6.054780006408691],[116,34,68,6.046853065490723],[116,34,69,6.040349006652832],[116,34,70,6.036932468414307],[116,34,71,6.034491062164307],[116,34,72,6.033131122589111],[116,34,73,6.036201000213623],[116,34,74,6.041961669921875],[116,34,75,6.048854351043701],[116,34,76,6.061378002166748],[116,34,77,6.080756187438965],[116,34,78,6.0968451499938965],[116,34,79,6.103983402252197],[116,35,64,6.05026912689209],[116,35,65,6.060091018676758],[116,35,66,6.061452865600586],[116,35,67,6.054780006408691],[116,35,68,6.046853065490723],[116,35,69,6.040349006652832],[116,35,70,6.036932468414307],[116,35,71,6.034491062164307],[116,35,72,6.033131122589111],[116,35,73,6.036201000213623],[116,35,74,6.041961669921875],[116,35,75,6.048854351043701],[116,35,76,6.061378002166748],[116,35,77,6.080756187438965],[116,35,78,6.0968451499938965],[116,35,79,6.103983402252197],[116,36,64,6.05026912689209],[116,36,65,6.060091018676758],[116,36,66,6.061452865600586],[116,36,67,6.054780006408691],[116,36,68,6.046853065490723],[116,36,69,6.040349006652832],[116,36,70,6.036932468414307],[116,36,71,6.034491062164307],[116,36,72,6.033131122589111],[116,36,73,6.036201000213623],[116,36,74,6.041961669921875],[116,36,75,6.048854351043701],[116,36,76,6.061378002166748],[116,36,77,6.080756187438965],[116,36,78,6.0968451499938965],[116,36,79,6.103983402252197],[116,37,64,6.05026912689209],[116,37,65,6.060091018676758],[116,37,66,6.061452865600586],[116,37,67,6.054780006408691],[116,37,68,6.046853065490723],[116,37,69,6.040349006652832],[116,37,70,6.036932468414307],[116,37,71,6.034491062164307],[116,37,72,6.033131122589111],[116,37,73,6.036201000213623],[116,37,74,6.041961669921875],[116,37,75,6.048854351043701],[116,37,76,6.061378002166748],[116,37,77,6.080756187438965],[116,37,78,6.0968451499938965],[116,37,79,6.103983402252197],[116,38,64,6.05026912689209],[116,38,65,6.060091018676758],[116,38,66,6.061452865600586],[116,38,67,6.054780006408691],[116,38,68,6.046853065490723],[116,38,69,6.040349006652832],[116,38,70,6.036932468414307],[116,38,71,6.034491062164307],[116,38,72,6.033131122589111],[116,38,73,6.036201000213623],[116,38,74,6.041961669921875],[116,38,75,6.048854351043701],[116,38,76,6.061378002166748],[116,38,77,6.080756187438965],[116,38,78,6.0968451499938965],[116,38,79,6.103983402252197],[116,39,64,6.05026912689209],[116,39,65,6.060091018676758],[116,39,66,6.061452865600586],[116,39,67,6.054780006408691],[116,39,68,6.046853065490723],[116,39,69,6.040349006652832],[116,39,70,6.036932468414307],[116,39,71,6.034491062164307],[116,39,72,6.033131122589111],[116,39,73,6.036201000213623],[116,39,74,6.041961669921875],[116,39,75,6.048854351043701],[116,39,76,6.061378002166748],[116,39,77,6.080756187438965],[116,39,78,6.0968451499938965],[116,39,79,6.103983402252197],[116,40,64,6.05026912689209],[116,40,65,6.060091018676758],[116,40,66,6.061452865600586],[116,40,67,6.054780006408691],[116,40,68,6.046853065490723],[116,40,69,6.040349006652832],[116,40,70,6.036932468414307],[116,40,71,6.034491062164307],[116,40,72,6.033131122589111],[116,40,73,6.036201000213623],[116,40,74,6.041961669921875],[116,40,75,6.048854351043701],[116,40,76,6.061378002166748],[116,40,77,6.080756187438965],[116,40,78,6.0968451499938965],[116,40,79,6.103983402252197],[116,41,64,6.05026912689209],[116,41,65,6.060091018676758],[116,41,66,6.061452865600586],[116,41,67,6.054780006408691],[116,41,68,6.046853065490723],[116,41,69,6.040349006652832],[116,41,70,6.036932468414307],[116,41,71,6.034491062164307],[116,41,72,6.033131122589111],[116,41,73,6.036201000213623],[116,41,74,6.041961669921875],[116,41,75,6.048854351043701],[116,41,76,6.061378002166748],[116,41,77,6.080756187438965],[116,41,78,6.0968451499938965],[116,41,79,6.103983402252197],[116,42,64,6.05026912689209],[116,42,65,6.060091018676758],[116,42,66,6.061452865600586],[116,42,67,6.054780006408691],[116,42,68,6.046853065490723],[116,42,69,6.040349006652832],[116,42,70,6.036932468414307],[116,42,71,6.034491062164307],[116,42,72,6.033131122589111],[116,42,73,6.036201000213623],[116,42,74,6.041961669921875],[116,42,75,6.048854351043701],[116,42,76,6.061378002166748],[116,42,77,6.080756187438965],[116,42,78,6.0968451499938965],[116,42,79,6.103983402252197],[116,43,64,6.05026912689209],[116,43,65,6.060091018676758],[116,43,66,6.061452865600586],[116,43,67,6.054780006408691],[116,43,68,6.046853065490723],[116,43,69,6.040349006652832],[116,43,70,6.036932468414307],[116,43,71,6.034491062164307],[116,43,72,6.033131122589111],[116,43,73,6.036201000213623],[116,43,74,6.041961669921875],[116,43,75,6.048854351043701],[116,43,76,6.061378002166748],[116,43,77,6.080756187438965],[116,43,78,6.0968451499938965],[116,43,79,6.103983402252197],[116,44,64,6.05026912689209],[116,44,65,6.060091018676758],[116,44,66,6.061452865600586],[116,44,67,6.054780006408691],[116,44,68,6.046853065490723],[116,44,69,6.040349006652832],[116,44,70,6.036932468414307],[116,44,71,6.034491062164307],[116,44,72,6.033131122589111],[116,44,73,6.036201000213623],[116,44,74,6.041961669921875],[116,44,75,6.048854351043701],[116,44,76,6.061378002166748],[116,44,77,6.080756187438965],[116,44,78,6.0968451499938965],[116,44,79,6.103983402252197],[116,45,64,6.05026912689209],[116,45,65,6.060091018676758],[116,45,66,6.061452865600586],[116,45,67,6.054780006408691],[116,45,68,6.046853065490723],[116,45,69,6.040349006652832],[116,45,70,6.036932468414307],[116,45,71,6.034491062164307],[116,45,72,6.033131122589111],[116,45,73,6.036201000213623],[116,45,74,6.041961669921875],[116,45,75,6.048854351043701],[116,45,76,6.061378002166748],[116,45,77,6.080756187438965],[116,45,78,6.0968451499938965],[116,45,79,6.103983402252197],[116,46,64,6.05026912689209],[116,46,65,6.060091018676758],[116,46,66,6.061452865600586],[116,46,67,6.054780006408691],[116,46,68,6.046853065490723],[116,46,69,6.040349006652832],[116,46,70,6.036932468414307],[116,46,71,6.034491062164307],[116,46,72,6.033131122589111],[116,46,73,6.036201000213623],[116,46,74,6.041961669921875],[116,46,75,6.048854351043701],[116,46,76,6.061378002166748],[116,46,77,6.080756187438965],[116,46,78,6.0968451499938965],[116,46,79,6.103983402252197],[116,47,64,6.05026912689209],[116,47,65,6.060091018676758],[116,47,66,6.061452865600586],[116,47,67,6.054780006408691],[116,47,68,6.046853065490723],[116,47,69,6.040349006652832],[116,47,70,6.036932468414307],[116,47,71,6.034491062164307],[116,47,72,6.033131122589111],[116,47,73,6.036201000213623],[116,47,74,6.041961669921875],[116,47,75,6.048854351043701],[116,47,76,6.061378002166748],[116,47,77,6.080756187438965],[116,47,78,6.0968451499938965],[116,47,79,6.103983402252197],[116,48,64,6.05026912689209],[116,48,65,6.060091018676758],[116,48,66,6.061452865600586],[116,48,67,6.054780006408691],[116,48,68,6.046853065490723],[116,48,69,6.040349006652832],[116,48,70,6.036932468414307],[116,48,71,6.034491062164307],[116,48,72,6.033131122589111],[116,48,73,6.036201000213623],[116,48,74,6.041961669921875],[116,48,75,6.048854351043701],[116,48,76,6.061378002166748],[116,48,77,6.080756187438965],[116,48,78,6.0968451499938965],[116,48,79,6.103983402252197],[116,49,64,6.05026912689209],[116,49,65,6.060091018676758],[116,49,66,6.061452865600586],[116,49,67,6.054780006408691],[116,49,68,6.046853065490723],[116,49,69,6.040349006652832],[116,49,70,6.036932468414307],[116,49,71,6.034491062164307],[116,49,72,6.033131122589111],[116,49,73,6.036201000213623],[116,49,74,6.041961669921875],[116,49,75,6.048854351043701],[116,49,76,6.061378002166748],[116,49,77,6.080756187438965],[116,49,78,6.0968451499938965],[116,49,79,6.103983402252197],[116,50,64,6.05026912689209],[116,50,65,6.060091018676758],[116,50,66,6.061452865600586],[116,50,67,6.054780006408691],[116,50,68,6.046853065490723],[116,50,69,6.040349006652832],[116,50,70,6.036932468414307],[116,50,71,6.034491062164307],[116,50,72,6.033131122589111],[116,50,73,6.036201000213623],[116,50,74,6.041961669921875],[116,50,75,6.048854351043701],[116,50,76,6.061378002166748],[116,50,77,6.080756187438965],[116,50,78,6.0968451499938965],[116,50,79,6.103983402252197],[116,51,64,6.05026912689209],[116,51,65,6.060091018676758],[116,51,66,6.061452865600586],[116,51,67,6.054780006408691],[116,51,68,6.046853065490723],[116,51,69,6.040349006652832],[116,51,70,6.036932468414307],[116,51,71,6.034491062164307],[116,51,72,6.033131122589111],[116,51,73,6.036201000213623],[116,51,74,6.041961669921875],[116,51,75,6.048854351043701],[116,51,76,6.061378002166748],[116,51,77,6.080756187438965],[116,51,78,6.0968451499938965],[116,51,79,6.103983402252197],[116,52,64,6.05026912689209],[116,52,65,6.060091018676758],[116,52,66,6.061452865600586],[116,52,67,6.054780006408691],[116,52,68,6.046853065490723],[116,52,69,6.040349006652832],[116,52,70,6.036932468414307],[116,52,71,6.034491062164307],[116,52,72,6.033131122589111],[116,52,73,6.036201000213623],[116,52,74,6.041961669921875],[116,52,75,6.048854351043701],[116,52,76,6.061378002166748],[116,52,77,6.080756187438965],[116,52,78,6.0968451499938965],[116,52,79,6.103983402252197],[116,53,64,6.05026912689209],[116,53,65,6.060091018676758],[116,53,66,6.061452865600586],[116,53,67,6.054780006408691],[116,53,68,6.046853065490723],[116,53,69,6.040349006652832],[116,53,70,6.036932468414307],[116,53,71,6.034491062164307],[116,53,72,6.033131122589111],[116,53,73,6.036201000213623],[116,53,74,6.041961669921875],[116,53,75,6.048854351043701],[116,53,76,6.061378002166748],[116,53,77,6.080756187438965],[116,53,78,6.0968451499938965],[116,53,79,6.103983402252197],[116,54,64,6.05026912689209],[116,54,65,6.060091018676758],[116,54,66,6.061452865600586],[116,54,67,6.054780006408691],[116,54,68,6.046853065490723],[116,54,69,6.040349006652832],[116,54,70,6.036932468414307],[116,54,71,6.034491062164307],[116,54,72,6.033131122589111],[116,54,73,6.036201000213623],[116,54,74,6.041961669921875],[116,54,75,6.048854351043701],[116,54,76,6.061378002166748],[116,54,77,6.080756187438965],[116,54,78,6.0968451499938965],[116,54,79,6.103983402252197],[116,55,64,6.05026912689209],[116,55,65,6.060091018676758],[116,55,66,6.061452865600586],[116,55,67,6.054780006408691],[116,55,68,6.046853065490723],[116,55,69,6.040349006652832],[116,55,70,6.036932468414307],[116,55,71,6.034491062164307],[116,55,72,6.033131122589111],[116,55,73,6.036201000213623],[116,55,74,6.041961669921875],[116,55,75,6.048854351043701],[116,55,76,6.061378002166748],[116,55,77,6.080756187438965],[116,55,78,6.0968451499938965],[116,55,79,6.103983402252197],[116,56,64,6.05026912689209],[116,56,65,6.060091018676758],[116,56,66,6.061452865600586],[116,56,67,6.054780006408691],[116,56,68,6.046853065490723],[116,56,69,6.040349006652832],[116,56,70,6.036932468414307],[116,56,71,6.034491062164307],[116,56,72,6.033131122589111],[116,56,73,6.036201000213623],[116,56,74,6.041961669921875],[116,56,75,6.048854351043701],[116,56,76,6.061378002166748],[116,56,77,6.080756187438965],[116,56,78,6.0968451499938965],[116,56,79,6.103983402252197],[116,57,64,6.05026912689209],[116,57,65,6.060091018676758],[116,57,66,6.061452865600586],[116,57,67,6.054780006408691],[116,57,68,6.046853065490723],[116,57,69,6.040349006652832],[116,57,70,6.036932468414307],[116,57,71,6.034491062164307],[116,57,72,6.033131122589111],[116,57,73,6.036201000213623],[116,57,74,6.041961669921875],[116,57,75,6.048854351043701],[116,57,76,6.061378002166748],[116,57,77,6.080756187438965],[116,57,78,6.0968451499938965],[116,57,79,6.103983402252197],[116,58,64,6.05026912689209],[116,58,65,6.060091018676758],[116,58,66,6.061452865600586],[116,58,67,6.054780006408691],[116,58,68,6.046853065490723],[116,58,69,6.040349006652832],[116,58,70,6.036932468414307],[116,58,71,6.034491062164307],[116,58,72,6.033131122589111],[116,58,73,6.036201000213623],[116,58,74,6.041961669921875],[116,58,75,6.048854351043701],[116,58,76,6.061378002166748],[116,58,77,6.080756187438965],[116,58,78,6.0968451499938965],[116,58,79,6.103983402252197],[116,59,64,6.05026912689209],[116,59,65,6.060091018676758],[116,59,66,6.061452865600586],[116,59,67,6.054780006408691],[116,59,68,6.046853065490723],[116,59,69,6.040349006652832],[116,59,70,6.036932468414307],[116,59,71,6.034491062164307],[116,59,72,6.033131122589111],[116,59,73,6.036201000213623],[116,59,74,6.041961669921875],[116,59,75,6.048854351043701],[116,59,76,6.061378002166748],[116,59,77,6.080756187438965],[116,59,78,6.0968451499938965],[116,59,79,6.103983402252197],[116,60,64,6.05026912689209],[116,60,65,6.060091018676758],[116,60,66,6.061452865600586],[116,60,67,6.054780006408691],[116,60,68,6.046853065490723],[116,60,69,6.040349006652832],[116,60,70,6.036932468414307],[116,60,71,6.034491062164307],[116,60,72,6.033131122589111],[116,60,73,6.036201000213623],[116,60,74,6.041961669921875],[116,60,75,6.048854351043701],[116,60,76,6.061378002166748],[116,60,77,6.080756187438965],[116,60,78,6.0968451499938965],[116,60,79,6.103983402252197],[116,61,64,6.05026912689209],[116,61,65,6.060091018676758],[116,61,66,6.061452865600586],[116,61,67,6.054780006408691],[116,61,68,6.046853065490723],[116,61,69,6.040349006652832],[116,61,70,6.036932468414307],[116,61,71,6.034491062164307],[116,61,72,6.033131122589111],[116,61,73,6.036201000213623],[116,61,74,6.041961669921875],[116,61,75,6.048854351043701],[116,61,76,6.061378002166748],[116,61,77,6.080756187438965],[116,61,78,6.0968451499938965],[116,61,79,6.103983402252197],[116,62,64,6.05026912689209],[116,62,65,6.060091018676758],[116,62,66,6.061452865600586],[116,62,67,6.054780006408691],[116,62,68,6.046853065490723],[116,62,69,6.040349006652832],[116,62,70,6.036932468414307],[116,62,71,6.034491062164307],[116,62,72,6.033131122589111],[116,62,73,6.036201000213623],[116,62,74,6.041961669921875],[116,62,75,6.048854351043701],[116,62,76,6.061378002166748],[116,62,77,6.080756187438965],[116,62,78,6.0968451499938965],[116,62,79,6.103983402252197],[116,63,64,6.05026912689209],[116,63,65,6.060091018676758],[116,63,66,6.061452865600586],[116,63,67,6.054780006408691],[116,63,68,6.046853065490723],[116,63,69,6.040349006652832],[116,63,70,6.036932468414307],[116,63,71,6.034491062164307],[116,63,72,6.033131122589111],[116,63,73,6.036201000213623],[116,63,74,6.041961669921875],[116,63,75,6.048854351043701],[116,63,76,6.061378002166748],[116,63,77,6.080756187438965],[116,63,78,6.0968451499938965],[116,63,79,6.103983402252197],[116,64,64,6.05026912689209],[116,64,65,6.060091018676758],[116,64,66,6.061452865600586],[116,64,67,6.054780006408691],[116,64,68,6.046853065490723],[116,64,69,6.040349006652832],[116,64,70,6.036932468414307],[116,64,71,6.034491062164307],[116,64,72,6.033131122589111],[116,64,73,6.036201000213623],[116,64,74,6.041961669921875],[116,64,75,6.048854351043701],[116,64,76,6.061378002166748],[116,64,77,6.080756187438965],[116,64,78,6.0968451499938965],[116,64,79,6.103983402252197],[116,65,64,6.05026912689209],[116,65,65,6.060091018676758],[116,65,66,6.061452865600586],[116,65,67,6.054780006408691],[116,65,68,6.046853065490723],[116,65,69,6.040349006652832],[116,65,70,6.036932468414307],[116,65,71,6.034491062164307],[116,65,72,6.033131122589111],[116,65,73,6.036201000213623],[116,65,74,6.041961669921875],[116,65,75,6.048854351043701],[116,65,76,6.061378002166748],[116,65,77,6.080756187438965],[116,65,78,6.0968451499938965],[116,65,79,6.103983402252197],[116,66,64,6.05026912689209],[116,66,65,6.060091018676758],[116,66,66,6.061452865600586],[116,66,67,6.054780006408691],[116,66,68,6.046853065490723],[116,66,69,6.040349006652832],[116,66,70,6.036932468414307],[116,66,71,6.034491062164307],[116,66,72,6.033131122589111],[116,66,73,6.036201000213623],[116,66,74,6.041961669921875],[116,66,75,6.048854351043701],[116,66,76,6.061378002166748],[116,66,77,6.080756187438965],[116,66,78,6.0968451499938965],[116,66,79,6.103983402252197],[116,67,64,6.05026912689209],[116,67,65,6.060091018676758],[116,67,66,6.061452865600586],[116,67,67,6.054780006408691],[116,67,68,6.046853065490723],[116,67,69,6.040349006652832],[116,67,70,6.036932468414307],[116,67,71,6.034491062164307],[116,67,72,6.033131122589111],[116,67,73,6.036201000213623],[116,67,74,6.041961669921875],[116,67,75,6.048854351043701],[116,67,76,6.061378002166748],[116,67,77,6.080756187438965],[116,67,78,6.0968451499938965],[116,67,79,6.103983402252197],[116,68,64,6.05026912689209],[116,68,65,6.060091018676758],[116,68,66,6.061452865600586],[116,68,67,6.054780006408691],[116,68,68,6.046853065490723],[116,68,69,6.040349006652832],[116,68,70,6.036932468414307],[116,68,71,6.034491062164307],[116,68,72,6.033131122589111],[116,68,73,6.036201000213623],[116,68,74,6.041961669921875],[116,68,75,6.048854351043701],[116,68,76,6.061378002166748],[116,68,77,6.080756187438965],[116,68,78,6.0968451499938965],[116,68,79,6.103983402252197],[116,69,64,6.05026912689209],[116,69,65,6.060091018676758],[116,69,66,6.061452865600586],[116,69,67,6.054780006408691],[116,69,68,6.046853065490723],[116,69,69,6.040349006652832],[116,69,70,6.036932468414307],[116,69,71,6.034491062164307],[116,69,72,6.033131122589111],[116,69,73,6.036201000213623],[116,69,74,6.041961669921875],[116,69,75,6.048854351043701],[116,69,76,6.061378002166748],[116,69,77,6.080756187438965],[116,69,78,6.0968451499938965],[116,69,79,6.103983402252197],[116,70,64,6.05026912689209],[116,70,65,6.060091018676758],[116,70,66,6.061452865600586],[116,70,67,6.054780006408691],[116,70,68,6.046853065490723],[116,70,69,6.040349006652832],[116,70,70,6.036932468414307],[116,70,71,6.034491062164307],[116,70,72,6.033131122589111],[116,70,73,6.036201000213623],[116,70,74,6.041961669921875],[116,70,75,6.048854351043701],[116,70,76,6.061378002166748],[116,70,77,6.080756187438965],[116,70,78,6.0968451499938965],[116,70,79,6.103983402252197],[116,71,64,6.05026912689209],[116,71,65,6.060091018676758],[116,71,66,6.061452865600586],[116,71,67,6.054780006408691],[116,71,68,6.046853065490723],[116,71,69,6.040349006652832],[116,71,70,6.036932468414307],[116,71,71,6.034491062164307],[116,71,72,6.033131122589111],[116,71,73,6.036201000213623],[116,71,74,6.041961669921875],[116,71,75,6.048854351043701],[116,71,76,6.061378002166748],[116,71,77,6.080756187438965],[116,71,78,6.0968451499938965],[116,71,79,6.103983402252197],[116,72,64,6.05026912689209],[116,72,65,6.060091018676758],[116,72,66,6.061452865600586],[116,72,67,6.054780006408691],[116,72,68,6.046853065490723],[116,72,69,6.040349006652832],[116,72,70,6.036932468414307],[116,72,71,6.034491062164307],[116,72,72,6.033131122589111],[116,72,73,6.036201000213623],[116,72,74,6.041961669921875],[116,72,75,6.048854351043701],[116,72,76,6.061378002166748],[116,72,77,6.080756187438965],[116,72,78,6.0968451499938965],[116,72,79,6.103983402252197],[116,73,64,6.05026912689209],[116,73,65,6.060091018676758],[116,73,66,6.061452865600586],[116,73,67,6.054780006408691],[116,73,68,6.046853065490723],[116,73,69,6.040349006652832],[116,73,70,6.036932468414307],[116,73,71,6.034491062164307],[116,73,72,6.033131122589111],[116,73,73,6.036201000213623],[116,73,74,6.041961669921875],[116,73,75,6.048854351043701],[116,73,76,6.061378002166748],[116,73,77,6.080756187438965],[116,73,78,6.0968451499938965],[116,73,79,6.103983402252197],[116,74,64,6.05026912689209],[116,74,65,6.060091018676758],[116,74,66,6.061452865600586],[116,74,67,6.054780006408691],[116,74,68,6.046853065490723],[116,74,69,6.040349006652832],[116,74,70,6.036932468414307],[116,74,71,6.034491062164307],[116,74,72,6.033131122589111],[116,74,73,6.036201000213623],[116,74,74,6.041961669921875],[116,74,75,6.048854351043701],[116,74,76,6.061378002166748],[116,74,77,6.080756187438965],[116,74,78,6.0968451499938965],[116,74,79,6.103983402252197],[116,75,64,6.05026912689209],[116,75,65,6.060091018676758],[116,75,66,6.061452865600586],[116,75,67,6.054780006408691],[116,75,68,6.046853065490723],[116,75,69,6.040349006652832],[116,75,70,6.036932468414307],[116,75,71,6.034491062164307],[116,75,72,6.033131122589111],[116,75,73,6.036201000213623],[116,75,74,6.041961669921875],[116,75,75,6.048854351043701],[116,75,76,6.061378002166748],[116,75,77,6.080756187438965],[116,75,78,6.0968451499938965],[116,75,79,6.103983402252197],[116,76,64,6.05026912689209],[116,76,65,6.060091018676758],[116,76,66,6.061452865600586],[116,76,67,6.054780006408691],[116,76,68,6.046853065490723],[116,76,69,6.040349006652832],[116,76,70,6.036932468414307],[116,76,71,6.034491062164307],[116,76,72,6.033131122589111],[116,76,73,6.036201000213623],[116,76,74,6.041961669921875],[116,76,75,6.048854351043701],[116,76,76,6.061378002166748],[116,76,77,6.080756187438965],[116,76,78,6.0968451499938965],[116,76,79,6.103983402252197],[116,77,64,6.05026912689209],[116,77,65,6.060091018676758],[116,77,66,6.061452865600586],[116,77,67,6.054780006408691],[116,77,68,6.046853065490723],[116,77,69,6.040349006652832],[116,77,70,6.036932468414307],[116,77,71,6.034491062164307],[116,77,72,6.033131122589111],[116,77,73,6.036201000213623],[116,77,74,6.041961669921875],[116,77,75,6.048854351043701],[116,77,76,6.061378002166748],[116,77,77,6.080756187438965],[116,77,78,6.0968451499938965],[116,77,79,6.103983402252197],[116,78,64,6.05026912689209],[116,78,65,6.060091018676758],[116,78,66,6.061452865600586],[116,78,67,6.054780006408691],[116,78,68,6.046853065490723],[116,78,69,6.040349006652832],[116,78,70,6.036932468414307],[116,78,71,6.034491062164307],[116,78,72,6.033131122589111],[116,78,73,6.036201000213623],[116,78,74,6.041961669921875],[116,78,75,6.048854351043701],[116,78,76,6.061378002166748],[116,78,77,6.080756187438965],[116,78,78,6.0968451499938965],[116,78,79,6.103983402252197],[116,79,64,6.05026912689209],[116,79,65,6.060091018676758],[116,79,66,6.061452865600586],[116,79,67,6.054780006408691],[116,79,68,6.046853065490723],[116,79,69,6.040349006652832],[116,79,70,6.036932468414307],[116,79,71,6.034491062164307],[116,79,72,6.033131122589111],[116,79,73,6.036201000213623],[116,79,74,6.041961669921875],[116,79,75,6.048854351043701],[116,79,76,6.061378002166748],[116,79,77,6.080756187438965],[116,79,78,6.0968451499938965],[116,79,79,6.103983402252197],[116,80,64,6.05026912689209],[116,80,65,6.060091018676758],[116,80,66,6.061452865600586],[116,80,67,6.054780006408691],[116,80,68,6.046853065490723],[116,80,69,6.040349006652832],[116,80,70,6.036932468414307],[116,80,71,6.034491062164307],[116,80,72,6.033131122589111],[116,80,73,6.036201000213623],[116,80,74,6.041961669921875],[116,80,75,6.048854351043701],[116,80,76,6.061378002166748],[116,80,77,6.080756187438965],[116,80,78,6.0968451499938965],[116,80,79,6.103983402252197],[116,81,64,6.05026912689209],[116,81,65,6.060091018676758],[116,81,66,6.061452865600586],[116,81,67,6.054780006408691],[116,81,68,6.046853065490723],[116,81,69,6.040349006652832],[116,81,70,6.036932468414307],[116,81,71,6.034491062164307],[116,81,72,6.033131122589111],[116,81,73,6.036201000213623],[116,81,74,6.041961669921875],[116,81,75,6.048854351043701],[116,81,76,6.061378002166748],[116,81,77,6.080756187438965],[116,81,78,6.0968451499938965],[116,81,79,6.103983402252197],[116,82,64,6.05026912689209],[116,82,65,6.060091018676758],[116,82,66,6.061452865600586],[116,82,67,6.054780006408691],[116,82,68,6.046853065490723],[116,82,69,6.040349006652832],[116,82,70,6.036932468414307],[116,82,71,6.034491062164307],[116,82,72,6.033131122589111],[116,82,73,6.036201000213623],[116,82,74,6.041961669921875],[116,82,75,6.048854351043701],[116,82,76,6.061378002166748],[116,82,77,6.080756187438965],[116,82,78,6.0968451499938965],[116,82,79,6.103983402252197],[116,83,64,6.05026912689209],[116,83,65,6.060091018676758],[116,83,66,6.061452865600586],[116,83,67,6.054780006408691],[116,83,68,6.046853065490723],[116,83,69,6.040349006652832],[116,83,70,6.036932468414307],[116,83,71,6.034491062164307],[116,83,72,6.033131122589111],[116,83,73,6.036201000213623],[116,83,74,6.041961669921875],[116,83,75,6.048854351043701],[116,83,76,6.061378002166748],[116,83,77,6.080756187438965],[116,83,78,6.0968451499938965],[116,83,79,6.103983402252197],[116,84,64,6.05026912689209],[116,84,65,6.060091018676758],[116,84,66,6.061452865600586],[116,84,67,6.054780006408691],[116,84,68,6.046853065490723],[116,84,69,6.040349006652832],[116,84,70,6.036932468414307],[116,84,71,6.034491062164307],[116,84,72,6.033131122589111],[116,84,73,6.036201000213623],[116,84,74,6.041961669921875],[116,84,75,6.048854351043701],[116,84,76,6.061378002166748],[116,84,77,6.080756187438965],[116,84,78,6.0968451499938965],[116,84,79,6.103983402252197],[116,85,64,6.05026912689209],[116,85,65,6.060091018676758],[116,85,66,6.061452865600586],[116,85,67,6.054780006408691],[116,85,68,6.046853065490723],[116,85,69,6.040349006652832],[116,85,70,6.036932468414307],[116,85,71,6.034491062164307],[116,85,72,6.033131122589111],[116,85,73,6.036201000213623],[116,85,74,6.041961669921875],[116,85,75,6.048854351043701],[116,85,76,6.061378002166748],[116,85,77,6.080756187438965],[116,85,78,6.0968451499938965],[116,85,79,6.103983402252197],[116,86,64,6.05026912689209],[116,86,65,6.060091018676758],[116,86,66,6.061452865600586],[116,86,67,6.054780006408691],[116,86,68,6.046853065490723],[116,86,69,6.040349006652832],[116,86,70,6.036932468414307],[116,86,71,6.034491062164307],[116,86,72,6.033131122589111],[116,86,73,6.036201000213623],[116,86,74,6.041961669921875],[116,86,75,6.048854351043701],[116,86,76,6.061378002166748],[116,86,77,6.080756187438965],[116,86,78,6.0968451499938965],[116,86,79,6.103983402252197],[116,87,64,6.05026912689209],[116,87,65,6.060091018676758],[116,87,66,6.061452865600586],[116,87,67,6.054780006408691],[116,87,68,6.046853065490723],[116,87,69,6.040349006652832],[116,87,70,6.036932468414307],[116,87,71,6.034491062164307],[116,87,72,6.033131122589111],[116,87,73,6.036201000213623],[116,87,74,6.041961669921875],[116,87,75,6.048854351043701],[116,87,76,6.061378002166748],[116,87,77,6.080756187438965],[116,87,78,6.0968451499938965],[116,87,79,6.103983402252197],[116,88,64,6.05026912689209],[116,88,65,6.060091018676758],[116,88,66,6.061452865600586],[116,88,67,6.054780006408691],[116,88,68,6.046853065490723],[116,88,69,6.040349006652832],[116,88,70,6.036932468414307],[116,88,71,6.034491062164307],[116,88,72,6.033131122589111],[116,88,73,6.036201000213623],[116,88,74,6.041961669921875],[116,88,75,6.048854351043701],[116,88,76,6.061378002166748],[116,88,77,6.080756187438965],[116,88,78,6.0968451499938965],[116,88,79,6.103983402252197],[116,89,64,6.05026912689209],[116,89,65,6.060091018676758],[116,89,66,6.061452865600586],[116,89,67,6.054780006408691],[116,89,68,6.046853065490723],[116,89,69,6.040349006652832],[116,89,70,6.036932468414307],[116,89,71,6.034491062164307],[116,89,72,6.033131122589111],[116,89,73,6.036201000213623],[116,89,74,6.041961669921875],[116,89,75,6.048854351043701],[116,89,76,6.061378002166748],[116,89,77,6.080756187438965],[116,89,78,6.0968451499938965],[116,89,79,6.103983402252197],[116,90,64,6.05026912689209],[116,90,65,6.060091018676758],[116,90,66,6.061452865600586],[116,90,67,6.054780006408691],[116,90,68,6.046853065490723],[116,90,69,6.040349006652832],[116,90,70,6.036932468414307],[116,90,71,6.034491062164307],[116,90,72,6.033131122589111],[116,90,73,6.036201000213623],[116,90,74,6.041961669921875],[116,90,75,6.048854351043701],[116,90,76,6.061378002166748],[116,90,77,6.080756187438965],[116,90,78,6.0968451499938965],[116,90,79,6.103983402252197],[116,91,64,6.05026912689209],[116,91,65,6.060091018676758],[116,91,66,6.061452865600586],[116,91,67,6.054780006408691],[116,91,68,6.046853065490723],[116,91,69,6.040349006652832],[116,91,70,6.036932468414307],[116,91,71,6.034491062164307],[116,91,72,6.033131122589111],[116,91,73,6.036201000213623],[116,91,74,6.041961669921875],[116,91,75,6.048854351043701],[116,91,76,6.061378002166748],[116,91,77,6.080756187438965],[116,91,78,6.0968451499938965],[116,91,79,6.103983402252197],[116,92,64,6.05026912689209],[116,92,65,6.060091018676758],[116,92,66,6.061452865600586],[116,92,67,6.054780006408691],[116,92,68,6.046853065490723],[116,92,69,6.040349006652832],[116,92,70,6.036932468414307],[116,92,71,6.034491062164307],[116,92,72,6.033131122589111],[116,92,73,6.036201000213623],[116,92,74,6.041961669921875],[116,92,75,6.048854351043701],[116,92,76,6.061378002166748],[116,92,77,6.080756187438965],[116,92,78,6.0968451499938965],[116,92,79,6.103983402252197],[116,93,64,6.05026912689209],[116,93,65,6.060091018676758],[116,93,66,6.061452865600586],[116,93,67,6.054780006408691],[116,93,68,6.046853065490723],[116,93,69,6.040349006652832],[116,93,70,6.036932468414307],[116,93,71,6.034491062164307],[116,93,72,6.033131122589111],[116,93,73,6.036201000213623],[116,93,74,6.041961669921875],[116,93,75,6.048854351043701],[116,93,76,6.061378002166748],[116,93,77,6.080756187438965],[116,93,78,6.0968451499938965],[116,93,79,6.103983402252197],[116,94,64,6.05026912689209],[116,94,65,6.060091018676758],[116,94,66,6.061452865600586],[116,94,67,6.054780006408691],[116,94,68,6.046853065490723],[116,94,69,6.040349006652832],[116,94,70,6.036932468414307],[116,94,71,6.034491062164307],[116,94,72,6.033131122589111],[116,94,73,6.036201000213623],[116,94,74,6.041961669921875],[116,94,75,6.048854351043701],[116,94,76,6.061378002166748],[116,94,77,6.080756187438965],[116,94,78,6.0968451499938965],[116,94,79,6.103983402252197],[116,95,64,6.05026912689209],[116,95,65,6.060091018676758],[116,95,66,6.061452865600586],[116,95,67,6.054780006408691],[116,95,68,6.046853065490723],[116,95,69,6.040349006652832],[116,95,70,6.036932468414307],[116,95,71,6.034491062164307],[116,95,72,6.033131122589111],[116,95,73,6.036201000213623],[116,95,74,6.041961669921875],[116,95,75,6.048854351043701],[116,95,76,6.061378002166748],[116,95,77,6.080756187438965],[116,95,78,6.0968451499938965],[116,95,79,6.103983402252197],[116,96,64,6.05026912689209],[116,96,65,6.060091018676758],[116,96,66,6.061452865600586],[116,96,67,6.054780006408691],[116,96,68,6.046853065490723],[116,96,69,6.040349006652832],[116,96,70,6.036932468414307],[116,96,71,6.034491062164307],[116,96,72,6.033131122589111],[116,96,73,6.036201000213623],[116,96,74,6.041961669921875],[116,96,75,6.048854351043701],[116,96,76,6.061378002166748],[116,96,77,6.080756187438965],[116,96,78,6.0968451499938965],[116,96,79,6.103983402252197],[116,97,64,6.05026912689209],[116,97,65,6.060091018676758],[116,97,66,6.061452865600586],[116,97,67,6.054780006408691],[116,97,68,6.046853065490723],[116,97,69,6.040349006652832],[116,97,70,6.036932468414307],[116,97,71,6.034491062164307],[116,97,72,6.033131122589111],[116,97,73,6.036201000213623],[116,97,74,6.041961669921875],[116,97,75,6.048854351043701],[116,97,76,6.061378002166748],[116,97,77,6.080756187438965],[116,97,78,6.0968451499938965],[116,97,79,6.103983402252197],[116,98,64,6.05026912689209],[116,98,65,6.060091018676758],[116,98,66,6.061452865600586],[116,98,67,6.054780006408691],[116,98,68,6.046853065490723],[116,98,69,6.040349006652832],[116,98,70,6.036932468414307],[116,98,71,6.034491062164307],[116,98,72,6.033131122589111],[116,98,73,6.036201000213623],[116,98,74,6.041961669921875],[116,98,75,6.048854351043701],[116,98,76,6.061378002166748],[116,98,77,6.080756187438965],[116,98,78,6.0968451499938965],[116,98,79,6.103983402252197],[116,99,64,6.05026912689209],[116,99,65,6.060091018676758],[116,99,66,6.061452865600586],[116,99,67,6.054780006408691],[116,99,68,6.046853065490723],[116,99,69,6.040349006652832],[116,99,70,6.036932468414307],[116,99,71,6.034491062164307],[116,99,72,6.033131122589111],[116,99,73,6.036201000213623],[116,99,74,6.041961669921875],[116,99,75,6.048854351043701],[116,99,76,6.061378002166748],[116,99,77,6.080756187438965],[116,99,78,6.0968451499938965],[116,99,79,6.103983402252197],[116,100,64,6.05026912689209],[116,100,65,6.060091018676758],[116,100,66,6.061452865600586],[116,100,67,6.054780006408691],[116,100,68,6.046853065490723],[116,100,69,6.040349006652832],[116,100,70,6.036932468414307],[116,100,71,6.034491062164307],[116,100,72,6.033131122589111],[116,100,73,6.036201000213623],[116,100,74,6.041961669921875],[116,100,75,6.048854351043701],[116,100,76,6.061378002166748],[116,100,77,6.080756187438965],[116,100,78,6.0968451499938965],[116,100,79,6.103983402252197],[116,101,64,6.05026912689209],[116,101,65,6.060091018676758],[116,101,66,6.061452865600586],[116,101,67,6.054780006408691],[116,101,68,6.046853065490723],[116,101,69,6.040349006652832],[116,101,70,6.036932468414307],[116,101,71,6.034491062164307],[116,101,72,6.033131122589111],[116,101,73,6.036201000213623],[116,101,74,6.041961669921875],[116,101,75,6.048854351043701],[116,101,76,6.061378002166748],[116,101,77,6.080756187438965],[116,101,78,6.0968451499938965],[116,101,79,6.103983402252197],[116,102,64,6.05026912689209],[116,102,65,6.060091018676758],[116,102,66,6.061452865600586],[116,102,67,6.054780006408691],[116,102,68,6.046853065490723],[116,102,69,6.040349006652832],[116,102,70,6.036932468414307],[116,102,71,6.034491062164307],[116,102,72,6.033131122589111],[116,102,73,6.036201000213623],[116,102,74,6.041961669921875],[116,102,75,6.048854351043701],[116,102,76,6.061378002166748],[116,102,77,6.080756187438965],[116,102,78,6.0968451499938965],[116,102,79,6.103983402252197],[116,103,64,6.05026912689209],[116,103,65,6.060091018676758],[116,103,66,6.061452865600586],[116,103,67,6.054780006408691],[116,103,68,6.046853065490723],[116,103,69,6.040349006652832],[116,103,70,6.036932468414307],[116,103,71,6.034491062164307],[116,103,72,6.033131122589111],[116,103,73,6.036201000213623],[116,103,74,6.041961669921875],[116,103,75,6.048854351043701],[116,103,76,6.061378002166748],[116,103,77,6.080756187438965],[116,103,78,6.0968451499938965],[116,103,79,6.103983402252197],[116,104,64,6.05026912689209],[116,104,65,6.060091018676758],[116,104,66,6.061452865600586],[116,104,67,6.054780006408691],[116,104,68,6.046853065490723],[116,104,69,6.040349006652832],[116,104,70,6.036932468414307],[116,104,71,6.034491062164307],[116,104,72,6.033131122589111],[116,104,73,6.036201000213623],[116,104,74,6.041961669921875],[116,104,75,6.048854351043701],[116,104,76,6.061378002166748],[116,104,77,6.080756187438965],[116,104,78,6.0968451499938965],[116,104,79,6.103983402252197],[116,105,64,6.05026912689209],[116,105,65,6.060091018676758],[116,105,66,6.061452865600586],[116,105,67,6.054780006408691],[116,105,68,6.046853065490723],[116,105,69,6.040349006652832],[116,105,70,6.036932468414307],[116,105,71,6.034491062164307],[116,105,72,6.033131122589111],[116,105,73,6.036201000213623],[116,105,74,6.041961669921875],[116,105,75,6.048854351043701],[116,105,76,6.061378002166748],[116,105,77,6.080756187438965],[116,105,78,6.0968451499938965],[116,105,79,6.103983402252197],[116,106,64,6.05026912689209],[116,106,65,6.060091018676758],[116,106,66,6.061452865600586],[116,106,67,6.054780006408691],[116,106,68,6.046853065490723],[116,106,69,6.040349006652832],[116,106,70,6.036932468414307],[116,106,71,6.034491062164307],[116,106,72,6.033131122589111],[116,106,73,6.036201000213623],[116,106,74,6.041961669921875],[116,106,75,6.048854351043701],[116,106,76,6.061378002166748],[116,106,77,6.080756187438965],[116,106,78,6.0968451499938965],[116,106,79,6.103983402252197],[116,107,64,6.05026912689209],[116,107,65,6.060091018676758],[116,107,66,6.061452865600586],[116,107,67,6.054780006408691],[116,107,68,6.046853065490723],[116,107,69,6.040349006652832],[116,107,70,6.036932468414307],[116,107,71,6.034491062164307],[116,107,72,6.033131122589111],[116,107,73,6.036201000213623],[116,107,74,6.041961669921875],[116,107,75,6.048854351043701],[116,107,76,6.061378002166748],[116,107,77,6.080756187438965],[116,107,78,6.0968451499938965],[116,107,79,6.103983402252197],[116,108,64,6.05026912689209],[116,108,65,6.060091018676758],[116,108,66,6.061452865600586],[116,108,67,6.054780006408691],[116,108,68,6.046853065490723],[116,108,69,6.040349006652832],[116,108,70,6.036932468414307],[116,108,71,6.034491062164307],[116,108,72,6.033131122589111],[116,108,73,6.036201000213623],[116,108,74,6.041961669921875],[116,108,75,6.048854351043701],[116,108,76,6.061378002166748],[116,108,77,6.080756187438965],[116,108,78,6.0968451499938965],[116,108,79,6.103983402252197],[116,109,64,6.05026912689209],[116,109,65,6.060091018676758],[116,109,66,6.061452865600586],[116,109,67,6.054780006408691],[116,109,68,6.046853065490723],[116,109,69,6.040349006652832],[116,109,70,6.036932468414307],[116,109,71,6.034491062164307],[116,109,72,6.033131122589111],[116,109,73,6.036201000213623],[116,109,74,6.041961669921875],[116,109,75,6.048854351043701],[116,109,76,6.061378002166748],[116,109,77,6.080756187438965],[116,109,78,6.0968451499938965],[116,109,79,6.103983402252197],[116,110,64,6.05026912689209],[116,110,65,6.060091018676758],[116,110,66,6.061452865600586],[116,110,67,6.054780006408691],[116,110,68,6.046853065490723],[116,110,69,6.040349006652832],[116,110,70,6.036932468414307],[116,110,71,6.034491062164307],[116,110,72,6.033131122589111],[116,110,73,6.036201000213623],[116,110,74,6.041961669921875],[116,110,75,6.048854351043701],[116,110,76,6.061378002166748],[116,110,77,6.080756187438965],[116,110,78,6.0968451499938965],[116,110,79,6.103983402252197],[116,111,64,6.05026912689209],[116,111,65,6.060091018676758],[116,111,66,6.061452865600586],[116,111,67,6.054780006408691],[116,111,68,6.046853065490723],[116,111,69,6.040349006652832],[116,111,70,6.036932468414307],[116,111,71,6.034491062164307],[116,111,72,6.033131122589111],[116,111,73,6.036201000213623],[116,111,74,6.041961669921875],[116,111,75,6.048854351043701],[116,111,76,6.061378002166748],[116,111,77,6.080756187438965],[116,111,78,6.0968451499938965],[116,111,79,6.103983402252197],[116,112,64,6.05026912689209],[116,112,65,6.060091018676758],[116,112,66,6.061452865600586],[116,112,67,6.054780006408691],[116,112,68,6.046853065490723],[116,112,69,6.040349006652832],[116,112,70,6.036932468414307],[116,112,71,6.034491062164307],[116,112,72,6.033131122589111],[116,112,73,6.036201000213623],[116,112,74,6.041961669921875],[116,112,75,6.048854351043701],[116,112,76,6.061378002166748],[116,112,77,6.080756187438965],[116,112,78,6.0968451499938965],[116,112,79,6.103983402252197],[116,113,64,6.05026912689209],[116,113,65,6.060091018676758],[116,113,66,6.061452865600586],[116,113,67,6.054780006408691],[116,113,68,6.046853065490723],[116,113,69,6.040349006652832],[116,113,70,6.036932468414307],[116,113,71,6.034491062164307],[116,113,72,6.033131122589111],[116,113,73,6.036201000213623],[116,113,74,6.041961669921875],[116,113,75,6.048854351043701],[116,113,76,6.061378002166748],[116,113,77,6.080756187438965],[116,113,78,6.0968451499938965],[116,113,79,6.103983402252197],[116,114,64,6.05026912689209],[116,114,65,6.060091018676758],[116,114,66,6.061452865600586],[116,114,67,6.054780006408691],[116,114,68,6.046853065490723],[116,114,69,6.040349006652832],[116,114,70,6.036932468414307],[116,114,71,6.034491062164307],[116,114,72,6.033131122589111],[116,114,73,6.036201000213623],[116,114,74,6.041961669921875],[116,114,75,6.048854351043701],[116,114,76,6.061378002166748],[116,114,77,6.080756187438965],[116,114,78,6.0968451499938965],[116,114,79,6.103983402252197],[116,115,64,6.05026912689209],[116,115,65,6.060091018676758],[116,115,66,6.061452865600586],[116,115,67,6.054780006408691],[116,115,68,6.046853065490723],[116,115,69,6.040349006652832],[116,115,70,6.036932468414307],[116,115,71,6.034491062164307],[116,115,72,6.033131122589111],[116,115,73,6.036201000213623],[116,115,74,6.041961669921875],[116,115,75,6.048854351043701],[116,115,76,6.061378002166748],[116,115,77,6.080756187438965],[116,115,78,6.0968451499938965],[116,115,79,6.103983402252197],[116,116,64,6.05026912689209],[116,116,65,6.060091018676758],[116,116,66,6.061452865600586],[116,116,67,6.054780006408691],[116,116,68,6.046853065490723],[116,116,69,6.040349006652832],[116,116,70,6.036932468414307],[116,116,71,6.034491062164307],[116,116,72,6.033131122589111],[116,116,73,6.036201000213623],[116,116,74,6.041961669921875],[116,116,75,6.048854351043701],[116,116,76,6.061378002166748],[116,116,77,6.080756187438965],[116,116,78,6.0968451499938965],[116,116,79,6.103983402252197],[116,117,64,6.05026912689209],[116,117,65,6.060091018676758],[116,117,66,6.061452865600586],[116,117,67,6.054780006408691],[116,117,68,6.046853065490723],[116,117,69,6.040349006652832],[116,117,70,6.036932468414307],[116,117,71,6.034491062164307],[116,117,72,6.033131122589111],[116,117,73,6.036201000213623],[116,117,74,6.041961669921875],[116,117,75,6.048854351043701],[116,117,76,6.061378002166748],[116,117,77,6.080756187438965],[116,117,78,6.0968451499938965],[116,117,79,6.103983402252197],[116,118,64,6.05026912689209],[116,118,65,6.060091018676758],[116,118,66,6.061452865600586],[116,118,67,6.054780006408691],[116,118,68,6.046853065490723],[116,118,69,6.040349006652832],[116,118,70,6.036932468414307],[116,118,71,6.034491062164307],[116,118,72,6.033131122589111],[116,118,73,6.036201000213623],[116,118,74,6.041961669921875],[116,118,75,6.048854351043701],[116,118,76,6.061378002166748],[116,118,77,6.080756187438965],[116,118,78,6.0968451499938965],[116,118,79,6.103983402252197],[116,119,64,6.05026912689209],[116,119,65,6.060091018676758],[116,119,66,6.061452865600586],[116,119,67,6.054780006408691],[116,119,68,6.046853065490723],[116,119,69,6.040349006652832],[116,119,70,6.036932468414307],[116,119,71,6.034491062164307],[116,119,72,6.033131122589111],[116,119,73,6.036201000213623],[116,119,74,6.041961669921875],[116,119,75,6.048854351043701],[116,119,76,6.061378002166748],[116,119,77,6.080756187438965],[116,119,78,6.0968451499938965],[116,119,79,6.103983402252197],[116,120,64,6.05026912689209],[116,120,65,6.060091018676758],[116,120,66,6.061452865600586],[116,120,67,6.054780006408691],[116,120,68,6.046853065490723],[116,120,69,6.040349006652832],[116,120,70,6.036932468414307],[116,120,71,6.034491062164307],[116,120,72,6.033131122589111],[116,120,73,6.036201000213623],[116,120,74,6.041961669921875],[116,120,75,6.048854351043701],[116,120,76,6.061378002166748],[116,120,77,6.080756187438965],[116,120,78,6.0968451499938965],[116,120,79,6.103983402252197],[116,121,64,6.05026912689209],[116,121,65,6.060091018676758],[116,121,66,6.061452865600586],[116,121,67,6.054780006408691],[116,121,68,6.046853065490723],[116,121,69,6.040349006652832],[116,121,70,6.036932468414307],[116,121,71,6.034491062164307],[116,121,72,6.033131122589111],[116,121,73,6.036201000213623],[116,121,74,6.041961669921875],[116,121,75,6.048854351043701],[116,121,76,6.061378002166748],[116,121,77,6.080756187438965],[116,121,78,6.0968451499938965],[116,121,79,6.103983402252197],[116,122,64,6.05026912689209],[116,122,65,6.060091018676758],[116,122,66,6.061452865600586],[116,122,67,6.054780006408691],[116,122,68,6.046853065490723],[116,122,69,6.040349006652832],[116,122,70,6.036932468414307],[116,122,71,6.034491062164307],[116,122,72,6.033131122589111],[116,122,73,6.036201000213623],[116,122,74,6.041961669921875],[116,122,75,6.048854351043701],[116,122,76,6.061378002166748],[116,122,77,6.080756187438965],[116,122,78,6.0968451499938965],[116,122,79,6.103983402252197],[116,123,64,6.05026912689209],[116,123,65,6.060091018676758],[116,123,66,6.061452865600586],[116,123,67,6.054780006408691],[116,123,68,6.046853065490723],[116,123,69,6.040349006652832],[116,123,70,6.036932468414307],[116,123,71,6.034491062164307],[116,123,72,6.033131122589111],[116,123,73,6.036201000213623],[116,123,74,6.041961669921875],[116,123,75,6.048854351043701],[116,123,76,6.061378002166748],[116,123,77,6.080756187438965],[116,123,78,6.0968451499938965],[116,123,79,6.103983402252197],[116,124,64,6.05026912689209],[116,124,65,6.060091018676758],[116,124,66,6.061452865600586],[116,124,67,6.054780006408691],[116,124,68,6.046853065490723],[116,124,69,6.040349006652832],[116,124,70,6.036932468414307],[116,124,71,6.034491062164307],[116,124,72,6.033131122589111],[116,124,73,6.036201000213623],[116,124,74,6.041961669921875],[116,124,75,6.048854351043701],[116,124,76,6.061378002166748],[116,124,77,6.080756187438965],[116,124,78,6.0968451499938965],[116,124,79,6.103983402252197],[116,125,64,6.05026912689209],[116,125,65,6.060091018676758],[116,125,66,6.061452865600586],[116,125,67,6.054780006408691],[116,125,68,6.046853065490723],[116,125,69,6.040349006652832],[116,125,70,6.036932468414307],[116,125,71,6.034491062164307],[116,125,72,6.033131122589111],[116,125,73,6.036201000213623],[116,125,74,6.041961669921875],[116,125,75,6.048854351043701],[116,125,76,6.061378002166748],[116,125,77,6.080756187438965],[116,125,78,6.0968451499938965],[116,125,79,6.103983402252197],[116,126,64,6.05026912689209],[116,126,65,6.060091018676758],[116,126,66,6.061452865600586],[116,126,67,6.054780006408691],[116,126,68,6.046853065490723],[116,126,69,6.040349006652832],[116,126,70,6.036932468414307],[116,126,71,6.034491062164307],[116,126,72,6.033131122589111],[116,126,73,6.036201000213623],[116,126,74,6.041961669921875],[116,126,75,6.048854351043701],[116,126,76,6.061378002166748],[116,126,77,6.080756187438965],[116,126,78,6.0968451499938965],[116,126,79,6.103983402252197],[116,127,64,6.05026912689209],[116,127,65,6.060091018676758],[116,127,66,6.061452865600586],[116,127,67,6.054780006408691],[116,127,68,6.046853065490723],[116,127,69,6.040349006652832],[116,127,70,6.036932468414307],[116,127,71,6.034491062164307],[116,127,72,6.033131122589111],[116,127,73,6.036201000213623],[116,127,74,6.041961669921875],[116,127,75,6.048854351043701],[116,127,76,6.061378002166748],[116,127,77,6.080756187438965],[116,127,78,6.0968451499938965],[116,127,79,6.103983402252197],[116,128,64,6.05026912689209],[116,128,65,6.060091018676758],[116,128,66,6.061452865600586],[116,128,67,6.054780006408691],[116,128,68,6.046853065490723],[116,128,69,6.040349006652832],[116,128,70,6.036932468414307],[116,128,71,6.034491062164307],[116,128,72,6.033131122589111],[116,128,73,6.036201000213623],[116,128,74,6.041961669921875],[116,128,75,6.048854351043701],[116,128,76,6.061378002166748],[116,128,77,6.080756187438965],[116,128,78,6.0968451499938965],[116,128,79,6.103983402252197],[116,129,64,6.05026912689209],[116,129,65,6.060091018676758],[116,129,66,6.061452865600586],[116,129,67,6.054780006408691],[116,129,68,6.046853065490723],[116,129,69,6.040349006652832],[116,129,70,6.036932468414307],[116,129,71,6.034491062164307],[116,129,72,6.033131122589111],[116,129,73,6.036201000213623],[116,129,74,6.041961669921875],[116,129,75,6.048854351043701],[116,129,76,6.061378002166748],[116,129,77,6.080756187438965],[116,129,78,6.0968451499938965],[116,129,79,6.103983402252197],[116,130,64,6.05026912689209],[116,130,65,6.060091018676758],[116,130,66,6.061452865600586],[116,130,67,6.054780006408691],[116,130,68,6.046853065490723],[116,130,69,6.040349006652832],[116,130,70,6.036932468414307],[116,130,71,6.034491062164307],[116,130,72,6.033131122589111],[116,130,73,6.036201000213623],[116,130,74,6.041961669921875],[116,130,75,6.048854351043701],[116,130,76,6.061378002166748],[116,130,77,6.080756187438965],[116,130,78,6.0968451499938965],[116,130,79,6.103983402252197],[116,131,64,6.05026912689209],[116,131,65,6.060091018676758],[116,131,66,6.061452865600586],[116,131,67,6.054780006408691],[116,131,68,6.046853065490723],[116,131,69,6.040349006652832],[116,131,70,6.036932468414307],[116,131,71,6.034491062164307],[116,131,72,6.033131122589111],[116,131,73,6.036201000213623],[116,131,74,6.041961669921875],[116,131,75,6.048854351043701],[116,131,76,6.061378002166748],[116,131,77,6.080756187438965],[116,131,78,6.0968451499938965],[116,131,79,6.103983402252197],[116,132,64,6.05026912689209],[116,132,65,6.060091018676758],[116,132,66,6.061452865600586],[116,132,67,6.054780006408691],[116,132,68,6.046853065490723],[116,132,69,6.040349006652832],[116,132,70,6.036932468414307],[116,132,71,6.034491062164307],[116,132,72,6.033131122589111],[116,132,73,6.036201000213623],[116,132,74,6.041961669921875],[116,132,75,6.048854351043701],[116,132,76,6.061378002166748],[116,132,77,6.080756187438965],[116,132,78,6.0968451499938965],[116,132,79,6.103983402252197],[116,133,64,6.05026912689209],[116,133,65,6.060091018676758],[116,133,66,6.061452865600586],[116,133,67,6.054780006408691],[116,133,68,6.046853065490723],[116,133,69,6.040349006652832],[116,133,70,6.036932468414307],[116,133,71,6.034491062164307],[116,133,72,6.033131122589111],[116,133,73,6.036201000213623],[116,133,74,6.041961669921875],[116,133,75,6.048854351043701],[116,133,76,6.061378002166748],[116,133,77,6.080756187438965],[116,133,78,6.0968451499938965],[116,133,79,6.103983402252197],[116,134,64,6.05026912689209],[116,134,65,6.060091018676758],[116,134,66,6.061452865600586],[116,134,67,6.054780006408691],[116,134,68,6.046853065490723],[116,134,69,6.040349006652832],[116,134,70,6.036932468414307],[116,134,71,6.034491062164307],[116,134,72,6.033131122589111],[116,134,73,6.036201000213623],[116,134,74,6.041961669921875],[116,134,75,6.048854351043701],[116,134,76,6.061378002166748],[116,134,77,6.080756187438965],[116,134,78,6.0968451499938965],[116,134,79,6.103983402252197],[116,135,64,6.05026912689209],[116,135,65,6.060091018676758],[116,135,66,6.061452865600586],[116,135,67,6.054780006408691],[116,135,68,6.046853065490723],[116,135,69,6.040349006652832],[116,135,70,6.036932468414307],[116,135,71,6.034491062164307],[116,135,72,6.033131122589111],[116,135,73,6.036201000213623],[116,135,74,6.041961669921875],[116,135,75,6.048854351043701],[116,135,76,6.061378002166748],[116,135,77,6.080756187438965],[116,135,78,6.0968451499938965],[116,135,79,6.103983402252197],[116,136,64,6.05026912689209],[116,136,65,6.060091018676758],[116,136,66,6.061452865600586],[116,136,67,6.054780006408691],[116,136,68,6.046853065490723],[116,136,69,6.040349006652832],[116,136,70,6.036932468414307],[116,136,71,6.034491062164307],[116,136,72,6.033131122589111],[116,136,73,6.036201000213623],[116,136,74,6.041961669921875],[116,136,75,6.048854351043701],[116,136,76,6.061378002166748],[116,136,77,6.080756187438965],[116,136,78,6.0968451499938965],[116,136,79,6.103983402252197],[116,137,64,6.05026912689209],[116,137,65,6.060091018676758],[116,137,66,6.061452865600586],[116,137,67,6.054780006408691],[116,137,68,6.046853065490723],[116,137,69,6.040349006652832],[116,137,70,6.036932468414307],[116,137,71,6.034491062164307],[116,137,72,6.033131122589111],[116,137,73,6.036201000213623],[116,137,74,6.041961669921875],[116,137,75,6.048854351043701],[116,137,76,6.061378002166748],[116,137,77,6.080756187438965],[116,137,78,6.0968451499938965],[116,137,79,6.103983402252197],[116,138,64,6.05026912689209],[116,138,65,6.060091018676758],[116,138,66,6.061452865600586],[116,138,67,6.054780006408691],[116,138,68,6.046853065490723],[116,138,69,6.040349006652832],[116,138,70,6.036932468414307],[116,138,71,6.034491062164307],[116,138,72,6.033131122589111],[116,138,73,6.036201000213623],[116,138,74,6.041961669921875],[116,138,75,6.048854351043701],[116,138,76,6.061378002166748],[116,138,77,6.080756187438965],[116,138,78,6.0968451499938965],[116,138,79,6.103983402252197],[116,139,64,6.05026912689209],[116,139,65,6.060091018676758],[116,139,66,6.061452865600586],[116,139,67,6.054780006408691],[116,139,68,6.046853065490723],[116,139,69,6.040349006652832],[116,139,70,6.036932468414307],[116,139,71,6.034491062164307],[116,139,72,6.033131122589111],[116,139,73,6.036201000213623],[116,139,74,6.041961669921875],[116,139,75,6.048854351043701],[116,139,76,6.061378002166748],[116,139,77,6.080756187438965],[116,139,78,6.0968451499938965],[116,139,79,6.103983402252197],[116,140,64,6.05026912689209],[116,140,65,6.060091018676758],[116,140,66,6.061452865600586],[116,140,67,6.054780006408691],[116,140,68,6.046853065490723],[116,140,69,6.040349006652832],[116,140,70,6.036932468414307],[116,140,71,6.034491062164307],[116,140,72,6.033131122589111],[116,140,73,6.036201000213623],[116,140,74,6.041961669921875],[116,140,75,6.048854351043701],[116,140,76,6.061378002166748],[116,140,77,6.080756187438965],[116,140,78,6.0968451499938965],[116,140,79,6.103983402252197],[116,141,64,6.05026912689209],[116,141,65,6.060091018676758],[116,141,66,6.061452865600586],[116,141,67,6.054780006408691],[116,141,68,6.046853065490723],[116,141,69,6.040349006652832],[116,141,70,6.036932468414307],[116,141,71,6.034491062164307],[116,141,72,6.033131122589111],[116,141,73,6.036201000213623],[116,141,74,6.041961669921875],[116,141,75,6.048854351043701],[116,141,76,6.061378002166748],[116,141,77,6.080756187438965],[116,141,78,6.0968451499938965],[116,141,79,6.103983402252197],[116,142,64,6.05026912689209],[116,142,65,6.060091018676758],[116,142,66,6.061452865600586],[116,142,67,6.054780006408691],[116,142,68,6.046853065490723],[116,142,69,6.040349006652832],[116,142,70,6.036932468414307],[116,142,71,6.034491062164307],[116,142,72,6.033131122589111],[116,142,73,6.036201000213623],[116,142,74,6.041961669921875],[116,142,75,6.048854351043701],[116,142,76,6.061378002166748],[116,142,77,6.080756187438965],[116,142,78,6.0968451499938965],[116,142,79,6.103983402252197],[116,143,64,6.05026912689209],[116,143,65,6.060091018676758],[116,143,66,6.061452865600586],[116,143,67,6.054780006408691],[116,143,68,6.046853065490723],[116,143,69,6.040349006652832],[116,143,70,6.036932468414307],[116,143,71,6.034491062164307],[116,143,72,6.033131122589111],[116,143,73,6.036201000213623],[116,143,74,6.041961669921875],[116,143,75,6.048854351043701],[116,143,76,6.061378002166748],[116,143,77,6.080756187438965],[116,143,78,6.0968451499938965],[116,143,79,6.103983402252197],[116,144,64,6.05026912689209],[116,144,65,6.060091018676758],[116,144,66,6.061452865600586],[116,144,67,6.054780006408691],[116,144,68,6.046853065490723],[116,144,69,6.040349006652832],[116,144,70,6.036932468414307],[116,144,71,6.034491062164307],[116,144,72,6.033131122589111],[116,144,73,6.036201000213623],[116,144,74,6.041961669921875],[116,144,75,6.048854351043701],[116,144,76,6.061378002166748],[116,144,77,6.080756187438965],[116,144,78,6.0968451499938965],[116,144,79,6.103983402252197],[116,145,64,6.05026912689209],[116,145,65,6.060091018676758],[116,145,66,6.061452865600586],[116,145,67,6.054780006408691],[116,145,68,6.046853065490723],[116,145,69,6.040349006652832],[116,145,70,6.036932468414307],[116,145,71,6.034491062164307],[116,145,72,6.033131122589111],[116,145,73,6.036201000213623],[116,145,74,6.041961669921875],[116,145,75,6.048854351043701],[116,145,76,6.061378002166748],[116,145,77,6.080756187438965],[116,145,78,6.0968451499938965],[116,145,79,6.103983402252197],[116,146,64,6.05026912689209],[116,146,65,6.060091018676758],[116,146,66,6.061452865600586],[116,146,67,6.054780006408691],[116,146,68,6.046853065490723],[116,146,69,6.040349006652832],[116,146,70,6.036932468414307],[116,146,71,6.034491062164307],[116,146,72,6.033131122589111],[116,146,73,6.036201000213623],[116,146,74,6.041961669921875],[116,146,75,6.048854351043701],[116,146,76,6.061378002166748],[116,146,77,6.080756187438965],[116,146,78,6.0968451499938965],[116,146,79,6.103983402252197],[116,147,64,6.05026912689209],[116,147,65,6.060091018676758],[116,147,66,6.061452865600586],[116,147,67,6.054780006408691],[116,147,68,6.046853065490723],[116,147,69,6.040349006652832],[116,147,70,6.036932468414307],[116,147,71,6.034491062164307],[116,147,72,6.033131122589111],[116,147,73,6.036201000213623],[116,147,74,6.041961669921875],[116,147,75,6.048854351043701],[116,147,76,6.061378002166748],[116,147,77,6.080756187438965],[116,147,78,6.0968451499938965],[116,147,79,6.103983402252197],[116,148,64,6.05026912689209],[116,148,65,6.060091018676758],[116,148,66,6.061452865600586],[116,148,67,6.054780006408691],[116,148,68,6.046853065490723],[116,148,69,6.040349006652832],[116,148,70,6.036932468414307],[116,148,71,6.034491062164307],[116,148,72,6.033131122589111],[116,148,73,6.036201000213623],[116,148,74,6.041961669921875],[116,148,75,6.048854351043701],[116,148,76,6.061378002166748],[116,148,77,6.080756187438965],[116,148,78,6.0968451499938965],[116,148,79,6.103983402252197],[116,149,64,6.05026912689209],[116,149,65,6.060091018676758],[116,149,66,6.061452865600586],[116,149,67,6.054780006408691],[116,149,68,6.046853065490723],[116,149,69,6.040349006652832],[116,149,70,6.036932468414307],[116,149,71,6.034491062164307],[116,149,72,6.033131122589111],[116,149,73,6.036201000213623],[116,149,74,6.041961669921875],[116,149,75,6.048854351043701],[116,149,76,6.061378002166748],[116,149,77,6.080756187438965],[116,149,78,6.0968451499938965],[116,149,79,6.103983402252197],[116,150,64,6.05026912689209],[116,150,65,6.060091018676758],[116,150,66,6.061452865600586],[116,150,67,6.054780006408691],[116,150,68,6.046853065490723],[116,150,69,6.040349006652832],[116,150,70,6.036932468414307],[116,150,71,6.034491062164307],[116,150,72,6.033131122589111],[116,150,73,6.036201000213623],[116,150,74,6.041961669921875],[116,150,75,6.048854351043701],[116,150,76,6.061378002166748],[116,150,77,6.080756187438965],[116,150,78,6.0968451499938965],[116,150,79,6.103983402252197],[116,151,64,6.05026912689209],[116,151,65,6.060091018676758],[116,151,66,6.061452865600586],[116,151,67,6.054780006408691],[116,151,68,6.046853065490723],[116,151,69,6.040349006652832],[116,151,70,6.036932468414307],[116,151,71,6.034491062164307],[116,151,72,6.033131122589111],[116,151,73,6.036201000213623],[116,151,74,6.041961669921875],[116,151,75,6.048854351043701],[116,151,76,6.061378002166748],[116,151,77,6.080756187438965],[116,151,78,6.0968451499938965],[116,151,79,6.103983402252197],[116,152,64,6.05026912689209],[116,152,65,6.060091018676758],[116,152,66,6.061452865600586],[116,152,67,6.054780006408691],[116,152,68,6.046853065490723],[116,152,69,6.040349006652832],[116,152,70,6.036932468414307],[116,152,71,6.034491062164307],[116,152,72,6.033131122589111],[116,152,73,6.036201000213623],[116,152,74,6.041961669921875],[116,152,75,6.048854351043701],[116,152,76,6.061378002166748],[116,152,77,6.080756187438965],[116,152,78,6.0968451499938965],[116,152,79,6.103983402252197],[116,153,64,6.05026912689209],[116,153,65,6.060091018676758],[116,153,66,6.061452865600586],[116,153,67,6.054780006408691],[116,153,68,6.046853065490723],[116,153,69,6.040349006652832],[116,153,70,6.036932468414307],[116,153,71,6.034491062164307],[116,153,72,6.033131122589111],[116,153,73,6.036201000213623],[116,153,74,6.041961669921875],[116,153,75,6.048854351043701],[116,153,76,6.061378002166748],[116,153,77,6.080756187438965],[116,153,78,6.0968451499938965],[116,153,79,6.103983402252197],[116,154,64,6.05026912689209],[116,154,65,6.060091018676758],[116,154,66,6.061452865600586],[116,154,67,6.054780006408691],[116,154,68,6.046853065490723],[116,154,69,6.040349006652832],[116,154,70,6.036932468414307],[116,154,71,6.034491062164307],[116,154,72,6.033131122589111],[116,154,73,6.036201000213623],[116,154,74,6.041961669921875],[116,154,75,6.048854351043701],[116,154,76,6.061378002166748],[116,154,77,6.080756187438965],[116,154,78,6.0968451499938965],[116,154,79,6.103983402252197],[116,155,64,6.05026912689209],[116,155,65,6.060091018676758],[116,155,66,6.061452865600586],[116,155,67,6.054780006408691],[116,155,68,6.046853065490723],[116,155,69,6.040349006652832],[116,155,70,6.036932468414307],[116,155,71,6.034491062164307],[116,155,72,6.033131122589111],[116,155,73,6.036201000213623],[116,155,74,6.041961669921875],[116,155,75,6.048854351043701],[116,155,76,6.061378002166748],[116,155,77,6.080756187438965],[116,155,78,6.0968451499938965],[116,155,79,6.103983402252197],[116,156,64,6.05026912689209],[116,156,65,6.060091018676758],[116,156,66,6.061452865600586],[116,156,67,6.054780006408691],[116,156,68,6.046853065490723],[116,156,69,6.040349006652832],[116,156,70,6.036932468414307],[116,156,71,6.034491062164307],[116,156,72,6.033131122589111],[116,156,73,6.036201000213623],[116,156,74,6.041961669921875],[116,156,75,6.048854351043701],[116,156,76,6.061378002166748],[116,156,77,6.080756187438965],[116,156,78,6.0968451499938965],[116,156,79,6.103983402252197],[116,157,64,6.05026912689209],[116,157,65,6.060091018676758],[116,157,66,6.061452865600586],[116,157,67,6.054780006408691],[116,157,68,6.046853065490723],[116,157,69,6.040349006652832],[116,157,70,6.036932468414307],[116,157,71,6.034491062164307],[116,157,72,6.033131122589111],[116,157,73,6.036201000213623],[116,157,74,6.041961669921875],[116,157,75,6.048854351043701],[116,157,76,6.061378002166748],[116,157,77,6.080756187438965],[116,157,78,6.0968451499938965],[116,157,79,6.103983402252197],[116,158,64,6.05026912689209],[116,158,65,6.060091018676758],[116,158,66,6.061452865600586],[116,158,67,6.054780006408691],[116,158,68,6.046853065490723],[116,158,69,6.040349006652832],[116,158,70,6.036932468414307],[116,158,71,6.034491062164307],[116,158,72,6.033131122589111],[116,158,73,6.036201000213623],[116,158,74,6.041961669921875],[116,158,75,6.048854351043701],[116,158,76,6.061378002166748],[116,158,77,6.080756187438965],[116,158,78,6.0968451499938965],[116,158,79,6.103983402252197],[116,159,64,6.05026912689209],[116,159,65,6.060091018676758],[116,159,66,6.061452865600586],[116,159,67,6.054780006408691],[116,159,68,6.046853065490723],[116,159,69,6.040349006652832],[116,159,70,6.036932468414307],[116,159,71,6.034491062164307],[116,159,72,6.033131122589111],[116,159,73,6.036201000213623],[116,159,74,6.041961669921875],[116,159,75,6.048854351043701],[116,159,76,6.061378002166748],[116,159,77,6.080756187438965],[116,159,78,6.0968451499938965],[116,159,79,6.103983402252197],[116,160,64,6.05026912689209],[116,160,65,6.060091018676758],[116,160,66,6.061452865600586],[116,160,67,6.054780006408691],[116,160,68,6.046853065490723],[116,160,69,6.040349006652832],[116,160,70,6.036932468414307],[116,160,71,6.034491062164307],[116,160,72,6.033131122589111],[116,160,73,6.036201000213623],[116,160,74,6.041961669921875],[116,160,75,6.048854351043701],[116,160,76,6.061378002166748],[116,160,77,6.080756187438965],[116,160,78,6.0968451499938965],[116,160,79,6.103983402252197],[116,161,64,6.05026912689209],[116,161,65,6.060091018676758],[116,161,66,6.061452865600586],[116,161,67,6.054780006408691],[116,161,68,6.046853065490723],[116,161,69,6.040349006652832],[116,161,70,6.036932468414307],[116,161,71,6.034491062164307],[116,161,72,6.033131122589111],[116,161,73,6.036201000213623],[116,161,74,6.041961669921875],[116,161,75,6.048854351043701],[116,161,76,6.061378002166748],[116,161,77,6.080756187438965],[116,161,78,6.0968451499938965],[116,161,79,6.103983402252197],[116,162,64,6.05026912689209],[116,162,65,6.060091018676758],[116,162,66,6.061452865600586],[116,162,67,6.054780006408691],[116,162,68,6.046853065490723],[116,162,69,6.040349006652832],[116,162,70,6.036932468414307],[116,162,71,6.034491062164307],[116,162,72,6.033131122589111],[116,162,73,6.036201000213623],[116,162,74,6.041961669921875],[116,162,75,6.048854351043701],[116,162,76,6.061378002166748],[116,162,77,6.080756187438965],[116,162,78,6.0968451499938965],[116,162,79,6.103983402252197],[116,163,64,6.05026912689209],[116,163,65,6.060091018676758],[116,163,66,6.061452865600586],[116,163,67,6.054780006408691],[116,163,68,6.046853065490723],[116,163,69,6.040349006652832],[116,163,70,6.036932468414307],[116,163,71,6.034491062164307],[116,163,72,6.033131122589111],[116,163,73,6.036201000213623],[116,163,74,6.041961669921875],[116,163,75,6.048854351043701],[116,163,76,6.061378002166748],[116,163,77,6.080756187438965],[116,163,78,6.0968451499938965],[116,163,79,6.103983402252197],[116,164,64,6.05026912689209],[116,164,65,6.060091018676758],[116,164,66,6.061452865600586],[116,164,67,6.054780006408691],[116,164,68,6.046853065490723],[116,164,69,6.040349006652832],[116,164,70,6.036932468414307],[116,164,71,6.034491062164307],[116,164,72,6.033131122589111],[116,164,73,6.036201000213623],[116,164,74,6.041961669921875],[116,164,75,6.048854351043701],[116,164,76,6.061378002166748],[116,164,77,6.080756187438965],[116,164,78,6.0968451499938965],[116,164,79,6.103983402252197],[116,165,64,6.05026912689209],[116,165,65,6.060091018676758],[116,165,66,6.061452865600586],[116,165,67,6.054780006408691],[116,165,68,6.046853065490723],[116,165,69,6.040349006652832],[116,165,70,6.036932468414307],[116,165,71,6.034491062164307],[116,165,72,6.033131122589111],[116,165,73,6.036201000213623],[116,165,74,6.041961669921875],[116,165,75,6.048854351043701],[116,165,76,6.061378002166748],[116,165,77,6.080756187438965],[116,165,78,6.0968451499938965],[116,165,79,6.103983402252197],[116,166,64,6.05026912689209],[116,166,65,6.060091018676758],[116,166,66,6.061452865600586],[116,166,67,6.054780006408691],[116,166,68,6.046853065490723],[116,166,69,6.040349006652832],[116,166,70,6.036932468414307],[116,166,71,6.034491062164307],[116,166,72,6.033131122589111],[116,166,73,6.036201000213623],[116,166,74,6.041961669921875],[116,166,75,6.048854351043701],[116,166,76,6.061378002166748],[116,166,77,6.080756187438965],[116,166,78,6.0968451499938965],[116,166,79,6.103983402252197],[116,167,64,6.05026912689209],[116,167,65,6.060091018676758],[116,167,66,6.061452865600586],[116,167,67,6.054780006408691],[116,167,68,6.046853065490723],[116,167,69,6.040349006652832],[116,167,70,6.036932468414307],[116,167,71,6.034491062164307],[116,167,72,6.033131122589111],[116,167,73,6.036201000213623],[116,167,74,6.041961669921875],[116,167,75,6.048854351043701],[116,167,76,6.061378002166748],[116,167,77,6.080756187438965],[116,167,78,6.0968451499938965],[116,167,79,6.103983402252197],[116,168,64,6.05026912689209],[116,168,65,6.060091018676758],[116,168,66,6.061452865600586],[116,168,67,6.054780006408691],[116,168,68,6.046853065490723],[116,168,69,6.040349006652832],[116,168,70,6.036932468414307],[116,168,71,6.034491062164307],[116,168,72,6.033131122589111],[116,168,73,6.036201000213623],[116,168,74,6.041961669921875],[116,168,75,6.048854351043701],[116,168,76,6.061378002166748],[116,168,77,6.080756187438965],[116,168,78,6.0968451499938965],[116,168,79,6.103983402252197],[116,169,64,6.05026912689209],[116,169,65,6.060091018676758],[116,169,66,6.061452865600586],[116,169,67,6.054780006408691],[116,169,68,6.046853065490723],[116,169,69,6.040349006652832],[116,169,70,6.036932468414307],[116,169,71,6.034491062164307],[116,169,72,6.033131122589111],[116,169,73,6.036201000213623],[116,169,74,6.041961669921875],[116,169,75,6.048854351043701],[116,169,76,6.061378002166748],[116,169,77,6.080756187438965],[116,169,78,6.0968451499938965],[116,169,79,6.103983402252197],[116,170,64,6.05026912689209],[116,170,65,6.060091018676758],[116,170,66,6.061452865600586],[116,170,67,6.054780006408691],[116,170,68,6.046853065490723],[116,170,69,6.040349006652832],[116,170,70,6.036932468414307],[116,170,71,6.034491062164307],[116,170,72,6.033131122589111],[116,170,73,6.036201000213623],[116,170,74,6.041961669921875],[116,170,75,6.048854351043701],[116,170,76,6.061378002166748],[116,170,77,6.080756187438965],[116,170,78,6.0968451499938965],[116,170,79,6.103983402252197],[116,171,64,6.05026912689209],[116,171,65,6.060091018676758],[116,171,66,6.061452865600586],[116,171,67,6.054780006408691],[116,171,68,6.046853065490723],[116,171,69,6.040349006652832],[116,171,70,6.036932468414307],[116,171,71,6.034491062164307],[116,171,72,6.033131122589111],[116,171,73,6.036201000213623],[116,171,74,6.041961669921875],[116,171,75,6.048854351043701],[116,171,76,6.061378002166748],[116,171,77,6.080756187438965],[116,171,78,6.0968451499938965],[116,171,79,6.103983402252197],[116,172,64,6.05026912689209],[116,172,65,6.060091018676758],[116,172,66,6.061452865600586],[116,172,67,6.054780006408691],[116,172,68,6.046853065490723],[116,172,69,6.040349006652832],[116,172,70,6.036932468414307],[116,172,71,6.034491062164307],[116,172,72,6.033131122589111],[116,172,73,6.036201000213623],[116,172,74,6.041961669921875],[116,172,75,6.048854351043701],[116,172,76,6.061378002166748],[116,172,77,6.080756187438965],[116,172,78,6.0968451499938965],[116,172,79,6.103983402252197],[116,173,64,6.05026912689209],[116,173,65,6.060091018676758],[116,173,66,6.061452865600586],[116,173,67,6.054780006408691],[116,173,68,6.046853065490723],[116,173,69,6.040349006652832],[116,173,70,6.036932468414307],[116,173,71,6.034491062164307],[116,173,72,6.033131122589111],[116,173,73,6.036201000213623],[116,173,74,6.041961669921875],[116,173,75,6.048854351043701],[116,173,76,6.061378002166748],[116,173,77,6.080756187438965],[116,173,78,6.0968451499938965],[116,173,79,6.103983402252197],[116,174,64,6.05026912689209],[116,174,65,6.060091018676758],[116,174,66,6.061452865600586],[116,174,67,6.054780006408691],[116,174,68,6.046853065490723],[116,174,69,6.040349006652832],[116,174,70,6.036932468414307],[116,174,71,6.034491062164307],[116,174,72,6.033131122589111],[116,174,73,6.036201000213623],[116,174,74,6.041961669921875],[116,174,75,6.048854351043701],[116,174,76,6.061378002166748],[116,174,77,6.080756187438965],[116,174,78,6.0968451499938965],[116,174,79,6.103983402252197],[116,175,64,6.05026912689209],[116,175,65,6.060091018676758],[116,175,66,6.061452865600586],[116,175,67,6.054780006408691],[116,175,68,6.046853065490723],[116,175,69,6.040349006652832],[116,175,70,6.036932468414307],[116,175,71,6.034491062164307],[116,175,72,6.033131122589111],[116,175,73,6.036201000213623],[116,175,74,6.041961669921875],[116,175,75,6.048854351043701],[116,175,76,6.061378002166748],[116,175,77,6.080756187438965],[116,175,78,6.0968451499938965],[116,175,79,6.103983402252197],[116,176,64,6.05026912689209],[116,176,65,6.060091018676758],[116,176,66,6.061452865600586],[116,176,67,6.054780006408691],[116,176,68,6.046853065490723],[116,176,69,6.040349006652832],[116,176,70,6.036932468414307],[116,176,71,6.034491062164307],[116,176,72,6.033131122589111],[116,176,73,6.036201000213623],[116,176,74,6.041961669921875],[116,176,75,6.048854351043701],[116,176,76,6.061378002166748],[116,176,77,6.080756187438965],[116,176,78,6.0968451499938965],[116,176,79,6.103983402252197],[116,177,64,6.05026912689209],[116,177,65,6.060091018676758],[116,177,66,6.061452865600586],[116,177,67,6.054780006408691],[116,177,68,6.046853065490723],[116,177,69,6.040349006652832],[116,177,70,6.036932468414307],[116,177,71,6.034491062164307],[116,177,72,6.033131122589111],[116,177,73,6.036201000213623],[116,177,74,6.041961669921875],[116,177,75,6.048854351043701],[116,177,76,6.061378002166748],[116,177,77,6.080756187438965],[116,177,78,6.0968451499938965],[116,177,79,6.103983402252197],[116,178,64,6.05026912689209],[116,178,65,6.060091018676758],[116,178,66,6.061452865600586],[116,178,67,6.054780006408691],[116,178,68,6.046853065490723],[116,178,69,6.040349006652832],[116,178,70,6.036932468414307],[116,178,71,6.034491062164307],[116,178,72,6.033131122589111],[116,178,73,6.036201000213623],[116,178,74,6.041961669921875],[116,178,75,6.048854351043701],[116,178,76,6.061378002166748],[116,178,77,6.080756187438965],[116,178,78,6.0968451499938965],[116,178,79,6.103983402252197],[116,179,64,6.05026912689209],[116,179,65,6.060091018676758],[116,179,66,6.061452865600586],[116,179,67,6.054780006408691],[116,179,68,6.046853065490723],[116,179,69,6.040349006652832],[116,179,70,6.036932468414307],[116,179,71,6.034491062164307],[116,179,72,6.033131122589111],[116,179,73,6.036201000213623],[116,179,74,6.041961669921875],[116,179,75,6.048854351043701],[116,179,76,6.061378002166748],[116,179,77,6.080756187438965],[116,179,78,6.0968451499938965],[116,179,79,6.103983402252197],[116,180,64,6.05026912689209],[116,180,65,6.060091018676758],[116,180,66,6.061452865600586],[116,180,67,6.054780006408691],[116,180,68,6.046853065490723],[116,180,69,6.040349006652832],[116,180,70,6.036932468414307],[116,180,71,6.034491062164307],[116,180,72,6.033131122589111],[116,180,73,6.036201000213623],[116,180,74,6.041961669921875],[116,180,75,6.048854351043701],[116,180,76,6.061378002166748],[116,180,77,6.080756187438965],[116,180,78,6.0968451499938965],[116,180,79,6.103983402252197],[116,181,64,6.05026912689209],[116,181,65,6.060091018676758],[116,181,66,6.061452865600586],[116,181,67,6.054780006408691],[116,181,68,6.046853065490723],[116,181,69,6.040349006652832],[116,181,70,6.036932468414307],[116,181,71,6.034491062164307],[116,181,72,6.033131122589111],[116,181,73,6.036201000213623],[116,181,74,6.041961669921875],[116,181,75,6.048854351043701],[116,181,76,6.061378002166748],[116,181,77,6.080756187438965],[116,181,78,6.0968451499938965],[116,181,79,6.103983402252197],[116,182,64,6.05026912689209],[116,182,65,6.060091018676758],[116,182,66,6.061452865600586],[116,182,67,6.054780006408691],[116,182,68,6.046853065490723],[116,182,69,6.040349006652832],[116,182,70,6.036932468414307],[116,182,71,6.034491062164307],[116,182,72,6.033131122589111],[116,182,73,6.036201000213623],[116,182,74,6.041961669921875],[116,182,75,6.048854351043701],[116,182,76,6.061378002166748],[116,182,77,6.080756187438965],[116,182,78,6.0968451499938965],[116,182,79,6.103983402252197],[116,183,64,6.05026912689209],[116,183,65,6.060091018676758],[116,183,66,6.061452865600586],[116,183,67,6.054780006408691],[116,183,68,6.046853065490723],[116,183,69,6.040349006652832],[116,183,70,6.036932468414307],[116,183,71,6.034491062164307],[116,183,72,6.033131122589111],[116,183,73,6.036201000213623],[116,183,74,6.041961669921875],[116,183,75,6.048854351043701],[116,183,76,6.061378002166748],[116,183,77,6.080756187438965],[116,183,78,6.0968451499938965],[116,183,79,6.103983402252197],[116,184,64,6.05026912689209],[116,184,65,6.060091018676758],[116,184,66,6.061452865600586],[116,184,67,6.054780006408691],[116,184,68,6.046853065490723],[116,184,69,6.040349006652832],[116,184,70,6.036932468414307],[116,184,71,6.034491062164307],[116,184,72,6.033131122589111],[116,184,73,6.036201000213623],[116,184,74,6.041961669921875],[116,184,75,6.048854351043701],[116,184,76,6.061378002166748],[116,184,77,6.080756187438965],[116,184,78,6.0968451499938965],[116,184,79,6.103983402252197],[116,185,64,6.05026912689209],[116,185,65,6.060091018676758],[116,185,66,6.061452865600586],[116,185,67,6.054780006408691],[116,185,68,6.046853065490723],[116,185,69,6.040349006652832],[116,185,70,6.036932468414307],[116,185,71,6.034491062164307],[116,185,72,6.033131122589111],[116,185,73,6.036201000213623],[116,185,74,6.041961669921875],[116,185,75,6.048854351043701],[116,185,76,6.061378002166748],[116,185,77,6.080756187438965],[116,185,78,6.0968451499938965],[116,185,79,6.103983402252197],[116,186,64,6.05026912689209],[116,186,65,6.060091018676758],[116,186,66,6.061452865600586],[116,186,67,6.054780006408691],[116,186,68,6.046853065490723],[116,186,69,6.040349006652832],[116,186,70,6.036932468414307],[116,186,71,6.034491062164307],[116,186,72,6.033131122589111],[116,186,73,6.036201000213623],[116,186,74,6.041961669921875],[116,186,75,6.048854351043701],[116,186,76,6.061378002166748],[116,186,77,6.080756187438965],[116,186,78,6.0968451499938965],[116,186,79,6.103983402252197],[116,187,64,6.05026912689209],[116,187,65,6.060091018676758],[116,187,66,6.061452865600586],[116,187,67,6.054780006408691],[116,187,68,6.046853065490723],[116,187,69,6.040349006652832],[116,187,70,6.036932468414307],[116,187,71,6.034491062164307],[116,187,72,6.033131122589111],[116,187,73,6.036201000213623],[116,187,74,6.041961669921875],[116,187,75,6.048854351043701],[116,187,76,6.061378002166748],[116,187,77,6.080756187438965],[116,187,78,6.0968451499938965],[116,187,79,6.103983402252197],[116,188,64,6.05026912689209],[116,188,65,6.060091018676758],[116,188,66,6.061452865600586],[116,188,67,6.054780006408691],[116,188,68,6.046853065490723],[116,188,69,6.040349006652832],[116,188,70,6.036932468414307],[116,188,71,6.034491062164307],[116,188,72,6.033131122589111],[116,188,73,6.036201000213623],[116,188,74,6.041961669921875],[116,188,75,6.048854351043701],[116,188,76,6.061378002166748],[116,188,77,6.080756187438965],[116,188,78,6.0968451499938965],[116,188,79,6.103983402252197],[116,189,64,6.05026912689209],[116,189,65,6.060091018676758],[116,189,66,6.061452865600586],[116,189,67,6.054780006408691],[116,189,68,6.046853065490723],[116,189,69,6.040349006652832],[116,189,70,6.036932468414307],[116,189,71,6.034491062164307],[116,189,72,6.033131122589111],[116,189,73,6.036201000213623],[116,189,74,6.041961669921875],[116,189,75,6.048854351043701],[116,189,76,6.061378002166748],[116,189,77,6.080756187438965],[116,189,78,6.0968451499938965],[116,189,79,6.103983402252197],[116,190,64,6.05026912689209],[116,190,65,6.060091018676758],[116,190,66,6.061452865600586],[116,190,67,6.054780006408691],[116,190,68,6.046853065490723],[116,190,69,6.040349006652832],[116,190,70,6.036932468414307],[116,190,71,6.034491062164307],[116,190,72,6.033131122589111],[116,190,73,6.036201000213623],[116,190,74,6.041961669921875],[116,190,75,6.048854351043701],[116,190,76,6.061378002166748],[116,190,77,6.080756187438965],[116,190,78,6.0968451499938965],[116,190,79,6.103983402252197],[116,191,64,6.05026912689209],[116,191,65,6.060091018676758],[116,191,66,6.061452865600586],[116,191,67,6.054780006408691],[116,191,68,6.046853065490723],[116,191,69,6.040349006652832],[116,191,70,6.036932468414307],[116,191,71,6.034491062164307],[116,191,72,6.033131122589111],[116,191,73,6.036201000213623],[116,191,74,6.041961669921875],[116,191,75,6.048854351043701],[116,191,76,6.061378002166748],[116,191,77,6.080756187438965],[116,191,78,6.0968451499938965],[116,191,79,6.103983402252197],[116,192,64,6.05026912689209],[116,192,65,6.060091018676758],[116,192,66,6.061452865600586],[116,192,67,6.054780006408691],[116,192,68,6.046853065490723],[116,192,69,6.040349006652832],[116,192,70,6.036932468414307],[116,192,71,6.034491062164307],[116,192,72,6.033131122589111],[116,192,73,6.036201000213623],[116,192,74,6.041961669921875],[116,192,75,6.048854351043701],[116,192,76,6.061378002166748],[116,192,77,6.080756187438965],[116,192,78,6.0968451499938965],[116,192,79,6.103983402252197],[116,193,64,6.05026912689209],[116,193,65,6.060091018676758],[116,193,66,6.061452865600586],[116,193,67,6.054780006408691],[116,193,68,6.046853065490723],[116,193,69,6.040349006652832],[116,193,70,6.036932468414307],[116,193,71,6.034491062164307],[116,193,72,6.033131122589111],[116,193,73,6.036201000213623],[116,193,74,6.041961669921875],[116,193,75,6.048854351043701],[116,193,76,6.061378002166748],[116,193,77,6.080756187438965],[116,193,78,6.0968451499938965],[116,193,79,6.103983402252197],[116,194,64,6.05026912689209],[116,194,65,6.060091018676758],[116,194,66,6.061452865600586],[116,194,67,6.054780006408691],[116,194,68,6.046853065490723],[116,194,69,6.040349006652832],[116,194,70,6.036932468414307],[116,194,71,6.034491062164307],[116,194,72,6.033131122589111],[116,194,73,6.036201000213623],[116,194,74,6.041961669921875],[116,194,75,6.048854351043701],[116,194,76,6.061378002166748],[116,194,77,6.080756187438965],[116,194,78,6.0968451499938965],[116,194,79,6.103983402252197],[116,195,64,6.05026912689209],[116,195,65,6.060091018676758],[116,195,66,6.061452865600586],[116,195,67,6.054780006408691],[116,195,68,6.046853065490723],[116,195,69,6.040349006652832],[116,195,70,6.036932468414307],[116,195,71,6.034491062164307],[116,195,72,6.033131122589111],[116,195,73,6.036201000213623],[116,195,74,6.041961669921875],[116,195,75,6.048854351043701],[116,195,76,6.061378002166748],[116,195,77,6.080756187438965],[116,195,78,6.0968451499938965],[116,195,79,6.103983402252197],[116,196,64,6.05026912689209],[116,196,65,6.060091018676758],[116,196,66,6.061452865600586],[116,196,67,6.054780006408691],[116,196,68,6.046853065490723],[116,196,69,6.040349006652832],[116,196,70,6.036932468414307],[116,196,71,6.034491062164307],[116,196,72,6.033131122589111],[116,196,73,6.036201000213623],[116,196,74,6.041961669921875],[116,196,75,6.048854351043701],[116,196,76,6.061378002166748],[116,196,77,6.080756187438965],[116,196,78,6.0968451499938965],[116,196,79,6.103983402252197],[116,197,64,6.05026912689209],[116,197,65,6.060091018676758],[116,197,66,6.061452865600586],[116,197,67,6.054780006408691],[116,197,68,6.046853065490723],[116,197,69,6.040349006652832],[116,197,70,6.036932468414307],[116,197,71,6.034491062164307],[116,197,72,6.033131122589111],[116,197,73,6.036201000213623],[116,197,74,6.041961669921875],[116,197,75,6.048854351043701],[116,197,76,6.061378002166748],[116,197,77,6.080756187438965],[116,197,78,6.0968451499938965],[116,197,79,6.103983402252197],[116,198,64,6.05026912689209],[116,198,65,6.060091018676758],[116,198,66,6.061452865600586],[116,198,67,6.054780006408691],[116,198,68,6.046853065490723],[116,198,69,6.040349006652832],[116,198,70,6.036932468414307],[116,198,71,6.034491062164307],[116,198,72,6.033131122589111],[116,198,73,6.036201000213623],[116,198,74,6.041961669921875],[116,198,75,6.048854351043701],[116,198,76,6.061378002166748],[116,198,77,6.080756187438965],[116,198,78,6.0968451499938965],[116,198,79,6.103983402252197],[116,199,64,6.05026912689209],[116,199,65,6.060091018676758],[116,199,66,6.061452865600586],[116,199,67,6.054780006408691],[116,199,68,6.046853065490723],[116,199,69,6.040349006652832],[116,199,70,6.036932468414307],[116,199,71,6.034491062164307],[116,199,72,6.033131122589111],[116,199,73,6.036201000213623],[116,199,74,6.041961669921875],[116,199,75,6.048854351043701],[116,199,76,6.061378002166748],[116,199,77,6.080756187438965],[116,199,78,6.0968451499938965],[116,199,79,6.103983402252197],[116,200,64,6.05026912689209],[116,200,65,6.060091018676758],[116,200,66,6.061452865600586],[116,200,67,6.054780006408691],[116,200,68,6.046853065490723],[116,200,69,6.040349006652832],[116,200,70,6.036932468414307],[116,200,71,6.034491062164307],[116,200,72,6.033131122589111],[116,200,73,6.036201000213623],[116,200,74,6.041961669921875],[116,200,75,6.048854351043701],[116,200,76,6.061378002166748],[116,200,77,6.080756187438965],[116,200,78,6.0968451499938965],[116,200,79,6.103983402252197],[116,201,64,6.05026912689209],[116,201,65,6.060091018676758],[116,201,66,6.061452865600586],[116,201,67,6.054780006408691],[116,201,68,6.046853065490723],[116,201,69,6.040349006652832],[116,201,70,6.036932468414307],[116,201,71,6.034491062164307],[116,201,72,6.033131122589111],[116,201,73,6.036201000213623],[116,201,74,6.041961669921875],[116,201,75,6.048854351043701],[116,201,76,6.061378002166748],[116,201,77,6.080756187438965],[116,201,78,6.0968451499938965],[116,201,79,6.103983402252197],[116,202,64,6.05026912689209],[116,202,65,6.060091018676758],[116,202,66,6.061452865600586],[116,202,67,6.054780006408691],[116,202,68,6.046853065490723],[116,202,69,6.040349006652832],[116,202,70,6.036932468414307],[116,202,71,6.034491062164307],[116,202,72,6.033131122589111],[116,202,73,6.036201000213623],[116,202,74,6.041961669921875],[116,202,75,6.048854351043701],[116,202,76,6.061378002166748],[116,202,77,6.080756187438965],[116,202,78,6.0968451499938965],[116,202,79,6.103983402252197],[116,203,64,6.05026912689209],[116,203,65,6.060091018676758],[116,203,66,6.061452865600586],[116,203,67,6.054780006408691],[116,203,68,6.046853065490723],[116,203,69,6.040349006652832],[116,203,70,6.036932468414307],[116,203,71,6.034491062164307],[116,203,72,6.033131122589111],[116,203,73,6.036201000213623],[116,203,74,6.041961669921875],[116,203,75,6.048854351043701],[116,203,76,6.061378002166748],[116,203,77,6.080756187438965],[116,203,78,6.0968451499938965],[116,203,79,6.103983402252197],[116,204,64,6.05026912689209],[116,204,65,6.060091018676758],[116,204,66,6.061452865600586],[116,204,67,6.054780006408691],[116,204,68,6.046853065490723],[116,204,69,6.040349006652832],[116,204,70,6.036932468414307],[116,204,71,6.034491062164307],[116,204,72,6.033131122589111],[116,204,73,6.036201000213623],[116,204,74,6.041961669921875],[116,204,75,6.048854351043701],[116,204,76,6.061378002166748],[116,204,77,6.080756187438965],[116,204,78,6.0968451499938965],[116,204,79,6.103983402252197],[116,205,64,6.05026912689209],[116,205,65,6.060091018676758],[116,205,66,6.061452865600586],[116,205,67,6.054780006408691],[116,205,68,6.046853065490723],[116,205,69,6.040349006652832],[116,205,70,6.036932468414307],[116,205,71,6.034491062164307],[116,205,72,6.033131122589111],[116,205,73,6.036201000213623],[116,205,74,6.041961669921875],[116,205,75,6.048854351043701],[116,205,76,6.061378002166748],[116,205,77,6.080756187438965],[116,205,78,6.0968451499938965],[116,205,79,6.103983402252197],[116,206,64,6.05026912689209],[116,206,65,6.060091018676758],[116,206,66,6.061452865600586],[116,206,67,6.054780006408691],[116,206,68,6.046853065490723],[116,206,69,6.040349006652832],[116,206,70,6.036932468414307],[116,206,71,6.034491062164307],[116,206,72,6.033131122589111],[116,206,73,6.036201000213623],[116,206,74,6.041961669921875],[116,206,75,6.048854351043701],[116,206,76,6.061378002166748],[116,206,77,6.080756187438965],[116,206,78,6.0968451499938965],[116,206,79,6.103983402252197],[116,207,64,6.05026912689209],[116,207,65,6.060091018676758],[116,207,66,6.061452865600586],[116,207,67,6.054780006408691],[116,207,68,6.046853065490723],[116,207,69,6.040349006652832],[116,207,70,6.036932468414307],[116,207,71,6.034491062164307],[116,207,72,6.033131122589111],[116,207,73,6.036201000213623],[116,207,74,6.041961669921875],[116,207,75,6.048854351043701],[116,207,76,6.061378002166748],[116,207,77,6.080756187438965],[116,207,78,6.0968451499938965],[116,207,79,6.103983402252197],[116,208,64,6.05026912689209],[116,208,65,6.060091018676758],[116,208,66,6.061452865600586],[116,208,67,6.054780006408691],[116,208,68,6.046853065490723],[116,208,69,6.040349006652832],[116,208,70,6.036932468414307],[116,208,71,6.034491062164307],[116,208,72,6.033131122589111],[116,208,73,6.036201000213623],[116,208,74,6.041961669921875],[116,208,75,6.048854351043701],[116,208,76,6.061378002166748],[116,208,77,6.080756187438965],[116,208,78,6.0968451499938965],[116,208,79,6.103983402252197],[116,209,64,6.05026912689209],[116,209,65,6.060091018676758],[116,209,66,6.061452865600586],[116,209,67,6.054780006408691],[116,209,68,6.046853065490723],[116,209,69,6.040349006652832],[116,209,70,6.036932468414307],[116,209,71,6.034491062164307],[116,209,72,6.033131122589111],[116,209,73,6.036201000213623],[116,209,74,6.041961669921875],[116,209,75,6.048854351043701],[116,209,76,6.061378002166748],[116,209,77,6.080756187438965],[116,209,78,6.0968451499938965],[116,209,79,6.103983402252197],[116,210,64,6.05026912689209],[116,210,65,6.060091018676758],[116,210,66,6.061452865600586],[116,210,67,6.054780006408691],[116,210,68,6.046853065490723],[116,210,69,6.040349006652832],[116,210,70,6.036932468414307],[116,210,71,6.034491062164307],[116,210,72,6.033131122589111],[116,210,73,6.036201000213623],[116,210,74,6.041961669921875],[116,210,75,6.048854351043701],[116,210,76,6.061378002166748],[116,210,77,6.080756187438965],[116,210,78,6.0968451499938965],[116,210,79,6.103983402252197],[116,211,64,6.05026912689209],[116,211,65,6.060091018676758],[116,211,66,6.061452865600586],[116,211,67,6.054780006408691],[116,211,68,6.046853065490723],[116,211,69,6.040349006652832],[116,211,70,6.036932468414307],[116,211,71,6.034491062164307],[116,211,72,6.033131122589111],[116,211,73,6.036201000213623],[116,211,74,6.041961669921875],[116,211,75,6.048854351043701],[116,211,76,6.061378002166748],[116,211,77,6.080756187438965],[116,211,78,6.0968451499938965],[116,211,79,6.103983402252197],[116,212,64,6.05026912689209],[116,212,65,6.060091018676758],[116,212,66,6.061452865600586],[116,212,67,6.054780006408691],[116,212,68,6.046853065490723],[116,212,69,6.040349006652832],[116,212,70,6.036932468414307],[116,212,71,6.034491062164307],[116,212,72,6.033131122589111],[116,212,73,6.036201000213623],[116,212,74,6.041961669921875],[116,212,75,6.048854351043701],[116,212,76,6.061378002166748],[116,212,77,6.080756187438965],[116,212,78,6.0968451499938965],[116,212,79,6.103983402252197],[116,213,64,6.05026912689209],[116,213,65,6.060091018676758],[116,213,66,6.061452865600586],[116,213,67,6.054780006408691],[116,213,68,6.046853065490723],[116,213,69,6.040349006652832],[116,213,70,6.036932468414307],[116,213,71,6.034491062164307],[116,213,72,6.033131122589111],[116,213,73,6.036201000213623],[116,213,74,6.041961669921875],[116,213,75,6.048854351043701],[116,213,76,6.061378002166748],[116,213,77,6.080756187438965],[116,213,78,6.0968451499938965],[116,213,79,6.103983402252197],[116,214,64,6.05026912689209],[116,214,65,6.060091018676758],[116,214,66,6.061452865600586],[116,214,67,6.054780006408691],[116,214,68,6.046853065490723],[116,214,69,6.040349006652832],[116,214,70,6.036932468414307],[116,214,71,6.034491062164307],[116,214,72,6.033131122589111],[116,214,73,6.036201000213623],[116,214,74,6.041961669921875],[116,214,75,6.048854351043701],[116,214,76,6.061378002166748],[116,214,77,6.080756187438965],[116,214,78,6.0968451499938965],[116,214,79,6.103983402252197],[116,215,64,6.05026912689209],[116,215,65,6.060091018676758],[116,215,66,6.061452865600586],[116,215,67,6.054780006408691],[116,215,68,6.046853065490723],[116,215,69,6.040349006652832],[116,215,70,6.036932468414307],[116,215,71,6.034491062164307],[116,215,72,6.033131122589111],[116,215,73,6.036201000213623],[116,215,74,6.041961669921875],[116,215,75,6.048854351043701],[116,215,76,6.061378002166748],[116,215,77,6.080756187438965],[116,215,78,6.0968451499938965],[116,215,79,6.103983402252197],[116,216,64,6.05026912689209],[116,216,65,6.060091018676758],[116,216,66,6.061452865600586],[116,216,67,6.054780006408691],[116,216,68,6.046853065490723],[116,216,69,6.040349006652832],[116,216,70,6.036932468414307],[116,216,71,6.034491062164307],[116,216,72,6.033131122589111],[116,216,73,6.036201000213623],[116,216,74,6.041961669921875],[116,216,75,6.048854351043701],[116,216,76,6.061378002166748],[116,216,77,6.080756187438965],[116,216,78,6.0968451499938965],[116,216,79,6.103983402252197],[116,217,64,6.05026912689209],[116,217,65,6.060091018676758],[116,217,66,6.061452865600586],[116,217,67,6.054780006408691],[116,217,68,6.046853065490723],[116,217,69,6.040349006652832],[116,217,70,6.036932468414307],[116,217,71,6.034491062164307],[116,217,72,6.033131122589111],[116,217,73,6.036201000213623],[116,217,74,6.041961669921875],[116,217,75,6.048854351043701],[116,217,76,6.061378002166748],[116,217,77,6.080756187438965],[116,217,78,6.0968451499938965],[116,217,79,6.103983402252197],[116,218,64,6.05026912689209],[116,218,65,6.060091018676758],[116,218,66,6.061452865600586],[116,218,67,6.054780006408691],[116,218,68,6.046853065490723],[116,218,69,6.040349006652832],[116,218,70,6.036932468414307],[116,218,71,6.034491062164307],[116,218,72,6.033131122589111],[116,218,73,6.036201000213623],[116,218,74,6.041961669921875],[116,218,75,6.048854351043701],[116,218,76,6.061378002166748],[116,218,77,6.080756187438965],[116,218,78,6.0968451499938965],[116,218,79,6.103983402252197],[116,219,64,6.05026912689209],[116,219,65,6.060091018676758],[116,219,66,6.061452865600586],[116,219,67,6.054780006408691],[116,219,68,6.046853065490723],[116,219,69,6.040349006652832],[116,219,70,6.036932468414307],[116,219,71,6.034491062164307],[116,219,72,6.033131122589111],[116,219,73,6.036201000213623],[116,219,74,6.041961669921875],[116,219,75,6.048854351043701],[116,219,76,6.061378002166748],[116,219,77,6.080756187438965],[116,219,78,6.0968451499938965],[116,219,79,6.103983402252197],[116,220,64,6.05026912689209],[116,220,65,6.060091018676758],[116,220,66,6.061452865600586],[116,220,67,6.054780006408691],[116,220,68,6.046853065490723],[116,220,69,6.040349006652832],[116,220,70,6.036932468414307],[116,220,71,6.034491062164307],[116,220,72,6.033131122589111],[116,220,73,6.036201000213623],[116,220,74,6.041961669921875],[116,220,75,6.048854351043701],[116,220,76,6.061378002166748],[116,220,77,6.080756187438965],[116,220,78,6.0968451499938965],[116,220,79,6.103983402252197],[116,221,64,6.05026912689209],[116,221,65,6.060091018676758],[116,221,66,6.061452865600586],[116,221,67,6.054780006408691],[116,221,68,6.046853065490723],[116,221,69,6.040349006652832],[116,221,70,6.036932468414307],[116,221,71,6.034491062164307],[116,221,72,6.033131122589111],[116,221,73,6.036201000213623],[116,221,74,6.041961669921875],[116,221,75,6.048854351043701],[116,221,76,6.061378002166748],[116,221,77,6.080756187438965],[116,221,78,6.0968451499938965],[116,221,79,6.103983402252197],[116,222,64,6.05026912689209],[116,222,65,6.060091018676758],[116,222,66,6.061452865600586],[116,222,67,6.054780006408691],[116,222,68,6.046853065490723],[116,222,69,6.040349006652832],[116,222,70,6.036932468414307],[116,222,71,6.034491062164307],[116,222,72,6.033131122589111],[116,222,73,6.036201000213623],[116,222,74,6.041961669921875],[116,222,75,6.048854351043701],[116,222,76,6.061378002166748],[116,222,77,6.080756187438965],[116,222,78,6.0968451499938965],[116,222,79,6.103983402252197],[116,223,64,6.05026912689209],[116,223,65,6.060091018676758],[116,223,66,6.061452865600586],[116,223,67,6.054780006408691],[116,223,68,6.046853065490723],[116,223,69,6.040349006652832],[116,223,70,6.036932468414307],[116,223,71,6.034491062164307],[116,223,72,6.033131122589111],[116,223,73,6.036201000213623],[116,223,74,6.041961669921875],[116,223,75,6.048854351043701],[116,223,76,6.061378002166748],[116,223,77,6.080756187438965],[116,223,78,6.0968451499938965],[116,223,79,6.103983402252197],[116,224,64,6.05026912689209],[116,224,65,6.060091018676758],[116,224,66,6.061452865600586],[116,224,67,6.054780006408691],[116,224,68,6.046853065490723],[116,224,69,6.040349006652832],[116,224,70,6.036932468414307],[116,224,71,6.034491062164307],[116,224,72,6.033131122589111],[116,224,73,6.036201000213623],[116,224,74,6.041961669921875],[116,224,75,6.048854351043701],[116,224,76,6.061378002166748],[116,224,77,6.080756187438965],[116,224,78,6.0968451499938965],[116,224,79,6.103983402252197],[116,225,64,6.05026912689209],[116,225,65,6.060091018676758],[116,225,66,6.061452865600586],[116,225,67,6.054780006408691],[116,225,68,6.046853065490723],[116,225,69,6.040349006652832],[116,225,70,6.036932468414307],[116,225,71,6.034491062164307],[116,225,72,6.033131122589111],[116,225,73,6.036201000213623],[116,225,74,6.041961669921875],[116,225,75,6.048854351043701],[116,225,76,6.061378002166748],[116,225,77,6.080756187438965],[116,225,78,6.0968451499938965],[116,225,79,6.103983402252197],[116,226,64,6.05026912689209],[116,226,65,6.060091018676758],[116,226,66,6.061452865600586],[116,226,67,6.054780006408691],[116,226,68,6.046853065490723],[116,226,69,6.040349006652832],[116,226,70,6.036932468414307],[116,226,71,6.034491062164307],[116,226,72,6.033131122589111],[116,226,73,6.036201000213623],[116,226,74,6.041961669921875],[116,226,75,6.048854351043701],[116,226,76,6.061378002166748],[116,226,77,6.080756187438965],[116,226,78,6.0968451499938965],[116,226,79,6.103983402252197],[116,227,64,6.05026912689209],[116,227,65,6.060091018676758],[116,227,66,6.061452865600586],[116,227,67,6.054780006408691],[116,227,68,6.046853065490723],[116,227,69,6.040349006652832],[116,227,70,6.036932468414307],[116,227,71,6.034491062164307],[116,227,72,6.033131122589111],[116,227,73,6.036201000213623],[116,227,74,6.041961669921875],[116,227,75,6.048854351043701],[116,227,76,6.061378002166748],[116,227,77,6.080756187438965],[116,227,78,6.0968451499938965],[116,227,79,6.103983402252197],[116,228,64,6.05026912689209],[116,228,65,6.060091018676758],[116,228,66,6.061452865600586],[116,228,67,6.054780006408691],[116,228,68,6.046853065490723],[116,228,69,6.040349006652832],[116,228,70,6.036932468414307],[116,228,71,6.034491062164307],[116,228,72,6.033131122589111],[116,228,73,6.036201000213623],[116,228,74,6.041961669921875],[116,228,75,6.048854351043701],[116,228,76,6.061378002166748],[116,228,77,6.080756187438965],[116,228,78,6.0968451499938965],[116,228,79,6.103983402252197],[116,229,64,6.05026912689209],[116,229,65,6.060091018676758],[116,229,66,6.061452865600586],[116,229,67,6.054780006408691],[116,229,68,6.046853065490723],[116,229,69,6.040349006652832],[116,229,70,6.036932468414307],[116,229,71,6.034491062164307],[116,229,72,6.033131122589111],[116,229,73,6.036201000213623],[116,229,74,6.041961669921875],[116,229,75,6.048854351043701],[116,229,76,6.061378002166748],[116,229,77,6.080756187438965],[116,229,78,6.0968451499938965],[116,229,79,6.103983402252197],[116,230,64,6.05026912689209],[116,230,65,6.060091018676758],[116,230,66,6.061452865600586],[116,230,67,6.054780006408691],[116,230,68,6.046853065490723],[116,230,69,6.040349006652832],[116,230,70,6.036932468414307],[116,230,71,6.034491062164307],[116,230,72,6.033131122589111],[116,230,73,6.036201000213623],[116,230,74,6.041961669921875],[116,230,75,6.048854351043701],[116,230,76,6.061378002166748],[116,230,77,6.080756187438965],[116,230,78,6.0968451499938965],[116,230,79,6.103983402252197],[116,231,64,6.05026912689209],[116,231,65,6.060091018676758],[116,231,66,6.061452865600586],[116,231,67,6.054780006408691],[116,231,68,6.046853065490723],[116,231,69,6.040349006652832],[116,231,70,6.036932468414307],[116,231,71,6.034491062164307],[116,231,72,6.033131122589111],[116,231,73,6.036201000213623],[116,231,74,6.041961669921875],[116,231,75,6.048854351043701],[116,231,76,6.061378002166748],[116,231,77,6.080756187438965],[116,231,78,6.0968451499938965],[116,231,79,6.103983402252197],[116,232,64,6.05026912689209],[116,232,65,6.060091018676758],[116,232,66,6.061452865600586],[116,232,67,6.054780006408691],[116,232,68,6.046853065490723],[116,232,69,6.040349006652832],[116,232,70,6.036932468414307],[116,232,71,6.034491062164307],[116,232,72,6.033131122589111],[116,232,73,6.036201000213623],[116,232,74,6.041961669921875],[116,232,75,6.048854351043701],[116,232,76,6.061378002166748],[116,232,77,6.080756187438965],[116,232,78,6.0968451499938965],[116,232,79,6.103983402252197],[116,233,64,6.05026912689209],[116,233,65,6.060091018676758],[116,233,66,6.061452865600586],[116,233,67,6.054780006408691],[116,233,68,6.046853065490723],[116,233,69,6.040349006652832],[116,233,70,6.036932468414307],[116,233,71,6.034491062164307],[116,233,72,6.033131122589111],[116,233,73,6.036201000213623],[116,233,74,6.041961669921875],[116,233,75,6.048854351043701],[116,233,76,6.061378002166748],[116,233,77,6.080756187438965],[116,233,78,6.0968451499938965],[116,233,79,6.103983402252197],[116,234,64,6.05026912689209],[116,234,65,6.060091018676758],[116,234,66,6.061452865600586],[116,234,67,6.054780006408691],[116,234,68,6.046853065490723],[116,234,69,6.040349006652832],[116,234,70,6.036932468414307],[116,234,71,6.034491062164307],[116,234,72,6.033131122589111],[116,234,73,6.036201000213623],[116,234,74,6.041961669921875],[116,234,75,6.048854351043701],[116,234,76,6.061378002166748],[116,234,77,6.080756187438965],[116,234,78,6.0968451499938965],[116,234,79,6.103983402252197],[116,235,64,6.05026912689209],[116,235,65,6.060091018676758],[116,235,66,6.061452865600586],[116,235,67,6.054780006408691],[116,235,68,6.046853065490723],[116,235,69,6.040349006652832],[116,235,70,6.036932468414307],[116,235,71,6.034491062164307],[116,235,72,6.033131122589111],[116,235,73,6.036201000213623],[116,235,74,6.041961669921875],[116,235,75,6.048854351043701],[116,235,76,6.061378002166748],[116,235,77,6.080756187438965],[116,235,78,6.0968451499938965],[116,235,79,6.103983402252197],[116,236,64,6.05026912689209],[116,236,65,6.060091018676758],[116,236,66,6.061452865600586],[116,236,67,6.054780006408691],[116,236,68,6.046853065490723],[116,236,69,6.040349006652832],[116,236,70,6.036932468414307],[116,236,71,6.034491062164307],[116,236,72,6.033131122589111],[116,236,73,6.036201000213623],[116,236,74,6.041961669921875],[116,236,75,6.048854351043701],[116,236,76,6.061378002166748],[116,236,77,6.080756187438965],[116,236,78,6.0968451499938965],[116,236,79,6.103983402252197],[116,237,64,6.05026912689209],[116,237,65,6.060091018676758],[116,237,66,6.061452865600586],[116,237,67,6.054780006408691],[116,237,68,6.046853065490723],[116,237,69,6.040349006652832],[116,237,70,6.036932468414307],[116,237,71,6.034491062164307],[116,237,72,6.033131122589111],[116,237,73,6.036201000213623],[116,237,74,6.041961669921875],[116,237,75,6.048854351043701],[116,237,76,6.061378002166748],[116,237,77,6.080756187438965],[116,237,78,6.0968451499938965],[116,237,79,6.103983402252197],[116,238,64,6.05026912689209],[116,238,65,6.060091018676758],[116,238,66,6.061452865600586],[116,238,67,6.054780006408691],[116,238,68,6.046853065490723],[116,238,69,6.040349006652832],[116,238,70,6.036932468414307],[116,238,71,6.034491062164307],[116,238,72,6.033131122589111],[116,238,73,6.036201000213623],[116,238,74,6.041961669921875],[116,238,75,6.048854351043701],[116,238,76,6.061378002166748],[116,238,77,6.080756187438965],[116,238,78,6.0968451499938965],[116,238,79,6.103983402252197],[116,239,64,6.05026912689209],[116,239,65,6.060091018676758],[116,239,66,6.061452865600586],[116,239,67,6.054780006408691],[116,239,68,6.046853065490723],[116,239,69,6.040349006652832],[116,239,70,6.036932468414307],[116,239,71,6.034491062164307],[116,239,72,6.033131122589111],[116,239,73,6.036201000213623],[116,239,74,6.041961669921875],[116,239,75,6.048854351043701],[116,239,76,6.061378002166748],[116,239,77,6.080756187438965],[116,239,78,6.0968451499938965],[116,239,79,6.103983402252197],[116,240,64,6.05026912689209],[116,240,65,6.060091018676758],[116,240,66,6.061452865600586],[116,240,67,6.054780006408691],[116,240,68,6.046853065490723],[116,240,69,6.040349006652832],[116,240,70,6.036932468414307],[116,240,71,6.034491062164307],[116,240,72,6.033131122589111],[116,240,73,6.036201000213623],[116,240,74,6.041961669921875],[116,240,75,6.048854351043701],[116,240,76,6.061378002166748],[116,240,77,6.080756187438965],[116,240,78,6.0968451499938965],[116,240,79,6.103983402252197],[116,241,64,6.05026912689209],[116,241,65,6.060091018676758],[116,241,66,6.061452865600586],[116,241,67,6.054780006408691],[116,241,68,6.046853065490723],[116,241,69,6.040349006652832],[116,241,70,6.036932468414307],[116,241,71,6.034491062164307],[116,241,72,6.033131122589111],[116,241,73,6.036201000213623],[116,241,74,6.041961669921875],[116,241,75,6.048854351043701],[116,241,76,6.061378002166748],[116,241,77,6.080756187438965],[116,241,78,6.0968451499938965],[116,241,79,6.103983402252197],[116,242,64,6.05026912689209],[116,242,65,6.060091018676758],[116,242,66,6.061452865600586],[116,242,67,6.054780006408691],[116,242,68,6.046853065490723],[116,242,69,6.040349006652832],[116,242,70,6.036932468414307],[116,242,71,6.034491062164307],[116,242,72,6.033131122589111],[116,242,73,6.036201000213623],[116,242,74,6.041961669921875],[116,242,75,6.048854351043701],[116,242,76,6.061378002166748],[116,242,77,6.080756187438965],[116,242,78,6.0968451499938965],[116,242,79,6.103983402252197],[116,243,64,6.05026912689209],[116,243,65,6.060091018676758],[116,243,66,6.061452865600586],[116,243,67,6.054780006408691],[116,243,68,6.046853065490723],[116,243,69,6.040349006652832],[116,243,70,6.036932468414307],[116,243,71,6.034491062164307],[116,243,72,6.033131122589111],[116,243,73,6.036201000213623],[116,243,74,6.041961669921875],[116,243,75,6.048854351043701],[116,243,76,6.061378002166748],[116,243,77,6.080756187438965],[116,243,78,6.0968451499938965],[116,243,79,6.103983402252197],[116,244,64,6.05026912689209],[116,244,65,6.060091018676758],[116,244,66,6.061452865600586],[116,244,67,6.054780006408691],[116,244,68,6.046853065490723],[116,244,69,6.040349006652832],[116,244,70,6.036932468414307],[116,244,71,6.034491062164307],[116,244,72,6.033131122589111],[116,244,73,6.036201000213623],[116,244,74,6.041961669921875],[116,244,75,6.048854351043701],[116,244,76,6.061378002166748],[116,244,77,6.080756187438965],[116,244,78,6.0968451499938965],[116,244,79,6.103983402252197],[116,245,64,6.05026912689209],[116,245,65,6.060091018676758],[116,245,66,6.061452865600586],[116,245,67,6.054780006408691],[116,245,68,6.046853065490723],[116,245,69,6.040349006652832],[116,245,70,6.036932468414307],[116,245,71,6.034491062164307],[116,245,72,6.033131122589111],[116,245,73,6.036201000213623],[116,245,74,6.041961669921875],[116,245,75,6.048854351043701],[116,245,76,6.061378002166748],[116,245,77,6.080756187438965],[116,245,78,6.0968451499938965],[116,245,79,6.103983402252197],[116,246,64,6.05026912689209],[116,246,65,6.060091018676758],[116,246,66,6.061452865600586],[116,246,67,6.054780006408691],[116,246,68,6.046853065490723],[116,246,69,6.040349006652832],[116,246,70,6.036932468414307],[116,246,71,6.034491062164307],[116,246,72,6.033131122589111],[116,246,73,6.036201000213623],[116,246,74,6.041961669921875],[116,246,75,6.048854351043701],[116,246,76,6.061378002166748],[116,246,77,6.080756187438965],[116,246,78,6.0968451499938965],[116,246,79,6.103983402252197],[116,247,64,6.05026912689209],[116,247,65,6.060091018676758],[116,247,66,6.061452865600586],[116,247,67,6.054780006408691],[116,247,68,6.046853065490723],[116,247,69,6.040349006652832],[116,247,70,6.036932468414307],[116,247,71,6.034491062164307],[116,247,72,6.033131122589111],[116,247,73,6.036201000213623],[116,247,74,6.041961669921875],[116,247,75,6.048854351043701],[116,247,76,6.061378002166748],[116,247,77,6.080756187438965],[116,247,78,6.0968451499938965],[116,247,79,6.103983402252197],[116,248,64,6.05026912689209],[116,248,65,6.060091018676758],[116,248,66,6.061452865600586],[116,248,67,6.054780006408691],[116,248,68,6.046853065490723],[116,248,69,6.040349006652832],[116,248,70,6.036932468414307],[116,248,71,6.034491062164307],[116,248,72,6.033131122589111],[116,248,73,6.036201000213623],[116,248,74,6.041961669921875],[116,248,75,6.048854351043701],[116,248,76,6.061378002166748],[116,248,77,6.080756187438965],[116,248,78,6.0968451499938965],[116,248,79,6.103983402252197],[116,249,64,6.05026912689209],[116,249,65,6.060091018676758],[116,249,66,6.061452865600586],[116,249,67,6.054780006408691],[116,249,68,6.046853065490723],[116,249,69,6.040349006652832],[116,249,70,6.036932468414307],[116,249,71,6.034491062164307],[116,249,72,6.033131122589111],[116,249,73,6.036201000213623],[116,249,74,6.041961669921875],[116,249,75,6.048854351043701],[116,249,76,6.061378002166748],[116,249,77,6.080756187438965],[116,249,78,6.0968451499938965],[116,249,79,6.103983402252197],[116,250,64,6.05026912689209],[116,250,65,6.060091018676758],[116,250,66,6.061452865600586],[116,250,67,6.054780006408691],[116,250,68,6.046853065490723],[116,250,69,6.040349006652832],[116,250,70,6.036932468414307],[116,250,71,6.034491062164307],[116,250,72,6.033131122589111],[116,250,73,6.036201000213623],[116,250,74,6.041961669921875],[116,250,75,6.048854351043701],[116,250,76,6.061378002166748],[116,250,77,6.080756187438965],[116,250,78,6.0968451499938965],[116,250,79,6.103983402252197],[116,251,64,6.05026912689209],[116,251,65,6.060091018676758],[116,251,66,6.061452865600586],[116,251,67,6.054780006408691],[116,251,68,6.046853065490723],[116,251,69,6.040349006652832],[116,251,70,6.036932468414307],[116,251,71,6.034491062164307],[116,251,72,6.033131122589111],[116,251,73,6.036201000213623],[116,251,74,6.041961669921875],[116,251,75,6.048854351043701],[116,251,76,6.061378002166748],[116,251,77,6.080756187438965],[116,251,78,6.0968451499938965],[116,251,79,6.103983402252197],[116,252,64,6.05026912689209],[116,252,65,6.060091018676758],[116,252,66,6.061452865600586],[116,252,67,6.054780006408691],[116,252,68,6.046853065490723],[116,252,69,6.040349006652832],[116,252,70,6.036932468414307],[116,252,71,6.034491062164307],[116,252,72,6.033131122589111],[116,252,73,6.036201000213623],[116,252,74,6.041961669921875],[116,252,75,6.048854351043701],[116,252,76,6.061378002166748],[116,252,77,6.080756187438965],[116,252,78,6.0968451499938965],[116,252,79,6.103983402252197],[116,253,64,6.05026912689209],[116,253,65,6.060091018676758],[116,253,66,6.061452865600586],[116,253,67,6.054780006408691],[116,253,68,6.046853065490723],[116,253,69,6.040349006652832],[116,253,70,6.036932468414307],[116,253,71,6.034491062164307],[116,253,72,6.033131122589111],[116,253,73,6.036201000213623],[116,253,74,6.041961669921875],[116,253,75,6.048854351043701],[116,253,76,6.061378002166748],[116,253,77,6.080756187438965],[116,253,78,6.0968451499938965],[116,253,79,6.103983402252197],[116,254,64,6.05026912689209],[116,254,65,6.060091018676758],[116,254,66,6.061452865600586],[116,254,67,6.054780006408691],[116,254,68,6.046853065490723],[116,254,69,6.040349006652832],[116,254,70,6.036932468414307],[116,254,71,6.034491062164307],[116,254,72,6.033131122589111],[116,254,73,6.036201000213623],[116,254,74,6.041961669921875],[116,254,75,6.048854351043701],[116,254,76,6.061378002166748],[116,254,77,6.080756187438965],[116,254,78,6.0968451499938965],[116,254,79,6.103983402252197],[116,255,64,6.05026912689209],[116,255,65,6.060091018676758],[116,255,66,6.061452865600586],[116,255,67,6.054780006408691],[116,255,68,6.046853065490723],[116,255,69,6.040349006652832],[116,255,70,6.036932468414307],[116,255,71,6.034491062164307],[116,255,72,6.033131122589111],[116,255,73,6.036201000213623],[116,255,74,6.041961669921875],[116,255,75,6.048854351043701],[116,255,76,6.061378002166748],[116,255,77,6.080756187438965],[116,255,78,6.0968451499938965],[116,255,79,6.103983402252197],[116,256,64,6.05026912689209],[116,256,65,6.060091018676758],[116,256,66,6.061452865600586],[116,256,67,6.054780006408691],[116,256,68,6.046853065490723],[116,256,69,6.040349006652832],[116,256,70,6.036932468414307],[116,256,71,6.034491062164307],[116,256,72,6.033131122589111],[116,256,73,6.036201000213623],[116,256,74,6.041961669921875],[116,256,75,6.048854351043701],[116,256,76,6.061378002166748],[116,256,77,6.080756187438965],[116,256,78,6.0968451499938965],[116,256,79,6.103983402252197],[116,257,64,6.05026912689209],[116,257,65,6.060091018676758],[116,257,66,6.061452865600586],[116,257,67,6.054780006408691],[116,257,68,6.046853065490723],[116,257,69,6.040349006652832],[116,257,70,6.036932468414307],[116,257,71,6.034491062164307],[116,257,72,6.033131122589111],[116,257,73,6.036201000213623],[116,257,74,6.041961669921875],[116,257,75,6.048854351043701],[116,257,76,6.061378002166748],[116,257,77,6.080756187438965],[116,257,78,6.0968451499938965],[116,257,79,6.103983402252197],[116,258,64,6.05026912689209],[116,258,65,6.060091018676758],[116,258,66,6.061452865600586],[116,258,67,6.054780006408691],[116,258,68,6.046853065490723],[116,258,69,6.040349006652832],[116,258,70,6.036932468414307],[116,258,71,6.034491062164307],[116,258,72,6.033131122589111],[116,258,73,6.036201000213623],[116,258,74,6.041961669921875],[116,258,75,6.048854351043701],[116,258,76,6.061378002166748],[116,258,77,6.080756187438965],[116,258,78,6.0968451499938965],[116,258,79,6.103983402252197],[116,259,64,6.05026912689209],[116,259,65,6.060091018676758],[116,259,66,6.061452865600586],[116,259,67,6.054780006408691],[116,259,68,6.046853065490723],[116,259,69,6.040349006652832],[116,259,70,6.036932468414307],[116,259,71,6.034491062164307],[116,259,72,6.033131122589111],[116,259,73,6.036201000213623],[116,259,74,6.041961669921875],[116,259,75,6.048854351043701],[116,259,76,6.061378002166748],[116,259,77,6.080756187438965],[116,259,78,6.0968451499938965],[116,259,79,6.103983402252197],[116,260,64,6.05026912689209],[116,260,65,6.060091018676758],[116,260,66,6.061452865600586],[116,260,67,6.054780006408691],[116,260,68,6.046853065490723],[116,260,69,6.040349006652832],[116,260,70,6.036932468414307],[116,260,71,6.034491062164307],[116,260,72,6.033131122589111],[116,260,73,6.036201000213623],[116,260,74,6.041961669921875],[116,260,75,6.048854351043701],[116,260,76,6.061378002166748],[116,260,77,6.080756187438965],[116,260,78,6.0968451499938965],[116,260,79,6.103983402252197],[116,261,64,6.05026912689209],[116,261,65,6.060091018676758],[116,261,66,6.061452865600586],[116,261,67,6.054780006408691],[116,261,68,6.046853065490723],[116,261,69,6.040349006652832],[116,261,70,6.036932468414307],[116,261,71,6.034491062164307],[116,261,72,6.033131122589111],[116,261,73,6.036201000213623],[116,261,74,6.041961669921875],[116,261,75,6.048854351043701],[116,261,76,6.061378002166748],[116,261,77,6.080756187438965],[116,261,78,6.0968451499938965],[116,261,79,6.103983402252197],[116,262,64,6.05026912689209],[116,262,65,6.060091018676758],[116,262,66,6.061452865600586],[116,262,67,6.054780006408691],[116,262,68,6.046853065490723],[116,262,69,6.040349006652832],[116,262,70,6.036932468414307],[116,262,71,6.034491062164307],[116,262,72,6.033131122589111],[116,262,73,6.036201000213623],[116,262,74,6.041961669921875],[116,262,75,6.048854351043701],[116,262,76,6.061378002166748],[116,262,77,6.080756187438965],[116,262,78,6.0968451499938965],[116,262,79,6.103983402252197],[116,263,64,6.05026912689209],[116,263,65,6.060091018676758],[116,263,66,6.061452865600586],[116,263,67,6.054780006408691],[116,263,68,6.046853065490723],[116,263,69,6.040349006652832],[116,263,70,6.036932468414307],[116,263,71,6.034491062164307],[116,263,72,6.033131122589111],[116,263,73,6.036201000213623],[116,263,74,6.041961669921875],[116,263,75,6.048854351043701],[116,263,76,6.061378002166748],[116,263,77,6.080756187438965],[116,263,78,6.0968451499938965],[116,263,79,6.103983402252197],[116,264,64,6.05026912689209],[116,264,65,6.060091018676758],[116,264,66,6.061452865600586],[116,264,67,6.054780006408691],[116,264,68,6.046853065490723],[116,264,69,6.040349006652832],[116,264,70,6.036932468414307],[116,264,71,6.034491062164307],[116,264,72,6.033131122589111],[116,264,73,6.036201000213623],[116,264,74,6.041961669921875],[116,264,75,6.048854351043701],[116,264,76,6.061378002166748],[116,264,77,6.080756187438965],[116,264,78,6.0968451499938965],[116,264,79,6.103983402252197],[116,265,64,6.05026912689209],[116,265,65,6.060091018676758],[116,265,66,6.061452865600586],[116,265,67,6.054780006408691],[116,265,68,6.046853065490723],[116,265,69,6.040349006652832],[116,265,70,6.036932468414307],[116,265,71,6.034491062164307],[116,265,72,6.033131122589111],[116,265,73,6.036201000213623],[116,265,74,6.041961669921875],[116,265,75,6.048854351043701],[116,265,76,6.061378002166748],[116,265,77,6.080756187438965],[116,265,78,6.0968451499938965],[116,265,79,6.103983402252197],[116,266,64,6.05026912689209],[116,266,65,6.060091018676758],[116,266,66,6.061452865600586],[116,266,67,6.054780006408691],[116,266,68,6.046853065490723],[116,266,69,6.040349006652832],[116,266,70,6.036932468414307],[116,266,71,6.034491062164307],[116,266,72,6.033131122589111],[116,266,73,6.036201000213623],[116,266,74,6.041961669921875],[116,266,75,6.048854351043701],[116,266,76,6.061378002166748],[116,266,77,6.080756187438965],[116,266,78,6.0968451499938965],[116,266,79,6.103983402252197],[116,267,64,6.05026912689209],[116,267,65,6.060091018676758],[116,267,66,6.061452865600586],[116,267,67,6.054780006408691],[116,267,68,6.046853065490723],[116,267,69,6.040349006652832],[116,267,70,6.036932468414307],[116,267,71,6.034491062164307],[116,267,72,6.033131122589111],[116,267,73,6.036201000213623],[116,267,74,6.041961669921875],[116,267,75,6.048854351043701],[116,267,76,6.061378002166748],[116,267,77,6.080756187438965],[116,267,78,6.0968451499938965],[116,267,79,6.103983402252197],[116,268,64,6.05026912689209],[116,268,65,6.060091018676758],[116,268,66,6.061452865600586],[116,268,67,6.054780006408691],[116,268,68,6.046853065490723],[116,268,69,6.040349006652832],[116,268,70,6.036932468414307],[116,268,71,6.034491062164307],[116,268,72,6.033131122589111],[116,268,73,6.036201000213623],[116,268,74,6.041961669921875],[116,268,75,6.048854351043701],[116,268,76,6.061378002166748],[116,268,77,6.080756187438965],[116,268,78,6.0968451499938965],[116,268,79,6.103983402252197],[116,269,64,6.05026912689209],[116,269,65,6.060091018676758],[116,269,66,6.061452865600586],[116,269,67,6.054780006408691],[116,269,68,6.046853065490723],[116,269,69,6.040349006652832],[116,269,70,6.036932468414307],[116,269,71,6.034491062164307],[116,269,72,6.033131122589111],[116,269,73,6.036201000213623],[116,269,74,6.041961669921875],[116,269,75,6.048854351043701],[116,269,76,6.061378002166748],[116,269,77,6.080756187438965],[116,269,78,6.0968451499938965],[116,269,79,6.103983402252197],[116,270,64,6.05026912689209],[116,270,65,6.060091018676758],[116,270,66,6.061452865600586],[116,270,67,6.054780006408691],[116,270,68,6.046853065490723],[116,270,69,6.040349006652832],[116,270,70,6.036932468414307],[116,270,71,6.034491062164307],[116,270,72,6.033131122589111],[116,270,73,6.036201000213623],[116,270,74,6.041961669921875],[116,270,75,6.048854351043701],[116,270,76,6.061378002166748],[116,270,77,6.080756187438965],[116,270,78,6.0968451499938965],[116,270,79,6.103983402252197],[116,271,64,6.05026912689209],[116,271,65,6.060091018676758],[116,271,66,6.061452865600586],[116,271,67,6.054780006408691],[116,271,68,6.046853065490723],[116,271,69,6.040349006652832],[116,271,70,6.036932468414307],[116,271,71,6.034491062164307],[116,271,72,6.033131122589111],[116,271,73,6.036201000213623],[116,271,74,6.041961669921875],[116,271,75,6.048854351043701],[116,271,76,6.061378002166748],[116,271,77,6.080756187438965],[116,271,78,6.0968451499938965],[116,271,79,6.103983402252197],[116,272,64,6.05026912689209],[116,272,65,6.060091018676758],[116,272,66,6.061452865600586],[116,272,67,6.054780006408691],[116,272,68,6.046853065490723],[116,272,69,6.040349006652832],[116,272,70,6.036932468414307],[116,272,71,6.034491062164307],[116,272,72,6.033131122589111],[116,272,73,6.036201000213623],[116,272,74,6.041961669921875],[116,272,75,6.048854351043701],[116,272,76,6.061378002166748],[116,272,77,6.080756187438965],[116,272,78,6.0968451499938965],[116,272,79,6.103983402252197],[116,273,64,6.05026912689209],[116,273,65,6.060091018676758],[116,273,66,6.061452865600586],[116,273,67,6.054780006408691],[116,273,68,6.046853065490723],[116,273,69,6.040349006652832],[116,273,70,6.036932468414307],[116,273,71,6.034491062164307],[116,273,72,6.033131122589111],[116,273,73,6.036201000213623],[116,273,74,6.041961669921875],[116,273,75,6.048854351043701],[116,273,76,6.061378002166748],[116,273,77,6.080756187438965],[116,273,78,6.0968451499938965],[116,273,79,6.103983402252197],[116,274,64,6.05026912689209],[116,274,65,6.060091018676758],[116,274,66,6.061452865600586],[116,274,67,6.054780006408691],[116,274,68,6.046853065490723],[116,274,69,6.040349006652832],[116,274,70,6.036932468414307],[116,274,71,6.034491062164307],[116,274,72,6.033131122589111],[116,274,73,6.036201000213623],[116,274,74,6.041961669921875],[116,274,75,6.048854351043701],[116,274,76,6.061378002166748],[116,274,77,6.080756187438965],[116,274,78,6.0968451499938965],[116,274,79,6.103983402252197],[116,275,64,6.05026912689209],[116,275,65,6.060091018676758],[116,275,66,6.061452865600586],[116,275,67,6.054780006408691],[116,275,68,6.046853065490723],[116,275,69,6.040349006652832],[116,275,70,6.036932468414307],[116,275,71,6.034491062164307],[116,275,72,6.033131122589111],[116,275,73,6.036201000213623],[116,275,74,6.041961669921875],[116,275,75,6.048854351043701],[116,275,76,6.061378002166748],[116,275,77,6.080756187438965],[116,275,78,6.0968451499938965],[116,275,79,6.103983402252197],[116,276,64,6.05026912689209],[116,276,65,6.060091018676758],[116,276,66,6.061452865600586],[116,276,67,6.054780006408691],[116,276,68,6.046853065490723],[116,276,69,6.040349006652832],[116,276,70,6.036932468414307],[116,276,71,6.034491062164307],[116,276,72,6.033131122589111],[116,276,73,6.036201000213623],[116,276,74,6.041961669921875],[116,276,75,6.048854351043701],[116,276,76,6.061378002166748],[116,276,77,6.080756187438965],[116,276,78,6.0968451499938965],[116,276,79,6.103983402252197],[116,277,64,6.05026912689209],[116,277,65,6.060091018676758],[116,277,66,6.061452865600586],[116,277,67,6.054780006408691],[116,277,68,6.046853065490723],[116,277,69,6.040349006652832],[116,277,70,6.036932468414307],[116,277,71,6.034491062164307],[116,277,72,6.033131122589111],[116,277,73,6.036201000213623],[116,277,74,6.041961669921875],[116,277,75,6.048854351043701],[116,277,76,6.061378002166748],[116,277,77,6.080756187438965],[116,277,78,6.0968451499938965],[116,277,79,6.103983402252197],[116,278,64,6.05026912689209],[116,278,65,6.060091018676758],[116,278,66,6.061452865600586],[116,278,67,6.054780006408691],[116,278,68,6.046853065490723],[116,278,69,6.040349006652832],[116,278,70,6.036932468414307],[116,278,71,6.034491062164307],[116,278,72,6.033131122589111],[116,278,73,6.036201000213623],[116,278,74,6.041961669921875],[116,278,75,6.048854351043701],[116,278,76,6.061378002166748],[116,278,77,6.080756187438965],[116,278,78,6.0968451499938965],[116,278,79,6.103983402252197],[116,279,64,6.05026912689209],[116,279,65,6.060091018676758],[116,279,66,6.061452865600586],[116,279,67,6.054780006408691],[116,279,68,6.046853065490723],[116,279,69,6.040349006652832],[116,279,70,6.036932468414307],[116,279,71,6.034491062164307],[116,279,72,6.033131122589111],[116,279,73,6.036201000213623],[116,279,74,6.041961669921875],[116,279,75,6.048854351043701],[116,279,76,6.061378002166748],[116,279,77,6.080756187438965],[116,279,78,6.0968451499938965],[116,279,79,6.103983402252197],[116,280,64,6.05026912689209],[116,280,65,6.060091018676758],[116,280,66,6.061452865600586],[116,280,67,6.054780006408691],[116,280,68,6.046853065490723],[116,280,69,6.040349006652832],[116,280,70,6.036932468414307],[116,280,71,6.034491062164307],[116,280,72,6.033131122589111],[116,280,73,6.036201000213623],[116,280,74,6.041961669921875],[116,280,75,6.048854351043701],[116,280,76,6.061378002166748],[116,280,77,6.080756187438965],[116,280,78,6.0968451499938965],[116,280,79,6.103983402252197],[116,281,64,6.05026912689209],[116,281,65,6.060091018676758],[116,281,66,6.061452865600586],[116,281,67,6.054780006408691],[116,281,68,6.046853065490723],[116,281,69,6.040349006652832],[116,281,70,6.036932468414307],[116,281,71,6.034491062164307],[116,281,72,6.033131122589111],[116,281,73,6.036201000213623],[116,281,74,6.041961669921875],[116,281,75,6.048854351043701],[116,281,76,6.061378002166748],[116,281,77,6.080756187438965],[116,281,78,6.0968451499938965],[116,281,79,6.103983402252197],[116,282,64,6.05026912689209],[116,282,65,6.060091018676758],[116,282,66,6.061452865600586],[116,282,67,6.054780006408691],[116,282,68,6.046853065490723],[116,282,69,6.040349006652832],[116,282,70,6.036932468414307],[116,282,71,6.034491062164307],[116,282,72,6.033131122589111],[116,282,73,6.036201000213623],[116,282,74,6.041961669921875],[116,282,75,6.048854351043701],[116,282,76,6.061378002166748],[116,282,77,6.080756187438965],[116,282,78,6.0968451499938965],[116,282,79,6.103983402252197],[116,283,64,6.05026912689209],[116,283,65,6.060091018676758],[116,283,66,6.061452865600586],[116,283,67,6.054780006408691],[116,283,68,6.046853065490723],[116,283,69,6.040349006652832],[116,283,70,6.036932468414307],[116,283,71,6.034491062164307],[116,283,72,6.033131122589111],[116,283,73,6.036201000213623],[116,283,74,6.041961669921875],[116,283,75,6.048854351043701],[116,283,76,6.061378002166748],[116,283,77,6.080756187438965],[116,283,78,6.0968451499938965],[116,283,79,6.103983402252197],[116,284,64,6.05026912689209],[116,284,65,6.060091018676758],[116,284,66,6.061452865600586],[116,284,67,6.054780006408691],[116,284,68,6.046853065490723],[116,284,69,6.040349006652832],[116,284,70,6.036932468414307],[116,284,71,6.034491062164307],[116,284,72,6.033131122589111],[116,284,73,6.036201000213623],[116,284,74,6.041961669921875],[116,284,75,6.048854351043701],[116,284,76,6.061378002166748],[116,284,77,6.080756187438965],[116,284,78,6.0968451499938965],[116,284,79,6.103983402252197],[116,285,64,6.05026912689209],[116,285,65,6.060091018676758],[116,285,66,6.061452865600586],[116,285,67,6.054780006408691],[116,285,68,6.046853065490723],[116,285,69,6.040349006652832],[116,285,70,6.036932468414307],[116,285,71,6.034491062164307],[116,285,72,6.033131122589111],[116,285,73,6.036201000213623],[116,285,74,6.041961669921875],[116,285,75,6.048854351043701],[116,285,76,6.061378002166748],[116,285,77,6.080756187438965],[116,285,78,6.0968451499938965],[116,285,79,6.103983402252197],[116,286,64,6.05026912689209],[116,286,65,6.060091018676758],[116,286,66,6.061452865600586],[116,286,67,6.054780006408691],[116,286,68,6.046853065490723],[116,286,69,6.040349006652832],[116,286,70,6.036932468414307],[116,286,71,6.034491062164307],[116,286,72,6.033131122589111],[116,286,73,6.036201000213623],[116,286,74,6.041961669921875],[116,286,75,6.048854351043701],[116,286,76,6.061378002166748],[116,286,77,6.080756187438965],[116,286,78,6.0968451499938965],[116,286,79,6.103983402252197],[116,287,64,6.05026912689209],[116,287,65,6.060091018676758],[116,287,66,6.061452865600586],[116,287,67,6.054780006408691],[116,287,68,6.046853065490723],[116,287,69,6.040349006652832],[116,287,70,6.036932468414307],[116,287,71,6.034491062164307],[116,287,72,6.033131122589111],[116,287,73,6.036201000213623],[116,287,74,6.041961669921875],[116,287,75,6.048854351043701],[116,287,76,6.061378002166748],[116,287,77,6.080756187438965],[116,287,78,6.0968451499938965],[116,287,79,6.103983402252197],[116,288,64,6.05026912689209],[116,288,65,6.060091018676758],[116,288,66,6.061452865600586],[116,288,67,6.054780006408691],[116,288,68,6.046853065490723],[116,288,69,6.040349006652832],[116,288,70,6.036932468414307],[116,288,71,6.034491062164307],[116,288,72,6.033131122589111],[116,288,73,6.036201000213623],[116,288,74,6.041961669921875],[116,288,75,6.048854351043701],[116,288,76,6.061378002166748],[116,288,77,6.080756187438965],[116,288,78,6.0968451499938965],[116,288,79,6.103983402252197],[116,289,64,6.05026912689209],[116,289,65,6.060091018676758],[116,289,66,6.061452865600586],[116,289,67,6.054780006408691],[116,289,68,6.046853065490723],[116,289,69,6.040349006652832],[116,289,70,6.036932468414307],[116,289,71,6.034491062164307],[116,289,72,6.033131122589111],[116,289,73,6.036201000213623],[116,289,74,6.041961669921875],[116,289,75,6.048854351043701],[116,289,76,6.061378002166748],[116,289,77,6.080756187438965],[116,289,78,6.0968451499938965],[116,289,79,6.103983402252197],[116,290,64,6.05026912689209],[116,290,65,6.060091018676758],[116,290,66,6.061452865600586],[116,290,67,6.054780006408691],[116,290,68,6.046853065490723],[116,290,69,6.040349006652832],[116,290,70,6.036932468414307],[116,290,71,6.034491062164307],[116,290,72,6.033131122589111],[116,290,73,6.036201000213623],[116,290,74,6.041961669921875],[116,290,75,6.048854351043701],[116,290,76,6.061378002166748],[116,290,77,6.080756187438965],[116,290,78,6.0968451499938965],[116,290,79,6.103983402252197],[116,291,64,6.05026912689209],[116,291,65,6.060091018676758],[116,291,66,6.061452865600586],[116,291,67,6.054780006408691],[116,291,68,6.046853065490723],[116,291,69,6.040349006652832],[116,291,70,6.036932468414307],[116,291,71,6.034491062164307],[116,291,72,6.033131122589111],[116,291,73,6.036201000213623],[116,291,74,6.041961669921875],[116,291,75,6.048854351043701],[116,291,76,6.061378002166748],[116,291,77,6.080756187438965],[116,291,78,6.0968451499938965],[116,291,79,6.103983402252197],[116,292,64,6.05026912689209],[116,292,65,6.060091018676758],[116,292,66,6.061452865600586],[116,292,67,6.054780006408691],[116,292,68,6.046853065490723],[116,292,69,6.040349006652832],[116,292,70,6.036932468414307],[116,292,71,6.034491062164307],[116,292,72,6.033131122589111],[116,292,73,6.036201000213623],[116,292,74,6.041961669921875],[116,292,75,6.048854351043701],[116,292,76,6.061378002166748],[116,292,77,6.080756187438965],[116,292,78,6.0968451499938965],[116,292,79,6.103983402252197],[116,293,64,6.05026912689209],[116,293,65,6.060091018676758],[116,293,66,6.061452865600586],[116,293,67,6.054780006408691],[116,293,68,6.046853065490723],[116,293,69,6.040349006652832],[116,293,70,6.036932468414307],[116,293,71,6.034491062164307],[116,293,72,6.033131122589111],[116,293,73,6.036201000213623],[116,293,74,6.041961669921875],[116,293,75,6.048854351043701],[116,293,76,6.061378002166748],[116,293,77,6.080756187438965],[116,293,78,6.0968451499938965],[116,293,79,6.103983402252197],[116,294,64,6.05026912689209],[116,294,65,6.060091018676758],[116,294,66,6.061452865600586],[116,294,67,6.054780006408691],[116,294,68,6.046853065490723],[116,294,69,6.040349006652832],[116,294,70,6.036932468414307],[116,294,71,6.034491062164307],[116,294,72,6.033131122589111],[116,294,73,6.036201000213623],[116,294,74,6.041961669921875],[116,294,75,6.048854351043701],[116,294,76,6.061378002166748],[116,294,77,6.080756187438965],[116,294,78,6.0968451499938965],[116,294,79,6.103983402252197],[116,295,64,6.05026912689209],[116,295,65,6.060091018676758],[116,295,66,6.061452865600586],[116,295,67,6.054780006408691],[116,295,68,6.046853065490723],[116,295,69,6.040349006652832],[116,295,70,6.036932468414307],[116,295,71,6.034491062164307],[116,295,72,6.033131122589111],[116,295,73,6.036201000213623],[116,295,74,6.041961669921875],[116,295,75,6.048854351043701],[116,295,76,6.061378002166748],[116,295,77,6.080756187438965],[116,295,78,6.0968451499938965],[116,295,79,6.103983402252197],[116,296,64,6.05026912689209],[116,296,65,6.060091018676758],[116,296,66,6.061452865600586],[116,296,67,6.054780006408691],[116,296,68,6.046853065490723],[116,296,69,6.040349006652832],[116,296,70,6.036932468414307],[116,296,71,6.034491062164307],[116,296,72,6.033131122589111],[116,296,73,6.036201000213623],[116,296,74,6.041961669921875],[116,296,75,6.048854351043701],[116,296,76,6.061378002166748],[116,296,77,6.080756187438965],[116,296,78,6.0968451499938965],[116,296,79,6.103983402252197],[116,297,64,6.05026912689209],[116,297,65,6.060091018676758],[116,297,66,6.061452865600586],[116,297,67,6.054780006408691],[116,297,68,6.046853065490723],[116,297,69,6.040349006652832],[116,297,70,6.036932468414307],[116,297,71,6.034491062164307],[116,297,72,6.033131122589111],[116,297,73,6.036201000213623],[116,297,74,6.041961669921875],[116,297,75,6.048854351043701],[116,297,76,6.061378002166748],[116,297,77,6.080756187438965],[116,297,78,6.0968451499938965],[116,297,79,6.103983402252197],[116,298,64,6.05026912689209],[116,298,65,6.060091018676758],[116,298,66,6.061452865600586],[116,298,67,6.054780006408691],[116,298,68,6.046853065490723],[116,298,69,6.040349006652832],[116,298,70,6.036932468414307],[116,298,71,6.034491062164307],[116,298,72,6.033131122589111],[116,298,73,6.036201000213623],[116,298,74,6.041961669921875],[116,298,75,6.048854351043701],[116,298,76,6.061378002166748],[116,298,77,6.080756187438965],[116,298,78,6.0968451499938965],[116,298,79,6.103983402252197],[116,299,64,6.05026912689209],[116,299,65,6.060091018676758],[116,299,66,6.061452865600586],[116,299,67,6.054780006408691],[116,299,68,6.046853065490723],[116,299,69,6.040349006652832],[116,299,70,6.036932468414307],[116,299,71,6.034491062164307],[116,299,72,6.033131122589111],[116,299,73,6.036201000213623],[116,299,74,6.041961669921875],[116,299,75,6.048854351043701],[116,299,76,6.061378002166748],[116,299,77,6.080756187438965],[116,299,78,6.0968451499938965],[116,299,79,6.103983402252197],[116,300,64,6.05026912689209],[116,300,65,6.060091018676758],[116,300,66,6.061452865600586],[116,300,67,6.054780006408691],[116,300,68,6.046853065490723],[116,300,69,6.040349006652832],[116,300,70,6.036932468414307],[116,300,71,6.034491062164307],[116,300,72,6.033131122589111],[116,300,73,6.036201000213623],[116,300,74,6.041961669921875],[116,300,75,6.048854351043701],[116,300,76,6.061378002166748],[116,300,77,6.080756187438965],[116,300,78,6.0968451499938965],[116,300,79,6.103983402252197],[116,301,64,6.05026912689209],[116,301,65,6.060091018676758],[116,301,66,6.061452865600586],[116,301,67,6.054780006408691],[116,301,68,6.046853065490723],[116,301,69,6.040349006652832],[116,301,70,6.036932468414307],[116,301,71,6.034491062164307],[116,301,72,6.033131122589111],[116,301,73,6.036201000213623],[116,301,74,6.041961669921875],[116,301,75,6.048854351043701],[116,301,76,6.061378002166748],[116,301,77,6.080756187438965],[116,301,78,6.0968451499938965],[116,301,79,6.103983402252197],[116,302,64,6.05026912689209],[116,302,65,6.060091018676758],[116,302,66,6.061452865600586],[116,302,67,6.054780006408691],[116,302,68,6.046853065490723],[116,302,69,6.040349006652832],[116,302,70,6.036932468414307],[116,302,71,6.034491062164307],[116,302,72,6.033131122589111],[116,302,73,6.036201000213623],[116,302,74,6.041961669921875],[116,302,75,6.048854351043701],[116,302,76,6.061378002166748],[116,302,77,6.080756187438965],[116,302,78,6.0968451499938965],[116,302,79,6.103983402252197],[116,303,64,6.05026912689209],[116,303,65,6.060091018676758],[116,303,66,6.061452865600586],[116,303,67,6.054780006408691],[116,303,68,6.046853065490723],[116,303,69,6.040349006652832],[116,303,70,6.036932468414307],[116,303,71,6.034491062164307],[116,303,72,6.033131122589111],[116,303,73,6.036201000213623],[116,303,74,6.041961669921875],[116,303,75,6.048854351043701],[116,303,76,6.061378002166748],[116,303,77,6.080756187438965],[116,303,78,6.0968451499938965],[116,303,79,6.103983402252197],[116,304,64,6.05026912689209],[116,304,65,6.060091018676758],[116,304,66,6.061452865600586],[116,304,67,6.054780006408691],[116,304,68,6.046853065490723],[116,304,69,6.040349006652832],[116,304,70,6.036932468414307],[116,304,71,6.034491062164307],[116,304,72,6.033131122589111],[116,304,73,6.036201000213623],[116,304,74,6.041961669921875],[116,304,75,6.048854351043701],[116,304,76,6.061378002166748],[116,304,77,6.080756187438965],[116,304,78,6.0968451499938965],[116,304,79,6.103983402252197],[116,305,64,6.05026912689209],[116,305,65,6.060091018676758],[116,305,66,6.061452865600586],[116,305,67,6.054780006408691],[116,305,68,6.046853065490723],[116,305,69,6.040349006652832],[116,305,70,6.036932468414307],[116,305,71,6.034491062164307],[116,305,72,6.033131122589111],[116,305,73,6.036201000213623],[116,305,74,6.041961669921875],[116,305,75,6.048854351043701],[116,305,76,6.061378002166748],[116,305,77,6.080756187438965],[116,305,78,6.0968451499938965],[116,305,79,6.103983402252197],[116,306,64,6.05026912689209],[116,306,65,6.060091018676758],[116,306,66,6.061452865600586],[116,306,67,6.054780006408691],[116,306,68,6.046853065490723],[116,306,69,6.040349006652832],[116,306,70,6.036932468414307],[116,306,71,6.034491062164307],[116,306,72,6.033131122589111],[116,306,73,6.036201000213623],[116,306,74,6.041961669921875],[116,306,75,6.048854351043701],[116,306,76,6.061378002166748],[116,306,77,6.080756187438965],[116,306,78,6.0968451499938965],[116,306,79,6.103983402252197],[116,307,64,6.05026912689209],[116,307,65,6.060091018676758],[116,307,66,6.061452865600586],[116,307,67,6.054780006408691],[116,307,68,6.046853065490723],[116,307,69,6.040349006652832],[116,307,70,6.036932468414307],[116,307,71,6.034491062164307],[116,307,72,6.033131122589111],[116,307,73,6.036201000213623],[116,307,74,6.041961669921875],[116,307,75,6.048854351043701],[116,307,76,6.061378002166748],[116,307,77,6.080756187438965],[116,307,78,6.0968451499938965],[116,307,79,6.103983402252197],[116,308,64,6.05026912689209],[116,308,65,6.060091018676758],[116,308,66,6.061452865600586],[116,308,67,6.054780006408691],[116,308,68,6.046853065490723],[116,308,69,6.040349006652832],[116,308,70,6.036932468414307],[116,308,71,6.034491062164307],[116,308,72,6.033131122589111],[116,308,73,6.036201000213623],[116,308,74,6.041961669921875],[116,308,75,6.048854351043701],[116,308,76,6.061378002166748],[116,308,77,6.080756187438965],[116,308,78,6.0968451499938965],[116,308,79,6.103983402252197],[116,309,64,6.05026912689209],[116,309,65,6.060091018676758],[116,309,66,6.061452865600586],[116,309,67,6.054780006408691],[116,309,68,6.046853065490723],[116,309,69,6.040349006652832],[116,309,70,6.036932468414307],[116,309,71,6.034491062164307],[116,309,72,6.033131122589111],[116,309,73,6.036201000213623],[116,309,74,6.041961669921875],[116,309,75,6.048854351043701],[116,309,76,6.061378002166748],[116,309,77,6.080756187438965],[116,309,78,6.0968451499938965],[116,309,79,6.103983402252197],[116,310,64,6.05026912689209],[116,310,65,6.060091018676758],[116,310,66,6.061452865600586],[116,310,67,6.054780006408691],[116,310,68,6.046853065490723],[116,310,69,6.040349006652832],[116,310,70,6.036932468414307],[116,310,71,6.034491062164307],[116,310,72,6.033131122589111],[116,310,73,6.036201000213623],[116,310,74,6.041961669921875],[116,310,75,6.048854351043701],[116,310,76,6.061378002166748],[116,310,77,6.080756187438965],[116,310,78,6.0968451499938965],[116,310,79,6.103983402252197],[116,311,64,6.05026912689209],[116,311,65,6.060091018676758],[116,311,66,6.061452865600586],[116,311,67,6.054780006408691],[116,311,68,6.046853065490723],[116,311,69,6.040349006652832],[116,311,70,6.036932468414307],[116,311,71,6.034491062164307],[116,311,72,6.033131122589111],[116,311,73,6.036201000213623],[116,311,74,6.041961669921875],[116,311,75,6.048854351043701],[116,311,76,6.061378002166748],[116,311,77,6.080756187438965],[116,311,78,6.0968451499938965],[116,311,79,6.103983402252197],[116,312,64,6.05026912689209],[116,312,65,6.060091018676758],[116,312,66,6.061452865600586],[116,312,67,6.054780006408691],[116,312,68,6.046853065490723],[116,312,69,6.040349006652832],[116,312,70,6.036932468414307],[116,312,71,6.034491062164307],[116,312,72,6.033131122589111],[116,312,73,6.036201000213623],[116,312,74,6.041961669921875],[116,312,75,6.048854351043701],[116,312,76,6.061378002166748],[116,312,77,6.080756187438965],[116,312,78,6.0968451499938965],[116,312,79,6.103983402252197],[116,313,64,6.05026912689209],[116,313,65,6.060091018676758],[116,313,66,6.061452865600586],[116,313,67,6.054780006408691],[116,313,68,6.046853065490723],[116,313,69,6.040349006652832],[116,313,70,6.036932468414307],[116,313,71,6.034491062164307],[116,313,72,6.033131122589111],[116,313,73,6.036201000213623],[116,313,74,6.041961669921875],[116,313,75,6.048854351043701],[116,313,76,6.061378002166748],[116,313,77,6.080756187438965],[116,313,78,6.0968451499938965],[116,313,79,6.103983402252197],[116,314,64,6.05026912689209],[116,314,65,6.060091018676758],[116,314,66,6.061452865600586],[116,314,67,6.054780006408691],[116,314,68,6.046853065490723],[116,314,69,6.040349006652832],[116,314,70,6.036932468414307],[116,314,71,6.034491062164307],[116,314,72,6.033131122589111],[116,314,73,6.036201000213623],[116,314,74,6.041961669921875],[116,314,75,6.048854351043701],[116,314,76,6.061378002166748],[116,314,77,6.080756187438965],[116,314,78,6.0968451499938965],[116,314,79,6.103983402252197],[116,315,64,6.05026912689209],[116,315,65,6.060091018676758],[116,315,66,6.061452865600586],[116,315,67,6.054780006408691],[116,315,68,6.046853065490723],[116,315,69,6.040349006652832],[116,315,70,6.036932468414307],[116,315,71,6.034491062164307],[116,315,72,6.033131122589111],[116,315,73,6.036201000213623],[116,315,74,6.041961669921875],[116,315,75,6.048854351043701],[116,315,76,6.061378002166748],[116,315,77,6.080756187438965],[116,315,78,6.0968451499938965],[116,315,79,6.103983402252197],[116,316,64,6.05026912689209],[116,316,65,6.060091018676758],[116,316,66,6.061452865600586],[116,316,67,6.054780006408691],[116,316,68,6.046853065490723],[116,316,69,6.040349006652832],[116,316,70,6.036932468414307],[116,316,71,6.034491062164307],[116,316,72,6.033131122589111],[116,316,73,6.036201000213623],[116,316,74,6.041961669921875],[116,316,75,6.048854351043701],[116,316,76,6.061378002166748],[116,316,77,6.080756187438965],[116,316,78,6.0968451499938965],[116,316,79,6.103983402252197],[116,317,64,6.05026912689209],[116,317,65,6.060091018676758],[116,317,66,6.061452865600586],[116,317,67,6.054780006408691],[116,317,68,6.046853065490723],[116,317,69,6.040349006652832],[116,317,70,6.036932468414307],[116,317,71,6.034491062164307],[116,317,72,6.033131122589111],[116,317,73,6.036201000213623],[116,317,74,6.041961669921875],[116,317,75,6.048854351043701],[116,317,76,6.061378002166748],[116,317,77,6.080756187438965],[116,317,78,6.0968451499938965],[116,317,79,6.103983402252197],[116,318,64,6.05026912689209],[116,318,65,6.060091018676758],[116,318,66,6.061452865600586],[116,318,67,6.054780006408691],[116,318,68,6.046853065490723],[116,318,69,6.040349006652832],[116,318,70,6.036932468414307],[116,318,71,6.034491062164307],[116,318,72,6.033131122589111],[116,318,73,6.036201000213623],[116,318,74,6.041961669921875],[116,318,75,6.048854351043701],[116,318,76,6.061378002166748],[116,318,77,6.080756187438965],[116,318,78,6.0968451499938965],[116,318,79,6.103983402252197],[116,319,64,6.05026912689209],[116,319,65,6.060091018676758],[116,319,66,6.061452865600586],[116,319,67,6.054780006408691],[116,319,68,6.046853065490723],[116,319,69,6.040349006652832],[116,319,70,6.036932468414307],[116,319,71,6.034491062164307],[116,319,72,6.033131122589111],[116,319,73,6.036201000213623],[116,319,74,6.041961669921875],[116,319,75,6.048854351043701],[116,319,76,6.061378002166748],[116,319,77,6.080756187438965],[116,319,78,6.0968451499938965],[116,319,79,6.103983402252197],[117,-64,64,6.066739082336426],[117,-64,65,6.077524662017822],[117,-64,66,6.078339099884033],[117,-64,67,6.070504665374756],[117,-64,68,6.061385154724121],[117,-64,69,6.055147171020508],[117,-64,70,6.05340576171875],[117,-64,71,6.053691387176514],[117,-64,72,6.056863307952881],[117,-64,73,6.066365718841553],[117,-64,74,6.079727649688721],[117,-64,75,6.093751907348633],[117,-64,76,6.108086585998535],[117,-64,77,6.1232171058654785],[117,-64,78,6.13298225402832],[117,-64,79,6.136005878448486],[117,-63,64,6.066739082336426],[117,-63,65,6.077524662017822],[117,-63,66,6.078339099884033],[117,-63,67,6.070504665374756],[117,-63,68,6.061385154724121],[117,-63,69,6.055147171020508],[117,-63,70,6.05340576171875],[117,-63,71,6.053691387176514],[117,-63,72,6.056863307952881],[117,-63,73,6.066365718841553],[117,-63,74,6.079727649688721],[117,-63,75,6.093751907348633],[117,-63,76,6.108086585998535],[117,-63,77,6.1232171058654785],[117,-63,78,6.13298225402832],[117,-63,79,6.136005878448486],[117,-62,64,6.066739082336426],[117,-62,65,6.077524662017822],[117,-62,66,6.078339099884033],[117,-62,67,6.070504665374756],[117,-62,68,6.061385154724121],[117,-62,69,6.055147171020508],[117,-62,70,6.05340576171875],[117,-62,71,6.053691387176514],[117,-62,72,6.056863307952881],[117,-62,73,6.066365718841553],[117,-62,74,6.079727649688721],[117,-62,75,6.093751907348633],[117,-62,76,6.108086585998535],[117,-62,77,6.1232171058654785],[117,-62,78,6.13298225402832],[117,-62,79,6.136005878448486],[117,-61,64,6.066739082336426],[117,-61,65,6.077524662017822],[117,-61,66,6.078339099884033],[117,-61,67,6.070504665374756],[117,-61,68,6.061385154724121],[117,-61,69,6.055147171020508],[117,-61,70,6.05340576171875],[117,-61,71,6.053691387176514],[117,-61,72,6.056863307952881],[117,-61,73,6.066365718841553],[117,-61,74,6.079727649688721],[117,-61,75,6.093751907348633],[117,-61,76,6.108086585998535],[117,-61,77,6.1232171058654785],[117,-61,78,6.13298225402832],[117,-61,79,6.136005878448486],[117,-60,64,6.066739082336426],[117,-60,65,6.077524662017822],[117,-60,66,6.078339099884033],[117,-60,67,6.070504665374756],[117,-60,68,6.061385154724121],[117,-60,69,6.055147171020508],[117,-60,70,6.05340576171875],[117,-60,71,6.053691387176514],[117,-60,72,6.056863307952881],[117,-60,73,6.066365718841553],[117,-60,74,6.079727649688721],[117,-60,75,6.093751907348633],[117,-60,76,6.108086585998535],[117,-60,77,6.1232171058654785],[117,-60,78,6.13298225402832],[117,-60,79,6.136005878448486],[117,-59,64,6.066739082336426],[117,-59,65,6.077524662017822],[117,-59,66,6.078339099884033],[117,-59,67,6.070504665374756],[117,-59,68,6.061385154724121],[117,-59,69,6.055147171020508],[117,-59,70,6.05340576171875],[117,-59,71,6.053691387176514],[117,-59,72,6.056863307952881],[117,-59,73,6.066365718841553],[117,-59,74,6.079727649688721],[117,-59,75,6.093751907348633],[117,-59,76,6.108086585998535],[117,-59,77,6.1232171058654785],[117,-59,78,6.13298225402832],[117,-59,79,6.136005878448486],[117,-58,64,6.066739082336426],[117,-58,65,6.077524662017822],[117,-58,66,6.078339099884033],[117,-58,67,6.070504665374756],[117,-58,68,6.061385154724121],[117,-58,69,6.055147171020508],[117,-58,70,6.05340576171875],[117,-58,71,6.053691387176514],[117,-58,72,6.056863307952881],[117,-58,73,6.066365718841553],[117,-58,74,6.079727649688721],[117,-58,75,6.093751907348633],[117,-58,76,6.108086585998535],[117,-58,77,6.1232171058654785],[117,-58,78,6.13298225402832],[117,-58,79,6.136005878448486],[117,-57,64,6.066739082336426],[117,-57,65,6.077524662017822],[117,-57,66,6.078339099884033],[117,-57,67,6.070504665374756],[117,-57,68,6.061385154724121],[117,-57,69,6.055147171020508],[117,-57,70,6.05340576171875],[117,-57,71,6.053691387176514],[117,-57,72,6.056863307952881],[117,-57,73,6.066365718841553],[117,-57,74,6.079727649688721],[117,-57,75,6.093751907348633],[117,-57,76,6.108086585998535],[117,-57,77,6.1232171058654785],[117,-57,78,6.13298225402832],[117,-57,79,6.136005878448486],[117,-56,64,6.066739082336426],[117,-56,65,6.077524662017822],[117,-56,66,6.078339099884033],[117,-56,67,6.070504665374756],[117,-56,68,6.061385154724121],[117,-56,69,6.055147171020508],[117,-56,70,6.05340576171875],[117,-56,71,6.053691387176514],[117,-56,72,6.056863307952881],[117,-56,73,6.066365718841553],[117,-56,74,6.079727649688721],[117,-56,75,6.093751907348633],[117,-56,76,6.108086585998535],[117,-56,77,6.1232171058654785],[117,-56,78,6.13298225402832],[117,-56,79,6.136005878448486],[117,-55,64,6.066739082336426],[117,-55,65,6.077524662017822],[117,-55,66,6.078339099884033],[117,-55,67,6.070504665374756],[117,-55,68,6.061385154724121],[117,-55,69,6.055147171020508],[117,-55,70,6.05340576171875],[117,-55,71,6.053691387176514],[117,-55,72,6.056863307952881],[117,-55,73,6.066365718841553],[117,-55,74,6.079727649688721],[117,-55,75,6.093751907348633],[117,-55,76,6.108086585998535],[117,-55,77,6.1232171058654785],[117,-55,78,6.13298225402832],[117,-55,79,6.136005878448486],[117,-54,64,6.066739082336426],[117,-54,65,6.077524662017822],[117,-54,66,6.078339099884033],[117,-54,67,6.070504665374756],[117,-54,68,6.061385154724121],[117,-54,69,6.055147171020508],[117,-54,70,6.05340576171875],[117,-54,71,6.053691387176514],[117,-54,72,6.056863307952881],[117,-54,73,6.066365718841553],[117,-54,74,6.079727649688721],[117,-54,75,6.093751907348633],[117,-54,76,6.108086585998535],[117,-54,77,6.1232171058654785],[117,-54,78,6.13298225402832],[117,-54,79,6.136005878448486],[117,-53,64,6.066739082336426],[117,-53,65,6.077524662017822],[117,-53,66,6.078339099884033],[117,-53,67,6.070504665374756],[117,-53,68,6.061385154724121],[117,-53,69,6.055147171020508],[117,-53,70,6.05340576171875],[117,-53,71,6.053691387176514],[117,-53,72,6.056863307952881],[117,-53,73,6.066365718841553],[117,-53,74,6.079727649688721],[117,-53,75,6.093751907348633],[117,-53,76,6.108086585998535],[117,-53,77,6.1232171058654785],[117,-53,78,6.13298225402832],[117,-53,79,6.136005878448486],[117,-52,64,6.066739082336426],[117,-52,65,6.077524662017822],[117,-52,66,6.078339099884033],[117,-52,67,6.070504665374756],[117,-52,68,6.061385154724121],[117,-52,69,6.055147171020508],[117,-52,70,6.05340576171875],[117,-52,71,6.053691387176514],[117,-52,72,6.056863307952881],[117,-52,73,6.066365718841553],[117,-52,74,6.079727649688721],[117,-52,75,6.093751907348633],[117,-52,76,6.108086585998535],[117,-52,77,6.1232171058654785],[117,-52,78,6.13298225402832],[117,-52,79,6.136005878448486],[117,-51,64,6.066739082336426],[117,-51,65,6.077524662017822],[117,-51,66,6.078339099884033],[117,-51,67,6.070504665374756],[117,-51,68,6.061385154724121],[117,-51,69,6.055147171020508],[117,-51,70,6.05340576171875],[117,-51,71,6.053691387176514],[117,-51,72,6.056863307952881],[117,-51,73,6.066365718841553],[117,-51,74,6.079727649688721],[117,-51,75,6.093751907348633],[117,-51,76,6.108086585998535],[117,-51,77,6.1232171058654785],[117,-51,78,6.13298225402832],[117,-51,79,6.136005878448486],[117,-50,64,6.066739082336426],[117,-50,65,6.077524662017822],[117,-50,66,6.078339099884033],[117,-50,67,6.070504665374756],[117,-50,68,6.061385154724121],[117,-50,69,6.055147171020508],[117,-50,70,6.05340576171875],[117,-50,71,6.053691387176514],[117,-50,72,6.056863307952881],[117,-50,73,6.066365718841553],[117,-50,74,6.079727649688721],[117,-50,75,6.093751907348633],[117,-50,76,6.108086585998535],[117,-50,77,6.1232171058654785],[117,-50,78,6.13298225402832],[117,-50,79,6.136005878448486],[117,-49,64,6.066739082336426],[117,-49,65,6.077524662017822],[117,-49,66,6.078339099884033],[117,-49,67,6.070504665374756],[117,-49,68,6.061385154724121],[117,-49,69,6.055147171020508],[117,-49,70,6.05340576171875],[117,-49,71,6.053691387176514],[117,-49,72,6.056863307952881],[117,-49,73,6.066365718841553],[117,-49,74,6.079727649688721],[117,-49,75,6.093751907348633],[117,-49,76,6.108086585998535],[117,-49,77,6.1232171058654785],[117,-49,78,6.13298225402832],[117,-49,79,6.136005878448486],[117,-48,64,6.066739082336426],[117,-48,65,6.077524662017822],[117,-48,66,6.078339099884033],[117,-48,67,6.070504665374756],[117,-48,68,6.061385154724121],[117,-48,69,6.055147171020508],[117,-48,70,6.05340576171875],[117,-48,71,6.053691387176514],[117,-48,72,6.056863307952881],[117,-48,73,6.066365718841553],[117,-48,74,6.079727649688721],[117,-48,75,6.093751907348633],[117,-48,76,6.108086585998535],[117,-48,77,6.1232171058654785],[117,-48,78,6.13298225402832],[117,-48,79,6.136005878448486],[117,-47,64,6.066739082336426],[117,-47,65,6.077524662017822],[117,-47,66,6.078339099884033],[117,-47,67,6.070504665374756],[117,-47,68,6.061385154724121],[117,-47,69,6.055147171020508],[117,-47,70,6.05340576171875],[117,-47,71,6.053691387176514],[117,-47,72,6.056863307952881],[117,-47,73,6.066365718841553],[117,-47,74,6.079727649688721],[117,-47,75,6.093751907348633],[117,-47,76,6.108086585998535],[117,-47,77,6.1232171058654785],[117,-47,78,6.13298225402832],[117,-47,79,6.136005878448486],[117,-46,64,6.066739082336426],[117,-46,65,6.077524662017822],[117,-46,66,6.078339099884033],[117,-46,67,6.070504665374756],[117,-46,68,6.061385154724121],[117,-46,69,6.055147171020508],[117,-46,70,6.05340576171875],[117,-46,71,6.053691387176514],[117,-46,72,6.056863307952881],[117,-46,73,6.066365718841553],[117,-46,74,6.079727649688721],[117,-46,75,6.093751907348633],[117,-46,76,6.108086585998535],[117,-46,77,6.1232171058654785],[117,-46,78,6.13298225402832],[117,-46,79,6.136005878448486],[117,-45,64,6.066739082336426],[117,-45,65,6.077524662017822],[117,-45,66,6.078339099884033],[117,-45,67,6.070504665374756],[117,-45,68,6.061385154724121],[117,-45,69,6.055147171020508],[117,-45,70,6.05340576171875],[117,-45,71,6.053691387176514],[117,-45,72,6.056863307952881],[117,-45,73,6.066365718841553],[117,-45,74,6.079727649688721],[117,-45,75,6.093751907348633],[117,-45,76,6.108086585998535],[117,-45,77,6.1232171058654785],[117,-45,78,6.13298225402832],[117,-45,79,6.136005878448486],[117,-44,64,6.066739082336426],[117,-44,65,6.077524662017822],[117,-44,66,6.078339099884033],[117,-44,67,6.070504665374756],[117,-44,68,6.061385154724121],[117,-44,69,6.055147171020508],[117,-44,70,6.05340576171875],[117,-44,71,6.053691387176514],[117,-44,72,6.056863307952881],[117,-44,73,6.066365718841553],[117,-44,74,6.079727649688721],[117,-44,75,6.093751907348633],[117,-44,76,6.108086585998535],[117,-44,77,6.1232171058654785],[117,-44,78,6.13298225402832],[117,-44,79,6.136005878448486],[117,-43,64,6.066739082336426],[117,-43,65,6.077524662017822],[117,-43,66,6.078339099884033],[117,-43,67,6.070504665374756],[117,-43,68,6.061385154724121],[117,-43,69,6.055147171020508],[117,-43,70,6.05340576171875],[117,-43,71,6.053691387176514],[117,-43,72,6.056863307952881],[117,-43,73,6.066365718841553],[117,-43,74,6.079727649688721],[117,-43,75,6.093751907348633],[117,-43,76,6.108086585998535],[117,-43,77,6.1232171058654785],[117,-43,78,6.13298225402832],[117,-43,79,6.136005878448486],[117,-42,64,6.066739082336426],[117,-42,65,6.077524662017822],[117,-42,66,6.078339099884033],[117,-42,67,6.070504665374756],[117,-42,68,6.061385154724121],[117,-42,69,6.055147171020508],[117,-42,70,6.05340576171875],[117,-42,71,6.053691387176514],[117,-42,72,6.056863307952881],[117,-42,73,6.066365718841553],[117,-42,74,6.079727649688721],[117,-42,75,6.093751907348633],[117,-42,76,6.108086585998535],[117,-42,77,6.1232171058654785],[117,-42,78,6.13298225402832],[117,-42,79,6.136005878448486],[117,-41,64,6.066739082336426],[117,-41,65,6.077524662017822],[117,-41,66,6.078339099884033],[117,-41,67,6.070504665374756],[117,-41,68,6.061385154724121],[117,-41,69,6.055147171020508],[117,-41,70,6.05340576171875],[117,-41,71,6.053691387176514],[117,-41,72,6.056863307952881],[117,-41,73,6.066365718841553],[117,-41,74,6.079727649688721],[117,-41,75,6.093751907348633],[117,-41,76,6.108086585998535],[117,-41,77,6.1232171058654785],[117,-41,78,6.13298225402832],[117,-41,79,6.136005878448486],[117,-40,64,6.066739082336426],[117,-40,65,6.077524662017822],[117,-40,66,6.078339099884033],[117,-40,67,6.070504665374756],[117,-40,68,6.061385154724121],[117,-40,69,6.055147171020508],[117,-40,70,6.05340576171875],[117,-40,71,6.053691387176514],[117,-40,72,6.056863307952881],[117,-40,73,6.066365718841553],[117,-40,74,6.079727649688721],[117,-40,75,6.093751907348633],[117,-40,76,6.108086585998535],[117,-40,77,6.1232171058654785],[117,-40,78,6.13298225402832],[117,-40,79,6.136005878448486],[117,-39,64,6.066739082336426],[117,-39,65,6.077524662017822],[117,-39,66,6.078339099884033],[117,-39,67,6.070504665374756],[117,-39,68,6.061385154724121],[117,-39,69,6.055147171020508],[117,-39,70,6.05340576171875],[117,-39,71,6.053691387176514],[117,-39,72,6.056863307952881],[117,-39,73,6.066365718841553],[117,-39,74,6.079727649688721],[117,-39,75,6.093751907348633],[117,-39,76,6.108086585998535],[117,-39,77,6.1232171058654785],[117,-39,78,6.13298225402832],[117,-39,79,6.136005878448486],[117,-38,64,6.066739082336426],[117,-38,65,6.077524662017822],[117,-38,66,6.078339099884033],[117,-38,67,6.070504665374756],[117,-38,68,6.061385154724121],[117,-38,69,6.055147171020508],[117,-38,70,6.05340576171875],[117,-38,71,6.053691387176514],[117,-38,72,6.056863307952881],[117,-38,73,6.066365718841553],[117,-38,74,6.079727649688721],[117,-38,75,6.093751907348633],[117,-38,76,6.108086585998535],[117,-38,77,6.1232171058654785],[117,-38,78,6.13298225402832],[117,-38,79,6.136005878448486],[117,-37,64,6.066739082336426],[117,-37,65,6.077524662017822],[117,-37,66,6.078339099884033],[117,-37,67,6.070504665374756],[117,-37,68,6.061385154724121],[117,-37,69,6.055147171020508],[117,-37,70,6.05340576171875],[117,-37,71,6.053691387176514],[117,-37,72,6.056863307952881],[117,-37,73,6.066365718841553],[117,-37,74,6.079727649688721],[117,-37,75,6.093751907348633],[117,-37,76,6.108086585998535],[117,-37,77,6.1232171058654785],[117,-37,78,6.13298225402832],[117,-37,79,6.136005878448486],[117,-36,64,6.066739082336426],[117,-36,65,6.077524662017822],[117,-36,66,6.078339099884033],[117,-36,67,6.070504665374756],[117,-36,68,6.061385154724121],[117,-36,69,6.055147171020508],[117,-36,70,6.05340576171875],[117,-36,71,6.053691387176514],[117,-36,72,6.056863307952881],[117,-36,73,6.066365718841553],[117,-36,74,6.079727649688721],[117,-36,75,6.093751907348633],[117,-36,76,6.108086585998535],[117,-36,77,6.1232171058654785],[117,-36,78,6.13298225402832],[117,-36,79,6.136005878448486],[117,-35,64,6.066739082336426],[117,-35,65,6.077524662017822],[117,-35,66,6.078339099884033],[117,-35,67,6.070504665374756],[117,-35,68,6.061385154724121],[117,-35,69,6.055147171020508],[117,-35,70,6.05340576171875],[117,-35,71,6.053691387176514],[117,-35,72,6.056863307952881],[117,-35,73,6.066365718841553],[117,-35,74,6.079727649688721],[117,-35,75,6.093751907348633],[117,-35,76,6.108086585998535],[117,-35,77,6.1232171058654785],[117,-35,78,6.13298225402832],[117,-35,79,6.136005878448486],[117,-34,64,6.066739082336426],[117,-34,65,6.077524662017822],[117,-34,66,6.078339099884033],[117,-34,67,6.070504665374756],[117,-34,68,6.061385154724121],[117,-34,69,6.055147171020508],[117,-34,70,6.05340576171875],[117,-34,71,6.053691387176514],[117,-34,72,6.056863307952881],[117,-34,73,6.066365718841553],[117,-34,74,6.079727649688721],[117,-34,75,6.093751907348633],[117,-34,76,6.108086585998535],[117,-34,77,6.1232171058654785],[117,-34,78,6.13298225402832],[117,-34,79,6.136005878448486],[117,-33,64,6.066739082336426],[117,-33,65,6.077524662017822],[117,-33,66,6.078339099884033],[117,-33,67,6.070504665374756],[117,-33,68,6.061385154724121],[117,-33,69,6.055147171020508],[117,-33,70,6.05340576171875],[117,-33,71,6.053691387176514],[117,-33,72,6.056863307952881],[117,-33,73,6.066365718841553],[117,-33,74,6.079727649688721],[117,-33,75,6.093751907348633],[117,-33,76,6.108086585998535],[117,-33,77,6.1232171058654785],[117,-33,78,6.13298225402832],[117,-33,79,6.136005878448486],[117,-32,64,6.066739082336426],[117,-32,65,6.077524662017822],[117,-32,66,6.078339099884033],[117,-32,67,6.070504665374756],[117,-32,68,6.061385154724121],[117,-32,69,6.055147171020508],[117,-32,70,6.05340576171875],[117,-32,71,6.053691387176514],[117,-32,72,6.056863307952881],[117,-32,73,6.066365718841553],[117,-32,74,6.079727649688721],[117,-32,75,6.093751907348633],[117,-32,76,6.108086585998535],[117,-32,77,6.1232171058654785],[117,-32,78,6.13298225402832],[117,-32,79,6.136005878448486],[117,-31,64,6.066739082336426],[117,-31,65,6.077524662017822],[117,-31,66,6.078339099884033],[117,-31,67,6.070504665374756],[117,-31,68,6.061385154724121],[117,-31,69,6.055147171020508],[117,-31,70,6.05340576171875],[117,-31,71,6.053691387176514],[117,-31,72,6.056863307952881],[117,-31,73,6.066365718841553],[117,-31,74,6.079727649688721],[117,-31,75,6.093751907348633],[117,-31,76,6.108086585998535],[117,-31,77,6.1232171058654785],[117,-31,78,6.13298225402832],[117,-31,79,6.136005878448486],[117,-30,64,6.066739082336426],[117,-30,65,6.077524662017822],[117,-30,66,6.078339099884033],[117,-30,67,6.070504665374756],[117,-30,68,6.061385154724121],[117,-30,69,6.055147171020508],[117,-30,70,6.05340576171875],[117,-30,71,6.053691387176514],[117,-30,72,6.056863307952881],[117,-30,73,6.066365718841553],[117,-30,74,6.079727649688721],[117,-30,75,6.093751907348633],[117,-30,76,6.108086585998535],[117,-30,77,6.1232171058654785],[117,-30,78,6.13298225402832],[117,-30,79,6.136005878448486],[117,-29,64,6.066739082336426],[117,-29,65,6.077524662017822],[117,-29,66,6.078339099884033],[117,-29,67,6.070504665374756],[117,-29,68,6.061385154724121],[117,-29,69,6.055147171020508],[117,-29,70,6.05340576171875],[117,-29,71,6.053691387176514],[117,-29,72,6.056863307952881],[117,-29,73,6.066365718841553],[117,-29,74,6.079727649688721],[117,-29,75,6.093751907348633],[117,-29,76,6.108086585998535],[117,-29,77,6.1232171058654785],[117,-29,78,6.13298225402832],[117,-29,79,6.136005878448486],[117,-28,64,6.066739082336426],[117,-28,65,6.077524662017822],[117,-28,66,6.078339099884033],[117,-28,67,6.070504665374756],[117,-28,68,6.061385154724121],[117,-28,69,6.055147171020508],[117,-28,70,6.05340576171875],[117,-28,71,6.053691387176514],[117,-28,72,6.056863307952881],[117,-28,73,6.066365718841553],[117,-28,74,6.079727649688721],[117,-28,75,6.093751907348633],[117,-28,76,6.108086585998535],[117,-28,77,6.1232171058654785],[117,-28,78,6.13298225402832],[117,-28,79,6.136005878448486],[117,-27,64,6.066739082336426],[117,-27,65,6.077524662017822],[117,-27,66,6.078339099884033],[117,-27,67,6.070504665374756],[117,-27,68,6.061385154724121],[117,-27,69,6.055147171020508],[117,-27,70,6.05340576171875],[117,-27,71,6.053691387176514],[117,-27,72,6.056863307952881],[117,-27,73,6.066365718841553],[117,-27,74,6.079727649688721],[117,-27,75,6.093751907348633],[117,-27,76,6.108086585998535],[117,-27,77,6.1232171058654785],[117,-27,78,6.13298225402832],[117,-27,79,6.136005878448486],[117,-26,64,6.066739082336426],[117,-26,65,6.077524662017822],[117,-26,66,6.078339099884033],[117,-26,67,6.070504665374756],[117,-26,68,6.061385154724121],[117,-26,69,6.055147171020508],[117,-26,70,6.05340576171875],[117,-26,71,6.053691387176514],[117,-26,72,6.056863307952881],[117,-26,73,6.066365718841553],[117,-26,74,6.079727649688721],[117,-26,75,6.093751907348633],[117,-26,76,6.108086585998535],[117,-26,77,6.1232171058654785],[117,-26,78,6.13298225402832],[117,-26,79,6.136005878448486],[117,-25,64,6.066739082336426],[117,-25,65,6.077524662017822],[117,-25,66,6.078339099884033],[117,-25,67,6.070504665374756],[117,-25,68,6.061385154724121],[117,-25,69,6.055147171020508],[117,-25,70,6.05340576171875],[117,-25,71,6.053691387176514],[117,-25,72,6.056863307952881],[117,-25,73,6.066365718841553],[117,-25,74,6.079727649688721],[117,-25,75,6.093751907348633],[117,-25,76,6.108086585998535],[117,-25,77,6.1232171058654785],[117,-25,78,6.13298225402832],[117,-25,79,6.136005878448486],[117,-24,64,6.066739082336426],[117,-24,65,6.077524662017822],[117,-24,66,6.078339099884033],[117,-24,67,6.070504665374756],[117,-24,68,6.061385154724121],[117,-24,69,6.055147171020508],[117,-24,70,6.05340576171875],[117,-24,71,6.053691387176514],[117,-24,72,6.056863307952881],[117,-24,73,6.066365718841553],[117,-24,74,6.079727649688721],[117,-24,75,6.093751907348633],[117,-24,76,6.108086585998535],[117,-24,77,6.1232171058654785],[117,-24,78,6.13298225402832],[117,-24,79,6.136005878448486],[117,-23,64,6.066739082336426],[117,-23,65,6.077524662017822],[117,-23,66,6.078339099884033],[117,-23,67,6.070504665374756],[117,-23,68,6.061385154724121],[117,-23,69,6.055147171020508],[117,-23,70,6.05340576171875],[117,-23,71,6.053691387176514],[117,-23,72,6.056863307952881],[117,-23,73,6.066365718841553],[117,-23,74,6.079727649688721],[117,-23,75,6.093751907348633],[117,-23,76,6.108086585998535],[117,-23,77,6.1232171058654785],[117,-23,78,6.13298225402832],[117,-23,79,6.136005878448486],[117,-22,64,6.066739082336426],[117,-22,65,6.077524662017822],[117,-22,66,6.078339099884033],[117,-22,67,6.070504665374756],[117,-22,68,6.061385154724121],[117,-22,69,6.055147171020508],[117,-22,70,6.05340576171875],[117,-22,71,6.053691387176514],[117,-22,72,6.056863307952881],[117,-22,73,6.066365718841553],[117,-22,74,6.079727649688721],[117,-22,75,6.093751907348633],[117,-22,76,6.108086585998535],[117,-22,77,6.1232171058654785],[117,-22,78,6.13298225402832],[117,-22,79,6.136005878448486],[117,-21,64,6.066739082336426],[117,-21,65,6.077524662017822],[117,-21,66,6.078339099884033],[117,-21,67,6.070504665374756],[117,-21,68,6.061385154724121],[117,-21,69,6.055147171020508],[117,-21,70,6.05340576171875],[117,-21,71,6.053691387176514],[117,-21,72,6.056863307952881],[117,-21,73,6.066365718841553],[117,-21,74,6.079727649688721],[117,-21,75,6.093751907348633],[117,-21,76,6.108086585998535],[117,-21,77,6.1232171058654785],[117,-21,78,6.13298225402832],[117,-21,79,6.136005878448486],[117,-20,64,6.066739082336426],[117,-20,65,6.077524662017822],[117,-20,66,6.078339099884033],[117,-20,67,6.070504665374756],[117,-20,68,6.061385154724121],[117,-20,69,6.055147171020508],[117,-20,70,6.05340576171875],[117,-20,71,6.053691387176514],[117,-20,72,6.056863307952881],[117,-20,73,6.066365718841553],[117,-20,74,6.079727649688721],[117,-20,75,6.093751907348633],[117,-20,76,6.108086585998535],[117,-20,77,6.1232171058654785],[117,-20,78,6.13298225402832],[117,-20,79,6.136005878448486],[117,-19,64,6.066739082336426],[117,-19,65,6.077524662017822],[117,-19,66,6.078339099884033],[117,-19,67,6.070504665374756],[117,-19,68,6.061385154724121],[117,-19,69,6.055147171020508],[117,-19,70,6.05340576171875],[117,-19,71,6.053691387176514],[117,-19,72,6.056863307952881],[117,-19,73,6.066365718841553],[117,-19,74,6.079727649688721],[117,-19,75,6.093751907348633],[117,-19,76,6.108086585998535],[117,-19,77,6.1232171058654785],[117,-19,78,6.13298225402832],[117,-19,79,6.136005878448486],[117,-18,64,6.066739082336426],[117,-18,65,6.077524662017822],[117,-18,66,6.078339099884033],[117,-18,67,6.070504665374756],[117,-18,68,6.061385154724121],[117,-18,69,6.055147171020508],[117,-18,70,6.05340576171875],[117,-18,71,6.053691387176514],[117,-18,72,6.056863307952881],[117,-18,73,6.066365718841553],[117,-18,74,6.079727649688721],[117,-18,75,6.093751907348633],[117,-18,76,6.108086585998535],[117,-18,77,6.1232171058654785],[117,-18,78,6.13298225402832],[117,-18,79,6.136005878448486],[117,-17,64,6.066739082336426],[117,-17,65,6.077524662017822],[117,-17,66,6.078339099884033],[117,-17,67,6.070504665374756],[117,-17,68,6.061385154724121],[117,-17,69,6.055147171020508],[117,-17,70,6.05340576171875],[117,-17,71,6.053691387176514],[117,-17,72,6.056863307952881],[117,-17,73,6.066365718841553],[117,-17,74,6.079727649688721],[117,-17,75,6.093751907348633],[117,-17,76,6.108086585998535],[117,-17,77,6.1232171058654785],[117,-17,78,6.13298225402832],[117,-17,79,6.136005878448486],[117,-16,64,6.066739082336426],[117,-16,65,6.077524662017822],[117,-16,66,6.078339099884033],[117,-16,67,6.070504665374756],[117,-16,68,6.061385154724121],[117,-16,69,6.055147171020508],[117,-16,70,6.05340576171875],[117,-16,71,6.053691387176514],[117,-16,72,6.056863307952881],[117,-16,73,6.066365718841553],[117,-16,74,6.079727649688721],[117,-16,75,6.093751907348633],[117,-16,76,6.108086585998535],[117,-16,77,6.1232171058654785],[117,-16,78,6.13298225402832],[117,-16,79,6.136005878448486],[117,-15,64,6.066739082336426],[117,-15,65,6.077524662017822],[117,-15,66,6.078339099884033],[117,-15,67,6.070504665374756],[117,-15,68,6.061385154724121],[117,-15,69,6.055147171020508],[117,-15,70,6.05340576171875],[117,-15,71,6.053691387176514],[117,-15,72,6.056863307952881],[117,-15,73,6.066365718841553],[117,-15,74,6.079727649688721],[117,-15,75,6.093751907348633],[117,-15,76,6.108086585998535],[117,-15,77,6.1232171058654785],[117,-15,78,6.13298225402832],[117,-15,79,6.136005878448486],[117,-14,64,6.066739082336426],[117,-14,65,6.077524662017822],[117,-14,66,6.078339099884033],[117,-14,67,6.070504665374756],[117,-14,68,6.061385154724121],[117,-14,69,6.055147171020508],[117,-14,70,6.05340576171875],[117,-14,71,6.053691387176514],[117,-14,72,6.056863307952881],[117,-14,73,6.066365718841553],[117,-14,74,6.079727649688721],[117,-14,75,6.093751907348633],[117,-14,76,6.108086585998535],[117,-14,77,6.1232171058654785],[117,-14,78,6.13298225402832],[117,-14,79,6.136005878448486],[117,-13,64,6.066739082336426],[117,-13,65,6.077524662017822],[117,-13,66,6.078339099884033],[117,-13,67,6.070504665374756],[117,-13,68,6.061385154724121],[117,-13,69,6.055147171020508],[117,-13,70,6.05340576171875],[117,-13,71,6.053691387176514],[117,-13,72,6.056863307952881],[117,-13,73,6.066365718841553],[117,-13,74,6.079727649688721],[117,-13,75,6.093751907348633],[117,-13,76,6.108086585998535],[117,-13,77,6.1232171058654785],[117,-13,78,6.13298225402832],[117,-13,79,6.136005878448486],[117,-12,64,6.066739082336426],[117,-12,65,6.077524662017822],[117,-12,66,6.078339099884033],[117,-12,67,6.070504665374756],[117,-12,68,6.061385154724121],[117,-12,69,6.055147171020508],[117,-12,70,6.05340576171875],[117,-12,71,6.053691387176514],[117,-12,72,6.056863307952881],[117,-12,73,6.066365718841553],[117,-12,74,6.079727649688721],[117,-12,75,6.093751907348633],[117,-12,76,6.108086585998535],[117,-12,77,6.1232171058654785],[117,-12,78,6.13298225402832],[117,-12,79,6.136005878448486],[117,-11,64,6.066739082336426],[117,-11,65,6.077524662017822],[117,-11,66,6.078339099884033],[117,-11,67,6.070504665374756],[117,-11,68,6.061385154724121],[117,-11,69,6.055147171020508],[117,-11,70,6.05340576171875],[117,-11,71,6.053691387176514],[117,-11,72,6.056863307952881],[117,-11,73,6.066365718841553],[117,-11,74,6.079727649688721],[117,-11,75,6.093751907348633],[117,-11,76,6.108086585998535],[117,-11,77,6.1232171058654785],[117,-11,78,6.13298225402832],[117,-11,79,6.136005878448486],[117,-10,64,6.066739082336426],[117,-10,65,6.077524662017822],[117,-10,66,6.078339099884033],[117,-10,67,6.070504665374756],[117,-10,68,6.061385154724121],[117,-10,69,6.055147171020508],[117,-10,70,6.05340576171875],[117,-10,71,6.053691387176514],[117,-10,72,6.056863307952881],[117,-10,73,6.066365718841553],[117,-10,74,6.079727649688721],[117,-10,75,6.093751907348633],[117,-10,76,6.108086585998535],[117,-10,77,6.1232171058654785],[117,-10,78,6.13298225402832],[117,-10,79,6.136005878448486],[117,-9,64,6.066739082336426],[117,-9,65,6.077524662017822],[117,-9,66,6.078339099884033],[117,-9,67,6.070504665374756],[117,-9,68,6.061385154724121],[117,-9,69,6.055147171020508],[117,-9,70,6.05340576171875],[117,-9,71,6.053691387176514],[117,-9,72,6.056863307952881],[117,-9,73,6.066365718841553],[117,-9,74,6.079727649688721],[117,-9,75,6.093751907348633],[117,-9,76,6.108086585998535],[117,-9,77,6.1232171058654785],[117,-9,78,6.13298225402832],[117,-9,79,6.136005878448486],[117,-8,64,6.066739082336426],[117,-8,65,6.077524662017822],[117,-8,66,6.078339099884033],[117,-8,67,6.070504665374756],[117,-8,68,6.061385154724121],[117,-8,69,6.055147171020508],[117,-8,70,6.05340576171875],[117,-8,71,6.053691387176514],[117,-8,72,6.056863307952881],[117,-8,73,6.066365718841553],[117,-8,74,6.079727649688721],[117,-8,75,6.093751907348633],[117,-8,76,6.108086585998535],[117,-8,77,6.1232171058654785],[117,-8,78,6.13298225402832],[117,-8,79,6.136005878448486],[117,-7,64,6.066739082336426],[117,-7,65,6.077524662017822],[117,-7,66,6.078339099884033],[117,-7,67,6.070504665374756],[117,-7,68,6.061385154724121],[117,-7,69,6.055147171020508],[117,-7,70,6.05340576171875],[117,-7,71,6.053691387176514],[117,-7,72,6.056863307952881],[117,-7,73,6.066365718841553],[117,-7,74,6.079727649688721],[117,-7,75,6.093751907348633],[117,-7,76,6.108086585998535],[117,-7,77,6.1232171058654785],[117,-7,78,6.13298225402832],[117,-7,79,6.136005878448486],[117,-6,64,6.066739082336426],[117,-6,65,6.077524662017822],[117,-6,66,6.078339099884033],[117,-6,67,6.070504665374756],[117,-6,68,6.061385154724121],[117,-6,69,6.055147171020508],[117,-6,70,6.05340576171875],[117,-6,71,6.053691387176514],[117,-6,72,6.056863307952881],[117,-6,73,6.066365718841553],[117,-6,74,6.079727649688721],[117,-6,75,6.093751907348633],[117,-6,76,6.108086585998535],[117,-6,77,6.1232171058654785],[117,-6,78,6.13298225402832],[117,-6,79,6.136005878448486],[117,-5,64,6.066739082336426],[117,-5,65,6.077524662017822],[117,-5,66,6.078339099884033],[117,-5,67,6.070504665374756],[117,-5,68,6.061385154724121],[117,-5,69,6.055147171020508],[117,-5,70,6.05340576171875],[117,-5,71,6.053691387176514],[117,-5,72,6.056863307952881],[117,-5,73,6.066365718841553],[117,-5,74,6.079727649688721],[117,-5,75,6.093751907348633],[117,-5,76,6.108086585998535],[117,-5,77,6.1232171058654785],[117,-5,78,6.13298225402832],[117,-5,79,6.136005878448486],[117,-4,64,6.066739082336426],[117,-4,65,6.077524662017822],[117,-4,66,6.078339099884033],[117,-4,67,6.070504665374756],[117,-4,68,6.061385154724121],[117,-4,69,6.055147171020508],[117,-4,70,6.05340576171875],[117,-4,71,6.053691387176514],[117,-4,72,6.056863307952881],[117,-4,73,6.066365718841553],[117,-4,74,6.079727649688721],[117,-4,75,6.093751907348633],[117,-4,76,6.108086585998535],[117,-4,77,6.1232171058654785],[117,-4,78,6.13298225402832],[117,-4,79,6.136005878448486],[117,-3,64,6.066739082336426],[117,-3,65,6.077524662017822],[117,-3,66,6.078339099884033],[117,-3,67,6.070504665374756],[117,-3,68,6.061385154724121],[117,-3,69,6.055147171020508],[117,-3,70,6.05340576171875],[117,-3,71,6.053691387176514],[117,-3,72,6.056863307952881],[117,-3,73,6.066365718841553],[117,-3,74,6.079727649688721],[117,-3,75,6.093751907348633],[117,-3,76,6.108086585998535],[117,-3,77,6.1232171058654785],[117,-3,78,6.13298225402832],[117,-3,79,6.136005878448486],[117,-2,64,6.066739082336426],[117,-2,65,6.077524662017822],[117,-2,66,6.078339099884033],[117,-2,67,6.070504665374756],[117,-2,68,6.061385154724121],[117,-2,69,6.055147171020508],[117,-2,70,6.05340576171875],[117,-2,71,6.053691387176514],[117,-2,72,6.056863307952881],[117,-2,73,6.066365718841553],[117,-2,74,6.079727649688721],[117,-2,75,6.093751907348633],[117,-2,76,6.108086585998535],[117,-2,77,6.1232171058654785],[117,-2,78,6.13298225402832],[117,-2,79,6.136005878448486],[117,-1,64,6.066739082336426],[117,-1,65,6.077524662017822],[117,-1,66,6.078339099884033],[117,-1,67,6.070504665374756],[117,-1,68,6.061385154724121],[117,-1,69,6.055147171020508],[117,-1,70,6.05340576171875],[117,-1,71,6.053691387176514],[117,-1,72,6.056863307952881],[117,-1,73,6.066365718841553],[117,-1,74,6.079727649688721],[117,-1,75,6.093751907348633],[117,-1,76,6.108086585998535],[117,-1,77,6.1232171058654785],[117,-1,78,6.13298225402832],[117,-1,79,6.136005878448486],[117,0,64,6.066739082336426],[117,0,65,6.077524662017822],[117,0,66,6.078339099884033],[117,0,67,6.070504665374756],[117,0,68,6.061385154724121],[117,0,69,6.055147171020508],[117,0,70,6.05340576171875],[117,0,71,6.053691387176514],[117,0,72,6.056863307952881],[117,0,73,6.066365718841553],[117,0,74,6.079727649688721],[117,0,75,6.093751907348633],[117,0,76,6.108086585998535],[117,0,77,6.1232171058654785],[117,0,78,6.13298225402832],[117,0,79,6.136005878448486],[117,1,64,6.066739082336426],[117,1,65,6.077524662017822],[117,1,66,6.078339099884033],[117,1,67,6.070504665374756],[117,1,68,6.061385154724121],[117,1,69,6.055147171020508],[117,1,70,6.05340576171875],[117,1,71,6.053691387176514],[117,1,72,6.056863307952881],[117,1,73,6.066365718841553],[117,1,74,6.079727649688721],[117,1,75,6.093751907348633],[117,1,76,6.108086585998535],[117,1,77,6.1232171058654785],[117,1,78,6.13298225402832],[117,1,79,6.136005878448486],[117,2,64,6.066739082336426],[117,2,65,6.077524662017822],[117,2,66,6.078339099884033],[117,2,67,6.070504665374756],[117,2,68,6.061385154724121],[117,2,69,6.055147171020508],[117,2,70,6.05340576171875],[117,2,71,6.053691387176514],[117,2,72,6.056863307952881],[117,2,73,6.066365718841553],[117,2,74,6.079727649688721],[117,2,75,6.093751907348633],[117,2,76,6.108086585998535],[117,2,77,6.1232171058654785],[117,2,78,6.13298225402832],[117,2,79,6.136005878448486],[117,3,64,6.066739082336426],[117,3,65,6.077524662017822],[117,3,66,6.078339099884033],[117,3,67,6.070504665374756],[117,3,68,6.061385154724121],[117,3,69,6.055147171020508],[117,3,70,6.05340576171875],[117,3,71,6.053691387176514],[117,3,72,6.056863307952881],[117,3,73,6.066365718841553],[117,3,74,6.079727649688721],[117,3,75,6.093751907348633],[117,3,76,6.108086585998535],[117,3,77,6.1232171058654785],[117,3,78,6.13298225402832],[117,3,79,6.136005878448486],[117,4,64,6.066739082336426],[117,4,65,6.077524662017822],[117,4,66,6.078339099884033],[117,4,67,6.070504665374756],[117,4,68,6.061385154724121],[117,4,69,6.055147171020508],[117,4,70,6.05340576171875],[117,4,71,6.053691387176514],[117,4,72,6.056863307952881],[117,4,73,6.066365718841553],[117,4,74,6.079727649688721],[117,4,75,6.093751907348633],[117,4,76,6.108086585998535],[117,4,77,6.1232171058654785],[117,4,78,6.13298225402832],[117,4,79,6.136005878448486],[117,5,64,6.066739082336426],[117,5,65,6.077524662017822],[117,5,66,6.078339099884033],[117,5,67,6.070504665374756],[117,5,68,6.061385154724121],[117,5,69,6.055147171020508],[117,5,70,6.05340576171875],[117,5,71,6.053691387176514],[117,5,72,6.056863307952881],[117,5,73,6.066365718841553],[117,5,74,6.079727649688721],[117,5,75,6.093751907348633],[117,5,76,6.108086585998535],[117,5,77,6.1232171058654785],[117,5,78,6.13298225402832],[117,5,79,6.136005878448486],[117,6,64,6.066739082336426],[117,6,65,6.077524662017822],[117,6,66,6.078339099884033],[117,6,67,6.070504665374756],[117,6,68,6.061385154724121],[117,6,69,6.055147171020508],[117,6,70,6.05340576171875],[117,6,71,6.053691387176514],[117,6,72,6.056863307952881],[117,6,73,6.066365718841553],[117,6,74,6.079727649688721],[117,6,75,6.093751907348633],[117,6,76,6.108086585998535],[117,6,77,6.1232171058654785],[117,6,78,6.13298225402832],[117,6,79,6.136005878448486],[117,7,64,6.066739082336426],[117,7,65,6.077524662017822],[117,7,66,6.078339099884033],[117,7,67,6.070504665374756],[117,7,68,6.061385154724121],[117,7,69,6.055147171020508],[117,7,70,6.05340576171875],[117,7,71,6.053691387176514],[117,7,72,6.056863307952881],[117,7,73,6.066365718841553],[117,7,74,6.079727649688721],[117,7,75,6.093751907348633],[117,7,76,6.108086585998535],[117,7,77,6.1232171058654785],[117,7,78,6.13298225402832],[117,7,79,6.136005878448486],[117,8,64,6.066739082336426],[117,8,65,6.077524662017822],[117,8,66,6.078339099884033],[117,8,67,6.070504665374756],[117,8,68,6.061385154724121],[117,8,69,6.055147171020508],[117,8,70,6.05340576171875],[117,8,71,6.053691387176514],[117,8,72,6.056863307952881],[117,8,73,6.066365718841553],[117,8,74,6.079727649688721],[117,8,75,6.093751907348633],[117,8,76,6.108086585998535],[117,8,77,6.1232171058654785],[117,8,78,6.13298225402832],[117,8,79,6.136005878448486],[117,9,64,6.066739082336426],[117,9,65,6.077524662017822],[117,9,66,6.078339099884033],[117,9,67,6.070504665374756],[117,9,68,6.061385154724121],[117,9,69,6.055147171020508],[117,9,70,6.05340576171875],[117,9,71,6.053691387176514],[117,9,72,6.056863307952881],[117,9,73,6.066365718841553],[117,9,74,6.079727649688721],[117,9,75,6.093751907348633],[117,9,76,6.108086585998535],[117,9,77,6.1232171058654785],[117,9,78,6.13298225402832],[117,9,79,6.136005878448486],[117,10,64,6.066739082336426],[117,10,65,6.077524662017822],[117,10,66,6.078339099884033],[117,10,67,6.070504665374756],[117,10,68,6.061385154724121],[117,10,69,6.055147171020508],[117,10,70,6.05340576171875],[117,10,71,6.053691387176514],[117,10,72,6.056863307952881],[117,10,73,6.066365718841553],[117,10,74,6.079727649688721],[117,10,75,6.093751907348633],[117,10,76,6.108086585998535],[117,10,77,6.1232171058654785],[117,10,78,6.13298225402832],[117,10,79,6.136005878448486],[117,11,64,6.066739082336426],[117,11,65,6.077524662017822],[117,11,66,6.078339099884033],[117,11,67,6.070504665374756],[117,11,68,6.061385154724121],[117,11,69,6.055147171020508],[117,11,70,6.05340576171875],[117,11,71,6.053691387176514],[117,11,72,6.056863307952881],[117,11,73,6.066365718841553],[117,11,74,6.079727649688721],[117,11,75,6.093751907348633],[117,11,76,6.108086585998535],[117,11,77,6.1232171058654785],[117,11,78,6.13298225402832],[117,11,79,6.136005878448486],[117,12,64,6.066739082336426],[117,12,65,6.077524662017822],[117,12,66,6.078339099884033],[117,12,67,6.070504665374756],[117,12,68,6.061385154724121],[117,12,69,6.055147171020508],[117,12,70,6.05340576171875],[117,12,71,6.053691387176514],[117,12,72,6.056863307952881],[117,12,73,6.066365718841553],[117,12,74,6.079727649688721],[117,12,75,6.093751907348633],[117,12,76,6.108086585998535],[117,12,77,6.1232171058654785],[117,12,78,6.13298225402832],[117,12,79,6.136005878448486],[117,13,64,6.066739082336426],[117,13,65,6.077524662017822],[117,13,66,6.078339099884033],[117,13,67,6.070504665374756],[117,13,68,6.061385154724121],[117,13,69,6.055147171020508],[117,13,70,6.05340576171875],[117,13,71,6.053691387176514],[117,13,72,6.056863307952881],[117,13,73,6.066365718841553],[117,13,74,6.079727649688721],[117,13,75,6.093751907348633],[117,13,76,6.108086585998535],[117,13,77,6.1232171058654785],[117,13,78,6.13298225402832],[117,13,79,6.136005878448486],[117,14,64,6.066739082336426],[117,14,65,6.077524662017822],[117,14,66,6.078339099884033],[117,14,67,6.070504665374756],[117,14,68,6.061385154724121],[117,14,69,6.055147171020508],[117,14,70,6.05340576171875],[117,14,71,6.053691387176514],[117,14,72,6.056863307952881],[117,14,73,6.066365718841553],[117,14,74,6.079727649688721],[117,14,75,6.093751907348633],[117,14,76,6.108086585998535],[117,14,77,6.1232171058654785],[117,14,78,6.13298225402832],[117,14,79,6.136005878448486],[117,15,64,6.066739082336426],[117,15,65,6.077524662017822],[117,15,66,6.078339099884033],[117,15,67,6.070504665374756],[117,15,68,6.061385154724121],[117,15,69,6.055147171020508],[117,15,70,6.05340576171875],[117,15,71,6.053691387176514],[117,15,72,6.056863307952881],[117,15,73,6.066365718841553],[117,15,74,6.079727649688721],[117,15,75,6.093751907348633],[117,15,76,6.108086585998535],[117,15,77,6.1232171058654785],[117,15,78,6.13298225402832],[117,15,79,6.136005878448486],[117,16,64,6.066739082336426],[117,16,65,6.077524662017822],[117,16,66,6.078339099884033],[117,16,67,6.070504665374756],[117,16,68,6.061385154724121],[117,16,69,6.055147171020508],[117,16,70,6.05340576171875],[117,16,71,6.053691387176514],[117,16,72,6.056863307952881],[117,16,73,6.066365718841553],[117,16,74,6.079727649688721],[117,16,75,6.093751907348633],[117,16,76,6.108086585998535],[117,16,77,6.1232171058654785],[117,16,78,6.13298225402832],[117,16,79,6.136005878448486],[117,17,64,6.066739082336426],[117,17,65,6.077524662017822],[117,17,66,6.078339099884033],[117,17,67,6.070504665374756],[117,17,68,6.061385154724121],[117,17,69,6.055147171020508],[117,17,70,6.05340576171875],[117,17,71,6.053691387176514],[117,17,72,6.056863307952881],[117,17,73,6.066365718841553],[117,17,74,6.079727649688721],[117,17,75,6.093751907348633],[117,17,76,6.108086585998535],[117,17,77,6.1232171058654785],[117,17,78,6.13298225402832],[117,17,79,6.136005878448486],[117,18,64,6.066739082336426],[117,18,65,6.077524662017822],[117,18,66,6.078339099884033],[117,18,67,6.070504665374756],[117,18,68,6.061385154724121],[117,18,69,6.055147171020508],[117,18,70,6.05340576171875],[117,18,71,6.053691387176514],[117,18,72,6.056863307952881],[117,18,73,6.066365718841553],[117,18,74,6.079727649688721],[117,18,75,6.093751907348633],[117,18,76,6.108086585998535],[117,18,77,6.1232171058654785],[117,18,78,6.13298225402832],[117,18,79,6.136005878448486],[117,19,64,6.066739082336426],[117,19,65,6.077524662017822],[117,19,66,6.078339099884033],[117,19,67,6.070504665374756],[117,19,68,6.061385154724121],[117,19,69,6.055147171020508],[117,19,70,6.05340576171875],[117,19,71,6.053691387176514],[117,19,72,6.056863307952881],[117,19,73,6.066365718841553],[117,19,74,6.079727649688721],[117,19,75,6.093751907348633],[117,19,76,6.108086585998535],[117,19,77,6.1232171058654785],[117,19,78,6.13298225402832],[117,19,79,6.136005878448486],[117,20,64,6.066739082336426],[117,20,65,6.077524662017822],[117,20,66,6.078339099884033],[117,20,67,6.070504665374756],[117,20,68,6.061385154724121],[117,20,69,6.055147171020508],[117,20,70,6.05340576171875],[117,20,71,6.053691387176514],[117,20,72,6.056863307952881],[117,20,73,6.066365718841553],[117,20,74,6.079727649688721],[117,20,75,6.093751907348633],[117,20,76,6.108086585998535],[117,20,77,6.1232171058654785],[117,20,78,6.13298225402832],[117,20,79,6.136005878448486],[117,21,64,6.066739082336426],[117,21,65,6.077524662017822],[117,21,66,6.078339099884033],[117,21,67,6.070504665374756],[117,21,68,6.061385154724121],[117,21,69,6.055147171020508],[117,21,70,6.05340576171875],[117,21,71,6.053691387176514],[117,21,72,6.056863307952881],[117,21,73,6.066365718841553],[117,21,74,6.079727649688721],[117,21,75,6.093751907348633],[117,21,76,6.108086585998535],[117,21,77,6.1232171058654785],[117,21,78,6.13298225402832],[117,21,79,6.136005878448486],[117,22,64,6.066739082336426],[117,22,65,6.077524662017822],[117,22,66,6.078339099884033],[117,22,67,6.070504665374756],[117,22,68,6.061385154724121],[117,22,69,6.055147171020508],[117,22,70,6.05340576171875],[117,22,71,6.053691387176514],[117,22,72,6.056863307952881],[117,22,73,6.066365718841553],[117,22,74,6.079727649688721],[117,22,75,6.093751907348633],[117,22,76,6.108086585998535],[117,22,77,6.1232171058654785],[117,22,78,6.13298225402832],[117,22,79,6.136005878448486],[117,23,64,6.066739082336426],[117,23,65,6.077524662017822],[117,23,66,6.078339099884033],[117,23,67,6.070504665374756],[117,23,68,6.061385154724121],[117,23,69,6.055147171020508],[117,23,70,6.05340576171875],[117,23,71,6.053691387176514],[117,23,72,6.056863307952881],[117,23,73,6.066365718841553],[117,23,74,6.079727649688721],[117,23,75,6.093751907348633],[117,23,76,6.108086585998535],[117,23,77,6.1232171058654785],[117,23,78,6.13298225402832],[117,23,79,6.136005878448486],[117,24,64,6.066739082336426],[117,24,65,6.077524662017822],[117,24,66,6.078339099884033],[117,24,67,6.070504665374756],[117,24,68,6.061385154724121],[117,24,69,6.055147171020508],[117,24,70,6.05340576171875],[117,24,71,6.053691387176514],[117,24,72,6.056863307952881],[117,24,73,6.066365718841553],[117,24,74,6.079727649688721],[117,24,75,6.093751907348633],[117,24,76,6.108086585998535],[117,24,77,6.1232171058654785],[117,24,78,6.13298225402832],[117,24,79,6.136005878448486],[117,25,64,6.066739082336426],[117,25,65,6.077524662017822],[117,25,66,6.078339099884033],[117,25,67,6.070504665374756],[117,25,68,6.061385154724121],[117,25,69,6.055147171020508],[117,25,70,6.05340576171875],[117,25,71,6.053691387176514],[117,25,72,6.056863307952881],[117,25,73,6.066365718841553],[117,25,74,6.079727649688721],[117,25,75,6.093751907348633],[117,25,76,6.108086585998535],[117,25,77,6.1232171058654785],[117,25,78,6.13298225402832],[117,25,79,6.136005878448486],[117,26,64,6.066739082336426],[117,26,65,6.077524662017822],[117,26,66,6.078339099884033],[117,26,67,6.070504665374756],[117,26,68,6.061385154724121],[117,26,69,6.055147171020508],[117,26,70,6.05340576171875],[117,26,71,6.053691387176514],[117,26,72,6.056863307952881],[117,26,73,6.066365718841553],[117,26,74,6.079727649688721],[117,26,75,6.093751907348633],[117,26,76,6.108086585998535],[117,26,77,6.1232171058654785],[117,26,78,6.13298225402832],[117,26,79,6.136005878448486],[117,27,64,6.066739082336426],[117,27,65,6.077524662017822],[117,27,66,6.078339099884033],[117,27,67,6.070504665374756],[117,27,68,6.061385154724121],[117,27,69,6.055147171020508],[117,27,70,6.05340576171875],[117,27,71,6.053691387176514],[117,27,72,6.056863307952881],[117,27,73,6.066365718841553],[117,27,74,6.079727649688721],[117,27,75,6.093751907348633],[117,27,76,6.108086585998535],[117,27,77,6.1232171058654785],[117,27,78,6.13298225402832],[117,27,79,6.136005878448486],[117,28,64,6.066739082336426],[117,28,65,6.077524662017822],[117,28,66,6.078339099884033],[117,28,67,6.070504665374756],[117,28,68,6.061385154724121],[117,28,69,6.055147171020508],[117,28,70,6.05340576171875],[117,28,71,6.053691387176514],[117,28,72,6.056863307952881],[117,28,73,6.066365718841553],[117,28,74,6.079727649688721],[117,28,75,6.093751907348633],[117,28,76,6.108086585998535],[117,28,77,6.1232171058654785],[117,28,78,6.13298225402832],[117,28,79,6.136005878448486],[117,29,64,6.066739082336426],[117,29,65,6.077524662017822],[117,29,66,6.078339099884033],[117,29,67,6.070504665374756],[117,29,68,6.061385154724121],[117,29,69,6.055147171020508],[117,29,70,6.05340576171875],[117,29,71,6.053691387176514],[117,29,72,6.056863307952881],[117,29,73,6.066365718841553],[117,29,74,6.079727649688721],[117,29,75,6.093751907348633],[117,29,76,6.108086585998535],[117,29,77,6.1232171058654785],[117,29,78,6.13298225402832],[117,29,79,6.136005878448486],[117,30,64,6.066739082336426],[117,30,65,6.077524662017822],[117,30,66,6.078339099884033],[117,30,67,6.070504665374756],[117,30,68,6.061385154724121],[117,30,69,6.055147171020508],[117,30,70,6.05340576171875],[117,30,71,6.053691387176514],[117,30,72,6.056863307952881],[117,30,73,6.066365718841553],[117,30,74,6.079727649688721],[117,30,75,6.093751907348633],[117,30,76,6.108086585998535],[117,30,77,6.1232171058654785],[117,30,78,6.13298225402832],[117,30,79,6.136005878448486],[117,31,64,6.066739082336426],[117,31,65,6.077524662017822],[117,31,66,6.078339099884033],[117,31,67,6.070504665374756],[117,31,68,6.061385154724121],[117,31,69,6.055147171020508],[117,31,70,6.05340576171875],[117,31,71,6.053691387176514],[117,31,72,6.056863307952881],[117,31,73,6.066365718841553],[117,31,74,6.079727649688721],[117,31,75,6.093751907348633],[117,31,76,6.108086585998535],[117,31,77,6.1232171058654785],[117,31,78,6.13298225402832],[117,31,79,6.136005878448486],[117,32,64,6.066739082336426],[117,32,65,6.077524662017822],[117,32,66,6.078339099884033],[117,32,67,6.070504665374756],[117,32,68,6.061385154724121],[117,32,69,6.055147171020508],[117,32,70,6.05340576171875],[117,32,71,6.053691387176514],[117,32,72,6.056863307952881],[117,32,73,6.066365718841553],[117,32,74,6.079727649688721],[117,32,75,6.093751907348633],[117,32,76,6.108086585998535],[117,32,77,6.1232171058654785],[117,32,78,6.13298225402832],[117,32,79,6.136005878448486],[117,33,64,6.066739082336426],[117,33,65,6.077524662017822],[117,33,66,6.078339099884033],[117,33,67,6.070504665374756],[117,33,68,6.061385154724121],[117,33,69,6.055147171020508],[117,33,70,6.05340576171875],[117,33,71,6.053691387176514],[117,33,72,6.056863307952881],[117,33,73,6.066365718841553],[117,33,74,6.079727649688721],[117,33,75,6.093751907348633],[117,33,76,6.108086585998535],[117,33,77,6.1232171058654785],[117,33,78,6.13298225402832],[117,33,79,6.136005878448486],[117,34,64,6.066739082336426],[117,34,65,6.077524662017822],[117,34,66,6.078339099884033],[117,34,67,6.070504665374756],[117,34,68,6.061385154724121],[117,34,69,6.055147171020508],[117,34,70,6.05340576171875],[117,34,71,6.053691387176514],[117,34,72,6.056863307952881],[117,34,73,6.066365718841553],[117,34,74,6.079727649688721],[117,34,75,6.093751907348633],[117,34,76,6.108086585998535],[117,34,77,6.1232171058654785],[117,34,78,6.13298225402832],[117,34,79,6.136005878448486],[117,35,64,6.066739082336426],[117,35,65,6.077524662017822],[117,35,66,6.078339099884033],[117,35,67,6.070504665374756],[117,35,68,6.061385154724121],[117,35,69,6.055147171020508],[117,35,70,6.05340576171875],[117,35,71,6.053691387176514],[117,35,72,6.056863307952881],[117,35,73,6.066365718841553],[117,35,74,6.079727649688721],[117,35,75,6.093751907348633],[117,35,76,6.108086585998535],[117,35,77,6.1232171058654785],[117,35,78,6.13298225402832],[117,35,79,6.136005878448486],[117,36,64,6.066739082336426],[117,36,65,6.077524662017822],[117,36,66,6.078339099884033],[117,36,67,6.070504665374756],[117,36,68,6.061385154724121],[117,36,69,6.055147171020508],[117,36,70,6.05340576171875],[117,36,71,6.053691387176514],[117,36,72,6.056863307952881],[117,36,73,6.066365718841553],[117,36,74,6.079727649688721],[117,36,75,6.093751907348633],[117,36,76,6.108086585998535],[117,36,77,6.1232171058654785],[117,36,78,6.13298225402832],[117,36,79,6.136005878448486],[117,37,64,6.066739082336426],[117,37,65,6.077524662017822],[117,37,66,6.078339099884033],[117,37,67,6.070504665374756],[117,37,68,6.061385154724121],[117,37,69,6.055147171020508],[117,37,70,6.05340576171875],[117,37,71,6.053691387176514],[117,37,72,6.056863307952881],[117,37,73,6.066365718841553],[117,37,74,6.079727649688721],[117,37,75,6.093751907348633],[117,37,76,6.108086585998535],[117,37,77,6.1232171058654785],[117,37,78,6.13298225402832],[117,37,79,6.136005878448486],[117,38,64,6.066739082336426],[117,38,65,6.077524662017822],[117,38,66,6.078339099884033],[117,38,67,6.070504665374756],[117,38,68,6.061385154724121],[117,38,69,6.055147171020508],[117,38,70,6.05340576171875],[117,38,71,6.053691387176514],[117,38,72,6.056863307952881],[117,38,73,6.066365718841553],[117,38,74,6.079727649688721],[117,38,75,6.093751907348633],[117,38,76,6.108086585998535],[117,38,77,6.1232171058654785],[117,38,78,6.13298225402832],[117,38,79,6.136005878448486],[117,39,64,6.066739082336426],[117,39,65,6.077524662017822],[117,39,66,6.078339099884033],[117,39,67,6.070504665374756],[117,39,68,6.061385154724121],[117,39,69,6.055147171020508],[117,39,70,6.05340576171875],[117,39,71,6.053691387176514],[117,39,72,6.056863307952881],[117,39,73,6.066365718841553],[117,39,74,6.079727649688721],[117,39,75,6.093751907348633],[117,39,76,6.108086585998535],[117,39,77,6.1232171058654785],[117,39,78,6.13298225402832],[117,39,79,6.136005878448486],[117,40,64,6.066739082336426],[117,40,65,6.077524662017822],[117,40,66,6.078339099884033],[117,40,67,6.070504665374756],[117,40,68,6.061385154724121],[117,40,69,6.055147171020508],[117,40,70,6.05340576171875],[117,40,71,6.053691387176514],[117,40,72,6.056863307952881],[117,40,73,6.066365718841553],[117,40,74,6.079727649688721],[117,40,75,6.093751907348633],[117,40,76,6.108086585998535],[117,40,77,6.1232171058654785],[117,40,78,6.13298225402832],[117,40,79,6.136005878448486],[117,41,64,6.066739082336426],[117,41,65,6.077524662017822],[117,41,66,6.078339099884033],[117,41,67,6.070504665374756],[117,41,68,6.061385154724121],[117,41,69,6.055147171020508],[117,41,70,6.05340576171875],[117,41,71,6.053691387176514],[117,41,72,6.056863307952881],[117,41,73,6.066365718841553],[117,41,74,6.079727649688721],[117,41,75,6.093751907348633],[117,41,76,6.108086585998535],[117,41,77,6.1232171058654785],[117,41,78,6.13298225402832],[117,41,79,6.136005878448486],[117,42,64,6.066739082336426],[117,42,65,6.077524662017822],[117,42,66,6.078339099884033],[117,42,67,6.070504665374756],[117,42,68,6.061385154724121],[117,42,69,6.055147171020508],[117,42,70,6.05340576171875],[117,42,71,6.053691387176514],[117,42,72,6.056863307952881],[117,42,73,6.066365718841553],[117,42,74,6.079727649688721],[117,42,75,6.093751907348633],[117,42,76,6.108086585998535],[117,42,77,6.1232171058654785],[117,42,78,6.13298225402832],[117,42,79,6.136005878448486],[117,43,64,6.066739082336426],[117,43,65,6.077524662017822],[117,43,66,6.078339099884033],[117,43,67,6.070504665374756],[117,43,68,6.061385154724121],[117,43,69,6.055147171020508],[117,43,70,6.05340576171875],[117,43,71,6.053691387176514],[117,43,72,6.056863307952881],[117,43,73,6.066365718841553],[117,43,74,6.079727649688721],[117,43,75,6.093751907348633],[117,43,76,6.108086585998535],[117,43,77,6.1232171058654785],[117,43,78,6.13298225402832],[117,43,79,6.136005878448486],[117,44,64,6.066739082336426],[117,44,65,6.077524662017822],[117,44,66,6.078339099884033],[117,44,67,6.070504665374756],[117,44,68,6.061385154724121],[117,44,69,6.055147171020508],[117,44,70,6.05340576171875],[117,44,71,6.053691387176514],[117,44,72,6.056863307952881],[117,44,73,6.066365718841553],[117,44,74,6.079727649688721],[117,44,75,6.093751907348633],[117,44,76,6.108086585998535],[117,44,77,6.1232171058654785],[117,44,78,6.13298225402832],[117,44,79,6.136005878448486],[117,45,64,6.066739082336426],[117,45,65,6.077524662017822],[117,45,66,6.078339099884033],[117,45,67,6.070504665374756],[117,45,68,6.061385154724121],[117,45,69,6.055147171020508],[117,45,70,6.05340576171875],[117,45,71,6.053691387176514],[117,45,72,6.056863307952881],[117,45,73,6.066365718841553],[117,45,74,6.079727649688721],[117,45,75,6.093751907348633],[117,45,76,6.108086585998535],[117,45,77,6.1232171058654785],[117,45,78,6.13298225402832],[117,45,79,6.136005878448486],[117,46,64,6.066739082336426],[117,46,65,6.077524662017822],[117,46,66,6.078339099884033],[117,46,67,6.070504665374756],[117,46,68,6.061385154724121],[117,46,69,6.055147171020508],[117,46,70,6.05340576171875],[117,46,71,6.053691387176514],[117,46,72,6.056863307952881],[117,46,73,6.066365718841553],[117,46,74,6.079727649688721],[117,46,75,6.093751907348633],[117,46,76,6.108086585998535],[117,46,77,6.1232171058654785],[117,46,78,6.13298225402832],[117,46,79,6.136005878448486],[117,47,64,6.066739082336426],[117,47,65,6.077524662017822],[117,47,66,6.078339099884033],[117,47,67,6.070504665374756],[117,47,68,6.061385154724121],[117,47,69,6.055147171020508],[117,47,70,6.05340576171875],[117,47,71,6.053691387176514],[117,47,72,6.056863307952881],[117,47,73,6.066365718841553],[117,47,74,6.079727649688721],[117,47,75,6.093751907348633],[117,47,76,6.108086585998535],[117,47,77,6.1232171058654785],[117,47,78,6.13298225402832],[117,47,79,6.136005878448486],[117,48,64,6.066739082336426],[117,48,65,6.077524662017822],[117,48,66,6.078339099884033],[117,48,67,6.070504665374756],[117,48,68,6.061385154724121],[117,48,69,6.055147171020508],[117,48,70,6.05340576171875],[117,48,71,6.053691387176514],[117,48,72,6.056863307952881],[117,48,73,6.066365718841553],[117,48,74,6.079727649688721],[117,48,75,6.093751907348633],[117,48,76,6.108086585998535],[117,48,77,6.1232171058654785],[117,48,78,6.13298225402832],[117,48,79,6.136005878448486],[117,49,64,6.066739082336426],[117,49,65,6.077524662017822],[117,49,66,6.078339099884033],[117,49,67,6.070504665374756],[117,49,68,6.061385154724121],[117,49,69,6.055147171020508],[117,49,70,6.05340576171875],[117,49,71,6.053691387176514],[117,49,72,6.056863307952881],[117,49,73,6.066365718841553],[117,49,74,6.079727649688721],[117,49,75,6.093751907348633],[117,49,76,6.108086585998535],[117,49,77,6.1232171058654785],[117,49,78,6.13298225402832],[117,49,79,6.136005878448486],[117,50,64,6.066739082336426],[117,50,65,6.077524662017822],[117,50,66,6.078339099884033],[117,50,67,6.070504665374756],[117,50,68,6.061385154724121],[117,50,69,6.055147171020508],[117,50,70,6.05340576171875],[117,50,71,6.053691387176514],[117,50,72,6.056863307952881],[117,50,73,6.066365718841553],[117,50,74,6.079727649688721],[117,50,75,6.093751907348633],[117,50,76,6.108086585998535],[117,50,77,6.1232171058654785],[117,50,78,6.13298225402832],[117,50,79,6.136005878448486],[117,51,64,6.066739082336426],[117,51,65,6.077524662017822],[117,51,66,6.078339099884033],[117,51,67,6.070504665374756],[117,51,68,6.061385154724121],[117,51,69,6.055147171020508],[117,51,70,6.05340576171875],[117,51,71,6.053691387176514],[117,51,72,6.056863307952881],[117,51,73,6.066365718841553],[117,51,74,6.079727649688721],[117,51,75,6.093751907348633],[117,51,76,6.108086585998535],[117,51,77,6.1232171058654785],[117,51,78,6.13298225402832],[117,51,79,6.136005878448486],[117,52,64,6.066739082336426],[117,52,65,6.077524662017822],[117,52,66,6.078339099884033],[117,52,67,6.070504665374756],[117,52,68,6.061385154724121],[117,52,69,6.055147171020508],[117,52,70,6.05340576171875],[117,52,71,6.053691387176514],[117,52,72,6.056863307952881],[117,52,73,6.066365718841553],[117,52,74,6.079727649688721],[117,52,75,6.093751907348633],[117,52,76,6.108086585998535],[117,52,77,6.1232171058654785],[117,52,78,6.13298225402832],[117,52,79,6.136005878448486],[117,53,64,6.066739082336426],[117,53,65,6.077524662017822],[117,53,66,6.078339099884033],[117,53,67,6.070504665374756],[117,53,68,6.061385154724121],[117,53,69,6.055147171020508],[117,53,70,6.05340576171875],[117,53,71,6.053691387176514],[117,53,72,6.056863307952881],[117,53,73,6.066365718841553],[117,53,74,6.079727649688721],[117,53,75,6.093751907348633],[117,53,76,6.108086585998535],[117,53,77,6.1232171058654785],[117,53,78,6.13298225402832],[117,53,79,6.136005878448486],[117,54,64,6.066739082336426],[117,54,65,6.077524662017822],[117,54,66,6.078339099884033],[117,54,67,6.070504665374756],[117,54,68,6.061385154724121],[117,54,69,6.055147171020508],[117,54,70,6.05340576171875],[117,54,71,6.053691387176514],[117,54,72,6.056863307952881],[117,54,73,6.066365718841553],[117,54,74,6.079727649688721],[117,54,75,6.093751907348633],[117,54,76,6.108086585998535],[117,54,77,6.1232171058654785],[117,54,78,6.13298225402832],[117,54,79,6.136005878448486],[117,55,64,6.066739082336426],[117,55,65,6.077524662017822],[117,55,66,6.078339099884033],[117,55,67,6.070504665374756],[117,55,68,6.061385154724121],[117,55,69,6.055147171020508],[117,55,70,6.05340576171875],[117,55,71,6.053691387176514],[117,55,72,6.056863307952881],[117,55,73,6.066365718841553],[117,55,74,6.079727649688721],[117,55,75,6.093751907348633],[117,55,76,6.108086585998535],[117,55,77,6.1232171058654785],[117,55,78,6.13298225402832],[117,55,79,6.136005878448486],[117,56,64,6.066739082336426],[117,56,65,6.077524662017822],[117,56,66,6.078339099884033],[117,56,67,6.070504665374756],[117,56,68,6.061385154724121],[117,56,69,6.055147171020508],[117,56,70,6.05340576171875],[117,56,71,6.053691387176514],[117,56,72,6.056863307952881],[117,56,73,6.066365718841553],[117,56,74,6.079727649688721],[117,56,75,6.093751907348633],[117,56,76,6.108086585998535],[117,56,77,6.1232171058654785],[117,56,78,6.13298225402832],[117,56,79,6.136005878448486],[117,57,64,6.066739082336426],[117,57,65,6.077524662017822],[117,57,66,6.078339099884033],[117,57,67,6.070504665374756],[117,57,68,6.061385154724121],[117,57,69,6.055147171020508],[117,57,70,6.05340576171875],[117,57,71,6.053691387176514],[117,57,72,6.056863307952881],[117,57,73,6.066365718841553],[117,57,74,6.079727649688721],[117,57,75,6.093751907348633],[117,57,76,6.108086585998535],[117,57,77,6.1232171058654785],[117,57,78,6.13298225402832],[117,57,79,6.136005878448486],[117,58,64,6.066739082336426],[117,58,65,6.077524662017822],[117,58,66,6.078339099884033],[117,58,67,6.070504665374756],[117,58,68,6.061385154724121],[117,58,69,6.055147171020508],[117,58,70,6.05340576171875],[117,58,71,6.053691387176514],[117,58,72,6.056863307952881],[117,58,73,6.066365718841553],[117,58,74,6.079727649688721],[117,58,75,6.093751907348633],[117,58,76,6.108086585998535],[117,58,77,6.1232171058654785],[117,58,78,6.13298225402832],[117,58,79,6.136005878448486],[117,59,64,6.066739082336426],[117,59,65,6.077524662017822],[117,59,66,6.078339099884033],[117,59,67,6.070504665374756],[117,59,68,6.061385154724121],[117,59,69,6.055147171020508],[117,59,70,6.05340576171875],[117,59,71,6.053691387176514],[117,59,72,6.056863307952881],[117,59,73,6.066365718841553],[117,59,74,6.079727649688721],[117,59,75,6.093751907348633],[117,59,76,6.108086585998535],[117,59,77,6.1232171058654785],[117,59,78,6.13298225402832],[117,59,79,6.136005878448486],[117,60,64,6.066739082336426],[117,60,65,6.077524662017822],[117,60,66,6.078339099884033],[117,60,67,6.070504665374756],[117,60,68,6.061385154724121],[117,60,69,6.055147171020508],[117,60,70,6.05340576171875],[117,60,71,6.053691387176514],[117,60,72,6.056863307952881],[117,60,73,6.066365718841553],[117,60,74,6.079727649688721],[117,60,75,6.093751907348633],[117,60,76,6.108086585998535],[117,60,77,6.1232171058654785],[117,60,78,6.13298225402832],[117,60,79,6.136005878448486],[117,61,64,6.066739082336426],[117,61,65,6.077524662017822],[117,61,66,6.078339099884033],[117,61,67,6.070504665374756],[117,61,68,6.061385154724121],[117,61,69,6.055147171020508],[117,61,70,6.05340576171875],[117,61,71,6.053691387176514],[117,61,72,6.056863307952881],[117,61,73,6.066365718841553],[117,61,74,6.079727649688721],[117,61,75,6.093751907348633],[117,61,76,6.108086585998535],[117,61,77,6.1232171058654785],[117,61,78,6.13298225402832],[117,61,79,6.136005878448486],[117,62,64,6.066739082336426],[117,62,65,6.077524662017822],[117,62,66,6.078339099884033],[117,62,67,6.070504665374756],[117,62,68,6.061385154724121],[117,62,69,6.055147171020508],[117,62,70,6.05340576171875],[117,62,71,6.053691387176514],[117,62,72,6.056863307952881],[117,62,73,6.066365718841553],[117,62,74,6.079727649688721],[117,62,75,6.093751907348633],[117,62,76,6.108086585998535],[117,62,77,6.1232171058654785],[117,62,78,6.13298225402832],[117,62,79,6.136005878448486],[117,63,64,6.066739082336426],[117,63,65,6.077524662017822],[117,63,66,6.078339099884033],[117,63,67,6.070504665374756],[117,63,68,6.061385154724121],[117,63,69,6.055147171020508],[117,63,70,6.05340576171875],[117,63,71,6.053691387176514],[117,63,72,6.056863307952881],[117,63,73,6.066365718841553],[117,63,74,6.079727649688721],[117,63,75,6.093751907348633],[117,63,76,6.108086585998535],[117,63,77,6.1232171058654785],[117,63,78,6.13298225402832],[117,63,79,6.136005878448486],[117,64,64,6.066739082336426],[117,64,65,6.077524662017822],[117,64,66,6.078339099884033],[117,64,67,6.070504665374756],[117,64,68,6.061385154724121],[117,64,69,6.055147171020508],[117,64,70,6.05340576171875],[117,64,71,6.053691387176514],[117,64,72,6.056863307952881],[117,64,73,6.066365718841553],[117,64,74,6.079727649688721],[117,64,75,6.093751907348633],[117,64,76,6.108086585998535],[117,64,77,6.1232171058654785],[117,64,78,6.13298225402832],[117,64,79,6.136005878448486],[117,65,64,6.066739082336426],[117,65,65,6.077524662017822],[117,65,66,6.078339099884033],[117,65,67,6.070504665374756],[117,65,68,6.061385154724121],[117,65,69,6.055147171020508],[117,65,70,6.05340576171875],[117,65,71,6.053691387176514],[117,65,72,6.056863307952881],[117,65,73,6.066365718841553],[117,65,74,6.079727649688721],[117,65,75,6.093751907348633],[117,65,76,6.108086585998535],[117,65,77,6.1232171058654785],[117,65,78,6.13298225402832],[117,65,79,6.136005878448486],[117,66,64,6.066739082336426],[117,66,65,6.077524662017822],[117,66,66,6.078339099884033],[117,66,67,6.070504665374756],[117,66,68,6.061385154724121],[117,66,69,6.055147171020508],[117,66,70,6.05340576171875],[117,66,71,6.053691387176514],[117,66,72,6.056863307952881],[117,66,73,6.066365718841553],[117,66,74,6.079727649688721],[117,66,75,6.093751907348633],[117,66,76,6.108086585998535],[117,66,77,6.1232171058654785],[117,66,78,6.13298225402832],[117,66,79,6.136005878448486],[117,67,64,6.066739082336426],[117,67,65,6.077524662017822],[117,67,66,6.078339099884033],[117,67,67,6.070504665374756],[117,67,68,6.061385154724121],[117,67,69,6.055147171020508],[117,67,70,6.05340576171875],[117,67,71,6.053691387176514],[117,67,72,6.056863307952881],[117,67,73,6.066365718841553],[117,67,74,6.079727649688721],[117,67,75,6.093751907348633],[117,67,76,6.108086585998535],[117,67,77,6.1232171058654785],[117,67,78,6.13298225402832],[117,67,79,6.136005878448486],[117,68,64,6.066739082336426],[117,68,65,6.077524662017822],[117,68,66,6.078339099884033],[117,68,67,6.070504665374756],[117,68,68,6.061385154724121],[117,68,69,6.055147171020508],[117,68,70,6.05340576171875],[117,68,71,6.053691387176514],[117,68,72,6.056863307952881],[117,68,73,6.066365718841553],[117,68,74,6.079727649688721],[117,68,75,6.093751907348633],[117,68,76,6.108086585998535],[117,68,77,6.1232171058654785],[117,68,78,6.13298225402832],[117,68,79,6.136005878448486],[117,69,64,6.066739082336426],[117,69,65,6.077524662017822],[117,69,66,6.078339099884033],[117,69,67,6.070504665374756],[117,69,68,6.061385154724121],[117,69,69,6.055147171020508],[117,69,70,6.05340576171875],[117,69,71,6.053691387176514],[117,69,72,6.056863307952881],[117,69,73,6.066365718841553],[117,69,74,6.079727649688721],[117,69,75,6.093751907348633],[117,69,76,6.108086585998535],[117,69,77,6.1232171058654785],[117,69,78,6.13298225402832],[117,69,79,6.136005878448486],[117,70,64,6.066739082336426],[117,70,65,6.077524662017822],[117,70,66,6.078339099884033],[117,70,67,6.070504665374756],[117,70,68,6.061385154724121],[117,70,69,6.055147171020508],[117,70,70,6.05340576171875],[117,70,71,6.053691387176514],[117,70,72,6.056863307952881],[117,70,73,6.066365718841553],[117,70,74,6.079727649688721],[117,70,75,6.093751907348633],[117,70,76,6.108086585998535],[117,70,77,6.1232171058654785],[117,70,78,6.13298225402832],[117,70,79,6.136005878448486],[117,71,64,6.066739082336426],[117,71,65,6.077524662017822],[117,71,66,6.078339099884033],[117,71,67,6.070504665374756],[117,71,68,6.061385154724121],[117,71,69,6.055147171020508],[117,71,70,6.05340576171875],[117,71,71,6.053691387176514],[117,71,72,6.056863307952881],[117,71,73,6.066365718841553],[117,71,74,6.079727649688721],[117,71,75,6.093751907348633],[117,71,76,6.108086585998535],[117,71,77,6.1232171058654785],[117,71,78,6.13298225402832],[117,71,79,6.136005878448486],[117,72,64,6.066739082336426],[117,72,65,6.077524662017822],[117,72,66,6.078339099884033],[117,72,67,6.070504665374756],[117,72,68,6.061385154724121],[117,72,69,6.055147171020508],[117,72,70,6.05340576171875],[117,72,71,6.053691387176514],[117,72,72,6.056863307952881],[117,72,73,6.066365718841553],[117,72,74,6.079727649688721],[117,72,75,6.093751907348633],[117,72,76,6.108086585998535],[117,72,77,6.1232171058654785],[117,72,78,6.13298225402832],[117,72,79,6.136005878448486],[117,73,64,6.066739082336426],[117,73,65,6.077524662017822],[117,73,66,6.078339099884033],[117,73,67,6.070504665374756],[117,73,68,6.061385154724121],[117,73,69,6.055147171020508],[117,73,70,6.05340576171875],[117,73,71,6.053691387176514],[117,73,72,6.056863307952881],[117,73,73,6.066365718841553],[117,73,74,6.079727649688721],[117,73,75,6.093751907348633],[117,73,76,6.108086585998535],[117,73,77,6.1232171058654785],[117,73,78,6.13298225402832],[117,73,79,6.136005878448486],[117,74,64,6.066739082336426],[117,74,65,6.077524662017822],[117,74,66,6.078339099884033],[117,74,67,6.070504665374756],[117,74,68,6.061385154724121],[117,74,69,6.055147171020508],[117,74,70,6.05340576171875],[117,74,71,6.053691387176514],[117,74,72,6.056863307952881],[117,74,73,6.066365718841553],[117,74,74,6.079727649688721],[117,74,75,6.093751907348633],[117,74,76,6.108086585998535],[117,74,77,6.1232171058654785],[117,74,78,6.13298225402832],[117,74,79,6.136005878448486],[117,75,64,6.066739082336426],[117,75,65,6.077524662017822],[117,75,66,6.078339099884033],[117,75,67,6.070504665374756],[117,75,68,6.061385154724121],[117,75,69,6.055147171020508],[117,75,70,6.05340576171875],[117,75,71,6.053691387176514],[117,75,72,6.056863307952881],[117,75,73,6.066365718841553],[117,75,74,6.079727649688721],[117,75,75,6.093751907348633],[117,75,76,6.108086585998535],[117,75,77,6.1232171058654785],[117,75,78,6.13298225402832],[117,75,79,6.136005878448486],[117,76,64,6.066739082336426],[117,76,65,6.077524662017822],[117,76,66,6.078339099884033],[117,76,67,6.070504665374756],[117,76,68,6.061385154724121],[117,76,69,6.055147171020508],[117,76,70,6.05340576171875],[117,76,71,6.053691387176514],[117,76,72,6.056863307952881],[117,76,73,6.066365718841553],[117,76,74,6.079727649688721],[117,76,75,6.093751907348633],[117,76,76,6.108086585998535],[117,76,77,6.1232171058654785],[117,76,78,6.13298225402832],[117,76,79,6.136005878448486],[117,77,64,6.066739082336426],[117,77,65,6.077524662017822],[117,77,66,6.078339099884033],[117,77,67,6.070504665374756],[117,77,68,6.061385154724121],[117,77,69,6.055147171020508],[117,77,70,6.05340576171875],[117,77,71,6.053691387176514],[117,77,72,6.056863307952881],[117,77,73,6.066365718841553],[117,77,74,6.079727649688721],[117,77,75,6.093751907348633],[117,77,76,6.108086585998535],[117,77,77,6.1232171058654785],[117,77,78,6.13298225402832],[117,77,79,6.136005878448486],[117,78,64,6.066739082336426],[117,78,65,6.077524662017822],[117,78,66,6.078339099884033],[117,78,67,6.070504665374756],[117,78,68,6.061385154724121],[117,78,69,6.055147171020508],[117,78,70,6.05340576171875],[117,78,71,6.053691387176514],[117,78,72,6.056863307952881],[117,78,73,6.066365718841553],[117,78,74,6.079727649688721],[117,78,75,6.093751907348633],[117,78,76,6.108086585998535],[117,78,77,6.1232171058654785],[117,78,78,6.13298225402832],[117,78,79,6.136005878448486],[117,79,64,6.066739082336426],[117,79,65,6.077524662017822],[117,79,66,6.078339099884033],[117,79,67,6.070504665374756],[117,79,68,6.061385154724121],[117,79,69,6.055147171020508],[117,79,70,6.05340576171875],[117,79,71,6.053691387176514],[117,79,72,6.056863307952881],[117,79,73,6.066365718841553],[117,79,74,6.079727649688721],[117,79,75,6.093751907348633],[117,79,76,6.108086585998535],[117,79,77,6.1232171058654785],[117,79,78,6.13298225402832],[117,79,79,6.136005878448486],[117,80,64,6.066739082336426],[117,80,65,6.077524662017822],[117,80,66,6.078339099884033],[117,80,67,6.070504665374756],[117,80,68,6.061385154724121],[117,80,69,6.055147171020508],[117,80,70,6.05340576171875],[117,80,71,6.053691387176514],[117,80,72,6.056863307952881],[117,80,73,6.066365718841553],[117,80,74,6.079727649688721],[117,80,75,6.093751907348633],[117,80,76,6.108086585998535],[117,80,77,6.1232171058654785],[117,80,78,6.13298225402832],[117,80,79,6.136005878448486],[117,81,64,6.066739082336426],[117,81,65,6.077524662017822],[117,81,66,6.078339099884033],[117,81,67,6.070504665374756],[117,81,68,6.061385154724121],[117,81,69,6.055147171020508],[117,81,70,6.05340576171875],[117,81,71,6.053691387176514],[117,81,72,6.056863307952881],[117,81,73,6.066365718841553],[117,81,74,6.079727649688721],[117,81,75,6.093751907348633],[117,81,76,6.108086585998535],[117,81,77,6.1232171058654785],[117,81,78,6.13298225402832],[117,81,79,6.136005878448486],[117,82,64,6.066739082336426],[117,82,65,6.077524662017822],[117,82,66,6.078339099884033],[117,82,67,6.070504665374756],[117,82,68,6.061385154724121],[117,82,69,6.055147171020508],[117,82,70,6.05340576171875],[117,82,71,6.053691387176514],[117,82,72,6.056863307952881],[117,82,73,6.066365718841553],[117,82,74,6.079727649688721],[117,82,75,6.093751907348633],[117,82,76,6.108086585998535],[117,82,77,6.1232171058654785],[117,82,78,6.13298225402832],[117,82,79,6.136005878448486],[117,83,64,6.066739082336426],[117,83,65,6.077524662017822],[117,83,66,6.078339099884033],[117,83,67,6.070504665374756],[117,83,68,6.061385154724121],[117,83,69,6.055147171020508],[117,83,70,6.05340576171875],[117,83,71,6.053691387176514],[117,83,72,6.056863307952881],[117,83,73,6.066365718841553],[117,83,74,6.079727649688721],[117,83,75,6.093751907348633],[117,83,76,6.108086585998535],[117,83,77,6.1232171058654785],[117,83,78,6.13298225402832],[117,83,79,6.136005878448486],[117,84,64,6.066739082336426],[117,84,65,6.077524662017822],[117,84,66,6.078339099884033],[117,84,67,6.070504665374756],[117,84,68,6.061385154724121],[117,84,69,6.055147171020508],[117,84,70,6.05340576171875],[117,84,71,6.053691387176514],[117,84,72,6.056863307952881],[117,84,73,6.066365718841553],[117,84,74,6.079727649688721],[117,84,75,6.093751907348633],[117,84,76,6.108086585998535],[117,84,77,6.1232171058654785],[117,84,78,6.13298225402832],[117,84,79,6.136005878448486],[117,85,64,6.066739082336426],[117,85,65,6.077524662017822],[117,85,66,6.078339099884033],[117,85,67,6.070504665374756],[117,85,68,6.061385154724121],[117,85,69,6.055147171020508],[117,85,70,6.05340576171875],[117,85,71,6.053691387176514],[117,85,72,6.056863307952881],[117,85,73,6.066365718841553],[117,85,74,6.079727649688721],[117,85,75,6.093751907348633],[117,85,76,6.108086585998535],[117,85,77,6.1232171058654785],[117,85,78,6.13298225402832],[117,85,79,6.136005878448486],[117,86,64,6.066739082336426],[117,86,65,6.077524662017822],[117,86,66,6.078339099884033],[117,86,67,6.070504665374756],[117,86,68,6.061385154724121],[117,86,69,6.055147171020508],[117,86,70,6.05340576171875],[117,86,71,6.053691387176514],[117,86,72,6.056863307952881],[117,86,73,6.066365718841553],[117,86,74,6.079727649688721],[117,86,75,6.093751907348633],[117,86,76,6.108086585998535],[117,86,77,6.1232171058654785],[117,86,78,6.13298225402832],[117,86,79,6.136005878448486],[117,87,64,6.066739082336426],[117,87,65,6.077524662017822],[117,87,66,6.078339099884033],[117,87,67,6.070504665374756],[117,87,68,6.061385154724121],[117,87,69,6.055147171020508],[117,87,70,6.05340576171875],[117,87,71,6.053691387176514],[117,87,72,6.056863307952881],[117,87,73,6.066365718841553],[117,87,74,6.079727649688721],[117,87,75,6.093751907348633],[117,87,76,6.108086585998535],[117,87,77,6.1232171058654785],[117,87,78,6.13298225402832],[117,87,79,6.136005878448486],[117,88,64,6.066739082336426],[117,88,65,6.077524662017822],[117,88,66,6.078339099884033],[117,88,67,6.070504665374756],[117,88,68,6.061385154724121],[117,88,69,6.055147171020508],[117,88,70,6.05340576171875],[117,88,71,6.053691387176514],[117,88,72,6.056863307952881],[117,88,73,6.066365718841553],[117,88,74,6.079727649688721],[117,88,75,6.093751907348633],[117,88,76,6.108086585998535],[117,88,77,6.1232171058654785],[117,88,78,6.13298225402832],[117,88,79,6.136005878448486],[117,89,64,6.066739082336426],[117,89,65,6.077524662017822],[117,89,66,6.078339099884033],[117,89,67,6.070504665374756],[117,89,68,6.061385154724121],[117,89,69,6.055147171020508],[117,89,70,6.05340576171875],[117,89,71,6.053691387176514],[117,89,72,6.056863307952881],[117,89,73,6.066365718841553],[117,89,74,6.079727649688721],[117,89,75,6.093751907348633],[117,89,76,6.108086585998535],[117,89,77,6.1232171058654785],[117,89,78,6.13298225402832],[117,89,79,6.136005878448486],[117,90,64,6.066739082336426],[117,90,65,6.077524662017822],[117,90,66,6.078339099884033],[117,90,67,6.070504665374756],[117,90,68,6.061385154724121],[117,90,69,6.055147171020508],[117,90,70,6.05340576171875],[117,90,71,6.053691387176514],[117,90,72,6.056863307952881],[117,90,73,6.066365718841553],[117,90,74,6.079727649688721],[117,90,75,6.093751907348633],[117,90,76,6.108086585998535],[117,90,77,6.1232171058654785],[117,90,78,6.13298225402832],[117,90,79,6.136005878448486],[117,91,64,6.066739082336426],[117,91,65,6.077524662017822],[117,91,66,6.078339099884033],[117,91,67,6.070504665374756],[117,91,68,6.061385154724121],[117,91,69,6.055147171020508],[117,91,70,6.05340576171875],[117,91,71,6.053691387176514],[117,91,72,6.056863307952881],[117,91,73,6.066365718841553],[117,91,74,6.079727649688721],[117,91,75,6.093751907348633],[117,91,76,6.108086585998535],[117,91,77,6.1232171058654785],[117,91,78,6.13298225402832],[117,91,79,6.136005878448486],[117,92,64,6.066739082336426],[117,92,65,6.077524662017822],[117,92,66,6.078339099884033],[117,92,67,6.070504665374756],[117,92,68,6.061385154724121],[117,92,69,6.055147171020508],[117,92,70,6.05340576171875],[117,92,71,6.053691387176514],[117,92,72,6.056863307952881],[117,92,73,6.066365718841553],[117,92,74,6.079727649688721],[117,92,75,6.093751907348633],[117,92,76,6.108086585998535],[117,92,77,6.1232171058654785],[117,92,78,6.13298225402832],[117,92,79,6.136005878448486],[117,93,64,6.066739082336426],[117,93,65,6.077524662017822],[117,93,66,6.078339099884033],[117,93,67,6.070504665374756],[117,93,68,6.061385154724121],[117,93,69,6.055147171020508],[117,93,70,6.05340576171875],[117,93,71,6.053691387176514],[117,93,72,6.056863307952881],[117,93,73,6.066365718841553],[117,93,74,6.079727649688721],[117,93,75,6.093751907348633],[117,93,76,6.108086585998535],[117,93,77,6.1232171058654785],[117,93,78,6.13298225402832],[117,93,79,6.136005878448486],[117,94,64,6.066739082336426],[117,94,65,6.077524662017822],[117,94,66,6.078339099884033],[117,94,67,6.070504665374756],[117,94,68,6.061385154724121],[117,94,69,6.055147171020508],[117,94,70,6.05340576171875],[117,94,71,6.053691387176514],[117,94,72,6.056863307952881],[117,94,73,6.066365718841553],[117,94,74,6.079727649688721],[117,94,75,6.093751907348633],[117,94,76,6.108086585998535],[117,94,77,6.1232171058654785],[117,94,78,6.13298225402832],[117,94,79,6.136005878448486],[117,95,64,6.066739082336426],[117,95,65,6.077524662017822],[117,95,66,6.078339099884033],[117,95,67,6.070504665374756],[117,95,68,6.061385154724121],[117,95,69,6.055147171020508],[117,95,70,6.05340576171875],[117,95,71,6.053691387176514],[117,95,72,6.056863307952881],[117,95,73,6.066365718841553],[117,95,74,6.079727649688721],[117,95,75,6.093751907348633],[117,95,76,6.108086585998535],[117,95,77,6.1232171058654785],[117,95,78,6.13298225402832],[117,95,79,6.136005878448486],[117,96,64,6.066739082336426],[117,96,65,6.077524662017822],[117,96,66,6.078339099884033],[117,96,67,6.070504665374756],[117,96,68,6.061385154724121],[117,96,69,6.055147171020508],[117,96,70,6.05340576171875],[117,96,71,6.053691387176514],[117,96,72,6.056863307952881],[117,96,73,6.066365718841553],[117,96,74,6.079727649688721],[117,96,75,6.093751907348633],[117,96,76,6.108086585998535],[117,96,77,6.1232171058654785],[117,96,78,6.13298225402832],[117,96,79,6.136005878448486],[117,97,64,6.066739082336426],[117,97,65,6.077524662017822],[117,97,66,6.078339099884033],[117,97,67,6.070504665374756],[117,97,68,6.061385154724121],[117,97,69,6.055147171020508],[117,97,70,6.05340576171875],[117,97,71,6.053691387176514],[117,97,72,6.056863307952881],[117,97,73,6.066365718841553],[117,97,74,6.079727649688721],[117,97,75,6.093751907348633],[117,97,76,6.108086585998535],[117,97,77,6.1232171058654785],[117,97,78,6.13298225402832],[117,97,79,6.136005878448486],[117,98,64,6.066739082336426],[117,98,65,6.077524662017822],[117,98,66,6.078339099884033],[117,98,67,6.070504665374756],[117,98,68,6.061385154724121],[117,98,69,6.055147171020508],[117,98,70,6.05340576171875],[117,98,71,6.053691387176514],[117,98,72,6.056863307952881],[117,98,73,6.066365718841553],[117,98,74,6.079727649688721],[117,98,75,6.093751907348633],[117,98,76,6.108086585998535],[117,98,77,6.1232171058654785],[117,98,78,6.13298225402832],[117,98,79,6.136005878448486],[117,99,64,6.066739082336426],[117,99,65,6.077524662017822],[117,99,66,6.078339099884033],[117,99,67,6.070504665374756],[117,99,68,6.061385154724121],[117,99,69,6.055147171020508],[117,99,70,6.05340576171875],[117,99,71,6.053691387176514],[117,99,72,6.056863307952881],[117,99,73,6.066365718841553],[117,99,74,6.079727649688721],[117,99,75,6.093751907348633],[117,99,76,6.108086585998535],[117,99,77,6.1232171058654785],[117,99,78,6.13298225402832],[117,99,79,6.136005878448486],[117,100,64,6.066739082336426],[117,100,65,6.077524662017822],[117,100,66,6.078339099884033],[117,100,67,6.070504665374756],[117,100,68,6.061385154724121],[117,100,69,6.055147171020508],[117,100,70,6.05340576171875],[117,100,71,6.053691387176514],[117,100,72,6.056863307952881],[117,100,73,6.066365718841553],[117,100,74,6.079727649688721],[117,100,75,6.093751907348633],[117,100,76,6.108086585998535],[117,100,77,6.1232171058654785],[117,100,78,6.13298225402832],[117,100,79,6.136005878448486],[117,101,64,6.066739082336426],[117,101,65,6.077524662017822],[117,101,66,6.078339099884033],[117,101,67,6.070504665374756],[117,101,68,6.061385154724121],[117,101,69,6.055147171020508],[117,101,70,6.05340576171875],[117,101,71,6.053691387176514],[117,101,72,6.056863307952881],[117,101,73,6.066365718841553],[117,101,74,6.079727649688721],[117,101,75,6.093751907348633],[117,101,76,6.108086585998535],[117,101,77,6.1232171058654785],[117,101,78,6.13298225402832],[117,101,79,6.136005878448486],[117,102,64,6.066739082336426],[117,102,65,6.077524662017822],[117,102,66,6.078339099884033],[117,102,67,6.070504665374756],[117,102,68,6.061385154724121],[117,102,69,6.055147171020508],[117,102,70,6.05340576171875],[117,102,71,6.053691387176514],[117,102,72,6.056863307952881],[117,102,73,6.066365718841553],[117,102,74,6.079727649688721],[117,102,75,6.093751907348633],[117,102,76,6.108086585998535],[117,102,77,6.1232171058654785],[117,102,78,6.13298225402832],[117,102,79,6.136005878448486],[117,103,64,6.066739082336426],[117,103,65,6.077524662017822],[117,103,66,6.078339099884033],[117,103,67,6.070504665374756],[117,103,68,6.061385154724121],[117,103,69,6.055147171020508],[117,103,70,6.05340576171875],[117,103,71,6.053691387176514],[117,103,72,6.056863307952881],[117,103,73,6.066365718841553],[117,103,74,6.079727649688721],[117,103,75,6.093751907348633],[117,103,76,6.108086585998535],[117,103,77,6.1232171058654785],[117,103,78,6.13298225402832],[117,103,79,6.136005878448486],[117,104,64,6.066739082336426],[117,104,65,6.077524662017822],[117,104,66,6.078339099884033],[117,104,67,6.070504665374756],[117,104,68,6.061385154724121],[117,104,69,6.055147171020508],[117,104,70,6.05340576171875],[117,104,71,6.053691387176514],[117,104,72,6.056863307952881],[117,104,73,6.066365718841553],[117,104,74,6.079727649688721],[117,104,75,6.093751907348633],[117,104,76,6.108086585998535],[117,104,77,6.1232171058654785],[117,104,78,6.13298225402832],[117,104,79,6.136005878448486],[117,105,64,6.066739082336426],[117,105,65,6.077524662017822],[117,105,66,6.078339099884033],[117,105,67,6.070504665374756],[117,105,68,6.061385154724121],[117,105,69,6.055147171020508],[117,105,70,6.05340576171875],[117,105,71,6.053691387176514],[117,105,72,6.056863307952881],[117,105,73,6.066365718841553],[117,105,74,6.079727649688721],[117,105,75,6.093751907348633],[117,105,76,6.108086585998535],[117,105,77,6.1232171058654785],[117,105,78,6.13298225402832],[117,105,79,6.136005878448486],[117,106,64,6.066739082336426],[117,106,65,6.077524662017822],[117,106,66,6.078339099884033],[117,106,67,6.070504665374756],[117,106,68,6.061385154724121],[117,106,69,6.055147171020508],[117,106,70,6.05340576171875],[117,106,71,6.053691387176514],[117,106,72,6.056863307952881],[117,106,73,6.066365718841553],[117,106,74,6.079727649688721],[117,106,75,6.093751907348633],[117,106,76,6.108086585998535],[117,106,77,6.1232171058654785],[117,106,78,6.13298225402832],[117,106,79,6.136005878448486],[117,107,64,6.066739082336426],[117,107,65,6.077524662017822],[117,107,66,6.078339099884033],[117,107,67,6.070504665374756],[117,107,68,6.061385154724121],[117,107,69,6.055147171020508],[117,107,70,6.05340576171875],[117,107,71,6.053691387176514],[117,107,72,6.056863307952881],[117,107,73,6.066365718841553],[117,107,74,6.079727649688721],[117,107,75,6.093751907348633],[117,107,76,6.108086585998535],[117,107,77,6.1232171058654785],[117,107,78,6.13298225402832],[117,107,79,6.136005878448486],[117,108,64,6.066739082336426],[117,108,65,6.077524662017822],[117,108,66,6.078339099884033],[117,108,67,6.070504665374756],[117,108,68,6.061385154724121],[117,108,69,6.055147171020508],[117,108,70,6.05340576171875],[117,108,71,6.053691387176514],[117,108,72,6.056863307952881],[117,108,73,6.066365718841553],[117,108,74,6.079727649688721],[117,108,75,6.093751907348633],[117,108,76,6.108086585998535],[117,108,77,6.1232171058654785],[117,108,78,6.13298225402832],[117,108,79,6.136005878448486],[117,109,64,6.066739082336426],[117,109,65,6.077524662017822],[117,109,66,6.078339099884033],[117,109,67,6.070504665374756],[117,109,68,6.061385154724121],[117,109,69,6.055147171020508],[117,109,70,6.05340576171875],[117,109,71,6.053691387176514],[117,109,72,6.056863307952881],[117,109,73,6.066365718841553],[117,109,74,6.079727649688721],[117,109,75,6.093751907348633],[117,109,76,6.108086585998535],[117,109,77,6.1232171058654785],[117,109,78,6.13298225402832],[117,109,79,6.136005878448486],[117,110,64,6.066739082336426],[117,110,65,6.077524662017822],[117,110,66,6.078339099884033],[117,110,67,6.070504665374756],[117,110,68,6.061385154724121],[117,110,69,6.055147171020508],[117,110,70,6.05340576171875],[117,110,71,6.053691387176514],[117,110,72,6.056863307952881],[117,110,73,6.066365718841553],[117,110,74,6.079727649688721],[117,110,75,6.093751907348633],[117,110,76,6.108086585998535],[117,110,77,6.1232171058654785],[117,110,78,6.13298225402832],[117,110,79,6.136005878448486],[117,111,64,6.066739082336426],[117,111,65,6.077524662017822],[117,111,66,6.078339099884033],[117,111,67,6.070504665374756],[117,111,68,6.061385154724121],[117,111,69,6.055147171020508],[117,111,70,6.05340576171875],[117,111,71,6.053691387176514],[117,111,72,6.056863307952881],[117,111,73,6.066365718841553],[117,111,74,6.079727649688721],[117,111,75,6.093751907348633],[117,111,76,6.108086585998535],[117,111,77,6.1232171058654785],[117,111,78,6.13298225402832],[117,111,79,6.136005878448486],[117,112,64,6.066739082336426],[117,112,65,6.077524662017822],[117,112,66,6.078339099884033],[117,112,67,6.070504665374756],[117,112,68,6.061385154724121],[117,112,69,6.055147171020508],[117,112,70,6.05340576171875],[117,112,71,6.053691387176514],[117,112,72,6.056863307952881],[117,112,73,6.066365718841553],[117,112,74,6.079727649688721],[117,112,75,6.093751907348633],[117,112,76,6.108086585998535],[117,112,77,6.1232171058654785],[117,112,78,6.13298225402832],[117,112,79,6.136005878448486],[117,113,64,6.066739082336426],[117,113,65,6.077524662017822],[117,113,66,6.078339099884033],[117,113,67,6.070504665374756],[117,113,68,6.061385154724121],[117,113,69,6.055147171020508],[117,113,70,6.05340576171875],[117,113,71,6.053691387176514],[117,113,72,6.056863307952881],[117,113,73,6.066365718841553],[117,113,74,6.079727649688721],[117,113,75,6.093751907348633],[117,113,76,6.108086585998535],[117,113,77,6.1232171058654785],[117,113,78,6.13298225402832],[117,113,79,6.136005878448486],[117,114,64,6.066739082336426],[117,114,65,6.077524662017822],[117,114,66,6.078339099884033],[117,114,67,6.070504665374756],[117,114,68,6.061385154724121],[117,114,69,6.055147171020508],[117,114,70,6.05340576171875],[117,114,71,6.053691387176514],[117,114,72,6.056863307952881],[117,114,73,6.066365718841553],[117,114,74,6.079727649688721],[117,114,75,6.093751907348633],[117,114,76,6.108086585998535],[117,114,77,6.1232171058654785],[117,114,78,6.13298225402832],[117,114,79,6.136005878448486],[117,115,64,6.066739082336426],[117,115,65,6.077524662017822],[117,115,66,6.078339099884033],[117,115,67,6.070504665374756],[117,115,68,6.061385154724121],[117,115,69,6.055147171020508],[117,115,70,6.05340576171875],[117,115,71,6.053691387176514],[117,115,72,6.056863307952881],[117,115,73,6.066365718841553],[117,115,74,6.079727649688721],[117,115,75,6.093751907348633],[117,115,76,6.108086585998535],[117,115,77,6.1232171058654785],[117,115,78,6.13298225402832],[117,115,79,6.136005878448486],[117,116,64,6.066739082336426],[117,116,65,6.077524662017822],[117,116,66,6.078339099884033],[117,116,67,6.070504665374756],[117,116,68,6.061385154724121],[117,116,69,6.055147171020508],[117,116,70,6.05340576171875],[117,116,71,6.053691387176514],[117,116,72,6.056863307952881],[117,116,73,6.066365718841553],[117,116,74,6.079727649688721],[117,116,75,6.093751907348633],[117,116,76,6.108086585998535],[117,116,77,6.1232171058654785],[117,116,78,6.13298225402832],[117,116,79,6.136005878448486],[117,117,64,6.066739082336426],[117,117,65,6.077524662017822],[117,117,66,6.078339099884033],[117,117,67,6.070504665374756],[117,117,68,6.061385154724121],[117,117,69,6.055147171020508],[117,117,70,6.05340576171875],[117,117,71,6.053691387176514],[117,117,72,6.056863307952881],[117,117,73,6.066365718841553],[117,117,74,6.079727649688721],[117,117,75,6.093751907348633],[117,117,76,6.108086585998535],[117,117,77,6.1232171058654785],[117,117,78,6.13298225402832],[117,117,79,6.136005878448486],[117,118,64,6.066739082336426],[117,118,65,6.077524662017822],[117,118,66,6.078339099884033],[117,118,67,6.070504665374756],[117,118,68,6.061385154724121],[117,118,69,6.055147171020508],[117,118,70,6.05340576171875],[117,118,71,6.053691387176514],[117,118,72,6.056863307952881],[117,118,73,6.066365718841553],[117,118,74,6.079727649688721],[117,118,75,6.093751907348633],[117,118,76,6.108086585998535],[117,118,77,6.1232171058654785],[117,118,78,6.13298225402832],[117,118,79,6.136005878448486],[117,119,64,6.066739082336426],[117,119,65,6.077524662017822],[117,119,66,6.078339099884033],[117,119,67,6.070504665374756],[117,119,68,6.061385154724121],[117,119,69,6.055147171020508],[117,119,70,6.05340576171875],[117,119,71,6.053691387176514],[117,119,72,6.056863307952881],[117,119,73,6.066365718841553],[117,119,74,6.079727649688721],[117,119,75,6.093751907348633],[117,119,76,6.108086585998535],[117,119,77,6.1232171058654785],[117,119,78,6.13298225402832],[117,119,79,6.136005878448486],[117,120,64,6.066739082336426],[117,120,65,6.077524662017822],[117,120,66,6.078339099884033],[117,120,67,6.070504665374756],[117,120,68,6.061385154724121],[117,120,69,6.055147171020508],[117,120,70,6.05340576171875],[117,120,71,6.053691387176514],[117,120,72,6.056863307952881],[117,120,73,6.066365718841553],[117,120,74,6.079727649688721],[117,120,75,6.093751907348633],[117,120,76,6.108086585998535],[117,120,77,6.1232171058654785],[117,120,78,6.13298225402832],[117,120,79,6.136005878448486],[117,121,64,6.066739082336426],[117,121,65,6.077524662017822],[117,121,66,6.078339099884033],[117,121,67,6.070504665374756],[117,121,68,6.061385154724121],[117,121,69,6.055147171020508],[117,121,70,6.05340576171875],[117,121,71,6.053691387176514],[117,121,72,6.056863307952881],[117,121,73,6.066365718841553],[117,121,74,6.079727649688721],[117,121,75,6.093751907348633],[117,121,76,6.108086585998535],[117,121,77,6.1232171058654785],[117,121,78,6.13298225402832],[117,121,79,6.136005878448486],[117,122,64,6.066739082336426],[117,122,65,6.077524662017822],[117,122,66,6.078339099884033],[117,122,67,6.070504665374756],[117,122,68,6.061385154724121],[117,122,69,6.055147171020508],[117,122,70,6.05340576171875],[117,122,71,6.053691387176514],[117,122,72,6.056863307952881],[117,122,73,6.066365718841553],[117,122,74,6.079727649688721],[117,122,75,6.093751907348633],[117,122,76,6.108086585998535],[117,122,77,6.1232171058654785],[117,122,78,6.13298225402832],[117,122,79,6.136005878448486],[117,123,64,6.066739082336426],[117,123,65,6.077524662017822],[117,123,66,6.078339099884033],[117,123,67,6.070504665374756],[117,123,68,6.061385154724121],[117,123,69,6.055147171020508],[117,123,70,6.05340576171875],[117,123,71,6.053691387176514],[117,123,72,6.056863307952881],[117,123,73,6.066365718841553],[117,123,74,6.079727649688721],[117,123,75,6.093751907348633],[117,123,76,6.108086585998535],[117,123,77,6.1232171058654785],[117,123,78,6.13298225402832],[117,123,79,6.136005878448486],[117,124,64,6.066739082336426],[117,124,65,6.077524662017822],[117,124,66,6.078339099884033],[117,124,67,6.070504665374756],[117,124,68,6.061385154724121],[117,124,69,6.055147171020508],[117,124,70,6.05340576171875],[117,124,71,6.053691387176514],[117,124,72,6.056863307952881],[117,124,73,6.066365718841553],[117,124,74,6.079727649688721],[117,124,75,6.093751907348633],[117,124,76,6.108086585998535],[117,124,77,6.1232171058654785],[117,124,78,6.13298225402832],[117,124,79,6.136005878448486],[117,125,64,6.066739082336426],[117,125,65,6.077524662017822],[117,125,66,6.078339099884033],[117,125,67,6.070504665374756],[117,125,68,6.061385154724121],[117,125,69,6.055147171020508],[117,125,70,6.05340576171875],[117,125,71,6.053691387176514],[117,125,72,6.056863307952881],[117,125,73,6.066365718841553],[117,125,74,6.079727649688721],[117,125,75,6.093751907348633],[117,125,76,6.108086585998535],[117,125,77,6.1232171058654785],[117,125,78,6.13298225402832],[117,125,79,6.136005878448486],[117,126,64,6.066739082336426],[117,126,65,6.077524662017822],[117,126,66,6.078339099884033],[117,126,67,6.070504665374756],[117,126,68,6.061385154724121],[117,126,69,6.055147171020508],[117,126,70,6.05340576171875],[117,126,71,6.053691387176514],[117,126,72,6.056863307952881],[117,126,73,6.066365718841553],[117,126,74,6.079727649688721],[117,126,75,6.093751907348633],[117,126,76,6.108086585998535],[117,126,77,6.1232171058654785],[117,126,78,6.13298225402832],[117,126,79,6.136005878448486],[117,127,64,6.066739082336426],[117,127,65,6.077524662017822],[117,127,66,6.078339099884033],[117,127,67,6.070504665374756],[117,127,68,6.061385154724121],[117,127,69,6.055147171020508],[117,127,70,6.05340576171875],[117,127,71,6.053691387176514],[117,127,72,6.056863307952881],[117,127,73,6.066365718841553],[117,127,74,6.079727649688721],[117,127,75,6.093751907348633],[117,127,76,6.108086585998535],[117,127,77,6.1232171058654785],[117,127,78,6.13298225402832],[117,127,79,6.136005878448486],[117,128,64,6.066739082336426],[117,128,65,6.077524662017822],[117,128,66,6.078339099884033],[117,128,67,6.070504665374756],[117,128,68,6.061385154724121],[117,128,69,6.055147171020508],[117,128,70,6.05340576171875],[117,128,71,6.053691387176514],[117,128,72,6.056863307952881],[117,128,73,6.066365718841553],[117,128,74,6.079727649688721],[117,128,75,6.093751907348633],[117,128,76,6.108086585998535],[117,128,77,6.1232171058654785],[117,128,78,6.13298225402832],[117,128,79,6.136005878448486],[117,129,64,6.066739082336426],[117,129,65,6.077524662017822],[117,129,66,6.078339099884033],[117,129,67,6.070504665374756],[117,129,68,6.061385154724121],[117,129,69,6.055147171020508],[117,129,70,6.05340576171875],[117,129,71,6.053691387176514],[117,129,72,6.056863307952881],[117,129,73,6.066365718841553],[117,129,74,6.079727649688721],[117,129,75,6.093751907348633],[117,129,76,6.108086585998535],[117,129,77,6.1232171058654785],[117,129,78,6.13298225402832],[117,129,79,6.136005878448486],[117,130,64,6.066739082336426],[117,130,65,6.077524662017822],[117,130,66,6.078339099884033],[117,130,67,6.070504665374756],[117,130,68,6.061385154724121],[117,130,69,6.055147171020508],[117,130,70,6.05340576171875],[117,130,71,6.053691387176514],[117,130,72,6.056863307952881],[117,130,73,6.066365718841553],[117,130,74,6.079727649688721],[117,130,75,6.093751907348633],[117,130,76,6.108086585998535],[117,130,77,6.1232171058654785],[117,130,78,6.13298225402832],[117,130,79,6.136005878448486],[117,131,64,6.066739082336426],[117,131,65,6.077524662017822],[117,131,66,6.078339099884033],[117,131,67,6.070504665374756],[117,131,68,6.061385154724121],[117,131,69,6.055147171020508],[117,131,70,6.05340576171875],[117,131,71,6.053691387176514],[117,131,72,6.056863307952881],[117,131,73,6.066365718841553],[117,131,74,6.079727649688721],[117,131,75,6.093751907348633],[117,131,76,6.108086585998535],[117,131,77,6.1232171058654785],[117,131,78,6.13298225402832],[117,131,79,6.136005878448486],[117,132,64,6.066739082336426],[117,132,65,6.077524662017822],[117,132,66,6.078339099884033],[117,132,67,6.070504665374756],[117,132,68,6.061385154724121],[117,132,69,6.055147171020508],[117,132,70,6.05340576171875],[117,132,71,6.053691387176514],[117,132,72,6.056863307952881],[117,132,73,6.066365718841553],[117,132,74,6.079727649688721],[117,132,75,6.093751907348633],[117,132,76,6.108086585998535],[117,132,77,6.1232171058654785],[117,132,78,6.13298225402832],[117,132,79,6.136005878448486],[117,133,64,6.066739082336426],[117,133,65,6.077524662017822],[117,133,66,6.078339099884033],[117,133,67,6.070504665374756],[117,133,68,6.061385154724121],[117,133,69,6.055147171020508],[117,133,70,6.05340576171875],[117,133,71,6.053691387176514],[117,133,72,6.056863307952881],[117,133,73,6.066365718841553],[117,133,74,6.079727649688721],[117,133,75,6.093751907348633],[117,133,76,6.108086585998535],[117,133,77,6.1232171058654785],[117,133,78,6.13298225402832],[117,133,79,6.136005878448486],[117,134,64,6.066739082336426],[117,134,65,6.077524662017822],[117,134,66,6.078339099884033],[117,134,67,6.070504665374756],[117,134,68,6.061385154724121],[117,134,69,6.055147171020508],[117,134,70,6.05340576171875],[117,134,71,6.053691387176514],[117,134,72,6.056863307952881],[117,134,73,6.066365718841553],[117,134,74,6.079727649688721],[117,134,75,6.093751907348633],[117,134,76,6.108086585998535],[117,134,77,6.1232171058654785],[117,134,78,6.13298225402832],[117,134,79,6.136005878448486],[117,135,64,6.066739082336426],[117,135,65,6.077524662017822],[117,135,66,6.078339099884033],[117,135,67,6.070504665374756],[117,135,68,6.061385154724121],[117,135,69,6.055147171020508],[117,135,70,6.05340576171875],[117,135,71,6.053691387176514],[117,135,72,6.056863307952881],[117,135,73,6.066365718841553],[117,135,74,6.079727649688721],[117,135,75,6.093751907348633],[117,135,76,6.108086585998535],[117,135,77,6.1232171058654785],[117,135,78,6.13298225402832],[117,135,79,6.136005878448486],[117,136,64,6.066739082336426],[117,136,65,6.077524662017822],[117,136,66,6.078339099884033],[117,136,67,6.070504665374756],[117,136,68,6.061385154724121],[117,136,69,6.055147171020508],[117,136,70,6.05340576171875],[117,136,71,6.053691387176514],[117,136,72,6.056863307952881],[117,136,73,6.066365718841553],[117,136,74,6.079727649688721],[117,136,75,6.093751907348633],[117,136,76,6.108086585998535],[117,136,77,6.1232171058654785],[117,136,78,6.13298225402832],[117,136,79,6.136005878448486],[117,137,64,6.066739082336426],[117,137,65,6.077524662017822],[117,137,66,6.078339099884033],[117,137,67,6.070504665374756],[117,137,68,6.061385154724121],[117,137,69,6.055147171020508],[117,137,70,6.05340576171875],[117,137,71,6.053691387176514],[117,137,72,6.056863307952881],[117,137,73,6.066365718841553],[117,137,74,6.079727649688721],[117,137,75,6.093751907348633],[117,137,76,6.108086585998535],[117,137,77,6.1232171058654785],[117,137,78,6.13298225402832],[117,137,79,6.136005878448486],[117,138,64,6.066739082336426],[117,138,65,6.077524662017822],[117,138,66,6.078339099884033],[117,138,67,6.070504665374756],[117,138,68,6.061385154724121],[117,138,69,6.055147171020508],[117,138,70,6.05340576171875],[117,138,71,6.053691387176514],[117,138,72,6.056863307952881],[117,138,73,6.066365718841553],[117,138,74,6.079727649688721],[117,138,75,6.093751907348633],[117,138,76,6.108086585998535],[117,138,77,6.1232171058654785],[117,138,78,6.13298225402832],[117,138,79,6.136005878448486],[117,139,64,6.066739082336426],[117,139,65,6.077524662017822],[117,139,66,6.078339099884033],[117,139,67,6.070504665374756],[117,139,68,6.061385154724121],[117,139,69,6.055147171020508],[117,139,70,6.05340576171875],[117,139,71,6.053691387176514],[117,139,72,6.056863307952881],[117,139,73,6.066365718841553],[117,139,74,6.079727649688721],[117,139,75,6.093751907348633],[117,139,76,6.108086585998535],[117,139,77,6.1232171058654785],[117,139,78,6.13298225402832],[117,139,79,6.136005878448486],[117,140,64,6.066739082336426],[117,140,65,6.077524662017822],[117,140,66,6.078339099884033],[117,140,67,6.070504665374756],[117,140,68,6.061385154724121],[117,140,69,6.055147171020508],[117,140,70,6.05340576171875],[117,140,71,6.053691387176514],[117,140,72,6.056863307952881],[117,140,73,6.066365718841553],[117,140,74,6.079727649688721],[117,140,75,6.093751907348633],[117,140,76,6.108086585998535],[117,140,77,6.1232171058654785],[117,140,78,6.13298225402832],[117,140,79,6.136005878448486],[117,141,64,6.066739082336426],[117,141,65,6.077524662017822],[117,141,66,6.078339099884033],[117,141,67,6.070504665374756],[117,141,68,6.061385154724121],[117,141,69,6.055147171020508],[117,141,70,6.05340576171875],[117,141,71,6.053691387176514],[117,141,72,6.056863307952881],[117,141,73,6.066365718841553],[117,141,74,6.079727649688721],[117,141,75,6.093751907348633],[117,141,76,6.108086585998535],[117,141,77,6.1232171058654785],[117,141,78,6.13298225402832],[117,141,79,6.136005878448486],[117,142,64,6.066739082336426],[117,142,65,6.077524662017822],[117,142,66,6.078339099884033],[117,142,67,6.070504665374756],[117,142,68,6.061385154724121],[117,142,69,6.055147171020508],[117,142,70,6.05340576171875],[117,142,71,6.053691387176514],[117,142,72,6.056863307952881],[117,142,73,6.066365718841553],[117,142,74,6.079727649688721],[117,142,75,6.093751907348633],[117,142,76,6.108086585998535],[117,142,77,6.1232171058654785],[117,142,78,6.13298225402832],[117,142,79,6.136005878448486],[117,143,64,6.066739082336426],[117,143,65,6.077524662017822],[117,143,66,6.078339099884033],[117,143,67,6.070504665374756],[117,143,68,6.061385154724121],[117,143,69,6.055147171020508],[117,143,70,6.05340576171875],[117,143,71,6.053691387176514],[117,143,72,6.056863307952881],[117,143,73,6.066365718841553],[117,143,74,6.079727649688721],[117,143,75,6.093751907348633],[117,143,76,6.108086585998535],[117,143,77,6.1232171058654785],[117,143,78,6.13298225402832],[117,143,79,6.136005878448486],[117,144,64,6.066739082336426],[117,144,65,6.077524662017822],[117,144,66,6.078339099884033],[117,144,67,6.070504665374756],[117,144,68,6.061385154724121],[117,144,69,6.055147171020508],[117,144,70,6.05340576171875],[117,144,71,6.053691387176514],[117,144,72,6.056863307952881],[117,144,73,6.066365718841553],[117,144,74,6.079727649688721],[117,144,75,6.093751907348633],[117,144,76,6.108086585998535],[117,144,77,6.1232171058654785],[117,144,78,6.13298225402832],[117,144,79,6.136005878448486],[117,145,64,6.066739082336426],[117,145,65,6.077524662017822],[117,145,66,6.078339099884033],[117,145,67,6.070504665374756],[117,145,68,6.061385154724121],[117,145,69,6.055147171020508],[117,145,70,6.05340576171875],[117,145,71,6.053691387176514],[117,145,72,6.056863307952881],[117,145,73,6.066365718841553],[117,145,74,6.079727649688721],[117,145,75,6.093751907348633],[117,145,76,6.108086585998535],[117,145,77,6.1232171058654785],[117,145,78,6.13298225402832],[117,145,79,6.136005878448486],[117,146,64,6.066739082336426],[117,146,65,6.077524662017822],[117,146,66,6.078339099884033],[117,146,67,6.070504665374756],[117,146,68,6.061385154724121],[117,146,69,6.055147171020508],[117,146,70,6.05340576171875],[117,146,71,6.053691387176514],[117,146,72,6.056863307952881],[117,146,73,6.066365718841553],[117,146,74,6.079727649688721],[117,146,75,6.093751907348633],[117,146,76,6.108086585998535],[117,146,77,6.1232171058654785],[117,146,78,6.13298225402832],[117,146,79,6.136005878448486],[117,147,64,6.066739082336426],[117,147,65,6.077524662017822],[117,147,66,6.078339099884033],[117,147,67,6.070504665374756],[117,147,68,6.061385154724121],[117,147,69,6.055147171020508],[117,147,70,6.05340576171875],[117,147,71,6.053691387176514],[117,147,72,6.056863307952881],[117,147,73,6.066365718841553],[117,147,74,6.079727649688721],[117,147,75,6.093751907348633],[117,147,76,6.108086585998535],[117,147,77,6.1232171058654785],[117,147,78,6.13298225402832],[117,147,79,6.136005878448486],[117,148,64,6.066739082336426],[117,148,65,6.077524662017822],[117,148,66,6.078339099884033],[117,148,67,6.070504665374756],[117,148,68,6.061385154724121],[117,148,69,6.055147171020508],[117,148,70,6.05340576171875],[117,148,71,6.053691387176514],[117,148,72,6.056863307952881],[117,148,73,6.066365718841553],[117,148,74,6.079727649688721],[117,148,75,6.093751907348633],[117,148,76,6.108086585998535],[117,148,77,6.1232171058654785],[117,148,78,6.13298225402832],[117,148,79,6.136005878448486],[117,149,64,6.066739082336426],[117,149,65,6.077524662017822],[117,149,66,6.078339099884033],[117,149,67,6.070504665374756],[117,149,68,6.061385154724121],[117,149,69,6.055147171020508],[117,149,70,6.05340576171875],[117,149,71,6.053691387176514],[117,149,72,6.056863307952881],[117,149,73,6.066365718841553],[117,149,74,6.079727649688721],[117,149,75,6.093751907348633],[117,149,76,6.108086585998535],[117,149,77,6.1232171058654785],[117,149,78,6.13298225402832],[117,149,79,6.136005878448486],[117,150,64,6.066739082336426],[117,150,65,6.077524662017822],[117,150,66,6.078339099884033],[117,150,67,6.070504665374756],[117,150,68,6.061385154724121],[117,150,69,6.055147171020508],[117,150,70,6.05340576171875],[117,150,71,6.053691387176514],[117,150,72,6.056863307952881],[117,150,73,6.066365718841553],[117,150,74,6.079727649688721],[117,150,75,6.093751907348633],[117,150,76,6.108086585998535],[117,150,77,6.1232171058654785],[117,150,78,6.13298225402832],[117,150,79,6.136005878448486],[117,151,64,6.066739082336426],[117,151,65,6.077524662017822],[117,151,66,6.078339099884033],[117,151,67,6.070504665374756],[117,151,68,6.061385154724121],[117,151,69,6.055147171020508],[117,151,70,6.05340576171875],[117,151,71,6.053691387176514],[117,151,72,6.056863307952881],[117,151,73,6.066365718841553],[117,151,74,6.079727649688721],[117,151,75,6.093751907348633],[117,151,76,6.108086585998535],[117,151,77,6.1232171058654785],[117,151,78,6.13298225402832],[117,151,79,6.136005878448486],[117,152,64,6.066739082336426],[117,152,65,6.077524662017822],[117,152,66,6.078339099884033],[117,152,67,6.070504665374756],[117,152,68,6.061385154724121],[117,152,69,6.055147171020508],[117,152,70,6.05340576171875],[117,152,71,6.053691387176514],[117,152,72,6.056863307952881],[117,152,73,6.066365718841553],[117,152,74,6.079727649688721],[117,152,75,6.093751907348633],[117,152,76,6.108086585998535],[117,152,77,6.1232171058654785],[117,152,78,6.13298225402832],[117,152,79,6.136005878448486],[117,153,64,6.066739082336426],[117,153,65,6.077524662017822],[117,153,66,6.078339099884033],[117,153,67,6.070504665374756],[117,153,68,6.061385154724121],[117,153,69,6.055147171020508],[117,153,70,6.05340576171875],[117,153,71,6.053691387176514],[117,153,72,6.056863307952881],[117,153,73,6.066365718841553],[117,153,74,6.079727649688721],[117,153,75,6.093751907348633],[117,153,76,6.108086585998535],[117,153,77,6.1232171058654785],[117,153,78,6.13298225402832],[117,153,79,6.136005878448486],[117,154,64,6.066739082336426],[117,154,65,6.077524662017822],[117,154,66,6.078339099884033],[117,154,67,6.070504665374756],[117,154,68,6.061385154724121],[117,154,69,6.055147171020508],[117,154,70,6.05340576171875],[117,154,71,6.053691387176514],[117,154,72,6.056863307952881],[117,154,73,6.066365718841553],[117,154,74,6.079727649688721],[117,154,75,6.093751907348633],[117,154,76,6.108086585998535],[117,154,77,6.1232171058654785],[117,154,78,6.13298225402832],[117,154,79,6.136005878448486],[117,155,64,6.066739082336426],[117,155,65,6.077524662017822],[117,155,66,6.078339099884033],[117,155,67,6.070504665374756],[117,155,68,6.061385154724121],[117,155,69,6.055147171020508],[117,155,70,6.05340576171875],[117,155,71,6.053691387176514],[117,155,72,6.056863307952881],[117,155,73,6.066365718841553],[117,155,74,6.079727649688721],[117,155,75,6.093751907348633],[117,155,76,6.108086585998535],[117,155,77,6.1232171058654785],[117,155,78,6.13298225402832],[117,155,79,6.136005878448486],[117,156,64,6.066739082336426],[117,156,65,6.077524662017822],[117,156,66,6.078339099884033],[117,156,67,6.070504665374756],[117,156,68,6.061385154724121],[117,156,69,6.055147171020508],[117,156,70,6.05340576171875],[117,156,71,6.053691387176514],[117,156,72,6.056863307952881],[117,156,73,6.066365718841553],[117,156,74,6.079727649688721],[117,156,75,6.093751907348633],[117,156,76,6.108086585998535],[117,156,77,6.1232171058654785],[117,156,78,6.13298225402832],[117,156,79,6.136005878448486],[117,157,64,6.066739082336426],[117,157,65,6.077524662017822],[117,157,66,6.078339099884033],[117,157,67,6.070504665374756],[117,157,68,6.061385154724121],[117,157,69,6.055147171020508],[117,157,70,6.05340576171875],[117,157,71,6.053691387176514],[117,157,72,6.056863307952881],[117,157,73,6.066365718841553],[117,157,74,6.079727649688721],[117,157,75,6.093751907348633],[117,157,76,6.108086585998535],[117,157,77,6.1232171058654785],[117,157,78,6.13298225402832],[117,157,79,6.136005878448486],[117,158,64,6.066739082336426],[117,158,65,6.077524662017822],[117,158,66,6.078339099884033],[117,158,67,6.070504665374756],[117,158,68,6.061385154724121],[117,158,69,6.055147171020508],[117,158,70,6.05340576171875],[117,158,71,6.053691387176514],[117,158,72,6.056863307952881],[117,158,73,6.066365718841553],[117,158,74,6.079727649688721],[117,158,75,6.093751907348633],[117,158,76,6.108086585998535],[117,158,77,6.1232171058654785],[117,158,78,6.13298225402832],[117,158,79,6.136005878448486],[117,159,64,6.066739082336426],[117,159,65,6.077524662017822],[117,159,66,6.078339099884033],[117,159,67,6.070504665374756],[117,159,68,6.061385154724121],[117,159,69,6.055147171020508],[117,159,70,6.05340576171875],[117,159,71,6.053691387176514],[117,159,72,6.056863307952881],[117,159,73,6.066365718841553],[117,159,74,6.079727649688721],[117,159,75,6.093751907348633],[117,159,76,6.108086585998535],[117,159,77,6.1232171058654785],[117,159,78,6.13298225402832],[117,159,79,6.136005878448486],[117,160,64,6.066739082336426],[117,160,65,6.077524662017822],[117,160,66,6.078339099884033],[117,160,67,6.070504665374756],[117,160,68,6.061385154724121],[117,160,69,6.055147171020508],[117,160,70,6.05340576171875],[117,160,71,6.053691387176514],[117,160,72,6.056863307952881],[117,160,73,6.066365718841553],[117,160,74,6.079727649688721],[117,160,75,6.093751907348633],[117,160,76,6.108086585998535],[117,160,77,6.1232171058654785],[117,160,78,6.13298225402832],[117,160,79,6.136005878448486],[117,161,64,6.066739082336426],[117,161,65,6.077524662017822],[117,161,66,6.078339099884033],[117,161,67,6.070504665374756],[117,161,68,6.061385154724121],[117,161,69,6.055147171020508],[117,161,70,6.05340576171875],[117,161,71,6.053691387176514],[117,161,72,6.056863307952881],[117,161,73,6.066365718841553],[117,161,74,6.079727649688721],[117,161,75,6.093751907348633],[117,161,76,6.108086585998535],[117,161,77,6.1232171058654785],[117,161,78,6.13298225402832],[117,161,79,6.136005878448486],[117,162,64,6.066739082336426],[117,162,65,6.077524662017822],[117,162,66,6.078339099884033],[117,162,67,6.070504665374756],[117,162,68,6.061385154724121],[117,162,69,6.055147171020508],[117,162,70,6.05340576171875],[117,162,71,6.053691387176514],[117,162,72,6.056863307952881],[117,162,73,6.066365718841553],[117,162,74,6.079727649688721],[117,162,75,6.093751907348633],[117,162,76,6.108086585998535],[117,162,77,6.1232171058654785],[117,162,78,6.13298225402832],[117,162,79,6.136005878448486],[117,163,64,6.066739082336426],[117,163,65,6.077524662017822],[117,163,66,6.078339099884033],[117,163,67,6.070504665374756],[117,163,68,6.061385154724121],[117,163,69,6.055147171020508],[117,163,70,6.05340576171875],[117,163,71,6.053691387176514],[117,163,72,6.056863307952881],[117,163,73,6.066365718841553],[117,163,74,6.079727649688721],[117,163,75,6.093751907348633],[117,163,76,6.108086585998535],[117,163,77,6.1232171058654785],[117,163,78,6.13298225402832],[117,163,79,6.136005878448486],[117,164,64,6.066739082336426],[117,164,65,6.077524662017822],[117,164,66,6.078339099884033],[117,164,67,6.070504665374756],[117,164,68,6.061385154724121],[117,164,69,6.055147171020508],[117,164,70,6.05340576171875],[117,164,71,6.053691387176514],[117,164,72,6.056863307952881],[117,164,73,6.066365718841553],[117,164,74,6.079727649688721],[117,164,75,6.093751907348633],[117,164,76,6.108086585998535],[117,164,77,6.1232171058654785],[117,164,78,6.13298225402832],[117,164,79,6.136005878448486],[117,165,64,6.066739082336426],[117,165,65,6.077524662017822],[117,165,66,6.078339099884033],[117,165,67,6.070504665374756],[117,165,68,6.061385154724121],[117,165,69,6.055147171020508],[117,165,70,6.05340576171875],[117,165,71,6.053691387176514],[117,165,72,6.056863307952881],[117,165,73,6.066365718841553],[117,165,74,6.079727649688721],[117,165,75,6.093751907348633],[117,165,76,6.108086585998535],[117,165,77,6.1232171058654785],[117,165,78,6.13298225402832],[117,165,79,6.136005878448486],[117,166,64,6.066739082336426],[117,166,65,6.077524662017822],[117,166,66,6.078339099884033],[117,166,67,6.070504665374756],[117,166,68,6.061385154724121],[117,166,69,6.055147171020508],[117,166,70,6.05340576171875],[117,166,71,6.053691387176514],[117,166,72,6.056863307952881],[117,166,73,6.066365718841553],[117,166,74,6.079727649688721],[117,166,75,6.093751907348633],[117,166,76,6.108086585998535],[117,166,77,6.1232171058654785],[117,166,78,6.13298225402832],[117,166,79,6.136005878448486],[117,167,64,6.066739082336426],[117,167,65,6.077524662017822],[117,167,66,6.078339099884033],[117,167,67,6.070504665374756],[117,167,68,6.061385154724121],[117,167,69,6.055147171020508],[117,167,70,6.05340576171875],[117,167,71,6.053691387176514],[117,167,72,6.056863307952881],[117,167,73,6.066365718841553],[117,167,74,6.079727649688721],[117,167,75,6.093751907348633],[117,167,76,6.108086585998535],[117,167,77,6.1232171058654785],[117,167,78,6.13298225402832],[117,167,79,6.136005878448486],[117,168,64,6.066739082336426],[117,168,65,6.077524662017822],[117,168,66,6.078339099884033],[117,168,67,6.070504665374756],[117,168,68,6.061385154724121],[117,168,69,6.055147171020508],[117,168,70,6.05340576171875],[117,168,71,6.053691387176514],[117,168,72,6.056863307952881],[117,168,73,6.066365718841553],[117,168,74,6.079727649688721],[117,168,75,6.093751907348633],[117,168,76,6.108086585998535],[117,168,77,6.1232171058654785],[117,168,78,6.13298225402832],[117,168,79,6.136005878448486],[117,169,64,6.066739082336426],[117,169,65,6.077524662017822],[117,169,66,6.078339099884033],[117,169,67,6.070504665374756],[117,169,68,6.061385154724121],[117,169,69,6.055147171020508],[117,169,70,6.05340576171875],[117,169,71,6.053691387176514],[117,169,72,6.056863307952881],[117,169,73,6.066365718841553],[117,169,74,6.079727649688721],[117,169,75,6.093751907348633],[117,169,76,6.108086585998535],[117,169,77,6.1232171058654785],[117,169,78,6.13298225402832],[117,169,79,6.136005878448486],[117,170,64,6.066739082336426],[117,170,65,6.077524662017822],[117,170,66,6.078339099884033],[117,170,67,6.070504665374756],[117,170,68,6.061385154724121],[117,170,69,6.055147171020508],[117,170,70,6.05340576171875],[117,170,71,6.053691387176514],[117,170,72,6.056863307952881],[117,170,73,6.066365718841553],[117,170,74,6.079727649688721],[117,170,75,6.093751907348633],[117,170,76,6.108086585998535],[117,170,77,6.1232171058654785],[117,170,78,6.13298225402832],[117,170,79,6.136005878448486],[117,171,64,6.066739082336426],[117,171,65,6.077524662017822],[117,171,66,6.078339099884033],[117,171,67,6.070504665374756],[117,171,68,6.061385154724121],[117,171,69,6.055147171020508],[117,171,70,6.05340576171875],[117,171,71,6.053691387176514],[117,171,72,6.056863307952881],[117,171,73,6.066365718841553],[117,171,74,6.079727649688721],[117,171,75,6.093751907348633],[117,171,76,6.108086585998535],[117,171,77,6.1232171058654785],[117,171,78,6.13298225402832],[117,171,79,6.136005878448486],[117,172,64,6.066739082336426],[117,172,65,6.077524662017822],[117,172,66,6.078339099884033],[117,172,67,6.070504665374756],[117,172,68,6.061385154724121],[117,172,69,6.055147171020508],[117,172,70,6.05340576171875],[117,172,71,6.053691387176514],[117,172,72,6.056863307952881],[117,172,73,6.066365718841553],[117,172,74,6.079727649688721],[117,172,75,6.093751907348633],[117,172,76,6.108086585998535],[117,172,77,6.1232171058654785],[117,172,78,6.13298225402832],[117,172,79,6.136005878448486],[117,173,64,6.066739082336426],[117,173,65,6.077524662017822],[117,173,66,6.078339099884033],[117,173,67,6.070504665374756],[117,173,68,6.061385154724121],[117,173,69,6.055147171020508],[117,173,70,6.05340576171875],[117,173,71,6.053691387176514],[117,173,72,6.056863307952881],[117,173,73,6.066365718841553],[117,173,74,6.079727649688721],[117,173,75,6.093751907348633],[117,173,76,6.108086585998535],[117,173,77,6.1232171058654785],[117,173,78,6.13298225402832],[117,173,79,6.136005878448486],[117,174,64,6.066739082336426],[117,174,65,6.077524662017822],[117,174,66,6.078339099884033],[117,174,67,6.070504665374756],[117,174,68,6.061385154724121],[117,174,69,6.055147171020508],[117,174,70,6.05340576171875],[117,174,71,6.053691387176514],[117,174,72,6.056863307952881],[117,174,73,6.066365718841553],[117,174,74,6.079727649688721],[117,174,75,6.093751907348633],[117,174,76,6.108086585998535],[117,174,77,6.1232171058654785],[117,174,78,6.13298225402832],[117,174,79,6.136005878448486],[117,175,64,6.066739082336426],[117,175,65,6.077524662017822],[117,175,66,6.078339099884033],[117,175,67,6.070504665374756],[117,175,68,6.061385154724121],[117,175,69,6.055147171020508],[117,175,70,6.05340576171875],[117,175,71,6.053691387176514],[117,175,72,6.056863307952881],[117,175,73,6.066365718841553],[117,175,74,6.079727649688721],[117,175,75,6.093751907348633],[117,175,76,6.108086585998535],[117,175,77,6.1232171058654785],[117,175,78,6.13298225402832],[117,175,79,6.136005878448486],[117,176,64,6.066739082336426],[117,176,65,6.077524662017822],[117,176,66,6.078339099884033],[117,176,67,6.070504665374756],[117,176,68,6.061385154724121],[117,176,69,6.055147171020508],[117,176,70,6.05340576171875],[117,176,71,6.053691387176514],[117,176,72,6.056863307952881],[117,176,73,6.066365718841553],[117,176,74,6.079727649688721],[117,176,75,6.093751907348633],[117,176,76,6.108086585998535],[117,176,77,6.1232171058654785],[117,176,78,6.13298225402832],[117,176,79,6.136005878448486],[117,177,64,6.066739082336426],[117,177,65,6.077524662017822],[117,177,66,6.078339099884033],[117,177,67,6.070504665374756],[117,177,68,6.061385154724121],[117,177,69,6.055147171020508],[117,177,70,6.05340576171875],[117,177,71,6.053691387176514],[117,177,72,6.056863307952881],[117,177,73,6.066365718841553],[117,177,74,6.079727649688721],[117,177,75,6.093751907348633],[117,177,76,6.108086585998535],[117,177,77,6.1232171058654785],[117,177,78,6.13298225402832],[117,177,79,6.136005878448486],[117,178,64,6.066739082336426],[117,178,65,6.077524662017822],[117,178,66,6.078339099884033],[117,178,67,6.070504665374756],[117,178,68,6.061385154724121],[117,178,69,6.055147171020508],[117,178,70,6.05340576171875],[117,178,71,6.053691387176514],[117,178,72,6.056863307952881],[117,178,73,6.066365718841553],[117,178,74,6.079727649688721],[117,178,75,6.093751907348633],[117,178,76,6.108086585998535],[117,178,77,6.1232171058654785],[117,178,78,6.13298225402832],[117,178,79,6.136005878448486],[117,179,64,6.066739082336426],[117,179,65,6.077524662017822],[117,179,66,6.078339099884033],[117,179,67,6.070504665374756],[117,179,68,6.061385154724121],[117,179,69,6.055147171020508],[117,179,70,6.05340576171875],[117,179,71,6.053691387176514],[117,179,72,6.056863307952881],[117,179,73,6.066365718841553],[117,179,74,6.079727649688721],[117,179,75,6.093751907348633],[117,179,76,6.108086585998535],[117,179,77,6.1232171058654785],[117,179,78,6.13298225402832],[117,179,79,6.136005878448486],[117,180,64,6.066739082336426],[117,180,65,6.077524662017822],[117,180,66,6.078339099884033],[117,180,67,6.070504665374756],[117,180,68,6.061385154724121],[117,180,69,6.055147171020508],[117,180,70,6.05340576171875],[117,180,71,6.053691387176514],[117,180,72,6.056863307952881],[117,180,73,6.066365718841553],[117,180,74,6.079727649688721],[117,180,75,6.093751907348633],[117,180,76,6.108086585998535],[117,180,77,6.1232171058654785],[117,180,78,6.13298225402832],[117,180,79,6.136005878448486],[117,181,64,6.066739082336426],[117,181,65,6.077524662017822],[117,181,66,6.078339099884033],[117,181,67,6.070504665374756],[117,181,68,6.061385154724121],[117,181,69,6.055147171020508],[117,181,70,6.05340576171875],[117,181,71,6.053691387176514],[117,181,72,6.056863307952881],[117,181,73,6.066365718841553],[117,181,74,6.079727649688721],[117,181,75,6.093751907348633],[117,181,76,6.108086585998535],[117,181,77,6.1232171058654785],[117,181,78,6.13298225402832],[117,181,79,6.136005878448486],[117,182,64,6.066739082336426],[117,182,65,6.077524662017822],[117,182,66,6.078339099884033],[117,182,67,6.070504665374756],[117,182,68,6.061385154724121],[117,182,69,6.055147171020508],[117,182,70,6.05340576171875],[117,182,71,6.053691387176514],[117,182,72,6.056863307952881],[117,182,73,6.066365718841553],[117,182,74,6.079727649688721],[117,182,75,6.093751907348633],[117,182,76,6.108086585998535],[117,182,77,6.1232171058654785],[117,182,78,6.13298225402832],[117,182,79,6.136005878448486],[117,183,64,6.066739082336426],[117,183,65,6.077524662017822],[117,183,66,6.078339099884033],[117,183,67,6.070504665374756],[117,183,68,6.061385154724121],[117,183,69,6.055147171020508],[117,183,70,6.05340576171875],[117,183,71,6.053691387176514],[117,183,72,6.056863307952881],[117,183,73,6.066365718841553],[117,183,74,6.079727649688721],[117,183,75,6.093751907348633],[117,183,76,6.108086585998535],[117,183,77,6.1232171058654785],[117,183,78,6.13298225402832],[117,183,79,6.136005878448486],[117,184,64,6.066739082336426],[117,184,65,6.077524662017822],[117,184,66,6.078339099884033],[117,184,67,6.070504665374756],[117,184,68,6.061385154724121],[117,184,69,6.055147171020508],[117,184,70,6.05340576171875],[117,184,71,6.053691387176514],[117,184,72,6.056863307952881],[117,184,73,6.066365718841553],[117,184,74,6.079727649688721],[117,184,75,6.093751907348633],[117,184,76,6.108086585998535],[117,184,77,6.1232171058654785],[117,184,78,6.13298225402832],[117,184,79,6.136005878448486],[117,185,64,6.066739082336426],[117,185,65,6.077524662017822],[117,185,66,6.078339099884033],[117,185,67,6.070504665374756],[117,185,68,6.061385154724121],[117,185,69,6.055147171020508],[117,185,70,6.05340576171875],[117,185,71,6.053691387176514],[117,185,72,6.056863307952881],[117,185,73,6.066365718841553],[117,185,74,6.079727649688721],[117,185,75,6.093751907348633],[117,185,76,6.108086585998535],[117,185,77,6.1232171058654785],[117,185,78,6.13298225402832],[117,185,79,6.136005878448486],[117,186,64,6.066739082336426],[117,186,65,6.077524662017822],[117,186,66,6.078339099884033],[117,186,67,6.070504665374756],[117,186,68,6.061385154724121],[117,186,69,6.055147171020508],[117,186,70,6.05340576171875],[117,186,71,6.053691387176514],[117,186,72,6.056863307952881],[117,186,73,6.066365718841553],[117,186,74,6.079727649688721],[117,186,75,6.093751907348633],[117,186,76,6.108086585998535],[117,186,77,6.1232171058654785],[117,186,78,6.13298225402832],[117,186,79,6.136005878448486],[117,187,64,6.066739082336426],[117,187,65,6.077524662017822],[117,187,66,6.078339099884033],[117,187,67,6.070504665374756],[117,187,68,6.061385154724121],[117,187,69,6.055147171020508],[117,187,70,6.05340576171875],[117,187,71,6.053691387176514],[117,187,72,6.056863307952881],[117,187,73,6.066365718841553],[117,187,74,6.079727649688721],[117,187,75,6.093751907348633],[117,187,76,6.108086585998535],[117,187,77,6.1232171058654785],[117,187,78,6.13298225402832],[117,187,79,6.136005878448486],[117,188,64,6.066739082336426],[117,188,65,6.077524662017822],[117,188,66,6.078339099884033],[117,188,67,6.070504665374756],[117,188,68,6.061385154724121],[117,188,69,6.055147171020508],[117,188,70,6.05340576171875],[117,188,71,6.053691387176514],[117,188,72,6.056863307952881],[117,188,73,6.066365718841553],[117,188,74,6.079727649688721],[117,188,75,6.093751907348633],[117,188,76,6.108086585998535],[117,188,77,6.1232171058654785],[117,188,78,6.13298225402832],[117,188,79,6.136005878448486],[117,189,64,6.066739082336426],[117,189,65,6.077524662017822],[117,189,66,6.078339099884033],[117,189,67,6.070504665374756],[117,189,68,6.061385154724121],[117,189,69,6.055147171020508],[117,189,70,6.05340576171875],[117,189,71,6.053691387176514],[117,189,72,6.056863307952881],[117,189,73,6.066365718841553],[117,189,74,6.079727649688721],[117,189,75,6.093751907348633],[117,189,76,6.108086585998535],[117,189,77,6.1232171058654785],[117,189,78,6.13298225402832],[117,189,79,6.136005878448486],[117,190,64,6.066739082336426],[117,190,65,6.077524662017822],[117,190,66,6.078339099884033],[117,190,67,6.070504665374756],[117,190,68,6.061385154724121],[117,190,69,6.055147171020508],[117,190,70,6.05340576171875],[117,190,71,6.053691387176514],[117,190,72,6.056863307952881],[117,190,73,6.066365718841553],[117,190,74,6.079727649688721],[117,190,75,6.093751907348633],[117,190,76,6.108086585998535],[117,190,77,6.1232171058654785],[117,190,78,6.13298225402832],[117,190,79,6.136005878448486],[117,191,64,6.066739082336426],[117,191,65,6.077524662017822],[117,191,66,6.078339099884033],[117,191,67,6.070504665374756],[117,191,68,6.061385154724121],[117,191,69,6.055147171020508],[117,191,70,6.05340576171875],[117,191,71,6.053691387176514],[117,191,72,6.056863307952881],[117,191,73,6.066365718841553],[117,191,74,6.079727649688721],[117,191,75,6.093751907348633],[117,191,76,6.108086585998535],[117,191,77,6.1232171058654785],[117,191,78,6.13298225402832],[117,191,79,6.136005878448486],[117,192,64,6.066739082336426],[117,192,65,6.077524662017822],[117,192,66,6.078339099884033],[117,192,67,6.070504665374756],[117,192,68,6.061385154724121],[117,192,69,6.055147171020508],[117,192,70,6.05340576171875],[117,192,71,6.053691387176514],[117,192,72,6.056863307952881],[117,192,73,6.066365718841553],[117,192,74,6.079727649688721],[117,192,75,6.093751907348633],[117,192,76,6.108086585998535],[117,192,77,6.1232171058654785],[117,192,78,6.13298225402832],[117,192,79,6.136005878448486],[117,193,64,6.066739082336426],[117,193,65,6.077524662017822],[117,193,66,6.078339099884033],[117,193,67,6.070504665374756],[117,193,68,6.061385154724121],[117,193,69,6.055147171020508],[117,193,70,6.05340576171875],[117,193,71,6.053691387176514],[117,193,72,6.056863307952881],[117,193,73,6.066365718841553],[117,193,74,6.079727649688721],[117,193,75,6.093751907348633],[117,193,76,6.108086585998535],[117,193,77,6.1232171058654785],[117,193,78,6.13298225402832],[117,193,79,6.136005878448486],[117,194,64,6.066739082336426],[117,194,65,6.077524662017822],[117,194,66,6.078339099884033],[117,194,67,6.070504665374756],[117,194,68,6.061385154724121],[117,194,69,6.055147171020508],[117,194,70,6.05340576171875],[117,194,71,6.053691387176514],[117,194,72,6.056863307952881],[117,194,73,6.066365718841553],[117,194,74,6.079727649688721],[117,194,75,6.093751907348633],[117,194,76,6.108086585998535],[117,194,77,6.1232171058654785],[117,194,78,6.13298225402832],[117,194,79,6.136005878448486],[117,195,64,6.066739082336426],[117,195,65,6.077524662017822],[117,195,66,6.078339099884033],[117,195,67,6.070504665374756],[117,195,68,6.061385154724121],[117,195,69,6.055147171020508],[117,195,70,6.05340576171875],[117,195,71,6.053691387176514],[117,195,72,6.056863307952881],[117,195,73,6.066365718841553],[117,195,74,6.079727649688721],[117,195,75,6.093751907348633],[117,195,76,6.108086585998535],[117,195,77,6.1232171058654785],[117,195,78,6.13298225402832],[117,195,79,6.136005878448486],[117,196,64,6.066739082336426],[117,196,65,6.077524662017822],[117,196,66,6.078339099884033],[117,196,67,6.070504665374756],[117,196,68,6.061385154724121],[117,196,69,6.055147171020508],[117,196,70,6.05340576171875],[117,196,71,6.053691387176514],[117,196,72,6.056863307952881],[117,196,73,6.066365718841553],[117,196,74,6.079727649688721],[117,196,75,6.093751907348633],[117,196,76,6.108086585998535],[117,196,77,6.1232171058654785],[117,196,78,6.13298225402832],[117,196,79,6.136005878448486],[117,197,64,6.066739082336426],[117,197,65,6.077524662017822],[117,197,66,6.078339099884033],[117,197,67,6.070504665374756],[117,197,68,6.061385154724121],[117,197,69,6.055147171020508],[117,197,70,6.05340576171875],[117,197,71,6.053691387176514],[117,197,72,6.056863307952881],[117,197,73,6.066365718841553],[117,197,74,6.079727649688721],[117,197,75,6.093751907348633],[117,197,76,6.108086585998535],[117,197,77,6.1232171058654785],[117,197,78,6.13298225402832],[117,197,79,6.136005878448486],[117,198,64,6.066739082336426],[117,198,65,6.077524662017822],[117,198,66,6.078339099884033],[117,198,67,6.070504665374756],[117,198,68,6.061385154724121],[117,198,69,6.055147171020508],[117,198,70,6.05340576171875],[117,198,71,6.053691387176514],[117,198,72,6.056863307952881],[117,198,73,6.066365718841553],[117,198,74,6.079727649688721],[117,198,75,6.093751907348633],[117,198,76,6.108086585998535],[117,198,77,6.1232171058654785],[117,198,78,6.13298225402832],[117,198,79,6.136005878448486],[117,199,64,6.066739082336426],[117,199,65,6.077524662017822],[117,199,66,6.078339099884033],[117,199,67,6.070504665374756],[117,199,68,6.061385154724121],[117,199,69,6.055147171020508],[117,199,70,6.05340576171875],[117,199,71,6.053691387176514],[117,199,72,6.056863307952881],[117,199,73,6.066365718841553],[117,199,74,6.079727649688721],[117,199,75,6.093751907348633],[117,199,76,6.108086585998535],[117,199,77,6.1232171058654785],[117,199,78,6.13298225402832],[117,199,79,6.136005878448486],[117,200,64,6.066739082336426],[117,200,65,6.077524662017822],[117,200,66,6.078339099884033],[117,200,67,6.070504665374756],[117,200,68,6.061385154724121],[117,200,69,6.055147171020508],[117,200,70,6.05340576171875],[117,200,71,6.053691387176514],[117,200,72,6.056863307952881],[117,200,73,6.066365718841553],[117,200,74,6.079727649688721],[117,200,75,6.093751907348633],[117,200,76,6.108086585998535],[117,200,77,6.1232171058654785],[117,200,78,6.13298225402832],[117,200,79,6.136005878448486],[117,201,64,6.066739082336426],[117,201,65,6.077524662017822],[117,201,66,6.078339099884033],[117,201,67,6.070504665374756],[117,201,68,6.061385154724121],[117,201,69,6.055147171020508],[117,201,70,6.05340576171875],[117,201,71,6.053691387176514],[117,201,72,6.056863307952881],[117,201,73,6.066365718841553],[117,201,74,6.079727649688721],[117,201,75,6.093751907348633],[117,201,76,6.108086585998535],[117,201,77,6.1232171058654785],[117,201,78,6.13298225402832],[117,201,79,6.136005878448486],[117,202,64,6.066739082336426],[117,202,65,6.077524662017822],[117,202,66,6.078339099884033],[117,202,67,6.070504665374756],[117,202,68,6.061385154724121],[117,202,69,6.055147171020508],[117,202,70,6.05340576171875],[117,202,71,6.053691387176514],[117,202,72,6.056863307952881],[117,202,73,6.066365718841553],[117,202,74,6.079727649688721],[117,202,75,6.093751907348633],[117,202,76,6.108086585998535],[117,202,77,6.1232171058654785],[117,202,78,6.13298225402832],[117,202,79,6.136005878448486],[117,203,64,6.066739082336426],[117,203,65,6.077524662017822],[117,203,66,6.078339099884033],[117,203,67,6.070504665374756],[117,203,68,6.061385154724121],[117,203,69,6.055147171020508],[117,203,70,6.05340576171875],[117,203,71,6.053691387176514],[117,203,72,6.056863307952881],[117,203,73,6.066365718841553],[117,203,74,6.079727649688721],[117,203,75,6.093751907348633],[117,203,76,6.108086585998535],[117,203,77,6.1232171058654785],[117,203,78,6.13298225402832],[117,203,79,6.136005878448486],[117,204,64,6.066739082336426],[117,204,65,6.077524662017822],[117,204,66,6.078339099884033],[117,204,67,6.070504665374756],[117,204,68,6.061385154724121],[117,204,69,6.055147171020508],[117,204,70,6.05340576171875],[117,204,71,6.053691387176514],[117,204,72,6.056863307952881],[117,204,73,6.066365718841553],[117,204,74,6.079727649688721],[117,204,75,6.093751907348633],[117,204,76,6.108086585998535],[117,204,77,6.1232171058654785],[117,204,78,6.13298225402832],[117,204,79,6.136005878448486],[117,205,64,6.066739082336426],[117,205,65,6.077524662017822],[117,205,66,6.078339099884033],[117,205,67,6.070504665374756],[117,205,68,6.061385154724121],[117,205,69,6.055147171020508],[117,205,70,6.05340576171875],[117,205,71,6.053691387176514],[117,205,72,6.056863307952881],[117,205,73,6.066365718841553],[117,205,74,6.079727649688721],[117,205,75,6.093751907348633],[117,205,76,6.108086585998535],[117,205,77,6.1232171058654785],[117,205,78,6.13298225402832],[117,205,79,6.136005878448486],[117,206,64,6.066739082336426],[117,206,65,6.077524662017822],[117,206,66,6.078339099884033],[117,206,67,6.070504665374756],[117,206,68,6.061385154724121],[117,206,69,6.055147171020508],[117,206,70,6.05340576171875],[117,206,71,6.053691387176514],[117,206,72,6.056863307952881],[117,206,73,6.066365718841553],[117,206,74,6.079727649688721],[117,206,75,6.093751907348633],[117,206,76,6.108086585998535],[117,206,77,6.1232171058654785],[117,206,78,6.13298225402832],[117,206,79,6.136005878448486],[117,207,64,6.066739082336426],[117,207,65,6.077524662017822],[117,207,66,6.078339099884033],[117,207,67,6.070504665374756],[117,207,68,6.061385154724121],[117,207,69,6.055147171020508],[117,207,70,6.05340576171875],[117,207,71,6.053691387176514],[117,207,72,6.056863307952881],[117,207,73,6.066365718841553],[117,207,74,6.079727649688721],[117,207,75,6.093751907348633],[117,207,76,6.108086585998535],[117,207,77,6.1232171058654785],[117,207,78,6.13298225402832],[117,207,79,6.136005878448486],[117,208,64,6.066739082336426],[117,208,65,6.077524662017822],[117,208,66,6.078339099884033],[117,208,67,6.070504665374756],[117,208,68,6.061385154724121],[117,208,69,6.055147171020508],[117,208,70,6.05340576171875],[117,208,71,6.053691387176514],[117,208,72,6.056863307952881],[117,208,73,6.066365718841553],[117,208,74,6.079727649688721],[117,208,75,6.093751907348633],[117,208,76,6.108086585998535],[117,208,77,6.1232171058654785],[117,208,78,6.13298225402832],[117,208,79,6.136005878448486],[117,209,64,6.066739082336426],[117,209,65,6.077524662017822],[117,209,66,6.078339099884033],[117,209,67,6.070504665374756],[117,209,68,6.061385154724121],[117,209,69,6.055147171020508],[117,209,70,6.05340576171875],[117,209,71,6.053691387176514],[117,209,72,6.056863307952881],[117,209,73,6.066365718841553],[117,209,74,6.079727649688721],[117,209,75,6.093751907348633],[117,209,76,6.108086585998535],[117,209,77,6.1232171058654785],[117,209,78,6.13298225402832],[117,209,79,6.136005878448486],[117,210,64,6.066739082336426],[117,210,65,6.077524662017822],[117,210,66,6.078339099884033],[117,210,67,6.070504665374756],[117,210,68,6.061385154724121],[117,210,69,6.055147171020508],[117,210,70,6.05340576171875],[117,210,71,6.053691387176514],[117,210,72,6.056863307952881],[117,210,73,6.066365718841553],[117,210,74,6.079727649688721],[117,210,75,6.093751907348633],[117,210,76,6.108086585998535],[117,210,77,6.1232171058654785],[117,210,78,6.13298225402832],[117,210,79,6.136005878448486],[117,211,64,6.066739082336426],[117,211,65,6.077524662017822],[117,211,66,6.078339099884033],[117,211,67,6.070504665374756],[117,211,68,6.061385154724121],[117,211,69,6.055147171020508],[117,211,70,6.05340576171875],[117,211,71,6.053691387176514],[117,211,72,6.056863307952881],[117,211,73,6.066365718841553],[117,211,74,6.079727649688721],[117,211,75,6.093751907348633],[117,211,76,6.108086585998535],[117,211,77,6.1232171058654785],[117,211,78,6.13298225402832],[117,211,79,6.136005878448486],[117,212,64,6.066739082336426],[117,212,65,6.077524662017822],[117,212,66,6.078339099884033],[117,212,67,6.070504665374756],[117,212,68,6.061385154724121],[117,212,69,6.055147171020508],[117,212,70,6.05340576171875],[117,212,71,6.053691387176514],[117,212,72,6.056863307952881],[117,212,73,6.066365718841553],[117,212,74,6.079727649688721],[117,212,75,6.093751907348633],[117,212,76,6.108086585998535],[117,212,77,6.1232171058654785],[117,212,78,6.13298225402832],[117,212,79,6.136005878448486],[117,213,64,6.066739082336426],[117,213,65,6.077524662017822],[117,213,66,6.078339099884033],[117,213,67,6.070504665374756],[117,213,68,6.061385154724121],[117,213,69,6.055147171020508],[117,213,70,6.05340576171875],[117,213,71,6.053691387176514],[117,213,72,6.056863307952881],[117,213,73,6.066365718841553],[117,213,74,6.079727649688721],[117,213,75,6.093751907348633],[117,213,76,6.108086585998535],[117,213,77,6.1232171058654785],[117,213,78,6.13298225402832],[117,213,79,6.136005878448486],[117,214,64,6.066739082336426],[117,214,65,6.077524662017822],[117,214,66,6.078339099884033],[117,214,67,6.070504665374756],[117,214,68,6.061385154724121],[117,214,69,6.055147171020508],[117,214,70,6.05340576171875],[117,214,71,6.053691387176514],[117,214,72,6.056863307952881],[117,214,73,6.066365718841553],[117,214,74,6.079727649688721],[117,214,75,6.093751907348633],[117,214,76,6.108086585998535],[117,214,77,6.1232171058654785],[117,214,78,6.13298225402832],[117,214,79,6.136005878448486],[117,215,64,6.066739082336426],[117,215,65,6.077524662017822],[117,215,66,6.078339099884033],[117,215,67,6.070504665374756],[117,215,68,6.061385154724121],[117,215,69,6.055147171020508],[117,215,70,6.05340576171875],[117,215,71,6.053691387176514],[117,215,72,6.056863307952881],[117,215,73,6.066365718841553],[117,215,74,6.079727649688721],[117,215,75,6.093751907348633],[117,215,76,6.108086585998535],[117,215,77,6.1232171058654785],[117,215,78,6.13298225402832],[117,215,79,6.136005878448486],[117,216,64,6.066739082336426],[117,216,65,6.077524662017822],[117,216,66,6.078339099884033],[117,216,67,6.070504665374756],[117,216,68,6.061385154724121],[117,216,69,6.055147171020508],[117,216,70,6.05340576171875],[117,216,71,6.053691387176514],[117,216,72,6.056863307952881],[117,216,73,6.066365718841553],[117,216,74,6.079727649688721],[117,216,75,6.093751907348633],[117,216,76,6.108086585998535],[117,216,77,6.1232171058654785],[117,216,78,6.13298225402832],[117,216,79,6.136005878448486],[117,217,64,6.066739082336426],[117,217,65,6.077524662017822],[117,217,66,6.078339099884033],[117,217,67,6.070504665374756],[117,217,68,6.061385154724121],[117,217,69,6.055147171020508],[117,217,70,6.05340576171875],[117,217,71,6.053691387176514],[117,217,72,6.056863307952881],[117,217,73,6.066365718841553],[117,217,74,6.079727649688721],[117,217,75,6.093751907348633],[117,217,76,6.108086585998535],[117,217,77,6.1232171058654785],[117,217,78,6.13298225402832],[117,217,79,6.136005878448486],[117,218,64,6.066739082336426],[117,218,65,6.077524662017822],[117,218,66,6.078339099884033],[117,218,67,6.070504665374756],[117,218,68,6.061385154724121],[117,218,69,6.055147171020508],[117,218,70,6.05340576171875],[117,218,71,6.053691387176514],[117,218,72,6.056863307952881],[117,218,73,6.066365718841553],[117,218,74,6.079727649688721],[117,218,75,6.093751907348633],[117,218,76,6.108086585998535],[117,218,77,6.1232171058654785],[117,218,78,6.13298225402832],[117,218,79,6.136005878448486],[117,219,64,6.066739082336426],[117,219,65,6.077524662017822],[117,219,66,6.078339099884033],[117,219,67,6.070504665374756],[117,219,68,6.061385154724121],[117,219,69,6.055147171020508],[117,219,70,6.05340576171875],[117,219,71,6.053691387176514],[117,219,72,6.056863307952881],[117,219,73,6.066365718841553],[117,219,74,6.079727649688721],[117,219,75,6.093751907348633],[117,219,76,6.108086585998535],[117,219,77,6.1232171058654785],[117,219,78,6.13298225402832],[117,219,79,6.136005878448486],[117,220,64,6.066739082336426],[117,220,65,6.077524662017822],[117,220,66,6.078339099884033],[117,220,67,6.070504665374756],[117,220,68,6.061385154724121],[117,220,69,6.055147171020508],[117,220,70,6.05340576171875],[117,220,71,6.053691387176514],[117,220,72,6.056863307952881],[117,220,73,6.066365718841553],[117,220,74,6.079727649688721],[117,220,75,6.093751907348633],[117,220,76,6.108086585998535],[117,220,77,6.1232171058654785],[117,220,78,6.13298225402832],[117,220,79,6.136005878448486],[117,221,64,6.066739082336426],[117,221,65,6.077524662017822],[117,221,66,6.078339099884033],[117,221,67,6.070504665374756],[117,221,68,6.061385154724121],[117,221,69,6.055147171020508],[117,221,70,6.05340576171875],[117,221,71,6.053691387176514],[117,221,72,6.056863307952881],[117,221,73,6.066365718841553],[117,221,74,6.079727649688721],[117,221,75,6.093751907348633],[117,221,76,6.108086585998535],[117,221,77,6.1232171058654785],[117,221,78,6.13298225402832],[117,221,79,6.136005878448486],[117,222,64,6.066739082336426],[117,222,65,6.077524662017822],[117,222,66,6.078339099884033],[117,222,67,6.070504665374756],[117,222,68,6.061385154724121],[117,222,69,6.055147171020508],[117,222,70,6.05340576171875],[117,222,71,6.053691387176514],[117,222,72,6.056863307952881],[117,222,73,6.066365718841553],[117,222,74,6.079727649688721],[117,222,75,6.093751907348633],[117,222,76,6.108086585998535],[117,222,77,6.1232171058654785],[117,222,78,6.13298225402832],[117,222,79,6.136005878448486],[117,223,64,6.066739082336426],[117,223,65,6.077524662017822],[117,223,66,6.078339099884033],[117,223,67,6.070504665374756],[117,223,68,6.061385154724121],[117,223,69,6.055147171020508],[117,223,70,6.05340576171875],[117,223,71,6.053691387176514],[117,223,72,6.056863307952881],[117,223,73,6.066365718841553],[117,223,74,6.079727649688721],[117,223,75,6.093751907348633],[117,223,76,6.108086585998535],[117,223,77,6.1232171058654785],[117,223,78,6.13298225402832],[117,223,79,6.136005878448486],[117,224,64,6.066739082336426],[117,224,65,6.077524662017822],[117,224,66,6.078339099884033],[117,224,67,6.070504665374756],[117,224,68,6.061385154724121],[117,224,69,6.055147171020508],[117,224,70,6.05340576171875],[117,224,71,6.053691387176514],[117,224,72,6.056863307952881],[117,224,73,6.066365718841553],[117,224,74,6.079727649688721],[117,224,75,6.093751907348633],[117,224,76,6.108086585998535],[117,224,77,6.1232171058654785],[117,224,78,6.13298225402832],[117,224,79,6.136005878448486],[117,225,64,6.066739082336426],[117,225,65,6.077524662017822],[117,225,66,6.078339099884033],[117,225,67,6.070504665374756],[117,225,68,6.061385154724121],[117,225,69,6.055147171020508],[117,225,70,6.05340576171875],[117,225,71,6.053691387176514],[117,225,72,6.056863307952881],[117,225,73,6.066365718841553],[117,225,74,6.079727649688721],[117,225,75,6.093751907348633],[117,225,76,6.108086585998535],[117,225,77,6.1232171058654785],[117,225,78,6.13298225402832],[117,225,79,6.136005878448486],[117,226,64,6.066739082336426],[117,226,65,6.077524662017822],[117,226,66,6.078339099884033],[117,226,67,6.070504665374756],[117,226,68,6.061385154724121],[117,226,69,6.055147171020508],[117,226,70,6.05340576171875],[117,226,71,6.053691387176514],[117,226,72,6.056863307952881],[117,226,73,6.066365718841553],[117,226,74,6.079727649688721],[117,226,75,6.093751907348633],[117,226,76,6.108086585998535],[117,226,77,6.1232171058654785],[117,226,78,6.13298225402832],[117,226,79,6.136005878448486],[117,227,64,6.066739082336426],[117,227,65,6.077524662017822],[117,227,66,6.078339099884033],[117,227,67,6.070504665374756],[117,227,68,6.061385154724121],[117,227,69,6.055147171020508],[117,227,70,6.05340576171875],[117,227,71,6.053691387176514],[117,227,72,6.056863307952881],[117,227,73,6.066365718841553],[117,227,74,6.079727649688721],[117,227,75,6.093751907348633],[117,227,76,6.108086585998535],[117,227,77,6.1232171058654785],[117,227,78,6.13298225402832],[117,227,79,6.136005878448486],[117,228,64,6.066739082336426],[117,228,65,6.077524662017822],[117,228,66,6.078339099884033],[117,228,67,6.070504665374756],[117,228,68,6.061385154724121],[117,228,69,6.055147171020508],[117,228,70,6.05340576171875],[117,228,71,6.053691387176514],[117,228,72,6.056863307952881],[117,228,73,6.066365718841553],[117,228,74,6.079727649688721],[117,228,75,6.093751907348633],[117,228,76,6.108086585998535],[117,228,77,6.1232171058654785],[117,228,78,6.13298225402832],[117,228,79,6.136005878448486],[117,229,64,6.066739082336426],[117,229,65,6.077524662017822],[117,229,66,6.078339099884033],[117,229,67,6.070504665374756],[117,229,68,6.061385154724121],[117,229,69,6.055147171020508],[117,229,70,6.05340576171875],[117,229,71,6.053691387176514],[117,229,72,6.056863307952881],[117,229,73,6.066365718841553],[117,229,74,6.079727649688721],[117,229,75,6.093751907348633],[117,229,76,6.108086585998535],[117,229,77,6.1232171058654785],[117,229,78,6.13298225402832],[117,229,79,6.136005878448486],[117,230,64,6.066739082336426],[117,230,65,6.077524662017822],[117,230,66,6.078339099884033],[117,230,67,6.070504665374756],[117,230,68,6.061385154724121],[117,230,69,6.055147171020508],[117,230,70,6.05340576171875],[117,230,71,6.053691387176514],[117,230,72,6.056863307952881],[117,230,73,6.066365718841553],[117,230,74,6.079727649688721],[117,230,75,6.093751907348633],[117,230,76,6.108086585998535],[117,230,77,6.1232171058654785],[117,230,78,6.13298225402832],[117,230,79,6.136005878448486],[117,231,64,6.066739082336426],[117,231,65,6.077524662017822],[117,231,66,6.078339099884033],[117,231,67,6.070504665374756],[117,231,68,6.061385154724121],[117,231,69,6.055147171020508],[117,231,70,6.05340576171875],[117,231,71,6.053691387176514],[117,231,72,6.056863307952881],[117,231,73,6.066365718841553],[117,231,74,6.079727649688721],[117,231,75,6.093751907348633],[117,231,76,6.108086585998535],[117,231,77,6.1232171058654785],[117,231,78,6.13298225402832],[117,231,79,6.136005878448486],[117,232,64,6.066739082336426],[117,232,65,6.077524662017822],[117,232,66,6.078339099884033],[117,232,67,6.070504665374756],[117,232,68,6.061385154724121],[117,232,69,6.055147171020508],[117,232,70,6.05340576171875],[117,232,71,6.053691387176514],[117,232,72,6.056863307952881],[117,232,73,6.066365718841553],[117,232,74,6.079727649688721],[117,232,75,6.093751907348633],[117,232,76,6.108086585998535],[117,232,77,6.1232171058654785],[117,232,78,6.13298225402832],[117,232,79,6.136005878448486],[117,233,64,6.066739082336426],[117,233,65,6.077524662017822],[117,233,66,6.078339099884033],[117,233,67,6.070504665374756],[117,233,68,6.061385154724121],[117,233,69,6.055147171020508],[117,233,70,6.05340576171875],[117,233,71,6.053691387176514],[117,233,72,6.056863307952881],[117,233,73,6.066365718841553],[117,233,74,6.079727649688721],[117,233,75,6.093751907348633],[117,233,76,6.108086585998535],[117,233,77,6.1232171058654785],[117,233,78,6.13298225402832],[117,233,79,6.136005878448486],[117,234,64,6.066739082336426],[117,234,65,6.077524662017822],[117,234,66,6.078339099884033],[117,234,67,6.070504665374756],[117,234,68,6.061385154724121],[117,234,69,6.055147171020508],[117,234,70,6.05340576171875],[117,234,71,6.053691387176514],[117,234,72,6.056863307952881],[117,234,73,6.066365718841553],[117,234,74,6.079727649688721],[117,234,75,6.093751907348633],[117,234,76,6.108086585998535],[117,234,77,6.1232171058654785],[117,234,78,6.13298225402832],[117,234,79,6.136005878448486],[117,235,64,6.066739082336426],[117,235,65,6.077524662017822],[117,235,66,6.078339099884033],[117,235,67,6.070504665374756],[117,235,68,6.061385154724121],[117,235,69,6.055147171020508],[117,235,70,6.05340576171875],[117,235,71,6.053691387176514],[117,235,72,6.056863307952881],[117,235,73,6.066365718841553],[117,235,74,6.079727649688721],[117,235,75,6.093751907348633],[117,235,76,6.108086585998535],[117,235,77,6.1232171058654785],[117,235,78,6.13298225402832],[117,235,79,6.136005878448486],[117,236,64,6.066739082336426],[117,236,65,6.077524662017822],[117,236,66,6.078339099884033],[117,236,67,6.070504665374756],[117,236,68,6.061385154724121],[117,236,69,6.055147171020508],[117,236,70,6.05340576171875],[117,236,71,6.053691387176514],[117,236,72,6.056863307952881],[117,236,73,6.066365718841553],[117,236,74,6.079727649688721],[117,236,75,6.093751907348633],[117,236,76,6.108086585998535],[117,236,77,6.1232171058654785],[117,236,78,6.13298225402832],[117,236,79,6.136005878448486],[117,237,64,6.066739082336426],[117,237,65,6.077524662017822],[117,237,66,6.078339099884033],[117,237,67,6.070504665374756],[117,237,68,6.061385154724121],[117,237,69,6.055147171020508],[117,237,70,6.05340576171875],[117,237,71,6.053691387176514],[117,237,72,6.056863307952881],[117,237,73,6.066365718841553],[117,237,74,6.079727649688721],[117,237,75,6.093751907348633],[117,237,76,6.108086585998535],[117,237,77,6.1232171058654785],[117,237,78,6.13298225402832],[117,237,79,6.136005878448486],[117,238,64,6.066739082336426],[117,238,65,6.077524662017822],[117,238,66,6.078339099884033],[117,238,67,6.070504665374756],[117,238,68,6.061385154724121],[117,238,69,6.055147171020508],[117,238,70,6.05340576171875],[117,238,71,6.053691387176514],[117,238,72,6.056863307952881],[117,238,73,6.066365718841553],[117,238,74,6.079727649688721],[117,238,75,6.093751907348633],[117,238,76,6.108086585998535],[117,238,77,6.1232171058654785],[117,238,78,6.13298225402832],[117,238,79,6.136005878448486],[117,239,64,6.066739082336426],[117,239,65,6.077524662017822],[117,239,66,6.078339099884033],[117,239,67,6.070504665374756],[117,239,68,6.061385154724121],[117,239,69,6.055147171020508],[117,239,70,6.05340576171875],[117,239,71,6.053691387176514],[117,239,72,6.056863307952881],[117,239,73,6.066365718841553],[117,239,74,6.079727649688721],[117,239,75,6.093751907348633],[117,239,76,6.108086585998535],[117,239,77,6.1232171058654785],[117,239,78,6.13298225402832],[117,239,79,6.136005878448486],[117,240,64,6.066739082336426],[117,240,65,6.077524662017822],[117,240,66,6.078339099884033],[117,240,67,6.070504665374756],[117,240,68,6.061385154724121],[117,240,69,6.055147171020508],[117,240,70,6.05340576171875],[117,240,71,6.053691387176514],[117,240,72,6.056863307952881],[117,240,73,6.066365718841553],[117,240,74,6.079727649688721],[117,240,75,6.093751907348633],[117,240,76,6.108086585998535],[117,240,77,6.1232171058654785],[117,240,78,6.13298225402832],[117,240,79,6.136005878448486],[117,241,64,6.066739082336426],[117,241,65,6.077524662017822],[117,241,66,6.078339099884033],[117,241,67,6.070504665374756],[117,241,68,6.061385154724121],[117,241,69,6.055147171020508],[117,241,70,6.05340576171875],[117,241,71,6.053691387176514],[117,241,72,6.056863307952881],[117,241,73,6.066365718841553],[117,241,74,6.079727649688721],[117,241,75,6.093751907348633],[117,241,76,6.108086585998535],[117,241,77,6.1232171058654785],[117,241,78,6.13298225402832],[117,241,79,6.136005878448486],[117,242,64,6.066739082336426],[117,242,65,6.077524662017822],[117,242,66,6.078339099884033],[117,242,67,6.070504665374756],[117,242,68,6.061385154724121],[117,242,69,6.055147171020508],[117,242,70,6.05340576171875],[117,242,71,6.053691387176514],[117,242,72,6.056863307952881],[117,242,73,6.066365718841553],[117,242,74,6.079727649688721],[117,242,75,6.093751907348633],[117,242,76,6.108086585998535],[117,242,77,6.1232171058654785],[117,242,78,6.13298225402832],[117,242,79,6.136005878448486],[117,243,64,6.066739082336426],[117,243,65,6.077524662017822],[117,243,66,6.078339099884033],[117,243,67,6.070504665374756],[117,243,68,6.061385154724121],[117,243,69,6.055147171020508],[117,243,70,6.05340576171875],[117,243,71,6.053691387176514],[117,243,72,6.056863307952881],[117,243,73,6.066365718841553],[117,243,74,6.079727649688721],[117,243,75,6.093751907348633],[117,243,76,6.108086585998535],[117,243,77,6.1232171058654785],[117,243,78,6.13298225402832],[117,243,79,6.136005878448486],[117,244,64,6.066739082336426],[117,244,65,6.077524662017822],[117,244,66,6.078339099884033],[117,244,67,6.070504665374756],[117,244,68,6.061385154724121],[117,244,69,6.055147171020508],[117,244,70,6.05340576171875],[117,244,71,6.053691387176514],[117,244,72,6.056863307952881],[117,244,73,6.066365718841553],[117,244,74,6.079727649688721],[117,244,75,6.093751907348633],[117,244,76,6.108086585998535],[117,244,77,6.1232171058654785],[117,244,78,6.13298225402832],[117,244,79,6.136005878448486],[117,245,64,6.066739082336426],[117,245,65,6.077524662017822],[117,245,66,6.078339099884033],[117,245,67,6.070504665374756],[117,245,68,6.061385154724121],[117,245,69,6.055147171020508],[117,245,70,6.05340576171875],[117,245,71,6.053691387176514],[117,245,72,6.056863307952881],[117,245,73,6.066365718841553],[117,245,74,6.079727649688721],[117,245,75,6.093751907348633],[117,245,76,6.108086585998535],[117,245,77,6.1232171058654785],[117,245,78,6.13298225402832],[117,245,79,6.136005878448486],[117,246,64,6.066739082336426],[117,246,65,6.077524662017822],[117,246,66,6.078339099884033],[117,246,67,6.070504665374756],[117,246,68,6.061385154724121],[117,246,69,6.055147171020508],[117,246,70,6.05340576171875],[117,246,71,6.053691387176514],[117,246,72,6.056863307952881],[117,246,73,6.066365718841553],[117,246,74,6.079727649688721],[117,246,75,6.093751907348633],[117,246,76,6.108086585998535],[117,246,77,6.1232171058654785],[117,246,78,6.13298225402832],[117,246,79,6.136005878448486],[117,247,64,6.066739082336426],[117,247,65,6.077524662017822],[117,247,66,6.078339099884033],[117,247,67,6.070504665374756],[117,247,68,6.061385154724121],[117,247,69,6.055147171020508],[117,247,70,6.05340576171875],[117,247,71,6.053691387176514],[117,247,72,6.056863307952881],[117,247,73,6.066365718841553],[117,247,74,6.079727649688721],[117,247,75,6.093751907348633],[117,247,76,6.108086585998535],[117,247,77,6.1232171058654785],[117,247,78,6.13298225402832],[117,247,79,6.136005878448486],[117,248,64,6.066739082336426],[117,248,65,6.077524662017822],[117,248,66,6.078339099884033],[117,248,67,6.070504665374756],[117,248,68,6.061385154724121],[117,248,69,6.055147171020508],[117,248,70,6.05340576171875],[117,248,71,6.053691387176514],[117,248,72,6.056863307952881],[117,248,73,6.066365718841553],[117,248,74,6.079727649688721],[117,248,75,6.093751907348633],[117,248,76,6.108086585998535],[117,248,77,6.1232171058654785],[117,248,78,6.13298225402832],[117,248,79,6.136005878448486],[117,249,64,6.066739082336426],[117,249,65,6.077524662017822],[117,249,66,6.078339099884033],[117,249,67,6.070504665374756],[117,249,68,6.061385154724121],[117,249,69,6.055147171020508],[117,249,70,6.05340576171875],[117,249,71,6.053691387176514],[117,249,72,6.056863307952881],[117,249,73,6.066365718841553],[117,249,74,6.079727649688721],[117,249,75,6.093751907348633],[117,249,76,6.108086585998535],[117,249,77,6.1232171058654785],[117,249,78,6.13298225402832],[117,249,79,6.136005878448486],[117,250,64,6.066739082336426],[117,250,65,6.077524662017822],[117,250,66,6.078339099884033],[117,250,67,6.070504665374756],[117,250,68,6.061385154724121],[117,250,69,6.055147171020508],[117,250,70,6.05340576171875],[117,250,71,6.053691387176514],[117,250,72,6.056863307952881],[117,250,73,6.066365718841553],[117,250,74,6.079727649688721],[117,250,75,6.093751907348633],[117,250,76,6.108086585998535],[117,250,77,6.1232171058654785],[117,250,78,6.13298225402832],[117,250,79,6.136005878448486],[117,251,64,6.066739082336426],[117,251,65,6.077524662017822],[117,251,66,6.078339099884033],[117,251,67,6.070504665374756],[117,251,68,6.061385154724121],[117,251,69,6.055147171020508],[117,251,70,6.05340576171875],[117,251,71,6.053691387176514],[117,251,72,6.056863307952881],[117,251,73,6.066365718841553],[117,251,74,6.079727649688721],[117,251,75,6.093751907348633],[117,251,76,6.108086585998535],[117,251,77,6.1232171058654785],[117,251,78,6.13298225402832],[117,251,79,6.136005878448486],[117,252,64,6.066739082336426],[117,252,65,6.077524662017822],[117,252,66,6.078339099884033],[117,252,67,6.070504665374756],[117,252,68,6.061385154724121],[117,252,69,6.055147171020508],[117,252,70,6.05340576171875],[117,252,71,6.053691387176514],[117,252,72,6.056863307952881],[117,252,73,6.066365718841553],[117,252,74,6.079727649688721],[117,252,75,6.093751907348633],[117,252,76,6.108086585998535],[117,252,77,6.1232171058654785],[117,252,78,6.13298225402832],[117,252,79,6.136005878448486],[117,253,64,6.066739082336426],[117,253,65,6.077524662017822],[117,253,66,6.078339099884033],[117,253,67,6.070504665374756],[117,253,68,6.061385154724121],[117,253,69,6.055147171020508],[117,253,70,6.05340576171875],[117,253,71,6.053691387176514],[117,253,72,6.056863307952881],[117,253,73,6.066365718841553],[117,253,74,6.079727649688721],[117,253,75,6.093751907348633],[117,253,76,6.108086585998535],[117,253,77,6.1232171058654785],[117,253,78,6.13298225402832],[117,253,79,6.136005878448486],[117,254,64,6.066739082336426],[117,254,65,6.077524662017822],[117,254,66,6.078339099884033],[117,254,67,6.070504665374756],[117,254,68,6.061385154724121],[117,254,69,6.055147171020508],[117,254,70,6.05340576171875],[117,254,71,6.053691387176514],[117,254,72,6.056863307952881],[117,254,73,6.066365718841553],[117,254,74,6.079727649688721],[117,254,75,6.093751907348633],[117,254,76,6.108086585998535],[117,254,77,6.1232171058654785],[117,254,78,6.13298225402832],[117,254,79,6.136005878448486],[117,255,64,6.066739082336426],[117,255,65,6.077524662017822],[117,255,66,6.078339099884033],[117,255,67,6.070504665374756],[117,255,68,6.061385154724121],[117,255,69,6.055147171020508],[117,255,70,6.05340576171875],[117,255,71,6.053691387176514],[117,255,72,6.056863307952881],[117,255,73,6.066365718841553],[117,255,74,6.079727649688721],[117,255,75,6.093751907348633],[117,255,76,6.108086585998535],[117,255,77,6.1232171058654785],[117,255,78,6.13298225402832],[117,255,79,6.136005878448486],[117,256,64,6.066739082336426],[117,256,65,6.077524662017822],[117,256,66,6.078339099884033],[117,256,67,6.070504665374756],[117,256,68,6.061385154724121],[117,256,69,6.055147171020508],[117,256,70,6.05340576171875],[117,256,71,6.053691387176514],[117,256,72,6.056863307952881],[117,256,73,6.066365718841553],[117,256,74,6.079727649688721],[117,256,75,6.093751907348633],[117,256,76,6.108086585998535],[117,256,77,6.1232171058654785],[117,256,78,6.13298225402832],[117,256,79,6.136005878448486],[117,257,64,6.066739082336426],[117,257,65,6.077524662017822],[117,257,66,6.078339099884033],[117,257,67,6.070504665374756],[117,257,68,6.061385154724121],[117,257,69,6.055147171020508],[117,257,70,6.05340576171875],[117,257,71,6.053691387176514],[117,257,72,6.056863307952881],[117,257,73,6.066365718841553],[117,257,74,6.079727649688721],[117,257,75,6.093751907348633],[117,257,76,6.108086585998535],[117,257,77,6.1232171058654785],[117,257,78,6.13298225402832],[117,257,79,6.136005878448486],[117,258,64,6.066739082336426],[117,258,65,6.077524662017822],[117,258,66,6.078339099884033],[117,258,67,6.070504665374756],[117,258,68,6.061385154724121],[117,258,69,6.055147171020508],[117,258,70,6.05340576171875],[117,258,71,6.053691387176514],[117,258,72,6.056863307952881],[117,258,73,6.066365718841553],[117,258,74,6.079727649688721],[117,258,75,6.093751907348633],[117,258,76,6.108086585998535],[117,258,77,6.1232171058654785],[117,258,78,6.13298225402832],[117,258,79,6.136005878448486],[117,259,64,6.066739082336426],[117,259,65,6.077524662017822],[117,259,66,6.078339099884033],[117,259,67,6.070504665374756],[117,259,68,6.061385154724121],[117,259,69,6.055147171020508],[117,259,70,6.05340576171875],[117,259,71,6.053691387176514],[117,259,72,6.056863307952881],[117,259,73,6.066365718841553],[117,259,74,6.079727649688721],[117,259,75,6.093751907348633],[117,259,76,6.108086585998535],[117,259,77,6.1232171058654785],[117,259,78,6.13298225402832],[117,259,79,6.136005878448486],[117,260,64,6.066739082336426],[117,260,65,6.077524662017822],[117,260,66,6.078339099884033],[117,260,67,6.070504665374756],[117,260,68,6.061385154724121],[117,260,69,6.055147171020508],[117,260,70,6.05340576171875],[117,260,71,6.053691387176514],[117,260,72,6.056863307952881],[117,260,73,6.066365718841553],[117,260,74,6.079727649688721],[117,260,75,6.093751907348633],[117,260,76,6.108086585998535],[117,260,77,6.1232171058654785],[117,260,78,6.13298225402832],[117,260,79,6.136005878448486],[117,261,64,6.066739082336426],[117,261,65,6.077524662017822],[117,261,66,6.078339099884033],[117,261,67,6.070504665374756],[117,261,68,6.061385154724121],[117,261,69,6.055147171020508],[117,261,70,6.05340576171875],[117,261,71,6.053691387176514],[117,261,72,6.056863307952881],[117,261,73,6.066365718841553],[117,261,74,6.079727649688721],[117,261,75,6.093751907348633],[117,261,76,6.108086585998535],[117,261,77,6.1232171058654785],[117,261,78,6.13298225402832],[117,261,79,6.136005878448486],[117,262,64,6.066739082336426],[117,262,65,6.077524662017822],[117,262,66,6.078339099884033],[117,262,67,6.070504665374756],[117,262,68,6.061385154724121],[117,262,69,6.055147171020508],[117,262,70,6.05340576171875],[117,262,71,6.053691387176514],[117,262,72,6.056863307952881],[117,262,73,6.066365718841553],[117,262,74,6.079727649688721],[117,262,75,6.093751907348633],[117,262,76,6.108086585998535],[117,262,77,6.1232171058654785],[117,262,78,6.13298225402832],[117,262,79,6.136005878448486],[117,263,64,6.066739082336426],[117,263,65,6.077524662017822],[117,263,66,6.078339099884033],[117,263,67,6.070504665374756],[117,263,68,6.061385154724121],[117,263,69,6.055147171020508],[117,263,70,6.05340576171875],[117,263,71,6.053691387176514],[117,263,72,6.056863307952881],[117,263,73,6.066365718841553],[117,263,74,6.079727649688721],[117,263,75,6.093751907348633],[117,263,76,6.108086585998535],[117,263,77,6.1232171058654785],[117,263,78,6.13298225402832],[117,263,79,6.136005878448486],[117,264,64,6.066739082336426],[117,264,65,6.077524662017822],[117,264,66,6.078339099884033],[117,264,67,6.070504665374756],[117,264,68,6.061385154724121],[117,264,69,6.055147171020508],[117,264,70,6.05340576171875],[117,264,71,6.053691387176514],[117,264,72,6.056863307952881],[117,264,73,6.066365718841553],[117,264,74,6.079727649688721],[117,264,75,6.093751907348633],[117,264,76,6.108086585998535],[117,264,77,6.1232171058654785],[117,264,78,6.13298225402832],[117,264,79,6.136005878448486],[117,265,64,6.066739082336426],[117,265,65,6.077524662017822],[117,265,66,6.078339099884033],[117,265,67,6.070504665374756],[117,265,68,6.061385154724121],[117,265,69,6.055147171020508],[117,265,70,6.05340576171875],[117,265,71,6.053691387176514],[117,265,72,6.056863307952881],[117,265,73,6.066365718841553],[117,265,74,6.079727649688721],[117,265,75,6.093751907348633],[117,265,76,6.108086585998535],[117,265,77,6.1232171058654785],[117,265,78,6.13298225402832],[117,265,79,6.136005878448486],[117,266,64,6.066739082336426],[117,266,65,6.077524662017822],[117,266,66,6.078339099884033],[117,266,67,6.070504665374756],[117,266,68,6.061385154724121],[117,266,69,6.055147171020508],[117,266,70,6.05340576171875],[117,266,71,6.053691387176514],[117,266,72,6.056863307952881],[117,266,73,6.066365718841553],[117,266,74,6.079727649688721],[117,266,75,6.093751907348633],[117,266,76,6.108086585998535],[117,266,77,6.1232171058654785],[117,266,78,6.13298225402832],[117,266,79,6.136005878448486],[117,267,64,6.066739082336426],[117,267,65,6.077524662017822],[117,267,66,6.078339099884033],[117,267,67,6.070504665374756],[117,267,68,6.061385154724121],[117,267,69,6.055147171020508],[117,267,70,6.05340576171875],[117,267,71,6.053691387176514],[117,267,72,6.056863307952881],[117,267,73,6.066365718841553],[117,267,74,6.079727649688721],[117,267,75,6.093751907348633],[117,267,76,6.108086585998535],[117,267,77,6.1232171058654785],[117,267,78,6.13298225402832],[117,267,79,6.136005878448486],[117,268,64,6.066739082336426],[117,268,65,6.077524662017822],[117,268,66,6.078339099884033],[117,268,67,6.070504665374756],[117,268,68,6.061385154724121],[117,268,69,6.055147171020508],[117,268,70,6.05340576171875],[117,268,71,6.053691387176514],[117,268,72,6.056863307952881],[117,268,73,6.066365718841553],[117,268,74,6.079727649688721],[117,268,75,6.093751907348633],[117,268,76,6.108086585998535],[117,268,77,6.1232171058654785],[117,268,78,6.13298225402832],[117,268,79,6.136005878448486],[117,269,64,6.066739082336426],[117,269,65,6.077524662017822],[117,269,66,6.078339099884033],[117,269,67,6.070504665374756],[117,269,68,6.061385154724121],[117,269,69,6.055147171020508],[117,269,70,6.05340576171875],[117,269,71,6.053691387176514],[117,269,72,6.056863307952881],[117,269,73,6.066365718841553],[117,269,74,6.079727649688721],[117,269,75,6.093751907348633],[117,269,76,6.108086585998535],[117,269,77,6.1232171058654785],[117,269,78,6.13298225402832],[117,269,79,6.136005878448486],[117,270,64,6.066739082336426],[117,270,65,6.077524662017822],[117,270,66,6.078339099884033],[117,270,67,6.070504665374756],[117,270,68,6.061385154724121],[117,270,69,6.055147171020508],[117,270,70,6.05340576171875],[117,270,71,6.053691387176514],[117,270,72,6.056863307952881],[117,270,73,6.066365718841553],[117,270,74,6.079727649688721],[117,270,75,6.093751907348633],[117,270,76,6.108086585998535],[117,270,77,6.1232171058654785],[117,270,78,6.13298225402832],[117,270,79,6.136005878448486],[117,271,64,6.066739082336426],[117,271,65,6.077524662017822],[117,271,66,6.078339099884033],[117,271,67,6.070504665374756],[117,271,68,6.061385154724121],[117,271,69,6.055147171020508],[117,271,70,6.05340576171875],[117,271,71,6.053691387176514],[117,271,72,6.056863307952881],[117,271,73,6.066365718841553],[117,271,74,6.079727649688721],[117,271,75,6.093751907348633],[117,271,76,6.108086585998535],[117,271,77,6.1232171058654785],[117,271,78,6.13298225402832],[117,271,79,6.136005878448486],[117,272,64,6.066739082336426],[117,272,65,6.077524662017822],[117,272,66,6.078339099884033],[117,272,67,6.070504665374756],[117,272,68,6.061385154724121],[117,272,69,6.055147171020508],[117,272,70,6.05340576171875],[117,272,71,6.053691387176514],[117,272,72,6.056863307952881],[117,272,73,6.066365718841553],[117,272,74,6.079727649688721],[117,272,75,6.093751907348633],[117,272,76,6.108086585998535],[117,272,77,6.1232171058654785],[117,272,78,6.13298225402832],[117,272,79,6.136005878448486],[117,273,64,6.066739082336426],[117,273,65,6.077524662017822],[117,273,66,6.078339099884033],[117,273,67,6.070504665374756],[117,273,68,6.061385154724121],[117,273,69,6.055147171020508],[117,273,70,6.05340576171875],[117,273,71,6.053691387176514],[117,273,72,6.056863307952881],[117,273,73,6.066365718841553],[117,273,74,6.079727649688721],[117,273,75,6.093751907348633],[117,273,76,6.108086585998535],[117,273,77,6.1232171058654785],[117,273,78,6.13298225402832],[117,273,79,6.136005878448486],[117,274,64,6.066739082336426],[117,274,65,6.077524662017822],[117,274,66,6.078339099884033],[117,274,67,6.070504665374756],[117,274,68,6.061385154724121],[117,274,69,6.055147171020508],[117,274,70,6.05340576171875],[117,274,71,6.053691387176514],[117,274,72,6.056863307952881],[117,274,73,6.066365718841553],[117,274,74,6.079727649688721],[117,274,75,6.093751907348633],[117,274,76,6.108086585998535],[117,274,77,6.1232171058654785],[117,274,78,6.13298225402832],[117,274,79,6.136005878448486],[117,275,64,6.066739082336426],[117,275,65,6.077524662017822],[117,275,66,6.078339099884033],[117,275,67,6.070504665374756],[117,275,68,6.061385154724121],[117,275,69,6.055147171020508],[117,275,70,6.05340576171875],[117,275,71,6.053691387176514],[117,275,72,6.056863307952881],[117,275,73,6.066365718841553],[117,275,74,6.079727649688721],[117,275,75,6.093751907348633],[117,275,76,6.108086585998535],[117,275,77,6.1232171058654785],[117,275,78,6.13298225402832],[117,275,79,6.136005878448486],[117,276,64,6.066739082336426],[117,276,65,6.077524662017822],[117,276,66,6.078339099884033],[117,276,67,6.070504665374756],[117,276,68,6.061385154724121],[117,276,69,6.055147171020508],[117,276,70,6.05340576171875],[117,276,71,6.053691387176514],[117,276,72,6.056863307952881],[117,276,73,6.066365718841553],[117,276,74,6.079727649688721],[117,276,75,6.093751907348633],[117,276,76,6.108086585998535],[117,276,77,6.1232171058654785],[117,276,78,6.13298225402832],[117,276,79,6.136005878448486],[117,277,64,6.066739082336426],[117,277,65,6.077524662017822],[117,277,66,6.078339099884033],[117,277,67,6.070504665374756],[117,277,68,6.061385154724121],[117,277,69,6.055147171020508],[117,277,70,6.05340576171875],[117,277,71,6.053691387176514],[117,277,72,6.056863307952881],[117,277,73,6.066365718841553],[117,277,74,6.079727649688721],[117,277,75,6.093751907348633],[117,277,76,6.108086585998535],[117,277,77,6.1232171058654785],[117,277,78,6.13298225402832],[117,277,79,6.136005878448486],[117,278,64,6.066739082336426],[117,278,65,6.077524662017822],[117,278,66,6.078339099884033],[117,278,67,6.070504665374756],[117,278,68,6.061385154724121],[117,278,69,6.055147171020508],[117,278,70,6.05340576171875],[117,278,71,6.053691387176514],[117,278,72,6.056863307952881],[117,278,73,6.066365718841553],[117,278,74,6.079727649688721],[117,278,75,6.093751907348633],[117,278,76,6.108086585998535],[117,278,77,6.1232171058654785],[117,278,78,6.13298225402832],[117,278,79,6.136005878448486],[117,279,64,6.066739082336426],[117,279,65,6.077524662017822],[117,279,66,6.078339099884033],[117,279,67,6.070504665374756],[117,279,68,6.061385154724121],[117,279,69,6.055147171020508],[117,279,70,6.05340576171875],[117,279,71,6.053691387176514],[117,279,72,6.056863307952881],[117,279,73,6.066365718841553],[117,279,74,6.079727649688721],[117,279,75,6.093751907348633],[117,279,76,6.108086585998535],[117,279,77,6.1232171058654785],[117,279,78,6.13298225402832],[117,279,79,6.136005878448486],[117,280,64,6.066739082336426],[117,280,65,6.077524662017822],[117,280,66,6.078339099884033],[117,280,67,6.070504665374756],[117,280,68,6.061385154724121],[117,280,69,6.055147171020508],[117,280,70,6.05340576171875],[117,280,71,6.053691387176514],[117,280,72,6.056863307952881],[117,280,73,6.066365718841553],[117,280,74,6.079727649688721],[117,280,75,6.093751907348633],[117,280,76,6.108086585998535],[117,280,77,6.1232171058654785],[117,280,78,6.13298225402832],[117,280,79,6.136005878448486],[117,281,64,6.066739082336426],[117,281,65,6.077524662017822],[117,281,66,6.078339099884033],[117,281,67,6.070504665374756],[117,281,68,6.061385154724121],[117,281,69,6.055147171020508],[117,281,70,6.05340576171875],[117,281,71,6.053691387176514],[117,281,72,6.056863307952881],[117,281,73,6.066365718841553],[117,281,74,6.079727649688721],[117,281,75,6.093751907348633],[117,281,76,6.108086585998535],[117,281,77,6.1232171058654785],[117,281,78,6.13298225402832],[117,281,79,6.136005878448486],[117,282,64,6.066739082336426],[117,282,65,6.077524662017822],[117,282,66,6.078339099884033],[117,282,67,6.070504665374756],[117,282,68,6.061385154724121],[117,282,69,6.055147171020508],[117,282,70,6.05340576171875],[117,282,71,6.053691387176514],[117,282,72,6.056863307952881],[117,282,73,6.066365718841553],[117,282,74,6.079727649688721],[117,282,75,6.093751907348633],[117,282,76,6.108086585998535],[117,282,77,6.1232171058654785],[117,282,78,6.13298225402832],[117,282,79,6.136005878448486],[117,283,64,6.066739082336426],[117,283,65,6.077524662017822],[117,283,66,6.078339099884033],[117,283,67,6.070504665374756],[117,283,68,6.061385154724121],[117,283,69,6.055147171020508],[117,283,70,6.05340576171875],[117,283,71,6.053691387176514],[117,283,72,6.056863307952881],[117,283,73,6.066365718841553],[117,283,74,6.079727649688721],[117,283,75,6.093751907348633],[117,283,76,6.108086585998535],[117,283,77,6.1232171058654785],[117,283,78,6.13298225402832],[117,283,79,6.136005878448486],[117,284,64,6.066739082336426],[117,284,65,6.077524662017822],[117,284,66,6.078339099884033],[117,284,67,6.070504665374756],[117,284,68,6.061385154724121],[117,284,69,6.055147171020508],[117,284,70,6.05340576171875],[117,284,71,6.053691387176514],[117,284,72,6.056863307952881],[117,284,73,6.066365718841553],[117,284,74,6.079727649688721],[117,284,75,6.093751907348633],[117,284,76,6.108086585998535],[117,284,77,6.1232171058654785],[117,284,78,6.13298225402832],[117,284,79,6.136005878448486],[117,285,64,6.066739082336426],[117,285,65,6.077524662017822],[117,285,66,6.078339099884033],[117,285,67,6.070504665374756],[117,285,68,6.061385154724121],[117,285,69,6.055147171020508],[117,285,70,6.05340576171875],[117,285,71,6.053691387176514],[117,285,72,6.056863307952881],[117,285,73,6.066365718841553],[117,285,74,6.079727649688721],[117,285,75,6.093751907348633],[117,285,76,6.108086585998535],[117,285,77,6.1232171058654785],[117,285,78,6.13298225402832],[117,285,79,6.136005878448486],[117,286,64,6.066739082336426],[117,286,65,6.077524662017822],[117,286,66,6.078339099884033],[117,286,67,6.070504665374756],[117,286,68,6.061385154724121],[117,286,69,6.055147171020508],[117,286,70,6.05340576171875],[117,286,71,6.053691387176514],[117,286,72,6.056863307952881],[117,286,73,6.066365718841553],[117,286,74,6.079727649688721],[117,286,75,6.093751907348633],[117,286,76,6.108086585998535],[117,286,77,6.1232171058654785],[117,286,78,6.13298225402832],[117,286,79,6.136005878448486],[117,287,64,6.066739082336426],[117,287,65,6.077524662017822],[117,287,66,6.078339099884033],[117,287,67,6.070504665374756],[117,287,68,6.061385154724121],[117,287,69,6.055147171020508],[117,287,70,6.05340576171875],[117,287,71,6.053691387176514],[117,287,72,6.056863307952881],[117,287,73,6.066365718841553],[117,287,74,6.079727649688721],[117,287,75,6.093751907348633],[117,287,76,6.108086585998535],[117,287,77,6.1232171058654785],[117,287,78,6.13298225402832],[117,287,79,6.136005878448486],[117,288,64,6.066739082336426],[117,288,65,6.077524662017822],[117,288,66,6.078339099884033],[117,288,67,6.070504665374756],[117,288,68,6.061385154724121],[117,288,69,6.055147171020508],[117,288,70,6.05340576171875],[117,288,71,6.053691387176514],[117,288,72,6.056863307952881],[117,288,73,6.066365718841553],[117,288,74,6.079727649688721],[117,288,75,6.093751907348633],[117,288,76,6.108086585998535],[117,288,77,6.1232171058654785],[117,288,78,6.13298225402832],[117,288,79,6.136005878448486],[117,289,64,6.066739082336426],[117,289,65,6.077524662017822],[117,289,66,6.078339099884033],[117,289,67,6.070504665374756],[117,289,68,6.061385154724121],[117,289,69,6.055147171020508],[117,289,70,6.05340576171875],[117,289,71,6.053691387176514],[117,289,72,6.056863307952881],[117,289,73,6.066365718841553],[117,289,74,6.079727649688721],[117,289,75,6.093751907348633],[117,289,76,6.108086585998535],[117,289,77,6.1232171058654785],[117,289,78,6.13298225402832],[117,289,79,6.136005878448486],[117,290,64,6.066739082336426],[117,290,65,6.077524662017822],[117,290,66,6.078339099884033],[117,290,67,6.070504665374756],[117,290,68,6.061385154724121],[117,290,69,6.055147171020508],[117,290,70,6.05340576171875],[117,290,71,6.053691387176514],[117,290,72,6.056863307952881],[117,290,73,6.066365718841553],[117,290,74,6.079727649688721],[117,290,75,6.093751907348633],[117,290,76,6.108086585998535],[117,290,77,6.1232171058654785],[117,290,78,6.13298225402832],[117,290,79,6.136005878448486],[117,291,64,6.066739082336426],[117,291,65,6.077524662017822],[117,291,66,6.078339099884033],[117,291,67,6.070504665374756],[117,291,68,6.061385154724121],[117,291,69,6.055147171020508],[117,291,70,6.05340576171875],[117,291,71,6.053691387176514],[117,291,72,6.056863307952881],[117,291,73,6.066365718841553],[117,291,74,6.079727649688721],[117,291,75,6.093751907348633],[117,291,76,6.108086585998535],[117,291,77,6.1232171058654785],[117,291,78,6.13298225402832],[117,291,79,6.136005878448486],[117,292,64,6.066739082336426],[117,292,65,6.077524662017822],[117,292,66,6.078339099884033],[117,292,67,6.070504665374756],[117,292,68,6.061385154724121],[117,292,69,6.055147171020508],[117,292,70,6.05340576171875],[117,292,71,6.053691387176514],[117,292,72,6.056863307952881],[117,292,73,6.066365718841553],[117,292,74,6.079727649688721],[117,292,75,6.093751907348633],[117,292,76,6.108086585998535],[117,292,77,6.1232171058654785],[117,292,78,6.13298225402832],[117,292,79,6.136005878448486],[117,293,64,6.066739082336426],[117,293,65,6.077524662017822],[117,293,66,6.078339099884033],[117,293,67,6.070504665374756],[117,293,68,6.061385154724121],[117,293,69,6.055147171020508],[117,293,70,6.05340576171875],[117,293,71,6.053691387176514],[117,293,72,6.056863307952881],[117,293,73,6.066365718841553],[117,293,74,6.079727649688721],[117,293,75,6.093751907348633],[117,293,76,6.108086585998535],[117,293,77,6.1232171058654785],[117,293,78,6.13298225402832],[117,293,79,6.136005878448486],[117,294,64,6.066739082336426],[117,294,65,6.077524662017822],[117,294,66,6.078339099884033],[117,294,67,6.070504665374756],[117,294,68,6.061385154724121],[117,294,69,6.055147171020508],[117,294,70,6.05340576171875],[117,294,71,6.053691387176514],[117,294,72,6.056863307952881],[117,294,73,6.066365718841553],[117,294,74,6.079727649688721],[117,294,75,6.093751907348633],[117,294,76,6.108086585998535],[117,294,77,6.1232171058654785],[117,294,78,6.13298225402832],[117,294,79,6.136005878448486],[117,295,64,6.066739082336426],[117,295,65,6.077524662017822],[117,295,66,6.078339099884033],[117,295,67,6.070504665374756],[117,295,68,6.061385154724121],[117,295,69,6.055147171020508],[117,295,70,6.05340576171875],[117,295,71,6.053691387176514],[117,295,72,6.056863307952881],[117,295,73,6.066365718841553],[117,295,74,6.079727649688721],[117,295,75,6.093751907348633],[117,295,76,6.108086585998535],[117,295,77,6.1232171058654785],[117,295,78,6.13298225402832],[117,295,79,6.136005878448486],[117,296,64,6.066739082336426],[117,296,65,6.077524662017822],[117,296,66,6.078339099884033],[117,296,67,6.070504665374756],[117,296,68,6.061385154724121],[117,296,69,6.055147171020508],[117,296,70,6.05340576171875],[117,296,71,6.053691387176514],[117,296,72,6.056863307952881],[117,296,73,6.066365718841553],[117,296,74,6.079727649688721],[117,296,75,6.093751907348633],[117,296,76,6.108086585998535],[117,296,77,6.1232171058654785],[117,296,78,6.13298225402832],[117,296,79,6.136005878448486],[117,297,64,6.066739082336426],[117,297,65,6.077524662017822],[117,297,66,6.078339099884033],[117,297,67,6.070504665374756],[117,297,68,6.061385154724121],[117,297,69,6.055147171020508],[117,297,70,6.05340576171875],[117,297,71,6.053691387176514],[117,297,72,6.056863307952881],[117,297,73,6.066365718841553],[117,297,74,6.079727649688721],[117,297,75,6.093751907348633],[117,297,76,6.108086585998535],[117,297,77,6.1232171058654785],[117,297,78,6.13298225402832],[117,297,79,6.136005878448486],[117,298,64,6.066739082336426],[117,298,65,6.077524662017822],[117,298,66,6.078339099884033],[117,298,67,6.070504665374756],[117,298,68,6.061385154724121],[117,298,69,6.055147171020508],[117,298,70,6.05340576171875],[117,298,71,6.053691387176514],[117,298,72,6.056863307952881],[117,298,73,6.066365718841553],[117,298,74,6.079727649688721],[117,298,75,6.093751907348633],[117,298,76,6.108086585998535],[117,298,77,6.1232171058654785],[117,298,78,6.13298225402832],[117,298,79,6.136005878448486],[117,299,64,6.066739082336426],[117,299,65,6.077524662017822],[117,299,66,6.078339099884033],[117,299,67,6.070504665374756],[117,299,68,6.061385154724121],[117,299,69,6.055147171020508],[117,299,70,6.05340576171875],[117,299,71,6.053691387176514],[117,299,72,6.056863307952881],[117,299,73,6.066365718841553],[117,299,74,6.079727649688721],[117,299,75,6.093751907348633],[117,299,76,6.108086585998535],[117,299,77,6.1232171058654785],[117,299,78,6.13298225402832],[117,299,79,6.136005878448486],[117,300,64,6.066739082336426],[117,300,65,6.077524662017822],[117,300,66,6.078339099884033],[117,300,67,6.070504665374756],[117,300,68,6.061385154724121],[117,300,69,6.055147171020508],[117,300,70,6.05340576171875],[117,300,71,6.053691387176514],[117,300,72,6.056863307952881],[117,300,73,6.066365718841553],[117,300,74,6.079727649688721],[117,300,75,6.093751907348633],[117,300,76,6.108086585998535],[117,300,77,6.1232171058654785],[117,300,78,6.13298225402832],[117,300,79,6.136005878448486],[117,301,64,6.066739082336426],[117,301,65,6.077524662017822],[117,301,66,6.078339099884033],[117,301,67,6.070504665374756],[117,301,68,6.061385154724121],[117,301,69,6.055147171020508],[117,301,70,6.05340576171875],[117,301,71,6.053691387176514],[117,301,72,6.056863307952881],[117,301,73,6.066365718841553],[117,301,74,6.079727649688721],[117,301,75,6.093751907348633],[117,301,76,6.108086585998535],[117,301,77,6.1232171058654785],[117,301,78,6.13298225402832],[117,301,79,6.136005878448486],[117,302,64,6.066739082336426],[117,302,65,6.077524662017822],[117,302,66,6.078339099884033],[117,302,67,6.070504665374756],[117,302,68,6.061385154724121],[117,302,69,6.055147171020508],[117,302,70,6.05340576171875],[117,302,71,6.053691387176514],[117,302,72,6.056863307952881],[117,302,73,6.066365718841553],[117,302,74,6.079727649688721],[117,302,75,6.093751907348633],[117,302,76,6.108086585998535],[117,302,77,6.1232171058654785],[117,302,78,6.13298225402832],[117,302,79,6.136005878448486],[117,303,64,6.066739082336426],[117,303,65,6.077524662017822],[117,303,66,6.078339099884033],[117,303,67,6.070504665374756],[117,303,68,6.061385154724121],[117,303,69,6.055147171020508],[117,303,70,6.05340576171875],[117,303,71,6.053691387176514],[117,303,72,6.056863307952881],[117,303,73,6.066365718841553],[117,303,74,6.079727649688721],[117,303,75,6.093751907348633],[117,303,76,6.108086585998535],[117,303,77,6.1232171058654785],[117,303,78,6.13298225402832],[117,303,79,6.136005878448486],[117,304,64,6.066739082336426],[117,304,65,6.077524662017822],[117,304,66,6.078339099884033],[117,304,67,6.070504665374756],[117,304,68,6.061385154724121],[117,304,69,6.055147171020508],[117,304,70,6.05340576171875],[117,304,71,6.053691387176514],[117,304,72,6.056863307952881],[117,304,73,6.066365718841553],[117,304,74,6.079727649688721],[117,304,75,6.093751907348633],[117,304,76,6.108086585998535],[117,304,77,6.1232171058654785],[117,304,78,6.13298225402832],[117,304,79,6.136005878448486],[117,305,64,6.066739082336426],[117,305,65,6.077524662017822],[117,305,66,6.078339099884033],[117,305,67,6.070504665374756],[117,305,68,6.061385154724121],[117,305,69,6.055147171020508],[117,305,70,6.05340576171875],[117,305,71,6.053691387176514],[117,305,72,6.056863307952881],[117,305,73,6.066365718841553],[117,305,74,6.079727649688721],[117,305,75,6.093751907348633],[117,305,76,6.108086585998535],[117,305,77,6.1232171058654785],[117,305,78,6.13298225402832],[117,305,79,6.136005878448486],[117,306,64,6.066739082336426],[117,306,65,6.077524662017822],[117,306,66,6.078339099884033],[117,306,67,6.070504665374756],[117,306,68,6.061385154724121],[117,306,69,6.055147171020508],[117,306,70,6.05340576171875],[117,306,71,6.053691387176514],[117,306,72,6.056863307952881],[117,306,73,6.066365718841553],[117,306,74,6.079727649688721],[117,306,75,6.093751907348633],[117,306,76,6.108086585998535],[117,306,77,6.1232171058654785],[117,306,78,6.13298225402832],[117,306,79,6.136005878448486],[117,307,64,6.066739082336426],[117,307,65,6.077524662017822],[117,307,66,6.078339099884033],[117,307,67,6.070504665374756],[117,307,68,6.061385154724121],[117,307,69,6.055147171020508],[117,307,70,6.05340576171875],[117,307,71,6.053691387176514],[117,307,72,6.056863307952881],[117,307,73,6.066365718841553],[117,307,74,6.079727649688721],[117,307,75,6.093751907348633],[117,307,76,6.108086585998535],[117,307,77,6.1232171058654785],[117,307,78,6.13298225402832],[117,307,79,6.136005878448486],[117,308,64,6.066739082336426],[117,308,65,6.077524662017822],[117,308,66,6.078339099884033],[117,308,67,6.070504665374756],[117,308,68,6.061385154724121],[117,308,69,6.055147171020508],[117,308,70,6.05340576171875],[117,308,71,6.053691387176514],[117,308,72,6.056863307952881],[117,308,73,6.066365718841553],[117,308,74,6.079727649688721],[117,308,75,6.093751907348633],[117,308,76,6.108086585998535],[117,308,77,6.1232171058654785],[117,308,78,6.13298225402832],[117,308,79,6.136005878448486],[117,309,64,6.066739082336426],[117,309,65,6.077524662017822],[117,309,66,6.078339099884033],[117,309,67,6.070504665374756],[117,309,68,6.061385154724121],[117,309,69,6.055147171020508],[117,309,70,6.05340576171875],[117,309,71,6.053691387176514],[117,309,72,6.056863307952881],[117,309,73,6.066365718841553],[117,309,74,6.079727649688721],[117,309,75,6.093751907348633],[117,309,76,6.108086585998535],[117,309,77,6.1232171058654785],[117,309,78,6.13298225402832],[117,309,79,6.136005878448486],[117,310,64,6.066739082336426],[117,310,65,6.077524662017822],[117,310,66,6.078339099884033],[117,310,67,6.070504665374756],[117,310,68,6.061385154724121],[117,310,69,6.055147171020508],[117,310,70,6.05340576171875],[117,310,71,6.053691387176514],[117,310,72,6.056863307952881],[117,310,73,6.066365718841553],[117,310,74,6.079727649688721],[117,310,75,6.093751907348633],[117,310,76,6.108086585998535],[117,310,77,6.1232171058654785],[117,310,78,6.13298225402832],[117,310,79,6.136005878448486],[117,311,64,6.066739082336426],[117,311,65,6.077524662017822],[117,311,66,6.078339099884033],[117,311,67,6.070504665374756],[117,311,68,6.061385154724121],[117,311,69,6.055147171020508],[117,311,70,6.05340576171875],[117,311,71,6.053691387176514],[117,311,72,6.056863307952881],[117,311,73,6.066365718841553],[117,311,74,6.079727649688721],[117,311,75,6.093751907348633],[117,311,76,6.108086585998535],[117,311,77,6.1232171058654785],[117,311,78,6.13298225402832],[117,311,79,6.136005878448486],[117,312,64,6.066739082336426],[117,312,65,6.077524662017822],[117,312,66,6.078339099884033],[117,312,67,6.070504665374756],[117,312,68,6.061385154724121],[117,312,69,6.055147171020508],[117,312,70,6.05340576171875],[117,312,71,6.053691387176514],[117,312,72,6.056863307952881],[117,312,73,6.066365718841553],[117,312,74,6.079727649688721],[117,312,75,6.093751907348633],[117,312,76,6.108086585998535],[117,312,77,6.1232171058654785],[117,312,78,6.13298225402832],[117,312,79,6.136005878448486],[117,313,64,6.066739082336426],[117,313,65,6.077524662017822],[117,313,66,6.078339099884033],[117,313,67,6.070504665374756],[117,313,68,6.061385154724121],[117,313,69,6.055147171020508],[117,313,70,6.05340576171875],[117,313,71,6.053691387176514],[117,313,72,6.056863307952881],[117,313,73,6.066365718841553],[117,313,74,6.079727649688721],[117,313,75,6.093751907348633],[117,313,76,6.108086585998535],[117,313,77,6.1232171058654785],[117,313,78,6.13298225402832],[117,313,79,6.136005878448486],[117,314,64,6.066739082336426],[117,314,65,6.077524662017822],[117,314,66,6.078339099884033],[117,314,67,6.070504665374756],[117,314,68,6.061385154724121],[117,314,69,6.055147171020508],[117,314,70,6.05340576171875],[117,314,71,6.053691387176514],[117,314,72,6.056863307952881],[117,314,73,6.066365718841553],[117,314,74,6.079727649688721],[117,314,75,6.093751907348633],[117,314,76,6.108086585998535],[117,314,77,6.1232171058654785],[117,314,78,6.13298225402832],[117,314,79,6.136005878448486],[117,315,64,6.066739082336426],[117,315,65,6.077524662017822],[117,315,66,6.078339099884033],[117,315,67,6.070504665374756],[117,315,68,6.061385154724121],[117,315,69,6.055147171020508],[117,315,70,6.05340576171875],[117,315,71,6.053691387176514],[117,315,72,6.056863307952881],[117,315,73,6.066365718841553],[117,315,74,6.079727649688721],[117,315,75,6.093751907348633],[117,315,76,6.108086585998535],[117,315,77,6.1232171058654785],[117,315,78,6.13298225402832],[117,315,79,6.136005878448486],[117,316,64,6.066739082336426],[117,316,65,6.077524662017822],[117,316,66,6.078339099884033],[117,316,67,6.070504665374756],[117,316,68,6.061385154724121],[117,316,69,6.055147171020508],[117,316,70,6.05340576171875],[117,316,71,6.053691387176514],[117,316,72,6.056863307952881],[117,316,73,6.066365718841553],[117,316,74,6.079727649688721],[117,316,75,6.093751907348633],[117,316,76,6.108086585998535],[117,316,77,6.1232171058654785],[117,316,78,6.13298225402832],[117,316,79,6.136005878448486],[117,317,64,6.066739082336426],[117,317,65,6.077524662017822],[117,317,66,6.078339099884033],[117,317,67,6.070504665374756],[117,317,68,6.061385154724121],[117,317,69,6.055147171020508],[117,317,70,6.05340576171875],[117,317,71,6.053691387176514],[117,317,72,6.056863307952881],[117,317,73,6.066365718841553],[117,317,74,6.079727649688721],[117,317,75,6.093751907348633],[117,317,76,6.108086585998535],[117,317,77,6.1232171058654785],[117,317,78,6.13298225402832],[117,317,79,6.136005878448486],[117,318,64,6.066739082336426],[117,318,65,6.077524662017822],[117,318,66,6.078339099884033],[117,318,67,6.070504665374756],[117,318,68,6.061385154724121],[117,318,69,6.055147171020508],[117,318,70,6.05340576171875],[117,318,71,6.053691387176514],[117,318,72,6.056863307952881],[117,318,73,6.066365718841553],[117,318,74,6.079727649688721],[117,318,75,6.093751907348633],[117,318,76,6.108086585998535],[117,318,77,6.1232171058654785],[117,318,78,6.13298225402832],[117,318,79,6.136005878448486],[117,319,64,6.066739082336426],[117,319,65,6.077524662017822],[117,319,66,6.078339099884033],[117,319,67,6.070504665374756],[117,319,68,6.061385154724121],[117,319,69,6.055147171020508],[117,319,70,6.05340576171875],[117,319,71,6.053691387176514],[117,319,72,6.056863307952881],[117,319,73,6.066365718841553],[117,319,74,6.079727649688721],[117,319,75,6.093751907348633],[117,319,76,6.108086585998535],[117,319,77,6.1232171058654785],[117,319,78,6.13298225402832],[117,319,79,6.136005878448486],[118,-64,64,6.082154750823975],[118,-64,65,6.091849327087402],[118,-64,66,6.09231424331665],[118,-64,67,6.0850958824157715],[118,-64,68,6.0764875411987305],[118,-64,69,6.071643829345703],[118,-64,70,6.072127819061279],[118,-64,71,6.076297283172607],[118,-64,72,6.087140083312988],[118,-64,73,6.107732772827148],[118,-64,74,6.131562232971191],[118,-64,75,6.152235507965088],[118,-64,76,6.1686506271362305],[118,-64,77,6.180459976196289],[118,-64,78,6.183925628662109],[118,-64,79,6.180508613586426],[118,-63,64,6.082154750823975],[118,-63,65,6.091849327087402],[118,-63,66,6.09231424331665],[118,-63,67,6.0850958824157715],[118,-63,68,6.0764875411987305],[118,-63,69,6.071643829345703],[118,-63,70,6.072127819061279],[118,-63,71,6.076297283172607],[118,-63,72,6.087140083312988],[118,-63,73,6.107732772827148],[118,-63,74,6.131562232971191],[118,-63,75,6.152235507965088],[118,-63,76,6.1686506271362305],[118,-63,77,6.180459976196289],[118,-63,78,6.183925628662109],[118,-63,79,6.180508613586426],[118,-62,64,6.082154750823975],[118,-62,65,6.091849327087402],[118,-62,66,6.09231424331665],[118,-62,67,6.0850958824157715],[118,-62,68,6.0764875411987305],[118,-62,69,6.071643829345703],[118,-62,70,6.072127819061279],[118,-62,71,6.076297283172607],[118,-62,72,6.087140083312988],[118,-62,73,6.107732772827148],[118,-62,74,6.131562232971191],[118,-62,75,6.152235507965088],[118,-62,76,6.1686506271362305],[118,-62,77,6.180459976196289],[118,-62,78,6.183925628662109],[118,-62,79,6.180508613586426],[118,-61,64,6.082154750823975],[118,-61,65,6.091849327087402],[118,-61,66,6.09231424331665],[118,-61,67,6.0850958824157715],[118,-61,68,6.0764875411987305],[118,-61,69,6.071643829345703],[118,-61,70,6.072127819061279],[118,-61,71,6.076297283172607],[118,-61,72,6.087140083312988],[118,-61,73,6.107732772827148],[118,-61,74,6.131562232971191],[118,-61,75,6.152235507965088],[118,-61,76,6.1686506271362305],[118,-61,77,6.180459976196289],[118,-61,78,6.183925628662109],[118,-61,79,6.180508613586426],[118,-60,64,6.082154750823975],[118,-60,65,6.091849327087402],[118,-60,66,6.09231424331665],[118,-60,67,6.0850958824157715],[118,-60,68,6.0764875411987305],[118,-60,69,6.071643829345703],[118,-60,70,6.072127819061279],[118,-60,71,6.076297283172607],[118,-60,72,6.087140083312988],[118,-60,73,6.107732772827148],[118,-60,74,6.131562232971191],[118,-60,75,6.152235507965088],[118,-60,76,6.1686506271362305],[118,-60,77,6.180459976196289],[118,-60,78,6.183925628662109],[118,-60,79,6.180508613586426],[118,-59,64,6.082154750823975],[118,-59,65,6.091849327087402],[118,-59,66,6.09231424331665],[118,-59,67,6.0850958824157715],[118,-59,68,6.0764875411987305],[118,-59,69,6.071643829345703],[118,-59,70,6.072127819061279],[118,-59,71,6.076297283172607],[118,-59,72,6.087140083312988],[118,-59,73,6.107732772827148],[118,-59,74,6.131562232971191],[118,-59,75,6.152235507965088],[118,-59,76,6.1686506271362305],[118,-59,77,6.180459976196289],[118,-59,78,6.183925628662109],[118,-59,79,6.180508613586426],[118,-58,64,6.082154750823975],[118,-58,65,6.091849327087402],[118,-58,66,6.09231424331665],[118,-58,67,6.0850958824157715],[118,-58,68,6.0764875411987305],[118,-58,69,6.071643829345703],[118,-58,70,6.072127819061279],[118,-58,71,6.076297283172607],[118,-58,72,6.087140083312988],[118,-58,73,6.107732772827148],[118,-58,74,6.131562232971191],[118,-58,75,6.152235507965088],[118,-58,76,6.1686506271362305],[118,-58,77,6.180459976196289],[118,-58,78,6.183925628662109],[118,-58,79,6.180508613586426],[118,-57,64,6.082154750823975],[118,-57,65,6.091849327087402],[118,-57,66,6.09231424331665],[118,-57,67,6.0850958824157715],[118,-57,68,6.0764875411987305],[118,-57,69,6.071643829345703],[118,-57,70,6.072127819061279],[118,-57,71,6.076297283172607],[118,-57,72,6.087140083312988],[118,-57,73,6.107732772827148],[118,-57,74,6.131562232971191],[118,-57,75,6.152235507965088],[118,-57,76,6.1686506271362305],[118,-57,77,6.180459976196289],[118,-57,78,6.183925628662109],[118,-57,79,6.180508613586426],[118,-56,64,6.082154750823975],[118,-56,65,6.091849327087402],[118,-56,66,6.09231424331665],[118,-56,67,6.0850958824157715],[118,-56,68,6.0764875411987305],[118,-56,69,6.071643829345703],[118,-56,70,6.072127819061279],[118,-56,71,6.076297283172607],[118,-56,72,6.087140083312988],[118,-56,73,6.107732772827148],[118,-56,74,6.131562232971191],[118,-56,75,6.152235507965088],[118,-56,76,6.1686506271362305],[118,-56,77,6.180459976196289],[118,-56,78,6.183925628662109],[118,-56,79,6.180508613586426],[118,-55,64,6.082154750823975],[118,-55,65,6.091849327087402],[118,-55,66,6.09231424331665],[118,-55,67,6.0850958824157715],[118,-55,68,6.0764875411987305],[118,-55,69,6.071643829345703],[118,-55,70,6.072127819061279],[118,-55,71,6.076297283172607],[118,-55,72,6.087140083312988],[118,-55,73,6.107732772827148],[118,-55,74,6.131562232971191],[118,-55,75,6.152235507965088],[118,-55,76,6.1686506271362305],[118,-55,77,6.180459976196289],[118,-55,78,6.183925628662109],[118,-55,79,6.180508613586426],[118,-54,64,6.082154750823975],[118,-54,65,6.091849327087402],[118,-54,66,6.09231424331665],[118,-54,67,6.0850958824157715],[118,-54,68,6.0764875411987305],[118,-54,69,6.071643829345703],[118,-54,70,6.072127819061279],[118,-54,71,6.076297283172607],[118,-54,72,6.087140083312988],[118,-54,73,6.107732772827148],[118,-54,74,6.131562232971191],[118,-54,75,6.152235507965088],[118,-54,76,6.1686506271362305],[118,-54,77,6.180459976196289],[118,-54,78,6.183925628662109],[118,-54,79,6.180508613586426],[118,-53,64,6.082154750823975],[118,-53,65,6.091849327087402],[118,-53,66,6.09231424331665],[118,-53,67,6.0850958824157715],[118,-53,68,6.0764875411987305],[118,-53,69,6.071643829345703],[118,-53,70,6.072127819061279],[118,-53,71,6.076297283172607],[118,-53,72,6.087140083312988],[118,-53,73,6.107732772827148],[118,-53,74,6.131562232971191],[118,-53,75,6.152235507965088],[118,-53,76,6.1686506271362305],[118,-53,77,6.180459976196289],[118,-53,78,6.183925628662109],[118,-53,79,6.180508613586426],[118,-52,64,6.082154750823975],[118,-52,65,6.091849327087402],[118,-52,66,6.09231424331665],[118,-52,67,6.0850958824157715],[118,-52,68,6.0764875411987305],[118,-52,69,6.071643829345703],[118,-52,70,6.072127819061279],[118,-52,71,6.076297283172607],[118,-52,72,6.087140083312988],[118,-52,73,6.107732772827148],[118,-52,74,6.131562232971191],[118,-52,75,6.152235507965088],[118,-52,76,6.1686506271362305],[118,-52,77,6.180459976196289],[118,-52,78,6.183925628662109],[118,-52,79,6.180508613586426],[118,-51,64,6.082154750823975],[118,-51,65,6.091849327087402],[118,-51,66,6.09231424331665],[118,-51,67,6.0850958824157715],[118,-51,68,6.0764875411987305],[118,-51,69,6.071643829345703],[118,-51,70,6.072127819061279],[118,-51,71,6.076297283172607],[118,-51,72,6.087140083312988],[118,-51,73,6.107732772827148],[118,-51,74,6.131562232971191],[118,-51,75,6.152235507965088],[118,-51,76,6.1686506271362305],[118,-51,77,6.180459976196289],[118,-51,78,6.183925628662109],[118,-51,79,6.180508613586426],[118,-50,64,6.082154750823975],[118,-50,65,6.091849327087402],[118,-50,66,6.09231424331665],[118,-50,67,6.0850958824157715],[118,-50,68,6.0764875411987305],[118,-50,69,6.071643829345703],[118,-50,70,6.072127819061279],[118,-50,71,6.076297283172607],[118,-50,72,6.087140083312988],[118,-50,73,6.107732772827148],[118,-50,74,6.131562232971191],[118,-50,75,6.152235507965088],[118,-50,76,6.1686506271362305],[118,-50,77,6.180459976196289],[118,-50,78,6.183925628662109],[118,-50,79,6.180508613586426],[118,-49,64,6.082154750823975],[118,-49,65,6.091849327087402],[118,-49,66,6.09231424331665],[118,-49,67,6.0850958824157715],[118,-49,68,6.0764875411987305],[118,-49,69,6.071643829345703],[118,-49,70,6.072127819061279],[118,-49,71,6.076297283172607],[118,-49,72,6.087140083312988],[118,-49,73,6.107732772827148],[118,-49,74,6.131562232971191],[118,-49,75,6.152235507965088],[118,-49,76,6.1686506271362305],[118,-49,77,6.180459976196289],[118,-49,78,6.183925628662109],[118,-49,79,6.180508613586426],[118,-48,64,6.082154750823975],[118,-48,65,6.091849327087402],[118,-48,66,6.09231424331665],[118,-48,67,6.0850958824157715],[118,-48,68,6.0764875411987305],[118,-48,69,6.071643829345703],[118,-48,70,6.072127819061279],[118,-48,71,6.076297283172607],[118,-48,72,6.087140083312988],[118,-48,73,6.107732772827148],[118,-48,74,6.131562232971191],[118,-48,75,6.152235507965088],[118,-48,76,6.1686506271362305],[118,-48,77,6.180459976196289],[118,-48,78,6.183925628662109],[118,-48,79,6.180508613586426],[118,-47,64,6.082154750823975],[118,-47,65,6.091849327087402],[118,-47,66,6.09231424331665],[118,-47,67,6.0850958824157715],[118,-47,68,6.0764875411987305],[118,-47,69,6.071643829345703],[118,-47,70,6.072127819061279],[118,-47,71,6.076297283172607],[118,-47,72,6.087140083312988],[118,-47,73,6.107732772827148],[118,-47,74,6.131562232971191],[118,-47,75,6.152235507965088],[118,-47,76,6.1686506271362305],[118,-47,77,6.180459976196289],[118,-47,78,6.183925628662109],[118,-47,79,6.180508613586426],[118,-46,64,6.082154750823975],[118,-46,65,6.091849327087402],[118,-46,66,6.09231424331665],[118,-46,67,6.0850958824157715],[118,-46,68,6.0764875411987305],[118,-46,69,6.071643829345703],[118,-46,70,6.072127819061279],[118,-46,71,6.076297283172607],[118,-46,72,6.087140083312988],[118,-46,73,6.107732772827148],[118,-46,74,6.131562232971191],[118,-46,75,6.152235507965088],[118,-46,76,6.1686506271362305],[118,-46,77,6.180459976196289],[118,-46,78,6.183925628662109],[118,-46,79,6.180508613586426],[118,-45,64,6.082154750823975],[118,-45,65,6.091849327087402],[118,-45,66,6.09231424331665],[118,-45,67,6.0850958824157715],[118,-45,68,6.0764875411987305],[118,-45,69,6.071643829345703],[118,-45,70,6.072127819061279],[118,-45,71,6.076297283172607],[118,-45,72,6.087140083312988],[118,-45,73,6.107732772827148],[118,-45,74,6.131562232971191],[118,-45,75,6.152235507965088],[118,-45,76,6.1686506271362305],[118,-45,77,6.180459976196289],[118,-45,78,6.183925628662109],[118,-45,79,6.180508613586426],[118,-44,64,6.082154750823975],[118,-44,65,6.091849327087402],[118,-44,66,6.09231424331665],[118,-44,67,6.0850958824157715],[118,-44,68,6.0764875411987305],[118,-44,69,6.071643829345703],[118,-44,70,6.072127819061279],[118,-44,71,6.076297283172607],[118,-44,72,6.087140083312988],[118,-44,73,6.107732772827148],[118,-44,74,6.131562232971191],[118,-44,75,6.152235507965088],[118,-44,76,6.1686506271362305],[118,-44,77,6.180459976196289],[118,-44,78,6.183925628662109],[118,-44,79,6.180508613586426],[118,-43,64,6.082154750823975],[118,-43,65,6.091849327087402],[118,-43,66,6.09231424331665],[118,-43,67,6.0850958824157715],[118,-43,68,6.0764875411987305],[118,-43,69,6.071643829345703],[118,-43,70,6.072127819061279],[118,-43,71,6.076297283172607],[118,-43,72,6.087140083312988],[118,-43,73,6.107732772827148],[118,-43,74,6.131562232971191],[118,-43,75,6.152235507965088],[118,-43,76,6.1686506271362305],[118,-43,77,6.180459976196289],[118,-43,78,6.183925628662109],[118,-43,79,6.180508613586426],[118,-42,64,6.082154750823975],[118,-42,65,6.091849327087402],[118,-42,66,6.09231424331665],[118,-42,67,6.0850958824157715],[118,-42,68,6.0764875411987305],[118,-42,69,6.071643829345703],[118,-42,70,6.072127819061279],[118,-42,71,6.076297283172607],[118,-42,72,6.087140083312988],[118,-42,73,6.107732772827148],[118,-42,74,6.131562232971191],[118,-42,75,6.152235507965088],[118,-42,76,6.1686506271362305],[118,-42,77,6.180459976196289],[118,-42,78,6.183925628662109],[118,-42,79,6.180508613586426],[118,-41,64,6.082154750823975],[118,-41,65,6.091849327087402],[118,-41,66,6.09231424331665],[118,-41,67,6.0850958824157715],[118,-41,68,6.0764875411987305],[118,-41,69,6.071643829345703],[118,-41,70,6.072127819061279],[118,-41,71,6.076297283172607],[118,-41,72,6.087140083312988],[118,-41,73,6.107732772827148],[118,-41,74,6.131562232971191],[118,-41,75,6.152235507965088],[118,-41,76,6.1686506271362305],[118,-41,77,6.180459976196289],[118,-41,78,6.183925628662109],[118,-41,79,6.180508613586426],[118,-40,64,6.082154750823975],[118,-40,65,6.091849327087402],[118,-40,66,6.09231424331665],[118,-40,67,6.0850958824157715],[118,-40,68,6.0764875411987305],[118,-40,69,6.071643829345703],[118,-40,70,6.072127819061279],[118,-40,71,6.076297283172607],[118,-40,72,6.087140083312988],[118,-40,73,6.107732772827148],[118,-40,74,6.131562232971191],[118,-40,75,6.152235507965088],[118,-40,76,6.1686506271362305],[118,-40,77,6.180459976196289],[118,-40,78,6.183925628662109],[118,-40,79,6.180508613586426],[118,-39,64,6.082154750823975],[118,-39,65,6.091849327087402],[118,-39,66,6.09231424331665],[118,-39,67,6.0850958824157715],[118,-39,68,6.0764875411987305],[118,-39,69,6.071643829345703],[118,-39,70,6.072127819061279],[118,-39,71,6.076297283172607],[118,-39,72,6.087140083312988],[118,-39,73,6.107732772827148],[118,-39,74,6.131562232971191],[118,-39,75,6.152235507965088],[118,-39,76,6.1686506271362305],[118,-39,77,6.180459976196289],[118,-39,78,6.183925628662109],[118,-39,79,6.180508613586426],[118,-38,64,6.082154750823975],[118,-38,65,6.091849327087402],[118,-38,66,6.09231424331665],[118,-38,67,6.0850958824157715],[118,-38,68,6.0764875411987305],[118,-38,69,6.071643829345703],[118,-38,70,6.072127819061279],[118,-38,71,6.076297283172607],[118,-38,72,6.087140083312988],[118,-38,73,6.107732772827148],[118,-38,74,6.131562232971191],[118,-38,75,6.152235507965088],[118,-38,76,6.1686506271362305],[118,-38,77,6.180459976196289],[118,-38,78,6.183925628662109],[118,-38,79,6.180508613586426],[118,-37,64,6.082154750823975],[118,-37,65,6.091849327087402],[118,-37,66,6.09231424331665],[118,-37,67,6.0850958824157715],[118,-37,68,6.0764875411987305],[118,-37,69,6.071643829345703],[118,-37,70,6.072127819061279],[118,-37,71,6.076297283172607],[118,-37,72,6.087140083312988],[118,-37,73,6.107732772827148],[118,-37,74,6.131562232971191],[118,-37,75,6.152235507965088],[118,-37,76,6.1686506271362305],[118,-37,77,6.180459976196289],[118,-37,78,6.183925628662109],[118,-37,79,6.180508613586426],[118,-36,64,6.082154750823975],[118,-36,65,6.091849327087402],[118,-36,66,6.09231424331665],[118,-36,67,6.0850958824157715],[118,-36,68,6.0764875411987305],[118,-36,69,6.071643829345703],[118,-36,70,6.072127819061279],[118,-36,71,6.076297283172607],[118,-36,72,6.087140083312988],[118,-36,73,6.107732772827148],[118,-36,74,6.131562232971191],[118,-36,75,6.152235507965088],[118,-36,76,6.1686506271362305],[118,-36,77,6.180459976196289],[118,-36,78,6.183925628662109],[118,-36,79,6.180508613586426],[118,-35,64,6.082154750823975],[118,-35,65,6.091849327087402],[118,-35,66,6.09231424331665],[118,-35,67,6.0850958824157715],[118,-35,68,6.0764875411987305],[118,-35,69,6.071643829345703],[118,-35,70,6.072127819061279],[118,-35,71,6.076297283172607],[118,-35,72,6.087140083312988],[118,-35,73,6.107732772827148],[118,-35,74,6.131562232971191],[118,-35,75,6.152235507965088],[118,-35,76,6.1686506271362305],[118,-35,77,6.180459976196289],[118,-35,78,6.183925628662109],[118,-35,79,6.180508613586426],[118,-34,64,6.082154750823975],[118,-34,65,6.091849327087402],[118,-34,66,6.09231424331665],[118,-34,67,6.0850958824157715],[118,-34,68,6.0764875411987305],[118,-34,69,6.071643829345703],[118,-34,70,6.072127819061279],[118,-34,71,6.076297283172607],[118,-34,72,6.087140083312988],[118,-34,73,6.107732772827148],[118,-34,74,6.131562232971191],[118,-34,75,6.152235507965088],[118,-34,76,6.1686506271362305],[118,-34,77,6.180459976196289],[118,-34,78,6.183925628662109],[118,-34,79,6.180508613586426],[118,-33,64,6.082154750823975],[118,-33,65,6.091849327087402],[118,-33,66,6.09231424331665],[118,-33,67,6.0850958824157715],[118,-33,68,6.0764875411987305],[118,-33,69,6.071643829345703],[118,-33,70,6.072127819061279],[118,-33,71,6.076297283172607],[118,-33,72,6.087140083312988],[118,-33,73,6.107732772827148],[118,-33,74,6.131562232971191],[118,-33,75,6.152235507965088],[118,-33,76,6.1686506271362305],[118,-33,77,6.180459976196289],[118,-33,78,6.183925628662109],[118,-33,79,6.180508613586426],[118,-32,64,6.082154750823975],[118,-32,65,6.091849327087402],[118,-32,66,6.09231424331665],[118,-32,67,6.0850958824157715],[118,-32,68,6.0764875411987305],[118,-32,69,6.071643829345703],[118,-32,70,6.072127819061279],[118,-32,71,6.076297283172607],[118,-32,72,6.087140083312988],[118,-32,73,6.107732772827148],[118,-32,74,6.131562232971191],[118,-32,75,6.152235507965088],[118,-32,76,6.1686506271362305],[118,-32,77,6.180459976196289],[118,-32,78,6.183925628662109],[118,-32,79,6.180508613586426],[118,-31,64,6.082154750823975],[118,-31,65,6.091849327087402],[118,-31,66,6.09231424331665],[118,-31,67,6.0850958824157715],[118,-31,68,6.0764875411987305],[118,-31,69,6.071643829345703],[118,-31,70,6.072127819061279],[118,-31,71,6.076297283172607],[118,-31,72,6.087140083312988],[118,-31,73,6.107732772827148],[118,-31,74,6.131562232971191],[118,-31,75,6.152235507965088],[118,-31,76,6.1686506271362305],[118,-31,77,6.180459976196289],[118,-31,78,6.183925628662109],[118,-31,79,6.180508613586426],[118,-30,64,6.082154750823975],[118,-30,65,6.091849327087402],[118,-30,66,6.09231424331665],[118,-30,67,6.0850958824157715],[118,-30,68,6.0764875411987305],[118,-30,69,6.071643829345703],[118,-30,70,6.072127819061279],[118,-30,71,6.076297283172607],[118,-30,72,6.087140083312988],[118,-30,73,6.107732772827148],[118,-30,74,6.131562232971191],[118,-30,75,6.152235507965088],[118,-30,76,6.1686506271362305],[118,-30,77,6.180459976196289],[118,-30,78,6.183925628662109],[118,-30,79,6.180508613586426],[118,-29,64,6.082154750823975],[118,-29,65,6.091849327087402],[118,-29,66,6.09231424331665],[118,-29,67,6.0850958824157715],[118,-29,68,6.0764875411987305],[118,-29,69,6.071643829345703],[118,-29,70,6.072127819061279],[118,-29,71,6.076297283172607],[118,-29,72,6.087140083312988],[118,-29,73,6.107732772827148],[118,-29,74,6.131562232971191],[118,-29,75,6.152235507965088],[118,-29,76,6.1686506271362305],[118,-29,77,6.180459976196289],[118,-29,78,6.183925628662109],[118,-29,79,6.180508613586426],[118,-28,64,6.082154750823975],[118,-28,65,6.091849327087402],[118,-28,66,6.09231424331665],[118,-28,67,6.0850958824157715],[118,-28,68,6.0764875411987305],[118,-28,69,6.071643829345703],[118,-28,70,6.072127819061279],[118,-28,71,6.076297283172607],[118,-28,72,6.087140083312988],[118,-28,73,6.107732772827148],[118,-28,74,6.131562232971191],[118,-28,75,6.152235507965088],[118,-28,76,6.1686506271362305],[118,-28,77,6.180459976196289],[118,-28,78,6.183925628662109],[118,-28,79,6.180508613586426],[118,-27,64,6.082154750823975],[118,-27,65,6.091849327087402],[118,-27,66,6.09231424331665],[118,-27,67,6.0850958824157715],[118,-27,68,6.0764875411987305],[118,-27,69,6.071643829345703],[118,-27,70,6.072127819061279],[118,-27,71,6.076297283172607],[118,-27,72,6.087140083312988],[118,-27,73,6.107732772827148],[118,-27,74,6.131562232971191],[118,-27,75,6.152235507965088],[118,-27,76,6.1686506271362305],[118,-27,77,6.180459976196289],[118,-27,78,6.183925628662109],[118,-27,79,6.180508613586426],[118,-26,64,6.082154750823975],[118,-26,65,6.091849327087402],[118,-26,66,6.09231424331665],[118,-26,67,6.0850958824157715],[118,-26,68,6.0764875411987305],[118,-26,69,6.071643829345703],[118,-26,70,6.072127819061279],[118,-26,71,6.076297283172607],[118,-26,72,6.087140083312988],[118,-26,73,6.107732772827148],[118,-26,74,6.131562232971191],[118,-26,75,6.152235507965088],[118,-26,76,6.1686506271362305],[118,-26,77,6.180459976196289],[118,-26,78,6.183925628662109],[118,-26,79,6.180508613586426],[118,-25,64,6.082154750823975],[118,-25,65,6.091849327087402],[118,-25,66,6.09231424331665],[118,-25,67,6.0850958824157715],[118,-25,68,6.0764875411987305],[118,-25,69,6.071643829345703],[118,-25,70,6.072127819061279],[118,-25,71,6.076297283172607],[118,-25,72,6.087140083312988],[118,-25,73,6.107732772827148],[118,-25,74,6.131562232971191],[118,-25,75,6.152235507965088],[118,-25,76,6.1686506271362305],[118,-25,77,6.180459976196289],[118,-25,78,6.183925628662109],[118,-25,79,6.180508613586426],[118,-24,64,6.082154750823975],[118,-24,65,6.091849327087402],[118,-24,66,6.09231424331665],[118,-24,67,6.0850958824157715],[118,-24,68,6.0764875411987305],[118,-24,69,6.071643829345703],[118,-24,70,6.072127819061279],[118,-24,71,6.076297283172607],[118,-24,72,6.087140083312988],[118,-24,73,6.107732772827148],[118,-24,74,6.131562232971191],[118,-24,75,6.152235507965088],[118,-24,76,6.1686506271362305],[118,-24,77,6.180459976196289],[118,-24,78,6.183925628662109],[118,-24,79,6.180508613586426],[118,-23,64,6.082154750823975],[118,-23,65,6.091849327087402],[118,-23,66,6.09231424331665],[118,-23,67,6.0850958824157715],[118,-23,68,6.0764875411987305],[118,-23,69,6.071643829345703],[118,-23,70,6.072127819061279],[118,-23,71,6.076297283172607],[118,-23,72,6.087140083312988],[118,-23,73,6.107732772827148],[118,-23,74,6.131562232971191],[118,-23,75,6.152235507965088],[118,-23,76,6.1686506271362305],[118,-23,77,6.180459976196289],[118,-23,78,6.183925628662109],[118,-23,79,6.180508613586426],[118,-22,64,6.082154750823975],[118,-22,65,6.091849327087402],[118,-22,66,6.09231424331665],[118,-22,67,6.0850958824157715],[118,-22,68,6.0764875411987305],[118,-22,69,6.071643829345703],[118,-22,70,6.072127819061279],[118,-22,71,6.076297283172607],[118,-22,72,6.087140083312988],[118,-22,73,6.107732772827148],[118,-22,74,6.131562232971191],[118,-22,75,6.152235507965088],[118,-22,76,6.1686506271362305],[118,-22,77,6.180459976196289],[118,-22,78,6.183925628662109],[118,-22,79,6.180508613586426],[118,-21,64,6.082154750823975],[118,-21,65,6.091849327087402],[118,-21,66,6.09231424331665],[118,-21,67,6.0850958824157715],[118,-21,68,6.0764875411987305],[118,-21,69,6.071643829345703],[118,-21,70,6.072127819061279],[118,-21,71,6.076297283172607],[118,-21,72,6.087140083312988],[118,-21,73,6.107732772827148],[118,-21,74,6.131562232971191],[118,-21,75,6.152235507965088],[118,-21,76,6.1686506271362305],[118,-21,77,6.180459976196289],[118,-21,78,6.183925628662109],[118,-21,79,6.180508613586426],[118,-20,64,6.082154750823975],[118,-20,65,6.091849327087402],[118,-20,66,6.09231424331665],[118,-20,67,6.0850958824157715],[118,-20,68,6.0764875411987305],[118,-20,69,6.071643829345703],[118,-20,70,6.072127819061279],[118,-20,71,6.076297283172607],[118,-20,72,6.087140083312988],[118,-20,73,6.107732772827148],[118,-20,74,6.131562232971191],[118,-20,75,6.152235507965088],[118,-20,76,6.1686506271362305],[118,-20,77,6.180459976196289],[118,-20,78,6.183925628662109],[118,-20,79,6.180508613586426],[118,-19,64,6.082154750823975],[118,-19,65,6.091849327087402],[118,-19,66,6.09231424331665],[118,-19,67,6.0850958824157715],[118,-19,68,6.0764875411987305],[118,-19,69,6.071643829345703],[118,-19,70,6.072127819061279],[118,-19,71,6.076297283172607],[118,-19,72,6.087140083312988],[118,-19,73,6.107732772827148],[118,-19,74,6.131562232971191],[118,-19,75,6.152235507965088],[118,-19,76,6.1686506271362305],[118,-19,77,6.180459976196289],[118,-19,78,6.183925628662109],[118,-19,79,6.180508613586426],[118,-18,64,6.082154750823975],[118,-18,65,6.091849327087402],[118,-18,66,6.09231424331665],[118,-18,67,6.0850958824157715],[118,-18,68,6.0764875411987305],[118,-18,69,6.071643829345703],[118,-18,70,6.072127819061279],[118,-18,71,6.076297283172607],[118,-18,72,6.087140083312988],[118,-18,73,6.107732772827148],[118,-18,74,6.131562232971191],[118,-18,75,6.152235507965088],[118,-18,76,6.1686506271362305],[118,-18,77,6.180459976196289],[118,-18,78,6.183925628662109],[118,-18,79,6.180508613586426],[118,-17,64,6.082154750823975],[118,-17,65,6.091849327087402],[118,-17,66,6.09231424331665],[118,-17,67,6.0850958824157715],[118,-17,68,6.0764875411987305],[118,-17,69,6.071643829345703],[118,-17,70,6.072127819061279],[118,-17,71,6.076297283172607],[118,-17,72,6.087140083312988],[118,-17,73,6.107732772827148],[118,-17,74,6.131562232971191],[118,-17,75,6.152235507965088],[118,-17,76,6.1686506271362305],[118,-17,77,6.180459976196289],[118,-17,78,6.183925628662109],[118,-17,79,6.180508613586426],[118,-16,64,6.082154750823975],[118,-16,65,6.091849327087402],[118,-16,66,6.09231424331665],[118,-16,67,6.0850958824157715],[118,-16,68,6.0764875411987305],[118,-16,69,6.071643829345703],[118,-16,70,6.072127819061279],[118,-16,71,6.076297283172607],[118,-16,72,6.087140083312988],[118,-16,73,6.107732772827148],[118,-16,74,6.131562232971191],[118,-16,75,6.152235507965088],[118,-16,76,6.1686506271362305],[118,-16,77,6.180459976196289],[118,-16,78,6.183925628662109],[118,-16,79,6.180508613586426],[118,-15,64,6.082154750823975],[118,-15,65,6.091849327087402],[118,-15,66,6.09231424331665],[118,-15,67,6.0850958824157715],[118,-15,68,6.0764875411987305],[118,-15,69,6.071643829345703],[118,-15,70,6.072127819061279],[118,-15,71,6.076297283172607],[118,-15,72,6.087140083312988],[118,-15,73,6.107732772827148],[118,-15,74,6.131562232971191],[118,-15,75,6.152235507965088],[118,-15,76,6.1686506271362305],[118,-15,77,6.180459976196289],[118,-15,78,6.183925628662109],[118,-15,79,6.180508613586426],[118,-14,64,6.082154750823975],[118,-14,65,6.091849327087402],[118,-14,66,6.09231424331665],[118,-14,67,6.0850958824157715],[118,-14,68,6.0764875411987305],[118,-14,69,6.071643829345703],[118,-14,70,6.072127819061279],[118,-14,71,6.076297283172607],[118,-14,72,6.087140083312988],[118,-14,73,6.107732772827148],[118,-14,74,6.131562232971191],[118,-14,75,6.152235507965088],[118,-14,76,6.1686506271362305],[118,-14,77,6.180459976196289],[118,-14,78,6.183925628662109],[118,-14,79,6.180508613586426],[118,-13,64,6.082154750823975],[118,-13,65,6.091849327087402],[118,-13,66,6.09231424331665],[118,-13,67,6.0850958824157715],[118,-13,68,6.0764875411987305],[118,-13,69,6.071643829345703],[118,-13,70,6.072127819061279],[118,-13,71,6.076297283172607],[118,-13,72,6.087140083312988],[118,-13,73,6.107732772827148],[118,-13,74,6.131562232971191],[118,-13,75,6.152235507965088],[118,-13,76,6.1686506271362305],[118,-13,77,6.180459976196289],[118,-13,78,6.183925628662109],[118,-13,79,6.180508613586426],[118,-12,64,6.082154750823975],[118,-12,65,6.091849327087402],[118,-12,66,6.09231424331665],[118,-12,67,6.0850958824157715],[118,-12,68,6.0764875411987305],[118,-12,69,6.071643829345703],[118,-12,70,6.072127819061279],[118,-12,71,6.076297283172607],[118,-12,72,6.087140083312988],[118,-12,73,6.107732772827148],[118,-12,74,6.131562232971191],[118,-12,75,6.152235507965088],[118,-12,76,6.1686506271362305],[118,-12,77,6.180459976196289],[118,-12,78,6.183925628662109],[118,-12,79,6.180508613586426],[118,-11,64,6.082154750823975],[118,-11,65,6.091849327087402],[118,-11,66,6.09231424331665],[118,-11,67,6.0850958824157715],[118,-11,68,6.0764875411987305],[118,-11,69,6.071643829345703],[118,-11,70,6.072127819061279],[118,-11,71,6.076297283172607],[118,-11,72,6.087140083312988],[118,-11,73,6.107732772827148],[118,-11,74,6.131562232971191],[118,-11,75,6.152235507965088],[118,-11,76,6.1686506271362305],[118,-11,77,6.180459976196289],[118,-11,78,6.183925628662109],[118,-11,79,6.180508613586426],[118,-10,64,6.082154750823975],[118,-10,65,6.091849327087402],[118,-10,66,6.09231424331665],[118,-10,67,6.0850958824157715],[118,-10,68,6.0764875411987305],[118,-10,69,6.071643829345703],[118,-10,70,6.072127819061279],[118,-10,71,6.076297283172607],[118,-10,72,6.087140083312988],[118,-10,73,6.107732772827148],[118,-10,74,6.131562232971191],[118,-10,75,6.152235507965088],[118,-10,76,6.1686506271362305],[118,-10,77,6.180459976196289],[118,-10,78,6.183925628662109],[118,-10,79,6.180508613586426],[118,-9,64,6.082154750823975],[118,-9,65,6.091849327087402],[118,-9,66,6.09231424331665],[118,-9,67,6.0850958824157715],[118,-9,68,6.0764875411987305],[118,-9,69,6.071643829345703],[118,-9,70,6.072127819061279],[118,-9,71,6.076297283172607],[118,-9,72,6.087140083312988],[118,-9,73,6.107732772827148],[118,-9,74,6.131562232971191],[118,-9,75,6.152235507965088],[118,-9,76,6.1686506271362305],[118,-9,77,6.180459976196289],[118,-9,78,6.183925628662109],[118,-9,79,6.180508613586426],[118,-8,64,6.082154750823975],[118,-8,65,6.091849327087402],[118,-8,66,6.09231424331665],[118,-8,67,6.0850958824157715],[118,-8,68,6.0764875411987305],[118,-8,69,6.071643829345703],[118,-8,70,6.072127819061279],[118,-8,71,6.076297283172607],[118,-8,72,6.087140083312988],[118,-8,73,6.107732772827148],[118,-8,74,6.131562232971191],[118,-8,75,6.152235507965088],[118,-8,76,6.1686506271362305],[118,-8,77,6.180459976196289],[118,-8,78,6.183925628662109],[118,-8,79,6.180508613586426],[118,-7,64,6.082154750823975],[118,-7,65,6.091849327087402],[118,-7,66,6.09231424331665],[118,-7,67,6.0850958824157715],[118,-7,68,6.0764875411987305],[118,-7,69,6.071643829345703],[118,-7,70,6.072127819061279],[118,-7,71,6.076297283172607],[118,-7,72,6.087140083312988],[118,-7,73,6.107732772827148],[118,-7,74,6.131562232971191],[118,-7,75,6.152235507965088],[118,-7,76,6.1686506271362305],[118,-7,77,6.180459976196289],[118,-7,78,6.183925628662109],[118,-7,79,6.180508613586426],[118,-6,64,6.082154750823975],[118,-6,65,6.091849327087402],[118,-6,66,6.09231424331665],[118,-6,67,6.0850958824157715],[118,-6,68,6.0764875411987305],[118,-6,69,6.071643829345703],[118,-6,70,6.072127819061279],[118,-6,71,6.076297283172607],[118,-6,72,6.087140083312988],[118,-6,73,6.107732772827148],[118,-6,74,6.131562232971191],[118,-6,75,6.152235507965088],[118,-6,76,6.1686506271362305],[118,-6,77,6.180459976196289],[118,-6,78,6.183925628662109],[118,-6,79,6.180508613586426],[118,-5,64,6.082154750823975],[118,-5,65,6.091849327087402],[118,-5,66,6.09231424331665],[118,-5,67,6.0850958824157715],[118,-5,68,6.0764875411987305],[118,-5,69,6.071643829345703],[118,-5,70,6.072127819061279],[118,-5,71,6.076297283172607],[118,-5,72,6.087140083312988],[118,-5,73,6.107732772827148],[118,-5,74,6.131562232971191],[118,-5,75,6.152235507965088],[118,-5,76,6.1686506271362305],[118,-5,77,6.180459976196289],[118,-5,78,6.183925628662109],[118,-5,79,6.180508613586426],[118,-4,64,6.082154750823975],[118,-4,65,6.091849327087402],[118,-4,66,6.09231424331665],[118,-4,67,6.0850958824157715],[118,-4,68,6.0764875411987305],[118,-4,69,6.071643829345703],[118,-4,70,6.072127819061279],[118,-4,71,6.076297283172607],[118,-4,72,6.087140083312988],[118,-4,73,6.107732772827148],[118,-4,74,6.131562232971191],[118,-4,75,6.152235507965088],[118,-4,76,6.1686506271362305],[118,-4,77,6.180459976196289],[118,-4,78,6.183925628662109],[118,-4,79,6.180508613586426],[118,-3,64,6.082154750823975],[118,-3,65,6.091849327087402],[118,-3,66,6.09231424331665],[118,-3,67,6.0850958824157715],[118,-3,68,6.0764875411987305],[118,-3,69,6.071643829345703],[118,-3,70,6.072127819061279],[118,-3,71,6.076297283172607],[118,-3,72,6.087140083312988],[118,-3,73,6.107732772827148],[118,-3,74,6.131562232971191],[118,-3,75,6.152235507965088],[118,-3,76,6.1686506271362305],[118,-3,77,6.180459976196289],[118,-3,78,6.183925628662109],[118,-3,79,6.180508613586426],[118,-2,64,6.082154750823975],[118,-2,65,6.091849327087402],[118,-2,66,6.09231424331665],[118,-2,67,6.0850958824157715],[118,-2,68,6.0764875411987305],[118,-2,69,6.071643829345703],[118,-2,70,6.072127819061279],[118,-2,71,6.076297283172607],[118,-2,72,6.087140083312988],[118,-2,73,6.107732772827148],[118,-2,74,6.131562232971191],[118,-2,75,6.152235507965088],[118,-2,76,6.1686506271362305],[118,-2,77,6.180459976196289],[118,-2,78,6.183925628662109],[118,-2,79,6.180508613586426],[118,-1,64,6.082154750823975],[118,-1,65,6.091849327087402],[118,-1,66,6.09231424331665],[118,-1,67,6.0850958824157715],[118,-1,68,6.0764875411987305],[118,-1,69,6.071643829345703],[118,-1,70,6.072127819061279],[118,-1,71,6.076297283172607],[118,-1,72,6.087140083312988],[118,-1,73,6.107732772827148],[118,-1,74,6.131562232971191],[118,-1,75,6.152235507965088],[118,-1,76,6.1686506271362305],[118,-1,77,6.180459976196289],[118,-1,78,6.183925628662109],[118,-1,79,6.180508613586426],[118,0,64,6.082154750823975],[118,0,65,6.091849327087402],[118,0,66,6.09231424331665],[118,0,67,6.0850958824157715],[118,0,68,6.0764875411987305],[118,0,69,6.071643829345703],[118,0,70,6.072127819061279],[118,0,71,6.076297283172607],[118,0,72,6.087140083312988],[118,0,73,6.107732772827148],[118,0,74,6.131562232971191],[118,0,75,6.152235507965088],[118,0,76,6.1686506271362305],[118,0,77,6.180459976196289],[118,0,78,6.183925628662109],[118,0,79,6.180508613586426],[118,1,64,6.082154750823975],[118,1,65,6.091849327087402],[118,1,66,6.09231424331665],[118,1,67,6.0850958824157715],[118,1,68,6.0764875411987305],[118,1,69,6.071643829345703],[118,1,70,6.072127819061279],[118,1,71,6.076297283172607],[118,1,72,6.087140083312988],[118,1,73,6.107732772827148],[118,1,74,6.131562232971191],[118,1,75,6.152235507965088],[118,1,76,6.1686506271362305],[118,1,77,6.180459976196289],[118,1,78,6.183925628662109],[118,1,79,6.180508613586426],[118,2,64,6.082154750823975],[118,2,65,6.091849327087402],[118,2,66,6.09231424331665],[118,2,67,6.0850958824157715],[118,2,68,6.0764875411987305],[118,2,69,6.071643829345703],[118,2,70,6.072127819061279],[118,2,71,6.076297283172607],[118,2,72,6.087140083312988],[118,2,73,6.107732772827148],[118,2,74,6.131562232971191],[118,2,75,6.152235507965088],[118,2,76,6.1686506271362305],[118,2,77,6.180459976196289],[118,2,78,6.183925628662109],[118,2,79,6.180508613586426],[118,3,64,6.082154750823975],[118,3,65,6.091849327087402],[118,3,66,6.09231424331665],[118,3,67,6.0850958824157715],[118,3,68,6.0764875411987305],[118,3,69,6.071643829345703],[118,3,70,6.072127819061279],[118,3,71,6.076297283172607],[118,3,72,6.087140083312988],[118,3,73,6.107732772827148],[118,3,74,6.131562232971191],[118,3,75,6.152235507965088],[118,3,76,6.1686506271362305],[118,3,77,6.180459976196289],[118,3,78,6.183925628662109],[118,3,79,6.180508613586426],[118,4,64,6.082154750823975],[118,4,65,6.091849327087402],[118,4,66,6.09231424331665],[118,4,67,6.0850958824157715],[118,4,68,6.0764875411987305],[118,4,69,6.071643829345703],[118,4,70,6.072127819061279],[118,4,71,6.076297283172607],[118,4,72,6.087140083312988],[118,4,73,6.107732772827148],[118,4,74,6.131562232971191],[118,4,75,6.152235507965088],[118,4,76,6.1686506271362305],[118,4,77,6.180459976196289],[118,4,78,6.183925628662109],[118,4,79,6.180508613586426],[118,5,64,6.082154750823975],[118,5,65,6.091849327087402],[118,5,66,6.09231424331665],[118,5,67,6.0850958824157715],[118,5,68,6.0764875411987305],[118,5,69,6.071643829345703],[118,5,70,6.072127819061279],[118,5,71,6.076297283172607],[118,5,72,6.087140083312988],[118,5,73,6.107732772827148],[118,5,74,6.131562232971191],[118,5,75,6.152235507965088],[118,5,76,6.1686506271362305],[118,5,77,6.180459976196289],[118,5,78,6.183925628662109],[118,5,79,6.180508613586426],[118,6,64,6.082154750823975],[118,6,65,6.091849327087402],[118,6,66,6.09231424331665],[118,6,67,6.0850958824157715],[118,6,68,6.0764875411987305],[118,6,69,6.071643829345703],[118,6,70,6.072127819061279],[118,6,71,6.076297283172607],[118,6,72,6.087140083312988],[118,6,73,6.107732772827148],[118,6,74,6.131562232971191],[118,6,75,6.152235507965088],[118,6,76,6.1686506271362305],[118,6,77,6.180459976196289],[118,6,78,6.183925628662109],[118,6,79,6.180508613586426],[118,7,64,6.082154750823975],[118,7,65,6.091849327087402],[118,7,66,6.09231424331665],[118,7,67,6.0850958824157715],[118,7,68,6.0764875411987305],[118,7,69,6.071643829345703],[118,7,70,6.072127819061279],[118,7,71,6.076297283172607],[118,7,72,6.087140083312988],[118,7,73,6.107732772827148],[118,7,74,6.131562232971191],[118,7,75,6.152235507965088],[118,7,76,6.1686506271362305],[118,7,77,6.180459976196289],[118,7,78,6.183925628662109],[118,7,79,6.180508613586426],[118,8,64,6.082154750823975],[118,8,65,6.091849327087402],[118,8,66,6.09231424331665],[118,8,67,6.0850958824157715],[118,8,68,6.0764875411987305],[118,8,69,6.071643829345703],[118,8,70,6.072127819061279],[118,8,71,6.076297283172607],[118,8,72,6.087140083312988],[118,8,73,6.107732772827148],[118,8,74,6.131562232971191],[118,8,75,6.152235507965088],[118,8,76,6.1686506271362305],[118,8,77,6.180459976196289],[118,8,78,6.183925628662109],[118,8,79,6.180508613586426],[118,9,64,6.082154750823975],[118,9,65,6.091849327087402],[118,9,66,6.09231424331665],[118,9,67,6.0850958824157715],[118,9,68,6.0764875411987305],[118,9,69,6.071643829345703],[118,9,70,6.072127819061279],[118,9,71,6.076297283172607],[118,9,72,6.087140083312988],[118,9,73,6.107732772827148],[118,9,74,6.131562232971191],[118,9,75,6.152235507965088],[118,9,76,6.1686506271362305],[118,9,77,6.180459976196289],[118,9,78,6.183925628662109],[118,9,79,6.180508613586426],[118,10,64,6.082154750823975],[118,10,65,6.091849327087402],[118,10,66,6.09231424331665],[118,10,67,6.0850958824157715],[118,10,68,6.0764875411987305],[118,10,69,6.071643829345703],[118,10,70,6.072127819061279],[118,10,71,6.076297283172607],[118,10,72,6.087140083312988],[118,10,73,6.107732772827148],[118,10,74,6.131562232971191],[118,10,75,6.152235507965088],[118,10,76,6.1686506271362305],[118,10,77,6.180459976196289],[118,10,78,6.183925628662109],[118,10,79,6.180508613586426],[118,11,64,6.082154750823975],[118,11,65,6.091849327087402],[118,11,66,6.09231424331665],[118,11,67,6.0850958824157715],[118,11,68,6.0764875411987305],[118,11,69,6.071643829345703],[118,11,70,6.072127819061279],[118,11,71,6.076297283172607],[118,11,72,6.087140083312988],[118,11,73,6.107732772827148],[118,11,74,6.131562232971191],[118,11,75,6.152235507965088],[118,11,76,6.1686506271362305],[118,11,77,6.180459976196289],[118,11,78,6.183925628662109],[118,11,79,6.180508613586426],[118,12,64,6.082154750823975],[118,12,65,6.091849327087402],[118,12,66,6.09231424331665],[118,12,67,6.0850958824157715],[118,12,68,6.0764875411987305],[118,12,69,6.071643829345703],[118,12,70,6.072127819061279],[118,12,71,6.076297283172607],[118,12,72,6.087140083312988],[118,12,73,6.107732772827148],[118,12,74,6.131562232971191],[118,12,75,6.152235507965088],[118,12,76,6.1686506271362305],[118,12,77,6.180459976196289],[118,12,78,6.183925628662109],[118,12,79,6.180508613586426],[118,13,64,6.082154750823975],[118,13,65,6.091849327087402],[118,13,66,6.09231424331665],[118,13,67,6.0850958824157715],[118,13,68,6.0764875411987305],[118,13,69,6.071643829345703],[118,13,70,6.072127819061279],[118,13,71,6.076297283172607],[118,13,72,6.087140083312988],[118,13,73,6.107732772827148],[118,13,74,6.131562232971191],[118,13,75,6.152235507965088],[118,13,76,6.1686506271362305],[118,13,77,6.180459976196289],[118,13,78,6.183925628662109],[118,13,79,6.180508613586426],[118,14,64,6.082154750823975],[118,14,65,6.091849327087402],[118,14,66,6.09231424331665],[118,14,67,6.0850958824157715],[118,14,68,6.0764875411987305],[118,14,69,6.071643829345703],[118,14,70,6.072127819061279],[118,14,71,6.076297283172607],[118,14,72,6.087140083312988],[118,14,73,6.107732772827148],[118,14,74,6.131562232971191],[118,14,75,6.152235507965088],[118,14,76,6.1686506271362305],[118,14,77,6.180459976196289],[118,14,78,6.183925628662109],[118,14,79,6.180508613586426],[118,15,64,6.082154750823975],[118,15,65,6.091849327087402],[118,15,66,6.09231424331665],[118,15,67,6.0850958824157715],[118,15,68,6.0764875411987305],[118,15,69,6.071643829345703],[118,15,70,6.072127819061279],[118,15,71,6.076297283172607],[118,15,72,6.087140083312988],[118,15,73,6.107732772827148],[118,15,74,6.131562232971191],[118,15,75,6.152235507965088],[118,15,76,6.1686506271362305],[118,15,77,6.180459976196289],[118,15,78,6.183925628662109],[118,15,79,6.180508613586426],[118,16,64,6.082154750823975],[118,16,65,6.091849327087402],[118,16,66,6.09231424331665],[118,16,67,6.0850958824157715],[118,16,68,6.0764875411987305],[118,16,69,6.071643829345703],[118,16,70,6.072127819061279],[118,16,71,6.076297283172607],[118,16,72,6.087140083312988],[118,16,73,6.107732772827148],[118,16,74,6.131562232971191],[118,16,75,6.152235507965088],[118,16,76,6.1686506271362305],[118,16,77,6.180459976196289],[118,16,78,6.183925628662109],[118,16,79,6.180508613586426],[118,17,64,6.082154750823975],[118,17,65,6.091849327087402],[118,17,66,6.09231424331665],[118,17,67,6.0850958824157715],[118,17,68,6.0764875411987305],[118,17,69,6.071643829345703],[118,17,70,6.072127819061279],[118,17,71,6.076297283172607],[118,17,72,6.087140083312988],[118,17,73,6.107732772827148],[118,17,74,6.131562232971191],[118,17,75,6.152235507965088],[118,17,76,6.1686506271362305],[118,17,77,6.180459976196289],[118,17,78,6.183925628662109],[118,17,79,6.180508613586426],[118,18,64,6.082154750823975],[118,18,65,6.091849327087402],[118,18,66,6.09231424331665],[118,18,67,6.0850958824157715],[118,18,68,6.0764875411987305],[118,18,69,6.071643829345703],[118,18,70,6.072127819061279],[118,18,71,6.076297283172607],[118,18,72,6.087140083312988],[118,18,73,6.107732772827148],[118,18,74,6.131562232971191],[118,18,75,6.152235507965088],[118,18,76,6.1686506271362305],[118,18,77,6.180459976196289],[118,18,78,6.183925628662109],[118,18,79,6.180508613586426],[118,19,64,6.082154750823975],[118,19,65,6.091849327087402],[118,19,66,6.09231424331665],[118,19,67,6.0850958824157715],[118,19,68,6.0764875411987305],[118,19,69,6.071643829345703],[118,19,70,6.072127819061279],[118,19,71,6.076297283172607],[118,19,72,6.087140083312988],[118,19,73,6.107732772827148],[118,19,74,6.131562232971191],[118,19,75,6.152235507965088],[118,19,76,6.1686506271362305],[118,19,77,6.180459976196289],[118,19,78,6.183925628662109],[118,19,79,6.180508613586426],[118,20,64,6.082154750823975],[118,20,65,6.091849327087402],[118,20,66,6.09231424331665],[118,20,67,6.0850958824157715],[118,20,68,6.0764875411987305],[118,20,69,6.071643829345703],[118,20,70,6.072127819061279],[118,20,71,6.076297283172607],[118,20,72,6.087140083312988],[118,20,73,6.107732772827148],[118,20,74,6.131562232971191],[118,20,75,6.152235507965088],[118,20,76,6.1686506271362305],[118,20,77,6.180459976196289],[118,20,78,6.183925628662109],[118,20,79,6.180508613586426],[118,21,64,6.082154750823975],[118,21,65,6.091849327087402],[118,21,66,6.09231424331665],[118,21,67,6.0850958824157715],[118,21,68,6.0764875411987305],[118,21,69,6.071643829345703],[118,21,70,6.072127819061279],[118,21,71,6.076297283172607],[118,21,72,6.087140083312988],[118,21,73,6.107732772827148],[118,21,74,6.131562232971191],[118,21,75,6.152235507965088],[118,21,76,6.1686506271362305],[118,21,77,6.180459976196289],[118,21,78,6.183925628662109],[118,21,79,6.180508613586426],[118,22,64,6.082154750823975],[118,22,65,6.091849327087402],[118,22,66,6.09231424331665],[118,22,67,6.0850958824157715],[118,22,68,6.0764875411987305],[118,22,69,6.071643829345703],[118,22,70,6.072127819061279],[118,22,71,6.076297283172607],[118,22,72,6.087140083312988],[118,22,73,6.107732772827148],[118,22,74,6.131562232971191],[118,22,75,6.152235507965088],[118,22,76,6.1686506271362305],[118,22,77,6.180459976196289],[118,22,78,6.183925628662109],[118,22,79,6.180508613586426],[118,23,64,6.082154750823975],[118,23,65,6.091849327087402],[118,23,66,6.09231424331665],[118,23,67,6.0850958824157715],[118,23,68,6.0764875411987305],[118,23,69,6.071643829345703],[118,23,70,6.072127819061279],[118,23,71,6.076297283172607],[118,23,72,6.087140083312988],[118,23,73,6.107732772827148],[118,23,74,6.131562232971191],[118,23,75,6.152235507965088],[118,23,76,6.1686506271362305],[118,23,77,6.180459976196289],[118,23,78,6.183925628662109],[118,23,79,6.180508613586426],[118,24,64,6.082154750823975],[118,24,65,6.091849327087402],[118,24,66,6.09231424331665],[118,24,67,6.0850958824157715],[118,24,68,6.0764875411987305],[118,24,69,6.071643829345703],[118,24,70,6.072127819061279],[118,24,71,6.076297283172607],[118,24,72,6.087140083312988],[118,24,73,6.107732772827148],[118,24,74,6.131562232971191],[118,24,75,6.152235507965088],[118,24,76,6.1686506271362305],[118,24,77,6.180459976196289],[118,24,78,6.183925628662109],[118,24,79,6.180508613586426],[118,25,64,6.082154750823975],[118,25,65,6.091849327087402],[118,25,66,6.09231424331665],[118,25,67,6.0850958824157715],[118,25,68,6.0764875411987305],[118,25,69,6.071643829345703],[118,25,70,6.072127819061279],[118,25,71,6.076297283172607],[118,25,72,6.087140083312988],[118,25,73,6.107732772827148],[118,25,74,6.131562232971191],[118,25,75,6.152235507965088],[118,25,76,6.1686506271362305],[118,25,77,6.180459976196289],[118,25,78,6.183925628662109],[118,25,79,6.180508613586426],[118,26,64,6.082154750823975],[118,26,65,6.091849327087402],[118,26,66,6.09231424331665],[118,26,67,6.0850958824157715],[118,26,68,6.0764875411987305],[118,26,69,6.071643829345703],[118,26,70,6.072127819061279],[118,26,71,6.076297283172607],[118,26,72,6.087140083312988],[118,26,73,6.107732772827148],[118,26,74,6.131562232971191],[118,26,75,6.152235507965088],[118,26,76,6.1686506271362305],[118,26,77,6.180459976196289],[118,26,78,6.183925628662109],[118,26,79,6.180508613586426],[118,27,64,6.082154750823975],[118,27,65,6.091849327087402],[118,27,66,6.09231424331665],[118,27,67,6.0850958824157715],[118,27,68,6.0764875411987305],[118,27,69,6.071643829345703],[118,27,70,6.072127819061279],[118,27,71,6.076297283172607],[118,27,72,6.087140083312988],[118,27,73,6.107732772827148],[118,27,74,6.131562232971191],[118,27,75,6.152235507965088],[118,27,76,6.1686506271362305],[118,27,77,6.180459976196289],[118,27,78,6.183925628662109],[118,27,79,6.180508613586426],[118,28,64,6.082154750823975],[118,28,65,6.091849327087402],[118,28,66,6.09231424331665],[118,28,67,6.0850958824157715],[118,28,68,6.0764875411987305],[118,28,69,6.071643829345703],[118,28,70,6.072127819061279],[118,28,71,6.076297283172607],[118,28,72,6.087140083312988],[118,28,73,6.107732772827148],[118,28,74,6.131562232971191],[118,28,75,6.152235507965088],[118,28,76,6.1686506271362305],[118,28,77,6.180459976196289],[118,28,78,6.183925628662109],[118,28,79,6.180508613586426],[118,29,64,6.082154750823975],[118,29,65,6.091849327087402],[118,29,66,6.09231424331665],[118,29,67,6.0850958824157715],[118,29,68,6.0764875411987305],[118,29,69,6.071643829345703],[118,29,70,6.072127819061279],[118,29,71,6.076297283172607],[118,29,72,6.087140083312988],[118,29,73,6.107732772827148],[118,29,74,6.131562232971191],[118,29,75,6.152235507965088],[118,29,76,6.1686506271362305],[118,29,77,6.180459976196289],[118,29,78,6.183925628662109],[118,29,79,6.180508613586426],[118,30,64,6.082154750823975],[118,30,65,6.091849327087402],[118,30,66,6.09231424331665],[118,30,67,6.0850958824157715],[118,30,68,6.0764875411987305],[118,30,69,6.071643829345703],[118,30,70,6.072127819061279],[118,30,71,6.076297283172607],[118,30,72,6.087140083312988],[118,30,73,6.107732772827148],[118,30,74,6.131562232971191],[118,30,75,6.152235507965088],[118,30,76,6.1686506271362305],[118,30,77,6.180459976196289],[118,30,78,6.183925628662109],[118,30,79,6.180508613586426],[118,31,64,6.082154750823975],[118,31,65,6.091849327087402],[118,31,66,6.09231424331665],[118,31,67,6.0850958824157715],[118,31,68,6.0764875411987305],[118,31,69,6.071643829345703],[118,31,70,6.072127819061279],[118,31,71,6.076297283172607],[118,31,72,6.087140083312988],[118,31,73,6.107732772827148],[118,31,74,6.131562232971191],[118,31,75,6.152235507965088],[118,31,76,6.1686506271362305],[118,31,77,6.180459976196289],[118,31,78,6.183925628662109],[118,31,79,6.180508613586426],[118,32,64,6.082154750823975],[118,32,65,6.091849327087402],[118,32,66,6.09231424331665],[118,32,67,6.0850958824157715],[118,32,68,6.0764875411987305],[118,32,69,6.071643829345703],[118,32,70,6.072127819061279],[118,32,71,6.076297283172607],[118,32,72,6.087140083312988],[118,32,73,6.107732772827148],[118,32,74,6.131562232971191],[118,32,75,6.152235507965088],[118,32,76,6.1686506271362305],[118,32,77,6.180459976196289],[118,32,78,6.183925628662109],[118,32,79,6.180508613586426],[118,33,64,6.082154750823975],[118,33,65,6.091849327087402],[118,33,66,6.09231424331665],[118,33,67,6.0850958824157715],[118,33,68,6.0764875411987305],[118,33,69,6.071643829345703],[118,33,70,6.072127819061279],[118,33,71,6.076297283172607],[118,33,72,6.087140083312988],[118,33,73,6.107732772827148],[118,33,74,6.131562232971191],[118,33,75,6.152235507965088],[118,33,76,6.1686506271362305],[118,33,77,6.180459976196289],[118,33,78,6.183925628662109],[118,33,79,6.180508613586426],[118,34,64,6.082154750823975],[118,34,65,6.091849327087402],[118,34,66,6.09231424331665],[118,34,67,6.0850958824157715],[118,34,68,6.0764875411987305],[118,34,69,6.071643829345703],[118,34,70,6.072127819061279],[118,34,71,6.076297283172607],[118,34,72,6.087140083312988],[118,34,73,6.107732772827148],[118,34,74,6.131562232971191],[118,34,75,6.152235507965088],[118,34,76,6.1686506271362305],[118,34,77,6.180459976196289],[118,34,78,6.183925628662109],[118,34,79,6.180508613586426],[118,35,64,6.082154750823975],[118,35,65,6.091849327087402],[118,35,66,6.09231424331665],[118,35,67,6.0850958824157715],[118,35,68,6.0764875411987305],[118,35,69,6.071643829345703],[118,35,70,6.072127819061279],[118,35,71,6.076297283172607],[118,35,72,6.087140083312988],[118,35,73,6.107732772827148],[118,35,74,6.131562232971191],[118,35,75,6.152235507965088],[118,35,76,6.1686506271362305],[118,35,77,6.180459976196289],[118,35,78,6.183925628662109],[118,35,79,6.180508613586426],[118,36,64,6.082154750823975],[118,36,65,6.091849327087402],[118,36,66,6.09231424331665],[118,36,67,6.0850958824157715],[118,36,68,6.0764875411987305],[118,36,69,6.071643829345703],[118,36,70,6.072127819061279],[118,36,71,6.076297283172607],[118,36,72,6.087140083312988],[118,36,73,6.107732772827148],[118,36,74,6.131562232971191],[118,36,75,6.152235507965088],[118,36,76,6.1686506271362305],[118,36,77,6.180459976196289],[118,36,78,6.183925628662109],[118,36,79,6.180508613586426],[118,37,64,6.082154750823975],[118,37,65,6.091849327087402],[118,37,66,6.09231424331665],[118,37,67,6.0850958824157715],[118,37,68,6.0764875411987305],[118,37,69,6.071643829345703],[118,37,70,6.072127819061279],[118,37,71,6.076297283172607],[118,37,72,6.087140083312988],[118,37,73,6.107732772827148],[118,37,74,6.131562232971191],[118,37,75,6.152235507965088],[118,37,76,6.1686506271362305],[118,37,77,6.180459976196289],[118,37,78,6.183925628662109],[118,37,79,6.180508613586426],[118,38,64,6.082154750823975],[118,38,65,6.091849327087402],[118,38,66,6.09231424331665],[118,38,67,6.0850958824157715],[118,38,68,6.0764875411987305],[118,38,69,6.071643829345703],[118,38,70,6.072127819061279],[118,38,71,6.076297283172607],[118,38,72,6.087140083312988],[118,38,73,6.107732772827148],[118,38,74,6.131562232971191],[118,38,75,6.152235507965088],[118,38,76,6.1686506271362305],[118,38,77,6.180459976196289],[118,38,78,6.183925628662109],[118,38,79,6.180508613586426],[118,39,64,6.082154750823975],[118,39,65,6.091849327087402],[118,39,66,6.09231424331665],[118,39,67,6.0850958824157715],[118,39,68,6.0764875411987305],[118,39,69,6.071643829345703],[118,39,70,6.072127819061279],[118,39,71,6.076297283172607],[118,39,72,6.087140083312988],[118,39,73,6.107732772827148],[118,39,74,6.131562232971191],[118,39,75,6.152235507965088],[118,39,76,6.1686506271362305],[118,39,77,6.180459976196289],[118,39,78,6.183925628662109],[118,39,79,6.180508613586426],[118,40,64,6.082154750823975],[118,40,65,6.091849327087402],[118,40,66,6.09231424331665],[118,40,67,6.0850958824157715],[118,40,68,6.0764875411987305],[118,40,69,6.071643829345703],[118,40,70,6.072127819061279],[118,40,71,6.076297283172607],[118,40,72,6.087140083312988],[118,40,73,6.107732772827148],[118,40,74,6.131562232971191],[118,40,75,6.152235507965088],[118,40,76,6.1686506271362305],[118,40,77,6.180459976196289],[118,40,78,6.183925628662109],[118,40,79,6.180508613586426],[118,41,64,6.082154750823975],[118,41,65,6.091849327087402],[118,41,66,6.09231424331665],[118,41,67,6.0850958824157715],[118,41,68,6.0764875411987305],[118,41,69,6.071643829345703],[118,41,70,6.072127819061279],[118,41,71,6.076297283172607],[118,41,72,6.087140083312988],[118,41,73,6.107732772827148],[118,41,74,6.131562232971191],[118,41,75,6.152235507965088],[118,41,76,6.1686506271362305],[118,41,77,6.180459976196289],[118,41,78,6.183925628662109],[118,41,79,6.180508613586426],[118,42,64,6.082154750823975],[118,42,65,6.091849327087402],[118,42,66,6.09231424331665],[118,42,67,6.0850958824157715],[118,42,68,6.0764875411987305],[118,42,69,6.071643829345703],[118,42,70,6.072127819061279],[118,42,71,6.076297283172607],[118,42,72,6.087140083312988],[118,42,73,6.107732772827148],[118,42,74,6.131562232971191],[118,42,75,6.152235507965088],[118,42,76,6.1686506271362305],[118,42,77,6.180459976196289],[118,42,78,6.183925628662109],[118,42,79,6.180508613586426],[118,43,64,6.082154750823975],[118,43,65,6.091849327087402],[118,43,66,6.09231424331665],[118,43,67,6.0850958824157715],[118,43,68,6.0764875411987305],[118,43,69,6.071643829345703],[118,43,70,6.072127819061279],[118,43,71,6.076297283172607],[118,43,72,6.087140083312988],[118,43,73,6.107732772827148],[118,43,74,6.131562232971191],[118,43,75,6.152235507965088],[118,43,76,6.1686506271362305],[118,43,77,6.180459976196289],[118,43,78,6.183925628662109],[118,43,79,6.180508613586426],[118,44,64,6.082154750823975],[118,44,65,6.091849327087402],[118,44,66,6.09231424331665],[118,44,67,6.0850958824157715],[118,44,68,6.0764875411987305],[118,44,69,6.071643829345703],[118,44,70,6.072127819061279],[118,44,71,6.076297283172607],[118,44,72,6.087140083312988],[118,44,73,6.107732772827148],[118,44,74,6.131562232971191],[118,44,75,6.152235507965088],[118,44,76,6.1686506271362305],[118,44,77,6.180459976196289],[118,44,78,6.183925628662109],[118,44,79,6.180508613586426],[118,45,64,6.082154750823975],[118,45,65,6.091849327087402],[118,45,66,6.09231424331665],[118,45,67,6.0850958824157715],[118,45,68,6.0764875411987305],[118,45,69,6.071643829345703],[118,45,70,6.072127819061279],[118,45,71,6.076297283172607],[118,45,72,6.087140083312988],[118,45,73,6.107732772827148],[118,45,74,6.131562232971191],[118,45,75,6.152235507965088],[118,45,76,6.1686506271362305],[118,45,77,6.180459976196289],[118,45,78,6.183925628662109],[118,45,79,6.180508613586426],[118,46,64,6.082154750823975],[118,46,65,6.091849327087402],[118,46,66,6.09231424331665],[118,46,67,6.0850958824157715],[118,46,68,6.0764875411987305],[118,46,69,6.071643829345703],[118,46,70,6.072127819061279],[118,46,71,6.076297283172607],[118,46,72,6.087140083312988],[118,46,73,6.107732772827148],[118,46,74,6.131562232971191],[118,46,75,6.152235507965088],[118,46,76,6.1686506271362305],[118,46,77,6.180459976196289],[118,46,78,6.183925628662109],[118,46,79,6.180508613586426],[118,47,64,6.082154750823975],[118,47,65,6.091849327087402],[118,47,66,6.09231424331665],[118,47,67,6.0850958824157715],[118,47,68,6.0764875411987305],[118,47,69,6.071643829345703],[118,47,70,6.072127819061279],[118,47,71,6.076297283172607],[118,47,72,6.087140083312988],[118,47,73,6.107732772827148],[118,47,74,6.131562232971191],[118,47,75,6.152235507965088],[118,47,76,6.1686506271362305],[118,47,77,6.180459976196289],[118,47,78,6.183925628662109],[118,47,79,6.180508613586426],[118,48,64,6.082154750823975],[118,48,65,6.091849327087402],[118,48,66,6.09231424331665],[118,48,67,6.0850958824157715],[118,48,68,6.0764875411987305],[118,48,69,6.071643829345703],[118,48,70,6.072127819061279],[118,48,71,6.076297283172607],[118,48,72,6.087140083312988],[118,48,73,6.107732772827148],[118,48,74,6.131562232971191],[118,48,75,6.152235507965088],[118,48,76,6.1686506271362305],[118,48,77,6.180459976196289],[118,48,78,6.183925628662109],[118,48,79,6.180508613586426],[118,49,64,6.082154750823975],[118,49,65,6.091849327087402],[118,49,66,6.09231424331665],[118,49,67,6.0850958824157715],[118,49,68,6.0764875411987305],[118,49,69,6.071643829345703],[118,49,70,6.072127819061279],[118,49,71,6.076297283172607],[118,49,72,6.087140083312988],[118,49,73,6.107732772827148],[118,49,74,6.131562232971191],[118,49,75,6.152235507965088],[118,49,76,6.1686506271362305],[118,49,77,6.180459976196289],[118,49,78,6.183925628662109],[118,49,79,6.180508613586426],[118,50,64,6.082154750823975],[118,50,65,6.091849327087402],[118,50,66,6.09231424331665],[118,50,67,6.0850958824157715],[118,50,68,6.0764875411987305],[118,50,69,6.071643829345703],[118,50,70,6.072127819061279],[118,50,71,6.076297283172607],[118,50,72,6.087140083312988],[118,50,73,6.107732772827148],[118,50,74,6.131562232971191],[118,50,75,6.152235507965088],[118,50,76,6.1686506271362305],[118,50,77,6.180459976196289],[118,50,78,6.183925628662109],[118,50,79,6.180508613586426],[118,51,64,6.082154750823975],[118,51,65,6.091849327087402],[118,51,66,6.09231424331665],[118,51,67,6.0850958824157715],[118,51,68,6.0764875411987305],[118,51,69,6.071643829345703],[118,51,70,6.072127819061279],[118,51,71,6.076297283172607],[118,51,72,6.087140083312988],[118,51,73,6.107732772827148],[118,51,74,6.131562232971191],[118,51,75,6.152235507965088],[118,51,76,6.1686506271362305],[118,51,77,6.180459976196289],[118,51,78,6.183925628662109],[118,51,79,6.180508613586426],[118,52,64,6.082154750823975],[118,52,65,6.091849327087402],[118,52,66,6.09231424331665],[118,52,67,6.0850958824157715],[118,52,68,6.0764875411987305],[118,52,69,6.071643829345703],[118,52,70,6.072127819061279],[118,52,71,6.076297283172607],[118,52,72,6.087140083312988],[118,52,73,6.107732772827148],[118,52,74,6.131562232971191],[118,52,75,6.152235507965088],[118,52,76,6.1686506271362305],[118,52,77,6.180459976196289],[118,52,78,6.183925628662109],[118,52,79,6.180508613586426],[118,53,64,6.082154750823975],[118,53,65,6.091849327087402],[118,53,66,6.09231424331665],[118,53,67,6.0850958824157715],[118,53,68,6.0764875411987305],[118,53,69,6.071643829345703],[118,53,70,6.072127819061279],[118,53,71,6.076297283172607],[118,53,72,6.087140083312988],[118,53,73,6.107732772827148],[118,53,74,6.131562232971191],[118,53,75,6.152235507965088],[118,53,76,6.1686506271362305],[118,53,77,6.180459976196289],[118,53,78,6.183925628662109],[118,53,79,6.180508613586426],[118,54,64,6.082154750823975],[118,54,65,6.091849327087402],[118,54,66,6.09231424331665],[118,54,67,6.0850958824157715],[118,54,68,6.0764875411987305],[118,54,69,6.071643829345703],[118,54,70,6.072127819061279],[118,54,71,6.076297283172607],[118,54,72,6.087140083312988],[118,54,73,6.107732772827148],[118,54,74,6.131562232971191],[118,54,75,6.152235507965088],[118,54,76,6.1686506271362305],[118,54,77,6.180459976196289],[118,54,78,6.183925628662109],[118,54,79,6.180508613586426],[118,55,64,6.082154750823975],[118,55,65,6.091849327087402],[118,55,66,6.09231424331665],[118,55,67,6.0850958824157715],[118,55,68,6.0764875411987305],[118,55,69,6.071643829345703],[118,55,70,6.072127819061279],[118,55,71,6.076297283172607],[118,55,72,6.087140083312988],[118,55,73,6.107732772827148],[118,55,74,6.131562232971191],[118,55,75,6.152235507965088],[118,55,76,6.1686506271362305],[118,55,77,6.180459976196289],[118,55,78,6.183925628662109],[118,55,79,6.180508613586426],[118,56,64,6.082154750823975],[118,56,65,6.091849327087402],[118,56,66,6.09231424331665],[118,56,67,6.0850958824157715],[118,56,68,6.0764875411987305],[118,56,69,6.071643829345703],[118,56,70,6.072127819061279],[118,56,71,6.076297283172607],[118,56,72,6.087140083312988],[118,56,73,6.107732772827148],[118,56,74,6.131562232971191],[118,56,75,6.152235507965088],[118,56,76,6.1686506271362305],[118,56,77,6.180459976196289],[118,56,78,6.183925628662109],[118,56,79,6.180508613586426],[118,57,64,6.082154750823975],[118,57,65,6.091849327087402],[118,57,66,6.09231424331665],[118,57,67,6.0850958824157715],[118,57,68,6.0764875411987305],[118,57,69,6.071643829345703],[118,57,70,6.072127819061279],[118,57,71,6.076297283172607],[118,57,72,6.087140083312988],[118,57,73,6.107732772827148],[118,57,74,6.131562232971191],[118,57,75,6.152235507965088],[118,57,76,6.1686506271362305],[118,57,77,6.180459976196289],[118,57,78,6.183925628662109],[118,57,79,6.180508613586426],[118,58,64,6.082154750823975],[118,58,65,6.091849327087402],[118,58,66,6.09231424331665],[118,58,67,6.0850958824157715],[118,58,68,6.0764875411987305],[118,58,69,6.071643829345703],[118,58,70,6.072127819061279],[118,58,71,6.076297283172607],[118,58,72,6.087140083312988],[118,58,73,6.107732772827148],[118,58,74,6.131562232971191],[118,58,75,6.152235507965088],[118,58,76,6.1686506271362305],[118,58,77,6.180459976196289],[118,58,78,6.183925628662109],[118,58,79,6.180508613586426],[118,59,64,6.082154750823975],[118,59,65,6.091849327087402],[118,59,66,6.09231424331665],[118,59,67,6.0850958824157715],[118,59,68,6.0764875411987305],[118,59,69,6.071643829345703],[118,59,70,6.072127819061279],[118,59,71,6.076297283172607],[118,59,72,6.087140083312988],[118,59,73,6.107732772827148],[118,59,74,6.131562232971191],[118,59,75,6.152235507965088],[118,59,76,6.1686506271362305],[118,59,77,6.180459976196289],[118,59,78,6.183925628662109],[118,59,79,6.180508613586426],[118,60,64,6.082154750823975],[118,60,65,6.091849327087402],[118,60,66,6.09231424331665],[118,60,67,6.0850958824157715],[118,60,68,6.0764875411987305],[118,60,69,6.071643829345703],[118,60,70,6.072127819061279],[118,60,71,6.076297283172607],[118,60,72,6.087140083312988],[118,60,73,6.107732772827148],[118,60,74,6.131562232971191],[118,60,75,6.152235507965088],[118,60,76,6.1686506271362305],[118,60,77,6.180459976196289],[118,60,78,6.183925628662109],[118,60,79,6.180508613586426],[118,61,64,6.082154750823975],[118,61,65,6.091849327087402],[118,61,66,6.09231424331665],[118,61,67,6.0850958824157715],[118,61,68,6.0764875411987305],[118,61,69,6.071643829345703],[118,61,70,6.072127819061279],[118,61,71,6.076297283172607],[118,61,72,6.087140083312988],[118,61,73,6.107732772827148],[118,61,74,6.131562232971191],[118,61,75,6.152235507965088],[118,61,76,6.1686506271362305],[118,61,77,6.180459976196289],[118,61,78,6.183925628662109],[118,61,79,6.180508613586426],[118,62,64,6.082154750823975],[118,62,65,6.091849327087402],[118,62,66,6.09231424331665],[118,62,67,6.0850958824157715],[118,62,68,6.0764875411987305],[118,62,69,6.071643829345703],[118,62,70,6.072127819061279],[118,62,71,6.076297283172607],[118,62,72,6.087140083312988],[118,62,73,6.107732772827148],[118,62,74,6.131562232971191],[118,62,75,6.152235507965088],[118,62,76,6.1686506271362305],[118,62,77,6.180459976196289],[118,62,78,6.183925628662109],[118,62,79,6.180508613586426],[118,63,64,6.082154750823975],[118,63,65,6.091849327087402],[118,63,66,6.09231424331665],[118,63,67,6.0850958824157715],[118,63,68,6.0764875411987305],[118,63,69,6.071643829345703],[118,63,70,6.072127819061279],[118,63,71,6.076297283172607],[118,63,72,6.087140083312988],[118,63,73,6.107732772827148],[118,63,74,6.131562232971191],[118,63,75,6.152235507965088],[118,63,76,6.1686506271362305],[118,63,77,6.180459976196289],[118,63,78,6.183925628662109],[118,63,79,6.180508613586426],[118,64,64,6.082154750823975],[118,64,65,6.091849327087402],[118,64,66,6.09231424331665],[118,64,67,6.0850958824157715],[118,64,68,6.0764875411987305],[118,64,69,6.071643829345703],[118,64,70,6.072127819061279],[118,64,71,6.076297283172607],[118,64,72,6.087140083312988],[118,64,73,6.107732772827148],[118,64,74,6.131562232971191],[118,64,75,6.152235507965088],[118,64,76,6.1686506271362305],[118,64,77,6.180459976196289],[118,64,78,6.183925628662109],[118,64,79,6.180508613586426],[118,65,64,6.082154750823975],[118,65,65,6.091849327087402],[118,65,66,6.09231424331665],[118,65,67,6.0850958824157715],[118,65,68,6.0764875411987305],[118,65,69,6.071643829345703],[118,65,70,6.072127819061279],[118,65,71,6.076297283172607],[118,65,72,6.087140083312988],[118,65,73,6.107732772827148],[118,65,74,6.131562232971191],[118,65,75,6.152235507965088],[118,65,76,6.1686506271362305],[118,65,77,6.180459976196289],[118,65,78,6.183925628662109],[118,65,79,6.180508613586426],[118,66,64,6.082154750823975],[118,66,65,6.091849327087402],[118,66,66,6.09231424331665],[118,66,67,6.0850958824157715],[118,66,68,6.0764875411987305],[118,66,69,6.071643829345703],[118,66,70,6.072127819061279],[118,66,71,6.076297283172607],[118,66,72,6.087140083312988],[118,66,73,6.107732772827148],[118,66,74,6.131562232971191],[118,66,75,6.152235507965088],[118,66,76,6.1686506271362305],[118,66,77,6.180459976196289],[118,66,78,6.183925628662109],[118,66,79,6.180508613586426],[118,67,64,6.082154750823975],[118,67,65,6.091849327087402],[118,67,66,6.09231424331665],[118,67,67,6.0850958824157715],[118,67,68,6.0764875411987305],[118,67,69,6.071643829345703],[118,67,70,6.072127819061279],[118,67,71,6.076297283172607],[118,67,72,6.087140083312988],[118,67,73,6.107732772827148],[118,67,74,6.131562232971191],[118,67,75,6.152235507965088],[118,67,76,6.1686506271362305],[118,67,77,6.180459976196289],[118,67,78,6.183925628662109],[118,67,79,6.180508613586426],[118,68,64,6.082154750823975],[118,68,65,6.091849327087402],[118,68,66,6.09231424331665],[118,68,67,6.0850958824157715],[118,68,68,6.0764875411987305],[118,68,69,6.071643829345703],[118,68,70,6.072127819061279],[118,68,71,6.076297283172607],[118,68,72,6.087140083312988],[118,68,73,6.107732772827148],[118,68,74,6.131562232971191],[118,68,75,6.152235507965088],[118,68,76,6.1686506271362305],[118,68,77,6.180459976196289],[118,68,78,6.183925628662109],[118,68,79,6.180508613586426],[118,69,64,6.082154750823975],[118,69,65,6.091849327087402],[118,69,66,6.09231424331665],[118,69,67,6.0850958824157715],[118,69,68,6.0764875411987305],[118,69,69,6.071643829345703],[118,69,70,6.072127819061279],[118,69,71,6.076297283172607],[118,69,72,6.087140083312988],[118,69,73,6.107732772827148],[118,69,74,6.131562232971191],[118,69,75,6.152235507965088],[118,69,76,6.1686506271362305],[118,69,77,6.180459976196289],[118,69,78,6.183925628662109],[118,69,79,6.180508613586426],[118,70,64,6.082154750823975],[118,70,65,6.091849327087402],[118,70,66,6.09231424331665],[118,70,67,6.0850958824157715],[118,70,68,6.0764875411987305],[118,70,69,6.071643829345703],[118,70,70,6.072127819061279],[118,70,71,6.076297283172607],[118,70,72,6.087140083312988],[118,70,73,6.107732772827148],[118,70,74,6.131562232971191],[118,70,75,6.152235507965088],[118,70,76,6.1686506271362305],[118,70,77,6.180459976196289],[118,70,78,6.183925628662109],[118,70,79,6.180508613586426],[118,71,64,6.082154750823975],[118,71,65,6.091849327087402],[118,71,66,6.09231424331665],[118,71,67,6.0850958824157715],[118,71,68,6.0764875411987305],[118,71,69,6.071643829345703],[118,71,70,6.072127819061279],[118,71,71,6.076297283172607],[118,71,72,6.087140083312988],[118,71,73,6.107732772827148],[118,71,74,6.131562232971191],[118,71,75,6.152235507965088],[118,71,76,6.1686506271362305],[118,71,77,6.180459976196289],[118,71,78,6.183925628662109],[118,71,79,6.180508613586426],[118,72,64,6.082154750823975],[118,72,65,6.091849327087402],[118,72,66,6.09231424331665],[118,72,67,6.0850958824157715],[118,72,68,6.0764875411987305],[118,72,69,6.071643829345703],[118,72,70,6.072127819061279],[118,72,71,6.076297283172607],[118,72,72,6.087140083312988],[118,72,73,6.107732772827148],[118,72,74,6.131562232971191],[118,72,75,6.152235507965088],[118,72,76,6.1686506271362305],[118,72,77,6.180459976196289],[118,72,78,6.183925628662109],[118,72,79,6.180508613586426],[118,73,64,6.082154750823975],[118,73,65,6.091849327087402],[118,73,66,6.09231424331665],[118,73,67,6.0850958824157715],[118,73,68,6.0764875411987305],[118,73,69,6.071643829345703],[118,73,70,6.072127819061279],[118,73,71,6.076297283172607],[118,73,72,6.087140083312988],[118,73,73,6.107732772827148],[118,73,74,6.131562232971191],[118,73,75,6.152235507965088],[118,73,76,6.1686506271362305],[118,73,77,6.180459976196289],[118,73,78,6.183925628662109],[118,73,79,6.180508613586426],[118,74,64,6.082154750823975],[118,74,65,6.091849327087402],[118,74,66,6.09231424331665],[118,74,67,6.0850958824157715],[118,74,68,6.0764875411987305],[118,74,69,6.071643829345703],[118,74,70,6.072127819061279],[118,74,71,6.076297283172607],[118,74,72,6.087140083312988],[118,74,73,6.107732772827148],[118,74,74,6.131562232971191],[118,74,75,6.152235507965088],[118,74,76,6.1686506271362305],[118,74,77,6.180459976196289],[118,74,78,6.183925628662109],[118,74,79,6.180508613586426],[118,75,64,6.082154750823975],[118,75,65,6.091849327087402],[118,75,66,6.09231424331665],[118,75,67,6.0850958824157715],[118,75,68,6.0764875411987305],[118,75,69,6.071643829345703],[118,75,70,6.072127819061279],[118,75,71,6.076297283172607],[118,75,72,6.087140083312988],[118,75,73,6.107732772827148],[118,75,74,6.131562232971191],[118,75,75,6.152235507965088],[118,75,76,6.1686506271362305],[118,75,77,6.180459976196289],[118,75,78,6.183925628662109],[118,75,79,6.180508613586426],[118,76,64,6.082154750823975],[118,76,65,6.091849327087402],[118,76,66,6.09231424331665],[118,76,67,6.0850958824157715],[118,76,68,6.0764875411987305],[118,76,69,6.071643829345703],[118,76,70,6.072127819061279],[118,76,71,6.076297283172607],[118,76,72,6.087140083312988],[118,76,73,6.107732772827148],[118,76,74,6.131562232971191],[118,76,75,6.152235507965088],[118,76,76,6.1686506271362305],[118,76,77,6.180459976196289],[118,76,78,6.183925628662109],[118,76,79,6.180508613586426],[118,77,64,6.082154750823975],[118,77,65,6.091849327087402],[118,77,66,6.09231424331665],[118,77,67,6.0850958824157715],[118,77,68,6.0764875411987305],[118,77,69,6.071643829345703],[118,77,70,6.072127819061279],[118,77,71,6.076297283172607],[118,77,72,6.087140083312988],[118,77,73,6.107732772827148],[118,77,74,6.131562232971191],[118,77,75,6.152235507965088],[118,77,76,6.1686506271362305],[118,77,77,6.180459976196289],[118,77,78,6.183925628662109],[118,77,79,6.180508613586426],[118,78,64,6.082154750823975],[118,78,65,6.091849327087402],[118,78,66,6.09231424331665],[118,78,67,6.0850958824157715],[118,78,68,6.0764875411987305],[118,78,69,6.071643829345703],[118,78,70,6.072127819061279],[118,78,71,6.076297283172607],[118,78,72,6.087140083312988],[118,78,73,6.107732772827148],[118,78,74,6.131562232971191],[118,78,75,6.152235507965088],[118,78,76,6.1686506271362305],[118,78,77,6.180459976196289],[118,78,78,6.183925628662109],[118,78,79,6.180508613586426],[118,79,64,6.082154750823975],[118,79,65,6.091849327087402],[118,79,66,6.09231424331665],[118,79,67,6.0850958824157715],[118,79,68,6.0764875411987305],[118,79,69,6.071643829345703],[118,79,70,6.072127819061279],[118,79,71,6.076297283172607],[118,79,72,6.087140083312988],[118,79,73,6.107732772827148],[118,79,74,6.131562232971191],[118,79,75,6.152235507965088],[118,79,76,6.1686506271362305],[118,79,77,6.180459976196289],[118,79,78,6.183925628662109],[118,79,79,6.180508613586426],[118,80,64,6.082154750823975],[118,80,65,6.091849327087402],[118,80,66,6.09231424331665],[118,80,67,6.0850958824157715],[118,80,68,6.0764875411987305],[118,80,69,6.071643829345703],[118,80,70,6.072127819061279],[118,80,71,6.076297283172607],[118,80,72,6.087140083312988],[118,80,73,6.107732772827148],[118,80,74,6.131562232971191],[118,80,75,6.152235507965088],[118,80,76,6.1686506271362305],[118,80,77,6.180459976196289],[118,80,78,6.183925628662109],[118,80,79,6.180508613586426],[118,81,64,6.082154750823975],[118,81,65,6.091849327087402],[118,81,66,6.09231424331665],[118,81,67,6.0850958824157715],[118,81,68,6.0764875411987305],[118,81,69,6.071643829345703],[118,81,70,6.072127819061279],[118,81,71,6.076297283172607],[118,81,72,6.087140083312988],[118,81,73,6.107732772827148],[118,81,74,6.131562232971191],[118,81,75,6.152235507965088],[118,81,76,6.1686506271362305],[118,81,77,6.180459976196289],[118,81,78,6.183925628662109],[118,81,79,6.180508613586426],[118,82,64,6.082154750823975],[118,82,65,6.091849327087402],[118,82,66,6.09231424331665],[118,82,67,6.0850958824157715],[118,82,68,6.0764875411987305],[118,82,69,6.071643829345703],[118,82,70,6.072127819061279],[118,82,71,6.076297283172607],[118,82,72,6.087140083312988],[118,82,73,6.107732772827148],[118,82,74,6.131562232971191],[118,82,75,6.152235507965088],[118,82,76,6.1686506271362305],[118,82,77,6.180459976196289],[118,82,78,6.183925628662109],[118,82,79,6.180508613586426],[118,83,64,6.082154750823975],[118,83,65,6.091849327087402],[118,83,66,6.09231424331665],[118,83,67,6.0850958824157715],[118,83,68,6.0764875411987305],[118,83,69,6.071643829345703],[118,83,70,6.072127819061279],[118,83,71,6.076297283172607],[118,83,72,6.087140083312988],[118,83,73,6.107732772827148],[118,83,74,6.131562232971191],[118,83,75,6.152235507965088],[118,83,76,6.1686506271362305],[118,83,77,6.180459976196289],[118,83,78,6.183925628662109],[118,83,79,6.180508613586426],[118,84,64,6.082154750823975],[118,84,65,6.091849327087402],[118,84,66,6.09231424331665],[118,84,67,6.0850958824157715],[118,84,68,6.0764875411987305],[118,84,69,6.071643829345703],[118,84,70,6.072127819061279],[118,84,71,6.076297283172607],[118,84,72,6.087140083312988],[118,84,73,6.107732772827148],[118,84,74,6.131562232971191],[118,84,75,6.152235507965088],[118,84,76,6.1686506271362305],[118,84,77,6.180459976196289],[118,84,78,6.183925628662109],[118,84,79,6.180508613586426],[118,85,64,6.082154750823975],[118,85,65,6.091849327087402],[118,85,66,6.09231424331665],[118,85,67,6.0850958824157715],[118,85,68,6.0764875411987305],[118,85,69,6.071643829345703],[118,85,70,6.072127819061279],[118,85,71,6.076297283172607],[118,85,72,6.087140083312988],[118,85,73,6.107732772827148],[118,85,74,6.131562232971191],[118,85,75,6.152235507965088],[118,85,76,6.1686506271362305],[118,85,77,6.180459976196289],[118,85,78,6.183925628662109],[118,85,79,6.180508613586426],[118,86,64,6.082154750823975],[118,86,65,6.091849327087402],[118,86,66,6.09231424331665],[118,86,67,6.0850958824157715],[118,86,68,6.0764875411987305],[118,86,69,6.071643829345703],[118,86,70,6.072127819061279],[118,86,71,6.076297283172607],[118,86,72,6.087140083312988],[118,86,73,6.107732772827148],[118,86,74,6.131562232971191],[118,86,75,6.152235507965088],[118,86,76,6.1686506271362305],[118,86,77,6.180459976196289],[118,86,78,6.183925628662109],[118,86,79,6.180508613586426],[118,87,64,6.082154750823975],[118,87,65,6.091849327087402],[118,87,66,6.09231424331665],[118,87,67,6.0850958824157715],[118,87,68,6.0764875411987305],[118,87,69,6.071643829345703],[118,87,70,6.072127819061279],[118,87,71,6.076297283172607],[118,87,72,6.087140083312988],[118,87,73,6.107732772827148],[118,87,74,6.131562232971191],[118,87,75,6.152235507965088],[118,87,76,6.1686506271362305],[118,87,77,6.180459976196289],[118,87,78,6.183925628662109],[118,87,79,6.180508613586426],[118,88,64,6.082154750823975],[118,88,65,6.091849327087402],[118,88,66,6.09231424331665],[118,88,67,6.0850958824157715],[118,88,68,6.0764875411987305],[118,88,69,6.071643829345703],[118,88,70,6.072127819061279],[118,88,71,6.076297283172607],[118,88,72,6.087140083312988],[118,88,73,6.107732772827148],[118,88,74,6.131562232971191],[118,88,75,6.152235507965088],[118,88,76,6.1686506271362305],[118,88,77,6.180459976196289],[118,88,78,6.183925628662109],[118,88,79,6.180508613586426],[118,89,64,6.082154750823975],[118,89,65,6.091849327087402],[118,89,66,6.09231424331665],[118,89,67,6.0850958824157715],[118,89,68,6.0764875411987305],[118,89,69,6.071643829345703],[118,89,70,6.072127819061279],[118,89,71,6.076297283172607],[118,89,72,6.087140083312988],[118,89,73,6.107732772827148],[118,89,74,6.131562232971191],[118,89,75,6.152235507965088],[118,89,76,6.1686506271362305],[118,89,77,6.180459976196289],[118,89,78,6.183925628662109],[118,89,79,6.180508613586426],[118,90,64,6.082154750823975],[118,90,65,6.091849327087402],[118,90,66,6.09231424331665],[118,90,67,6.0850958824157715],[118,90,68,6.0764875411987305],[118,90,69,6.071643829345703],[118,90,70,6.072127819061279],[118,90,71,6.076297283172607],[118,90,72,6.087140083312988],[118,90,73,6.107732772827148],[118,90,74,6.131562232971191],[118,90,75,6.152235507965088],[118,90,76,6.1686506271362305],[118,90,77,6.180459976196289],[118,90,78,6.183925628662109],[118,90,79,6.180508613586426],[118,91,64,6.082154750823975],[118,91,65,6.091849327087402],[118,91,66,6.09231424331665],[118,91,67,6.0850958824157715],[118,91,68,6.0764875411987305],[118,91,69,6.071643829345703],[118,91,70,6.072127819061279],[118,91,71,6.076297283172607],[118,91,72,6.087140083312988],[118,91,73,6.107732772827148],[118,91,74,6.131562232971191],[118,91,75,6.152235507965088],[118,91,76,6.1686506271362305],[118,91,77,6.180459976196289],[118,91,78,6.183925628662109],[118,91,79,6.180508613586426],[118,92,64,6.082154750823975],[118,92,65,6.091849327087402],[118,92,66,6.09231424331665],[118,92,67,6.0850958824157715],[118,92,68,6.0764875411987305],[118,92,69,6.071643829345703],[118,92,70,6.072127819061279],[118,92,71,6.076297283172607],[118,92,72,6.087140083312988],[118,92,73,6.107732772827148],[118,92,74,6.131562232971191],[118,92,75,6.152235507965088],[118,92,76,6.1686506271362305],[118,92,77,6.180459976196289],[118,92,78,6.183925628662109],[118,92,79,6.180508613586426],[118,93,64,6.082154750823975],[118,93,65,6.091849327087402],[118,93,66,6.09231424331665],[118,93,67,6.0850958824157715],[118,93,68,6.0764875411987305],[118,93,69,6.071643829345703],[118,93,70,6.072127819061279],[118,93,71,6.076297283172607],[118,93,72,6.087140083312988],[118,93,73,6.107732772827148],[118,93,74,6.131562232971191],[118,93,75,6.152235507965088],[118,93,76,6.1686506271362305],[118,93,77,6.180459976196289],[118,93,78,6.183925628662109],[118,93,79,6.180508613586426],[118,94,64,6.082154750823975],[118,94,65,6.091849327087402],[118,94,66,6.09231424331665],[118,94,67,6.0850958824157715],[118,94,68,6.0764875411987305],[118,94,69,6.071643829345703],[118,94,70,6.072127819061279],[118,94,71,6.076297283172607],[118,94,72,6.087140083312988],[118,94,73,6.107732772827148],[118,94,74,6.131562232971191],[118,94,75,6.152235507965088],[118,94,76,6.1686506271362305],[118,94,77,6.180459976196289],[118,94,78,6.183925628662109],[118,94,79,6.180508613586426],[118,95,64,6.082154750823975],[118,95,65,6.091849327087402],[118,95,66,6.09231424331665],[118,95,67,6.0850958824157715],[118,95,68,6.0764875411987305],[118,95,69,6.071643829345703],[118,95,70,6.072127819061279],[118,95,71,6.076297283172607],[118,95,72,6.087140083312988],[118,95,73,6.107732772827148],[118,95,74,6.131562232971191],[118,95,75,6.152235507965088],[118,95,76,6.1686506271362305],[118,95,77,6.180459976196289],[118,95,78,6.183925628662109],[118,95,79,6.180508613586426],[118,96,64,6.082154750823975],[118,96,65,6.091849327087402],[118,96,66,6.09231424331665],[118,96,67,6.0850958824157715],[118,96,68,6.0764875411987305],[118,96,69,6.071643829345703],[118,96,70,6.072127819061279],[118,96,71,6.076297283172607],[118,96,72,6.087140083312988],[118,96,73,6.107732772827148],[118,96,74,6.131562232971191],[118,96,75,6.152235507965088],[118,96,76,6.1686506271362305],[118,96,77,6.180459976196289],[118,96,78,6.183925628662109],[118,96,79,6.180508613586426],[118,97,64,6.082154750823975],[118,97,65,6.091849327087402],[118,97,66,6.09231424331665],[118,97,67,6.0850958824157715],[118,97,68,6.0764875411987305],[118,97,69,6.071643829345703],[118,97,70,6.072127819061279],[118,97,71,6.076297283172607],[118,97,72,6.087140083312988],[118,97,73,6.107732772827148],[118,97,74,6.131562232971191],[118,97,75,6.152235507965088],[118,97,76,6.1686506271362305],[118,97,77,6.180459976196289],[118,97,78,6.183925628662109],[118,97,79,6.180508613586426],[118,98,64,6.082154750823975],[118,98,65,6.091849327087402],[118,98,66,6.09231424331665],[118,98,67,6.0850958824157715],[118,98,68,6.0764875411987305],[118,98,69,6.071643829345703],[118,98,70,6.072127819061279],[118,98,71,6.076297283172607],[118,98,72,6.087140083312988],[118,98,73,6.107732772827148],[118,98,74,6.131562232971191],[118,98,75,6.152235507965088],[118,98,76,6.1686506271362305],[118,98,77,6.180459976196289],[118,98,78,6.183925628662109],[118,98,79,6.180508613586426],[118,99,64,6.082154750823975],[118,99,65,6.091849327087402],[118,99,66,6.09231424331665],[118,99,67,6.0850958824157715],[118,99,68,6.0764875411987305],[118,99,69,6.071643829345703],[118,99,70,6.072127819061279],[118,99,71,6.076297283172607],[118,99,72,6.087140083312988],[118,99,73,6.107732772827148],[118,99,74,6.131562232971191],[118,99,75,6.152235507965088],[118,99,76,6.1686506271362305],[118,99,77,6.180459976196289],[118,99,78,6.183925628662109],[118,99,79,6.180508613586426],[118,100,64,6.082154750823975],[118,100,65,6.091849327087402],[118,100,66,6.09231424331665],[118,100,67,6.0850958824157715],[118,100,68,6.0764875411987305],[118,100,69,6.071643829345703],[118,100,70,6.072127819061279],[118,100,71,6.076297283172607],[118,100,72,6.087140083312988],[118,100,73,6.107732772827148],[118,100,74,6.131562232971191],[118,100,75,6.152235507965088],[118,100,76,6.1686506271362305],[118,100,77,6.180459976196289],[118,100,78,6.183925628662109],[118,100,79,6.180508613586426],[118,101,64,6.082154750823975],[118,101,65,6.091849327087402],[118,101,66,6.09231424331665],[118,101,67,6.0850958824157715],[118,101,68,6.0764875411987305],[118,101,69,6.071643829345703],[118,101,70,6.072127819061279],[118,101,71,6.076297283172607],[118,101,72,6.087140083312988],[118,101,73,6.107732772827148],[118,101,74,6.131562232971191],[118,101,75,6.152235507965088],[118,101,76,6.1686506271362305],[118,101,77,6.180459976196289],[118,101,78,6.183925628662109],[118,101,79,6.180508613586426],[118,102,64,6.082154750823975],[118,102,65,6.091849327087402],[118,102,66,6.09231424331665],[118,102,67,6.0850958824157715],[118,102,68,6.0764875411987305],[118,102,69,6.071643829345703],[118,102,70,6.072127819061279],[118,102,71,6.076297283172607],[118,102,72,6.087140083312988],[118,102,73,6.107732772827148],[118,102,74,6.131562232971191],[118,102,75,6.152235507965088],[118,102,76,6.1686506271362305],[118,102,77,6.180459976196289],[118,102,78,6.183925628662109],[118,102,79,6.180508613586426],[118,103,64,6.082154750823975],[118,103,65,6.091849327087402],[118,103,66,6.09231424331665],[118,103,67,6.0850958824157715],[118,103,68,6.0764875411987305],[118,103,69,6.071643829345703],[118,103,70,6.072127819061279],[118,103,71,6.076297283172607],[118,103,72,6.087140083312988],[118,103,73,6.107732772827148],[118,103,74,6.131562232971191],[118,103,75,6.152235507965088],[118,103,76,6.1686506271362305],[118,103,77,6.180459976196289],[118,103,78,6.183925628662109],[118,103,79,6.180508613586426],[118,104,64,6.082154750823975],[118,104,65,6.091849327087402],[118,104,66,6.09231424331665],[118,104,67,6.0850958824157715],[118,104,68,6.0764875411987305],[118,104,69,6.071643829345703],[118,104,70,6.072127819061279],[118,104,71,6.076297283172607],[118,104,72,6.087140083312988],[118,104,73,6.107732772827148],[118,104,74,6.131562232971191],[118,104,75,6.152235507965088],[118,104,76,6.1686506271362305],[118,104,77,6.180459976196289],[118,104,78,6.183925628662109],[118,104,79,6.180508613586426],[118,105,64,6.082154750823975],[118,105,65,6.091849327087402],[118,105,66,6.09231424331665],[118,105,67,6.0850958824157715],[118,105,68,6.0764875411987305],[118,105,69,6.071643829345703],[118,105,70,6.072127819061279],[118,105,71,6.076297283172607],[118,105,72,6.087140083312988],[118,105,73,6.107732772827148],[118,105,74,6.131562232971191],[118,105,75,6.152235507965088],[118,105,76,6.1686506271362305],[118,105,77,6.180459976196289],[118,105,78,6.183925628662109],[118,105,79,6.180508613586426],[118,106,64,6.082154750823975],[118,106,65,6.091849327087402],[118,106,66,6.09231424331665],[118,106,67,6.0850958824157715],[118,106,68,6.0764875411987305],[118,106,69,6.071643829345703],[118,106,70,6.072127819061279],[118,106,71,6.076297283172607],[118,106,72,6.087140083312988],[118,106,73,6.107732772827148],[118,106,74,6.131562232971191],[118,106,75,6.152235507965088],[118,106,76,6.1686506271362305],[118,106,77,6.180459976196289],[118,106,78,6.183925628662109],[118,106,79,6.180508613586426],[118,107,64,6.082154750823975],[118,107,65,6.091849327087402],[118,107,66,6.09231424331665],[118,107,67,6.0850958824157715],[118,107,68,6.0764875411987305],[118,107,69,6.071643829345703],[118,107,70,6.072127819061279],[118,107,71,6.076297283172607],[118,107,72,6.087140083312988],[118,107,73,6.107732772827148],[118,107,74,6.131562232971191],[118,107,75,6.152235507965088],[118,107,76,6.1686506271362305],[118,107,77,6.180459976196289],[118,107,78,6.183925628662109],[118,107,79,6.180508613586426],[118,108,64,6.082154750823975],[118,108,65,6.091849327087402],[118,108,66,6.09231424331665],[118,108,67,6.0850958824157715],[118,108,68,6.0764875411987305],[118,108,69,6.071643829345703],[118,108,70,6.072127819061279],[118,108,71,6.076297283172607],[118,108,72,6.087140083312988],[118,108,73,6.107732772827148],[118,108,74,6.131562232971191],[118,108,75,6.152235507965088],[118,108,76,6.1686506271362305],[118,108,77,6.180459976196289],[118,108,78,6.183925628662109],[118,108,79,6.180508613586426],[118,109,64,6.082154750823975],[118,109,65,6.091849327087402],[118,109,66,6.09231424331665],[118,109,67,6.0850958824157715],[118,109,68,6.0764875411987305],[118,109,69,6.071643829345703],[118,109,70,6.072127819061279],[118,109,71,6.076297283172607],[118,109,72,6.087140083312988],[118,109,73,6.107732772827148],[118,109,74,6.131562232971191],[118,109,75,6.152235507965088],[118,109,76,6.1686506271362305],[118,109,77,6.180459976196289],[118,109,78,6.183925628662109],[118,109,79,6.180508613586426],[118,110,64,6.082154750823975],[118,110,65,6.091849327087402],[118,110,66,6.09231424331665],[118,110,67,6.0850958824157715],[118,110,68,6.0764875411987305],[118,110,69,6.071643829345703],[118,110,70,6.072127819061279],[118,110,71,6.076297283172607],[118,110,72,6.087140083312988],[118,110,73,6.107732772827148],[118,110,74,6.131562232971191],[118,110,75,6.152235507965088],[118,110,76,6.1686506271362305],[118,110,77,6.180459976196289],[118,110,78,6.183925628662109],[118,110,79,6.180508613586426],[118,111,64,6.082154750823975],[118,111,65,6.091849327087402],[118,111,66,6.09231424331665],[118,111,67,6.0850958824157715],[118,111,68,6.0764875411987305],[118,111,69,6.071643829345703],[118,111,70,6.072127819061279],[118,111,71,6.076297283172607],[118,111,72,6.087140083312988],[118,111,73,6.107732772827148],[118,111,74,6.131562232971191],[118,111,75,6.152235507965088],[118,111,76,6.1686506271362305],[118,111,77,6.180459976196289],[118,111,78,6.183925628662109],[118,111,79,6.180508613586426],[118,112,64,6.082154750823975],[118,112,65,6.091849327087402],[118,112,66,6.09231424331665],[118,112,67,6.0850958824157715],[118,112,68,6.0764875411987305],[118,112,69,6.071643829345703],[118,112,70,6.072127819061279],[118,112,71,6.076297283172607],[118,112,72,6.087140083312988],[118,112,73,6.107732772827148],[118,112,74,6.131562232971191],[118,112,75,6.152235507965088],[118,112,76,6.1686506271362305],[118,112,77,6.180459976196289],[118,112,78,6.183925628662109],[118,112,79,6.180508613586426],[118,113,64,6.082154750823975],[118,113,65,6.091849327087402],[118,113,66,6.09231424331665],[118,113,67,6.0850958824157715],[118,113,68,6.0764875411987305],[118,113,69,6.071643829345703],[118,113,70,6.072127819061279],[118,113,71,6.076297283172607],[118,113,72,6.087140083312988],[118,113,73,6.107732772827148],[118,113,74,6.131562232971191],[118,113,75,6.152235507965088],[118,113,76,6.1686506271362305],[118,113,77,6.180459976196289],[118,113,78,6.183925628662109],[118,113,79,6.180508613586426],[118,114,64,6.082154750823975],[118,114,65,6.091849327087402],[118,114,66,6.09231424331665],[118,114,67,6.0850958824157715],[118,114,68,6.0764875411987305],[118,114,69,6.071643829345703],[118,114,70,6.072127819061279],[118,114,71,6.076297283172607],[118,114,72,6.087140083312988],[118,114,73,6.107732772827148],[118,114,74,6.131562232971191],[118,114,75,6.152235507965088],[118,114,76,6.1686506271362305],[118,114,77,6.180459976196289],[118,114,78,6.183925628662109],[118,114,79,6.180508613586426],[118,115,64,6.082154750823975],[118,115,65,6.091849327087402],[118,115,66,6.09231424331665],[118,115,67,6.0850958824157715],[118,115,68,6.0764875411987305],[118,115,69,6.071643829345703],[118,115,70,6.072127819061279],[118,115,71,6.076297283172607],[118,115,72,6.087140083312988],[118,115,73,6.107732772827148],[118,115,74,6.131562232971191],[118,115,75,6.152235507965088],[118,115,76,6.1686506271362305],[118,115,77,6.180459976196289],[118,115,78,6.183925628662109],[118,115,79,6.180508613586426],[118,116,64,6.082154750823975],[118,116,65,6.091849327087402],[118,116,66,6.09231424331665],[118,116,67,6.0850958824157715],[118,116,68,6.0764875411987305],[118,116,69,6.071643829345703],[118,116,70,6.072127819061279],[118,116,71,6.076297283172607],[118,116,72,6.087140083312988],[118,116,73,6.107732772827148],[118,116,74,6.131562232971191],[118,116,75,6.152235507965088],[118,116,76,6.1686506271362305],[118,116,77,6.180459976196289],[118,116,78,6.183925628662109],[118,116,79,6.180508613586426],[118,117,64,6.082154750823975],[118,117,65,6.091849327087402],[118,117,66,6.09231424331665],[118,117,67,6.0850958824157715],[118,117,68,6.0764875411987305],[118,117,69,6.071643829345703],[118,117,70,6.072127819061279],[118,117,71,6.076297283172607],[118,117,72,6.087140083312988],[118,117,73,6.107732772827148],[118,117,74,6.131562232971191],[118,117,75,6.152235507965088],[118,117,76,6.1686506271362305],[118,117,77,6.180459976196289],[118,117,78,6.183925628662109],[118,117,79,6.180508613586426],[118,118,64,6.082154750823975],[118,118,65,6.091849327087402],[118,118,66,6.09231424331665],[118,118,67,6.0850958824157715],[118,118,68,6.0764875411987305],[118,118,69,6.071643829345703],[118,118,70,6.072127819061279],[118,118,71,6.076297283172607],[118,118,72,6.087140083312988],[118,118,73,6.107732772827148],[118,118,74,6.131562232971191],[118,118,75,6.152235507965088],[118,118,76,6.1686506271362305],[118,118,77,6.180459976196289],[118,118,78,6.183925628662109],[118,118,79,6.180508613586426],[118,119,64,6.082154750823975],[118,119,65,6.091849327087402],[118,119,66,6.09231424331665],[118,119,67,6.0850958824157715],[118,119,68,6.0764875411987305],[118,119,69,6.071643829345703],[118,119,70,6.072127819061279],[118,119,71,6.076297283172607],[118,119,72,6.087140083312988],[118,119,73,6.107732772827148],[118,119,74,6.131562232971191],[118,119,75,6.152235507965088],[118,119,76,6.1686506271362305],[118,119,77,6.180459976196289],[118,119,78,6.183925628662109],[118,119,79,6.180508613586426],[118,120,64,6.082154750823975],[118,120,65,6.091849327087402],[118,120,66,6.09231424331665],[118,120,67,6.0850958824157715],[118,120,68,6.0764875411987305],[118,120,69,6.071643829345703],[118,120,70,6.072127819061279],[118,120,71,6.076297283172607],[118,120,72,6.087140083312988],[118,120,73,6.107732772827148],[118,120,74,6.131562232971191],[118,120,75,6.152235507965088],[118,120,76,6.1686506271362305],[118,120,77,6.180459976196289],[118,120,78,6.183925628662109],[118,120,79,6.180508613586426],[118,121,64,6.082154750823975],[118,121,65,6.091849327087402],[118,121,66,6.09231424331665],[118,121,67,6.0850958824157715],[118,121,68,6.0764875411987305],[118,121,69,6.071643829345703],[118,121,70,6.072127819061279],[118,121,71,6.076297283172607],[118,121,72,6.087140083312988],[118,121,73,6.107732772827148],[118,121,74,6.131562232971191],[118,121,75,6.152235507965088],[118,121,76,6.1686506271362305],[118,121,77,6.180459976196289],[118,121,78,6.183925628662109],[118,121,79,6.180508613586426],[118,122,64,6.082154750823975],[118,122,65,6.091849327087402],[118,122,66,6.09231424331665],[118,122,67,6.0850958824157715],[118,122,68,6.0764875411987305],[118,122,69,6.071643829345703],[118,122,70,6.072127819061279],[118,122,71,6.076297283172607],[118,122,72,6.087140083312988],[118,122,73,6.107732772827148],[118,122,74,6.131562232971191],[118,122,75,6.152235507965088],[118,122,76,6.1686506271362305],[118,122,77,6.180459976196289],[118,122,78,6.183925628662109],[118,122,79,6.180508613586426],[118,123,64,6.082154750823975],[118,123,65,6.091849327087402],[118,123,66,6.09231424331665],[118,123,67,6.0850958824157715],[118,123,68,6.0764875411987305],[118,123,69,6.071643829345703],[118,123,70,6.072127819061279],[118,123,71,6.076297283172607],[118,123,72,6.087140083312988],[118,123,73,6.107732772827148],[118,123,74,6.131562232971191],[118,123,75,6.152235507965088],[118,123,76,6.1686506271362305],[118,123,77,6.180459976196289],[118,123,78,6.183925628662109],[118,123,79,6.180508613586426],[118,124,64,6.082154750823975],[118,124,65,6.091849327087402],[118,124,66,6.09231424331665],[118,124,67,6.0850958824157715],[118,124,68,6.0764875411987305],[118,124,69,6.071643829345703],[118,124,70,6.072127819061279],[118,124,71,6.076297283172607],[118,124,72,6.087140083312988],[118,124,73,6.107732772827148],[118,124,74,6.131562232971191],[118,124,75,6.152235507965088],[118,124,76,6.1686506271362305],[118,124,77,6.180459976196289],[118,124,78,6.183925628662109],[118,124,79,6.180508613586426],[118,125,64,6.082154750823975],[118,125,65,6.091849327087402],[118,125,66,6.09231424331665],[118,125,67,6.0850958824157715],[118,125,68,6.0764875411987305],[118,125,69,6.071643829345703],[118,125,70,6.072127819061279],[118,125,71,6.076297283172607],[118,125,72,6.087140083312988],[118,125,73,6.107732772827148],[118,125,74,6.131562232971191],[118,125,75,6.152235507965088],[118,125,76,6.1686506271362305],[118,125,77,6.180459976196289],[118,125,78,6.183925628662109],[118,125,79,6.180508613586426],[118,126,64,6.082154750823975],[118,126,65,6.091849327087402],[118,126,66,6.09231424331665],[118,126,67,6.0850958824157715],[118,126,68,6.0764875411987305],[118,126,69,6.071643829345703],[118,126,70,6.072127819061279],[118,126,71,6.076297283172607],[118,126,72,6.087140083312988],[118,126,73,6.107732772827148],[118,126,74,6.131562232971191],[118,126,75,6.152235507965088],[118,126,76,6.1686506271362305],[118,126,77,6.180459976196289],[118,126,78,6.183925628662109],[118,126,79,6.180508613586426],[118,127,64,6.082154750823975],[118,127,65,6.091849327087402],[118,127,66,6.09231424331665],[118,127,67,6.0850958824157715],[118,127,68,6.0764875411987305],[118,127,69,6.071643829345703],[118,127,70,6.072127819061279],[118,127,71,6.076297283172607],[118,127,72,6.087140083312988],[118,127,73,6.107732772827148],[118,127,74,6.131562232971191],[118,127,75,6.152235507965088],[118,127,76,6.1686506271362305],[118,127,77,6.180459976196289],[118,127,78,6.183925628662109],[118,127,79,6.180508613586426],[118,128,64,6.082154750823975],[118,128,65,6.091849327087402],[118,128,66,6.09231424331665],[118,128,67,6.0850958824157715],[118,128,68,6.0764875411987305],[118,128,69,6.071643829345703],[118,128,70,6.072127819061279],[118,128,71,6.076297283172607],[118,128,72,6.087140083312988],[118,128,73,6.107732772827148],[118,128,74,6.131562232971191],[118,128,75,6.152235507965088],[118,128,76,6.1686506271362305],[118,128,77,6.180459976196289],[118,128,78,6.183925628662109],[118,128,79,6.180508613586426],[118,129,64,6.082154750823975],[118,129,65,6.091849327087402],[118,129,66,6.09231424331665],[118,129,67,6.0850958824157715],[118,129,68,6.0764875411987305],[118,129,69,6.071643829345703],[118,129,70,6.072127819061279],[118,129,71,6.076297283172607],[118,129,72,6.087140083312988],[118,129,73,6.107732772827148],[118,129,74,6.131562232971191],[118,129,75,6.152235507965088],[118,129,76,6.1686506271362305],[118,129,77,6.180459976196289],[118,129,78,6.183925628662109],[118,129,79,6.180508613586426],[118,130,64,6.082154750823975],[118,130,65,6.091849327087402],[118,130,66,6.09231424331665],[118,130,67,6.0850958824157715],[118,130,68,6.0764875411987305],[118,130,69,6.071643829345703],[118,130,70,6.072127819061279],[118,130,71,6.076297283172607],[118,130,72,6.087140083312988],[118,130,73,6.107732772827148],[118,130,74,6.131562232971191],[118,130,75,6.152235507965088],[118,130,76,6.1686506271362305],[118,130,77,6.180459976196289],[118,130,78,6.183925628662109],[118,130,79,6.180508613586426],[118,131,64,6.082154750823975],[118,131,65,6.091849327087402],[118,131,66,6.09231424331665],[118,131,67,6.0850958824157715],[118,131,68,6.0764875411987305],[118,131,69,6.071643829345703],[118,131,70,6.072127819061279],[118,131,71,6.076297283172607],[118,131,72,6.087140083312988],[118,131,73,6.107732772827148],[118,131,74,6.131562232971191],[118,131,75,6.152235507965088],[118,131,76,6.1686506271362305],[118,131,77,6.180459976196289],[118,131,78,6.183925628662109],[118,131,79,6.180508613586426],[118,132,64,6.082154750823975],[118,132,65,6.091849327087402],[118,132,66,6.09231424331665],[118,132,67,6.0850958824157715],[118,132,68,6.0764875411987305],[118,132,69,6.071643829345703],[118,132,70,6.072127819061279],[118,132,71,6.076297283172607],[118,132,72,6.087140083312988],[118,132,73,6.107732772827148],[118,132,74,6.131562232971191],[118,132,75,6.152235507965088],[118,132,76,6.1686506271362305],[118,132,77,6.180459976196289],[118,132,78,6.183925628662109],[118,132,79,6.180508613586426],[118,133,64,6.082154750823975],[118,133,65,6.091849327087402],[118,133,66,6.09231424331665],[118,133,67,6.0850958824157715],[118,133,68,6.0764875411987305],[118,133,69,6.071643829345703],[118,133,70,6.072127819061279],[118,133,71,6.076297283172607],[118,133,72,6.087140083312988],[118,133,73,6.107732772827148],[118,133,74,6.131562232971191],[118,133,75,6.152235507965088],[118,133,76,6.1686506271362305],[118,133,77,6.180459976196289],[118,133,78,6.183925628662109],[118,133,79,6.180508613586426],[118,134,64,6.082154750823975],[118,134,65,6.091849327087402],[118,134,66,6.09231424331665],[118,134,67,6.0850958824157715],[118,134,68,6.0764875411987305],[118,134,69,6.071643829345703],[118,134,70,6.072127819061279],[118,134,71,6.076297283172607],[118,134,72,6.087140083312988],[118,134,73,6.107732772827148],[118,134,74,6.131562232971191],[118,134,75,6.152235507965088],[118,134,76,6.1686506271362305],[118,134,77,6.180459976196289],[118,134,78,6.183925628662109],[118,134,79,6.180508613586426],[118,135,64,6.082154750823975],[118,135,65,6.091849327087402],[118,135,66,6.09231424331665],[118,135,67,6.0850958824157715],[118,135,68,6.0764875411987305],[118,135,69,6.071643829345703],[118,135,70,6.072127819061279],[118,135,71,6.076297283172607],[118,135,72,6.087140083312988],[118,135,73,6.107732772827148],[118,135,74,6.131562232971191],[118,135,75,6.152235507965088],[118,135,76,6.1686506271362305],[118,135,77,6.180459976196289],[118,135,78,6.183925628662109],[118,135,79,6.180508613586426],[118,136,64,6.082154750823975],[118,136,65,6.091849327087402],[118,136,66,6.09231424331665],[118,136,67,6.0850958824157715],[118,136,68,6.0764875411987305],[118,136,69,6.071643829345703],[118,136,70,6.072127819061279],[118,136,71,6.076297283172607],[118,136,72,6.087140083312988],[118,136,73,6.107732772827148],[118,136,74,6.131562232971191],[118,136,75,6.152235507965088],[118,136,76,6.1686506271362305],[118,136,77,6.180459976196289],[118,136,78,6.183925628662109],[118,136,79,6.180508613586426],[118,137,64,6.082154750823975],[118,137,65,6.091849327087402],[118,137,66,6.09231424331665],[118,137,67,6.0850958824157715],[118,137,68,6.0764875411987305],[118,137,69,6.071643829345703],[118,137,70,6.072127819061279],[118,137,71,6.076297283172607],[118,137,72,6.087140083312988],[118,137,73,6.107732772827148],[118,137,74,6.131562232971191],[118,137,75,6.152235507965088],[118,137,76,6.1686506271362305],[118,137,77,6.180459976196289],[118,137,78,6.183925628662109],[118,137,79,6.180508613586426],[118,138,64,6.082154750823975],[118,138,65,6.091849327087402],[118,138,66,6.09231424331665],[118,138,67,6.0850958824157715],[118,138,68,6.0764875411987305],[118,138,69,6.071643829345703],[118,138,70,6.072127819061279],[118,138,71,6.076297283172607],[118,138,72,6.087140083312988],[118,138,73,6.107732772827148],[118,138,74,6.131562232971191],[118,138,75,6.152235507965088],[118,138,76,6.1686506271362305],[118,138,77,6.180459976196289],[118,138,78,6.183925628662109],[118,138,79,6.180508613586426],[118,139,64,6.082154750823975],[118,139,65,6.091849327087402],[118,139,66,6.09231424331665],[118,139,67,6.0850958824157715],[118,139,68,6.0764875411987305],[118,139,69,6.071643829345703],[118,139,70,6.072127819061279],[118,139,71,6.076297283172607],[118,139,72,6.087140083312988],[118,139,73,6.107732772827148],[118,139,74,6.131562232971191],[118,139,75,6.152235507965088],[118,139,76,6.1686506271362305],[118,139,77,6.180459976196289],[118,139,78,6.183925628662109],[118,139,79,6.180508613586426],[118,140,64,6.082154750823975],[118,140,65,6.091849327087402],[118,140,66,6.09231424331665],[118,140,67,6.0850958824157715],[118,140,68,6.0764875411987305],[118,140,69,6.071643829345703],[118,140,70,6.072127819061279],[118,140,71,6.076297283172607],[118,140,72,6.087140083312988],[118,140,73,6.107732772827148],[118,140,74,6.131562232971191],[118,140,75,6.152235507965088],[118,140,76,6.1686506271362305],[118,140,77,6.180459976196289],[118,140,78,6.183925628662109],[118,140,79,6.180508613586426],[118,141,64,6.082154750823975],[118,141,65,6.091849327087402],[118,141,66,6.09231424331665],[118,141,67,6.0850958824157715],[118,141,68,6.0764875411987305],[118,141,69,6.071643829345703],[118,141,70,6.072127819061279],[118,141,71,6.076297283172607],[118,141,72,6.087140083312988],[118,141,73,6.107732772827148],[118,141,74,6.131562232971191],[118,141,75,6.152235507965088],[118,141,76,6.1686506271362305],[118,141,77,6.180459976196289],[118,141,78,6.183925628662109],[118,141,79,6.180508613586426],[118,142,64,6.082154750823975],[118,142,65,6.091849327087402],[118,142,66,6.09231424331665],[118,142,67,6.0850958824157715],[118,142,68,6.0764875411987305],[118,142,69,6.071643829345703],[118,142,70,6.072127819061279],[118,142,71,6.076297283172607],[118,142,72,6.087140083312988],[118,142,73,6.107732772827148],[118,142,74,6.131562232971191],[118,142,75,6.152235507965088],[118,142,76,6.1686506271362305],[118,142,77,6.180459976196289],[118,142,78,6.183925628662109],[118,142,79,6.180508613586426],[118,143,64,6.082154750823975],[118,143,65,6.091849327087402],[118,143,66,6.09231424331665],[118,143,67,6.0850958824157715],[118,143,68,6.0764875411987305],[118,143,69,6.071643829345703],[118,143,70,6.072127819061279],[118,143,71,6.076297283172607],[118,143,72,6.087140083312988],[118,143,73,6.107732772827148],[118,143,74,6.131562232971191],[118,143,75,6.152235507965088],[118,143,76,6.1686506271362305],[118,143,77,6.180459976196289],[118,143,78,6.183925628662109],[118,143,79,6.180508613586426],[118,144,64,6.082154750823975],[118,144,65,6.091849327087402],[118,144,66,6.09231424331665],[118,144,67,6.0850958824157715],[118,144,68,6.0764875411987305],[118,144,69,6.071643829345703],[118,144,70,6.072127819061279],[118,144,71,6.076297283172607],[118,144,72,6.087140083312988],[118,144,73,6.107732772827148],[118,144,74,6.131562232971191],[118,144,75,6.152235507965088],[118,144,76,6.1686506271362305],[118,144,77,6.180459976196289],[118,144,78,6.183925628662109],[118,144,79,6.180508613586426],[118,145,64,6.082154750823975],[118,145,65,6.091849327087402],[118,145,66,6.09231424331665],[118,145,67,6.0850958824157715],[118,145,68,6.0764875411987305],[118,145,69,6.071643829345703],[118,145,70,6.072127819061279],[118,145,71,6.076297283172607],[118,145,72,6.087140083312988],[118,145,73,6.107732772827148],[118,145,74,6.131562232971191],[118,145,75,6.152235507965088],[118,145,76,6.1686506271362305],[118,145,77,6.180459976196289],[118,145,78,6.183925628662109],[118,145,79,6.180508613586426],[118,146,64,6.082154750823975],[118,146,65,6.091849327087402],[118,146,66,6.09231424331665],[118,146,67,6.0850958824157715],[118,146,68,6.0764875411987305],[118,146,69,6.071643829345703],[118,146,70,6.072127819061279],[118,146,71,6.076297283172607],[118,146,72,6.087140083312988],[118,146,73,6.107732772827148],[118,146,74,6.131562232971191],[118,146,75,6.152235507965088],[118,146,76,6.1686506271362305],[118,146,77,6.180459976196289],[118,146,78,6.183925628662109],[118,146,79,6.180508613586426],[118,147,64,6.082154750823975],[118,147,65,6.091849327087402],[118,147,66,6.09231424331665],[118,147,67,6.0850958824157715],[118,147,68,6.0764875411987305],[118,147,69,6.071643829345703],[118,147,70,6.072127819061279],[118,147,71,6.076297283172607],[118,147,72,6.087140083312988],[118,147,73,6.107732772827148],[118,147,74,6.131562232971191],[118,147,75,6.152235507965088],[118,147,76,6.1686506271362305],[118,147,77,6.180459976196289],[118,147,78,6.183925628662109],[118,147,79,6.180508613586426],[118,148,64,6.082154750823975],[118,148,65,6.091849327087402],[118,148,66,6.09231424331665],[118,148,67,6.0850958824157715],[118,148,68,6.0764875411987305],[118,148,69,6.071643829345703],[118,148,70,6.072127819061279],[118,148,71,6.076297283172607],[118,148,72,6.087140083312988],[118,148,73,6.107732772827148],[118,148,74,6.131562232971191],[118,148,75,6.152235507965088],[118,148,76,6.1686506271362305],[118,148,77,6.180459976196289],[118,148,78,6.183925628662109],[118,148,79,6.180508613586426],[118,149,64,6.082154750823975],[118,149,65,6.091849327087402],[118,149,66,6.09231424331665],[118,149,67,6.0850958824157715],[118,149,68,6.0764875411987305],[118,149,69,6.071643829345703],[118,149,70,6.072127819061279],[118,149,71,6.076297283172607],[118,149,72,6.087140083312988],[118,149,73,6.107732772827148],[118,149,74,6.131562232971191],[118,149,75,6.152235507965088],[118,149,76,6.1686506271362305],[118,149,77,6.180459976196289],[118,149,78,6.183925628662109],[118,149,79,6.180508613586426],[118,150,64,6.082154750823975],[118,150,65,6.091849327087402],[118,150,66,6.09231424331665],[118,150,67,6.0850958824157715],[118,150,68,6.0764875411987305],[118,150,69,6.071643829345703],[118,150,70,6.072127819061279],[118,150,71,6.076297283172607],[118,150,72,6.087140083312988],[118,150,73,6.107732772827148],[118,150,74,6.131562232971191],[118,150,75,6.152235507965088],[118,150,76,6.1686506271362305],[118,150,77,6.180459976196289],[118,150,78,6.183925628662109],[118,150,79,6.180508613586426],[118,151,64,6.082154750823975],[118,151,65,6.091849327087402],[118,151,66,6.09231424331665],[118,151,67,6.0850958824157715],[118,151,68,6.0764875411987305],[118,151,69,6.071643829345703],[118,151,70,6.072127819061279],[118,151,71,6.076297283172607],[118,151,72,6.087140083312988],[118,151,73,6.107732772827148],[118,151,74,6.131562232971191],[118,151,75,6.152235507965088],[118,151,76,6.1686506271362305],[118,151,77,6.180459976196289],[118,151,78,6.183925628662109],[118,151,79,6.180508613586426],[118,152,64,6.082154750823975],[118,152,65,6.091849327087402],[118,152,66,6.09231424331665],[118,152,67,6.0850958824157715],[118,152,68,6.0764875411987305],[118,152,69,6.071643829345703],[118,152,70,6.072127819061279],[118,152,71,6.076297283172607],[118,152,72,6.087140083312988],[118,152,73,6.107732772827148],[118,152,74,6.131562232971191],[118,152,75,6.152235507965088],[118,152,76,6.1686506271362305],[118,152,77,6.180459976196289],[118,152,78,6.183925628662109],[118,152,79,6.180508613586426],[118,153,64,6.082154750823975],[118,153,65,6.091849327087402],[118,153,66,6.09231424331665],[118,153,67,6.0850958824157715],[118,153,68,6.0764875411987305],[118,153,69,6.071643829345703],[118,153,70,6.072127819061279],[118,153,71,6.076297283172607],[118,153,72,6.087140083312988],[118,153,73,6.107732772827148],[118,153,74,6.131562232971191],[118,153,75,6.152235507965088],[118,153,76,6.1686506271362305],[118,153,77,6.180459976196289],[118,153,78,6.183925628662109],[118,153,79,6.180508613586426],[118,154,64,6.082154750823975],[118,154,65,6.091849327087402],[118,154,66,6.09231424331665],[118,154,67,6.0850958824157715],[118,154,68,6.0764875411987305],[118,154,69,6.071643829345703],[118,154,70,6.072127819061279],[118,154,71,6.076297283172607],[118,154,72,6.087140083312988],[118,154,73,6.107732772827148],[118,154,74,6.131562232971191],[118,154,75,6.152235507965088],[118,154,76,6.1686506271362305],[118,154,77,6.180459976196289],[118,154,78,6.183925628662109],[118,154,79,6.180508613586426],[118,155,64,6.082154750823975],[118,155,65,6.091849327087402],[118,155,66,6.09231424331665],[118,155,67,6.0850958824157715],[118,155,68,6.0764875411987305],[118,155,69,6.071643829345703],[118,155,70,6.072127819061279],[118,155,71,6.076297283172607],[118,155,72,6.087140083312988],[118,155,73,6.107732772827148],[118,155,74,6.131562232971191],[118,155,75,6.152235507965088],[118,155,76,6.1686506271362305],[118,155,77,6.180459976196289],[118,155,78,6.183925628662109],[118,155,79,6.180508613586426],[118,156,64,6.082154750823975],[118,156,65,6.091849327087402],[118,156,66,6.09231424331665],[118,156,67,6.0850958824157715],[118,156,68,6.0764875411987305],[118,156,69,6.071643829345703],[118,156,70,6.072127819061279],[118,156,71,6.076297283172607],[118,156,72,6.087140083312988],[118,156,73,6.107732772827148],[118,156,74,6.131562232971191],[118,156,75,6.152235507965088],[118,156,76,6.1686506271362305],[118,156,77,6.180459976196289],[118,156,78,6.183925628662109],[118,156,79,6.180508613586426],[118,157,64,6.082154750823975],[118,157,65,6.091849327087402],[118,157,66,6.09231424331665],[118,157,67,6.0850958824157715],[118,157,68,6.0764875411987305],[118,157,69,6.071643829345703],[118,157,70,6.072127819061279],[118,157,71,6.076297283172607],[118,157,72,6.087140083312988],[118,157,73,6.107732772827148],[118,157,74,6.131562232971191],[118,157,75,6.152235507965088],[118,157,76,6.1686506271362305],[118,157,77,6.180459976196289],[118,157,78,6.183925628662109],[118,157,79,6.180508613586426],[118,158,64,6.082154750823975],[118,158,65,6.091849327087402],[118,158,66,6.09231424331665],[118,158,67,6.0850958824157715],[118,158,68,6.0764875411987305],[118,158,69,6.071643829345703],[118,158,70,6.072127819061279],[118,158,71,6.076297283172607],[118,158,72,6.087140083312988],[118,158,73,6.107732772827148],[118,158,74,6.131562232971191],[118,158,75,6.152235507965088],[118,158,76,6.1686506271362305],[118,158,77,6.180459976196289],[118,158,78,6.183925628662109],[118,158,79,6.180508613586426],[118,159,64,6.082154750823975],[118,159,65,6.091849327087402],[118,159,66,6.09231424331665],[118,159,67,6.0850958824157715],[118,159,68,6.0764875411987305],[118,159,69,6.071643829345703],[118,159,70,6.072127819061279],[118,159,71,6.076297283172607],[118,159,72,6.087140083312988],[118,159,73,6.107732772827148],[118,159,74,6.131562232971191],[118,159,75,6.152235507965088],[118,159,76,6.1686506271362305],[118,159,77,6.180459976196289],[118,159,78,6.183925628662109],[118,159,79,6.180508613586426],[118,160,64,6.082154750823975],[118,160,65,6.091849327087402],[118,160,66,6.09231424331665],[118,160,67,6.0850958824157715],[118,160,68,6.0764875411987305],[118,160,69,6.071643829345703],[118,160,70,6.072127819061279],[118,160,71,6.076297283172607],[118,160,72,6.087140083312988],[118,160,73,6.107732772827148],[118,160,74,6.131562232971191],[118,160,75,6.152235507965088],[118,160,76,6.1686506271362305],[118,160,77,6.180459976196289],[118,160,78,6.183925628662109],[118,160,79,6.180508613586426],[118,161,64,6.082154750823975],[118,161,65,6.091849327087402],[118,161,66,6.09231424331665],[118,161,67,6.0850958824157715],[118,161,68,6.0764875411987305],[118,161,69,6.071643829345703],[118,161,70,6.072127819061279],[118,161,71,6.076297283172607],[118,161,72,6.087140083312988],[118,161,73,6.107732772827148],[118,161,74,6.131562232971191],[118,161,75,6.152235507965088],[118,161,76,6.1686506271362305],[118,161,77,6.180459976196289],[118,161,78,6.183925628662109],[118,161,79,6.180508613586426],[118,162,64,6.082154750823975],[118,162,65,6.091849327087402],[118,162,66,6.09231424331665],[118,162,67,6.0850958824157715],[118,162,68,6.0764875411987305],[118,162,69,6.071643829345703],[118,162,70,6.072127819061279],[118,162,71,6.076297283172607],[118,162,72,6.087140083312988],[118,162,73,6.107732772827148],[118,162,74,6.131562232971191],[118,162,75,6.152235507965088],[118,162,76,6.1686506271362305],[118,162,77,6.180459976196289],[118,162,78,6.183925628662109],[118,162,79,6.180508613586426],[118,163,64,6.082154750823975],[118,163,65,6.091849327087402],[118,163,66,6.09231424331665],[118,163,67,6.0850958824157715],[118,163,68,6.0764875411987305],[118,163,69,6.071643829345703],[118,163,70,6.072127819061279],[118,163,71,6.076297283172607],[118,163,72,6.087140083312988],[118,163,73,6.107732772827148],[118,163,74,6.131562232971191],[118,163,75,6.152235507965088],[118,163,76,6.1686506271362305],[118,163,77,6.180459976196289],[118,163,78,6.183925628662109],[118,163,79,6.180508613586426],[118,164,64,6.082154750823975],[118,164,65,6.091849327087402],[118,164,66,6.09231424331665],[118,164,67,6.0850958824157715],[118,164,68,6.0764875411987305],[118,164,69,6.071643829345703],[118,164,70,6.072127819061279],[118,164,71,6.076297283172607],[118,164,72,6.087140083312988],[118,164,73,6.107732772827148],[118,164,74,6.131562232971191],[118,164,75,6.152235507965088],[118,164,76,6.1686506271362305],[118,164,77,6.180459976196289],[118,164,78,6.183925628662109],[118,164,79,6.180508613586426],[118,165,64,6.082154750823975],[118,165,65,6.091849327087402],[118,165,66,6.09231424331665],[118,165,67,6.0850958824157715],[118,165,68,6.0764875411987305],[118,165,69,6.071643829345703],[118,165,70,6.072127819061279],[118,165,71,6.076297283172607],[118,165,72,6.087140083312988],[118,165,73,6.107732772827148],[118,165,74,6.131562232971191],[118,165,75,6.152235507965088],[118,165,76,6.1686506271362305],[118,165,77,6.180459976196289],[118,165,78,6.183925628662109],[118,165,79,6.180508613586426],[118,166,64,6.082154750823975],[118,166,65,6.091849327087402],[118,166,66,6.09231424331665],[118,166,67,6.0850958824157715],[118,166,68,6.0764875411987305],[118,166,69,6.071643829345703],[118,166,70,6.072127819061279],[118,166,71,6.076297283172607],[118,166,72,6.087140083312988],[118,166,73,6.107732772827148],[118,166,74,6.131562232971191],[118,166,75,6.152235507965088],[118,166,76,6.1686506271362305],[118,166,77,6.180459976196289],[118,166,78,6.183925628662109],[118,166,79,6.180508613586426],[118,167,64,6.082154750823975],[118,167,65,6.091849327087402],[118,167,66,6.09231424331665],[118,167,67,6.0850958824157715],[118,167,68,6.0764875411987305],[118,167,69,6.071643829345703],[118,167,70,6.072127819061279],[118,167,71,6.076297283172607],[118,167,72,6.087140083312988],[118,167,73,6.107732772827148],[118,167,74,6.131562232971191],[118,167,75,6.152235507965088],[118,167,76,6.1686506271362305],[118,167,77,6.180459976196289],[118,167,78,6.183925628662109],[118,167,79,6.180508613586426],[118,168,64,6.082154750823975],[118,168,65,6.091849327087402],[118,168,66,6.09231424331665],[118,168,67,6.0850958824157715],[118,168,68,6.0764875411987305],[118,168,69,6.071643829345703],[118,168,70,6.072127819061279],[118,168,71,6.076297283172607],[118,168,72,6.087140083312988],[118,168,73,6.107732772827148],[118,168,74,6.131562232971191],[118,168,75,6.152235507965088],[118,168,76,6.1686506271362305],[118,168,77,6.180459976196289],[118,168,78,6.183925628662109],[118,168,79,6.180508613586426],[118,169,64,6.082154750823975],[118,169,65,6.091849327087402],[118,169,66,6.09231424331665],[118,169,67,6.0850958824157715],[118,169,68,6.0764875411987305],[118,169,69,6.071643829345703],[118,169,70,6.072127819061279],[118,169,71,6.076297283172607],[118,169,72,6.087140083312988],[118,169,73,6.107732772827148],[118,169,74,6.131562232971191],[118,169,75,6.152235507965088],[118,169,76,6.1686506271362305],[118,169,77,6.180459976196289],[118,169,78,6.183925628662109],[118,169,79,6.180508613586426],[118,170,64,6.082154750823975],[118,170,65,6.091849327087402],[118,170,66,6.09231424331665],[118,170,67,6.0850958824157715],[118,170,68,6.0764875411987305],[118,170,69,6.071643829345703],[118,170,70,6.072127819061279],[118,170,71,6.076297283172607],[118,170,72,6.087140083312988],[118,170,73,6.107732772827148],[118,170,74,6.131562232971191],[118,170,75,6.152235507965088],[118,170,76,6.1686506271362305],[118,170,77,6.180459976196289],[118,170,78,6.183925628662109],[118,170,79,6.180508613586426],[118,171,64,6.082154750823975],[118,171,65,6.091849327087402],[118,171,66,6.09231424331665],[118,171,67,6.0850958824157715],[118,171,68,6.0764875411987305],[118,171,69,6.071643829345703],[118,171,70,6.072127819061279],[118,171,71,6.076297283172607],[118,171,72,6.087140083312988],[118,171,73,6.107732772827148],[118,171,74,6.131562232971191],[118,171,75,6.152235507965088],[118,171,76,6.1686506271362305],[118,171,77,6.180459976196289],[118,171,78,6.183925628662109],[118,171,79,6.180508613586426],[118,172,64,6.082154750823975],[118,172,65,6.091849327087402],[118,172,66,6.09231424331665],[118,172,67,6.0850958824157715],[118,172,68,6.0764875411987305],[118,172,69,6.071643829345703],[118,172,70,6.072127819061279],[118,172,71,6.076297283172607],[118,172,72,6.087140083312988],[118,172,73,6.107732772827148],[118,172,74,6.131562232971191],[118,172,75,6.152235507965088],[118,172,76,6.1686506271362305],[118,172,77,6.180459976196289],[118,172,78,6.183925628662109],[118,172,79,6.180508613586426],[118,173,64,6.082154750823975],[118,173,65,6.091849327087402],[118,173,66,6.09231424331665],[118,173,67,6.0850958824157715],[118,173,68,6.0764875411987305],[118,173,69,6.071643829345703],[118,173,70,6.072127819061279],[118,173,71,6.076297283172607],[118,173,72,6.087140083312988],[118,173,73,6.107732772827148],[118,173,74,6.131562232971191],[118,173,75,6.152235507965088],[118,173,76,6.1686506271362305],[118,173,77,6.180459976196289],[118,173,78,6.183925628662109],[118,173,79,6.180508613586426],[118,174,64,6.082154750823975],[118,174,65,6.091849327087402],[118,174,66,6.09231424331665],[118,174,67,6.0850958824157715],[118,174,68,6.0764875411987305],[118,174,69,6.071643829345703],[118,174,70,6.072127819061279],[118,174,71,6.076297283172607],[118,174,72,6.087140083312988],[118,174,73,6.107732772827148],[118,174,74,6.131562232971191],[118,174,75,6.152235507965088],[118,174,76,6.1686506271362305],[118,174,77,6.180459976196289],[118,174,78,6.183925628662109],[118,174,79,6.180508613586426],[118,175,64,6.082154750823975],[118,175,65,6.091849327087402],[118,175,66,6.09231424331665],[118,175,67,6.0850958824157715],[118,175,68,6.0764875411987305],[118,175,69,6.071643829345703],[118,175,70,6.072127819061279],[118,175,71,6.076297283172607],[118,175,72,6.087140083312988],[118,175,73,6.107732772827148],[118,175,74,6.131562232971191],[118,175,75,6.152235507965088],[118,175,76,6.1686506271362305],[118,175,77,6.180459976196289],[118,175,78,6.183925628662109],[118,175,79,6.180508613586426],[118,176,64,6.082154750823975],[118,176,65,6.091849327087402],[118,176,66,6.09231424331665],[118,176,67,6.0850958824157715],[118,176,68,6.0764875411987305],[118,176,69,6.071643829345703],[118,176,70,6.072127819061279],[118,176,71,6.076297283172607],[118,176,72,6.087140083312988],[118,176,73,6.107732772827148],[118,176,74,6.131562232971191],[118,176,75,6.152235507965088],[118,176,76,6.1686506271362305],[118,176,77,6.180459976196289],[118,176,78,6.183925628662109],[118,176,79,6.180508613586426],[118,177,64,6.082154750823975],[118,177,65,6.091849327087402],[118,177,66,6.09231424331665],[118,177,67,6.0850958824157715],[118,177,68,6.0764875411987305],[118,177,69,6.071643829345703],[118,177,70,6.072127819061279],[118,177,71,6.076297283172607],[118,177,72,6.087140083312988],[118,177,73,6.107732772827148],[118,177,74,6.131562232971191],[118,177,75,6.152235507965088],[118,177,76,6.1686506271362305],[118,177,77,6.180459976196289],[118,177,78,6.183925628662109],[118,177,79,6.180508613586426],[118,178,64,6.082154750823975],[118,178,65,6.091849327087402],[118,178,66,6.09231424331665],[118,178,67,6.0850958824157715],[118,178,68,6.0764875411987305],[118,178,69,6.071643829345703],[118,178,70,6.072127819061279],[118,178,71,6.076297283172607],[118,178,72,6.087140083312988],[118,178,73,6.107732772827148],[118,178,74,6.131562232971191],[118,178,75,6.152235507965088],[118,178,76,6.1686506271362305],[118,178,77,6.180459976196289],[118,178,78,6.183925628662109],[118,178,79,6.180508613586426],[118,179,64,6.082154750823975],[118,179,65,6.091849327087402],[118,179,66,6.09231424331665],[118,179,67,6.0850958824157715],[118,179,68,6.0764875411987305],[118,179,69,6.071643829345703],[118,179,70,6.072127819061279],[118,179,71,6.076297283172607],[118,179,72,6.087140083312988],[118,179,73,6.107732772827148],[118,179,74,6.131562232971191],[118,179,75,6.152235507965088],[118,179,76,6.1686506271362305],[118,179,77,6.180459976196289],[118,179,78,6.183925628662109],[118,179,79,6.180508613586426],[118,180,64,6.082154750823975],[118,180,65,6.091849327087402],[118,180,66,6.09231424331665],[118,180,67,6.0850958824157715],[118,180,68,6.0764875411987305],[118,180,69,6.071643829345703],[118,180,70,6.072127819061279],[118,180,71,6.076297283172607],[118,180,72,6.087140083312988],[118,180,73,6.107732772827148],[118,180,74,6.131562232971191],[118,180,75,6.152235507965088],[118,180,76,6.1686506271362305],[118,180,77,6.180459976196289],[118,180,78,6.183925628662109],[118,180,79,6.180508613586426],[118,181,64,6.082154750823975],[118,181,65,6.091849327087402],[118,181,66,6.09231424331665],[118,181,67,6.0850958824157715],[118,181,68,6.0764875411987305],[118,181,69,6.071643829345703],[118,181,70,6.072127819061279],[118,181,71,6.076297283172607],[118,181,72,6.087140083312988],[118,181,73,6.107732772827148],[118,181,74,6.131562232971191],[118,181,75,6.152235507965088],[118,181,76,6.1686506271362305],[118,181,77,6.180459976196289],[118,181,78,6.183925628662109],[118,181,79,6.180508613586426],[118,182,64,6.082154750823975],[118,182,65,6.091849327087402],[118,182,66,6.09231424331665],[118,182,67,6.0850958824157715],[118,182,68,6.0764875411987305],[118,182,69,6.071643829345703],[118,182,70,6.072127819061279],[118,182,71,6.076297283172607],[118,182,72,6.087140083312988],[118,182,73,6.107732772827148],[118,182,74,6.131562232971191],[118,182,75,6.152235507965088],[118,182,76,6.1686506271362305],[118,182,77,6.180459976196289],[118,182,78,6.183925628662109],[118,182,79,6.180508613586426],[118,183,64,6.082154750823975],[118,183,65,6.091849327087402],[118,183,66,6.09231424331665],[118,183,67,6.0850958824157715],[118,183,68,6.0764875411987305],[118,183,69,6.071643829345703],[118,183,70,6.072127819061279],[118,183,71,6.076297283172607],[118,183,72,6.087140083312988],[118,183,73,6.107732772827148],[118,183,74,6.131562232971191],[118,183,75,6.152235507965088],[118,183,76,6.1686506271362305],[118,183,77,6.180459976196289],[118,183,78,6.183925628662109],[118,183,79,6.180508613586426],[118,184,64,6.082154750823975],[118,184,65,6.091849327087402],[118,184,66,6.09231424331665],[118,184,67,6.0850958824157715],[118,184,68,6.0764875411987305],[118,184,69,6.071643829345703],[118,184,70,6.072127819061279],[118,184,71,6.076297283172607],[118,184,72,6.087140083312988],[118,184,73,6.107732772827148],[118,184,74,6.131562232971191],[118,184,75,6.152235507965088],[118,184,76,6.1686506271362305],[118,184,77,6.180459976196289],[118,184,78,6.183925628662109],[118,184,79,6.180508613586426],[118,185,64,6.082154750823975],[118,185,65,6.091849327087402],[118,185,66,6.09231424331665],[118,185,67,6.0850958824157715],[118,185,68,6.0764875411987305],[118,185,69,6.071643829345703],[118,185,70,6.072127819061279],[118,185,71,6.076297283172607],[118,185,72,6.087140083312988],[118,185,73,6.107732772827148],[118,185,74,6.131562232971191],[118,185,75,6.152235507965088],[118,185,76,6.1686506271362305],[118,185,77,6.180459976196289],[118,185,78,6.183925628662109],[118,185,79,6.180508613586426],[118,186,64,6.082154750823975],[118,186,65,6.091849327087402],[118,186,66,6.09231424331665],[118,186,67,6.0850958824157715],[118,186,68,6.0764875411987305],[118,186,69,6.071643829345703],[118,186,70,6.072127819061279],[118,186,71,6.076297283172607],[118,186,72,6.087140083312988],[118,186,73,6.107732772827148],[118,186,74,6.131562232971191],[118,186,75,6.152235507965088],[118,186,76,6.1686506271362305],[118,186,77,6.180459976196289],[118,186,78,6.183925628662109],[118,186,79,6.180508613586426],[118,187,64,6.082154750823975],[118,187,65,6.091849327087402],[118,187,66,6.09231424331665],[118,187,67,6.0850958824157715],[118,187,68,6.0764875411987305],[118,187,69,6.071643829345703],[118,187,70,6.072127819061279],[118,187,71,6.076297283172607],[118,187,72,6.087140083312988],[118,187,73,6.107732772827148],[118,187,74,6.131562232971191],[118,187,75,6.152235507965088],[118,187,76,6.1686506271362305],[118,187,77,6.180459976196289],[118,187,78,6.183925628662109],[118,187,79,6.180508613586426],[118,188,64,6.082154750823975],[118,188,65,6.091849327087402],[118,188,66,6.09231424331665],[118,188,67,6.0850958824157715],[118,188,68,6.0764875411987305],[118,188,69,6.071643829345703],[118,188,70,6.072127819061279],[118,188,71,6.076297283172607],[118,188,72,6.087140083312988],[118,188,73,6.107732772827148],[118,188,74,6.131562232971191],[118,188,75,6.152235507965088],[118,188,76,6.1686506271362305],[118,188,77,6.180459976196289],[118,188,78,6.183925628662109],[118,188,79,6.180508613586426],[118,189,64,6.082154750823975],[118,189,65,6.091849327087402],[118,189,66,6.09231424331665],[118,189,67,6.0850958824157715],[118,189,68,6.0764875411987305],[118,189,69,6.071643829345703],[118,189,70,6.072127819061279],[118,189,71,6.076297283172607],[118,189,72,6.087140083312988],[118,189,73,6.107732772827148],[118,189,74,6.131562232971191],[118,189,75,6.152235507965088],[118,189,76,6.1686506271362305],[118,189,77,6.180459976196289],[118,189,78,6.183925628662109],[118,189,79,6.180508613586426],[118,190,64,6.082154750823975],[118,190,65,6.091849327087402],[118,190,66,6.09231424331665],[118,190,67,6.0850958824157715],[118,190,68,6.0764875411987305],[118,190,69,6.071643829345703],[118,190,70,6.072127819061279],[118,190,71,6.076297283172607],[118,190,72,6.087140083312988],[118,190,73,6.107732772827148],[118,190,74,6.131562232971191],[118,190,75,6.152235507965088],[118,190,76,6.1686506271362305],[118,190,77,6.180459976196289],[118,190,78,6.183925628662109],[118,190,79,6.180508613586426],[118,191,64,6.082154750823975],[118,191,65,6.091849327087402],[118,191,66,6.09231424331665],[118,191,67,6.0850958824157715],[118,191,68,6.0764875411987305],[118,191,69,6.071643829345703],[118,191,70,6.072127819061279],[118,191,71,6.076297283172607],[118,191,72,6.087140083312988],[118,191,73,6.107732772827148],[118,191,74,6.131562232971191],[118,191,75,6.152235507965088],[118,191,76,6.1686506271362305],[118,191,77,6.180459976196289],[118,191,78,6.183925628662109],[118,191,79,6.180508613586426],[118,192,64,6.082154750823975],[118,192,65,6.091849327087402],[118,192,66,6.09231424331665],[118,192,67,6.0850958824157715],[118,192,68,6.0764875411987305],[118,192,69,6.071643829345703],[118,192,70,6.072127819061279],[118,192,71,6.076297283172607],[118,192,72,6.087140083312988],[118,192,73,6.107732772827148],[118,192,74,6.131562232971191],[118,192,75,6.152235507965088],[118,192,76,6.1686506271362305],[118,192,77,6.180459976196289],[118,192,78,6.183925628662109],[118,192,79,6.180508613586426],[118,193,64,6.082154750823975],[118,193,65,6.091849327087402],[118,193,66,6.09231424331665],[118,193,67,6.0850958824157715],[118,193,68,6.0764875411987305],[118,193,69,6.071643829345703],[118,193,70,6.072127819061279],[118,193,71,6.076297283172607],[118,193,72,6.087140083312988],[118,193,73,6.107732772827148],[118,193,74,6.131562232971191],[118,193,75,6.152235507965088],[118,193,76,6.1686506271362305],[118,193,77,6.180459976196289],[118,193,78,6.183925628662109],[118,193,79,6.180508613586426],[118,194,64,6.082154750823975],[118,194,65,6.091849327087402],[118,194,66,6.09231424331665],[118,194,67,6.0850958824157715],[118,194,68,6.0764875411987305],[118,194,69,6.071643829345703],[118,194,70,6.072127819061279],[118,194,71,6.076297283172607],[118,194,72,6.087140083312988],[118,194,73,6.107732772827148],[118,194,74,6.131562232971191],[118,194,75,6.152235507965088],[118,194,76,6.1686506271362305],[118,194,77,6.180459976196289],[118,194,78,6.183925628662109],[118,194,79,6.180508613586426],[118,195,64,6.082154750823975],[118,195,65,6.091849327087402],[118,195,66,6.09231424331665],[118,195,67,6.0850958824157715],[118,195,68,6.0764875411987305],[118,195,69,6.071643829345703],[118,195,70,6.072127819061279],[118,195,71,6.076297283172607],[118,195,72,6.087140083312988],[118,195,73,6.107732772827148],[118,195,74,6.131562232971191],[118,195,75,6.152235507965088],[118,195,76,6.1686506271362305],[118,195,77,6.180459976196289],[118,195,78,6.183925628662109],[118,195,79,6.180508613586426],[118,196,64,6.082154750823975],[118,196,65,6.091849327087402],[118,196,66,6.09231424331665],[118,196,67,6.0850958824157715],[118,196,68,6.0764875411987305],[118,196,69,6.071643829345703],[118,196,70,6.072127819061279],[118,196,71,6.076297283172607],[118,196,72,6.087140083312988],[118,196,73,6.107732772827148],[118,196,74,6.131562232971191],[118,196,75,6.152235507965088],[118,196,76,6.1686506271362305],[118,196,77,6.180459976196289],[118,196,78,6.183925628662109],[118,196,79,6.180508613586426],[118,197,64,6.082154750823975],[118,197,65,6.091849327087402],[118,197,66,6.09231424331665],[118,197,67,6.0850958824157715],[118,197,68,6.0764875411987305],[118,197,69,6.071643829345703],[118,197,70,6.072127819061279],[118,197,71,6.076297283172607],[118,197,72,6.087140083312988],[118,197,73,6.107732772827148],[118,197,74,6.131562232971191],[118,197,75,6.152235507965088],[118,197,76,6.1686506271362305],[118,197,77,6.180459976196289],[118,197,78,6.183925628662109],[118,197,79,6.180508613586426],[118,198,64,6.082154750823975],[118,198,65,6.091849327087402],[118,198,66,6.09231424331665],[118,198,67,6.0850958824157715],[118,198,68,6.0764875411987305],[118,198,69,6.071643829345703],[118,198,70,6.072127819061279],[118,198,71,6.076297283172607],[118,198,72,6.087140083312988],[118,198,73,6.107732772827148],[118,198,74,6.131562232971191],[118,198,75,6.152235507965088],[118,198,76,6.1686506271362305],[118,198,77,6.180459976196289],[118,198,78,6.183925628662109],[118,198,79,6.180508613586426],[118,199,64,6.082154750823975],[118,199,65,6.091849327087402],[118,199,66,6.09231424331665],[118,199,67,6.0850958824157715],[118,199,68,6.0764875411987305],[118,199,69,6.071643829345703],[118,199,70,6.072127819061279],[118,199,71,6.076297283172607],[118,199,72,6.087140083312988],[118,199,73,6.107732772827148],[118,199,74,6.131562232971191],[118,199,75,6.152235507965088],[118,199,76,6.1686506271362305],[118,199,77,6.180459976196289],[118,199,78,6.183925628662109],[118,199,79,6.180508613586426],[118,200,64,6.082154750823975],[118,200,65,6.091849327087402],[118,200,66,6.09231424331665],[118,200,67,6.0850958824157715],[118,200,68,6.0764875411987305],[118,200,69,6.071643829345703],[118,200,70,6.072127819061279],[118,200,71,6.076297283172607],[118,200,72,6.087140083312988],[118,200,73,6.107732772827148],[118,200,74,6.131562232971191],[118,200,75,6.152235507965088],[118,200,76,6.1686506271362305],[118,200,77,6.180459976196289],[118,200,78,6.183925628662109],[118,200,79,6.180508613586426],[118,201,64,6.082154750823975],[118,201,65,6.091849327087402],[118,201,66,6.09231424331665],[118,201,67,6.0850958824157715],[118,201,68,6.0764875411987305],[118,201,69,6.071643829345703],[118,201,70,6.072127819061279],[118,201,71,6.076297283172607],[118,201,72,6.087140083312988],[118,201,73,6.107732772827148],[118,201,74,6.131562232971191],[118,201,75,6.152235507965088],[118,201,76,6.1686506271362305],[118,201,77,6.180459976196289],[118,201,78,6.183925628662109],[118,201,79,6.180508613586426],[118,202,64,6.082154750823975],[118,202,65,6.091849327087402],[118,202,66,6.09231424331665],[118,202,67,6.0850958824157715],[118,202,68,6.0764875411987305],[118,202,69,6.071643829345703],[118,202,70,6.072127819061279],[118,202,71,6.076297283172607],[118,202,72,6.087140083312988],[118,202,73,6.107732772827148],[118,202,74,6.131562232971191],[118,202,75,6.152235507965088],[118,202,76,6.1686506271362305],[118,202,77,6.180459976196289],[118,202,78,6.183925628662109],[118,202,79,6.180508613586426],[118,203,64,6.082154750823975],[118,203,65,6.091849327087402],[118,203,66,6.09231424331665],[118,203,67,6.0850958824157715],[118,203,68,6.0764875411987305],[118,203,69,6.071643829345703],[118,203,70,6.072127819061279],[118,203,71,6.076297283172607],[118,203,72,6.087140083312988],[118,203,73,6.107732772827148],[118,203,74,6.131562232971191],[118,203,75,6.152235507965088],[118,203,76,6.1686506271362305],[118,203,77,6.180459976196289],[118,203,78,6.183925628662109],[118,203,79,6.180508613586426],[118,204,64,6.082154750823975],[118,204,65,6.091849327087402],[118,204,66,6.09231424331665],[118,204,67,6.0850958824157715],[118,204,68,6.0764875411987305],[118,204,69,6.071643829345703],[118,204,70,6.072127819061279],[118,204,71,6.076297283172607],[118,204,72,6.087140083312988],[118,204,73,6.107732772827148],[118,204,74,6.131562232971191],[118,204,75,6.152235507965088],[118,204,76,6.1686506271362305],[118,204,77,6.180459976196289],[118,204,78,6.183925628662109],[118,204,79,6.180508613586426],[118,205,64,6.082154750823975],[118,205,65,6.091849327087402],[118,205,66,6.09231424331665],[118,205,67,6.0850958824157715],[118,205,68,6.0764875411987305],[118,205,69,6.071643829345703],[118,205,70,6.072127819061279],[118,205,71,6.076297283172607],[118,205,72,6.087140083312988],[118,205,73,6.107732772827148],[118,205,74,6.131562232971191],[118,205,75,6.152235507965088],[118,205,76,6.1686506271362305],[118,205,77,6.180459976196289],[118,205,78,6.183925628662109],[118,205,79,6.180508613586426],[118,206,64,6.082154750823975],[118,206,65,6.091849327087402],[118,206,66,6.09231424331665],[118,206,67,6.0850958824157715],[118,206,68,6.0764875411987305],[118,206,69,6.071643829345703],[118,206,70,6.072127819061279],[118,206,71,6.076297283172607],[118,206,72,6.087140083312988],[118,206,73,6.107732772827148],[118,206,74,6.131562232971191],[118,206,75,6.152235507965088],[118,206,76,6.1686506271362305],[118,206,77,6.180459976196289],[118,206,78,6.183925628662109],[118,206,79,6.180508613586426],[118,207,64,6.082154750823975],[118,207,65,6.091849327087402],[118,207,66,6.09231424331665],[118,207,67,6.0850958824157715],[118,207,68,6.0764875411987305],[118,207,69,6.071643829345703],[118,207,70,6.072127819061279],[118,207,71,6.076297283172607],[118,207,72,6.087140083312988],[118,207,73,6.107732772827148],[118,207,74,6.131562232971191],[118,207,75,6.152235507965088],[118,207,76,6.1686506271362305],[118,207,77,6.180459976196289],[118,207,78,6.183925628662109],[118,207,79,6.180508613586426],[118,208,64,6.082154750823975],[118,208,65,6.091849327087402],[118,208,66,6.09231424331665],[118,208,67,6.0850958824157715],[118,208,68,6.0764875411987305],[118,208,69,6.071643829345703],[118,208,70,6.072127819061279],[118,208,71,6.076297283172607],[118,208,72,6.087140083312988],[118,208,73,6.107732772827148],[118,208,74,6.131562232971191],[118,208,75,6.152235507965088],[118,208,76,6.1686506271362305],[118,208,77,6.180459976196289],[118,208,78,6.183925628662109],[118,208,79,6.180508613586426],[118,209,64,6.082154750823975],[118,209,65,6.091849327087402],[118,209,66,6.09231424331665],[118,209,67,6.0850958824157715],[118,209,68,6.0764875411987305],[118,209,69,6.071643829345703],[118,209,70,6.072127819061279],[118,209,71,6.076297283172607],[118,209,72,6.087140083312988],[118,209,73,6.107732772827148],[118,209,74,6.131562232971191],[118,209,75,6.152235507965088],[118,209,76,6.1686506271362305],[118,209,77,6.180459976196289],[118,209,78,6.183925628662109],[118,209,79,6.180508613586426],[118,210,64,6.082154750823975],[118,210,65,6.091849327087402],[118,210,66,6.09231424331665],[118,210,67,6.0850958824157715],[118,210,68,6.0764875411987305],[118,210,69,6.071643829345703],[118,210,70,6.072127819061279],[118,210,71,6.076297283172607],[118,210,72,6.087140083312988],[118,210,73,6.107732772827148],[118,210,74,6.131562232971191],[118,210,75,6.152235507965088],[118,210,76,6.1686506271362305],[118,210,77,6.180459976196289],[118,210,78,6.183925628662109],[118,210,79,6.180508613586426],[118,211,64,6.082154750823975],[118,211,65,6.091849327087402],[118,211,66,6.09231424331665],[118,211,67,6.0850958824157715],[118,211,68,6.0764875411987305],[118,211,69,6.071643829345703],[118,211,70,6.072127819061279],[118,211,71,6.076297283172607],[118,211,72,6.087140083312988],[118,211,73,6.107732772827148],[118,211,74,6.131562232971191],[118,211,75,6.152235507965088],[118,211,76,6.1686506271362305],[118,211,77,6.180459976196289],[118,211,78,6.183925628662109],[118,211,79,6.180508613586426],[118,212,64,6.082154750823975],[118,212,65,6.091849327087402],[118,212,66,6.09231424331665],[118,212,67,6.0850958824157715],[118,212,68,6.0764875411987305],[118,212,69,6.071643829345703],[118,212,70,6.072127819061279],[118,212,71,6.076297283172607],[118,212,72,6.087140083312988],[118,212,73,6.107732772827148],[118,212,74,6.131562232971191],[118,212,75,6.152235507965088],[118,212,76,6.1686506271362305],[118,212,77,6.180459976196289],[118,212,78,6.183925628662109],[118,212,79,6.180508613586426],[118,213,64,6.082154750823975],[118,213,65,6.091849327087402],[118,213,66,6.09231424331665],[118,213,67,6.0850958824157715],[118,213,68,6.0764875411987305],[118,213,69,6.071643829345703],[118,213,70,6.072127819061279],[118,213,71,6.076297283172607],[118,213,72,6.087140083312988],[118,213,73,6.107732772827148],[118,213,74,6.131562232971191],[118,213,75,6.152235507965088],[118,213,76,6.1686506271362305],[118,213,77,6.180459976196289],[118,213,78,6.183925628662109],[118,213,79,6.180508613586426],[118,214,64,6.082154750823975],[118,214,65,6.091849327087402],[118,214,66,6.09231424331665],[118,214,67,6.0850958824157715],[118,214,68,6.0764875411987305],[118,214,69,6.071643829345703],[118,214,70,6.072127819061279],[118,214,71,6.076297283172607],[118,214,72,6.087140083312988],[118,214,73,6.107732772827148],[118,214,74,6.131562232971191],[118,214,75,6.152235507965088],[118,214,76,6.1686506271362305],[118,214,77,6.180459976196289],[118,214,78,6.183925628662109],[118,214,79,6.180508613586426],[118,215,64,6.082154750823975],[118,215,65,6.091849327087402],[118,215,66,6.09231424331665],[118,215,67,6.0850958824157715],[118,215,68,6.0764875411987305],[118,215,69,6.071643829345703],[118,215,70,6.072127819061279],[118,215,71,6.076297283172607],[118,215,72,6.087140083312988],[118,215,73,6.107732772827148],[118,215,74,6.131562232971191],[118,215,75,6.152235507965088],[118,215,76,6.1686506271362305],[118,215,77,6.180459976196289],[118,215,78,6.183925628662109],[118,215,79,6.180508613586426],[118,216,64,6.082154750823975],[118,216,65,6.091849327087402],[118,216,66,6.09231424331665],[118,216,67,6.0850958824157715],[118,216,68,6.0764875411987305],[118,216,69,6.071643829345703],[118,216,70,6.072127819061279],[118,216,71,6.076297283172607],[118,216,72,6.087140083312988],[118,216,73,6.107732772827148],[118,216,74,6.131562232971191],[118,216,75,6.152235507965088],[118,216,76,6.1686506271362305],[118,216,77,6.180459976196289],[118,216,78,6.183925628662109],[118,216,79,6.180508613586426],[118,217,64,6.082154750823975],[118,217,65,6.091849327087402],[118,217,66,6.09231424331665],[118,217,67,6.0850958824157715],[118,217,68,6.0764875411987305],[118,217,69,6.071643829345703],[118,217,70,6.072127819061279],[118,217,71,6.076297283172607],[118,217,72,6.087140083312988],[118,217,73,6.107732772827148],[118,217,74,6.131562232971191],[118,217,75,6.152235507965088],[118,217,76,6.1686506271362305],[118,217,77,6.180459976196289],[118,217,78,6.183925628662109],[118,217,79,6.180508613586426],[118,218,64,6.082154750823975],[118,218,65,6.091849327087402],[118,218,66,6.09231424331665],[118,218,67,6.0850958824157715],[118,218,68,6.0764875411987305],[118,218,69,6.071643829345703],[118,218,70,6.072127819061279],[118,218,71,6.076297283172607],[118,218,72,6.087140083312988],[118,218,73,6.107732772827148],[118,218,74,6.131562232971191],[118,218,75,6.152235507965088],[118,218,76,6.1686506271362305],[118,218,77,6.180459976196289],[118,218,78,6.183925628662109],[118,218,79,6.180508613586426],[118,219,64,6.082154750823975],[118,219,65,6.091849327087402],[118,219,66,6.09231424331665],[118,219,67,6.0850958824157715],[118,219,68,6.0764875411987305],[118,219,69,6.071643829345703],[118,219,70,6.072127819061279],[118,219,71,6.076297283172607],[118,219,72,6.087140083312988],[118,219,73,6.107732772827148],[118,219,74,6.131562232971191],[118,219,75,6.152235507965088],[118,219,76,6.1686506271362305],[118,219,77,6.180459976196289],[118,219,78,6.183925628662109],[118,219,79,6.180508613586426],[118,220,64,6.082154750823975],[118,220,65,6.091849327087402],[118,220,66,6.09231424331665],[118,220,67,6.0850958824157715],[118,220,68,6.0764875411987305],[118,220,69,6.071643829345703],[118,220,70,6.072127819061279],[118,220,71,6.076297283172607],[118,220,72,6.087140083312988],[118,220,73,6.107732772827148],[118,220,74,6.131562232971191],[118,220,75,6.152235507965088],[118,220,76,6.1686506271362305],[118,220,77,6.180459976196289],[118,220,78,6.183925628662109],[118,220,79,6.180508613586426],[118,221,64,6.082154750823975],[118,221,65,6.091849327087402],[118,221,66,6.09231424331665],[118,221,67,6.0850958824157715],[118,221,68,6.0764875411987305],[118,221,69,6.071643829345703],[118,221,70,6.072127819061279],[118,221,71,6.076297283172607],[118,221,72,6.087140083312988],[118,221,73,6.107732772827148],[118,221,74,6.131562232971191],[118,221,75,6.152235507965088],[118,221,76,6.1686506271362305],[118,221,77,6.180459976196289],[118,221,78,6.183925628662109],[118,221,79,6.180508613586426],[118,222,64,6.082154750823975],[118,222,65,6.091849327087402],[118,222,66,6.09231424331665],[118,222,67,6.0850958824157715],[118,222,68,6.0764875411987305],[118,222,69,6.071643829345703],[118,222,70,6.072127819061279],[118,222,71,6.076297283172607],[118,222,72,6.087140083312988],[118,222,73,6.107732772827148],[118,222,74,6.131562232971191],[118,222,75,6.152235507965088],[118,222,76,6.1686506271362305],[118,222,77,6.180459976196289],[118,222,78,6.183925628662109],[118,222,79,6.180508613586426],[118,223,64,6.082154750823975],[118,223,65,6.091849327087402],[118,223,66,6.09231424331665],[118,223,67,6.0850958824157715],[118,223,68,6.0764875411987305],[118,223,69,6.071643829345703],[118,223,70,6.072127819061279],[118,223,71,6.076297283172607],[118,223,72,6.087140083312988],[118,223,73,6.107732772827148],[118,223,74,6.131562232971191],[118,223,75,6.152235507965088],[118,223,76,6.1686506271362305],[118,223,77,6.180459976196289],[118,223,78,6.183925628662109],[118,223,79,6.180508613586426],[118,224,64,6.082154750823975],[118,224,65,6.091849327087402],[118,224,66,6.09231424331665],[118,224,67,6.0850958824157715],[118,224,68,6.0764875411987305],[118,224,69,6.071643829345703],[118,224,70,6.072127819061279],[118,224,71,6.076297283172607],[118,224,72,6.087140083312988],[118,224,73,6.107732772827148],[118,224,74,6.131562232971191],[118,224,75,6.152235507965088],[118,224,76,6.1686506271362305],[118,224,77,6.180459976196289],[118,224,78,6.183925628662109],[118,224,79,6.180508613586426],[118,225,64,6.082154750823975],[118,225,65,6.091849327087402],[118,225,66,6.09231424331665],[118,225,67,6.0850958824157715],[118,225,68,6.0764875411987305],[118,225,69,6.071643829345703],[118,225,70,6.072127819061279],[118,225,71,6.076297283172607],[118,225,72,6.087140083312988],[118,225,73,6.107732772827148],[118,225,74,6.131562232971191],[118,225,75,6.152235507965088],[118,225,76,6.1686506271362305],[118,225,77,6.180459976196289],[118,225,78,6.183925628662109],[118,225,79,6.180508613586426],[118,226,64,6.082154750823975],[118,226,65,6.091849327087402],[118,226,66,6.09231424331665],[118,226,67,6.0850958824157715],[118,226,68,6.0764875411987305],[118,226,69,6.071643829345703],[118,226,70,6.072127819061279],[118,226,71,6.076297283172607],[118,226,72,6.087140083312988],[118,226,73,6.107732772827148],[118,226,74,6.131562232971191],[118,226,75,6.152235507965088],[118,226,76,6.1686506271362305],[118,226,77,6.180459976196289],[118,226,78,6.183925628662109],[118,226,79,6.180508613586426],[118,227,64,6.082154750823975],[118,227,65,6.091849327087402],[118,227,66,6.09231424331665],[118,227,67,6.0850958824157715],[118,227,68,6.0764875411987305],[118,227,69,6.071643829345703],[118,227,70,6.072127819061279],[118,227,71,6.076297283172607],[118,227,72,6.087140083312988],[118,227,73,6.107732772827148],[118,227,74,6.131562232971191],[118,227,75,6.152235507965088],[118,227,76,6.1686506271362305],[118,227,77,6.180459976196289],[118,227,78,6.183925628662109],[118,227,79,6.180508613586426],[118,228,64,6.082154750823975],[118,228,65,6.091849327087402],[118,228,66,6.09231424331665],[118,228,67,6.0850958824157715],[118,228,68,6.0764875411987305],[118,228,69,6.071643829345703],[118,228,70,6.072127819061279],[118,228,71,6.076297283172607],[118,228,72,6.087140083312988],[118,228,73,6.107732772827148],[118,228,74,6.131562232971191],[118,228,75,6.152235507965088],[118,228,76,6.1686506271362305],[118,228,77,6.180459976196289],[118,228,78,6.183925628662109],[118,228,79,6.180508613586426],[118,229,64,6.082154750823975],[118,229,65,6.091849327087402],[118,229,66,6.09231424331665],[118,229,67,6.0850958824157715],[118,229,68,6.0764875411987305],[118,229,69,6.071643829345703],[118,229,70,6.072127819061279],[118,229,71,6.076297283172607],[118,229,72,6.087140083312988],[118,229,73,6.107732772827148],[118,229,74,6.131562232971191],[118,229,75,6.152235507965088],[118,229,76,6.1686506271362305],[118,229,77,6.180459976196289],[118,229,78,6.183925628662109],[118,229,79,6.180508613586426],[118,230,64,6.082154750823975],[118,230,65,6.091849327087402],[118,230,66,6.09231424331665],[118,230,67,6.0850958824157715],[118,230,68,6.0764875411987305],[118,230,69,6.071643829345703],[118,230,70,6.072127819061279],[118,230,71,6.076297283172607],[118,230,72,6.087140083312988],[118,230,73,6.107732772827148],[118,230,74,6.131562232971191],[118,230,75,6.152235507965088],[118,230,76,6.1686506271362305],[118,230,77,6.180459976196289],[118,230,78,6.183925628662109],[118,230,79,6.180508613586426],[118,231,64,6.082154750823975],[118,231,65,6.091849327087402],[118,231,66,6.09231424331665],[118,231,67,6.0850958824157715],[118,231,68,6.0764875411987305],[118,231,69,6.071643829345703],[118,231,70,6.072127819061279],[118,231,71,6.076297283172607],[118,231,72,6.087140083312988],[118,231,73,6.107732772827148],[118,231,74,6.131562232971191],[118,231,75,6.152235507965088],[118,231,76,6.1686506271362305],[118,231,77,6.180459976196289],[118,231,78,6.183925628662109],[118,231,79,6.180508613586426],[118,232,64,6.082154750823975],[118,232,65,6.091849327087402],[118,232,66,6.09231424331665],[118,232,67,6.0850958824157715],[118,232,68,6.0764875411987305],[118,232,69,6.071643829345703],[118,232,70,6.072127819061279],[118,232,71,6.076297283172607],[118,232,72,6.087140083312988],[118,232,73,6.107732772827148],[118,232,74,6.131562232971191],[118,232,75,6.152235507965088],[118,232,76,6.1686506271362305],[118,232,77,6.180459976196289],[118,232,78,6.183925628662109],[118,232,79,6.180508613586426],[118,233,64,6.082154750823975],[118,233,65,6.091849327087402],[118,233,66,6.09231424331665],[118,233,67,6.0850958824157715],[118,233,68,6.0764875411987305],[118,233,69,6.071643829345703],[118,233,70,6.072127819061279],[118,233,71,6.076297283172607],[118,233,72,6.087140083312988],[118,233,73,6.107732772827148],[118,233,74,6.131562232971191],[118,233,75,6.152235507965088],[118,233,76,6.1686506271362305],[118,233,77,6.180459976196289],[118,233,78,6.183925628662109],[118,233,79,6.180508613586426],[118,234,64,6.082154750823975],[118,234,65,6.091849327087402],[118,234,66,6.09231424331665],[118,234,67,6.0850958824157715],[118,234,68,6.0764875411987305],[118,234,69,6.071643829345703],[118,234,70,6.072127819061279],[118,234,71,6.076297283172607],[118,234,72,6.087140083312988],[118,234,73,6.107732772827148],[118,234,74,6.131562232971191],[118,234,75,6.152235507965088],[118,234,76,6.1686506271362305],[118,234,77,6.180459976196289],[118,234,78,6.183925628662109],[118,234,79,6.180508613586426],[118,235,64,6.082154750823975],[118,235,65,6.091849327087402],[118,235,66,6.09231424331665],[118,235,67,6.0850958824157715],[118,235,68,6.0764875411987305],[118,235,69,6.071643829345703],[118,235,70,6.072127819061279],[118,235,71,6.076297283172607],[118,235,72,6.087140083312988],[118,235,73,6.107732772827148],[118,235,74,6.131562232971191],[118,235,75,6.152235507965088],[118,235,76,6.1686506271362305],[118,235,77,6.180459976196289],[118,235,78,6.183925628662109],[118,235,79,6.180508613586426],[118,236,64,6.082154750823975],[118,236,65,6.091849327087402],[118,236,66,6.09231424331665],[118,236,67,6.0850958824157715],[118,236,68,6.0764875411987305],[118,236,69,6.071643829345703],[118,236,70,6.072127819061279],[118,236,71,6.076297283172607],[118,236,72,6.087140083312988],[118,236,73,6.107732772827148],[118,236,74,6.131562232971191],[118,236,75,6.152235507965088],[118,236,76,6.1686506271362305],[118,236,77,6.180459976196289],[118,236,78,6.183925628662109],[118,236,79,6.180508613586426],[118,237,64,6.082154750823975],[118,237,65,6.091849327087402],[118,237,66,6.09231424331665],[118,237,67,6.0850958824157715],[118,237,68,6.0764875411987305],[118,237,69,6.071643829345703],[118,237,70,6.072127819061279],[118,237,71,6.076297283172607],[118,237,72,6.087140083312988],[118,237,73,6.107732772827148],[118,237,74,6.131562232971191],[118,237,75,6.152235507965088],[118,237,76,6.1686506271362305],[118,237,77,6.180459976196289],[118,237,78,6.183925628662109],[118,237,79,6.180508613586426],[118,238,64,6.082154750823975],[118,238,65,6.091849327087402],[118,238,66,6.09231424331665],[118,238,67,6.0850958824157715],[118,238,68,6.0764875411987305],[118,238,69,6.071643829345703],[118,238,70,6.072127819061279],[118,238,71,6.076297283172607],[118,238,72,6.087140083312988],[118,238,73,6.107732772827148],[118,238,74,6.131562232971191],[118,238,75,6.152235507965088],[118,238,76,6.1686506271362305],[118,238,77,6.180459976196289],[118,238,78,6.183925628662109],[118,238,79,6.180508613586426],[118,239,64,6.082154750823975],[118,239,65,6.091849327087402],[118,239,66,6.09231424331665],[118,239,67,6.0850958824157715],[118,239,68,6.0764875411987305],[118,239,69,6.071643829345703],[118,239,70,6.072127819061279],[118,239,71,6.076297283172607],[118,239,72,6.087140083312988],[118,239,73,6.107732772827148],[118,239,74,6.131562232971191],[118,239,75,6.152235507965088],[118,239,76,6.1686506271362305],[118,239,77,6.180459976196289],[118,239,78,6.183925628662109],[118,239,79,6.180508613586426],[118,240,64,6.082154750823975],[118,240,65,6.091849327087402],[118,240,66,6.09231424331665],[118,240,67,6.0850958824157715],[118,240,68,6.0764875411987305],[118,240,69,6.071643829345703],[118,240,70,6.072127819061279],[118,240,71,6.076297283172607],[118,240,72,6.087140083312988],[118,240,73,6.107732772827148],[118,240,74,6.131562232971191],[118,240,75,6.152235507965088],[118,240,76,6.1686506271362305],[118,240,77,6.180459976196289],[118,240,78,6.183925628662109],[118,240,79,6.180508613586426],[118,241,64,6.082154750823975],[118,241,65,6.091849327087402],[118,241,66,6.09231424331665],[118,241,67,6.0850958824157715],[118,241,68,6.0764875411987305],[118,241,69,6.071643829345703],[118,241,70,6.072127819061279],[118,241,71,6.076297283172607],[118,241,72,6.087140083312988],[118,241,73,6.107732772827148],[118,241,74,6.131562232971191],[118,241,75,6.152235507965088],[118,241,76,6.1686506271362305],[118,241,77,6.180459976196289],[118,241,78,6.183925628662109],[118,241,79,6.180508613586426],[118,242,64,6.082154750823975],[118,242,65,6.091849327087402],[118,242,66,6.09231424331665],[118,242,67,6.0850958824157715],[118,242,68,6.0764875411987305],[118,242,69,6.071643829345703],[118,242,70,6.072127819061279],[118,242,71,6.076297283172607],[118,242,72,6.087140083312988],[118,242,73,6.107732772827148],[118,242,74,6.131562232971191],[118,242,75,6.152235507965088],[118,242,76,6.1686506271362305],[118,242,77,6.180459976196289],[118,242,78,6.183925628662109],[118,242,79,6.180508613586426],[118,243,64,6.082154750823975],[118,243,65,6.091849327087402],[118,243,66,6.09231424331665],[118,243,67,6.0850958824157715],[118,243,68,6.0764875411987305],[118,243,69,6.071643829345703],[118,243,70,6.072127819061279],[118,243,71,6.076297283172607],[118,243,72,6.087140083312988],[118,243,73,6.107732772827148],[118,243,74,6.131562232971191],[118,243,75,6.152235507965088],[118,243,76,6.1686506271362305],[118,243,77,6.180459976196289],[118,243,78,6.183925628662109],[118,243,79,6.180508613586426],[118,244,64,6.082154750823975],[118,244,65,6.091849327087402],[118,244,66,6.09231424331665],[118,244,67,6.0850958824157715],[118,244,68,6.0764875411987305],[118,244,69,6.071643829345703],[118,244,70,6.072127819061279],[118,244,71,6.076297283172607],[118,244,72,6.087140083312988],[118,244,73,6.107732772827148],[118,244,74,6.131562232971191],[118,244,75,6.152235507965088],[118,244,76,6.1686506271362305],[118,244,77,6.180459976196289],[118,244,78,6.183925628662109],[118,244,79,6.180508613586426],[118,245,64,6.082154750823975],[118,245,65,6.091849327087402],[118,245,66,6.09231424331665],[118,245,67,6.0850958824157715],[118,245,68,6.0764875411987305],[118,245,69,6.071643829345703],[118,245,70,6.072127819061279],[118,245,71,6.076297283172607],[118,245,72,6.087140083312988],[118,245,73,6.107732772827148],[118,245,74,6.131562232971191],[118,245,75,6.152235507965088],[118,245,76,6.1686506271362305],[118,245,77,6.180459976196289],[118,245,78,6.183925628662109],[118,245,79,6.180508613586426],[118,246,64,6.082154750823975],[118,246,65,6.091849327087402],[118,246,66,6.09231424331665],[118,246,67,6.0850958824157715],[118,246,68,6.0764875411987305],[118,246,69,6.071643829345703],[118,246,70,6.072127819061279],[118,246,71,6.076297283172607],[118,246,72,6.087140083312988],[118,246,73,6.107732772827148],[118,246,74,6.131562232971191],[118,246,75,6.152235507965088],[118,246,76,6.1686506271362305],[118,246,77,6.180459976196289],[118,246,78,6.183925628662109],[118,246,79,6.180508613586426],[118,247,64,6.082154750823975],[118,247,65,6.091849327087402],[118,247,66,6.09231424331665],[118,247,67,6.0850958824157715],[118,247,68,6.0764875411987305],[118,247,69,6.071643829345703],[118,247,70,6.072127819061279],[118,247,71,6.076297283172607],[118,247,72,6.087140083312988],[118,247,73,6.107732772827148],[118,247,74,6.131562232971191],[118,247,75,6.152235507965088],[118,247,76,6.1686506271362305],[118,247,77,6.180459976196289],[118,247,78,6.183925628662109],[118,247,79,6.180508613586426],[118,248,64,6.082154750823975],[118,248,65,6.091849327087402],[118,248,66,6.09231424331665],[118,248,67,6.0850958824157715],[118,248,68,6.0764875411987305],[118,248,69,6.071643829345703],[118,248,70,6.072127819061279],[118,248,71,6.076297283172607],[118,248,72,6.087140083312988],[118,248,73,6.107732772827148],[118,248,74,6.131562232971191],[118,248,75,6.152235507965088],[118,248,76,6.1686506271362305],[118,248,77,6.180459976196289],[118,248,78,6.183925628662109],[118,248,79,6.180508613586426],[118,249,64,6.082154750823975],[118,249,65,6.091849327087402],[118,249,66,6.09231424331665],[118,249,67,6.0850958824157715],[118,249,68,6.0764875411987305],[118,249,69,6.071643829345703],[118,249,70,6.072127819061279],[118,249,71,6.076297283172607],[118,249,72,6.087140083312988],[118,249,73,6.107732772827148],[118,249,74,6.131562232971191],[118,249,75,6.152235507965088],[118,249,76,6.1686506271362305],[118,249,77,6.180459976196289],[118,249,78,6.183925628662109],[118,249,79,6.180508613586426],[118,250,64,6.082154750823975],[118,250,65,6.091849327087402],[118,250,66,6.09231424331665],[118,250,67,6.0850958824157715],[118,250,68,6.0764875411987305],[118,250,69,6.071643829345703],[118,250,70,6.072127819061279],[118,250,71,6.076297283172607],[118,250,72,6.087140083312988],[118,250,73,6.107732772827148],[118,250,74,6.131562232971191],[118,250,75,6.152235507965088],[118,250,76,6.1686506271362305],[118,250,77,6.180459976196289],[118,250,78,6.183925628662109],[118,250,79,6.180508613586426],[118,251,64,6.082154750823975],[118,251,65,6.091849327087402],[118,251,66,6.09231424331665],[118,251,67,6.0850958824157715],[118,251,68,6.0764875411987305],[118,251,69,6.071643829345703],[118,251,70,6.072127819061279],[118,251,71,6.076297283172607],[118,251,72,6.087140083312988],[118,251,73,6.107732772827148],[118,251,74,6.131562232971191],[118,251,75,6.152235507965088],[118,251,76,6.1686506271362305],[118,251,77,6.180459976196289],[118,251,78,6.183925628662109],[118,251,79,6.180508613586426],[118,252,64,6.082154750823975],[118,252,65,6.091849327087402],[118,252,66,6.09231424331665],[118,252,67,6.0850958824157715],[118,252,68,6.0764875411987305],[118,252,69,6.071643829345703],[118,252,70,6.072127819061279],[118,252,71,6.076297283172607],[118,252,72,6.087140083312988],[118,252,73,6.107732772827148],[118,252,74,6.131562232971191],[118,252,75,6.152235507965088],[118,252,76,6.1686506271362305],[118,252,77,6.180459976196289],[118,252,78,6.183925628662109],[118,252,79,6.180508613586426],[118,253,64,6.082154750823975],[118,253,65,6.091849327087402],[118,253,66,6.09231424331665],[118,253,67,6.0850958824157715],[118,253,68,6.0764875411987305],[118,253,69,6.071643829345703],[118,253,70,6.072127819061279],[118,253,71,6.076297283172607],[118,253,72,6.087140083312988],[118,253,73,6.107732772827148],[118,253,74,6.131562232971191],[118,253,75,6.152235507965088],[118,253,76,6.1686506271362305],[118,253,77,6.180459976196289],[118,253,78,6.183925628662109],[118,253,79,6.180508613586426],[118,254,64,6.082154750823975],[118,254,65,6.091849327087402],[118,254,66,6.09231424331665],[118,254,67,6.0850958824157715],[118,254,68,6.0764875411987305],[118,254,69,6.071643829345703],[118,254,70,6.072127819061279],[118,254,71,6.076297283172607],[118,254,72,6.087140083312988],[118,254,73,6.107732772827148],[118,254,74,6.131562232971191],[118,254,75,6.152235507965088],[118,254,76,6.1686506271362305],[118,254,77,6.180459976196289],[118,254,78,6.183925628662109],[118,254,79,6.180508613586426],[118,255,64,6.082154750823975],[118,255,65,6.091849327087402],[118,255,66,6.09231424331665],[118,255,67,6.0850958824157715],[118,255,68,6.0764875411987305],[118,255,69,6.071643829345703],[118,255,70,6.072127819061279],[118,255,71,6.076297283172607],[118,255,72,6.087140083312988],[118,255,73,6.107732772827148],[118,255,74,6.131562232971191],[118,255,75,6.152235507965088],[118,255,76,6.1686506271362305],[118,255,77,6.180459976196289],[118,255,78,6.183925628662109],[118,255,79,6.180508613586426],[118,256,64,6.082154750823975],[118,256,65,6.091849327087402],[118,256,66,6.09231424331665],[118,256,67,6.0850958824157715],[118,256,68,6.0764875411987305],[118,256,69,6.071643829345703],[118,256,70,6.072127819061279],[118,256,71,6.076297283172607],[118,256,72,6.087140083312988],[118,256,73,6.107732772827148],[118,256,74,6.131562232971191],[118,256,75,6.152235507965088],[118,256,76,6.1686506271362305],[118,256,77,6.180459976196289],[118,256,78,6.183925628662109],[118,256,79,6.180508613586426],[118,257,64,6.082154750823975],[118,257,65,6.091849327087402],[118,257,66,6.09231424331665],[118,257,67,6.0850958824157715],[118,257,68,6.0764875411987305],[118,257,69,6.071643829345703],[118,257,70,6.072127819061279],[118,257,71,6.076297283172607],[118,257,72,6.087140083312988],[118,257,73,6.107732772827148],[118,257,74,6.131562232971191],[118,257,75,6.152235507965088],[118,257,76,6.1686506271362305],[118,257,77,6.180459976196289],[118,257,78,6.183925628662109],[118,257,79,6.180508613586426],[118,258,64,6.082154750823975],[118,258,65,6.091849327087402],[118,258,66,6.09231424331665],[118,258,67,6.0850958824157715],[118,258,68,6.0764875411987305],[118,258,69,6.071643829345703],[118,258,70,6.072127819061279],[118,258,71,6.076297283172607],[118,258,72,6.087140083312988],[118,258,73,6.107732772827148],[118,258,74,6.131562232971191],[118,258,75,6.152235507965088],[118,258,76,6.1686506271362305],[118,258,77,6.180459976196289],[118,258,78,6.183925628662109],[118,258,79,6.180508613586426],[118,259,64,6.082154750823975],[118,259,65,6.091849327087402],[118,259,66,6.09231424331665],[118,259,67,6.0850958824157715],[118,259,68,6.0764875411987305],[118,259,69,6.071643829345703],[118,259,70,6.072127819061279],[118,259,71,6.076297283172607],[118,259,72,6.087140083312988],[118,259,73,6.107732772827148],[118,259,74,6.131562232971191],[118,259,75,6.152235507965088],[118,259,76,6.1686506271362305],[118,259,77,6.180459976196289],[118,259,78,6.183925628662109],[118,259,79,6.180508613586426],[118,260,64,6.082154750823975],[118,260,65,6.091849327087402],[118,260,66,6.09231424331665],[118,260,67,6.0850958824157715],[118,260,68,6.0764875411987305],[118,260,69,6.071643829345703],[118,260,70,6.072127819061279],[118,260,71,6.076297283172607],[118,260,72,6.087140083312988],[118,260,73,6.107732772827148],[118,260,74,6.131562232971191],[118,260,75,6.152235507965088],[118,260,76,6.1686506271362305],[118,260,77,6.180459976196289],[118,260,78,6.183925628662109],[118,260,79,6.180508613586426],[118,261,64,6.082154750823975],[118,261,65,6.091849327087402],[118,261,66,6.09231424331665],[118,261,67,6.0850958824157715],[118,261,68,6.0764875411987305],[118,261,69,6.071643829345703],[118,261,70,6.072127819061279],[118,261,71,6.076297283172607],[118,261,72,6.087140083312988],[118,261,73,6.107732772827148],[118,261,74,6.131562232971191],[118,261,75,6.152235507965088],[118,261,76,6.1686506271362305],[118,261,77,6.180459976196289],[118,261,78,6.183925628662109],[118,261,79,6.180508613586426],[118,262,64,6.082154750823975],[118,262,65,6.091849327087402],[118,262,66,6.09231424331665],[118,262,67,6.0850958824157715],[118,262,68,6.0764875411987305],[118,262,69,6.071643829345703],[118,262,70,6.072127819061279],[118,262,71,6.076297283172607],[118,262,72,6.087140083312988],[118,262,73,6.107732772827148],[118,262,74,6.131562232971191],[118,262,75,6.152235507965088],[118,262,76,6.1686506271362305],[118,262,77,6.180459976196289],[118,262,78,6.183925628662109],[118,262,79,6.180508613586426],[118,263,64,6.082154750823975],[118,263,65,6.091849327087402],[118,263,66,6.09231424331665],[118,263,67,6.0850958824157715],[118,263,68,6.0764875411987305],[118,263,69,6.071643829345703],[118,263,70,6.072127819061279],[118,263,71,6.076297283172607],[118,263,72,6.087140083312988],[118,263,73,6.107732772827148],[118,263,74,6.131562232971191],[118,263,75,6.152235507965088],[118,263,76,6.1686506271362305],[118,263,77,6.180459976196289],[118,263,78,6.183925628662109],[118,263,79,6.180508613586426],[118,264,64,6.082154750823975],[118,264,65,6.091849327087402],[118,264,66,6.09231424331665],[118,264,67,6.0850958824157715],[118,264,68,6.0764875411987305],[118,264,69,6.071643829345703],[118,264,70,6.072127819061279],[118,264,71,6.076297283172607],[118,264,72,6.087140083312988],[118,264,73,6.107732772827148],[118,264,74,6.131562232971191],[118,264,75,6.152235507965088],[118,264,76,6.1686506271362305],[118,264,77,6.180459976196289],[118,264,78,6.183925628662109],[118,264,79,6.180508613586426],[118,265,64,6.082154750823975],[118,265,65,6.091849327087402],[118,265,66,6.09231424331665],[118,265,67,6.0850958824157715],[118,265,68,6.0764875411987305],[118,265,69,6.071643829345703],[118,265,70,6.072127819061279],[118,265,71,6.076297283172607],[118,265,72,6.087140083312988],[118,265,73,6.107732772827148],[118,265,74,6.131562232971191],[118,265,75,6.152235507965088],[118,265,76,6.1686506271362305],[118,265,77,6.180459976196289],[118,265,78,6.183925628662109],[118,265,79,6.180508613586426],[118,266,64,6.082154750823975],[118,266,65,6.091849327087402],[118,266,66,6.09231424331665],[118,266,67,6.0850958824157715],[118,266,68,6.0764875411987305],[118,266,69,6.071643829345703],[118,266,70,6.072127819061279],[118,266,71,6.076297283172607],[118,266,72,6.087140083312988],[118,266,73,6.107732772827148],[118,266,74,6.131562232971191],[118,266,75,6.152235507965088],[118,266,76,6.1686506271362305],[118,266,77,6.180459976196289],[118,266,78,6.183925628662109],[118,266,79,6.180508613586426],[118,267,64,6.082154750823975],[118,267,65,6.091849327087402],[118,267,66,6.09231424331665],[118,267,67,6.0850958824157715],[118,267,68,6.0764875411987305],[118,267,69,6.071643829345703],[118,267,70,6.072127819061279],[118,267,71,6.076297283172607],[118,267,72,6.087140083312988],[118,267,73,6.107732772827148],[118,267,74,6.131562232971191],[118,267,75,6.152235507965088],[118,267,76,6.1686506271362305],[118,267,77,6.180459976196289],[118,267,78,6.183925628662109],[118,267,79,6.180508613586426],[118,268,64,6.082154750823975],[118,268,65,6.091849327087402],[118,268,66,6.09231424331665],[118,268,67,6.0850958824157715],[118,268,68,6.0764875411987305],[118,268,69,6.071643829345703],[118,268,70,6.072127819061279],[118,268,71,6.076297283172607],[118,268,72,6.087140083312988],[118,268,73,6.107732772827148],[118,268,74,6.131562232971191],[118,268,75,6.152235507965088],[118,268,76,6.1686506271362305],[118,268,77,6.180459976196289],[118,268,78,6.183925628662109],[118,268,79,6.180508613586426],[118,269,64,6.082154750823975],[118,269,65,6.091849327087402],[118,269,66,6.09231424331665],[118,269,67,6.0850958824157715],[118,269,68,6.0764875411987305],[118,269,69,6.071643829345703],[118,269,70,6.072127819061279],[118,269,71,6.076297283172607],[118,269,72,6.087140083312988],[118,269,73,6.107732772827148],[118,269,74,6.131562232971191],[118,269,75,6.152235507965088],[118,269,76,6.1686506271362305],[118,269,77,6.180459976196289],[118,269,78,6.183925628662109],[118,269,79,6.180508613586426],[118,270,64,6.082154750823975],[118,270,65,6.091849327087402],[118,270,66,6.09231424331665],[118,270,67,6.0850958824157715],[118,270,68,6.0764875411987305],[118,270,69,6.071643829345703],[118,270,70,6.072127819061279],[118,270,71,6.076297283172607],[118,270,72,6.087140083312988],[118,270,73,6.107732772827148],[118,270,74,6.131562232971191],[118,270,75,6.152235507965088],[118,270,76,6.1686506271362305],[118,270,77,6.180459976196289],[118,270,78,6.183925628662109],[118,270,79,6.180508613586426],[118,271,64,6.082154750823975],[118,271,65,6.091849327087402],[118,271,66,6.09231424331665],[118,271,67,6.0850958824157715],[118,271,68,6.0764875411987305],[118,271,69,6.071643829345703],[118,271,70,6.072127819061279],[118,271,71,6.076297283172607],[118,271,72,6.087140083312988],[118,271,73,6.107732772827148],[118,271,74,6.131562232971191],[118,271,75,6.152235507965088],[118,271,76,6.1686506271362305],[118,271,77,6.180459976196289],[118,271,78,6.183925628662109],[118,271,79,6.180508613586426],[118,272,64,6.082154750823975],[118,272,65,6.091849327087402],[118,272,66,6.09231424331665],[118,272,67,6.0850958824157715],[118,272,68,6.0764875411987305],[118,272,69,6.071643829345703],[118,272,70,6.072127819061279],[118,272,71,6.076297283172607],[118,272,72,6.087140083312988],[118,272,73,6.107732772827148],[118,272,74,6.131562232971191],[118,272,75,6.152235507965088],[118,272,76,6.1686506271362305],[118,272,77,6.180459976196289],[118,272,78,6.183925628662109],[118,272,79,6.180508613586426],[118,273,64,6.082154750823975],[118,273,65,6.091849327087402],[118,273,66,6.09231424331665],[118,273,67,6.0850958824157715],[118,273,68,6.0764875411987305],[118,273,69,6.071643829345703],[118,273,70,6.072127819061279],[118,273,71,6.076297283172607],[118,273,72,6.087140083312988],[118,273,73,6.107732772827148],[118,273,74,6.131562232971191],[118,273,75,6.152235507965088],[118,273,76,6.1686506271362305],[118,273,77,6.180459976196289],[118,273,78,6.183925628662109],[118,273,79,6.180508613586426],[118,274,64,6.082154750823975],[118,274,65,6.091849327087402],[118,274,66,6.09231424331665],[118,274,67,6.0850958824157715],[118,274,68,6.0764875411987305],[118,274,69,6.071643829345703],[118,274,70,6.072127819061279],[118,274,71,6.076297283172607],[118,274,72,6.087140083312988],[118,274,73,6.107732772827148],[118,274,74,6.131562232971191],[118,274,75,6.152235507965088],[118,274,76,6.1686506271362305],[118,274,77,6.180459976196289],[118,274,78,6.183925628662109],[118,274,79,6.180508613586426],[118,275,64,6.082154750823975],[118,275,65,6.091849327087402],[118,275,66,6.09231424331665],[118,275,67,6.0850958824157715],[118,275,68,6.0764875411987305],[118,275,69,6.071643829345703],[118,275,70,6.072127819061279],[118,275,71,6.076297283172607],[118,275,72,6.087140083312988],[118,275,73,6.107732772827148],[118,275,74,6.131562232971191],[118,275,75,6.152235507965088],[118,275,76,6.1686506271362305],[118,275,77,6.180459976196289],[118,275,78,6.183925628662109],[118,275,79,6.180508613586426],[118,276,64,6.082154750823975],[118,276,65,6.091849327087402],[118,276,66,6.09231424331665],[118,276,67,6.0850958824157715],[118,276,68,6.0764875411987305],[118,276,69,6.071643829345703],[118,276,70,6.072127819061279],[118,276,71,6.076297283172607],[118,276,72,6.087140083312988],[118,276,73,6.107732772827148],[118,276,74,6.131562232971191],[118,276,75,6.152235507965088],[118,276,76,6.1686506271362305],[118,276,77,6.180459976196289],[118,276,78,6.183925628662109],[118,276,79,6.180508613586426],[118,277,64,6.082154750823975],[118,277,65,6.091849327087402],[118,277,66,6.09231424331665],[118,277,67,6.0850958824157715],[118,277,68,6.0764875411987305],[118,277,69,6.071643829345703],[118,277,70,6.072127819061279],[118,277,71,6.076297283172607],[118,277,72,6.087140083312988],[118,277,73,6.107732772827148],[118,277,74,6.131562232971191],[118,277,75,6.152235507965088],[118,277,76,6.1686506271362305],[118,277,77,6.180459976196289],[118,277,78,6.183925628662109],[118,277,79,6.180508613586426],[118,278,64,6.082154750823975],[118,278,65,6.091849327087402],[118,278,66,6.09231424331665],[118,278,67,6.0850958824157715],[118,278,68,6.0764875411987305],[118,278,69,6.071643829345703],[118,278,70,6.072127819061279],[118,278,71,6.076297283172607],[118,278,72,6.087140083312988],[118,278,73,6.107732772827148],[118,278,74,6.131562232971191],[118,278,75,6.152235507965088],[118,278,76,6.1686506271362305],[118,278,77,6.180459976196289],[118,278,78,6.183925628662109],[118,278,79,6.180508613586426],[118,279,64,6.082154750823975],[118,279,65,6.091849327087402],[118,279,66,6.09231424331665],[118,279,67,6.0850958824157715],[118,279,68,6.0764875411987305],[118,279,69,6.071643829345703],[118,279,70,6.072127819061279],[118,279,71,6.076297283172607],[118,279,72,6.087140083312988],[118,279,73,6.107732772827148],[118,279,74,6.131562232971191],[118,279,75,6.152235507965088],[118,279,76,6.1686506271362305],[118,279,77,6.180459976196289],[118,279,78,6.183925628662109],[118,279,79,6.180508613586426],[118,280,64,6.082154750823975],[118,280,65,6.091849327087402],[118,280,66,6.09231424331665],[118,280,67,6.0850958824157715],[118,280,68,6.0764875411987305],[118,280,69,6.071643829345703],[118,280,70,6.072127819061279],[118,280,71,6.076297283172607],[118,280,72,6.087140083312988],[118,280,73,6.107732772827148],[118,280,74,6.131562232971191],[118,280,75,6.152235507965088],[118,280,76,6.1686506271362305],[118,280,77,6.180459976196289],[118,280,78,6.183925628662109],[118,280,79,6.180508613586426],[118,281,64,6.082154750823975],[118,281,65,6.091849327087402],[118,281,66,6.09231424331665],[118,281,67,6.0850958824157715],[118,281,68,6.0764875411987305],[118,281,69,6.071643829345703],[118,281,70,6.072127819061279],[118,281,71,6.076297283172607],[118,281,72,6.087140083312988],[118,281,73,6.107732772827148],[118,281,74,6.131562232971191],[118,281,75,6.152235507965088],[118,281,76,6.1686506271362305],[118,281,77,6.180459976196289],[118,281,78,6.183925628662109],[118,281,79,6.180508613586426],[118,282,64,6.082154750823975],[118,282,65,6.091849327087402],[118,282,66,6.09231424331665],[118,282,67,6.0850958824157715],[118,282,68,6.0764875411987305],[118,282,69,6.071643829345703],[118,282,70,6.072127819061279],[118,282,71,6.076297283172607],[118,282,72,6.087140083312988],[118,282,73,6.107732772827148],[118,282,74,6.131562232971191],[118,282,75,6.152235507965088],[118,282,76,6.1686506271362305],[118,282,77,6.180459976196289],[118,282,78,6.183925628662109],[118,282,79,6.180508613586426],[118,283,64,6.082154750823975],[118,283,65,6.091849327087402],[118,283,66,6.09231424331665],[118,283,67,6.0850958824157715],[118,283,68,6.0764875411987305],[118,283,69,6.071643829345703],[118,283,70,6.072127819061279],[118,283,71,6.076297283172607],[118,283,72,6.087140083312988],[118,283,73,6.107732772827148],[118,283,74,6.131562232971191],[118,283,75,6.152235507965088],[118,283,76,6.1686506271362305],[118,283,77,6.180459976196289],[118,283,78,6.183925628662109],[118,283,79,6.180508613586426],[118,284,64,6.082154750823975],[118,284,65,6.091849327087402],[118,284,66,6.09231424331665],[118,284,67,6.0850958824157715],[118,284,68,6.0764875411987305],[118,284,69,6.071643829345703],[118,284,70,6.072127819061279],[118,284,71,6.076297283172607],[118,284,72,6.087140083312988],[118,284,73,6.107732772827148],[118,284,74,6.131562232971191],[118,284,75,6.152235507965088],[118,284,76,6.1686506271362305],[118,284,77,6.180459976196289],[118,284,78,6.183925628662109],[118,284,79,6.180508613586426],[118,285,64,6.082154750823975],[118,285,65,6.091849327087402],[118,285,66,6.09231424331665],[118,285,67,6.0850958824157715],[118,285,68,6.0764875411987305],[118,285,69,6.071643829345703],[118,285,70,6.072127819061279],[118,285,71,6.076297283172607],[118,285,72,6.087140083312988],[118,285,73,6.107732772827148],[118,285,74,6.131562232971191],[118,285,75,6.152235507965088],[118,285,76,6.1686506271362305],[118,285,77,6.180459976196289],[118,285,78,6.183925628662109],[118,285,79,6.180508613586426],[118,286,64,6.082154750823975],[118,286,65,6.091849327087402],[118,286,66,6.09231424331665],[118,286,67,6.0850958824157715],[118,286,68,6.0764875411987305],[118,286,69,6.071643829345703],[118,286,70,6.072127819061279],[118,286,71,6.076297283172607],[118,286,72,6.087140083312988],[118,286,73,6.107732772827148],[118,286,74,6.131562232971191],[118,286,75,6.152235507965088],[118,286,76,6.1686506271362305],[118,286,77,6.180459976196289],[118,286,78,6.183925628662109],[118,286,79,6.180508613586426],[118,287,64,6.082154750823975],[118,287,65,6.091849327087402],[118,287,66,6.09231424331665],[118,287,67,6.0850958824157715],[118,287,68,6.0764875411987305],[118,287,69,6.071643829345703],[118,287,70,6.072127819061279],[118,287,71,6.076297283172607],[118,287,72,6.087140083312988],[118,287,73,6.107732772827148],[118,287,74,6.131562232971191],[118,287,75,6.152235507965088],[118,287,76,6.1686506271362305],[118,287,77,6.180459976196289],[118,287,78,6.183925628662109],[118,287,79,6.180508613586426],[118,288,64,6.082154750823975],[118,288,65,6.091849327087402],[118,288,66,6.09231424331665],[118,288,67,6.0850958824157715],[118,288,68,6.0764875411987305],[118,288,69,6.071643829345703],[118,288,70,6.072127819061279],[118,288,71,6.076297283172607],[118,288,72,6.087140083312988],[118,288,73,6.107732772827148],[118,288,74,6.131562232971191],[118,288,75,6.152235507965088],[118,288,76,6.1686506271362305],[118,288,77,6.180459976196289],[118,288,78,6.183925628662109],[118,288,79,6.180508613586426],[118,289,64,6.082154750823975],[118,289,65,6.091849327087402],[118,289,66,6.09231424331665],[118,289,67,6.0850958824157715],[118,289,68,6.0764875411987305],[118,289,69,6.071643829345703],[118,289,70,6.072127819061279],[118,289,71,6.076297283172607],[118,289,72,6.087140083312988],[118,289,73,6.107732772827148],[118,289,74,6.131562232971191],[118,289,75,6.152235507965088],[118,289,76,6.1686506271362305],[118,289,77,6.180459976196289],[118,289,78,6.183925628662109],[118,289,79,6.180508613586426],[118,290,64,6.082154750823975],[118,290,65,6.091849327087402],[118,290,66,6.09231424331665],[118,290,67,6.0850958824157715],[118,290,68,6.0764875411987305],[118,290,69,6.071643829345703],[118,290,70,6.072127819061279],[118,290,71,6.076297283172607],[118,290,72,6.087140083312988],[118,290,73,6.107732772827148],[118,290,74,6.131562232971191],[118,290,75,6.152235507965088],[118,290,76,6.1686506271362305],[118,290,77,6.180459976196289],[118,290,78,6.183925628662109],[118,290,79,6.180508613586426],[118,291,64,6.082154750823975],[118,291,65,6.091849327087402],[118,291,66,6.09231424331665],[118,291,67,6.0850958824157715],[118,291,68,6.0764875411987305],[118,291,69,6.071643829345703],[118,291,70,6.072127819061279],[118,291,71,6.076297283172607],[118,291,72,6.087140083312988],[118,291,73,6.107732772827148],[118,291,74,6.131562232971191],[118,291,75,6.152235507965088],[118,291,76,6.1686506271362305],[118,291,77,6.180459976196289],[118,291,78,6.183925628662109],[118,291,79,6.180508613586426],[118,292,64,6.082154750823975],[118,292,65,6.091849327087402],[118,292,66,6.09231424331665],[118,292,67,6.0850958824157715],[118,292,68,6.0764875411987305],[118,292,69,6.071643829345703],[118,292,70,6.072127819061279],[118,292,71,6.076297283172607],[118,292,72,6.087140083312988],[118,292,73,6.107732772827148],[118,292,74,6.131562232971191],[118,292,75,6.152235507965088],[118,292,76,6.1686506271362305],[118,292,77,6.180459976196289],[118,292,78,6.183925628662109],[118,292,79,6.180508613586426],[118,293,64,6.082154750823975],[118,293,65,6.091849327087402],[118,293,66,6.09231424331665],[118,293,67,6.0850958824157715],[118,293,68,6.0764875411987305],[118,293,69,6.071643829345703],[118,293,70,6.072127819061279],[118,293,71,6.076297283172607],[118,293,72,6.087140083312988],[118,293,73,6.107732772827148],[118,293,74,6.131562232971191],[118,293,75,6.152235507965088],[118,293,76,6.1686506271362305],[118,293,77,6.180459976196289],[118,293,78,6.183925628662109],[118,293,79,6.180508613586426],[118,294,64,6.082154750823975],[118,294,65,6.091849327087402],[118,294,66,6.09231424331665],[118,294,67,6.0850958824157715],[118,294,68,6.0764875411987305],[118,294,69,6.071643829345703],[118,294,70,6.072127819061279],[118,294,71,6.076297283172607],[118,294,72,6.087140083312988],[118,294,73,6.107732772827148],[118,294,74,6.131562232971191],[118,294,75,6.152235507965088],[118,294,76,6.1686506271362305],[118,294,77,6.180459976196289],[118,294,78,6.183925628662109],[118,294,79,6.180508613586426],[118,295,64,6.082154750823975],[118,295,65,6.091849327087402],[118,295,66,6.09231424331665],[118,295,67,6.0850958824157715],[118,295,68,6.0764875411987305],[118,295,69,6.071643829345703],[118,295,70,6.072127819061279],[118,295,71,6.076297283172607],[118,295,72,6.087140083312988],[118,295,73,6.107732772827148],[118,295,74,6.131562232971191],[118,295,75,6.152235507965088],[118,295,76,6.1686506271362305],[118,295,77,6.180459976196289],[118,295,78,6.183925628662109],[118,295,79,6.180508613586426],[118,296,64,6.082154750823975],[118,296,65,6.091849327087402],[118,296,66,6.09231424331665],[118,296,67,6.0850958824157715],[118,296,68,6.0764875411987305],[118,296,69,6.071643829345703],[118,296,70,6.072127819061279],[118,296,71,6.076297283172607],[118,296,72,6.087140083312988],[118,296,73,6.107732772827148],[118,296,74,6.131562232971191],[118,296,75,6.152235507965088],[118,296,76,6.1686506271362305],[118,296,77,6.180459976196289],[118,296,78,6.183925628662109],[118,296,79,6.180508613586426],[118,297,64,6.082154750823975],[118,297,65,6.091849327087402],[118,297,66,6.09231424331665],[118,297,67,6.0850958824157715],[118,297,68,6.0764875411987305],[118,297,69,6.071643829345703],[118,297,70,6.072127819061279],[118,297,71,6.076297283172607],[118,297,72,6.087140083312988],[118,297,73,6.107732772827148],[118,297,74,6.131562232971191],[118,297,75,6.152235507965088],[118,297,76,6.1686506271362305],[118,297,77,6.180459976196289],[118,297,78,6.183925628662109],[118,297,79,6.180508613586426],[118,298,64,6.082154750823975],[118,298,65,6.091849327087402],[118,298,66,6.09231424331665],[118,298,67,6.0850958824157715],[118,298,68,6.0764875411987305],[118,298,69,6.071643829345703],[118,298,70,6.072127819061279],[118,298,71,6.076297283172607],[118,298,72,6.087140083312988],[118,298,73,6.107732772827148],[118,298,74,6.131562232971191],[118,298,75,6.152235507965088],[118,298,76,6.1686506271362305],[118,298,77,6.180459976196289],[118,298,78,6.183925628662109],[118,298,79,6.180508613586426],[118,299,64,6.082154750823975],[118,299,65,6.091849327087402],[118,299,66,6.09231424331665],[118,299,67,6.0850958824157715],[118,299,68,6.0764875411987305],[118,299,69,6.071643829345703],[118,299,70,6.072127819061279],[118,299,71,6.076297283172607],[118,299,72,6.087140083312988],[118,299,73,6.107732772827148],[118,299,74,6.131562232971191],[118,299,75,6.152235507965088],[118,299,76,6.1686506271362305],[118,299,77,6.180459976196289],[118,299,78,6.183925628662109],[118,299,79,6.180508613586426],[118,300,64,6.082154750823975],[118,300,65,6.091849327087402],[118,300,66,6.09231424331665],[118,300,67,6.0850958824157715],[118,300,68,6.0764875411987305],[118,300,69,6.071643829345703],[118,300,70,6.072127819061279],[118,300,71,6.076297283172607],[118,300,72,6.087140083312988],[118,300,73,6.107732772827148],[118,300,74,6.131562232971191],[118,300,75,6.152235507965088],[118,300,76,6.1686506271362305],[118,300,77,6.180459976196289],[118,300,78,6.183925628662109],[118,300,79,6.180508613586426],[118,301,64,6.082154750823975],[118,301,65,6.091849327087402],[118,301,66,6.09231424331665],[118,301,67,6.0850958824157715],[118,301,68,6.0764875411987305],[118,301,69,6.071643829345703],[118,301,70,6.072127819061279],[118,301,71,6.076297283172607],[118,301,72,6.087140083312988],[118,301,73,6.107732772827148],[118,301,74,6.131562232971191],[118,301,75,6.152235507965088],[118,301,76,6.1686506271362305],[118,301,77,6.180459976196289],[118,301,78,6.183925628662109],[118,301,79,6.180508613586426],[118,302,64,6.082154750823975],[118,302,65,6.091849327087402],[118,302,66,6.09231424331665],[118,302,67,6.0850958824157715],[118,302,68,6.0764875411987305],[118,302,69,6.071643829345703],[118,302,70,6.072127819061279],[118,302,71,6.076297283172607],[118,302,72,6.087140083312988],[118,302,73,6.107732772827148],[118,302,74,6.131562232971191],[118,302,75,6.152235507965088],[118,302,76,6.1686506271362305],[118,302,77,6.180459976196289],[118,302,78,6.183925628662109],[118,302,79,6.180508613586426],[118,303,64,6.082154750823975],[118,303,65,6.091849327087402],[118,303,66,6.09231424331665],[118,303,67,6.0850958824157715],[118,303,68,6.0764875411987305],[118,303,69,6.071643829345703],[118,303,70,6.072127819061279],[118,303,71,6.076297283172607],[118,303,72,6.087140083312988],[118,303,73,6.107732772827148],[118,303,74,6.131562232971191],[118,303,75,6.152235507965088],[118,303,76,6.1686506271362305],[118,303,77,6.180459976196289],[118,303,78,6.183925628662109],[118,303,79,6.180508613586426],[118,304,64,6.082154750823975],[118,304,65,6.091849327087402],[118,304,66,6.09231424331665],[118,304,67,6.0850958824157715],[118,304,68,6.0764875411987305],[118,304,69,6.071643829345703],[118,304,70,6.072127819061279],[118,304,71,6.076297283172607],[118,304,72,6.087140083312988],[118,304,73,6.107732772827148],[118,304,74,6.131562232971191],[118,304,75,6.152235507965088],[118,304,76,6.1686506271362305],[118,304,77,6.180459976196289],[118,304,78,6.183925628662109],[118,304,79,6.180508613586426],[118,305,64,6.082154750823975],[118,305,65,6.091849327087402],[118,305,66,6.09231424331665],[118,305,67,6.0850958824157715],[118,305,68,6.0764875411987305],[118,305,69,6.071643829345703],[118,305,70,6.072127819061279],[118,305,71,6.076297283172607],[118,305,72,6.087140083312988],[118,305,73,6.107732772827148],[118,305,74,6.131562232971191],[118,305,75,6.152235507965088],[118,305,76,6.1686506271362305],[118,305,77,6.180459976196289],[118,305,78,6.183925628662109],[118,305,79,6.180508613586426],[118,306,64,6.082154750823975],[118,306,65,6.091849327087402],[118,306,66,6.09231424331665],[118,306,67,6.0850958824157715],[118,306,68,6.0764875411987305],[118,306,69,6.071643829345703],[118,306,70,6.072127819061279],[118,306,71,6.076297283172607],[118,306,72,6.087140083312988],[118,306,73,6.107732772827148],[118,306,74,6.131562232971191],[118,306,75,6.152235507965088],[118,306,76,6.1686506271362305],[118,306,77,6.180459976196289],[118,306,78,6.183925628662109],[118,306,79,6.180508613586426],[118,307,64,6.082154750823975],[118,307,65,6.091849327087402],[118,307,66,6.09231424331665],[118,307,67,6.0850958824157715],[118,307,68,6.0764875411987305],[118,307,69,6.071643829345703],[118,307,70,6.072127819061279],[118,307,71,6.076297283172607],[118,307,72,6.087140083312988],[118,307,73,6.107732772827148],[118,307,74,6.131562232971191],[118,307,75,6.152235507965088],[118,307,76,6.1686506271362305],[118,307,77,6.180459976196289],[118,307,78,6.183925628662109],[118,307,79,6.180508613586426],[118,308,64,6.082154750823975],[118,308,65,6.091849327087402],[118,308,66,6.09231424331665],[118,308,67,6.0850958824157715],[118,308,68,6.0764875411987305],[118,308,69,6.071643829345703],[118,308,70,6.072127819061279],[118,308,71,6.076297283172607],[118,308,72,6.087140083312988],[118,308,73,6.107732772827148],[118,308,74,6.131562232971191],[118,308,75,6.152235507965088],[118,308,76,6.1686506271362305],[118,308,77,6.180459976196289],[118,308,78,6.183925628662109],[118,308,79,6.180508613586426],[118,309,64,6.082154750823975],[118,309,65,6.091849327087402],[118,309,66,6.09231424331665],[118,309,67,6.0850958824157715],[118,309,68,6.0764875411987305],[118,309,69,6.071643829345703],[118,309,70,6.072127819061279],[118,309,71,6.076297283172607],[118,309,72,6.087140083312988],[118,309,73,6.107732772827148],[118,309,74,6.131562232971191],[118,309,75,6.152235507965088],[118,309,76,6.1686506271362305],[118,309,77,6.180459976196289],[118,309,78,6.183925628662109],[118,309,79,6.180508613586426],[118,310,64,6.082154750823975],[118,310,65,6.091849327087402],[118,310,66,6.09231424331665],[118,310,67,6.0850958824157715],[118,310,68,6.0764875411987305],[118,310,69,6.071643829345703],[118,310,70,6.072127819061279],[118,310,71,6.076297283172607],[118,310,72,6.087140083312988],[118,310,73,6.107732772827148],[118,310,74,6.131562232971191],[118,310,75,6.152235507965088],[118,310,76,6.1686506271362305],[118,310,77,6.180459976196289],[118,310,78,6.183925628662109],[118,310,79,6.180508613586426],[118,311,64,6.082154750823975],[118,311,65,6.091849327087402],[118,311,66,6.09231424331665],[118,311,67,6.0850958824157715],[118,311,68,6.0764875411987305],[118,311,69,6.071643829345703],[118,311,70,6.072127819061279],[118,311,71,6.076297283172607],[118,311,72,6.087140083312988],[118,311,73,6.107732772827148],[118,311,74,6.131562232971191],[118,311,75,6.152235507965088],[118,311,76,6.1686506271362305],[118,311,77,6.180459976196289],[118,311,78,6.183925628662109],[118,311,79,6.180508613586426],[118,312,64,6.082154750823975],[118,312,65,6.091849327087402],[118,312,66,6.09231424331665],[118,312,67,6.0850958824157715],[118,312,68,6.0764875411987305],[118,312,69,6.071643829345703],[118,312,70,6.072127819061279],[118,312,71,6.076297283172607],[118,312,72,6.087140083312988],[118,312,73,6.107732772827148],[118,312,74,6.131562232971191],[118,312,75,6.152235507965088],[118,312,76,6.1686506271362305],[118,312,77,6.180459976196289],[118,312,78,6.183925628662109],[118,312,79,6.180508613586426],[118,313,64,6.082154750823975],[118,313,65,6.091849327087402],[118,313,66,6.09231424331665],[118,313,67,6.0850958824157715],[118,313,68,6.0764875411987305],[118,313,69,6.071643829345703],[118,313,70,6.072127819061279],[118,313,71,6.076297283172607],[118,313,72,6.087140083312988],[118,313,73,6.107732772827148],[118,313,74,6.131562232971191],[118,313,75,6.152235507965088],[118,313,76,6.1686506271362305],[118,313,77,6.180459976196289],[118,313,78,6.183925628662109],[118,313,79,6.180508613586426],[118,314,64,6.082154750823975],[118,314,65,6.091849327087402],[118,314,66,6.09231424331665],[118,314,67,6.0850958824157715],[118,314,68,6.0764875411987305],[118,314,69,6.071643829345703],[118,314,70,6.072127819061279],[118,314,71,6.076297283172607],[118,314,72,6.087140083312988],[118,314,73,6.107732772827148],[118,314,74,6.131562232971191],[118,314,75,6.152235507965088],[118,314,76,6.1686506271362305],[118,314,77,6.180459976196289],[118,314,78,6.183925628662109],[118,314,79,6.180508613586426],[118,315,64,6.082154750823975],[118,315,65,6.091849327087402],[118,315,66,6.09231424331665],[118,315,67,6.0850958824157715],[118,315,68,6.0764875411987305],[118,315,69,6.071643829345703],[118,315,70,6.072127819061279],[118,315,71,6.076297283172607],[118,315,72,6.087140083312988],[118,315,73,6.107732772827148],[118,315,74,6.131562232971191],[118,315,75,6.152235507965088],[118,315,76,6.1686506271362305],[118,315,77,6.180459976196289],[118,315,78,6.183925628662109],[118,315,79,6.180508613586426],[118,316,64,6.082154750823975],[118,316,65,6.091849327087402],[118,316,66,6.09231424331665],[118,316,67,6.0850958824157715],[118,316,68,6.0764875411987305],[118,316,69,6.071643829345703],[118,316,70,6.072127819061279],[118,316,71,6.076297283172607],[118,316,72,6.087140083312988],[118,316,73,6.107732772827148],[118,316,74,6.131562232971191],[118,316,75,6.152235507965088],[118,316,76,6.1686506271362305],[118,316,77,6.180459976196289],[118,316,78,6.183925628662109],[118,316,79,6.180508613586426],[118,317,64,6.082154750823975],[118,317,65,6.091849327087402],[118,317,66,6.09231424331665],[118,317,67,6.0850958824157715],[118,317,68,6.0764875411987305],[118,317,69,6.071643829345703],[118,317,70,6.072127819061279],[118,317,71,6.076297283172607],[118,317,72,6.087140083312988],[118,317,73,6.107732772827148],[118,317,74,6.131562232971191],[118,317,75,6.152235507965088],[118,317,76,6.1686506271362305],[118,317,77,6.180459976196289],[118,317,78,6.183925628662109],[118,317,79,6.180508613586426],[118,318,64,6.082154750823975],[118,318,65,6.091849327087402],[118,318,66,6.09231424331665],[118,318,67,6.0850958824157715],[118,318,68,6.0764875411987305],[118,318,69,6.071643829345703],[118,318,70,6.072127819061279],[118,318,71,6.076297283172607],[118,318,72,6.087140083312988],[118,318,73,6.107732772827148],[118,318,74,6.131562232971191],[118,318,75,6.152235507965088],[118,318,76,6.1686506271362305],[118,318,77,6.180459976196289],[118,318,78,6.183925628662109],[118,318,79,6.180508613586426],[118,319,64,6.082154750823975],[118,319,65,6.091849327087402],[118,319,66,6.09231424331665],[118,319,67,6.0850958824157715],[118,319,68,6.0764875411987305],[118,319,69,6.071643829345703],[118,319,70,6.072127819061279],[118,319,71,6.076297283172607],[118,319,72,6.087140083312988],[118,319,73,6.107732772827148],[118,319,74,6.131562232971191],[118,319,75,6.152235507965088],[118,319,76,6.1686506271362305],[118,319,77,6.180459976196289],[118,319,78,6.183925628662109],[118,319,79,6.180508613586426],[119,-64,64,6.098939895629883],[119,-64,65,6.105672836303711],[119,-64,66,6.105361461639404],[119,-64,67,6.099574565887451],[119,-64,68,6.093015193939209],[119,-64,69,6.091035842895508],[119,-64,70,6.095149993896484],[119,-64,71,6.105009078979492],[119,-64,72,6.125766754150391],[119,-64,73,6.157017707824707],[119,-64,74,6.185085296630859],[119,-64,75,6.203451156616211],[119,-64,76,6.214632034301758],[119,-64,77,6.2206244468688965],[119,-64,78,6.2200398445129395],[119,-64,79,6.212827682495117],[119,-63,64,6.098939895629883],[119,-63,65,6.105672836303711],[119,-63,66,6.105361461639404],[119,-63,67,6.099574565887451],[119,-63,68,6.093015193939209],[119,-63,69,6.091035842895508],[119,-63,70,6.095149993896484],[119,-63,71,6.105009078979492],[119,-63,72,6.125766754150391],[119,-63,73,6.157017707824707],[119,-63,74,6.185085296630859],[119,-63,75,6.203451156616211],[119,-63,76,6.214632034301758],[119,-63,77,6.2206244468688965],[119,-63,78,6.2200398445129395],[119,-63,79,6.212827682495117],[119,-62,64,6.098939895629883],[119,-62,65,6.105672836303711],[119,-62,66,6.105361461639404],[119,-62,67,6.099574565887451],[119,-62,68,6.093015193939209],[119,-62,69,6.091035842895508],[119,-62,70,6.095149993896484],[119,-62,71,6.105009078979492],[119,-62,72,6.125766754150391],[119,-62,73,6.157017707824707],[119,-62,74,6.185085296630859],[119,-62,75,6.203451156616211],[119,-62,76,6.214632034301758],[119,-62,77,6.2206244468688965],[119,-62,78,6.2200398445129395],[119,-62,79,6.212827682495117],[119,-61,64,6.098939895629883],[119,-61,65,6.105672836303711],[119,-61,66,6.105361461639404],[119,-61,67,6.099574565887451],[119,-61,68,6.093015193939209],[119,-61,69,6.091035842895508],[119,-61,70,6.095149993896484],[119,-61,71,6.105009078979492],[119,-61,72,6.125766754150391],[119,-61,73,6.157017707824707],[119,-61,74,6.185085296630859],[119,-61,75,6.203451156616211],[119,-61,76,6.214632034301758],[119,-61,77,6.2206244468688965],[119,-61,78,6.2200398445129395],[119,-61,79,6.212827682495117],[119,-60,64,6.098939895629883],[119,-60,65,6.105672836303711],[119,-60,66,6.105361461639404],[119,-60,67,6.099574565887451],[119,-60,68,6.093015193939209],[119,-60,69,6.091035842895508],[119,-60,70,6.095149993896484],[119,-60,71,6.105009078979492],[119,-60,72,6.125766754150391],[119,-60,73,6.157017707824707],[119,-60,74,6.185085296630859],[119,-60,75,6.203451156616211],[119,-60,76,6.214632034301758],[119,-60,77,6.2206244468688965],[119,-60,78,6.2200398445129395],[119,-60,79,6.212827682495117],[119,-59,64,6.098939895629883],[119,-59,65,6.105672836303711],[119,-59,66,6.105361461639404],[119,-59,67,6.099574565887451],[119,-59,68,6.093015193939209],[119,-59,69,6.091035842895508],[119,-59,70,6.095149993896484],[119,-59,71,6.105009078979492],[119,-59,72,6.125766754150391],[119,-59,73,6.157017707824707],[119,-59,74,6.185085296630859],[119,-59,75,6.203451156616211],[119,-59,76,6.214632034301758],[119,-59,77,6.2206244468688965],[119,-59,78,6.2200398445129395],[119,-59,79,6.212827682495117],[119,-58,64,6.098939895629883],[119,-58,65,6.105672836303711],[119,-58,66,6.105361461639404],[119,-58,67,6.099574565887451],[119,-58,68,6.093015193939209],[119,-58,69,6.091035842895508],[119,-58,70,6.095149993896484],[119,-58,71,6.105009078979492],[119,-58,72,6.125766754150391],[119,-58,73,6.157017707824707],[119,-58,74,6.185085296630859],[119,-58,75,6.203451156616211],[119,-58,76,6.214632034301758],[119,-58,77,6.2206244468688965],[119,-58,78,6.2200398445129395],[119,-58,79,6.212827682495117],[119,-57,64,6.098939895629883],[119,-57,65,6.105672836303711],[119,-57,66,6.105361461639404],[119,-57,67,6.099574565887451],[119,-57,68,6.093015193939209],[119,-57,69,6.091035842895508],[119,-57,70,6.095149993896484],[119,-57,71,6.105009078979492],[119,-57,72,6.125766754150391],[119,-57,73,6.157017707824707],[119,-57,74,6.185085296630859],[119,-57,75,6.203451156616211],[119,-57,76,6.214632034301758],[119,-57,77,6.2206244468688965],[119,-57,78,6.2200398445129395],[119,-57,79,6.212827682495117],[119,-56,64,6.098939895629883],[119,-56,65,6.105672836303711],[119,-56,66,6.105361461639404],[119,-56,67,6.099574565887451],[119,-56,68,6.093015193939209],[119,-56,69,6.091035842895508],[119,-56,70,6.095149993896484],[119,-56,71,6.105009078979492],[119,-56,72,6.125766754150391],[119,-56,73,6.157017707824707],[119,-56,74,6.185085296630859],[119,-56,75,6.203451156616211],[119,-56,76,6.214632034301758],[119,-56,77,6.2206244468688965],[119,-56,78,6.2200398445129395],[119,-56,79,6.212827682495117],[119,-55,64,6.098939895629883],[119,-55,65,6.105672836303711],[119,-55,66,6.105361461639404],[119,-55,67,6.099574565887451],[119,-55,68,6.093015193939209],[119,-55,69,6.091035842895508],[119,-55,70,6.095149993896484],[119,-55,71,6.105009078979492],[119,-55,72,6.125766754150391],[119,-55,73,6.157017707824707],[119,-55,74,6.185085296630859],[119,-55,75,6.203451156616211],[119,-55,76,6.214632034301758],[119,-55,77,6.2206244468688965],[119,-55,78,6.2200398445129395],[119,-55,79,6.212827682495117],[119,-54,64,6.098939895629883],[119,-54,65,6.105672836303711],[119,-54,66,6.105361461639404],[119,-54,67,6.099574565887451],[119,-54,68,6.093015193939209],[119,-54,69,6.091035842895508],[119,-54,70,6.095149993896484],[119,-54,71,6.105009078979492],[119,-54,72,6.125766754150391],[119,-54,73,6.157017707824707],[119,-54,74,6.185085296630859],[119,-54,75,6.203451156616211],[119,-54,76,6.214632034301758],[119,-54,77,6.2206244468688965],[119,-54,78,6.2200398445129395],[119,-54,79,6.212827682495117],[119,-53,64,6.098939895629883],[119,-53,65,6.105672836303711],[119,-53,66,6.105361461639404],[119,-53,67,6.099574565887451],[119,-53,68,6.093015193939209],[119,-53,69,6.091035842895508],[119,-53,70,6.095149993896484],[119,-53,71,6.105009078979492],[119,-53,72,6.125766754150391],[119,-53,73,6.157017707824707],[119,-53,74,6.185085296630859],[119,-53,75,6.203451156616211],[119,-53,76,6.214632034301758],[119,-53,77,6.2206244468688965],[119,-53,78,6.2200398445129395],[119,-53,79,6.212827682495117],[119,-52,64,6.098939895629883],[119,-52,65,6.105672836303711],[119,-52,66,6.105361461639404],[119,-52,67,6.099574565887451],[119,-52,68,6.093015193939209],[119,-52,69,6.091035842895508],[119,-52,70,6.095149993896484],[119,-52,71,6.105009078979492],[119,-52,72,6.125766754150391],[119,-52,73,6.157017707824707],[119,-52,74,6.185085296630859],[119,-52,75,6.203451156616211],[119,-52,76,6.214632034301758],[119,-52,77,6.2206244468688965],[119,-52,78,6.2200398445129395],[119,-52,79,6.212827682495117],[119,-51,64,6.098939895629883],[119,-51,65,6.105672836303711],[119,-51,66,6.105361461639404],[119,-51,67,6.099574565887451],[119,-51,68,6.093015193939209],[119,-51,69,6.091035842895508],[119,-51,70,6.095149993896484],[119,-51,71,6.105009078979492],[119,-51,72,6.125766754150391],[119,-51,73,6.157017707824707],[119,-51,74,6.185085296630859],[119,-51,75,6.203451156616211],[119,-51,76,6.214632034301758],[119,-51,77,6.2206244468688965],[119,-51,78,6.2200398445129395],[119,-51,79,6.212827682495117],[119,-50,64,6.098939895629883],[119,-50,65,6.105672836303711],[119,-50,66,6.105361461639404],[119,-50,67,6.099574565887451],[119,-50,68,6.093015193939209],[119,-50,69,6.091035842895508],[119,-50,70,6.095149993896484],[119,-50,71,6.105009078979492],[119,-50,72,6.125766754150391],[119,-50,73,6.157017707824707],[119,-50,74,6.185085296630859],[119,-50,75,6.203451156616211],[119,-50,76,6.214632034301758],[119,-50,77,6.2206244468688965],[119,-50,78,6.2200398445129395],[119,-50,79,6.212827682495117],[119,-49,64,6.098939895629883],[119,-49,65,6.105672836303711],[119,-49,66,6.105361461639404],[119,-49,67,6.099574565887451],[119,-49,68,6.093015193939209],[119,-49,69,6.091035842895508],[119,-49,70,6.095149993896484],[119,-49,71,6.105009078979492],[119,-49,72,6.125766754150391],[119,-49,73,6.157017707824707],[119,-49,74,6.185085296630859],[119,-49,75,6.203451156616211],[119,-49,76,6.214632034301758],[119,-49,77,6.2206244468688965],[119,-49,78,6.2200398445129395],[119,-49,79,6.212827682495117],[119,-48,64,6.098939895629883],[119,-48,65,6.105672836303711],[119,-48,66,6.105361461639404],[119,-48,67,6.099574565887451],[119,-48,68,6.093015193939209],[119,-48,69,6.091035842895508],[119,-48,70,6.095149993896484],[119,-48,71,6.105009078979492],[119,-48,72,6.125766754150391],[119,-48,73,6.157017707824707],[119,-48,74,6.185085296630859],[119,-48,75,6.203451156616211],[119,-48,76,6.214632034301758],[119,-48,77,6.2206244468688965],[119,-48,78,6.2200398445129395],[119,-48,79,6.212827682495117],[119,-47,64,6.098939895629883],[119,-47,65,6.105672836303711],[119,-47,66,6.105361461639404],[119,-47,67,6.099574565887451],[119,-47,68,6.093015193939209],[119,-47,69,6.091035842895508],[119,-47,70,6.095149993896484],[119,-47,71,6.105009078979492],[119,-47,72,6.125766754150391],[119,-47,73,6.157017707824707],[119,-47,74,6.185085296630859],[119,-47,75,6.203451156616211],[119,-47,76,6.214632034301758],[119,-47,77,6.2206244468688965],[119,-47,78,6.2200398445129395],[119,-47,79,6.212827682495117],[119,-46,64,6.098939895629883],[119,-46,65,6.105672836303711],[119,-46,66,6.105361461639404],[119,-46,67,6.099574565887451],[119,-46,68,6.093015193939209],[119,-46,69,6.091035842895508],[119,-46,70,6.095149993896484],[119,-46,71,6.105009078979492],[119,-46,72,6.125766754150391],[119,-46,73,6.157017707824707],[119,-46,74,6.185085296630859],[119,-46,75,6.203451156616211],[119,-46,76,6.214632034301758],[119,-46,77,6.2206244468688965],[119,-46,78,6.2200398445129395],[119,-46,79,6.212827682495117],[119,-45,64,6.098939895629883],[119,-45,65,6.105672836303711],[119,-45,66,6.105361461639404],[119,-45,67,6.099574565887451],[119,-45,68,6.093015193939209],[119,-45,69,6.091035842895508],[119,-45,70,6.095149993896484],[119,-45,71,6.105009078979492],[119,-45,72,6.125766754150391],[119,-45,73,6.157017707824707],[119,-45,74,6.185085296630859],[119,-45,75,6.203451156616211],[119,-45,76,6.214632034301758],[119,-45,77,6.2206244468688965],[119,-45,78,6.2200398445129395],[119,-45,79,6.212827682495117],[119,-44,64,6.098939895629883],[119,-44,65,6.105672836303711],[119,-44,66,6.105361461639404],[119,-44,67,6.099574565887451],[119,-44,68,6.093015193939209],[119,-44,69,6.091035842895508],[119,-44,70,6.095149993896484],[119,-44,71,6.105009078979492],[119,-44,72,6.125766754150391],[119,-44,73,6.157017707824707],[119,-44,74,6.185085296630859],[119,-44,75,6.203451156616211],[119,-44,76,6.214632034301758],[119,-44,77,6.2206244468688965],[119,-44,78,6.2200398445129395],[119,-44,79,6.212827682495117],[119,-43,64,6.098939895629883],[119,-43,65,6.105672836303711],[119,-43,66,6.105361461639404],[119,-43,67,6.099574565887451],[119,-43,68,6.093015193939209],[119,-43,69,6.091035842895508],[119,-43,70,6.095149993896484],[119,-43,71,6.105009078979492],[119,-43,72,6.125766754150391],[119,-43,73,6.157017707824707],[119,-43,74,6.185085296630859],[119,-43,75,6.203451156616211],[119,-43,76,6.214632034301758],[119,-43,77,6.2206244468688965],[119,-43,78,6.2200398445129395],[119,-43,79,6.212827682495117],[119,-42,64,6.098939895629883],[119,-42,65,6.105672836303711],[119,-42,66,6.105361461639404],[119,-42,67,6.099574565887451],[119,-42,68,6.093015193939209],[119,-42,69,6.091035842895508],[119,-42,70,6.095149993896484],[119,-42,71,6.105009078979492],[119,-42,72,6.125766754150391],[119,-42,73,6.157017707824707],[119,-42,74,6.185085296630859],[119,-42,75,6.203451156616211],[119,-42,76,6.214632034301758],[119,-42,77,6.2206244468688965],[119,-42,78,6.2200398445129395],[119,-42,79,6.212827682495117],[119,-41,64,6.098939895629883],[119,-41,65,6.105672836303711],[119,-41,66,6.105361461639404],[119,-41,67,6.099574565887451],[119,-41,68,6.093015193939209],[119,-41,69,6.091035842895508],[119,-41,70,6.095149993896484],[119,-41,71,6.105009078979492],[119,-41,72,6.125766754150391],[119,-41,73,6.157017707824707],[119,-41,74,6.185085296630859],[119,-41,75,6.203451156616211],[119,-41,76,6.214632034301758],[119,-41,77,6.2206244468688965],[119,-41,78,6.2200398445129395],[119,-41,79,6.212827682495117],[119,-40,64,6.098939895629883],[119,-40,65,6.105672836303711],[119,-40,66,6.105361461639404],[119,-40,67,6.099574565887451],[119,-40,68,6.093015193939209],[119,-40,69,6.091035842895508],[119,-40,70,6.095149993896484],[119,-40,71,6.105009078979492],[119,-40,72,6.125766754150391],[119,-40,73,6.157017707824707],[119,-40,74,6.185085296630859],[119,-40,75,6.203451156616211],[119,-40,76,6.214632034301758],[119,-40,77,6.2206244468688965],[119,-40,78,6.2200398445129395],[119,-40,79,6.212827682495117],[119,-39,64,6.098939895629883],[119,-39,65,6.105672836303711],[119,-39,66,6.105361461639404],[119,-39,67,6.099574565887451],[119,-39,68,6.093015193939209],[119,-39,69,6.091035842895508],[119,-39,70,6.095149993896484],[119,-39,71,6.105009078979492],[119,-39,72,6.125766754150391],[119,-39,73,6.157017707824707],[119,-39,74,6.185085296630859],[119,-39,75,6.203451156616211],[119,-39,76,6.214632034301758],[119,-39,77,6.2206244468688965],[119,-39,78,6.2200398445129395],[119,-39,79,6.212827682495117],[119,-38,64,6.098939895629883],[119,-38,65,6.105672836303711],[119,-38,66,6.105361461639404],[119,-38,67,6.099574565887451],[119,-38,68,6.093015193939209],[119,-38,69,6.091035842895508],[119,-38,70,6.095149993896484],[119,-38,71,6.105009078979492],[119,-38,72,6.125766754150391],[119,-38,73,6.157017707824707],[119,-38,74,6.185085296630859],[119,-38,75,6.203451156616211],[119,-38,76,6.214632034301758],[119,-38,77,6.2206244468688965],[119,-38,78,6.2200398445129395],[119,-38,79,6.212827682495117],[119,-37,64,6.098939895629883],[119,-37,65,6.105672836303711],[119,-37,66,6.105361461639404],[119,-37,67,6.099574565887451],[119,-37,68,6.093015193939209],[119,-37,69,6.091035842895508],[119,-37,70,6.095149993896484],[119,-37,71,6.105009078979492],[119,-37,72,6.125766754150391],[119,-37,73,6.157017707824707],[119,-37,74,6.185085296630859],[119,-37,75,6.203451156616211],[119,-37,76,6.214632034301758],[119,-37,77,6.2206244468688965],[119,-37,78,6.2200398445129395],[119,-37,79,6.212827682495117],[119,-36,64,6.098939895629883],[119,-36,65,6.105672836303711],[119,-36,66,6.105361461639404],[119,-36,67,6.099574565887451],[119,-36,68,6.093015193939209],[119,-36,69,6.091035842895508],[119,-36,70,6.095149993896484],[119,-36,71,6.105009078979492],[119,-36,72,6.125766754150391],[119,-36,73,6.157017707824707],[119,-36,74,6.185085296630859],[119,-36,75,6.203451156616211],[119,-36,76,6.214632034301758],[119,-36,77,6.2206244468688965],[119,-36,78,6.2200398445129395],[119,-36,79,6.212827682495117],[119,-35,64,6.098939895629883],[119,-35,65,6.105672836303711],[119,-35,66,6.105361461639404],[119,-35,67,6.099574565887451],[119,-35,68,6.093015193939209],[119,-35,69,6.091035842895508],[119,-35,70,6.095149993896484],[119,-35,71,6.105009078979492],[119,-35,72,6.125766754150391],[119,-35,73,6.157017707824707],[119,-35,74,6.185085296630859],[119,-35,75,6.203451156616211],[119,-35,76,6.214632034301758],[119,-35,77,6.2206244468688965],[119,-35,78,6.2200398445129395],[119,-35,79,6.212827682495117],[119,-34,64,6.098939895629883],[119,-34,65,6.105672836303711],[119,-34,66,6.105361461639404],[119,-34,67,6.099574565887451],[119,-34,68,6.093015193939209],[119,-34,69,6.091035842895508],[119,-34,70,6.095149993896484],[119,-34,71,6.105009078979492],[119,-34,72,6.125766754150391],[119,-34,73,6.157017707824707],[119,-34,74,6.185085296630859],[119,-34,75,6.203451156616211],[119,-34,76,6.214632034301758],[119,-34,77,6.2206244468688965],[119,-34,78,6.2200398445129395],[119,-34,79,6.212827682495117],[119,-33,64,6.098939895629883],[119,-33,65,6.105672836303711],[119,-33,66,6.105361461639404],[119,-33,67,6.099574565887451],[119,-33,68,6.093015193939209],[119,-33,69,6.091035842895508],[119,-33,70,6.095149993896484],[119,-33,71,6.105009078979492],[119,-33,72,6.125766754150391],[119,-33,73,6.157017707824707],[119,-33,74,6.185085296630859],[119,-33,75,6.203451156616211],[119,-33,76,6.214632034301758],[119,-33,77,6.2206244468688965],[119,-33,78,6.2200398445129395],[119,-33,79,6.212827682495117],[119,-32,64,6.098939895629883],[119,-32,65,6.105672836303711],[119,-32,66,6.105361461639404],[119,-32,67,6.099574565887451],[119,-32,68,6.093015193939209],[119,-32,69,6.091035842895508],[119,-32,70,6.095149993896484],[119,-32,71,6.105009078979492],[119,-32,72,6.125766754150391],[119,-32,73,6.157017707824707],[119,-32,74,6.185085296630859],[119,-32,75,6.203451156616211],[119,-32,76,6.214632034301758],[119,-32,77,6.2206244468688965],[119,-32,78,6.2200398445129395],[119,-32,79,6.212827682495117],[119,-31,64,6.098939895629883],[119,-31,65,6.105672836303711],[119,-31,66,6.105361461639404],[119,-31,67,6.099574565887451],[119,-31,68,6.093015193939209],[119,-31,69,6.091035842895508],[119,-31,70,6.095149993896484],[119,-31,71,6.105009078979492],[119,-31,72,6.125766754150391],[119,-31,73,6.157017707824707],[119,-31,74,6.185085296630859],[119,-31,75,6.203451156616211],[119,-31,76,6.214632034301758],[119,-31,77,6.2206244468688965],[119,-31,78,6.2200398445129395],[119,-31,79,6.212827682495117],[119,-30,64,6.098939895629883],[119,-30,65,6.105672836303711],[119,-30,66,6.105361461639404],[119,-30,67,6.099574565887451],[119,-30,68,6.093015193939209],[119,-30,69,6.091035842895508],[119,-30,70,6.095149993896484],[119,-30,71,6.105009078979492],[119,-30,72,6.125766754150391],[119,-30,73,6.157017707824707],[119,-30,74,6.185085296630859],[119,-30,75,6.203451156616211],[119,-30,76,6.214632034301758],[119,-30,77,6.2206244468688965],[119,-30,78,6.2200398445129395],[119,-30,79,6.212827682495117],[119,-29,64,6.098939895629883],[119,-29,65,6.105672836303711],[119,-29,66,6.105361461639404],[119,-29,67,6.099574565887451],[119,-29,68,6.093015193939209],[119,-29,69,6.091035842895508],[119,-29,70,6.095149993896484],[119,-29,71,6.105009078979492],[119,-29,72,6.125766754150391],[119,-29,73,6.157017707824707],[119,-29,74,6.185085296630859],[119,-29,75,6.203451156616211],[119,-29,76,6.214632034301758],[119,-29,77,6.2206244468688965],[119,-29,78,6.2200398445129395],[119,-29,79,6.212827682495117],[119,-28,64,6.098939895629883],[119,-28,65,6.105672836303711],[119,-28,66,6.105361461639404],[119,-28,67,6.099574565887451],[119,-28,68,6.093015193939209],[119,-28,69,6.091035842895508],[119,-28,70,6.095149993896484],[119,-28,71,6.105009078979492],[119,-28,72,6.125766754150391],[119,-28,73,6.157017707824707],[119,-28,74,6.185085296630859],[119,-28,75,6.203451156616211],[119,-28,76,6.214632034301758],[119,-28,77,6.2206244468688965],[119,-28,78,6.2200398445129395],[119,-28,79,6.212827682495117],[119,-27,64,6.098939895629883],[119,-27,65,6.105672836303711],[119,-27,66,6.105361461639404],[119,-27,67,6.099574565887451],[119,-27,68,6.093015193939209],[119,-27,69,6.091035842895508],[119,-27,70,6.095149993896484],[119,-27,71,6.105009078979492],[119,-27,72,6.125766754150391],[119,-27,73,6.157017707824707],[119,-27,74,6.185085296630859],[119,-27,75,6.203451156616211],[119,-27,76,6.214632034301758],[119,-27,77,6.2206244468688965],[119,-27,78,6.2200398445129395],[119,-27,79,6.212827682495117],[119,-26,64,6.098939895629883],[119,-26,65,6.105672836303711],[119,-26,66,6.105361461639404],[119,-26,67,6.099574565887451],[119,-26,68,6.093015193939209],[119,-26,69,6.091035842895508],[119,-26,70,6.095149993896484],[119,-26,71,6.105009078979492],[119,-26,72,6.125766754150391],[119,-26,73,6.157017707824707],[119,-26,74,6.185085296630859],[119,-26,75,6.203451156616211],[119,-26,76,6.214632034301758],[119,-26,77,6.2206244468688965],[119,-26,78,6.2200398445129395],[119,-26,79,6.212827682495117],[119,-25,64,6.098939895629883],[119,-25,65,6.105672836303711],[119,-25,66,6.105361461639404],[119,-25,67,6.099574565887451],[119,-25,68,6.093015193939209],[119,-25,69,6.091035842895508],[119,-25,70,6.095149993896484],[119,-25,71,6.105009078979492],[119,-25,72,6.125766754150391],[119,-25,73,6.157017707824707],[119,-25,74,6.185085296630859],[119,-25,75,6.203451156616211],[119,-25,76,6.214632034301758],[119,-25,77,6.2206244468688965],[119,-25,78,6.2200398445129395],[119,-25,79,6.212827682495117],[119,-24,64,6.098939895629883],[119,-24,65,6.105672836303711],[119,-24,66,6.105361461639404],[119,-24,67,6.099574565887451],[119,-24,68,6.093015193939209],[119,-24,69,6.091035842895508],[119,-24,70,6.095149993896484],[119,-24,71,6.105009078979492],[119,-24,72,6.125766754150391],[119,-24,73,6.157017707824707],[119,-24,74,6.185085296630859],[119,-24,75,6.203451156616211],[119,-24,76,6.214632034301758],[119,-24,77,6.2206244468688965],[119,-24,78,6.2200398445129395],[119,-24,79,6.212827682495117],[119,-23,64,6.098939895629883],[119,-23,65,6.105672836303711],[119,-23,66,6.105361461639404],[119,-23,67,6.099574565887451],[119,-23,68,6.093015193939209],[119,-23,69,6.091035842895508],[119,-23,70,6.095149993896484],[119,-23,71,6.105009078979492],[119,-23,72,6.125766754150391],[119,-23,73,6.157017707824707],[119,-23,74,6.185085296630859],[119,-23,75,6.203451156616211],[119,-23,76,6.214632034301758],[119,-23,77,6.2206244468688965],[119,-23,78,6.2200398445129395],[119,-23,79,6.212827682495117],[119,-22,64,6.098939895629883],[119,-22,65,6.105672836303711],[119,-22,66,6.105361461639404],[119,-22,67,6.099574565887451],[119,-22,68,6.093015193939209],[119,-22,69,6.091035842895508],[119,-22,70,6.095149993896484],[119,-22,71,6.105009078979492],[119,-22,72,6.125766754150391],[119,-22,73,6.157017707824707],[119,-22,74,6.185085296630859],[119,-22,75,6.203451156616211],[119,-22,76,6.214632034301758],[119,-22,77,6.2206244468688965],[119,-22,78,6.2200398445129395],[119,-22,79,6.212827682495117],[119,-21,64,6.098939895629883],[119,-21,65,6.105672836303711],[119,-21,66,6.105361461639404],[119,-21,67,6.099574565887451],[119,-21,68,6.093015193939209],[119,-21,69,6.091035842895508],[119,-21,70,6.095149993896484],[119,-21,71,6.105009078979492],[119,-21,72,6.125766754150391],[119,-21,73,6.157017707824707],[119,-21,74,6.185085296630859],[119,-21,75,6.203451156616211],[119,-21,76,6.214632034301758],[119,-21,77,6.2206244468688965],[119,-21,78,6.2200398445129395],[119,-21,79,6.212827682495117],[119,-20,64,6.098939895629883],[119,-20,65,6.105672836303711],[119,-20,66,6.105361461639404],[119,-20,67,6.099574565887451],[119,-20,68,6.093015193939209],[119,-20,69,6.091035842895508],[119,-20,70,6.095149993896484],[119,-20,71,6.105009078979492],[119,-20,72,6.125766754150391],[119,-20,73,6.157017707824707],[119,-20,74,6.185085296630859],[119,-20,75,6.203451156616211],[119,-20,76,6.214632034301758],[119,-20,77,6.2206244468688965],[119,-20,78,6.2200398445129395],[119,-20,79,6.212827682495117],[119,-19,64,6.098939895629883],[119,-19,65,6.105672836303711],[119,-19,66,6.105361461639404],[119,-19,67,6.099574565887451],[119,-19,68,6.093015193939209],[119,-19,69,6.091035842895508],[119,-19,70,6.095149993896484],[119,-19,71,6.105009078979492],[119,-19,72,6.125766754150391],[119,-19,73,6.157017707824707],[119,-19,74,6.185085296630859],[119,-19,75,6.203451156616211],[119,-19,76,6.214632034301758],[119,-19,77,6.2206244468688965],[119,-19,78,6.2200398445129395],[119,-19,79,6.212827682495117],[119,-18,64,6.098939895629883],[119,-18,65,6.105672836303711],[119,-18,66,6.105361461639404],[119,-18,67,6.099574565887451],[119,-18,68,6.093015193939209],[119,-18,69,6.091035842895508],[119,-18,70,6.095149993896484],[119,-18,71,6.105009078979492],[119,-18,72,6.125766754150391],[119,-18,73,6.157017707824707],[119,-18,74,6.185085296630859],[119,-18,75,6.203451156616211],[119,-18,76,6.214632034301758],[119,-18,77,6.2206244468688965],[119,-18,78,6.2200398445129395],[119,-18,79,6.212827682495117],[119,-17,64,6.098939895629883],[119,-17,65,6.105672836303711],[119,-17,66,6.105361461639404],[119,-17,67,6.099574565887451],[119,-17,68,6.093015193939209],[119,-17,69,6.091035842895508],[119,-17,70,6.095149993896484],[119,-17,71,6.105009078979492],[119,-17,72,6.125766754150391],[119,-17,73,6.157017707824707],[119,-17,74,6.185085296630859],[119,-17,75,6.203451156616211],[119,-17,76,6.214632034301758],[119,-17,77,6.2206244468688965],[119,-17,78,6.2200398445129395],[119,-17,79,6.212827682495117],[119,-16,64,6.098939895629883],[119,-16,65,6.105672836303711],[119,-16,66,6.105361461639404],[119,-16,67,6.099574565887451],[119,-16,68,6.093015193939209],[119,-16,69,6.091035842895508],[119,-16,70,6.095149993896484],[119,-16,71,6.105009078979492],[119,-16,72,6.125766754150391],[119,-16,73,6.157017707824707],[119,-16,74,6.185085296630859],[119,-16,75,6.203451156616211],[119,-16,76,6.214632034301758],[119,-16,77,6.2206244468688965],[119,-16,78,6.2200398445129395],[119,-16,79,6.212827682495117],[119,-15,64,6.098939895629883],[119,-15,65,6.105672836303711],[119,-15,66,6.105361461639404],[119,-15,67,6.099574565887451],[119,-15,68,6.093015193939209],[119,-15,69,6.091035842895508],[119,-15,70,6.095149993896484],[119,-15,71,6.105009078979492],[119,-15,72,6.125766754150391],[119,-15,73,6.157017707824707],[119,-15,74,6.185085296630859],[119,-15,75,6.203451156616211],[119,-15,76,6.214632034301758],[119,-15,77,6.2206244468688965],[119,-15,78,6.2200398445129395],[119,-15,79,6.212827682495117],[119,-14,64,6.098939895629883],[119,-14,65,6.105672836303711],[119,-14,66,6.105361461639404],[119,-14,67,6.099574565887451],[119,-14,68,6.093015193939209],[119,-14,69,6.091035842895508],[119,-14,70,6.095149993896484],[119,-14,71,6.105009078979492],[119,-14,72,6.125766754150391],[119,-14,73,6.157017707824707],[119,-14,74,6.185085296630859],[119,-14,75,6.203451156616211],[119,-14,76,6.214632034301758],[119,-14,77,6.2206244468688965],[119,-14,78,6.2200398445129395],[119,-14,79,6.212827682495117],[119,-13,64,6.098939895629883],[119,-13,65,6.105672836303711],[119,-13,66,6.105361461639404],[119,-13,67,6.099574565887451],[119,-13,68,6.093015193939209],[119,-13,69,6.091035842895508],[119,-13,70,6.095149993896484],[119,-13,71,6.105009078979492],[119,-13,72,6.125766754150391],[119,-13,73,6.157017707824707],[119,-13,74,6.185085296630859],[119,-13,75,6.203451156616211],[119,-13,76,6.214632034301758],[119,-13,77,6.2206244468688965],[119,-13,78,6.2200398445129395],[119,-13,79,6.212827682495117],[119,-12,64,6.098939895629883],[119,-12,65,6.105672836303711],[119,-12,66,6.105361461639404],[119,-12,67,6.099574565887451],[119,-12,68,6.093015193939209],[119,-12,69,6.091035842895508],[119,-12,70,6.095149993896484],[119,-12,71,6.105009078979492],[119,-12,72,6.125766754150391],[119,-12,73,6.157017707824707],[119,-12,74,6.185085296630859],[119,-12,75,6.203451156616211],[119,-12,76,6.214632034301758],[119,-12,77,6.2206244468688965],[119,-12,78,6.2200398445129395],[119,-12,79,6.212827682495117],[119,-11,64,6.098939895629883],[119,-11,65,6.105672836303711],[119,-11,66,6.105361461639404],[119,-11,67,6.099574565887451],[119,-11,68,6.093015193939209],[119,-11,69,6.091035842895508],[119,-11,70,6.095149993896484],[119,-11,71,6.105009078979492],[119,-11,72,6.125766754150391],[119,-11,73,6.157017707824707],[119,-11,74,6.185085296630859],[119,-11,75,6.203451156616211],[119,-11,76,6.214632034301758],[119,-11,77,6.2206244468688965],[119,-11,78,6.2200398445129395],[119,-11,79,6.212827682495117],[119,-10,64,6.098939895629883],[119,-10,65,6.105672836303711],[119,-10,66,6.105361461639404],[119,-10,67,6.099574565887451],[119,-10,68,6.093015193939209],[119,-10,69,6.091035842895508],[119,-10,70,6.095149993896484],[119,-10,71,6.105009078979492],[119,-10,72,6.125766754150391],[119,-10,73,6.157017707824707],[119,-10,74,6.185085296630859],[119,-10,75,6.203451156616211],[119,-10,76,6.214632034301758],[119,-10,77,6.2206244468688965],[119,-10,78,6.2200398445129395],[119,-10,79,6.212827682495117],[119,-9,64,6.098939895629883],[119,-9,65,6.105672836303711],[119,-9,66,6.105361461639404],[119,-9,67,6.099574565887451],[119,-9,68,6.093015193939209],[119,-9,69,6.091035842895508],[119,-9,70,6.095149993896484],[119,-9,71,6.105009078979492],[119,-9,72,6.125766754150391],[119,-9,73,6.157017707824707],[119,-9,74,6.185085296630859],[119,-9,75,6.203451156616211],[119,-9,76,6.214632034301758],[119,-9,77,6.2206244468688965],[119,-9,78,6.2200398445129395],[119,-9,79,6.212827682495117],[119,-8,64,6.098939895629883],[119,-8,65,6.105672836303711],[119,-8,66,6.105361461639404],[119,-8,67,6.099574565887451],[119,-8,68,6.093015193939209],[119,-8,69,6.091035842895508],[119,-8,70,6.095149993896484],[119,-8,71,6.105009078979492],[119,-8,72,6.125766754150391],[119,-8,73,6.157017707824707],[119,-8,74,6.185085296630859],[119,-8,75,6.203451156616211],[119,-8,76,6.214632034301758],[119,-8,77,6.2206244468688965],[119,-8,78,6.2200398445129395],[119,-8,79,6.212827682495117],[119,-7,64,6.098939895629883],[119,-7,65,6.105672836303711],[119,-7,66,6.105361461639404],[119,-7,67,6.099574565887451],[119,-7,68,6.093015193939209],[119,-7,69,6.091035842895508],[119,-7,70,6.095149993896484],[119,-7,71,6.105009078979492],[119,-7,72,6.125766754150391],[119,-7,73,6.157017707824707],[119,-7,74,6.185085296630859],[119,-7,75,6.203451156616211],[119,-7,76,6.214632034301758],[119,-7,77,6.2206244468688965],[119,-7,78,6.2200398445129395],[119,-7,79,6.212827682495117],[119,-6,64,6.098939895629883],[119,-6,65,6.105672836303711],[119,-6,66,6.105361461639404],[119,-6,67,6.099574565887451],[119,-6,68,6.093015193939209],[119,-6,69,6.091035842895508],[119,-6,70,6.095149993896484],[119,-6,71,6.105009078979492],[119,-6,72,6.125766754150391],[119,-6,73,6.157017707824707],[119,-6,74,6.185085296630859],[119,-6,75,6.203451156616211],[119,-6,76,6.214632034301758],[119,-6,77,6.2206244468688965],[119,-6,78,6.2200398445129395],[119,-6,79,6.212827682495117],[119,-5,64,6.098939895629883],[119,-5,65,6.105672836303711],[119,-5,66,6.105361461639404],[119,-5,67,6.099574565887451],[119,-5,68,6.093015193939209],[119,-5,69,6.091035842895508],[119,-5,70,6.095149993896484],[119,-5,71,6.105009078979492],[119,-5,72,6.125766754150391],[119,-5,73,6.157017707824707],[119,-5,74,6.185085296630859],[119,-5,75,6.203451156616211],[119,-5,76,6.214632034301758],[119,-5,77,6.2206244468688965],[119,-5,78,6.2200398445129395],[119,-5,79,6.212827682495117],[119,-4,64,6.098939895629883],[119,-4,65,6.105672836303711],[119,-4,66,6.105361461639404],[119,-4,67,6.099574565887451],[119,-4,68,6.093015193939209],[119,-4,69,6.091035842895508],[119,-4,70,6.095149993896484],[119,-4,71,6.105009078979492],[119,-4,72,6.125766754150391],[119,-4,73,6.157017707824707],[119,-4,74,6.185085296630859],[119,-4,75,6.203451156616211],[119,-4,76,6.214632034301758],[119,-4,77,6.2206244468688965],[119,-4,78,6.2200398445129395],[119,-4,79,6.212827682495117],[119,-3,64,6.098939895629883],[119,-3,65,6.105672836303711],[119,-3,66,6.105361461639404],[119,-3,67,6.099574565887451],[119,-3,68,6.093015193939209],[119,-3,69,6.091035842895508],[119,-3,70,6.095149993896484],[119,-3,71,6.105009078979492],[119,-3,72,6.125766754150391],[119,-3,73,6.157017707824707],[119,-3,74,6.185085296630859],[119,-3,75,6.203451156616211],[119,-3,76,6.214632034301758],[119,-3,77,6.2206244468688965],[119,-3,78,6.2200398445129395],[119,-3,79,6.212827682495117],[119,-2,64,6.098939895629883],[119,-2,65,6.105672836303711],[119,-2,66,6.105361461639404],[119,-2,67,6.099574565887451],[119,-2,68,6.093015193939209],[119,-2,69,6.091035842895508],[119,-2,70,6.095149993896484],[119,-2,71,6.105009078979492],[119,-2,72,6.125766754150391],[119,-2,73,6.157017707824707],[119,-2,74,6.185085296630859],[119,-2,75,6.203451156616211],[119,-2,76,6.214632034301758],[119,-2,77,6.2206244468688965],[119,-2,78,6.2200398445129395],[119,-2,79,6.212827682495117],[119,-1,64,6.098939895629883],[119,-1,65,6.105672836303711],[119,-1,66,6.105361461639404],[119,-1,67,6.099574565887451],[119,-1,68,6.093015193939209],[119,-1,69,6.091035842895508],[119,-1,70,6.095149993896484],[119,-1,71,6.105009078979492],[119,-1,72,6.125766754150391],[119,-1,73,6.157017707824707],[119,-1,74,6.185085296630859],[119,-1,75,6.203451156616211],[119,-1,76,6.214632034301758],[119,-1,77,6.2206244468688965],[119,-1,78,6.2200398445129395],[119,-1,79,6.212827682495117],[119,0,64,6.098939895629883],[119,0,65,6.105672836303711],[119,0,66,6.105361461639404],[119,0,67,6.099574565887451],[119,0,68,6.093015193939209],[119,0,69,6.091035842895508],[119,0,70,6.095149993896484],[119,0,71,6.105009078979492],[119,0,72,6.125766754150391],[119,0,73,6.157017707824707],[119,0,74,6.185085296630859],[119,0,75,6.203451156616211],[119,0,76,6.214632034301758],[119,0,77,6.2206244468688965],[119,0,78,6.2200398445129395],[119,0,79,6.212827682495117],[119,1,64,6.098939895629883],[119,1,65,6.105672836303711],[119,1,66,6.105361461639404],[119,1,67,6.099574565887451],[119,1,68,6.093015193939209],[119,1,69,6.091035842895508],[119,1,70,6.095149993896484],[119,1,71,6.105009078979492],[119,1,72,6.125766754150391],[119,1,73,6.157017707824707],[119,1,74,6.185085296630859],[119,1,75,6.203451156616211],[119,1,76,6.214632034301758],[119,1,77,6.2206244468688965],[119,1,78,6.2200398445129395],[119,1,79,6.212827682495117],[119,2,64,6.098939895629883],[119,2,65,6.105672836303711],[119,2,66,6.105361461639404],[119,2,67,6.099574565887451],[119,2,68,6.093015193939209],[119,2,69,6.091035842895508],[119,2,70,6.095149993896484],[119,2,71,6.105009078979492],[119,2,72,6.125766754150391],[119,2,73,6.157017707824707],[119,2,74,6.185085296630859],[119,2,75,6.203451156616211],[119,2,76,6.214632034301758],[119,2,77,6.2206244468688965],[119,2,78,6.2200398445129395],[119,2,79,6.212827682495117],[119,3,64,6.098939895629883],[119,3,65,6.105672836303711],[119,3,66,6.105361461639404],[119,3,67,6.099574565887451],[119,3,68,6.093015193939209],[119,3,69,6.091035842895508],[119,3,70,6.095149993896484],[119,3,71,6.105009078979492],[119,3,72,6.125766754150391],[119,3,73,6.157017707824707],[119,3,74,6.185085296630859],[119,3,75,6.203451156616211],[119,3,76,6.214632034301758],[119,3,77,6.2206244468688965],[119,3,78,6.2200398445129395],[119,3,79,6.212827682495117],[119,4,64,6.098939895629883],[119,4,65,6.105672836303711],[119,4,66,6.105361461639404],[119,4,67,6.099574565887451],[119,4,68,6.093015193939209],[119,4,69,6.091035842895508],[119,4,70,6.095149993896484],[119,4,71,6.105009078979492],[119,4,72,6.125766754150391],[119,4,73,6.157017707824707],[119,4,74,6.185085296630859],[119,4,75,6.203451156616211],[119,4,76,6.214632034301758],[119,4,77,6.2206244468688965],[119,4,78,6.2200398445129395],[119,4,79,6.212827682495117],[119,5,64,6.098939895629883],[119,5,65,6.105672836303711],[119,5,66,6.105361461639404],[119,5,67,6.099574565887451],[119,5,68,6.093015193939209],[119,5,69,6.091035842895508],[119,5,70,6.095149993896484],[119,5,71,6.105009078979492],[119,5,72,6.125766754150391],[119,5,73,6.157017707824707],[119,5,74,6.185085296630859],[119,5,75,6.203451156616211],[119,5,76,6.214632034301758],[119,5,77,6.2206244468688965],[119,5,78,6.2200398445129395],[119,5,79,6.212827682495117],[119,6,64,6.098939895629883],[119,6,65,6.105672836303711],[119,6,66,6.105361461639404],[119,6,67,6.099574565887451],[119,6,68,6.093015193939209],[119,6,69,6.091035842895508],[119,6,70,6.095149993896484],[119,6,71,6.105009078979492],[119,6,72,6.125766754150391],[119,6,73,6.157017707824707],[119,6,74,6.185085296630859],[119,6,75,6.203451156616211],[119,6,76,6.214632034301758],[119,6,77,6.2206244468688965],[119,6,78,6.2200398445129395],[119,6,79,6.212827682495117],[119,7,64,6.098939895629883],[119,7,65,6.105672836303711],[119,7,66,6.105361461639404],[119,7,67,6.099574565887451],[119,7,68,6.093015193939209],[119,7,69,6.091035842895508],[119,7,70,6.095149993896484],[119,7,71,6.105009078979492],[119,7,72,6.125766754150391],[119,7,73,6.157017707824707],[119,7,74,6.185085296630859],[119,7,75,6.203451156616211],[119,7,76,6.214632034301758],[119,7,77,6.2206244468688965],[119,7,78,6.2200398445129395],[119,7,79,6.212827682495117],[119,8,64,6.098939895629883],[119,8,65,6.105672836303711],[119,8,66,6.105361461639404],[119,8,67,6.099574565887451],[119,8,68,6.093015193939209],[119,8,69,6.091035842895508],[119,8,70,6.095149993896484],[119,8,71,6.105009078979492],[119,8,72,6.125766754150391],[119,8,73,6.157017707824707],[119,8,74,6.185085296630859],[119,8,75,6.203451156616211],[119,8,76,6.214632034301758],[119,8,77,6.2206244468688965],[119,8,78,6.2200398445129395],[119,8,79,6.212827682495117],[119,9,64,6.098939895629883],[119,9,65,6.105672836303711],[119,9,66,6.105361461639404],[119,9,67,6.099574565887451],[119,9,68,6.093015193939209],[119,9,69,6.091035842895508],[119,9,70,6.095149993896484],[119,9,71,6.105009078979492],[119,9,72,6.125766754150391],[119,9,73,6.157017707824707],[119,9,74,6.185085296630859],[119,9,75,6.203451156616211],[119,9,76,6.214632034301758],[119,9,77,6.2206244468688965],[119,9,78,6.2200398445129395],[119,9,79,6.212827682495117],[119,10,64,6.098939895629883],[119,10,65,6.105672836303711],[119,10,66,6.105361461639404],[119,10,67,6.099574565887451],[119,10,68,6.093015193939209],[119,10,69,6.091035842895508],[119,10,70,6.095149993896484],[119,10,71,6.105009078979492],[119,10,72,6.125766754150391],[119,10,73,6.157017707824707],[119,10,74,6.185085296630859],[119,10,75,6.203451156616211],[119,10,76,6.214632034301758],[119,10,77,6.2206244468688965],[119,10,78,6.2200398445129395],[119,10,79,6.212827682495117],[119,11,64,6.098939895629883],[119,11,65,6.105672836303711],[119,11,66,6.105361461639404],[119,11,67,6.099574565887451],[119,11,68,6.093015193939209],[119,11,69,6.091035842895508],[119,11,70,6.095149993896484],[119,11,71,6.105009078979492],[119,11,72,6.125766754150391],[119,11,73,6.157017707824707],[119,11,74,6.185085296630859],[119,11,75,6.203451156616211],[119,11,76,6.214632034301758],[119,11,77,6.2206244468688965],[119,11,78,6.2200398445129395],[119,11,79,6.212827682495117],[119,12,64,6.098939895629883],[119,12,65,6.105672836303711],[119,12,66,6.105361461639404],[119,12,67,6.099574565887451],[119,12,68,6.093015193939209],[119,12,69,6.091035842895508],[119,12,70,6.095149993896484],[119,12,71,6.105009078979492],[119,12,72,6.125766754150391],[119,12,73,6.157017707824707],[119,12,74,6.185085296630859],[119,12,75,6.203451156616211],[119,12,76,6.214632034301758],[119,12,77,6.2206244468688965],[119,12,78,6.2200398445129395],[119,12,79,6.212827682495117],[119,13,64,6.098939895629883],[119,13,65,6.105672836303711],[119,13,66,6.105361461639404],[119,13,67,6.099574565887451],[119,13,68,6.093015193939209],[119,13,69,6.091035842895508],[119,13,70,6.095149993896484],[119,13,71,6.105009078979492],[119,13,72,6.125766754150391],[119,13,73,6.157017707824707],[119,13,74,6.185085296630859],[119,13,75,6.203451156616211],[119,13,76,6.214632034301758],[119,13,77,6.2206244468688965],[119,13,78,6.2200398445129395],[119,13,79,6.212827682495117],[119,14,64,6.098939895629883],[119,14,65,6.105672836303711],[119,14,66,6.105361461639404],[119,14,67,6.099574565887451],[119,14,68,6.093015193939209],[119,14,69,6.091035842895508],[119,14,70,6.095149993896484],[119,14,71,6.105009078979492],[119,14,72,6.125766754150391],[119,14,73,6.157017707824707],[119,14,74,6.185085296630859],[119,14,75,6.203451156616211],[119,14,76,6.214632034301758],[119,14,77,6.2206244468688965],[119,14,78,6.2200398445129395],[119,14,79,6.212827682495117],[119,15,64,6.098939895629883],[119,15,65,6.105672836303711],[119,15,66,6.105361461639404],[119,15,67,6.099574565887451],[119,15,68,6.093015193939209],[119,15,69,6.091035842895508],[119,15,70,6.095149993896484],[119,15,71,6.105009078979492],[119,15,72,6.125766754150391],[119,15,73,6.157017707824707],[119,15,74,6.185085296630859],[119,15,75,6.203451156616211],[119,15,76,6.214632034301758],[119,15,77,6.2206244468688965],[119,15,78,6.2200398445129395],[119,15,79,6.212827682495117],[119,16,64,6.098939895629883],[119,16,65,6.105672836303711],[119,16,66,6.105361461639404],[119,16,67,6.099574565887451],[119,16,68,6.093015193939209],[119,16,69,6.091035842895508],[119,16,70,6.095149993896484],[119,16,71,6.105009078979492],[119,16,72,6.125766754150391],[119,16,73,6.157017707824707],[119,16,74,6.185085296630859],[119,16,75,6.203451156616211],[119,16,76,6.214632034301758],[119,16,77,6.2206244468688965],[119,16,78,6.2200398445129395],[119,16,79,6.212827682495117],[119,17,64,6.098939895629883],[119,17,65,6.105672836303711],[119,17,66,6.105361461639404],[119,17,67,6.099574565887451],[119,17,68,6.093015193939209],[119,17,69,6.091035842895508],[119,17,70,6.095149993896484],[119,17,71,6.105009078979492],[119,17,72,6.125766754150391],[119,17,73,6.157017707824707],[119,17,74,6.185085296630859],[119,17,75,6.203451156616211],[119,17,76,6.214632034301758],[119,17,77,6.2206244468688965],[119,17,78,6.2200398445129395],[119,17,79,6.212827682495117],[119,18,64,6.098939895629883],[119,18,65,6.105672836303711],[119,18,66,6.105361461639404],[119,18,67,6.099574565887451],[119,18,68,6.093015193939209],[119,18,69,6.091035842895508],[119,18,70,6.095149993896484],[119,18,71,6.105009078979492],[119,18,72,6.125766754150391],[119,18,73,6.157017707824707],[119,18,74,6.185085296630859],[119,18,75,6.203451156616211],[119,18,76,6.214632034301758],[119,18,77,6.2206244468688965],[119,18,78,6.2200398445129395],[119,18,79,6.212827682495117],[119,19,64,6.098939895629883],[119,19,65,6.105672836303711],[119,19,66,6.105361461639404],[119,19,67,6.099574565887451],[119,19,68,6.093015193939209],[119,19,69,6.091035842895508],[119,19,70,6.095149993896484],[119,19,71,6.105009078979492],[119,19,72,6.125766754150391],[119,19,73,6.157017707824707],[119,19,74,6.185085296630859],[119,19,75,6.203451156616211],[119,19,76,6.214632034301758],[119,19,77,6.2206244468688965],[119,19,78,6.2200398445129395],[119,19,79,6.212827682495117],[119,20,64,6.098939895629883],[119,20,65,6.105672836303711],[119,20,66,6.105361461639404],[119,20,67,6.099574565887451],[119,20,68,6.093015193939209],[119,20,69,6.091035842895508],[119,20,70,6.095149993896484],[119,20,71,6.105009078979492],[119,20,72,6.125766754150391],[119,20,73,6.157017707824707],[119,20,74,6.185085296630859],[119,20,75,6.203451156616211],[119,20,76,6.214632034301758],[119,20,77,6.2206244468688965],[119,20,78,6.2200398445129395],[119,20,79,6.212827682495117],[119,21,64,6.098939895629883],[119,21,65,6.105672836303711],[119,21,66,6.105361461639404],[119,21,67,6.099574565887451],[119,21,68,6.093015193939209],[119,21,69,6.091035842895508],[119,21,70,6.095149993896484],[119,21,71,6.105009078979492],[119,21,72,6.125766754150391],[119,21,73,6.157017707824707],[119,21,74,6.185085296630859],[119,21,75,6.203451156616211],[119,21,76,6.214632034301758],[119,21,77,6.2206244468688965],[119,21,78,6.2200398445129395],[119,21,79,6.212827682495117],[119,22,64,6.098939895629883],[119,22,65,6.105672836303711],[119,22,66,6.105361461639404],[119,22,67,6.099574565887451],[119,22,68,6.093015193939209],[119,22,69,6.091035842895508],[119,22,70,6.095149993896484],[119,22,71,6.105009078979492],[119,22,72,6.125766754150391],[119,22,73,6.157017707824707],[119,22,74,6.185085296630859],[119,22,75,6.203451156616211],[119,22,76,6.214632034301758],[119,22,77,6.2206244468688965],[119,22,78,6.2200398445129395],[119,22,79,6.212827682495117],[119,23,64,6.098939895629883],[119,23,65,6.105672836303711],[119,23,66,6.105361461639404],[119,23,67,6.099574565887451],[119,23,68,6.093015193939209],[119,23,69,6.091035842895508],[119,23,70,6.095149993896484],[119,23,71,6.105009078979492],[119,23,72,6.125766754150391],[119,23,73,6.157017707824707],[119,23,74,6.185085296630859],[119,23,75,6.203451156616211],[119,23,76,6.214632034301758],[119,23,77,6.2206244468688965],[119,23,78,6.2200398445129395],[119,23,79,6.212827682495117],[119,24,64,6.098939895629883],[119,24,65,6.105672836303711],[119,24,66,6.105361461639404],[119,24,67,6.099574565887451],[119,24,68,6.093015193939209],[119,24,69,6.091035842895508],[119,24,70,6.095149993896484],[119,24,71,6.105009078979492],[119,24,72,6.125766754150391],[119,24,73,6.157017707824707],[119,24,74,6.185085296630859],[119,24,75,6.203451156616211],[119,24,76,6.214632034301758],[119,24,77,6.2206244468688965],[119,24,78,6.2200398445129395],[119,24,79,6.212827682495117],[119,25,64,6.098939895629883],[119,25,65,6.105672836303711],[119,25,66,6.105361461639404],[119,25,67,6.099574565887451],[119,25,68,6.093015193939209],[119,25,69,6.091035842895508],[119,25,70,6.095149993896484],[119,25,71,6.105009078979492],[119,25,72,6.125766754150391],[119,25,73,6.157017707824707],[119,25,74,6.185085296630859],[119,25,75,6.203451156616211],[119,25,76,6.214632034301758],[119,25,77,6.2206244468688965],[119,25,78,6.2200398445129395],[119,25,79,6.212827682495117],[119,26,64,6.098939895629883],[119,26,65,6.105672836303711],[119,26,66,6.105361461639404],[119,26,67,6.099574565887451],[119,26,68,6.093015193939209],[119,26,69,6.091035842895508],[119,26,70,6.095149993896484],[119,26,71,6.105009078979492],[119,26,72,6.125766754150391],[119,26,73,6.157017707824707],[119,26,74,6.185085296630859],[119,26,75,6.203451156616211],[119,26,76,6.214632034301758],[119,26,77,6.2206244468688965],[119,26,78,6.2200398445129395],[119,26,79,6.212827682495117],[119,27,64,6.098939895629883],[119,27,65,6.105672836303711],[119,27,66,6.105361461639404],[119,27,67,6.099574565887451],[119,27,68,6.093015193939209],[119,27,69,6.091035842895508],[119,27,70,6.095149993896484],[119,27,71,6.105009078979492],[119,27,72,6.125766754150391],[119,27,73,6.157017707824707],[119,27,74,6.185085296630859],[119,27,75,6.203451156616211],[119,27,76,6.214632034301758],[119,27,77,6.2206244468688965],[119,27,78,6.2200398445129395],[119,27,79,6.212827682495117],[119,28,64,6.098939895629883],[119,28,65,6.105672836303711],[119,28,66,6.105361461639404],[119,28,67,6.099574565887451],[119,28,68,6.093015193939209],[119,28,69,6.091035842895508],[119,28,70,6.095149993896484],[119,28,71,6.105009078979492],[119,28,72,6.125766754150391],[119,28,73,6.157017707824707],[119,28,74,6.185085296630859],[119,28,75,6.203451156616211],[119,28,76,6.214632034301758],[119,28,77,6.2206244468688965],[119,28,78,6.2200398445129395],[119,28,79,6.212827682495117],[119,29,64,6.098939895629883],[119,29,65,6.105672836303711],[119,29,66,6.105361461639404],[119,29,67,6.099574565887451],[119,29,68,6.093015193939209],[119,29,69,6.091035842895508],[119,29,70,6.095149993896484],[119,29,71,6.105009078979492],[119,29,72,6.125766754150391],[119,29,73,6.157017707824707],[119,29,74,6.185085296630859],[119,29,75,6.203451156616211],[119,29,76,6.214632034301758],[119,29,77,6.2206244468688965],[119,29,78,6.2200398445129395],[119,29,79,6.212827682495117],[119,30,64,6.098939895629883],[119,30,65,6.105672836303711],[119,30,66,6.105361461639404],[119,30,67,6.099574565887451],[119,30,68,6.093015193939209],[119,30,69,6.091035842895508],[119,30,70,6.095149993896484],[119,30,71,6.105009078979492],[119,30,72,6.125766754150391],[119,30,73,6.157017707824707],[119,30,74,6.185085296630859],[119,30,75,6.203451156616211],[119,30,76,6.214632034301758],[119,30,77,6.2206244468688965],[119,30,78,6.2200398445129395],[119,30,79,6.212827682495117],[119,31,64,6.098939895629883],[119,31,65,6.105672836303711],[119,31,66,6.105361461639404],[119,31,67,6.099574565887451],[119,31,68,6.093015193939209],[119,31,69,6.091035842895508],[119,31,70,6.095149993896484],[119,31,71,6.105009078979492],[119,31,72,6.125766754150391],[119,31,73,6.157017707824707],[119,31,74,6.185085296630859],[119,31,75,6.203451156616211],[119,31,76,6.214632034301758],[119,31,77,6.2206244468688965],[119,31,78,6.2200398445129395],[119,31,79,6.212827682495117],[119,32,64,6.098939895629883],[119,32,65,6.105672836303711],[119,32,66,6.105361461639404],[119,32,67,6.099574565887451],[119,32,68,6.093015193939209],[119,32,69,6.091035842895508],[119,32,70,6.095149993896484],[119,32,71,6.105009078979492],[119,32,72,6.125766754150391],[119,32,73,6.157017707824707],[119,32,74,6.185085296630859],[119,32,75,6.203451156616211],[119,32,76,6.214632034301758],[119,32,77,6.2206244468688965],[119,32,78,6.2200398445129395],[119,32,79,6.212827682495117],[119,33,64,6.098939895629883],[119,33,65,6.105672836303711],[119,33,66,6.105361461639404],[119,33,67,6.099574565887451],[119,33,68,6.093015193939209],[119,33,69,6.091035842895508],[119,33,70,6.095149993896484],[119,33,71,6.105009078979492],[119,33,72,6.125766754150391],[119,33,73,6.157017707824707],[119,33,74,6.185085296630859],[119,33,75,6.203451156616211],[119,33,76,6.214632034301758],[119,33,77,6.2206244468688965],[119,33,78,6.2200398445129395],[119,33,79,6.212827682495117],[119,34,64,6.098939895629883],[119,34,65,6.105672836303711],[119,34,66,6.105361461639404],[119,34,67,6.099574565887451],[119,34,68,6.093015193939209],[119,34,69,6.091035842895508],[119,34,70,6.095149993896484],[119,34,71,6.105009078979492],[119,34,72,6.125766754150391],[119,34,73,6.157017707824707],[119,34,74,6.185085296630859],[119,34,75,6.203451156616211],[119,34,76,6.214632034301758],[119,34,77,6.2206244468688965],[119,34,78,6.2200398445129395],[119,34,79,6.212827682495117],[119,35,64,6.098939895629883],[119,35,65,6.105672836303711],[119,35,66,6.105361461639404],[119,35,67,6.099574565887451],[119,35,68,6.093015193939209],[119,35,69,6.091035842895508],[119,35,70,6.095149993896484],[119,35,71,6.105009078979492],[119,35,72,6.125766754150391],[119,35,73,6.157017707824707],[119,35,74,6.185085296630859],[119,35,75,6.203451156616211],[119,35,76,6.214632034301758],[119,35,77,6.2206244468688965],[119,35,78,6.2200398445129395],[119,35,79,6.212827682495117],[119,36,64,6.098939895629883],[119,36,65,6.105672836303711],[119,36,66,6.105361461639404],[119,36,67,6.099574565887451],[119,36,68,6.093015193939209],[119,36,69,6.091035842895508],[119,36,70,6.095149993896484],[119,36,71,6.105009078979492],[119,36,72,6.125766754150391],[119,36,73,6.157017707824707],[119,36,74,6.185085296630859],[119,36,75,6.203451156616211],[119,36,76,6.214632034301758],[119,36,77,6.2206244468688965],[119,36,78,6.2200398445129395],[119,36,79,6.212827682495117],[119,37,64,6.098939895629883],[119,37,65,6.105672836303711],[119,37,66,6.105361461639404],[119,37,67,6.099574565887451],[119,37,68,6.093015193939209],[119,37,69,6.091035842895508],[119,37,70,6.095149993896484],[119,37,71,6.105009078979492],[119,37,72,6.125766754150391],[119,37,73,6.157017707824707],[119,37,74,6.185085296630859],[119,37,75,6.203451156616211],[119,37,76,6.214632034301758],[119,37,77,6.2206244468688965],[119,37,78,6.2200398445129395],[119,37,79,6.212827682495117],[119,38,64,6.098939895629883],[119,38,65,6.105672836303711],[119,38,66,6.105361461639404],[119,38,67,6.099574565887451],[119,38,68,6.093015193939209],[119,38,69,6.091035842895508],[119,38,70,6.095149993896484],[119,38,71,6.105009078979492],[119,38,72,6.125766754150391],[119,38,73,6.157017707824707],[119,38,74,6.185085296630859],[119,38,75,6.203451156616211],[119,38,76,6.214632034301758],[119,38,77,6.2206244468688965],[119,38,78,6.2200398445129395],[119,38,79,6.212827682495117],[119,39,64,6.098939895629883],[119,39,65,6.105672836303711],[119,39,66,6.105361461639404],[119,39,67,6.099574565887451],[119,39,68,6.093015193939209],[119,39,69,6.091035842895508],[119,39,70,6.095149993896484],[119,39,71,6.105009078979492],[119,39,72,6.125766754150391],[119,39,73,6.157017707824707],[119,39,74,6.185085296630859],[119,39,75,6.203451156616211],[119,39,76,6.214632034301758],[119,39,77,6.2206244468688965],[119,39,78,6.2200398445129395],[119,39,79,6.212827682495117],[119,40,64,6.098939895629883],[119,40,65,6.105672836303711],[119,40,66,6.105361461639404],[119,40,67,6.099574565887451],[119,40,68,6.093015193939209],[119,40,69,6.091035842895508],[119,40,70,6.095149993896484],[119,40,71,6.105009078979492],[119,40,72,6.125766754150391],[119,40,73,6.157017707824707],[119,40,74,6.185085296630859],[119,40,75,6.203451156616211],[119,40,76,6.214632034301758],[119,40,77,6.2206244468688965],[119,40,78,6.2200398445129395],[119,40,79,6.212827682495117],[119,41,64,6.098939895629883],[119,41,65,6.105672836303711],[119,41,66,6.105361461639404],[119,41,67,6.099574565887451],[119,41,68,6.093015193939209],[119,41,69,6.091035842895508],[119,41,70,6.095149993896484],[119,41,71,6.105009078979492],[119,41,72,6.125766754150391],[119,41,73,6.157017707824707],[119,41,74,6.185085296630859],[119,41,75,6.203451156616211],[119,41,76,6.214632034301758],[119,41,77,6.2206244468688965],[119,41,78,6.2200398445129395],[119,41,79,6.212827682495117],[119,42,64,6.098939895629883],[119,42,65,6.105672836303711],[119,42,66,6.105361461639404],[119,42,67,6.099574565887451],[119,42,68,6.093015193939209],[119,42,69,6.091035842895508],[119,42,70,6.095149993896484],[119,42,71,6.105009078979492],[119,42,72,6.125766754150391],[119,42,73,6.157017707824707],[119,42,74,6.185085296630859],[119,42,75,6.203451156616211],[119,42,76,6.214632034301758],[119,42,77,6.2206244468688965],[119,42,78,6.2200398445129395],[119,42,79,6.212827682495117],[119,43,64,6.098939895629883],[119,43,65,6.105672836303711],[119,43,66,6.105361461639404],[119,43,67,6.099574565887451],[119,43,68,6.093015193939209],[119,43,69,6.091035842895508],[119,43,70,6.095149993896484],[119,43,71,6.105009078979492],[119,43,72,6.125766754150391],[119,43,73,6.157017707824707],[119,43,74,6.185085296630859],[119,43,75,6.203451156616211],[119,43,76,6.214632034301758],[119,43,77,6.2206244468688965],[119,43,78,6.2200398445129395],[119,43,79,6.212827682495117],[119,44,64,6.098939895629883],[119,44,65,6.105672836303711],[119,44,66,6.105361461639404],[119,44,67,6.099574565887451],[119,44,68,6.093015193939209],[119,44,69,6.091035842895508],[119,44,70,6.095149993896484],[119,44,71,6.105009078979492],[119,44,72,6.125766754150391],[119,44,73,6.157017707824707],[119,44,74,6.185085296630859],[119,44,75,6.203451156616211],[119,44,76,6.214632034301758],[119,44,77,6.2206244468688965],[119,44,78,6.2200398445129395],[119,44,79,6.212827682495117],[119,45,64,6.098939895629883],[119,45,65,6.105672836303711],[119,45,66,6.105361461639404],[119,45,67,6.099574565887451],[119,45,68,6.093015193939209],[119,45,69,6.091035842895508],[119,45,70,6.095149993896484],[119,45,71,6.105009078979492],[119,45,72,6.125766754150391],[119,45,73,6.157017707824707],[119,45,74,6.185085296630859],[119,45,75,6.203451156616211],[119,45,76,6.214632034301758],[119,45,77,6.2206244468688965],[119,45,78,6.2200398445129395],[119,45,79,6.212827682495117],[119,46,64,6.098939895629883],[119,46,65,6.105672836303711],[119,46,66,6.105361461639404],[119,46,67,6.099574565887451],[119,46,68,6.093015193939209],[119,46,69,6.091035842895508],[119,46,70,6.095149993896484],[119,46,71,6.105009078979492],[119,46,72,6.125766754150391],[119,46,73,6.157017707824707],[119,46,74,6.185085296630859],[119,46,75,6.203451156616211],[119,46,76,6.214632034301758],[119,46,77,6.2206244468688965],[119,46,78,6.2200398445129395],[119,46,79,6.212827682495117],[119,47,64,6.098939895629883],[119,47,65,6.105672836303711],[119,47,66,6.105361461639404],[119,47,67,6.099574565887451],[119,47,68,6.093015193939209],[119,47,69,6.091035842895508],[119,47,70,6.095149993896484],[119,47,71,6.105009078979492],[119,47,72,6.125766754150391],[119,47,73,6.157017707824707],[119,47,74,6.185085296630859],[119,47,75,6.203451156616211],[119,47,76,6.214632034301758],[119,47,77,6.2206244468688965],[119,47,78,6.2200398445129395],[119,47,79,6.212827682495117],[119,48,64,6.098939895629883],[119,48,65,6.105672836303711],[119,48,66,6.105361461639404],[119,48,67,6.099574565887451],[119,48,68,6.093015193939209],[119,48,69,6.091035842895508],[119,48,70,6.095149993896484],[119,48,71,6.105009078979492],[119,48,72,6.125766754150391],[119,48,73,6.157017707824707],[119,48,74,6.185085296630859],[119,48,75,6.203451156616211],[119,48,76,6.214632034301758],[119,48,77,6.2206244468688965],[119,48,78,6.2200398445129395],[119,48,79,6.212827682495117],[119,49,64,6.098939895629883],[119,49,65,6.105672836303711],[119,49,66,6.105361461639404],[119,49,67,6.099574565887451],[119,49,68,6.093015193939209],[119,49,69,6.091035842895508],[119,49,70,6.095149993896484],[119,49,71,6.105009078979492],[119,49,72,6.125766754150391],[119,49,73,6.157017707824707],[119,49,74,6.185085296630859],[119,49,75,6.203451156616211],[119,49,76,6.214632034301758],[119,49,77,6.2206244468688965],[119,49,78,6.2200398445129395],[119,49,79,6.212827682495117],[119,50,64,6.098939895629883],[119,50,65,6.105672836303711],[119,50,66,6.105361461639404],[119,50,67,6.099574565887451],[119,50,68,6.093015193939209],[119,50,69,6.091035842895508],[119,50,70,6.095149993896484],[119,50,71,6.105009078979492],[119,50,72,6.125766754150391],[119,50,73,6.157017707824707],[119,50,74,6.185085296630859],[119,50,75,6.203451156616211],[119,50,76,6.214632034301758],[119,50,77,6.2206244468688965],[119,50,78,6.2200398445129395],[119,50,79,6.212827682495117],[119,51,64,6.098939895629883],[119,51,65,6.105672836303711],[119,51,66,6.105361461639404],[119,51,67,6.099574565887451],[119,51,68,6.093015193939209],[119,51,69,6.091035842895508],[119,51,70,6.095149993896484],[119,51,71,6.105009078979492],[119,51,72,6.125766754150391],[119,51,73,6.157017707824707],[119,51,74,6.185085296630859],[119,51,75,6.203451156616211],[119,51,76,6.214632034301758],[119,51,77,6.2206244468688965],[119,51,78,6.2200398445129395],[119,51,79,6.212827682495117],[119,52,64,6.098939895629883],[119,52,65,6.105672836303711],[119,52,66,6.105361461639404],[119,52,67,6.099574565887451],[119,52,68,6.093015193939209],[119,52,69,6.091035842895508],[119,52,70,6.095149993896484],[119,52,71,6.105009078979492],[119,52,72,6.125766754150391],[119,52,73,6.157017707824707],[119,52,74,6.185085296630859],[119,52,75,6.203451156616211],[119,52,76,6.214632034301758],[119,52,77,6.2206244468688965],[119,52,78,6.2200398445129395],[119,52,79,6.212827682495117],[119,53,64,6.098939895629883],[119,53,65,6.105672836303711],[119,53,66,6.105361461639404],[119,53,67,6.099574565887451],[119,53,68,6.093015193939209],[119,53,69,6.091035842895508],[119,53,70,6.095149993896484],[119,53,71,6.105009078979492],[119,53,72,6.125766754150391],[119,53,73,6.157017707824707],[119,53,74,6.185085296630859],[119,53,75,6.203451156616211],[119,53,76,6.214632034301758],[119,53,77,6.2206244468688965],[119,53,78,6.2200398445129395],[119,53,79,6.212827682495117],[119,54,64,6.098939895629883],[119,54,65,6.105672836303711],[119,54,66,6.105361461639404],[119,54,67,6.099574565887451],[119,54,68,6.093015193939209],[119,54,69,6.091035842895508],[119,54,70,6.095149993896484],[119,54,71,6.105009078979492],[119,54,72,6.125766754150391],[119,54,73,6.157017707824707],[119,54,74,6.185085296630859],[119,54,75,6.203451156616211],[119,54,76,6.214632034301758],[119,54,77,6.2206244468688965],[119,54,78,6.2200398445129395],[119,54,79,6.212827682495117],[119,55,64,6.098939895629883],[119,55,65,6.105672836303711],[119,55,66,6.105361461639404],[119,55,67,6.099574565887451],[119,55,68,6.093015193939209],[119,55,69,6.091035842895508],[119,55,70,6.095149993896484],[119,55,71,6.105009078979492],[119,55,72,6.125766754150391],[119,55,73,6.157017707824707],[119,55,74,6.185085296630859],[119,55,75,6.203451156616211],[119,55,76,6.214632034301758],[119,55,77,6.2206244468688965],[119,55,78,6.2200398445129395],[119,55,79,6.212827682495117],[119,56,64,6.098939895629883],[119,56,65,6.105672836303711],[119,56,66,6.105361461639404],[119,56,67,6.099574565887451],[119,56,68,6.093015193939209],[119,56,69,6.091035842895508],[119,56,70,6.095149993896484],[119,56,71,6.105009078979492],[119,56,72,6.125766754150391],[119,56,73,6.157017707824707],[119,56,74,6.185085296630859],[119,56,75,6.203451156616211],[119,56,76,6.214632034301758],[119,56,77,6.2206244468688965],[119,56,78,6.2200398445129395],[119,56,79,6.212827682495117],[119,57,64,6.098939895629883],[119,57,65,6.105672836303711],[119,57,66,6.105361461639404],[119,57,67,6.099574565887451],[119,57,68,6.093015193939209],[119,57,69,6.091035842895508],[119,57,70,6.095149993896484],[119,57,71,6.105009078979492],[119,57,72,6.125766754150391],[119,57,73,6.157017707824707],[119,57,74,6.185085296630859],[119,57,75,6.203451156616211],[119,57,76,6.214632034301758],[119,57,77,6.2206244468688965],[119,57,78,6.2200398445129395],[119,57,79,6.212827682495117],[119,58,64,6.098939895629883],[119,58,65,6.105672836303711],[119,58,66,6.105361461639404],[119,58,67,6.099574565887451],[119,58,68,6.093015193939209],[119,58,69,6.091035842895508],[119,58,70,6.095149993896484],[119,58,71,6.105009078979492],[119,58,72,6.125766754150391],[119,58,73,6.157017707824707],[119,58,74,6.185085296630859],[119,58,75,6.203451156616211],[119,58,76,6.214632034301758],[119,58,77,6.2206244468688965],[119,58,78,6.2200398445129395],[119,58,79,6.212827682495117],[119,59,64,6.098939895629883],[119,59,65,6.105672836303711],[119,59,66,6.105361461639404],[119,59,67,6.099574565887451],[119,59,68,6.093015193939209],[119,59,69,6.091035842895508],[119,59,70,6.095149993896484],[119,59,71,6.105009078979492],[119,59,72,6.125766754150391],[119,59,73,6.157017707824707],[119,59,74,6.185085296630859],[119,59,75,6.203451156616211],[119,59,76,6.214632034301758],[119,59,77,6.2206244468688965],[119,59,78,6.2200398445129395],[119,59,79,6.212827682495117],[119,60,64,6.098939895629883],[119,60,65,6.105672836303711],[119,60,66,6.105361461639404],[119,60,67,6.099574565887451],[119,60,68,6.093015193939209],[119,60,69,6.091035842895508],[119,60,70,6.095149993896484],[119,60,71,6.105009078979492],[119,60,72,6.125766754150391],[119,60,73,6.157017707824707],[119,60,74,6.185085296630859],[119,60,75,6.203451156616211],[119,60,76,6.214632034301758],[119,60,77,6.2206244468688965],[119,60,78,6.2200398445129395],[119,60,79,6.212827682495117],[119,61,64,6.098939895629883],[119,61,65,6.105672836303711],[119,61,66,6.105361461639404],[119,61,67,6.099574565887451],[119,61,68,6.093015193939209],[119,61,69,6.091035842895508],[119,61,70,6.095149993896484],[119,61,71,6.105009078979492],[119,61,72,6.125766754150391],[119,61,73,6.157017707824707],[119,61,74,6.185085296630859],[119,61,75,6.203451156616211],[119,61,76,6.214632034301758],[119,61,77,6.2206244468688965],[119,61,78,6.2200398445129395],[119,61,79,6.212827682495117],[119,62,64,6.098939895629883],[119,62,65,6.105672836303711],[119,62,66,6.105361461639404],[119,62,67,6.099574565887451],[119,62,68,6.093015193939209],[119,62,69,6.091035842895508],[119,62,70,6.095149993896484],[119,62,71,6.105009078979492],[119,62,72,6.125766754150391],[119,62,73,6.157017707824707],[119,62,74,6.185085296630859],[119,62,75,6.203451156616211],[119,62,76,6.214632034301758],[119,62,77,6.2206244468688965],[119,62,78,6.2200398445129395],[119,62,79,6.212827682495117],[119,63,64,6.098939895629883],[119,63,65,6.105672836303711],[119,63,66,6.105361461639404],[119,63,67,6.099574565887451],[119,63,68,6.093015193939209],[119,63,69,6.091035842895508],[119,63,70,6.095149993896484],[119,63,71,6.105009078979492],[119,63,72,6.125766754150391],[119,63,73,6.157017707824707],[119,63,74,6.185085296630859],[119,63,75,6.203451156616211],[119,63,76,6.214632034301758],[119,63,77,6.2206244468688965],[119,63,78,6.2200398445129395],[119,63,79,6.212827682495117],[119,64,64,6.098939895629883],[119,64,65,6.105672836303711],[119,64,66,6.105361461639404],[119,64,67,6.099574565887451],[119,64,68,6.093015193939209],[119,64,69,6.091035842895508],[119,64,70,6.095149993896484],[119,64,71,6.105009078979492],[119,64,72,6.125766754150391],[119,64,73,6.157017707824707],[119,64,74,6.185085296630859],[119,64,75,6.203451156616211],[119,64,76,6.214632034301758],[119,64,77,6.2206244468688965],[119,64,78,6.2200398445129395],[119,64,79,6.212827682495117],[119,65,64,6.098939895629883],[119,65,65,6.105672836303711],[119,65,66,6.105361461639404],[119,65,67,6.099574565887451],[119,65,68,6.093015193939209],[119,65,69,6.091035842895508],[119,65,70,6.095149993896484],[119,65,71,6.105009078979492],[119,65,72,6.125766754150391],[119,65,73,6.157017707824707],[119,65,74,6.185085296630859],[119,65,75,6.203451156616211],[119,65,76,6.214632034301758],[119,65,77,6.2206244468688965],[119,65,78,6.2200398445129395],[119,65,79,6.212827682495117],[119,66,64,6.098939895629883],[119,66,65,6.105672836303711],[119,66,66,6.105361461639404],[119,66,67,6.099574565887451],[119,66,68,6.093015193939209],[119,66,69,6.091035842895508],[119,66,70,6.095149993896484],[119,66,71,6.105009078979492],[119,66,72,6.125766754150391],[119,66,73,6.157017707824707],[119,66,74,6.185085296630859],[119,66,75,6.203451156616211],[119,66,76,6.214632034301758],[119,66,77,6.2206244468688965],[119,66,78,6.2200398445129395],[119,66,79,6.212827682495117],[119,67,64,6.098939895629883],[119,67,65,6.105672836303711],[119,67,66,6.105361461639404],[119,67,67,6.099574565887451],[119,67,68,6.093015193939209],[119,67,69,6.091035842895508],[119,67,70,6.095149993896484],[119,67,71,6.105009078979492],[119,67,72,6.125766754150391],[119,67,73,6.157017707824707],[119,67,74,6.185085296630859],[119,67,75,6.203451156616211],[119,67,76,6.214632034301758],[119,67,77,6.2206244468688965],[119,67,78,6.2200398445129395],[119,67,79,6.212827682495117],[119,68,64,6.098939895629883],[119,68,65,6.105672836303711],[119,68,66,6.105361461639404],[119,68,67,6.099574565887451],[119,68,68,6.093015193939209],[119,68,69,6.091035842895508],[119,68,70,6.095149993896484],[119,68,71,6.105009078979492],[119,68,72,6.125766754150391],[119,68,73,6.157017707824707],[119,68,74,6.185085296630859],[119,68,75,6.203451156616211],[119,68,76,6.214632034301758],[119,68,77,6.2206244468688965],[119,68,78,6.2200398445129395],[119,68,79,6.212827682495117],[119,69,64,6.098939895629883],[119,69,65,6.105672836303711],[119,69,66,6.105361461639404],[119,69,67,6.099574565887451],[119,69,68,6.093015193939209],[119,69,69,6.091035842895508],[119,69,70,6.095149993896484],[119,69,71,6.105009078979492],[119,69,72,6.125766754150391],[119,69,73,6.157017707824707],[119,69,74,6.185085296630859],[119,69,75,6.203451156616211],[119,69,76,6.214632034301758],[119,69,77,6.2206244468688965],[119,69,78,6.2200398445129395],[119,69,79,6.212827682495117],[119,70,64,6.098939895629883],[119,70,65,6.105672836303711],[119,70,66,6.105361461639404],[119,70,67,6.099574565887451],[119,70,68,6.093015193939209],[119,70,69,6.091035842895508],[119,70,70,6.095149993896484],[119,70,71,6.105009078979492],[119,70,72,6.125766754150391],[119,70,73,6.157017707824707],[119,70,74,6.185085296630859],[119,70,75,6.203451156616211],[119,70,76,6.214632034301758],[119,70,77,6.2206244468688965],[119,70,78,6.2200398445129395],[119,70,79,6.212827682495117],[119,71,64,6.098939895629883],[119,71,65,6.105672836303711],[119,71,66,6.105361461639404],[119,71,67,6.099574565887451],[119,71,68,6.093015193939209],[119,71,69,6.091035842895508],[119,71,70,6.095149993896484],[119,71,71,6.105009078979492],[119,71,72,6.125766754150391],[119,71,73,6.157017707824707],[119,71,74,6.185085296630859],[119,71,75,6.203451156616211],[119,71,76,6.214632034301758],[119,71,77,6.2206244468688965],[119,71,78,6.2200398445129395],[119,71,79,6.212827682495117],[119,72,64,6.098939895629883],[119,72,65,6.105672836303711],[119,72,66,6.105361461639404],[119,72,67,6.099574565887451],[119,72,68,6.093015193939209],[119,72,69,6.091035842895508],[119,72,70,6.095149993896484],[119,72,71,6.105009078979492],[119,72,72,6.125766754150391],[119,72,73,6.157017707824707],[119,72,74,6.185085296630859],[119,72,75,6.203451156616211],[119,72,76,6.214632034301758],[119,72,77,6.2206244468688965],[119,72,78,6.2200398445129395],[119,72,79,6.212827682495117],[119,73,64,6.098939895629883],[119,73,65,6.105672836303711],[119,73,66,6.105361461639404],[119,73,67,6.099574565887451],[119,73,68,6.093015193939209],[119,73,69,6.091035842895508],[119,73,70,6.095149993896484],[119,73,71,6.105009078979492],[119,73,72,6.125766754150391],[119,73,73,6.157017707824707],[119,73,74,6.185085296630859],[119,73,75,6.203451156616211],[119,73,76,6.214632034301758],[119,73,77,6.2206244468688965],[119,73,78,6.2200398445129395],[119,73,79,6.212827682495117],[119,74,64,6.098939895629883],[119,74,65,6.105672836303711],[119,74,66,6.105361461639404],[119,74,67,6.099574565887451],[119,74,68,6.093015193939209],[119,74,69,6.091035842895508],[119,74,70,6.095149993896484],[119,74,71,6.105009078979492],[119,74,72,6.125766754150391],[119,74,73,6.157017707824707],[119,74,74,6.185085296630859],[119,74,75,6.203451156616211],[119,74,76,6.214632034301758],[119,74,77,6.2206244468688965],[119,74,78,6.2200398445129395],[119,74,79,6.212827682495117],[119,75,64,6.098939895629883],[119,75,65,6.105672836303711],[119,75,66,6.105361461639404],[119,75,67,6.099574565887451],[119,75,68,6.093015193939209],[119,75,69,6.091035842895508],[119,75,70,6.095149993896484],[119,75,71,6.105009078979492],[119,75,72,6.125766754150391],[119,75,73,6.157017707824707],[119,75,74,6.185085296630859],[119,75,75,6.203451156616211],[119,75,76,6.214632034301758],[119,75,77,6.2206244468688965],[119,75,78,6.2200398445129395],[119,75,79,6.212827682495117],[119,76,64,6.098939895629883],[119,76,65,6.105672836303711],[119,76,66,6.105361461639404],[119,76,67,6.099574565887451],[119,76,68,6.093015193939209],[119,76,69,6.091035842895508],[119,76,70,6.095149993896484],[119,76,71,6.105009078979492],[119,76,72,6.125766754150391],[119,76,73,6.157017707824707],[119,76,74,6.185085296630859],[119,76,75,6.203451156616211],[119,76,76,6.214632034301758],[119,76,77,6.2206244468688965],[119,76,78,6.2200398445129395],[119,76,79,6.212827682495117],[119,77,64,6.098939895629883],[119,77,65,6.105672836303711],[119,77,66,6.105361461639404],[119,77,67,6.099574565887451],[119,77,68,6.093015193939209],[119,77,69,6.091035842895508],[119,77,70,6.095149993896484],[119,77,71,6.105009078979492],[119,77,72,6.125766754150391],[119,77,73,6.157017707824707],[119,77,74,6.185085296630859],[119,77,75,6.203451156616211],[119,77,76,6.214632034301758],[119,77,77,6.2206244468688965],[119,77,78,6.2200398445129395],[119,77,79,6.212827682495117],[119,78,64,6.098939895629883],[119,78,65,6.105672836303711],[119,78,66,6.105361461639404],[119,78,67,6.099574565887451],[119,78,68,6.093015193939209],[119,78,69,6.091035842895508],[119,78,70,6.095149993896484],[119,78,71,6.105009078979492],[119,78,72,6.125766754150391],[119,78,73,6.157017707824707],[119,78,74,6.185085296630859],[119,78,75,6.203451156616211],[119,78,76,6.214632034301758],[119,78,77,6.2206244468688965],[119,78,78,6.2200398445129395],[119,78,79,6.212827682495117],[119,79,64,6.098939895629883],[119,79,65,6.105672836303711],[119,79,66,6.105361461639404],[119,79,67,6.099574565887451],[119,79,68,6.093015193939209],[119,79,69,6.091035842895508],[119,79,70,6.095149993896484],[119,79,71,6.105009078979492],[119,79,72,6.125766754150391],[119,79,73,6.157017707824707],[119,79,74,6.185085296630859],[119,79,75,6.203451156616211],[119,79,76,6.214632034301758],[119,79,77,6.2206244468688965],[119,79,78,6.2200398445129395],[119,79,79,6.212827682495117],[119,80,64,6.098939895629883],[119,80,65,6.105672836303711],[119,80,66,6.105361461639404],[119,80,67,6.099574565887451],[119,80,68,6.093015193939209],[119,80,69,6.091035842895508],[119,80,70,6.095149993896484],[119,80,71,6.105009078979492],[119,80,72,6.125766754150391],[119,80,73,6.157017707824707],[119,80,74,6.185085296630859],[119,80,75,6.203451156616211],[119,80,76,6.214632034301758],[119,80,77,6.2206244468688965],[119,80,78,6.2200398445129395],[119,80,79,6.212827682495117],[119,81,64,6.098939895629883],[119,81,65,6.105672836303711],[119,81,66,6.105361461639404],[119,81,67,6.099574565887451],[119,81,68,6.093015193939209],[119,81,69,6.091035842895508],[119,81,70,6.095149993896484],[119,81,71,6.105009078979492],[119,81,72,6.125766754150391],[119,81,73,6.157017707824707],[119,81,74,6.185085296630859],[119,81,75,6.203451156616211],[119,81,76,6.214632034301758],[119,81,77,6.2206244468688965],[119,81,78,6.2200398445129395],[119,81,79,6.212827682495117],[119,82,64,6.098939895629883],[119,82,65,6.105672836303711],[119,82,66,6.105361461639404],[119,82,67,6.099574565887451],[119,82,68,6.093015193939209],[119,82,69,6.091035842895508],[119,82,70,6.095149993896484],[119,82,71,6.105009078979492],[119,82,72,6.125766754150391],[119,82,73,6.157017707824707],[119,82,74,6.185085296630859],[119,82,75,6.203451156616211],[119,82,76,6.214632034301758],[119,82,77,6.2206244468688965],[119,82,78,6.2200398445129395],[119,82,79,6.212827682495117],[119,83,64,6.098939895629883],[119,83,65,6.105672836303711],[119,83,66,6.105361461639404],[119,83,67,6.099574565887451],[119,83,68,6.093015193939209],[119,83,69,6.091035842895508],[119,83,70,6.095149993896484],[119,83,71,6.105009078979492],[119,83,72,6.125766754150391],[119,83,73,6.157017707824707],[119,83,74,6.185085296630859],[119,83,75,6.203451156616211],[119,83,76,6.214632034301758],[119,83,77,6.2206244468688965],[119,83,78,6.2200398445129395],[119,83,79,6.212827682495117],[119,84,64,6.098939895629883],[119,84,65,6.105672836303711],[119,84,66,6.105361461639404],[119,84,67,6.099574565887451],[119,84,68,6.093015193939209],[119,84,69,6.091035842895508],[119,84,70,6.095149993896484],[119,84,71,6.105009078979492],[119,84,72,6.125766754150391],[119,84,73,6.157017707824707],[119,84,74,6.185085296630859],[119,84,75,6.203451156616211],[119,84,76,6.214632034301758],[119,84,77,6.2206244468688965],[119,84,78,6.2200398445129395],[119,84,79,6.212827682495117],[119,85,64,6.098939895629883],[119,85,65,6.105672836303711],[119,85,66,6.105361461639404],[119,85,67,6.099574565887451],[119,85,68,6.093015193939209],[119,85,69,6.091035842895508],[119,85,70,6.095149993896484],[119,85,71,6.105009078979492],[119,85,72,6.125766754150391],[119,85,73,6.157017707824707],[119,85,74,6.185085296630859],[119,85,75,6.203451156616211],[119,85,76,6.214632034301758],[119,85,77,6.2206244468688965],[119,85,78,6.2200398445129395],[119,85,79,6.212827682495117],[119,86,64,6.098939895629883],[119,86,65,6.105672836303711],[119,86,66,6.105361461639404],[119,86,67,6.099574565887451],[119,86,68,6.093015193939209],[119,86,69,6.091035842895508],[119,86,70,6.095149993896484],[119,86,71,6.105009078979492],[119,86,72,6.125766754150391],[119,86,73,6.157017707824707],[119,86,74,6.185085296630859],[119,86,75,6.203451156616211],[119,86,76,6.214632034301758],[119,86,77,6.2206244468688965],[119,86,78,6.2200398445129395],[119,86,79,6.212827682495117],[119,87,64,6.098939895629883],[119,87,65,6.105672836303711],[119,87,66,6.105361461639404],[119,87,67,6.099574565887451],[119,87,68,6.093015193939209],[119,87,69,6.091035842895508],[119,87,70,6.095149993896484],[119,87,71,6.105009078979492],[119,87,72,6.125766754150391],[119,87,73,6.157017707824707],[119,87,74,6.185085296630859],[119,87,75,6.203451156616211],[119,87,76,6.214632034301758],[119,87,77,6.2206244468688965],[119,87,78,6.2200398445129395],[119,87,79,6.212827682495117],[119,88,64,6.098939895629883],[119,88,65,6.105672836303711],[119,88,66,6.105361461639404],[119,88,67,6.099574565887451],[119,88,68,6.093015193939209],[119,88,69,6.091035842895508],[119,88,70,6.095149993896484],[119,88,71,6.105009078979492],[119,88,72,6.125766754150391],[119,88,73,6.157017707824707],[119,88,74,6.185085296630859],[119,88,75,6.203451156616211],[119,88,76,6.214632034301758],[119,88,77,6.2206244468688965],[119,88,78,6.2200398445129395],[119,88,79,6.212827682495117],[119,89,64,6.098939895629883],[119,89,65,6.105672836303711],[119,89,66,6.105361461639404],[119,89,67,6.099574565887451],[119,89,68,6.093015193939209],[119,89,69,6.091035842895508],[119,89,70,6.095149993896484],[119,89,71,6.105009078979492],[119,89,72,6.125766754150391],[119,89,73,6.157017707824707],[119,89,74,6.185085296630859],[119,89,75,6.203451156616211],[119,89,76,6.214632034301758],[119,89,77,6.2206244468688965],[119,89,78,6.2200398445129395],[119,89,79,6.212827682495117],[119,90,64,6.098939895629883],[119,90,65,6.105672836303711],[119,90,66,6.105361461639404],[119,90,67,6.099574565887451],[119,90,68,6.093015193939209],[119,90,69,6.091035842895508],[119,90,70,6.095149993896484],[119,90,71,6.105009078979492],[119,90,72,6.125766754150391],[119,90,73,6.157017707824707],[119,90,74,6.185085296630859],[119,90,75,6.203451156616211],[119,90,76,6.214632034301758],[119,90,77,6.2206244468688965],[119,90,78,6.2200398445129395],[119,90,79,6.212827682495117],[119,91,64,6.098939895629883],[119,91,65,6.105672836303711],[119,91,66,6.105361461639404],[119,91,67,6.099574565887451],[119,91,68,6.093015193939209],[119,91,69,6.091035842895508],[119,91,70,6.095149993896484],[119,91,71,6.105009078979492],[119,91,72,6.125766754150391],[119,91,73,6.157017707824707],[119,91,74,6.185085296630859],[119,91,75,6.203451156616211],[119,91,76,6.214632034301758],[119,91,77,6.2206244468688965],[119,91,78,6.2200398445129395],[119,91,79,6.212827682495117],[119,92,64,6.098939895629883],[119,92,65,6.105672836303711],[119,92,66,6.105361461639404],[119,92,67,6.099574565887451],[119,92,68,6.093015193939209],[119,92,69,6.091035842895508],[119,92,70,6.095149993896484],[119,92,71,6.105009078979492],[119,92,72,6.125766754150391],[119,92,73,6.157017707824707],[119,92,74,6.185085296630859],[119,92,75,6.203451156616211],[119,92,76,6.214632034301758],[119,92,77,6.2206244468688965],[119,92,78,6.2200398445129395],[119,92,79,6.212827682495117],[119,93,64,6.098939895629883],[119,93,65,6.105672836303711],[119,93,66,6.105361461639404],[119,93,67,6.099574565887451],[119,93,68,6.093015193939209],[119,93,69,6.091035842895508],[119,93,70,6.095149993896484],[119,93,71,6.105009078979492],[119,93,72,6.125766754150391],[119,93,73,6.157017707824707],[119,93,74,6.185085296630859],[119,93,75,6.203451156616211],[119,93,76,6.214632034301758],[119,93,77,6.2206244468688965],[119,93,78,6.2200398445129395],[119,93,79,6.212827682495117],[119,94,64,6.098939895629883],[119,94,65,6.105672836303711],[119,94,66,6.105361461639404],[119,94,67,6.099574565887451],[119,94,68,6.093015193939209],[119,94,69,6.091035842895508],[119,94,70,6.095149993896484],[119,94,71,6.105009078979492],[119,94,72,6.125766754150391],[119,94,73,6.157017707824707],[119,94,74,6.185085296630859],[119,94,75,6.203451156616211],[119,94,76,6.214632034301758],[119,94,77,6.2206244468688965],[119,94,78,6.2200398445129395],[119,94,79,6.212827682495117],[119,95,64,6.098939895629883],[119,95,65,6.105672836303711],[119,95,66,6.105361461639404],[119,95,67,6.099574565887451],[119,95,68,6.093015193939209],[119,95,69,6.091035842895508],[119,95,70,6.095149993896484],[119,95,71,6.105009078979492],[119,95,72,6.125766754150391],[119,95,73,6.157017707824707],[119,95,74,6.185085296630859],[119,95,75,6.203451156616211],[119,95,76,6.214632034301758],[119,95,77,6.2206244468688965],[119,95,78,6.2200398445129395],[119,95,79,6.212827682495117],[119,96,64,6.098939895629883],[119,96,65,6.105672836303711],[119,96,66,6.105361461639404],[119,96,67,6.099574565887451],[119,96,68,6.093015193939209],[119,96,69,6.091035842895508],[119,96,70,6.095149993896484],[119,96,71,6.105009078979492],[119,96,72,6.125766754150391],[119,96,73,6.157017707824707],[119,96,74,6.185085296630859],[119,96,75,6.203451156616211],[119,96,76,6.214632034301758],[119,96,77,6.2206244468688965],[119,96,78,6.2200398445129395],[119,96,79,6.212827682495117],[119,97,64,6.098939895629883],[119,97,65,6.105672836303711],[119,97,66,6.105361461639404],[119,97,67,6.099574565887451],[119,97,68,6.093015193939209],[119,97,69,6.091035842895508],[119,97,70,6.095149993896484],[119,97,71,6.105009078979492],[119,97,72,6.125766754150391],[119,97,73,6.157017707824707],[119,97,74,6.185085296630859],[119,97,75,6.203451156616211],[119,97,76,6.214632034301758],[119,97,77,6.2206244468688965],[119,97,78,6.2200398445129395],[119,97,79,6.212827682495117],[119,98,64,6.098939895629883],[119,98,65,6.105672836303711],[119,98,66,6.105361461639404],[119,98,67,6.099574565887451],[119,98,68,6.093015193939209],[119,98,69,6.091035842895508],[119,98,70,6.095149993896484],[119,98,71,6.105009078979492],[119,98,72,6.125766754150391],[119,98,73,6.157017707824707],[119,98,74,6.185085296630859],[119,98,75,6.203451156616211],[119,98,76,6.214632034301758],[119,98,77,6.2206244468688965],[119,98,78,6.2200398445129395],[119,98,79,6.212827682495117],[119,99,64,6.098939895629883],[119,99,65,6.105672836303711],[119,99,66,6.105361461639404],[119,99,67,6.099574565887451],[119,99,68,6.093015193939209],[119,99,69,6.091035842895508],[119,99,70,6.095149993896484],[119,99,71,6.105009078979492],[119,99,72,6.125766754150391],[119,99,73,6.157017707824707],[119,99,74,6.185085296630859],[119,99,75,6.203451156616211],[119,99,76,6.214632034301758],[119,99,77,6.2206244468688965],[119,99,78,6.2200398445129395],[119,99,79,6.212827682495117],[119,100,64,6.098939895629883],[119,100,65,6.105672836303711],[119,100,66,6.105361461639404],[119,100,67,6.099574565887451],[119,100,68,6.093015193939209],[119,100,69,6.091035842895508],[119,100,70,6.095149993896484],[119,100,71,6.105009078979492],[119,100,72,6.125766754150391],[119,100,73,6.157017707824707],[119,100,74,6.185085296630859],[119,100,75,6.203451156616211],[119,100,76,6.214632034301758],[119,100,77,6.2206244468688965],[119,100,78,6.2200398445129395],[119,100,79,6.212827682495117],[119,101,64,6.098939895629883],[119,101,65,6.105672836303711],[119,101,66,6.105361461639404],[119,101,67,6.099574565887451],[119,101,68,6.093015193939209],[119,101,69,6.091035842895508],[119,101,70,6.095149993896484],[119,101,71,6.105009078979492],[119,101,72,6.125766754150391],[119,101,73,6.157017707824707],[119,101,74,6.185085296630859],[119,101,75,6.203451156616211],[119,101,76,6.214632034301758],[119,101,77,6.2206244468688965],[119,101,78,6.2200398445129395],[119,101,79,6.212827682495117],[119,102,64,6.098939895629883],[119,102,65,6.105672836303711],[119,102,66,6.105361461639404],[119,102,67,6.099574565887451],[119,102,68,6.093015193939209],[119,102,69,6.091035842895508],[119,102,70,6.095149993896484],[119,102,71,6.105009078979492],[119,102,72,6.125766754150391],[119,102,73,6.157017707824707],[119,102,74,6.185085296630859],[119,102,75,6.203451156616211],[119,102,76,6.214632034301758],[119,102,77,6.2206244468688965],[119,102,78,6.2200398445129395],[119,102,79,6.212827682495117],[119,103,64,6.098939895629883],[119,103,65,6.105672836303711],[119,103,66,6.105361461639404],[119,103,67,6.099574565887451],[119,103,68,6.093015193939209],[119,103,69,6.091035842895508],[119,103,70,6.095149993896484],[119,103,71,6.105009078979492],[119,103,72,6.125766754150391],[119,103,73,6.157017707824707],[119,103,74,6.185085296630859],[119,103,75,6.203451156616211],[119,103,76,6.214632034301758],[119,103,77,6.2206244468688965],[119,103,78,6.2200398445129395],[119,103,79,6.212827682495117],[119,104,64,6.098939895629883],[119,104,65,6.105672836303711],[119,104,66,6.105361461639404],[119,104,67,6.099574565887451],[119,104,68,6.093015193939209],[119,104,69,6.091035842895508],[119,104,70,6.095149993896484],[119,104,71,6.105009078979492],[119,104,72,6.125766754150391],[119,104,73,6.157017707824707],[119,104,74,6.185085296630859],[119,104,75,6.203451156616211],[119,104,76,6.214632034301758],[119,104,77,6.2206244468688965],[119,104,78,6.2200398445129395],[119,104,79,6.212827682495117],[119,105,64,6.098939895629883],[119,105,65,6.105672836303711],[119,105,66,6.105361461639404],[119,105,67,6.099574565887451],[119,105,68,6.093015193939209],[119,105,69,6.091035842895508],[119,105,70,6.095149993896484],[119,105,71,6.105009078979492],[119,105,72,6.125766754150391],[119,105,73,6.157017707824707],[119,105,74,6.185085296630859],[119,105,75,6.203451156616211],[119,105,76,6.214632034301758],[119,105,77,6.2206244468688965],[119,105,78,6.2200398445129395],[119,105,79,6.212827682495117],[119,106,64,6.098939895629883],[119,106,65,6.105672836303711],[119,106,66,6.105361461639404],[119,106,67,6.099574565887451],[119,106,68,6.093015193939209],[119,106,69,6.091035842895508],[119,106,70,6.095149993896484],[119,106,71,6.105009078979492],[119,106,72,6.125766754150391],[119,106,73,6.157017707824707],[119,106,74,6.185085296630859],[119,106,75,6.203451156616211],[119,106,76,6.214632034301758],[119,106,77,6.2206244468688965],[119,106,78,6.2200398445129395],[119,106,79,6.212827682495117],[119,107,64,6.098939895629883],[119,107,65,6.105672836303711],[119,107,66,6.105361461639404],[119,107,67,6.099574565887451],[119,107,68,6.093015193939209],[119,107,69,6.091035842895508],[119,107,70,6.095149993896484],[119,107,71,6.105009078979492],[119,107,72,6.125766754150391],[119,107,73,6.157017707824707],[119,107,74,6.185085296630859],[119,107,75,6.203451156616211],[119,107,76,6.214632034301758],[119,107,77,6.2206244468688965],[119,107,78,6.2200398445129395],[119,107,79,6.212827682495117],[119,108,64,6.098939895629883],[119,108,65,6.105672836303711],[119,108,66,6.105361461639404],[119,108,67,6.099574565887451],[119,108,68,6.093015193939209],[119,108,69,6.091035842895508],[119,108,70,6.095149993896484],[119,108,71,6.105009078979492],[119,108,72,6.125766754150391],[119,108,73,6.157017707824707],[119,108,74,6.185085296630859],[119,108,75,6.203451156616211],[119,108,76,6.214632034301758],[119,108,77,6.2206244468688965],[119,108,78,6.2200398445129395],[119,108,79,6.212827682495117],[119,109,64,6.098939895629883],[119,109,65,6.105672836303711],[119,109,66,6.105361461639404],[119,109,67,6.099574565887451],[119,109,68,6.093015193939209],[119,109,69,6.091035842895508],[119,109,70,6.095149993896484],[119,109,71,6.105009078979492],[119,109,72,6.125766754150391],[119,109,73,6.157017707824707],[119,109,74,6.185085296630859],[119,109,75,6.203451156616211],[119,109,76,6.214632034301758],[119,109,77,6.2206244468688965],[119,109,78,6.2200398445129395],[119,109,79,6.212827682495117],[119,110,64,6.098939895629883],[119,110,65,6.105672836303711],[119,110,66,6.105361461639404],[119,110,67,6.099574565887451],[119,110,68,6.093015193939209],[119,110,69,6.091035842895508],[119,110,70,6.095149993896484],[119,110,71,6.105009078979492],[119,110,72,6.125766754150391],[119,110,73,6.157017707824707],[119,110,74,6.185085296630859],[119,110,75,6.203451156616211],[119,110,76,6.214632034301758],[119,110,77,6.2206244468688965],[119,110,78,6.2200398445129395],[119,110,79,6.212827682495117],[119,111,64,6.098939895629883],[119,111,65,6.105672836303711],[119,111,66,6.105361461639404],[119,111,67,6.099574565887451],[119,111,68,6.093015193939209],[119,111,69,6.091035842895508],[119,111,70,6.095149993896484],[119,111,71,6.105009078979492],[119,111,72,6.125766754150391],[119,111,73,6.157017707824707],[119,111,74,6.185085296630859],[119,111,75,6.203451156616211],[119,111,76,6.214632034301758],[119,111,77,6.2206244468688965],[119,111,78,6.2200398445129395],[119,111,79,6.212827682495117],[119,112,64,6.098939895629883],[119,112,65,6.105672836303711],[119,112,66,6.105361461639404],[119,112,67,6.099574565887451],[119,112,68,6.093015193939209],[119,112,69,6.091035842895508],[119,112,70,6.095149993896484],[119,112,71,6.105009078979492],[119,112,72,6.125766754150391],[119,112,73,6.157017707824707],[119,112,74,6.185085296630859],[119,112,75,6.203451156616211],[119,112,76,6.214632034301758],[119,112,77,6.2206244468688965],[119,112,78,6.2200398445129395],[119,112,79,6.212827682495117],[119,113,64,6.098939895629883],[119,113,65,6.105672836303711],[119,113,66,6.105361461639404],[119,113,67,6.099574565887451],[119,113,68,6.093015193939209],[119,113,69,6.091035842895508],[119,113,70,6.095149993896484],[119,113,71,6.105009078979492],[119,113,72,6.125766754150391],[119,113,73,6.157017707824707],[119,113,74,6.185085296630859],[119,113,75,6.203451156616211],[119,113,76,6.214632034301758],[119,113,77,6.2206244468688965],[119,113,78,6.2200398445129395],[119,113,79,6.212827682495117],[119,114,64,6.098939895629883],[119,114,65,6.105672836303711],[119,114,66,6.105361461639404],[119,114,67,6.099574565887451],[119,114,68,6.093015193939209],[119,114,69,6.091035842895508],[119,114,70,6.095149993896484],[119,114,71,6.105009078979492],[119,114,72,6.125766754150391],[119,114,73,6.157017707824707],[119,114,74,6.185085296630859],[119,114,75,6.203451156616211],[119,114,76,6.214632034301758],[119,114,77,6.2206244468688965],[119,114,78,6.2200398445129395],[119,114,79,6.212827682495117],[119,115,64,6.098939895629883],[119,115,65,6.105672836303711],[119,115,66,6.105361461639404],[119,115,67,6.099574565887451],[119,115,68,6.093015193939209],[119,115,69,6.091035842895508],[119,115,70,6.095149993896484],[119,115,71,6.105009078979492],[119,115,72,6.125766754150391],[119,115,73,6.157017707824707],[119,115,74,6.185085296630859],[119,115,75,6.203451156616211],[119,115,76,6.214632034301758],[119,115,77,6.2206244468688965],[119,115,78,6.2200398445129395],[119,115,79,6.212827682495117],[119,116,64,6.098939895629883],[119,116,65,6.105672836303711],[119,116,66,6.105361461639404],[119,116,67,6.099574565887451],[119,116,68,6.093015193939209],[119,116,69,6.091035842895508],[119,116,70,6.095149993896484],[119,116,71,6.105009078979492],[119,116,72,6.125766754150391],[119,116,73,6.157017707824707],[119,116,74,6.185085296630859],[119,116,75,6.203451156616211],[119,116,76,6.214632034301758],[119,116,77,6.2206244468688965],[119,116,78,6.2200398445129395],[119,116,79,6.212827682495117],[119,117,64,6.098939895629883],[119,117,65,6.105672836303711],[119,117,66,6.105361461639404],[119,117,67,6.099574565887451],[119,117,68,6.093015193939209],[119,117,69,6.091035842895508],[119,117,70,6.095149993896484],[119,117,71,6.105009078979492],[119,117,72,6.125766754150391],[119,117,73,6.157017707824707],[119,117,74,6.185085296630859],[119,117,75,6.203451156616211],[119,117,76,6.214632034301758],[119,117,77,6.2206244468688965],[119,117,78,6.2200398445129395],[119,117,79,6.212827682495117],[119,118,64,6.098939895629883],[119,118,65,6.105672836303711],[119,118,66,6.105361461639404],[119,118,67,6.099574565887451],[119,118,68,6.093015193939209],[119,118,69,6.091035842895508],[119,118,70,6.095149993896484],[119,118,71,6.105009078979492],[119,118,72,6.125766754150391],[119,118,73,6.157017707824707],[119,118,74,6.185085296630859],[119,118,75,6.203451156616211],[119,118,76,6.214632034301758],[119,118,77,6.2206244468688965],[119,118,78,6.2200398445129395],[119,118,79,6.212827682495117],[119,119,64,6.098939895629883],[119,119,65,6.105672836303711],[119,119,66,6.105361461639404],[119,119,67,6.099574565887451],[119,119,68,6.093015193939209],[119,119,69,6.091035842895508],[119,119,70,6.095149993896484],[119,119,71,6.105009078979492],[119,119,72,6.125766754150391],[119,119,73,6.157017707824707],[119,119,74,6.185085296630859],[119,119,75,6.203451156616211],[119,119,76,6.214632034301758],[119,119,77,6.2206244468688965],[119,119,78,6.2200398445129395],[119,119,79,6.212827682495117],[119,120,64,6.098939895629883],[119,120,65,6.105672836303711],[119,120,66,6.105361461639404],[119,120,67,6.099574565887451],[119,120,68,6.093015193939209],[119,120,69,6.091035842895508],[119,120,70,6.095149993896484],[119,120,71,6.105009078979492],[119,120,72,6.125766754150391],[119,120,73,6.157017707824707],[119,120,74,6.185085296630859],[119,120,75,6.203451156616211],[119,120,76,6.214632034301758],[119,120,77,6.2206244468688965],[119,120,78,6.2200398445129395],[119,120,79,6.212827682495117],[119,121,64,6.098939895629883],[119,121,65,6.105672836303711],[119,121,66,6.105361461639404],[119,121,67,6.099574565887451],[119,121,68,6.093015193939209],[119,121,69,6.091035842895508],[119,121,70,6.095149993896484],[119,121,71,6.105009078979492],[119,121,72,6.125766754150391],[119,121,73,6.157017707824707],[119,121,74,6.185085296630859],[119,121,75,6.203451156616211],[119,121,76,6.214632034301758],[119,121,77,6.2206244468688965],[119,121,78,6.2200398445129395],[119,121,79,6.212827682495117],[119,122,64,6.098939895629883],[119,122,65,6.105672836303711],[119,122,66,6.105361461639404],[119,122,67,6.099574565887451],[119,122,68,6.093015193939209],[119,122,69,6.091035842895508],[119,122,70,6.095149993896484],[119,122,71,6.105009078979492],[119,122,72,6.125766754150391],[119,122,73,6.157017707824707],[119,122,74,6.185085296630859],[119,122,75,6.203451156616211],[119,122,76,6.214632034301758],[119,122,77,6.2206244468688965],[119,122,78,6.2200398445129395],[119,122,79,6.212827682495117],[119,123,64,6.098939895629883],[119,123,65,6.105672836303711],[119,123,66,6.105361461639404],[119,123,67,6.099574565887451],[119,123,68,6.093015193939209],[119,123,69,6.091035842895508],[119,123,70,6.095149993896484],[119,123,71,6.105009078979492],[119,123,72,6.125766754150391],[119,123,73,6.157017707824707],[119,123,74,6.185085296630859],[119,123,75,6.203451156616211],[119,123,76,6.214632034301758],[119,123,77,6.2206244468688965],[119,123,78,6.2200398445129395],[119,123,79,6.212827682495117],[119,124,64,6.098939895629883],[119,124,65,6.105672836303711],[119,124,66,6.105361461639404],[119,124,67,6.099574565887451],[119,124,68,6.093015193939209],[119,124,69,6.091035842895508],[119,124,70,6.095149993896484],[119,124,71,6.105009078979492],[119,124,72,6.125766754150391],[119,124,73,6.157017707824707],[119,124,74,6.185085296630859],[119,124,75,6.203451156616211],[119,124,76,6.214632034301758],[119,124,77,6.2206244468688965],[119,124,78,6.2200398445129395],[119,124,79,6.212827682495117],[119,125,64,6.098939895629883],[119,125,65,6.105672836303711],[119,125,66,6.105361461639404],[119,125,67,6.099574565887451],[119,125,68,6.093015193939209],[119,125,69,6.091035842895508],[119,125,70,6.095149993896484],[119,125,71,6.105009078979492],[119,125,72,6.125766754150391],[119,125,73,6.157017707824707],[119,125,74,6.185085296630859],[119,125,75,6.203451156616211],[119,125,76,6.214632034301758],[119,125,77,6.2206244468688965],[119,125,78,6.2200398445129395],[119,125,79,6.212827682495117],[119,126,64,6.098939895629883],[119,126,65,6.105672836303711],[119,126,66,6.105361461639404],[119,126,67,6.099574565887451],[119,126,68,6.093015193939209],[119,126,69,6.091035842895508],[119,126,70,6.095149993896484],[119,126,71,6.105009078979492],[119,126,72,6.125766754150391],[119,126,73,6.157017707824707],[119,126,74,6.185085296630859],[119,126,75,6.203451156616211],[119,126,76,6.214632034301758],[119,126,77,6.2206244468688965],[119,126,78,6.2200398445129395],[119,126,79,6.212827682495117],[119,127,64,6.098939895629883],[119,127,65,6.105672836303711],[119,127,66,6.105361461639404],[119,127,67,6.099574565887451],[119,127,68,6.093015193939209],[119,127,69,6.091035842895508],[119,127,70,6.095149993896484],[119,127,71,6.105009078979492],[119,127,72,6.125766754150391],[119,127,73,6.157017707824707],[119,127,74,6.185085296630859],[119,127,75,6.203451156616211],[119,127,76,6.214632034301758],[119,127,77,6.2206244468688965],[119,127,78,6.2200398445129395],[119,127,79,6.212827682495117],[119,128,64,6.098939895629883],[119,128,65,6.105672836303711],[119,128,66,6.105361461639404],[119,128,67,6.099574565887451],[119,128,68,6.093015193939209],[119,128,69,6.091035842895508],[119,128,70,6.095149993896484],[119,128,71,6.105009078979492],[119,128,72,6.125766754150391],[119,128,73,6.157017707824707],[119,128,74,6.185085296630859],[119,128,75,6.203451156616211],[119,128,76,6.214632034301758],[119,128,77,6.2206244468688965],[119,128,78,6.2200398445129395],[119,128,79,6.212827682495117],[119,129,64,6.098939895629883],[119,129,65,6.105672836303711],[119,129,66,6.105361461639404],[119,129,67,6.099574565887451],[119,129,68,6.093015193939209],[119,129,69,6.091035842895508],[119,129,70,6.095149993896484],[119,129,71,6.105009078979492],[119,129,72,6.125766754150391],[119,129,73,6.157017707824707],[119,129,74,6.185085296630859],[119,129,75,6.203451156616211],[119,129,76,6.214632034301758],[119,129,77,6.2206244468688965],[119,129,78,6.2200398445129395],[119,129,79,6.212827682495117],[119,130,64,6.098939895629883],[119,130,65,6.105672836303711],[119,130,66,6.105361461639404],[119,130,67,6.099574565887451],[119,130,68,6.093015193939209],[119,130,69,6.091035842895508],[119,130,70,6.095149993896484],[119,130,71,6.105009078979492],[119,130,72,6.125766754150391],[119,130,73,6.157017707824707],[119,130,74,6.185085296630859],[119,130,75,6.203451156616211],[119,130,76,6.214632034301758],[119,130,77,6.2206244468688965],[119,130,78,6.2200398445129395],[119,130,79,6.212827682495117],[119,131,64,6.098939895629883],[119,131,65,6.105672836303711],[119,131,66,6.105361461639404],[119,131,67,6.099574565887451],[119,131,68,6.093015193939209],[119,131,69,6.091035842895508],[119,131,70,6.095149993896484],[119,131,71,6.105009078979492],[119,131,72,6.125766754150391],[119,131,73,6.157017707824707],[119,131,74,6.185085296630859],[119,131,75,6.203451156616211],[119,131,76,6.214632034301758],[119,131,77,6.2206244468688965],[119,131,78,6.2200398445129395],[119,131,79,6.212827682495117],[119,132,64,6.098939895629883],[119,132,65,6.105672836303711],[119,132,66,6.105361461639404],[119,132,67,6.099574565887451],[119,132,68,6.093015193939209],[119,132,69,6.091035842895508],[119,132,70,6.095149993896484],[119,132,71,6.105009078979492],[119,132,72,6.125766754150391],[119,132,73,6.157017707824707],[119,132,74,6.185085296630859],[119,132,75,6.203451156616211],[119,132,76,6.214632034301758],[119,132,77,6.2206244468688965],[119,132,78,6.2200398445129395],[119,132,79,6.212827682495117],[119,133,64,6.098939895629883],[119,133,65,6.105672836303711],[119,133,66,6.105361461639404],[119,133,67,6.099574565887451],[119,133,68,6.093015193939209],[119,133,69,6.091035842895508],[119,133,70,6.095149993896484],[119,133,71,6.105009078979492],[119,133,72,6.125766754150391],[119,133,73,6.157017707824707],[119,133,74,6.185085296630859],[119,133,75,6.203451156616211],[119,133,76,6.214632034301758],[119,133,77,6.2206244468688965],[119,133,78,6.2200398445129395],[119,133,79,6.212827682495117],[119,134,64,6.098939895629883],[119,134,65,6.105672836303711],[119,134,66,6.105361461639404],[119,134,67,6.099574565887451],[119,134,68,6.093015193939209],[119,134,69,6.091035842895508],[119,134,70,6.095149993896484],[119,134,71,6.105009078979492],[119,134,72,6.125766754150391],[119,134,73,6.157017707824707],[119,134,74,6.185085296630859],[119,134,75,6.203451156616211],[119,134,76,6.214632034301758],[119,134,77,6.2206244468688965],[119,134,78,6.2200398445129395],[119,134,79,6.212827682495117],[119,135,64,6.098939895629883],[119,135,65,6.105672836303711],[119,135,66,6.105361461639404],[119,135,67,6.099574565887451],[119,135,68,6.093015193939209],[119,135,69,6.091035842895508],[119,135,70,6.095149993896484],[119,135,71,6.105009078979492],[119,135,72,6.125766754150391],[119,135,73,6.157017707824707],[119,135,74,6.185085296630859],[119,135,75,6.203451156616211],[119,135,76,6.214632034301758],[119,135,77,6.2206244468688965],[119,135,78,6.2200398445129395],[119,135,79,6.212827682495117],[119,136,64,6.098939895629883],[119,136,65,6.105672836303711],[119,136,66,6.105361461639404],[119,136,67,6.099574565887451],[119,136,68,6.093015193939209],[119,136,69,6.091035842895508],[119,136,70,6.095149993896484],[119,136,71,6.105009078979492],[119,136,72,6.125766754150391],[119,136,73,6.157017707824707],[119,136,74,6.185085296630859],[119,136,75,6.203451156616211],[119,136,76,6.214632034301758],[119,136,77,6.2206244468688965],[119,136,78,6.2200398445129395],[119,136,79,6.212827682495117],[119,137,64,6.098939895629883],[119,137,65,6.105672836303711],[119,137,66,6.105361461639404],[119,137,67,6.099574565887451],[119,137,68,6.093015193939209],[119,137,69,6.091035842895508],[119,137,70,6.095149993896484],[119,137,71,6.105009078979492],[119,137,72,6.125766754150391],[119,137,73,6.157017707824707],[119,137,74,6.185085296630859],[119,137,75,6.203451156616211],[119,137,76,6.214632034301758],[119,137,77,6.2206244468688965],[119,137,78,6.2200398445129395],[119,137,79,6.212827682495117],[119,138,64,6.098939895629883],[119,138,65,6.105672836303711],[119,138,66,6.105361461639404],[119,138,67,6.099574565887451],[119,138,68,6.093015193939209],[119,138,69,6.091035842895508],[119,138,70,6.095149993896484],[119,138,71,6.105009078979492],[119,138,72,6.125766754150391],[119,138,73,6.157017707824707],[119,138,74,6.185085296630859],[119,138,75,6.203451156616211],[119,138,76,6.214632034301758],[119,138,77,6.2206244468688965],[119,138,78,6.2200398445129395],[119,138,79,6.212827682495117],[119,139,64,6.098939895629883],[119,139,65,6.105672836303711],[119,139,66,6.105361461639404],[119,139,67,6.099574565887451],[119,139,68,6.093015193939209],[119,139,69,6.091035842895508],[119,139,70,6.095149993896484],[119,139,71,6.105009078979492],[119,139,72,6.125766754150391],[119,139,73,6.157017707824707],[119,139,74,6.185085296630859],[119,139,75,6.203451156616211],[119,139,76,6.214632034301758],[119,139,77,6.2206244468688965],[119,139,78,6.2200398445129395],[119,139,79,6.212827682495117],[119,140,64,6.098939895629883],[119,140,65,6.105672836303711],[119,140,66,6.105361461639404],[119,140,67,6.099574565887451],[119,140,68,6.093015193939209],[119,140,69,6.091035842895508],[119,140,70,6.095149993896484],[119,140,71,6.105009078979492],[119,140,72,6.125766754150391],[119,140,73,6.157017707824707],[119,140,74,6.185085296630859],[119,140,75,6.203451156616211],[119,140,76,6.214632034301758],[119,140,77,6.2206244468688965],[119,140,78,6.2200398445129395],[119,140,79,6.212827682495117],[119,141,64,6.098939895629883],[119,141,65,6.105672836303711],[119,141,66,6.105361461639404],[119,141,67,6.099574565887451],[119,141,68,6.093015193939209],[119,141,69,6.091035842895508],[119,141,70,6.095149993896484],[119,141,71,6.105009078979492],[119,141,72,6.125766754150391],[119,141,73,6.157017707824707],[119,141,74,6.185085296630859],[119,141,75,6.203451156616211],[119,141,76,6.214632034301758],[119,141,77,6.2206244468688965],[119,141,78,6.2200398445129395],[119,141,79,6.212827682495117],[119,142,64,6.098939895629883],[119,142,65,6.105672836303711],[119,142,66,6.105361461639404],[119,142,67,6.099574565887451],[119,142,68,6.093015193939209],[119,142,69,6.091035842895508],[119,142,70,6.095149993896484],[119,142,71,6.105009078979492],[119,142,72,6.125766754150391],[119,142,73,6.157017707824707],[119,142,74,6.185085296630859],[119,142,75,6.203451156616211],[119,142,76,6.214632034301758],[119,142,77,6.2206244468688965],[119,142,78,6.2200398445129395],[119,142,79,6.212827682495117],[119,143,64,6.098939895629883],[119,143,65,6.105672836303711],[119,143,66,6.105361461639404],[119,143,67,6.099574565887451],[119,143,68,6.093015193939209],[119,143,69,6.091035842895508],[119,143,70,6.095149993896484],[119,143,71,6.105009078979492],[119,143,72,6.125766754150391],[119,143,73,6.157017707824707],[119,143,74,6.185085296630859],[119,143,75,6.203451156616211],[119,143,76,6.214632034301758],[119,143,77,6.2206244468688965],[119,143,78,6.2200398445129395],[119,143,79,6.212827682495117],[119,144,64,6.098939895629883],[119,144,65,6.105672836303711],[119,144,66,6.105361461639404],[119,144,67,6.099574565887451],[119,144,68,6.093015193939209],[119,144,69,6.091035842895508],[119,144,70,6.095149993896484],[119,144,71,6.105009078979492],[119,144,72,6.125766754150391],[119,144,73,6.157017707824707],[119,144,74,6.185085296630859],[119,144,75,6.203451156616211],[119,144,76,6.214632034301758],[119,144,77,6.2206244468688965],[119,144,78,6.2200398445129395],[119,144,79,6.212827682495117],[119,145,64,6.098939895629883],[119,145,65,6.105672836303711],[119,145,66,6.105361461639404],[119,145,67,6.099574565887451],[119,145,68,6.093015193939209],[119,145,69,6.091035842895508],[119,145,70,6.095149993896484],[119,145,71,6.105009078979492],[119,145,72,6.125766754150391],[119,145,73,6.157017707824707],[119,145,74,6.185085296630859],[119,145,75,6.203451156616211],[119,145,76,6.214632034301758],[119,145,77,6.2206244468688965],[119,145,78,6.2200398445129395],[119,145,79,6.212827682495117],[119,146,64,6.098939895629883],[119,146,65,6.105672836303711],[119,146,66,6.105361461639404],[119,146,67,6.099574565887451],[119,146,68,6.093015193939209],[119,146,69,6.091035842895508],[119,146,70,6.095149993896484],[119,146,71,6.105009078979492],[119,146,72,6.125766754150391],[119,146,73,6.157017707824707],[119,146,74,6.185085296630859],[119,146,75,6.203451156616211],[119,146,76,6.214632034301758],[119,146,77,6.2206244468688965],[119,146,78,6.2200398445129395],[119,146,79,6.212827682495117],[119,147,64,6.098939895629883],[119,147,65,6.105672836303711],[119,147,66,6.105361461639404],[119,147,67,6.099574565887451],[119,147,68,6.093015193939209],[119,147,69,6.091035842895508],[119,147,70,6.095149993896484],[119,147,71,6.105009078979492],[119,147,72,6.125766754150391],[119,147,73,6.157017707824707],[119,147,74,6.185085296630859],[119,147,75,6.203451156616211],[119,147,76,6.214632034301758],[119,147,77,6.2206244468688965],[119,147,78,6.2200398445129395],[119,147,79,6.212827682495117],[119,148,64,6.098939895629883],[119,148,65,6.105672836303711],[119,148,66,6.105361461639404],[119,148,67,6.099574565887451],[119,148,68,6.093015193939209],[119,148,69,6.091035842895508],[119,148,70,6.095149993896484],[119,148,71,6.105009078979492],[119,148,72,6.125766754150391],[119,148,73,6.157017707824707],[119,148,74,6.185085296630859],[119,148,75,6.203451156616211],[119,148,76,6.214632034301758],[119,148,77,6.2206244468688965],[119,148,78,6.2200398445129395],[119,148,79,6.212827682495117],[119,149,64,6.098939895629883],[119,149,65,6.105672836303711],[119,149,66,6.105361461639404],[119,149,67,6.099574565887451],[119,149,68,6.093015193939209],[119,149,69,6.091035842895508],[119,149,70,6.095149993896484],[119,149,71,6.105009078979492],[119,149,72,6.125766754150391],[119,149,73,6.157017707824707],[119,149,74,6.185085296630859],[119,149,75,6.203451156616211],[119,149,76,6.214632034301758],[119,149,77,6.2206244468688965],[119,149,78,6.2200398445129395],[119,149,79,6.212827682495117],[119,150,64,6.098939895629883],[119,150,65,6.105672836303711],[119,150,66,6.105361461639404],[119,150,67,6.099574565887451],[119,150,68,6.093015193939209],[119,150,69,6.091035842895508],[119,150,70,6.095149993896484],[119,150,71,6.105009078979492],[119,150,72,6.125766754150391],[119,150,73,6.157017707824707],[119,150,74,6.185085296630859],[119,150,75,6.203451156616211],[119,150,76,6.214632034301758],[119,150,77,6.2206244468688965],[119,150,78,6.2200398445129395],[119,150,79,6.212827682495117],[119,151,64,6.098939895629883],[119,151,65,6.105672836303711],[119,151,66,6.105361461639404],[119,151,67,6.099574565887451],[119,151,68,6.093015193939209],[119,151,69,6.091035842895508],[119,151,70,6.095149993896484],[119,151,71,6.105009078979492],[119,151,72,6.125766754150391],[119,151,73,6.157017707824707],[119,151,74,6.185085296630859],[119,151,75,6.203451156616211],[119,151,76,6.214632034301758],[119,151,77,6.2206244468688965],[119,151,78,6.2200398445129395],[119,151,79,6.212827682495117],[119,152,64,6.098939895629883],[119,152,65,6.105672836303711],[119,152,66,6.105361461639404],[119,152,67,6.099574565887451],[119,152,68,6.093015193939209],[119,152,69,6.091035842895508],[119,152,70,6.095149993896484],[119,152,71,6.105009078979492],[119,152,72,6.125766754150391],[119,152,73,6.157017707824707],[119,152,74,6.185085296630859],[119,152,75,6.203451156616211],[119,152,76,6.214632034301758],[119,152,77,6.2206244468688965],[119,152,78,6.2200398445129395],[119,152,79,6.212827682495117],[119,153,64,6.098939895629883],[119,153,65,6.105672836303711],[119,153,66,6.105361461639404],[119,153,67,6.099574565887451],[119,153,68,6.093015193939209],[119,153,69,6.091035842895508],[119,153,70,6.095149993896484],[119,153,71,6.105009078979492],[119,153,72,6.125766754150391],[119,153,73,6.157017707824707],[119,153,74,6.185085296630859],[119,153,75,6.203451156616211],[119,153,76,6.214632034301758],[119,153,77,6.2206244468688965],[119,153,78,6.2200398445129395],[119,153,79,6.212827682495117],[119,154,64,6.098939895629883],[119,154,65,6.105672836303711],[119,154,66,6.105361461639404],[119,154,67,6.099574565887451],[119,154,68,6.093015193939209],[119,154,69,6.091035842895508],[119,154,70,6.095149993896484],[119,154,71,6.105009078979492],[119,154,72,6.125766754150391],[119,154,73,6.157017707824707],[119,154,74,6.185085296630859],[119,154,75,6.203451156616211],[119,154,76,6.214632034301758],[119,154,77,6.2206244468688965],[119,154,78,6.2200398445129395],[119,154,79,6.212827682495117],[119,155,64,6.098939895629883],[119,155,65,6.105672836303711],[119,155,66,6.105361461639404],[119,155,67,6.099574565887451],[119,155,68,6.093015193939209],[119,155,69,6.091035842895508],[119,155,70,6.095149993896484],[119,155,71,6.105009078979492],[119,155,72,6.125766754150391],[119,155,73,6.157017707824707],[119,155,74,6.185085296630859],[119,155,75,6.203451156616211],[119,155,76,6.214632034301758],[119,155,77,6.2206244468688965],[119,155,78,6.2200398445129395],[119,155,79,6.212827682495117],[119,156,64,6.098939895629883],[119,156,65,6.105672836303711],[119,156,66,6.105361461639404],[119,156,67,6.099574565887451],[119,156,68,6.093015193939209],[119,156,69,6.091035842895508],[119,156,70,6.095149993896484],[119,156,71,6.105009078979492],[119,156,72,6.125766754150391],[119,156,73,6.157017707824707],[119,156,74,6.185085296630859],[119,156,75,6.203451156616211],[119,156,76,6.214632034301758],[119,156,77,6.2206244468688965],[119,156,78,6.2200398445129395],[119,156,79,6.212827682495117],[119,157,64,6.098939895629883],[119,157,65,6.105672836303711],[119,157,66,6.105361461639404],[119,157,67,6.099574565887451],[119,157,68,6.093015193939209],[119,157,69,6.091035842895508],[119,157,70,6.095149993896484],[119,157,71,6.105009078979492],[119,157,72,6.125766754150391],[119,157,73,6.157017707824707],[119,157,74,6.185085296630859],[119,157,75,6.203451156616211],[119,157,76,6.214632034301758],[119,157,77,6.2206244468688965],[119,157,78,6.2200398445129395],[119,157,79,6.212827682495117],[119,158,64,6.098939895629883],[119,158,65,6.105672836303711],[119,158,66,6.105361461639404],[119,158,67,6.099574565887451],[119,158,68,6.093015193939209],[119,158,69,6.091035842895508],[119,158,70,6.095149993896484],[119,158,71,6.105009078979492],[119,158,72,6.125766754150391],[119,158,73,6.157017707824707],[119,158,74,6.185085296630859],[119,158,75,6.203451156616211],[119,158,76,6.214632034301758],[119,158,77,6.2206244468688965],[119,158,78,6.2200398445129395],[119,158,79,6.212827682495117],[119,159,64,6.098939895629883],[119,159,65,6.105672836303711],[119,159,66,6.105361461639404],[119,159,67,6.099574565887451],[119,159,68,6.093015193939209],[119,159,69,6.091035842895508],[119,159,70,6.095149993896484],[119,159,71,6.105009078979492],[119,159,72,6.125766754150391],[119,159,73,6.157017707824707],[119,159,74,6.185085296630859],[119,159,75,6.203451156616211],[119,159,76,6.214632034301758],[119,159,77,6.2206244468688965],[119,159,78,6.2200398445129395],[119,159,79,6.212827682495117],[119,160,64,6.098939895629883],[119,160,65,6.105672836303711],[119,160,66,6.105361461639404],[119,160,67,6.099574565887451],[119,160,68,6.093015193939209],[119,160,69,6.091035842895508],[119,160,70,6.095149993896484],[119,160,71,6.105009078979492],[119,160,72,6.125766754150391],[119,160,73,6.157017707824707],[119,160,74,6.185085296630859],[119,160,75,6.203451156616211],[119,160,76,6.214632034301758],[119,160,77,6.2206244468688965],[119,160,78,6.2200398445129395],[119,160,79,6.212827682495117],[119,161,64,6.098939895629883],[119,161,65,6.105672836303711],[119,161,66,6.105361461639404],[119,161,67,6.099574565887451],[119,161,68,6.093015193939209],[119,161,69,6.091035842895508],[119,161,70,6.095149993896484],[119,161,71,6.105009078979492],[119,161,72,6.125766754150391],[119,161,73,6.157017707824707],[119,161,74,6.185085296630859],[119,161,75,6.203451156616211],[119,161,76,6.214632034301758],[119,161,77,6.2206244468688965],[119,161,78,6.2200398445129395],[119,161,79,6.212827682495117],[119,162,64,6.098939895629883],[119,162,65,6.105672836303711],[119,162,66,6.105361461639404],[119,162,67,6.099574565887451],[119,162,68,6.093015193939209],[119,162,69,6.091035842895508],[119,162,70,6.095149993896484],[119,162,71,6.105009078979492],[119,162,72,6.125766754150391],[119,162,73,6.157017707824707],[119,162,74,6.185085296630859],[119,162,75,6.203451156616211],[119,162,76,6.214632034301758],[119,162,77,6.2206244468688965],[119,162,78,6.2200398445129395],[119,162,79,6.212827682495117],[119,163,64,6.098939895629883],[119,163,65,6.105672836303711],[119,163,66,6.105361461639404],[119,163,67,6.099574565887451],[119,163,68,6.093015193939209],[119,163,69,6.091035842895508],[119,163,70,6.095149993896484],[119,163,71,6.105009078979492],[119,163,72,6.125766754150391],[119,163,73,6.157017707824707],[119,163,74,6.185085296630859],[119,163,75,6.203451156616211],[119,163,76,6.214632034301758],[119,163,77,6.2206244468688965],[119,163,78,6.2200398445129395],[119,163,79,6.212827682495117],[119,164,64,6.098939895629883],[119,164,65,6.105672836303711],[119,164,66,6.105361461639404],[119,164,67,6.099574565887451],[119,164,68,6.093015193939209],[119,164,69,6.091035842895508],[119,164,70,6.095149993896484],[119,164,71,6.105009078979492],[119,164,72,6.125766754150391],[119,164,73,6.157017707824707],[119,164,74,6.185085296630859],[119,164,75,6.203451156616211],[119,164,76,6.214632034301758],[119,164,77,6.2206244468688965],[119,164,78,6.2200398445129395],[119,164,79,6.212827682495117],[119,165,64,6.098939895629883],[119,165,65,6.105672836303711],[119,165,66,6.105361461639404],[119,165,67,6.099574565887451],[119,165,68,6.093015193939209],[119,165,69,6.091035842895508],[119,165,70,6.095149993896484],[119,165,71,6.105009078979492],[119,165,72,6.125766754150391],[119,165,73,6.157017707824707],[119,165,74,6.185085296630859],[119,165,75,6.203451156616211],[119,165,76,6.214632034301758],[119,165,77,6.2206244468688965],[119,165,78,6.2200398445129395],[119,165,79,6.212827682495117],[119,166,64,6.098939895629883],[119,166,65,6.105672836303711],[119,166,66,6.105361461639404],[119,166,67,6.099574565887451],[119,166,68,6.093015193939209],[119,166,69,6.091035842895508],[119,166,70,6.095149993896484],[119,166,71,6.105009078979492],[119,166,72,6.125766754150391],[119,166,73,6.157017707824707],[119,166,74,6.185085296630859],[119,166,75,6.203451156616211],[119,166,76,6.214632034301758],[119,166,77,6.2206244468688965],[119,166,78,6.2200398445129395],[119,166,79,6.212827682495117],[119,167,64,6.098939895629883],[119,167,65,6.105672836303711],[119,167,66,6.105361461639404],[119,167,67,6.099574565887451],[119,167,68,6.093015193939209],[119,167,69,6.091035842895508],[119,167,70,6.095149993896484],[119,167,71,6.105009078979492],[119,167,72,6.125766754150391],[119,167,73,6.157017707824707],[119,167,74,6.185085296630859],[119,167,75,6.203451156616211],[119,167,76,6.214632034301758],[119,167,77,6.2206244468688965],[119,167,78,6.2200398445129395],[119,167,79,6.212827682495117],[119,168,64,6.098939895629883],[119,168,65,6.105672836303711],[119,168,66,6.105361461639404],[119,168,67,6.099574565887451],[119,168,68,6.093015193939209],[119,168,69,6.091035842895508],[119,168,70,6.095149993896484],[119,168,71,6.105009078979492],[119,168,72,6.125766754150391],[119,168,73,6.157017707824707],[119,168,74,6.185085296630859],[119,168,75,6.203451156616211],[119,168,76,6.214632034301758],[119,168,77,6.2206244468688965],[119,168,78,6.2200398445129395],[119,168,79,6.212827682495117],[119,169,64,6.098939895629883],[119,169,65,6.105672836303711],[119,169,66,6.105361461639404],[119,169,67,6.099574565887451],[119,169,68,6.093015193939209],[119,169,69,6.091035842895508],[119,169,70,6.095149993896484],[119,169,71,6.105009078979492],[119,169,72,6.125766754150391],[119,169,73,6.157017707824707],[119,169,74,6.185085296630859],[119,169,75,6.203451156616211],[119,169,76,6.214632034301758],[119,169,77,6.2206244468688965],[119,169,78,6.2200398445129395],[119,169,79,6.212827682495117],[119,170,64,6.098939895629883],[119,170,65,6.105672836303711],[119,170,66,6.105361461639404],[119,170,67,6.099574565887451],[119,170,68,6.093015193939209],[119,170,69,6.091035842895508],[119,170,70,6.095149993896484],[119,170,71,6.105009078979492],[119,170,72,6.125766754150391],[119,170,73,6.157017707824707],[119,170,74,6.185085296630859],[119,170,75,6.203451156616211],[119,170,76,6.214632034301758],[119,170,77,6.2206244468688965],[119,170,78,6.2200398445129395],[119,170,79,6.212827682495117],[119,171,64,6.098939895629883],[119,171,65,6.105672836303711],[119,171,66,6.105361461639404],[119,171,67,6.099574565887451],[119,171,68,6.093015193939209],[119,171,69,6.091035842895508],[119,171,70,6.095149993896484],[119,171,71,6.105009078979492],[119,171,72,6.125766754150391],[119,171,73,6.157017707824707],[119,171,74,6.185085296630859],[119,171,75,6.203451156616211],[119,171,76,6.214632034301758],[119,171,77,6.2206244468688965],[119,171,78,6.2200398445129395],[119,171,79,6.212827682495117],[119,172,64,6.098939895629883],[119,172,65,6.105672836303711],[119,172,66,6.105361461639404],[119,172,67,6.099574565887451],[119,172,68,6.093015193939209],[119,172,69,6.091035842895508],[119,172,70,6.095149993896484],[119,172,71,6.105009078979492],[119,172,72,6.125766754150391],[119,172,73,6.157017707824707],[119,172,74,6.185085296630859],[119,172,75,6.203451156616211],[119,172,76,6.214632034301758],[119,172,77,6.2206244468688965],[119,172,78,6.2200398445129395],[119,172,79,6.212827682495117],[119,173,64,6.098939895629883],[119,173,65,6.105672836303711],[119,173,66,6.105361461639404],[119,173,67,6.099574565887451],[119,173,68,6.093015193939209],[119,173,69,6.091035842895508],[119,173,70,6.095149993896484],[119,173,71,6.105009078979492],[119,173,72,6.125766754150391],[119,173,73,6.157017707824707],[119,173,74,6.185085296630859],[119,173,75,6.203451156616211],[119,173,76,6.214632034301758],[119,173,77,6.2206244468688965],[119,173,78,6.2200398445129395],[119,173,79,6.212827682495117],[119,174,64,6.098939895629883],[119,174,65,6.105672836303711],[119,174,66,6.105361461639404],[119,174,67,6.099574565887451],[119,174,68,6.093015193939209],[119,174,69,6.091035842895508],[119,174,70,6.095149993896484],[119,174,71,6.105009078979492],[119,174,72,6.125766754150391],[119,174,73,6.157017707824707],[119,174,74,6.185085296630859],[119,174,75,6.203451156616211],[119,174,76,6.214632034301758],[119,174,77,6.2206244468688965],[119,174,78,6.2200398445129395],[119,174,79,6.212827682495117],[119,175,64,6.098939895629883],[119,175,65,6.105672836303711],[119,175,66,6.105361461639404],[119,175,67,6.099574565887451],[119,175,68,6.093015193939209],[119,175,69,6.091035842895508],[119,175,70,6.095149993896484],[119,175,71,6.105009078979492],[119,175,72,6.125766754150391],[119,175,73,6.157017707824707],[119,175,74,6.185085296630859],[119,175,75,6.203451156616211],[119,175,76,6.214632034301758],[119,175,77,6.2206244468688965],[119,175,78,6.2200398445129395],[119,175,79,6.212827682495117],[119,176,64,6.098939895629883],[119,176,65,6.105672836303711],[119,176,66,6.105361461639404],[119,176,67,6.099574565887451],[119,176,68,6.093015193939209],[119,176,69,6.091035842895508],[119,176,70,6.095149993896484],[119,176,71,6.105009078979492],[119,176,72,6.125766754150391],[119,176,73,6.157017707824707],[119,176,74,6.185085296630859],[119,176,75,6.203451156616211],[119,176,76,6.214632034301758],[119,176,77,6.2206244468688965],[119,176,78,6.2200398445129395],[119,176,79,6.212827682495117],[119,177,64,6.098939895629883],[119,177,65,6.105672836303711],[119,177,66,6.105361461639404],[119,177,67,6.099574565887451],[119,177,68,6.093015193939209],[119,177,69,6.091035842895508],[119,177,70,6.095149993896484],[119,177,71,6.105009078979492],[119,177,72,6.125766754150391],[119,177,73,6.157017707824707],[119,177,74,6.185085296630859],[119,177,75,6.203451156616211],[119,177,76,6.214632034301758],[119,177,77,6.2206244468688965],[119,177,78,6.2200398445129395],[119,177,79,6.212827682495117],[119,178,64,6.098939895629883],[119,178,65,6.105672836303711],[119,178,66,6.105361461639404],[119,178,67,6.099574565887451],[119,178,68,6.093015193939209],[119,178,69,6.091035842895508],[119,178,70,6.095149993896484],[119,178,71,6.105009078979492],[119,178,72,6.125766754150391],[119,178,73,6.157017707824707],[119,178,74,6.185085296630859],[119,178,75,6.203451156616211],[119,178,76,6.214632034301758],[119,178,77,6.2206244468688965],[119,178,78,6.2200398445129395],[119,178,79,6.212827682495117],[119,179,64,6.098939895629883],[119,179,65,6.105672836303711],[119,179,66,6.105361461639404],[119,179,67,6.099574565887451],[119,179,68,6.093015193939209],[119,179,69,6.091035842895508],[119,179,70,6.095149993896484],[119,179,71,6.105009078979492],[119,179,72,6.125766754150391],[119,179,73,6.157017707824707],[119,179,74,6.185085296630859],[119,179,75,6.203451156616211],[119,179,76,6.214632034301758],[119,179,77,6.2206244468688965],[119,179,78,6.2200398445129395],[119,179,79,6.212827682495117],[119,180,64,6.098939895629883],[119,180,65,6.105672836303711],[119,180,66,6.105361461639404],[119,180,67,6.099574565887451],[119,180,68,6.093015193939209],[119,180,69,6.091035842895508],[119,180,70,6.095149993896484],[119,180,71,6.105009078979492],[119,180,72,6.125766754150391],[119,180,73,6.157017707824707],[119,180,74,6.185085296630859],[119,180,75,6.203451156616211],[119,180,76,6.214632034301758],[119,180,77,6.2206244468688965],[119,180,78,6.2200398445129395],[119,180,79,6.212827682495117],[119,181,64,6.098939895629883],[119,181,65,6.105672836303711],[119,181,66,6.105361461639404],[119,181,67,6.099574565887451],[119,181,68,6.093015193939209],[119,181,69,6.091035842895508],[119,181,70,6.095149993896484],[119,181,71,6.105009078979492],[119,181,72,6.125766754150391],[119,181,73,6.157017707824707],[119,181,74,6.185085296630859],[119,181,75,6.203451156616211],[119,181,76,6.214632034301758],[119,181,77,6.2206244468688965],[119,181,78,6.2200398445129395],[119,181,79,6.212827682495117],[119,182,64,6.098939895629883],[119,182,65,6.105672836303711],[119,182,66,6.105361461639404],[119,182,67,6.099574565887451],[119,182,68,6.093015193939209],[119,182,69,6.091035842895508],[119,182,70,6.095149993896484],[119,182,71,6.105009078979492],[119,182,72,6.125766754150391],[119,182,73,6.157017707824707],[119,182,74,6.185085296630859],[119,182,75,6.203451156616211],[119,182,76,6.214632034301758],[119,182,77,6.2206244468688965],[119,182,78,6.2200398445129395],[119,182,79,6.212827682495117],[119,183,64,6.098939895629883],[119,183,65,6.105672836303711],[119,183,66,6.105361461639404],[119,183,67,6.099574565887451],[119,183,68,6.093015193939209],[119,183,69,6.091035842895508],[119,183,70,6.095149993896484],[119,183,71,6.105009078979492],[119,183,72,6.125766754150391],[119,183,73,6.157017707824707],[119,183,74,6.185085296630859],[119,183,75,6.203451156616211],[119,183,76,6.214632034301758],[119,183,77,6.2206244468688965],[119,183,78,6.2200398445129395],[119,183,79,6.212827682495117],[119,184,64,6.098939895629883],[119,184,65,6.105672836303711],[119,184,66,6.105361461639404],[119,184,67,6.099574565887451],[119,184,68,6.093015193939209],[119,184,69,6.091035842895508],[119,184,70,6.095149993896484],[119,184,71,6.105009078979492],[119,184,72,6.125766754150391],[119,184,73,6.157017707824707],[119,184,74,6.185085296630859],[119,184,75,6.203451156616211],[119,184,76,6.214632034301758],[119,184,77,6.2206244468688965],[119,184,78,6.2200398445129395],[119,184,79,6.212827682495117],[119,185,64,6.098939895629883],[119,185,65,6.105672836303711],[119,185,66,6.105361461639404],[119,185,67,6.099574565887451],[119,185,68,6.093015193939209],[119,185,69,6.091035842895508],[119,185,70,6.095149993896484],[119,185,71,6.105009078979492],[119,185,72,6.125766754150391],[119,185,73,6.157017707824707],[119,185,74,6.185085296630859],[119,185,75,6.203451156616211],[119,185,76,6.214632034301758],[119,185,77,6.2206244468688965],[119,185,78,6.2200398445129395],[119,185,79,6.212827682495117],[119,186,64,6.098939895629883],[119,186,65,6.105672836303711],[119,186,66,6.105361461639404],[119,186,67,6.099574565887451],[119,186,68,6.093015193939209],[119,186,69,6.091035842895508],[119,186,70,6.095149993896484],[119,186,71,6.105009078979492],[119,186,72,6.125766754150391],[119,186,73,6.157017707824707],[119,186,74,6.185085296630859],[119,186,75,6.203451156616211],[119,186,76,6.214632034301758],[119,186,77,6.2206244468688965],[119,186,78,6.2200398445129395],[119,186,79,6.212827682495117],[119,187,64,6.098939895629883],[119,187,65,6.105672836303711],[119,187,66,6.105361461639404],[119,187,67,6.099574565887451],[119,187,68,6.093015193939209],[119,187,69,6.091035842895508],[119,187,70,6.095149993896484],[119,187,71,6.105009078979492],[119,187,72,6.125766754150391],[119,187,73,6.157017707824707],[119,187,74,6.185085296630859],[119,187,75,6.203451156616211],[119,187,76,6.214632034301758],[119,187,77,6.2206244468688965],[119,187,78,6.2200398445129395],[119,187,79,6.212827682495117],[119,188,64,6.098939895629883],[119,188,65,6.105672836303711],[119,188,66,6.105361461639404],[119,188,67,6.099574565887451],[119,188,68,6.093015193939209],[119,188,69,6.091035842895508],[119,188,70,6.095149993896484],[119,188,71,6.105009078979492],[119,188,72,6.125766754150391],[119,188,73,6.157017707824707],[119,188,74,6.185085296630859],[119,188,75,6.203451156616211],[119,188,76,6.214632034301758],[119,188,77,6.2206244468688965],[119,188,78,6.2200398445129395],[119,188,79,6.212827682495117],[119,189,64,6.098939895629883],[119,189,65,6.105672836303711],[119,189,66,6.105361461639404],[119,189,67,6.099574565887451],[119,189,68,6.093015193939209],[119,189,69,6.091035842895508],[119,189,70,6.095149993896484],[119,189,71,6.105009078979492],[119,189,72,6.125766754150391],[119,189,73,6.157017707824707],[119,189,74,6.185085296630859],[119,189,75,6.203451156616211],[119,189,76,6.214632034301758],[119,189,77,6.2206244468688965],[119,189,78,6.2200398445129395],[119,189,79,6.212827682495117],[119,190,64,6.098939895629883],[119,190,65,6.105672836303711],[119,190,66,6.105361461639404],[119,190,67,6.099574565887451],[119,190,68,6.093015193939209],[119,190,69,6.091035842895508],[119,190,70,6.095149993896484],[119,190,71,6.105009078979492],[119,190,72,6.125766754150391],[119,190,73,6.157017707824707],[119,190,74,6.185085296630859],[119,190,75,6.203451156616211],[119,190,76,6.214632034301758],[119,190,77,6.2206244468688965],[119,190,78,6.2200398445129395],[119,190,79,6.212827682495117],[119,191,64,6.098939895629883],[119,191,65,6.105672836303711],[119,191,66,6.105361461639404],[119,191,67,6.099574565887451],[119,191,68,6.093015193939209],[119,191,69,6.091035842895508],[119,191,70,6.095149993896484],[119,191,71,6.105009078979492],[119,191,72,6.125766754150391],[119,191,73,6.157017707824707],[119,191,74,6.185085296630859],[119,191,75,6.203451156616211],[119,191,76,6.214632034301758],[119,191,77,6.2206244468688965],[119,191,78,6.2200398445129395],[119,191,79,6.212827682495117],[119,192,64,6.098939895629883],[119,192,65,6.105672836303711],[119,192,66,6.105361461639404],[119,192,67,6.099574565887451],[119,192,68,6.093015193939209],[119,192,69,6.091035842895508],[119,192,70,6.095149993896484],[119,192,71,6.105009078979492],[119,192,72,6.125766754150391],[119,192,73,6.157017707824707],[119,192,74,6.185085296630859],[119,192,75,6.203451156616211],[119,192,76,6.214632034301758],[119,192,77,6.2206244468688965],[119,192,78,6.2200398445129395],[119,192,79,6.212827682495117],[119,193,64,6.098939895629883],[119,193,65,6.105672836303711],[119,193,66,6.105361461639404],[119,193,67,6.099574565887451],[119,193,68,6.093015193939209],[119,193,69,6.091035842895508],[119,193,70,6.095149993896484],[119,193,71,6.105009078979492],[119,193,72,6.125766754150391],[119,193,73,6.157017707824707],[119,193,74,6.185085296630859],[119,193,75,6.203451156616211],[119,193,76,6.214632034301758],[119,193,77,6.2206244468688965],[119,193,78,6.2200398445129395],[119,193,79,6.212827682495117],[119,194,64,6.098939895629883],[119,194,65,6.105672836303711],[119,194,66,6.105361461639404],[119,194,67,6.099574565887451],[119,194,68,6.093015193939209],[119,194,69,6.091035842895508],[119,194,70,6.095149993896484],[119,194,71,6.105009078979492],[119,194,72,6.125766754150391],[119,194,73,6.157017707824707],[119,194,74,6.185085296630859],[119,194,75,6.203451156616211],[119,194,76,6.214632034301758],[119,194,77,6.2206244468688965],[119,194,78,6.2200398445129395],[119,194,79,6.212827682495117],[119,195,64,6.098939895629883],[119,195,65,6.105672836303711],[119,195,66,6.105361461639404],[119,195,67,6.099574565887451],[119,195,68,6.093015193939209],[119,195,69,6.091035842895508],[119,195,70,6.095149993896484],[119,195,71,6.105009078979492],[119,195,72,6.125766754150391],[119,195,73,6.157017707824707],[119,195,74,6.185085296630859],[119,195,75,6.203451156616211],[119,195,76,6.214632034301758],[119,195,77,6.2206244468688965],[119,195,78,6.2200398445129395],[119,195,79,6.212827682495117],[119,196,64,6.098939895629883],[119,196,65,6.105672836303711],[119,196,66,6.105361461639404],[119,196,67,6.099574565887451],[119,196,68,6.093015193939209],[119,196,69,6.091035842895508],[119,196,70,6.095149993896484],[119,196,71,6.105009078979492],[119,196,72,6.125766754150391],[119,196,73,6.157017707824707],[119,196,74,6.185085296630859],[119,196,75,6.203451156616211],[119,196,76,6.214632034301758],[119,196,77,6.2206244468688965],[119,196,78,6.2200398445129395],[119,196,79,6.212827682495117],[119,197,64,6.098939895629883],[119,197,65,6.105672836303711],[119,197,66,6.105361461639404],[119,197,67,6.099574565887451],[119,197,68,6.093015193939209],[119,197,69,6.091035842895508],[119,197,70,6.095149993896484],[119,197,71,6.105009078979492],[119,197,72,6.125766754150391],[119,197,73,6.157017707824707],[119,197,74,6.185085296630859],[119,197,75,6.203451156616211],[119,197,76,6.214632034301758],[119,197,77,6.2206244468688965],[119,197,78,6.2200398445129395],[119,197,79,6.212827682495117],[119,198,64,6.098939895629883],[119,198,65,6.105672836303711],[119,198,66,6.105361461639404],[119,198,67,6.099574565887451],[119,198,68,6.093015193939209],[119,198,69,6.091035842895508],[119,198,70,6.095149993896484],[119,198,71,6.105009078979492],[119,198,72,6.125766754150391],[119,198,73,6.157017707824707],[119,198,74,6.185085296630859],[119,198,75,6.203451156616211],[119,198,76,6.214632034301758],[119,198,77,6.2206244468688965],[119,198,78,6.2200398445129395],[119,198,79,6.212827682495117],[119,199,64,6.098939895629883],[119,199,65,6.105672836303711],[119,199,66,6.105361461639404],[119,199,67,6.099574565887451],[119,199,68,6.093015193939209],[119,199,69,6.091035842895508],[119,199,70,6.095149993896484],[119,199,71,6.105009078979492],[119,199,72,6.125766754150391],[119,199,73,6.157017707824707],[119,199,74,6.185085296630859],[119,199,75,6.203451156616211],[119,199,76,6.214632034301758],[119,199,77,6.2206244468688965],[119,199,78,6.2200398445129395],[119,199,79,6.212827682495117],[119,200,64,6.098939895629883],[119,200,65,6.105672836303711],[119,200,66,6.105361461639404],[119,200,67,6.099574565887451],[119,200,68,6.093015193939209],[119,200,69,6.091035842895508],[119,200,70,6.095149993896484],[119,200,71,6.105009078979492],[119,200,72,6.125766754150391],[119,200,73,6.157017707824707],[119,200,74,6.185085296630859],[119,200,75,6.203451156616211],[119,200,76,6.214632034301758],[119,200,77,6.2206244468688965],[119,200,78,6.2200398445129395],[119,200,79,6.212827682495117],[119,201,64,6.098939895629883],[119,201,65,6.105672836303711],[119,201,66,6.105361461639404],[119,201,67,6.099574565887451],[119,201,68,6.093015193939209],[119,201,69,6.091035842895508],[119,201,70,6.095149993896484],[119,201,71,6.105009078979492],[119,201,72,6.125766754150391],[119,201,73,6.157017707824707],[119,201,74,6.185085296630859],[119,201,75,6.203451156616211],[119,201,76,6.214632034301758],[119,201,77,6.2206244468688965],[119,201,78,6.2200398445129395],[119,201,79,6.212827682495117],[119,202,64,6.098939895629883],[119,202,65,6.105672836303711],[119,202,66,6.105361461639404],[119,202,67,6.099574565887451],[119,202,68,6.093015193939209],[119,202,69,6.091035842895508],[119,202,70,6.095149993896484],[119,202,71,6.105009078979492],[119,202,72,6.125766754150391],[119,202,73,6.157017707824707],[119,202,74,6.185085296630859],[119,202,75,6.203451156616211],[119,202,76,6.214632034301758],[119,202,77,6.2206244468688965],[119,202,78,6.2200398445129395],[119,202,79,6.212827682495117],[119,203,64,6.098939895629883],[119,203,65,6.105672836303711],[119,203,66,6.105361461639404],[119,203,67,6.099574565887451],[119,203,68,6.093015193939209],[119,203,69,6.091035842895508],[119,203,70,6.095149993896484],[119,203,71,6.105009078979492],[119,203,72,6.125766754150391],[119,203,73,6.157017707824707],[119,203,74,6.185085296630859],[119,203,75,6.203451156616211],[119,203,76,6.214632034301758],[119,203,77,6.2206244468688965],[119,203,78,6.2200398445129395],[119,203,79,6.212827682495117],[119,204,64,6.098939895629883],[119,204,65,6.105672836303711],[119,204,66,6.105361461639404],[119,204,67,6.099574565887451],[119,204,68,6.093015193939209],[119,204,69,6.091035842895508],[119,204,70,6.095149993896484],[119,204,71,6.105009078979492],[119,204,72,6.125766754150391],[119,204,73,6.157017707824707],[119,204,74,6.185085296630859],[119,204,75,6.203451156616211],[119,204,76,6.214632034301758],[119,204,77,6.2206244468688965],[119,204,78,6.2200398445129395],[119,204,79,6.212827682495117],[119,205,64,6.098939895629883],[119,205,65,6.105672836303711],[119,205,66,6.105361461639404],[119,205,67,6.099574565887451],[119,205,68,6.093015193939209],[119,205,69,6.091035842895508],[119,205,70,6.095149993896484],[119,205,71,6.105009078979492],[119,205,72,6.125766754150391],[119,205,73,6.157017707824707],[119,205,74,6.185085296630859],[119,205,75,6.203451156616211],[119,205,76,6.214632034301758],[119,205,77,6.2206244468688965],[119,205,78,6.2200398445129395],[119,205,79,6.212827682495117],[119,206,64,6.098939895629883],[119,206,65,6.105672836303711],[119,206,66,6.105361461639404],[119,206,67,6.099574565887451],[119,206,68,6.093015193939209],[119,206,69,6.091035842895508],[119,206,70,6.095149993896484],[119,206,71,6.105009078979492],[119,206,72,6.125766754150391],[119,206,73,6.157017707824707],[119,206,74,6.185085296630859],[119,206,75,6.203451156616211],[119,206,76,6.214632034301758],[119,206,77,6.2206244468688965],[119,206,78,6.2200398445129395],[119,206,79,6.212827682495117],[119,207,64,6.098939895629883],[119,207,65,6.105672836303711],[119,207,66,6.105361461639404],[119,207,67,6.099574565887451],[119,207,68,6.093015193939209],[119,207,69,6.091035842895508],[119,207,70,6.095149993896484],[119,207,71,6.105009078979492],[119,207,72,6.125766754150391],[119,207,73,6.157017707824707],[119,207,74,6.185085296630859],[119,207,75,6.203451156616211],[119,207,76,6.214632034301758],[119,207,77,6.2206244468688965],[119,207,78,6.2200398445129395],[119,207,79,6.212827682495117],[119,208,64,6.098939895629883],[119,208,65,6.105672836303711],[119,208,66,6.105361461639404],[119,208,67,6.099574565887451],[119,208,68,6.093015193939209],[119,208,69,6.091035842895508],[119,208,70,6.095149993896484],[119,208,71,6.105009078979492],[119,208,72,6.125766754150391],[119,208,73,6.157017707824707],[119,208,74,6.185085296630859],[119,208,75,6.203451156616211],[119,208,76,6.214632034301758],[119,208,77,6.2206244468688965],[119,208,78,6.2200398445129395],[119,208,79,6.212827682495117],[119,209,64,6.098939895629883],[119,209,65,6.105672836303711],[119,209,66,6.105361461639404],[119,209,67,6.099574565887451],[119,209,68,6.093015193939209],[119,209,69,6.091035842895508],[119,209,70,6.095149993896484],[119,209,71,6.105009078979492],[119,209,72,6.125766754150391],[119,209,73,6.157017707824707],[119,209,74,6.185085296630859],[119,209,75,6.203451156616211],[119,209,76,6.214632034301758],[119,209,77,6.2206244468688965],[119,209,78,6.2200398445129395],[119,209,79,6.212827682495117],[119,210,64,6.098939895629883],[119,210,65,6.105672836303711],[119,210,66,6.105361461639404],[119,210,67,6.099574565887451],[119,210,68,6.093015193939209],[119,210,69,6.091035842895508],[119,210,70,6.095149993896484],[119,210,71,6.105009078979492],[119,210,72,6.125766754150391],[119,210,73,6.157017707824707],[119,210,74,6.185085296630859],[119,210,75,6.203451156616211],[119,210,76,6.214632034301758],[119,210,77,6.2206244468688965],[119,210,78,6.2200398445129395],[119,210,79,6.212827682495117],[119,211,64,6.098939895629883],[119,211,65,6.105672836303711],[119,211,66,6.105361461639404],[119,211,67,6.099574565887451],[119,211,68,6.093015193939209],[119,211,69,6.091035842895508],[119,211,70,6.095149993896484],[119,211,71,6.105009078979492],[119,211,72,6.125766754150391],[119,211,73,6.157017707824707],[119,211,74,6.185085296630859],[119,211,75,6.203451156616211],[119,211,76,6.214632034301758],[119,211,77,6.2206244468688965],[119,211,78,6.2200398445129395],[119,211,79,6.212827682495117],[119,212,64,6.098939895629883],[119,212,65,6.105672836303711],[119,212,66,6.105361461639404],[119,212,67,6.099574565887451],[119,212,68,6.093015193939209],[119,212,69,6.091035842895508],[119,212,70,6.095149993896484],[119,212,71,6.105009078979492],[119,212,72,6.125766754150391],[119,212,73,6.157017707824707],[119,212,74,6.185085296630859],[119,212,75,6.203451156616211],[119,212,76,6.214632034301758],[119,212,77,6.2206244468688965],[119,212,78,6.2200398445129395],[119,212,79,6.212827682495117],[119,213,64,6.098939895629883],[119,213,65,6.105672836303711],[119,213,66,6.105361461639404],[119,213,67,6.099574565887451],[119,213,68,6.093015193939209],[119,213,69,6.091035842895508],[119,213,70,6.095149993896484],[119,213,71,6.105009078979492],[119,213,72,6.125766754150391],[119,213,73,6.157017707824707],[119,213,74,6.185085296630859],[119,213,75,6.203451156616211],[119,213,76,6.214632034301758],[119,213,77,6.2206244468688965],[119,213,78,6.2200398445129395],[119,213,79,6.212827682495117],[119,214,64,6.098939895629883],[119,214,65,6.105672836303711],[119,214,66,6.105361461639404],[119,214,67,6.099574565887451],[119,214,68,6.093015193939209],[119,214,69,6.091035842895508],[119,214,70,6.095149993896484],[119,214,71,6.105009078979492],[119,214,72,6.125766754150391],[119,214,73,6.157017707824707],[119,214,74,6.185085296630859],[119,214,75,6.203451156616211],[119,214,76,6.214632034301758],[119,214,77,6.2206244468688965],[119,214,78,6.2200398445129395],[119,214,79,6.212827682495117],[119,215,64,6.098939895629883],[119,215,65,6.105672836303711],[119,215,66,6.105361461639404],[119,215,67,6.099574565887451],[119,215,68,6.093015193939209],[119,215,69,6.091035842895508],[119,215,70,6.095149993896484],[119,215,71,6.105009078979492],[119,215,72,6.125766754150391],[119,215,73,6.157017707824707],[119,215,74,6.185085296630859],[119,215,75,6.203451156616211],[119,215,76,6.214632034301758],[119,215,77,6.2206244468688965],[119,215,78,6.2200398445129395],[119,215,79,6.212827682495117],[119,216,64,6.098939895629883],[119,216,65,6.105672836303711],[119,216,66,6.105361461639404],[119,216,67,6.099574565887451],[119,216,68,6.093015193939209],[119,216,69,6.091035842895508],[119,216,70,6.095149993896484],[119,216,71,6.105009078979492],[119,216,72,6.125766754150391],[119,216,73,6.157017707824707],[119,216,74,6.185085296630859],[119,216,75,6.203451156616211],[119,216,76,6.214632034301758],[119,216,77,6.2206244468688965],[119,216,78,6.2200398445129395],[119,216,79,6.212827682495117],[119,217,64,6.098939895629883],[119,217,65,6.105672836303711],[119,217,66,6.105361461639404],[119,217,67,6.099574565887451],[119,217,68,6.093015193939209],[119,217,69,6.091035842895508],[119,217,70,6.095149993896484],[119,217,71,6.105009078979492],[119,217,72,6.125766754150391],[119,217,73,6.157017707824707],[119,217,74,6.185085296630859],[119,217,75,6.203451156616211],[119,217,76,6.214632034301758],[119,217,77,6.2206244468688965],[119,217,78,6.2200398445129395],[119,217,79,6.212827682495117],[119,218,64,6.098939895629883],[119,218,65,6.105672836303711],[119,218,66,6.105361461639404],[119,218,67,6.099574565887451],[119,218,68,6.093015193939209],[119,218,69,6.091035842895508],[119,218,70,6.095149993896484],[119,218,71,6.105009078979492],[119,218,72,6.125766754150391],[119,218,73,6.157017707824707],[119,218,74,6.185085296630859],[119,218,75,6.203451156616211],[119,218,76,6.214632034301758],[119,218,77,6.2206244468688965],[119,218,78,6.2200398445129395],[119,218,79,6.212827682495117],[119,219,64,6.098939895629883],[119,219,65,6.105672836303711],[119,219,66,6.105361461639404],[119,219,67,6.099574565887451],[119,219,68,6.093015193939209],[119,219,69,6.091035842895508],[119,219,70,6.095149993896484],[119,219,71,6.105009078979492],[119,219,72,6.125766754150391],[119,219,73,6.157017707824707],[119,219,74,6.185085296630859],[119,219,75,6.203451156616211],[119,219,76,6.214632034301758],[119,219,77,6.2206244468688965],[119,219,78,6.2200398445129395],[119,219,79,6.212827682495117],[119,220,64,6.098939895629883],[119,220,65,6.105672836303711],[119,220,66,6.105361461639404],[119,220,67,6.099574565887451],[119,220,68,6.093015193939209],[119,220,69,6.091035842895508],[119,220,70,6.095149993896484],[119,220,71,6.105009078979492],[119,220,72,6.125766754150391],[119,220,73,6.157017707824707],[119,220,74,6.185085296630859],[119,220,75,6.203451156616211],[119,220,76,6.214632034301758],[119,220,77,6.2206244468688965],[119,220,78,6.2200398445129395],[119,220,79,6.212827682495117],[119,221,64,6.098939895629883],[119,221,65,6.105672836303711],[119,221,66,6.105361461639404],[119,221,67,6.099574565887451],[119,221,68,6.093015193939209],[119,221,69,6.091035842895508],[119,221,70,6.095149993896484],[119,221,71,6.105009078979492],[119,221,72,6.125766754150391],[119,221,73,6.157017707824707],[119,221,74,6.185085296630859],[119,221,75,6.203451156616211],[119,221,76,6.214632034301758],[119,221,77,6.2206244468688965],[119,221,78,6.2200398445129395],[119,221,79,6.212827682495117],[119,222,64,6.098939895629883],[119,222,65,6.105672836303711],[119,222,66,6.105361461639404],[119,222,67,6.099574565887451],[119,222,68,6.093015193939209],[119,222,69,6.091035842895508],[119,222,70,6.095149993896484],[119,222,71,6.105009078979492],[119,222,72,6.125766754150391],[119,222,73,6.157017707824707],[119,222,74,6.185085296630859],[119,222,75,6.203451156616211],[119,222,76,6.214632034301758],[119,222,77,6.2206244468688965],[119,222,78,6.2200398445129395],[119,222,79,6.212827682495117],[119,223,64,6.098939895629883],[119,223,65,6.105672836303711],[119,223,66,6.105361461639404],[119,223,67,6.099574565887451],[119,223,68,6.093015193939209],[119,223,69,6.091035842895508],[119,223,70,6.095149993896484],[119,223,71,6.105009078979492],[119,223,72,6.125766754150391],[119,223,73,6.157017707824707],[119,223,74,6.185085296630859],[119,223,75,6.203451156616211],[119,223,76,6.214632034301758],[119,223,77,6.2206244468688965],[119,223,78,6.2200398445129395],[119,223,79,6.212827682495117],[119,224,64,6.098939895629883],[119,224,65,6.105672836303711],[119,224,66,6.105361461639404],[119,224,67,6.099574565887451],[119,224,68,6.093015193939209],[119,224,69,6.091035842895508],[119,224,70,6.095149993896484],[119,224,71,6.105009078979492],[119,224,72,6.125766754150391],[119,224,73,6.157017707824707],[119,224,74,6.185085296630859],[119,224,75,6.203451156616211],[119,224,76,6.214632034301758],[119,224,77,6.2206244468688965],[119,224,78,6.2200398445129395],[119,224,79,6.212827682495117],[119,225,64,6.098939895629883],[119,225,65,6.105672836303711],[119,225,66,6.105361461639404],[119,225,67,6.099574565887451],[119,225,68,6.093015193939209],[119,225,69,6.091035842895508],[119,225,70,6.095149993896484],[119,225,71,6.105009078979492],[119,225,72,6.125766754150391],[119,225,73,6.157017707824707],[119,225,74,6.185085296630859],[119,225,75,6.203451156616211],[119,225,76,6.214632034301758],[119,225,77,6.2206244468688965],[119,225,78,6.2200398445129395],[119,225,79,6.212827682495117],[119,226,64,6.098939895629883],[119,226,65,6.105672836303711],[119,226,66,6.105361461639404],[119,226,67,6.099574565887451],[119,226,68,6.093015193939209],[119,226,69,6.091035842895508],[119,226,70,6.095149993896484],[119,226,71,6.105009078979492],[119,226,72,6.125766754150391],[119,226,73,6.157017707824707],[119,226,74,6.185085296630859],[119,226,75,6.203451156616211],[119,226,76,6.214632034301758],[119,226,77,6.2206244468688965],[119,226,78,6.2200398445129395],[119,226,79,6.212827682495117],[119,227,64,6.098939895629883],[119,227,65,6.105672836303711],[119,227,66,6.105361461639404],[119,227,67,6.099574565887451],[119,227,68,6.093015193939209],[119,227,69,6.091035842895508],[119,227,70,6.095149993896484],[119,227,71,6.105009078979492],[119,227,72,6.125766754150391],[119,227,73,6.157017707824707],[119,227,74,6.185085296630859],[119,227,75,6.203451156616211],[119,227,76,6.214632034301758],[119,227,77,6.2206244468688965],[119,227,78,6.2200398445129395],[119,227,79,6.212827682495117],[119,228,64,6.098939895629883],[119,228,65,6.105672836303711],[119,228,66,6.105361461639404],[119,228,67,6.099574565887451],[119,228,68,6.093015193939209],[119,228,69,6.091035842895508],[119,228,70,6.095149993896484],[119,228,71,6.105009078979492],[119,228,72,6.125766754150391],[119,228,73,6.157017707824707],[119,228,74,6.185085296630859],[119,228,75,6.203451156616211],[119,228,76,6.214632034301758],[119,228,77,6.2206244468688965],[119,228,78,6.2200398445129395],[119,228,79,6.212827682495117],[119,229,64,6.098939895629883],[119,229,65,6.105672836303711],[119,229,66,6.105361461639404],[119,229,67,6.099574565887451],[119,229,68,6.093015193939209],[119,229,69,6.091035842895508],[119,229,70,6.095149993896484],[119,229,71,6.105009078979492],[119,229,72,6.125766754150391],[119,229,73,6.157017707824707],[119,229,74,6.185085296630859],[119,229,75,6.203451156616211],[119,229,76,6.214632034301758],[119,229,77,6.2206244468688965],[119,229,78,6.2200398445129395],[119,229,79,6.212827682495117],[119,230,64,6.098939895629883],[119,230,65,6.105672836303711],[119,230,66,6.105361461639404],[119,230,67,6.099574565887451],[119,230,68,6.093015193939209],[119,230,69,6.091035842895508],[119,230,70,6.095149993896484],[119,230,71,6.105009078979492],[119,230,72,6.125766754150391],[119,230,73,6.157017707824707],[119,230,74,6.185085296630859],[119,230,75,6.203451156616211],[119,230,76,6.214632034301758],[119,230,77,6.2206244468688965],[119,230,78,6.2200398445129395],[119,230,79,6.212827682495117],[119,231,64,6.098939895629883],[119,231,65,6.105672836303711],[119,231,66,6.105361461639404],[119,231,67,6.099574565887451],[119,231,68,6.093015193939209],[119,231,69,6.091035842895508],[119,231,70,6.095149993896484],[119,231,71,6.105009078979492],[119,231,72,6.125766754150391],[119,231,73,6.157017707824707],[119,231,74,6.185085296630859],[119,231,75,6.203451156616211],[119,231,76,6.214632034301758],[119,231,77,6.2206244468688965],[119,231,78,6.2200398445129395],[119,231,79,6.212827682495117],[119,232,64,6.098939895629883],[119,232,65,6.105672836303711],[119,232,66,6.105361461639404],[119,232,67,6.099574565887451],[119,232,68,6.093015193939209],[119,232,69,6.091035842895508],[119,232,70,6.095149993896484],[119,232,71,6.105009078979492],[119,232,72,6.125766754150391],[119,232,73,6.157017707824707],[119,232,74,6.185085296630859],[119,232,75,6.203451156616211],[119,232,76,6.214632034301758],[119,232,77,6.2206244468688965],[119,232,78,6.2200398445129395],[119,232,79,6.212827682495117],[119,233,64,6.098939895629883],[119,233,65,6.105672836303711],[119,233,66,6.105361461639404],[119,233,67,6.099574565887451],[119,233,68,6.093015193939209],[119,233,69,6.091035842895508],[119,233,70,6.095149993896484],[119,233,71,6.105009078979492],[119,233,72,6.125766754150391],[119,233,73,6.157017707824707],[119,233,74,6.185085296630859],[119,233,75,6.203451156616211],[119,233,76,6.214632034301758],[119,233,77,6.2206244468688965],[119,233,78,6.2200398445129395],[119,233,79,6.212827682495117],[119,234,64,6.098939895629883],[119,234,65,6.105672836303711],[119,234,66,6.105361461639404],[119,234,67,6.099574565887451],[119,234,68,6.093015193939209],[119,234,69,6.091035842895508],[119,234,70,6.095149993896484],[119,234,71,6.105009078979492],[119,234,72,6.125766754150391],[119,234,73,6.157017707824707],[119,234,74,6.185085296630859],[119,234,75,6.203451156616211],[119,234,76,6.214632034301758],[119,234,77,6.2206244468688965],[119,234,78,6.2200398445129395],[119,234,79,6.212827682495117],[119,235,64,6.098939895629883],[119,235,65,6.105672836303711],[119,235,66,6.105361461639404],[119,235,67,6.099574565887451],[119,235,68,6.093015193939209],[119,235,69,6.091035842895508],[119,235,70,6.095149993896484],[119,235,71,6.105009078979492],[119,235,72,6.125766754150391],[119,235,73,6.157017707824707],[119,235,74,6.185085296630859],[119,235,75,6.203451156616211],[119,235,76,6.214632034301758],[119,235,77,6.2206244468688965],[119,235,78,6.2200398445129395],[119,235,79,6.212827682495117],[119,236,64,6.098939895629883],[119,236,65,6.105672836303711],[119,236,66,6.105361461639404],[119,236,67,6.099574565887451],[119,236,68,6.093015193939209],[119,236,69,6.091035842895508],[119,236,70,6.095149993896484],[119,236,71,6.105009078979492],[119,236,72,6.125766754150391],[119,236,73,6.157017707824707],[119,236,74,6.185085296630859],[119,236,75,6.203451156616211],[119,236,76,6.214632034301758],[119,236,77,6.2206244468688965],[119,236,78,6.2200398445129395],[119,236,79,6.212827682495117],[119,237,64,6.098939895629883],[119,237,65,6.105672836303711],[119,237,66,6.105361461639404],[119,237,67,6.099574565887451],[119,237,68,6.093015193939209],[119,237,69,6.091035842895508],[119,237,70,6.095149993896484],[119,237,71,6.105009078979492],[119,237,72,6.125766754150391],[119,237,73,6.157017707824707],[119,237,74,6.185085296630859],[119,237,75,6.203451156616211],[119,237,76,6.214632034301758],[119,237,77,6.2206244468688965],[119,237,78,6.2200398445129395],[119,237,79,6.212827682495117],[119,238,64,6.098939895629883],[119,238,65,6.105672836303711],[119,238,66,6.105361461639404],[119,238,67,6.099574565887451],[119,238,68,6.093015193939209],[119,238,69,6.091035842895508],[119,238,70,6.095149993896484],[119,238,71,6.105009078979492],[119,238,72,6.125766754150391],[119,238,73,6.157017707824707],[119,238,74,6.185085296630859],[119,238,75,6.203451156616211],[119,238,76,6.214632034301758],[119,238,77,6.2206244468688965],[119,238,78,6.2200398445129395],[119,238,79,6.212827682495117],[119,239,64,6.098939895629883],[119,239,65,6.105672836303711],[119,239,66,6.105361461639404],[119,239,67,6.099574565887451],[119,239,68,6.093015193939209],[119,239,69,6.091035842895508],[119,239,70,6.095149993896484],[119,239,71,6.105009078979492],[119,239,72,6.125766754150391],[119,239,73,6.157017707824707],[119,239,74,6.185085296630859],[119,239,75,6.203451156616211],[119,239,76,6.214632034301758],[119,239,77,6.2206244468688965],[119,239,78,6.2200398445129395],[119,239,79,6.212827682495117],[119,240,64,6.098939895629883],[119,240,65,6.105672836303711],[119,240,66,6.105361461639404],[119,240,67,6.099574565887451],[119,240,68,6.093015193939209],[119,240,69,6.091035842895508],[119,240,70,6.095149993896484],[119,240,71,6.105009078979492],[119,240,72,6.125766754150391],[119,240,73,6.157017707824707],[119,240,74,6.185085296630859],[119,240,75,6.203451156616211],[119,240,76,6.214632034301758],[119,240,77,6.2206244468688965],[119,240,78,6.2200398445129395],[119,240,79,6.212827682495117],[119,241,64,6.098939895629883],[119,241,65,6.105672836303711],[119,241,66,6.105361461639404],[119,241,67,6.099574565887451],[119,241,68,6.093015193939209],[119,241,69,6.091035842895508],[119,241,70,6.095149993896484],[119,241,71,6.105009078979492],[119,241,72,6.125766754150391],[119,241,73,6.157017707824707],[119,241,74,6.185085296630859],[119,241,75,6.203451156616211],[119,241,76,6.214632034301758],[119,241,77,6.2206244468688965],[119,241,78,6.2200398445129395],[119,241,79,6.212827682495117],[119,242,64,6.098939895629883],[119,242,65,6.105672836303711],[119,242,66,6.105361461639404],[119,242,67,6.099574565887451],[119,242,68,6.093015193939209],[119,242,69,6.091035842895508],[119,242,70,6.095149993896484],[119,242,71,6.105009078979492],[119,242,72,6.125766754150391],[119,242,73,6.157017707824707],[119,242,74,6.185085296630859],[119,242,75,6.203451156616211],[119,242,76,6.214632034301758],[119,242,77,6.2206244468688965],[119,242,78,6.2200398445129395],[119,242,79,6.212827682495117],[119,243,64,6.098939895629883],[119,243,65,6.105672836303711],[119,243,66,6.105361461639404],[119,243,67,6.099574565887451],[119,243,68,6.093015193939209],[119,243,69,6.091035842895508],[119,243,70,6.095149993896484],[119,243,71,6.105009078979492],[119,243,72,6.125766754150391],[119,243,73,6.157017707824707],[119,243,74,6.185085296630859],[119,243,75,6.203451156616211],[119,243,76,6.214632034301758],[119,243,77,6.2206244468688965],[119,243,78,6.2200398445129395],[119,243,79,6.212827682495117],[119,244,64,6.098939895629883],[119,244,65,6.105672836303711],[119,244,66,6.105361461639404],[119,244,67,6.099574565887451],[119,244,68,6.093015193939209],[119,244,69,6.091035842895508],[119,244,70,6.095149993896484],[119,244,71,6.105009078979492],[119,244,72,6.125766754150391],[119,244,73,6.157017707824707],[119,244,74,6.185085296630859],[119,244,75,6.203451156616211],[119,244,76,6.214632034301758],[119,244,77,6.2206244468688965],[119,244,78,6.2200398445129395],[119,244,79,6.212827682495117],[119,245,64,6.098939895629883],[119,245,65,6.105672836303711],[119,245,66,6.105361461639404],[119,245,67,6.099574565887451],[119,245,68,6.093015193939209],[119,245,69,6.091035842895508],[119,245,70,6.095149993896484],[119,245,71,6.105009078979492],[119,245,72,6.125766754150391],[119,245,73,6.157017707824707],[119,245,74,6.185085296630859],[119,245,75,6.203451156616211],[119,245,76,6.214632034301758],[119,245,77,6.2206244468688965],[119,245,78,6.2200398445129395],[119,245,79,6.212827682495117],[119,246,64,6.098939895629883],[119,246,65,6.105672836303711],[119,246,66,6.105361461639404],[119,246,67,6.099574565887451],[119,246,68,6.093015193939209],[119,246,69,6.091035842895508],[119,246,70,6.095149993896484],[119,246,71,6.105009078979492],[119,246,72,6.125766754150391],[119,246,73,6.157017707824707],[119,246,74,6.185085296630859],[119,246,75,6.203451156616211],[119,246,76,6.214632034301758],[119,246,77,6.2206244468688965],[119,246,78,6.2200398445129395],[119,246,79,6.212827682495117],[119,247,64,6.098939895629883],[119,247,65,6.105672836303711],[119,247,66,6.105361461639404],[119,247,67,6.099574565887451],[119,247,68,6.093015193939209],[119,247,69,6.091035842895508],[119,247,70,6.095149993896484],[119,247,71,6.105009078979492],[119,247,72,6.125766754150391],[119,247,73,6.157017707824707],[119,247,74,6.185085296630859],[119,247,75,6.203451156616211],[119,247,76,6.214632034301758],[119,247,77,6.2206244468688965],[119,247,78,6.2200398445129395],[119,247,79,6.212827682495117],[119,248,64,6.098939895629883],[119,248,65,6.105672836303711],[119,248,66,6.105361461639404],[119,248,67,6.099574565887451],[119,248,68,6.093015193939209],[119,248,69,6.091035842895508],[119,248,70,6.095149993896484],[119,248,71,6.105009078979492],[119,248,72,6.125766754150391],[119,248,73,6.157017707824707],[119,248,74,6.185085296630859],[119,248,75,6.203451156616211],[119,248,76,6.214632034301758],[119,248,77,6.2206244468688965],[119,248,78,6.2200398445129395],[119,248,79,6.212827682495117],[119,249,64,6.098939895629883],[119,249,65,6.105672836303711],[119,249,66,6.105361461639404],[119,249,67,6.099574565887451],[119,249,68,6.093015193939209],[119,249,69,6.091035842895508],[119,249,70,6.095149993896484],[119,249,71,6.105009078979492],[119,249,72,6.125766754150391],[119,249,73,6.157017707824707],[119,249,74,6.185085296630859],[119,249,75,6.203451156616211],[119,249,76,6.214632034301758],[119,249,77,6.2206244468688965],[119,249,78,6.2200398445129395],[119,249,79,6.212827682495117],[119,250,64,6.098939895629883],[119,250,65,6.105672836303711],[119,250,66,6.105361461639404],[119,250,67,6.099574565887451],[119,250,68,6.093015193939209],[119,250,69,6.091035842895508],[119,250,70,6.095149993896484],[119,250,71,6.105009078979492],[119,250,72,6.125766754150391],[119,250,73,6.157017707824707],[119,250,74,6.185085296630859],[119,250,75,6.203451156616211],[119,250,76,6.214632034301758],[119,250,77,6.2206244468688965],[119,250,78,6.2200398445129395],[119,250,79,6.212827682495117],[119,251,64,6.098939895629883],[119,251,65,6.105672836303711],[119,251,66,6.105361461639404],[119,251,67,6.099574565887451],[119,251,68,6.093015193939209],[119,251,69,6.091035842895508],[119,251,70,6.095149993896484],[119,251,71,6.105009078979492],[119,251,72,6.125766754150391],[119,251,73,6.157017707824707],[119,251,74,6.185085296630859],[119,251,75,6.203451156616211],[119,251,76,6.214632034301758],[119,251,77,6.2206244468688965],[119,251,78,6.2200398445129395],[119,251,79,6.212827682495117],[119,252,64,6.098939895629883],[119,252,65,6.105672836303711],[119,252,66,6.105361461639404],[119,252,67,6.099574565887451],[119,252,68,6.093015193939209],[119,252,69,6.091035842895508],[119,252,70,6.095149993896484],[119,252,71,6.105009078979492],[119,252,72,6.125766754150391],[119,252,73,6.157017707824707],[119,252,74,6.185085296630859],[119,252,75,6.203451156616211],[119,252,76,6.214632034301758],[119,252,77,6.2206244468688965],[119,252,78,6.2200398445129395],[119,252,79,6.212827682495117],[119,253,64,6.098939895629883],[119,253,65,6.105672836303711],[119,253,66,6.105361461639404],[119,253,67,6.099574565887451],[119,253,68,6.093015193939209],[119,253,69,6.091035842895508],[119,253,70,6.095149993896484],[119,253,71,6.105009078979492],[119,253,72,6.125766754150391],[119,253,73,6.157017707824707],[119,253,74,6.185085296630859],[119,253,75,6.203451156616211],[119,253,76,6.214632034301758],[119,253,77,6.2206244468688965],[119,253,78,6.2200398445129395],[119,253,79,6.212827682495117],[119,254,64,6.098939895629883],[119,254,65,6.105672836303711],[119,254,66,6.105361461639404],[119,254,67,6.099574565887451],[119,254,68,6.093015193939209],[119,254,69,6.091035842895508],[119,254,70,6.095149993896484],[119,254,71,6.105009078979492],[119,254,72,6.125766754150391],[119,254,73,6.157017707824707],[119,254,74,6.185085296630859],[119,254,75,6.203451156616211],[119,254,76,6.214632034301758],[119,254,77,6.2206244468688965],[119,254,78,6.2200398445129395],[119,254,79,6.212827682495117],[119,255,64,6.098939895629883],[119,255,65,6.105672836303711],[119,255,66,6.105361461639404],[119,255,67,6.099574565887451],[119,255,68,6.093015193939209],[119,255,69,6.091035842895508],[119,255,70,6.095149993896484],[119,255,71,6.105009078979492],[119,255,72,6.125766754150391],[119,255,73,6.157017707824707],[119,255,74,6.185085296630859],[119,255,75,6.203451156616211],[119,255,76,6.214632034301758],[119,255,77,6.2206244468688965],[119,255,78,6.2200398445129395],[119,255,79,6.212827682495117],[119,256,64,6.098939895629883],[119,256,65,6.105672836303711],[119,256,66,6.105361461639404],[119,256,67,6.099574565887451],[119,256,68,6.093015193939209],[119,256,69,6.091035842895508],[119,256,70,6.095149993896484],[119,256,71,6.105009078979492],[119,256,72,6.125766754150391],[119,256,73,6.157017707824707],[119,256,74,6.185085296630859],[119,256,75,6.203451156616211],[119,256,76,6.214632034301758],[119,256,77,6.2206244468688965],[119,256,78,6.2200398445129395],[119,256,79,6.212827682495117],[119,257,64,6.098939895629883],[119,257,65,6.105672836303711],[119,257,66,6.105361461639404],[119,257,67,6.099574565887451],[119,257,68,6.093015193939209],[119,257,69,6.091035842895508],[119,257,70,6.095149993896484],[119,257,71,6.105009078979492],[119,257,72,6.125766754150391],[119,257,73,6.157017707824707],[119,257,74,6.185085296630859],[119,257,75,6.203451156616211],[119,257,76,6.214632034301758],[119,257,77,6.2206244468688965],[119,257,78,6.2200398445129395],[119,257,79,6.212827682495117],[119,258,64,6.098939895629883],[119,258,65,6.105672836303711],[119,258,66,6.105361461639404],[119,258,67,6.099574565887451],[119,258,68,6.093015193939209],[119,258,69,6.091035842895508],[119,258,70,6.095149993896484],[119,258,71,6.105009078979492],[119,258,72,6.125766754150391],[119,258,73,6.157017707824707],[119,258,74,6.185085296630859],[119,258,75,6.203451156616211],[119,258,76,6.214632034301758],[119,258,77,6.2206244468688965],[119,258,78,6.2200398445129395],[119,258,79,6.212827682495117],[119,259,64,6.098939895629883],[119,259,65,6.105672836303711],[119,259,66,6.105361461639404],[119,259,67,6.099574565887451],[119,259,68,6.093015193939209],[119,259,69,6.091035842895508],[119,259,70,6.095149993896484],[119,259,71,6.105009078979492],[119,259,72,6.125766754150391],[119,259,73,6.157017707824707],[119,259,74,6.185085296630859],[119,259,75,6.203451156616211],[119,259,76,6.214632034301758],[119,259,77,6.2206244468688965],[119,259,78,6.2200398445129395],[119,259,79,6.212827682495117],[119,260,64,6.098939895629883],[119,260,65,6.105672836303711],[119,260,66,6.105361461639404],[119,260,67,6.099574565887451],[119,260,68,6.093015193939209],[119,260,69,6.091035842895508],[119,260,70,6.095149993896484],[119,260,71,6.105009078979492],[119,260,72,6.125766754150391],[119,260,73,6.157017707824707],[119,260,74,6.185085296630859],[119,260,75,6.203451156616211],[119,260,76,6.214632034301758],[119,260,77,6.2206244468688965],[119,260,78,6.2200398445129395],[119,260,79,6.212827682495117],[119,261,64,6.098939895629883],[119,261,65,6.105672836303711],[119,261,66,6.105361461639404],[119,261,67,6.099574565887451],[119,261,68,6.093015193939209],[119,261,69,6.091035842895508],[119,261,70,6.095149993896484],[119,261,71,6.105009078979492],[119,261,72,6.125766754150391],[119,261,73,6.157017707824707],[119,261,74,6.185085296630859],[119,261,75,6.203451156616211],[119,261,76,6.214632034301758],[119,261,77,6.2206244468688965],[119,261,78,6.2200398445129395],[119,261,79,6.212827682495117],[119,262,64,6.098939895629883],[119,262,65,6.105672836303711],[119,262,66,6.105361461639404],[119,262,67,6.099574565887451],[119,262,68,6.093015193939209],[119,262,69,6.091035842895508],[119,262,70,6.095149993896484],[119,262,71,6.105009078979492],[119,262,72,6.125766754150391],[119,262,73,6.157017707824707],[119,262,74,6.185085296630859],[119,262,75,6.203451156616211],[119,262,76,6.214632034301758],[119,262,77,6.2206244468688965],[119,262,78,6.2200398445129395],[119,262,79,6.212827682495117],[119,263,64,6.098939895629883],[119,263,65,6.105672836303711],[119,263,66,6.105361461639404],[119,263,67,6.099574565887451],[119,263,68,6.093015193939209],[119,263,69,6.091035842895508],[119,263,70,6.095149993896484],[119,263,71,6.105009078979492],[119,263,72,6.125766754150391],[119,263,73,6.157017707824707],[119,263,74,6.185085296630859],[119,263,75,6.203451156616211],[119,263,76,6.214632034301758],[119,263,77,6.2206244468688965],[119,263,78,6.2200398445129395],[119,263,79,6.212827682495117],[119,264,64,6.098939895629883],[119,264,65,6.105672836303711],[119,264,66,6.105361461639404],[119,264,67,6.099574565887451],[119,264,68,6.093015193939209],[119,264,69,6.091035842895508],[119,264,70,6.095149993896484],[119,264,71,6.105009078979492],[119,264,72,6.125766754150391],[119,264,73,6.157017707824707],[119,264,74,6.185085296630859],[119,264,75,6.203451156616211],[119,264,76,6.214632034301758],[119,264,77,6.2206244468688965],[119,264,78,6.2200398445129395],[119,264,79,6.212827682495117],[119,265,64,6.098939895629883],[119,265,65,6.105672836303711],[119,265,66,6.105361461639404],[119,265,67,6.099574565887451],[119,265,68,6.093015193939209],[119,265,69,6.091035842895508],[119,265,70,6.095149993896484],[119,265,71,6.105009078979492],[119,265,72,6.125766754150391],[119,265,73,6.157017707824707],[119,265,74,6.185085296630859],[119,265,75,6.203451156616211],[119,265,76,6.214632034301758],[119,265,77,6.2206244468688965],[119,265,78,6.2200398445129395],[119,265,79,6.212827682495117],[119,266,64,6.098939895629883],[119,266,65,6.105672836303711],[119,266,66,6.105361461639404],[119,266,67,6.099574565887451],[119,266,68,6.093015193939209],[119,266,69,6.091035842895508],[119,266,70,6.095149993896484],[119,266,71,6.105009078979492],[119,266,72,6.125766754150391],[119,266,73,6.157017707824707],[119,266,74,6.185085296630859],[119,266,75,6.203451156616211],[119,266,76,6.214632034301758],[119,266,77,6.2206244468688965],[119,266,78,6.2200398445129395],[119,266,79,6.212827682495117],[119,267,64,6.098939895629883],[119,267,65,6.105672836303711],[119,267,66,6.105361461639404],[119,267,67,6.099574565887451],[119,267,68,6.093015193939209],[119,267,69,6.091035842895508],[119,267,70,6.095149993896484],[119,267,71,6.105009078979492],[119,267,72,6.125766754150391],[119,267,73,6.157017707824707],[119,267,74,6.185085296630859],[119,267,75,6.203451156616211],[119,267,76,6.214632034301758],[119,267,77,6.2206244468688965],[119,267,78,6.2200398445129395],[119,267,79,6.212827682495117],[119,268,64,6.098939895629883],[119,268,65,6.105672836303711],[119,268,66,6.105361461639404],[119,268,67,6.099574565887451],[119,268,68,6.093015193939209],[119,268,69,6.091035842895508],[119,268,70,6.095149993896484],[119,268,71,6.105009078979492],[119,268,72,6.125766754150391],[119,268,73,6.157017707824707],[119,268,74,6.185085296630859],[119,268,75,6.203451156616211],[119,268,76,6.214632034301758],[119,268,77,6.2206244468688965],[119,268,78,6.2200398445129395],[119,268,79,6.212827682495117],[119,269,64,6.098939895629883],[119,269,65,6.105672836303711],[119,269,66,6.105361461639404],[119,269,67,6.099574565887451],[119,269,68,6.093015193939209],[119,269,69,6.091035842895508],[119,269,70,6.095149993896484],[119,269,71,6.105009078979492],[119,269,72,6.125766754150391],[119,269,73,6.157017707824707],[119,269,74,6.185085296630859],[119,269,75,6.203451156616211],[119,269,76,6.214632034301758],[119,269,77,6.2206244468688965],[119,269,78,6.2200398445129395],[119,269,79,6.212827682495117],[119,270,64,6.098939895629883],[119,270,65,6.105672836303711],[119,270,66,6.105361461639404],[119,270,67,6.099574565887451],[119,270,68,6.093015193939209],[119,270,69,6.091035842895508],[119,270,70,6.095149993896484],[119,270,71,6.105009078979492],[119,270,72,6.125766754150391],[119,270,73,6.157017707824707],[119,270,74,6.185085296630859],[119,270,75,6.203451156616211],[119,270,76,6.214632034301758],[119,270,77,6.2206244468688965],[119,270,78,6.2200398445129395],[119,270,79,6.212827682495117],[119,271,64,6.098939895629883],[119,271,65,6.105672836303711],[119,271,66,6.105361461639404],[119,271,67,6.099574565887451],[119,271,68,6.093015193939209],[119,271,69,6.091035842895508],[119,271,70,6.095149993896484],[119,271,71,6.105009078979492],[119,271,72,6.125766754150391],[119,271,73,6.157017707824707],[119,271,74,6.185085296630859],[119,271,75,6.203451156616211],[119,271,76,6.214632034301758],[119,271,77,6.2206244468688965],[119,271,78,6.2200398445129395],[119,271,79,6.212827682495117],[119,272,64,6.098939895629883],[119,272,65,6.105672836303711],[119,272,66,6.105361461639404],[119,272,67,6.099574565887451],[119,272,68,6.093015193939209],[119,272,69,6.091035842895508],[119,272,70,6.095149993896484],[119,272,71,6.105009078979492],[119,272,72,6.125766754150391],[119,272,73,6.157017707824707],[119,272,74,6.185085296630859],[119,272,75,6.203451156616211],[119,272,76,6.214632034301758],[119,272,77,6.2206244468688965],[119,272,78,6.2200398445129395],[119,272,79,6.212827682495117],[119,273,64,6.098939895629883],[119,273,65,6.105672836303711],[119,273,66,6.105361461639404],[119,273,67,6.099574565887451],[119,273,68,6.093015193939209],[119,273,69,6.091035842895508],[119,273,70,6.095149993896484],[119,273,71,6.105009078979492],[119,273,72,6.125766754150391],[119,273,73,6.157017707824707],[119,273,74,6.185085296630859],[119,273,75,6.203451156616211],[119,273,76,6.214632034301758],[119,273,77,6.2206244468688965],[119,273,78,6.2200398445129395],[119,273,79,6.212827682495117],[119,274,64,6.098939895629883],[119,274,65,6.105672836303711],[119,274,66,6.105361461639404],[119,274,67,6.099574565887451],[119,274,68,6.093015193939209],[119,274,69,6.091035842895508],[119,274,70,6.095149993896484],[119,274,71,6.105009078979492],[119,274,72,6.125766754150391],[119,274,73,6.157017707824707],[119,274,74,6.185085296630859],[119,274,75,6.203451156616211],[119,274,76,6.214632034301758],[119,274,77,6.2206244468688965],[119,274,78,6.2200398445129395],[119,274,79,6.212827682495117],[119,275,64,6.098939895629883],[119,275,65,6.105672836303711],[119,275,66,6.105361461639404],[119,275,67,6.099574565887451],[119,275,68,6.093015193939209],[119,275,69,6.091035842895508],[119,275,70,6.095149993896484],[119,275,71,6.105009078979492],[119,275,72,6.125766754150391],[119,275,73,6.157017707824707],[119,275,74,6.185085296630859],[119,275,75,6.203451156616211],[119,275,76,6.214632034301758],[119,275,77,6.2206244468688965],[119,275,78,6.2200398445129395],[119,275,79,6.212827682495117],[119,276,64,6.098939895629883],[119,276,65,6.105672836303711],[119,276,66,6.105361461639404],[119,276,67,6.099574565887451],[119,276,68,6.093015193939209],[119,276,69,6.091035842895508],[119,276,70,6.095149993896484],[119,276,71,6.105009078979492],[119,276,72,6.125766754150391],[119,276,73,6.157017707824707],[119,276,74,6.185085296630859],[119,276,75,6.203451156616211],[119,276,76,6.214632034301758],[119,276,77,6.2206244468688965],[119,276,78,6.2200398445129395],[119,276,79,6.212827682495117],[119,277,64,6.098939895629883],[119,277,65,6.105672836303711],[119,277,66,6.105361461639404],[119,277,67,6.099574565887451],[119,277,68,6.093015193939209],[119,277,69,6.091035842895508],[119,277,70,6.095149993896484],[119,277,71,6.105009078979492],[119,277,72,6.125766754150391],[119,277,73,6.157017707824707],[119,277,74,6.185085296630859],[119,277,75,6.203451156616211],[119,277,76,6.214632034301758],[119,277,77,6.2206244468688965],[119,277,78,6.2200398445129395],[119,277,79,6.212827682495117],[119,278,64,6.098939895629883],[119,278,65,6.105672836303711],[119,278,66,6.105361461639404],[119,278,67,6.099574565887451],[119,278,68,6.093015193939209],[119,278,69,6.091035842895508],[119,278,70,6.095149993896484],[119,278,71,6.105009078979492],[119,278,72,6.125766754150391],[119,278,73,6.157017707824707],[119,278,74,6.185085296630859],[119,278,75,6.203451156616211],[119,278,76,6.214632034301758],[119,278,77,6.2206244468688965],[119,278,78,6.2200398445129395],[119,278,79,6.212827682495117],[119,279,64,6.098939895629883],[119,279,65,6.105672836303711],[119,279,66,6.105361461639404],[119,279,67,6.099574565887451],[119,279,68,6.093015193939209],[119,279,69,6.091035842895508],[119,279,70,6.095149993896484],[119,279,71,6.105009078979492],[119,279,72,6.125766754150391],[119,279,73,6.157017707824707],[119,279,74,6.185085296630859],[119,279,75,6.203451156616211],[119,279,76,6.214632034301758],[119,279,77,6.2206244468688965],[119,279,78,6.2200398445129395],[119,279,79,6.212827682495117],[119,280,64,6.098939895629883],[119,280,65,6.105672836303711],[119,280,66,6.105361461639404],[119,280,67,6.099574565887451],[119,280,68,6.093015193939209],[119,280,69,6.091035842895508],[119,280,70,6.095149993896484],[119,280,71,6.105009078979492],[119,280,72,6.125766754150391],[119,280,73,6.157017707824707],[119,280,74,6.185085296630859],[119,280,75,6.203451156616211],[119,280,76,6.214632034301758],[119,280,77,6.2206244468688965],[119,280,78,6.2200398445129395],[119,280,79,6.212827682495117],[119,281,64,6.098939895629883],[119,281,65,6.105672836303711],[119,281,66,6.105361461639404],[119,281,67,6.099574565887451],[119,281,68,6.093015193939209],[119,281,69,6.091035842895508],[119,281,70,6.095149993896484],[119,281,71,6.105009078979492],[119,281,72,6.125766754150391],[119,281,73,6.157017707824707],[119,281,74,6.185085296630859],[119,281,75,6.203451156616211],[119,281,76,6.214632034301758],[119,281,77,6.2206244468688965],[119,281,78,6.2200398445129395],[119,281,79,6.212827682495117],[119,282,64,6.098939895629883],[119,282,65,6.105672836303711],[119,282,66,6.105361461639404],[119,282,67,6.099574565887451],[119,282,68,6.093015193939209],[119,282,69,6.091035842895508],[119,282,70,6.095149993896484],[119,282,71,6.105009078979492],[119,282,72,6.125766754150391],[119,282,73,6.157017707824707],[119,282,74,6.185085296630859],[119,282,75,6.203451156616211],[119,282,76,6.214632034301758],[119,282,77,6.2206244468688965],[119,282,78,6.2200398445129395],[119,282,79,6.212827682495117],[119,283,64,6.098939895629883],[119,283,65,6.105672836303711],[119,283,66,6.105361461639404],[119,283,67,6.099574565887451],[119,283,68,6.093015193939209],[119,283,69,6.091035842895508],[119,283,70,6.095149993896484],[119,283,71,6.105009078979492],[119,283,72,6.125766754150391],[119,283,73,6.157017707824707],[119,283,74,6.185085296630859],[119,283,75,6.203451156616211],[119,283,76,6.214632034301758],[119,283,77,6.2206244468688965],[119,283,78,6.2200398445129395],[119,283,79,6.212827682495117],[119,284,64,6.098939895629883],[119,284,65,6.105672836303711],[119,284,66,6.105361461639404],[119,284,67,6.099574565887451],[119,284,68,6.093015193939209],[119,284,69,6.091035842895508],[119,284,70,6.095149993896484],[119,284,71,6.105009078979492],[119,284,72,6.125766754150391],[119,284,73,6.157017707824707],[119,284,74,6.185085296630859],[119,284,75,6.203451156616211],[119,284,76,6.214632034301758],[119,284,77,6.2206244468688965],[119,284,78,6.2200398445129395],[119,284,79,6.212827682495117],[119,285,64,6.098939895629883],[119,285,65,6.105672836303711],[119,285,66,6.105361461639404],[119,285,67,6.099574565887451],[119,285,68,6.093015193939209],[119,285,69,6.091035842895508],[119,285,70,6.095149993896484],[119,285,71,6.105009078979492],[119,285,72,6.125766754150391],[119,285,73,6.157017707824707],[119,285,74,6.185085296630859],[119,285,75,6.203451156616211],[119,285,76,6.214632034301758],[119,285,77,6.2206244468688965],[119,285,78,6.2200398445129395],[119,285,79,6.212827682495117],[119,286,64,6.098939895629883],[119,286,65,6.105672836303711],[119,286,66,6.105361461639404],[119,286,67,6.099574565887451],[119,286,68,6.093015193939209],[119,286,69,6.091035842895508],[119,286,70,6.095149993896484],[119,286,71,6.105009078979492],[119,286,72,6.125766754150391],[119,286,73,6.157017707824707],[119,286,74,6.185085296630859],[119,286,75,6.203451156616211],[119,286,76,6.214632034301758],[119,286,77,6.2206244468688965],[119,286,78,6.2200398445129395],[119,286,79,6.212827682495117],[119,287,64,6.098939895629883],[119,287,65,6.105672836303711],[119,287,66,6.105361461639404],[119,287,67,6.099574565887451],[119,287,68,6.093015193939209],[119,287,69,6.091035842895508],[119,287,70,6.095149993896484],[119,287,71,6.105009078979492],[119,287,72,6.125766754150391],[119,287,73,6.157017707824707],[119,287,74,6.185085296630859],[119,287,75,6.203451156616211],[119,287,76,6.214632034301758],[119,287,77,6.2206244468688965],[119,287,78,6.2200398445129395],[119,287,79,6.212827682495117],[119,288,64,6.098939895629883],[119,288,65,6.105672836303711],[119,288,66,6.105361461639404],[119,288,67,6.099574565887451],[119,288,68,6.093015193939209],[119,288,69,6.091035842895508],[119,288,70,6.095149993896484],[119,288,71,6.105009078979492],[119,288,72,6.125766754150391],[119,288,73,6.157017707824707],[119,288,74,6.185085296630859],[119,288,75,6.203451156616211],[119,288,76,6.214632034301758],[119,288,77,6.2206244468688965],[119,288,78,6.2200398445129395],[119,288,79,6.212827682495117],[119,289,64,6.098939895629883],[119,289,65,6.105672836303711],[119,289,66,6.105361461639404],[119,289,67,6.099574565887451],[119,289,68,6.093015193939209],[119,289,69,6.091035842895508],[119,289,70,6.095149993896484],[119,289,71,6.105009078979492],[119,289,72,6.125766754150391],[119,289,73,6.157017707824707],[119,289,74,6.185085296630859],[119,289,75,6.203451156616211],[119,289,76,6.214632034301758],[119,289,77,6.2206244468688965],[119,289,78,6.2200398445129395],[119,289,79,6.212827682495117],[119,290,64,6.098939895629883],[119,290,65,6.105672836303711],[119,290,66,6.105361461639404],[119,290,67,6.099574565887451],[119,290,68,6.093015193939209],[119,290,69,6.091035842895508],[119,290,70,6.095149993896484],[119,290,71,6.105009078979492],[119,290,72,6.125766754150391],[119,290,73,6.157017707824707],[119,290,74,6.185085296630859],[119,290,75,6.203451156616211],[119,290,76,6.214632034301758],[119,290,77,6.2206244468688965],[119,290,78,6.2200398445129395],[119,290,79,6.212827682495117],[119,291,64,6.098939895629883],[119,291,65,6.105672836303711],[119,291,66,6.105361461639404],[119,291,67,6.099574565887451],[119,291,68,6.093015193939209],[119,291,69,6.091035842895508],[119,291,70,6.095149993896484],[119,291,71,6.105009078979492],[119,291,72,6.125766754150391],[119,291,73,6.157017707824707],[119,291,74,6.185085296630859],[119,291,75,6.203451156616211],[119,291,76,6.214632034301758],[119,291,77,6.2206244468688965],[119,291,78,6.2200398445129395],[119,291,79,6.212827682495117],[119,292,64,6.098939895629883],[119,292,65,6.105672836303711],[119,292,66,6.105361461639404],[119,292,67,6.099574565887451],[119,292,68,6.093015193939209],[119,292,69,6.091035842895508],[119,292,70,6.095149993896484],[119,292,71,6.105009078979492],[119,292,72,6.125766754150391],[119,292,73,6.157017707824707],[119,292,74,6.185085296630859],[119,292,75,6.203451156616211],[119,292,76,6.214632034301758],[119,292,77,6.2206244468688965],[119,292,78,6.2200398445129395],[119,292,79,6.212827682495117],[119,293,64,6.098939895629883],[119,293,65,6.105672836303711],[119,293,66,6.105361461639404],[119,293,67,6.099574565887451],[119,293,68,6.093015193939209],[119,293,69,6.091035842895508],[119,293,70,6.095149993896484],[119,293,71,6.105009078979492],[119,293,72,6.125766754150391],[119,293,73,6.157017707824707],[119,293,74,6.185085296630859],[119,293,75,6.203451156616211],[119,293,76,6.214632034301758],[119,293,77,6.2206244468688965],[119,293,78,6.2200398445129395],[119,293,79,6.212827682495117],[119,294,64,6.098939895629883],[119,294,65,6.105672836303711],[119,294,66,6.105361461639404],[119,294,67,6.099574565887451],[119,294,68,6.093015193939209],[119,294,69,6.091035842895508],[119,294,70,6.095149993896484],[119,294,71,6.105009078979492],[119,294,72,6.125766754150391],[119,294,73,6.157017707824707],[119,294,74,6.185085296630859],[119,294,75,6.203451156616211],[119,294,76,6.214632034301758],[119,294,77,6.2206244468688965],[119,294,78,6.2200398445129395],[119,294,79,6.212827682495117],[119,295,64,6.098939895629883],[119,295,65,6.105672836303711],[119,295,66,6.105361461639404],[119,295,67,6.099574565887451],[119,295,68,6.093015193939209],[119,295,69,6.091035842895508],[119,295,70,6.095149993896484],[119,295,71,6.105009078979492],[119,295,72,6.125766754150391],[119,295,73,6.157017707824707],[119,295,74,6.185085296630859],[119,295,75,6.203451156616211],[119,295,76,6.214632034301758],[119,295,77,6.2206244468688965],[119,295,78,6.2200398445129395],[119,295,79,6.212827682495117],[119,296,64,6.098939895629883],[119,296,65,6.105672836303711],[119,296,66,6.105361461639404],[119,296,67,6.099574565887451],[119,296,68,6.093015193939209],[119,296,69,6.091035842895508],[119,296,70,6.095149993896484],[119,296,71,6.105009078979492],[119,296,72,6.125766754150391],[119,296,73,6.157017707824707],[119,296,74,6.185085296630859],[119,296,75,6.203451156616211],[119,296,76,6.214632034301758],[119,296,77,6.2206244468688965],[119,296,78,6.2200398445129395],[119,296,79,6.212827682495117],[119,297,64,6.098939895629883],[119,297,65,6.105672836303711],[119,297,66,6.105361461639404],[119,297,67,6.099574565887451],[119,297,68,6.093015193939209],[119,297,69,6.091035842895508],[119,297,70,6.095149993896484],[119,297,71,6.105009078979492],[119,297,72,6.125766754150391],[119,297,73,6.157017707824707],[119,297,74,6.185085296630859],[119,297,75,6.203451156616211],[119,297,76,6.214632034301758],[119,297,77,6.2206244468688965],[119,297,78,6.2200398445129395],[119,297,79,6.212827682495117],[119,298,64,6.098939895629883],[119,298,65,6.105672836303711],[119,298,66,6.105361461639404],[119,298,67,6.099574565887451],[119,298,68,6.093015193939209],[119,298,69,6.091035842895508],[119,298,70,6.095149993896484],[119,298,71,6.105009078979492],[119,298,72,6.125766754150391],[119,298,73,6.157017707824707],[119,298,74,6.185085296630859],[119,298,75,6.203451156616211],[119,298,76,6.214632034301758],[119,298,77,6.2206244468688965],[119,298,78,6.2200398445129395],[119,298,79,6.212827682495117],[119,299,64,6.098939895629883],[119,299,65,6.105672836303711],[119,299,66,6.105361461639404],[119,299,67,6.099574565887451],[119,299,68,6.093015193939209],[119,299,69,6.091035842895508],[119,299,70,6.095149993896484],[119,299,71,6.105009078979492],[119,299,72,6.125766754150391],[119,299,73,6.157017707824707],[119,299,74,6.185085296630859],[119,299,75,6.203451156616211],[119,299,76,6.214632034301758],[119,299,77,6.2206244468688965],[119,299,78,6.2200398445129395],[119,299,79,6.212827682495117],[119,300,64,6.098939895629883],[119,300,65,6.105672836303711],[119,300,66,6.105361461639404],[119,300,67,6.099574565887451],[119,300,68,6.093015193939209],[119,300,69,6.091035842895508],[119,300,70,6.095149993896484],[119,300,71,6.105009078979492],[119,300,72,6.125766754150391],[119,300,73,6.157017707824707],[119,300,74,6.185085296630859],[119,300,75,6.203451156616211],[119,300,76,6.214632034301758],[119,300,77,6.2206244468688965],[119,300,78,6.2200398445129395],[119,300,79,6.212827682495117],[119,301,64,6.098939895629883],[119,301,65,6.105672836303711],[119,301,66,6.105361461639404],[119,301,67,6.099574565887451],[119,301,68,6.093015193939209],[119,301,69,6.091035842895508],[119,301,70,6.095149993896484],[119,301,71,6.105009078979492],[119,301,72,6.125766754150391],[119,301,73,6.157017707824707],[119,301,74,6.185085296630859],[119,301,75,6.203451156616211],[119,301,76,6.214632034301758],[119,301,77,6.2206244468688965],[119,301,78,6.2200398445129395],[119,301,79,6.212827682495117],[119,302,64,6.098939895629883],[119,302,65,6.105672836303711],[119,302,66,6.105361461639404],[119,302,67,6.099574565887451],[119,302,68,6.093015193939209],[119,302,69,6.091035842895508],[119,302,70,6.095149993896484],[119,302,71,6.105009078979492],[119,302,72,6.125766754150391],[119,302,73,6.157017707824707],[119,302,74,6.185085296630859],[119,302,75,6.203451156616211],[119,302,76,6.214632034301758],[119,302,77,6.2206244468688965],[119,302,78,6.2200398445129395],[119,302,79,6.212827682495117],[119,303,64,6.098939895629883],[119,303,65,6.105672836303711],[119,303,66,6.105361461639404],[119,303,67,6.099574565887451],[119,303,68,6.093015193939209],[119,303,69,6.091035842895508],[119,303,70,6.095149993896484],[119,303,71,6.105009078979492],[119,303,72,6.125766754150391],[119,303,73,6.157017707824707],[119,303,74,6.185085296630859],[119,303,75,6.203451156616211],[119,303,76,6.214632034301758],[119,303,77,6.2206244468688965],[119,303,78,6.2200398445129395],[119,303,79,6.212827682495117],[119,304,64,6.098939895629883],[119,304,65,6.105672836303711],[119,304,66,6.105361461639404],[119,304,67,6.099574565887451],[119,304,68,6.093015193939209],[119,304,69,6.091035842895508],[119,304,70,6.095149993896484],[119,304,71,6.105009078979492],[119,304,72,6.125766754150391],[119,304,73,6.157017707824707],[119,304,74,6.185085296630859],[119,304,75,6.203451156616211],[119,304,76,6.214632034301758],[119,304,77,6.2206244468688965],[119,304,78,6.2200398445129395],[119,304,79,6.212827682495117],[119,305,64,6.098939895629883],[119,305,65,6.105672836303711],[119,305,66,6.105361461639404],[119,305,67,6.099574565887451],[119,305,68,6.093015193939209],[119,305,69,6.091035842895508],[119,305,70,6.095149993896484],[119,305,71,6.105009078979492],[119,305,72,6.125766754150391],[119,305,73,6.157017707824707],[119,305,74,6.185085296630859],[119,305,75,6.203451156616211],[119,305,76,6.214632034301758],[119,305,77,6.2206244468688965],[119,305,78,6.2200398445129395],[119,305,79,6.212827682495117],[119,306,64,6.098939895629883],[119,306,65,6.105672836303711],[119,306,66,6.105361461639404],[119,306,67,6.099574565887451],[119,306,68,6.093015193939209],[119,306,69,6.091035842895508],[119,306,70,6.095149993896484],[119,306,71,6.105009078979492],[119,306,72,6.125766754150391],[119,306,73,6.157017707824707],[119,306,74,6.185085296630859],[119,306,75,6.203451156616211],[119,306,76,6.214632034301758],[119,306,77,6.2206244468688965],[119,306,78,6.2200398445129395],[119,306,79,6.212827682495117],[119,307,64,6.098939895629883],[119,307,65,6.105672836303711],[119,307,66,6.105361461639404],[119,307,67,6.099574565887451],[119,307,68,6.093015193939209],[119,307,69,6.091035842895508],[119,307,70,6.095149993896484],[119,307,71,6.105009078979492],[119,307,72,6.125766754150391],[119,307,73,6.157017707824707],[119,307,74,6.185085296630859],[119,307,75,6.203451156616211],[119,307,76,6.214632034301758],[119,307,77,6.2206244468688965],[119,307,78,6.2200398445129395],[119,307,79,6.212827682495117],[119,308,64,6.098939895629883],[119,308,65,6.105672836303711],[119,308,66,6.105361461639404],[119,308,67,6.099574565887451],[119,308,68,6.093015193939209],[119,308,69,6.091035842895508],[119,308,70,6.095149993896484],[119,308,71,6.105009078979492],[119,308,72,6.125766754150391],[119,308,73,6.157017707824707],[119,308,74,6.185085296630859],[119,308,75,6.203451156616211],[119,308,76,6.214632034301758],[119,308,77,6.2206244468688965],[119,308,78,6.2200398445129395],[119,308,79,6.212827682495117],[119,309,64,6.098939895629883],[119,309,65,6.105672836303711],[119,309,66,6.105361461639404],[119,309,67,6.099574565887451],[119,309,68,6.093015193939209],[119,309,69,6.091035842895508],[119,309,70,6.095149993896484],[119,309,71,6.105009078979492],[119,309,72,6.125766754150391],[119,309,73,6.157017707824707],[119,309,74,6.185085296630859],[119,309,75,6.203451156616211],[119,309,76,6.214632034301758],[119,309,77,6.2206244468688965],[119,309,78,6.2200398445129395],[119,309,79,6.212827682495117],[119,310,64,6.098939895629883],[119,310,65,6.105672836303711],[119,310,66,6.105361461639404],[119,310,67,6.099574565887451],[119,310,68,6.093015193939209],[119,310,69,6.091035842895508],[119,310,70,6.095149993896484],[119,310,71,6.105009078979492],[119,310,72,6.125766754150391],[119,310,73,6.157017707824707],[119,310,74,6.185085296630859],[119,310,75,6.203451156616211],[119,310,76,6.214632034301758],[119,310,77,6.2206244468688965],[119,310,78,6.2200398445129395],[119,310,79,6.212827682495117],[119,311,64,6.098939895629883],[119,311,65,6.105672836303711],[119,311,66,6.105361461639404],[119,311,67,6.099574565887451],[119,311,68,6.093015193939209],[119,311,69,6.091035842895508],[119,311,70,6.095149993896484],[119,311,71,6.105009078979492],[119,311,72,6.125766754150391],[119,311,73,6.157017707824707],[119,311,74,6.185085296630859],[119,311,75,6.203451156616211],[119,311,76,6.214632034301758],[119,311,77,6.2206244468688965],[119,311,78,6.2200398445129395],[119,311,79,6.212827682495117],[119,312,64,6.098939895629883],[119,312,65,6.105672836303711],[119,312,66,6.105361461639404],[119,312,67,6.099574565887451],[119,312,68,6.093015193939209],[119,312,69,6.091035842895508],[119,312,70,6.095149993896484],[119,312,71,6.105009078979492],[119,312,72,6.125766754150391],[119,312,73,6.157017707824707],[119,312,74,6.185085296630859],[119,312,75,6.203451156616211],[119,312,76,6.214632034301758],[119,312,77,6.2206244468688965],[119,312,78,6.2200398445129395],[119,312,79,6.212827682495117],[119,313,64,6.098939895629883],[119,313,65,6.105672836303711],[119,313,66,6.105361461639404],[119,313,67,6.099574565887451],[119,313,68,6.093015193939209],[119,313,69,6.091035842895508],[119,313,70,6.095149993896484],[119,313,71,6.105009078979492],[119,313,72,6.125766754150391],[119,313,73,6.157017707824707],[119,313,74,6.185085296630859],[119,313,75,6.203451156616211],[119,313,76,6.214632034301758],[119,313,77,6.2206244468688965],[119,313,78,6.2200398445129395],[119,313,79,6.212827682495117],[119,314,64,6.098939895629883],[119,314,65,6.105672836303711],[119,314,66,6.105361461639404],[119,314,67,6.099574565887451],[119,314,68,6.093015193939209],[119,314,69,6.091035842895508],[119,314,70,6.095149993896484],[119,314,71,6.105009078979492],[119,314,72,6.125766754150391],[119,314,73,6.157017707824707],[119,314,74,6.185085296630859],[119,314,75,6.203451156616211],[119,314,76,6.214632034301758],[119,314,77,6.2206244468688965],[119,314,78,6.2200398445129395],[119,314,79,6.212827682495117],[119,315,64,6.098939895629883],[119,315,65,6.105672836303711],[119,315,66,6.105361461639404],[119,315,67,6.099574565887451],[119,315,68,6.093015193939209],[119,315,69,6.091035842895508],[119,315,70,6.095149993896484],[119,315,71,6.105009078979492],[119,315,72,6.125766754150391],[119,315,73,6.157017707824707],[119,315,74,6.185085296630859],[119,315,75,6.203451156616211],[119,315,76,6.214632034301758],[119,315,77,6.2206244468688965],[119,315,78,6.2200398445129395],[119,315,79,6.212827682495117],[119,316,64,6.098939895629883],[119,316,65,6.105672836303711],[119,316,66,6.105361461639404],[119,316,67,6.099574565887451],[119,316,68,6.093015193939209],[119,316,69,6.091035842895508],[119,316,70,6.095149993896484],[119,316,71,6.105009078979492],[119,316,72,6.125766754150391],[119,316,73,6.157017707824707],[119,316,74,6.185085296630859],[119,316,75,6.203451156616211],[119,316,76,6.214632034301758],[119,316,77,6.2206244468688965],[119,316,78,6.2200398445129395],[119,316,79,6.212827682495117],[119,317,64,6.098939895629883],[119,317,65,6.105672836303711],[119,317,66,6.105361461639404],[119,317,67,6.099574565887451],[119,317,68,6.093015193939209],[119,317,69,6.091035842895508],[119,317,70,6.095149993896484],[119,317,71,6.105009078979492],[119,317,72,6.125766754150391],[119,317,73,6.157017707824707],[119,317,74,6.185085296630859],[119,317,75,6.203451156616211],[119,317,76,6.214632034301758],[119,317,77,6.2206244468688965],[119,317,78,6.2200398445129395],[119,317,79,6.212827682495117],[119,318,64,6.098939895629883],[119,318,65,6.105672836303711],[119,318,66,6.105361461639404],[119,318,67,6.099574565887451],[119,318,68,6.093015193939209],[119,318,69,6.091035842895508],[119,318,70,6.095149993896484],[119,318,71,6.105009078979492],[119,318,72,6.125766754150391],[119,318,73,6.157017707824707],[119,318,74,6.185085296630859],[119,318,75,6.203451156616211],[119,318,76,6.214632034301758],[119,318,77,6.2206244468688965],[119,318,78,6.2200398445129395],[119,318,79,6.212827682495117],[119,319,64,6.098939895629883],[119,319,65,6.105672836303711],[119,319,66,6.105361461639404],[119,319,67,6.099574565887451],[119,319,68,6.093015193939209],[119,319,69,6.091035842895508],[119,319,70,6.095149993896484],[119,319,71,6.105009078979492],[119,319,72,6.125766754150391],[119,319,73,6.157017707824707],[119,319,74,6.185085296630859],[119,319,75,6.203451156616211],[119,319,76,6.214632034301758],[119,319,77,6.2206244468688965],[119,319,78,6.2200398445129395],[119,319,79,6.212827682495117],[120,-64,64,6.115761756896973],[120,-64,65,6.119561195373535],[120,-64,66,6.118229866027832],[120,-64,67,6.1136064529418945],[120,-64,68,6.109954357147217],[120,-64,69,6.112156391143799],[120,-64,70,6.122154235839844],[120,-64,71,6.140125274658203],[120,-64,72,6.169338226318359],[120,-64,73,6.201080322265625],[120,-64,74,6.222208023071289],[120,-64,75,6.232969284057617],[120,-64,76,6.237795829772949],[120,-64,77,6.239090442657471],[120,-64,78,6.236435413360596],[120,-64,79,6.228061199188232],[120,-63,64,6.115761756896973],[120,-63,65,6.119561195373535],[120,-63,66,6.118229866027832],[120,-63,67,6.1136064529418945],[120,-63,68,6.109954357147217],[120,-63,69,6.112156391143799],[120,-63,70,6.122154235839844],[120,-63,71,6.140125274658203],[120,-63,72,6.169338226318359],[120,-63,73,6.201080322265625],[120,-63,74,6.222208023071289],[120,-63,75,6.232969284057617],[120,-63,76,6.237795829772949],[120,-63,77,6.239090442657471],[120,-63,78,6.236435413360596],[120,-63,79,6.228061199188232],[120,-62,64,6.115761756896973],[120,-62,65,6.119561195373535],[120,-62,66,6.118229866027832],[120,-62,67,6.1136064529418945],[120,-62,68,6.109954357147217],[120,-62,69,6.112156391143799],[120,-62,70,6.122154235839844],[120,-62,71,6.140125274658203],[120,-62,72,6.169338226318359],[120,-62,73,6.201080322265625],[120,-62,74,6.222208023071289],[120,-62,75,6.232969284057617],[120,-62,76,6.237795829772949],[120,-62,77,6.239090442657471],[120,-62,78,6.236435413360596],[120,-62,79,6.228061199188232],[120,-61,64,6.115761756896973],[120,-61,65,6.119561195373535],[120,-61,66,6.118229866027832],[120,-61,67,6.1136064529418945],[120,-61,68,6.109954357147217],[120,-61,69,6.112156391143799],[120,-61,70,6.122154235839844],[120,-61,71,6.140125274658203],[120,-61,72,6.169338226318359],[120,-61,73,6.201080322265625],[120,-61,74,6.222208023071289],[120,-61,75,6.232969284057617],[120,-61,76,6.237795829772949],[120,-61,77,6.239090442657471],[120,-61,78,6.236435413360596],[120,-61,79,6.228061199188232],[120,-60,64,6.115761756896973],[120,-60,65,6.119561195373535],[120,-60,66,6.118229866027832],[120,-60,67,6.1136064529418945],[120,-60,68,6.109954357147217],[120,-60,69,6.112156391143799],[120,-60,70,6.122154235839844],[120,-60,71,6.140125274658203],[120,-60,72,6.169338226318359],[120,-60,73,6.201080322265625],[120,-60,74,6.222208023071289],[120,-60,75,6.232969284057617],[120,-60,76,6.237795829772949],[120,-60,77,6.239090442657471],[120,-60,78,6.236435413360596],[120,-60,79,6.228061199188232],[120,-59,64,6.115761756896973],[120,-59,65,6.119561195373535],[120,-59,66,6.118229866027832],[120,-59,67,6.1136064529418945],[120,-59,68,6.109954357147217],[120,-59,69,6.112156391143799],[120,-59,70,6.122154235839844],[120,-59,71,6.140125274658203],[120,-59,72,6.169338226318359],[120,-59,73,6.201080322265625],[120,-59,74,6.222208023071289],[120,-59,75,6.232969284057617],[120,-59,76,6.237795829772949],[120,-59,77,6.239090442657471],[120,-59,78,6.236435413360596],[120,-59,79,6.228061199188232],[120,-58,64,6.115761756896973],[120,-58,65,6.119561195373535],[120,-58,66,6.118229866027832],[120,-58,67,6.1136064529418945],[120,-58,68,6.109954357147217],[120,-58,69,6.112156391143799],[120,-58,70,6.122154235839844],[120,-58,71,6.140125274658203],[120,-58,72,6.169338226318359],[120,-58,73,6.201080322265625],[120,-58,74,6.222208023071289],[120,-58,75,6.232969284057617],[120,-58,76,6.237795829772949],[120,-58,77,6.239090442657471],[120,-58,78,6.236435413360596],[120,-58,79,6.228061199188232],[120,-57,64,6.115761756896973],[120,-57,65,6.119561195373535],[120,-57,66,6.118229866027832],[120,-57,67,6.1136064529418945],[120,-57,68,6.109954357147217],[120,-57,69,6.112156391143799],[120,-57,70,6.122154235839844],[120,-57,71,6.140125274658203],[120,-57,72,6.169338226318359],[120,-57,73,6.201080322265625],[120,-57,74,6.222208023071289],[120,-57,75,6.232969284057617],[120,-57,76,6.237795829772949],[120,-57,77,6.239090442657471],[120,-57,78,6.236435413360596],[120,-57,79,6.228061199188232],[120,-56,64,6.115761756896973],[120,-56,65,6.119561195373535],[120,-56,66,6.118229866027832],[120,-56,67,6.1136064529418945],[120,-56,68,6.109954357147217],[120,-56,69,6.112156391143799],[120,-56,70,6.122154235839844],[120,-56,71,6.140125274658203],[120,-56,72,6.169338226318359],[120,-56,73,6.201080322265625],[120,-56,74,6.222208023071289],[120,-56,75,6.232969284057617],[120,-56,76,6.237795829772949],[120,-56,77,6.239090442657471],[120,-56,78,6.236435413360596],[120,-56,79,6.228061199188232],[120,-55,64,6.115761756896973],[120,-55,65,6.119561195373535],[120,-55,66,6.118229866027832],[120,-55,67,6.1136064529418945],[120,-55,68,6.109954357147217],[120,-55,69,6.112156391143799],[120,-55,70,6.122154235839844],[120,-55,71,6.140125274658203],[120,-55,72,6.169338226318359],[120,-55,73,6.201080322265625],[120,-55,74,6.222208023071289],[120,-55,75,6.232969284057617],[120,-55,76,6.237795829772949],[120,-55,77,6.239090442657471],[120,-55,78,6.236435413360596],[120,-55,79,6.228061199188232],[120,-54,64,6.115761756896973],[120,-54,65,6.119561195373535],[120,-54,66,6.118229866027832],[120,-54,67,6.1136064529418945],[120,-54,68,6.109954357147217],[120,-54,69,6.112156391143799],[120,-54,70,6.122154235839844],[120,-54,71,6.140125274658203],[120,-54,72,6.169338226318359],[120,-54,73,6.201080322265625],[120,-54,74,6.222208023071289],[120,-54,75,6.232969284057617],[120,-54,76,6.237795829772949],[120,-54,77,6.239090442657471],[120,-54,78,6.236435413360596],[120,-54,79,6.228061199188232],[120,-53,64,6.115761756896973],[120,-53,65,6.119561195373535],[120,-53,66,6.118229866027832],[120,-53,67,6.1136064529418945],[120,-53,68,6.109954357147217],[120,-53,69,6.112156391143799],[120,-53,70,6.122154235839844],[120,-53,71,6.140125274658203],[120,-53,72,6.169338226318359],[120,-53,73,6.201080322265625],[120,-53,74,6.222208023071289],[120,-53,75,6.232969284057617],[120,-53,76,6.237795829772949],[120,-53,77,6.239090442657471],[120,-53,78,6.236435413360596],[120,-53,79,6.228061199188232],[120,-52,64,6.115761756896973],[120,-52,65,6.119561195373535],[120,-52,66,6.118229866027832],[120,-52,67,6.1136064529418945],[120,-52,68,6.109954357147217],[120,-52,69,6.112156391143799],[120,-52,70,6.122154235839844],[120,-52,71,6.140125274658203],[120,-52,72,6.169338226318359],[120,-52,73,6.201080322265625],[120,-52,74,6.222208023071289],[120,-52,75,6.232969284057617],[120,-52,76,6.237795829772949],[120,-52,77,6.239090442657471],[120,-52,78,6.236435413360596],[120,-52,79,6.228061199188232],[120,-51,64,6.115761756896973],[120,-51,65,6.119561195373535],[120,-51,66,6.118229866027832],[120,-51,67,6.1136064529418945],[120,-51,68,6.109954357147217],[120,-51,69,6.112156391143799],[120,-51,70,6.122154235839844],[120,-51,71,6.140125274658203],[120,-51,72,6.169338226318359],[120,-51,73,6.201080322265625],[120,-51,74,6.222208023071289],[120,-51,75,6.232969284057617],[120,-51,76,6.237795829772949],[120,-51,77,6.239090442657471],[120,-51,78,6.236435413360596],[120,-51,79,6.228061199188232],[120,-50,64,6.115761756896973],[120,-50,65,6.119561195373535],[120,-50,66,6.118229866027832],[120,-50,67,6.1136064529418945],[120,-50,68,6.109954357147217],[120,-50,69,6.112156391143799],[120,-50,70,6.122154235839844],[120,-50,71,6.140125274658203],[120,-50,72,6.169338226318359],[120,-50,73,6.201080322265625],[120,-50,74,6.222208023071289],[120,-50,75,6.232969284057617],[120,-50,76,6.237795829772949],[120,-50,77,6.239090442657471],[120,-50,78,6.236435413360596],[120,-50,79,6.228061199188232],[120,-49,64,6.115761756896973],[120,-49,65,6.119561195373535],[120,-49,66,6.118229866027832],[120,-49,67,6.1136064529418945],[120,-49,68,6.109954357147217],[120,-49,69,6.112156391143799],[120,-49,70,6.122154235839844],[120,-49,71,6.140125274658203],[120,-49,72,6.169338226318359],[120,-49,73,6.201080322265625],[120,-49,74,6.222208023071289],[120,-49,75,6.232969284057617],[120,-49,76,6.237795829772949],[120,-49,77,6.239090442657471],[120,-49,78,6.236435413360596],[120,-49,79,6.228061199188232],[120,-48,64,6.115761756896973],[120,-48,65,6.119561195373535],[120,-48,66,6.118229866027832],[120,-48,67,6.1136064529418945],[120,-48,68,6.109954357147217],[120,-48,69,6.112156391143799],[120,-48,70,6.122154235839844],[120,-48,71,6.140125274658203],[120,-48,72,6.169338226318359],[120,-48,73,6.201080322265625],[120,-48,74,6.222208023071289],[120,-48,75,6.232969284057617],[120,-48,76,6.237795829772949],[120,-48,77,6.239090442657471],[120,-48,78,6.236435413360596],[120,-48,79,6.228061199188232],[120,-47,64,6.115761756896973],[120,-47,65,6.119561195373535],[120,-47,66,6.118229866027832],[120,-47,67,6.1136064529418945],[120,-47,68,6.109954357147217],[120,-47,69,6.112156391143799],[120,-47,70,6.122154235839844],[120,-47,71,6.140125274658203],[120,-47,72,6.169338226318359],[120,-47,73,6.201080322265625],[120,-47,74,6.222208023071289],[120,-47,75,6.232969284057617],[120,-47,76,6.237795829772949],[120,-47,77,6.239090442657471],[120,-47,78,6.236435413360596],[120,-47,79,6.228061199188232],[120,-46,64,6.115761756896973],[120,-46,65,6.119561195373535],[120,-46,66,6.118229866027832],[120,-46,67,6.1136064529418945],[120,-46,68,6.109954357147217],[120,-46,69,6.112156391143799],[120,-46,70,6.122154235839844],[120,-46,71,6.140125274658203],[120,-46,72,6.169338226318359],[120,-46,73,6.201080322265625],[120,-46,74,6.222208023071289],[120,-46,75,6.232969284057617],[120,-46,76,6.237795829772949],[120,-46,77,6.239090442657471],[120,-46,78,6.236435413360596],[120,-46,79,6.228061199188232],[120,-45,64,6.115761756896973],[120,-45,65,6.119561195373535],[120,-45,66,6.118229866027832],[120,-45,67,6.1136064529418945],[120,-45,68,6.109954357147217],[120,-45,69,6.112156391143799],[120,-45,70,6.122154235839844],[120,-45,71,6.140125274658203],[120,-45,72,6.169338226318359],[120,-45,73,6.201080322265625],[120,-45,74,6.222208023071289],[120,-45,75,6.232969284057617],[120,-45,76,6.237795829772949],[120,-45,77,6.239090442657471],[120,-45,78,6.236435413360596],[120,-45,79,6.228061199188232],[120,-44,64,6.115761756896973],[120,-44,65,6.119561195373535],[120,-44,66,6.118229866027832],[120,-44,67,6.1136064529418945],[120,-44,68,6.109954357147217],[120,-44,69,6.112156391143799],[120,-44,70,6.122154235839844],[120,-44,71,6.140125274658203],[120,-44,72,6.169338226318359],[120,-44,73,6.201080322265625],[120,-44,74,6.222208023071289],[120,-44,75,6.232969284057617],[120,-44,76,6.237795829772949],[120,-44,77,6.239090442657471],[120,-44,78,6.236435413360596],[120,-44,79,6.228061199188232],[120,-43,64,6.115761756896973],[120,-43,65,6.119561195373535],[120,-43,66,6.118229866027832],[120,-43,67,6.1136064529418945],[120,-43,68,6.109954357147217],[120,-43,69,6.112156391143799],[120,-43,70,6.122154235839844],[120,-43,71,6.140125274658203],[120,-43,72,6.169338226318359],[120,-43,73,6.201080322265625],[120,-43,74,6.222208023071289],[120,-43,75,6.232969284057617],[120,-43,76,6.237795829772949],[120,-43,77,6.239090442657471],[120,-43,78,6.236435413360596],[120,-43,79,6.228061199188232],[120,-42,64,6.115761756896973],[120,-42,65,6.119561195373535],[120,-42,66,6.118229866027832],[120,-42,67,6.1136064529418945],[120,-42,68,6.109954357147217],[120,-42,69,6.112156391143799],[120,-42,70,6.122154235839844],[120,-42,71,6.140125274658203],[120,-42,72,6.169338226318359],[120,-42,73,6.201080322265625],[120,-42,74,6.222208023071289],[120,-42,75,6.232969284057617],[120,-42,76,6.237795829772949],[120,-42,77,6.239090442657471],[120,-42,78,6.236435413360596],[120,-42,79,6.228061199188232],[120,-41,64,6.115761756896973],[120,-41,65,6.119561195373535],[120,-41,66,6.118229866027832],[120,-41,67,6.1136064529418945],[120,-41,68,6.109954357147217],[120,-41,69,6.112156391143799],[120,-41,70,6.122154235839844],[120,-41,71,6.140125274658203],[120,-41,72,6.169338226318359],[120,-41,73,6.201080322265625],[120,-41,74,6.222208023071289],[120,-41,75,6.232969284057617],[120,-41,76,6.237795829772949],[120,-41,77,6.239090442657471],[120,-41,78,6.236435413360596],[120,-41,79,6.228061199188232],[120,-40,64,6.115761756896973],[120,-40,65,6.119561195373535],[120,-40,66,6.118229866027832],[120,-40,67,6.1136064529418945],[120,-40,68,6.109954357147217],[120,-40,69,6.112156391143799],[120,-40,70,6.122154235839844],[120,-40,71,6.140125274658203],[120,-40,72,6.169338226318359],[120,-40,73,6.201080322265625],[120,-40,74,6.222208023071289],[120,-40,75,6.232969284057617],[120,-40,76,6.237795829772949],[120,-40,77,6.239090442657471],[120,-40,78,6.236435413360596],[120,-40,79,6.228061199188232],[120,-39,64,6.115761756896973],[120,-39,65,6.119561195373535],[120,-39,66,6.118229866027832],[120,-39,67,6.1136064529418945],[120,-39,68,6.109954357147217],[120,-39,69,6.112156391143799],[120,-39,70,6.122154235839844],[120,-39,71,6.140125274658203],[120,-39,72,6.169338226318359],[120,-39,73,6.201080322265625],[120,-39,74,6.222208023071289],[120,-39,75,6.232969284057617],[120,-39,76,6.237795829772949],[120,-39,77,6.239090442657471],[120,-39,78,6.236435413360596],[120,-39,79,6.228061199188232],[120,-38,64,6.115761756896973],[120,-38,65,6.119561195373535],[120,-38,66,6.118229866027832],[120,-38,67,6.1136064529418945],[120,-38,68,6.109954357147217],[120,-38,69,6.112156391143799],[120,-38,70,6.122154235839844],[120,-38,71,6.140125274658203],[120,-38,72,6.169338226318359],[120,-38,73,6.201080322265625],[120,-38,74,6.222208023071289],[120,-38,75,6.232969284057617],[120,-38,76,6.237795829772949],[120,-38,77,6.239090442657471],[120,-38,78,6.236435413360596],[120,-38,79,6.228061199188232],[120,-37,64,6.115761756896973],[120,-37,65,6.119561195373535],[120,-37,66,6.118229866027832],[120,-37,67,6.1136064529418945],[120,-37,68,6.109954357147217],[120,-37,69,6.112156391143799],[120,-37,70,6.122154235839844],[120,-37,71,6.140125274658203],[120,-37,72,6.169338226318359],[120,-37,73,6.201080322265625],[120,-37,74,6.222208023071289],[120,-37,75,6.232969284057617],[120,-37,76,6.237795829772949],[120,-37,77,6.239090442657471],[120,-37,78,6.236435413360596],[120,-37,79,6.228061199188232],[120,-36,64,6.115761756896973],[120,-36,65,6.119561195373535],[120,-36,66,6.118229866027832],[120,-36,67,6.1136064529418945],[120,-36,68,6.109954357147217],[120,-36,69,6.112156391143799],[120,-36,70,6.122154235839844],[120,-36,71,6.140125274658203],[120,-36,72,6.169338226318359],[120,-36,73,6.201080322265625],[120,-36,74,6.222208023071289],[120,-36,75,6.232969284057617],[120,-36,76,6.237795829772949],[120,-36,77,6.239090442657471],[120,-36,78,6.236435413360596],[120,-36,79,6.228061199188232],[120,-35,64,6.115761756896973],[120,-35,65,6.119561195373535],[120,-35,66,6.118229866027832],[120,-35,67,6.1136064529418945],[120,-35,68,6.109954357147217],[120,-35,69,6.112156391143799],[120,-35,70,6.122154235839844],[120,-35,71,6.140125274658203],[120,-35,72,6.169338226318359],[120,-35,73,6.201080322265625],[120,-35,74,6.222208023071289],[120,-35,75,6.232969284057617],[120,-35,76,6.237795829772949],[120,-35,77,6.239090442657471],[120,-35,78,6.236435413360596],[120,-35,79,6.228061199188232],[120,-34,64,6.115761756896973],[120,-34,65,6.119561195373535],[120,-34,66,6.118229866027832],[120,-34,67,6.1136064529418945],[120,-34,68,6.109954357147217],[120,-34,69,6.112156391143799],[120,-34,70,6.122154235839844],[120,-34,71,6.140125274658203],[120,-34,72,6.169338226318359],[120,-34,73,6.201080322265625],[120,-34,74,6.222208023071289],[120,-34,75,6.232969284057617],[120,-34,76,6.237795829772949],[120,-34,77,6.239090442657471],[120,-34,78,6.236435413360596],[120,-34,79,6.228061199188232],[120,-33,64,6.115761756896973],[120,-33,65,6.119561195373535],[120,-33,66,6.118229866027832],[120,-33,67,6.1136064529418945],[120,-33,68,6.109954357147217],[120,-33,69,6.112156391143799],[120,-33,70,6.122154235839844],[120,-33,71,6.140125274658203],[120,-33,72,6.169338226318359],[120,-33,73,6.201080322265625],[120,-33,74,6.222208023071289],[120,-33,75,6.232969284057617],[120,-33,76,6.237795829772949],[120,-33,77,6.239090442657471],[120,-33,78,6.236435413360596],[120,-33,79,6.228061199188232],[120,-32,64,6.115761756896973],[120,-32,65,6.119561195373535],[120,-32,66,6.118229866027832],[120,-32,67,6.1136064529418945],[120,-32,68,6.109954357147217],[120,-32,69,6.112156391143799],[120,-32,70,6.122154235839844],[120,-32,71,6.140125274658203],[120,-32,72,6.169338226318359],[120,-32,73,6.201080322265625],[120,-32,74,6.222208023071289],[120,-32,75,6.232969284057617],[120,-32,76,6.237795829772949],[120,-32,77,6.239090442657471],[120,-32,78,6.236435413360596],[120,-32,79,6.228061199188232],[120,-31,64,6.115761756896973],[120,-31,65,6.119561195373535],[120,-31,66,6.118229866027832],[120,-31,67,6.1136064529418945],[120,-31,68,6.109954357147217],[120,-31,69,6.112156391143799],[120,-31,70,6.122154235839844],[120,-31,71,6.140125274658203],[120,-31,72,6.169338226318359],[120,-31,73,6.201080322265625],[120,-31,74,6.222208023071289],[120,-31,75,6.232969284057617],[120,-31,76,6.237795829772949],[120,-31,77,6.239090442657471],[120,-31,78,6.236435413360596],[120,-31,79,6.228061199188232],[120,-30,64,6.115761756896973],[120,-30,65,6.119561195373535],[120,-30,66,6.118229866027832],[120,-30,67,6.1136064529418945],[120,-30,68,6.109954357147217],[120,-30,69,6.112156391143799],[120,-30,70,6.122154235839844],[120,-30,71,6.140125274658203],[120,-30,72,6.169338226318359],[120,-30,73,6.201080322265625],[120,-30,74,6.222208023071289],[120,-30,75,6.232969284057617],[120,-30,76,6.237795829772949],[120,-30,77,6.239090442657471],[120,-30,78,6.236435413360596],[120,-30,79,6.228061199188232],[120,-29,64,6.115761756896973],[120,-29,65,6.119561195373535],[120,-29,66,6.118229866027832],[120,-29,67,6.1136064529418945],[120,-29,68,6.109954357147217],[120,-29,69,6.112156391143799],[120,-29,70,6.122154235839844],[120,-29,71,6.140125274658203],[120,-29,72,6.169338226318359],[120,-29,73,6.201080322265625],[120,-29,74,6.222208023071289],[120,-29,75,6.232969284057617],[120,-29,76,6.237795829772949],[120,-29,77,6.239090442657471],[120,-29,78,6.236435413360596],[120,-29,79,6.228061199188232],[120,-28,64,6.115761756896973],[120,-28,65,6.119561195373535],[120,-28,66,6.118229866027832],[120,-28,67,6.1136064529418945],[120,-28,68,6.109954357147217],[120,-28,69,6.112156391143799],[120,-28,70,6.122154235839844],[120,-28,71,6.140125274658203],[120,-28,72,6.169338226318359],[120,-28,73,6.201080322265625],[120,-28,74,6.222208023071289],[120,-28,75,6.232969284057617],[120,-28,76,6.237795829772949],[120,-28,77,6.239090442657471],[120,-28,78,6.236435413360596],[120,-28,79,6.228061199188232],[120,-27,64,6.115761756896973],[120,-27,65,6.119561195373535],[120,-27,66,6.118229866027832],[120,-27,67,6.1136064529418945],[120,-27,68,6.109954357147217],[120,-27,69,6.112156391143799],[120,-27,70,6.122154235839844],[120,-27,71,6.140125274658203],[120,-27,72,6.169338226318359],[120,-27,73,6.201080322265625],[120,-27,74,6.222208023071289],[120,-27,75,6.232969284057617],[120,-27,76,6.237795829772949],[120,-27,77,6.239090442657471],[120,-27,78,6.236435413360596],[120,-27,79,6.228061199188232],[120,-26,64,6.115761756896973],[120,-26,65,6.119561195373535],[120,-26,66,6.118229866027832],[120,-26,67,6.1136064529418945],[120,-26,68,6.109954357147217],[120,-26,69,6.112156391143799],[120,-26,70,6.122154235839844],[120,-26,71,6.140125274658203],[120,-26,72,6.169338226318359],[120,-26,73,6.201080322265625],[120,-26,74,6.222208023071289],[120,-26,75,6.232969284057617],[120,-26,76,6.237795829772949],[120,-26,77,6.239090442657471],[120,-26,78,6.236435413360596],[120,-26,79,6.228061199188232],[120,-25,64,6.115761756896973],[120,-25,65,6.119561195373535],[120,-25,66,6.118229866027832],[120,-25,67,6.1136064529418945],[120,-25,68,6.109954357147217],[120,-25,69,6.112156391143799],[120,-25,70,6.122154235839844],[120,-25,71,6.140125274658203],[120,-25,72,6.169338226318359],[120,-25,73,6.201080322265625],[120,-25,74,6.222208023071289],[120,-25,75,6.232969284057617],[120,-25,76,6.237795829772949],[120,-25,77,6.239090442657471],[120,-25,78,6.236435413360596],[120,-25,79,6.228061199188232],[120,-24,64,6.115761756896973],[120,-24,65,6.119561195373535],[120,-24,66,6.118229866027832],[120,-24,67,6.1136064529418945],[120,-24,68,6.109954357147217],[120,-24,69,6.112156391143799],[120,-24,70,6.122154235839844],[120,-24,71,6.140125274658203],[120,-24,72,6.169338226318359],[120,-24,73,6.201080322265625],[120,-24,74,6.222208023071289],[120,-24,75,6.232969284057617],[120,-24,76,6.237795829772949],[120,-24,77,6.239090442657471],[120,-24,78,6.236435413360596],[120,-24,79,6.228061199188232],[120,-23,64,6.115761756896973],[120,-23,65,6.119561195373535],[120,-23,66,6.118229866027832],[120,-23,67,6.1136064529418945],[120,-23,68,6.109954357147217],[120,-23,69,6.112156391143799],[120,-23,70,6.122154235839844],[120,-23,71,6.140125274658203],[120,-23,72,6.169338226318359],[120,-23,73,6.201080322265625],[120,-23,74,6.222208023071289],[120,-23,75,6.232969284057617],[120,-23,76,6.237795829772949],[120,-23,77,6.239090442657471],[120,-23,78,6.236435413360596],[120,-23,79,6.228061199188232],[120,-22,64,6.115761756896973],[120,-22,65,6.119561195373535],[120,-22,66,6.118229866027832],[120,-22,67,6.1136064529418945],[120,-22,68,6.109954357147217],[120,-22,69,6.112156391143799],[120,-22,70,6.122154235839844],[120,-22,71,6.140125274658203],[120,-22,72,6.169338226318359],[120,-22,73,6.201080322265625],[120,-22,74,6.222208023071289],[120,-22,75,6.232969284057617],[120,-22,76,6.237795829772949],[120,-22,77,6.239090442657471],[120,-22,78,6.236435413360596],[120,-22,79,6.228061199188232],[120,-21,64,6.115761756896973],[120,-21,65,6.119561195373535],[120,-21,66,6.118229866027832],[120,-21,67,6.1136064529418945],[120,-21,68,6.109954357147217],[120,-21,69,6.112156391143799],[120,-21,70,6.122154235839844],[120,-21,71,6.140125274658203],[120,-21,72,6.169338226318359],[120,-21,73,6.201080322265625],[120,-21,74,6.222208023071289],[120,-21,75,6.232969284057617],[120,-21,76,6.237795829772949],[120,-21,77,6.239090442657471],[120,-21,78,6.236435413360596],[120,-21,79,6.228061199188232],[120,-20,64,6.115761756896973],[120,-20,65,6.119561195373535],[120,-20,66,6.118229866027832],[120,-20,67,6.1136064529418945],[120,-20,68,6.109954357147217],[120,-20,69,6.112156391143799],[120,-20,70,6.122154235839844],[120,-20,71,6.140125274658203],[120,-20,72,6.169338226318359],[120,-20,73,6.201080322265625],[120,-20,74,6.222208023071289],[120,-20,75,6.232969284057617],[120,-20,76,6.237795829772949],[120,-20,77,6.239090442657471],[120,-20,78,6.236435413360596],[120,-20,79,6.228061199188232],[120,-19,64,6.115761756896973],[120,-19,65,6.119561195373535],[120,-19,66,6.118229866027832],[120,-19,67,6.1136064529418945],[120,-19,68,6.109954357147217],[120,-19,69,6.112156391143799],[120,-19,70,6.122154235839844],[120,-19,71,6.140125274658203],[120,-19,72,6.169338226318359],[120,-19,73,6.201080322265625],[120,-19,74,6.222208023071289],[120,-19,75,6.232969284057617],[120,-19,76,6.237795829772949],[120,-19,77,6.239090442657471],[120,-19,78,6.236435413360596],[120,-19,79,6.228061199188232],[120,-18,64,6.115761756896973],[120,-18,65,6.119561195373535],[120,-18,66,6.118229866027832],[120,-18,67,6.1136064529418945],[120,-18,68,6.109954357147217],[120,-18,69,6.112156391143799],[120,-18,70,6.122154235839844],[120,-18,71,6.140125274658203],[120,-18,72,6.169338226318359],[120,-18,73,6.201080322265625],[120,-18,74,6.222208023071289],[120,-18,75,6.232969284057617],[120,-18,76,6.237795829772949],[120,-18,77,6.239090442657471],[120,-18,78,6.236435413360596],[120,-18,79,6.228061199188232],[120,-17,64,6.115761756896973],[120,-17,65,6.119561195373535],[120,-17,66,6.118229866027832],[120,-17,67,6.1136064529418945],[120,-17,68,6.109954357147217],[120,-17,69,6.112156391143799],[120,-17,70,6.122154235839844],[120,-17,71,6.140125274658203],[120,-17,72,6.169338226318359],[120,-17,73,6.201080322265625],[120,-17,74,6.222208023071289],[120,-17,75,6.232969284057617],[120,-17,76,6.237795829772949],[120,-17,77,6.239090442657471],[120,-17,78,6.236435413360596],[120,-17,79,6.228061199188232],[120,-16,64,6.115761756896973],[120,-16,65,6.119561195373535],[120,-16,66,6.118229866027832],[120,-16,67,6.1136064529418945],[120,-16,68,6.109954357147217],[120,-16,69,6.112156391143799],[120,-16,70,6.122154235839844],[120,-16,71,6.140125274658203],[120,-16,72,6.169338226318359],[120,-16,73,6.201080322265625],[120,-16,74,6.222208023071289],[120,-16,75,6.232969284057617],[120,-16,76,6.237795829772949],[120,-16,77,6.239090442657471],[120,-16,78,6.236435413360596],[120,-16,79,6.228061199188232],[120,-15,64,6.115761756896973],[120,-15,65,6.119561195373535],[120,-15,66,6.118229866027832],[120,-15,67,6.1136064529418945],[120,-15,68,6.109954357147217],[120,-15,69,6.112156391143799],[120,-15,70,6.122154235839844],[120,-15,71,6.140125274658203],[120,-15,72,6.169338226318359],[120,-15,73,6.201080322265625],[120,-15,74,6.222208023071289],[120,-15,75,6.232969284057617],[120,-15,76,6.237795829772949],[120,-15,77,6.239090442657471],[120,-15,78,6.236435413360596],[120,-15,79,6.228061199188232],[120,-14,64,6.115761756896973],[120,-14,65,6.119561195373535],[120,-14,66,6.118229866027832],[120,-14,67,6.1136064529418945],[120,-14,68,6.109954357147217],[120,-14,69,6.112156391143799],[120,-14,70,6.122154235839844],[120,-14,71,6.140125274658203],[120,-14,72,6.169338226318359],[120,-14,73,6.201080322265625],[120,-14,74,6.222208023071289],[120,-14,75,6.232969284057617],[120,-14,76,6.237795829772949],[120,-14,77,6.239090442657471],[120,-14,78,6.236435413360596],[120,-14,79,6.228061199188232],[120,-13,64,6.115761756896973],[120,-13,65,6.119561195373535],[120,-13,66,6.118229866027832],[120,-13,67,6.1136064529418945],[120,-13,68,6.109954357147217],[120,-13,69,6.112156391143799],[120,-13,70,6.122154235839844],[120,-13,71,6.140125274658203],[120,-13,72,6.169338226318359],[120,-13,73,6.201080322265625],[120,-13,74,6.222208023071289],[120,-13,75,6.232969284057617],[120,-13,76,6.237795829772949],[120,-13,77,6.239090442657471],[120,-13,78,6.236435413360596],[120,-13,79,6.228061199188232],[120,-12,64,6.115761756896973],[120,-12,65,6.119561195373535],[120,-12,66,6.118229866027832],[120,-12,67,6.1136064529418945],[120,-12,68,6.109954357147217],[120,-12,69,6.112156391143799],[120,-12,70,6.122154235839844],[120,-12,71,6.140125274658203],[120,-12,72,6.169338226318359],[120,-12,73,6.201080322265625],[120,-12,74,6.222208023071289],[120,-12,75,6.232969284057617],[120,-12,76,6.237795829772949],[120,-12,77,6.239090442657471],[120,-12,78,6.236435413360596],[120,-12,79,6.228061199188232],[120,-11,64,6.115761756896973],[120,-11,65,6.119561195373535],[120,-11,66,6.118229866027832],[120,-11,67,6.1136064529418945],[120,-11,68,6.109954357147217],[120,-11,69,6.112156391143799],[120,-11,70,6.122154235839844],[120,-11,71,6.140125274658203],[120,-11,72,6.169338226318359],[120,-11,73,6.201080322265625],[120,-11,74,6.222208023071289],[120,-11,75,6.232969284057617],[120,-11,76,6.237795829772949],[120,-11,77,6.239090442657471],[120,-11,78,6.236435413360596],[120,-11,79,6.228061199188232],[120,-10,64,6.115761756896973],[120,-10,65,6.119561195373535],[120,-10,66,6.118229866027832],[120,-10,67,6.1136064529418945],[120,-10,68,6.109954357147217],[120,-10,69,6.112156391143799],[120,-10,70,6.122154235839844],[120,-10,71,6.140125274658203],[120,-10,72,6.169338226318359],[120,-10,73,6.201080322265625],[120,-10,74,6.222208023071289],[120,-10,75,6.232969284057617],[120,-10,76,6.237795829772949],[120,-10,77,6.239090442657471],[120,-10,78,6.236435413360596],[120,-10,79,6.228061199188232],[120,-9,64,6.115761756896973],[120,-9,65,6.119561195373535],[120,-9,66,6.118229866027832],[120,-9,67,6.1136064529418945],[120,-9,68,6.109954357147217],[120,-9,69,6.112156391143799],[120,-9,70,6.122154235839844],[120,-9,71,6.140125274658203],[120,-9,72,6.169338226318359],[120,-9,73,6.201080322265625],[120,-9,74,6.222208023071289],[120,-9,75,6.232969284057617],[120,-9,76,6.237795829772949],[120,-9,77,6.239090442657471],[120,-9,78,6.236435413360596],[120,-9,79,6.228061199188232],[120,-8,64,6.115761756896973],[120,-8,65,6.119561195373535],[120,-8,66,6.118229866027832],[120,-8,67,6.1136064529418945],[120,-8,68,6.109954357147217],[120,-8,69,6.112156391143799],[120,-8,70,6.122154235839844],[120,-8,71,6.140125274658203],[120,-8,72,6.169338226318359],[120,-8,73,6.201080322265625],[120,-8,74,6.222208023071289],[120,-8,75,6.232969284057617],[120,-8,76,6.237795829772949],[120,-8,77,6.239090442657471],[120,-8,78,6.236435413360596],[120,-8,79,6.228061199188232],[120,-7,64,6.115761756896973],[120,-7,65,6.119561195373535],[120,-7,66,6.118229866027832],[120,-7,67,6.1136064529418945],[120,-7,68,6.109954357147217],[120,-7,69,6.112156391143799],[120,-7,70,6.122154235839844],[120,-7,71,6.140125274658203],[120,-7,72,6.169338226318359],[120,-7,73,6.201080322265625],[120,-7,74,6.222208023071289],[120,-7,75,6.232969284057617],[120,-7,76,6.237795829772949],[120,-7,77,6.239090442657471],[120,-7,78,6.236435413360596],[120,-7,79,6.228061199188232],[120,-6,64,6.115761756896973],[120,-6,65,6.119561195373535],[120,-6,66,6.118229866027832],[120,-6,67,6.1136064529418945],[120,-6,68,6.109954357147217],[120,-6,69,6.112156391143799],[120,-6,70,6.122154235839844],[120,-6,71,6.140125274658203],[120,-6,72,6.169338226318359],[120,-6,73,6.201080322265625],[120,-6,74,6.222208023071289],[120,-6,75,6.232969284057617],[120,-6,76,6.237795829772949],[120,-6,77,6.239090442657471],[120,-6,78,6.236435413360596],[120,-6,79,6.228061199188232],[120,-5,64,6.115761756896973],[120,-5,65,6.119561195373535],[120,-5,66,6.118229866027832],[120,-5,67,6.1136064529418945],[120,-5,68,6.109954357147217],[120,-5,69,6.112156391143799],[120,-5,70,6.122154235839844],[120,-5,71,6.140125274658203],[120,-5,72,6.169338226318359],[120,-5,73,6.201080322265625],[120,-5,74,6.222208023071289],[120,-5,75,6.232969284057617],[120,-5,76,6.237795829772949],[120,-5,77,6.239090442657471],[120,-5,78,6.236435413360596],[120,-5,79,6.228061199188232],[120,-4,64,6.115761756896973],[120,-4,65,6.119561195373535],[120,-4,66,6.118229866027832],[120,-4,67,6.1136064529418945],[120,-4,68,6.109954357147217],[120,-4,69,6.112156391143799],[120,-4,70,6.122154235839844],[120,-4,71,6.140125274658203],[120,-4,72,6.169338226318359],[120,-4,73,6.201080322265625],[120,-4,74,6.222208023071289],[120,-4,75,6.232969284057617],[120,-4,76,6.237795829772949],[120,-4,77,6.239090442657471],[120,-4,78,6.236435413360596],[120,-4,79,6.228061199188232],[120,-3,64,6.115761756896973],[120,-3,65,6.119561195373535],[120,-3,66,6.118229866027832],[120,-3,67,6.1136064529418945],[120,-3,68,6.109954357147217],[120,-3,69,6.112156391143799],[120,-3,70,6.122154235839844],[120,-3,71,6.140125274658203],[120,-3,72,6.169338226318359],[120,-3,73,6.201080322265625],[120,-3,74,6.222208023071289],[120,-3,75,6.232969284057617],[120,-3,76,6.237795829772949],[120,-3,77,6.239090442657471],[120,-3,78,6.236435413360596],[120,-3,79,6.228061199188232],[120,-2,64,6.115761756896973],[120,-2,65,6.119561195373535],[120,-2,66,6.118229866027832],[120,-2,67,6.1136064529418945],[120,-2,68,6.109954357147217],[120,-2,69,6.112156391143799],[120,-2,70,6.122154235839844],[120,-2,71,6.140125274658203],[120,-2,72,6.169338226318359],[120,-2,73,6.201080322265625],[120,-2,74,6.222208023071289],[120,-2,75,6.232969284057617],[120,-2,76,6.237795829772949],[120,-2,77,6.239090442657471],[120,-2,78,6.236435413360596],[120,-2,79,6.228061199188232],[120,-1,64,6.115761756896973],[120,-1,65,6.119561195373535],[120,-1,66,6.118229866027832],[120,-1,67,6.1136064529418945],[120,-1,68,6.109954357147217],[120,-1,69,6.112156391143799],[120,-1,70,6.122154235839844],[120,-1,71,6.140125274658203],[120,-1,72,6.169338226318359],[120,-1,73,6.201080322265625],[120,-1,74,6.222208023071289],[120,-1,75,6.232969284057617],[120,-1,76,6.237795829772949],[120,-1,77,6.239090442657471],[120,-1,78,6.236435413360596],[120,-1,79,6.228061199188232],[120,0,64,6.115761756896973],[120,0,65,6.119561195373535],[120,0,66,6.118229866027832],[120,0,67,6.1136064529418945],[120,0,68,6.109954357147217],[120,0,69,6.112156391143799],[120,0,70,6.122154235839844],[120,0,71,6.140125274658203],[120,0,72,6.169338226318359],[120,0,73,6.201080322265625],[120,0,74,6.222208023071289],[120,0,75,6.232969284057617],[120,0,76,6.237795829772949],[120,0,77,6.239090442657471],[120,0,78,6.236435413360596],[120,0,79,6.228061199188232],[120,1,64,6.115761756896973],[120,1,65,6.119561195373535],[120,1,66,6.118229866027832],[120,1,67,6.1136064529418945],[120,1,68,6.109954357147217],[120,1,69,6.112156391143799],[120,1,70,6.122154235839844],[120,1,71,6.140125274658203],[120,1,72,6.169338226318359],[120,1,73,6.201080322265625],[120,1,74,6.222208023071289],[120,1,75,6.232969284057617],[120,1,76,6.237795829772949],[120,1,77,6.239090442657471],[120,1,78,6.236435413360596],[120,1,79,6.228061199188232],[120,2,64,6.115761756896973],[120,2,65,6.119561195373535],[120,2,66,6.118229866027832],[120,2,67,6.1136064529418945],[120,2,68,6.109954357147217],[120,2,69,6.112156391143799],[120,2,70,6.122154235839844],[120,2,71,6.140125274658203],[120,2,72,6.169338226318359],[120,2,73,6.201080322265625],[120,2,74,6.222208023071289],[120,2,75,6.232969284057617],[120,2,76,6.237795829772949],[120,2,77,6.239090442657471],[120,2,78,6.236435413360596],[120,2,79,6.228061199188232],[120,3,64,6.115761756896973],[120,3,65,6.119561195373535],[120,3,66,6.118229866027832],[120,3,67,6.1136064529418945],[120,3,68,6.109954357147217],[120,3,69,6.112156391143799],[120,3,70,6.122154235839844],[120,3,71,6.140125274658203],[120,3,72,6.169338226318359],[120,3,73,6.201080322265625],[120,3,74,6.222208023071289],[120,3,75,6.232969284057617],[120,3,76,6.237795829772949],[120,3,77,6.239090442657471],[120,3,78,6.236435413360596],[120,3,79,6.228061199188232],[120,4,64,6.115761756896973],[120,4,65,6.119561195373535],[120,4,66,6.118229866027832],[120,4,67,6.1136064529418945],[120,4,68,6.109954357147217],[120,4,69,6.112156391143799],[120,4,70,6.122154235839844],[120,4,71,6.140125274658203],[120,4,72,6.169338226318359],[120,4,73,6.201080322265625],[120,4,74,6.222208023071289],[120,4,75,6.232969284057617],[120,4,76,6.237795829772949],[120,4,77,6.239090442657471],[120,4,78,6.236435413360596],[120,4,79,6.228061199188232],[120,5,64,6.115761756896973],[120,5,65,6.119561195373535],[120,5,66,6.118229866027832],[120,5,67,6.1136064529418945],[120,5,68,6.109954357147217],[120,5,69,6.112156391143799],[120,5,70,6.122154235839844],[120,5,71,6.140125274658203],[120,5,72,6.169338226318359],[120,5,73,6.201080322265625],[120,5,74,6.222208023071289],[120,5,75,6.232969284057617],[120,5,76,6.237795829772949],[120,5,77,6.239090442657471],[120,5,78,6.236435413360596],[120,5,79,6.228061199188232],[120,6,64,6.115761756896973],[120,6,65,6.119561195373535],[120,6,66,6.118229866027832],[120,6,67,6.1136064529418945],[120,6,68,6.109954357147217],[120,6,69,6.112156391143799],[120,6,70,6.122154235839844],[120,6,71,6.140125274658203],[120,6,72,6.169338226318359],[120,6,73,6.201080322265625],[120,6,74,6.222208023071289],[120,6,75,6.232969284057617],[120,6,76,6.237795829772949],[120,6,77,6.239090442657471],[120,6,78,6.236435413360596],[120,6,79,6.228061199188232],[120,7,64,6.115761756896973],[120,7,65,6.119561195373535],[120,7,66,6.118229866027832],[120,7,67,6.1136064529418945],[120,7,68,6.109954357147217],[120,7,69,6.112156391143799],[120,7,70,6.122154235839844],[120,7,71,6.140125274658203],[120,7,72,6.169338226318359],[120,7,73,6.201080322265625],[120,7,74,6.222208023071289],[120,7,75,6.232969284057617],[120,7,76,6.237795829772949],[120,7,77,6.239090442657471],[120,7,78,6.236435413360596],[120,7,79,6.228061199188232],[120,8,64,6.115761756896973],[120,8,65,6.119561195373535],[120,8,66,6.118229866027832],[120,8,67,6.1136064529418945],[120,8,68,6.109954357147217],[120,8,69,6.112156391143799],[120,8,70,6.122154235839844],[120,8,71,6.140125274658203],[120,8,72,6.169338226318359],[120,8,73,6.201080322265625],[120,8,74,6.222208023071289],[120,8,75,6.232969284057617],[120,8,76,6.237795829772949],[120,8,77,6.239090442657471],[120,8,78,6.236435413360596],[120,8,79,6.228061199188232],[120,9,64,6.115761756896973],[120,9,65,6.119561195373535],[120,9,66,6.118229866027832],[120,9,67,6.1136064529418945],[120,9,68,6.109954357147217],[120,9,69,6.112156391143799],[120,9,70,6.122154235839844],[120,9,71,6.140125274658203],[120,9,72,6.169338226318359],[120,9,73,6.201080322265625],[120,9,74,6.222208023071289],[120,9,75,6.232969284057617],[120,9,76,6.237795829772949],[120,9,77,6.239090442657471],[120,9,78,6.236435413360596],[120,9,79,6.228061199188232],[120,10,64,6.115761756896973],[120,10,65,6.119561195373535],[120,10,66,6.118229866027832],[120,10,67,6.1136064529418945],[120,10,68,6.109954357147217],[120,10,69,6.112156391143799],[120,10,70,6.122154235839844],[120,10,71,6.140125274658203],[120,10,72,6.169338226318359],[120,10,73,6.201080322265625],[120,10,74,6.222208023071289],[120,10,75,6.232969284057617],[120,10,76,6.237795829772949],[120,10,77,6.239090442657471],[120,10,78,6.236435413360596],[120,10,79,6.228061199188232],[120,11,64,6.115761756896973],[120,11,65,6.119561195373535],[120,11,66,6.118229866027832],[120,11,67,6.1136064529418945],[120,11,68,6.109954357147217],[120,11,69,6.112156391143799],[120,11,70,6.122154235839844],[120,11,71,6.140125274658203],[120,11,72,6.169338226318359],[120,11,73,6.201080322265625],[120,11,74,6.222208023071289],[120,11,75,6.232969284057617],[120,11,76,6.237795829772949],[120,11,77,6.239090442657471],[120,11,78,6.236435413360596],[120,11,79,6.228061199188232],[120,12,64,6.115761756896973],[120,12,65,6.119561195373535],[120,12,66,6.118229866027832],[120,12,67,6.1136064529418945],[120,12,68,6.109954357147217],[120,12,69,6.112156391143799],[120,12,70,6.122154235839844],[120,12,71,6.140125274658203],[120,12,72,6.169338226318359],[120,12,73,6.201080322265625],[120,12,74,6.222208023071289],[120,12,75,6.232969284057617],[120,12,76,6.237795829772949],[120,12,77,6.239090442657471],[120,12,78,6.236435413360596],[120,12,79,6.228061199188232],[120,13,64,6.115761756896973],[120,13,65,6.119561195373535],[120,13,66,6.118229866027832],[120,13,67,6.1136064529418945],[120,13,68,6.109954357147217],[120,13,69,6.112156391143799],[120,13,70,6.122154235839844],[120,13,71,6.140125274658203],[120,13,72,6.169338226318359],[120,13,73,6.201080322265625],[120,13,74,6.222208023071289],[120,13,75,6.232969284057617],[120,13,76,6.237795829772949],[120,13,77,6.239090442657471],[120,13,78,6.236435413360596],[120,13,79,6.228061199188232],[120,14,64,6.115761756896973],[120,14,65,6.119561195373535],[120,14,66,6.118229866027832],[120,14,67,6.1136064529418945],[120,14,68,6.109954357147217],[120,14,69,6.112156391143799],[120,14,70,6.122154235839844],[120,14,71,6.140125274658203],[120,14,72,6.169338226318359],[120,14,73,6.201080322265625],[120,14,74,6.222208023071289],[120,14,75,6.232969284057617],[120,14,76,6.237795829772949],[120,14,77,6.239090442657471],[120,14,78,6.236435413360596],[120,14,79,6.228061199188232],[120,15,64,6.115761756896973],[120,15,65,6.119561195373535],[120,15,66,6.118229866027832],[120,15,67,6.1136064529418945],[120,15,68,6.109954357147217],[120,15,69,6.112156391143799],[120,15,70,6.122154235839844],[120,15,71,6.140125274658203],[120,15,72,6.169338226318359],[120,15,73,6.201080322265625],[120,15,74,6.222208023071289],[120,15,75,6.232969284057617],[120,15,76,6.237795829772949],[120,15,77,6.239090442657471],[120,15,78,6.236435413360596],[120,15,79,6.228061199188232],[120,16,64,6.115761756896973],[120,16,65,6.119561195373535],[120,16,66,6.118229866027832],[120,16,67,6.1136064529418945],[120,16,68,6.109954357147217],[120,16,69,6.112156391143799],[120,16,70,6.122154235839844],[120,16,71,6.140125274658203],[120,16,72,6.169338226318359],[120,16,73,6.201080322265625],[120,16,74,6.222208023071289],[120,16,75,6.232969284057617],[120,16,76,6.237795829772949],[120,16,77,6.239090442657471],[120,16,78,6.236435413360596],[120,16,79,6.228061199188232],[120,17,64,6.115761756896973],[120,17,65,6.119561195373535],[120,17,66,6.118229866027832],[120,17,67,6.1136064529418945],[120,17,68,6.109954357147217],[120,17,69,6.112156391143799],[120,17,70,6.122154235839844],[120,17,71,6.140125274658203],[120,17,72,6.169338226318359],[120,17,73,6.201080322265625],[120,17,74,6.222208023071289],[120,17,75,6.232969284057617],[120,17,76,6.237795829772949],[120,17,77,6.239090442657471],[120,17,78,6.236435413360596],[120,17,79,6.228061199188232],[120,18,64,6.115761756896973],[120,18,65,6.119561195373535],[120,18,66,6.118229866027832],[120,18,67,6.1136064529418945],[120,18,68,6.109954357147217],[120,18,69,6.112156391143799],[120,18,70,6.122154235839844],[120,18,71,6.140125274658203],[120,18,72,6.169338226318359],[120,18,73,6.201080322265625],[120,18,74,6.222208023071289],[120,18,75,6.232969284057617],[120,18,76,6.237795829772949],[120,18,77,6.239090442657471],[120,18,78,6.236435413360596],[120,18,79,6.228061199188232],[120,19,64,6.115761756896973],[120,19,65,6.119561195373535],[120,19,66,6.118229866027832],[120,19,67,6.1136064529418945],[120,19,68,6.109954357147217],[120,19,69,6.112156391143799],[120,19,70,6.122154235839844],[120,19,71,6.140125274658203],[120,19,72,6.169338226318359],[120,19,73,6.201080322265625],[120,19,74,6.222208023071289],[120,19,75,6.232969284057617],[120,19,76,6.237795829772949],[120,19,77,6.239090442657471],[120,19,78,6.236435413360596],[120,19,79,6.228061199188232],[120,20,64,6.115761756896973],[120,20,65,6.119561195373535],[120,20,66,6.118229866027832],[120,20,67,6.1136064529418945],[120,20,68,6.109954357147217],[120,20,69,6.112156391143799],[120,20,70,6.122154235839844],[120,20,71,6.140125274658203],[120,20,72,6.169338226318359],[120,20,73,6.201080322265625],[120,20,74,6.222208023071289],[120,20,75,6.232969284057617],[120,20,76,6.237795829772949],[120,20,77,6.239090442657471],[120,20,78,6.236435413360596],[120,20,79,6.228061199188232],[120,21,64,6.115761756896973],[120,21,65,6.119561195373535],[120,21,66,6.118229866027832],[120,21,67,6.1136064529418945],[120,21,68,6.109954357147217],[120,21,69,6.112156391143799],[120,21,70,6.122154235839844],[120,21,71,6.140125274658203],[120,21,72,6.169338226318359],[120,21,73,6.201080322265625],[120,21,74,6.222208023071289],[120,21,75,6.232969284057617],[120,21,76,6.237795829772949],[120,21,77,6.239090442657471],[120,21,78,6.236435413360596],[120,21,79,6.228061199188232],[120,22,64,6.115761756896973],[120,22,65,6.119561195373535],[120,22,66,6.118229866027832],[120,22,67,6.1136064529418945],[120,22,68,6.109954357147217],[120,22,69,6.112156391143799],[120,22,70,6.122154235839844],[120,22,71,6.140125274658203],[120,22,72,6.169338226318359],[120,22,73,6.201080322265625],[120,22,74,6.222208023071289],[120,22,75,6.232969284057617],[120,22,76,6.237795829772949],[120,22,77,6.239090442657471],[120,22,78,6.236435413360596],[120,22,79,6.228061199188232],[120,23,64,6.115761756896973],[120,23,65,6.119561195373535],[120,23,66,6.118229866027832],[120,23,67,6.1136064529418945],[120,23,68,6.109954357147217],[120,23,69,6.112156391143799],[120,23,70,6.122154235839844],[120,23,71,6.140125274658203],[120,23,72,6.169338226318359],[120,23,73,6.201080322265625],[120,23,74,6.222208023071289],[120,23,75,6.232969284057617],[120,23,76,6.237795829772949],[120,23,77,6.239090442657471],[120,23,78,6.236435413360596],[120,23,79,6.228061199188232],[120,24,64,6.115761756896973],[120,24,65,6.119561195373535],[120,24,66,6.118229866027832],[120,24,67,6.1136064529418945],[120,24,68,6.109954357147217],[120,24,69,6.112156391143799],[120,24,70,6.122154235839844],[120,24,71,6.140125274658203],[120,24,72,6.169338226318359],[120,24,73,6.201080322265625],[120,24,74,6.222208023071289],[120,24,75,6.232969284057617],[120,24,76,6.237795829772949],[120,24,77,6.239090442657471],[120,24,78,6.236435413360596],[120,24,79,6.228061199188232],[120,25,64,6.115761756896973],[120,25,65,6.119561195373535],[120,25,66,6.118229866027832],[120,25,67,6.1136064529418945],[120,25,68,6.109954357147217],[120,25,69,6.112156391143799],[120,25,70,6.122154235839844],[120,25,71,6.140125274658203],[120,25,72,6.169338226318359],[120,25,73,6.201080322265625],[120,25,74,6.222208023071289],[120,25,75,6.232969284057617],[120,25,76,6.237795829772949],[120,25,77,6.239090442657471],[120,25,78,6.236435413360596],[120,25,79,6.228061199188232],[120,26,64,6.115761756896973],[120,26,65,6.119561195373535],[120,26,66,6.118229866027832],[120,26,67,6.1136064529418945],[120,26,68,6.109954357147217],[120,26,69,6.112156391143799],[120,26,70,6.122154235839844],[120,26,71,6.140125274658203],[120,26,72,6.169338226318359],[120,26,73,6.201080322265625],[120,26,74,6.222208023071289],[120,26,75,6.232969284057617],[120,26,76,6.237795829772949],[120,26,77,6.239090442657471],[120,26,78,6.236435413360596],[120,26,79,6.228061199188232],[120,27,64,6.115761756896973],[120,27,65,6.119561195373535],[120,27,66,6.118229866027832],[120,27,67,6.1136064529418945],[120,27,68,6.109954357147217],[120,27,69,6.112156391143799],[120,27,70,6.122154235839844],[120,27,71,6.140125274658203],[120,27,72,6.169338226318359],[120,27,73,6.201080322265625],[120,27,74,6.222208023071289],[120,27,75,6.232969284057617],[120,27,76,6.237795829772949],[120,27,77,6.239090442657471],[120,27,78,6.236435413360596],[120,27,79,6.228061199188232],[120,28,64,6.115761756896973],[120,28,65,6.119561195373535],[120,28,66,6.118229866027832],[120,28,67,6.1136064529418945],[120,28,68,6.109954357147217],[120,28,69,6.112156391143799],[120,28,70,6.122154235839844],[120,28,71,6.140125274658203],[120,28,72,6.169338226318359],[120,28,73,6.201080322265625],[120,28,74,6.222208023071289],[120,28,75,6.232969284057617],[120,28,76,6.237795829772949],[120,28,77,6.239090442657471],[120,28,78,6.236435413360596],[120,28,79,6.228061199188232],[120,29,64,6.115761756896973],[120,29,65,6.119561195373535],[120,29,66,6.118229866027832],[120,29,67,6.1136064529418945],[120,29,68,6.109954357147217],[120,29,69,6.112156391143799],[120,29,70,6.122154235839844],[120,29,71,6.140125274658203],[120,29,72,6.169338226318359],[120,29,73,6.201080322265625],[120,29,74,6.222208023071289],[120,29,75,6.232969284057617],[120,29,76,6.237795829772949],[120,29,77,6.239090442657471],[120,29,78,6.236435413360596],[120,29,79,6.228061199188232],[120,30,64,6.115761756896973],[120,30,65,6.119561195373535],[120,30,66,6.118229866027832],[120,30,67,6.1136064529418945],[120,30,68,6.109954357147217],[120,30,69,6.112156391143799],[120,30,70,6.122154235839844],[120,30,71,6.140125274658203],[120,30,72,6.169338226318359],[120,30,73,6.201080322265625],[120,30,74,6.222208023071289],[120,30,75,6.232969284057617],[120,30,76,6.237795829772949],[120,30,77,6.239090442657471],[120,30,78,6.236435413360596],[120,30,79,6.228061199188232],[120,31,64,6.115761756896973],[120,31,65,6.119561195373535],[120,31,66,6.118229866027832],[120,31,67,6.1136064529418945],[120,31,68,6.109954357147217],[120,31,69,6.112156391143799],[120,31,70,6.122154235839844],[120,31,71,6.140125274658203],[120,31,72,6.169338226318359],[120,31,73,6.201080322265625],[120,31,74,6.222208023071289],[120,31,75,6.232969284057617],[120,31,76,6.237795829772949],[120,31,77,6.239090442657471],[120,31,78,6.236435413360596],[120,31,79,6.228061199188232],[120,32,64,6.115761756896973],[120,32,65,6.119561195373535],[120,32,66,6.118229866027832],[120,32,67,6.1136064529418945],[120,32,68,6.109954357147217],[120,32,69,6.112156391143799],[120,32,70,6.122154235839844],[120,32,71,6.140125274658203],[120,32,72,6.169338226318359],[120,32,73,6.201080322265625],[120,32,74,6.222208023071289],[120,32,75,6.232969284057617],[120,32,76,6.237795829772949],[120,32,77,6.239090442657471],[120,32,78,6.236435413360596],[120,32,79,6.228061199188232],[120,33,64,6.115761756896973],[120,33,65,6.119561195373535],[120,33,66,6.118229866027832],[120,33,67,6.1136064529418945],[120,33,68,6.109954357147217],[120,33,69,6.112156391143799],[120,33,70,6.122154235839844],[120,33,71,6.140125274658203],[120,33,72,6.169338226318359],[120,33,73,6.201080322265625],[120,33,74,6.222208023071289],[120,33,75,6.232969284057617],[120,33,76,6.237795829772949],[120,33,77,6.239090442657471],[120,33,78,6.236435413360596],[120,33,79,6.228061199188232],[120,34,64,6.115761756896973],[120,34,65,6.119561195373535],[120,34,66,6.118229866027832],[120,34,67,6.1136064529418945],[120,34,68,6.109954357147217],[120,34,69,6.112156391143799],[120,34,70,6.122154235839844],[120,34,71,6.140125274658203],[120,34,72,6.169338226318359],[120,34,73,6.201080322265625],[120,34,74,6.222208023071289],[120,34,75,6.232969284057617],[120,34,76,6.237795829772949],[120,34,77,6.239090442657471],[120,34,78,6.236435413360596],[120,34,79,6.228061199188232],[120,35,64,6.115761756896973],[120,35,65,6.119561195373535],[120,35,66,6.118229866027832],[120,35,67,6.1136064529418945],[120,35,68,6.109954357147217],[120,35,69,6.112156391143799],[120,35,70,6.122154235839844],[120,35,71,6.140125274658203],[120,35,72,6.169338226318359],[120,35,73,6.201080322265625],[120,35,74,6.222208023071289],[120,35,75,6.232969284057617],[120,35,76,6.237795829772949],[120,35,77,6.239090442657471],[120,35,78,6.236435413360596],[120,35,79,6.228061199188232],[120,36,64,6.115761756896973],[120,36,65,6.119561195373535],[120,36,66,6.118229866027832],[120,36,67,6.1136064529418945],[120,36,68,6.109954357147217],[120,36,69,6.112156391143799],[120,36,70,6.122154235839844],[120,36,71,6.140125274658203],[120,36,72,6.169338226318359],[120,36,73,6.201080322265625],[120,36,74,6.222208023071289],[120,36,75,6.232969284057617],[120,36,76,6.237795829772949],[120,36,77,6.239090442657471],[120,36,78,6.236435413360596],[120,36,79,6.228061199188232],[120,37,64,6.115761756896973],[120,37,65,6.119561195373535],[120,37,66,6.118229866027832],[120,37,67,6.1136064529418945],[120,37,68,6.109954357147217],[120,37,69,6.112156391143799],[120,37,70,6.122154235839844],[120,37,71,6.140125274658203],[120,37,72,6.169338226318359],[120,37,73,6.201080322265625],[120,37,74,6.222208023071289],[120,37,75,6.232969284057617],[120,37,76,6.237795829772949],[120,37,77,6.239090442657471],[120,37,78,6.236435413360596],[120,37,79,6.228061199188232],[120,38,64,6.115761756896973],[120,38,65,6.119561195373535],[120,38,66,6.118229866027832],[120,38,67,6.1136064529418945],[120,38,68,6.109954357147217],[120,38,69,6.112156391143799],[120,38,70,6.122154235839844],[120,38,71,6.140125274658203],[120,38,72,6.169338226318359],[120,38,73,6.201080322265625],[120,38,74,6.222208023071289],[120,38,75,6.232969284057617],[120,38,76,6.237795829772949],[120,38,77,6.239090442657471],[120,38,78,6.236435413360596],[120,38,79,6.228061199188232],[120,39,64,6.115761756896973],[120,39,65,6.119561195373535],[120,39,66,6.118229866027832],[120,39,67,6.1136064529418945],[120,39,68,6.109954357147217],[120,39,69,6.112156391143799],[120,39,70,6.122154235839844],[120,39,71,6.140125274658203],[120,39,72,6.169338226318359],[120,39,73,6.201080322265625],[120,39,74,6.222208023071289],[120,39,75,6.232969284057617],[120,39,76,6.237795829772949],[120,39,77,6.239090442657471],[120,39,78,6.236435413360596],[120,39,79,6.228061199188232],[120,40,64,6.115761756896973],[120,40,65,6.119561195373535],[120,40,66,6.118229866027832],[120,40,67,6.1136064529418945],[120,40,68,6.109954357147217],[120,40,69,6.112156391143799],[120,40,70,6.122154235839844],[120,40,71,6.140125274658203],[120,40,72,6.169338226318359],[120,40,73,6.201080322265625],[120,40,74,6.222208023071289],[120,40,75,6.232969284057617],[120,40,76,6.237795829772949],[120,40,77,6.239090442657471],[120,40,78,6.236435413360596],[120,40,79,6.228061199188232],[120,41,64,6.115761756896973],[120,41,65,6.119561195373535],[120,41,66,6.118229866027832],[120,41,67,6.1136064529418945],[120,41,68,6.109954357147217],[120,41,69,6.112156391143799],[120,41,70,6.122154235839844],[120,41,71,6.140125274658203],[120,41,72,6.169338226318359],[120,41,73,6.201080322265625],[120,41,74,6.222208023071289],[120,41,75,6.232969284057617],[120,41,76,6.237795829772949],[120,41,77,6.239090442657471],[120,41,78,6.236435413360596],[120,41,79,6.228061199188232],[120,42,64,6.115761756896973],[120,42,65,6.119561195373535],[120,42,66,6.118229866027832],[120,42,67,6.1136064529418945],[120,42,68,6.109954357147217],[120,42,69,6.112156391143799],[120,42,70,6.122154235839844],[120,42,71,6.140125274658203],[120,42,72,6.169338226318359],[120,42,73,6.201080322265625],[120,42,74,6.222208023071289],[120,42,75,6.232969284057617],[120,42,76,6.237795829772949],[120,42,77,6.239090442657471],[120,42,78,6.236435413360596],[120,42,79,6.228061199188232],[120,43,64,6.115761756896973],[120,43,65,6.119561195373535],[120,43,66,6.118229866027832],[120,43,67,6.1136064529418945],[120,43,68,6.109954357147217],[120,43,69,6.112156391143799],[120,43,70,6.122154235839844],[120,43,71,6.140125274658203],[120,43,72,6.169338226318359],[120,43,73,6.201080322265625],[120,43,74,6.222208023071289],[120,43,75,6.232969284057617],[120,43,76,6.237795829772949],[120,43,77,6.239090442657471],[120,43,78,6.236435413360596],[120,43,79,6.228061199188232],[120,44,64,6.115761756896973],[120,44,65,6.119561195373535],[120,44,66,6.118229866027832],[120,44,67,6.1136064529418945],[120,44,68,6.109954357147217],[120,44,69,6.112156391143799],[120,44,70,6.122154235839844],[120,44,71,6.140125274658203],[120,44,72,6.169338226318359],[120,44,73,6.201080322265625],[120,44,74,6.222208023071289],[120,44,75,6.232969284057617],[120,44,76,6.237795829772949],[120,44,77,6.239090442657471],[120,44,78,6.236435413360596],[120,44,79,6.228061199188232],[120,45,64,6.115761756896973],[120,45,65,6.119561195373535],[120,45,66,6.118229866027832],[120,45,67,6.1136064529418945],[120,45,68,6.109954357147217],[120,45,69,6.112156391143799],[120,45,70,6.122154235839844],[120,45,71,6.140125274658203],[120,45,72,6.169338226318359],[120,45,73,6.201080322265625],[120,45,74,6.222208023071289],[120,45,75,6.232969284057617],[120,45,76,6.237795829772949],[120,45,77,6.239090442657471],[120,45,78,6.236435413360596],[120,45,79,6.228061199188232],[120,46,64,6.115761756896973],[120,46,65,6.119561195373535],[120,46,66,6.118229866027832],[120,46,67,6.1136064529418945],[120,46,68,6.109954357147217],[120,46,69,6.112156391143799],[120,46,70,6.122154235839844],[120,46,71,6.140125274658203],[120,46,72,6.169338226318359],[120,46,73,6.201080322265625],[120,46,74,6.222208023071289],[120,46,75,6.232969284057617],[120,46,76,6.237795829772949],[120,46,77,6.239090442657471],[120,46,78,6.236435413360596],[120,46,79,6.228061199188232],[120,47,64,6.115761756896973],[120,47,65,6.119561195373535],[120,47,66,6.118229866027832],[120,47,67,6.1136064529418945],[120,47,68,6.109954357147217],[120,47,69,6.112156391143799],[120,47,70,6.122154235839844],[120,47,71,6.140125274658203],[120,47,72,6.169338226318359],[120,47,73,6.201080322265625],[120,47,74,6.222208023071289],[120,47,75,6.232969284057617],[120,47,76,6.237795829772949],[120,47,77,6.239090442657471],[120,47,78,6.236435413360596],[120,47,79,6.228061199188232],[120,48,64,6.115761756896973],[120,48,65,6.119561195373535],[120,48,66,6.118229866027832],[120,48,67,6.1136064529418945],[120,48,68,6.109954357147217],[120,48,69,6.112156391143799],[120,48,70,6.122154235839844],[120,48,71,6.140125274658203],[120,48,72,6.169338226318359],[120,48,73,6.201080322265625],[120,48,74,6.222208023071289],[120,48,75,6.232969284057617],[120,48,76,6.237795829772949],[120,48,77,6.239090442657471],[120,48,78,6.236435413360596],[120,48,79,6.228061199188232],[120,49,64,6.115761756896973],[120,49,65,6.119561195373535],[120,49,66,6.118229866027832],[120,49,67,6.1136064529418945],[120,49,68,6.109954357147217],[120,49,69,6.112156391143799],[120,49,70,6.122154235839844],[120,49,71,6.140125274658203],[120,49,72,6.169338226318359],[120,49,73,6.201080322265625],[120,49,74,6.222208023071289],[120,49,75,6.232969284057617],[120,49,76,6.237795829772949],[120,49,77,6.239090442657471],[120,49,78,6.236435413360596],[120,49,79,6.228061199188232],[120,50,64,6.115761756896973],[120,50,65,6.119561195373535],[120,50,66,6.118229866027832],[120,50,67,6.1136064529418945],[120,50,68,6.109954357147217],[120,50,69,6.112156391143799],[120,50,70,6.122154235839844],[120,50,71,6.140125274658203],[120,50,72,6.169338226318359],[120,50,73,6.201080322265625],[120,50,74,6.222208023071289],[120,50,75,6.232969284057617],[120,50,76,6.237795829772949],[120,50,77,6.239090442657471],[120,50,78,6.236435413360596],[120,50,79,6.228061199188232],[120,51,64,6.115761756896973],[120,51,65,6.119561195373535],[120,51,66,6.118229866027832],[120,51,67,6.1136064529418945],[120,51,68,6.109954357147217],[120,51,69,6.112156391143799],[120,51,70,6.122154235839844],[120,51,71,6.140125274658203],[120,51,72,6.169338226318359],[120,51,73,6.201080322265625],[120,51,74,6.222208023071289],[120,51,75,6.232969284057617],[120,51,76,6.237795829772949],[120,51,77,6.239090442657471],[120,51,78,6.236435413360596],[120,51,79,6.228061199188232],[120,52,64,6.115761756896973],[120,52,65,6.119561195373535],[120,52,66,6.118229866027832],[120,52,67,6.1136064529418945],[120,52,68,6.109954357147217],[120,52,69,6.112156391143799],[120,52,70,6.122154235839844],[120,52,71,6.140125274658203],[120,52,72,6.169338226318359],[120,52,73,6.201080322265625],[120,52,74,6.222208023071289],[120,52,75,6.232969284057617],[120,52,76,6.237795829772949],[120,52,77,6.239090442657471],[120,52,78,6.236435413360596],[120,52,79,6.228061199188232],[120,53,64,6.115761756896973],[120,53,65,6.119561195373535],[120,53,66,6.118229866027832],[120,53,67,6.1136064529418945],[120,53,68,6.109954357147217],[120,53,69,6.112156391143799],[120,53,70,6.122154235839844],[120,53,71,6.140125274658203],[120,53,72,6.169338226318359],[120,53,73,6.201080322265625],[120,53,74,6.222208023071289],[120,53,75,6.232969284057617],[120,53,76,6.237795829772949],[120,53,77,6.239090442657471],[120,53,78,6.236435413360596],[120,53,79,6.228061199188232],[120,54,64,6.115761756896973],[120,54,65,6.119561195373535],[120,54,66,6.118229866027832],[120,54,67,6.1136064529418945],[120,54,68,6.109954357147217],[120,54,69,6.112156391143799],[120,54,70,6.122154235839844],[120,54,71,6.140125274658203],[120,54,72,6.169338226318359],[120,54,73,6.201080322265625],[120,54,74,6.222208023071289],[120,54,75,6.232969284057617],[120,54,76,6.237795829772949],[120,54,77,6.239090442657471],[120,54,78,6.236435413360596],[120,54,79,6.228061199188232],[120,55,64,6.115761756896973],[120,55,65,6.119561195373535],[120,55,66,6.118229866027832],[120,55,67,6.1136064529418945],[120,55,68,6.109954357147217],[120,55,69,6.112156391143799],[120,55,70,6.122154235839844],[120,55,71,6.140125274658203],[120,55,72,6.169338226318359],[120,55,73,6.201080322265625],[120,55,74,6.222208023071289],[120,55,75,6.232969284057617],[120,55,76,6.237795829772949],[120,55,77,6.239090442657471],[120,55,78,6.236435413360596],[120,55,79,6.228061199188232],[120,56,64,6.115761756896973],[120,56,65,6.119561195373535],[120,56,66,6.118229866027832],[120,56,67,6.1136064529418945],[120,56,68,6.109954357147217],[120,56,69,6.112156391143799],[120,56,70,6.122154235839844],[120,56,71,6.140125274658203],[120,56,72,6.169338226318359],[120,56,73,6.201080322265625],[120,56,74,6.222208023071289],[120,56,75,6.232969284057617],[120,56,76,6.237795829772949],[120,56,77,6.239090442657471],[120,56,78,6.236435413360596],[120,56,79,6.228061199188232],[120,57,64,6.115761756896973],[120,57,65,6.119561195373535],[120,57,66,6.118229866027832],[120,57,67,6.1136064529418945],[120,57,68,6.109954357147217],[120,57,69,6.112156391143799],[120,57,70,6.122154235839844],[120,57,71,6.140125274658203],[120,57,72,6.169338226318359],[120,57,73,6.201080322265625],[120,57,74,6.222208023071289],[120,57,75,6.232969284057617],[120,57,76,6.237795829772949],[120,57,77,6.239090442657471],[120,57,78,6.236435413360596],[120,57,79,6.228061199188232],[120,58,64,6.115761756896973],[120,58,65,6.119561195373535],[120,58,66,6.118229866027832],[120,58,67,6.1136064529418945],[120,58,68,6.109954357147217],[120,58,69,6.112156391143799],[120,58,70,6.122154235839844],[120,58,71,6.140125274658203],[120,58,72,6.169338226318359],[120,58,73,6.201080322265625],[120,58,74,6.222208023071289],[120,58,75,6.232969284057617],[120,58,76,6.237795829772949],[120,58,77,6.239090442657471],[120,58,78,6.236435413360596],[120,58,79,6.228061199188232],[120,59,64,6.115761756896973],[120,59,65,6.119561195373535],[120,59,66,6.118229866027832],[120,59,67,6.1136064529418945],[120,59,68,6.109954357147217],[120,59,69,6.112156391143799],[120,59,70,6.122154235839844],[120,59,71,6.140125274658203],[120,59,72,6.169338226318359],[120,59,73,6.201080322265625],[120,59,74,6.222208023071289],[120,59,75,6.232969284057617],[120,59,76,6.237795829772949],[120,59,77,6.239090442657471],[120,59,78,6.236435413360596],[120,59,79,6.228061199188232],[120,60,64,6.115761756896973],[120,60,65,6.119561195373535],[120,60,66,6.118229866027832],[120,60,67,6.1136064529418945],[120,60,68,6.109954357147217],[120,60,69,6.112156391143799],[120,60,70,6.122154235839844],[120,60,71,6.140125274658203],[120,60,72,6.169338226318359],[120,60,73,6.201080322265625],[120,60,74,6.222208023071289],[120,60,75,6.232969284057617],[120,60,76,6.237795829772949],[120,60,77,6.239090442657471],[120,60,78,6.236435413360596],[120,60,79,6.228061199188232],[120,61,64,6.115761756896973],[120,61,65,6.119561195373535],[120,61,66,6.118229866027832],[120,61,67,6.1136064529418945],[120,61,68,6.109954357147217],[120,61,69,6.112156391143799],[120,61,70,6.122154235839844],[120,61,71,6.140125274658203],[120,61,72,6.169338226318359],[120,61,73,6.201080322265625],[120,61,74,6.222208023071289],[120,61,75,6.232969284057617],[120,61,76,6.237795829772949],[120,61,77,6.239090442657471],[120,61,78,6.236435413360596],[120,61,79,6.228061199188232],[120,62,64,6.115761756896973],[120,62,65,6.119561195373535],[120,62,66,6.118229866027832],[120,62,67,6.1136064529418945],[120,62,68,6.109954357147217],[120,62,69,6.112156391143799],[120,62,70,6.122154235839844],[120,62,71,6.140125274658203],[120,62,72,6.169338226318359],[120,62,73,6.201080322265625],[120,62,74,6.222208023071289],[120,62,75,6.232969284057617],[120,62,76,6.237795829772949],[120,62,77,6.239090442657471],[120,62,78,6.236435413360596],[120,62,79,6.228061199188232],[120,63,64,6.115761756896973],[120,63,65,6.119561195373535],[120,63,66,6.118229866027832],[120,63,67,6.1136064529418945],[120,63,68,6.109954357147217],[120,63,69,6.112156391143799],[120,63,70,6.122154235839844],[120,63,71,6.140125274658203],[120,63,72,6.169338226318359],[120,63,73,6.201080322265625],[120,63,74,6.222208023071289],[120,63,75,6.232969284057617],[120,63,76,6.237795829772949],[120,63,77,6.239090442657471],[120,63,78,6.236435413360596],[120,63,79,6.228061199188232],[120,64,64,6.115761756896973],[120,64,65,6.119561195373535],[120,64,66,6.118229866027832],[120,64,67,6.1136064529418945],[120,64,68,6.109954357147217],[120,64,69,6.112156391143799],[120,64,70,6.122154235839844],[120,64,71,6.140125274658203],[120,64,72,6.169338226318359],[120,64,73,6.201080322265625],[120,64,74,6.222208023071289],[120,64,75,6.232969284057617],[120,64,76,6.237795829772949],[120,64,77,6.239090442657471],[120,64,78,6.236435413360596],[120,64,79,6.228061199188232],[120,65,64,6.115761756896973],[120,65,65,6.119561195373535],[120,65,66,6.118229866027832],[120,65,67,6.1136064529418945],[120,65,68,6.109954357147217],[120,65,69,6.112156391143799],[120,65,70,6.122154235839844],[120,65,71,6.140125274658203],[120,65,72,6.169338226318359],[120,65,73,6.201080322265625],[120,65,74,6.222208023071289],[120,65,75,6.232969284057617],[120,65,76,6.237795829772949],[120,65,77,6.239090442657471],[120,65,78,6.236435413360596],[120,65,79,6.228061199188232],[120,66,64,6.115761756896973],[120,66,65,6.119561195373535],[120,66,66,6.118229866027832],[120,66,67,6.1136064529418945],[120,66,68,6.109954357147217],[120,66,69,6.112156391143799],[120,66,70,6.122154235839844],[120,66,71,6.140125274658203],[120,66,72,6.169338226318359],[120,66,73,6.201080322265625],[120,66,74,6.222208023071289],[120,66,75,6.232969284057617],[120,66,76,6.237795829772949],[120,66,77,6.239090442657471],[120,66,78,6.236435413360596],[120,66,79,6.228061199188232],[120,67,64,6.115761756896973],[120,67,65,6.119561195373535],[120,67,66,6.118229866027832],[120,67,67,6.1136064529418945],[120,67,68,6.109954357147217],[120,67,69,6.112156391143799],[120,67,70,6.122154235839844],[120,67,71,6.140125274658203],[120,67,72,6.169338226318359],[120,67,73,6.201080322265625],[120,67,74,6.222208023071289],[120,67,75,6.232969284057617],[120,67,76,6.237795829772949],[120,67,77,6.239090442657471],[120,67,78,6.236435413360596],[120,67,79,6.228061199188232],[120,68,64,6.115761756896973],[120,68,65,6.119561195373535],[120,68,66,6.118229866027832],[120,68,67,6.1136064529418945],[120,68,68,6.109954357147217],[120,68,69,6.112156391143799],[120,68,70,6.122154235839844],[120,68,71,6.140125274658203],[120,68,72,6.169338226318359],[120,68,73,6.201080322265625],[120,68,74,6.222208023071289],[120,68,75,6.232969284057617],[120,68,76,6.237795829772949],[120,68,77,6.239090442657471],[120,68,78,6.236435413360596],[120,68,79,6.228061199188232],[120,69,64,6.115761756896973],[120,69,65,6.119561195373535],[120,69,66,6.118229866027832],[120,69,67,6.1136064529418945],[120,69,68,6.109954357147217],[120,69,69,6.112156391143799],[120,69,70,6.122154235839844],[120,69,71,6.140125274658203],[120,69,72,6.169338226318359],[120,69,73,6.201080322265625],[120,69,74,6.222208023071289],[120,69,75,6.232969284057617],[120,69,76,6.237795829772949],[120,69,77,6.239090442657471],[120,69,78,6.236435413360596],[120,69,79,6.228061199188232],[120,70,64,6.115761756896973],[120,70,65,6.119561195373535],[120,70,66,6.118229866027832],[120,70,67,6.1136064529418945],[120,70,68,6.109954357147217],[120,70,69,6.112156391143799],[120,70,70,6.122154235839844],[120,70,71,6.140125274658203],[120,70,72,6.169338226318359],[120,70,73,6.201080322265625],[120,70,74,6.222208023071289],[120,70,75,6.232969284057617],[120,70,76,6.237795829772949],[120,70,77,6.239090442657471],[120,70,78,6.236435413360596],[120,70,79,6.228061199188232],[120,71,64,6.115761756896973],[120,71,65,6.119561195373535],[120,71,66,6.118229866027832],[120,71,67,6.1136064529418945],[120,71,68,6.109954357147217],[120,71,69,6.112156391143799],[120,71,70,6.122154235839844],[120,71,71,6.140125274658203],[120,71,72,6.169338226318359],[120,71,73,6.201080322265625],[120,71,74,6.222208023071289],[120,71,75,6.232969284057617],[120,71,76,6.237795829772949],[120,71,77,6.239090442657471],[120,71,78,6.236435413360596],[120,71,79,6.228061199188232],[120,72,64,6.115761756896973],[120,72,65,6.119561195373535],[120,72,66,6.118229866027832],[120,72,67,6.1136064529418945],[120,72,68,6.109954357147217],[120,72,69,6.112156391143799],[120,72,70,6.122154235839844],[120,72,71,6.140125274658203],[120,72,72,6.169338226318359],[120,72,73,6.201080322265625],[120,72,74,6.222208023071289],[120,72,75,6.232969284057617],[120,72,76,6.237795829772949],[120,72,77,6.239090442657471],[120,72,78,6.236435413360596],[120,72,79,6.228061199188232],[120,73,64,6.115761756896973],[120,73,65,6.119561195373535],[120,73,66,6.118229866027832],[120,73,67,6.1136064529418945],[120,73,68,6.109954357147217],[120,73,69,6.112156391143799],[120,73,70,6.122154235839844],[120,73,71,6.140125274658203],[120,73,72,6.169338226318359],[120,73,73,6.201080322265625],[120,73,74,6.222208023071289],[120,73,75,6.232969284057617],[120,73,76,6.237795829772949],[120,73,77,6.239090442657471],[120,73,78,6.236435413360596],[120,73,79,6.228061199188232],[120,74,64,6.115761756896973],[120,74,65,6.119561195373535],[120,74,66,6.118229866027832],[120,74,67,6.1136064529418945],[120,74,68,6.109954357147217],[120,74,69,6.112156391143799],[120,74,70,6.122154235839844],[120,74,71,6.140125274658203],[120,74,72,6.169338226318359],[120,74,73,6.201080322265625],[120,74,74,6.222208023071289],[120,74,75,6.232969284057617],[120,74,76,6.237795829772949],[120,74,77,6.239090442657471],[120,74,78,6.236435413360596],[120,74,79,6.228061199188232],[120,75,64,6.115761756896973],[120,75,65,6.119561195373535],[120,75,66,6.118229866027832],[120,75,67,6.1136064529418945],[120,75,68,6.109954357147217],[120,75,69,6.112156391143799],[120,75,70,6.122154235839844],[120,75,71,6.140125274658203],[120,75,72,6.169338226318359],[120,75,73,6.201080322265625],[120,75,74,6.222208023071289],[120,75,75,6.232969284057617],[120,75,76,6.237795829772949],[120,75,77,6.239090442657471],[120,75,78,6.236435413360596],[120,75,79,6.228061199188232],[120,76,64,6.115761756896973],[120,76,65,6.119561195373535],[120,76,66,6.118229866027832],[120,76,67,6.1136064529418945],[120,76,68,6.109954357147217],[120,76,69,6.112156391143799],[120,76,70,6.122154235839844],[120,76,71,6.140125274658203],[120,76,72,6.169338226318359],[120,76,73,6.201080322265625],[120,76,74,6.222208023071289],[120,76,75,6.232969284057617],[120,76,76,6.237795829772949],[120,76,77,6.239090442657471],[120,76,78,6.236435413360596],[120,76,79,6.228061199188232],[120,77,64,6.115761756896973],[120,77,65,6.119561195373535],[120,77,66,6.118229866027832],[120,77,67,6.1136064529418945],[120,77,68,6.109954357147217],[120,77,69,6.112156391143799],[120,77,70,6.122154235839844],[120,77,71,6.140125274658203],[120,77,72,6.169338226318359],[120,77,73,6.201080322265625],[120,77,74,6.222208023071289],[120,77,75,6.232969284057617],[120,77,76,6.237795829772949],[120,77,77,6.239090442657471],[120,77,78,6.236435413360596],[120,77,79,6.228061199188232],[120,78,64,6.115761756896973],[120,78,65,6.119561195373535],[120,78,66,6.118229866027832],[120,78,67,6.1136064529418945],[120,78,68,6.109954357147217],[120,78,69,6.112156391143799],[120,78,70,6.122154235839844],[120,78,71,6.140125274658203],[120,78,72,6.169338226318359],[120,78,73,6.201080322265625],[120,78,74,6.222208023071289],[120,78,75,6.232969284057617],[120,78,76,6.237795829772949],[120,78,77,6.239090442657471],[120,78,78,6.236435413360596],[120,78,79,6.228061199188232],[120,79,64,6.115761756896973],[120,79,65,6.119561195373535],[120,79,66,6.118229866027832],[120,79,67,6.1136064529418945],[120,79,68,6.109954357147217],[120,79,69,6.112156391143799],[120,79,70,6.122154235839844],[120,79,71,6.140125274658203],[120,79,72,6.169338226318359],[120,79,73,6.201080322265625],[120,79,74,6.222208023071289],[120,79,75,6.232969284057617],[120,79,76,6.237795829772949],[120,79,77,6.239090442657471],[120,79,78,6.236435413360596],[120,79,79,6.228061199188232],[120,80,64,6.115761756896973],[120,80,65,6.119561195373535],[120,80,66,6.118229866027832],[120,80,67,6.1136064529418945],[120,80,68,6.109954357147217],[120,80,69,6.112156391143799],[120,80,70,6.122154235839844],[120,80,71,6.140125274658203],[120,80,72,6.169338226318359],[120,80,73,6.201080322265625],[120,80,74,6.222208023071289],[120,80,75,6.232969284057617],[120,80,76,6.237795829772949],[120,80,77,6.239090442657471],[120,80,78,6.236435413360596],[120,80,79,6.228061199188232],[120,81,64,6.115761756896973],[120,81,65,6.119561195373535],[120,81,66,6.118229866027832],[120,81,67,6.1136064529418945],[120,81,68,6.109954357147217],[120,81,69,6.112156391143799],[120,81,70,6.122154235839844],[120,81,71,6.140125274658203],[120,81,72,6.169338226318359],[120,81,73,6.201080322265625],[120,81,74,6.222208023071289],[120,81,75,6.232969284057617],[120,81,76,6.237795829772949],[120,81,77,6.239090442657471],[120,81,78,6.236435413360596],[120,81,79,6.228061199188232],[120,82,64,6.115761756896973],[120,82,65,6.119561195373535],[120,82,66,6.118229866027832],[120,82,67,6.1136064529418945],[120,82,68,6.109954357147217],[120,82,69,6.112156391143799],[120,82,70,6.122154235839844],[120,82,71,6.140125274658203],[120,82,72,6.169338226318359],[120,82,73,6.201080322265625],[120,82,74,6.222208023071289],[120,82,75,6.232969284057617],[120,82,76,6.237795829772949],[120,82,77,6.239090442657471],[120,82,78,6.236435413360596],[120,82,79,6.228061199188232],[120,83,64,6.115761756896973],[120,83,65,6.119561195373535],[120,83,66,6.118229866027832],[120,83,67,6.1136064529418945],[120,83,68,6.109954357147217],[120,83,69,6.112156391143799],[120,83,70,6.122154235839844],[120,83,71,6.140125274658203],[120,83,72,6.169338226318359],[120,83,73,6.201080322265625],[120,83,74,6.222208023071289],[120,83,75,6.232969284057617],[120,83,76,6.237795829772949],[120,83,77,6.239090442657471],[120,83,78,6.236435413360596],[120,83,79,6.228061199188232],[120,84,64,6.115761756896973],[120,84,65,6.119561195373535],[120,84,66,6.118229866027832],[120,84,67,6.1136064529418945],[120,84,68,6.109954357147217],[120,84,69,6.112156391143799],[120,84,70,6.122154235839844],[120,84,71,6.140125274658203],[120,84,72,6.169338226318359],[120,84,73,6.201080322265625],[120,84,74,6.222208023071289],[120,84,75,6.232969284057617],[120,84,76,6.237795829772949],[120,84,77,6.239090442657471],[120,84,78,6.236435413360596],[120,84,79,6.228061199188232],[120,85,64,6.115761756896973],[120,85,65,6.119561195373535],[120,85,66,6.118229866027832],[120,85,67,6.1136064529418945],[120,85,68,6.109954357147217],[120,85,69,6.112156391143799],[120,85,70,6.122154235839844],[120,85,71,6.140125274658203],[120,85,72,6.169338226318359],[120,85,73,6.201080322265625],[120,85,74,6.222208023071289],[120,85,75,6.232969284057617],[120,85,76,6.237795829772949],[120,85,77,6.239090442657471],[120,85,78,6.236435413360596],[120,85,79,6.228061199188232],[120,86,64,6.115761756896973],[120,86,65,6.119561195373535],[120,86,66,6.118229866027832],[120,86,67,6.1136064529418945],[120,86,68,6.109954357147217],[120,86,69,6.112156391143799],[120,86,70,6.122154235839844],[120,86,71,6.140125274658203],[120,86,72,6.169338226318359],[120,86,73,6.201080322265625],[120,86,74,6.222208023071289],[120,86,75,6.232969284057617],[120,86,76,6.237795829772949],[120,86,77,6.239090442657471],[120,86,78,6.236435413360596],[120,86,79,6.228061199188232],[120,87,64,6.115761756896973],[120,87,65,6.119561195373535],[120,87,66,6.118229866027832],[120,87,67,6.1136064529418945],[120,87,68,6.109954357147217],[120,87,69,6.112156391143799],[120,87,70,6.122154235839844],[120,87,71,6.140125274658203],[120,87,72,6.169338226318359],[120,87,73,6.201080322265625],[120,87,74,6.222208023071289],[120,87,75,6.232969284057617],[120,87,76,6.237795829772949],[120,87,77,6.239090442657471],[120,87,78,6.236435413360596],[120,87,79,6.228061199188232],[120,88,64,6.115761756896973],[120,88,65,6.119561195373535],[120,88,66,6.118229866027832],[120,88,67,6.1136064529418945],[120,88,68,6.109954357147217],[120,88,69,6.112156391143799],[120,88,70,6.122154235839844],[120,88,71,6.140125274658203],[120,88,72,6.169338226318359],[120,88,73,6.201080322265625],[120,88,74,6.222208023071289],[120,88,75,6.232969284057617],[120,88,76,6.237795829772949],[120,88,77,6.239090442657471],[120,88,78,6.236435413360596],[120,88,79,6.228061199188232],[120,89,64,6.115761756896973],[120,89,65,6.119561195373535],[120,89,66,6.118229866027832],[120,89,67,6.1136064529418945],[120,89,68,6.109954357147217],[120,89,69,6.112156391143799],[120,89,70,6.122154235839844],[120,89,71,6.140125274658203],[120,89,72,6.169338226318359],[120,89,73,6.201080322265625],[120,89,74,6.222208023071289],[120,89,75,6.232969284057617],[120,89,76,6.237795829772949],[120,89,77,6.239090442657471],[120,89,78,6.236435413360596],[120,89,79,6.228061199188232],[120,90,64,6.115761756896973],[120,90,65,6.119561195373535],[120,90,66,6.118229866027832],[120,90,67,6.1136064529418945],[120,90,68,6.109954357147217],[120,90,69,6.112156391143799],[120,90,70,6.122154235839844],[120,90,71,6.140125274658203],[120,90,72,6.169338226318359],[120,90,73,6.201080322265625],[120,90,74,6.222208023071289],[120,90,75,6.232969284057617],[120,90,76,6.237795829772949],[120,90,77,6.239090442657471],[120,90,78,6.236435413360596],[120,90,79,6.228061199188232],[120,91,64,6.115761756896973],[120,91,65,6.119561195373535],[120,91,66,6.118229866027832],[120,91,67,6.1136064529418945],[120,91,68,6.109954357147217],[120,91,69,6.112156391143799],[120,91,70,6.122154235839844],[120,91,71,6.140125274658203],[120,91,72,6.169338226318359],[120,91,73,6.201080322265625],[120,91,74,6.222208023071289],[120,91,75,6.232969284057617],[120,91,76,6.237795829772949],[120,91,77,6.239090442657471],[120,91,78,6.236435413360596],[120,91,79,6.228061199188232],[120,92,64,6.115761756896973],[120,92,65,6.119561195373535],[120,92,66,6.118229866027832],[120,92,67,6.1136064529418945],[120,92,68,6.109954357147217],[120,92,69,6.112156391143799],[120,92,70,6.122154235839844],[120,92,71,6.140125274658203],[120,92,72,6.169338226318359],[120,92,73,6.201080322265625],[120,92,74,6.222208023071289],[120,92,75,6.232969284057617],[120,92,76,6.237795829772949],[120,92,77,6.239090442657471],[120,92,78,6.236435413360596],[120,92,79,6.228061199188232],[120,93,64,6.115761756896973],[120,93,65,6.119561195373535],[120,93,66,6.118229866027832],[120,93,67,6.1136064529418945],[120,93,68,6.109954357147217],[120,93,69,6.112156391143799],[120,93,70,6.122154235839844],[120,93,71,6.140125274658203],[120,93,72,6.169338226318359],[120,93,73,6.201080322265625],[120,93,74,6.222208023071289],[120,93,75,6.232969284057617],[120,93,76,6.237795829772949],[120,93,77,6.239090442657471],[120,93,78,6.236435413360596],[120,93,79,6.228061199188232],[120,94,64,6.115761756896973],[120,94,65,6.119561195373535],[120,94,66,6.118229866027832],[120,94,67,6.1136064529418945],[120,94,68,6.109954357147217],[120,94,69,6.112156391143799],[120,94,70,6.122154235839844],[120,94,71,6.140125274658203],[120,94,72,6.169338226318359],[120,94,73,6.201080322265625],[120,94,74,6.222208023071289],[120,94,75,6.232969284057617],[120,94,76,6.237795829772949],[120,94,77,6.239090442657471],[120,94,78,6.236435413360596],[120,94,79,6.228061199188232],[120,95,64,6.115761756896973],[120,95,65,6.119561195373535],[120,95,66,6.118229866027832],[120,95,67,6.1136064529418945],[120,95,68,6.109954357147217],[120,95,69,6.112156391143799],[120,95,70,6.122154235839844],[120,95,71,6.140125274658203],[120,95,72,6.169338226318359],[120,95,73,6.201080322265625],[120,95,74,6.222208023071289],[120,95,75,6.232969284057617],[120,95,76,6.237795829772949],[120,95,77,6.239090442657471],[120,95,78,6.236435413360596],[120,95,79,6.228061199188232],[120,96,64,6.115761756896973],[120,96,65,6.119561195373535],[120,96,66,6.118229866027832],[120,96,67,6.1136064529418945],[120,96,68,6.109954357147217],[120,96,69,6.112156391143799],[120,96,70,6.122154235839844],[120,96,71,6.140125274658203],[120,96,72,6.169338226318359],[120,96,73,6.201080322265625],[120,96,74,6.222208023071289],[120,96,75,6.232969284057617],[120,96,76,6.237795829772949],[120,96,77,6.239090442657471],[120,96,78,6.236435413360596],[120,96,79,6.228061199188232],[120,97,64,6.115761756896973],[120,97,65,6.119561195373535],[120,97,66,6.118229866027832],[120,97,67,6.1136064529418945],[120,97,68,6.109954357147217],[120,97,69,6.112156391143799],[120,97,70,6.122154235839844],[120,97,71,6.140125274658203],[120,97,72,6.169338226318359],[120,97,73,6.201080322265625],[120,97,74,6.222208023071289],[120,97,75,6.232969284057617],[120,97,76,6.237795829772949],[120,97,77,6.239090442657471],[120,97,78,6.236435413360596],[120,97,79,6.228061199188232],[120,98,64,6.115761756896973],[120,98,65,6.119561195373535],[120,98,66,6.118229866027832],[120,98,67,6.1136064529418945],[120,98,68,6.109954357147217],[120,98,69,6.112156391143799],[120,98,70,6.122154235839844],[120,98,71,6.140125274658203],[120,98,72,6.169338226318359],[120,98,73,6.201080322265625],[120,98,74,6.222208023071289],[120,98,75,6.232969284057617],[120,98,76,6.237795829772949],[120,98,77,6.239090442657471],[120,98,78,6.236435413360596],[120,98,79,6.228061199188232],[120,99,64,6.115761756896973],[120,99,65,6.119561195373535],[120,99,66,6.118229866027832],[120,99,67,6.1136064529418945],[120,99,68,6.109954357147217],[120,99,69,6.112156391143799],[120,99,70,6.122154235839844],[120,99,71,6.140125274658203],[120,99,72,6.169338226318359],[120,99,73,6.201080322265625],[120,99,74,6.222208023071289],[120,99,75,6.232969284057617],[120,99,76,6.237795829772949],[120,99,77,6.239090442657471],[120,99,78,6.236435413360596],[120,99,79,6.228061199188232],[120,100,64,6.115761756896973],[120,100,65,6.119561195373535],[120,100,66,6.118229866027832],[120,100,67,6.1136064529418945],[120,100,68,6.109954357147217],[120,100,69,6.112156391143799],[120,100,70,6.122154235839844],[120,100,71,6.140125274658203],[120,100,72,6.169338226318359],[120,100,73,6.201080322265625],[120,100,74,6.222208023071289],[120,100,75,6.232969284057617],[120,100,76,6.237795829772949],[120,100,77,6.239090442657471],[120,100,78,6.236435413360596],[120,100,79,6.228061199188232],[120,101,64,6.115761756896973],[120,101,65,6.119561195373535],[120,101,66,6.118229866027832],[120,101,67,6.1136064529418945],[120,101,68,6.109954357147217],[120,101,69,6.112156391143799],[120,101,70,6.122154235839844],[120,101,71,6.140125274658203],[120,101,72,6.169338226318359],[120,101,73,6.201080322265625],[120,101,74,6.222208023071289],[120,101,75,6.232969284057617],[120,101,76,6.237795829772949],[120,101,77,6.239090442657471],[120,101,78,6.236435413360596],[120,101,79,6.228061199188232],[120,102,64,6.115761756896973],[120,102,65,6.119561195373535],[120,102,66,6.118229866027832],[120,102,67,6.1136064529418945],[120,102,68,6.109954357147217],[120,102,69,6.112156391143799],[120,102,70,6.122154235839844],[120,102,71,6.140125274658203],[120,102,72,6.169338226318359],[120,102,73,6.201080322265625],[120,102,74,6.222208023071289],[120,102,75,6.232969284057617],[120,102,76,6.237795829772949],[120,102,77,6.239090442657471],[120,102,78,6.236435413360596],[120,102,79,6.228061199188232],[120,103,64,6.115761756896973],[120,103,65,6.119561195373535],[120,103,66,6.118229866027832],[120,103,67,6.1136064529418945],[120,103,68,6.109954357147217],[120,103,69,6.112156391143799],[120,103,70,6.122154235839844],[120,103,71,6.140125274658203],[120,103,72,6.169338226318359],[120,103,73,6.201080322265625],[120,103,74,6.222208023071289],[120,103,75,6.232969284057617],[120,103,76,6.237795829772949],[120,103,77,6.239090442657471],[120,103,78,6.236435413360596],[120,103,79,6.228061199188232],[120,104,64,6.115761756896973],[120,104,65,6.119561195373535],[120,104,66,6.118229866027832],[120,104,67,6.1136064529418945],[120,104,68,6.109954357147217],[120,104,69,6.112156391143799],[120,104,70,6.122154235839844],[120,104,71,6.140125274658203],[120,104,72,6.169338226318359],[120,104,73,6.201080322265625],[120,104,74,6.222208023071289],[120,104,75,6.232969284057617],[120,104,76,6.237795829772949],[120,104,77,6.239090442657471],[120,104,78,6.236435413360596],[120,104,79,6.228061199188232],[120,105,64,6.115761756896973],[120,105,65,6.119561195373535],[120,105,66,6.118229866027832],[120,105,67,6.1136064529418945],[120,105,68,6.109954357147217],[120,105,69,6.112156391143799],[120,105,70,6.122154235839844],[120,105,71,6.140125274658203],[120,105,72,6.169338226318359],[120,105,73,6.201080322265625],[120,105,74,6.222208023071289],[120,105,75,6.232969284057617],[120,105,76,6.237795829772949],[120,105,77,6.239090442657471],[120,105,78,6.236435413360596],[120,105,79,6.228061199188232],[120,106,64,6.115761756896973],[120,106,65,6.119561195373535],[120,106,66,6.118229866027832],[120,106,67,6.1136064529418945],[120,106,68,6.109954357147217],[120,106,69,6.112156391143799],[120,106,70,6.122154235839844],[120,106,71,6.140125274658203],[120,106,72,6.169338226318359],[120,106,73,6.201080322265625],[120,106,74,6.222208023071289],[120,106,75,6.232969284057617],[120,106,76,6.237795829772949],[120,106,77,6.239090442657471],[120,106,78,6.236435413360596],[120,106,79,6.228061199188232],[120,107,64,6.115761756896973],[120,107,65,6.119561195373535],[120,107,66,6.118229866027832],[120,107,67,6.1136064529418945],[120,107,68,6.109954357147217],[120,107,69,6.112156391143799],[120,107,70,6.122154235839844],[120,107,71,6.140125274658203],[120,107,72,6.169338226318359],[120,107,73,6.201080322265625],[120,107,74,6.222208023071289],[120,107,75,6.232969284057617],[120,107,76,6.237795829772949],[120,107,77,6.239090442657471],[120,107,78,6.236435413360596],[120,107,79,6.228061199188232],[120,108,64,6.115761756896973],[120,108,65,6.119561195373535],[120,108,66,6.118229866027832],[120,108,67,6.1136064529418945],[120,108,68,6.109954357147217],[120,108,69,6.112156391143799],[120,108,70,6.122154235839844],[120,108,71,6.140125274658203],[120,108,72,6.169338226318359],[120,108,73,6.201080322265625],[120,108,74,6.222208023071289],[120,108,75,6.232969284057617],[120,108,76,6.237795829772949],[120,108,77,6.239090442657471],[120,108,78,6.236435413360596],[120,108,79,6.228061199188232],[120,109,64,6.115761756896973],[120,109,65,6.119561195373535],[120,109,66,6.118229866027832],[120,109,67,6.1136064529418945],[120,109,68,6.109954357147217],[120,109,69,6.112156391143799],[120,109,70,6.122154235839844],[120,109,71,6.140125274658203],[120,109,72,6.169338226318359],[120,109,73,6.201080322265625],[120,109,74,6.222208023071289],[120,109,75,6.232969284057617],[120,109,76,6.237795829772949],[120,109,77,6.239090442657471],[120,109,78,6.236435413360596],[120,109,79,6.228061199188232],[120,110,64,6.115761756896973],[120,110,65,6.119561195373535],[120,110,66,6.118229866027832],[120,110,67,6.1136064529418945],[120,110,68,6.109954357147217],[120,110,69,6.112156391143799],[120,110,70,6.122154235839844],[120,110,71,6.140125274658203],[120,110,72,6.169338226318359],[120,110,73,6.201080322265625],[120,110,74,6.222208023071289],[120,110,75,6.232969284057617],[120,110,76,6.237795829772949],[120,110,77,6.239090442657471],[120,110,78,6.236435413360596],[120,110,79,6.228061199188232],[120,111,64,6.115761756896973],[120,111,65,6.119561195373535],[120,111,66,6.118229866027832],[120,111,67,6.1136064529418945],[120,111,68,6.109954357147217],[120,111,69,6.112156391143799],[120,111,70,6.122154235839844],[120,111,71,6.140125274658203],[120,111,72,6.169338226318359],[120,111,73,6.201080322265625],[120,111,74,6.222208023071289],[120,111,75,6.232969284057617],[120,111,76,6.237795829772949],[120,111,77,6.239090442657471],[120,111,78,6.236435413360596],[120,111,79,6.228061199188232],[120,112,64,6.115761756896973],[120,112,65,6.119561195373535],[120,112,66,6.118229866027832],[120,112,67,6.1136064529418945],[120,112,68,6.109954357147217],[120,112,69,6.112156391143799],[120,112,70,6.122154235839844],[120,112,71,6.140125274658203],[120,112,72,6.169338226318359],[120,112,73,6.201080322265625],[120,112,74,6.222208023071289],[120,112,75,6.232969284057617],[120,112,76,6.237795829772949],[120,112,77,6.239090442657471],[120,112,78,6.236435413360596],[120,112,79,6.228061199188232],[120,113,64,6.115761756896973],[120,113,65,6.119561195373535],[120,113,66,6.118229866027832],[120,113,67,6.1136064529418945],[120,113,68,6.109954357147217],[120,113,69,6.112156391143799],[120,113,70,6.122154235839844],[120,113,71,6.140125274658203],[120,113,72,6.169338226318359],[120,113,73,6.201080322265625],[120,113,74,6.222208023071289],[120,113,75,6.232969284057617],[120,113,76,6.237795829772949],[120,113,77,6.239090442657471],[120,113,78,6.236435413360596],[120,113,79,6.228061199188232],[120,114,64,6.115761756896973],[120,114,65,6.119561195373535],[120,114,66,6.118229866027832],[120,114,67,6.1136064529418945],[120,114,68,6.109954357147217],[120,114,69,6.112156391143799],[120,114,70,6.122154235839844],[120,114,71,6.140125274658203],[120,114,72,6.169338226318359],[120,114,73,6.201080322265625],[120,114,74,6.222208023071289],[120,114,75,6.232969284057617],[120,114,76,6.237795829772949],[120,114,77,6.239090442657471],[120,114,78,6.236435413360596],[120,114,79,6.228061199188232],[120,115,64,6.115761756896973],[120,115,65,6.119561195373535],[120,115,66,6.118229866027832],[120,115,67,6.1136064529418945],[120,115,68,6.109954357147217],[120,115,69,6.112156391143799],[120,115,70,6.122154235839844],[120,115,71,6.140125274658203],[120,115,72,6.169338226318359],[120,115,73,6.201080322265625],[120,115,74,6.222208023071289],[120,115,75,6.232969284057617],[120,115,76,6.237795829772949],[120,115,77,6.239090442657471],[120,115,78,6.236435413360596],[120,115,79,6.228061199188232],[120,116,64,6.115761756896973],[120,116,65,6.119561195373535],[120,116,66,6.118229866027832],[120,116,67,6.1136064529418945],[120,116,68,6.109954357147217],[120,116,69,6.112156391143799],[120,116,70,6.122154235839844],[120,116,71,6.140125274658203],[120,116,72,6.169338226318359],[120,116,73,6.201080322265625],[120,116,74,6.222208023071289],[120,116,75,6.232969284057617],[120,116,76,6.237795829772949],[120,116,77,6.239090442657471],[120,116,78,6.236435413360596],[120,116,79,6.228061199188232],[120,117,64,6.115761756896973],[120,117,65,6.119561195373535],[120,117,66,6.118229866027832],[120,117,67,6.1136064529418945],[120,117,68,6.109954357147217],[120,117,69,6.112156391143799],[120,117,70,6.122154235839844],[120,117,71,6.140125274658203],[120,117,72,6.169338226318359],[120,117,73,6.201080322265625],[120,117,74,6.222208023071289],[120,117,75,6.232969284057617],[120,117,76,6.237795829772949],[120,117,77,6.239090442657471],[120,117,78,6.236435413360596],[120,117,79,6.228061199188232],[120,118,64,6.115761756896973],[120,118,65,6.119561195373535],[120,118,66,6.118229866027832],[120,118,67,6.1136064529418945],[120,118,68,6.109954357147217],[120,118,69,6.112156391143799],[120,118,70,6.122154235839844],[120,118,71,6.140125274658203],[120,118,72,6.169338226318359],[120,118,73,6.201080322265625],[120,118,74,6.222208023071289],[120,118,75,6.232969284057617],[120,118,76,6.237795829772949],[120,118,77,6.239090442657471],[120,118,78,6.236435413360596],[120,118,79,6.228061199188232],[120,119,64,6.115761756896973],[120,119,65,6.119561195373535],[120,119,66,6.118229866027832],[120,119,67,6.1136064529418945],[120,119,68,6.109954357147217],[120,119,69,6.112156391143799],[120,119,70,6.122154235839844],[120,119,71,6.140125274658203],[120,119,72,6.169338226318359],[120,119,73,6.201080322265625],[120,119,74,6.222208023071289],[120,119,75,6.232969284057617],[120,119,76,6.237795829772949],[120,119,77,6.239090442657471],[120,119,78,6.236435413360596],[120,119,79,6.228061199188232],[120,120,64,6.115761756896973],[120,120,65,6.119561195373535],[120,120,66,6.118229866027832],[120,120,67,6.1136064529418945],[120,120,68,6.109954357147217],[120,120,69,6.112156391143799],[120,120,70,6.122154235839844],[120,120,71,6.140125274658203],[120,120,72,6.169338226318359],[120,120,73,6.201080322265625],[120,120,74,6.222208023071289],[120,120,75,6.232969284057617],[120,120,76,6.237795829772949],[120,120,77,6.239090442657471],[120,120,78,6.236435413360596],[120,120,79,6.228061199188232],[120,121,64,6.115761756896973],[120,121,65,6.119561195373535],[120,121,66,6.118229866027832],[120,121,67,6.1136064529418945],[120,121,68,6.109954357147217],[120,121,69,6.112156391143799],[120,121,70,6.122154235839844],[120,121,71,6.140125274658203],[120,121,72,6.169338226318359],[120,121,73,6.201080322265625],[120,121,74,6.222208023071289],[120,121,75,6.232969284057617],[120,121,76,6.237795829772949],[120,121,77,6.239090442657471],[120,121,78,6.236435413360596],[120,121,79,6.228061199188232],[120,122,64,6.115761756896973],[120,122,65,6.119561195373535],[120,122,66,6.118229866027832],[120,122,67,6.1136064529418945],[120,122,68,6.109954357147217],[120,122,69,6.112156391143799],[120,122,70,6.122154235839844],[120,122,71,6.140125274658203],[120,122,72,6.169338226318359],[120,122,73,6.201080322265625],[120,122,74,6.222208023071289],[120,122,75,6.232969284057617],[120,122,76,6.237795829772949],[120,122,77,6.239090442657471],[120,122,78,6.236435413360596],[120,122,79,6.228061199188232],[120,123,64,6.115761756896973],[120,123,65,6.119561195373535],[120,123,66,6.118229866027832],[120,123,67,6.1136064529418945],[120,123,68,6.109954357147217],[120,123,69,6.112156391143799],[120,123,70,6.122154235839844],[120,123,71,6.140125274658203],[120,123,72,6.169338226318359],[120,123,73,6.201080322265625],[120,123,74,6.222208023071289],[120,123,75,6.232969284057617],[120,123,76,6.237795829772949],[120,123,77,6.239090442657471],[120,123,78,6.236435413360596],[120,123,79,6.228061199188232],[120,124,64,6.115761756896973],[120,124,65,6.119561195373535],[120,124,66,6.118229866027832],[120,124,67,6.1136064529418945],[120,124,68,6.109954357147217],[120,124,69,6.112156391143799],[120,124,70,6.122154235839844],[120,124,71,6.140125274658203],[120,124,72,6.169338226318359],[120,124,73,6.201080322265625],[120,124,74,6.222208023071289],[120,124,75,6.232969284057617],[120,124,76,6.237795829772949],[120,124,77,6.239090442657471],[120,124,78,6.236435413360596],[120,124,79,6.228061199188232],[120,125,64,6.115761756896973],[120,125,65,6.119561195373535],[120,125,66,6.118229866027832],[120,125,67,6.1136064529418945],[120,125,68,6.109954357147217],[120,125,69,6.112156391143799],[120,125,70,6.122154235839844],[120,125,71,6.140125274658203],[120,125,72,6.169338226318359],[120,125,73,6.201080322265625],[120,125,74,6.222208023071289],[120,125,75,6.232969284057617],[120,125,76,6.237795829772949],[120,125,77,6.239090442657471],[120,125,78,6.236435413360596],[120,125,79,6.228061199188232],[120,126,64,6.115761756896973],[120,126,65,6.119561195373535],[120,126,66,6.118229866027832],[120,126,67,6.1136064529418945],[120,126,68,6.109954357147217],[120,126,69,6.112156391143799],[120,126,70,6.122154235839844],[120,126,71,6.140125274658203],[120,126,72,6.169338226318359],[120,126,73,6.201080322265625],[120,126,74,6.222208023071289],[120,126,75,6.232969284057617],[120,126,76,6.237795829772949],[120,126,77,6.239090442657471],[120,126,78,6.236435413360596],[120,126,79,6.228061199188232],[120,127,64,6.115761756896973],[120,127,65,6.119561195373535],[120,127,66,6.118229866027832],[120,127,67,6.1136064529418945],[120,127,68,6.109954357147217],[120,127,69,6.112156391143799],[120,127,70,6.122154235839844],[120,127,71,6.140125274658203],[120,127,72,6.169338226318359],[120,127,73,6.201080322265625],[120,127,74,6.222208023071289],[120,127,75,6.232969284057617],[120,127,76,6.237795829772949],[120,127,77,6.239090442657471],[120,127,78,6.236435413360596],[120,127,79,6.228061199188232],[120,128,64,6.115761756896973],[120,128,65,6.119561195373535],[120,128,66,6.118229866027832],[120,128,67,6.1136064529418945],[120,128,68,6.109954357147217],[120,128,69,6.112156391143799],[120,128,70,6.122154235839844],[120,128,71,6.140125274658203],[120,128,72,6.169338226318359],[120,128,73,6.201080322265625],[120,128,74,6.222208023071289],[120,128,75,6.232969284057617],[120,128,76,6.237795829772949],[120,128,77,6.239090442657471],[120,128,78,6.236435413360596],[120,128,79,6.228061199188232],[120,129,64,6.115761756896973],[120,129,65,6.119561195373535],[120,129,66,6.118229866027832],[120,129,67,6.1136064529418945],[120,129,68,6.109954357147217],[120,129,69,6.112156391143799],[120,129,70,6.122154235839844],[120,129,71,6.140125274658203],[120,129,72,6.169338226318359],[120,129,73,6.201080322265625],[120,129,74,6.222208023071289],[120,129,75,6.232969284057617],[120,129,76,6.237795829772949],[120,129,77,6.239090442657471],[120,129,78,6.236435413360596],[120,129,79,6.228061199188232],[120,130,64,6.115761756896973],[120,130,65,6.119561195373535],[120,130,66,6.118229866027832],[120,130,67,6.1136064529418945],[120,130,68,6.109954357147217],[120,130,69,6.112156391143799],[120,130,70,6.122154235839844],[120,130,71,6.140125274658203],[120,130,72,6.169338226318359],[120,130,73,6.201080322265625],[120,130,74,6.222208023071289],[120,130,75,6.232969284057617],[120,130,76,6.237795829772949],[120,130,77,6.239090442657471],[120,130,78,6.236435413360596],[120,130,79,6.228061199188232],[120,131,64,6.115761756896973],[120,131,65,6.119561195373535],[120,131,66,6.118229866027832],[120,131,67,6.1136064529418945],[120,131,68,6.109954357147217],[120,131,69,6.112156391143799],[120,131,70,6.122154235839844],[120,131,71,6.140125274658203],[120,131,72,6.169338226318359],[120,131,73,6.201080322265625],[120,131,74,6.222208023071289],[120,131,75,6.232969284057617],[120,131,76,6.237795829772949],[120,131,77,6.239090442657471],[120,131,78,6.236435413360596],[120,131,79,6.228061199188232],[120,132,64,6.115761756896973],[120,132,65,6.119561195373535],[120,132,66,6.118229866027832],[120,132,67,6.1136064529418945],[120,132,68,6.109954357147217],[120,132,69,6.112156391143799],[120,132,70,6.122154235839844],[120,132,71,6.140125274658203],[120,132,72,6.169338226318359],[120,132,73,6.201080322265625],[120,132,74,6.222208023071289],[120,132,75,6.232969284057617],[120,132,76,6.237795829772949],[120,132,77,6.239090442657471],[120,132,78,6.236435413360596],[120,132,79,6.228061199188232],[120,133,64,6.115761756896973],[120,133,65,6.119561195373535],[120,133,66,6.118229866027832],[120,133,67,6.1136064529418945],[120,133,68,6.109954357147217],[120,133,69,6.112156391143799],[120,133,70,6.122154235839844],[120,133,71,6.140125274658203],[120,133,72,6.169338226318359],[120,133,73,6.201080322265625],[120,133,74,6.222208023071289],[120,133,75,6.232969284057617],[120,133,76,6.237795829772949],[120,133,77,6.239090442657471],[120,133,78,6.236435413360596],[120,133,79,6.228061199188232],[120,134,64,6.115761756896973],[120,134,65,6.119561195373535],[120,134,66,6.118229866027832],[120,134,67,6.1136064529418945],[120,134,68,6.109954357147217],[120,134,69,6.112156391143799],[120,134,70,6.122154235839844],[120,134,71,6.140125274658203],[120,134,72,6.169338226318359],[120,134,73,6.201080322265625],[120,134,74,6.222208023071289],[120,134,75,6.232969284057617],[120,134,76,6.237795829772949],[120,134,77,6.239090442657471],[120,134,78,6.236435413360596],[120,134,79,6.228061199188232],[120,135,64,6.115761756896973],[120,135,65,6.119561195373535],[120,135,66,6.118229866027832],[120,135,67,6.1136064529418945],[120,135,68,6.109954357147217],[120,135,69,6.112156391143799],[120,135,70,6.122154235839844],[120,135,71,6.140125274658203],[120,135,72,6.169338226318359],[120,135,73,6.201080322265625],[120,135,74,6.222208023071289],[120,135,75,6.232969284057617],[120,135,76,6.237795829772949],[120,135,77,6.239090442657471],[120,135,78,6.236435413360596],[120,135,79,6.228061199188232],[120,136,64,6.115761756896973],[120,136,65,6.119561195373535],[120,136,66,6.118229866027832],[120,136,67,6.1136064529418945],[120,136,68,6.109954357147217],[120,136,69,6.112156391143799],[120,136,70,6.122154235839844],[120,136,71,6.140125274658203],[120,136,72,6.169338226318359],[120,136,73,6.201080322265625],[120,136,74,6.222208023071289],[120,136,75,6.232969284057617],[120,136,76,6.237795829772949],[120,136,77,6.239090442657471],[120,136,78,6.236435413360596],[120,136,79,6.228061199188232],[120,137,64,6.115761756896973],[120,137,65,6.119561195373535],[120,137,66,6.118229866027832],[120,137,67,6.1136064529418945],[120,137,68,6.109954357147217],[120,137,69,6.112156391143799],[120,137,70,6.122154235839844],[120,137,71,6.140125274658203],[120,137,72,6.169338226318359],[120,137,73,6.201080322265625],[120,137,74,6.222208023071289],[120,137,75,6.232969284057617],[120,137,76,6.237795829772949],[120,137,77,6.239090442657471],[120,137,78,6.236435413360596],[120,137,79,6.228061199188232],[120,138,64,6.115761756896973],[120,138,65,6.119561195373535],[120,138,66,6.118229866027832],[120,138,67,6.1136064529418945],[120,138,68,6.109954357147217],[120,138,69,6.112156391143799],[120,138,70,6.122154235839844],[120,138,71,6.140125274658203],[120,138,72,6.169338226318359],[120,138,73,6.201080322265625],[120,138,74,6.222208023071289],[120,138,75,6.232969284057617],[120,138,76,6.237795829772949],[120,138,77,6.239090442657471],[120,138,78,6.236435413360596],[120,138,79,6.228061199188232],[120,139,64,6.115761756896973],[120,139,65,6.119561195373535],[120,139,66,6.118229866027832],[120,139,67,6.1136064529418945],[120,139,68,6.109954357147217],[120,139,69,6.112156391143799],[120,139,70,6.122154235839844],[120,139,71,6.140125274658203],[120,139,72,6.169338226318359],[120,139,73,6.201080322265625],[120,139,74,6.222208023071289],[120,139,75,6.232969284057617],[120,139,76,6.237795829772949],[120,139,77,6.239090442657471],[120,139,78,6.236435413360596],[120,139,79,6.228061199188232],[120,140,64,6.115761756896973],[120,140,65,6.119561195373535],[120,140,66,6.118229866027832],[120,140,67,6.1136064529418945],[120,140,68,6.109954357147217],[120,140,69,6.112156391143799],[120,140,70,6.122154235839844],[120,140,71,6.140125274658203],[120,140,72,6.169338226318359],[120,140,73,6.201080322265625],[120,140,74,6.222208023071289],[120,140,75,6.232969284057617],[120,140,76,6.237795829772949],[120,140,77,6.239090442657471],[120,140,78,6.236435413360596],[120,140,79,6.228061199188232],[120,141,64,6.115761756896973],[120,141,65,6.119561195373535],[120,141,66,6.118229866027832],[120,141,67,6.1136064529418945],[120,141,68,6.109954357147217],[120,141,69,6.112156391143799],[120,141,70,6.122154235839844],[120,141,71,6.140125274658203],[120,141,72,6.169338226318359],[120,141,73,6.201080322265625],[120,141,74,6.222208023071289],[120,141,75,6.232969284057617],[120,141,76,6.237795829772949],[120,141,77,6.239090442657471],[120,141,78,6.236435413360596],[120,141,79,6.228061199188232],[120,142,64,6.115761756896973],[120,142,65,6.119561195373535],[120,142,66,6.118229866027832],[120,142,67,6.1136064529418945],[120,142,68,6.109954357147217],[120,142,69,6.112156391143799],[120,142,70,6.122154235839844],[120,142,71,6.140125274658203],[120,142,72,6.169338226318359],[120,142,73,6.201080322265625],[120,142,74,6.222208023071289],[120,142,75,6.232969284057617],[120,142,76,6.237795829772949],[120,142,77,6.239090442657471],[120,142,78,6.236435413360596],[120,142,79,6.228061199188232],[120,143,64,6.115761756896973],[120,143,65,6.119561195373535],[120,143,66,6.118229866027832],[120,143,67,6.1136064529418945],[120,143,68,6.109954357147217],[120,143,69,6.112156391143799],[120,143,70,6.122154235839844],[120,143,71,6.140125274658203],[120,143,72,6.169338226318359],[120,143,73,6.201080322265625],[120,143,74,6.222208023071289],[120,143,75,6.232969284057617],[120,143,76,6.237795829772949],[120,143,77,6.239090442657471],[120,143,78,6.236435413360596],[120,143,79,6.228061199188232],[120,144,64,6.115761756896973],[120,144,65,6.119561195373535],[120,144,66,6.118229866027832],[120,144,67,6.1136064529418945],[120,144,68,6.109954357147217],[120,144,69,6.112156391143799],[120,144,70,6.122154235839844],[120,144,71,6.140125274658203],[120,144,72,6.169338226318359],[120,144,73,6.201080322265625],[120,144,74,6.222208023071289],[120,144,75,6.232969284057617],[120,144,76,6.237795829772949],[120,144,77,6.239090442657471],[120,144,78,6.236435413360596],[120,144,79,6.228061199188232],[120,145,64,6.115761756896973],[120,145,65,6.119561195373535],[120,145,66,6.118229866027832],[120,145,67,6.1136064529418945],[120,145,68,6.109954357147217],[120,145,69,6.112156391143799],[120,145,70,6.122154235839844],[120,145,71,6.140125274658203],[120,145,72,6.169338226318359],[120,145,73,6.201080322265625],[120,145,74,6.222208023071289],[120,145,75,6.232969284057617],[120,145,76,6.237795829772949],[120,145,77,6.239090442657471],[120,145,78,6.236435413360596],[120,145,79,6.228061199188232],[120,146,64,6.115761756896973],[120,146,65,6.119561195373535],[120,146,66,6.118229866027832],[120,146,67,6.1136064529418945],[120,146,68,6.109954357147217],[120,146,69,6.112156391143799],[120,146,70,6.122154235839844],[120,146,71,6.140125274658203],[120,146,72,6.169338226318359],[120,146,73,6.201080322265625],[120,146,74,6.222208023071289],[120,146,75,6.232969284057617],[120,146,76,6.237795829772949],[120,146,77,6.239090442657471],[120,146,78,6.236435413360596],[120,146,79,6.228061199188232],[120,147,64,6.115761756896973],[120,147,65,6.119561195373535],[120,147,66,6.118229866027832],[120,147,67,6.1136064529418945],[120,147,68,6.109954357147217],[120,147,69,6.112156391143799],[120,147,70,6.122154235839844],[120,147,71,6.140125274658203],[120,147,72,6.169338226318359],[120,147,73,6.201080322265625],[120,147,74,6.222208023071289],[120,147,75,6.232969284057617],[120,147,76,6.237795829772949],[120,147,77,6.239090442657471],[120,147,78,6.236435413360596],[120,147,79,6.228061199188232],[120,148,64,6.115761756896973],[120,148,65,6.119561195373535],[120,148,66,6.118229866027832],[120,148,67,6.1136064529418945],[120,148,68,6.109954357147217],[120,148,69,6.112156391143799],[120,148,70,6.122154235839844],[120,148,71,6.140125274658203],[120,148,72,6.169338226318359],[120,148,73,6.201080322265625],[120,148,74,6.222208023071289],[120,148,75,6.232969284057617],[120,148,76,6.237795829772949],[120,148,77,6.239090442657471],[120,148,78,6.236435413360596],[120,148,79,6.228061199188232],[120,149,64,6.115761756896973],[120,149,65,6.119561195373535],[120,149,66,6.118229866027832],[120,149,67,6.1136064529418945],[120,149,68,6.109954357147217],[120,149,69,6.112156391143799],[120,149,70,6.122154235839844],[120,149,71,6.140125274658203],[120,149,72,6.169338226318359],[120,149,73,6.201080322265625],[120,149,74,6.222208023071289],[120,149,75,6.232969284057617],[120,149,76,6.237795829772949],[120,149,77,6.239090442657471],[120,149,78,6.236435413360596],[120,149,79,6.228061199188232],[120,150,64,6.115761756896973],[120,150,65,6.119561195373535],[120,150,66,6.118229866027832],[120,150,67,6.1136064529418945],[120,150,68,6.109954357147217],[120,150,69,6.112156391143799],[120,150,70,6.122154235839844],[120,150,71,6.140125274658203],[120,150,72,6.169338226318359],[120,150,73,6.201080322265625],[120,150,74,6.222208023071289],[120,150,75,6.232969284057617],[120,150,76,6.237795829772949],[120,150,77,6.239090442657471],[120,150,78,6.236435413360596],[120,150,79,6.228061199188232],[120,151,64,6.115761756896973],[120,151,65,6.119561195373535],[120,151,66,6.118229866027832],[120,151,67,6.1136064529418945],[120,151,68,6.109954357147217],[120,151,69,6.112156391143799],[120,151,70,6.122154235839844],[120,151,71,6.140125274658203],[120,151,72,6.169338226318359],[120,151,73,6.201080322265625],[120,151,74,6.222208023071289],[120,151,75,6.232969284057617],[120,151,76,6.237795829772949],[120,151,77,6.239090442657471],[120,151,78,6.236435413360596],[120,151,79,6.228061199188232],[120,152,64,6.115761756896973],[120,152,65,6.119561195373535],[120,152,66,6.118229866027832],[120,152,67,6.1136064529418945],[120,152,68,6.109954357147217],[120,152,69,6.112156391143799],[120,152,70,6.122154235839844],[120,152,71,6.140125274658203],[120,152,72,6.169338226318359],[120,152,73,6.201080322265625],[120,152,74,6.222208023071289],[120,152,75,6.232969284057617],[120,152,76,6.237795829772949],[120,152,77,6.239090442657471],[120,152,78,6.236435413360596],[120,152,79,6.228061199188232],[120,153,64,6.115761756896973],[120,153,65,6.119561195373535],[120,153,66,6.118229866027832],[120,153,67,6.1136064529418945],[120,153,68,6.109954357147217],[120,153,69,6.112156391143799],[120,153,70,6.122154235839844],[120,153,71,6.140125274658203],[120,153,72,6.169338226318359],[120,153,73,6.201080322265625],[120,153,74,6.222208023071289],[120,153,75,6.232969284057617],[120,153,76,6.237795829772949],[120,153,77,6.239090442657471],[120,153,78,6.236435413360596],[120,153,79,6.228061199188232],[120,154,64,6.115761756896973],[120,154,65,6.119561195373535],[120,154,66,6.118229866027832],[120,154,67,6.1136064529418945],[120,154,68,6.109954357147217],[120,154,69,6.112156391143799],[120,154,70,6.122154235839844],[120,154,71,6.140125274658203],[120,154,72,6.169338226318359],[120,154,73,6.201080322265625],[120,154,74,6.222208023071289],[120,154,75,6.232969284057617],[120,154,76,6.237795829772949],[120,154,77,6.239090442657471],[120,154,78,6.236435413360596],[120,154,79,6.228061199188232],[120,155,64,6.115761756896973],[120,155,65,6.119561195373535],[120,155,66,6.118229866027832],[120,155,67,6.1136064529418945],[120,155,68,6.109954357147217],[120,155,69,6.112156391143799],[120,155,70,6.122154235839844],[120,155,71,6.140125274658203],[120,155,72,6.169338226318359],[120,155,73,6.201080322265625],[120,155,74,6.222208023071289],[120,155,75,6.232969284057617],[120,155,76,6.237795829772949],[120,155,77,6.239090442657471],[120,155,78,6.236435413360596],[120,155,79,6.228061199188232],[120,156,64,6.115761756896973],[120,156,65,6.119561195373535],[120,156,66,6.118229866027832],[120,156,67,6.1136064529418945],[120,156,68,6.109954357147217],[120,156,69,6.112156391143799],[120,156,70,6.122154235839844],[120,156,71,6.140125274658203],[120,156,72,6.169338226318359],[120,156,73,6.201080322265625],[120,156,74,6.222208023071289],[120,156,75,6.232969284057617],[120,156,76,6.237795829772949],[120,156,77,6.239090442657471],[120,156,78,6.236435413360596],[120,156,79,6.228061199188232],[120,157,64,6.115761756896973],[120,157,65,6.119561195373535],[120,157,66,6.118229866027832],[120,157,67,6.1136064529418945],[120,157,68,6.109954357147217],[120,157,69,6.112156391143799],[120,157,70,6.122154235839844],[120,157,71,6.140125274658203],[120,157,72,6.169338226318359],[120,157,73,6.201080322265625],[120,157,74,6.222208023071289],[120,157,75,6.232969284057617],[120,157,76,6.237795829772949],[120,157,77,6.239090442657471],[120,157,78,6.236435413360596],[120,157,79,6.228061199188232],[120,158,64,6.115761756896973],[120,158,65,6.119561195373535],[120,158,66,6.118229866027832],[120,158,67,6.1136064529418945],[120,158,68,6.109954357147217],[120,158,69,6.112156391143799],[120,158,70,6.122154235839844],[120,158,71,6.140125274658203],[120,158,72,6.169338226318359],[120,158,73,6.201080322265625],[120,158,74,6.222208023071289],[120,158,75,6.232969284057617],[120,158,76,6.237795829772949],[120,158,77,6.239090442657471],[120,158,78,6.236435413360596],[120,158,79,6.228061199188232],[120,159,64,6.115761756896973],[120,159,65,6.119561195373535],[120,159,66,6.118229866027832],[120,159,67,6.1136064529418945],[120,159,68,6.109954357147217],[120,159,69,6.112156391143799],[120,159,70,6.122154235839844],[120,159,71,6.140125274658203],[120,159,72,6.169338226318359],[120,159,73,6.201080322265625],[120,159,74,6.222208023071289],[120,159,75,6.232969284057617],[120,159,76,6.237795829772949],[120,159,77,6.239090442657471],[120,159,78,6.236435413360596],[120,159,79,6.228061199188232],[120,160,64,6.115761756896973],[120,160,65,6.119561195373535],[120,160,66,6.118229866027832],[120,160,67,6.1136064529418945],[120,160,68,6.109954357147217],[120,160,69,6.112156391143799],[120,160,70,6.122154235839844],[120,160,71,6.140125274658203],[120,160,72,6.169338226318359],[120,160,73,6.201080322265625],[120,160,74,6.222208023071289],[120,160,75,6.232969284057617],[120,160,76,6.237795829772949],[120,160,77,6.239090442657471],[120,160,78,6.236435413360596],[120,160,79,6.228061199188232],[120,161,64,6.115761756896973],[120,161,65,6.119561195373535],[120,161,66,6.118229866027832],[120,161,67,6.1136064529418945],[120,161,68,6.109954357147217],[120,161,69,6.112156391143799],[120,161,70,6.122154235839844],[120,161,71,6.140125274658203],[120,161,72,6.169338226318359],[120,161,73,6.201080322265625],[120,161,74,6.222208023071289],[120,161,75,6.232969284057617],[120,161,76,6.237795829772949],[120,161,77,6.239090442657471],[120,161,78,6.236435413360596],[120,161,79,6.228061199188232],[120,162,64,6.115761756896973],[120,162,65,6.119561195373535],[120,162,66,6.118229866027832],[120,162,67,6.1136064529418945],[120,162,68,6.109954357147217],[120,162,69,6.112156391143799],[120,162,70,6.122154235839844],[120,162,71,6.140125274658203],[120,162,72,6.169338226318359],[120,162,73,6.201080322265625],[120,162,74,6.222208023071289],[120,162,75,6.232969284057617],[120,162,76,6.237795829772949],[120,162,77,6.239090442657471],[120,162,78,6.236435413360596],[120,162,79,6.228061199188232],[120,163,64,6.115761756896973],[120,163,65,6.119561195373535],[120,163,66,6.118229866027832],[120,163,67,6.1136064529418945],[120,163,68,6.109954357147217],[120,163,69,6.112156391143799],[120,163,70,6.122154235839844],[120,163,71,6.140125274658203],[120,163,72,6.169338226318359],[120,163,73,6.201080322265625],[120,163,74,6.222208023071289],[120,163,75,6.232969284057617],[120,163,76,6.237795829772949],[120,163,77,6.239090442657471],[120,163,78,6.236435413360596],[120,163,79,6.228061199188232],[120,164,64,6.115761756896973],[120,164,65,6.119561195373535],[120,164,66,6.118229866027832],[120,164,67,6.1136064529418945],[120,164,68,6.109954357147217],[120,164,69,6.112156391143799],[120,164,70,6.122154235839844],[120,164,71,6.140125274658203],[120,164,72,6.169338226318359],[120,164,73,6.201080322265625],[120,164,74,6.222208023071289],[120,164,75,6.232969284057617],[120,164,76,6.237795829772949],[120,164,77,6.239090442657471],[120,164,78,6.236435413360596],[120,164,79,6.228061199188232],[120,165,64,6.115761756896973],[120,165,65,6.119561195373535],[120,165,66,6.118229866027832],[120,165,67,6.1136064529418945],[120,165,68,6.109954357147217],[120,165,69,6.112156391143799],[120,165,70,6.122154235839844],[120,165,71,6.140125274658203],[120,165,72,6.169338226318359],[120,165,73,6.201080322265625],[120,165,74,6.222208023071289],[120,165,75,6.232969284057617],[120,165,76,6.237795829772949],[120,165,77,6.239090442657471],[120,165,78,6.236435413360596],[120,165,79,6.228061199188232],[120,166,64,6.115761756896973],[120,166,65,6.119561195373535],[120,166,66,6.118229866027832],[120,166,67,6.1136064529418945],[120,166,68,6.109954357147217],[120,166,69,6.112156391143799],[120,166,70,6.122154235839844],[120,166,71,6.140125274658203],[120,166,72,6.169338226318359],[120,166,73,6.201080322265625],[120,166,74,6.222208023071289],[120,166,75,6.232969284057617],[120,166,76,6.237795829772949],[120,166,77,6.239090442657471],[120,166,78,6.236435413360596],[120,166,79,6.228061199188232],[120,167,64,6.115761756896973],[120,167,65,6.119561195373535],[120,167,66,6.118229866027832],[120,167,67,6.1136064529418945],[120,167,68,6.109954357147217],[120,167,69,6.112156391143799],[120,167,70,6.122154235839844],[120,167,71,6.140125274658203],[120,167,72,6.169338226318359],[120,167,73,6.201080322265625],[120,167,74,6.222208023071289],[120,167,75,6.232969284057617],[120,167,76,6.237795829772949],[120,167,77,6.239090442657471],[120,167,78,6.236435413360596],[120,167,79,6.228061199188232],[120,168,64,6.115761756896973],[120,168,65,6.119561195373535],[120,168,66,6.118229866027832],[120,168,67,6.1136064529418945],[120,168,68,6.109954357147217],[120,168,69,6.112156391143799],[120,168,70,6.122154235839844],[120,168,71,6.140125274658203],[120,168,72,6.169338226318359],[120,168,73,6.201080322265625],[120,168,74,6.222208023071289],[120,168,75,6.232969284057617],[120,168,76,6.237795829772949],[120,168,77,6.239090442657471],[120,168,78,6.236435413360596],[120,168,79,6.228061199188232],[120,169,64,6.115761756896973],[120,169,65,6.119561195373535],[120,169,66,6.118229866027832],[120,169,67,6.1136064529418945],[120,169,68,6.109954357147217],[120,169,69,6.112156391143799],[120,169,70,6.122154235839844],[120,169,71,6.140125274658203],[120,169,72,6.169338226318359],[120,169,73,6.201080322265625],[120,169,74,6.222208023071289],[120,169,75,6.232969284057617],[120,169,76,6.237795829772949],[120,169,77,6.239090442657471],[120,169,78,6.236435413360596],[120,169,79,6.228061199188232],[120,170,64,6.115761756896973],[120,170,65,6.119561195373535],[120,170,66,6.118229866027832],[120,170,67,6.1136064529418945],[120,170,68,6.109954357147217],[120,170,69,6.112156391143799],[120,170,70,6.122154235839844],[120,170,71,6.140125274658203],[120,170,72,6.169338226318359],[120,170,73,6.201080322265625],[120,170,74,6.222208023071289],[120,170,75,6.232969284057617],[120,170,76,6.237795829772949],[120,170,77,6.239090442657471],[120,170,78,6.236435413360596],[120,170,79,6.228061199188232],[120,171,64,6.115761756896973],[120,171,65,6.119561195373535],[120,171,66,6.118229866027832],[120,171,67,6.1136064529418945],[120,171,68,6.109954357147217],[120,171,69,6.112156391143799],[120,171,70,6.122154235839844],[120,171,71,6.140125274658203],[120,171,72,6.169338226318359],[120,171,73,6.201080322265625],[120,171,74,6.222208023071289],[120,171,75,6.232969284057617],[120,171,76,6.237795829772949],[120,171,77,6.239090442657471],[120,171,78,6.236435413360596],[120,171,79,6.228061199188232],[120,172,64,6.115761756896973],[120,172,65,6.119561195373535],[120,172,66,6.118229866027832],[120,172,67,6.1136064529418945],[120,172,68,6.109954357147217],[120,172,69,6.112156391143799],[120,172,70,6.122154235839844],[120,172,71,6.140125274658203],[120,172,72,6.169338226318359],[120,172,73,6.201080322265625],[120,172,74,6.222208023071289],[120,172,75,6.232969284057617],[120,172,76,6.237795829772949],[120,172,77,6.239090442657471],[120,172,78,6.236435413360596],[120,172,79,6.228061199188232],[120,173,64,6.115761756896973],[120,173,65,6.119561195373535],[120,173,66,6.118229866027832],[120,173,67,6.1136064529418945],[120,173,68,6.109954357147217],[120,173,69,6.112156391143799],[120,173,70,6.122154235839844],[120,173,71,6.140125274658203],[120,173,72,6.169338226318359],[120,173,73,6.201080322265625],[120,173,74,6.222208023071289],[120,173,75,6.232969284057617],[120,173,76,6.237795829772949],[120,173,77,6.239090442657471],[120,173,78,6.236435413360596],[120,173,79,6.228061199188232],[120,174,64,6.115761756896973],[120,174,65,6.119561195373535],[120,174,66,6.118229866027832],[120,174,67,6.1136064529418945],[120,174,68,6.109954357147217],[120,174,69,6.112156391143799],[120,174,70,6.122154235839844],[120,174,71,6.140125274658203],[120,174,72,6.169338226318359],[120,174,73,6.201080322265625],[120,174,74,6.222208023071289],[120,174,75,6.232969284057617],[120,174,76,6.237795829772949],[120,174,77,6.239090442657471],[120,174,78,6.236435413360596],[120,174,79,6.228061199188232],[120,175,64,6.115761756896973],[120,175,65,6.119561195373535],[120,175,66,6.118229866027832],[120,175,67,6.1136064529418945],[120,175,68,6.109954357147217],[120,175,69,6.112156391143799],[120,175,70,6.122154235839844],[120,175,71,6.140125274658203],[120,175,72,6.169338226318359],[120,175,73,6.201080322265625],[120,175,74,6.222208023071289],[120,175,75,6.232969284057617],[120,175,76,6.237795829772949],[120,175,77,6.239090442657471],[120,175,78,6.236435413360596],[120,175,79,6.228061199188232],[120,176,64,6.115761756896973],[120,176,65,6.119561195373535],[120,176,66,6.118229866027832],[120,176,67,6.1136064529418945],[120,176,68,6.109954357147217],[120,176,69,6.112156391143799],[120,176,70,6.122154235839844],[120,176,71,6.140125274658203],[120,176,72,6.169338226318359],[120,176,73,6.201080322265625],[120,176,74,6.222208023071289],[120,176,75,6.232969284057617],[120,176,76,6.237795829772949],[120,176,77,6.239090442657471],[120,176,78,6.236435413360596],[120,176,79,6.228061199188232],[120,177,64,6.115761756896973],[120,177,65,6.119561195373535],[120,177,66,6.118229866027832],[120,177,67,6.1136064529418945],[120,177,68,6.109954357147217],[120,177,69,6.112156391143799],[120,177,70,6.122154235839844],[120,177,71,6.140125274658203],[120,177,72,6.169338226318359],[120,177,73,6.201080322265625],[120,177,74,6.222208023071289],[120,177,75,6.232969284057617],[120,177,76,6.237795829772949],[120,177,77,6.239090442657471],[120,177,78,6.236435413360596],[120,177,79,6.228061199188232],[120,178,64,6.115761756896973],[120,178,65,6.119561195373535],[120,178,66,6.118229866027832],[120,178,67,6.1136064529418945],[120,178,68,6.109954357147217],[120,178,69,6.112156391143799],[120,178,70,6.122154235839844],[120,178,71,6.140125274658203],[120,178,72,6.169338226318359],[120,178,73,6.201080322265625],[120,178,74,6.222208023071289],[120,178,75,6.232969284057617],[120,178,76,6.237795829772949],[120,178,77,6.239090442657471],[120,178,78,6.236435413360596],[120,178,79,6.228061199188232],[120,179,64,6.115761756896973],[120,179,65,6.119561195373535],[120,179,66,6.118229866027832],[120,179,67,6.1136064529418945],[120,179,68,6.109954357147217],[120,179,69,6.112156391143799],[120,179,70,6.122154235839844],[120,179,71,6.140125274658203],[120,179,72,6.169338226318359],[120,179,73,6.201080322265625],[120,179,74,6.222208023071289],[120,179,75,6.232969284057617],[120,179,76,6.237795829772949],[120,179,77,6.239090442657471],[120,179,78,6.236435413360596],[120,179,79,6.228061199188232],[120,180,64,6.115761756896973],[120,180,65,6.119561195373535],[120,180,66,6.118229866027832],[120,180,67,6.1136064529418945],[120,180,68,6.109954357147217],[120,180,69,6.112156391143799],[120,180,70,6.122154235839844],[120,180,71,6.140125274658203],[120,180,72,6.169338226318359],[120,180,73,6.201080322265625],[120,180,74,6.222208023071289],[120,180,75,6.232969284057617],[120,180,76,6.237795829772949],[120,180,77,6.239090442657471],[120,180,78,6.236435413360596],[120,180,79,6.228061199188232],[120,181,64,6.115761756896973],[120,181,65,6.119561195373535],[120,181,66,6.118229866027832],[120,181,67,6.1136064529418945],[120,181,68,6.109954357147217],[120,181,69,6.112156391143799],[120,181,70,6.122154235839844],[120,181,71,6.140125274658203],[120,181,72,6.169338226318359],[120,181,73,6.201080322265625],[120,181,74,6.222208023071289],[120,181,75,6.232969284057617],[120,181,76,6.237795829772949],[120,181,77,6.239090442657471],[120,181,78,6.236435413360596],[120,181,79,6.228061199188232],[120,182,64,6.115761756896973],[120,182,65,6.119561195373535],[120,182,66,6.118229866027832],[120,182,67,6.1136064529418945],[120,182,68,6.109954357147217],[120,182,69,6.112156391143799],[120,182,70,6.122154235839844],[120,182,71,6.140125274658203],[120,182,72,6.169338226318359],[120,182,73,6.201080322265625],[120,182,74,6.222208023071289],[120,182,75,6.232969284057617],[120,182,76,6.237795829772949],[120,182,77,6.239090442657471],[120,182,78,6.236435413360596],[120,182,79,6.228061199188232],[120,183,64,6.115761756896973],[120,183,65,6.119561195373535],[120,183,66,6.118229866027832],[120,183,67,6.1136064529418945],[120,183,68,6.109954357147217],[120,183,69,6.112156391143799],[120,183,70,6.122154235839844],[120,183,71,6.140125274658203],[120,183,72,6.169338226318359],[120,183,73,6.201080322265625],[120,183,74,6.222208023071289],[120,183,75,6.232969284057617],[120,183,76,6.237795829772949],[120,183,77,6.239090442657471],[120,183,78,6.236435413360596],[120,183,79,6.228061199188232],[120,184,64,6.115761756896973],[120,184,65,6.119561195373535],[120,184,66,6.118229866027832],[120,184,67,6.1136064529418945],[120,184,68,6.109954357147217],[120,184,69,6.112156391143799],[120,184,70,6.122154235839844],[120,184,71,6.140125274658203],[120,184,72,6.169338226318359],[120,184,73,6.201080322265625],[120,184,74,6.222208023071289],[120,184,75,6.232969284057617],[120,184,76,6.237795829772949],[120,184,77,6.239090442657471],[120,184,78,6.236435413360596],[120,184,79,6.228061199188232],[120,185,64,6.115761756896973],[120,185,65,6.119561195373535],[120,185,66,6.118229866027832],[120,185,67,6.1136064529418945],[120,185,68,6.109954357147217],[120,185,69,6.112156391143799],[120,185,70,6.122154235839844],[120,185,71,6.140125274658203],[120,185,72,6.169338226318359],[120,185,73,6.201080322265625],[120,185,74,6.222208023071289],[120,185,75,6.232969284057617],[120,185,76,6.237795829772949],[120,185,77,6.239090442657471],[120,185,78,6.236435413360596],[120,185,79,6.228061199188232],[120,186,64,6.115761756896973],[120,186,65,6.119561195373535],[120,186,66,6.118229866027832],[120,186,67,6.1136064529418945],[120,186,68,6.109954357147217],[120,186,69,6.112156391143799],[120,186,70,6.122154235839844],[120,186,71,6.140125274658203],[120,186,72,6.169338226318359],[120,186,73,6.201080322265625],[120,186,74,6.222208023071289],[120,186,75,6.232969284057617],[120,186,76,6.237795829772949],[120,186,77,6.239090442657471],[120,186,78,6.236435413360596],[120,186,79,6.228061199188232],[120,187,64,6.115761756896973],[120,187,65,6.119561195373535],[120,187,66,6.118229866027832],[120,187,67,6.1136064529418945],[120,187,68,6.109954357147217],[120,187,69,6.112156391143799],[120,187,70,6.122154235839844],[120,187,71,6.140125274658203],[120,187,72,6.169338226318359],[120,187,73,6.201080322265625],[120,187,74,6.222208023071289],[120,187,75,6.232969284057617],[120,187,76,6.237795829772949],[120,187,77,6.239090442657471],[120,187,78,6.236435413360596],[120,187,79,6.228061199188232],[120,188,64,6.115761756896973],[120,188,65,6.119561195373535],[120,188,66,6.118229866027832],[120,188,67,6.1136064529418945],[120,188,68,6.109954357147217],[120,188,69,6.112156391143799],[120,188,70,6.122154235839844],[120,188,71,6.140125274658203],[120,188,72,6.169338226318359],[120,188,73,6.201080322265625],[120,188,74,6.222208023071289],[120,188,75,6.232969284057617],[120,188,76,6.237795829772949],[120,188,77,6.239090442657471],[120,188,78,6.236435413360596],[120,188,79,6.228061199188232],[120,189,64,6.115761756896973],[120,189,65,6.119561195373535],[120,189,66,6.118229866027832],[120,189,67,6.1136064529418945],[120,189,68,6.109954357147217],[120,189,69,6.112156391143799],[120,189,70,6.122154235839844],[120,189,71,6.140125274658203],[120,189,72,6.169338226318359],[120,189,73,6.201080322265625],[120,189,74,6.222208023071289],[120,189,75,6.232969284057617],[120,189,76,6.237795829772949],[120,189,77,6.239090442657471],[120,189,78,6.236435413360596],[120,189,79,6.228061199188232],[120,190,64,6.115761756896973],[120,190,65,6.119561195373535],[120,190,66,6.118229866027832],[120,190,67,6.1136064529418945],[120,190,68,6.109954357147217],[120,190,69,6.112156391143799],[120,190,70,6.122154235839844],[120,190,71,6.140125274658203],[120,190,72,6.169338226318359],[120,190,73,6.201080322265625],[120,190,74,6.222208023071289],[120,190,75,6.232969284057617],[120,190,76,6.237795829772949],[120,190,77,6.239090442657471],[120,190,78,6.236435413360596],[120,190,79,6.228061199188232],[120,191,64,6.115761756896973],[120,191,65,6.119561195373535],[120,191,66,6.118229866027832],[120,191,67,6.1136064529418945],[120,191,68,6.109954357147217],[120,191,69,6.112156391143799],[120,191,70,6.122154235839844],[120,191,71,6.140125274658203],[120,191,72,6.169338226318359],[120,191,73,6.201080322265625],[120,191,74,6.222208023071289],[120,191,75,6.232969284057617],[120,191,76,6.237795829772949],[120,191,77,6.239090442657471],[120,191,78,6.236435413360596],[120,191,79,6.228061199188232],[120,192,64,6.115761756896973],[120,192,65,6.119561195373535],[120,192,66,6.118229866027832],[120,192,67,6.1136064529418945],[120,192,68,6.109954357147217],[120,192,69,6.112156391143799],[120,192,70,6.122154235839844],[120,192,71,6.140125274658203],[120,192,72,6.169338226318359],[120,192,73,6.201080322265625],[120,192,74,6.222208023071289],[120,192,75,6.232969284057617],[120,192,76,6.237795829772949],[120,192,77,6.239090442657471],[120,192,78,6.236435413360596],[120,192,79,6.228061199188232],[120,193,64,6.115761756896973],[120,193,65,6.119561195373535],[120,193,66,6.118229866027832],[120,193,67,6.1136064529418945],[120,193,68,6.109954357147217],[120,193,69,6.112156391143799],[120,193,70,6.122154235839844],[120,193,71,6.140125274658203],[120,193,72,6.169338226318359],[120,193,73,6.201080322265625],[120,193,74,6.222208023071289],[120,193,75,6.232969284057617],[120,193,76,6.237795829772949],[120,193,77,6.239090442657471],[120,193,78,6.236435413360596],[120,193,79,6.228061199188232],[120,194,64,6.115761756896973],[120,194,65,6.119561195373535],[120,194,66,6.118229866027832],[120,194,67,6.1136064529418945],[120,194,68,6.109954357147217],[120,194,69,6.112156391143799],[120,194,70,6.122154235839844],[120,194,71,6.140125274658203],[120,194,72,6.169338226318359],[120,194,73,6.201080322265625],[120,194,74,6.222208023071289],[120,194,75,6.232969284057617],[120,194,76,6.237795829772949],[120,194,77,6.239090442657471],[120,194,78,6.236435413360596],[120,194,79,6.228061199188232],[120,195,64,6.115761756896973],[120,195,65,6.119561195373535],[120,195,66,6.118229866027832],[120,195,67,6.1136064529418945],[120,195,68,6.109954357147217],[120,195,69,6.112156391143799],[120,195,70,6.122154235839844],[120,195,71,6.140125274658203],[120,195,72,6.169338226318359],[120,195,73,6.201080322265625],[120,195,74,6.222208023071289],[120,195,75,6.232969284057617],[120,195,76,6.237795829772949],[120,195,77,6.239090442657471],[120,195,78,6.236435413360596],[120,195,79,6.228061199188232],[120,196,64,6.115761756896973],[120,196,65,6.119561195373535],[120,196,66,6.118229866027832],[120,196,67,6.1136064529418945],[120,196,68,6.109954357147217],[120,196,69,6.112156391143799],[120,196,70,6.122154235839844],[120,196,71,6.140125274658203],[120,196,72,6.169338226318359],[120,196,73,6.201080322265625],[120,196,74,6.222208023071289],[120,196,75,6.232969284057617],[120,196,76,6.237795829772949],[120,196,77,6.239090442657471],[120,196,78,6.236435413360596],[120,196,79,6.228061199188232],[120,197,64,6.115761756896973],[120,197,65,6.119561195373535],[120,197,66,6.118229866027832],[120,197,67,6.1136064529418945],[120,197,68,6.109954357147217],[120,197,69,6.112156391143799],[120,197,70,6.122154235839844],[120,197,71,6.140125274658203],[120,197,72,6.169338226318359],[120,197,73,6.201080322265625],[120,197,74,6.222208023071289],[120,197,75,6.232969284057617],[120,197,76,6.237795829772949],[120,197,77,6.239090442657471],[120,197,78,6.236435413360596],[120,197,79,6.228061199188232],[120,198,64,6.115761756896973],[120,198,65,6.119561195373535],[120,198,66,6.118229866027832],[120,198,67,6.1136064529418945],[120,198,68,6.109954357147217],[120,198,69,6.112156391143799],[120,198,70,6.122154235839844],[120,198,71,6.140125274658203],[120,198,72,6.169338226318359],[120,198,73,6.201080322265625],[120,198,74,6.222208023071289],[120,198,75,6.232969284057617],[120,198,76,6.237795829772949],[120,198,77,6.239090442657471],[120,198,78,6.236435413360596],[120,198,79,6.228061199188232],[120,199,64,6.115761756896973],[120,199,65,6.119561195373535],[120,199,66,6.118229866027832],[120,199,67,6.1136064529418945],[120,199,68,6.109954357147217],[120,199,69,6.112156391143799],[120,199,70,6.122154235839844],[120,199,71,6.140125274658203],[120,199,72,6.169338226318359],[120,199,73,6.201080322265625],[120,199,74,6.222208023071289],[120,199,75,6.232969284057617],[120,199,76,6.237795829772949],[120,199,77,6.239090442657471],[120,199,78,6.236435413360596],[120,199,79,6.228061199188232],[120,200,64,6.115761756896973],[120,200,65,6.119561195373535],[120,200,66,6.118229866027832],[120,200,67,6.1136064529418945],[120,200,68,6.109954357147217],[120,200,69,6.112156391143799],[120,200,70,6.122154235839844],[120,200,71,6.140125274658203],[120,200,72,6.169338226318359],[120,200,73,6.201080322265625],[120,200,74,6.222208023071289],[120,200,75,6.232969284057617],[120,200,76,6.237795829772949],[120,200,77,6.239090442657471],[120,200,78,6.236435413360596],[120,200,79,6.228061199188232],[120,201,64,6.115761756896973],[120,201,65,6.119561195373535],[120,201,66,6.118229866027832],[120,201,67,6.1136064529418945],[120,201,68,6.109954357147217],[120,201,69,6.112156391143799],[120,201,70,6.122154235839844],[120,201,71,6.140125274658203],[120,201,72,6.169338226318359],[120,201,73,6.201080322265625],[120,201,74,6.222208023071289],[120,201,75,6.232969284057617],[120,201,76,6.237795829772949],[120,201,77,6.239090442657471],[120,201,78,6.236435413360596],[120,201,79,6.228061199188232],[120,202,64,6.115761756896973],[120,202,65,6.119561195373535],[120,202,66,6.118229866027832],[120,202,67,6.1136064529418945],[120,202,68,6.109954357147217],[120,202,69,6.112156391143799],[120,202,70,6.122154235839844],[120,202,71,6.140125274658203],[120,202,72,6.169338226318359],[120,202,73,6.201080322265625],[120,202,74,6.222208023071289],[120,202,75,6.232969284057617],[120,202,76,6.237795829772949],[120,202,77,6.239090442657471],[120,202,78,6.236435413360596],[120,202,79,6.228061199188232],[120,203,64,6.115761756896973],[120,203,65,6.119561195373535],[120,203,66,6.118229866027832],[120,203,67,6.1136064529418945],[120,203,68,6.109954357147217],[120,203,69,6.112156391143799],[120,203,70,6.122154235839844],[120,203,71,6.140125274658203],[120,203,72,6.169338226318359],[120,203,73,6.201080322265625],[120,203,74,6.222208023071289],[120,203,75,6.232969284057617],[120,203,76,6.237795829772949],[120,203,77,6.239090442657471],[120,203,78,6.236435413360596],[120,203,79,6.228061199188232],[120,204,64,6.115761756896973],[120,204,65,6.119561195373535],[120,204,66,6.118229866027832],[120,204,67,6.1136064529418945],[120,204,68,6.109954357147217],[120,204,69,6.112156391143799],[120,204,70,6.122154235839844],[120,204,71,6.140125274658203],[120,204,72,6.169338226318359],[120,204,73,6.201080322265625],[120,204,74,6.222208023071289],[120,204,75,6.232969284057617],[120,204,76,6.237795829772949],[120,204,77,6.239090442657471],[120,204,78,6.236435413360596],[120,204,79,6.228061199188232],[120,205,64,6.115761756896973],[120,205,65,6.119561195373535],[120,205,66,6.118229866027832],[120,205,67,6.1136064529418945],[120,205,68,6.109954357147217],[120,205,69,6.112156391143799],[120,205,70,6.122154235839844],[120,205,71,6.140125274658203],[120,205,72,6.169338226318359],[120,205,73,6.201080322265625],[120,205,74,6.222208023071289],[120,205,75,6.232969284057617],[120,205,76,6.237795829772949],[120,205,77,6.239090442657471],[120,205,78,6.236435413360596],[120,205,79,6.228061199188232],[120,206,64,6.115761756896973],[120,206,65,6.119561195373535],[120,206,66,6.118229866027832],[120,206,67,6.1136064529418945],[120,206,68,6.109954357147217],[120,206,69,6.112156391143799],[120,206,70,6.122154235839844],[120,206,71,6.140125274658203],[120,206,72,6.169338226318359],[120,206,73,6.201080322265625],[120,206,74,6.222208023071289],[120,206,75,6.232969284057617],[120,206,76,6.237795829772949],[120,206,77,6.239090442657471],[120,206,78,6.236435413360596],[120,206,79,6.228061199188232],[120,207,64,6.115761756896973],[120,207,65,6.119561195373535],[120,207,66,6.118229866027832],[120,207,67,6.1136064529418945],[120,207,68,6.109954357147217],[120,207,69,6.112156391143799],[120,207,70,6.122154235839844],[120,207,71,6.140125274658203],[120,207,72,6.169338226318359],[120,207,73,6.201080322265625],[120,207,74,6.222208023071289],[120,207,75,6.232969284057617],[120,207,76,6.237795829772949],[120,207,77,6.239090442657471],[120,207,78,6.236435413360596],[120,207,79,6.228061199188232],[120,208,64,6.115761756896973],[120,208,65,6.119561195373535],[120,208,66,6.118229866027832],[120,208,67,6.1136064529418945],[120,208,68,6.109954357147217],[120,208,69,6.112156391143799],[120,208,70,6.122154235839844],[120,208,71,6.140125274658203],[120,208,72,6.169338226318359],[120,208,73,6.201080322265625],[120,208,74,6.222208023071289],[120,208,75,6.232969284057617],[120,208,76,6.237795829772949],[120,208,77,6.239090442657471],[120,208,78,6.236435413360596],[120,208,79,6.228061199188232],[120,209,64,6.115761756896973],[120,209,65,6.119561195373535],[120,209,66,6.118229866027832],[120,209,67,6.1136064529418945],[120,209,68,6.109954357147217],[120,209,69,6.112156391143799],[120,209,70,6.122154235839844],[120,209,71,6.140125274658203],[120,209,72,6.169338226318359],[120,209,73,6.201080322265625],[120,209,74,6.222208023071289],[120,209,75,6.232969284057617],[120,209,76,6.237795829772949],[120,209,77,6.239090442657471],[120,209,78,6.236435413360596],[120,209,79,6.228061199188232],[120,210,64,6.115761756896973],[120,210,65,6.119561195373535],[120,210,66,6.118229866027832],[120,210,67,6.1136064529418945],[120,210,68,6.109954357147217],[120,210,69,6.112156391143799],[120,210,70,6.122154235839844],[120,210,71,6.140125274658203],[120,210,72,6.169338226318359],[120,210,73,6.201080322265625],[120,210,74,6.222208023071289],[120,210,75,6.232969284057617],[120,210,76,6.237795829772949],[120,210,77,6.239090442657471],[120,210,78,6.236435413360596],[120,210,79,6.228061199188232],[120,211,64,6.115761756896973],[120,211,65,6.119561195373535],[120,211,66,6.118229866027832],[120,211,67,6.1136064529418945],[120,211,68,6.109954357147217],[120,211,69,6.112156391143799],[120,211,70,6.122154235839844],[120,211,71,6.140125274658203],[120,211,72,6.169338226318359],[120,211,73,6.201080322265625],[120,211,74,6.222208023071289],[120,211,75,6.232969284057617],[120,211,76,6.237795829772949],[120,211,77,6.239090442657471],[120,211,78,6.236435413360596],[120,211,79,6.228061199188232],[120,212,64,6.115761756896973],[120,212,65,6.119561195373535],[120,212,66,6.118229866027832],[120,212,67,6.1136064529418945],[120,212,68,6.109954357147217],[120,212,69,6.112156391143799],[120,212,70,6.122154235839844],[120,212,71,6.140125274658203],[120,212,72,6.169338226318359],[120,212,73,6.201080322265625],[120,212,74,6.222208023071289],[120,212,75,6.232969284057617],[120,212,76,6.237795829772949],[120,212,77,6.239090442657471],[120,212,78,6.236435413360596],[120,212,79,6.228061199188232],[120,213,64,6.115761756896973],[120,213,65,6.119561195373535],[120,213,66,6.118229866027832],[120,213,67,6.1136064529418945],[120,213,68,6.109954357147217],[120,213,69,6.112156391143799],[120,213,70,6.122154235839844],[120,213,71,6.140125274658203],[120,213,72,6.169338226318359],[120,213,73,6.201080322265625],[120,213,74,6.222208023071289],[120,213,75,6.232969284057617],[120,213,76,6.237795829772949],[120,213,77,6.239090442657471],[120,213,78,6.236435413360596],[120,213,79,6.228061199188232],[120,214,64,6.115761756896973],[120,214,65,6.119561195373535],[120,214,66,6.118229866027832],[120,214,67,6.1136064529418945],[120,214,68,6.109954357147217],[120,214,69,6.112156391143799],[120,214,70,6.122154235839844],[120,214,71,6.140125274658203],[120,214,72,6.169338226318359],[120,214,73,6.201080322265625],[120,214,74,6.222208023071289],[120,214,75,6.232969284057617],[120,214,76,6.237795829772949],[120,214,77,6.239090442657471],[120,214,78,6.236435413360596],[120,214,79,6.228061199188232],[120,215,64,6.115761756896973],[120,215,65,6.119561195373535],[120,215,66,6.118229866027832],[120,215,67,6.1136064529418945],[120,215,68,6.109954357147217],[120,215,69,6.112156391143799],[120,215,70,6.122154235839844],[120,215,71,6.140125274658203],[120,215,72,6.169338226318359],[120,215,73,6.201080322265625],[120,215,74,6.222208023071289],[120,215,75,6.232969284057617],[120,215,76,6.237795829772949],[120,215,77,6.239090442657471],[120,215,78,6.236435413360596],[120,215,79,6.228061199188232],[120,216,64,6.115761756896973],[120,216,65,6.119561195373535],[120,216,66,6.118229866027832],[120,216,67,6.1136064529418945],[120,216,68,6.109954357147217],[120,216,69,6.112156391143799],[120,216,70,6.122154235839844],[120,216,71,6.140125274658203],[120,216,72,6.169338226318359],[120,216,73,6.201080322265625],[120,216,74,6.222208023071289],[120,216,75,6.232969284057617],[120,216,76,6.237795829772949],[120,216,77,6.239090442657471],[120,216,78,6.236435413360596],[120,216,79,6.228061199188232],[120,217,64,6.115761756896973],[120,217,65,6.119561195373535],[120,217,66,6.118229866027832],[120,217,67,6.1136064529418945],[120,217,68,6.109954357147217],[120,217,69,6.112156391143799],[120,217,70,6.122154235839844],[120,217,71,6.140125274658203],[120,217,72,6.169338226318359],[120,217,73,6.201080322265625],[120,217,74,6.222208023071289],[120,217,75,6.232969284057617],[120,217,76,6.237795829772949],[120,217,77,6.239090442657471],[120,217,78,6.236435413360596],[120,217,79,6.228061199188232],[120,218,64,6.115761756896973],[120,218,65,6.119561195373535],[120,218,66,6.118229866027832],[120,218,67,6.1136064529418945],[120,218,68,6.109954357147217],[120,218,69,6.112156391143799],[120,218,70,6.122154235839844],[120,218,71,6.140125274658203],[120,218,72,6.169338226318359],[120,218,73,6.201080322265625],[120,218,74,6.222208023071289],[120,218,75,6.232969284057617],[120,218,76,6.237795829772949],[120,218,77,6.239090442657471],[120,218,78,6.236435413360596],[120,218,79,6.228061199188232],[120,219,64,6.115761756896973],[120,219,65,6.119561195373535],[120,219,66,6.118229866027832],[120,219,67,6.1136064529418945],[120,219,68,6.109954357147217],[120,219,69,6.112156391143799],[120,219,70,6.122154235839844],[120,219,71,6.140125274658203],[120,219,72,6.169338226318359],[120,219,73,6.201080322265625],[120,219,74,6.222208023071289],[120,219,75,6.232969284057617],[120,219,76,6.237795829772949],[120,219,77,6.239090442657471],[120,219,78,6.236435413360596],[120,219,79,6.228061199188232],[120,220,64,6.115761756896973],[120,220,65,6.119561195373535],[120,220,66,6.118229866027832],[120,220,67,6.1136064529418945],[120,220,68,6.109954357147217],[120,220,69,6.112156391143799],[120,220,70,6.122154235839844],[120,220,71,6.140125274658203],[120,220,72,6.169338226318359],[120,220,73,6.201080322265625],[120,220,74,6.222208023071289],[120,220,75,6.232969284057617],[120,220,76,6.237795829772949],[120,220,77,6.239090442657471],[120,220,78,6.236435413360596],[120,220,79,6.228061199188232],[120,221,64,6.115761756896973],[120,221,65,6.119561195373535],[120,221,66,6.118229866027832],[120,221,67,6.1136064529418945],[120,221,68,6.109954357147217],[120,221,69,6.112156391143799],[120,221,70,6.122154235839844],[120,221,71,6.140125274658203],[120,221,72,6.169338226318359],[120,221,73,6.201080322265625],[120,221,74,6.222208023071289],[120,221,75,6.232969284057617],[120,221,76,6.237795829772949],[120,221,77,6.239090442657471],[120,221,78,6.236435413360596],[120,221,79,6.228061199188232],[120,222,64,6.115761756896973],[120,222,65,6.119561195373535],[120,222,66,6.118229866027832],[120,222,67,6.1136064529418945],[120,222,68,6.109954357147217],[120,222,69,6.112156391143799],[120,222,70,6.122154235839844],[120,222,71,6.140125274658203],[120,222,72,6.169338226318359],[120,222,73,6.201080322265625],[120,222,74,6.222208023071289],[120,222,75,6.232969284057617],[120,222,76,6.237795829772949],[120,222,77,6.239090442657471],[120,222,78,6.236435413360596],[120,222,79,6.228061199188232],[120,223,64,6.115761756896973],[120,223,65,6.119561195373535],[120,223,66,6.118229866027832],[120,223,67,6.1136064529418945],[120,223,68,6.109954357147217],[120,223,69,6.112156391143799],[120,223,70,6.122154235839844],[120,223,71,6.140125274658203],[120,223,72,6.169338226318359],[120,223,73,6.201080322265625],[120,223,74,6.222208023071289],[120,223,75,6.232969284057617],[120,223,76,6.237795829772949],[120,223,77,6.239090442657471],[120,223,78,6.236435413360596],[120,223,79,6.228061199188232],[120,224,64,6.115761756896973],[120,224,65,6.119561195373535],[120,224,66,6.118229866027832],[120,224,67,6.1136064529418945],[120,224,68,6.109954357147217],[120,224,69,6.112156391143799],[120,224,70,6.122154235839844],[120,224,71,6.140125274658203],[120,224,72,6.169338226318359],[120,224,73,6.201080322265625],[120,224,74,6.222208023071289],[120,224,75,6.232969284057617],[120,224,76,6.237795829772949],[120,224,77,6.239090442657471],[120,224,78,6.236435413360596],[120,224,79,6.228061199188232],[120,225,64,6.115761756896973],[120,225,65,6.119561195373535],[120,225,66,6.118229866027832],[120,225,67,6.1136064529418945],[120,225,68,6.109954357147217],[120,225,69,6.112156391143799],[120,225,70,6.122154235839844],[120,225,71,6.140125274658203],[120,225,72,6.169338226318359],[120,225,73,6.201080322265625],[120,225,74,6.222208023071289],[120,225,75,6.232969284057617],[120,225,76,6.237795829772949],[120,225,77,6.239090442657471],[120,225,78,6.236435413360596],[120,225,79,6.228061199188232],[120,226,64,6.115761756896973],[120,226,65,6.119561195373535],[120,226,66,6.118229866027832],[120,226,67,6.1136064529418945],[120,226,68,6.109954357147217],[120,226,69,6.112156391143799],[120,226,70,6.122154235839844],[120,226,71,6.140125274658203],[120,226,72,6.169338226318359],[120,226,73,6.201080322265625],[120,226,74,6.222208023071289],[120,226,75,6.232969284057617],[120,226,76,6.237795829772949],[120,226,77,6.239090442657471],[120,226,78,6.236435413360596],[120,226,79,6.228061199188232],[120,227,64,6.115761756896973],[120,227,65,6.119561195373535],[120,227,66,6.118229866027832],[120,227,67,6.1136064529418945],[120,227,68,6.109954357147217],[120,227,69,6.112156391143799],[120,227,70,6.122154235839844],[120,227,71,6.140125274658203],[120,227,72,6.169338226318359],[120,227,73,6.201080322265625],[120,227,74,6.222208023071289],[120,227,75,6.232969284057617],[120,227,76,6.237795829772949],[120,227,77,6.239090442657471],[120,227,78,6.236435413360596],[120,227,79,6.228061199188232],[120,228,64,6.115761756896973],[120,228,65,6.119561195373535],[120,228,66,6.118229866027832],[120,228,67,6.1136064529418945],[120,228,68,6.109954357147217],[120,228,69,6.112156391143799],[120,228,70,6.122154235839844],[120,228,71,6.140125274658203],[120,228,72,6.169338226318359],[120,228,73,6.201080322265625],[120,228,74,6.222208023071289],[120,228,75,6.232969284057617],[120,228,76,6.237795829772949],[120,228,77,6.239090442657471],[120,228,78,6.236435413360596],[120,228,79,6.228061199188232],[120,229,64,6.115761756896973],[120,229,65,6.119561195373535],[120,229,66,6.118229866027832],[120,229,67,6.1136064529418945],[120,229,68,6.109954357147217],[120,229,69,6.112156391143799],[120,229,70,6.122154235839844],[120,229,71,6.140125274658203],[120,229,72,6.169338226318359],[120,229,73,6.201080322265625],[120,229,74,6.222208023071289],[120,229,75,6.232969284057617],[120,229,76,6.237795829772949],[120,229,77,6.239090442657471],[120,229,78,6.236435413360596],[120,229,79,6.228061199188232],[120,230,64,6.115761756896973],[120,230,65,6.119561195373535],[120,230,66,6.118229866027832],[120,230,67,6.1136064529418945],[120,230,68,6.109954357147217],[120,230,69,6.112156391143799],[120,230,70,6.122154235839844],[120,230,71,6.140125274658203],[120,230,72,6.169338226318359],[120,230,73,6.201080322265625],[120,230,74,6.222208023071289],[120,230,75,6.232969284057617],[120,230,76,6.237795829772949],[120,230,77,6.239090442657471],[120,230,78,6.236435413360596],[120,230,79,6.228061199188232],[120,231,64,6.115761756896973],[120,231,65,6.119561195373535],[120,231,66,6.118229866027832],[120,231,67,6.1136064529418945],[120,231,68,6.109954357147217],[120,231,69,6.112156391143799],[120,231,70,6.122154235839844],[120,231,71,6.140125274658203],[120,231,72,6.169338226318359],[120,231,73,6.201080322265625],[120,231,74,6.222208023071289],[120,231,75,6.232969284057617],[120,231,76,6.237795829772949],[120,231,77,6.239090442657471],[120,231,78,6.236435413360596],[120,231,79,6.228061199188232],[120,232,64,6.115761756896973],[120,232,65,6.119561195373535],[120,232,66,6.118229866027832],[120,232,67,6.1136064529418945],[120,232,68,6.109954357147217],[120,232,69,6.112156391143799],[120,232,70,6.122154235839844],[120,232,71,6.140125274658203],[120,232,72,6.169338226318359],[120,232,73,6.201080322265625],[120,232,74,6.222208023071289],[120,232,75,6.232969284057617],[120,232,76,6.237795829772949],[120,232,77,6.239090442657471],[120,232,78,6.236435413360596],[120,232,79,6.228061199188232],[120,233,64,6.115761756896973],[120,233,65,6.119561195373535],[120,233,66,6.118229866027832],[120,233,67,6.1136064529418945],[120,233,68,6.109954357147217],[120,233,69,6.112156391143799],[120,233,70,6.122154235839844],[120,233,71,6.140125274658203],[120,233,72,6.169338226318359],[120,233,73,6.201080322265625],[120,233,74,6.222208023071289],[120,233,75,6.232969284057617],[120,233,76,6.237795829772949],[120,233,77,6.239090442657471],[120,233,78,6.236435413360596],[120,233,79,6.228061199188232],[120,234,64,6.115761756896973],[120,234,65,6.119561195373535],[120,234,66,6.118229866027832],[120,234,67,6.1136064529418945],[120,234,68,6.109954357147217],[120,234,69,6.112156391143799],[120,234,70,6.122154235839844],[120,234,71,6.140125274658203],[120,234,72,6.169338226318359],[120,234,73,6.201080322265625],[120,234,74,6.222208023071289],[120,234,75,6.232969284057617],[120,234,76,6.237795829772949],[120,234,77,6.239090442657471],[120,234,78,6.236435413360596],[120,234,79,6.228061199188232],[120,235,64,6.115761756896973],[120,235,65,6.119561195373535],[120,235,66,6.118229866027832],[120,235,67,6.1136064529418945],[120,235,68,6.109954357147217],[120,235,69,6.112156391143799],[120,235,70,6.122154235839844],[120,235,71,6.140125274658203],[120,235,72,6.169338226318359],[120,235,73,6.201080322265625],[120,235,74,6.222208023071289],[120,235,75,6.232969284057617],[120,235,76,6.237795829772949],[120,235,77,6.239090442657471],[120,235,78,6.236435413360596],[120,235,79,6.228061199188232],[120,236,64,6.115761756896973],[120,236,65,6.119561195373535],[120,236,66,6.118229866027832],[120,236,67,6.1136064529418945],[120,236,68,6.109954357147217],[120,236,69,6.112156391143799],[120,236,70,6.122154235839844],[120,236,71,6.140125274658203],[120,236,72,6.169338226318359],[120,236,73,6.201080322265625],[120,236,74,6.222208023071289],[120,236,75,6.232969284057617],[120,236,76,6.237795829772949],[120,236,77,6.239090442657471],[120,236,78,6.236435413360596],[120,236,79,6.228061199188232],[120,237,64,6.115761756896973],[120,237,65,6.119561195373535],[120,237,66,6.118229866027832],[120,237,67,6.1136064529418945],[120,237,68,6.109954357147217],[120,237,69,6.112156391143799],[120,237,70,6.122154235839844],[120,237,71,6.140125274658203],[120,237,72,6.169338226318359],[120,237,73,6.201080322265625],[120,237,74,6.222208023071289],[120,237,75,6.232969284057617],[120,237,76,6.237795829772949],[120,237,77,6.239090442657471],[120,237,78,6.236435413360596],[120,237,79,6.228061199188232],[120,238,64,6.115761756896973],[120,238,65,6.119561195373535],[120,238,66,6.118229866027832],[120,238,67,6.1136064529418945],[120,238,68,6.109954357147217],[120,238,69,6.112156391143799],[120,238,70,6.122154235839844],[120,238,71,6.140125274658203],[120,238,72,6.169338226318359],[120,238,73,6.201080322265625],[120,238,74,6.222208023071289],[120,238,75,6.232969284057617],[120,238,76,6.237795829772949],[120,238,77,6.239090442657471],[120,238,78,6.236435413360596],[120,238,79,6.228061199188232],[120,239,64,6.115761756896973],[120,239,65,6.119561195373535],[120,239,66,6.118229866027832],[120,239,67,6.1136064529418945],[120,239,68,6.109954357147217],[120,239,69,6.112156391143799],[120,239,70,6.122154235839844],[120,239,71,6.140125274658203],[120,239,72,6.169338226318359],[120,239,73,6.201080322265625],[120,239,74,6.222208023071289],[120,239,75,6.232969284057617],[120,239,76,6.237795829772949],[120,239,77,6.239090442657471],[120,239,78,6.236435413360596],[120,239,79,6.228061199188232],[120,240,64,6.115761756896973],[120,240,65,6.119561195373535],[120,240,66,6.118229866027832],[120,240,67,6.1136064529418945],[120,240,68,6.109954357147217],[120,240,69,6.112156391143799],[120,240,70,6.122154235839844],[120,240,71,6.140125274658203],[120,240,72,6.169338226318359],[120,240,73,6.201080322265625],[120,240,74,6.222208023071289],[120,240,75,6.232969284057617],[120,240,76,6.237795829772949],[120,240,77,6.239090442657471],[120,240,78,6.236435413360596],[120,240,79,6.228061199188232],[120,241,64,6.115761756896973],[120,241,65,6.119561195373535],[120,241,66,6.118229866027832],[120,241,67,6.1136064529418945],[120,241,68,6.109954357147217],[120,241,69,6.112156391143799],[120,241,70,6.122154235839844],[120,241,71,6.140125274658203],[120,241,72,6.169338226318359],[120,241,73,6.201080322265625],[120,241,74,6.222208023071289],[120,241,75,6.232969284057617],[120,241,76,6.237795829772949],[120,241,77,6.239090442657471],[120,241,78,6.236435413360596],[120,241,79,6.228061199188232],[120,242,64,6.115761756896973],[120,242,65,6.119561195373535],[120,242,66,6.118229866027832],[120,242,67,6.1136064529418945],[120,242,68,6.109954357147217],[120,242,69,6.112156391143799],[120,242,70,6.122154235839844],[120,242,71,6.140125274658203],[120,242,72,6.169338226318359],[120,242,73,6.201080322265625],[120,242,74,6.222208023071289],[120,242,75,6.232969284057617],[120,242,76,6.237795829772949],[120,242,77,6.239090442657471],[120,242,78,6.236435413360596],[120,242,79,6.228061199188232],[120,243,64,6.115761756896973],[120,243,65,6.119561195373535],[120,243,66,6.118229866027832],[120,243,67,6.1136064529418945],[120,243,68,6.109954357147217],[120,243,69,6.112156391143799],[120,243,70,6.122154235839844],[120,243,71,6.140125274658203],[120,243,72,6.169338226318359],[120,243,73,6.201080322265625],[120,243,74,6.222208023071289],[120,243,75,6.232969284057617],[120,243,76,6.237795829772949],[120,243,77,6.239090442657471],[120,243,78,6.236435413360596],[120,243,79,6.228061199188232],[120,244,64,6.115761756896973],[120,244,65,6.119561195373535],[120,244,66,6.118229866027832],[120,244,67,6.1136064529418945],[120,244,68,6.109954357147217],[120,244,69,6.112156391143799],[120,244,70,6.122154235839844],[120,244,71,6.140125274658203],[120,244,72,6.169338226318359],[120,244,73,6.201080322265625],[120,244,74,6.222208023071289],[120,244,75,6.232969284057617],[120,244,76,6.237795829772949],[120,244,77,6.239090442657471],[120,244,78,6.236435413360596],[120,244,79,6.228061199188232],[120,245,64,6.115761756896973],[120,245,65,6.119561195373535],[120,245,66,6.118229866027832],[120,245,67,6.1136064529418945],[120,245,68,6.109954357147217],[120,245,69,6.112156391143799],[120,245,70,6.122154235839844],[120,245,71,6.140125274658203],[120,245,72,6.169338226318359],[120,245,73,6.201080322265625],[120,245,74,6.222208023071289],[120,245,75,6.232969284057617],[120,245,76,6.237795829772949],[120,245,77,6.239090442657471],[120,245,78,6.236435413360596],[120,245,79,6.228061199188232],[120,246,64,6.115761756896973],[120,246,65,6.119561195373535],[120,246,66,6.118229866027832],[120,246,67,6.1136064529418945],[120,246,68,6.109954357147217],[120,246,69,6.112156391143799],[120,246,70,6.122154235839844],[120,246,71,6.140125274658203],[120,246,72,6.169338226318359],[120,246,73,6.201080322265625],[120,246,74,6.222208023071289],[120,246,75,6.232969284057617],[120,246,76,6.237795829772949],[120,246,77,6.239090442657471],[120,246,78,6.236435413360596],[120,246,79,6.228061199188232],[120,247,64,6.115761756896973],[120,247,65,6.119561195373535],[120,247,66,6.118229866027832],[120,247,67,6.1136064529418945],[120,247,68,6.109954357147217],[120,247,69,6.112156391143799],[120,247,70,6.122154235839844],[120,247,71,6.140125274658203],[120,247,72,6.169338226318359],[120,247,73,6.201080322265625],[120,247,74,6.222208023071289],[120,247,75,6.232969284057617],[120,247,76,6.237795829772949],[120,247,77,6.239090442657471],[120,247,78,6.236435413360596],[120,247,79,6.228061199188232],[120,248,64,6.115761756896973],[120,248,65,6.119561195373535],[120,248,66,6.118229866027832],[120,248,67,6.1136064529418945],[120,248,68,6.109954357147217],[120,248,69,6.112156391143799],[120,248,70,6.122154235839844],[120,248,71,6.140125274658203],[120,248,72,6.169338226318359],[120,248,73,6.201080322265625],[120,248,74,6.222208023071289],[120,248,75,6.232969284057617],[120,248,76,6.237795829772949],[120,248,77,6.239090442657471],[120,248,78,6.236435413360596],[120,248,79,6.228061199188232],[120,249,64,6.115761756896973],[120,249,65,6.119561195373535],[120,249,66,6.118229866027832],[120,249,67,6.1136064529418945],[120,249,68,6.109954357147217],[120,249,69,6.112156391143799],[120,249,70,6.122154235839844],[120,249,71,6.140125274658203],[120,249,72,6.169338226318359],[120,249,73,6.201080322265625],[120,249,74,6.222208023071289],[120,249,75,6.232969284057617],[120,249,76,6.237795829772949],[120,249,77,6.239090442657471],[120,249,78,6.236435413360596],[120,249,79,6.228061199188232],[120,250,64,6.115761756896973],[120,250,65,6.119561195373535],[120,250,66,6.118229866027832],[120,250,67,6.1136064529418945],[120,250,68,6.109954357147217],[120,250,69,6.112156391143799],[120,250,70,6.122154235839844],[120,250,71,6.140125274658203],[120,250,72,6.169338226318359],[120,250,73,6.201080322265625],[120,250,74,6.222208023071289],[120,250,75,6.232969284057617],[120,250,76,6.237795829772949],[120,250,77,6.239090442657471],[120,250,78,6.236435413360596],[120,250,79,6.228061199188232],[120,251,64,6.115761756896973],[120,251,65,6.119561195373535],[120,251,66,6.118229866027832],[120,251,67,6.1136064529418945],[120,251,68,6.109954357147217],[120,251,69,6.112156391143799],[120,251,70,6.122154235839844],[120,251,71,6.140125274658203],[120,251,72,6.169338226318359],[120,251,73,6.201080322265625],[120,251,74,6.222208023071289],[120,251,75,6.232969284057617],[120,251,76,6.237795829772949],[120,251,77,6.239090442657471],[120,251,78,6.236435413360596],[120,251,79,6.228061199188232],[120,252,64,6.115761756896973],[120,252,65,6.119561195373535],[120,252,66,6.118229866027832],[120,252,67,6.1136064529418945],[120,252,68,6.109954357147217],[120,252,69,6.112156391143799],[120,252,70,6.122154235839844],[120,252,71,6.140125274658203],[120,252,72,6.169338226318359],[120,252,73,6.201080322265625],[120,252,74,6.222208023071289],[120,252,75,6.232969284057617],[120,252,76,6.237795829772949],[120,252,77,6.239090442657471],[120,252,78,6.236435413360596],[120,252,79,6.228061199188232],[120,253,64,6.115761756896973],[120,253,65,6.119561195373535],[120,253,66,6.118229866027832],[120,253,67,6.1136064529418945],[120,253,68,6.109954357147217],[120,253,69,6.112156391143799],[120,253,70,6.122154235839844],[120,253,71,6.140125274658203],[120,253,72,6.169338226318359],[120,253,73,6.201080322265625],[120,253,74,6.222208023071289],[120,253,75,6.232969284057617],[120,253,76,6.237795829772949],[120,253,77,6.239090442657471],[120,253,78,6.236435413360596],[120,253,79,6.228061199188232],[120,254,64,6.115761756896973],[120,254,65,6.119561195373535],[120,254,66,6.118229866027832],[120,254,67,6.1136064529418945],[120,254,68,6.109954357147217],[120,254,69,6.112156391143799],[120,254,70,6.122154235839844],[120,254,71,6.140125274658203],[120,254,72,6.169338226318359],[120,254,73,6.201080322265625],[120,254,74,6.222208023071289],[120,254,75,6.232969284057617],[120,254,76,6.237795829772949],[120,254,77,6.239090442657471],[120,254,78,6.236435413360596],[120,254,79,6.228061199188232],[120,255,64,6.115761756896973],[120,255,65,6.119561195373535],[120,255,66,6.118229866027832],[120,255,67,6.1136064529418945],[120,255,68,6.109954357147217],[120,255,69,6.112156391143799],[120,255,70,6.122154235839844],[120,255,71,6.140125274658203],[120,255,72,6.169338226318359],[120,255,73,6.201080322265625],[120,255,74,6.222208023071289],[120,255,75,6.232969284057617],[120,255,76,6.237795829772949],[120,255,77,6.239090442657471],[120,255,78,6.236435413360596],[120,255,79,6.228061199188232],[120,256,64,6.115761756896973],[120,256,65,6.119561195373535],[120,256,66,6.118229866027832],[120,256,67,6.1136064529418945],[120,256,68,6.109954357147217],[120,256,69,6.112156391143799],[120,256,70,6.122154235839844],[120,256,71,6.140125274658203],[120,256,72,6.169338226318359],[120,256,73,6.201080322265625],[120,256,74,6.222208023071289],[120,256,75,6.232969284057617],[120,256,76,6.237795829772949],[120,256,77,6.239090442657471],[120,256,78,6.236435413360596],[120,256,79,6.228061199188232],[120,257,64,6.115761756896973],[120,257,65,6.119561195373535],[120,257,66,6.118229866027832],[120,257,67,6.1136064529418945],[120,257,68,6.109954357147217],[120,257,69,6.112156391143799],[120,257,70,6.122154235839844],[120,257,71,6.140125274658203],[120,257,72,6.169338226318359],[120,257,73,6.201080322265625],[120,257,74,6.222208023071289],[120,257,75,6.232969284057617],[120,257,76,6.237795829772949],[120,257,77,6.239090442657471],[120,257,78,6.236435413360596],[120,257,79,6.228061199188232],[120,258,64,6.115761756896973],[120,258,65,6.119561195373535],[120,258,66,6.118229866027832],[120,258,67,6.1136064529418945],[120,258,68,6.109954357147217],[120,258,69,6.112156391143799],[120,258,70,6.122154235839844],[120,258,71,6.140125274658203],[120,258,72,6.169338226318359],[120,258,73,6.201080322265625],[120,258,74,6.222208023071289],[120,258,75,6.232969284057617],[120,258,76,6.237795829772949],[120,258,77,6.239090442657471],[120,258,78,6.236435413360596],[120,258,79,6.228061199188232],[120,259,64,6.115761756896973],[120,259,65,6.119561195373535],[120,259,66,6.118229866027832],[120,259,67,6.1136064529418945],[120,259,68,6.109954357147217],[120,259,69,6.112156391143799],[120,259,70,6.122154235839844],[120,259,71,6.140125274658203],[120,259,72,6.169338226318359],[120,259,73,6.201080322265625],[120,259,74,6.222208023071289],[120,259,75,6.232969284057617],[120,259,76,6.237795829772949],[120,259,77,6.239090442657471],[120,259,78,6.236435413360596],[120,259,79,6.228061199188232],[120,260,64,6.115761756896973],[120,260,65,6.119561195373535],[120,260,66,6.118229866027832],[120,260,67,6.1136064529418945],[120,260,68,6.109954357147217],[120,260,69,6.112156391143799],[120,260,70,6.122154235839844],[120,260,71,6.140125274658203],[120,260,72,6.169338226318359],[120,260,73,6.201080322265625],[120,260,74,6.222208023071289],[120,260,75,6.232969284057617],[120,260,76,6.237795829772949],[120,260,77,6.239090442657471],[120,260,78,6.236435413360596],[120,260,79,6.228061199188232],[120,261,64,6.115761756896973],[120,261,65,6.119561195373535],[120,261,66,6.118229866027832],[120,261,67,6.1136064529418945],[120,261,68,6.109954357147217],[120,261,69,6.112156391143799],[120,261,70,6.122154235839844],[120,261,71,6.140125274658203],[120,261,72,6.169338226318359],[120,261,73,6.201080322265625],[120,261,74,6.222208023071289],[120,261,75,6.232969284057617],[120,261,76,6.237795829772949],[120,261,77,6.239090442657471],[120,261,78,6.236435413360596],[120,261,79,6.228061199188232],[120,262,64,6.115761756896973],[120,262,65,6.119561195373535],[120,262,66,6.118229866027832],[120,262,67,6.1136064529418945],[120,262,68,6.109954357147217],[120,262,69,6.112156391143799],[120,262,70,6.122154235839844],[120,262,71,6.140125274658203],[120,262,72,6.169338226318359],[120,262,73,6.201080322265625],[120,262,74,6.222208023071289],[120,262,75,6.232969284057617],[120,262,76,6.237795829772949],[120,262,77,6.239090442657471],[120,262,78,6.236435413360596],[120,262,79,6.228061199188232],[120,263,64,6.115761756896973],[120,263,65,6.119561195373535],[120,263,66,6.118229866027832],[120,263,67,6.1136064529418945],[120,263,68,6.109954357147217],[120,263,69,6.112156391143799],[120,263,70,6.122154235839844],[120,263,71,6.140125274658203],[120,263,72,6.169338226318359],[120,263,73,6.201080322265625],[120,263,74,6.222208023071289],[120,263,75,6.232969284057617],[120,263,76,6.237795829772949],[120,263,77,6.239090442657471],[120,263,78,6.236435413360596],[120,263,79,6.228061199188232],[120,264,64,6.115761756896973],[120,264,65,6.119561195373535],[120,264,66,6.118229866027832],[120,264,67,6.1136064529418945],[120,264,68,6.109954357147217],[120,264,69,6.112156391143799],[120,264,70,6.122154235839844],[120,264,71,6.140125274658203],[120,264,72,6.169338226318359],[120,264,73,6.201080322265625],[120,264,74,6.222208023071289],[120,264,75,6.232969284057617],[120,264,76,6.237795829772949],[120,264,77,6.239090442657471],[120,264,78,6.236435413360596],[120,264,79,6.228061199188232],[120,265,64,6.115761756896973],[120,265,65,6.119561195373535],[120,265,66,6.118229866027832],[120,265,67,6.1136064529418945],[120,265,68,6.109954357147217],[120,265,69,6.112156391143799],[120,265,70,6.122154235839844],[120,265,71,6.140125274658203],[120,265,72,6.169338226318359],[120,265,73,6.201080322265625],[120,265,74,6.222208023071289],[120,265,75,6.232969284057617],[120,265,76,6.237795829772949],[120,265,77,6.239090442657471],[120,265,78,6.236435413360596],[120,265,79,6.228061199188232],[120,266,64,6.115761756896973],[120,266,65,6.119561195373535],[120,266,66,6.118229866027832],[120,266,67,6.1136064529418945],[120,266,68,6.109954357147217],[120,266,69,6.112156391143799],[120,266,70,6.122154235839844],[120,266,71,6.140125274658203],[120,266,72,6.169338226318359],[120,266,73,6.201080322265625],[120,266,74,6.222208023071289],[120,266,75,6.232969284057617],[120,266,76,6.237795829772949],[120,266,77,6.239090442657471],[120,266,78,6.236435413360596],[120,266,79,6.228061199188232],[120,267,64,6.115761756896973],[120,267,65,6.119561195373535],[120,267,66,6.118229866027832],[120,267,67,6.1136064529418945],[120,267,68,6.109954357147217],[120,267,69,6.112156391143799],[120,267,70,6.122154235839844],[120,267,71,6.140125274658203],[120,267,72,6.169338226318359],[120,267,73,6.201080322265625],[120,267,74,6.222208023071289],[120,267,75,6.232969284057617],[120,267,76,6.237795829772949],[120,267,77,6.239090442657471],[120,267,78,6.236435413360596],[120,267,79,6.228061199188232],[120,268,64,6.115761756896973],[120,268,65,6.119561195373535],[120,268,66,6.118229866027832],[120,268,67,6.1136064529418945],[120,268,68,6.109954357147217],[120,268,69,6.112156391143799],[120,268,70,6.122154235839844],[120,268,71,6.140125274658203],[120,268,72,6.169338226318359],[120,268,73,6.201080322265625],[120,268,74,6.222208023071289],[120,268,75,6.232969284057617],[120,268,76,6.237795829772949],[120,268,77,6.239090442657471],[120,268,78,6.236435413360596],[120,268,79,6.228061199188232],[120,269,64,6.115761756896973],[120,269,65,6.119561195373535],[120,269,66,6.118229866027832],[120,269,67,6.1136064529418945],[120,269,68,6.109954357147217],[120,269,69,6.112156391143799],[120,269,70,6.122154235839844],[120,269,71,6.140125274658203],[120,269,72,6.169338226318359],[120,269,73,6.201080322265625],[120,269,74,6.222208023071289],[120,269,75,6.232969284057617],[120,269,76,6.237795829772949],[120,269,77,6.239090442657471],[120,269,78,6.236435413360596],[120,269,79,6.228061199188232],[120,270,64,6.115761756896973],[120,270,65,6.119561195373535],[120,270,66,6.118229866027832],[120,270,67,6.1136064529418945],[120,270,68,6.109954357147217],[120,270,69,6.112156391143799],[120,270,70,6.122154235839844],[120,270,71,6.140125274658203],[120,270,72,6.169338226318359],[120,270,73,6.201080322265625],[120,270,74,6.222208023071289],[120,270,75,6.232969284057617],[120,270,76,6.237795829772949],[120,270,77,6.239090442657471],[120,270,78,6.236435413360596],[120,270,79,6.228061199188232],[120,271,64,6.115761756896973],[120,271,65,6.119561195373535],[120,271,66,6.118229866027832],[120,271,67,6.1136064529418945],[120,271,68,6.109954357147217],[120,271,69,6.112156391143799],[120,271,70,6.122154235839844],[120,271,71,6.140125274658203],[120,271,72,6.169338226318359],[120,271,73,6.201080322265625],[120,271,74,6.222208023071289],[120,271,75,6.232969284057617],[120,271,76,6.237795829772949],[120,271,77,6.239090442657471],[120,271,78,6.236435413360596],[120,271,79,6.228061199188232],[120,272,64,6.115761756896973],[120,272,65,6.119561195373535],[120,272,66,6.118229866027832],[120,272,67,6.1136064529418945],[120,272,68,6.109954357147217],[120,272,69,6.112156391143799],[120,272,70,6.122154235839844],[120,272,71,6.140125274658203],[120,272,72,6.169338226318359],[120,272,73,6.201080322265625],[120,272,74,6.222208023071289],[120,272,75,6.232969284057617],[120,272,76,6.237795829772949],[120,272,77,6.239090442657471],[120,272,78,6.236435413360596],[120,272,79,6.228061199188232],[120,273,64,6.115761756896973],[120,273,65,6.119561195373535],[120,273,66,6.118229866027832],[120,273,67,6.1136064529418945],[120,273,68,6.109954357147217],[120,273,69,6.112156391143799],[120,273,70,6.122154235839844],[120,273,71,6.140125274658203],[120,273,72,6.169338226318359],[120,273,73,6.201080322265625],[120,273,74,6.222208023071289],[120,273,75,6.232969284057617],[120,273,76,6.237795829772949],[120,273,77,6.239090442657471],[120,273,78,6.236435413360596],[120,273,79,6.228061199188232],[120,274,64,6.115761756896973],[120,274,65,6.119561195373535],[120,274,66,6.118229866027832],[120,274,67,6.1136064529418945],[120,274,68,6.109954357147217],[120,274,69,6.112156391143799],[120,274,70,6.122154235839844],[120,274,71,6.140125274658203],[120,274,72,6.169338226318359],[120,274,73,6.201080322265625],[120,274,74,6.222208023071289],[120,274,75,6.232969284057617],[120,274,76,6.237795829772949],[120,274,77,6.239090442657471],[120,274,78,6.236435413360596],[120,274,79,6.228061199188232],[120,275,64,6.115761756896973],[120,275,65,6.119561195373535],[120,275,66,6.118229866027832],[120,275,67,6.1136064529418945],[120,275,68,6.109954357147217],[120,275,69,6.112156391143799],[120,275,70,6.122154235839844],[120,275,71,6.140125274658203],[120,275,72,6.169338226318359],[120,275,73,6.201080322265625],[120,275,74,6.222208023071289],[120,275,75,6.232969284057617],[120,275,76,6.237795829772949],[120,275,77,6.239090442657471],[120,275,78,6.236435413360596],[120,275,79,6.228061199188232],[120,276,64,6.115761756896973],[120,276,65,6.119561195373535],[120,276,66,6.118229866027832],[120,276,67,6.1136064529418945],[120,276,68,6.109954357147217],[120,276,69,6.112156391143799],[120,276,70,6.122154235839844],[120,276,71,6.140125274658203],[120,276,72,6.169338226318359],[120,276,73,6.201080322265625],[120,276,74,6.222208023071289],[120,276,75,6.232969284057617],[120,276,76,6.237795829772949],[120,276,77,6.239090442657471],[120,276,78,6.236435413360596],[120,276,79,6.228061199188232],[120,277,64,6.115761756896973],[120,277,65,6.119561195373535],[120,277,66,6.118229866027832],[120,277,67,6.1136064529418945],[120,277,68,6.109954357147217],[120,277,69,6.112156391143799],[120,277,70,6.122154235839844],[120,277,71,6.140125274658203],[120,277,72,6.169338226318359],[120,277,73,6.201080322265625],[120,277,74,6.222208023071289],[120,277,75,6.232969284057617],[120,277,76,6.237795829772949],[120,277,77,6.239090442657471],[120,277,78,6.236435413360596],[120,277,79,6.228061199188232],[120,278,64,6.115761756896973],[120,278,65,6.119561195373535],[120,278,66,6.118229866027832],[120,278,67,6.1136064529418945],[120,278,68,6.109954357147217],[120,278,69,6.112156391143799],[120,278,70,6.122154235839844],[120,278,71,6.140125274658203],[120,278,72,6.169338226318359],[120,278,73,6.201080322265625],[120,278,74,6.222208023071289],[120,278,75,6.232969284057617],[120,278,76,6.237795829772949],[120,278,77,6.239090442657471],[120,278,78,6.236435413360596],[120,278,79,6.228061199188232],[120,279,64,6.115761756896973],[120,279,65,6.119561195373535],[120,279,66,6.118229866027832],[120,279,67,6.1136064529418945],[120,279,68,6.109954357147217],[120,279,69,6.112156391143799],[120,279,70,6.122154235839844],[120,279,71,6.140125274658203],[120,279,72,6.169338226318359],[120,279,73,6.201080322265625],[120,279,74,6.222208023071289],[120,279,75,6.232969284057617],[120,279,76,6.237795829772949],[120,279,77,6.239090442657471],[120,279,78,6.236435413360596],[120,279,79,6.228061199188232],[120,280,64,6.115761756896973],[120,280,65,6.119561195373535],[120,280,66,6.118229866027832],[120,280,67,6.1136064529418945],[120,280,68,6.109954357147217],[120,280,69,6.112156391143799],[120,280,70,6.122154235839844],[120,280,71,6.140125274658203],[120,280,72,6.169338226318359],[120,280,73,6.201080322265625],[120,280,74,6.222208023071289],[120,280,75,6.232969284057617],[120,280,76,6.237795829772949],[120,280,77,6.239090442657471],[120,280,78,6.236435413360596],[120,280,79,6.228061199188232],[120,281,64,6.115761756896973],[120,281,65,6.119561195373535],[120,281,66,6.118229866027832],[120,281,67,6.1136064529418945],[120,281,68,6.109954357147217],[120,281,69,6.112156391143799],[120,281,70,6.122154235839844],[120,281,71,6.140125274658203],[120,281,72,6.169338226318359],[120,281,73,6.201080322265625],[120,281,74,6.222208023071289],[120,281,75,6.232969284057617],[120,281,76,6.237795829772949],[120,281,77,6.239090442657471],[120,281,78,6.236435413360596],[120,281,79,6.228061199188232],[120,282,64,6.115761756896973],[120,282,65,6.119561195373535],[120,282,66,6.118229866027832],[120,282,67,6.1136064529418945],[120,282,68,6.109954357147217],[120,282,69,6.112156391143799],[120,282,70,6.122154235839844],[120,282,71,6.140125274658203],[120,282,72,6.169338226318359],[120,282,73,6.201080322265625],[120,282,74,6.222208023071289],[120,282,75,6.232969284057617],[120,282,76,6.237795829772949],[120,282,77,6.239090442657471],[120,282,78,6.236435413360596],[120,282,79,6.228061199188232],[120,283,64,6.115761756896973],[120,283,65,6.119561195373535],[120,283,66,6.118229866027832],[120,283,67,6.1136064529418945],[120,283,68,6.109954357147217],[120,283,69,6.112156391143799],[120,283,70,6.122154235839844],[120,283,71,6.140125274658203],[120,283,72,6.169338226318359],[120,283,73,6.201080322265625],[120,283,74,6.222208023071289],[120,283,75,6.232969284057617],[120,283,76,6.237795829772949],[120,283,77,6.239090442657471],[120,283,78,6.236435413360596],[120,283,79,6.228061199188232],[120,284,64,6.115761756896973],[120,284,65,6.119561195373535],[120,284,66,6.118229866027832],[120,284,67,6.1136064529418945],[120,284,68,6.109954357147217],[120,284,69,6.112156391143799],[120,284,70,6.122154235839844],[120,284,71,6.140125274658203],[120,284,72,6.169338226318359],[120,284,73,6.201080322265625],[120,284,74,6.222208023071289],[120,284,75,6.232969284057617],[120,284,76,6.237795829772949],[120,284,77,6.239090442657471],[120,284,78,6.236435413360596],[120,284,79,6.228061199188232],[120,285,64,6.115761756896973],[120,285,65,6.119561195373535],[120,285,66,6.118229866027832],[120,285,67,6.1136064529418945],[120,285,68,6.109954357147217],[120,285,69,6.112156391143799],[120,285,70,6.122154235839844],[120,285,71,6.140125274658203],[120,285,72,6.169338226318359],[120,285,73,6.201080322265625],[120,285,74,6.222208023071289],[120,285,75,6.232969284057617],[120,285,76,6.237795829772949],[120,285,77,6.239090442657471],[120,285,78,6.236435413360596],[120,285,79,6.228061199188232],[120,286,64,6.115761756896973],[120,286,65,6.119561195373535],[120,286,66,6.118229866027832],[120,286,67,6.1136064529418945],[120,286,68,6.109954357147217],[120,286,69,6.112156391143799],[120,286,70,6.122154235839844],[120,286,71,6.140125274658203],[120,286,72,6.169338226318359],[120,286,73,6.201080322265625],[120,286,74,6.222208023071289],[120,286,75,6.232969284057617],[120,286,76,6.237795829772949],[120,286,77,6.239090442657471],[120,286,78,6.236435413360596],[120,286,79,6.228061199188232],[120,287,64,6.115761756896973],[120,287,65,6.119561195373535],[120,287,66,6.118229866027832],[120,287,67,6.1136064529418945],[120,287,68,6.109954357147217],[120,287,69,6.112156391143799],[120,287,70,6.122154235839844],[120,287,71,6.140125274658203],[120,287,72,6.169338226318359],[120,287,73,6.201080322265625],[120,287,74,6.222208023071289],[120,287,75,6.232969284057617],[120,287,76,6.237795829772949],[120,287,77,6.239090442657471],[120,287,78,6.236435413360596],[120,287,79,6.228061199188232],[120,288,64,6.115761756896973],[120,288,65,6.119561195373535],[120,288,66,6.118229866027832],[120,288,67,6.1136064529418945],[120,288,68,6.109954357147217],[120,288,69,6.112156391143799],[120,288,70,6.122154235839844],[120,288,71,6.140125274658203],[120,288,72,6.169338226318359],[120,288,73,6.201080322265625],[120,288,74,6.222208023071289],[120,288,75,6.232969284057617],[120,288,76,6.237795829772949],[120,288,77,6.239090442657471],[120,288,78,6.236435413360596],[120,288,79,6.228061199188232],[120,289,64,6.115761756896973],[120,289,65,6.119561195373535],[120,289,66,6.118229866027832],[120,289,67,6.1136064529418945],[120,289,68,6.109954357147217],[120,289,69,6.112156391143799],[120,289,70,6.122154235839844],[120,289,71,6.140125274658203],[120,289,72,6.169338226318359],[120,289,73,6.201080322265625],[120,289,74,6.222208023071289],[120,289,75,6.232969284057617],[120,289,76,6.237795829772949],[120,289,77,6.239090442657471],[120,289,78,6.236435413360596],[120,289,79,6.228061199188232],[120,290,64,6.115761756896973],[120,290,65,6.119561195373535],[120,290,66,6.118229866027832],[120,290,67,6.1136064529418945],[120,290,68,6.109954357147217],[120,290,69,6.112156391143799],[120,290,70,6.122154235839844],[120,290,71,6.140125274658203],[120,290,72,6.169338226318359],[120,290,73,6.201080322265625],[120,290,74,6.222208023071289],[120,290,75,6.232969284057617],[120,290,76,6.237795829772949],[120,290,77,6.239090442657471],[120,290,78,6.236435413360596],[120,290,79,6.228061199188232],[120,291,64,6.115761756896973],[120,291,65,6.119561195373535],[120,291,66,6.118229866027832],[120,291,67,6.1136064529418945],[120,291,68,6.109954357147217],[120,291,69,6.112156391143799],[120,291,70,6.122154235839844],[120,291,71,6.140125274658203],[120,291,72,6.169338226318359],[120,291,73,6.201080322265625],[120,291,74,6.222208023071289],[120,291,75,6.232969284057617],[120,291,76,6.237795829772949],[120,291,77,6.239090442657471],[120,291,78,6.236435413360596],[120,291,79,6.228061199188232],[120,292,64,6.115761756896973],[120,292,65,6.119561195373535],[120,292,66,6.118229866027832],[120,292,67,6.1136064529418945],[120,292,68,6.109954357147217],[120,292,69,6.112156391143799],[120,292,70,6.122154235839844],[120,292,71,6.140125274658203],[120,292,72,6.169338226318359],[120,292,73,6.201080322265625],[120,292,74,6.222208023071289],[120,292,75,6.232969284057617],[120,292,76,6.237795829772949],[120,292,77,6.239090442657471],[120,292,78,6.236435413360596],[120,292,79,6.228061199188232],[120,293,64,6.115761756896973],[120,293,65,6.119561195373535],[120,293,66,6.118229866027832],[120,293,67,6.1136064529418945],[120,293,68,6.109954357147217],[120,293,69,6.112156391143799],[120,293,70,6.122154235839844],[120,293,71,6.140125274658203],[120,293,72,6.169338226318359],[120,293,73,6.201080322265625],[120,293,74,6.222208023071289],[120,293,75,6.232969284057617],[120,293,76,6.237795829772949],[120,293,77,6.239090442657471],[120,293,78,6.236435413360596],[120,293,79,6.228061199188232],[120,294,64,6.115761756896973],[120,294,65,6.119561195373535],[120,294,66,6.118229866027832],[120,294,67,6.1136064529418945],[120,294,68,6.109954357147217],[120,294,69,6.112156391143799],[120,294,70,6.122154235839844],[120,294,71,6.140125274658203],[120,294,72,6.169338226318359],[120,294,73,6.201080322265625],[120,294,74,6.222208023071289],[120,294,75,6.232969284057617],[120,294,76,6.237795829772949],[120,294,77,6.239090442657471],[120,294,78,6.236435413360596],[120,294,79,6.228061199188232],[120,295,64,6.115761756896973],[120,295,65,6.119561195373535],[120,295,66,6.118229866027832],[120,295,67,6.1136064529418945],[120,295,68,6.109954357147217],[120,295,69,6.112156391143799],[120,295,70,6.122154235839844],[120,295,71,6.140125274658203],[120,295,72,6.169338226318359],[120,295,73,6.201080322265625],[120,295,74,6.222208023071289],[120,295,75,6.232969284057617],[120,295,76,6.237795829772949],[120,295,77,6.239090442657471],[120,295,78,6.236435413360596],[120,295,79,6.228061199188232],[120,296,64,6.115761756896973],[120,296,65,6.119561195373535],[120,296,66,6.118229866027832],[120,296,67,6.1136064529418945],[120,296,68,6.109954357147217],[120,296,69,6.112156391143799],[120,296,70,6.122154235839844],[120,296,71,6.140125274658203],[120,296,72,6.169338226318359],[120,296,73,6.201080322265625],[120,296,74,6.222208023071289],[120,296,75,6.232969284057617],[120,296,76,6.237795829772949],[120,296,77,6.239090442657471],[120,296,78,6.236435413360596],[120,296,79,6.228061199188232],[120,297,64,6.115761756896973],[120,297,65,6.119561195373535],[120,297,66,6.118229866027832],[120,297,67,6.1136064529418945],[120,297,68,6.109954357147217],[120,297,69,6.112156391143799],[120,297,70,6.122154235839844],[120,297,71,6.140125274658203],[120,297,72,6.169338226318359],[120,297,73,6.201080322265625],[120,297,74,6.222208023071289],[120,297,75,6.232969284057617],[120,297,76,6.237795829772949],[120,297,77,6.239090442657471],[120,297,78,6.236435413360596],[120,297,79,6.228061199188232],[120,298,64,6.115761756896973],[120,298,65,6.119561195373535],[120,298,66,6.118229866027832],[120,298,67,6.1136064529418945],[120,298,68,6.109954357147217],[120,298,69,6.112156391143799],[120,298,70,6.122154235839844],[120,298,71,6.140125274658203],[120,298,72,6.169338226318359],[120,298,73,6.201080322265625],[120,298,74,6.222208023071289],[120,298,75,6.232969284057617],[120,298,76,6.237795829772949],[120,298,77,6.239090442657471],[120,298,78,6.236435413360596],[120,298,79,6.228061199188232],[120,299,64,6.115761756896973],[120,299,65,6.119561195373535],[120,299,66,6.118229866027832],[120,299,67,6.1136064529418945],[120,299,68,6.109954357147217],[120,299,69,6.112156391143799],[120,299,70,6.122154235839844],[120,299,71,6.140125274658203],[120,299,72,6.169338226318359],[120,299,73,6.201080322265625],[120,299,74,6.222208023071289],[120,299,75,6.232969284057617],[120,299,76,6.237795829772949],[120,299,77,6.239090442657471],[120,299,78,6.236435413360596],[120,299,79,6.228061199188232],[120,300,64,6.115761756896973],[120,300,65,6.119561195373535],[120,300,66,6.118229866027832],[120,300,67,6.1136064529418945],[120,300,68,6.109954357147217],[120,300,69,6.112156391143799],[120,300,70,6.122154235839844],[120,300,71,6.140125274658203],[120,300,72,6.169338226318359],[120,300,73,6.201080322265625],[120,300,74,6.222208023071289],[120,300,75,6.232969284057617],[120,300,76,6.237795829772949],[120,300,77,6.239090442657471],[120,300,78,6.236435413360596],[120,300,79,6.228061199188232],[120,301,64,6.115761756896973],[120,301,65,6.119561195373535],[120,301,66,6.118229866027832],[120,301,67,6.1136064529418945],[120,301,68,6.109954357147217],[120,301,69,6.112156391143799],[120,301,70,6.122154235839844],[120,301,71,6.140125274658203],[120,301,72,6.169338226318359],[120,301,73,6.201080322265625],[120,301,74,6.222208023071289],[120,301,75,6.232969284057617],[120,301,76,6.237795829772949],[120,301,77,6.239090442657471],[120,301,78,6.236435413360596],[120,301,79,6.228061199188232],[120,302,64,6.115761756896973],[120,302,65,6.119561195373535],[120,302,66,6.118229866027832],[120,302,67,6.1136064529418945],[120,302,68,6.109954357147217],[120,302,69,6.112156391143799],[120,302,70,6.122154235839844],[120,302,71,6.140125274658203],[120,302,72,6.169338226318359],[120,302,73,6.201080322265625],[120,302,74,6.222208023071289],[120,302,75,6.232969284057617],[120,302,76,6.237795829772949],[120,302,77,6.239090442657471],[120,302,78,6.236435413360596],[120,302,79,6.228061199188232],[120,303,64,6.115761756896973],[120,303,65,6.119561195373535],[120,303,66,6.118229866027832],[120,303,67,6.1136064529418945],[120,303,68,6.109954357147217],[120,303,69,6.112156391143799],[120,303,70,6.122154235839844],[120,303,71,6.140125274658203],[120,303,72,6.169338226318359],[120,303,73,6.201080322265625],[120,303,74,6.222208023071289],[120,303,75,6.232969284057617],[120,303,76,6.237795829772949],[120,303,77,6.239090442657471],[120,303,78,6.236435413360596],[120,303,79,6.228061199188232],[120,304,64,6.115761756896973],[120,304,65,6.119561195373535],[120,304,66,6.118229866027832],[120,304,67,6.1136064529418945],[120,304,68,6.109954357147217],[120,304,69,6.112156391143799],[120,304,70,6.122154235839844],[120,304,71,6.140125274658203],[120,304,72,6.169338226318359],[120,304,73,6.201080322265625],[120,304,74,6.222208023071289],[120,304,75,6.232969284057617],[120,304,76,6.237795829772949],[120,304,77,6.239090442657471],[120,304,78,6.236435413360596],[120,304,79,6.228061199188232],[120,305,64,6.115761756896973],[120,305,65,6.119561195373535],[120,305,66,6.118229866027832],[120,305,67,6.1136064529418945],[120,305,68,6.109954357147217],[120,305,69,6.112156391143799],[120,305,70,6.122154235839844],[120,305,71,6.140125274658203],[120,305,72,6.169338226318359],[120,305,73,6.201080322265625],[120,305,74,6.222208023071289],[120,305,75,6.232969284057617],[120,305,76,6.237795829772949],[120,305,77,6.239090442657471],[120,305,78,6.236435413360596],[120,305,79,6.228061199188232],[120,306,64,6.115761756896973],[120,306,65,6.119561195373535],[120,306,66,6.118229866027832],[120,306,67,6.1136064529418945],[120,306,68,6.109954357147217],[120,306,69,6.112156391143799],[120,306,70,6.122154235839844],[120,306,71,6.140125274658203],[120,306,72,6.169338226318359],[120,306,73,6.201080322265625],[120,306,74,6.222208023071289],[120,306,75,6.232969284057617],[120,306,76,6.237795829772949],[120,306,77,6.239090442657471],[120,306,78,6.236435413360596],[120,306,79,6.228061199188232],[120,307,64,6.115761756896973],[120,307,65,6.119561195373535],[120,307,66,6.118229866027832],[120,307,67,6.1136064529418945],[120,307,68,6.109954357147217],[120,307,69,6.112156391143799],[120,307,70,6.122154235839844],[120,307,71,6.140125274658203],[120,307,72,6.169338226318359],[120,307,73,6.201080322265625],[120,307,74,6.222208023071289],[120,307,75,6.232969284057617],[120,307,76,6.237795829772949],[120,307,77,6.239090442657471],[120,307,78,6.236435413360596],[120,307,79,6.228061199188232],[120,308,64,6.115761756896973],[120,308,65,6.119561195373535],[120,308,66,6.118229866027832],[120,308,67,6.1136064529418945],[120,308,68,6.109954357147217],[120,308,69,6.112156391143799],[120,308,70,6.122154235839844],[120,308,71,6.140125274658203],[120,308,72,6.169338226318359],[120,308,73,6.201080322265625],[120,308,74,6.222208023071289],[120,308,75,6.232969284057617],[120,308,76,6.237795829772949],[120,308,77,6.239090442657471],[120,308,78,6.236435413360596],[120,308,79,6.228061199188232],[120,309,64,6.115761756896973],[120,309,65,6.119561195373535],[120,309,66,6.118229866027832],[120,309,67,6.1136064529418945],[120,309,68,6.109954357147217],[120,309,69,6.112156391143799],[120,309,70,6.122154235839844],[120,309,71,6.140125274658203],[120,309,72,6.169338226318359],[120,309,73,6.201080322265625],[120,309,74,6.222208023071289],[120,309,75,6.232969284057617],[120,309,76,6.237795829772949],[120,309,77,6.239090442657471],[120,309,78,6.236435413360596],[120,309,79,6.228061199188232],[120,310,64,6.115761756896973],[120,310,65,6.119561195373535],[120,310,66,6.118229866027832],[120,310,67,6.1136064529418945],[120,310,68,6.109954357147217],[120,310,69,6.112156391143799],[120,310,70,6.122154235839844],[120,310,71,6.140125274658203],[120,310,72,6.169338226318359],[120,310,73,6.201080322265625],[120,310,74,6.222208023071289],[120,310,75,6.232969284057617],[120,310,76,6.237795829772949],[120,310,77,6.239090442657471],[120,310,78,6.236435413360596],[120,310,79,6.228061199188232],[120,311,64,6.115761756896973],[120,311,65,6.119561195373535],[120,311,66,6.118229866027832],[120,311,67,6.1136064529418945],[120,311,68,6.109954357147217],[120,311,69,6.112156391143799],[120,311,70,6.122154235839844],[120,311,71,6.140125274658203],[120,311,72,6.169338226318359],[120,311,73,6.201080322265625],[120,311,74,6.222208023071289],[120,311,75,6.232969284057617],[120,311,76,6.237795829772949],[120,311,77,6.239090442657471],[120,311,78,6.236435413360596],[120,311,79,6.228061199188232],[120,312,64,6.115761756896973],[120,312,65,6.119561195373535],[120,312,66,6.118229866027832],[120,312,67,6.1136064529418945],[120,312,68,6.109954357147217],[120,312,69,6.112156391143799],[120,312,70,6.122154235839844],[120,312,71,6.140125274658203],[120,312,72,6.169338226318359],[120,312,73,6.201080322265625],[120,312,74,6.222208023071289],[120,312,75,6.232969284057617],[120,312,76,6.237795829772949],[120,312,77,6.239090442657471],[120,312,78,6.236435413360596],[120,312,79,6.228061199188232],[120,313,64,6.115761756896973],[120,313,65,6.119561195373535],[120,313,66,6.118229866027832],[120,313,67,6.1136064529418945],[120,313,68,6.109954357147217],[120,313,69,6.112156391143799],[120,313,70,6.122154235839844],[120,313,71,6.140125274658203],[120,313,72,6.169338226318359],[120,313,73,6.201080322265625],[120,313,74,6.222208023071289],[120,313,75,6.232969284057617],[120,313,76,6.237795829772949],[120,313,77,6.239090442657471],[120,313,78,6.236435413360596],[120,313,79,6.228061199188232],[120,314,64,6.115761756896973],[120,314,65,6.119561195373535],[120,314,66,6.118229866027832],[120,314,67,6.1136064529418945],[120,314,68,6.109954357147217],[120,314,69,6.112156391143799],[120,314,70,6.122154235839844],[120,314,71,6.140125274658203],[120,314,72,6.169338226318359],[120,314,73,6.201080322265625],[120,314,74,6.222208023071289],[120,314,75,6.232969284057617],[120,314,76,6.237795829772949],[120,314,77,6.239090442657471],[120,314,78,6.236435413360596],[120,314,79,6.228061199188232],[120,315,64,6.115761756896973],[120,315,65,6.119561195373535],[120,315,66,6.118229866027832],[120,315,67,6.1136064529418945],[120,315,68,6.109954357147217],[120,315,69,6.112156391143799],[120,315,70,6.122154235839844],[120,315,71,6.140125274658203],[120,315,72,6.169338226318359],[120,315,73,6.201080322265625],[120,315,74,6.222208023071289],[120,315,75,6.232969284057617],[120,315,76,6.237795829772949],[120,315,77,6.239090442657471],[120,315,78,6.236435413360596],[120,315,79,6.228061199188232],[120,316,64,6.115761756896973],[120,316,65,6.119561195373535],[120,316,66,6.118229866027832],[120,316,67,6.1136064529418945],[120,316,68,6.109954357147217],[120,316,69,6.112156391143799],[120,316,70,6.122154235839844],[120,316,71,6.140125274658203],[120,316,72,6.169338226318359],[120,316,73,6.201080322265625],[120,316,74,6.222208023071289],[120,316,75,6.232969284057617],[120,316,76,6.237795829772949],[120,316,77,6.239090442657471],[120,316,78,6.236435413360596],[120,316,79,6.228061199188232],[120,317,64,6.115761756896973],[120,317,65,6.119561195373535],[120,317,66,6.118229866027832],[120,317,67,6.1136064529418945],[120,317,68,6.109954357147217],[120,317,69,6.112156391143799],[120,317,70,6.122154235839844],[120,317,71,6.140125274658203],[120,317,72,6.169338226318359],[120,317,73,6.201080322265625],[120,317,74,6.222208023071289],[120,317,75,6.232969284057617],[120,317,76,6.237795829772949],[120,317,77,6.239090442657471],[120,317,78,6.236435413360596],[120,317,79,6.228061199188232],[120,318,64,6.115761756896973],[120,318,65,6.119561195373535],[120,318,66,6.118229866027832],[120,318,67,6.1136064529418945],[120,318,68,6.109954357147217],[120,318,69,6.112156391143799],[120,318,70,6.122154235839844],[120,318,71,6.140125274658203],[120,318,72,6.169338226318359],[120,318,73,6.201080322265625],[120,318,74,6.222208023071289],[120,318,75,6.232969284057617],[120,318,76,6.237795829772949],[120,318,77,6.239090442657471],[120,318,78,6.236435413360596],[120,318,79,6.228061199188232],[120,319,64,6.115761756896973],[120,319,65,6.119561195373535],[120,319,66,6.118229866027832],[120,319,67,6.1136064529418945],[120,319,68,6.109954357147217],[120,319,69,6.112156391143799],[120,319,70,6.122154235839844],[120,319,71,6.140125274658203],[120,319,72,6.169338226318359],[120,319,73,6.201080322265625],[120,319,74,6.222208023071289],[120,319,75,6.232969284057617],[120,319,76,6.237795829772949],[120,319,77,6.239090442657471],[120,319,78,6.236435413360596],[120,319,79,6.228061199188232],[121,-64,64,6.132693767547607],[121,-64,65,6.13508415222168],[121,-64,66,6.132391929626465],[121,-64,67,6.1280012130737305],[121,-64,68,6.126828670501709],[121,-64,69,6.133684158325195],[121,-64,70,6.1502604484558105],[121,-64,71,6.174976825714111],[121,-64,72,6.206064701080322],[121,-64,73,6.230831146240234],[121,-64,74,6.244339466094971],[121,-64,75,6.249833583831787],[121,-64,76,6.2509636878967285],[121,-64,77,6.249726295471191],[121,-64,78,6.245981216430664],[121,-64,79,6.23707914352417],[121,-63,64,6.132693767547607],[121,-63,65,6.13508415222168],[121,-63,66,6.132391929626465],[121,-63,67,6.1280012130737305],[121,-63,68,6.126828670501709],[121,-63,69,6.133684158325195],[121,-63,70,6.1502604484558105],[121,-63,71,6.174976825714111],[121,-63,72,6.206064701080322],[121,-63,73,6.230831146240234],[121,-63,74,6.244339466094971],[121,-63,75,6.249833583831787],[121,-63,76,6.2509636878967285],[121,-63,77,6.249726295471191],[121,-63,78,6.245981216430664],[121,-63,79,6.23707914352417],[121,-62,64,6.132693767547607],[121,-62,65,6.13508415222168],[121,-62,66,6.132391929626465],[121,-62,67,6.1280012130737305],[121,-62,68,6.126828670501709],[121,-62,69,6.133684158325195],[121,-62,70,6.1502604484558105],[121,-62,71,6.174976825714111],[121,-62,72,6.206064701080322],[121,-62,73,6.230831146240234],[121,-62,74,6.244339466094971],[121,-62,75,6.249833583831787],[121,-62,76,6.2509636878967285],[121,-62,77,6.249726295471191],[121,-62,78,6.245981216430664],[121,-62,79,6.23707914352417],[121,-61,64,6.132693767547607],[121,-61,65,6.13508415222168],[121,-61,66,6.132391929626465],[121,-61,67,6.1280012130737305],[121,-61,68,6.126828670501709],[121,-61,69,6.133684158325195],[121,-61,70,6.1502604484558105],[121,-61,71,6.174976825714111],[121,-61,72,6.206064701080322],[121,-61,73,6.230831146240234],[121,-61,74,6.244339466094971],[121,-61,75,6.249833583831787],[121,-61,76,6.2509636878967285],[121,-61,77,6.249726295471191],[121,-61,78,6.245981216430664],[121,-61,79,6.23707914352417],[121,-60,64,6.132693767547607],[121,-60,65,6.13508415222168],[121,-60,66,6.132391929626465],[121,-60,67,6.1280012130737305],[121,-60,68,6.126828670501709],[121,-60,69,6.133684158325195],[121,-60,70,6.1502604484558105],[121,-60,71,6.174976825714111],[121,-60,72,6.206064701080322],[121,-60,73,6.230831146240234],[121,-60,74,6.244339466094971],[121,-60,75,6.249833583831787],[121,-60,76,6.2509636878967285],[121,-60,77,6.249726295471191],[121,-60,78,6.245981216430664],[121,-60,79,6.23707914352417],[121,-59,64,6.132693767547607],[121,-59,65,6.13508415222168],[121,-59,66,6.132391929626465],[121,-59,67,6.1280012130737305],[121,-59,68,6.126828670501709],[121,-59,69,6.133684158325195],[121,-59,70,6.1502604484558105],[121,-59,71,6.174976825714111],[121,-59,72,6.206064701080322],[121,-59,73,6.230831146240234],[121,-59,74,6.244339466094971],[121,-59,75,6.249833583831787],[121,-59,76,6.2509636878967285],[121,-59,77,6.249726295471191],[121,-59,78,6.245981216430664],[121,-59,79,6.23707914352417],[121,-58,64,6.132693767547607],[121,-58,65,6.13508415222168],[121,-58,66,6.132391929626465],[121,-58,67,6.1280012130737305],[121,-58,68,6.126828670501709],[121,-58,69,6.133684158325195],[121,-58,70,6.1502604484558105],[121,-58,71,6.174976825714111],[121,-58,72,6.206064701080322],[121,-58,73,6.230831146240234],[121,-58,74,6.244339466094971],[121,-58,75,6.249833583831787],[121,-58,76,6.2509636878967285],[121,-58,77,6.249726295471191],[121,-58,78,6.245981216430664],[121,-58,79,6.23707914352417],[121,-57,64,6.132693767547607],[121,-57,65,6.13508415222168],[121,-57,66,6.132391929626465],[121,-57,67,6.1280012130737305],[121,-57,68,6.126828670501709],[121,-57,69,6.133684158325195],[121,-57,70,6.1502604484558105],[121,-57,71,6.174976825714111],[121,-57,72,6.206064701080322],[121,-57,73,6.230831146240234],[121,-57,74,6.244339466094971],[121,-57,75,6.249833583831787],[121,-57,76,6.2509636878967285],[121,-57,77,6.249726295471191],[121,-57,78,6.245981216430664],[121,-57,79,6.23707914352417],[121,-56,64,6.132693767547607],[121,-56,65,6.13508415222168],[121,-56,66,6.132391929626465],[121,-56,67,6.1280012130737305],[121,-56,68,6.126828670501709],[121,-56,69,6.133684158325195],[121,-56,70,6.1502604484558105],[121,-56,71,6.174976825714111],[121,-56,72,6.206064701080322],[121,-56,73,6.230831146240234],[121,-56,74,6.244339466094971],[121,-56,75,6.249833583831787],[121,-56,76,6.2509636878967285],[121,-56,77,6.249726295471191],[121,-56,78,6.245981216430664],[121,-56,79,6.23707914352417],[121,-55,64,6.132693767547607],[121,-55,65,6.13508415222168],[121,-55,66,6.132391929626465],[121,-55,67,6.1280012130737305],[121,-55,68,6.126828670501709],[121,-55,69,6.133684158325195],[121,-55,70,6.1502604484558105],[121,-55,71,6.174976825714111],[121,-55,72,6.206064701080322],[121,-55,73,6.230831146240234],[121,-55,74,6.244339466094971],[121,-55,75,6.249833583831787],[121,-55,76,6.2509636878967285],[121,-55,77,6.249726295471191],[121,-55,78,6.245981216430664],[121,-55,79,6.23707914352417],[121,-54,64,6.132693767547607],[121,-54,65,6.13508415222168],[121,-54,66,6.132391929626465],[121,-54,67,6.1280012130737305],[121,-54,68,6.126828670501709],[121,-54,69,6.133684158325195],[121,-54,70,6.1502604484558105],[121,-54,71,6.174976825714111],[121,-54,72,6.206064701080322],[121,-54,73,6.230831146240234],[121,-54,74,6.244339466094971],[121,-54,75,6.249833583831787],[121,-54,76,6.2509636878967285],[121,-54,77,6.249726295471191],[121,-54,78,6.245981216430664],[121,-54,79,6.23707914352417],[121,-53,64,6.132693767547607],[121,-53,65,6.13508415222168],[121,-53,66,6.132391929626465],[121,-53,67,6.1280012130737305],[121,-53,68,6.126828670501709],[121,-53,69,6.133684158325195],[121,-53,70,6.1502604484558105],[121,-53,71,6.174976825714111],[121,-53,72,6.206064701080322],[121,-53,73,6.230831146240234],[121,-53,74,6.244339466094971],[121,-53,75,6.249833583831787],[121,-53,76,6.2509636878967285],[121,-53,77,6.249726295471191],[121,-53,78,6.245981216430664],[121,-53,79,6.23707914352417],[121,-52,64,6.132693767547607],[121,-52,65,6.13508415222168],[121,-52,66,6.132391929626465],[121,-52,67,6.1280012130737305],[121,-52,68,6.126828670501709],[121,-52,69,6.133684158325195],[121,-52,70,6.1502604484558105],[121,-52,71,6.174976825714111],[121,-52,72,6.206064701080322],[121,-52,73,6.230831146240234],[121,-52,74,6.244339466094971],[121,-52,75,6.249833583831787],[121,-52,76,6.2509636878967285],[121,-52,77,6.249726295471191],[121,-52,78,6.245981216430664],[121,-52,79,6.23707914352417],[121,-51,64,6.132693767547607],[121,-51,65,6.13508415222168],[121,-51,66,6.132391929626465],[121,-51,67,6.1280012130737305],[121,-51,68,6.126828670501709],[121,-51,69,6.133684158325195],[121,-51,70,6.1502604484558105],[121,-51,71,6.174976825714111],[121,-51,72,6.206064701080322],[121,-51,73,6.230831146240234],[121,-51,74,6.244339466094971],[121,-51,75,6.249833583831787],[121,-51,76,6.2509636878967285],[121,-51,77,6.249726295471191],[121,-51,78,6.245981216430664],[121,-51,79,6.23707914352417],[121,-50,64,6.132693767547607],[121,-50,65,6.13508415222168],[121,-50,66,6.132391929626465],[121,-50,67,6.1280012130737305],[121,-50,68,6.126828670501709],[121,-50,69,6.133684158325195],[121,-50,70,6.1502604484558105],[121,-50,71,6.174976825714111],[121,-50,72,6.206064701080322],[121,-50,73,6.230831146240234],[121,-50,74,6.244339466094971],[121,-50,75,6.249833583831787],[121,-50,76,6.2509636878967285],[121,-50,77,6.249726295471191],[121,-50,78,6.245981216430664],[121,-50,79,6.23707914352417],[121,-49,64,6.132693767547607],[121,-49,65,6.13508415222168],[121,-49,66,6.132391929626465],[121,-49,67,6.1280012130737305],[121,-49,68,6.126828670501709],[121,-49,69,6.133684158325195],[121,-49,70,6.1502604484558105],[121,-49,71,6.174976825714111],[121,-49,72,6.206064701080322],[121,-49,73,6.230831146240234],[121,-49,74,6.244339466094971],[121,-49,75,6.249833583831787],[121,-49,76,6.2509636878967285],[121,-49,77,6.249726295471191],[121,-49,78,6.245981216430664],[121,-49,79,6.23707914352417],[121,-48,64,6.132693767547607],[121,-48,65,6.13508415222168],[121,-48,66,6.132391929626465],[121,-48,67,6.1280012130737305],[121,-48,68,6.126828670501709],[121,-48,69,6.133684158325195],[121,-48,70,6.1502604484558105],[121,-48,71,6.174976825714111],[121,-48,72,6.206064701080322],[121,-48,73,6.230831146240234],[121,-48,74,6.244339466094971],[121,-48,75,6.249833583831787],[121,-48,76,6.2509636878967285],[121,-48,77,6.249726295471191],[121,-48,78,6.245981216430664],[121,-48,79,6.23707914352417],[121,-47,64,6.132693767547607],[121,-47,65,6.13508415222168],[121,-47,66,6.132391929626465],[121,-47,67,6.1280012130737305],[121,-47,68,6.126828670501709],[121,-47,69,6.133684158325195],[121,-47,70,6.1502604484558105],[121,-47,71,6.174976825714111],[121,-47,72,6.206064701080322],[121,-47,73,6.230831146240234],[121,-47,74,6.244339466094971],[121,-47,75,6.249833583831787],[121,-47,76,6.2509636878967285],[121,-47,77,6.249726295471191],[121,-47,78,6.245981216430664],[121,-47,79,6.23707914352417],[121,-46,64,6.132693767547607],[121,-46,65,6.13508415222168],[121,-46,66,6.132391929626465],[121,-46,67,6.1280012130737305],[121,-46,68,6.126828670501709],[121,-46,69,6.133684158325195],[121,-46,70,6.1502604484558105],[121,-46,71,6.174976825714111],[121,-46,72,6.206064701080322],[121,-46,73,6.230831146240234],[121,-46,74,6.244339466094971],[121,-46,75,6.249833583831787],[121,-46,76,6.2509636878967285],[121,-46,77,6.249726295471191],[121,-46,78,6.245981216430664],[121,-46,79,6.23707914352417],[121,-45,64,6.132693767547607],[121,-45,65,6.13508415222168],[121,-45,66,6.132391929626465],[121,-45,67,6.1280012130737305],[121,-45,68,6.126828670501709],[121,-45,69,6.133684158325195],[121,-45,70,6.1502604484558105],[121,-45,71,6.174976825714111],[121,-45,72,6.206064701080322],[121,-45,73,6.230831146240234],[121,-45,74,6.244339466094971],[121,-45,75,6.249833583831787],[121,-45,76,6.2509636878967285],[121,-45,77,6.249726295471191],[121,-45,78,6.245981216430664],[121,-45,79,6.23707914352417],[121,-44,64,6.132693767547607],[121,-44,65,6.13508415222168],[121,-44,66,6.132391929626465],[121,-44,67,6.1280012130737305],[121,-44,68,6.126828670501709],[121,-44,69,6.133684158325195],[121,-44,70,6.1502604484558105],[121,-44,71,6.174976825714111],[121,-44,72,6.206064701080322],[121,-44,73,6.230831146240234],[121,-44,74,6.244339466094971],[121,-44,75,6.249833583831787],[121,-44,76,6.2509636878967285],[121,-44,77,6.249726295471191],[121,-44,78,6.245981216430664],[121,-44,79,6.23707914352417],[121,-43,64,6.132693767547607],[121,-43,65,6.13508415222168],[121,-43,66,6.132391929626465],[121,-43,67,6.1280012130737305],[121,-43,68,6.126828670501709],[121,-43,69,6.133684158325195],[121,-43,70,6.1502604484558105],[121,-43,71,6.174976825714111],[121,-43,72,6.206064701080322],[121,-43,73,6.230831146240234],[121,-43,74,6.244339466094971],[121,-43,75,6.249833583831787],[121,-43,76,6.2509636878967285],[121,-43,77,6.249726295471191],[121,-43,78,6.245981216430664],[121,-43,79,6.23707914352417],[121,-42,64,6.132693767547607],[121,-42,65,6.13508415222168],[121,-42,66,6.132391929626465],[121,-42,67,6.1280012130737305],[121,-42,68,6.126828670501709],[121,-42,69,6.133684158325195],[121,-42,70,6.1502604484558105],[121,-42,71,6.174976825714111],[121,-42,72,6.206064701080322],[121,-42,73,6.230831146240234],[121,-42,74,6.244339466094971],[121,-42,75,6.249833583831787],[121,-42,76,6.2509636878967285],[121,-42,77,6.249726295471191],[121,-42,78,6.245981216430664],[121,-42,79,6.23707914352417],[121,-41,64,6.132693767547607],[121,-41,65,6.13508415222168],[121,-41,66,6.132391929626465],[121,-41,67,6.1280012130737305],[121,-41,68,6.126828670501709],[121,-41,69,6.133684158325195],[121,-41,70,6.1502604484558105],[121,-41,71,6.174976825714111],[121,-41,72,6.206064701080322],[121,-41,73,6.230831146240234],[121,-41,74,6.244339466094971],[121,-41,75,6.249833583831787],[121,-41,76,6.2509636878967285],[121,-41,77,6.249726295471191],[121,-41,78,6.245981216430664],[121,-41,79,6.23707914352417],[121,-40,64,6.132693767547607],[121,-40,65,6.13508415222168],[121,-40,66,6.132391929626465],[121,-40,67,6.1280012130737305],[121,-40,68,6.126828670501709],[121,-40,69,6.133684158325195],[121,-40,70,6.1502604484558105],[121,-40,71,6.174976825714111],[121,-40,72,6.206064701080322],[121,-40,73,6.230831146240234],[121,-40,74,6.244339466094971],[121,-40,75,6.249833583831787],[121,-40,76,6.2509636878967285],[121,-40,77,6.249726295471191],[121,-40,78,6.245981216430664],[121,-40,79,6.23707914352417],[121,-39,64,6.132693767547607],[121,-39,65,6.13508415222168],[121,-39,66,6.132391929626465],[121,-39,67,6.1280012130737305],[121,-39,68,6.126828670501709],[121,-39,69,6.133684158325195],[121,-39,70,6.1502604484558105],[121,-39,71,6.174976825714111],[121,-39,72,6.206064701080322],[121,-39,73,6.230831146240234],[121,-39,74,6.244339466094971],[121,-39,75,6.249833583831787],[121,-39,76,6.2509636878967285],[121,-39,77,6.249726295471191],[121,-39,78,6.245981216430664],[121,-39,79,6.23707914352417],[121,-38,64,6.132693767547607],[121,-38,65,6.13508415222168],[121,-38,66,6.132391929626465],[121,-38,67,6.1280012130737305],[121,-38,68,6.126828670501709],[121,-38,69,6.133684158325195],[121,-38,70,6.1502604484558105],[121,-38,71,6.174976825714111],[121,-38,72,6.206064701080322],[121,-38,73,6.230831146240234],[121,-38,74,6.244339466094971],[121,-38,75,6.249833583831787],[121,-38,76,6.2509636878967285],[121,-38,77,6.249726295471191],[121,-38,78,6.245981216430664],[121,-38,79,6.23707914352417],[121,-37,64,6.132693767547607],[121,-37,65,6.13508415222168],[121,-37,66,6.132391929626465],[121,-37,67,6.1280012130737305],[121,-37,68,6.126828670501709],[121,-37,69,6.133684158325195],[121,-37,70,6.1502604484558105],[121,-37,71,6.174976825714111],[121,-37,72,6.206064701080322],[121,-37,73,6.230831146240234],[121,-37,74,6.244339466094971],[121,-37,75,6.249833583831787],[121,-37,76,6.2509636878967285],[121,-37,77,6.249726295471191],[121,-37,78,6.245981216430664],[121,-37,79,6.23707914352417],[121,-36,64,6.132693767547607],[121,-36,65,6.13508415222168],[121,-36,66,6.132391929626465],[121,-36,67,6.1280012130737305],[121,-36,68,6.126828670501709],[121,-36,69,6.133684158325195],[121,-36,70,6.1502604484558105],[121,-36,71,6.174976825714111],[121,-36,72,6.206064701080322],[121,-36,73,6.230831146240234],[121,-36,74,6.244339466094971],[121,-36,75,6.249833583831787],[121,-36,76,6.2509636878967285],[121,-36,77,6.249726295471191],[121,-36,78,6.245981216430664],[121,-36,79,6.23707914352417],[121,-35,64,6.132693767547607],[121,-35,65,6.13508415222168],[121,-35,66,6.132391929626465],[121,-35,67,6.1280012130737305],[121,-35,68,6.126828670501709],[121,-35,69,6.133684158325195],[121,-35,70,6.1502604484558105],[121,-35,71,6.174976825714111],[121,-35,72,6.206064701080322],[121,-35,73,6.230831146240234],[121,-35,74,6.244339466094971],[121,-35,75,6.249833583831787],[121,-35,76,6.2509636878967285],[121,-35,77,6.249726295471191],[121,-35,78,6.245981216430664],[121,-35,79,6.23707914352417],[121,-34,64,6.132693767547607],[121,-34,65,6.13508415222168],[121,-34,66,6.132391929626465],[121,-34,67,6.1280012130737305],[121,-34,68,6.126828670501709],[121,-34,69,6.133684158325195],[121,-34,70,6.1502604484558105],[121,-34,71,6.174976825714111],[121,-34,72,6.206064701080322],[121,-34,73,6.230831146240234],[121,-34,74,6.244339466094971],[121,-34,75,6.249833583831787],[121,-34,76,6.2509636878967285],[121,-34,77,6.249726295471191],[121,-34,78,6.245981216430664],[121,-34,79,6.23707914352417],[121,-33,64,6.132693767547607],[121,-33,65,6.13508415222168],[121,-33,66,6.132391929626465],[121,-33,67,6.1280012130737305],[121,-33,68,6.126828670501709],[121,-33,69,6.133684158325195],[121,-33,70,6.1502604484558105],[121,-33,71,6.174976825714111],[121,-33,72,6.206064701080322],[121,-33,73,6.230831146240234],[121,-33,74,6.244339466094971],[121,-33,75,6.249833583831787],[121,-33,76,6.2509636878967285],[121,-33,77,6.249726295471191],[121,-33,78,6.245981216430664],[121,-33,79,6.23707914352417],[121,-32,64,6.132693767547607],[121,-32,65,6.13508415222168],[121,-32,66,6.132391929626465],[121,-32,67,6.1280012130737305],[121,-32,68,6.126828670501709],[121,-32,69,6.133684158325195],[121,-32,70,6.1502604484558105],[121,-32,71,6.174976825714111],[121,-32,72,6.206064701080322],[121,-32,73,6.230831146240234],[121,-32,74,6.244339466094971],[121,-32,75,6.249833583831787],[121,-32,76,6.2509636878967285],[121,-32,77,6.249726295471191],[121,-32,78,6.245981216430664],[121,-32,79,6.23707914352417],[121,-31,64,6.132693767547607],[121,-31,65,6.13508415222168],[121,-31,66,6.132391929626465],[121,-31,67,6.1280012130737305],[121,-31,68,6.126828670501709],[121,-31,69,6.133684158325195],[121,-31,70,6.1502604484558105],[121,-31,71,6.174976825714111],[121,-31,72,6.206064701080322],[121,-31,73,6.230831146240234],[121,-31,74,6.244339466094971],[121,-31,75,6.249833583831787],[121,-31,76,6.2509636878967285],[121,-31,77,6.249726295471191],[121,-31,78,6.245981216430664],[121,-31,79,6.23707914352417],[121,-30,64,6.132693767547607],[121,-30,65,6.13508415222168],[121,-30,66,6.132391929626465],[121,-30,67,6.1280012130737305],[121,-30,68,6.126828670501709],[121,-30,69,6.133684158325195],[121,-30,70,6.1502604484558105],[121,-30,71,6.174976825714111],[121,-30,72,6.206064701080322],[121,-30,73,6.230831146240234],[121,-30,74,6.244339466094971],[121,-30,75,6.249833583831787],[121,-30,76,6.2509636878967285],[121,-30,77,6.249726295471191],[121,-30,78,6.245981216430664],[121,-30,79,6.23707914352417],[121,-29,64,6.132693767547607],[121,-29,65,6.13508415222168],[121,-29,66,6.132391929626465],[121,-29,67,6.1280012130737305],[121,-29,68,6.126828670501709],[121,-29,69,6.133684158325195],[121,-29,70,6.1502604484558105],[121,-29,71,6.174976825714111],[121,-29,72,6.206064701080322],[121,-29,73,6.230831146240234],[121,-29,74,6.244339466094971],[121,-29,75,6.249833583831787],[121,-29,76,6.2509636878967285],[121,-29,77,6.249726295471191],[121,-29,78,6.245981216430664],[121,-29,79,6.23707914352417],[121,-28,64,6.132693767547607],[121,-28,65,6.13508415222168],[121,-28,66,6.132391929626465],[121,-28,67,6.1280012130737305],[121,-28,68,6.126828670501709],[121,-28,69,6.133684158325195],[121,-28,70,6.1502604484558105],[121,-28,71,6.174976825714111],[121,-28,72,6.206064701080322],[121,-28,73,6.230831146240234],[121,-28,74,6.244339466094971],[121,-28,75,6.249833583831787],[121,-28,76,6.2509636878967285],[121,-28,77,6.249726295471191],[121,-28,78,6.245981216430664],[121,-28,79,6.23707914352417],[121,-27,64,6.132693767547607],[121,-27,65,6.13508415222168],[121,-27,66,6.132391929626465],[121,-27,67,6.1280012130737305],[121,-27,68,6.126828670501709],[121,-27,69,6.133684158325195],[121,-27,70,6.1502604484558105],[121,-27,71,6.174976825714111],[121,-27,72,6.206064701080322],[121,-27,73,6.230831146240234],[121,-27,74,6.244339466094971],[121,-27,75,6.249833583831787],[121,-27,76,6.2509636878967285],[121,-27,77,6.249726295471191],[121,-27,78,6.245981216430664],[121,-27,79,6.23707914352417],[121,-26,64,6.132693767547607],[121,-26,65,6.13508415222168],[121,-26,66,6.132391929626465],[121,-26,67,6.1280012130737305],[121,-26,68,6.126828670501709],[121,-26,69,6.133684158325195],[121,-26,70,6.1502604484558105],[121,-26,71,6.174976825714111],[121,-26,72,6.206064701080322],[121,-26,73,6.230831146240234],[121,-26,74,6.244339466094971],[121,-26,75,6.249833583831787],[121,-26,76,6.2509636878967285],[121,-26,77,6.249726295471191],[121,-26,78,6.245981216430664],[121,-26,79,6.23707914352417],[121,-25,64,6.132693767547607],[121,-25,65,6.13508415222168],[121,-25,66,6.132391929626465],[121,-25,67,6.1280012130737305],[121,-25,68,6.126828670501709],[121,-25,69,6.133684158325195],[121,-25,70,6.1502604484558105],[121,-25,71,6.174976825714111],[121,-25,72,6.206064701080322],[121,-25,73,6.230831146240234],[121,-25,74,6.244339466094971],[121,-25,75,6.249833583831787],[121,-25,76,6.2509636878967285],[121,-25,77,6.249726295471191],[121,-25,78,6.245981216430664],[121,-25,79,6.23707914352417],[121,-24,64,6.132693767547607],[121,-24,65,6.13508415222168],[121,-24,66,6.132391929626465],[121,-24,67,6.1280012130737305],[121,-24,68,6.126828670501709],[121,-24,69,6.133684158325195],[121,-24,70,6.1502604484558105],[121,-24,71,6.174976825714111],[121,-24,72,6.206064701080322],[121,-24,73,6.230831146240234],[121,-24,74,6.244339466094971],[121,-24,75,6.249833583831787],[121,-24,76,6.2509636878967285],[121,-24,77,6.249726295471191],[121,-24,78,6.245981216430664],[121,-24,79,6.23707914352417],[121,-23,64,6.132693767547607],[121,-23,65,6.13508415222168],[121,-23,66,6.132391929626465],[121,-23,67,6.1280012130737305],[121,-23,68,6.126828670501709],[121,-23,69,6.133684158325195],[121,-23,70,6.1502604484558105],[121,-23,71,6.174976825714111],[121,-23,72,6.206064701080322],[121,-23,73,6.230831146240234],[121,-23,74,6.244339466094971],[121,-23,75,6.249833583831787],[121,-23,76,6.2509636878967285],[121,-23,77,6.249726295471191],[121,-23,78,6.245981216430664],[121,-23,79,6.23707914352417],[121,-22,64,6.132693767547607],[121,-22,65,6.13508415222168],[121,-22,66,6.132391929626465],[121,-22,67,6.1280012130737305],[121,-22,68,6.126828670501709],[121,-22,69,6.133684158325195],[121,-22,70,6.1502604484558105],[121,-22,71,6.174976825714111],[121,-22,72,6.206064701080322],[121,-22,73,6.230831146240234],[121,-22,74,6.244339466094971],[121,-22,75,6.249833583831787],[121,-22,76,6.2509636878967285],[121,-22,77,6.249726295471191],[121,-22,78,6.245981216430664],[121,-22,79,6.23707914352417],[121,-21,64,6.132693767547607],[121,-21,65,6.13508415222168],[121,-21,66,6.132391929626465],[121,-21,67,6.1280012130737305],[121,-21,68,6.126828670501709],[121,-21,69,6.133684158325195],[121,-21,70,6.1502604484558105],[121,-21,71,6.174976825714111],[121,-21,72,6.206064701080322],[121,-21,73,6.230831146240234],[121,-21,74,6.244339466094971],[121,-21,75,6.249833583831787],[121,-21,76,6.2509636878967285],[121,-21,77,6.249726295471191],[121,-21,78,6.245981216430664],[121,-21,79,6.23707914352417],[121,-20,64,6.132693767547607],[121,-20,65,6.13508415222168],[121,-20,66,6.132391929626465],[121,-20,67,6.1280012130737305],[121,-20,68,6.126828670501709],[121,-20,69,6.133684158325195],[121,-20,70,6.1502604484558105],[121,-20,71,6.174976825714111],[121,-20,72,6.206064701080322],[121,-20,73,6.230831146240234],[121,-20,74,6.244339466094971],[121,-20,75,6.249833583831787],[121,-20,76,6.2509636878967285],[121,-20,77,6.249726295471191],[121,-20,78,6.245981216430664],[121,-20,79,6.23707914352417],[121,-19,64,6.132693767547607],[121,-19,65,6.13508415222168],[121,-19,66,6.132391929626465],[121,-19,67,6.1280012130737305],[121,-19,68,6.126828670501709],[121,-19,69,6.133684158325195],[121,-19,70,6.1502604484558105],[121,-19,71,6.174976825714111],[121,-19,72,6.206064701080322],[121,-19,73,6.230831146240234],[121,-19,74,6.244339466094971],[121,-19,75,6.249833583831787],[121,-19,76,6.2509636878967285],[121,-19,77,6.249726295471191],[121,-19,78,6.245981216430664],[121,-19,79,6.23707914352417],[121,-18,64,6.132693767547607],[121,-18,65,6.13508415222168],[121,-18,66,6.132391929626465],[121,-18,67,6.1280012130737305],[121,-18,68,6.126828670501709],[121,-18,69,6.133684158325195],[121,-18,70,6.1502604484558105],[121,-18,71,6.174976825714111],[121,-18,72,6.206064701080322],[121,-18,73,6.230831146240234],[121,-18,74,6.244339466094971],[121,-18,75,6.249833583831787],[121,-18,76,6.2509636878967285],[121,-18,77,6.249726295471191],[121,-18,78,6.245981216430664],[121,-18,79,6.23707914352417],[121,-17,64,6.132693767547607],[121,-17,65,6.13508415222168],[121,-17,66,6.132391929626465],[121,-17,67,6.1280012130737305],[121,-17,68,6.126828670501709],[121,-17,69,6.133684158325195],[121,-17,70,6.1502604484558105],[121,-17,71,6.174976825714111],[121,-17,72,6.206064701080322],[121,-17,73,6.230831146240234],[121,-17,74,6.244339466094971],[121,-17,75,6.249833583831787],[121,-17,76,6.2509636878967285],[121,-17,77,6.249726295471191],[121,-17,78,6.245981216430664],[121,-17,79,6.23707914352417],[121,-16,64,6.132693767547607],[121,-16,65,6.13508415222168],[121,-16,66,6.132391929626465],[121,-16,67,6.1280012130737305],[121,-16,68,6.126828670501709],[121,-16,69,6.133684158325195],[121,-16,70,6.1502604484558105],[121,-16,71,6.174976825714111],[121,-16,72,6.206064701080322],[121,-16,73,6.230831146240234],[121,-16,74,6.244339466094971],[121,-16,75,6.249833583831787],[121,-16,76,6.2509636878967285],[121,-16,77,6.249726295471191],[121,-16,78,6.245981216430664],[121,-16,79,6.23707914352417],[121,-15,64,6.132693767547607],[121,-15,65,6.13508415222168],[121,-15,66,6.132391929626465],[121,-15,67,6.1280012130737305],[121,-15,68,6.126828670501709],[121,-15,69,6.133684158325195],[121,-15,70,6.1502604484558105],[121,-15,71,6.174976825714111],[121,-15,72,6.206064701080322],[121,-15,73,6.230831146240234],[121,-15,74,6.244339466094971],[121,-15,75,6.249833583831787],[121,-15,76,6.2509636878967285],[121,-15,77,6.249726295471191],[121,-15,78,6.245981216430664],[121,-15,79,6.23707914352417],[121,-14,64,6.132693767547607],[121,-14,65,6.13508415222168],[121,-14,66,6.132391929626465],[121,-14,67,6.1280012130737305],[121,-14,68,6.126828670501709],[121,-14,69,6.133684158325195],[121,-14,70,6.1502604484558105],[121,-14,71,6.174976825714111],[121,-14,72,6.206064701080322],[121,-14,73,6.230831146240234],[121,-14,74,6.244339466094971],[121,-14,75,6.249833583831787],[121,-14,76,6.2509636878967285],[121,-14,77,6.249726295471191],[121,-14,78,6.245981216430664],[121,-14,79,6.23707914352417],[121,-13,64,6.132693767547607],[121,-13,65,6.13508415222168],[121,-13,66,6.132391929626465],[121,-13,67,6.1280012130737305],[121,-13,68,6.126828670501709],[121,-13,69,6.133684158325195],[121,-13,70,6.1502604484558105],[121,-13,71,6.174976825714111],[121,-13,72,6.206064701080322],[121,-13,73,6.230831146240234],[121,-13,74,6.244339466094971],[121,-13,75,6.249833583831787],[121,-13,76,6.2509636878967285],[121,-13,77,6.249726295471191],[121,-13,78,6.245981216430664],[121,-13,79,6.23707914352417],[121,-12,64,6.132693767547607],[121,-12,65,6.13508415222168],[121,-12,66,6.132391929626465],[121,-12,67,6.1280012130737305],[121,-12,68,6.126828670501709],[121,-12,69,6.133684158325195],[121,-12,70,6.1502604484558105],[121,-12,71,6.174976825714111],[121,-12,72,6.206064701080322],[121,-12,73,6.230831146240234],[121,-12,74,6.244339466094971],[121,-12,75,6.249833583831787],[121,-12,76,6.2509636878967285],[121,-12,77,6.249726295471191],[121,-12,78,6.245981216430664],[121,-12,79,6.23707914352417],[121,-11,64,6.132693767547607],[121,-11,65,6.13508415222168],[121,-11,66,6.132391929626465],[121,-11,67,6.1280012130737305],[121,-11,68,6.126828670501709],[121,-11,69,6.133684158325195],[121,-11,70,6.1502604484558105],[121,-11,71,6.174976825714111],[121,-11,72,6.206064701080322],[121,-11,73,6.230831146240234],[121,-11,74,6.244339466094971],[121,-11,75,6.249833583831787],[121,-11,76,6.2509636878967285],[121,-11,77,6.249726295471191],[121,-11,78,6.245981216430664],[121,-11,79,6.23707914352417],[121,-10,64,6.132693767547607],[121,-10,65,6.13508415222168],[121,-10,66,6.132391929626465],[121,-10,67,6.1280012130737305],[121,-10,68,6.126828670501709],[121,-10,69,6.133684158325195],[121,-10,70,6.1502604484558105],[121,-10,71,6.174976825714111],[121,-10,72,6.206064701080322],[121,-10,73,6.230831146240234],[121,-10,74,6.244339466094971],[121,-10,75,6.249833583831787],[121,-10,76,6.2509636878967285],[121,-10,77,6.249726295471191],[121,-10,78,6.245981216430664],[121,-10,79,6.23707914352417],[121,-9,64,6.132693767547607],[121,-9,65,6.13508415222168],[121,-9,66,6.132391929626465],[121,-9,67,6.1280012130737305],[121,-9,68,6.126828670501709],[121,-9,69,6.133684158325195],[121,-9,70,6.1502604484558105],[121,-9,71,6.174976825714111],[121,-9,72,6.206064701080322],[121,-9,73,6.230831146240234],[121,-9,74,6.244339466094971],[121,-9,75,6.249833583831787],[121,-9,76,6.2509636878967285],[121,-9,77,6.249726295471191],[121,-9,78,6.245981216430664],[121,-9,79,6.23707914352417],[121,-8,64,6.132693767547607],[121,-8,65,6.13508415222168],[121,-8,66,6.132391929626465],[121,-8,67,6.1280012130737305],[121,-8,68,6.126828670501709],[121,-8,69,6.133684158325195],[121,-8,70,6.1502604484558105],[121,-8,71,6.174976825714111],[121,-8,72,6.206064701080322],[121,-8,73,6.230831146240234],[121,-8,74,6.244339466094971],[121,-8,75,6.249833583831787],[121,-8,76,6.2509636878967285],[121,-8,77,6.249726295471191],[121,-8,78,6.245981216430664],[121,-8,79,6.23707914352417],[121,-7,64,6.132693767547607],[121,-7,65,6.13508415222168],[121,-7,66,6.132391929626465],[121,-7,67,6.1280012130737305],[121,-7,68,6.126828670501709],[121,-7,69,6.133684158325195],[121,-7,70,6.1502604484558105],[121,-7,71,6.174976825714111],[121,-7,72,6.206064701080322],[121,-7,73,6.230831146240234],[121,-7,74,6.244339466094971],[121,-7,75,6.249833583831787],[121,-7,76,6.2509636878967285],[121,-7,77,6.249726295471191],[121,-7,78,6.245981216430664],[121,-7,79,6.23707914352417],[121,-6,64,6.132693767547607],[121,-6,65,6.13508415222168],[121,-6,66,6.132391929626465],[121,-6,67,6.1280012130737305],[121,-6,68,6.126828670501709],[121,-6,69,6.133684158325195],[121,-6,70,6.1502604484558105],[121,-6,71,6.174976825714111],[121,-6,72,6.206064701080322],[121,-6,73,6.230831146240234],[121,-6,74,6.244339466094971],[121,-6,75,6.249833583831787],[121,-6,76,6.2509636878967285],[121,-6,77,6.249726295471191],[121,-6,78,6.245981216430664],[121,-6,79,6.23707914352417],[121,-5,64,6.132693767547607],[121,-5,65,6.13508415222168],[121,-5,66,6.132391929626465],[121,-5,67,6.1280012130737305],[121,-5,68,6.126828670501709],[121,-5,69,6.133684158325195],[121,-5,70,6.1502604484558105],[121,-5,71,6.174976825714111],[121,-5,72,6.206064701080322],[121,-5,73,6.230831146240234],[121,-5,74,6.244339466094971],[121,-5,75,6.249833583831787],[121,-5,76,6.2509636878967285],[121,-5,77,6.249726295471191],[121,-5,78,6.245981216430664],[121,-5,79,6.23707914352417],[121,-4,64,6.132693767547607],[121,-4,65,6.13508415222168],[121,-4,66,6.132391929626465],[121,-4,67,6.1280012130737305],[121,-4,68,6.126828670501709],[121,-4,69,6.133684158325195],[121,-4,70,6.1502604484558105],[121,-4,71,6.174976825714111],[121,-4,72,6.206064701080322],[121,-4,73,6.230831146240234],[121,-4,74,6.244339466094971],[121,-4,75,6.249833583831787],[121,-4,76,6.2509636878967285],[121,-4,77,6.249726295471191],[121,-4,78,6.245981216430664],[121,-4,79,6.23707914352417],[121,-3,64,6.132693767547607],[121,-3,65,6.13508415222168],[121,-3,66,6.132391929626465],[121,-3,67,6.1280012130737305],[121,-3,68,6.126828670501709],[121,-3,69,6.133684158325195],[121,-3,70,6.1502604484558105],[121,-3,71,6.174976825714111],[121,-3,72,6.206064701080322],[121,-3,73,6.230831146240234],[121,-3,74,6.244339466094971],[121,-3,75,6.249833583831787],[121,-3,76,6.2509636878967285],[121,-3,77,6.249726295471191],[121,-3,78,6.245981216430664],[121,-3,79,6.23707914352417],[121,-2,64,6.132693767547607],[121,-2,65,6.13508415222168],[121,-2,66,6.132391929626465],[121,-2,67,6.1280012130737305],[121,-2,68,6.126828670501709],[121,-2,69,6.133684158325195],[121,-2,70,6.1502604484558105],[121,-2,71,6.174976825714111],[121,-2,72,6.206064701080322],[121,-2,73,6.230831146240234],[121,-2,74,6.244339466094971],[121,-2,75,6.249833583831787],[121,-2,76,6.2509636878967285],[121,-2,77,6.249726295471191],[121,-2,78,6.245981216430664],[121,-2,79,6.23707914352417],[121,-1,64,6.132693767547607],[121,-1,65,6.13508415222168],[121,-1,66,6.132391929626465],[121,-1,67,6.1280012130737305],[121,-1,68,6.126828670501709],[121,-1,69,6.133684158325195],[121,-1,70,6.1502604484558105],[121,-1,71,6.174976825714111],[121,-1,72,6.206064701080322],[121,-1,73,6.230831146240234],[121,-1,74,6.244339466094971],[121,-1,75,6.249833583831787],[121,-1,76,6.2509636878967285],[121,-1,77,6.249726295471191],[121,-1,78,6.245981216430664],[121,-1,79,6.23707914352417],[121,0,64,6.132693767547607],[121,0,65,6.13508415222168],[121,0,66,6.132391929626465],[121,0,67,6.1280012130737305],[121,0,68,6.126828670501709],[121,0,69,6.133684158325195],[121,0,70,6.1502604484558105],[121,0,71,6.174976825714111],[121,0,72,6.206064701080322],[121,0,73,6.230831146240234],[121,0,74,6.244339466094971],[121,0,75,6.249833583831787],[121,0,76,6.2509636878967285],[121,0,77,6.249726295471191],[121,0,78,6.245981216430664],[121,0,79,6.23707914352417],[121,1,64,6.132693767547607],[121,1,65,6.13508415222168],[121,1,66,6.132391929626465],[121,1,67,6.1280012130737305],[121,1,68,6.126828670501709],[121,1,69,6.133684158325195],[121,1,70,6.1502604484558105],[121,1,71,6.174976825714111],[121,1,72,6.206064701080322],[121,1,73,6.230831146240234],[121,1,74,6.244339466094971],[121,1,75,6.249833583831787],[121,1,76,6.2509636878967285],[121,1,77,6.249726295471191],[121,1,78,6.245981216430664],[121,1,79,6.23707914352417],[121,2,64,6.132693767547607],[121,2,65,6.13508415222168],[121,2,66,6.132391929626465],[121,2,67,6.1280012130737305],[121,2,68,6.126828670501709],[121,2,69,6.133684158325195],[121,2,70,6.1502604484558105],[121,2,71,6.174976825714111],[121,2,72,6.206064701080322],[121,2,73,6.230831146240234],[121,2,74,6.244339466094971],[121,2,75,6.249833583831787],[121,2,76,6.2509636878967285],[121,2,77,6.249726295471191],[121,2,78,6.245981216430664],[121,2,79,6.23707914352417],[121,3,64,6.132693767547607],[121,3,65,6.13508415222168],[121,3,66,6.132391929626465],[121,3,67,6.1280012130737305],[121,3,68,6.126828670501709],[121,3,69,6.133684158325195],[121,3,70,6.1502604484558105],[121,3,71,6.174976825714111],[121,3,72,6.206064701080322],[121,3,73,6.230831146240234],[121,3,74,6.244339466094971],[121,3,75,6.249833583831787],[121,3,76,6.2509636878967285],[121,3,77,6.249726295471191],[121,3,78,6.245981216430664],[121,3,79,6.23707914352417],[121,4,64,6.132693767547607],[121,4,65,6.13508415222168],[121,4,66,6.132391929626465],[121,4,67,6.1280012130737305],[121,4,68,6.126828670501709],[121,4,69,6.133684158325195],[121,4,70,6.1502604484558105],[121,4,71,6.174976825714111],[121,4,72,6.206064701080322],[121,4,73,6.230831146240234],[121,4,74,6.244339466094971],[121,4,75,6.249833583831787],[121,4,76,6.2509636878967285],[121,4,77,6.249726295471191],[121,4,78,6.245981216430664],[121,4,79,6.23707914352417],[121,5,64,6.132693767547607],[121,5,65,6.13508415222168],[121,5,66,6.132391929626465],[121,5,67,6.1280012130737305],[121,5,68,6.126828670501709],[121,5,69,6.133684158325195],[121,5,70,6.1502604484558105],[121,5,71,6.174976825714111],[121,5,72,6.206064701080322],[121,5,73,6.230831146240234],[121,5,74,6.244339466094971],[121,5,75,6.249833583831787],[121,5,76,6.2509636878967285],[121,5,77,6.249726295471191],[121,5,78,6.245981216430664],[121,5,79,6.23707914352417],[121,6,64,6.132693767547607],[121,6,65,6.13508415222168],[121,6,66,6.132391929626465],[121,6,67,6.1280012130737305],[121,6,68,6.126828670501709],[121,6,69,6.133684158325195],[121,6,70,6.1502604484558105],[121,6,71,6.174976825714111],[121,6,72,6.206064701080322],[121,6,73,6.230831146240234],[121,6,74,6.244339466094971],[121,6,75,6.249833583831787],[121,6,76,6.2509636878967285],[121,6,77,6.249726295471191],[121,6,78,6.245981216430664],[121,6,79,6.23707914352417],[121,7,64,6.132693767547607],[121,7,65,6.13508415222168],[121,7,66,6.132391929626465],[121,7,67,6.1280012130737305],[121,7,68,6.126828670501709],[121,7,69,6.133684158325195],[121,7,70,6.1502604484558105],[121,7,71,6.174976825714111],[121,7,72,6.206064701080322],[121,7,73,6.230831146240234],[121,7,74,6.244339466094971],[121,7,75,6.249833583831787],[121,7,76,6.2509636878967285],[121,7,77,6.249726295471191],[121,7,78,6.245981216430664],[121,7,79,6.23707914352417],[121,8,64,6.132693767547607],[121,8,65,6.13508415222168],[121,8,66,6.132391929626465],[121,8,67,6.1280012130737305],[121,8,68,6.126828670501709],[121,8,69,6.133684158325195],[121,8,70,6.1502604484558105],[121,8,71,6.174976825714111],[121,8,72,6.206064701080322],[121,8,73,6.230831146240234],[121,8,74,6.244339466094971],[121,8,75,6.249833583831787],[121,8,76,6.2509636878967285],[121,8,77,6.249726295471191],[121,8,78,6.245981216430664],[121,8,79,6.23707914352417],[121,9,64,6.132693767547607],[121,9,65,6.13508415222168],[121,9,66,6.132391929626465],[121,9,67,6.1280012130737305],[121,9,68,6.126828670501709],[121,9,69,6.133684158325195],[121,9,70,6.1502604484558105],[121,9,71,6.174976825714111],[121,9,72,6.206064701080322],[121,9,73,6.230831146240234],[121,9,74,6.244339466094971],[121,9,75,6.249833583831787],[121,9,76,6.2509636878967285],[121,9,77,6.249726295471191],[121,9,78,6.245981216430664],[121,9,79,6.23707914352417],[121,10,64,6.132693767547607],[121,10,65,6.13508415222168],[121,10,66,6.132391929626465],[121,10,67,6.1280012130737305],[121,10,68,6.126828670501709],[121,10,69,6.133684158325195],[121,10,70,6.1502604484558105],[121,10,71,6.174976825714111],[121,10,72,6.206064701080322],[121,10,73,6.230831146240234],[121,10,74,6.244339466094971],[121,10,75,6.249833583831787],[121,10,76,6.2509636878967285],[121,10,77,6.249726295471191],[121,10,78,6.245981216430664],[121,10,79,6.23707914352417],[121,11,64,6.132693767547607],[121,11,65,6.13508415222168],[121,11,66,6.132391929626465],[121,11,67,6.1280012130737305],[121,11,68,6.126828670501709],[121,11,69,6.133684158325195],[121,11,70,6.1502604484558105],[121,11,71,6.174976825714111],[121,11,72,6.206064701080322],[121,11,73,6.230831146240234],[121,11,74,6.244339466094971],[121,11,75,6.249833583831787],[121,11,76,6.2509636878967285],[121,11,77,6.249726295471191],[121,11,78,6.245981216430664],[121,11,79,6.23707914352417],[121,12,64,6.132693767547607],[121,12,65,6.13508415222168],[121,12,66,6.132391929626465],[121,12,67,6.1280012130737305],[121,12,68,6.126828670501709],[121,12,69,6.133684158325195],[121,12,70,6.1502604484558105],[121,12,71,6.174976825714111],[121,12,72,6.206064701080322],[121,12,73,6.230831146240234],[121,12,74,6.244339466094971],[121,12,75,6.249833583831787],[121,12,76,6.2509636878967285],[121,12,77,6.249726295471191],[121,12,78,6.245981216430664],[121,12,79,6.23707914352417],[121,13,64,6.132693767547607],[121,13,65,6.13508415222168],[121,13,66,6.132391929626465],[121,13,67,6.1280012130737305],[121,13,68,6.126828670501709],[121,13,69,6.133684158325195],[121,13,70,6.1502604484558105],[121,13,71,6.174976825714111],[121,13,72,6.206064701080322],[121,13,73,6.230831146240234],[121,13,74,6.244339466094971],[121,13,75,6.249833583831787],[121,13,76,6.2509636878967285],[121,13,77,6.249726295471191],[121,13,78,6.245981216430664],[121,13,79,6.23707914352417],[121,14,64,6.132693767547607],[121,14,65,6.13508415222168],[121,14,66,6.132391929626465],[121,14,67,6.1280012130737305],[121,14,68,6.126828670501709],[121,14,69,6.133684158325195],[121,14,70,6.1502604484558105],[121,14,71,6.174976825714111],[121,14,72,6.206064701080322],[121,14,73,6.230831146240234],[121,14,74,6.244339466094971],[121,14,75,6.249833583831787],[121,14,76,6.2509636878967285],[121,14,77,6.249726295471191],[121,14,78,6.245981216430664],[121,14,79,6.23707914352417],[121,15,64,6.132693767547607],[121,15,65,6.13508415222168],[121,15,66,6.132391929626465],[121,15,67,6.1280012130737305],[121,15,68,6.126828670501709],[121,15,69,6.133684158325195],[121,15,70,6.1502604484558105],[121,15,71,6.174976825714111],[121,15,72,6.206064701080322],[121,15,73,6.230831146240234],[121,15,74,6.244339466094971],[121,15,75,6.249833583831787],[121,15,76,6.2509636878967285],[121,15,77,6.249726295471191],[121,15,78,6.245981216430664],[121,15,79,6.23707914352417],[121,16,64,6.132693767547607],[121,16,65,6.13508415222168],[121,16,66,6.132391929626465],[121,16,67,6.1280012130737305],[121,16,68,6.126828670501709],[121,16,69,6.133684158325195],[121,16,70,6.1502604484558105],[121,16,71,6.174976825714111],[121,16,72,6.206064701080322],[121,16,73,6.230831146240234],[121,16,74,6.244339466094971],[121,16,75,6.249833583831787],[121,16,76,6.2509636878967285],[121,16,77,6.249726295471191],[121,16,78,6.245981216430664],[121,16,79,6.23707914352417],[121,17,64,6.132693767547607],[121,17,65,6.13508415222168],[121,17,66,6.132391929626465],[121,17,67,6.1280012130737305],[121,17,68,6.126828670501709],[121,17,69,6.133684158325195],[121,17,70,6.1502604484558105],[121,17,71,6.174976825714111],[121,17,72,6.206064701080322],[121,17,73,6.230831146240234],[121,17,74,6.244339466094971],[121,17,75,6.249833583831787],[121,17,76,6.2509636878967285],[121,17,77,6.249726295471191],[121,17,78,6.245981216430664],[121,17,79,6.23707914352417],[121,18,64,6.132693767547607],[121,18,65,6.13508415222168],[121,18,66,6.132391929626465],[121,18,67,6.1280012130737305],[121,18,68,6.126828670501709],[121,18,69,6.133684158325195],[121,18,70,6.1502604484558105],[121,18,71,6.174976825714111],[121,18,72,6.206064701080322],[121,18,73,6.230831146240234],[121,18,74,6.244339466094971],[121,18,75,6.249833583831787],[121,18,76,6.2509636878967285],[121,18,77,6.249726295471191],[121,18,78,6.245981216430664],[121,18,79,6.23707914352417],[121,19,64,6.132693767547607],[121,19,65,6.13508415222168],[121,19,66,6.132391929626465],[121,19,67,6.1280012130737305],[121,19,68,6.126828670501709],[121,19,69,6.133684158325195],[121,19,70,6.1502604484558105],[121,19,71,6.174976825714111],[121,19,72,6.206064701080322],[121,19,73,6.230831146240234],[121,19,74,6.244339466094971],[121,19,75,6.249833583831787],[121,19,76,6.2509636878967285],[121,19,77,6.249726295471191],[121,19,78,6.245981216430664],[121,19,79,6.23707914352417],[121,20,64,6.132693767547607],[121,20,65,6.13508415222168],[121,20,66,6.132391929626465],[121,20,67,6.1280012130737305],[121,20,68,6.126828670501709],[121,20,69,6.133684158325195],[121,20,70,6.1502604484558105],[121,20,71,6.174976825714111],[121,20,72,6.206064701080322],[121,20,73,6.230831146240234],[121,20,74,6.244339466094971],[121,20,75,6.249833583831787],[121,20,76,6.2509636878967285],[121,20,77,6.249726295471191],[121,20,78,6.245981216430664],[121,20,79,6.23707914352417],[121,21,64,6.132693767547607],[121,21,65,6.13508415222168],[121,21,66,6.132391929626465],[121,21,67,6.1280012130737305],[121,21,68,6.126828670501709],[121,21,69,6.133684158325195],[121,21,70,6.1502604484558105],[121,21,71,6.174976825714111],[121,21,72,6.206064701080322],[121,21,73,6.230831146240234],[121,21,74,6.244339466094971],[121,21,75,6.249833583831787],[121,21,76,6.2509636878967285],[121,21,77,6.249726295471191],[121,21,78,6.245981216430664],[121,21,79,6.23707914352417],[121,22,64,6.132693767547607],[121,22,65,6.13508415222168],[121,22,66,6.132391929626465],[121,22,67,6.1280012130737305],[121,22,68,6.126828670501709],[121,22,69,6.133684158325195],[121,22,70,6.1502604484558105],[121,22,71,6.174976825714111],[121,22,72,6.206064701080322],[121,22,73,6.230831146240234],[121,22,74,6.244339466094971],[121,22,75,6.249833583831787],[121,22,76,6.2509636878967285],[121,22,77,6.249726295471191],[121,22,78,6.245981216430664],[121,22,79,6.23707914352417],[121,23,64,6.132693767547607],[121,23,65,6.13508415222168],[121,23,66,6.132391929626465],[121,23,67,6.1280012130737305],[121,23,68,6.126828670501709],[121,23,69,6.133684158325195],[121,23,70,6.1502604484558105],[121,23,71,6.174976825714111],[121,23,72,6.206064701080322],[121,23,73,6.230831146240234],[121,23,74,6.244339466094971],[121,23,75,6.249833583831787],[121,23,76,6.2509636878967285],[121,23,77,6.249726295471191],[121,23,78,6.245981216430664],[121,23,79,6.23707914352417],[121,24,64,6.132693767547607],[121,24,65,6.13508415222168],[121,24,66,6.132391929626465],[121,24,67,6.1280012130737305],[121,24,68,6.126828670501709],[121,24,69,6.133684158325195],[121,24,70,6.1502604484558105],[121,24,71,6.174976825714111],[121,24,72,6.206064701080322],[121,24,73,6.230831146240234],[121,24,74,6.244339466094971],[121,24,75,6.249833583831787],[121,24,76,6.2509636878967285],[121,24,77,6.249726295471191],[121,24,78,6.245981216430664],[121,24,79,6.23707914352417],[121,25,64,6.132693767547607],[121,25,65,6.13508415222168],[121,25,66,6.132391929626465],[121,25,67,6.1280012130737305],[121,25,68,6.126828670501709],[121,25,69,6.133684158325195],[121,25,70,6.1502604484558105],[121,25,71,6.174976825714111],[121,25,72,6.206064701080322],[121,25,73,6.230831146240234],[121,25,74,6.244339466094971],[121,25,75,6.249833583831787],[121,25,76,6.2509636878967285],[121,25,77,6.249726295471191],[121,25,78,6.245981216430664],[121,25,79,6.23707914352417],[121,26,64,6.132693767547607],[121,26,65,6.13508415222168],[121,26,66,6.132391929626465],[121,26,67,6.1280012130737305],[121,26,68,6.126828670501709],[121,26,69,6.133684158325195],[121,26,70,6.1502604484558105],[121,26,71,6.174976825714111],[121,26,72,6.206064701080322],[121,26,73,6.230831146240234],[121,26,74,6.244339466094971],[121,26,75,6.249833583831787],[121,26,76,6.2509636878967285],[121,26,77,6.249726295471191],[121,26,78,6.245981216430664],[121,26,79,6.23707914352417],[121,27,64,6.132693767547607],[121,27,65,6.13508415222168],[121,27,66,6.132391929626465],[121,27,67,6.1280012130737305],[121,27,68,6.126828670501709],[121,27,69,6.133684158325195],[121,27,70,6.1502604484558105],[121,27,71,6.174976825714111],[121,27,72,6.206064701080322],[121,27,73,6.230831146240234],[121,27,74,6.244339466094971],[121,27,75,6.249833583831787],[121,27,76,6.2509636878967285],[121,27,77,6.249726295471191],[121,27,78,6.245981216430664],[121,27,79,6.23707914352417],[121,28,64,6.132693767547607],[121,28,65,6.13508415222168],[121,28,66,6.132391929626465],[121,28,67,6.1280012130737305],[121,28,68,6.126828670501709],[121,28,69,6.133684158325195],[121,28,70,6.1502604484558105],[121,28,71,6.174976825714111],[121,28,72,6.206064701080322],[121,28,73,6.230831146240234],[121,28,74,6.244339466094971],[121,28,75,6.249833583831787],[121,28,76,6.2509636878967285],[121,28,77,6.249726295471191],[121,28,78,6.245981216430664],[121,28,79,6.23707914352417],[121,29,64,6.132693767547607],[121,29,65,6.13508415222168],[121,29,66,6.132391929626465],[121,29,67,6.1280012130737305],[121,29,68,6.126828670501709],[121,29,69,6.133684158325195],[121,29,70,6.1502604484558105],[121,29,71,6.174976825714111],[121,29,72,6.206064701080322],[121,29,73,6.230831146240234],[121,29,74,6.244339466094971],[121,29,75,6.249833583831787],[121,29,76,6.2509636878967285],[121,29,77,6.249726295471191],[121,29,78,6.245981216430664],[121,29,79,6.23707914352417],[121,30,64,6.132693767547607],[121,30,65,6.13508415222168],[121,30,66,6.132391929626465],[121,30,67,6.1280012130737305],[121,30,68,6.126828670501709],[121,30,69,6.133684158325195],[121,30,70,6.1502604484558105],[121,30,71,6.174976825714111],[121,30,72,6.206064701080322],[121,30,73,6.230831146240234],[121,30,74,6.244339466094971],[121,30,75,6.249833583831787],[121,30,76,6.2509636878967285],[121,30,77,6.249726295471191],[121,30,78,6.245981216430664],[121,30,79,6.23707914352417],[121,31,64,6.132693767547607],[121,31,65,6.13508415222168],[121,31,66,6.132391929626465],[121,31,67,6.1280012130737305],[121,31,68,6.126828670501709],[121,31,69,6.133684158325195],[121,31,70,6.1502604484558105],[121,31,71,6.174976825714111],[121,31,72,6.206064701080322],[121,31,73,6.230831146240234],[121,31,74,6.244339466094971],[121,31,75,6.249833583831787],[121,31,76,6.2509636878967285],[121,31,77,6.249726295471191],[121,31,78,6.245981216430664],[121,31,79,6.23707914352417],[121,32,64,6.132693767547607],[121,32,65,6.13508415222168],[121,32,66,6.132391929626465],[121,32,67,6.1280012130737305],[121,32,68,6.126828670501709],[121,32,69,6.133684158325195],[121,32,70,6.1502604484558105],[121,32,71,6.174976825714111],[121,32,72,6.206064701080322],[121,32,73,6.230831146240234],[121,32,74,6.244339466094971],[121,32,75,6.249833583831787],[121,32,76,6.2509636878967285],[121,32,77,6.249726295471191],[121,32,78,6.245981216430664],[121,32,79,6.23707914352417],[121,33,64,6.132693767547607],[121,33,65,6.13508415222168],[121,33,66,6.132391929626465],[121,33,67,6.1280012130737305],[121,33,68,6.126828670501709],[121,33,69,6.133684158325195],[121,33,70,6.1502604484558105],[121,33,71,6.174976825714111],[121,33,72,6.206064701080322],[121,33,73,6.230831146240234],[121,33,74,6.244339466094971],[121,33,75,6.249833583831787],[121,33,76,6.2509636878967285],[121,33,77,6.249726295471191],[121,33,78,6.245981216430664],[121,33,79,6.23707914352417],[121,34,64,6.132693767547607],[121,34,65,6.13508415222168],[121,34,66,6.132391929626465],[121,34,67,6.1280012130737305],[121,34,68,6.126828670501709],[121,34,69,6.133684158325195],[121,34,70,6.1502604484558105],[121,34,71,6.174976825714111],[121,34,72,6.206064701080322],[121,34,73,6.230831146240234],[121,34,74,6.244339466094971],[121,34,75,6.249833583831787],[121,34,76,6.2509636878967285],[121,34,77,6.249726295471191],[121,34,78,6.245981216430664],[121,34,79,6.23707914352417],[121,35,64,6.132693767547607],[121,35,65,6.13508415222168],[121,35,66,6.132391929626465],[121,35,67,6.1280012130737305],[121,35,68,6.126828670501709],[121,35,69,6.133684158325195],[121,35,70,6.1502604484558105],[121,35,71,6.174976825714111],[121,35,72,6.206064701080322],[121,35,73,6.230831146240234],[121,35,74,6.244339466094971],[121,35,75,6.249833583831787],[121,35,76,6.2509636878967285],[121,35,77,6.249726295471191],[121,35,78,6.245981216430664],[121,35,79,6.23707914352417],[121,36,64,6.132693767547607],[121,36,65,6.13508415222168],[121,36,66,6.132391929626465],[121,36,67,6.1280012130737305],[121,36,68,6.126828670501709],[121,36,69,6.133684158325195],[121,36,70,6.1502604484558105],[121,36,71,6.174976825714111],[121,36,72,6.206064701080322],[121,36,73,6.230831146240234],[121,36,74,6.244339466094971],[121,36,75,6.249833583831787],[121,36,76,6.2509636878967285],[121,36,77,6.249726295471191],[121,36,78,6.245981216430664],[121,36,79,6.23707914352417],[121,37,64,6.132693767547607],[121,37,65,6.13508415222168],[121,37,66,6.132391929626465],[121,37,67,6.1280012130737305],[121,37,68,6.126828670501709],[121,37,69,6.133684158325195],[121,37,70,6.1502604484558105],[121,37,71,6.174976825714111],[121,37,72,6.206064701080322],[121,37,73,6.230831146240234],[121,37,74,6.244339466094971],[121,37,75,6.249833583831787],[121,37,76,6.2509636878967285],[121,37,77,6.249726295471191],[121,37,78,6.245981216430664],[121,37,79,6.23707914352417],[121,38,64,6.132693767547607],[121,38,65,6.13508415222168],[121,38,66,6.132391929626465],[121,38,67,6.1280012130737305],[121,38,68,6.126828670501709],[121,38,69,6.133684158325195],[121,38,70,6.1502604484558105],[121,38,71,6.174976825714111],[121,38,72,6.206064701080322],[121,38,73,6.230831146240234],[121,38,74,6.244339466094971],[121,38,75,6.249833583831787],[121,38,76,6.2509636878967285],[121,38,77,6.249726295471191],[121,38,78,6.245981216430664],[121,38,79,6.23707914352417],[121,39,64,6.132693767547607],[121,39,65,6.13508415222168],[121,39,66,6.132391929626465],[121,39,67,6.1280012130737305],[121,39,68,6.126828670501709],[121,39,69,6.133684158325195],[121,39,70,6.1502604484558105],[121,39,71,6.174976825714111],[121,39,72,6.206064701080322],[121,39,73,6.230831146240234],[121,39,74,6.244339466094971],[121,39,75,6.249833583831787],[121,39,76,6.2509636878967285],[121,39,77,6.249726295471191],[121,39,78,6.245981216430664],[121,39,79,6.23707914352417],[121,40,64,6.132693767547607],[121,40,65,6.13508415222168],[121,40,66,6.132391929626465],[121,40,67,6.1280012130737305],[121,40,68,6.126828670501709],[121,40,69,6.133684158325195],[121,40,70,6.1502604484558105],[121,40,71,6.174976825714111],[121,40,72,6.206064701080322],[121,40,73,6.230831146240234],[121,40,74,6.244339466094971],[121,40,75,6.249833583831787],[121,40,76,6.2509636878967285],[121,40,77,6.249726295471191],[121,40,78,6.245981216430664],[121,40,79,6.23707914352417],[121,41,64,6.132693767547607],[121,41,65,6.13508415222168],[121,41,66,6.132391929626465],[121,41,67,6.1280012130737305],[121,41,68,6.126828670501709],[121,41,69,6.133684158325195],[121,41,70,6.1502604484558105],[121,41,71,6.174976825714111],[121,41,72,6.206064701080322],[121,41,73,6.230831146240234],[121,41,74,6.244339466094971],[121,41,75,6.249833583831787],[121,41,76,6.2509636878967285],[121,41,77,6.249726295471191],[121,41,78,6.245981216430664],[121,41,79,6.23707914352417],[121,42,64,6.132693767547607],[121,42,65,6.13508415222168],[121,42,66,6.132391929626465],[121,42,67,6.1280012130737305],[121,42,68,6.126828670501709],[121,42,69,6.133684158325195],[121,42,70,6.1502604484558105],[121,42,71,6.174976825714111],[121,42,72,6.206064701080322],[121,42,73,6.230831146240234],[121,42,74,6.244339466094971],[121,42,75,6.249833583831787],[121,42,76,6.2509636878967285],[121,42,77,6.249726295471191],[121,42,78,6.245981216430664],[121,42,79,6.23707914352417],[121,43,64,6.132693767547607],[121,43,65,6.13508415222168],[121,43,66,6.132391929626465],[121,43,67,6.1280012130737305],[121,43,68,6.126828670501709],[121,43,69,6.133684158325195],[121,43,70,6.1502604484558105],[121,43,71,6.174976825714111],[121,43,72,6.206064701080322],[121,43,73,6.230831146240234],[121,43,74,6.244339466094971],[121,43,75,6.249833583831787],[121,43,76,6.2509636878967285],[121,43,77,6.249726295471191],[121,43,78,6.245981216430664],[121,43,79,6.23707914352417],[121,44,64,6.132693767547607],[121,44,65,6.13508415222168],[121,44,66,6.132391929626465],[121,44,67,6.1280012130737305],[121,44,68,6.126828670501709],[121,44,69,6.133684158325195],[121,44,70,6.1502604484558105],[121,44,71,6.174976825714111],[121,44,72,6.206064701080322],[121,44,73,6.230831146240234],[121,44,74,6.244339466094971],[121,44,75,6.249833583831787],[121,44,76,6.2509636878967285],[121,44,77,6.249726295471191],[121,44,78,6.245981216430664],[121,44,79,6.23707914352417],[121,45,64,6.132693767547607],[121,45,65,6.13508415222168],[121,45,66,6.132391929626465],[121,45,67,6.1280012130737305],[121,45,68,6.126828670501709],[121,45,69,6.133684158325195],[121,45,70,6.1502604484558105],[121,45,71,6.174976825714111],[121,45,72,6.206064701080322],[121,45,73,6.230831146240234],[121,45,74,6.244339466094971],[121,45,75,6.249833583831787],[121,45,76,6.2509636878967285],[121,45,77,6.249726295471191],[121,45,78,6.245981216430664],[121,45,79,6.23707914352417],[121,46,64,6.132693767547607],[121,46,65,6.13508415222168],[121,46,66,6.132391929626465],[121,46,67,6.1280012130737305],[121,46,68,6.126828670501709],[121,46,69,6.133684158325195],[121,46,70,6.1502604484558105],[121,46,71,6.174976825714111],[121,46,72,6.206064701080322],[121,46,73,6.230831146240234],[121,46,74,6.244339466094971],[121,46,75,6.249833583831787],[121,46,76,6.2509636878967285],[121,46,77,6.249726295471191],[121,46,78,6.245981216430664],[121,46,79,6.23707914352417],[121,47,64,6.132693767547607],[121,47,65,6.13508415222168],[121,47,66,6.132391929626465],[121,47,67,6.1280012130737305],[121,47,68,6.126828670501709],[121,47,69,6.133684158325195],[121,47,70,6.1502604484558105],[121,47,71,6.174976825714111],[121,47,72,6.206064701080322],[121,47,73,6.230831146240234],[121,47,74,6.244339466094971],[121,47,75,6.249833583831787],[121,47,76,6.2509636878967285],[121,47,77,6.249726295471191],[121,47,78,6.245981216430664],[121,47,79,6.23707914352417],[121,48,64,6.132693767547607],[121,48,65,6.13508415222168],[121,48,66,6.132391929626465],[121,48,67,6.1280012130737305],[121,48,68,6.126828670501709],[121,48,69,6.133684158325195],[121,48,70,6.1502604484558105],[121,48,71,6.174976825714111],[121,48,72,6.206064701080322],[121,48,73,6.230831146240234],[121,48,74,6.244339466094971],[121,48,75,6.249833583831787],[121,48,76,6.2509636878967285],[121,48,77,6.249726295471191],[121,48,78,6.245981216430664],[121,48,79,6.23707914352417],[121,49,64,6.132693767547607],[121,49,65,6.13508415222168],[121,49,66,6.132391929626465],[121,49,67,6.1280012130737305],[121,49,68,6.126828670501709],[121,49,69,6.133684158325195],[121,49,70,6.1502604484558105],[121,49,71,6.174976825714111],[121,49,72,6.206064701080322],[121,49,73,6.230831146240234],[121,49,74,6.244339466094971],[121,49,75,6.249833583831787],[121,49,76,6.2509636878967285],[121,49,77,6.249726295471191],[121,49,78,6.245981216430664],[121,49,79,6.23707914352417],[121,50,64,6.132693767547607],[121,50,65,6.13508415222168],[121,50,66,6.132391929626465],[121,50,67,6.1280012130737305],[121,50,68,6.126828670501709],[121,50,69,6.133684158325195],[121,50,70,6.1502604484558105],[121,50,71,6.174976825714111],[121,50,72,6.206064701080322],[121,50,73,6.230831146240234],[121,50,74,6.244339466094971],[121,50,75,6.249833583831787],[121,50,76,6.2509636878967285],[121,50,77,6.249726295471191],[121,50,78,6.245981216430664],[121,50,79,6.23707914352417],[121,51,64,6.132693767547607],[121,51,65,6.13508415222168],[121,51,66,6.132391929626465],[121,51,67,6.1280012130737305],[121,51,68,6.126828670501709],[121,51,69,6.133684158325195],[121,51,70,6.1502604484558105],[121,51,71,6.174976825714111],[121,51,72,6.206064701080322],[121,51,73,6.230831146240234],[121,51,74,6.244339466094971],[121,51,75,6.249833583831787],[121,51,76,6.2509636878967285],[121,51,77,6.249726295471191],[121,51,78,6.245981216430664],[121,51,79,6.23707914352417],[121,52,64,6.132693767547607],[121,52,65,6.13508415222168],[121,52,66,6.132391929626465],[121,52,67,6.1280012130737305],[121,52,68,6.126828670501709],[121,52,69,6.133684158325195],[121,52,70,6.1502604484558105],[121,52,71,6.174976825714111],[121,52,72,6.206064701080322],[121,52,73,6.230831146240234],[121,52,74,6.244339466094971],[121,52,75,6.249833583831787],[121,52,76,6.2509636878967285],[121,52,77,6.249726295471191],[121,52,78,6.245981216430664],[121,52,79,6.23707914352417],[121,53,64,6.132693767547607],[121,53,65,6.13508415222168],[121,53,66,6.132391929626465],[121,53,67,6.1280012130737305],[121,53,68,6.126828670501709],[121,53,69,6.133684158325195],[121,53,70,6.1502604484558105],[121,53,71,6.174976825714111],[121,53,72,6.206064701080322],[121,53,73,6.230831146240234],[121,53,74,6.244339466094971],[121,53,75,6.249833583831787],[121,53,76,6.2509636878967285],[121,53,77,6.249726295471191],[121,53,78,6.245981216430664],[121,53,79,6.23707914352417],[121,54,64,6.132693767547607],[121,54,65,6.13508415222168],[121,54,66,6.132391929626465],[121,54,67,6.1280012130737305],[121,54,68,6.126828670501709],[121,54,69,6.133684158325195],[121,54,70,6.1502604484558105],[121,54,71,6.174976825714111],[121,54,72,6.206064701080322],[121,54,73,6.230831146240234],[121,54,74,6.244339466094971],[121,54,75,6.249833583831787],[121,54,76,6.2509636878967285],[121,54,77,6.249726295471191],[121,54,78,6.245981216430664],[121,54,79,6.23707914352417],[121,55,64,6.132693767547607],[121,55,65,6.13508415222168],[121,55,66,6.132391929626465],[121,55,67,6.1280012130737305],[121,55,68,6.126828670501709],[121,55,69,6.133684158325195],[121,55,70,6.1502604484558105],[121,55,71,6.174976825714111],[121,55,72,6.206064701080322],[121,55,73,6.230831146240234],[121,55,74,6.244339466094971],[121,55,75,6.249833583831787],[121,55,76,6.2509636878967285],[121,55,77,6.249726295471191],[121,55,78,6.245981216430664],[121,55,79,6.23707914352417],[121,56,64,6.132693767547607],[121,56,65,6.13508415222168],[121,56,66,6.132391929626465],[121,56,67,6.1280012130737305],[121,56,68,6.126828670501709],[121,56,69,6.133684158325195],[121,56,70,6.1502604484558105],[121,56,71,6.174976825714111],[121,56,72,6.206064701080322],[121,56,73,6.230831146240234],[121,56,74,6.244339466094971],[121,56,75,6.249833583831787],[121,56,76,6.2509636878967285],[121,56,77,6.249726295471191],[121,56,78,6.245981216430664],[121,56,79,6.23707914352417],[121,57,64,6.132693767547607],[121,57,65,6.13508415222168],[121,57,66,6.132391929626465],[121,57,67,6.1280012130737305],[121,57,68,6.126828670501709],[121,57,69,6.133684158325195],[121,57,70,6.1502604484558105],[121,57,71,6.174976825714111],[121,57,72,6.206064701080322],[121,57,73,6.230831146240234],[121,57,74,6.244339466094971],[121,57,75,6.249833583831787],[121,57,76,6.2509636878967285],[121,57,77,6.249726295471191],[121,57,78,6.245981216430664],[121,57,79,6.23707914352417],[121,58,64,6.132693767547607],[121,58,65,6.13508415222168],[121,58,66,6.132391929626465],[121,58,67,6.1280012130737305],[121,58,68,6.126828670501709],[121,58,69,6.133684158325195],[121,58,70,6.1502604484558105],[121,58,71,6.174976825714111],[121,58,72,6.206064701080322],[121,58,73,6.230831146240234],[121,58,74,6.244339466094971],[121,58,75,6.249833583831787],[121,58,76,6.2509636878967285],[121,58,77,6.249726295471191],[121,58,78,6.245981216430664],[121,58,79,6.23707914352417],[121,59,64,6.132693767547607],[121,59,65,6.13508415222168],[121,59,66,6.132391929626465],[121,59,67,6.1280012130737305],[121,59,68,6.126828670501709],[121,59,69,6.133684158325195],[121,59,70,6.1502604484558105],[121,59,71,6.174976825714111],[121,59,72,6.206064701080322],[121,59,73,6.230831146240234],[121,59,74,6.244339466094971],[121,59,75,6.249833583831787],[121,59,76,6.2509636878967285],[121,59,77,6.249726295471191],[121,59,78,6.245981216430664],[121,59,79,6.23707914352417],[121,60,64,6.132693767547607],[121,60,65,6.13508415222168],[121,60,66,6.132391929626465],[121,60,67,6.1280012130737305],[121,60,68,6.126828670501709],[121,60,69,6.133684158325195],[121,60,70,6.1502604484558105],[121,60,71,6.174976825714111],[121,60,72,6.206064701080322],[121,60,73,6.230831146240234],[121,60,74,6.244339466094971],[121,60,75,6.249833583831787],[121,60,76,6.2509636878967285],[121,60,77,6.249726295471191],[121,60,78,6.245981216430664],[121,60,79,6.23707914352417],[121,61,64,6.132693767547607],[121,61,65,6.13508415222168],[121,61,66,6.132391929626465],[121,61,67,6.1280012130737305],[121,61,68,6.126828670501709],[121,61,69,6.133684158325195],[121,61,70,6.1502604484558105],[121,61,71,6.174976825714111],[121,61,72,6.206064701080322],[121,61,73,6.230831146240234],[121,61,74,6.244339466094971],[121,61,75,6.249833583831787],[121,61,76,6.2509636878967285],[121,61,77,6.249726295471191],[121,61,78,6.245981216430664],[121,61,79,6.23707914352417],[121,62,64,6.132693767547607],[121,62,65,6.13508415222168],[121,62,66,6.132391929626465],[121,62,67,6.1280012130737305],[121,62,68,6.126828670501709],[121,62,69,6.133684158325195],[121,62,70,6.1502604484558105],[121,62,71,6.174976825714111],[121,62,72,6.206064701080322],[121,62,73,6.230831146240234],[121,62,74,6.244339466094971],[121,62,75,6.249833583831787],[121,62,76,6.2509636878967285],[121,62,77,6.249726295471191],[121,62,78,6.245981216430664],[121,62,79,6.23707914352417],[121,63,64,6.132693767547607],[121,63,65,6.13508415222168],[121,63,66,6.132391929626465],[121,63,67,6.1280012130737305],[121,63,68,6.126828670501709],[121,63,69,6.133684158325195],[121,63,70,6.1502604484558105],[121,63,71,6.174976825714111],[121,63,72,6.206064701080322],[121,63,73,6.230831146240234],[121,63,74,6.244339466094971],[121,63,75,6.249833583831787],[121,63,76,6.2509636878967285],[121,63,77,6.249726295471191],[121,63,78,6.245981216430664],[121,63,79,6.23707914352417],[121,64,64,6.132693767547607],[121,64,65,6.13508415222168],[121,64,66,6.132391929626465],[121,64,67,6.1280012130737305],[121,64,68,6.126828670501709],[121,64,69,6.133684158325195],[121,64,70,6.1502604484558105],[121,64,71,6.174976825714111],[121,64,72,6.206064701080322],[121,64,73,6.230831146240234],[121,64,74,6.244339466094971],[121,64,75,6.249833583831787],[121,64,76,6.2509636878967285],[121,64,77,6.249726295471191],[121,64,78,6.245981216430664],[121,64,79,6.23707914352417],[121,65,64,6.132693767547607],[121,65,65,6.13508415222168],[121,65,66,6.132391929626465],[121,65,67,6.1280012130737305],[121,65,68,6.126828670501709],[121,65,69,6.133684158325195],[121,65,70,6.1502604484558105],[121,65,71,6.174976825714111],[121,65,72,6.206064701080322],[121,65,73,6.230831146240234],[121,65,74,6.244339466094971],[121,65,75,6.249833583831787],[121,65,76,6.2509636878967285],[121,65,77,6.249726295471191],[121,65,78,6.245981216430664],[121,65,79,6.23707914352417],[121,66,64,6.132693767547607],[121,66,65,6.13508415222168],[121,66,66,6.132391929626465],[121,66,67,6.1280012130737305],[121,66,68,6.126828670501709],[121,66,69,6.133684158325195],[121,66,70,6.1502604484558105],[121,66,71,6.174976825714111],[121,66,72,6.206064701080322],[121,66,73,6.230831146240234],[121,66,74,6.244339466094971],[121,66,75,6.249833583831787],[121,66,76,6.2509636878967285],[121,66,77,6.249726295471191],[121,66,78,6.245981216430664],[121,66,79,6.23707914352417],[121,67,64,6.132693767547607],[121,67,65,6.13508415222168],[121,67,66,6.132391929626465],[121,67,67,6.1280012130737305],[121,67,68,6.126828670501709],[121,67,69,6.133684158325195],[121,67,70,6.1502604484558105],[121,67,71,6.174976825714111],[121,67,72,6.206064701080322],[121,67,73,6.230831146240234],[121,67,74,6.244339466094971],[121,67,75,6.249833583831787],[121,67,76,6.2509636878967285],[121,67,77,6.249726295471191],[121,67,78,6.245981216430664],[121,67,79,6.23707914352417],[121,68,64,6.132693767547607],[121,68,65,6.13508415222168],[121,68,66,6.132391929626465],[121,68,67,6.1280012130737305],[121,68,68,6.126828670501709],[121,68,69,6.133684158325195],[121,68,70,6.1502604484558105],[121,68,71,6.174976825714111],[121,68,72,6.206064701080322],[121,68,73,6.230831146240234],[121,68,74,6.244339466094971],[121,68,75,6.249833583831787],[121,68,76,6.2509636878967285],[121,68,77,6.249726295471191],[121,68,78,6.245981216430664],[121,68,79,6.23707914352417],[121,69,64,6.132693767547607],[121,69,65,6.13508415222168],[121,69,66,6.132391929626465],[121,69,67,6.1280012130737305],[121,69,68,6.126828670501709],[121,69,69,6.133684158325195],[121,69,70,6.1502604484558105],[121,69,71,6.174976825714111],[121,69,72,6.206064701080322],[121,69,73,6.230831146240234],[121,69,74,6.244339466094971],[121,69,75,6.249833583831787],[121,69,76,6.2509636878967285],[121,69,77,6.249726295471191],[121,69,78,6.245981216430664],[121,69,79,6.23707914352417],[121,70,64,6.132693767547607],[121,70,65,6.13508415222168],[121,70,66,6.132391929626465],[121,70,67,6.1280012130737305],[121,70,68,6.126828670501709],[121,70,69,6.133684158325195],[121,70,70,6.1502604484558105],[121,70,71,6.174976825714111],[121,70,72,6.206064701080322],[121,70,73,6.230831146240234],[121,70,74,6.244339466094971],[121,70,75,6.249833583831787],[121,70,76,6.2509636878967285],[121,70,77,6.249726295471191],[121,70,78,6.245981216430664],[121,70,79,6.23707914352417],[121,71,64,6.132693767547607],[121,71,65,6.13508415222168],[121,71,66,6.132391929626465],[121,71,67,6.1280012130737305],[121,71,68,6.126828670501709],[121,71,69,6.133684158325195],[121,71,70,6.1502604484558105],[121,71,71,6.174976825714111],[121,71,72,6.206064701080322],[121,71,73,6.230831146240234],[121,71,74,6.244339466094971],[121,71,75,6.249833583831787],[121,71,76,6.2509636878967285],[121,71,77,6.249726295471191],[121,71,78,6.245981216430664],[121,71,79,6.23707914352417],[121,72,64,6.132693767547607],[121,72,65,6.13508415222168],[121,72,66,6.132391929626465],[121,72,67,6.1280012130737305],[121,72,68,6.126828670501709],[121,72,69,6.133684158325195],[121,72,70,6.1502604484558105],[121,72,71,6.174976825714111],[121,72,72,6.206064701080322],[121,72,73,6.230831146240234],[121,72,74,6.244339466094971],[121,72,75,6.249833583831787],[121,72,76,6.2509636878967285],[121,72,77,6.249726295471191],[121,72,78,6.245981216430664],[121,72,79,6.23707914352417],[121,73,64,6.132693767547607],[121,73,65,6.13508415222168],[121,73,66,6.132391929626465],[121,73,67,6.1280012130737305],[121,73,68,6.126828670501709],[121,73,69,6.133684158325195],[121,73,70,6.1502604484558105],[121,73,71,6.174976825714111],[121,73,72,6.206064701080322],[121,73,73,6.230831146240234],[121,73,74,6.244339466094971],[121,73,75,6.249833583831787],[121,73,76,6.2509636878967285],[121,73,77,6.249726295471191],[121,73,78,6.245981216430664],[121,73,79,6.23707914352417],[121,74,64,6.132693767547607],[121,74,65,6.13508415222168],[121,74,66,6.132391929626465],[121,74,67,6.1280012130737305],[121,74,68,6.126828670501709],[121,74,69,6.133684158325195],[121,74,70,6.1502604484558105],[121,74,71,6.174976825714111],[121,74,72,6.206064701080322],[121,74,73,6.230831146240234],[121,74,74,6.244339466094971],[121,74,75,6.249833583831787],[121,74,76,6.2509636878967285],[121,74,77,6.249726295471191],[121,74,78,6.245981216430664],[121,74,79,6.23707914352417],[121,75,64,6.132693767547607],[121,75,65,6.13508415222168],[121,75,66,6.132391929626465],[121,75,67,6.1280012130737305],[121,75,68,6.126828670501709],[121,75,69,6.133684158325195],[121,75,70,6.1502604484558105],[121,75,71,6.174976825714111],[121,75,72,6.206064701080322],[121,75,73,6.230831146240234],[121,75,74,6.244339466094971],[121,75,75,6.249833583831787],[121,75,76,6.2509636878967285],[121,75,77,6.249726295471191],[121,75,78,6.245981216430664],[121,75,79,6.23707914352417],[121,76,64,6.132693767547607],[121,76,65,6.13508415222168],[121,76,66,6.132391929626465],[121,76,67,6.1280012130737305],[121,76,68,6.126828670501709],[121,76,69,6.133684158325195],[121,76,70,6.1502604484558105],[121,76,71,6.174976825714111],[121,76,72,6.206064701080322],[121,76,73,6.230831146240234],[121,76,74,6.244339466094971],[121,76,75,6.249833583831787],[121,76,76,6.2509636878967285],[121,76,77,6.249726295471191],[121,76,78,6.245981216430664],[121,76,79,6.23707914352417],[121,77,64,6.132693767547607],[121,77,65,6.13508415222168],[121,77,66,6.132391929626465],[121,77,67,6.1280012130737305],[121,77,68,6.126828670501709],[121,77,69,6.133684158325195],[121,77,70,6.1502604484558105],[121,77,71,6.174976825714111],[121,77,72,6.206064701080322],[121,77,73,6.230831146240234],[121,77,74,6.244339466094971],[121,77,75,6.249833583831787],[121,77,76,6.2509636878967285],[121,77,77,6.249726295471191],[121,77,78,6.245981216430664],[121,77,79,6.23707914352417],[121,78,64,6.132693767547607],[121,78,65,6.13508415222168],[121,78,66,6.132391929626465],[121,78,67,6.1280012130737305],[121,78,68,6.126828670501709],[121,78,69,6.133684158325195],[121,78,70,6.1502604484558105],[121,78,71,6.174976825714111],[121,78,72,6.206064701080322],[121,78,73,6.230831146240234],[121,78,74,6.244339466094971],[121,78,75,6.249833583831787],[121,78,76,6.2509636878967285],[121,78,77,6.249726295471191],[121,78,78,6.245981216430664],[121,78,79,6.23707914352417],[121,79,64,6.132693767547607],[121,79,65,6.13508415222168],[121,79,66,6.132391929626465],[121,79,67,6.1280012130737305],[121,79,68,6.126828670501709],[121,79,69,6.133684158325195],[121,79,70,6.1502604484558105],[121,79,71,6.174976825714111],[121,79,72,6.206064701080322],[121,79,73,6.230831146240234],[121,79,74,6.244339466094971],[121,79,75,6.249833583831787],[121,79,76,6.2509636878967285],[121,79,77,6.249726295471191],[121,79,78,6.245981216430664],[121,79,79,6.23707914352417],[121,80,64,6.132693767547607],[121,80,65,6.13508415222168],[121,80,66,6.132391929626465],[121,80,67,6.1280012130737305],[121,80,68,6.126828670501709],[121,80,69,6.133684158325195],[121,80,70,6.1502604484558105],[121,80,71,6.174976825714111],[121,80,72,6.206064701080322],[121,80,73,6.230831146240234],[121,80,74,6.244339466094971],[121,80,75,6.249833583831787],[121,80,76,6.2509636878967285],[121,80,77,6.249726295471191],[121,80,78,6.245981216430664],[121,80,79,6.23707914352417],[121,81,64,6.132693767547607],[121,81,65,6.13508415222168],[121,81,66,6.132391929626465],[121,81,67,6.1280012130737305],[121,81,68,6.126828670501709],[121,81,69,6.133684158325195],[121,81,70,6.1502604484558105],[121,81,71,6.174976825714111],[121,81,72,6.206064701080322],[121,81,73,6.230831146240234],[121,81,74,6.244339466094971],[121,81,75,6.249833583831787],[121,81,76,6.2509636878967285],[121,81,77,6.249726295471191],[121,81,78,6.245981216430664],[121,81,79,6.23707914352417],[121,82,64,6.132693767547607],[121,82,65,6.13508415222168],[121,82,66,6.132391929626465],[121,82,67,6.1280012130737305],[121,82,68,6.126828670501709],[121,82,69,6.133684158325195],[121,82,70,6.1502604484558105],[121,82,71,6.174976825714111],[121,82,72,6.206064701080322],[121,82,73,6.230831146240234],[121,82,74,6.244339466094971],[121,82,75,6.249833583831787],[121,82,76,6.2509636878967285],[121,82,77,6.249726295471191],[121,82,78,6.245981216430664],[121,82,79,6.23707914352417],[121,83,64,6.132693767547607],[121,83,65,6.13508415222168],[121,83,66,6.132391929626465],[121,83,67,6.1280012130737305],[121,83,68,6.126828670501709],[121,83,69,6.133684158325195],[121,83,70,6.1502604484558105],[121,83,71,6.174976825714111],[121,83,72,6.206064701080322],[121,83,73,6.230831146240234],[121,83,74,6.244339466094971],[121,83,75,6.249833583831787],[121,83,76,6.2509636878967285],[121,83,77,6.249726295471191],[121,83,78,6.245981216430664],[121,83,79,6.23707914352417],[121,84,64,6.132693767547607],[121,84,65,6.13508415222168],[121,84,66,6.132391929626465],[121,84,67,6.1280012130737305],[121,84,68,6.126828670501709],[121,84,69,6.133684158325195],[121,84,70,6.1502604484558105],[121,84,71,6.174976825714111],[121,84,72,6.206064701080322],[121,84,73,6.230831146240234],[121,84,74,6.244339466094971],[121,84,75,6.249833583831787],[121,84,76,6.2509636878967285],[121,84,77,6.249726295471191],[121,84,78,6.245981216430664],[121,84,79,6.23707914352417],[121,85,64,6.132693767547607],[121,85,65,6.13508415222168],[121,85,66,6.132391929626465],[121,85,67,6.1280012130737305],[121,85,68,6.126828670501709],[121,85,69,6.133684158325195],[121,85,70,6.1502604484558105],[121,85,71,6.174976825714111],[121,85,72,6.206064701080322],[121,85,73,6.230831146240234],[121,85,74,6.244339466094971],[121,85,75,6.249833583831787],[121,85,76,6.2509636878967285],[121,85,77,6.249726295471191],[121,85,78,6.245981216430664],[121,85,79,6.23707914352417],[121,86,64,6.132693767547607],[121,86,65,6.13508415222168],[121,86,66,6.132391929626465],[121,86,67,6.1280012130737305],[121,86,68,6.126828670501709],[121,86,69,6.133684158325195],[121,86,70,6.1502604484558105],[121,86,71,6.174976825714111],[121,86,72,6.206064701080322],[121,86,73,6.230831146240234],[121,86,74,6.244339466094971],[121,86,75,6.249833583831787],[121,86,76,6.2509636878967285],[121,86,77,6.249726295471191],[121,86,78,6.245981216430664],[121,86,79,6.23707914352417],[121,87,64,6.132693767547607],[121,87,65,6.13508415222168],[121,87,66,6.132391929626465],[121,87,67,6.1280012130737305],[121,87,68,6.126828670501709],[121,87,69,6.133684158325195],[121,87,70,6.1502604484558105],[121,87,71,6.174976825714111],[121,87,72,6.206064701080322],[121,87,73,6.230831146240234],[121,87,74,6.244339466094971],[121,87,75,6.249833583831787],[121,87,76,6.2509636878967285],[121,87,77,6.249726295471191],[121,87,78,6.245981216430664],[121,87,79,6.23707914352417],[121,88,64,6.132693767547607],[121,88,65,6.13508415222168],[121,88,66,6.132391929626465],[121,88,67,6.1280012130737305],[121,88,68,6.126828670501709],[121,88,69,6.133684158325195],[121,88,70,6.1502604484558105],[121,88,71,6.174976825714111],[121,88,72,6.206064701080322],[121,88,73,6.230831146240234],[121,88,74,6.244339466094971],[121,88,75,6.249833583831787],[121,88,76,6.2509636878967285],[121,88,77,6.249726295471191],[121,88,78,6.245981216430664],[121,88,79,6.23707914352417],[121,89,64,6.132693767547607],[121,89,65,6.13508415222168],[121,89,66,6.132391929626465],[121,89,67,6.1280012130737305],[121,89,68,6.126828670501709],[121,89,69,6.133684158325195],[121,89,70,6.1502604484558105],[121,89,71,6.174976825714111],[121,89,72,6.206064701080322],[121,89,73,6.230831146240234],[121,89,74,6.244339466094971],[121,89,75,6.249833583831787],[121,89,76,6.2509636878967285],[121,89,77,6.249726295471191],[121,89,78,6.245981216430664],[121,89,79,6.23707914352417],[121,90,64,6.132693767547607],[121,90,65,6.13508415222168],[121,90,66,6.132391929626465],[121,90,67,6.1280012130737305],[121,90,68,6.126828670501709],[121,90,69,6.133684158325195],[121,90,70,6.1502604484558105],[121,90,71,6.174976825714111],[121,90,72,6.206064701080322],[121,90,73,6.230831146240234],[121,90,74,6.244339466094971],[121,90,75,6.249833583831787],[121,90,76,6.2509636878967285],[121,90,77,6.249726295471191],[121,90,78,6.245981216430664],[121,90,79,6.23707914352417],[121,91,64,6.132693767547607],[121,91,65,6.13508415222168],[121,91,66,6.132391929626465],[121,91,67,6.1280012130737305],[121,91,68,6.126828670501709],[121,91,69,6.133684158325195],[121,91,70,6.1502604484558105],[121,91,71,6.174976825714111],[121,91,72,6.206064701080322],[121,91,73,6.230831146240234],[121,91,74,6.244339466094971],[121,91,75,6.249833583831787],[121,91,76,6.2509636878967285],[121,91,77,6.249726295471191],[121,91,78,6.245981216430664],[121,91,79,6.23707914352417],[121,92,64,6.132693767547607],[121,92,65,6.13508415222168],[121,92,66,6.132391929626465],[121,92,67,6.1280012130737305],[121,92,68,6.126828670501709],[121,92,69,6.133684158325195],[121,92,70,6.1502604484558105],[121,92,71,6.174976825714111],[121,92,72,6.206064701080322],[121,92,73,6.230831146240234],[121,92,74,6.244339466094971],[121,92,75,6.249833583831787],[121,92,76,6.2509636878967285],[121,92,77,6.249726295471191],[121,92,78,6.245981216430664],[121,92,79,6.23707914352417],[121,93,64,6.132693767547607],[121,93,65,6.13508415222168],[121,93,66,6.132391929626465],[121,93,67,6.1280012130737305],[121,93,68,6.126828670501709],[121,93,69,6.133684158325195],[121,93,70,6.1502604484558105],[121,93,71,6.174976825714111],[121,93,72,6.206064701080322],[121,93,73,6.230831146240234],[121,93,74,6.244339466094971],[121,93,75,6.249833583831787],[121,93,76,6.2509636878967285],[121,93,77,6.249726295471191],[121,93,78,6.245981216430664],[121,93,79,6.23707914352417],[121,94,64,6.132693767547607],[121,94,65,6.13508415222168],[121,94,66,6.132391929626465],[121,94,67,6.1280012130737305],[121,94,68,6.126828670501709],[121,94,69,6.133684158325195],[121,94,70,6.1502604484558105],[121,94,71,6.174976825714111],[121,94,72,6.206064701080322],[121,94,73,6.230831146240234],[121,94,74,6.244339466094971],[121,94,75,6.249833583831787],[121,94,76,6.2509636878967285],[121,94,77,6.249726295471191],[121,94,78,6.245981216430664],[121,94,79,6.23707914352417],[121,95,64,6.132693767547607],[121,95,65,6.13508415222168],[121,95,66,6.132391929626465],[121,95,67,6.1280012130737305],[121,95,68,6.126828670501709],[121,95,69,6.133684158325195],[121,95,70,6.1502604484558105],[121,95,71,6.174976825714111],[121,95,72,6.206064701080322],[121,95,73,6.230831146240234],[121,95,74,6.244339466094971],[121,95,75,6.249833583831787],[121,95,76,6.2509636878967285],[121,95,77,6.249726295471191],[121,95,78,6.245981216430664],[121,95,79,6.23707914352417],[121,96,64,6.132693767547607],[121,96,65,6.13508415222168],[121,96,66,6.132391929626465],[121,96,67,6.1280012130737305],[121,96,68,6.126828670501709],[121,96,69,6.133684158325195],[121,96,70,6.1502604484558105],[121,96,71,6.174976825714111],[121,96,72,6.206064701080322],[121,96,73,6.230831146240234],[121,96,74,6.244339466094971],[121,96,75,6.249833583831787],[121,96,76,6.2509636878967285],[121,96,77,6.249726295471191],[121,96,78,6.245981216430664],[121,96,79,6.23707914352417],[121,97,64,6.132693767547607],[121,97,65,6.13508415222168],[121,97,66,6.132391929626465],[121,97,67,6.1280012130737305],[121,97,68,6.126828670501709],[121,97,69,6.133684158325195],[121,97,70,6.1502604484558105],[121,97,71,6.174976825714111],[121,97,72,6.206064701080322],[121,97,73,6.230831146240234],[121,97,74,6.244339466094971],[121,97,75,6.249833583831787],[121,97,76,6.2509636878967285],[121,97,77,6.249726295471191],[121,97,78,6.245981216430664],[121,97,79,6.23707914352417],[121,98,64,6.132693767547607],[121,98,65,6.13508415222168],[121,98,66,6.132391929626465],[121,98,67,6.1280012130737305],[121,98,68,6.126828670501709],[121,98,69,6.133684158325195],[121,98,70,6.1502604484558105],[121,98,71,6.174976825714111],[121,98,72,6.206064701080322],[121,98,73,6.230831146240234],[121,98,74,6.244339466094971],[121,98,75,6.249833583831787],[121,98,76,6.2509636878967285],[121,98,77,6.249726295471191],[121,98,78,6.245981216430664],[121,98,79,6.23707914352417],[121,99,64,6.132693767547607],[121,99,65,6.13508415222168],[121,99,66,6.132391929626465],[121,99,67,6.1280012130737305],[121,99,68,6.126828670501709],[121,99,69,6.133684158325195],[121,99,70,6.1502604484558105],[121,99,71,6.174976825714111],[121,99,72,6.206064701080322],[121,99,73,6.230831146240234],[121,99,74,6.244339466094971],[121,99,75,6.249833583831787],[121,99,76,6.2509636878967285],[121,99,77,6.249726295471191],[121,99,78,6.245981216430664],[121,99,79,6.23707914352417],[121,100,64,6.132693767547607],[121,100,65,6.13508415222168],[121,100,66,6.132391929626465],[121,100,67,6.1280012130737305],[121,100,68,6.126828670501709],[121,100,69,6.133684158325195],[121,100,70,6.1502604484558105],[121,100,71,6.174976825714111],[121,100,72,6.206064701080322],[121,100,73,6.230831146240234],[121,100,74,6.244339466094971],[121,100,75,6.249833583831787],[121,100,76,6.2509636878967285],[121,100,77,6.249726295471191],[121,100,78,6.245981216430664],[121,100,79,6.23707914352417],[121,101,64,6.132693767547607],[121,101,65,6.13508415222168],[121,101,66,6.132391929626465],[121,101,67,6.1280012130737305],[121,101,68,6.126828670501709],[121,101,69,6.133684158325195],[121,101,70,6.1502604484558105],[121,101,71,6.174976825714111],[121,101,72,6.206064701080322],[121,101,73,6.230831146240234],[121,101,74,6.244339466094971],[121,101,75,6.249833583831787],[121,101,76,6.2509636878967285],[121,101,77,6.249726295471191],[121,101,78,6.245981216430664],[121,101,79,6.23707914352417],[121,102,64,6.132693767547607],[121,102,65,6.13508415222168],[121,102,66,6.132391929626465],[121,102,67,6.1280012130737305],[121,102,68,6.126828670501709],[121,102,69,6.133684158325195],[121,102,70,6.1502604484558105],[121,102,71,6.174976825714111],[121,102,72,6.206064701080322],[121,102,73,6.230831146240234],[121,102,74,6.244339466094971],[121,102,75,6.249833583831787],[121,102,76,6.2509636878967285],[121,102,77,6.249726295471191],[121,102,78,6.245981216430664],[121,102,79,6.23707914352417],[121,103,64,6.132693767547607],[121,103,65,6.13508415222168],[121,103,66,6.132391929626465],[121,103,67,6.1280012130737305],[121,103,68,6.126828670501709],[121,103,69,6.133684158325195],[121,103,70,6.1502604484558105],[121,103,71,6.174976825714111],[121,103,72,6.206064701080322],[121,103,73,6.230831146240234],[121,103,74,6.244339466094971],[121,103,75,6.249833583831787],[121,103,76,6.2509636878967285],[121,103,77,6.249726295471191],[121,103,78,6.245981216430664],[121,103,79,6.23707914352417],[121,104,64,6.132693767547607],[121,104,65,6.13508415222168],[121,104,66,6.132391929626465],[121,104,67,6.1280012130737305],[121,104,68,6.126828670501709],[121,104,69,6.133684158325195],[121,104,70,6.1502604484558105],[121,104,71,6.174976825714111],[121,104,72,6.206064701080322],[121,104,73,6.230831146240234],[121,104,74,6.244339466094971],[121,104,75,6.249833583831787],[121,104,76,6.2509636878967285],[121,104,77,6.249726295471191],[121,104,78,6.245981216430664],[121,104,79,6.23707914352417],[121,105,64,6.132693767547607],[121,105,65,6.13508415222168],[121,105,66,6.132391929626465],[121,105,67,6.1280012130737305],[121,105,68,6.126828670501709],[121,105,69,6.133684158325195],[121,105,70,6.1502604484558105],[121,105,71,6.174976825714111],[121,105,72,6.206064701080322],[121,105,73,6.230831146240234],[121,105,74,6.244339466094971],[121,105,75,6.249833583831787],[121,105,76,6.2509636878967285],[121,105,77,6.249726295471191],[121,105,78,6.245981216430664],[121,105,79,6.23707914352417],[121,106,64,6.132693767547607],[121,106,65,6.13508415222168],[121,106,66,6.132391929626465],[121,106,67,6.1280012130737305],[121,106,68,6.126828670501709],[121,106,69,6.133684158325195],[121,106,70,6.1502604484558105],[121,106,71,6.174976825714111],[121,106,72,6.206064701080322],[121,106,73,6.230831146240234],[121,106,74,6.244339466094971],[121,106,75,6.249833583831787],[121,106,76,6.2509636878967285],[121,106,77,6.249726295471191],[121,106,78,6.245981216430664],[121,106,79,6.23707914352417],[121,107,64,6.132693767547607],[121,107,65,6.13508415222168],[121,107,66,6.132391929626465],[121,107,67,6.1280012130737305],[121,107,68,6.126828670501709],[121,107,69,6.133684158325195],[121,107,70,6.1502604484558105],[121,107,71,6.174976825714111],[121,107,72,6.206064701080322],[121,107,73,6.230831146240234],[121,107,74,6.244339466094971],[121,107,75,6.249833583831787],[121,107,76,6.2509636878967285],[121,107,77,6.249726295471191],[121,107,78,6.245981216430664],[121,107,79,6.23707914352417],[121,108,64,6.132693767547607],[121,108,65,6.13508415222168],[121,108,66,6.132391929626465],[121,108,67,6.1280012130737305],[121,108,68,6.126828670501709],[121,108,69,6.133684158325195],[121,108,70,6.1502604484558105],[121,108,71,6.174976825714111],[121,108,72,6.206064701080322],[121,108,73,6.230831146240234],[121,108,74,6.244339466094971],[121,108,75,6.249833583831787],[121,108,76,6.2509636878967285],[121,108,77,6.249726295471191],[121,108,78,6.245981216430664],[121,108,79,6.23707914352417],[121,109,64,6.132693767547607],[121,109,65,6.13508415222168],[121,109,66,6.132391929626465],[121,109,67,6.1280012130737305],[121,109,68,6.126828670501709],[121,109,69,6.133684158325195],[121,109,70,6.1502604484558105],[121,109,71,6.174976825714111],[121,109,72,6.206064701080322],[121,109,73,6.230831146240234],[121,109,74,6.244339466094971],[121,109,75,6.249833583831787],[121,109,76,6.2509636878967285],[121,109,77,6.249726295471191],[121,109,78,6.245981216430664],[121,109,79,6.23707914352417],[121,110,64,6.132693767547607],[121,110,65,6.13508415222168],[121,110,66,6.132391929626465],[121,110,67,6.1280012130737305],[121,110,68,6.126828670501709],[121,110,69,6.133684158325195],[121,110,70,6.1502604484558105],[121,110,71,6.174976825714111],[121,110,72,6.206064701080322],[121,110,73,6.230831146240234],[121,110,74,6.244339466094971],[121,110,75,6.249833583831787],[121,110,76,6.2509636878967285],[121,110,77,6.249726295471191],[121,110,78,6.245981216430664],[121,110,79,6.23707914352417],[121,111,64,6.132693767547607],[121,111,65,6.13508415222168],[121,111,66,6.132391929626465],[121,111,67,6.1280012130737305],[121,111,68,6.126828670501709],[121,111,69,6.133684158325195],[121,111,70,6.1502604484558105],[121,111,71,6.174976825714111],[121,111,72,6.206064701080322],[121,111,73,6.230831146240234],[121,111,74,6.244339466094971],[121,111,75,6.249833583831787],[121,111,76,6.2509636878967285],[121,111,77,6.249726295471191],[121,111,78,6.245981216430664],[121,111,79,6.23707914352417],[121,112,64,6.132693767547607],[121,112,65,6.13508415222168],[121,112,66,6.132391929626465],[121,112,67,6.1280012130737305],[121,112,68,6.126828670501709],[121,112,69,6.133684158325195],[121,112,70,6.1502604484558105],[121,112,71,6.174976825714111],[121,112,72,6.206064701080322],[121,112,73,6.230831146240234],[121,112,74,6.244339466094971],[121,112,75,6.249833583831787],[121,112,76,6.2509636878967285],[121,112,77,6.249726295471191],[121,112,78,6.245981216430664],[121,112,79,6.23707914352417],[121,113,64,6.132693767547607],[121,113,65,6.13508415222168],[121,113,66,6.132391929626465],[121,113,67,6.1280012130737305],[121,113,68,6.126828670501709],[121,113,69,6.133684158325195],[121,113,70,6.1502604484558105],[121,113,71,6.174976825714111],[121,113,72,6.206064701080322],[121,113,73,6.230831146240234],[121,113,74,6.244339466094971],[121,113,75,6.249833583831787],[121,113,76,6.2509636878967285],[121,113,77,6.249726295471191],[121,113,78,6.245981216430664],[121,113,79,6.23707914352417],[121,114,64,6.132693767547607],[121,114,65,6.13508415222168],[121,114,66,6.132391929626465],[121,114,67,6.1280012130737305],[121,114,68,6.126828670501709],[121,114,69,6.133684158325195],[121,114,70,6.1502604484558105],[121,114,71,6.174976825714111],[121,114,72,6.206064701080322],[121,114,73,6.230831146240234],[121,114,74,6.244339466094971],[121,114,75,6.249833583831787],[121,114,76,6.2509636878967285],[121,114,77,6.249726295471191],[121,114,78,6.245981216430664],[121,114,79,6.23707914352417],[121,115,64,6.132693767547607],[121,115,65,6.13508415222168],[121,115,66,6.132391929626465],[121,115,67,6.1280012130737305],[121,115,68,6.126828670501709],[121,115,69,6.133684158325195],[121,115,70,6.1502604484558105],[121,115,71,6.174976825714111],[121,115,72,6.206064701080322],[121,115,73,6.230831146240234],[121,115,74,6.244339466094971],[121,115,75,6.249833583831787],[121,115,76,6.2509636878967285],[121,115,77,6.249726295471191],[121,115,78,6.245981216430664],[121,115,79,6.23707914352417],[121,116,64,6.132693767547607],[121,116,65,6.13508415222168],[121,116,66,6.132391929626465],[121,116,67,6.1280012130737305],[121,116,68,6.126828670501709],[121,116,69,6.133684158325195],[121,116,70,6.1502604484558105],[121,116,71,6.174976825714111],[121,116,72,6.206064701080322],[121,116,73,6.230831146240234],[121,116,74,6.244339466094971],[121,116,75,6.249833583831787],[121,116,76,6.2509636878967285],[121,116,77,6.249726295471191],[121,116,78,6.245981216430664],[121,116,79,6.23707914352417],[121,117,64,6.132693767547607],[121,117,65,6.13508415222168],[121,117,66,6.132391929626465],[121,117,67,6.1280012130737305],[121,117,68,6.126828670501709],[121,117,69,6.133684158325195],[121,117,70,6.1502604484558105],[121,117,71,6.174976825714111],[121,117,72,6.206064701080322],[121,117,73,6.230831146240234],[121,117,74,6.244339466094971],[121,117,75,6.249833583831787],[121,117,76,6.2509636878967285],[121,117,77,6.249726295471191],[121,117,78,6.245981216430664],[121,117,79,6.23707914352417],[121,118,64,6.132693767547607],[121,118,65,6.13508415222168],[121,118,66,6.132391929626465],[121,118,67,6.1280012130737305],[121,118,68,6.126828670501709],[121,118,69,6.133684158325195],[121,118,70,6.1502604484558105],[121,118,71,6.174976825714111],[121,118,72,6.206064701080322],[121,118,73,6.230831146240234],[121,118,74,6.244339466094971],[121,118,75,6.249833583831787],[121,118,76,6.2509636878967285],[121,118,77,6.249726295471191],[121,118,78,6.245981216430664],[121,118,79,6.23707914352417],[121,119,64,6.132693767547607],[121,119,65,6.13508415222168],[121,119,66,6.132391929626465],[121,119,67,6.1280012130737305],[121,119,68,6.126828670501709],[121,119,69,6.133684158325195],[121,119,70,6.1502604484558105],[121,119,71,6.174976825714111],[121,119,72,6.206064701080322],[121,119,73,6.230831146240234],[121,119,74,6.244339466094971],[121,119,75,6.249833583831787],[121,119,76,6.2509636878967285],[121,119,77,6.249726295471191],[121,119,78,6.245981216430664],[121,119,79,6.23707914352417],[121,120,64,6.132693767547607],[121,120,65,6.13508415222168],[121,120,66,6.132391929626465],[121,120,67,6.1280012130737305],[121,120,68,6.126828670501709],[121,120,69,6.133684158325195],[121,120,70,6.1502604484558105],[121,120,71,6.174976825714111],[121,120,72,6.206064701080322],[121,120,73,6.230831146240234],[121,120,74,6.244339466094971],[121,120,75,6.249833583831787],[121,120,76,6.2509636878967285],[121,120,77,6.249726295471191],[121,120,78,6.245981216430664],[121,120,79,6.23707914352417],[121,121,64,6.132693767547607],[121,121,65,6.13508415222168],[121,121,66,6.132391929626465],[121,121,67,6.1280012130737305],[121,121,68,6.126828670501709],[121,121,69,6.133684158325195],[121,121,70,6.1502604484558105],[121,121,71,6.174976825714111],[121,121,72,6.206064701080322],[121,121,73,6.230831146240234],[121,121,74,6.244339466094971],[121,121,75,6.249833583831787],[121,121,76,6.2509636878967285],[121,121,77,6.249726295471191],[121,121,78,6.245981216430664],[121,121,79,6.23707914352417],[121,122,64,6.132693767547607],[121,122,65,6.13508415222168],[121,122,66,6.132391929626465],[121,122,67,6.1280012130737305],[121,122,68,6.126828670501709],[121,122,69,6.133684158325195],[121,122,70,6.1502604484558105],[121,122,71,6.174976825714111],[121,122,72,6.206064701080322],[121,122,73,6.230831146240234],[121,122,74,6.244339466094971],[121,122,75,6.249833583831787],[121,122,76,6.2509636878967285],[121,122,77,6.249726295471191],[121,122,78,6.245981216430664],[121,122,79,6.23707914352417],[121,123,64,6.132693767547607],[121,123,65,6.13508415222168],[121,123,66,6.132391929626465],[121,123,67,6.1280012130737305],[121,123,68,6.126828670501709],[121,123,69,6.133684158325195],[121,123,70,6.1502604484558105],[121,123,71,6.174976825714111],[121,123,72,6.206064701080322],[121,123,73,6.230831146240234],[121,123,74,6.244339466094971],[121,123,75,6.249833583831787],[121,123,76,6.2509636878967285],[121,123,77,6.249726295471191],[121,123,78,6.245981216430664],[121,123,79,6.23707914352417],[121,124,64,6.132693767547607],[121,124,65,6.13508415222168],[121,124,66,6.132391929626465],[121,124,67,6.1280012130737305],[121,124,68,6.126828670501709],[121,124,69,6.133684158325195],[121,124,70,6.1502604484558105],[121,124,71,6.174976825714111],[121,124,72,6.206064701080322],[121,124,73,6.230831146240234],[121,124,74,6.244339466094971],[121,124,75,6.249833583831787],[121,124,76,6.2509636878967285],[121,124,77,6.249726295471191],[121,124,78,6.245981216430664],[121,124,79,6.23707914352417],[121,125,64,6.132693767547607],[121,125,65,6.13508415222168],[121,125,66,6.132391929626465],[121,125,67,6.1280012130737305],[121,125,68,6.126828670501709],[121,125,69,6.133684158325195],[121,125,70,6.1502604484558105],[121,125,71,6.174976825714111],[121,125,72,6.206064701080322],[121,125,73,6.230831146240234],[121,125,74,6.244339466094971],[121,125,75,6.249833583831787],[121,125,76,6.2509636878967285],[121,125,77,6.249726295471191],[121,125,78,6.245981216430664],[121,125,79,6.23707914352417],[121,126,64,6.132693767547607],[121,126,65,6.13508415222168],[121,126,66,6.132391929626465],[121,126,67,6.1280012130737305],[121,126,68,6.126828670501709],[121,126,69,6.133684158325195],[121,126,70,6.1502604484558105],[121,126,71,6.174976825714111],[121,126,72,6.206064701080322],[121,126,73,6.230831146240234],[121,126,74,6.244339466094971],[121,126,75,6.249833583831787],[121,126,76,6.2509636878967285],[121,126,77,6.249726295471191],[121,126,78,6.245981216430664],[121,126,79,6.23707914352417],[121,127,64,6.132693767547607],[121,127,65,6.13508415222168],[121,127,66,6.132391929626465],[121,127,67,6.1280012130737305],[121,127,68,6.126828670501709],[121,127,69,6.133684158325195],[121,127,70,6.1502604484558105],[121,127,71,6.174976825714111],[121,127,72,6.206064701080322],[121,127,73,6.230831146240234],[121,127,74,6.244339466094971],[121,127,75,6.249833583831787],[121,127,76,6.2509636878967285],[121,127,77,6.249726295471191],[121,127,78,6.245981216430664],[121,127,79,6.23707914352417],[121,128,64,6.132693767547607],[121,128,65,6.13508415222168],[121,128,66,6.132391929626465],[121,128,67,6.1280012130737305],[121,128,68,6.126828670501709],[121,128,69,6.133684158325195],[121,128,70,6.1502604484558105],[121,128,71,6.174976825714111],[121,128,72,6.206064701080322],[121,128,73,6.230831146240234],[121,128,74,6.244339466094971],[121,128,75,6.249833583831787],[121,128,76,6.2509636878967285],[121,128,77,6.249726295471191],[121,128,78,6.245981216430664],[121,128,79,6.23707914352417],[121,129,64,6.132693767547607],[121,129,65,6.13508415222168],[121,129,66,6.132391929626465],[121,129,67,6.1280012130737305],[121,129,68,6.126828670501709],[121,129,69,6.133684158325195],[121,129,70,6.1502604484558105],[121,129,71,6.174976825714111],[121,129,72,6.206064701080322],[121,129,73,6.230831146240234],[121,129,74,6.244339466094971],[121,129,75,6.249833583831787],[121,129,76,6.2509636878967285],[121,129,77,6.249726295471191],[121,129,78,6.245981216430664],[121,129,79,6.23707914352417],[121,130,64,6.132693767547607],[121,130,65,6.13508415222168],[121,130,66,6.132391929626465],[121,130,67,6.1280012130737305],[121,130,68,6.126828670501709],[121,130,69,6.133684158325195],[121,130,70,6.1502604484558105],[121,130,71,6.174976825714111],[121,130,72,6.206064701080322],[121,130,73,6.230831146240234],[121,130,74,6.244339466094971],[121,130,75,6.249833583831787],[121,130,76,6.2509636878967285],[121,130,77,6.249726295471191],[121,130,78,6.245981216430664],[121,130,79,6.23707914352417],[121,131,64,6.132693767547607],[121,131,65,6.13508415222168],[121,131,66,6.132391929626465],[121,131,67,6.1280012130737305],[121,131,68,6.126828670501709],[121,131,69,6.133684158325195],[121,131,70,6.1502604484558105],[121,131,71,6.174976825714111],[121,131,72,6.206064701080322],[121,131,73,6.230831146240234],[121,131,74,6.244339466094971],[121,131,75,6.249833583831787],[121,131,76,6.2509636878967285],[121,131,77,6.249726295471191],[121,131,78,6.245981216430664],[121,131,79,6.23707914352417],[121,132,64,6.132693767547607],[121,132,65,6.13508415222168],[121,132,66,6.132391929626465],[121,132,67,6.1280012130737305],[121,132,68,6.126828670501709],[121,132,69,6.133684158325195],[121,132,70,6.1502604484558105],[121,132,71,6.174976825714111],[121,132,72,6.206064701080322],[121,132,73,6.230831146240234],[121,132,74,6.244339466094971],[121,132,75,6.249833583831787],[121,132,76,6.2509636878967285],[121,132,77,6.249726295471191],[121,132,78,6.245981216430664],[121,132,79,6.23707914352417],[121,133,64,6.132693767547607],[121,133,65,6.13508415222168],[121,133,66,6.132391929626465],[121,133,67,6.1280012130737305],[121,133,68,6.126828670501709],[121,133,69,6.133684158325195],[121,133,70,6.1502604484558105],[121,133,71,6.174976825714111],[121,133,72,6.206064701080322],[121,133,73,6.230831146240234],[121,133,74,6.244339466094971],[121,133,75,6.249833583831787],[121,133,76,6.2509636878967285],[121,133,77,6.249726295471191],[121,133,78,6.245981216430664],[121,133,79,6.23707914352417],[121,134,64,6.132693767547607],[121,134,65,6.13508415222168],[121,134,66,6.132391929626465],[121,134,67,6.1280012130737305],[121,134,68,6.126828670501709],[121,134,69,6.133684158325195],[121,134,70,6.1502604484558105],[121,134,71,6.174976825714111],[121,134,72,6.206064701080322],[121,134,73,6.230831146240234],[121,134,74,6.244339466094971],[121,134,75,6.249833583831787],[121,134,76,6.2509636878967285],[121,134,77,6.249726295471191],[121,134,78,6.245981216430664],[121,134,79,6.23707914352417],[121,135,64,6.132693767547607],[121,135,65,6.13508415222168],[121,135,66,6.132391929626465],[121,135,67,6.1280012130737305],[121,135,68,6.126828670501709],[121,135,69,6.133684158325195],[121,135,70,6.1502604484558105],[121,135,71,6.174976825714111],[121,135,72,6.206064701080322],[121,135,73,6.230831146240234],[121,135,74,6.244339466094971],[121,135,75,6.249833583831787],[121,135,76,6.2509636878967285],[121,135,77,6.249726295471191],[121,135,78,6.245981216430664],[121,135,79,6.23707914352417],[121,136,64,6.132693767547607],[121,136,65,6.13508415222168],[121,136,66,6.132391929626465],[121,136,67,6.1280012130737305],[121,136,68,6.126828670501709],[121,136,69,6.133684158325195],[121,136,70,6.1502604484558105],[121,136,71,6.174976825714111],[121,136,72,6.206064701080322],[121,136,73,6.230831146240234],[121,136,74,6.244339466094971],[121,136,75,6.249833583831787],[121,136,76,6.2509636878967285],[121,136,77,6.249726295471191],[121,136,78,6.245981216430664],[121,136,79,6.23707914352417],[121,137,64,6.132693767547607],[121,137,65,6.13508415222168],[121,137,66,6.132391929626465],[121,137,67,6.1280012130737305],[121,137,68,6.126828670501709],[121,137,69,6.133684158325195],[121,137,70,6.1502604484558105],[121,137,71,6.174976825714111],[121,137,72,6.206064701080322],[121,137,73,6.230831146240234],[121,137,74,6.244339466094971],[121,137,75,6.249833583831787],[121,137,76,6.2509636878967285],[121,137,77,6.249726295471191],[121,137,78,6.245981216430664],[121,137,79,6.23707914352417],[121,138,64,6.132693767547607],[121,138,65,6.13508415222168],[121,138,66,6.132391929626465],[121,138,67,6.1280012130737305],[121,138,68,6.126828670501709],[121,138,69,6.133684158325195],[121,138,70,6.1502604484558105],[121,138,71,6.174976825714111],[121,138,72,6.206064701080322],[121,138,73,6.230831146240234],[121,138,74,6.244339466094971],[121,138,75,6.249833583831787],[121,138,76,6.2509636878967285],[121,138,77,6.249726295471191],[121,138,78,6.245981216430664],[121,138,79,6.23707914352417],[121,139,64,6.132693767547607],[121,139,65,6.13508415222168],[121,139,66,6.132391929626465],[121,139,67,6.1280012130737305],[121,139,68,6.126828670501709],[121,139,69,6.133684158325195],[121,139,70,6.1502604484558105],[121,139,71,6.174976825714111],[121,139,72,6.206064701080322],[121,139,73,6.230831146240234],[121,139,74,6.244339466094971],[121,139,75,6.249833583831787],[121,139,76,6.2509636878967285],[121,139,77,6.249726295471191],[121,139,78,6.245981216430664],[121,139,79,6.23707914352417],[121,140,64,6.132693767547607],[121,140,65,6.13508415222168],[121,140,66,6.132391929626465],[121,140,67,6.1280012130737305],[121,140,68,6.126828670501709],[121,140,69,6.133684158325195],[121,140,70,6.1502604484558105],[121,140,71,6.174976825714111],[121,140,72,6.206064701080322],[121,140,73,6.230831146240234],[121,140,74,6.244339466094971],[121,140,75,6.249833583831787],[121,140,76,6.2509636878967285],[121,140,77,6.249726295471191],[121,140,78,6.245981216430664],[121,140,79,6.23707914352417],[121,141,64,6.132693767547607],[121,141,65,6.13508415222168],[121,141,66,6.132391929626465],[121,141,67,6.1280012130737305],[121,141,68,6.126828670501709],[121,141,69,6.133684158325195],[121,141,70,6.1502604484558105],[121,141,71,6.174976825714111],[121,141,72,6.206064701080322],[121,141,73,6.230831146240234],[121,141,74,6.244339466094971],[121,141,75,6.249833583831787],[121,141,76,6.2509636878967285],[121,141,77,6.249726295471191],[121,141,78,6.245981216430664],[121,141,79,6.23707914352417],[121,142,64,6.132693767547607],[121,142,65,6.13508415222168],[121,142,66,6.132391929626465],[121,142,67,6.1280012130737305],[121,142,68,6.126828670501709],[121,142,69,6.133684158325195],[121,142,70,6.1502604484558105],[121,142,71,6.174976825714111],[121,142,72,6.206064701080322],[121,142,73,6.230831146240234],[121,142,74,6.244339466094971],[121,142,75,6.249833583831787],[121,142,76,6.2509636878967285],[121,142,77,6.249726295471191],[121,142,78,6.245981216430664],[121,142,79,6.23707914352417],[121,143,64,6.132693767547607],[121,143,65,6.13508415222168],[121,143,66,6.132391929626465],[121,143,67,6.1280012130737305],[121,143,68,6.126828670501709],[121,143,69,6.133684158325195],[121,143,70,6.1502604484558105],[121,143,71,6.174976825714111],[121,143,72,6.206064701080322],[121,143,73,6.230831146240234],[121,143,74,6.244339466094971],[121,143,75,6.249833583831787],[121,143,76,6.2509636878967285],[121,143,77,6.249726295471191],[121,143,78,6.245981216430664],[121,143,79,6.23707914352417],[121,144,64,6.132693767547607],[121,144,65,6.13508415222168],[121,144,66,6.132391929626465],[121,144,67,6.1280012130737305],[121,144,68,6.126828670501709],[121,144,69,6.133684158325195],[121,144,70,6.1502604484558105],[121,144,71,6.174976825714111],[121,144,72,6.206064701080322],[121,144,73,6.230831146240234],[121,144,74,6.244339466094971],[121,144,75,6.249833583831787],[121,144,76,6.2509636878967285],[121,144,77,6.249726295471191],[121,144,78,6.245981216430664],[121,144,79,6.23707914352417],[121,145,64,6.132693767547607],[121,145,65,6.13508415222168],[121,145,66,6.132391929626465],[121,145,67,6.1280012130737305],[121,145,68,6.126828670501709],[121,145,69,6.133684158325195],[121,145,70,6.1502604484558105],[121,145,71,6.174976825714111],[121,145,72,6.206064701080322],[121,145,73,6.230831146240234],[121,145,74,6.244339466094971],[121,145,75,6.249833583831787],[121,145,76,6.2509636878967285],[121,145,77,6.249726295471191],[121,145,78,6.245981216430664],[121,145,79,6.23707914352417],[121,146,64,6.132693767547607],[121,146,65,6.13508415222168],[121,146,66,6.132391929626465],[121,146,67,6.1280012130737305],[121,146,68,6.126828670501709],[121,146,69,6.133684158325195],[121,146,70,6.1502604484558105],[121,146,71,6.174976825714111],[121,146,72,6.206064701080322],[121,146,73,6.230831146240234],[121,146,74,6.244339466094971],[121,146,75,6.249833583831787],[121,146,76,6.2509636878967285],[121,146,77,6.249726295471191],[121,146,78,6.245981216430664],[121,146,79,6.23707914352417],[121,147,64,6.132693767547607],[121,147,65,6.13508415222168],[121,147,66,6.132391929626465],[121,147,67,6.1280012130737305],[121,147,68,6.126828670501709],[121,147,69,6.133684158325195],[121,147,70,6.1502604484558105],[121,147,71,6.174976825714111],[121,147,72,6.206064701080322],[121,147,73,6.230831146240234],[121,147,74,6.244339466094971],[121,147,75,6.249833583831787],[121,147,76,6.2509636878967285],[121,147,77,6.249726295471191],[121,147,78,6.245981216430664],[121,147,79,6.23707914352417],[121,148,64,6.132693767547607],[121,148,65,6.13508415222168],[121,148,66,6.132391929626465],[121,148,67,6.1280012130737305],[121,148,68,6.126828670501709],[121,148,69,6.133684158325195],[121,148,70,6.1502604484558105],[121,148,71,6.174976825714111],[121,148,72,6.206064701080322],[121,148,73,6.230831146240234],[121,148,74,6.244339466094971],[121,148,75,6.249833583831787],[121,148,76,6.2509636878967285],[121,148,77,6.249726295471191],[121,148,78,6.245981216430664],[121,148,79,6.23707914352417],[121,149,64,6.132693767547607],[121,149,65,6.13508415222168],[121,149,66,6.132391929626465],[121,149,67,6.1280012130737305],[121,149,68,6.126828670501709],[121,149,69,6.133684158325195],[121,149,70,6.1502604484558105],[121,149,71,6.174976825714111],[121,149,72,6.206064701080322],[121,149,73,6.230831146240234],[121,149,74,6.244339466094971],[121,149,75,6.249833583831787],[121,149,76,6.2509636878967285],[121,149,77,6.249726295471191],[121,149,78,6.245981216430664],[121,149,79,6.23707914352417],[121,150,64,6.132693767547607],[121,150,65,6.13508415222168],[121,150,66,6.132391929626465],[121,150,67,6.1280012130737305],[121,150,68,6.126828670501709],[121,150,69,6.133684158325195],[121,150,70,6.1502604484558105],[121,150,71,6.174976825714111],[121,150,72,6.206064701080322],[121,150,73,6.230831146240234],[121,150,74,6.244339466094971],[121,150,75,6.249833583831787],[121,150,76,6.2509636878967285],[121,150,77,6.249726295471191],[121,150,78,6.245981216430664],[121,150,79,6.23707914352417],[121,151,64,6.132693767547607],[121,151,65,6.13508415222168],[121,151,66,6.132391929626465],[121,151,67,6.1280012130737305],[121,151,68,6.126828670501709],[121,151,69,6.133684158325195],[121,151,70,6.1502604484558105],[121,151,71,6.174976825714111],[121,151,72,6.206064701080322],[121,151,73,6.230831146240234],[121,151,74,6.244339466094971],[121,151,75,6.249833583831787],[121,151,76,6.2509636878967285],[121,151,77,6.249726295471191],[121,151,78,6.245981216430664],[121,151,79,6.23707914352417],[121,152,64,6.132693767547607],[121,152,65,6.13508415222168],[121,152,66,6.132391929626465],[121,152,67,6.1280012130737305],[121,152,68,6.126828670501709],[121,152,69,6.133684158325195],[121,152,70,6.1502604484558105],[121,152,71,6.174976825714111],[121,152,72,6.206064701080322],[121,152,73,6.230831146240234],[121,152,74,6.244339466094971],[121,152,75,6.249833583831787],[121,152,76,6.2509636878967285],[121,152,77,6.249726295471191],[121,152,78,6.245981216430664],[121,152,79,6.23707914352417],[121,153,64,6.132693767547607],[121,153,65,6.13508415222168],[121,153,66,6.132391929626465],[121,153,67,6.1280012130737305],[121,153,68,6.126828670501709],[121,153,69,6.133684158325195],[121,153,70,6.1502604484558105],[121,153,71,6.174976825714111],[121,153,72,6.206064701080322],[121,153,73,6.230831146240234],[121,153,74,6.244339466094971],[121,153,75,6.249833583831787],[121,153,76,6.2509636878967285],[121,153,77,6.249726295471191],[121,153,78,6.245981216430664],[121,153,79,6.23707914352417],[121,154,64,6.132693767547607],[121,154,65,6.13508415222168],[121,154,66,6.132391929626465],[121,154,67,6.1280012130737305],[121,154,68,6.126828670501709],[121,154,69,6.133684158325195],[121,154,70,6.1502604484558105],[121,154,71,6.174976825714111],[121,154,72,6.206064701080322],[121,154,73,6.230831146240234],[121,154,74,6.244339466094971],[121,154,75,6.249833583831787],[121,154,76,6.2509636878967285],[121,154,77,6.249726295471191],[121,154,78,6.245981216430664],[121,154,79,6.23707914352417],[121,155,64,6.132693767547607],[121,155,65,6.13508415222168],[121,155,66,6.132391929626465],[121,155,67,6.1280012130737305],[121,155,68,6.126828670501709],[121,155,69,6.133684158325195],[121,155,70,6.1502604484558105],[121,155,71,6.174976825714111],[121,155,72,6.206064701080322],[121,155,73,6.230831146240234],[121,155,74,6.244339466094971],[121,155,75,6.249833583831787],[121,155,76,6.2509636878967285],[121,155,77,6.249726295471191],[121,155,78,6.245981216430664],[121,155,79,6.23707914352417],[121,156,64,6.132693767547607],[121,156,65,6.13508415222168],[121,156,66,6.132391929626465],[121,156,67,6.1280012130737305],[121,156,68,6.126828670501709],[121,156,69,6.133684158325195],[121,156,70,6.1502604484558105],[121,156,71,6.174976825714111],[121,156,72,6.206064701080322],[121,156,73,6.230831146240234],[121,156,74,6.244339466094971],[121,156,75,6.249833583831787],[121,156,76,6.2509636878967285],[121,156,77,6.249726295471191],[121,156,78,6.245981216430664],[121,156,79,6.23707914352417],[121,157,64,6.132693767547607],[121,157,65,6.13508415222168],[121,157,66,6.132391929626465],[121,157,67,6.1280012130737305],[121,157,68,6.126828670501709],[121,157,69,6.133684158325195],[121,157,70,6.1502604484558105],[121,157,71,6.174976825714111],[121,157,72,6.206064701080322],[121,157,73,6.230831146240234],[121,157,74,6.244339466094971],[121,157,75,6.249833583831787],[121,157,76,6.2509636878967285],[121,157,77,6.249726295471191],[121,157,78,6.245981216430664],[121,157,79,6.23707914352417],[121,158,64,6.132693767547607],[121,158,65,6.13508415222168],[121,158,66,6.132391929626465],[121,158,67,6.1280012130737305],[121,158,68,6.126828670501709],[121,158,69,6.133684158325195],[121,158,70,6.1502604484558105],[121,158,71,6.174976825714111],[121,158,72,6.206064701080322],[121,158,73,6.230831146240234],[121,158,74,6.244339466094971],[121,158,75,6.249833583831787],[121,158,76,6.2509636878967285],[121,158,77,6.249726295471191],[121,158,78,6.245981216430664],[121,158,79,6.23707914352417],[121,159,64,6.132693767547607],[121,159,65,6.13508415222168],[121,159,66,6.132391929626465],[121,159,67,6.1280012130737305],[121,159,68,6.126828670501709],[121,159,69,6.133684158325195],[121,159,70,6.1502604484558105],[121,159,71,6.174976825714111],[121,159,72,6.206064701080322],[121,159,73,6.230831146240234],[121,159,74,6.244339466094971],[121,159,75,6.249833583831787],[121,159,76,6.2509636878967285],[121,159,77,6.249726295471191],[121,159,78,6.245981216430664],[121,159,79,6.23707914352417],[121,160,64,6.132693767547607],[121,160,65,6.13508415222168],[121,160,66,6.132391929626465],[121,160,67,6.1280012130737305],[121,160,68,6.126828670501709],[121,160,69,6.133684158325195],[121,160,70,6.1502604484558105],[121,160,71,6.174976825714111],[121,160,72,6.206064701080322],[121,160,73,6.230831146240234],[121,160,74,6.244339466094971],[121,160,75,6.249833583831787],[121,160,76,6.2509636878967285],[121,160,77,6.249726295471191],[121,160,78,6.245981216430664],[121,160,79,6.23707914352417],[121,161,64,6.132693767547607],[121,161,65,6.13508415222168],[121,161,66,6.132391929626465],[121,161,67,6.1280012130737305],[121,161,68,6.126828670501709],[121,161,69,6.133684158325195],[121,161,70,6.1502604484558105],[121,161,71,6.174976825714111],[121,161,72,6.206064701080322],[121,161,73,6.230831146240234],[121,161,74,6.244339466094971],[121,161,75,6.249833583831787],[121,161,76,6.2509636878967285],[121,161,77,6.249726295471191],[121,161,78,6.245981216430664],[121,161,79,6.23707914352417],[121,162,64,6.132693767547607],[121,162,65,6.13508415222168],[121,162,66,6.132391929626465],[121,162,67,6.1280012130737305],[121,162,68,6.126828670501709],[121,162,69,6.133684158325195],[121,162,70,6.1502604484558105],[121,162,71,6.174976825714111],[121,162,72,6.206064701080322],[121,162,73,6.230831146240234],[121,162,74,6.244339466094971],[121,162,75,6.249833583831787],[121,162,76,6.2509636878967285],[121,162,77,6.249726295471191],[121,162,78,6.245981216430664],[121,162,79,6.23707914352417],[121,163,64,6.132693767547607],[121,163,65,6.13508415222168],[121,163,66,6.132391929626465],[121,163,67,6.1280012130737305],[121,163,68,6.126828670501709],[121,163,69,6.133684158325195],[121,163,70,6.1502604484558105],[121,163,71,6.174976825714111],[121,163,72,6.206064701080322],[121,163,73,6.230831146240234],[121,163,74,6.244339466094971],[121,163,75,6.249833583831787],[121,163,76,6.2509636878967285],[121,163,77,6.249726295471191],[121,163,78,6.245981216430664],[121,163,79,6.23707914352417],[121,164,64,6.132693767547607],[121,164,65,6.13508415222168],[121,164,66,6.132391929626465],[121,164,67,6.1280012130737305],[121,164,68,6.126828670501709],[121,164,69,6.133684158325195],[121,164,70,6.1502604484558105],[121,164,71,6.174976825714111],[121,164,72,6.206064701080322],[121,164,73,6.230831146240234],[121,164,74,6.244339466094971],[121,164,75,6.249833583831787],[121,164,76,6.2509636878967285],[121,164,77,6.249726295471191],[121,164,78,6.245981216430664],[121,164,79,6.23707914352417],[121,165,64,6.132693767547607],[121,165,65,6.13508415222168],[121,165,66,6.132391929626465],[121,165,67,6.1280012130737305],[121,165,68,6.126828670501709],[121,165,69,6.133684158325195],[121,165,70,6.1502604484558105],[121,165,71,6.174976825714111],[121,165,72,6.206064701080322],[121,165,73,6.230831146240234],[121,165,74,6.244339466094971],[121,165,75,6.249833583831787],[121,165,76,6.2509636878967285],[121,165,77,6.249726295471191],[121,165,78,6.245981216430664],[121,165,79,6.23707914352417],[121,166,64,6.132693767547607],[121,166,65,6.13508415222168],[121,166,66,6.132391929626465],[121,166,67,6.1280012130737305],[121,166,68,6.126828670501709],[121,166,69,6.133684158325195],[121,166,70,6.1502604484558105],[121,166,71,6.174976825714111],[121,166,72,6.206064701080322],[121,166,73,6.230831146240234],[121,166,74,6.244339466094971],[121,166,75,6.249833583831787],[121,166,76,6.2509636878967285],[121,166,77,6.249726295471191],[121,166,78,6.245981216430664],[121,166,79,6.23707914352417],[121,167,64,6.132693767547607],[121,167,65,6.13508415222168],[121,167,66,6.132391929626465],[121,167,67,6.1280012130737305],[121,167,68,6.126828670501709],[121,167,69,6.133684158325195],[121,167,70,6.1502604484558105],[121,167,71,6.174976825714111],[121,167,72,6.206064701080322],[121,167,73,6.230831146240234],[121,167,74,6.244339466094971],[121,167,75,6.249833583831787],[121,167,76,6.2509636878967285],[121,167,77,6.249726295471191],[121,167,78,6.245981216430664],[121,167,79,6.23707914352417],[121,168,64,6.132693767547607],[121,168,65,6.13508415222168],[121,168,66,6.132391929626465],[121,168,67,6.1280012130737305],[121,168,68,6.126828670501709],[121,168,69,6.133684158325195],[121,168,70,6.1502604484558105],[121,168,71,6.174976825714111],[121,168,72,6.206064701080322],[121,168,73,6.230831146240234],[121,168,74,6.244339466094971],[121,168,75,6.249833583831787],[121,168,76,6.2509636878967285],[121,168,77,6.249726295471191],[121,168,78,6.245981216430664],[121,168,79,6.23707914352417],[121,169,64,6.132693767547607],[121,169,65,6.13508415222168],[121,169,66,6.132391929626465],[121,169,67,6.1280012130737305],[121,169,68,6.126828670501709],[121,169,69,6.133684158325195],[121,169,70,6.1502604484558105],[121,169,71,6.174976825714111],[121,169,72,6.206064701080322],[121,169,73,6.230831146240234],[121,169,74,6.244339466094971],[121,169,75,6.249833583831787],[121,169,76,6.2509636878967285],[121,169,77,6.249726295471191],[121,169,78,6.245981216430664],[121,169,79,6.23707914352417],[121,170,64,6.132693767547607],[121,170,65,6.13508415222168],[121,170,66,6.132391929626465],[121,170,67,6.1280012130737305],[121,170,68,6.126828670501709],[121,170,69,6.133684158325195],[121,170,70,6.1502604484558105],[121,170,71,6.174976825714111],[121,170,72,6.206064701080322],[121,170,73,6.230831146240234],[121,170,74,6.244339466094971],[121,170,75,6.249833583831787],[121,170,76,6.2509636878967285],[121,170,77,6.249726295471191],[121,170,78,6.245981216430664],[121,170,79,6.23707914352417],[121,171,64,6.132693767547607],[121,171,65,6.13508415222168],[121,171,66,6.132391929626465],[121,171,67,6.1280012130737305],[121,171,68,6.126828670501709],[121,171,69,6.133684158325195],[121,171,70,6.1502604484558105],[121,171,71,6.174976825714111],[121,171,72,6.206064701080322],[121,171,73,6.230831146240234],[121,171,74,6.244339466094971],[121,171,75,6.249833583831787],[121,171,76,6.2509636878967285],[121,171,77,6.249726295471191],[121,171,78,6.245981216430664],[121,171,79,6.23707914352417],[121,172,64,6.132693767547607],[121,172,65,6.13508415222168],[121,172,66,6.132391929626465],[121,172,67,6.1280012130737305],[121,172,68,6.126828670501709],[121,172,69,6.133684158325195],[121,172,70,6.1502604484558105],[121,172,71,6.174976825714111],[121,172,72,6.206064701080322],[121,172,73,6.230831146240234],[121,172,74,6.244339466094971],[121,172,75,6.249833583831787],[121,172,76,6.2509636878967285],[121,172,77,6.249726295471191],[121,172,78,6.245981216430664],[121,172,79,6.23707914352417],[121,173,64,6.132693767547607],[121,173,65,6.13508415222168],[121,173,66,6.132391929626465],[121,173,67,6.1280012130737305],[121,173,68,6.126828670501709],[121,173,69,6.133684158325195],[121,173,70,6.1502604484558105],[121,173,71,6.174976825714111],[121,173,72,6.206064701080322],[121,173,73,6.230831146240234],[121,173,74,6.244339466094971],[121,173,75,6.249833583831787],[121,173,76,6.2509636878967285],[121,173,77,6.249726295471191],[121,173,78,6.245981216430664],[121,173,79,6.23707914352417],[121,174,64,6.132693767547607],[121,174,65,6.13508415222168],[121,174,66,6.132391929626465],[121,174,67,6.1280012130737305],[121,174,68,6.126828670501709],[121,174,69,6.133684158325195],[121,174,70,6.1502604484558105],[121,174,71,6.174976825714111],[121,174,72,6.206064701080322],[121,174,73,6.230831146240234],[121,174,74,6.244339466094971],[121,174,75,6.249833583831787],[121,174,76,6.2509636878967285],[121,174,77,6.249726295471191],[121,174,78,6.245981216430664],[121,174,79,6.23707914352417],[121,175,64,6.132693767547607],[121,175,65,6.13508415222168],[121,175,66,6.132391929626465],[121,175,67,6.1280012130737305],[121,175,68,6.126828670501709],[121,175,69,6.133684158325195],[121,175,70,6.1502604484558105],[121,175,71,6.174976825714111],[121,175,72,6.206064701080322],[121,175,73,6.230831146240234],[121,175,74,6.244339466094971],[121,175,75,6.249833583831787],[121,175,76,6.2509636878967285],[121,175,77,6.249726295471191],[121,175,78,6.245981216430664],[121,175,79,6.23707914352417],[121,176,64,6.132693767547607],[121,176,65,6.13508415222168],[121,176,66,6.132391929626465],[121,176,67,6.1280012130737305],[121,176,68,6.126828670501709],[121,176,69,6.133684158325195],[121,176,70,6.1502604484558105],[121,176,71,6.174976825714111],[121,176,72,6.206064701080322],[121,176,73,6.230831146240234],[121,176,74,6.244339466094971],[121,176,75,6.249833583831787],[121,176,76,6.2509636878967285],[121,176,77,6.249726295471191],[121,176,78,6.245981216430664],[121,176,79,6.23707914352417],[121,177,64,6.132693767547607],[121,177,65,6.13508415222168],[121,177,66,6.132391929626465],[121,177,67,6.1280012130737305],[121,177,68,6.126828670501709],[121,177,69,6.133684158325195],[121,177,70,6.1502604484558105],[121,177,71,6.174976825714111],[121,177,72,6.206064701080322],[121,177,73,6.230831146240234],[121,177,74,6.244339466094971],[121,177,75,6.249833583831787],[121,177,76,6.2509636878967285],[121,177,77,6.249726295471191],[121,177,78,6.245981216430664],[121,177,79,6.23707914352417],[121,178,64,6.132693767547607],[121,178,65,6.13508415222168],[121,178,66,6.132391929626465],[121,178,67,6.1280012130737305],[121,178,68,6.126828670501709],[121,178,69,6.133684158325195],[121,178,70,6.1502604484558105],[121,178,71,6.174976825714111],[121,178,72,6.206064701080322],[121,178,73,6.230831146240234],[121,178,74,6.244339466094971],[121,178,75,6.249833583831787],[121,178,76,6.2509636878967285],[121,178,77,6.249726295471191],[121,178,78,6.245981216430664],[121,178,79,6.23707914352417],[121,179,64,6.132693767547607],[121,179,65,6.13508415222168],[121,179,66,6.132391929626465],[121,179,67,6.1280012130737305],[121,179,68,6.126828670501709],[121,179,69,6.133684158325195],[121,179,70,6.1502604484558105],[121,179,71,6.174976825714111],[121,179,72,6.206064701080322],[121,179,73,6.230831146240234],[121,179,74,6.244339466094971],[121,179,75,6.249833583831787],[121,179,76,6.2509636878967285],[121,179,77,6.249726295471191],[121,179,78,6.245981216430664],[121,179,79,6.23707914352417],[121,180,64,6.132693767547607],[121,180,65,6.13508415222168],[121,180,66,6.132391929626465],[121,180,67,6.1280012130737305],[121,180,68,6.126828670501709],[121,180,69,6.133684158325195],[121,180,70,6.1502604484558105],[121,180,71,6.174976825714111],[121,180,72,6.206064701080322],[121,180,73,6.230831146240234],[121,180,74,6.244339466094971],[121,180,75,6.249833583831787],[121,180,76,6.2509636878967285],[121,180,77,6.249726295471191],[121,180,78,6.245981216430664],[121,180,79,6.23707914352417],[121,181,64,6.132693767547607],[121,181,65,6.13508415222168],[121,181,66,6.132391929626465],[121,181,67,6.1280012130737305],[121,181,68,6.126828670501709],[121,181,69,6.133684158325195],[121,181,70,6.1502604484558105],[121,181,71,6.174976825714111],[121,181,72,6.206064701080322],[121,181,73,6.230831146240234],[121,181,74,6.244339466094971],[121,181,75,6.249833583831787],[121,181,76,6.2509636878967285],[121,181,77,6.249726295471191],[121,181,78,6.245981216430664],[121,181,79,6.23707914352417],[121,182,64,6.132693767547607],[121,182,65,6.13508415222168],[121,182,66,6.132391929626465],[121,182,67,6.1280012130737305],[121,182,68,6.126828670501709],[121,182,69,6.133684158325195],[121,182,70,6.1502604484558105],[121,182,71,6.174976825714111],[121,182,72,6.206064701080322],[121,182,73,6.230831146240234],[121,182,74,6.244339466094971],[121,182,75,6.249833583831787],[121,182,76,6.2509636878967285],[121,182,77,6.249726295471191],[121,182,78,6.245981216430664],[121,182,79,6.23707914352417],[121,183,64,6.132693767547607],[121,183,65,6.13508415222168],[121,183,66,6.132391929626465],[121,183,67,6.1280012130737305],[121,183,68,6.126828670501709],[121,183,69,6.133684158325195],[121,183,70,6.1502604484558105],[121,183,71,6.174976825714111],[121,183,72,6.206064701080322],[121,183,73,6.230831146240234],[121,183,74,6.244339466094971],[121,183,75,6.249833583831787],[121,183,76,6.2509636878967285],[121,183,77,6.249726295471191],[121,183,78,6.245981216430664],[121,183,79,6.23707914352417],[121,184,64,6.132693767547607],[121,184,65,6.13508415222168],[121,184,66,6.132391929626465],[121,184,67,6.1280012130737305],[121,184,68,6.126828670501709],[121,184,69,6.133684158325195],[121,184,70,6.1502604484558105],[121,184,71,6.174976825714111],[121,184,72,6.206064701080322],[121,184,73,6.230831146240234],[121,184,74,6.244339466094971],[121,184,75,6.249833583831787],[121,184,76,6.2509636878967285],[121,184,77,6.249726295471191],[121,184,78,6.245981216430664],[121,184,79,6.23707914352417],[121,185,64,6.132693767547607],[121,185,65,6.13508415222168],[121,185,66,6.132391929626465],[121,185,67,6.1280012130737305],[121,185,68,6.126828670501709],[121,185,69,6.133684158325195],[121,185,70,6.1502604484558105],[121,185,71,6.174976825714111],[121,185,72,6.206064701080322],[121,185,73,6.230831146240234],[121,185,74,6.244339466094971],[121,185,75,6.249833583831787],[121,185,76,6.2509636878967285],[121,185,77,6.249726295471191],[121,185,78,6.245981216430664],[121,185,79,6.23707914352417],[121,186,64,6.132693767547607],[121,186,65,6.13508415222168],[121,186,66,6.132391929626465],[121,186,67,6.1280012130737305],[121,186,68,6.126828670501709],[121,186,69,6.133684158325195],[121,186,70,6.1502604484558105],[121,186,71,6.174976825714111],[121,186,72,6.206064701080322],[121,186,73,6.230831146240234],[121,186,74,6.244339466094971],[121,186,75,6.249833583831787],[121,186,76,6.2509636878967285],[121,186,77,6.249726295471191],[121,186,78,6.245981216430664],[121,186,79,6.23707914352417],[121,187,64,6.132693767547607],[121,187,65,6.13508415222168],[121,187,66,6.132391929626465],[121,187,67,6.1280012130737305],[121,187,68,6.126828670501709],[121,187,69,6.133684158325195],[121,187,70,6.1502604484558105],[121,187,71,6.174976825714111],[121,187,72,6.206064701080322],[121,187,73,6.230831146240234],[121,187,74,6.244339466094971],[121,187,75,6.249833583831787],[121,187,76,6.2509636878967285],[121,187,77,6.249726295471191],[121,187,78,6.245981216430664],[121,187,79,6.23707914352417],[121,188,64,6.132693767547607],[121,188,65,6.13508415222168],[121,188,66,6.132391929626465],[121,188,67,6.1280012130737305],[121,188,68,6.126828670501709],[121,188,69,6.133684158325195],[121,188,70,6.1502604484558105],[121,188,71,6.174976825714111],[121,188,72,6.206064701080322],[121,188,73,6.230831146240234],[121,188,74,6.244339466094971],[121,188,75,6.249833583831787],[121,188,76,6.2509636878967285],[121,188,77,6.249726295471191],[121,188,78,6.245981216430664],[121,188,79,6.23707914352417],[121,189,64,6.132693767547607],[121,189,65,6.13508415222168],[121,189,66,6.132391929626465],[121,189,67,6.1280012130737305],[121,189,68,6.126828670501709],[121,189,69,6.133684158325195],[121,189,70,6.1502604484558105],[121,189,71,6.174976825714111],[121,189,72,6.206064701080322],[121,189,73,6.230831146240234],[121,189,74,6.244339466094971],[121,189,75,6.249833583831787],[121,189,76,6.2509636878967285],[121,189,77,6.249726295471191],[121,189,78,6.245981216430664],[121,189,79,6.23707914352417],[121,190,64,6.132693767547607],[121,190,65,6.13508415222168],[121,190,66,6.132391929626465],[121,190,67,6.1280012130737305],[121,190,68,6.126828670501709],[121,190,69,6.133684158325195],[121,190,70,6.1502604484558105],[121,190,71,6.174976825714111],[121,190,72,6.206064701080322],[121,190,73,6.230831146240234],[121,190,74,6.244339466094971],[121,190,75,6.249833583831787],[121,190,76,6.2509636878967285],[121,190,77,6.249726295471191],[121,190,78,6.245981216430664],[121,190,79,6.23707914352417],[121,191,64,6.132693767547607],[121,191,65,6.13508415222168],[121,191,66,6.132391929626465],[121,191,67,6.1280012130737305],[121,191,68,6.126828670501709],[121,191,69,6.133684158325195],[121,191,70,6.1502604484558105],[121,191,71,6.174976825714111],[121,191,72,6.206064701080322],[121,191,73,6.230831146240234],[121,191,74,6.244339466094971],[121,191,75,6.249833583831787],[121,191,76,6.2509636878967285],[121,191,77,6.249726295471191],[121,191,78,6.245981216430664],[121,191,79,6.23707914352417],[121,192,64,6.132693767547607],[121,192,65,6.13508415222168],[121,192,66,6.132391929626465],[121,192,67,6.1280012130737305],[121,192,68,6.126828670501709],[121,192,69,6.133684158325195],[121,192,70,6.1502604484558105],[121,192,71,6.174976825714111],[121,192,72,6.206064701080322],[121,192,73,6.230831146240234],[121,192,74,6.244339466094971],[121,192,75,6.249833583831787],[121,192,76,6.2509636878967285],[121,192,77,6.249726295471191],[121,192,78,6.245981216430664],[121,192,79,6.23707914352417],[121,193,64,6.132693767547607],[121,193,65,6.13508415222168],[121,193,66,6.132391929626465],[121,193,67,6.1280012130737305],[121,193,68,6.126828670501709],[121,193,69,6.133684158325195],[121,193,70,6.1502604484558105],[121,193,71,6.174976825714111],[121,193,72,6.206064701080322],[121,193,73,6.230831146240234],[121,193,74,6.244339466094971],[121,193,75,6.249833583831787],[121,193,76,6.2509636878967285],[121,193,77,6.249726295471191],[121,193,78,6.245981216430664],[121,193,79,6.23707914352417],[121,194,64,6.132693767547607],[121,194,65,6.13508415222168],[121,194,66,6.132391929626465],[121,194,67,6.1280012130737305],[121,194,68,6.126828670501709],[121,194,69,6.133684158325195],[121,194,70,6.1502604484558105],[121,194,71,6.174976825714111],[121,194,72,6.206064701080322],[121,194,73,6.230831146240234],[121,194,74,6.244339466094971],[121,194,75,6.249833583831787],[121,194,76,6.2509636878967285],[121,194,77,6.249726295471191],[121,194,78,6.245981216430664],[121,194,79,6.23707914352417],[121,195,64,6.132693767547607],[121,195,65,6.13508415222168],[121,195,66,6.132391929626465],[121,195,67,6.1280012130737305],[121,195,68,6.126828670501709],[121,195,69,6.133684158325195],[121,195,70,6.1502604484558105],[121,195,71,6.174976825714111],[121,195,72,6.206064701080322],[121,195,73,6.230831146240234],[121,195,74,6.244339466094971],[121,195,75,6.249833583831787],[121,195,76,6.2509636878967285],[121,195,77,6.249726295471191],[121,195,78,6.245981216430664],[121,195,79,6.23707914352417],[121,196,64,6.132693767547607],[121,196,65,6.13508415222168],[121,196,66,6.132391929626465],[121,196,67,6.1280012130737305],[121,196,68,6.126828670501709],[121,196,69,6.133684158325195],[121,196,70,6.1502604484558105],[121,196,71,6.174976825714111],[121,196,72,6.206064701080322],[121,196,73,6.230831146240234],[121,196,74,6.244339466094971],[121,196,75,6.249833583831787],[121,196,76,6.2509636878967285],[121,196,77,6.249726295471191],[121,196,78,6.245981216430664],[121,196,79,6.23707914352417],[121,197,64,6.132693767547607],[121,197,65,6.13508415222168],[121,197,66,6.132391929626465],[121,197,67,6.1280012130737305],[121,197,68,6.126828670501709],[121,197,69,6.133684158325195],[121,197,70,6.1502604484558105],[121,197,71,6.174976825714111],[121,197,72,6.206064701080322],[121,197,73,6.230831146240234],[121,197,74,6.244339466094971],[121,197,75,6.249833583831787],[121,197,76,6.2509636878967285],[121,197,77,6.249726295471191],[121,197,78,6.245981216430664],[121,197,79,6.23707914352417],[121,198,64,6.132693767547607],[121,198,65,6.13508415222168],[121,198,66,6.132391929626465],[121,198,67,6.1280012130737305],[121,198,68,6.126828670501709],[121,198,69,6.133684158325195],[121,198,70,6.1502604484558105],[121,198,71,6.174976825714111],[121,198,72,6.206064701080322],[121,198,73,6.230831146240234],[121,198,74,6.244339466094971],[121,198,75,6.249833583831787],[121,198,76,6.2509636878967285],[121,198,77,6.249726295471191],[121,198,78,6.245981216430664],[121,198,79,6.23707914352417],[121,199,64,6.132693767547607],[121,199,65,6.13508415222168],[121,199,66,6.132391929626465],[121,199,67,6.1280012130737305],[121,199,68,6.126828670501709],[121,199,69,6.133684158325195],[121,199,70,6.1502604484558105],[121,199,71,6.174976825714111],[121,199,72,6.206064701080322],[121,199,73,6.230831146240234],[121,199,74,6.244339466094971],[121,199,75,6.249833583831787],[121,199,76,6.2509636878967285],[121,199,77,6.249726295471191],[121,199,78,6.245981216430664],[121,199,79,6.23707914352417],[121,200,64,6.132693767547607],[121,200,65,6.13508415222168],[121,200,66,6.132391929626465],[121,200,67,6.1280012130737305],[121,200,68,6.126828670501709],[121,200,69,6.133684158325195],[121,200,70,6.1502604484558105],[121,200,71,6.174976825714111],[121,200,72,6.206064701080322],[121,200,73,6.230831146240234],[121,200,74,6.244339466094971],[121,200,75,6.249833583831787],[121,200,76,6.2509636878967285],[121,200,77,6.249726295471191],[121,200,78,6.245981216430664],[121,200,79,6.23707914352417],[121,201,64,6.132693767547607],[121,201,65,6.13508415222168],[121,201,66,6.132391929626465],[121,201,67,6.1280012130737305],[121,201,68,6.126828670501709],[121,201,69,6.133684158325195],[121,201,70,6.1502604484558105],[121,201,71,6.174976825714111],[121,201,72,6.206064701080322],[121,201,73,6.230831146240234],[121,201,74,6.244339466094971],[121,201,75,6.249833583831787],[121,201,76,6.2509636878967285],[121,201,77,6.249726295471191],[121,201,78,6.245981216430664],[121,201,79,6.23707914352417],[121,202,64,6.132693767547607],[121,202,65,6.13508415222168],[121,202,66,6.132391929626465],[121,202,67,6.1280012130737305],[121,202,68,6.126828670501709],[121,202,69,6.133684158325195],[121,202,70,6.1502604484558105],[121,202,71,6.174976825714111],[121,202,72,6.206064701080322],[121,202,73,6.230831146240234],[121,202,74,6.244339466094971],[121,202,75,6.249833583831787],[121,202,76,6.2509636878967285],[121,202,77,6.249726295471191],[121,202,78,6.245981216430664],[121,202,79,6.23707914352417],[121,203,64,6.132693767547607],[121,203,65,6.13508415222168],[121,203,66,6.132391929626465],[121,203,67,6.1280012130737305],[121,203,68,6.126828670501709],[121,203,69,6.133684158325195],[121,203,70,6.1502604484558105],[121,203,71,6.174976825714111],[121,203,72,6.206064701080322],[121,203,73,6.230831146240234],[121,203,74,6.244339466094971],[121,203,75,6.249833583831787],[121,203,76,6.2509636878967285],[121,203,77,6.249726295471191],[121,203,78,6.245981216430664],[121,203,79,6.23707914352417],[121,204,64,6.132693767547607],[121,204,65,6.13508415222168],[121,204,66,6.132391929626465],[121,204,67,6.1280012130737305],[121,204,68,6.126828670501709],[121,204,69,6.133684158325195],[121,204,70,6.1502604484558105],[121,204,71,6.174976825714111],[121,204,72,6.206064701080322],[121,204,73,6.230831146240234],[121,204,74,6.244339466094971],[121,204,75,6.249833583831787],[121,204,76,6.2509636878967285],[121,204,77,6.249726295471191],[121,204,78,6.245981216430664],[121,204,79,6.23707914352417],[121,205,64,6.132693767547607],[121,205,65,6.13508415222168],[121,205,66,6.132391929626465],[121,205,67,6.1280012130737305],[121,205,68,6.126828670501709],[121,205,69,6.133684158325195],[121,205,70,6.1502604484558105],[121,205,71,6.174976825714111],[121,205,72,6.206064701080322],[121,205,73,6.230831146240234],[121,205,74,6.244339466094971],[121,205,75,6.249833583831787],[121,205,76,6.2509636878967285],[121,205,77,6.249726295471191],[121,205,78,6.245981216430664],[121,205,79,6.23707914352417],[121,206,64,6.132693767547607],[121,206,65,6.13508415222168],[121,206,66,6.132391929626465],[121,206,67,6.1280012130737305],[121,206,68,6.126828670501709],[121,206,69,6.133684158325195],[121,206,70,6.1502604484558105],[121,206,71,6.174976825714111],[121,206,72,6.206064701080322],[121,206,73,6.230831146240234],[121,206,74,6.244339466094971],[121,206,75,6.249833583831787],[121,206,76,6.2509636878967285],[121,206,77,6.249726295471191],[121,206,78,6.245981216430664],[121,206,79,6.23707914352417],[121,207,64,6.132693767547607],[121,207,65,6.13508415222168],[121,207,66,6.132391929626465],[121,207,67,6.1280012130737305],[121,207,68,6.126828670501709],[121,207,69,6.133684158325195],[121,207,70,6.1502604484558105],[121,207,71,6.174976825714111],[121,207,72,6.206064701080322],[121,207,73,6.230831146240234],[121,207,74,6.244339466094971],[121,207,75,6.249833583831787],[121,207,76,6.2509636878967285],[121,207,77,6.249726295471191],[121,207,78,6.245981216430664],[121,207,79,6.23707914352417],[121,208,64,6.132693767547607],[121,208,65,6.13508415222168],[121,208,66,6.132391929626465],[121,208,67,6.1280012130737305],[121,208,68,6.126828670501709],[121,208,69,6.133684158325195],[121,208,70,6.1502604484558105],[121,208,71,6.174976825714111],[121,208,72,6.206064701080322],[121,208,73,6.230831146240234],[121,208,74,6.244339466094971],[121,208,75,6.249833583831787],[121,208,76,6.2509636878967285],[121,208,77,6.249726295471191],[121,208,78,6.245981216430664],[121,208,79,6.23707914352417],[121,209,64,6.132693767547607],[121,209,65,6.13508415222168],[121,209,66,6.132391929626465],[121,209,67,6.1280012130737305],[121,209,68,6.126828670501709],[121,209,69,6.133684158325195],[121,209,70,6.1502604484558105],[121,209,71,6.174976825714111],[121,209,72,6.206064701080322],[121,209,73,6.230831146240234],[121,209,74,6.244339466094971],[121,209,75,6.249833583831787],[121,209,76,6.2509636878967285],[121,209,77,6.249726295471191],[121,209,78,6.245981216430664],[121,209,79,6.23707914352417],[121,210,64,6.132693767547607],[121,210,65,6.13508415222168],[121,210,66,6.132391929626465],[121,210,67,6.1280012130737305],[121,210,68,6.126828670501709],[121,210,69,6.133684158325195],[121,210,70,6.1502604484558105],[121,210,71,6.174976825714111],[121,210,72,6.206064701080322],[121,210,73,6.230831146240234],[121,210,74,6.244339466094971],[121,210,75,6.249833583831787],[121,210,76,6.2509636878967285],[121,210,77,6.249726295471191],[121,210,78,6.245981216430664],[121,210,79,6.23707914352417],[121,211,64,6.132693767547607],[121,211,65,6.13508415222168],[121,211,66,6.132391929626465],[121,211,67,6.1280012130737305],[121,211,68,6.126828670501709],[121,211,69,6.133684158325195],[121,211,70,6.1502604484558105],[121,211,71,6.174976825714111],[121,211,72,6.206064701080322],[121,211,73,6.230831146240234],[121,211,74,6.244339466094971],[121,211,75,6.249833583831787],[121,211,76,6.2509636878967285],[121,211,77,6.249726295471191],[121,211,78,6.245981216430664],[121,211,79,6.23707914352417],[121,212,64,6.132693767547607],[121,212,65,6.13508415222168],[121,212,66,6.132391929626465],[121,212,67,6.1280012130737305],[121,212,68,6.126828670501709],[121,212,69,6.133684158325195],[121,212,70,6.1502604484558105],[121,212,71,6.174976825714111],[121,212,72,6.206064701080322],[121,212,73,6.230831146240234],[121,212,74,6.244339466094971],[121,212,75,6.249833583831787],[121,212,76,6.2509636878967285],[121,212,77,6.249726295471191],[121,212,78,6.245981216430664],[121,212,79,6.23707914352417],[121,213,64,6.132693767547607],[121,213,65,6.13508415222168],[121,213,66,6.132391929626465],[121,213,67,6.1280012130737305],[121,213,68,6.126828670501709],[121,213,69,6.133684158325195],[121,213,70,6.1502604484558105],[121,213,71,6.174976825714111],[121,213,72,6.206064701080322],[121,213,73,6.230831146240234],[121,213,74,6.244339466094971],[121,213,75,6.249833583831787],[121,213,76,6.2509636878967285],[121,213,77,6.249726295471191],[121,213,78,6.245981216430664],[121,213,79,6.23707914352417],[121,214,64,6.132693767547607],[121,214,65,6.13508415222168],[121,214,66,6.132391929626465],[121,214,67,6.1280012130737305],[121,214,68,6.126828670501709],[121,214,69,6.133684158325195],[121,214,70,6.1502604484558105],[121,214,71,6.174976825714111],[121,214,72,6.206064701080322],[121,214,73,6.230831146240234],[121,214,74,6.244339466094971],[121,214,75,6.249833583831787],[121,214,76,6.2509636878967285],[121,214,77,6.249726295471191],[121,214,78,6.245981216430664],[121,214,79,6.23707914352417],[121,215,64,6.132693767547607],[121,215,65,6.13508415222168],[121,215,66,6.132391929626465],[121,215,67,6.1280012130737305],[121,215,68,6.126828670501709],[121,215,69,6.133684158325195],[121,215,70,6.1502604484558105],[121,215,71,6.174976825714111],[121,215,72,6.206064701080322],[121,215,73,6.230831146240234],[121,215,74,6.244339466094971],[121,215,75,6.249833583831787],[121,215,76,6.2509636878967285],[121,215,77,6.249726295471191],[121,215,78,6.245981216430664],[121,215,79,6.23707914352417],[121,216,64,6.132693767547607],[121,216,65,6.13508415222168],[121,216,66,6.132391929626465],[121,216,67,6.1280012130737305],[121,216,68,6.126828670501709],[121,216,69,6.133684158325195],[121,216,70,6.1502604484558105],[121,216,71,6.174976825714111],[121,216,72,6.206064701080322],[121,216,73,6.230831146240234],[121,216,74,6.244339466094971],[121,216,75,6.249833583831787],[121,216,76,6.2509636878967285],[121,216,77,6.249726295471191],[121,216,78,6.245981216430664],[121,216,79,6.23707914352417],[121,217,64,6.132693767547607],[121,217,65,6.13508415222168],[121,217,66,6.132391929626465],[121,217,67,6.1280012130737305],[121,217,68,6.126828670501709],[121,217,69,6.133684158325195],[121,217,70,6.1502604484558105],[121,217,71,6.174976825714111],[121,217,72,6.206064701080322],[121,217,73,6.230831146240234],[121,217,74,6.244339466094971],[121,217,75,6.249833583831787],[121,217,76,6.2509636878967285],[121,217,77,6.249726295471191],[121,217,78,6.245981216430664],[121,217,79,6.23707914352417],[121,218,64,6.132693767547607],[121,218,65,6.13508415222168],[121,218,66,6.132391929626465],[121,218,67,6.1280012130737305],[121,218,68,6.126828670501709],[121,218,69,6.133684158325195],[121,218,70,6.1502604484558105],[121,218,71,6.174976825714111],[121,218,72,6.206064701080322],[121,218,73,6.230831146240234],[121,218,74,6.244339466094971],[121,218,75,6.249833583831787],[121,218,76,6.2509636878967285],[121,218,77,6.249726295471191],[121,218,78,6.245981216430664],[121,218,79,6.23707914352417],[121,219,64,6.132693767547607],[121,219,65,6.13508415222168],[121,219,66,6.132391929626465],[121,219,67,6.1280012130737305],[121,219,68,6.126828670501709],[121,219,69,6.133684158325195],[121,219,70,6.1502604484558105],[121,219,71,6.174976825714111],[121,219,72,6.206064701080322],[121,219,73,6.230831146240234],[121,219,74,6.244339466094971],[121,219,75,6.249833583831787],[121,219,76,6.2509636878967285],[121,219,77,6.249726295471191],[121,219,78,6.245981216430664],[121,219,79,6.23707914352417],[121,220,64,6.132693767547607],[121,220,65,6.13508415222168],[121,220,66,6.132391929626465],[121,220,67,6.1280012130737305],[121,220,68,6.126828670501709],[121,220,69,6.133684158325195],[121,220,70,6.1502604484558105],[121,220,71,6.174976825714111],[121,220,72,6.206064701080322],[121,220,73,6.230831146240234],[121,220,74,6.244339466094971],[121,220,75,6.249833583831787],[121,220,76,6.2509636878967285],[121,220,77,6.249726295471191],[121,220,78,6.245981216430664],[121,220,79,6.23707914352417],[121,221,64,6.132693767547607],[121,221,65,6.13508415222168],[121,221,66,6.132391929626465],[121,221,67,6.1280012130737305],[121,221,68,6.126828670501709],[121,221,69,6.133684158325195],[121,221,70,6.1502604484558105],[121,221,71,6.174976825714111],[121,221,72,6.206064701080322],[121,221,73,6.230831146240234],[121,221,74,6.244339466094971],[121,221,75,6.249833583831787],[121,221,76,6.2509636878967285],[121,221,77,6.249726295471191],[121,221,78,6.245981216430664],[121,221,79,6.23707914352417],[121,222,64,6.132693767547607],[121,222,65,6.13508415222168],[121,222,66,6.132391929626465],[121,222,67,6.1280012130737305],[121,222,68,6.126828670501709],[121,222,69,6.133684158325195],[121,222,70,6.1502604484558105],[121,222,71,6.174976825714111],[121,222,72,6.206064701080322],[121,222,73,6.230831146240234],[121,222,74,6.244339466094971],[121,222,75,6.249833583831787],[121,222,76,6.2509636878967285],[121,222,77,6.249726295471191],[121,222,78,6.245981216430664],[121,222,79,6.23707914352417],[121,223,64,6.132693767547607],[121,223,65,6.13508415222168],[121,223,66,6.132391929626465],[121,223,67,6.1280012130737305],[121,223,68,6.126828670501709],[121,223,69,6.133684158325195],[121,223,70,6.1502604484558105],[121,223,71,6.174976825714111],[121,223,72,6.206064701080322],[121,223,73,6.230831146240234],[121,223,74,6.244339466094971],[121,223,75,6.249833583831787],[121,223,76,6.2509636878967285],[121,223,77,6.249726295471191],[121,223,78,6.245981216430664],[121,223,79,6.23707914352417],[121,224,64,6.132693767547607],[121,224,65,6.13508415222168],[121,224,66,6.132391929626465],[121,224,67,6.1280012130737305],[121,224,68,6.126828670501709],[121,224,69,6.133684158325195],[121,224,70,6.1502604484558105],[121,224,71,6.174976825714111],[121,224,72,6.206064701080322],[121,224,73,6.230831146240234],[121,224,74,6.244339466094971],[121,224,75,6.249833583831787],[121,224,76,6.2509636878967285],[121,224,77,6.249726295471191],[121,224,78,6.245981216430664],[121,224,79,6.23707914352417],[121,225,64,6.132693767547607],[121,225,65,6.13508415222168],[121,225,66,6.132391929626465],[121,225,67,6.1280012130737305],[121,225,68,6.126828670501709],[121,225,69,6.133684158325195],[121,225,70,6.1502604484558105],[121,225,71,6.174976825714111],[121,225,72,6.206064701080322],[121,225,73,6.230831146240234],[121,225,74,6.244339466094971],[121,225,75,6.249833583831787],[121,225,76,6.2509636878967285],[121,225,77,6.249726295471191],[121,225,78,6.245981216430664],[121,225,79,6.23707914352417],[121,226,64,6.132693767547607],[121,226,65,6.13508415222168],[121,226,66,6.132391929626465],[121,226,67,6.1280012130737305],[121,226,68,6.126828670501709],[121,226,69,6.133684158325195],[121,226,70,6.1502604484558105],[121,226,71,6.174976825714111],[121,226,72,6.206064701080322],[121,226,73,6.230831146240234],[121,226,74,6.244339466094971],[121,226,75,6.249833583831787],[121,226,76,6.2509636878967285],[121,226,77,6.249726295471191],[121,226,78,6.245981216430664],[121,226,79,6.23707914352417],[121,227,64,6.132693767547607],[121,227,65,6.13508415222168],[121,227,66,6.132391929626465],[121,227,67,6.1280012130737305],[121,227,68,6.126828670501709],[121,227,69,6.133684158325195],[121,227,70,6.1502604484558105],[121,227,71,6.174976825714111],[121,227,72,6.206064701080322],[121,227,73,6.230831146240234],[121,227,74,6.244339466094971],[121,227,75,6.249833583831787],[121,227,76,6.2509636878967285],[121,227,77,6.249726295471191],[121,227,78,6.245981216430664],[121,227,79,6.23707914352417],[121,228,64,6.132693767547607],[121,228,65,6.13508415222168],[121,228,66,6.132391929626465],[121,228,67,6.1280012130737305],[121,228,68,6.126828670501709],[121,228,69,6.133684158325195],[121,228,70,6.1502604484558105],[121,228,71,6.174976825714111],[121,228,72,6.206064701080322],[121,228,73,6.230831146240234],[121,228,74,6.244339466094971],[121,228,75,6.249833583831787],[121,228,76,6.2509636878967285],[121,228,77,6.249726295471191],[121,228,78,6.245981216430664],[121,228,79,6.23707914352417],[121,229,64,6.132693767547607],[121,229,65,6.13508415222168],[121,229,66,6.132391929626465],[121,229,67,6.1280012130737305],[121,229,68,6.126828670501709],[121,229,69,6.133684158325195],[121,229,70,6.1502604484558105],[121,229,71,6.174976825714111],[121,229,72,6.206064701080322],[121,229,73,6.230831146240234],[121,229,74,6.244339466094971],[121,229,75,6.249833583831787],[121,229,76,6.2509636878967285],[121,229,77,6.249726295471191],[121,229,78,6.245981216430664],[121,229,79,6.23707914352417],[121,230,64,6.132693767547607],[121,230,65,6.13508415222168],[121,230,66,6.132391929626465],[121,230,67,6.1280012130737305],[121,230,68,6.126828670501709],[121,230,69,6.133684158325195],[121,230,70,6.1502604484558105],[121,230,71,6.174976825714111],[121,230,72,6.206064701080322],[121,230,73,6.230831146240234],[121,230,74,6.244339466094971],[121,230,75,6.249833583831787],[121,230,76,6.2509636878967285],[121,230,77,6.249726295471191],[121,230,78,6.245981216430664],[121,230,79,6.23707914352417],[121,231,64,6.132693767547607],[121,231,65,6.13508415222168],[121,231,66,6.132391929626465],[121,231,67,6.1280012130737305],[121,231,68,6.126828670501709],[121,231,69,6.133684158325195],[121,231,70,6.1502604484558105],[121,231,71,6.174976825714111],[121,231,72,6.206064701080322],[121,231,73,6.230831146240234],[121,231,74,6.244339466094971],[121,231,75,6.249833583831787],[121,231,76,6.2509636878967285],[121,231,77,6.249726295471191],[121,231,78,6.245981216430664],[121,231,79,6.23707914352417],[121,232,64,6.132693767547607],[121,232,65,6.13508415222168],[121,232,66,6.132391929626465],[121,232,67,6.1280012130737305],[121,232,68,6.126828670501709],[121,232,69,6.133684158325195],[121,232,70,6.1502604484558105],[121,232,71,6.174976825714111],[121,232,72,6.206064701080322],[121,232,73,6.230831146240234],[121,232,74,6.244339466094971],[121,232,75,6.249833583831787],[121,232,76,6.2509636878967285],[121,232,77,6.249726295471191],[121,232,78,6.245981216430664],[121,232,79,6.23707914352417],[121,233,64,6.132693767547607],[121,233,65,6.13508415222168],[121,233,66,6.132391929626465],[121,233,67,6.1280012130737305],[121,233,68,6.126828670501709],[121,233,69,6.133684158325195],[121,233,70,6.1502604484558105],[121,233,71,6.174976825714111],[121,233,72,6.206064701080322],[121,233,73,6.230831146240234],[121,233,74,6.244339466094971],[121,233,75,6.249833583831787],[121,233,76,6.2509636878967285],[121,233,77,6.249726295471191],[121,233,78,6.245981216430664],[121,233,79,6.23707914352417],[121,234,64,6.132693767547607],[121,234,65,6.13508415222168],[121,234,66,6.132391929626465],[121,234,67,6.1280012130737305],[121,234,68,6.126828670501709],[121,234,69,6.133684158325195],[121,234,70,6.1502604484558105],[121,234,71,6.174976825714111],[121,234,72,6.206064701080322],[121,234,73,6.230831146240234],[121,234,74,6.244339466094971],[121,234,75,6.249833583831787],[121,234,76,6.2509636878967285],[121,234,77,6.249726295471191],[121,234,78,6.245981216430664],[121,234,79,6.23707914352417],[121,235,64,6.132693767547607],[121,235,65,6.13508415222168],[121,235,66,6.132391929626465],[121,235,67,6.1280012130737305],[121,235,68,6.126828670501709],[121,235,69,6.133684158325195],[121,235,70,6.1502604484558105],[121,235,71,6.174976825714111],[121,235,72,6.206064701080322],[121,235,73,6.230831146240234],[121,235,74,6.244339466094971],[121,235,75,6.249833583831787],[121,235,76,6.2509636878967285],[121,235,77,6.249726295471191],[121,235,78,6.245981216430664],[121,235,79,6.23707914352417],[121,236,64,6.132693767547607],[121,236,65,6.13508415222168],[121,236,66,6.132391929626465],[121,236,67,6.1280012130737305],[121,236,68,6.126828670501709],[121,236,69,6.133684158325195],[121,236,70,6.1502604484558105],[121,236,71,6.174976825714111],[121,236,72,6.206064701080322],[121,236,73,6.230831146240234],[121,236,74,6.244339466094971],[121,236,75,6.249833583831787],[121,236,76,6.2509636878967285],[121,236,77,6.249726295471191],[121,236,78,6.245981216430664],[121,236,79,6.23707914352417],[121,237,64,6.132693767547607],[121,237,65,6.13508415222168],[121,237,66,6.132391929626465],[121,237,67,6.1280012130737305],[121,237,68,6.126828670501709],[121,237,69,6.133684158325195],[121,237,70,6.1502604484558105],[121,237,71,6.174976825714111],[121,237,72,6.206064701080322],[121,237,73,6.230831146240234],[121,237,74,6.244339466094971],[121,237,75,6.249833583831787],[121,237,76,6.2509636878967285],[121,237,77,6.249726295471191],[121,237,78,6.245981216430664],[121,237,79,6.23707914352417],[121,238,64,6.132693767547607],[121,238,65,6.13508415222168],[121,238,66,6.132391929626465],[121,238,67,6.1280012130737305],[121,238,68,6.126828670501709],[121,238,69,6.133684158325195],[121,238,70,6.1502604484558105],[121,238,71,6.174976825714111],[121,238,72,6.206064701080322],[121,238,73,6.230831146240234],[121,238,74,6.244339466094971],[121,238,75,6.249833583831787],[121,238,76,6.2509636878967285],[121,238,77,6.249726295471191],[121,238,78,6.245981216430664],[121,238,79,6.23707914352417],[121,239,64,6.132693767547607],[121,239,65,6.13508415222168],[121,239,66,6.132391929626465],[121,239,67,6.1280012130737305],[121,239,68,6.126828670501709],[121,239,69,6.133684158325195],[121,239,70,6.1502604484558105],[121,239,71,6.174976825714111],[121,239,72,6.206064701080322],[121,239,73,6.230831146240234],[121,239,74,6.244339466094971],[121,239,75,6.249833583831787],[121,239,76,6.2509636878967285],[121,239,77,6.249726295471191],[121,239,78,6.245981216430664],[121,239,79,6.23707914352417],[121,240,64,6.132693767547607],[121,240,65,6.13508415222168],[121,240,66,6.132391929626465],[121,240,67,6.1280012130737305],[121,240,68,6.126828670501709],[121,240,69,6.133684158325195],[121,240,70,6.1502604484558105],[121,240,71,6.174976825714111],[121,240,72,6.206064701080322],[121,240,73,6.230831146240234],[121,240,74,6.244339466094971],[121,240,75,6.249833583831787],[121,240,76,6.2509636878967285],[121,240,77,6.249726295471191],[121,240,78,6.245981216430664],[121,240,79,6.23707914352417],[121,241,64,6.132693767547607],[121,241,65,6.13508415222168],[121,241,66,6.132391929626465],[121,241,67,6.1280012130737305],[121,241,68,6.126828670501709],[121,241,69,6.133684158325195],[121,241,70,6.1502604484558105],[121,241,71,6.174976825714111],[121,241,72,6.206064701080322],[121,241,73,6.230831146240234],[121,241,74,6.244339466094971],[121,241,75,6.249833583831787],[121,241,76,6.2509636878967285],[121,241,77,6.249726295471191],[121,241,78,6.245981216430664],[121,241,79,6.23707914352417],[121,242,64,6.132693767547607],[121,242,65,6.13508415222168],[121,242,66,6.132391929626465],[121,242,67,6.1280012130737305],[121,242,68,6.126828670501709],[121,242,69,6.133684158325195],[121,242,70,6.1502604484558105],[121,242,71,6.174976825714111],[121,242,72,6.206064701080322],[121,242,73,6.230831146240234],[121,242,74,6.244339466094971],[121,242,75,6.249833583831787],[121,242,76,6.2509636878967285],[121,242,77,6.249726295471191],[121,242,78,6.245981216430664],[121,242,79,6.23707914352417],[121,243,64,6.132693767547607],[121,243,65,6.13508415222168],[121,243,66,6.132391929626465],[121,243,67,6.1280012130737305],[121,243,68,6.126828670501709],[121,243,69,6.133684158325195],[121,243,70,6.1502604484558105],[121,243,71,6.174976825714111],[121,243,72,6.206064701080322],[121,243,73,6.230831146240234],[121,243,74,6.244339466094971],[121,243,75,6.249833583831787],[121,243,76,6.2509636878967285],[121,243,77,6.249726295471191],[121,243,78,6.245981216430664],[121,243,79,6.23707914352417],[121,244,64,6.132693767547607],[121,244,65,6.13508415222168],[121,244,66,6.132391929626465],[121,244,67,6.1280012130737305],[121,244,68,6.126828670501709],[121,244,69,6.133684158325195],[121,244,70,6.1502604484558105],[121,244,71,6.174976825714111],[121,244,72,6.206064701080322],[121,244,73,6.230831146240234],[121,244,74,6.244339466094971],[121,244,75,6.249833583831787],[121,244,76,6.2509636878967285],[121,244,77,6.249726295471191],[121,244,78,6.245981216430664],[121,244,79,6.23707914352417],[121,245,64,6.132693767547607],[121,245,65,6.13508415222168],[121,245,66,6.132391929626465],[121,245,67,6.1280012130737305],[121,245,68,6.126828670501709],[121,245,69,6.133684158325195],[121,245,70,6.1502604484558105],[121,245,71,6.174976825714111],[121,245,72,6.206064701080322],[121,245,73,6.230831146240234],[121,245,74,6.244339466094971],[121,245,75,6.249833583831787],[121,245,76,6.2509636878967285],[121,245,77,6.249726295471191],[121,245,78,6.245981216430664],[121,245,79,6.23707914352417],[121,246,64,6.132693767547607],[121,246,65,6.13508415222168],[121,246,66,6.132391929626465],[121,246,67,6.1280012130737305],[121,246,68,6.126828670501709],[121,246,69,6.133684158325195],[121,246,70,6.1502604484558105],[121,246,71,6.174976825714111],[121,246,72,6.206064701080322],[121,246,73,6.230831146240234],[121,246,74,6.244339466094971],[121,246,75,6.249833583831787],[121,246,76,6.2509636878967285],[121,246,77,6.249726295471191],[121,246,78,6.245981216430664],[121,246,79,6.23707914352417],[121,247,64,6.132693767547607],[121,247,65,6.13508415222168],[121,247,66,6.132391929626465],[121,247,67,6.1280012130737305],[121,247,68,6.126828670501709],[121,247,69,6.133684158325195],[121,247,70,6.1502604484558105],[121,247,71,6.174976825714111],[121,247,72,6.206064701080322],[121,247,73,6.230831146240234],[121,247,74,6.244339466094971],[121,247,75,6.249833583831787],[121,247,76,6.2509636878967285],[121,247,77,6.249726295471191],[121,247,78,6.245981216430664],[121,247,79,6.23707914352417],[121,248,64,6.132693767547607],[121,248,65,6.13508415222168],[121,248,66,6.132391929626465],[121,248,67,6.1280012130737305],[121,248,68,6.126828670501709],[121,248,69,6.133684158325195],[121,248,70,6.1502604484558105],[121,248,71,6.174976825714111],[121,248,72,6.206064701080322],[121,248,73,6.230831146240234],[121,248,74,6.244339466094971],[121,248,75,6.249833583831787],[121,248,76,6.2509636878967285],[121,248,77,6.249726295471191],[121,248,78,6.245981216430664],[121,248,79,6.23707914352417],[121,249,64,6.132693767547607],[121,249,65,6.13508415222168],[121,249,66,6.132391929626465],[121,249,67,6.1280012130737305],[121,249,68,6.126828670501709],[121,249,69,6.133684158325195],[121,249,70,6.1502604484558105],[121,249,71,6.174976825714111],[121,249,72,6.206064701080322],[121,249,73,6.230831146240234],[121,249,74,6.244339466094971],[121,249,75,6.249833583831787],[121,249,76,6.2509636878967285],[121,249,77,6.249726295471191],[121,249,78,6.245981216430664],[121,249,79,6.23707914352417],[121,250,64,6.132693767547607],[121,250,65,6.13508415222168],[121,250,66,6.132391929626465],[121,250,67,6.1280012130737305],[121,250,68,6.126828670501709],[121,250,69,6.133684158325195],[121,250,70,6.1502604484558105],[121,250,71,6.174976825714111],[121,250,72,6.206064701080322],[121,250,73,6.230831146240234],[121,250,74,6.244339466094971],[121,250,75,6.249833583831787],[121,250,76,6.2509636878967285],[121,250,77,6.249726295471191],[121,250,78,6.245981216430664],[121,250,79,6.23707914352417],[121,251,64,6.132693767547607],[121,251,65,6.13508415222168],[121,251,66,6.132391929626465],[121,251,67,6.1280012130737305],[121,251,68,6.126828670501709],[121,251,69,6.133684158325195],[121,251,70,6.1502604484558105],[121,251,71,6.174976825714111],[121,251,72,6.206064701080322],[121,251,73,6.230831146240234],[121,251,74,6.244339466094971],[121,251,75,6.249833583831787],[121,251,76,6.2509636878967285],[121,251,77,6.249726295471191],[121,251,78,6.245981216430664],[121,251,79,6.23707914352417],[121,252,64,6.132693767547607],[121,252,65,6.13508415222168],[121,252,66,6.132391929626465],[121,252,67,6.1280012130737305],[121,252,68,6.126828670501709],[121,252,69,6.133684158325195],[121,252,70,6.1502604484558105],[121,252,71,6.174976825714111],[121,252,72,6.206064701080322],[121,252,73,6.230831146240234],[121,252,74,6.244339466094971],[121,252,75,6.249833583831787],[121,252,76,6.2509636878967285],[121,252,77,6.249726295471191],[121,252,78,6.245981216430664],[121,252,79,6.23707914352417],[121,253,64,6.132693767547607],[121,253,65,6.13508415222168],[121,253,66,6.132391929626465],[121,253,67,6.1280012130737305],[121,253,68,6.126828670501709],[121,253,69,6.133684158325195],[121,253,70,6.1502604484558105],[121,253,71,6.174976825714111],[121,253,72,6.206064701080322],[121,253,73,6.230831146240234],[121,253,74,6.244339466094971],[121,253,75,6.249833583831787],[121,253,76,6.2509636878967285],[121,253,77,6.249726295471191],[121,253,78,6.245981216430664],[121,253,79,6.23707914352417],[121,254,64,6.132693767547607],[121,254,65,6.13508415222168],[121,254,66,6.132391929626465],[121,254,67,6.1280012130737305],[121,254,68,6.126828670501709],[121,254,69,6.133684158325195],[121,254,70,6.1502604484558105],[121,254,71,6.174976825714111],[121,254,72,6.206064701080322],[121,254,73,6.230831146240234],[121,254,74,6.244339466094971],[121,254,75,6.249833583831787],[121,254,76,6.2509636878967285],[121,254,77,6.249726295471191],[121,254,78,6.245981216430664],[121,254,79,6.23707914352417],[121,255,64,6.132693767547607],[121,255,65,6.13508415222168],[121,255,66,6.132391929626465],[121,255,67,6.1280012130737305],[121,255,68,6.126828670501709],[121,255,69,6.133684158325195],[121,255,70,6.1502604484558105],[121,255,71,6.174976825714111],[121,255,72,6.206064701080322],[121,255,73,6.230831146240234],[121,255,74,6.244339466094971],[121,255,75,6.249833583831787],[121,255,76,6.2509636878967285],[121,255,77,6.249726295471191],[121,255,78,6.245981216430664],[121,255,79,6.23707914352417],[121,256,64,6.132693767547607],[121,256,65,6.13508415222168],[121,256,66,6.132391929626465],[121,256,67,6.1280012130737305],[121,256,68,6.126828670501709],[121,256,69,6.133684158325195],[121,256,70,6.1502604484558105],[121,256,71,6.174976825714111],[121,256,72,6.206064701080322],[121,256,73,6.230831146240234],[121,256,74,6.244339466094971],[121,256,75,6.249833583831787],[121,256,76,6.2509636878967285],[121,256,77,6.249726295471191],[121,256,78,6.245981216430664],[121,256,79,6.23707914352417],[121,257,64,6.132693767547607],[121,257,65,6.13508415222168],[121,257,66,6.132391929626465],[121,257,67,6.1280012130737305],[121,257,68,6.126828670501709],[121,257,69,6.133684158325195],[121,257,70,6.1502604484558105],[121,257,71,6.174976825714111],[121,257,72,6.206064701080322],[121,257,73,6.230831146240234],[121,257,74,6.244339466094971],[121,257,75,6.249833583831787],[121,257,76,6.2509636878967285],[121,257,77,6.249726295471191],[121,257,78,6.245981216430664],[121,257,79,6.23707914352417],[121,258,64,6.132693767547607],[121,258,65,6.13508415222168],[121,258,66,6.132391929626465],[121,258,67,6.1280012130737305],[121,258,68,6.126828670501709],[121,258,69,6.133684158325195],[121,258,70,6.1502604484558105],[121,258,71,6.174976825714111],[121,258,72,6.206064701080322],[121,258,73,6.230831146240234],[121,258,74,6.244339466094971],[121,258,75,6.249833583831787],[121,258,76,6.2509636878967285],[121,258,77,6.249726295471191],[121,258,78,6.245981216430664],[121,258,79,6.23707914352417],[121,259,64,6.132693767547607],[121,259,65,6.13508415222168],[121,259,66,6.132391929626465],[121,259,67,6.1280012130737305],[121,259,68,6.126828670501709],[121,259,69,6.133684158325195],[121,259,70,6.1502604484558105],[121,259,71,6.174976825714111],[121,259,72,6.206064701080322],[121,259,73,6.230831146240234],[121,259,74,6.244339466094971],[121,259,75,6.249833583831787],[121,259,76,6.2509636878967285],[121,259,77,6.249726295471191],[121,259,78,6.245981216430664],[121,259,79,6.23707914352417],[121,260,64,6.132693767547607],[121,260,65,6.13508415222168],[121,260,66,6.132391929626465],[121,260,67,6.1280012130737305],[121,260,68,6.126828670501709],[121,260,69,6.133684158325195],[121,260,70,6.1502604484558105],[121,260,71,6.174976825714111],[121,260,72,6.206064701080322],[121,260,73,6.230831146240234],[121,260,74,6.244339466094971],[121,260,75,6.249833583831787],[121,260,76,6.2509636878967285],[121,260,77,6.249726295471191],[121,260,78,6.245981216430664],[121,260,79,6.23707914352417],[121,261,64,6.132693767547607],[121,261,65,6.13508415222168],[121,261,66,6.132391929626465],[121,261,67,6.1280012130737305],[121,261,68,6.126828670501709],[121,261,69,6.133684158325195],[121,261,70,6.1502604484558105],[121,261,71,6.174976825714111],[121,261,72,6.206064701080322],[121,261,73,6.230831146240234],[121,261,74,6.244339466094971],[121,261,75,6.249833583831787],[121,261,76,6.2509636878967285],[121,261,77,6.249726295471191],[121,261,78,6.245981216430664],[121,261,79,6.23707914352417],[121,262,64,6.132693767547607],[121,262,65,6.13508415222168],[121,262,66,6.132391929626465],[121,262,67,6.1280012130737305],[121,262,68,6.126828670501709],[121,262,69,6.133684158325195],[121,262,70,6.1502604484558105],[121,262,71,6.174976825714111],[121,262,72,6.206064701080322],[121,262,73,6.230831146240234],[121,262,74,6.244339466094971],[121,262,75,6.249833583831787],[121,262,76,6.2509636878967285],[121,262,77,6.249726295471191],[121,262,78,6.245981216430664],[121,262,79,6.23707914352417],[121,263,64,6.132693767547607],[121,263,65,6.13508415222168],[121,263,66,6.132391929626465],[121,263,67,6.1280012130737305],[121,263,68,6.126828670501709],[121,263,69,6.133684158325195],[121,263,70,6.1502604484558105],[121,263,71,6.174976825714111],[121,263,72,6.206064701080322],[121,263,73,6.230831146240234],[121,263,74,6.244339466094971],[121,263,75,6.249833583831787],[121,263,76,6.2509636878967285],[121,263,77,6.249726295471191],[121,263,78,6.245981216430664],[121,263,79,6.23707914352417],[121,264,64,6.132693767547607],[121,264,65,6.13508415222168],[121,264,66,6.132391929626465],[121,264,67,6.1280012130737305],[121,264,68,6.126828670501709],[121,264,69,6.133684158325195],[121,264,70,6.1502604484558105],[121,264,71,6.174976825714111],[121,264,72,6.206064701080322],[121,264,73,6.230831146240234],[121,264,74,6.244339466094971],[121,264,75,6.249833583831787],[121,264,76,6.2509636878967285],[121,264,77,6.249726295471191],[121,264,78,6.245981216430664],[121,264,79,6.23707914352417],[121,265,64,6.132693767547607],[121,265,65,6.13508415222168],[121,265,66,6.132391929626465],[121,265,67,6.1280012130737305],[121,265,68,6.126828670501709],[121,265,69,6.133684158325195],[121,265,70,6.1502604484558105],[121,265,71,6.174976825714111],[121,265,72,6.206064701080322],[121,265,73,6.230831146240234],[121,265,74,6.244339466094971],[121,265,75,6.249833583831787],[121,265,76,6.2509636878967285],[121,265,77,6.249726295471191],[121,265,78,6.245981216430664],[121,265,79,6.23707914352417],[121,266,64,6.132693767547607],[121,266,65,6.13508415222168],[121,266,66,6.132391929626465],[121,266,67,6.1280012130737305],[121,266,68,6.126828670501709],[121,266,69,6.133684158325195],[121,266,70,6.1502604484558105],[121,266,71,6.174976825714111],[121,266,72,6.206064701080322],[121,266,73,6.230831146240234],[121,266,74,6.244339466094971],[121,266,75,6.249833583831787],[121,266,76,6.2509636878967285],[121,266,77,6.249726295471191],[121,266,78,6.245981216430664],[121,266,79,6.23707914352417],[121,267,64,6.132693767547607],[121,267,65,6.13508415222168],[121,267,66,6.132391929626465],[121,267,67,6.1280012130737305],[121,267,68,6.126828670501709],[121,267,69,6.133684158325195],[121,267,70,6.1502604484558105],[121,267,71,6.174976825714111],[121,267,72,6.206064701080322],[121,267,73,6.230831146240234],[121,267,74,6.244339466094971],[121,267,75,6.249833583831787],[121,267,76,6.2509636878967285],[121,267,77,6.249726295471191],[121,267,78,6.245981216430664],[121,267,79,6.23707914352417],[121,268,64,6.132693767547607],[121,268,65,6.13508415222168],[121,268,66,6.132391929626465],[121,268,67,6.1280012130737305],[121,268,68,6.126828670501709],[121,268,69,6.133684158325195],[121,268,70,6.1502604484558105],[121,268,71,6.174976825714111],[121,268,72,6.206064701080322],[121,268,73,6.230831146240234],[121,268,74,6.244339466094971],[121,268,75,6.249833583831787],[121,268,76,6.2509636878967285],[121,268,77,6.249726295471191],[121,268,78,6.245981216430664],[121,268,79,6.23707914352417],[121,269,64,6.132693767547607],[121,269,65,6.13508415222168],[121,269,66,6.132391929626465],[121,269,67,6.1280012130737305],[121,269,68,6.126828670501709],[121,269,69,6.133684158325195],[121,269,70,6.1502604484558105],[121,269,71,6.174976825714111],[121,269,72,6.206064701080322],[121,269,73,6.230831146240234],[121,269,74,6.244339466094971],[121,269,75,6.249833583831787],[121,269,76,6.2509636878967285],[121,269,77,6.249726295471191],[121,269,78,6.245981216430664],[121,269,79,6.23707914352417],[121,270,64,6.132693767547607],[121,270,65,6.13508415222168],[121,270,66,6.132391929626465],[121,270,67,6.1280012130737305],[121,270,68,6.126828670501709],[121,270,69,6.133684158325195],[121,270,70,6.1502604484558105],[121,270,71,6.174976825714111],[121,270,72,6.206064701080322],[121,270,73,6.230831146240234],[121,270,74,6.244339466094971],[121,270,75,6.249833583831787],[121,270,76,6.2509636878967285],[121,270,77,6.249726295471191],[121,270,78,6.245981216430664],[121,270,79,6.23707914352417],[121,271,64,6.132693767547607],[121,271,65,6.13508415222168],[121,271,66,6.132391929626465],[121,271,67,6.1280012130737305],[121,271,68,6.126828670501709],[121,271,69,6.133684158325195],[121,271,70,6.1502604484558105],[121,271,71,6.174976825714111],[121,271,72,6.206064701080322],[121,271,73,6.230831146240234],[121,271,74,6.244339466094971],[121,271,75,6.249833583831787],[121,271,76,6.2509636878967285],[121,271,77,6.249726295471191],[121,271,78,6.245981216430664],[121,271,79,6.23707914352417],[121,272,64,6.132693767547607],[121,272,65,6.13508415222168],[121,272,66,6.132391929626465],[121,272,67,6.1280012130737305],[121,272,68,6.126828670501709],[121,272,69,6.133684158325195],[121,272,70,6.1502604484558105],[121,272,71,6.174976825714111],[121,272,72,6.206064701080322],[121,272,73,6.230831146240234],[121,272,74,6.244339466094971],[121,272,75,6.249833583831787],[121,272,76,6.2509636878967285],[121,272,77,6.249726295471191],[121,272,78,6.245981216430664],[121,272,79,6.23707914352417],[121,273,64,6.132693767547607],[121,273,65,6.13508415222168],[121,273,66,6.132391929626465],[121,273,67,6.1280012130737305],[121,273,68,6.126828670501709],[121,273,69,6.133684158325195],[121,273,70,6.1502604484558105],[121,273,71,6.174976825714111],[121,273,72,6.206064701080322],[121,273,73,6.230831146240234],[121,273,74,6.244339466094971],[121,273,75,6.249833583831787],[121,273,76,6.2509636878967285],[121,273,77,6.249726295471191],[121,273,78,6.245981216430664],[121,273,79,6.23707914352417],[121,274,64,6.132693767547607],[121,274,65,6.13508415222168],[121,274,66,6.132391929626465],[121,274,67,6.1280012130737305],[121,274,68,6.126828670501709],[121,274,69,6.133684158325195],[121,274,70,6.1502604484558105],[121,274,71,6.174976825714111],[121,274,72,6.206064701080322],[121,274,73,6.230831146240234],[121,274,74,6.244339466094971],[121,274,75,6.249833583831787],[121,274,76,6.2509636878967285],[121,274,77,6.249726295471191],[121,274,78,6.245981216430664],[121,274,79,6.23707914352417],[121,275,64,6.132693767547607],[121,275,65,6.13508415222168],[121,275,66,6.132391929626465],[121,275,67,6.1280012130737305],[121,275,68,6.126828670501709],[121,275,69,6.133684158325195],[121,275,70,6.1502604484558105],[121,275,71,6.174976825714111],[121,275,72,6.206064701080322],[121,275,73,6.230831146240234],[121,275,74,6.244339466094971],[121,275,75,6.249833583831787],[121,275,76,6.2509636878967285],[121,275,77,6.249726295471191],[121,275,78,6.245981216430664],[121,275,79,6.23707914352417],[121,276,64,6.132693767547607],[121,276,65,6.13508415222168],[121,276,66,6.132391929626465],[121,276,67,6.1280012130737305],[121,276,68,6.126828670501709],[121,276,69,6.133684158325195],[121,276,70,6.1502604484558105],[121,276,71,6.174976825714111],[121,276,72,6.206064701080322],[121,276,73,6.230831146240234],[121,276,74,6.244339466094971],[121,276,75,6.249833583831787],[121,276,76,6.2509636878967285],[121,276,77,6.249726295471191],[121,276,78,6.245981216430664],[121,276,79,6.23707914352417],[121,277,64,6.132693767547607],[121,277,65,6.13508415222168],[121,277,66,6.132391929626465],[121,277,67,6.1280012130737305],[121,277,68,6.126828670501709],[121,277,69,6.133684158325195],[121,277,70,6.1502604484558105],[121,277,71,6.174976825714111],[121,277,72,6.206064701080322],[121,277,73,6.230831146240234],[121,277,74,6.244339466094971],[121,277,75,6.249833583831787],[121,277,76,6.2509636878967285],[121,277,77,6.249726295471191],[121,277,78,6.245981216430664],[121,277,79,6.23707914352417],[121,278,64,6.132693767547607],[121,278,65,6.13508415222168],[121,278,66,6.132391929626465],[121,278,67,6.1280012130737305],[121,278,68,6.126828670501709],[121,278,69,6.133684158325195],[121,278,70,6.1502604484558105],[121,278,71,6.174976825714111],[121,278,72,6.206064701080322],[121,278,73,6.230831146240234],[121,278,74,6.244339466094971],[121,278,75,6.249833583831787],[121,278,76,6.2509636878967285],[121,278,77,6.249726295471191],[121,278,78,6.245981216430664],[121,278,79,6.23707914352417],[121,279,64,6.132693767547607],[121,279,65,6.13508415222168],[121,279,66,6.132391929626465],[121,279,67,6.1280012130737305],[121,279,68,6.126828670501709],[121,279,69,6.133684158325195],[121,279,70,6.1502604484558105],[121,279,71,6.174976825714111],[121,279,72,6.206064701080322],[121,279,73,6.230831146240234],[121,279,74,6.244339466094971],[121,279,75,6.249833583831787],[121,279,76,6.2509636878967285],[121,279,77,6.249726295471191],[121,279,78,6.245981216430664],[121,279,79,6.23707914352417],[121,280,64,6.132693767547607],[121,280,65,6.13508415222168],[121,280,66,6.132391929626465],[121,280,67,6.1280012130737305],[121,280,68,6.126828670501709],[121,280,69,6.133684158325195],[121,280,70,6.1502604484558105],[121,280,71,6.174976825714111],[121,280,72,6.206064701080322],[121,280,73,6.230831146240234],[121,280,74,6.244339466094971],[121,280,75,6.249833583831787],[121,280,76,6.2509636878967285],[121,280,77,6.249726295471191],[121,280,78,6.245981216430664],[121,280,79,6.23707914352417],[121,281,64,6.132693767547607],[121,281,65,6.13508415222168],[121,281,66,6.132391929626465],[121,281,67,6.1280012130737305],[121,281,68,6.126828670501709],[121,281,69,6.133684158325195],[121,281,70,6.1502604484558105],[121,281,71,6.174976825714111],[121,281,72,6.206064701080322],[121,281,73,6.230831146240234],[121,281,74,6.244339466094971],[121,281,75,6.249833583831787],[121,281,76,6.2509636878967285],[121,281,77,6.249726295471191],[121,281,78,6.245981216430664],[121,281,79,6.23707914352417],[121,282,64,6.132693767547607],[121,282,65,6.13508415222168],[121,282,66,6.132391929626465],[121,282,67,6.1280012130737305],[121,282,68,6.126828670501709],[121,282,69,6.133684158325195],[121,282,70,6.1502604484558105],[121,282,71,6.174976825714111],[121,282,72,6.206064701080322],[121,282,73,6.230831146240234],[121,282,74,6.244339466094971],[121,282,75,6.249833583831787],[121,282,76,6.2509636878967285],[121,282,77,6.249726295471191],[121,282,78,6.245981216430664],[121,282,79,6.23707914352417],[121,283,64,6.132693767547607],[121,283,65,6.13508415222168],[121,283,66,6.132391929626465],[121,283,67,6.1280012130737305],[121,283,68,6.126828670501709],[121,283,69,6.133684158325195],[121,283,70,6.1502604484558105],[121,283,71,6.174976825714111],[121,283,72,6.206064701080322],[121,283,73,6.230831146240234],[121,283,74,6.244339466094971],[121,283,75,6.249833583831787],[121,283,76,6.2509636878967285],[121,283,77,6.249726295471191],[121,283,78,6.245981216430664],[121,283,79,6.23707914352417],[121,284,64,6.132693767547607],[121,284,65,6.13508415222168],[121,284,66,6.132391929626465],[121,284,67,6.1280012130737305],[121,284,68,6.126828670501709],[121,284,69,6.133684158325195],[121,284,70,6.1502604484558105],[121,284,71,6.174976825714111],[121,284,72,6.206064701080322],[121,284,73,6.230831146240234],[121,284,74,6.244339466094971],[121,284,75,6.249833583831787],[121,284,76,6.2509636878967285],[121,284,77,6.249726295471191],[121,284,78,6.245981216430664],[121,284,79,6.23707914352417],[121,285,64,6.132693767547607],[121,285,65,6.13508415222168],[121,285,66,6.132391929626465],[121,285,67,6.1280012130737305],[121,285,68,6.126828670501709],[121,285,69,6.133684158325195],[121,285,70,6.1502604484558105],[121,285,71,6.174976825714111],[121,285,72,6.206064701080322],[121,285,73,6.230831146240234],[121,285,74,6.244339466094971],[121,285,75,6.249833583831787],[121,285,76,6.2509636878967285],[121,285,77,6.249726295471191],[121,285,78,6.245981216430664],[121,285,79,6.23707914352417],[121,286,64,6.132693767547607],[121,286,65,6.13508415222168],[121,286,66,6.132391929626465],[121,286,67,6.1280012130737305],[121,286,68,6.126828670501709],[121,286,69,6.133684158325195],[121,286,70,6.1502604484558105],[121,286,71,6.174976825714111],[121,286,72,6.206064701080322],[121,286,73,6.230831146240234],[121,286,74,6.244339466094971],[121,286,75,6.249833583831787],[121,286,76,6.2509636878967285],[121,286,77,6.249726295471191],[121,286,78,6.245981216430664],[121,286,79,6.23707914352417],[121,287,64,6.132693767547607],[121,287,65,6.13508415222168],[121,287,66,6.132391929626465],[121,287,67,6.1280012130737305],[121,287,68,6.126828670501709],[121,287,69,6.133684158325195],[121,287,70,6.1502604484558105],[121,287,71,6.174976825714111],[121,287,72,6.206064701080322],[121,287,73,6.230831146240234],[121,287,74,6.244339466094971],[121,287,75,6.249833583831787],[121,287,76,6.2509636878967285],[121,287,77,6.249726295471191],[121,287,78,6.245981216430664],[121,287,79,6.23707914352417],[121,288,64,6.132693767547607],[121,288,65,6.13508415222168],[121,288,66,6.132391929626465],[121,288,67,6.1280012130737305],[121,288,68,6.126828670501709],[121,288,69,6.133684158325195],[121,288,70,6.1502604484558105],[121,288,71,6.174976825714111],[121,288,72,6.206064701080322],[121,288,73,6.230831146240234],[121,288,74,6.244339466094971],[121,288,75,6.249833583831787],[121,288,76,6.2509636878967285],[121,288,77,6.249726295471191],[121,288,78,6.245981216430664],[121,288,79,6.23707914352417],[121,289,64,6.132693767547607],[121,289,65,6.13508415222168],[121,289,66,6.132391929626465],[121,289,67,6.1280012130737305],[121,289,68,6.126828670501709],[121,289,69,6.133684158325195],[121,289,70,6.1502604484558105],[121,289,71,6.174976825714111],[121,289,72,6.206064701080322],[121,289,73,6.230831146240234],[121,289,74,6.244339466094971],[121,289,75,6.249833583831787],[121,289,76,6.2509636878967285],[121,289,77,6.249726295471191],[121,289,78,6.245981216430664],[121,289,79,6.23707914352417],[121,290,64,6.132693767547607],[121,290,65,6.13508415222168],[121,290,66,6.132391929626465],[121,290,67,6.1280012130737305],[121,290,68,6.126828670501709],[121,290,69,6.133684158325195],[121,290,70,6.1502604484558105],[121,290,71,6.174976825714111],[121,290,72,6.206064701080322],[121,290,73,6.230831146240234],[121,290,74,6.244339466094971],[121,290,75,6.249833583831787],[121,290,76,6.2509636878967285],[121,290,77,6.249726295471191],[121,290,78,6.245981216430664],[121,290,79,6.23707914352417],[121,291,64,6.132693767547607],[121,291,65,6.13508415222168],[121,291,66,6.132391929626465],[121,291,67,6.1280012130737305],[121,291,68,6.126828670501709],[121,291,69,6.133684158325195],[121,291,70,6.1502604484558105],[121,291,71,6.174976825714111],[121,291,72,6.206064701080322],[121,291,73,6.230831146240234],[121,291,74,6.244339466094971],[121,291,75,6.249833583831787],[121,291,76,6.2509636878967285],[121,291,77,6.249726295471191],[121,291,78,6.245981216430664],[121,291,79,6.23707914352417],[121,292,64,6.132693767547607],[121,292,65,6.13508415222168],[121,292,66,6.132391929626465],[121,292,67,6.1280012130737305],[121,292,68,6.126828670501709],[121,292,69,6.133684158325195],[121,292,70,6.1502604484558105],[121,292,71,6.174976825714111],[121,292,72,6.206064701080322],[121,292,73,6.230831146240234],[121,292,74,6.244339466094971],[121,292,75,6.249833583831787],[121,292,76,6.2509636878967285],[121,292,77,6.249726295471191],[121,292,78,6.245981216430664],[121,292,79,6.23707914352417],[121,293,64,6.132693767547607],[121,293,65,6.13508415222168],[121,293,66,6.132391929626465],[121,293,67,6.1280012130737305],[121,293,68,6.126828670501709],[121,293,69,6.133684158325195],[121,293,70,6.1502604484558105],[121,293,71,6.174976825714111],[121,293,72,6.206064701080322],[121,293,73,6.230831146240234],[121,293,74,6.244339466094971],[121,293,75,6.249833583831787],[121,293,76,6.2509636878967285],[121,293,77,6.249726295471191],[121,293,78,6.245981216430664],[121,293,79,6.23707914352417],[121,294,64,6.132693767547607],[121,294,65,6.13508415222168],[121,294,66,6.132391929626465],[121,294,67,6.1280012130737305],[121,294,68,6.126828670501709],[121,294,69,6.133684158325195],[121,294,70,6.1502604484558105],[121,294,71,6.174976825714111],[121,294,72,6.206064701080322],[121,294,73,6.230831146240234],[121,294,74,6.244339466094971],[121,294,75,6.249833583831787],[121,294,76,6.2509636878967285],[121,294,77,6.249726295471191],[121,294,78,6.245981216430664],[121,294,79,6.23707914352417],[121,295,64,6.132693767547607],[121,295,65,6.13508415222168],[121,295,66,6.132391929626465],[121,295,67,6.1280012130737305],[121,295,68,6.126828670501709],[121,295,69,6.133684158325195],[121,295,70,6.1502604484558105],[121,295,71,6.174976825714111],[121,295,72,6.206064701080322],[121,295,73,6.230831146240234],[121,295,74,6.244339466094971],[121,295,75,6.249833583831787],[121,295,76,6.2509636878967285],[121,295,77,6.249726295471191],[121,295,78,6.245981216430664],[121,295,79,6.23707914352417],[121,296,64,6.132693767547607],[121,296,65,6.13508415222168],[121,296,66,6.132391929626465],[121,296,67,6.1280012130737305],[121,296,68,6.126828670501709],[121,296,69,6.133684158325195],[121,296,70,6.1502604484558105],[121,296,71,6.174976825714111],[121,296,72,6.206064701080322],[121,296,73,6.230831146240234],[121,296,74,6.244339466094971],[121,296,75,6.249833583831787],[121,296,76,6.2509636878967285],[121,296,77,6.249726295471191],[121,296,78,6.245981216430664],[121,296,79,6.23707914352417],[121,297,64,6.132693767547607],[121,297,65,6.13508415222168],[121,297,66,6.132391929626465],[121,297,67,6.1280012130737305],[121,297,68,6.126828670501709],[121,297,69,6.133684158325195],[121,297,70,6.1502604484558105],[121,297,71,6.174976825714111],[121,297,72,6.206064701080322],[121,297,73,6.230831146240234],[121,297,74,6.244339466094971],[121,297,75,6.249833583831787],[121,297,76,6.2509636878967285],[121,297,77,6.249726295471191],[121,297,78,6.245981216430664],[121,297,79,6.23707914352417],[121,298,64,6.132693767547607],[121,298,65,6.13508415222168],[121,298,66,6.132391929626465],[121,298,67,6.1280012130737305],[121,298,68,6.126828670501709],[121,298,69,6.133684158325195],[121,298,70,6.1502604484558105],[121,298,71,6.174976825714111],[121,298,72,6.206064701080322],[121,298,73,6.230831146240234],[121,298,74,6.244339466094971],[121,298,75,6.249833583831787],[121,298,76,6.2509636878967285],[121,298,77,6.249726295471191],[121,298,78,6.245981216430664],[121,298,79,6.23707914352417],[121,299,64,6.132693767547607],[121,299,65,6.13508415222168],[121,299,66,6.132391929626465],[121,299,67,6.1280012130737305],[121,299,68,6.126828670501709],[121,299,69,6.133684158325195],[121,299,70,6.1502604484558105],[121,299,71,6.174976825714111],[121,299,72,6.206064701080322],[121,299,73,6.230831146240234],[121,299,74,6.244339466094971],[121,299,75,6.249833583831787],[121,299,76,6.2509636878967285],[121,299,77,6.249726295471191],[121,299,78,6.245981216430664],[121,299,79,6.23707914352417],[121,300,64,6.132693767547607],[121,300,65,6.13508415222168],[121,300,66,6.132391929626465],[121,300,67,6.1280012130737305],[121,300,68,6.126828670501709],[121,300,69,6.133684158325195],[121,300,70,6.1502604484558105],[121,300,71,6.174976825714111],[121,300,72,6.206064701080322],[121,300,73,6.230831146240234],[121,300,74,6.244339466094971],[121,300,75,6.249833583831787],[121,300,76,6.2509636878967285],[121,300,77,6.249726295471191],[121,300,78,6.245981216430664],[121,300,79,6.23707914352417],[121,301,64,6.132693767547607],[121,301,65,6.13508415222168],[121,301,66,6.132391929626465],[121,301,67,6.1280012130737305],[121,301,68,6.126828670501709],[121,301,69,6.133684158325195],[121,301,70,6.1502604484558105],[121,301,71,6.174976825714111],[121,301,72,6.206064701080322],[121,301,73,6.230831146240234],[121,301,74,6.244339466094971],[121,301,75,6.249833583831787],[121,301,76,6.2509636878967285],[121,301,77,6.249726295471191],[121,301,78,6.245981216430664],[121,301,79,6.23707914352417],[121,302,64,6.132693767547607],[121,302,65,6.13508415222168],[121,302,66,6.132391929626465],[121,302,67,6.1280012130737305],[121,302,68,6.126828670501709],[121,302,69,6.133684158325195],[121,302,70,6.1502604484558105],[121,302,71,6.174976825714111],[121,302,72,6.206064701080322],[121,302,73,6.230831146240234],[121,302,74,6.244339466094971],[121,302,75,6.249833583831787],[121,302,76,6.2509636878967285],[121,302,77,6.249726295471191],[121,302,78,6.245981216430664],[121,302,79,6.23707914352417],[121,303,64,6.132693767547607],[121,303,65,6.13508415222168],[121,303,66,6.132391929626465],[121,303,67,6.1280012130737305],[121,303,68,6.126828670501709],[121,303,69,6.133684158325195],[121,303,70,6.1502604484558105],[121,303,71,6.174976825714111],[121,303,72,6.206064701080322],[121,303,73,6.230831146240234],[121,303,74,6.244339466094971],[121,303,75,6.249833583831787],[121,303,76,6.2509636878967285],[121,303,77,6.249726295471191],[121,303,78,6.245981216430664],[121,303,79,6.23707914352417],[121,304,64,6.132693767547607],[121,304,65,6.13508415222168],[121,304,66,6.132391929626465],[121,304,67,6.1280012130737305],[121,304,68,6.126828670501709],[121,304,69,6.133684158325195],[121,304,70,6.1502604484558105],[121,304,71,6.174976825714111],[121,304,72,6.206064701080322],[121,304,73,6.230831146240234],[121,304,74,6.244339466094971],[121,304,75,6.249833583831787],[121,304,76,6.2509636878967285],[121,304,77,6.249726295471191],[121,304,78,6.245981216430664],[121,304,79,6.23707914352417],[121,305,64,6.132693767547607],[121,305,65,6.13508415222168],[121,305,66,6.132391929626465],[121,305,67,6.1280012130737305],[121,305,68,6.126828670501709],[121,305,69,6.133684158325195],[121,305,70,6.1502604484558105],[121,305,71,6.174976825714111],[121,305,72,6.206064701080322],[121,305,73,6.230831146240234],[121,305,74,6.244339466094971],[121,305,75,6.249833583831787],[121,305,76,6.2509636878967285],[121,305,77,6.249726295471191],[121,305,78,6.245981216430664],[121,305,79,6.23707914352417],[121,306,64,6.132693767547607],[121,306,65,6.13508415222168],[121,306,66,6.132391929626465],[121,306,67,6.1280012130737305],[121,306,68,6.126828670501709],[121,306,69,6.133684158325195],[121,306,70,6.1502604484558105],[121,306,71,6.174976825714111],[121,306,72,6.206064701080322],[121,306,73,6.230831146240234],[121,306,74,6.244339466094971],[121,306,75,6.249833583831787],[121,306,76,6.2509636878967285],[121,306,77,6.249726295471191],[121,306,78,6.245981216430664],[121,306,79,6.23707914352417],[121,307,64,6.132693767547607],[121,307,65,6.13508415222168],[121,307,66,6.132391929626465],[121,307,67,6.1280012130737305],[121,307,68,6.126828670501709],[121,307,69,6.133684158325195],[121,307,70,6.1502604484558105],[121,307,71,6.174976825714111],[121,307,72,6.206064701080322],[121,307,73,6.230831146240234],[121,307,74,6.244339466094971],[121,307,75,6.249833583831787],[121,307,76,6.2509636878967285],[121,307,77,6.249726295471191],[121,307,78,6.245981216430664],[121,307,79,6.23707914352417],[121,308,64,6.132693767547607],[121,308,65,6.13508415222168],[121,308,66,6.132391929626465],[121,308,67,6.1280012130737305],[121,308,68,6.126828670501709],[121,308,69,6.133684158325195],[121,308,70,6.1502604484558105],[121,308,71,6.174976825714111],[121,308,72,6.206064701080322],[121,308,73,6.230831146240234],[121,308,74,6.244339466094971],[121,308,75,6.249833583831787],[121,308,76,6.2509636878967285],[121,308,77,6.249726295471191],[121,308,78,6.245981216430664],[121,308,79,6.23707914352417],[121,309,64,6.132693767547607],[121,309,65,6.13508415222168],[121,309,66,6.132391929626465],[121,309,67,6.1280012130737305],[121,309,68,6.126828670501709],[121,309,69,6.133684158325195],[121,309,70,6.1502604484558105],[121,309,71,6.174976825714111],[121,309,72,6.206064701080322],[121,309,73,6.230831146240234],[121,309,74,6.244339466094971],[121,309,75,6.249833583831787],[121,309,76,6.2509636878967285],[121,309,77,6.249726295471191],[121,309,78,6.245981216430664],[121,309,79,6.23707914352417],[121,310,64,6.132693767547607],[121,310,65,6.13508415222168],[121,310,66,6.132391929626465],[121,310,67,6.1280012130737305],[121,310,68,6.126828670501709],[121,310,69,6.133684158325195],[121,310,70,6.1502604484558105],[121,310,71,6.174976825714111],[121,310,72,6.206064701080322],[121,310,73,6.230831146240234],[121,310,74,6.244339466094971],[121,310,75,6.249833583831787],[121,310,76,6.2509636878967285],[121,310,77,6.249726295471191],[121,310,78,6.245981216430664],[121,310,79,6.23707914352417],[121,311,64,6.132693767547607],[121,311,65,6.13508415222168],[121,311,66,6.132391929626465],[121,311,67,6.1280012130737305],[121,311,68,6.126828670501709],[121,311,69,6.133684158325195],[121,311,70,6.1502604484558105],[121,311,71,6.174976825714111],[121,311,72,6.206064701080322],[121,311,73,6.230831146240234],[121,311,74,6.244339466094971],[121,311,75,6.249833583831787],[121,311,76,6.2509636878967285],[121,311,77,6.249726295471191],[121,311,78,6.245981216430664],[121,311,79,6.23707914352417],[121,312,64,6.132693767547607],[121,312,65,6.13508415222168],[121,312,66,6.132391929626465],[121,312,67,6.1280012130737305],[121,312,68,6.126828670501709],[121,312,69,6.133684158325195],[121,312,70,6.1502604484558105],[121,312,71,6.174976825714111],[121,312,72,6.206064701080322],[121,312,73,6.230831146240234],[121,312,74,6.244339466094971],[121,312,75,6.249833583831787],[121,312,76,6.2509636878967285],[121,312,77,6.249726295471191],[121,312,78,6.245981216430664],[121,312,79,6.23707914352417],[121,313,64,6.132693767547607],[121,313,65,6.13508415222168],[121,313,66,6.132391929626465],[121,313,67,6.1280012130737305],[121,313,68,6.126828670501709],[121,313,69,6.133684158325195],[121,313,70,6.1502604484558105],[121,313,71,6.174976825714111],[121,313,72,6.206064701080322],[121,313,73,6.230831146240234],[121,313,74,6.244339466094971],[121,313,75,6.249833583831787],[121,313,76,6.2509636878967285],[121,313,77,6.249726295471191],[121,313,78,6.245981216430664],[121,313,79,6.23707914352417],[121,314,64,6.132693767547607],[121,314,65,6.13508415222168],[121,314,66,6.132391929626465],[121,314,67,6.1280012130737305],[121,314,68,6.126828670501709],[121,314,69,6.133684158325195],[121,314,70,6.1502604484558105],[121,314,71,6.174976825714111],[121,314,72,6.206064701080322],[121,314,73,6.230831146240234],[121,314,74,6.244339466094971],[121,314,75,6.249833583831787],[121,314,76,6.2509636878967285],[121,314,77,6.249726295471191],[121,314,78,6.245981216430664],[121,314,79,6.23707914352417],[121,315,64,6.132693767547607],[121,315,65,6.13508415222168],[121,315,66,6.132391929626465],[121,315,67,6.1280012130737305],[121,315,68,6.126828670501709],[121,315,69,6.133684158325195],[121,315,70,6.1502604484558105],[121,315,71,6.174976825714111],[121,315,72,6.206064701080322],[121,315,73,6.230831146240234],[121,315,74,6.244339466094971],[121,315,75,6.249833583831787],[121,315,76,6.2509636878967285],[121,315,77,6.249726295471191],[121,315,78,6.245981216430664],[121,315,79,6.23707914352417],[121,316,64,6.132693767547607],[121,316,65,6.13508415222168],[121,316,66,6.132391929626465],[121,316,67,6.1280012130737305],[121,316,68,6.126828670501709],[121,316,69,6.133684158325195],[121,316,70,6.1502604484558105],[121,316,71,6.174976825714111],[121,316,72,6.206064701080322],[121,316,73,6.230831146240234],[121,316,74,6.244339466094971],[121,316,75,6.249833583831787],[121,316,76,6.2509636878967285],[121,316,77,6.249726295471191],[121,316,78,6.245981216430664],[121,316,79,6.23707914352417],[121,317,64,6.132693767547607],[121,317,65,6.13508415222168],[121,317,66,6.132391929626465],[121,317,67,6.1280012130737305],[121,317,68,6.126828670501709],[121,317,69,6.133684158325195],[121,317,70,6.1502604484558105],[121,317,71,6.174976825714111],[121,317,72,6.206064701080322],[121,317,73,6.230831146240234],[121,317,74,6.244339466094971],[121,317,75,6.249833583831787],[121,317,76,6.2509636878967285],[121,317,77,6.249726295471191],[121,317,78,6.245981216430664],[121,317,79,6.23707914352417],[121,318,64,6.132693767547607],[121,318,65,6.13508415222168],[121,318,66,6.132391929626465],[121,318,67,6.1280012130737305],[121,318,68,6.126828670501709],[121,318,69,6.133684158325195],[121,318,70,6.1502604484558105],[121,318,71,6.174976825714111],[121,318,72,6.206064701080322],[121,318,73,6.230831146240234],[121,318,74,6.244339466094971],[121,318,75,6.249833583831787],[121,318,76,6.2509636878967285],[121,318,77,6.249726295471191],[121,318,78,6.245981216430664],[121,318,79,6.23707914352417],[121,319,64,6.132693767547607],[121,319,65,6.13508415222168],[121,319,66,6.132391929626465],[121,319,67,6.1280012130737305],[121,319,68,6.126828670501709],[121,319,69,6.133684158325195],[121,319,70,6.1502604484558105],[121,319,71,6.174976825714111],[121,319,72,6.206064701080322],[121,319,73,6.230831146240234],[121,319,74,6.244339466094971],[121,319,75,6.249833583831787],[121,319,76,6.2509636878967285],[121,319,77,6.249726295471191],[121,319,78,6.245981216430664],[121,319,79,6.23707914352417],[122,-64,64,6.151723384857178],[122,-64,65,6.152887344360352],[122,-64,66,6.14828634262085],[122,-64,67,6.14301872253418],[122,-64,68,6.142638206481934],[122,-64,69,6.151845455169678],[122,-64,70,6.171098709106445],[122,-64,71,6.197380065917969],[122,-64,72,6.227060317993164],[122,-64,73,6.2464518547058105],[122,-64,74,6.255016326904297],[122,-64,75,6.258291244506836],[122,-64,76,6.258340835571289],[122,-64,77,6.256374835968018],[122,-64,78,6.252626419067383],[122,-64,79,6.243979454040527],[122,-63,64,6.151723384857178],[122,-63,65,6.152887344360352],[122,-63,66,6.14828634262085],[122,-63,67,6.14301872253418],[122,-63,68,6.142638206481934],[122,-63,69,6.151845455169678],[122,-63,70,6.171098709106445],[122,-63,71,6.197380065917969],[122,-63,72,6.227060317993164],[122,-63,73,6.2464518547058105],[122,-63,74,6.255016326904297],[122,-63,75,6.258291244506836],[122,-63,76,6.258340835571289],[122,-63,77,6.256374835968018],[122,-63,78,6.252626419067383],[122,-63,79,6.243979454040527],[122,-62,64,6.151723384857178],[122,-62,65,6.152887344360352],[122,-62,66,6.14828634262085],[122,-62,67,6.14301872253418],[122,-62,68,6.142638206481934],[122,-62,69,6.151845455169678],[122,-62,70,6.171098709106445],[122,-62,71,6.197380065917969],[122,-62,72,6.227060317993164],[122,-62,73,6.2464518547058105],[122,-62,74,6.255016326904297],[122,-62,75,6.258291244506836],[122,-62,76,6.258340835571289],[122,-62,77,6.256374835968018],[122,-62,78,6.252626419067383],[122,-62,79,6.243979454040527],[122,-61,64,6.151723384857178],[122,-61,65,6.152887344360352],[122,-61,66,6.14828634262085],[122,-61,67,6.14301872253418],[122,-61,68,6.142638206481934],[122,-61,69,6.151845455169678],[122,-61,70,6.171098709106445],[122,-61,71,6.197380065917969],[122,-61,72,6.227060317993164],[122,-61,73,6.2464518547058105],[122,-61,74,6.255016326904297],[122,-61,75,6.258291244506836],[122,-61,76,6.258340835571289],[122,-61,77,6.256374835968018],[122,-61,78,6.252626419067383],[122,-61,79,6.243979454040527],[122,-60,64,6.151723384857178],[122,-60,65,6.152887344360352],[122,-60,66,6.14828634262085],[122,-60,67,6.14301872253418],[122,-60,68,6.142638206481934],[122,-60,69,6.151845455169678],[122,-60,70,6.171098709106445],[122,-60,71,6.197380065917969],[122,-60,72,6.227060317993164],[122,-60,73,6.2464518547058105],[122,-60,74,6.255016326904297],[122,-60,75,6.258291244506836],[122,-60,76,6.258340835571289],[122,-60,77,6.256374835968018],[122,-60,78,6.252626419067383],[122,-60,79,6.243979454040527],[122,-59,64,6.151723384857178],[122,-59,65,6.152887344360352],[122,-59,66,6.14828634262085],[122,-59,67,6.14301872253418],[122,-59,68,6.142638206481934],[122,-59,69,6.151845455169678],[122,-59,70,6.171098709106445],[122,-59,71,6.197380065917969],[122,-59,72,6.227060317993164],[122,-59,73,6.2464518547058105],[122,-59,74,6.255016326904297],[122,-59,75,6.258291244506836],[122,-59,76,6.258340835571289],[122,-59,77,6.256374835968018],[122,-59,78,6.252626419067383],[122,-59,79,6.243979454040527],[122,-58,64,6.151723384857178],[122,-58,65,6.152887344360352],[122,-58,66,6.14828634262085],[122,-58,67,6.14301872253418],[122,-58,68,6.142638206481934],[122,-58,69,6.151845455169678],[122,-58,70,6.171098709106445],[122,-58,71,6.197380065917969],[122,-58,72,6.227060317993164],[122,-58,73,6.2464518547058105],[122,-58,74,6.255016326904297],[122,-58,75,6.258291244506836],[122,-58,76,6.258340835571289],[122,-58,77,6.256374835968018],[122,-58,78,6.252626419067383],[122,-58,79,6.243979454040527],[122,-57,64,6.151723384857178],[122,-57,65,6.152887344360352],[122,-57,66,6.14828634262085],[122,-57,67,6.14301872253418],[122,-57,68,6.142638206481934],[122,-57,69,6.151845455169678],[122,-57,70,6.171098709106445],[122,-57,71,6.197380065917969],[122,-57,72,6.227060317993164],[122,-57,73,6.2464518547058105],[122,-57,74,6.255016326904297],[122,-57,75,6.258291244506836],[122,-57,76,6.258340835571289],[122,-57,77,6.256374835968018],[122,-57,78,6.252626419067383],[122,-57,79,6.243979454040527],[122,-56,64,6.151723384857178],[122,-56,65,6.152887344360352],[122,-56,66,6.14828634262085],[122,-56,67,6.14301872253418],[122,-56,68,6.142638206481934],[122,-56,69,6.151845455169678],[122,-56,70,6.171098709106445],[122,-56,71,6.197380065917969],[122,-56,72,6.227060317993164],[122,-56,73,6.2464518547058105],[122,-56,74,6.255016326904297],[122,-56,75,6.258291244506836],[122,-56,76,6.258340835571289],[122,-56,77,6.256374835968018],[122,-56,78,6.252626419067383],[122,-56,79,6.243979454040527],[122,-55,64,6.151723384857178],[122,-55,65,6.152887344360352],[122,-55,66,6.14828634262085],[122,-55,67,6.14301872253418],[122,-55,68,6.142638206481934],[122,-55,69,6.151845455169678],[122,-55,70,6.171098709106445],[122,-55,71,6.197380065917969],[122,-55,72,6.227060317993164],[122,-55,73,6.2464518547058105],[122,-55,74,6.255016326904297],[122,-55,75,6.258291244506836],[122,-55,76,6.258340835571289],[122,-55,77,6.256374835968018],[122,-55,78,6.252626419067383],[122,-55,79,6.243979454040527],[122,-54,64,6.151723384857178],[122,-54,65,6.152887344360352],[122,-54,66,6.14828634262085],[122,-54,67,6.14301872253418],[122,-54,68,6.142638206481934],[122,-54,69,6.151845455169678],[122,-54,70,6.171098709106445],[122,-54,71,6.197380065917969],[122,-54,72,6.227060317993164],[122,-54,73,6.2464518547058105],[122,-54,74,6.255016326904297],[122,-54,75,6.258291244506836],[122,-54,76,6.258340835571289],[122,-54,77,6.256374835968018],[122,-54,78,6.252626419067383],[122,-54,79,6.243979454040527],[122,-53,64,6.151723384857178],[122,-53,65,6.152887344360352],[122,-53,66,6.14828634262085],[122,-53,67,6.14301872253418],[122,-53,68,6.142638206481934],[122,-53,69,6.151845455169678],[122,-53,70,6.171098709106445],[122,-53,71,6.197380065917969],[122,-53,72,6.227060317993164],[122,-53,73,6.2464518547058105],[122,-53,74,6.255016326904297],[122,-53,75,6.258291244506836],[122,-53,76,6.258340835571289],[122,-53,77,6.256374835968018],[122,-53,78,6.252626419067383],[122,-53,79,6.243979454040527],[122,-52,64,6.151723384857178],[122,-52,65,6.152887344360352],[122,-52,66,6.14828634262085],[122,-52,67,6.14301872253418],[122,-52,68,6.142638206481934],[122,-52,69,6.151845455169678],[122,-52,70,6.171098709106445],[122,-52,71,6.197380065917969],[122,-52,72,6.227060317993164],[122,-52,73,6.2464518547058105],[122,-52,74,6.255016326904297],[122,-52,75,6.258291244506836],[122,-52,76,6.258340835571289],[122,-52,77,6.256374835968018],[122,-52,78,6.252626419067383],[122,-52,79,6.243979454040527],[122,-51,64,6.151723384857178],[122,-51,65,6.152887344360352],[122,-51,66,6.14828634262085],[122,-51,67,6.14301872253418],[122,-51,68,6.142638206481934],[122,-51,69,6.151845455169678],[122,-51,70,6.171098709106445],[122,-51,71,6.197380065917969],[122,-51,72,6.227060317993164],[122,-51,73,6.2464518547058105],[122,-51,74,6.255016326904297],[122,-51,75,6.258291244506836],[122,-51,76,6.258340835571289],[122,-51,77,6.256374835968018],[122,-51,78,6.252626419067383],[122,-51,79,6.243979454040527],[122,-50,64,6.151723384857178],[122,-50,65,6.152887344360352],[122,-50,66,6.14828634262085],[122,-50,67,6.14301872253418],[122,-50,68,6.142638206481934],[122,-50,69,6.151845455169678],[122,-50,70,6.171098709106445],[122,-50,71,6.197380065917969],[122,-50,72,6.227060317993164],[122,-50,73,6.2464518547058105],[122,-50,74,6.255016326904297],[122,-50,75,6.258291244506836],[122,-50,76,6.258340835571289],[122,-50,77,6.256374835968018],[122,-50,78,6.252626419067383],[122,-50,79,6.243979454040527],[122,-49,64,6.151723384857178],[122,-49,65,6.152887344360352],[122,-49,66,6.14828634262085],[122,-49,67,6.14301872253418],[122,-49,68,6.142638206481934],[122,-49,69,6.151845455169678],[122,-49,70,6.171098709106445],[122,-49,71,6.197380065917969],[122,-49,72,6.227060317993164],[122,-49,73,6.2464518547058105],[122,-49,74,6.255016326904297],[122,-49,75,6.258291244506836],[122,-49,76,6.258340835571289],[122,-49,77,6.256374835968018],[122,-49,78,6.252626419067383],[122,-49,79,6.243979454040527],[122,-48,64,6.151723384857178],[122,-48,65,6.152887344360352],[122,-48,66,6.14828634262085],[122,-48,67,6.14301872253418],[122,-48,68,6.142638206481934],[122,-48,69,6.151845455169678],[122,-48,70,6.171098709106445],[122,-48,71,6.197380065917969],[122,-48,72,6.227060317993164],[122,-48,73,6.2464518547058105],[122,-48,74,6.255016326904297],[122,-48,75,6.258291244506836],[122,-48,76,6.258340835571289],[122,-48,77,6.256374835968018],[122,-48,78,6.252626419067383],[122,-48,79,6.243979454040527],[122,-47,64,6.151723384857178],[122,-47,65,6.152887344360352],[122,-47,66,6.14828634262085],[122,-47,67,6.14301872253418],[122,-47,68,6.142638206481934],[122,-47,69,6.151845455169678],[122,-47,70,6.171098709106445],[122,-47,71,6.197380065917969],[122,-47,72,6.227060317993164],[122,-47,73,6.2464518547058105],[122,-47,74,6.255016326904297],[122,-47,75,6.258291244506836],[122,-47,76,6.258340835571289],[122,-47,77,6.256374835968018],[122,-47,78,6.252626419067383],[122,-47,79,6.243979454040527],[122,-46,64,6.151723384857178],[122,-46,65,6.152887344360352],[122,-46,66,6.14828634262085],[122,-46,67,6.14301872253418],[122,-46,68,6.142638206481934],[122,-46,69,6.151845455169678],[122,-46,70,6.171098709106445],[122,-46,71,6.197380065917969],[122,-46,72,6.227060317993164],[122,-46,73,6.2464518547058105],[122,-46,74,6.255016326904297],[122,-46,75,6.258291244506836],[122,-46,76,6.258340835571289],[122,-46,77,6.256374835968018],[122,-46,78,6.252626419067383],[122,-46,79,6.243979454040527],[122,-45,64,6.151723384857178],[122,-45,65,6.152887344360352],[122,-45,66,6.14828634262085],[122,-45,67,6.14301872253418],[122,-45,68,6.142638206481934],[122,-45,69,6.151845455169678],[122,-45,70,6.171098709106445],[122,-45,71,6.197380065917969],[122,-45,72,6.227060317993164],[122,-45,73,6.2464518547058105],[122,-45,74,6.255016326904297],[122,-45,75,6.258291244506836],[122,-45,76,6.258340835571289],[122,-45,77,6.256374835968018],[122,-45,78,6.252626419067383],[122,-45,79,6.243979454040527],[122,-44,64,6.151723384857178],[122,-44,65,6.152887344360352],[122,-44,66,6.14828634262085],[122,-44,67,6.14301872253418],[122,-44,68,6.142638206481934],[122,-44,69,6.151845455169678],[122,-44,70,6.171098709106445],[122,-44,71,6.197380065917969],[122,-44,72,6.227060317993164],[122,-44,73,6.2464518547058105],[122,-44,74,6.255016326904297],[122,-44,75,6.258291244506836],[122,-44,76,6.258340835571289],[122,-44,77,6.256374835968018],[122,-44,78,6.252626419067383],[122,-44,79,6.243979454040527],[122,-43,64,6.151723384857178],[122,-43,65,6.152887344360352],[122,-43,66,6.14828634262085],[122,-43,67,6.14301872253418],[122,-43,68,6.142638206481934],[122,-43,69,6.151845455169678],[122,-43,70,6.171098709106445],[122,-43,71,6.197380065917969],[122,-43,72,6.227060317993164],[122,-43,73,6.2464518547058105],[122,-43,74,6.255016326904297],[122,-43,75,6.258291244506836],[122,-43,76,6.258340835571289],[122,-43,77,6.256374835968018],[122,-43,78,6.252626419067383],[122,-43,79,6.243979454040527],[122,-42,64,6.151723384857178],[122,-42,65,6.152887344360352],[122,-42,66,6.14828634262085],[122,-42,67,6.14301872253418],[122,-42,68,6.142638206481934],[122,-42,69,6.151845455169678],[122,-42,70,6.171098709106445],[122,-42,71,6.197380065917969],[122,-42,72,6.227060317993164],[122,-42,73,6.2464518547058105],[122,-42,74,6.255016326904297],[122,-42,75,6.258291244506836],[122,-42,76,6.258340835571289],[122,-42,77,6.256374835968018],[122,-42,78,6.252626419067383],[122,-42,79,6.243979454040527],[122,-41,64,6.151723384857178],[122,-41,65,6.152887344360352],[122,-41,66,6.14828634262085],[122,-41,67,6.14301872253418],[122,-41,68,6.142638206481934],[122,-41,69,6.151845455169678],[122,-41,70,6.171098709106445],[122,-41,71,6.197380065917969],[122,-41,72,6.227060317993164],[122,-41,73,6.2464518547058105],[122,-41,74,6.255016326904297],[122,-41,75,6.258291244506836],[122,-41,76,6.258340835571289],[122,-41,77,6.256374835968018],[122,-41,78,6.252626419067383],[122,-41,79,6.243979454040527],[122,-40,64,6.151723384857178],[122,-40,65,6.152887344360352],[122,-40,66,6.14828634262085],[122,-40,67,6.14301872253418],[122,-40,68,6.142638206481934],[122,-40,69,6.151845455169678],[122,-40,70,6.171098709106445],[122,-40,71,6.197380065917969],[122,-40,72,6.227060317993164],[122,-40,73,6.2464518547058105],[122,-40,74,6.255016326904297],[122,-40,75,6.258291244506836],[122,-40,76,6.258340835571289],[122,-40,77,6.256374835968018],[122,-40,78,6.252626419067383],[122,-40,79,6.243979454040527],[122,-39,64,6.151723384857178],[122,-39,65,6.152887344360352],[122,-39,66,6.14828634262085],[122,-39,67,6.14301872253418],[122,-39,68,6.142638206481934],[122,-39,69,6.151845455169678],[122,-39,70,6.171098709106445],[122,-39,71,6.197380065917969],[122,-39,72,6.227060317993164],[122,-39,73,6.2464518547058105],[122,-39,74,6.255016326904297],[122,-39,75,6.258291244506836],[122,-39,76,6.258340835571289],[122,-39,77,6.256374835968018],[122,-39,78,6.252626419067383],[122,-39,79,6.243979454040527],[122,-38,64,6.151723384857178],[122,-38,65,6.152887344360352],[122,-38,66,6.14828634262085],[122,-38,67,6.14301872253418],[122,-38,68,6.142638206481934],[122,-38,69,6.151845455169678],[122,-38,70,6.171098709106445],[122,-38,71,6.197380065917969],[122,-38,72,6.227060317993164],[122,-38,73,6.2464518547058105],[122,-38,74,6.255016326904297],[122,-38,75,6.258291244506836],[122,-38,76,6.258340835571289],[122,-38,77,6.256374835968018],[122,-38,78,6.252626419067383],[122,-38,79,6.243979454040527],[122,-37,64,6.151723384857178],[122,-37,65,6.152887344360352],[122,-37,66,6.14828634262085],[122,-37,67,6.14301872253418],[122,-37,68,6.142638206481934],[122,-37,69,6.151845455169678],[122,-37,70,6.171098709106445],[122,-37,71,6.197380065917969],[122,-37,72,6.227060317993164],[122,-37,73,6.2464518547058105],[122,-37,74,6.255016326904297],[122,-37,75,6.258291244506836],[122,-37,76,6.258340835571289],[122,-37,77,6.256374835968018],[122,-37,78,6.252626419067383],[122,-37,79,6.243979454040527],[122,-36,64,6.151723384857178],[122,-36,65,6.152887344360352],[122,-36,66,6.14828634262085],[122,-36,67,6.14301872253418],[122,-36,68,6.142638206481934],[122,-36,69,6.151845455169678],[122,-36,70,6.171098709106445],[122,-36,71,6.197380065917969],[122,-36,72,6.227060317993164],[122,-36,73,6.2464518547058105],[122,-36,74,6.255016326904297],[122,-36,75,6.258291244506836],[122,-36,76,6.258340835571289],[122,-36,77,6.256374835968018],[122,-36,78,6.252626419067383],[122,-36,79,6.243979454040527],[122,-35,64,6.151723384857178],[122,-35,65,6.152887344360352],[122,-35,66,6.14828634262085],[122,-35,67,6.14301872253418],[122,-35,68,6.142638206481934],[122,-35,69,6.151845455169678],[122,-35,70,6.171098709106445],[122,-35,71,6.197380065917969],[122,-35,72,6.227060317993164],[122,-35,73,6.2464518547058105],[122,-35,74,6.255016326904297],[122,-35,75,6.258291244506836],[122,-35,76,6.258340835571289],[122,-35,77,6.256374835968018],[122,-35,78,6.252626419067383],[122,-35,79,6.243979454040527],[122,-34,64,6.151723384857178],[122,-34,65,6.152887344360352],[122,-34,66,6.14828634262085],[122,-34,67,6.14301872253418],[122,-34,68,6.142638206481934],[122,-34,69,6.151845455169678],[122,-34,70,6.171098709106445],[122,-34,71,6.197380065917969],[122,-34,72,6.227060317993164],[122,-34,73,6.2464518547058105],[122,-34,74,6.255016326904297],[122,-34,75,6.258291244506836],[122,-34,76,6.258340835571289],[122,-34,77,6.256374835968018],[122,-34,78,6.252626419067383],[122,-34,79,6.243979454040527],[122,-33,64,6.151723384857178],[122,-33,65,6.152887344360352],[122,-33,66,6.14828634262085],[122,-33,67,6.14301872253418],[122,-33,68,6.142638206481934],[122,-33,69,6.151845455169678],[122,-33,70,6.171098709106445],[122,-33,71,6.197380065917969],[122,-33,72,6.227060317993164],[122,-33,73,6.2464518547058105],[122,-33,74,6.255016326904297],[122,-33,75,6.258291244506836],[122,-33,76,6.258340835571289],[122,-33,77,6.256374835968018],[122,-33,78,6.252626419067383],[122,-33,79,6.243979454040527],[122,-32,64,6.151723384857178],[122,-32,65,6.152887344360352],[122,-32,66,6.14828634262085],[122,-32,67,6.14301872253418],[122,-32,68,6.142638206481934],[122,-32,69,6.151845455169678],[122,-32,70,6.171098709106445],[122,-32,71,6.197380065917969],[122,-32,72,6.227060317993164],[122,-32,73,6.2464518547058105],[122,-32,74,6.255016326904297],[122,-32,75,6.258291244506836],[122,-32,76,6.258340835571289],[122,-32,77,6.256374835968018],[122,-32,78,6.252626419067383],[122,-32,79,6.243979454040527],[122,-31,64,6.151723384857178],[122,-31,65,6.152887344360352],[122,-31,66,6.14828634262085],[122,-31,67,6.14301872253418],[122,-31,68,6.142638206481934],[122,-31,69,6.151845455169678],[122,-31,70,6.171098709106445],[122,-31,71,6.197380065917969],[122,-31,72,6.227060317993164],[122,-31,73,6.2464518547058105],[122,-31,74,6.255016326904297],[122,-31,75,6.258291244506836],[122,-31,76,6.258340835571289],[122,-31,77,6.256374835968018],[122,-31,78,6.252626419067383],[122,-31,79,6.243979454040527],[122,-30,64,6.151723384857178],[122,-30,65,6.152887344360352],[122,-30,66,6.14828634262085],[122,-30,67,6.14301872253418],[122,-30,68,6.142638206481934],[122,-30,69,6.151845455169678],[122,-30,70,6.171098709106445],[122,-30,71,6.197380065917969],[122,-30,72,6.227060317993164],[122,-30,73,6.2464518547058105],[122,-30,74,6.255016326904297],[122,-30,75,6.258291244506836],[122,-30,76,6.258340835571289],[122,-30,77,6.256374835968018],[122,-30,78,6.252626419067383],[122,-30,79,6.243979454040527],[122,-29,64,6.151723384857178],[122,-29,65,6.152887344360352],[122,-29,66,6.14828634262085],[122,-29,67,6.14301872253418],[122,-29,68,6.142638206481934],[122,-29,69,6.151845455169678],[122,-29,70,6.171098709106445],[122,-29,71,6.197380065917969],[122,-29,72,6.227060317993164],[122,-29,73,6.2464518547058105],[122,-29,74,6.255016326904297],[122,-29,75,6.258291244506836],[122,-29,76,6.258340835571289],[122,-29,77,6.256374835968018],[122,-29,78,6.252626419067383],[122,-29,79,6.243979454040527],[122,-28,64,6.151723384857178],[122,-28,65,6.152887344360352],[122,-28,66,6.14828634262085],[122,-28,67,6.14301872253418],[122,-28,68,6.142638206481934],[122,-28,69,6.151845455169678],[122,-28,70,6.171098709106445],[122,-28,71,6.197380065917969],[122,-28,72,6.227060317993164],[122,-28,73,6.2464518547058105],[122,-28,74,6.255016326904297],[122,-28,75,6.258291244506836],[122,-28,76,6.258340835571289],[122,-28,77,6.256374835968018],[122,-28,78,6.252626419067383],[122,-28,79,6.243979454040527],[122,-27,64,6.151723384857178],[122,-27,65,6.152887344360352],[122,-27,66,6.14828634262085],[122,-27,67,6.14301872253418],[122,-27,68,6.142638206481934],[122,-27,69,6.151845455169678],[122,-27,70,6.171098709106445],[122,-27,71,6.197380065917969],[122,-27,72,6.227060317993164],[122,-27,73,6.2464518547058105],[122,-27,74,6.255016326904297],[122,-27,75,6.258291244506836],[122,-27,76,6.258340835571289],[122,-27,77,6.256374835968018],[122,-27,78,6.252626419067383],[122,-27,79,6.243979454040527],[122,-26,64,6.151723384857178],[122,-26,65,6.152887344360352],[122,-26,66,6.14828634262085],[122,-26,67,6.14301872253418],[122,-26,68,6.142638206481934],[122,-26,69,6.151845455169678],[122,-26,70,6.171098709106445],[122,-26,71,6.197380065917969],[122,-26,72,6.227060317993164],[122,-26,73,6.2464518547058105],[122,-26,74,6.255016326904297],[122,-26,75,6.258291244506836],[122,-26,76,6.258340835571289],[122,-26,77,6.256374835968018],[122,-26,78,6.252626419067383],[122,-26,79,6.243979454040527],[122,-25,64,6.151723384857178],[122,-25,65,6.152887344360352],[122,-25,66,6.14828634262085],[122,-25,67,6.14301872253418],[122,-25,68,6.142638206481934],[122,-25,69,6.151845455169678],[122,-25,70,6.171098709106445],[122,-25,71,6.197380065917969],[122,-25,72,6.227060317993164],[122,-25,73,6.2464518547058105],[122,-25,74,6.255016326904297],[122,-25,75,6.258291244506836],[122,-25,76,6.258340835571289],[122,-25,77,6.256374835968018],[122,-25,78,6.252626419067383],[122,-25,79,6.243979454040527],[122,-24,64,6.151723384857178],[122,-24,65,6.152887344360352],[122,-24,66,6.14828634262085],[122,-24,67,6.14301872253418],[122,-24,68,6.142638206481934],[122,-24,69,6.151845455169678],[122,-24,70,6.171098709106445],[122,-24,71,6.197380065917969],[122,-24,72,6.227060317993164],[122,-24,73,6.2464518547058105],[122,-24,74,6.255016326904297],[122,-24,75,6.258291244506836],[122,-24,76,6.258340835571289],[122,-24,77,6.256374835968018],[122,-24,78,6.252626419067383],[122,-24,79,6.243979454040527],[122,-23,64,6.151723384857178],[122,-23,65,6.152887344360352],[122,-23,66,6.14828634262085],[122,-23,67,6.14301872253418],[122,-23,68,6.142638206481934],[122,-23,69,6.151845455169678],[122,-23,70,6.171098709106445],[122,-23,71,6.197380065917969],[122,-23,72,6.227060317993164],[122,-23,73,6.2464518547058105],[122,-23,74,6.255016326904297],[122,-23,75,6.258291244506836],[122,-23,76,6.258340835571289],[122,-23,77,6.256374835968018],[122,-23,78,6.252626419067383],[122,-23,79,6.243979454040527],[122,-22,64,6.151723384857178],[122,-22,65,6.152887344360352],[122,-22,66,6.14828634262085],[122,-22,67,6.14301872253418],[122,-22,68,6.142638206481934],[122,-22,69,6.151845455169678],[122,-22,70,6.171098709106445],[122,-22,71,6.197380065917969],[122,-22,72,6.227060317993164],[122,-22,73,6.2464518547058105],[122,-22,74,6.255016326904297],[122,-22,75,6.258291244506836],[122,-22,76,6.258340835571289],[122,-22,77,6.256374835968018],[122,-22,78,6.252626419067383],[122,-22,79,6.243979454040527],[122,-21,64,6.151723384857178],[122,-21,65,6.152887344360352],[122,-21,66,6.14828634262085],[122,-21,67,6.14301872253418],[122,-21,68,6.142638206481934],[122,-21,69,6.151845455169678],[122,-21,70,6.171098709106445],[122,-21,71,6.197380065917969],[122,-21,72,6.227060317993164],[122,-21,73,6.2464518547058105],[122,-21,74,6.255016326904297],[122,-21,75,6.258291244506836],[122,-21,76,6.258340835571289],[122,-21,77,6.256374835968018],[122,-21,78,6.252626419067383],[122,-21,79,6.243979454040527],[122,-20,64,6.151723384857178],[122,-20,65,6.152887344360352],[122,-20,66,6.14828634262085],[122,-20,67,6.14301872253418],[122,-20,68,6.142638206481934],[122,-20,69,6.151845455169678],[122,-20,70,6.171098709106445],[122,-20,71,6.197380065917969],[122,-20,72,6.227060317993164],[122,-20,73,6.2464518547058105],[122,-20,74,6.255016326904297],[122,-20,75,6.258291244506836],[122,-20,76,6.258340835571289],[122,-20,77,6.256374835968018],[122,-20,78,6.252626419067383],[122,-20,79,6.243979454040527],[122,-19,64,6.151723384857178],[122,-19,65,6.152887344360352],[122,-19,66,6.14828634262085],[122,-19,67,6.14301872253418],[122,-19,68,6.142638206481934],[122,-19,69,6.151845455169678],[122,-19,70,6.171098709106445],[122,-19,71,6.197380065917969],[122,-19,72,6.227060317993164],[122,-19,73,6.2464518547058105],[122,-19,74,6.255016326904297],[122,-19,75,6.258291244506836],[122,-19,76,6.258340835571289],[122,-19,77,6.256374835968018],[122,-19,78,6.252626419067383],[122,-19,79,6.243979454040527],[122,-18,64,6.151723384857178],[122,-18,65,6.152887344360352],[122,-18,66,6.14828634262085],[122,-18,67,6.14301872253418],[122,-18,68,6.142638206481934],[122,-18,69,6.151845455169678],[122,-18,70,6.171098709106445],[122,-18,71,6.197380065917969],[122,-18,72,6.227060317993164],[122,-18,73,6.2464518547058105],[122,-18,74,6.255016326904297],[122,-18,75,6.258291244506836],[122,-18,76,6.258340835571289],[122,-18,77,6.256374835968018],[122,-18,78,6.252626419067383],[122,-18,79,6.243979454040527],[122,-17,64,6.151723384857178],[122,-17,65,6.152887344360352],[122,-17,66,6.14828634262085],[122,-17,67,6.14301872253418],[122,-17,68,6.142638206481934],[122,-17,69,6.151845455169678],[122,-17,70,6.171098709106445],[122,-17,71,6.197380065917969],[122,-17,72,6.227060317993164],[122,-17,73,6.2464518547058105],[122,-17,74,6.255016326904297],[122,-17,75,6.258291244506836],[122,-17,76,6.258340835571289],[122,-17,77,6.256374835968018],[122,-17,78,6.252626419067383],[122,-17,79,6.243979454040527],[122,-16,64,6.151723384857178],[122,-16,65,6.152887344360352],[122,-16,66,6.14828634262085],[122,-16,67,6.14301872253418],[122,-16,68,6.142638206481934],[122,-16,69,6.151845455169678],[122,-16,70,6.171098709106445],[122,-16,71,6.197380065917969],[122,-16,72,6.227060317993164],[122,-16,73,6.2464518547058105],[122,-16,74,6.255016326904297],[122,-16,75,6.258291244506836],[122,-16,76,6.258340835571289],[122,-16,77,6.256374835968018],[122,-16,78,6.252626419067383],[122,-16,79,6.243979454040527],[122,-15,64,6.151723384857178],[122,-15,65,6.152887344360352],[122,-15,66,6.14828634262085],[122,-15,67,6.14301872253418],[122,-15,68,6.142638206481934],[122,-15,69,6.151845455169678],[122,-15,70,6.171098709106445],[122,-15,71,6.197380065917969],[122,-15,72,6.227060317993164],[122,-15,73,6.2464518547058105],[122,-15,74,6.255016326904297],[122,-15,75,6.258291244506836],[122,-15,76,6.258340835571289],[122,-15,77,6.256374835968018],[122,-15,78,6.252626419067383],[122,-15,79,6.243979454040527],[122,-14,64,6.151723384857178],[122,-14,65,6.152887344360352],[122,-14,66,6.14828634262085],[122,-14,67,6.14301872253418],[122,-14,68,6.142638206481934],[122,-14,69,6.151845455169678],[122,-14,70,6.171098709106445],[122,-14,71,6.197380065917969],[122,-14,72,6.227060317993164],[122,-14,73,6.2464518547058105],[122,-14,74,6.255016326904297],[122,-14,75,6.258291244506836],[122,-14,76,6.258340835571289],[122,-14,77,6.256374835968018],[122,-14,78,6.252626419067383],[122,-14,79,6.243979454040527],[122,-13,64,6.151723384857178],[122,-13,65,6.152887344360352],[122,-13,66,6.14828634262085],[122,-13,67,6.14301872253418],[122,-13,68,6.142638206481934],[122,-13,69,6.151845455169678],[122,-13,70,6.171098709106445],[122,-13,71,6.197380065917969],[122,-13,72,6.227060317993164],[122,-13,73,6.2464518547058105],[122,-13,74,6.255016326904297],[122,-13,75,6.258291244506836],[122,-13,76,6.258340835571289],[122,-13,77,6.256374835968018],[122,-13,78,6.252626419067383],[122,-13,79,6.243979454040527],[122,-12,64,6.151723384857178],[122,-12,65,6.152887344360352],[122,-12,66,6.14828634262085],[122,-12,67,6.14301872253418],[122,-12,68,6.142638206481934],[122,-12,69,6.151845455169678],[122,-12,70,6.171098709106445],[122,-12,71,6.197380065917969],[122,-12,72,6.227060317993164],[122,-12,73,6.2464518547058105],[122,-12,74,6.255016326904297],[122,-12,75,6.258291244506836],[122,-12,76,6.258340835571289],[122,-12,77,6.256374835968018],[122,-12,78,6.252626419067383],[122,-12,79,6.243979454040527],[122,-11,64,6.151723384857178],[122,-11,65,6.152887344360352],[122,-11,66,6.14828634262085],[122,-11,67,6.14301872253418],[122,-11,68,6.142638206481934],[122,-11,69,6.151845455169678],[122,-11,70,6.171098709106445],[122,-11,71,6.197380065917969],[122,-11,72,6.227060317993164],[122,-11,73,6.2464518547058105],[122,-11,74,6.255016326904297],[122,-11,75,6.258291244506836],[122,-11,76,6.258340835571289],[122,-11,77,6.256374835968018],[122,-11,78,6.252626419067383],[122,-11,79,6.243979454040527],[122,-10,64,6.151723384857178],[122,-10,65,6.152887344360352],[122,-10,66,6.14828634262085],[122,-10,67,6.14301872253418],[122,-10,68,6.142638206481934],[122,-10,69,6.151845455169678],[122,-10,70,6.171098709106445],[122,-10,71,6.197380065917969],[122,-10,72,6.227060317993164],[122,-10,73,6.2464518547058105],[122,-10,74,6.255016326904297],[122,-10,75,6.258291244506836],[122,-10,76,6.258340835571289],[122,-10,77,6.256374835968018],[122,-10,78,6.252626419067383],[122,-10,79,6.243979454040527],[122,-9,64,6.151723384857178],[122,-9,65,6.152887344360352],[122,-9,66,6.14828634262085],[122,-9,67,6.14301872253418],[122,-9,68,6.142638206481934],[122,-9,69,6.151845455169678],[122,-9,70,6.171098709106445],[122,-9,71,6.197380065917969],[122,-9,72,6.227060317993164],[122,-9,73,6.2464518547058105],[122,-9,74,6.255016326904297],[122,-9,75,6.258291244506836],[122,-9,76,6.258340835571289],[122,-9,77,6.256374835968018],[122,-9,78,6.252626419067383],[122,-9,79,6.243979454040527],[122,-8,64,6.151723384857178],[122,-8,65,6.152887344360352],[122,-8,66,6.14828634262085],[122,-8,67,6.14301872253418],[122,-8,68,6.142638206481934],[122,-8,69,6.151845455169678],[122,-8,70,6.171098709106445],[122,-8,71,6.197380065917969],[122,-8,72,6.227060317993164],[122,-8,73,6.2464518547058105],[122,-8,74,6.255016326904297],[122,-8,75,6.258291244506836],[122,-8,76,6.258340835571289],[122,-8,77,6.256374835968018],[122,-8,78,6.252626419067383],[122,-8,79,6.243979454040527],[122,-7,64,6.151723384857178],[122,-7,65,6.152887344360352],[122,-7,66,6.14828634262085],[122,-7,67,6.14301872253418],[122,-7,68,6.142638206481934],[122,-7,69,6.151845455169678],[122,-7,70,6.171098709106445],[122,-7,71,6.197380065917969],[122,-7,72,6.227060317993164],[122,-7,73,6.2464518547058105],[122,-7,74,6.255016326904297],[122,-7,75,6.258291244506836],[122,-7,76,6.258340835571289],[122,-7,77,6.256374835968018],[122,-7,78,6.252626419067383],[122,-7,79,6.243979454040527],[122,-6,64,6.151723384857178],[122,-6,65,6.152887344360352],[122,-6,66,6.14828634262085],[122,-6,67,6.14301872253418],[122,-6,68,6.142638206481934],[122,-6,69,6.151845455169678],[122,-6,70,6.171098709106445],[122,-6,71,6.197380065917969],[122,-6,72,6.227060317993164],[122,-6,73,6.2464518547058105],[122,-6,74,6.255016326904297],[122,-6,75,6.258291244506836],[122,-6,76,6.258340835571289],[122,-6,77,6.256374835968018],[122,-6,78,6.252626419067383],[122,-6,79,6.243979454040527],[122,-5,64,6.151723384857178],[122,-5,65,6.152887344360352],[122,-5,66,6.14828634262085],[122,-5,67,6.14301872253418],[122,-5,68,6.142638206481934],[122,-5,69,6.151845455169678],[122,-5,70,6.171098709106445],[122,-5,71,6.197380065917969],[122,-5,72,6.227060317993164],[122,-5,73,6.2464518547058105],[122,-5,74,6.255016326904297],[122,-5,75,6.258291244506836],[122,-5,76,6.258340835571289],[122,-5,77,6.256374835968018],[122,-5,78,6.252626419067383],[122,-5,79,6.243979454040527],[122,-4,64,6.151723384857178],[122,-4,65,6.152887344360352],[122,-4,66,6.14828634262085],[122,-4,67,6.14301872253418],[122,-4,68,6.142638206481934],[122,-4,69,6.151845455169678],[122,-4,70,6.171098709106445],[122,-4,71,6.197380065917969],[122,-4,72,6.227060317993164],[122,-4,73,6.2464518547058105],[122,-4,74,6.255016326904297],[122,-4,75,6.258291244506836],[122,-4,76,6.258340835571289],[122,-4,77,6.256374835968018],[122,-4,78,6.252626419067383],[122,-4,79,6.243979454040527],[122,-3,64,6.151723384857178],[122,-3,65,6.152887344360352],[122,-3,66,6.14828634262085],[122,-3,67,6.14301872253418],[122,-3,68,6.142638206481934],[122,-3,69,6.151845455169678],[122,-3,70,6.171098709106445],[122,-3,71,6.197380065917969],[122,-3,72,6.227060317993164],[122,-3,73,6.2464518547058105],[122,-3,74,6.255016326904297],[122,-3,75,6.258291244506836],[122,-3,76,6.258340835571289],[122,-3,77,6.256374835968018],[122,-3,78,6.252626419067383],[122,-3,79,6.243979454040527],[122,-2,64,6.151723384857178],[122,-2,65,6.152887344360352],[122,-2,66,6.14828634262085],[122,-2,67,6.14301872253418],[122,-2,68,6.142638206481934],[122,-2,69,6.151845455169678],[122,-2,70,6.171098709106445],[122,-2,71,6.197380065917969],[122,-2,72,6.227060317993164],[122,-2,73,6.2464518547058105],[122,-2,74,6.255016326904297],[122,-2,75,6.258291244506836],[122,-2,76,6.258340835571289],[122,-2,77,6.256374835968018],[122,-2,78,6.252626419067383],[122,-2,79,6.243979454040527],[122,-1,64,6.151723384857178],[122,-1,65,6.152887344360352],[122,-1,66,6.14828634262085],[122,-1,67,6.14301872253418],[122,-1,68,6.142638206481934],[122,-1,69,6.151845455169678],[122,-1,70,6.171098709106445],[122,-1,71,6.197380065917969],[122,-1,72,6.227060317993164],[122,-1,73,6.2464518547058105],[122,-1,74,6.255016326904297],[122,-1,75,6.258291244506836],[122,-1,76,6.258340835571289],[122,-1,77,6.256374835968018],[122,-1,78,6.252626419067383],[122,-1,79,6.243979454040527],[122,0,64,6.151723384857178],[122,0,65,6.152887344360352],[122,0,66,6.14828634262085],[122,0,67,6.14301872253418],[122,0,68,6.142638206481934],[122,0,69,6.151845455169678],[122,0,70,6.171098709106445],[122,0,71,6.197380065917969],[122,0,72,6.227060317993164],[122,0,73,6.2464518547058105],[122,0,74,6.255016326904297],[122,0,75,6.258291244506836],[122,0,76,6.258340835571289],[122,0,77,6.256374835968018],[122,0,78,6.252626419067383],[122,0,79,6.243979454040527],[122,1,64,6.151723384857178],[122,1,65,6.152887344360352],[122,1,66,6.14828634262085],[122,1,67,6.14301872253418],[122,1,68,6.142638206481934],[122,1,69,6.151845455169678],[122,1,70,6.171098709106445],[122,1,71,6.197380065917969],[122,1,72,6.227060317993164],[122,1,73,6.2464518547058105],[122,1,74,6.255016326904297],[122,1,75,6.258291244506836],[122,1,76,6.258340835571289],[122,1,77,6.256374835968018],[122,1,78,6.252626419067383],[122,1,79,6.243979454040527],[122,2,64,6.151723384857178],[122,2,65,6.152887344360352],[122,2,66,6.14828634262085],[122,2,67,6.14301872253418],[122,2,68,6.142638206481934],[122,2,69,6.151845455169678],[122,2,70,6.171098709106445],[122,2,71,6.197380065917969],[122,2,72,6.227060317993164],[122,2,73,6.2464518547058105],[122,2,74,6.255016326904297],[122,2,75,6.258291244506836],[122,2,76,6.258340835571289],[122,2,77,6.256374835968018],[122,2,78,6.252626419067383],[122,2,79,6.243979454040527],[122,3,64,6.151723384857178],[122,3,65,6.152887344360352],[122,3,66,6.14828634262085],[122,3,67,6.14301872253418],[122,3,68,6.142638206481934],[122,3,69,6.151845455169678],[122,3,70,6.171098709106445],[122,3,71,6.197380065917969],[122,3,72,6.227060317993164],[122,3,73,6.2464518547058105],[122,3,74,6.255016326904297],[122,3,75,6.258291244506836],[122,3,76,6.258340835571289],[122,3,77,6.256374835968018],[122,3,78,6.252626419067383],[122,3,79,6.243979454040527],[122,4,64,6.151723384857178],[122,4,65,6.152887344360352],[122,4,66,6.14828634262085],[122,4,67,6.14301872253418],[122,4,68,6.142638206481934],[122,4,69,6.151845455169678],[122,4,70,6.171098709106445],[122,4,71,6.197380065917969],[122,4,72,6.227060317993164],[122,4,73,6.2464518547058105],[122,4,74,6.255016326904297],[122,4,75,6.258291244506836],[122,4,76,6.258340835571289],[122,4,77,6.256374835968018],[122,4,78,6.252626419067383],[122,4,79,6.243979454040527],[122,5,64,6.151723384857178],[122,5,65,6.152887344360352],[122,5,66,6.14828634262085],[122,5,67,6.14301872253418],[122,5,68,6.142638206481934],[122,5,69,6.151845455169678],[122,5,70,6.171098709106445],[122,5,71,6.197380065917969],[122,5,72,6.227060317993164],[122,5,73,6.2464518547058105],[122,5,74,6.255016326904297],[122,5,75,6.258291244506836],[122,5,76,6.258340835571289],[122,5,77,6.256374835968018],[122,5,78,6.252626419067383],[122,5,79,6.243979454040527],[122,6,64,6.151723384857178],[122,6,65,6.152887344360352],[122,6,66,6.14828634262085],[122,6,67,6.14301872253418],[122,6,68,6.142638206481934],[122,6,69,6.151845455169678],[122,6,70,6.171098709106445],[122,6,71,6.197380065917969],[122,6,72,6.227060317993164],[122,6,73,6.2464518547058105],[122,6,74,6.255016326904297],[122,6,75,6.258291244506836],[122,6,76,6.258340835571289],[122,6,77,6.256374835968018],[122,6,78,6.252626419067383],[122,6,79,6.243979454040527],[122,7,64,6.151723384857178],[122,7,65,6.152887344360352],[122,7,66,6.14828634262085],[122,7,67,6.14301872253418],[122,7,68,6.142638206481934],[122,7,69,6.151845455169678],[122,7,70,6.171098709106445],[122,7,71,6.197380065917969],[122,7,72,6.227060317993164],[122,7,73,6.2464518547058105],[122,7,74,6.255016326904297],[122,7,75,6.258291244506836],[122,7,76,6.258340835571289],[122,7,77,6.256374835968018],[122,7,78,6.252626419067383],[122,7,79,6.243979454040527],[122,8,64,6.151723384857178],[122,8,65,6.152887344360352],[122,8,66,6.14828634262085],[122,8,67,6.14301872253418],[122,8,68,6.142638206481934],[122,8,69,6.151845455169678],[122,8,70,6.171098709106445],[122,8,71,6.197380065917969],[122,8,72,6.227060317993164],[122,8,73,6.2464518547058105],[122,8,74,6.255016326904297],[122,8,75,6.258291244506836],[122,8,76,6.258340835571289],[122,8,77,6.256374835968018],[122,8,78,6.252626419067383],[122,8,79,6.243979454040527],[122,9,64,6.151723384857178],[122,9,65,6.152887344360352],[122,9,66,6.14828634262085],[122,9,67,6.14301872253418],[122,9,68,6.142638206481934],[122,9,69,6.151845455169678],[122,9,70,6.171098709106445],[122,9,71,6.197380065917969],[122,9,72,6.227060317993164],[122,9,73,6.2464518547058105],[122,9,74,6.255016326904297],[122,9,75,6.258291244506836],[122,9,76,6.258340835571289],[122,9,77,6.256374835968018],[122,9,78,6.252626419067383],[122,9,79,6.243979454040527],[122,10,64,6.151723384857178],[122,10,65,6.152887344360352],[122,10,66,6.14828634262085],[122,10,67,6.14301872253418],[122,10,68,6.142638206481934],[122,10,69,6.151845455169678],[122,10,70,6.171098709106445],[122,10,71,6.197380065917969],[122,10,72,6.227060317993164],[122,10,73,6.2464518547058105],[122,10,74,6.255016326904297],[122,10,75,6.258291244506836],[122,10,76,6.258340835571289],[122,10,77,6.256374835968018],[122,10,78,6.252626419067383],[122,10,79,6.243979454040527],[122,11,64,6.151723384857178],[122,11,65,6.152887344360352],[122,11,66,6.14828634262085],[122,11,67,6.14301872253418],[122,11,68,6.142638206481934],[122,11,69,6.151845455169678],[122,11,70,6.171098709106445],[122,11,71,6.197380065917969],[122,11,72,6.227060317993164],[122,11,73,6.2464518547058105],[122,11,74,6.255016326904297],[122,11,75,6.258291244506836],[122,11,76,6.258340835571289],[122,11,77,6.256374835968018],[122,11,78,6.252626419067383],[122,11,79,6.243979454040527],[122,12,64,6.151723384857178],[122,12,65,6.152887344360352],[122,12,66,6.14828634262085],[122,12,67,6.14301872253418],[122,12,68,6.142638206481934],[122,12,69,6.151845455169678],[122,12,70,6.171098709106445],[122,12,71,6.197380065917969],[122,12,72,6.227060317993164],[122,12,73,6.2464518547058105],[122,12,74,6.255016326904297],[122,12,75,6.258291244506836],[122,12,76,6.258340835571289],[122,12,77,6.256374835968018],[122,12,78,6.252626419067383],[122,12,79,6.243979454040527],[122,13,64,6.151723384857178],[122,13,65,6.152887344360352],[122,13,66,6.14828634262085],[122,13,67,6.14301872253418],[122,13,68,6.142638206481934],[122,13,69,6.151845455169678],[122,13,70,6.171098709106445],[122,13,71,6.197380065917969],[122,13,72,6.227060317993164],[122,13,73,6.2464518547058105],[122,13,74,6.255016326904297],[122,13,75,6.258291244506836],[122,13,76,6.258340835571289],[122,13,77,6.256374835968018],[122,13,78,6.252626419067383],[122,13,79,6.243979454040527],[122,14,64,6.151723384857178],[122,14,65,6.152887344360352],[122,14,66,6.14828634262085],[122,14,67,6.14301872253418],[122,14,68,6.142638206481934],[122,14,69,6.151845455169678],[122,14,70,6.171098709106445],[122,14,71,6.197380065917969],[122,14,72,6.227060317993164],[122,14,73,6.2464518547058105],[122,14,74,6.255016326904297],[122,14,75,6.258291244506836],[122,14,76,6.258340835571289],[122,14,77,6.256374835968018],[122,14,78,6.252626419067383],[122,14,79,6.243979454040527],[122,15,64,6.151723384857178],[122,15,65,6.152887344360352],[122,15,66,6.14828634262085],[122,15,67,6.14301872253418],[122,15,68,6.142638206481934],[122,15,69,6.151845455169678],[122,15,70,6.171098709106445],[122,15,71,6.197380065917969],[122,15,72,6.227060317993164],[122,15,73,6.2464518547058105],[122,15,74,6.255016326904297],[122,15,75,6.258291244506836],[122,15,76,6.258340835571289],[122,15,77,6.256374835968018],[122,15,78,6.252626419067383],[122,15,79,6.243979454040527],[122,16,64,6.151723384857178],[122,16,65,6.152887344360352],[122,16,66,6.14828634262085],[122,16,67,6.14301872253418],[122,16,68,6.142638206481934],[122,16,69,6.151845455169678],[122,16,70,6.171098709106445],[122,16,71,6.197380065917969],[122,16,72,6.227060317993164],[122,16,73,6.2464518547058105],[122,16,74,6.255016326904297],[122,16,75,6.258291244506836],[122,16,76,6.258340835571289],[122,16,77,6.256374835968018],[122,16,78,6.252626419067383],[122,16,79,6.243979454040527],[122,17,64,6.151723384857178],[122,17,65,6.152887344360352],[122,17,66,6.14828634262085],[122,17,67,6.14301872253418],[122,17,68,6.142638206481934],[122,17,69,6.151845455169678],[122,17,70,6.171098709106445],[122,17,71,6.197380065917969],[122,17,72,6.227060317993164],[122,17,73,6.2464518547058105],[122,17,74,6.255016326904297],[122,17,75,6.258291244506836],[122,17,76,6.258340835571289],[122,17,77,6.256374835968018],[122,17,78,6.252626419067383],[122,17,79,6.243979454040527],[122,18,64,6.151723384857178],[122,18,65,6.152887344360352],[122,18,66,6.14828634262085],[122,18,67,6.14301872253418],[122,18,68,6.142638206481934],[122,18,69,6.151845455169678],[122,18,70,6.171098709106445],[122,18,71,6.197380065917969],[122,18,72,6.227060317993164],[122,18,73,6.2464518547058105],[122,18,74,6.255016326904297],[122,18,75,6.258291244506836],[122,18,76,6.258340835571289],[122,18,77,6.256374835968018],[122,18,78,6.252626419067383],[122,18,79,6.243979454040527],[122,19,64,6.151723384857178],[122,19,65,6.152887344360352],[122,19,66,6.14828634262085],[122,19,67,6.14301872253418],[122,19,68,6.142638206481934],[122,19,69,6.151845455169678],[122,19,70,6.171098709106445],[122,19,71,6.197380065917969],[122,19,72,6.227060317993164],[122,19,73,6.2464518547058105],[122,19,74,6.255016326904297],[122,19,75,6.258291244506836],[122,19,76,6.258340835571289],[122,19,77,6.256374835968018],[122,19,78,6.252626419067383],[122,19,79,6.243979454040527],[122,20,64,6.151723384857178],[122,20,65,6.152887344360352],[122,20,66,6.14828634262085],[122,20,67,6.14301872253418],[122,20,68,6.142638206481934],[122,20,69,6.151845455169678],[122,20,70,6.171098709106445],[122,20,71,6.197380065917969],[122,20,72,6.227060317993164],[122,20,73,6.2464518547058105],[122,20,74,6.255016326904297],[122,20,75,6.258291244506836],[122,20,76,6.258340835571289],[122,20,77,6.256374835968018],[122,20,78,6.252626419067383],[122,20,79,6.243979454040527],[122,21,64,6.151723384857178],[122,21,65,6.152887344360352],[122,21,66,6.14828634262085],[122,21,67,6.14301872253418],[122,21,68,6.142638206481934],[122,21,69,6.151845455169678],[122,21,70,6.171098709106445],[122,21,71,6.197380065917969],[122,21,72,6.227060317993164],[122,21,73,6.2464518547058105],[122,21,74,6.255016326904297],[122,21,75,6.258291244506836],[122,21,76,6.258340835571289],[122,21,77,6.256374835968018],[122,21,78,6.252626419067383],[122,21,79,6.243979454040527],[122,22,64,6.151723384857178],[122,22,65,6.152887344360352],[122,22,66,6.14828634262085],[122,22,67,6.14301872253418],[122,22,68,6.142638206481934],[122,22,69,6.151845455169678],[122,22,70,6.171098709106445],[122,22,71,6.197380065917969],[122,22,72,6.227060317993164],[122,22,73,6.2464518547058105],[122,22,74,6.255016326904297],[122,22,75,6.258291244506836],[122,22,76,6.258340835571289],[122,22,77,6.256374835968018],[122,22,78,6.252626419067383],[122,22,79,6.243979454040527],[122,23,64,6.151723384857178],[122,23,65,6.152887344360352],[122,23,66,6.14828634262085],[122,23,67,6.14301872253418],[122,23,68,6.142638206481934],[122,23,69,6.151845455169678],[122,23,70,6.171098709106445],[122,23,71,6.197380065917969],[122,23,72,6.227060317993164],[122,23,73,6.2464518547058105],[122,23,74,6.255016326904297],[122,23,75,6.258291244506836],[122,23,76,6.258340835571289],[122,23,77,6.256374835968018],[122,23,78,6.252626419067383],[122,23,79,6.243979454040527],[122,24,64,6.151723384857178],[122,24,65,6.152887344360352],[122,24,66,6.14828634262085],[122,24,67,6.14301872253418],[122,24,68,6.142638206481934],[122,24,69,6.151845455169678],[122,24,70,6.171098709106445],[122,24,71,6.197380065917969],[122,24,72,6.227060317993164],[122,24,73,6.2464518547058105],[122,24,74,6.255016326904297],[122,24,75,6.258291244506836],[122,24,76,6.258340835571289],[122,24,77,6.256374835968018],[122,24,78,6.252626419067383],[122,24,79,6.243979454040527],[122,25,64,6.151723384857178],[122,25,65,6.152887344360352],[122,25,66,6.14828634262085],[122,25,67,6.14301872253418],[122,25,68,6.142638206481934],[122,25,69,6.151845455169678],[122,25,70,6.171098709106445],[122,25,71,6.197380065917969],[122,25,72,6.227060317993164],[122,25,73,6.2464518547058105],[122,25,74,6.255016326904297],[122,25,75,6.258291244506836],[122,25,76,6.258340835571289],[122,25,77,6.256374835968018],[122,25,78,6.252626419067383],[122,25,79,6.243979454040527],[122,26,64,6.151723384857178],[122,26,65,6.152887344360352],[122,26,66,6.14828634262085],[122,26,67,6.14301872253418],[122,26,68,6.142638206481934],[122,26,69,6.151845455169678],[122,26,70,6.171098709106445],[122,26,71,6.197380065917969],[122,26,72,6.227060317993164],[122,26,73,6.2464518547058105],[122,26,74,6.255016326904297],[122,26,75,6.258291244506836],[122,26,76,6.258340835571289],[122,26,77,6.256374835968018],[122,26,78,6.252626419067383],[122,26,79,6.243979454040527],[122,27,64,6.151723384857178],[122,27,65,6.152887344360352],[122,27,66,6.14828634262085],[122,27,67,6.14301872253418],[122,27,68,6.142638206481934],[122,27,69,6.151845455169678],[122,27,70,6.171098709106445],[122,27,71,6.197380065917969],[122,27,72,6.227060317993164],[122,27,73,6.2464518547058105],[122,27,74,6.255016326904297],[122,27,75,6.258291244506836],[122,27,76,6.258340835571289],[122,27,77,6.256374835968018],[122,27,78,6.252626419067383],[122,27,79,6.243979454040527],[122,28,64,6.151723384857178],[122,28,65,6.152887344360352],[122,28,66,6.14828634262085],[122,28,67,6.14301872253418],[122,28,68,6.142638206481934],[122,28,69,6.151845455169678],[122,28,70,6.171098709106445],[122,28,71,6.197380065917969],[122,28,72,6.227060317993164],[122,28,73,6.2464518547058105],[122,28,74,6.255016326904297],[122,28,75,6.258291244506836],[122,28,76,6.258340835571289],[122,28,77,6.256374835968018],[122,28,78,6.252626419067383],[122,28,79,6.243979454040527],[122,29,64,6.151723384857178],[122,29,65,6.152887344360352],[122,29,66,6.14828634262085],[122,29,67,6.14301872253418],[122,29,68,6.142638206481934],[122,29,69,6.151845455169678],[122,29,70,6.171098709106445],[122,29,71,6.197380065917969],[122,29,72,6.227060317993164],[122,29,73,6.2464518547058105],[122,29,74,6.255016326904297],[122,29,75,6.258291244506836],[122,29,76,6.258340835571289],[122,29,77,6.256374835968018],[122,29,78,6.252626419067383],[122,29,79,6.243979454040527],[122,30,64,6.151723384857178],[122,30,65,6.152887344360352],[122,30,66,6.14828634262085],[122,30,67,6.14301872253418],[122,30,68,6.142638206481934],[122,30,69,6.151845455169678],[122,30,70,6.171098709106445],[122,30,71,6.197380065917969],[122,30,72,6.227060317993164],[122,30,73,6.2464518547058105],[122,30,74,6.255016326904297],[122,30,75,6.258291244506836],[122,30,76,6.258340835571289],[122,30,77,6.256374835968018],[122,30,78,6.252626419067383],[122,30,79,6.243979454040527],[122,31,64,6.151723384857178],[122,31,65,6.152887344360352],[122,31,66,6.14828634262085],[122,31,67,6.14301872253418],[122,31,68,6.142638206481934],[122,31,69,6.151845455169678],[122,31,70,6.171098709106445],[122,31,71,6.197380065917969],[122,31,72,6.227060317993164],[122,31,73,6.2464518547058105],[122,31,74,6.255016326904297],[122,31,75,6.258291244506836],[122,31,76,6.258340835571289],[122,31,77,6.256374835968018],[122,31,78,6.252626419067383],[122,31,79,6.243979454040527],[122,32,64,6.151723384857178],[122,32,65,6.152887344360352],[122,32,66,6.14828634262085],[122,32,67,6.14301872253418],[122,32,68,6.142638206481934],[122,32,69,6.151845455169678],[122,32,70,6.171098709106445],[122,32,71,6.197380065917969],[122,32,72,6.227060317993164],[122,32,73,6.2464518547058105],[122,32,74,6.255016326904297],[122,32,75,6.258291244506836],[122,32,76,6.258340835571289],[122,32,77,6.256374835968018],[122,32,78,6.252626419067383],[122,32,79,6.243979454040527],[122,33,64,6.151723384857178],[122,33,65,6.152887344360352],[122,33,66,6.14828634262085],[122,33,67,6.14301872253418],[122,33,68,6.142638206481934],[122,33,69,6.151845455169678],[122,33,70,6.171098709106445],[122,33,71,6.197380065917969],[122,33,72,6.227060317993164],[122,33,73,6.2464518547058105],[122,33,74,6.255016326904297],[122,33,75,6.258291244506836],[122,33,76,6.258340835571289],[122,33,77,6.256374835968018],[122,33,78,6.252626419067383],[122,33,79,6.243979454040527],[122,34,64,6.151723384857178],[122,34,65,6.152887344360352],[122,34,66,6.14828634262085],[122,34,67,6.14301872253418],[122,34,68,6.142638206481934],[122,34,69,6.151845455169678],[122,34,70,6.171098709106445],[122,34,71,6.197380065917969],[122,34,72,6.227060317993164],[122,34,73,6.2464518547058105],[122,34,74,6.255016326904297],[122,34,75,6.258291244506836],[122,34,76,6.258340835571289],[122,34,77,6.256374835968018],[122,34,78,6.252626419067383],[122,34,79,6.243979454040527],[122,35,64,6.151723384857178],[122,35,65,6.152887344360352],[122,35,66,6.14828634262085],[122,35,67,6.14301872253418],[122,35,68,6.142638206481934],[122,35,69,6.151845455169678],[122,35,70,6.171098709106445],[122,35,71,6.197380065917969],[122,35,72,6.227060317993164],[122,35,73,6.2464518547058105],[122,35,74,6.255016326904297],[122,35,75,6.258291244506836],[122,35,76,6.258340835571289],[122,35,77,6.256374835968018],[122,35,78,6.252626419067383],[122,35,79,6.243979454040527],[122,36,64,6.151723384857178],[122,36,65,6.152887344360352],[122,36,66,6.14828634262085],[122,36,67,6.14301872253418],[122,36,68,6.142638206481934],[122,36,69,6.151845455169678],[122,36,70,6.171098709106445],[122,36,71,6.197380065917969],[122,36,72,6.227060317993164],[122,36,73,6.2464518547058105],[122,36,74,6.255016326904297],[122,36,75,6.258291244506836],[122,36,76,6.258340835571289],[122,36,77,6.256374835968018],[122,36,78,6.252626419067383],[122,36,79,6.243979454040527],[122,37,64,6.151723384857178],[122,37,65,6.152887344360352],[122,37,66,6.14828634262085],[122,37,67,6.14301872253418],[122,37,68,6.142638206481934],[122,37,69,6.151845455169678],[122,37,70,6.171098709106445],[122,37,71,6.197380065917969],[122,37,72,6.227060317993164],[122,37,73,6.2464518547058105],[122,37,74,6.255016326904297],[122,37,75,6.258291244506836],[122,37,76,6.258340835571289],[122,37,77,6.256374835968018],[122,37,78,6.252626419067383],[122,37,79,6.243979454040527],[122,38,64,6.151723384857178],[122,38,65,6.152887344360352],[122,38,66,6.14828634262085],[122,38,67,6.14301872253418],[122,38,68,6.142638206481934],[122,38,69,6.151845455169678],[122,38,70,6.171098709106445],[122,38,71,6.197380065917969],[122,38,72,6.227060317993164],[122,38,73,6.2464518547058105],[122,38,74,6.255016326904297],[122,38,75,6.258291244506836],[122,38,76,6.258340835571289],[122,38,77,6.256374835968018],[122,38,78,6.252626419067383],[122,38,79,6.243979454040527],[122,39,64,6.151723384857178],[122,39,65,6.152887344360352],[122,39,66,6.14828634262085],[122,39,67,6.14301872253418],[122,39,68,6.142638206481934],[122,39,69,6.151845455169678],[122,39,70,6.171098709106445],[122,39,71,6.197380065917969],[122,39,72,6.227060317993164],[122,39,73,6.2464518547058105],[122,39,74,6.255016326904297],[122,39,75,6.258291244506836],[122,39,76,6.258340835571289],[122,39,77,6.256374835968018],[122,39,78,6.252626419067383],[122,39,79,6.243979454040527],[122,40,64,6.151723384857178],[122,40,65,6.152887344360352],[122,40,66,6.14828634262085],[122,40,67,6.14301872253418],[122,40,68,6.142638206481934],[122,40,69,6.151845455169678],[122,40,70,6.171098709106445],[122,40,71,6.197380065917969],[122,40,72,6.227060317993164],[122,40,73,6.2464518547058105],[122,40,74,6.255016326904297],[122,40,75,6.258291244506836],[122,40,76,6.258340835571289],[122,40,77,6.256374835968018],[122,40,78,6.252626419067383],[122,40,79,6.243979454040527],[122,41,64,6.151723384857178],[122,41,65,6.152887344360352],[122,41,66,6.14828634262085],[122,41,67,6.14301872253418],[122,41,68,6.142638206481934],[122,41,69,6.151845455169678],[122,41,70,6.171098709106445],[122,41,71,6.197380065917969],[122,41,72,6.227060317993164],[122,41,73,6.2464518547058105],[122,41,74,6.255016326904297],[122,41,75,6.258291244506836],[122,41,76,6.258340835571289],[122,41,77,6.256374835968018],[122,41,78,6.252626419067383],[122,41,79,6.243979454040527],[122,42,64,6.151723384857178],[122,42,65,6.152887344360352],[122,42,66,6.14828634262085],[122,42,67,6.14301872253418],[122,42,68,6.142638206481934],[122,42,69,6.151845455169678],[122,42,70,6.171098709106445],[122,42,71,6.197380065917969],[122,42,72,6.227060317993164],[122,42,73,6.2464518547058105],[122,42,74,6.255016326904297],[122,42,75,6.258291244506836],[122,42,76,6.258340835571289],[122,42,77,6.256374835968018],[122,42,78,6.252626419067383],[122,42,79,6.243979454040527],[122,43,64,6.151723384857178],[122,43,65,6.152887344360352],[122,43,66,6.14828634262085],[122,43,67,6.14301872253418],[122,43,68,6.142638206481934],[122,43,69,6.151845455169678],[122,43,70,6.171098709106445],[122,43,71,6.197380065917969],[122,43,72,6.227060317993164],[122,43,73,6.2464518547058105],[122,43,74,6.255016326904297],[122,43,75,6.258291244506836],[122,43,76,6.258340835571289],[122,43,77,6.256374835968018],[122,43,78,6.252626419067383],[122,43,79,6.243979454040527],[122,44,64,6.151723384857178],[122,44,65,6.152887344360352],[122,44,66,6.14828634262085],[122,44,67,6.14301872253418],[122,44,68,6.142638206481934],[122,44,69,6.151845455169678],[122,44,70,6.171098709106445],[122,44,71,6.197380065917969],[122,44,72,6.227060317993164],[122,44,73,6.2464518547058105],[122,44,74,6.255016326904297],[122,44,75,6.258291244506836],[122,44,76,6.258340835571289],[122,44,77,6.256374835968018],[122,44,78,6.252626419067383],[122,44,79,6.243979454040527],[122,45,64,6.151723384857178],[122,45,65,6.152887344360352],[122,45,66,6.14828634262085],[122,45,67,6.14301872253418],[122,45,68,6.142638206481934],[122,45,69,6.151845455169678],[122,45,70,6.171098709106445],[122,45,71,6.197380065917969],[122,45,72,6.227060317993164],[122,45,73,6.2464518547058105],[122,45,74,6.255016326904297],[122,45,75,6.258291244506836],[122,45,76,6.258340835571289],[122,45,77,6.256374835968018],[122,45,78,6.252626419067383],[122,45,79,6.243979454040527],[122,46,64,6.151723384857178],[122,46,65,6.152887344360352],[122,46,66,6.14828634262085],[122,46,67,6.14301872253418],[122,46,68,6.142638206481934],[122,46,69,6.151845455169678],[122,46,70,6.171098709106445],[122,46,71,6.197380065917969],[122,46,72,6.227060317993164],[122,46,73,6.2464518547058105],[122,46,74,6.255016326904297],[122,46,75,6.258291244506836],[122,46,76,6.258340835571289],[122,46,77,6.256374835968018],[122,46,78,6.252626419067383],[122,46,79,6.243979454040527],[122,47,64,6.151723384857178],[122,47,65,6.152887344360352],[122,47,66,6.14828634262085],[122,47,67,6.14301872253418],[122,47,68,6.142638206481934],[122,47,69,6.151845455169678],[122,47,70,6.171098709106445],[122,47,71,6.197380065917969],[122,47,72,6.227060317993164],[122,47,73,6.2464518547058105],[122,47,74,6.255016326904297],[122,47,75,6.258291244506836],[122,47,76,6.258340835571289],[122,47,77,6.256374835968018],[122,47,78,6.252626419067383],[122,47,79,6.243979454040527],[122,48,64,6.151723384857178],[122,48,65,6.152887344360352],[122,48,66,6.14828634262085],[122,48,67,6.14301872253418],[122,48,68,6.142638206481934],[122,48,69,6.151845455169678],[122,48,70,6.171098709106445],[122,48,71,6.197380065917969],[122,48,72,6.227060317993164],[122,48,73,6.2464518547058105],[122,48,74,6.255016326904297],[122,48,75,6.258291244506836],[122,48,76,6.258340835571289],[122,48,77,6.256374835968018],[122,48,78,6.252626419067383],[122,48,79,6.243979454040527],[122,49,64,6.151723384857178],[122,49,65,6.152887344360352],[122,49,66,6.14828634262085],[122,49,67,6.14301872253418],[122,49,68,6.142638206481934],[122,49,69,6.151845455169678],[122,49,70,6.171098709106445],[122,49,71,6.197380065917969],[122,49,72,6.227060317993164],[122,49,73,6.2464518547058105],[122,49,74,6.255016326904297],[122,49,75,6.258291244506836],[122,49,76,6.258340835571289],[122,49,77,6.256374835968018],[122,49,78,6.252626419067383],[122,49,79,6.243979454040527],[122,50,64,6.151723384857178],[122,50,65,6.152887344360352],[122,50,66,6.14828634262085],[122,50,67,6.14301872253418],[122,50,68,6.142638206481934],[122,50,69,6.151845455169678],[122,50,70,6.171098709106445],[122,50,71,6.197380065917969],[122,50,72,6.227060317993164],[122,50,73,6.2464518547058105],[122,50,74,6.255016326904297],[122,50,75,6.258291244506836],[122,50,76,6.258340835571289],[122,50,77,6.256374835968018],[122,50,78,6.252626419067383],[122,50,79,6.243979454040527],[122,51,64,6.151723384857178],[122,51,65,6.152887344360352],[122,51,66,6.14828634262085],[122,51,67,6.14301872253418],[122,51,68,6.142638206481934],[122,51,69,6.151845455169678],[122,51,70,6.171098709106445],[122,51,71,6.197380065917969],[122,51,72,6.227060317993164],[122,51,73,6.2464518547058105],[122,51,74,6.255016326904297],[122,51,75,6.258291244506836],[122,51,76,6.258340835571289],[122,51,77,6.256374835968018],[122,51,78,6.252626419067383],[122,51,79,6.243979454040527],[122,52,64,6.151723384857178],[122,52,65,6.152887344360352],[122,52,66,6.14828634262085],[122,52,67,6.14301872253418],[122,52,68,6.142638206481934],[122,52,69,6.151845455169678],[122,52,70,6.171098709106445],[122,52,71,6.197380065917969],[122,52,72,6.227060317993164],[122,52,73,6.2464518547058105],[122,52,74,6.255016326904297],[122,52,75,6.258291244506836],[122,52,76,6.258340835571289],[122,52,77,6.256374835968018],[122,52,78,6.252626419067383],[122,52,79,6.243979454040527],[122,53,64,6.151723384857178],[122,53,65,6.152887344360352],[122,53,66,6.14828634262085],[122,53,67,6.14301872253418],[122,53,68,6.142638206481934],[122,53,69,6.151845455169678],[122,53,70,6.171098709106445],[122,53,71,6.197380065917969],[122,53,72,6.227060317993164],[122,53,73,6.2464518547058105],[122,53,74,6.255016326904297],[122,53,75,6.258291244506836],[122,53,76,6.258340835571289],[122,53,77,6.256374835968018],[122,53,78,6.252626419067383],[122,53,79,6.243979454040527],[122,54,64,6.151723384857178],[122,54,65,6.152887344360352],[122,54,66,6.14828634262085],[122,54,67,6.14301872253418],[122,54,68,6.142638206481934],[122,54,69,6.151845455169678],[122,54,70,6.171098709106445],[122,54,71,6.197380065917969],[122,54,72,6.227060317993164],[122,54,73,6.2464518547058105],[122,54,74,6.255016326904297],[122,54,75,6.258291244506836],[122,54,76,6.258340835571289],[122,54,77,6.256374835968018],[122,54,78,6.252626419067383],[122,54,79,6.243979454040527],[122,55,64,6.151723384857178],[122,55,65,6.152887344360352],[122,55,66,6.14828634262085],[122,55,67,6.14301872253418],[122,55,68,6.142638206481934],[122,55,69,6.151845455169678],[122,55,70,6.171098709106445],[122,55,71,6.197380065917969],[122,55,72,6.227060317993164],[122,55,73,6.2464518547058105],[122,55,74,6.255016326904297],[122,55,75,6.258291244506836],[122,55,76,6.258340835571289],[122,55,77,6.256374835968018],[122,55,78,6.252626419067383],[122,55,79,6.243979454040527],[122,56,64,6.151723384857178],[122,56,65,6.152887344360352],[122,56,66,6.14828634262085],[122,56,67,6.14301872253418],[122,56,68,6.142638206481934],[122,56,69,6.151845455169678],[122,56,70,6.171098709106445],[122,56,71,6.197380065917969],[122,56,72,6.227060317993164],[122,56,73,6.2464518547058105],[122,56,74,6.255016326904297],[122,56,75,6.258291244506836],[122,56,76,6.258340835571289],[122,56,77,6.256374835968018],[122,56,78,6.252626419067383],[122,56,79,6.243979454040527],[122,57,64,6.151723384857178],[122,57,65,6.152887344360352],[122,57,66,6.14828634262085],[122,57,67,6.14301872253418],[122,57,68,6.142638206481934],[122,57,69,6.151845455169678],[122,57,70,6.171098709106445],[122,57,71,6.197380065917969],[122,57,72,6.227060317993164],[122,57,73,6.2464518547058105],[122,57,74,6.255016326904297],[122,57,75,6.258291244506836],[122,57,76,6.258340835571289],[122,57,77,6.256374835968018],[122,57,78,6.252626419067383],[122,57,79,6.243979454040527],[122,58,64,6.151723384857178],[122,58,65,6.152887344360352],[122,58,66,6.14828634262085],[122,58,67,6.14301872253418],[122,58,68,6.142638206481934],[122,58,69,6.151845455169678],[122,58,70,6.171098709106445],[122,58,71,6.197380065917969],[122,58,72,6.227060317993164],[122,58,73,6.2464518547058105],[122,58,74,6.255016326904297],[122,58,75,6.258291244506836],[122,58,76,6.258340835571289],[122,58,77,6.256374835968018],[122,58,78,6.252626419067383],[122,58,79,6.243979454040527],[122,59,64,6.151723384857178],[122,59,65,6.152887344360352],[122,59,66,6.14828634262085],[122,59,67,6.14301872253418],[122,59,68,6.142638206481934],[122,59,69,6.151845455169678],[122,59,70,6.171098709106445],[122,59,71,6.197380065917969],[122,59,72,6.227060317993164],[122,59,73,6.2464518547058105],[122,59,74,6.255016326904297],[122,59,75,6.258291244506836],[122,59,76,6.258340835571289],[122,59,77,6.256374835968018],[122,59,78,6.252626419067383],[122,59,79,6.243979454040527],[122,60,64,6.151723384857178],[122,60,65,6.152887344360352],[122,60,66,6.14828634262085],[122,60,67,6.14301872253418],[122,60,68,6.142638206481934],[122,60,69,6.151845455169678],[122,60,70,6.171098709106445],[122,60,71,6.197380065917969],[122,60,72,6.227060317993164],[122,60,73,6.2464518547058105],[122,60,74,6.255016326904297],[122,60,75,6.258291244506836],[122,60,76,6.258340835571289],[122,60,77,6.256374835968018],[122,60,78,6.252626419067383],[122,60,79,6.243979454040527],[122,61,64,6.151723384857178],[122,61,65,6.152887344360352],[122,61,66,6.14828634262085],[122,61,67,6.14301872253418],[122,61,68,6.142638206481934],[122,61,69,6.151845455169678],[122,61,70,6.171098709106445],[122,61,71,6.197380065917969],[122,61,72,6.227060317993164],[122,61,73,6.2464518547058105],[122,61,74,6.255016326904297],[122,61,75,6.258291244506836],[122,61,76,6.258340835571289],[122,61,77,6.256374835968018],[122,61,78,6.252626419067383],[122,61,79,6.243979454040527],[122,62,64,6.151723384857178],[122,62,65,6.152887344360352],[122,62,66,6.14828634262085],[122,62,67,6.14301872253418],[122,62,68,6.142638206481934],[122,62,69,6.151845455169678],[122,62,70,6.171098709106445],[122,62,71,6.197380065917969],[122,62,72,6.227060317993164],[122,62,73,6.2464518547058105],[122,62,74,6.255016326904297],[122,62,75,6.258291244506836],[122,62,76,6.258340835571289],[122,62,77,6.256374835968018],[122,62,78,6.252626419067383],[122,62,79,6.243979454040527],[122,63,64,6.151723384857178],[122,63,65,6.152887344360352],[122,63,66,6.14828634262085],[122,63,67,6.14301872253418],[122,63,68,6.142638206481934],[122,63,69,6.151845455169678],[122,63,70,6.171098709106445],[122,63,71,6.197380065917969],[122,63,72,6.227060317993164],[122,63,73,6.2464518547058105],[122,63,74,6.255016326904297],[122,63,75,6.258291244506836],[122,63,76,6.258340835571289],[122,63,77,6.256374835968018],[122,63,78,6.252626419067383],[122,63,79,6.243979454040527],[122,64,64,6.151723384857178],[122,64,65,6.152887344360352],[122,64,66,6.14828634262085],[122,64,67,6.14301872253418],[122,64,68,6.142638206481934],[122,64,69,6.151845455169678],[122,64,70,6.171098709106445],[122,64,71,6.197380065917969],[122,64,72,6.227060317993164],[122,64,73,6.2464518547058105],[122,64,74,6.255016326904297],[122,64,75,6.258291244506836],[122,64,76,6.258340835571289],[122,64,77,6.256374835968018],[122,64,78,6.252626419067383],[122,64,79,6.243979454040527],[122,65,64,6.151723384857178],[122,65,65,6.152887344360352],[122,65,66,6.14828634262085],[122,65,67,6.14301872253418],[122,65,68,6.142638206481934],[122,65,69,6.151845455169678],[122,65,70,6.171098709106445],[122,65,71,6.197380065917969],[122,65,72,6.227060317993164],[122,65,73,6.2464518547058105],[122,65,74,6.255016326904297],[122,65,75,6.258291244506836],[122,65,76,6.258340835571289],[122,65,77,6.256374835968018],[122,65,78,6.252626419067383],[122,65,79,6.243979454040527],[122,66,64,6.151723384857178],[122,66,65,6.152887344360352],[122,66,66,6.14828634262085],[122,66,67,6.14301872253418],[122,66,68,6.142638206481934],[122,66,69,6.151845455169678],[122,66,70,6.171098709106445],[122,66,71,6.197380065917969],[122,66,72,6.227060317993164],[122,66,73,6.2464518547058105],[122,66,74,6.255016326904297],[122,66,75,6.258291244506836],[122,66,76,6.258340835571289],[122,66,77,6.256374835968018],[122,66,78,6.252626419067383],[122,66,79,6.243979454040527],[122,67,64,6.151723384857178],[122,67,65,6.152887344360352],[122,67,66,6.14828634262085],[122,67,67,6.14301872253418],[122,67,68,6.142638206481934],[122,67,69,6.151845455169678],[122,67,70,6.171098709106445],[122,67,71,6.197380065917969],[122,67,72,6.227060317993164],[122,67,73,6.2464518547058105],[122,67,74,6.255016326904297],[122,67,75,6.258291244506836],[122,67,76,6.258340835571289],[122,67,77,6.256374835968018],[122,67,78,6.252626419067383],[122,67,79,6.243979454040527],[122,68,64,6.151723384857178],[122,68,65,6.152887344360352],[122,68,66,6.14828634262085],[122,68,67,6.14301872253418],[122,68,68,6.142638206481934],[122,68,69,6.151845455169678],[122,68,70,6.171098709106445],[122,68,71,6.197380065917969],[122,68,72,6.227060317993164],[122,68,73,6.2464518547058105],[122,68,74,6.255016326904297],[122,68,75,6.258291244506836],[122,68,76,6.258340835571289],[122,68,77,6.256374835968018],[122,68,78,6.252626419067383],[122,68,79,6.243979454040527],[122,69,64,6.151723384857178],[122,69,65,6.152887344360352],[122,69,66,6.14828634262085],[122,69,67,6.14301872253418],[122,69,68,6.142638206481934],[122,69,69,6.151845455169678],[122,69,70,6.171098709106445],[122,69,71,6.197380065917969],[122,69,72,6.227060317993164],[122,69,73,6.2464518547058105],[122,69,74,6.255016326904297],[122,69,75,6.258291244506836],[122,69,76,6.258340835571289],[122,69,77,6.256374835968018],[122,69,78,6.252626419067383],[122,69,79,6.243979454040527],[122,70,64,6.151723384857178],[122,70,65,6.152887344360352],[122,70,66,6.14828634262085],[122,70,67,6.14301872253418],[122,70,68,6.142638206481934],[122,70,69,6.151845455169678],[122,70,70,6.171098709106445],[122,70,71,6.197380065917969],[122,70,72,6.227060317993164],[122,70,73,6.2464518547058105],[122,70,74,6.255016326904297],[122,70,75,6.258291244506836],[122,70,76,6.258340835571289],[122,70,77,6.256374835968018],[122,70,78,6.252626419067383],[122,70,79,6.243979454040527],[122,71,64,6.151723384857178],[122,71,65,6.152887344360352],[122,71,66,6.14828634262085],[122,71,67,6.14301872253418],[122,71,68,6.142638206481934],[122,71,69,6.151845455169678],[122,71,70,6.171098709106445],[122,71,71,6.197380065917969],[122,71,72,6.227060317993164],[122,71,73,6.2464518547058105],[122,71,74,6.255016326904297],[122,71,75,6.258291244506836],[122,71,76,6.258340835571289],[122,71,77,6.256374835968018],[122,71,78,6.252626419067383],[122,71,79,6.243979454040527],[122,72,64,6.151723384857178],[122,72,65,6.152887344360352],[122,72,66,6.14828634262085],[122,72,67,6.14301872253418],[122,72,68,6.142638206481934],[122,72,69,6.151845455169678],[122,72,70,6.171098709106445],[122,72,71,6.197380065917969],[122,72,72,6.227060317993164],[122,72,73,6.2464518547058105],[122,72,74,6.255016326904297],[122,72,75,6.258291244506836],[122,72,76,6.258340835571289],[122,72,77,6.256374835968018],[122,72,78,6.252626419067383],[122,72,79,6.243979454040527],[122,73,64,6.151723384857178],[122,73,65,6.152887344360352],[122,73,66,6.14828634262085],[122,73,67,6.14301872253418],[122,73,68,6.142638206481934],[122,73,69,6.151845455169678],[122,73,70,6.171098709106445],[122,73,71,6.197380065917969],[122,73,72,6.227060317993164],[122,73,73,6.2464518547058105],[122,73,74,6.255016326904297],[122,73,75,6.258291244506836],[122,73,76,6.258340835571289],[122,73,77,6.256374835968018],[122,73,78,6.252626419067383],[122,73,79,6.243979454040527],[122,74,64,6.151723384857178],[122,74,65,6.152887344360352],[122,74,66,6.14828634262085],[122,74,67,6.14301872253418],[122,74,68,6.142638206481934],[122,74,69,6.151845455169678],[122,74,70,6.171098709106445],[122,74,71,6.197380065917969],[122,74,72,6.227060317993164],[122,74,73,6.2464518547058105],[122,74,74,6.255016326904297],[122,74,75,6.258291244506836],[122,74,76,6.258340835571289],[122,74,77,6.256374835968018],[122,74,78,6.252626419067383],[122,74,79,6.243979454040527],[122,75,64,6.151723384857178],[122,75,65,6.152887344360352],[122,75,66,6.14828634262085],[122,75,67,6.14301872253418],[122,75,68,6.142638206481934],[122,75,69,6.151845455169678],[122,75,70,6.171098709106445],[122,75,71,6.197380065917969],[122,75,72,6.227060317993164],[122,75,73,6.2464518547058105],[122,75,74,6.255016326904297],[122,75,75,6.258291244506836],[122,75,76,6.258340835571289],[122,75,77,6.256374835968018],[122,75,78,6.252626419067383],[122,75,79,6.243979454040527],[122,76,64,6.151723384857178],[122,76,65,6.152887344360352],[122,76,66,6.14828634262085],[122,76,67,6.14301872253418],[122,76,68,6.142638206481934],[122,76,69,6.151845455169678],[122,76,70,6.171098709106445],[122,76,71,6.197380065917969],[122,76,72,6.227060317993164],[122,76,73,6.2464518547058105],[122,76,74,6.255016326904297],[122,76,75,6.258291244506836],[122,76,76,6.258340835571289],[122,76,77,6.256374835968018],[122,76,78,6.252626419067383],[122,76,79,6.243979454040527],[122,77,64,6.151723384857178],[122,77,65,6.152887344360352],[122,77,66,6.14828634262085],[122,77,67,6.14301872253418],[122,77,68,6.142638206481934],[122,77,69,6.151845455169678],[122,77,70,6.171098709106445],[122,77,71,6.197380065917969],[122,77,72,6.227060317993164],[122,77,73,6.2464518547058105],[122,77,74,6.255016326904297],[122,77,75,6.258291244506836],[122,77,76,6.258340835571289],[122,77,77,6.256374835968018],[122,77,78,6.252626419067383],[122,77,79,6.243979454040527],[122,78,64,6.151723384857178],[122,78,65,6.152887344360352],[122,78,66,6.14828634262085],[122,78,67,6.14301872253418],[122,78,68,6.142638206481934],[122,78,69,6.151845455169678],[122,78,70,6.171098709106445],[122,78,71,6.197380065917969],[122,78,72,6.227060317993164],[122,78,73,6.2464518547058105],[122,78,74,6.255016326904297],[122,78,75,6.258291244506836],[122,78,76,6.258340835571289],[122,78,77,6.256374835968018],[122,78,78,6.252626419067383],[122,78,79,6.243979454040527],[122,79,64,6.151723384857178],[122,79,65,6.152887344360352],[122,79,66,6.14828634262085],[122,79,67,6.14301872253418],[122,79,68,6.142638206481934],[122,79,69,6.151845455169678],[122,79,70,6.171098709106445],[122,79,71,6.197380065917969],[122,79,72,6.227060317993164],[122,79,73,6.2464518547058105],[122,79,74,6.255016326904297],[122,79,75,6.258291244506836],[122,79,76,6.258340835571289],[122,79,77,6.256374835968018],[122,79,78,6.252626419067383],[122,79,79,6.243979454040527],[122,80,64,6.151723384857178],[122,80,65,6.152887344360352],[122,80,66,6.14828634262085],[122,80,67,6.14301872253418],[122,80,68,6.142638206481934],[122,80,69,6.151845455169678],[122,80,70,6.171098709106445],[122,80,71,6.197380065917969],[122,80,72,6.227060317993164],[122,80,73,6.2464518547058105],[122,80,74,6.255016326904297],[122,80,75,6.258291244506836],[122,80,76,6.258340835571289],[122,80,77,6.256374835968018],[122,80,78,6.252626419067383],[122,80,79,6.243979454040527],[122,81,64,6.151723384857178],[122,81,65,6.152887344360352],[122,81,66,6.14828634262085],[122,81,67,6.14301872253418],[122,81,68,6.142638206481934],[122,81,69,6.151845455169678],[122,81,70,6.171098709106445],[122,81,71,6.197380065917969],[122,81,72,6.227060317993164],[122,81,73,6.2464518547058105],[122,81,74,6.255016326904297],[122,81,75,6.258291244506836],[122,81,76,6.258340835571289],[122,81,77,6.256374835968018],[122,81,78,6.252626419067383],[122,81,79,6.243979454040527],[122,82,64,6.151723384857178],[122,82,65,6.152887344360352],[122,82,66,6.14828634262085],[122,82,67,6.14301872253418],[122,82,68,6.142638206481934],[122,82,69,6.151845455169678],[122,82,70,6.171098709106445],[122,82,71,6.197380065917969],[122,82,72,6.227060317993164],[122,82,73,6.2464518547058105],[122,82,74,6.255016326904297],[122,82,75,6.258291244506836],[122,82,76,6.258340835571289],[122,82,77,6.256374835968018],[122,82,78,6.252626419067383],[122,82,79,6.243979454040527],[122,83,64,6.151723384857178],[122,83,65,6.152887344360352],[122,83,66,6.14828634262085],[122,83,67,6.14301872253418],[122,83,68,6.142638206481934],[122,83,69,6.151845455169678],[122,83,70,6.171098709106445],[122,83,71,6.197380065917969],[122,83,72,6.227060317993164],[122,83,73,6.2464518547058105],[122,83,74,6.255016326904297],[122,83,75,6.258291244506836],[122,83,76,6.258340835571289],[122,83,77,6.256374835968018],[122,83,78,6.252626419067383],[122,83,79,6.243979454040527],[122,84,64,6.151723384857178],[122,84,65,6.152887344360352],[122,84,66,6.14828634262085],[122,84,67,6.14301872253418],[122,84,68,6.142638206481934],[122,84,69,6.151845455169678],[122,84,70,6.171098709106445],[122,84,71,6.197380065917969],[122,84,72,6.227060317993164],[122,84,73,6.2464518547058105],[122,84,74,6.255016326904297],[122,84,75,6.258291244506836],[122,84,76,6.258340835571289],[122,84,77,6.256374835968018],[122,84,78,6.252626419067383],[122,84,79,6.243979454040527],[122,85,64,6.151723384857178],[122,85,65,6.152887344360352],[122,85,66,6.14828634262085],[122,85,67,6.14301872253418],[122,85,68,6.142638206481934],[122,85,69,6.151845455169678],[122,85,70,6.171098709106445],[122,85,71,6.197380065917969],[122,85,72,6.227060317993164],[122,85,73,6.2464518547058105],[122,85,74,6.255016326904297],[122,85,75,6.258291244506836],[122,85,76,6.258340835571289],[122,85,77,6.256374835968018],[122,85,78,6.252626419067383],[122,85,79,6.243979454040527],[122,86,64,6.151723384857178],[122,86,65,6.152887344360352],[122,86,66,6.14828634262085],[122,86,67,6.14301872253418],[122,86,68,6.142638206481934],[122,86,69,6.151845455169678],[122,86,70,6.171098709106445],[122,86,71,6.197380065917969],[122,86,72,6.227060317993164],[122,86,73,6.2464518547058105],[122,86,74,6.255016326904297],[122,86,75,6.258291244506836],[122,86,76,6.258340835571289],[122,86,77,6.256374835968018],[122,86,78,6.252626419067383],[122,86,79,6.243979454040527],[122,87,64,6.151723384857178],[122,87,65,6.152887344360352],[122,87,66,6.14828634262085],[122,87,67,6.14301872253418],[122,87,68,6.142638206481934],[122,87,69,6.151845455169678],[122,87,70,6.171098709106445],[122,87,71,6.197380065917969],[122,87,72,6.227060317993164],[122,87,73,6.2464518547058105],[122,87,74,6.255016326904297],[122,87,75,6.258291244506836],[122,87,76,6.258340835571289],[122,87,77,6.256374835968018],[122,87,78,6.252626419067383],[122,87,79,6.243979454040527],[122,88,64,6.151723384857178],[122,88,65,6.152887344360352],[122,88,66,6.14828634262085],[122,88,67,6.14301872253418],[122,88,68,6.142638206481934],[122,88,69,6.151845455169678],[122,88,70,6.171098709106445],[122,88,71,6.197380065917969],[122,88,72,6.227060317993164],[122,88,73,6.2464518547058105],[122,88,74,6.255016326904297],[122,88,75,6.258291244506836],[122,88,76,6.258340835571289],[122,88,77,6.256374835968018],[122,88,78,6.252626419067383],[122,88,79,6.243979454040527],[122,89,64,6.151723384857178],[122,89,65,6.152887344360352],[122,89,66,6.14828634262085],[122,89,67,6.14301872253418],[122,89,68,6.142638206481934],[122,89,69,6.151845455169678],[122,89,70,6.171098709106445],[122,89,71,6.197380065917969],[122,89,72,6.227060317993164],[122,89,73,6.2464518547058105],[122,89,74,6.255016326904297],[122,89,75,6.258291244506836],[122,89,76,6.258340835571289],[122,89,77,6.256374835968018],[122,89,78,6.252626419067383],[122,89,79,6.243979454040527],[122,90,64,6.151723384857178],[122,90,65,6.152887344360352],[122,90,66,6.14828634262085],[122,90,67,6.14301872253418],[122,90,68,6.142638206481934],[122,90,69,6.151845455169678],[122,90,70,6.171098709106445],[122,90,71,6.197380065917969],[122,90,72,6.227060317993164],[122,90,73,6.2464518547058105],[122,90,74,6.255016326904297],[122,90,75,6.258291244506836],[122,90,76,6.258340835571289],[122,90,77,6.256374835968018],[122,90,78,6.252626419067383],[122,90,79,6.243979454040527],[122,91,64,6.151723384857178],[122,91,65,6.152887344360352],[122,91,66,6.14828634262085],[122,91,67,6.14301872253418],[122,91,68,6.142638206481934],[122,91,69,6.151845455169678],[122,91,70,6.171098709106445],[122,91,71,6.197380065917969],[122,91,72,6.227060317993164],[122,91,73,6.2464518547058105],[122,91,74,6.255016326904297],[122,91,75,6.258291244506836],[122,91,76,6.258340835571289],[122,91,77,6.256374835968018],[122,91,78,6.252626419067383],[122,91,79,6.243979454040527],[122,92,64,6.151723384857178],[122,92,65,6.152887344360352],[122,92,66,6.14828634262085],[122,92,67,6.14301872253418],[122,92,68,6.142638206481934],[122,92,69,6.151845455169678],[122,92,70,6.171098709106445],[122,92,71,6.197380065917969],[122,92,72,6.227060317993164],[122,92,73,6.2464518547058105],[122,92,74,6.255016326904297],[122,92,75,6.258291244506836],[122,92,76,6.258340835571289],[122,92,77,6.256374835968018],[122,92,78,6.252626419067383],[122,92,79,6.243979454040527],[122,93,64,6.151723384857178],[122,93,65,6.152887344360352],[122,93,66,6.14828634262085],[122,93,67,6.14301872253418],[122,93,68,6.142638206481934],[122,93,69,6.151845455169678],[122,93,70,6.171098709106445],[122,93,71,6.197380065917969],[122,93,72,6.227060317993164],[122,93,73,6.2464518547058105],[122,93,74,6.255016326904297],[122,93,75,6.258291244506836],[122,93,76,6.258340835571289],[122,93,77,6.256374835968018],[122,93,78,6.252626419067383],[122,93,79,6.243979454040527],[122,94,64,6.151723384857178],[122,94,65,6.152887344360352],[122,94,66,6.14828634262085],[122,94,67,6.14301872253418],[122,94,68,6.142638206481934],[122,94,69,6.151845455169678],[122,94,70,6.171098709106445],[122,94,71,6.197380065917969],[122,94,72,6.227060317993164],[122,94,73,6.2464518547058105],[122,94,74,6.255016326904297],[122,94,75,6.258291244506836],[122,94,76,6.258340835571289],[122,94,77,6.256374835968018],[122,94,78,6.252626419067383],[122,94,79,6.243979454040527],[122,95,64,6.151723384857178],[122,95,65,6.152887344360352],[122,95,66,6.14828634262085],[122,95,67,6.14301872253418],[122,95,68,6.142638206481934],[122,95,69,6.151845455169678],[122,95,70,6.171098709106445],[122,95,71,6.197380065917969],[122,95,72,6.227060317993164],[122,95,73,6.2464518547058105],[122,95,74,6.255016326904297],[122,95,75,6.258291244506836],[122,95,76,6.258340835571289],[122,95,77,6.256374835968018],[122,95,78,6.252626419067383],[122,95,79,6.243979454040527],[122,96,64,6.151723384857178],[122,96,65,6.152887344360352],[122,96,66,6.14828634262085],[122,96,67,6.14301872253418],[122,96,68,6.142638206481934],[122,96,69,6.151845455169678],[122,96,70,6.171098709106445],[122,96,71,6.197380065917969],[122,96,72,6.227060317993164],[122,96,73,6.2464518547058105],[122,96,74,6.255016326904297],[122,96,75,6.258291244506836],[122,96,76,6.258340835571289],[122,96,77,6.256374835968018],[122,96,78,6.252626419067383],[122,96,79,6.243979454040527],[122,97,64,6.151723384857178],[122,97,65,6.152887344360352],[122,97,66,6.14828634262085],[122,97,67,6.14301872253418],[122,97,68,6.142638206481934],[122,97,69,6.151845455169678],[122,97,70,6.171098709106445],[122,97,71,6.197380065917969],[122,97,72,6.227060317993164],[122,97,73,6.2464518547058105],[122,97,74,6.255016326904297],[122,97,75,6.258291244506836],[122,97,76,6.258340835571289],[122,97,77,6.256374835968018],[122,97,78,6.252626419067383],[122,97,79,6.243979454040527],[122,98,64,6.151723384857178],[122,98,65,6.152887344360352],[122,98,66,6.14828634262085],[122,98,67,6.14301872253418],[122,98,68,6.142638206481934],[122,98,69,6.151845455169678],[122,98,70,6.171098709106445],[122,98,71,6.197380065917969],[122,98,72,6.227060317993164],[122,98,73,6.2464518547058105],[122,98,74,6.255016326904297],[122,98,75,6.258291244506836],[122,98,76,6.258340835571289],[122,98,77,6.256374835968018],[122,98,78,6.252626419067383],[122,98,79,6.243979454040527],[122,99,64,6.151723384857178],[122,99,65,6.152887344360352],[122,99,66,6.14828634262085],[122,99,67,6.14301872253418],[122,99,68,6.142638206481934],[122,99,69,6.151845455169678],[122,99,70,6.171098709106445],[122,99,71,6.197380065917969],[122,99,72,6.227060317993164],[122,99,73,6.2464518547058105],[122,99,74,6.255016326904297],[122,99,75,6.258291244506836],[122,99,76,6.258340835571289],[122,99,77,6.256374835968018],[122,99,78,6.252626419067383],[122,99,79,6.243979454040527],[122,100,64,6.151723384857178],[122,100,65,6.152887344360352],[122,100,66,6.14828634262085],[122,100,67,6.14301872253418],[122,100,68,6.142638206481934],[122,100,69,6.151845455169678],[122,100,70,6.171098709106445],[122,100,71,6.197380065917969],[122,100,72,6.227060317993164],[122,100,73,6.2464518547058105],[122,100,74,6.255016326904297],[122,100,75,6.258291244506836],[122,100,76,6.258340835571289],[122,100,77,6.256374835968018],[122,100,78,6.252626419067383],[122,100,79,6.243979454040527],[122,101,64,6.151723384857178],[122,101,65,6.152887344360352],[122,101,66,6.14828634262085],[122,101,67,6.14301872253418],[122,101,68,6.142638206481934],[122,101,69,6.151845455169678],[122,101,70,6.171098709106445],[122,101,71,6.197380065917969],[122,101,72,6.227060317993164],[122,101,73,6.2464518547058105],[122,101,74,6.255016326904297],[122,101,75,6.258291244506836],[122,101,76,6.258340835571289],[122,101,77,6.256374835968018],[122,101,78,6.252626419067383],[122,101,79,6.243979454040527],[122,102,64,6.151723384857178],[122,102,65,6.152887344360352],[122,102,66,6.14828634262085],[122,102,67,6.14301872253418],[122,102,68,6.142638206481934],[122,102,69,6.151845455169678],[122,102,70,6.171098709106445],[122,102,71,6.197380065917969],[122,102,72,6.227060317993164],[122,102,73,6.2464518547058105],[122,102,74,6.255016326904297],[122,102,75,6.258291244506836],[122,102,76,6.258340835571289],[122,102,77,6.256374835968018],[122,102,78,6.252626419067383],[122,102,79,6.243979454040527],[122,103,64,6.151723384857178],[122,103,65,6.152887344360352],[122,103,66,6.14828634262085],[122,103,67,6.14301872253418],[122,103,68,6.142638206481934],[122,103,69,6.151845455169678],[122,103,70,6.171098709106445],[122,103,71,6.197380065917969],[122,103,72,6.227060317993164],[122,103,73,6.2464518547058105],[122,103,74,6.255016326904297],[122,103,75,6.258291244506836],[122,103,76,6.258340835571289],[122,103,77,6.256374835968018],[122,103,78,6.252626419067383],[122,103,79,6.243979454040527],[122,104,64,6.151723384857178],[122,104,65,6.152887344360352],[122,104,66,6.14828634262085],[122,104,67,6.14301872253418],[122,104,68,6.142638206481934],[122,104,69,6.151845455169678],[122,104,70,6.171098709106445],[122,104,71,6.197380065917969],[122,104,72,6.227060317993164],[122,104,73,6.2464518547058105],[122,104,74,6.255016326904297],[122,104,75,6.258291244506836],[122,104,76,6.258340835571289],[122,104,77,6.256374835968018],[122,104,78,6.252626419067383],[122,104,79,6.243979454040527],[122,105,64,6.151723384857178],[122,105,65,6.152887344360352],[122,105,66,6.14828634262085],[122,105,67,6.14301872253418],[122,105,68,6.142638206481934],[122,105,69,6.151845455169678],[122,105,70,6.171098709106445],[122,105,71,6.197380065917969],[122,105,72,6.227060317993164],[122,105,73,6.2464518547058105],[122,105,74,6.255016326904297],[122,105,75,6.258291244506836],[122,105,76,6.258340835571289],[122,105,77,6.256374835968018],[122,105,78,6.252626419067383],[122,105,79,6.243979454040527],[122,106,64,6.151723384857178],[122,106,65,6.152887344360352],[122,106,66,6.14828634262085],[122,106,67,6.14301872253418],[122,106,68,6.142638206481934],[122,106,69,6.151845455169678],[122,106,70,6.171098709106445],[122,106,71,6.197380065917969],[122,106,72,6.227060317993164],[122,106,73,6.2464518547058105],[122,106,74,6.255016326904297],[122,106,75,6.258291244506836],[122,106,76,6.258340835571289],[122,106,77,6.256374835968018],[122,106,78,6.252626419067383],[122,106,79,6.243979454040527],[122,107,64,6.151723384857178],[122,107,65,6.152887344360352],[122,107,66,6.14828634262085],[122,107,67,6.14301872253418],[122,107,68,6.142638206481934],[122,107,69,6.151845455169678],[122,107,70,6.171098709106445],[122,107,71,6.197380065917969],[122,107,72,6.227060317993164],[122,107,73,6.2464518547058105],[122,107,74,6.255016326904297],[122,107,75,6.258291244506836],[122,107,76,6.258340835571289],[122,107,77,6.256374835968018],[122,107,78,6.252626419067383],[122,107,79,6.243979454040527],[122,108,64,6.151723384857178],[122,108,65,6.152887344360352],[122,108,66,6.14828634262085],[122,108,67,6.14301872253418],[122,108,68,6.142638206481934],[122,108,69,6.151845455169678],[122,108,70,6.171098709106445],[122,108,71,6.197380065917969],[122,108,72,6.227060317993164],[122,108,73,6.2464518547058105],[122,108,74,6.255016326904297],[122,108,75,6.258291244506836],[122,108,76,6.258340835571289],[122,108,77,6.256374835968018],[122,108,78,6.252626419067383],[122,108,79,6.243979454040527],[122,109,64,6.151723384857178],[122,109,65,6.152887344360352],[122,109,66,6.14828634262085],[122,109,67,6.14301872253418],[122,109,68,6.142638206481934],[122,109,69,6.151845455169678],[122,109,70,6.171098709106445],[122,109,71,6.197380065917969],[122,109,72,6.227060317993164],[122,109,73,6.2464518547058105],[122,109,74,6.255016326904297],[122,109,75,6.258291244506836],[122,109,76,6.258340835571289],[122,109,77,6.256374835968018],[122,109,78,6.252626419067383],[122,109,79,6.243979454040527],[122,110,64,6.151723384857178],[122,110,65,6.152887344360352],[122,110,66,6.14828634262085],[122,110,67,6.14301872253418],[122,110,68,6.142638206481934],[122,110,69,6.151845455169678],[122,110,70,6.171098709106445],[122,110,71,6.197380065917969],[122,110,72,6.227060317993164],[122,110,73,6.2464518547058105],[122,110,74,6.255016326904297],[122,110,75,6.258291244506836],[122,110,76,6.258340835571289],[122,110,77,6.256374835968018],[122,110,78,6.252626419067383],[122,110,79,6.243979454040527],[122,111,64,6.151723384857178],[122,111,65,6.152887344360352],[122,111,66,6.14828634262085],[122,111,67,6.14301872253418],[122,111,68,6.142638206481934],[122,111,69,6.151845455169678],[122,111,70,6.171098709106445],[122,111,71,6.197380065917969],[122,111,72,6.227060317993164],[122,111,73,6.2464518547058105],[122,111,74,6.255016326904297],[122,111,75,6.258291244506836],[122,111,76,6.258340835571289],[122,111,77,6.256374835968018],[122,111,78,6.252626419067383],[122,111,79,6.243979454040527],[122,112,64,6.151723384857178],[122,112,65,6.152887344360352],[122,112,66,6.14828634262085],[122,112,67,6.14301872253418],[122,112,68,6.142638206481934],[122,112,69,6.151845455169678],[122,112,70,6.171098709106445],[122,112,71,6.197380065917969],[122,112,72,6.227060317993164],[122,112,73,6.2464518547058105],[122,112,74,6.255016326904297],[122,112,75,6.258291244506836],[122,112,76,6.258340835571289],[122,112,77,6.256374835968018],[122,112,78,6.252626419067383],[122,112,79,6.243979454040527],[122,113,64,6.151723384857178],[122,113,65,6.152887344360352],[122,113,66,6.14828634262085],[122,113,67,6.14301872253418],[122,113,68,6.142638206481934],[122,113,69,6.151845455169678],[122,113,70,6.171098709106445],[122,113,71,6.197380065917969],[122,113,72,6.227060317993164],[122,113,73,6.2464518547058105],[122,113,74,6.255016326904297],[122,113,75,6.258291244506836],[122,113,76,6.258340835571289],[122,113,77,6.256374835968018],[122,113,78,6.252626419067383],[122,113,79,6.243979454040527],[122,114,64,6.151723384857178],[122,114,65,6.152887344360352],[122,114,66,6.14828634262085],[122,114,67,6.14301872253418],[122,114,68,6.142638206481934],[122,114,69,6.151845455169678],[122,114,70,6.171098709106445],[122,114,71,6.197380065917969],[122,114,72,6.227060317993164],[122,114,73,6.2464518547058105],[122,114,74,6.255016326904297],[122,114,75,6.258291244506836],[122,114,76,6.258340835571289],[122,114,77,6.256374835968018],[122,114,78,6.252626419067383],[122,114,79,6.243979454040527],[122,115,64,6.151723384857178],[122,115,65,6.152887344360352],[122,115,66,6.14828634262085],[122,115,67,6.14301872253418],[122,115,68,6.142638206481934],[122,115,69,6.151845455169678],[122,115,70,6.171098709106445],[122,115,71,6.197380065917969],[122,115,72,6.227060317993164],[122,115,73,6.2464518547058105],[122,115,74,6.255016326904297],[122,115,75,6.258291244506836],[122,115,76,6.258340835571289],[122,115,77,6.256374835968018],[122,115,78,6.252626419067383],[122,115,79,6.243979454040527],[122,116,64,6.151723384857178],[122,116,65,6.152887344360352],[122,116,66,6.14828634262085],[122,116,67,6.14301872253418],[122,116,68,6.142638206481934],[122,116,69,6.151845455169678],[122,116,70,6.171098709106445],[122,116,71,6.197380065917969],[122,116,72,6.227060317993164],[122,116,73,6.2464518547058105],[122,116,74,6.255016326904297],[122,116,75,6.258291244506836],[122,116,76,6.258340835571289],[122,116,77,6.256374835968018],[122,116,78,6.252626419067383],[122,116,79,6.243979454040527],[122,117,64,6.151723384857178],[122,117,65,6.152887344360352],[122,117,66,6.14828634262085],[122,117,67,6.14301872253418],[122,117,68,6.142638206481934],[122,117,69,6.151845455169678],[122,117,70,6.171098709106445],[122,117,71,6.197380065917969],[122,117,72,6.227060317993164],[122,117,73,6.2464518547058105],[122,117,74,6.255016326904297],[122,117,75,6.258291244506836],[122,117,76,6.258340835571289],[122,117,77,6.256374835968018],[122,117,78,6.252626419067383],[122,117,79,6.243979454040527],[122,118,64,6.151723384857178],[122,118,65,6.152887344360352],[122,118,66,6.14828634262085],[122,118,67,6.14301872253418],[122,118,68,6.142638206481934],[122,118,69,6.151845455169678],[122,118,70,6.171098709106445],[122,118,71,6.197380065917969],[122,118,72,6.227060317993164],[122,118,73,6.2464518547058105],[122,118,74,6.255016326904297],[122,118,75,6.258291244506836],[122,118,76,6.258340835571289],[122,118,77,6.256374835968018],[122,118,78,6.252626419067383],[122,118,79,6.243979454040527],[122,119,64,6.151723384857178],[122,119,65,6.152887344360352],[122,119,66,6.14828634262085],[122,119,67,6.14301872253418],[122,119,68,6.142638206481934],[122,119,69,6.151845455169678],[122,119,70,6.171098709106445],[122,119,71,6.197380065917969],[122,119,72,6.227060317993164],[122,119,73,6.2464518547058105],[122,119,74,6.255016326904297],[122,119,75,6.258291244506836],[122,119,76,6.258340835571289],[122,119,77,6.256374835968018],[122,119,78,6.252626419067383],[122,119,79,6.243979454040527],[122,120,64,6.151723384857178],[122,120,65,6.152887344360352],[122,120,66,6.14828634262085],[122,120,67,6.14301872253418],[122,120,68,6.142638206481934],[122,120,69,6.151845455169678],[122,120,70,6.171098709106445],[122,120,71,6.197380065917969],[122,120,72,6.227060317993164],[122,120,73,6.2464518547058105],[122,120,74,6.255016326904297],[122,120,75,6.258291244506836],[122,120,76,6.258340835571289],[122,120,77,6.256374835968018],[122,120,78,6.252626419067383],[122,120,79,6.243979454040527],[122,121,64,6.151723384857178],[122,121,65,6.152887344360352],[122,121,66,6.14828634262085],[122,121,67,6.14301872253418],[122,121,68,6.142638206481934],[122,121,69,6.151845455169678],[122,121,70,6.171098709106445],[122,121,71,6.197380065917969],[122,121,72,6.227060317993164],[122,121,73,6.2464518547058105],[122,121,74,6.255016326904297],[122,121,75,6.258291244506836],[122,121,76,6.258340835571289],[122,121,77,6.256374835968018],[122,121,78,6.252626419067383],[122,121,79,6.243979454040527],[122,122,64,6.151723384857178],[122,122,65,6.152887344360352],[122,122,66,6.14828634262085],[122,122,67,6.14301872253418],[122,122,68,6.142638206481934],[122,122,69,6.151845455169678],[122,122,70,6.171098709106445],[122,122,71,6.197380065917969],[122,122,72,6.227060317993164],[122,122,73,6.2464518547058105],[122,122,74,6.255016326904297],[122,122,75,6.258291244506836],[122,122,76,6.258340835571289],[122,122,77,6.256374835968018],[122,122,78,6.252626419067383],[122,122,79,6.243979454040527],[122,123,64,6.151723384857178],[122,123,65,6.152887344360352],[122,123,66,6.14828634262085],[122,123,67,6.14301872253418],[122,123,68,6.142638206481934],[122,123,69,6.151845455169678],[122,123,70,6.171098709106445],[122,123,71,6.197380065917969],[122,123,72,6.227060317993164],[122,123,73,6.2464518547058105],[122,123,74,6.255016326904297],[122,123,75,6.258291244506836],[122,123,76,6.258340835571289],[122,123,77,6.256374835968018],[122,123,78,6.252626419067383],[122,123,79,6.243979454040527],[122,124,64,6.151723384857178],[122,124,65,6.152887344360352],[122,124,66,6.14828634262085],[122,124,67,6.14301872253418],[122,124,68,6.142638206481934],[122,124,69,6.151845455169678],[122,124,70,6.171098709106445],[122,124,71,6.197380065917969],[122,124,72,6.227060317993164],[122,124,73,6.2464518547058105],[122,124,74,6.255016326904297],[122,124,75,6.258291244506836],[122,124,76,6.258340835571289],[122,124,77,6.256374835968018],[122,124,78,6.252626419067383],[122,124,79,6.243979454040527],[122,125,64,6.151723384857178],[122,125,65,6.152887344360352],[122,125,66,6.14828634262085],[122,125,67,6.14301872253418],[122,125,68,6.142638206481934],[122,125,69,6.151845455169678],[122,125,70,6.171098709106445],[122,125,71,6.197380065917969],[122,125,72,6.227060317993164],[122,125,73,6.2464518547058105],[122,125,74,6.255016326904297],[122,125,75,6.258291244506836],[122,125,76,6.258340835571289],[122,125,77,6.256374835968018],[122,125,78,6.252626419067383],[122,125,79,6.243979454040527],[122,126,64,6.151723384857178],[122,126,65,6.152887344360352],[122,126,66,6.14828634262085],[122,126,67,6.14301872253418],[122,126,68,6.142638206481934],[122,126,69,6.151845455169678],[122,126,70,6.171098709106445],[122,126,71,6.197380065917969],[122,126,72,6.227060317993164],[122,126,73,6.2464518547058105],[122,126,74,6.255016326904297],[122,126,75,6.258291244506836],[122,126,76,6.258340835571289],[122,126,77,6.256374835968018],[122,126,78,6.252626419067383],[122,126,79,6.243979454040527],[122,127,64,6.151723384857178],[122,127,65,6.152887344360352],[122,127,66,6.14828634262085],[122,127,67,6.14301872253418],[122,127,68,6.142638206481934],[122,127,69,6.151845455169678],[122,127,70,6.171098709106445],[122,127,71,6.197380065917969],[122,127,72,6.227060317993164],[122,127,73,6.2464518547058105],[122,127,74,6.255016326904297],[122,127,75,6.258291244506836],[122,127,76,6.258340835571289],[122,127,77,6.256374835968018],[122,127,78,6.252626419067383],[122,127,79,6.243979454040527],[122,128,64,6.151723384857178],[122,128,65,6.152887344360352],[122,128,66,6.14828634262085],[122,128,67,6.14301872253418],[122,128,68,6.142638206481934],[122,128,69,6.151845455169678],[122,128,70,6.171098709106445],[122,128,71,6.197380065917969],[122,128,72,6.227060317993164],[122,128,73,6.2464518547058105],[122,128,74,6.255016326904297],[122,128,75,6.258291244506836],[122,128,76,6.258340835571289],[122,128,77,6.256374835968018],[122,128,78,6.252626419067383],[122,128,79,6.243979454040527],[122,129,64,6.151723384857178],[122,129,65,6.152887344360352],[122,129,66,6.14828634262085],[122,129,67,6.14301872253418],[122,129,68,6.142638206481934],[122,129,69,6.151845455169678],[122,129,70,6.171098709106445],[122,129,71,6.197380065917969],[122,129,72,6.227060317993164],[122,129,73,6.2464518547058105],[122,129,74,6.255016326904297],[122,129,75,6.258291244506836],[122,129,76,6.258340835571289],[122,129,77,6.256374835968018],[122,129,78,6.252626419067383],[122,129,79,6.243979454040527],[122,130,64,6.151723384857178],[122,130,65,6.152887344360352],[122,130,66,6.14828634262085],[122,130,67,6.14301872253418],[122,130,68,6.142638206481934],[122,130,69,6.151845455169678],[122,130,70,6.171098709106445],[122,130,71,6.197380065917969],[122,130,72,6.227060317993164],[122,130,73,6.2464518547058105],[122,130,74,6.255016326904297],[122,130,75,6.258291244506836],[122,130,76,6.258340835571289],[122,130,77,6.256374835968018],[122,130,78,6.252626419067383],[122,130,79,6.243979454040527],[122,131,64,6.151723384857178],[122,131,65,6.152887344360352],[122,131,66,6.14828634262085],[122,131,67,6.14301872253418],[122,131,68,6.142638206481934],[122,131,69,6.151845455169678],[122,131,70,6.171098709106445],[122,131,71,6.197380065917969],[122,131,72,6.227060317993164],[122,131,73,6.2464518547058105],[122,131,74,6.255016326904297],[122,131,75,6.258291244506836],[122,131,76,6.258340835571289],[122,131,77,6.256374835968018],[122,131,78,6.252626419067383],[122,131,79,6.243979454040527],[122,132,64,6.151723384857178],[122,132,65,6.152887344360352],[122,132,66,6.14828634262085],[122,132,67,6.14301872253418],[122,132,68,6.142638206481934],[122,132,69,6.151845455169678],[122,132,70,6.171098709106445],[122,132,71,6.197380065917969],[122,132,72,6.227060317993164],[122,132,73,6.2464518547058105],[122,132,74,6.255016326904297],[122,132,75,6.258291244506836],[122,132,76,6.258340835571289],[122,132,77,6.256374835968018],[122,132,78,6.252626419067383],[122,132,79,6.243979454040527],[122,133,64,6.151723384857178],[122,133,65,6.152887344360352],[122,133,66,6.14828634262085],[122,133,67,6.14301872253418],[122,133,68,6.142638206481934],[122,133,69,6.151845455169678],[122,133,70,6.171098709106445],[122,133,71,6.197380065917969],[122,133,72,6.227060317993164],[122,133,73,6.2464518547058105],[122,133,74,6.255016326904297],[122,133,75,6.258291244506836],[122,133,76,6.258340835571289],[122,133,77,6.256374835968018],[122,133,78,6.252626419067383],[122,133,79,6.243979454040527],[122,134,64,6.151723384857178],[122,134,65,6.152887344360352],[122,134,66,6.14828634262085],[122,134,67,6.14301872253418],[122,134,68,6.142638206481934],[122,134,69,6.151845455169678],[122,134,70,6.171098709106445],[122,134,71,6.197380065917969],[122,134,72,6.227060317993164],[122,134,73,6.2464518547058105],[122,134,74,6.255016326904297],[122,134,75,6.258291244506836],[122,134,76,6.258340835571289],[122,134,77,6.256374835968018],[122,134,78,6.252626419067383],[122,134,79,6.243979454040527],[122,135,64,6.151723384857178],[122,135,65,6.152887344360352],[122,135,66,6.14828634262085],[122,135,67,6.14301872253418],[122,135,68,6.142638206481934],[122,135,69,6.151845455169678],[122,135,70,6.171098709106445],[122,135,71,6.197380065917969],[122,135,72,6.227060317993164],[122,135,73,6.2464518547058105],[122,135,74,6.255016326904297],[122,135,75,6.258291244506836],[122,135,76,6.258340835571289],[122,135,77,6.256374835968018],[122,135,78,6.252626419067383],[122,135,79,6.243979454040527],[122,136,64,6.151723384857178],[122,136,65,6.152887344360352],[122,136,66,6.14828634262085],[122,136,67,6.14301872253418],[122,136,68,6.142638206481934],[122,136,69,6.151845455169678],[122,136,70,6.171098709106445],[122,136,71,6.197380065917969],[122,136,72,6.227060317993164],[122,136,73,6.2464518547058105],[122,136,74,6.255016326904297],[122,136,75,6.258291244506836],[122,136,76,6.258340835571289],[122,136,77,6.256374835968018],[122,136,78,6.252626419067383],[122,136,79,6.243979454040527],[122,137,64,6.151723384857178],[122,137,65,6.152887344360352],[122,137,66,6.14828634262085],[122,137,67,6.14301872253418],[122,137,68,6.142638206481934],[122,137,69,6.151845455169678],[122,137,70,6.171098709106445],[122,137,71,6.197380065917969],[122,137,72,6.227060317993164],[122,137,73,6.2464518547058105],[122,137,74,6.255016326904297],[122,137,75,6.258291244506836],[122,137,76,6.258340835571289],[122,137,77,6.256374835968018],[122,137,78,6.252626419067383],[122,137,79,6.243979454040527],[122,138,64,6.151723384857178],[122,138,65,6.152887344360352],[122,138,66,6.14828634262085],[122,138,67,6.14301872253418],[122,138,68,6.142638206481934],[122,138,69,6.151845455169678],[122,138,70,6.171098709106445],[122,138,71,6.197380065917969],[122,138,72,6.227060317993164],[122,138,73,6.2464518547058105],[122,138,74,6.255016326904297],[122,138,75,6.258291244506836],[122,138,76,6.258340835571289],[122,138,77,6.256374835968018],[122,138,78,6.252626419067383],[122,138,79,6.243979454040527],[122,139,64,6.151723384857178],[122,139,65,6.152887344360352],[122,139,66,6.14828634262085],[122,139,67,6.14301872253418],[122,139,68,6.142638206481934],[122,139,69,6.151845455169678],[122,139,70,6.171098709106445],[122,139,71,6.197380065917969],[122,139,72,6.227060317993164],[122,139,73,6.2464518547058105],[122,139,74,6.255016326904297],[122,139,75,6.258291244506836],[122,139,76,6.258340835571289],[122,139,77,6.256374835968018],[122,139,78,6.252626419067383],[122,139,79,6.243979454040527],[122,140,64,6.151723384857178],[122,140,65,6.152887344360352],[122,140,66,6.14828634262085],[122,140,67,6.14301872253418],[122,140,68,6.142638206481934],[122,140,69,6.151845455169678],[122,140,70,6.171098709106445],[122,140,71,6.197380065917969],[122,140,72,6.227060317993164],[122,140,73,6.2464518547058105],[122,140,74,6.255016326904297],[122,140,75,6.258291244506836],[122,140,76,6.258340835571289],[122,140,77,6.256374835968018],[122,140,78,6.252626419067383],[122,140,79,6.243979454040527],[122,141,64,6.151723384857178],[122,141,65,6.152887344360352],[122,141,66,6.14828634262085],[122,141,67,6.14301872253418],[122,141,68,6.142638206481934],[122,141,69,6.151845455169678],[122,141,70,6.171098709106445],[122,141,71,6.197380065917969],[122,141,72,6.227060317993164],[122,141,73,6.2464518547058105],[122,141,74,6.255016326904297],[122,141,75,6.258291244506836],[122,141,76,6.258340835571289],[122,141,77,6.256374835968018],[122,141,78,6.252626419067383],[122,141,79,6.243979454040527],[122,142,64,6.151723384857178],[122,142,65,6.152887344360352],[122,142,66,6.14828634262085],[122,142,67,6.14301872253418],[122,142,68,6.142638206481934],[122,142,69,6.151845455169678],[122,142,70,6.171098709106445],[122,142,71,6.197380065917969],[122,142,72,6.227060317993164],[122,142,73,6.2464518547058105],[122,142,74,6.255016326904297],[122,142,75,6.258291244506836],[122,142,76,6.258340835571289],[122,142,77,6.256374835968018],[122,142,78,6.252626419067383],[122,142,79,6.243979454040527],[122,143,64,6.151723384857178],[122,143,65,6.152887344360352],[122,143,66,6.14828634262085],[122,143,67,6.14301872253418],[122,143,68,6.142638206481934],[122,143,69,6.151845455169678],[122,143,70,6.171098709106445],[122,143,71,6.197380065917969],[122,143,72,6.227060317993164],[122,143,73,6.2464518547058105],[122,143,74,6.255016326904297],[122,143,75,6.258291244506836],[122,143,76,6.258340835571289],[122,143,77,6.256374835968018],[122,143,78,6.252626419067383],[122,143,79,6.243979454040527],[122,144,64,6.151723384857178],[122,144,65,6.152887344360352],[122,144,66,6.14828634262085],[122,144,67,6.14301872253418],[122,144,68,6.142638206481934],[122,144,69,6.151845455169678],[122,144,70,6.171098709106445],[122,144,71,6.197380065917969],[122,144,72,6.227060317993164],[122,144,73,6.2464518547058105],[122,144,74,6.255016326904297],[122,144,75,6.258291244506836],[122,144,76,6.258340835571289],[122,144,77,6.256374835968018],[122,144,78,6.252626419067383],[122,144,79,6.243979454040527],[122,145,64,6.151723384857178],[122,145,65,6.152887344360352],[122,145,66,6.14828634262085],[122,145,67,6.14301872253418],[122,145,68,6.142638206481934],[122,145,69,6.151845455169678],[122,145,70,6.171098709106445],[122,145,71,6.197380065917969],[122,145,72,6.227060317993164],[122,145,73,6.2464518547058105],[122,145,74,6.255016326904297],[122,145,75,6.258291244506836],[122,145,76,6.258340835571289],[122,145,77,6.256374835968018],[122,145,78,6.252626419067383],[122,145,79,6.243979454040527],[122,146,64,6.151723384857178],[122,146,65,6.152887344360352],[122,146,66,6.14828634262085],[122,146,67,6.14301872253418],[122,146,68,6.142638206481934],[122,146,69,6.151845455169678],[122,146,70,6.171098709106445],[122,146,71,6.197380065917969],[122,146,72,6.227060317993164],[122,146,73,6.2464518547058105],[122,146,74,6.255016326904297],[122,146,75,6.258291244506836],[122,146,76,6.258340835571289],[122,146,77,6.256374835968018],[122,146,78,6.252626419067383],[122,146,79,6.243979454040527],[122,147,64,6.151723384857178],[122,147,65,6.152887344360352],[122,147,66,6.14828634262085],[122,147,67,6.14301872253418],[122,147,68,6.142638206481934],[122,147,69,6.151845455169678],[122,147,70,6.171098709106445],[122,147,71,6.197380065917969],[122,147,72,6.227060317993164],[122,147,73,6.2464518547058105],[122,147,74,6.255016326904297],[122,147,75,6.258291244506836],[122,147,76,6.258340835571289],[122,147,77,6.256374835968018],[122,147,78,6.252626419067383],[122,147,79,6.243979454040527],[122,148,64,6.151723384857178],[122,148,65,6.152887344360352],[122,148,66,6.14828634262085],[122,148,67,6.14301872253418],[122,148,68,6.142638206481934],[122,148,69,6.151845455169678],[122,148,70,6.171098709106445],[122,148,71,6.197380065917969],[122,148,72,6.227060317993164],[122,148,73,6.2464518547058105],[122,148,74,6.255016326904297],[122,148,75,6.258291244506836],[122,148,76,6.258340835571289],[122,148,77,6.256374835968018],[122,148,78,6.252626419067383],[122,148,79,6.243979454040527],[122,149,64,6.151723384857178],[122,149,65,6.152887344360352],[122,149,66,6.14828634262085],[122,149,67,6.14301872253418],[122,149,68,6.142638206481934],[122,149,69,6.151845455169678],[122,149,70,6.171098709106445],[122,149,71,6.197380065917969],[122,149,72,6.227060317993164],[122,149,73,6.2464518547058105],[122,149,74,6.255016326904297],[122,149,75,6.258291244506836],[122,149,76,6.258340835571289],[122,149,77,6.256374835968018],[122,149,78,6.252626419067383],[122,149,79,6.243979454040527],[122,150,64,6.151723384857178],[122,150,65,6.152887344360352],[122,150,66,6.14828634262085],[122,150,67,6.14301872253418],[122,150,68,6.142638206481934],[122,150,69,6.151845455169678],[122,150,70,6.171098709106445],[122,150,71,6.197380065917969],[122,150,72,6.227060317993164],[122,150,73,6.2464518547058105],[122,150,74,6.255016326904297],[122,150,75,6.258291244506836],[122,150,76,6.258340835571289],[122,150,77,6.256374835968018],[122,150,78,6.252626419067383],[122,150,79,6.243979454040527],[122,151,64,6.151723384857178],[122,151,65,6.152887344360352],[122,151,66,6.14828634262085],[122,151,67,6.14301872253418],[122,151,68,6.142638206481934],[122,151,69,6.151845455169678],[122,151,70,6.171098709106445],[122,151,71,6.197380065917969],[122,151,72,6.227060317993164],[122,151,73,6.2464518547058105],[122,151,74,6.255016326904297],[122,151,75,6.258291244506836],[122,151,76,6.258340835571289],[122,151,77,6.256374835968018],[122,151,78,6.252626419067383],[122,151,79,6.243979454040527],[122,152,64,6.151723384857178],[122,152,65,6.152887344360352],[122,152,66,6.14828634262085],[122,152,67,6.14301872253418],[122,152,68,6.142638206481934],[122,152,69,6.151845455169678],[122,152,70,6.171098709106445],[122,152,71,6.197380065917969],[122,152,72,6.227060317993164],[122,152,73,6.2464518547058105],[122,152,74,6.255016326904297],[122,152,75,6.258291244506836],[122,152,76,6.258340835571289],[122,152,77,6.256374835968018],[122,152,78,6.252626419067383],[122,152,79,6.243979454040527],[122,153,64,6.151723384857178],[122,153,65,6.152887344360352],[122,153,66,6.14828634262085],[122,153,67,6.14301872253418],[122,153,68,6.142638206481934],[122,153,69,6.151845455169678],[122,153,70,6.171098709106445],[122,153,71,6.197380065917969],[122,153,72,6.227060317993164],[122,153,73,6.2464518547058105],[122,153,74,6.255016326904297],[122,153,75,6.258291244506836],[122,153,76,6.258340835571289],[122,153,77,6.256374835968018],[122,153,78,6.252626419067383],[122,153,79,6.243979454040527],[122,154,64,6.151723384857178],[122,154,65,6.152887344360352],[122,154,66,6.14828634262085],[122,154,67,6.14301872253418],[122,154,68,6.142638206481934],[122,154,69,6.151845455169678],[122,154,70,6.171098709106445],[122,154,71,6.197380065917969],[122,154,72,6.227060317993164],[122,154,73,6.2464518547058105],[122,154,74,6.255016326904297],[122,154,75,6.258291244506836],[122,154,76,6.258340835571289],[122,154,77,6.256374835968018],[122,154,78,6.252626419067383],[122,154,79,6.243979454040527],[122,155,64,6.151723384857178],[122,155,65,6.152887344360352],[122,155,66,6.14828634262085],[122,155,67,6.14301872253418],[122,155,68,6.142638206481934],[122,155,69,6.151845455169678],[122,155,70,6.171098709106445],[122,155,71,6.197380065917969],[122,155,72,6.227060317993164],[122,155,73,6.2464518547058105],[122,155,74,6.255016326904297],[122,155,75,6.258291244506836],[122,155,76,6.258340835571289],[122,155,77,6.256374835968018],[122,155,78,6.252626419067383],[122,155,79,6.243979454040527],[122,156,64,6.151723384857178],[122,156,65,6.152887344360352],[122,156,66,6.14828634262085],[122,156,67,6.14301872253418],[122,156,68,6.142638206481934],[122,156,69,6.151845455169678],[122,156,70,6.171098709106445],[122,156,71,6.197380065917969],[122,156,72,6.227060317993164],[122,156,73,6.2464518547058105],[122,156,74,6.255016326904297],[122,156,75,6.258291244506836],[122,156,76,6.258340835571289],[122,156,77,6.256374835968018],[122,156,78,6.252626419067383],[122,156,79,6.243979454040527],[122,157,64,6.151723384857178],[122,157,65,6.152887344360352],[122,157,66,6.14828634262085],[122,157,67,6.14301872253418],[122,157,68,6.142638206481934],[122,157,69,6.151845455169678],[122,157,70,6.171098709106445],[122,157,71,6.197380065917969],[122,157,72,6.227060317993164],[122,157,73,6.2464518547058105],[122,157,74,6.255016326904297],[122,157,75,6.258291244506836],[122,157,76,6.258340835571289],[122,157,77,6.256374835968018],[122,157,78,6.252626419067383],[122,157,79,6.243979454040527],[122,158,64,6.151723384857178],[122,158,65,6.152887344360352],[122,158,66,6.14828634262085],[122,158,67,6.14301872253418],[122,158,68,6.142638206481934],[122,158,69,6.151845455169678],[122,158,70,6.171098709106445],[122,158,71,6.197380065917969],[122,158,72,6.227060317993164],[122,158,73,6.2464518547058105],[122,158,74,6.255016326904297],[122,158,75,6.258291244506836],[122,158,76,6.258340835571289],[122,158,77,6.256374835968018],[122,158,78,6.252626419067383],[122,158,79,6.243979454040527],[122,159,64,6.151723384857178],[122,159,65,6.152887344360352],[122,159,66,6.14828634262085],[122,159,67,6.14301872253418],[122,159,68,6.142638206481934],[122,159,69,6.151845455169678],[122,159,70,6.171098709106445],[122,159,71,6.197380065917969],[122,159,72,6.227060317993164],[122,159,73,6.2464518547058105],[122,159,74,6.255016326904297],[122,159,75,6.258291244506836],[122,159,76,6.258340835571289],[122,159,77,6.256374835968018],[122,159,78,6.252626419067383],[122,159,79,6.243979454040527],[122,160,64,6.151723384857178],[122,160,65,6.152887344360352],[122,160,66,6.14828634262085],[122,160,67,6.14301872253418],[122,160,68,6.142638206481934],[122,160,69,6.151845455169678],[122,160,70,6.171098709106445],[122,160,71,6.197380065917969],[122,160,72,6.227060317993164],[122,160,73,6.2464518547058105],[122,160,74,6.255016326904297],[122,160,75,6.258291244506836],[122,160,76,6.258340835571289],[122,160,77,6.256374835968018],[122,160,78,6.252626419067383],[122,160,79,6.243979454040527],[122,161,64,6.151723384857178],[122,161,65,6.152887344360352],[122,161,66,6.14828634262085],[122,161,67,6.14301872253418],[122,161,68,6.142638206481934],[122,161,69,6.151845455169678],[122,161,70,6.171098709106445],[122,161,71,6.197380065917969],[122,161,72,6.227060317993164],[122,161,73,6.2464518547058105],[122,161,74,6.255016326904297],[122,161,75,6.258291244506836],[122,161,76,6.258340835571289],[122,161,77,6.256374835968018],[122,161,78,6.252626419067383],[122,161,79,6.243979454040527],[122,162,64,6.151723384857178],[122,162,65,6.152887344360352],[122,162,66,6.14828634262085],[122,162,67,6.14301872253418],[122,162,68,6.142638206481934],[122,162,69,6.151845455169678],[122,162,70,6.171098709106445],[122,162,71,6.197380065917969],[122,162,72,6.227060317993164],[122,162,73,6.2464518547058105],[122,162,74,6.255016326904297],[122,162,75,6.258291244506836],[122,162,76,6.258340835571289],[122,162,77,6.256374835968018],[122,162,78,6.252626419067383],[122,162,79,6.243979454040527],[122,163,64,6.151723384857178],[122,163,65,6.152887344360352],[122,163,66,6.14828634262085],[122,163,67,6.14301872253418],[122,163,68,6.142638206481934],[122,163,69,6.151845455169678],[122,163,70,6.171098709106445],[122,163,71,6.197380065917969],[122,163,72,6.227060317993164],[122,163,73,6.2464518547058105],[122,163,74,6.255016326904297],[122,163,75,6.258291244506836],[122,163,76,6.258340835571289],[122,163,77,6.256374835968018],[122,163,78,6.252626419067383],[122,163,79,6.243979454040527],[122,164,64,6.151723384857178],[122,164,65,6.152887344360352],[122,164,66,6.14828634262085],[122,164,67,6.14301872253418],[122,164,68,6.142638206481934],[122,164,69,6.151845455169678],[122,164,70,6.171098709106445],[122,164,71,6.197380065917969],[122,164,72,6.227060317993164],[122,164,73,6.2464518547058105],[122,164,74,6.255016326904297],[122,164,75,6.258291244506836],[122,164,76,6.258340835571289],[122,164,77,6.256374835968018],[122,164,78,6.252626419067383],[122,164,79,6.243979454040527],[122,165,64,6.151723384857178],[122,165,65,6.152887344360352],[122,165,66,6.14828634262085],[122,165,67,6.14301872253418],[122,165,68,6.142638206481934],[122,165,69,6.151845455169678],[122,165,70,6.171098709106445],[122,165,71,6.197380065917969],[122,165,72,6.227060317993164],[122,165,73,6.2464518547058105],[122,165,74,6.255016326904297],[122,165,75,6.258291244506836],[122,165,76,6.258340835571289],[122,165,77,6.256374835968018],[122,165,78,6.252626419067383],[122,165,79,6.243979454040527],[122,166,64,6.151723384857178],[122,166,65,6.152887344360352],[122,166,66,6.14828634262085],[122,166,67,6.14301872253418],[122,166,68,6.142638206481934],[122,166,69,6.151845455169678],[122,166,70,6.171098709106445],[122,166,71,6.197380065917969],[122,166,72,6.227060317993164],[122,166,73,6.2464518547058105],[122,166,74,6.255016326904297],[122,166,75,6.258291244506836],[122,166,76,6.258340835571289],[122,166,77,6.256374835968018],[122,166,78,6.252626419067383],[122,166,79,6.243979454040527],[122,167,64,6.151723384857178],[122,167,65,6.152887344360352],[122,167,66,6.14828634262085],[122,167,67,6.14301872253418],[122,167,68,6.142638206481934],[122,167,69,6.151845455169678],[122,167,70,6.171098709106445],[122,167,71,6.197380065917969],[122,167,72,6.227060317993164],[122,167,73,6.2464518547058105],[122,167,74,6.255016326904297],[122,167,75,6.258291244506836],[122,167,76,6.258340835571289],[122,167,77,6.256374835968018],[122,167,78,6.252626419067383],[122,167,79,6.243979454040527],[122,168,64,6.151723384857178],[122,168,65,6.152887344360352],[122,168,66,6.14828634262085],[122,168,67,6.14301872253418],[122,168,68,6.142638206481934],[122,168,69,6.151845455169678],[122,168,70,6.171098709106445],[122,168,71,6.197380065917969],[122,168,72,6.227060317993164],[122,168,73,6.2464518547058105],[122,168,74,6.255016326904297],[122,168,75,6.258291244506836],[122,168,76,6.258340835571289],[122,168,77,6.256374835968018],[122,168,78,6.252626419067383],[122,168,79,6.243979454040527],[122,169,64,6.151723384857178],[122,169,65,6.152887344360352],[122,169,66,6.14828634262085],[122,169,67,6.14301872253418],[122,169,68,6.142638206481934],[122,169,69,6.151845455169678],[122,169,70,6.171098709106445],[122,169,71,6.197380065917969],[122,169,72,6.227060317993164],[122,169,73,6.2464518547058105],[122,169,74,6.255016326904297],[122,169,75,6.258291244506836],[122,169,76,6.258340835571289],[122,169,77,6.256374835968018],[122,169,78,6.252626419067383],[122,169,79,6.243979454040527],[122,170,64,6.151723384857178],[122,170,65,6.152887344360352],[122,170,66,6.14828634262085],[122,170,67,6.14301872253418],[122,170,68,6.142638206481934],[122,170,69,6.151845455169678],[122,170,70,6.171098709106445],[122,170,71,6.197380065917969],[122,170,72,6.227060317993164],[122,170,73,6.2464518547058105],[122,170,74,6.255016326904297],[122,170,75,6.258291244506836],[122,170,76,6.258340835571289],[122,170,77,6.256374835968018],[122,170,78,6.252626419067383],[122,170,79,6.243979454040527],[122,171,64,6.151723384857178],[122,171,65,6.152887344360352],[122,171,66,6.14828634262085],[122,171,67,6.14301872253418],[122,171,68,6.142638206481934],[122,171,69,6.151845455169678],[122,171,70,6.171098709106445],[122,171,71,6.197380065917969],[122,171,72,6.227060317993164],[122,171,73,6.2464518547058105],[122,171,74,6.255016326904297],[122,171,75,6.258291244506836],[122,171,76,6.258340835571289],[122,171,77,6.256374835968018],[122,171,78,6.252626419067383],[122,171,79,6.243979454040527],[122,172,64,6.151723384857178],[122,172,65,6.152887344360352],[122,172,66,6.14828634262085],[122,172,67,6.14301872253418],[122,172,68,6.142638206481934],[122,172,69,6.151845455169678],[122,172,70,6.171098709106445],[122,172,71,6.197380065917969],[122,172,72,6.227060317993164],[122,172,73,6.2464518547058105],[122,172,74,6.255016326904297],[122,172,75,6.258291244506836],[122,172,76,6.258340835571289],[122,172,77,6.256374835968018],[122,172,78,6.252626419067383],[122,172,79,6.243979454040527],[122,173,64,6.151723384857178],[122,173,65,6.152887344360352],[122,173,66,6.14828634262085],[122,173,67,6.14301872253418],[122,173,68,6.142638206481934],[122,173,69,6.151845455169678],[122,173,70,6.171098709106445],[122,173,71,6.197380065917969],[122,173,72,6.227060317993164],[122,173,73,6.2464518547058105],[122,173,74,6.255016326904297],[122,173,75,6.258291244506836],[122,173,76,6.258340835571289],[122,173,77,6.256374835968018],[122,173,78,6.252626419067383],[122,173,79,6.243979454040527],[122,174,64,6.151723384857178],[122,174,65,6.152887344360352],[122,174,66,6.14828634262085],[122,174,67,6.14301872253418],[122,174,68,6.142638206481934],[122,174,69,6.151845455169678],[122,174,70,6.171098709106445],[122,174,71,6.197380065917969],[122,174,72,6.227060317993164],[122,174,73,6.2464518547058105],[122,174,74,6.255016326904297],[122,174,75,6.258291244506836],[122,174,76,6.258340835571289],[122,174,77,6.256374835968018],[122,174,78,6.252626419067383],[122,174,79,6.243979454040527],[122,175,64,6.151723384857178],[122,175,65,6.152887344360352],[122,175,66,6.14828634262085],[122,175,67,6.14301872253418],[122,175,68,6.142638206481934],[122,175,69,6.151845455169678],[122,175,70,6.171098709106445],[122,175,71,6.197380065917969],[122,175,72,6.227060317993164],[122,175,73,6.2464518547058105],[122,175,74,6.255016326904297],[122,175,75,6.258291244506836],[122,175,76,6.258340835571289],[122,175,77,6.256374835968018],[122,175,78,6.252626419067383],[122,175,79,6.243979454040527],[122,176,64,6.151723384857178],[122,176,65,6.152887344360352],[122,176,66,6.14828634262085],[122,176,67,6.14301872253418],[122,176,68,6.142638206481934],[122,176,69,6.151845455169678],[122,176,70,6.171098709106445],[122,176,71,6.197380065917969],[122,176,72,6.227060317993164],[122,176,73,6.2464518547058105],[122,176,74,6.255016326904297],[122,176,75,6.258291244506836],[122,176,76,6.258340835571289],[122,176,77,6.256374835968018],[122,176,78,6.252626419067383],[122,176,79,6.243979454040527],[122,177,64,6.151723384857178],[122,177,65,6.152887344360352],[122,177,66,6.14828634262085],[122,177,67,6.14301872253418],[122,177,68,6.142638206481934],[122,177,69,6.151845455169678],[122,177,70,6.171098709106445],[122,177,71,6.197380065917969],[122,177,72,6.227060317993164],[122,177,73,6.2464518547058105],[122,177,74,6.255016326904297],[122,177,75,6.258291244506836],[122,177,76,6.258340835571289],[122,177,77,6.256374835968018],[122,177,78,6.252626419067383],[122,177,79,6.243979454040527],[122,178,64,6.151723384857178],[122,178,65,6.152887344360352],[122,178,66,6.14828634262085],[122,178,67,6.14301872253418],[122,178,68,6.142638206481934],[122,178,69,6.151845455169678],[122,178,70,6.171098709106445],[122,178,71,6.197380065917969],[122,178,72,6.227060317993164],[122,178,73,6.2464518547058105],[122,178,74,6.255016326904297],[122,178,75,6.258291244506836],[122,178,76,6.258340835571289],[122,178,77,6.256374835968018],[122,178,78,6.252626419067383],[122,178,79,6.243979454040527],[122,179,64,6.151723384857178],[122,179,65,6.152887344360352],[122,179,66,6.14828634262085],[122,179,67,6.14301872253418],[122,179,68,6.142638206481934],[122,179,69,6.151845455169678],[122,179,70,6.171098709106445],[122,179,71,6.197380065917969],[122,179,72,6.227060317993164],[122,179,73,6.2464518547058105],[122,179,74,6.255016326904297],[122,179,75,6.258291244506836],[122,179,76,6.258340835571289],[122,179,77,6.256374835968018],[122,179,78,6.252626419067383],[122,179,79,6.243979454040527],[122,180,64,6.151723384857178],[122,180,65,6.152887344360352],[122,180,66,6.14828634262085],[122,180,67,6.14301872253418],[122,180,68,6.142638206481934],[122,180,69,6.151845455169678],[122,180,70,6.171098709106445],[122,180,71,6.197380065917969],[122,180,72,6.227060317993164],[122,180,73,6.2464518547058105],[122,180,74,6.255016326904297],[122,180,75,6.258291244506836],[122,180,76,6.258340835571289],[122,180,77,6.256374835968018],[122,180,78,6.252626419067383],[122,180,79,6.243979454040527],[122,181,64,6.151723384857178],[122,181,65,6.152887344360352],[122,181,66,6.14828634262085],[122,181,67,6.14301872253418],[122,181,68,6.142638206481934],[122,181,69,6.151845455169678],[122,181,70,6.171098709106445],[122,181,71,6.197380065917969],[122,181,72,6.227060317993164],[122,181,73,6.2464518547058105],[122,181,74,6.255016326904297],[122,181,75,6.258291244506836],[122,181,76,6.258340835571289],[122,181,77,6.256374835968018],[122,181,78,6.252626419067383],[122,181,79,6.243979454040527],[122,182,64,6.151723384857178],[122,182,65,6.152887344360352],[122,182,66,6.14828634262085],[122,182,67,6.14301872253418],[122,182,68,6.142638206481934],[122,182,69,6.151845455169678],[122,182,70,6.171098709106445],[122,182,71,6.197380065917969],[122,182,72,6.227060317993164],[122,182,73,6.2464518547058105],[122,182,74,6.255016326904297],[122,182,75,6.258291244506836],[122,182,76,6.258340835571289],[122,182,77,6.256374835968018],[122,182,78,6.252626419067383],[122,182,79,6.243979454040527],[122,183,64,6.151723384857178],[122,183,65,6.152887344360352],[122,183,66,6.14828634262085],[122,183,67,6.14301872253418],[122,183,68,6.142638206481934],[122,183,69,6.151845455169678],[122,183,70,6.171098709106445],[122,183,71,6.197380065917969],[122,183,72,6.227060317993164],[122,183,73,6.2464518547058105],[122,183,74,6.255016326904297],[122,183,75,6.258291244506836],[122,183,76,6.258340835571289],[122,183,77,6.256374835968018],[122,183,78,6.252626419067383],[122,183,79,6.243979454040527],[122,184,64,6.151723384857178],[122,184,65,6.152887344360352],[122,184,66,6.14828634262085],[122,184,67,6.14301872253418],[122,184,68,6.142638206481934],[122,184,69,6.151845455169678],[122,184,70,6.171098709106445],[122,184,71,6.197380065917969],[122,184,72,6.227060317993164],[122,184,73,6.2464518547058105],[122,184,74,6.255016326904297],[122,184,75,6.258291244506836],[122,184,76,6.258340835571289],[122,184,77,6.256374835968018],[122,184,78,6.252626419067383],[122,184,79,6.243979454040527],[122,185,64,6.151723384857178],[122,185,65,6.152887344360352],[122,185,66,6.14828634262085],[122,185,67,6.14301872253418],[122,185,68,6.142638206481934],[122,185,69,6.151845455169678],[122,185,70,6.171098709106445],[122,185,71,6.197380065917969],[122,185,72,6.227060317993164],[122,185,73,6.2464518547058105],[122,185,74,6.255016326904297],[122,185,75,6.258291244506836],[122,185,76,6.258340835571289],[122,185,77,6.256374835968018],[122,185,78,6.252626419067383],[122,185,79,6.243979454040527],[122,186,64,6.151723384857178],[122,186,65,6.152887344360352],[122,186,66,6.14828634262085],[122,186,67,6.14301872253418],[122,186,68,6.142638206481934],[122,186,69,6.151845455169678],[122,186,70,6.171098709106445],[122,186,71,6.197380065917969],[122,186,72,6.227060317993164],[122,186,73,6.2464518547058105],[122,186,74,6.255016326904297],[122,186,75,6.258291244506836],[122,186,76,6.258340835571289],[122,186,77,6.256374835968018],[122,186,78,6.252626419067383],[122,186,79,6.243979454040527],[122,187,64,6.151723384857178],[122,187,65,6.152887344360352],[122,187,66,6.14828634262085],[122,187,67,6.14301872253418],[122,187,68,6.142638206481934],[122,187,69,6.151845455169678],[122,187,70,6.171098709106445],[122,187,71,6.197380065917969],[122,187,72,6.227060317993164],[122,187,73,6.2464518547058105],[122,187,74,6.255016326904297],[122,187,75,6.258291244506836],[122,187,76,6.258340835571289],[122,187,77,6.256374835968018],[122,187,78,6.252626419067383],[122,187,79,6.243979454040527],[122,188,64,6.151723384857178],[122,188,65,6.152887344360352],[122,188,66,6.14828634262085],[122,188,67,6.14301872253418],[122,188,68,6.142638206481934],[122,188,69,6.151845455169678],[122,188,70,6.171098709106445],[122,188,71,6.197380065917969],[122,188,72,6.227060317993164],[122,188,73,6.2464518547058105],[122,188,74,6.255016326904297],[122,188,75,6.258291244506836],[122,188,76,6.258340835571289],[122,188,77,6.256374835968018],[122,188,78,6.252626419067383],[122,188,79,6.243979454040527],[122,189,64,6.151723384857178],[122,189,65,6.152887344360352],[122,189,66,6.14828634262085],[122,189,67,6.14301872253418],[122,189,68,6.142638206481934],[122,189,69,6.151845455169678],[122,189,70,6.171098709106445],[122,189,71,6.197380065917969],[122,189,72,6.227060317993164],[122,189,73,6.2464518547058105],[122,189,74,6.255016326904297],[122,189,75,6.258291244506836],[122,189,76,6.258340835571289],[122,189,77,6.256374835968018],[122,189,78,6.252626419067383],[122,189,79,6.243979454040527],[122,190,64,6.151723384857178],[122,190,65,6.152887344360352],[122,190,66,6.14828634262085],[122,190,67,6.14301872253418],[122,190,68,6.142638206481934],[122,190,69,6.151845455169678],[122,190,70,6.171098709106445],[122,190,71,6.197380065917969],[122,190,72,6.227060317993164],[122,190,73,6.2464518547058105],[122,190,74,6.255016326904297],[122,190,75,6.258291244506836],[122,190,76,6.258340835571289],[122,190,77,6.256374835968018],[122,190,78,6.252626419067383],[122,190,79,6.243979454040527],[122,191,64,6.151723384857178],[122,191,65,6.152887344360352],[122,191,66,6.14828634262085],[122,191,67,6.14301872253418],[122,191,68,6.142638206481934],[122,191,69,6.151845455169678],[122,191,70,6.171098709106445],[122,191,71,6.197380065917969],[122,191,72,6.227060317993164],[122,191,73,6.2464518547058105],[122,191,74,6.255016326904297],[122,191,75,6.258291244506836],[122,191,76,6.258340835571289],[122,191,77,6.256374835968018],[122,191,78,6.252626419067383],[122,191,79,6.243979454040527],[122,192,64,6.151723384857178],[122,192,65,6.152887344360352],[122,192,66,6.14828634262085],[122,192,67,6.14301872253418],[122,192,68,6.142638206481934],[122,192,69,6.151845455169678],[122,192,70,6.171098709106445],[122,192,71,6.197380065917969],[122,192,72,6.227060317993164],[122,192,73,6.2464518547058105],[122,192,74,6.255016326904297],[122,192,75,6.258291244506836],[122,192,76,6.258340835571289],[122,192,77,6.256374835968018],[122,192,78,6.252626419067383],[122,192,79,6.243979454040527],[122,193,64,6.151723384857178],[122,193,65,6.152887344360352],[122,193,66,6.14828634262085],[122,193,67,6.14301872253418],[122,193,68,6.142638206481934],[122,193,69,6.151845455169678],[122,193,70,6.171098709106445],[122,193,71,6.197380065917969],[122,193,72,6.227060317993164],[122,193,73,6.2464518547058105],[122,193,74,6.255016326904297],[122,193,75,6.258291244506836],[122,193,76,6.258340835571289],[122,193,77,6.256374835968018],[122,193,78,6.252626419067383],[122,193,79,6.243979454040527],[122,194,64,6.151723384857178],[122,194,65,6.152887344360352],[122,194,66,6.14828634262085],[122,194,67,6.14301872253418],[122,194,68,6.142638206481934],[122,194,69,6.151845455169678],[122,194,70,6.171098709106445],[122,194,71,6.197380065917969],[122,194,72,6.227060317993164],[122,194,73,6.2464518547058105],[122,194,74,6.255016326904297],[122,194,75,6.258291244506836],[122,194,76,6.258340835571289],[122,194,77,6.256374835968018],[122,194,78,6.252626419067383],[122,194,79,6.243979454040527],[122,195,64,6.151723384857178],[122,195,65,6.152887344360352],[122,195,66,6.14828634262085],[122,195,67,6.14301872253418],[122,195,68,6.142638206481934],[122,195,69,6.151845455169678],[122,195,70,6.171098709106445],[122,195,71,6.197380065917969],[122,195,72,6.227060317993164],[122,195,73,6.2464518547058105],[122,195,74,6.255016326904297],[122,195,75,6.258291244506836],[122,195,76,6.258340835571289],[122,195,77,6.256374835968018],[122,195,78,6.252626419067383],[122,195,79,6.243979454040527],[122,196,64,6.151723384857178],[122,196,65,6.152887344360352],[122,196,66,6.14828634262085],[122,196,67,6.14301872253418],[122,196,68,6.142638206481934],[122,196,69,6.151845455169678],[122,196,70,6.171098709106445],[122,196,71,6.197380065917969],[122,196,72,6.227060317993164],[122,196,73,6.2464518547058105],[122,196,74,6.255016326904297],[122,196,75,6.258291244506836],[122,196,76,6.258340835571289],[122,196,77,6.256374835968018],[122,196,78,6.252626419067383],[122,196,79,6.243979454040527],[122,197,64,6.151723384857178],[122,197,65,6.152887344360352],[122,197,66,6.14828634262085],[122,197,67,6.14301872253418],[122,197,68,6.142638206481934],[122,197,69,6.151845455169678],[122,197,70,6.171098709106445],[122,197,71,6.197380065917969],[122,197,72,6.227060317993164],[122,197,73,6.2464518547058105],[122,197,74,6.255016326904297],[122,197,75,6.258291244506836],[122,197,76,6.258340835571289],[122,197,77,6.256374835968018],[122,197,78,6.252626419067383],[122,197,79,6.243979454040527],[122,198,64,6.151723384857178],[122,198,65,6.152887344360352],[122,198,66,6.14828634262085],[122,198,67,6.14301872253418],[122,198,68,6.142638206481934],[122,198,69,6.151845455169678],[122,198,70,6.171098709106445],[122,198,71,6.197380065917969],[122,198,72,6.227060317993164],[122,198,73,6.2464518547058105],[122,198,74,6.255016326904297],[122,198,75,6.258291244506836],[122,198,76,6.258340835571289],[122,198,77,6.256374835968018],[122,198,78,6.252626419067383],[122,198,79,6.243979454040527],[122,199,64,6.151723384857178],[122,199,65,6.152887344360352],[122,199,66,6.14828634262085],[122,199,67,6.14301872253418],[122,199,68,6.142638206481934],[122,199,69,6.151845455169678],[122,199,70,6.171098709106445],[122,199,71,6.197380065917969],[122,199,72,6.227060317993164],[122,199,73,6.2464518547058105],[122,199,74,6.255016326904297],[122,199,75,6.258291244506836],[122,199,76,6.258340835571289],[122,199,77,6.256374835968018],[122,199,78,6.252626419067383],[122,199,79,6.243979454040527],[122,200,64,6.151723384857178],[122,200,65,6.152887344360352],[122,200,66,6.14828634262085],[122,200,67,6.14301872253418],[122,200,68,6.142638206481934],[122,200,69,6.151845455169678],[122,200,70,6.171098709106445],[122,200,71,6.197380065917969],[122,200,72,6.227060317993164],[122,200,73,6.2464518547058105],[122,200,74,6.255016326904297],[122,200,75,6.258291244506836],[122,200,76,6.258340835571289],[122,200,77,6.256374835968018],[122,200,78,6.252626419067383],[122,200,79,6.243979454040527],[122,201,64,6.151723384857178],[122,201,65,6.152887344360352],[122,201,66,6.14828634262085],[122,201,67,6.14301872253418],[122,201,68,6.142638206481934],[122,201,69,6.151845455169678],[122,201,70,6.171098709106445],[122,201,71,6.197380065917969],[122,201,72,6.227060317993164],[122,201,73,6.2464518547058105],[122,201,74,6.255016326904297],[122,201,75,6.258291244506836],[122,201,76,6.258340835571289],[122,201,77,6.256374835968018],[122,201,78,6.252626419067383],[122,201,79,6.243979454040527],[122,202,64,6.151723384857178],[122,202,65,6.152887344360352],[122,202,66,6.14828634262085],[122,202,67,6.14301872253418],[122,202,68,6.142638206481934],[122,202,69,6.151845455169678],[122,202,70,6.171098709106445],[122,202,71,6.197380065917969],[122,202,72,6.227060317993164],[122,202,73,6.2464518547058105],[122,202,74,6.255016326904297],[122,202,75,6.258291244506836],[122,202,76,6.258340835571289],[122,202,77,6.256374835968018],[122,202,78,6.252626419067383],[122,202,79,6.243979454040527],[122,203,64,6.151723384857178],[122,203,65,6.152887344360352],[122,203,66,6.14828634262085],[122,203,67,6.14301872253418],[122,203,68,6.142638206481934],[122,203,69,6.151845455169678],[122,203,70,6.171098709106445],[122,203,71,6.197380065917969],[122,203,72,6.227060317993164],[122,203,73,6.2464518547058105],[122,203,74,6.255016326904297],[122,203,75,6.258291244506836],[122,203,76,6.258340835571289],[122,203,77,6.256374835968018],[122,203,78,6.252626419067383],[122,203,79,6.243979454040527],[122,204,64,6.151723384857178],[122,204,65,6.152887344360352],[122,204,66,6.14828634262085],[122,204,67,6.14301872253418],[122,204,68,6.142638206481934],[122,204,69,6.151845455169678],[122,204,70,6.171098709106445],[122,204,71,6.197380065917969],[122,204,72,6.227060317993164],[122,204,73,6.2464518547058105],[122,204,74,6.255016326904297],[122,204,75,6.258291244506836],[122,204,76,6.258340835571289],[122,204,77,6.256374835968018],[122,204,78,6.252626419067383],[122,204,79,6.243979454040527],[122,205,64,6.151723384857178],[122,205,65,6.152887344360352],[122,205,66,6.14828634262085],[122,205,67,6.14301872253418],[122,205,68,6.142638206481934],[122,205,69,6.151845455169678],[122,205,70,6.171098709106445],[122,205,71,6.197380065917969],[122,205,72,6.227060317993164],[122,205,73,6.2464518547058105],[122,205,74,6.255016326904297],[122,205,75,6.258291244506836],[122,205,76,6.258340835571289],[122,205,77,6.256374835968018],[122,205,78,6.252626419067383],[122,205,79,6.243979454040527],[122,206,64,6.151723384857178],[122,206,65,6.152887344360352],[122,206,66,6.14828634262085],[122,206,67,6.14301872253418],[122,206,68,6.142638206481934],[122,206,69,6.151845455169678],[122,206,70,6.171098709106445],[122,206,71,6.197380065917969],[122,206,72,6.227060317993164],[122,206,73,6.2464518547058105],[122,206,74,6.255016326904297],[122,206,75,6.258291244506836],[122,206,76,6.258340835571289],[122,206,77,6.256374835968018],[122,206,78,6.252626419067383],[122,206,79,6.243979454040527],[122,207,64,6.151723384857178],[122,207,65,6.152887344360352],[122,207,66,6.14828634262085],[122,207,67,6.14301872253418],[122,207,68,6.142638206481934],[122,207,69,6.151845455169678],[122,207,70,6.171098709106445],[122,207,71,6.197380065917969],[122,207,72,6.227060317993164],[122,207,73,6.2464518547058105],[122,207,74,6.255016326904297],[122,207,75,6.258291244506836],[122,207,76,6.258340835571289],[122,207,77,6.256374835968018],[122,207,78,6.252626419067383],[122,207,79,6.243979454040527],[122,208,64,6.151723384857178],[122,208,65,6.152887344360352],[122,208,66,6.14828634262085],[122,208,67,6.14301872253418],[122,208,68,6.142638206481934],[122,208,69,6.151845455169678],[122,208,70,6.171098709106445],[122,208,71,6.197380065917969],[122,208,72,6.227060317993164],[122,208,73,6.2464518547058105],[122,208,74,6.255016326904297],[122,208,75,6.258291244506836],[122,208,76,6.258340835571289],[122,208,77,6.256374835968018],[122,208,78,6.252626419067383],[122,208,79,6.243979454040527],[122,209,64,6.151723384857178],[122,209,65,6.152887344360352],[122,209,66,6.14828634262085],[122,209,67,6.14301872253418],[122,209,68,6.142638206481934],[122,209,69,6.151845455169678],[122,209,70,6.171098709106445],[122,209,71,6.197380065917969],[122,209,72,6.227060317993164],[122,209,73,6.2464518547058105],[122,209,74,6.255016326904297],[122,209,75,6.258291244506836],[122,209,76,6.258340835571289],[122,209,77,6.256374835968018],[122,209,78,6.252626419067383],[122,209,79,6.243979454040527],[122,210,64,6.151723384857178],[122,210,65,6.152887344360352],[122,210,66,6.14828634262085],[122,210,67,6.14301872253418],[122,210,68,6.142638206481934],[122,210,69,6.151845455169678],[122,210,70,6.171098709106445],[122,210,71,6.197380065917969],[122,210,72,6.227060317993164],[122,210,73,6.2464518547058105],[122,210,74,6.255016326904297],[122,210,75,6.258291244506836],[122,210,76,6.258340835571289],[122,210,77,6.256374835968018],[122,210,78,6.252626419067383],[122,210,79,6.243979454040527],[122,211,64,6.151723384857178],[122,211,65,6.152887344360352],[122,211,66,6.14828634262085],[122,211,67,6.14301872253418],[122,211,68,6.142638206481934],[122,211,69,6.151845455169678],[122,211,70,6.171098709106445],[122,211,71,6.197380065917969],[122,211,72,6.227060317993164],[122,211,73,6.2464518547058105],[122,211,74,6.255016326904297],[122,211,75,6.258291244506836],[122,211,76,6.258340835571289],[122,211,77,6.256374835968018],[122,211,78,6.252626419067383],[122,211,79,6.243979454040527],[122,212,64,6.151723384857178],[122,212,65,6.152887344360352],[122,212,66,6.14828634262085],[122,212,67,6.14301872253418],[122,212,68,6.142638206481934],[122,212,69,6.151845455169678],[122,212,70,6.171098709106445],[122,212,71,6.197380065917969],[122,212,72,6.227060317993164],[122,212,73,6.2464518547058105],[122,212,74,6.255016326904297],[122,212,75,6.258291244506836],[122,212,76,6.258340835571289],[122,212,77,6.256374835968018],[122,212,78,6.252626419067383],[122,212,79,6.243979454040527],[122,213,64,6.151723384857178],[122,213,65,6.152887344360352],[122,213,66,6.14828634262085],[122,213,67,6.14301872253418],[122,213,68,6.142638206481934],[122,213,69,6.151845455169678],[122,213,70,6.171098709106445],[122,213,71,6.197380065917969],[122,213,72,6.227060317993164],[122,213,73,6.2464518547058105],[122,213,74,6.255016326904297],[122,213,75,6.258291244506836],[122,213,76,6.258340835571289],[122,213,77,6.256374835968018],[122,213,78,6.252626419067383],[122,213,79,6.243979454040527],[122,214,64,6.151723384857178],[122,214,65,6.152887344360352],[122,214,66,6.14828634262085],[122,214,67,6.14301872253418],[122,214,68,6.142638206481934],[122,214,69,6.151845455169678],[122,214,70,6.171098709106445],[122,214,71,6.197380065917969],[122,214,72,6.227060317993164],[122,214,73,6.2464518547058105],[122,214,74,6.255016326904297],[122,214,75,6.258291244506836],[122,214,76,6.258340835571289],[122,214,77,6.256374835968018],[122,214,78,6.252626419067383],[122,214,79,6.243979454040527],[122,215,64,6.151723384857178],[122,215,65,6.152887344360352],[122,215,66,6.14828634262085],[122,215,67,6.14301872253418],[122,215,68,6.142638206481934],[122,215,69,6.151845455169678],[122,215,70,6.171098709106445],[122,215,71,6.197380065917969],[122,215,72,6.227060317993164],[122,215,73,6.2464518547058105],[122,215,74,6.255016326904297],[122,215,75,6.258291244506836],[122,215,76,6.258340835571289],[122,215,77,6.256374835968018],[122,215,78,6.252626419067383],[122,215,79,6.243979454040527],[122,216,64,6.151723384857178],[122,216,65,6.152887344360352],[122,216,66,6.14828634262085],[122,216,67,6.14301872253418],[122,216,68,6.142638206481934],[122,216,69,6.151845455169678],[122,216,70,6.171098709106445],[122,216,71,6.197380065917969],[122,216,72,6.227060317993164],[122,216,73,6.2464518547058105],[122,216,74,6.255016326904297],[122,216,75,6.258291244506836],[122,216,76,6.258340835571289],[122,216,77,6.256374835968018],[122,216,78,6.252626419067383],[122,216,79,6.243979454040527],[122,217,64,6.151723384857178],[122,217,65,6.152887344360352],[122,217,66,6.14828634262085],[122,217,67,6.14301872253418],[122,217,68,6.142638206481934],[122,217,69,6.151845455169678],[122,217,70,6.171098709106445],[122,217,71,6.197380065917969],[122,217,72,6.227060317993164],[122,217,73,6.2464518547058105],[122,217,74,6.255016326904297],[122,217,75,6.258291244506836],[122,217,76,6.258340835571289],[122,217,77,6.256374835968018],[122,217,78,6.252626419067383],[122,217,79,6.243979454040527],[122,218,64,6.151723384857178],[122,218,65,6.152887344360352],[122,218,66,6.14828634262085],[122,218,67,6.14301872253418],[122,218,68,6.142638206481934],[122,218,69,6.151845455169678],[122,218,70,6.171098709106445],[122,218,71,6.197380065917969],[122,218,72,6.227060317993164],[122,218,73,6.2464518547058105],[122,218,74,6.255016326904297],[122,218,75,6.258291244506836],[122,218,76,6.258340835571289],[122,218,77,6.256374835968018],[122,218,78,6.252626419067383],[122,218,79,6.243979454040527],[122,219,64,6.151723384857178],[122,219,65,6.152887344360352],[122,219,66,6.14828634262085],[122,219,67,6.14301872253418],[122,219,68,6.142638206481934],[122,219,69,6.151845455169678],[122,219,70,6.171098709106445],[122,219,71,6.197380065917969],[122,219,72,6.227060317993164],[122,219,73,6.2464518547058105],[122,219,74,6.255016326904297],[122,219,75,6.258291244506836],[122,219,76,6.258340835571289],[122,219,77,6.256374835968018],[122,219,78,6.252626419067383],[122,219,79,6.243979454040527],[122,220,64,6.151723384857178],[122,220,65,6.152887344360352],[122,220,66,6.14828634262085],[122,220,67,6.14301872253418],[122,220,68,6.142638206481934],[122,220,69,6.151845455169678],[122,220,70,6.171098709106445],[122,220,71,6.197380065917969],[122,220,72,6.227060317993164],[122,220,73,6.2464518547058105],[122,220,74,6.255016326904297],[122,220,75,6.258291244506836],[122,220,76,6.258340835571289],[122,220,77,6.256374835968018],[122,220,78,6.252626419067383],[122,220,79,6.243979454040527],[122,221,64,6.151723384857178],[122,221,65,6.152887344360352],[122,221,66,6.14828634262085],[122,221,67,6.14301872253418],[122,221,68,6.142638206481934],[122,221,69,6.151845455169678],[122,221,70,6.171098709106445],[122,221,71,6.197380065917969],[122,221,72,6.227060317993164],[122,221,73,6.2464518547058105],[122,221,74,6.255016326904297],[122,221,75,6.258291244506836],[122,221,76,6.258340835571289],[122,221,77,6.256374835968018],[122,221,78,6.252626419067383],[122,221,79,6.243979454040527],[122,222,64,6.151723384857178],[122,222,65,6.152887344360352],[122,222,66,6.14828634262085],[122,222,67,6.14301872253418],[122,222,68,6.142638206481934],[122,222,69,6.151845455169678],[122,222,70,6.171098709106445],[122,222,71,6.197380065917969],[122,222,72,6.227060317993164],[122,222,73,6.2464518547058105],[122,222,74,6.255016326904297],[122,222,75,6.258291244506836],[122,222,76,6.258340835571289],[122,222,77,6.256374835968018],[122,222,78,6.252626419067383],[122,222,79,6.243979454040527],[122,223,64,6.151723384857178],[122,223,65,6.152887344360352],[122,223,66,6.14828634262085],[122,223,67,6.14301872253418],[122,223,68,6.142638206481934],[122,223,69,6.151845455169678],[122,223,70,6.171098709106445],[122,223,71,6.197380065917969],[122,223,72,6.227060317993164],[122,223,73,6.2464518547058105],[122,223,74,6.255016326904297],[122,223,75,6.258291244506836],[122,223,76,6.258340835571289],[122,223,77,6.256374835968018],[122,223,78,6.252626419067383],[122,223,79,6.243979454040527],[122,224,64,6.151723384857178],[122,224,65,6.152887344360352],[122,224,66,6.14828634262085],[122,224,67,6.14301872253418],[122,224,68,6.142638206481934],[122,224,69,6.151845455169678],[122,224,70,6.171098709106445],[122,224,71,6.197380065917969],[122,224,72,6.227060317993164],[122,224,73,6.2464518547058105],[122,224,74,6.255016326904297],[122,224,75,6.258291244506836],[122,224,76,6.258340835571289],[122,224,77,6.256374835968018],[122,224,78,6.252626419067383],[122,224,79,6.243979454040527],[122,225,64,6.151723384857178],[122,225,65,6.152887344360352],[122,225,66,6.14828634262085],[122,225,67,6.14301872253418],[122,225,68,6.142638206481934],[122,225,69,6.151845455169678],[122,225,70,6.171098709106445],[122,225,71,6.197380065917969],[122,225,72,6.227060317993164],[122,225,73,6.2464518547058105],[122,225,74,6.255016326904297],[122,225,75,6.258291244506836],[122,225,76,6.258340835571289],[122,225,77,6.256374835968018],[122,225,78,6.252626419067383],[122,225,79,6.243979454040527],[122,226,64,6.151723384857178],[122,226,65,6.152887344360352],[122,226,66,6.14828634262085],[122,226,67,6.14301872253418],[122,226,68,6.142638206481934],[122,226,69,6.151845455169678],[122,226,70,6.171098709106445],[122,226,71,6.197380065917969],[122,226,72,6.227060317993164],[122,226,73,6.2464518547058105],[122,226,74,6.255016326904297],[122,226,75,6.258291244506836],[122,226,76,6.258340835571289],[122,226,77,6.256374835968018],[122,226,78,6.252626419067383],[122,226,79,6.243979454040527],[122,227,64,6.151723384857178],[122,227,65,6.152887344360352],[122,227,66,6.14828634262085],[122,227,67,6.14301872253418],[122,227,68,6.142638206481934],[122,227,69,6.151845455169678],[122,227,70,6.171098709106445],[122,227,71,6.197380065917969],[122,227,72,6.227060317993164],[122,227,73,6.2464518547058105],[122,227,74,6.255016326904297],[122,227,75,6.258291244506836],[122,227,76,6.258340835571289],[122,227,77,6.256374835968018],[122,227,78,6.252626419067383],[122,227,79,6.243979454040527],[122,228,64,6.151723384857178],[122,228,65,6.152887344360352],[122,228,66,6.14828634262085],[122,228,67,6.14301872253418],[122,228,68,6.142638206481934],[122,228,69,6.151845455169678],[122,228,70,6.171098709106445],[122,228,71,6.197380065917969],[122,228,72,6.227060317993164],[122,228,73,6.2464518547058105],[122,228,74,6.255016326904297],[122,228,75,6.258291244506836],[122,228,76,6.258340835571289],[122,228,77,6.256374835968018],[122,228,78,6.252626419067383],[122,228,79,6.243979454040527],[122,229,64,6.151723384857178],[122,229,65,6.152887344360352],[122,229,66,6.14828634262085],[122,229,67,6.14301872253418],[122,229,68,6.142638206481934],[122,229,69,6.151845455169678],[122,229,70,6.171098709106445],[122,229,71,6.197380065917969],[122,229,72,6.227060317993164],[122,229,73,6.2464518547058105],[122,229,74,6.255016326904297],[122,229,75,6.258291244506836],[122,229,76,6.258340835571289],[122,229,77,6.256374835968018],[122,229,78,6.252626419067383],[122,229,79,6.243979454040527],[122,230,64,6.151723384857178],[122,230,65,6.152887344360352],[122,230,66,6.14828634262085],[122,230,67,6.14301872253418],[122,230,68,6.142638206481934],[122,230,69,6.151845455169678],[122,230,70,6.171098709106445],[122,230,71,6.197380065917969],[122,230,72,6.227060317993164],[122,230,73,6.2464518547058105],[122,230,74,6.255016326904297],[122,230,75,6.258291244506836],[122,230,76,6.258340835571289],[122,230,77,6.256374835968018],[122,230,78,6.252626419067383],[122,230,79,6.243979454040527],[122,231,64,6.151723384857178],[122,231,65,6.152887344360352],[122,231,66,6.14828634262085],[122,231,67,6.14301872253418],[122,231,68,6.142638206481934],[122,231,69,6.151845455169678],[122,231,70,6.171098709106445],[122,231,71,6.197380065917969],[122,231,72,6.227060317993164],[122,231,73,6.2464518547058105],[122,231,74,6.255016326904297],[122,231,75,6.258291244506836],[122,231,76,6.258340835571289],[122,231,77,6.256374835968018],[122,231,78,6.252626419067383],[122,231,79,6.243979454040527],[122,232,64,6.151723384857178],[122,232,65,6.152887344360352],[122,232,66,6.14828634262085],[122,232,67,6.14301872253418],[122,232,68,6.142638206481934],[122,232,69,6.151845455169678],[122,232,70,6.171098709106445],[122,232,71,6.197380065917969],[122,232,72,6.227060317993164],[122,232,73,6.2464518547058105],[122,232,74,6.255016326904297],[122,232,75,6.258291244506836],[122,232,76,6.258340835571289],[122,232,77,6.256374835968018],[122,232,78,6.252626419067383],[122,232,79,6.243979454040527],[122,233,64,6.151723384857178],[122,233,65,6.152887344360352],[122,233,66,6.14828634262085],[122,233,67,6.14301872253418],[122,233,68,6.142638206481934],[122,233,69,6.151845455169678],[122,233,70,6.171098709106445],[122,233,71,6.197380065917969],[122,233,72,6.227060317993164],[122,233,73,6.2464518547058105],[122,233,74,6.255016326904297],[122,233,75,6.258291244506836],[122,233,76,6.258340835571289],[122,233,77,6.256374835968018],[122,233,78,6.252626419067383],[122,233,79,6.243979454040527],[122,234,64,6.151723384857178],[122,234,65,6.152887344360352],[122,234,66,6.14828634262085],[122,234,67,6.14301872253418],[122,234,68,6.142638206481934],[122,234,69,6.151845455169678],[122,234,70,6.171098709106445],[122,234,71,6.197380065917969],[122,234,72,6.227060317993164],[122,234,73,6.2464518547058105],[122,234,74,6.255016326904297],[122,234,75,6.258291244506836],[122,234,76,6.258340835571289],[122,234,77,6.256374835968018],[122,234,78,6.252626419067383],[122,234,79,6.243979454040527],[122,235,64,6.151723384857178],[122,235,65,6.152887344360352],[122,235,66,6.14828634262085],[122,235,67,6.14301872253418],[122,235,68,6.142638206481934],[122,235,69,6.151845455169678],[122,235,70,6.171098709106445],[122,235,71,6.197380065917969],[122,235,72,6.227060317993164],[122,235,73,6.2464518547058105],[122,235,74,6.255016326904297],[122,235,75,6.258291244506836],[122,235,76,6.258340835571289],[122,235,77,6.256374835968018],[122,235,78,6.252626419067383],[122,235,79,6.243979454040527],[122,236,64,6.151723384857178],[122,236,65,6.152887344360352],[122,236,66,6.14828634262085],[122,236,67,6.14301872253418],[122,236,68,6.142638206481934],[122,236,69,6.151845455169678],[122,236,70,6.171098709106445],[122,236,71,6.197380065917969],[122,236,72,6.227060317993164],[122,236,73,6.2464518547058105],[122,236,74,6.255016326904297],[122,236,75,6.258291244506836],[122,236,76,6.258340835571289],[122,236,77,6.256374835968018],[122,236,78,6.252626419067383],[122,236,79,6.243979454040527],[122,237,64,6.151723384857178],[122,237,65,6.152887344360352],[122,237,66,6.14828634262085],[122,237,67,6.14301872253418],[122,237,68,6.142638206481934],[122,237,69,6.151845455169678],[122,237,70,6.171098709106445],[122,237,71,6.197380065917969],[122,237,72,6.227060317993164],[122,237,73,6.2464518547058105],[122,237,74,6.255016326904297],[122,237,75,6.258291244506836],[122,237,76,6.258340835571289],[122,237,77,6.256374835968018],[122,237,78,6.252626419067383],[122,237,79,6.243979454040527],[122,238,64,6.151723384857178],[122,238,65,6.152887344360352],[122,238,66,6.14828634262085],[122,238,67,6.14301872253418],[122,238,68,6.142638206481934],[122,238,69,6.151845455169678],[122,238,70,6.171098709106445],[122,238,71,6.197380065917969],[122,238,72,6.227060317993164],[122,238,73,6.2464518547058105],[122,238,74,6.255016326904297],[122,238,75,6.258291244506836],[122,238,76,6.258340835571289],[122,238,77,6.256374835968018],[122,238,78,6.252626419067383],[122,238,79,6.243979454040527],[122,239,64,6.151723384857178],[122,239,65,6.152887344360352],[122,239,66,6.14828634262085],[122,239,67,6.14301872253418],[122,239,68,6.142638206481934],[122,239,69,6.151845455169678],[122,239,70,6.171098709106445],[122,239,71,6.197380065917969],[122,239,72,6.227060317993164],[122,239,73,6.2464518547058105],[122,239,74,6.255016326904297],[122,239,75,6.258291244506836],[122,239,76,6.258340835571289],[122,239,77,6.256374835968018],[122,239,78,6.252626419067383],[122,239,79,6.243979454040527],[122,240,64,6.151723384857178],[122,240,65,6.152887344360352],[122,240,66,6.14828634262085],[122,240,67,6.14301872253418],[122,240,68,6.142638206481934],[122,240,69,6.151845455169678],[122,240,70,6.171098709106445],[122,240,71,6.197380065917969],[122,240,72,6.227060317993164],[122,240,73,6.2464518547058105],[122,240,74,6.255016326904297],[122,240,75,6.258291244506836],[122,240,76,6.258340835571289],[122,240,77,6.256374835968018],[122,240,78,6.252626419067383],[122,240,79,6.243979454040527],[122,241,64,6.151723384857178],[122,241,65,6.152887344360352],[122,241,66,6.14828634262085],[122,241,67,6.14301872253418],[122,241,68,6.142638206481934],[122,241,69,6.151845455169678],[122,241,70,6.171098709106445],[122,241,71,6.197380065917969],[122,241,72,6.227060317993164],[122,241,73,6.2464518547058105],[122,241,74,6.255016326904297],[122,241,75,6.258291244506836],[122,241,76,6.258340835571289],[122,241,77,6.256374835968018],[122,241,78,6.252626419067383],[122,241,79,6.243979454040527],[122,242,64,6.151723384857178],[122,242,65,6.152887344360352],[122,242,66,6.14828634262085],[122,242,67,6.14301872253418],[122,242,68,6.142638206481934],[122,242,69,6.151845455169678],[122,242,70,6.171098709106445],[122,242,71,6.197380065917969],[122,242,72,6.227060317993164],[122,242,73,6.2464518547058105],[122,242,74,6.255016326904297],[122,242,75,6.258291244506836],[122,242,76,6.258340835571289],[122,242,77,6.256374835968018],[122,242,78,6.252626419067383],[122,242,79,6.243979454040527],[122,243,64,6.151723384857178],[122,243,65,6.152887344360352],[122,243,66,6.14828634262085],[122,243,67,6.14301872253418],[122,243,68,6.142638206481934],[122,243,69,6.151845455169678],[122,243,70,6.171098709106445],[122,243,71,6.197380065917969],[122,243,72,6.227060317993164],[122,243,73,6.2464518547058105],[122,243,74,6.255016326904297],[122,243,75,6.258291244506836],[122,243,76,6.258340835571289],[122,243,77,6.256374835968018],[122,243,78,6.252626419067383],[122,243,79,6.243979454040527],[122,244,64,6.151723384857178],[122,244,65,6.152887344360352],[122,244,66,6.14828634262085],[122,244,67,6.14301872253418],[122,244,68,6.142638206481934],[122,244,69,6.151845455169678],[122,244,70,6.171098709106445],[122,244,71,6.197380065917969],[122,244,72,6.227060317993164],[122,244,73,6.2464518547058105],[122,244,74,6.255016326904297],[122,244,75,6.258291244506836],[122,244,76,6.258340835571289],[122,244,77,6.256374835968018],[122,244,78,6.252626419067383],[122,244,79,6.243979454040527],[122,245,64,6.151723384857178],[122,245,65,6.152887344360352],[122,245,66,6.14828634262085],[122,245,67,6.14301872253418],[122,245,68,6.142638206481934],[122,245,69,6.151845455169678],[122,245,70,6.171098709106445],[122,245,71,6.197380065917969],[122,245,72,6.227060317993164],[122,245,73,6.2464518547058105],[122,245,74,6.255016326904297],[122,245,75,6.258291244506836],[122,245,76,6.258340835571289],[122,245,77,6.256374835968018],[122,245,78,6.252626419067383],[122,245,79,6.243979454040527],[122,246,64,6.151723384857178],[122,246,65,6.152887344360352],[122,246,66,6.14828634262085],[122,246,67,6.14301872253418],[122,246,68,6.142638206481934],[122,246,69,6.151845455169678],[122,246,70,6.171098709106445],[122,246,71,6.197380065917969],[122,246,72,6.227060317993164],[122,246,73,6.2464518547058105],[122,246,74,6.255016326904297],[122,246,75,6.258291244506836],[122,246,76,6.258340835571289],[122,246,77,6.256374835968018],[122,246,78,6.252626419067383],[122,246,79,6.243979454040527],[122,247,64,6.151723384857178],[122,247,65,6.152887344360352],[122,247,66,6.14828634262085],[122,247,67,6.14301872253418],[122,247,68,6.142638206481934],[122,247,69,6.151845455169678],[122,247,70,6.171098709106445],[122,247,71,6.197380065917969],[122,247,72,6.227060317993164],[122,247,73,6.2464518547058105],[122,247,74,6.255016326904297],[122,247,75,6.258291244506836],[122,247,76,6.258340835571289],[122,247,77,6.256374835968018],[122,247,78,6.252626419067383],[122,247,79,6.243979454040527],[122,248,64,6.151723384857178],[122,248,65,6.152887344360352],[122,248,66,6.14828634262085],[122,248,67,6.14301872253418],[122,248,68,6.142638206481934],[122,248,69,6.151845455169678],[122,248,70,6.171098709106445],[122,248,71,6.197380065917969],[122,248,72,6.227060317993164],[122,248,73,6.2464518547058105],[122,248,74,6.255016326904297],[122,248,75,6.258291244506836],[122,248,76,6.258340835571289],[122,248,77,6.256374835968018],[122,248,78,6.252626419067383],[122,248,79,6.243979454040527],[122,249,64,6.151723384857178],[122,249,65,6.152887344360352],[122,249,66,6.14828634262085],[122,249,67,6.14301872253418],[122,249,68,6.142638206481934],[122,249,69,6.151845455169678],[122,249,70,6.171098709106445],[122,249,71,6.197380065917969],[122,249,72,6.227060317993164],[122,249,73,6.2464518547058105],[122,249,74,6.255016326904297],[122,249,75,6.258291244506836],[122,249,76,6.258340835571289],[122,249,77,6.256374835968018],[122,249,78,6.252626419067383],[122,249,79,6.243979454040527],[122,250,64,6.151723384857178],[122,250,65,6.152887344360352],[122,250,66,6.14828634262085],[122,250,67,6.14301872253418],[122,250,68,6.142638206481934],[122,250,69,6.151845455169678],[122,250,70,6.171098709106445],[122,250,71,6.197380065917969],[122,250,72,6.227060317993164],[122,250,73,6.2464518547058105],[122,250,74,6.255016326904297],[122,250,75,6.258291244506836],[122,250,76,6.258340835571289],[122,250,77,6.256374835968018],[122,250,78,6.252626419067383],[122,250,79,6.243979454040527],[122,251,64,6.151723384857178],[122,251,65,6.152887344360352],[122,251,66,6.14828634262085],[122,251,67,6.14301872253418],[122,251,68,6.142638206481934],[122,251,69,6.151845455169678],[122,251,70,6.171098709106445],[122,251,71,6.197380065917969],[122,251,72,6.227060317993164],[122,251,73,6.2464518547058105],[122,251,74,6.255016326904297],[122,251,75,6.258291244506836],[122,251,76,6.258340835571289],[122,251,77,6.256374835968018],[122,251,78,6.252626419067383],[122,251,79,6.243979454040527],[122,252,64,6.151723384857178],[122,252,65,6.152887344360352],[122,252,66,6.14828634262085],[122,252,67,6.14301872253418],[122,252,68,6.142638206481934],[122,252,69,6.151845455169678],[122,252,70,6.171098709106445],[122,252,71,6.197380065917969],[122,252,72,6.227060317993164],[122,252,73,6.2464518547058105],[122,252,74,6.255016326904297],[122,252,75,6.258291244506836],[122,252,76,6.258340835571289],[122,252,77,6.256374835968018],[122,252,78,6.252626419067383],[122,252,79,6.243979454040527],[122,253,64,6.151723384857178],[122,253,65,6.152887344360352],[122,253,66,6.14828634262085],[122,253,67,6.14301872253418],[122,253,68,6.142638206481934],[122,253,69,6.151845455169678],[122,253,70,6.171098709106445],[122,253,71,6.197380065917969],[122,253,72,6.227060317993164],[122,253,73,6.2464518547058105],[122,253,74,6.255016326904297],[122,253,75,6.258291244506836],[122,253,76,6.258340835571289],[122,253,77,6.256374835968018],[122,253,78,6.252626419067383],[122,253,79,6.243979454040527],[122,254,64,6.151723384857178],[122,254,65,6.152887344360352],[122,254,66,6.14828634262085],[122,254,67,6.14301872253418],[122,254,68,6.142638206481934],[122,254,69,6.151845455169678],[122,254,70,6.171098709106445],[122,254,71,6.197380065917969],[122,254,72,6.227060317993164],[122,254,73,6.2464518547058105],[122,254,74,6.255016326904297],[122,254,75,6.258291244506836],[122,254,76,6.258340835571289],[122,254,77,6.256374835968018],[122,254,78,6.252626419067383],[122,254,79,6.243979454040527],[122,255,64,6.151723384857178],[122,255,65,6.152887344360352],[122,255,66,6.14828634262085],[122,255,67,6.14301872253418],[122,255,68,6.142638206481934],[122,255,69,6.151845455169678],[122,255,70,6.171098709106445],[122,255,71,6.197380065917969],[122,255,72,6.227060317993164],[122,255,73,6.2464518547058105],[122,255,74,6.255016326904297],[122,255,75,6.258291244506836],[122,255,76,6.258340835571289],[122,255,77,6.256374835968018],[122,255,78,6.252626419067383],[122,255,79,6.243979454040527],[122,256,64,6.151723384857178],[122,256,65,6.152887344360352],[122,256,66,6.14828634262085],[122,256,67,6.14301872253418],[122,256,68,6.142638206481934],[122,256,69,6.151845455169678],[122,256,70,6.171098709106445],[122,256,71,6.197380065917969],[122,256,72,6.227060317993164],[122,256,73,6.2464518547058105],[122,256,74,6.255016326904297],[122,256,75,6.258291244506836],[122,256,76,6.258340835571289],[122,256,77,6.256374835968018],[122,256,78,6.252626419067383],[122,256,79,6.243979454040527],[122,257,64,6.151723384857178],[122,257,65,6.152887344360352],[122,257,66,6.14828634262085],[122,257,67,6.14301872253418],[122,257,68,6.142638206481934],[122,257,69,6.151845455169678],[122,257,70,6.171098709106445],[122,257,71,6.197380065917969],[122,257,72,6.227060317993164],[122,257,73,6.2464518547058105],[122,257,74,6.255016326904297],[122,257,75,6.258291244506836],[122,257,76,6.258340835571289],[122,257,77,6.256374835968018],[122,257,78,6.252626419067383],[122,257,79,6.243979454040527],[122,258,64,6.151723384857178],[122,258,65,6.152887344360352],[122,258,66,6.14828634262085],[122,258,67,6.14301872253418],[122,258,68,6.142638206481934],[122,258,69,6.151845455169678],[122,258,70,6.171098709106445],[122,258,71,6.197380065917969],[122,258,72,6.227060317993164],[122,258,73,6.2464518547058105],[122,258,74,6.255016326904297],[122,258,75,6.258291244506836],[122,258,76,6.258340835571289],[122,258,77,6.256374835968018],[122,258,78,6.252626419067383],[122,258,79,6.243979454040527],[122,259,64,6.151723384857178],[122,259,65,6.152887344360352],[122,259,66,6.14828634262085],[122,259,67,6.14301872253418],[122,259,68,6.142638206481934],[122,259,69,6.151845455169678],[122,259,70,6.171098709106445],[122,259,71,6.197380065917969],[122,259,72,6.227060317993164],[122,259,73,6.2464518547058105],[122,259,74,6.255016326904297],[122,259,75,6.258291244506836],[122,259,76,6.258340835571289],[122,259,77,6.256374835968018],[122,259,78,6.252626419067383],[122,259,79,6.243979454040527],[122,260,64,6.151723384857178],[122,260,65,6.152887344360352],[122,260,66,6.14828634262085],[122,260,67,6.14301872253418],[122,260,68,6.142638206481934],[122,260,69,6.151845455169678],[122,260,70,6.171098709106445],[122,260,71,6.197380065917969],[122,260,72,6.227060317993164],[122,260,73,6.2464518547058105],[122,260,74,6.255016326904297],[122,260,75,6.258291244506836],[122,260,76,6.258340835571289],[122,260,77,6.256374835968018],[122,260,78,6.252626419067383],[122,260,79,6.243979454040527],[122,261,64,6.151723384857178],[122,261,65,6.152887344360352],[122,261,66,6.14828634262085],[122,261,67,6.14301872253418],[122,261,68,6.142638206481934],[122,261,69,6.151845455169678],[122,261,70,6.171098709106445],[122,261,71,6.197380065917969],[122,261,72,6.227060317993164],[122,261,73,6.2464518547058105],[122,261,74,6.255016326904297],[122,261,75,6.258291244506836],[122,261,76,6.258340835571289],[122,261,77,6.256374835968018],[122,261,78,6.252626419067383],[122,261,79,6.243979454040527],[122,262,64,6.151723384857178],[122,262,65,6.152887344360352],[122,262,66,6.14828634262085],[122,262,67,6.14301872253418],[122,262,68,6.142638206481934],[122,262,69,6.151845455169678],[122,262,70,6.171098709106445],[122,262,71,6.197380065917969],[122,262,72,6.227060317993164],[122,262,73,6.2464518547058105],[122,262,74,6.255016326904297],[122,262,75,6.258291244506836],[122,262,76,6.258340835571289],[122,262,77,6.256374835968018],[122,262,78,6.252626419067383],[122,262,79,6.243979454040527],[122,263,64,6.151723384857178],[122,263,65,6.152887344360352],[122,263,66,6.14828634262085],[122,263,67,6.14301872253418],[122,263,68,6.142638206481934],[122,263,69,6.151845455169678],[122,263,70,6.171098709106445],[122,263,71,6.197380065917969],[122,263,72,6.227060317993164],[122,263,73,6.2464518547058105],[122,263,74,6.255016326904297],[122,263,75,6.258291244506836],[122,263,76,6.258340835571289],[122,263,77,6.256374835968018],[122,263,78,6.252626419067383],[122,263,79,6.243979454040527],[122,264,64,6.151723384857178],[122,264,65,6.152887344360352],[122,264,66,6.14828634262085],[122,264,67,6.14301872253418],[122,264,68,6.142638206481934],[122,264,69,6.151845455169678],[122,264,70,6.171098709106445],[122,264,71,6.197380065917969],[122,264,72,6.227060317993164],[122,264,73,6.2464518547058105],[122,264,74,6.255016326904297],[122,264,75,6.258291244506836],[122,264,76,6.258340835571289],[122,264,77,6.256374835968018],[122,264,78,6.252626419067383],[122,264,79,6.243979454040527],[122,265,64,6.151723384857178],[122,265,65,6.152887344360352],[122,265,66,6.14828634262085],[122,265,67,6.14301872253418],[122,265,68,6.142638206481934],[122,265,69,6.151845455169678],[122,265,70,6.171098709106445],[122,265,71,6.197380065917969],[122,265,72,6.227060317993164],[122,265,73,6.2464518547058105],[122,265,74,6.255016326904297],[122,265,75,6.258291244506836],[122,265,76,6.258340835571289],[122,265,77,6.256374835968018],[122,265,78,6.252626419067383],[122,265,79,6.243979454040527],[122,266,64,6.151723384857178],[122,266,65,6.152887344360352],[122,266,66,6.14828634262085],[122,266,67,6.14301872253418],[122,266,68,6.142638206481934],[122,266,69,6.151845455169678],[122,266,70,6.171098709106445],[122,266,71,6.197380065917969],[122,266,72,6.227060317993164],[122,266,73,6.2464518547058105],[122,266,74,6.255016326904297],[122,266,75,6.258291244506836],[122,266,76,6.258340835571289],[122,266,77,6.256374835968018],[122,266,78,6.252626419067383],[122,266,79,6.243979454040527],[122,267,64,6.151723384857178],[122,267,65,6.152887344360352],[122,267,66,6.14828634262085],[122,267,67,6.14301872253418],[122,267,68,6.142638206481934],[122,267,69,6.151845455169678],[122,267,70,6.171098709106445],[122,267,71,6.197380065917969],[122,267,72,6.227060317993164],[122,267,73,6.2464518547058105],[122,267,74,6.255016326904297],[122,267,75,6.258291244506836],[122,267,76,6.258340835571289],[122,267,77,6.256374835968018],[122,267,78,6.252626419067383],[122,267,79,6.243979454040527],[122,268,64,6.151723384857178],[122,268,65,6.152887344360352],[122,268,66,6.14828634262085],[122,268,67,6.14301872253418],[122,268,68,6.142638206481934],[122,268,69,6.151845455169678],[122,268,70,6.171098709106445],[122,268,71,6.197380065917969],[122,268,72,6.227060317993164],[122,268,73,6.2464518547058105],[122,268,74,6.255016326904297],[122,268,75,6.258291244506836],[122,268,76,6.258340835571289],[122,268,77,6.256374835968018],[122,268,78,6.252626419067383],[122,268,79,6.243979454040527],[122,269,64,6.151723384857178],[122,269,65,6.152887344360352],[122,269,66,6.14828634262085],[122,269,67,6.14301872253418],[122,269,68,6.142638206481934],[122,269,69,6.151845455169678],[122,269,70,6.171098709106445],[122,269,71,6.197380065917969],[122,269,72,6.227060317993164],[122,269,73,6.2464518547058105],[122,269,74,6.255016326904297],[122,269,75,6.258291244506836],[122,269,76,6.258340835571289],[122,269,77,6.256374835968018],[122,269,78,6.252626419067383],[122,269,79,6.243979454040527],[122,270,64,6.151723384857178],[122,270,65,6.152887344360352],[122,270,66,6.14828634262085],[122,270,67,6.14301872253418],[122,270,68,6.142638206481934],[122,270,69,6.151845455169678],[122,270,70,6.171098709106445],[122,270,71,6.197380065917969],[122,270,72,6.227060317993164],[122,270,73,6.2464518547058105],[122,270,74,6.255016326904297],[122,270,75,6.258291244506836],[122,270,76,6.258340835571289],[122,270,77,6.256374835968018],[122,270,78,6.252626419067383],[122,270,79,6.243979454040527],[122,271,64,6.151723384857178],[122,271,65,6.152887344360352],[122,271,66,6.14828634262085],[122,271,67,6.14301872253418],[122,271,68,6.142638206481934],[122,271,69,6.151845455169678],[122,271,70,6.171098709106445],[122,271,71,6.197380065917969],[122,271,72,6.227060317993164],[122,271,73,6.2464518547058105],[122,271,74,6.255016326904297],[122,271,75,6.258291244506836],[122,271,76,6.258340835571289],[122,271,77,6.256374835968018],[122,271,78,6.252626419067383],[122,271,79,6.243979454040527],[122,272,64,6.151723384857178],[122,272,65,6.152887344360352],[122,272,66,6.14828634262085],[122,272,67,6.14301872253418],[122,272,68,6.142638206481934],[122,272,69,6.151845455169678],[122,272,70,6.171098709106445],[122,272,71,6.197380065917969],[122,272,72,6.227060317993164],[122,272,73,6.2464518547058105],[122,272,74,6.255016326904297],[122,272,75,6.258291244506836],[122,272,76,6.258340835571289],[122,272,77,6.256374835968018],[122,272,78,6.252626419067383],[122,272,79,6.243979454040527],[122,273,64,6.151723384857178],[122,273,65,6.152887344360352],[122,273,66,6.14828634262085],[122,273,67,6.14301872253418],[122,273,68,6.142638206481934],[122,273,69,6.151845455169678],[122,273,70,6.171098709106445],[122,273,71,6.197380065917969],[122,273,72,6.227060317993164],[122,273,73,6.2464518547058105],[122,273,74,6.255016326904297],[122,273,75,6.258291244506836],[122,273,76,6.258340835571289],[122,273,77,6.256374835968018],[122,273,78,6.252626419067383],[122,273,79,6.243979454040527],[122,274,64,6.151723384857178],[122,274,65,6.152887344360352],[122,274,66,6.14828634262085],[122,274,67,6.14301872253418],[122,274,68,6.142638206481934],[122,274,69,6.151845455169678],[122,274,70,6.171098709106445],[122,274,71,6.197380065917969],[122,274,72,6.227060317993164],[122,274,73,6.2464518547058105],[122,274,74,6.255016326904297],[122,274,75,6.258291244506836],[122,274,76,6.258340835571289],[122,274,77,6.256374835968018],[122,274,78,6.252626419067383],[122,274,79,6.243979454040527],[122,275,64,6.151723384857178],[122,275,65,6.152887344360352],[122,275,66,6.14828634262085],[122,275,67,6.14301872253418],[122,275,68,6.142638206481934],[122,275,69,6.151845455169678],[122,275,70,6.171098709106445],[122,275,71,6.197380065917969],[122,275,72,6.227060317993164],[122,275,73,6.2464518547058105],[122,275,74,6.255016326904297],[122,275,75,6.258291244506836],[122,275,76,6.258340835571289],[122,275,77,6.256374835968018],[122,275,78,6.252626419067383],[122,275,79,6.243979454040527],[122,276,64,6.151723384857178],[122,276,65,6.152887344360352],[122,276,66,6.14828634262085],[122,276,67,6.14301872253418],[122,276,68,6.142638206481934],[122,276,69,6.151845455169678],[122,276,70,6.171098709106445],[122,276,71,6.197380065917969],[122,276,72,6.227060317993164],[122,276,73,6.2464518547058105],[122,276,74,6.255016326904297],[122,276,75,6.258291244506836],[122,276,76,6.258340835571289],[122,276,77,6.256374835968018],[122,276,78,6.252626419067383],[122,276,79,6.243979454040527],[122,277,64,6.151723384857178],[122,277,65,6.152887344360352],[122,277,66,6.14828634262085],[122,277,67,6.14301872253418],[122,277,68,6.142638206481934],[122,277,69,6.151845455169678],[122,277,70,6.171098709106445],[122,277,71,6.197380065917969],[122,277,72,6.227060317993164],[122,277,73,6.2464518547058105],[122,277,74,6.255016326904297],[122,277,75,6.258291244506836],[122,277,76,6.258340835571289],[122,277,77,6.256374835968018],[122,277,78,6.252626419067383],[122,277,79,6.243979454040527],[122,278,64,6.151723384857178],[122,278,65,6.152887344360352],[122,278,66,6.14828634262085],[122,278,67,6.14301872253418],[122,278,68,6.142638206481934],[122,278,69,6.151845455169678],[122,278,70,6.171098709106445],[122,278,71,6.197380065917969],[122,278,72,6.227060317993164],[122,278,73,6.2464518547058105],[122,278,74,6.255016326904297],[122,278,75,6.258291244506836],[122,278,76,6.258340835571289],[122,278,77,6.256374835968018],[122,278,78,6.252626419067383],[122,278,79,6.243979454040527],[122,279,64,6.151723384857178],[122,279,65,6.152887344360352],[122,279,66,6.14828634262085],[122,279,67,6.14301872253418],[122,279,68,6.142638206481934],[122,279,69,6.151845455169678],[122,279,70,6.171098709106445],[122,279,71,6.197380065917969],[122,279,72,6.227060317993164],[122,279,73,6.2464518547058105],[122,279,74,6.255016326904297],[122,279,75,6.258291244506836],[122,279,76,6.258340835571289],[122,279,77,6.256374835968018],[122,279,78,6.252626419067383],[122,279,79,6.243979454040527],[122,280,64,6.151723384857178],[122,280,65,6.152887344360352],[122,280,66,6.14828634262085],[122,280,67,6.14301872253418],[122,280,68,6.142638206481934],[122,280,69,6.151845455169678],[122,280,70,6.171098709106445],[122,280,71,6.197380065917969],[122,280,72,6.227060317993164],[122,280,73,6.2464518547058105],[122,280,74,6.255016326904297],[122,280,75,6.258291244506836],[122,280,76,6.258340835571289],[122,280,77,6.256374835968018],[122,280,78,6.252626419067383],[122,280,79,6.243979454040527],[122,281,64,6.151723384857178],[122,281,65,6.152887344360352],[122,281,66,6.14828634262085],[122,281,67,6.14301872253418],[122,281,68,6.142638206481934],[122,281,69,6.151845455169678],[122,281,70,6.171098709106445],[122,281,71,6.197380065917969],[122,281,72,6.227060317993164],[122,281,73,6.2464518547058105],[122,281,74,6.255016326904297],[122,281,75,6.258291244506836],[122,281,76,6.258340835571289],[122,281,77,6.256374835968018],[122,281,78,6.252626419067383],[122,281,79,6.243979454040527],[122,282,64,6.151723384857178],[122,282,65,6.152887344360352],[122,282,66,6.14828634262085],[122,282,67,6.14301872253418],[122,282,68,6.142638206481934],[122,282,69,6.151845455169678],[122,282,70,6.171098709106445],[122,282,71,6.197380065917969],[122,282,72,6.227060317993164],[122,282,73,6.2464518547058105],[122,282,74,6.255016326904297],[122,282,75,6.258291244506836],[122,282,76,6.258340835571289],[122,282,77,6.256374835968018],[122,282,78,6.252626419067383],[122,282,79,6.243979454040527],[122,283,64,6.151723384857178],[122,283,65,6.152887344360352],[122,283,66,6.14828634262085],[122,283,67,6.14301872253418],[122,283,68,6.142638206481934],[122,283,69,6.151845455169678],[122,283,70,6.171098709106445],[122,283,71,6.197380065917969],[122,283,72,6.227060317993164],[122,283,73,6.2464518547058105],[122,283,74,6.255016326904297],[122,283,75,6.258291244506836],[122,283,76,6.258340835571289],[122,283,77,6.256374835968018],[122,283,78,6.252626419067383],[122,283,79,6.243979454040527],[122,284,64,6.151723384857178],[122,284,65,6.152887344360352],[122,284,66,6.14828634262085],[122,284,67,6.14301872253418],[122,284,68,6.142638206481934],[122,284,69,6.151845455169678],[122,284,70,6.171098709106445],[122,284,71,6.197380065917969],[122,284,72,6.227060317993164],[122,284,73,6.2464518547058105],[122,284,74,6.255016326904297],[122,284,75,6.258291244506836],[122,284,76,6.258340835571289],[122,284,77,6.256374835968018],[122,284,78,6.252626419067383],[122,284,79,6.243979454040527],[122,285,64,6.151723384857178],[122,285,65,6.152887344360352],[122,285,66,6.14828634262085],[122,285,67,6.14301872253418],[122,285,68,6.142638206481934],[122,285,69,6.151845455169678],[122,285,70,6.171098709106445],[122,285,71,6.197380065917969],[122,285,72,6.227060317993164],[122,285,73,6.2464518547058105],[122,285,74,6.255016326904297],[122,285,75,6.258291244506836],[122,285,76,6.258340835571289],[122,285,77,6.256374835968018],[122,285,78,6.252626419067383],[122,285,79,6.243979454040527],[122,286,64,6.151723384857178],[122,286,65,6.152887344360352],[122,286,66,6.14828634262085],[122,286,67,6.14301872253418],[122,286,68,6.142638206481934],[122,286,69,6.151845455169678],[122,286,70,6.171098709106445],[122,286,71,6.197380065917969],[122,286,72,6.227060317993164],[122,286,73,6.2464518547058105],[122,286,74,6.255016326904297],[122,286,75,6.258291244506836],[122,286,76,6.258340835571289],[122,286,77,6.256374835968018],[122,286,78,6.252626419067383],[122,286,79,6.243979454040527],[122,287,64,6.151723384857178],[122,287,65,6.152887344360352],[122,287,66,6.14828634262085],[122,287,67,6.14301872253418],[122,287,68,6.142638206481934],[122,287,69,6.151845455169678],[122,287,70,6.171098709106445],[122,287,71,6.197380065917969],[122,287,72,6.227060317993164],[122,287,73,6.2464518547058105],[122,287,74,6.255016326904297],[122,287,75,6.258291244506836],[122,287,76,6.258340835571289],[122,287,77,6.256374835968018],[122,287,78,6.252626419067383],[122,287,79,6.243979454040527],[122,288,64,6.151723384857178],[122,288,65,6.152887344360352],[122,288,66,6.14828634262085],[122,288,67,6.14301872253418],[122,288,68,6.142638206481934],[122,288,69,6.151845455169678],[122,288,70,6.171098709106445],[122,288,71,6.197380065917969],[122,288,72,6.227060317993164],[122,288,73,6.2464518547058105],[122,288,74,6.255016326904297],[122,288,75,6.258291244506836],[122,288,76,6.258340835571289],[122,288,77,6.256374835968018],[122,288,78,6.252626419067383],[122,288,79,6.243979454040527],[122,289,64,6.151723384857178],[122,289,65,6.152887344360352],[122,289,66,6.14828634262085],[122,289,67,6.14301872253418],[122,289,68,6.142638206481934],[122,289,69,6.151845455169678],[122,289,70,6.171098709106445],[122,289,71,6.197380065917969],[122,289,72,6.227060317993164],[122,289,73,6.2464518547058105],[122,289,74,6.255016326904297],[122,289,75,6.258291244506836],[122,289,76,6.258340835571289],[122,289,77,6.256374835968018],[122,289,78,6.252626419067383],[122,289,79,6.243979454040527],[122,290,64,6.151723384857178],[122,290,65,6.152887344360352],[122,290,66,6.14828634262085],[122,290,67,6.14301872253418],[122,290,68,6.142638206481934],[122,290,69,6.151845455169678],[122,290,70,6.171098709106445],[122,290,71,6.197380065917969],[122,290,72,6.227060317993164],[122,290,73,6.2464518547058105],[122,290,74,6.255016326904297],[122,290,75,6.258291244506836],[122,290,76,6.258340835571289],[122,290,77,6.256374835968018],[122,290,78,6.252626419067383],[122,290,79,6.243979454040527],[122,291,64,6.151723384857178],[122,291,65,6.152887344360352],[122,291,66,6.14828634262085],[122,291,67,6.14301872253418],[122,291,68,6.142638206481934],[122,291,69,6.151845455169678],[122,291,70,6.171098709106445],[122,291,71,6.197380065917969],[122,291,72,6.227060317993164],[122,291,73,6.2464518547058105],[122,291,74,6.255016326904297],[122,291,75,6.258291244506836],[122,291,76,6.258340835571289],[122,291,77,6.256374835968018],[122,291,78,6.252626419067383],[122,291,79,6.243979454040527],[122,292,64,6.151723384857178],[122,292,65,6.152887344360352],[122,292,66,6.14828634262085],[122,292,67,6.14301872253418],[122,292,68,6.142638206481934],[122,292,69,6.151845455169678],[122,292,70,6.171098709106445],[122,292,71,6.197380065917969],[122,292,72,6.227060317993164],[122,292,73,6.2464518547058105],[122,292,74,6.255016326904297],[122,292,75,6.258291244506836],[122,292,76,6.258340835571289],[122,292,77,6.256374835968018],[122,292,78,6.252626419067383],[122,292,79,6.243979454040527],[122,293,64,6.151723384857178],[122,293,65,6.152887344360352],[122,293,66,6.14828634262085],[122,293,67,6.14301872253418],[122,293,68,6.142638206481934],[122,293,69,6.151845455169678],[122,293,70,6.171098709106445],[122,293,71,6.197380065917969],[122,293,72,6.227060317993164],[122,293,73,6.2464518547058105],[122,293,74,6.255016326904297],[122,293,75,6.258291244506836],[122,293,76,6.258340835571289],[122,293,77,6.256374835968018],[122,293,78,6.252626419067383],[122,293,79,6.243979454040527],[122,294,64,6.151723384857178],[122,294,65,6.152887344360352],[122,294,66,6.14828634262085],[122,294,67,6.14301872253418],[122,294,68,6.142638206481934],[122,294,69,6.151845455169678],[122,294,70,6.171098709106445],[122,294,71,6.197380065917969],[122,294,72,6.227060317993164],[122,294,73,6.2464518547058105],[122,294,74,6.255016326904297],[122,294,75,6.258291244506836],[122,294,76,6.258340835571289],[122,294,77,6.256374835968018],[122,294,78,6.252626419067383],[122,294,79,6.243979454040527],[122,295,64,6.151723384857178],[122,295,65,6.152887344360352],[122,295,66,6.14828634262085],[122,295,67,6.14301872253418],[122,295,68,6.142638206481934],[122,295,69,6.151845455169678],[122,295,70,6.171098709106445],[122,295,71,6.197380065917969],[122,295,72,6.227060317993164],[122,295,73,6.2464518547058105],[122,295,74,6.255016326904297],[122,295,75,6.258291244506836],[122,295,76,6.258340835571289],[122,295,77,6.256374835968018],[122,295,78,6.252626419067383],[122,295,79,6.243979454040527],[122,296,64,6.151723384857178],[122,296,65,6.152887344360352],[122,296,66,6.14828634262085],[122,296,67,6.14301872253418],[122,296,68,6.142638206481934],[122,296,69,6.151845455169678],[122,296,70,6.171098709106445],[122,296,71,6.197380065917969],[122,296,72,6.227060317993164],[122,296,73,6.2464518547058105],[122,296,74,6.255016326904297],[122,296,75,6.258291244506836],[122,296,76,6.258340835571289],[122,296,77,6.256374835968018],[122,296,78,6.252626419067383],[122,296,79,6.243979454040527],[122,297,64,6.151723384857178],[122,297,65,6.152887344360352],[122,297,66,6.14828634262085],[122,297,67,6.14301872253418],[122,297,68,6.142638206481934],[122,297,69,6.151845455169678],[122,297,70,6.171098709106445],[122,297,71,6.197380065917969],[122,297,72,6.227060317993164],[122,297,73,6.2464518547058105],[122,297,74,6.255016326904297],[122,297,75,6.258291244506836],[122,297,76,6.258340835571289],[122,297,77,6.256374835968018],[122,297,78,6.252626419067383],[122,297,79,6.243979454040527],[122,298,64,6.151723384857178],[122,298,65,6.152887344360352],[122,298,66,6.14828634262085],[122,298,67,6.14301872253418],[122,298,68,6.142638206481934],[122,298,69,6.151845455169678],[122,298,70,6.171098709106445],[122,298,71,6.197380065917969],[122,298,72,6.227060317993164],[122,298,73,6.2464518547058105],[122,298,74,6.255016326904297],[122,298,75,6.258291244506836],[122,298,76,6.258340835571289],[122,298,77,6.256374835968018],[122,298,78,6.252626419067383],[122,298,79,6.243979454040527],[122,299,64,6.151723384857178],[122,299,65,6.152887344360352],[122,299,66,6.14828634262085],[122,299,67,6.14301872253418],[122,299,68,6.142638206481934],[122,299,69,6.151845455169678],[122,299,70,6.171098709106445],[122,299,71,6.197380065917969],[122,299,72,6.227060317993164],[122,299,73,6.2464518547058105],[122,299,74,6.255016326904297],[122,299,75,6.258291244506836],[122,299,76,6.258340835571289],[122,299,77,6.256374835968018],[122,299,78,6.252626419067383],[122,299,79,6.243979454040527],[122,300,64,6.151723384857178],[122,300,65,6.152887344360352],[122,300,66,6.14828634262085],[122,300,67,6.14301872253418],[122,300,68,6.142638206481934],[122,300,69,6.151845455169678],[122,300,70,6.171098709106445],[122,300,71,6.197380065917969],[122,300,72,6.227060317993164],[122,300,73,6.2464518547058105],[122,300,74,6.255016326904297],[122,300,75,6.258291244506836],[122,300,76,6.258340835571289],[122,300,77,6.256374835968018],[122,300,78,6.252626419067383],[122,300,79,6.243979454040527],[122,301,64,6.151723384857178],[122,301,65,6.152887344360352],[122,301,66,6.14828634262085],[122,301,67,6.14301872253418],[122,301,68,6.142638206481934],[122,301,69,6.151845455169678],[122,301,70,6.171098709106445],[122,301,71,6.197380065917969],[122,301,72,6.227060317993164],[122,301,73,6.2464518547058105],[122,301,74,6.255016326904297],[122,301,75,6.258291244506836],[122,301,76,6.258340835571289],[122,301,77,6.256374835968018],[122,301,78,6.252626419067383],[122,301,79,6.243979454040527],[122,302,64,6.151723384857178],[122,302,65,6.152887344360352],[122,302,66,6.14828634262085],[122,302,67,6.14301872253418],[122,302,68,6.142638206481934],[122,302,69,6.151845455169678],[122,302,70,6.171098709106445],[122,302,71,6.197380065917969],[122,302,72,6.227060317993164],[122,302,73,6.2464518547058105],[122,302,74,6.255016326904297],[122,302,75,6.258291244506836],[122,302,76,6.258340835571289],[122,302,77,6.256374835968018],[122,302,78,6.252626419067383],[122,302,79,6.243979454040527],[122,303,64,6.151723384857178],[122,303,65,6.152887344360352],[122,303,66,6.14828634262085],[122,303,67,6.14301872253418],[122,303,68,6.142638206481934],[122,303,69,6.151845455169678],[122,303,70,6.171098709106445],[122,303,71,6.197380065917969],[122,303,72,6.227060317993164],[122,303,73,6.2464518547058105],[122,303,74,6.255016326904297],[122,303,75,6.258291244506836],[122,303,76,6.258340835571289],[122,303,77,6.256374835968018],[122,303,78,6.252626419067383],[122,303,79,6.243979454040527],[122,304,64,6.151723384857178],[122,304,65,6.152887344360352],[122,304,66,6.14828634262085],[122,304,67,6.14301872253418],[122,304,68,6.142638206481934],[122,304,69,6.151845455169678],[122,304,70,6.171098709106445],[122,304,71,6.197380065917969],[122,304,72,6.227060317993164],[122,304,73,6.2464518547058105],[122,304,74,6.255016326904297],[122,304,75,6.258291244506836],[122,304,76,6.258340835571289],[122,304,77,6.256374835968018],[122,304,78,6.252626419067383],[122,304,79,6.243979454040527],[122,305,64,6.151723384857178],[122,305,65,6.152887344360352],[122,305,66,6.14828634262085],[122,305,67,6.14301872253418],[122,305,68,6.142638206481934],[122,305,69,6.151845455169678],[122,305,70,6.171098709106445],[122,305,71,6.197380065917969],[122,305,72,6.227060317993164],[122,305,73,6.2464518547058105],[122,305,74,6.255016326904297],[122,305,75,6.258291244506836],[122,305,76,6.258340835571289],[122,305,77,6.256374835968018],[122,305,78,6.252626419067383],[122,305,79,6.243979454040527],[122,306,64,6.151723384857178],[122,306,65,6.152887344360352],[122,306,66,6.14828634262085],[122,306,67,6.14301872253418],[122,306,68,6.142638206481934],[122,306,69,6.151845455169678],[122,306,70,6.171098709106445],[122,306,71,6.197380065917969],[122,306,72,6.227060317993164],[122,306,73,6.2464518547058105],[122,306,74,6.255016326904297],[122,306,75,6.258291244506836],[122,306,76,6.258340835571289],[122,306,77,6.256374835968018],[122,306,78,6.252626419067383],[122,306,79,6.243979454040527],[122,307,64,6.151723384857178],[122,307,65,6.152887344360352],[122,307,66,6.14828634262085],[122,307,67,6.14301872253418],[122,307,68,6.142638206481934],[122,307,69,6.151845455169678],[122,307,70,6.171098709106445],[122,307,71,6.197380065917969],[122,307,72,6.227060317993164],[122,307,73,6.2464518547058105],[122,307,74,6.255016326904297],[122,307,75,6.258291244506836],[122,307,76,6.258340835571289],[122,307,77,6.256374835968018],[122,307,78,6.252626419067383],[122,307,79,6.243979454040527],[122,308,64,6.151723384857178],[122,308,65,6.152887344360352],[122,308,66,6.14828634262085],[122,308,67,6.14301872253418],[122,308,68,6.142638206481934],[122,308,69,6.151845455169678],[122,308,70,6.171098709106445],[122,308,71,6.197380065917969],[122,308,72,6.227060317993164],[122,308,73,6.2464518547058105],[122,308,74,6.255016326904297],[122,308,75,6.258291244506836],[122,308,76,6.258340835571289],[122,308,77,6.256374835968018],[122,308,78,6.252626419067383],[122,308,79,6.243979454040527],[122,309,64,6.151723384857178],[122,309,65,6.152887344360352],[122,309,66,6.14828634262085],[122,309,67,6.14301872253418],[122,309,68,6.142638206481934],[122,309,69,6.151845455169678],[122,309,70,6.171098709106445],[122,309,71,6.197380065917969],[122,309,72,6.227060317993164],[122,309,73,6.2464518547058105],[122,309,74,6.255016326904297],[122,309,75,6.258291244506836],[122,309,76,6.258340835571289],[122,309,77,6.256374835968018],[122,309,78,6.252626419067383],[122,309,79,6.243979454040527],[122,310,64,6.151723384857178],[122,310,65,6.152887344360352],[122,310,66,6.14828634262085],[122,310,67,6.14301872253418],[122,310,68,6.142638206481934],[122,310,69,6.151845455169678],[122,310,70,6.171098709106445],[122,310,71,6.197380065917969],[122,310,72,6.227060317993164],[122,310,73,6.2464518547058105],[122,310,74,6.255016326904297],[122,310,75,6.258291244506836],[122,310,76,6.258340835571289],[122,310,77,6.256374835968018],[122,310,78,6.252626419067383],[122,310,79,6.243979454040527],[122,311,64,6.151723384857178],[122,311,65,6.152887344360352],[122,311,66,6.14828634262085],[122,311,67,6.14301872253418],[122,311,68,6.142638206481934],[122,311,69,6.151845455169678],[122,311,70,6.171098709106445],[122,311,71,6.197380065917969],[122,311,72,6.227060317993164],[122,311,73,6.2464518547058105],[122,311,74,6.255016326904297],[122,311,75,6.258291244506836],[122,311,76,6.258340835571289],[122,311,77,6.256374835968018],[122,311,78,6.252626419067383],[122,311,79,6.243979454040527],[122,312,64,6.151723384857178],[122,312,65,6.152887344360352],[122,312,66,6.14828634262085],[122,312,67,6.14301872253418],[122,312,68,6.142638206481934],[122,312,69,6.151845455169678],[122,312,70,6.171098709106445],[122,312,71,6.197380065917969],[122,312,72,6.227060317993164],[122,312,73,6.2464518547058105],[122,312,74,6.255016326904297],[122,312,75,6.258291244506836],[122,312,76,6.258340835571289],[122,312,77,6.256374835968018],[122,312,78,6.252626419067383],[122,312,79,6.243979454040527],[122,313,64,6.151723384857178],[122,313,65,6.152887344360352],[122,313,66,6.14828634262085],[122,313,67,6.14301872253418],[122,313,68,6.142638206481934],[122,313,69,6.151845455169678],[122,313,70,6.171098709106445],[122,313,71,6.197380065917969],[122,313,72,6.227060317993164],[122,313,73,6.2464518547058105],[122,313,74,6.255016326904297],[122,313,75,6.258291244506836],[122,313,76,6.258340835571289],[122,313,77,6.256374835968018],[122,313,78,6.252626419067383],[122,313,79,6.243979454040527],[122,314,64,6.151723384857178],[122,314,65,6.152887344360352],[122,314,66,6.14828634262085],[122,314,67,6.14301872253418],[122,314,68,6.142638206481934],[122,314,69,6.151845455169678],[122,314,70,6.171098709106445],[122,314,71,6.197380065917969],[122,314,72,6.227060317993164],[122,314,73,6.2464518547058105],[122,314,74,6.255016326904297],[122,314,75,6.258291244506836],[122,314,76,6.258340835571289],[122,314,77,6.256374835968018],[122,314,78,6.252626419067383],[122,314,79,6.243979454040527],[122,315,64,6.151723384857178],[122,315,65,6.152887344360352],[122,315,66,6.14828634262085],[122,315,67,6.14301872253418],[122,315,68,6.142638206481934],[122,315,69,6.151845455169678],[122,315,70,6.171098709106445],[122,315,71,6.197380065917969],[122,315,72,6.227060317993164],[122,315,73,6.2464518547058105],[122,315,74,6.255016326904297],[122,315,75,6.258291244506836],[122,315,76,6.258340835571289],[122,315,77,6.256374835968018],[122,315,78,6.252626419067383],[122,315,79,6.243979454040527],[122,316,64,6.151723384857178],[122,316,65,6.152887344360352],[122,316,66,6.14828634262085],[122,316,67,6.14301872253418],[122,316,68,6.142638206481934],[122,316,69,6.151845455169678],[122,316,70,6.171098709106445],[122,316,71,6.197380065917969],[122,316,72,6.227060317993164],[122,316,73,6.2464518547058105],[122,316,74,6.255016326904297],[122,316,75,6.258291244506836],[122,316,76,6.258340835571289],[122,316,77,6.256374835968018],[122,316,78,6.252626419067383],[122,316,79,6.243979454040527],[122,317,64,6.151723384857178],[122,317,65,6.152887344360352],[122,317,66,6.14828634262085],[122,317,67,6.14301872253418],[122,317,68,6.142638206481934],[122,317,69,6.151845455169678],[122,317,70,6.171098709106445],[122,317,71,6.197380065917969],[122,317,72,6.227060317993164],[122,317,73,6.2464518547058105],[122,317,74,6.255016326904297],[122,317,75,6.258291244506836],[122,317,76,6.258340835571289],[122,317,77,6.256374835968018],[122,317,78,6.252626419067383],[122,317,79,6.243979454040527],[122,318,64,6.151723384857178],[122,318,65,6.152887344360352],[122,318,66,6.14828634262085],[122,318,67,6.14301872253418],[122,318,68,6.142638206481934],[122,318,69,6.151845455169678],[122,318,70,6.171098709106445],[122,318,71,6.197380065917969],[122,318,72,6.227060317993164],[122,318,73,6.2464518547058105],[122,318,74,6.255016326904297],[122,318,75,6.258291244506836],[122,318,76,6.258340835571289],[122,318,77,6.256374835968018],[122,318,78,6.252626419067383],[122,318,79,6.243979454040527],[122,319,64,6.151723384857178],[122,319,65,6.152887344360352],[122,319,66,6.14828634262085],[122,319,67,6.14301872253418],[122,319,68,6.142638206481934],[122,319,69,6.151845455169678],[122,319,70,6.171098709106445],[122,319,71,6.197380065917969],[122,319,72,6.227060317993164],[122,319,73,6.2464518547058105],[122,319,74,6.255016326904297],[122,319,75,6.258291244506836],[122,319,76,6.258340835571289],[122,319,77,6.256374835968018],[122,319,78,6.252626419067383],[122,319,79,6.243979454040527],[123,-64,64,6.168478488922119],[123,-64,65,6.168546676635742],[123,-64,66,6.162295818328857],[123,-64,67,6.155701637268066],[123,-64,68,6.154285907745361],[123,-64,69,6.162319660186768],[123,-64,70,6.179772853851318],[123,-64,71,6.204173564910889],[123,-64,72,6.23335599899292],[123,-64,73,6.251838207244873],[123,-64,74,6.258948802947998],[123,-64,75,6.261970043182373],[123,-64,76,6.262178897857666],[123,-64,77,6.260340690612793],[123,-64,78,6.25700044631958],[123,-64,79,6.249245643615723],[123,-63,64,6.168478488922119],[123,-63,65,6.168546676635742],[123,-63,66,6.162295818328857],[123,-63,67,6.155701637268066],[123,-63,68,6.154285907745361],[123,-63,69,6.162319660186768],[123,-63,70,6.179772853851318],[123,-63,71,6.204173564910889],[123,-63,72,6.23335599899292],[123,-63,73,6.251838207244873],[123,-63,74,6.258948802947998],[123,-63,75,6.261970043182373],[123,-63,76,6.262178897857666],[123,-63,77,6.260340690612793],[123,-63,78,6.25700044631958],[123,-63,79,6.249245643615723],[123,-62,64,6.168478488922119],[123,-62,65,6.168546676635742],[123,-62,66,6.162295818328857],[123,-62,67,6.155701637268066],[123,-62,68,6.154285907745361],[123,-62,69,6.162319660186768],[123,-62,70,6.179772853851318],[123,-62,71,6.204173564910889],[123,-62,72,6.23335599899292],[123,-62,73,6.251838207244873],[123,-62,74,6.258948802947998],[123,-62,75,6.261970043182373],[123,-62,76,6.262178897857666],[123,-62,77,6.260340690612793],[123,-62,78,6.25700044631958],[123,-62,79,6.249245643615723],[123,-61,64,6.168478488922119],[123,-61,65,6.168546676635742],[123,-61,66,6.162295818328857],[123,-61,67,6.155701637268066],[123,-61,68,6.154285907745361],[123,-61,69,6.162319660186768],[123,-61,70,6.179772853851318],[123,-61,71,6.204173564910889],[123,-61,72,6.23335599899292],[123,-61,73,6.251838207244873],[123,-61,74,6.258948802947998],[123,-61,75,6.261970043182373],[123,-61,76,6.262178897857666],[123,-61,77,6.260340690612793],[123,-61,78,6.25700044631958],[123,-61,79,6.249245643615723],[123,-60,64,6.168478488922119],[123,-60,65,6.168546676635742],[123,-60,66,6.162295818328857],[123,-60,67,6.155701637268066],[123,-60,68,6.154285907745361],[123,-60,69,6.162319660186768],[123,-60,70,6.179772853851318],[123,-60,71,6.204173564910889],[123,-60,72,6.23335599899292],[123,-60,73,6.251838207244873],[123,-60,74,6.258948802947998],[123,-60,75,6.261970043182373],[123,-60,76,6.262178897857666],[123,-60,77,6.260340690612793],[123,-60,78,6.25700044631958],[123,-60,79,6.249245643615723],[123,-59,64,6.168478488922119],[123,-59,65,6.168546676635742],[123,-59,66,6.162295818328857],[123,-59,67,6.155701637268066],[123,-59,68,6.154285907745361],[123,-59,69,6.162319660186768],[123,-59,70,6.179772853851318],[123,-59,71,6.204173564910889],[123,-59,72,6.23335599899292],[123,-59,73,6.251838207244873],[123,-59,74,6.258948802947998],[123,-59,75,6.261970043182373],[123,-59,76,6.262178897857666],[123,-59,77,6.260340690612793],[123,-59,78,6.25700044631958],[123,-59,79,6.249245643615723],[123,-58,64,6.168478488922119],[123,-58,65,6.168546676635742],[123,-58,66,6.162295818328857],[123,-58,67,6.155701637268066],[123,-58,68,6.154285907745361],[123,-58,69,6.162319660186768],[123,-58,70,6.179772853851318],[123,-58,71,6.204173564910889],[123,-58,72,6.23335599899292],[123,-58,73,6.251838207244873],[123,-58,74,6.258948802947998],[123,-58,75,6.261970043182373],[123,-58,76,6.262178897857666],[123,-58,77,6.260340690612793],[123,-58,78,6.25700044631958],[123,-58,79,6.249245643615723],[123,-57,64,6.168478488922119],[123,-57,65,6.168546676635742],[123,-57,66,6.162295818328857],[123,-57,67,6.155701637268066],[123,-57,68,6.154285907745361],[123,-57,69,6.162319660186768],[123,-57,70,6.179772853851318],[123,-57,71,6.204173564910889],[123,-57,72,6.23335599899292],[123,-57,73,6.251838207244873],[123,-57,74,6.258948802947998],[123,-57,75,6.261970043182373],[123,-57,76,6.262178897857666],[123,-57,77,6.260340690612793],[123,-57,78,6.25700044631958],[123,-57,79,6.249245643615723],[123,-56,64,6.168478488922119],[123,-56,65,6.168546676635742],[123,-56,66,6.162295818328857],[123,-56,67,6.155701637268066],[123,-56,68,6.154285907745361],[123,-56,69,6.162319660186768],[123,-56,70,6.179772853851318],[123,-56,71,6.204173564910889],[123,-56,72,6.23335599899292],[123,-56,73,6.251838207244873],[123,-56,74,6.258948802947998],[123,-56,75,6.261970043182373],[123,-56,76,6.262178897857666],[123,-56,77,6.260340690612793],[123,-56,78,6.25700044631958],[123,-56,79,6.249245643615723],[123,-55,64,6.168478488922119],[123,-55,65,6.168546676635742],[123,-55,66,6.162295818328857],[123,-55,67,6.155701637268066],[123,-55,68,6.154285907745361],[123,-55,69,6.162319660186768],[123,-55,70,6.179772853851318],[123,-55,71,6.204173564910889],[123,-55,72,6.23335599899292],[123,-55,73,6.251838207244873],[123,-55,74,6.258948802947998],[123,-55,75,6.261970043182373],[123,-55,76,6.262178897857666],[123,-55,77,6.260340690612793],[123,-55,78,6.25700044631958],[123,-55,79,6.249245643615723],[123,-54,64,6.168478488922119],[123,-54,65,6.168546676635742],[123,-54,66,6.162295818328857],[123,-54,67,6.155701637268066],[123,-54,68,6.154285907745361],[123,-54,69,6.162319660186768],[123,-54,70,6.179772853851318],[123,-54,71,6.204173564910889],[123,-54,72,6.23335599899292],[123,-54,73,6.251838207244873],[123,-54,74,6.258948802947998],[123,-54,75,6.261970043182373],[123,-54,76,6.262178897857666],[123,-54,77,6.260340690612793],[123,-54,78,6.25700044631958],[123,-54,79,6.249245643615723],[123,-53,64,6.168478488922119],[123,-53,65,6.168546676635742],[123,-53,66,6.162295818328857],[123,-53,67,6.155701637268066],[123,-53,68,6.154285907745361],[123,-53,69,6.162319660186768],[123,-53,70,6.179772853851318],[123,-53,71,6.204173564910889],[123,-53,72,6.23335599899292],[123,-53,73,6.251838207244873],[123,-53,74,6.258948802947998],[123,-53,75,6.261970043182373],[123,-53,76,6.262178897857666],[123,-53,77,6.260340690612793],[123,-53,78,6.25700044631958],[123,-53,79,6.249245643615723],[123,-52,64,6.168478488922119],[123,-52,65,6.168546676635742],[123,-52,66,6.162295818328857],[123,-52,67,6.155701637268066],[123,-52,68,6.154285907745361],[123,-52,69,6.162319660186768],[123,-52,70,6.179772853851318],[123,-52,71,6.204173564910889],[123,-52,72,6.23335599899292],[123,-52,73,6.251838207244873],[123,-52,74,6.258948802947998],[123,-52,75,6.261970043182373],[123,-52,76,6.262178897857666],[123,-52,77,6.260340690612793],[123,-52,78,6.25700044631958],[123,-52,79,6.249245643615723],[123,-51,64,6.168478488922119],[123,-51,65,6.168546676635742],[123,-51,66,6.162295818328857],[123,-51,67,6.155701637268066],[123,-51,68,6.154285907745361],[123,-51,69,6.162319660186768],[123,-51,70,6.179772853851318],[123,-51,71,6.204173564910889],[123,-51,72,6.23335599899292],[123,-51,73,6.251838207244873],[123,-51,74,6.258948802947998],[123,-51,75,6.261970043182373],[123,-51,76,6.262178897857666],[123,-51,77,6.260340690612793],[123,-51,78,6.25700044631958],[123,-51,79,6.249245643615723],[123,-50,64,6.168478488922119],[123,-50,65,6.168546676635742],[123,-50,66,6.162295818328857],[123,-50,67,6.155701637268066],[123,-50,68,6.154285907745361],[123,-50,69,6.162319660186768],[123,-50,70,6.179772853851318],[123,-50,71,6.204173564910889],[123,-50,72,6.23335599899292],[123,-50,73,6.251838207244873],[123,-50,74,6.258948802947998],[123,-50,75,6.261970043182373],[123,-50,76,6.262178897857666],[123,-50,77,6.260340690612793],[123,-50,78,6.25700044631958],[123,-50,79,6.249245643615723],[123,-49,64,6.168478488922119],[123,-49,65,6.168546676635742],[123,-49,66,6.162295818328857],[123,-49,67,6.155701637268066],[123,-49,68,6.154285907745361],[123,-49,69,6.162319660186768],[123,-49,70,6.179772853851318],[123,-49,71,6.204173564910889],[123,-49,72,6.23335599899292],[123,-49,73,6.251838207244873],[123,-49,74,6.258948802947998],[123,-49,75,6.261970043182373],[123,-49,76,6.262178897857666],[123,-49,77,6.260340690612793],[123,-49,78,6.25700044631958],[123,-49,79,6.249245643615723],[123,-48,64,6.168478488922119],[123,-48,65,6.168546676635742],[123,-48,66,6.162295818328857],[123,-48,67,6.155701637268066],[123,-48,68,6.154285907745361],[123,-48,69,6.162319660186768],[123,-48,70,6.179772853851318],[123,-48,71,6.204173564910889],[123,-48,72,6.23335599899292],[123,-48,73,6.251838207244873],[123,-48,74,6.258948802947998],[123,-48,75,6.261970043182373],[123,-48,76,6.262178897857666],[123,-48,77,6.260340690612793],[123,-48,78,6.25700044631958],[123,-48,79,6.249245643615723],[123,-47,64,6.168478488922119],[123,-47,65,6.168546676635742],[123,-47,66,6.162295818328857],[123,-47,67,6.155701637268066],[123,-47,68,6.154285907745361],[123,-47,69,6.162319660186768],[123,-47,70,6.179772853851318],[123,-47,71,6.204173564910889],[123,-47,72,6.23335599899292],[123,-47,73,6.251838207244873],[123,-47,74,6.258948802947998],[123,-47,75,6.261970043182373],[123,-47,76,6.262178897857666],[123,-47,77,6.260340690612793],[123,-47,78,6.25700044631958],[123,-47,79,6.249245643615723],[123,-46,64,6.168478488922119],[123,-46,65,6.168546676635742],[123,-46,66,6.162295818328857],[123,-46,67,6.155701637268066],[123,-46,68,6.154285907745361],[123,-46,69,6.162319660186768],[123,-46,70,6.179772853851318],[123,-46,71,6.204173564910889],[123,-46,72,6.23335599899292],[123,-46,73,6.251838207244873],[123,-46,74,6.258948802947998],[123,-46,75,6.261970043182373],[123,-46,76,6.262178897857666],[123,-46,77,6.260340690612793],[123,-46,78,6.25700044631958],[123,-46,79,6.249245643615723],[123,-45,64,6.168478488922119],[123,-45,65,6.168546676635742],[123,-45,66,6.162295818328857],[123,-45,67,6.155701637268066],[123,-45,68,6.154285907745361],[123,-45,69,6.162319660186768],[123,-45,70,6.179772853851318],[123,-45,71,6.204173564910889],[123,-45,72,6.23335599899292],[123,-45,73,6.251838207244873],[123,-45,74,6.258948802947998],[123,-45,75,6.261970043182373],[123,-45,76,6.262178897857666],[123,-45,77,6.260340690612793],[123,-45,78,6.25700044631958],[123,-45,79,6.249245643615723],[123,-44,64,6.168478488922119],[123,-44,65,6.168546676635742],[123,-44,66,6.162295818328857],[123,-44,67,6.155701637268066],[123,-44,68,6.154285907745361],[123,-44,69,6.162319660186768],[123,-44,70,6.179772853851318],[123,-44,71,6.204173564910889],[123,-44,72,6.23335599899292],[123,-44,73,6.251838207244873],[123,-44,74,6.258948802947998],[123,-44,75,6.261970043182373],[123,-44,76,6.262178897857666],[123,-44,77,6.260340690612793],[123,-44,78,6.25700044631958],[123,-44,79,6.249245643615723],[123,-43,64,6.168478488922119],[123,-43,65,6.168546676635742],[123,-43,66,6.162295818328857],[123,-43,67,6.155701637268066],[123,-43,68,6.154285907745361],[123,-43,69,6.162319660186768],[123,-43,70,6.179772853851318],[123,-43,71,6.204173564910889],[123,-43,72,6.23335599899292],[123,-43,73,6.251838207244873],[123,-43,74,6.258948802947998],[123,-43,75,6.261970043182373],[123,-43,76,6.262178897857666],[123,-43,77,6.260340690612793],[123,-43,78,6.25700044631958],[123,-43,79,6.249245643615723],[123,-42,64,6.168478488922119],[123,-42,65,6.168546676635742],[123,-42,66,6.162295818328857],[123,-42,67,6.155701637268066],[123,-42,68,6.154285907745361],[123,-42,69,6.162319660186768],[123,-42,70,6.179772853851318],[123,-42,71,6.204173564910889],[123,-42,72,6.23335599899292],[123,-42,73,6.251838207244873],[123,-42,74,6.258948802947998],[123,-42,75,6.261970043182373],[123,-42,76,6.262178897857666],[123,-42,77,6.260340690612793],[123,-42,78,6.25700044631958],[123,-42,79,6.249245643615723],[123,-41,64,6.168478488922119],[123,-41,65,6.168546676635742],[123,-41,66,6.162295818328857],[123,-41,67,6.155701637268066],[123,-41,68,6.154285907745361],[123,-41,69,6.162319660186768],[123,-41,70,6.179772853851318],[123,-41,71,6.204173564910889],[123,-41,72,6.23335599899292],[123,-41,73,6.251838207244873],[123,-41,74,6.258948802947998],[123,-41,75,6.261970043182373],[123,-41,76,6.262178897857666],[123,-41,77,6.260340690612793],[123,-41,78,6.25700044631958],[123,-41,79,6.249245643615723],[123,-40,64,6.168478488922119],[123,-40,65,6.168546676635742],[123,-40,66,6.162295818328857],[123,-40,67,6.155701637268066],[123,-40,68,6.154285907745361],[123,-40,69,6.162319660186768],[123,-40,70,6.179772853851318],[123,-40,71,6.204173564910889],[123,-40,72,6.23335599899292],[123,-40,73,6.251838207244873],[123,-40,74,6.258948802947998],[123,-40,75,6.261970043182373],[123,-40,76,6.262178897857666],[123,-40,77,6.260340690612793],[123,-40,78,6.25700044631958],[123,-40,79,6.249245643615723],[123,-39,64,6.168478488922119],[123,-39,65,6.168546676635742],[123,-39,66,6.162295818328857],[123,-39,67,6.155701637268066],[123,-39,68,6.154285907745361],[123,-39,69,6.162319660186768],[123,-39,70,6.179772853851318],[123,-39,71,6.204173564910889],[123,-39,72,6.23335599899292],[123,-39,73,6.251838207244873],[123,-39,74,6.258948802947998],[123,-39,75,6.261970043182373],[123,-39,76,6.262178897857666],[123,-39,77,6.260340690612793],[123,-39,78,6.25700044631958],[123,-39,79,6.249245643615723],[123,-38,64,6.168478488922119],[123,-38,65,6.168546676635742],[123,-38,66,6.162295818328857],[123,-38,67,6.155701637268066],[123,-38,68,6.154285907745361],[123,-38,69,6.162319660186768],[123,-38,70,6.179772853851318],[123,-38,71,6.204173564910889],[123,-38,72,6.23335599899292],[123,-38,73,6.251838207244873],[123,-38,74,6.258948802947998],[123,-38,75,6.261970043182373],[123,-38,76,6.262178897857666],[123,-38,77,6.260340690612793],[123,-38,78,6.25700044631958],[123,-38,79,6.249245643615723],[123,-37,64,6.168478488922119],[123,-37,65,6.168546676635742],[123,-37,66,6.162295818328857],[123,-37,67,6.155701637268066],[123,-37,68,6.154285907745361],[123,-37,69,6.162319660186768],[123,-37,70,6.179772853851318],[123,-37,71,6.204173564910889],[123,-37,72,6.23335599899292],[123,-37,73,6.251838207244873],[123,-37,74,6.258948802947998],[123,-37,75,6.261970043182373],[123,-37,76,6.262178897857666],[123,-37,77,6.260340690612793],[123,-37,78,6.25700044631958],[123,-37,79,6.249245643615723],[123,-36,64,6.168478488922119],[123,-36,65,6.168546676635742],[123,-36,66,6.162295818328857],[123,-36,67,6.155701637268066],[123,-36,68,6.154285907745361],[123,-36,69,6.162319660186768],[123,-36,70,6.179772853851318],[123,-36,71,6.204173564910889],[123,-36,72,6.23335599899292],[123,-36,73,6.251838207244873],[123,-36,74,6.258948802947998],[123,-36,75,6.261970043182373],[123,-36,76,6.262178897857666],[123,-36,77,6.260340690612793],[123,-36,78,6.25700044631958],[123,-36,79,6.249245643615723],[123,-35,64,6.168478488922119],[123,-35,65,6.168546676635742],[123,-35,66,6.162295818328857],[123,-35,67,6.155701637268066],[123,-35,68,6.154285907745361],[123,-35,69,6.162319660186768],[123,-35,70,6.179772853851318],[123,-35,71,6.204173564910889],[123,-35,72,6.23335599899292],[123,-35,73,6.251838207244873],[123,-35,74,6.258948802947998],[123,-35,75,6.261970043182373],[123,-35,76,6.262178897857666],[123,-35,77,6.260340690612793],[123,-35,78,6.25700044631958],[123,-35,79,6.249245643615723],[123,-34,64,6.168478488922119],[123,-34,65,6.168546676635742],[123,-34,66,6.162295818328857],[123,-34,67,6.155701637268066],[123,-34,68,6.154285907745361],[123,-34,69,6.162319660186768],[123,-34,70,6.179772853851318],[123,-34,71,6.204173564910889],[123,-34,72,6.23335599899292],[123,-34,73,6.251838207244873],[123,-34,74,6.258948802947998],[123,-34,75,6.261970043182373],[123,-34,76,6.262178897857666],[123,-34,77,6.260340690612793],[123,-34,78,6.25700044631958],[123,-34,79,6.249245643615723],[123,-33,64,6.168478488922119],[123,-33,65,6.168546676635742],[123,-33,66,6.162295818328857],[123,-33,67,6.155701637268066],[123,-33,68,6.154285907745361],[123,-33,69,6.162319660186768],[123,-33,70,6.179772853851318],[123,-33,71,6.204173564910889],[123,-33,72,6.23335599899292],[123,-33,73,6.251838207244873],[123,-33,74,6.258948802947998],[123,-33,75,6.261970043182373],[123,-33,76,6.262178897857666],[123,-33,77,6.260340690612793],[123,-33,78,6.25700044631958],[123,-33,79,6.249245643615723],[123,-32,64,6.168478488922119],[123,-32,65,6.168546676635742],[123,-32,66,6.162295818328857],[123,-32,67,6.155701637268066],[123,-32,68,6.154285907745361],[123,-32,69,6.162319660186768],[123,-32,70,6.179772853851318],[123,-32,71,6.204173564910889],[123,-32,72,6.23335599899292],[123,-32,73,6.251838207244873],[123,-32,74,6.258948802947998],[123,-32,75,6.261970043182373],[123,-32,76,6.262178897857666],[123,-32,77,6.260340690612793],[123,-32,78,6.25700044631958],[123,-32,79,6.249245643615723],[123,-31,64,6.168478488922119],[123,-31,65,6.168546676635742],[123,-31,66,6.162295818328857],[123,-31,67,6.155701637268066],[123,-31,68,6.154285907745361],[123,-31,69,6.162319660186768],[123,-31,70,6.179772853851318],[123,-31,71,6.204173564910889],[123,-31,72,6.23335599899292],[123,-31,73,6.251838207244873],[123,-31,74,6.258948802947998],[123,-31,75,6.261970043182373],[123,-31,76,6.262178897857666],[123,-31,77,6.260340690612793],[123,-31,78,6.25700044631958],[123,-31,79,6.249245643615723],[123,-30,64,6.168478488922119],[123,-30,65,6.168546676635742],[123,-30,66,6.162295818328857],[123,-30,67,6.155701637268066],[123,-30,68,6.154285907745361],[123,-30,69,6.162319660186768],[123,-30,70,6.179772853851318],[123,-30,71,6.204173564910889],[123,-30,72,6.23335599899292],[123,-30,73,6.251838207244873],[123,-30,74,6.258948802947998],[123,-30,75,6.261970043182373],[123,-30,76,6.262178897857666],[123,-30,77,6.260340690612793],[123,-30,78,6.25700044631958],[123,-30,79,6.249245643615723],[123,-29,64,6.168478488922119],[123,-29,65,6.168546676635742],[123,-29,66,6.162295818328857],[123,-29,67,6.155701637268066],[123,-29,68,6.154285907745361],[123,-29,69,6.162319660186768],[123,-29,70,6.179772853851318],[123,-29,71,6.204173564910889],[123,-29,72,6.23335599899292],[123,-29,73,6.251838207244873],[123,-29,74,6.258948802947998],[123,-29,75,6.261970043182373],[123,-29,76,6.262178897857666],[123,-29,77,6.260340690612793],[123,-29,78,6.25700044631958],[123,-29,79,6.249245643615723],[123,-28,64,6.168478488922119],[123,-28,65,6.168546676635742],[123,-28,66,6.162295818328857],[123,-28,67,6.155701637268066],[123,-28,68,6.154285907745361],[123,-28,69,6.162319660186768],[123,-28,70,6.179772853851318],[123,-28,71,6.204173564910889],[123,-28,72,6.23335599899292],[123,-28,73,6.251838207244873],[123,-28,74,6.258948802947998],[123,-28,75,6.261970043182373],[123,-28,76,6.262178897857666],[123,-28,77,6.260340690612793],[123,-28,78,6.25700044631958],[123,-28,79,6.249245643615723],[123,-27,64,6.168478488922119],[123,-27,65,6.168546676635742],[123,-27,66,6.162295818328857],[123,-27,67,6.155701637268066],[123,-27,68,6.154285907745361],[123,-27,69,6.162319660186768],[123,-27,70,6.179772853851318],[123,-27,71,6.204173564910889],[123,-27,72,6.23335599899292],[123,-27,73,6.251838207244873],[123,-27,74,6.258948802947998],[123,-27,75,6.261970043182373],[123,-27,76,6.262178897857666],[123,-27,77,6.260340690612793],[123,-27,78,6.25700044631958],[123,-27,79,6.249245643615723],[123,-26,64,6.168478488922119],[123,-26,65,6.168546676635742],[123,-26,66,6.162295818328857],[123,-26,67,6.155701637268066],[123,-26,68,6.154285907745361],[123,-26,69,6.162319660186768],[123,-26,70,6.179772853851318],[123,-26,71,6.204173564910889],[123,-26,72,6.23335599899292],[123,-26,73,6.251838207244873],[123,-26,74,6.258948802947998],[123,-26,75,6.261970043182373],[123,-26,76,6.262178897857666],[123,-26,77,6.260340690612793],[123,-26,78,6.25700044631958],[123,-26,79,6.249245643615723],[123,-25,64,6.168478488922119],[123,-25,65,6.168546676635742],[123,-25,66,6.162295818328857],[123,-25,67,6.155701637268066],[123,-25,68,6.154285907745361],[123,-25,69,6.162319660186768],[123,-25,70,6.179772853851318],[123,-25,71,6.204173564910889],[123,-25,72,6.23335599899292],[123,-25,73,6.251838207244873],[123,-25,74,6.258948802947998],[123,-25,75,6.261970043182373],[123,-25,76,6.262178897857666],[123,-25,77,6.260340690612793],[123,-25,78,6.25700044631958],[123,-25,79,6.249245643615723],[123,-24,64,6.168478488922119],[123,-24,65,6.168546676635742],[123,-24,66,6.162295818328857],[123,-24,67,6.155701637268066],[123,-24,68,6.154285907745361],[123,-24,69,6.162319660186768],[123,-24,70,6.179772853851318],[123,-24,71,6.204173564910889],[123,-24,72,6.23335599899292],[123,-24,73,6.251838207244873],[123,-24,74,6.258948802947998],[123,-24,75,6.261970043182373],[123,-24,76,6.262178897857666],[123,-24,77,6.260340690612793],[123,-24,78,6.25700044631958],[123,-24,79,6.249245643615723],[123,-23,64,6.168478488922119],[123,-23,65,6.168546676635742],[123,-23,66,6.162295818328857],[123,-23,67,6.155701637268066],[123,-23,68,6.154285907745361],[123,-23,69,6.162319660186768],[123,-23,70,6.179772853851318],[123,-23,71,6.204173564910889],[123,-23,72,6.23335599899292],[123,-23,73,6.251838207244873],[123,-23,74,6.258948802947998],[123,-23,75,6.261970043182373],[123,-23,76,6.262178897857666],[123,-23,77,6.260340690612793],[123,-23,78,6.25700044631958],[123,-23,79,6.249245643615723],[123,-22,64,6.168478488922119],[123,-22,65,6.168546676635742],[123,-22,66,6.162295818328857],[123,-22,67,6.155701637268066],[123,-22,68,6.154285907745361],[123,-22,69,6.162319660186768],[123,-22,70,6.179772853851318],[123,-22,71,6.204173564910889],[123,-22,72,6.23335599899292],[123,-22,73,6.251838207244873],[123,-22,74,6.258948802947998],[123,-22,75,6.261970043182373],[123,-22,76,6.262178897857666],[123,-22,77,6.260340690612793],[123,-22,78,6.25700044631958],[123,-22,79,6.249245643615723],[123,-21,64,6.168478488922119],[123,-21,65,6.168546676635742],[123,-21,66,6.162295818328857],[123,-21,67,6.155701637268066],[123,-21,68,6.154285907745361],[123,-21,69,6.162319660186768],[123,-21,70,6.179772853851318],[123,-21,71,6.204173564910889],[123,-21,72,6.23335599899292],[123,-21,73,6.251838207244873],[123,-21,74,6.258948802947998],[123,-21,75,6.261970043182373],[123,-21,76,6.262178897857666],[123,-21,77,6.260340690612793],[123,-21,78,6.25700044631958],[123,-21,79,6.249245643615723],[123,-20,64,6.168478488922119],[123,-20,65,6.168546676635742],[123,-20,66,6.162295818328857],[123,-20,67,6.155701637268066],[123,-20,68,6.154285907745361],[123,-20,69,6.162319660186768],[123,-20,70,6.179772853851318],[123,-20,71,6.204173564910889],[123,-20,72,6.23335599899292],[123,-20,73,6.251838207244873],[123,-20,74,6.258948802947998],[123,-20,75,6.261970043182373],[123,-20,76,6.262178897857666],[123,-20,77,6.260340690612793],[123,-20,78,6.25700044631958],[123,-20,79,6.249245643615723],[123,-19,64,6.168478488922119],[123,-19,65,6.168546676635742],[123,-19,66,6.162295818328857],[123,-19,67,6.155701637268066],[123,-19,68,6.154285907745361],[123,-19,69,6.162319660186768],[123,-19,70,6.179772853851318],[123,-19,71,6.204173564910889],[123,-19,72,6.23335599899292],[123,-19,73,6.251838207244873],[123,-19,74,6.258948802947998],[123,-19,75,6.261970043182373],[123,-19,76,6.262178897857666],[123,-19,77,6.260340690612793],[123,-19,78,6.25700044631958],[123,-19,79,6.249245643615723],[123,-18,64,6.168478488922119],[123,-18,65,6.168546676635742],[123,-18,66,6.162295818328857],[123,-18,67,6.155701637268066],[123,-18,68,6.154285907745361],[123,-18,69,6.162319660186768],[123,-18,70,6.179772853851318],[123,-18,71,6.204173564910889],[123,-18,72,6.23335599899292],[123,-18,73,6.251838207244873],[123,-18,74,6.258948802947998],[123,-18,75,6.261970043182373],[123,-18,76,6.262178897857666],[123,-18,77,6.260340690612793],[123,-18,78,6.25700044631958],[123,-18,79,6.249245643615723],[123,-17,64,6.168478488922119],[123,-17,65,6.168546676635742],[123,-17,66,6.162295818328857],[123,-17,67,6.155701637268066],[123,-17,68,6.154285907745361],[123,-17,69,6.162319660186768],[123,-17,70,6.179772853851318],[123,-17,71,6.204173564910889],[123,-17,72,6.23335599899292],[123,-17,73,6.251838207244873],[123,-17,74,6.258948802947998],[123,-17,75,6.261970043182373],[123,-17,76,6.262178897857666],[123,-17,77,6.260340690612793],[123,-17,78,6.25700044631958],[123,-17,79,6.249245643615723],[123,-16,64,6.168478488922119],[123,-16,65,6.168546676635742],[123,-16,66,6.162295818328857],[123,-16,67,6.155701637268066],[123,-16,68,6.154285907745361],[123,-16,69,6.162319660186768],[123,-16,70,6.179772853851318],[123,-16,71,6.204173564910889],[123,-16,72,6.23335599899292],[123,-16,73,6.251838207244873],[123,-16,74,6.258948802947998],[123,-16,75,6.261970043182373],[123,-16,76,6.262178897857666],[123,-16,77,6.260340690612793],[123,-16,78,6.25700044631958],[123,-16,79,6.249245643615723],[123,-15,64,6.168478488922119],[123,-15,65,6.168546676635742],[123,-15,66,6.162295818328857],[123,-15,67,6.155701637268066],[123,-15,68,6.154285907745361],[123,-15,69,6.162319660186768],[123,-15,70,6.179772853851318],[123,-15,71,6.204173564910889],[123,-15,72,6.23335599899292],[123,-15,73,6.251838207244873],[123,-15,74,6.258948802947998],[123,-15,75,6.261970043182373],[123,-15,76,6.262178897857666],[123,-15,77,6.260340690612793],[123,-15,78,6.25700044631958],[123,-15,79,6.249245643615723],[123,-14,64,6.168478488922119],[123,-14,65,6.168546676635742],[123,-14,66,6.162295818328857],[123,-14,67,6.155701637268066],[123,-14,68,6.154285907745361],[123,-14,69,6.162319660186768],[123,-14,70,6.179772853851318],[123,-14,71,6.204173564910889],[123,-14,72,6.23335599899292],[123,-14,73,6.251838207244873],[123,-14,74,6.258948802947998],[123,-14,75,6.261970043182373],[123,-14,76,6.262178897857666],[123,-14,77,6.260340690612793],[123,-14,78,6.25700044631958],[123,-14,79,6.249245643615723],[123,-13,64,6.168478488922119],[123,-13,65,6.168546676635742],[123,-13,66,6.162295818328857],[123,-13,67,6.155701637268066],[123,-13,68,6.154285907745361],[123,-13,69,6.162319660186768],[123,-13,70,6.179772853851318],[123,-13,71,6.204173564910889],[123,-13,72,6.23335599899292],[123,-13,73,6.251838207244873],[123,-13,74,6.258948802947998],[123,-13,75,6.261970043182373],[123,-13,76,6.262178897857666],[123,-13,77,6.260340690612793],[123,-13,78,6.25700044631958],[123,-13,79,6.249245643615723],[123,-12,64,6.168478488922119],[123,-12,65,6.168546676635742],[123,-12,66,6.162295818328857],[123,-12,67,6.155701637268066],[123,-12,68,6.154285907745361],[123,-12,69,6.162319660186768],[123,-12,70,6.179772853851318],[123,-12,71,6.204173564910889],[123,-12,72,6.23335599899292],[123,-12,73,6.251838207244873],[123,-12,74,6.258948802947998],[123,-12,75,6.261970043182373],[123,-12,76,6.262178897857666],[123,-12,77,6.260340690612793],[123,-12,78,6.25700044631958],[123,-12,79,6.249245643615723],[123,-11,64,6.168478488922119],[123,-11,65,6.168546676635742],[123,-11,66,6.162295818328857],[123,-11,67,6.155701637268066],[123,-11,68,6.154285907745361],[123,-11,69,6.162319660186768],[123,-11,70,6.179772853851318],[123,-11,71,6.204173564910889],[123,-11,72,6.23335599899292],[123,-11,73,6.251838207244873],[123,-11,74,6.258948802947998],[123,-11,75,6.261970043182373],[123,-11,76,6.262178897857666],[123,-11,77,6.260340690612793],[123,-11,78,6.25700044631958],[123,-11,79,6.249245643615723],[123,-10,64,6.168478488922119],[123,-10,65,6.168546676635742],[123,-10,66,6.162295818328857],[123,-10,67,6.155701637268066],[123,-10,68,6.154285907745361],[123,-10,69,6.162319660186768],[123,-10,70,6.179772853851318],[123,-10,71,6.204173564910889],[123,-10,72,6.23335599899292],[123,-10,73,6.251838207244873],[123,-10,74,6.258948802947998],[123,-10,75,6.261970043182373],[123,-10,76,6.262178897857666],[123,-10,77,6.260340690612793],[123,-10,78,6.25700044631958],[123,-10,79,6.249245643615723],[123,-9,64,6.168478488922119],[123,-9,65,6.168546676635742],[123,-9,66,6.162295818328857],[123,-9,67,6.155701637268066],[123,-9,68,6.154285907745361],[123,-9,69,6.162319660186768],[123,-9,70,6.179772853851318],[123,-9,71,6.204173564910889],[123,-9,72,6.23335599899292],[123,-9,73,6.251838207244873],[123,-9,74,6.258948802947998],[123,-9,75,6.261970043182373],[123,-9,76,6.262178897857666],[123,-9,77,6.260340690612793],[123,-9,78,6.25700044631958],[123,-9,79,6.249245643615723],[123,-8,64,6.168478488922119],[123,-8,65,6.168546676635742],[123,-8,66,6.162295818328857],[123,-8,67,6.155701637268066],[123,-8,68,6.154285907745361],[123,-8,69,6.162319660186768],[123,-8,70,6.179772853851318],[123,-8,71,6.204173564910889],[123,-8,72,6.23335599899292],[123,-8,73,6.251838207244873],[123,-8,74,6.258948802947998],[123,-8,75,6.261970043182373],[123,-8,76,6.262178897857666],[123,-8,77,6.260340690612793],[123,-8,78,6.25700044631958],[123,-8,79,6.249245643615723],[123,-7,64,6.168478488922119],[123,-7,65,6.168546676635742],[123,-7,66,6.162295818328857],[123,-7,67,6.155701637268066],[123,-7,68,6.154285907745361],[123,-7,69,6.162319660186768],[123,-7,70,6.179772853851318],[123,-7,71,6.204173564910889],[123,-7,72,6.23335599899292],[123,-7,73,6.251838207244873],[123,-7,74,6.258948802947998],[123,-7,75,6.261970043182373],[123,-7,76,6.262178897857666],[123,-7,77,6.260340690612793],[123,-7,78,6.25700044631958],[123,-7,79,6.249245643615723],[123,-6,64,6.168478488922119],[123,-6,65,6.168546676635742],[123,-6,66,6.162295818328857],[123,-6,67,6.155701637268066],[123,-6,68,6.154285907745361],[123,-6,69,6.162319660186768],[123,-6,70,6.179772853851318],[123,-6,71,6.204173564910889],[123,-6,72,6.23335599899292],[123,-6,73,6.251838207244873],[123,-6,74,6.258948802947998],[123,-6,75,6.261970043182373],[123,-6,76,6.262178897857666],[123,-6,77,6.260340690612793],[123,-6,78,6.25700044631958],[123,-6,79,6.249245643615723],[123,-5,64,6.168478488922119],[123,-5,65,6.168546676635742],[123,-5,66,6.162295818328857],[123,-5,67,6.155701637268066],[123,-5,68,6.154285907745361],[123,-5,69,6.162319660186768],[123,-5,70,6.179772853851318],[123,-5,71,6.204173564910889],[123,-5,72,6.23335599899292],[123,-5,73,6.251838207244873],[123,-5,74,6.258948802947998],[123,-5,75,6.261970043182373],[123,-5,76,6.262178897857666],[123,-5,77,6.260340690612793],[123,-5,78,6.25700044631958],[123,-5,79,6.249245643615723],[123,-4,64,6.168478488922119],[123,-4,65,6.168546676635742],[123,-4,66,6.162295818328857],[123,-4,67,6.155701637268066],[123,-4,68,6.154285907745361],[123,-4,69,6.162319660186768],[123,-4,70,6.179772853851318],[123,-4,71,6.204173564910889],[123,-4,72,6.23335599899292],[123,-4,73,6.251838207244873],[123,-4,74,6.258948802947998],[123,-4,75,6.261970043182373],[123,-4,76,6.262178897857666],[123,-4,77,6.260340690612793],[123,-4,78,6.25700044631958],[123,-4,79,6.249245643615723],[123,-3,64,6.168478488922119],[123,-3,65,6.168546676635742],[123,-3,66,6.162295818328857],[123,-3,67,6.155701637268066],[123,-3,68,6.154285907745361],[123,-3,69,6.162319660186768],[123,-3,70,6.179772853851318],[123,-3,71,6.204173564910889],[123,-3,72,6.23335599899292],[123,-3,73,6.251838207244873],[123,-3,74,6.258948802947998],[123,-3,75,6.261970043182373],[123,-3,76,6.262178897857666],[123,-3,77,6.260340690612793],[123,-3,78,6.25700044631958],[123,-3,79,6.249245643615723],[123,-2,64,6.168478488922119],[123,-2,65,6.168546676635742],[123,-2,66,6.162295818328857],[123,-2,67,6.155701637268066],[123,-2,68,6.154285907745361],[123,-2,69,6.162319660186768],[123,-2,70,6.179772853851318],[123,-2,71,6.204173564910889],[123,-2,72,6.23335599899292],[123,-2,73,6.251838207244873],[123,-2,74,6.258948802947998],[123,-2,75,6.261970043182373],[123,-2,76,6.262178897857666],[123,-2,77,6.260340690612793],[123,-2,78,6.25700044631958],[123,-2,79,6.249245643615723],[123,-1,64,6.168478488922119],[123,-1,65,6.168546676635742],[123,-1,66,6.162295818328857],[123,-1,67,6.155701637268066],[123,-1,68,6.154285907745361],[123,-1,69,6.162319660186768],[123,-1,70,6.179772853851318],[123,-1,71,6.204173564910889],[123,-1,72,6.23335599899292],[123,-1,73,6.251838207244873],[123,-1,74,6.258948802947998],[123,-1,75,6.261970043182373],[123,-1,76,6.262178897857666],[123,-1,77,6.260340690612793],[123,-1,78,6.25700044631958],[123,-1,79,6.249245643615723],[123,0,64,6.168478488922119],[123,0,65,6.168546676635742],[123,0,66,6.162295818328857],[123,0,67,6.155701637268066],[123,0,68,6.154285907745361],[123,0,69,6.162319660186768],[123,0,70,6.179772853851318],[123,0,71,6.204173564910889],[123,0,72,6.23335599899292],[123,0,73,6.251838207244873],[123,0,74,6.258948802947998],[123,0,75,6.261970043182373],[123,0,76,6.262178897857666],[123,0,77,6.260340690612793],[123,0,78,6.25700044631958],[123,0,79,6.249245643615723],[123,1,64,6.168478488922119],[123,1,65,6.168546676635742],[123,1,66,6.162295818328857],[123,1,67,6.155701637268066],[123,1,68,6.154285907745361],[123,1,69,6.162319660186768],[123,1,70,6.179772853851318],[123,1,71,6.204173564910889],[123,1,72,6.23335599899292],[123,1,73,6.251838207244873],[123,1,74,6.258948802947998],[123,1,75,6.261970043182373],[123,1,76,6.262178897857666],[123,1,77,6.260340690612793],[123,1,78,6.25700044631958],[123,1,79,6.249245643615723],[123,2,64,6.168478488922119],[123,2,65,6.168546676635742],[123,2,66,6.162295818328857],[123,2,67,6.155701637268066],[123,2,68,6.154285907745361],[123,2,69,6.162319660186768],[123,2,70,6.179772853851318],[123,2,71,6.204173564910889],[123,2,72,6.23335599899292],[123,2,73,6.251838207244873],[123,2,74,6.258948802947998],[123,2,75,6.261970043182373],[123,2,76,6.262178897857666],[123,2,77,6.260340690612793],[123,2,78,6.25700044631958],[123,2,79,6.249245643615723],[123,3,64,6.168478488922119],[123,3,65,6.168546676635742],[123,3,66,6.162295818328857],[123,3,67,6.155701637268066],[123,3,68,6.154285907745361],[123,3,69,6.162319660186768],[123,3,70,6.179772853851318],[123,3,71,6.204173564910889],[123,3,72,6.23335599899292],[123,3,73,6.251838207244873],[123,3,74,6.258948802947998],[123,3,75,6.261970043182373],[123,3,76,6.262178897857666],[123,3,77,6.260340690612793],[123,3,78,6.25700044631958],[123,3,79,6.249245643615723],[123,4,64,6.168478488922119],[123,4,65,6.168546676635742],[123,4,66,6.162295818328857],[123,4,67,6.155701637268066],[123,4,68,6.154285907745361],[123,4,69,6.162319660186768],[123,4,70,6.179772853851318],[123,4,71,6.204173564910889],[123,4,72,6.23335599899292],[123,4,73,6.251838207244873],[123,4,74,6.258948802947998],[123,4,75,6.261970043182373],[123,4,76,6.262178897857666],[123,4,77,6.260340690612793],[123,4,78,6.25700044631958],[123,4,79,6.249245643615723],[123,5,64,6.168478488922119],[123,5,65,6.168546676635742],[123,5,66,6.162295818328857],[123,5,67,6.155701637268066],[123,5,68,6.154285907745361],[123,5,69,6.162319660186768],[123,5,70,6.179772853851318],[123,5,71,6.204173564910889],[123,5,72,6.23335599899292],[123,5,73,6.251838207244873],[123,5,74,6.258948802947998],[123,5,75,6.261970043182373],[123,5,76,6.262178897857666],[123,5,77,6.260340690612793],[123,5,78,6.25700044631958],[123,5,79,6.249245643615723],[123,6,64,6.168478488922119],[123,6,65,6.168546676635742],[123,6,66,6.162295818328857],[123,6,67,6.155701637268066],[123,6,68,6.154285907745361],[123,6,69,6.162319660186768],[123,6,70,6.179772853851318],[123,6,71,6.204173564910889],[123,6,72,6.23335599899292],[123,6,73,6.251838207244873],[123,6,74,6.258948802947998],[123,6,75,6.261970043182373],[123,6,76,6.262178897857666],[123,6,77,6.260340690612793],[123,6,78,6.25700044631958],[123,6,79,6.249245643615723],[123,7,64,6.168478488922119],[123,7,65,6.168546676635742],[123,7,66,6.162295818328857],[123,7,67,6.155701637268066],[123,7,68,6.154285907745361],[123,7,69,6.162319660186768],[123,7,70,6.179772853851318],[123,7,71,6.204173564910889],[123,7,72,6.23335599899292],[123,7,73,6.251838207244873],[123,7,74,6.258948802947998],[123,7,75,6.261970043182373],[123,7,76,6.262178897857666],[123,7,77,6.260340690612793],[123,7,78,6.25700044631958],[123,7,79,6.249245643615723],[123,8,64,6.168478488922119],[123,8,65,6.168546676635742],[123,8,66,6.162295818328857],[123,8,67,6.155701637268066],[123,8,68,6.154285907745361],[123,8,69,6.162319660186768],[123,8,70,6.179772853851318],[123,8,71,6.204173564910889],[123,8,72,6.23335599899292],[123,8,73,6.251838207244873],[123,8,74,6.258948802947998],[123,8,75,6.261970043182373],[123,8,76,6.262178897857666],[123,8,77,6.260340690612793],[123,8,78,6.25700044631958],[123,8,79,6.249245643615723],[123,9,64,6.168478488922119],[123,9,65,6.168546676635742],[123,9,66,6.162295818328857],[123,9,67,6.155701637268066],[123,9,68,6.154285907745361],[123,9,69,6.162319660186768],[123,9,70,6.179772853851318],[123,9,71,6.204173564910889],[123,9,72,6.23335599899292],[123,9,73,6.251838207244873],[123,9,74,6.258948802947998],[123,9,75,6.261970043182373],[123,9,76,6.262178897857666],[123,9,77,6.260340690612793],[123,9,78,6.25700044631958],[123,9,79,6.249245643615723],[123,10,64,6.168478488922119],[123,10,65,6.168546676635742],[123,10,66,6.162295818328857],[123,10,67,6.155701637268066],[123,10,68,6.154285907745361],[123,10,69,6.162319660186768],[123,10,70,6.179772853851318],[123,10,71,6.204173564910889],[123,10,72,6.23335599899292],[123,10,73,6.251838207244873],[123,10,74,6.258948802947998],[123,10,75,6.261970043182373],[123,10,76,6.262178897857666],[123,10,77,6.260340690612793],[123,10,78,6.25700044631958],[123,10,79,6.249245643615723],[123,11,64,6.168478488922119],[123,11,65,6.168546676635742],[123,11,66,6.162295818328857],[123,11,67,6.155701637268066],[123,11,68,6.154285907745361],[123,11,69,6.162319660186768],[123,11,70,6.179772853851318],[123,11,71,6.204173564910889],[123,11,72,6.23335599899292],[123,11,73,6.251838207244873],[123,11,74,6.258948802947998],[123,11,75,6.261970043182373],[123,11,76,6.262178897857666],[123,11,77,6.260340690612793],[123,11,78,6.25700044631958],[123,11,79,6.249245643615723],[123,12,64,6.168478488922119],[123,12,65,6.168546676635742],[123,12,66,6.162295818328857],[123,12,67,6.155701637268066],[123,12,68,6.154285907745361],[123,12,69,6.162319660186768],[123,12,70,6.179772853851318],[123,12,71,6.204173564910889],[123,12,72,6.23335599899292],[123,12,73,6.251838207244873],[123,12,74,6.258948802947998],[123,12,75,6.261970043182373],[123,12,76,6.262178897857666],[123,12,77,6.260340690612793],[123,12,78,6.25700044631958],[123,12,79,6.249245643615723],[123,13,64,6.168478488922119],[123,13,65,6.168546676635742],[123,13,66,6.162295818328857],[123,13,67,6.155701637268066],[123,13,68,6.154285907745361],[123,13,69,6.162319660186768],[123,13,70,6.179772853851318],[123,13,71,6.204173564910889],[123,13,72,6.23335599899292],[123,13,73,6.251838207244873],[123,13,74,6.258948802947998],[123,13,75,6.261970043182373],[123,13,76,6.262178897857666],[123,13,77,6.260340690612793],[123,13,78,6.25700044631958],[123,13,79,6.249245643615723],[123,14,64,6.168478488922119],[123,14,65,6.168546676635742],[123,14,66,6.162295818328857],[123,14,67,6.155701637268066],[123,14,68,6.154285907745361],[123,14,69,6.162319660186768],[123,14,70,6.179772853851318],[123,14,71,6.204173564910889],[123,14,72,6.23335599899292],[123,14,73,6.251838207244873],[123,14,74,6.258948802947998],[123,14,75,6.261970043182373],[123,14,76,6.262178897857666],[123,14,77,6.260340690612793],[123,14,78,6.25700044631958],[123,14,79,6.249245643615723],[123,15,64,6.168478488922119],[123,15,65,6.168546676635742],[123,15,66,6.162295818328857],[123,15,67,6.155701637268066],[123,15,68,6.154285907745361],[123,15,69,6.162319660186768],[123,15,70,6.179772853851318],[123,15,71,6.204173564910889],[123,15,72,6.23335599899292],[123,15,73,6.251838207244873],[123,15,74,6.258948802947998],[123,15,75,6.261970043182373],[123,15,76,6.262178897857666],[123,15,77,6.260340690612793],[123,15,78,6.25700044631958],[123,15,79,6.249245643615723],[123,16,64,6.168478488922119],[123,16,65,6.168546676635742],[123,16,66,6.162295818328857],[123,16,67,6.155701637268066],[123,16,68,6.154285907745361],[123,16,69,6.162319660186768],[123,16,70,6.179772853851318],[123,16,71,6.204173564910889],[123,16,72,6.23335599899292],[123,16,73,6.251838207244873],[123,16,74,6.258948802947998],[123,16,75,6.261970043182373],[123,16,76,6.262178897857666],[123,16,77,6.260340690612793],[123,16,78,6.25700044631958],[123,16,79,6.249245643615723],[123,17,64,6.168478488922119],[123,17,65,6.168546676635742],[123,17,66,6.162295818328857],[123,17,67,6.155701637268066],[123,17,68,6.154285907745361],[123,17,69,6.162319660186768],[123,17,70,6.179772853851318],[123,17,71,6.204173564910889],[123,17,72,6.23335599899292],[123,17,73,6.251838207244873],[123,17,74,6.258948802947998],[123,17,75,6.261970043182373],[123,17,76,6.262178897857666],[123,17,77,6.260340690612793],[123,17,78,6.25700044631958],[123,17,79,6.249245643615723],[123,18,64,6.168478488922119],[123,18,65,6.168546676635742],[123,18,66,6.162295818328857],[123,18,67,6.155701637268066],[123,18,68,6.154285907745361],[123,18,69,6.162319660186768],[123,18,70,6.179772853851318],[123,18,71,6.204173564910889],[123,18,72,6.23335599899292],[123,18,73,6.251838207244873],[123,18,74,6.258948802947998],[123,18,75,6.261970043182373],[123,18,76,6.262178897857666],[123,18,77,6.260340690612793],[123,18,78,6.25700044631958],[123,18,79,6.249245643615723],[123,19,64,6.168478488922119],[123,19,65,6.168546676635742],[123,19,66,6.162295818328857],[123,19,67,6.155701637268066],[123,19,68,6.154285907745361],[123,19,69,6.162319660186768],[123,19,70,6.179772853851318],[123,19,71,6.204173564910889],[123,19,72,6.23335599899292],[123,19,73,6.251838207244873],[123,19,74,6.258948802947998],[123,19,75,6.261970043182373],[123,19,76,6.262178897857666],[123,19,77,6.260340690612793],[123,19,78,6.25700044631958],[123,19,79,6.249245643615723],[123,20,64,6.168478488922119],[123,20,65,6.168546676635742],[123,20,66,6.162295818328857],[123,20,67,6.155701637268066],[123,20,68,6.154285907745361],[123,20,69,6.162319660186768],[123,20,70,6.179772853851318],[123,20,71,6.204173564910889],[123,20,72,6.23335599899292],[123,20,73,6.251838207244873],[123,20,74,6.258948802947998],[123,20,75,6.261970043182373],[123,20,76,6.262178897857666],[123,20,77,6.260340690612793],[123,20,78,6.25700044631958],[123,20,79,6.249245643615723],[123,21,64,6.168478488922119],[123,21,65,6.168546676635742],[123,21,66,6.162295818328857],[123,21,67,6.155701637268066],[123,21,68,6.154285907745361],[123,21,69,6.162319660186768],[123,21,70,6.179772853851318],[123,21,71,6.204173564910889],[123,21,72,6.23335599899292],[123,21,73,6.251838207244873],[123,21,74,6.258948802947998],[123,21,75,6.261970043182373],[123,21,76,6.262178897857666],[123,21,77,6.260340690612793],[123,21,78,6.25700044631958],[123,21,79,6.249245643615723],[123,22,64,6.168478488922119],[123,22,65,6.168546676635742],[123,22,66,6.162295818328857],[123,22,67,6.155701637268066],[123,22,68,6.154285907745361],[123,22,69,6.162319660186768],[123,22,70,6.179772853851318],[123,22,71,6.204173564910889],[123,22,72,6.23335599899292],[123,22,73,6.251838207244873],[123,22,74,6.258948802947998],[123,22,75,6.261970043182373],[123,22,76,6.262178897857666],[123,22,77,6.260340690612793],[123,22,78,6.25700044631958],[123,22,79,6.249245643615723],[123,23,64,6.168478488922119],[123,23,65,6.168546676635742],[123,23,66,6.162295818328857],[123,23,67,6.155701637268066],[123,23,68,6.154285907745361],[123,23,69,6.162319660186768],[123,23,70,6.179772853851318],[123,23,71,6.204173564910889],[123,23,72,6.23335599899292],[123,23,73,6.251838207244873],[123,23,74,6.258948802947998],[123,23,75,6.261970043182373],[123,23,76,6.262178897857666],[123,23,77,6.260340690612793],[123,23,78,6.25700044631958],[123,23,79,6.249245643615723],[123,24,64,6.168478488922119],[123,24,65,6.168546676635742],[123,24,66,6.162295818328857],[123,24,67,6.155701637268066],[123,24,68,6.154285907745361],[123,24,69,6.162319660186768],[123,24,70,6.179772853851318],[123,24,71,6.204173564910889],[123,24,72,6.23335599899292],[123,24,73,6.251838207244873],[123,24,74,6.258948802947998],[123,24,75,6.261970043182373],[123,24,76,6.262178897857666],[123,24,77,6.260340690612793],[123,24,78,6.25700044631958],[123,24,79,6.249245643615723],[123,25,64,6.168478488922119],[123,25,65,6.168546676635742],[123,25,66,6.162295818328857],[123,25,67,6.155701637268066],[123,25,68,6.154285907745361],[123,25,69,6.162319660186768],[123,25,70,6.179772853851318],[123,25,71,6.204173564910889],[123,25,72,6.23335599899292],[123,25,73,6.251838207244873],[123,25,74,6.258948802947998],[123,25,75,6.261970043182373],[123,25,76,6.262178897857666],[123,25,77,6.260340690612793],[123,25,78,6.25700044631958],[123,25,79,6.249245643615723],[123,26,64,6.168478488922119],[123,26,65,6.168546676635742],[123,26,66,6.162295818328857],[123,26,67,6.155701637268066],[123,26,68,6.154285907745361],[123,26,69,6.162319660186768],[123,26,70,6.179772853851318],[123,26,71,6.204173564910889],[123,26,72,6.23335599899292],[123,26,73,6.251838207244873],[123,26,74,6.258948802947998],[123,26,75,6.261970043182373],[123,26,76,6.262178897857666],[123,26,77,6.260340690612793],[123,26,78,6.25700044631958],[123,26,79,6.249245643615723],[123,27,64,6.168478488922119],[123,27,65,6.168546676635742],[123,27,66,6.162295818328857],[123,27,67,6.155701637268066],[123,27,68,6.154285907745361],[123,27,69,6.162319660186768],[123,27,70,6.179772853851318],[123,27,71,6.204173564910889],[123,27,72,6.23335599899292],[123,27,73,6.251838207244873],[123,27,74,6.258948802947998],[123,27,75,6.261970043182373],[123,27,76,6.262178897857666],[123,27,77,6.260340690612793],[123,27,78,6.25700044631958],[123,27,79,6.249245643615723],[123,28,64,6.168478488922119],[123,28,65,6.168546676635742],[123,28,66,6.162295818328857],[123,28,67,6.155701637268066],[123,28,68,6.154285907745361],[123,28,69,6.162319660186768],[123,28,70,6.179772853851318],[123,28,71,6.204173564910889],[123,28,72,6.23335599899292],[123,28,73,6.251838207244873],[123,28,74,6.258948802947998],[123,28,75,6.261970043182373],[123,28,76,6.262178897857666],[123,28,77,6.260340690612793],[123,28,78,6.25700044631958],[123,28,79,6.249245643615723],[123,29,64,6.168478488922119],[123,29,65,6.168546676635742],[123,29,66,6.162295818328857],[123,29,67,6.155701637268066],[123,29,68,6.154285907745361],[123,29,69,6.162319660186768],[123,29,70,6.179772853851318],[123,29,71,6.204173564910889],[123,29,72,6.23335599899292],[123,29,73,6.251838207244873],[123,29,74,6.258948802947998],[123,29,75,6.261970043182373],[123,29,76,6.262178897857666],[123,29,77,6.260340690612793],[123,29,78,6.25700044631958],[123,29,79,6.249245643615723],[123,30,64,6.168478488922119],[123,30,65,6.168546676635742],[123,30,66,6.162295818328857],[123,30,67,6.155701637268066],[123,30,68,6.154285907745361],[123,30,69,6.162319660186768],[123,30,70,6.179772853851318],[123,30,71,6.204173564910889],[123,30,72,6.23335599899292],[123,30,73,6.251838207244873],[123,30,74,6.258948802947998],[123,30,75,6.261970043182373],[123,30,76,6.262178897857666],[123,30,77,6.260340690612793],[123,30,78,6.25700044631958],[123,30,79,6.249245643615723],[123,31,64,6.168478488922119],[123,31,65,6.168546676635742],[123,31,66,6.162295818328857],[123,31,67,6.155701637268066],[123,31,68,6.154285907745361],[123,31,69,6.162319660186768],[123,31,70,6.179772853851318],[123,31,71,6.204173564910889],[123,31,72,6.23335599899292],[123,31,73,6.251838207244873],[123,31,74,6.258948802947998],[123,31,75,6.261970043182373],[123,31,76,6.262178897857666],[123,31,77,6.260340690612793],[123,31,78,6.25700044631958],[123,31,79,6.249245643615723],[123,32,64,6.168478488922119],[123,32,65,6.168546676635742],[123,32,66,6.162295818328857],[123,32,67,6.155701637268066],[123,32,68,6.154285907745361],[123,32,69,6.162319660186768],[123,32,70,6.179772853851318],[123,32,71,6.204173564910889],[123,32,72,6.23335599899292],[123,32,73,6.251838207244873],[123,32,74,6.258948802947998],[123,32,75,6.261970043182373],[123,32,76,6.262178897857666],[123,32,77,6.260340690612793],[123,32,78,6.25700044631958],[123,32,79,6.249245643615723],[123,33,64,6.168478488922119],[123,33,65,6.168546676635742],[123,33,66,6.162295818328857],[123,33,67,6.155701637268066],[123,33,68,6.154285907745361],[123,33,69,6.162319660186768],[123,33,70,6.179772853851318],[123,33,71,6.204173564910889],[123,33,72,6.23335599899292],[123,33,73,6.251838207244873],[123,33,74,6.258948802947998],[123,33,75,6.261970043182373],[123,33,76,6.262178897857666],[123,33,77,6.260340690612793],[123,33,78,6.25700044631958],[123,33,79,6.249245643615723],[123,34,64,6.168478488922119],[123,34,65,6.168546676635742],[123,34,66,6.162295818328857],[123,34,67,6.155701637268066],[123,34,68,6.154285907745361],[123,34,69,6.162319660186768],[123,34,70,6.179772853851318],[123,34,71,6.204173564910889],[123,34,72,6.23335599899292],[123,34,73,6.251838207244873],[123,34,74,6.258948802947998],[123,34,75,6.261970043182373],[123,34,76,6.262178897857666],[123,34,77,6.260340690612793],[123,34,78,6.25700044631958],[123,34,79,6.249245643615723],[123,35,64,6.168478488922119],[123,35,65,6.168546676635742],[123,35,66,6.162295818328857],[123,35,67,6.155701637268066],[123,35,68,6.154285907745361],[123,35,69,6.162319660186768],[123,35,70,6.179772853851318],[123,35,71,6.204173564910889],[123,35,72,6.23335599899292],[123,35,73,6.251838207244873],[123,35,74,6.258948802947998],[123,35,75,6.261970043182373],[123,35,76,6.262178897857666],[123,35,77,6.260340690612793],[123,35,78,6.25700044631958],[123,35,79,6.249245643615723],[123,36,64,6.168478488922119],[123,36,65,6.168546676635742],[123,36,66,6.162295818328857],[123,36,67,6.155701637268066],[123,36,68,6.154285907745361],[123,36,69,6.162319660186768],[123,36,70,6.179772853851318],[123,36,71,6.204173564910889],[123,36,72,6.23335599899292],[123,36,73,6.251838207244873],[123,36,74,6.258948802947998],[123,36,75,6.261970043182373],[123,36,76,6.262178897857666],[123,36,77,6.260340690612793],[123,36,78,6.25700044631958],[123,36,79,6.249245643615723],[123,37,64,6.168478488922119],[123,37,65,6.168546676635742],[123,37,66,6.162295818328857],[123,37,67,6.155701637268066],[123,37,68,6.154285907745361],[123,37,69,6.162319660186768],[123,37,70,6.179772853851318],[123,37,71,6.204173564910889],[123,37,72,6.23335599899292],[123,37,73,6.251838207244873],[123,37,74,6.258948802947998],[123,37,75,6.261970043182373],[123,37,76,6.262178897857666],[123,37,77,6.260340690612793],[123,37,78,6.25700044631958],[123,37,79,6.249245643615723],[123,38,64,6.168478488922119],[123,38,65,6.168546676635742],[123,38,66,6.162295818328857],[123,38,67,6.155701637268066],[123,38,68,6.154285907745361],[123,38,69,6.162319660186768],[123,38,70,6.179772853851318],[123,38,71,6.204173564910889],[123,38,72,6.23335599899292],[123,38,73,6.251838207244873],[123,38,74,6.258948802947998],[123,38,75,6.261970043182373],[123,38,76,6.262178897857666],[123,38,77,6.260340690612793],[123,38,78,6.25700044631958],[123,38,79,6.249245643615723],[123,39,64,6.168478488922119],[123,39,65,6.168546676635742],[123,39,66,6.162295818328857],[123,39,67,6.155701637268066],[123,39,68,6.154285907745361],[123,39,69,6.162319660186768],[123,39,70,6.179772853851318],[123,39,71,6.204173564910889],[123,39,72,6.23335599899292],[123,39,73,6.251838207244873],[123,39,74,6.258948802947998],[123,39,75,6.261970043182373],[123,39,76,6.262178897857666],[123,39,77,6.260340690612793],[123,39,78,6.25700044631958],[123,39,79,6.249245643615723],[123,40,64,6.168478488922119],[123,40,65,6.168546676635742],[123,40,66,6.162295818328857],[123,40,67,6.155701637268066],[123,40,68,6.154285907745361],[123,40,69,6.162319660186768],[123,40,70,6.179772853851318],[123,40,71,6.204173564910889],[123,40,72,6.23335599899292],[123,40,73,6.251838207244873],[123,40,74,6.258948802947998],[123,40,75,6.261970043182373],[123,40,76,6.262178897857666],[123,40,77,6.260340690612793],[123,40,78,6.25700044631958],[123,40,79,6.249245643615723],[123,41,64,6.168478488922119],[123,41,65,6.168546676635742],[123,41,66,6.162295818328857],[123,41,67,6.155701637268066],[123,41,68,6.154285907745361],[123,41,69,6.162319660186768],[123,41,70,6.179772853851318],[123,41,71,6.204173564910889],[123,41,72,6.23335599899292],[123,41,73,6.251838207244873],[123,41,74,6.258948802947998],[123,41,75,6.261970043182373],[123,41,76,6.262178897857666],[123,41,77,6.260340690612793],[123,41,78,6.25700044631958],[123,41,79,6.249245643615723],[123,42,64,6.168478488922119],[123,42,65,6.168546676635742],[123,42,66,6.162295818328857],[123,42,67,6.155701637268066],[123,42,68,6.154285907745361],[123,42,69,6.162319660186768],[123,42,70,6.179772853851318],[123,42,71,6.204173564910889],[123,42,72,6.23335599899292],[123,42,73,6.251838207244873],[123,42,74,6.258948802947998],[123,42,75,6.261970043182373],[123,42,76,6.262178897857666],[123,42,77,6.260340690612793],[123,42,78,6.25700044631958],[123,42,79,6.249245643615723],[123,43,64,6.168478488922119],[123,43,65,6.168546676635742],[123,43,66,6.162295818328857],[123,43,67,6.155701637268066],[123,43,68,6.154285907745361],[123,43,69,6.162319660186768],[123,43,70,6.179772853851318],[123,43,71,6.204173564910889],[123,43,72,6.23335599899292],[123,43,73,6.251838207244873],[123,43,74,6.258948802947998],[123,43,75,6.261970043182373],[123,43,76,6.262178897857666],[123,43,77,6.260340690612793],[123,43,78,6.25700044631958],[123,43,79,6.249245643615723],[123,44,64,6.168478488922119],[123,44,65,6.168546676635742],[123,44,66,6.162295818328857],[123,44,67,6.155701637268066],[123,44,68,6.154285907745361],[123,44,69,6.162319660186768],[123,44,70,6.179772853851318],[123,44,71,6.204173564910889],[123,44,72,6.23335599899292],[123,44,73,6.251838207244873],[123,44,74,6.258948802947998],[123,44,75,6.261970043182373],[123,44,76,6.262178897857666],[123,44,77,6.260340690612793],[123,44,78,6.25700044631958],[123,44,79,6.249245643615723],[123,45,64,6.168478488922119],[123,45,65,6.168546676635742],[123,45,66,6.162295818328857],[123,45,67,6.155701637268066],[123,45,68,6.154285907745361],[123,45,69,6.162319660186768],[123,45,70,6.179772853851318],[123,45,71,6.204173564910889],[123,45,72,6.23335599899292],[123,45,73,6.251838207244873],[123,45,74,6.258948802947998],[123,45,75,6.261970043182373],[123,45,76,6.262178897857666],[123,45,77,6.260340690612793],[123,45,78,6.25700044631958],[123,45,79,6.249245643615723],[123,46,64,6.168478488922119],[123,46,65,6.168546676635742],[123,46,66,6.162295818328857],[123,46,67,6.155701637268066],[123,46,68,6.154285907745361],[123,46,69,6.162319660186768],[123,46,70,6.179772853851318],[123,46,71,6.204173564910889],[123,46,72,6.23335599899292],[123,46,73,6.251838207244873],[123,46,74,6.258948802947998],[123,46,75,6.261970043182373],[123,46,76,6.262178897857666],[123,46,77,6.260340690612793],[123,46,78,6.25700044631958],[123,46,79,6.249245643615723],[123,47,64,6.168478488922119],[123,47,65,6.168546676635742],[123,47,66,6.162295818328857],[123,47,67,6.155701637268066],[123,47,68,6.154285907745361],[123,47,69,6.162319660186768],[123,47,70,6.179772853851318],[123,47,71,6.204173564910889],[123,47,72,6.23335599899292],[123,47,73,6.251838207244873],[123,47,74,6.258948802947998],[123,47,75,6.261970043182373],[123,47,76,6.262178897857666],[123,47,77,6.260340690612793],[123,47,78,6.25700044631958],[123,47,79,6.249245643615723],[123,48,64,6.168478488922119],[123,48,65,6.168546676635742],[123,48,66,6.162295818328857],[123,48,67,6.155701637268066],[123,48,68,6.154285907745361],[123,48,69,6.162319660186768],[123,48,70,6.179772853851318],[123,48,71,6.204173564910889],[123,48,72,6.23335599899292],[123,48,73,6.251838207244873],[123,48,74,6.258948802947998],[123,48,75,6.261970043182373],[123,48,76,6.262178897857666],[123,48,77,6.260340690612793],[123,48,78,6.25700044631958],[123,48,79,6.249245643615723],[123,49,64,6.168478488922119],[123,49,65,6.168546676635742],[123,49,66,6.162295818328857],[123,49,67,6.155701637268066],[123,49,68,6.154285907745361],[123,49,69,6.162319660186768],[123,49,70,6.179772853851318],[123,49,71,6.204173564910889],[123,49,72,6.23335599899292],[123,49,73,6.251838207244873],[123,49,74,6.258948802947998],[123,49,75,6.261970043182373],[123,49,76,6.262178897857666],[123,49,77,6.260340690612793],[123,49,78,6.25700044631958],[123,49,79,6.249245643615723],[123,50,64,6.168478488922119],[123,50,65,6.168546676635742],[123,50,66,6.162295818328857],[123,50,67,6.155701637268066],[123,50,68,6.154285907745361],[123,50,69,6.162319660186768],[123,50,70,6.179772853851318],[123,50,71,6.204173564910889],[123,50,72,6.23335599899292],[123,50,73,6.251838207244873],[123,50,74,6.258948802947998],[123,50,75,6.261970043182373],[123,50,76,6.262178897857666],[123,50,77,6.260340690612793],[123,50,78,6.25700044631958],[123,50,79,6.249245643615723],[123,51,64,6.168478488922119],[123,51,65,6.168546676635742],[123,51,66,6.162295818328857],[123,51,67,6.155701637268066],[123,51,68,6.154285907745361],[123,51,69,6.162319660186768],[123,51,70,6.179772853851318],[123,51,71,6.204173564910889],[123,51,72,6.23335599899292],[123,51,73,6.251838207244873],[123,51,74,6.258948802947998],[123,51,75,6.261970043182373],[123,51,76,6.262178897857666],[123,51,77,6.260340690612793],[123,51,78,6.25700044631958],[123,51,79,6.249245643615723],[123,52,64,6.168478488922119],[123,52,65,6.168546676635742],[123,52,66,6.162295818328857],[123,52,67,6.155701637268066],[123,52,68,6.154285907745361],[123,52,69,6.162319660186768],[123,52,70,6.179772853851318],[123,52,71,6.204173564910889],[123,52,72,6.23335599899292],[123,52,73,6.251838207244873],[123,52,74,6.258948802947998],[123,52,75,6.261970043182373],[123,52,76,6.262178897857666],[123,52,77,6.260340690612793],[123,52,78,6.25700044631958],[123,52,79,6.249245643615723],[123,53,64,6.168478488922119],[123,53,65,6.168546676635742],[123,53,66,6.162295818328857],[123,53,67,6.155701637268066],[123,53,68,6.154285907745361],[123,53,69,6.162319660186768],[123,53,70,6.179772853851318],[123,53,71,6.204173564910889],[123,53,72,6.23335599899292],[123,53,73,6.251838207244873],[123,53,74,6.258948802947998],[123,53,75,6.261970043182373],[123,53,76,6.262178897857666],[123,53,77,6.260340690612793],[123,53,78,6.25700044631958],[123,53,79,6.249245643615723],[123,54,64,6.168478488922119],[123,54,65,6.168546676635742],[123,54,66,6.162295818328857],[123,54,67,6.155701637268066],[123,54,68,6.154285907745361],[123,54,69,6.162319660186768],[123,54,70,6.179772853851318],[123,54,71,6.204173564910889],[123,54,72,6.23335599899292],[123,54,73,6.251838207244873],[123,54,74,6.258948802947998],[123,54,75,6.261970043182373],[123,54,76,6.262178897857666],[123,54,77,6.260340690612793],[123,54,78,6.25700044631958],[123,54,79,6.249245643615723],[123,55,64,6.168478488922119],[123,55,65,6.168546676635742],[123,55,66,6.162295818328857],[123,55,67,6.155701637268066],[123,55,68,6.154285907745361],[123,55,69,6.162319660186768],[123,55,70,6.179772853851318],[123,55,71,6.204173564910889],[123,55,72,6.23335599899292],[123,55,73,6.251838207244873],[123,55,74,6.258948802947998],[123,55,75,6.261970043182373],[123,55,76,6.262178897857666],[123,55,77,6.260340690612793],[123,55,78,6.25700044631958],[123,55,79,6.249245643615723],[123,56,64,6.168478488922119],[123,56,65,6.168546676635742],[123,56,66,6.162295818328857],[123,56,67,6.155701637268066],[123,56,68,6.154285907745361],[123,56,69,6.162319660186768],[123,56,70,6.179772853851318],[123,56,71,6.204173564910889],[123,56,72,6.23335599899292],[123,56,73,6.251838207244873],[123,56,74,6.258948802947998],[123,56,75,6.261970043182373],[123,56,76,6.262178897857666],[123,56,77,6.260340690612793],[123,56,78,6.25700044631958],[123,56,79,6.249245643615723],[123,57,64,6.168478488922119],[123,57,65,6.168546676635742],[123,57,66,6.162295818328857],[123,57,67,6.155701637268066],[123,57,68,6.154285907745361],[123,57,69,6.162319660186768],[123,57,70,6.179772853851318],[123,57,71,6.204173564910889],[123,57,72,6.23335599899292],[123,57,73,6.251838207244873],[123,57,74,6.258948802947998],[123,57,75,6.261970043182373],[123,57,76,6.262178897857666],[123,57,77,6.260340690612793],[123,57,78,6.25700044631958],[123,57,79,6.249245643615723],[123,58,64,6.168478488922119],[123,58,65,6.168546676635742],[123,58,66,6.162295818328857],[123,58,67,6.155701637268066],[123,58,68,6.154285907745361],[123,58,69,6.162319660186768],[123,58,70,6.179772853851318],[123,58,71,6.204173564910889],[123,58,72,6.23335599899292],[123,58,73,6.251838207244873],[123,58,74,6.258948802947998],[123,58,75,6.261970043182373],[123,58,76,6.262178897857666],[123,58,77,6.260340690612793],[123,58,78,6.25700044631958],[123,58,79,6.249245643615723],[123,59,64,6.168478488922119],[123,59,65,6.168546676635742],[123,59,66,6.162295818328857],[123,59,67,6.155701637268066],[123,59,68,6.154285907745361],[123,59,69,6.162319660186768],[123,59,70,6.179772853851318],[123,59,71,6.204173564910889],[123,59,72,6.23335599899292],[123,59,73,6.251838207244873],[123,59,74,6.258948802947998],[123,59,75,6.261970043182373],[123,59,76,6.262178897857666],[123,59,77,6.260340690612793],[123,59,78,6.25700044631958],[123,59,79,6.249245643615723],[123,60,64,6.168478488922119],[123,60,65,6.168546676635742],[123,60,66,6.162295818328857],[123,60,67,6.155701637268066],[123,60,68,6.154285907745361],[123,60,69,6.162319660186768],[123,60,70,6.179772853851318],[123,60,71,6.204173564910889],[123,60,72,6.23335599899292],[123,60,73,6.251838207244873],[123,60,74,6.258948802947998],[123,60,75,6.261970043182373],[123,60,76,6.262178897857666],[123,60,77,6.260340690612793],[123,60,78,6.25700044631958],[123,60,79,6.249245643615723],[123,61,64,6.168478488922119],[123,61,65,6.168546676635742],[123,61,66,6.162295818328857],[123,61,67,6.155701637268066],[123,61,68,6.154285907745361],[123,61,69,6.162319660186768],[123,61,70,6.179772853851318],[123,61,71,6.204173564910889],[123,61,72,6.23335599899292],[123,61,73,6.251838207244873],[123,61,74,6.258948802947998],[123,61,75,6.261970043182373],[123,61,76,6.262178897857666],[123,61,77,6.260340690612793],[123,61,78,6.25700044631958],[123,61,79,6.249245643615723],[123,62,64,6.168478488922119],[123,62,65,6.168546676635742],[123,62,66,6.162295818328857],[123,62,67,6.155701637268066],[123,62,68,6.154285907745361],[123,62,69,6.162319660186768],[123,62,70,6.179772853851318],[123,62,71,6.204173564910889],[123,62,72,6.23335599899292],[123,62,73,6.251838207244873],[123,62,74,6.258948802947998],[123,62,75,6.261970043182373],[123,62,76,6.262178897857666],[123,62,77,6.260340690612793],[123,62,78,6.25700044631958],[123,62,79,6.249245643615723],[123,63,64,6.168478488922119],[123,63,65,6.168546676635742],[123,63,66,6.162295818328857],[123,63,67,6.155701637268066],[123,63,68,6.154285907745361],[123,63,69,6.162319660186768],[123,63,70,6.179772853851318],[123,63,71,6.204173564910889],[123,63,72,6.23335599899292],[123,63,73,6.251838207244873],[123,63,74,6.258948802947998],[123,63,75,6.261970043182373],[123,63,76,6.262178897857666],[123,63,77,6.260340690612793],[123,63,78,6.25700044631958],[123,63,79,6.249245643615723],[123,64,64,6.168478488922119],[123,64,65,6.168546676635742],[123,64,66,6.162295818328857],[123,64,67,6.155701637268066],[123,64,68,6.154285907745361],[123,64,69,6.162319660186768],[123,64,70,6.179772853851318],[123,64,71,6.204173564910889],[123,64,72,6.23335599899292],[123,64,73,6.251838207244873],[123,64,74,6.258948802947998],[123,64,75,6.261970043182373],[123,64,76,6.262178897857666],[123,64,77,6.260340690612793],[123,64,78,6.25700044631958],[123,64,79,6.249245643615723],[123,65,64,6.168478488922119],[123,65,65,6.168546676635742],[123,65,66,6.162295818328857],[123,65,67,6.155701637268066],[123,65,68,6.154285907745361],[123,65,69,6.162319660186768],[123,65,70,6.179772853851318],[123,65,71,6.204173564910889],[123,65,72,6.23335599899292],[123,65,73,6.251838207244873],[123,65,74,6.258948802947998],[123,65,75,6.261970043182373],[123,65,76,6.262178897857666],[123,65,77,6.260340690612793],[123,65,78,6.25700044631958],[123,65,79,6.249245643615723],[123,66,64,6.168478488922119],[123,66,65,6.168546676635742],[123,66,66,6.162295818328857],[123,66,67,6.155701637268066],[123,66,68,6.154285907745361],[123,66,69,6.162319660186768],[123,66,70,6.179772853851318],[123,66,71,6.204173564910889],[123,66,72,6.23335599899292],[123,66,73,6.251838207244873],[123,66,74,6.258948802947998],[123,66,75,6.261970043182373],[123,66,76,6.262178897857666],[123,66,77,6.260340690612793],[123,66,78,6.25700044631958],[123,66,79,6.249245643615723],[123,67,64,6.168478488922119],[123,67,65,6.168546676635742],[123,67,66,6.162295818328857],[123,67,67,6.155701637268066],[123,67,68,6.154285907745361],[123,67,69,6.162319660186768],[123,67,70,6.179772853851318],[123,67,71,6.204173564910889],[123,67,72,6.23335599899292],[123,67,73,6.251838207244873],[123,67,74,6.258948802947998],[123,67,75,6.261970043182373],[123,67,76,6.262178897857666],[123,67,77,6.260340690612793],[123,67,78,6.25700044631958],[123,67,79,6.249245643615723],[123,68,64,6.168478488922119],[123,68,65,6.168546676635742],[123,68,66,6.162295818328857],[123,68,67,6.155701637268066],[123,68,68,6.154285907745361],[123,68,69,6.162319660186768],[123,68,70,6.179772853851318],[123,68,71,6.204173564910889],[123,68,72,6.23335599899292],[123,68,73,6.251838207244873],[123,68,74,6.258948802947998],[123,68,75,6.261970043182373],[123,68,76,6.262178897857666],[123,68,77,6.260340690612793],[123,68,78,6.25700044631958],[123,68,79,6.249245643615723],[123,69,64,6.168478488922119],[123,69,65,6.168546676635742],[123,69,66,6.162295818328857],[123,69,67,6.155701637268066],[123,69,68,6.154285907745361],[123,69,69,6.162319660186768],[123,69,70,6.179772853851318],[123,69,71,6.204173564910889],[123,69,72,6.23335599899292],[123,69,73,6.251838207244873],[123,69,74,6.258948802947998],[123,69,75,6.261970043182373],[123,69,76,6.262178897857666],[123,69,77,6.260340690612793],[123,69,78,6.25700044631958],[123,69,79,6.249245643615723],[123,70,64,6.168478488922119],[123,70,65,6.168546676635742],[123,70,66,6.162295818328857],[123,70,67,6.155701637268066],[123,70,68,6.154285907745361],[123,70,69,6.162319660186768],[123,70,70,6.179772853851318],[123,70,71,6.204173564910889],[123,70,72,6.23335599899292],[123,70,73,6.251838207244873],[123,70,74,6.258948802947998],[123,70,75,6.261970043182373],[123,70,76,6.262178897857666],[123,70,77,6.260340690612793],[123,70,78,6.25700044631958],[123,70,79,6.249245643615723],[123,71,64,6.168478488922119],[123,71,65,6.168546676635742],[123,71,66,6.162295818328857],[123,71,67,6.155701637268066],[123,71,68,6.154285907745361],[123,71,69,6.162319660186768],[123,71,70,6.179772853851318],[123,71,71,6.204173564910889],[123,71,72,6.23335599899292],[123,71,73,6.251838207244873],[123,71,74,6.258948802947998],[123,71,75,6.261970043182373],[123,71,76,6.262178897857666],[123,71,77,6.260340690612793],[123,71,78,6.25700044631958],[123,71,79,6.249245643615723],[123,72,64,6.168478488922119],[123,72,65,6.168546676635742],[123,72,66,6.162295818328857],[123,72,67,6.155701637268066],[123,72,68,6.154285907745361],[123,72,69,6.162319660186768],[123,72,70,6.179772853851318],[123,72,71,6.204173564910889],[123,72,72,6.23335599899292],[123,72,73,6.251838207244873],[123,72,74,6.258948802947998],[123,72,75,6.261970043182373],[123,72,76,6.262178897857666],[123,72,77,6.260340690612793],[123,72,78,6.25700044631958],[123,72,79,6.249245643615723],[123,73,64,6.168478488922119],[123,73,65,6.168546676635742],[123,73,66,6.162295818328857],[123,73,67,6.155701637268066],[123,73,68,6.154285907745361],[123,73,69,6.162319660186768],[123,73,70,6.179772853851318],[123,73,71,6.204173564910889],[123,73,72,6.23335599899292],[123,73,73,6.251838207244873],[123,73,74,6.258948802947998],[123,73,75,6.261970043182373],[123,73,76,6.262178897857666],[123,73,77,6.260340690612793],[123,73,78,6.25700044631958],[123,73,79,6.249245643615723],[123,74,64,6.168478488922119],[123,74,65,6.168546676635742],[123,74,66,6.162295818328857],[123,74,67,6.155701637268066],[123,74,68,6.154285907745361],[123,74,69,6.162319660186768],[123,74,70,6.179772853851318],[123,74,71,6.204173564910889],[123,74,72,6.23335599899292],[123,74,73,6.251838207244873],[123,74,74,6.258948802947998],[123,74,75,6.261970043182373],[123,74,76,6.262178897857666],[123,74,77,6.260340690612793],[123,74,78,6.25700044631958],[123,74,79,6.249245643615723],[123,75,64,6.168478488922119],[123,75,65,6.168546676635742],[123,75,66,6.162295818328857],[123,75,67,6.155701637268066],[123,75,68,6.154285907745361],[123,75,69,6.162319660186768],[123,75,70,6.179772853851318],[123,75,71,6.204173564910889],[123,75,72,6.23335599899292],[123,75,73,6.251838207244873],[123,75,74,6.258948802947998],[123,75,75,6.261970043182373],[123,75,76,6.262178897857666],[123,75,77,6.260340690612793],[123,75,78,6.25700044631958],[123,75,79,6.249245643615723],[123,76,64,6.168478488922119],[123,76,65,6.168546676635742],[123,76,66,6.162295818328857],[123,76,67,6.155701637268066],[123,76,68,6.154285907745361],[123,76,69,6.162319660186768],[123,76,70,6.179772853851318],[123,76,71,6.204173564910889],[123,76,72,6.23335599899292],[123,76,73,6.251838207244873],[123,76,74,6.258948802947998],[123,76,75,6.261970043182373],[123,76,76,6.262178897857666],[123,76,77,6.260340690612793],[123,76,78,6.25700044631958],[123,76,79,6.249245643615723],[123,77,64,6.168478488922119],[123,77,65,6.168546676635742],[123,77,66,6.162295818328857],[123,77,67,6.155701637268066],[123,77,68,6.154285907745361],[123,77,69,6.162319660186768],[123,77,70,6.179772853851318],[123,77,71,6.204173564910889],[123,77,72,6.23335599899292],[123,77,73,6.251838207244873],[123,77,74,6.258948802947998],[123,77,75,6.261970043182373],[123,77,76,6.262178897857666],[123,77,77,6.260340690612793],[123,77,78,6.25700044631958],[123,77,79,6.249245643615723],[123,78,64,6.168478488922119],[123,78,65,6.168546676635742],[123,78,66,6.162295818328857],[123,78,67,6.155701637268066],[123,78,68,6.154285907745361],[123,78,69,6.162319660186768],[123,78,70,6.179772853851318],[123,78,71,6.204173564910889],[123,78,72,6.23335599899292],[123,78,73,6.251838207244873],[123,78,74,6.258948802947998],[123,78,75,6.261970043182373],[123,78,76,6.262178897857666],[123,78,77,6.260340690612793],[123,78,78,6.25700044631958],[123,78,79,6.249245643615723],[123,79,64,6.168478488922119],[123,79,65,6.168546676635742],[123,79,66,6.162295818328857],[123,79,67,6.155701637268066],[123,79,68,6.154285907745361],[123,79,69,6.162319660186768],[123,79,70,6.179772853851318],[123,79,71,6.204173564910889],[123,79,72,6.23335599899292],[123,79,73,6.251838207244873],[123,79,74,6.258948802947998],[123,79,75,6.261970043182373],[123,79,76,6.262178897857666],[123,79,77,6.260340690612793],[123,79,78,6.25700044631958],[123,79,79,6.249245643615723],[123,80,64,6.168478488922119],[123,80,65,6.168546676635742],[123,80,66,6.162295818328857],[123,80,67,6.155701637268066],[123,80,68,6.154285907745361],[123,80,69,6.162319660186768],[123,80,70,6.179772853851318],[123,80,71,6.204173564910889],[123,80,72,6.23335599899292],[123,80,73,6.251838207244873],[123,80,74,6.258948802947998],[123,80,75,6.261970043182373],[123,80,76,6.262178897857666],[123,80,77,6.260340690612793],[123,80,78,6.25700044631958],[123,80,79,6.249245643615723],[123,81,64,6.168478488922119],[123,81,65,6.168546676635742],[123,81,66,6.162295818328857],[123,81,67,6.155701637268066],[123,81,68,6.154285907745361],[123,81,69,6.162319660186768],[123,81,70,6.179772853851318],[123,81,71,6.204173564910889],[123,81,72,6.23335599899292],[123,81,73,6.251838207244873],[123,81,74,6.258948802947998],[123,81,75,6.261970043182373],[123,81,76,6.262178897857666],[123,81,77,6.260340690612793],[123,81,78,6.25700044631958],[123,81,79,6.249245643615723],[123,82,64,6.168478488922119],[123,82,65,6.168546676635742],[123,82,66,6.162295818328857],[123,82,67,6.155701637268066],[123,82,68,6.154285907745361],[123,82,69,6.162319660186768],[123,82,70,6.179772853851318],[123,82,71,6.204173564910889],[123,82,72,6.23335599899292],[123,82,73,6.251838207244873],[123,82,74,6.258948802947998],[123,82,75,6.261970043182373],[123,82,76,6.262178897857666],[123,82,77,6.260340690612793],[123,82,78,6.25700044631958],[123,82,79,6.249245643615723],[123,83,64,6.168478488922119],[123,83,65,6.168546676635742],[123,83,66,6.162295818328857],[123,83,67,6.155701637268066],[123,83,68,6.154285907745361],[123,83,69,6.162319660186768],[123,83,70,6.179772853851318],[123,83,71,6.204173564910889],[123,83,72,6.23335599899292],[123,83,73,6.251838207244873],[123,83,74,6.258948802947998],[123,83,75,6.261970043182373],[123,83,76,6.262178897857666],[123,83,77,6.260340690612793],[123,83,78,6.25700044631958],[123,83,79,6.249245643615723],[123,84,64,6.168478488922119],[123,84,65,6.168546676635742],[123,84,66,6.162295818328857],[123,84,67,6.155701637268066],[123,84,68,6.154285907745361],[123,84,69,6.162319660186768],[123,84,70,6.179772853851318],[123,84,71,6.204173564910889],[123,84,72,6.23335599899292],[123,84,73,6.251838207244873],[123,84,74,6.258948802947998],[123,84,75,6.261970043182373],[123,84,76,6.262178897857666],[123,84,77,6.260340690612793],[123,84,78,6.25700044631958],[123,84,79,6.249245643615723],[123,85,64,6.168478488922119],[123,85,65,6.168546676635742],[123,85,66,6.162295818328857],[123,85,67,6.155701637268066],[123,85,68,6.154285907745361],[123,85,69,6.162319660186768],[123,85,70,6.179772853851318],[123,85,71,6.204173564910889],[123,85,72,6.23335599899292],[123,85,73,6.251838207244873],[123,85,74,6.258948802947998],[123,85,75,6.261970043182373],[123,85,76,6.262178897857666],[123,85,77,6.260340690612793],[123,85,78,6.25700044631958],[123,85,79,6.249245643615723],[123,86,64,6.168478488922119],[123,86,65,6.168546676635742],[123,86,66,6.162295818328857],[123,86,67,6.155701637268066],[123,86,68,6.154285907745361],[123,86,69,6.162319660186768],[123,86,70,6.179772853851318],[123,86,71,6.204173564910889],[123,86,72,6.23335599899292],[123,86,73,6.251838207244873],[123,86,74,6.258948802947998],[123,86,75,6.261970043182373],[123,86,76,6.262178897857666],[123,86,77,6.260340690612793],[123,86,78,6.25700044631958],[123,86,79,6.249245643615723],[123,87,64,6.168478488922119],[123,87,65,6.168546676635742],[123,87,66,6.162295818328857],[123,87,67,6.155701637268066],[123,87,68,6.154285907745361],[123,87,69,6.162319660186768],[123,87,70,6.179772853851318],[123,87,71,6.204173564910889],[123,87,72,6.23335599899292],[123,87,73,6.251838207244873],[123,87,74,6.258948802947998],[123,87,75,6.261970043182373],[123,87,76,6.262178897857666],[123,87,77,6.260340690612793],[123,87,78,6.25700044631958],[123,87,79,6.249245643615723],[123,88,64,6.168478488922119],[123,88,65,6.168546676635742],[123,88,66,6.162295818328857],[123,88,67,6.155701637268066],[123,88,68,6.154285907745361],[123,88,69,6.162319660186768],[123,88,70,6.179772853851318],[123,88,71,6.204173564910889],[123,88,72,6.23335599899292],[123,88,73,6.251838207244873],[123,88,74,6.258948802947998],[123,88,75,6.261970043182373],[123,88,76,6.262178897857666],[123,88,77,6.260340690612793],[123,88,78,6.25700044631958],[123,88,79,6.249245643615723],[123,89,64,6.168478488922119],[123,89,65,6.168546676635742],[123,89,66,6.162295818328857],[123,89,67,6.155701637268066],[123,89,68,6.154285907745361],[123,89,69,6.162319660186768],[123,89,70,6.179772853851318],[123,89,71,6.204173564910889],[123,89,72,6.23335599899292],[123,89,73,6.251838207244873],[123,89,74,6.258948802947998],[123,89,75,6.261970043182373],[123,89,76,6.262178897857666],[123,89,77,6.260340690612793],[123,89,78,6.25700044631958],[123,89,79,6.249245643615723],[123,90,64,6.168478488922119],[123,90,65,6.168546676635742],[123,90,66,6.162295818328857],[123,90,67,6.155701637268066],[123,90,68,6.154285907745361],[123,90,69,6.162319660186768],[123,90,70,6.179772853851318],[123,90,71,6.204173564910889],[123,90,72,6.23335599899292],[123,90,73,6.251838207244873],[123,90,74,6.258948802947998],[123,90,75,6.261970043182373],[123,90,76,6.262178897857666],[123,90,77,6.260340690612793],[123,90,78,6.25700044631958],[123,90,79,6.249245643615723],[123,91,64,6.168478488922119],[123,91,65,6.168546676635742],[123,91,66,6.162295818328857],[123,91,67,6.155701637268066],[123,91,68,6.154285907745361],[123,91,69,6.162319660186768],[123,91,70,6.179772853851318],[123,91,71,6.204173564910889],[123,91,72,6.23335599899292],[123,91,73,6.251838207244873],[123,91,74,6.258948802947998],[123,91,75,6.261970043182373],[123,91,76,6.262178897857666],[123,91,77,6.260340690612793],[123,91,78,6.25700044631958],[123,91,79,6.249245643615723],[123,92,64,6.168478488922119],[123,92,65,6.168546676635742],[123,92,66,6.162295818328857],[123,92,67,6.155701637268066],[123,92,68,6.154285907745361],[123,92,69,6.162319660186768],[123,92,70,6.179772853851318],[123,92,71,6.204173564910889],[123,92,72,6.23335599899292],[123,92,73,6.251838207244873],[123,92,74,6.258948802947998],[123,92,75,6.261970043182373],[123,92,76,6.262178897857666],[123,92,77,6.260340690612793],[123,92,78,6.25700044631958],[123,92,79,6.249245643615723],[123,93,64,6.168478488922119],[123,93,65,6.168546676635742],[123,93,66,6.162295818328857],[123,93,67,6.155701637268066],[123,93,68,6.154285907745361],[123,93,69,6.162319660186768],[123,93,70,6.179772853851318],[123,93,71,6.204173564910889],[123,93,72,6.23335599899292],[123,93,73,6.251838207244873],[123,93,74,6.258948802947998],[123,93,75,6.261970043182373],[123,93,76,6.262178897857666],[123,93,77,6.260340690612793],[123,93,78,6.25700044631958],[123,93,79,6.249245643615723],[123,94,64,6.168478488922119],[123,94,65,6.168546676635742],[123,94,66,6.162295818328857],[123,94,67,6.155701637268066],[123,94,68,6.154285907745361],[123,94,69,6.162319660186768],[123,94,70,6.179772853851318],[123,94,71,6.204173564910889],[123,94,72,6.23335599899292],[123,94,73,6.251838207244873],[123,94,74,6.258948802947998],[123,94,75,6.261970043182373],[123,94,76,6.262178897857666],[123,94,77,6.260340690612793],[123,94,78,6.25700044631958],[123,94,79,6.249245643615723],[123,95,64,6.168478488922119],[123,95,65,6.168546676635742],[123,95,66,6.162295818328857],[123,95,67,6.155701637268066],[123,95,68,6.154285907745361],[123,95,69,6.162319660186768],[123,95,70,6.179772853851318],[123,95,71,6.204173564910889],[123,95,72,6.23335599899292],[123,95,73,6.251838207244873],[123,95,74,6.258948802947998],[123,95,75,6.261970043182373],[123,95,76,6.262178897857666],[123,95,77,6.260340690612793],[123,95,78,6.25700044631958],[123,95,79,6.249245643615723],[123,96,64,6.168478488922119],[123,96,65,6.168546676635742],[123,96,66,6.162295818328857],[123,96,67,6.155701637268066],[123,96,68,6.154285907745361],[123,96,69,6.162319660186768],[123,96,70,6.179772853851318],[123,96,71,6.204173564910889],[123,96,72,6.23335599899292],[123,96,73,6.251838207244873],[123,96,74,6.258948802947998],[123,96,75,6.261970043182373],[123,96,76,6.262178897857666],[123,96,77,6.260340690612793],[123,96,78,6.25700044631958],[123,96,79,6.249245643615723],[123,97,64,6.168478488922119],[123,97,65,6.168546676635742],[123,97,66,6.162295818328857],[123,97,67,6.155701637268066],[123,97,68,6.154285907745361],[123,97,69,6.162319660186768],[123,97,70,6.179772853851318],[123,97,71,6.204173564910889],[123,97,72,6.23335599899292],[123,97,73,6.251838207244873],[123,97,74,6.258948802947998],[123,97,75,6.261970043182373],[123,97,76,6.262178897857666],[123,97,77,6.260340690612793],[123,97,78,6.25700044631958],[123,97,79,6.249245643615723],[123,98,64,6.168478488922119],[123,98,65,6.168546676635742],[123,98,66,6.162295818328857],[123,98,67,6.155701637268066],[123,98,68,6.154285907745361],[123,98,69,6.162319660186768],[123,98,70,6.179772853851318],[123,98,71,6.204173564910889],[123,98,72,6.23335599899292],[123,98,73,6.251838207244873],[123,98,74,6.258948802947998],[123,98,75,6.261970043182373],[123,98,76,6.262178897857666],[123,98,77,6.260340690612793],[123,98,78,6.25700044631958],[123,98,79,6.249245643615723],[123,99,64,6.168478488922119],[123,99,65,6.168546676635742],[123,99,66,6.162295818328857],[123,99,67,6.155701637268066],[123,99,68,6.154285907745361],[123,99,69,6.162319660186768],[123,99,70,6.179772853851318],[123,99,71,6.204173564910889],[123,99,72,6.23335599899292],[123,99,73,6.251838207244873],[123,99,74,6.258948802947998],[123,99,75,6.261970043182373],[123,99,76,6.262178897857666],[123,99,77,6.260340690612793],[123,99,78,6.25700044631958],[123,99,79,6.249245643615723],[123,100,64,6.168478488922119],[123,100,65,6.168546676635742],[123,100,66,6.162295818328857],[123,100,67,6.155701637268066],[123,100,68,6.154285907745361],[123,100,69,6.162319660186768],[123,100,70,6.179772853851318],[123,100,71,6.204173564910889],[123,100,72,6.23335599899292],[123,100,73,6.251838207244873],[123,100,74,6.258948802947998],[123,100,75,6.261970043182373],[123,100,76,6.262178897857666],[123,100,77,6.260340690612793],[123,100,78,6.25700044631958],[123,100,79,6.249245643615723],[123,101,64,6.168478488922119],[123,101,65,6.168546676635742],[123,101,66,6.162295818328857],[123,101,67,6.155701637268066],[123,101,68,6.154285907745361],[123,101,69,6.162319660186768],[123,101,70,6.179772853851318],[123,101,71,6.204173564910889],[123,101,72,6.23335599899292],[123,101,73,6.251838207244873],[123,101,74,6.258948802947998],[123,101,75,6.261970043182373],[123,101,76,6.262178897857666],[123,101,77,6.260340690612793],[123,101,78,6.25700044631958],[123,101,79,6.249245643615723],[123,102,64,6.168478488922119],[123,102,65,6.168546676635742],[123,102,66,6.162295818328857],[123,102,67,6.155701637268066],[123,102,68,6.154285907745361],[123,102,69,6.162319660186768],[123,102,70,6.179772853851318],[123,102,71,6.204173564910889],[123,102,72,6.23335599899292],[123,102,73,6.251838207244873],[123,102,74,6.258948802947998],[123,102,75,6.261970043182373],[123,102,76,6.262178897857666],[123,102,77,6.260340690612793],[123,102,78,6.25700044631958],[123,102,79,6.249245643615723],[123,103,64,6.168478488922119],[123,103,65,6.168546676635742],[123,103,66,6.162295818328857],[123,103,67,6.155701637268066],[123,103,68,6.154285907745361],[123,103,69,6.162319660186768],[123,103,70,6.179772853851318],[123,103,71,6.204173564910889],[123,103,72,6.23335599899292],[123,103,73,6.251838207244873],[123,103,74,6.258948802947998],[123,103,75,6.261970043182373],[123,103,76,6.262178897857666],[123,103,77,6.260340690612793],[123,103,78,6.25700044631958],[123,103,79,6.249245643615723],[123,104,64,6.168478488922119],[123,104,65,6.168546676635742],[123,104,66,6.162295818328857],[123,104,67,6.155701637268066],[123,104,68,6.154285907745361],[123,104,69,6.162319660186768],[123,104,70,6.179772853851318],[123,104,71,6.204173564910889],[123,104,72,6.23335599899292],[123,104,73,6.251838207244873],[123,104,74,6.258948802947998],[123,104,75,6.261970043182373],[123,104,76,6.262178897857666],[123,104,77,6.260340690612793],[123,104,78,6.25700044631958],[123,104,79,6.249245643615723],[123,105,64,6.168478488922119],[123,105,65,6.168546676635742],[123,105,66,6.162295818328857],[123,105,67,6.155701637268066],[123,105,68,6.154285907745361],[123,105,69,6.162319660186768],[123,105,70,6.179772853851318],[123,105,71,6.204173564910889],[123,105,72,6.23335599899292],[123,105,73,6.251838207244873],[123,105,74,6.258948802947998],[123,105,75,6.261970043182373],[123,105,76,6.262178897857666],[123,105,77,6.260340690612793],[123,105,78,6.25700044631958],[123,105,79,6.249245643615723],[123,106,64,6.168478488922119],[123,106,65,6.168546676635742],[123,106,66,6.162295818328857],[123,106,67,6.155701637268066],[123,106,68,6.154285907745361],[123,106,69,6.162319660186768],[123,106,70,6.179772853851318],[123,106,71,6.204173564910889],[123,106,72,6.23335599899292],[123,106,73,6.251838207244873],[123,106,74,6.258948802947998],[123,106,75,6.261970043182373],[123,106,76,6.262178897857666],[123,106,77,6.260340690612793],[123,106,78,6.25700044631958],[123,106,79,6.249245643615723],[123,107,64,6.168478488922119],[123,107,65,6.168546676635742],[123,107,66,6.162295818328857],[123,107,67,6.155701637268066],[123,107,68,6.154285907745361],[123,107,69,6.162319660186768],[123,107,70,6.179772853851318],[123,107,71,6.204173564910889],[123,107,72,6.23335599899292],[123,107,73,6.251838207244873],[123,107,74,6.258948802947998],[123,107,75,6.261970043182373],[123,107,76,6.262178897857666],[123,107,77,6.260340690612793],[123,107,78,6.25700044631958],[123,107,79,6.249245643615723],[123,108,64,6.168478488922119],[123,108,65,6.168546676635742],[123,108,66,6.162295818328857],[123,108,67,6.155701637268066],[123,108,68,6.154285907745361],[123,108,69,6.162319660186768],[123,108,70,6.179772853851318],[123,108,71,6.204173564910889],[123,108,72,6.23335599899292],[123,108,73,6.251838207244873],[123,108,74,6.258948802947998],[123,108,75,6.261970043182373],[123,108,76,6.262178897857666],[123,108,77,6.260340690612793],[123,108,78,6.25700044631958],[123,108,79,6.249245643615723],[123,109,64,6.168478488922119],[123,109,65,6.168546676635742],[123,109,66,6.162295818328857],[123,109,67,6.155701637268066],[123,109,68,6.154285907745361],[123,109,69,6.162319660186768],[123,109,70,6.179772853851318],[123,109,71,6.204173564910889],[123,109,72,6.23335599899292],[123,109,73,6.251838207244873],[123,109,74,6.258948802947998],[123,109,75,6.261970043182373],[123,109,76,6.262178897857666],[123,109,77,6.260340690612793],[123,109,78,6.25700044631958],[123,109,79,6.249245643615723],[123,110,64,6.168478488922119],[123,110,65,6.168546676635742],[123,110,66,6.162295818328857],[123,110,67,6.155701637268066],[123,110,68,6.154285907745361],[123,110,69,6.162319660186768],[123,110,70,6.179772853851318],[123,110,71,6.204173564910889],[123,110,72,6.23335599899292],[123,110,73,6.251838207244873],[123,110,74,6.258948802947998],[123,110,75,6.261970043182373],[123,110,76,6.262178897857666],[123,110,77,6.260340690612793],[123,110,78,6.25700044631958],[123,110,79,6.249245643615723],[123,111,64,6.168478488922119],[123,111,65,6.168546676635742],[123,111,66,6.162295818328857],[123,111,67,6.155701637268066],[123,111,68,6.154285907745361],[123,111,69,6.162319660186768],[123,111,70,6.179772853851318],[123,111,71,6.204173564910889],[123,111,72,6.23335599899292],[123,111,73,6.251838207244873],[123,111,74,6.258948802947998],[123,111,75,6.261970043182373],[123,111,76,6.262178897857666],[123,111,77,6.260340690612793],[123,111,78,6.25700044631958],[123,111,79,6.249245643615723],[123,112,64,6.168478488922119],[123,112,65,6.168546676635742],[123,112,66,6.162295818328857],[123,112,67,6.155701637268066],[123,112,68,6.154285907745361],[123,112,69,6.162319660186768],[123,112,70,6.179772853851318],[123,112,71,6.204173564910889],[123,112,72,6.23335599899292],[123,112,73,6.251838207244873],[123,112,74,6.258948802947998],[123,112,75,6.261970043182373],[123,112,76,6.262178897857666],[123,112,77,6.260340690612793],[123,112,78,6.25700044631958],[123,112,79,6.249245643615723],[123,113,64,6.168478488922119],[123,113,65,6.168546676635742],[123,113,66,6.162295818328857],[123,113,67,6.155701637268066],[123,113,68,6.154285907745361],[123,113,69,6.162319660186768],[123,113,70,6.179772853851318],[123,113,71,6.204173564910889],[123,113,72,6.23335599899292],[123,113,73,6.251838207244873],[123,113,74,6.258948802947998],[123,113,75,6.261970043182373],[123,113,76,6.262178897857666],[123,113,77,6.260340690612793],[123,113,78,6.25700044631958],[123,113,79,6.249245643615723],[123,114,64,6.168478488922119],[123,114,65,6.168546676635742],[123,114,66,6.162295818328857],[123,114,67,6.155701637268066],[123,114,68,6.154285907745361],[123,114,69,6.162319660186768],[123,114,70,6.179772853851318],[123,114,71,6.204173564910889],[123,114,72,6.23335599899292],[123,114,73,6.251838207244873],[123,114,74,6.258948802947998],[123,114,75,6.261970043182373],[123,114,76,6.262178897857666],[123,114,77,6.260340690612793],[123,114,78,6.25700044631958],[123,114,79,6.249245643615723],[123,115,64,6.168478488922119],[123,115,65,6.168546676635742],[123,115,66,6.162295818328857],[123,115,67,6.155701637268066],[123,115,68,6.154285907745361],[123,115,69,6.162319660186768],[123,115,70,6.179772853851318],[123,115,71,6.204173564910889],[123,115,72,6.23335599899292],[123,115,73,6.251838207244873],[123,115,74,6.258948802947998],[123,115,75,6.261970043182373],[123,115,76,6.262178897857666],[123,115,77,6.260340690612793],[123,115,78,6.25700044631958],[123,115,79,6.249245643615723],[123,116,64,6.168478488922119],[123,116,65,6.168546676635742],[123,116,66,6.162295818328857],[123,116,67,6.155701637268066],[123,116,68,6.154285907745361],[123,116,69,6.162319660186768],[123,116,70,6.179772853851318],[123,116,71,6.204173564910889],[123,116,72,6.23335599899292],[123,116,73,6.251838207244873],[123,116,74,6.258948802947998],[123,116,75,6.261970043182373],[123,116,76,6.262178897857666],[123,116,77,6.260340690612793],[123,116,78,6.25700044631958],[123,116,79,6.249245643615723],[123,117,64,6.168478488922119],[123,117,65,6.168546676635742],[123,117,66,6.162295818328857],[123,117,67,6.155701637268066],[123,117,68,6.154285907745361],[123,117,69,6.162319660186768],[123,117,70,6.179772853851318],[123,117,71,6.204173564910889],[123,117,72,6.23335599899292],[123,117,73,6.251838207244873],[123,117,74,6.258948802947998],[123,117,75,6.261970043182373],[123,117,76,6.262178897857666],[123,117,77,6.260340690612793],[123,117,78,6.25700044631958],[123,117,79,6.249245643615723],[123,118,64,6.168478488922119],[123,118,65,6.168546676635742],[123,118,66,6.162295818328857],[123,118,67,6.155701637268066],[123,118,68,6.154285907745361],[123,118,69,6.162319660186768],[123,118,70,6.179772853851318],[123,118,71,6.204173564910889],[123,118,72,6.23335599899292],[123,118,73,6.251838207244873],[123,118,74,6.258948802947998],[123,118,75,6.261970043182373],[123,118,76,6.262178897857666],[123,118,77,6.260340690612793],[123,118,78,6.25700044631958],[123,118,79,6.249245643615723],[123,119,64,6.168478488922119],[123,119,65,6.168546676635742],[123,119,66,6.162295818328857],[123,119,67,6.155701637268066],[123,119,68,6.154285907745361],[123,119,69,6.162319660186768],[123,119,70,6.179772853851318],[123,119,71,6.204173564910889],[123,119,72,6.23335599899292],[123,119,73,6.251838207244873],[123,119,74,6.258948802947998],[123,119,75,6.261970043182373],[123,119,76,6.262178897857666],[123,119,77,6.260340690612793],[123,119,78,6.25700044631958],[123,119,79,6.249245643615723],[123,120,64,6.168478488922119],[123,120,65,6.168546676635742],[123,120,66,6.162295818328857],[123,120,67,6.155701637268066],[123,120,68,6.154285907745361],[123,120,69,6.162319660186768],[123,120,70,6.179772853851318],[123,120,71,6.204173564910889],[123,120,72,6.23335599899292],[123,120,73,6.251838207244873],[123,120,74,6.258948802947998],[123,120,75,6.261970043182373],[123,120,76,6.262178897857666],[123,120,77,6.260340690612793],[123,120,78,6.25700044631958],[123,120,79,6.249245643615723],[123,121,64,6.168478488922119],[123,121,65,6.168546676635742],[123,121,66,6.162295818328857],[123,121,67,6.155701637268066],[123,121,68,6.154285907745361],[123,121,69,6.162319660186768],[123,121,70,6.179772853851318],[123,121,71,6.204173564910889],[123,121,72,6.23335599899292],[123,121,73,6.251838207244873],[123,121,74,6.258948802947998],[123,121,75,6.261970043182373],[123,121,76,6.262178897857666],[123,121,77,6.260340690612793],[123,121,78,6.25700044631958],[123,121,79,6.249245643615723],[123,122,64,6.168478488922119],[123,122,65,6.168546676635742],[123,122,66,6.162295818328857],[123,122,67,6.155701637268066],[123,122,68,6.154285907745361],[123,122,69,6.162319660186768],[123,122,70,6.179772853851318],[123,122,71,6.204173564910889],[123,122,72,6.23335599899292],[123,122,73,6.251838207244873],[123,122,74,6.258948802947998],[123,122,75,6.261970043182373],[123,122,76,6.262178897857666],[123,122,77,6.260340690612793],[123,122,78,6.25700044631958],[123,122,79,6.249245643615723],[123,123,64,6.168478488922119],[123,123,65,6.168546676635742],[123,123,66,6.162295818328857],[123,123,67,6.155701637268066],[123,123,68,6.154285907745361],[123,123,69,6.162319660186768],[123,123,70,6.179772853851318],[123,123,71,6.204173564910889],[123,123,72,6.23335599899292],[123,123,73,6.251838207244873],[123,123,74,6.258948802947998],[123,123,75,6.261970043182373],[123,123,76,6.262178897857666],[123,123,77,6.260340690612793],[123,123,78,6.25700044631958],[123,123,79,6.249245643615723],[123,124,64,6.168478488922119],[123,124,65,6.168546676635742],[123,124,66,6.162295818328857],[123,124,67,6.155701637268066],[123,124,68,6.154285907745361],[123,124,69,6.162319660186768],[123,124,70,6.179772853851318],[123,124,71,6.204173564910889],[123,124,72,6.23335599899292],[123,124,73,6.251838207244873],[123,124,74,6.258948802947998],[123,124,75,6.261970043182373],[123,124,76,6.262178897857666],[123,124,77,6.260340690612793],[123,124,78,6.25700044631958],[123,124,79,6.249245643615723],[123,125,64,6.168478488922119],[123,125,65,6.168546676635742],[123,125,66,6.162295818328857],[123,125,67,6.155701637268066],[123,125,68,6.154285907745361],[123,125,69,6.162319660186768],[123,125,70,6.179772853851318],[123,125,71,6.204173564910889],[123,125,72,6.23335599899292],[123,125,73,6.251838207244873],[123,125,74,6.258948802947998],[123,125,75,6.261970043182373],[123,125,76,6.262178897857666],[123,125,77,6.260340690612793],[123,125,78,6.25700044631958],[123,125,79,6.249245643615723],[123,126,64,6.168478488922119],[123,126,65,6.168546676635742],[123,126,66,6.162295818328857],[123,126,67,6.155701637268066],[123,126,68,6.154285907745361],[123,126,69,6.162319660186768],[123,126,70,6.179772853851318],[123,126,71,6.204173564910889],[123,126,72,6.23335599899292],[123,126,73,6.251838207244873],[123,126,74,6.258948802947998],[123,126,75,6.261970043182373],[123,126,76,6.262178897857666],[123,126,77,6.260340690612793],[123,126,78,6.25700044631958],[123,126,79,6.249245643615723],[123,127,64,6.168478488922119],[123,127,65,6.168546676635742],[123,127,66,6.162295818328857],[123,127,67,6.155701637268066],[123,127,68,6.154285907745361],[123,127,69,6.162319660186768],[123,127,70,6.179772853851318],[123,127,71,6.204173564910889],[123,127,72,6.23335599899292],[123,127,73,6.251838207244873],[123,127,74,6.258948802947998],[123,127,75,6.261970043182373],[123,127,76,6.262178897857666],[123,127,77,6.260340690612793],[123,127,78,6.25700044631958],[123,127,79,6.249245643615723],[123,128,64,6.168478488922119],[123,128,65,6.168546676635742],[123,128,66,6.162295818328857],[123,128,67,6.155701637268066],[123,128,68,6.154285907745361],[123,128,69,6.162319660186768],[123,128,70,6.179772853851318],[123,128,71,6.204173564910889],[123,128,72,6.23335599899292],[123,128,73,6.251838207244873],[123,128,74,6.258948802947998],[123,128,75,6.261970043182373],[123,128,76,6.262178897857666],[123,128,77,6.260340690612793],[123,128,78,6.25700044631958],[123,128,79,6.249245643615723],[123,129,64,6.168478488922119],[123,129,65,6.168546676635742],[123,129,66,6.162295818328857],[123,129,67,6.155701637268066],[123,129,68,6.154285907745361],[123,129,69,6.162319660186768],[123,129,70,6.179772853851318],[123,129,71,6.204173564910889],[123,129,72,6.23335599899292],[123,129,73,6.251838207244873],[123,129,74,6.258948802947998],[123,129,75,6.261970043182373],[123,129,76,6.262178897857666],[123,129,77,6.260340690612793],[123,129,78,6.25700044631958],[123,129,79,6.249245643615723],[123,130,64,6.168478488922119],[123,130,65,6.168546676635742],[123,130,66,6.162295818328857],[123,130,67,6.155701637268066],[123,130,68,6.154285907745361],[123,130,69,6.162319660186768],[123,130,70,6.179772853851318],[123,130,71,6.204173564910889],[123,130,72,6.23335599899292],[123,130,73,6.251838207244873],[123,130,74,6.258948802947998],[123,130,75,6.261970043182373],[123,130,76,6.262178897857666],[123,130,77,6.260340690612793],[123,130,78,6.25700044631958],[123,130,79,6.249245643615723],[123,131,64,6.168478488922119],[123,131,65,6.168546676635742],[123,131,66,6.162295818328857],[123,131,67,6.155701637268066],[123,131,68,6.154285907745361],[123,131,69,6.162319660186768],[123,131,70,6.179772853851318],[123,131,71,6.204173564910889],[123,131,72,6.23335599899292],[123,131,73,6.251838207244873],[123,131,74,6.258948802947998],[123,131,75,6.261970043182373],[123,131,76,6.262178897857666],[123,131,77,6.260340690612793],[123,131,78,6.25700044631958],[123,131,79,6.249245643615723],[123,132,64,6.168478488922119],[123,132,65,6.168546676635742],[123,132,66,6.162295818328857],[123,132,67,6.155701637268066],[123,132,68,6.154285907745361],[123,132,69,6.162319660186768],[123,132,70,6.179772853851318],[123,132,71,6.204173564910889],[123,132,72,6.23335599899292],[123,132,73,6.251838207244873],[123,132,74,6.258948802947998],[123,132,75,6.261970043182373],[123,132,76,6.262178897857666],[123,132,77,6.260340690612793],[123,132,78,6.25700044631958],[123,132,79,6.249245643615723],[123,133,64,6.168478488922119],[123,133,65,6.168546676635742],[123,133,66,6.162295818328857],[123,133,67,6.155701637268066],[123,133,68,6.154285907745361],[123,133,69,6.162319660186768],[123,133,70,6.179772853851318],[123,133,71,6.204173564910889],[123,133,72,6.23335599899292],[123,133,73,6.251838207244873],[123,133,74,6.258948802947998],[123,133,75,6.261970043182373],[123,133,76,6.262178897857666],[123,133,77,6.260340690612793],[123,133,78,6.25700044631958],[123,133,79,6.249245643615723],[123,134,64,6.168478488922119],[123,134,65,6.168546676635742],[123,134,66,6.162295818328857],[123,134,67,6.155701637268066],[123,134,68,6.154285907745361],[123,134,69,6.162319660186768],[123,134,70,6.179772853851318],[123,134,71,6.204173564910889],[123,134,72,6.23335599899292],[123,134,73,6.251838207244873],[123,134,74,6.258948802947998],[123,134,75,6.261970043182373],[123,134,76,6.262178897857666],[123,134,77,6.260340690612793],[123,134,78,6.25700044631958],[123,134,79,6.249245643615723],[123,135,64,6.168478488922119],[123,135,65,6.168546676635742],[123,135,66,6.162295818328857],[123,135,67,6.155701637268066],[123,135,68,6.154285907745361],[123,135,69,6.162319660186768],[123,135,70,6.179772853851318],[123,135,71,6.204173564910889],[123,135,72,6.23335599899292],[123,135,73,6.251838207244873],[123,135,74,6.258948802947998],[123,135,75,6.261970043182373],[123,135,76,6.262178897857666],[123,135,77,6.260340690612793],[123,135,78,6.25700044631958],[123,135,79,6.249245643615723],[123,136,64,6.168478488922119],[123,136,65,6.168546676635742],[123,136,66,6.162295818328857],[123,136,67,6.155701637268066],[123,136,68,6.154285907745361],[123,136,69,6.162319660186768],[123,136,70,6.179772853851318],[123,136,71,6.204173564910889],[123,136,72,6.23335599899292],[123,136,73,6.251838207244873],[123,136,74,6.258948802947998],[123,136,75,6.261970043182373],[123,136,76,6.262178897857666],[123,136,77,6.260340690612793],[123,136,78,6.25700044631958],[123,136,79,6.249245643615723],[123,137,64,6.168478488922119],[123,137,65,6.168546676635742],[123,137,66,6.162295818328857],[123,137,67,6.155701637268066],[123,137,68,6.154285907745361],[123,137,69,6.162319660186768],[123,137,70,6.179772853851318],[123,137,71,6.204173564910889],[123,137,72,6.23335599899292],[123,137,73,6.251838207244873],[123,137,74,6.258948802947998],[123,137,75,6.261970043182373],[123,137,76,6.262178897857666],[123,137,77,6.260340690612793],[123,137,78,6.25700044631958],[123,137,79,6.249245643615723],[123,138,64,6.168478488922119],[123,138,65,6.168546676635742],[123,138,66,6.162295818328857],[123,138,67,6.155701637268066],[123,138,68,6.154285907745361],[123,138,69,6.162319660186768],[123,138,70,6.179772853851318],[123,138,71,6.204173564910889],[123,138,72,6.23335599899292],[123,138,73,6.251838207244873],[123,138,74,6.258948802947998],[123,138,75,6.261970043182373],[123,138,76,6.262178897857666],[123,138,77,6.260340690612793],[123,138,78,6.25700044631958],[123,138,79,6.249245643615723],[123,139,64,6.168478488922119],[123,139,65,6.168546676635742],[123,139,66,6.162295818328857],[123,139,67,6.155701637268066],[123,139,68,6.154285907745361],[123,139,69,6.162319660186768],[123,139,70,6.179772853851318],[123,139,71,6.204173564910889],[123,139,72,6.23335599899292],[123,139,73,6.251838207244873],[123,139,74,6.258948802947998],[123,139,75,6.261970043182373],[123,139,76,6.262178897857666],[123,139,77,6.260340690612793],[123,139,78,6.25700044631958],[123,139,79,6.249245643615723],[123,140,64,6.168478488922119],[123,140,65,6.168546676635742],[123,140,66,6.162295818328857],[123,140,67,6.155701637268066],[123,140,68,6.154285907745361],[123,140,69,6.162319660186768],[123,140,70,6.179772853851318],[123,140,71,6.204173564910889],[123,140,72,6.23335599899292],[123,140,73,6.251838207244873],[123,140,74,6.258948802947998],[123,140,75,6.261970043182373],[123,140,76,6.262178897857666],[123,140,77,6.260340690612793],[123,140,78,6.25700044631958],[123,140,79,6.249245643615723],[123,141,64,6.168478488922119],[123,141,65,6.168546676635742],[123,141,66,6.162295818328857],[123,141,67,6.155701637268066],[123,141,68,6.154285907745361],[123,141,69,6.162319660186768],[123,141,70,6.179772853851318],[123,141,71,6.204173564910889],[123,141,72,6.23335599899292],[123,141,73,6.251838207244873],[123,141,74,6.258948802947998],[123,141,75,6.261970043182373],[123,141,76,6.262178897857666],[123,141,77,6.260340690612793],[123,141,78,6.25700044631958],[123,141,79,6.249245643615723],[123,142,64,6.168478488922119],[123,142,65,6.168546676635742],[123,142,66,6.162295818328857],[123,142,67,6.155701637268066],[123,142,68,6.154285907745361],[123,142,69,6.162319660186768],[123,142,70,6.179772853851318],[123,142,71,6.204173564910889],[123,142,72,6.23335599899292],[123,142,73,6.251838207244873],[123,142,74,6.258948802947998],[123,142,75,6.261970043182373],[123,142,76,6.262178897857666],[123,142,77,6.260340690612793],[123,142,78,6.25700044631958],[123,142,79,6.249245643615723],[123,143,64,6.168478488922119],[123,143,65,6.168546676635742],[123,143,66,6.162295818328857],[123,143,67,6.155701637268066],[123,143,68,6.154285907745361],[123,143,69,6.162319660186768],[123,143,70,6.179772853851318],[123,143,71,6.204173564910889],[123,143,72,6.23335599899292],[123,143,73,6.251838207244873],[123,143,74,6.258948802947998],[123,143,75,6.261970043182373],[123,143,76,6.262178897857666],[123,143,77,6.260340690612793],[123,143,78,6.25700044631958],[123,143,79,6.249245643615723],[123,144,64,6.168478488922119],[123,144,65,6.168546676635742],[123,144,66,6.162295818328857],[123,144,67,6.155701637268066],[123,144,68,6.154285907745361],[123,144,69,6.162319660186768],[123,144,70,6.179772853851318],[123,144,71,6.204173564910889],[123,144,72,6.23335599899292],[123,144,73,6.251838207244873],[123,144,74,6.258948802947998],[123,144,75,6.261970043182373],[123,144,76,6.262178897857666],[123,144,77,6.260340690612793],[123,144,78,6.25700044631958],[123,144,79,6.249245643615723],[123,145,64,6.168478488922119],[123,145,65,6.168546676635742],[123,145,66,6.162295818328857],[123,145,67,6.155701637268066],[123,145,68,6.154285907745361],[123,145,69,6.162319660186768],[123,145,70,6.179772853851318],[123,145,71,6.204173564910889],[123,145,72,6.23335599899292],[123,145,73,6.251838207244873],[123,145,74,6.258948802947998],[123,145,75,6.261970043182373],[123,145,76,6.262178897857666],[123,145,77,6.260340690612793],[123,145,78,6.25700044631958],[123,145,79,6.249245643615723],[123,146,64,6.168478488922119],[123,146,65,6.168546676635742],[123,146,66,6.162295818328857],[123,146,67,6.155701637268066],[123,146,68,6.154285907745361],[123,146,69,6.162319660186768],[123,146,70,6.179772853851318],[123,146,71,6.204173564910889],[123,146,72,6.23335599899292],[123,146,73,6.251838207244873],[123,146,74,6.258948802947998],[123,146,75,6.261970043182373],[123,146,76,6.262178897857666],[123,146,77,6.260340690612793],[123,146,78,6.25700044631958],[123,146,79,6.249245643615723],[123,147,64,6.168478488922119],[123,147,65,6.168546676635742],[123,147,66,6.162295818328857],[123,147,67,6.155701637268066],[123,147,68,6.154285907745361],[123,147,69,6.162319660186768],[123,147,70,6.179772853851318],[123,147,71,6.204173564910889],[123,147,72,6.23335599899292],[123,147,73,6.251838207244873],[123,147,74,6.258948802947998],[123,147,75,6.261970043182373],[123,147,76,6.262178897857666],[123,147,77,6.260340690612793],[123,147,78,6.25700044631958],[123,147,79,6.249245643615723],[123,148,64,6.168478488922119],[123,148,65,6.168546676635742],[123,148,66,6.162295818328857],[123,148,67,6.155701637268066],[123,148,68,6.154285907745361],[123,148,69,6.162319660186768],[123,148,70,6.179772853851318],[123,148,71,6.204173564910889],[123,148,72,6.23335599899292],[123,148,73,6.251838207244873],[123,148,74,6.258948802947998],[123,148,75,6.261970043182373],[123,148,76,6.262178897857666],[123,148,77,6.260340690612793],[123,148,78,6.25700044631958],[123,148,79,6.249245643615723],[123,149,64,6.168478488922119],[123,149,65,6.168546676635742],[123,149,66,6.162295818328857],[123,149,67,6.155701637268066],[123,149,68,6.154285907745361],[123,149,69,6.162319660186768],[123,149,70,6.179772853851318],[123,149,71,6.204173564910889],[123,149,72,6.23335599899292],[123,149,73,6.251838207244873],[123,149,74,6.258948802947998],[123,149,75,6.261970043182373],[123,149,76,6.262178897857666],[123,149,77,6.260340690612793],[123,149,78,6.25700044631958],[123,149,79,6.249245643615723],[123,150,64,6.168478488922119],[123,150,65,6.168546676635742],[123,150,66,6.162295818328857],[123,150,67,6.155701637268066],[123,150,68,6.154285907745361],[123,150,69,6.162319660186768],[123,150,70,6.179772853851318],[123,150,71,6.204173564910889],[123,150,72,6.23335599899292],[123,150,73,6.251838207244873],[123,150,74,6.258948802947998],[123,150,75,6.261970043182373],[123,150,76,6.262178897857666],[123,150,77,6.260340690612793],[123,150,78,6.25700044631958],[123,150,79,6.249245643615723],[123,151,64,6.168478488922119],[123,151,65,6.168546676635742],[123,151,66,6.162295818328857],[123,151,67,6.155701637268066],[123,151,68,6.154285907745361],[123,151,69,6.162319660186768],[123,151,70,6.179772853851318],[123,151,71,6.204173564910889],[123,151,72,6.23335599899292],[123,151,73,6.251838207244873],[123,151,74,6.258948802947998],[123,151,75,6.261970043182373],[123,151,76,6.262178897857666],[123,151,77,6.260340690612793],[123,151,78,6.25700044631958],[123,151,79,6.249245643615723],[123,152,64,6.168478488922119],[123,152,65,6.168546676635742],[123,152,66,6.162295818328857],[123,152,67,6.155701637268066],[123,152,68,6.154285907745361],[123,152,69,6.162319660186768],[123,152,70,6.179772853851318],[123,152,71,6.204173564910889],[123,152,72,6.23335599899292],[123,152,73,6.251838207244873],[123,152,74,6.258948802947998],[123,152,75,6.261970043182373],[123,152,76,6.262178897857666],[123,152,77,6.260340690612793],[123,152,78,6.25700044631958],[123,152,79,6.249245643615723],[123,153,64,6.168478488922119],[123,153,65,6.168546676635742],[123,153,66,6.162295818328857],[123,153,67,6.155701637268066],[123,153,68,6.154285907745361],[123,153,69,6.162319660186768],[123,153,70,6.179772853851318],[123,153,71,6.204173564910889],[123,153,72,6.23335599899292],[123,153,73,6.251838207244873],[123,153,74,6.258948802947998],[123,153,75,6.261970043182373],[123,153,76,6.262178897857666],[123,153,77,6.260340690612793],[123,153,78,6.25700044631958],[123,153,79,6.249245643615723],[123,154,64,6.168478488922119],[123,154,65,6.168546676635742],[123,154,66,6.162295818328857],[123,154,67,6.155701637268066],[123,154,68,6.154285907745361],[123,154,69,6.162319660186768],[123,154,70,6.179772853851318],[123,154,71,6.204173564910889],[123,154,72,6.23335599899292],[123,154,73,6.251838207244873],[123,154,74,6.258948802947998],[123,154,75,6.261970043182373],[123,154,76,6.262178897857666],[123,154,77,6.260340690612793],[123,154,78,6.25700044631958],[123,154,79,6.249245643615723],[123,155,64,6.168478488922119],[123,155,65,6.168546676635742],[123,155,66,6.162295818328857],[123,155,67,6.155701637268066],[123,155,68,6.154285907745361],[123,155,69,6.162319660186768],[123,155,70,6.179772853851318],[123,155,71,6.204173564910889],[123,155,72,6.23335599899292],[123,155,73,6.251838207244873],[123,155,74,6.258948802947998],[123,155,75,6.261970043182373],[123,155,76,6.262178897857666],[123,155,77,6.260340690612793],[123,155,78,6.25700044631958],[123,155,79,6.249245643615723],[123,156,64,6.168478488922119],[123,156,65,6.168546676635742],[123,156,66,6.162295818328857],[123,156,67,6.155701637268066],[123,156,68,6.154285907745361],[123,156,69,6.162319660186768],[123,156,70,6.179772853851318],[123,156,71,6.204173564910889],[123,156,72,6.23335599899292],[123,156,73,6.251838207244873],[123,156,74,6.258948802947998],[123,156,75,6.261970043182373],[123,156,76,6.262178897857666],[123,156,77,6.260340690612793],[123,156,78,6.25700044631958],[123,156,79,6.249245643615723],[123,157,64,6.168478488922119],[123,157,65,6.168546676635742],[123,157,66,6.162295818328857],[123,157,67,6.155701637268066],[123,157,68,6.154285907745361],[123,157,69,6.162319660186768],[123,157,70,6.179772853851318],[123,157,71,6.204173564910889],[123,157,72,6.23335599899292],[123,157,73,6.251838207244873],[123,157,74,6.258948802947998],[123,157,75,6.261970043182373],[123,157,76,6.262178897857666],[123,157,77,6.260340690612793],[123,157,78,6.25700044631958],[123,157,79,6.249245643615723],[123,158,64,6.168478488922119],[123,158,65,6.168546676635742],[123,158,66,6.162295818328857],[123,158,67,6.155701637268066],[123,158,68,6.154285907745361],[123,158,69,6.162319660186768],[123,158,70,6.179772853851318],[123,158,71,6.204173564910889],[123,158,72,6.23335599899292],[123,158,73,6.251838207244873],[123,158,74,6.258948802947998],[123,158,75,6.261970043182373],[123,158,76,6.262178897857666],[123,158,77,6.260340690612793],[123,158,78,6.25700044631958],[123,158,79,6.249245643615723],[123,159,64,6.168478488922119],[123,159,65,6.168546676635742],[123,159,66,6.162295818328857],[123,159,67,6.155701637268066],[123,159,68,6.154285907745361],[123,159,69,6.162319660186768],[123,159,70,6.179772853851318],[123,159,71,6.204173564910889],[123,159,72,6.23335599899292],[123,159,73,6.251838207244873],[123,159,74,6.258948802947998],[123,159,75,6.261970043182373],[123,159,76,6.262178897857666],[123,159,77,6.260340690612793],[123,159,78,6.25700044631958],[123,159,79,6.249245643615723],[123,160,64,6.168478488922119],[123,160,65,6.168546676635742],[123,160,66,6.162295818328857],[123,160,67,6.155701637268066],[123,160,68,6.154285907745361],[123,160,69,6.162319660186768],[123,160,70,6.179772853851318],[123,160,71,6.204173564910889],[123,160,72,6.23335599899292],[123,160,73,6.251838207244873],[123,160,74,6.258948802947998],[123,160,75,6.261970043182373],[123,160,76,6.262178897857666],[123,160,77,6.260340690612793],[123,160,78,6.25700044631958],[123,160,79,6.249245643615723],[123,161,64,6.168478488922119],[123,161,65,6.168546676635742],[123,161,66,6.162295818328857],[123,161,67,6.155701637268066],[123,161,68,6.154285907745361],[123,161,69,6.162319660186768],[123,161,70,6.179772853851318],[123,161,71,6.204173564910889],[123,161,72,6.23335599899292],[123,161,73,6.251838207244873],[123,161,74,6.258948802947998],[123,161,75,6.261970043182373],[123,161,76,6.262178897857666],[123,161,77,6.260340690612793],[123,161,78,6.25700044631958],[123,161,79,6.249245643615723],[123,162,64,6.168478488922119],[123,162,65,6.168546676635742],[123,162,66,6.162295818328857],[123,162,67,6.155701637268066],[123,162,68,6.154285907745361],[123,162,69,6.162319660186768],[123,162,70,6.179772853851318],[123,162,71,6.204173564910889],[123,162,72,6.23335599899292],[123,162,73,6.251838207244873],[123,162,74,6.258948802947998],[123,162,75,6.261970043182373],[123,162,76,6.262178897857666],[123,162,77,6.260340690612793],[123,162,78,6.25700044631958],[123,162,79,6.249245643615723],[123,163,64,6.168478488922119],[123,163,65,6.168546676635742],[123,163,66,6.162295818328857],[123,163,67,6.155701637268066],[123,163,68,6.154285907745361],[123,163,69,6.162319660186768],[123,163,70,6.179772853851318],[123,163,71,6.204173564910889],[123,163,72,6.23335599899292],[123,163,73,6.251838207244873],[123,163,74,6.258948802947998],[123,163,75,6.261970043182373],[123,163,76,6.262178897857666],[123,163,77,6.260340690612793],[123,163,78,6.25700044631958],[123,163,79,6.249245643615723],[123,164,64,6.168478488922119],[123,164,65,6.168546676635742],[123,164,66,6.162295818328857],[123,164,67,6.155701637268066],[123,164,68,6.154285907745361],[123,164,69,6.162319660186768],[123,164,70,6.179772853851318],[123,164,71,6.204173564910889],[123,164,72,6.23335599899292],[123,164,73,6.251838207244873],[123,164,74,6.258948802947998],[123,164,75,6.261970043182373],[123,164,76,6.262178897857666],[123,164,77,6.260340690612793],[123,164,78,6.25700044631958],[123,164,79,6.249245643615723],[123,165,64,6.168478488922119],[123,165,65,6.168546676635742],[123,165,66,6.162295818328857],[123,165,67,6.155701637268066],[123,165,68,6.154285907745361],[123,165,69,6.162319660186768],[123,165,70,6.179772853851318],[123,165,71,6.204173564910889],[123,165,72,6.23335599899292],[123,165,73,6.251838207244873],[123,165,74,6.258948802947998],[123,165,75,6.261970043182373],[123,165,76,6.262178897857666],[123,165,77,6.260340690612793],[123,165,78,6.25700044631958],[123,165,79,6.249245643615723],[123,166,64,6.168478488922119],[123,166,65,6.168546676635742],[123,166,66,6.162295818328857],[123,166,67,6.155701637268066],[123,166,68,6.154285907745361],[123,166,69,6.162319660186768],[123,166,70,6.179772853851318],[123,166,71,6.204173564910889],[123,166,72,6.23335599899292],[123,166,73,6.251838207244873],[123,166,74,6.258948802947998],[123,166,75,6.261970043182373],[123,166,76,6.262178897857666],[123,166,77,6.260340690612793],[123,166,78,6.25700044631958],[123,166,79,6.249245643615723],[123,167,64,6.168478488922119],[123,167,65,6.168546676635742],[123,167,66,6.162295818328857],[123,167,67,6.155701637268066],[123,167,68,6.154285907745361],[123,167,69,6.162319660186768],[123,167,70,6.179772853851318],[123,167,71,6.204173564910889],[123,167,72,6.23335599899292],[123,167,73,6.251838207244873],[123,167,74,6.258948802947998],[123,167,75,6.261970043182373],[123,167,76,6.262178897857666],[123,167,77,6.260340690612793],[123,167,78,6.25700044631958],[123,167,79,6.249245643615723],[123,168,64,6.168478488922119],[123,168,65,6.168546676635742],[123,168,66,6.162295818328857],[123,168,67,6.155701637268066],[123,168,68,6.154285907745361],[123,168,69,6.162319660186768],[123,168,70,6.179772853851318],[123,168,71,6.204173564910889],[123,168,72,6.23335599899292],[123,168,73,6.251838207244873],[123,168,74,6.258948802947998],[123,168,75,6.261970043182373],[123,168,76,6.262178897857666],[123,168,77,6.260340690612793],[123,168,78,6.25700044631958],[123,168,79,6.249245643615723],[123,169,64,6.168478488922119],[123,169,65,6.168546676635742],[123,169,66,6.162295818328857],[123,169,67,6.155701637268066],[123,169,68,6.154285907745361],[123,169,69,6.162319660186768],[123,169,70,6.179772853851318],[123,169,71,6.204173564910889],[123,169,72,6.23335599899292],[123,169,73,6.251838207244873],[123,169,74,6.258948802947998],[123,169,75,6.261970043182373],[123,169,76,6.262178897857666],[123,169,77,6.260340690612793],[123,169,78,6.25700044631958],[123,169,79,6.249245643615723],[123,170,64,6.168478488922119],[123,170,65,6.168546676635742],[123,170,66,6.162295818328857],[123,170,67,6.155701637268066],[123,170,68,6.154285907745361],[123,170,69,6.162319660186768],[123,170,70,6.179772853851318],[123,170,71,6.204173564910889],[123,170,72,6.23335599899292],[123,170,73,6.251838207244873],[123,170,74,6.258948802947998],[123,170,75,6.261970043182373],[123,170,76,6.262178897857666],[123,170,77,6.260340690612793],[123,170,78,6.25700044631958],[123,170,79,6.249245643615723],[123,171,64,6.168478488922119],[123,171,65,6.168546676635742],[123,171,66,6.162295818328857],[123,171,67,6.155701637268066],[123,171,68,6.154285907745361],[123,171,69,6.162319660186768],[123,171,70,6.179772853851318],[123,171,71,6.204173564910889],[123,171,72,6.23335599899292],[123,171,73,6.251838207244873],[123,171,74,6.258948802947998],[123,171,75,6.261970043182373],[123,171,76,6.262178897857666],[123,171,77,6.260340690612793],[123,171,78,6.25700044631958],[123,171,79,6.249245643615723],[123,172,64,6.168478488922119],[123,172,65,6.168546676635742],[123,172,66,6.162295818328857],[123,172,67,6.155701637268066],[123,172,68,6.154285907745361],[123,172,69,6.162319660186768],[123,172,70,6.179772853851318],[123,172,71,6.204173564910889],[123,172,72,6.23335599899292],[123,172,73,6.251838207244873],[123,172,74,6.258948802947998],[123,172,75,6.261970043182373],[123,172,76,6.262178897857666],[123,172,77,6.260340690612793],[123,172,78,6.25700044631958],[123,172,79,6.249245643615723],[123,173,64,6.168478488922119],[123,173,65,6.168546676635742],[123,173,66,6.162295818328857],[123,173,67,6.155701637268066],[123,173,68,6.154285907745361],[123,173,69,6.162319660186768],[123,173,70,6.179772853851318],[123,173,71,6.204173564910889],[123,173,72,6.23335599899292],[123,173,73,6.251838207244873],[123,173,74,6.258948802947998],[123,173,75,6.261970043182373],[123,173,76,6.262178897857666],[123,173,77,6.260340690612793],[123,173,78,6.25700044631958],[123,173,79,6.249245643615723],[123,174,64,6.168478488922119],[123,174,65,6.168546676635742],[123,174,66,6.162295818328857],[123,174,67,6.155701637268066],[123,174,68,6.154285907745361],[123,174,69,6.162319660186768],[123,174,70,6.179772853851318],[123,174,71,6.204173564910889],[123,174,72,6.23335599899292],[123,174,73,6.251838207244873],[123,174,74,6.258948802947998],[123,174,75,6.261970043182373],[123,174,76,6.262178897857666],[123,174,77,6.260340690612793],[123,174,78,6.25700044631958],[123,174,79,6.249245643615723],[123,175,64,6.168478488922119],[123,175,65,6.168546676635742],[123,175,66,6.162295818328857],[123,175,67,6.155701637268066],[123,175,68,6.154285907745361],[123,175,69,6.162319660186768],[123,175,70,6.179772853851318],[123,175,71,6.204173564910889],[123,175,72,6.23335599899292],[123,175,73,6.251838207244873],[123,175,74,6.258948802947998],[123,175,75,6.261970043182373],[123,175,76,6.262178897857666],[123,175,77,6.260340690612793],[123,175,78,6.25700044631958],[123,175,79,6.249245643615723],[123,176,64,6.168478488922119],[123,176,65,6.168546676635742],[123,176,66,6.162295818328857],[123,176,67,6.155701637268066],[123,176,68,6.154285907745361],[123,176,69,6.162319660186768],[123,176,70,6.179772853851318],[123,176,71,6.204173564910889],[123,176,72,6.23335599899292],[123,176,73,6.251838207244873],[123,176,74,6.258948802947998],[123,176,75,6.261970043182373],[123,176,76,6.262178897857666],[123,176,77,6.260340690612793],[123,176,78,6.25700044631958],[123,176,79,6.249245643615723],[123,177,64,6.168478488922119],[123,177,65,6.168546676635742],[123,177,66,6.162295818328857],[123,177,67,6.155701637268066],[123,177,68,6.154285907745361],[123,177,69,6.162319660186768],[123,177,70,6.179772853851318],[123,177,71,6.204173564910889],[123,177,72,6.23335599899292],[123,177,73,6.251838207244873],[123,177,74,6.258948802947998],[123,177,75,6.261970043182373],[123,177,76,6.262178897857666],[123,177,77,6.260340690612793],[123,177,78,6.25700044631958],[123,177,79,6.249245643615723],[123,178,64,6.168478488922119],[123,178,65,6.168546676635742],[123,178,66,6.162295818328857],[123,178,67,6.155701637268066],[123,178,68,6.154285907745361],[123,178,69,6.162319660186768],[123,178,70,6.179772853851318],[123,178,71,6.204173564910889],[123,178,72,6.23335599899292],[123,178,73,6.251838207244873],[123,178,74,6.258948802947998],[123,178,75,6.261970043182373],[123,178,76,6.262178897857666],[123,178,77,6.260340690612793],[123,178,78,6.25700044631958],[123,178,79,6.249245643615723],[123,179,64,6.168478488922119],[123,179,65,6.168546676635742],[123,179,66,6.162295818328857],[123,179,67,6.155701637268066],[123,179,68,6.154285907745361],[123,179,69,6.162319660186768],[123,179,70,6.179772853851318],[123,179,71,6.204173564910889],[123,179,72,6.23335599899292],[123,179,73,6.251838207244873],[123,179,74,6.258948802947998],[123,179,75,6.261970043182373],[123,179,76,6.262178897857666],[123,179,77,6.260340690612793],[123,179,78,6.25700044631958],[123,179,79,6.249245643615723],[123,180,64,6.168478488922119],[123,180,65,6.168546676635742],[123,180,66,6.162295818328857],[123,180,67,6.155701637268066],[123,180,68,6.154285907745361],[123,180,69,6.162319660186768],[123,180,70,6.179772853851318],[123,180,71,6.204173564910889],[123,180,72,6.23335599899292],[123,180,73,6.251838207244873],[123,180,74,6.258948802947998],[123,180,75,6.261970043182373],[123,180,76,6.262178897857666],[123,180,77,6.260340690612793],[123,180,78,6.25700044631958],[123,180,79,6.249245643615723],[123,181,64,6.168478488922119],[123,181,65,6.168546676635742],[123,181,66,6.162295818328857],[123,181,67,6.155701637268066],[123,181,68,6.154285907745361],[123,181,69,6.162319660186768],[123,181,70,6.179772853851318],[123,181,71,6.204173564910889],[123,181,72,6.23335599899292],[123,181,73,6.251838207244873],[123,181,74,6.258948802947998],[123,181,75,6.261970043182373],[123,181,76,6.262178897857666],[123,181,77,6.260340690612793],[123,181,78,6.25700044631958],[123,181,79,6.249245643615723],[123,182,64,6.168478488922119],[123,182,65,6.168546676635742],[123,182,66,6.162295818328857],[123,182,67,6.155701637268066],[123,182,68,6.154285907745361],[123,182,69,6.162319660186768],[123,182,70,6.179772853851318],[123,182,71,6.204173564910889],[123,182,72,6.23335599899292],[123,182,73,6.251838207244873],[123,182,74,6.258948802947998],[123,182,75,6.261970043182373],[123,182,76,6.262178897857666],[123,182,77,6.260340690612793],[123,182,78,6.25700044631958],[123,182,79,6.249245643615723],[123,183,64,6.168478488922119],[123,183,65,6.168546676635742],[123,183,66,6.162295818328857],[123,183,67,6.155701637268066],[123,183,68,6.154285907745361],[123,183,69,6.162319660186768],[123,183,70,6.179772853851318],[123,183,71,6.204173564910889],[123,183,72,6.23335599899292],[123,183,73,6.251838207244873],[123,183,74,6.258948802947998],[123,183,75,6.261970043182373],[123,183,76,6.262178897857666],[123,183,77,6.260340690612793],[123,183,78,6.25700044631958],[123,183,79,6.249245643615723],[123,184,64,6.168478488922119],[123,184,65,6.168546676635742],[123,184,66,6.162295818328857],[123,184,67,6.155701637268066],[123,184,68,6.154285907745361],[123,184,69,6.162319660186768],[123,184,70,6.179772853851318],[123,184,71,6.204173564910889],[123,184,72,6.23335599899292],[123,184,73,6.251838207244873],[123,184,74,6.258948802947998],[123,184,75,6.261970043182373],[123,184,76,6.262178897857666],[123,184,77,6.260340690612793],[123,184,78,6.25700044631958],[123,184,79,6.249245643615723],[123,185,64,6.168478488922119],[123,185,65,6.168546676635742],[123,185,66,6.162295818328857],[123,185,67,6.155701637268066],[123,185,68,6.154285907745361],[123,185,69,6.162319660186768],[123,185,70,6.179772853851318],[123,185,71,6.204173564910889],[123,185,72,6.23335599899292],[123,185,73,6.251838207244873],[123,185,74,6.258948802947998],[123,185,75,6.261970043182373],[123,185,76,6.262178897857666],[123,185,77,6.260340690612793],[123,185,78,6.25700044631958],[123,185,79,6.249245643615723],[123,186,64,6.168478488922119],[123,186,65,6.168546676635742],[123,186,66,6.162295818328857],[123,186,67,6.155701637268066],[123,186,68,6.154285907745361],[123,186,69,6.162319660186768],[123,186,70,6.179772853851318],[123,186,71,6.204173564910889],[123,186,72,6.23335599899292],[123,186,73,6.251838207244873],[123,186,74,6.258948802947998],[123,186,75,6.261970043182373],[123,186,76,6.262178897857666],[123,186,77,6.260340690612793],[123,186,78,6.25700044631958],[123,186,79,6.249245643615723],[123,187,64,6.168478488922119],[123,187,65,6.168546676635742],[123,187,66,6.162295818328857],[123,187,67,6.155701637268066],[123,187,68,6.154285907745361],[123,187,69,6.162319660186768],[123,187,70,6.179772853851318],[123,187,71,6.204173564910889],[123,187,72,6.23335599899292],[123,187,73,6.251838207244873],[123,187,74,6.258948802947998],[123,187,75,6.261970043182373],[123,187,76,6.262178897857666],[123,187,77,6.260340690612793],[123,187,78,6.25700044631958],[123,187,79,6.249245643615723],[123,188,64,6.168478488922119],[123,188,65,6.168546676635742],[123,188,66,6.162295818328857],[123,188,67,6.155701637268066],[123,188,68,6.154285907745361],[123,188,69,6.162319660186768],[123,188,70,6.179772853851318],[123,188,71,6.204173564910889],[123,188,72,6.23335599899292],[123,188,73,6.251838207244873],[123,188,74,6.258948802947998],[123,188,75,6.261970043182373],[123,188,76,6.262178897857666],[123,188,77,6.260340690612793],[123,188,78,6.25700044631958],[123,188,79,6.249245643615723],[123,189,64,6.168478488922119],[123,189,65,6.168546676635742],[123,189,66,6.162295818328857],[123,189,67,6.155701637268066],[123,189,68,6.154285907745361],[123,189,69,6.162319660186768],[123,189,70,6.179772853851318],[123,189,71,6.204173564910889],[123,189,72,6.23335599899292],[123,189,73,6.251838207244873],[123,189,74,6.258948802947998],[123,189,75,6.261970043182373],[123,189,76,6.262178897857666],[123,189,77,6.260340690612793],[123,189,78,6.25700044631958],[123,189,79,6.249245643615723],[123,190,64,6.168478488922119],[123,190,65,6.168546676635742],[123,190,66,6.162295818328857],[123,190,67,6.155701637268066],[123,190,68,6.154285907745361],[123,190,69,6.162319660186768],[123,190,70,6.179772853851318],[123,190,71,6.204173564910889],[123,190,72,6.23335599899292],[123,190,73,6.251838207244873],[123,190,74,6.258948802947998],[123,190,75,6.261970043182373],[123,190,76,6.262178897857666],[123,190,77,6.260340690612793],[123,190,78,6.25700044631958],[123,190,79,6.249245643615723],[123,191,64,6.168478488922119],[123,191,65,6.168546676635742],[123,191,66,6.162295818328857],[123,191,67,6.155701637268066],[123,191,68,6.154285907745361],[123,191,69,6.162319660186768],[123,191,70,6.179772853851318],[123,191,71,6.204173564910889],[123,191,72,6.23335599899292],[123,191,73,6.251838207244873],[123,191,74,6.258948802947998],[123,191,75,6.261970043182373],[123,191,76,6.262178897857666],[123,191,77,6.260340690612793],[123,191,78,6.25700044631958],[123,191,79,6.249245643615723],[123,192,64,6.168478488922119],[123,192,65,6.168546676635742],[123,192,66,6.162295818328857],[123,192,67,6.155701637268066],[123,192,68,6.154285907745361],[123,192,69,6.162319660186768],[123,192,70,6.179772853851318],[123,192,71,6.204173564910889],[123,192,72,6.23335599899292],[123,192,73,6.251838207244873],[123,192,74,6.258948802947998],[123,192,75,6.261970043182373],[123,192,76,6.262178897857666],[123,192,77,6.260340690612793],[123,192,78,6.25700044631958],[123,192,79,6.249245643615723],[123,193,64,6.168478488922119],[123,193,65,6.168546676635742],[123,193,66,6.162295818328857],[123,193,67,6.155701637268066],[123,193,68,6.154285907745361],[123,193,69,6.162319660186768],[123,193,70,6.179772853851318],[123,193,71,6.204173564910889],[123,193,72,6.23335599899292],[123,193,73,6.251838207244873],[123,193,74,6.258948802947998],[123,193,75,6.261970043182373],[123,193,76,6.262178897857666],[123,193,77,6.260340690612793],[123,193,78,6.25700044631958],[123,193,79,6.249245643615723],[123,194,64,6.168478488922119],[123,194,65,6.168546676635742],[123,194,66,6.162295818328857],[123,194,67,6.155701637268066],[123,194,68,6.154285907745361],[123,194,69,6.162319660186768],[123,194,70,6.179772853851318],[123,194,71,6.204173564910889],[123,194,72,6.23335599899292],[123,194,73,6.251838207244873],[123,194,74,6.258948802947998],[123,194,75,6.261970043182373],[123,194,76,6.262178897857666],[123,194,77,6.260340690612793],[123,194,78,6.25700044631958],[123,194,79,6.249245643615723],[123,195,64,6.168478488922119],[123,195,65,6.168546676635742],[123,195,66,6.162295818328857],[123,195,67,6.155701637268066],[123,195,68,6.154285907745361],[123,195,69,6.162319660186768],[123,195,70,6.179772853851318],[123,195,71,6.204173564910889],[123,195,72,6.23335599899292],[123,195,73,6.251838207244873],[123,195,74,6.258948802947998],[123,195,75,6.261970043182373],[123,195,76,6.262178897857666],[123,195,77,6.260340690612793],[123,195,78,6.25700044631958],[123,195,79,6.249245643615723],[123,196,64,6.168478488922119],[123,196,65,6.168546676635742],[123,196,66,6.162295818328857],[123,196,67,6.155701637268066],[123,196,68,6.154285907745361],[123,196,69,6.162319660186768],[123,196,70,6.179772853851318],[123,196,71,6.204173564910889],[123,196,72,6.23335599899292],[123,196,73,6.251838207244873],[123,196,74,6.258948802947998],[123,196,75,6.261970043182373],[123,196,76,6.262178897857666],[123,196,77,6.260340690612793],[123,196,78,6.25700044631958],[123,196,79,6.249245643615723],[123,197,64,6.168478488922119],[123,197,65,6.168546676635742],[123,197,66,6.162295818328857],[123,197,67,6.155701637268066],[123,197,68,6.154285907745361],[123,197,69,6.162319660186768],[123,197,70,6.179772853851318],[123,197,71,6.204173564910889],[123,197,72,6.23335599899292],[123,197,73,6.251838207244873],[123,197,74,6.258948802947998],[123,197,75,6.261970043182373],[123,197,76,6.262178897857666],[123,197,77,6.260340690612793],[123,197,78,6.25700044631958],[123,197,79,6.249245643615723],[123,198,64,6.168478488922119],[123,198,65,6.168546676635742],[123,198,66,6.162295818328857],[123,198,67,6.155701637268066],[123,198,68,6.154285907745361],[123,198,69,6.162319660186768],[123,198,70,6.179772853851318],[123,198,71,6.204173564910889],[123,198,72,6.23335599899292],[123,198,73,6.251838207244873],[123,198,74,6.258948802947998],[123,198,75,6.261970043182373],[123,198,76,6.262178897857666],[123,198,77,6.260340690612793],[123,198,78,6.25700044631958],[123,198,79,6.249245643615723],[123,199,64,6.168478488922119],[123,199,65,6.168546676635742],[123,199,66,6.162295818328857],[123,199,67,6.155701637268066],[123,199,68,6.154285907745361],[123,199,69,6.162319660186768],[123,199,70,6.179772853851318],[123,199,71,6.204173564910889],[123,199,72,6.23335599899292],[123,199,73,6.251838207244873],[123,199,74,6.258948802947998],[123,199,75,6.261970043182373],[123,199,76,6.262178897857666],[123,199,77,6.260340690612793],[123,199,78,6.25700044631958],[123,199,79,6.249245643615723],[123,200,64,6.168478488922119],[123,200,65,6.168546676635742],[123,200,66,6.162295818328857],[123,200,67,6.155701637268066],[123,200,68,6.154285907745361],[123,200,69,6.162319660186768],[123,200,70,6.179772853851318],[123,200,71,6.204173564910889],[123,200,72,6.23335599899292],[123,200,73,6.251838207244873],[123,200,74,6.258948802947998],[123,200,75,6.261970043182373],[123,200,76,6.262178897857666],[123,200,77,6.260340690612793],[123,200,78,6.25700044631958],[123,200,79,6.249245643615723],[123,201,64,6.168478488922119],[123,201,65,6.168546676635742],[123,201,66,6.162295818328857],[123,201,67,6.155701637268066],[123,201,68,6.154285907745361],[123,201,69,6.162319660186768],[123,201,70,6.179772853851318],[123,201,71,6.204173564910889],[123,201,72,6.23335599899292],[123,201,73,6.251838207244873],[123,201,74,6.258948802947998],[123,201,75,6.261970043182373],[123,201,76,6.262178897857666],[123,201,77,6.260340690612793],[123,201,78,6.25700044631958],[123,201,79,6.249245643615723],[123,202,64,6.168478488922119],[123,202,65,6.168546676635742],[123,202,66,6.162295818328857],[123,202,67,6.155701637268066],[123,202,68,6.154285907745361],[123,202,69,6.162319660186768],[123,202,70,6.179772853851318],[123,202,71,6.204173564910889],[123,202,72,6.23335599899292],[123,202,73,6.251838207244873],[123,202,74,6.258948802947998],[123,202,75,6.261970043182373],[123,202,76,6.262178897857666],[123,202,77,6.260340690612793],[123,202,78,6.25700044631958],[123,202,79,6.249245643615723],[123,203,64,6.168478488922119],[123,203,65,6.168546676635742],[123,203,66,6.162295818328857],[123,203,67,6.155701637268066],[123,203,68,6.154285907745361],[123,203,69,6.162319660186768],[123,203,70,6.179772853851318],[123,203,71,6.204173564910889],[123,203,72,6.23335599899292],[123,203,73,6.251838207244873],[123,203,74,6.258948802947998],[123,203,75,6.261970043182373],[123,203,76,6.262178897857666],[123,203,77,6.260340690612793],[123,203,78,6.25700044631958],[123,203,79,6.249245643615723],[123,204,64,6.168478488922119],[123,204,65,6.168546676635742],[123,204,66,6.162295818328857],[123,204,67,6.155701637268066],[123,204,68,6.154285907745361],[123,204,69,6.162319660186768],[123,204,70,6.179772853851318],[123,204,71,6.204173564910889],[123,204,72,6.23335599899292],[123,204,73,6.251838207244873],[123,204,74,6.258948802947998],[123,204,75,6.261970043182373],[123,204,76,6.262178897857666],[123,204,77,6.260340690612793],[123,204,78,6.25700044631958],[123,204,79,6.249245643615723],[123,205,64,6.168478488922119],[123,205,65,6.168546676635742],[123,205,66,6.162295818328857],[123,205,67,6.155701637268066],[123,205,68,6.154285907745361],[123,205,69,6.162319660186768],[123,205,70,6.179772853851318],[123,205,71,6.204173564910889],[123,205,72,6.23335599899292],[123,205,73,6.251838207244873],[123,205,74,6.258948802947998],[123,205,75,6.261970043182373],[123,205,76,6.262178897857666],[123,205,77,6.260340690612793],[123,205,78,6.25700044631958],[123,205,79,6.249245643615723],[123,206,64,6.168478488922119],[123,206,65,6.168546676635742],[123,206,66,6.162295818328857],[123,206,67,6.155701637268066],[123,206,68,6.154285907745361],[123,206,69,6.162319660186768],[123,206,70,6.179772853851318],[123,206,71,6.204173564910889],[123,206,72,6.23335599899292],[123,206,73,6.251838207244873],[123,206,74,6.258948802947998],[123,206,75,6.261970043182373],[123,206,76,6.262178897857666],[123,206,77,6.260340690612793],[123,206,78,6.25700044631958],[123,206,79,6.249245643615723],[123,207,64,6.168478488922119],[123,207,65,6.168546676635742],[123,207,66,6.162295818328857],[123,207,67,6.155701637268066],[123,207,68,6.154285907745361],[123,207,69,6.162319660186768],[123,207,70,6.179772853851318],[123,207,71,6.204173564910889],[123,207,72,6.23335599899292],[123,207,73,6.251838207244873],[123,207,74,6.258948802947998],[123,207,75,6.261970043182373],[123,207,76,6.262178897857666],[123,207,77,6.260340690612793],[123,207,78,6.25700044631958],[123,207,79,6.249245643615723],[123,208,64,6.168478488922119],[123,208,65,6.168546676635742],[123,208,66,6.162295818328857],[123,208,67,6.155701637268066],[123,208,68,6.154285907745361],[123,208,69,6.162319660186768],[123,208,70,6.179772853851318],[123,208,71,6.204173564910889],[123,208,72,6.23335599899292],[123,208,73,6.251838207244873],[123,208,74,6.258948802947998],[123,208,75,6.261970043182373],[123,208,76,6.262178897857666],[123,208,77,6.260340690612793],[123,208,78,6.25700044631958],[123,208,79,6.249245643615723],[123,209,64,6.168478488922119],[123,209,65,6.168546676635742],[123,209,66,6.162295818328857],[123,209,67,6.155701637268066],[123,209,68,6.154285907745361],[123,209,69,6.162319660186768],[123,209,70,6.179772853851318],[123,209,71,6.204173564910889],[123,209,72,6.23335599899292],[123,209,73,6.251838207244873],[123,209,74,6.258948802947998],[123,209,75,6.261970043182373],[123,209,76,6.262178897857666],[123,209,77,6.260340690612793],[123,209,78,6.25700044631958],[123,209,79,6.249245643615723],[123,210,64,6.168478488922119],[123,210,65,6.168546676635742],[123,210,66,6.162295818328857],[123,210,67,6.155701637268066],[123,210,68,6.154285907745361],[123,210,69,6.162319660186768],[123,210,70,6.179772853851318],[123,210,71,6.204173564910889],[123,210,72,6.23335599899292],[123,210,73,6.251838207244873],[123,210,74,6.258948802947998],[123,210,75,6.261970043182373],[123,210,76,6.262178897857666],[123,210,77,6.260340690612793],[123,210,78,6.25700044631958],[123,210,79,6.249245643615723],[123,211,64,6.168478488922119],[123,211,65,6.168546676635742],[123,211,66,6.162295818328857],[123,211,67,6.155701637268066],[123,211,68,6.154285907745361],[123,211,69,6.162319660186768],[123,211,70,6.179772853851318],[123,211,71,6.204173564910889],[123,211,72,6.23335599899292],[123,211,73,6.251838207244873],[123,211,74,6.258948802947998],[123,211,75,6.261970043182373],[123,211,76,6.262178897857666],[123,211,77,6.260340690612793],[123,211,78,6.25700044631958],[123,211,79,6.249245643615723],[123,212,64,6.168478488922119],[123,212,65,6.168546676635742],[123,212,66,6.162295818328857],[123,212,67,6.155701637268066],[123,212,68,6.154285907745361],[123,212,69,6.162319660186768],[123,212,70,6.179772853851318],[123,212,71,6.204173564910889],[123,212,72,6.23335599899292],[123,212,73,6.251838207244873],[123,212,74,6.258948802947998],[123,212,75,6.261970043182373],[123,212,76,6.262178897857666],[123,212,77,6.260340690612793],[123,212,78,6.25700044631958],[123,212,79,6.249245643615723],[123,213,64,6.168478488922119],[123,213,65,6.168546676635742],[123,213,66,6.162295818328857],[123,213,67,6.155701637268066],[123,213,68,6.154285907745361],[123,213,69,6.162319660186768],[123,213,70,6.179772853851318],[123,213,71,6.204173564910889],[123,213,72,6.23335599899292],[123,213,73,6.251838207244873],[123,213,74,6.258948802947998],[123,213,75,6.261970043182373],[123,213,76,6.262178897857666],[123,213,77,6.260340690612793],[123,213,78,6.25700044631958],[123,213,79,6.249245643615723],[123,214,64,6.168478488922119],[123,214,65,6.168546676635742],[123,214,66,6.162295818328857],[123,214,67,6.155701637268066],[123,214,68,6.154285907745361],[123,214,69,6.162319660186768],[123,214,70,6.179772853851318],[123,214,71,6.204173564910889],[123,214,72,6.23335599899292],[123,214,73,6.251838207244873],[123,214,74,6.258948802947998],[123,214,75,6.261970043182373],[123,214,76,6.262178897857666],[123,214,77,6.260340690612793],[123,214,78,6.25700044631958],[123,214,79,6.249245643615723],[123,215,64,6.168478488922119],[123,215,65,6.168546676635742],[123,215,66,6.162295818328857],[123,215,67,6.155701637268066],[123,215,68,6.154285907745361],[123,215,69,6.162319660186768],[123,215,70,6.179772853851318],[123,215,71,6.204173564910889],[123,215,72,6.23335599899292],[123,215,73,6.251838207244873],[123,215,74,6.258948802947998],[123,215,75,6.261970043182373],[123,215,76,6.262178897857666],[123,215,77,6.260340690612793],[123,215,78,6.25700044631958],[123,215,79,6.249245643615723],[123,216,64,6.168478488922119],[123,216,65,6.168546676635742],[123,216,66,6.162295818328857],[123,216,67,6.155701637268066],[123,216,68,6.154285907745361],[123,216,69,6.162319660186768],[123,216,70,6.179772853851318],[123,216,71,6.204173564910889],[123,216,72,6.23335599899292],[123,216,73,6.251838207244873],[123,216,74,6.258948802947998],[123,216,75,6.261970043182373],[123,216,76,6.262178897857666],[123,216,77,6.260340690612793],[123,216,78,6.25700044631958],[123,216,79,6.249245643615723],[123,217,64,6.168478488922119],[123,217,65,6.168546676635742],[123,217,66,6.162295818328857],[123,217,67,6.155701637268066],[123,217,68,6.154285907745361],[123,217,69,6.162319660186768],[123,217,70,6.179772853851318],[123,217,71,6.204173564910889],[123,217,72,6.23335599899292],[123,217,73,6.251838207244873],[123,217,74,6.258948802947998],[123,217,75,6.261970043182373],[123,217,76,6.262178897857666],[123,217,77,6.260340690612793],[123,217,78,6.25700044631958],[123,217,79,6.249245643615723],[123,218,64,6.168478488922119],[123,218,65,6.168546676635742],[123,218,66,6.162295818328857],[123,218,67,6.155701637268066],[123,218,68,6.154285907745361],[123,218,69,6.162319660186768],[123,218,70,6.179772853851318],[123,218,71,6.204173564910889],[123,218,72,6.23335599899292],[123,218,73,6.251838207244873],[123,218,74,6.258948802947998],[123,218,75,6.261970043182373],[123,218,76,6.262178897857666],[123,218,77,6.260340690612793],[123,218,78,6.25700044631958],[123,218,79,6.249245643615723],[123,219,64,6.168478488922119],[123,219,65,6.168546676635742],[123,219,66,6.162295818328857],[123,219,67,6.155701637268066],[123,219,68,6.154285907745361],[123,219,69,6.162319660186768],[123,219,70,6.179772853851318],[123,219,71,6.204173564910889],[123,219,72,6.23335599899292],[123,219,73,6.251838207244873],[123,219,74,6.258948802947998],[123,219,75,6.261970043182373],[123,219,76,6.262178897857666],[123,219,77,6.260340690612793],[123,219,78,6.25700044631958],[123,219,79,6.249245643615723],[123,220,64,6.168478488922119],[123,220,65,6.168546676635742],[123,220,66,6.162295818328857],[123,220,67,6.155701637268066],[123,220,68,6.154285907745361],[123,220,69,6.162319660186768],[123,220,70,6.179772853851318],[123,220,71,6.204173564910889],[123,220,72,6.23335599899292],[123,220,73,6.251838207244873],[123,220,74,6.258948802947998],[123,220,75,6.261970043182373],[123,220,76,6.262178897857666],[123,220,77,6.260340690612793],[123,220,78,6.25700044631958],[123,220,79,6.249245643615723],[123,221,64,6.168478488922119],[123,221,65,6.168546676635742],[123,221,66,6.162295818328857],[123,221,67,6.155701637268066],[123,221,68,6.154285907745361],[123,221,69,6.162319660186768],[123,221,70,6.179772853851318],[123,221,71,6.204173564910889],[123,221,72,6.23335599899292],[123,221,73,6.251838207244873],[123,221,74,6.258948802947998],[123,221,75,6.261970043182373],[123,221,76,6.262178897857666],[123,221,77,6.260340690612793],[123,221,78,6.25700044631958],[123,221,79,6.249245643615723],[123,222,64,6.168478488922119],[123,222,65,6.168546676635742],[123,222,66,6.162295818328857],[123,222,67,6.155701637268066],[123,222,68,6.154285907745361],[123,222,69,6.162319660186768],[123,222,70,6.179772853851318],[123,222,71,6.204173564910889],[123,222,72,6.23335599899292],[123,222,73,6.251838207244873],[123,222,74,6.258948802947998],[123,222,75,6.261970043182373],[123,222,76,6.262178897857666],[123,222,77,6.260340690612793],[123,222,78,6.25700044631958],[123,222,79,6.249245643615723],[123,223,64,6.168478488922119],[123,223,65,6.168546676635742],[123,223,66,6.162295818328857],[123,223,67,6.155701637268066],[123,223,68,6.154285907745361],[123,223,69,6.162319660186768],[123,223,70,6.179772853851318],[123,223,71,6.204173564910889],[123,223,72,6.23335599899292],[123,223,73,6.251838207244873],[123,223,74,6.258948802947998],[123,223,75,6.261970043182373],[123,223,76,6.262178897857666],[123,223,77,6.260340690612793],[123,223,78,6.25700044631958],[123,223,79,6.249245643615723],[123,224,64,6.168478488922119],[123,224,65,6.168546676635742],[123,224,66,6.162295818328857],[123,224,67,6.155701637268066],[123,224,68,6.154285907745361],[123,224,69,6.162319660186768],[123,224,70,6.179772853851318],[123,224,71,6.204173564910889],[123,224,72,6.23335599899292],[123,224,73,6.251838207244873],[123,224,74,6.258948802947998],[123,224,75,6.261970043182373],[123,224,76,6.262178897857666],[123,224,77,6.260340690612793],[123,224,78,6.25700044631958],[123,224,79,6.249245643615723],[123,225,64,6.168478488922119],[123,225,65,6.168546676635742],[123,225,66,6.162295818328857],[123,225,67,6.155701637268066],[123,225,68,6.154285907745361],[123,225,69,6.162319660186768],[123,225,70,6.179772853851318],[123,225,71,6.204173564910889],[123,225,72,6.23335599899292],[123,225,73,6.251838207244873],[123,225,74,6.258948802947998],[123,225,75,6.261970043182373],[123,225,76,6.262178897857666],[123,225,77,6.260340690612793],[123,225,78,6.25700044631958],[123,225,79,6.249245643615723],[123,226,64,6.168478488922119],[123,226,65,6.168546676635742],[123,226,66,6.162295818328857],[123,226,67,6.155701637268066],[123,226,68,6.154285907745361],[123,226,69,6.162319660186768],[123,226,70,6.179772853851318],[123,226,71,6.204173564910889],[123,226,72,6.23335599899292],[123,226,73,6.251838207244873],[123,226,74,6.258948802947998],[123,226,75,6.261970043182373],[123,226,76,6.262178897857666],[123,226,77,6.260340690612793],[123,226,78,6.25700044631958],[123,226,79,6.249245643615723],[123,227,64,6.168478488922119],[123,227,65,6.168546676635742],[123,227,66,6.162295818328857],[123,227,67,6.155701637268066],[123,227,68,6.154285907745361],[123,227,69,6.162319660186768],[123,227,70,6.179772853851318],[123,227,71,6.204173564910889],[123,227,72,6.23335599899292],[123,227,73,6.251838207244873],[123,227,74,6.258948802947998],[123,227,75,6.261970043182373],[123,227,76,6.262178897857666],[123,227,77,6.260340690612793],[123,227,78,6.25700044631958],[123,227,79,6.249245643615723],[123,228,64,6.168478488922119],[123,228,65,6.168546676635742],[123,228,66,6.162295818328857],[123,228,67,6.155701637268066],[123,228,68,6.154285907745361],[123,228,69,6.162319660186768],[123,228,70,6.179772853851318],[123,228,71,6.204173564910889],[123,228,72,6.23335599899292],[123,228,73,6.251838207244873],[123,228,74,6.258948802947998],[123,228,75,6.261970043182373],[123,228,76,6.262178897857666],[123,228,77,6.260340690612793],[123,228,78,6.25700044631958],[123,228,79,6.249245643615723],[123,229,64,6.168478488922119],[123,229,65,6.168546676635742],[123,229,66,6.162295818328857],[123,229,67,6.155701637268066],[123,229,68,6.154285907745361],[123,229,69,6.162319660186768],[123,229,70,6.179772853851318],[123,229,71,6.204173564910889],[123,229,72,6.23335599899292],[123,229,73,6.251838207244873],[123,229,74,6.258948802947998],[123,229,75,6.261970043182373],[123,229,76,6.262178897857666],[123,229,77,6.260340690612793],[123,229,78,6.25700044631958],[123,229,79,6.249245643615723],[123,230,64,6.168478488922119],[123,230,65,6.168546676635742],[123,230,66,6.162295818328857],[123,230,67,6.155701637268066],[123,230,68,6.154285907745361],[123,230,69,6.162319660186768],[123,230,70,6.179772853851318],[123,230,71,6.204173564910889],[123,230,72,6.23335599899292],[123,230,73,6.251838207244873],[123,230,74,6.258948802947998],[123,230,75,6.261970043182373],[123,230,76,6.262178897857666],[123,230,77,6.260340690612793],[123,230,78,6.25700044631958],[123,230,79,6.249245643615723],[123,231,64,6.168478488922119],[123,231,65,6.168546676635742],[123,231,66,6.162295818328857],[123,231,67,6.155701637268066],[123,231,68,6.154285907745361],[123,231,69,6.162319660186768],[123,231,70,6.179772853851318],[123,231,71,6.204173564910889],[123,231,72,6.23335599899292],[123,231,73,6.251838207244873],[123,231,74,6.258948802947998],[123,231,75,6.261970043182373],[123,231,76,6.262178897857666],[123,231,77,6.260340690612793],[123,231,78,6.25700044631958],[123,231,79,6.249245643615723],[123,232,64,6.168478488922119],[123,232,65,6.168546676635742],[123,232,66,6.162295818328857],[123,232,67,6.155701637268066],[123,232,68,6.154285907745361],[123,232,69,6.162319660186768],[123,232,70,6.179772853851318],[123,232,71,6.204173564910889],[123,232,72,6.23335599899292],[123,232,73,6.251838207244873],[123,232,74,6.258948802947998],[123,232,75,6.261970043182373],[123,232,76,6.262178897857666],[123,232,77,6.260340690612793],[123,232,78,6.25700044631958],[123,232,79,6.249245643615723],[123,233,64,6.168478488922119],[123,233,65,6.168546676635742],[123,233,66,6.162295818328857],[123,233,67,6.155701637268066],[123,233,68,6.154285907745361],[123,233,69,6.162319660186768],[123,233,70,6.179772853851318],[123,233,71,6.204173564910889],[123,233,72,6.23335599899292],[123,233,73,6.251838207244873],[123,233,74,6.258948802947998],[123,233,75,6.261970043182373],[123,233,76,6.262178897857666],[123,233,77,6.260340690612793],[123,233,78,6.25700044631958],[123,233,79,6.249245643615723],[123,234,64,6.168478488922119],[123,234,65,6.168546676635742],[123,234,66,6.162295818328857],[123,234,67,6.155701637268066],[123,234,68,6.154285907745361],[123,234,69,6.162319660186768],[123,234,70,6.179772853851318],[123,234,71,6.204173564910889],[123,234,72,6.23335599899292],[123,234,73,6.251838207244873],[123,234,74,6.258948802947998],[123,234,75,6.261970043182373],[123,234,76,6.262178897857666],[123,234,77,6.260340690612793],[123,234,78,6.25700044631958],[123,234,79,6.249245643615723],[123,235,64,6.168478488922119],[123,235,65,6.168546676635742],[123,235,66,6.162295818328857],[123,235,67,6.155701637268066],[123,235,68,6.154285907745361],[123,235,69,6.162319660186768],[123,235,70,6.179772853851318],[123,235,71,6.204173564910889],[123,235,72,6.23335599899292],[123,235,73,6.251838207244873],[123,235,74,6.258948802947998],[123,235,75,6.261970043182373],[123,235,76,6.262178897857666],[123,235,77,6.260340690612793],[123,235,78,6.25700044631958],[123,235,79,6.249245643615723],[123,236,64,6.168478488922119],[123,236,65,6.168546676635742],[123,236,66,6.162295818328857],[123,236,67,6.155701637268066],[123,236,68,6.154285907745361],[123,236,69,6.162319660186768],[123,236,70,6.179772853851318],[123,236,71,6.204173564910889],[123,236,72,6.23335599899292],[123,236,73,6.251838207244873],[123,236,74,6.258948802947998],[123,236,75,6.261970043182373],[123,236,76,6.262178897857666],[123,236,77,6.260340690612793],[123,236,78,6.25700044631958],[123,236,79,6.249245643615723],[123,237,64,6.168478488922119],[123,237,65,6.168546676635742],[123,237,66,6.162295818328857],[123,237,67,6.155701637268066],[123,237,68,6.154285907745361],[123,237,69,6.162319660186768],[123,237,70,6.179772853851318],[123,237,71,6.204173564910889],[123,237,72,6.23335599899292],[123,237,73,6.251838207244873],[123,237,74,6.258948802947998],[123,237,75,6.261970043182373],[123,237,76,6.262178897857666],[123,237,77,6.260340690612793],[123,237,78,6.25700044631958],[123,237,79,6.249245643615723],[123,238,64,6.168478488922119],[123,238,65,6.168546676635742],[123,238,66,6.162295818328857],[123,238,67,6.155701637268066],[123,238,68,6.154285907745361],[123,238,69,6.162319660186768],[123,238,70,6.179772853851318],[123,238,71,6.204173564910889],[123,238,72,6.23335599899292],[123,238,73,6.251838207244873],[123,238,74,6.258948802947998],[123,238,75,6.261970043182373],[123,238,76,6.262178897857666],[123,238,77,6.260340690612793],[123,238,78,6.25700044631958],[123,238,79,6.249245643615723],[123,239,64,6.168478488922119],[123,239,65,6.168546676635742],[123,239,66,6.162295818328857],[123,239,67,6.155701637268066],[123,239,68,6.154285907745361],[123,239,69,6.162319660186768],[123,239,70,6.179772853851318],[123,239,71,6.204173564910889],[123,239,72,6.23335599899292],[123,239,73,6.251838207244873],[123,239,74,6.258948802947998],[123,239,75,6.261970043182373],[123,239,76,6.262178897857666],[123,239,77,6.260340690612793],[123,239,78,6.25700044631958],[123,239,79,6.249245643615723],[123,240,64,6.168478488922119],[123,240,65,6.168546676635742],[123,240,66,6.162295818328857],[123,240,67,6.155701637268066],[123,240,68,6.154285907745361],[123,240,69,6.162319660186768],[123,240,70,6.179772853851318],[123,240,71,6.204173564910889],[123,240,72,6.23335599899292],[123,240,73,6.251838207244873],[123,240,74,6.258948802947998],[123,240,75,6.261970043182373],[123,240,76,6.262178897857666],[123,240,77,6.260340690612793],[123,240,78,6.25700044631958],[123,240,79,6.249245643615723],[123,241,64,6.168478488922119],[123,241,65,6.168546676635742],[123,241,66,6.162295818328857],[123,241,67,6.155701637268066],[123,241,68,6.154285907745361],[123,241,69,6.162319660186768],[123,241,70,6.179772853851318],[123,241,71,6.204173564910889],[123,241,72,6.23335599899292],[123,241,73,6.251838207244873],[123,241,74,6.258948802947998],[123,241,75,6.261970043182373],[123,241,76,6.262178897857666],[123,241,77,6.260340690612793],[123,241,78,6.25700044631958],[123,241,79,6.249245643615723],[123,242,64,6.168478488922119],[123,242,65,6.168546676635742],[123,242,66,6.162295818328857],[123,242,67,6.155701637268066],[123,242,68,6.154285907745361],[123,242,69,6.162319660186768],[123,242,70,6.179772853851318],[123,242,71,6.204173564910889],[123,242,72,6.23335599899292],[123,242,73,6.251838207244873],[123,242,74,6.258948802947998],[123,242,75,6.261970043182373],[123,242,76,6.262178897857666],[123,242,77,6.260340690612793],[123,242,78,6.25700044631958],[123,242,79,6.249245643615723],[123,243,64,6.168478488922119],[123,243,65,6.168546676635742],[123,243,66,6.162295818328857],[123,243,67,6.155701637268066],[123,243,68,6.154285907745361],[123,243,69,6.162319660186768],[123,243,70,6.179772853851318],[123,243,71,6.204173564910889],[123,243,72,6.23335599899292],[123,243,73,6.251838207244873],[123,243,74,6.258948802947998],[123,243,75,6.261970043182373],[123,243,76,6.262178897857666],[123,243,77,6.260340690612793],[123,243,78,6.25700044631958],[123,243,79,6.249245643615723],[123,244,64,6.168478488922119],[123,244,65,6.168546676635742],[123,244,66,6.162295818328857],[123,244,67,6.155701637268066],[123,244,68,6.154285907745361],[123,244,69,6.162319660186768],[123,244,70,6.179772853851318],[123,244,71,6.204173564910889],[123,244,72,6.23335599899292],[123,244,73,6.251838207244873],[123,244,74,6.258948802947998],[123,244,75,6.261970043182373],[123,244,76,6.262178897857666],[123,244,77,6.260340690612793],[123,244,78,6.25700044631958],[123,244,79,6.249245643615723],[123,245,64,6.168478488922119],[123,245,65,6.168546676635742],[123,245,66,6.162295818328857],[123,245,67,6.155701637268066],[123,245,68,6.154285907745361],[123,245,69,6.162319660186768],[123,245,70,6.179772853851318],[123,245,71,6.204173564910889],[123,245,72,6.23335599899292],[123,245,73,6.251838207244873],[123,245,74,6.258948802947998],[123,245,75,6.261970043182373],[123,245,76,6.262178897857666],[123,245,77,6.260340690612793],[123,245,78,6.25700044631958],[123,245,79,6.249245643615723],[123,246,64,6.168478488922119],[123,246,65,6.168546676635742],[123,246,66,6.162295818328857],[123,246,67,6.155701637268066],[123,246,68,6.154285907745361],[123,246,69,6.162319660186768],[123,246,70,6.179772853851318],[123,246,71,6.204173564910889],[123,246,72,6.23335599899292],[123,246,73,6.251838207244873],[123,246,74,6.258948802947998],[123,246,75,6.261970043182373],[123,246,76,6.262178897857666],[123,246,77,6.260340690612793],[123,246,78,6.25700044631958],[123,246,79,6.249245643615723],[123,247,64,6.168478488922119],[123,247,65,6.168546676635742],[123,247,66,6.162295818328857],[123,247,67,6.155701637268066],[123,247,68,6.154285907745361],[123,247,69,6.162319660186768],[123,247,70,6.179772853851318],[123,247,71,6.204173564910889],[123,247,72,6.23335599899292],[123,247,73,6.251838207244873],[123,247,74,6.258948802947998],[123,247,75,6.261970043182373],[123,247,76,6.262178897857666],[123,247,77,6.260340690612793],[123,247,78,6.25700044631958],[123,247,79,6.249245643615723],[123,248,64,6.168478488922119],[123,248,65,6.168546676635742],[123,248,66,6.162295818328857],[123,248,67,6.155701637268066],[123,248,68,6.154285907745361],[123,248,69,6.162319660186768],[123,248,70,6.179772853851318],[123,248,71,6.204173564910889],[123,248,72,6.23335599899292],[123,248,73,6.251838207244873],[123,248,74,6.258948802947998],[123,248,75,6.261970043182373],[123,248,76,6.262178897857666],[123,248,77,6.260340690612793],[123,248,78,6.25700044631958],[123,248,79,6.249245643615723],[123,249,64,6.168478488922119],[123,249,65,6.168546676635742],[123,249,66,6.162295818328857],[123,249,67,6.155701637268066],[123,249,68,6.154285907745361],[123,249,69,6.162319660186768],[123,249,70,6.179772853851318],[123,249,71,6.204173564910889],[123,249,72,6.23335599899292],[123,249,73,6.251838207244873],[123,249,74,6.258948802947998],[123,249,75,6.261970043182373],[123,249,76,6.262178897857666],[123,249,77,6.260340690612793],[123,249,78,6.25700044631958],[123,249,79,6.249245643615723],[123,250,64,6.168478488922119],[123,250,65,6.168546676635742],[123,250,66,6.162295818328857],[123,250,67,6.155701637268066],[123,250,68,6.154285907745361],[123,250,69,6.162319660186768],[123,250,70,6.179772853851318],[123,250,71,6.204173564910889],[123,250,72,6.23335599899292],[123,250,73,6.251838207244873],[123,250,74,6.258948802947998],[123,250,75,6.261970043182373],[123,250,76,6.262178897857666],[123,250,77,6.260340690612793],[123,250,78,6.25700044631958],[123,250,79,6.249245643615723],[123,251,64,6.168478488922119],[123,251,65,6.168546676635742],[123,251,66,6.162295818328857],[123,251,67,6.155701637268066],[123,251,68,6.154285907745361],[123,251,69,6.162319660186768],[123,251,70,6.179772853851318],[123,251,71,6.204173564910889],[123,251,72,6.23335599899292],[123,251,73,6.251838207244873],[123,251,74,6.258948802947998],[123,251,75,6.261970043182373],[123,251,76,6.262178897857666],[123,251,77,6.260340690612793],[123,251,78,6.25700044631958],[123,251,79,6.249245643615723],[123,252,64,6.168478488922119],[123,252,65,6.168546676635742],[123,252,66,6.162295818328857],[123,252,67,6.155701637268066],[123,252,68,6.154285907745361],[123,252,69,6.162319660186768],[123,252,70,6.179772853851318],[123,252,71,6.204173564910889],[123,252,72,6.23335599899292],[123,252,73,6.251838207244873],[123,252,74,6.258948802947998],[123,252,75,6.261970043182373],[123,252,76,6.262178897857666],[123,252,77,6.260340690612793],[123,252,78,6.25700044631958],[123,252,79,6.249245643615723],[123,253,64,6.168478488922119],[123,253,65,6.168546676635742],[123,253,66,6.162295818328857],[123,253,67,6.155701637268066],[123,253,68,6.154285907745361],[123,253,69,6.162319660186768],[123,253,70,6.179772853851318],[123,253,71,6.204173564910889],[123,253,72,6.23335599899292],[123,253,73,6.251838207244873],[123,253,74,6.258948802947998],[123,253,75,6.261970043182373],[123,253,76,6.262178897857666],[123,253,77,6.260340690612793],[123,253,78,6.25700044631958],[123,253,79,6.249245643615723],[123,254,64,6.168478488922119],[123,254,65,6.168546676635742],[123,254,66,6.162295818328857],[123,254,67,6.155701637268066],[123,254,68,6.154285907745361],[123,254,69,6.162319660186768],[123,254,70,6.179772853851318],[123,254,71,6.204173564910889],[123,254,72,6.23335599899292],[123,254,73,6.251838207244873],[123,254,74,6.258948802947998],[123,254,75,6.261970043182373],[123,254,76,6.262178897857666],[123,254,77,6.260340690612793],[123,254,78,6.25700044631958],[123,254,79,6.249245643615723],[123,255,64,6.168478488922119],[123,255,65,6.168546676635742],[123,255,66,6.162295818328857],[123,255,67,6.155701637268066],[123,255,68,6.154285907745361],[123,255,69,6.162319660186768],[123,255,70,6.179772853851318],[123,255,71,6.204173564910889],[123,255,72,6.23335599899292],[123,255,73,6.251838207244873],[123,255,74,6.258948802947998],[123,255,75,6.261970043182373],[123,255,76,6.262178897857666],[123,255,77,6.260340690612793],[123,255,78,6.25700044631958],[123,255,79,6.249245643615723],[123,256,64,6.168478488922119],[123,256,65,6.168546676635742],[123,256,66,6.162295818328857],[123,256,67,6.155701637268066],[123,256,68,6.154285907745361],[123,256,69,6.162319660186768],[123,256,70,6.179772853851318],[123,256,71,6.204173564910889],[123,256,72,6.23335599899292],[123,256,73,6.251838207244873],[123,256,74,6.258948802947998],[123,256,75,6.261970043182373],[123,256,76,6.262178897857666],[123,256,77,6.260340690612793],[123,256,78,6.25700044631958],[123,256,79,6.249245643615723],[123,257,64,6.168478488922119],[123,257,65,6.168546676635742],[123,257,66,6.162295818328857],[123,257,67,6.155701637268066],[123,257,68,6.154285907745361],[123,257,69,6.162319660186768],[123,257,70,6.179772853851318],[123,257,71,6.204173564910889],[123,257,72,6.23335599899292],[123,257,73,6.251838207244873],[123,257,74,6.258948802947998],[123,257,75,6.261970043182373],[123,257,76,6.262178897857666],[123,257,77,6.260340690612793],[123,257,78,6.25700044631958],[123,257,79,6.249245643615723],[123,258,64,6.168478488922119],[123,258,65,6.168546676635742],[123,258,66,6.162295818328857],[123,258,67,6.155701637268066],[123,258,68,6.154285907745361],[123,258,69,6.162319660186768],[123,258,70,6.179772853851318],[123,258,71,6.204173564910889],[123,258,72,6.23335599899292],[123,258,73,6.251838207244873],[123,258,74,6.258948802947998],[123,258,75,6.261970043182373],[123,258,76,6.262178897857666],[123,258,77,6.260340690612793],[123,258,78,6.25700044631958],[123,258,79,6.249245643615723],[123,259,64,6.168478488922119],[123,259,65,6.168546676635742],[123,259,66,6.162295818328857],[123,259,67,6.155701637268066],[123,259,68,6.154285907745361],[123,259,69,6.162319660186768],[123,259,70,6.179772853851318],[123,259,71,6.204173564910889],[123,259,72,6.23335599899292],[123,259,73,6.251838207244873],[123,259,74,6.258948802947998],[123,259,75,6.261970043182373],[123,259,76,6.262178897857666],[123,259,77,6.260340690612793],[123,259,78,6.25700044631958],[123,259,79,6.249245643615723],[123,260,64,6.168478488922119],[123,260,65,6.168546676635742],[123,260,66,6.162295818328857],[123,260,67,6.155701637268066],[123,260,68,6.154285907745361],[123,260,69,6.162319660186768],[123,260,70,6.179772853851318],[123,260,71,6.204173564910889],[123,260,72,6.23335599899292],[123,260,73,6.251838207244873],[123,260,74,6.258948802947998],[123,260,75,6.261970043182373],[123,260,76,6.262178897857666],[123,260,77,6.260340690612793],[123,260,78,6.25700044631958],[123,260,79,6.249245643615723],[123,261,64,6.168478488922119],[123,261,65,6.168546676635742],[123,261,66,6.162295818328857],[123,261,67,6.155701637268066],[123,261,68,6.154285907745361],[123,261,69,6.162319660186768],[123,261,70,6.179772853851318],[123,261,71,6.204173564910889],[123,261,72,6.23335599899292],[123,261,73,6.251838207244873],[123,261,74,6.258948802947998],[123,261,75,6.261970043182373],[123,261,76,6.262178897857666],[123,261,77,6.260340690612793],[123,261,78,6.25700044631958],[123,261,79,6.249245643615723],[123,262,64,6.168478488922119],[123,262,65,6.168546676635742],[123,262,66,6.162295818328857],[123,262,67,6.155701637268066],[123,262,68,6.154285907745361],[123,262,69,6.162319660186768],[123,262,70,6.179772853851318],[123,262,71,6.204173564910889],[123,262,72,6.23335599899292],[123,262,73,6.251838207244873],[123,262,74,6.258948802947998],[123,262,75,6.261970043182373],[123,262,76,6.262178897857666],[123,262,77,6.260340690612793],[123,262,78,6.25700044631958],[123,262,79,6.249245643615723],[123,263,64,6.168478488922119],[123,263,65,6.168546676635742],[123,263,66,6.162295818328857],[123,263,67,6.155701637268066],[123,263,68,6.154285907745361],[123,263,69,6.162319660186768],[123,263,70,6.179772853851318],[123,263,71,6.204173564910889],[123,263,72,6.23335599899292],[123,263,73,6.251838207244873],[123,263,74,6.258948802947998],[123,263,75,6.261970043182373],[123,263,76,6.262178897857666],[123,263,77,6.260340690612793],[123,263,78,6.25700044631958],[123,263,79,6.249245643615723],[123,264,64,6.168478488922119],[123,264,65,6.168546676635742],[123,264,66,6.162295818328857],[123,264,67,6.155701637268066],[123,264,68,6.154285907745361],[123,264,69,6.162319660186768],[123,264,70,6.179772853851318],[123,264,71,6.204173564910889],[123,264,72,6.23335599899292],[123,264,73,6.251838207244873],[123,264,74,6.258948802947998],[123,264,75,6.261970043182373],[123,264,76,6.262178897857666],[123,264,77,6.260340690612793],[123,264,78,6.25700044631958],[123,264,79,6.249245643615723],[123,265,64,6.168478488922119],[123,265,65,6.168546676635742],[123,265,66,6.162295818328857],[123,265,67,6.155701637268066],[123,265,68,6.154285907745361],[123,265,69,6.162319660186768],[123,265,70,6.179772853851318],[123,265,71,6.204173564910889],[123,265,72,6.23335599899292],[123,265,73,6.251838207244873],[123,265,74,6.258948802947998],[123,265,75,6.261970043182373],[123,265,76,6.262178897857666],[123,265,77,6.260340690612793],[123,265,78,6.25700044631958],[123,265,79,6.249245643615723],[123,266,64,6.168478488922119],[123,266,65,6.168546676635742],[123,266,66,6.162295818328857],[123,266,67,6.155701637268066],[123,266,68,6.154285907745361],[123,266,69,6.162319660186768],[123,266,70,6.179772853851318],[123,266,71,6.204173564910889],[123,266,72,6.23335599899292],[123,266,73,6.251838207244873],[123,266,74,6.258948802947998],[123,266,75,6.261970043182373],[123,266,76,6.262178897857666],[123,266,77,6.260340690612793],[123,266,78,6.25700044631958],[123,266,79,6.249245643615723],[123,267,64,6.168478488922119],[123,267,65,6.168546676635742],[123,267,66,6.162295818328857],[123,267,67,6.155701637268066],[123,267,68,6.154285907745361],[123,267,69,6.162319660186768],[123,267,70,6.179772853851318],[123,267,71,6.204173564910889],[123,267,72,6.23335599899292],[123,267,73,6.251838207244873],[123,267,74,6.258948802947998],[123,267,75,6.261970043182373],[123,267,76,6.262178897857666],[123,267,77,6.260340690612793],[123,267,78,6.25700044631958],[123,267,79,6.249245643615723],[123,268,64,6.168478488922119],[123,268,65,6.168546676635742],[123,268,66,6.162295818328857],[123,268,67,6.155701637268066],[123,268,68,6.154285907745361],[123,268,69,6.162319660186768],[123,268,70,6.179772853851318],[123,268,71,6.204173564910889],[123,268,72,6.23335599899292],[123,268,73,6.251838207244873],[123,268,74,6.258948802947998],[123,268,75,6.261970043182373],[123,268,76,6.262178897857666],[123,268,77,6.260340690612793],[123,268,78,6.25700044631958],[123,268,79,6.249245643615723],[123,269,64,6.168478488922119],[123,269,65,6.168546676635742],[123,269,66,6.162295818328857],[123,269,67,6.155701637268066],[123,269,68,6.154285907745361],[123,269,69,6.162319660186768],[123,269,70,6.179772853851318],[123,269,71,6.204173564910889],[123,269,72,6.23335599899292],[123,269,73,6.251838207244873],[123,269,74,6.258948802947998],[123,269,75,6.261970043182373],[123,269,76,6.262178897857666],[123,269,77,6.260340690612793],[123,269,78,6.25700044631958],[123,269,79,6.249245643615723],[123,270,64,6.168478488922119],[123,270,65,6.168546676635742],[123,270,66,6.162295818328857],[123,270,67,6.155701637268066],[123,270,68,6.154285907745361],[123,270,69,6.162319660186768],[123,270,70,6.179772853851318],[123,270,71,6.204173564910889],[123,270,72,6.23335599899292],[123,270,73,6.251838207244873],[123,270,74,6.258948802947998],[123,270,75,6.261970043182373],[123,270,76,6.262178897857666],[123,270,77,6.260340690612793],[123,270,78,6.25700044631958],[123,270,79,6.249245643615723],[123,271,64,6.168478488922119],[123,271,65,6.168546676635742],[123,271,66,6.162295818328857],[123,271,67,6.155701637268066],[123,271,68,6.154285907745361],[123,271,69,6.162319660186768],[123,271,70,6.179772853851318],[123,271,71,6.204173564910889],[123,271,72,6.23335599899292],[123,271,73,6.251838207244873],[123,271,74,6.258948802947998],[123,271,75,6.261970043182373],[123,271,76,6.262178897857666],[123,271,77,6.260340690612793],[123,271,78,6.25700044631958],[123,271,79,6.249245643615723],[123,272,64,6.168478488922119],[123,272,65,6.168546676635742],[123,272,66,6.162295818328857],[123,272,67,6.155701637268066],[123,272,68,6.154285907745361],[123,272,69,6.162319660186768],[123,272,70,6.179772853851318],[123,272,71,6.204173564910889],[123,272,72,6.23335599899292],[123,272,73,6.251838207244873],[123,272,74,6.258948802947998],[123,272,75,6.261970043182373],[123,272,76,6.262178897857666],[123,272,77,6.260340690612793],[123,272,78,6.25700044631958],[123,272,79,6.249245643615723],[123,273,64,6.168478488922119],[123,273,65,6.168546676635742],[123,273,66,6.162295818328857],[123,273,67,6.155701637268066],[123,273,68,6.154285907745361],[123,273,69,6.162319660186768],[123,273,70,6.179772853851318],[123,273,71,6.204173564910889],[123,273,72,6.23335599899292],[123,273,73,6.251838207244873],[123,273,74,6.258948802947998],[123,273,75,6.261970043182373],[123,273,76,6.262178897857666],[123,273,77,6.260340690612793],[123,273,78,6.25700044631958],[123,273,79,6.249245643615723],[123,274,64,6.168478488922119],[123,274,65,6.168546676635742],[123,274,66,6.162295818328857],[123,274,67,6.155701637268066],[123,274,68,6.154285907745361],[123,274,69,6.162319660186768],[123,274,70,6.179772853851318],[123,274,71,6.204173564910889],[123,274,72,6.23335599899292],[123,274,73,6.251838207244873],[123,274,74,6.258948802947998],[123,274,75,6.261970043182373],[123,274,76,6.262178897857666],[123,274,77,6.260340690612793],[123,274,78,6.25700044631958],[123,274,79,6.249245643615723],[123,275,64,6.168478488922119],[123,275,65,6.168546676635742],[123,275,66,6.162295818328857],[123,275,67,6.155701637268066],[123,275,68,6.154285907745361],[123,275,69,6.162319660186768],[123,275,70,6.179772853851318],[123,275,71,6.204173564910889],[123,275,72,6.23335599899292],[123,275,73,6.251838207244873],[123,275,74,6.258948802947998],[123,275,75,6.261970043182373],[123,275,76,6.262178897857666],[123,275,77,6.260340690612793],[123,275,78,6.25700044631958],[123,275,79,6.249245643615723],[123,276,64,6.168478488922119],[123,276,65,6.168546676635742],[123,276,66,6.162295818328857],[123,276,67,6.155701637268066],[123,276,68,6.154285907745361],[123,276,69,6.162319660186768],[123,276,70,6.179772853851318],[123,276,71,6.204173564910889],[123,276,72,6.23335599899292],[123,276,73,6.251838207244873],[123,276,74,6.258948802947998],[123,276,75,6.261970043182373],[123,276,76,6.262178897857666],[123,276,77,6.260340690612793],[123,276,78,6.25700044631958],[123,276,79,6.249245643615723],[123,277,64,6.168478488922119],[123,277,65,6.168546676635742],[123,277,66,6.162295818328857],[123,277,67,6.155701637268066],[123,277,68,6.154285907745361],[123,277,69,6.162319660186768],[123,277,70,6.179772853851318],[123,277,71,6.204173564910889],[123,277,72,6.23335599899292],[123,277,73,6.251838207244873],[123,277,74,6.258948802947998],[123,277,75,6.261970043182373],[123,277,76,6.262178897857666],[123,277,77,6.260340690612793],[123,277,78,6.25700044631958],[123,277,79,6.249245643615723],[123,278,64,6.168478488922119],[123,278,65,6.168546676635742],[123,278,66,6.162295818328857],[123,278,67,6.155701637268066],[123,278,68,6.154285907745361],[123,278,69,6.162319660186768],[123,278,70,6.179772853851318],[123,278,71,6.204173564910889],[123,278,72,6.23335599899292],[123,278,73,6.251838207244873],[123,278,74,6.258948802947998],[123,278,75,6.261970043182373],[123,278,76,6.262178897857666],[123,278,77,6.260340690612793],[123,278,78,6.25700044631958],[123,278,79,6.249245643615723],[123,279,64,6.168478488922119],[123,279,65,6.168546676635742],[123,279,66,6.162295818328857],[123,279,67,6.155701637268066],[123,279,68,6.154285907745361],[123,279,69,6.162319660186768],[123,279,70,6.179772853851318],[123,279,71,6.204173564910889],[123,279,72,6.23335599899292],[123,279,73,6.251838207244873],[123,279,74,6.258948802947998],[123,279,75,6.261970043182373],[123,279,76,6.262178897857666],[123,279,77,6.260340690612793],[123,279,78,6.25700044631958],[123,279,79,6.249245643615723],[123,280,64,6.168478488922119],[123,280,65,6.168546676635742],[123,280,66,6.162295818328857],[123,280,67,6.155701637268066],[123,280,68,6.154285907745361],[123,280,69,6.162319660186768],[123,280,70,6.179772853851318],[123,280,71,6.204173564910889],[123,280,72,6.23335599899292],[123,280,73,6.251838207244873],[123,280,74,6.258948802947998],[123,280,75,6.261970043182373],[123,280,76,6.262178897857666],[123,280,77,6.260340690612793],[123,280,78,6.25700044631958],[123,280,79,6.249245643615723],[123,281,64,6.168478488922119],[123,281,65,6.168546676635742],[123,281,66,6.162295818328857],[123,281,67,6.155701637268066],[123,281,68,6.154285907745361],[123,281,69,6.162319660186768],[123,281,70,6.179772853851318],[123,281,71,6.204173564910889],[123,281,72,6.23335599899292],[123,281,73,6.251838207244873],[123,281,74,6.258948802947998],[123,281,75,6.261970043182373],[123,281,76,6.262178897857666],[123,281,77,6.260340690612793],[123,281,78,6.25700044631958],[123,281,79,6.249245643615723],[123,282,64,6.168478488922119],[123,282,65,6.168546676635742],[123,282,66,6.162295818328857],[123,282,67,6.155701637268066],[123,282,68,6.154285907745361],[123,282,69,6.162319660186768],[123,282,70,6.179772853851318],[123,282,71,6.204173564910889],[123,282,72,6.23335599899292],[123,282,73,6.251838207244873],[123,282,74,6.258948802947998],[123,282,75,6.261970043182373],[123,282,76,6.262178897857666],[123,282,77,6.260340690612793],[123,282,78,6.25700044631958],[123,282,79,6.249245643615723],[123,283,64,6.168478488922119],[123,283,65,6.168546676635742],[123,283,66,6.162295818328857],[123,283,67,6.155701637268066],[123,283,68,6.154285907745361],[123,283,69,6.162319660186768],[123,283,70,6.179772853851318],[123,283,71,6.204173564910889],[123,283,72,6.23335599899292],[123,283,73,6.251838207244873],[123,283,74,6.258948802947998],[123,283,75,6.261970043182373],[123,283,76,6.262178897857666],[123,283,77,6.260340690612793],[123,283,78,6.25700044631958],[123,283,79,6.249245643615723],[123,284,64,6.168478488922119],[123,284,65,6.168546676635742],[123,284,66,6.162295818328857],[123,284,67,6.155701637268066],[123,284,68,6.154285907745361],[123,284,69,6.162319660186768],[123,284,70,6.179772853851318],[123,284,71,6.204173564910889],[123,284,72,6.23335599899292],[123,284,73,6.251838207244873],[123,284,74,6.258948802947998],[123,284,75,6.261970043182373],[123,284,76,6.262178897857666],[123,284,77,6.260340690612793],[123,284,78,6.25700044631958],[123,284,79,6.249245643615723],[123,285,64,6.168478488922119],[123,285,65,6.168546676635742],[123,285,66,6.162295818328857],[123,285,67,6.155701637268066],[123,285,68,6.154285907745361],[123,285,69,6.162319660186768],[123,285,70,6.179772853851318],[123,285,71,6.204173564910889],[123,285,72,6.23335599899292],[123,285,73,6.251838207244873],[123,285,74,6.258948802947998],[123,285,75,6.261970043182373],[123,285,76,6.262178897857666],[123,285,77,6.260340690612793],[123,285,78,6.25700044631958],[123,285,79,6.249245643615723],[123,286,64,6.168478488922119],[123,286,65,6.168546676635742],[123,286,66,6.162295818328857],[123,286,67,6.155701637268066],[123,286,68,6.154285907745361],[123,286,69,6.162319660186768],[123,286,70,6.179772853851318],[123,286,71,6.204173564910889],[123,286,72,6.23335599899292],[123,286,73,6.251838207244873],[123,286,74,6.258948802947998],[123,286,75,6.261970043182373],[123,286,76,6.262178897857666],[123,286,77,6.260340690612793],[123,286,78,6.25700044631958],[123,286,79,6.249245643615723],[123,287,64,6.168478488922119],[123,287,65,6.168546676635742],[123,287,66,6.162295818328857],[123,287,67,6.155701637268066],[123,287,68,6.154285907745361],[123,287,69,6.162319660186768],[123,287,70,6.179772853851318],[123,287,71,6.204173564910889],[123,287,72,6.23335599899292],[123,287,73,6.251838207244873],[123,287,74,6.258948802947998],[123,287,75,6.261970043182373],[123,287,76,6.262178897857666],[123,287,77,6.260340690612793],[123,287,78,6.25700044631958],[123,287,79,6.249245643615723],[123,288,64,6.168478488922119],[123,288,65,6.168546676635742],[123,288,66,6.162295818328857],[123,288,67,6.155701637268066],[123,288,68,6.154285907745361],[123,288,69,6.162319660186768],[123,288,70,6.179772853851318],[123,288,71,6.204173564910889],[123,288,72,6.23335599899292],[123,288,73,6.251838207244873],[123,288,74,6.258948802947998],[123,288,75,6.261970043182373],[123,288,76,6.262178897857666],[123,288,77,6.260340690612793],[123,288,78,6.25700044631958],[123,288,79,6.249245643615723],[123,289,64,6.168478488922119],[123,289,65,6.168546676635742],[123,289,66,6.162295818328857],[123,289,67,6.155701637268066],[123,289,68,6.154285907745361],[123,289,69,6.162319660186768],[123,289,70,6.179772853851318],[123,289,71,6.204173564910889],[123,289,72,6.23335599899292],[123,289,73,6.251838207244873],[123,289,74,6.258948802947998],[123,289,75,6.261970043182373],[123,289,76,6.262178897857666],[123,289,77,6.260340690612793],[123,289,78,6.25700044631958],[123,289,79,6.249245643615723],[123,290,64,6.168478488922119],[123,290,65,6.168546676635742],[123,290,66,6.162295818328857],[123,290,67,6.155701637268066],[123,290,68,6.154285907745361],[123,290,69,6.162319660186768],[123,290,70,6.179772853851318],[123,290,71,6.204173564910889],[123,290,72,6.23335599899292],[123,290,73,6.251838207244873],[123,290,74,6.258948802947998],[123,290,75,6.261970043182373],[123,290,76,6.262178897857666],[123,290,77,6.260340690612793],[123,290,78,6.25700044631958],[123,290,79,6.249245643615723],[123,291,64,6.168478488922119],[123,291,65,6.168546676635742],[123,291,66,6.162295818328857],[123,291,67,6.155701637268066],[123,291,68,6.154285907745361],[123,291,69,6.162319660186768],[123,291,70,6.179772853851318],[123,291,71,6.204173564910889],[123,291,72,6.23335599899292],[123,291,73,6.251838207244873],[123,291,74,6.258948802947998],[123,291,75,6.261970043182373],[123,291,76,6.262178897857666],[123,291,77,6.260340690612793],[123,291,78,6.25700044631958],[123,291,79,6.249245643615723],[123,292,64,6.168478488922119],[123,292,65,6.168546676635742],[123,292,66,6.162295818328857],[123,292,67,6.155701637268066],[123,292,68,6.154285907745361],[123,292,69,6.162319660186768],[123,292,70,6.179772853851318],[123,292,71,6.204173564910889],[123,292,72,6.23335599899292],[123,292,73,6.251838207244873],[123,292,74,6.258948802947998],[123,292,75,6.261970043182373],[123,292,76,6.262178897857666],[123,292,77,6.260340690612793],[123,292,78,6.25700044631958],[123,292,79,6.249245643615723],[123,293,64,6.168478488922119],[123,293,65,6.168546676635742],[123,293,66,6.162295818328857],[123,293,67,6.155701637268066],[123,293,68,6.154285907745361],[123,293,69,6.162319660186768],[123,293,70,6.179772853851318],[123,293,71,6.204173564910889],[123,293,72,6.23335599899292],[123,293,73,6.251838207244873],[123,293,74,6.258948802947998],[123,293,75,6.261970043182373],[123,293,76,6.262178897857666],[123,293,77,6.260340690612793],[123,293,78,6.25700044631958],[123,293,79,6.249245643615723],[123,294,64,6.168478488922119],[123,294,65,6.168546676635742],[123,294,66,6.162295818328857],[123,294,67,6.155701637268066],[123,294,68,6.154285907745361],[123,294,69,6.162319660186768],[123,294,70,6.179772853851318],[123,294,71,6.204173564910889],[123,294,72,6.23335599899292],[123,294,73,6.251838207244873],[123,294,74,6.258948802947998],[123,294,75,6.261970043182373],[123,294,76,6.262178897857666],[123,294,77,6.260340690612793],[123,294,78,6.25700044631958],[123,294,79,6.249245643615723],[123,295,64,6.168478488922119],[123,295,65,6.168546676635742],[123,295,66,6.162295818328857],[123,295,67,6.155701637268066],[123,295,68,6.154285907745361],[123,295,69,6.162319660186768],[123,295,70,6.179772853851318],[123,295,71,6.204173564910889],[123,295,72,6.23335599899292],[123,295,73,6.251838207244873],[123,295,74,6.258948802947998],[123,295,75,6.261970043182373],[123,295,76,6.262178897857666],[123,295,77,6.260340690612793],[123,295,78,6.25700044631958],[123,295,79,6.249245643615723],[123,296,64,6.168478488922119],[123,296,65,6.168546676635742],[123,296,66,6.162295818328857],[123,296,67,6.155701637268066],[123,296,68,6.154285907745361],[123,296,69,6.162319660186768],[123,296,70,6.179772853851318],[123,296,71,6.204173564910889],[123,296,72,6.23335599899292],[123,296,73,6.251838207244873],[123,296,74,6.258948802947998],[123,296,75,6.261970043182373],[123,296,76,6.262178897857666],[123,296,77,6.260340690612793],[123,296,78,6.25700044631958],[123,296,79,6.249245643615723],[123,297,64,6.168478488922119],[123,297,65,6.168546676635742],[123,297,66,6.162295818328857],[123,297,67,6.155701637268066],[123,297,68,6.154285907745361],[123,297,69,6.162319660186768],[123,297,70,6.179772853851318],[123,297,71,6.204173564910889],[123,297,72,6.23335599899292],[123,297,73,6.251838207244873],[123,297,74,6.258948802947998],[123,297,75,6.261970043182373],[123,297,76,6.262178897857666],[123,297,77,6.260340690612793],[123,297,78,6.25700044631958],[123,297,79,6.249245643615723],[123,298,64,6.168478488922119],[123,298,65,6.168546676635742],[123,298,66,6.162295818328857],[123,298,67,6.155701637268066],[123,298,68,6.154285907745361],[123,298,69,6.162319660186768],[123,298,70,6.179772853851318],[123,298,71,6.204173564910889],[123,298,72,6.23335599899292],[123,298,73,6.251838207244873],[123,298,74,6.258948802947998],[123,298,75,6.261970043182373],[123,298,76,6.262178897857666],[123,298,77,6.260340690612793],[123,298,78,6.25700044631958],[123,298,79,6.249245643615723],[123,299,64,6.168478488922119],[123,299,65,6.168546676635742],[123,299,66,6.162295818328857],[123,299,67,6.155701637268066],[123,299,68,6.154285907745361],[123,299,69,6.162319660186768],[123,299,70,6.179772853851318],[123,299,71,6.204173564910889],[123,299,72,6.23335599899292],[123,299,73,6.251838207244873],[123,299,74,6.258948802947998],[123,299,75,6.261970043182373],[123,299,76,6.262178897857666],[123,299,77,6.260340690612793],[123,299,78,6.25700044631958],[123,299,79,6.249245643615723],[123,300,64,6.168478488922119],[123,300,65,6.168546676635742],[123,300,66,6.162295818328857],[123,300,67,6.155701637268066],[123,300,68,6.154285907745361],[123,300,69,6.162319660186768],[123,300,70,6.179772853851318],[123,300,71,6.204173564910889],[123,300,72,6.23335599899292],[123,300,73,6.251838207244873],[123,300,74,6.258948802947998],[123,300,75,6.261970043182373],[123,300,76,6.262178897857666],[123,300,77,6.260340690612793],[123,300,78,6.25700044631958],[123,300,79,6.249245643615723],[123,301,64,6.168478488922119],[123,301,65,6.168546676635742],[123,301,66,6.162295818328857],[123,301,67,6.155701637268066],[123,301,68,6.154285907745361],[123,301,69,6.162319660186768],[123,301,70,6.179772853851318],[123,301,71,6.204173564910889],[123,301,72,6.23335599899292],[123,301,73,6.251838207244873],[123,301,74,6.258948802947998],[123,301,75,6.261970043182373],[123,301,76,6.262178897857666],[123,301,77,6.260340690612793],[123,301,78,6.25700044631958],[123,301,79,6.249245643615723],[123,302,64,6.168478488922119],[123,302,65,6.168546676635742],[123,302,66,6.162295818328857],[123,302,67,6.155701637268066],[123,302,68,6.154285907745361],[123,302,69,6.162319660186768],[123,302,70,6.179772853851318],[123,302,71,6.204173564910889],[123,302,72,6.23335599899292],[123,302,73,6.251838207244873],[123,302,74,6.258948802947998],[123,302,75,6.261970043182373],[123,302,76,6.262178897857666],[123,302,77,6.260340690612793],[123,302,78,6.25700044631958],[123,302,79,6.249245643615723],[123,303,64,6.168478488922119],[123,303,65,6.168546676635742],[123,303,66,6.162295818328857],[123,303,67,6.155701637268066],[123,303,68,6.154285907745361],[123,303,69,6.162319660186768],[123,303,70,6.179772853851318],[123,303,71,6.204173564910889],[123,303,72,6.23335599899292],[123,303,73,6.251838207244873],[123,303,74,6.258948802947998],[123,303,75,6.261970043182373],[123,303,76,6.262178897857666],[123,303,77,6.260340690612793],[123,303,78,6.25700044631958],[123,303,79,6.249245643615723],[123,304,64,6.168478488922119],[123,304,65,6.168546676635742],[123,304,66,6.162295818328857],[123,304,67,6.155701637268066],[123,304,68,6.154285907745361],[123,304,69,6.162319660186768],[123,304,70,6.179772853851318],[123,304,71,6.204173564910889],[123,304,72,6.23335599899292],[123,304,73,6.251838207244873],[123,304,74,6.258948802947998],[123,304,75,6.261970043182373],[123,304,76,6.262178897857666],[123,304,77,6.260340690612793],[123,304,78,6.25700044631958],[123,304,79,6.249245643615723],[123,305,64,6.168478488922119],[123,305,65,6.168546676635742],[123,305,66,6.162295818328857],[123,305,67,6.155701637268066],[123,305,68,6.154285907745361],[123,305,69,6.162319660186768],[123,305,70,6.179772853851318],[123,305,71,6.204173564910889],[123,305,72,6.23335599899292],[123,305,73,6.251838207244873],[123,305,74,6.258948802947998],[123,305,75,6.261970043182373],[123,305,76,6.262178897857666],[123,305,77,6.260340690612793],[123,305,78,6.25700044631958],[123,305,79,6.249245643615723],[123,306,64,6.168478488922119],[123,306,65,6.168546676635742],[123,306,66,6.162295818328857],[123,306,67,6.155701637268066],[123,306,68,6.154285907745361],[123,306,69,6.162319660186768],[123,306,70,6.179772853851318],[123,306,71,6.204173564910889],[123,306,72,6.23335599899292],[123,306,73,6.251838207244873],[123,306,74,6.258948802947998],[123,306,75,6.261970043182373],[123,306,76,6.262178897857666],[123,306,77,6.260340690612793],[123,306,78,6.25700044631958],[123,306,79,6.249245643615723],[123,307,64,6.168478488922119],[123,307,65,6.168546676635742],[123,307,66,6.162295818328857],[123,307,67,6.155701637268066],[123,307,68,6.154285907745361],[123,307,69,6.162319660186768],[123,307,70,6.179772853851318],[123,307,71,6.204173564910889],[123,307,72,6.23335599899292],[123,307,73,6.251838207244873],[123,307,74,6.258948802947998],[123,307,75,6.261970043182373],[123,307,76,6.262178897857666],[123,307,77,6.260340690612793],[123,307,78,6.25700044631958],[123,307,79,6.249245643615723],[123,308,64,6.168478488922119],[123,308,65,6.168546676635742],[123,308,66,6.162295818328857],[123,308,67,6.155701637268066],[123,308,68,6.154285907745361],[123,308,69,6.162319660186768],[123,308,70,6.179772853851318],[123,308,71,6.204173564910889],[123,308,72,6.23335599899292],[123,308,73,6.251838207244873],[123,308,74,6.258948802947998],[123,308,75,6.261970043182373],[123,308,76,6.262178897857666],[123,308,77,6.260340690612793],[123,308,78,6.25700044631958],[123,308,79,6.249245643615723],[123,309,64,6.168478488922119],[123,309,65,6.168546676635742],[123,309,66,6.162295818328857],[123,309,67,6.155701637268066],[123,309,68,6.154285907745361],[123,309,69,6.162319660186768],[123,309,70,6.179772853851318],[123,309,71,6.204173564910889],[123,309,72,6.23335599899292],[123,309,73,6.251838207244873],[123,309,74,6.258948802947998],[123,309,75,6.261970043182373],[123,309,76,6.262178897857666],[123,309,77,6.260340690612793],[123,309,78,6.25700044631958],[123,309,79,6.249245643615723],[123,310,64,6.168478488922119],[123,310,65,6.168546676635742],[123,310,66,6.162295818328857],[123,310,67,6.155701637268066],[123,310,68,6.154285907745361],[123,310,69,6.162319660186768],[123,310,70,6.179772853851318],[123,310,71,6.204173564910889],[123,310,72,6.23335599899292],[123,310,73,6.251838207244873],[123,310,74,6.258948802947998],[123,310,75,6.261970043182373],[123,310,76,6.262178897857666],[123,310,77,6.260340690612793],[123,310,78,6.25700044631958],[123,310,79,6.249245643615723],[123,311,64,6.168478488922119],[123,311,65,6.168546676635742],[123,311,66,6.162295818328857],[123,311,67,6.155701637268066],[123,311,68,6.154285907745361],[123,311,69,6.162319660186768],[123,311,70,6.179772853851318],[123,311,71,6.204173564910889],[123,311,72,6.23335599899292],[123,311,73,6.251838207244873],[123,311,74,6.258948802947998],[123,311,75,6.261970043182373],[123,311,76,6.262178897857666],[123,311,77,6.260340690612793],[123,311,78,6.25700044631958],[123,311,79,6.249245643615723],[123,312,64,6.168478488922119],[123,312,65,6.168546676635742],[123,312,66,6.162295818328857],[123,312,67,6.155701637268066],[123,312,68,6.154285907745361],[123,312,69,6.162319660186768],[123,312,70,6.179772853851318],[123,312,71,6.204173564910889],[123,312,72,6.23335599899292],[123,312,73,6.251838207244873],[123,312,74,6.258948802947998],[123,312,75,6.261970043182373],[123,312,76,6.262178897857666],[123,312,77,6.260340690612793],[123,312,78,6.25700044631958],[123,312,79,6.249245643615723],[123,313,64,6.168478488922119],[123,313,65,6.168546676635742],[123,313,66,6.162295818328857],[123,313,67,6.155701637268066],[123,313,68,6.154285907745361],[123,313,69,6.162319660186768],[123,313,70,6.179772853851318],[123,313,71,6.204173564910889],[123,313,72,6.23335599899292],[123,313,73,6.251838207244873],[123,313,74,6.258948802947998],[123,313,75,6.261970043182373],[123,313,76,6.262178897857666],[123,313,77,6.260340690612793],[123,313,78,6.25700044631958],[123,313,79,6.249245643615723],[123,314,64,6.168478488922119],[123,314,65,6.168546676635742],[123,314,66,6.162295818328857],[123,314,67,6.155701637268066],[123,314,68,6.154285907745361],[123,314,69,6.162319660186768],[123,314,70,6.179772853851318],[123,314,71,6.204173564910889],[123,314,72,6.23335599899292],[123,314,73,6.251838207244873],[123,314,74,6.258948802947998],[123,314,75,6.261970043182373],[123,314,76,6.262178897857666],[123,314,77,6.260340690612793],[123,314,78,6.25700044631958],[123,314,79,6.249245643615723],[123,315,64,6.168478488922119],[123,315,65,6.168546676635742],[123,315,66,6.162295818328857],[123,315,67,6.155701637268066],[123,315,68,6.154285907745361],[123,315,69,6.162319660186768],[123,315,70,6.179772853851318],[123,315,71,6.204173564910889],[123,315,72,6.23335599899292],[123,315,73,6.251838207244873],[123,315,74,6.258948802947998],[123,315,75,6.261970043182373],[123,315,76,6.262178897857666],[123,315,77,6.260340690612793],[123,315,78,6.25700044631958],[123,315,79,6.249245643615723],[123,316,64,6.168478488922119],[123,316,65,6.168546676635742],[123,316,66,6.162295818328857],[123,316,67,6.155701637268066],[123,316,68,6.154285907745361],[123,316,69,6.162319660186768],[123,316,70,6.179772853851318],[123,316,71,6.204173564910889],[123,316,72,6.23335599899292],[123,316,73,6.251838207244873],[123,316,74,6.258948802947998],[123,316,75,6.261970043182373],[123,316,76,6.262178897857666],[123,316,77,6.260340690612793],[123,316,78,6.25700044631958],[123,316,79,6.249245643615723],[123,317,64,6.168478488922119],[123,317,65,6.168546676635742],[123,317,66,6.162295818328857],[123,317,67,6.155701637268066],[123,317,68,6.154285907745361],[123,317,69,6.162319660186768],[123,317,70,6.179772853851318],[123,317,71,6.204173564910889],[123,317,72,6.23335599899292],[123,317,73,6.251838207244873],[123,317,74,6.258948802947998],[123,317,75,6.261970043182373],[123,317,76,6.262178897857666],[123,317,77,6.260340690612793],[123,317,78,6.25700044631958],[123,317,79,6.249245643615723],[123,318,64,6.168478488922119],[123,318,65,6.168546676635742],[123,318,66,6.162295818328857],[123,318,67,6.155701637268066],[123,318,68,6.154285907745361],[123,318,69,6.162319660186768],[123,318,70,6.179772853851318],[123,318,71,6.204173564910889],[123,318,72,6.23335599899292],[123,318,73,6.251838207244873],[123,318,74,6.258948802947998],[123,318,75,6.261970043182373],[123,318,76,6.262178897857666],[123,318,77,6.260340690612793],[123,318,78,6.25700044631958],[123,318,79,6.249245643615723],[123,319,64,6.168478488922119],[123,319,65,6.168546676635742],[123,319,66,6.162295818328857],[123,319,67,6.155701637268066],[123,319,68,6.154285907745361],[123,319,69,6.162319660186768],[123,319,70,6.179772853851318],[123,319,71,6.204173564910889],[123,319,72,6.23335599899292],[123,319,73,6.251838207244873],[123,319,74,6.258948802947998],[123,319,75,6.261970043182373],[123,319,76,6.262178897857666],[123,319,77,6.260340690612793],[123,319,78,6.25700044631958],[123,319,79,6.249245643615723],[124,-64,64,6.177631855010986],[124,-64,65,6.17827844619751],[124,-64,66,6.171967029571533],[124,-64,67,6.164862155914307],[124,-64,68,6.161971569061279],[124,-64,69,6.167181015014648],[124,-64,70,6.180848598480225],[124,-64,71,6.2020697593688965],[124,-64,72,6.231013298034668],[124,-64,73,6.25203800201416],[124,-64,74,6.2597455978393555],[124,-64,75,6.262939453125],[124,-64,76,6.263560771942139],[124,-64,77,6.262023448944092],[124,-64,78,6.258963584899902],[124,-64,79,6.252208232879639],[124,-63,64,6.177631855010986],[124,-63,65,6.17827844619751],[124,-63,66,6.171967029571533],[124,-63,67,6.164862155914307],[124,-63,68,6.161971569061279],[124,-63,69,6.167181015014648],[124,-63,70,6.180848598480225],[124,-63,71,6.2020697593688965],[124,-63,72,6.231013298034668],[124,-63,73,6.25203800201416],[124,-63,74,6.2597455978393555],[124,-63,75,6.262939453125],[124,-63,76,6.263560771942139],[124,-63,77,6.262023448944092],[124,-63,78,6.258963584899902],[124,-63,79,6.252208232879639],[124,-62,64,6.177631855010986],[124,-62,65,6.17827844619751],[124,-62,66,6.171967029571533],[124,-62,67,6.164862155914307],[124,-62,68,6.161971569061279],[124,-62,69,6.167181015014648],[124,-62,70,6.180848598480225],[124,-62,71,6.2020697593688965],[124,-62,72,6.231013298034668],[124,-62,73,6.25203800201416],[124,-62,74,6.2597455978393555],[124,-62,75,6.262939453125],[124,-62,76,6.263560771942139],[124,-62,77,6.262023448944092],[124,-62,78,6.258963584899902],[124,-62,79,6.252208232879639],[124,-61,64,6.177631855010986],[124,-61,65,6.17827844619751],[124,-61,66,6.171967029571533],[124,-61,67,6.164862155914307],[124,-61,68,6.161971569061279],[124,-61,69,6.167181015014648],[124,-61,70,6.180848598480225],[124,-61,71,6.2020697593688965],[124,-61,72,6.231013298034668],[124,-61,73,6.25203800201416],[124,-61,74,6.2597455978393555],[124,-61,75,6.262939453125],[124,-61,76,6.263560771942139],[124,-61,77,6.262023448944092],[124,-61,78,6.258963584899902],[124,-61,79,6.252208232879639],[124,-60,64,6.177631855010986],[124,-60,65,6.17827844619751],[124,-60,66,6.171967029571533],[124,-60,67,6.164862155914307],[124,-60,68,6.161971569061279],[124,-60,69,6.167181015014648],[124,-60,70,6.180848598480225],[124,-60,71,6.2020697593688965],[124,-60,72,6.231013298034668],[124,-60,73,6.25203800201416],[124,-60,74,6.2597455978393555],[124,-60,75,6.262939453125],[124,-60,76,6.263560771942139],[124,-60,77,6.262023448944092],[124,-60,78,6.258963584899902],[124,-60,79,6.252208232879639],[124,-59,64,6.177631855010986],[124,-59,65,6.17827844619751],[124,-59,66,6.171967029571533],[124,-59,67,6.164862155914307],[124,-59,68,6.161971569061279],[124,-59,69,6.167181015014648],[124,-59,70,6.180848598480225],[124,-59,71,6.2020697593688965],[124,-59,72,6.231013298034668],[124,-59,73,6.25203800201416],[124,-59,74,6.2597455978393555],[124,-59,75,6.262939453125],[124,-59,76,6.263560771942139],[124,-59,77,6.262023448944092],[124,-59,78,6.258963584899902],[124,-59,79,6.252208232879639],[124,-58,64,6.177631855010986],[124,-58,65,6.17827844619751],[124,-58,66,6.171967029571533],[124,-58,67,6.164862155914307],[124,-58,68,6.161971569061279],[124,-58,69,6.167181015014648],[124,-58,70,6.180848598480225],[124,-58,71,6.2020697593688965],[124,-58,72,6.231013298034668],[124,-58,73,6.25203800201416],[124,-58,74,6.2597455978393555],[124,-58,75,6.262939453125],[124,-58,76,6.263560771942139],[124,-58,77,6.262023448944092],[124,-58,78,6.258963584899902],[124,-58,79,6.252208232879639],[124,-57,64,6.177631855010986],[124,-57,65,6.17827844619751],[124,-57,66,6.171967029571533],[124,-57,67,6.164862155914307],[124,-57,68,6.161971569061279],[124,-57,69,6.167181015014648],[124,-57,70,6.180848598480225],[124,-57,71,6.2020697593688965],[124,-57,72,6.231013298034668],[124,-57,73,6.25203800201416],[124,-57,74,6.2597455978393555],[124,-57,75,6.262939453125],[124,-57,76,6.263560771942139],[124,-57,77,6.262023448944092],[124,-57,78,6.258963584899902],[124,-57,79,6.252208232879639],[124,-56,64,6.177631855010986],[124,-56,65,6.17827844619751],[124,-56,66,6.171967029571533],[124,-56,67,6.164862155914307],[124,-56,68,6.161971569061279],[124,-56,69,6.167181015014648],[124,-56,70,6.180848598480225],[124,-56,71,6.2020697593688965],[124,-56,72,6.231013298034668],[124,-56,73,6.25203800201416],[124,-56,74,6.2597455978393555],[124,-56,75,6.262939453125],[124,-56,76,6.263560771942139],[124,-56,77,6.262023448944092],[124,-56,78,6.258963584899902],[124,-56,79,6.252208232879639],[124,-55,64,6.177631855010986],[124,-55,65,6.17827844619751],[124,-55,66,6.171967029571533],[124,-55,67,6.164862155914307],[124,-55,68,6.161971569061279],[124,-55,69,6.167181015014648],[124,-55,70,6.180848598480225],[124,-55,71,6.2020697593688965],[124,-55,72,6.231013298034668],[124,-55,73,6.25203800201416],[124,-55,74,6.2597455978393555],[124,-55,75,6.262939453125],[124,-55,76,6.263560771942139],[124,-55,77,6.262023448944092],[124,-55,78,6.258963584899902],[124,-55,79,6.252208232879639],[124,-54,64,6.177631855010986],[124,-54,65,6.17827844619751],[124,-54,66,6.171967029571533],[124,-54,67,6.164862155914307],[124,-54,68,6.161971569061279],[124,-54,69,6.167181015014648],[124,-54,70,6.180848598480225],[124,-54,71,6.2020697593688965],[124,-54,72,6.231013298034668],[124,-54,73,6.25203800201416],[124,-54,74,6.2597455978393555],[124,-54,75,6.262939453125],[124,-54,76,6.263560771942139],[124,-54,77,6.262023448944092],[124,-54,78,6.258963584899902],[124,-54,79,6.252208232879639],[124,-53,64,6.177631855010986],[124,-53,65,6.17827844619751],[124,-53,66,6.171967029571533],[124,-53,67,6.164862155914307],[124,-53,68,6.161971569061279],[124,-53,69,6.167181015014648],[124,-53,70,6.180848598480225],[124,-53,71,6.2020697593688965],[124,-53,72,6.231013298034668],[124,-53,73,6.25203800201416],[124,-53,74,6.2597455978393555],[124,-53,75,6.262939453125],[124,-53,76,6.263560771942139],[124,-53,77,6.262023448944092],[124,-53,78,6.258963584899902],[124,-53,79,6.252208232879639],[124,-52,64,6.177631855010986],[124,-52,65,6.17827844619751],[124,-52,66,6.171967029571533],[124,-52,67,6.164862155914307],[124,-52,68,6.161971569061279],[124,-52,69,6.167181015014648],[124,-52,70,6.180848598480225],[124,-52,71,6.2020697593688965],[124,-52,72,6.231013298034668],[124,-52,73,6.25203800201416],[124,-52,74,6.2597455978393555],[124,-52,75,6.262939453125],[124,-52,76,6.263560771942139],[124,-52,77,6.262023448944092],[124,-52,78,6.258963584899902],[124,-52,79,6.252208232879639],[124,-51,64,6.177631855010986],[124,-51,65,6.17827844619751],[124,-51,66,6.171967029571533],[124,-51,67,6.164862155914307],[124,-51,68,6.161971569061279],[124,-51,69,6.167181015014648],[124,-51,70,6.180848598480225],[124,-51,71,6.2020697593688965],[124,-51,72,6.231013298034668],[124,-51,73,6.25203800201416],[124,-51,74,6.2597455978393555],[124,-51,75,6.262939453125],[124,-51,76,6.263560771942139],[124,-51,77,6.262023448944092],[124,-51,78,6.258963584899902],[124,-51,79,6.252208232879639],[124,-50,64,6.177631855010986],[124,-50,65,6.17827844619751],[124,-50,66,6.171967029571533],[124,-50,67,6.164862155914307],[124,-50,68,6.161971569061279],[124,-50,69,6.167181015014648],[124,-50,70,6.180848598480225],[124,-50,71,6.2020697593688965],[124,-50,72,6.231013298034668],[124,-50,73,6.25203800201416],[124,-50,74,6.2597455978393555],[124,-50,75,6.262939453125],[124,-50,76,6.263560771942139],[124,-50,77,6.262023448944092],[124,-50,78,6.258963584899902],[124,-50,79,6.252208232879639],[124,-49,64,6.177631855010986],[124,-49,65,6.17827844619751],[124,-49,66,6.171967029571533],[124,-49,67,6.164862155914307],[124,-49,68,6.161971569061279],[124,-49,69,6.167181015014648],[124,-49,70,6.180848598480225],[124,-49,71,6.2020697593688965],[124,-49,72,6.231013298034668],[124,-49,73,6.25203800201416],[124,-49,74,6.2597455978393555],[124,-49,75,6.262939453125],[124,-49,76,6.263560771942139],[124,-49,77,6.262023448944092],[124,-49,78,6.258963584899902],[124,-49,79,6.252208232879639],[124,-48,64,6.177631855010986],[124,-48,65,6.17827844619751],[124,-48,66,6.171967029571533],[124,-48,67,6.164862155914307],[124,-48,68,6.161971569061279],[124,-48,69,6.167181015014648],[124,-48,70,6.180848598480225],[124,-48,71,6.2020697593688965],[124,-48,72,6.231013298034668],[124,-48,73,6.25203800201416],[124,-48,74,6.2597455978393555],[124,-48,75,6.262939453125],[124,-48,76,6.263560771942139],[124,-48,77,6.262023448944092],[124,-48,78,6.258963584899902],[124,-48,79,6.252208232879639],[124,-47,64,6.177631855010986],[124,-47,65,6.17827844619751],[124,-47,66,6.171967029571533],[124,-47,67,6.164862155914307],[124,-47,68,6.161971569061279],[124,-47,69,6.167181015014648],[124,-47,70,6.180848598480225],[124,-47,71,6.2020697593688965],[124,-47,72,6.231013298034668],[124,-47,73,6.25203800201416],[124,-47,74,6.2597455978393555],[124,-47,75,6.262939453125],[124,-47,76,6.263560771942139],[124,-47,77,6.262023448944092],[124,-47,78,6.258963584899902],[124,-47,79,6.252208232879639],[124,-46,64,6.177631855010986],[124,-46,65,6.17827844619751],[124,-46,66,6.171967029571533],[124,-46,67,6.164862155914307],[124,-46,68,6.161971569061279],[124,-46,69,6.167181015014648],[124,-46,70,6.180848598480225],[124,-46,71,6.2020697593688965],[124,-46,72,6.231013298034668],[124,-46,73,6.25203800201416],[124,-46,74,6.2597455978393555],[124,-46,75,6.262939453125],[124,-46,76,6.263560771942139],[124,-46,77,6.262023448944092],[124,-46,78,6.258963584899902],[124,-46,79,6.252208232879639],[124,-45,64,6.177631855010986],[124,-45,65,6.17827844619751],[124,-45,66,6.171967029571533],[124,-45,67,6.164862155914307],[124,-45,68,6.161971569061279],[124,-45,69,6.167181015014648],[124,-45,70,6.180848598480225],[124,-45,71,6.2020697593688965],[124,-45,72,6.231013298034668],[124,-45,73,6.25203800201416],[124,-45,74,6.2597455978393555],[124,-45,75,6.262939453125],[124,-45,76,6.263560771942139],[124,-45,77,6.262023448944092],[124,-45,78,6.258963584899902],[124,-45,79,6.252208232879639],[124,-44,64,6.177631855010986],[124,-44,65,6.17827844619751],[124,-44,66,6.171967029571533],[124,-44,67,6.164862155914307],[124,-44,68,6.161971569061279],[124,-44,69,6.167181015014648],[124,-44,70,6.180848598480225],[124,-44,71,6.2020697593688965],[124,-44,72,6.231013298034668],[124,-44,73,6.25203800201416],[124,-44,74,6.2597455978393555],[124,-44,75,6.262939453125],[124,-44,76,6.263560771942139],[124,-44,77,6.262023448944092],[124,-44,78,6.258963584899902],[124,-44,79,6.252208232879639],[124,-43,64,6.177631855010986],[124,-43,65,6.17827844619751],[124,-43,66,6.171967029571533],[124,-43,67,6.164862155914307],[124,-43,68,6.161971569061279],[124,-43,69,6.167181015014648],[124,-43,70,6.180848598480225],[124,-43,71,6.2020697593688965],[124,-43,72,6.231013298034668],[124,-43,73,6.25203800201416],[124,-43,74,6.2597455978393555],[124,-43,75,6.262939453125],[124,-43,76,6.263560771942139],[124,-43,77,6.262023448944092],[124,-43,78,6.258963584899902],[124,-43,79,6.252208232879639],[124,-42,64,6.177631855010986],[124,-42,65,6.17827844619751],[124,-42,66,6.171967029571533],[124,-42,67,6.164862155914307],[124,-42,68,6.161971569061279],[124,-42,69,6.167181015014648],[124,-42,70,6.180848598480225],[124,-42,71,6.2020697593688965],[124,-42,72,6.231013298034668],[124,-42,73,6.25203800201416],[124,-42,74,6.2597455978393555],[124,-42,75,6.262939453125],[124,-42,76,6.263560771942139],[124,-42,77,6.262023448944092],[124,-42,78,6.258963584899902],[124,-42,79,6.252208232879639],[124,-41,64,6.177631855010986],[124,-41,65,6.17827844619751],[124,-41,66,6.171967029571533],[124,-41,67,6.164862155914307],[124,-41,68,6.161971569061279],[124,-41,69,6.167181015014648],[124,-41,70,6.180848598480225],[124,-41,71,6.2020697593688965],[124,-41,72,6.231013298034668],[124,-41,73,6.25203800201416],[124,-41,74,6.2597455978393555],[124,-41,75,6.262939453125],[124,-41,76,6.263560771942139],[124,-41,77,6.262023448944092],[124,-41,78,6.258963584899902],[124,-41,79,6.252208232879639],[124,-40,64,6.177631855010986],[124,-40,65,6.17827844619751],[124,-40,66,6.171967029571533],[124,-40,67,6.164862155914307],[124,-40,68,6.161971569061279],[124,-40,69,6.167181015014648],[124,-40,70,6.180848598480225],[124,-40,71,6.2020697593688965],[124,-40,72,6.231013298034668],[124,-40,73,6.25203800201416],[124,-40,74,6.2597455978393555],[124,-40,75,6.262939453125],[124,-40,76,6.263560771942139],[124,-40,77,6.262023448944092],[124,-40,78,6.258963584899902],[124,-40,79,6.252208232879639],[124,-39,64,6.177631855010986],[124,-39,65,6.17827844619751],[124,-39,66,6.171967029571533],[124,-39,67,6.164862155914307],[124,-39,68,6.161971569061279],[124,-39,69,6.167181015014648],[124,-39,70,6.180848598480225],[124,-39,71,6.2020697593688965],[124,-39,72,6.231013298034668],[124,-39,73,6.25203800201416],[124,-39,74,6.2597455978393555],[124,-39,75,6.262939453125],[124,-39,76,6.263560771942139],[124,-39,77,6.262023448944092],[124,-39,78,6.258963584899902],[124,-39,79,6.252208232879639],[124,-38,64,6.177631855010986],[124,-38,65,6.17827844619751],[124,-38,66,6.171967029571533],[124,-38,67,6.164862155914307],[124,-38,68,6.161971569061279],[124,-38,69,6.167181015014648],[124,-38,70,6.180848598480225],[124,-38,71,6.2020697593688965],[124,-38,72,6.231013298034668],[124,-38,73,6.25203800201416],[124,-38,74,6.2597455978393555],[124,-38,75,6.262939453125],[124,-38,76,6.263560771942139],[124,-38,77,6.262023448944092],[124,-38,78,6.258963584899902],[124,-38,79,6.252208232879639],[124,-37,64,6.177631855010986],[124,-37,65,6.17827844619751],[124,-37,66,6.171967029571533],[124,-37,67,6.164862155914307],[124,-37,68,6.161971569061279],[124,-37,69,6.167181015014648],[124,-37,70,6.180848598480225],[124,-37,71,6.2020697593688965],[124,-37,72,6.231013298034668],[124,-37,73,6.25203800201416],[124,-37,74,6.2597455978393555],[124,-37,75,6.262939453125],[124,-37,76,6.263560771942139],[124,-37,77,6.262023448944092],[124,-37,78,6.258963584899902],[124,-37,79,6.252208232879639],[124,-36,64,6.177631855010986],[124,-36,65,6.17827844619751],[124,-36,66,6.171967029571533],[124,-36,67,6.164862155914307],[124,-36,68,6.161971569061279],[124,-36,69,6.167181015014648],[124,-36,70,6.180848598480225],[124,-36,71,6.2020697593688965],[124,-36,72,6.231013298034668],[124,-36,73,6.25203800201416],[124,-36,74,6.2597455978393555],[124,-36,75,6.262939453125],[124,-36,76,6.263560771942139],[124,-36,77,6.262023448944092],[124,-36,78,6.258963584899902],[124,-36,79,6.252208232879639],[124,-35,64,6.177631855010986],[124,-35,65,6.17827844619751],[124,-35,66,6.171967029571533],[124,-35,67,6.164862155914307],[124,-35,68,6.161971569061279],[124,-35,69,6.167181015014648],[124,-35,70,6.180848598480225],[124,-35,71,6.2020697593688965],[124,-35,72,6.231013298034668],[124,-35,73,6.25203800201416],[124,-35,74,6.2597455978393555],[124,-35,75,6.262939453125],[124,-35,76,6.263560771942139],[124,-35,77,6.262023448944092],[124,-35,78,6.258963584899902],[124,-35,79,6.252208232879639],[124,-34,64,6.177631855010986],[124,-34,65,6.17827844619751],[124,-34,66,6.171967029571533],[124,-34,67,6.164862155914307],[124,-34,68,6.161971569061279],[124,-34,69,6.167181015014648],[124,-34,70,6.180848598480225],[124,-34,71,6.2020697593688965],[124,-34,72,6.231013298034668],[124,-34,73,6.25203800201416],[124,-34,74,6.2597455978393555],[124,-34,75,6.262939453125],[124,-34,76,6.263560771942139],[124,-34,77,6.262023448944092],[124,-34,78,6.258963584899902],[124,-34,79,6.252208232879639],[124,-33,64,6.177631855010986],[124,-33,65,6.17827844619751],[124,-33,66,6.171967029571533],[124,-33,67,6.164862155914307],[124,-33,68,6.161971569061279],[124,-33,69,6.167181015014648],[124,-33,70,6.180848598480225],[124,-33,71,6.2020697593688965],[124,-33,72,6.231013298034668],[124,-33,73,6.25203800201416],[124,-33,74,6.2597455978393555],[124,-33,75,6.262939453125],[124,-33,76,6.263560771942139],[124,-33,77,6.262023448944092],[124,-33,78,6.258963584899902],[124,-33,79,6.252208232879639],[124,-32,64,6.177631855010986],[124,-32,65,6.17827844619751],[124,-32,66,6.171967029571533],[124,-32,67,6.164862155914307],[124,-32,68,6.161971569061279],[124,-32,69,6.167181015014648],[124,-32,70,6.180848598480225],[124,-32,71,6.2020697593688965],[124,-32,72,6.231013298034668],[124,-32,73,6.25203800201416],[124,-32,74,6.2597455978393555],[124,-32,75,6.262939453125],[124,-32,76,6.263560771942139],[124,-32,77,6.262023448944092],[124,-32,78,6.258963584899902],[124,-32,79,6.252208232879639],[124,-31,64,6.177631855010986],[124,-31,65,6.17827844619751],[124,-31,66,6.171967029571533],[124,-31,67,6.164862155914307],[124,-31,68,6.161971569061279],[124,-31,69,6.167181015014648],[124,-31,70,6.180848598480225],[124,-31,71,6.2020697593688965],[124,-31,72,6.231013298034668],[124,-31,73,6.25203800201416],[124,-31,74,6.2597455978393555],[124,-31,75,6.262939453125],[124,-31,76,6.263560771942139],[124,-31,77,6.262023448944092],[124,-31,78,6.258963584899902],[124,-31,79,6.252208232879639],[124,-30,64,6.177631855010986],[124,-30,65,6.17827844619751],[124,-30,66,6.171967029571533],[124,-30,67,6.164862155914307],[124,-30,68,6.161971569061279],[124,-30,69,6.167181015014648],[124,-30,70,6.180848598480225],[124,-30,71,6.2020697593688965],[124,-30,72,6.231013298034668],[124,-30,73,6.25203800201416],[124,-30,74,6.2597455978393555],[124,-30,75,6.262939453125],[124,-30,76,6.263560771942139],[124,-30,77,6.262023448944092],[124,-30,78,6.258963584899902],[124,-30,79,6.252208232879639],[124,-29,64,6.177631855010986],[124,-29,65,6.17827844619751],[124,-29,66,6.171967029571533],[124,-29,67,6.164862155914307],[124,-29,68,6.161971569061279],[124,-29,69,6.167181015014648],[124,-29,70,6.180848598480225],[124,-29,71,6.2020697593688965],[124,-29,72,6.231013298034668],[124,-29,73,6.25203800201416],[124,-29,74,6.2597455978393555],[124,-29,75,6.262939453125],[124,-29,76,6.263560771942139],[124,-29,77,6.262023448944092],[124,-29,78,6.258963584899902],[124,-29,79,6.252208232879639],[124,-28,64,6.177631855010986],[124,-28,65,6.17827844619751],[124,-28,66,6.171967029571533],[124,-28,67,6.164862155914307],[124,-28,68,6.161971569061279],[124,-28,69,6.167181015014648],[124,-28,70,6.180848598480225],[124,-28,71,6.2020697593688965],[124,-28,72,6.231013298034668],[124,-28,73,6.25203800201416],[124,-28,74,6.2597455978393555],[124,-28,75,6.262939453125],[124,-28,76,6.263560771942139],[124,-28,77,6.262023448944092],[124,-28,78,6.258963584899902],[124,-28,79,6.252208232879639],[124,-27,64,6.177631855010986],[124,-27,65,6.17827844619751],[124,-27,66,6.171967029571533],[124,-27,67,6.164862155914307],[124,-27,68,6.161971569061279],[124,-27,69,6.167181015014648],[124,-27,70,6.180848598480225],[124,-27,71,6.2020697593688965],[124,-27,72,6.231013298034668],[124,-27,73,6.25203800201416],[124,-27,74,6.2597455978393555],[124,-27,75,6.262939453125],[124,-27,76,6.263560771942139],[124,-27,77,6.262023448944092],[124,-27,78,6.258963584899902],[124,-27,79,6.252208232879639],[124,-26,64,6.177631855010986],[124,-26,65,6.17827844619751],[124,-26,66,6.171967029571533],[124,-26,67,6.164862155914307],[124,-26,68,6.161971569061279],[124,-26,69,6.167181015014648],[124,-26,70,6.180848598480225],[124,-26,71,6.2020697593688965],[124,-26,72,6.231013298034668],[124,-26,73,6.25203800201416],[124,-26,74,6.2597455978393555],[124,-26,75,6.262939453125],[124,-26,76,6.263560771942139],[124,-26,77,6.262023448944092],[124,-26,78,6.258963584899902],[124,-26,79,6.252208232879639],[124,-25,64,6.177631855010986],[124,-25,65,6.17827844619751],[124,-25,66,6.171967029571533],[124,-25,67,6.164862155914307],[124,-25,68,6.161971569061279],[124,-25,69,6.167181015014648],[124,-25,70,6.180848598480225],[124,-25,71,6.2020697593688965],[124,-25,72,6.231013298034668],[124,-25,73,6.25203800201416],[124,-25,74,6.2597455978393555],[124,-25,75,6.262939453125],[124,-25,76,6.263560771942139],[124,-25,77,6.262023448944092],[124,-25,78,6.258963584899902],[124,-25,79,6.252208232879639],[124,-24,64,6.177631855010986],[124,-24,65,6.17827844619751],[124,-24,66,6.171967029571533],[124,-24,67,6.164862155914307],[124,-24,68,6.161971569061279],[124,-24,69,6.167181015014648],[124,-24,70,6.180848598480225],[124,-24,71,6.2020697593688965],[124,-24,72,6.231013298034668],[124,-24,73,6.25203800201416],[124,-24,74,6.2597455978393555],[124,-24,75,6.262939453125],[124,-24,76,6.263560771942139],[124,-24,77,6.262023448944092],[124,-24,78,6.258963584899902],[124,-24,79,6.252208232879639],[124,-23,64,6.177631855010986],[124,-23,65,6.17827844619751],[124,-23,66,6.171967029571533],[124,-23,67,6.164862155914307],[124,-23,68,6.161971569061279],[124,-23,69,6.167181015014648],[124,-23,70,6.180848598480225],[124,-23,71,6.2020697593688965],[124,-23,72,6.231013298034668],[124,-23,73,6.25203800201416],[124,-23,74,6.2597455978393555],[124,-23,75,6.262939453125],[124,-23,76,6.263560771942139],[124,-23,77,6.262023448944092],[124,-23,78,6.258963584899902],[124,-23,79,6.252208232879639],[124,-22,64,6.177631855010986],[124,-22,65,6.17827844619751],[124,-22,66,6.171967029571533],[124,-22,67,6.164862155914307],[124,-22,68,6.161971569061279],[124,-22,69,6.167181015014648],[124,-22,70,6.180848598480225],[124,-22,71,6.2020697593688965],[124,-22,72,6.231013298034668],[124,-22,73,6.25203800201416],[124,-22,74,6.2597455978393555],[124,-22,75,6.262939453125],[124,-22,76,6.263560771942139],[124,-22,77,6.262023448944092],[124,-22,78,6.258963584899902],[124,-22,79,6.252208232879639],[124,-21,64,6.177631855010986],[124,-21,65,6.17827844619751],[124,-21,66,6.171967029571533],[124,-21,67,6.164862155914307],[124,-21,68,6.161971569061279],[124,-21,69,6.167181015014648],[124,-21,70,6.180848598480225],[124,-21,71,6.2020697593688965],[124,-21,72,6.231013298034668],[124,-21,73,6.25203800201416],[124,-21,74,6.2597455978393555],[124,-21,75,6.262939453125],[124,-21,76,6.263560771942139],[124,-21,77,6.262023448944092],[124,-21,78,6.258963584899902],[124,-21,79,6.252208232879639],[124,-20,64,6.177631855010986],[124,-20,65,6.17827844619751],[124,-20,66,6.171967029571533],[124,-20,67,6.164862155914307],[124,-20,68,6.161971569061279],[124,-20,69,6.167181015014648],[124,-20,70,6.180848598480225],[124,-20,71,6.2020697593688965],[124,-20,72,6.231013298034668],[124,-20,73,6.25203800201416],[124,-20,74,6.2597455978393555],[124,-20,75,6.262939453125],[124,-20,76,6.263560771942139],[124,-20,77,6.262023448944092],[124,-20,78,6.258963584899902],[124,-20,79,6.252208232879639],[124,-19,64,6.177631855010986],[124,-19,65,6.17827844619751],[124,-19,66,6.171967029571533],[124,-19,67,6.164862155914307],[124,-19,68,6.161971569061279],[124,-19,69,6.167181015014648],[124,-19,70,6.180848598480225],[124,-19,71,6.2020697593688965],[124,-19,72,6.231013298034668],[124,-19,73,6.25203800201416],[124,-19,74,6.2597455978393555],[124,-19,75,6.262939453125],[124,-19,76,6.263560771942139],[124,-19,77,6.262023448944092],[124,-19,78,6.258963584899902],[124,-19,79,6.252208232879639],[124,-18,64,6.177631855010986],[124,-18,65,6.17827844619751],[124,-18,66,6.171967029571533],[124,-18,67,6.164862155914307],[124,-18,68,6.161971569061279],[124,-18,69,6.167181015014648],[124,-18,70,6.180848598480225],[124,-18,71,6.2020697593688965],[124,-18,72,6.231013298034668],[124,-18,73,6.25203800201416],[124,-18,74,6.2597455978393555],[124,-18,75,6.262939453125],[124,-18,76,6.263560771942139],[124,-18,77,6.262023448944092],[124,-18,78,6.258963584899902],[124,-18,79,6.252208232879639],[124,-17,64,6.177631855010986],[124,-17,65,6.17827844619751],[124,-17,66,6.171967029571533],[124,-17,67,6.164862155914307],[124,-17,68,6.161971569061279],[124,-17,69,6.167181015014648],[124,-17,70,6.180848598480225],[124,-17,71,6.2020697593688965],[124,-17,72,6.231013298034668],[124,-17,73,6.25203800201416],[124,-17,74,6.2597455978393555],[124,-17,75,6.262939453125],[124,-17,76,6.263560771942139],[124,-17,77,6.262023448944092],[124,-17,78,6.258963584899902],[124,-17,79,6.252208232879639],[124,-16,64,6.177631855010986],[124,-16,65,6.17827844619751],[124,-16,66,6.171967029571533],[124,-16,67,6.164862155914307],[124,-16,68,6.161971569061279],[124,-16,69,6.167181015014648],[124,-16,70,6.180848598480225],[124,-16,71,6.2020697593688965],[124,-16,72,6.231013298034668],[124,-16,73,6.25203800201416],[124,-16,74,6.2597455978393555],[124,-16,75,6.262939453125],[124,-16,76,6.263560771942139],[124,-16,77,6.262023448944092],[124,-16,78,6.258963584899902],[124,-16,79,6.252208232879639],[124,-15,64,6.177631855010986],[124,-15,65,6.17827844619751],[124,-15,66,6.171967029571533],[124,-15,67,6.164862155914307],[124,-15,68,6.161971569061279],[124,-15,69,6.167181015014648],[124,-15,70,6.180848598480225],[124,-15,71,6.2020697593688965],[124,-15,72,6.231013298034668],[124,-15,73,6.25203800201416],[124,-15,74,6.2597455978393555],[124,-15,75,6.262939453125],[124,-15,76,6.263560771942139],[124,-15,77,6.262023448944092],[124,-15,78,6.258963584899902],[124,-15,79,6.252208232879639],[124,-14,64,6.177631855010986],[124,-14,65,6.17827844619751],[124,-14,66,6.171967029571533],[124,-14,67,6.164862155914307],[124,-14,68,6.161971569061279],[124,-14,69,6.167181015014648],[124,-14,70,6.180848598480225],[124,-14,71,6.2020697593688965],[124,-14,72,6.231013298034668],[124,-14,73,6.25203800201416],[124,-14,74,6.2597455978393555],[124,-14,75,6.262939453125],[124,-14,76,6.263560771942139],[124,-14,77,6.262023448944092],[124,-14,78,6.258963584899902],[124,-14,79,6.252208232879639],[124,-13,64,6.177631855010986],[124,-13,65,6.17827844619751],[124,-13,66,6.171967029571533],[124,-13,67,6.164862155914307],[124,-13,68,6.161971569061279],[124,-13,69,6.167181015014648],[124,-13,70,6.180848598480225],[124,-13,71,6.2020697593688965],[124,-13,72,6.231013298034668],[124,-13,73,6.25203800201416],[124,-13,74,6.2597455978393555],[124,-13,75,6.262939453125],[124,-13,76,6.263560771942139],[124,-13,77,6.262023448944092],[124,-13,78,6.258963584899902],[124,-13,79,6.252208232879639],[124,-12,64,6.177631855010986],[124,-12,65,6.17827844619751],[124,-12,66,6.171967029571533],[124,-12,67,6.164862155914307],[124,-12,68,6.161971569061279],[124,-12,69,6.167181015014648],[124,-12,70,6.180848598480225],[124,-12,71,6.2020697593688965],[124,-12,72,6.231013298034668],[124,-12,73,6.25203800201416],[124,-12,74,6.2597455978393555],[124,-12,75,6.262939453125],[124,-12,76,6.263560771942139],[124,-12,77,6.262023448944092],[124,-12,78,6.258963584899902],[124,-12,79,6.252208232879639],[124,-11,64,6.177631855010986],[124,-11,65,6.17827844619751],[124,-11,66,6.171967029571533],[124,-11,67,6.164862155914307],[124,-11,68,6.161971569061279],[124,-11,69,6.167181015014648],[124,-11,70,6.180848598480225],[124,-11,71,6.2020697593688965],[124,-11,72,6.231013298034668],[124,-11,73,6.25203800201416],[124,-11,74,6.2597455978393555],[124,-11,75,6.262939453125],[124,-11,76,6.263560771942139],[124,-11,77,6.262023448944092],[124,-11,78,6.258963584899902],[124,-11,79,6.252208232879639],[124,-10,64,6.177631855010986],[124,-10,65,6.17827844619751],[124,-10,66,6.171967029571533],[124,-10,67,6.164862155914307],[124,-10,68,6.161971569061279],[124,-10,69,6.167181015014648],[124,-10,70,6.180848598480225],[124,-10,71,6.2020697593688965],[124,-10,72,6.231013298034668],[124,-10,73,6.25203800201416],[124,-10,74,6.2597455978393555],[124,-10,75,6.262939453125],[124,-10,76,6.263560771942139],[124,-10,77,6.262023448944092],[124,-10,78,6.258963584899902],[124,-10,79,6.252208232879639],[124,-9,64,6.177631855010986],[124,-9,65,6.17827844619751],[124,-9,66,6.171967029571533],[124,-9,67,6.164862155914307],[124,-9,68,6.161971569061279],[124,-9,69,6.167181015014648],[124,-9,70,6.180848598480225],[124,-9,71,6.2020697593688965],[124,-9,72,6.231013298034668],[124,-9,73,6.25203800201416],[124,-9,74,6.2597455978393555],[124,-9,75,6.262939453125],[124,-9,76,6.263560771942139],[124,-9,77,6.262023448944092],[124,-9,78,6.258963584899902],[124,-9,79,6.252208232879639],[124,-8,64,6.177631855010986],[124,-8,65,6.17827844619751],[124,-8,66,6.171967029571533],[124,-8,67,6.164862155914307],[124,-8,68,6.161971569061279],[124,-8,69,6.167181015014648],[124,-8,70,6.180848598480225],[124,-8,71,6.2020697593688965],[124,-8,72,6.231013298034668],[124,-8,73,6.25203800201416],[124,-8,74,6.2597455978393555],[124,-8,75,6.262939453125],[124,-8,76,6.263560771942139],[124,-8,77,6.262023448944092],[124,-8,78,6.258963584899902],[124,-8,79,6.252208232879639],[124,-7,64,6.177631855010986],[124,-7,65,6.17827844619751],[124,-7,66,6.171967029571533],[124,-7,67,6.164862155914307],[124,-7,68,6.161971569061279],[124,-7,69,6.167181015014648],[124,-7,70,6.180848598480225],[124,-7,71,6.2020697593688965],[124,-7,72,6.231013298034668],[124,-7,73,6.25203800201416],[124,-7,74,6.2597455978393555],[124,-7,75,6.262939453125],[124,-7,76,6.263560771942139],[124,-7,77,6.262023448944092],[124,-7,78,6.258963584899902],[124,-7,79,6.252208232879639],[124,-6,64,6.177631855010986],[124,-6,65,6.17827844619751],[124,-6,66,6.171967029571533],[124,-6,67,6.164862155914307],[124,-6,68,6.161971569061279],[124,-6,69,6.167181015014648],[124,-6,70,6.180848598480225],[124,-6,71,6.2020697593688965],[124,-6,72,6.231013298034668],[124,-6,73,6.25203800201416],[124,-6,74,6.2597455978393555],[124,-6,75,6.262939453125],[124,-6,76,6.263560771942139],[124,-6,77,6.262023448944092],[124,-6,78,6.258963584899902],[124,-6,79,6.252208232879639],[124,-5,64,6.177631855010986],[124,-5,65,6.17827844619751],[124,-5,66,6.171967029571533],[124,-5,67,6.164862155914307],[124,-5,68,6.161971569061279],[124,-5,69,6.167181015014648],[124,-5,70,6.180848598480225],[124,-5,71,6.2020697593688965],[124,-5,72,6.231013298034668],[124,-5,73,6.25203800201416],[124,-5,74,6.2597455978393555],[124,-5,75,6.262939453125],[124,-5,76,6.263560771942139],[124,-5,77,6.262023448944092],[124,-5,78,6.258963584899902],[124,-5,79,6.252208232879639],[124,-4,64,6.177631855010986],[124,-4,65,6.17827844619751],[124,-4,66,6.171967029571533],[124,-4,67,6.164862155914307],[124,-4,68,6.161971569061279],[124,-4,69,6.167181015014648],[124,-4,70,6.180848598480225],[124,-4,71,6.2020697593688965],[124,-4,72,6.231013298034668],[124,-4,73,6.25203800201416],[124,-4,74,6.2597455978393555],[124,-4,75,6.262939453125],[124,-4,76,6.263560771942139],[124,-4,77,6.262023448944092],[124,-4,78,6.258963584899902],[124,-4,79,6.252208232879639],[124,-3,64,6.177631855010986],[124,-3,65,6.17827844619751],[124,-3,66,6.171967029571533],[124,-3,67,6.164862155914307],[124,-3,68,6.161971569061279],[124,-3,69,6.167181015014648],[124,-3,70,6.180848598480225],[124,-3,71,6.2020697593688965],[124,-3,72,6.231013298034668],[124,-3,73,6.25203800201416],[124,-3,74,6.2597455978393555],[124,-3,75,6.262939453125],[124,-3,76,6.263560771942139],[124,-3,77,6.262023448944092],[124,-3,78,6.258963584899902],[124,-3,79,6.252208232879639],[124,-2,64,6.177631855010986],[124,-2,65,6.17827844619751],[124,-2,66,6.171967029571533],[124,-2,67,6.164862155914307],[124,-2,68,6.161971569061279],[124,-2,69,6.167181015014648],[124,-2,70,6.180848598480225],[124,-2,71,6.2020697593688965],[124,-2,72,6.231013298034668],[124,-2,73,6.25203800201416],[124,-2,74,6.2597455978393555],[124,-2,75,6.262939453125],[124,-2,76,6.263560771942139],[124,-2,77,6.262023448944092],[124,-2,78,6.258963584899902],[124,-2,79,6.252208232879639],[124,-1,64,6.177631855010986],[124,-1,65,6.17827844619751],[124,-1,66,6.171967029571533],[124,-1,67,6.164862155914307],[124,-1,68,6.161971569061279],[124,-1,69,6.167181015014648],[124,-1,70,6.180848598480225],[124,-1,71,6.2020697593688965],[124,-1,72,6.231013298034668],[124,-1,73,6.25203800201416],[124,-1,74,6.2597455978393555],[124,-1,75,6.262939453125],[124,-1,76,6.263560771942139],[124,-1,77,6.262023448944092],[124,-1,78,6.258963584899902],[124,-1,79,6.252208232879639],[124,0,64,6.177631855010986],[124,0,65,6.17827844619751],[124,0,66,6.171967029571533],[124,0,67,6.164862155914307],[124,0,68,6.161971569061279],[124,0,69,6.167181015014648],[124,0,70,6.180848598480225],[124,0,71,6.2020697593688965],[124,0,72,6.231013298034668],[124,0,73,6.25203800201416],[124,0,74,6.2597455978393555],[124,0,75,6.262939453125],[124,0,76,6.263560771942139],[124,0,77,6.262023448944092],[124,0,78,6.258963584899902],[124,0,79,6.252208232879639],[124,1,64,6.177631855010986],[124,1,65,6.17827844619751],[124,1,66,6.171967029571533],[124,1,67,6.164862155914307],[124,1,68,6.161971569061279],[124,1,69,6.167181015014648],[124,1,70,6.180848598480225],[124,1,71,6.2020697593688965],[124,1,72,6.231013298034668],[124,1,73,6.25203800201416],[124,1,74,6.2597455978393555],[124,1,75,6.262939453125],[124,1,76,6.263560771942139],[124,1,77,6.262023448944092],[124,1,78,6.258963584899902],[124,1,79,6.252208232879639],[124,2,64,6.177631855010986],[124,2,65,6.17827844619751],[124,2,66,6.171967029571533],[124,2,67,6.164862155914307],[124,2,68,6.161971569061279],[124,2,69,6.167181015014648],[124,2,70,6.180848598480225],[124,2,71,6.2020697593688965],[124,2,72,6.231013298034668],[124,2,73,6.25203800201416],[124,2,74,6.2597455978393555],[124,2,75,6.262939453125],[124,2,76,6.263560771942139],[124,2,77,6.262023448944092],[124,2,78,6.258963584899902],[124,2,79,6.252208232879639],[124,3,64,6.177631855010986],[124,3,65,6.17827844619751],[124,3,66,6.171967029571533],[124,3,67,6.164862155914307],[124,3,68,6.161971569061279],[124,3,69,6.167181015014648],[124,3,70,6.180848598480225],[124,3,71,6.2020697593688965],[124,3,72,6.231013298034668],[124,3,73,6.25203800201416],[124,3,74,6.2597455978393555],[124,3,75,6.262939453125],[124,3,76,6.263560771942139],[124,3,77,6.262023448944092],[124,3,78,6.258963584899902],[124,3,79,6.252208232879639],[124,4,64,6.177631855010986],[124,4,65,6.17827844619751],[124,4,66,6.171967029571533],[124,4,67,6.164862155914307],[124,4,68,6.161971569061279],[124,4,69,6.167181015014648],[124,4,70,6.180848598480225],[124,4,71,6.2020697593688965],[124,4,72,6.231013298034668],[124,4,73,6.25203800201416],[124,4,74,6.2597455978393555],[124,4,75,6.262939453125],[124,4,76,6.263560771942139],[124,4,77,6.262023448944092],[124,4,78,6.258963584899902],[124,4,79,6.252208232879639],[124,5,64,6.177631855010986],[124,5,65,6.17827844619751],[124,5,66,6.171967029571533],[124,5,67,6.164862155914307],[124,5,68,6.161971569061279],[124,5,69,6.167181015014648],[124,5,70,6.180848598480225],[124,5,71,6.2020697593688965],[124,5,72,6.231013298034668],[124,5,73,6.25203800201416],[124,5,74,6.2597455978393555],[124,5,75,6.262939453125],[124,5,76,6.263560771942139],[124,5,77,6.262023448944092],[124,5,78,6.258963584899902],[124,5,79,6.252208232879639],[124,6,64,6.177631855010986],[124,6,65,6.17827844619751],[124,6,66,6.171967029571533],[124,6,67,6.164862155914307],[124,6,68,6.161971569061279],[124,6,69,6.167181015014648],[124,6,70,6.180848598480225],[124,6,71,6.2020697593688965],[124,6,72,6.231013298034668],[124,6,73,6.25203800201416],[124,6,74,6.2597455978393555],[124,6,75,6.262939453125],[124,6,76,6.263560771942139],[124,6,77,6.262023448944092],[124,6,78,6.258963584899902],[124,6,79,6.252208232879639],[124,7,64,6.177631855010986],[124,7,65,6.17827844619751],[124,7,66,6.171967029571533],[124,7,67,6.164862155914307],[124,7,68,6.161971569061279],[124,7,69,6.167181015014648],[124,7,70,6.180848598480225],[124,7,71,6.2020697593688965],[124,7,72,6.231013298034668],[124,7,73,6.25203800201416],[124,7,74,6.2597455978393555],[124,7,75,6.262939453125],[124,7,76,6.263560771942139],[124,7,77,6.262023448944092],[124,7,78,6.258963584899902],[124,7,79,6.252208232879639],[124,8,64,6.177631855010986],[124,8,65,6.17827844619751],[124,8,66,6.171967029571533],[124,8,67,6.164862155914307],[124,8,68,6.161971569061279],[124,8,69,6.167181015014648],[124,8,70,6.180848598480225],[124,8,71,6.2020697593688965],[124,8,72,6.231013298034668],[124,8,73,6.25203800201416],[124,8,74,6.2597455978393555],[124,8,75,6.262939453125],[124,8,76,6.263560771942139],[124,8,77,6.262023448944092],[124,8,78,6.258963584899902],[124,8,79,6.252208232879639],[124,9,64,6.177631855010986],[124,9,65,6.17827844619751],[124,9,66,6.171967029571533],[124,9,67,6.164862155914307],[124,9,68,6.161971569061279],[124,9,69,6.167181015014648],[124,9,70,6.180848598480225],[124,9,71,6.2020697593688965],[124,9,72,6.231013298034668],[124,9,73,6.25203800201416],[124,9,74,6.2597455978393555],[124,9,75,6.262939453125],[124,9,76,6.263560771942139],[124,9,77,6.262023448944092],[124,9,78,6.258963584899902],[124,9,79,6.252208232879639],[124,10,64,6.177631855010986],[124,10,65,6.17827844619751],[124,10,66,6.171967029571533],[124,10,67,6.164862155914307],[124,10,68,6.161971569061279],[124,10,69,6.167181015014648],[124,10,70,6.180848598480225],[124,10,71,6.2020697593688965],[124,10,72,6.231013298034668],[124,10,73,6.25203800201416],[124,10,74,6.2597455978393555],[124,10,75,6.262939453125],[124,10,76,6.263560771942139],[124,10,77,6.262023448944092],[124,10,78,6.258963584899902],[124,10,79,6.252208232879639],[124,11,64,6.177631855010986],[124,11,65,6.17827844619751],[124,11,66,6.171967029571533],[124,11,67,6.164862155914307],[124,11,68,6.161971569061279],[124,11,69,6.167181015014648],[124,11,70,6.180848598480225],[124,11,71,6.2020697593688965],[124,11,72,6.231013298034668],[124,11,73,6.25203800201416],[124,11,74,6.2597455978393555],[124,11,75,6.262939453125],[124,11,76,6.263560771942139],[124,11,77,6.262023448944092],[124,11,78,6.258963584899902],[124,11,79,6.252208232879639],[124,12,64,6.177631855010986],[124,12,65,6.17827844619751],[124,12,66,6.171967029571533],[124,12,67,6.164862155914307],[124,12,68,6.161971569061279],[124,12,69,6.167181015014648],[124,12,70,6.180848598480225],[124,12,71,6.2020697593688965],[124,12,72,6.231013298034668],[124,12,73,6.25203800201416],[124,12,74,6.2597455978393555],[124,12,75,6.262939453125],[124,12,76,6.263560771942139],[124,12,77,6.262023448944092],[124,12,78,6.258963584899902],[124,12,79,6.252208232879639],[124,13,64,6.177631855010986],[124,13,65,6.17827844619751],[124,13,66,6.171967029571533],[124,13,67,6.164862155914307],[124,13,68,6.161971569061279],[124,13,69,6.167181015014648],[124,13,70,6.180848598480225],[124,13,71,6.2020697593688965],[124,13,72,6.231013298034668],[124,13,73,6.25203800201416],[124,13,74,6.2597455978393555],[124,13,75,6.262939453125],[124,13,76,6.263560771942139],[124,13,77,6.262023448944092],[124,13,78,6.258963584899902],[124,13,79,6.252208232879639],[124,14,64,6.177631855010986],[124,14,65,6.17827844619751],[124,14,66,6.171967029571533],[124,14,67,6.164862155914307],[124,14,68,6.161971569061279],[124,14,69,6.167181015014648],[124,14,70,6.180848598480225],[124,14,71,6.2020697593688965],[124,14,72,6.231013298034668],[124,14,73,6.25203800201416],[124,14,74,6.2597455978393555],[124,14,75,6.262939453125],[124,14,76,6.263560771942139],[124,14,77,6.262023448944092],[124,14,78,6.258963584899902],[124,14,79,6.252208232879639],[124,15,64,6.177631855010986],[124,15,65,6.17827844619751],[124,15,66,6.171967029571533],[124,15,67,6.164862155914307],[124,15,68,6.161971569061279],[124,15,69,6.167181015014648],[124,15,70,6.180848598480225],[124,15,71,6.2020697593688965],[124,15,72,6.231013298034668],[124,15,73,6.25203800201416],[124,15,74,6.2597455978393555],[124,15,75,6.262939453125],[124,15,76,6.263560771942139],[124,15,77,6.262023448944092],[124,15,78,6.258963584899902],[124,15,79,6.252208232879639],[124,16,64,6.177631855010986],[124,16,65,6.17827844619751],[124,16,66,6.171967029571533],[124,16,67,6.164862155914307],[124,16,68,6.161971569061279],[124,16,69,6.167181015014648],[124,16,70,6.180848598480225],[124,16,71,6.2020697593688965],[124,16,72,6.231013298034668],[124,16,73,6.25203800201416],[124,16,74,6.2597455978393555],[124,16,75,6.262939453125],[124,16,76,6.263560771942139],[124,16,77,6.262023448944092],[124,16,78,6.258963584899902],[124,16,79,6.252208232879639],[124,17,64,6.177631855010986],[124,17,65,6.17827844619751],[124,17,66,6.171967029571533],[124,17,67,6.164862155914307],[124,17,68,6.161971569061279],[124,17,69,6.167181015014648],[124,17,70,6.180848598480225],[124,17,71,6.2020697593688965],[124,17,72,6.231013298034668],[124,17,73,6.25203800201416],[124,17,74,6.2597455978393555],[124,17,75,6.262939453125],[124,17,76,6.263560771942139],[124,17,77,6.262023448944092],[124,17,78,6.258963584899902],[124,17,79,6.252208232879639],[124,18,64,6.177631855010986],[124,18,65,6.17827844619751],[124,18,66,6.171967029571533],[124,18,67,6.164862155914307],[124,18,68,6.161971569061279],[124,18,69,6.167181015014648],[124,18,70,6.180848598480225],[124,18,71,6.2020697593688965],[124,18,72,6.231013298034668],[124,18,73,6.25203800201416],[124,18,74,6.2597455978393555],[124,18,75,6.262939453125],[124,18,76,6.263560771942139],[124,18,77,6.262023448944092],[124,18,78,6.258963584899902],[124,18,79,6.252208232879639],[124,19,64,6.177631855010986],[124,19,65,6.17827844619751],[124,19,66,6.171967029571533],[124,19,67,6.164862155914307],[124,19,68,6.161971569061279],[124,19,69,6.167181015014648],[124,19,70,6.180848598480225],[124,19,71,6.2020697593688965],[124,19,72,6.231013298034668],[124,19,73,6.25203800201416],[124,19,74,6.2597455978393555],[124,19,75,6.262939453125],[124,19,76,6.263560771942139],[124,19,77,6.262023448944092],[124,19,78,6.258963584899902],[124,19,79,6.252208232879639],[124,20,64,6.177631855010986],[124,20,65,6.17827844619751],[124,20,66,6.171967029571533],[124,20,67,6.164862155914307],[124,20,68,6.161971569061279],[124,20,69,6.167181015014648],[124,20,70,6.180848598480225],[124,20,71,6.2020697593688965],[124,20,72,6.231013298034668],[124,20,73,6.25203800201416],[124,20,74,6.2597455978393555],[124,20,75,6.262939453125],[124,20,76,6.263560771942139],[124,20,77,6.262023448944092],[124,20,78,6.258963584899902],[124,20,79,6.252208232879639],[124,21,64,6.177631855010986],[124,21,65,6.17827844619751],[124,21,66,6.171967029571533],[124,21,67,6.164862155914307],[124,21,68,6.161971569061279],[124,21,69,6.167181015014648],[124,21,70,6.180848598480225],[124,21,71,6.2020697593688965],[124,21,72,6.231013298034668],[124,21,73,6.25203800201416],[124,21,74,6.2597455978393555],[124,21,75,6.262939453125],[124,21,76,6.263560771942139],[124,21,77,6.262023448944092],[124,21,78,6.258963584899902],[124,21,79,6.252208232879639],[124,22,64,6.177631855010986],[124,22,65,6.17827844619751],[124,22,66,6.171967029571533],[124,22,67,6.164862155914307],[124,22,68,6.161971569061279],[124,22,69,6.167181015014648],[124,22,70,6.180848598480225],[124,22,71,6.2020697593688965],[124,22,72,6.231013298034668],[124,22,73,6.25203800201416],[124,22,74,6.2597455978393555],[124,22,75,6.262939453125],[124,22,76,6.263560771942139],[124,22,77,6.262023448944092],[124,22,78,6.258963584899902],[124,22,79,6.252208232879639],[124,23,64,6.177631855010986],[124,23,65,6.17827844619751],[124,23,66,6.171967029571533],[124,23,67,6.164862155914307],[124,23,68,6.161971569061279],[124,23,69,6.167181015014648],[124,23,70,6.180848598480225],[124,23,71,6.2020697593688965],[124,23,72,6.231013298034668],[124,23,73,6.25203800201416],[124,23,74,6.2597455978393555],[124,23,75,6.262939453125],[124,23,76,6.263560771942139],[124,23,77,6.262023448944092],[124,23,78,6.258963584899902],[124,23,79,6.252208232879639],[124,24,64,6.177631855010986],[124,24,65,6.17827844619751],[124,24,66,6.171967029571533],[124,24,67,6.164862155914307],[124,24,68,6.161971569061279],[124,24,69,6.167181015014648],[124,24,70,6.180848598480225],[124,24,71,6.2020697593688965],[124,24,72,6.231013298034668],[124,24,73,6.25203800201416],[124,24,74,6.2597455978393555],[124,24,75,6.262939453125],[124,24,76,6.263560771942139],[124,24,77,6.262023448944092],[124,24,78,6.258963584899902],[124,24,79,6.252208232879639],[124,25,64,6.177631855010986],[124,25,65,6.17827844619751],[124,25,66,6.171967029571533],[124,25,67,6.164862155914307],[124,25,68,6.161971569061279],[124,25,69,6.167181015014648],[124,25,70,6.180848598480225],[124,25,71,6.2020697593688965],[124,25,72,6.231013298034668],[124,25,73,6.25203800201416],[124,25,74,6.2597455978393555],[124,25,75,6.262939453125],[124,25,76,6.263560771942139],[124,25,77,6.262023448944092],[124,25,78,6.258963584899902],[124,25,79,6.252208232879639],[124,26,64,6.177631855010986],[124,26,65,6.17827844619751],[124,26,66,6.171967029571533],[124,26,67,6.164862155914307],[124,26,68,6.161971569061279],[124,26,69,6.167181015014648],[124,26,70,6.180848598480225],[124,26,71,6.2020697593688965],[124,26,72,6.231013298034668],[124,26,73,6.25203800201416],[124,26,74,6.2597455978393555],[124,26,75,6.262939453125],[124,26,76,6.263560771942139],[124,26,77,6.262023448944092],[124,26,78,6.258963584899902],[124,26,79,6.252208232879639],[124,27,64,6.177631855010986],[124,27,65,6.17827844619751],[124,27,66,6.171967029571533],[124,27,67,6.164862155914307],[124,27,68,6.161971569061279],[124,27,69,6.167181015014648],[124,27,70,6.180848598480225],[124,27,71,6.2020697593688965],[124,27,72,6.231013298034668],[124,27,73,6.25203800201416],[124,27,74,6.2597455978393555],[124,27,75,6.262939453125],[124,27,76,6.263560771942139],[124,27,77,6.262023448944092],[124,27,78,6.258963584899902],[124,27,79,6.252208232879639],[124,28,64,6.177631855010986],[124,28,65,6.17827844619751],[124,28,66,6.171967029571533],[124,28,67,6.164862155914307],[124,28,68,6.161971569061279],[124,28,69,6.167181015014648],[124,28,70,6.180848598480225],[124,28,71,6.2020697593688965],[124,28,72,6.231013298034668],[124,28,73,6.25203800201416],[124,28,74,6.2597455978393555],[124,28,75,6.262939453125],[124,28,76,6.263560771942139],[124,28,77,6.262023448944092],[124,28,78,6.258963584899902],[124,28,79,6.252208232879639],[124,29,64,6.177631855010986],[124,29,65,6.17827844619751],[124,29,66,6.171967029571533],[124,29,67,6.164862155914307],[124,29,68,6.161971569061279],[124,29,69,6.167181015014648],[124,29,70,6.180848598480225],[124,29,71,6.2020697593688965],[124,29,72,6.231013298034668],[124,29,73,6.25203800201416],[124,29,74,6.2597455978393555],[124,29,75,6.262939453125],[124,29,76,6.263560771942139],[124,29,77,6.262023448944092],[124,29,78,6.258963584899902],[124,29,79,6.252208232879639],[124,30,64,6.177631855010986],[124,30,65,6.17827844619751],[124,30,66,6.171967029571533],[124,30,67,6.164862155914307],[124,30,68,6.161971569061279],[124,30,69,6.167181015014648],[124,30,70,6.180848598480225],[124,30,71,6.2020697593688965],[124,30,72,6.231013298034668],[124,30,73,6.25203800201416],[124,30,74,6.2597455978393555],[124,30,75,6.262939453125],[124,30,76,6.263560771942139],[124,30,77,6.262023448944092],[124,30,78,6.258963584899902],[124,30,79,6.252208232879639],[124,31,64,6.177631855010986],[124,31,65,6.17827844619751],[124,31,66,6.171967029571533],[124,31,67,6.164862155914307],[124,31,68,6.161971569061279],[124,31,69,6.167181015014648],[124,31,70,6.180848598480225],[124,31,71,6.2020697593688965],[124,31,72,6.231013298034668],[124,31,73,6.25203800201416],[124,31,74,6.2597455978393555],[124,31,75,6.262939453125],[124,31,76,6.263560771942139],[124,31,77,6.262023448944092],[124,31,78,6.258963584899902],[124,31,79,6.252208232879639],[124,32,64,6.177631855010986],[124,32,65,6.17827844619751],[124,32,66,6.171967029571533],[124,32,67,6.164862155914307],[124,32,68,6.161971569061279],[124,32,69,6.167181015014648],[124,32,70,6.180848598480225],[124,32,71,6.2020697593688965],[124,32,72,6.231013298034668],[124,32,73,6.25203800201416],[124,32,74,6.2597455978393555],[124,32,75,6.262939453125],[124,32,76,6.263560771942139],[124,32,77,6.262023448944092],[124,32,78,6.258963584899902],[124,32,79,6.252208232879639],[124,33,64,6.177631855010986],[124,33,65,6.17827844619751],[124,33,66,6.171967029571533],[124,33,67,6.164862155914307],[124,33,68,6.161971569061279],[124,33,69,6.167181015014648],[124,33,70,6.180848598480225],[124,33,71,6.2020697593688965],[124,33,72,6.231013298034668],[124,33,73,6.25203800201416],[124,33,74,6.2597455978393555],[124,33,75,6.262939453125],[124,33,76,6.263560771942139],[124,33,77,6.262023448944092],[124,33,78,6.258963584899902],[124,33,79,6.252208232879639],[124,34,64,6.177631855010986],[124,34,65,6.17827844619751],[124,34,66,6.171967029571533],[124,34,67,6.164862155914307],[124,34,68,6.161971569061279],[124,34,69,6.167181015014648],[124,34,70,6.180848598480225],[124,34,71,6.2020697593688965],[124,34,72,6.231013298034668],[124,34,73,6.25203800201416],[124,34,74,6.2597455978393555],[124,34,75,6.262939453125],[124,34,76,6.263560771942139],[124,34,77,6.262023448944092],[124,34,78,6.258963584899902],[124,34,79,6.252208232879639],[124,35,64,6.177631855010986],[124,35,65,6.17827844619751],[124,35,66,6.171967029571533],[124,35,67,6.164862155914307],[124,35,68,6.161971569061279],[124,35,69,6.167181015014648],[124,35,70,6.180848598480225],[124,35,71,6.2020697593688965],[124,35,72,6.231013298034668],[124,35,73,6.25203800201416],[124,35,74,6.2597455978393555],[124,35,75,6.262939453125],[124,35,76,6.263560771942139],[124,35,77,6.262023448944092],[124,35,78,6.258963584899902],[124,35,79,6.252208232879639],[124,36,64,6.177631855010986],[124,36,65,6.17827844619751],[124,36,66,6.171967029571533],[124,36,67,6.164862155914307],[124,36,68,6.161971569061279],[124,36,69,6.167181015014648],[124,36,70,6.180848598480225],[124,36,71,6.2020697593688965],[124,36,72,6.231013298034668],[124,36,73,6.25203800201416],[124,36,74,6.2597455978393555],[124,36,75,6.262939453125],[124,36,76,6.263560771942139],[124,36,77,6.262023448944092],[124,36,78,6.258963584899902],[124,36,79,6.252208232879639],[124,37,64,6.177631855010986],[124,37,65,6.17827844619751],[124,37,66,6.171967029571533],[124,37,67,6.164862155914307],[124,37,68,6.161971569061279],[124,37,69,6.167181015014648],[124,37,70,6.180848598480225],[124,37,71,6.2020697593688965],[124,37,72,6.231013298034668],[124,37,73,6.25203800201416],[124,37,74,6.2597455978393555],[124,37,75,6.262939453125],[124,37,76,6.263560771942139],[124,37,77,6.262023448944092],[124,37,78,6.258963584899902],[124,37,79,6.252208232879639],[124,38,64,6.177631855010986],[124,38,65,6.17827844619751],[124,38,66,6.171967029571533],[124,38,67,6.164862155914307],[124,38,68,6.161971569061279],[124,38,69,6.167181015014648],[124,38,70,6.180848598480225],[124,38,71,6.2020697593688965],[124,38,72,6.231013298034668],[124,38,73,6.25203800201416],[124,38,74,6.2597455978393555],[124,38,75,6.262939453125],[124,38,76,6.263560771942139],[124,38,77,6.262023448944092],[124,38,78,6.258963584899902],[124,38,79,6.252208232879639],[124,39,64,6.177631855010986],[124,39,65,6.17827844619751],[124,39,66,6.171967029571533],[124,39,67,6.164862155914307],[124,39,68,6.161971569061279],[124,39,69,6.167181015014648],[124,39,70,6.180848598480225],[124,39,71,6.2020697593688965],[124,39,72,6.231013298034668],[124,39,73,6.25203800201416],[124,39,74,6.2597455978393555],[124,39,75,6.262939453125],[124,39,76,6.263560771942139],[124,39,77,6.262023448944092],[124,39,78,6.258963584899902],[124,39,79,6.252208232879639],[124,40,64,6.177631855010986],[124,40,65,6.17827844619751],[124,40,66,6.171967029571533],[124,40,67,6.164862155914307],[124,40,68,6.161971569061279],[124,40,69,6.167181015014648],[124,40,70,6.180848598480225],[124,40,71,6.2020697593688965],[124,40,72,6.231013298034668],[124,40,73,6.25203800201416],[124,40,74,6.2597455978393555],[124,40,75,6.262939453125],[124,40,76,6.263560771942139],[124,40,77,6.262023448944092],[124,40,78,6.258963584899902],[124,40,79,6.252208232879639],[124,41,64,6.177631855010986],[124,41,65,6.17827844619751],[124,41,66,6.171967029571533],[124,41,67,6.164862155914307],[124,41,68,6.161971569061279],[124,41,69,6.167181015014648],[124,41,70,6.180848598480225],[124,41,71,6.2020697593688965],[124,41,72,6.231013298034668],[124,41,73,6.25203800201416],[124,41,74,6.2597455978393555],[124,41,75,6.262939453125],[124,41,76,6.263560771942139],[124,41,77,6.262023448944092],[124,41,78,6.258963584899902],[124,41,79,6.252208232879639],[124,42,64,6.177631855010986],[124,42,65,6.17827844619751],[124,42,66,6.171967029571533],[124,42,67,6.164862155914307],[124,42,68,6.161971569061279],[124,42,69,6.167181015014648],[124,42,70,6.180848598480225],[124,42,71,6.2020697593688965],[124,42,72,6.231013298034668],[124,42,73,6.25203800201416],[124,42,74,6.2597455978393555],[124,42,75,6.262939453125],[124,42,76,6.263560771942139],[124,42,77,6.262023448944092],[124,42,78,6.258963584899902],[124,42,79,6.252208232879639],[124,43,64,6.177631855010986],[124,43,65,6.17827844619751],[124,43,66,6.171967029571533],[124,43,67,6.164862155914307],[124,43,68,6.161971569061279],[124,43,69,6.167181015014648],[124,43,70,6.180848598480225],[124,43,71,6.2020697593688965],[124,43,72,6.231013298034668],[124,43,73,6.25203800201416],[124,43,74,6.2597455978393555],[124,43,75,6.262939453125],[124,43,76,6.263560771942139],[124,43,77,6.262023448944092],[124,43,78,6.258963584899902],[124,43,79,6.252208232879639],[124,44,64,6.177631855010986],[124,44,65,6.17827844619751],[124,44,66,6.171967029571533],[124,44,67,6.164862155914307],[124,44,68,6.161971569061279],[124,44,69,6.167181015014648],[124,44,70,6.180848598480225],[124,44,71,6.2020697593688965],[124,44,72,6.231013298034668],[124,44,73,6.25203800201416],[124,44,74,6.2597455978393555],[124,44,75,6.262939453125],[124,44,76,6.263560771942139],[124,44,77,6.262023448944092],[124,44,78,6.258963584899902],[124,44,79,6.252208232879639],[124,45,64,6.177631855010986],[124,45,65,6.17827844619751],[124,45,66,6.171967029571533],[124,45,67,6.164862155914307],[124,45,68,6.161971569061279],[124,45,69,6.167181015014648],[124,45,70,6.180848598480225],[124,45,71,6.2020697593688965],[124,45,72,6.231013298034668],[124,45,73,6.25203800201416],[124,45,74,6.2597455978393555],[124,45,75,6.262939453125],[124,45,76,6.263560771942139],[124,45,77,6.262023448944092],[124,45,78,6.258963584899902],[124,45,79,6.252208232879639],[124,46,64,6.177631855010986],[124,46,65,6.17827844619751],[124,46,66,6.171967029571533],[124,46,67,6.164862155914307],[124,46,68,6.161971569061279],[124,46,69,6.167181015014648],[124,46,70,6.180848598480225],[124,46,71,6.2020697593688965],[124,46,72,6.231013298034668],[124,46,73,6.25203800201416],[124,46,74,6.2597455978393555],[124,46,75,6.262939453125],[124,46,76,6.263560771942139],[124,46,77,6.262023448944092],[124,46,78,6.258963584899902],[124,46,79,6.252208232879639],[124,47,64,6.177631855010986],[124,47,65,6.17827844619751],[124,47,66,6.171967029571533],[124,47,67,6.164862155914307],[124,47,68,6.161971569061279],[124,47,69,6.167181015014648],[124,47,70,6.180848598480225],[124,47,71,6.2020697593688965],[124,47,72,6.231013298034668],[124,47,73,6.25203800201416],[124,47,74,6.2597455978393555],[124,47,75,6.262939453125],[124,47,76,6.263560771942139],[124,47,77,6.262023448944092],[124,47,78,6.258963584899902],[124,47,79,6.252208232879639],[124,48,64,6.177631855010986],[124,48,65,6.17827844619751],[124,48,66,6.171967029571533],[124,48,67,6.164862155914307],[124,48,68,6.161971569061279],[124,48,69,6.167181015014648],[124,48,70,6.180848598480225],[124,48,71,6.2020697593688965],[124,48,72,6.231013298034668],[124,48,73,6.25203800201416],[124,48,74,6.2597455978393555],[124,48,75,6.262939453125],[124,48,76,6.263560771942139],[124,48,77,6.262023448944092],[124,48,78,6.258963584899902],[124,48,79,6.252208232879639],[124,49,64,6.177631855010986],[124,49,65,6.17827844619751],[124,49,66,6.171967029571533],[124,49,67,6.164862155914307],[124,49,68,6.161971569061279],[124,49,69,6.167181015014648],[124,49,70,6.180848598480225],[124,49,71,6.2020697593688965],[124,49,72,6.231013298034668],[124,49,73,6.25203800201416],[124,49,74,6.2597455978393555],[124,49,75,6.262939453125],[124,49,76,6.263560771942139],[124,49,77,6.262023448944092],[124,49,78,6.258963584899902],[124,49,79,6.252208232879639],[124,50,64,6.177631855010986],[124,50,65,6.17827844619751],[124,50,66,6.171967029571533],[124,50,67,6.164862155914307],[124,50,68,6.161971569061279],[124,50,69,6.167181015014648],[124,50,70,6.180848598480225],[124,50,71,6.2020697593688965],[124,50,72,6.231013298034668],[124,50,73,6.25203800201416],[124,50,74,6.2597455978393555],[124,50,75,6.262939453125],[124,50,76,6.263560771942139],[124,50,77,6.262023448944092],[124,50,78,6.258963584899902],[124,50,79,6.252208232879639],[124,51,64,6.177631855010986],[124,51,65,6.17827844619751],[124,51,66,6.171967029571533],[124,51,67,6.164862155914307],[124,51,68,6.161971569061279],[124,51,69,6.167181015014648],[124,51,70,6.180848598480225],[124,51,71,6.2020697593688965],[124,51,72,6.231013298034668],[124,51,73,6.25203800201416],[124,51,74,6.2597455978393555],[124,51,75,6.262939453125],[124,51,76,6.263560771942139],[124,51,77,6.262023448944092],[124,51,78,6.258963584899902],[124,51,79,6.252208232879639],[124,52,64,6.177631855010986],[124,52,65,6.17827844619751],[124,52,66,6.171967029571533],[124,52,67,6.164862155914307],[124,52,68,6.161971569061279],[124,52,69,6.167181015014648],[124,52,70,6.180848598480225],[124,52,71,6.2020697593688965],[124,52,72,6.231013298034668],[124,52,73,6.25203800201416],[124,52,74,6.2597455978393555],[124,52,75,6.262939453125],[124,52,76,6.263560771942139],[124,52,77,6.262023448944092],[124,52,78,6.258963584899902],[124,52,79,6.252208232879639],[124,53,64,6.177631855010986],[124,53,65,6.17827844619751],[124,53,66,6.171967029571533],[124,53,67,6.164862155914307],[124,53,68,6.161971569061279],[124,53,69,6.167181015014648],[124,53,70,6.180848598480225],[124,53,71,6.2020697593688965],[124,53,72,6.231013298034668],[124,53,73,6.25203800201416],[124,53,74,6.2597455978393555],[124,53,75,6.262939453125],[124,53,76,6.263560771942139],[124,53,77,6.262023448944092],[124,53,78,6.258963584899902],[124,53,79,6.252208232879639],[124,54,64,6.177631855010986],[124,54,65,6.17827844619751],[124,54,66,6.171967029571533],[124,54,67,6.164862155914307],[124,54,68,6.161971569061279],[124,54,69,6.167181015014648],[124,54,70,6.180848598480225],[124,54,71,6.2020697593688965],[124,54,72,6.231013298034668],[124,54,73,6.25203800201416],[124,54,74,6.2597455978393555],[124,54,75,6.262939453125],[124,54,76,6.263560771942139],[124,54,77,6.262023448944092],[124,54,78,6.258963584899902],[124,54,79,6.252208232879639],[124,55,64,6.177631855010986],[124,55,65,6.17827844619751],[124,55,66,6.171967029571533],[124,55,67,6.164862155914307],[124,55,68,6.161971569061279],[124,55,69,6.167181015014648],[124,55,70,6.180848598480225],[124,55,71,6.2020697593688965],[124,55,72,6.231013298034668],[124,55,73,6.25203800201416],[124,55,74,6.2597455978393555],[124,55,75,6.262939453125],[124,55,76,6.263560771942139],[124,55,77,6.262023448944092],[124,55,78,6.258963584899902],[124,55,79,6.252208232879639],[124,56,64,6.177631855010986],[124,56,65,6.17827844619751],[124,56,66,6.171967029571533],[124,56,67,6.164862155914307],[124,56,68,6.161971569061279],[124,56,69,6.167181015014648],[124,56,70,6.180848598480225],[124,56,71,6.2020697593688965],[124,56,72,6.231013298034668],[124,56,73,6.25203800201416],[124,56,74,6.2597455978393555],[124,56,75,6.262939453125],[124,56,76,6.263560771942139],[124,56,77,6.262023448944092],[124,56,78,6.258963584899902],[124,56,79,6.252208232879639],[124,57,64,6.177631855010986],[124,57,65,6.17827844619751],[124,57,66,6.171967029571533],[124,57,67,6.164862155914307],[124,57,68,6.161971569061279],[124,57,69,6.167181015014648],[124,57,70,6.180848598480225],[124,57,71,6.2020697593688965],[124,57,72,6.231013298034668],[124,57,73,6.25203800201416],[124,57,74,6.2597455978393555],[124,57,75,6.262939453125],[124,57,76,6.263560771942139],[124,57,77,6.262023448944092],[124,57,78,6.258963584899902],[124,57,79,6.252208232879639],[124,58,64,6.177631855010986],[124,58,65,6.17827844619751],[124,58,66,6.171967029571533],[124,58,67,6.164862155914307],[124,58,68,6.161971569061279],[124,58,69,6.167181015014648],[124,58,70,6.180848598480225],[124,58,71,6.2020697593688965],[124,58,72,6.231013298034668],[124,58,73,6.25203800201416],[124,58,74,6.2597455978393555],[124,58,75,6.262939453125],[124,58,76,6.263560771942139],[124,58,77,6.262023448944092],[124,58,78,6.258963584899902],[124,58,79,6.252208232879639],[124,59,64,6.177631855010986],[124,59,65,6.17827844619751],[124,59,66,6.171967029571533],[124,59,67,6.164862155914307],[124,59,68,6.161971569061279],[124,59,69,6.167181015014648],[124,59,70,6.180848598480225],[124,59,71,6.2020697593688965],[124,59,72,6.231013298034668],[124,59,73,6.25203800201416],[124,59,74,6.2597455978393555],[124,59,75,6.262939453125],[124,59,76,6.263560771942139],[124,59,77,6.262023448944092],[124,59,78,6.258963584899902],[124,59,79,6.252208232879639],[124,60,64,6.177631855010986],[124,60,65,6.17827844619751],[124,60,66,6.171967029571533],[124,60,67,6.164862155914307],[124,60,68,6.161971569061279],[124,60,69,6.167181015014648],[124,60,70,6.180848598480225],[124,60,71,6.2020697593688965],[124,60,72,6.231013298034668],[124,60,73,6.25203800201416],[124,60,74,6.2597455978393555],[124,60,75,6.262939453125],[124,60,76,6.263560771942139],[124,60,77,6.262023448944092],[124,60,78,6.258963584899902],[124,60,79,6.252208232879639],[124,61,64,6.177631855010986],[124,61,65,6.17827844619751],[124,61,66,6.171967029571533],[124,61,67,6.164862155914307],[124,61,68,6.161971569061279],[124,61,69,6.167181015014648],[124,61,70,6.180848598480225],[124,61,71,6.2020697593688965],[124,61,72,6.231013298034668],[124,61,73,6.25203800201416],[124,61,74,6.2597455978393555],[124,61,75,6.262939453125],[124,61,76,6.263560771942139],[124,61,77,6.262023448944092],[124,61,78,6.258963584899902],[124,61,79,6.252208232879639],[124,62,64,6.177631855010986],[124,62,65,6.17827844619751],[124,62,66,6.171967029571533],[124,62,67,6.164862155914307],[124,62,68,6.161971569061279],[124,62,69,6.167181015014648],[124,62,70,6.180848598480225],[124,62,71,6.2020697593688965],[124,62,72,6.231013298034668],[124,62,73,6.25203800201416],[124,62,74,6.2597455978393555],[124,62,75,6.262939453125],[124,62,76,6.263560771942139],[124,62,77,6.262023448944092],[124,62,78,6.258963584899902],[124,62,79,6.252208232879639],[124,63,64,6.177631855010986],[124,63,65,6.17827844619751],[124,63,66,6.171967029571533],[124,63,67,6.164862155914307],[124,63,68,6.161971569061279],[124,63,69,6.167181015014648],[124,63,70,6.180848598480225],[124,63,71,6.2020697593688965],[124,63,72,6.231013298034668],[124,63,73,6.25203800201416],[124,63,74,6.2597455978393555],[124,63,75,6.262939453125],[124,63,76,6.263560771942139],[124,63,77,6.262023448944092],[124,63,78,6.258963584899902],[124,63,79,6.252208232879639],[124,64,64,6.177631855010986],[124,64,65,6.17827844619751],[124,64,66,6.171967029571533],[124,64,67,6.164862155914307],[124,64,68,6.161971569061279],[124,64,69,6.167181015014648],[124,64,70,6.180848598480225],[124,64,71,6.2020697593688965],[124,64,72,6.231013298034668],[124,64,73,6.25203800201416],[124,64,74,6.2597455978393555],[124,64,75,6.262939453125],[124,64,76,6.263560771942139],[124,64,77,6.262023448944092],[124,64,78,6.258963584899902],[124,64,79,6.252208232879639],[124,65,64,6.177631855010986],[124,65,65,6.17827844619751],[124,65,66,6.171967029571533],[124,65,67,6.164862155914307],[124,65,68,6.161971569061279],[124,65,69,6.167181015014648],[124,65,70,6.180848598480225],[124,65,71,6.2020697593688965],[124,65,72,6.231013298034668],[124,65,73,6.25203800201416],[124,65,74,6.2597455978393555],[124,65,75,6.262939453125],[124,65,76,6.263560771942139],[124,65,77,6.262023448944092],[124,65,78,6.258963584899902],[124,65,79,6.252208232879639],[124,66,64,6.177631855010986],[124,66,65,6.17827844619751],[124,66,66,6.171967029571533],[124,66,67,6.164862155914307],[124,66,68,6.161971569061279],[124,66,69,6.167181015014648],[124,66,70,6.180848598480225],[124,66,71,6.2020697593688965],[124,66,72,6.231013298034668],[124,66,73,6.25203800201416],[124,66,74,6.2597455978393555],[124,66,75,6.262939453125],[124,66,76,6.263560771942139],[124,66,77,6.262023448944092],[124,66,78,6.258963584899902],[124,66,79,6.252208232879639],[124,67,64,6.177631855010986],[124,67,65,6.17827844619751],[124,67,66,6.171967029571533],[124,67,67,6.164862155914307],[124,67,68,6.161971569061279],[124,67,69,6.167181015014648],[124,67,70,6.180848598480225],[124,67,71,6.2020697593688965],[124,67,72,6.231013298034668],[124,67,73,6.25203800201416],[124,67,74,6.2597455978393555],[124,67,75,6.262939453125],[124,67,76,6.263560771942139],[124,67,77,6.262023448944092],[124,67,78,6.258963584899902],[124,67,79,6.252208232879639],[124,68,64,6.177631855010986],[124,68,65,6.17827844619751],[124,68,66,6.171967029571533],[124,68,67,6.164862155914307],[124,68,68,6.161971569061279],[124,68,69,6.167181015014648],[124,68,70,6.180848598480225],[124,68,71,6.2020697593688965],[124,68,72,6.231013298034668],[124,68,73,6.25203800201416],[124,68,74,6.2597455978393555],[124,68,75,6.262939453125],[124,68,76,6.263560771942139],[124,68,77,6.262023448944092],[124,68,78,6.258963584899902],[124,68,79,6.252208232879639],[124,69,64,6.177631855010986],[124,69,65,6.17827844619751],[124,69,66,6.171967029571533],[124,69,67,6.164862155914307],[124,69,68,6.161971569061279],[124,69,69,6.167181015014648],[124,69,70,6.180848598480225],[124,69,71,6.2020697593688965],[124,69,72,6.231013298034668],[124,69,73,6.25203800201416],[124,69,74,6.2597455978393555],[124,69,75,6.262939453125],[124,69,76,6.263560771942139],[124,69,77,6.262023448944092],[124,69,78,6.258963584899902],[124,69,79,6.252208232879639],[124,70,64,6.177631855010986],[124,70,65,6.17827844619751],[124,70,66,6.171967029571533],[124,70,67,6.164862155914307],[124,70,68,6.161971569061279],[124,70,69,6.167181015014648],[124,70,70,6.180848598480225],[124,70,71,6.2020697593688965],[124,70,72,6.231013298034668],[124,70,73,6.25203800201416],[124,70,74,6.2597455978393555],[124,70,75,6.262939453125],[124,70,76,6.263560771942139],[124,70,77,6.262023448944092],[124,70,78,6.258963584899902],[124,70,79,6.252208232879639],[124,71,64,6.177631855010986],[124,71,65,6.17827844619751],[124,71,66,6.171967029571533],[124,71,67,6.164862155914307],[124,71,68,6.161971569061279],[124,71,69,6.167181015014648],[124,71,70,6.180848598480225],[124,71,71,6.2020697593688965],[124,71,72,6.231013298034668],[124,71,73,6.25203800201416],[124,71,74,6.2597455978393555],[124,71,75,6.262939453125],[124,71,76,6.263560771942139],[124,71,77,6.262023448944092],[124,71,78,6.258963584899902],[124,71,79,6.252208232879639],[124,72,64,6.177631855010986],[124,72,65,6.17827844619751],[124,72,66,6.171967029571533],[124,72,67,6.164862155914307],[124,72,68,6.161971569061279],[124,72,69,6.167181015014648],[124,72,70,6.180848598480225],[124,72,71,6.2020697593688965],[124,72,72,6.231013298034668],[124,72,73,6.25203800201416],[124,72,74,6.2597455978393555],[124,72,75,6.262939453125],[124,72,76,6.263560771942139],[124,72,77,6.262023448944092],[124,72,78,6.258963584899902],[124,72,79,6.252208232879639],[124,73,64,6.177631855010986],[124,73,65,6.17827844619751],[124,73,66,6.171967029571533],[124,73,67,6.164862155914307],[124,73,68,6.161971569061279],[124,73,69,6.167181015014648],[124,73,70,6.180848598480225],[124,73,71,6.2020697593688965],[124,73,72,6.231013298034668],[124,73,73,6.25203800201416],[124,73,74,6.2597455978393555],[124,73,75,6.262939453125],[124,73,76,6.263560771942139],[124,73,77,6.262023448944092],[124,73,78,6.258963584899902],[124,73,79,6.252208232879639],[124,74,64,6.177631855010986],[124,74,65,6.17827844619751],[124,74,66,6.171967029571533],[124,74,67,6.164862155914307],[124,74,68,6.161971569061279],[124,74,69,6.167181015014648],[124,74,70,6.180848598480225],[124,74,71,6.2020697593688965],[124,74,72,6.231013298034668],[124,74,73,6.25203800201416],[124,74,74,6.2597455978393555],[124,74,75,6.262939453125],[124,74,76,6.263560771942139],[124,74,77,6.262023448944092],[124,74,78,6.258963584899902],[124,74,79,6.252208232879639],[124,75,64,6.177631855010986],[124,75,65,6.17827844619751],[124,75,66,6.171967029571533],[124,75,67,6.164862155914307],[124,75,68,6.161971569061279],[124,75,69,6.167181015014648],[124,75,70,6.180848598480225],[124,75,71,6.2020697593688965],[124,75,72,6.231013298034668],[124,75,73,6.25203800201416],[124,75,74,6.2597455978393555],[124,75,75,6.262939453125],[124,75,76,6.263560771942139],[124,75,77,6.262023448944092],[124,75,78,6.258963584899902],[124,75,79,6.252208232879639],[124,76,64,6.177631855010986],[124,76,65,6.17827844619751],[124,76,66,6.171967029571533],[124,76,67,6.164862155914307],[124,76,68,6.161971569061279],[124,76,69,6.167181015014648],[124,76,70,6.180848598480225],[124,76,71,6.2020697593688965],[124,76,72,6.231013298034668],[124,76,73,6.25203800201416],[124,76,74,6.2597455978393555],[124,76,75,6.262939453125],[124,76,76,6.263560771942139],[124,76,77,6.262023448944092],[124,76,78,6.258963584899902],[124,76,79,6.252208232879639],[124,77,64,6.177631855010986],[124,77,65,6.17827844619751],[124,77,66,6.171967029571533],[124,77,67,6.164862155914307],[124,77,68,6.161971569061279],[124,77,69,6.167181015014648],[124,77,70,6.180848598480225],[124,77,71,6.2020697593688965],[124,77,72,6.231013298034668],[124,77,73,6.25203800201416],[124,77,74,6.2597455978393555],[124,77,75,6.262939453125],[124,77,76,6.263560771942139],[124,77,77,6.262023448944092],[124,77,78,6.258963584899902],[124,77,79,6.252208232879639],[124,78,64,6.177631855010986],[124,78,65,6.17827844619751],[124,78,66,6.171967029571533],[124,78,67,6.164862155914307],[124,78,68,6.161971569061279],[124,78,69,6.167181015014648],[124,78,70,6.180848598480225],[124,78,71,6.2020697593688965],[124,78,72,6.231013298034668],[124,78,73,6.25203800201416],[124,78,74,6.2597455978393555],[124,78,75,6.262939453125],[124,78,76,6.263560771942139],[124,78,77,6.262023448944092],[124,78,78,6.258963584899902],[124,78,79,6.252208232879639],[124,79,64,6.177631855010986],[124,79,65,6.17827844619751],[124,79,66,6.171967029571533],[124,79,67,6.164862155914307],[124,79,68,6.161971569061279],[124,79,69,6.167181015014648],[124,79,70,6.180848598480225],[124,79,71,6.2020697593688965],[124,79,72,6.231013298034668],[124,79,73,6.25203800201416],[124,79,74,6.2597455978393555],[124,79,75,6.262939453125],[124,79,76,6.263560771942139],[124,79,77,6.262023448944092],[124,79,78,6.258963584899902],[124,79,79,6.252208232879639],[124,80,64,6.177631855010986],[124,80,65,6.17827844619751],[124,80,66,6.171967029571533],[124,80,67,6.164862155914307],[124,80,68,6.161971569061279],[124,80,69,6.167181015014648],[124,80,70,6.180848598480225],[124,80,71,6.2020697593688965],[124,80,72,6.231013298034668],[124,80,73,6.25203800201416],[124,80,74,6.2597455978393555],[124,80,75,6.262939453125],[124,80,76,6.263560771942139],[124,80,77,6.262023448944092],[124,80,78,6.258963584899902],[124,80,79,6.252208232879639],[124,81,64,6.177631855010986],[124,81,65,6.17827844619751],[124,81,66,6.171967029571533],[124,81,67,6.164862155914307],[124,81,68,6.161971569061279],[124,81,69,6.167181015014648],[124,81,70,6.180848598480225],[124,81,71,6.2020697593688965],[124,81,72,6.231013298034668],[124,81,73,6.25203800201416],[124,81,74,6.2597455978393555],[124,81,75,6.262939453125],[124,81,76,6.263560771942139],[124,81,77,6.262023448944092],[124,81,78,6.258963584899902],[124,81,79,6.252208232879639],[124,82,64,6.177631855010986],[124,82,65,6.17827844619751],[124,82,66,6.171967029571533],[124,82,67,6.164862155914307],[124,82,68,6.161971569061279],[124,82,69,6.167181015014648],[124,82,70,6.180848598480225],[124,82,71,6.2020697593688965],[124,82,72,6.231013298034668],[124,82,73,6.25203800201416],[124,82,74,6.2597455978393555],[124,82,75,6.262939453125],[124,82,76,6.263560771942139],[124,82,77,6.262023448944092],[124,82,78,6.258963584899902],[124,82,79,6.252208232879639],[124,83,64,6.177631855010986],[124,83,65,6.17827844619751],[124,83,66,6.171967029571533],[124,83,67,6.164862155914307],[124,83,68,6.161971569061279],[124,83,69,6.167181015014648],[124,83,70,6.180848598480225],[124,83,71,6.2020697593688965],[124,83,72,6.231013298034668],[124,83,73,6.25203800201416],[124,83,74,6.2597455978393555],[124,83,75,6.262939453125],[124,83,76,6.263560771942139],[124,83,77,6.262023448944092],[124,83,78,6.258963584899902],[124,83,79,6.252208232879639],[124,84,64,6.177631855010986],[124,84,65,6.17827844619751],[124,84,66,6.171967029571533],[124,84,67,6.164862155914307],[124,84,68,6.161971569061279],[124,84,69,6.167181015014648],[124,84,70,6.180848598480225],[124,84,71,6.2020697593688965],[124,84,72,6.231013298034668],[124,84,73,6.25203800201416],[124,84,74,6.2597455978393555],[124,84,75,6.262939453125],[124,84,76,6.263560771942139],[124,84,77,6.262023448944092],[124,84,78,6.258963584899902],[124,84,79,6.252208232879639],[124,85,64,6.177631855010986],[124,85,65,6.17827844619751],[124,85,66,6.171967029571533],[124,85,67,6.164862155914307],[124,85,68,6.161971569061279],[124,85,69,6.167181015014648],[124,85,70,6.180848598480225],[124,85,71,6.2020697593688965],[124,85,72,6.231013298034668],[124,85,73,6.25203800201416],[124,85,74,6.2597455978393555],[124,85,75,6.262939453125],[124,85,76,6.263560771942139],[124,85,77,6.262023448944092],[124,85,78,6.258963584899902],[124,85,79,6.252208232879639],[124,86,64,6.177631855010986],[124,86,65,6.17827844619751],[124,86,66,6.171967029571533],[124,86,67,6.164862155914307],[124,86,68,6.161971569061279],[124,86,69,6.167181015014648],[124,86,70,6.180848598480225],[124,86,71,6.2020697593688965],[124,86,72,6.231013298034668],[124,86,73,6.25203800201416],[124,86,74,6.2597455978393555],[124,86,75,6.262939453125],[124,86,76,6.263560771942139],[124,86,77,6.262023448944092],[124,86,78,6.258963584899902],[124,86,79,6.252208232879639],[124,87,64,6.177631855010986],[124,87,65,6.17827844619751],[124,87,66,6.171967029571533],[124,87,67,6.164862155914307],[124,87,68,6.161971569061279],[124,87,69,6.167181015014648],[124,87,70,6.180848598480225],[124,87,71,6.2020697593688965],[124,87,72,6.231013298034668],[124,87,73,6.25203800201416],[124,87,74,6.2597455978393555],[124,87,75,6.262939453125],[124,87,76,6.263560771942139],[124,87,77,6.262023448944092],[124,87,78,6.258963584899902],[124,87,79,6.252208232879639],[124,88,64,6.177631855010986],[124,88,65,6.17827844619751],[124,88,66,6.171967029571533],[124,88,67,6.164862155914307],[124,88,68,6.161971569061279],[124,88,69,6.167181015014648],[124,88,70,6.180848598480225],[124,88,71,6.2020697593688965],[124,88,72,6.231013298034668],[124,88,73,6.25203800201416],[124,88,74,6.2597455978393555],[124,88,75,6.262939453125],[124,88,76,6.263560771942139],[124,88,77,6.262023448944092],[124,88,78,6.258963584899902],[124,88,79,6.252208232879639],[124,89,64,6.177631855010986],[124,89,65,6.17827844619751],[124,89,66,6.171967029571533],[124,89,67,6.164862155914307],[124,89,68,6.161971569061279],[124,89,69,6.167181015014648],[124,89,70,6.180848598480225],[124,89,71,6.2020697593688965],[124,89,72,6.231013298034668],[124,89,73,6.25203800201416],[124,89,74,6.2597455978393555],[124,89,75,6.262939453125],[124,89,76,6.263560771942139],[124,89,77,6.262023448944092],[124,89,78,6.258963584899902],[124,89,79,6.252208232879639],[124,90,64,6.177631855010986],[124,90,65,6.17827844619751],[124,90,66,6.171967029571533],[124,90,67,6.164862155914307],[124,90,68,6.161971569061279],[124,90,69,6.167181015014648],[124,90,70,6.180848598480225],[124,90,71,6.2020697593688965],[124,90,72,6.231013298034668],[124,90,73,6.25203800201416],[124,90,74,6.2597455978393555],[124,90,75,6.262939453125],[124,90,76,6.263560771942139],[124,90,77,6.262023448944092],[124,90,78,6.258963584899902],[124,90,79,6.252208232879639],[124,91,64,6.177631855010986],[124,91,65,6.17827844619751],[124,91,66,6.171967029571533],[124,91,67,6.164862155914307],[124,91,68,6.161971569061279],[124,91,69,6.167181015014648],[124,91,70,6.180848598480225],[124,91,71,6.2020697593688965],[124,91,72,6.231013298034668],[124,91,73,6.25203800201416],[124,91,74,6.2597455978393555],[124,91,75,6.262939453125],[124,91,76,6.263560771942139],[124,91,77,6.262023448944092],[124,91,78,6.258963584899902],[124,91,79,6.252208232879639],[124,92,64,6.177631855010986],[124,92,65,6.17827844619751],[124,92,66,6.171967029571533],[124,92,67,6.164862155914307],[124,92,68,6.161971569061279],[124,92,69,6.167181015014648],[124,92,70,6.180848598480225],[124,92,71,6.2020697593688965],[124,92,72,6.231013298034668],[124,92,73,6.25203800201416],[124,92,74,6.2597455978393555],[124,92,75,6.262939453125],[124,92,76,6.263560771942139],[124,92,77,6.262023448944092],[124,92,78,6.258963584899902],[124,92,79,6.252208232879639],[124,93,64,6.177631855010986],[124,93,65,6.17827844619751],[124,93,66,6.171967029571533],[124,93,67,6.164862155914307],[124,93,68,6.161971569061279],[124,93,69,6.167181015014648],[124,93,70,6.180848598480225],[124,93,71,6.2020697593688965],[124,93,72,6.231013298034668],[124,93,73,6.25203800201416],[124,93,74,6.2597455978393555],[124,93,75,6.262939453125],[124,93,76,6.263560771942139],[124,93,77,6.262023448944092],[124,93,78,6.258963584899902],[124,93,79,6.252208232879639],[124,94,64,6.177631855010986],[124,94,65,6.17827844619751],[124,94,66,6.171967029571533],[124,94,67,6.164862155914307],[124,94,68,6.161971569061279],[124,94,69,6.167181015014648],[124,94,70,6.180848598480225],[124,94,71,6.2020697593688965],[124,94,72,6.231013298034668],[124,94,73,6.25203800201416],[124,94,74,6.2597455978393555],[124,94,75,6.262939453125],[124,94,76,6.263560771942139],[124,94,77,6.262023448944092],[124,94,78,6.258963584899902],[124,94,79,6.252208232879639],[124,95,64,6.177631855010986],[124,95,65,6.17827844619751],[124,95,66,6.171967029571533],[124,95,67,6.164862155914307],[124,95,68,6.161971569061279],[124,95,69,6.167181015014648],[124,95,70,6.180848598480225],[124,95,71,6.2020697593688965],[124,95,72,6.231013298034668],[124,95,73,6.25203800201416],[124,95,74,6.2597455978393555],[124,95,75,6.262939453125],[124,95,76,6.263560771942139],[124,95,77,6.262023448944092],[124,95,78,6.258963584899902],[124,95,79,6.252208232879639],[124,96,64,6.177631855010986],[124,96,65,6.17827844619751],[124,96,66,6.171967029571533],[124,96,67,6.164862155914307],[124,96,68,6.161971569061279],[124,96,69,6.167181015014648],[124,96,70,6.180848598480225],[124,96,71,6.2020697593688965],[124,96,72,6.231013298034668],[124,96,73,6.25203800201416],[124,96,74,6.2597455978393555],[124,96,75,6.262939453125],[124,96,76,6.263560771942139],[124,96,77,6.262023448944092],[124,96,78,6.258963584899902],[124,96,79,6.252208232879639],[124,97,64,6.177631855010986],[124,97,65,6.17827844619751],[124,97,66,6.171967029571533],[124,97,67,6.164862155914307],[124,97,68,6.161971569061279],[124,97,69,6.167181015014648],[124,97,70,6.180848598480225],[124,97,71,6.2020697593688965],[124,97,72,6.231013298034668],[124,97,73,6.25203800201416],[124,97,74,6.2597455978393555],[124,97,75,6.262939453125],[124,97,76,6.263560771942139],[124,97,77,6.262023448944092],[124,97,78,6.258963584899902],[124,97,79,6.252208232879639],[124,98,64,6.177631855010986],[124,98,65,6.17827844619751],[124,98,66,6.171967029571533],[124,98,67,6.164862155914307],[124,98,68,6.161971569061279],[124,98,69,6.167181015014648],[124,98,70,6.180848598480225],[124,98,71,6.2020697593688965],[124,98,72,6.231013298034668],[124,98,73,6.25203800201416],[124,98,74,6.2597455978393555],[124,98,75,6.262939453125],[124,98,76,6.263560771942139],[124,98,77,6.262023448944092],[124,98,78,6.258963584899902],[124,98,79,6.252208232879639],[124,99,64,6.177631855010986],[124,99,65,6.17827844619751],[124,99,66,6.171967029571533],[124,99,67,6.164862155914307],[124,99,68,6.161971569061279],[124,99,69,6.167181015014648],[124,99,70,6.180848598480225],[124,99,71,6.2020697593688965],[124,99,72,6.231013298034668],[124,99,73,6.25203800201416],[124,99,74,6.2597455978393555],[124,99,75,6.262939453125],[124,99,76,6.263560771942139],[124,99,77,6.262023448944092],[124,99,78,6.258963584899902],[124,99,79,6.252208232879639],[124,100,64,6.177631855010986],[124,100,65,6.17827844619751],[124,100,66,6.171967029571533],[124,100,67,6.164862155914307],[124,100,68,6.161971569061279],[124,100,69,6.167181015014648],[124,100,70,6.180848598480225],[124,100,71,6.2020697593688965],[124,100,72,6.231013298034668],[124,100,73,6.25203800201416],[124,100,74,6.2597455978393555],[124,100,75,6.262939453125],[124,100,76,6.263560771942139],[124,100,77,6.262023448944092],[124,100,78,6.258963584899902],[124,100,79,6.252208232879639],[124,101,64,6.177631855010986],[124,101,65,6.17827844619751],[124,101,66,6.171967029571533],[124,101,67,6.164862155914307],[124,101,68,6.161971569061279],[124,101,69,6.167181015014648],[124,101,70,6.180848598480225],[124,101,71,6.2020697593688965],[124,101,72,6.231013298034668],[124,101,73,6.25203800201416],[124,101,74,6.2597455978393555],[124,101,75,6.262939453125],[124,101,76,6.263560771942139],[124,101,77,6.262023448944092],[124,101,78,6.258963584899902],[124,101,79,6.252208232879639],[124,102,64,6.177631855010986],[124,102,65,6.17827844619751],[124,102,66,6.171967029571533],[124,102,67,6.164862155914307],[124,102,68,6.161971569061279],[124,102,69,6.167181015014648],[124,102,70,6.180848598480225],[124,102,71,6.2020697593688965],[124,102,72,6.231013298034668],[124,102,73,6.25203800201416],[124,102,74,6.2597455978393555],[124,102,75,6.262939453125],[124,102,76,6.263560771942139],[124,102,77,6.262023448944092],[124,102,78,6.258963584899902],[124,102,79,6.252208232879639],[124,103,64,6.177631855010986],[124,103,65,6.17827844619751],[124,103,66,6.171967029571533],[124,103,67,6.164862155914307],[124,103,68,6.161971569061279],[124,103,69,6.167181015014648],[124,103,70,6.180848598480225],[124,103,71,6.2020697593688965],[124,103,72,6.231013298034668],[124,103,73,6.25203800201416],[124,103,74,6.2597455978393555],[124,103,75,6.262939453125],[124,103,76,6.263560771942139],[124,103,77,6.262023448944092],[124,103,78,6.258963584899902],[124,103,79,6.252208232879639],[124,104,64,6.177631855010986],[124,104,65,6.17827844619751],[124,104,66,6.171967029571533],[124,104,67,6.164862155914307],[124,104,68,6.161971569061279],[124,104,69,6.167181015014648],[124,104,70,6.180848598480225],[124,104,71,6.2020697593688965],[124,104,72,6.231013298034668],[124,104,73,6.25203800201416],[124,104,74,6.2597455978393555],[124,104,75,6.262939453125],[124,104,76,6.263560771942139],[124,104,77,6.262023448944092],[124,104,78,6.258963584899902],[124,104,79,6.252208232879639],[124,105,64,6.177631855010986],[124,105,65,6.17827844619751],[124,105,66,6.171967029571533],[124,105,67,6.164862155914307],[124,105,68,6.161971569061279],[124,105,69,6.167181015014648],[124,105,70,6.180848598480225],[124,105,71,6.2020697593688965],[124,105,72,6.231013298034668],[124,105,73,6.25203800201416],[124,105,74,6.2597455978393555],[124,105,75,6.262939453125],[124,105,76,6.263560771942139],[124,105,77,6.262023448944092],[124,105,78,6.258963584899902],[124,105,79,6.252208232879639],[124,106,64,6.177631855010986],[124,106,65,6.17827844619751],[124,106,66,6.171967029571533],[124,106,67,6.164862155914307],[124,106,68,6.161971569061279],[124,106,69,6.167181015014648],[124,106,70,6.180848598480225],[124,106,71,6.2020697593688965],[124,106,72,6.231013298034668],[124,106,73,6.25203800201416],[124,106,74,6.2597455978393555],[124,106,75,6.262939453125],[124,106,76,6.263560771942139],[124,106,77,6.262023448944092],[124,106,78,6.258963584899902],[124,106,79,6.252208232879639],[124,107,64,6.177631855010986],[124,107,65,6.17827844619751],[124,107,66,6.171967029571533],[124,107,67,6.164862155914307],[124,107,68,6.161971569061279],[124,107,69,6.167181015014648],[124,107,70,6.180848598480225],[124,107,71,6.2020697593688965],[124,107,72,6.231013298034668],[124,107,73,6.25203800201416],[124,107,74,6.2597455978393555],[124,107,75,6.262939453125],[124,107,76,6.263560771942139],[124,107,77,6.262023448944092],[124,107,78,6.258963584899902],[124,107,79,6.252208232879639],[124,108,64,6.177631855010986],[124,108,65,6.17827844619751],[124,108,66,6.171967029571533],[124,108,67,6.164862155914307],[124,108,68,6.161971569061279],[124,108,69,6.167181015014648],[124,108,70,6.180848598480225],[124,108,71,6.2020697593688965],[124,108,72,6.231013298034668],[124,108,73,6.25203800201416],[124,108,74,6.2597455978393555],[124,108,75,6.262939453125],[124,108,76,6.263560771942139],[124,108,77,6.262023448944092],[124,108,78,6.258963584899902],[124,108,79,6.252208232879639],[124,109,64,6.177631855010986],[124,109,65,6.17827844619751],[124,109,66,6.171967029571533],[124,109,67,6.164862155914307],[124,109,68,6.161971569061279],[124,109,69,6.167181015014648],[124,109,70,6.180848598480225],[124,109,71,6.2020697593688965],[124,109,72,6.231013298034668],[124,109,73,6.25203800201416],[124,109,74,6.2597455978393555],[124,109,75,6.262939453125],[124,109,76,6.263560771942139],[124,109,77,6.262023448944092],[124,109,78,6.258963584899902],[124,109,79,6.252208232879639],[124,110,64,6.177631855010986],[124,110,65,6.17827844619751],[124,110,66,6.171967029571533],[124,110,67,6.164862155914307],[124,110,68,6.161971569061279],[124,110,69,6.167181015014648],[124,110,70,6.180848598480225],[124,110,71,6.2020697593688965],[124,110,72,6.231013298034668],[124,110,73,6.25203800201416],[124,110,74,6.2597455978393555],[124,110,75,6.262939453125],[124,110,76,6.263560771942139],[124,110,77,6.262023448944092],[124,110,78,6.258963584899902],[124,110,79,6.252208232879639],[124,111,64,6.177631855010986],[124,111,65,6.17827844619751],[124,111,66,6.171967029571533],[124,111,67,6.164862155914307],[124,111,68,6.161971569061279],[124,111,69,6.167181015014648],[124,111,70,6.180848598480225],[124,111,71,6.2020697593688965],[124,111,72,6.231013298034668],[124,111,73,6.25203800201416],[124,111,74,6.2597455978393555],[124,111,75,6.262939453125],[124,111,76,6.263560771942139],[124,111,77,6.262023448944092],[124,111,78,6.258963584899902],[124,111,79,6.252208232879639],[124,112,64,6.177631855010986],[124,112,65,6.17827844619751],[124,112,66,6.171967029571533],[124,112,67,6.164862155914307],[124,112,68,6.161971569061279],[124,112,69,6.167181015014648],[124,112,70,6.180848598480225],[124,112,71,6.2020697593688965],[124,112,72,6.231013298034668],[124,112,73,6.25203800201416],[124,112,74,6.2597455978393555],[124,112,75,6.262939453125],[124,112,76,6.263560771942139],[124,112,77,6.262023448944092],[124,112,78,6.258963584899902],[124,112,79,6.252208232879639],[124,113,64,6.177631855010986],[124,113,65,6.17827844619751],[124,113,66,6.171967029571533],[124,113,67,6.164862155914307],[124,113,68,6.161971569061279],[124,113,69,6.167181015014648],[124,113,70,6.180848598480225],[124,113,71,6.2020697593688965],[124,113,72,6.231013298034668],[124,113,73,6.25203800201416],[124,113,74,6.2597455978393555],[124,113,75,6.262939453125],[124,113,76,6.263560771942139],[124,113,77,6.262023448944092],[124,113,78,6.258963584899902],[124,113,79,6.252208232879639],[124,114,64,6.177631855010986],[124,114,65,6.17827844619751],[124,114,66,6.171967029571533],[124,114,67,6.164862155914307],[124,114,68,6.161971569061279],[124,114,69,6.167181015014648],[124,114,70,6.180848598480225],[124,114,71,6.2020697593688965],[124,114,72,6.231013298034668],[124,114,73,6.25203800201416],[124,114,74,6.2597455978393555],[124,114,75,6.262939453125],[124,114,76,6.263560771942139],[124,114,77,6.262023448944092],[124,114,78,6.258963584899902],[124,114,79,6.252208232879639],[124,115,64,6.177631855010986],[124,115,65,6.17827844619751],[124,115,66,6.171967029571533],[124,115,67,6.164862155914307],[124,115,68,6.161971569061279],[124,115,69,6.167181015014648],[124,115,70,6.180848598480225],[124,115,71,6.2020697593688965],[124,115,72,6.231013298034668],[124,115,73,6.25203800201416],[124,115,74,6.2597455978393555],[124,115,75,6.262939453125],[124,115,76,6.263560771942139],[124,115,77,6.262023448944092],[124,115,78,6.258963584899902],[124,115,79,6.252208232879639],[124,116,64,6.177631855010986],[124,116,65,6.17827844619751],[124,116,66,6.171967029571533],[124,116,67,6.164862155914307],[124,116,68,6.161971569061279],[124,116,69,6.167181015014648],[124,116,70,6.180848598480225],[124,116,71,6.2020697593688965],[124,116,72,6.231013298034668],[124,116,73,6.25203800201416],[124,116,74,6.2597455978393555],[124,116,75,6.262939453125],[124,116,76,6.263560771942139],[124,116,77,6.262023448944092],[124,116,78,6.258963584899902],[124,116,79,6.252208232879639],[124,117,64,6.177631855010986],[124,117,65,6.17827844619751],[124,117,66,6.171967029571533],[124,117,67,6.164862155914307],[124,117,68,6.161971569061279],[124,117,69,6.167181015014648],[124,117,70,6.180848598480225],[124,117,71,6.2020697593688965],[124,117,72,6.231013298034668],[124,117,73,6.25203800201416],[124,117,74,6.2597455978393555],[124,117,75,6.262939453125],[124,117,76,6.263560771942139],[124,117,77,6.262023448944092],[124,117,78,6.258963584899902],[124,117,79,6.252208232879639],[124,118,64,6.177631855010986],[124,118,65,6.17827844619751],[124,118,66,6.171967029571533],[124,118,67,6.164862155914307],[124,118,68,6.161971569061279],[124,118,69,6.167181015014648],[124,118,70,6.180848598480225],[124,118,71,6.2020697593688965],[124,118,72,6.231013298034668],[124,118,73,6.25203800201416],[124,118,74,6.2597455978393555],[124,118,75,6.262939453125],[124,118,76,6.263560771942139],[124,118,77,6.262023448944092],[124,118,78,6.258963584899902],[124,118,79,6.252208232879639],[124,119,64,6.177631855010986],[124,119,65,6.17827844619751],[124,119,66,6.171967029571533],[124,119,67,6.164862155914307],[124,119,68,6.161971569061279],[124,119,69,6.167181015014648],[124,119,70,6.180848598480225],[124,119,71,6.2020697593688965],[124,119,72,6.231013298034668],[124,119,73,6.25203800201416],[124,119,74,6.2597455978393555],[124,119,75,6.262939453125],[124,119,76,6.263560771942139],[124,119,77,6.262023448944092],[124,119,78,6.258963584899902],[124,119,79,6.252208232879639],[124,120,64,6.177631855010986],[124,120,65,6.17827844619751],[124,120,66,6.171967029571533],[124,120,67,6.164862155914307],[124,120,68,6.161971569061279],[124,120,69,6.167181015014648],[124,120,70,6.180848598480225],[124,120,71,6.2020697593688965],[124,120,72,6.231013298034668],[124,120,73,6.25203800201416],[124,120,74,6.2597455978393555],[124,120,75,6.262939453125],[124,120,76,6.263560771942139],[124,120,77,6.262023448944092],[124,120,78,6.258963584899902],[124,120,79,6.252208232879639],[124,121,64,6.177631855010986],[124,121,65,6.17827844619751],[124,121,66,6.171967029571533],[124,121,67,6.164862155914307],[124,121,68,6.161971569061279],[124,121,69,6.167181015014648],[124,121,70,6.180848598480225],[124,121,71,6.2020697593688965],[124,121,72,6.231013298034668],[124,121,73,6.25203800201416],[124,121,74,6.2597455978393555],[124,121,75,6.262939453125],[124,121,76,6.263560771942139],[124,121,77,6.262023448944092],[124,121,78,6.258963584899902],[124,121,79,6.252208232879639],[124,122,64,6.177631855010986],[124,122,65,6.17827844619751],[124,122,66,6.171967029571533],[124,122,67,6.164862155914307],[124,122,68,6.161971569061279],[124,122,69,6.167181015014648],[124,122,70,6.180848598480225],[124,122,71,6.2020697593688965],[124,122,72,6.231013298034668],[124,122,73,6.25203800201416],[124,122,74,6.2597455978393555],[124,122,75,6.262939453125],[124,122,76,6.263560771942139],[124,122,77,6.262023448944092],[124,122,78,6.258963584899902],[124,122,79,6.252208232879639],[124,123,64,6.177631855010986],[124,123,65,6.17827844619751],[124,123,66,6.171967029571533],[124,123,67,6.164862155914307],[124,123,68,6.161971569061279],[124,123,69,6.167181015014648],[124,123,70,6.180848598480225],[124,123,71,6.2020697593688965],[124,123,72,6.231013298034668],[124,123,73,6.25203800201416],[124,123,74,6.2597455978393555],[124,123,75,6.262939453125],[124,123,76,6.263560771942139],[124,123,77,6.262023448944092],[124,123,78,6.258963584899902],[124,123,79,6.252208232879639],[124,124,64,6.177631855010986],[124,124,65,6.17827844619751],[124,124,66,6.171967029571533],[124,124,67,6.164862155914307],[124,124,68,6.161971569061279],[124,124,69,6.167181015014648],[124,124,70,6.180848598480225],[124,124,71,6.2020697593688965],[124,124,72,6.231013298034668],[124,124,73,6.25203800201416],[124,124,74,6.2597455978393555],[124,124,75,6.262939453125],[124,124,76,6.263560771942139],[124,124,77,6.262023448944092],[124,124,78,6.258963584899902],[124,124,79,6.252208232879639],[124,125,64,6.177631855010986],[124,125,65,6.17827844619751],[124,125,66,6.171967029571533],[124,125,67,6.164862155914307],[124,125,68,6.161971569061279],[124,125,69,6.167181015014648],[124,125,70,6.180848598480225],[124,125,71,6.2020697593688965],[124,125,72,6.231013298034668],[124,125,73,6.25203800201416],[124,125,74,6.2597455978393555],[124,125,75,6.262939453125],[124,125,76,6.263560771942139],[124,125,77,6.262023448944092],[124,125,78,6.258963584899902],[124,125,79,6.252208232879639],[124,126,64,6.177631855010986],[124,126,65,6.17827844619751],[124,126,66,6.171967029571533],[124,126,67,6.164862155914307],[124,126,68,6.161971569061279],[124,126,69,6.167181015014648],[124,126,70,6.180848598480225],[124,126,71,6.2020697593688965],[124,126,72,6.231013298034668],[124,126,73,6.25203800201416],[124,126,74,6.2597455978393555],[124,126,75,6.262939453125],[124,126,76,6.263560771942139],[124,126,77,6.262023448944092],[124,126,78,6.258963584899902],[124,126,79,6.252208232879639],[124,127,64,6.177631855010986],[124,127,65,6.17827844619751],[124,127,66,6.171967029571533],[124,127,67,6.164862155914307],[124,127,68,6.161971569061279],[124,127,69,6.167181015014648],[124,127,70,6.180848598480225],[124,127,71,6.2020697593688965],[124,127,72,6.231013298034668],[124,127,73,6.25203800201416],[124,127,74,6.2597455978393555],[124,127,75,6.262939453125],[124,127,76,6.263560771942139],[124,127,77,6.262023448944092],[124,127,78,6.258963584899902],[124,127,79,6.252208232879639],[124,128,64,6.177631855010986],[124,128,65,6.17827844619751],[124,128,66,6.171967029571533],[124,128,67,6.164862155914307],[124,128,68,6.161971569061279],[124,128,69,6.167181015014648],[124,128,70,6.180848598480225],[124,128,71,6.2020697593688965],[124,128,72,6.231013298034668],[124,128,73,6.25203800201416],[124,128,74,6.2597455978393555],[124,128,75,6.262939453125],[124,128,76,6.263560771942139],[124,128,77,6.262023448944092],[124,128,78,6.258963584899902],[124,128,79,6.252208232879639],[124,129,64,6.177631855010986],[124,129,65,6.17827844619751],[124,129,66,6.171967029571533],[124,129,67,6.164862155914307],[124,129,68,6.161971569061279],[124,129,69,6.167181015014648],[124,129,70,6.180848598480225],[124,129,71,6.2020697593688965],[124,129,72,6.231013298034668],[124,129,73,6.25203800201416],[124,129,74,6.2597455978393555],[124,129,75,6.262939453125],[124,129,76,6.263560771942139],[124,129,77,6.262023448944092],[124,129,78,6.258963584899902],[124,129,79,6.252208232879639],[124,130,64,6.177631855010986],[124,130,65,6.17827844619751],[124,130,66,6.171967029571533],[124,130,67,6.164862155914307],[124,130,68,6.161971569061279],[124,130,69,6.167181015014648],[124,130,70,6.180848598480225],[124,130,71,6.2020697593688965],[124,130,72,6.231013298034668],[124,130,73,6.25203800201416],[124,130,74,6.2597455978393555],[124,130,75,6.262939453125],[124,130,76,6.263560771942139],[124,130,77,6.262023448944092],[124,130,78,6.258963584899902],[124,130,79,6.252208232879639],[124,131,64,6.177631855010986],[124,131,65,6.17827844619751],[124,131,66,6.171967029571533],[124,131,67,6.164862155914307],[124,131,68,6.161971569061279],[124,131,69,6.167181015014648],[124,131,70,6.180848598480225],[124,131,71,6.2020697593688965],[124,131,72,6.231013298034668],[124,131,73,6.25203800201416],[124,131,74,6.2597455978393555],[124,131,75,6.262939453125],[124,131,76,6.263560771942139],[124,131,77,6.262023448944092],[124,131,78,6.258963584899902],[124,131,79,6.252208232879639],[124,132,64,6.177631855010986],[124,132,65,6.17827844619751],[124,132,66,6.171967029571533],[124,132,67,6.164862155914307],[124,132,68,6.161971569061279],[124,132,69,6.167181015014648],[124,132,70,6.180848598480225],[124,132,71,6.2020697593688965],[124,132,72,6.231013298034668],[124,132,73,6.25203800201416],[124,132,74,6.2597455978393555],[124,132,75,6.262939453125],[124,132,76,6.263560771942139],[124,132,77,6.262023448944092],[124,132,78,6.258963584899902],[124,132,79,6.252208232879639],[124,133,64,6.177631855010986],[124,133,65,6.17827844619751],[124,133,66,6.171967029571533],[124,133,67,6.164862155914307],[124,133,68,6.161971569061279],[124,133,69,6.167181015014648],[124,133,70,6.180848598480225],[124,133,71,6.2020697593688965],[124,133,72,6.231013298034668],[124,133,73,6.25203800201416],[124,133,74,6.2597455978393555],[124,133,75,6.262939453125],[124,133,76,6.263560771942139],[124,133,77,6.262023448944092],[124,133,78,6.258963584899902],[124,133,79,6.252208232879639],[124,134,64,6.177631855010986],[124,134,65,6.17827844619751],[124,134,66,6.171967029571533],[124,134,67,6.164862155914307],[124,134,68,6.161971569061279],[124,134,69,6.167181015014648],[124,134,70,6.180848598480225],[124,134,71,6.2020697593688965],[124,134,72,6.231013298034668],[124,134,73,6.25203800201416],[124,134,74,6.2597455978393555],[124,134,75,6.262939453125],[124,134,76,6.263560771942139],[124,134,77,6.262023448944092],[124,134,78,6.258963584899902],[124,134,79,6.252208232879639],[124,135,64,6.177631855010986],[124,135,65,6.17827844619751],[124,135,66,6.171967029571533],[124,135,67,6.164862155914307],[124,135,68,6.161971569061279],[124,135,69,6.167181015014648],[124,135,70,6.180848598480225],[124,135,71,6.2020697593688965],[124,135,72,6.231013298034668],[124,135,73,6.25203800201416],[124,135,74,6.2597455978393555],[124,135,75,6.262939453125],[124,135,76,6.263560771942139],[124,135,77,6.262023448944092],[124,135,78,6.258963584899902],[124,135,79,6.252208232879639],[124,136,64,6.177631855010986],[124,136,65,6.17827844619751],[124,136,66,6.171967029571533],[124,136,67,6.164862155914307],[124,136,68,6.161971569061279],[124,136,69,6.167181015014648],[124,136,70,6.180848598480225],[124,136,71,6.2020697593688965],[124,136,72,6.231013298034668],[124,136,73,6.25203800201416],[124,136,74,6.2597455978393555],[124,136,75,6.262939453125],[124,136,76,6.263560771942139],[124,136,77,6.262023448944092],[124,136,78,6.258963584899902],[124,136,79,6.252208232879639],[124,137,64,6.177631855010986],[124,137,65,6.17827844619751],[124,137,66,6.171967029571533],[124,137,67,6.164862155914307],[124,137,68,6.161971569061279],[124,137,69,6.167181015014648],[124,137,70,6.180848598480225],[124,137,71,6.2020697593688965],[124,137,72,6.231013298034668],[124,137,73,6.25203800201416],[124,137,74,6.2597455978393555],[124,137,75,6.262939453125],[124,137,76,6.263560771942139],[124,137,77,6.262023448944092],[124,137,78,6.258963584899902],[124,137,79,6.252208232879639],[124,138,64,6.177631855010986],[124,138,65,6.17827844619751],[124,138,66,6.171967029571533],[124,138,67,6.164862155914307],[124,138,68,6.161971569061279],[124,138,69,6.167181015014648],[124,138,70,6.180848598480225],[124,138,71,6.2020697593688965],[124,138,72,6.231013298034668],[124,138,73,6.25203800201416],[124,138,74,6.2597455978393555],[124,138,75,6.262939453125],[124,138,76,6.263560771942139],[124,138,77,6.262023448944092],[124,138,78,6.258963584899902],[124,138,79,6.252208232879639],[124,139,64,6.177631855010986],[124,139,65,6.17827844619751],[124,139,66,6.171967029571533],[124,139,67,6.164862155914307],[124,139,68,6.161971569061279],[124,139,69,6.167181015014648],[124,139,70,6.180848598480225],[124,139,71,6.2020697593688965],[124,139,72,6.231013298034668],[124,139,73,6.25203800201416],[124,139,74,6.2597455978393555],[124,139,75,6.262939453125],[124,139,76,6.263560771942139],[124,139,77,6.262023448944092],[124,139,78,6.258963584899902],[124,139,79,6.252208232879639],[124,140,64,6.177631855010986],[124,140,65,6.17827844619751],[124,140,66,6.171967029571533],[124,140,67,6.164862155914307],[124,140,68,6.161971569061279],[124,140,69,6.167181015014648],[124,140,70,6.180848598480225],[124,140,71,6.2020697593688965],[124,140,72,6.231013298034668],[124,140,73,6.25203800201416],[124,140,74,6.2597455978393555],[124,140,75,6.262939453125],[124,140,76,6.263560771942139],[124,140,77,6.262023448944092],[124,140,78,6.258963584899902],[124,140,79,6.252208232879639],[124,141,64,6.177631855010986],[124,141,65,6.17827844619751],[124,141,66,6.171967029571533],[124,141,67,6.164862155914307],[124,141,68,6.161971569061279],[124,141,69,6.167181015014648],[124,141,70,6.180848598480225],[124,141,71,6.2020697593688965],[124,141,72,6.231013298034668],[124,141,73,6.25203800201416],[124,141,74,6.2597455978393555],[124,141,75,6.262939453125],[124,141,76,6.263560771942139],[124,141,77,6.262023448944092],[124,141,78,6.258963584899902],[124,141,79,6.252208232879639],[124,142,64,6.177631855010986],[124,142,65,6.17827844619751],[124,142,66,6.171967029571533],[124,142,67,6.164862155914307],[124,142,68,6.161971569061279],[124,142,69,6.167181015014648],[124,142,70,6.180848598480225],[124,142,71,6.2020697593688965],[124,142,72,6.231013298034668],[124,142,73,6.25203800201416],[124,142,74,6.2597455978393555],[124,142,75,6.262939453125],[124,142,76,6.263560771942139],[124,142,77,6.262023448944092],[124,142,78,6.258963584899902],[124,142,79,6.252208232879639],[124,143,64,6.177631855010986],[124,143,65,6.17827844619751],[124,143,66,6.171967029571533],[124,143,67,6.164862155914307],[124,143,68,6.161971569061279],[124,143,69,6.167181015014648],[124,143,70,6.180848598480225],[124,143,71,6.2020697593688965],[124,143,72,6.231013298034668],[124,143,73,6.25203800201416],[124,143,74,6.2597455978393555],[124,143,75,6.262939453125],[124,143,76,6.263560771942139],[124,143,77,6.262023448944092],[124,143,78,6.258963584899902],[124,143,79,6.252208232879639],[124,144,64,6.177631855010986],[124,144,65,6.17827844619751],[124,144,66,6.171967029571533],[124,144,67,6.164862155914307],[124,144,68,6.161971569061279],[124,144,69,6.167181015014648],[124,144,70,6.180848598480225],[124,144,71,6.2020697593688965],[124,144,72,6.231013298034668],[124,144,73,6.25203800201416],[124,144,74,6.2597455978393555],[124,144,75,6.262939453125],[124,144,76,6.263560771942139],[124,144,77,6.262023448944092],[124,144,78,6.258963584899902],[124,144,79,6.252208232879639],[124,145,64,6.177631855010986],[124,145,65,6.17827844619751],[124,145,66,6.171967029571533],[124,145,67,6.164862155914307],[124,145,68,6.161971569061279],[124,145,69,6.167181015014648],[124,145,70,6.180848598480225],[124,145,71,6.2020697593688965],[124,145,72,6.231013298034668],[124,145,73,6.25203800201416],[124,145,74,6.2597455978393555],[124,145,75,6.262939453125],[124,145,76,6.263560771942139],[124,145,77,6.262023448944092],[124,145,78,6.258963584899902],[124,145,79,6.252208232879639],[124,146,64,6.177631855010986],[124,146,65,6.17827844619751],[124,146,66,6.171967029571533],[124,146,67,6.164862155914307],[124,146,68,6.161971569061279],[124,146,69,6.167181015014648],[124,146,70,6.180848598480225],[124,146,71,6.2020697593688965],[124,146,72,6.231013298034668],[124,146,73,6.25203800201416],[124,146,74,6.2597455978393555],[124,146,75,6.262939453125],[124,146,76,6.263560771942139],[124,146,77,6.262023448944092],[124,146,78,6.258963584899902],[124,146,79,6.252208232879639],[124,147,64,6.177631855010986],[124,147,65,6.17827844619751],[124,147,66,6.171967029571533],[124,147,67,6.164862155914307],[124,147,68,6.161971569061279],[124,147,69,6.167181015014648],[124,147,70,6.180848598480225],[124,147,71,6.2020697593688965],[124,147,72,6.231013298034668],[124,147,73,6.25203800201416],[124,147,74,6.2597455978393555],[124,147,75,6.262939453125],[124,147,76,6.263560771942139],[124,147,77,6.262023448944092],[124,147,78,6.258963584899902],[124,147,79,6.252208232879639],[124,148,64,6.177631855010986],[124,148,65,6.17827844619751],[124,148,66,6.171967029571533],[124,148,67,6.164862155914307],[124,148,68,6.161971569061279],[124,148,69,6.167181015014648],[124,148,70,6.180848598480225],[124,148,71,6.2020697593688965],[124,148,72,6.231013298034668],[124,148,73,6.25203800201416],[124,148,74,6.2597455978393555],[124,148,75,6.262939453125],[124,148,76,6.263560771942139],[124,148,77,6.262023448944092],[124,148,78,6.258963584899902],[124,148,79,6.252208232879639],[124,149,64,6.177631855010986],[124,149,65,6.17827844619751],[124,149,66,6.171967029571533],[124,149,67,6.164862155914307],[124,149,68,6.161971569061279],[124,149,69,6.167181015014648],[124,149,70,6.180848598480225],[124,149,71,6.2020697593688965],[124,149,72,6.231013298034668],[124,149,73,6.25203800201416],[124,149,74,6.2597455978393555],[124,149,75,6.262939453125],[124,149,76,6.263560771942139],[124,149,77,6.262023448944092],[124,149,78,6.258963584899902],[124,149,79,6.252208232879639],[124,150,64,6.177631855010986],[124,150,65,6.17827844619751],[124,150,66,6.171967029571533],[124,150,67,6.164862155914307],[124,150,68,6.161971569061279],[124,150,69,6.167181015014648],[124,150,70,6.180848598480225],[124,150,71,6.2020697593688965],[124,150,72,6.231013298034668],[124,150,73,6.25203800201416],[124,150,74,6.2597455978393555],[124,150,75,6.262939453125],[124,150,76,6.263560771942139],[124,150,77,6.262023448944092],[124,150,78,6.258963584899902],[124,150,79,6.252208232879639],[124,151,64,6.177631855010986],[124,151,65,6.17827844619751],[124,151,66,6.171967029571533],[124,151,67,6.164862155914307],[124,151,68,6.161971569061279],[124,151,69,6.167181015014648],[124,151,70,6.180848598480225],[124,151,71,6.2020697593688965],[124,151,72,6.231013298034668],[124,151,73,6.25203800201416],[124,151,74,6.2597455978393555],[124,151,75,6.262939453125],[124,151,76,6.263560771942139],[124,151,77,6.262023448944092],[124,151,78,6.258963584899902],[124,151,79,6.252208232879639],[124,152,64,6.177631855010986],[124,152,65,6.17827844619751],[124,152,66,6.171967029571533],[124,152,67,6.164862155914307],[124,152,68,6.161971569061279],[124,152,69,6.167181015014648],[124,152,70,6.180848598480225],[124,152,71,6.2020697593688965],[124,152,72,6.231013298034668],[124,152,73,6.25203800201416],[124,152,74,6.2597455978393555],[124,152,75,6.262939453125],[124,152,76,6.263560771942139],[124,152,77,6.262023448944092],[124,152,78,6.258963584899902],[124,152,79,6.252208232879639],[124,153,64,6.177631855010986],[124,153,65,6.17827844619751],[124,153,66,6.171967029571533],[124,153,67,6.164862155914307],[124,153,68,6.161971569061279],[124,153,69,6.167181015014648],[124,153,70,6.180848598480225],[124,153,71,6.2020697593688965],[124,153,72,6.231013298034668],[124,153,73,6.25203800201416],[124,153,74,6.2597455978393555],[124,153,75,6.262939453125],[124,153,76,6.263560771942139],[124,153,77,6.262023448944092],[124,153,78,6.258963584899902],[124,153,79,6.252208232879639],[124,154,64,6.177631855010986],[124,154,65,6.17827844619751],[124,154,66,6.171967029571533],[124,154,67,6.164862155914307],[124,154,68,6.161971569061279],[124,154,69,6.167181015014648],[124,154,70,6.180848598480225],[124,154,71,6.2020697593688965],[124,154,72,6.231013298034668],[124,154,73,6.25203800201416],[124,154,74,6.2597455978393555],[124,154,75,6.262939453125],[124,154,76,6.263560771942139],[124,154,77,6.262023448944092],[124,154,78,6.258963584899902],[124,154,79,6.252208232879639],[124,155,64,6.177631855010986],[124,155,65,6.17827844619751],[124,155,66,6.171967029571533],[124,155,67,6.164862155914307],[124,155,68,6.161971569061279],[124,155,69,6.167181015014648],[124,155,70,6.180848598480225],[124,155,71,6.2020697593688965],[124,155,72,6.231013298034668],[124,155,73,6.25203800201416],[124,155,74,6.2597455978393555],[124,155,75,6.262939453125],[124,155,76,6.263560771942139],[124,155,77,6.262023448944092],[124,155,78,6.258963584899902],[124,155,79,6.252208232879639],[124,156,64,6.177631855010986],[124,156,65,6.17827844619751],[124,156,66,6.171967029571533],[124,156,67,6.164862155914307],[124,156,68,6.161971569061279],[124,156,69,6.167181015014648],[124,156,70,6.180848598480225],[124,156,71,6.2020697593688965],[124,156,72,6.231013298034668],[124,156,73,6.25203800201416],[124,156,74,6.2597455978393555],[124,156,75,6.262939453125],[124,156,76,6.263560771942139],[124,156,77,6.262023448944092],[124,156,78,6.258963584899902],[124,156,79,6.252208232879639],[124,157,64,6.177631855010986],[124,157,65,6.17827844619751],[124,157,66,6.171967029571533],[124,157,67,6.164862155914307],[124,157,68,6.161971569061279],[124,157,69,6.167181015014648],[124,157,70,6.180848598480225],[124,157,71,6.2020697593688965],[124,157,72,6.231013298034668],[124,157,73,6.25203800201416],[124,157,74,6.2597455978393555],[124,157,75,6.262939453125],[124,157,76,6.263560771942139],[124,157,77,6.262023448944092],[124,157,78,6.258963584899902],[124,157,79,6.252208232879639],[124,158,64,6.177631855010986],[124,158,65,6.17827844619751],[124,158,66,6.171967029571533],[124,158,67,6.164862155914307],[124,158,68,6.161971569061279],[124,158,69,6.167181015014648],[124,158,70,6.180848598480225],[124,158,71,6.2020697593688965],[124,158,72,6.231013298034668],[124,158,73,6.25203800201416],[124,158,74,6.2597455978393555],[124,158,75,6.262939453125],[124,158,76,6.263560771942139],[124,158,77,6.262023448944092],[124,158,78,6.258963584899902],[124,158,79,6.252208232879639],[124,159,64,6.177631855010986],[124,159,65,6.17827844619751],[124,159,66,6.171967029571533],[124,159,67,6.164862155914307],[124,159,68,6.161971569061279],[124,159,69,6.167181015014648],[124,159,70,6.180848598480225],[124,159,71,6.2020697593688965],[124,159,72,6.231013298034668],[124,159,73,6.25203800201416],[124,159,74,6.2597455978393555],[124,159,75,6.262939453125],[124,159,76,6.263560771942139],[124,159,77,6.262023448944092],[124,159,78,6.258963584899902],[124,159,79,6.252208232879639],[124,160,64,6.177631855010986],[124,160,65,6.17827844619751],[124,160,66,6.171967029571533],[124,160,67,6.164862155914307],[124,160,68,6.161971569061279],[124,160,69,6.167181015014648],[124,160,70,6.180848598480225],[124,160,71,6.2020697593688965],[124,160,72,6.231013298034668],[124,160,73,6.25203800201416],[124,160,74,6.2597455978393555],[124,160,75,6.262939453125],[124,160,76,6.263560771942139],[124,160,77,6.262023448944092],[124,160,78,6.258963584899902],[124,160,79,6.252208232879639],[124,161,64,6.177631855010986],[124,161,65,6.17827844619751],[124,161,66,6.171967029571533],[124,161,67,6.164862155914307],[124,161,68,6.161971569061279],[124,161,69,6.167181015014648],[124,161,70,6.180848598480225],[124,161,71,6.2020697593688965],[124,161,72,6.231013298034668],[124,161,73,6.25203800201416],[124,161,74,6.2597455978393555],[124,161,75,6.262939453125],[124,161,76,6.263560771942139],[124,161,77,6.262023448944092],[124,161,78,6.258963584899902],[124,161,79,6.252208232879639],[124,162,64,6.177631855010986],[124,162,65,6.17827844619751],[124,162,66,6.171967029571533],[124,162,67,6.164862155914307],[124,162,68,6.161971569061279],[124,162,69,6.167181015014648],[124,162,70,6.180848598480225],[124,162,71,6.2020697593688965],[124,162,72,6.231013298034668],[124,162,73,6.25203800201416],[124,162,74,6.2597455978393555],[124,162,75,6.262939453125],[124,162,76,6.263560771942139],[124,162,77,6.262023448944092],[124,162,78,6.258963584899902],[124,162,79,6.252208232879639],[124,163,64,6.177631855010986],[124,163,65,6.17827844619751],[124,163,66,6.171967029571533],[124,163,67,6.164862155914307],[124,163,68,6.161971569061279],[124,163,69,6.167181015014648],[124,163,70,6.180848598480225],[124,163,71,6.2020697593688965],[124,163,72,6.231013298034668],[124,163,73,6.25203800201416],[124,163,74,6.2597455978393555],[124,163,75,6.262939453125],[124,163,76,6.263560771942139],[124,163,77,6.262023448944092],[124,163,78,6.258963584899902],[124,163,79,6.252208232879639],[124,164,64,6.177631855010986],[124,164,65,6.17827844619751],[124,164,66,6.171967029571533],[124,164,67,6.164862155914307],[124,164,68,6.161971569061279],[124,164,69,6.167181015014648],[124,164,70,6.180848598480225],[124,164,71,6.2020697593688965],[124,164,72,6.231013298034668],[124,164,73,6.25203800201416],[124,164,74,6.2597455978393555],[124,164,75,6.262939453125],[124,164,76,6.263560771942139],[124,164,77,6.262023448944092],[124,164,78,6.258963584899902],[124,164,79,6.252208232879639],[124,165,64,6.177631855010986],[124,165,65,6.17827844619751],[124,165,66,6.171967029571533],[124,165,67,6.164862155914307],[124,165,68,6.161971569061279],[124,165,69,6.167181015014648],[124,165,70,6.180848598480225],[124,165,71,6.2020697593688965],[124,165,72,6.231013298034668],[124,165,73,6.25203800201416],[124,165,74,6.2597455978393555],[124,165,75,6.262939453125],[124,165,76,6.263560771942139],[124,165,77,6.262023448944092],[124,165,78,6.258963584899902],[124,165,79,6.252208232879639],[124,166,64,6.177631855010986],[124,166,65,6.17827844619751],[124,166,66,6.171967029571533],[124,166,67,6.164862155914307],[124,166,68,6.161971569061279],[124,166,69,6.167181015014648],[124,166,70,6.180848598480225],[124,166,71,6.2020697593688965],[124,166,72,6.231013298034668],[124,166,73,6.25203800201416],[124,166,74,6.2597455978393555],[124,166,75,6.262939453125],[124,166,76,6.263560771942139],[124,166,77,6.262023448944092],[124,166,78,6.258963584899902],[124,166,79,6.252208232879639],[124,167,64,6.177631855010986],[124,167,65,6.17827844619751],[124,167,66,6.171967029571533],[124,167,67,6.164862155914307],[124,167,68,6.161971569061279],[124,167,69,6.167181015014648],[124,167,70,6.180848598480225],[124,167,71,6.2020697593688965],[124,167,72,6.231013298034668],[124,167,73,6.25203800201416],[124,167,74,6.2597455978393555],[124,167,75,6.262939453125],[124,167,76,6.263560771942139],[124,167,77,6.262023448944092],[124,167,78,6.258963584899902],[124,167,79,6.252208232879639],[124,168,64,6.177631855010986],[124,168,65,6.17827844619751],[124,168,66,6.171967029571533],[124,168,67,6.164862155914307],[124,168,68,6.161971569061279],[124,168,69,6.167181015014648],[124,168,70,6.180848598480225],[124,168,71,6.2020697593688965],[124,168,72,6.231013298034668],[124,168,73,6.25203800201416],[124,168,74,6.2597455978393555],[124,168,75,6.262939453125],[124,168,76,6.263560771942139],[124,168,77,6.262023448944092],[124,168,78,6.258963584899902],[124,168,79,6.252208232879639],[124,169,64,6.177631855010986],[124,169,65,6.17827844619751],[124,169,66,6.171967029571533],[124,169,67,6.164862155914307],[124,169,68,6.161971569061279],[124,169,69,6.167181015014648],[124,169,70,6.180848598480225],[124,169,71,6.2020697593688965],[124,169,72,6.231013298034668],[124,169,73,6.25203800201416],[124,169,74,6.2597455978393555],[124,169,75,6.262939453125],[124,169,76,6.263560771942139],[124,169,77,6.262023448944092],[124,169,78,6.258963584899902],[124,169,79,6.252208232879639],[124,170,64,6.177631855010986],[124,170,65,6.17827844619751],[124,170,66,6.171967029571533],[124,170,67,6.164862155914307],[124,170,68,6.161971569061279],[124,170,69,6.167181015014648],[124,170,70,6.180848598480225],[124,170,71,6.2020697593688965],[124,170,72,6.231013298034668],[124,170,73,6.25203800201416],[124,170,74,6.2597455978393555],[124,170,75,6.262939453125],[124,170,76,6.263560771942139],[124,170,77,6.262023448944092],[124,170,78,6.258963584899902],[124,170,79,6.252208232879639],[124,171,64,6.177631855010986],[124,171,65,6.17827844619751],[124,171,66,6.171967029571533],[124,171,67,6.164862155914307],[124,171,68,6.161971569061279],[124,171,69,6.167181015014648],[124,171,70,6.180848598480225],[124,171,71,6.2020697593688965],[124,171,72,6.231013298034668],[124,171,73,6.25203800201416],[124,171,74,6.2597455978393555],[124,171,75,6.262939453125],[124,171,76,6.263560771942139],[124,171,77,6.262023448944092],[124,171,78,6.258963584899902],[124,171,79,6.252208232879639],[124,172,64,6.177631855010986],[124,172,65,6.17827844619751],[124,172,66,6.171967029571533],[124,172,67,6.164862155914307],[124,172,68,6.161971569061279],[124,172,69,6.167181015014648],[124,172,70,6.180848598480225],[124,172,71,6.2020697593688965],[124,172,72,6.231013298034668],[124,172,73,6.25203800201416],[124,172,74,6.2597455978393555],[124,172,75,6.262939453125],[124,172,76,6.263560771942139],[124,172,77,6.262023448944092],[124,172,78,6.258963584899902],[124,172,79,6.252208232879639],[124,173,64,6.177631855010986],[124,173,65,6.17827844619751],[124,173,66,6.171967029571533],[124,173,67,6.164862155914307],[124,173,68,6.161971569061279],[124,173,69,6.167181015014648],[124,173,70,6.180848598480225],[124,173,71,6.2020697593688965],[124,173,72,6.231013298034668],[124,173,73,6.25203800201416],[124,173,74,6.2597455978393555],[124,173,75,6.262939453125],[124,173,76,6.263560771942139],[124,173,77,6.262023448944092],[124,173,78,6.258963584899902],[124,173,79,6.252208232879639],[124,174,64,6.177631855010986],[124,174,65,6.17827844619751],[124,174,66,6.171967029571533],[124,174,67,6.164862155914307],[124,174,68,6.161971569061279],[124,174,69,6.167181015014648],[124,174,70,6.180848598480225],[124,174,71,6.2020697593688965],[124,174,72,6.231013298034668],[124,174,73,6.25203800201416],[124,174,74,6.2597455978393555],[124,174,75,6.262939453125],[124,174,76,6.263560771942139],[124,174,77,6.262023448944092],[124,174,78,6.258963584899902],[124,174,79,6.252208232879639],[124,175,64,6.177631855010986],[124,175,65,6.17827844619751],[124,175,66,6.171967029571533],[124,175,67,6.164862155914307],[124,175,68,6.161971569061279],[124,175,69,6.167181015014648],[124,175,70,6.180848598480225],[124,175,71,6.2020697593688965],[124,175,72,6.231013298034668],[124,175,73,6.25203800201416],[124,175,74,6.2597455978393555],[124,175,75,6.262939453125],[124,175,76,6.263560771942139],[124,175,77,6.262023448944092],[124,175,78,6.258963584899902],[124,175,79,6.252208232879639],[124,176,64,6.177631855010986],[124,176,65,6.17827844619751],[124,176,66,6.171967029571533],[124,176,67,6.164862155914307],[124,176,68,6.161971569061279],[124,176,69,6.167181015014648],[124,176,70,6.180848598480225],[124,176,71,6.2020697593688965],[124,176,72,6.231013298034668],[124,176,73,6.25203800201416],[124,176,74,6.2597455978393555],[124,176,75,6.262939453125],[124,176,76,6.263560771942139],[124,176,77,6.262023448944092],[124,176,78,6.258963584899902],[124,176,79,6.252208232879639],[124,177,64,6.177631855010986],[124,177,65,6.17827844619751],[124,177,66,6.171967029571533],[124,177,67,6.164862155914307],[124,177,68,6.161971569061279],[124,177,69,6.167181015014648],[124,177,70,6.180848598480225],[124,177,71,6.2020697593688965],[124,177,72,6.231013298034668],[124,177,73,6.25203800201416],[124,177,74,6.2597455978393555],[124,177,75,6.262939453125],[124,177,76,6.263560771942139],[124,177,77,6.262023448944092],[124,177,78,6.258963584899902],[124,177,79,6.252208232879639],[124,178,64,6.177631855010986],[124,178,65,6.17827844619751],[124,178,66,6.171967029571533],[124,178,67,6.164862155914307],[124,178,68,6.161971569061279],[124,178,69,6.167181015014648],[124,178,70,6.180848598480225],[124,178,71,6.2020697593688965],[124,178,72,6.231013298034668],[124,178,73,6.25203800201416],[124,178,74,6.2597455978393555],[124,178,75,6.262939453125],[124,178,76,6.263560771942139],[124,178,77,6.262023448944092],[124,178,78,6.258963584899902],[124,178,79,6.252208232879639],[124,179,64,6.177631855010986],[124,179,65,6.17827844619751],[124,179,66,6.171967029571533],[124,179,67,6.164862155914307],[124,179,68,6.161971569061279],[124,179,69,6.167181015014648],[124,179,70,6.180848598480225],[124,179,71,6.2020697593688965],[124,179,72,6.231013298034668],[124,179,73,6.25203800201416],[124,179,74,6.2597455978393555],[124,179,75,6.262939453125],[124,179,76,6.263560771942139],[124,179,77,6.262023448944092],[124,179,78,6.258963584899902],[124,179,79,6.252208232879639],[124,180,64,6.177631855010986],[124,180,65,6.17827844619751],[124,180,66,6.171967029571533],[124,180,67,6.164862155914307],[124,180,68,6.161971569061279],[124,180,69,6.167181015014648],[124,180,70,6.180848598480225],[124,180,71,6.2020697593688965],[124,180,72,6.231013298034668],[124,180,73,6.25203800201416],[124,180,74,6.2597455978393555],[124,180,75,6.262939453125],[124,180,76,6.263560771942139],[124,180,77,6.262023448944092],[124,180,78,6.258963584899902],[124,180,79,6.252208232879639],[124,181,64,6.177631855010986],[124,181,65,6.17827844619751],[124,181,66,6.171967029571533],[124,181,67,6.164862155914307],[124,181,68,6.161971569061279],[124,181,69,6.167181015014648],[124,181,70,6.180848598480225],[124,181,71,6.2020697593688965],[124,181,72,6.231013298034668],[124,181,73,6.25203800201416],[124,181,74,6.2597455978393555],[124,181,75,6.262939453125],[124,181,76,6.263560771942139],[124,181,77,6.262023448944092],[124,181,78,6.258963584899902],[124,181,79,6.252208232879639],[124,182,64,6.177631855010986],[124,182,65,6.17827844619751],[124,182,66,6.171967029571533],[124,182,67,6.164862155914307],[124,182,68,6.161971569061279],[124,182,69,6.167181015014648],[124,182,70,6.180848598480225],[124,182,71,6.2020697593688965],[124,182,72,6.231013298034668],[124,182,73,6.25203800201416],[124,182,74,6.2597455978393555],[124,182,75,6.262939453125],[124,182,76,6.263560771942139],[124,182,77,6.262023448944092],[124,182,78,6.258963584899902],[124,182,79,6.252208232879639],[124,183,64,6.177631855010986],[124,183,65,6.17827844619751],[124,183,66,6.171967029571533],[124,183,67,6.164862155914307],[124,183,68,6.161971569061279],[124,183,69,6.167181015014648],[124,183,70,6.180848598480225],[124,183,71,6.2020697593688965],[124,183,72,6.231013298034668],[124,183,73,6.25203800201416],[124,183,74,6.2597455978393555],[124,183,75,6.262939453125],[124,183,76,6.263560771942139],[124,183,77,6.262023448944092],[124,183,78,6.258963584899902],[124,183,79,6.252208232879639],[124,184,64,6.177631855010986],[124,184,65,6.17827844619751],[124,184,66,6.171967029571533],[124,184,67,6.164862155914307],[124,184,68,6.161971569061279],[124,184,69,6.167181015014648],[124,184,70,6.180848598480225],[124,184,71,6.2020697593688965],[124,184,72,6.231013298034668],[124,184,73,6.25203800201416],[124,184,74,6.2597455978393555],[124,184,75,6.262939453125],[124,184,76,6.263560771942139],[124,184,77,6.262023448944092],[124,184,78,6.258963584899902],[124,184,79,6.252208232879639],[124,185,64,6.177631855010986],[124,185,65,6.17827844619751],[124,185,66,6.171967029571533],[124,185,67,6.164862155914307],[124,185,68,6.161971569061279],[124,185,69,6.167181015014648],[124,185,70,6.180848598480225],[124,185,71,6.2020697593688965],[124,185,72,6.231013298034668],[124,185,73,6.25203800201416],[124,185,74,6.2597455978393555],[124,185,75,6.262939453125],[124,185,76,6.263560771942139],[124,185,77,6.262023448944092],[124,185,78,6.258963584899902],[124,185,79,6.252208232879639],[124,186,64,6.177631855010986],[124,186,65,6.17827844619751],[124,186,66,6.171967029571533],[124,186,67,6.164862155914307],[124,186,68,6.161971569061279],[124,186,69,6.167181015014648],[124,186,70,6.180848598480225],[124,186,71,6.2020697593688965],[124,186,72,6.231013298034668],[124,186,73,6.25203800201416],[124,186,74,6.2597455978393555],[124,186,75,6.262939453125],[124,186,76,6.263560771942139],[124,186,77,6.262023448944092],[124,186,78,6.258963584899902],[124,186,79,6.252208232879639],[124,187,64,6.177631855010986],[124,187,65,6.17827844619751],[124,187,66,6.171967029571533],[124,187,67,6.164862155914307],[124,187,68,6.161971569061279],[124,187,69,6.167181015014648],[124,187,70,6.180848598480225],[124,187,71,6.2020697593688965],[124,187,72,6.231013298034668],[124,187,73,6.25203800201416],[124,187,74,6.2597455978393555],[124,187,75,6.262939453125],[124,187,76,6.263560771942139],[124,187,77,6.262023448944092],[124,187,78,6.258963584899902],[124,187,79,6.252208232879639],[124,188,64,6.177631855010986],[124,188,65,6.17827844619751],[124,188,66,6.171967029571533],[124,188,67,6.164862155914307],[124,188,68,6.161971569061279],[124,188,69,6.167181015014648],[124,188,70,6.180848598480225],[124,188,71,6.2020697593688965],[124,188,72,6.231013298034668],[124,188,73,6.25203800201416],[124,188,74,6.2597455978393555],[124,188,75,6.262939453125],[124,188,76,6.263560771942139],[124,188,77,6.262023448944092],[124,188,78,6.258963584899902],[124,188,79,6.252208232879639],[124,189,64,6.177631855010986],[124,189,65,6.17827844619751],[124,189,66,6.171967029571533],[124,189,67,6.164862155914307],[124,189,68,6.161971569061279],[124,189,69,6.167181015014648],[124,189,70,6.180848598480225],[124,189,71,6.2020697593688965],[124,189,72,6.231013298034668],[124,189,73,6.25203800201416],[124,189,74,6.2597455978393555],[124,189,75,6.262939453125],[124,189,76,6.263560771942139],[124,189,77,6.262023448944092],[124,189,78,6.258963584899902],[124,189,79,6.252208232879639],[124,190,64,6.177631855010986],[124,190,65,6.17827844619751],[124,190,66,6.171967029571533],[124,190,67,6.164862155914307],[124,190,68,6.161971569061279],[124,190,69,6.167181015014648],[124,190,70,6.180848598480225],[124,190,71,6.2020697593688965],[124,190,72,6.231013298034668],[124,190,73,6.25203800201416],[124,190,74,6.2597455978393555],[124,190,75,6.262939453125],[124,190,76,6.263560771942139],[124,190,77,6.262023448944092],[124,190,78,6.258963584899902],[124,190,79,6.252208232879639],[124,191,64,6.177631855010986],[124,191,65,6.17827844619751],[124,191,66,6.171967029571533],[124,191,67,6.164862155914307],[124,191,68,6.161971569061279],[124,191,69,6.167181015014648],[124,191,70,6.180848598480225],[124,191,71,6.2020697593688965],[124,191,72,6.231013298034668],[124,191,73,6.25203800201416],[124,191,74,6.2597455978393555],[124,191,75,6.262939453125],[124,191,76,6.263560771942139],[124,191,77,6.262023448944092],[124,191,78,6.258963584899902],[124,191,79,6.252208232879639],[124,192,64,6.177631855010986],[124,192,65,6.17827844619751],[124,192,66,6.171967029571533],[124,192,67,6.164862155914307],[124,192,68,6.161971569061279],[124,192,69,6.167181015014648],[124,192,70,6.180848598480225],[124,192,71,6.2020697593688965],[124,192,72,6.231013298034668],[124,192,73,6.25203800201416],[124,192,74,6.2597455978393555],[124,192,75,6.262939453125],[124,192,76,6.263560771942139],[124,192,77,6.262023448944092],[124,192,78,6.258963584899902],[124,192,79,6.252208232879639],[124,193,64,6.177631855010986],[124,193,65,6.17827844619751],[124,193,66,6.171967029571533],[124,193,67,6.164862155914307],[124,193,68,6.161971569061279],[124,193,69,6.167181015014648],[124,193,70,6.180848598480225],[124,193,71,6.2020697593688965],[124,193,72,6.231013298034668],[124,193,73,6.25203800201416],[124,193,74,6.2597455978393555],[124,193,75,6.262939453125],[124,193,76,6.263560771942139],[124,193,77,6.262023448944092],[124,193,78,6.258963584899902],[124,193,79,6.252208232879639],[124,194,64,6.177631855010986],[124,194,65,6.17827844619751],[124,194,66,6.171967029571533],[124,194,67,6.164862155914307],[124,194,68,6.161971569061279],[124,194,69,6.167181015014648],[124,194,70,6.180848598480225],[124,194,71,6.2020697593688965],[124,194,72,6.231013298034668],[124,194,73,6.25203800201416],[124,194,74,6.2597455978393555],[124,194,75,6.262939453125],[124,194,76,6.263560771942139],[124,194,77,6.262023448944092],[124,194,78,6.258963584899902],[124,194,79,6.252208232879639],[124,195,64,6.177631855010986],[124,195,65,6.17827844619751],[124,195,66,6.171967029571533],[124,195,67,6.164862155914307],[124,195,68,6.161971569061279],[124,195,69,6.167181015014648],[124,195,70,6.180848598480225],[124,195,71,6.2020697593688965],[124,195,72,6.231013298034668],[124,195,73,6.25203800201416],[124,195,74,6.2597455978393555],[124,195,75,6.262939453125],[124,195,76,6.263560771942139],[124,195,77,6.262023448944092],[124,195,78,6.258963584899902],[124,195,79,6.252208232879639],[124,196,64,6.177631855010986],[124,196,65,6.17827844619751],[124,196,66,6.171967029571533],[124,196,67,6.164862155914307],[124,196,68,6.161971569061279],[124,196,69,6.167181015014648],[124,196,70,6.180848598480225],[124,196,71,6.2020697593688965],[124,196,72,6.231013298034668],[124,196,73,6.25203800201416],[124,196,74,6.2597455978393555],[124,196,75,6.262939453125],[124,196,76,6.263560771942139],[124,196,77,6.262023448944092],[124,196,78,6.258963584899902],[124,196,79,6.252208232879639],[124,197,64,6.177631855010986],[124,197,65,6.17827844619751],[124,197,66,6.171967029571533],[124,197,67,6.164862155914307],[124,197,68,6.161971569061279],[124,197,69,6.167181015014648],[124,197,70,6.180848598480225],[124,197,71,6.2020697593688965],[124,197,72,6.231013298034668],[124,197,73,6.25203800201416],[124,197,74,6.2597455978393555],[124,197,75,6.262939453125],[124,197,76,6.263560771942139],[124,197,77,6.262023448944092],[124,197,78,6.258963584899902],[124,197,79,6.252208232879639],[124,198,64,6.177631855010986],[124,198,65,6.17827844619751],[124,198,66,6.171967029571533],[124,198,67,6.164862155914307],[124,198,68,6.161971569061279],[124,198,69,6.167181015014648],[124,198,70,6.180848598480225],[124,198,71,6.2020697593688965],[124,198,72,6.231013298034668],[124,198,73,6.25203800201416],[124,198,74,6.2597455978393555],[124,198,75,6.262939453125],[124,198,76,6.263560771942139],[124,198,77,6.262023448944092],[124,198,78,6.258963584899902],[124,198,79,6.252208232879639],[124,199,64,6.177631855010986],[124,199,65,6.17827844619751],[124,199,66,6.171967029571533],[124,199,67,6.164862155914307],[124,199,68,6.161971569061279],[124,199,69,6.167181015014648],[124,199,70,6.180848598480225],[124,199,71,6.2020697593688965],[124,199,72,6.231013298034668],[124,199,73,6.25203800201416],[124,199,74,6.2597455978393555],[124,199,75,6.262939453125],[124,199,76,6.263560771942139],[124,199,77,6.262023448944092],[124,199,78,6.258963584899902],[124,199,79,6.252208232879639],[124,200,64,6.177631855010986],[124,200,65,6.17827844619751],[124,200,66,6.171967029571533],[124,200,67,6.164862155914307],[124,200,68,6.161971569061279],[124,200,69,6.167181015014648],[124,200,70,6.180848598480225],[124,200,71,6.2020697593688965],[124,200,72,6.231013298034668],[124,200,73,6.25203800201416],[124,200,74,6.2597455978393555],[124,200,75,6.262939453125],[124,200,76,6.263560771942139],[124,200,77,6.262023448944092],[124,200,78,6.258963584899902],[124,200,79,6.252208232879639],[124,201,64,6.177631855010986],[124,201,65,6.17827844619751],[124,201,66,6.171967029571533],[124,201,67,6.164862155914307],[124,201,68,6.161971569061279],[124,201,69,6.167181015014648],[124,201,70,6.180848598480225],[124,201,71,6.2020697593688965],[124,201,72,6.231013298034668],[124,201,73,6.25203800201416],[124,201,74,6.2597455978393555],[124,201,75,6.262939453125],[124,201,76,6.263560771942139],[124,201,77,6.262023448944092],[124,201,78,6.258963584899902],[124,201,79,6.252208232879639],[124,202,64,6.177631855010986],[124,202,65,6.17827844619751],[124,202,66,6.171967029571533],[124,202,67,6.164862155914307],[124,202,68,6.161971569061279],[124,202,69,6.167181015014648],[124,202,70,6.180848598480225],[124,202,71,6.2020697593688965],[124,202,72,6.231013298034668],[124,202,73,6.25203800201416],[124,202,74,6.2597455978393555],[124,202,75,6.262939453125],[124,202,76,6.263560771942139],[124,202,77,6.262023448944092],[124,202,78,6.258963584899902],[124,202,79,6.252208232879639],[124,203,64,6.177631855010986],[124,203,65,6.17827844619751],[124,203,66,6.171967029571533],[124,203,67,6.164862155914307],[124,203,68,6.161971569061279],[124,203,69,6.167181015014648],[124,203,70,6.180848598480225],[124,203,71,6.2020697593688965],[124,203,72,6.231013298034668],[124,203,73,6.25203800201416],[124,203,74,6.2597455978393555],[124,203,75,6.262939453125],[124,203,76,6.263560771942139],[124,203,77,6.262023448944092],[124,203,78,6.258963584899902],[124,203,79,6.252208232879639],[124,204,64,6.177631855010986],[124,204,65,6.17827844619751],[124,204,66,6.171967029571533],[124,204,67,6.164862155914307],[124,204,68,6.161971569061279],[124,204,69,6.167181015014648],[124,204,70,6.180848598480225],[124,204,71,6.2020697593688965],[124,204,72,6.231013298034668],[124,204,73,6.25203800201416],[124,204,74,6.2597455978393555],[124,204,75,6.262939453125],[124,204,76,6.263560771942139],[124,204,77,6.262023448944092],[124,204,78,6.258963584899902],[124,204,79,6.252208232879639],[124,205,64,6.177631855010986],[124,205,65,6.17827844619751],[124,205,66,6.171967029571533],[124,205,67,6.164862155914307],[124,205,68,6.161971569061279],[124,205,69,6.167181015014648],[124,205,70,6.180848598480225],[124,205,71,6.2020697593688965],[124,205,72,6.231013298034668],[124,205,73,6.25203800201416],[124,205,74,6.2597455978393555],[124,205,75,6.262939453125],[124,205,76,6.263560771942139],[124,205,77,6.262023448944092],[124,205,78,6.258963584899902],[124,205,79,6.252208232879639],[124,206,64,6.177631855010986],[124,206,65,6.17827844619751],[124,206,66,6.171967029571533],[124,206,67,6.164862155914307],[124,206,68,6.161971569061279],[124,206,69,6.167181015014648],[124,206,70,6.180848598480225],[124,206,71,6.2020697593688965],[124,206,72,6.231013298034668],[124,206,73,6.25203800201416],[124,206,74,6.2597455978393555],[124,206,75,6.262939453125],[124,206,76,6.263560771942139],[124,206,77,6.262023448944092],[124,206,78,6.258963584899902],[124,206,79,6.252208232879639],[124,207,64,6.177631855010986],[124,207,65,6.17827844619751],[124,207,66,6.171967029571533],[124,207,67,6.164862155914307],[124,207,68,6.161971569061279],[124,207,69,6.167181015014648],[124,207,70,6.180848598480225],[124,207,71,6.2020697593688965],[124,207,72,6.231013298034668],[124,207,73,6.25203800201416],[124,207,74,6.2597455978393555],[124,207,75,6.262939453125],[124,207,76,6.263560771942139],[124,207,77,6.262023448944092],[124,207,78,6.258963584899902],[124,207,79,6.252208232879639],[124,208,64,6.177631855010986],[124,208,65,6.17827844619751],[124,208,66,6.171967029571533],[124,208,67,6.164862155914307],[124,208,68,6.161971569061279],[124,208,69,6.167181015014648],[124,208,70,6.180848598480225],[124,208,71,6.2020697593688965],[124,208,72,6.231013298034668],[124,208,73,6.25203800201416],[124,208,74,6.2597455978393555],[124,208,75,6.262939453125],[124,208,76,6.263560771942139],[124,208,77,6.262023448944092],[124,208,78,6.258963584899902],[124,208,79,6.252208232879639],[124,209,64,6.177631855010986],[124,209,65,6.17827844619751],[124,209,66,6.171967029571533],[124,209,67,6.164862155914307],[124,209,68,6.161971569061279],[124,209,69,6.167181015014648],[124,209,70,6.180848598480225],[124,209,71,6.2020697593688965],[124,209,72,6.231013298034668],[124,209,73,6.25203800201416],[124,209,74,6.2597455978393555],[124,209,75,6.262939453125],[124,209,76,6.263560771942139],[124,209,77,6.262023448944092],[124,209,78,6.258963584899902],[124,209,79,6.252208232879639],[124,210,64,6.177631855010986],[124,210,65,6.17827844619751],[124,210,66,6.171967029571533],[124,210,67,6.164862155914307],[124,210,68,6.161971569061279],[124,210,69,6.167181015014648],[124,210,70,6.180848598480225],[124,210,71,6.2020697593688965],[124,210,72,6.231013298034668],[124,210,73,6.25203800201416],[124,210,74,6.2597455978393555],[124,210,75,6.262939453125],[124,210,76,6.263560771942139],[124,210,77,6.262023448944092],[124,210,78,6.258963584899902],[124,210,79,6.252208232879639],[124,211,64,6.177631855010986],[124,211,65,6.17827844619751],[124,211,66,6.171967029571533],[124,211,67,6.164862155914307],[124,211,68,6.161971569061279],[124,211,69,6.167181015014648],[124,211,70,6.180848598480225],[124,211,71,6.2020697593688965],[124,211,72,6.231013298034668],[124,211,73,6.25203800201416],[124,211,74,6.2597455978393555],[124,211,75,6.262939453125],[124,211,76,6.263560771942139],[124,211,77,6.262023448944092],[124,211,78,6.258963584899902],[124,211,79,6.252208232879639],[124,212,64,6.177631855010986],[124,212,65,6.17827844619751],[124,212,66,6.171967029571533],[124,212,67,6.164862155914307],[124,212,68,6.161971569061279],[124,212,69,6.167181015014648],[124,212,70,6.180848598480225],[124,212,71,6.2020697593688965],[124,212,72,6.231013298034668],[124,212,73,6.25203800201416],[124,212,74,6.2597455978393555],[124,212,75,6.262939453125],[124,212,76,6.263560771942139],[124,212,77,6.262023448944092],[124,212,78,6.258963584899902],[124,212,79,6.252208232879639],[124,213,64,6.177631855010986],[124,213,65,6.17827844619751],[124,213,66,6.171967029571533],[124,213,67,6.164862155914307],[124,213,68,6.161971569061279],[124,213,69,6.167181015014648],[124,213,70,6.180848598480225],[124,213,71,6.2020697593688965],[124,213,72,6.231013298034668],[124,213,73,6.25203800201416],[124,213,74,6.2597455978393555],[124,213,75,6.262939453125],[124,213,76,6.263560771942139],[124,213,77,6.262023448944092],[124,213,78,6.258963584899902],[124,213,79,6.252208232879639],[124,214,64,6.177631855010986],[124,214,65,6.17827844619751],[124,214,66,6.171967029571533],[124,214,67,6.164862155914307],[124,214,68,6.161971569061279],[124,214,69,6.167181015014648],[124,214,70,6.180848598480225],[124,214,71,6.2020697593688965],[124,214,72,6.231013298034668],[124,214,73,6.25203800201416],[124,214,74,6.2597455978393555],[124,214,75,6.262939453125],[124,214,76,6.263560771942139],[124,214,77,6.262023448944092],[124,214,78,6.258963584899902],[124,214,79,6.252208232879639],[124,215,64,6.177631855010986],[124,215,65,6.17827844619751],[124,215,66,6.171967029571533],[124,215,67,6.164862155914307],[124,215,68,6.161971569061279],[124,215,69,6.167181015014648],[124,215,70,6.180848598480225],[124,215,71,6.2020697593688965],[124,215,72,6.231013298034668],[124,215,73,6.25203800201416],[124,215,74,6.2597455978393555],[124,215,75,6.262939453125],[124,215,76,6.263560771942139],[124,215,77,6.262023448944092],[124,215,78,6.258963584899902],[124,215,79,6.252208232879639],[124,216,64,6.177631855010986],[124,216,65,6.17827844619751],[124,216,66,6.171967029571533],[124,216,67,6.164862155914307],[124,216,68,6.161971569061279],[124,216,69,6.167181015014648],[124,216,70,6.180848598480225],[124,216,71,6.2020697593688965],[124,216,72,6.231013298034668],[124,216,73,6.25203800201416],[124,216,74,6.2597455978393555],[124,216,75,6.262939453125],[124,216,76,6.263560771942139],[124,216,77,6.262023448944092],[124,216,78,6.258963584899902],[124,216,79,6.252208232879639],[124,217,64,6.177631855010986],[124,217,65,6.17827844619751],[124,217,66,6.171967029571533],[124,217,67,6.164862155914307],[124,217,68,6.161971569061279],[124,217,69,6.167181015014648],[124,217,70,6.180848598480225],[124,217,71,6.2020697593688965],[124,217,72,6.231013298034668],[124,217,73,6.25203800201416],[124,217,74,6.2597455978393555],[124,217,75,6.262939453125],[124,217,76,6.263560771942139],[124,217,77,6.262023448944092],[124,217,78,6.258963584899902],[124,217,79,6.252208232879639],[124,218,64,6.177631855010986],[124,218,65,6.17827844619751],[124,218,66,6.171967029571533],[124,218,67,6.164862155914307],[124,218,68,6.161971569061279],[124,218,69,6.167181015014648],[124,218,70,6.180848598480225],[124,218,71,6.2020697593688965],[124,218,72,6.231013298034668],[124,218,73,6.25203800201416],[124,218,74,6.2597455978393555],[124,218,75,6.262939453125],[124,218,76,6.263560771942139],[124,218,77,6.262023448944092],[124,218,78,6.258963584899902],[124,218,79,6.252208232879639],[124,219,64,6.177631855010986],[124,219,65,6.17827844619751],[124,219,66,6.171967029571533],[124,219,67,6.164862155914307],[124,219,68,6.161971569061279],[124,219,69,6.167181015014648],[124,219,70,6.180848598480225],[124,219,71,6.2020697593688965],[124,219,72,6.231013298034668],[124,219,73,6.25203800201416],[124,219,74,6.2597455978393555],[124,219,75,6.262939453125],[124,219,76,6.263560771942139],[124,219,77,6.262023448944092],[124,219,78,6.258963584899902],[124,219,79,6.252208232879639],[124,220,64,6.177631855010986],[124,220,65,6.17827844619751],[124,220,66,6.171967029571533],[124,220,67,6.164862155914307],[124,220,68,6.161971569061279],[124,220,69,6.167181015014648],[124,220,70,6.180848598480225],[124,220,71,6.2020697593688965],[124,220,72,6.231013298034668],[124,220,73,6.25203800201416],[124,220,74,6.2597455978393555],[124,220,75,6.262939453125],[124,220,76,6.263560771942139],[124,220,77,6.262023448944092],[124,220,78,6.258963584899902],[124,220,79,6.252208232879639],[124,221,64,6.177631855010986],[124,221,65,6.17827844619751],[124,221,66,6.171967029571533],[124,221,67,6.164862155914307],[124,221,68,6.161971569061279],[124,221,69,6.167181015014648],[124,221,70,6.180848598480225],[124,221,71,6.2020697593688965],[124,221,72,6.231013298034668],[124,221,73,6.25203800201416],[124,221,74,6.2597455978393555],[124,221,75,6.262939453125],[124,221,76,6.263560771942139],[124,221,77,6.262023448944092],[124,221,78,6.258963584899902],[124,221,79,6.252208232879639],[124,222,64,6.177631855010986],[124,222,65,6.17827844619751],[124,222,66,6.171967029571533],[124,222,67,6.164862155914307],[124,222,68,6.161971569061279],[124,222,69,6.167181015014648],[124,222,70,6.180848598480225],[124,222,71,6.2020697593688965],[124,222,72,6.231013298034668],[124,222,73,6.25203800201416],[124,222,74,6.2597455978393555],[124,222,75,6.262939453125],[124,222,76,6.263560771942139],[124,222,77,6.262023448944092],[124,222,78,6.258963584899902],[124,222,79,6.252208232879639],[124,223,64,6.177631855010986],[124,223,65,6.17827844619751],[124,223,66,6.171967029571533],[124,223,67,6.164862155914307],[124,223,68,6.161971569061279],[124,223,69,6.167181015014648],[124,223,70,6.180848598480225],[124,223,71,6.2020697593688965],[124,223,72,6.231013298034668],[124,223,73,6.25203800201416],[124,223,74,6.2597455978393555],[124,223,75,6.262939453125],[124,223,76,6.263560771942139],[124,223,77,6.262023448944092],[124,223,78,6.258963584899902],[124,223,79,6.252208232879639],[124,224,64,6.177631855010986],[124,224,65,6.17827844619751],[124,224,66,6.171967029571533],[124,224,67,6.164862155914307],[124,224,68,6.161971569061279],[124,224,69,6.167181015014648],[124,224,70,6.180848598480225],[124,224,71,6.2020697593688965],[124,224,72,6.231013298034668],[124,224,73,6.25203800201416],[124,224,74,6.2597455978393555],[124,224,75,6.262939453125],[124,224,76,6.263560771942139],[124,224,77,6.262023448944092],[124,224,78,6.258963584899902],[124,224,79,6.252208232879639],[124,225,64,6.177631855010986],[124,225,65,6.17827844619751],[124,225,66,6.171967029571533],[124,225,67,6.164862155914307],[124,225,68,6.161971569061279],[124,225,69,6.167181015014648],[124,225,70,6.180848598480225],[124,225,71,6.2020697593688965],[124,225,72,6.231013298034668],[124,225,73,6.25203800201416],[124,225,74,6.2597455978393555],[124,225,75,6.262939453125],[124,225,76,6.263560771942139],[124,225,77,6.262023448944092],[124,225,78,6.258963584899902],[124,225,79,6.252208232879639],[124,226,64,6.177631855010986],[124,226,65,6.17827844619751],[124,226,66,6.171967029571533],[124,226,67,6.164862155914307],[124,226,68,6.161971569061279],[124,226,69,6.167181015014648],[124,226,70,6.180848598480225],[124,226,71,6.2020697593688965],[124,226,72,6.231013298034668],[124,226,73,6.25203800201416],[124,226,74,6.2597455978393555],[124,226,75,6.262939453125],[124,226,76,6.263560771942139],[124,226,77,6.262023448944092],[124,226,78,6.258963584899902],[124,226,79,6.252208232879639],[124,227,64,6.177631855010986],[124,227,65,6.17827844619751],[124,227,66,6.171967029571533],[124,227,67,6.164862155914307],[124,227,68,6.161971569061279],[124,227,69,6.167181015014648],[124,227,70,6.180848598480225],[124,227,71,6.2020697593688965],[124,227,72,6.231013298034668],[124,227,73,6.25203800201416],[124,227,74,6.2597455978393555],[124,227,75,6.262939453125],[124,227,76,6.263560771942139],[124,227,77,6.262023448944092],[124,227,78,6.258963584899902],[124,227,79,6.252208232879639],[124,228,64,6.177631855010986],[124,228,65,6.17827844619751],[124,228,66,6.171967029571533],[124,228,67,6.164862155914307],[124,228,68,6.161971569061279],[124,228,69,6.167181015014648],[124,228,70,6.180848598480225],[124,228,71,6.2020697593688965],[124,228,72,6.231013298034668],[124,228,73,6.25203800201416],[124,228,74,6.2597455978393555],[124,228,75,6.262939453125],[124,228,76,6.263560771942139],[124,228,77,6.262023448944092],[124,228,78,6.258963584899902],[124,228,79,6.252208232879639],[124,229,64,6.177631855010986],[124,229,65,6.17827844619751],[124,229,66,6.171967029571533],[124,229,67,6.164862155914307],[124,229,68,6.161971569061279],[124,229,69,6.167181015014648],[124,229,70,6.180848598480225],[124,229,71,6.2020697593688965],[124,229,72,6.231013298034668],[124,229,73,6.25203800201416],[124,229,74,6.2597455978393555],[124,229,75,6.262939453125],[124,229,76,6.263560771942139],[124,229,77,6.262023448944092],[124,229,78,6.258963584899902],[124,229,79,6.252208232879639],[124,230,64,6.177631855010986],[124,230,65,6.17827844619751],[124,230,66,6.171967029571533],[124,230,67,6.164862155914307],[124,230,68,6.161971569061279],[124,230,69,6.167181015014648],[124,230,70,6.180848598480225],[124,230,71,6.2020697593688965],[124,230,72,6.231013298034668],[124,230,73,6.25203800201416],[124,230,74,6.2597455978393555],[124,230,75,6.262939453125],[124,230,76,6.263560771942139],[124,230,77,6.262023448944092],[124,230,78,6.258963584899902],[124,230,79,6.252208232879639],[124,231,64,6.177631855010986],[124,231,65,6.17827844619751],[124,231,66,6.171967029571533],[124,231,67,6.164862155914307],[124,231,68,6.161971569061279],[124,231,69,6.167181015014648],[124,231,70,6.180848598480225],[124,231,71,6.2020697593688965],[124,231,72,6.231013298034668],[124,231,73,6.25203800201416],[124,231,74,6.2597455978393555],[124,231,75,6.262939453125],[124,231,76,6.263560771942139],[124,231,77,6.262023448944092],[124,231,78,6.258963584899902],[124,231,79,6.252208232879639],[124,232,64,6.177631855010986],[124,232,65,6.17827844619751],[124,232,66,6.171967029571533],[124,232,67,6.164862155914307],[124,232,68,6.161971569061279],[124,232,69,6.167181015014648],[124,232,70,6.180848598480225],[124,232,71,6.2020697593688965],[124,232,72,6.231013298034668],[124,232,73,6.25203800201416],[124,232,74,6.2597455978393555],[124,232,75,6.262939453125],[124,232,76,6.263560771942139],[124,232,77,6.262023448944092],[124,232,78,6.258963584899902],[124,232,79,6.252208232879639],[124,233,64,6.177631855010986],[124,233,65,6.17827844619751],[124,233,66,6.171967029571533],[124,233,67,6.164862155914307],[124,233,68,6.161971569061279],[124,233,69,6.167181015014648],[124,233,70,6.180848598480225],[124,233,71,6.2020697593688965],[124,233,72,6.231013298034668],[124,233,73,6.25203800201416],[124,233,74,6.2597455978393555],[124,233,75,6.262939453125],[124,233,76,6.263560771942139],[124,233,77,6.262023448944092],[124,233,78,6.258963584899902],[124,233,79,6.252208232879639],[124,234,64,6.177631855010986],[124,234,65,6.17827844619751],[124,234,66,6.171967029571533],[124,234,67,6.164862155914307],[124,234,68,6.161971569061279],[124,234,69,6.167181015014648],[124,234,70,6.180848598480225],[124,234,71,6.2020697593688965],[124,234,72,6.231013298034668],[124,234,73,6.25203800201416],[124,234,74,6.2597455978393555],[124,234,75,6.262939453125],[124,234,76,6.263560771942139],[124,234,77,6.262023448944092],[124,234,78,6.258963584899902],[124,234,79,6.252208232879639],[124,235,64,6.177631855010986],[124,235,65,6.17827844619751],[124,235,66,6.171967029571533],[124,235,67,6.164862155914307],[124,235,68,6.161971569061279],[124,235,69,6.167181015014648],[124,235,70,6.180848598480225],[124,235,71,6.2020697593688965],[124,235,72,6.231013298034668],[124,235,73,6.25203800201416],[124,235,74,6.2597455978393555],[124,235,75,6.262939453125],[124,235,76,6.263560771942139],[124,235,77,6.262023448944092],[124,235,78,6.258963584899902],[124,235,79,6.252208232879639],[124,236,64,6.177631855010986],[124,236,65,6.17827844619751],[124,236,66,6.171967029571533],[124,236,67,6.164862155914307],[124,236,68,6.161971569061279],[124,236,69,6.167181015014648],[124,236,70,6.180848598480225],[124,236,71,6.2020697593688965],[124,236,72,6.231013298034668],[124,236,73,6.25203800201416],[124,236,74,6.2597455978393555],[124,236,75,6.262939453125],[124,236,76,6.263560771942139],[124,236,77,6.262023448944092],[124,236,78,6.258963584899902],[124,236,79,6.252208232879639],[124,237,64,6.177631855010986],[124,237,65,6.17827844619751],[124,237,66,6.171967029571533],[124,237,67,6.164862155914307],[124,237,68,6.161971569061279],[124,237,69,6.167181015014648],[124,237,70,6.180848598480225],[124,237,71,6.2020697593688965],[124,237,72,6.231013298034668],[124,237,73,6.25203800201416],[124,237,74,6.2597455978393555],[124,237,75,6.262939453125],[124,237,76,6.263560771942139],[124,237,77,6.262023448944092],[124,237,78,6.258963584899902],[124,237,79,6.252208232879639],[124,238,64,6.177631855010986],[124,238,65,6.17827844619751],[124,238,66,6.171967029571533],[124,238,67,6.164862155914307],[124,238,68,6.161971569061279],[124,238,69,6.167181015014648],[124,238,70,6.180848598480225],[124,238,71,6.2020697593688965],[124,238,72,6.231013298034668],[124,238,73,6.25203800201416],[124,238,74,6.2597455978393555],[124,238,75,6.262939453125],[124,238,76,6.263560771942139],[124,238,77,6.262023448944092],[124,238,78,6.258963584899902],[124,238,79,6.252208232879639],[124,239,64,6.177631855010986],[124,239,65,6.17827844619751],[124,239,66,6.171967029571533],[124,239,67,6.164862155914307],[124,239,68,6.161971569061279],[124,239,69,6.167181015014648],[124,239,70,6.180848598480225],[124,239,71,6.2020697593688965],[124,239,72,6.231013298034668],[124,239,73,6.25203800201416],[124,239,74,6.2597455978393555],[124,239,75,6.262939453125],[124,239,76,6.263560771942139],[124,239,77,6.262023448944092],[124,239,78,6.258963584899902],[124,239,79,6.252208232879639],[124,240,64,6.177631855010986],[124,240,65,6.17827844619751],[124,240,66,6.171967029571533],[124,240,67,6.164862155914307],[124,240,68,6.161971569061279],[124,240,69,6.167181015014648],[124,240,70,6.180848598480225],[124,240,71,6.2020697593688965],[124,240,72,6.231013298034668],[124,240,73,6.25203800201416],[124,240,74,6.2597455978393555],[124,240,75,6.262939453125],[124,240,76,6.263560771942139],[124,240,77,6.262023448944092],[124,240,78,6.258963584899902],[124,240,79,6.252208232879639],[124,241,64,6.177631855010986],[124,241,65,6.17827844619751],[124,241,66,6.171967029571533],[124,241,67,6.164862155914307],[124,241,68,6.161971569061279],[124,241,69,6.167181015014648],[124,241,70,6.180848598480225],[124,241,71,6.2020697593688965],[124,241,72,6.231013298034668],[124,241,73,6.25203800201416],[124,241,74,6.2597455978393555],[124,241,75,6.262939453125],[124,241,76,6.263560771942139],[124,241,77,6.262023448944092],[124,241,78,6.258963584899902],[124,241,79,6.252208232879639],[124,242,64,6.177631855010986],[124,242,65,6.17827844619751],[124,242,66,6.171967029571533],[124,242,67,6.164862155914307],[124,242,68,6.161971569061279],[124,242,69,6.167181015014648],[124,242,70,6.180848598480225],[124,242,71,6.2020697593688965],[124,242,72,6.231013298034668],[124,242,73,6.25203800201416],[124,242,74,6.2597455978393555],[124,242,75,6.262939453125],[124,242,76,6.263560771942139],[124,242,77,6.262023448944092],[124,242,78,6.258963584899902],[124,242,79,6.252208232879639],[124,243,64,6.177631855010986],[124,243,65,6.17827844619751],[124,243,66,6.171967029571533],[124,243,67,6.164862155914307],[124,243,68,6.161971569061279],[124,243,69,6.167181015014648],[124,243,70,6.180848598480225],[124,243,71,6.2020697593688965],[124,243,72,6.231013298034668],[124,243,73,6.25203800201416],[124,243,74,6.2597455978393555],[124,243,75,6.262939453125],[124,243,76,6.263560771942139],[124,243,77,6.262023448944092],[124,243,78,6.258963584899902],[124,243,79,6.252208232879639],[124,244,64,6.177631855010986],[124,244,65,6.17827844619751],[124,244,66,6.171967029571533],[124,244,67,6.164862155914307],[124,244,68,6.161971569061279],[124,244,69,6.167181015014648],[124,244,70,6.180848598480225],[124,244,71,6.2020697593688965],[124,244,72,6.231013298034668],[124,244,73,6.25203800201416],[124,244,74,6.2597455978393555],[124,244,75,6.262939453125],[124,244,76,6.263560771942139],[124,244,77,6.262023448944092],[124,244,78,6.258963584899902],[124,244,79,6.252208232879639],[124,245,64,6.177631855010986],[124,245,65,6.17827844619751],[124,245,66,6.171967029571533],[124,245,67,6.164862155914307],[124,245,68,6.161971569061279],[124,245,69,6.167181015014648],[124,245,70,6.180848598480225],[124,245,71,6.2020697593688965],[124,245,72,6.231013298034668],[124,245,73,6.25203800201416],[124,245,74,6.2597455978393555],[124,245,75,6.262939453125],[124,245,76,6.263560771942139],[124,245,77,6.262023448944092],[124,245,78,6.258963584899902],[124,245,79,6.252208232879639],[124,246,64,6.177631855010986],[124,246,65,6.17827844619751],[124,246,66,6.171967029571533],[124,246,67,6.164862155914307],[124,246,68,6.161971569061279],[124,246,69,6.167181015014648],[124,246,70,6.180848598480225],[124,246,71,6.2020697593688965],[124,246,72,6.231013298034668],[124,246,73,6.25203800201416],[124,246,74,6.2597455978393555],[124,246,75,6.262939453125],[124,246,76,6.263560771942139],[124,246,77,6.262023448944092],[124,246,78,6.258963584899902],[124,246,79,6.252208232879639],[124,247,64,6.177631855010986],[124,247,65,6.17827844619751],[124,247,66,6.171967029571533],[124,247,67,6.164862155914307],[124,247,68,6.161971569061279],[124,247,69,6.167181015014648],[124,247,70,6.180848598480225],[124,247,71,6.2020697593688965],[124,247,72,6.231013298034668],[124,247,73,6.25203800201416],[124,247,74,6.2597455978393555],[124,247,75,6.262939453125],[124,247,76,6.263560771942139],[124,247,77,6.262023448944092],[124,247,78,6.258963584899902],[124,247,79,6.252208232879639],[124,248,64,6.177631855010986],[124,248,65,6.17827844619751],[124,248,66,6.171967029571533],[124,248,67,6.164862155914307],[124,248,68,6.161971569061279],[124,248,69,6.167181015014648],[124,248,70,6.180848598480225],[124,248,71,6.2020697593688965],[124,248,72,6.231013298034668],[124,248,73,6.25203800201416],[124,248,74,6.2597455978393555],[124,248,75,6.262939453125],[124,248,76,6.263560771942139],[124,248,77,6.262023448944092],[124,248,78,6.258963584899902],[124,248,79,6.252208232879639],[124,249,64,6.177631855010986],[124,249,65,6.17827844619751],[124,249,66,6.171967029571533],[124,249,67,6.164862155914307],[124,249,68,6.161971569061279],[124,249,69,6.167181015014648],[124,249,70,6.180848598480225],[124,249,71,6.2020697593688965],[124,249,72,6.231013298034668],[124,249,73,6.25203800201416],[124,249,74,6.2597455978393555],[124,249,75,6.262939453125],[124,249,76,6.263560771942139],[124,249,77,6.262023448944092],[124,249,78,6.258963584899902],[124,249,79,6.252208232879639],[124,250,64,6.177631855010986],[124,250,65,6.17827844619751],[124,250,66,6.171967029571533],[124,250,67,6.164862155914307],[124,250,68,6.161971569061279],[124,250,69,6.167181015014648],[124,250,70,6.180848598480225],[124,250,71,6.2020697593688965],[124,250,72,6.231013298034668],[124,250,73,6.25203800201416],[124,250,74,6.2597455978393555],[124,250,75,6.262939453125],[124,250,76,6.263560771942139],[124,250,77,6.262023448944092],[124,250,78,6.258963584899902],[124,250,79,6.252208232879639],[124,251,64,6.177631855010986],[124,251,65,6.17827844619751],[124,251,66,6.171967029571533],[124,251,67,6.164862155914307],[124,251,68,6.161971569061279],[124,251,69,6.167181015014648],[124,251,70,6.180848598480225],[124,251,71,6.2020697593688965],[124,251,72,6.231013298034668],[124,251,73,6.25203800201416],[124,251,74,6.2597455978393555],[124,251,75,6.262939453125],[124,251,76,6.263560771942139],[124,251,77,6.262023448944092],[124,251,78,6.258963584899902],[124,251,79,6.252208232879639],[124,252,64,6.177631855010986],[124,252,65,6.17827844619751],[124,252,66,6.171967029571533],[124,252,67,6.164862155914307],[124,252,68,6.161971569061279],[124,252,69,6.167181015014648],[124,252,70,6.180848598480225],[124,252,71,6.2020697593688965],[124,252,72,6.231013298034668],[124,252,73,6.25203800201416],[124,252,74,6.2597455978393555],[124,252,75,6.262939453125],[124,252,76,6.263560771942139],[124,252,77,6.262023448944092],[124,252,78,6.258963584899902],[124,252,79,6.252208232879639],[124,253,64,6.177631855010986],[124,253,65,6.17827844619751],[124,253,66,6.171967029571533],[124,253,67,6.164862155914307],[124,253,68,6.161971569061279],[124,253,69,6.167181015014648],[124,253,70,6.180848598480225],[124,253,71,6.2020697593688965],[124,253,72,6.231013298034668],[124,253,73,6.25203800201416],[124,253,74,6.2597455978393555],[124,253,75,6.262939453125],[124,253,76,6.263560771942139],[124,253,77,6.262023448944092],[124,253,78,6.258963584899902],[124,253,79,6.252208232879639],[124,254,64,6.177631855010986],[124,254,65,6.17827844619751],[124,254,66,6.171967029571533],[124,254,67,6.164862155914307],[124,254,68,6.161971569061279],[124,254,69,6.167181015014648],[124,254,70,6.180848598480225],[124,254,71,6.2020697593688965],[124,254,72,6.231013298034668],[124,254,73,6.25203800201416],[124,254,74,6.2597455978393555],[124,254,75,6.262939453125],[124,254,76,6.263560771942139],[124,254,77,6.262023448944092],[124,254,78,6.258963584899902],[124,254,79,6.252208232879639],[124,255,64,6.177631855010986],[124,255,65,6.17827844619751],[124,255,66,6.171967029571533],[124,255,67,6.164862155914307],[124,255,68,6.161971569061279],[124,255,69,6.167181015014648],[124,255,70,6.180848598480225],[124,255,71,6.2020697593688965],[124,255,72,6.231013298034668],[124,255,73,6.25203800201416],[124,255,74,6.2597455978393555],[124,255,75,6.262939453125],[124,255,76,6.263560771942139],[124,255,77,6.262023448944092],[124,255,78,6.258963584899902],[124,255,79,6.252208232879639],[124,256,64,6.177631855010986],[124,256,65,6.17827844619751],[124,256,66,6.171967029571533],[124,256,67,6.164862155914307],[124,256,68,6.161971569061279],[124,256,69,6.167181015014648],[124,256,70,6.180848598480225],[124,256,71,6.2020697593688965],[124,256,72,6.231013298034668],[124,256,73,6.25203800201416],[124,256,74,6.2597455978393555],[124,256,75,6.262939453125],[124,256,76,6.263560771942139],[124,256,77,6.262023448944092],[124,256,78,6.258963584899902],[124,256,79,6.252208232879639],[124,257,64,6.177631855010986],[124,257,65,6.17827844619751],[124,257,66,6.171967029571533],[124,257,67,6.164862155914307],[124,257,68,6.161971569061279],[124,257,69,6.167181015014648],[124,257,70,6.180848598480225],[124,257,71,6.2020697593688965],[124,257,72,6.231013298034668],[124,257,73,6.25203800201416],[124,257,74,6.2597455978393555],[124,257,75,6.262939453125],[124,257,76,6.263560771942139],[124,257,77,6.262023448944092],[124,257,78,6.258963584899902],[124,257,79,6.252208232879639],[124,258,64,6.177631855010986],[124,258,65,6.17827844619751],[124,258,66,6.171967029571533],[124,258,67,6.164862155914307],[124,258,68,6.161971569061279],[124,258,69,6.167181015014648],[124,258,70,6.180848598480225],[124,258,71,6.2020697593688965],[124,258,72,6.231013298034668],[124,258,73,6.25203800201416],[124,258,74,6.2597455978393555],[124,258,75,6.262939453125],[124,258,76,6.263560771942139],[124,258,77,6.262023448944092],[124,258,78,6.258963584899902],[124,258,79,6.252208232879639],[124,259,64,6.177631855010986],[124,259,65,6.17827844619751],[124,259,66,6.171967029571533],[124,259,67,6.164862155914307],[124,259,68,6.161971569061279],[124,259,69,6.167181015014648],[124,259,70,6.180848598480225],[124,259,71,6.2020697593688965],[124,259,72,6.231013298034668],[124,259,73,6.25203800201416],[124,259,74,6.2597455978393555],[124,259,75,6.262939453125],[124,259,76,6.263560771942139],[124,259,77,6.262023448944092],[124,259,78,6.258963584899902],[124,259,79,6.252208232879639],[124,260,64,6.177631855010986],[124,260,65,6.17827844619751],[124,260,66,6.171967029571533],[124,260,67,6.164862155914307],[124,260,68,6.161971569061279],[124,260,69,6.167181015014648],[124,260,70,6.180848598480225],[124,260,71,6.2020697593688965],[124,260,72,6.231013298034668],[124,260,73,6.25203800201416],[124,260,74,6.2597455978393555],[124,260,75,6.262939453125],[124,260,76,6.263560771942139],[124,260,77,6.262023448944092],[124,260,78,6.258963584899902],[124,260,79,6.252208232879639],[124,261,64,6.177631855010986],[124,261,65,6.17827844619751],[124,261,66,6.171967029571533],[124,261,67,6.164862155914307],[124,261,68,6.161971569061279],[124,261,69,6.167181015014648],[124,261,70,6.180848598480225],[124,261,71,6.2020697593688965],[124,261,72,6.231013298034668],[124,261,73,6.25203800201416],[124,261,74,6.2597455978393555],[124,261,75,6.262939453125],[124,261,76,6.263560771942139],[124,261,77,6.262023448944092],[124,261,78,6.258963584899902],[124,261,79,6.252208232879639],[124,262,64,6.177631855010986],[124,262,65,6.17827844619751],[124,262,66,6.171967029571533],[124,262,67,6.164862155914307],[124,262,68,6.161971569061279],[124,262,69,6.167181015014648],[124,262,70,6.180848598480225],[124,262,71,6.2020697593688965],[124,262,72,6.231013298034668],[124,262,73,6.25203800201416],[124,262,74,6.2597455978393555],[124,262,75,6.262939453125],[124,262,76,6.263560771942139],[124,262,77,6.262023448944092],[124,262,78,6.258963584899902],[124,262,79,6.252208232879639],[124,263,64,6.177631855010986],[124,263,65,6.17827844619751],[124,263,66,6.171967029571533],[124,263,67,6.164862155914307],[124,263,68,6.161971569061279],[124,263,69,6.167181015014648],[124,263,70,6.180848598480225],[124,263,71,6.2020697593688965],[124,263,72,6.231013298034668],[124,263,73,6.25203800201416],[124,263,74,6.2597455978393555],[124,263,75,6.262939453125],[124,263,76,6.263560771942139],[124,263,77,6.262023448944092],[124,263,78,6.258963584899902],[124,263,79,6.252208232879639],[124,264,64,6.177631855010986],[124,264,65,6.17827844619751],[124,264,66,6.171967029571533],[124,264,67,6.164862155914307],[124,264,68,6.161971569061279],[124,264,69,6.167181015014648],[124,264,70,6.180848598480225],[124,264,71,6.2020697593688965],[124,264,72,6.231013298034668],[124,264,73,6.25203800201416],[124,264,74,6.2597455978393555],[124,264,75,6.262939453125],[124,264,76,6.263560771942139],[124,264,77,6.262023448944092],[124,264,78,6.258963584899902],[124,264,79,6.252208232879639],[124,265,64,6.177631855010986],[124,265,65,6.17827844619751],[124,265,66,6.171967029571533],[124,265,67,6.164862155914307],[124,265,68,6.161971569061279],[124,265,69,6.167181015014648],[124,265,70,6.180848598480225],[124,265,71,6.2020697593688965],[124,265,72,6.231013298034668],[124,265,73,6.25203800201416],[124,265,74,6.2597455978393555],[124,265,75,6.262939453125],[124,265,76,6.263560771942139],[124,265,77,6.262023448944092],[124,265,78,6.258963584899902],[124,265,79,6.252208232879639],[124,266,64,6.177631855010986],[124,266,65,6.17827844619751],[124,266,66,6.171967029571533],[124,266,67,6.164862155914307],[124,266,68,6.161971569061279],[124,266,69,6.167181015014648],[124,266,70,6.180848598480225],[124,266,71,6.2020697593688965],[124,266,72,6.231013298034668],[124,266,73,6.25203800201416],[124,266,74,6.2597455978393555],[124,266,75,6.262939453125],[124,266,76,6.263560771942139],[124,266,77,6.262023448944092],[124,266,78,6.258963584899902],[124,266,79,6.252208232879639],[124,267,64,6.177631855010986],[124,267,65,6.17827844619751],[124,267,66,6.171967029571533],[124,267,67,6.164862155914307],[124,267,68,6.161971569061279],[124,267,69,6.167181015014648],[124,267,70,6.180848598480225],[124,267,71,6.2020697593688965],[124,267,72,6.231013298034668],[124,267,73,6.25203800201416],[124,267,74,6.2597455978393555],[124,267,75,6.262939453125],[124,267,76,6.263560771942139],[124,267,77,6.262023448944092],[124,267,78,6.258963584899902],[124,267,79,6.252208232879639],[124,268,64,6.177631855010986],[124,268,65,6.17827844619751],[124,268,66,6.171967029571533],[124,268,67,6.164862155914307],[124,268,68,6.161971569061279],[124,268,69,6.167181015014648],[124,268,70,6.180848598480225],[124,268,71,6.2020697593688965],[124,268,72,6.231013298034668],[124,268,73,6.25203800201416],[124,268,74,6.2597455978393555],[124,268,75,6.262939453125],[124,268,76,6.263560771942139],[124,268,77,6.262023448944092],[124,268,78,6.258963584899902],[124,268,79,6.252208232879639],[124,269,64,6.177631855010986],[124,269,65,6.17827844619751],[124,269,66,6.171967029571533],[124,269,67,6.164862155914307],[124,269,68,6.161971569061279],[124,269,69,6.167181015014648],[124,269,70,6.180848598480225],[124,269,71,6.2020697593688965],[124,269,72,6.231013298034668],[124,269,73,6.25203800201416],[124,269,74,6.2597455978393555],[124,269,75,6.262939453125],[124,269,76,6.263560771942139],[124,269,77,6.262023448944092],[124,269,78,6.258963584899902],[124,269,79,6.252208232879639],[124,270,64,6.177631855010986],[124,270,65,6.17827844619751],[124,270,66,6.171967029571533],[124,270,67,6.164862155914307],[124,270,68,6.161971569061279],[124,270,69,6.167181015014648],[124,270,70,6.180848598480225],[124,270,71,6.2020697593688965],[124,270,72,6.231013298034668],[124,270,73,6.25203800201416],[124,270,74,6.2597455978393555],[124,270,75,6.262939453125],[124,270,76,6.263560771942139],[124,270,77,6.262023448944092],[124,270,78,6.258963584899902],[124,270,79,6.252208232879639],[124,271,64,6.177631855010986],[124,271,65,6.17827844619751],[124,271,66,6.171967029571533],[124,271,67,6.164862155914307],[124,271,68,6.161971569061279],[124,271,69,6.167181015014648],[124,271,70,6.180848598480225],[124,271,71,6.2020697593688965],[124,271,72,6.231013298034668],[124,271,73,6.25203800201416],[124,271,74,6.2597455978393555],[124,271,75,6.262939453125],[124,271,76,6.263560771942139],[124,271,77,6.262023448944092],[124,271,78,6.258963584899902],[124,271,79,6.252208232879639],[124,272,64,6.177631855010986],[124,272,65,6.17827844619751],[124,272,66,6.171967029571533],[124,272,67,6.164862155914307],[124,272,68,6.161971569061279],[124,272,69,6.167181015014648],[124,272,70,6.180848598480225],[124,272,71,6.2020697593688965],[124,272,72,6.231013298034668],[124,272,73,6.25203800201416],[124,272,74,6.2597455978393555],[124,272,75,6.262939453125],[124,272,76,6.263560771942139],[124,272,77,6.262023448944092],[124,272,78,6.258963584899902],[124,272,79,6.252208232879639],[124,273,64,6.177631855010986],[124,273,65,6.17827844619751],[124,273,66,6.171967029571533],[124,273,67,6.164862155914307],[124,273,68,6.161971569061279],[124,273,69,6.167181015014648],[124,273,70,6.180848598480225],[124,273,71,6.2020697593688965],[124,273,72,6.231013298034668],[124,273,73,6.25203800201416],[124,273,74,6.2597455978393555],[124,273,75,6.262939453125],[124,273,76,6.263560771942139],[124,273,77,6.262023448944092],[124,273,78,6.258963584899902],[124,273,79,6.252208232879639],[124,274,64,6.177631855010986],[124,274,65,6.17827844619751],[124,274,66,6.171967029571533],[124,274,67,6.164862155914307],[124,274,68,6.161971569061279],[124,274,69,6.167181015014648],[124,274,70,6.180848598480225],[124,274,71,6.2020697593688965],[124,274,72,6.231013298034668],[124,274,73,6.25203800201416],[124,274,74,6.2597455978393555],[124,274,75,6.262939453125],[124,274,76,6.263560771942139],[124,274,77,6.262023448944092],[124,274,78,6.258963584899902],[124,274,79,6.252208232879639],[124,275,64,6.177631855010986],[124,275,65,6.17827844619751],[124,275,66,6.171967029571533],[124,275,67,6.164862155914307],[124,275,68,6.161971569061279],[124,275,69,6.167181015014648],[124,275,70,6.180848598480225],[124,275,71,6.2020697593688965],[124,275,72,6.231013298034668],[124,275,73,6.25203800201416],[124,275,74,6.2597455978393555],[124,275,75,6.262939453125],[124,275,76,6.263560771942139],[124,275,77,6.262023448944092],[124,275,78,6.258963584899902],[124,275,79,6.252208232879639],[124,276,64,6.177631855010986],[124,276,65,6.17827844619751],[124,276,66,6.171967029571533],[124,276,67,6.164862155914307],[124,276,68,6.161971569061279],[124,276,69,6.167181015014648],[124,276,70,6.180848598480225],[124,276,71,6.2020697593688965],[124,276,72,6.231013298034668],[124,276,73,6.25203800201416],[124,276,74,6.2597455978393555],[124,276,75,6.262939453125],[124,276,76,6.263560771942139],[124,276,77,6.262023448944092],[124,276,78,6.258963584899902],[124,276,79,6.252208232879639],[124,277,64,6.177631855010986],[124,277,65,6.17827844619751],[124,277,66,6.171967029571533],[124,277,67,6.164862155914307],[124,277,68,6.161971569061279],[124,277,69,6.167181015014648],[124,277,70,6.180848598480225],[124,277,71,6.2020697593688965],[124,277,72,6.231013298034668],[124,277,73,6.25203800201416],[124,277,74,6.2597455978393555],[124,277,75,6.262939453125],[124,277,76,6.263560771942139],[124,277,77,6.262023448944092],[124,277,78,6.258963584899902],[124,277,79,6.252208232879639],[124,278,64,6.177631855010986],[124,278,65,6.17827844619751],[124,278,66,6.171967029571533],[124,278,67,6.164862155914307],[124,278,68,6.161971569061279],[124,278,69,6.167181015014648],[124,278,70,6.180848598480225],[124,278,71,6.2020697593688965],[124,278,72,6.231013298034668],[124,278,73,6.25203800201416],[124,278,74,6.2597455978393555],[124,278,75,6.262939453125],[124,278,76,6.263560771942139],[124,278,77,6.262023448944092],[124,278,78,6.258963584899902],[124,278,79,6.252208232879639],[124,279,64,6.177631855010986],[124,279,65,6.17827844619751],[124,279,66,6.171967029571533],[124,279,67,6.164862155914307],[124,279,68,6.161971569061279],[124,279,69,6.167181015014648],[124,279,70,6.180848598480225],[124,279,71,6.2020697593688965],[124,279,72,6.231013298034668],[124,279,73,6.25203800201416],[124,279,74,6.2597455978393555],[124,279,75,6.262939453125],[124,279,76,6.263560771942139],[124,279,77,6.262023448944092],[124,279,78,6.258963584899902],[124,279,79,6.252208232879639],[124,280,64,6.177631855010986],[124,280,65,6.17827844619751],[124,280,66,6.171967029571533],[124,280,67,6.164862155914307],[124,280,68,6.161971569061279],[124,280,69,6.167181015014648],[124,280,70,6.180848598480225],[124,280,71,6.2020697593688965],[124,280,72,6.231013298034668],[124,280,73,6.25203800201416],[124,280,74,6.2597455978393555],[124,280,75,6.262939453125],[124,280,76,6.263560771942139],[124,280,77,6.262023448944092],[124,280,78,6.258963584899902],[124,280,79,6.252208232879639],[124,281,64,6.177631855010986],[124,281,65,6.17827844619751],[124,281,66,6.171967029571533],[124,281,67,6.164862155914307],[124,281,68,6.161971569061279],[124,281,69,6.167181015014648],[124,281,70,6.180848598480225],[124,281,71,6.2020697593688965],[124,281,72,6.231013298034668],[124,281,73,6.25203800201416],[124,281,74,6.2597455978393555],[124,281,75,6.262939453125],[124,281,76,6.263560771942139],[124,281,77,6.262023448944092],[124,281,78,6.258963584899902],[124,281,79,6.252208232879639],[124,282,64,6.177631855010986],[124,282,65,6.17827844619751],[124,282,66,6.171967029571533],[124,282,67,6.164862155914307],[124,282,68,6.161971569061279],[124,282,69,6.167181015014648],[124,282,70,6.180848598480225],[124,282,71,6.2020697593688965],[124,282,72,6.231013298034668],[124,282,73,6.25203800201416],[124,282,74,6.2597455978393555],[124,282,75,6.262939453125],[124,282,76,6.263560771942139],[124,282,77,6.262023448944092],[124,282,78,6.258963584899902],[124,282,79,6.252208232879639],[124,283,64,6.177631855010986],[124,283,65,6.17827844619751],[124,283,66,6.171967029571533],[124,283,67,6.164862155914307],[124,283,68,6.161971569061279],[124,283,69,6.167181015014648],[124,283,70,6.180848598480225],[124,283,71,6.2020697593688965],[124,283,72,6.231013298034668],[124,283,73,6.25203800201416],[124,283,74,6.2597455978393555],[124,283,75,6.262939453125],[124,283,76,6.263560771942139],[124,283,77,6.262023448944092],[124,283,78,6.258963584899902],[124,283,79,6.252208232879639],[124,284,64,6.177631855010986],[124,284,65,6.17827844619751],[124,284,66,6.171967029571533],[124,284,67,6.164862155914307],[124,284,68,6.161971569061279],[124,284,69,6.167181015014648],[124,284,70,6.180848598480225],[124,284,71,6.2020697593688965],[124,284,72,6.231013298034668],[124,284,73,6.25203800201416],[124,284,74,6.2597455978393555],[124,284,75,6.262939453125],[124,284,76,6.263560771942139],[124,284,77,6.262023448944092],[124,284,78,6.258963584899902],[124,284,79,6.252208232879639],[124,285,64,6.177631855010986],[124,285,65,6.17827844619751],[124,285,66,6.171967029571533],[124,285,67,6.164862155914307],[124,285,68,6.161971569061279],[124,285,69,6.167181015014648],[124,285,70,6.180848598480225],[124,285,71,6.2020697593688965],[124,285,72,6.231013298034668],[124,285,73,6.25203800201416],[124,285,74,6.2597455978393555],[124,285,75,6.262939453125],[124,285,76,6.263560771942139],[124,285,77,6.262023448944092],[124,285,78,6.258963584899902],[124,285,79,6.252208232879639],[124,286,64,6.177631855010986],[124,286,65,6.17827844619751],[124,286,66,6.171967029571533],[124,286,67,6.164862155914307],[124,286,68,6.161971569061279],[124,286,69,6.167181015014648],[124,286,70,6.180848598480225],[124,286,71,6.2020697593688965],[124,286,72,6.231013298034668],[124,286,73,6.25203800201416],[124,286,74,6.2597455978393555],[124,286,75,6.262939453125],[124,286,76,6.263560771942139],[124,286,77,6.262023448944092],[124,286,78,6.258963584899902],[124,286,79,6.252208232879639],[124,287,64,6.177631855010986],[124,287,65,6.17827844619751],[124,287,66,6.171967029571533],[124,287,67,6.164862155914307],[124,287,68,6.161971569061279],[124,287,69,6.167181015014648],[124,287,70,6.180848598480225],[124,287,71,6.2020697593688965],[124,287,72,6.231013298034668],[124,287,73,6.25203800201416],[124,287,74,6.2597455978393555],[124,287,75,6.262939453125],[124,287,76,6.263560771942139],[124,287,77,6.262023448944092],[124,287,78,6.258963584899902],[124,287,79,6.252208232879639],[124,288,64,6.177631855010986],[124,288,65,6.17827844619751],[124,288,66,6.171967029571533],[124,288,67,6.164862155914307],[124,288,68,6.161971569061279],[124,288,69,6.167181015014648],[124,288,70,6.180848598480225],[124,288,71,6.2020697593688965],[124,288,72,6.231013298034668],[124,288,73,6.25203800201416],[124,288,74,6.2597455978393555],[124,288,75,6.262939453125],[124,288,76,6.263560771942139],[124,288,77,6.262023448944092],[124,288,78,6.258963584899902],[124,288,79,6.252208232879639],[124,289,64,6.177631855010986],[124,289,65,6.17827844619751],[124,289,66,6.171967029571533],[124,289,67,6.164862155914307],[124,289,68,6.161971569061279],[124,289,69,6.167181015014648],[124,289,70,6.180848598480225],[124,289,71,6.2020697593688965],[124,289,72,6.231013298034668],[124,289,73,6.25203800201416],[124,289,74,6.2597455978393555],[124,289,75,6.262939453125],[124,289,76,6.263560771942139],[124,289,77,6.262023448944092],[124,289,78,6.258963584899902],[124,289,79,6.252208232879639],[124,290,64,6.177631855010986],[124,290,65,6.17827844619751],[124,290,66,6.171967029571533],[124,290,67,6.164862155914307],[124,290,68,6.161971569061279],[124,290,69,6.167181015014648],[124,290,70,6.180848598480225],[124,290,71,6.2020697593688965],[124,290,72,6.231013298034668],[124,290,73,6.25203800201416],[124,290,74,6.2597455978393555],[124,290,75,6.262939453125],[124,290,76,6.263560771942139],[124,290,77,6.262023448944092],[124,290,78,6.258963584899902],[124,290,79,6.252208232879639],[124,291,64,6.177631855010986],[124,291,65,6.17827844619751],[124,291,66,6.171967029571533],[124,291,67,6.164862155914307],[124,291,68,6.161971569061279],[124,291,69,6.167181015014648],[124,291,70,6.180848598480225],[124,291,71,6.2020697593688965],[124,291,72,6.231013298034668],[124,291,73,6.25203800201416],[124,291,74,6.2597455978393555],[124,291,75,6.262939453125],[124,291,76,6.263560771942139],[124,291,77,6.262023448944092],[124,291,78,6.258963584899902],[124,291,79,6.252208232879639],[124,292,64,6.177631855010986],[124,292,65,6.17827844619751],[124,292,66,6.171967029571533],[124,292,67,6.164862155914307],[124,292,68,6.161971569061279],[124,292,69,6.167181015014648],[124,292,70,6.180848598480225],[124,292,71,6.2020697593688965],[124,292,72,6.231013298034668],[124,292,73,6.25203800201416],[124,292,74,6.2597455978393555],[124,292,75,6.262939453125],[124,292,76,6.263560771942139],[124,292,77,6.262023448944092],[124,292,78,6.258963584899902],[124,292,79,6.252208232879639],[124,293,64,6.177631855010986],[124,293,65,6.17827844619751],[124,293,66,6.171967029571533],[124,293,67,6.164862155914307],[124,293,68,6.161971569061279],[124,293,69,6.167181015014648],[124,293,70,6.180848598480225],[124,293,71,6.2020697593688965],[124,293,72,6.231013298034668],[124,293,73,6.25203800201416],[124,293,74,6.2597455978393555],[124,293,75,6.262939453125],[124,293,76,6.263560771942139],[124,293,77,6.262023448944092],[124,293,78,6.258963584899902],[124,293,79,6.252208232879639],[124,294,64,6.177631855010986],[124,294,65,6.17827844619751],[124,294,66,6.171967029571533],[124,294,67,6.164862155914307],[124,294,68,6.161971569061279],[124,294,69,6.167181015014648],[124,294,70,6.180848598480225],[124,294,71,6.2020697593688965],[124,294,72,6.231013298034668],[124,294,73,6.25203800201416],[124,294,74,6.2597455978393555],[124,294,75,6.262939453125],[124,294,76,6.263560771942139],[124,294,77,6.262023448944092],[124,294,78,6.258963584899902],[124,294,79,6.252208232879639],[124,295,64,6.177631855010986],[124,295,65,6.17827844619751],[124,295,66,6.171967029571533],[124,295,67,6.164862155914307],[124,295,68,6.161971569061279],[124,295,69,6.167181015014648],[124,295,70,6.180848598480225],[124,295,71,6.2020697593688965],[124,295,72,6.231013298034668],[124,295,73,6.25203800201416],[124,295,74,6.2597455978393555],[124,295,75,6.262939453125],[124,295,76,6.263560771942139],[124,295,77,6.262023448944092],[124,295,78,6.258963584899902],[124,295,79,6.252208232879639],[124,296,64,6.177631855010986],[124,296,65,6.17827844619751],[124,296,66,6.171967029571533],[124,296,67,6.164862155914307],[124,296,68,6.161971569061279],[124,296,69,6.167181015014648],[124,296,70,6.180848598480225],[124,296,71,6.2020697593688965],[124,296,72,6.231013298034668],[124,296,73,6.25203800201416],[124,296,74,6.2597455978393555],[124,296,75,6.262939453125],[124,296,76,6.263560771942139],[124,296,77,6.262023448944092],[124,296,78,6.258963584899902],[124,296,79,6.252208232879639],[124,297,64,6.177631855010986],[124,297,65,6.17827844619751],[124,297,66,6.171967029571533],[124,297,67,6.164862155914307],[124,297,68,6.161971569061279],[124,297,69,6.167181015014648],[124,297,70,6.180848598480225],[124,297,71,6.2020697593688965],[124,297,72,6.231013298034668],[124,297,73,6.25203800201416],[124,297,74,6.2597455978393555],[124,297,75,6.262939453125],[124,297,76,6.263560771942139],[124,297,77,6.262023448944092],[124,297,78,6.258963584899902],[124,297,79,6.252208232879639],[124,298,64,6.177631855010986],[124,298,65,6.17827844619751],[124,298,66,6.171967029571533],[124,298,67,6.164862155914307],[124,298,68,6.161971569061279],[124,298,69,6.167181015014648],[124,298,70,6.180848598480225],[124,298,71,6.2020697593688965],[124,298,72,6.231013298034668],[124,298,73,6.25203800201416],[124,298,74,6.2597455978393555],[124,298,75,6.262939453125],[124,298,76,6.263560771942139],[124,298,77,6.262023448944092],[124,298,78,6.258963584899902],[124,298,79,6.252208232879639],[124,299,64,6.177631855010986],[124,299,65,6.17827844619751],[124,299,66,6.171967029571533],[124,299,67,6.164862155914307],[124,299,68,6.161971569061279],[124,299,69,6.167181015014648],[124,299,70,6.180848598480225],[124,299,71,6.2020697593688965],[124,299,72,6.231013298034668],[124,299,73,6.25203800201416],[124,299,74,6.2597455978393555],[124,299,75,6.262939453125],[124,299,76,6.263560771942139],[124,299,77,6.262023448944092],[124,299,78,6.258963584899902],[124,299,79,6.252208232879639],[124,300,64,6.177631855010986],[124,300,65,6.17827844619751],[124,300,66,6.171967029571533],[124,300,67,6.164862155914307],[124,300,68,6.161971569061279],[124,300,69,6.167181015014648],[124,300,70,6.180848598480225],[124,300,71,6.2020697593688965],[124,300,72,6.231013298034668],[124,300,73,6.25203800201416],[124,300,74,6.2597455978393555],[124,300,75,6.262939453125],[124,300,76,6.263560771942139],[124,300,77,6.262023448944092],[124,300,78,6.258963584899902],[124,300,79,6.252208232879639],[124,301,64,6.177631855010986],[124,301,65,6.17827844619751],[124,301,66,6.171967029571533],[124,301,67,6.164862155914307],[124,301,68,6.161971569061279],[124,301,69,6.167181015014648],[124,301,70,6.180848598480225],[124,301,71,6.2020697593688965],[124,301,72,6.231013298034668],[124,301,73,6.25203800201416],[124,301,74,6.2597455978393555],[124,301,75,6.262939453125],[124,301,76,6.263560771942139],[124,301,77,6.262023448944092],[124,301,78,6.258963584899902],[124,301,79,6.252208232879639],[124,302,64,6.177631855010986],[124,302,65,6.17827844619751],[124,302,66,6.171967029571533],[124,302,67,6.164862155914307],[124,302,68,6.161971569061279],[124,302,69,6.167181015014648],[124,302,70,6.180848598480225],[124,302,71,6.2020697593688965],[124,302,72,6.231013298034668],[124,302,73,6.25203800201416],[124,302,74,6.2597455978393555],[124,302,75,6.262939453125],[124,302,76,6.263560771942139],[124,302,77,6.262023448944092],[124,302,78,6.258963584899902],[124,302,79,6.252208232879639],[124,303,64,6.177631855010986],[124,303,65,6.17827844619751],[124,303,66,6.171967029571533],[124,303,67,6.164862155914307],[124,303,68,6.161971569061279],[124,303,69,6.167181015014648],[124,303,70,6.180848598480225],[124,303,71,6.2020697593688965],[124,303,72,6.231013298034668],[124,303,73,6.25203800201416],[124,303,74,6.2597455978393555],[124,303,75,6.262939453125],[124,303,76,6.263560771942139],[124,303,77,6.262023448944092],[124,303,78,6.258963584899902],[124,303,79,6.252208232879639],[124,304,64,6.177631855010986],[124,304,65,6.17827844619751],[124,304,66,6.171967029571533],[124,304,67,6.164862155914307],[124,304,68,6.161971569061279],[124,304,69,6.167181015014648],[124,304,70,6.180848598480225],[124,304,71,6.2020697593688965],[124,304,72,6.231013298034668],[124,304,73,6.25203800201416],[124,304,74,6.2597455978393555],[124,304,75,6.262939453125],[124,304,76,6.263560771942139],[124,304,77,6.262023448944092],[124,304,78,6.258963584899902],[124,304,79,6.252208232879639],[124,305,64,6.177631855010986],[124,305,65,6.17827844619751],[124,305,66,6.171967029571533],[124,305,67,6.164862155914307],[124,305,68,6.161971569061279],[124,305,69,6.167181015014648],[124,305,70,6.180848598480225],[124,305,71,6.2020697593688965],[124,305,72,6.231013298034668],[124,305,73,6.25203800201416],[124,305,74,6.2597455978393555],[124,305,75,6.262939453125],[124,305,76,6.263560771942139],[124,305,77,6.262023448944092],[124,305,78,6.258963584899902],[124,305,79,6.252208232879639],[124,306,64,6.177631855010986],[124,306,65,6.17827844619751],[124,306,66,6.171967029571533],[124,306,67,6.164862155914307],[124,306,68,6.161971569061279],[124,306,69,6.167181015014648],[124,306,70,6.180848598480225],[124,306,71,6.2020697593688965],[124,306,72,6.231013298034668],[124,306,73,6.25203800201416],[124,306,74,6.2597455978393555],[124,306,75,6.262939453125],[124,306,76,6.263560771942139],[124,306,77,6.262023448944092],[124,306,78,6.258963584899902],[124,306,79,6.252208232879639],[124,307,64,6.177631855010986],[124,307,65,6.17827844619751],[124,307,66,6.171967029571533],[124,307,67,6.164862155914307],[124,307,68,6.161971569061279],[124,307,69,6.167181015014648],[124,307,70,6.180848598480225],[124,307,71,6.2020697593688965],[124,307,72,6.231013298034668],[124,307,73,6.25203800201416],[124,307,74,6.2597455978393555],[124,307,75,6.262939453125],[124,307,76,6.263560771942139],[124,307,77,6.262023448944092],[124,307,78,6.258963584899902],[124,307,79,6.252208232879639],[124,308,64,6.177631855010986],[124,308,65,6.17827844619751],[124,308,66,6.171967029571533],[124,308,67,6.164862155914307],[124,308,68,6.161971569061279],[124,308,69,6.167181015014648],[124,308,70,6.180848598480225],[124,308,71,6.2020697593688965],[124,308,72,6.231013298034668],[124,308,73,6.25203800201416],[124,308,74,6.2597455978393555],[124,308,75,6.262939453125],[124,308,76,6.263560771942139],[124,308,77,6.262023448944092],[124,308,78,6.258963584899902],[124,308,79,6.252208232879639],[124,309,64,6.177631855010986],[124,309,65,6.17827844619751],[124,309,66,6.171967029571533],[124,309,67,6.164862155914307],[124,309,68,6.161971569061279],[124,309,69,6.167181015014648],[124,309,70,6.180848598480225],[124,309,71,6.2020697593688965],[124,309,72,6.231013298034668],[124,309,73,6.25203800201416],[124,309,74,6.2597455978393555],[124,309,75,6.262939453125],[124,309,76,6.263560771942139],[124,309,77,6.262023448944092],[124,309,78,6.258963584899902],[124,309,79,6.252208232879639],[124,310,64,6.177631855010986],[124,310,65,6.17827844619751],[124,310,66,6.171967029571533],[124,310,67,6.164862155914307],[124,310,68,6.161971569061279],[124,310,69,6.167181015014648],[124,310,70,6.180848598480225],[124,310,71,6.2020697593688965],[124,310,72,6.231013298034668],[124,310,73,6.25203800201416],[124,310,74,6.2597455978393555],[124,310,75,6.262939453125],[124,310,76,6.263560771942139],[124,310,77,6.262023448944092],[124,310,78,6.258963584899902],[124,310,79,6.252208232879639],[124,311,64,6.177631855010986],[124,311,65,6.17827844619751],[124,311,66,6.171967029571533],[124,311,67,6.164862155914307],[124,311,68,6.161971569061279],[124,311,69,6.167181015014648],[124,311,70,6.180848598480225],[124,311,71,6.2020697593688965],[124,311,72,6.231013298034668],[124,311,73,6.25203800201416],[124,311,74,6.2597455978393555],[124,311,75,6.262939453125],[124,311,76,6.263560771942139],[124,311,77,6.262023448944092],[124,311,78,6.258963584899902],[124,311,79,6.252208232879639],[124,312,64,6.177631855010986],[124,312,65,6.17827844619751],[124,312,66,6.171967029571533],[124,312,67,6.164862155914307],[124,312,68,6.161971569061279],[124,312,69,6.167181015014648],[124,312,70,6.180848598480225],[124,312,71,6.2020697593688965],[124,312,72,6.231013298034668],[124,312,73,6.25203800201416],[124,312,74,6.2597455978393555],[124,312,75,6.262939453125],[124,312,76,6.263560771942139],[124,312,77,6.262023448944092],[124,312,78,6.258963584899902],[124,312,79,6.252208232879639],[124,313,64,6.177631855010986],[124,313,65,6.17827844619751],[124,313,66,6.171967029571533],[124,313,67,6.164862155914307],[124,313,68,6.161971569061279],[124,313,69,6.167181015014648],[124,313,70,6.180848598480225],[124,313,71,6.2020697593688965],[124,313,72,6.231013298034668],[124,313,73,6.25203800201416],[124,313,74,6.2597455978393555],[124,313,75,6.262939453125],[124,313,76,6.263560771942139],[124,313,77,6.262023448944092],[124,313,78,6.258963584899902],[124,313,79,6.252208232879639],[124,314,64,6.177631855010986],[124,314,65,6.17827844619751],[124,314,66,6.171967029571533],[124,314,67,6.164862155914307],[124,314,68,6.161971569061279],[124,314,69,6.167181015014648],[124,314,70,6.180848598480225],[124,314,71,6.2020697593688965],[124,314,72,6.231013298034668],[124,314,73,6.25203800201416],[124,314,74,6.2597455978393555],[124,314,75,6.262939453125],[124,314,76,6.263560771942139],[124,314,77,6.262023448944092],[124,314,78,6.258963584899902],[124,314,79,6.252208232879639],[124,315,64,6.177631855010986],[124,315,65,6.17827844619751],[124,315,66,6.171967029571533],[124,315,67,6.164862155914307],[124,315,68,6.161971569061279],[124,315,69,6.167181015014648],[124,315,70,6.180848598480225],[124,315,71,6.2020697593688965],[124,315,72,6.231013298034668],[124,315,73,6.25203800201416],[124,315,74,6.2597455978393555],[124,315,75,6.262939453125],[124,315,76,6.263560771942139],[124,315,77,6.262023448944092],[124,315,78,6.258963584899902],[124,315,79,6.252208232879639],[124,316,64,6.177631855010986],[124,316,65,6.17827844619751],[124,316,66,6.171967029571533],[124,316,67,6.164862155914307],[124,316,68,6.161971569061279],[124,316,69,6.167181015014648],[124,316,70,6.180848598480225],[124,316,71,6.2020697593688965],[124,316,72,6.231013298034668],[124,316,73,6.25203800201416],[124,316,74,6.2597455978393555],[124,316,75,6.262939453125],[124,316,76,6.263560771942139],[124,316,77,6.262023448944092],[124,316,78,6.258963584899902],[124,316,79,6.252208232879639],[124,317,64,6.177631855010986],[124,317,65,6.17827844619751],[124,317,66,6.171967029571533],[124,317,67,6.164862155914307],[124,317,68,6.161971569061279],[124,317,69,6.167181015014648],[124,317,70,6.180848598480225],[124,317,71,6.2020697593688965],[124,317,72,6.231013298034668],[124,317,73,6.25203800201416],[124,317,74,6.2597455978393555],[124,317,75,6.262939453125],[124,317,76,6.263560771942139],[124,317,77,6.262023448944092],[124,317,78,6.258963584899902],[124,317,79,6.252208232879639],[124,318,64,6.177631855010986],[124,318,65,6.17827844619751],[124,318,66,6.171967029571533],[124,318,67,6.164862155914307],[124,318,68,6.161971569061279],[124,318,69,6.167181015014648],[124,318,70,6.180848598480225],[124,318,71,6.2020697593688965],[124,318,72,6.231013298034668],[124,318,73,6.25203800201416],[124,318,74,6.2597455978393555],[124,318,75,6.262939453125],[124,318,76,6.263560771942139],[124,318,77,6.262023448944092],[124,318,78,6.258963584899902],[124,318,79,6.252208232879639],[124,319,64,6.177631855010986],[124,319,65,6.17827844619751],[124,319,66,6.171967029571533],[124,319,67,6.164862155914307],[124,319,68,6.161971569061279],[124,319,69,6.167181015014648],[124,319,70,6.180848598480225],[124,319,71,6.2020697593688965],[124,319,72,6.231013298034668],[124,319,73,6.25203800201416],[124,319,74,6.2597455978393555],[124,319,75,6.262939453125],[124,319,76,6.263560771942139],[124,319,77,6.262023448944092],[124,319,78,6.258963584899902],[124,319,79,6.252208232879639],[125,-64,64,6.180628776550293],[125,-64,65,6.183351516723633],[125,-64,66,6.178456783294678],[125,-64,67,6.171987056732178],[125,-64,68,6.168274402618408],[125,-64,69,6.170851230621338],[125,-64,70,6.180665969848633],[125,-64,71,6.198060512542725],[125,-64,72,6.2252516746521],[125,-64,73,6.249039173126221],[125,-64,74,6.258728981018066],[125,-64,75,6.262077331542969],[125,-64,76,6.263006687164307],[125,-64,77,6.261656761169434],[125,-64,78,6.2584991455078125],[125,-64,79,6.252263069152832],[125,-63,64,6.180628776550293],[125,-63,65,6.183351516723633],[125,-63,66,6.178456783294678],[125,-63,67,6.171987056732178],[125,-63,68,6.168274402618408],[125,-63,69,6.170851230621338],[125,-63,70,6.180665969848633],[125,-63,71,6.198060512542725],[125,-63,72,6.2252516746521],[125,-63,73,6.249039173126221],[125,-63,74,6.258728981018066],[125,-63,75,6.262077331542969],[125,-63,76,6.263006687164307],[125,-63,77,6.261656761169434],[125,-63,78,6.2584991455078125],[125,-63,79,6.252263069152832],[125,-62,64,6.180628776550293],[125,-62,65,6.183351516723633],[125,-62,66,6.178456783294678],[125,-62,67,6.171987056732178],[125,-62,68,6.168274402618408],[125,-62,69,6.170851230621338],[125,-62,70,6.180665969848633],[125,-62,71,6.198060512542725],[125,-62,72,6.2252516746521],[125,-62,73,6.249039173126221],[125,-62,74,6.258728981018066],[125,-62,75,6.262077331542969],[125,-62,76,6.263006687164307],[125,-62,77,6.261656761169434],[125,-62,78,6.2584991455078125],[125,-62,79,6.252263069152832],[125,-61,64,6.180628776550293],[125,-61,65,6.183351516723633],[125,-61,66,6.178456783294678],[125,-61,67,6.171987056732178],[125,-61,68,6.168274402618408],[125,-61,69,6.170851230621338],[125,-61,70,6.180665969848633],[125,-61,71,6.198060512542725],[125,-61,72,6.2252516746521],[125,-61,73,6.249039173126221],[125,-61,74,6.258728981018066],[125,-61,75,6.262077331542969],[125,-61,76,6.263006687164307],[125,-61,77,6.261656761169434],[125,-61,78,6.2584991455078125],[125,-61,79,6.252263069152832],[125,-60,64,6.180628776550293],[125,-60,65,6.183351516723633],[125,-60,66,6.178456783294678],[125,-60,67,6.171987056732178],[125,-60,68,6.168274402618408],[125,-60,69,6.170851230621338],[125,-60,70,6.180665969848633],[125,-60,71,6.198060512542725],[125,-60,72,6.2252516746521],[125,-60,73,6.249039173126221],[125,-60,74,6.258728981018066],[125,-60,75,6.262077331542969],[125,-60,76,6.263006687164307],[125,-60,77,6.261656761169434],[125,-60,78,6.2584991455078125],[125,-60,79,6.252263069152832],[125,-59,64,6.180628776550293],[125,-59,65,6.183351516723633],[125,-59,66,6.178456783294678],[125,-59,67,6.171987056732178],[125,-59,68,6.168274402618408],[125,-59,69,6.170851230621338],[125,-59,70,6.180665969848633],[125,-59,71,6.198060512542725],[125,-59,72,6.2252516746521],[125,-59,73,6.249039173126221],[125,-59,74,6.258728981018066],[125,-59,75,6.262077331542969],[125,-59,76,6.263006687164307],[125,-59,77,6.261656761169434],[125,-59,78,6.2584991455078125],[125,-59,79,6.252263069152832],[125,-58,64,6.180628776550293],[125,-58,65,6.183351516723633],[125,-58,66,6.178456783294678],[125,-58,67,6.171987056732178],[125,-58,68,6.168274402618408],[125,-58,69,6.170851230621338],[125,-58,70,6.180665969848633],[125,-58,71,6.198060512542725],[125,-58,72,6.2252516746521],[125,-58,73,6.249039173126221],[125,-58,74,6.258728981018066],[125,-58,75,6.262077331542969],[125,-58,76,6.263006687164307],[125,-58,77,6.261656761169434],[125,-58,78,6.2584991455078125],[125,-58,79,6.252263069152832],[125,-57,64,6.180628776550293],[125,-57,65,6.183351516723633],[125,-57,66,6.178456783294678],[125,-57,67,6.171987056732178],[125,-57,68,6.168274402618408],[125,-57,69,6.170851230621338],[125,-57,70,6.180665969848633],[125,-57,71,6.198060512542725],[125,-57,72,6.2252516746521],[125,-57,73,6.249039173126221],[125,-57,74,6.258728981018066],[125,-57,75,6.262077331542969],[125,-57,76,6.263006687164307],[125,-57,77,6.261656761169434],[125,-57,78,6.2584991455078125],[125,-57,79,6.252263069152832],[125,-56,64,6.180628776550293],[125,-56,65,6.183351516723633],[125,-56,66,6.178456783294678],[125,-56,67,6.171987056732178],[125,-56,68,6.168274402618408],[125,-56,69,6.170851230621338],[125,-56,70,6.180665969848633],[125,-56,71,6.198060512542725],[125,-56,72,6.2252516746521],[125,-56,73,6.249039173126221],[125,-56,74,6.258728981018066],[125,-56,75,6.262077331542969],[125,-56,76,6.263006687164307],[125,-56,77,6.261656761169434],[125,-56,78,6.2584991455078125],[125,-56,79,6.252263069152832],[125,-55,64,6.180628776550293],[125,-55,65,6.183351516723633],[125,-55,66,6.178456783294678],[125,-55,67,6.171987056732178],[125,-55,68,6.168274402618408],[125,-55,69,6.170851230621338],[125,-55,70,6.180665969848633],[125,-55,71,6.198060512542725],[125,-55,72,6.2252516746521],[125,-55,73,6.249039173126221],[125,-55,74,6.258728981018066],[125,-55,75,6.262077331542969],[125,-55,76,6.263006687164307],[125,-55,77,6.261656761169434],[125,-55,78,6.2584991455078125],[125,-55,79,6.252263069152832],[125,-54,64,6.180628776550293],[125,-54,65,6.183351516723633],[125,-54,66,6.178456783294678],[125,-54,67,6.171987056732178],[125,-54,68,6.168274402618408],[125,-54,69,6.170851230621338],[125,-54,70,6.180665969848633],[125,-54,71,6.198060512542725],[125,-54,72,6.2252516746521],[125,-54,73,6.249039173126221],[125,-54,74,6.258728981018066],[125,-54,75,6.262077331542969],[125,-54,76,6.263006687164307],[125,-54,77,6.261656761169434],[125,-54,78,6.2584991455078125],[125,-54,79,6.252263069152832],[125,-53,64,6.180628776550293],[125,-53,65,6.183351516723633],[125,-53,66,6.178456783294678],[125,-53,67,6.171987056732178],[125,-53,68,6.168274402618408],[125,-53,69,6.170851230621338],[125,-53,70,6.180665969848633],[125,-53,71,6.198060512542725],[125,-53,72,6.2252516746521],[125,-53,73,6.249039173126221],[125,-53,74,6.258728981018066],[125,-53,75,6.262077331542969],[125,-53,76,6.263006687164307],[125,-53,77,6.261656761169434],[125,-53,78,6.2584991455078125],[125,-53,79,6.252263069152832],[125,-52,64,6.180628776550293],[125,-52,65,6.183351516723633],[125,-52,66,6.178456783294678],[125,-52,67,6.171987056732178],[125,-52,68,6.168274402618408],[125,-52,69,6.170851230621338],[125,-52,70,6.180665969848633],[125,-52,71,6.198060512542725],[125,-52,72,6.2252516746521],[125,-52,73,6.249039173126221],[125,-52,74,6.258728981018066],[125,-52,75,6.262077331542969],[125,-52,76,6.263006687164307],[125,-52,77,6.261656761169434],[125,-52,78,6.2584991455078125],[125,-52,79,6.252263069152832],[125,-51,64,6.180628776550293],[125,-51,65,6.183351516723633],[125,-51,66,6.178456783294678],[125,-51,67,6.171987056732178],[125,-51,68,6.168274402618408],[125,-51,69,6.170851230621338],[125,-51,70,6.180665969848633],[125,-51,71,6.198060512542725],[125,-51,72,6.2252516746521],[125,-51,73,6.249039173126221],[125,-51,74,6.258728981018066],[125,-51,75,6.262077331542969],[125,-51,76,6.263006687164307],[125,-51,77,6.261656761169434],[125,-51,78,6.2584991455078125],[125,-51,79,6.252263069152832],[125,-50,64,6.180628776550293],[125,-50,65,6.183351516723633],[125,-50,66,6.178456783294678],[125,-50,67,6.171987056732178],[125,-50,68,6.168274402618408],[125,-50,69,6.170851230621338],[125,-50,70,6.180665969848633],[125,-50,71,6.198060512542725],[125,-50,72,6.2252516746521],[125,-50,73,6.249039173126221],[125,-50,74,6.258728981018066],[125,-50,75,6.262077331542969],[125,-50,76,6.263006687164307],[125,-50,77,6.261656761169434],[125,-50,78,6.2584991455078125],[125,-50,79,6.252263069152832],[125,-49,64,6.180628776550293],[125,-49,65,6.183351516723633],[125,-49,66,6.178456783294678],[125,-49,67,6.171987056732178],[125,-49,68,6.168274402618408],[125,-49,69,6.170851230621338],[125,-49,70,6.180665969848633],[125,-49,71,6.198060512542725],[125,-49,72,6.2252516746521],[125,-49,73,6.249039173126221],[125,-49,74,6.258728981018066],[125,-49,75,6.262077331542969],[125,-49,76,6.263006687164307],[125,-49,77,6.261656761169434],[125,-49,78,6.2584991455078125],[125,-49,79,6.252263069152832],[125,-48,64,6.180628776550293],[125,-48,65,6.183351516723633],[125,-48,66,6.178456783294678],[125,-48,67,6.171987056732178],[125,-48,68,6.168274402618408],[125,-48,69,6.170851230621338],[125,-48,70,6.180665969848633],[125,-48,71,6.198060512542725],[125,-48,72,6.2252516746521],[125,-48,73,6.249039173126221],[125,-48,74,6.258728981018066],[125,-48,75,6.262077331542969],[125,-48,76,6.263006687164307],[125,-48,77,6.261656761169434],[125,-48,78,6.2584991455078125],[125,-48,79,6.252263069152832],[125,-47,64,6.180628776550293],[125,-47,65,6.183351516723633],[125,-47,66,6.178456783294678],[125,-47,67,6.171987056732178],[125,-47,68,6.168274402618408],[125,-47,69,6.170851230621338],[125,-47,70,6.180665969848633],[125,-47,71,6.198060512542725],[125,-47,72,6.2252516746521],[125,-47,73,6.249039173126221],[125,-47,74,6.258728981018066],[125,-47,75,6.262077331542969],[125,-47,76,6.263006687164307],[125,-47,77,6.261656761169434],[125,-47,78,6.2584991455078125],[125,-47,79,6.252263069152832],[125,-46,64,6.180628776550293],[125,-46,65,6.183351516723633],[125,-46,66,6.178456783294678],[125,-46,67,6.171987056732178],[125,-46,68,6.168274402618408],[125,-46,69,6.170851230621338],[125,-46,70,6.180665969848633],[125,-46,71,6.198060512542725],[125,-46,72,6.2252516746521],[125,-46,73,6.249039173126221],[125,-46,74,6.258728981018066],[125,-46,75,6.262077331542969],[125,-46,76,6.263006687164307],[125,-46,77,6.261656761169434],[125,-46,78,6.2584991455078125],[125,-46,79,6.252263069152832],[125,-45,64,6.180628776550293],[125,-45,65,6.183351516723633],[125,-45,66,6.178456783294678],[125,-45,67,6.171987056732178],[125,-45,68,6.168274402618408],[125,-45,69,6.170851230621338],[125,-45,70,6.180665969848633],[125,-45,71,6.198060512542725],[125,-45,72,6.2252516746521],[125,-45,73,6.249039173126221],[125,-45,74,6.258728981018066],[125,-45,75,6.262077331542969],[125,-45,76,6.263006687164307],[125,-45,77,6.261656761169434],[125,-45,78,6.2584991455078125],[125,-45,79,6.252263069152832],[125,-44,64,6.180628776550293],[125,-44,65,6.183351516723633],[125,-44,66,6.178456783294678],[125,-44,67,6.171987056732178],[125,-44,68,6.168274402618408],[125,-44,69,6.170851230621338],[125,-44,70,6.180665969848633],[125,-44,71,6.198060512542725],[125,-44,72,6.2252516746521],[125,-44,73,6.249039173126221],[125,-44,74,6.258728981018066],[125,-44,75,6.262077331542969],[125,-44,76,6.263006687164307],[125,-44,77,6.261656761169434],[125,-44,78,6.2584991455078125],[125,-44,79,6.252263069152832],[125,-43,64,6.180628776550293],[125,-43,65,6.183351516723633],[125,-43,66,6.178456783294678],[125,-43,67,6.171987056732178],[125,-43,68,6.168274402618408],[125,-43,69,6.170851230621338],[125,-43,70,6.180665969848633],[125,-43,71,6.198060512542725],[125,-43,72,6.2252516746521],[125,-43,73,6.249039173126221],[125,-43,74,6.258728981018066],[125,-43,75,6.262077331542969],[125,-43,76,6.263006687164307],[125,-43,77,6.261656761169434],[125,-43,78,6.2584991455078125],[125,-43,79,6.252263069152832],[125,-42,64,6.180628776550293],[125,-42,65,6.183351516723633],[125,-42,66,6.178456783294678],[125,-42,67,6.171987056732178],[125,-42,68,6.168274402618408],[125,-42,69,6.170851230621338],[125,-42,70,6.180665969848633],[125,-42,71,6.198060512542725],[125,-42,72,6.2252516746521],[125,-42,73,6.249039173126221],[125,-42,74,6.258728981018066],[125,-42,75,6.262077331542969],[125,-42,76,6.263006687164307],[125,-42,77,6.261656761169434],[125,-42,78,6.2584991455078125],[125,-42,79,6.252263069152832],[125,-41,64,6.180628776550293],[125,-41,65,6.183351516723633],[125,-41,66,6.178456783294678],[125,-41,67,6.171987056732178],[125,-41,68,6.168274402618408],[125,-41,69,6.170851230621338],[125,-41,70,6.180665969848633],[125,-41,71,6.198060512542725],[125,-41,72,6.2252516746521],[125,-41,73,6.249039173126221],[125,-41,74,6.258728981018066],[125,-41,75,6.262077331542969],[125,-41,76,6.263006687164307],[125,-41,77,6.261656761169434],[125,-41,78,6.2584991455078125],[125,-41,79,6.252263069152832],[125,-40,64,6.180628776550293],[125,-40,65,6.183351516723633],[125,-40,66,6.178456783294678],[125,-40,67,6.171987056732178],[125,-40,68,6.168274402618408],[125,-40,69,6.170851230621338],[125,-40,70,6.180665969848633],[125,-40,71,6.198060512542725],[125,-40,72,6.2252516746521],[125,-40,73,6.249039173126221],[125,-40,74,6.258728981018066],[125,-40,75,6.262077331542969],[125,-40,76,6.263006687164307],[125,-40,77,6.261656761169434],[125,-40,78,6.2584991455078125],[125,-40,79,6.252263069152832],[125,-39,64,6.180628776550293],[125,-39,65,6.183351516723633],[125,-39,66,6.178456783294678],[125,-39,67,6.171987056732178],[125,-39,68,6.168274402618408],[125,-39,69,6.170851230621338],[125,-39,70,6.180665969848633],[125,-39,71,6.198060512542725],[125,-39,72,6.2252516746521],[125,-39,73,6.249039173126221],[125,-39,74,6.258728981018066],[125,-39,75,6.262077331542969],[125,-39,76,6.263006687164307],[125,-39,77,6.261656761169434],[125,-39,78,6.2584991455078125],[125,-39,79,6.252263069152832],[125,-38,64,6.180628776550293],[125,-38,65,6.183351516723633],[125,-38,66,6.178456783294678],[125,-38,67,6.171987056732178],[125,-38,68,6.168274402618408],[125,-38,69,6.170851230621338],[125,-38,70,6.180665969848633],[125,-38,71,6.198060512542725],[125,-38,72,6.2252516746521],[125,-38,73,6.249039173126221],[125,-38,74,6.258728981018066],[125,-38,75,6.262077331542969],[125,-38,76,6.263006687164307],[125,-38,77,6.261656761169434],[125,-38,78,6.2584991455078125],[125,-38,79,6.252263069152832],[125,-37,64,6.180628776550293],[125,-37,65,6.183351516723633],[125,-37,66,6.178456783294678],[125,-37,67,6.171987056732178],[125,-37,68,6.168274402618408],[125,-37,69,6.170851230621338],[125,-37,70,6.180665969848633],[125,-37,71,6.198060512542725],[125,-37,72,6.2252516746521],[125,-37,73,6.249039173126221],[125,-37,74,6.258728981018066],[125,-37,75,6.262077331542969],[125,-37,76,6.263006687164307],[125,-37,77,6.261656761169434],[125,-37,78,6.2584991455078125],[125,-37,79,6.252263069152832],[125,-36,64,6.180628776550293],[125,-36,65,6.183351516723633],[125,-36,66,6.178456783294678],[125,-36,67,6.171987056732178],[125,-36,68,6.168274402618408],[125,-36,69,6.170851230621338],[125,-36,70,6.180665969848633],[125,-36,71,6.198060512542725],[125,-36,72,6.2252516746521],[125,-36,73,6.249039173126221],[125,-36,74,6.258728981018066],[125,-36,75,6.262077331542969],[125,-36,76,6.263006687164307],[125,-36,77,6.261656761169434],[125,-36,78,6.2584991455078125],[125,-36,79,6.252263069152832],[125,-35,64,6.180628776550293],[125,-35,65,6.183351516723633],[125,-35,66,6.178456783294678],[125,-35,67,6.171987056732178],[125,-35,68,6.168274402618408],[125,-35,69,6.170851230621338],[125,-35,70,6.180665969848633],[125,-35,71,6.198060512542725],[125,-35,72,6.2252516746521],[125,-35,73,6.249039173126221],[125,-35,74,6.258728981018066],[125,-35,75,6.262077331542969],[125,-35,76,6.263006687164307],[125,-35,77,6.261656761169434],[125,-35,78,6.2584991455078125],[125,-35,79,6.252263069152832],[125,-34,64,6.180628776550293],[125,-34,65,6.183351516723633],[125,-34,66,6.178456783294678],[125,-34,67,6.171987056732178],[125,-34,68,6.168274402618408],[125,-34,69,6.170851230621338],[125,-34,70,6.180665969848633],[125,-34,71,6.198060512542725],[125,-34,72,6.2252516746521],[125,-34,73,6.249039173126221],[125,-34,74,6.258728981018066],[125,-34,75,6.262077331542969],[125,-34,76,6.263006687164307],[125,-34,77,6.261656761169434],[125,-34,78,6.2584991455078125],[125,-34,79,6.252263069152832],[125,-33,64,6.180628776550293],[125,-33,65,6.183351516723633],[125,-33,66,6.178456783294678],[125,-33,67,6.171987056732178],[125,-33,68,6.168274402618408],[125,-33,69,6.170851230621338],[125,-33,70,6.180665969848633],[125,-33,71,6.198060512542725],[125,-33,72,6.2252516746521],[125,-33,73,6.249039173126221],[125,-33,74,6.258728981018066],[125,-33,75,6.262077331542969],[125,-33,76,6.263006687164307],[125,-33,77,6.261656761169434],[125,-33,78,6.2584991455078125],[125,-33,79,6.252263069152832],[125,-32,64,6.180628776550293],[125,-32,65,6.183351516723633],[125,-32,66,6.178456783294678],[125,-32,67,6.171987056732178],[125,-32,68,6.168274402618408],[125,-32,69,6.170851230621338],[125,-32,70,6.180665969848633],[125,-32,71,6.198060512542725],[125,-32,72,6.2252516746521],[125,-32,73,6.249039173126221],[125,-32,74,6.258728981018066],[125,-32,75,6.262077331542969],[125,-32,76,6.263006687164307],[125,-32,77,6.261656761169434],[125,-32,78,6.2584991455078125],[125,-32,79,6.252263069152832],[125,-31,64,6.180628776550293],[125,-31,65,6.183351516723633],[125,-31,66,6.178456783294678],[125,-31,67,6.171987056732178],[125,-31,68,6.168274402618408],[125,-31,69,6.170851230621338],[125,-31,70,6.180665969848633],[125,-31,71,6.198060512542725],[125,-31,72,6.2252516746521],[125,-31,73,6.249039173126221],[125,-31,74,6.258728981018066],[125,-31,75,6.262077331542969],[125,-31,76,6.263006687164307],[125,-31,77,6.261656761169434],[125,-31,78,6.2584991455078125],[125,-31,79,6.252263069152832],[125,-30,64,6.180628776550293],[125,-30,65,6.183351516723633],[125,-30,66,6.178456783294678],[125,-30,67,6.171987056732178],[125,-30,68,6.168274402618408],[125,-30,69,6.170851230621338],[125,-30,70,6.180665969848633],[125,-30,71,6.198060512542725],[125,-30,72,6.2252516746521],[125,-30,73,6.249039173126221],[125,-30,74,6.258728981018066],[125,-30,75,6.262077331542969],[125,-30,76,6.263006687164307],[125,-30,77,6.261656761169434],[125,-30,78,6.2584991455078125],[125,-30,79,6.252263069152832],[125,-29,64,6.180628776550293],[125,-29,65,6.183351516723633],[125,-29,66,6.178456783294678],[125,-29,67,6.171987056732178],[125,-29,68,6.168274402618408],[125,-29,69,6.170851230621338],[125,-29,70,6.180665969848633],[125,-29,71,6.198060512542725],[125,-29,72,6.2252516746521],[125,-29,73,6.249039173126221],[125,-29,74,6.258728981018066],[125,-29,75,6.262077331542969],[125,-29,76,6.263006687164307],[125,-29,77,6.261656761169434],[125,-29,78,6.2584991455078125],[125,-29,79,6.252263069152832],[125,-28,64,6.180628776550293],[125,-28,65,6.183351516723633],[125,-28,66,6.178456783294678],[125,-28,67,6.171987056732178],[125,-28,68,6.168274402618408],[125,-28,69,6.170851230621338],[125,-28,70,6.180665969848633],[125,-28,71,6.198060512542725],[125,-28,72,6.2252516746521],[125,-28,73,6.249039173126221],[125,-28,74,6.258728981018066],[125,-28,75,6.262077331542969],[125,-28,76,6.263006687164307],[125,-28,77,6.261656761169434],[125,-28,78,6.2584991455078125],[125,-28,79,6.252263069152832],[125,-27,64,6.180628776550293],[125,-27,65,6.183351516723633],[125,-27,66,6.178456783294678],[125,-27,67,6.171987056732178],[125,-27,68,6.168274402618408],[125,-27,69,6.170851230621338],[125,-27,70,6.180665969848633],[125,-27,71,6.198060512542725],[125,-27,72,6.2252516746521],[125,-27,73,6.249039173126221],[125,-27,74,6.258728981018066],[125,-27,75,6.262077331542969],[125,-27,76,6.263006687164307],[125,-27,77,6.261656761169434],[125,-27,78,6.2584991455078125],[125,-27,79,6.252263069152832],[125,-26,64,6.180628776550293],[125,-26,65,6.183351516723633],[125,-26,66,6.178456783294678],[125,-26,67,6.171987056732178],[125,-26,68,6.168274402618408],[125,-26,69,6.170851230621338],[125,-26,70,6.180665969848633],[125,-26,71,6.198060512542725],[125,-26,72,6.2252516746521],[125,-26,73,6.249039173126221],[125,-26,74,6.258728981018066],[125,-26,75,6.262077331542969],[125,-26,76,6.263006687164307],[125,-26,77,6.261656761169434],[125,-26,78,6.2584991455078125],[125,-26,79,6.252263069152832],[125,-25,64,6.180628776550293],[125,-25,65,6.183351516723633],[125,-25,66,6.178456783294678],[125,-25,67,6.171987056732178],[125,-25,68,6.168274402618408],[125,-25,69,6.170851230621338],[125,-25,70,6.180665969848633],[125,-25,71,6.198060512542725],[125,-25,72,6.2252516746521],[125,-25,73,6.249039173126221],[125,-25,74,6.258728981018066],[125,-25,75,6.262077331542969],[125,-25,76,6.263006687164307],[125,-25,77,6.261656761169434],[125,-25,78,6.2584991455078125],[125,-25,79,6.252263069152832],[125,-24,64,6.180628776550293],[125,-24,65,6.183351516723633],[125,-24,66,6.178456783294678],[125,-24,67,6.171987056732178],[125,-24,68,6.168274402618408],[125,-24,69,6.170851230621338],[125,-24,70,6.180665969848633],[125,-24,71,6.198060512542725],[125,-24,72,6.2252516746521],[125,-24,73,6.249039173126221],[125,-24,74,6.258728981018066],[125,-24,75,6.262077331542969],[125,-24,76,6.263006687164307],[125,-24,77,6.261656761169434],[125,-24,78,6.2584991455078125],[125,-24,79,6.252263069152832],[125,-23,64,6.180628776550293],[125,-23,65,6.183351516723633],[125,-23,66,6.178456783294678],[125,-23,67,6.171987056732178],[125,-23,68,6.168274402618408],[125,-23,69,6.170851230621338],[125,-23,70,6.180665969848633],[125,-23,71,6.198060512542725],[125,-23,72,6.2252516746521],[125,-23,73,6.249039173126221],[125,-23,74,6.258728981018066],[125,-23,75,6.262077331542969],[125,-23,76,6.263006687164307],[125,-23,77,6.261656761169434],[125,-23,78,6.2584991455078125],[125,-23,79,6.252263069152832],[125,-22,64,6.180628776550293],[125,-22,65,6.183351516723633],[125,-22,66,6.178456783294678],[125,-22,67,6.171987056732178],[125,-22,68,6.168274402618408],[125,-22,69,6.170851230621338],[125,-22,70,6.180665969848633],[125,-22,71,6.198060512542725],[125,-22,72,6.2252516746521],[125,-22,73,6.249039173126221],[125,-22,74,6.258728981018066],[125,-22,75,6.262077331542969],[125,-22,76,6.263006687164307],[125,-22,77,6.261656761169434],[125,-22,78,6.2584991455078125],[125,-22,79,6.252263069152832],[125,-21,64,6.180628776550293],[125,-21,65,6.183351516723633],[125,-21,66,6.178456783294678],[125,-21,67,6.171987056732178],[125,-21,68,6.168274402618408],[125,-21,69,6.170851230621338],[125,-21,70,6.180665969848633],[125,-21,71,6.198060512542725],[125,-21,72,6.2252516746521],[125,-21,73,6.249039173126221],[125,-21,74,6.258728981018066],[125,-21,75,6.262077331542969],[125,-21,76,6.263006687164307],[125,-21,77,6.261656761169434],[125,-21,78,6.2584991455078125],[125,-21,79,6.252263069152832],[125,-20,64,6.180628776550293],[125,-20,65,6.183351516723633],[125,-20,66,6.178456783294678],[125,-20,67,6.171987056732178],[125,-20,68,6.168274402618408],[125,-20,69,6.170851230621338],[125,-20,70,6.180665969848633],[125,-20,71,6.198060512542725],[125,-20,72,6.2252516746521],[125,-20,73,6.249039173126221],[125,-20,74,6.258728981018066],[125,-20,75,6.262077331542969],[125,-20,76,6.263006687164307],[125,-20,77,6.261656761169434],[125,-20,78,6.2584991455078125],[125,-20,79,6.252263069152832],[125,-19,64,6.180628776550293],[125,-19,65,6.183351516723633],[125,-19,66,6.178456783294678],[125,-19,67,6.171987056732178],[125,-19,68,6.168274402618408],[125,-19,69,6.170851230621338],[125,-19,70,6.180665969848633],[125,-19,71,6.198060512542725],[125,-19,72,6.2252516746521],[125,-19,73,6.249039173126221],[125,-19,74,6.258728981018066],[125,-19,75,6.262077331542969],[125,-19,76,6.263006687164307],[125,-19,77,6.261656761169434],[125,-19,78,6.2584991455078125],[125,-19,79,6.252263069152832],[125,-18,64,6.180628776550293],[125,-18,65,6.183351516723633],[125,-18,66,6.178456783294678],[125,-18,67,6.171987056732178],[125,-18,68,6.168274402618408],[125,-18,69,6.170851230621338],[125,-18,70,6.180665969848633],[125,-18,71,6.198060512542725],[125,-18,72,6.2252516746521],[125,-18,73,6.249039173126221],[125,-18,74,6.258728981018066],[125,-18,75,6.262077331542969],[125,-18,76,6.263006687164307],[125,-18,77,6.261656761169434],[125,-18,78,6.2584991455078125],[125,-18,79,6.252263069152832],[125,-17,64,6.180628776550293],[125,-17,65,6.183351516723633],[125,-17,66,6.178456783294678],[125,-17,67,6.171987056732178],[125,-17,68,6.168274402618408],[125,-17,69,6.170851230621338],[125,-17,70,6.180665969848633],[125,-17,71,6.198060512542725],[125,-17,72,6.2252516746521],[125,-17,73,6.249039173126221],[125,-17,74,6.258728981018066],[125,-17,75,6.262077331542969],[125,-17,76,6.263006687164307],[125,-17,77,6.261656761169434],[125,-17,78,6.2584991455078125],[125,-17,79,6.252263069152832],[125,-16,64,6.180628776550293],[125,-16,65,6.183351516723633],[125,-16,66,6.178456783294678],[125,-16,67,6.171987056732178],[125,-16,68,6.168274402618408],[125,-16,69,6.170851230621338],[125,-16,70,6.180665969848633],[125,-16,71,6.198060512542725],[125,-16,72,6.2252516746521],[125,-16,73,6.249039173126221],[125,-16,74,6.258728981018066],[125,-16,75,6.262077331542969],[125,-16,76,6.263006687164307],[125,-16,77,6.261656761169434],[125,-16,78,6.2584991455078125],[125,-16,79,6.252263069152832],[125,-15,64,6.180628776550293],[125,-15,65,6.183351516723633],[125,-15,66,6.178456783294678],[125,-15,67,6.171987056732178],[125,-15,68,6.168274402618408],[125,-15,69,6.170851230621338],[125,-15,70,6.180665969848633],[125,-15,71,6.198060512542725],[125,-15,72,6.2252516746521],[125,-15,73,6.249039173126221],[125,-15,74,6.258728981018066],[125,-15,75,6.262077331542969],[125,-15,76,6.263006687164307],[125,-15,77,6.261656761169434],[125,-15,78,6.2584991455078125],[125,-15,79,6.252263069152832],[125,-14,64,6.180628776550293],[125,-14,65,6.183351516723633],[125,-14,66,6.178456783294678],[125,-14,67,6.171987056732178],[125,-14,68,6.168274402618408],[125,-14,69,6.170851230621338],[125,-14,70,6.180665969848633],[125,-14,71,6.198060512542725],[125,-14,72,6.2252516746521],[125,-14,73,6.249039173126221],[125,-14,74,6.258728981018066],[125,-14,75,6.262077331542969],[125,-14,76,6.263006687164307],[125,-14,77,6.261656761169434],[125,-14,78,6.2584991455078125],[125,-14,79,6.252263069152832],[125,-13,64,6.180628776550293],[125,-13,65,6.183351516723633],[125,-13,66,6.178456783294678],[125,-13,67,6.171987056732178],[125,-13,68,6.168274402618408],[125,-13,69,6.170851230621338],[125,-13,70,6.180665969848633],[125,-13,71,6.198060512542725],[125,-13,72,6.2252516746521],[125,-13,73,6.249039173126221],[125,-13,74,6.258728981018066],[125,-13,75,6.262077331542969],[125,-13,76,6.263006687164307],[125,-13,77,6.261656761169434],[125,-13,78,6.2584991455078125],[125,-13,79,6.252263069152832],[125,-12,64,6.180628776550293],[125,-12,65,6.183351516723633],[125,-12,66,6.178456783294678],[125,-12,67,6.171987056732178],[125,-12,68,6.168274402618408],[125,-12,69,6.170851230621338],[125,-12,70,6.180665969848633],[125,-12,71,6.198060512542725],[125,-12,72,6.2252516746521],[125,-12,73,6.249039173126221],[125,-12,74,6.258728981018066],[125,-12,75,6.262077331542969],[125,-12,76,6.263006687164307],[125,-12,77,6.261656761169434],[125,-12,78,6.2584991455078125],[125,-12,79,6.252263069152832],[125,-11,64,6.180628776550293],[125,-11,65,6.183351516723633],[125,-11,66,6.178456783294678],[125,-11,67,6.171987056732178],[125,-11,68,6.168274402618408],[125,-11,69,6.170851230621338],[125,-11,70,6.180665969848633],[125,-11,71,6.198060512542725],[125,-11,72,6.2252516746521],[125,-11,73,6.249039173126221],[125,-11,74,6.258728981018066],[125,-11,75,6.262077331542969],[125,-11,76,6.263006687164307],[125,-11,77,6.261656761169434],[125,-11,78,6.2584991455078125],[125,-11,79,6.252263069152832],[125,-10,64,6.180628776550293],[125,-10,65,6.183351516723633],[125,-10,66,6.178456783294678],[125,-10,67,6.171987056732178],[125,-10,68,6.168274402618408],[125,-10,69,6.170851230621338],[125,-10,70,6.180665969848633],[125,-10,71,6.198060512542725],[125,-10,72,6.2252516746521],[125,-10,73,6.249039173126221],[125,-10,74,6.258728981018066],[125,-10,75,6.262077331542969],[125,-10,76,6.263006687164307],[125,-10,77,6.261656761169434],[125,-10,78,6.2584991455078125],[125,-10,79,6.252263069152832],[125,-9,64,6.180628776550293],[125,-9,65,6.183351516723633],[125,-9,66,6.178456783294678],[125,-9,67,6.171987056732178],[125,-9,68,6.168274402618408],[125,-9,69,6.170851230621338],[125,-9,70,6.180665969848633],[125,-9,71,6.198060512542725],[125,-9,72,6.2252516746521],[125,-9,73,6.249039173126221],[125,-9,74,6.258728981018066],[125,-9,75,6.262077331542969],[125,-9,76,6.263006687164307],[125,-9,77,6.261656761169434],[125,-9,78,6.2584991455078125],[125,-9,79,6.252263069152832],[125,-8,64,6.180628776550293],[125,-8,65,6.183351516723633],[125,-8,66,6.178456783294678],[125,-8,67,6.171987056732178],[125,-8,68,6.168274402618408],[125,-8,69,6.170851230621338],[125,-8,70,6.180665969848633],[125,-8,71,6.198060512542725],[125,-8,72,6.2252516746521],[125,-8,73,6.249039173126221],[125,-8,74,6.258728981018066],[125,-8,75,6.262077331542969],[125,-8,76,6.263006687164307],[125,-8,77,6.261656761169434],[125,-8,78,6.2584991455078125],[125,-8,79,6.252263069152832],[125,-7,64,6.180628776550293],[125,-7,65,6.183351516723633],[125,-7,66,6.178456783294678],[125,-7,67,6.171987056732178],[125,-7,68,6.168274402618408],[125,-7,69,6.170851230621338],[125,-7,70,6.180665969848633],[125,-7,71,6.198060512542725],[125,-7,72,6.2252516746521],[125,-7,73,6.249039173126221],[125,-7,74,6.258728981018066],[125,-7,75,6.262077331542969],[125,-7,76,6.263006687164307],[125,-7,77,6.261656761169434],[125,-7,78,6.2584991455078125],[125,-7,79,6.252263069152832],[125,-6,64,6.180628776550293],[125,-6,65,6.183351516723633],[125,-6,66,6.178456783294678],[125,-6,67,6.171987056732178],[125,-6,68,6.168274402618408],[125,-6,69,6.170851230621338],[125,-6,70,6.180665969848633],[125,-6,71,6.198060512542725],[125,-6,72,6.2252516746521],[125,-6,73,6.249039173126221],[125,-6,74,6.258728981018066],[125,-6,75,6.262077331542969],[125,-6,76,6.263006687164307],[125,-6,77,6.261656761169434],[125,-6,78,6.2584991455078125],[125,-6,79,6.252263069152832],[125,-5,64,6.180628776550293],[125,-5,65,6.183351516723633],[125,-5,66,6.178456783294678],[125,-5,67,6.171987056732178],[125,-5,68,6.168274402618408],[125,-5,69,6.170851230621338],[125,-5,70,6.180665969848633],[125,-5,71,6.198060512542725],[125,-5,72,6.2252516746521],[125,-5,73,6.249039173126221],[125,-5,74,6.258728981018066],[125,-5,75,6.262077331542969],[125,-5,76,6.263006687164307],[125,-5,77,6.261656761169434],[125,-5,78,6.2584991455078125],[125,-5,79,6.252263069152832],[125,-4,64,6.180628776550293],[125,-4,65,6.183351516723633],[125,-4,66,6.178456783294678],[125,-4,67,6.171987056732178],[125,-4,68,6.168274402618408],[125,-4,69,6.170851230621338],[125,-4,70,6.180665969848633],[125,-4,71,6.198060512542725],[125,-4,72,6.2252516746521],[125,-4,73,6.249039173126221],[125,-4,74,6.258728981018066],[125,-4,75,6.262077331542969],[125,-4,76,6.263006687164307],[125,-4,77,6.261656761169434],[125,-4,78,6.2584991455078125],[125,-4,79,6.252263069152832],[125,-3,64,6.180628776550293],[125,-3,65,6.183351516723633],[125,-3,66,6.178456783294678],[125,-3,67,6.171987056732178],[125,-3,68,6.168274402618408],[125,-3,69,6.170851230621338],[125,-3,70,6.180665969848633],[125,-3,71,6.198060512542725],[125,-3,72,6.2252516746521],[125,-3,73,6.249039173126221],[125,-3,74,6.258728981018066],[125,-3,75,6.262077331542969],[125,-3,76,6.263006687164307],[125,-3,77,6.261656761169434],[125,-3,78,6.2584991455078125],[125,-3,79,6.252263069152832],[125,-2,64,6.180628776550293],[125,-2,65,6.183351516723633],[125,-2,66,6.178456783294678],[125,-2,67,6.171987056732178],[125,-2,68,6.168274402618408],[125,-2,69,6.170851230621338],[125,-2,70,6.180665969848633],[125,-2,71,6.198060512542725],[125,-2,72,6.2252516746521],[125,-2,73,6.249039173126221],[125,-2,74,6.258728981018066],[125,-2,75,6.262077331542969],[125,-2,76,6.263006687164307],[125,-2,77,6.261656761169434],[125,-2,78,6.2584991455078125],[125,-2,79,6.252263069152832],[125,-1,64,6.180628776550293],[125,-1,65,6.183351516723633],[125,-1,66,6.178456783294678],[125,-1,67,6.171987056732178],[125,-1,68,6.168274402618408],[125,-1,69,6.170851230621338],[125,-1,70,6.180665969848633],[125,-1,71,6.198060512542725],[125,-1,72,6.2252516746521],[125,-1,73,6.249039173126221],[125,-1,74,6.258728981018066],[125,-1,75,6.262077331542969],[125,-1,76,6.263006687164307],[125,-1,77,6.261656761169434],[125,-1,78,6.2584991455078125],[125,-1,79,6.252263069152832],[125,0,64,6.180628776550293],[125,0,65,6.183351516723633],[125,0,66,6.178456783294678],[125,0,67,6.171987056732178],[125,0,68,6.168274402618408],[125,0,69,6.170851230621338],[125,0,70,6.180665969848633],[125,0,71,6.198060512542725],[125,0,72,6.2252516746521],[125,0,73,6.249039173126221],[125,0,74,6.258728981018066],[125,0,75,6.262077331542969],[125,0,76,6.263006687164307],[125,0,77,6.261656761169434],[125,0,78,6.2584991455078125],[125,0,79,6.252263069152832],[125,1,64,6.180628776550293],[125,1,65,6.183351516723633],[125,1,66,6.178456783294678],[125,1,67,6.171987056732178],[125,1,68,6.168274402618408],[125,1,69,6.170851230621338],[125,1,70,6.180665969848633],[125,1,71,6.198060512542725],[125,1,72,6.2252516746521],[125,1,73,6.249039173126221],[125,1,74,6.258728981018066],[125,1,75,6.262077331542969],[125,1,76,6.263006687164307],[125,1,77,6.261656761169434],[125,1,78,6.2584991455078125],[125,1,79,6.252263069152832],[125,2,64,6.180628776550293],[125,2,65,6.183351516723633],[125,2,66,6.178456783294678],[125,2,67,6.171987056732178],[125,2,68,6.168274402618408],[125,2,69,6.170851230621338],[125,2,70,6.180665969848633],[125,2,71,6.198060512542725],[125,2,72,6.2252516746521],[125,2,73,6.249039173126221],[125,2,74,6.258728981018066],[125,2,75,6.262077331542969],[125,2,76,6.263006687164307],[125,2,77,6.261656761169434],[125,2,78,6.2584991455078125],[125,2,79,6.252263069152832],[125,3,64,6.180628776550293],[125,3,65,6.183351516723633],[125,3,66,6.178456783294678],[125,3,67,6.171987056732178],[125,3,68,6.168274402618408],[125,3,69,6.170851230621338],[125,3,70,6.180665969848633],[125,3,71,6.198060512542725],[125,3,72,6.2252516746521],[125,3,73,6.249039173126221],[125,3,74,6.258728981018066],[125,3,75,6.262077331542969],[125,3,76,6.263006687164307],[125,3,77,6.261656761169434],[125,3,78,6.2584991455078125],[125,3,79,6.252263069152832],[125,4,64,6.180628776550293],[125,4,65,6.183351516723633],[125,4,66,6.178456783294678],[125,4,67,6.171987056732178],[125,4,68,6.168274402618408],[125,4,69,6.170851230621338],[125,4,70,6.180665969848633],[125,4,71,6.198060512542725],[125,4,72,6.2252516746521],[125,4,73,6.249039173126221],[125,4,74,6.258728981018066],[125,4,75,6.262077331542969],[125,4,76,6.263006687164307],[125,4,77,6.261656761169434],[125,4,78,6.2584991455078125],[125,4,79,6.252263069152832],[125,5,64,6.180628776550293],[125,5,65,6.183351516723633],[125,5,66,6.178456783294678],[125,5,67,6.171987056732178],[125,5,68,6.168274402618408],[125,5,69,6.170851230621338],[125,5,70,6.180665969848633],[125,5,71,6.198060512542725],[125,5,72,6.2252516746521],[125,5,73,6.249039173126221],[125,5,74,6.258728981018066],[125,5,75,6.262077331542969],[125,5,76,6.263006687164307],[125,5,77,6.261656761169434],[125,5,78,6.2584991455078125],[125,5,79,6.252263069152832],[125,6,64,6.180628776550293],[125,6,65,6.183351516723633],[125,6,66,6.178456783294678],[125,6,67,6.171987056732178],[125,6,68,6.168274402618408],[125,6,69,6.170851230621338],[125,6,70,6.180665969848633],[125,6,71,6.198060512542725],[125,6,72,6.2252516746521],[125,6,73,6.249039173126221],[125,6,74,6.258728981018066],[125,6,75,6.262077331542969],[125,6,76,6.263006687164307],[125,6,77,6.261656761169434],[125,6,78,6.2584991455078125],[125,6,79,6.252263069152832],[125,7,64,6.180628776550293],[125,7,65,6.183351516723633],[125,7,66,6.178456783294678],[125,7,67,6.171987056732178],[125,7,68,6.168274402618408],[125,7,69,6.170851230621338],[125,7,70,6.180665969848633],[125,7,71,6.198060512542725],[125,7,72,6.2252516746521],[125,7,73,6.249039173126221],[125,7,74,6.258728981018066],[125,7,75,6.262077331542969],[125,7,76,6.263006687164307],[125,7,77,6.261656761169434],[125,7,78,6.2584991455078125],[125,7,79,6.252263069152832],[125,8,64,6.180628776550293],[125,8,65,6.183351516723633],[125,8,66,6.178456783294678],[125,8,67,6.171987056732178],[125,8,68,6.168274402618408],[125,8,69,6.170851230621338],[125,8,70,6.180665969848633],[125,8,71,6.198060512542725],[125,8,72,6.2252516746521],[125,8,73,6.249039173126221],[125,8,74,6.258728981018066],[125,8,75,6.262077331542969],[125,8,76,6.263006687164307],[125,8,77,6.261656761169434],[125,8,78,6.2584991455078125],[125,8,79,6.252263069152832],[125,9,64,6.180628776550293],[125,9,65,6.183351516723633],[125,9,66,6.178456783294678],[125,9,67,6.171987056732178],[125,9,68,6.168274402618408],[125,9,69,6.170851230621338],[125,9,70,6.180665969848633],[125,9,71,6.198060512542725],[125,9,72,6.2252516746521],[125,9,73,6.249039173126221],[125,9,74,6.258728981018066],[125,9,75,6.262077331542969],[125,9,76,6.263006687164307],[125,9,77,6.261656761169434],[125,9,78,6.2584991455078125],[125,9,79,6.252263069152832],[125,10,64,6.180628776550293],[125,10,65,6.183351516723633],[125,10,66,6.178456783294678],[125,10,67,6.171987056732178],[125,10,68,6.168274402618408],[125,10,69,6.170851230621338],[125,10,70,6.180665969848633],[125,10,71,6.198060512542725],[125,10,72,6.2252516746521],[125,10,73,6.249039173126221],[125,10,74,6.258728981018066],[125,10,75,6.262077331542969],[125,10,76,6.263006687164307],[125,10,77,6.261656761169434],[125,10,78,6.2584991455078125],[125,10,79,6.252263069152832],[125,11,64,6.180628776550293],[125,11,65,6.183351516723633],[125,11,66,6.178456783294678],[125,11,67,6.171987056732178],[125,11,68,6.168274402618408],[125,11,69,6.170851230621338],[125,11,70,6.180665969848633],[125,11,71,6.198060512542725],[125,11,72,6.2252516746521],[125,11,73,6.249039173126221],[125,11,74,6.258728981018066],[125,11,75,6.262077331542969],[125,11,76,6.263006687164307],[125,11,77,6.261656761169434],[125,11,78,6.2584991455078125],[125,11,79,6.252263069152832],[125,12,64,6.180628776550293],[125,12,65,6.183351516723633],[125,12,66,6.178456783294678],[125,12,67,6.171987056732178],[125,12,68,6.168274402618408],[125,12,69,6.170851230621338],[125,12,70,6.180665969848633],[125,12,71,6.198060512542725],[125,12,72,6.2252516746521],[125,12,73,6.249039173126221],[125,12,74,6.258728981018066],[125,12,75,6.262077331542969],[125,12,76,6.263006687164307],[125,12,77,6.261656761169434],[125,12,78,6.2584991455078125],[125,12,79,6.252263069152832],[125,13,64,6.180628776550293],[125,13,65,6.183351516723633],[125,13,66,6.178456783294678],[125,13,67,6.171987056732178],[125,13,68,6.168274402618408],[125,13,69,6.170851230621338],[125,13,70,6.180665969848633],[125,13,71,6.198060512542725],[125,13,72,6.2252516746521],[125,13,73,6.249039173126221],[125,13,74,6.258728981018066],[125,13,75,6.262077331542969],[125,13,76,6.263006687164307],[125,13,77,6.261656761169434],[125,13,78,6.2584991455078125],[125,13,79,6.252263069152832],[125,14,64,6.180628776550293],[125,14,65,6.183351516723633],[125,14,66,6.178456783294678],[125,14,67,6.171987056732178],[125,14,68,6.168274402618408],[125,14,69,6.170851230621338],[125,14,70,6.180665969848633],[125,14,71,6.198060512542725],[125,14,72,6.2252516746521],[125,14,73,6.249039173126221],[125,14,74,6.258728981018066],[125,14,75,6.262077331542969],[125,14,76,6.263006687164307],[125,14,77,6.261656761169434],[125,14,78,6.2584991455078125],[125,14,79,6.252263069152832],[125,15,64,6.180628776550293],[125,15,65,6.183351516723633],[125,15,66,6.178456783294678],[125,15,67,6.171987056732178],[125,15,68,6.168274402618408],[125,15,69,6.170851230621338],[125,15,70,6.180665969848633],[125,15,71,6.198060512542725],[125,15,72,6.2252516746521],[125,15,73,6.249039173126221],[125,15,74,6.258728981018066],[125,15,75,6.262077331542969],[125,15,76,6.263006687164307],[125,15,77,6.261656761169434],[125,15,78,6.2584991455078125],[125,15,79,6.252263069152832],[125,16,64,6.180628776550293],[125,16,65,6.183351516723633],[125,16,66,6.178456783294678],[125,16,67,6.171987056732178],[125,16,68,6.168274402618408],[125,16,69,6.170851230621338],[125,16,70,6.180665969848633],[125,16,71,6.198060512542725],[125,16,72,6.2252516746521],[125,16,73,6.249039173126221],[125,16,74,6.258728981018066],[125,16,75,6.262077331542969],[125,16,76,6.263006687164307],[125,16,77,6.261656761169434],[125,16,78,6.2584991455078125],[125,16,79,6.252263069152832],[125,17,64,6.180628776550293],[125,17,65,6.183351516723633],[125,17,66,6.178456783294678],[125,17,67,6.171987056732178],[125,17,68,6.168274402618408],[125,17,69,6.170851230621338],[125,17,70,6.180665969848633],[125,17,71,6.198060512542725],[125,17,72,6.2252516746521],[125,17,73,6.249039173126221],[125,17,74,6.258728981018066],[125,17,75,6.262077331542969],[125,17,76,6.263006687164307],[125,17,77,6.261656761169434],[125,17,78,6.2584991455078125],[125,17,79,6.252263069152832],[125,18,64,6.180628776550293],[125,18,65,6.183351516723633],[125,18,66,6.178456783294678],[125,18,67,6.171987056732178],[125,18,68,6.168274402618408],[125,18,69,6.170851230621338],[125,18,70,6.180665969848633],[125,18,71,6.198060512542725],[125,18,72,6.2252516746521],[125,18,73,6.249039173126221],[125,18,74,6.258728981018066],[125,18,75,6.262077331542969],[125,18,76,6.263006687164307],[125,18,77,6.261656761169434],[125,18,78,6.2584991455078125],[125,18,79,6.252263069152832],[125,19,64,6.180628776550293],[125,19,65,6.183351516723633],[125,19,66,6.178456783294678],[125,19,67,6.171987056732178],[125,19,68,6.168274402618408],[125,19,69,6.170851230621338],[125,19,70,6.180665969848633],[125,19,71,6.198060512542725],[125,19,72,6.2252516746521],[125,19,73,6.249039173126221],[125,19,74,6.258728981018066],[125,19,75,6.262077331542969],[125,19,76,6.263006687164307],[125,19,77,6.261656761169434],[125,19,78,6.2584991455078125],[125,19,79,6.252263069152832],[125,20,64,6.180628776550293],[125,20,65,6.183351516723633],[125,20,66,6.178456783294678],[125,20,67,6.171987056732178],[125,20,68,6.168274402618408],[125,20,69,6.170851230621338],[125,20,70,6.180665969848633],[125,20,71,6.198060512542725],[125,20,72,6.2252516746521],[125,20,73,6.249039173126221],[125,20,74,6.258728981018066],[125,20,75,6.262077331542969],[125,20,76,6.263006687164307],[125,20,77,6.261656761169434],[125,20,78,6.2584991455078125],[125,20,79,6.252263069152832],[125,21,64,6.180628776550293],[125,21,65,6.183351516723633],[125,21,66,6.178456783294678],[125,21,67,6.171987056732178],[125,21,68,6.168274402618408],[125,21,69,6.170851230621338],[125,21,70,6.180665969848633],[125,21,71,6.198060512542725],[125,21,72,6.2252516746521],[125,21,73,6.249039173126221],[125,21,74,6.258728981018066],[125,21,75,6.262077331542969],[125,21,76,6.263006687164307],[125,21,77,6.261656761169434],[125,21,78,6.2584991455078125],[125,21,79,6.252263069152832],[125,22,64,6.180628776550293],[125,22,65,6.183351516723633],[125,22,66,6.178456783294678],[125,22,67,6.171987056732178],[125,22,68,6.168274402618408],[125,22,69,6.170851230621338],[125,22,70,6.180665969848633],[125,22,71,6.198060512542725],[125,22,72,6.2252516746521],[125,22,73,6.249039173126221],[125,22,74,6.258728981018066],[125,22,75,6.262077331542969],[125,22,76,6.263006687164307],[125,22,77,6.261656761169434],[125,22,78,6.2584991455078125],[125,22,79,6.252263069152832],[125,23,64,6.180628776550293],[125,23,65,6.183351516723633],[125,23,66,6.178456783294678],[125,23,67,6.171987056732178],[125,23,68,6.168274402618408],[125,23,69,6.170851230621338],[125,23,70,6.180665969848633],[125,23,71,6.198060512542725],[125,23,72,6.2252516746521],[125,23,73,6.249039173126221],[125,23,74,6.258728981018066],[125,23,75,6.262077331542969],[125,23,76,6.263006687164307],[125,23,77,6.261656761169434],[125,23,78,6.2584991455078125],[125,23,79,6.252263069152832],[125,24,64,6.180628776550293],[125,24,65,6.183351516723633],[125,24,66,6.178456783294678],[125,24,67,6.171987056732178],[125,24,68,6.168274402618408],[125,24,69,6.170851230621338],[125,24,70,6.180665969848633],[125,24,71,6.198060512542725],[125,24,72,6.2252516746521],[125,24,73,6.249039173126221],[125,24,74,6.258728981018066],[125,24,75,6.262077331542969],[125,24,76,6.263006687164307],[125,24,77,6.261656761169434],[125,24,78,6.2584991455078125],[125,24,79,6.252263069152832],[125,25,64,6.180628776550293],[125,25,65,6.183351516723633],[125,25,66,6.178456783294678],[125,25,67,6.171987056732178],[125,25,68,6.168274402618408],[125,25,69,6.170851230621338],[125,25,70,6.180665969848633],[125,25,71,6.198060512542725],[125,25,72,6.2252516746521],[125,25,73,6.249039173126221],[125,25,74,6.258728981018066],[125,25,75,6.262077331542969],[125,25,76,6.263006687164307],[125,25,77,6.261656761169434],[125,25,78,6.2584991455078125],[125,25,79,6.252263069152832],[125,26,64,6.180628776550293],[125,26,65,6.183351516723633],[125,26,66,6.178456783294678],[125,26,67,6.171987056732178],[125,26,68,6.168274402618408],[125,26,69,6.170851230621338],[125,26,70,6.180665969848633],[125,26,71,6.198060512542725],[125,26,72,6.2252516746521],[125,26,73,6.249039173126221],[125,26,74,6.258728981018066],[125,26,75,6.262077331542969],[125,26,76,6.263006687164307],[125,26,77,6.261656761169434],[125,26,78,6.2584991455078125],[125,26,79,6.252263069152832],[125,27,64,6.180628776550293],[125,27,65,6.183351516723633],[125,27,66,6.178456783294678],[125,27,67,6.171987056732178],[125,27,68,6.168274402618408],[125,27,69,6.170851230621338],[125,27,70,6.180665969848633],[125,27,71,6.198060512542725],[125,27,72,6.2252516746521],[125,27,73,6.249039173126221],[125,27,74,6.258728981018066],[125,27,75,6.262077331542969],[125,27,76,6.263006687164307],[125,27,77,6.261656761169434],[125,27,78,6.2584991455078125],[125,27,79,6.252263069152832],[125,28,64,6.180628776550293],[125,28,65,6.183351516723633],[125,28,66,6.178456783294678],[125,28,67,6.171987056732178],[125,28,68,6.168274402618408],[125,28,69,6.170851230621338],[125,28,70,6.180665969848633],[125,28,71,6.198060512542725],[125,28,72,6.2252516746521],[125,28,73,6.249039173126221],[125,28,74,6.258728981018066],[125,28,75,6.262077331542969],[125,28,76,6.263006687164307],[125,28,77,6.261656761169434],[125,28,78,6.2584991455078125],[125,28,79,6.252263069152832],[125,29,64,6.180628776550293],[125,29,65,6.183351516723633],[125,29,66,6.178456783294678],[125,29,67,6.171987056732178],[125,29,68,6.168274402618408],[125,29,69,6.170851230621338],[125,29,70,6.180665969848633],[125,29,71,6.198060512542725],[125,29,72,6.2252516746521],[125,29,73,6.249039173126221],[125,29,74,6.258728981018066],[125,29,75,6.262077331542969],[125,29,76,6.263006687164307],[125,29,77,6.261656761169434],[125,29,78,6.2584991455078125],[125,29,79,6.252263069152832],[125,30,64,6.180628776550293],[125,30,65,6.183351516723633],[125,30,66,6.178456783294678],[125,30,67,6.171987056732178],[125,30,68,6.168274402618408],[125,30,69,6.170851230621338],[125,30,70,6.180665969848633],[125,30,71,6.198060512542725],[125,30,72,6.2252516746521],[125,30,73,6.249039173126221],[125,30,74,6.258728981018066],[125,30,75,6.262077331542969],[125,30,76,6.263006687164307],[125,30,77,6.261656761169434],[125,30,78,6.2584991455078125],[125,30,79,6.252263069152832],[125,31,64,6.180628776550293],[125,31,65,6.183351516723633],[125,31,66,6.178456783294678],[125,31,67,6.171987056732178],[125,31,68,6.168274402618408],[125,31,69,6.170851230621338],[125,31,70,6.180665969848633],[125,31,71,6.198060512542725],[125,31,72,6.2252516746521],[125,31,73,6.249039173126221],[125,31,74,6.258728981018066],[125,31,75,6.262077331542969],[125,31,76,6.263006687164307],[125,31,77,6.261656761169434],[125,31,78,6.2584991455078125],[125,31,79,6.252263069152832],[125,32,64,6.180628776550293],[125,32,65,6.183351516723633],[125,32,66,6.178456783294678],[125,32,67,6.171987056732178],[125,32,68,6.168274402618408],[125,32,69,6.170851230621338],[125,32,70,6.180665969848633],[125,32,71,6.198060512542725],[125,32,72,6.2252516746521],[125,32,73,6.249039173126221],[125,32,74,6.258728981018066],[125,32,75,6.262077331542969],[125,32,76,6.263006687164307],[125,32,77,6.261656761169434],[125,32,78,6.2584991455078125],[125,32,79,6.252263069152832],[125,33,64,6.180628776550293],[125,33,65,6.183351516723633],[125,33,66,6.178456783294678],[125,33,67,6.171987056732178],[125,33,68,6.168274402618408],[125,33,69,6.170851230621338],[125,33,70,6.180665969848633],[125,33,71,6.198060512542725],[125,33,72,6.2252516746521],[125,33,73,6.249039173126221],[125,33,74,6.258728981018066],[125,33,75,6.262077331542969],[125,33,76,6.263006687164307],[125,33,77,6.261656761169434],[125,33,78,6.2584991455078125],[125,33,79,6.252263069152832],[125,34,64,6.180628776550293],[125,34,65,6.183351516723633],[125,34,66,6.178456783294678],[125,34,67,6.171987056732178],[125,34,68,6.168274402618408],[125,34,69,6.170851230621338],[125,34,70,6.180665969848633],[125,34,71,6.198060512542725],[125,34,72,6.2252516746521],[125,34,73,6.249039173126221],[125,34,74,6.258728981018066],[125,34,75,6.262077331542969],[125,34,76,6.263006687164307],[125,34,77,6.261656761169434],[125,34,78,6.2584991455078125],[125,34,79,6.252263069152832],[125,35,64,6.180628776550293],[125,35,65,6.183351516723633],[125,35,66,6.178456783294678],[125,35,67,6.171987056732178],[125,35,68,6.168274402618408],[125,35,69,6.170851230621338],[125,35,70,6.180665969848633],[125,35,71,6.198060512542725],[125,35,72,6.2252516746521],[125,35,73,6.249039173126221],[125,35,74,6.258728981018066],[125,35,75,6.262077331542969],[125,35,76,6.263006687164307],[125,35,77,6.261656761169434],[125,35,78,6.2584991455078125],[125,35,79,6.252263069152832],[125,36,64,6.180628776550293],[125,36,65,6.183351516723633],[125,36,66,6.178456783294678],[125,36,67,6.171987056732178],[125,36,68,6.168274402618408],[125,36,69,6.170851230621338],[125,36,70,6.180665969848633],[125,36,71,6.198060512542725],[125,36,72,6.2252516746521],[125,36,73,6.249039173126221],[125,36,74,6.258728981018066],[125,36,75,6.262077331542969],[125,36,76,6.263006687164307],[125,36,77,6.261656761169434],[125,36,78,6.2584991455078125],[125,36,79,6.252263069152832],[125,37,64,6.180628776550293],[125,37,65,6.183351516723633],[125,37,66,6.178456783294678],[125,37,67,6.171987056732178],[125,37,68,6.168274402618408],[125,37,69,6.170851230621338],[125,37,70,6.180665969848633],[125,37,71,6.198060512542725],[125,37,72,6.2252516746521],[125,37,73,6.249039173126221],[125,37,74,6.258728981018066],[125,37,75,6.262077331542969],[125,37,76,6.263006687164307],[125,37,77,6.261656761169434],[125,37,78,6.2584991455078125],[125,37,79,6.252263069152832],[125,38,64,6.180628776550293],[125,38,65,6.183351516723633],[125,38,66,6.178456783294678],[125,38,67,6.171987056732178],[125,38,68,6.168274402618408],[125,38,69,6.170851230621338],[125,38,70,6.180665969848633],[125,38,71,6.198060512542725],[125,38,72,6.2252516746521],[125,38,73,6.249039173126221],[125,38,74,6.258728981018066],[125,38,75,6.262077331542969],[125,38,76,6.263006687164307],[125,38,77,6.261656761169434],[125,38,78,6.2584991455078125],[125,38,79,6.252263069152832],[125,39,64,6.180628776550293],[125,39,65,6.183351516723633],[125,39,66,6.178456783294678],[125,39,67,6.171987056732178],[125,39,68,6.168274402618408],[125,39,69,6.170851230621338],[125,39,70,6.180665969848633],[125,39,71,6.198060512542725],[125,39,72,6.2252516746521],[125,39,73,6.249039173126221],[125,39,74,6.258728981018066],[125,39,75,6.262077331542969],[125,39,76,6.263006687164307],[125,39,77,6.261656761169434],[125,39,78,6.2584991455078125],[125,39,79,6.252263069152832],[125,40,64,6.180628776550293],[125,40,65,6.183351516723633],[125,40,66,6.178456783294678],[125,40,67,6.171987056732178],[125,40,68,6.168274402618408],[125,40,69,6.170851230621338],[125,40,70,6.180665969848633],[125,40,71,6.198060512542725],[125,40,72,6.2252516746521],[125,40,73,6.249039173126221],[125,40,74,6.258728981018066],[125,40,75,6.262077331542969],[125,40,76,6.263006687164307],[125,40,77,6.261656761169434],[125,40,78,6.2584991455078125],[125,40,79,6.252263069152832],[125,41,64,6.180628776550293],[125,41,65,6.183351516723633],[125,41,66,6.178456783294678],[125,41,67,6.171987056732178],[125,41,68,6.168274402618408],[125,41,69,6.170851230621338],[125,41,70,6.180665969848633],[125,41,71,6.198060512542725],[125,41,72,6.2252516746521],[125,41,73,6.249039173126221],[125,41,74,6.258728981018066],[125,41,75,6.262077331542969],[125,41,76,6.263006687164307],[125,41,77,6.261656761169434],[125,41,78,6.2584991455078125],[125,41,79,6.252263069152832],[125,42,64,6.180628776550293],[125,42,65,6.183351516723633],[125,42,66,6.178456783294678],[125,42,67,6.171987056732178],[125,42,68,6.168274402618408],[125,42,69,6.170851230621338],[125,42,70,6.180665969848633],[125,42,71,6.198060512542725],[125,42,72,6.2252516746521],[125,42,73,6.249039173126221],[125,42,74,6.258728981018066],[125,42,75,6.262077331542969],[125,42,76,6.263006687164307],[125,42,77,6.261656761169434],[125,42,78,6.2584991455078125],[125,42,79,6.252263069152832],[125,43,64,6.180628776550293],[125,43,65,6.183351516723633],[125,43,66,6.178456783294678],[125,43,67,6.171987056732178],[125,43,68,6.168274402618408],[125,43,69,6.170851230621338],[125,43,70,6.180665969848633],[125,43,71,6.198060512542725],[125,43,72,6.2252516746521],[125,43,73,6.249039173126221],[125,43,74,6.258728981018066],[125,43,75,6.262077331542969],[125,43,76,6.263006687164307],[125,43,77,6.261656761169434],[125,43,78,6.2584991455078125],[125,43,79,6.252263069152832],[125,44,64,6.180628776550293],[125,44,65,6.183351516723633],[125,44,66,6.178456783294678],[125,44,67,6.171987056732178],[125,44,68,6.168274402618408],[125,44,69,6.170851230621338],[125,44,70,6.180665969848633],[125,44,71,6.198060512542725],[125,44,72,6.2252516746521],[125,44,73,6.249039173126221],[125,44,74,6.258728981018066],[125,44,75,6.262077331542969],[125,44,76,6.263006687164307],[125,44,77,6.261656761169434],[125,44,78,6.2584991455078125],[125,44,79,6.252263069152832],[125,45,64,6.180628776550293],[125,45,65,6.183351516723633],[125,45,66,6.178456783294678],[125,45,67,6.171987056732178],[125,45,68,6.168274402618408],[125,45,69,6.170851230621338],[125,45,70,6.180665969848633],[125,45,71,6.198060512542725],[125,45,72,6.2252516746521],[125,45,73,6.249039173126221],[125,45,74,6.258728981018066],[125,45,75,6.262077331542969],[125,45,76,6.263006687164307],[125,45,77,6.261656761169434],[125,45,78,6.2584991455078125],[125,45,79,6.252263069152832],[125,46,64,6.180628776550293],[125,46,65,6.183351516723633],[125,46,66,6.178456783294678],[125,46,67,6.171987056732178],[125,46,68,6.168274402618408],[125,46,69,6.170851230621338],[125,46,70,6.180665969848633],[125,46,71,6.198060512542725],[125,46,72,6.2252516746521],[125,46,73,6.249039173126221],[125,46,74,6.258728981018066],[125,46,75,6.262077331542969],[125,46,76,6.263006687164307],[125,46,77,6.261656761169434],[125,46,78,6.2584991455078125],[125,46,79,6.252263069152832],[125,47,64,6.180628776550293],[125,47,65,6.183351516723633],[125,47,66,6.178456783294678],[125,47,67,6.171987056732178],[125,47,68,6.168274402618408],[125,47,69,6.170851230621338],[125,47,70,6.180665969848633],[125,47,71,6.198060512542725],[125,47,72,6.2252516746521],[125,47,73,6.249039173126221],[125,47,74,6.258728981018066],[125,47,75,6.262077331542969],[125,47,76,6.263006687164307],[125,47,77,6.261656761169434],[125,47,78,6.2584991455078125],[125,47,79,6.252263069152832],[125,48,64,6.180628776550293],[125,48,65,6.183351516723633],[125,48,66,6.178456783294678],[125,48,67,6.171987056732178],[125,48,68,6.168274402618408],[125,48,69,6.170851230621338],[125,48,70,6.180665969848633],[125,48,71,6.198060512542725],[125,48,72,6.2252516746521],[125,48,73,6.249039173126221],[125,48,74,6.258728981018066],[125,48,75,6.262077331542969],[125,48,76,6.263006687164307],[125,48,77,6.261656761169434],[125,48,78,6.2584991455078125],[125,48,79,6.252263069152832],[125,49,64,6.180628776550293],[125,49,65,6.183351516723633],[125,49,66,6.178456783294678],[125,49,67,6.171987056732178],[125,49,68,6.168274402618408],[125,49,69,6.170851230621338],[125,49,70,6.180665969848633],[125,49,71,6.198060512542725],[125,49,72,6.2252516746521],[125,49,73,6.249039173126221],[125,49,74,6.258728981018066],[125,49,75,6.262077331542969],[125,49,76,6.263006687164307],[125,49,77,6.261656761169434],[125,49,78,6.2584991455078125],[125,49,79,6.252263069152832],[125,50,64,6.180628776550293],[125,50,65,6.183351516723633],[125,50,66,6.178456783294678],[125,50,67,6.171987056732178],[125,50,68,6.168274402618408],[125,50,69,6.170851230621338],[125,50,70,6.180665969848633],[125,50,71,6.198060512542725],[125,50,72,6.2252516746521],[125,50,73,6.249039173126221],[125,50,74,6.258728981018066],[125,50,75,6.262077331542969],[125,50,76,6.263006687164307],[125,50,77,6.261656761169434],[125,50,78,6.2584991455078125],[125,50,79,6.252263069152832],[125,51,64,6.180628776550293],[125,51,65,6.183351516723633],[125,51,66,6.178456783294678],[125,51,67,6.171987056732178],[125,51,68,6.168274402618408],[125,51,69,6.170851230621338],[125,51,70,6.180665969848633],[125,51,71,6.198060512542725],[125,51,72,6.2252516746521],[125,51,73,6.249039173126221],[125,51,74,6.258728981018066],[125,51,75,6.262077331542969],[125,51,76,6.263006687164307],[125,51,77,6.261656761169434],[125,51,78,6.2584991455078125],[125,51,79,6.252263069152832],[125,52,64,6.180628776550293],[125,52,65,6.183351516723633],[125,52,66,6.178456783294678],[125,52,67,6.171987056732178],[125,52,68,6.168274402618408],[125,52,69,6.170851230621338],[125,52,70,6.180665969848633],[125,52,71,6.198060512542725],[125,52,72,6.2252516746521],[125,52,73,6.249039173126221],[125,52,74,6.258728981018066],[125,52,75,6.262077331542969],[125,52,76,6.263006687164307],[125,52,77,6.261656761169434],[125,52,78,6.2584991455078125],[125,52,79,6.252263069152832],[125,53,64,6.180628776550293],[125,53,65,6.183351516723633],[125,53,66,6.178456783294678],[125,53,67,6.171987056732178],[125,53,68,6.168274402618408],[125,53,69,6.170851230621338],[125,53,70,6.180665969848633],[125,53,71,6.198060512542725],[125,53,72,6.2252516746521],[125,53,73,6.249039173126221],[125,53,74,6.258728981018066],[125,53,75,6.262077331542969],[125,53,76,6.263006687164307],[125,53,77,6.261656761169434],[125,53,78,6.2584991455078125],[125,53,79,6.252263069152832],[125,54,64,6.180628776550293],[125,54,65,6.183351516723633],[125,54,66,6.178456783294678],[125,54,67,6.171987056732178],[125,54,68,6.168274402618408],[125,54,69,6.170851230621338],[125,54,70,6.180665969848633],[125,54,71,6.198060512542725],[125,54,72,6.2252516746521],[125,54,73,6.249039173126221],[125,54,74,6.258728981018066],[125,54,75,6.262077331542969],[125,54,76,6.263006687164307],[125,54,77,6.261656761169434],[125,54,78,6.2584991455078125],[125,54,79,6.252263069152832],[125,55,64,6.180628776550293],[125,55,65,6.183351516723633],[125,55,66,6.178456783294678],[125,55,67,6.171987056732178],[125,55,68,6.168274402618408],[125,55,69,6.170851230621338],[125,55,70,6.180665969848633],[125,55,71,6.198060512542725],[125,55,72,6.2252516746521],[125,55,73,6.249039173126221],[125,55,74,6.258728981018066],[125,55,75,6.262077331542969],[125,55,76,6.263006687164307],[125,55,77,6.261656761169434],[125,55,78,6.2584991455078125],[125,55,79,6.252263069152832],[125,56,64,6.180628776550293],[125,56,65,6.183351516723633],[125,56,66,6.178456783294678],[125,56,67,6.171987056732178],[125,56,68,6.168274402618408],[125,56,69,6.170851230621338],[125,56,70,6.180665969848633],[125,56,71,6.198060512542725],[125,56,72,6.2252516746521],[125,56,73,6.249039173126221],[125,56,74,6.258728981018066],[125,56,75,6.262077331542969],[125,56,76,6.263006687164307],[125,56,77,6.261656761169434],[125,56,78,6.2584991455078125],[125,56,79,6.252263069152832],[125,57,64,6.180628776550293],[125,57,65,6.183351516723633],[125,57,66,6.178456783294678],[125,57,67,6.171987056732178],[125,57,68,6.168274402618408],[125,57,69,6.170851230621338],[125,57,70,6.180665969848633],[125,57,71,6.198060512542725],[125,57,72,6.2252516746521],[125,57,73,6.249039173126221],[125,57,74,6.258728981018066],[125,57,75,6.262077331542969],[125,57,76,6.263006687164307],[125,57,77,6.261656761169434],[125,57,78,6.2584991455078125],[125,57,79,6.252263069152832],[125,58,64,6.180628776550293],[125,58,65,6.183351516723633],[125,58,66,6.178456783294678],[125,58,67,6.171987056732178],[125,58,68,6.168274402618408],[125,58,69,6.170851230621338],[125,58,70,6.180665969848633],[125,58,71,6.198060512542725],[125,58,72,6.2252516746521],[125,58,73,6.249039173126221],[125,58,74,6.258728981018066],[125,58,75,6.262077331542969],[125,58,76,6.263006687164307],[125,58,77,6.261656761169434],[125,58,78,6.2584991455078125],[125,58,79,6.252263069152832],[125,59,64,6.180628776550293],[125,59,65,6.183351516723633],[125,59,66,6.178456783294678],[125,59,67,6.171987056732178],[125,59,68,6.168274402618408],[125,59,69,6.170851230621338],[125,59,70,6.180665969848633],[125,59,71,6.198060512542725],[125,59,72,6.2252516746521],[125,59,73,6.249039173126221],[125,59,74,6.258728981018066],[125,59,75,6.262077331542969],[125,59,76,6.263006687164307],[125,59,77,6.261656761169434],[125,59,78,6.2584991455078125],[125,59,79,6.252263069152832],[125,60,64,6.180628776550293],[125,60,65,6.183351516723633],[125,60,66,6.178456783294678],[125,60,67,6.171987056732178],[125,60,68,6.168274402618408],[125,60,69,6.170851230621338],[125,60,70,6.180665969848633],[125,60,71,6.198060512542725],[125,60,72,6.2252516746521],[125,60,73,6.249039173126221],[125,60,74,6.258728981018066],[125,60,75,6.262077331542969],[125,60,76,6.263006687164307],[125,60,77,6.261656761169434],[125,60,78,6.2584991455078125],[125,60,79,6.252263069152832],[125,61,64,6.180628776550293],[125,61,65,6.183351516723633],[125,61,66,6.178456783294678],[125,61,67,6.171987056732178],[125,61,68,6.168274402618408],[125,61,69,6.170851230621338],[125,61,70,6.180665969848633],[125,61,71,6.198060512542725],[125,61,72,6.2252516746521],[125,61,73,6.249039173126221],[125,61,74,6.258728981018066],[125,61,75,6.262077331542969],[125,61,76,6.263006687164307],[125,61,77,6.261656761169434],[125,61,78,6.2584991455078125],[125,61,79,6.252263069152832],[125,62,64,6.180628776550293],[125,62,65,6.183351516723633],[125,62,66,6.178456783294678],[125,62,67,6.171987056732178],[125,62,68,6.168274402618408],[125,62,69,6.170851230621338],[125,62,70,6.180665969848633],[125,62,71,6.198060512542725],[125,62,72,6.2252516746521],[125,62,73,6.249039173126221],[125,62,74,6.258728981018066],[125,62,75,6.262077331542969],[125,62,76,6.263006687164307],[125,62,77,6.261656761169434],[125,62,78,6.2584991455078125],[125,62,79,6.252263069152832],[125,63,64,6.180628776550293],[125,63,65,6.183351516723633],[125,63,66,6.178456783294678],[125,63,67,6.171987056732178],[125,63,68,6.168274402618408],[125,63,69,6.170851230621338],[125,63,70,6.180665969848633],[125,63,71,6.198060512542725],[125,63,72,6.2252516746521],[125,63,73,6.249039173126221],[125,63,74,6.258728981018066],[125,63,75,6.262077331542969],[125,63,76,6.263006687164307],[125,63,77,6.261656761169434],[125,63,78,6.2584991455078125],[125,63,79,6.252263069152832],[125,64,64,6.180628776550293],[125,64,65,6.183351516723633],[125,64,66,6.178456783294678],[125,64,67,6.171987056732178],[125,64,68,6.168274402618408],[125,64,69,6.170851230621338],[125,64,70,6.180665969848633],[125,64,71,6.198060512542725],[125,64,72,6.2252516746521],[125,64,73,6.249039173126221],[125,64,74,6.258728981018066],[125,64,75,6.262077331542969],[125,64,76,6.263006687164307],[125,64,77,6.261656761169434],[125,64,78,6.2584991455078125],[125,64,79,6.252263069152832],[125,65,64,6.180628776550293],[125,65,65,6.183351516723633],[125,65,66,6.178456783294678],[125,65,67,6.171987056732178],[125,65,68,6.168274402618408],[125,65,69,6.170851230621338],[125,65,70,6.180665969848633],[125,65,71,6.198060512542725],[125,65,72,6.2252516746521],[125,65,73,6.249039173126221],[125,65,74,6.258728981018066],[125,65,75,6.262077331542969],[125,65,76,6.263006687164307],[125,65,77,6.261656761169434],[125,65,78,6.2584991455078125],[125,65,79,6.252263069152832],[125,66,64,6.180628776550293],[125,66,65,6.183351516723633],[125,66,66,6.178456783294678],[125,66,67,6.171987056732178],[125,66,68,6.168274402618408],[125,66,69,6.170851230621338],[125,66,70,6.180665969848633],[125,66,71,6.198060512542725],[125,66,72,6.2252516746521],[125,66,73,6.249039173126221],[125,66,74,6.258728981018066],[125,66,75,6.262077331542969],[125,66,76,6.263006687164307],[125,66,77,6.261656761169434],[125,66,78,6.2584991455078125],[125,66,79,6.252263069152832],[125,67,64,6.180628776550293],[125,67,65,6.183351516723633],[125,67,66,6.178456783294678],[125,67,67,6.171987056732178],[125,67,68,6.168274402618408],[125,67,69,6.170851230621338],[125,67,70,6.180665969848633],[125,67,71,6.198060512542725],[125,67,72,6.2252516746521],[125,67,73,6.249039173126221],[125,67,74,6.258728981018066],[125,67,75,6.262077331542969],[125,67,76,6.263006687164307],[125,67,77,6.261656761169434],[125,67,78,6.2584991455078125],[125,67,79,6.252263069152832],[125,68,64,6.180628776550293],[125,68,65,6.183351516723633],[125,68,66,6.178456783294678],[125,68,67,6.171987056732178],[125,68,68,6.168274402618408],[125,68,69,6.170851230621338],[125,68,70,6.180665969848633],[125,68,71,6.198060512542725],[125,68,72,6.2252516746521],[125,68,73,6.249039173126221],[125,68,74,6.258728981018066],[125,68,75,6.262077331542969],[125,68,76,6.263006687164307],[125,68,77,6.261656761169434],[125,68,78,6.2584991455078125],[125,68,79,6.252263069152832],[125,69,64,6.180628776550293],[125,69,65,6.183351516723633],[125,69,66,6.178456783294678],[125,69,67,6.171987056732178],[125,69,68,6.168274402618408],[125,69,69,6.170851230621338],[125,69,70,6.180665969848633],[125,69,71,6.198060512542725],[125,69,72,6.2252516746521],[125,69,73,6.249039173126221],[125,69,74,6.258728981018066],[125,69,75,6.262077331542969],[125,69,76,6.263006687164307],[125,69,77,6.261656761169434],[125,69,78,6.2584991455078125],[125,69,79,6.252263069152832],[125,70,64,6.180628776550293],[125,70,65,6.183351516723633],[125,70,66,6.178456783294678],[125,70,67,6.171987056732178],[125,70,68,6.168274402618408],[125,70,69,6.170851230621338],[125,70,70,6.180665969848633],[125,70,71,6.198060512542725],[125,70,72,6.2252516746521],[125,70,73,6.249039173126221],[125,70,74,6.258728981018066],[125,70,75,6.262077331542969],[125,70,76,6.263006687164307],[125,70,77,6.261656761169434],[125,70,78,6.2584991455078125],[125,70,79,6.252263069152832],[125,71,64,6.180628776550293],[125,71,65,6.183351516723633],[125,71,66,6.178456783294678],[125,71,67,6.171987056732178],[125,71,68,6.168274402618408],[125,71,69,6.170851230621338],[125,71,70,6.180665969848633],[125,71,71,6.198060512542725],[125,71,72,6.2252516746521],[125,71,73,6.249039173126221],[125,71,74,6.258728981018066],[125,71,75,6.262077331542969],[125,71,76,6.263006687164307],[125,71,77,6.261656761169434],[125,71,78,6.2584991455078125],[125,71,79,6.252263069152832],[125,72,64,6.180628776550293],[125,72,65,6.183351516723633],[125,72,66,6.178456783294678],[125,72,67,6.171987056732178],[125,72,68,6.168274402618408],[125,72,69,6.170851230621338],[125,72,70,6.180665969848633],[125,72,71,6.198060512542725],[125,72,72,6.2252516746521],[125,72,73,6.249039173126221],[125,72,74,6.258728981018066],[125,72,75,6.262077331542969],[125,72,76,6.263006687164307],[125,72,77,6.261656761169434],[125,72,78,6.2584991455078125],[125,72,79,6.252263069152832],[125,73,64,6.180628776550293],[125,73,65,6.183351516723633],[125,73,66,6.178456783294678],[125,73,67,6.171987056732178],[125,73,68,6.168274402618408],[125,73,69,6.170851230621338],[125,73,70,6.180665969848633],[125,73,71,6.198060512542725],[125,73,72,6.2252516746521],[125,73,73,6.249039173126221],[125,73,74,6.258728981018066],[125,73,75,6.262077331542969],[125,73,76,6.263006687164307],[125,73,77,6.261656761169434],[125,73,78,6.2584991455078125],[125,73,79,6.252263069152832],[125,74,64,6.180628776550293],[125,74,65,6.183351516723633],[125,74,66,6.178456783294678],[125,74,67,6.171987056732178],[125,74,68,6.168274402618408],[125,74,69,6.170851230621338],[125,74,70,6.180665969848633],[125,74,71,6.198060512542725],[125,74,72,6.2252516746521],[125,74,73,6.249039173126221],[125,74,74,6.258728981018066],[125,74,75,6.262077331542969],[125,74,76,6.263006687164307],[125,74,77,6.261656761169434],[125,74,78,6.2584991455078125],[125,74,79,6.252263069152832],[125,75,64,6.180628776550293],[125,75,65,6.183351516723633],[125,75,66,6.178456783294678],[125,75,67,6.171987056732178],[125,75,68,6.168274402618408],[125,75,69,6.170851230621338],[125,75,70,6.180665969848633],[125,75,71,6.198060512542725],[125,75,72,6.2252516746521],[125,75,73,6.249039173126221],[125,75,74,6.258728981018066],[125,75,75,6.262077331542969],[125,75,76,6.263006687164307],[125,75,77,6.261656761169434],[125,75,78,6.2584991455078125],[125,75,79,6.252263069152832],[125,76,64,6.180628776550293],[125,76,65,6.183351516723633],[125,76,66,6.178456783294678],[125,76,67,6.171987056732178],[125,76,68,6.168274402618408],[125,76,69,6.170851230621338],[125,76,70,6.180665969848633],[125,76,71,6.198060512542725],[125,76,72,6.2252516746521],[125,76,73,6.249039173126221],[125,76,74,6.258728981018066],[125,76,75,6.262077331542969],[125,76,76,6.263006687164307],[125,76,77,6.261656761169434],[125,76,78,6.2584991455078125],[125,76,79,6.252263069152832],[125,77,64,6.180628776550293],[125,77,65,6.183351516723633],[125,77,66,6.178456783294678],[125,77,67,6.171987056732178],[125,77,68,6.168274402618408],[125,77,69,6.170851230621338],[125,77,70,6.180665969848633],[125,77,71,6.198060512542725],[125,77,72,6.2252516746521],[125,77,73,6.249039173126221],[125,77,74,6.258728981018066],[125,77,75,6.262077331542969],[125,77,76,6.263006687164307],[125,77,77,6.261656761169434],[125,77,78,6.2584991455078125],[125,77,79,6.252263069152832],[125,78,64,6.180628776550293],[125,78,65,6.183351516723633],[125,78,66,6.178456783294678],[125,78,67,6.171987056732178],[125,78,68,6.168274402618408],[125,78,69,6.170851230621338],[125,78,70,6.180665969848633],[125,78,71,6.198060512542725],[125,78,72,6.2252516746521],[125,78,73,6.249039173126221],[125,78,74,6.258728981018066],[125,78,75,6.262077331542969],[125,78,76,6.263006687164307],[125,78,77,6.261656761169434],[125,78,78,6.2584991455078125],[125,78,79,6.252263069152832],[125,79,64,6.180628776550293],[125,79,65,6.183351516723633],[125,79,66,6.178456783294678],[125,79,67,6.171987056732178],[125,79,68,6.168274402618408],[125,79,69,6.170851230621338],[125,79,70,6.180665969848633],[125,79,71,6.198060512542725],[125,79,72,6.2252516746521],[125,79,73,6.249039173126221],[125,79,74,6.258728981018066],[125,79,75,6.262077331542969],[125,79,76,6.263006687164307],[125,79,77,6.261656761169434],[125,79,78,6.2584991455078125],[125,79,79,6.252263069152832],[125,80,64,6.180628776550293],[125,80,65,6.183351516723633],[125,80,66,6.178456783294678],[125,80,67,6.171987056732178],[125,80,68,6.168274402618408],[125,80,69,6.170851230621338],[125,80,70,6.180665969848633],[125,80,71,6.198060512542725],[125,80,72,6.2252516746521],[125,80,73,6.249039173126221],[125,80,74,6.258728981018066],[125,80,75,6.262077331542969],[125,80,76,6.263006687164307],[125,80,77,6.261656761169434],[125,80,78,6.2584991455078125],[125,80,79,6.252263069152832],[125,81,64,6.180628776550293],[125,81,65,6.183351516723633],[125,81,66,6.178456783294678],[125,81,67,6.171987056732178],[125,81,68,6.168274402618408],[125,81,69,6.170851230621338],[125,81,70,6.180665969848633],[125,81,71,6.198060512542725],[125,81,72,6.2252516746521],[125,81,73,6.249039173126221],[125,81,74,6.258728981018066],[125,81,75,6.262077331542969],[125,81,76,6.263006687164307],[125,81,77,6.261656761169434],[125,81,78,6.2584991455078125],[125,81,79,6.252263069152832],[125,82,64,6.180628776550293],[125,82,65,6.183351516723633],[125,82,66,6.178456783294678],[125,82,67,6.171987056732178],[125,82,68,6.168274402618408],[125,82,69,6.170851230621338],[125,82,70,6.180665969848633],[125,82,71,6.198060512542725],[125,82,72,6.2252516746521],[125,82,73,6.249039173126221],[125,82,74,6.258728981018066],[125,82,75,6.262077331542969],[125,82,76,6.263006687164307],[125,82,77,6.261656761169434],[125,82,78,6.2584991455078125],[125,82,79,6.252263069152832],[125,83,64,6.180628776550293],[125,83,65,6.183351516723633],[125,83,66,6.178456783294678],[125,83,67,6.171987056732178],[125,83,68,6.168274402618408],[125,83,69,6.170851230621338],[125,83,70,6.180665969848633],[125,83,71,6.198060512542725],[125,83,72,6.2252516746521],[125,83,73,6.249039173126221],[125,83,74,6.258728981018066],[125,83,75,6.262077331542969],[125,83,76,6.263006687164307],[125,83,77,6.261656761169434],[125,83,78,6.2584991455078125],[125,83,79,6.252263069152832],[125,84,64,6.180628776550293],[125,84,65,6.183351516723633],[125,84,66,6.178456783294678],[125,84,67,6.171987056732178],[125,84,68,6.168274402618408],[125,84,69,6.170851230621338],[125,84,70,6.180665969848633],[125,84,71,6.198060512542725],[125,84,72,6.2252516746521],[125,84,73,6.249039173126221],[125,84,74,6.258728981018066],[125,84,75,6.262077331542969],[125,84,76,6.263006687164307],[125,84,77,6.261656761169434],[125,84,78,6.2584991455078125],[125,84,79,6.252263069152832],[125,85,64,6.180628776550293],[125,85,65,6.183351516723633],[125,85,66,6.178456783294678],[125,85,67,6.171987056732178],[125,85,68,6.168274402618408],[125,85,69,6.170851230621338],[125,85,70,6.180665969848633],[125,85,71,6.198060512542725],[125,85,72,6.2252516746521],[125,85,73,6.249039173126221],[125,85,74,6.258728981018066],[125,85,75,6.262077331542969],[125,85,76,6.263006687164307],[125,85,77,6.261656761169434],[125,85,78,6.2584991455078125],[125,85,79,6.252263069152832],[125,86,64,6.180628776550293],[125,86,65,6.183351516723633],[125,86,66,6.178456783294678],[125,86,67,6.171987056732178],[125,86,68,6.168274402618408],[125,86,69,6.170851230621338],[125,86,70,6.180665969848633],[125,86,71,6.198060512542725],[125,86,72,6.2252516746521],[125,86,73,6.249039173126221],[125,86,74,6.258728981018066],[125,86,75,6.262077331542969],[125,86,76,6.263006687164307],[125,86,77,6.261656761169434],[125,86,78,6.2584991455078125],[125,86,79,6.252263069152832],[125,87,64,6.180628776550293],[125,87,65,6.183351516723633],[125,87,66,6.178456783294678],[125,87,67,6.171987056732178],[125,87,68,6.168274402618408],[125,87,69,6.170851230621338],[125,87,70,6.180665969848633],[125,87,71,6.198060512542725],[125,87,72,6.2252516746521],[125,87,73,6.249039173126221],[125,87,74,6.258728981018066],[125,87,75,6.262077331542969],[125,87,76,6.263006687164307],[125,87,77,6.261656761169434],[125,87,78,6.2584991455078125],[125,87,79,6.252263069152832],[125,88,64,6.180628776550293],[125,88,65,6.183351516723633],[125,88,66,6.178456783294678],[125,88,67,6.171987056732178],[125,88,68,6.168274402618408],[125,88,69,6.170851230621338],[125,88,70,6.180665969848633],[125,88,71,6.198060512542725],[125,88,72,6.2252516746521],[125,88,73,6.249039173126221],[125,88,74,6.258728981018066],[125,88,75,6.262077331542969],[125,88,76,6.263006687164307],[125,88,77,6.261656761169434],[125,88,78,6.2584991455078125],[125,88,79,6.252263069152832],[125,89,64,6.180628776550293],[125,89,65,6.183351516723633],[125,89,66,6.178456783294678],[125,89,67,6.171987056732178],[125,89,68,6.168274402618408],[125,89,69,6.170851230621338],[125,89,70,6.180665969848633],[125,89,71,6.198060512542725],[125,89,72,6.2252516746521],[125,89,73,6.249039173126221],[125,89,74,6.258728981018066],[125,89,75,6.262077331542969],[125,89,76,6.263006687164307],[125,89,77,6.261656761169434],[125,89,78,6.2584991455078125],[125,89,79,6.252263069152832],[125,90,64,6.180628776550293],[125,90,65,6.183351516723633],[125,90,66,6.178456783294678],[125,90,67,6.171987056732178],[125,90,68,6.168274402618408],[125,90,69,6.170851230621338],[125,90,70,6.180665969848633],[125,90,71,6.198060512542725],[125,90,72,6.2252516746521],[125,90,73,6.249039173126221],[125,90,74,6.258728981018066],[125,90,75,6.262077331542969],[125,90,76,6.263006687164307],[125,90,77,6.261656761169434],[125,90,78,6.2584991455078125],[125,90,79,6.252263069152832],[125,91,64,6.180628776550293],[125,91,65,6.183351516723633],[125,91,66,6.178456783294678],[125,91,67,6.171987056732178],[125,91,68,6.168274402618408],[125,91,69,6.170851230621338],[125,91,70,6.180665969848633],[125,91,71,6.198060512542725],[125,91,72,6.2252516746521],[125,91,73,6.249039173126221],[125,91,74,6.258728981018066],[125,91,75,6.262077331542969],[125,91,76,6.263006687164307],[125,91,77,6.261656761169434],[125,91,78,6.2584991455078125],[125,91,79,6.252263069152832],[125,92,64,6.180628776550293],[125,92,65,6.183351516723633],[125,92,66,6.178456783294678],[125,92,67,6.171987056732178],[125,92,68,6.168274402618408],[125,92,69,6.170851230621338],[125,92,70,6.180665969848633],[125,92,71,6.198060512542725],[125,92,72,6.2252516746521],[125,92,73,6.249039173126221],[125,92,74,6.258728981018066],[125,92,75,6.262077331542969],[125,92,76,6.263006687164307],[125,92,77,6.261656761169434],[125,92,78,6.2584991455078125],[125,92,79,6.252263069152832],[125,93,64,6.180628776550293],[125,93,65,6.183351516723633],[125,93,66,6.178456783294678],[125,93,67,6.171987056732178],[125,93,68,6.168274402618408],[125,93,69,6.170851230621338],[125,93,70,6.180665969848633],[125,93,71,6.198060512542725],[125,93,72,6.2252516746521],[125,93,73,6.249039173126221],[125,93,74,6.258728981018066],[125,93,75,6.262077331542969],[125,93,76,6.263006687164307],[125,93,77,6.261656761169434],[125,93,78,6.2584991455078125],[125,93,79,6.252263069152832],[125,94,64,6.180628776550293],[125,94,65,6.183351516723633],[125,94,66,6.178456783294678],[125,94,67,6.171987056732178],[125,94,68,6.168274402618408],[125,94,69,6.170851230621338],[125,94,70,6.180665969848633],[125,94,71,6.198060512542725],[125,94,72,6.2252516746521],[125,94,73,6.249039173126221],[125,94,74,6.258728981018066],[125,94,75,6.262077331542969],[125,94,76,6.263006687164307],[125,94,77,6.261656761169434],[125,94,78,6.2584991455078125],[125,94,79,6.252263069152832],[125,95,64,6.180628776550293],[125,95,65,6.183351516723633],[125,95,66,6.178456783294678],[125,95,67,6.171987056732178],[125,95,68,6.168274402618408],[125,95,69,6.170851230621338],[125,95,70,6.180665969848633],[125,95,71,6.198060512542725],[125,95,72,6.2252516746521],[125,95,73,6.249039173126221],[125,95,74,6.258728981018066],[125,95,75,6.262077331542969],[125,95,76,6.263006687164307],[125,95,77,6.261656761169434],[125,95,78,6.2584991455078125],[125,95,79,6.252263069152832],[125,96,64,6.180628776550293],[125,96,65,6.183351516723633],[125,96,66,6.178456783294678],[125,96,67,6.171987056732178],[125,96,68,6.168274402618408],[125,96,69,6.170851230621338],[125,96,70,6.180665969848633],[125,96,71,6.198060512542725],[125,96,72,6.2252516746521],[125,96,73,6.249039173126221],[125,96,74,6.258728981018066],[125,96,75,6.262077331542969],[125,96,76,6.263006687164307],[125,96,77,6.261656761169434],[125,96,78,6.2584991455078125],[125,96,79,6.252263069152832],[125,97,64,6.180628776550293],[125,97,65,6.183351516723633],[125,97,66,6.178456783294678],[125,97,67,6.171987056732178],[125,97,68,6.168274402618408],[125,97,69,6.170851230621338],[125,97,70,6.180665969848633],[125,97,71,6.198060512542725],[125,97,72,6.2252516746521],[125,97,73,6.249039173126221],[125,97,74,6.258728981018066],[125,97,75,6.262077331542969],[125,97,76,6.263006687164307],[125,97,77,6.261656761169434],[125,97,78,6.2584991455078125],[125,97,79,6.252263069152832],[125,98,64,6.180628776550293],[125,98,65,6.183351516723633],[125,98,66,6.178456783294678],[125,98,67,6.171987056732178],[125,98,68,6.168274402618408],[125,98,69,6.170851230621338],[125,98,70,6.180665969848633],[125,98,71,6.198060512542725],[125,98,72,6.2252516746521],[125,98,73,6.249039173126221],[125,98,74,6.258728981018066],[125,98,75,6.262077331542969],[125,98,76,6.263006687164307],[125,98,77,6.261656761169434],[125,98,78,6.2584991455078125],[125,98,79,6.252263069152832],[125,99,64,6.180628776550293],[125,99,65,6.183351516723633],[125,99,66,6.178456783294678],[125,99,67,6.171987056732178],[125,99,68,6.168274402618408],[125,99,69,6.170851230621338],[125,99,70,6.180665969848633],[125,99,71,6.198060512542725],[125,99,72,6.2252516746521],[125,99,73,6.249039173126221],[125,99,74,6.258728981018066],[125,99,75,6.262077331542969],[125,99,76,6.263006687164307],[125,99,77,6.261656761169434],[125,99,78,6.2584991455078125],[125,99,79,6.252263069152832],[125,100,64,6.180628776550293],[125,100,65,6.183351516723633],[125,100,66,6.178456783294678],[125,100,67,6.171987056732178],[125,100,68,6.168274402618408],[125,100,69,6.170851230621338],[125,100,70,6.180665969848633],[125,100,71,6.198060512542725],[125,100,72,6.2252516746521],[125,100,73,6.249039173126221],[125,100,74,6.258728981018066],[125,100,75,6.262077331542969],[125,100,76,6.263006687164307],[125,100,77,6.261656761169434],[125,100,78,6.2584991455078125],[125,100,79,6.252263069152832],[125,101,64,6.180628776550293],[125,101,65,6.183351516723633],[125,101,66,6.178456783294678],[125,101,67,6.171987056732178],[125,101,68,6.168274402618408],[125,101,69,6.170851230621338],[125,101,70,6.180665969848633],[125,101,71,6.198060512542725],[125,101,72,6.2252516746521],[125,101,73,6.249039173126221],[125,101,74,6.258728981018066],[125,101,75,6.262077331542969],[125,101,76,6.263006687164307],[125,101,77,6.261656761169434],[125,101,78,6.2584991455078125],[125,101,79,6.252263069152832],[125,102,64,6.180628776550293],[125,102,65,6.183351516723633],[125,102,66,6.178456783294678],[125,102,67,6.171987056732178],[125,102,68,6.168274402618408],[125,102,69,6.170851230621338],[125,102,70,6.180665969848633],[125,102,71,6.198060512542725],[125,102,72,6.2252516746521],[125,102,73,6.249039173126221],[125,102,74,6.258728981018066],[125,102,75,6.262077331542969],[125,102,76,6.263006687164307],[125,102,77,6.261656761169434],[125,102,78,6.2584991455078125],[125,102,79,6.252263069152832],[125,103,64,6.180628776550293],[125,103,65,6.183351516723633],[125,103,66,6.178456783294678],[125,103,67,6.171987056732178],[125,103,68,6.168274402618408],[125,103,69,6.170851230621338],[125,103,70,6.180665969848633],[125,103,71,6.198060512542725],[125,103,72,6.2252516746521],[125,103,73,6.249039173126221],[125,103,74,6.258728981018066],[125,103,75,6.262077331542969],[125,103,76,6.263006687164307],[125,103,77,6.261656761169434],[125,103,78,6.2584991455078125],[125,103,79,6.252263069152832],[125,104,64,6.180628776550293],[125,104,65,6.183351516723633],[125,104,66,6.178456783294678],[125,104,67,6.171987056732178],[125,104,68,6.168274402618408],[125,104,69,6.170851230621338],[125,104,70,6.180665969848633],[125,104,71,6.198060512542725],[125,104,72,6.2252516746521],[125,104,73,6.249039173126221],[125,104,74,6.258728981018066],[125,104,75,6.262077331542969],[125,104,76,6.263006687164307],[125,104,77,6.261656761169434],[125,104,78,6.2584991455078125],[125,104,79,6.252263069152832],[125,105,64,6.180628776550293],[125,105,65,6.183351516723633],[125,105,66,6.178456783294678],[125,105,67,6.171987056732178],[125,105,68,6.168274402618408],[125,105,69,6.170851230621338],[125,105,70,6.180665969848633],[125,105,71,6.198060512542725],[125,105,72,6.2252516746521],[125,105,73,6.249039173126221],[125,105,74,6.258728981018066],[125,105,75,6.262077331542969],[125,105,76,6.263006687164307],[125,105,77,6.261656761169434],[125,105,78,6.2584991455078125],[125,105,79,6.252263069152832],[125,106,64,6.180628776550293],[125,106,65,6.183351516723633],[125,106,66,6.178456783294678],[125,106,67,6.171987056732178],[125,106,68,6.168274402618408],[125,106,69,6.170851230621338],[125,106,70,6.180665969848633],[125,106,71,6.198060512542725],[125,106,72,6.2252516746521],[125,106,73,6.249039173126221],[125,106,74,6.258728981018066],[125,106,75,6.262077331542969],[125,106,76,6.263006687164307],[125,106,77,6.261656761169434],[125,106,78,6.2584991455078125],[125,106,79,6.252263069152832],[125,107,64,6.180628776550293],[125,107,65,6.183351516723633],[125,107,66,6.178456783294678],[125,107,67,6.171987056732178],[125,107,68,6.168274402618408],[125,107,69,6.170851230621338],[125,107,70,6.180665969848633],[125,107,71,6.198060512542725],[125,107,72,6.2252516746521],[125,107,73,6.249039173126221],[125,107,74,6.258728981018066],[125,107,75,6.262077331542969],[125,107,76,6.263006687164307],[125,107,77,6.261656761169434],[125,107,78,6.2584991455078125],[125,107,79,6.252263069152832],[125,108,64,6.180628776550293],[125,108,65,6.183351516723633],[125,108,66,6.178456783294678],[125,108,67,6.171987056732178],[125,108,68,6.168274402618408],[125,108,69,6.170851230621338],[125,108,70,6.180665969848633],[125,108,71,6.198060512542725],[125,108,72,6.2252516746521],[125,108,73,6.249039173126221],[125,108,74,6.258728981018066],[125,108,75,6.262077331542969],[125,108,76,6.263006687164307],[125,108,77,6.261656761169434],[125,108,78,6.2584991455078125],[125,108,79,6.252263069152832],[125,109,64,6.180628776550293],[125,109,65,6.183351516723633],[125,109,66,6.178456783294678],[125,109,67,6.171987056732178],[125,109,68,6.168274402618408],[125,109,69,6.170851230621338],[125,109,70,6.180665969848633],[125,109,71,6.198060512542725],[125,109,72,6.2252516746521],[125,109,73,6.249039173126221],[125,109,74,6.258728981018066],[125,109,75,6.262077331542969],[125,109,76,6.263006687164307],[125,109,77,6.261656761169434],[125,109,78,6.2584991455078125],[125,109,79,6.252263069152832],[125,110,64,6.180628776550293],[125,110,65,6.183351516723633],[125,110,66,6.178456783294678],[125,110,67,6.171987056732178],[125,110,68,6.168274402618408],[125,110,69,6.170851230621338],[125,110,70,6.180665969848633],[125,110,71,6.198060512542725],[125,110,72,6.2252516746521],[125,110,73,6.249039173126221],[125,110,74,6.258728981018066],[125,110,75,6.262077331542969],[125,110,76,6.263006687164307],[125,110,77,6.261656761169434],[125,110,78,6.2584991455078125],[125,110,79,6.252263069152832],[125,111,64,6.180628776550293],[125,111,65,6.183351516723633],[125,111,66,6.178456783294678],[125,111,67,6.171987056732178],[125,111,68,6.168274402618408],[125,111,69,6.170851230621338],[125,111,70,6.180665969848633],[125,111,71,6.198060512542725],[125,111,72,6.2252516746521],[125,111,73,6.249039173126221],[125,111,74,6.258728981018066],[125,111,75,6.262077331542969],[125,111,76,6.263006687164307],[125,111,77,6.261656761169434],[125,111,78,6.2584991455078125],[125,111,79,6.252263069152832],[125,112,64,6.180628776550293],[125,112,65,6.183351516723633],[125,112,66,6.178456783294678],[125,112,67,6.171987056732178],[125,112,68,6.168274402618408],[125,112,69,6.170851230621338],[125,112,70,6.180665969848633],[125,112,71,6.198060512542725],[125,112,72,6.2252516746521],[125,112,73,6.249039173126221],[125,112,74,6.258728981018066],[125,112,75,6.262077331542969],[125,112,76,6.263006687164307],[125,112,77,6.261656761169434],[125,112,78,6.2584991455078125],[125,112,79,6.252263069152832],[125,113,64,6.180628776550293],[125,113,65,6.183351516723633],[125,113,66,6.178456783294678],[125,113,67,6.171987056732178],[125,113,68,6.168274402618408],[125,113,69,6.170851230621338],[125,113,70,6.180665969848633],[125,113,71,6.198060512542725],[125,113,72,6.2252516746521],[125,113,73,6.249039173126221],[125,113,74,6.258728981018066],[125,113,75,6.262077331542969],[125,113,76,6.263006687164307],[125,113,77,6.261656761169434],[125,113,78,6.2584991455078125],[125,113,79,6.252263069152832],[125,114,64,6.180628776550293],[125,114,65,6.183351516723633],[125,114,66,6.178456783294678],[125,114,67,6.171987056732178],[125,114,68,6.168274402618408],[125,114,69,6.170851230621338],[125,114,70,6.180665969848633],[125,114,71,6.198060512542725],[125,114,72,6.2252516746521],[125,114,73,6.249039173126221],[125,114,74,6.258728981018066],[125,114,75,6.262077331542969],[125,114,76,6.263006687164307],[125,114,77,6.261656761169434],[125,114,78,6.2584991455078125],[125,114,79,6.252263069152832],[125,115,64,6.180628776550293],[125,115,65,6.183351516723633],[125,115,66,6.178456783294678],[125,115,67,6.171987056732178],[125,115,68,6.168274402618408],[125,115,69,6.170851230621338],[125,115,70,6.180665969848633],[125,115,71,6.198060512542725],[125,115,72,6.2252516746521],[125,115,73,6.249039173126221],[125,115,74,6.258728981018066],[125,115,75,6.262077331542969],[125,115,76,6.263006687164307],[125,115,77,6.261656761169434],[125,115,78,6.2584991455078125],[125,115,79,6.252263069152832],[125,116,64,6.180628776550293],[125,116,65,6.183351516723633],[125,116,66,6.178456783294678],[125,116,67,6.171987056732178],[125,116,68,6.168274402618408],[125,116,69,6.170851230621338],[125,116,70,6.180665969848633],[125,116,71,6.198060512542725],[125,116,72,6.2252516746521],[125,116,73,6.249039173126221],[125,116,74,6.258728981018066],[125,116,75,6.262077331542969],[125,116,76,6.263006687164307],[125,116,77,6.261656761169434],[125,116,78,6.2584991455078125],[125,116,79,6.252263069152832],[125,117,64,6.180628776550293],[125,117,65,6.183351516723633],[125,117,66,6.178456783294678],[125,117,67,6.171987056732178],[125,117,68,6.168274402618408],[125,117,69,6.170851230621338],[125,117,70,6.180665969848633],[125,117,71,6.198060512542725],[125,117,72,6.2252516746521],[125,117,73,6.249039173126221],[125,117,74,6.258728981018066],[125,117,75,6.262077331542969],[125,117,76,6.263006687164307],[125,117,77,6.261656761169434],[125,117,78,6.2584991455078125],[125,117,79,6.252263069152832],[125,118,64,6.180628776550293],[125,118,65,6.183351516723633],[125,118,66,6.178456783294678],[125,118,67,6.171987056732178],[125,118,68,6.168274402618408],[125,118,69,6.170851230621338],[125,118,70,6.180665969848633],[125,118,71,6.198060512542725],[125,118,72,6.2252516746521],[125,118,73,6.249039173126221],[125,118,74,6.258728981018066],[125,118,75,6.262077331542969],[125,118,76,6.263006687164307],[125,118,77,6.261656761169434],[125,118,78,6.2584991455078125],[125,118,79,6.252263069152832],[125,119,64,6.180628776550293],[125,119,65,6.183351516723633],[125,119,66,6.178456783294678],[125,119,67,6.171987056732178],[125,119,68,6.168274402618408],[125,119,69,6.170851230621338],[125,119,70,6.180665969848633],[125,119,71,6.198060512542725],[125,119,72,6.2252516746521],[125,119,73,6.249039173126221],[125,119,74,6.258728981018066],[125,119,75,6.262077331542969],[125,119,76,6.263006687164307],[125,119,77,6.261656761169434],[125,119,78,6.2584991455078125],[125,119,79,6.252263069152832],[125,120,64,6.180628776550293],[125,120,65,6.183351516723633],[125,120,66,6.178456783294678],[125,120,67,6.171987056732178],[125,120,68,6.168274402618408],[125,120,69,6.170851230621338],[125,120,70,6.180665969848633],[125,120,71,6.198060512542725],[125,120,72,6.2252516746521],[125,120,73,6.249039173126221],[125,120,74,6.258728981018066],[125,120,75,6.262077331542969],[125,120,76,6.263006687164307],[125,120,77,6.261656761169434],[125,120,78,6.2584991455078125],[125,120,79,6.252263069152832],[125,121,64,6.180628776550293],[125,121,65,6.183351516723633],[125,121,66,6.178456783294678],[125,121,67,6.171987056732178],[125,121,68,6.168274402618408],[125,121,69,6.170851230621338],[125,121,70,6.180665969848633],[125,121,71,6.198060512542725],[125,121,72,6.2252516746521],[125,121,73,6.249039173126221],[125,121,74,6.258728981018066],[125,121,75,6.262077331542969],[125,121,76,6.263006687164307],[125,121,77,6.261656761169434],[125,121,78,6.2584991455078125],[125,121,79,6.252263069152832],[125,122,64,6.180628776550293],[125,122,65,6.183351516723633],[125,122,66,6.178456783294678],[125,122,67,6.171987056732178],[125,122,68,6.168274402618408],[125,122,69,6.170851230621338],[125,122,70,6.180665969848633],[125,122,71,6.198060512542725],[125,122,72,6.2252516746521],[125,122,73,6.249039173126221],[125,122,74,6.258728981018066],[125,122,75,6.262077331542969],[125,122,76,6.263006687164307],[125,122,77,6.261656761169434],[125,122,78,6.2584991455078125],[125,122,79,6.252263069152832],[125,123,64,6.180628776550293],[125,123,65,6.183351516723633],[125,123,66,6.178456783294678],[125,123,67,6.171987056732178],[125,123,68,6.168274402618408],[125,123,69,6.170851230621338],[125,123,70,6.180665969848633],[125,123,71,6.198060512542725],[125,123,72,6.2252516746521],[125,123,73,6.249039173126221],[125,123,74,6.258728981018066],[125,123,75,6.262077331542969],[125,123,76,6.263006687164307],[125,123,77,6.261656761169434],[125,123,78,6.2584991455078125],[125,123,79,6.252263069152832],[125,124,64,6.180628776550293],[125,124,65,6.183351516723633],[125,124,66,6.178456783294678],[125,124,67,6.171987056732178],[125,124,68,6.168274402618408],[125,124,69,6.170851230621338],[125,124,70,6.180665969848633],[125,124,71,6.198060512542725],[125,124,72,6.2252516746521],[125,124,73,6.249039173126221],[125,124,74,6.258728981018066],[125,124,75,6.262077331542969],[125,124,76,6.263006687164307],[125,124,77,6.261656761169434],[125,124,78,6.2584991455078125],[125,124,79,6.252263069152832],[125,125,64,6.180628776550293],[125,125,65,6.183351516723633],[125,125,66,6.178456783294678],[125,125,67,6.171987056732178],[125,125,68,6.168274402618408],[125,125,69,6.170851230621338],[125,125,70,6.180665969848633],[125,125,71,6.198060512542725],[125,125,72,6.2252516746521],[125,125,73,6.249039173126221],[125,125,74,6.258728981018066],[125,125,75,6.262077331542969],[125,125,76,6.263006687164307],[125,125,77,6.261656761169434],[125,125,78,6.2584991455078125],[125,125,79,6.252263069152832],[125,126,64,6.180628776550293],[125,126,65,6.183351516723633],[125,126,66,6.178456783294678],[125,126,67,6.171987056732178],[125,126,68,6.168274402618408],[125,126,69,6.170851230621338],[125,126,70,6.180665969848633],[125,126,71,6.198060512542725],[125,126,72,6.2252516746521],[125,126,73,6.249039173126221],[125,126,74,6.258728981018066],[125,126,75,6.262077331542969],[125,126,76,6.263006687164307],[125,126,77,6.261656761169434],[125,126,78,6.2584991455078125],[125,126,79,6.252263069152832],[125,127,64,6.180628776550293],[125,127,65,6.183351516723633],[125,127,66,6.178456783294678],[125,127,67,6.171987056732178],[125,127,68,6.168274402618408],[125,127,69,6.170851230621338],[125,127,70,6.180665969848633],[125,127,71,6.198060512542725],[125,127,72,6.2252516746521],[125,127,73,6.249039173126221],[125,127,74,6.258728981018066],[125,127,75,6.262077331542969],[125,127,76,6.263006687164307],[125,127,77,6.261656761169434],[125,127,78,6.2584991455078125],[125,127,79,6.252263069152832],[125,128,64,6.180628776550293],[125,128,65,6.183351516723633],[125,128,66,6.178456783294678],[125,128,67,6.171987056732178],[125,128,68,6.168274402618408],[125,128,69,6.170851230621338],[125,128,70,6.180665969848633],[125,128,71,6.198060512542725],[125,128,72,6.2252516746521],[125,128,73,6.249039173126221],[125,128,74,6.258728981018066],[125,128,75,6.262077331542969],[125,128,76,6.263006687164307],[125,128,77,6.261656761169434],[125,128,78,6.2584991455078125],[125,128,79,6.252263069152832],[125,129,64,6.180628776550293],[125,129,65,6.183351516723633],[125,129,66,6.178456783294678],[125,129,67,6.171987056732178],[125,129,68,6.168274402618408],[125,129,69,6.170851230621338],[125,129,70,6.180665969848633],[125,129,71,6.198060512542725],[125,129,72,6.2252516746521],[125,129,73,6.249039173126221],[125,129,74,6.258728981018066],[125,129,75,6.262077331542969],[125,129,76,6.263006687164307],[125,129,77,6.261656761169434],[125,129,78,6.2584991455078125],[125,129,79,6.252263069152832],[125,130,64,6.180628776550293],[125,130,65,6.183351516723633],[125,130,66,6.178456783294678],[125,130,67,6.171987056732178],[125,130,68,6.168274402618408],[125,130,69,6.170851230621338],[125,130,70,6.180665969848633],[125,130,71,6.198060512542725],[125,130,72,6.2252516746521],[125,130,73,6.249039173126221],[125,130,74,6.258728981018066],[125,130,75,6.262077331542969],[125,130,76,6.263006687164307],[125,130,77,6.261656761169434],[125,130,78,6.2584991455078125],[125,130,79,6.252263069152832],[125,131,64,6.180628776550293],[125,131,65,6.183351516723633],[125,131,66,6.178456783294678],[125,131,67,6.171987056732178],[125,131,68,6.168274402618408],[125,131,69,6.170851230621338],[125,131,70,6.180665969848633],[125,131,71,6.198060512542725],[125,131,72,6.2252516746521],[125,131,73,6.249039173126221],[125,131,74,6.258728981018066],[125,131,75,6.262077331542969],[125,131,76,6.263006687164307],[125,131,77,6.261656761169434],[125,131,78,6.2584991455078125],[125,131,79,6.252263069152832],[125,132,64,6.180628776550293],[125,132,65,6.183351516723633],[125,132,66,6.178456783294678],[125,132,67,6.171987056732178],[125,132,68,6.168274402618408],[125,132,69,6.170851230621338],[125,132,70,6.180665969848633],[125,132,71,6.198060512542725],[125,132,72,6.2252516746521],[125,132,73,6.249039173126221],[125,132,74,6.258728981018066],[125,132,75,6.262077331542969],[125,132,76,6.263006687164307],[125,132,77,6.261656761169434],[125,132,78,6.2584991455078125],[125,132,79,6.252263069152832],[125,133,64,6.180628776550293],[125,133,65,6.183351516723633],[125,133,66,6.178456783294678],[125,133,67,6.171987056732178],[125,133,68,6.168274402618408],[125,133,69,6.170851230621338],[125,133,70,6.180665969848633],[125,133,71,6.198060512542725],[125,133,72,6.2252516746521],[125,133,73,6.249039173126221],[125,133,74,6.258728981018066],[125,133,75,6.262077331542969],[125,133,76,6.263006687164307],[125,133,77,6.261656761169434],[125,133,78,6.2584991455078125],[125,133,79,6.252263069152832],[125,134,64,6.180628776550293],[125,134,65,6.183351516723633],[125,134,66,6.178456783294678],[125,134,67,6.171987056732178],[125,134,68,6.168274402618408],[125,134,69,6.170851230621338],[125,134,70,6.180665969848633],[125,134,71,6.198060512542725],[125,134,72,6.2252516746521],[125,134,73,6.249039173126221],[125,134,74,6.258728981018066],[125,134,75,6.262077331542969],[125,134,76,6.263006687164307],[125,134,77,6.261656761169434],[125,134,78,6.2584991455078125],[125,134,79,6.252263069152832],[125,135,64,6.180628776550293],[125,135,65,6.183351516723633],[125,135,66,6.178456783294678],[125,135,67,6.171987056732178],[125,135,68,6.168274402618408],[125,135,69,6.170851230621338],[125,135,70,6.180665969848633],[125,135,71,6.198060512542725],[125,135,72,6.2252516746521],[125,135,73,6.249039173126221],[125,135,74,6.258728981018066],[125,135,75,6.262077331542969],[125,135,76,6.263006687164307],[125,135,77,6.261656761169434],[125,135,78,6.2584991455078125],[125,135,79,6.252263069152832],[125,136,64,6.180628776550293],[125,136,65,6.183351516723633],[125,136,66,6.178456783294678],[125,136,67,6.171987056732178],[125,136,68,6.168274402618408],[125,136,69,6.170851230621338],[125,136,70,6.180665969848633],[125,136,71,6.198060512542725],[125,136,72,6.2252516746521],[125,136,73,6.249039173126221],[125,136,74,6.258728981018066],[125,136,75,6.262077331542969],[125,136,76,6.263006687164307],[125,136,77,6.261656761169434],[125,136,78,6.2584991455078125],[125,136,79,6.252263069152832],[125,137,64,6.180628776550293],[125,137,65,6.183351516723633],[125,137,66,6.178456783294678],[125,137,67,6.171987056732178],[125,137,68,6.168274402618408],[125,137,69,6.170851230621338],[125,137,70,6.180665969848633],[125,137,71,6.198060512542725],[125,137,72,6.2252516746521],[125,137,73,6.249039173126221],[125,137,74,6.258728981018066],[125,137,75,6.262077331542969],[125,137,76,6.263006687164307],[125,137,77,6.261656761169434],[125,137,78,6.2584991455078125],[125,137,79,6.252263069152832],[125,138,64,6.180628776550293],[125,138,65,6.183351516723633],[125,138,66,6.178456783294678],[125,138,67,6.171987056732178],[125,138,68,6.168274402618408],[125,138,69,6.170851230621338],[125,138,70,6.180665969848633],[125,138,71,6.198060512542725],[125,138,72,6.2252516746521],[125,138,73,6.249039173126221],[125,138,74,6.258728981018066],[125,138,75,6.262077331542969],[125,138,76,6.263006687164307],[125,138,77,6.261656761169434],[125,138,78,6.2584991455078125],[125,138,79,6.252263069152832],[125,139,64,6.180628776550293],[125,139,65,6.183351516723633],[125,139,66,6.178456783294678],[125,139,67,6.171987056732178],[125,139,68,6.168274402618408],[125,139,69,6.170851230621338],[125,139,70,6.180665969848633],[125,139,71,6.198060512542725],[125,139,72,6.2252516746521],[125,139,73,6.249039173126221],[125,139,74,6.258728981018066],[125,139,75,6.262077331542969],[125,139,76,6.263006687164307],[125,139,77,6.261656761169434],[125,139,78,6.2584991455078125],[125,139,79,6.252263069152832],[125,140,64,6.180628776550293],[125,140,65,6.183351516723633],[125,140,66,6.178456783294678],[125,140,67,6.171987056732178],[125,140,68,6.168274402618408],[125,140,69,6.170851230621338],[125,140,70,6.180665969848633],[125,140,71,6.198060512542725],[125,140,72,6.2252516746521],[125,140,73,6.249039173126221],[125,140,74,6.258728981018066],[125,140,75,6.262077331542969],[125,140,76,6.263006687164307],[125,140,77,6.261656761169434],[125,140,78,6.2584991455078125],[125,140,79,6.252263069152832],[125,141,64,6.180628776550293],[125,141,65,6.183351516723633],[125,141,66,6.178456783294678],[125,141,67,6.171987056732178],[125,141,68,6.168274402618408],[125,141,69,6.170851230621338],[125,141,70,6.180665969848633],[125,141,71,6.198060512542725],[125,141,72,6.2252516746521],[125,141,73,6.249039173126221],[125,141,74,6.258728981018066],[125,141,75,6.262077331542969],[125,141,76,6.263006687164307],[125,141,77,6.261656761169434],[125,141,78,6.2584991455078125],[125,141,79,6.252263069152832],[125,142,64,6.180628776550293],[125,142,65,6.183351516723633],[125,142,66,6.178456783294678],[125,142,67,6.171987056732178],[125,142,68,6.168274402618408],[125,142,69,6.170851230621338],[125,142,70,6.180665969848633],[125,142,71,6.198060512542725],[125,142,72,6.2252516746521],[125,142,73,6.249039173126221],[125,142,74,6.258728981018066],[125,142,75,6.262077331542969],[125,142,76,6.263006687164307],[125,142,77,6.261656761169434],[125,142,78,6.2584991455078125],[125,142,79,6.252263069152832],[125,143,64,6.180628776550293],[125,143,65,6.183351516723633],[125,143,66,6.178456783294678],[125,143,67,6.171987056732178],[125,143,68,6.168274402618408],[125,143,69,6.170851230621338],[125,143,70,6.180665969848633],[125,143,71,6.198060512542725],[125,143,72,6.2252516746521],[125,143,73,6.249039173126221],[125,143,74,6.258728981018066],[125,143,75,6.262077331542969],[125,143,76,6.263006687164307],[125,143,77,6.261656761169434],[125,143,78,6.2584991455078125],[125,143,79,6.252263069152832],[125,144,64,6.180628776550293],[125,144,65,6.183351516723633],[125,144,66,6.178456783294678],[125,144,67,6.171987056732178],[125,144,68,6.168274402618408],[125,144,69,6.170851230621338],[125,144,70,6.180665969848633],[125,144,71,6.198060512542725],[125,144,72,6.2252516746521],[125,144,73,6.249039173126221],[125,144,74,6.258728981018066],[125,144,75,6.262077331542969],[125,144,76,6.263006687164307],[125,144,77,6.261656761169434],[125,144,78,6.2584991455078125],[125,144,79,6.252263069152832],[125,145,64,6.180628776550293],[125,145,65,6.183351516723633],[125,145,66,6.178456783294678],[125,145,67,6.171987056732178],[125,145,68,6.168274402618408],[125,145,69,6.170851230621338],[125,145,70,6.180665969848633],[125,145,71,6.198060512542725],[125,145,72,6.2252516746521],[125,145,73,6.249039173126221],[125,145,74,6.258728981018066],[125,145,75,6.262077331542969],[125,145,76,6.263006687164307],[125,145,77,6.261656761169434],[125,145,78,6.2584991455078125],[125,145,79,6.252263069152832],[125,146,64,6.180628776550293],[125,146,65,6.183351516723633],[125,146,66,6.178456783294678],[125,146,67,6.171987056732178],[125,146,68,6.168274402618408],[125,146,69,6.170851230621338],[125,146,70,6.180665969848633],[125,146,71,6.198060512542725],[125,146,72,6.2252516746521],[125,146,73,6.249039173126221],[125,146,74,6.258728981018066],[125,146,75,6.262077331542969],[125,146,76,6.263006687164307],[125,146,77,6.261656761169434],[125,146,78,6.2584991455078125],[125,146,79,6.252263069152832],[125,147,64,6.180628776550293],[125,147,65,6.183351516723633],[125,147,66,6.178456783294678],[125,147,67,6.171987056732178],[125,147,68,6.168274402618408],[125,147,69,6.170851230621338],[125,147,70,6.180665969848633],[125,147,71,6.198060512542725],[125,147,72,6.2252516746521],[125,147,73,6.249039173126221],[125,147,74,6.258728981018066],[125,147,75,6.262077331542969],[125,147,76,6.263006687164307],[125,147,77,6.261656761169434],[125,147,78,6.2584991455078125],[125,147,79,6.252263069152832],[125,148,64,6.180628776550293],[125,148,65,6.183351516723633],[125,148,66,6.178456783294678],[125,148,67,6.171987056732178],[125,148,68,6.168274402618408],[125,148,69,6.170851230621338],[125,148,70,6.180665969848633],[125,148,71,6.198060512542725],[125,148,72,6.2252516746521],[125,148,73,6.249039173126221],[125,148,74,6.258728981018066],[125,148,75,6.262077331542969],[125,148,76,6.263006687164307],[125,148,77,6.261656761169434],[125,148,78,6.2584991455078125],[125,148,79,6.252263069152832],[125,149,64,6.180628776550293],[125,149,65,6.183351516723633],[125,149,66,6.178456783294678],[125,149,67,6.171987056732178],[125,149,68,6.168274402618408],[125,149,69,6.170851230621338],[125,149,70,6.180665969848633],[125,149,71,6.198060512542725],[125,149,72,6.2252516746521],[125,149,73,6.249039173126221],[125,149,74,6.258728981018066],[125,149,75,6.262077331542969],[125,149,76,6.263006687164307],[125,149,77,6.261656761169434],[125,149,78,6.2584991455078125],[125,149,79,6.252263069152832],[125,150,64,6.180628776550293],[125,150,65,6.183351516723633],[125,150,66,6.178456783294678],[125,150,67,6.171987056732178],[125,150,68,6.168274402618408],[125,150,69,6.170851230621338],[125,150,70,6.180665969848633],[125,150,71,6.198060512542725],[125,150,72,6.2252516746521],[125,150,73,6.249039173126221],[125,150,74,6.258728981018066],[125,150,75,6.262077331542969],[125,150,76,6.263006687164307],[125,150,77,6.261656761169434],[125,150,78,6.2584991455078125],[125,150,79,6.252263069152832],[125,151,64,6.180628776550293],[125,151,65,6.183351516723633],[125,151,66,6.178456783294678],[125,151,67,6.171987056732178],[125,151,68,6.168274402618408],[125,151,69,6.170851230621338],[125,151,70,6.180665969848633],[125,151,71,6.198060512542725],[125,151,72,6.2252516746521],[125,151,73,6.249039173126221],[125,151,74,6.258728981018066],[125,151,75,6.262077331542969],[125,151,76,6.263006687164307],[125,151,77,6.261656761169434],[125,151,78,6.2584991455078125],[125,151,79,6.252263069152832],[125,152,64,6.180628776550293],[125,152,65,6.183351516723633],[125,152,66,6.178456783294678],[125,152,67,6.171987056732178],[125,152,68,6.168274402618408],[125,152,69,6.170851230621338],[125,152,70,6.180665969848633],[125,152,71,6.198060512542725],[125,152,72,6.2252516746521],[125,152,73,6.249039173126221],[125,152,74,6.258728981018066],[125,152,75,6.262077331542969],[125,152,76,6.263006687164307],[125,152,77,6.261656761169434],[125,152,78,6.2584991455078125],[125,152,79,6.252263069152832],[125,153,64,6.180628776550293],[125,153,65,6.183351516723633],[125,153,66,6.178456783294678],[125,153,67,6.171987056732178],[125,153,68,6.168274402618408],[125,153,69,6.170851230621338],[125,153,70,6.180665969848633],[125,153,71,6.198060512542725],[125,153,72,6.2252516746521],[125,153,73,6.249039173126221],[125,153,74,6.258728981018066],[125,153,75,6.262077331542969],[125,153,76,6.263006687164307],[125,153,77,6.261656761169434],[125,153,78,6.2584991455078125],[125,153,79,6.252263069152832],[125,154,64,6.180628776550293],[125,154,65,6.183351516723633],[125,154,66,6.178456783294678],[125,154,67,6.171987056732178],[125,154,68,6.168274402618408],[125,154,69,6.170851230621338],[125,154,70,6.180665969848633],[125,154,71,6.198060512542725],[125,154,72,6.2252516746521],[125,154,73,6.249039173126221],[125,154,74,6.258728981018066],[125,154,75,6.262077331542969],[125,154,76,6.263006687164307],[125,154,77,6.261656761169434],[125,154,78,6.2584991455078125],[125,154,79,6.252263069152832],[125,155,64,6.180628776550293],[125,155,65,6.183351516723633],[125,155,66,6.178456783294678],[125,155,67,6.171987056732178],[125,155,68,6.168274402618408],[125,155,69,6.170851230621338],[125,155,70,6.180665969848633],[125,155,71,6.198060512542725],[125,155,72,6.2252516746521],[125,155,73,6.249039173126221],[125,155,74,6.258728981018066],[125,155,75,6.262077331542969],[125,155,76,6.263006687164307],[125,155,77,6.261656761169434],[125,155,78,6.2584991455078125],[125,155,79,6.252263069152832],[125,156,64,6.180628776550293],[125,156,65,6.183351516723633],[125,156,66,6.178456783294678],[125,156,67,6.171987056732178],[125,156,68,6.168274402618408],[125,156,69,6.170851230621338],[125,156,70,6.180665969848633],[125,156,71,6.198060512542725],[125,156,72,6.2252516746521],[125,156,73,6.249039173126221],[125,156,74,6.258728981018066],[125,156,75,6.262077331542969],[125,156,76,6.263006687164307],[125,156,77,6.261656761169434],[125,156,78,6.2584991455078125],[125,156,79,6.252263069152832],[125,157,64,6.180628776550293],[125,157,65,6.183351516723633],[125,157,66,6.178456783294678],[125,157,67,6.171987056732178],[125,157,68,6.168274402618408],[125,157,69,6.170851230621338],[125,157,70,6.180665969848633],[125,157,71,6.198060512542725],[125,157,72,6.2252516746521],[125,157,73,6.249039173126221],[125,157,74,6.258728981018066],[125,157,75,6.262077331542969],[125,157,76,6.263006687164307],[125,157,77,6.261656761169434],[125,157,78,6.2584991455078125],[125,157,79,6.252263069152832],[125,158,64,6.180628776550293],[125,158,65,6.183351516723633],[125,158,66,6.178456783294678],[125,158,67,6.171987056732178],[125,158,68,6.168274402618408],[125,158,69,6.170851230621338],[125,158,70,6.180665969848633],[125,158,71,6.198060512542725],[125,158,72,6.2252516746521],[125,158,73,6.249039173126221],[125,158,74,6.258728981018066],[125,158,75,6.262077331542969],[125,158,76,6.263006687164307],[125,158,77,6.261656761169434],[125,158,78,6.2584991455078125],[125,158,79,6.252263069152832],[125,159,64,6.180628776550293],[125,159,65,6.183351516723633],[125,159,66,6.178456783294678],[125,159,67,6.171987056732178],[125,159,68,6.168274402618408],[125,159,69,6.170851230621338],[125,159,70,6.180665969848633],[125,159,71,6.198060512542725],[125,159,72,6.2252516746521],[125,159,73,6.249039173126221],[125,159,74,6.258728981018066],[125,159,75,6.262077331542969],[125,159,76,6.263006687164307],[125,159,77,6.261656761169434],[125,159,78,6.2584991455078125],[125,159,79,6.252263069152832],[125,160,64,6.180628776550293],[125,160,65,6.183351516723633],[125,160,66,6.178456783294678],[125,160,67,6.171987056732178],[125,160,68,6.168274402618408],[125,160,69,6.170851230621338],[125,160,70,6.180665969848633],[125,160,71,6.198060512542725],[125,160,72,6.2252516746521],[125,160,73,6.249039173126221],[125,160,74,6.258728981018066],[125,160,75,6.262077331542969],[125,160,76,6.263006687164307],[125,160,77,6.261656761169434],[125,160,78,6.2584991455078125],[125,160,79,6.252263069152832],[125,161,64,6.180628776550293],[125,161,65,6.183351516723633],[125,161,66,6.178456783294678],[125,161,67,6.171987056732178],[125,161,68,6.168274402618408],[125,161,69,6.170851230621338],[125,161,70,6.180665969848633],[125,161,71,6.198060512542725],[125,161,72,6.2252516746521],[125,161,73,6.249039173126221],[125,161,74,6.258728981018066],[125,161,75,6.262077331542969],[125,161,76,6.263006687164307],[125,161,77,6.261656761169434],[125,161,78,6.2584991455078125],[125,161,79,6.252263069152832],[125,162,64,6.180628776550293],[125,162,65,6.183351516723633],[125,162,66,6.178456783294678],[125,162,67,6.171987056732178],[125,162,68,6.168274402618408],[125,162,69,6.170851230621338],[125,162,70,6.180665969848633],[125,162,71,6.198060512542725],[125,162,72,6.2252516746521],[125,162,73,6.249039173126221],[125,162,74,6.258728981018066],[125,162,75,6.262077331542969],[125,162,76,6.263006687164307],[125,162,77,6.261656761169434],[125,162,78,6.2584991455078125],[125,162,79,6.252263069152832],[125,163,64,6.180628776550293],[125,163,65,6.183351516723633],[125,163,66,6.178456783294678],[125,163,67,6.171987056732178],[125,163,68,6.168274402618408],[125,163,69,6.170851230621338],[125,163,70,6.180665969848633],[125,163,71,6.198060512542725],[125,163,72,6.2252516746521],[125,163,73,6.249039173126221],[125,163,74,6.258728981018066],[125,163,75,6.262077331542969],[125,163,76,6.263006687164307],[125,163,77,6.261656761169434],[125,163,78,6.2584991455078125],[125,163,79,6.252263069152832],[125,164,64,6.180628776550293],[125,164,65,6.183351516723633],[125,164,66,6.178456783294678],[125,164,67,6.171987056732178],[125,164,68,6.168274402618408],[125,164,69,6.170851230621338],[125,164,70,6.180665969848633],[125,164,71,6.198060512542725],[125,164,72,6.2252516746521],[125,164,73,6.249039173126221],[125,164,74,6.258728981018066],[125,164,75,6.262077331542969],[125,164,76,6.263006687164307],[125,164,77,6.261656761169434],[125,164,78,6.2584991455078125],[125,164,79,6.252263069152832],[125,165,64,6.180628776550293],[125,165,65,6.183351516723633],[125,165,66,6.178456783294678],[125,165,67,6.171987056732178],[125,165,68,6.168274402618408],[125,165,69,6.170851230621338],[125,165,70,6.180665969848633],[125,165,71,6.198060512542725],[125,165,72,6.2252516746521],[125,165,73,6.249039173126221],[125,165,74,6.258728981018066],[125,165,75,6.262077331542969],[125,165,76,6.263006687164307],[125,165,77,6.261656761169434],[125,165,78,6.2584991455078125],[125,165,79,6.252263069152832],[125,166,64,6.180628776550293],[125,166,65,6.183351516723633],[125,166,66,6.178456783294678],[125,166,67,6.171987056732178],[125,166,68,6.168274402618408],[125,166,69,6.170851230621338],[125,166,70,6.180665969848633],[125,166,71,6.198060512542725],[125,166,72,6.2252516746521],[125,166,73,6.249039173126221],[125,166,74,6.258728981018066],[125,166,75,6.262077331542969],[125,166,76,6.263006687164307],[125,166,77,6.261656761169434],[125,166,78,6.2584991455078125],[125,166,79,6.252263069152832],[125,167,64,6.180628776550293],[125,167,65,6.183351516723633],[125,167,66,6.178456783294678],[125,167,67,6.171987056732178],[125,167,68,6.168274402618408],[125,167,69,6.170851230621338],[125,167,70,6.180665969848633],[125,167,71,6.198060512542725],[125,167,72,6.2252516746521],[125,167,73,6.249039173126221],[125,167,74,6.258728981018066],[125,167,75,6.262077331542969],[125,167,76,6.263006687164307],[125,167,77,6.261656761169434],[125,167,78,6.2584991455078125],[125,167,79,6.252263069152832],[125,168,64,6.180628776550293],[125,168,65,6.183351516723633],[125,168,66,6.178456783294678],[125,168,67,6.171987056732178],[125,168,68,6.168274402618408],[125,168,69,6.170851230621338],[125,168,70,6.180665969848633],[125,168,71,6.198060512542725],[125,168,72,6.2252516746521],[125,168,73,6.249039173126221],[125,168,74,6.258728981018066],[125,168,75,6.262077331542969],[125,168,76,6.263006687164307],[125,168,77,6.261656761169434],[125,168,78,6.2584991455078125],[125,168,79,6.252263069152832],[125,169,64,6.180628776550293],[125,169,65,6.183351516723633],[125,169,66,6.178456783294678],[125,169,67,6.171987056732178],[125,169,68,6.168274402618408],[125,169,69,6.170851230621338],[125,169,70,6.180665969848633],[125,169,71,6.198060512542725],[125,169,72,6.2252516746521],[125,169,73,6.249039173126221],[125,169,74,6.258728981018066],[125,169,75,6.262077331542969],[125,169,76,6.263006687164307],[125,169,77,6.261656761169434],[125,169,78,6.2584991455078125],[125,169,79,6.252263069152832],[125,170,64,6.180628776550293],[125,170,65,6.183351516723633],[125,170,66,6.178456783294678],[125,170,67,6.171987056732178],[125,170,68,6.168274402618408],[125,170,69,6.170851230621338],[125,170,70,6.180665969848633],[125,170,71,6.198060512542725],[125,170,72,6.2252516746521],[125,170,73,6.249039173126221],[125,170,74,6.258728981018066],[125,170,75,6.262077331542969],[125,170,76,6.263006687164307],[125,170,77,6.261656761169434],[125,170,78,6.2584991455078125],[125,170,79,6.252263069152832],[125,171,64,6.180628776550293],[125,171,65,6.183351516723633],[125,171,66,6.178456783294678],[125,171,67,6.171987056732178],[125,171,68,6.168274402618408],[125,171,69,6.170851230621338],[125,171,70,6.180665969848633],[125,171,71,6.198060512542725],[125,171,72,6.2252516746521],[125,171,73,6.249039173126221],[125,171,74,6.258728981018066],[125,171,75,6.262077331542969],[125,171,76,6.263006687164307],[125,171,77,6.261656761169434],[125,171,78,6.2584991455078125],[125,171,79,6.252263069152832],[125,172,64,6.180628776550293],[125,172,65,6.183351516723633],[125,172,66,6.178456783294678],[125,172,67,6.171987056732178],[125,172,68,6.168274402618408],[125,172,69,6.170851230621338],[125,172,70,6.180665969848633],[125,172,71,6.198060512542725],[125,172,72,6.2252516746521],[125,172,73,6.249039173126221],[125,172,74,6.258728981018066],[125,172,75,6.262077331542969],[125,172,76,6.263006687164307],[125,172,77,6.261656761169434],[125,172,78,6.2584991455078125],[125,172,79,6.252263069152832],[125,173,64,6.180628776550293],[125,173,65,6.183351516723633],[125,173,66,6.178456783294678],[125,173,67,6.171987056732178],[125,173,68,6.168274402618408],[125,173,69,6.170851230621338],[125,173,70,6.180665969848633],[125,173,71,6.198060512542725],[125,173,72,6.2252516746521],[125,173,73,6.249039173126221],[125,173,74,6.258728981018066],[125,173,75,6.262077331542969],[125,173,76,6.263006687164307],[125,173,77,6.261656761169434],[125,173,78,6.2584991455078125],[125,173,79,6.252263069152832],[125,174,64,6.180628776550293],[125,174,65,6.183351516723633],[125,174,66,6.178456783294678],[125,174,67,6.171987056732178],[125,174,68,6.168274402618408],[125,174,69,6.170851230621338],[125,174,70,6.180665969848633],[125,174,71,6.198060512542725],[125,174,72,6.2252516746521],[125,174,73,6.249039173126221],[125,174,74,6.258728981018066],[125,174,75,6.262077331542969],[125,174,76,6.263006687164307],[125,174,77,6.261656761169434],[125,174,78,6.2584991455078125],[125,174,79,6.252263069152832],[125,175,64,6.180628776550293],[125,175,65,6.183351516723633],[125,175,66,6.178456783294678],[125,175,67,6.171987056732178],[125,175,68,6.168274402618408],[125,175,69,6.170851230621338],[125,175,70,6.180665969848633],[125,175,71,6.198060512542725],[125,175,72,6.2252516746521],[125,175,73,6.249039173126221],[125,175,74,6.258728981018066],[125,175,75,6.262077331542969],[125,175,76,6.263006687164307],[125,175,77,6.261656761169434],[125,175,78,6.2584991455078125],[125,175,79,6.252263069152832],[125,176,64,6.180628776550293],[125,176,65,6.183351516723633],[125,176,66,6.178456783294678],[125,176,67,6.171987056732178],[125,176,68,6.168274402618408],[125,176,69,6.170851230621338],[125,176,70,6.180665969848633],[125,176,71,6.198060512542725],[125,176,72,6.2252516746521],[125,176,73,6.249039173126221],[125,176,74,6.258728981018066],[125,176,75,6.262077331542969],[125,176,76,6.263006687164307],[125,176,77,6.261656761169434],[125,176,78,6.2584991455078125],[125,176,79,6.252263069152832],[125,177,64,6.180628776550293],[125,177,65,6.183351516723633],[125,177,66,6.178456783294678],[125,177,67,6.171987056732178],[125,177,68,6.168274402618408],[125,177,69,6.170851230621338],[125,177,70,6.180665969848633],[125,177,71,6.198060512542725],[125,177,72,6.2252516746521],[125,177,73,6.249039173126221],[125,177,74,6.258728981018066],[125,177,75,6.262077331542969],[125,177,76,6.263006687164307],[125,177,77,6.261656761169434],[125,177,78,6.2584991455078125],[125,177,79,6.252263069152832],[125,178,64,6.180628776550293],[125,178,65,6.183351516723633],[125,178,66,6.178456783294678],[125,178,67,6.171987056732178],[125,178,68,6.168274402618408],[125,178,69,6.170851230621338],[125,178,70,6.180665969848633],[125,178,71,6.198060512542725],[125,178,72,6.2252516746521],[125,178,73,6.249039173126221],[125,178,74,6.258728981018066],[125,178,75,6.262077331542969],[125,178,76,6.263006687164307],[125,178,77,6.261656761169434],[125,178,78,6.2584991455078125],[125,178,79,6.252263069152832],[125,179,64,6.180628776550293],[125,179,65,6.183351516723633],[125,179,66,6.178456783294678],[125,179,67,6.171987056732178],[125,179,68,6.168274402618408],[125,179,69,6.170851230621338],[125,179,70,6.180665969848633],[125,179,71,6.198060512542725],[125,179,72,6.2252516746521],[125,179,73,6.249039173126221],[125,179,74,6.258728981018066],[125,179,75,6.262077331542969],[125,179,76,6.263006687164307],[125,179,77,6.261656761169434],[125,179,78,6.2584991455078125],[125,179,79,6.252263069152832],[125,180,64,6.180628776550293],[125,180,65,6.183351516723633],[125,180,66,6.178456783294678],[125,180,67,6.171987056732178],[125,180,68,6.168274402618408],[125,180,69,6.170851230621338],[125,180,70,6.180665969848633],[125,180,71,6.198060512542725],[125,180,72,6.2252516746521],[125,180,73,6.249039173126221],[125,180,74,6.258728981018066],[125,180,75,6.262077331542969],[125,180,76,6.263006687164307],[125,180,77,6.261656761169434],[125,180,78,6.2584991455078125],[125,180,79,6.252263069152832],[125,181,64,6.180628776550293],[125,181,65,6.183351516723633],[125,181,66,6.178456783294678],[125,181,67,6.171987056732178],[125,181,68,6.168274402618408],[125,181,69,6.170851230621338],[125,181,70,6.180665969848633],[125,181,71,6.198060512542725],[125,181,72,6.2252516746521],[125,181,73,6.249039173126221],[125,181,74,6.258728981018066],[125,181,75,6.262077331542969],[125,181,76,6.263006687164307],[125,181,77,6.261656761169434],[125,181,78,6.2584991455078125],[125,181,79,6.252263069152832],[125,182,64,6.180628776550293],[125,182,65,6.183351516723633],[125,182,66,6.178456783294678],[125,182,67,6.171987056732178],[125,182,68,6.168274402618408],[125,182,69,6.170851230621338],[125,182,70,6.180665969848633],[125,182,71,6.198060512542725],[125,182,72,6.2252516746521],[125,182,73,6.249039173126221],[125,182,74,6.258728981018066],[125,182,75,6.262077331542969],[125,182,76,6.263006687164307],[125,182,77,6.261656761169434],[125,182,78,6.2584991455078125],[125,182,79,6.252263069152832],[125,183,64,6.180628776550293],[125,183,65,6.183351516723633],[125,183,66,6.178456783294678],[125,183,67,6.171987056732178],[125,183,68,6.168274402618408],[125,183,69,6.170851230621338],[125,183,70,6.180665969848633],[125,183,71,6.198060512542725],[125,183,72,6.2252516746521],[125,183,73,6.249039173126221],[125,183,74,6.258728981018066],[125,183,75,6.262077331542969],[125,183,76,6.263006687164307],[125,183,77,6.261656761169434],[125,183,78,6.2584991455078125],[125,183,79,6.252263069152832],[125,184,64,6.180628776550293],[125,184,65,6.183351516723633],[125,184,66,6.178456783294678],[125,184,67,6.171987056732178],[125,184,68,6.168274402618408],[125,184,69,6.170851230621338],[125,184,70,6.180665969848633],[125,184,71,6.198060512542725],[125,184,72,6.2252516746521],[125,184,73,6.249039173126221],[125,184,74,6.258728981018066],[125,184,75,6.262077331542969],[125,184,76,6.263006687164307],[125,184,77,6.261656761169434],[125,184,78,6.2584991455078125],[125,184,79,6.252263069152832],[125,185,64,6.180628776550293],[125,185,65,6.183351516723633],[125,185,66,6.178456783294678],[125,185,67,6.171987056732178],[125,185,68,6.168274402618408],[125,185,69,6.170851230621338],[125,185,70,6.180665969848633],[125,185,71,6.198060512542725],[125,185,72,6.2252516746521],[125,185,73,6.249039173126221],[125,185,74,6.258728981018066],[125,185,75,6.262077331542969],[125,185,76,6.263006687164307],[125,185,77,6.261656761169434],[125,185,78,6.2584991455078125],[125,185,79,6.252263069152832],[125,186,64,6.180628776550293],[125,186,65,6.183351516723633],[125,186,66,6.178456783294678],[125,186,67,6.171987056732178],[125,186,68,6.168274402618408],[125,186,69,6.170851230621338],[125,186,70,6.180665969848633],[125,186,71,6.198060512542725],[125,186,72,6.2252516746521],[125,186,73,6.249039173126221],[125,186,74,6.258728981018066],[125,186,75,6.262077331542969],[125,186,76,6.263006687164307],[125,186,77,6.261656761169434],[125,186,78,6.2584991455078125],[125,186,79,6.252263069152832],[125,187,64,6.180628776550293],[125,187,65,6.183351516723633],[125,187,66,6.178456783294678],[125,187,67,6.171987056732178],[125,187,68,6.168274402618408],[125,187,69,6.170851230621338],[125,187,70,6.180665969848633],[125,187,71,6.198060512542725],[125,187,72,6.2252516746521],[125,187,73,6.249039173126221],[125,187,74,6.258728981018066],[125,187,75,6.262077331542969],[125,187,76,6.263006687164307],[125,187,77,6.261656761169434],[125,187,78,6.2584991455078125],[125,187,79,6.252263069152832],[125,188,64,6.180628776550293],[125,188,65,6.183351516723633],[125,188,66,6.178456783294678],[125,188,67,6.171987056732178],[125,188,68,6.168274402618408],[125,188,69,6.170851230621338],[125,188,70,6.180665969848633],[125,188,71,6.198060512542725],[125,188,72,6.2252516746521],[125,188,73,6.249039173126221],[125,188,74,6.258728981018066],[125,188,75,6.262077331542969],[125,188,76,6.263006687164307],[125,188,77,6.261656761169434],[125,188,78,6.2584991455078125],[125,188,79,6.252263069152832],[125,189,64,6.180628776550293],[125,189,65,6.183351516723633],[125,189,66,6.178456783294678],[125,189,67,6.171987056732178],[125,189,68,6.168274402618408],[125,189,69,6.170851230621338],[125,189,70,6.180665969848633],[125,189,71,6.198060512542725],[125,189,72,6.2252516746521],[125,189,73,6.249039173126221],[125,189,74,6.258728981018066],[125,189,75,6.262077331542969],[125,189,76,6.263006687164307],[125,189,77,6.261656761169434],[125,189,78,6.2584991455078125],[125,189,79,6.252263069152832],[125,190,64,6.180628776550293],[125,190,65,6.183351516723633],[125,190,66,6.178456783294678],[125,190,67,6.171987056732178],[125,190,68,6.168274402618408],[125,190,69,6.170851230621338],[125,190,70,6.180665969848633],[125,190,71,6.198060512542725],[125,190,72,6.2252516746521],[125,190,73,6.249039173126221],[125,190,74,6.258728981018066],[125,190,75,6.262077331542969],[125,190,76,6.263006687164307],[125,190,77,6.261656761169434],[125,190,78,6.2584991455078125],[125,190,79,6.252263069152832],[125,191,64,6.180628776550293],[125,191,65,6.183351516723633],[125,191,66,6.178456783294678],[125,191,67,6.171987056732178],[125,191,68,6.168274402618408],[125,191,69,6.170851230621338],[125,191,70,6.180665969848633],[125,191,71,6.198060512542725],[125,191,72,6.2252516746521],[125,191,73,6.249039173126221],[125,191,74,6.258728981018066],[125,191,75,6.262077331542969],[125,191,76,6.263006687164307],[125,191,77,6.261656761169434],[125,191,78,6.2584991455078125],[125,191,79,6.252263069152832],[125,192,64,6.180628776550293],[125,192,65,6.183351516723633],[125,192,66,6.178456783294678],[125,192,67,6.171987056732178],[125,192,68,6.168274402618408],[125,192,69,6.170851230621338],[125,192,70,6.180665969848633],[125,192,71,6.198060512542725],[125,192,72,6.2252516746521],[125,192,73,6.249039173126221],[125,192,74,6.258728981018066],[125,192,75,6.262077331542969],[125,192,76,6.263006687164307],[125,192,77,6.261656761169434],[125,192,78,6.2584991455078125],[125,192,79,6.252263069152832],[125,193,64,6.180628776550293],[125,193,65,6.183351516723633],[125,193,66,6.178456783294678],[125,193,67,6.171987056732178],[125,193,68,6.168274402618408],[125,193,69,6.170851230621338],[125,193,70,6.180665969848633],[125,193,71,6.198060512542725],[125,193,72,6.2252516746521],[125,193,73,6.249039173126221],[125,193,74,6.258728981018066],[125,193,75,6.262077331542969],[125,193,76,6.263006687164307],[125,193,77,6.261656761169434],[125,193,78,6.2584991455078125],[125,193,79,6.252263069152832],[125,194,64,6.180628776550293],[125,194,65,6.183351516723633],[125,194,66,6.178456783294678],[125,194,67,6.171987056732178],[125,194,68,6.168274402618408],[125,194,69,6.170851230621338],[125,194,70,6.180665969848633],[125,194,71,6.198060512542725],[125,194,72,6.2252516746521],[125,194,73,6.249039173126221],[125,194,74,6.258728981018066],[125,194,75,6.262077331542969],[125,194,76,6.263006687164307],[125,194,77,6.261656761169434],[125,194,78,6.2584991455078125],[125,194,79,6.252263069152832],[125,195,64,6.180628776550293],[125,195,65,6.183351516723633],[125,195,66,6.178456783294678],[125,195,67,6.171987056732178],[125,195,68,6.168274402618408],[125,195,69,6.170851230621338],[125,195,70,6.180665969848633],[125,195,71,6.198060512542725],[125,195,72,6.2252516746521],[125,195,73,6.249039173126221],[125,195,74,6.258728981018066],[125,195,75,6.262077331542969],[125,195,76,6.263006687164307],[125,195,77,6.261656761169434],[125,195,78,6.2584991455078125],[125,195,79,6.252263069152832],[125,196,64,6.180628776550293],[125,196,65,6.183351516723633],[125,196,66,6.178456783294678],[125,196,67,6.171987056732178],[125,196,68,6.168274402618408],[125,196,69,6.170851230621338],[125,196,70,6.180665969848633],[125,196,71,6.198060512542725],[125,196,72,6.2252516746521],[125,196,73,6.249039173126221],[125,196,74,6.258728981018066],[125,196,75,6.262077331542969],[125,196,76,6.263006687164307],[125,196,77,6.261656761169434],[125,196,78,6.2584991455078125],[125,196,79,6.252263069152832],[125,197,64,6.180628776550293],[125,197,65,6.183351516723633],[125,197,66,6.178456783294678],[125,197,67,6.171987056732178],[125,197,68,6.168274402618408],[125,197,69,6.170851230621338],[125,197,70,6.180665969848633],[125,197,71,6.198060512542725],[125,197,72,6.2252516746521],[125,197,73,6.249039173126221],[125,197,74,6.258728981018066],[125,197,75,6.262077331542969],[125,197,76,6.263006687164307],[125,197,77,6.261656761169434],[125,197,78,6.2584991455078125],[125,197,79,6.252263069152832],[125,198,64,6.180628776550293],[125,198,65,6.183351516723633],[125,198,66,6.178456783294678],[125,198,67,6.171987056732178],[125,198,68,6.168274402618408],[125,198,69,6.170851230621338],[125,198,70,6.180665969848633],[125,198,71,6.198060512542725],[125,198,72,6.2252516746521],[125,198,73,6.249039173126221],[125,198,74,6.258728981018066],[125,198,75,6.262077331542969],[125,198,76,6.263006687164307],[125,198,77,6.261656761169434],[125,198,78,6.2584991455078125],[125,198,79,6.252263069152832],[125,199,64,6.180628776550293],[125,199,65,6.183351516723633],[125,199,66,6.178456783294678],[125,199,67,6.171987056732178],[125,199,68,6.168274402618408],[125,199,69,6.170851230621338],[125,199,70,6.180665969848633],[125,199,71,6.198060512542725],[125,199,72,6.2252516746521],[125,199,73,6.249039173126221],[125,199,74,6.258728981018066],[125,199,75,6.262077331542969],[125,199,76,6.263006687164307],[125,199,77,6.261656761169434],[125,199,78,6.2584991455078125],[125,199,79,6.252263069152832],[125,200,64,6.180628776550293],[125,200,65,6.183351516723633],[125,200,66,6.178456783294678],[125,200,67,6.171987056732178],[125,200,68,6.168274402618408],[125,200,69,6.170851230621338],[125,200,70,6.180665969848633],[125,200,71,6.198060512542725],[125,200,72,6.2252516746521],[125,200,73,6.249039173126221],[125,200,74,6.258728981018066],[125,200,75,6.262077331542969],[125,200,76,6.263006687164307],[125,200,77,6.261656761169434],[125,200,78,6.2584991455078125],[125,200,79,6.252263069152832],[125,201,64,6.180628776550293],[125,201,65,6.183351516723633],[125,201,66,6.178456783294678],[125,201,67,6.171987056732178],[125,201,68,6.168274402618408],[125,201,69,6.170851230621338],[125,201,70,6.180665969848633],[125,201,71,6.198060512542725],[125,201,72,6.2252516746521],[125,201,73,6.249039173126221],[125,201,74,6.258728981018066],[125,201,75,6.262077331542969],[125,201,76,6.263006687164307],[125,201,77,6.261656761169434],[125,201,78,6.2584991455078125],[125,201,79,6.252263069152832],[125,202,64,6.180628776550293],[125,202,65,6.183351516723633],[125,202,66,6.178456783294678],[125,202,67,6.171987056732178],[125,202,68,6.168274402618408],[125,202,69,6.170851230621338],[125,202,70,6.180665969848633],[125,202,71,6.198060512542725],[125,202,72,6.2252516746521],[125,202,73,6.249039173126221],[125,202,74,6.258728981018066],[125,202,75,6.262077331542969],[125,202,76,6.263006687164307],[125,202,77,6.261656761169434],[125,202,78,6.2584991455078125],[125,202,79,6.252263069152832],[125,203,64,6.180628776550293],[125,203,65,6.183351516723633],[125,203,66,6.178456783294678],[125,203,67,6.171987056732178],[125,203,68,6.168274402618408],[125,203,69,6.170851230621338],[125,203,70,6.180665969848633],[125,203,71,6.198060512542725],[125,203,72,6.2252516746521],[125,203,73,6.249039173126221],[125,203,74,6.258728981018066],[125,203,75,6.262077331542969],[125,203,76,6.263006687164307],[125,203,77,6.261656761169434],[125,203,78,6.2584991455078125],[125,203,79,6.252263069152832],[125,204,64,6.180628776550293],[125,204,65,6.183351516723633],[125,204,66,6.178456783294678],[125,204,67,6.171987056732178],[125,204,68,6.168274402618408],[125,204,69,6.170851230621338],[125,204,70,6.180665969848633],[125,204,71,6.198060512542725],[125,204,72,6.2252516746521],[125,204,73,6.249039173126221],[125,204,74,6.258728981018066],[125,204,75,6.262077331542969],[125,204,76,6.263006687164307],[125,204,77,6.261656761169434],[125,204,78,6.2584991455078125],[125,204,79,6.252263069152832],[125,205,64,6.180628776550293],[125,205,65,6.183351516723633],[125,205,66,6.178456783294678],[125,205,67,6.171987056732178],[125,205,68,6.168274402618408],[125,205,69,6.170851230621338],[125,205,70,6.180665969848633],[125,205,71,6.198060512542725],[125,205,72,6.2252516746521],[125,205,73,6.249039173126221],[125,205,74,6.258728981018066],[125,205,75,6.262077331542969],[125,205,76,6.263006687164307],[125,205,77,6.261656761169434],[125,205,78,6.2584991455078125],[125,205,79,6.252263069152832],[125,206,64,6.180628776550293],[125,206,65,6.183351516723633],[125,206,66,6.178456783294678],[125,206,67,6.171987056732178],[125,206,68,6.168274402618408],[125,206,69,6.170851230621338],[125,206,70,6.180665969848633],[125,206,71,6.198060512542725],[125,206,72,6.2252516746521],[125,206,73,6.249039173126221],[125,206,74,6.258728981018066],[125,206,75,6.262077331542969],[125,206,76,6.263006687164307],[125,206,77,6.261656761169434],[125,206,78,6.2584991455078125],[125,206,79,6.252263069152832],[125,207,64,6.180628776550293],[125,207,65,6.183351516723633],[125,207,66,6.178456783294678],[125,207,67,6.171987056732178],[125,207,68,6.168274402618408],[125,207,69,6.170851230621338],[125,207,70,6.180665969848633],[125,207,71,6.198060512542725],[125,207,72,6.2252516746521],[125,207,73,6.249039173126221],[125,207,74,6.258728981018066],[125,207,75,6.262077331542969],[125,207,76,6.263006687164307],[125,207,77,6.261656761169434],[125,207,78,6.2584991455078125],[125,207,79,6.252263069152832],[125,208,64,6.180628776550293],[125,208,65,6.183351516723633],[125,208,66,6.178456783294678],[125,208,67,6.171987056732178],[125,208,68,6.168274402618408],[125,208,69,6.170851230621338],[125,208,70,6.180665969848633],[125,208,71,6.198060512542725],[125,208,72,6.2252516746521],[125,208,73,6.249039173126221],[125,208,74,6.258728981018066],[125,208,75,6.262077331542969],[125,208,76,6.263006687164307],[125,208,77,6.261656761169434],[125,208,78,6.2584991455078125],[125,208,79,6.252263069152832],[125,209,64,6.180628776550293],[125,209,65,6.183351516723633],[125,209,66,6.178456783294678],[125,209,67,6.171987056732178],[125,209,68,6.168274402618408],[125,209,69,6.170851230621338],[125,209,70,6.180665969848633],[125,209,71,6.198060512542725],[125,209,72,6.2252516746521],[125,209,73,6.249039173126221],[125,209,74,6.258728981018066],[125,209,75,6.262077331542969],[125,209,76,6.263006687164307],[125,209,77,6.261656761169434],[125,209,78,6.2584991455078125],[125,209,79,6.252263069152832],[125,210,64,6.180628776550293],[125,210,65,6.183351516723633],[125,210,66,6.178456783294678],[125,210,67,6.171987056732178],[125,210,68,6.168274402618408],[125,210,69,6.170851230621338],[125,210,70,6.180665969848633],[125,210,71,6.198060512542725],[125,210,72,6.2252516746521],[125,210,73,6.249039173126221],[125,210,74,6.258728981018066],[125,210,75,6.262077331542969],[125,210,76,6.263006687164307],[125,210,77,6.261656761169434],[125,210,78,6.2584991455078125],[125,210,79,6.252263069152832],[125,211,64,6.180628776550293],[125,211,65,6.183351516723633],[125,211,66,6.178456783294678],[125,211,67,6.171987056732178],[125,211,68,6.168274402618408],[125,211,69,6.170851230621338],[125,211,70,6.180665969848633],[125,211,71,6.198060512542725],[125,211,72,6.2252516746521],[125,211,73,6.249039173126221],[125,211,74,6.258728981018066],[125,211,75,6.262077331542969],[125,211,76,6.263006687164307],[125,211,77,6.261656761169434],[125,211,78,6.2584991455078125],[125,211,79,6.252263069152832],[125,212,64,6.180628776550293],[125,212,65,6.183351516723633],[125,212,66,6.178456783294678],[125,212,67,6.171987056732178],[125,212,68,6.168274402618408],[125,212,69,6.170851230621338],[125,212,70,6.180665969848633],[125,212,71,6.198060512542725],[125,212,72,6.2252516746521],[125,212,73,6.249039173126221],[125,212,74,6.258728981018066],[125,212,75,6.262077331542969],[125,212,76,6.263006687164307],[125,212,77,6.261656761169434],[125,212,78,6.2584991455078125],[125,212,79,6.252263069152832],[125,213,64,6.180628776550293],[125,213,65,6.183351516723633],[125,213,66,6.178456783294678],[125,213,67,6.171987056732178],[125,213,68,6.168274402618408],[125,213,69,6.170851230621338],[125,213,70,6.180665969848633],[125,213,71,6.198060512542725],[125,213,72,6.2252516746521],[125,213,73,6.249039173126221],[125,213,74,6.258728981018066],[125,213,75,6.262077331542969],[125,213,76,6.263006687164307],[125,213,77,6.261656761169434],[125,213,78,6.2584991455078125],[125,213,79,6.252263069152832],[125,214,64,6.180628776550293],[125,214,65,6.183351516723633],[125,214,66,6.178456783294678],[125,214,67,6.171987056732178],[125,214,68,6.168274402618408],[125,214,69,6.170851230621338],[125,214,70,6.180665969848633],[125,214,71,6.198060512542725],[125,214,72,6.2252516746521],[125,214,73,6.249039173126221],[125,214,74,6.258728981018066],[125,214,75,6.262077331542969],[125,214,76,6.263006687164307],[125,214,77,6.261656761169434],[125,214,78,6.2584991455078125],[125,214,79,6.252263069152832],[125,215,64,6.180628776550293],[125,215,65,6.183351516723633],[125,215,66,6.178456783294678],[125,215,67,6.171987056732178],[125,215,68,6.168274402618408],[125,215,69,6.170851230621338],[125,215,70,6.180665969848633],[125,215,71,6.198060512542725],[125,215,72,6.2252516746521],[125,215,73,6.249039173126221],[125,215,74,6.258728981018066],[125,215,75,6.262077331542969],[125,215,76,6.263006687164307],[125,215,77,6.261656761169434],[125,215,78,6.2584991455078125],[125,215,79,6.252263069152832],[125,216,64,6.180628776550293],[125,216,65,6.183351516723633],[125,216,66,6.178456783294678],[125,216,67,6.171987056732178],[125,216,68,6.168274402618408],[125,216,69,6.170851230621338],[125,216,70,6.180665969848633],[125,216,71,6.198060512542725],[125,216,72,6.2252516746521],[125,216,73,6.249039173126221],[125,216,74,6.258728981018066],[125,216,75,6.262077331542969],[125,216,76,6.263006687164307],[125,216,77,6.261656761169434],[125,216,78,6.2584991455078125],[125,216,79,6.252263069152832],[125,217,64,6.180628776550293],[125,217,65,6.183351516723633],[125,217,66,6.178456783294678],[125,217,67,6.171987056732178],[125,217,68,6.168274402618408],[125,217,69,6.170851230621338],[125,217,70,6.180665969848633],[125,217,71,6.198060512542725],[125,217,72,6.2252516746521],[125,217,73,6.249039173126221],[125,217,74,6.258728981018066],[125,217,75,6.262077331542969],[125,217,76,6.263006687164307],[125,217,77,6.261656761169434],[125,217,78,6.2584991455078125],[125,217,79,6.252263069152832],[125,218,64,6.180628776550293],[125,218,65,6.183351516723633],[125,218,66,6.178456783294678],[125,218,67,6.171987056732178],[125,218,68,6.168274402618408],[125,218,69,6.170851230621338],[125,218,70,6.180665969848633],[125,218,71,6.198060512542725],[125,218,72,6.2252516746521],[125,218,73,6.249039173126221],[125,218,74,6.258728981018066],[125,218,75,6.262077331542969],[125,218,76,6.263006687164307],[125,218,77,6.261656761169434],[125,218,78,6.2584991455078125],[125,218,79,6.252263069152832],[125,219,64,6.180628776550293],[125,219,65,6.183351516723633],[125,219,66,6.178456783294678],[125,219,67,6.171987056732178],[125,219,68,6.168274402618408],[125,219,69,6.170851230621338],[125,219,70,6.180665969848633],[125,219,71,6.198060512542725],[125,219,72,6.2252516746521],[125,219,73,6.249039173126221],[125,219,74,6.258728981018066],[125,219,75,6.262077331542969],[125,219,76,6.263006687164307],[125,219,77,6.261656761169434],[125,219,78,6.2584991455078125],[125,219,79,6.252263069152832],[125,220,64,6.180628776550293],[125,220,65,6.183351516723633],[125,220,66,6.178456783294678],[125,220,67,6.171987056732178],[125,220,68,6.168274402618408],[125,220,69,6.170851230621338],[125,220,70,6.180665969848633],[125,220,71,6.198060512542725],[125,220,72,6.2252516746521],[125,220,73,6.249039173126221],[125,220,74,6.258728981018066],[125,220,75,6.262077331542969],[125,220,76,6.263006687164307],[125,220,77,6.261656761169434],[125,220,78,6.2584991455078125],[125,220,79,6.252263069152832],[125,221,64,6.180628776550293],[125,221,65,6.183351516723633],[125,221,66,6.178456783294678],[125,221,67,6.171987056732178],[125,221,68,6.168274402618408],[125,221,69,6.170851230621338],[125,221,70,6.180665969848633],[125,221,71,6.198060512542725],[125,221,72,6.2252516746521],[125,221,73,6.249039173126221],[125,221,74,6.258728981018066],[125,221,75,6.262077331542969],[125,221,76,6.263006687164307],[125,221,77,6.261656761169434],[125,221,78,6.2584991455078125],[125,221,79,6.252263069152832],[125,222,64,6.180628776550293],[125,222,65,6.183351516723633],[125,222,66,6.178456783294678],[125,222,67,6.171987056732178],[125,222,68,6.168274402618408],[125,222,69,6.170851230621338],[125,222,70,6.180665969848633],[125,222,71,6.198060512542725],[125,222,72,6.2252516746521],[125,222,73,6.249039173126221],[125,222,74,6.258728981018066],[125,222,75,6.262077331542969],[125,222,76,6.263006687164307],[125,222,77,6.261656761169434],[125,222,78,6.2584991455078125],[125,222,79,6.252263069152832],[125,223,64,6.180628776550293],[125,223,65,6.183351516723633],[125,223,66,6.178456783294678],[125,223,67,6.171987056732178],[125,223,68,6.168274402618408],[125,223,69,6.170851230621338],[125,223,70,6.180665969848633],[125,223,71,6.198060512542725],[125,223,72,6.2252516746521],[125,223,73,6.249039173126221],[125,223,74,6.258728981018066],[125,223,75,6.262077331542969],[125,223,76,6.263006687164307],[125,223,77,6.261656761169434],[125,223,78,6.2584991455078125],[125,223,79,6.252263069152832],[125,224,64,6.180628776550293],[125,224,65,6.183351516723633],[125,224,66,6.178456783294678],[125,224,67,6.171987056732178],[125,224,68,6.168274402618408],[125,224,69,6.170851230621338],[125,224,70,6.180665969848633],[125,224,71,6.198060512542725],[125,224,72,6.2252516746521],[125,224,73,6.249039173126221],[125,224,74,6.258728981018066],[125,224,75,6.262077331542969],[125,224,76,6.263006687164307],[125,224,77,6.261656761169434],[125,224,78,6.2584991455078125],[125,224,79,6.252263069152832],[125,225,64,6.180628776550293],[125,225,65,6.183351516723633],[125,225,66,6.178456783294678],[125,225,67,6.171987056732178],[125,225,68,6.168274402618408],[125,225,69,6.170851230621338],[125,225,70,6.180665969848633],[125,225,71,6.198060512542725],[125,225,72,6.2252516746521],[125,225,73,6.249039173126221],[125,225,74,6.258728981018066],[125,225,75,6.262077331542969],[125,225,76,6.263006687164307],[125,225,77,6.261656761169434],[125,225,78,6.2584991455078125],[125,225,79,6.252263069152832],[125,226,64,6.180628776550293],[125,226,65,6.183351516723633],[125,226,66,6.178456783294678],[125,226,67,6.171987056732178],[125,226,68,6.168274402618408],[125,226,69,6.170851230621338],[125,226,70,6.180665969848633],[125,226,71,6.198060512542725],[125,226,72,6.2252516746521],[125,226,73,6.249039173126221],[125,226,74,6.258728981018066],[125,226,75,6.262077331542969],[125,226,76,6.263006687164307],[125,226,77,6.261656761169434],[125,226,78,6.2584991455078125],[125,226,79,6.252263069152832],[125,227,64,6.180628776550293],[125,227,65,6.183351516723633],[125,227,66,6.178456783294678],[125,227,67,6.171987056732178],[125,227,68,6.168274402618408],[125,227,69,6.170851230621338],[125,227,70,6.180665969848633],[125,227,71,6.198060512542725],[125,227,72,6.2252516746521],[125,227,73,6.249039173126221],[125,227,74,6.258728981018066],[125,227,75,6.262077331542969],[125,227,76,6.263006687164307],[125,227,77,6.261656761169434],[125,227,78,6.2584991455078125],[125,227,79,6.252263069152832],[125,228,64,6.180628776550293],[125,228,65,6.183351516723633],[125,228,66,6.178456783294678],[125,228,67,6.171987056732178],[125,228,68,6.168274402618408],[125,228,69,6.170851230621338],[125,228,70,6.180665969848633],[125,228,71,6.198060512542725],[125,228,72,6.2252516746521],[125,228,73,6.249039173126221],[125,228,74,6.258728981018066],[125,228,75,6.262077331542969],[125,228,76,6.263006687164307],[125,228,77,6.261656761169434],[125,228,78,6.2584991455078125],[125,228,79,6.252263069152832],[125,229,64,6.180628776550293],[125,229,65,6.183351516723633],[125,229,66,6.178456783294678],[125,229,67,6.171987056732178],[125,229,68,6.168274402618408],[125,229,69,6.170851230621338],[125,229,70,6.180665969848633],[125,229,71,6.198060512542725],[125,229,72,6.2252516746521],[125,229,73,6.249039173126221],[125,229,74,6.258728981018066],[125,229,75,6.262077331542969],[125,229,76,6.263006687164307],[125,229,77,6.261656761169434],[125,229,78,6.2584991455078125],[125,229,79,6.252263069152832],[125,230,64,6.180628776550293],[125,230,65,6.183351516723633],[125,230,66,6.178456783294678],[125,230,67,6.171987056732178],[125,230,68,6.168274402618408],[125,230,69,6.170851230621338],[125,230,70,6.180665969848633],[125,230,71,6.198060512542725],[125,230,72,6.2252516746521],[125,230,73,6.249039173126221],[125,230,74,6.258728981018066],[125,230,75,6.262077331542969],[125,230,76,6.263006687164307],[125,230,77,6.261656761169434],[125,230,78,6.2584991455078125],[125,230,79,6.252263069152832],[125,231,64,6.180628776550293],[125,231,65,6.183351516723633],[125,231,66,6.178456783294678],[125,231,67,6.171987056732178],[125,231,68,6.168274402618408],[125,231,69,6.170851230621338],[125,231,70,6.180665969848633],[125,231,71,6.198060512542725],[125,231,72,6.2252516746521],[125,231,73,6.249039173126221],[125,231,74,6.258728981018066],[125,231,75,6.262077331542969],[125,231,76,6.263006687164307],[125,231,77,6.261656761169434],[125,231,78,6.2584991455078125],[125,231,79,6.252263069152832],[125,232,64,6.180628776550293],[125,232,65,6.183351516723633],[125,232,66,6.178456783294678],[125,232,67,6.171987056732178],[125,232,68,6.168274402618408],[125,232,69,6.170851230621338],[125,232,70,6.180665969848633],[125,232,71,6.198060512542725],[125,232,72,6.2252516746521],[125,232,73,6.249039173126221],[125,232,74,6.258728981018066],[125,232,75,6.262077331542969],[125,232,76,6.263006687164307],[125,232,77,6.261656761169434],[125,232,78,6.2584991455078125],[125,232,79,6.252263069152832],[125,233,64,6.180628776550293],[125,233,65,6.183351516723633],[125,233,66,6.178456783294678],[125,233,67,6.171987056732178],[125,233,68,6.168274402618408],[125,233,69,6.170851230621338],[125,233,70,6.180665969848633],[125,233,71,6.198060512542725],[125,233,72,6.2252516746521],[125,233,73,6.249039173126221],[125,233,74,6.258728981018066],[125,233,75,6.262077331542969],[125,233,76,6.263006687164307],[125,233,77,6.261656761169434],[125,233,78,6.2584991455078125],[125,233,79,6.252263069152832],[125,234,64,6.180628776550293],[125,234,65,6.183351516723633],[125,234,66,6.178456783294678],[125,234,67,6.171987056732178],[125,234,68,6.168274402618408],[125,234,69,6.170851230621338],[125,234,70,6.180665969848633],[125,234,71,6.198060512542725],[125,234,72,6.2252516746521],[125,234,73,6.249039173126221],[125,234,74,6.258728981018066],[125,234,75,6.262077331542969],[125,234,76,6.263006687164307],[125,234,77,6.261656761169434],[125,234,78,6.2584991455078125],[125,234,79,6.252263069152832],[125,235,64,6.180628776550293],[125,235,65,6.183351516723633],[125,235,66,6.178456783294678],[125,235,67,6.171987056732178],[125,235,68,6.168274402618408],[125,235,69,6.170851230621338],[125,235,70,6.180665969848633],[125,235,71,6.198060512542725],[125,235,72,6.2252516746521],[125,235,73,6.249039173126221],[125,235,74,6.258728981018066],[125,235,75,6.262077331542969],[125,235,76,6.263006687164307],[125,235,77,6.261656761169434],[125,235,78,6.2584991455078125],[125,235,79,6.252263069152832],[125,236,64,6.180628776550293],[125,236,65,6.183351516723633],[125,236,66,6.178456783294678],[125,236,67,6.171987056732178],[125,236,68,6.168274402618408],[125,236,69,6.170851230621338],[125,236,70,6.180665969848633],[125,236,71,6.198060512542725],[125,236,72,6.2252516746521],[125,236,73,6.249039173126221],[125,236,74,6.258728981018066],[125,236,75,6.262077331542969],[125,236,76,6.263006687164307],[125,236,77,6.261656761169434],[125,236,78,6.2584991455078125],[125,236,79,6.252263069152832],[125,237,64,6.180628776550293],[125,237,65,6.183351516723633],[125,237,66,6.178456783294678],[125,237,67,6.171987056732178],[125,237,68,6.168274402618408],[125,237,69,6.170851230621338],[125,237,70,6.180665969848633],[125,237,71,6.198060512542725],[125,237,72,6.2252516746521],[125,237,73,6.249039173126221],[125,237,74,6.258728981018066],[125,237,75,6.262077331542969],[125,237,76,6.263006687164307],[125,237,77,6.261656761169434],[125,237,78,6.2584991455078125],[125,237,79,6.252263069152832],[125,238,64,6.180628776550293],[125,238,65,6.183351516723633],[125,238,66,6.178456783294678],[125,238,67,6.171987056732178],[125,238,68,6.168274402618408],[125,238,69,6.170851230621338],[125,238,70,6.180665969848633],[125,238,71,6.198060512542725],[125,238,72,6.2252516746521],[125,238,73,6.249039173126221],[125,238,74,6.258728981018066],[125,238,75,6.262077331542969],[125,238,76,6.263006687164307],[125,238,77,6.261656761169434],[125,238,78,6.2584991455078125],[125,238,79,6.252263069152832],[125,239,64,6.180628776550293],[125,239,65,6.183351516723633],[125,239,66,6.178456783294678],[125,239,67,6.171987056732178],[125,239,68,6.168274402618408],[125,239,69,6.170851230621338],[125,239,70,6.180665969848633],[125,239,71,6.198060512542725],[125,239,72,6.2252516746521],[125,239,73,6.249039173126221],[125,239,74,6.258728981018066],[125,239,75,6.262077331542969],[125,239,76,6.263006687164307],[125,239,77,6.261656761169434],[125,239,78,6.2584991455078125],[125,239,79,6.252263069152832],[125,240,64,6.180628776550293],[125,240,65,6.183351516723633],[125,240,66,6.178456783294678],[125,240,67,6.171987056732178],[125,240,68,6.168274402618408],[125,240,69,6.170851230621338],[125,240,70,6.180665969848633],[125,240,71,6.198060512542725],[125,240,72,6.2252516746521],[125,240,73,6.249039173126221],[125,240,74,6.258728981018066],[125,240,75,6.262077331542969],[125,240,76,6.263006687164307],[125,240,77,6.261656761169434],[125,240,78,6.2584991455078125],[125,240,79,6.252263069152832],[125,241,64,6.180628776550293],[125,241,65,6.183351516723633],[125,241,66,6.178456783294678],[125,241,67,6.171987056732178],[125,241,68,6.168274402618408],[125,241,69,6.170851230621338],[125,241,70,6.180665969848633],[125,241,71,6.198060512542725],[125,241,72,6.2252516746521],[125,241,73,6.249039173126221],[125,241,74,6.258728981018066],[125,241,75,6.262077331542969],[125,241,76,6.263006687164307],[125,241,77,6.261656761169434],[125,241,78,6.2584991455078125],[125,241,79,6.252263069152832],[125,242,64,6.180628776550293],[125,242,65,6.183351516723633],[125,242,66,6.178456783294678],[125,242,67,6.171987056732178],[125,242,68,6.168274402618408],[125,242,69,6.170851230621338],[125,242,70,6.180665969848633],[125,242,71,6.198060512542725],[125,242,72,6.2252516746521],[125,242,73,6.249039173126221],[125,242,74,6.258728981018066],[125,242,75,6.262077331542969],[125,242,76,6.263006687164307],[125,242,77,6.261656761169434],[125,242,78,6.2584991455078125],[125,242,79,6.252263069152832],[125,243,64,6.180628776550293],[125,243,65,6.183351516723633],[125,243,66,6.178456783294678],[125,243,67,6.171987056732178],[125,243,68,6.168274402618408],[125,243,69,6.170851230621338],[125,243,70,6.180665969848633],[125,243,71,6.198060512542725],[125,243,72,6.2252516746521],[125,243,73,6.249039173126221],[125,243,74,6.258728981018066],[125,243,75,6.262077331542969],[125,243,76,6.263006687164307],[125,243,77,6.261656761169434],[125,243,78,6.2584991455078125],[125,243,79,6.252263069152832],[125,244,64,6.180628776550293],[125,244,65,6.183351516723633],[125,244,66,6.178456783294678],[125,244,67,6.171987056732178],[125,244,68,6.168274402618408],[125,244,69,6.170851230621338],[125,244,70,6.180665969848633],[125,244,71,6.198060512542725],[125,244,72,6.2252516746521],[125,244,73,6.249039173126221],[125,244,74,6.258728981018066],[125,244,75,6.262077331542969],[125,244,76,6.263006687164307],[125,244,77,6.261656761169434],[125,244,78,6.2584991455078125],[125,244,79,6.252263069152832],[125,245,64,6.180628776550293],[125,245,65,6.183351516723633],[125,245,66,6.178456783294678],[125,245,67,6.171987056732178],[125,245,68,6.168274402618408],[125,245,69,6.170851230621338],[125,245,70,6.180665969848633],[125,245,71,6.198060512542725],[125,245,72,6.2252516746521],[125,245,73,6.249039173126221],[125,245,74,6.258728981018066],[125,245,75,6.262077331542969],[125,245,76,6.263006687164307],[125,245,77,6.261656761169434],[125,245,78,6.2584991455078125],[125,245,79,6.252263069152832],[125,246,64,6.180628776550293],[125,246,65,6.183351516723633],[125,246,66,6.178456783294678],[125,246,67,6.171987056732178],[125,246,68,6.168274402618408],[125,246,69,6.170851230621338],[125,246,70,6.180665969848633],[125,246,71,6.198060512542725],[125,246,72,6.2252516746521],[125,246,73,6.249039173126221],[125,246,74,6.258728981018066],[125,246,75,6.262077331542969],[125,246,76,6.263006687164307],[125,246,77,6.261656761169434],[125,246,78,6.2584991455078125],[125,246,79,6.252263069152832],[125,247,64,6.180628776550293],[125,247,65,6.183351516723633],[125,247,66,6.178456783294678],[125,247,67,6.171987056732178],[125,247,68,6.168274402618408],[125,247,69,6.170851230621338],[125,247,70,6.180665969848633],[125,247,71,6.198060512542725],[125,247,72,6.2252516746521],[125,247,73,6.249039173126221],[125,247,74,6.258728981018066],[125,247,75,6.262077331542969],[125,247,76,6.263006687164307],[125,247,77,6.261656761169434],[125,247,78,6.2584991455078125],[125,247,79,6.252263069152832],[125,248,64,6.180628776550293],[125,248,65,6.183351516723633],[125,248,66,6.178456783294678],[125,248,67,6.171987056732178],[125,248,68,6.168274402618408],[125,248,69,6.170851230621338],[125,248,70,6.180665969848633],[125,248,71,6.198060512542725],[125,248,72,6.2252516746521],[125,248,73,6.249039173126221],[125,248,74,6.258728981018066],[125,248,75,6.262077331542969],[125,248,76,6.263006687164307],[125,248,77,6.261656761169434],[125,248,78,6.2584991455078125],[125,248,79,6.252263069152832],[125,249,64,6.180628776550293],[125,249,65,6.183351516723633],[125,249,66,6.178456783294678],[125,249,67,6.171987056732178],[125,249,68,6.168274402618408],[125,249,69,6.170851230621338],[125,249,70,6.180665969848633],[125,249,71,6.198060512542725],[125,249,72,6.2252516746521],[125,249,73,6.249039173126221],[125,249,74,6.258728981018066],[125,249,75,6.262077331542969],[125,249,76,6.263006687164307],[125,249,77,6.261656761169434],[125,249,78,6.2584991455078125],[125,249,79,6.252263069152832],[125,250,64,6.180628776550293],[125,250,65,6.183351516723633],[125,250,66,6.178456783294678],[125,250,67,6.171987056732178],[125,250,68,6.168274402618408],[125,250,69,6.170851230621338],[125,250,70,6.180665969848633],[125,250,71,6.198060512542725],[125,250,72,6.2252516746521],[125,250,73,6.249039173126221],[125,250,74,6.258728981018066],[125,250,75,6.262077331542969],[125,250,76,6.263006687164307],[125,250,77,6.261656761169434],[125,250,78,6.2584991455078125],[125,250,79,6.252263069152832],[125,251,64,6.180628776550293],[125,251,65,6.183351516723633],[125,251,66,6.178456783294678],[125,251,67,6.171987056732178],[125,251,68,6.168274402618408],[125,251,69,6.170851230621338],[125,251,70,6.180665969848633],[125,251,71,6.198060512542725],[125,251,72,6.2252516746521],[125,251,73,6.249039173126221],[125,251,74,6.258728981018066],[125,251,75,6.262077331542969],[125,251,76,6.263006687164307],[125,251,77,6.261656761169434],[125,251,78,6.2584991455078125],[125,251,79,6.252263069152832],[125,252,64,6.180628776550293],[125,252,65,6.183351516723633],[125,252,66,6.178456783294678],[125,252,67,6.171987056732178],[125,252,68,6.168274402618408],[125,252,69,6.170851230621338],[125,252,70,6.180665969848633],[125,252,71,6.198060512542725],[125,252,72,6.2252516746521],[125,252,73,6.249039173126221],[125,252,74,6.258728981018066],[125,252,75,6.262077331542969],[125,252,76,6.263006687164307],[125,252,77,6.261656761169434],[125,252,78,6.2584991455078125],[125,252,79,6.252263069152832],[125,253,64,6.180628776550293],[125,253,65,6.183351516723633],[125,253,66,6.178456783294678],[125,253,67,6.171987056732178],[125,253,68,6.168274402618408],[125,253,69,6.170851230621338],[125,253,70,6.180665969848633],[125,253,71,6.198060512542725],[125,253,72,6.2252516746521],[125,253,73,6.249039173126221],[125,253,74,6.258728981018066],[125,253,75,6.262077331542969],[125,253,76,6.263006687164307],[125,253,77,6.261656761169434],[125,253,78,6.2584991455078125],[125,253,79,6.252263069152832],[125,254,64,6.180628776550293],[125,254,65,6.183351516723633],[125,254,66,6.178456783294678],[125,254,67,6.171987056732178],[125,254,68,6.168274402618408],[125,254,69,6.170851230621338],[125,254,70,6.180665969848633],[125,254,71,6.198060512542725],[125,254,72,6.2252516746521],[125,254,73,6.249039173126221],[125,254,74,6.258728981018066],[125,254,75,6.262077331542969],[125,254,76,6.263006687164307],[125,254,77,6.261656761169434],[125,254,78,6.2584991455078125],[125,254,79,6.252263069152832],[125,255,64,6.180628776550293],[125,255,65,6.183351516723633],[125,255,66,6.178456783294678],[125,255,67,6.171987056732178],[125,255,68,6.168274402618408],[125,255,69,6.170851230621338],[125,255,70,6.180665969848633],[125,255,71,6.198060512542725],[125,255,72,6.2252516746521],[125,255,73,6.249039173126221],[125,255,74,6.258728981018066],[125,255,75,6.262077331542969],[125,255,76,6.263006687164307],[125,255,77,6.261656761169434],[125,255,78,6.2584991455078125],[125,255,79,6.252263069152832],[125,256,64,6.180628776550293],[125,256,65,6.183351516723633],[125,256,66,6.178456783294678],[125,256,67,6.171987056732178],[125,256,68,6.168274402618408],[125,256,69,6.170851230621338],[125,256,70,6.180665969848633],[125,256,71,6.198060512542725],[125,256,72,6.2252516746521],[125,256,73,6.249039173126221],[125,256,74,6.258728981018066],[125,256,75,6.262077331542969],[125,256,76,6.263006687164307],[125,256,77,6.261656761169434],[125,256,78,6.2584991455078125],[125,256,79,6.252263069152832],[125,257,64,6.180628776550293],[125,257,65,6.183351516723633],[125,257,66,6.178456783294678],[125,257,67,6.171987056732178],[125,257,68,6.168274402618408],[125,257,69,6.170851230621338],[125,257,70,6.180665969848633],[125,257,71,6.198060512542725],[125,257,72,6.2252516746521],[125,257,73,6.249039173126221],[125,257,74,6.258728981018066],[125,257,75,6.262077331542969],[125,257,76,6.263006687164307],[125,257,77,6.261656761169434],[125,257,78,6.2584991455078125],[125,257,79,6.252263069152832],[125,258,64,6.180628776550293],[125,258,65,6.183351516723633],[125,258,66,6.178456783294678],[125,258,67,6.171987056732178],[125,258,68,6.168274402618408],[125,258,69,6.170851230621338],[125,258,70,6.180665969848633],[125,258,71,6.198060512542725],[125,258,72,6.2252516746521],[125,258,73,6.249039173126221],[125,258,74,6.258728981018066],[125,258,75,6.262077331542969],[125,258,76,6.263006687164307],[125,258,77,6.261656761169434],[125,258,78,6.2584991455078125],[125,258,79,6.252263069152832],[125,259,64,6.180628776550293],[125,259,65,6.183351516723633],[125,259,66,6.178456783294678],[125,259,67,6.171987056732178],[125,259,68,6.168274402618408],[125,259,69,6.170851230621338],[125,259,70,6.180665969848633],[125,259,71,6.198060512542725],[125,259,72,6.2252516746521],[125,259,73,6.249039173126221],[125,259,74,6.258728981018066],[125,259,75,6.262077331542969],[125,259,76,6.263006687164307],[125,259,77,6.261656761169434],[125,259,78,6.2584991455078125],[125,259,79,6.252263069152832],[125,260,64,6.180628776550293],[125,260,65,6.183351516723633],[125,260,66,6.178456783294678],[125,260,67,6.171987056732178],[125,260,68,6.168274402618408],[125,260,69,6.170851230621338],[125,260,70,6.180665969848633],[125,260,71,6.198060512542725],[125,260,72,6.2252516746521],[125,260,73,6.249039173126221],[125,260,74,6.258728981018066],[125,260,75,6.262077331542969],[125,260,76,6.263006687164307],[125,260,77,6.261656761169434],[125,260,78,6.2584991455078125],[125,260,79,6.252263069152832],[125,261,64,6.180628776550293],[125,261,65,6.183351516723633],[125,261,66,6.178456783294678],[125,261,67,6.171987056732178],[125,261,68,6.168274402618408],[125,261,69,6.170851230621338],[125,261,70,6.180665969848633],[125,261,71,6.198060512542725],[125,261,72,6.2252516746521],[125,261,73,6.249039173126221],[125,261,74,6.258728981018066],[125,261,75,6.262077331542969],[125,261,76,6.263006687164307],[125,261,77,6.261656761169434],[125,261,78,6.2584991455078125],[125,261,79,6.252263069152832],[125,262,64,6.180628776550293],[125,262,65,6.183351516723633],[125,262,66,6.178456783294678],[125,262,67,6.171987056732178],[125,262,68,6.168274402618408],[125,262,69,6.170851230621338],[125,262,70,6.180665969848633],[125,262,71,6.198060512542725],[125,262,72,6.2252516746521],[125,262,73,6.249039173126221],[125,262,74,6.258728981018066],[125,262,75,6.262077331542969],[125,262,76,6.263006687164307],[125,262,77,6.261656761169434],[125,262,78,6.2584991455078125],[125,262,79,6.252263069152832],[125,263,64,6.180628776550293],[125,263,65,6.183351516723633],[125,263,66,6.178456783294678],[125,263,67,6.171987056732178],[125,263,68,6.168274402618408],[125,263,69,6.170851230621338],[125,263,70,6.180665969848633],[125,263,71,6.198060512542725],[125,263,72,6.2252516746521],[125,263,73,6.249039173126221],[125,263,74,6.258728981018066],[125,263,75,6.262077331542969],[125,263,76,6.263006687164307],[125,263,77,6.261656761169434],[125,263,78,6.2584991455078125],[125,263,79,6.252263069152832],[125,264,64,6.180628776550293],[125,264,65,6.183351516723633],[125,264,66,6.178456783294678],[125,264,67,6.171987056732178],[125,264,68,6.168274402618408],[125,264,69,6.170851230621338],[125,264,70,6.180665969848633],[125,264,71,6.198060512542725],[125,264,72,6.2252516746521],[125,264,73,6.249039173126221],[125,264,74,6.258728981018066],[125,264,75,6.262077331542969],[125,264,76,6.263006687164307],[125,264,77,6.261656761169434],[125,264,78,6.2584991455078125],[125,264,79,6.252263069152832],[125,265,64,6.180628776550293],[125,265,65,6.183351516723633],[125,265,66,6.178456783294678],[125,265,67,6.171987056732178],[125,265,68,6.168274402618408],[125,265,69,6.170851230621338],[125,265,70,6.180665969848633],[125,265,71,6.198060512542725],[125,265,72,6.2252516746521],[125,265,73,6.249039173126221],[125,265,74,6.258728981018066],[125,265,75,6.262077331542969],[125,265,76,6.263006687164307],[125,265,77,6.261656761169434],[125,265,78,6.2584991455078125],[125,265,79,6.252263069152832],[125,266,64,6.180628776550293],[125,266,65,6.183351516723633],[125,266,66,6.178456783294678],[125,266,67,6.171987056732178],[125,266,68,6.168274402618408],[125,266,69,6.170851230621338],[125,266,70,6.180665969848633],[125,266,71,6.198060512542725],[125,266,72,6.2252516746521],[125,266,73,6.249039173126221],[125,266,74,6.258728981018066],[125,266,75,6.262077331542969],[125,266,76,6.263006687164307],[125,266,77,6.261656761169434],[125,266,78,6.2584991455078125],[125,266,79,6.252263069152832],[125,267,64,6.180628776550293],[125,267,65,6.183351516723633],[125,267,66,6.178456783294678],[125,267,67,6.171987056732178],[125,267,68,6.168274402618408],[125,267,69,6.170851230621338],[125,267,70,6.180665969848633],[125,267,71,6.198060512542725],[125,267,72,6.2252516746521],[125,267,73,6.249039173126221],[125,267,74,6.258728981018066],[125,267,75,6.262077331542969],[125,267,76,6.263006687164307],[125,267,77,6.261656761169434],[125,267,78,6.2584991455078125],[125,267,79,6.252263069152832],[125,268,64,6.180628776550293],[125,268,65,6.183351516723633],[125,268,66,6.178456783294678],[125,268,67,6.171987056732178],[125,268,68,6.168274402618408],[125,268,69,6.170851230621338],[125,268,70,6.180665969848633],[125,268,71,6.198060512542725],[125,268,72,6.2252516746521],[125,268,73,6.249039173126221],[125,268,74,6.258728981018066],[125,268,75,6.262077331542969],[125,268,76,6.263006687164307],[125,268,77,6.261656761169434],[125,268,78,6.2584991455078125],[125,268,79,6.252263069152832],[125,269,64,6.180628776550293],[125,269,65,6.183351516723633],[125,269,66,6.178456783294678],[125,269,67,6.171987056732178],[125,269,68,6.168274402618408],[125,269,69,6.170851230621338],[125,269,70,6.180665969848633],[125,269,71,6.198060512542725],[125,269,72,6.2252516746521],[125,269,73,6.249039173126221],[125,269,74,6.258728981018066],[125,269,75,6.262077331542969],[125,269,76,6.263006687164307],[125,269,77,6.261656761169434],[125,269,78,6.2584991455078125],[125,269,79,6.252263069152832],[125,270,64,6.180628776550293],[125,270,65,6.183351516723633],[125,270,66,6.178456783294678],[125,270,67,6.171987056732178],[125,270,68,6.168274402618408],[125,270,69,6.170851230621338],[125,270,70,6.180665969848633],[125,270,71,6.198060512542725],[125,270,72,6.2252516746521],[125,270,73,6.249039173126221],[125,270,74,6.258728981018066],[125,270,75,6.262077331542969],[125,270,76,6.263006687164307],[125,270,77,6.261656761169434],[125,270,78,6.2584991455078125],[125,270,79,6.252263069152832],[125,271,64,6.180628776550293],[125,271,65,6.183351516723633],[125,271,66,6.178456783294678],[125,271,67,6.171987056732178],[125,271,68,6.168274402618408],[125,271,69,6.170851230621338],[125,271,70,6.180665969848633],[125,271,71,6.198060512542725],[125,271,72,6.2252516746521],[125,271,73,6.249039173126221],[125,271,74,6.258728981018066],[125,271,75,6.262077331542969],[125,271,76,6.263006687164307],[125,271,77,6.261656761169434],[125,271,78,6.2584991455078125],[125,271,79,6.252263069152832],[125,272,64,6.180628776550293],[125,272,65,6.183351516723633],[125,272,66,6.178456783294678],[125,272,67,6.171987056732178],[125,272,68,6.168274402618408],[125,272,69,6.170851230621338],[125,272,70,6.180665969848633],[125,272,71,6.198060512542725],[125,272,72,6.2252516746521],[125,272,73,6.249039173126221],[125,272,74,6.258728981018066],[125,272,75,6.262077331542969],[125,272,76,6.263006687164307],[125,272,77,6.261656761169434],[125,272,78,6.2584991455078125],[125,272,79,6.252263069152832],[125,273,64,6.180628776550293],[125,273,65,6.183351516723633],[125,273,66,6.178456783294678],[125,273,67,6.171987056732178],[125,273,68,6.168274402618408],[125,273,69,6.170851230621338],[125,273,70,6.180665969848633],[125,273,71,6.198060512542725],[125,273,72,6.2252516746521],[125,273,73,6.249039173126221],[125,273,74,6.258728981018066],[125,273,75,6.262077331542969],[125,273,76,6.263006687164307],[125,273,77,6.261656761169434],[125,273,78,6.2584991455078125],[125,273,79,6.252263069152832],[125,274,64,6.180628776550293],[125,274,65,6.183351516723633],[125,274,66,6.178456783294678],[125,274,67,6.171987056732178],[125,274,68,6.168274402618408],[125,274,69,6.170851230621338],[125,274,70,6.180665969848633],[125,274,71,6.198060512542725],[125,274,72,6.2252516746521],[125,274,73,6.249039173126221],[125,274,74,6.258728981018066],[125,274,75,6.262077331542969],[125,274,76,6.263006687164307],[125,274,77,6.261656761169434],[125,274,78,6.2584991455078125],[125,274,79,6.252263069152832],[125,275,64,6.180628776550293],[125,275,65,6.183351516723633],[125,275,66,6.178456783294678],[125,275,67,6.171987056732178],[125,275,68,6.168274402618408],[125,275,69,6.170851230621338],[125,275,70,6.180665969848633],[125,275,71,6.198060512542725],[125,275,72,6.2252516746521],[125,275,73,6.249039173126221],[125,275,74,6.258728981018066],[125,275,75,6.262077331542969],[125,275,76,6.263006687164307],[125,275,77,6.261656761169434],[125,275,78,6.2584991455078125],[125,275,79,6.252263069152832],[125,276,64,6.180628776550293],[125,276,65,6.183351516723633],[125,276,66,6.178456783294678],[125,276,67,6.171987056732178],[125,276,68,6.168274402618408],[125,276,69,6.170851230621338],[125,276,70,6.180665969848633],[125,276,71,6.198060512542725],[125,276,72,6.2252516746521],[125,276,73,6.249039173126221],[125,276,74,6.258728981018066],[125,276,75,6.262077331542969],[125,276,76,6.263006687164307],[125,276,77,6.261656761169434],[125,276,78,6.2584991455078125],[125,276,79,6.252263069152832],[125,277,64,6.180628776550293],[125,277,65,6.183351516723633],[125,277,66,6.178456783294678],[125,277,67,6.171987056732178],[125,277,68,6.168274402618408],[125,277,69,6.170851230621338],[125,277,70,6.180665969848633],[125,277,71,6.198060512542725],[125,277,72,6.2252516746521],[125,277,73,6.249039173126221],[125,277,74,6.258728981018066],[125,277,75,6.262077331542969],[125,277,76,6.263006687164307],[125,277,77,6.261656761169434],[125,277,78,6.2584991455078125],[125,277,79,6.252263069152832],[125,278,64,6.180628776550293],[125,278,65,6.183351516723633],[125,278,66,6.178456783294678],[125,278,67,6.171987056732178],[125,278,68,6.168274402618408],[125,278,69,6.170851230621338],[125,278,70,6.180665969848633],[125,278,71,6.198060512542725],[125,278,72,6.2252516746521],[125,278,73,6.249039173126221],[125,278,74,6.258728981018066],[125,278,75,6.262077331542969],[125,278,76,6.263006687164307],[125,278,77,6.261656761169434],[125,278,78,6.2584991455078125],[125,278,79,6.252263069152832],[125,279,64,6.180628776550293],[125,279,65,6.183351516723633],[125,279,66,6.178456783294678],[125,279,67,6.171987056732178],[125,279,68,6.168274402618408],[125,279,69,6.170851230621338],[125,279,70,6.180665969848633],[125,279,71,6.198060512542725],[125,279,72,6.2252516746521],[125,279,73,6.249039173126221],[125,279,74,6.258728981018066],[125,279,75,6.262077331542969],[125,279,76,6.263006687164307],[125,279,77,6.261656761169434],[125,279,78,6.2584991455078125],[125,279,79,6.252263069152832],[125,280,64,6.180628776550293],[125,280,65,6.183351516723633],[125,280,66,6.178456783294678],[125,280,67,6.171987056732178],[125,280,68,6.168274402618408],[125,280,69,6.170851230621338],[125,280,70,6.180665969848633],[125,280,71,6.198060512542725],[125,280,72,6.2252516746521],[125,280,73,6.249039173126221],[125,280,74,6.258728981018066],[125,280,75,6.262077331542969],[125,280,76,6.263006687164307],[125,280,77,6.261656761169434],[125,280,78,6.2584991455078125],[125,280,79,6.252263069152832],[125,281,64,6.180628776550293],[125,281,65,6.183351516723633],[125,281,66,6.178456783294678],[125,281,67,6.171987056732178],[125,281,68,6.168274402618408],[125,281,69,6.170851230621338],[125,281,70,6.180665969848633],[125,281,71,6.198060512542725],[125,281,72,6.2252516746521],[125,281,73,6.249039173126221],[125,281,74,6.258728981018066],[125,281,75,6.262077331542969],[125,281,76,6.263006687164307],[125,281,77,6.261656761169434],[125,281,78,6.2584991455078125],[125,281,79,6.252263069152832],[125,282,64,6.180628776550293],[125,282,65,6.183351516723633],[125,282,66,6.178456783294678],[125,282,67,6.171987056732178],[125,282,68,6.168274402618408],[125,282,69,6.170851230621338],[125,282,70,6.180665969848633],[125,282,71,6.198060512542725],[125,282,72,6.2252516746521],[125,282,73,6.249039173126221],[125,282,74,6.258728981018066],[125,282,75,6.262077331542969],[125,282,76,6.263006687164307],[125,282,77,6.261656761169434],[125,282,78,6.2584991455078125],[125,282,79,6.252263069152832],[125,283,64,6.180628776550293],[125,283,65,6.183351516723633],[125,283,66,6.178456783294678],[125,283,67,6.171987056732178],[125,283,68,6.168274402618408],[125,283,69,6.170851230621338],[125,283,70,6.180665969848633],[125,283,71,6.198060512542725],[125,283,72,6.2252516746521],[125,283,73,6.249039173126221],[125,283,74,6.258728981018066],[125,283,75,6.262077331542969],[125,283,76,6.263006687164307],[125,283,77,6.261656761169434],[125,283,78,6.2584991455078125],[125,283,79,6.252263069152832],[125,284,64,6.180628776550293],[125,284,65,6.183351516723633],[125,284,66,6.178456783294678],[125,284,67,6.171987056732178],[125,284,68,6.168274402618408],[125,284,69,6.170851230621338],[125,284,70,6.180665969848633],[125,284,71,6.198060512542725],[125,284,72,6.2252516746521],[125,284,73,6.249039173126221],[125,284,74,6.258728981018066],[125,284,75,6.262077331542969],[125,284,76,6.263006687164307],[125,284,77,6.261656761169434],[125,284,78,6.2584991455078125],[125,284,79,6.252263069152832],[125,285,64,6.180628776550293],[125,285,65,6.183351516723633],[125,285,66,6.178456783294678],[125,285,67,6.171987056732178],[125,285,68,6.168274402618408],[125,285,69,6.170851230621338],[125,285,70,6.180665969848633],[125,285,71,6.198060512542725],[125,285,72,6.2252516746521],[125,285,73,6.249039173126221],[125,285,74,6.258728981018066],[125,285,75,6.262077331542969],[125,285,76,6.263006687164307],[125,285,77,6.261656761169434],[125,285,78,6.2584991455078125],[125,285,79,6.252263069152832],[125,286,64,6.180628776550293],[125,286,65,6.183351516723633],[125,286,66,6.178456783294678],[125,286,67,6.171987056732178],[125,286,68,6.168274402618408],[125,286,69,6.170851230621338],[125,286,70,6.180665969848633],[125,286,71,6.198060512542725],[125,286,72,6.2252516746521],[125,286,73,6.249039173126221],[125,286,74,6.258728981018066],[125,286,75,6.262077331542969],[125,286,76,6.263006687164307],[125,286,77,6.261656761169434],[125,286,78,6.2584991455078125],[125,286,79,6.252263069152832],[125,287,64,6.180628776550293],[125,287,65,6.183351516723633],[125,287,66,6.178456783294678],[125,287,67,6.171987056732178],[125,287,68,6.168274402618408],[125,287,69,6.170851230621338],[125,287,70,6.180665969848633],[125,287,71,6.198060512542725],[125,287,72,6.2252516746521],[125,287,73,6.249039173126221],[125,287,74,6.258728981018066],[125,287,75,6.262077331542969],[125,287,76,6.263006687164307],[125,287,77,6.261656761169434],[125,287,78,6.2584991455078125],[125,287,79,6.252263069152832],[125,288,64,6.180628776550293],[125,288,65,6.183351516723633],[125,288,66,6.178456783294678],[125,288,67,6.171987056732178],[125,288,68,6.168274402618408],[125,288,69,6.170851230621338],[125,288,70,6.180665969848633],[125,288,71,6.198060512542725],[125,288,72,6.2252516746521],[125,288,73,6.249039173126221],[125,288,74,6.258728981018066],[125,288,75,6.262077331542969],[125,288,76,6.263006687164307],[125,288,77,6.261656761169434],[125,288,78,6.2584991455078125],[125,288,79,6.252263069152832],[125,289,64,6.180628776550293],[125,289,65,6.183351516723633],[125,289,66,6.178456783294678],[125,289,67,6.171987056732178],[125,289,68,6.168274402618408],[125,289,69,6.170851230621338],[125,289,70,6.180665969848633],[125,289,71,6.198060512542725],[125,289,72,6.2252516746521],[125,289,73,6.249039173126221],[125,289,74,6.258728981018066],[125,289,75,6.262077331542969],[125,289,76,6.263006687164307],[125,289,77,6.261656761169434],[125,289,78,6.2584991455078125],[125,289,79,6.252263069152832],[125,290,64,6.180628776550293],[125,290,65,6.183351516723633],[125,290,66,6.178456783294678],[125,290,67,6.171987056732178],[125,290,68,6.168274402618408],[125,290,69,6.170851230621338],[125,290,70,6.180665969848633],[125,290,71,6.198060512542725],[125,290,72,6.2252516746521],[125,290,73,6.249039173126221],[125,290,74,6.258728981018066],[125,290,75,6.262077331542969],[125,290,76,6.263006687164307],[125,290,77,6.261656761169434],[125,290,78,6.2584991455078125],[125,290,79,6.252263069152832],[125,291,64,6.180628776550293],[125,291,65,6.183351516723633],[125,291,66,6.178456783294678],[125,291,67,6.171987056732178],[125,291,68,6.168274402618408],[125,291,69,6.170851230621338],[125,291,70,6.180665969848633],[125,291,71,6.198060512542725],[125,291,72,6.2252516746521],[125,291,73,6.249039173126221],[125,291,74,6.258728981018066],[125,291,75,6.262077331542969],[125,291,76,6.263006687164307],[125,291,77,6.261656761169434],[125,291,78,6.2584991455078125],[125,291,79,6.252263069152832],[125,292,64,6.180628776550293],[125,292,65,6.183351516723633],[125,292,66,6.178456783294678],[125,292,67,6.171987056732178],[125,292,68,6.168274402618408],[125,292,69,6.170851230621338],[125,292,70,6.180665969848633],[125,292,71,6.198060512542725],[125,292,72,6.2252516746521],[125,292,73,6.249039173126221],[125,292,74,6.258728981018066],[125,292,75,6.262077331542969],[125,292,76,6.263006687164307],[125,292,77,6.261656761169434],[125,292,78,6.2584991455078125],[125,292,79,6.252263069152832],[125,293,64,6.180628776550293],[125,293,65,6.183351516723633],[125,293,66,6.178456783294678],[125,293,67,6.171987056732178],[125,293,68,6.168274402618408],[125,293,69,6.170851230621338],[125,293,70,6.180665969848633],[125,293,71,6.198060512542725],[125,293,72,6.2252516746521],[125,293,73,6.249039173126221],[125,293,74,6.258728981018066],[125,293,75,6.262077331542969],[125,293,76,6.263006687164307],[125,293,77,6.261656761169434],[125,293,78,6.2584991455078125],[125,293,79,6.252263069152832],[125,294,64,6.180628776550293],[125,294,65,6.183351516723633],[125,294,66,6.178456783294678],[125,294,67,6.171987056732178],[125,294,68,6.168274402618408],[125,294,69,6.170851230621338],[125,294,70,6.180665969848633],[125,294,71,6.198060512542725],[125,294,72,6.2252516746521],[125,294,73,6.249039173126221],[125,294,74,6.258728981018066],[125,294,75,6.262077331542969],[125,294,76,6.263006687164307],[125,294,77,6.261656761169434],[125,294,78,6.2584991455078125],[125,294,79,6.252263069152832],[125,295,64,6.180628776550293],[125,295,65,6.183351516723633],[125,295,66,6.178456783294678],[125,295,67,6.171987056732178],[125,295,68,6.168274402618408],[125,295,69,6.170851230621338],[125,295,70,6.180665969848633],[125,295,71,6.198060512542725],[125,295,72,6.2252516746521],[125,295,73,6.249039173126221],[125,295,74,6.258728981018066],[125,295,75,6.262077331542969],[125,295,76,6.263006687164307],[125,295,77,6.261656761169434],[125,295,78,6.2584991455078125],[125,295,79,6.252263069152832],[125,296,64,6.180628776550293],[125,296,65,6.183351516723633],[125,296,66,6.178456783294678],[125,296,67,6.171987056732178],[125,296,68,6.168274402618408],[125,296,69,6.170851230621338],[125,296,70,6.180665969848633],[125,296,71,6.198060512542725],[125,296,72,6.2252516746521],[125,296,73,6.249039173126221],[125,296,74,6.258728981018066],[125,296,75,6.262077331542969],[125,296,76,6.263006687164307],[125,296,77,6.261656761169434],[125,296,78,6.2584991455078125],[125,296,79,6.252263069152832],[125,297,64,6.180628776550293],[125,297,65,6.183351516723633],[125,297,66,6.178456783294678],[125,297,67,6.171987056732178],[125,297,68,6.168274402618408],[125,297,69,6.170851230621338],[125,297,70,6.180665969848633],[125,297,71,6.198060512542725],[125,297,72,6.2252516746521],[125,297,73,6.249039173126221],[125,297,74,6.258728981018066],[125,297,75,6.262077331542969],[125,297,76,6.263006687164307],[125,297,77,6.261656761169434],[125,297,78,6.2584991455078125],[125,297,79,6.252263069152832],[125,298,64,6.180628776550293],[125,298,65,6.183351516723633],[125,298,66,6.178456783294678],[125,298,67,6.171987056732178],[125,298,68,6.168274402618408],[125,298,69,6.170851230621338],[125,298,70,6.180665969848633],[125,298,71,6.198060512542725],[125,298,72,6.2252516746521],[125,298,73,6.249039173126221],[125,298,74,6.258728981018066],[125,298,75,6.262077331542969],[125,298,76,6.263006687164307],[125,298,77,6.261656761169434],[125,298,78,6.2584991455078125],[125,298,79,6.252263069152832],[125,299,64,6.180628776550293],[125,299,65,6.183351516723633],[125,299,66,6.178456783294678],[125,299,67,6.171987056732178],[125,299,68,6.168274402618408],[125,299,69,6.170851230621338],[125,299,70,6.180665969848633],[125,299,71,6.198060512542725],[125,299,72,6.2252516746521],[125,299,73,6.249039173126221],[125,299,74,6.258728981018066],[125,299,75,6.262077331542969],[125,299,76,6.263006687164307],[125,299,77,6.261656761169434],[125,299,78,6.2584991455078125],[125,299,79,6.252263069152832],[125,300,64,6.180628776550293],[125,300,65,6.183351516723633],[125,300,66,6.178456783294678],[125,300,67,6.171987056732178],[125,300,68,6.168274402618408],[125,300,69,6.170851230621338],[125,300,70,6.180665969848633],[125,300,71,6.198060512542725],[125,300,72,6.2252516746521],[125,300,73,6.249039173126221],[125,300,74,6.258728981018066],[125,300,75,6.262077331542969],[125,300,76,6.263006687164307],[125,300,77,6.261656761169434],[125,300,78,6.2584991455078125],[125,300,79,6.252263069152832],[125,301,64,6.180628776550293],[125,301,65,6.183351516723633],[125,301,66,6.178456783294678],[125,301,67,6.171987056732178],[125,301,68,6.168274402618408],[125,301,69,6.170851230621338],[125,301,70,6.180665969848633],[125,301,71,6.198060512542725],[125,301,72,6.2252516746521],[125,301,73,6.249039173126221],[125,301,74,6.258728981018066],[125,301,75,6.262077331542969],[125,301,76,6.263006687164307],[125,301,77,6.261656761169434],[125,301,78,6.2584991455078125],[125,301,79,6.252263069152832],[125,302,64,6.180628776550293],[125,302,65,6.183351516723633],[125,302,66,6.178456783294678],[125,302,67,6.171987056732178],[125,302,68,6.168274402618408],[125,302,69,6.170851230621338],[125,302,70,6.180665969848633],[125,302,71,6.198060512542725],[125,302,72,6.2252516746521],[125,302,73,6.249039173126221],[125,302,74,6.258728981018066],[125,302,75,6.262077331542969],[125,302,76,6.263006687164307],[125,302,77,6.261656761169434],[125,302,78,6.2584991455078125],[125,302,79,6.252263069152832],[125,303,64,6.180628776550293],[125,303,65,6.183351516723633],[125,303,66,6.178456783294678],[125,303,67,6.171987056732178],[125,303,68,6.168274402618408],[125,303,69,6.170851230621338],[125,303,70,6.180665969848633],[125,303,71,6.198060512542725],[125,303,72,6.2252516746521],[125,303,73,6.249039173126221],[125,303,74,6.258728981018066],[125,303,75,6.262077331542969],[125,303,76,6.263006687164307],[125,303,77,6.261656761169434],[125,303,78,6.2584991455078125],[125,303,79,6.252263069152832],[125,304,64,6.180628776550293],[125,304,65,6.183351516723633],[125,304,66,6.178456783294678],[125,304,67,6.171987056732178],[125,304,68,6.168274402618408],[125,304,69,6.170851230621338],[125,304,70,6.180665969848633],[125,304,71,6.198060512542725],[125,304,72,6.2252516746521],[125,304,73,6.249039173126221],[125,304,74,6.258728981018066],[125,304,75,6.262077331542969],[125,304,76,6.263006687164307],[125,304,77,6.261656761169434],[125,304,78,6.2584991455078125],[125,304,79,6.252263069152832],[125,305,64,6.180628776550293],[125,305,65,6.183351516723633],[125,305,66,6.178456783294678],[125,305,67,6.171987056732178],[125,305,68,6.168274402618408],[125,305,69,6.170851230621338],[125,305,70,6.180665969848633],[125,305,71,6.198060512542725],[125,305,72,6.2252516746521],[125,305,73,6.249039173126221],[125,305,74,6.258728981018066],[125,305,75,6.262077331542969],[125,305,76,6.263006687164307],[125,305,77,6.261656761169434],[125,305,78,6.2584991455078125],[125,305,79,6.252263069152832],[125,306,64,6.180628776550293],[125,306,65,6.183351516723633],[125,306,66,6.178456783294678],[125,306,67,6.171987056732178],[125,306,68,6.168274402618408],[125,306,69,6.170851230621338],[125,306,70,6.180665969848633],[125,306,71,6.198060512542725],[125,306,72,6.2252516746521],[125,306,73,6.249039173126221],[125,306,74,6.258728981018066],[125,306,75,6.262077331542969],[125,306,76,6.263006687164307],[125,306,77,6.261656761169434],[125,306,78,6.2584991455078125],[125,306,79,6.252263069152832],[125,307,64,6.180628776550293],[125,307,65,6.183351516723633],[125,307,66,6.178456783294678],[125,307,67,6.171987056732178],[125,307,68,6.168274402618408],[125,307,69,6.170851230621338],[125,307,70,6.180665969848633],[125,307,71,6.198060512542725],[125,307,72,6.2252516746521],[125,307,73,6.249039173126221],[125,307,74,6.258728981018066],[125,307,75,6.262077331542969],[125,307,76,6.263006687164307],[125,307,77,6.261656761169434],[125,307,78,6.2584991455078125],[125,307,79,6.252263069152832],[125,308,64,6.180628776550293],[125,308,65,6.183351516723633],[125,308,66,6.178456783294678],[125,308,67,6.171987056732178],[125,308,68,6.168274402618408],[125,308,69,6.170851230621338],[125,308,70,6.180665969848633],[125,308,71,6.198060512542725],[125,308,72,6.2252516746521],[125,308,73,6.249039173126221],[125,308,74,6.258728981018066],[125,308,75,6.262077331542969],[125,308,76,6.263006687164307],[125,308,77,6.261656761169434],[125,308,78,6.2584991455078125],[125,308,79,6.252263069152832],[125,309,64,6.180628776550293],[125,309,65,6.183351516723633],[125,309,66,6.178456783294678],[125,309,67,6.171987056732178],[125,309,68,6.168274402618408],[125,309,69,6.170851230621338],[125,309,70,6.180665969848633],[125,309,71,6.198060512542725],[125,309,72,6.2252516746521],[125,309,73,6.249039173126221],[125,309,74,6.258728981018066],[125,309,75,6.262077331542969],[125,309,76,6.263006687164307],[125,309,77,6.261656761169434],[125,309,78,6.2584991455078125],[125,309,79,6.252263069152832],[125,310,64,6.180628776550293],[125,310,65,6.183351516723633],[125,310,66,6.178456783294678],[125,310,67,6.171987056732178],[125,310,68,6.168274402618408],[125,310,69,6.170851230621338],[125,310,70,6.180665969848633],[125,310,71,6.198060512542725],[125,310,72,6.2252516746521],[125,310,73,6.249039173126221],[125,310,74,6.258728981018066],[125,310,75,6.262077331542969],[125,310,76,6.263006687164307],[125,310,77,6.261656761169434],[125,310,78,6.2584991455078125],[125,310,79,6.252263069152832],[125,311,64,6.180628776550293],[125,311,65,6.183351516723633],[125,311,66,6.178456783294678],[125,311,67,6.171987056732178],[125,311,68,6.168274402618408],[125,311,69,6.170851230621338],[125,311,70,6.180665969848633],[125,311,71,6.198060512542725],[125,311,72,6.2252516746521],[125,311,73,6.249039173126221],[125,311,74,6.258728981018066],[125,311,75,6.262077331542969],[125,311,76,6.263006687164307],[125,311,77,6.261656761169434],[125,311,78,6.2584991455078125],[125,311,79,6.252263069152832],[125,312,64,6.180628776550293],[125,312,65,6.183351516723633],[125,312,66,6.178456783294678],[125,312,67,6.171987056732178],[125,312,68,6.168274402618408],[125,312,69,6.170851230621338],[125,312,70,6.180665969848633],[125,312,71,6.198060512542725],[125,312,72,6.2252516746521],[125,312,73,6.249039173126221],[125,312,74,6.258728981018066],[125,312,75,6.262077331542969],[125,312,76,6.263006687164307],[125,312,77,6.261656761169434],[125,312,78,6.2584991455078125],[125,312,79,6.252263069152832],[125,313,64,6.180628776550293],[125,313,65,6.183351516723633],[125,313,66,6.178456783294678],[125,313,67,6.171987056732178],[125,313,68,6.168274402618408],[125,313,69,6.170851230621338],[125,313,70,6.180665969848633],[125,313,71,6.198060512542725],[125,313,72,6.2252516746521],[125,313,73,6.249039173126221],[125,313,74,6.258728981018066],[125,313,75,6.262077331542969],[125,313,76,6.263006687164307],[125,313,77,6.261656761169434],[125,313,78,6.2584991455078125],[125,313,79,6.252263069152832],[125,314,64,6.180628776550293],[125,314,65,6.183351516723633],[125,314,66,6.178456783294678],[125,314,67,6.171987056732178],[125,314,68,6.168274402618408],[125,314,69,6.170851230621338],[125,314,70,6.180665969848633],[125,314,71,6.198060512542725],[125,314,72,6.2252516746521],[125,314,73,6.249039173126221],[125,314,74,6.258728981018066],[125,314,75,6.262077331542969],[125,314,76,6.263006687164307],[125,314,77,6.261656761169434],[125,314,78,6.2584991455078125],[125,314,79,6.252263069152832],[125,315,64,6.180628776550293],[125,315,65,6.183351516723633],[125,315,66,6.178456783294678],[125,315,67,6.171987056732178],[125,315,68,6.168274402618408],[125,315,69,6.170851230621338],[125,315,70,6.180665969848633],[125,315,71,6.198060512542725],[125,315,72,6.2252516746521],[125,315,73,6.249039173126221],[125,315,74,6.258728981018066],[125,315,75,6.262077331542969],[125,315,76,6.263006687164307],[125,315,77,6.261656761169434],[125,315,78,6.2584991455078125],[125,315,79,6.252263069152832],[125,316,64,6.180628776550293],[125,316,65,6.183351516723633],[125,316,66,6.178456783294678],[125,316,67,6.171987056732178],[125,316,68,6.168274402618408],[125,316,69,6.170851230621338],[125,316,70,6.180665969848633],[125,316,71,6.198060512542725],[125,316,72,6.2252516746521],[125,316,73,6.249039173126221],[125,316,74,6.258728981018066],[125,316,75,6.262077331542969],[125,316,76,6.263006687164307],[125,316,77,6.261656761169434],[125,316,78,6.2584991455078125],[125,316,79,6.252263069152832],[125,317,64,6.180628776550293],[125,317,65,6.183351516723633],[125,317,66,6.178456783294678],[125,317,67,6.171987056732178],[125,317,68,6.168274402618408],[125,317,69,6.170851230621338],[125,317,70,6.180665969848633],[125,317,71,6.198060512542725],[125,317,72,6.2252516746521],[125,317,73,6.249039173126221],[125,317,74,6.258728981018066],[125,317,75,6.262077331542969],[125,317,76,6.263006687164307],[125,317,77,6.261656761169434],[125,317,78,6.2584991455078125],[125,317,79,6.252263069152832],[125,318,64,6.180628776550293],[125,318,65,6.183351516723633],[125,318,66,6.178456783294678],[125,318,67,6.171987056732178],[125,318,68,6.168274402618408],[125,318,69,6.170851230621338],[125,318,70,6.180665969848633],[125,318,71,6.198060512542725],[125,318,72,6.2252516746521],[125,318,73,6.249039173126221],[125,318,74,6.258728981018066],[125,318,75,6.262077331542969],[125,318,76,6.263006687164307],[125,318,77,6.261656761169434],[125,318,78,6.2584991455078125],[125,318,79,6.252263069152832],[125,319,64,6.180628776550293],[125,319,65,6.183351516723633],[125,319,66,6.178456783294678],[125,319,67,6.171987056732178],[125,319,68,6.168274402618408],[125,319,69,6.170851230621338],[125,319,70,6.180665969848633],[125,319,71,6.198060512542725],[125,319,72,6.2252516746521],[125,319,73,6.249039173126221],[125,319,74,6.258728981018066],[125,319,75,6.262077331542969],[125,319,76,6.263006687164307],[125,319,77,6.261656761169434],[125,319,78,6.2584991455078125],[125,319,79,6.252263069152832],[126,-64,64,6.18121862411499],[126,-64,65,6.186306476593018],[126,-64,66,6.183719635009766],[126,-64,67,6.178966522216797],[126,-64,68,6.175511837005615],[126,-64,69,6.176268100738525],[126,-64,70,6.182623863220215],[126,-64,71,6.195735454559326],[126,-64,72,6.219391822814941],[126,-64,73,6.2439866065979],[126,-64,74,6.256223201751709],[126,-64,75,6.260167121887207],[126,-64,76,6.261189937591553],[126,-64,77,6.2600321769714355],[126,-64,78,6.256808280944824],[126,-64,79,6.2509446144104],[126,-63,64,6.18121862411499],[126,-63,65,6.186306476593018],[126,-63,66,6.183719635009766],[126,-63,67,6.178966522216797],[126,-63,68,6.175511837005615],[126,-63,69,6.176268100738525],[126,-63,70,6.182623863220215],[126,-63,71,6.195735454559326],[126,-63,72,6.219391822814941],[126,-63,73,6.2439866065979],[126,-63,74,6.256223201751709],[126,-63,75,6.260167121887207],[126,-63,76,6.261189937591553],[126,-63,77,6.2600321769714355],[126,-63,78,6.256808280944824],[126,-63,79,6.2509446144104],[126,-62,64,6.18121862411499],[126,-62,65,6.186306476593018],[126,-62,66,6.183719635009766],[126,-62,67,6.178966522216797],[126,-62,68,6.175511837005615],[126,-62,69,6.176268100738525],[126,-62,70,6.182623863220215],[126,-62,71,6.195735454559326],[126,-62,72,6.219391822814941],[126,-62,73,6.2439866065979],[126,-62,74,6.256223201751709],[126,-62,75,6.260167121887207],[126,-62,76,6.261189937591553],[126,-62,77,6.2600321769714355],[126,-62,78,6.256808280944824],[126,-62,79,6.2509446144104],[126,-61,64,6.18121862411499],[126,-61,65,6.186306476593018],[126,-61,66,6.183719635009766],[126,-61,67,6.178966522216797],[126,-61,68,6.175511837005615],[126,-61,69,6.176268100738525],[126,-61,70,6.182623863220215],[126,-61,71,6.195735454559326],[126,-61,72,6.219391822814941],[126,-61,73,6.2439866065979],[126,-61,74,6.256223201751709],[126,-61,75,6.260167121887207],[126,-61,76,6.261189937591553],[126,-61,77,6.2600321769714355],[126,-61,78,6.256808280944824],[126,-61,79,6.2509446144104],[126,-60,64,6.18121862411499],[126,-60,65,6.186306476593018],[126,-60,66,6.183719635009766],[126,-60,67,6.178966522216797],[126,-60,68,6.175511837005615],[126,-60,69,6.176268100738525],[126,-60,70,6.182623863220215],[126,-60,71,6.195735454559326],[126,-60,72,6.219391822814941],[126,-60,73,6.2439866065979],[126,-60,74,6.256223201751709],[126,-60,75,6.260167121887207],[126,-60,76,6.261189937591553],[126,-60,77,6.2600321769714355],[126,-60,78,6.256808280944824],[126,-60,79,6.2509446144104],[126,-59,64,6.18121862411499],[126,-59,65,6.186306476593018],[126,-59,66,6.183719635009766],[126,-59,67,6.178966522216797],[126,-59,68,6.175511837005615],[126,-59,69,6.176268100738525],[126,-59,70,6.182623863220215],[126,-59,71,6.195735454559326],[126,-59,72,6.219391822814941],[126,-59,73,6.2439866065979],[126,-59,74,6.256223201751709],[126,-59,75,6.260167121887207],[126,-59,76,6.261189937591553],[126,-59,77,6.2600321769714355],[126,-59,78,6.256808280944824],[126,-59,79,6.2509446144104],[126,-58,64,6.18121862411499],[126,-58,65,6.186306476593018],[126,-58,66,6.183719635009766],[126,-58,67,6.178966522216797],[126,-58,68,6.175511837005615],[126,-58,69,6.176268100738525],[126,-58,70,6.182623863220215],[126,-58,71,6.195735454559326],[126,-58,72,6.219391822814941],[126,-58,73,6.2439866065979],[126,-58,74,6.256223201751709],[126,-58,75,6.260167121887207],[126,-58,76,6.261189937591553],[126,-58,77,6.2600321769714355],[126,-58,78,6.256808280944824],[126,-58,79,6.2509446144104],[126,-57,64,6.18121862411499],[126,-57,65,6.186306476593018],[126,-57,66,6.183719635009766],[126,-57,67,6.178966522216797],[126,-57,68,6.175511837005615],[126,-57,69,6.176268100738525],[126,-57,70,6.182623863220215],[126,-57,71,6.195735454559326],[126,-57,72,6.219391822814941],[126,-57,73,6.2439866065979],[126,-57,74,6.256223201751709],[126,-57,75,6.260167121887207],[126,-57,76,6.261189937591553],[126,-57,77,6.2600321769714355],[126,-57,78,6.256808280944824],[126,-57,79,6.2509446144104],[126,-56,64,6.18121862411499],[126,-56,65,6.186306476593018],[126,-56,66,6.183719635009766],[126,-56,67,6.178966522216797],[126,-56,68,6.175511837005615],[126,-56,69,6.176268100738525],[126,-56,70,6.182623863220215],[126,-56,71,6.195735454559326],[126,-56,72,6.219391822814941],[126,-56,73,6.2439866065979],[126,-56,74,6.256223201751709],[126,-56,75,6.260167121887207],[126,-56,76,6.261189937591553],[126,-56,77,6.2600321769714355],[126,-56,78,6.256808280944824],[126,-56,79,6.2509446144104],[126,-55,64,6.18121862411499],[126,-55,65,6.186306476593018],[126,-55,66,6.183719635009766],[126,-55,67,6.178966522216797],[126,-55,68,6.175511837005615],[126,-55,69,6.176268100738525],[126,-55,70,6.182623863220215],[126,-55,71,6.195735454559326],[126,-55,72,6.219391822814941],[126,-55,73,6.2439866065979],[126,-55,74,6.256223201751709],[126,-55,75,6.260167121887207],[126,-55,76,6.261189937591553],[126,-55,77,6.2600321769714355],[126,-55,78,6.256808280944824],[126,-55,79,6.2509446144104],[126,-54,64,6.18121862411499],[126,-54,65,6.186306476593018],[126,-54,66,6.183719635009766],[126,-54,67,6.178966522216797],[126,-54,68,6.175511837005615],[126,-54,69,6.176268100738525],[126,-54,70,6.182623863220215],[126,-54,71,6.195735454559326],[126,-54,72,6.219391822814941],[126,-54,73,6.2439866065979],[126,-54,74,6.256223201751709],[126,-54,75,6.260167121887207],[126,-54,76,6.261189937591553],[126,-54,77,6.2600321769714355],[126,-54,78,6.256808280944824],[126,-54,79,6.2509446144104],[126,-53,64,6.18121862411499],[126,-53,65,6.186306476593018],[126,-53,66,6.183719635009766],[126,-53,67,6.178966522216797],[126,-53,68,6.175511837005615],[126,-53,69,6.176268100738525],[126,-53,70,6.182623863220215],[126,-53,71,6.195735454559326],[126,-53,72,6.219391822814941],[126,-53,73,6.2439866065979],[126,-53,74,6.256223201751709],[126,-53,75,6.260167121887207],[126,-53,76,6.261189937591553],[126,-53,77,6.2600321769714355],[126,-53,78,6.256808280944824],[126,-53,79,6.2509446144104],[126,-52,64,6.18121862411499],[126,-52,65,6.186306476593018],[126,-52,66,6.183719635009766],[126,-52,67,6.178966522216797],[126,-52,68,6.175511837005615],[126,-52,69,6.176268100738525],[126,-52,70,6.182623863220215],[126,-52,71,6.195735454559326],[126,-52,72,6.219391822814941],[126,-52,73,6.2439866065979],[126,-52,74,6.256223201751709],[126,-52,75,6.260167121887207],[126,-52,76,6.261189937591553],[126,-52,77,6.2600321769714355],[126,-52,78,6.256808280944824],[126,-52,79,6.2509446144104],[126,-51,64,6.18121862411499],[126,-51,65,6.186306476593018],[126,-51,66,6.183719635009766],[126,-51,67,6.178966522216797],[126,-51,68,6.175511837005615],[126,-51,69,6.176268100738525],[126,-51,70,6.182623863220215],[126,-51,71,6.195735454559326],[126,-51,72,6.219391822814941],[126,-51,73,6.2439866065979],[126,-51,74,6.256223201751709],[126,-51,75,6.260167121887207],[126,-51,76,6.261189937591553],[126,-51,77,6.2600321769714355],[126,-51,78,6.256808280944824],[126,-51,79,6.2509446144104],[126,-50,64,6.18121862411499],[126,-50,65,6.186306476593018],[126,-50,66,6.183719635009766],[126,-50,67,6.178966522216797],[126,-50,68,6.175511837005615],[126,-50,69,6.176268100738525],[126,-50,70,6.182623863220215],[126,-50,71,6.195735454559326],[126,-50,72,6.219391822814941],[126,-50,73,6.2439866065979],[126,-50,74,6.256223201751709],[126,-50,75,6.260167121887207],[126,-50,76,6.261189937591553],[126,-50,77,6.2600321769714355],[126,-50,78,6.256808280944824],[126,-50,79,6.2509446144104],[126,-49,64,6.18121862411499],[126,-49,65,6.186306476593018],[126,-49,66,6.183719635009766],[126,-49,67,6.178966522216797],[126,-49,68,6.175511837005615],[126,-49,69,6.176268100738525],[126,-49,70,6.182623863220215],[126,-49,71,6.195735454559326],[126,-49,72,6.219391822814941],[126,-49,73,6.2439866065979],[126,-49,74,6.256223201751709],[126,-49,75,6.260167121887207],[126,-49,76,6.261189937591553],[126,-49,77,6.2600321769714355],[126,-49,78,6.256808280944824],[126,-49,79,6.2509446144104],[126,-48,64,6.18121862411499],[126,-48,65,6.186306476593018],[126,-48,66,6.183719635009766],[126,-48,67,6.178966522216797],[126,-48,68,6.175511837005615],[126,-48,69,6.176268100738525],[126,-48,70,6.182623863220215],[126,-48,71,6.195735454559326],[126,-48,72,6.219391822814941],[126,-48,73,6.2439866065979],[126,-48,74,6.256223201751709],[126,-48,75,6.260167121887207],[126,-48,76,6.261189937591553],[126,-48,77,6.2600321769714355],[126,-48,78,6.256808280944824],[126,-48,79,6.2509446144104],[126,-47,64,6.18121862411499],[126,-47,65,6.186306476593018],[126,-47,66,6.183719635009766],[126,-47,67,6.178966522216797],[126,-47,68,6.175511837005615],[126,-47,69,6.176268100738525],[126,-47,70,6.182623863220215],[126,-47,71,6.195735454559326],[126,-47,72,6.219391822814941],[126,-47,73,6.2439866065979],[126,-47,74,6.256223201751709],[126,-47,75,6.260167121887207],[126,-47,76,6.261189937591553],[126,-47,77,6.2600321769714355],[126,-47,78,6.256808280944824],[126,-47,79,6.2509446144104],[126,-46,64,6.18121862411499],[126,-46,65,6.186306476593018],[126,-46,66,6.183719635009766],[126,-46,67,6.178966522216797],[126,-46,68,6.175511837005615],[126,-46,69,6.176268100738525],[126,-46,70,6.182623863220215],[126,-46,71,6.195735454559326],[126,-46,72,6.219391822814941],[126,-46,73,6.2439866065979],[126,-46,74,6.256223201751709],[126,-46,75,6.260167121887207],[126,-46,76,6.261189937591553],[126,-46,77,6.2600321769714355],[126,-46,78,6.256808280944824],[126,-46,79,6.2509446144104],[126,-45,64,6.18121862411499],[126,-45,65,6.186306476593018],[126,-45,66,6.183719635009766],[126,-45,67,6.178966522216797],[126,-45,68,6.175511837005615],[126,-45,69,6.176268100738525],[126,-45,70,6.182623863220215],[126,-45,71,6.195735454559326],[126,-45,72,6.219391822814941],[126,-45,73,6.2439866065979],[126,-45,74,6.256223201751709],[126,-45,75,6.260167121887207],[126,-45,76,6.261189937591553],[126,-45,77,6.2600321769714355],[126,-45,78,6.256808280944824],[126,-45,79,6.2509446144104],[126,-44,64,6.18121862411499],[126,-44,65,6.186306476593018],[126,-44,66,6.183719635009766],[126,-44,67,6.178966522216797],[126,-44,68,6.175511837005615],[126,-44,69,6.176268100738525],[126,-44,70,6.182623863220215],[126,-44,71,6.195735454559326],[126,-44,72,6.219391822814941],[126,-44,73,6.2439866065979],[126,-44,74,6.256223201751709],[126,-44,75,6.260167121887207],[126,-44,76,6.261189937591553],[126,-44,77,6.2600321769714355],[126,-44,78,6.256808280944824],[126,-44,79,6.2509446144104],[126,-43,64,6.18121862411499],[126,-43,65,6.186306476593018],[126,-43,66,6.183719635009766],[126,-43,67,6.178966522216797],[126,-43,68,6.175511837005615],[126,-43,69,6.176268100738525],[126,-43,70,6.182623863220215],[126,-43,71,6.195735454559326],[126,-43,72,6.219391822814941],[126,-43,73,6.2439866065979],[126,-43,74,6.256223201751709],[126,-43,75,6.260167121887207],[126,-43,76,6.261189937591553],[126,-43,77,6.2600321769714355],[126,-43,78,6.256808280944824],[126,-43,79,6.2509446144104],[126,-42,64,6.18121862411499],[126,-42,65,6.186306476593018],[126,-42,66,6.183719635009766],[126,-42,67,6.178966522216797],[126,-42,68,6.175511837005615],[126,-42,69,6.176268100738525],[126,-42,70,6.182623863220215],[126,-42,71,6.195735454559326],[126,-42,72,6.219391822814941],[126,-42,73,6.2439866065979],[126,-42,74,6.256223201751709],[126,-42,75,6.260167121887207],[126,-42,76,6.261189937591553],[126,-42,77,6.2600321769714355],[126,-42,78,6.256808280944824],[126,-42,79,6.2509446144104],[126,-41,64,6.18121862411499],[126,-41,65,6.186306476593018],[126,-41,66,6.183719635009766],[126,-41,67,6.178966522216797],[126,-41,68,6.175511837005615],[126,-41,69,6.176268100738525],[126,-41,70,6.182623863220215],[126,-41,71,6.195735454559326],[126,-41,72,6.219391822814941],[126,-41,73,6.2439866065979],[126,-41,74,6.256223201751709],[126,-41,75,6.260167121887207],[126,-41,76,6.261189937591553],[126,-41,77,6.2600321769714355],[126,-41,78,6.256808280944824],[126,-41,79,6.2509446144104],[126,-40,64,6.18121862411499],[126,-40,65,6.186306476593018],[126,-40,66,6.183719635009766],[126,-40,67,6.178966522216797],[126,-40,68,6.175511837005615],[126,-40,69,6.176268100738525],[126,-40,70,6.182623863220215],[126,-40,71,6.195735454559326],[126,-40,72,6.219391822814941],[126,-40,73,6.2439866065979],[126,-40,74,6.256223201751709],[126,-40,75,6.260167121887207],[126,-40,76,6.261189937591553],[126,-40,77,6.2600321769714355],[126,-40,78,6.256808280944824],[126,-40,79,6.2509446144104],[126,-39,64,6.18121862411499],[126,-39,65,6.186306476593018],[126,-39,66,6.183719635009766],[126,-39,67,6.178966522216797],[126,-39,68,6.175511837005615],[126,-39,69,6.176268100738525],[126,-39,70,6.182623863220215],[126,-39,71,6.195735454559326],[126,-39,72,6.219391822814941],[126,-39,73,6.2439866065979],[126,-39,74,6.256223201751709],[126,-39,75,6.260167121887207],[126,-39,76,6.261189937591553],[126,-39,77,6.2600321769714355],[126,-39,78,6.256808280944824],[126,-39,79,6.2509446144104],[126,-38,64,6.18121862411499],[126,-38,65,6.186306476593018],[126,-38,66,6.183719635009766],[126,-38,67,6.178966522216797],[126,-38,68,6.175511837005615],[126,-38,69,6.176268100738525],[126,-38,70,6.182623863220215],[126,-38,71,6.195735454559326],[126,-38,72,6.219391822814941],[126,-38,73,6.2439866065979],[126,-38,74,6.256223201751709],[126,-38,75,6.260167121887207],[126,-38,76,6.261189937591553],[126,-38,77,6.2600321769714355],[126,-38,78,6.256808280944824],[126,-38,79,6.2509446144104],[126,-37,64,6.18121862411499],[126,-37,65,6.186306476593018],[126,-37,66,6.183719635009766],[126,-37,67,6.178966522216797],[126,-37,68,6.175511837005615],[126,-37,69,6.176268100738525],[126,-37,70,6.182623863220215],[126,-37,71,6.195735454559326],[126,-37,72,6.219391822814941],[126,-37,73,6.2439866065979],[126,-37,74,6.256223201751709],[126,-37,75,6.260167121887207],[126,-37,76,6.261189937591553],[126,-37,77,6.2600321769714355],[126,-37,78,6.256808280944824],[126,-37,79,6.2509446144104],[126,-36,64,6.18121862411499],[126,-36,65,6.186306476593018],[126,-36,66,6.183719635009766],[126,-36,67,6.178966522216797],[126,-36,68,6.175511837005615],[126,-36,69,6.176268100738525],[126,-36,70,6.182623863220215],[126,-36,71,6.195735454559326],[126,-36,72,6.219391822814941],[126,-36,73,6.2439866065979],[126,-36,74,6.256223201751709],[126,-36,75,6.260167121887207],[126,-36,76,6.261189937591553],[126,-36,77,6.2600321769714355],[126,-36,78,6.256808280944824],[126,-36,79,6.2509446144104],[126,-35,64,6.18121862411499],[126,-35,65,6.186306476593018],[126,-35,66,6.183719635009766],[126,-35,67,6.178966522216797],[126,-35,68,6.175511837005615],[126,-35,69,6.176268100738525],[126,-35,70,6.182623863220215],[126,-35,71,6.195735454559326],[126,-35,72,6.219391822814941],[126,-35,73,6.2439866065979],[126,-35,74,6.256223201751709],[126,-35,75,6.260167121887207],[126,-35,76,6.261189937591553],[126,-35,77,6.2600321769714355],[126,-35,78,6.256808280944824],[126,-35,79,6.2509446144104],[126,-34,64,6.18121862411499],[126,-34,65,6.186306476593018],[126,-34,66,6.183719635009766],[126,-34,67,6.178966522216797],[126,-34,68,6.175511837005615],[126,-34,69,6.176268100738525],[126,-34,70,6.182623863220215],[126,-34,71,6.195735454559326],[126,-34,72,6.219391822814941],[126,-34,73,6.2439866065979],[126,-34,74,6.256223201751709],[126,-34,75,6.260167121887207],[126,-34,76,6.261189937591553],[126,-34,77,6.2600321769714355],[126,-34,78,6.256808280944824],[126,-34,79,6.2509446144104],[126,-33,64,6.18121862411499],[126,-33,65,6.186306476593018],[126,-33,66,6.183719635009766],[126,-33,67,6.178966522216797],[126,-33,68,6.175511837005615],[126,-33,69,6.176268100738525],[126,-33,70,6.182623863220215],[126,-33,71,6.195735454559326],[126,-33,72,6.219391822814941],[126,-33,73,6.2439866065979],[126,-33,74,6.256223201751709],[126,-33,75,6.260167121887207],[126,-33,76,6.261189937591553],[126,-33,77,6.2600321769714355],[126,-33,78,6.256808280944824],[126,-33,79,6.2509446144104],[126,-32,64,6.18121862411499],[126,-32,65,6.186306476593018],[126,-32,66,6.183719635009766],[126,-32,67,6.178966522216797],[126,-32,68,6.175511837005615],[126,-32,69,6.176268100738525],[126,-32,70,6.182623863220215],[126,-32,71,6.195735454559326],[126,-32,72,6.219391822814941],[126,-32,73,6.2439866065979],[126,-32,74,6.256223201751709],[126,-32,75,6.260167121887207],[126,-32,76,6.261189937591553],[126,-32,77,6.2600321769714355],[126,-32,78,6.256808280944824],[126,-32,79,6.2509446144104],[126,-31,64,6.18121862411499],[126,-31,65,6.186306476593018],[126,-31,66,6.183719635009766],[126,-31,67,6.178966522216797],[126,-31,68,6.175511837005615],[126,-31,69,6.176268100738525],[126,-31,70,6.182623863220215],[126,-31,71,6.195735454559326],[126,-31,72,6.219391822814941],[126,-31,73,6.2439866065979],[126,-31,74,6.256223201751709],[126,-31,75,6.260167121887207],[126,-31,76,6.261189937591553],[126,-31,77,6.2600321769714355],[126,-31,78,6.256808280944824],[126,-31,79,6.2509446144104],[126,-30,64,6.18121862411499],[126,-30,65,6.186306476593018],[126,-30,66,6.183719635009766],[126,-30,67,6.178966522216797],[126,-30,68,6.175511837005615],[126,-30,69,6.176268100738525],[126,-30,70,6.182623863220215],[126,-30,71,6.195735454559326],[126,-30,72,6.219391822814941],[126,-30,73,6.2439866065979],[126,-30,74,6.256223201751709],[126,-30,75,6.260167121887207],[126,-30,76,6.261189937591553],[126,-30,77,6.2600321769714355],[126,-30,78,6.256808280944824],[126,-30,79,6.2509446144104],[126,-29,64,6.18121862411499],[126,-29,65,6.186306476593018],[126,-29,66,6.183719635009766],[126,-29,67,6.178966522216797],[126,-29,68,6.175511837005615],[126,-29,69,6.176268100738525],[126,-29,70,6.182623863220215],[126,-29,71,6.195735454559326],[126,-29,72,6.219391822814941],[126,-29,73,6.2439866065979],[126,-29,74,6.256223201751709],[126,-29,75,6.260167121887207],[126,-29,76,6.261189937591553],[126,-29,77,6.2600321769714355],[126,-29,78,6.256808280944824],[126,-29,79,6.2509446144104],[126,-28,64,6.18121862411499],[126,-28,65,6.186306476593018],[126,-28,66,6.183719635009766],[126,-28,67,6.178966522216797],[126,-28,68,6.175511837005615],[126,-28,69,6.176268100738525],[126,-28,70,6.182623863220215],[126,-28,71,6.195735454559326],[126,-28,72,6.219391822814941],[126,-28,73,6.2439866065979],[126,-28,74,6.256223201751709],[126,-28,75,6.260167121887207],[126,-28,76,6.261189937591553],[126,-28,77,6.2600321769714355],[126,-28,78,6.256808280944824],[126,-28,79,6.2509446144104],[126,-27,64,6.18121862411499],[126,-27,65,6.186306476593018],[126,-27,66,6.183719635009766],[126,-27,67,6.178966522216797],[126,-27,68,6.175511837005615],[126,-27,69,6.176268100738525],[126,-27,70,6.182623863220215],[126,-27,71,6.195735454559326],[126,-27,72,6.219391822814941],[126,-27,73,6.2439866065979],[126,-27,74,6.256223201751709],[126,-27,75,6.260167121887207],[126,-27,76,6.261189937591553],[126,-27,77,6.2600321769714355],[126,-27,78,6.256808280944824],[126,-27,79,6.2509446144104],[126,-26,64,6.18121862411499],[126,-26,65,6.186306476593018],[126,-26,66,6.183719635009766],[126,-26,67,6.178966522216797],[126,-26,68,6.175511837005615],[126,-26,69,6.176268100738525],[126,-26,70,6.182623863220215],[126,-26,71,6.195735454559326],[126,-26,72,6.219391822814941],[126,-26,73,6.2439866065979],[126,-26,74,6.256223201751709],[126,-26,75,6.260167121887207],[126,-26,76,6.261189937591553],[126,-26,77,6.2600321769714355],[126,-26,78,6.256808280944824],[126,-26,79,6.2509446144104],[126,-25,64,6.18121862411499],[126,-25,65,6.186306476593018],[126,-25,66,6.183719635009766],[126,-25,67,6.178966522216797],[126,-25,68,6.175511837005615],[126,-25,69,6.176268100738525],[126,-25,70,6.182623863220215],[126,-25,71,6.195735454559326],[126,-25,72,6.219391822814941],[126,-25,73,6.2439866065979],[126,-25,74,6.256223201751709],[126,-25,75,6.260167121887207],[126,-25,76,6.261189937591553],[126,-25,77,6.2600321769714355],[126,-25,78,6.256808280944824],[126,-25,79,6.2509446144104],[126,-24,64,6.18121862411499],[126,-24,65,6.186306476593018],[126,-24,66,6.183719635009766],[126,-24,67,6.178966522216797],[126,-24,68,6.175511837005615],[126,-24,69,6.176268100738525],[126,-24,70,6.182623863220215],[126,-24,71,6.195735454559326],[126,-24,72,6.219391822814941],[126,-24,73,6.2439866065979],[126,-24,74,6.256223201751709],[126,-24,75,6.260167121887207],[126,-24,76,6.261189937591553],[126,-24,77,6.2600321769714355],[126,-24,78,6.256808280944824],[126,-24,79,6.2509446144104],[126,-23,64,6.18121862411499],[126,-23,65,6.186306476593018],[126,-23,66,6.183719635009766],[126,-23,67,6.178966522216797],[126,-23,68,6.175511837005615],[126,-23,69,6.176268100738525],[126,-23,70,6.182623863220215],[126,-23,71,6.195735454559326],[126,-23,72,6.219391822814941],[126,-23,73,6.2439866065979],[126,-23,74,6.256223201751709],[126,-23,75,6.260167121887207],[126,-23,76,6.261189937591553],[126,-23,77,6.2600321769714355],[126,-23,78,6.256808280944824],[126,-23,79,6.2509446144104],[126,-22,64,6.18121862411499],[126,-22,65,6.186306476593018],[126,-22,66,6.183719635009766],[126,-22,67,6.178966522216797],[126,-22,68,6.175511837005615],[126,-22,69,6.176268100738525],[126,-22,70,6.182623863220215],[126,-22,71,6.195735454559326],[126,-22,72,6.219391822814941],[126,-22,73,6.2439866065979],[126,-22,74,6.256223201751709],[126,-22,75,6.260167121887207],[126,-22,76,6.261189937591553],[126,-22,77,6.2600321769714355],[126,-22,78,6.256808280944824],[126,-22,79,6.2509446144104],[126,-21,64,6.18121862411499],[126,-21,65,6.186306476593018],[126,-21,66,6.183719635009766],[126,-21,67,6.178966522216797],[126,-21,68,6.175511837005615],[126,-21,69,6.176268100738525],[126,-21,70,6.182623863220215],[126,-21,71,6.195735454559326],[126,-21,72,6.219391822814941],[126,-21,73,6.2439866065979],[126,-21,74,6.256223201751709],[126,-21,75,6.260167121887207],[126,-21,76,6.261189937591553],[126,-21,77,6.2600321769714355],[126,-21,78,6.256808280944824],[126,-21,79,6.2509446144104],[126,-20,64,6.18121862411499],[126,-20,65,6.186306476593018],[126,-20,66,6.183719635009766],[126,-20,67,6.178966522216797],[126,-20,68,6.175511837005615],[126,-20,69,6.176268100738525],[126,-20,70,6.182623863220215],[126,-20,71,6.195735454559326],[126,-20,72,6.219391822814941],[126,-20,73,6.2439866065979],[126,-20,74,6.256223201751709],[126,-20,75,6.260167121887207],[126,-20,76,6.261189937591553],[126,-20,77,6.2600321769714355],[126,-20,78,6.256808280944824],[126,-20,79,6.2509446144104],[126,-19,64,6.18121862411499],[126,-19,65,6.186306476593018],[126,-19,66,6.183719635009766],[126,-19,67,6.178966522216797],[126,-19,68,6.175511837005615],[126,-19,69,6.176268100738525],[126,-19,70,6.182623863220215],[126,-19,71,6.195735454559326],[126,-19,72,6.219391822814941],[126,-19,73,6.2439866065979],[126,-19,74,6.256223201751709],[126,-19,75,6.260167121887207],[126,-19,76,6.261189937591553],[126,-19,77,6.2600321769714355],[126,-19,78,6.256808280944824],[126,-19,79,6.2509446144104],[126,-18,64,6.18121862411499],[126,-18,65,6.186306476593018],[126,-18,66,6.183719635009766],[126,-18,67,6.178966522216797],[126,-18,68,6.175511837005615],[126,-18,69,6.176268100738525],[126,-18,70,6.182623863220215],[126,-18,71,6.195735454559326],[126,-18,72,6.219391822814941],[126,-18,73,6.2439866065979],[126,-18,74,6.256223201751709],[126,-18,75,6.260167121887207],[126,-18,76,6.261189937591553],[126,-18,77,6.2600321769714355],[126,-18,78,6.256808280944824],[126,-18,79,6.2509446144104],[126,-17,64,6.18121862411499],[126,-17,65,6.186306476593018],[126,-17,66,6.183719635009766],[126,-17,67,6.178966522216797],[126,-17,68,6.175511837005615],[126,-17,69,6.176268100738525],[126,-17,70,6.182623863220215],[126,-17,71,6.195735454559326],[126,-17,72,6.219391822814941],[126,-17,73,6.2439866065979],[126,-17,74,6.256223201751709],[126,-17,75,6.260167121887207],[126,-17,76,6.261189937591553],[126,-17,77,6.2600321769714355],[126,-17,78,6.256808280944824],[126,-17,79,6.2509446144104],[126,-16,64,6.18121862411499],[126,-16,65,6.186306476593018],[126,-16,66,6.183719635009766],[126,-16,67,6.178966522216797],[126,-16,68,6.175511837005615],[126,-16,69,6.176268100738525],[126,-16,70,6.182623863220215],[126,-16,71,6.195735454559326],[126,-16,72,6.219391822814941],[126,-16,73,6.2439866065979],[126,-16,74,6.256223201751709],[126,-16,75,6.260167121887207],[126,-16,76,6.261189937591553],[126,-16,77,6.2600321769714355],[126,-16,78,6.256808280944824],[126,-16,79,6.2509446144104],[126,-15,64,6.18121862411499],[126,-15,65,6.186306476593018],[126,-15,66,6.183719635009766],[126,-15,67,6.178966522216797],[126,-15,68,6.175511837005615],[126,-15,69,6.176268100738525],[126,-15,70,6.182623863220215],[126,-15,71,6.195735454559326],[126,-15,72,6.219391822814941],[126,-15,73,6.2439866065979],[126,-15,74,6.256223201751709],[126,-15,75,6.260167121887207],[126,-15,76,6.261189937591553],[126,-15,77,6.2600321769714355],[126,-15,78,6.256808280944824],[126,-15,79,6.2509446144104],[126,-14,64,6.18121862411499],[126,-14,65,6.186306476593018],[126,-14,66,6.183719635009766],[126,-14,67,6.178966522216797],[126,-14,68,6.175511837005615],[126,-14,69,6.176268100738525],[126,-14,70,6.182623863220215],[126,-14,71,6.195735454559326],[126,-14,72,6.219391822814941],[126,-14,73,6.2439866065979],[126,-14,74,6.256223201751709],[126,-14,75,6.260167121887207],[126,-14,76,6.261189937591553],[126,-14,77,6.2600321769714355],[126,-14,78,6.256808280944824],[126,-14,79,6.2509446144104],[126,-13,64,6.18121862411499],[126,-13,65,6.186306476593018],[126,-13,66,6.183719635009766],[126,-13,67,6.178966522216797],[126,-13,68,6.175511837005615],[126,-13,69,6.176268100738525],[126,-13,70,6.182623863220215],[126,-13,71,6.195735454559326],[126,-13,72,6.219391822814941],[126,-13,73,6.2439866065979],[126,-13,74,6.256223201751709],[126,-13,75,6.260167121887207],[126,-13,76,6.261189937591553],[126,-13,77,6.2600321769714355],[126,-13,78,6.256808280944824],[126,-13,79,6.2509446144104],[126,-12,64,6.18121862411499],[126,-12,65,6.186306476593018],[126,-12,66,6.183719635009766],[126,-12,67,6.178966522216797],[126,-12,68,6.175511837005615],[126,-12,69,6.176268100738525],[126,-12,70,6.182623863220215],[126,-12,71,6.195735454559326],[126,-12,72,6.219391822814941],[126,-12,73,6.2439866065979],[126,-12,74,6.256223201751709],[126,-12,75,6.260167121887207],[126,-12,76,6.261189937591553],[126,-12,77,6.2600321769714355],[126,-12,78,6.256808280944824],[126,-12,79,6.2509446144104],[126,-11,64,6.18121862411499],[126,-11,65,6.186306476593018],[126,-11,66,6.183719635009766],[126,-11,67,6.178966522216797],[126,-11,68,6.175511837005615],[126,-11,69,6.176268100738525],[126,-11,70,6.182623863220215],[126,-11,71,6.195735454559326],[126,-11,72,6.219391822814941],[126,-11,73,6.2439866065979],[126,-11,74,6.256223201751709],[126,-11,75,6.260167121887207],[126,-11,76,6.261189937591553],[126,-11,77,6.2600321769714355],[126,-11,78,6.256808280944824],[126,-11,79,6.2509446144104],[126,-10,64,6.18121862411499],[126,-10,65,6.186306476593018],[126,-10,66,6.183719635009766],[126,-10,67,6.178966522216797],[126,-10,68,6.175511837005615],[126,-10,69,6.176268100738525],[126,-10,70,6.182623863220215],[126,-10,71,6.195735454559326],[126,-10,72,6.219391822814941],[126,-10,73,6.2439866065979],[126,-10,74,6.256223201751709],[126,-10,75,6.260167121887207],[126,-10,76,6.261189937591553],[126,-10,77,6.2600321769714355],[126,-10,78,6.256808280944824],[126,-10,79,6.2509446144104],[126,-9,64,6.18121862411499],[126,-9,65,6.186306476593018],[126,-9,66,6.183719635009766],[126,-9,67,6.178966522216797],[126,-9,68,6.175511837005615],[126,-9,69,6.176268100738525],[126,-9,70,6.182623863220215],[126,-9,71,6.195735454559326],[126,-9,72,6.219391822814941],[126,-9,73,6.2439866065979],[126,-9,74,6.256223201751709],[126,-9,75,6.260167121887207],[126,-9,76,6.261189937591553],[126,-9,77,6.2600321769714355],[126,-9,78,6.256808280944824],[126,-9,79,6.2509446144104],[126,-8,64,6.18121862411499],[126,-8,65,6.186306476593018],[126,-8,66,6.183719635009766],[126,-8,67,6.178966522216797],[126,-8,68,6.175511837005615],[126,-8,69,6.176268100738525],[126,-8,70,6.182623863220215],[126,-8,71,6.195735454559326],[126,-8,72,6.219391822814941],[126,-8,73,6.2439866065979],[126,-8,74,6.256223201751709],[126,-8,75,6.260167121887207],[126,-8,76,6.261189937591553],[126,-8,77,6.2600321769714355],[126,-8,78,6.256808280944824],[126,-8,79,6.2509446144104],[126,-7,64,6.18121862411499],[126,-7,65,6.186306476593018],[126,-7,66,6.183719635009766],[126,-7,67,6.178966522216797],[126,-7,68,6.175511837005615],[126,-7,69,6.176268100738525],[126,-7,70,6.182623863220215],[126,-7,71,6.195735454559326],[126,-7,72,6.219391822814941],[126,-7,73,6.2439866065979],[126,-7,74,6.256223201751709],[126,-7,75,6.260167121887207],[126,-7,76,6.261189937591553],[126,-7,77,6.2600321769714355],[126,-7,78,6.256808280944824],[126,-7,79,6.2509446144104],[126,-6,64,6.18121862411499],[126,-6,65,6.186306476593018],[126,-6,66,6.183719635009766],[126,-6,67,6.178966522216797],[126,-6,68,6.175511837005615],[126,-6,69,6.176268100738525],[126,-6,70,6.182623863220215],[126,-6,71,6.195735454559326],[126,-6,72,6.219391822814941],[126,-6,73,6.2439866065979],[126,-6,74,6.256223201751709],[126,-6,75,6.260167121887207],[126,-6,76,6.261189937591553],[126,-6,77,6.2600321769714355],[126,-6,78,6.256808280944824],[126,-6,79,6.2509446144104],[126,-5,64,6.18121862411499],[126,-5,65,6.186306476593018],[126,-5,66,6.183719635009766],[126,-5,67,6.178966522216797],[126,-5,68,6.175511837005615],[126,-5,69,6.176268100738525],[126,-5,70,6.182623863220215],[126,-5,71,6.195735454559326],[126,-5,72,6.219391822814941],[126,-5,73,6.2439866065979],[126,-5,74,6.256223201751709],[126,-5,75,6.260167121887207],[126,-5,76,6.261189937591553],[126,-5,77,6.2600321769714355],[126,-5,78,6.256808280944824],[126,-5,79,6.2509446144104],[126,-4,64,6.18121862411499],[126,-4,65,6.186306476593018],[126,-4,66,6.183719635009766],[126,-4,67,6.178966522216797],[126,-4,68,6.175511837005615],[126,-4,69,6.176268100738525],[126,-4,70,6.182623863220215],[126,-4,71,6.195735454559326],[126,-4,72,6.219391822814941],[126,-4,73,6.2439866065979],[126,-4,74,6.256223201751709],[126,-4,75,6.260167121887207],[126,-4,76,6.261189937591553],[126,-4,77,6.2600321769714355],[126,-4,78,6.256808280944824],[126,-4,79,6.2509446144104],[126,-3,64,6.18121862411499],[126,-3,65,6.186306476593018],[126,-3,66,6.183719635009766],[126,-3,67,6.178966522216797],[126,-3,68,6.175511837005615],[126,-3,69,6.176268100738525],[126,-3,70,6.182623863220215],[126,-3,71,6.195735454559326],[126,-3,72,6.219391822814941],[126,-3,73,6.2439866065979],[126,-3,74,6.256223201751709],[126,-3,75,6.260167121887207],[126,-3,76,6.261189937591553],[126,-3,77,6.2600321769714355],[126,-3,78,6.256808280944824],[126,-3,79,6.2509446144104],[126,-2,64,6.18121862411499],[126,-2,65,6.186306476593018],[126,-2,66,6.183719635009766],[126,-2,67,6.178966522216797],[126,-2,68,6.175511837005615],[126,-2,69,6.176268100738525],[126,-2,70,6.182623863220215],[126,-2,71,6.195735454559326],[126,-2,72,6.219391822814941],[126,-2,73,6.2439866065979],[126,-2,74,6.256223201751709],[126,-2,75,6.260167121887207],[126,-2,76,6.261189937591553],[126,-2,77,6.2600321769714355],[126,-2,78,6.256808280944824],[126,-2,79,6.2509446144104],[126,-1,64,6.18121862411499],[126,-1,65,6.186306476593018],[126,-1,66,6.183719635009766],[126,-1,67,6.178966522216797],[126,-1,68,6.175511837005615],[126,-1,69,6.176268100738525],[126,-1,70,6.182623863220215],[126,-1,71,6.195735454559326],[126,-1,72,6.219391822814941],[126,-1,73,6.2439866065979],[126,-1,74,6.256223201751709],[126,-1,75,6.260167121887207],[126,-1,76,6.261189937591553],[126,-1,77,6.2600321769714355],[126,-1,78,6.256808280944824],[126,-1,79,6.2509446144104],[126,0,64,6.18121862411499],[126,0,65,6.186306476593018],[126,0,66,6.183719635009766],[126,0,67,6.178966522216797],[126,0,68,6.175511837005615],[126,0,69,6.176268100738525],[126,0,70,6.182623863220215],[126,0,71,6.195735454559326],[126,0,72,6.219391822814941],[126,0,73,6.2439866065979],[126,0,74,6.256223201751709],[126,0,75,6.260167121887207],[126,0,76,6.261189937591553],[126,0,77,6.2600321769714355],[126,0,78,6.256808280944824],[126,0,79,6.2509446144104],[126,1,64,6.18121862411499],[126,1,65,6.186306476593018],[126,1,66,6.183719635009766],[126,1,67,6.178966522216797],[126,1,68,6.175511837005615],[126,1,69,6.176268100738525],[126,1,70,6.182623863220215],[126,1,71,6.195735454559326],[126,1,72,6.219391822814941],[126,1,73,6.2439866065979],[126,1,74,6.256223201751709],[126,1,75,6.260167121887207],[126,1,76,6.261189937591553],[126,1,77,6.2600321769714355],[126,1,78,6.256808280944824],[126,1,79,6.2509446144104],[126,2,64,6.18121862411499],[126,2,65,6.186306476593018],[126,2,66,6.183719635009766],[126,2,67,6.178966522216797],[126,2,68,6.175511837005615],[126,2,69,6.176268100738525],[126,2,70,6.182623863220215],[126,2,71,6.195735454559326],[126,2,72,6.219391822814941],[126,2,73,6.2439866065979],[126,2,74,6.256223201751709],[126,2,75,6.260167121887207],[126,2,76,6.261189937591553],[126,2,77,6.2600321769714355],[126,2,78,6.256808280944824],[126,2,79,6.2509446144104],[126,3,64,6.18121862411499],[126,3,65,6.186306476593018],[126,3,66,6.183719635009766],[126,3,67,6.178966522216797],[126,3,68,6.175511837005615],[126,3,69,6.176268100738525],[126,3,70,6.182623863220215],[126,3,71,6.195735454559326],[126,3,72,6.219391822814941],[126,3,73,6.2439866065979],[126,3,74,6.256223201751709],[126,3,75,6.260167121887207],[126,3,76,6.261189937591553],[126,3,77,6.2600321769714355],[126,3,78,6.256808280944824],[126,3,79,6.2509446144104],[126,4,64,6.18121862411499],[126,4,65,6.186306476593018],[126,4,66,6.183719635009766],[126,4,67,6.178966522216797],[126,4,68,6.175511837005615],[126,4,69,6.176268100738525],[126,4,70,6.182623863220215],[126,4,71,6.195735454559326],[126,4,72,6.219391822814941],[126,4,73,6.2439866065979],[126,4,74,6.256223201751709],[126,4,75,6.260167121887207],[126,4,76,6.261189937591553],[126,4,77,6.2600321769714355],[126,4,78,6.256808280944824],[126,4,79,6.2509446144104],[126,5,64,6.18121862411499],[126,5,65,6.186306476593018],[126,5,66,6.183719635009766],[126,5,67,6.178966522216797],[126,5,68,6.175511837005615],[126,5,69,6.176268100738525],[126,5,70,6.182623863220215],[126,5,71,6.195735454559326],[126,5,72,6.219391822814941],[126,5,73,6.2439866065979],[126,5,74,6.256223201751709],[126,5,75,6.260167121887207],[126,5,76,6.261189937591553],[126,5,77,6.2600321769714355],[126,5,78,6.256808280944824],[126,5,79,6.2509446144104],[126,6,64,6.18121862411499],[126,6,65,6.186306476593018],[126,6,66,6.183719635009766],[126,6,67,6.178966522216797],[126,6,68,6.175511837005615],[126,6,69,6.176268100738525],[126,6,70,6.182623863220215],[126,6,71,6.195735454559326],[126,6,72,6.219391822814941],[126,6,73,6.2439866065979],[126,6,74,6.256223201751709],[126,6,75,6.260167121887207],[126,6,76,6.261189937591553],[126,6,77,6.2600321769714355],[126,6,78,6.256808280944824],[126,6,79,6.2509446144104],[126,7,64,6.18121862411499],[126,7,65,6.186306476593018],[126,7,66,6.183719635009766],[126,7,67,6.178966522216797],[126,7,68,6.175511837005615],[126,7,69,6.176268100738525],[126,7,70,6.182623863220215],[126,7,71,6.195735454559326],[126,7,72,6.219391822814941],[126,7,73,6.2439866065979],[126,7,74,6.256223201751709],[126,7,75,6.260167121887207],[126,7,76,6.261189937591553],[126,7,77,6.2600321769714355],[126,7,78,6.256808280944824],[126,7,79,6.2509446144104],[126,8,64,6.18121862411499],[126,8,65,6.186306476593018],[126,8,66,6.183719635009766],[126,8,67,6.178966522216797],[126,8,68,6.175511837005615],[126,8,69,6.176268100738525],[126,8,70,6.182623863220215],[126,8,71,6.195735454559326],[126,8,72,6.219391822814941],[126,8,73,6.2439866065979],[126,8,74,6.256223201751709],[126,8,75,6.260167121887207],[126,8,76,6.261189937591553],[126,8,77,6.2600321769714355],[126,8,78,6.256808280944824],[126,8,79,6.2509446144104],[126,9,64,6.18121862411499],[126,9,65,6.186306476593018],[126,9,66,6.183719635009766],[126,9,67,6.178966522216797],[126,9,68,6.175511837005615],[126,9,69,6.176268100738525],[126,9,70,6.182623863220215],[126,9,71,6.195735454559326],[126,9,72,6.219391822814941],[126,9,73,6.2439866065979],[126,9,74,6.256223201751709],[126,9,75,6.260167121887207],[126,9,76,6.261189937591553],[126,9,77,6.2600321769714355],[126,9,78,6.256808280944824],[126,9,79,6.2509446144104],[126,10,64,6.18121862411499],[126,10,65,6.186306476593018],[126,10,66,6.183719635009766],[126,10,67,6.178966522216797],[126,10,68,6.175511837005615],[126,10,69,6.176268100738525],[126,10,70,6.182623863220215],[126,10,71,6.195735454559326],[126,10,72,6.219391822814941],[126,10,73,6.2439866065979],[126,10,74,6.256223201751709],[126,10,75,6.260167121887207],[126,10,76,6.261189937591553],[126,10,77,6.2600321769714355],[126,10,78,6.256808280944824],[126,10,79,6.2509446144104],[126,11,64,6.18121862411499],[126,11,65,6.186306476593018],[126,11,66,6.183719635009766],[126,11,67,6.178966522216797],[126,11,68,6.175511837005615],[126,11,69,6.176268100738525],[126,11,70,6.182623863220215],[126,11,71,6.195735454559326],[126,11,72,6.219391822814941],[126,11,73,6.2439866065979],[126,11,74,6.256223201751709],[126,11,75,6.260167121887207],[126,11,76,6.261189937591553],[126,11,77,6.2600321769714355],[126,11,78,6.256808280944824],[126,11,79,6.2509446144104],[126,12,64,6.18121862411499],[126,12,65,6.186306476593018],[126,12,66,6.183719635009766],[126,12,67,6.178966522216797],[126,12,68,6.175511837005615],[126,12,69,6.176268100738525],[126,12,70,6.182623863220215],[126,12,71,6.195735454559326],[126,12,72,6.219391822814941],[126,12,73,6.2439866065979],[126,12,74,6.256223201751709],[126,12,75,6.260167121887207],[126,12,76,6.261189937591553],[126,12,77,6.2600321769714355],[126,12,78,6.256808280944824],[126,12,79,6.2509446144104],[126,13,64,6.18121862411499],[126,13,65,6.186306476593018],[126,13,66,6.183719635009766],[126,13,67,6.178966522216797],[126,13,68,6.175511837005615],[126,13,69,6.176268100738525],[126,13,70,6.182623863220215],[126,13,71,6.195735454559326],[126,13,72,6.219391822814941],[126,13,73,6.2439866065979],[126,13,74,6.256223201751709],[126,13,75,6.260167121887207],[126,13,76,6.261189937591553],[126,13,77,6.2600321769714355],[126,13,78,6.256808280944824],[126,13,79,6.2509446144104],[126,14,64,6.18121862411499],[126,14,65,6.186306476593018],[126,14,66,6.183719635009766],[126,14,67,6.178966522216797],[126,14,68,6.175511837005615],[126,14,69,6.176268100738525],[126,14,70,6.182623863220215],[126,14,71,6.195735454559326],[126,14,72,6.219391822814941],[126,14,73,6.2439866065979],[126,14,74,6.256223201751709],[126,14,75,6.260167121887207],[126,14,76,6.261189937591553],[126,14,77,6.2600321769714355],[126,14,78,6.256808280944824],[126,14,79,6.2509446144104],[126,15,64,6.18121862411499],[126,15,65,6.186306476593018],[126,15,66,6.183719635009766],[126,15,67,6.178966522216797],[126,15,68,6.175511837005615],[126,15,69,6.176268100738525],[126,15,70,6.182623863220215],[126,15,71,6.195735454559326],[126,15,72,6.219391822814941],[126,15,73,6.2439866065979],[126,15,74,6.256223201751709],[126,15,75,6.260167121887207],[126,15,76,6.261189937591553],[126,15,77,6.2600321769714355],[126,15,78,6.256808280944824],[126,15,79,6.2509446144104],[126,16,64,6.18121862411499],[126,16,65,6.186306476593018],[126,16,66,6.183719635009766],[126,16,67,6.178966522216797],[126,16,68,6.175511837005615],[126,16,69,6.176268100738525],[126,16,70,6.182623863220215],[126,16,71,6.195735454559326],[126,16,72,6.219391822814941],[126,16,73,6.2439866065979],[126,16,74,6.256223201751709],[126,16,75,6.260167121887207],[126,16,76,6.261189937591553],[126,16,77,6.2600321769714355],[126,16,78,6.256808280944824],[126,16,79,6.2509446144104],[126,17,64,6.18121862411499],[126,17,65,6.186306476593018],[126,17,66,6.183719635009766],[126,17,67,6.178966522216797],[126,17,68,6.175511837005615],[126,17,69,6.176268100738525],[126,17,70,6.182623863220215],[126,17,71,6.195735454559326],[126,17,72,6.219391822814941],[126,17,73,6.2439866065979],[126,17,74,6.256223201751709],[126,17,75,6.260167121887207],[126,17,76,6.261189937591553],[126,17,77,6.2600321769714355],[126,17,78,6.256808280944824],[126,17,79,6.2509446144104],[126,18,64,6.18121862411499],[126,18,65,6.186306476593018],[126,18,66,6.183719635009766],[126,18,67,6.178966522216797],[126,18,68,6.175511837005615],[126,18,69,6.176268100738525],[126,18,70,6.182623863220215],[126,18,71,6.195735454559326],[126,18,72,6.219391822814941],[126,18,73,6.2439866065979],[126,18,74,6.256223201751709],[126,18,75,6.260167121887207],[126,18,76,6.261189937591553],[126,18,77,6.2600321769714355],[126,18,78,6.256808280944824],[126,18,79,6.2509446144104],[126,19,64,6.18121862411499],[126,19,65,6.186306476593018],[126,19,66,6.183719635009766],[126,19,67,6.178966522216797],[126,19,68,6.175511837005615],[126,19,69,6.176268100738525],[126,19,70,6.182623863220215],[126,19,71,6.195735454559326],[126,19,72,6.219391822814941],[126,19,73,6.2439866065979],[126,19,74,6.256223201751709],[126,19,75,6.260167121887207],[126,19,76,6.261189937591553],[126,19,77,6.2600321769714355],[126,19,78,6.256808280944824],[126,19,79,6.2509446144104],[126,20,64,6.18121862411499],[126,20,65,6.186306476593018],[126,20,66,6.183719635009766],[126,20,67,6.178966522216797],[126,20,68,6.175511837005615],[126,20,69,6.176268100738525],[126,20,70,6.182623863220215],[126,20,71,6.195735454559326],[126,20,72,6.219391822814941],[126,20,73,6.2439866065979],[126,20,74,6.256223201751709],[126,20,75,6.260167121887207],[126,20,76,6.261189937591553],[126,20,77,6.2600321769714355],[126,20,78,6.256808280944824],[126,20,79,6.2509446144104],[126,21,64,6.18121862411499],[126,21,65,6.186306476593018],[126,21,66,6.183719635009766],[126,21,67,6.178966522216797],[126,21,68,6.175511837005615],[126,21,69,6.176268100738525],[126,21,70,6.182623863220215],[126,21,71,6.195735454559326],[126,21,72,6.219391822814941],[126,21,73,6.2439866065979],[126,21,74,6.256223201751709],[126,21,75,6.260167121887207],[126,21,76,6.261189937591553],[126,21,77,6.2600321769714355],[126,21,78,6.256808280944824],[126,21,79,6.2509446144104],[126,22,64,6.18121862411499],[126,22,65,6.186306476593018],[126,22,66,6.183719635009766],[126,22,67,6.178966522216797],[126,22,68,6.175511837005615],[126,22,69,6.176268100738525],[126,22,70,6.182623863220215],[126,22,71,6.195735454559326],[126,22,72,6.219391822814941],[126,22,73,6.2439866065979],[126,22,74,6.256223201751709],[126,22,75,6.260167121887207],[126,22,76,6.261189937591553],[126,22,77,6.2600321769714355],[126,22,78,6.256808280944824],[126,22,79,6.2509446144104],[126,23,64,6.18121862411499],[126,23,65,6.186306476593018],[126,23,66,6.183719635009766],[126,23,67,6.178966522216797],[126,23,68,6.175511837005615],[126,23,69,6.176268100738525],[126,23,70,6.182623863220215],[126,23,71,6.195735454559326],[126,23,72,6.219391822814941],[126,23,73,6.2439866065979],[126,23,74,6.256223201751709],[126,23,75,6.260167121887207],[126,23,76,6.261189937591553],[126,23,77,6.2600321769714355],[126,23,78,6.256808280944824],[126,23,79,6.2509446144104],[126,24,64,6.18121862411499],[126,24,65,6.186306476593018],[126,24,66,6.183719635009766],[126,24,67,6.178966522216797],[126,24,68,6.175511837005615],[126,24,69,6.176268100738525],[126,24,70,6.182623863220215],[126,24,71,6.195735454559326],[126,24,72,6.219391822814941],[126,24,73,6.2439866065979],[126,24,74,6.256223201751709],[126,24,75,6.260167121887207],[126,24,76,6.261189937591553],[126,24,77,6.2600321769714355],[126,24,78,6.256808280944824],[126,24,79,6.2509446144104],[126,25,64,6.18121862411499],[126,25,65,6.186306476593018],[126,25,66,6.183719635009766],[126,25,67,6.178966522216797],[126,25,68,6.175511837005615],[126,25,69,6.176268100738525],[126,25,70,6.182623863220215],[126,25,71,6.195735454559326],[126,25,72,6.219391822814941],[126,25,73,6.2439866065979],[126,25,74,6.256223201751709],[126,25,75,6.260167121887207],[126,25,76,6.261189937591553],[126,25,77,6.2600321769714355],[126,25,78,6.256808280944824],[126,25,79,6.2509446144104],[126,26,64,6.18121862411499],[126,26,65,6.186306476593018],[126,26,66,6.183719635009766],[126,26,67,6.178966522216797],[126,26,68,6.175511837005615],[126,26,69,6.176268100738525],[126,26,70,6.182623863220215],[126,26,71,6.195735454559326],[126,26,72,6.219391822814941],[126,26,73,6.2439866065979],[126,26,74,6.256223201751709],[126,26,75,6.260167121887207],[126,26,76,6.261189937591553],[126,26,77,6.2600321769714355],[126,26,78,6.256808280944824],[126,26,79,6.2509446144104],[126,27,64,6.18121862411499],[126,27,65,6.186306476593018],[126,27,66,6.183719635009766],[126,27,67,6.178966522216797],[126,27,68,6.175511837005615],[126,27,69,6.176268100738525],[126,27,70,6.182623863220215],[126,27,71,6.195735454559326],[126,27,72,6.219391822814941],[126,27,73,6.2439866065979],[126,27,74,6.256223201751709],[126,27,75,6.260167121887207],[126,27,76,6.261189937591553],[126,27,77,6.2600321769714355],[126,27,78,6.256808280944824],[126,27,79,6.2509446144104],[126,28,64,6.18121862411499],[126,28,65,6.186306476593018],[126,28,66,6.183719635009766],[126,28,67,6.178966522216797],[126,28,68,6.175511837005615],[126,28,69,6.176268100738525],[126,28,70,6.182623863220215],[126,28,71,6.195735454559326],[126,28,72,6.219391822814941],[126,28,73,6.2439866065979],[126,28,74,6.256223201751709],[126,28,75,6.260167121887207],[126,28,76,6.261189937591553],[126,28,77,6.2600321769714355],[126,28,78,6.256808280944824],[126,28,79,6.2509446144104],[126,29,64,6.18121862411499],[126,29,65,6.186306476593018],[126,29,66,6.183719635009766],[126,29,67,6.178966522216797],[126,29,68,6.175511837005615],[126,29,69,6.176268100738525],[126,29,70,6.182623863220215],[126,29,71,6.195735454559326],[126,29,72,6.219391822814941],[126,29,73,6.2439866065979],[126,29,74,6.256223201751709],[126,29,75,6.260167121887207],[126,29,76,6.261189937591553],[126,29,77,6.2600321769714355],[126,29,78,6.256808280944824],[126,29,79,6.2509446144104],[126,30,64,6.18121862411499],[126,30,65,6.186306476593018],[126,30,66,6.183719635009766],[126,30,67,6.178966522216797],[126,30,68,6.175511837005615],[126,30,69,6.176268100738525],[126,30,70,6.182623863220215],[126,30,71,6.195735454559326],[126,30,72,6.219391822814941],[126,30,73,6.2439866065979],[126,30,74,6.256223201751709],[126,30,75,6.260167121887207],[126,30,76,6.261189937591553],[126,30,77,6.2600321769714355],[126,30,78,6.256808280944824],[126,30,79,6.2509446144104],[126,31,64,6.18121862411499],[126,31,65,6.186306476593018],[126,31,66,6.183719635009766],[126,31,67,6.178966522216797],[126,31,68,6.175511837005615],[126,31,69,6.176268100738525],[126,31,70,6.182623863220215],[126,31,71,6.195735454559326],[126,31,72,6.219391822814941],[126,31,73,6.2439866065979],[126,31,74,6.256223201751709],[126,31,75,6.260167121887207],[126,31,76,6.261189937591553],[126,31,77,6.2600321769714355],[126,31,78,6.256808280944824],[126,31,79,6.2509446144104],[126,32,64,6.18121862411499],[126,32,65,6.186306476593018],[126,32,66,6.183719635009766],[126,32,67,6.178966522216797],[126,32,68,6.175511837005615],[126,32,69,6.176268100738525],[126,32,70,6.182623863220215],[126,32,71,6.195735454559326],[126,32,72,6.219391822814941],[126,32,73,6.2439866065979],[126,32,74,6.256223201751709],[126,32,75,6.260167121887207],[126,32,76,6.261189937591553],[126,32,77,6.2600321769714355],[126,32,78,6.256808280944824],[126,32,79,6.2509446144104],[126,33,64,6.18121862411499],[126,33,65,6.186306476593018],[126,33,66,6.183719635009766],[126,33,67,6.178966522216797],[126,33,68,6.175511837005615],[126,33,69,6.176268100738525],[126,33,70,6.182623863220215],[126,33,71,6.195735454559326],[126,33,72,6.219391822814941],[126,33,73,6.2439866065979],[126,33,74,6.256223201751709],[126,33,75,6.260167121887207],[126,33,76,6.261189937591553],[126,33,77,6.2600321769714355],[126,33,78,6.256808280944824],[126,33,79,6.2509446144104],[126,34,64,6.18121862411499],[126,34,65,6.186306476593018],[126,34,66,6.183719635009766],[126,34,67,6.178966522216797],[126,34,68,6.175511837005615],[126,34,69,6.176268100738525],[126,34,70,6.182623863220215],[126,34,71,6.195735454559326],[126,34,72,6.219391822814941],[126,34,73,6.2439866065979],[126,34,74,6.256223201751709],[126,34,75,6.260167121887207],[126,34,76,6.261189937591553],[126,34,77,6.2600321769714355],[126,34,78,6.256808280944824],[126,34,79,6.2509446144104],[126,35,64,6.18121862411499],[126,35,65,6.186306476593018],[126,35,66,6.183719635009766],[126,35,67,6.178966522216797],[126,35,68,6.175511837005615],[126,35,69,6.176268100738525],[126,35,70,6.182623863220215],[126,35,71,6.195735454559326],[126,35,72,6.219391822814941],[126,35,73,6.2439866065979],[126,35,74,6.256223201751709],[126,35,75,6.260167121887207],[126,35,76,6.261189937591553],[126,35,77,6.2600321769714355],[126,35,78,6.256808280944824],[126,35,79,6.2509446144104],[126,36,64,6.18121862411499],[126,36,65,6.186306476593018],[126,36,66,6.183719635009766],[126,36,67,6.178966522216797],[126,36,68,6.175511837005615],[126,36,69,6.176268100738525],[126,36,70,6.182623863220215],[126,36,71,6.195735454559326],[126,36,72,6.219391822814941],[126,36,73,6.2439866065979],[126,36,74,6.256223201751709],[126,36,75,6.260167121887207],[126,36,76,6.261189937591553],[126,36,77,6.2600321769714355],[126,36,78,6.256808280944824],[126,36,79,6.2509446144104],[126,37,64,6.18121862411499],[126,37,65,6.186306476593018],[126,37,66,6.183719635009766],[126,37,67,6.178966522216797],[126,37,68,6.175511837005615],[126,37,69,6.176268100738525],[126,37,70,6.182623863220215],[126,37,71,6.195735454559326],[126,37,72,6.219391822814941],[126,37,73,6.2439866065979],[126,37,74,6.256223201751709],[126,37,75,6.260167121887207],[126,37,76,6.261189937591553],[126,37,77,6.2600321769714355],[126,37,78,6.256808280944824],[126,37,79,6.2509446144104],[126,38,64,6.18121862411499],[126,38,65,6.186306476593018],[126,38,66,6.183719635009766],[126,38,67,6.178966522216797],[126,38,68,6.175511837005615],[126,38,69,6.176268100738525],[126,38,70,6.182623863220215],[126,38,71,6.195735454559326],[126,38,72,6.219391822814941],[126,38,73,6.2439866065979],[126,38,74,6.256223201751709],[126,38,75,6.260167121887207],[126,38,76,6.261189937591553],[126,38,77,6.2600321769714355],[126,38,78,6.256808280944824],[126,38,79,6.2509446144104],[126,39,64,6.18121862411499],[126,39,65,6.186306476593018],[126,39,66,6.183719635009766],[126,39,67,6.178966522216797],[126,39,68,6.175511837005615],[126,39,69,6.176268100738525],[126,39,70,6.182623863220215],[126,39,71,6.195735454559326],[126,39,72,6.219391822814941],[126,39,73,6.2439866065979],[126,39,74,6.256223201751709],[126,39,75,6.260167121887207],[126,39,76,6.261189937591553],[126,39,77,6.2600321769714355],[126,39,78,6.256808280944824],[126,39,79,6.2509446144104],[126,40,64,6.18121862411499],[126,40,65,6.186306476593018],[126,40,66,6.183719635009766],[126,40,67,6.178966522216797],[126,40,68,6.175511837005615],[126,40,69,6.176268100738525],[126,40,70,6.182623863220215],[126,40,71,6.195735454559326],[126,40,72,6.219391822814941],[126,40,73,6.2439866065979],[126,40,74,6.256223201751709],[126,40,75,6.260167121887207],[126,40,76,6.261189937591553],[126,40,77,6.2600321769714355],[126,40,78,6.256808280944824],[126,40,79,6.2509446144104],[126,41,64,6.18121862411499],[126,41,65,6.186306476593018],[126,41,66,6.183719635009766],[126,41,67,6.178966522216797],[126,41,68,6.175511837005615],[126,41,69,6.176268100738525],[126,41,70,6.182623863220215],[126,41,71,6.195735454559326],[126,41,72,6.219391822814941],[126,41,73,6.2439866065979],[126,41,74,6.256223201751709],[126,41,75,6.260167121887207],[126,41,76,6.261189937591553],[126,41,77,6.2600321769714355],[126,41,78,6.256808280944824],[126,41,79,6.2509446144104],[126,42,64,6.18121862411499],[126,42,65,6.186306476593018],[126,42,66,6.183719635009766],[126,42,67,6.178966522216797],[126,42,68,6.175511837005615],[126,42,69,6.176268100738525],[126,42,70,6.182623863220215],[126,42,71,6.195735454559326],[126,42,72,6.219391822814941],[126,42,73,6.2439866065979],[126,42,74,6.256223201751709],[126,42,75,6.260167121887207],[126,42,76,6.261189937591553],[126,42,77,6.2600321769714355],[126,42,78,6.256808280944824],[126,42,79,6.2509446144104],[126,43,64,6.18121862411499],[126,43,65,6.186306476593018],[126,43,66,6.183719635009766],[126,43,67,6.178966522216797],[126,43,68,6.175511837005615],[126,43,69,6.176268100738525],[126,43,70,6.182623863220215],[126,43,71,6.195735454559326],[126,43,72,6.219391822814941],[126,43,73,6.2439866065979],[126,43,74,6.256223201751709],[126,43,75,6.260167121887207],[126,43,76,6.261189937591553],[126,43,77,6.2600321769714355],[126,43,78,6.256808280944824],[126,43,79,6.2509446144104],[126,44,64,6.18121862411499],[126,44,65,6.186306476593018],[126,44,66,6.183719635009766],[126,44,67,6.178966522216797],[126,44,68,6.175511837005615],[126,44,69,6.176268100738525],[126,44,70,6.182623863220215],[126,44,71,6.195735454559326],[126,44,72,6.219391822814941],[126,44,73,6.2439866065979],[126,44,74,6.256223201751709],[126,44,75,6.260167121887207],[126,44,76,6.261189937591553],[126,44,77,6.2600321769714355],[126,44,78,6.256808280944824],[126,44,79,6.2509446144104],[126,45,64,6.18121862411499],[126,45,65,6.186306476593018],[126,45,66,6.183719635009766],[126,45,67,6.178966522216797],[126,45,68,6.175511837005615],[126,45,69,6.176268100738525],[126,45,70,6.182623863220215],[126,45,71,6.195735454559326],[126,45,72,6.219391822814941],[126,45,73,6.2439866065979],[126,45,74,6.256223201751709],[126,45,75,6.260167121887207],[126,45,76,6.261189937591553],[126,45,77,6.2600321769714355],[126,45,78,6.256808280944824],[126,45,79,6.2509446144104],[126,46,64,6.18121862411499],[126,46,65,6.186306476593018],[126,46,66,6.183719635009766],[126,46,67,6.178966522216797],[126,46,68,6.175511837005615],[126,46,69,6.176268100738525],[126,46,70,6.182623863220215],[126,46,71,6.195735454559326],[126,46,72,6.219391822814941],[126,46,73,6.2439866065979],[126,46,74,6.256223201751709],[126,46,75,6.260167121887207],[126,46,76,6.261189937591553],[126,46,77,6.2600321769714355],[126,46,78,6.256808280944824],[126,46,79,6.2509446144104],[126,47,64,6.18121862411499],[126,47,65,6.186306476593018],[126,47,66,6.183719635009766],[126,47,67,6.178966522216797],[126,47,68,6.175511837005615],[126,47,69,6.176268100738525],[126,47,70,6.182623863220215],[126,47,71,6.195735454559326],[126,47,72,6.219391822814941],[126,47,73,6.2439866065979],[126,47,74,6.256223201751709],[126,47,75,6.260167121887207],[126,47,76,6.261189937591553],[126,47,77,6.2600321769714355],[126,47,78,6.256808280944824],[126,47,79,6.2509446144104],[126,48,64,6.18121862411499],[126,48,65,6.186306476593018],[126,48,66,6.183719635009766],[126,48,67,6.178966522216797],[126,48,68,6.175511837005615],[126,48,69,6.176268100738525],[126,48,70,6.182623863220215],[126,48,71,6.195735454559326],[126,48,72,6.219391822814941],[126,48,73,6.2439866065979],[126,48,74,6.256223201751709],[126,48,75,6.260167121887207],[126,48,76,6.261189937591553],[126,48,77,6.2600321769714355],[126,48,78,6.256808280944824],[126,48,79,6.2509446144104],[126,49,64,6.18121862411499],[126,49,65,6.186306476593018],[126,49,66,6.183719635009766],[126,49,67,6.178966522216797],[126,49,68,6.175511837005615],[126,49,69,6.176268100738525],[126,49,70,6.182623863220215],[126,49,71,6.195735454559326],[126,49,72,6.219391822814941],[126,49,73,6.2439866065979],[126,49,74,6.256223201751709],[126,49,75,6.260167121887207],[126,49,76,6.261189937591553],[126,49,77,6.2600321769714355],[126,49,78,6.256808280944824],[126,49,79,6.2509446144104],[126,50,64,6.18121862411499],[126,50,65,6.186306476593018],[126,50,66,6.183719635009766],[126,50,67,6.178966522216797],[126,50,68,6.175511837005615],[126,50,69,6.176268100738525],[126,50,70,6.182623863220215],[126,50,71,6.195735454559326],[126,50,72,6.219391822814941],[126,50,73,6.2439866065979],[126,50,74,6.256223201751709],[126,50,75,6.260167121887207],[126,50,76,6.261189937591553],[126,50,77,6.2600321769714355],[126,50,78,6.256808280944824],[126,50,79,6.2509446144104],[126,51,64,6.18121862411499],[126,51,65,6.186306476593018],[126,51,66,6.183719635009766],[126,51,67,6.178966522216797],[126,51,68,6.175511837005615],[126,51,69,6.176268100738525],[126,51,70,6.182623863220215],[126,51,71,6.195735454559326],[126,51,72,6.219391822814941],[126,51,73,6.2439866065979],[126,51,74,6.256223201751709],[126,51,75,6.260167121887207],[126,51,76,6.261189937591553],[126,51,77,6.2600321769714355],[126,51,78,6.256808280944824],[126,51,79,6.2509446144104],[126,52,64,6.18121862411499],[126,52,65,6.186306476593018],[126,52,66,6.183719635009766],[126,52,67,6.178966522216797],[126,52,68,6.175511837005615],[126,52,69,6.176268100738525],[126,52,70,6.182623863220215],[126,52,71,6.195735454559326],[126,52,72,6.219391822814941],[126,52,73,6.2439866065979],[126,52,74,6.256223201751709],[126,52,75,6.260167121887207],[126,52,76,6.261189937591553],[126,52,77,6.2600321769714355],[126,52,78,6.256808280944824],[126,52,79,6.2509446144104],[126,53,64,6.18121862411499],[126,53,65,6.186306476593018],[126,53,66,6.183719635009766],[126,53,67,6.178966522216797],[126,53,68,6.175511837005615],[126,53,69,6.176268100738525],[126,53,70,6.182623863220215],[126,53,71,6.195735454559326],[126,53,72,6.219391822814941],[126,53,73,6.2439866065979],[126,53,74,6.256223201751709],[126,53,75,6.260167121887207],[126,53,76,6.261189937591553],[126,53,77,6.2600321769714355],[126,53,78,6.256808280944824],[126,53,79,6.2509446144104],[126,54,64,6.18121862411499],[126,54,65,6.186306476593018],[126,54,66,6.183719635009766],[126,54,67,6.178966522216797],[126,54,68,6.175511837005615],[126,54,69,6.176268100738525],[126,54,70,6.182623863220215],[126,54,71,6.195735454559326],[126,54,72,6.219391822814941],[126,54,73,6.2439866065979],[126,54,74,6.256223201751709],[126,54,75,6.260167121887207],[126,54,76,6.261189937591553],[126,54,77,6.2600321769714355],[126,54,78,6.256808280944824],[126,54,79,6.2509446144104],[126,55,64,6.18121862411499],[126,55,65,6.186306476593018],[126,55,66,6.183719635009766],[126,55,67,6.178966522216797],[126,55,68,6.175511837005615],[126,55,69,6.176268100738525],[126,55,70,6.182623863220215],[126,55,71,6.195735454559326],[126,55,72,6.219391822814941],[126,55,73,6.2439866065979],[126,55,74,6.256223201751709],[126,55,75,6.260167121887207],[126,55,76,6.261189937591553],[126,55,77,6.2600321769714355],[126,55,78,6.256808280944824],[126,55,79,6.2509446144104],[126,56,64,6.18121862411499],[126,56,65,6.186306476593018],[126,56,66,6.183719635009766],[126,56,67,6.178966522216797],[126,56,68,6.175511837005615],[126,56,69,6.176268100738525],[126,56,70,6.182623863220215],[126,56,71,6.195735454559326],[126,56,72,6.219391822814941],[126,56,73,6.2439866065979],[126,56,74,6.256223201751709],[126,56,75,6.260167121887207],[126,56,76,6.261189937591553],[126,56,77,6.2600321769714355],[126,56,78,6.256808280944824],[126,56,79,6.2509446144104],[126,57,64,6.18121862411499],[126,57,65,6.186306476593018],[126,57,66,6.183719635009766],[126,57,67,6.178966522216797],[126,57,68,6.175511837005615],[126,57,69,6.176268100738525],[126,57,70,6.182623863220215],[126,57,71,6.195735454559326],[126,57,72,6.219391822814941],[126,57,73,6.2439866065979],[126,57,74,6.256223201751709],[126,57,75,6.260167121887207],[126,57,76,6.261189937591553],[126,57,77,6.2600321769714355],[126,57,78,6.256808280944824],[126,57,79,6.2509446144104],[126,58,64,6.18121862411499],[126,58,65,6.186306476593018],[126,58,66,6.183719635009766],[126,58,67,6.178966522216797],[126,58,68,6.175511837005615],[126,58,69,6.176268100738525],[126,58,70,6.182623863220215],[126,58,71,6.195735454559326],[126,58,72,6.219391822814941],[126,58,73,6.2439866065979],[126,58,74,6.256223201751709],[126,58,75,6.260167121887207],[126,58,76,6.261189937591553],[126,58,77,6.2600321769714355],[126,58,78,6.256808280944824],[126,58,79,6.2509446144104],[126,59,64,6.18121862411499],[126,59,65,6.186306476593018],[126,59,66,6.183719635009766],[126,59,67,6.178966522216797],[126,59,68,6.175511837005615],[126,59,69,6.176268100738525],[126,59,70,6.182623863220215],[126,59,71,6.195735454559326],[126,59,72,6.219391822814941],[126,59,73,6.2439866065979],[126,59,74,6.256223201751709],[126,59,75,6.260167121887207],[126,59,76,6.261189937591553],[126,59,77,6.2600321769714355],[126,59,78,6.256808280944824],[126,59,79,6.2509446144104],[126,60,64,6.18121862411499],[126,60,65,6.186306476593018],[126,60,66,6.183719635009766],[126,60,67,6.178966522216797],[126,60,68,6.175511837005615],[126,60,69,6.176268100738525],[126,60,70,6.182623863220215],[126,60,71,6.195735454559326],[126,60,72,6.219391822814941],[126,60,73,6.2439866065979],[126,60,74,6.256223201751709],[126,60,75,6.260167121887207],[126,60,76,6.261189937591553],[126,60,77,6.2600321769714355],[126,60,78,6.256808280944824],[126,60,79,6.2509446144104],[126,61,64,6.18121862411499],[126,61,65,6.186306476593018],[126,61,66,6.183719635009766],[126,61,67,6.178966522216797],[126,61,68,6.175511837005615],[126,61,69,6.176268100738525],[126,61,70,6.182623863220215],[126,61,71,6.195735454559326],[126,61,72,6.219391822814941],[126,61,73,6.2439866065979],[126,61,74,6.256223201751709],[126,61,75,6.260167121887207],[126,61,76,6.261189937591553],[126,61,77,6.2600321769714355],[126,61,78,6.256808280944824],[126,61,79,6.2509446144104],[126,62,64,6.18121862411499],[126,62,65,6.186306476593018],[126,62,66,6.183719635009766],[126,62,67,6.178966522216797],[126,62,68,6.175511837005615],[126,62,69,6.176268100738525],[126,62,70,6.182623863220215],[126,62,71,6.195735454559326],[126,62,72,6.219391822814941],[126,62,73,6.2439866065979],[126,62,74,6.256223201751709],[126,62,75,6.260167121887207],[126,62,76,6.261189937591553],[126,62,77,6.2600321769714355],[126,62,78,6.256808280944824],[126,62,79,6.2509446144104],[126,63,64,6.18121862411499],[126,63,65,6.186306476593018],[126,63,66,6.183719635009766],[126,63,67,6.178966522216797],[126,63,68,6.175511837005615],[126,63,69,6.176268100738525],[126,63,70,6.182623863220215],[126,63,71,6.195735454559326],[126,63,72,6.219391822814941],[126,63,73,6.2439866065979],[126,63,74,6.256223201751709],[126,63,75,6.260167121887207],[126,63,76,6.261189937591553],[126,63,77,6.2600321769714355],[126,63,78,6.256808280944824],[126,63,79,6.2509446144104],[126,64,64,6.18121862411499],[126,64,65,6.186306476593018],[126,64,66,6.183719635009766],[126,64,67,6.178966522216797],[126,64,68,6.175511837005615],[126,64,69,6.176268100738525],[126,64,70,6.182623863220215],[126,64,71,6.195735454559326],[126,64,72,6.219391822814941],[126,64,73,6.2439866065979],[126,64,74,6.256223201751709],[126,64,75,6.260167121887207],[126,64,76,6.261189937591553],[126,64,77,6.2600321769714355],[126,64,78,6.256808280944824],[126,64,79,6.2509446144104],[126,65,64,6.18121862411499],[126,65,65,6.186306476593018],[126,65,66,6.183719635009766],[126,65,67,6.178966522216797],[126,65,68,6.175511837005615],[126,65,69,6.176268100738525],[126,65,70,6.182623863220215],[126,65,71,6.195735454559326],[126,65,72,6.219391822814941],[126,65,73,6.2439866065979],[126,65,74,6.256223201751709],[126,65,75,6.260167121887207],[126,65,76,6.261189937591553],[126,65,77,6.2600321769714355],[126,65,78,6.256808280944824],[126,65,79,6.2509446144104],[126,66,64,6.18121862411499],[126,66,65,6.186306476593018],[126,66,66,6.183719635009766],[126,66,67,6.178966522216797],[126,66,68,6.175511837005615],[126,66,69,6.176268100738525],[126,66,70,6.182623863220215],[126,66,71,6.195735454559326],[126,66,72,6.219391822814941],[126,66,73,6.2439866065979],[126,66,74,6.256223201751709],[126,66,75,6.260167121887207],[126,66,76,6.261189937591553],[126,66,77,6.2600321769714355],[126,66,78,6.256808280944824],[126,66,79,6.2509446144104],[126,67,64,6.18121862411499],[126,67,65,6.186306476593018],[126,67,66,6.183719635009766],[126,67,67,6.178966522216797],[126,67,68,6.175511837005615],[126,67,69,6.176268100738525],[126,67,70,6.182623863220215],[126,67,71,6.195735454559326],[126,67,72,6.219391822814941],[126,67,73,6.2439866065979],[126,67,74,6.256223201751709],[126,67,75,6.260167121887207],[126,67,76,6.261189937591553],[126,67,77,6.2600321769714355],[126,67,78,6.256808280944824],[126,67,79,6.2509446144104],[126,68,64,6.18121862411499],[126,68,65,6.186306476593018],[126,68,66,6.183719635009766],[126,68,67,6.178966522216797],[126,68,68,6.175511837005615],[126,68,69,6.176268100738525],[126,68,70,6.182623863220215],[126,68,71,6.195735454559326],[126,68,72,6.219391822814941],[126,68,73,6.2439866065979],[126,68,74,6.256223201751709],[126,68,75,6.260167121887207],[126,68,76,6.261189937591553],[126,68,77,6.2600321769714355],[126,68,78,6.256808280944824],[126,68,79,6.2509446144104],[126,69,64,6.18121862411499],[126,69,65,6.186306476593018],[126,69,66,6.183719635009766],[126,69,67,6.178966522216797],[126,69,68,6.175511837005615],[126,69,69,6.176268100738525],[126,69,70,6.182623863220215],[126,69,71,6.195735454559326],[126,69,72,6.219391822814941],[126,69,73,6.2439866065979],[126,69,74,6.256223201751709],[126,69,75,6.260167121887207],[126,69,76,6.261189937591553],[126,69,77,6.2600321769714355],[126,69,78,6.256808280944824],[126,69,79,6.2509446144104],[126,70,64,6.18121862411499],[126,70,65,6.186306476593018],[126,70,66,6.183719635009766],[126,70,67,6.178966522216797],[126,70,68,6.175511837005615],[126,70,69,6.176268100738525],[126,70,70,6.182623863220215],[126,70,71,6.195735454559326],[126,70,72,6.219391822814941],[126,70,73,6.2439866065979],[126,70,74,6.256223201751709],[126,70,75,6.260167121887207],[126,70,76,6.261189937591553],[126,70,77,6.2600321769714355],[126,70,78,6.256808280944824],[126,70,79,6.2509446144104],[126,71,64,6.18121862411499],[126,71,65,6.186306476593018],[126,71,66,6.183719635009766],[126,71,67,6.178966522216797],[126,71,68,6.175511837005615],[126,71,69,6.176268100738525],[126,71,70,6.182623863220215],[126,71,71,6.195735454559326],[126,71,72,6.219391822814941],[126,71,73,6.2439866065979],[126,71,74,6.256223201751709],[126,71,75,6.260167121887207],[126,71,76,6.261189937591553],[126,71,77,6.2600321769714355],[126,71,78,6.256808280944824],[126,71,79,6.2509446144104],[126,72,64,6.18121862411499],[126,72,65,6.186306476593018],[126,72,66,6.183719635009766],[126,72,67,6.178966522216797],[126,72,68,6.175511837005615],[126,72,69,6.176268100738525],[126,72,70,6.182623863220215],[126,72,71,6.195735454559326],[126,72,72,6.219391822814941],[126,72,73,6.2439866065979],[126,72,74,6.256223201751709],[126,72,75,6.260167121887207],[126,72,76,6.261189937591553],[126,72,77,6.2600321769714355],[126,72,78,6.256808280944824],[126,72,79,6.2509446144104],[126,73,64,6.18121862411499],[126,73,65,6.186306476593018],[126,73,66,6.183719635009766],[126,73,67,6.178966522216797],[126,73,68,6.175511837005615],[126,73,69,6.176268100738525],[126,73,70,6.182623863220215],[126,73,71,6.195735454559326],[126,73,72,6.219391822814941],[126,73,73,6.2439866065979],[126,73,74,6.256223201751709],[126,73,75,6.260167121887207],[126,73,76,6.261189937591553],[126,73,77,6.2600321769714355],[126,73,78,6.256808280944824],[126,73,79,6.2509446144104],[126,74,64,6.18121862411499],[126,74,65,6.186306476593018],[126,74,66,6.183719635009766],[126,74,67,6.178966522216797],[126,74,68,6.175511837005615],[126,74,69,6.176268100738525],[126,74,70,6.182623863220215],[126,74,71,6.195735454559326],[126,74,72,6.219391822814941],[126,74,73,6.2439866065979],[126,74,74,6.256223201751709],[126,74,75,6.260167121887207],[126,74,76,6.261189937591553],[126,74,77,6.2600321769714355],[126,74,78,6.256808280944824],[126,74,79,6.2509446144104],[126,75,64,6.18121862411499],[126,75,65,6.186306476593018],[126,75,66,6.183719635009766],[126,75,67,6.178966522216797],[126,75,68,6.175511837005615],[126,75,69,6.176268100738525],[126,75,70,6.182623863220215],[126,75,71,6.195735454559326],[126,75,72,6.219391822814941],[126,75,73,6.2439866065979],[126,75,74,6.256223201751709],[126,75,75,6.260167121887207],[126,75,76,6.261189937591553],[126,75,77,6.2600321769714355],[126,75,78,6.256808280944824],[126,75,79,6.2509446144104],[126,76,64,6.18121862411499],[126,76,65,6.186306476593018],[126,76,66,6.183719635009766],[126,76,67,6.178966522216797],[126,76,68,6.175511837005615],[126,76,69,6.176268100738525],[126,76,70,6.182623863220215],[126,76,71,6.195735454559326],[126,76,72,6.219391822814941],[126,76,73,6.2439866065979],[126,76,74,6.256223201751709],[126,76,75,6.260167121887207],[126,76,76,6.261189937591553],[126,76,77,6.2600321769714355],[126,76,78,6.256808280944824],[126,76,79,6.2509446144104],[126,77,64,6.18121862411499],[126,77,65,6.186306476593018],[126,77,66,6.183719635009766],[126,77,67,6.178966522216797],[126,77,68,6.175511837005615],[126,77,69,6.176268100738525],[126,77,70,6.182623863220215],[126,77,71,6.195735454559326],[126,77,72,6.219391822814941],[126,77,73,6.2439866065979],[126,77,74,6.256223201751709],[126,77,75,6.260167121887207],[126,77,76,6.261189937591553],[126,77,77,6.2600321769714355],[126,77,78,6.256808280944824],[126,77,79,6.2509446144104],[126,78,64,6.18121862411499],[126,78,65,6.186306476593018],[126,78,66,6.183719635009766],[126,78,67,6.178966522216797],[126,78,68,6.175511837005615],[126,78,69,6.176268100738525],[126,78,70,6.182623863220215],[126,78,71,6.195735454559326],[126,78,72,6.219391822814941],[126,78,73,6.2439866065979],[126,78,74,6.256223201751709],[126,78,75,6.260167121887207],[126,78,76,6.261189937591553],[126,78,77,6.2600321769714355],[126,78,78,6.256808280944824],[126,78,79,6.2509446144104],[126,79,64,6.18121862411499],[126,79,65,6.186306476593018],[126,79,66,6.183719635009766],[126,79,67,6.178966522216797],[126,79,68,6.175511837005615],[126,79,69,6.176268100738525],[126,79,70,6.182623863220215],[126,79,71,6.195735454559326],[126,79,72,6.219391822814941],[126,79,73,6.2439866065979],[126,79,74,6.256223201751709],[126,79,75,6.260167121887207],[126,79,76,6.261189937591553],[126,79,77,6.2600321769714355],[126,79,78,6.256808280944824],[126,79,79,6.2509446144104],[126,80,64,6.18121862411499],[126,80,65,6.186306476593018],[126,80,66,6.183719635009766],[126,80,67,6.178966522216797],[126,80,68,6.175511837005615],[126,80,69,6.176268100738525],[126,80,70,6.182623863220215],[126,80,71,6.195735454559326],[126,80,72,6.219391822814941],[126,80,73,6.2439866065979],[126,80,74,6.256223201751709],[126,80,75,6.260167121887207],[126,80,76,6.261189937591553],[126,80,77,6.2600321769714355],[126,80,78,6.256808280944824],[126,80,79,6.2509446144104],[126,81,64,6.18121862411499],[126,81,65,6.186306476593018],[126,81,66,6.183719635009766],[126,81,67,6.178966522216797],[126,81,68,6.175511837005615],[126,81,69,6.176268100738525],[126,81,70,6.182623863220215],[126,81,71,6.195735454559326],[126,81,72,6.219391822814941],[126,81,73,6.2439866065979],[126,81,74,6.256223201751709],[126,81,75,6.260167121887207],[126,81,76,6.261189937591553],[126,81,77,6.2600321769714355],[126,81,78,6.256808280944824],[126,81,79,6.2509446144104],[126,82,64,6.18121862411499],[126,82,65,6.186306476593018],[126,82,66,6.183719635009766],[126,82,67,6.178966522216797],[126,82,68,6.175511837005615],[126,82,69,6.176268100738525],[126,82,70,6.182623863220215],[126,82,71,6.195735454559326],[126,82,72,6.219391822814941],[126,82,73,6.2439866065979],[126,82,74,6.256223201751709],[126,82,75,6.260167121887207],[126,82,76,6.261189937591553],[126,82,77,6.2600321769714355],[126,82,78,6.256808280944824],[126,82,79,6.2509446144104],[126,83,64,6.18121862411499],[126,83,65,6.186306476593018],[126,83,66,6.183719635009766],[126,83,67,6.178966522216797],[126,83,68,6.175511837005615],[126,83,69,6.176268100738525],[126,83,70,6.182623863220215],[126,83,71,6.195735454559326],[126,83,72,6.219391822814941],[126,83,73,6.2439866065979],[126,83,74,6.256223201751709],[126,83,75,6.260167121887207],[126,83,76,6.261189937591553],[126,83,77,6.2600321769714355],[126,83,78,6.256808280944824],[126,83,79,6.2509446144104],[126,84,64,6.18121862411499],[126,84,65,6.186306476593018],[126,84,66,6.183719635009766],[126,84,67,6.178966522216797],[126,84,68,6.175511837005615],[126,84,69,6.176268100738525],[126,84,70,6.182623863220215],[126,84,71,6.195735454559326],[126,84,72,6.219391822814941],[126,84,73,6.2439866065979],[126,84,74,6.256223201751709],[126,84,75,6.260167121887207],[126,84,76,6.261189937591553],[126,84,77,6.2600321769714355],[126,84,78,6.256808280944824],[126,84,79,6.2509446144104],[126,85,64,6.18121862411499],[126,85,65,6.186306476593018],[126,85,66,6.183719635009766],[126,85,67,6.178966522216797],[126,85,68,6.175511837005615],[126,85,69,6.176268100738525],[126,85,70,6.182623863220215],[126,85,71,6.195735454559326],[126,85,72,6.219391822814941],[126,85,73,6.2439866065979],[126,85,74,6.256223201751709],[126,85,75,6.260167121887207],[126,85,76,6.261189937591553],[126,85,77,6.2600321769714355],[126,85,78,6.256808280944824],[126,85,79,6.2509446144104],[126,86,64,6.18121862411499],[126,86,65,6.186306476593018],[126,86,66,6.183719635009766],[126,86,67,6.178966522216797],[126,86,68,6.175511837005615],[126,86,69,6.176268100738525],[126,86,70,6.182623863220215],[126,86,71,6.195735454559326],[126,86,72,6.219391822814941],[126,86,73,6.2439866065979],[126,86,74,6.256223201751709],[126,86,75,6.260167121887207],[126,86,76,6.261189937591553],[126,86,77,6.2600321769714355],[126,86,78,6.256808280944824],[126,86,79,6.2509446144104],[126,87,64,6.18121862411499],[126,87,65,6.186306476593018],[126,87,66,6.183719635009766],[126,87,67,6.178966522216797],[126,87,68,6.175511837005615],[126,87,69,6.176268100738525],[126,87,70,6.182623863220215],[126,87,71,6.195735454559326],[126,87,72,6.219391822814941],[126,87,73,6.2439866065979],[126,87,74,6.256223201751709],[126,87,75,6.260167121887207],[126,87,76,6.261189937591553],[126,87,77,6.2600321769714355],[126,87,78,6.256808280944824],[126,87,79,6.2509446144104],[126,88,64,6.18121862411499],[126,88,65,6.186306476593018],[126,88,66,6.183719635009766],[126,88,67,6.178966522216797],[126,88,68,6.175511837005615],[126,88,69,6.176268100738525],[126,88,70,6.182623863220215],[126,88,71,6.195735454559326],[126,88,72,6.219391822814941],[126,88,73,6.2439866065979],[126,88,74,6.256223201751709],[126,88,75,6.260167121887207],[126,88,76,6.261189937591553],[126,88,77,6.2600321769714355],[126,88,78,6.256808280944824],[126,88,79,6.2509446144104],[126,89,64,6.18121862411499],[126,89,65,6.186306476593018],[126,89,66,6.183719635009766],[126,89,67,6.178966522216797],[126,89,68,6.175511837005615],[126,89,69,6.176268100738525],[126,89,70,6.182623863220215],[126,89,71,6.195735454559326],[126,89,72,6.219391822814941],[126,89,73,6.2439866065979],[126,89,74,6.256223201751709],[126,89,75,6.260167121887207],[126,89,76,6.261189937591553],[126,89,77,6.2600321769714355],[126,89,78,6.256808280944824],[126,89,79,6.2509446144104],[126,90,64,6.18121862411499],[126,90,65,6.186306476593018],[126,90,66,6.183719635009766],[126,90,67,6.178966522216797],[126,90,68,6.175511837005615],[126,90,69,6.176268100738525],[126,90,70,6.182623863220215],[126,90,71,6.195735454559326],[126,90,72,6.219391822814941],[126,90,73,6.2439866065979],[126,90,74,6.256223201751709],[126,90,75,6.260167121887207],[126,90,76,6.261189937591553],[126,90,77,6.2600321769714355],[126,90,78,6.256808280944824],[126,90,79,6.2509446144104],[126,91,64,6.18121862411499],[126,91,65,6.186306476593018],[126,91,66,6.183719635009766],[126,91,67,6.178966522216797],[126,91,68,6.175511837005615],[126,91,69,6.176268100738525],[126,91,70,6.182623863220215],[126,91,71,6.195735454559326],[126,91,72,6.219391822814941],[126,91,73,6.2439866065979],[126,91,74,6.256223201751709],[126,91,75,6.260167121887207],[126,91,76,6.261189937591553],[126,91,77,6.2600321769714355],[126,91,78,6.256808280944824],[126,91,79,6.2509446144104],[126,92,64,6.18121862411499],[126,92,65,6.186306476593018],[126,92,66,6.183719635009766],[126,92,67,6.178966522216797],[126,92,68,6.175511837005615],[126,92,69,6.176268100738525],[126,92,70,6.182623863220215],[126,92,71,6.195735454559326],[126,92,72,6.219391822814941],[126,92,73,6.2439866065979],[126,92,74,6.256223201751709],[126,92,75,6.260167121887207],[126,92,76,6.261189937591553],[126,92,77,6.2600321769714355],[126,92,78,6.256808280944824],[126,92,79,6.2509446144104],[126,93,64,6.18121862411499],[126,93,65,6.186306476593018],[126,93,66,6.183719635009766],[126,93,67,6.178966522216797],[126,93,68,6.175511837005615],[126,93,69,6.176268100738525],[126,93,70,6.182623863220215],[126,93,71,6.195735454559326],[126,93,72,6.219391822814941],[126,93,73,6.2439866065979],[126,93,74,6.256223201751709],[126,93,75,6.260167121887207],[126,93,76,6.261189937591553],[126,93,77,6.2600321769714355],[126,93,78,6.256808280944824],[126,93,79,6.2509446144104],[126,94,64,6.18121862411499],[126,94,65,6.186306476593018],[126,94,66,6.183719635009766],[126,94,67,6.178966522216797],[126,94,68,6.175511837005615],[126,94,69,6.176268100738525],[126,94,70,6.182623863220215],[126,94,71,6.195735454559326],[126,94,72,6.219391822814941],[126,94,73,6.2439866065979],[126,94,74,6.256223201751709],[126,94,75,6.260167121887207],[126,94,76,6.261189937591553],[126,94,77,6.2600321769714355],[126,94,78,6.256808280944824],[126,94,79,6.2509446144104],[126,95,64,6.18121862411499],[126,95,65,6.186306476593018],[126,95,66,6.183719635009766],[126,95,67,6.178966522216797],[126,95,68,6.175511837005615],[126,95,69,6.176268100738525],[126,95,70,6.182623863220215],[126,95,71,6.195735454559326],[126,95,72,6.219391822814941],[126,95,73,6.2439866065979],[126,95,74,6.256223201751709],[126,95,75,6.260167121887207],[126,95,76,6.261189937591553],[126,95,77,6.2600321769714355],[126,95,78,6.256808280944824],[126,95,79,6.2509446144104],[126,96,64,6.18121862411499],[126,96,65,6.186306476593018],[126,96,66,6.183719635009766],[126,96,67,6.178966522216797],[126,96,68,6.175511837005615],[126,96,69,6.176268100738525],[126,96,70,6.182623863220215],[126,96,71,6.195735454559326],[126,96,72,6.219391822814941],[126,96,73,6.2439866065979],[126,96,74,6.256223201751709],[126,96,75,6.260167121887207],[126,96,76,6.261189937591553],[126,96,77,6.2600321769714355],[126,96,78,6.256808280944824],[126,96,79,6.2509446144104],[126,97,64,6.18121862411499],[126,97,65,6.186306476593018],[126,97,66,6.183719635009766],[126,97,67,6.178966522216797],[126,97,68,6.175511837005615],[126,97,69,6.176268100738525],[126,97,70,6.182623863220215],[126,97,71,6.195735454559326],[126,97,72,6.219391822814941],[126,97,73,6.2439866065979],[126,97,74,6.256223201751709],[126,97,75,6.260167121887207],[126,97,76,6.261189937591553],[126,97,77,6.2600321769714355],[126,97,78,6.256808280944824],[126,97,79,6.2509446144104],[126,98,64,6.18121862411499],[126,98,65,6.186306476593018],[126,98,66,6.183719635009766],[126,98,67,6.178966522216797],[126,98,68,6.175511837005615],[126,98,69,6.176268100738525],[126,98,70,6.182623863220215],[126,98,71,6.195735454559326],[126,98,72,6.219391822814941],[126,98,73,6.2439866065979],[126,98,74,6.256223201751709],[126,98,75,6.260167121887207],[126,98,76,6.261189937591553],[126,98,77,6.2600321769714355],[126,98,78,6.256808280944824],[126,98,79,6.2509446144104],[126,99,64,6.18121862411499],[126,99,65,6.186306476593018],[126,99,66,6.183719635009766],[126,99,67,6.178966522216797],[126,99,68,6.175511837005615],[126,99,69,6.176268100738525],[126,99,70,6.182623863220215],[126,99,71,6.195735454559326],[126,99,72,6.219391822814941],[126,99,73,6.2439866065979],[126,99,74,6.256223201751709],[126,99,75,6.260167121887207],[126,99,76,6.261189937591553],[126,99,77,6.2600321769714355],[126,99,78,6.256808280944824],[126,99,79,6.2509446144104],[126,100,64,6.18121862411499],[126,100,65,6.186306476593018],[126,100,66,6.183719635009766],[126,100,67,6.178966522216797],[126,100,68,6.175511837005615],[126,100,69,6.176268100738525],[126,100,70,6.182623863220215],[126,100,71,6.195735454559326],[126,100,72,6.219391822814941],[126,100,73,6.2439866065979],[126,100,74,6.256223201751709],[126,100,75,6.260167121887207],[126,100,76,6.261189937591553],[126,100,77,6.2600321769714355],[126,100,78,6.256808280944824],[126,100,79,6.2509446144104],[126,101,64,6.18121862411499],[126,101,65,6.186306476593018],[126,101,66,6.183719635009766],[126,101,67,6.178966522216797],[126,101,68,6.175511837005615],[126,101,69,6.176268100738525],[126,101,70,6.182623863220215],[126,101,71,6.195735454559326],[126,101,72,6.219391822814941],[126,101,73,6.2439866065979],[126,101,74,6.256223201751709],[126,101,75,6.260167121887207],[126,101,76,6.261189937591553],[126,101,77,6.2600321769714355],[126,101,78,6.256808280944824],[126,101,79,6.2509446144104],[126,102,64,6.18121862411499],[126,102,65,6.186306476593018],[126,102,66,6.183719635009766],[126,102,67,6.178966522216797],[126,102,68,6.175511837005615],[126,102,69,6.176268100738525],[126,102,70,6.182623863220215],[126,102,71,6.195735454559326],[126,102,72,6.219391822814941],[126,102,73,6.2439866065979],[126,102,74,6.256223201751709],[126,102,75,6.260167121887207],[126,102,76,6.261189937591553],[126,102,77,6.2600321769714355],[126,102,78,6.256808280944824],[126,102,79,6.2509446144104],[126,103,64,6.18121862411499],[126,103,65,6.186306476593018],[126,103,66,6.183719635009766],[126,103,67,6.178966522216797],[126,103,68,6.175511837005615],[126,103,69,6.176268100738525],[126,103,70,6.182623863220215],[126,103,71,6.195735454559326],[126,103,72,6.219391822814941],[126,103,73,6.2439866065979],[126,103,74,6.256223201751709],[126,103,75,6.260167121887207],[126,103,76,6.261189937591553],[126,103,77,6.2600321769714355],[126,103,78,6.256808280944824],[126,103,79,6.2509446144104],[126,104,64,6.18121862411499],[126,104,65,6.186306476593018],[126,104,66,6.183719635009766],[126,104,67,6.178966522216797],[126,104,68,6.175511837005615],[126,104,69,6.176268100738525],[126,104,70,6.182623863220215],[126,104,71,6.195735454559326],[126,104,72,6.219391822814941],[126,104,73,6.2439866065979],[126,104,74,6.256223201751709],[126,104,75,6.260167121887207],[126,104,76,6.261189937591553],[126,104,77,6.2600321769714355],[126,104,78,6.256808280944824],[126,104,79,6.2509446144104],[126,105,64,6.18121862411499],[126,105,65,6.186306476593018],[126,105,66,6.183719635009766],[126,105,67,6.178966522216797],[126,105,68,6.175511837005615],[126,105,69,6.176268100738525],[126,105,70,6.182623863220215],[126,105,71,6.195735454559326],[126,105,72,6.219391822814941],[126,105,73,6.2439866065979],[126,105,74,6.256223201751709],[126,105,75,6.260167121887207],[126,105,76,6.261189937591553],[126,105,77,6.2600321769714355],[126,105,78,6.256808280944824],[126,105,79,6.2509446144104],[126,106,64,6.18121862411499],[126,106,65,6.186306476593018],[126,106,66,6.183719635009766],[126,106,67,6.178966522216797],[126,106,68,6.175511837005615],[126,106,69,6.176268100738525],[126,106,70,6.182623863220215],[126,106,71,6.195735454559326],[126,106,72,6.219391822814941],[126,106,73,6.2439866065979],[126,106,74,6.256223201751709],[126,106,75,6.260167121887207],[126,106,76,6.261189937591553],[126,106,77,6.2600321769714355],[126,106,78,6.256808280944824],[126,106,79,6.2509446144104],[126,107,64,6.18121862411499],[126,107,65,6.186306476593018],[126,107,66,6.183719635009766],[126,107,67,6.178966522216797],[126,107,68,6.175511837005615],[126,107,69,6.176268100738525],[126,107,70,6.182623863220215],[126,107,71,6.195735454559326],[126,107,72,6.219391822814941],[126,107,73,6.2439866065979],[126,107,74,6.256223201751709],[126,107,75,6.260167121887207],[126,107,76,6.261189937591553],[126,107,77,6.2600321769714355],[126,107,78,6.256808280944824],[126,107,79,6.2509446144104],[126,108,64,6.18121862411499],[126,108,65,6.186306476593018],[126,108,66,6.183719635009766],[126,108,67,6.178966522216797],[126,108,68,6.175511837005615],[126,108,69,6.176268100738525],[126,108,70,6.182623863220215],[126,108,71,6.195735454559326],[126,108,72,6.219391822814941],[126,108,73,6.2439866065979],[126,108,74,6.256223201751709],[126,108,75,6.260167121887207],[126,108,76,6.261189937591553],[126,108,77,6.2600321769714355],[126,108,78,6.256808280944824],[126,108,79,6.2509446144104],[126,109,64,6.18121862411499],[126,109,65,6.186306476593018],[126,109,66,6.183719635009766],[126,109,67,6.178966522216797],[126,109,68,6.175511837005615],[126,109,69,6.176268100738525],[126,109,70,6.182623863220215],[126,109,71,6.195735454559326],[126,109,72,6.219391822814941],[126,109,73,6.2439866065979],[126,109,74,6.256223201751709],[126,109,75,6.260167121887207],[126,109,76,6.261189937591553],[126,109,77,6.2600321769714355],[126,109,78,6.256808280944824],[126,109,79,6.2509446144104],[126,110,64,6.18121862411499],[126,110,65,6.186306476593018],[126,110,66,6.183719635009766],[126,110,67,6.178966522216797],[126,110,68,6.175511837005615],[126,110,69,6.176268100738525],[126,110,70,6.182623863220215],[126,110,71,6.195735454559326],[126,110,72,6.219391822814941],[126,110,73,6.2439866065979],[126,110,74,6.256223201751709],[126,110,75,6.260167121887207],[126,110,76,6.261189937591553],[126,110,77,6.2600321769714355],[126,110,78,6.256808280944824],[126,110,79,6.2509446144104],[126,111,64,6.18121862411499],[126,111,65,6.186306476593018],[126,111,66,6.183719635009766],[126,111,67,6.178966522216797],[126,111,68,6.175511837005615],[126,111,69,6.176268100738525],[126,111,70,6.182623863220215],[126,111,71,6.195735454559326],[126,111,72,6.219391822814941],[126,111,73,6.2439866065979],[126,111,74,6.256223201751709],[126,111,75,6.260167121887207],[126,111,76,6.261189937591553],[126,111,77,6.2600321769714355],[126,111,78,6.256808280944824],[126,111,79,6.2509446144104],[126,112,64,6.18121862411499],[126,112,65,6.186306476593018],[126,112,66,6.183719635009766],[126,112,67,6.178966522216797],[126,112,68,6.175511837005615],[126,112,69,6.176268100738525],[126,112,70,6.182623863220215],[126,112,71,6.195735454559326],[126,112,72,6.219391822814941],[126,112,73,6.2439866065979],[126,112,74,6.256223201751709],[126,112,75,6.260167121887207],[126,112,76,6.261189937591553],[126,112,77,6.2600321769714355],[126,112,78,6.256808280944824],[126,112,79,6.2509446144104],[126,113,64,6.18121862411499],[126,113,65,6.186306476593018],[126,113,66,6.183719635009766],[126,113,67,6.178966522216797],[126,113,68,6.175511837005615],[126,113,69,6.176268100738525],[126,113,70,6.182623863220215],[126,113,71,6.195735454559326],[126,113,72,6.219391822814941],[126,113,73,6.2439866065979],[126,113,74,6.256223201751709],[126,113,75,6.260167121887207],[126,113,76,6.261189937591553],[126,113,77,6.2600321769714355],[126,113,78,6.256808280944824],[126,113,79,6.2509446144104],[126,114,64,6.18121862411499],[126,114,65,6.186306476593018],[126,114,66,6.183719635009766],[126,114,67,6.178966522216797],[126,114,68,6.175511837005615],[126,114,69,6.176268100738525],[126,114,70,6.182623863220215],[126,114,71,6.195735454559326],[126,114,72,6.219391822814941],[126,114,73,6.2439866065979],[126,114,74,6.256223201751709],[126,114,75,6.260167121887207],[126,114,76,6.261189937591553],[126,114,77,6.2600321769714355],[126,114,78,6.256808280944824],[126,114,79,6.2509446144104],[126,115,64,6.18121862411499],[126,115,65,6.186306476593018],[126,115,66,6.183719635009766],[126,115,67,6.178966522216797],[126,115,68,6.175511837005615],[126,115,69,6.176268100738525],[126,115,70,6.182623863220215],[126,115,71,6.195735454559326],[126,115,72,6.219391822814941],[126,115,73,6.2439866065979],[126,115,74,6.256223201751709],[126,115,75,6.260167121887207],[126,115,76,6.261189937591553],[126,115,77,6.2600321769714355],[126,115,78,6.256808280944824],[126,115,79,6.2509446144104],[126,116,64,6.18121862411499],[126,116,65,6.186306476593018],[126,116,66,6.183719635009766],[126,116,67,6.178966522216797],[126,116,68,6.175511837005615],[126,116,69,6.176268100738525],[126,116,70,6.182623863220215],[126,116,71,6.195735454559326],[126,116,72,6.219391822814941],[126,116,73,6.2439866065979],[126,116,74,6.256223201751709],[126,116,75,6.260167121887207],[126,116,76,6.261189937591553],[126,116,77,6.2600321769714355],[126,116,78,6.256808280944824],[126,116,79,6.2509446144104],[126,117,64,6.18121862411499],[126,117,65,6.186306476593018],[126,117,66,6.183719635009766],[126,117,67,6.178966522216797],[126,117,68,6.175511837005615],[126,117,69,6.176268100738525],[126,117,70,6.182623863220215],[126,117,71,6.195735454559326],[126,117,72,6.219391822814941],[126,117,73,6.2439866065979],[126,117,74,6.256223201751709],[126,117,75,6.260167121887207],[126,117,76,6.261189937591553],[126,117,77,6.2600321769714355],[126,117,78,6.256808280944824],[126,117,79,6.2509446144104],[126,118,64,6.18121862411499],[126,118,65,6.186306476593018],[126,118,66,6.183719635009766],[126,118,67,6.178966522216797],[126,118,68,6.175511837005615],[126,118,69,6.176268100738525],[126,118,70,6.182623863220215],[126,118,71,6.195735454559326],[126,118,72,6.219391822814941],[126,118,73,6.2439866065979],[126,118,74,6.256223201751709],[126,118,75,6.260167121887207],[126,118,76,6.261189937591553],[126,118,77,6.2600321769714355],[126,118,78,6.256808280944824],[126,118,79,6.2509446144104],[126,119,64,6.18121862411499],[126,119,65,6.186306476593018],[126,119,66,6.183719635009766],[126,119,67,6.178966522216797],[126,119,68,6.175511837005615],[126,119,69,6.176268100738525],[126,119,70,6.182623863220215],[126,119,71,6.195735454559326],[126,119,72,6.219391822814941],[126,119,73,6.2439866065979],[126,119,74,6.256223201751709],[126,119,75,6.260167121887207],[126,119,76,6.261189937591553],[126,119,77,6.2600321769714355],[126,119,78,6.256808280944824],[126,119,79,6.2509446144104],[126,120,64,6.18121862411499],[126,120,65,6.186306476593018],[126,120,66,6.183719635009766],[126,120,67,6.178966522216797],[126,120,68,6.175511837005615],[126,120,69,6.176268100738525],[126,120,70,6.182623863220215],[126,120,71,6.195735454559326],[126,120,72,6.219391822814941],[126,120,73,6.2439866065979],[126,120,74,6.256223201751709],[126,120,75,6.260167121887207],[126,120,76,6.261189937591553],[126,120,77,6.2600321769714355],[126,120,78,6.256808280944824],[126,120,79,6.2509446144104],[126,121,64,6.18121862411499],[126,121,65,6.186306476593018],[126,121,66,6.183719635009766],[126,121,67,6.178966522216797],[126,121,68,6.175511837005615],[126,121,69,6.176268100738525],[126,121,70,6.182623863220215],[126,121,71,6.195735454559326],[126,121,72,6.219391822814941],[126,121,73,6.2439866065979],[126,121,74,6.256223201751709],[126,121,75,6.260167121887207],[126,121,76,6.261189937591553],[126,121,77,6.2600321769714355],[126,121,78,6.256808280944824],[126,121,79,6.2509446144104],[126,122,64,6.18121862411499],[126,122,65,6.186306476593018],[126,122,66,6.183719635009766],[126,122,67,6.178966522216797],[126,122,68,6.175511837005615],[126,122,69,6.176268100738525],[126,122,70,6.182623863220215],[126,122,71,6.195735454559326],[126,122,72,6.219391822814941],[126,122,73,6.2439866065979],[126,122,74,6.256223201751709],[126,122,75,6.260167121887207],[126,122,76,6.261189937591553],[126,122,77,6.2600321769714355],[126,122,78,6.256808280944824],[126,122,79,6.2509446144104],[126,123,64,6.18121862411499],[126,123,65,6.186306476593018],[126,123,66,6.183719635009766],[126,123,67,6.178966522216797],[126,123,68,6.175511837005615],[126,123,69,6.176268100738525],[126,123,70,6.182623863220215],[126,123,71,6.195735454559326],[126,123,72,6.219391822814941],[126,123,73,6.2439866065979],[126,123,74,6.256223201751709],[126,123,75,6.260167121887207],[126,123,76,6.261189937591553],[126,123,77,6.2600321769714355],[126,123,78,6.256808280944824],[126,123,79,6.2509446144104],[126,124,64,6.18121862411499],[126,124,65,6.186306476593018],[126,124,66,6.183719635009766],[126,124,67,6.178966522216797],[126,124,68,6.175511837005615],[126,124,69,6.176268100738525],[126,124,70,6.182623863220215],[126,124,71,6.195735454559326],[126,124,72,6.219391822814941],[126,124,73,6.2439866065979],[126,124,74,6.256223201751709],[126,124,75,6.260167121887207],[126,124,76,6.261189937591553],[126,124,77,6.2600321769714355],[126,124,78,6.256808280944824],[126,124,79,6.2509446144104],[126,125,64,6.18121862411499],[126,125,65,6.186306476593018],[126,125,66,6.183719635009766],[126,125,67,6.178966522216797],[126,125,68,6.175511837005615],[126,125,69,6.176268100738525],[126,125,70,6.182623863220215],[126,125,71,6.195735454559326],[126,125,72,6.219391822814941],[126,125,73,6.2439866065979],[126,125,74,6.256223201751709],[126,125,75,6.260167121887207],[126,125,76,6.261189937591553],[126,125,77,6.2600321769714355],[126,125,78,6.256808280944824],[126,125,79,6.2509446144104],[126,126,64,6.18121862411499],[126,126,65,6.186306476593018],[126,126,66,6.183719635009766],[126,126,67,6.178966522216797],[126,126,68,6.175511837005615],[126,126,69,6.176268100738525],[126,126,70,6.182623863220215],[126,126,71,6.195735454559326],[126,126,72,6.219391822814941],[126,126,73,6.2439866065979],[126,126,74,6.256223201751709],[126,126,75,6.260167121887207],[126,126,76,6.261189937591553],[126,126,77,6.2600321769714355],[126,126,78,6.256808280944824],[126,126,79,6.2509446144104],[126,127,64,6.18121862411499],[126,127,65,6.186306476593018],[126,127,66,6.183719635009766],[126,127,67,6.178966522216797],[126,127,68,6.175511837005615],[126,127,69,6.176268100738525],[126,127,70,6.182623863220215],[126,127,71,6.195735454559326],[126,127,72,6.219391822814941],[126,127,73,6.2439866065979],[126,127,74,6.256223201751709],[126,127,75,6.260167121887207],[126,127,76,6.261189937591553],[126,127,77,6.2600321769714355],[126,127,78,6.256808280944824],[126,127,79,6.2509446144104],[126,128,64,6.18121862411499],[126,128,65,6.186306476593018],[126,128,66,6.183719635009766],[126,128,67,6.178966522216797],[126,128,68,6.175511837005615],[126,128,69,6.176268100738525],[126,128,70,6.182623863220215],[126,128,71,6.195735454559326],[126,128,72,6.219391822814941],[126,128,73,6.2439866065979],[126,128,74,6.256223201751709],[126,128,75,6.260167121887207],[126,128,76,6.261189937591553],[126,128,77,6.2600321769714355],[126,128,78,6.256808280944824],[126,128,79,6.2509446144104],[126,129,64,6.18121862411499],[126,129,65,6.186306476593018],[126,129,66,6.183719635009766],[126,129,67,6.178966522216797],[126,129,68,6.175511837005615],[126,129,69,6.176268100738525],[126,129,70,6.182623863220215],[126,129,71,6.195735454559326],[126,129,72,6.219391822814941],[126,129,73,6.2439866065979],[126,129,74,6.256223201751709],[126,129,75,6.260167121887207],[126,129,76,6.261189937591553],[126,129,77,6.2600321769714355],[126,129,78,6.256808280944824],[126,129,79,6.2509446144104],[126,130,64,6.18121862411499],[126,130,65,6.186306476593018],[126,130,66,6.183719635009766],[126,130,67,6.178966522216797],[126,130,68,6.175511837005615],[126,130,69,6.176268100738525],[126,130,70,6.182623863220215],[126,130,71,6.195735454559326],[126,130,72,6.219391822814941],[126,130,73,6.2439866065979],[126,130,74,6.256223201751709],[126,130,75,6.260167121887207],[126,130,76,6.261189937591553],[126,130,77,6.2600321769714355],[126,130,78,6.256808280944824],[126,130,79,6.2509446144104],[126,131,64,6.18121862411499],[126,131,65,6.186306476593018],[126,131,66,6.183719635009766],[126,131,67,6.178966522216797],[126,131,68,6.175511837005615],[126,131,69,6.176268100738525],[126,131,70,6.182623863220215],[126,131,71,6.195735454559326],[126,131,72,6.219391822814941],[126,131,73,6.2439866065979],[126,131,74,6.256223201751709],[126,131,75,6.260167121887207],[126,131,76,6.261189937591553],[126,131,77,6.2600321769714355],[126,131,78,6.256808280944824],[126,131,79,6.2509446144104],[126,132,64,6.18121862411499],[126,132,65,6.186306476593018],[126,132,66,6.183719635009766],[126,132,67,6.178966522216797],[126,132,68,6.175511837005615],[126,132,69,6.176268100738525],[126,132,70,6.182623863220215],[126,132,71,6.195735454559326],[126,132,72,6.219391822814941],[126,132,73,6.2439866065979],[126,132,74,6.256223201751709],[126,132,75,6.260167121887207],[126,132,76,6.261189937591553],[126,132,77,6.2600321769714355],[126,132,78,6.256808280944824],[126,132,79,6.2509446144104],[126,133,64,6.18121862411499],[126,133,65,6.186306476593018],[126,133,66,6.183719635009766],[126,133,67,6.178966522216797],[126,133,68,6.175511837005615],[126,133,69,6.176268100738525],[126,133,70,6.182623863220215],[126,133,71,6.195735454559326],[126,133,72,6.219391822814941],[126,133,73,6.2439866065979],[126,133,74,6.256223201751709],[126,133,75,6.260167121887207],[126,133,76,6.261189937591553],[126,133,77,6.2600321769714355],[126,133,78,6.256808280944824],[126,133,79,6.2509446144104],[126,134,64,6.18121862411499],[126,134,65,6.186306476593018],[126,134,66,6.183719635009766],[126,134,67,6.178966522216797],[126,134,68,6.175511837005615],[126,134,69,6.176268100738525],[126,134,70,6.182623863220215],[126,134,71,6.195735454559326],[126,134,72,6.219391822814941],[126,134,73,6.2439866065979],[126,134,74,6.256223201751709],[126,134,75,6.260167121887207],[126,134,76,6.261189937591553],[126,134,77,6.2600321769714355],[126,134,78,6.256808280944824],[126,134,79,6.2509446144104],[126,135,64,6.18121862411499],[126,135,65,6.186306476593018],[126,135,66,6.183719635009766],[126,135,67,6.178966522216797],[126,135,68,6.175511837005615],[126,135,69,6.176268100738525],[126,135,70,6.182623863220215],[126,135,71,6.195735454559326],[126,135,72,6.219391822814941],[126,135,73,6.2439866065979],[126,135,74,6.256223201751709],[126,135,75,6.260167121887207],[126,135,76,6.261189937591553],[126,135,77,6.2600321769714355],[126,135,78,6.256808280944824],[126,135,79,6.2509446144104],[126,136,64,6.18121862411499],[126,136,65,6.186306476593018],[126,136,66,6.183719635009766],[126,136,67,6.178966522216797],[126,136,68,6.175511837005615],[126,136,69,6.176268100738525],[126,136,70,6.182623863220215],[126,136,71,6.195735454559326],[126,136,72,6.219391822814941],[126,136,73,6.2439866065979],[126,136,74,6.256223201751709],[126,136,75,6.260167121887207],[126,136,76,6.261189937591553],[126,136,77,6.2600321769714355],[126,136,78,6.256808280944824],[126,136,79,6.2509446144104],[126,137,64,6.18121862411499],[126,137,65,6.186306476593018],[126,137,66,6.183719635009766],[126,137,67,6.178966522216797],[126,137,68,6.175511837005615],[126,137,69,6.176268100738525],[126,137,70,6.182623863220215],[126,137,71,6.195735454559326],[126,137,72,6.219391822814941],[126,137,73,6.2439866065979],[126,137,74,6.256223201751709],[126,137,75,6.260167121887207],[126,137,76,6.261189937591553],[126,137,77,6.2600321769714355],[126,137,78,6.256808280944824],[126,137,79,6.2509446144104],[126,138,64,6.18121862411499],[126,138,65,6.186306476593018],[126,138,66,6.183719635009766],[126,138,67,6.178966522216797],[126,138,68,6.175511837005615],[126,138,69,6.176268100738525],[126,138,70,6.182623863220215],[126,138,71,6.195735454559326],[126,138,72,6.219391822814941],[126,138,73,6.2439866065979],[126,138,74,6.256223201751709],[126,138,75,6.260167121887207],[126,138,76,6.261189937591553],[126,138,77,6.2600321769714355],[126,138,78,6.256808280944824],[126,138,79,6.2509446144104],[126,139,64,6.18121862411499],[126,139,65,6.186306476593018],[126,139,66,6.183719635009766],[126,139,67,6.178966522216797],[126,139,68,6.175511837005615],[126,139,69,6.176268100738525],[126,139,70,6.182623863220215],[126,139,71,6.195735454559326],[126,139,72,6.219391822814941],[126,139,73,6.2439866065979],[126,139,74,6.256223201751709],[126,139,75,6.260167121887207],[126,139,76,6.261189937591553],[126,139,77,6.2600321769714355],[126,139,78,6.256808280944824],[126,139,79,6.2509446144104],[126,140,64,6.18121862411499],[126,140,65,6.186306476593018],[126,140,66,6.183719635009766],[126,140,67,6.178966522216797],[126,140,68,6.175511837005615],[126,140,69,6.176268100738525],[126,140,70,6.182623863220215],[126,140,71,6.195735454559326],[126,140,72,6.219391822814941],[126,140,73,6.2439866065979],[126,140,74,6.256223201751709],[126,140,75,6.260167121887207],[126,140,76,6.261189937591553],[126,140,77,6.2600321769714355],[126,140,78,6.256808280944824],[126,140,79,6.2509446144104],[126,141,64,6.18121862411499],[126,141,65,6.186306476593018],[126,141,66,6.183719635009766],[126,141,67,6.178966522216797],[126,141,68,6.175511837005615],[126,141,69,6.176268100738525],[126,141,70,6.182623863220215],[126,141,71,6.195735454559326],[126,141,72,6.219391822814941],[126,141,73,6.2439866065979],[126,141,74,6.256223201751709],[126,141,75,6.260167121887207],[126,141,76,6.261189937591553],[126,141,77,6.2600321769714355],[126,141,78,6.256808280944824],[126,141,79,6.2509446144104],[126,142,64,6.18121862411499],[126,142,65,6.186306476593018],[126,142,66,6.183719635009766],[126,142,67,6.178966522216797],[126,142,68,6.175511837005615],[126,142,69,6.176268100738525],[126,142,70,6.182623863220215],[126,142,71,6.195735454559326],[126,142,72,6.219391822814941],[126,142,73,6.2439866065979],[126,142,74,6.256223201751709],[126,142,75,6.260167121887207],[126,142,76,6.261189937591553],[126,142,77,6.2600321769714355],[126,142,78,6.256808280944824],[126,142,79,6.2509446144104],[126,143,64,6.18121862411499],[126,143,65,6.186306476593018],[126,143,66,6.183719635009766],[126,143,67,6.178966522216797],[126,143,68,6.175511837005615],[126,143,69,6.176268100738525],[126,143,70,6.182623863220215],[126,143,71,6.195735454559326],[126,143,72,6.219391822814941],[126,143,73,6.2439866065979],[126,143,74,6.256223201751709],[126,143,75,6.260167121887207],[126,143,76,6.261189937591553],[126,143,77,6.2600321769714355],[126,143,78,6.256808280944824],[126,143,79,6.2509446144104],[126,144,64,6.18121862411499],[126,144,65,6.186306476593018],[126,144,66,6.183719635009766],[126,144,67,6.178966522216797],[126,144,68,6.175511837005615],[126,144,69,6.176268100738525],[126,144,70,6.182623863220215],[126,144,71,6.195735454559326],[126,144,72,6.219391822814941],[126,144,73,6.2439866065979],[126,144,74,6.256223201751709],[126,144,75,6.260167121887207],[126,144,76,6.261189937591553],[126,144,77,6.2600321769714355],[126,144,78,6.256808280944824],[126,144,79,6.2509446144104],[126,145,64,6.18121862411499],[126,145,65,6.186306476593018],[126,145,66,6.183719635009766],[126,145,67,6.178966522216797],[126,145,68,6.175511837005615],[126,145,69,6.176268100738525],[126,145,70,6.182623863220215],[126,145,71,6.195735454559326],[126,145,72,6.219391822814941],[126,145,73,6.2439866065979],[126,145,74,6.256223201751709],[126,145,75,6.260167121887207],[126,145,76,6.261189937591553],[126,145,77,6.2600321769714355],[126,145,78,6.256808280944824],[126,145,79,6.2509446144104],[126,146,64,6.18121862411499],[126,146,65,6.186306476593018],[126,146,66,6.183719635009766],[126,146,67,6.178966522216797],[126,146,68,6.175511837005615],[126,146,69,6.176268100738525],[126,146,70,6.182623863220215],[126,146,71,6.195735454559326],[126,146,72,6.219391822814941],[126,146,73,6.2439866065979],[126,146,74,6.256223201751709],[126,146,75,6.260167121887207],[126,146,76,6.261189937591553],[126,146,77,6.2600321769714355],[126,146,78,6.256808280944824],[126,146,79,6.2509446144104],[126,147,64,6.18121862411499],[126,147,65,6.186306476593018],[126,147,66,6.183719635009766],[126,147,67,6.178966522216797],[126,147,68,6.175511837005615],[126,147,69,6.176268100738525],[126,147,70,6.182623863220215],[126,147,71,6.195735454559326],[126,147,72,6.219391822814941],[126,147,73,6.2439866065979],[126,147,74,6.256223201751709],[126,147,75,6.260167121887207],[126,147,76,6.261189937591553],[126,147,77,6.2600321769714355],[126,147,78,6.256808280944824],[126,147,79,6.2509446144104],[126,148,64,6.18121862411499],[126,148,65,6.186306476593018],[126,148,66,6.183719635009766],[126,148,67,6.178966522216797],[126,148,68,6.175511837005615],[126,148,69,6.176268100738525],[126,148,70,6.182623863220215],[126,148,71,6.195735454559326],[126,148,72,6.219391822814941],[126,148,73,6.2439866065979],[126,148,74,6.256223201751709],[126,148,75,6.260167121887207],[126,148,76,6.261189937591553],[126,148,77,6.2600321769714355],[126,148,78,6.256808280944824],[126,148,79,6.2509446144104],[126,149,64,6.18121862411499],[126,149,65,6.186306476593018],[126,149,66,6.183719635009766],[126,149,67,6.178966522216797],[126,149,68,6.175511837005615],[126,149,69,6.176268100738525],[126,149,70,6.182623863220215],[126,149,71,6.195735454559326],[126,149,72,6.219391822814941],[126,149,73,6.2439866065979],[126,149,74,6.256223201751709],[126,149,75,6.260167121887207],[126,149,76,6.261189937591553],[126,149,77,6.2600321769714355],[126,149,78,6.256808280944824],[126,149,79,6.2509446144104],[126,150,64,6.18121862411499],[126,150,65,6.186306476593018],[126,150,66,6.183719635009766],[126,150,67,6.178966522216797],[126,150,68,6.175511837005615],[126,150,69,6.176268100738525],[126,150,70,6.182623863220215],[126,150,71,6.195735454559326],[126,150,72,6.219391822814941],[126,150,73,6.2439866065979],[126,150,74,6.256223201751709],[126,150,75,6.260167121887207],[126,150,76,6.261189937591553],[126,150,77,6.2600321769714355],[126,150,78,6.256808280944824],[126,150,79,6.2509446144104],[126,151,64,6.18121862411499],[126,151,65,6.186306476593018],[126,151,66,6.183719635009766],[126,151,67,6.178966522216797],[126,151,68,6.175511837005615],[126,151,69,6.176268100738525],[126,151,70,6.182623863220215],[126,151,71,6.195735454559326],[126,151,72,6.219391822814941],[126,151,73,6.2439866065979],[126,151,74,6.256223201751709],[126,151,75,6.260167121887207],[126,151,76,6.261189937591553],[126,151,77,6.2600321769714355],[126,151,78,6.256808280944824],[126,151,79,6.2509446144104],[126,152,64,6.18121862411499],[126,152,65,6.186306476593018],[126,152,66,6.183719635009766],[126,152,67,6.178966522216797],[126,152,68,6.175511837005615],[126,152,69,6.176268100738525],[126,152,70,6.182623863220215],[126,152,71,6.195735454559326],[126,152,72,6.219391822814941],[126,152,73,6.2439866065979],[126,152,74,6.256223201751709],[126,152,75,6.260167121887207],[126,152,76,6.261189937591553],[126,152,77,6.2600321769714355],[126,152,78,6.256808280944824],[126,152,79,6.2509446144104],[126,153,64,6.18121862411499],[126,153,65,6.186306476593018],[126,153,66,6.183719635009766],[126,153,67,6.178966522216797],[126,153,68,6.175511837005615],[126,153,69,6.176268100738525],[126,153,70,6.182623863220215],[126,153,71,6.195735454559326],[126,153,72,6.219391822814941],[126,153,73,6.2439866065979],[126,153,74,6.256223201751709],[126,153,75,6.260167121887207],[126,153,76,6.261189937591553],[126,153,77,6.2600321769714355],[126,153,78,6.256808280944824],[126,153,79,6.2509446144104],[126,154,64,6.18121862411499],[126,154,65,6.186306476593018],[126,154,66,6.183719635009766],[126,154,67,6.178966522216797],[126,154,68,6.175511837005615],[126,154,69,6.176268100738525],[126,154,70,6.182623863220215],[126,154,71,6.195735454559326],[126,154,72,6.219391822814941],[126,154,73,6.2439866065979],[126,154,74,6.256223201751709],[126,154,75,6.260167121887207],[126,154,76,6.261189937591553],[126,154,77,6.2600321769714355],[126,154,78,6.256808280944824],[126,154,79,6.2509446144104],[126,155,64,6.18121862411499],[126,155,65,6.186306476593018],[126,155,66,6.183719635009766],[126,155,67,6.178966522216797],[126,155,68,6.175511837005615],[126,155,69,6.176268100738525],[126,155,70,6.182623863220215],[126,155,71,6.195735454559326],[126,155,72,6.219391822814941],[126,155,73,6.2439866065979],[126,155,74,6.256223201751709],[126,155,75,6.260167121887207],[126,155,76,6.261189937591553],[126,155,77,6.2600321769714355],[126,155,78,6.256808280944824],[126,155,79,6.2509446144104],[126,156,64,6.18121862411499],[126,156,65,6.186306476593018],[126,156,66,6.183719635009766],[126,156,67,6.178966522216797],[126,156,68,6.175511837005615],[126,156,69,6.176268100738525],[126,156,70,6.182623863220215],[126,156,71,6.195735454559326],[126,156,72,6.219391822814941],[126,156,73,6.2439866065979],[126,156,74,6.256223201751709],[126,156,75,6.260167121887207],[126,156,76,6.261189937591553],[126,156,77,6.2600321769714355],[126,156,78,6.256808280944824],[126,156,79,6.2509446144104],[126,157,64,6.18121862411499],[126,157,65,6.186306476593018],[126,157,66,6.183719635009766],[126,157,67,6.178966522216797],[126,157,68,6.175511837005615],[126,157,69,6.176268100738525],[126,157,70,6.182623863220215],[126,157,71,6.195735454559326],[126,157,72,6.219391822814941],[126,157,73,6.2439866065979],[126,157,74,6.256223201751709],[126,157,75,6.260167121887207],[126,157,76,6.261189937591553],[126,157,77,6.2600321769714355],[126,157,78,6.256808280944824],[126,157,79,6.2509446144104],[126,158,64,6.18121862411499],[126,158,65,6.186306476593018],[126,158,66,6.183719635009766],[126,158,67,6.178966522216797],[126,158,68,6.175511837005615],[126,158,69,6.176268100738525],[126,158,70,6.182623863220215],[126,158,71,6.195735454559326],[126,158,72,6.219391822814941],[126,158,73,6.2439866065979],[126,158,74,6.256223201751709],[126,158,75,6.260167121887207],[126,158,76,6.261189937591553],[126,158,77,6.2600321769714355],[126,158,78,6.256808280944824],[126,158,79,6.2509446144104],[126,159,64,6.18121862411499],[126,159,65,6.186306476593018],[126,159,66,6.183719635009766],[126,159,67,6.178966522216797],[126,159,68,6.175511837005615],[126,159,69,6.176268100738525],[126,159,70,6.182623863220215],[126,159,71,6.195735454559326],[126,159,72,6.219391822814941],[126,159,73,6.2439866065979],[126,159,74,6.256223201751709],[126,159,75,6.260167121887207],[126,159,76,6.261189937591553],[126,159,77,6.2600321769714355],[126,159,78,6.256808280944824],[126,159,79,6.2509446144104],[126,160,64,6.18121862411499],[126,160,65,6.186306476593018],[126,160,66,6.183719635009766],[126,160,67,6.178966522216797],[126,160,68,6.175511837005615],[126,160,69,6.176268100738525],[126,160,70,6.182623863220215],[126,160,71,6.195735454559326],[126,160,72,6.219391822814941],[126,160,73,6.2439866065979],[126,160,74,6.256223201751709],[126,160,75,6.260167121887207],[126,160,76,6.261189937591553],[126,160,77,6.2600321769714355],[126,160,78,6.256808280944824],[126,160,79,6.2509446144104],[126,161,64,6.18121862411499],[126,161,65,6.186306476593018],[126,161,66,6.183719635009766],[126,161,67,6.178966522216797],[126,161,68,6.175511837005615],[126,161,69,6.176268100738525],[126,161,70,6.182623863220215],[126,161,71,6.195735454559326],[126,161,72,6.219391822814941],[126,161,73,6.2439866065979],[126,161,74,6.256223201751709],[126,161,75,6.260167121887207],[126,161,76,6.261189937591553],[126,161,77,6.2600321769714355],[126,161,78,6.256808280944824],[126,161,79,6.2509446144104],[126,162,64,6.18121862411499],[126,162,65,6.186306476593018],[126,162,66,6.183719635009766],[126,162,67,6.178966522216797],[126,162,68,6.175511837005615],[126,162,69,6.176268100738525],[126,162,70,6.182623863220215],[126,162,71,6.195735454559326],[126,162,72,6.219391822814941],[126,162,73,6.2439866065979],[126,162,74,6.256223201751709],[126,162,75,6.260167121887207],[126,162,76,6.261189937591553],[126,162,77,6.2600321769714355],[126,162,78,6.256808280944824],[126,162,79,6.2509446144104],[126,163,64,6.18121862411499],[126,163,65,6.186306476593018],[126,163,66,6.183719635009766],[126,163,67,6.178966522216797],[126,163,68,6.175511837005615],[126,163,69,6.176268100738525],[126,163,70,6.182623863220215],[126,163,71,6.195735454559326],[126,163,72,6.219391822814941],[126,163,73,6.2439866065979],[126,163,74,6.256223201751709],[126,163,75,6.260167121887207],[126,163,76,6.261189937591553],[126,163,77,6.2600321769714355],[126,163,78,6.256808280944824],[126,163,79,6.2509446144104],[126,164,64,6.18121862411499],[126,164,65,6.186306476593018],[126,164,66,6.183719635009766],[126,164,67,6.178966522216797],[126,164,68,6.175511837005615],[126,164,69,6.176268100738525],[126,164,70,6.182623863220215],[126,164,71,6.195735454559326],[126,164,72,6.219391822814941],[126,164,73,6.2439866065979],[126,164,74,6.256223201751709],[126,164,75,6.260167121887207],[126,164,76,6.261189937591553],[126,164,77,6.2600321769714355],[126,164,78,6.256808280944824],[126,164,79,6.2509446144104],[126,165,64,6.18121862411499],[126,165,65,6.186306476593018],[126,165,66,6.183719635009766],[126,165,67,6.178966522216797],[126,165,68,6.175511837005615],[126,165,69,6.176268100738525],[126,165,70,6.182623863220215],[126,165,71,6.195735454559326],[126,165,72,6.219391822814941],[126,165,73,6.2439866065979],[126,165,74,6.256223201751709],[126,165,75,6.260167121887207],[126,165,76,6.261189937591553],[126,165,77,6.2600321769714355],[126,165,78,6.256808280944824],[126,165,79,6.2509446144104],[126,166,64,6.18121862411499],[126,166,65,6.186306476593018],[126,166,66,6.183719635009766],[126,166,67,6.178966522216797],[126,166,68,6.175511837005615],[126,166,69,6.176268100738525],[126,166,70,6.182623863220215],[126,166,71,6.195735454559326],[126,166,72,6.219391822814941],[126,166,73,6.2439866065979],[126,166,74,6.256223201751709],[126,166,75,6.260167121887207],[126,166,76,6.261189937591553],[126,166,77,6.2600321769714355],[126,166,78,6.256808280944824],[126,166,79,6.2509446144104],[126,167,64,6.18121862411499],[126,167,65,6.186306476593018],[126,167,66,6.183719635009766],[126,167,67,6.178966522216797],[126,167,68,6.175511837005615],[126,167,69,6.176268100738525],[126,167,70,6.182623863220215],[126,167,71,6.195735454559326],[126,167,72,6.219391822814941],[126,167,73,6.2439866065979],[126,167,74,6.256223201751709],[126,167,75,6.260167121887207],[126,167,76,6.261189937591553],[126,167,77,6.2600321769714355],[126,167,78,6.256808280944824],[126,167,79,6.2509446144104],[126,168,64,6.18121862411499],[126,168,65,6.186306476593018],[126,168,66,6.183719635009766],[126,168,67,6.178966522216797],[126,168,68,6.175511837005615],[126,168,69,6.176268100738525],[126,168,70,6.182623863220215],[126,168,71,6.195735454559326],[126,168,72,6.219391822814941],[126,168,73,6.2439866065979],[126,168,74,6.256223201751709],[126,168,75,6.260167121887207],[126,168,76,6.261189937591553],[126,168,77,6.2600321769714355],[126,168,78,6.256808280944824],[126,168,79,6.2509446144104],[126,169,64,6.18121862411499],[126,169,65,6.186306476593018],[126,169,66,6.183719635009766],[126,169,67,6.178966522216797],[126,169,68,6.175511837005615],[126,169,69,6.176268100738525],[126,169,70,6.182623863220215],[126,169,71,6.195735454559326],[126,169,72,6.219391822814941],[126,169,73,6.2439866065979],[126,169,74,6.256223201751709],[126,169,75,6.260167121887207],[126,169,76,6.261189937591553],[126,169,77,6.2600321769714355],[126,169,78,6.256808280944824],[126,169,79,6.2509446144104],[126,170,64,6.18121862411499],[126,170,65,6.186306476593018],[126,170,66,6.183719635009766],[126,170,67,6.178966522216797],[126,170,68,6.175511837005615],[126,170,69,6.176268100738525],[126,170,70,6.182623863220215],[126,170,71,6.195735454559326],[126,170,72,6.219391822814941],[126,170,73,6.2439866065979],[126,170,74,6.256223201751709],[126,170,75,6.260167121887207],[126,170,76,6.261189937591553],[126,170,77,6.2600321769714355],[126,170,78,6.256808280944824],[126,170,79,6.2509446144104],[126,171,64,6.18121862411499],[126,171,65,6.186306476593018],[126,171,66,6.183719635009766],[126,171,67,6.178966522216797],[126,171,68,6.175511837005615],[126,171,69,6.176268100738525],[126,171,70,6.182623863220215],[126,171,71,6.195735454559326],[126,171,72,6.219391822814941],[126,171,73,6.2439866065979],[126,171,74,6.256223201751709],[126,171,75,6.260167121887207],[126,171,76,6.261189937591553],[126,171,77,6.2600321769714355],[126,171,78,6.256808280944824],[126,171,79,6.2509446144104],[126,172,64,6.18121862411499],[126,172,65,6.186306476593018],[126,172,66,6.183719635009766],[126,172,67,6.178966522216797],[126,172,68,6.175511837005615],[126,172,69,6.176268100738525],[126,172,70,6.182623863220215],[126,172,71,6.195735454559326],[126,172,72,6.219391822814941],[126,172,73,6.2439866065979],[126,172,74,6.256223201751709],[126,172,75,6.260167121887207],[126,172,76,6.261189937591553],[126,172,77,6.2600321769714355],[126,172,78,6.256808280944824],[126,172,79,6.2509446144104],[126,173,64,6.18121862411499],[126,173,65,6.186306476593018],[126,173,66,6.183719635009766],[126,173,67,6.178966522216797],[126,173,68,6.175511837005615],[126,173,69,6.176268100738525],[126,173,70,6.182623863220215],[126,173,71,6.195735454559326],[126,173,72,6.219391822814941],[126,173,73,6.2439866065979],[126,173,74,6.256223201751709],[126,173,75,6.260167121887207],[126,173,76,6.261189937591553],[126,173,77,6.2600321769714355],[126,173,78,6.256808280944824],[126,173,79,6.2509446144104],[126,174,64,6.18121862411499],[126,174,65,6.186306476593018],[126,174,66,6.183719635009766],[126,174,67,6.178966522216797],[126,174,68,6.175511837005615],[126,174,69,6.176268100738525],[126,174,70,6.182623863220215],[126,174,71,6.195735454559326],[126,174,72,6.219391822814941],[126,174,73,6.2439866065979],[126,174,74,6.256223201751709],[126,174,75,6.260167121887207],[126,174,76,6.261189937591553],[126,174,77,6.2600321769714355],[126,174,78,6.256808280944824],[126,174,79,6.2509446144104],[126,175,64,6.18121862411499],[126,175,65,6.186306476593018],[126,175,66,6.183719635009766],[126,175,67,6.178966522216797],[126,175,68,6.175511837005615],[126,175,69,6.176268100738525],[126,175,70,6.182623863220215],[126,175,71,6.195735454559326],[126,175,72,6.219391822814941],[126,175,73,6.2439866065979],[126,175,74,6.256223201751709],[126,175,75,6.260167121887207],[126,175,76,6.261189937591553],[126,175,77,6.2600321769714355],[126,175,78,6.256808280944824],[126,175,79,6.2509446144104],[126,176,64,6.18121862411499],[126,176,65,6.186306476593018],[126,176,66,6.183719635009766],[126,176,67,6.178966522216797],[126,176,68,6.175511837005615],[126,176,69,6.176268100738525],[126,176,70,6.182623863220215],[126,176,71,6.195735454559326],[126,176,72,6.219391822814941],[126,176,73,6.2439866065979],[126,176,74,6.256223201751709],[126,176,75,6.260167121887207],[126,176,76,6.261189937591553],[126,176,77,6.2600321769714355],[126,176,78,6.256808280944824],[126,176,79,6.2509446144104],[126,177,64,6.18121862411499],[126,177,65,6.186306476593018],[126,177,66,6.183719635009766],[126,177,67,6.178966522216797],[126,177,68,6.175511837005615],[126,177,69,6.176268100738525],[126,177,70,6.182623863220215],[126,177,71,6.195735454559326],[126,177,72,6.219391822814941],[126,177,73,6.2439866065979],[126,177,74,6.256223201751709],[126,177,75,6.260167121887207],[126,177,76,6.261189937591553],[126,177,77,6.2600321769714355],[126,177,78,6.256808280944824],[126,177,79,6.2509446144104],[126,178,64,6.18121862411499],[126,178,65,6.186306476593018],[126,178,66,6.183719635009766],[126,178,67,6.178966522216797],[126,178,68,6.175511837005615],[126,178,69,6.176268100738525],[126,178,70,6.182623863220215],[126,178,71,6.195735454559326],[126,178,72,6.219391822814941],[126,178,73,6.2439866065979],[126,178,74,6.256223201751709],[126,178,75,6.260167121887207],[126,178,76,6.261189937591553],[126,178,77,6.2600321769714355],[126,178,78,6.256808280944824],[126,178,79,6.2509446144104],[126,179,64,6.18121862411499],[126,179,65,6.186306476593018],[126,179,66,6.183719635009766],[126,179,67,6.178966522216797],[126,179,68,6.175511837005615],[126,179,69,6.176268100738525],[126,179,70,6.182623863220215],[126,179,71,6.195735454559326],[126,179,72,6.219391822814941],[126,179,73,6.2439866065979],[126,179,74,6.256223201751709],[126,179,75,6.260167121887207],[126,179,76,6.261189937591553],[126,179,77,6.2600321769714355],[126,179,78,6.256808280944824],[126,179,79,6.2509446144104],[126,180,64,6.18121862411499],[126,180,65,6.186306476593018],[126,180,66,6.183719635009766],[126,180,67,6.178966522216797],[126,180,68,6.175511837005615],[126,180,69,6.176268100738525],[126,180,70,6.182623863220215],[126,180,71,6.195735454559326],[126,180,72,6.219391822814941],[126,180,73,6.2439866065979],[126,180,74,6.256223201751709],[126,180,75,6.260167121887207],[126,180,76,6.261189937591553],[126,180,77,6.2600321769714355],[126,180,78,6.256808280944824],[126,180,79,6.2509446144104],[126,181,64,6.18121862411499],[126,181,65,6.186306476593018],[126,181,66,6.183719635009766],[126,181,67,6.178966522216797],[126,181,68,6.175511837005615],[126,181,69,6.176268100738525],[126,181,70,6.182623863220215],[126,181,71,6.195735454559326],[126,181,72,6.219391822814941],[126,181,73,6.2439866065979],[126,181,74,6.256223201751709],[126,181,75,6.260167121887207],[126,181,76,6.261189937591553],[126,181,77,6.2600321769714355],[126,181,78,6.256808280944824],[126,181,79,6.2509446144104],[126,182,64,6.18121862411499],[126,182,65,6.186306476593018],[126,182,66,6.183719635009766],[126,182,67,6.178966522216797],[126,182,68,6.175511837005615],[126,182,69,6.176268100738525],[126,182,70,6.182623863220215],[126,182,71,6.195735454559326],[126,182,72,6.219391822814941],[126,182,73,6.2439866065979],[126,182,74,6.256223201751709],[126,182,75,6.260167121887207],[126,182,76,6.261189937591553],[126,182,77,6.2600321769714355],[126,182,78,6.256808280944824],[126,182,79,6.2509446144104],[126,183,64,6.18121862411499],[126,183,65,6.186306476593018],[126,183,66,6.183719635009766],[126,183,67,6.178966522216797],[126,183,68,6.175511837005615],[126,183,69,6.176268100738525],[126,183,70,6.182623863220215],[126,183,71,6.195735454559326],[126,183,72,6.219391822814941],[126,183,73,6.2439866065979],[126,183,74,6.256223201751709],[126,183,75,6.260167121887207],[126,183,76,6.261189937591553],[126,183,77,6.2600321769714355],[126,183,78,6.256808280944824],[126,183,79,6.2509446144104],[126,184,64,6.18121862411499],[126,184,65,6.186306476593018],[126,184,66,6.183719635009766],[126,184,67,6.178966522216797],[126,184,68,6.175511837005615],[126,184,69,6.176268100738525],[126,184,70,6.182623863220215],[126,184,71,6.195735454559326],[126,184,72,6.219391822814941],[126,184,73,6.2439866065979],[126,184,74,6.256223201751709],[126,184,75,6.260167121887207],[126,184,76,6.261189937591553],[126,184,77,6.2600321769714355],[126,184,78,6.256808280944824],[126,184,79,6.2509446144104],[126,185,64,6.18121862411499],[126,185,65,6.186306476593018],[126,185,66,6.183719635009766],[126,185,67,6.178966522216797],[126,185,68,6.175511837005615],[126,185,69,6.176268100738525],[126,185,70,6.182623863220215],[126,185,71,6.195735454559326],[126,185,72,6.219391822814941],[126,185,73,6.2439866065979],[126,185,74,6.256223201751709],[126,185,75,6.260167121887207],[126,185,76,6.261189937591553],[126,185,77,6.2600321769714355],[126,185,78,6.256808280944824],[126,185,79,6.2509446144104],[126,186,64,6.18121862411499],[126,186,65,6.186306476593018],[126,186,66,6.183719635009766],[126,186,67,6.178966522216797],[126,186,68,6.175511837005615],[126,186,69,6.176268100738525],[126,186,70,6.182623863220215],[126,186,71,6.195735454559326],[126,186,72,6.219391822814941],[126,186,73,6.2439866065979],[126,186,74,6.256223201751709],[126,186,75,6.260167121887207],[126,186,76,6.261189937591553],[126,186,77,6.2600321769714355],[126,186,78,6.256808280944824],[126,186,79,6.2509446144104],[126,187,64,6.18121862411499],[126,187,65,6.186306476593018],[126,187,66,6.183719635009766],[126,187,67,6.178966522216797],[126,187,68,6.175511837005615],[126,187,69,6.176268100738525],[126,187,70,6.182623863220215],[126,187,71,6.195735454559326],[126,187,72,6.219391822814941],[126,187,73,6.2439866065979],[126,187,74,6.256223201751709],[126,187,75,6.260167121887207],[126,187,76,6.261189937591553],[126,187,77,6.2600321769714355],[126,187,78,6.256808280944824],[126,187,79,6.2509446144104],[126,188,64,6.18121862411499],[126,188,65,6.186306476593018],[126,188,66,6.183719635009766],[126,188,67,6.178966522216797],[126,188,68,6.175511837005615],[126,188,69,6.176268100738525],[126,188,70,6.182623863220215],[126,188,71,6.195735454559326],[126,188,72,6.219391822814941],[126,188,73,6.2439866065979],[126,188,74,6.256223201751709],[126,188,75,6.260167121887207],[126,188,76,6.261189937591553],[126,188,77,6.2600321769714355],[126,188,78,6.256808280944824],[126,188,79,6.2509446144104],[126,189,64,6.18121862411499],[126,189,65,6.186306476593018],[126,189,66,6.183719635009766],[126,189,67,6.178966522216797],[126,189,68,6.175511837005615],[126,189,69,6.176268100738525],[126,189,70,6.182623863220215],[126,189,71,6.195735454559326],[126,189,72,6.219391822814941],[126,189,73,6.2439866065979],[126,189,74,6.256223201751709],[126,189,75,6.260167121887207],[126,189,76,6.261189937591553],[126,189,77,6.2600321769714355],[126,189,78,6.256808280944824],[126,189,79,6.2509446144104],[126,190,64,6.18121862411499],[126,190,65,6.186306476593018],[126,190,66,6.183719635009766],[126,190,67,6.178966522216797],[126,190,68,6.175511837005615],[126,190,69,6.176268100738525],[126,190,70,6.182623863220215],[126,190,71,6.195735454559326],[126,190,72,6.219391822814941],[126,190,73,6.2439866065979],[126,190,74,6.256223201751709],[126,190,75,6.260167121887207],[126,190,76,6.261189937591553],[126,190,77,6.2600321769714355],[126,190,78,6.256808280944824],[126,190,79,6.2509446144104],[126,191,64,6.18121862411499],[126,191,65,6.186306476593018],[126,191,66,6.183719635009766],[126,191,67,6.178966522216797],[126,191,68,6.175511837005615],[126,191,69,6.176268100738525],[126,191,70,6.182623863220215],[126,191,71,6.195735454559326],[126,191,72,6.219391822814941],[126,191,73,6.2439866065979],[126,191,74,6.256223201751709],[126,191,75,6.260167121887207],[126,191,76,6.261189937591553],[126,191,77,6.2600321769714355],[126,191,78,6.256808280944824],[126,191,79,6.2509446144104],[126,192,64,6.18121862411499],[126,192,65,6.186306476593018],[126,192,66,6.183719635009766],[126,192,67,6.178966522216797],[126,192,68,6.175511837005615],[126,192,69,6.176268100738525],[126,192,70,6.182623863220215],[126,192,71,6.195735454559326],[126,192,72,6.219391822814941],[126,192,73,6.2439866065979],[126,192,74,6.256223201751709],[126,192,75,6.260167121887207],[126,192,76,6.261189937591553],[126,192,77,6.2600321769714355],[126,192,78,6.256808280944824],[126,192,79,6.2509446144104],[126,193,64,6.18121862411499],[126,193,65,6.186306476593018],[126,193,66,6.183719635009766],[126,193,67,6.178966522216797],[126,193,68,6.175511837005615],[126,193,69,6.176268100738525],[126,193,70,6.182623863220215],[126,193,71,6.195735454559326],[126,193,72,6.219391822814941],[126,193,73,6.2439866065979],[126,193,74,6.256223201751709],[126,193,75,6.260167121887207],[126,193,76,6.261189937591553],[126,193,77,6.2600321769714355],[126,193,78,6.256808280944824],[126,193,79,6.2509446144104],[126,194,64,6.18121862411499],[126,194,65,6.186306476593018],[126,194,66,6.183719635009766],[126,194,67,6.178966522216797],[126,194,68,6.175511837005615],[126,194,69,6.176268100738525],[126,194,70,6.182623863220215],[126,194,71,6.195735454559326],[126,194,72,6.219391822814941],[126,194,73,6.2439866065979],[126,194,74,6.256223201751709],[126,194,75,6.260167121887207],[126,194,76,6.261189937591553],[126,194,77,6.2600321769714355],[126,194,78,6.256808280944824],[126,194,79,6.2509446144104],[126,195,64,6.18121862411499],[126,195,65,6.186306476593018],[126,195,66,6.183719635009766],[126,195,67,6.178966522216797],[126,195,68,6.175511837005615],[126,195,69,6.176268100738525],[126,195,70,6.182623863220215],[126,195,71,6.195735454559326],[126,195,72,6.219391822814941],[126,195,73,6.2439866065979],[126,195,74,6.256223201751709],[126,195,75,6.260167121887207],[126,195,76,6.261189937591553],[126,195,77,6.2600321769714355],[126,195,78,6.256808280944824],[126,195,79,6.2509446144104],[126,196,64,6.18121862411499],[126,196,65,6.186306476593018],[126,196,66,6.183719635009766],[126,196,67,6.178966522216797],[126,196,68,6.175511837005615],[126,196,69,6.176268100738525],[126,196,70,6.182623863220215],[126,196,71,6.195735454559326],[126,196,72,6.219391822814941],[126,196,73,6.2439866065979],[126,196,74,6.256223201751709],[126,196,75,6.260167121887207],[126,196,76,6.261189937591553],[126,196,77,6.2600321769714355],[126,196,78,6.256808280944824],[126,196,79,6.2509446144104],[126,197,64,6.18121862411499],[126,197,65,6.186306476593018],[126,197,66,6.183719635009766],[126,197,67,6.178966522216797],[126,197,68,6.175511837005615],[126,197,69,6.176268100738525],[126,197,70,6.182623863220215],[126,197,71,6.195735454559326],[126,197,72,6.219391822814941],[126,197,73,6.2439866065979],[126,197,74,6.256223201751709],[126,197,75,6.260167121887207],[126,197,76,6.261189937591553],[126,197,77,6.2600321769714355],[126,197,78,6.256808280944824],[126,197,79,6.2509446144104],[126,198,64,6.18121862411499],[126,198,65,6.186306476593018],[126,198,66,6.183719635009766],[126,198,67,6.178966522216797],[126,198,68,6.175511837005615],[126,198,69,6.176268100738525],[126,198,70,6.182623863220215],[126,198,71,6.195735454559326],[126,198,72,6.219391822814941],[126,198,73,6.2439866065979],[126,198,74,6.256223201751709],[126,198,75,6.260167121887207],[126,198,76,6.261189937591553],[126,198,77,6.2600321769714355],[126,198,78,6.256808280944824],[126,198,79,6.2509446144104],[126,199,64,6.18121862411499],[126,199,65,6.186306476593018],[126,199,66,6.183719635009766],[126,199,67,6.178966522216797],[126,199,68,6.175511837005615],[126,199,69,6.176268100738525],[126,199,70,6.182623863220215],[126,199,71,6.195735454559326],[126,199,72,6.219391822814941],[126,199,73,6.2439866065979],[126,199,74,6.256223201751709],[126,199,75,6.260167121887207],[126,199,76,6.261189937591553],[126,199,77,6.2600321769714355],[126,199,78,6.256808280944824],[126,199,79,6.2509446144104],[126,200,64,6.18121862411499],[126,200,65,6.186306476593018],[126,200,66,6.183719635009766],[126,200,67,6.178966522216797],[126,200,68,6.175511837005615],[126,200,69,6.176268100738525],[126,200,70,6.182623863220215],[126,200,71,6.195735454559326],[126,200,72,6.219391822814941],[126,200,73,6.2439866065979],[126,200,74,6.256223201751709],[126,200,75,6.260167121887207],[126,200,76,6.261189937591553],[126,200,77,6.2600321769714355],[126,200,78,6.256808280944824],[126,200,79,6.2509446144104],[126,201,64,6.18121862411499],[126,201,65,6.186306476593018],[126,201,66,6.183719635009766],[126,201,67,6.178966522216797],[126,201,68,6.175511837005615],[126,201,69,6.176268100738525],[126,201,70,6.182623863220215],[126,201,71,6.195735454559326],[126,201,72,6.219391822814941],[126,201,73,6.2439866065979],[126,201,74,6.256223201751709],[126,201,75,6.260167121887207],[126,201,76,6.261189937591553],[126,201,77,6.2600321769714355],[126,201,78,6.256808280944824],[126,201,79,6.2509446144104],[126,202,64,6.18121862411499],[126,202,65,6.186306476593018],[126,202,66,6.183719635009766],[126,202,67,6.178966522216797],[126,202,68,6.175511837005615],[126,202,69,6.176268100738525],[126,202,70,6.182623863220215],[126,202,71,6.195735454559326],[126,202,72,6.219391822814941],[126,202,73,6.2439866065979],[126,202,74,6.256223201751709],[126,202,75,6.260167121887207],[126,202,76,6.261189937591553],[126,202,77,6.2600321769714355],[126,202,78,6.256808280944824],[126,202,79,6.2509446144104],[126,203,64,6.18121862411499],[126,203,65,6.186306476593018],[126,203,66,6.183719635009766],[126,203,67,6.178966522216797],[126,203,68,6.175511837005615],[126,203,69,6.176268100738525],[126,203,70,6.182623863220215],[126,203,71,6.195735454559326],[126,203,72,6.219391822814941],[126,203,73,6.2439866065979],[126,203,74,6.256223201751709],[126,203,75,6.260167121887207],[126,203,76,6.261189937591553],[126,203,77,6.2600321769714355],[126,203,78,6.256808280944824],[126,203,79,6.2509446144104],[126,204,64,6.18121862411499],[126,204,65,6.186306476593018],[126,204,66,6.183719635009766],[126,204,67,6.178966522216797],[126,204,68,6.175511837005615],[126,204,69,6.176268100738525],[126,204,70,6.182623863220215],[126,204,71,6.195735454559326],[126,204,72,6.219391822814941],[126,204,73,6.2439866065979],[126,204,74,6.256223201751709],[126,204,75,6.260167121887207],[126,204,76,6.261189937591553],[126,204,77,6.2600321769714355],[126,204,78,6.256808280944824],[126,204,79,6.2509446144104],[126,205,64,6.18121862411499],[126,205,65,6.186306476593018],[126,205,66,6.183719635009766],[126,205,67,6.178966522216797],[126,205,68,6.175511837005615],[126,205,69,6.176268100738525],[126,205,70,6.182623863220215],[126,205,71,6.195735454559326],[126,205,72,6.219391822814941],[126,205,73,6.2439866065979],[126,205,74,6.256223201751709],[126,205,75,6.260167121887207],[126,205,76,6.261189937591553],[126,205,77,6.2600321769714355],[126,205,78,6.256808280944824],[126,205,79,6.2509446144104],[126,206,64,6.18121862411499],[126,206,65,6.186306476593018],[126,206,66,6.183719635009766],[126,206,67,6.178966522216797],[126,206,68,6.175511837005615],[126,206,69,6.176268100738525],[126,206,70,6.182623863220215],[126,206,71,6.195735454559326],[126,206,72,6.219391822814941],[126,206,73,6.2439866065979],[126,206,74,6.256223201751709],[126,206,75,6.260167121887207],[126,206,76,6.261189937591553],[126,206,77,6.2600321769714355],[126,206,78,6.256808280944824],[126,206,79,6.2509446144104],[126,207,64,6.18121862411499],[126,207,65,6.186306476593018],[126,207,66,6.183719635009766],[126,207,67,6.178966522216797],[126,207,68,6.175511837005615],[126,207,69,6.176268100738525],[126,207,70,6.182623863220215],[126,207,71,6.195735454559326],[126,207,72,6.219391822814941],[126,207,73,6.2439866065979],[126,207,74,6.256223201751709],[126,207,75,6.260167121887207],[126,207,76,6.261189937591553],[126,207,77,6.2600321769714355],[126,207,78,6.256808280944824],[126,207,79,6.2509446144104],[126,208,64,6.18121862411499],[126,208,65,6.186306476593018],[126,208,66,6.183719635009766],[126,208,67,6.178966522216797],[126,208,68,6.175511837005615],[126,208,69,6.176268100738525],[126,208,70,6.182623863220215],[126,208,71,6.195735454559326],[126,208,72,6.219391822814941],[126,208,73,6.2439866065979],[126,208,74,6.256223201751709],[126,208,75,6.260167121887207],[126,208,76,6.261189937591553],[126,208,77,6.2600321769714355],[126,208,78,6.256808280944824],[126,208,79,6.2509446144104],[126,209,64,6.18121862411499],[126,209,65,6.186306476593018],[126,209,66,6.183719635009766],[126,209,67,6.178966522216797],[126,209,68,6.175511837005615],[126,209,69,6.176268100738525],[126,209,70,6.182623863220215],[126,209,71,6.195735454559326],[126,209,72,6.219391822814941],[126,209,73,6.2439866065979],[126,209,74,6.256223201751709],[126,209,75,6.260167121887207],[126,209,76,6.261189937591553],[126,209,77,6.2600321769714355],[126,209,78,6.256808280944824],[126,209,79,6.2509446144104],[126,210,64,6.18121862411499],[126,210,65,6.186306476593018],[126,210,66,6.183719635009766],[126,210,67,6.178966522216797],[126,210,68,6.175511837005615],[126,210,69,6.176268100738525],[126,210,70,6.182623863220215],[126,210,71,6.195735454559326],[126,210,72,6.219391822814941],[126,210,73,6.2439866065979],[126,210,74,6.256223201751709],[126,210,75,6.260167121887207],[126,210,76,6.261189937591553],[126,210,77,6.2600321769714355],[126,210,78,6.256808280944824],[126,210,79,6.2509446144104],[126,211,64,6.18121862411499],[126,211,65,6.186306476593018],[126,211,66,6.183719635009766],[126,211,67,6.178966522216797],[126,211,68,6.175511837005615],[126,211,69,6.176268100738525],[126,211,70,6.182623863220215],[126,211,71,6.195735454559326],[126,211,72,6.219391822814941],[126,211,73,6.2439866065979],[126,211,74,6.256223201751709],[126,211,75,6.260167121887207],[126,211,76,6.261189937591553],[126,211,77,6.2600321769714355],[126,211,78,6.256808280944824],[126,211,79,6.2509446144104],[126,212,64,6.18121862411499],[126,212,65,6.186306476593018],[126,212,66,6.183719635009766],[126,212,67,6.178966522216797],[126,212,68,6.175511837005615],[126,212,69,6.176268100738525],[126,212,70,6.182623863220215],[126,212,71,6.195735454559326],[126,212,72,6.219391822814941],[126,212,73,6.2439866065979],[126,212,74,6.256223201751709],[126,212,75,6.260167121887207],[126,212,76,6.261189937591553],[126,212,77,6.2600321769714355],[126,212,78,6.256808280944824],[126,212,79,6.2509446144104],[126,213,64,6.18121862411499],[126,213,65,6.186306476593018],[126,213,66,6.183719635009766],[126,213,67,6.178966522216797],[126,213,68,6.175511837005615],[126,213,69,6.176268100738525],[126,213,70,6.182623863220215],[126,213,71,6.195735454559326],[126,213,72,6.219391822814941],[126,213,73,6.2439866065979],[126,213,74,6.256223201751709],[126,213,75,6.260167121887207],[126,213,76,6.261189937591553],[126,213,77,6.2600321769714355],[126,213,78,6.256808280944824],[126,213,79,6.2509446144104],[126,214,64,6.18121862411499],[126,214,65,6.186306476593018],[126,214,66,6.183719635009766],[126,214,67,6.178966522216797],[126,214,68,6.175511837005615],[126,214,69,6.176268100738525],[126,214,70,6.182623863220215],[126,214,71,6.195735454559326],[126,214,72,6.219391822814941],[126,214,73,6.2439866065979],[126,214,74,6.256223201751709],[126,214,75,6.260167121887207],[126,214,76,6.261189937591553],[126,214,77,6.2600321769714355],[126,214,78,6.256808280944824],[126,214,79,6.2509446144104],[126,215,64,6.18121862411499],[126,215,65,6.186306476593018],[126,215,66,6.183719635009766],[126,215,67,6.178966522216797],[126,215,68,6.175511837005615],[126,215,69,6.176268100738525],[126,215,70,6.182623863220215],[126,215,71,6.195735454559326],[126,215,72,6.219391822814941],[126,215,73,6.2439866065979],[126,215,74,6.256223201751709],[126,215,75,6.260167121887207],[126,215,76,6.261189937591553],[126,215,77,6.2600321769714355],[126,215,78,6.256808280944824],[126,215,79,6.2509446144104],[126,216,64,6.18121862411499],[126,216,65,6.186306476593018],[126,216,66,6.183719635009766],[126,216,67,6.178966522216797],[126,216,68,6.175511837005615],[126,216,69,6.176268100738525],[126,216,70,6.182623863220215],[126,216,71,6.195735454559326],[126,216,72,6.219391822814941],[126,216,73,6.2439866065979],[126,216,74,6.256223201751709],[126,216,75,6.260167121887207],[126,216,76,6.261189937591553],[126,216,77,6.2600321769714355],[126,216,78,6.256808280944824],[126,216,79,6.2509446144104],[126,217,64,6.18121862411499],[126,217,65,6.186306476593018],[126,217,66,6.183719635009766],[126,217,67,6.178966522216797],[126,217,68,6.175511837005615],[126,217,69,6.176268100738525],[126,217,70,6.182623863220215],[126,217,71,6.195735454559326],[126,217,72,6.219391822814941],[126,217,73,6.2439866065979],[126,217,74,6.256223201751709],[126,217,75,6.260167121887207],[126,217,76,6.261189937591553],[126,217,77,6.2600321769714355],[126,217,78,6.256808280944824],[126,217,79,6.2509446144104],[126,218,64,6.18121862411499],[126,218,65,6.186306476593018],[126,218,66,6.183719635009766],[126,218,67,6.178966522216797],[126,218,68,6.175511837005615],[126,218,69,6.176268100738525],[126,218,70,6.182623863220215],[126,218,71,6.195735454559326],[126,218,72,6.219391822814941],[126,218,73,6.2439866065979],[126,218,74,6.256223201751709],[126,218,75,6.260167121887207],[126,218,76,6.261189937591553],[126,218,77,6.2600321769714355],[126,218,78,6.256808280944824],[126,218,79,6.2509446144104],[126,219,64,6.18121862411499],[126,219,65,6.186306476593018],[126,219,66,6.183719635009766],[126,219,67,6.178966522216797],[126,219,68,6.175511837005615],[126,219,69,6.176268100738525],[126,219,70,6.182623863220215],[126,219,71,6.195735454559326],[126,219,72,6.219391822814941],[126,219,73,6.2439866065979],[126,219,74,6.256223201751709],[126,219,75,6.260167121887207],[126,219,76,6.261189937591553],[126,219,77,6.2600321769714355],[126,219,78,6.256808280944824],[126,219,79,6.2509446144104],[126,220,64,6.18121862411499],[126,220,65,6.186306476593018],[126,220,66,6.183719635009766],[126,220,67,6.178966522216797],[126,220,68,6.175511837005615],[126,220,69,6.176268100738525],[126,220,70,6.182623863220215],[126,220,71,6.195735454559326],[126,220,72,6.219391822814941],[126,220,73,6.2439866065979],[126,220,74,6.256223201751709],[126,220,75,6.260167121887207],[126,220,76,6.261189937591553],[126,220,77,6.2600321769714355],[126,220,78,6.256808280944824],[126,220,79,6.2509446144104],[126,221,64,6.18121862411499],[126,221,65,6.186306476593018],[126,221,66,6.183719635009766],[126,221,67,6.178966522216797],[126,221,68,6.175511837005615],[126,221,69,6.176268100738525],[126,221,70,6.182623863220215],[126,221,71,6.195735454559326],[126,221,72,6.219391822814941],[126,221,73,6.2439866065979],[126,221,74,6.256223201751709],[126,221,75,6.260167121887207],[126,221,76,6.261189937591553],[126,221,77,6.2600321769714355],[126,221,78,6.256808280944824],[126,221,79,6.2509446144104],[126,222,64,6.18121862411499],[126,222,65,6.186306476593018],[126,222,66,6.183719635009766],[126,222,67,6.178966522216797],[126,222,68,6.175511837005615],[126,222,69,6.176268100738525],[126,222,70,6.182623863220215],[126,222,71,6.195735454559326],[126,222,72,6.219391822814941],[126,222,73,6.2439866065979],[126,222,74,6.256223201751709],[126,222,75,6.260167121887207],[126,222,76,6.261189937591553],[126,222,77,6.2600321769714355],[126,222,78,6.256808280944824],[126,222,79,6.2509446144104],[126,223,64,6.18121862411499],[126,223,65,6.186306476593018],[126,223,66,6.183719635009766],[126,223,67,6.178966522216797],[126,223,68,6.175511837005615],[126,223,69,6.176268100738525],[126,223,70,6.182623863220215],[126,223,71,6.195735454559326],[126,223,72,6.219391822814941],[126,223,73,6.2439866065979],[126,223,74,6.256223201751709],[126,223,75,6.260167121887207],[126,223,76,6.261189937591553],[126,223,77,6.2600321769714355],[126,223,78,6.256808280944824],[126,223,79,6.2509446144104],[126,224,64,6.18121862411499],[126,224,65,6.186306476593018],[126,224,66,6.183719635009766],[126,224,67,6.178966522216797],[126,224,68,6.175511837005615],[126,224,69,6.176268100738525],[126,224,70,6.182623863220215],[126,224,71,6.195735454559326],[126,224,72,6.219391822814941],[126,224,73,6.2439866065979],[126,224,74,6.256223201751709],[126,224,75,6.260167121887207],[126,224,76,6.261189937591553],[126,224,77,6.2600321769714355],[126,224,78,6.256808280944824],[126,224,79,6.2509446144104],[126,225,64,6.18121862411499],[126,225,65,6.186306476593018],[126,225,66,6.183719635009766],[126,225,67,6.178966522216797],[126,225,68,6.175511837005615],[126,225,69,6.176268100738525],[126,225,70,6.182623863220215],[126,225,71,6.195735454559326],[126,225,72,6.219391822814941],[126,225,73,6.2439866065979],[126,225,74,6.256223201751709],[126,225,75,6.260167121887207],[126,225,76,6.261189937591553],[126,225,77,6.2600321769714355],[126,225,78,6.256808280944824],[126,225,79,6.2509446144104],[126,226,64,6.18121862411499],[126,226,65,6.186306476593018],[126,226,66,6.183719635009766],[126,226,67,6.178966522216797],[126,226,68,6.175511837005615],[126,226,69,6.176268100738525],[126,226,70,6.182623863220215],[126,226,71,6.195735454559326],[126,226,72,6.219391822814941],[126,226,73,6.2439866065979],[126,226,74,6.256223201751709],[126,226,75,6.260167121887207],[126,226,76,6.261189937591553],[126,226,77,6.2600321769714355],[126,226,78,6.256808280944824],[126,226,79,6.2509446144104],[126,227,64,6.18121862411499],[126,227,65,6.186306476593018],[126,227,66,6.183719635009766],[126,227,67,6.178966522216797],[126,227,68,6.175511837005615],[126,227,69,6.176268100738525],[126,227,70,6.182623863220215],[126,227,71,6.195735454559326],[126,227,72,6.219391822814941],[126,227,73,6.2439866065979],[126,227,74,6.256223201751709],[126,227,75,6.260167121887207],[126,227,76,6.261189937591553],[126,227,77,6.2600321769714355],[126,227,78,6.256808280944824],[126,227,79,6.2509446144104],[126,228,64,6.18121862411499],[126,228,65,6.186306476593018],[126,228,66,6.183719635009766],[126,228,67,6.178966522216797],[126,228,68,6.175511837005615],[126,228,69,6.176268100738525],[126,228,70,6.182623863220215],[126,228,71,6.195735454559326],[126,228,72,6.219391822814941],[126,228,73,6.2439866065979],[126,228,74,6.256223201751709],[126,228,75,6.260167121887207],[126,228,76,6.261189937591553],[126,228,77,6.2600321769714355],[126,228,78,6.256808280944824],[126,228,79,6.2509446144104],[126,229,64,6.18121862411499],[126,229,65,6.186306476593018],[126,229,66,6.183719635009766],[126,229,67,6.178966522216797],[126,229,68,6.175511837005615],[126,229,69,6.176268100738525],[126,229,70,6.182623863220215],[126,229,71,6.195735454559326],[126,229,72,6.219391822814941],[126,229,73,6.2439866065979],[126,229,74,6.256223201751709],[126,229,75,6.260167121887207],[126,229,76,6.261189937591553],[126,229,77,6.2600321769714355],[126,229,78,6.256808280944824],[126,229,79,6.2509446144104],[126,230,64,6.18121862411499],[126,230,65,6.186306476593018],[126,230,66,6.183719635009766],[126,230,67,6.178966522216797],[126,230,68,6.175511837005615],[126,230,69,6.176268100738525],[126,230,70,6.182623863220215],[126,230,71,6.195735454559326],[126,230,72,6.219391822814941],[126,230,73,6.2439866065979],[126,230,74,6.256223201751709],[126,230,75,6.260167121887207],[126,230,76,6.261189937591553],[126,230,77,6.2600321769714355],[126,230,78,6.256808280944824],[126,230,79,6.2509446144104],[126,231,64,6.18121862411499],[126,231,65,6.186306476593018],[126,231,66,6.183719635009766],[126,231,67,6.178966522216797],[126,231,68,6.175511837005615],[126,231,69,6.176268100738525],[126,231,70,6.182623863220215],[126,231,71,6.195735454559326],[126,231,72,6.219391822814941],[126,231,73,6.2439866065979],[126,231,74,6.256223201751709],[126,231,75,6.260167121887207],[126,231,76,6.261189937591553],[126,231,77,6.2600321769714355],[126,231,78,6.256808280944824],[126,231,79,6.2509446144104],[126,232,64,6.18121862411499],[126,232,65,6.186306476593018],[126,232,66,6.183719635009766],[126,232,67,6.178966522216797],[126,232,68,6.175511837005615],[126,232,69,6.176268100738525],[126,232,70,6.182623863220215],[126,232,71,6.195735454559326],[126,232,72,6.219391822814941],[126,232,73,6.2439866065979],[126,232,74,6.256223201751709],[126,232,75,6.260167121887207],[126,232,76,6.261189937591553],[126,232,77,6.2600321769714355],[126,232,78,6.256808280944824],[126,232,79,6.2509446144104],[126,233,64,6.18121862411499],[126,233,65,6.186306476593018],[126,233,66,6.183719635009766],[126,233,67,6.178966522216797],[126,233,68,6.175511837005615],[126,233,69,6.176268100738525],[126,233,70,6.182623863220215],[126,233,71,6.195735454559326],[126,233,72,6.219391822814941],[126,233,73,6.2439866065979],[126,233,74,6.256223201751709],[126,233,75,6.260167121887207],[126,233,76,6.261189937591553],[126,233,77,6.2600321769714355],[126,233,78,6.256808280944824],[126,233,79,6.2509446144104],[126,234,64,6.18121862411499],[126,234,65,6.186306476593018],[126,234,66,6.183719635009766],[126,234,67,6.178966522216797],[126,234,68,6.175511837005615],[126,234,69,6.176268100738525],[126,234,70,6.182623863220215],[126,234,71,6.195735454559326],[126,234,72,6.219391822814941],[126,234,73,6.2439866065979],[126,234,74,6.256223201751709],[126,234,75,6.260167121887207],[126,234,76,6.261189937591553],[126,234,77,6.2600321769714355],[126,234,78,6.256808280944824],[126,234,79,6.2509446144104],[126,235,64,6.18121862411499],[126,235,65,6.186306476593018],[126,235,66,6.183719635009766],[126,235,67,6.178966522216797],[126,235,68,6.175511837005615],[126,235,69,6.176268100738525],[126,235,70,6.182623863220215],[126,235,71,6.195735454559326],[126,235,72,6.219391822814941],[126,235,73,6.2439866065979],[126,235,74,6.256223201751709],[126,235,75,6.260167121887207],[126,235,76,6.261189937591553],[126,235,77,6.2600321769714355],[126,235,78,6.256808280944824],[126,235,79,6.2509446144104],[126,236,64,6.18121862411499],[126,236,65,6.186306476593018],[126,236,66,6.183719635009766],[126,236,67,6.178966522216797],[126,236,68,6.175511837005615],[126,236,69,6.176268100738525],[126,236,70,6.182623863220215],[126,236,71,6.195735454559326],[126,236,72,6.219391822814941],[126,236,73,6.2439866065979],[126,236,74,6.256223201751709],[126,236,75,6.260167121887207],[126,236,76,6.261189937591553],[126,236,77,6.2600321769714355],[126,236,78,6.256808280944824],[126,236,79,6.2509446144104],[126,237,64,6.18121862411499],[126,237,65,6.186306476593018],[126,237,66,6.183719635009766],[126,237,67,6.178966522216797],[126,237,68,6.175511837005615],[126,237,69,6.176268100738525],[126,237,70,6.182623863220215],[126,237,71,6.195735454559326],[126,237,72,6.219391822814941],[126,237,73,6.2439866065979],[126,237,74,6.256223201751709],[126,237,75,6.260167121887207],[126,237,76,6.261189937591553],[126,237,77,6.2600321769714355],[126,237,78,6.256808280944824],[126,237,79,6.2509446144104],[126,238,64,6.18121862411499],[126,238,65,6.186306476593018],[126,238,66,6.183719635009766],[126,238,67,6.178966522216797],[126,238,68,6.175511837005615],[126,238,69,6.176268100738525],[126,238,70,6.182623863220215],[126,238,71,6.195735454559326],[126,238,72,6.219391822814941],[126,238,73,6.2439866065979],[126,238,74,6.256223201751709],[126,238,75,6.260167121887207],[126,238,76,6.261189937591553],[126,238,77,6.2600321769714355],[126,238,78,6.256808280944824],[126,238,79,6.2509446144104],[126,239,64,6.18121862411499],[126,239,65,6.186306476593018],[126,239,66,6.183719635009766],[126,239,67,6.178966522216797],[126,239,68,6.175511837005615],[126,239,69,6.176268100738525],[126,239,70,6.182623863220215],[126,239,71,6.195735454559326],[126,239,72,6.219391822814941],[126,239,73,6.2439866065979],[126,239,74,6.256223201751709],[126,239,75,6.260167121887207],[126,239,76,6.261189937591553],[126,239,77,6.2600321769714355],[126,239,78,6.256808280944824],[126,239,79,6.2509446144104],[126,240,64,6.18121862411499],[126,240,65,6.186306476593018],[126,240,66,6.183719635009766],[126,240,67,6.178966522216797],[126,240,68,6.175511837005615],[126,240,69,6.176268100738525],[126,240,70,6.182623863220215],[126,240,71,6.195735454559326],[126,240,72,6.219391822814941],[126,240,73,6.2439866065979],[126,240,74,6.256223201751709],[126,240,75,6.260167121887207],[126,240,76,6.261189937591553],[126,240,77,6.2600321769714355],[126,240,78,6.256808280944824],[126,240,79,6.2509446144104],[126,241,64,6.18121862411499],[126,241,65,6.186306476593018],[126,241,66,6.183719635009766],[126,241,67,6.178966522216797],[126,241,68,6.175511837005615],[126,241,69,6.176268100738525],[126,241,70,6.182623863220215],[126,241,71,6.195735454559326],[126,241,72,6.219391822814941],[126,241,73,6.2439866065979],[126,241,74,6.256223201751709],[126,241,75,6.260167121887207],[126,241,76,6.261189937591553],[126,241,77,6.2600321769714355],[126,241,78,6.256808280944824],[126,241,79,6.2509446144104],[126,242,64,6.18121862411499],[126,242,65,6.186306476593018],[126,242,66,6.183719635009766],[126,242,67,6.178966522216797],[126,242,68,6.175511837005615],[126,242,69,6.176268100738525],[126,242,70,6.182623863220215],[126,242,71,6.195735454559326],[126,242,72,6.219391822814941],[126,242,73,6.2439866065979],[126,242,74,6.256223201751709],[126,242,75,6.260167121887207],[126,242,76,6.261189937591553],[126,242,77,6.2600321769714355],[126,242,78,6.256808280944824],[126,242,79,6.2509446144104],[126,243,64,6.18121862411499],[126,243,65,6.186306476593018],[126,243,66,6.183719635009766],[126,243,67,6.178966522216797],[126,243,68,6.175511837005615],[126,243,69,6.176268100738525],[126,243,70,6.182623863220215],[126,243,71,6.195735454559326],[126,243,72,6.219391822814941],[126,243,73,6.2439866065979],[126,243,74,6.256223201751709],[126,243,75,6.260167121887207],[126,243,76,6.261189937591553],[126,243,77,6.2600321769714355],[126,243,78,6.256808280944824],[126,243,79,6.2509446144104],[126,244,64,6.18121862411499],[126,244,65,6.186306476593018],[126,244,66,6.183719635009766],[126,244,67,6.178966522216797],[126,244,68,6.175511837005615],[126,244,69,6.176268100738525],[126,244,70,6.182623863220215],[126,244,71,6.195735454559326],[126,244,72,6.219391822814941],[126,244,73,6.2439866065979],[126,244,74,6.256223201751709],[126,244,75,6.260167121887207],[126,244,76,6.261189937591553],[126,244,77,6.2600321769714355],[126,244,78,6.256808280944824],[126,244,79,6.2509446144104],[126,245,64,6.18121862411499],[126,245,65,6.186306476593018],[126,245,66,6.183719635009766],[126,245,67,6.178966522216797],[126,245,68,6.175511837005615],[126,245,69,6.176268100738525],[126,245,70,6.182623863220215],[126,245,71,6.195735454559326],[126,245,72,6.219391822814941],[126,245,73,6.2439866065979],[126,245,74,6.256223201751709],[126,245,75,6.260167121887207],[126,245,76,6.261189937591553],[126,245,77,6.2600321769714355],[126,245,78,6.256808280944824],[126,245,79,6.2509446144104],[126,246,64,6.18121862411499],[126,246,65,6.186306476593018],[126,246,66,6.183719635009766],[126,246,67,6.178966522216797],[126,246,68,6.175511837005615],[126,246,69,6.176268100738525],[126,246,70,6.182623863220215],[126,246,71,6.195735454559326],[126,246,72,6.219391822814941],[126,246,73,6.2439866065979],[126,246,74,6.256223201751709],[126,246,75,6.260167121887207],[126,246,76,6.261189937591553],[126,246,77,6.2600321769714355],[126,246,78,6.256808280944824],[126,246,79,6.2509446144104],[126,247,64,6.18121862411499],[126,247,65,6.186306476593018],[126,247,66,6.183719635009766],[126,247,67,6.178966522216797],[126,247,68,6.175511837005615],[126,247,69,6.176268100738525],[126,247,70,6.182623863220215],[126,247,71,6.195735454559326],[126,247,72,6.219391822814941],[126,247,73,6.2439866065979],[126,247,74,6.256223201751709],[126,247,75,6.260167121887207],[126,247,76,6.261189937591553],[126,247,77,6.2600321769714355],[126,247,78,6.256808280944824],[126,247,79,6.2509446144104],[126,248,64,6.18121862411499],[126,248,65,6.186306476593018],[126,248,66,6.183719635009766],[126,248,67,6.178966522216797],[126,248,68,6.175511837005615],[126,248,69,6.176268100738525],[126,248,70,6.182623863220215],[126,248,71,6.195735454559326],[126,248,72,6.219391822814941],[126,248,73,6.2439866065979],[126,248,74,6.256223201751709],[126,248,75,6.260167121887207],[126,248,76,6.261189937591553],[126,248,77,6.2600321769714355],[126,248,78,6.256808280944824],[126,248,79,6.2509446144104],[126,249,64,6.18121862411499],[126,249,65,6.186306476593018],[126,249,66,6.183719635009766],[126,249,67,6.178966522216797],[126,249,68,6.175511837005615],[126,249,69,6.176268100738525],[126,249,70,6.182623863220215],[126,249,71,6.195735454559326],[126,249,72,6.219391822814941],[126,249,73,6.2439866065979],[126,249,74,6.256223201751709],[126,249,75,6.260167121887207],[126,249,76,6.261189937591553],[126,249,77,6.2600321769714355],[126,249,78,6.256808280944824],[126,249,79,6.2509446144104],[126,250,64,6.18121862411499],[126,250,65,6.186306476593018],[126,250,66,6.183719635009766],[126,250,67,6.178966522216797],[126,250,68,6.175511837005615],[126,250,69,6.176268100738525],[126,250,70,6.182623863220215],[126,250,71,6.195735454559326],[126,250,72,6.219391822814941],[126,250,73,6.2439866065979],[126,250,74,6.256223201751709],[126,250,75,6.260167121887207],[126,250,76,6.261189937591553],[126,250,77,6.2600321769714355],[126,250,78,6.256808280944824],[126,250,79,6.2509446144104],[126,251,64,6.18121862411499],[126,251,65,6.186306476593018],[126,251,66,6.183719635009766],[126,251,67,6.178966522216797],[126,251,68,6.175511837005615],[126,251,69,6.176268100738525],[126,251,70,6.182623863220215],[126,251,71,6.195735454559326],[126,251,72,6.219391822814941],[126,251,73,6.2439866065979],[126,251,74,6.256223201751709],[126,251,75,6.260167121887207],[126,251,76,6.261189937591553],[126,251,77,6.2600321769714355],[126,251,78,6.256808280944824],[126,251,79,6.2509446144104],[126,252,64,6.18121862411499],[126,252,65,6.186306476593018],[126,252,66,6.183719635009766],[126,252,67,6.178966522216797],[126,252,68,6.175511837005615],[126,252,69,6.176268100738525],[126,252,70,6.182623863220215],[126,252,71,6.195735454559326],[126,252,72,6.219391822814941],[126,252,73,6.2439866065979],[126,252,74,6.256223201751709],[126,252,75,6.260167121887207],[126,252,76,6.261189937591553],[126,252,77,6.2600321769714355],[126,252,78,6.256808280944824],[126,252,79,6.2509446144104],[126,253,64,6.18121862411499],[126,253,65,6.186306476593018],[126,253,66,6.183719635009766],[126,253,67,6.178966522216797],[126,253,68,6.175511837005615],[126,253,69,6.176268100738525],[126,253,70,6.182623863220215],[126,253,71,6.195735454559326],[126,253,72,6.219391822814941],[126,253,73,6.2439866065979],[126,253,74,6.256223201751709],[126,253,75,6.260167121887207],[126,253,76,6.261189937591553],[126,253,77,6.2600321769714355],[126,253,78,6.256808280944824],[126,253,79,6.2509446144104],[126,254,64,6.18121862411499],[126,254,65,6.186306476593018],[126,254,66,6.183719635009766],[126,254,67,6.178966522216797],[126,254,68,6.175511837005615],[126,254,69,6.176268100738525],[126,254,70,6.182623863220215],[126,254,71,6.195735454559326],[126,254,72,6.219391822814941],[126,254,73,6.2439866065979],[126,254,74,6.256223201751709],[126,254,75,6.260167121887207],[126,254,76,6.261189937591553],[126,254,77,6.2600321769714355],[126,254,78,6.256808280944824],[126,254,79,6.2509446144104],[126,255,64,6.18121862411499],[126,255,65,6.186306476593018],[126,255,66,6.183719635009766],[126,255,67,6.178966522216797],[126,255,68,6.175511837005615],[126,255,69,6.176268100738525],[126,255,70,6.182623863220215],[126,255,71,6.195735454559326],[126,255,72,6.219391822814941],[126,255,73,6.2439866065979],[126,255,74,6.256223201751709],[126,255,75,6.260167121887207],[126,255,76,6.261189937591553],[126,255,77,6.2600321769714355],[126,255,78,6.256808280944824],[126,255,79,6.2509446144104],[126,256,64,6.18121862411499],[126,256,65,6.186306476593018],[126,256,66,6.183719635009766],[126,256,67,6.178966522216797],[126,256,68,6.175511837005615],[126,256,69,6.176268100738525],[126,256,70,6.182623863220215],[126,256,71,6.195735454559326],[126,256,72,6.219391822814941],[126,256,73,6.2439866065979],[126,256,74,6.256223201751709],[126,256,75,6.260167121887207],[126,256,76,6.261189937591553],[126,256,77,6.2600321769714355],[126,256,78,6.256808280944824],[126,256,79,6.2509446144104],[126,257,64,6.18121862411499],[126,257,65,6.186306476593018],[126,257,66,6.183719635009766],[126,257,67,6.178966522216797],[126,257,68,6.175511837005615],[126,257,69,6.176268100738525],[126,257,70,6.182623863220215],[126,257,71,6.195735454559326],[126,257,72,6.219391822814941],[126,257,73,6.2439866065979],[126,257,74,6.256223201751709],[126,257,75,6.260167121887207],[126,257,76,6.261189937591553],[126,257,77,6.2600321769714355],[126,257,78,6.256808280944824],[126,257,79,6.2509446144104],[126,258,64,6.18121862411499],[126,258,65,6.186306476593018],[126,258,66,6.183719635009766],[126,258,67,6.178966522216797],[126,258,68,6.175511837005615],[126,258,69,6.176268100738525],[126,258,70,6.182623863220215],[126,258,71,6.195735454559326],[126,258,72,6.219391822814941],[126,258,73,6.2439866065979],[126,258,74,6.256223201751709],[126,258,75,6.260167121887207],[126,258,76,6.261189937591553],[126,258,77,6.2600321769714355],[126,258,78,6.256808280944824],[126,258,79,6.2509446144104],[126,259,64,6.18121862411499],[126,259,65,6.186306476593018],[126,259,66,6.183719635009766],[126,259,67,6.178966522216797],[126,259,68,6.175511837005615],[126,259,69,6.176268100738525],[126,259,70,6.182623863220215],[126,259,71,6.195735454559326],[126,259,72,6.219391822814941],[126,259,73,6.2439866065979],[126,259,74,6.256223201751709],[126,259,75,6.260167121887207],[126,259,76,6.261189937591553],[126,259,77,6.2600321769714355],[126,259,78,6.256808280944824],[126,259,79,6.2509446144104],[126,260,64,6.18121862411499],[126,260,65,6.186306476593018],[126,260,66,6.183719635009766],[126,260,67,6.178966522216797],[126,260,68,6.175511837005615],[126,260,69,6.176268100738525],[126,260,70,6.182623863220215],[126,260,71,6.195735454559326],[126,260,72,6.219391822814941],[126,260,73,6.2439866065979],[126,260,74,6.256223201751709],[126,260,75,6.260167121887207],[126,260,76,6.261189937591553],[126,260,77,6.2600321769714355],[126,260,78,6.256808280944824],[126,260,79,6.2509446144104],[126,261,64,6.18121862411499],[126,261,65,6.186306476593018],[126,261,66,6.183719635009766],[126,261,67,6.178966522216797],[126,261,68,6.175511837005615],[126,261,69,6.176268100738525],[126,261,70,6.182623863220215],[126,261,71,6.195735454559326],[126,261,72,6.219391822814941],[126,261,73,6.2439866065979],[126,261,74,6.256223201751709],[126,261,75,6.260167121887207],[126,261,76,6.261189937591553],[126,261,77,6.2600321769714355],[126,261,78,6.256808280944824],[126,261,79,6.2509446144104],[126,262,64,6.18121862411499],[126,262,65,6.186306476593018],[126,262,66,6.183719635009766],[126,262,67,6.178966522216797],[126,262,68,6.175511837005615],[126,262,69,6.176268100738525],[126,262,70,6.182623863220215],[126,262,71,6.195735454559326],[126,262,72,6.219391822814941],[126,262,73,6.2439866065979],[126,262,74,6.256223201751709],[126,262,75,6.260167121887207],[126,262,76,6.261189937591553],[126,262,77,6.2600321769714355],[126,262,78,6.256808280944824],[126,262,79,6.2509446144104],[126,263,64,6.18121862411499],[126,263,65,6.186306476593018],[126,263,66,6.183719635009766],[126,263,67,6.178966522216797],[126,263,68,6.175511837005615],[126,263,69,6.176268100738525],[126,263,70,6.182623863220215],[126,263,71,6.195735454559326],[126,263,72,6.219391822814941],[126,263,73,6.2439866065979],[126,263,74,6.256223201751709],[126,263,75,6.260167121887207],[126,263,76,6.261189937591553],[126,263,77,6.2600321769714355],[126,263,78,6.256808280944824],[126,263,79,6.2509446144104],[126,264,64,6.18121862411499],[126,264,65,6.186306476593018],[126,264,66,6.183719635009766],[126,264,67,6.178966522216797],[126,264,68,6.175511837005615],[126,264,69,6.176268100738525],[126,264,70,6.182623863220215],[126,264,71,6.195735454559326],[126,264,72,6.219391822814941],[126,264,73,6.2439866065979],[126,264,74,6.256223201751709],[126,264,75,6.260167121887207],[126,264,76,6.261189937591553],[126,264,77,6.2600321769714355],[126,264,78,6.256808280944824],[126,264,79,6.2509446144104],[126,265,64,6.18121862411499],[126,265,65,6.186306476593018],[126,265,66,6.183719635009766],[126,265,67,6.178966522216797],[126,265,68,6.175511837005615],[126,265,69,6.176268100738525],[126,265,70,6.182623863220215],[126,265,71,6.195735454559326],[126,265,72,6.219391822814941],[126,265,73,6.2439866065979],[126,265,74,6.256223201751709],[126,265,75,6.260167121887207],[126,265,76,6.261189937591553],[126,265,77,6.2600321769714355],[126,265,78,6.256808280944824],[126,265,79,6.2509446144104],[126,266,64,6.18121862411499],[126,266,65,6.186306476593018],[126,266,66,6.183719635009766],[126,266,67,6.178966522216797],[126,266,68,6.175511837005615],[126,266,69,6.176268100738525],[126,266,70,6.182623863220215],[126,266,71,6.195735454559326],[126,266,72,6.219391822814941],[126,266,73,6.2439866065979],[126,266,74,6.256223201751709],[126,266,75,6.260167121887207],[126,266,76,6.261189937591553],[126,266,77,6.2600321769714355],[126,266,78,6.256808280944824],[126,266,79,6.2509446144104],[126,267,64,6.18121862411499],[126,267,65,6.186306476593018],[126,267,66,6.183719635009766],[126,267,67,6.178966522216797],[126,267,68,6.175511837005615],[126,267,69,6.176268100738525],[126,267,70,6.182623863220215],[126,267,71,6.195735454559326],[126,267,72,6.219391822814941],[126,267,73,6.2439866065979],[126,267,74,6.256223201751709],[126,267,75,6.260167121887207],[126,267,76,6.261189937591553],[126,267,77,6.2600321769714355],[126,267,78,6.256808280944824],[126,267,79,6.2509446144104],[126,268,64,6.18121862411499],[126,268,65,6.186306476593018],[126,268,66,6.183719635009766],[126,268,67,6.178966522216797],[126,268,68,6.175511837005615],[126,268,69,6.176268100738525],[126,268,70,6.182623863220215],[126,268,71,6.195735454559326],[126,268,72,6.219391822814941],[126,268,73,6.2439866065979],[126,268,74,6.256223201751709],[126,268,75,6.260167121887207],[126,268,76,6.261189937591553],[126,268,77,6.2600321769714355],[126,268,78,6.256808280944824],[126,268,79,6.2509446144104],[126,269,64,6.18121862411499],[126,269,65,6.186306476593018],[126,269,66,6.183719635009766],[126,269,67,6.178966522216797],[126,269,68,6.175511837005615],[126,269,69,6.176268100738525],[126,269,70,6.182623863220215],[126,269,71,6.195735454559326],[126,269,72,6.219391822814941],[126,269,73,6.2439866065979],[126,269,74,6.256223201751709],[126,269,75,6.260167121887207],[126,269,76,6.261189937591553],[126,269,77,6.2600321769714355],[126,269,78,6.256808280944824],[126,269,79,6.2509446144104],[126,270,64,6.18121862411499],[126,270,65,6.186306476593018],[126,270,66,6.183719635009766],[126,270,67,6.178966522216797],[126,270,68,6.175511837005615],[126,270,69,6.176268100738525],[126,270,70,6.182623863220215],[126,270,71,6.195735454559326],[126,270,72,6.219391822814941],[126,270,73,6.2439866065979],[126,270,74,6.256223201751709],[126,270,75,6.260167121887207],[126,270,76,6.261189937591553],[126,270,77,6.2600321769714355],[126,270,78,6.256808280944824],[126,270,79,6.2509446144104],[126,271,64,6.18121862411499],[126,271,65,6.186306476593018],[126,271,66,6.183719635009766],[126,271,67,6.178966522216797],[126,271,68,6.175511837005615],[126,271,69,6.176268100738525],[126,271,70,6.182623863220215],[126,271,71,6.195735454559326],[126,271,72,6.219391822814941],[126,271,73,6.2439866065979],[126,271,74,6.256223201751709],[126,271,75,6.260167121887207],[126,271,76,6.261189937591553],[126,271,77,6.2600321769714355],[126,271,78,6.256808280944824],[126,271,79,6.2509446144104],[126,272,64,6.18121862411499],[126,272,65,6.186306476593018],[126,272,66,6.183719635009766],[126,272,67,6.178966522216797],[126,272,68,6.175511837005615],[126,272,69,6.176268100738525],[126,272,70,6.182623863220215],[126,272,71,6.195735454559326],[126,272,72,6.219391822814941],[126,272,73,6.2439866065979],[126,272,74,6.256223201751709],[126,272,75,6.260167121887207],[126,272,76,6.261189937591553],[126,272,77,6.2600321769714355],[126,272,78,6.256808280944824],[126,272,79,6.2509446144104],[126,273,64,6.18121862411499],[126,273,65,6.186306476593018],[126,273,66,6.183719635009766],[126,273,67,6.178966522216797],[126,273,68,6.175511837005615],[126,273,69,6.176268100738525],[126,273,70,6.182623863220215],[126,273,71,6.195735454559326],[126,273,72,6.219391822814941],[126,273,73,6.2439866065979],[126,273,74,6.256223201751709],[126,273,75,6.260167121887207],[126,273,76,6.261189937591553],[126,273,77,6.2600321769714355],[126,273,78,6.256808280944824],[126,273,79,6.2509446144104],[126,274,64,6.18121862411499],[126,274,65,6.186306476593018],[126,274,66,6.183719635009766],[126,274,67,6.178966522216797],[126,274,68,6.175511837005615],[126,274,69,6.176268100738525],[126,274,70,6.182623863220215],[126,274,71,6.195735454559326],[126,274,72,6.219391822814941],[126,274,73,6.2439866065979],[126,274,74,6.256223201751709],[126,274,75,6.260167121887207],[126,274,76,6.261189937591553],[126,274,77,6.2600321769714355],[126,274,78,6.256808280944824],[126,274,79,6.2509446144104],[126,275,64,6.18121862411499],[126,275,65,6.186306476593018],[126,275,66,6.183719635009766],[126,275,67,6.178966522216797],[126,275,68,6.175511837005615],[126,275,69,6.176268100738525],[126,275,70,6.182623863220215],[126,275,71,6.195735454559326],[126,275,72,6.219391822814941],[126,275,73,6.2439866065979],[126,275,74,6.256223201751709],[126,275,75,6.260167121887207],[126,275,76,6.261189937591553],[126,275,77,6.2600321769714355],[126,275,78,6.256808280944824],[126,275,79,6.2509446144104],[126,276,64,6.18121862411499],[126,276,65,6.186306476593018],[126,276,66,6.183719635009766],[126,276,67,6.178966522216797],[126,276,68,6.175511837005615],[126,276,69,6.176268100738525],[126,276,70,6.182623863220215],[126,276,71,6.195735454559326],[126,276,72,6.219391822814941],[126,276,73,6.2439866065979],[126,276,74,6.256223201751709],[126,276,75,6.260167121887207],[126,276,76,6.261189937591553],[126,276,77,6.2600321769714355],[126,276,78,6.256808280944824],[126,276,79,6.2509446144104],[126,277,64,6.18121862411499],[126,277,65,6.186306476593018],[126,277,66,6.183719635009766],[126,277,67,6.178966522216797],[126,277,68,6.175511837005615],[126,277,69,6.176268100738525],[126,277,70,6.182623863220215],[126,277,71,6.195735454559326],[126,277,72,6.219391822814941],[126,277,73,6.2439866065979],[126,277,74,6.256223201751709],[126,277,75,6.260167121887207],[126,277,76,6.261189937591553],[126,277,77,6.2600321769714355],[126,277,78,6.256808280944824],[126,277,79,6.2509446144104],[126,278,64,6.18121862411499],[126,278,65,6.186306476593018],[126,278,66,6.183719635009766],[126,278,67,6.178966522216797],[126,278,68,6.175511837005615],[126,278,69,6.176268100738525],[126,278,70,6.182623863220215],[126,278,71,6.195735454559326],[126,278,72,6.219391822814941],[126,278,73,6.2439866065979],[126,278,74,6.256223201751709],[126,278,75,6.260167121887207],[126,278,76,6.261189937591553],[126,278,77,6.2600321769714355],[126,278,78,6.256808280944824],[126,278,79,6.2509446144104],[126,279,64,6.18121862411499],[126,279,65,6.186306476593018],[126,279,66,6.183719635009766],[126,279,67,6.178966522216797],[126,279,68,6.175511837005615],[126,279,69,6.176268100738525],[126,279,70,6.182623863220215],[126,279,71,6.195735454559326],[126,279,72,6.219391822814941],[126,279,73,6.2439866065979],[126,279,74,6.256223201751709],[126,279,75,6.260167121887207],[126,279,76,6.261189937591553],[126,279,77,6.2600321769714355],[126,279,78,6.256808280944824],[126,279,79,6.2509446144104],[126,280,64,6.18121862411499],[126,280,65,6.186306476593018],[126,280,66,6.183719635009766],[126,280,67,6.178966522216797],[126,280,68,6.175511837005615],[126,280,69,6.176268100738525],[126,280,70,6.182623863220215],[126,280,71,6.195735454559326],[126,280,72,6.219391822814941],[126,280,73,6.2439866065979],[126,280,74,6.256223201751709],[126,280,75,6.260167121887207],[126,280,76,6.261189937591553],[126,280,77,6.2600321769714355],[126,280,78,6.256808280944824],[126,280,79,6.2509446144104],[126,281,64,6.18121862411499],[126,281,65,6.186306476593018],[126,281,66,6.183719635009766],[126,281,67,6.178966522216797],[126,281,68,6.175511837005615],[126,281,69,6.176268100738525],[126,281,70,6.182623863220215],[126,281,71,6.195735454559326],[126,281,72,6.219391822814941],[126,281,73,6.2439866065979],[126,281,74,6.256223201751709],[126,281,75,6.260167121887207],[126,281,76,6.261189937591553],[126,281,77,6.2600321769714355],[126,281,78,6.256808280944824],[126,281,79,6.2509446144104],[126,282,64,6.18121862411499],[126,282,65,6.186306476593018],[126,282,66,6.183719635009766],[126,282,67,6.178966522216797],[126,282,68,6.175511837005615],[126,282,69,6.176268100738525],[126,282,70,6.182623863220215],[126,282,71,6.195735454559326],[126,282,72,6.219391822814941],[126,282,73,6.2439866065979],[126,282,74,6.256223201751709],[126,282,75,6.260167121887207],[126,282,76,6.261189937591553],[126,282,77,6.2600321769714355],[126,282,78,6.256808280944824],[126,282,79,6.2509446144104],[126,283,64,6.18121862411499],[126,283,65,6.186306476593018],[126,283,66,6.183719635009766],[126,283,67,6.178966522216797],[126,283,68,6.175511837005615],[126,283,69,6.176268100738525],[126,283,70,6.182623863220215],[126,283,71,6.195735454559326],[126,283,72,6.219391822814941],[126,283,73,6.2439866065979],[126,283,74,6.256223201751709],[126,283,75,6.260167121887207],[126,283,76,6.261189937591553],[126,283,77,6.2600321769714355],[126,283,78,6.256808280944824],[126,283,79,6.2509446144104],[126,284,64,6.18121862411499],[126,284,65,6.186306476593018],[126,284,66,6.183719635009766],[126,284,67,6.178966522216797],[126,284,68,6.175511837005615],[126,284,69,6.176268100738525],[126,284,70,6.182623863220215],[126,284,71,6.195735454559326],[126,284,72,6.219391822814941],[126,284,73,6.2439866065979],[126,284,74,6.256223201751709],[126,284,75,6.260167121887207],[126,284,76,6.261189937591553],[126,284,77,6.2600321769714355],[126,284,78,6.256808280944824],[126,284,79,6.2509446144104],[126,285,64,6.18121862411499],[126,285,65,6.186306476593018],[126,285,66,6.183719635009766],[126,285,67,6.178966522216797],[126,285,68,6.175511837005615],[126,285,69,6.176268100738525],[126,285,70,6.182623863220215],[126,285,71,6.195735454559326],[126,285,72,6.219391822814941],[126,285,73,6.2439866065979],[126,285,74,6.256223201751709],[126,285,75,6.260167121887207],[126,285,76,6.261189937591553],[126,285,77,6.2600321769714355],[126,285,78,6.256808280944824],[126,285,79,6.2509446144104],[126,286,64,6.18121862411499],[126,286,65,6.186306476593018],[126,286,66,6.183719635009766],[126,286,67,6.178966522216797],[126,286,68,6.175511837005615],[126,286,69,6.176268100738525],[126,286,70,6.182623863220215],[126,286,71,6.195735454559326],[126,286,72,6.219391822814941],[126,286,73,6.2439866065979],[126,286,74,6.256223201751709],[126,286,75,6.260167121887207],[126,286,76,6.261189937591553],[126,286,77,6.2600321769714355],[126,286,78,6.256808280944824],[126,286,79,6.2509446144104],[126,287,64,6.18121862411499],[126,287,65,6.186306476593018],[126,287,66,6.183719635009766],[126,287,67,6.178966522216797],[126,287,68,6.175511837005615],[126,287,69,6.176268100738525],[126,287,70,6.182623863220215],[126,287,71,6.195735454559326],[126,287,72,6.219391822814941],[126,287,73,6.2439866065979],[126,287,74,6.256223201751709],[126,287,75,6.260167121887207],[126,287,76,6.261189937591553],[126,287,77,6.2600321769714355],[126,287,78,6.256808280944824],[126,287,79,6.2509446144104],[126,288,64,6.18121862411499],[126,288,65,6.186306476593018],[126,288,66,6.183719635009766],[126,288,67,6.178966522216797],[126,288,68,6.175511837005615],[126,288,69,6.176268100738525],[126,288,70,6.182623863220215],[126,288,71,6.195735454559326],[126,288,72,6.219391822814941],[126,288,73,6.2439866065979],[126,288,74,6.256223201751709],[126,288,75,6.260167121887207],[126,288,76,6.261189937591553],[126,288,77,6.2600321769714355],[126,288,78,6.256808280944824],[126,288,79,6.2509446144104],[126,289,64,6.18121862411499],[126,289,65,6.186306476593018],[126,289,66,6.183719635009766],[126,289,67,6.178966522216797],[126,289,68,6.175511837005615],[126,289,69,6.176268100738525],[126,289,70,6.182623863220215],[126,289,71,6.195735454559326],[126,289,72,6.219391822814941],[126,289,73,6.2439866065979],[126,289,74,6.256223201751709],[126,289,75,6.260167121887207],[126,289,76,6.261189937591553],[126,289,77,6.2600321769714355],[126,289,78,6.256808280944824],[126,289,79,6.2509446144104],[126,290,64,6.18121862411499],[126,290,65,6.186306476593018],[126,290,66,6.183719635009766],[126,290,67,6.178966522216797],[126,290,68,6.175511837005615],[126,290,69,6.176268100738525],[126,290,70,6.182623863220215],[126,290,71,6.195735454559326],[126,290,72,6.219391822814941],[126,290,73,6.2439866065979],[126,290,74,6.256223201751709],[126,290,75,6.260167121887207],[126,290,76,6.261189937591553],[126,290,77,6.2600321769714355],[126,290,78,6.256808280944824],[126,290,79,6.2509446144104],[126,291,64,6.18121862411499],[126,291,65,6.186306476593018],[126,291,66,6.183719635009766],[126,291,67,6.178966522216797],[126,291,68,6.175511837005615],[126,291,69,6.176268100738525],[126,291,70,6.182623863220215],[126,291,71,6.195735454559326],[126,291,72,6.219391822814941],[126,291,73,6.2439866065979],[126,291,74,6.256223201751709],[126,291,75,6.260167121887207],[126,291,76,6.261189937591553],[126,291,77,6.2600321769714355],[126,291,78,6.256808280944824],[126,291,79,6.2509446144104],[126,292,64,6.18121862411499],[126,292,65,6.186306476593018],[126,292,66,6.183719635009766],[126,292,67,6.178966522216797],[126,292,68,6.175511837005615],[126,292,69,6.176268100738525],[126,292,70,6.182623863220215],[126,292,71,6.195735454559326],[126,292,72,6.219391822814941],[126,292,73,6.2439866065979],[126,292,74,6.256223201751709],[126,292,75,6.260167121887207],[126,292,76,6.261189937591553],[126,292,77,6.2600321769714355],[126,292,78,6.256808280944824],[126,292,79,6.2509446144104],[126,293,64,6.18121862411499],[126,293,65,6.186306476593018],[126,293,66,6.183719635009766],[126,293,67,6.178966522216797],[126,293,68,6.175511837005615],[126,293,69,6.176268100738525],[126,293,70,6.182623863220215],[126,293,71,6.195735454559326],[126,293,72,6.219391822814941],[126,293,73,6.2439866065979],[126,293,74,6.256223201751709],[126,293,75,6.260167121887207],[126,293,76,6.261189937591553],[126,293,77,6.2600321769714355],[126,293,78,6.256808280944824],[126,293,79,6.2509446144104],[126,294,64,6.18121862411499],[126,294,65,6.186306476593018],[126,294,66,6.183719635009766],[126,294,67,6.178966522216797],[126,294,68,6.175511837005615],[126,294,69,6.176268100738525],[126,294,70,6.182623863220215],[126,294,71,6.195735454559326],[126,294,72,6.219391822814941],[126,294,73,6.2439866065979],[126,294,74,6.256223201751709],[126,294,75,6.260167121887207],[126,294,76,6.261189937591553],[126,294,77,6.2600321769714355],[126,294,78,6.256808280944824],[126,294,79,6.2509446144104],[126,295,64,6.18121862411499],[126,295,65,6.186306476593018],[126,295,66,6.183719635009766],[126,295,67,6.178966522216797],[126,295,68,6.175511837005615],[126,295,69,6.176268100738525],[126,295,70,6.182623863220215],[126,295,71,6.195735454559326],[126,295,72,6.219391822814941],[126,295,73,6.2439866065979],[126,295,74,6.256223201751709],[126,295,75,6.260167121887207],[126,295,76,6.261189937591553],[126,295,77,6.2600321769714355],[126,295,78,6.256808280944824],[126,295,79,6.2509446144104],[126,296,64,6.18121862411499],[126,296,65,6.186306476593018],[126,296,66,6.183719635009766],[126,296,67,6.178966522216797],[126,296,68,6.175511837005615],[126,296,69,6.176268100738525],[126,296,70,6.182623863220215],[126,296,71,6.195735454559326],[126,296,72,6.219391822814941],[126,296,73,6.2439866065979],[126,296,74,6.256223201751709],[126,296,75,6.260167121887207],[126,296,76,6.261189937591553],[126,296,77,6.2600321769714355],[126,296,78,6.256808280944824],[126,296,79,6.2509446144104],[126,297,64,6.18121862411499],[126,297,65,6.186306476593018],[126,297,66,6.183719635009766],[126,297,67,6.178966522216797],[126,297,68,6.175511837005615],[126,297,69,6.176268100738525],[126,297,70,6.182623863220215],[126,297,71,6.195735454559326],[126,297,72,6.219391822814941],[126,297,73,6.2439866065979],[126,297,74,6.256223201751709],[126,297,75,6.260167121887207],[126,297,76,6.261189937591553],[126,297,77,6.2600321769714355],[126,297,78,6.256808280944824],[126,297,79,6.2509446144104],[126,298,64,6.18121862411499],[126,298,65,6.186306476593018],[126,298,66,6.183719635009766],[126,298,67,6.178966522216797],[126,298,68,6.175511837005615],[126,298,69,6.176268100738525],[126,298,70,6.182623863220215],[126,298,71,6.195735454559326],[126,298,72,6.219391822814941],[126,298,73,6.2439866065979],[126,298,74,6.256223201751709],[126,298,75,6.260167121887207],[126,298,76,6.261189937591553],[126,298,77,6.2600321769714355],[126,298,78,6.256808280944824],[126,298,79,6.2509446144104],[126,299,64,6.18121862411499],[126,299,65,6.186306476593018],[126,299,66,6.183719635009766],[126,299,67,6.178966522216797],[126,299,68,6.175511837005615],[126,299,69,6.176268100738525],[126,299,70,6.182623863220215],[126,299,71,6.195735454559326],[126,299,72,6.219391822814941],[126,299,73,6.2439866065979],[126,299,74,6.256223201751709],[126,299,75,6.260167121887207],[126,299,76,6.261189937591553],[126,299,77,6.2600321769714355],[126,299,78,6.256808280944824],[126,299,79,6.2509446144104],[126,300,64,6.18121862411499],[126,300,65,6.186306476593018],[126,300,66,6.183719635009766],[126,300,67,6.178966522216797],[126,300,68,6.175511837005615],[126,300,69,6.176268100738525],[126,300,70,6.182623863220215],[126,300,71,6.195735454559326],[126,300,72,6.219391822814941],[126,300,73,6.2439866065979],[126,300,74,6.256223201751709],[126,300,75,6.260167121887207],[126,300,76,6.261189937591553],[126,300,77,6.2600321769714355],[126,300,78,6.256808280944824],[126,300,79,6.2509446144104],[126,301,64,6.18121862411499],[126,301,65,6.186306476593018],[126,301,66,6.183719635009766],[126,301,67,6.178966522216797],[126,301,68,6.175511837005615],[126,301,69,6.176268100738525],[126,301,70,6.182623863220215],[126,301,71,6.195735454559326],[126,301,72,6.219391822814941],[126,301,73,6.2439866065979],[126,301,74,6.256223201751709],[126,301,75,6.260167121887207],[126,301,76,6.261189937591553],[126,301,77,6.2600321769714355],[126,301,78,6.256808280944824],[126,301,79,6.2509446144104],[126,302,64,6.18121862411499],[126,302,65,6.186306476593018],[126,302,66,6.183719635009766],[126,302,67,6.178966522216797],[126,302,68,6.175511837005615],[126,302,69,6.176268100738525],[126,302,70,6.182623863220215],[126,302,71,6.195735454559326],[126,302,72,6.219391822814941],[126,302,73,6.2439866065979],[126,302,74,6.256223201751709],[126,302,75,6.260167121887207],[126,302,76,6.261189937591553],[126,302,77,6.2600321769714355],[126,302,78,6.256808280944824],[126,302,79,6.2509446144104],[126,303,64,6.18121862411499],[126,303,65,6.186306476593018],[126,303,66,6.183719635009766],[126,303,67,6.178966522216797],[126,303,68,6.175511837005615],[126,303,69,6.176268100738525],[126,303,70,6.182623863220215],[126,303,71,6.195735454559326],[126,303,72,6.219391822814941],[126,303,73,6.2439866065979],[126,303,74,6.256223201751709],[126,303,75,6.260167121887207],[126,303,76,6.261189937591553],[126,303,77,6.2600321769714355],[126,303,78,6.256808280944824],[126,303,79,6.2509446144104],[126,304,64,6.18121862411499],[126,304,65,6.186306476593018],[126,304,66,6.183719635009766],[126,304,67,6.178966522216797],[126,304,68,6.175511837005615],[126,304,69,6.176268100738525],[126,304,70,6.182623863220215],[126,304,71,6.195735454559326],[126,304,72,6.219391822814941],[126,304,73,6.2439866065979],[126,304,74,6.256223201751709],[126,304,75,6.260167121887207],[126,304,76,6.261189937591553],[126,304,77,6.2600321769714355],[126,304,78,6.256808280944824],[126,304,79,6.2509446144104],[126,305,64,6.18121862411499],[126,305,65,6.186306476593018],[126,305,66,6.183719635009766],[126,305,67,6.178966522216797],[126,305,68,6.175511837005615],[126,305,69,6.176268100738525],[126,305,70,6.182623863220215],[126,305,71,6.195735454559326],[126,305,72,6.219391822814941],[126,305,73,6.2439866065979],[126,305,74,6.256223201751709],[126,305,75,6.260167121887207],[126,305,76,6.261189937591553],[126,305,77,6.2600321769714355],[126,305,78,6.256808280944824],[126,305,79,6.2509446144104],[126,306,64,6.18121862411499],[126,306,65,6.186306476593018],[126,306,66,6.183719635009766],[126,306,67,6.178966522216797],[126,306,68,6.175511837005615],[126,306,69,6.176268100738525],[126,306,70,6.182623863220215],[126,306,71,6.195735454559326],[126,306,72,6.219391822814941],[126,306,73,6.2439866065979],[126,306,74,6.256223201751709],[126,306,75,6.260167121887207],[126,306,76,6.261189937591553],[126,306,77,6.2600321769714355],[126,306,78,6.256808280944824],[126,306,79,6.2509446144104],[126,307,64,6.18121862411499],[126,307,65,6.186306476593018],[126,307,66,6.183719635009766],[126,307,67,6.178966522216797],[126,307,68,6.175511837005615],[126,307,69,6.176268100738525],[126,307,70,6.182623863220215],[126,307,71,6.195735454559326],[126,307,72,6.219391822814941],[126,307,73,6.2439866065979],[126,307,74,6.256223201751709],[126,307,75,6.260167121887207],[126,307,76,6.261189937591553],[126,307,77,6.2600321769714355],[126,307,78,6.256808280944824],[126,307,79,6.2509446144104],[126,308,64,6.18121862411499],[126,308,65,6.186306476593018],[126,308,66,6.183719635009766],[126,308,67,6.178966522216797],[126,308,68,6.175511837005615],[126,308,69,6.176268100738525],[126,308,70,6.182623863220215],[126,308,71,6.195735454559326],[126,308,72,6.219391822814941],[126,308,73,6.2439866065979],[126,308,74,6.256223201751709],[126,308,75,6.260167121887207],[126,308,76,6.261189937591553],[126,308,77,6.2600321769714355],[126,308,78,6.256808280944824],[126,308,79,6.2509446144104],[126,309,64,6.18121862411499],[126,309,65,6.186306476593018],[126,309,66,6.183719635009766],[126,309,67,6.178966522216797],[126,309,68,6.175511837005615],[126,309,69,6.176268100738525],[126,309,70,6.182623863220215],[126,309,71,6.195735454559326],[126,309,72,6.219391822814941],[126,309,73,6.2439866065979],[126,309,74,6.256223201751709],[126,309,75,6.260167121887207],[126,309,76,6.261189937591553],[126,309,77,6.2600321769714355],[126,309,78,6.256808280944824],[126,309,79,6.2509446144104],[126,310,64,6.18121862411499],[126,310,65,6.186306476593018],[126,310,66,6.183719635009766],[126,310,67,6.178966522216797],[126,310,68,6.175511837005615],[126,310,69,6.176268100738525],[126,310,70,6.182623863220215],[126,310,71,6.195735454559326],[126,310,72,6.219391822814941],[126,310,73,6.2439866065979],[126,310,74,6.256223201751709],[126,310,75,6.260167121887207],[126,310,76,6.261189937591553],[126,310,77,6.2600321769714355],[126,310,78,6.256808280944824],[126,310,79,6.2509446144104],[126,311,64,6.18121862411499],[126,311,65,6.186306476593018],[126,311,66,6.183719635009766],[126,311,67,6.178966522216797],[126,311,68,6.175511837005615],[126,311,69,6.176268100738525],[126,311,70,6.182623863220215],[126,311,71,6.195735454559326],[126,311,72,6.219391822814941],[126,311,73,6.2439866065979],[126,311,74,6.256223201751709],[126,311,75,6.260167121887207],[126,311,76,6.261189937591553],[126,311,77,6.2600321769714355],[126,311,78,6.256808280944824],[126,311,79,6.2509446144104],[126,312,64,6.18121862411499],[126,312,65,6.186306476593018],[126,312,66,6.183719635009766],[126,312,67,6.178966522216797],[126,312,68,6.175511837005615],[126,312,69,6.176268100738525],[126,312,70,6.182623863220215],[126,312,71,6.195735454559326],[126,312,72,6.219391822814941],[126,312,73,6.2439866065979],[126,312,74,6.256223201751709],[126,312,75,6.260167121887207],[126,312,76,6.261189937591553],[126,312,77,6.2600321769714355],[126,312,78,6.256808280944824],[126,312,79,6.2509446144104],[126,313,64,6.18121862411499],[126,313,65,6.186306476593018],[126,313,66,6.183719635009766],[126,313,67,6.178966522216797],[126,313,68,6.175511837005615],[126,313,69,6.176268100738525],[126,313,70,6.182623863220215],[126,313,71,6.195735454559326],[126,313,72,6.219391822814941],[126,313,73,6.2439866065979],[126,313,74,6.256223201751709],[126,313,75,6.260167121887207],[126,313,76,6.261189937591553],[126,313,77,6.2600321769714355],[126,313,78,6.256808280944824],[126,313,79,6.2509446144104],[126,314,64,6.18121862411499],[126,314,65,6.186306476593018],[126,314,66,6.183719635009766],[126,314,67,6.178966522216797],[126,314,68,6.175511837005615],[126,314,69,6.176268100738525],[126,314,70,6.182623863220215],[126,314,71,6.195735454559326],[126,314,72,6.219391822814941],[126,314,73,6.2439866065979],[126,314,74,6.256223201751709],[126,314,75,6.260167121887207],[126,314,76,6.261189937591553],[126,314,77,6.2600321769714355],[126,314,78,6.256808280944824],[126,314,79,6.2509446144104],[126,315,64,6.18121862411499],[126,315,65,6.186306476593018],[126,315,66,6.183719635009766],[126,315,67,6.178966522216797],[126,315,68,6.175511837005615],[126,315,69,6.176268100738525],[126,315,70,6.182623863220215],[126,315,71,6.195735454559326],[126,315,72,6.219391822814941],[126,315,73,6.2439866065979],[126,315,74,6.256223201751709],[126,315,75,6.260167121887207],[126,315,76,6.261189937591553],[126,315,77,6.2600321769714355],[126,315,78,6.256808280944824],[126,315,79,6.2509446144104],[126,316,64,6.18121862411499],[126,316,65,6.186306476593018],[126,316,66,6.183719635009766],[126,316,67,6.178966522216797],[126,316,68,6.175511837005615],[126,316,69,6.176268100738525],[126,316,70,6.182623863220215],[126,316,71,6.195735454559326],[126,316,72,6.219391822814941],[126,316,73,6.2439866065979],[126,316,74,6.256223201751709],[126,316,75,6.260167121887207],[126,316,76,6.261189937591553],[126,316,77,6.2600321769714355],[126,316,78,6.256808280944824],[126,316,79,6.2509446144104],[126,317,64,6.18121862411499],[126,317,65,6.186306476593018],[126,317,66,6.183719635009766],[126,317,67,6.178966522216797],[126,317,68,6.175511837005615],[126,317,69,6.176268100738525],[126,317,70,6.182623863220215],[126,317,71,6.195735454559326],[126,317,72,6.219391822814941],[126,317,73,6.2439866065979],[126,317,74,6.256223201751709],[126,317,75,6.260167121887207],[126,317,76,6.261189937591553],[126,317,77,6.2600321769714355],[126,317,78,6.256808280944824],[126,317,79,6.2509446144104],[126,318,64,6.18121862411499],[126,318,65,6.186306476593018],[126,318,66,6.183719635009766],[126,318,67,6.178966522216797],[126,318,68,6.175511837005615],[126,318,69,6.176268100738525],[126,318,70,6.182623863220215],[126,318,71,6.195735454559326],[126,318,72,6.219391822814941],[126,318,73,6.2439866065979],[126,318,74,6.256223201751709],[126,318,75,6.260167121887207],[126,318,76,6.261189937591553],[126,318,77,6.2600321769714355],[126,318,78,6.256808280944824],[126,318,79,6.2509446144104],[126,319,64,6.18121862411499],[126,319,65,6.186306476593018],[126,319,66,6.183719635009766],[126,319,67,6.178966522216797],[126,319,68,6.175511837005615],[126,319,69,6.176268100738525],[126,319,70,6.182623863220215],[126,319,71,6.195735454559326],[126,319,72,6.219391822814941],[126,319,73,6.2439866065979],[126,319,74,6.256223201751709],[126,319,75,6.260167121887207],[126,319,76,6.261189937591553],[126,319,77,6.2600321769714355],[126,319,78,6.256808280944824],[126,319,79,6.2509446144104],[127,-64,64,6.182787895202637],[127,-64,65,6.1897873878479],[127,-64,66,6.189891338348389],[127,-64,67,6.187800884246826],[127,-64,68,6.18593168258667],[127,-64,69,6.186098575592041],[127,-64,70,6.189854145050049],[127,-64,71,6.198974132537842],[127,-64,72,6.218026161193848],[127,-64,73,6.240396499633789],[127,-64,74,6.2536444664001465],[127,-64,75,6.25829553604126],[127,-64,76,6.259389400482178],[127,-64,77,6.258517742156982],[127,-64,78,6.255523681640625],[127,-64,79,6.250174522399902],[127,-63,64,6.182787895202637],[127,-63,65,6.1897873878479],[127,-63,66,6.189891338348389],[127,-63,67,6.187800884246826],[127,-63,68,6.18593168258667],[127,-63,69,6.186098575592041],[127,-63,70,6.189854145050049],[127,-63,71,6.198974132537842],[127,-63,72,6.218026161193848],[127,-63,73,6.240396499633789],[127,-63,74,6.2536444664001465],[127,-63,75,6.25829553604126],[127,-63,76,6.259389400482178],[127,-63,77,6.258517742156982],[127,-63,78,6.255523681640625],[127,-63,79,6.250174522399902],[127,-62,64,6.182787895202637],[127,-62,65,6.1897873878479],[127,-62,66,6.189891338348389],[127,-62,67,6.187800884246826],[127,-62,68,6.18593168258667],[127,-62,69,6.186098575592041],[127,-62,70,6.189854145050049],[127,-62,71,6.198974132537842],[127,-62,72,6.218026161193848],[127,-62,73,6.240396499633789],[127,-62,74,6.2536444664001465],[127,-62,75,6.25829553604126],[127,-62,76,6.259389400482178],[127,-62,77,6.258517742156982],[127,-62,78,6.255523681640625],[127,-62,79,6.250174522399902],[127,-61,64,6.182787895202637],[127,-61,65,6.1897873878479],[127,-61,66,6.189891338348389],[127,-61,67,6.187800884246826],[127,-61,68,6.18593168258667],[127,-61,69,6.186098575592041],[127,-61,70,6.189854145050049],[127,-61,71,6.198974132537842],[127,-61,72,6.218026161193848],[127,-61,73,6.240396499633789],[127,-61,74,6.2536444664001465],[127,-61,75,6.25829553604126],[127,-61,76,6.259389400482178],[127,-61,77,6.258517742156982],[127,-61,78,6.255523681640625],[127,-61,79,6.250174522399902],[127,-60,64,6.182787895202637],[127,-60,65,6.1897873878479],[127,-60,66,6.189891338348389],[127,-60,67,6.187800884246826],[127,-60,68,6.18593168258667],[127,-60,69,6.186098575592041],[127,-60,70,6.189854145050049],[127,-60,71,6.198974132537842],[127,-60,72,6.218026161193848],[127,-60,73,6.240396499633789],[127,-60,74,6.2536444664001465],[127,-60,75,6.25829553604126],[127,-60,76,6.259389400482178],[127,-60,77,6.258517742156982],[127,-60,78,6.255523681640625],[127,-60,79,6.250174522399902],[127,-59,64,6.182787895202637],[127,-59,65,6.1897873878479],[127,-59,66,6.189891338348389],[127,-59,67,6.187800884246826],[127,-59,68,6.18593168258667],[127,-59,69,6.186098575592041],[127,-59,70,6.189854145050049],[127,-59,71,6.198974132537842],[127,-59,72,6.218026161193848],[127,-59,73,6.240396499633789],[127,-59,74,6.2536444664001465],[127,-59,75,6.25829553604126],[127,-59,76,6.259389400482178],[127,-59,77,6.258517742156982],[127,-59,78,6.255523681640625],[127,-59,79,6.250174522399902],[127,-58,64,6.182787895202637],[127,-58,65,6.1897873878479],[127,-58,66,6.189891338348389],[127,-58,67,6.187800884246826],[127,-58,68,6.18593168258667],[127,-58,69,6.186098575592041],[127,-58,70,6.189854145050049],[127,-58,71,6.198974132537842],[127,-58,72,6.218026161193848],[127,-58,73,6.240396499633789],[127,-58,74,6.2536444664001465],[127,-58,75,6.25829553604126],[127,-58,76,6.259389400482178],[127,-58,77,6.258517742156982],[127,-58,78,6.255523681640625],[127,-58,79,6.250174522399902],[127,-57,64,6.182787895202637],[127,-57,65,6.1897873878479],[127,-57,66,6.189891338348389],[127,-57,67,6.187800884246826],[127,-57,68,6.18593168258667],[127,-57,69,6.186098575592041],[127,-57,70,6.189854145050049],[127,-57,71,6.198974132537842],[127,-57,72,6.218026161193848],[127,-57,73,6.240396499633789],[127,-57,74,6.2536444664001465],[127,-57,75,6.25829553604126],[127,-57,76,6.259389400482178],[127,-57,77,6.258517742156982],[127,-57,78,6.255523681640625],[127,-57,79,6.250174522399902],[127,-56,64,6.182787895202637],[127,-56,65,6.1897873878479],[127,-56,66,6.189891338348389],[127,-56,67,6.187800884246826],[127,-56,68,6.18593168258667],[127,-56,69,6.186098575592041],[127,-56,70,6.189854145050049],[127,-56,71,6.198974132537842],[127,-56,72,6.218026161193848],[127,-56,73,6.240396499633789],[127,-56,74,6.2536444664001465],[127,-56,75,6.25829553604126],[127,-56,76,6.259389400482178],[127,-56,77,6.258517742156982],[127,-56,78,6.255523681640625],[127,-56,79,6.250174522399902],[127,-55,64,6.182787895202637],[127,-55,65,6.1897873878479],[127,-55,66,6.189891338348389],[127,-55,67,6.187800884246826],[127,-55,68,6.18593168258667],[127,-55,69,6.186098575592041],[127,-55,70,6.189854145050049],[127,-55,71,6.198974132537842],[127,-55,72,6.218026161193848],[127,-55,73,6.240396499633789],[127,-55,74,6.2536444664001465],[127,-55,75,6.25829553604126],[127,-55,76,6.259389400482178],[127,-55,77,6.258517742156982],[127,-55,78,6.255523681640625],[127,-55,79,6.250174522399902],[127,-54,64,6.182787895202637],[127,-54,65,6.1897873878479],[127,-54,66,6.189891338348389],[127,-54,67,6.187800884246826],[127,-54,68,6.18593168258667],[127,-54,69,6.186098575592041],[127,-54,70,6.189854145050049],[127,-54,71,6.198974132537842],[127,-54,72,6.218026161193848],[127,-54,73,6.240396499633789],[127,-54,74,6.2536444664001465],[127,-54,75,6.25829553604126],[127,-54,76,6.259389400482178],[127,-54,77,6.258517742156982],[127,-54,78,6.255523681640625],[127,-54,79,6.250174522399902],[127,-53,64,6.182787895202637],[127,-53,65,6.1897873878479],[127,-53,66,6.189891338348389],[127,-53,67,6.187800884246826],[127,-53,68,6.18593168258667],[127,-53,69,6.186098575592041],[127,-53,70,6.189854145050049],[127,-53,71,6.198974132537842],[127,-53,72,6.218026161193848],[127,-53,73,6.240396499633789],[127,-53,74,6.2536444664001465],[127,-53,75,6.25829553604126],[127,-53,76,6.259389400482178],[127,-53,77,6.258517742156982],[127,-53,78,6.255523681640625],[127,-53,79,6.250174522399902],[127,-52,64,6.182787895202637],[127,-52,65,6.1897873878479],[127,-52,66,6.189891338348389],[127,-52,67,6.187800884246826],[127,-52,68,6.18593168258667],[127,-52,69,6.186098575592041],[127,-52,70,6.189854145050049],[127,-52,71,6.198974132537842],[127,-52,72,6.218026161193848],[127,-52,73,6.240396499633789],[127,-52,74,6.2536444664001465],[127,-52,75,6.25829553604126],[127,-52,76,6.259389400482178],[127,-52,77,6.258517742156982],[127,-52,78,6.255523681640625],[127,-52,79,6.250174522399902],[127,-51,64,6.182787895202637],[127,-51,65,6.1897873878479],[127,-51,66,6.189891338348389],[127,-51,67,6.187800884246826],[127,-51,68,6.18593168258667],[127,-51,69,6.186098575592041],[127,-51,70,6.189854145050049],[127,-51,71,6.198974132537842],[127,-51,72,6.218026161193848],[127,-51,73,6.240396499633789],[127,-51,74,6.2536444664001465],[127,-51,75,6.25829553604126],[127,-51,76,6.259389400482178],[127,-51,77,6.258517742156982],[127,-51,78,6.255523681640625],[127,-51,79,6.250174522399902],[127,-50,64,6.182787895202637],[127,-50,65,6.1897873878479],[127,-50,66,6.189891338348389],[127,-50,67,6.187800884246826],[127,-50,68,6.18593168258667],[127,-50,69,6.186098575592041],[127,-50,70,6.189854145050049],[127,-50,71,6.198974132537842],[127,-50,72,6.218026161193848],[127,-50,73,6.240396499633789],[127,-50,74,6.2536444664001465],[127,-50,75,6.25829553604126],[127,-50,76,6.259389400482178],[127,-50,77,6.258517742156982],[127,-50,78,6.255523681640625],[127,-50,79,6.250174522399902],[127,-49,64,6.182787895202637],[127,-49,65,6.1897873878479],[127,-49,66,6.189891338348389],[127,-49,67,6.187800884246826],[127,-49,68,6.18593168258667],[127,-49,69,6.186098575592041],[127,-49,70,6.189854145050049],[127,-49,71,6.198974132537842],[127,-49,72,6.218026161193848],[127,-49,73,6.240396499633789],[127,-49,74,6.2536444664001465],[127,-49,75,6.25829553604126],[127,-49,76,6.259389400482178],[127,-49,77,6.258517742156982],[127,-49,78,6.255523681640625],[127,-49,79,6.250174522399902],[127,-48,64,6.182787895202637],[127,-48,65,6.1897873878479],[127,-48,66,6.189891338348389],[127,-48,67,6.187800884246826],[127,-48,68,6.18593168258667],[127,-48,69,6.186098575592041],[127,-48,70,6.189854145050049],[127,-48,71,6.198974132537842],[127,-48,72,6.218026161193848],[127,-48,73,6.240396499633789],[127,-48,74,6.2536444664001465],[127,-48,75,6.25829553604126],[127,-48,76,6.259389400482178],[127,-48,77,6.258517742156982],[127,-48,78,6.255523681640625],[127,-48,79,6.250174522399902],[127,-47,64,6.182787895202637],[127,-47,65,6.1897873878479],[127,-47,66,6.189891338348389],[127,-47,67,6.187800884246826],[127,-47,68,6.18593168258667],[127,-47,69,6.186098575592041],[127,-47,70,6.189854145050049],[127,-47,71,6.198974132537842],[127,-47,72,6.218026161193848],[127,-47,73,6.240396499633789],[127,-47,74,6.2536444664001465],[127,-47,75,6.25829553604126],[127,-47,76,6.259389400482178],[127,-47,77,6.258517742156982],[127,-47,78,6.255523681640625],[127,-47,79,6.250174522399902],[127,-46,64,6.182787895202637],[127,-46,65,6.1897873878479],[127,-46,66,6.189891338348389],[127,-46,67,6.187800884246826],[127,-46,68,6.18593168258667],[127,-46,69,6.186098575592041],[127,-46,70,6.189854145050049],[127,-46,71,6.198974132537842],[127,-46,72,6.218026161193848],[127,-46,73,6.240396499633789],[127,-46,74,6.2536444664001465],[127,-46,75,6.25829553604126],[127,-46,76,6.259389400482178],[127,-46,77,6.258517742156982],[127,-46,78,6.255523681640625],[127,-46,79,6.250174522399902],[127,-45,64,6.182787895202637],[127,-45,65,6.1897873878479],[127,-45,66,6.189891338348389],[127,-45,67,6.187800884246826],[127,-45,68,6.18593168258667],[127,-45,69,6.186098575592041],[127,-45,70,6.189854145050049],[127,-45,71,6.198974132537842],[127,-45,72,6.218026161193848],[127,-45,73,6.240396499633789],[127,-45,74,6.2536444664001465],[127,-45,75,6.25829553604126],[127,-45,76,6.259389400482178],[127,-45,77,6.258517742156982],[127,-45,78,6.255523681640625],[127,-45,79,6.250174522399902],[127,-44,64,6.182787895202637],[127,-44,65,6.1897873878479],[127,-44,66,6.189891338348389],[127,-44,67,6.187800884246826],[127,-44,68,6.18593168258667],[127,-44,69,6.186098575592041],[127,-44,70,6.189854145050049],[127,-44,71,6.198974132537842],[127,-44,72,6.218026161193848],[127,-44,73,6.240396499633789],[127,-44,74,6.2536444664001465],[127,-44,75,6.25829553604126],[127,-44,76,6.259389400482178],[127,-44,77,6.258517742156982],[127,-44,78,6.255523681640625],[127,-44,79,6.250174522399902],[127,-43,64,6.182787895202637],[127,-43,65,6.1897873878479],[127,-43,66,6.189891338348389],[127,-43,67,6.187800884246826],[127,-43,68,6.18593168258667],[127,-43,69,6.186098575592041],[127,-43,70,6.189854145050049],[127,-43,71,6.198974132537842],[127,-43,72,6.218026161193848],[127,-43,73,6.240396499633789],[127,-43,74,6.2536444664001465],[127,-43,75,6.25829553604126],[127,-43,76,6.259389400482178],[127,-43,77,6.258517742156982],[127,-43,78,6.255523681640625],[127,-43,79,6.250174522399902],[127,-42,64,6.182787895202637],[127,-42,65,6.1897873878479],[127,-42,66,6.189891338348389],[127,-42,67,6.187800884246826],[127,-42,68,6.18593168258667],[127,-42,69,6.186098575592041],[127,-42,70,6.189854145050049],[127,-42,71,6.198974132537842],[127,-42,72,6.218026161193848],[127,-42,73,6.240396499633789],[127,-42,74,6.2536444664001465],[127,-42,75,6.25829553604126],[127,-42,76,6.259389400482178],[127,-42,77,6.258517742156982],[127,-42,78,6.255523681640625],[127,-42,79,6.250174522399902],[127,-41,64,6.182787895202637],[127,-41,65,6.1897873878479],[127,-41,66,6.189891338348389],[127,-41,67,6.187800884246826],[127,-41,68,6.18593168258667],[127,-41,69,6.186098575592041],[127,-41,70,6.189854145050049],[127,-41,71,6.198974132537842],[127,-41,72,6.218026161193848],[127,-41,73,6.240396499633789],[127,-41,74,6.2536444664001465],[127,-41,75,6.25829553604126],[127,-41,76,6.259389400482178],[127,-41,77,6.258517742156982],[127,-41,78,6.255523681640625],[127,-41,79,6.250174522399902],[127,-40,64,6.182787895202637],[127,-40,65,6.1897873878479],[127,-40,66,6.189891338348389],[127,-40,67,6.187800884246826],[127,-40,68,6.18593168258667],[127,-40,69,6.186098575592041],[127,-40,70,6.189854145050049],[127,-40,71,6.198974132537842],[127,-40,72,6.218026161193848],[127,-40,73,6.240396499633789],[127,-40,74,6.2536444664001465],[127,-40,75,6.25829553604126],[127,-40,76,6.259389400482178],[127,-40,77,6.258517742156982],[127,-40,78,6.255523681640625],[127,-40,79,6.250174522399902],[127,-39,64,6.182787895202637],[127,-39,65,6.1897873878479],[127,-39,66,6.189891338348389],[127,-39,67,6.187800884246826],[127,-39,68,6.18593168258667],[127,-39,69,6.186098575592041],[127,-39,70,6.189854145050049],[127,-39,71,6.198974132537842],[127,-39,72,6.218026161193848],[127,-39,73,6.240396499633789],[127,-39,74,6.2536444664001465],[127,-39,75,6.25829553604126],[127,-39,76,6.259389400482178],[127,-39,77,6.258517742156982],[127,-39,78,6.255523681640625],[127,-39,79,6.250174522399902],[127,-38,64,6.182787895202637],[127,-38,65,6.1897873878479],[127,-38,66,6.189891338348389],[127,-38,67,6.187800884246826],[127,-38,68,6.18593168258667],[127,-38,69,6.186098575592041],[127,-38,70,6.189854145050049],[127,-38,71,6.198974132537842],[127,-38,72,6.218026161193848],[127,-38,73,6.240396499633789],[127,-38,74,6.2536444664001465],[127,-38,75,6.25829553604126],[127,-38,76,6.259389400482178],[127,-38,77,6.258517742156982],[127,-38,78,6.255523681640625],[127,-38,79,6.250174522399902],[127,-37,64,6.182787895202637],[127,-37,65,6.1897873878479],[127,-37,66,6.189891338348389],[127,-37,67,6.187800884246826],[127,-37,68,6.18593168258667],[127,-37,69,6.186098575592041],[127,-37,70,6.189854145050049],[127,-37,71,6.198974132537842],[127,-37,72,6.218026161193848],[127,-37,73,6.240396499633789],[127,-37,74,6.2536444664001465],[127,-37,75,6.25829553604126],[127,-37,76,6.259389400482178],[127,-37,77,6.258517742156982],[127,-37,78,6.255523681640625],[127,-37,79,6.250174522399902],[127,-36,64,6.182787895202637],[127,-36,65,6.1897873878479],[127,-36,66,6.189891338348389],[127,-36,67,6.187800884246826],[127,-36,68,6.18593168258667],[127,-36,69,6.186098575592041],[127,-36,70,6.189854145050049],[127,-36,71,6.198974132537842],[127,-36,72,6.218026161193848],[127,-36,73,6.240396499633789],[127,-36,74,6.2536444664001465],[127,-36,75,6.25829553604126],[127,-36,76,6.259389400482178],[127,-36,77,6.258517742156982],[127,-36,78,6.255523681640625],[127,-36,79,6.250174522399902],[127,-35,64,6.182787895202637],[127,-35,65,6.1897873878479],[127,-35,66,6.189891338348389],[127,-35,67,6.187800884246826],[127,-35,68,6.18593168258667],[127,-35,69,6.186098575592041],[127,-35,70,6.189854145050049],[127,-35,71,6.198974132537842],[127,-35,72,6.218026161193848],[127,-35,73,6.240396499633789],[127,-35,74,6.2536444664001465],[127,-35,75,6.25829553604126],[127,-35,76,6.259389400482178],[127,-35,77,6.258517742156982],[127,-35,78,6.255523681640625],[127,-35,79,6.250174522399902],[127,-34,64,6.182787895202637],[127,-34,65,6.1897873878479],[127,-34,66,6.189891338348389],[127,-34,67,6.187800884246826],[127,-34,68,6.18593168258667],[127,-34,69,6.186098575592041],[127,-34,70,6.189854145050049],[127,-34,71,6.198974132537842],[127,-34,72,6.218026161193848],[127,-34,73,6.240396499633789],[127,-34,74,6.2536444664001465],[127,-34,75,6.25829553604126],[127,-34,76,6.259389400482178],[127,-34,77,6.258517742156982],[127,-34,78,6.255523681640625],[127,-34,79,6.250174522399902],[127,-33,64,6.182787895202637],[127,-33,65,6.1897873878479],[127,-33,66,6.189891338348389],[127,-33,67,6.187800884246826],[127,-33,68,6.18593168258667],[127,-33,69,6.186098575592041],[127,-33,70,6.189854145050049],[127,-33,71,6.198974132537842],[127,-33,72,6.218026161193848],[127,-33,73,6.240396499633789],[127,-33,74,6.2536444664001465],[127,-33,75,6.25829553604126],[127,-33,76,6.259389400482178],[127,-33,77,6.258517742156982],[127,-33,78,6.255523681640625],[127,-33,79,6.250174522399902],[127,-32,64,6.182787895202637],[127,-32,65,6.1897873878479],[127,-32,66,6.189891338348389],[127,-32,67,6.187800884246826],[127,-32,68,6.18593168258667],[127,-32,69,6.186098575592041],[127,-32,70,6.189854145050049],[127,-32,71,6.198974132537842],[127,-32,72,6.218026161193848],[127,-32,73,6.240396499633789],[127,-32,74,6.2536444664001465],[127,-32,75,6.25829553604126],[127,-32,76,6.259389400482178],[127,-32,77,6.258517742156982],[127,-32,78,6.255523681640625],[127,-32,79,6.250174522399902],[127,-31,64,6.182787895202637],[127,-31,65,6.1897873878479],[127,-31,66,6.189891338348389],[127,-31,67,6.187800884246826],[127,-31,68,6.18593168258667],[127,-31,69,6.186098575592041],[127,-31,70,6.189854145050049],[127,-31,71,6.198974132537842],[127,-31,72,6.218026161193848],[127,-31,73,6.240396499633789],[127,-31,74,6.2536444664001465],[127,-31,75,6.25829553604126],[127,-31,76,6.259389400482178],[127,-31,77,6.258517742156982],[127,-31,78,6.255523681640625],[127,-31,79,6.250174522399902],[127,-30,64,6.182787895202637],[127,-30,65,6.1897873878479],[127,-30,66,6.189891338348389],[127,-30,67,6.187800884246826],[127,-30,68,6.18593168258667],[127,-30,69,6.186098575592041],[127,-30,70,6.189854145050049],[127,-30,71,6.198974132537842],[127,-30,72,6.218026161193848],[127,-30,73,6.240396499633789],[127,-30,74,6.2536444664001465],[127,-30,75,6.25829553604126],[127,-30,76,6.259389400482178],[127,-30,77,6.258517742156982],[127,-30,78,6.255523681640625],[127,-30,79,6.250174522399902],[127,-29,64,6.182787895202637],[127,-29,65,6.1897873878479],[127,-29,66,6.189891338348389],[127,-29,67,6.187800884246826],[127,-29,68,6.18593168258667],[127,-29,69,6.186098575592041],[127,-29,70,6.189854145050049],[127,-29,71,6.198974132537842],[127,-29,72,6.218026161193848],[127,-29,73,6.240396499633789],[127,-29,74,6.2536444664001465],[127,-29,75,6.25829553604126],[127,-29,76,6.259389400482178],[127,-29,77,6.258517742156982],[127,-29,78,6.255523681640625],[127,-29,79,6.250174522399902],[127,-28,64,6.182787895202637],[127,-28,65,6.1897873878479],[127,-28,66,6.189891338348389],[127,-28,67,6.187800884246826],[127,-28,68,6.18593168258667],[127,-28,69,6.186098575592041],[127,-28,70,6.189854145050049],[127,-28,71,6.198974132537842],[127,-28,72,6.218026161193848],[127,-28,73,6.240396499633789],[127,-28,74,6.2536444664001465],[127,-28,75,6.25829553604126],[127,-28,76,6.259389400482178],[127,-28,77,6.258517742156982],[127,-28,78,6.255523681640625],[127,-28,79,6.250174522399902],[127,-27,64,6.182787895202637],[127,-27,65,6.1897873878479],[127,-27,66,6.189891338348389],[127,-27,67,6.187800884246826],[127,-27,68,6.18593168258667],[127,-27,69,6.186098575592041],[127,-27,70,6.189854145050049],[127,-27,71,6.198974132537842],[127,-27,72,6.218026161193848],[127,-27,73,6.240396499633789],[127,-27,74,6.2536444664001465],[127,-27,75,6.25829553604126],[127,-27,76,6.259389400482178],[127,-27,77,6.258517742156982],[127,-27,78,6.255523681640625],[127,-27,79,6.250174522399902],[127,-26,64,6.182787895202637],[127,-26,65,6.1897873878479],[127,-26,66,6.189891338348389],[127,-26,67,6.187800884246826],[127,-26,68,6.18593168258667],[127,-26,69,6.186098575592041],[127,-26,70,6.189854145050049],[127,-26,71,6.198974132537842],[127,-26,72,6.218026161193848],[127,-26,73,6.240396499633789],[127,-26,74,6.2536444664001465],[127,-26,75,6.25829553604126],[127,-26,76,6.259389400482178],[127,-26,77,6.258517742156982],[127,-26,78,6.255523681640625],[127,-26,79,6.250174522399902],[127,-25,64,6.182787895202637],[127,-25,65,6.1897873878479],[127,-25,66,6.189891338348389],[127,-25,67,6.187800884246826],[127,-25,68,6.18593168258667],[127,-25,69,6.186098575592041],[127,-25,70,6.189854145050049],[127,-25,71,6.198974132537842],[127,-25,72,6.218026161193848],[127,-25,73,6.240396499633789],[127,-25,74,6.2536444664001465],[127,-25,75,6.25829553604126],[127,-25,76,6.259389400482178],[127,-25,77,6.258517742156982],[127,-25,78,6.255523681640625],[127,-25,79,6.250174522399902],[127,-24,64,6.182787895202637],[127,-24,65,6.1897873878479],[127,-24,66,6.189891338348389],[127,-24,67,6.187800884246826],[127,-24,68,6.18593168258667],[127,-24,69,6.186098575592041],[127,-24,70,6.189854145050049],[127,-24,71,6.198974132537842],[127,-24,72,6.218026161193848],[127,-24,73,6.240396499633789],[127,-24,74,6.2536444664001465],[127,-24,75,6.25829553604126],[127,-24,76,6.259389400482178],[127,-24,77,6.258517742156982],[127,-24,78,6.255523681640625],[127,-24,79,6.250174522399902],[127,-23,64,6.182787895202637],[127,-23,65,6.1897873878479],[127,-23,66,6.189891338348389],[127,-23,67,6.187800884246826],[127,-23,68,6.18593168258667],[127,-23,69,6.186098575592041],[127,-23,70,6.189854145050049],[127,-23,71,6.198974132537842],[127,-23,72,6.218026161193848],[127,-23,73,6.240396499633789],[127,-23,74,6.2536444664001465],[127,-23,75,6.25829553604126],[127,-23,76,6.259389400482178],[127,-23,77,6.258517742156982],[127,-23,78,6.255523681640625],[127,-23,79,6.250174522399902],[127,-22,64,6.182787895202637],[127,-22,65,6.1897873878479],[127,-22,66,6.189891338348389],[127,-22,67,6.187800884246826],[127,-22,68,6.18593168258667],[127,-22,69,6.186098575592041],[127,-22,70,6.189854145050049],[127,-22,71,6.198974132537842],[127,-22,72,6.218026161193848],[127,-22,73,6.240396499633789],[127,-22,74,6.2536444664001465],[127,-22,75,6.25829553604126],[127,-22,76,6.259389400482178],[127,-22,77,6.258517742156982],[127,-22,78,6.255523681640625],[127,-22,79,6.250174522399902],[127,-21,64,6.182787895202637],[127,-21,65,6.1897873878479],[127,-21,66,6.189891338348389],[127,-21,67,6.187800884246826],[127,-21,68,6.18593168258667],[127,-21,69,6.186098575592041],[127,-21,70,6.189854145050049],[127,-21,71,6.198974132537842],[127,-21,72,6.218026161193848],[127,-21,73,6.240396499633789],[127,-21,74,6.2536444664001465],[127,-21,75,6.25829553604126],[127,-21,76,6.259389400482178],[127,-21,77,6.258517742156982],[127,-21,78,6.255523681640625],[127,-21,79,6.250174522399902],[127,-20,64,6.182787895202637],[127,-20,65,6.1897873878479],[127,-20,66,6.189891338348389],[127,-20,67,6.187800884246826],[127,-20,68,6.18593168258667],[127,-20,69,6.186098575592041],[127,-20,70,6.189854145050049],[127,-20,71,6.198974132537842],[127,-20,72,6.218026161193848],[127,-20,73,6.240396499633789],[127,-20,74,6.2536444664001465],[127,-20,75,6.25829553604126],[127,-20,76,6.259389400482178],[127,-20,77,6.258517742156982],[127,-20,78,6.255523681640625],[127,-20,79,6.250174522399902],[127,-19,64,6.182787895202637],[127,-19,65,6.1897873878479],[127,-19,66,6.189891338348389],[127,-19,67,6.187800884246826],[127,-19,68,6.18593168258667],[127,-19,69,6.186098575592041],[127,-19,70,6.189854145050049],[127,-19,71,6.198974132537842],[127,-19,72,6.218026161193848],[127,-19,73,6.240396499633789],[127,-19,74,6.2536444664001465],[127,-19,75,6.25829553604126],[127,-19,76,6.259389400482178],[127,-19,77,6.258517742156982],[127,-19,78,6.255523681640625],[127,-19,79,6.250174522399902],[127,-18,64,6.182787895202637],[127,-18,65,6.1897873878479],[127,-18,66,6.189891338348389],[127,-18,67,6.187800884246826],[127,-18,68,6.18593168258667],[127,-18,69,6.186098575592041],[127,-18,70,6.189854145050049],[127,-18,71,6.198974132537842],[127,-18,72,6.218026161193848],[127,-18,73,6.240396499633789],[127,-18,74,6.2536444664001465],[127,-18,75,6.25829553604126],[127,-18,76,6.259389400482178],[127,-18,77,6.258517742156982],[127,-18,78,6.255523681640625],[127,-18,79,6.250174522399902],[127,-17,64,6.182787895202637],[127,-17,65,6.1897873878479],[127,-17,66,6.189891338348389],[127,-17,67,6.187800884246826],[127,-17,68,6.18593168258667],[127,-17,69,6.186098575592041],[127,-17,70,6.189854145050049],[127,-17,71,6.198974132537842],[127,-17,72,6.218026161193848],[127,-17,73,6.240396499633789],[127,-17,74,6.2536444664001465],[127,-17,75,6.25829553604126],[127,-17,76,6.259389400482178],[127,-17,77,6.258517742156982],[127,-17,78,6.255523681640625],[127,-17,79,6.250174522399902],[127,-16,64,6.182787895202637],[127,-16,65,6.1897873878479],[127,-16,66,6.189891338348389],[127,-16,67,6.187800884246826],[127,-16,68,6.18593168258667],[127,-16,69,6.186098575592041],[127,-16,70,6.189854145050049],[127,-16,71,6.198974132537842],[127,-16,72,6.218026161193848],[127,-16,73,6.240396499633789],[127,-16,74,6.2536444664001465],[127,-16,75,6.25829553604126],[127,-16,76,6.259389400482178],[127,-16,77,6.258517742156982],[127,-16,78,6.255523681640625],[127,-16,79,6.250174522399902],[127,-15,64,6.182787895202637],[127,-15,65,6.1897873878479],[127,-15,66,6.189891338348389],[127,-15,67,6.187800884246826],[127,-15,68,6.18593168258667],[127,-15,69,6.186098575592041],[127,-15,70,6.189854145050049],[127,-15,71,6.198974132537842],[127,-15,72,6.218026161193848],[127,-15,73,6.240396499633789],[127,-15,74,6.2536444664001465],[127,-15,75,6.25829553604126],[127,-15,76,6.259389400482178],[127,-15,77,6.258517742156982],[127,-15,78,6.255523681640625],[127,-15,79,6.250174522399902],[127,-14,64,6.182787895202637],[127,-14,65,6.1897873878479],[127,-14,66,6.189891338348389],[127,-14,67,6.187800884246826],[127,-14,68,6.18593168258667],[127,-14,69,6.186098575592041],[127,-14,70,6.189854145050049],[127,-14,71,6.198974132537842],[127,-14,72,6.218026161193848],[127,-14,73,6.240396499633789],[127,-14,74,6.2536444664001465],[127,-14,75,6.25829553604126],[127,-14,76,6.259389400482178],[127,-14,77,6.258517742156982],[127,-14,78,6.255523681640625],[127,-14,79,6.250174522399902],[127,-13,64,6.182787895202637],[127,-13,65,6.1897873878479],[127,-13,66,6.189891338348389],[127,-13,67,6.187800884246826],[127,-13,68,6.18593168258667],[127,-13,69,6.186098575592041],[127,-13,70,6.189854145050049],[127,-13,71,6.198974132537842],[127,-13,72,6.218026161193848],[127,-13,73,6.240396499633789],[127,-13,74,6.2536444664001465],[127,-13,75,6.25829553604126],[127,-13,76,6.259389400482178],[127,-13,77,6.258517742156982],[127,-13,78,6.255523681640625],[127,-13,79,6.250174522399902],[127,-12,64,6.182787895202637],[127,-12,65,6.1897873878479],[127,-12,66,6.189891338348389],[127,-12,67,6.187800884246826],[127,-12,68,6.18593168258667],[127,-12,69,6.186098575592041],[127,-12,70,6.189854145050049],[127,-12,71,6.198974132537842],[127,-12,72,6.218026161193848],[127,-12,73,6.240396499633789],[127,-12,74,6.2536444664001465],[127,-12,75,6.25829553604126],[127,-12,76,6.259389400482178],[127,-12,77,6.258517742156982],[127,-12,78,6.255523681640625],[127,-12,79,6.250174522399902],[127,-11,64,6.182787895202637],[127,-11,65,6.1897873878479],[127,-11,66,6.189891338348389],[127,-11,67,6.187800884246826],[127,-11,68,6.18593168258667],[127,-11,69,6.186098575592041],[127,-11,70,6.189854145050049],[127,-11,71,6.198974132537842],[127,-11,72,6.218026161193848],[127,-11,73,6.240396499633789],[127,-11,74,6.2536444664001465],[127,-11,75,6.25829553604126],[127,-11,76,6.259389400482178],[127,-11,77,6.258517742156982],[127,-11,78,6.255523681640625],[127,-11,79,6.250174522399902],[127,-10,64,6.182787895202637],[127,-10,65,6.1897873878479],[127,-10,66,6.189891338348389],[127,-10,67,6.187800884246826],[127,-10,68,6.18593168258667],[127,-10,69,6.186098575592041],[127,-10,70,6.189854145050049],[127,-10,71,6.198974132537842],[127,-10,72,6.218026161193848],[127,-10,73,6.240396499633789],[127,-10,74,6.2536444664001465],[127,-10,75,6.25829553604126],[127,-10,76,6.259389400482178],[127,-10,77,6.258517742156982],[127,-10,78,6.255523681640625],[127,-10,79,6.250174522399902],[127,-9,64,6.182787895202637],[127,-9,65,6.1897873878479],[127,-9,66,6.189891338348389],[127,-9,67,6.187800884246826],[127,-9,68,6.18593168258667],[127,-9,69,6.186098575592041],[127,-9,70,6.189854145050049],[127,-9,71,6.198974132537842],[127,-9,72,6.218026161193848],[127,-9,73,6.240396499633789],[127,-9,74,6.2536444664001465],[127,-9,75,6.25829553604126],[127,-9,76,6.259389400482178],[127,-9,77,6.258517742156982],[127,-9,78,6.255523681640625],[127,-9,79,6.250174522399902],[127,-8,64,6.182787895202637],[127,-8,65,6.1897873878479],[127,-8,66,6.189891338348389],[127,-8,67,6.187800884246826],[127,-8,68,6.18593168258667],[127,-8,69,6.186098575592041],[127,-8,70,6.189854145050049],[127,-8,71,6.198974132537842],[127,-8,72,6.218026161193848],[127,-8,73,6.240396499633789],[127,-8,74,6.2536444664001465],[127,-8,75,6.25829553604126],[127,-8,76,6.259389400482178],[127,-8,77,6.258517742156982],[127,-8,78,6.255523681640625],[127,-8,79,6.250174522399902],[127,-7,64,6.182787895202637],[127,-7,65,6.1897873878479],[127,-7,66,6.189891338348389],[127,-7,67,6.187800884246826],[127,-7,68,6.18593168258667],[127,-7,69,6.186098575592041],[127,-7,70,6.189854145050049],[127,-7,71,6.198974132537842],[127,-7,72,6.218026161193848],[127,-7,73,6.240396499633789],[127,-7,74,6.2536444664001465],[127,-7,75,6.25829553604126],[127,-7,76,6.259389400482178],[127,-7,77,6.258517742156982],[127,-7,78,6.255523681640625],[127,-7,79,6.250174522399902],[127,-6,64,6.182787895202637],[127,-6,65,6.1897873878479],[127,-6,66,6.189891338348389],[127,-6,67,6.187800884246826],[127,-6,68,6.18593168258667],[127,-6,69,6.186098575592041],[127,-6,70,6.189854145050049],[127,-6,71,6.198974132537842],[127,-6,72,6.218026161193848],[127,-6,73,6.240396499633789],[127,-6,74,6.2536444664001465],[127,-6,75,6.25829553604126],[127,-6,76,6.259389400482178],[127,-6,77,6.258517742156982],[127,-6,78,6.255523681640625],[127,-6,79,6.250174522399902],[127,-5,64,6.182787895202637],[127,-5,65,6.1897873878479],[127,-5,66,6.189891338348389],[127,-5,67,6.187800884246826],[127,-5,68,6.18593168258667],[127,-5,69,6.186098575592041],[127,-5,70,6.189854145050049],[127,-5,71,6.198974132537842],[127,-5,72,6.218026161193848],[127,-5,73,6.240396499633789],[127,-5,74,6.2536444664001465],[127,-5,75,6.25829553604126],[127,-5,76,6.259389400482178],[127,-5,77,6.258517742156982],[127,-5,78,6.255523681640625],[127,-5,79,6.250174522399902],[127,-4,64,6.182787895202637],[127,-4,65,6.1897873878479],[127,-4,66,6.189891338348389],[127,-4,67,6.187800884246826],[127,-4,68,6.18593168258667],[127,-4,69,6.186098575592041],[127,-4,70,6.189854145050049],[127,-4,71,6.198974132537842],[127,-4,72,6.218026161193848],[127,-4,73,6.240396499633789],[127,-4,74,6.2536444664001465],[127,-4,75,6.25829553604126],[127,-4,76,6.259389400482178],[127,-4,77,6.258517742156982],[127,-4,78,6.255523681640625],[127,-4,79,6.250174522399902],[127,-3,64,6.182787895202637],[127,-3,65,6.1897873878479],[127,-3,66,6.189891338348389],[127,-3,67,6.187800884246826],[127,-3,68,6.18593168258667],[127,-3,69,6.186098575592041],[127,-3,70,6.189854145050049],[127,-3,71,6.198974132537842],[127,-3,72,6.218026161193848],[127,-3,73,6.240396499633789],[127,-3,74,6.2536444664001465],[127,-3,75,6.25829553604126],[127,-3,76,6.259389400482178],[127,-3,77,6.258517742156982],[127,-3,78,6.255523681640625],[127,-3,79,6.250174522399902],[127,-2,64,6.182787895202637],[127,-2,65,6.1897873878479],[127,-2,66,6.189891338348389],[127,-2,67,6.187800884246826],[127,-2,68,6.18593168258667],[127,-2,69,6.186098575592041],[127,-2,70,6.189854145050049],[127,-2,71,6.198974132537842],[127,-2,72,6.218026161193848],[127,-2,73,6.240396499633789],[127,-2,74,6.2536444664001465],[127,-2,75,6.25829553604126],[127,-2,76,6.259389400482178],[127,-2,77,6.258517742156982],[127,-2,78,6.255523681640625],[127,-2,79,6.250174522399902],[127,-1,64,6.182787895202637],[127,-1,65,6.1897873878479],[127,-1,66,6.189891338348389],[127,-1,67,6.187800884246826],[127,-1,68,6.18593168258667],[127,-1,69,6.186098575592041],[127,-1,70,6.189854145050049],[127,-1,71,6.198974132537842],[127,-1,72,6.218026161193848],[127,-1,73,6.240396499633789],[127,-1,74,6.2536444664001465],[127,-1,75,6.25829553604126],[127,-1,76,6.259389400482178],[127,-1,77,6.258517742156982],[127,-1,78,6.255523681640625],[127,-1,79,6.250174522399902],[127,0,64,6.182787895202637],[127,0,65,6.1897873878479],[127,0,66,6.189891338348389],[127,0,67,6.187800884246826],[127,0,68,6.18593168258667],[127,0,69,6.186098575592041],[127,0,70,6.189854145050049],[127,0,71,6.198974132537842],[127,0,72,6.218026161193848],[127,0,73,6.240396499633789],[127,0,74,6.2536444664001465],[127,0,75,6.25829553604126],[127,0,76,6.259389400482178],[127,0,77,6.258517742156982],[127,0,78,6.255523681640625],[127,0,79,6.250174522399902],[127,1,64,6.182787895202637],[127,1,65,6.1897873878479],[127,1,66,6.189891338348389],[127,1,67,6.187800884246826],[127,1,68,6.18593168258667],[127,1,69,6.186098575592041],[127,1,70,6.189854145050049],[127,1,71,6.198974132537842],[127,1,72,6.218026161193848],[127,1,73,6.240396499633789],[127,1,74,6.2536444664001465],[127,1,75,6.25829553604126],[127,1,76,6.259389400482178],[127,1,77,6.258517742156982],[127,1,78,6.255523681640625],[127,1,79,6.250174522399902],[127,2,64,6.182787895202637],[127,2,65,6.1897873878479],[127,2,66,6.189891338348389],[127,2,67,6.187800884246826],[127,2,68,6.18593168258667],[127,2,69,6.186098575592041],[127,2,70,6.189854145050049],[127,2,71,6.198974132537842],[127,2,72,6.218026161193848],[127,2,73,6.240396499633789],[127,2,74,6.2536444664001465],[127,2,75,6.25829553604126],[127,2,76,6.259389400482178],[127,2,77,6.258517742156982],[127,2,78,6.255523681640625],[127,2,79,6.250174522399902],[127,3,64,6.182787895202637],[127,3,65,6.1897873878479],[127,3,66,6.189891338348389],[127,3,67,6.187800884246826],[127,3,68,6.18593168258667],[127,3,69,6.186098575592041],[127,3,70,6.189854145050049],[127,3,71,6.198974132537842],[127,3,72,6.218026161193848],[127,3,73,6.240396499633789],[127,3,74,6.2536444664001465],[127,3,75,6.25829553604126],[127,3,76,6.259389400482178],[127,3,77,6.258517742156982],[127,3,78,6.255523681640625],[127,3,79,6.250174522399902],[127,4,64,6.182787895202637],[127,4,65,6.1897873878479],[127,4,66,6.189891338348389],[127,4,67,6.187800884246826],[127,4,68,6.18593168258667],[127,4,69,6.186098575592041],[127,4,70,6.189854145050049],[127,4,71,6.198974132537842],[127,4,72,6.218026161193848],[127,4,73,6.240396499633789],[127,4,74,6.2536444664001465],[127,4,75,6.25829553604126],[127,4,76,6.259389400482178],[127,4,77,6.258517742156982],[127,4,78,6.255523681640625],[127,4,79,6.250174522399902],[127,5,64,6.182787895202637],[127,5,65,6.1897873878479],[127,5,66,6.189891338348389],[127,5,67,6.187800884246826],[127,5,68,6.18593168258667],[127,5,69,6.186098575592041],[127,5,70,6.189854145050049],[127,5,71,6.198974132537842],[127,5,72,6.218026161193848],[127,5,73,6.240396499633789],[127,5,74,6.2536444664001465],[127,5,75,6.25829553604126],[127,5,76,6.259389400482178],[127,5,77,6.258517742156982],[127,5,78,6.255523681640625],[127,5,79,6.250174522399902],[127,6,64,6.182787895202637],[127,6,65,6.1897873878479],[127,6,66,6.189891338348389],[127,6,67,6.187800884246826],[127,6,68,6.18593168258667],[127,6,69,6.186098575592041],[127,6,70,6.189854145050049],[127,6,71,6.198974132537842],[127,6,72,6.218026161193848],[127,6,73,6.240396499633789],[127,6,74,6.2536444664001465],[127,6,75,6.25829553604126],[127,6,76,6.259389400482178],[127,6,77,6.258517742156982],[127,6,78,6.255523681640625],[127,6,79,6.250174522399902],[127,7,64,6.182787895202637],[127,7,65,6.1897873878479],[127,7,66,6.189891338348389],[127,7,67,6.187800884246826],[127,7,68,6.18593168258667],[127,7,69,6.186098575592041],[127,7,70,6.189854145050049],[127,7,71,6.198974132537842],[127,7,72,6.218026161193848],[127,7,73,6.240396499633789],[127,7,74,6.2536444664001465],[127,7,75,6.25829553604126],[127,7,76,6.259389400482178],[127,7,77,6.258517742156982],[127,7,78,6.255523681640625],[127,7,79,6.250174522399902],[127,8,64,6.182787895202637],[127,8,65,6.1897873878479],[127,8,66,6.189891338348389],[127,8,67,6.187800884246826],[127,8,68,6.18593168258667],[127,8,69,6.186098575592041],[127,8,70,6.189854145050049],[127,8,71,6.198974132537842],[127,8,72,6.218026161193848],[127,8,73,6.240396499633789],[127,8,74,6.2536444664001465],[127,8,75,6.25829553604126],[127,8,76,6.259389400482178],[127,8,77,6.258517742156982],[127,8,78,6.255523681640625],[127,8,79,6.250174522399902],[127,9,64,6.182787895202637],[127,9,65,6.1897873878479],[127,9,66,6.189891338348389],[127,9,67,6.187800884246826],[127,9,68,6.18593168258667],[127,9,69,6.186098575592041],[127,9,70,6.189854145050049],[127,9,71,6.198974132537842],[127,9,72,6.218026161193848],[127,9,73,6.240396499633789],[127,9,74,6.2536444664001465],[127,9,75,6.25829553604126],[127,9,76,6.259389400482178],[127,9,77,6.258517742156982],[127,9,78,6.255523681640625],[127,9,79,6.250174522399902],[127,10,64,6.182787895202637],[127,10,65,6.1897873878479],[127,10,66,6.189891338348389],[127,10,67,6.187800884246826],[127,10,68,6.18593168258667],[127,10,69,6.186098575592041],[127,10,70,6.189854145050049],[127,10,71,6.198974132537842],[127,10,72,6.218026161193848],[127,10,73,6.240396499633789],[127,10,74,6.2536444664001465],[127,10,75,6.25829553604126],[127,10,76,6.259389400482178],[127,10,77,6.258517742156982],[127,10,78,6.255523681640625],[127,10,79,6.250174522399902],[127,11,64,6.182787895202637],[127,11,65,6.1897873878479],[127,11,66,6.189891338348389],[127,11,67,6.187800884246826],[127,11,68,6.18593168258667],[127,11,69,6.186098575592041],[127,11,70,6.189854145050049],[127,11,71,6.198974132537842],[127,11,72,6.218026161193848],[127,11,73,6.240396499633789],[127,11,74,6.2536444664001465],[127,11,75,6.25829553604126],[127,11,76,6.259389400482178],[127,11,77,6.258517742156982],[127,11,78,6.255523681640625],[127,11,79,6.250174522399902],[127,12,64,6.182787895202637],[127,12,65,6.1897873878479],[127,12,66,6.189891338348389],[127,12,67,6.187800884246826],[127,12,68,6.18593168258667],[127,12,69,6.186098575592041],[127,12,70,6.189854145050049],[127,12,71,6.198974132537842],[127,12,72,6.218026161193848],[127,12,73,6.240396499633789],[127,12,74,6.2536444664001465],[127,12,75,6.25829553604126],[127,12,76,6.259389400482178],[127,12,77,6.258517742156982],[127,12,78,6.255523681640625],[127,12,79,6.250174522399902],[127,13,64,6.182787895202637],[127,13,65,6.1897873878479],[127,13,66,6.189891338348389],[127,13,67,6.187800884246826],[127,13,68,6.18593168258667],[127,13,69,6.186098575592041],[127,13,70,6.189854145050049],[127,13,71,6.198974132537842],[127,13,72,6.218026161193848],[127,13,73,6.240396499633789],[127,13,74,6.2536444664001465],[127,13,75,6.25829553604126],[127,13,76,6.259389400482178],[127,13,77,6.258517742156982],[127,13,78,6.255523681640625],[127,13,79,6.250174522399902],[127,14,64,6.182787895202637],[127,14,65,6.1897873878479],[127,14,66,6.189891338348389],[127,14,67,6.187800884246826],[127,14,68,6.18593168258667],[127,14,69,6.186098575592041],[127,14,70,6.189854145050049],[127,14,71,6.198974132537842],[127,14,72,6.218026161193848],[127,14,73,6.240396499633789],[127,14,74,6.2536444664001465],[127,14,75,6.25829553604126],[127,14,76,6.259389400482178],[127,14,77,6.258517742156982],[127,14,78,6.255523681640625],[127,14,79,6.250174522399902],[127,15,64,6.182787895202637],[127,15,65,6.1897873878479],[127,15,66,6.189891338348389],[127,15,67,6.187800884246826],[127,15,68,6.18593168258667],[127,15,69,6.186098575592041],[127,15,70,6.189854145050049],[127,15,71,6.198974132537842],[127,15,72,6.218026161193848],[127,15,73,6.240396499633789],[127,15,74,6.2536444664001465],[127,15,75,6.25829553604126],[127,15,76,6.259389400482178],[127,15,77,6.258517742156982],[127,15,78,6.255523681640625],[127,15,79,6.250174522399902],[127,16,64,6.182787895202637],[127,16,65,6.1897873878479],[127,16,66,6.189891338348389],[127,16,67,6.187800884246826],[127,16,68,6.18593168258667],[127,16,69,6.186098575592041],[127,16,70,6.189854145050049],[127,16,71,6.198974132537842],[127,16,72,6.218026161193848],[127,16,73,6.240396499633789],[127,16,74,6.2536444664001465],[127,16,75,6.25829553604126],[127,16,76,6.259389400482178],[127,16,77,6.258517742156982],[127,16,78,6.255523681640625],[127,16,79,6.250174522399902],[127,17,64,6.182787895202637],[127,17,65,6.1897873878479],[127,17,66,6.189891338348389],[127,17,67,6.187800884246826],[127,17,68,6.18593168258667],[127,17,69,6.186098575592041],[127,17,70,6.189854145050049],[127,17,71,6.198974132537842],[127,17,72,6.218026161193848],[127,17,73,6.240396499633789],[127,17,74,6.2536444664001465],[127,17,75,6.25829553604126],[127,17,76,6.259389400482178],[127,17,77,6.258517742156982],[127,17,78,6.255523681640625],[127,17,79,6.250174522399902],[127,18,64,6.182787895202637],[127,18,65,6.1897873878479],[127,18,66,6.189891338348389],[127,18,67,6.187800884246826],[127,18,68,6.18593168258667],[127,18,69,6.186098575592041],[127,18,70,6.189854145050049],[127,18,71,6.198974132537842],[127,18,72,6.218026161193848],[127,18,73,6.240396499633789],[127,18,74,6.2536444664001465],[127,18,75,6.25829553604126],[127,18,76,6.259389400482178],[127,18,77,6.258517742156982],[127,18,78,6.255523681640625],[127,18,79,6.250174522399902],[127,19,64,6.182787895202637],[127,19,65,6.1897873878479],[127,19,66,6.189891338348389],[127,19,67,6.187800884246826],[127,19,68,6.18593168258667],[127,19,69,6.186098575592041],[127,19,70,6.189854145050049],[127,19,71,6.198974132537842],[127,19,72,6.218026161193848],[127,19,73,6.240396499633789],[127,19,74,6.2536444664001465],[127,19,75,6.25829553604126],[127,19,76,6.259389400482178],[127,19,77,6.258517742156982],[127,19,78,6.255523681640625],[127,19,79,6.250174522399902],[127,20,64,6.182787895202637],[127,20,65,6.1897873878479],[127,20,66,6.189891338348389],[127,20,67,6.187800884246826],[127,20,68,6.18593168258667],[127,20,69,6.186098575592041],[127,20,70,6.189854145050049],[127,20,71,6.198974132537842],[127,20,72,6.218026161193848],[127,20,73,6.240396499633789],[127,20,74,6.2536444664001465],[127,20,75,6.25829553604126],[127,20,76,6.259389400482178],[127,20,77,6.258517742156982],[127,20,78,6.255523681640625],[127,20,79,6.250174522399902],[127,21,64,6.182787895202637],[127,21,65,6.1897873878479],[127,21,66,6.189891338348389],[127,21,67,6.187800884246826],[127,21,68,6.18593168258667],[127,21,69,6.186098575592041],[127,21,70,6.189854145050049],[127,21,71,6.198974132537842],[127,21,72,6.218026161193848],[127,21,73,6.240396499633789],[127,21,74,6.2536444664001465],[127,21,75,6.25829553604126],[127,21,76,6.259389400482178],[127,21,77,6.258517742156982],[127,21,78,6.255523681640625],[127,21,79,6.250174522399902],[127,22,64,6.182787895202637],[127,22,65,6.1897873878479],[127,22,66,6.189891338348389],[127,22,67,6.187800884246826],[127,22,68,6.18593168258667],[127,22,69,6.186098575592041],[127,22,70,6.189854145050049],[127,22,71,6.198974132537842],[127,22,72,6.218026161193848],[127,22,73,6.240396499633789],[127,22,74,6.2536444664001465],[127,22,75,6.25829553604126],[127,22,76,6.259389400482178],[127,22,77,6.258517742156982],[127,22,78,6.255523681640625],[127,22,79,6.250174522399902],[127,23,64,6.182787895202637],[127,23,65,6.1897873878479],[127,23,66,6.189891338348389],[127,23,67,6.187800884246826],[127,23,68,6.18593168258667],[127,23,69,6.186098575592041],[127,23,70,6.189854145050049],[127,23,71,6.198974132537842],[127,23,72,6.218026161193848],[127,23,73,6.240396499633789],[127,23,74,6.2536444664001465],[127,23,75,6.25829553604126],[127,23,76,6.259389400482178],[127,23,77,6.258517742156982],[127,23,78,6.255523681640625],[127,23,79,6.250174522399902],[127,24,64,6.182787895202637],[127,24,65,6.1897873878479],[127,24,66,6.189891338348389],[127,24,67,6.187800884246826],[127,24,68,6.18593168258667],[127,24,69,6.186098575592041],[127,24,70,6.189854145050049],[127,24,71,6.198974132537842],[127,24,72,6.218026161193848],[127,24,73,6.240396499633789],[127,24,74,6.2536444664001465],[127,24,75,6.25829553604126],[127,24,76,6.259389400482178],[127,24,77,6.258517742156982],[127,24,78,6.255523681640625],[127,24,79,6.250174522399902],[127,25,64,6.182787895202637],[127,25,65,6.1897873878479],[127,25,66,6.189891338348389],[127,25,67,6.187800884246826],[127,25,68,6.18593168258667],[127,25,69,6.186098575592041],[127,25,70,6.189854145050049],[127,25,71,6.198974132537842],[127,25,72,6.218026161193848],[127,25,73,6.240396499633789],[127,25,74,6.2536444664001465],[127,25,75,6.25829553604126],[127,25,76,6.259389400482178],[127,25,77,6.258517742156982],[127,25,78,6.255523681640625],[127,25,79,6.250174522399902],[127,26,64,6.182787895202637],[127,26,65,6.1897873878479],[127,26,66,6.189891338348389],[127,26,67,6.187800884246826],[127,26,68,6.18593168258667],[127,26,69,6.186098575592041],[127,26,70,6.189854145050049],[127,26,71,6.198974132537842],[127,26,72,6.218026161193848],[127,26,73,6.240396499633789],[127,26,74,6.2536444664001465],[127,26,75,6.25829553604126],[127,26,76,6.259389400482178],[127,26,77,6.258517742156982],[127,26,78,6.255523681640625],[127,26,79,6.250174522399902],[127,27,64,6.182787895202637],[127,27,65,6.1897873878479],[127,27,66,6.189891338348389],[127,27,67,6.187800884246826],[127,27,68,6.18593168258667],[127,27,69,6.186098575592041],[127,27,70,6.189854145050049],[127,27,71,6.198974132537842],[127,27,72,6.218026161193848],[127,27,73,6.240396499633789],[127,27,74,6.2536444664001465],[127,27,75,6.25829553604126],[127,27,76,6.259389400482178],[127,27,77,6.258517742156982],[127,27,78,6.255523681640625],[127,27,79,6.250174522399902],[127,28,64,6.182787895202637],[127,28,65,6.1897873878479],[127,28,66,6.189891338348389],[127,28,67,6.187800884246826],[127,28,68,6.18593168258667],[127,28,69,6.186098575592041],[127,28,70,6.189854145050049],[127,28,71,6.198974132537842],[127,28,72,6.218026161193848],[127,28,73,6.240396499633789],[127,28,74,6.2536444664001465],[127,28,75,6.25829553604126],[127,28,76,6.259389400482178],[127,28,77,6.258517742156982],[127,28,78,6.255523681640625],[127,28,79,6.250174522399902],[127,29,64,6.182787895202637],[127,29,65,6.1897873878479],[127,29,66,6.189891338348389],[127,29,67,6.187800884246826],[127,29,68,6.18593168258667],[127,29,69,6.186098575592041],[127,29,70,6.189854145050049],[127,29,71,6.198974132537842],[127,29,72,6.218026161193848],[127,29,73,6.240396499633789],[127,29,74,6.2536444664001465],[127,29,75,6.25829553604126],[127,29,76,6.259389400482178],[127,29,77,6.258517742156982],[127,29,78,6.255523681640625],[127,29,79,6.250174522399902],[127,30,64,6.182787895202637],[127,30,65,6.1897873878479],[127,30,66,6.189891338348389],[127,30,67,6.187800884246826],[127,30,68,6.18593168258667],[127,30,69,6.186098575592041],[127,30,70,6.189854145050049],[127,30,71,6.198974132537842],[127,30,72,6.218026161193848],[127,30,73,6.240396499633789],[127,30,74,6.2536444664001465],[127,30,75,6.25829553604126],[127,30,76,6.259389400482178],[127,30,77,6.258517742156982],[127,30,78,6.255523681640625],[127,30,79,6.250174522399902],[127,31,64,6.182787895202637],[127,31,65,6.1897873878479],[127,31,66,6.189891338348389],[127,31,67,6.187800884246826],[127,31,68,6.18593168258667],[127,31,69,6.186098575592041],[127,31,70,6.189854145050049],[127,31,71,6.198974132537842],[127,31,72,6.218026161193848],[127,31,73,6.240396499633789],[127,31,74,6.2536444664001465],[127,31,75,6.25829553604126],[127,31,76,6.259389400482178],[127,31,77,6.258517742156982],[127,31,78,6.255523681640625],[127,31,79,6.250174522399902],[127,32,64,6.182787895202637],[127,32,65,6.1897873878479],[127,32,66,6.189891338348389],[127,32,67,6.187800884246826],[127,32,68,6.18593168258667],[127,32,69,6.186098575592041],[127,32,70,6.189854145050049],[127,32,71,6.198974132537842],[127,32,72,6.218026161193848],[127,32,73,6.240396499633789],[127,32,74,6.2536444664001465],[127,32,75,6.25829553604126],[127,32,76,6.259389400482178],[127,32,77,6.258517742156982],[127,32,78,6.255523681640625],[127,32,79,6.250174522399902],[127,33,64,6.182787895202637],[127,33,65,6.1897873878479],[127,33,66,6.189891338348389],[127,33,67,6.187800884246826],[127,33,68,6.18593168258667],[127,33,69,6.186098575592041],[127,33,70,6.189854145050049],[127,33,71,6.198974132537842],[127,33,72,6.218026161193848],[127,33,73,6.240396499633789],[127,33,74,6.2536444664001465],[127,33,75,6.25829553604126],[127,33,76,6.259389400482178],[127,33,77,6.258517742156982],[127,33,78,6.255523681640625],[127,33,79,6.250174522399902],[127,34,64,6.182787895202637],[127,34,65,6.1897873878479],[127,34,66,6.189891338348389],[127,34,67,6.187800884246826],[127,34,68,6.18593168258667],[127,34,69,6.186098575592041],[127,34,70,6.189854145050049],[127,34,71,6.198974132537842],[127,34,72,6.218026161193848],[127,34,73,6.240396499633789],[127,34,74,6.2536444664001465],[127,34,75,6.25829553604126],[127,34,76,6.259389400482178],[127,34,77,6.258517742156982],[127,34,78,6.255523681640625],[127,34,79,6.250174522399902],[127,35,64,6.182787895202637],[127,35,65,6.1897873878479],[127,35,66,6.189891338348389],[127,35,67,6.187800884246826],[127,35,68,6.18593168258667],[127,35,69,6.186098575592041],[127,35,70,6.189854145050049],[127,35,71,6.198974132537842],[127,35,72,6.218026161193848],[127,35,73,6.240396499633789],[127,35,74,6.2536444664001465],[127,35,75,6.25829553604126],[127,35,76,6.259389400482178],[127,35,77,6.258517742156982],[127,35,78,6.255523681640625],[127,35,79,6.250174522399902],[127,36,64,6.182787895202637],[127,36,65,6.1897873878479],[127,36,66,6.189891338348389],[127,36,67,6.187800884246826],[127,36,68,6.18593168258667],[127,36,69,6.186098575592041],[127,36,70,6.189854145050049],[127,36,71,6.198974132537842],[127,36,72,6.218026161193848],[127,36,73,6.240396499633789],[127,36,74,6.2536444664001465],[127,36,75,6.25829553604126],[127,36,76,6.259389400482178],[127,36,77,6.258517742156982],[127,36,78,6.255523681640625],[127,36,79,6.250174522399902],[127,37,64,6.182787895202637],[127,37,65,6.1897873878479],[127,37,66,6.189891338348389],[127,37,67,6.187800884246826],[127,37,68,6.18593168258667],[127,37,69,6.186098575592041],[127,37,70,6.189854145050049],[127,37,71,6.198974132537842],[127,37,72,6.218026161193848],[127,37,73,6.240396499633789],[127,37,74,6.2536444664001465],[127,37,75,6.25829553604126],[127,37,76,6.259389400482178],[127,37,77,6.258517742156982],[127,37,78,6.255523681640625],[127,37,79,6.250174522399902],[127,38,64,6.182787895202637],[127,38,65,6.1897873878479],[127,38,66,6.189891338348389],[127,38,67,6.187800884246826],[127,38,68,6.18593168258667],[127,38,69,6.186098575592041],[127,38,70,6.189854145050049],[127,38,71,6.198974132537842],[127,38,72,6.218026161193848],[127,38,73,6.240396499633789],[127,38,74,6.2536444664001465],[127,38,75,6.25829553604126],[127,38,76,6.259389400482178],[127,38,77,6.258517742156982],[127,38,78,6.255523681640625],[127,38,79,6.250174522399902],[127,39,64,6.182787895202637],[127,39,65,6.1897873878479],[127,39,66,6.189891338348389],[127,39,67,6.187800884246826],[127,39,68,6.18593168258667],[127,39,69,6.186098575592041],[127,39,70,6.189854145050049],[127,39,71,6.198974132537842],[127,39,72,6.218026161193848],[127,39,73,6.240396499633789],[127,39,74,6.2536444664001465],[127,39,75,6.25829553604126],[127,39,76,6.259389400482178],[127,39,77,6.258517742156982],[127,39,78,6.255523681640625],[127,39,79,6.250174522399902],[127,40,64,6.182787895202637],[127,40,65,6.1897873878479],[127,40,66,6.189891338348389],[127,40,67,6.187800884246826],[127,40,68,6.18593168258667],[127,40,69,6.186098575592041],[127,40,70,6.189854145050049],[127,40,71,6.198974132537842],[127,40,72,6.218026161193848],[127,40,73,6.240396499633789],[127,40,74,6.2536444664001465],[127,40,75,6.25829553604126],[127,40,76,6.259389400482178],[127,40,77,6.258517742156982],[127,40,78,6.255523681640625],[127,40,79,6.250174522399902],[127,41,64,6.182787895202637],[127,41,65,6.1897873878479],[127,41,66,6.189891338348389],[127,41,67,6.187800884246826],[127,41,68,6.18593168258667],[127,41,69,6.186098575592041],[127,41,70,6.189854145050049],[127,41,71,6.198974132537842],[127,41,72,6.218026161193848],[127,41,73,6.240396499633789],[127,41,74,6.2536444664001465],[127,41,75,6.25829553604126],[127,41,76,6.259389400482178],[127,41,77,6.258517742156982],[127,41,78,6.255523681640625],[127,41,79,6.250174522399902],[127,42,64,6.182787895202637],[127,42,65,6.1897873878479],[127,42,66,6.189891338348389],[127,42,67,6.187800884246826],[127,42,68,6.18593168258667],[127,42,69,6.186098575592041],[127,42,70,6.189854145050049],[127,42,71,6.198974132537842],[127,42,72,6.218026161193848],[127,42,73,6.240396499633789],[127,42,74,6.2536444664001465],[127,42,75,6.25829553604126],[127,42,76,6.259389400482178],[127,42,77,6.258517742156982],[127,42,78,6.255523681640625],[127,42,79,6.250174522399902],[127,43,64,6.182787895202637],[127,43,65,6.1897873878479],[127,43,66,6.189891338348389],[127,43,67,6.187800884246826],[127,43,68,6.18593168258667],[127,43,69,6.186098575592041],[127,43,70,6.189854145050049],[127,43,71,6.198974132537842],[127,43,72,6.218026161193848],[127,43,73,6.240396499633789],[127,43,74,6.2536444664001465],[127,43,75,6.25829553604126],[127,43,76,6.259389400482178],[127,43,77,6.258517742156982],[127,43,78,6.255523681640625],[127,43,79,6.250174522399902],[127,44,64,6.182787895202637],[127,44,65,6.1897873878479],[127,44,66,6.189891338348389],[127,44,67,6.187800884246826],[127,44,68,6.18593168258667],[127,44,69,6.186098575592041],[127,44,70,6.189854145050049],[127,44,71,6.198974132537842],[127,44,72,6.218026161193848],[127,44,73,6.240396499633789],[127,44,74,6.2536444664001465],[127,44,75,6.25829553604126],[127,44,76,6.259389400482178],[127,44,77,6.258517742156982],[127,44,78,6.255523681640625],[127,44,79,6.250174522399902],[127,45,64,6.182787895202637],[127,45,65,6.1897873878479],[127,45,66,6.189891338348389],[127,45,67,6.187800884246826],[127,45,68,6.18593168258667],[127,45,69,6.186098575592041],[127,45,70,6.189854145050049],[127,45,71,6.198974132537842],[127,45,72,6.218026161193848],[127,45,73,6.240396499633789],[127,45,74,6.2536444664001465],[127,45,75,6.25829553604126],[127,45,76,6.259389400482178],[127,45,77,6.258517742156982],[127,45,78,6.255523681640625],[127,45,79,6.250174522399902],[127,46,64,6.182787895202637],[127,46,65,6.1897873878479],[127,46,66,6.189891338348389],[127,46,67,6.187800884246826],[127,46,68,6.18593168258667],[127,46,69,6.186098575592041],[127,46,70,6.189854145050049],[127,46,71,6.198974132537842],[127,46,72,6.218026161193848],[127,46,73,6.240396499633789],[127,46,74,6.2536444664001465],[127,46,75,6.25829553604126],[127,46,76,6.259389400482178],[127,46,77,6.258517742156982],[127,46,78,6.255523681640625],[127,46,79,6.250174522399902],[127,47,64,6.182787895202637],[127,47,65,6.1897873878479],[127,47,66,6.189891338348389],[127,47,67,6.187800884246826],[127,47,68,6.18593168258667],[127,47,69,6.186098575592041],[127,47,70,6.189854145050049],[127,47,71,6.198974132537842],[127,47,72,6.218026161193848],[127,47,73,6.240396499633789],[127,47,74,6.2536444664001465],[127,47,75,6.25829553604126],[127,47,76,6.259389400482178],[127,47,77,6.258517742156982],[127,47,78,6.255523681640625],[127,47,79,6.250174522399902],[127,48,64,6.182787895202637],[127,48,65,6.1897873878479],[127,48,66,6.189891338348389],[127,48,67,6.187800884246826],[127,48,68,6.18593168258667],[127,48,69,6.186098575592041],[127,48,70,6.189854145050049],[127,48,71,6.198974132537842],[127,48,72,6.218026161193848],[127,48,73,6.240396499633789],[127,48,74,6.2536444664001465],[127,48,75,6.25829553604126],[127,48,76,6.259389400482178],[127,48,77,6.258517742156982],[127,48,78,6.255523681640625],[127,48,79,6.250174522399902],[127,49,64,6.182787895202637],[127,49,65,6.1897873878479],[127,49,66,6.189891338348389],[127,49,67,6.187800884246826],[127,49,68,6.18593168258667],[127,49,69,6.186098575592041],[127,49,70,6.189854145050049],[127,49,71,6.198974132537842],[127,49,72,6.218026161193848],[127,49,73,6.240396499633789],[127,49,74,6.2536444664001465],[127,49,75,6.25829553604126],[127,49,76,6.259389400482178],[127,49,77,6.258517742156982],[127,49,78,6.255523681640625],[127,49,79,6.250174522399902],[127,50,64,6.182787895202637],[127,50,65,6.1897873878479],[127,50,66,6.189891338348389],[127,50,67,6.187800884246826],[127,50,68,6.18593168258667],[127,50,69,6.186098575592041],[127,50,70,6.189854145050049],[127,50,71,6.198974132537842],[127,50,72,6.218026161193848],[127,50,73,6.240396499633789],[127,50,74,6.2536444664001465],[127,50,75,6.25829553604126],[127,50,76,6.259389400482178],[127,50,77,6.258517742156982],[127,50,78,6.255523681640625],[127,50,79,6.250174522399902],[127,51,64,6.182787895202637],[127,51,65,6.1897873878479],[127,51,66,6.189891338348389],[127,51,67,6.187800884246826],[127,51,68,6.18593168258667],[127,51,69,6.186098575592041],[127,51,70,6.189854145050049],[127,51,71,6.198974132537842],[127,51,72,6.218026161193848],[127,51,73,6.240396499633789],[127,51,74,6.2536444664001465],[127,51,75,6.25829553604126],[127,51,76,6.259389400482178],[127,51,77,6.258517742156982],[127,51,78,6.255523681640625],[127,51,79,6.250174522399902],[127,52,64,6.182787895202637],[127,52,65,6.1897873878479],[127,52,66,6.189891338348389],[127,52,67,6.187800884246826],[127,52,68,6.18593168258667],[127,52,69,6.186098575592041],[127,52,70,6.189854145050049],[127,52,71,6.198974132537842],[127,52,72,6.218026161193848],[127,52,73,6.240396499633789],[127,52,74,6.2536444664001465],[127,52,75,6.25829553604126],[127,52,76,6.259389400482178],[127,52,77,6.258517742156982],[127,52,78,6.255523681640625],[127,52,79,6.250174522399902],[127,53,64,6.182787895202637],[127,53,65,6.1897873878479],[127,53,66,6.189891338348389],[127,53,67,6.187800884246826],[127,53,68,6.18593168258667],[127,53,69,6.186098575592041],[127,53,70,6.189854145050049],[127,53,71,6.198974132537842],[127,53,72,6.218026161193848],[127,53,73,6.240396499633789],[127,53,74,6.2536444664001465],[127,53,75,6.25829553604126],[127,53,76,6.259389400482178],[127,53,77,6.258517742156982],[127,53,78,6.255523681640625],[127,53,79,6.250174522399902],[127,54,64,6.182787895202637],[127,54,65,6.1897873878479],[127,54,66,6.189891338348389],[127,54,67,6.187800884246826],[127,54,68,6.18593168258667],[127,54,69,6.186098575592041],[127,54,70,6.189854145050049],[127,54,71,6.198974132537842],[127,54,72,6.218026161193848],[127,54,73,6.240396499633789],[127,54,74,6.2536444664001465],[127,54,75,6.25829553604126],[127,54,76,6.259389400482178],[127,54,77,6.258517742156982],[127,54,78,6.255523681640625],[127,54,79,6.250174522399902],[127,55,64,6.182787895202637],[127,55,65,6.1897873878479],[127,55,66,6.189891338348389],[127,55,67,6.187800884246826],[127,55,68,6.18593168258667],[127,55,69,6.186098575592041],[127,55,70,6.189854145050049],[127,55,71,6.198974132537842],[127,55,72,6.218026161193848],[127,55,73,6.240396499633789],[127,55,74,6.2536444664001465],[127,55,75,6.25829553604126],[127,55,76,6.259389400482178],[127,55,77,6.258517742156982],[127,55,78,6.255523681640625],[127,55,79,6.250174522399902],[127,56,64,6.182787895202637],[127,56,65,6.1897873878479],[127,56,66,6.189891338348389],[127,56,67,6.187800884246826],[127,56,68,6.18593168258667],[127,56,69,6.186098575592041],[127,56,70,6.189854145050049],[127,56,71,6.198974132537842],[127,56,72,6.218026161193848],[127,56,73,6.240396499633789],[127,56,74,6.2536444664001465],[127,56,75,6.25829553604126],[127,56,76,6.259389400482178],[127,56,77,6.258517742156982],[127,56,78,6.255523681640625],[127,56,79,6.250174522399902],[127,57,64,6.182787895202637],[127,57,65,6.1897873878479],[127,57,66,6.189891338348389],[127,57,67,6.187800884246826],[127,57,68,6.18593168258667],[127,57,69,6.186098575592041],[127,57,70,6.189854145050049],[127,57,71,6.198974132537842],[127,57,72,6.218026161193848],[127,57,73,6.240396499633789],[127,57,74,6.2536444664001465],[127,57,75,6.25829553604126],[127,57,76,6.259389400482178],[127,57,77,6.258517742156982],[127,57,78,6.255523681640625],[127,57,79,6.250174522399902],[127,58,64,6.182787895202637],[127,58,65,6.1897873878479],[127,58,66,6.189891338348389],[127,58,67,6.187800884246826],[127,58,68,6.18593168258667],[127,58,69,6.186098575592041],[127,58,70,6.189854145050049],[127,58,71,6.198974132537842],[127,58,72,6.218026161193848],[127,58,73,6.240396499633789],[127,58,74,6.2536444664001465],[127,58,75,6.25829553604126],[127,58,76,6.259389400482178],[127,58,77,6.258517742156982],[127,58,78,6.255523681640625],[127,58,79,6.250174522399902],[127,59,64,6.182787895202637],[127,59,65,6.1897873878479],[127,59,66,6.189891338348389],[127,59,67,6.187800884246826],[127,59,68,6.18593168258667],[127,59,69,6.186098575592041],[127,59,70,6.189854145050049],[127,59,71,6.198974132537842],[127,59,72,6.218026161193848],[127,59,73,6.240396499633789],[127,59,74,6.2536444664001465],[127,59,75,6.25829553604126],[127,59,76,6.259389400482178],[127,59,77,6.258517742156982],[127,59,78,6.255523681640625],[127,59,79,6.250174522399902],[127,60,64,6.182787895202637],[127,60,65,6.1897873878479],[127,60,66,6.189891338348389],[127,60,67,6.187800884246826],[127,60,68,6.18593168258667],[127,60,69,6.186098575592041],[127,60,70,6.189854145050049],[127,60,71,6.198974132537842],[127,60,72,6.218026161193848],[127,60,73,6.240396499633789],[127,60,74,6.2536444664001465],[127,60,75,6.25829553604126],[127,60,76,6.259389400482178],[127,60,77,6.258517742156982],[127,60,78,6.255523681640625],[127,60,79,6.250174522399902],[127,61,64,6.182787895202637],[127,61,65,6.1897873878479],[127,61,66,6.189891338348389],[127,61,67,6.187800884246826],[127,61,68,6.18593168258667],[127,61,69,6.186098575592041],[127,61,70,6.189854145050049],[127,61,71,6.198974132537842],[127,61,72,6.218026161193848],[127,61,73,6.240396499633789],[127,61,74,6.2536444664001465],[127,61,75,6.25829553604126],[127,61,76,6.259389400482178],[127,61,77,6.258517742156982],[127,61,78,6.255523681640625],[127,61,79,6.250174522399902],[127,62,64,6.182787895202637],[127,62,65,6.1897873878479],[127,62,66,6.189891338348389],[127,62,67,6.187800884246826],[127,62,68,6.18593168258667],[127,62,69,6.186098575592041],[127,62,70,6.189854145050049],[127,62,71,6.198974132537842],[127,62,72,6.218026161193848],[127,62,73,6.240396499633789],[127,62,74,6.2536444664001465],[127,62,75,6.25829553604126],[127,62,76,6.259389400482178],[127,62,77,6.258517742156982],[127,62,78,6.255523681640625],[127,62,79,6.250174522399902],[127,63,64,6.182787895202637],[127,63,65,6.1897873878479],[127,63,66,6.189891338348389],[127,63,67,6.187800884246826],[127,63,68,6.18593168258667],[127,63,69,6.186098575592041],[127,63,70,6.189854145050049],[127,63,71,6.198974132537842],[127,63,72,6.218026161193848],[127,63,73,6.240396499633789],[127,63,74,6.2536444664001465],[127,63,75,6.25829553604126],[127,63,76,6.259389400482178],[127,63,77,6.258517742156982],[127,63,78,6.255523681640625],[127,63,79,6.250174522399902],[127,64,64,6.182787895202637],[127,64,65,6.1897873878479],[127,64,66,6.189891338348389],[127,64,67,6.187800884246826],[127,64,68,6.18593168258667],[127,64,69,6.186098575592041],[127,64,70,6.189854145050049],[127,64,71,6.198974132537842],[127,64,72,6.218026161193848],[127,64,73,6.240396499633789],[127,64,74,6.2536444664001465],[127,64,75,6.25829553604126],[127,64,76,6.259389400482178],[127,64,77,6.258517742156982],[127,64,78,6.255523681640625],[127,64,79,6.250174522399902],[127,65,64,6.182787895202637],[127,65,65,6.1897873878479],[127,65,66,6.189891338348389],[127,65,67,6.187800884246826],[127,65,68,6.18593168258667],[127,65,69,6.186098575592041],[127,65,70,6.189854145050049],[127,65,71,6.198974132537842],[127,65,72,6.218026161193848],[127,65,73,6.240396499633789],[127,65,74,6.2536444664001465],[127,65,75,6.25829553604126],[127,65,76,6.259389400482178],[127,65,77,6.258517742156982],[127,65,78,6.255523681640625],[127,65,79,6.250174522399902],[127,66,64,6.182787895202637],[127,66,65,6.1897873878479],[127,66,66,6.189891338348389],[127,66,67,6.187800884246826],[127,66,68,6.18593168258667],[127,66,69,6.186098575592041],[127,66,70,6.189854145050049],[127,66,71,6.198974132537842],[127,66,72,6.218026161193848],[127,66,73,6.240396499633789],[127,66,74,6.2536444664001465],[127,66,75,6.25829553604126],[127,66,76,6.259389400482178],[127,66,77,6.258517742156982],[127,66,78,6.255523681640625],[127,66,79,6.250174522399902],[127,67,64,6.182787895202637],[127,67,65,6.1897873878479],[127,67,66,6.189891338348389],[127,67,67,6.187800884246826],[127,67,68,6.18593168258667],[127,67,69,6.186098575592041],[127,67,70,6.189854145050049],[127,67,71,6.198974132537842],[127,67,72,6.218026161193848],[127,67,73,6.240396499633789],[127,67,74,6.2536444664001465],[127,67,75,6.25829553604126],[127,67,76,6.259389400482178],[127,67,77,6.258517742156982],[127,67,78,6.255523681640625],[127,67,79,6.250174522399902],[127,68,64,6.182787895202637],[127,68,65,6.1897873878479],[127,68,66,6.189891338348389],[127,68,67,6.187800884246826],[127,68,68,6.18593168258667],[127,68,69,6.186098575592041],[127,68,70,6.189854145050049],[127,68,71,6.198974132537842],[127,68,72,6.218026161193848],[127,68,73,6.240396499633789],[127,68,74,6.2536444664001465],[127,68,75,6.25829553604126],[127,68,76,6.259389400482178],[127,68,77,6.258517742156982],[127,68,78,6.255523681640625],[127,68,79,6.250174522399902],[127,69,64,6.182787895202637],[127,69,65,6.1897873878479],[127,69,66,6.189891338348389],[127,69,67,6.187800884246826],[127,69,68,6.18593168258667],[127,69,69,6.186098575592041],[127,69,70,6.189854145050049],[127,69,71,6.198974132537842],[127,69,72,6.218026161193848],[127,69,73,6.240396499633789],[127,69,74,6.2536444664001465],[127,69,75,6.25829553604126],[127,69,76,6.259389400482178],[127,69,77,6.258517742156982],[127,69,78,6.255523681640625],[127,69,79,6.250174522399902],[127,70,64,6.182787895202637],[127,70,65,6.1897873878479],[127,70,66,6.189891338348389],[127,70,67,6.187800884246826],[127,70,68,6.18593168258667],[127,70,69,6.186098575592041],[127,70,70,6.189854145050049],[127,70,71,6.198974132537842],[127,70,72,6.218026161193848],[127,70,73,6.240396499633789],[127,70,74,6.2536444664001465],[127,70,75,6.25829553604126],[127,70,76,6.259389400482178],[127,70,77,6.258517742156982],[127,70,78,6.255523681640625],[127,70,79,6.250174522399902],[127,71,64,6.182787895202637],[127,71,65,6.1897873878479],[127,71,66,6.189891338348389],[127,71,67,6.187800884246826],[127,71,68,6.18593168258667],[127,71,69,6.186098575592041],[127,71,70,6.189854145050049],[127,71,71,6.198974132537842],[127,71,72,6.218026161193848],[127,71,73,6.240396499633789],[127,71,74,6.2536444664001465],[127,71,75,6.25829553604126],[127,71,76,6.259389400482178],[127,71,77,6.258517742156982],[127,71,78,6.255523681640625],[127,71,79,6.250174522399902],[127,72,64,6.182787895202637],[127,72,65,6.1897873878479],[127,72,66,6.189891338348389],[127,72,67,6.187800884246826],[127,72,68,6.18593168258667],[127,72,69,6.186098575592041],[127,72,70,6.189854145050049],[127,72,71,6.198974132537842],[127,72,72,6.218026161193848],[127,72,73,6.240396499633789],[127,72,74,6.2536444664001465],[127,72,75,6.25829553604126],[127,72,76,6.259389400482178],[127,72,77,6.258517742156982],[127,72,78,6.255523681640625],[127,72,79,6.250174522399902],[127,73,64,6.182787895202637],[127,73,65,6.1897873878479],[127,73,66,6.189891338348389],[127,73,67,6.187800884246826],[127,73,68,6.18593168258667],[127,73,69,6.186098575592041],[127,73,70,6.189854145050049],[127,73,71,6.198974132537842],[127,73,72,6.218026161193848],[127,73,73,6.240396499633789],[127,73,74,6.2536444664001465],[127,73,75,6.25829553604126],[127,73,76,6.259389400482178],[127,73,77,6.258517742156982],[127,73,78,6.255523681640625],[127,73,79,6.250174522399902],[127,74,64,6.182787895202637],[127,74,65,6.1897873878479],[127,74,66,6.189891338348389],[127,74,67,6.187800884246826],[127,74,68,6.18593168258667],[127,74,69,6.186098575592041],[127,74,70,6.189854145050049],[127,74,71,6.198974132537842],[127,74,72,6.218026161193848],[127,74,73,6.240396499633789],[127,74,74,6.2536444664001465],[127,74,75,6.25829553604126],[127,74,76,6.259389400482178],[127,74,77,6.258517742156982],[127,74,78,6.255523681640625],[127,74,79,6.250174522399902],[127,75,64,6.182787895202637],[127,75,65,6.1897873878479],[127,75,66,6.189891338348389],[127,75,67,6.187800884246826],[127,75,68,6.18593168258667],[127,75,69,6.186098575592041],[127,75,70,6.189854145050049],[127,75,71,6.198974132537842],[127,75,72,6.218026161193848],[127,75,73,6.240396499633789],[127,75,74,6.2536444664001465],[127,75,75,6.25829553604126],[127,75,76,6.259389400482178],[127,75,77,6.258517742156982],[127,75,78,6.255523681640625],[127,75,79,6.250174522399902],[127,76,64,6.182787895202637],[127,76,65,6.1897873878479],[127,76,66,6.189891338348389],[127,76,67,6.187800884246826],[127,76,68,6.18593168258667],[127,76,69,6.186098575592041],[127,76,70,6.189854145050049],[127,76,71,6.198974132537842],[127,76,72,6.218026161193848],[127,76,73,6.240396499633789],[127,76,74,6.2536444664001465],[127,76,75,6.25829553604126],[127,76,76,6.259389400482178],[127,76,77,6.258517742156982],[127,76,78,6.255523681640625],[127,76,79,6.250174522399902],[127,77,64,6.182787895202637],[127,77,65,6.1897873878479],[127,77,66,6.189891338348389],[127,77,67,6.187800884246826],[127,77,68,6.18593168258667],[127,77,69,6.186098575592041],[127,77,70,6.189854145050049],[127,77,71,6.198974132537842],[127,77,72,6.218026161193848],[127,77,73,6.240396499633789],[127,77,74,6.2536444664001465],[127,77,75,6.25829553604126],[127,77,76,6.259389400482178],[127,77,77,6.258517742156982],[127,77,78,6.255523681640625],[127,77,79,6.250174522399902],[127,78,64,6.182787895202637],[127,78,65,6.1897873878479],[127,78,66,6.189891338348389],[127,78,67,6.187800884246826],[127,78,68,6.18593168258667],[127,78,69,6.186098575592041],[127,78,70,6.189854145050049],[127,78,71,6.198974132537842],[127,78,72,6.218026161193848],[127,78,73,6.240396499633789],[127,78,74,6.2536444664001465],[127,78,75,6.25829553604126],[127,78,76,6.259389400482178],[127,78,77,6.258517742156982],[127,78,78,6.255523681640625],[127,78,79,6.250174522399902],[127,79,64,6.182787895202637],[127,79,65,6.1897873878479],[127,79,66,6.189891338348389],[127,79,67,6.187800884246826],[127,79,68,6.18593168258667],[127,79,69,6.186098575592041],[127,79,70,6.189854145050049],[127,79,71,6.198974132537842],[127,79,72,6.218026161193848],[127,79,73,6.240396499633789],[127,79,74,6.2536444664001465],[127,79,75,6.25829553604126],[127,79,76,6.259389400482178],[127,79,77,6.258517742156982],[127,79,78,6.255523681640625],[127,79,79,6.250174522399902],[127,80,64,6.182787895202637],[127,80,65,6.1897873878479],[127,80,66,6.189891338348389],[127,80,67,6.187800884246826],[127,80,68,6.18593168258667],[127,80,69,6.186098575592041],[127,80,70,6.189854145050049],[127,80,71,6.198974132537842],[127,80,72,6.218026161193848],[127,80,73,6.240396499633789],[127,80,74,6.2536444664001465],[127,80,75,6.25829553604126],[127,80,76,6.259389400482178],[127,80,77,6.258517742156982],[127,80,78,6.255523681640625],[127,80,79,6.250174522399902],[127,81,64,6.182787895202637],[127,81,65,6.1897873878479],[127,81,66,6.189891338348389],[127,81,67,6.187800884246826],[127,81,68,6.18593168258667],[127,81,69,6.186098575592041],[127,81,70,6.189854145050049],[127,81,71,6.198974132537842],[127,81,72,6.218026161193848],[127,81,73,6.240396499633789],[127,81,74,6.2536444664001465],[127,81,75,6.25829553604126],[127,81,76,6.259389400482178],[127,81,77,6.258517742156982],[127,81,78,6.255523681640625],[127,81,79,6.250174522399902],[127,82,64,6.182787895202637],[127,82,65,6.1897873878479],[127,82,66,6.189891338348389],[127,82,67,6.187800884246826],[127,82,68,6.18593168258667],[127,82,69,6.186098575592041],[127,82,70,6.189854145050049],[127,82,71,6.198974132537842],[127,82,72,6.218026161193848],[127,82,73,6.240396499633789],[127,82,74,6.2536444664001465],[127,82,75,6.25829553604126],[127,82,76,6.259389400482178],[127,82,77,6.258517742156982],[127,82,78,6.255523681640625],[127,82,79,6.250174522399902],[127,83,64,6.182787895202637],[127,83,65,6.1897873878479],[127,83,66,6.189891338348389],[127,83,67,6.187800884246826],[127,83,68,6.18593168258667],[127,83,69,6.186098575592041],[127,83,70,6.189854145050049],[127,83,71,6.198974132537842],[127,83,72,6.218026161193848],[127,83,73,6.240396499633789],[127,83,74,6.2536444664001465],[127,83,75,6.25829553604126],[127,83,76,6.259389400482178],[127,83,77,6.258517742156982],[127,83,78,6.255523681640625],[127,83,79,6.250174522399902],[127,84,64,6.182787895202637],[127,84,65,6.1897873878479],[127,84,66,6.189891338348389],[127,84,67,6.187800884246826],[127,84,68,6.18593168258667],[127,84,69,6.186098575592041],[127,84,70,6.189854145050049],[127,84,71,6.198974132537842],[127,84,72,6.218026161193848],[127,84,73,6.240396499633789],[127,84,74,6.2536444664001465],[127,84,75,6.25829553604126],[127,84,76,6.259389400482178],[127,84,77,6.258517742156982],[127,84,78,6.255523681640625],[127,84,79,6.250174522399902],[127,85,64,6.182787895202637],[127,85,65,6.1897873878479],[127,85,66,6.189891338348389],[127,85,67,6.187800884246826],[127,85,68,6.18593168258667],[127,85,69,6.186098575592041],[127,85,70,6.189854145050049],[127,85,71,6.198974132537842],[127,85,72,6.218026161193848],[127,85,73,6.240396499633789],[127,85,74,6.2536444664001465],[127,85,75,6.25829553604126],[127,85,76,6.259389400482178],[127,85,77,6.258517742156982],[127,85,78,6.255523681640625],[127,85,79,6.250174522399902],[127,86,64,6.182787895202637],[127,86,65,6.1897873878479],[127,86,66,6.189891338348389],[127,86,67,6.187800884246826],[127,86,68,6.18593168258667],[127,86,69,6.186098575592041],[127,86,70,6.189854145050049],[127,86,71,6.198974132537842],[127,86,72,6.218026161193848],[127,86,73,6.240396499633789],[127,86,74,6.2536444664001465],[127,86,75,6.25829553604126],[127,86,76,6.259389400482178],[127,86,77,6.258517742156982],[127,86,78,6.255523681640625],[127,86,79,6.250174522399902],[127,87,64,6.182787895202637],[127,87,65,6.1897873878479],[127,87,66,6.189891338348389],[127,87,67,6.187800884246826],[127,87,68,6.18593168258667],[127,87,69,6.186098575592041],[127,87,70,6.189854145050049],[127,87,71,6.198974132537842],[127,87,72,6.218026161193848],[127,87,73,6.240396499633789],[127,87,74,6.2536444664001465],[127,87,75,6.25829553604126],[127,87,76,6.259389400482178],[127,87,77,6.258517742156982],[127,87,78,6.255523681640625],[127,87,79,6.250174522399902],[127,88,64,6.182787895202637],[127,88,65,6.1897873878479],[127,88,66,6.189891338348389],[127,88,67,6.187800884246826],[127,88,68,6.18593168258667],[127,88,69,6.186098575592041],[127,88,70,6.189854145050049],[127,88,71,6.198974132537842],[127,88,72,6.218026161193848],[127,88,73,6.240396499633789],[127,88,74,6.2536444664001465],[127,88,75,6.25829553604126],[127,88,76,6.259389400482178],[127,88,77,6.258517742156982],[127,88,78,6.255523681640625],[127,88,79,6.250174522399902],[127,89,64,6.182787895202637],[127,89,65,6.1897873878479],[127,89,66,6.189891338348389],[127,89,67,6.187800884246826],[127,89,68,6.18593168258667],[127,89,69,6.186098575592041],[127,89,70,6.189854145050049],[127,89,71,6.198974132537842],[127,89,72,6.218026161193848],[127,89,73,6.240396499633789],[127,89,74,6.2536444664001465],[127,89,75,6.25829553604126],[127,89,76,6.259389400482178],[127,89,77,6.258517742156982],[127,89,78,6.255523681640625],[127,89,79,6.250174522399902],[127,90,64,6.182787895202637],[127,90,65,6.1897873878479],[127,90,66,6.189891338348389],[127,90,67,6.187800884246826],[127,90,68,6.18593168258667],[127,90,69,6.186098575592041],[127,90,70,6.189854145050049],[127,90,71,6.198974132537842],[127,90,72,6.218026161193848],[127,90,73,6.240396499633789],[127,90,74,6.2536444664001465],[127,90,75,6.25829553604126],[127,90,76,6.259389400482178],[127,90,77,6.258517742156982],[127,90,78,6.255523681640625],[127,90,79,6.250174522399902],[127,91,64,6.182787895202637],[127,91,65,6.1897873878479],[127,91,66,6.189891338348389],[127,91,67,6.187800884246826],[127,91,68,6.18593168258667],[127,91,69,6.186098575592041],[127,91,70,6.189854145050049],[127,91,71,6.198974132537842],[127,91,72,6.218026161193848],[127,91,73,6.240396499633789],[127,91,74,6.2536444664001465],[127,91,75,6.25829553604126],[127,91,76,6.259389400482178],[127,91,77,6.258517742156982],[127,91,78,6.255523681640625],[127,91,79,6.250174522399902],[127,92,64,6.182787895202637],[127,92,65,6.1897873878479],[127,92,66,6.189891338348389],[127,92,67,6.187800884246826],[127,92,68,6.18593168258667],[127,92,69,6.186098575592041],[127,92,70,6.189854145050049],[127,92,71,6.198974132537842],[127,92,72,6.218026161193848],[127,92,73,6.240396499633789],[127,92,74,6.2536444664001465],[127,92,75,6.25829553604126],[127,92,76,6.259389400482178],[127,92,77,6.258517742156982],[127,92,78,6.255523681640625],[127,92,79,6.250174522399902],[127,93,64,6.182787895202637],[127,93,65,6.1897873878479],[127,93,66,6.189891338348389],[127,93,67,6.187800884246826],[127,93,68,6.18593168258667],[127,93,69,6.186098575592041],[127,93,70,6.189854145050049],[127,93,71,6.198974132537842],[127,93,72,6.218026161193848],[127,93,73,6.240396499633789],[127,93,74,6.2536444664001465],[127,93,75,6.25829553604126],[127,93,76,6.259389400482178],[127,93,77,6.258517742156982],[127,93,78,6.255523681640625],[127,93,79,6.250174522399902],[127,94,64,6.182787895202637],[127,94,65,6.1897873878479],[127,94,66,6.189891338348389],[127,94,67,6.187800884246826],[127,94,68,6.18593168258667],[127,94,69,6.186098575592041],[127,94,70,6.189854145050049],[127,94,71,6.198974132537842],[127,94,72,6.218026161193848],[127,94,73,6.240396499633789],[127,94,74,6.2536444664001465],[127,94,75,6.25829553604126],[127,94,76,6.259389400482178],[127,94,77,6.258517742156982],[127,94,78,6.255523681640625],[127,94,79,6.250174522399902],[127,95,64,6.182787895202637],[127,95,65,6.1897873878479],[127,95,66,6.189891338348389],[127,95,67,6.187800884246826],[127,95,68,6.18593168258667],[127,95,69,6.186098575592041],[127,95,70,6.189854145050049],[127,95,71,6.198974132537842],[127,95,72,6.218026161193848],[127,95,73,6.240396499633789],[127,95,74,6.2536444664001465],[127,95,75,6.25829553604126],[127,95,76,6.259389400482178],[127,95,77,6.258517742156982],[127,95,78,6.255523681640625],[127,95,79,6.250174522399902],[127,96,64,6.182787895202637],[127,96,65,6.1897873878479],[127,96,66,6.189891338348389],[127,96,67,6.187800884246826],[127,96,68,6.18593168258667],[127,96,69,6.186098575592041],[127,96,70,6.189854145050049],[127,96,71,6.198974132537842],[127,96,72,6.218026161193848],[127,96,73,6.240396499633789],[127,96,74,6.2536444664001465],[127,96,75,6.25829553604126],[127,96,76,6.259389400482178],[127,96,77,6.258517742156982],[127,96,78,6.255523681640625],[127,96,79,6.250174522399902],[127,97,64,6.182787895202637],[127,97,65,6.1897873878479],[127,97,66,6.189891338348389],[127,97,67,6.187800884246826],[127,97,68,6.18593168258667],[127,97,69,6.186098575592041],[127,97,70,6.189854145050049],[127,97,71,6.198974132537842],[127,97,72,6.218026161193848],[127,97,73,6.240396499633789],[127,97,74,6.2536444664001465],[127,97,75,6.25829553604126],[127,97,76,6.259389400482178],[127,97,77,6.258517742156982],[127,97,78,6.255523681640625],[127,97,79,6.250174522399902],[127,98,64,6.182787895202637],[127,98,65,6.1897873878479],[127,98,66,6.189891338348389],[127,98,67,6.187800884246826],[127,98,68,6.18593168258667],[127,98,69,6.186098575592041],[127,98,70,6.189854145050049],[127,98,71,6.198974132537842],[127,98,72,6.218026161193848],[127,98,73,6.240396499633789],[127,98,74,6.2536444664001465],[127,98,75,6.25829553604126],[127,98,76,6.259389400482178],[127,98,77,6.258517742156982],[127,98,78,6.255523681640625],[127,98,79,6.250174522399902],[127,99,64,6.182787895202637],[127,99,65,6.1897873878479],[127,99,66,6.189891338348389],[127,99,67,6.187800884246826],[127,99,68,6.18593168258667],[127,99,69,6.186098575592041],[127,99,70,6.189854145050049],[127,99,71,6.198974132537842],[127,99,72,6.218026161193848],[127,99,73,6.240396499633789],[127,99,74,6.2536444664001465],[127,99,75,6.25829553604126],[127,99,76,6.259389400482178],[127,99,77,6.258517742156982],[127,99,78,6.255523681640625],[127,99,79,6.250174522399902],[127,100,64,6.182787895202637],[127,100,65,6.1897873878479],[127,100,66,6.189891338348389],[127,100,67,6.187800884246826],[127,100,68,6.18593168258667],[127,100,69,6.186098575592041],[127,100,70,6.189854145050049],[127,100,71,6.198974132537842],[127,100,72,6.218026161193848],[127,100,73,6.240396499633789],[127,100,74,6.2536444664001465],[127,100,75,6.25829553604126],[127,100,76,6.259389400482178],[127,100,77,6.258517742156982],[127,100,78,6.255523681640625],[127,100,79,6.250174522399902],[127,101,64,6.182787895202637],[127,101,65,6.1897873878479],[127,101,66,6.189891338348389],[127,101,67,6.187800884246826],[127,101,68,6.18593168258667],[127,101,69,6.186098575592041],[127,101,70,6.189854145050049],[127,101,71,6.198974132537842],[127,101,72,6.218026161193848],[127,101,73,6.240396499633789],[127,101,74,6.2536444664001465],[127,101,75,6.25829553604126],[127,101,76,6.259389400482178],[127,101,77,6.258517742156982],[127,101,78,6.255523681640625],[127,101,79,6.250174522399902],[127,102,64,6.182787895202637],[127,102,65,6.1897873878479],[127,102,66,6.189891338348389],[127,102,67,6.187800884246826],[127,102,68,6.18593168258667],[127,102,69,6.186098575592041],[127,102,70,6.189854145050049],[127,102,71,6.198974132537842],[127,102,72,6.218026161193848],[127,102,73,6.240396499633789],[127,102,74,6.2536444664001465],[127,102,75,6.25829553604126],[127,102,76,6.259389400482178],[127,102,77,6.258517742156982],[127,102,78,6.255523681640625],[127,102,79,6.250174522399902],[127,103,64,6.182787895202637],[127,103,65,6.1897873878479],[127,103,66,6.189891338348389],[127,103,67,6.187800884246826],[127,103,68,6.18593168258667],[127,103,69,6.186098575592041],[127,103,70,6.189854145050049],[127,103,71,6.198974132537842],[127,103,72,6.218026161193848],[127,103,73,6.240396499633789],[127,103,74,6.2536444664001465],[127,103,75,6.25829553604126],[127,103,76,6.259389400482178],[127,103,77,6.258517742156982],[127,103,78,6.255523681640625],[127,103,79,6.250174522399902],[127,104,64,6.182787895202637],[127,104,65,6.1897873878479],[127,104,66,6.189891338348389],[127,104,67,6.187800884246826],[127,104,68,6.18593168258667],[127,104,69,6.186098575592041],[127,104,70,6.189854145050049],[127,104,71,6.198974132537842],[127,104,72,6.218026161193848],[127,104,73,6.240396499633789],[127,104,74,6.2536444664001465],[127,104,75,6.25829553604126],[127,104,76,6.259389400482178],[127,104,77,6.258517742156982],[127,104,78,6.255523681640625],[127,104,79,6.250174522399902],[127,105,64,6.182787895202637],[127,105,65,6.1897873878479],[127,105,66,6.189891338348389],[127,105,67,6.187800884246826],[127,105,68,6.18593168258667],[127,105,69,6.186098575592041],[127,105,70,6.189854145050049],[127,105,71,6.198974132537842],[127,105,72,6.218026161193848],[127,105,73,6.240396499633789],[127,105,74,6.2536444664001465],[127,105,75,6.25829553604126],[127,105,76,6.259389400482178],[127,105,77,6.258517742156982],[127,105,78,6.255523681640625],[127,105,79,6.250174522399902],[127,106,64,6.182787895202637],[127,106,65,6.1897873878479],[127,106,66,6.189891338348389],[127,106,67,6.187800884246826],[127,106,68,6.18593168258667],[127,106,69,6.186098575592041],[127,106,70,6.189854145050049],[127,106,71,6.198974132537842],[127,106,72,6.218026161193848],[127,106,73,6.240396499633789],[127,106,74,6.2536444664001465],[127,106,75,6.25829553604126],[127,106,76,6.259389400482178],[127,106,77,6.258517742156982],[127,106,78,6.255523681640625],[127,106,79,6.250174522399902],[127,107,64,6.182787895202637],[127,107,65,6.1897873878479],[127,107,66,6.189891338348389],[127,107,67,6.187800884246826],[127,107,68,6.18593168258667],[127,107,69,6.186098575592041],[127,107,70,6.189854145050049],[127,107,71,6.198974132537842],[127,107,72,6.218026161193848],[127,107,73,6.240396499633789],[127,107,74,6.2536444664001465],[127,107,75,6.25829553604126],[127,107,76,6.259389400482178],[127,107,77,6.258517742156982],[127,107,78,6.255523681640625],[127,107,79,6.250174522399902],[127,108,64,6.182787895202637],[127,108,65,6.1897873878479],[127,108,66,6.189891338348389],[127,108,67,6.187800884246826],[127,108,68,6.18593168258667],[127,108,69,6.186098575592041],[127,108,70,6.189854145050049],[127,108,71,6.198974132537842],[127,108,72,6.218026161193848],[127,108,73,6.240396499633789],[127,108,74,6.2536444664001465],[127,108,75,6.25829553604126],[127,108,76,6.259389400482178],[127,108,77,6.258517742156982],[127,108,78,6.255523681640625],[127,108,79,6.250174522399902],[127,109,64,6.182787895202637],[127,109,65,6.1897873878479],[127,109,66,6.189891338348389],[127,109,67,6.187800884246826],[127,109,68,6.18593168258667],[127,109,69,6.186098575592041],[127,109,70,6.189854145050049],[127,109,71,6.198974132537842],[127,109,72,6.218026161193848],[127,109,73,6.240396499633789],[127,109,74,6.2536444664001465],[127,109,75,6.25829553604126],[127,109,76,6.259389400482178],[127,109,77,6.258517742156982],[127,109,78,6.255523681640625],[127,109,79,6.250174522399902],[127,110,64,6.182787895202637],[127,110,65,6.1897873878479],[127,110,66,6.189891338348389],[127,110,67,6.187800884246826],[127,110,68,6.18593168258667],[127,110,69,6.186098575592041],[127,110,70,6.189854145050049],[127,110,71,6.198974132537842],[127,110,72,6.218026161193848],[127,110,73,6.240396499633789],[127,110,74,6.2536444664001465],[127,110,75,6.25829553604126],[127,110,76,6.259389400482178],[127,110,77,6.258517742156982],[127,110,78,6.255523681640625],[127,110,79,6.250174522399902],[127,111,64,6.182787895202637],[127,111,65,6.1897873878479],[127,111,66,6.189891338348389],[127,111,67,6.187800884246826],[127,111,68,6.18593168258667],[127,111,69,6.186098575592041],[127,111,70,6.189854145050049],[127,111,71,6.198974132537842],[127,111,72,6.218026161193848],[127,111,73,6.240396499633789],[127,111,74,6.2536444664001465],[127,111,75,6.25829553604126],[127,111,76,6.259389400482178],[127,111,77,6.258517742156982],[127,111,78,6.255523681640625],[127,111,79,6.250174522399902],[127,112,64,6.182787895202637],[127,112,65,6.1897873878479],[127,112,66,6.189891338348389],[127,112,67,6.187800884246826],[127,112,68,6.18593168258667],[127,112,69,6.186098575592041],[127,112,70,6.189854145050049],[127,112,71,6.198974132537842],[127,112,72,6.218026161193848],[127,112,73,6.240396499633789],[127,112,74,6.2536444664001465],[127,112,75,6.25829553604126],[127,112,76,6.259389400482178],[127,112,77,6.258517742156982],[127,112,78,6.255523681640625],[127,112,79,6.250174522399902],[127,113,64,6.182787895202637],[127,113,65,6.1897873878479],[127,113,66,6.189891338348389],[127,113,67,6.187800884246826],[127,113,68,6.18593168258667],[127,113,69,6.186098575592041],[127,113,70,6.189854145050049],[127,113,71,6.198974132537842],[127,113,72,6.218026161193848],[127,113,73,6.240396499633789],[127,113,74,6.2536444664001465],[127,113,75,6.25829553604126],[127,113,76,6.259389400482178],[127,113,77,6.258517742156982],[127,113,78,6.255523681640625],[127,113,79,6.250174522399902],[127,114,64,6.182787895202637],[127,114,65,6.1897873878479],[127,114,66,6.189891338348389],[127,114,67,6.187800884246826],[127,114,68,6.18593168258667],[127,114,69,6.186098575592041],[127,114,70,6.189854145050049],[127,114,71,6.198974132537842],[127,114,72,6.218026161193848],[127,114,73,6.240396499633789],[127,114,74,6.2536444664001465],[127,114,75,6.25829553604126],[127,114,76,6.259389400482178],[127,114,77,6.258517742156982],[127,114,78,6.255523681640625],[127,114,79,6.250174522399902],[127,115,64,6.182787895202637],[127,115,65,6.1897873878479],[127,115,66,6.189891338348389],[127,115,67,6.187800884246826],[127,115,68,6.18593168258667],[127,115,69,6.186098575592041],[127,115,70,6.189854145050049],[127,115,71,6.198974132537842],[127,115,72,6.218026161193848],[127,115,73,6.240396499633789],[127,115,74,6.2536444664001465],[127,115,75,6.25829553604126],[127,115,76,6.259389400482178],[127,115,77,6.258517742156982],[127,115,78,6.255523681640625],[127,115,79,6.250174522399902],[127,116,64,6.182787895202637],[127,116,65,6.1897873878479],[127,116,66,6.189891338348389],[127,116,67,6.187800884246826],[127,116,68,6.18593168258667],[127,116,69,6.186098575592041],[127,116,70,6.189854145050049],[127,116,71,6.198974132537842],[127,116,72,6.218026161193848],[127,116,73,6.240396499633789],[127,116,74,6.2536444664001465],[127,116,75,6.25829553604126],[127,116,76,6.259389400482178],[127,116,77,6.258517742156982],[127,116,78,6.255523681640625],[127,116,79,6.250174522399902],[127,117,64,6.182787895202637],[127,117,65,6.1897873878479],[127,117,66,6.189891338348389],[127,117,67,6.187800884246826],[127,117,68,6.18593168258667],[127,117,69,6.186098575592041],[127,117,70,6.189854145050049],[127,117,71,6.198974132537842],[127,117,72,6.218026161193848],[127,117,73,6.240396499633789],[127,117,74,6.2536444664001465],[127,117,75,6.25829553604126],[127,117,76,6.259389400482178],[127,117,77,6.258517742156982],[127,117,78,6.255523681640625],[127,117,79,6.250174522399902],[127,118,64,6.182787895202637],[127,118,65,6.1897873878479],[127,118,66,6.189891338348389],[127,118,67,6.187800884246826],[127,118,68,6.18593168258667],[127,118,69,6.186098575592041],[127,118,70,6.189854145050049],[127,118,71,6.198974132537842],[127,118,72,6.218026161193848],[127,118,73,6.240396499633789],[127,118,74,6.2536444664001465],[127,118,75,6.25829553604126],[127,118,76,6.259389400482178],[127,118,77,6.258517742156982],[127,118,78,6.255523681640625],[127,118,79,6.250174522399902],[127,119,64,6.182787895202637],[127,119,65,6.1897873878479],[127,119,66,6.189891338348389],[127,119,67,6.187800884246826],[127,119,68,6.18593168258667],[127,119,69,6.186098575592041],[127,119,70,6.189854145050049],[127,119,71,6.198974132537842],[127,119,72,6.218026161193848],[127,119,73,6.240396499633789],[127,119,74,6.2536444664001465],[127,119,75,6.25829553604126],[127,119,76,6.259389400482178],[127,119,77,6.258517742156982],[127,119,78,6.255523681640625],[127,119,79,6.250174522399902],[127,120,64,6.182787895202637],[127,120,65,6.1897873878479],[127,120,66,6.189891338348389],[127,120,67,6.187800884246826],[127,120,68,6.18593168258667],[127,120,69,6.186098575592041],[127,120,70,6.189854145050049],[127,120,71,6.198974132537842],[127,120,72,6.218026161193848],[127,120,73,6.240396499633789],[127,120,74,6.2536444664001465],[127,120,75,6.25829553604126],[127,120,76,6.259389400482178],[127,120,77,6.258517742156982],[127,120,78,6.255523681640625],[127,120,79,6.250174522399902],[127,121,64,6.182787895202637],[127,121,65,6.1897873878479],[127,121,66,6.189891338348389],[127,121,67,6.187800884246826],[127,121,68,6.18593168258667],[127,121,69,6.186098575592041],[127,121,70,6.189854145050049],[127,121,71,6.198974132537842],[127,121,72,6.218026161193848],[127,121,73,6.240396499633789],[127,121,74,6.2536444664001465],[127,121,75,6.25829553604126],[127,121,76,6.259389400482178],[127,121,77,6.258517742156982],[127,121,78,6.255523681640625],[127,121,79,6.250174522399902],[127,122,64,6.182787895202637],[127,122,65,6.1897873878479],[127,122,66,6.189891338348389],[127,122,67,6.187800884246826],[127,122,68,6.18593168258667],[127,122,69,6.186098575592041],[127,122,70,6.189854145050049],[127,122,71,6.198974132537842],[127,122,72,6.218026161193848],[127,122,73,6.240396499633789],[127,122,74,6.2536444664001465],[127,122,75,6.25829553604126],[127,122,76,6.259389400482178],[127,122,77,6.258517742156982],[127,122,78,6.255523681640625],[127,122,79,6.250174522399902],[127,123,64,6.182787895202637],[127,123,65,6.1897873878479],[127,123,66,6.189891338348389],[127,123,67,6.187800884246826],[127,123,68,6.18593168258667],[127,123,69,6.186098575592041],[127,123,70,6.189854145050049],[127,123,71,6.198974132537842],[127,123,72,6.218026161193848],[127,123,73,6.240396499633789],[127,123,74,6.2536444664001465],[127,123,75,6.25829553604126],[127,123,76,6.259389400482178],[127,123,77,6.258517742156982],[127,123,78,6.255523681640625],[127,123,79,6.250174522399902],[127,124,64,6.182787895202637],[127,124,65,6.1897873878479],[127,124,66,6.189891338348389],[127,124,67,6.187800884246826],[127,124,68,6.18593168258667],[127,124,69,6.186098575592041],[127,124,70,6.189854145050049],[127,124,71,6.198974132537842],[127,124,72,6.218026161193848],[127,124,73,6.240396499633789],[127,124,74,6.2536444664001465],[127,124,75,6.25829553604126],[127,124,76,6.259389400482178],[127,124,77,6.258517742156982],[127,124,78,6.255523681640625],[127,124,79,6.250174522399902],[127,125,64,6.182787895202637],[127,125,65,6.1897873878479],[127,125,66,6.189891338348389],[127,125,67,6.187800884246826],[127,125,68,6.18593168258667],[127,125,69,6.186098575592041],[127,125,70,6.189854145050049],[127,125,71,6.198974132537842],[127,125,72,6.218026161193848],[127,125,73,6.240396499633789],[127,125,74,6.2536444664001465],[127,125,75,6.25829553604126],[127,125,76,6.259389400482178],[127,125,77,6.258517742156982],[127,125,78,6.255523681640625],[127,125,79,6.250174522399902],[127,126,64,6.182787895202637],[127,126,65,6.1897873878479],[127,126,66,6.189891338348389],[127,126,67,6.187800884246826],[127,126,68,6.18593168258667],[127,126,69,6.186098575592041],[127,126,70,6.189854145050049],[127,126,71,6.198974132537842],[127,126,72,6.218026161193848],[127,126,73,6.240396499633789],[127,126,74,6.2536444664001465],[127,126,75,6.25829553604126],[127,126,76,6.259389400482178],[127,126,77,6.258517742156982],[127,126,78,6.255523681640625],[127,126,79,6.250174522399902],[127,127,64,6.182787895202637],[127,127,65,6.1897873878479],[127,127,66,6.189891338348389],[127,127,67,6.187800884246826],[127,127,68,6.18593168258667],[127,127,69,6.186098575592041],[127,127,70,6.189854145050049],[127,127,71,6.198974132537842],[127,127,72,6.218026161193848],[127,127,73,6.240396499633789],[127,127,74,6.2536444664001465],[127,127,75,6.25829553604126],[127,127,76,6.259389400482178],[127,127,77,6.258517742156982],[127,127,78,6.255523681640625],[127,127,79,6.250174522399902],[127,128,64,6.182787895202637],[127,128,65,6.1897873878479],[127,128,66,6.189891338348389],[127,128,67,6.187800884246826],[127,128,68,6.18593168258667],[127,128,69,6.186098575592041],[127,128,70,6.189854145050049],[127,128,71,6.198974132537842],[127,128,72,6.218026161193848],[127,128,73,6.240396499633789],[127,128,74,6.2536444664001465],[127,128,75,6.25829553604126],[127,128,76,6.259389400482178],[127,128,77,6.258517742156982],[127,128,78,6.255523681640625],[127,128,79,6.250174522399902],[127,129,64,6.182787895202637],[127,129,65,6.1897873878479],[127,129,66,6.189891338348389],[127,129,67,6.187800884246826],[127,129,68,6.18593168258667],[127,129,69,6.186098575592041],[127,129,70,6.189854145050049],[127,129,71,6.198974132537842],[127,129,72,6.218026161193848],[127,129,73,6.240396499633789],[127,129,74,6.2536444664001465],[127,129,75,6.25829553604126],[127,129,76,6.259389400482178],[127,129,77,6.258517742156982],[127,129,78,6.255523681640625],[127,129,79,6.250174522399902],[127,130,64,6.182787895202637],[127,130,65,6.1897873878479],[127,130,66,6.189891338348389],[127,130,67,6.187800884246826],[127,130,68,6.18593168258667],[127,130,69,6.186098575592041],[127,130,70,6.189854145050049],[127,130,71,6.198974132537842],[127,130,72,6.218026161193848],[127,130,73,6.240396499633789],[127,130,74,6.2536444664001465],[127,130,75,6.25829553604126],[127,130,76,6.259389400482178],[127,130,77,6.258517742156982],[127,130,78,6.255523681640625],[127,130,79,6.250174522399902],[127,131,64,6.182787895202637],[127,131,65,6.1897873878479],[127,131,66,6.189891338348389],[127,131,67,6.187800884246826],[127,131,68,6.18593168258667],[127,131,69,6.186098575592041],[127,131,70,6.189854145050049],[127,131,71,6.198974132537842],[127,131,72,6.218026161193848],[127,131,73,6.240396499633789],[127,131,74,6.2536444664001465],[127,131,75,6.25829553604126],[127,131,76,6.259389400482178],[127,131,77,6.258517742156982],[127,131,78,6.255523681640625],[127,131,79,6.250174522399902],[127,132,64,6.182787895202637],[127,132,65,6.1897873878479],[127,132,66,6.189891338348389],[127,132,67,6.187800884246826],[127,132,68,6.18593168258667],[127,132,69,6.186098575592041],[127,132,70,6.189854145050049],[127,132,71,6.198974132537842],[127,132,72,6.218026161193848],[127,132,73,6.240396499633789],[127,132,74,6.2536444664001465],[127,132,75,6.25829553604126],[127,132,76,6.259389400482178],[127,132,77,6.258517742156982],[127,132,78,6.255523681640625],[127,132,79,6.250174522399902],[127,133,64,6.182787895202637],[127,133,65,6.1897873878479],[127,133,66,6.189891338348389],[127,133,67,6.187800884246826],[127,133,68,6.18593168258667],[127,133,69,6.186098575592041],[127,133,70,6.189854145050049],[127,133,71,6.198974132537842],[127,133,72,6.218026161193848],[127,133,73,6.240396499633789],[127,133,74,6.2536444664001465],[127,133,75,6.25829553604126],[127,133,76,6.259389400482178],[127,133,77,6.258517742156982],[127,133,78,6.255523681640625],[127,133,79,6.250174522399902],[127,134,64,6.182787895202637],[127,134,65,6.1897873878479],[127,134,66,6.189891338348389],[127,134,67,6.187800884246826],[127,134,68,6.18593168258667],[127,134,69,6.186098575592041],[127,134,70,6.189854145050049],[127,134,71,6.198974132537842],[127,134,72,6.218026161193848],[127,134,73,6.240396499633789],[127,134,74,6.2536444664001465],[127,134,75,6.25829553604126],[127,134,76,6.259389400482178],[127,134,77,6.258517742156982],[127,134,78,6.255523681640625],[127,134,79,6.250174522399902],[127,135,64,6.182787895202637],[127,135,65,6.1897873878479],[127,135,66,6.189891338348389],[127,135,67,6.187800884246826],[127,135,68,6.18593168258667],[127,135,69,6.186098575592041],[127,135,70,6.189854145050049],[127,135,71,6.198974132537842],[127,135,72,6.218026161193848],[127,135,73,6.240396499633789],[127,135,74,6.2536444664001465],[127,135,75,6.25829553604126],[127,135,76,6.259389400482178],[127,135,77,6.258517742156982],[127,135,78,6.255523681640625],[127,135,79,6.250174522399902],[127,136,64,6.182787895202637],[127,136,65,6.1897873878479],[127,136,66,6.189891338348389],[127,136,67,6.187800884246826],[127,136,68,6.18593168258667],[127,136,69,6.186098575592041],[127,136,70,6.189854145050049],[127,136,71,6.198974132537842],[127,136,72,6.218026161193848],[127,136,73,6.240396499633789],[127,136,74,6.2536444664001465],[127,136,75,6.25829553604126],[127,136,76,6.259389400482178],[127,136,77,6.258517742156982],[127,136,78,6.255523681640625],[127,136,79,6.250174522399902],[127,137,64,6.182787895202637],[127,137,65,6.1897873878479],[127,137,66,6.189891338348389],[127,137,67,6.187800884246826],[127,137,68,6.18593168258667],[127,137,69,6.186098575592041],[127,137,70,6.189854145050049],[127,137,71,6.198974132537842],[127,137,72,6.218026161193848],[127,137,73,6.240396499633789],[127,137,74,6.2536444664001465],[127,137,75,6.25829553604126],[127,137,76,6.259389400482178],[127,137,77,6.258517742156982],[127,137,78,6.255523681640625],[127,137,79,6.250174522399902],[127,138,64,6.182787895202637],[127,138,65,6.1897873878479],[127,138,66,6.189891338348389],[127,138,67,6.187800884246826],[127,138,68,6.18593168258667],[127,138,69,6.186098575592041],[127,138,70,6.189854145050049],[127,138,71,6.198974132537842],[127,138,72,6.218026161193848],[127,138,73,6.240396499633789],[127,138,74,6.2536444664001465],[127,138,75,6.25829553604126],[127,138,76,6.259389400482178],[127,138,77,6.258517742156982],[127,138,78,6.255523681640625],[127,138,79,6.250174522399902],[127,139,64,6.182787895202637],[127,139,65,6.1897873878479],[127,139,66,6.189891338348389],[127,139,67,6.187800884246826],[127,139,68,6.18593168258667],[127,139,69,6.186098575592041],[127,139,70,6.189854145050049],[127,139,71,6.198974132537842],[127,139,72,6.218026161193848],[127,139,73,6.240396499633789],[127,139,74,6.2536444664001465],[127,139,75,6.25829553604126],[127,139,76,6.259389400482178],[127,139,77,6.258517742156982],[127,139,78,6.255523681640625],[127,139,79,6.250174522399902],[127,140,64,6.182787895202637],[127,140,65,6.1897873878479],[127,140,66,6.189891338348389],[127,140,67,6.187800884246826],[127,140,68,6.18593168258667],[127,140,69,6.186098575592041],[127,140,70,6.189854145050049],[127,140,71,6.198974132537842],[127,140,72,6.218026161193848],[127,140,73,6.240396499633789],[127,140,74,6.2536444664001465],[127,140,75,6.25829553604126],[127,140,76,6.259389400482178],[127,140,77,6.258517742156982],[127,140,78,6.255523681640625],[127,140,79,6.250174522399902],[127,141,64,6.182787895202637],[127,141,65,6.1897873878479],[127,141,66,6.189891338348389],[127,141,67,6.187800884246826],[127,141,68,6.18593168258667],[127,141,69,6.186098575592041],[127,141,70,6.189854145050049],[127,141,71,6.198974132537842],[127,141,72,6.218026161193848],[127,141,73,6.240396499633789],[127,141,74,6.2536444664001465],[127,141,75,6.25829553604126],[127,141,76,6.259389400482178],[127,141,77,6.258517742156982],[127,141,78,6.255523681640625],[127,141,79,6.250174522399902],[127,142,64,6.182787895202637],[127,142,65,6.1897873878479],[127,142,66,6.189891338348389],[127,142,67,6.187800884246826],[127,142,68,6.18593168258667],[127,142,69,6.186098575592041],[127,142,70,6.189854145050049],[127,142,71,6.198974132537842],[127,142,72,6.218026161193848],[127,142,73,6.240396499633789],[127,142,74,6.2536444664001465],[127,142,75,6.25829553604126],[127,142,76,6.259389400482178],[127,142,77,6.258517742156982],[127,142,78,6.255523681640625],[127,142,79,6.250174522399902],[127,143,64,6.182787895202637],[127,143,65,6.1897873878479],[127,143,66,6.189891338348389],[127,143,67,6.187800884246826],[127,143,68,6.18593168258667],[127,143,69,6.186098575592041],[127,143,70,6.189854145050049],[127,143,71,6.198974132537842],[127,143,72,6.218026161193848],[127,143,73,6.240396499633789],[127,143,74,6.2536444664001465],[127,143,75,6.25829553604126],[127,143,76,6.259389400482178],[127,143,77,6.258517742156982],[127,143,78,6.255523681640625],[127,143,79,6.250174522399902],[127,144,64,6.182787895202637],[127,144,65,6.1897873878479],[127,144,66,6.189891338348389],[127,144,67,6.187800884246826],[127,144,68,6.18593168258667],[127,144,69,6.186098575592041],[127,144,70,6.189854145050049],[127,144,71,6.198974132537842],[127,144,72,6.218026161193848],[127,144,73,6.240396499633789],[127,144,74,6.2536444664001465],[127,144,75,6.25829553604126],[127,144,76,6.259389400482178],[127,144,77,6.258517742156982],[127,144,78,6.255523681640625],[127,144,79,6.250174522399902],[127,145,64,6.182787895202637],[127,145,65,6.1897873878479],[127,145,66,6.189891338348389],[127,145,67,6.187800884246826],[127,145,68,6.18593168258667],[127,145,69,6.186098575592041],[127,145,70,6.189854145050049],[127,145,71,6.198974132537842],[127,145,72,6.218026161193848],[127,145,73,6.240396499633789],[127,145,74,6.2536444664001465],[127,145,75,6.25829553604126],[127,145,76,6.259389400482178],[127,145,77,6.258517742156982],[127,145,78,6.255523681640625],[127,145,79,6.250174522399902],[127,146,64,6.182787895202637],[127,146,65,6.1897873878479],[127,146,66,6.189891338348389],[127,146,67,6.187800884246826],[127,146,68,6.18593168258667],[127,146,69,6.186098575592041],[127,146,70,6.189854145050049],[127,146,71,6.198974132537842],[127,146,72,6.218026161193848],[127,146,73,6.240396499633789],[127,146,74,6.2536444664001465],[127,146,75,6.25829553604126],[127,146,76,6.259389400482178],[127,146,77,6.258517742156982],[127,146,78,6.255523681640625],[127,146,79,6.250174522399902],[127,147,64,6.182787895202637],[127,147,65,6.1897873878479],[127,147,66,6.189891338348389],[127,147,67,6.187800884246826],[127,147,68,6.18593168258667],[127,147,69,6.186098575592041],[127,147,70,6.189854145050049],[127,147,71,6.198974132537842],[127,147,72,6.218026161193848],[127,147,73,6.240396499633789],[127,147,74,6.2536444664001465],[127,147,75,6.25829553604126],[127,147,76,6.259389400482178],[127,147,77,6.258517742156982],[127,147,78,6.255523681640625],[127,147,79,6.250174522399902],[127,148,64,6.182787895202637],[127,148,65,6.1897873878479],[127,148,66,6.189891338348389],[127,148,67,6.187800884246826],[127,148,68,6.18593168258667],[127,148,69,6.186098575592041],[127,148,70,6.189854145050049],[127,148,71,6.198974132537842],[127,148,72,6.218026161193848],[127,148,73,6.240396499633789],[127,148,74,6.2536444664001465],[127,148,75,6.25829553604126],[127,148,76,6.259389400482178],[127,148,77,6.258517742156982],[127,148,78,6.255523681640625],[127,148,79,6.250174522399902],[127,149,64,6.182787895202637],[127,149,65,6.1897873878479],[127,149,66,6.189891338348389],[127,149,67,6.187800884246826],[127,149,68,6.18593168258667],[127,149,69,6.186098575592041],[127,149,70,6.189854145050049],[127,149,71,6.198974132537842],[127,149,72,6.218026161193848],[127,149,73,6.240396499633789],[127,149,74,6.2536444664001465],[127,149,75,6.25829553604126],[127,149,76,6.259389400482178],[127,149,77,6.258517742156982],[127,149,78,6.255523681640625],[127,149,79,6.250174522399902],[127,150,64,6.182787895202637],[127,150,65,6.1897873878479],[127,150,66,6.189891338348389],[127,150,67,6.187800884246826],[127,150,68,6.18593168258667],[127,150,69,6.186098575592041],[127,150,70,6.189854145050049],[127,150,71,6.198974132537842],[127,150,72,6.218026161193848],[127,150,73,6.240396499633789],[127,150,74,6.2536444664001465],[127,150,75,6.25829553604126],[127,150,76,6.259389400482178],[127,150,77,6.258517742156982],[127,150,78,6.255523681640625],[127,150,79,6.250174522399902],[127,151,64,6.182787895202637],[127,151,65,6.1897873878479],[127,151,66,6.189891338348389],[127,151,67,6.187800884246826],[127,151,68,6.18593168258667],[127,151,69,6.186098575592041],[127,151,70,6.189854145050049],[127,151,71,6.198974132537842],[127,151,72,6.218026161193848],[127,151,73,6.240396499633789],[127,151,74,6.2536444664001465],[127,151,75,6.25829553604126],[127,151,76,6.259389400482178],[127,151,77,6.258517742156982],[127,151,78,6.255523681640625],[127,151,79,6.250174522399902],[127,152,64,6.182787895202637],[127,152,65,6.1897873878479],[127,152,66,6.189891338348389],[127,152,67,6.187800884246826],[127,152,68,6.18593168258667],[127,152,69,6.186098575592041],[127,152,70,6.189854145050049],[127,152,71,6.198974132537842],[127,152,72,6.218026161193848],[127,152,73,6.240396499633789],[127,152,74,6.2536444664001465],[127,152,75,6.25829553604126],[127,152,76,6.259389400482178],[127,152,77,6.258517742156982],[127,152,78,6.255523681640625],[127,152,79,6.250174522399902],[127,153,64,6.182787895202637],[127,153,65,6.1897873878479],[127,153,66,6.189891338348389],[127,153,67,6.187800884246826],[127,153,68,6.18593168258667],[127,153,69,6.186098575592041],[127,153,70,6.189854145050049],[127,153,71,6.198974132537842],[127,153,72,6.218026161193848],[127,153,73,6.240396499633789],[127,153,74,6.2536444664001465],[127,153,75,6.25829553604126],[127,153,76,6.259389400482178],[127,153,77,6.258517742156982],[127,153,78,6.255523681640625],[127,153,79,6.250174522399902],[127,154,64,6.182787895202637],[127,154,65,6.1897873878479],[127,154,66,6.189891338348389],[127,154,67,6.187800884246826],[127,154,68,6.18593168258667],[127,154,69,6.186098575592041],[127,154,70,6.189854145050049],[127,154,71,6.198974132537842],[127,154,72,6.218026161193848],[127,154,73,6.240396499633789],[127,154,74,6.2536444664001465],[127,154,75,6.25829553604126],[127,154,76,6.259389400482178],[127,154,77,6.258517742156982],[127,154,78,6.255523681640625],[127,154,79,6.250174522399902],[127,155,64,6.182787895202637],[127,155,65,6.1897873878479],[127,155,66,6.189891338348389],[127,155,67,6.187800884246826],[127,155,68,6.18593168258667],[127,155,69,6.186098575592041],[127,155,70,6.189854145050049],[127,155,71,6.198974132537842],[127,155,72,6.218026161193848],[127,155,73,6.240396499633789],[127,155,74,6.2536444664001465],[127,155,75,6.25829553604126],[127,155,76,6.259389400482178],[127,155,77,6.258517742156982],[127,155,78,6.255523681640625],[127,155,79,6.250174522399902],[127,156,64,6.182787895202637],[127,156,65,6.1897873878479],[127,156,66,6.189891338348389],[127,156,67,6.187800884246826],[127,156,68,6.18593168258667],[127,156,69,6.186098575592041],[127,156,70,6.189854145050049],[127,156,71,6.198974132537842],[127,156,72,6.218026161193848],[127,156,73,6.240396499633789],[127,156,74,6.2536444664001465],[127,156,75,6.25829553604126],[127,156,76,6.259389400482178],[127,156,77,6.258517742156982],[127,156,78,6.255523681640625],[127,156,79,6.250174522399902],[127,157,64,6.182787895202637],[127,157,65,6.1897873878479],[127,157,66,6.189891338348389],[127,157,67,6.187800884246826],[127,157,68,6.18593168258667],[127,157,69,6.186098575592041],[127,157,70,6.189854145050049],[127,157,71,6.198974132537842],[127,157,72,6.218026161193848],[127,157,73,6.240396499633789],[127,157,74,6.2536444664001465],[127,157,75,6.25829553604126],[127,157,76,6.259389400482178],[127,157,77,6.258517742156982],[127,157,78,6.255523681640625],[127,157,79,6.250174522399902],[127,158,64,6.182787895202637],[127,158,65,6.1897873878479],[127,158,66,6.189891338348389],[127,158,67,6.187800884246826],[127,158,68,6.18593168258667],[127,158,69,6.186098575592041],[127,158,70,6.189854145050049],[127,158,71,6.198974132537842],[127,158,72,6.218026161193848],[127,158,73,6.240396499633789],[127,158,74,6.2536444664001465],[127,158,75,6.25829553604126],[127,158,76,6.259389400482178],[127,158,77,6.258517742156982],[127,158,78,6.255523681640625],[127,158,79,6.250174522399902],[127,159,64,6.182787895202637],[127,159,65,6.1897873878479],[127,159,66,6.189891338348389],[127,159,67,6.187800884246826],[127,159,68,6.18593168258667],[127,159,69,6.186098575592041],[127,159,70,6.189854145050049],[127,159,71,6.198974132537842],[127,159,72,6.218026161193848],[127,159,73,6.240396499633789],[127,159,74,6.2536444664001465],[127,159,75,6.25829553604126],[127,159,76,6.259389400482178],[127,159,77,6.258517742156982],[127,159,78,6.255523681640625],[127,159,79,6.250174522399902],[127,160,64,6.182787895202637],[127,160,65,6.1897873878479],[127,160,66,6.189891338348389],[127,160,67,6.187800884246826],[127,160,68,6.18593168258667],[127,160,69,6.186098575592041],[127,160,70,6.189854145050049],[127,160,71,6.198974132537842],[127,160,72,6.218026161193848],[127,160,73,6.240396499633789],[127,160,74,6.2536444664001465],[127,160,75,6.25829553604126],[127,160,76,6.259389400482178],[127,160,77,6.258517742156982],[127,160,78,6.255523681640625],[127,160,79,6.250174522399902],[127,161,64,6.182787895202637],[127,161,65,6.1897873878479],[127,161,66,6.189891338348389],[127,161,67,6.187800884246826],[127,161,68,6.18593168258667],[127,161,69,6.186098575592041],[127,161,70,6.189854145050049],[127,161,71,6.198974132537842],[127,161,72,6.218026161193848],[127,161,73,6.240396499633789],[127,161,74,6.2536444664001465],[127,161,75,6.25829553604126],[127,161,76,6.259389400482178],[127,161,77,6.258517742156982],[127,161,78,6.255523681640625],[127,161,79,6.250174522399902],[127,162,64,6.182787895202637],[127,162,65,6.1897873878479],[127,162,66,6.189891338348389],[127,162,67,6.187800884246826],[127,162,68,6.18593168258667],[127,162,69,6.186098575592041],[127,162,70,6.189854145050049],[127,162,71,6.198974132537842],[127,162,72,6.218026161193848],[127,162,73,6.240396499633789],[127,162,74,6.2536444664001465],[127,162,75,6.25829553604126],[127,162,76,6.259389400482178],[127,162,77,6.258517742156982],[127,162,78,6.255523681640625],[127,162,79,6.250174522399902],[127,163,64,6.182787895202637],[127,163,65,6.1897873878479],[127,163,66,6.189891338348389],[127,163,67,6.187800884246826],[127,163,68,6.18593168258667],[127,163,69,6.186098575592041],[127,163,70,6.189854145050049],[127,163,71,6.198974132537842],[127,163,72,6.218026161193848],[127,163,73,6.240396499633789],[127,163,74,6.2536444664001465],[127,163,75,6.25829553604126],[127,163,76,6.259389400482178],[127,163,77,6.258517742156982],[127,163,78,6.255523681640625],[127,163,79,6.250174522399902],[127,164,64,6.182787895202637],[127,164,65,6.1897873878479],[127,164,66,6.189891338348389],[127,164,67,6.187800884246826],[127,164,68,6.18593168258667],[127,164,69,6.186098575592041],[127,164,70,6.189854145050049],[127,164,71,6.198974132537842],[127,164,72,6.218026161193848],[127,164,73,6.240396499633789],[127,164,74,6.2536444664001465],[127,164,75,6.25829553604126],[127,164,76,6.259389400482178],[127,164,77,6.258517742156982],[127,164,78,6.255523681640625],[127,164,79,6.250174522399902],[127,165,64,6.182787895202637],[127,165,65,6.1897873878479],[127,165,66,6.189891338348389],[127,165,67,6.187800884246826],[127,165,68,6.18593168258667],[127,165,69,6.186098575592041],[127,165,70,6.189854145050049],[127,165,71,6.198974132537842],[127,165,72,6.218026161193848],[127,165,73,6.240396499633789],[127,165,74,6.2536444664001465],[127,165,75,6.25829553604126],[127,165,76,6.259389400482178],[127,165,77,6.258517742156982],[127,165,78,6.255523681640625],[127,165,79,6.250174522399902],[127,166,64,6.182787895202637],[127,166,65,6.1897873878479],[127,166,66,6.189891338348389],[127,166,67,6.187800884246826],[127,166,68,6.18593168258667],[127,166,69,6.186098575592041],[127,166,70,6.189854145050049],[127,166,71,6.198974132537842],[127,166,72,6.218026161193848],[127,166,73,6.240396499633789],[127,166,74,6.2536444664001465],[127,166,75,6.25829553604126],[127,166,76,6.259389400482178],[127,166,77,6.258517742156982],[127,166,78,6.255523681640625],[127,166,79,6.250174522399902],[127,167,64,6.182787895202637],[127,167,65,6.1897873878479],[127,167,66,6.189891338348389],[127,167,67,6.187800884246826],[127,167,68,6.18593168258667],[127,167,69,6.186098575592041],[127,167,70,6.189854145050049],[127,167,71,6.198974132537842],[127,167,72,6.218026161193848],[127,167,73,6.240396499633789],[127,167,74,6.2536444664001465],[127,167,75,6.25829553604126],[127,167,76,6.259389400482178],[127,167,77,6.258517742156982],[127,167,78,6.255523681640625],[127,167,79,6.250174522399902],[127,168,64,6.182787895202637],[127,168,65,6.1897873878479],[127,168,66,6.189891338348389],[127,168,67,6.187800884246826],[127,168,68,6.18593168258667],[127,168,69,6.186098575592041],[127,168,70,6.189854145050049],[127,168,71,6.198974132537842],[127,168,72,6.218026161193848],[127,168,73,6.240396499633789],[127,168,74,6.2536444664001465],[127,168,75,6.25829553604126],[127,168,76,6.259389400482178],[127,168,77,6.258517742156982],[127,168,78,6.255523681640625],[127,168,79,6.250174522399902],[127,169,64,6.182787895202637],[127,169,65,6.1897873878479],[127,169,66,6.189891338348389],[127,169,67,6.187800884246826],[127,169,68,6.18593168258667],[127,169,69,6.186098575592041],[127,169,70,6.189854145050049],[127,169,71,6.198974132537842],[127,169,72,6.218026161193848],[127,169,73,6.240396499633789],[127,169,74,6.2536444664001465],[127,169,75,6.25829553604126],[127,169,76,6.259389400482178],[127,169,77,6.258517742156982],[127,169,78,6.255523681640625],[127,169,79,6.250174522399902],[127,170,64,6.182787895202637],[127,170,65,6.1897873878479],[127,170,66,6.189891338348389],[127,170,67,6.187800884246826],[127,170,68,6.18593168258667],[127,170,69,6.186098575592041],[127,170,70,6.189854145050049],[127,170,71,6.198974132537842],[127,170,72,6.218026161193848],[127,170,73,6.240396499633789],[127,170,74,6.2536444664001465],[127,170,75,6.25829553604126],[127,170,76,6.259389400482178],[127,170,77,6.258517742156982],[127,170,78,6.255523681640625],[127,170,79,6.250174522399902],[127,171,64,6.182787895202637],[127,171,65,6.1897873878479],[127,171,66,6.189891338348389],[127,171,67,6.187800884246826],[127,171,68,6.18593168258667],[127,171,69,6.186098575592041],[127,171,70,6.189854145050049],[127,171,71,6.198974132537842],[127,171,72,6.218026161193848],[127,171,73,6.240396499633789],[127,171,74,6.2536444664001465],[127,171,75,6.25829553604126],[127,171,76,6.259389400482178],[127,171,77,6.258517742156982],[127,171,78,6.255523681640625],[127,171,79,6.250174522399902],[127,172,64,6.182787895202637],[127,172,65,6.1897873878479],[127,172,66,6.189891338348389],[127,172,67,6.187800884246826],[127,172,68,6.18593168258667],[127,172,69,6.186098575592041],[127,172,70,6.189854145050049],[127,172,71,6.198974132537842],[127,172,72,6.218026161193848],[127,172,73,6.240396499633789],[127,172,74,6.2536444664001465],[127,172,75,6.25829553604126],[127,172,76,6.259389400482178],[127,172,77,6.258517742156982],[127,172,78,6.255523681640625],[127,172,79,6.250174522399902],[127,173,64,6.182787895202637],[127,173,65,6.1897873878479],[127,173,66,6.189891338348389],[127,173,67,6.187800884246826],[127,173,68,6.18593168258667],[127,173,69,6.186098575592041],[127,173,70,6.189854145050049],[127,173,71,6.198974132537842],[127,173,72,6.218026161193848],[127,173,73,6.240396499633789],[127,173,74,6.2536444664001465],[127,173,75,6.25829553604126],[127,173,76,6.259389400482178],[127,173,77,6.258517742156982],[127,173,78,6.255523681640625],[127,173,79,6.250174522399902],[127,174,64,6.182787895202637],[127,174,65,6.1897873878479],[127,174,66,6.189891338348389],[127,174,67,6.187800884246826],[127,174,68,6.18593168258667],[127,174,69,6.186098575592041],[127,174,70,6.189854145050049],[127,174,71,6.198974132537842],[127,174,72,6.218026161193848],[127,174,73,6.240396499633789],[127,174,74,6.2536444664001465],[127,174,75,6.25829553604126],[127,174,76,6.259389400482178],[127,174,77,6.258517742156982],[127,174,78,6.255523681640625],[127,174,79,6.250174522399902],[127,175,64,6.182787895202637],[127,175,65,6.1897873878479],[127,175,66,6.189891338348389],[127,175,67,6.187800884246826],[127,175,68,6.18593168258667],[127,175,69,6.186098575592041],[127,175,70,6.189854145050049],[127,175,71,6.198974132537842],[127,175,72,6.218026161193848],[127,175,73,6.240396499633789],[127,175,74,6.2536444664001465],[127,175,75,6.25829553604126],[127,175,76,6.259389400482178],[127,175,77,6.258517742156982],[127,175,78,6.255523681640625],[127,175,79,6.250174522399902],[127,176,64,6.182787895202637],[127,176,65,6.1897873878479],[127,176,66,6.189891338348389],[127,176,67,6.187800884246826],[127,176,68,6.18593168258667],[127,176,69,6.186098575592041],[127,176,70,6.189854145050049],[127,176,71,6.198974132537842],[127,176,72,6.218026161193848],[127,176,73,6.240396499633789],[127,176,74,6.2536444664001465],[127,176,75,6.25829553604126],[127,176,76,6.259389400482178],[127,176,77,6.258517742156982],[127,176,78,6.255523681640625],[127,176,79,6.250174522399902],[127,177,64,6.182787895202637],[127,177,65,6.1897873878479],[127,177,66,6.189891338348389],[127,177,67,6.187800884246826],[127,177,68,6.18593168258667],[127,177,69,6.186098575592041],[127,177,70,6.189854145050049],[127,177,71,6.198974132537842],[127,177,72,6.218026161193848],[127,177,73,6.240396499633789],[127,177,74,6.2536444664001465],[127,177,75,6.25829553604126],[127,177,76,6.259389400482178],[127,177,77,6.258517742156982],[127,177,78,6.255523681640625],[127,177,79,6.250174522399902],[127,178,64,6.182787895202637],[127,178,65,6.1897873878479],[127,178,66,6.189891338348389],[127,178,67,6.187800884246826],[127,178,68,6.18593168258667],[127,178,69,6.186098575592041],[127,178,70,6.189854145050049],[127,178,71,6.198974132537842],[127,178,72,6.218026161193848],[127,178,73,6.240396499633789],[127,178,74,6.2536444664001465],[127,178,75,6.25829553604126],[127,178,76,6.259389400482178],[127,178,77,6.258517742156982],[127,178,78,6.255523681640625],[127,178,79,6.250174522399902],[127,179,64,6.182787895202637],[127,179,65,6.1897873878479],[127,179,66,6.189891338348389],[127,179,67,6.187800884246826],[127,179,68,6.18593168258667],[127,179,69,6.186098575592041],[127,179,70,6.189854145050049],[127,179,71,6.198974132537842],[127,179,72,6.218026161193848],[127,179,73,6.240396499633789],[127,179,74,6.2536444664001465],[127,179,75,6.25829553604126],[127,179,76,6.259389400482178],[127,179,77,6.258517742156982],[127,179,78,6.255523681640625],[127,179,79,6.250174522399902],[127,180,64,6.182787895202637],[127,180,65,6.1897873878479],[127,180,66,6.189891338348389],[127,180,67,6.187800884246826],[127,180,68,6.18593168258667],[127,180,69,6.186098575592041],[127,180,70,6.189854145050049],[127,180,71,6.198974132537842],[127,180,72,6.218026161193848],[127,180,73,6.240396499633789],[127,180,74,6.2536444664001465],[127,180,75,6.25829553604126],[127,180,76,6.259389400482178],[127,180,77,6.258517742156982],[127,180,78,6.255523681640625],[127,180,79,6.250174522399902],[127,181,64,6.182787895202637],[127,181,65,6.1897873878479],[127,181,66,6.189891338348389],[127,181,67,6.187800884246826],[127,181,68,6.18593168258667],[127,181,69,6.186098575592041],[127,181,70,6.189854145050049],[127,181,71,6.198974132537842],[127,181,72,6.218026161193848],[127,181,73,6.240396499633789],[127,181,74,6.2536444664001465],[127,181,75,6.25829553604126],[127,181,76,6.259389400482178],[127,181,77,6.258517742156982],[127,181,78,6.255523681640625],[127,181,79,6.250174522399902],[127,182,64,6.182787895202637],[127,182,65,6.1897873878479],[127,182,66,6.189891338348389],[127,182,67,6.187800884246826],[127,182,68,6.18593168258667],[127,182,69,6.186098575592041],[127,182,70,6.189854145050049],[127,182,71,6.198974132537842],[127,182,72,6.218026161193848],[127,182,73,6.240396499633789],[127,182,74,6.2536444664001465],[127,182,75,6.25829553604126],[127,182,76,6.259389400482178],[127,182,77,6.258517742156982],[127,182,78,6.255523681640625],[127,182,79,6.250174522399902],[127,183,64,6.182787895202637],[127,183,65,6.1897873878479],[127,183,66,6.189891338348389],[127,183,67,6.187800884246826],[127,183,68,6.18593168258667],[127,183,69,6.186098575592041],[127,183,70,6.189854145050049],[127,183,71,6.198974132537842],[127,183,72,6.218026161193848],[127,183,73,6.240396499633789],[127,183,74,6.2536444664001465],[127,183,75,6.25829553604126],[127,183,76,6.259389400482178],[127,183,77,6.258517742156982],[127,183,78,6.255523681640625],[127,183,79,6.250174522399902],[127,184,64,6.182787895202637],[127,184,65,6.1897873878479],[127,184,66,6.189891338348389],[127,184,67,6.187800884246826],[127,184,68,6.18593168258667],[127,184,69,6.186098575592041],[127,184,70,6.189854145050049],[127,184,71,6.198974132537842],[127,184,72,6.218026161193848],[127,184,73,6.240396499633789],[127,184,74,6.2536444664001465],[127,184,75,6.25829553604126],[127,184,76,6.259389400482178],[127,184,77,6.258517742156982],[127,184,78,6.255523681640625],[127,184,79,6.250174522399902],[127,185,64,6.182787895202637],[127,185,65,6.1897873878479],[127,185,66,6.189891338348389],[127,185,67,6.187800884246826],[127,185,68,6.18593168258667],[127,185,69,6.186098575592041],[127,185,70,6.189854145050049],[127,185,71,6.198974132537842],[127,185,72,6.218026161193848],[127,185,73,6.240396499633789],[127,185,74,6.2536444664001465],[127,185,75,6.25829553604126],[127,185,76,6.259389400482178],[127,185,77,6.258517742156982],[127,185,78,6.255523681640625],[127,185,79,6.250174522399902],[127,186,64,6.182787895202637],[127,186,65,6.1897873878479],[127,186,66,6.189891338348389],[127,186,67,6.187800884246826],[127,186,68,6.18593168258667],[127,186,69,6.186098575592041],[127,186,70,6.189854145050049],[127,186,71,6.198974132537842],[127,186,72,6.218026161193848],[127,186,73,6.240396499633789],[127,186,74,6.2536444664001465],[127,186,75,6.25829553604126],[127,186,76,6.259389400482178],[127,186,77,6.258517742156982],[127,186,78,6.255523681640625],[127,186,79,6.250174522399902],[127,187,64,6.182787895202637],[127,187,65,6.1897873878479],[127,187,66,6.189891338348389],[127,187,67,6.187800884246826],[127,187,68,6.18593168258667],[127,187,69,6.186098575592041],[127,187,70,6.189854145050049],[127,187,71,6.198974132537842],[127,187,72,6.218026161193848],[127,187,73,6.240396499633789],[127,187,74,6.2536444664001465],[127,187,75,6.25829553604126],[127,187,76,6.259389400482178],[127,187,77,6.258517742156982],[127,187,78,6.255523681640625],[127,187,79,6.250174522399902],[127,188,64,6.182787895202637],[127,188,65,6.1897873878479],[127,188,66,6.189891338348389],[127,188,67,6.187800884246826],[127,188,68,6.18593168258667],[127,188,69,6.186098575592041],[127,188,70,6.189854145050049],[127,188,71,6.198974132537842],[127,188,72,6.218026161193848],[127,188,73,6.240396499633789],[127,188,74,6.2536444664001465],[127,188,75,6.25829553604126],[127,188,76,6.259389400482178],[127,188,77,6.258517742156982],[127,188,78,6.255523681640625],[127,188,79,6.250174522399902],[127,189,64,6.182787895202637],[127,189,65,6.1897873878479],[127,189,66,6.189891338348389],[127,189,67,6.187800884246826],[127,189,68,6.18593168258667],[127,189,69,6.186098575592041],[127,189,70,6.189854145050049],[127,189,71,6.198974132537842],[127,189,72,6.218026161193848],[127,189,73,6.240396499633789],[127,189,74,6.2536444664001465],[127,189,75,6.25829553604126],[127,189,76,6.259389400482178],[127,189,77,6.258517742156982],[127,189,78,6.255523681640625],[127,189,79,6.250174522399902],[127,190,64,6.182787895202637],[127,190,65,6.1897873878479],[127,190,66,6.189891338348389],[127,190,67,6.187800884246826],[127,190,68,6.18593168258667],[127,190,69,6.186098575592041],[127,190,70,6.189854145050049],[127,190,71,6.198974132537842],[127,190,72,6.218026161193848],[127,190,73,6.240396499633789],[127,190,74,6.2536444664001465],[127,190,75,6.25829553604126],[127,190,76,6.259389400482178],[127,190,77,6.258517742156982],[127,190,78,6.255523681640625],[127,190,79,6.250174522399902],[127,191,64,6.182787895202637],[127,191,65,6.1897873878479],[127,191,66,6.189891338348389],[127,191,67,6.187800884246826],[127,191,68,6.18593168258667],[127,191,69,6.186098575592041],[127,191,70,6.189854145050049],[127,191,71,6.198974132537842],[127,191,72,6.218026161193848],[127,191,73,6.240396499633789],[127,191,74,6.2536444664001465],[127,191,75,6.25829553604126],[127,191,76,6.259389400482178],[127,191,77,6.258517742156982],[127,191,78,6.255523681640625],[127,191,79,6.250174522399902],[127,192,64,6.182787895202637],[127,192,65,6.1897873878479],[127,192,66,6.189891338348389],[127,192,67,6.187800884246826],[127,192,68,6.18593168258667],[127,192,69,6.186098575592041],[127,192,70,6.189854145050049],[127,192,71,6.198974132537842],[127,192,72,6.218026161193848],[127,192,73,6.240396499633789],[127,192,74,6.2536444664001465],[127,192,75,6.25829553604126],[127,192,76,6.259389400482178],[127,192,77,6.258517742156982],[127,192,78,6.255523681640625],[127,192,79,6.250174522399902],[127,193,64,6.182787895202637],[127,193,65,6.1897873878479],[127,193,66,6.189891338348389],[127,193,67,6.187800884246826],[127,193,68,6.18593168258667],[127,193,69,6.186098575592041],[127,193,70,6.189854145050049],[127,193,71,6.198974132537842],[127,193,72,6.218026161193848],[127,193,73,6.240396499633789],[127,193,74,6.2536444664001465],[127,193,75,6.25829553604126],[127,193,76,6.259389400482178],[127,193,77,6.258517742156982],[127,193,78,6.255523681640625],[127,193,79,6.250174522399902],[127,194,64,6.182787895202637],[127,194,65,6.1897873878479],[127,194,66,6.189891338348389],[127,194,67,6.187800884246826],[127,194,68,6.18593168258667],[127,194,69,6.186098575592041],[127,194,70,6.189854145050049],[127,194,71,6.198974132537842],[127,194,72,6.218026161193848],[127,194,73,6.240396499633789],[127,194,74,6.2536444664001465],[127,194,75,6.25829553604126],[127,194,76,6.259389400482178],[127,194,77,6.258517742156982],[127,194,78,6.255523681640625],[127,194,79,6.250174522399902],[127,195,64,6.182787895202637],[127,195,65,6.1897873878479],[127,195,66,6.189891338348389],[127,195,67,6.187800884246826],[127,195,68,6.18593168258667],[127,195,69,6.186098575592041],[127,195,70,6.189854145050049],[127,195,71,6.198974132537842],[127,195,72,6.218026161193848],[127,195,73,6.240396499633789],[127,195,74,6.2536444664001465],[127,195,75,6.25829553604126],[127,195,76,6.259389400482178],[127,195,77,6.258517742156982],[127,195,78,6.255523681640625],[127,195,79,6.250174522399902],[127,196,64,6.182787895202637],[127,196,65,6.1897873878479],[127,196,66,6.189891338348389],[127,196,67,6.187800884246826],[127,196,68,6.18593168258667],[127,196,69,6.186098575592041],[127,196,70,6.189854145050049],[127,196,71,6.198974132537842],[127,196,72,6.218026161193848],[127,196,73,6.240396499633789],[127,196,74,6.2536444664001465],[127,196,75,6.25829553604126],[127,196,76,6.259389400482178],[127,196,77,6.258517742156982],[127,196,78,6.255523681640625],[127,196,79,6.250174522399902],[127,197,64,6.182787895202637],[127,197,65,6.1897873878479],[127,197,66,6.189891338348389],[127,197,67,6.187800884246826],[127,197,68,6.18593168258667],[127,197,69,6.186098575592041],[127,197,70,6.189854145050049],[127,197,71,6.198974132537842],[127,197,72,6.218026161193848],[127,197,73,6.240396499633789],[127,197,74,6.2536444664001465],[127,197,75,6.25829553604126],[127,197,76,6.259389400482178],[127,197,77,6.258517742156982],[127,197,78,6.255523681640625],[127,197,79,6.250174522399902],[127,198,64,6.182787895202637],[127,198,65,6.1897873878479],[127,198,66,6.189891338348389],[127,198,67,6.187800884246826],[127,198,68,6.18593168258667],[127,198,69,6.186098575592041],[127,198,70,6.189854145050049],[127,198,71,6.198974132537842],[127,198,72,6.218026161193848],[127,198,73,6.240396499633789],[127,198,74,6.2536444664001465],[127,198,75,6.25829553604126],[127,198,76,6.259389400482178],[127,198,77,6.258517742156982],[127,198,78,6.255523681640625],[127,198,79,6.250174522399902],[127,199,64,6.182787895202637],[127,199,65,6.1897873878479],[127,199,66,6.189891338348389],[127,199,67,6.187800884246826],[127,199,68,6.18593168258667],[127,199,69,6.186098575592041],[127,199,70,6.189854145050049],[127,199,71,6.198974132537842],[127,199,72,6.218026161193848],[127,199,73,6.240396499633789],[127,199,74,6.2536444664001465],[127,199,75,6.25829553604126],[127,199,76,6.259389400482178],[127,199,77,6.258517742156982],[127,199,78,6.255523681640625],[127,199,79,6.250174522399902],[127,200,64,6.182787895202637],[127,200,65,6.1897873878479],[127,200,66,6.189891338348389],[127,200,67,6.187800884246826],[127,200,68,6.18593168258667],[127,200,69,6.186098575592041],[127,200,70,6.189854145050049],[127,200,71,6.198974132537842],[127,200,72,6.218026161193848],[127,200,73,6.240396499633789],[127,200,74,6.2536444664001465],[127,200,75,6.25829553604126],[127,200,76,6.259389400482178],[127,200,77,6.258517742156982],[127,200,78,6.255523681640625],[127,200,79,6.250174522399902],[127,201,64,6.182787895202637],[127,201,65,6.1897873878479],[127,201,66,6.189891338348389],[127,201,67,6.187800884246826],[127,201,68,6.18593168258667],[127,201,69,6.186098575592041],[127,201,70,6.189854145050049],[127,201,71,6.198974132537842],[127,201,72,6.218026161193848],[127,201,73,6.240396499633789],[127,201,74,6.2536444664001465],[127,201,75,6.25829553604126],[127,201,76,6.259389400482178],[127,201,77,6.258517742156982],[127,201,78,6.255523681640625],[127,201,79,6.250174522399902],[127,202,64,6.182787895202637],[127,202,65,6.1897873878479],[127,202,66,6.189891338348389],[127,202,67,6.187800884246826],[127,202,68,6.18593168258667],[127,202,69,6.186098575592041],[127,202,70,6.189854145050049],[127,202,71,6.198974132537842],[127,202,72,6.218026161193848],[127,202,73,6.240396499633789],[127,202,74,6.2536444664001465],[127,202,75,6.25829553604126],[127,202,76,6.259389400482178],[127,202,77,6.258517742156982],[127,202,78,6.255523681640625],[127,202,79,6.250174522399902],[127,203,64,6.182787895202637],[127,203,65,6.1897873878479],[127,203,66,6.189891338348389],[127,203,67,6.187800884246826],[127,203,68,6.18593168258667],[127,203,69,6.186098575592041],[127,203,70,6.189854145050049],[127,203,71,6.198974132537842],[127,203,72,6.218026161193848],[127,203,73,6.240396499633789],[127,203,74,6.2536444664001465],[127,203,75,6.25829553604126],[127,203,76,6.259389400482178],[127,203,77,6.258517742156982],[127,203,78,6.255523681640625],[127,203,79,6.250174522399902],[127,204,64,6.182787895202637],[127,204,65,6.1897873878479],[127,204,66,6.189891338348389],[127,204,67,6.187800884246826],[127,204,68,6.18593168258667],[127,204,69,6.186098575592041],[127,204,70,6.189854145050049],[127,204,71,6.198974132537842],[127,204,72,6.218026161193848],[127,204,73,6.240396499633789],[127,204,74,6.2536444664001465],[127,204,75,6.25829553604126],[127,204,76,6.259389400482178],[127,204,77,6.258517742156982],[127,204,78,6.255523681640625],[127,204,79,6.250174522399902],[127,205,64,6.182787895202637],[127,205,65,6.1897873878479],[127,205,66,6.189891338348389],[127,205,67,6.187800884246826],[127,205,68,6.18593168258667],[127,205,69,6.186098575592041],[127,205,70,6.189854145050049],[127,205,71,6.198974132537842],[127,205,72,6.218026161193848],[127,205,73,6.240396499633789],[127,205,74,6.2536444664001465],[127,205,75,6.25829553604126],[127,205,76,6.259389400482178],[127,205,77,6.258517742156982],[127,205,78,6.255523681640625],[127,205,79,6.250174522399902],[127,206,64,6.182787895202637],[127,206,65,6.1897873878479],[127,206,66,6.189891338348389],[127,206,67,6.187800884246826],[127,206,68,6.18593168258667],[127,206,69,6.186098575592041],[127,206,70,6.189854145050049],[127,206,71,6.198974132537842],[127,206,72,6.218026161193848],[127,206,73,6.240396499633789],[127,206,74,6.2536444664001465],[127,206,75,6.25829553604126],[127,206,76,6.259389400482178],[127,206,77,6.258517742156982],[127,206,78,6.255523681640625],[127,206,79,6.250174522399902],[127,207,64,6.182787895202637],[127,207,65,6.1897873878479],[127,207,66,6.189891338348389],[127,207,67,6.187800884246826],[127,207,68,6.18593168258667],[127,207,69,6.186098575592041],[127,207,70,6.189854145050049],[127,207,71,6.198974132537842],[127,207,72,6.218026161193848],[127,207,73,6.240396499633789],[127,207,74,6.2536444664001465],[127,207,75,6.25829553604126],[127,207,76,6.259389400482178],[127,207,77,6.258517742156982],[127,207,78,6.255523681640625],[127,207,79,6.250174522399902],[127,208,64,6.182787895202637],[127,208,65,6.1897873878479],[127,208,66,6.189891338348389],[127,208,67,6.187800884246826],[127,208,68,6.18593168258667],[127,208,69,6.186098575592041],[127,208,70,6.189854145050049],[127,208,71,6.198974132537842],[127,208,72,6.218026161193848],[127,208,73,6.240396499633789],[127,208,74,6.2536444664001465],[127,208,75,6.25829553604126],[127,208,76,6.259389400482178],[127,208,77,6.258517742156982],[127,208,78,6.255523681640625],[127,208,79,6.250174522399902],[127,209,64,6.182787895202637],[127,209,65,6.1897873878479],[127,209,66,6.189891338348389],[127,209,67,6.187800884246826],[127,209,68,6.18593168258667],[127,209,69,6.186098575592041],[127,209,70,6.189854145050049],[127,209,71,6.198974132537842],[127,209,72,6.218026161193848],[127,209,73,6.240396499633789],[127,209,74,6.2536444664001465],[127,209,75,6.25829553604126],[127,209,76,6.259389400482178],[127,209,77,6.258517742156982],[127,209,78,6.255523681640625],[127,209,79,6.250174522399902],[127,210,64,6.182787895202637],[127,210,65,6.1897873878479],[127,210,66,6.189891338348389],[127,210,67,6.187800884246826],[127,210,68,6.18593168258667],[127,210,69,6.186098575592041],[127,210,70,6.189854145050049],[127,210,71,6.198974132537842],[127,210,72,6.218026161193848],[127,210,73,6.240396499633789],[127,210,74,6.2536444664001465],[127,210,75,6.25829553604126],[127,210,76,6.259389400482178],[127,210,77,6.258517742156982],[127,210,78,6.255523681640625],[127,210,79,6.250174522399902],[127,211,64,6.182787895202637],[127,211,65,6.1897873878479],[127,211,66,6.189891338348389],[127,211,67,6.187800884246826],[127,211,68,6.18593168258667],[127,211,69,6.186098575592041],[127,211,70,6.189854145050049],[127,211,71,6.198974132537842],[127,211,72,6.218026161193848],[127,211,73,6.240396499633789],[127,211,74,6.2536444664001465],[127,211,75,6.25829553604126],[127,211,76,6.259389400482178],[127,211,77,6.258517742156982],[127,211,78,6.255523681640625],[127,211,79,6.250174522399902],[127,212,64,6.182787895202637],[127,212,65,6.1897873878479],[127,212,66,6.189891338348389],[127,212,67,6.187800884246826],[127,212,68,6.18593168258667],[127,212,69,6.186098575592041],[127,212,70,6.189854145050049],[127,212,71,6.198974132537842],[127,212,72,6.218026161193848],[127,212,73,6.240396499633789],[127,212,74,6.2536444664001465],[127,212,75,6.25829553604126],[127,212,76,6.259389400482178],[127,212,77,6.258517742156982],[127,212,78,6.255523681640625],[127,212,79,6.250174522399902],[127,213,64,6.182787895202637],[127,213,65,6.1897873878479],[127,213,66,6.189891338348389],[127,213,67,6.187800884246826],[127,213,68,6.18593168258667],[127,213,69,6.186098575592041],[127,213,70,6.189854145050049],[127,213,71,6.198974132537842],[127,213,72,6.218026161193848],[127,213,73,6.240396499633789],[127,213,74,6.2536444664001465],[127,213,75,6.25829553604126],[127,213,76,6.259389400482178],[127,213,77,6.258517742156982],[127,213,78,6.255523681640625],[127,213,79,6.250174522399902],[127,214,64,6.182787895202637],[127,214,65,6.1897873878479],[127,214,66,6.189891338348389],[127,214,67,6.187800884246826],[127,214,68,6.18593168258667],[127,214,69,6.186098575592041],[127,214,70,6.189854145050049],[127,214,71,6.198974132537842],[127,214,72,6.218026161193848],[127,214,73,6.240396499633789],[127,214,74,6.2536444664001465],[127,214,75,6.25829553604126],[127,214,76,6.259389400482178],[127,214,77,6.258517742156982],[127,214,78,6.255523681640625],[127,214,79,6.250174522399902],[127,215,64,6.182787895202637],[127,215,65,6.1897873878479],[127,215,66,6.189891338348389],[127,215,67,6.187800884246826],[127,215,68,6.18593168258667],[127,215,69,6.186098575592041],[127,215,70,6.189854145050049],[127,215,71,6.198974132537842],[127,215,72,6.218026161193848],[127,215,73,6.240396499633789],[127,215,74,6.2536444664001465],[127,215,75,6.25829553604126],[127,215,76,6.259389400482178],[127,215,77,6.258517742156982],[127,215,78,6.255523681640625],[127,215,79,6.250174522399902],[127,216,64,6.182787895202637],[127,216,65,6.1897873878479],[127,216,66,6.189891338348389],[127,216,67,6.187800884246826],[127,216,68,6.18593168258667],[127,216,69,6.186098575592041],[127,216,70,6.189854145050049],[127,216,71,6.198974132537842],[127,216,72,6.218026161193848],[127,216,73,6.240396499633789],[127,216,74,6.2536444664001465],[127,216,75,6.25829553604126],[127,216,76,6.259389400482178],[127,216,77,6.258517742156982],[127,216,78,6.255523681640625],[127,216,79,6.250174522399902],[127,217,64,6.182787895202637],[127,217,65,6.1897873878479],[127,217,66,6.189891338348389],[127,217,67,6.187800884246826],[127,217,68,6.18593168258667],[127,217,69,6.186098575592041],[127,217,70,6.189854145050049],[127,217,71,6.198974132537842],[127,217,72,6.218026161193848],[127,217,73,6.240396499633789],[127,217,74,6.2536444664001465],[127,217,75,6.25829553604126],[127,217,76,6.259389400482178],[127,217,77,6.258517742156982],[127,217,78,6.255523681640625],[127,217,79,6.250174522399902],[127,218,64,6.182787895202637],[127,218,65,6.1897873878479],[127,218,66,6.189891338348389],[127,218,67,6.187800884246826],[127,218,68,6.18593168258667],[127,218,69,6.186098575592041],[127,218,70,6.189854145050049],[127,218,71,6.198974132537842],[127,218,72,6.218026161193848],[127,218,73,6.240396499633789],[127,218,74,6.2536444664001465],[127,218,75,6.25829553604126],[127,218,76,6.259389400482178],[127,218,77,6.258517742156982],[127,218,78,6.255523681640625],[127,218,79,6.250174522399902],[127,219,64,6.182787895202637],[127,219,65,6.1897873878479],[127,219,66,6.189891338348389],[127,219,67,6.187800884246826],[127,219,68,6.18593168258667],[127,219,69,6.186098575592041],[127,219,70,6.189854145050049],[127,219,71,6.198974132537842],[127,219,72,6.218026161193848],[127,219,73,6.240396499633789],[127,219,74,6.2536444664001465],[127,219,75,6.25829553604126],[127,219,76,6.259389400482178],[127,219,77,6.258517742156982],[127,219,78,6.255523681640625],[127,219,79,6.250174522399902],[127,220,64,6.182787895202637],[127,220,65,6.1897873878479],[127,220,66,6.189891338348389],[127,220,67,6.187800884246826],[127,220,68,6.18593168258667],[127,220,69,6.186098575592041],[127,220,70,6.189854145050049],[127,220,71,6.198974132537842],[127,220,72,6.218026161193848],[127,220,73,6.240396499633789],[127,220,74,6.2536444664001465],[127,220,75,6.25829553604126],[127,220,76,6.259389400482178],[127,220,77,6.258517742156982],[127,220,78,6.255523681640625],[127,220,79,6.250174522399902],[127,221,64,6.182787895202637],[127,221,65,6.1897873878479],[127,221,66,6.189891338348389],[127,221,67,6.187800884246826],[127,221,68,6.18593168258667],[127,221,69,6.186098575592041],[127,221,70,6.189854145050049],[127,221,71,6.198974132537842],[127,221,72,6.218026161193848],[127,221,73,6.240396499633789],[127,221,74,6.2536444664001465],[127,221,75,6.25829553604126],[127,221,76,6.259389400482178],[127,221,77,6.258517742156982],[127,221,78,6.255523681640625],[127,221,79,6.250174522399902],[127,222,64,6.182787895202637],[127,222,65,6.1897873878479],[127,222,66,6.189891338348389],[127,222,67,6.187800884246826],[127,222,68,6.18593168258667],[127,222,69,6.186098575592041],[127,222,70,6.189854145050049],[127,222,71,6.198974132537842],[127,222,72,6.218026161193848],[127,222,73,6.240396499633789],[127,222,74,6.2536444664001465],[127,222,75,6.25829553604126],[127,222,76,6.259389400482178],[127,222,77,6.258517742156982],[127,222,78,6.255523681640625],[127,222,79,6.250174522399902],[127,223,64,6.182787895202637],[127,223,65,6.1897873878479],[127,223,66,6.189891338348389],[127,223,67,6.187800884246826],[127,223,68,6.18593168258667],[127,223,69,6.186098575592041],[127,223,70,6.189854145050049],[127,223,71,6.198974132537842],[127,223,72,6.218026161193848],[127,223,73,6.240396499633789],[127,223,74,6.2536444664001465],[127,223,75,6.25829553604126],[127,223,76,6.259389400482178],[127,223,77,6.258517742156982],[127,223,78,6.255523681640625],[127,223,79,6.250174522399902],[127,224,64,6.182787895202637],[127,224,65,6.1897873878479],[127,224,66,6.189891338348389],[127,224,67,6.187800884246826],[127,224,68,6.18593168258667],[127,224,69,6.186098575592041],[127,224,70,6.189854145050049],[127,224,71,6.198974132537842],[127,224,72,6.218026161193848],[127,224,73,6.240396499633789],[127,224,74,6.2536444664001465],[127,224,75,6.25829553604126],[127,224,76,6.259389400482178],[127,224,77,6.258517742156982],[127,224,78,6.255523681640625],[127,224,79,6.250174522399902],[127,225,64,6.182787895202637],[127,225,65,6.1897873878479],[127,225,66,6.189891338348389],[127,225,67,6.187800884246826],[127,225,68,6.18593168258667],[127,225,69,6.186098575592041],[127,225,70,6.189854145050049],[127,225,71,6.198974132537842],[127,225,72,6.218026161193848],[127,225,73,6.240396499633789],[127,225,74,6.2536444664001465],[127,225,75,6.25829553604126],[127,225,76,6.259389400482178],[127,225,77,6.258517742156982],[127,225,78,6.255523681640625],[127,225,79,6.250174522399902],[127,226,64,6.182787895202637],[127,226,65,6.1897873878479],[127,226,66,6.189891338348389],[127,226,67,6.187800884246826],[127,226,68,6.18593168258667],[127,226,69,6.186098575592041],[127,226,70,6.189854145050049],[127,226,71,6.198974132537842],[127,226,72,6.218026161193848],[127,226,73,6.240396499633789],[127,226,74,6.2536444664001465],[127,226,75,6.25829553604126],[127,226,76,6.259389400482178],[127,226,77,6.258517742156982],[127,226,78,6.255523681640625],[127,226,79,6.250174522399902],[127,227,64,6.182787895202637],[127,227,65,6.1897873878479],[127,227,66,6.189891338348389],[127,227,67,6.187800884246826],[127,227,68,6.18593168258667],[127,227,69,6.186098575592041],[127,227,70,6.189854145050049],[127,227,71,6.198974132537842],[127,227,72,6.218026161193848],[127,227,73,6.240396499633789],[127,227,74,6.2536444664001465],[127,227,75,6.25829553604126],[127,227,76,6.259389400482178],[127,227,77,6.258517742156982],[127,227,78,6.255523681640625],[127,227,79,6.250174522399902],[127,228,64,6.182787895202637],[127,228,65,6.1897873878479],[127,228,66,6.189891338348389],[127,228,67,6.187800884246826],[127,228,68,6.18593168258667],[127,228,69,6.186098575592041],[127,228,70,6.189854145050049],[127,228,71,6.198974132537842],[127,228,72,6.218026161193848],[127,228,73,6.240396499633789],[127,228,74,6.2536444664001465],[127,228,75,6.25829553604126],[127,228,76,6.259389400482178],[127,228,77,6.258517742156982],[127,228,78,6.255523681640625],[127,228,79,6.250174522399902],[127,229,64,6.182787895202637],[127,229,65,6.1897873878479],[127,229,66,6.189891338348389],[127,229,67,6.187800884246826],[127,229,68,6.18593168258667],[127,229,69,6.186098575592041],[127,229,70,6.189854145050049],[127,229,71,6.198974132537842],[127,229,72,6.218026161193848],[127,229,73,6.240396499633789],[127,229,74,6.2536444664001465],[127,229,75,6.25829553604126],[127,229,76,6.259389400482178],[127,229,77,6.258517742156982],[127,229,78,6.255523681640625],[127,229,79,6.250174522399902],[127,230,64,6.182787895202637],[127,230,65,6.1897873878479],[127,230,66,6.189891338348389],[127,230,67,6.187800884246826],[127,230,68,6.18593168258667],[127,230,69,6.186098575592041],[127,230,70,6.189854145050049],[127,230,71,6.198974132537842],[127,230,72,6.218026161193848],[127,230,73,6.240396499633789],[127,230,74,6.2536444664001465],[127,230,75,6.25829553604126],[127,230,76,6.259389400482178],[127,230,77,6.258517742156982],[127,230,78,6.255523681640625],[127,230,79,6.250174522399902],[127,231,64,6.182787895202637],[127,231,65,6.1897873878479],[127,231,66,6.189891338348389],[127,231,67,6.187800884246826],[127,231,68,6.18593168258667],[127,231,69,6.186098575592041],[127,231,70,6.189854145050049],[127,231,71,6.198974132537842],[127,231,72,6.218026161193848],[127,231,73,6.240396499633789],[127,231,74,6.2536444664001465],[127,231,75,6.25829553604126],[127,231,76,6.259389400482178],[127,231,77,6.258517742156982],[127,231,78,6.255523681640625],[127,231,79,6.250174522399902],[127,232,64,6.182787895202637],[127,232,65,6.1897873878479],[127,232,66,6.189891338348389],[127,232,67,6.187800884246826],[127,232,68,6.18593168258667],[127,232,69,6.186098575592041],[127,232,70,6.189854145050049],[127,232,71,6.198974132537842],[127,232,72,6.218026161193848],[127,232,73,6.240396499633789],[127,232,74,6.2536444664001465],[127,232,75,6.25829553604126],[127,232,76,6.259389400482178],[127,232,77,6.258517742156982],[127,232,78,6.255523681640625],[127,232,79,6.250174522399902],[127,233,64,6.182787895202637],[127,233,65,6.1897873878479],[127,233,66,6.189891338348389],[127,233,67,6.187800884246826],[127,233,68,6.18593168258667],[127,233,69,6.186098575592041],[127,233,70,6.189854145050049],[127,233,71,6.198974132537842],[127,233,72,6.218026161193848],[127,233,73,6.240396499633789],[127,233,74,6.2536444664001465],[127,233,75,6.25829553604126],[127,233,76,6.259389400482178],[127,233,77,6.258517742156982],[127,233,78,6.255523681640625],[127,233,79,6.250174522399902],[127,234,64,6.182787895202637],[127,234,65,6.1897873878479],[127,234,66,6.189891338348389],[127,234,67,6.187800884246826],[127,234,68,6.18593168258667],[127,234,69,6.186098575592041],[127,234,70,6.189854145050049],[127,234,71,6.198974132537842],[127,234,72,6.218026161193848],[127,234,73,6.240396499633789],[127,234,74,6.2536444664001465],[127,234,75,6.25829553604126],[127,234,76,6.259389400482178],[127,234,77,6.258517742156982],[127,234,78,6.255523681640625],[127,234,79,6.250174522399902],[127,235,64,6.182787895202637],[127,235,65,6.1897873878479],[127,235,66,6.189891338348389],[127,235,67,6.187800884246826],[127,235,68,6.18593168258667],[127,235,69,6.186098575592041],[127,235,70,6.189854145050049],[127,235,71,6.198974132537842],[127,235,72,6.218026161193848],[127,235,73,6.240396499633789],[127,235,74,6.2536444664001465],[127,235,75,6.25829553604126],[127,235,76,6.259389400482178],[127,235,77,6.258517742156982],[127,235,78,6.255523681640625],[127,235,79,6.250174522399902],[127,236,64,6.182787895202637],[127,236,65,6.1897873878479],[127,236,66,6.189891338348389],[127,236,67,6.187800884246826],[127,236,68,6.18593168258667],[127,236,69,6.186098575592041],[127,236,70,6.189854145050049],[127,236,71,6.198974132537842],[127,236,72,6.218026161193848],[127,236,73,6.240396499633789],[127,236,74,6.2536444664001465],[127,236,75,6.25829553604126],[127,236,76,6.259389400482178],[127,236,77,6.258517742156982],[127,236,78,6.255523681640625],[127,236,79,6.250174522399902],[127,237,64,6.182787895202637],[127,237,65,6.1897873878479],[127,237,66,6.189891338348389],[127,237,67,6.187800884246826],[127,237,68,6.18593168258667],[127,237,69,6.186098575592041],[127,237,70,6.189854145050049],[127,237,71,6.198974132537842],[127,237,72,6.218026161193848],[127,237,73,6.240396499633789],[127,237,74,6.2536444664001465],[127,237,75,6.25829553604126],[127,237,76,6.259389400482178],[127,237,77,6.258517742156982],[127,237,78,6.255523681640625],[127,237,79,6.250174522399902],[127,238,64,6.182787895202637],[127,238,65,6.1897873878479],[127,238,66,6.189891338348389],[127,238,67,6.187800884246826],[127,238,68,6.18593168258667],[127,238,69,6.186098575592041],[127,238,70,6.189854145050049],[127,238,71,6.198974132537842],[127,238,72,6.218026161193848],[127,238,73,6.240396499633789],[127,238,74,6.2536444664001465],[127,238,75,6.25829553604126],[127,238,76,6.259389400482178],[127,238,77,6.258517742156982],[127,238,78,6.255523681640625],[127,238,79,6.250174522399902],[127,239,64,6.182787895202637],[127,239,65,6.1897873878479],[127,239,66,6.189891338348389],[127,239,67,6.187800884246826],[127,239,68,6.18593168258667],[127,239,69,6.186098575592041],[127,239,70,6.189854145050049],[127,239,71,6.198974132537842],[127,239,72,6.218026161193848],[127,239,73,6.240396499633789],[127,239,74,6.2536444664001465],[127,239,75,6.25829553604126],[127,239,76,6.259389400482178],[127,239,77,6.258517742156982],[127,239,78,6.255523681640625],[127,239,79,6.250174522399902],[127,240,64,6.182787895202637],[127,240,65,6.1897873878479],[127,240,66,6.189891338348389],[127,240,67,6.187800884246826],[127,240,68,6.18593168258667],[127,240,69,6.186098575592041],[127,240,70,6.189854145050049],[127,240,71,6.198974132537842],[127,240,72,6.218026161193848],[127,240,73,6.240396499633789],[127,240,74,6.2536444664001465],[127,240,75,6.25829553604126],[127,240,76,6.259389400482178],[127,240,77,6.258517742156982],[127,240,78,6.255523681640625],[127,240,79,6.250174522399902],[127,241,64,6.182787895202637],[127,241,65,6.1897873878479],[127,241,66,6.189891338348389],[127,241,67,6.187800884246826],[127,241,68,6.18593168258667],[127,241,69,6.186098575592041],[127,241,70,6.189854145050049],[127,241,71,6.198974132537842],[127,241,72,6.218026161193848],[127,241,73,6.240396499633789],[127,241,74,6.2536444664001465],[127,241,75,6.25829553604126],[127,241,76,6.259389400482178],[127,241,77,6.258517742156982],[127,241,78,6.255523681640625],[127,241,79,6.250174522399902],[127,242,64,6.182787895202637],[127,242,65,6.1897873878479],[127,242,66,6.189891338348389],[127,242,67,6.187800884246826],[127,242,68,6.18593168258667],[127,242,69,6.186098575592041],[127,242,70,6.189854145050049],[127,242,71,6.198974132537842],[127,242,72,6.218026161193848],[127,242,73,6.240396499633789],[127,242,74,6.2536444664001465],[127,242,75,6.25829553604126],[127,242,76,6.259389400482178],[127,242,77,6.258517742156982],[127,242,78,6.255523681640625],[127,242,79,6.250174522399902],[127,243,64,6.182787895202637],[127,243,65,6.1897873878479],[127,243,66,6.189891338348389],[127,243,67,6.187800884246826],[127,243,68,6.18593168258667],[127,243,69,6.186098575592041],[127,243,70,6.189854145050049],[127,243,71,6.198974132537842],[127,243,72,6.218026161193848],[127,243,73,6.240396499633789],[127,243,74,6.2536444664001465],[127,243,75,6.25829553604126],[127,243,76,6.259389400482178],[127,243,77,6.258517742156982],[127,243,78,6.255523681640625],[127,243,79,6.250174522399902],[127,244,64,6.182787895202637],[127,244,65,6.1897873878479],[127,244,66,6.189891338348389],[127,244,67,6.187800884246826],[127,244,68,6.18593168258667],[127,244,69,6.186098575592041],[127,244,70,6.189854145050049],[127,244,71,6.198974132537842],[127,244,72,6.218026161193848],[127,244,73,6.240396499633789],[127,244,74,6.2536444664001465],[127,244,75,6.25829553604126],[127,244,76,6.259389400482178],[127,244,77,6.258517742156982],[127,244,78,6.255523681640625],[127,244,79,6.250174522399902],[127,245,64,6.182787895202637],[127,245,65,6.1897873878479],[127,245,66,6.189891338348389],[127,245,67,6.187800884246826],[127,245,68,6.18593168258667],[127,245,69,6.186098575592041],[127,245,70,6.189854145050049],[127,245,71,6.198974132537842],[127,245,72,6.218026161193848],[127,245,73,6.240396499633789],[127,245,74,6.2536444664001465],[127,245,75,6.25829553604126],[127,245,76,6.259389400482178],[127,245,77,6.258517742156982],[127,245,78,6.255523681640625],[127,245,79,6.250174522399902],[127,246,64,6.182787895202637],[127,246,65,6.1897873878479],[127,246,66,6.189891338348389],[127,246,67,6.187800884246826],[127,246,68,6.18593168258667],[127,246,69,6.186098575592041],[127,246,70,6.189854145050049],[127,246,71,6.198974132537842],[127,246,72,6.218026161193848],[127,246,73,6.240396499633789],[127,246,74,6.2536444664001465],[127,246,75,6.25829553604126],[127,246,76,6.259389400482178],[127,246,77,6.258517742156982],[127,246,78,6.255523681640625],[127,246,79,6.250174522399902],[127,247,64,6.182787895202637],[127,247,65,6.1897873878479],[127,247,66,6.189891338348389],[127,247,67,6.187800884246826],[127,247,68,6.18593168258667],[127,247,69,6.186098575592041],[127,247,70,6.189854145050049],[127,247,71,6.198974132537842],[127,247,72,6.218026161193848],[127,247,73,6.240396499633789],[127,247,74,6.2536444664001465],[127,247,75,6.25829553604126],[127,247,76,6.259389400482178],[127,247,77,6.258517742156982],[127,247,78,6.255523681640625],[127,247,79,6.250174522399902],[127,248,64,6.182787895202637],[127,248,65,6.1897873878479],[127,248,66,6.189891338348389],[127,248,67,6.187800884246826],[127,248,68,6.18593168258667],[127,248,69,6.186098575592041],[127,248,70,6.189854145050049],[127,248,71,6.198974132537842],[127,248,72,6.218026161193848],[127,248,73,6.240396499633789],[127,248,74,6.2536444664001465],[127,248,75,6.25829553604126],[127,248,76,6.259389400482178],[127,248,77,6.258517742156982],[127,248,78,6.255523681640625],[127,248,79,6.250174522399902],[127,249,64,6.182787895202637],[127,249,65,6.1897873878479],[127,249,66,6.189891338348389],[127,249,67,6.187800884246826],[127,249,68,6.18593168258667],[127,249,69,6.186098575592041],[127,249,70,6.189854145050049],[127,249,71,6.198974132537842],[127,249,72,6.218026161193848],[127,249,73,6.240396499633789],[127,249,74,6.2536444664001465],[127,249,75,6.25829553604126],[127,249,76,6.259389400482178],[127,249,77,6.258517742156982],[127,249,78,6.255523681640625],[127,249,79,6.250174522399902],[127,250,64,6.182787895202637],[127,250,65,6.1897873878479],[127,250,66,6.189891338348389],[127,250,67,6.187800884246826],[127,250,68,6.18593168258667],[127,250,69,6.186098575592041],[127,250,70,6.189854145050049],[127,250,71,6.198974132537842],[127,250,72,6.218026161193848],[127,250,73,6.240396499633789],[127,250,74,6.2536444664001465],[127,250,75,6.25829553604126],[127,250,76,6.259389400482178],[127,250,77,6.258517742156982],[127,250,78,6.255523681640625],[127,250,79,6.250174522399902],[127,251,64,6.182787895202637],[127,251,65,6.1897873878479],[127,251,66,6.189891338348389],[127,251,67,6.187800884246826],[127,251,68,6.18593168258667],[127,251,69,6.186098575592041],[127,251,70,6.189854145050049],[127,251,71,6.198974132537842],[127,251,72,6.218026161193848],[127,251,73,6.240396499633789],[127,251,74,6.2536444664001465],[127,251,75,6.25829553604126],[127,251,76,6.259389400482178],[127,251,77,6.258517742156982],[127,251,78,6.255523681640625],[127,251,79,6.250174522399902],[127,252,64,6.182787895202637],[127,252,65,6.1897873878479],[127,252,66,6.189891338348389],[127,252,67,6.187800884246826],[127,252,68,6.18593168258667],[127,252,69,6.186098575592041],[127,252,70,6.189854145050049],[127,252,71,6.198974132537842],[127,252,72,6.218026161193848],[127,252,73,6.240396499633789],[127,252,74,6.2536444664001465],[127,252,75,6.25829553604126],[127,252,76,6.259389400482178],[127,252,77,6.258517742156982],[127,252,78,6.255523681640625],[127,252,79,6.250174522399902],[127,253,64,6.182787895202637],[127,253,65,6.1897873878479],[127,253,66,6.189891338348389],[127,253,67,6.187800884246826],[127,253,68,6.18593168258667],[127,253,69,6.186098575592041],[127,253,70,6.189854145050049],[127,253,71,6.198974132537842],[127,253,72,6.218026161193848],[127,253,73,6.240396499633789],[127,253,74,6.2536444664001465],[127,253,75,6.25829553604126],[127,253,76,6.259389400482178],[127,253,77,6.258517742156982],[127,253,78,6.255523681640625],[127,253,79,6.250174522399902],[127,254,64,6.182787895202637],[127,254,65,6.1897873878479],[127,254,66,6.189891338348389],[127,254,67,6.187800884246826],[127,254,68,6.18593168258667],[127,254,69,6.186098575592041],[127,254,70,6.189854145050049],[127,254,71,6.198974132537842],[127,254,72,6.218026161193848],[127,254,73,6.240396499633789],[127,254,74,6.2536444664001465],[127,254,75,6.25829553604126],[127,254,76,6.259389400482178],[127,254,77,6.258517742156982],[127,254,78,6.255523681640625],[127,254,79,6.250174522399902],[127,255,64,6.182787895202637],[127,255,65,6.1897873878479],[127,255,66,6.189891338348389],[127,255,67,6.187800884246826],[127,255,68,6.18593168258667],[127,255,69,6.186098575592041],[127,255,70,6.189854145050049],[127,255,71,6.198974132537842],[127,255,72,6.218026161193848],[127,255,73,6.240396499633789],[127,255,74,6.2536444664001465],[127,255,75,6.25829553604126],[127,255,76,6.259389400482178],[127,255,77,6.258517742156982],[127,255,78,6.255523681640625],[127,255,79,6.250174522399902],[127,256,64,6.182787895202637],[127,256,65,6.1897873878479],[127,256,66,6.189891338348389],[127,256,67,6.187800884246826],[127,256,68,6.18593168258667],[127,256,69,6.186098575592041],[127,256,70,6.189854145050049],[127,256,71,6.198974132537842],[127,256,72,6.218026161193848],[127,256,73,6.240396499633789],[127,256,74,6.2536444664001465],[127,256,75,6.25829553604126],[127,256,76,6.259389400482178],[127,256,77,6.258517742156982],[127,256,78,6.255523681640625],[127,256,79,6.250174522399902],[127,257,64,6.182787895202637],[127,257,65,6.1897873878479],[127,257,66,6.189891338348389],[127,257,67,6.187800884246826],[127,257,68,6.18593168258667],[127,257,69,6.186098575592041],[127,257,70,6.189854145050049],[127,257,71,6.198974132537842],[127,257,72,6.218026161193848],[127,257,73,6.240396499633789],[127,257,74,6.2536444664001465],[127,257,75,6.25829553604126],[127,257,76,6.259389400482178],[127,257,77,6.258517742156982],[127,257,78,6.255523681640625],[127,257,79,6.250174522399902],[127,258,64,6.182787895202637],[127,258,65,6.1897873878479],[127,258,66,6.189891338348389],[127,258,67,6.187800884246826],[127,258,68,6.18593168258667],[127,258,69,6.186098575592041],[127,258,70,6.189854145050049],[127,258,71,6.198974132537842],[127,258,72,6.218026161193848],[127,258,73,6.240396499633789],[127,258,74,6.2536444664001465],[127,258,75,6.25829553604126],[127,258,76,6.259389400482178],[127,258,77,6.258517742156982],[127,258,78,6.255523681640625],[127,258,79,6.250174522399902],[127,259,64,6.182787895202637],[127,259,65,6.1897873878479],[127,259,66,6.189891338348389],[127,259,67,6.187800884246826],[127,259,68,6.18593168258667],[127,259,69,6.186098575592041],[127,259,70,6.189854145050049],[127,259,71,6.198974132537842],[127,259,72,6.218026161193848],[127,259,73,6.240396499633789],[127,259,74,6.2536444664001465],[127,259,75,6.25829553604126],[127,259,76,6.259389400482178],[127,259,77,6.258517742156982],[127,259,78,6.255523681640625],[127,259,79,6.250174522399902],[127,260,64,6.182787895202637],[127,260,65,6.1897873878479],[127,260,66,6.189891338348389],[127,260,67,6.187800884246826],[127,260,68,6.18593168258667],[127,260,69,6.186098575592041],[127,260,70,6.189854145050049],[127,260,71,6.198974132537842],[127,260,72,6.218026161193848],[127,260,73,6.240396499633789],[127,260,74,6.2536444664001465],[127,260,75,6.25829553604126],[127,260,76,6.259389400482178],[127,260,77,6.258517742156982],[127,260,78,6.255523681640625],[127,260,79,6.250174522399902],[127,261,64,6.182787895202637],[127,261,65,6.1897873878479],[127,261,66,6.189891338348389],[127,261,67,6.187800884246826],[127,261,68,6.18593168258667],[127,261,69,6.186098575592041],[127,261,70,6.189854145050049],[127,261,71,6.198974132537842],[127,261,72,6.218026161193848],[127,261,73,6.240396499633789],[127,261,74,6.2536444664001465],[127,261,75,6.25829553604126],[127,261,76,6.259389400482178],[127,261,77,6.258517742156982],[127,261,78,6.255523681640625],[127,261,79,6.250174522399902],[127,262,64,6.182787895202637],[127,262,65,6.1897873878479],[127,262,66,6.189891338348389],[127,262,67,6.187800884246826],[127,262,68,6.18593168258667],[127,262,69,6.186098575592041],[127,262,70,6.189854145050049],[127,262,71,6.198974132537842],[127,262,72,6.218026161193848],[127,262,73,6.240396499633789],[127,262,74,6.2536444664001465],[127,262,75,6.25829553604126],[127,262,76,6.259389400482178],[127,262,77,6.258517742156982],[127,262,78,6.255523681640625],[127,262,79,6.250174522399902],[127,263,64,6.182787895202637],[127,263,65,6.1897873878479],[127,263,66,6.189891338348389],[127,263,67,6.187800884246826],[127,263,68,6.18593168258667],[127,263,69,6.186098575592041],[127,263,70,6.189854145050049],[127,263,71,6.198974132537842],[127,263,72,6.218026161193848],[127,263,73,6.240396499633789],[127,263,74,6.2536444664001465],[127,263,75,6.25829553604126],[127,263,76,6.259389400482178],[127,263,77,6.258517742156982],[127,263,78,6.255523681640625],[127,263,79,6.250174522399902],[127,264,64,6.182787895202637],[127,264,65,6.1897873878479],[127,264,66,6.189891338348389],[127,264,67,6.187800884246826],[127,264,68,6.18593168258667],[127,264,69,6.186098575592041],[127,264,70,6.189854145050049],[127,264,71,6.198974132537842],[127,264,72,6.218026161193848],[127,264,73,6.240396499633789],[127,264,74,6.2536444664001465],[127,264,75,6.25829553604126],[127,264,76,6.259389400482178],[127,264,77,6.258517742156982],[127,264,78,6.255523681640625],[127,264,79,6.250174522399902],[127,265,64,6.182787895202637],[127,265,65,6.1897873878479],[127,265,66,6.189891338348389],[127,265,67,6.187800884246826],[127,265,68,6.18593168258667],[127,265,69,6.186098575592041],[127,265,70,6.189854145050049],[127,265,71,6.198974132537842],[127,265,72,6.218026161193848],[127,265,73,6.240396499633789],[127,265,74,6.2536444664001465],[127,265,75,6.25829553604126],[127,265,76,6.259389400482178],[127,265,77,6.258517742156982],[127,265,78,6.255523681640625],[127,265,79,6.250174522399902],[127,266,64,6.182787895202637],[127,266,65,6.1897873878479],[127,266,66,6.189891338348389],[127,266,67,6.187800884246826],[127,266,68,6.18593168258667],[127,266,69,6.186098575592041],[127,266,70,6.189854145050049],[127,266,71,6.198974132537842],[127,266,72,6.218026161193848],[127,266,73,6.240396499633789],[127,266,74,6.2536444664001465],[127,266,75,6.25829553604126],[127,266,76,6.259389400482178],[127,266,77,6.258517742156982],[127,266,78,6.255523681640625],[127,266,79,6.250174522399902],[127,267,64,6.182787895202637],[127,267,65,6.1897873878479],[127,267,66,6.189891338348389],[127,267,67,6.187800884246826],[127,267,68,6.18593168258667],[127,267,69,6.186098575592041],[127,267,70,6.189854145050049],[127,267,71,6.198974132537842],[127,267,72,6.218026161193848],[127,267,73,6.240396499633789],[127,267,74,6.2536444664001465],[127,267,75,6.25829553604126],[127,267,76,6.259389400482178],[127,267,77,6.258517742156982],[127,267,78,6.255523681640625],[127,267,79,6.250174522399902],[127,268,64,6.182787895202637],[127,268,65,6.1897873878479],[127,268,66,6.189891338348389],[127,268,67,6.187800884246826],[127,268,68,6.18593168258667],[127,268,69,6.186098575592041],[127,268,70,6.189854145050049],[127,268,71,6.198974132537842],[127,268,72,6.218026161193848],[127,268,73,6.240396499633789],[127,268,74,6.2536444664001465],[127,268,75,6.25829553604126],[127,268,76,6.259389400482178],[127,268,77,6.258517742156982],[127,268,78,6.255523681640625],[127,268,79,6.250174522399902],[127,269,64,6.182787895202637],[127,269,65,6.1897873878479],[127,269,66,6.189891338348389],[127,269,67,6.187800884246826],[127,269,68,6.18593168258667],[127,269,69,6.186098575592041],[127,269,70,6.189854145050049],[127,269,71,6.198974132537842],[127,269,72,6.218026161193848],[127,269,73,6.240396499633789],[127,269,74,6.2536444664001465],[127,269,75,6.25829553604126],[127,269,76,6.259389400482178],[127,269,77,6.258517742156982],[127,269,78,6.255523681640625],[127,269,79,6.250174522399902],[127,270,64,6.182787895202637],[127,270,65,6.1897873878479],[127,270,66,6.189891338348389],[127,270,67,6.187800884246826],[127,270,68,6.18593168258667],[127,270,69,6.186098575592041],[127,270,70,6.189854145050049],[127,270,71,6.198974132537842],[127,270,72,6.218026161193848],[127,270,73,6.240396499633789],[127,270,74,6.2536444664001465],[127,270,75,6.25829553604126],[127,270,76,6.259389400482178],[127,270,77,6.258517742156982],[127,270,78,6.255523681640625],[127,270,79,6.250174522399902],[127,271,64,6.182787895202637],[127,271,65,6.1897873878479],[127,271,66,6.189891338348389],[127,271,67,6.187800884246826],[127,271,68,6.18593168258667],[127,271,69,6.186098575592041],[127,271,70,6.189854145050049],[127,271,71,6.198974132537842],[127,271,72,6.218026161193848],[127,271,73,6.240396499633789],[127,271,74,6.2536444664001465],[127,271,75,6.25829553604126],[127,271,76,6.259389400482178],[127,271,77,6.258517742156982],[127,271,78,6.255523681640625],[127,271,79,6.250174522399902],[127,272,64,6.182787895202637],[127,272,65,6.1897873878479],[127,272,66,6.189891338348389],[127,272,67,6.187800884246826],[127,272,68,6.18593168258667],[127,272,69,6.186098575592041],[127,272,70,6.189854145050049],[127,272,71,6.198974132537842],[127,272,72,6.218026161193848],[127,272,73,6.240396499633789],[127,272,74,6.2536444664001465],[127,272,75,6.25829553604126],[127,272,76,6.259389400482178],[127,272,77,6.258517742156982],[127,272,78,6.255523681640625],[127,272,79,6.250174522399902],[127,273,64,6.182787895202637],[127,273,65,6.1897873878479],[127,273,66,6.189891338348389],[127,273,67,6.187800884246826],[127,273,68,6.18593168258667],[127,273,69,6.186098575592041],[127,273,70,6.189854145050049],[127,273,71,6.198974132537842],[127,273,72,6.218026161193848],[127,273,73,6.240396499633789],[127,273,74,6.2536444664001465],[127,273,75,6.25829553604126],[127,273,76,6.259389400482178],[127,273,77,6.258517742156982],[127,273,78,6.255523681640625],[127,273,79,6.250174522399902],[127,274,64,6.182787895202637],[127,274,65,6.1897873878479],[127,274,66,6.189891338348389],[127,274,67,6.187800884246826],[127,274,68,6.18593168258667],[127,274,69,6.186098575592041],[127,274,70,6.189854145050049],[127,274,71,6.198974132537842],[127,274,72,6.218026161193848],[127,274,73,6.240396499633789],[127,274,74,6.2536444664001465],[127,274,75,6.25829553604126],[127,274,76,6.259389400482178],[127,274,77,6.258517742156982],[127,274,78,6.255523681640625],[127,274,79,6.250174522399902],[127,275,64,6.182787895202637],[127,275,65,6.1897873878479],[127,275,66,6.189891338348389],[127,275,67,6.187800884246826],[127,275,68,6.18593168258667],[127,275,69,6.186098575592041],[127,275,70,6.189854145050049],[127,275,71,6.198974132537842],[127,275,72,6.218026161193848],[127,275,73,6.240396499633789],[127,275,74,6.2536444664001465],[127,275,75,6.25829553604126],[127,275,76,6.259389400482178],[127,275,77,6.258517742156982],[127,275,78,6.255523681640625],[127,275,79,6.250174522399902],[127,276,64,6.182787895202637],[127,276,65,6.1897873878479],[127,276,66,6.189891338348389],[127,276,67,6.187800884246826],[127,276,68,6.18593168258667],[127,276,69,6.186098575592041],[127,276,70,6.189854145050049],[127,276,71,6.198974132537842],[127,276,72,6.218026161193848],[127,276,73,6.240396499633789],[127,276,74,6.2536444664001465],[127,276,75,6.25829553604126],[127,276,76,6.259389400482178],[127,276,77,6.258517742156982],[127,276,78,6.255523681640625],[127,276,79,6.250174522399902],[127,277,64,6.182787895202637],[127,277,65,6.1897873878479],[127,277,66,6.189891338348389],[127,277,67,6.187800884246826],[127,277,68,6.18593168258667],[127,277,69,6.186098575592041],[127,277,70,6.189854145050049],[127,277,71,6.198974132537842],[127,277,72,6.218026161193848],[127,277,73,6.240396499633789],[127,277,74,6.2536444664001465],[127,277,75,6.25829553604126],[127,277,76,6.259389400482178],[127,277,77,6.258517742156982],[127,277,78,6.255523681640625],[127,277,79,6.250174522399902],[127,278,64,6.182787895202637],[127,278,65,6.1897873878479],[127,278,66,6.189891338348389],[127,278,67,6.187800884246826],[127,278,68,6.18593168258667],[127,278,69,6.186098575592041],[127,278,70,6.189854145050049],[127,278,71,6.198974132537842],[127,278,72,6.218026161193848],[127,278,73,6.240396499633789],[127,278,74,6.2536444664001465],[127,278,75,6.25829553604126],[127,278,76,6.259389400482178],[127,278,77,6.258517742156982],[127,278,78,6.255523681640625],[127,278,79,6.250174522399902],[127,279,64,6.182787895202637],[127,279,65,6.1897873878479],[127,279,66,6.189891338348389],[127,279,67,6.187800884246826],[127,279,68,6.18593168258667],[127,279,69,6.186098575592041],[127,279,70,6.189854145050049],[127,279,71,6.198974132537842],[127,279,72,6.218026161193848],[127,279,73,6.240396499633789],[127,279,74,6.2536444664001465],[127,279,75,6.25829553604126],[127,279,76,6.259389400482178],[127,279,77,6.258517742156982],[127,279,78,6.255523681640625],[127,279,79,6.250174522399902],[127,280,64,6.182787895202637],[127,280,65,6.1897873878479],[127,280,66,6.189891338348389],[127,280,67,6.187800884246826],[127,280,68,6.18593168258667],[127,280,69,6.186098575592041],[127,280,70,6.189854145050049],[127,280,71,6.198974132537842],[127,280,72,6.218026161193848],[127,280,73,6.240396499633789],[127,280,74,6.2536444664001465],[127,280,75,6.25829553604126],[127,280,76,6.259389400482178],[127,280,77,6.258517742156982],[127,280,78,6.255523681640625],[127,280,79,6.250174522399902],[127,281,64,6.182787895202637],[127,281,65,6.1897873878479],[127,281,66,6.189891338348389],[127,281,67,6.187800884246826],[127,281,68,6.18593168258667],[127,281,69,6.186098575592041],[127,281,70,6.189854145050049],[127,281,71,6.198974132537842],[127,281,72,6.218026161193848],[127,281,73,6.240396499633789],[127,281,74,6.2536444664001465],[127,281,75,6.25829553604126],[127,281,76,6.259389400482178],[127,281,77,6.258517742156982],[127,281,78,6.255523681640625],[127,281,79,6.250174522399902],[127,282,64,6.182787895202637],[127,282,65,6.1897873878479],[127,282,66,6.189891338348389],[127,282,67,6.187800884246826],[127,282,68,6.18593168258667],[127,282,69,6.186098575592041],[127,282,70,6.189854145050049],[127,282,71,6.198974132537842],[127,282,72,6.218026161193848],[127,282,73,6.240396499633789],[127,282,74,6.2536444664001465],[127,282,75,6.25829553604126],[127,282,76,6.259389400482178],[127,282,77,6.258517742156982],[127,282,78,6.255523681640625],[127,282,79,6.250174522399902],[127,283,64,6.182787895202637],[127,283,65,6.1897873878479],[127,283,66,6.189891338348389],[127,283,67,6.187800884246826],[127,283,68,6.18593168258667],[127,283,69,6.186098575592041],[127,283,70,6.189854145050049],[127,283,71,6.198974132537842],[127,283,72,6.218026161193848],[127,283,73,6.240396499633789],[127,283,74,6.2536444664001465],[127,283,75,6.25829553604126],[127,283,76,6.259389400482178],[127,283,77,6.258517742156982],[127,283,78,6.255523681640625],[127,283,79,6.250174522399902],[127,284,64,6.182787895202637],[127,284,65,6.1897873878479],[127,284,66,6.189891338348389],[127,284,67,6.187800884246826],[127,284,68,6.18593168258667],[127,284,69,6.186098575592041],[127,284,70,6.189854145050049],[127,284,71,6.198974132537842],[127,284,72,6.218026161193848],[127,284,73,6.240396499633789],[127,284,74,6.2536444664001465],[127,284,75,6.25829553604126],[127,284,76,6.259389400482178],[127,284,77,6.258517742156982],[127,284,78,6.255523681640625],[127,284,79,6.250174522399902],[127,285,64,6.182787895202637],[127,285,65,6.1897873878479],[127,285,66,6.189891338348389],[127,285,67,6.187800884246826],[127,285,68,6.18593168258667],[127,285,69,6.186098575592041],[127,285,70,6.189854145050049],[127,285,71,6.198974132537842],[127,285,72,6.218026161193848],[127,285,73,6.240396499633789],[127,285,74,6.2536444664001465],[127,285,75,6.25829553604126],[127,285,76,6.259389400482178],[127,285,77,6.258517742156982],[127,285,78,6.255523681640625],[127,285,79,6.250174522399902],[127,286,64,6.182787895202637],[127,286,65,6.1897873878479],[127,286,66,6.189891338348389],[127,286,67,6.187800884246826],[127,286,68,6.18593168258667],[127,286,69,6.186098575592041],[127,286,70,6.189854145050049],[127,286,71,6.198974132537842],[127,286,72,6.218026161193848],[127,286,73,6.240396499633789],[127,286,74,6.2536444664001465],[127,286,75,6.25829553604126],[127,286,76,6.259389400482178],[127,286,77,6.258517742156982],[127,286,78,6.255523681640625],[127,286,79,6.250174522399902],[127,287,64,6.182787895202637],[127,287,65,6.1897873878479],[127,287,66,6.189891338348389],[127,287,67,6.187800884246826],[127,287,68,6.18593168258667],[127,287,69,6.186098575592041],[127,287,70,6.189854145050049],[127,287,71,6.198974132537842],[127,287,72,6.218026161193848],[127,287,73,6.240396499633789],[127,287,74,6.2536444664001465],[127,287,75,6.25829553604126],[127,287,76,6.259389400482178],[127,287,77,6.258517742156982],[127,287,78,6.255523681640625],[127,287,79,6.250174522399902],[127,288,64,6.182787895202637],[127,288,65,6.1897873878479],[127,288,66,6.189891338348389],[127,288,67,6.187800884246826],[127,288,68,6.18593168258667],[127,288,69,6.186098575592041],[127,288,70,6.189854145050049],[127,288,71,6.198974132537842],[127,288,72,6.218026161193848],[127,288,73,6.240396499633789],[127,288,74,6.2536444664001465],[127,288,75,6.25829553604126],[127,288,76,6.259389400482178],[127,288,77,6.258517742156982],[127,288,78,6.255523681640625],[127,288,79,6.250174522399902],[127,289,64,6.182787895202637],[127,289,65,6.1897873878479],[127,289,66,6.189891338348389],[127,289,67,6.187800884246826],[127,289,68,6.18593168258667],[127,289,69,6.186098575592041],[127,289,70,6.189854145050049],[127,289,71,6.198974132537842],[127,289,72,6.218026161193848],[127,289,73,6.240396499633789],[127,289,74,6.2536444664001465],[127,289,75,6.25829553604126],[127,289,76,6.259389400482178],[127,289,77,6.258517742156982],[127,289,78,6.255523681640625],[127,289,79,6.250174522399902],[127,290,64,6.182787895202637],[127,290,65,6.1897873878479],[127,290,66,6.189891338348389],[127,290,67,6.187800884246826],[127,290,68,6.18593168258667],[127,290,69,6.186098575592041],[127,290,70,6.189854145050049],[127,290,71,6.198974132537842],[127,290,72,6.218026161193848],[127,290,73,6.240396499633789],[127,290,74,6.2536444664001465],[127,290,75,6.25829553604126],[127,290,76,6.259389400482178],[127,290,77,6.258517742156982],[127,290,78,6.255523681640625],[127,290,79,6.250174522399902],[127,291,64,6.182787895202637],[127,291,65,6.1897873878479],[127,291,66,6.189891338348389],[127,291,67,6.187800884246826],[127,291,68,6.18593168258667],[127,291,69,6.186098575592041],[127,291,70,6.189854145050049],[127,291,71,6.198974132537842],[127,291,72,6.218026161193848],[127,291,73,6.240396499633789],[127,291,74,6.2536444664001465],[127,291,75,6.25829553604126],[127,291,76,6.259389400482178],[127,291,77,6.258517742156982],[127,291,78,6.255523681640625],[127,291,79,6.250174522399902],[127,292,64,6.182787895202637],[127,292,65,6.1897873878479],[127,292,66,6.189891338348389],[127,292,67,6.187800884246826],[127,292,68,6.18593168258667],[127,292,69,6.186098575592041],[127,292,70,6.189854145050049],[127,292,71,6.198974132537842],[127,292,72,6.218026161193848],[127,292,73,6.240396499633789],[127,292,74,6.2536444664001465],[127,292,75,6.25829553604126],[127,292,76,6.259389400482178],[127,292,77,6.258517742156982],[127,292,78,6.255523681640625],[127,292,79,6.250174522399902],[127,293,64,6.182787895202637],[127,293,65,6.1897873878479],[127,293,66,6.189891338348389],[127,293,67,6.187800884246826],[127,293,68,6.18593168258667],[127,293,69,6.186098575592041],[127,293,70,6.189854145050049],[127,293,71,6.198974132537842],[127,293,72,6.218026161193848],[127,293,73,6.240396499633789],[127,293,74,6.2536444664001465],[127,293,75,6.25829553604126],[127,293,76,6.259389400482178],[127,293,77,6.258517742156982],[127,293,78,6.255523681640625],[127,293,79,6.250174522399902],[127,294,64,6.182787895202637],[127,294,65,6.1897873878479],[127,294,66,6.189891338348389],[127,294,67,6.187800884246826],[127,294,68,6.18593168258667],[127,294,69,6.186098575592041],[127,294,70,6.189854145050049],[127,294,71,6.198974132537842],[127,294,72,6.218026161193848],[127,294,73,6.240396499633789],[127,294,74,6.2536444664001465],[127,294,75,6.25829553604126],[127,294,76,6.259389400482178],[127,294,77,6.258517742156982],[127,294,78,6.255523681640625],[127,294,79,6.250174522399902],[127,295,64,6.182787895202637],[127,295,65,6.1897873878479],[127,295,66,6.189891338348389],[127,295,67,6.187800884246826],[127,295,68,6.18593168258667],[127,295,69,6.186098575592041],[127,295,70,6.189854145050049],[127,295,71,6.198974132537842],[127,295,72,6.218026161193848],[127,295,73,6.240396499633789],[127,295,74,6.2536444664001465],[127,295,75,6.25829553604126],[127,295,76,6.259389400482178],[127,295,77,6.258517742156982],[127,295,78,6.255523681640625],[127,295,79,6.250174522399902],[127,296,64,6.182787895202637],[127,296,65,6.1897873878479],[127,296,66,6.189891338348389],[127,296,67,6.187800884246826],[127,296,68,6.18593168258667],[127,296,69,6.186098575592041],[127,296,70,6.189854145050049],[127,296,71,6.198974132537842],[127,296,72,6.218026161193848],[127,296,73,6.240396499633789],[127,296,74,6.2536444664001465],[127,296,75,6.25829553604126],[127,296,76,6.259389400482178],[127,296,77,6.258517742156982],[127,296,78,6.255523681640625],[127,296,79,6.250174522399902],[127,297,64,6.182787895202637],[127,297,65,6.1897873878479],[127,297,66,6.189891338348389],[127,297,67,6.187800884246826],[127,297,68,6.18593168258667],[127,297,69,6.186098575592041],[127,297,70,6.189854145050049],[127,297,71,6.198974132537842],[127,297,72,6.218026161193848],[127,297,73,6.240396499633789],[127,297,74,6.2536444664001465],[127,297,75,6.25829553604126],[127,297,76,6.259389400482178],[127,297,77,6.258517742156982],[127,297,78,6.255523681640625],[127,297,79,6.250174522399902],[127,298,64,6.182787895202637],[127,298,65,6.1897873878479],[127,298,66,6.189891338348389],[127,298,67,6.187800884246826],[127,298,68,6.18593168258667],[127,298,69,6.186098575592041],[127,298,70,6.189854145050049],[127,298,71,6.198974132537842],[127,298,72,6.218026161193848],[127,298,73,6.240396499633789],[127,298,74,6.2536444664001465],[127,298,75,6.25829553604126],[127,298,76,6.259389400482178],[127,298,77,6.258517742156982],[127,298,78,6.255523681640625],[127,298,79,6.250174522399902],[127,299,64,6.182787895202637],[127,299,65,6.1897873878479],[127,299,66,6.189891338348389],[127,299,67,6.187800884246826],[127,299,68,6.18593168258667],[127,299,69,6.186098575592041],[127,299,70,6.189854145050049],[127,299,71,6.198974132537842],[127,299,72,6.218026161193848],[127,299,73,6.240396499633789],[127,299,74,6.2536444664001465],[127,299,75,6.25829553604126],[127,299,76,6.259389400482178],[127,299,77,6.258517742156982],[127,299,78,6.255523681640625],[127,299,79,6.250174522399902],[127,300,64,6.182787895202637],[127,300,65,6.1897873878479],[127,300,66,6.189891338348389],[127,300,67,6.187800884246826],[127,300,68,6.18593168258667],[127,300,69,6.186098575592041],[127,300,70,6.189854145050049],[127,300,71,6.198974132537842],[127,300,72,6.218026161193848],[127,300,73,6.240396499633789],[127,300,74,6.2536444664001465],[127,300,75,6.25829553604126],[127,300,76,6.259389400482178],[127,300,77,6.258517742156982],[127,300,78,6.255523681640625],[127,300,79,6.250174522399902],[127,301,64,6.182787895202637],[127,301,65,6.1897873878479],[127,301,66,6.189891338348389],[127,301,67,6.187800884246826],[127,301,68,6.18593168258667],[127,301,69,6.186098575592041],[127,301,70,6.189854145050049],[127,301,71,6.198974132537842],[127,301,72,6.218026161193848],[127,301,73,6.240396499633789],[127,301,74,6.2536444664001465],[127,301,75,6.25829553604126],[127,301,76,6.259389400482178],[127,301,77,6.258517742156982],[127,301,78,6.255523681640625],[127,301,79,6.250174522399902],[127,302,64,6.182787895202637],[127,302,65,6.1897873878479],[127,302,66,6.189891338348389],[127,302,67,6.187800884246826],[127,302,68,6.18593168258667],[127,302,69,6.186098575592041],[127,302,70,6.189854145050049],[127,302,71,6.198974132537842],[127,302,72,6.218026161193848],[127,302,73,6.240396499633789],[127,302,74,6.2536444664001465],[127,302,75,6.25829553604126],[127,302,76,6.259389400482178],[127,302,77,6.258517742156982],[127,302,78,6.255523681640625],[127,302,79,6.250174522399902],[127,303,64,6.182787895202637],[127,303,65,6.1897873878479],[127,303,66,6.189891338348389],[127,303,67,6.187800884246826],[127,303,68,6.18593168258667],[127,303,69,6.186098575592041],[127,303,70,6.189854145050049],[127,303,71,6.198974132537842],[127,303,72,6.218026161193848],[127,303,73,6.240396499633789],[127,303,74,6.2536444664001465],[127,303,75,6.25829553604126],[127,303,76,6.259389400482178],[127,303,77,6.258517742156982],[127,303,78,6.255523681640625],[127,303,79,6.250174522399902],[127,304,64,6.182787895202637],[127,304,65,6.1897873878479],[127,304,66,6.189891338348389],[127,304,67,6.187800884246826],[127,304,68,6.18593168258667],[127,304,69,6.186098575592041],[127,304,70,6.189854145050049],[127,304,71,6.198974132537842],[127,304,72,6.218026161193848],[127,304,73,6.240396499633789],[127,304,74,6.2536444664001465],[127,304,75,6.25829553604126],[127,304,76,6.259389400482178],[127,304,77,6.258517742156982],[127,304,78,6.255523681640625],[127,304,79,6.250174522399902],[127,305,64,6.182787895202637],[127,305,65,6.1897873878479],[127,305,66,6.189891338348389],[127,305,67,6.187800884246826],[127,305,68,6.18593168258667],[127,305,69,6.186098575592041],[127,305,70,6.189854145050049],[127,305,71,6.198974132537842],[127,305,72,6.218026161193848],[127,305,73,6.240396499633789],[127,305,74,6.2536444664001465],[127,305,75,6.25829553604126],[127,305,76,6.259389400482178],[127,305,77,6.258517742156982],[127,305,78,6.255523681640625],[127,305,79,6.250174522399902],[127,306,64,6.182787895202637],[127,306,65,6.1897873878479],[127,306,66,6.189891338348389],[127,306,67,6.187800884246826],[127,306,68,6.18593168258667],[127,306,69,6.186098575592041],[127,306,70,6.189854145050049],[127,306,71,6.198974132537842],[127,306,72,6.218026161193848],[127,306,73,6.240396499633789],[127,306,74,6.2536444664001465],[127,306,75,6.25829553604126],[127,306,76,6.259389400482178],[127,306,77,6.258517742156982],[127,306,78,6.255523681640625],[127,306,79,6.250174522399902],[127,307,64,6.182787895202637],[127,307,65,6.1897873878479],[127,307,66,6.189891338348389],[127,307,67,6.187800884246826],[127,307,68,6.18593168258667],[127,307,69,6.186098575592041],[127,307,70,6.189854145050049],[127,307,71,6.198974132537842],[127,307,72,6.218026161193848],[127,307,73,6.240396499633789],[127,307,74,6.2536444664001465],[127,307,75,6.25829553604126],[127,307,76,6.259389400482178],[127,307,77,6.258517742156982],[127,307,78,6.255523681640625],[127,307,79,6.250174522399902],[127,308,64,6.182787895202637],[127,308,65,6.1897873878479],[127,308,66,6.189891338348389],[127,308,67,6.187800884246826],[127,308,68,6.18593168258667],[127,308,69,6.186098575592041],[127,308,70,6.189854145050049],[127,308,71,6.198974132537842],[127,308,72,6.218026161193848],[127,308,73,6.240396499633789],[127,308,74,6.2536444664001465],[127,308,75,6.25829553604126],[127,308,76,6.259389400482178],[127,308,77,6.258517742156982],[127,308,78,6.255523681640625],[127,308,79,6.250174522399902],[127,309,64,6.182787895202637],[127,309,65,6.1897873878479],[127,309,66,6.189891338348389],[127,309,67,6.187800884246826],[127,309,68,6.18593168258667],[127,309,69,6.186098575592041],[127,309,70,6.189854145050049],[127,309,71,6.198974132537842],[127,309,72,6.218026161193848],[127,309,73,6.240396499633789],[127,309,74,6.2536444664001465],[127,309,75,6.25829553604126],[127,309,76,6.259389400482178],[127,309,77,6.258517742156982],[127,309,78,6.255523681640625],[127,309,79,6.250174522399902],[127,310,64,6.182787895202637],[127,310,65,6.1897873878479],[127,310,66,6.189891338348389],[127,310,67,6.187800884246826],[127,310,68,6.18593168258667],[127,310,69,6.186098575592041],[127,310,70,6.189854145050049],[127,310,71,6.198974132537842],[127,310,72,6.218026161193848],[127,310,73,6.240396499633789],[127,310,74,6.2536444664001465],[127,310,75,6.25829553604126],[127,310,76,6.259389400482178],[127,310,77,6.258517742156982],[127,310,78,6.255523681640625],[127,310,79,6.250174522399902],[127,311,64,6.182787895202637],[127,311,65,6.1897873878479],[127,311,66,6.189891338348389],[127,311,67,6.187800884246826],[127,311,68,6.18593168258667],[127,311,69,6.186098575592041],[127,311,70,6.189854145050049],[127,311,71,6.198974132537842],[127,311,72,6.218026161193848],[127,311,73,6.240396499633789],[127,311,74,6.2536444664001465],[127,311,75,6.25829553604126],[127,311,76,6.259389400482178],[127,311,77,6.258517742156982],[127,311,78,6.255523681640625],[127,311,79,6.250174522399902],[127,312,64,6.182787895202637],[127,312,65,6.1897873878479],[127,312,66,6.189891338348389],[127,312,67,6.187800884246826],[127,312,68,6.18593168258667],[127,312,69,6.186098575592041],[127,312,70,6.189854145050049],[127,312,71,6.198974132537842],[127,312,72,6.218026161193848],[127,312,73,6.240396499633789],[127,312,74,6.2536444664001465],[127,312,75,6.25829553604126],[127,312,76,6.259389400482178],[127,312,77,6.258517742156982],[127,312,78,6.255523681640625],[127,312,79,6.250174522399902],[127,313,64,6.182787895202637],[127,313,65,6.1897873878479],[127,313,66,6.189891338348389],[127,313,67,6.187800884246826],[127,313,68,6.18593168258667],[127,313,69,6.186098575592041],[127,313,70,6.189854145050049],[127,313,71,6.198974132537842],[127,313,72,6.218026161193848],[127,313,73,6.240396499633789],[127,313,74,6.2536444664001465],[127,313,75,6.25829553604126],[127,313,76,6.259389400482178],[127,313,77,6.258517742156982],[127,313,78,6.255523681640625],[127,313,79,6.250174522399902],[127,314,64,6.182787895202637],[127,314,65,6.1897873878479],[127,314,66,6.189891338348389],[127,314,67,6.187800884246826],[127,314,68,6.18593168258667],[127,314,69,6.186098575592041],[127,314,70,6.189854145050049],[127,314,71,6.198974132537842],[127,314,72,6.218026161193848],[127,314,73,6.240396499633789],[127,314,74,6.2536444664001465],[127,314,75,6.25829553604126],[127,314,76,6.259389400482178],[127,314,77,6.258517742156982],[127,314,78,6.255523681640625],[127,314,79,6.250174522399902],[127,315,64,6.182787895202637],[127,315,65,6.1897873878479],[127,315,66,6.189891338348389],[127,315,67,6.187800884246826],[127,315,68,6.18593168258667],[127,315,69,6.186098575592041],[127,315,70,6.189854145050049],[127,315,71,6.198974132537842],[127,315,72,6.218026161193848],[127,315,73,6.240396499633789],[127,315,74,6.2536444664001465],[127,315,75,6.25829553604126],[127,315,76,6.259389400482178],[127,315,77,6.258517742156982],[127,315,78,6.255523681640625],[127,315,79,6.250174522399902],[127,316,64,6.182787895202637],[127,316,65,6.1897873878479],[127,316,66,6.189891338348389],[127,316,67,6.187800884246826],[127,316,68,6.18593168258667],[127,316,69,6.186098575592041],[127,316,70,6.189854145050049],[127,316,71,6.198974132537842],[127,316,72,6.218026161193848],[127,316,73,6.240396499633789],[127,316,74,6.2536444664001465],[127,316,75,6.25829553604126],[127,316,76,6.259389400482178],[127,316,77,6.258517742156982],[127,316,78,6.255523681640625],[127,316,79,6.250174522399902],[127,317,64,6.182787895202637],[127,317,65,6.1897873878479],[127,317,66,6.189891338348389],[127,317,67,6.187800884246826],[127,317,68,6.18593168258667],[127,317,69,6.186098575592041],[127,317,70,6.189854145050049],[127,317,71,6.198974132537842],[127,317,72,6.218026161193848],[127,317,73,6.240396499633789],[127,317,74,6.2536444664001465],[127,317,75,6.25829553604126],[127,317,76,6.259389400482178],[127,317,77,6.258517742156982],[127,317,78,6.255523681640625],[127,317,79,6.250174522399902],[127,318,64,6.182787895202637],[127,318,65,6.1897873878479],[127,318,66,6.189891338348389],[127,318,67,6.187800884246826],[127,318,68,6.18593168258667],[127,318,69,6.186098575592041],[127,318,70,6.189854145050049],[127,318,71,6.198974132537842],[127,318,72,6.218026161193848],[127,318,73,6.240396499633789],[127,318,74,6.2536444664001465],[127,318,75,6.25829553604126],[127,318,76,6.259389400482178],[127,318,77,6.258517742156982],[127,318,78,6.255523681640625],[127,318,79,6.250174522399902],[127,319,64,6.182787895202637],[127,319,65,6.1897873878479],[127,319,66,6.189891338348389],[127,319,67,6.187800884246826],[127,319,68,6.18593168258667],[127,319,69,6.186098575592041],[127,319,70,6.189854145050049],[127,319,71,6.198974132537842],[127,319,72,6.218026161193848],[127,319,73,6.240396499633789],[127,319,74,6.2536444664001465],[127,319,75,6.25829553604126],[127,319,76,6.259389400482178],[127,319,77,6.258517742156982],[127,319,78,6.255523681640625],[127,319,79,6.250174522399902]] diff --git a/pumpkin-world/assets/converted_offset_7_4.json b/pumpkin-world/assets/converted_offset_7_4.json new file mode 100644 index 000000000..4d1ac258c --- /dev/null +++ b/pumpkin-world/assets/converted_offset_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.5171010829508305],[112,-64,65,-0.5150407766923308],[112,-64,66,-0.5135658886283636],[112,-64,67,-0.512801325879991],[112,-64,68,-0.5125248022377491],[112,-64,69,-0.5124049885198474],[112,-64,70,-0.5122450273483992],[112,-64,71,-0.5117878885939717],[112,-64,72,-0.5106964153237641],[112,-64,73,-0.509256019257009],[112,-64,74,-0.5080228541046381],[112,-64,75,-0.506874315906316],[112,-64,76,-0.505773471435532],[112,-64,77,-0.5047980308299884],[112,-64,78,-0.5039559541328344],[112,-64,79,-0.5031836007838137],[112,-63,64,-0.5171010829508305],[112,-63,65,-0.5150407766923308],[112,-63,66,-0.5135658886283636],[112,-63,67,-0.512801325879991],[112,-63,68,-0.5125248022377491],[112,-63,69,-0.5124049885198474],[112,-63,70,-0.5122450273483992],[112,-63,71,-0.5117878885939717],[112,-63,72,-0.5106964153237641],[112,-63,73,-0.509256019257009],[112,-63,74,-0.5080228541046381],[112,-63,75,-0.506874315906316],[112,-63,76,-0.505773471435532],[112,-63,77,-0.5047980308299884],[112,-63,78,-0.5039559541328344],[112,-63,79,-0.5031836007838137],[112,-62,64,-0.5171010829508305],[112,-62,65,-0.5150407766923308],[112,-62,66,-0.5135658886283636],[112,-62,67,-0.512801325879991],[112,-62,68,-0.5125248022377491],[112,-62,69,-0.5124049885198474],[112,-62,70,-0.5122450273483992],[112,-62,71,-0.5117878885939717],[112,-62,72,-0.5106964153237641],[112,-62,73,-0.509256019257009],[112,-62,74,-0.5080228541046381],[112,-62,75,-0.506874315906316],[112,-62,76,-0.505773471435532],[112,-62,77,-0.5047980308299884],[112,-62,78,-0.5039559541328344],[112,-62,79,-0.5031836007838137],[112,-61,64,-0.5171010829508305],[112,-61,65,-0.5150407766923308],[112,-61,66,-0.5135658886283636],[112,-61,67,-0.512801325879991],[112,-61,68,-0.5125248022377491],[112,-61,69,-0.5124049885198474],[112,-61,70,-0.5122450273483992],[112,-61,71,-0.5117878885939717],[112,-61,72,-0.5106964153237641],[112,-61,73,-0.509256019257009],[112,-61,74,-0.5080228541046381],[112,-61,75,-0.506874315906316],[112,-61,76,-0.505773471435532],[112,-61,77,-0.5047980308299884],[112,-61,78,-0.5039559541328344],[112,-61,79,-0.5031836007838137],[112,-60,64,-0.5171010829508305],[112,-60,65,-0.5150407766923308],[112,-60,66,-0.5135658886283636],[112,-60,67,-0.512801325879991],[112,-60,68,-0.5125248022377491],[112,-60,69,-0.5124049885198474],[112,-60,70,-0.5122450273483992],[112,-60,71,-0.5117878885939717],[112,-60,72,-0.5106964153237641],[112,-60,73,-0.509256019257009],[112,-60,74,-0.5080228541046381],[112,-60,75,-0.506874315906316],[112,-60,76,-0.505773471435532],[112,-60,77,-0.5047980308299884],[112,-60,78,-0.5039559541328344],[112,-60,79,-0.5031836007838137],[112,-59,64,-0.5171010829508305],[112,-59,65,-0.5150407766923308],[112,-59,66,-0.5135658886283636],[112,-59,67,-0.512801325879991],[112,-59,68,-0.5125248022377491],[112,-59,69,-0.5124049885198474],[112,-59,70,-0.5122450273483992],[112,-59,71,-0.5117878885939717],[112,-59,72,-0.5106964153237641],[112,-59,73,-0.509256019257009],[112,-59,74,-0.5080228541046381],[112,-59,75,-0.506874315906316],[112,-59,76,-0.505773471435532],[112,-59,77,-0.5047980308299884],[112,-59,78,-0.5039559541328344],[112,-59,79,-0.5031836007838137],[112,-58,64,-0.5171010829508305],[112,-58,65,-0.5150407766923308],[112,-58,66,-0.5135658886283636],[112,-58,67,-0.512801325879991],[112,-58,68,-0.5125248022377491],[112,-58,69,-0.5124049885198474],[112,-58,70,-0.5122450273483992],[112,-58,71,-0.5117878885939717],[112,-58,72,-0.5106964153237641],[112,-58,73,-0.509256019257009],[112,-58,74,-0.5080228541046381],[112,-58,75,-0.506874315906316],[112,-58,76,-0.505773471435532],[112,-58,77,-0.5047980308299884],[112,-58,78,-0.5039559541328344],[112,-58,79,-0.5031836007838137],[112,-57,64,-0.5171010829508305],[112,-57,65,-0.5150407766923308],[112,-57,66,-0.5135658886283636],[112,-57,67,-0.512801325879991],[112,-57,68,-0.5125248022377491],[112,-57,69,-0.5124049885198474],[112,-57,70,-0.5122450273483992],[112,-57,71,-0.5117878885939717],[112,-57,72,-0.5106964153237641],[112,-57,73,-0.509256019257009],[112,-57,74,-0.5080228541046381],[112,-57,75,-0.506874315906316],[112,-57,76,-0.505773471435532],[112,-57,77,-0.5047980308299884],[112,-57,78,-0.5039559541328344],[112,-57,79,-0.5031836007838137],[112,-56,64,-0.5171010829508305],[112,-56,65,-0.5150407766923308],[112,-56,66,-0.5135658886283636],[112,-56,67,-0.512801325879991],[112,-56,68,-0.5125248022377491],[112,-56,69,-0.5124049885198474],[112,-56,70,-0.5122450273483992],[112,-56,71,-0.5117878885939717],[112,-56,72,-0.5106964153237641],[112,-56,73,-0.509256019257009],[112,-56,74,-0.5080228541046381],[112,-56,75,-0.506874315906316],[112,-56,76,-0.505773471435532],[112,-56,77,-0.5047980308299884],[112,-56,78,-0.5039559541328344],[112,-56,79,-0.5031836007838137],[112,-55,64,-0.5171010829508305],[112,-55,65,-0.5150407766923308],[112,-55,66,-0.5135658886283636],[112,-55,67,-0.512801325879991],[112,-55,68,-0.5125248022377491],[112,-55,69,-0.5124049885198474],[112,-55,70,-0.5122450273483992],[112,-55,71,-0.5117878885939717],[112,-55,72,-0.5106964153237641],[112,-55,73,-0.509256019257009],[112,-55,74,-0.5080228541046381],[112,-55,75,-0.506874315906316],[112,-55,76,-0.505773471435532],[112,-55,77,-0.5047980308299884],[112,-55,78,-0.5039559541328344],[112,-55,79,-0.5031836007838137],[112,-54,64,-0.5171010829508305],[112,-54,65,-0.5150407766923308],[112,-54,66,-0.5135658886283636],[112,-54,67,-0.512801325879991],[112,-54,68,-0.5125248022377491],[112,-54,69,-0.5124049885198474],[112,-54,70,-0.5122450273483992],[112,-54,71,-0.5117878885939717],[112,-54,72,-0.5106964153237641],[112,-54,73,-0.509256019257009],[112,-54,74,-0.5080228541046381],[112,-54,75,-0.506874315906316],[112,-54,76,-0.505773471435532],[112,-54,77,-0.5047980308299884],[112,-54,78,-0.5039559541328344],[112,-54,79,-0.5031836007838137],[112,-53,64,-0.5171010829508305],[112,-53,65,-0.5150407766923308],[112,-53,66,-0.5135658886283636],[112,-53,67,-0.512801325879991],[112,-53,68,-0.5125248022377491],[112,-53,69,-0.5124049885198474],[112,-53,70,-0.5122450273483992],[112,-53,71,-0.5117878885939717],[112,-53,72,-0.5106964153237641],[112,-53,73,-0.509256019257009],[112,-53,74,-0.5080228541046381],[112,-53,75,-0.506874315906316],[112,-53,76,-0.505773471435532],[112,-53,77,-0.5047980308299884],[112,-53,78,-0.5039559541328344],[112,-53,79,-0.5031836007838137],[112,-52,64,-0.5171010829508305],[112,-52,65,-0.5150407766923308],[112,-52,66,-0.5135658886283636],[112,-52,67,-0.512801325879991],[112,-52,68,-0.5125248022377491],[112,-52,69,-0.5124049885198474],[112,-52,70,-0.5122450273483992],[112,-52,71,-0.5117878885939717],[112,-52,72,-0.5106964153237641],[112,-52,73,-0.509256019257009],[112,-52,74,-0.5080228541046381],[112,-52,75,-0.506874315906316],[112,-52,76,-0.505773471435532],[112,-52,77,-0.5047980308299884],[112,-52,78,-0.5039559541328344],[112,-52,79,-0.5031836007838137],[112,-51,64,-0.5171010829508305],[112,-51,65,-0.5150407766923308],[112,-51,66,-0.5135658886283636],[112,-51,67,-0.512801325879991],[112,-51,68,-0.5125248022377491],[112,-51,69,-0.5124049885198474],[112,-51,70,-0.5122450273483992],[112,-51,71,-0.5117878885939717],[112,-51,72,-0.5106964153237641],[112,-51,73,-0.509256019257009],[112,-51,74,-0.5080228541046381],[112,-51,75,-0.506874315906316],[112,-51,76,-0.505773471435532],[112,-51,77,-0.5047980308299884],[112,-51,78,-0.5039559541328344],[112,-51,79,-0.5031836007838137],[112,-50,64,-0.5171010829508305],[112,-50,65,-0.5150407766923308],[112,-50,66,-0.5135658886283636],[112,-50,67,-0.512801325879991],[112,-50,68,-0.5125248022377491],[112,-50,69,-0.5124049885198474],[112,-50,70,-0.5122450273483992],[112,-50,71,-0.5117878885939717],[112,-50,72,-0.5106964153237641],[112,-50,73,-0.509256019257009],[112,-50,74,-0.5080228541046381],[112,-50,75,-0.506874315906316],[112,-50,76,-0.505773471435532],[112,-50,77,-0.5047980308299884],[112,-50,78,-0.5039559541328344],[112,-50,79,-0.5031836007838137],[112,-49,64,-0.5171010829508305],[112,-49,65,-0.5150407766923308],[112,-49,66,-0.5135658886283636],[112,-49,67,-0.512801325879991],[112,-49,68,-0.5125248022377491],[112,-49,69,-0.5124049885198474],[112,-49,70,-0.5122450273483992],[112,-49,71,-0.5117878885939717],[112,-49,72,-0.5106964153237641],[112,-49,73,-0.509256019257009],[112,-49,74,-0.5080228541046381],[112,-49,75,-0.506874315906316],[112,-49,76,-0.505773471435532],[112,-49,77,-0.5047980308299884],[112,-49,78,-0.5039559541328344],[112,-49,79,-0.5031836007838137],[112,-48,64,-0.5171010829508305],[112,-48,65,-0.5150407766923308],[112,-48,66,-0.5135658886283636],[112,-48,67,-0.512801325879991],[112,-48,68,-0.5125248022377491],[112,-48,69,-0.5124049885198474],[112,-48,70,-0.5122450273483992],[112,-48,71,-0.5117878885939717],[112,-48,72,-0.5106964153237641],[112,-48,73,-0.509256019257009],[112,-48,74,-0.5080228541046381],[112,-48,75,-0.506874315906316],[112,-48,76,-0.505773471435532],[112,-48,77,-0.5047980308299884],[112,-48,78,-0.5039559541328344],[112,-48,79,-0.5031836007838137],[112,-47,64,-0.5171010829508305],[112,-47,65,-0.5150407766923308],[112,-47,66,-0.5135658886283636],[112,-47,67,-0.512801325879991],[112,-47,68,-0.5125248022377491],[112,-47,69,-0.5124049885198474],[112,-47,70,-0.5122450273483992],[112,-47,71,-0.5117878885939717],[112,-47,72,-0.5106964153237641],[112,-47,73,-0.509256019257009],[112,-47,74,-0.5080228541046381],[112,-47,75,-0.506874315906316],[112,-47,76,-0.505773471435532],[112,-47,77,-0.5047980308299884],[112,-47,78,-0.5039559541328344],[112,-47,79,-0.5031836007838137],[112,-46,64,-0.5171010829508305],[112,-46,65,-0.5150407766923308],[112,-46,66,-0.5135658886283636],[112,-46,67,-0.512801325879991],[112,-46,68,-0.5125248022377491],[112,-46,69,-0.5124049885198474],[112,-46,70,-0.5122450273483992],[112,-46,71,-0.5117878885939717],[112,-46,72,-0.5106964153237641],[112,-46,73,-0.509256019257009],[112,-46,74,-0.5080228541046381],[112,-46,75,-0.506874315906316],[112,-46,76,-0.505773471435532],[112,-46,77,-0.5047980308299884],[112,-46,78,-0.5039559541328344],[112,-46,79,-0.5031836007838137],[112,-45,64,-0.5171010829508305],[112,-45,65,-0.5150407766923308],[112,-45,66,-0.5135658886283636],[112,-45,67,-0.512801325879991],[112,-45,68,-0.5125248022377491],[112,-45,69,-0.5124049885198474],[112,-45,70,-0.5122450273483992],[112,-45,71,-0.5117878885939717],[112,-45,72,-0.5106964153237641],[112,-45,73,-0.509256019257009],[112,-45,74,-0.5080228541046381],[112,-45,75,-0.506874315906316],[112,-45,76,-0.505773471435532],[112,-45,77,-0.5047980308299884],[112,-45,78,-0.5039559541328344],[112,-45,79,-0.5031836007838137],[112,-44,64,-0.5171010829508305],[112,-44,65,-0.5150407766923308],[112,-44,66,-0.5135658886283636],[112,-44,67,-0.512801325879991],[112,-44,68,-0.5125248022377491],[112,-44,69,-0.5124049885198474],[112,-44,70,-0.5122450273483992],[112,-44,71,-0.5117878885939717],[112,-44,72,-0.5106964153237641],[112,-44,73,-0.509256019257009],[112,-44,74,-0.5080228541046381],[112,-44,75,-0.506874315906316],[112,-44,76,-0.505773471435532],[112,-44,77,-0.5047980308299884],[112,-44,78,-0.5039559541328344],[112,-44,79,-0.5031836007838137],[112,-43,64,-0.5171010829508305],[112,-43,65,-0.5150407766923308],[112,-43,66,-0.5135658886283636],[112,-43,67,-0.512801325879991],[112,-43,68,-0.5125248022377491],[112,-43,69,-0.5124049885198474],[112,-43,70,-0.5122450273483992],[112,-43,71,-0.5117878885939717],[112,-43,72,-0.5106964153237641],[112,-43,73,-0.509256019257009],[112,-43,74,-0.5080228541046381],[112,-43,75,-0.506874315906316],[112,-43,76,-0.505773471435532],[112,-43,77,-0.5047980308299884],[112,-43,78,-0.5039559541328344],[112,-43,79,-0.5031836007838137],[112,-42,64,-0.5171010829508305],[112,-42,65,-0.5150407766923308],[112,-42,66,-0.5135658886283636],[112,-42,67,-0.512801325879991],[112,-42,68,-0.5125248022377491],[112,-42,69,-0.5124049885198474],[112,-42,70,-0.5122450273483992],[112,-42,71,-0.5117878885939717],[112,-42,72,-0.5106964153237641],[112,-42,73,-0.509256019257009],[112,-42,74,-0.5080228541046381],[112,-42,75,-0.506874315906316],[112,-42,76,-0.505773471435532],[112,-42,77,-0.5047980308299884],[112,-42,78,-0.5039559541328344],[112,-42,79,-0.5031836007838137],[112,-41,64,-0.5171010829508305],[112,-41,65,-0.5150407766923308],[112,-41,66,-0.5135658886283636],[112,-41,67,-0.512801325879991],[112,-41,68,-0.5125248022377491],[112,-41,69,-0.5124049885198474],[112,-41,70,-0.5122450273483992],[112,-41,71,-0.5117878885939717],[112,-41,72,-0.5106964153237641],[112,-41,73,-0.509256019257009],[112,-41,74,-0.5080228541046381],[112,-41,75,-0.506874315906316],[112,-41,76,-0.505773471435532],[112,-41,77,-0.5047980308299884],[112,-41,78,-0.5039559541328344],[112,-41,79,-0.5031836007838137],[112,-40,64,-0.5171010829508305],[112,-40,65,-0.5150407766923308],[112,-40,66,-0.5135658886283636],[112,-40,67,-0.512801325879991],[112,-40,68,-0.5125248022377491],[112,-40,69,-0.5124049885198474],[112,-40,70,-0.5122450273483992],[112,-40,71,-0.5117878885939717],[112,-40,72,-0.5106964153237641],[112,-40,73,-0.509256019257009],[112,-40,74,-0.5080228541046381],[112,-40,75,-0.506874315906316],[112,-40,76,-0.505773471435532],[112,-40,77,-0.5047980308299884],[112,-40,78,-0.5039559541328344],[112,-40,79,-0.5031836007838137],[112,-39,64,-0.5171010829508305],[112,-39,65,-0.5150407766923308],[112,-39,66,-0.5135658886283636],[112,-39,67,-0.512801325879991],[112,-39,68,-0.5125248022377491],[112,-39,69,-0.5124049885198474],[112,-39,70,-0.5122450273483992],[112,-39,71,-0.5117878885939717],[112,-39,72,-0.5106964153237641],[112,-39,73,-0.509256019257009],[112,-39,74,-0.5080228541046381],[112,-39,75,-0.506874315906316],[112,-39,76,-0.505773471435532],[112,-39,77,-0.5047980308299884],[112,-39,78,-0.5039559541328344],[112,-39,79,-0.5031836007838137],[112,-38,64,-0.5171010829508305],[112,-38,65,-0.5150407766923308],[112,-38,66,-0.5135658886283636],[112,-38,67,-0.512801325879991],[112,-38,68,-0.5125248022377491],[112,-38,69,-0.5124049885198474],[112,-38,70,-0.5122450273483992],[112,-38,71,-0.5117878885939717],[112,-38,72,-0.5106964153237641],[112,-38,73,-0.509256019257009],[112,-38,74,-0.5080228541046381],[112,-38,75,-0.506874315906316],[112,-38,76,-0.505773471435532],[112,-38,77,-0.5047980308299884],[112,-38,78,-0.5039559541328344],[112,-38,79,-0.5031836007838137],[112,-37,64,-0.5171010829508305],[112,-37,65,-0.5150407766923308],[112,-37,66,-0.5135658886283636],[112,-37,67,-0.512801325879991],[112,-37,68,-0.5125248022377491],[112,-37,69,-0.5124049885198474],[112,-37,70,-0.5122450273483992],[112,-37,71,-0.5117878885939717],[112,-37,72,-0.5106964153237641],[112,-37,73,-0.509256019257009],[112,-37,74,-0.5080228541046381],[112,-37,75,-0.506874315906316],[112,-37,76,-0.505773471435532],[112,-37,77,-0.5047980308299884],[112,-37,78,-0.5039559541328344],[112,-37,79,-0.5031836007838137],[112,-36,64,-0.5171010829508305],[112,-36,65,-0.5150407766923308],[112,-36,66,-0.5135658886283636],[112,-36,67,-0.512801325879991],[112,-36,68,-0.5125248022377491],[112,-36,69,-0.5124049885198474],[112,-36,70,-0.5122450273483992],[112,-36,71,-0.5117878885939717],[112,-36,72,-0.5106964153237641],[112,-36,73,-0.509256019257009],[112,-36,74,-0.5080228541046381],[112,-36,75,-0.506874315906316],[112,-36,76,-0.505773471435532],[112,-36,77,-0.5047980308299884],[112,-36,78,-0.5039559541328344],[112,-36,79,-0.5031836007838137],[112,-35,64,-0.5171010829508305],[112,-35,65,-0.5150407766923308],[112,-35,66,-0.5135658886283636],[112,-35,67,-0.512801325879991],[112,-35,68,-0.5125248022377491],[112,-35,69,-0.5124049885198474],[112,-35,70,-0.5122450273483992],[112,-35,71,-0.5117878885939717],[112,-35,72,-0.5106964153237641],[112,-35,73,-0.509256019257009],[112,-35,74,-0.5080228541046381],[112,-35,75,-0.506874315906316],[112,-35,76,-0.505773471435532],[112,-35,77,-0.5047980308299884],[112,-35,78,-0.5039559541328344],[112,-35,79,-0.5031836007838137],[112,-34,64,-0.5171010829508305],[112,-34,65,-0.5150407766923308],[112,-34,66,-0.5135658886283636],[112,-34,67,-0.512801325879991],[112,-34,68,-0.5125248022377491],[112,-34,69,-0.5124049885198474],[112,-34,70,-0.5122450273483992],[112,-34,71,-0.5117878885939717],[112,-34,72,-0.5106964153237641],[112,-34,73,-0.509256019257009],[112,-34,74,-0.5080228541046381],[112,-34,75,-0.506874315906316],[112,-34,76,-0.505773471435532],[112,-34,77,-0.5047980308299884],[112,-34,78,-0.5039559541328344],[112,-34,79,-0.5031836007838137],[112,-33,64,-0.5171010829508305],[112,-33,65,-0.5150407766923308],[112,-33,66,-0.5135658886283636],[112,-33,67,-0.512801325879991],[112,-33,68,-0.5125248022377491],[112,-33,69,-0.5124049885198474],[112,-33,70,-0.5122450273483992],[112,-33,71,-0.5117878885939717],[112,-33,72,-0.5106964153237641],[112,-33,73,-0.509256019257009],[112,-33,74,-0.5080228541046381],[112,-33,75,-0.506874315906316],[112,-33,76,-0.505773471435532],[112,-33,77,-0.5047980308299884],[112,-33,78,-0.5039559541328344],[112,-33,79,-0.5031836007838137],[112,-32,64,-0.5171010829508305],[112,-32,65,-0.5150407766923308],[112,-32,66,-0.5135658886283636],[112,-32,67,-0.512801325879991],[112,-32,68,-0.5125248022377491],[112,-32,69,-0.5124049885198474],[112,-32,70,-0.5122450273483992],[112,-32,71,-0.5117878885939717],[112,-32,72,-0.5106964153237641],[112,-32,73,-0.509256019257009],[112,-32,74,-0.5080228541046381],[112,-32,75,-0.506874315906316],[112,-32,76,-0.505773471435532],[112,-32,77,-0.5047980308299884],[112,-32,78,-0.5039559541328344],[112,-32,79,-0.5031836007838137],[112,-31,64,-0.5171010829508305],[112,-31,65,-0.5150407766923308],[112,-31,66,-0.5135658886283636],[112,-31,67,-0.512801325879991],[112,-31,68,-0.5125248022377491],[112,-31,69,-0.5124049885198474],[112,-31,70,-0.5122450273483992],[112,-31,71,-0.5117878885939717],[112,-31,72,-0.5106964153237641],[112,-31,73,-0.509256019257009],[112,-31,74,-0.5080228541046381],[112,-31,75,-0.506874315906316],[112,-31,76,-0.505773471435532],[112,-31,77,-0.5047980308299884],[112,-31,78,-0.5039559541328344],[112,-31,79,-0.5031836007838137],[112,-30,64,-0.5171010829508305],[112,-30,65,-0.5150407766923308],[112,-30,66,-0.5135658886283636],[112,-30,67,-0.512801325879991],[112,-30,68,-0.5125248022377491],[112,-30,69,-0.5124049885198474],[112,-30,70,-0.5122450273483992],[112,-30,71,-0.5117878885939717],[112,-30,72,-0.5106964153237641],[112,-30,73,-0.509256019257009],[112,-30,74,-0.5080228541046381],[112,-30,75,-0.506874315906316],[112,-30,76,-0.505773471435532],[112,-30,77,-0.5047980308299884],[112,-30,78,-0.5039559541328344],[112,-30,79,-0.5031836007838137],[112,-29,64,-0.5171010829508305],[112,-29,65,-0.5150407766923308],[112,-29,66,-0.5135658886283636],[112,-29,67,-0.512801325879991],[112,-29,68,-0.5125248022377491],[112,-29,69,-0.5124049885198474],[112,-29,70,-0.5122450273483992],[112,-29,71,-0.5117878885939717],[112,-29,72,-0.5106964153237641],[112,-29,73,-0.509256019257009],[112,-29,74,-0.5080228541046381],[112,-29,75,-0.506874315906316],[112,-29,76,-0.505773471435532],[112,-29,77,-0.5047980308299884],[112,-29,78,-0.5039559541328344],[112,-29,79,-0.5031836007838137],[112,-28,64,-0.5171010829508305],[112,-28,65,-0.5150407766923308],[112,-28,66,-0.5135658886283636],[112,-28,67,-0.512801325879991],[112,-28,68,-0.5125248022377491],[112,-28,69,-0.5124049885198474],[112,-28,70,-0.5122450273483992],[112,-28,71,-0.5117878885939717],[112,-28,72,-0.5106964153237641],[112,-28,73,-0.509256019257009],[112,-28,74,-0.5080228541046381],[112,-28,75,-0.506874315906316],[112,-28,76,-0.505773471435532],[112,-28,77,-0.5047980308299884],[112,-28,78,-0.5039559541328344],[112,-28,79,-0.5031836007838137],[112,-27,64,-0.5171010829508305],[112,-27,65,-0.5150407766923308],[112,-27,66,-0.5135658886283636],[112,-27,67,-0.512801325879991],[112,-27,68,-0.5125248022377491],[112,-27,69,-0.5124049885198474],[112,-27,70,-0.5122450273483992],[112,-27,71,-0.5117878885939717],[112,-27,72,-0.5106964153237641],[112,-27,73,-0.509256019257009],[112,-27,74,-0.5080228541046381],[112,-27,75,-0.506874315906316],[112,-27,76,-0.505773471435532],[112,-27,77,-0.5047980308299884],[112,-27,78,-0.5039559541328344],[112,-27,79,-0.5031836007838137],[112,-26,64,-0.5171010829508305],[112,-26,65,-0.5150407766923308],[112,-26,66,-0.5135658886283636],[112,-26,67,-0.512801325879991],[112,-26,68,-0.5125248022377491],[112,-26,69,-0.5124049885198474],[112,-26,70,-0.5122450273483992],[112,-26,71,-0.5117878885939717],[112,-26,72,-0.5106964153237641],[112,-26,73,-0.509256019257009],[112,-26,74,-0.5080228541046381],[112,-26,75,-0.506874315906316],[112,-26,76,-0.505773471435532],[112,-26,77,-0.5047980308299884],[112,-26,78,-0.5039559541328344],[112,-26,79,-0.5031836007838137],[112,-25,64,-0.5171010829508305],[112,-25,65,-0.5150407766923308],[112,-25,66,-0.5135658886283636],[112,-25,67,-0.512801325879991],[112,-25,68,-0.5125248022377491],[112,-25,69,-0.5124049885198474],[112,-25,70,-0.5122450273483992],[112,-25,71,-0.5117878885939717],[112,-25,72,-0.5106964153237641],[112,-25,73,-0.509256019257009],[112,-25,74,-0.5080228541046381],[112,-25,75,-0.506874315906316],[112,-25,76,-0.505773471435532],[112,-25,77,-0.5047980308299884],[112,-25,78,-0.5039559541328344],[112,-25,79,-0.5031836007838137],[112,-24,64,-0.5171010829508305],[112,-24,65,-0.5150407766923308],[112,-24,66,-0.5135658886283636],[112,-24,67,-0.512801325879991],[112,-24,68,-0.5125248022377491],[112,-24,69,-0.5124049885198474],[112,-24,70,-0.5122450273483992],[112,-24,71,-0.5117878885939717],[112,-24,72,-0.5106964153237641],[112,-24,73,-0.509256019257009],[112,-24,74,-0.5080228541046381],[112,-24,75,-0.506874315906316],[112,-24,76,-0.505773471435532],[112,-24,77,-0.5047980308299884],[112,-24,78,-0.5039559541328344],[112,-24,79,-0.5031836007838137],[112,-23,64,-0.5171010829508305],[112,-23,65,-0.5150407766923308],[112,-23,66,-0.5135658886283636],[112,-23,67,-0.512801325879991],[112,-23,68,-0.5125248022377491],[112,-23,69,-0.5124049885198474],[112,-23,70,-0.5122450273483992],[112,-23,71,-0.5117878885939717],[112,-23,72,-0.5106964153237641],[112,-23,73,-0.509256019257009],[112,-23,74,-0.5080228541046381],[112,-23,75,-0.506874315906316],[112,-23,76,-0.505773471435532],[112,-23,77,-0.5047980308299884],[112,-23,78,-0.5039559541328344],[112,-23,79,-0.5031836007838137],[112,-22,64,-0.5171010829508305],[112,-22,65,-0.5150407766923308],[112,-22,66,-0.5135658886283636],[112,-22,67,-0.512801325879991],[112,-22,68,-0.5125248022377491],[112,-22,69,-0.5124049885198474],[112,-22,70,-0.5122450273483992],[112,-22,71,-0.5117878885939717],[112,-22,72,-0.5106964153237641],[112,-22,73,-0.509256019257009],[112,-22,74,-0.5080228541046381],[112,-22,75,-0.506874315906316],[112,-22,76,-0.505773471435532],[112,-22,77,-0.5047980308299884],[112,-22,78,-0.5039559541328344],[112,-22,79,-0.5031836007838137],[112,-21,64,-0.5171010829508305],[112,-21,65,-0.5150407766923308],[112,-21,66,-0.5135658886283636],[112,-21,67,-0.512801325879991],[112,-21,68,-0.5125248022377491],[112,-21,69,-0.5124049885198474],[112,-21,70,-0.5122450273483992],[112,-21,71,-0.5117878885939717],[112,-21,72,-0.5106964153237641],[112,-21,73,-0.509256019257009],[112,-21,74,-0.5080228541046381],[112,-21,75,-0.506874315906316],[112,-21,76,-0.505773471435532],[112,-21,77,-0.5047980308299884],[112,-21,78,-0.5039559541328344],[112,-21,79,-0.5031836007838137],[112,-20,64,-0.5171010829508305],[112,-20,65,-0.5150407766923308],[112,-20,66,-0.5135658886283636],[112,-20,67,-0.512801325879991],[112,-20,68,-0.5125248022377491],[112,-20,69,-0.5124049885198474],[112,-20,70,-0.5122450273483992],[112,-20,71,-0.5117878885939717],[112,-20,72,-0.5106964153237641],[112,-20,73,-0.509256019257009],[112,-20,74,-0.5080228541046381],[112,-20,75,-0.506874315906316],[112,-20,76,-0.505773471435532],[112,-20,77,-0.5047980308299884],[112,-20,78,-0.5039559541328344],[112,-20,79,-0.5031836007838137],[112,-19,64,-0.5171010829508305],[112,-19,65,-0.5150407766923308],[112,-19,66,-0.5135658886283636],[112,-19,67,-0.512801325879991],[112,-19,68,-0.5125248022377491],[112,-19,69,-0.5124049885198474],[112,-19,70,-0.5122450273483992],[112,-19,71,-0.5117878885939717],[112,-19,72,-0.5106964153237641],[112,-19,73,-0.509256019257009],[112,-19,74,-0.5080228541046381],[112,-19,75,-0.506874315906316],[112,-19,76,-0.505773471435532],[112,-19,77,-0.5047980308299884],[112,-19,78,-0.5039559541328344],[112,-19,79,-0.5031836007838137],[112,-18,64,-0.5171010829508305],[112,-18,65,-0.5150407766923308],[112,-18,66,-0.5135658886283636],[112,-18,67,-0.512801325879991],[112,-18,68,-0.5125248022377491],[112,-18,69,-0.5124049885198474],[112,-18,70,-0.5122450273483992],[112,-18,71,-0.5117878885939717],[112,-18,72,-0.5106964153237641],[112,-18,73,-0.509256019257009],[112,-18,74,-0.5080228541046381],[112,-18,75,-0.506874315906316],[112,-18,76,-0.505773471435532],[112,-18,77,-0.5047980308299884],[112,-18,78,-0.5039559541328344],[112,-18,79,-0.5031836007838137],[112,-17,64,-0.5171010829508305],[112,-17,65,-0.5150407766923308],[112,-17,66,-0.5135658886283636],[112,-17,67,-0.512801325879991],[112,-17,68,-0.5125248022377491],[112,-17,69,-0.5124049885198474],[112,-17,70,-0.5122450273483992],[112,-17,71,-0.5117878885939717],[112,-17,72,-0.5106964153237641],[112,-17,73,-0.509256019257009],[112,-17,74,-0.5080228541046381],[112,-17,75,-0.506874315906316],[112,-17,76,-0.505773471435532],[112,-17,77,-0.5047980308299884],[112,-17,78,-0.5039559541328344],[112,-17,79,-0.5031836007838137],[112,-16,64,-0.5171010829508305],[112,-16,65,-0.5150407766923308],[112,-16,66,-0.5135658886283636],[112,-16,67,-0.512801325879991],[112,-16,68,-0.5125248022377491],[112,-16,69,-0.5124049885198474],[112,-16,70,-0.5122450273483992],[112,-16,71,-0.5117878885939717],[112,-16,72,-0.5106964153237641],[112,-16,73,-0.509256019257009],[112,-16,74,-0.5080228541046381],[112,-16,75,-0.506874315906316],[112,-16,76,-0.505773471435532],[112,-16,77,-0.5047980308299884],[112,-16,78,-0.5039559541328344],[112,-16,79,-0.5031836007838137],[112,-15,64,-0.5171010829508305],[112,-15,65,-0.5150407766923308],[112,-15,66,-0.5135658886283636],[112,-15,67,-0.512801325879991],[112,-15,68,-0.5125248022377491],[112,-15,69,-0.5124049885198474],[112,-15,70,-0.5122450273483992],[112,-15,71,-0.5117878885939717],[112,-15,72,-0.5106964153237641],[112,-15,73,-0.509256019257009],[112,-15,74,-0.5080228541046381],[112,-15,75,-0.506874315906316],[112,-15,76,-0.505773471435532],[112,-15,77,-0.5047980308299884],[112,-15,78,-0.5039559541328344],[112,-15,79,-0.5031836007838137],[112,-14,64,-0.5171010829508305],[112,-14,65,-0.5150407766923308],[112,-14,66,-0.5135658886283636],[112,-14,67,-0.512801325879991],[112,-14,68,-0.5125248022377491],[112,-14,69,-0.5124049885198474],[112,-14,70,-0.5122450273483992],[112,-14,71,-0.5117878885939717],[112,-14,72,-0.5106964153237641],[112,-14,73,-0.509256019257009],[112,-14,74,-0.5080228541046381],[112,-14,75,-0.506874315906316],[112,-14,76,-0.505773471435532],[112,-14,77,-0.5047980308299884],[112,-14,78,-0.5039559541328344],[112,-14,79,-0.5031836007838137],[112,-13,64,-0.5171010829508305],[112,-13,65,-0.5150407766923308],[112,-13,66,-0.5135658886283636],[112,-13,67,-0.512801325879991],[112,-13,68,-0.5125248022377491],[112,-13,69,-0.5124049885198474],[112,-13,70,-0.5122450273483992],[112,-13,71,-0.5117878885939717],[112,-13,72,-0.5106964153237641],[112,-13,73,-0.509256019257009],[112,-13,74,-0.5080228541046381],[112,-13,75,-0.506874315906316],[112,-13,76,-0.505773471435532],[112,-13,77,-0.5047980308299884],[112,-13,78,-0.5039559541328344],[112,-13,79,-0.5031836007838137],[112,-12,64,-0.5171010829508305],[112,-12,65,-0.5150407766923308],[112,-12,66,-0.5135658886283636],[112,-12,67,-0.512801325879991],[112,-12,68,-0.5125248022377491],[112,-12,69,-0.5124049885198474],[112,-12,70,-0.5122450273483992],[112,-12,71,-0.5117878885939717],[112,-12,72,-0.5106964153237641],[112,-12,73,-0.509256019257009],[112,-12,74,-0.5080228541046381],[112,-12,75,-0.506874315906316],[112,-12,76,-0.505773471435532],[112,-12,77,-0.5047980308299884],[112,-12,78,-0.5039559541328344],[112,-12,79,-0.5031836007838137],[112,-11,64,-0.5171010829508305],[112,-11,65,-0.5150407766923308],[112,-11,66,-0.5135658886283636],[112,-11,67,-0.512801325879991],[112,-11,68,-0.5125248022377491],[112,-11,69,-0.5124049885198474],[112,-11,70,-0.5122450273483992],[112,-11,71,-0.5117878885939717],[112,-11,72,-0.5106964153237641],[112,-11,73,-0.509256019257009],[112,-11,74,-0.5080228541046381],[112,-11,75,-0.506874315906316],[112,-11,76,-0.505773471435532],[112,-11,77,-0.5047980308299884],[112,-11,78,-0.5039559541328344],[112,-11,79,-0.5031836007838137],[112,-10,64,-0.5171010829508305],[112,-10,65,-0.5150407766923308],[112,-10,66,-0.5135658886283636],[112,-10,67,-0.512801325879991],[112,-10,68,-0.5125248022377491],[112,-10,69,-0.5124049885198474],[112,-10,70,-0.5122450273483992],[112,-10,71,-0.5117878885939717],[112,-10,72,-0.5106964153237641],[112,-10,73,-0.509256019257009],[112,-10,74,-0.5080228541046381],[112,-10,75,-0.506874315906316],[112,-10,76,-0.505773471435532],[112,-10,77,-0.5047980308299884],[112,-10,78,-0.5039559541328344],[112,-10,79,-0.5031836007838137],[112,-9,64,-0.5171010829508305],[112,-9,65,-0.5150407766923308],[112,-9,66,-0.5135658886283636],[112,-9,67,-0.512801325879991],[112,-9,68,-0.5125248022377491],[112,-9,69,-0.5124049885198474],[112,-9,70,-0.5122450273483992],[112,-9,71,-0.5117878885939717],[112,-9,72,-0.5106964153237641],[112,-9,73,-0.509256019257009],[112,-9,74,-0.5080228541046381],[112,-9,75,-0.506874315906316],[112,-9,76,-0.505773471435532],[112,-9,77,-0.5047980308299884],[112,-9,78,-0.5039559541328344],[112,-9,79,-0.5031836007838137],[112,-8,64,-0.5171010829508305],[112,-8,65,-0.5150407766923308],[112,-8,66,-0.5135658886283636],[112,-8,67,-0.512801325879991],[112,-8,68,-0.5125248022377491],[112,-8,69,-0.5124049885198474],[112,-8,70,-0.5122450273483992],[112,-8,71,-0.5117878885939717],[112,-8,72,-0.5106964153237641],[112,-8,73,-0.509256019257009],[112,-8,74,-0.5080228541046381],[112,-8,75,-0.506874315906316],[112,-8,76,-0.505773471435532],[112,-8,77,-0.5047980308299884],[112,-8,78,-0.5039559541328344],[112,-8,79,-0.5031836007838137],[112,-7,64,-0.5171010829508305],[112,-7,65,-0.5150407766923308],[112,-7,66,-0.5135658886283636],[112,-7,67,-0.512801325879991],[112,-7,68,-0.5125248022377491],[112,-7,69,-0.5124049885198474],[112,-7,70,-0.5122450273483992],[112,-7,71,-0.5117878885939717],[112,-7,72,-0.5106964153237641],[112,-7,73,-0.509256019257009],[112,-7,74,-0.5080228541046381],[112,-7,75,-0.506874315906316],[112,-7,76,-0.505773471435532],[112,-7,77,-0.5047980308299884],[112,-7,78,-0.5039559541328344],[112,-7,79,-0.5031836007838137],[112,-6,64,-0.5171010829508305],[112,-6,65,-0.5150407766923308],[112,-6,66,-0.5135658886283636],[112,-6,67,-0.512801325879991],[112,-6,68,-0.5125248022377491],[112,-6,69,-0.5124049885198474],[112,-6,70,-0.5122450273483992],[112,-6,71,-0.5117878885939717],[112,-6,72,-0.5106964153237641],[112,-6,73,-0.509256019257009],[112,-6,74,-0.5080228541046381],[112,-6,75,-0.506874315906316],[112,-6,76,-0.505773471435532],[112,-6,77,-0.5047980308299884],[112,-6,78,-0.5039559541328344],[112,-6,79,-0.5031836007838137],[112,-5,64,-0.5171010829508305],[112,-5,65,-0.5150407766923308],[112,-5,66,-0.5135658886283636],[112,-5,67,-0.512801325879991],[112,-5,68,-0.5125248022377491],[112,-5,69,-0.5124049885198474],[112,-5,70,-0.5122450273483992],[112,-5,71,-0.5117878885939717],[112,-5,72,-0.5106964153237641],[112,-5,73,-0.509256019257009],[112,-5,74,-0.5080228541046381],[112,-5,75,-0.506874315906316],[112,-5,76,-0.505773471435532],[112,-5,77,-0.5047980308299884],[112,-5,78,-0.5039559541328344],[112,-5,79,-0.5031836007838137],[112,-4,64,-0.5171010829508305],[112,-4,65,-0.5150407766923308],[112,-4,66,-0.5135658886283636],[112,-4,67,-0.512801325879991],[112,-4,68,-0.5125248022377491],[112,-4,69,-0.5124049885198474],[112,-4,70,-0.5122450273483992],[112,-4,71,-0.5117878885939717],[112,-4,72,-0.5106964153237641],[112,-4,73,-0.509256019257009],[112,-4,74,-0.5080228541046381],[112,-4,75,-0.506874315906316],[112,-4,76,-0.505773471435532],[112,-4,77,-0.5047980308299884],[112,-4,78,-0.5039559541328344],[112,-4,79,-0.5031836007838137],[112,-3,64,-0.5171010829508305],[112,-3,65,-0.5150407766923308],[112,-3,66,-0.5135658886283636],[112,-3,67,-0.512801325879991],[112,-3,68,-0.5125248022377491],[112,-3,69,-0.5124049885198474],[112,-3,70,-0.5122450273483992],[112,-3,71,-0.5117878885939717],[112,-3,72,-0.5106964153237641],[112,-3,73,-0.509256019257009],[112,-3,74,-0.5080228541046381],[112,-3,75,-0.506874315906316],[112,-3,76,-0.505773471435532],[112,-3,77,-0.5047980308299884],[112,-3,78,-0.5039559541328344],[112,-3,79,-0.5031836007838137],[112,-2,64,-0.5171010829508305],[112,-2,65,-0.5150407766923308],[112,-2,66,-0.5135658886283636],[112,-2,67,-0.512801325879991],[112,-2,68,-0.5125248022377491],[112,-2,69,-0.5124049885198474],[112,-2,70,-0.5122450273483992],[112,-2,71,-0.5117878885939717],[112,-2,72,-0.5106964153237641],[112,-2,73,-0.509256019257009],[112,-2,74,-0.5080228541046381],[112,-2,75,-0.506874315906316],[112,-2,76,-0.505773471435532],[112,-2,77,-0.5047980308299884],[112,-2,78,-0.5039559541328344],[112,-2,79,-0.5031836007838137],[112,-1,64,-0.5171010829508305],[112,-1,65,-0.5150407766923308],[112,-1,66,-0.5135658886283636],[112,-1,67,-0.512801325879991],[112,-1,68,-0.5125248022377491],[112,-1,69,-0.5124049885198474],[112,-1,70,-0.5122450273483992],[112,-1,71,-0.5117878885939717],[112,-1,72,-0.5106964153237641],[112,-1,73,-0.509256019257009],[112,-1,74,-0.5080228541046381],[112,-1,75,-0.506874315906316],[112,-1,76,-0.505773471435532],[112,-1,77,-0.5047980308299884],[112,-1,78,-0.5039559541328344],[112,-1,79,-0.5031836007838137],[112,0,64,-0.5171010829508305],[112,0,65,-0.5150407766923308],[112,0,66,-0.5135658886283636],[112,0,67,-0.512801325879991],[112,0,68,-0.5125248022377491],[112,0,69,-0.5124049885198474],[112,0,70,-0.5122450273483992],[112,0,71,-0.5117878885939717],[112,0,72,-0.5106964153237641],[112,0,73,-0.509256019257009],[112,0,74,-0.5080228541046381],[112,0,75,-0.506874315906316],[112,0,76,-0.505773471435532],[112,0,77,-0.5047980308299884],[112,0,78,-0.5039559541328344],[112,0,79,-0.5031836007838137],[112,1,64,-0.5171010829508305],[112,1,65,-0.5150407766923308],[112,1,66,-0.5135658886283636],[112,1,67,-0.512801325879991],[112,1,68,-0.5125248022377491],[112,1,69,-0.5124049885198474],[112,1,70,-0.5122450273483992],[112,1,71,-0.5117878885939717],[112,1,72,-0.5106964153237641],[112,1,73,-0.509256019257009],[112,1,74,-0.5080228541046381],[112,1,75,-0.506874315906316],[112,1,76,-0.505773471435532],[112,1,77,-0.5047980308299884],[112,1,78,-0.5039559541328344],[112,1,79,-0.5031836007838137],[112,2,64,-0.5171010829508305],[112,2,65,-0.5150407766923308],[112,2,66,-0.5135658886283636],[112,2,67,-0.512801325879991],[112,2,68,-0.5125248022377491],[112,2,69,-0.5124049885198474],[112,2,70,-0.5122450273483992],[112,2,71,-0.5117878885939717],[112,2,72,-0.5106964153237641],[112,2,73,-0.509256019257009],[112,2,74,-0.5080228541046381],[112,2,75,-0.506874315906316],[112,2,76,-0.505773471435532],[112,2,77,-0.5047980308299884],[112,2,78,-0.5039559541328344],[112,2,79,-0.5031836007838137],[112,3,64,-0.5171010829508305],[112,3,65,-0.5150407766923308],[112,3,66,-0.5135658886283636],[112,3,67,-0.512801325879991],[112,3,68,-0.5125248022377491],[112,3,69,-0.5124049885198474],[112,3,70,-0.5122450273483992],[112,3,71,-0.5117878885939717],[112,3,72,-0.5106964153237641],[112,3,73,-0.509256019257009],[112,3,74,-0.5080228541046381],[112,3,75,-0.506874315906316],[112,3,76,-0.505773471435532],[112,3,77,-0.5047980308299884],[112,3,78,-0.5039559541328344],[112,3,79,-0.5031836007838137],[112,4,64,-0.5171010829508305],[112,4,65,-0.5150407766923308],[112,4,66,-0.5135658886283636],[112,4,67,-0.512801325879991],[112,4,68,-0.5125248022377491],[112,4,69,-0.5124049885198474],[112,4,70,-0.5122450273483992],[112,4,71,-0.5117878885939717],[112,4,72,-0.5106964153237641],[112,4,73,-0.509256019257009],[112,4,74,-0.5080228541046381],[112,4,75,-0.506874315906316],[112,4,76,-0.505773471435532],[112,4,77,-0.5047980308299884],[112,4,78,-0.5039559541328344],[112,4,79,-0.5031836007838137],[112,5,64,-0.5171010829508305],[112,5,65,-0.5150407766923308],[112,5,66,-0.5135658886283636],[112,5,67,-0.512801325879991],[112,5,68,-0.5125248022377491],[112,5,69,-0.5124049885198474],[112,5,70,-0.5122450273483992],[112,5,71,-0.5117878885939717],[112,5,72,-0.5106964153237641],[112,5,73,-0.509256019257009],[112,5,74,-0.5080228541046381],[112,5,75,-0.506874315906316],[112,5,76,-0.505773471435532],[112,5,77,-0.5047980308299884],[112,5,78,-0.5039559541328344],[112,5,79,-0.5031836007838137],[112,6,64,-0.5171010829508305],[112,6,65,-0.5150407766923308],[112,6,66,-0.5135658886283636],[112,6,67,-0.512801325879991],[112,6,68,-0.5125248022377491],[112,6,69,-0.5124049885198474],[112,6,70,-0.5122450273483992],[112,6,71,-0.5117878885939717],[112,6,72,-0.5106964153237641],[112,6,73,-0.509256019257009],[112,6,74,-0.5080228541046381],[112,6,75,-0.506874315906316],[112,6,76,-0.505773471435532],[112,6,77,-0.5047980308299884],[112,6,78,-0.5039559541328344],[112,6,79,-0.5031836007838137],[112,7,64,-0.5171010829508305],[112,7,65,-0.5150407766923308],[112,7,66,-0.5135658886283636],[112,7,67,-0.512801325879991],[112,7,68,-0.5125248022377491],[112,7,69,-0.5124049885198474],[112,7,70,-0.5122450273483992],[112,7,71,-0.5117878885939717],[112,7,72,-0.5106964153237641],[112,7,73,-0.509256019257009],[112,7,74,-0.5080228541046381],[112,7,75,-0.506874315906316],[112,7,76,-0.505773471435532],[112,7,77,-0.5047980308299884],[112,7,78,-0.5039559541328344],[112,7,79,-0.5031836007838137],[112,8,64,-0.5171010829508305],[112,8,65,-0.5150407766923308],[112,8,66,-0.5135658886283636],[112,8,67,-0.512801325879991],[112,8,68,-0.5125248022377491],[112,8,69,-0.5124049885198474],[112,8,70,-0.5122450273483992],[112,8,71,-0.5117878885939717],[112,8,72,-0.5106964153237641],[112,8,73,-0.509256019257009],[112,8,74,-0.5080228541046381],[112,8,75,-0.506874315906316],[112,8,76,-0.505773471435532],[112,8,77,-0.5047980308299884],[112,8,78,-0.5039559541328344],[112,8,79,-0.5031836007838137],[112,9,64,-0.5171010829508305],[112,9,65,-0.5150407766923308],[112,9,66,-0.5135658886283636],[112,9,67,-0.512801325879991],[112,9,68,-0.5125248022377491],[112,9,69,-0.5124049885198474],[112,9,70,-0.5122450273483992],[112,9,71,-0.5117878885939717],[112,9,72,-0.5106964153237641],[112,9,73,-0.509256019257009],[112,9,74,-0.5080228541046381],[112,9,75,-0.506874315906316],[112,9,76,-0.505773471435532],[112,9,77,-0.5047980308299884],[112,9,78,-0.5039559541328344],[112,9,79,-0.5031836007838137],[112,10,64,-0.5171010829508305],[112,10,65,-0.5150407766923308],[112,10,66,-0.5135658886283636],[112,10,67,-0.512801325879991],[112,10,68,-0.5125248022377491],[112,10,69,-0.5124049885198474],[112,10,70,-0.5122450273483992],[112,10,71,-0.5117878885939717],[112,10,72,-0.5106964153237641],[112,10,73,-0.509256019257009],[112,10,74,-0.5080228541046381],[112,10,75,-0.506874315906316],[112,10,76,-0.505773471435532],[112,10,77,-0.5047980308299884],[112,10,78,-0.5039559541328344],[112,10,79,-0.5031836007838137],[112,11,64,-0.5171010829508305],[112,11,65,-0.5150407766923308],[112,11,66,-0.5135658886283636],[112,11,67,-0.512801325879991],[112,11,68,-0.5125248022377491],[112,11,69,-0.5124049885198474],[112,11,70,-0.5122450273483992],[112,11,71,-0.5117878885939717],[112,11,72,-0.5106964153237641],[112,11,73,-0.509256019257009],[112,11,74,-0.5080228541046381],[112,11,75,-0.506874315906316],[112,11,76,-0.505773471435532],[112,11,77,-0.5047980308299884],[112,11,78,-0.5039559541328344],[112,11,79,-0.5031836007838137],[112,12,64,-0.5171010829508305],[112,12,65,-0.5150407766923308],[112,12,66,-0.5135658886283636],[112,12,67,-0.512801325879991],[112,12,68,-0.5125248022377491],[112,12,69,-0.5124049885198474],[112,12,70,-0.5122450273483992],[112,12,71,-0.5117878885939717],[112,12,72,-0.5106964153237641],[112,12,73,-0.509256019257009],[112,12,74,-0.5080228541046381],[112,12,75,-0.506874315906316],[112,12,76,-0.505773471435532],[112,12,77,-0.5047980308299884],[112,12,78,-0.5039559541328344],[112,12,79,-0.5031836007838137],[112,13,64,-0.5171010829508305],[112,13,65,-0.5150407766923308],[112,13,66,-0.5135658886283636],[112,13,67,-0.512801325879991],[112,13,68,-0.5125248022377491],[112,13,69,-0.5124049885198474],[112,13,70,-0.5122450273483992],[112,13,71,-0.5117878885939717],[112,13,72,-0.5106964153237641],[112,13,73,-0.509256019257009],[112,13,74,-0.5080228541046381],[112,13,75,-0.506874315906316],[112,13,76,-0.505773471435532],[112,13,77,-0.5047980308299884],[112,13,78,-0.5039559541328344],[112,13,79,-0.5031836007838137],[112,14,64,-0.5171010829508305],[112,14,65,-0.5150407766923308],[112,14,66,-0.5135658886283636],[112,14,67,-0.512801325879991],[112,14,68,-0.5125248022377491],[112,14,69,-0.5124049885198474],[112,14,70,-0.5122450273483992],[112,14,71,-0.5117878885939717],[112,14,72,-0.5106964153237641],[112,14,73,-0.509256019257009],[112,14,74,-0.5080228541046381],[112,14,75,-0.506874315906316],[112,14,76,-0.505773471435532],[112,14,77,-0.5047980308299884],[112,14,78,-0.5039559541328344],[112,14,79,-0.5031836007838137],[112,15,64,-0.5171010829508305],[112,15,65,-0.5150407766923308],[112,15,66,-0.5135658886283636],[112,15,67,-0.512801325879991],[112,15,68,-0.5125248022377491],[112,15,69,-0.5124049885198474],[112,15,70,-0.5122450273483992],[112,15,71,-0.5117878885939717],[112,15,72,-0.5106964153237641],[112,15,73,-0.509256019257009],[112,15,74,-0.5080228541046381],[112,15,75,-0.506874315906316],[112,15,76,-0.505773471435532],[112,15,77,-0.5047980308299884],[112,15,78,-0.5039559541328344],[112,15,79,-0.5031836007838137],[112,16,64,-0.5171010829508305],[112,16,65,-0.5150407766923308],[112,16,66,-0.5135658886283636],[112,16,67,-0.512801325879991],[112,16,68,-0.5125248022377491],[112,16,69,-0.5124049885198474],[112,16,70,-0.5122450273483992],[112,16,71,-0.5117878885939717],[112,16,72,-0.5106964153237641],[112,16,73,-0.509256019257009],[112,16,74,-0.5080228541046381],[112,16,75,-0.506874315906316],[112,16,76,-0.505773471435532],[112,16,77,-0.5047980308299884],[112,16,78,-0.5039559541328344],[112,16,79,-0.5031836007838137],[112,17,64,-0.5171010829508305],[112,17,65,-0.5150407766923308],[112,17,66,-0.5135658886283636],[112,17,67,-0.512801325879991],[112,17,68,-0.5125248022377491],[112,17,69,-0.5124049885198474],[112,17,70,-0.5122450273483992],[112,17,71,-0.5117878885939717],[112,17,72,-0.5106964153237641],[112,17,73,-0.509256019257009],[112,17,74,-0.5080228541046381],[112,17,75,-0.506874315906316],[112,17,76,-0.505773471435532],[112,17,77,-0.5047980308299884],[112,17,78,-0.5039559541328344],[112,17,79,-0.5031836007838137],[112,18,64,-0.5171010829508305],[112,18,65,-0.5150407766923308],[112,18,66,-0.5135658886283636],[112,18,67,-0.512801325879991],[112,18,68,-0.5125248022377491],[112,18,69,-0.5124049885198474],[112,18,70,-0.5122450273483992],[112,18,71,-0.5117878885939717],[112,18,72,-0.5106964153237641],[112,18,73,-0.509256019257009],[112,18,74,-0.5080228541046381],[112,18,75,-0.506874315906316],[112,18,76,-0.505773471435532],[112,18,77,-0.5047980308299884],[112,18,78,-0.5039559541328344],[112,18,79,-0.5031836007838137],[112,19,64,-0.5171010829508305],[112,19,65,-0.5150407766923308],[112,19,66,-0.5135658886283636],[112,19,67,-0.512801325879991],[112,19,68,-0.5125248022377491],[112,19,69,-0.5124049885198474],[112,19,70,-0.5122450273483992],[112,19,71,-0.5117878885939717],[112,19,72,-0.5106964153237641],[112,19,73,-0.509256019257009],[112,19,74,-0.5080228541046381],[112,19,75,-0.506874315906316],[112,19,76,-0.505773471435532],[112,19,77,-0.5047980308299884],[112,19,78,-0.5039559541328344],[112,19,79,-0.5031836007838137],[112,20,64,-0.5171010829508305],[112,20,65,-0.5150407766923308],[112,20,66,-0.5135658886283636],[112,20,67,-0.512801325879991],[112,20,68,-0.5125248022377491],[112,20,69,-0.5124049885198474],[112,20,70,-0.5122450273483992],[112,20,71,-0.5117878885939717],[112,20,72,-0.5106964153237641],[112,20,73,-0.509256019257009],[112,20,74,-0.5080228541046381],[112,20,75,-0.506874315906316],[112,20,76,-0.505773471435532],[112,20,77,-0.5047980308299884],[112,20,78,-0.5039559541328344],[112,20,79,-0.5031836007838137],[112,21,64,-0.5171010829508305],[112,21,65,-0.5150407766923308],[112,21,66,-0.5135658886283636],[112,21,67,-0.512801325879991],[112,21,68,-0.5125248022377491],[112,21,69,-0.5124049885198474],[112,21,70,-0.5122450273483992],[112,21,71,-0.5117878885939717],[112,21,72,-0.5106964153237641],[112,21,73,-0.509256019257009],[112,21,74,-0.5080228541046381],[112,21,75,-0.506874315906316],[112,21,76,-0.505773471435532],[112,21,77,-0.5047980308299884],[112,21,78,-0.5039559541328344],[112,21,79,-0.5031836007838137],[112,22,64,-0.5171010829508305],[112,22,65,-0.5150407766923308],[112,22,66,-0.5135658886283636],[112,22,67,-0.512801325879991],[112,22,68,-0.5125248022377491],[112,22,69,-0.5124049885198474],[112,22,70,-0.5122450273483992],[112,22,71,-0.5117878885939717],[112,22,72,-0.5106964153237641],[112,22,73,-0.509256019257009],[112,22,74,-0.5080228541046381],[112,22,75,-0.506874315906316],[112,22,76,-0.505773471435532],[112,22,77,-0.5047980308299884],[112,22,78,-0.5039559541328344],[112,22,79,-0.5031836007838137],[112,23,64,-0.5171010829508305],[112,23,65,-0.5150407766923308],[112,23,66,-0.5135658886283636],[112,23,67,-0.512801325879991],[112,23,68,-0.5125248022377491],[112,23,69,-0.5124049885198474],[112,23,70,-0.5122450273483992],[112,23,71,-0.5117878885939717],[112,23,72,-0.5106964153237641],[112,23,73,-0.509256019257009],[112,23,74,-0.5080228541046381],[112,23,75,-0.506874315906316],[112,23,76,-0.505773471435532],[112,23,77,-0.5047980308299884],[112,23,78,-0.5039559541328344],[112,23,79,-0.5031836007838137],[112,24,64,-0.5171010829508305],[112,24,65,-0.5150407766923308],[112,24,66,-0.5135658886283636],[112,24,67,-0.512801325879991],[112,24,68,-0.5125248022377491],[112,24,69,-0.5124049885198474],[112,24,70,-0.5122450273483992],[112,24,71,-0.5117878885939717],[112,24,72,-0.5106964153237641],[112,24,73,-0.509256019257009],[112,24,74,-0.5080228541046381],[112,24,75,-0.506874315906316],[112,24,76,-0.505773471435532],[112,24,77,-0.5047980308299884],[112,24,78,-0.5039559541328344],[112,24,79,-0.5031836007838137],[112,25,64,-0.5171010829508305],[112,25,65,-0.5150407766923308],[112,25,66,-0.5135658886283636],[112,25,67,-0.512801325879991],[112,25,68,-0.5125248022377491],[112,25,69,-0.5124049885198474],[112,25,70,-0.5122450273483992],[112,25,71,-0.5117878885939717],[112,25,72,-0.5106964153237641],[112,25,73,-0.509256019257009],[112,25,74,-0.5080228541046381],[112,25,75,-0.506874315906316],[112,25,76,-0.505773471435532],[112,25,77,-0.5047980308299884],[112,25,78,-0.5039559541328344],[112,25,79,-0.5031836007838137],[112,26,64,-0.5171010829508305],[112,26,65,-0.5150407766923308],[112,26,66,-0.5135658886283636],[112,26,67,-0.512801325879991],[112,26,68,-0.5125248022377491],[112,26,69,-0.5124049885198474],[112,26,70,-0.5122450273483992],[112,26,71,-0.5117878885939717],[112,26,72,-0.5106964153237641],[112,26,73,-0.509256019257009],[112,26,74,-0.5080228541046381],[112,26,75,-0.506874315906316],[112,26,76,-0.505773471435532],[112,26,77,-0.5047980308299884],[112,26,78,-0.5039559541328344],[112,26,79,-0.5031836007838137],[112,27,64,-0.5171010829508305],[112,27,65,-0.5150407766923308],[112,27,66,-0.5135658886283636],[112,27,67,-0.512801325879991],[112,27,68,-0.5125248022377491],[112,27,69,-0.5124049885198474],[112,27,70,-0.5122450273483992],[112,27,71,-0.5117878885939717],[112,27,72,-0.5106964153237641],[112,27,73,-0.509256019257009],[112,27,74,-0.5080228541046381],[112,27,75,-0.506874315906316],[112,27,76,-0.505773471435532],[112,27,77,-0.5047980308299884],[112,27,78,-0.5039559541328344],[112,27,79,-0.5031836007838137],[112,28,64,-0.5171010829508305],[112,28,65,-0.5150407766923308],[112,28,66,-0.5135658886283636],[112,28,67,-0.512801325879991],[112,28,68,-0.5125248022377491],[112,28,69,-0.5124049885198474],[112,28,70,-0.5122450273483992],[112,28,71,-0.5117878885939717],[112,28,72,-0.5106964153237641],[112,28,73,-0.509256019257009],[112,28,74,-0.5080228541046381],[112,28,75,-0.506874315906316],[112,28,76,-0.505773471435532],[112,28,77,-0.5047980308299884],[112,28,78,-0.5039559541328344],[112,28,79,-0.5031836007838137],[112,29,64,-0.5171010829508305],[112,29,65,-0.5150407766923308],[112,29,66,-0.5135658886283636],[112,29,67,-0.512801325879991],[112,29,68,-0.5125248022377491],[112,29,69,-0.5124049885198474],[112,29,70,-0.5122450273483992],[112,29,71,-0.5117878885939717],[112,29,72,-0.5106964153237641],[112,29,73,-0.509256019257009],[112,29,74,-0.5080228541046381],[112,29,75,-0.506874315906316],[112,29,76,-0.505773471435532],[112,29,77,-0.5047980308299884],[112,29,78,-0.5039559541328344],[112,29,79,-0.5031836007838137],[112,30,64,-0.5171010829508305],[112,30,65,-0.5150407766923308],[112,30,66,-0.5135658886283636],[112,30,67,-0.512801325879991],[112,30,68,-0.5125248022377491],[112,30,69,-0.5124049885198474],[112,30,70,-0.5122450273483992],[112,30,71,-0.5117878885939717],[112,30,72,-0.5106964153237641],[112,30,73,-0.509256019257009],[112,30,74,-0.5080228541046381],[112,30,75,-0.506874315906316],[112,30,76,-0.505773471435532],[112,30,77,-0.5047980308299884],[112,30,78,-0.5039559541328344],[112,30,79,-0.5031836007838137],[112,31,64,-0.5171010829508305],[112,31,65,-0.5150407766923308],[112,31,66,-0.5135658886283636],[112,31,67,-0.512801325879991],[112,31,68,-0.5125248022377491],[112,31,69,-0.5124049885198474],[112,31,70,-0.5122450273483992],[112,31,71,-0.5117878885939717],[112,31,72,-0.5106964153237641],[112,31,73,-0.509256019257009],[112,31,74,-0.5080228541046381],[112,31,75,-0.506874315906316],[112,31,76,-0.505773471435532],[112,31,77,-0.5047980308299884],[112,31,78,-0.5039559541328344],[112,31,79,-0.5031836007838137],[112,32,64,-0.5171010829508305],[112,32,65,-0.5150407766923308],[112,32,66,-0.5135658886283636],[112,32,67,-0.512801325879991],[112,32,68,-0.5125248022377491],[112,32,69,-0.5124049885198474],[112,32,70,-0.5122450273483992],[112,32,71,-0.5117878885939717],[112,32,72,-0.5106964153237641],[112,32,73,-0.509256019257009],[112,32,74,-0.5080228541046381],[112,32,75,-0.506874315906316],[112,32,76,-0.505773471435532],[112,32,77,-0.5047980308299884],[112,32,78,-0.5039559541328344],[112,32,79,-0.5031836007838137],[112,33,64,-0.5171010829508305],[112,33,65,-0.5150407766923308],[112,33,66,-0.5135658886283636],[112,33,67,-0.512801325879991],[112,33,68,-0.5125248022377491],[112,33,69,-0.5124049885198474],[112,33,70,-0.5122450273483992],[112,33,71,-0.5117878885939717],[112,33,72,-0.5106964153237641],[112,33,73,-0.509256019257009],[112,33,74,-0.5080228541046381],[112,33,75,-0.506874315906316],[112,33,76,-0.505773471435532],[112,33,77,-0.5047980308299884],[112,33,78,-0.5039559541328344],[112,33,79,-0.5031836007838137],[112,34,64,-0.5171010829508305],[112,34,65,-0.5150407766923308],[112,34,66,-0.5135658886283636],[112,34,67,-0.512801325879991],[112,34,68,-0.5125248022377491],[112,34,69,-0.5124049885198474],[112,34,70,-0.5122450273483992],[112,34,71,-0.5117878885939717],[112,34,72,-0.5106964153237641],[112,34,73,-0.509256019257009],[112,34,74,-0.5080228541046381],[112,34,75,-0.506874315906316],[112,34,76,-0.505773471435532],[112,34,77,-0.5047980308299884],[112,34,78,-0.5039559541328344],[112,34,79,-0.5031836007838137],[112,35,64,-0.5171010829508305],[112,35,65,-0.5150407766923308],[112,35,66,-0.5135658886283636],[112,35,67,-0.512801325879991],[112,35,68,-0.5125248022377491],[112,35,69,-0.5124049885198474],[112,35,70,-0.5122450273483992],[112,35,71,-0.5117878885939717],[112,35,72,-0.5106964153237641],[112,35,73,-0.509256019257009],[112,35,74,-0.5080228541046381],[112,35,75,-0.506874315906316],[112,35,76,-0.505773471435532],[112,35,77,-0.5047980308299884],[112,35,78,-0.5039559541328344],[112,35,79,-0.5031836007838137],[112,36,64,-0.5171010829508305],[112,36,65,-0.5150407766923308],[112,36,66,-0.5135658886283636],[112,36,67,-0.512801325879991],[112,36,68,-0.5125248022377491],[112,36,69,-0.5124049885198474],[112,36,70,-0.5122450273483992],[112,36,71,-0.5117878885939717],[112,36,72,-0.5106964153237641],[112,36,73,-0.509256019257009],[112,36,74,-0.5080228541046381],[112,36,75,-0.506874315906316],[112,36,76,-0.505773471435532],[112,36,77,-0.5047980308299884],[112,36,78,-0.5039559541328344],[112,36,79,-0.5031836007838137],[112,37,64,-0.5171010829508305],[112,37,65,-0.5150407766923308],[112,37,66,-0.5135658886283636],[112,37,67,-0.512801325879991],[112,37,68,-0.5125248022377491],[112,37,69,-0.5124049885198474],[112,37,70,-0.5122450273483992],[112,37,71,-0.5117878885939717],[112,37,72,-0.5106964153237641],[112,37,73,-0.509256019257009],[112,37,74,-0.5080228541046381],[112,37,75,-0.506874315906316],[112,37,76,-0.505773471435532],[112,37,77,-0.5047980308299884],[112,37,78,-0.5039559541328344],[112,37,79,-0.5031836007838137],[112,38,64,-0.5171010829508305],[112,38,65,-0.5150407766923308],[112,38,66,-0.5135658886283636],[112,38,67,-0.512801325879991],[112,38,68,-0.5125248022377491],[112,38,69,-0.5124049885198474],[112,38,70,-0.5122450273483992],[112,38,71,-0.5117878885939717],[112,38,72,-0.5106964153237641],[112,38,73,-0.509256019257009],[112,38,74,-0.5080228541046381],[112,38,75,-0.506874315906316],[112,38,76,-0.505773471435532],[112,38,77,-0.5047980308299884],[112,38,78,-0.5039559541328344],[112,38,79,-0.5031836007838137],[112,39,64,-0.5171010829508305],[112,39,65,-0.5150407766923308],[112,39,66,-0.5135658886283636],[112,39,67,-0.512801325879991],[112,39,68,-0.5125248022377491],[112,39,69,-0.5124049885198474],[112,39,70,-0.5122450273483992],[112,39,71,-0.5117878885939717],[112,39,72,-0.5106964153237641],[112,39,73,-0.509256019257009],[112,39,74,-0.5080228541046381],[112,39,75,-0.506874315906316],[112,39,76,-0.505773471435532],[112,39,77,-0.5047980308299884],[112,39,78,-0.5039559541328344],[112,39,79,-0.5031836007838137],[112,40,64,-0.5171010829508305],[112,40,65,-0.5150407766923308],[112,40,66,-0.5135658886283636],[112,40,67,-0.512801325879991],[112,40,68,-0.5125248022377491],[112,40,69,-0.5124049885198474],[112,40,70,-0.5122450273483992],[112,40,71,-0.5117878885939717],[112,40,72,-0.5106964153237641],[112,40,73,-0.509256019257009],[112,40,74,-0.5080228541046381],[112,40,75,-0.506874315906316],[112,40,76,-0.505773471435532],[112,40,77,-0.5047980308299884],[112,40,78,-0.5039559541328344],[112,40,79,-0.5031836007838137],[112,41,64,-0.5171010829508305],[112,41,65,-0.5150407766923308],[112,41,66,-0.5135658886283636],[112,41,67,-0.512801325879991],[112,41,68,-0.5125248022377491],[112,41,69,-0.5124049885198474],[112,41,70,-0.5122450273483992],[112,41,71,-0.5117878885939717],[112,41,72,-0.5106964153237641],[112,41,73,-0.509256019257009],[112,41,74,-0.5080228541046381],[112,41,75,-0.506874315906316],[112,41,76,-0.505773471435532],[112,41,77,-0.5047980308299884],[112,41,78,-0.5039559541328344],[112,41,79,-0.5031836007838137],[112,42,64,-0.5171010829508305],[112,42,65,-0.5150407766923308],[112,42,66,-0.5135658886283636],[112,42,67,-0.512801325879991],[112,42,68,-0.5125248022377491],[112,42,69,-0.5124049885198474],[112,42,70,-0.5122450273483992],[112,42,71,-0.5117878885939717],[112,42,72,-0.5106964153237641],[112,42,73,-0.509256019257009],[112,42,74,-0.5080228541046381],[112,42,75,-0.506874315906316],[112,42,76,-0.505773471435532],[112,42,77,-0.5047980308299884],[112,42,78,-0.5039559541328344],[112,42,79,-0.5031836007838137],[112,43,64,-0.5171010829508305],[112,43,65,-0.5150407766923308],[112,43,66,-0.5135658886283636],[112,43,67,-0.512801325879991],[112,43,68,-0.5125248022377491],[112,43,69,-0.5124049885198474],[112,43,70,-0.5122450273483992],[112,43,71,-0.5117878885939717],[112,43,72,-0.5106964153237641],[112,43,73,-0.509256019257009],[112,43,74,-0.5080228541046381],[112,43,75,-0.506874315906316],[112,43,76,-0.505773471435532],[112,43,77,-0.5047980308299884],[112,43,78,-0.5039559541328344],[112,43,79,-0.5031836007838137],[112,44,64,-0.5171010829508305],[112,44,65,-0.5150407766923308],[112,44,66,-0.5135658886283636],[112,44,67,-0.512801325879991],[112,44,68,-0.5125248022377491],[112,44,69,-0.5124049885198474],[112,44,70,-0.5122450273483992],[112,44,71,-0.5117878885939717],[112,44,72,-0.5106964153237641],[112,44,73,-0.509256019257009],[112,44,74,-0.5080228541046381],[112,44,75,-0.506874315906316],[112,44,76,-0.505773471435532],[112,44,77,-0.5047980308299884],[112,44,78,-0.5039559541328344],[112,44,79,-0.5031836007838137],[112,45,64,-0.5171010829508305],[112,45,65,-0.5150407766923308],[112,45,66,-0.5135658886283636],[112,45,67,-0.512801325879991],[112,45,68,-0.5125248022377491],[112,45,69,-0.5124049885198474],[112,45,70,-0.5122450273483992],[112,45,71,-0.5117878885939717],[112,45,72,-0.5106964153237641],[112,45,73,-0.509256019257009],[112,45,74,-0.5080228541046381],[112,45,75,-0.506874315906316],[112,45,76,-0.505773471435532],[112,45,77,-0.5047980308299884],[112,45,78,-0.5039559541328344],[112,45,79,-0.5031836007838137],[112,46,64,-0.5171010829508305],[112,46,65,-0.5150407766923308],[112,46,66,-0.5135658886283636],[112,46,67,-0.512801325879991],[112,46,68,-0.5125248022377491],[112,46,69,-0.5124049885198474],[112,46,70,-0.5122450273483992],[112,46,71,-0.5117878885939717],[112,46,72,-0.5106964153237641],[112,46,73,-0.509256019257009],[112,46,74,-0.5080228541046381],[112,46,75,-0.506874315906316],[112,46,76,-0.505773471435532],[112,46,77,-0.5047980308299884],[112,46,78,-0.5039559541328344],[112,46,79,-0.5031836007838137],[112,47,64,-0.5171010829508305],[112,47,65,-0.5150407766923308],[112,47,66,-0.5135658886283636],[112,47,67,-0.512801325879991],[112,47,68,-0.5125248022377491],[112,47,69,-0.5124049885198474],[112,47,70,-0.5122450273483992],[112,47,71,-0.5117878885939717],[112,47,72,-0.5106964153237641],[112,47,73,-0.509256019257009],[112,47,74,-0.5080228541046381],[112,47,75,-0.506874315906316],[112,47,76,-0.505773471435532],[112,47,77,-0.5047980308299884],[112,47,78,-0.5039559541328344],[112,47,79,-0.5031836007838137],[112,48,64,-0.5171010829508305],[112,48,65,-0.5150407766923308],[112,48,66,-0.5135658886283636],[112,48,67,-0.512801325879991],[112,48,68,-0.5125248022377491],[112,48,69,-0.5124049885198474],[112,48,70,-0.5122450273483992],[112,48,71,-0.5117878885939717],[112,48,72,-0.5106964153237641],[112,48,73,-0.509256019257009],[112,48,74,-0.5080228541046381],[112,48,75,-0.506874315906316],[112,48,76,-0.505773471435532],[112,48,77,-0.5047980308299884],[112,48,78,-0.5039559541328344],[112,48,79,-0.5031836007838137],[112,49,64,-0.5171010829508305],[112,49,65,-0.5150407766923308],[112,49,66,-0.5135658886283636],[112,49,67,-0.512801325879991],[112,49,68,-0.5125248022377491],[112,49,69,-0.5124049885198474],[112,49,70,-0.5122450273483992],[112,49,71,-0.5117878885939717],[112,49,72,-0.5106964153237641],[112,49,73,-0.509256019257009],[112,49,74,-0.5080228541046381],[112,49,75,-0.506874315906316],[112,49,76,-0.505773471435532],[112,49,77,-0.5047980308299884],[112,49,78,-0.5039559541328344],[112,49,79,-0.5031836007838137],[112,50,64,-0.5171010829508305],[112,50,65,-0.5150407766923308],[112,50,66,-0.5135658886283636],[112,50,67,-0.512801325879991],[112,50,68,-0.5125248022377491],[112,50,69,-0.5124049885198474],[112,50,70,-0.5122450273483992],[112,50,71,-0.5117878885939717],[112,50,72,-0.5106964153237641],[112,50,73,-0.509256019257009],[112,50,74,-0.5080228541046381],[112,50,75,-0.506874315906316],[112,50,76,-0.505773471435532],[112,50,77,-0.5047980308299884],[112,50,78,-0.5039559541328344],[112,50,79,-0.5031836007838137],[112,51,64,-0.5171010829508305],[112,51,65,-0.5150407766923308],[112,51,66,-0.5135658886283636],[112,51,67,-0.512801325879991],[112,51,68,-0.5125248022377491],[112,51,69,-0.5124049885198474],[112,51,70,-0.5122450273483992],[112,51,71,-0.5117878885939717],[112,51,72,-0.5106964153237641],[112,51,73,-0.509256019257009],[112,51,74,-0.5080228541046381],[112,51,75,-0.506874315906316],[112,51,76,-0.505773471435532],[112,51,77,-0.5047980308299884],[112,51,78,-0.5039559541328344],[112,51,79,-0.5031836007838137],[112,52,64,-0.5171010829508305],[112,52,65,-0.5150407766923308],[112,52,66,-0.5135658886283636],[112,52,67,-0.512801325879991],[112,52,68,-0.5125248022377491],[112,52,69,-0.5124049885198474],[112,52,70,-0.5122450273483992],[112,52,71,-0.5117878885939717],[112,52,72,-0.5106964153237641],[112,52,73,-0.509256019257009],[112,52,74,-0.5080228541046381],[112,52,75,-0.506874315906316],[112,52,76,-0.505773471435532],[112,52,77,-0.5047980308299884],[112,52,78,-0.5039559541328344],[112,52,79,-0.5031836007838137],[112,53,64,-0.5171010829508305],[112,53,65,-0.5150407766923308],[112,53,66,-0.5135658886283636],[112,53,67,-0.512801325879991],[112,53,68,-0.5125248022377491],[112,53,69,-0.5124049885198474],[112,53,70,-0.5122450273483992],[112,53,71,-0.5117878885939717],[112,53,72,-0.5106964153237641],[112,53,73,-0.509256019257009],[112,53,74,-0.5080228541046381],[112,53,75,-0.506874315906316],[112,53,76,-0.505773471435532],[112,53,77,-0.5047980308299884],[112,53,78,-0.5039559541328344],[112,53,79,-0.5031836007838137],[112,54,64,-0.5171010829508305],[112,54,65,-0.5150407766923308],[112,54,66,-0.5135658886283636],[112,54,67,-0.512801325879991],[112,54,68,-0.5125248022377491],[112,54,69,-0.5124049885198474],[112,54,70,-0.5122450273483992],[112,54,71,-0.5117878885939717],[112,54,72,-0.5106964153237641],[112,54,73,-0.509256019257009],[112,54,74,-0.5080228541046381],[112,54,75,-0.506874315906316],[112,54,76,-0.505773471435532],[112,54,77,-0.5047980308299884],[112,54,78,-0.5039559541328344],[112,54,79,-0.5031836007838137],[112,55,64,-0.5171010829508305],[112,55,65,-0.5150407766923308],[112,55,66,-0.5135658886283636],[112,55,67,-0.512801325879991],[112,55,68,-0.5125248022377491],[112,55,69,-0.5124049885198474],[112,55,70,-0.5122450273483992],[112,55,71,-0.5117878885939717],[112,55,72,-0.5106964153237641],[112,55,73,-0.509256019257009],[112,55,74,-0.5080228541046381],[112,55,75,-0.506874315906316],[112,55,76,-0.505773471435532],[112,55,77,-0.5047980308299884],[112,55,78,-0.5039559541328344],[112,55,79,-0.5031836007838137],[112,56,64,-0.5171010829508305],[112,56,65,-0.5150407766923308],[112,56,66,-0.5135658886283636],[112,56,67,-0.512801325879991],[112,56,68,-0.5125248022377491],[112,56,69,-0.5124049885198474],[112,56,70,-0.5122450273483992],[112,56,71,-0.5117878885939717],[112,56,72,-0.5106964153237641],[112,56,73,-0.509256019257009],[112,56,74,-0.5080228541046381],[112,56,75,-0.506874315906316],[112,56,76,-0.505773471435532],[112,56,77,-0.5047980308299884],[112,56,78,-0.5039559541328344],[112,56,79,-0.5031836007838137],[112,57,64,-0.5171010829508305],[112,57,65,-0.5150407766923308],[112,57,66,-0.5135658886283636],[112,57,67,-0.512801325879991],[112,57,68,-0.5125248022377491],[112,57,69,-0.5124049885198474],[112,57,70,-0.5122450273483992],[112,57,71,-0.5117878885939717],[112,57,72,-0.5106964153237641],[112,57,73,-0.509256019257009],[112,57,74,-0.5080228541046381],[112,57,75,-0.506874315906316],[112,57,76,-0.505773471435532],[112,57,77,-0.5047980308299884],[112,57,78,-0.5039559541328344],[112,57,79,-0.5031836007838137],[112,58,64,-0.5171010829508305],[112,58,65,-0.5150407766923308],[112,58,66,-0.5135658886283636],[112,58,67,-0.512801325879991],[112,58,68,-0.5125248022377491],[112,58,69,-0.5124049885198474],[112,58,70,-0.5122450273483992],[112,58,71,-0.5117878885939717],[112,58,72,-0.5106964153237641],[112,58,73,-0.509256019257009],[112,58,74,-0.5080228541046381],[112,58,75,-0.506874315906316],[112,58,76,-0.505773471435532],[112,58,77,-0.5047980308299884],[112,58,78,-0.5039559541328344],[112,58,79,-0.5031836007838137],[112,59,64,-0.5171010829508305],[112,59,65,-0.5150407766923308],[112,59,66,-0.5135658886283636],[112,59,67,-0.512801325879991],[112,59,68,-0.5125248022377491],[112,59,69,-0.5124049885198474],[112,59,70,-0.5122450273483992],[112,59,71,-0.5117878885939717],[112,59,72,-0.5106964153237641],[112,59,73,-0.509256019257009],[112,59,74,-0.5080228541046381],[112,59,75,-0.506874315906316],[112,59,76,-0.505773471435532],[112,59,77,-0.5047980308299884],[112,59,78,-0.5039559541328344],[112,59,79,-0.5031836007838137],[112,60,64,-0.5171010829508305],[112,60,65,-0.5150407766923308],[112,60,66,-0.5135658886283636],[112,60,67,-0.512801325879991],[112,60,68,-0.5125248022377491],[112,60,69,-0.5124049885198474],[112,60,70,-0.5122450273483992],[112,60,71,-0.5117878885939717],[112,60,72,-0.5106964153237641],[112,60,73,-0.509256019257009],[112,60,74,-0.5080228541046381],[112,60,75,-0.506874315906316],[112,60,76,-0.505773471435532],[112,60,77,-0.5047980308299884],[112,60,78,-0.5039559541328344],[112,60,79,-0.5031836007838137],[112,61,64,-0.5171010829508305],[112,61,65,-0.5150407766923308],[112,61,66,-0.5135658886283636],[112,61,67,-0.512801325879991],[112,61,68,-0.5125248022377491],[112,61,69,-0.5124049885198474],[112,61,70,-0.5122450273483992],[112,61,71,-0.5117878885939717],[112,61,72,-0.5106964153237641],[112,61,73,-0.509256019257009],[112,61,74,-0.5080228541046381],[112,61,75,-0.506874315906316],[112,61,76,-0.505773471435532],[112,61,77,-0.5047980308299884],[112,61,78,-0.5039559541328344],[112,61,79,-0.5031836007838137],[112,62,64,-0.5171010829508305],[112,62,65,-0.5150407766923308],[112,62,66,-0.5135658886283636],[112,62,67,-0.512801325879991],[112,62,68,-0.5125248022377491],[112,62,69,-0.5124049885198474],[112,62,70,-0.5122450273483992],[112,62,71,-0.5117878885939717],[112,62,72,-0.5106964153237641],[112,62,73,-0.509256019257009],[112,62,74,-0.5080228541046381],[112,62,75,-0.506874315906316],[112,62,76,-0.505773471435532],[112,62,77,-0.5047980308299884],[112,62,78,-0.5039559541328344],[112,62,79,-0.5031836007838137],[112,63,64,-0.5171010829508305],[112,63,65,-0.5150407766923308],[112,63,66,-0.5135658886283636],[112,63,67,-0.512801325879991],[112,63,68,-0.5125248022377491],[112,63,69,-0.5124049885198474],[112,63,70,-0.5122450273483992],[112,63,71,-0.5117878885939717],[112,63,72,-0.5106964153237641],[112,63,73,-0.509256019257009],[112,63,74,-0.5080228541046381],[112,63,75,-0.506874315906316],[112,63,76,-0.505773471435532],[112,63,77,-0.5047980308299884],[112,63,78,-0.5039559541328344],[112,63,79,-0.5031836007838137],[112,64,64,-0.5171010829508305],[112,64,65,-0.5150407766923308],[112,64,66,-0.5135658886283636],[112,64,67,-0.512801325879991],[112,64,68,-0.5125248022377491],[112,64,69,-0.5124049885198474],[112,64,70,-0.5122450273483992],[112,64,71,-0.5117878885939717],[112,64,72,-0.5106964153237641],[112,64,73,-0.509256019257009],[112,64,74,-0.5080228541046381],[112,64,75,-0.506874315906316],[112,64,76,-0.505773471435532],[112,64,77,-0.5047980308299884],[112,64,78,-0.5039559541328344],[112,64,79,-0.5031836007838137],[112,65,64,-0.5171010829508305],[112,65,65,-0.5150407766923308],[112,65,66,-0.5135658886283636],[112,65,67,-0.512801325879991],[112,65,68,-0.5125248022377491],[112,65,69,-0.5124049885198474],[112,65,70,-0.5122450273483992],[112,65,71,-0.5117878885939717],[112,65,72,-0.5106964153237641],[112,65,73,-0.509256019257009],[112,65,74,-0.5080228541046381],[112,65,75,-0.506874315906316],[112,65,76,-0.505773471435532],[112,65,77,-0.5047980308299884],[112,65,78,-0.5039559541328344],[112,65,79,-0.5031836007838137],[112,66,64,-0.5171010829508305],[112,66,65,-0.5150407766923308],[112,66,66,-0.5135658886283636],[112,66,67,-0.512801325879991],[112,66,68,-0.5125248022377491],[112,66,69,-0.5124049885198474],[112,66,70,-0.5122450273483992],[112,66,71,-0.5117878885939717],[112,66,72,-0.5106964153237641],[112,66,73,-0.509256019257009],[112,66,74,-0.5080228541046381],[112,66,75,-0.506874315906316],[112,66,76,-0.505773471435532],[112,66,77,-0.5047980308299884],[112,66,78,-0.5039559541328344],[112,66,79,-0.5031836007838137],[112,67,64,-0.5171010829508305],[112,67,65,-0.5150407766923308],[112,67,66,-0.5135658886283636],[112,67,67,-0.512801325879991],[112,67,68,-0.5125248022377491],[112,67,69,-0.5124049885198474],[112,67,70,-0.5122450273483992],[112,67,71,-0.5117878885939717],[112,67,72,-0.5106964153237641],[112,67,73,-0.509256019257009],[112,67,74,-0.5080228541046381],[112,67,75,-0.506874315906316],[112,67,76,-0.505773471435532],[112,67,77,-0.5047980308299884],[112,67,78,-0.5039559541328344],[112,67,79,-0.5031836007838137],[112,68,64,-0.5171010829508305],[112,68,65,-0.5150407766923308],[112,68,66,-0.5135658886283636],[112,68,67,-0.512801325879991],[112,68,68,-0.5125248022377491],[112,68,69,-0.5124049885198474],[112,68,70,-0.5122450273483992],[112,68,71,-0.5117878885939717],[112,68,72,-0.5106964153237641],[112,68,73,-0.509256019257009],[112,68,74,-0.5080228541046381],[112,68,75,-0.506874315906316],[112,68,76,-0.505773471435532],[112,68,77,-0.5047980308299884],[112,68,78,-0.5039559541328344],[112,68,79,-0.5031836007838137],[112,69,64,-0.5171010829508305],[112,69,65,-0.5150407766923308],[112,69,66,-0.5135658886283636],[112,69,67,-0.512801325879991],[112,69,68,-0.5125248022377491],[112,69,69,-0.5124049885198474],[112,69,70,-0.5122450273483992],[112,69,71,-0.5117878885939717],[112,69,72,-0.5106964153237641],[112,69,73,-0.509256019257009],[112,69,74,-0.5080228541046381],[112,69,75,-0.506874315906316],[112,69,76,-0.505773471435532],[112,69,77,-0.5047980308299884],[112,69,78,-0.5039559541328344],[112,69,79,-0.5031836007838137],[112,70,64,-0.5171010829508305],[112,70,65,-0.5150407766923308],[112,70,66,-0.5135658886283636],[112,70,67,-0.512801325879991],[112,70,68,-0.5125248022377491],[112,70,69,-0.5124049885198474],[112,70,70,-0.5122450273483992],[112,70,71,-0.5117878885939717],[112,70,72,-0.5106964153237641],[112,70,73,-0.509256019257009],[112,70,74,-0.5080228541046381],[112,70,75,-0.506874315906316],[112,70,76,-0.505773471435532],[112,70,77,-0.5047980308299884],[112,70,78,-0.5039559541328344],[112,70,79,-0.5031836007838137],[112,71,64,-0.5171010829508305],[112,71,65,-0.5150407766923308],[112,71,66,-0.5135658886283636],[112,71,67,-0.512801325879991],[112,71,68,-0.5125248022377491],[112,71,69,-0.5124049885198474],[112,71,70,-0.5122450273483992],[112,71,71,-0.5117878885939717],[112,71,72,-0.5106964153237641],[112,71,73,-0.509256019257009],[112,71,74,-0.5080228541046381],[112,71,75,-0.506874315906316],[112,71,76,-0.505773471435532],[112,71,77,-0.5047980308299884],[112,71,78,-0.5039559541328344],[112,71,79,-0.5031836007838137],[112,72,64,-0.5171010829508305],[112,72,65,-0.5150407766923308],[112,72,66,-0.5135658886283636],[112,72,67,-0.512801325879991],[112,72,68,-0.5125248022377491],[112,72,69,-0.5124049885198474],[112,72,70,-0.5122450273483992],[112,72,71,-0.5117878885939717],[112,72,72,-0.5106964153237641],[112,72,73,-0.509256019257009],[112,72,74,-0.5080228541046381],[112,72,75,-0.506874315906316],[112,72,76,-0.505773471435532],[112,72,77,-0.5047980308299884],[112,72,78,-0.5039559541328344],[112,72,79,-0.5031836007838137],[112,73,64,-0.5171010829508305],[112,73,65,-0.5150407766923308],[112,73,66,-0.5135658886283636],[112,73,67,-0.512801325879991],[112,73,68,-0.5125248022377491],[112,73,69,-0.5124049885198474],[112,73,70,-0.5122450273483992],[112,73,71,-0.5117878885939717],[112,73,72,-0.5106964153237641],[112,73,73,-0.509256019257009],[112,73,74,-0.5080228541046381],[112,73,75,-0.506874315906316],[112,73,76,-0.505773471435532],[112,73,77,-0.5047980308299884],[112,73,78,-0.5039559541328344],[112,73,79,-0.5031836007838137],[112,74,64,-0.5171010829508305],[112,74,65,-0.5150407766923308],[112,74,66,-0.5135658886283636],[112,74,67,-0.512801325879991],[112,74,68,-0.5125248022377491],[112,74,69,-0.5124049885198474],[112,74,70,-0.5122450273483992],[112,74,71,-0.5117878885939717],[112,74,72,-0.5106964153237641],[112,74,73,-0.509256019257009],[112,74,74,-0.5080228541046381],[112,74,75,-0.506874315906316],[112,74,76,-0.505773471435532],[112,74,77,-0.5047980308299884],[112,74,78,-0.5039559541328344],[112,74,79,-0.5031836007838137],[112,75,64,-0.5171010829508305],[112,75,65,-0.5150407766923308],[112,75,66,-0.5135658886283636],[112,75,67,-0.512801325879991],[112,75,68,-0.5125248022377491],[112,75,69,-0.5124049885198474],[112,75,70,-0.5122450273483992],[112,75,71,-0.5117878885939717],[112,75,72,-0.5106964153237641],[112,75,73,-0.509256019257009],[112,75,74,-0.5080228541046381],[112,75,75,-0.506874315906316],[112,75,76,-0.505773471435532],[112,75,77,-0.5047980308299884],[112,75,78,-0.5039559541328344],[112,75,79,-0.5031836007838137],[112,76,64,-0.5171010829508305],[112,76,65,-0.5150407766923308],[112,76,66,-0.5135658886283636],[112,76,67,-0.512801325879991],[112,76,68,-0.5125248022377491],[112,76,69,-0.5124049885198474],[112,76,70,-0.5122450273483992],[112,76,71,-0.5117878885939717],[112,76,72,-0.5106964153237641],[112,76,73,-0.509256019257009],[112,76,74,-0.5080228541046381],[112,76,75,-0.506874315906316],[112,76,76,-0.505773471435532],[112,76,77,-0.5047980308299884],[112,76,78,-0.5039559541328344],[112,76,79,-0.5031836007838137],[112,77,64,-0.5171010829508305],[112,77,65,-0.5150407766923308],[112,77,66,-0.5135658886283636],[112,77,67,-0.512801325879991],[112,77,68,-0.5125248022377491],[112,77,69,-0.5124049885198474],[112,77,70,-0.5122450273483992],[112,77,71,-0.5117878885939717],[112,77,72,-0.5106964153237641],[112,77,73,-0.509256019257009],[112,77,74,-0.5080228541046381],[112,77,75,-0.506874315906316],[112,77,76,-0.505773471435532],[112,77,77,-0.5047980308299884],[112,77,78,-0.5039559541328344],[112,77,79,-0.5031836007838137],[112,78,64,-0.5171010829508305],[112,78,65,-0.5150407766923308],[112,78,66,-0.5135658886283636],[112,78,67,-0.512801325879991],[112,78,68,-0.5125248022377491],[112,78,69,-0.5124049885198474],[112,78,70,-0.5122450273483992],[112,78,71,-0.5117878885939717],[112,78,72,-0.5106964153237641],[112,78,73,-0.509256019257009],[112,78,74,-0.5080228541046381],[112,78,75,-0.506874315906316],[112,78,76,-0.505773471435532],[112,78,77,-0.5047980308299884],[112,78,78,-0.5039559541328344],[112,78,79,-0.5031836007838137],[112,79,64,-0.5171010829508305],[112,79,65,-0.5150407766923308],[112,79,66,-0.5135658886283636],[112,79,67,-0.512801325879991],[112,79,68,-0.5125248022377491],[112,79,69,-0.5124049885198474],[112,79,70,-0.5122450273483992],[112,79,71,-0.5117878885939717],[112,79,72,-0.5106964153237641],[112,79,73,-0.509256019257009],[112,79,74,-0.5080228541046381],[112,79,75,-0.506874315906316],[112,79,76,-0.505773471435532],[112,79,77,-0.5047980308299884],[112,79,78,-0.5039559541328344],[112,79,79,-0.5031836007838137],[112,80,64,-0.5171010829508305],[112,80,65,-0.5150407766923308],[112,80,66,-0.5135658886283636],[112,80,67,-0.512801325879991],[112,80,68,-0.5125248022377491],[112,80,69,-0.5124049885198474],[112,80,70,-0.5122450273483992],[112,80,71,-0.5117878885939717],[112,80,72,-0.5106964153237641],[112,80,73,-0.509256019257009],[112,80,74,-0.5080228541046381],[112,80,75,-0.506874315906316],[112,80,76,-0.505773471435532],[112,80,77,-0.5047980308299884],[112,80,78,-0.5039559541328344],[112,80,79,-0.5031836007838137],[112,81,64,-0.5171010829508305],[112,81,65,-0.5150407766923308],[112,81,66,-0.5135658886283636],[112,81,67,-0.512801325879991],[112,81,68,-0.5125248022377491],[112,81,69,-0.5124049885198474],[112,81,70,-0.5122450273483992],[112,81,71,-0.5117878885939717],[112,81,72,-0.5106964153237641],[112,81,73,-0.509256019257009],[112,81,74,-0.5080228541046381],[112,81,75,-0.506874315906316],[112,81,76,-0.505773471435532],[112,81,77,-0.5047980308299884],[112,81,78,-0.5039559541328344],[112,81,79,-0.5031836007838137],[112,82,64,-0.5171010829508305],[112,82,65,-0.5150407766923308],[112,82,66,-0.5135658886283636],[112,82,67,-0.512801325879991],[112,82,68,-0.5125248022377491],[112,82,69,-0.5124049885198474],[112,82,70,-0.5122450273483992],[112,82,71,-0.5117878885939717],[112,82,72,-0.5106964153237641],[112,82,73,-0.509256019257009],[112,82,74,-0.5080228541046381],[112,82,75,-0.506874315906316],[112,82,76,-0.505773471435532],[112,82,77,-0.5047980308299884],[112,82,78,-0.5039559541328344],[112,82,79,-0.5031836007838137],[112,83,64,-0.5171010829508305],[112,83,65,-0.5150407766923308],[112,83,66,-0.5135658886283636],[112,83,67,-0.512801325879991],[112,83,68,-0.5125248022377491],[112,83,69,-0.5124049885198474],[112,83,70,-0.5122450273483992],[112,83,71,-0.5117878885939717],[112,83,72,-0.5106964153237641],[112,83,73,-0.509256019257009],[112,83,74,-0.5080228541046381],[112,83,75,-0.506874315906316],[112,83,76,-0.505773471435532],[112,83,77,-0.5047980308299884],[112,83,78,-0.5039559541328344],[112,83,79,-0.5031836007838137],[112,84,64,-0.5171010829508305],[112,84,65,-0.5150407766923308],[112,84,66,-0.5135658886283636],[112,84,67,-0.512801325879991],[112,84,68,-0.5125248022377491],[112,84,69,-0.5124049885198474],[112,84,70,-0.5122450273483992],[112,84,71,-0.5117878885939717],[112,84,72,-0.5106964153237641],[112,84,73,-0.509256019257009],[112,84,74,-0.5080228541046381],[112,84,75,-0.506874315906316],[112,84,76,-0.505773471435532],[112,84,77,-0.5047980308299884],[112,84,78,-0.5039559541328344],[112,84,79,-0.5031836007838137],[112,85,64,-0.5171010829508305],[112,85,65,-0.5150407766923308],[112,85,66,-0.5135658886283636],[112,85,67,-0.512801325879991],[112,85,68,-0.5125248022377491],[112,85,69,-0.5124049885198474],[112,85,70,-0.5122450273483992],[112,85,71,-0.5117878885939717],[112,85,72,-0.5106964153237641],[112,85,73,-0.509256019257009],[112,85,74,-0.5080228541046381],[112,85,75,-0.506874315906316],[112,85,76,-0.505773471435532],[112,85,77,-0.5047980308299884],[112,85,78,-0.5039559541328344],[112,85,79,-0.5031836007838137],[112,86,64,-0.5171010829508305],[112,86,65,-0.5150407766923308],[112,86,66,-0.5135658886283636],[112,86,67,-0.512801325879991],[112,86,68,-0.5125248022377491],[112,86,69,-0.5124049885198474],[112,86,70,-0.5122450273483992],[112,86,71,-0.5117878885939717],[112,86,72,-0.5106964153237641],[112,86,73,-0.509256019257009],[112,86,74,-0.5080228541046381],[112,86,75,-0.506874315906316],[112,86,76,-0.505773471435532],[112,86,77,-0.5047980308299884],[112,86,78,-0.5039559541328344],[112,86,79,-0.5031836007838137],[112,87,64,-0.5171010829508305],[112,87,65,-0.5150407766923308],[112,87,66,-0.5135658886283636],[112,87,67,-0.512801325879991],[112,87,68,-0.5125248022377491],[112,87,69,-0.5124049885198474],[112,87,70,-0.5122450273483992],[112,87,71,-0.5117878885939717],[112,87,72,-0.5106964153237641],[112,87,73,-0.509256019257009],[112,87,74,-0.5080228541046381],[112,87,75,-0.506874315906316],[112,87,76,-0.505773471435532],[112,87,77,-0.5047980308299884],[112,87,78,-0.5039559541328344],[112,87,79,-0.5031836007838137],[112,88,64,-0.5171010829508305],[112,88,65,-0.5150407766923308],[112,88,66,-0.5135658886283636],[112,88,67,-0.512801325879991],[112,88,68,-0.5125248022377491],[112,88,69,-0.5124049885198474],[112,88,70,-0.5122450273483992],[112,88,71,-0.5117878885939717],[112,88,72,-0.5106964153237641],[112,88,73,-0.509256019257009],[112,88,74,-0.5080228541046381],[112,88,75,-0.506874315906316],[112,88,76,-0.505773471435532],[112,88,77,-0.5047980308299884],[112,88,78,-0.5039559541328344],[112,88,79,-0.5031836007838137],[112,89,64,-0.5171010829508305],[112,89,65,-0.5150407766923308],[112,89,66,-0.5135658886283636],[112,89,67,-0.512801325879991],[112,89,68,-0.5125248022377491],[112,89,69,-0.5124049885198474],[112,89,70,-0.5122450273483992],[112,89,71,-0.5117878885939717],[112,89,72,-0.5106964153237641],[112,89,73,-0.509256019257009],[112,89,74,-0.5080228541046381],[112,89,75,-0.506874315906316],[112,89,76,-0.505773471435532],[112,89,77,-0.5047980308299884],[112,89,78,-0.5039559541328344],[112,89,79,-0.5031836007838137],[112,90,64,-0.5171010829508305],[112,90,65,-0.5150407766923308],[112,90,66,-0.5135658886283636],[112,90,67,-0.512801325879991],[112,90,68,-0.5125248022377491],[112,90,69,-0.5124049885198474],[112,90,70,-0.5122450273483992],[112,90,71,-0.5117878885939717],[112,90,72,-0.5106964153237641],[112,90,73,-0.509256019257009],[112,90,74,-0.5080228541046381],[112,90,75,-0.506874315906316],[112,90,76,-0.505773471435532],[112,90,77,-0.5047980308299884],[112,90,78,-0.5039559541328344],[112,90,79,-0.5031836007838137],[112,91,64,-0.5171010829508305],[112,91,65,-0.5150407766923308],[112,91,66,-0.5135658886283636],[112,91,67,-0.512801325879991],[112,91,68,-0.5125248022377491],[112,91,69,-0.5124049885198474],[112,91,70,-0.5122450273483992],[112,91,71,-0.5117878885939717],[112,91,72,-0.5106964153237641],[112,91,73,-0.509256019257009],[112,91,74,-0.5080228541046381],[112,91,75,-0.506874315906316],[112,91,76,-0.505773471435532],[112,91,77,-0.5047980308299884],[112,91,78,-0.5039559541328344],[112,91,79,-0.5031836007838137],[112,92,64,-0.5171010829508305],[112,92,65,-0.5150407766923308],[112,92,66,-0.5135658886283636],[112,92,67,-0.512801325879991],[112,92,68,-0.5125248022377491],[112,92,69,-0.5124049885198474],[112,92,70,-0.5122450273483992],[112,92,71,-0.5117878885939717],[112,92,72,-0.5106964153237641],[112,92,73,-0.509256019257009],[112,92,74,-0.5080228541046381],[112,92,75,-0.506874315906316],[112,92,76,-0.505773471435532],[112,92,77,-0.5047980308299884],[112,92,78,-0.5039559541328344],[112,92,79,-0.5031836007838137],[112,93,64,-0.5171010829508305],[112,93,65,-0.5150407766923308],[112,93,66,-0.5135658886283636],[112,93,67,-0.512801325879991],[112,93,68,-0.5125248022377491],[112,93,69,-0.5124049885198474],[112,93,70,-0.5122450273483992],[112,93,71,-0.5117878885939717],[112,93,72,-0.5106964153237641],[112,93,73,-0.509256019257009],[112,93,74,-0.5080228541046381],[112,93,75,-0.506874315906316],[112,93,76,-0.505773471435532],[112,93,77,-0.5047980308299884],[112,93,78,-0.5039559541328344],[112,93,79,-0.5031836007838137],[112,94,64,-0.5171010829508305],[112,94,65,-0.5150407766923308],[112,94,66,-0.5135658886283636],[112,94,67,-0.512801325879991],[112,94,68,-0.5125248022377491],[112,94,69,-0.5124049885198474],[112,94,70,-0.5122450273483992],[112,94,71,-0.5117878885939717],[112,94,72,-0.5106964153237641],[112,94,73,-0.509256019257009],[112,94,74,-0.5080228541046381],[112,94,75,-0.506874315906316],[112,94,76,-0.505773471435532],[112,94,77,-0.5047980308299884],[112,94,78,-0.5039559541328344],[112,94,79,-0.5031836007838137],[112,95,64,-0.5171010829508305],[112,95,65,-0.5150407766923308],[112,95,66,-0.5135658886283636],[112,95,67,-0.512801325879991],[112,95,68,-0.5125248022377491],[112,95,69,-0.5124049885198474],[112,95,70,-0.5122450273483992],[112,95,71,-0.5117878885939717],[112,95,72,-0.5106964153237641],[112,95,73,-0.509256019257009],[112,95,74,-0.5080228541046381],[112,95,75,-0.506874315906316],[112,95,76,-0.505773471435532],[112,95,77,-0.5047980308299884],[112,95,78,-0.5039559541328344],[112,95,79,-0.5031836007838137],[112,96,64,-0.5171010829508305],[112,96,65,-0.5150407766923308],[112,96,66,-0.5135658886283636],[112,96,67,-0.512801325879991],[112,96,68,-0.5125248022377491],[112,96,69,-0.5124049885198474],[112,96,70,-0.5122450273483992],[112,96,71,-0.5117878885939717],[112,96,72,-0.5106964153237641],[112,96,73,-0.509256019257009],[112,96,74,-0.5080228541046381],[112,96,75,-0.506874315906316],[112,96,76,-0.505773471435532],[112,96,77,-0.5047980308299884],[112,96,78,-0.5039559541328344],[112,96,79,-0.5031836007838137],[112,97,64,-0.5171010829508305],[112,97,65,-0.5150407766923308],[112,97,66,-0.5135658886283636],[112,97,67,-0.512801325879991],[112,97,68,-0.5125248022377491],[112,97,69,-0.5124049885198474],[112,97,70,-0.5122450273483992],[112,97,71,-0.5117878885939717],[112,97,72,-0.5106964153237641],[112,97,73,-0.509256019257009],[112,97,74,-0.5080228541046381],[112,97,75,-0.506874315906316],[112,97,76,-0.505773471435532],[112,97,77,-0.5047980308299884],[112,97,78,-0.5039559541328344],[112,97,79,-0.5031836007838137],[112,98,64,-0.5171010829508305],[112,98,65,-0.5150407766923308],[112,98,66,-0.5135658886283636],[112,98,67,-0.512801325879991],[112,98,68,-0.5125248022377491],[112,98,69,-0.5124049885198474],[112,98,70,-0.5122450273483992],[112,98,71,-0.5117878885939717],[112,98,72,-0.5106964153237641],[112,98,73,-0.509256019257009],[112,98,74,-0.5080228541046381],[112,98,75,-0.506874315906316],[112,98,76,-0.505773471435532],[112,98,77,-0.5047980308299884],[112,98,78,-0.5039559541328344],[112,98,79,-0.5031836007838137],[112,99,64,-0.5171010829508305],[112,99,65,-0.5150407766923308],[112,99,66,-0.5135658886283636],[112,99,67,-0.512801325879991],[112,99,68,-0.5125248022377491],[112,99,69,-0.5124049885198474],[112,99,70,-0.5122450273483992],[112,99,71,-0.5117878885939717],[112,99,72,-0.5106964153237641],[112,99,73,-0.509256019257009],[112,99,74,-0.5080228541046381],[112,99,75,-0.506874315906316],[112,99,76,-0.505773471435532],[112,99,77,-0.5047980308299884],[112,99,78,-0.5039559541328344],[112,99,79,-0.5031836007838137],[112,100,64,-0.5171010829508305],[112,100,65,-0.5150407766923308],[112,100,66,-0.5135658886283636],[112,100,67,-0.512801325879991],[112,100,68,-0.5125248022377491],[112,100,69,-0.5124049885198474],[112,100,70,-0.5122450273483992],[112,100,71,-0.5117878885939717],[112,100,72,-0.5106964153237641],[112,100,73,-0.509256019257009],[112,100,74,-0.5080228541046381],[112,100,75,-0.506874315906316],[112,100,76,-0.505773471435532],[112,100,77,-0.5047980308299884],[112,100,78,-0.5039559541328344],[112,100,79,-0.5031836007838137],[112,101,64,-0.5171010829508305],[112,101,65,-0.5150407766923308],[112,101,66,-0.5135658886283636],[112,101,67,-0.512801325879991],[112,101,68,-0.5125248022377491],[112,101,69,-0.5124049885198474],[112,101,70,-0.5122450273483992],[112,101,71,-0.5117878885939717],[112,101,72,-0.5106964153237641],[112,101,73,-0.509256019257009],[112,101,74,-0.5080228541046381],[112,101,75,-0.506874315906316],[112,101,76,-0.505773471435532],[112,101,77,-0.5047980308299884],[112,101,78,-0.5039559541328344],[112,101,79,-0.5031836007838137],[112,102,64,-0.5171010829508305],[112,102,65,-0.5150407766923308],[112,102,66,-0.5135658886283636],[112,102,67,-0.512801325879991],[112,102,68,-0.5125248022377491],[112,102,69,-0.5124049885198474],[112,102,70,-0.5122450273483992],[112,102,71,-0.5117878885939717],[112,102,72,-0.5106964153237641],[112,102,73,-0.509256019257009],[112,102,74,-0.5080228541046381],[112,102,75,-0.506874315906316],[112,102,76,-0.505773471435532],[112,102,77,-0.5047980308299884],[112,102,78,-0.5039559541328344],[112,102,79,-0.5031836007838137],[112,103,64,-0.5171010829508305],[112,103,65,-0.5150407766923308],[112,103,66,-0.5135658886283636],[112,103,67,-0.512801325879991],[112,103,68,-0.5125248022377491],[112,103,69,-0.5124049885198474],[112,103,70,-0.5122450273483992],[112,103,71,-0.5117878885939717],[112,103,72,-0.5106964153237641],[112,103,73,-0.509256019257009],[112,103,74,-0.5080228541046381],[112,103,75,-0.506874315906316],[112,103,76,-0.505773471435532],[112,103,77,-0.5047980308299884],[112,103,78,-0.5039559541328344],[112,103,79,-0.5031836007838137],[112,104,64,-0.5171010829508305],[112,104,65,-0.5150407766923308],[112,104,66,-0.5135658886283636],[112,104,67,-0.512801325879991],[112,104,68,-0.5125248022377491],[112,104,69,-0.5124049885198474],[112,104,70,-0.5122450273483992],[112,104,71,-0.5117878885939717],[112,104,72,-0.5106964153237641],[112,104,73,-0.509256019257009],[112,104,74,-0.5080228541046381],[112,104,75,-0.506874315906316],[112,104,76,-0.505773471435532],[112,104,77,-0.5047980308299884],[112,104,78,-0.5039559541328344],[112,104,79,-0.5031836007838137],[112,105,64,-0.5171010829508305],[112,105,65,-0.5150407766923308],[112,105,66,-0.5135658886283636],[112,105,67,-0.512801325879991],[112,105,68,-0.5125248022377491],[112,105,69,-0.5124049885198474],[112,105,70,-0.5122450273483992],[112,105,71,-0.5117878885939717],[112,105,72,-0.5106964153237641],[112,105,73,-0.509256019257009],[112,105,74,-0.5080228541046381],[112,105,75,-0.506874315906316],[112,105,76,-0.505773471435532],[112,105,77,-0.5047980308299884],[112,105,78,-0.5039559541328344],[112,105,79,-0.5031836007838137],[112,106,64,-0.5171010829508305],[112,106,65,-0.5150407766923308],[112,106,66,-0.5135658886283636],[112,106,67,-0.512801325879991],[112,106,68,-0.5125248022377491],[112,106,69,-0.5124049885198474],[112,106,70,-0.5122450273483992],[112,106,71,-0.5117878885939717],[112,106,72,-0.5106964153237641],[112,106,73,-0.509256019257009],[112,106,74,-0.5080228541046381],[112,106,75,-0.506874315906316],[112,106,76,-0.505773471435532],[112,106,77,-0.5047980308299884],[112,106,78,-0.5039559541328344],[112,106,79,-0.5031836007838137],[112,107,64,-0.5171010829508305],[112,107,65,-0.5150407766923308],[112,107,66,-0.5135658886283636],[112,107,67,-0.512801325879991],[112,107,68,-0.5125248022377491],[112,107,69,-0.5124049885198474],[112,107,70,-0.5122450273483992],[112,107,71,-0.5117878885939717],[112,107,72,-0.5106964153237641],[112,107,73,-0.509256019257009],[112,107,74,-0.5080228541046381],[112,107,75,-0.506874315906316],[112,107,76,-0.505773471435532],[112,107,77,-0.5047980308299884],[112,107,78,-0.5039559541328344],[112,107,79,-0.5031836007838137],[112,108,64,-0.5171010829508305],[112,108,65,-0.5150407766923308],[112,108,66,-0.5135658886283636],[112,108,67,-0.512801325879991],[112,108,68,-0.5125248022377491],[112,108,69,-0.5124049885198474],[112,108,70,-0.5122450273483992],[112,108,71,-0.5117878885939717],[112,108,72,-0.5106964153237641],[112,108,73,-0.509256019257009],[112,108,74,-0.5080228541046381],[112,108,75,-0.506874315906316],[112,108,76,-0.505773471435532],[112,108,77,-0.5047980308299884],[112,108,78,-0.5039559541328344],[112,108,79,-0.5031836007838137],[112,109,64,-0.5171010829508305],[112,109,65,-0.5150407766923308],[112,109,66,-0.5135658886283636],[112,109,67,-0.512801325879991],[112,109,68,-0.5125248022377491],[112,109,69,-0.5124049885198474],[112,109,70,-0.5122450273483992],[112,109,71,-0.5117878885939717],[112,109,72,-0.5106964153237641],[112,109,73,-0.509256019257009],[112,109,74,-0.5080228541046381],[112,109,75,-0.506874315906316],[112,109,76,-0.505773471435532],[112,109,77,-0.5047980308299884],[112,109,78,-0.5039559541328344],[112,109,79,-0.5031836007838137],[112,110,64,-0.5171010829508305],[112,110,65,-0.5150407766923308],[112,110,66,-0.5135658886283636],[112,110,67,-0.512801325879991],[112,110,68,-0.5125248022377491],[112,110,69,-0.5124049885198474],[112,110,70,-0.5122450273483992],[112,110,71,-0.5117878885939717],[112,110,72,-0.5106964153237641],[112,110,73,-0.509256019257009],[112,110,74,-0.5080228541046381],[112,110,75,-0.506874315906316],[112,110,76,-0.505773471435532],[112,110,77,-0.5047980308299884],[112,110,78,-0.5039559541328344],[112,110,79,-0.5031836007838137],[112,111,64,-0.5171010829508305],[112,111,65,-0.5150407766923308],[112,111,66,-0.5135658886283636],[112,111,67,-0.512801325879991],[112,111,68,-0.5125248022377491],[112,111,69,-0.5124049885198474],[112,111,70,-0.5122450273483992],[112,111,71,-0.5117878885939717],[112,111,72,-0.5106964153237641],[112,111,73,-0.509256019257009],[112,111,74,-0.5080228541046381],[112,111,75,-0.506874315906316],[112,111,76,-0.505773471435532],[112,111,77,-0.5047980308299884],[112,111,78,-0.5039559541328344],[112,111,79,-0.5031836007838137],[112,112,64,-0.5171010829508305],[112,112,65,-0.5150407766923308],[112,112,66,-0.5135658886283636],[112,112,67,-0.512801325879991],[112,112,68,-0.5125248022377491],[112,112,69,-0.5124049885198474],[112,112,70,-0.5122450273483992],[112,112,71,-0.5117878885939717],[112,112,72,-0.5106964153237641],[112,112,73,-0.509256019257009],[112,112,74,-0.5080228541046381],[112,112,75,-0.506874315906316],[112,112,76,-0.505773471435532],[112,112,77,-0.5047980308299884],[112,112,78,-0.5039559541328344],[112,112,79,-0.5031836007838137],[112,113,64,-0.5171010829508305],[112,113,65,-0.5150407766923308],[112,113,66,-0.5135658886283636],[112,113,67,-0.512801325879991],[112,113,68,-0.5125248022377491],[112,113,69,-0.5124049885198474],[112,113,70,-0.5122450273483992],[112,113,71,-0.5117878885939717],[112,113,72,-0.5106964153237641],[112,113,73,-0.509256019257009],[112,113,74,-0.5080228541046381],[112,113,75,-0.506874315906316],[112,113,76,-0.505773471435532],[112,113,77,-0.5047980308299884],[112,113,78,-0.5039559541328344],[112,113,79,-0.5031836007838137],[112,114,64,-0.5171010829508305],[112,114,65,-0.5150407766923308],[112,114,66,-0.5135658886283636],[112,114,67,-0.512801325879991],[112,114,68,-0.5125248022377491],[112,114,69,-0.5124049885198474],[112,114,70,-0.5122450273483992],[112,114,71,-0.5117878885939717],[112,114,72,-0.5106964153237641],[112,114,73,-0.509256019257009],[112,114,74,-0.5080228541046381],[112,114,75,-0.506874315906316],[112,114,76,-0.505773471435532],[112,114,77,-0.5047980308299884],[112,114,78,-0.5039559541328344],[112,114,79,-0.5031836007838137],[112,115,64,-0.5171010829508305],[112,115,65,-0.5150407766923308],[112,115,66,-0.5135658886283636],[112,115,67,-0.512801325879991],[112,115,68,-0.5125248022377491],[112,115,69,-0.5124049885198474],[112,115,70,-0.5122450273483992],[112,115,71,-0.5117878885939717],[112,115,72,-0.5106964153237641],[112,115,73,-0.509256019257009],[112,115,74,-0.5080228541046381],[112,115,75,-0.506874315906316],[112,115,76,-0.505773471435532],[112,115,77,-0.5047980308299884],[112,115,78,-0.5039559541328344],[112,115,79,-0.5031836007838137],[112,116,64,-0.5171010829508305],[112,116,65,-0.5150407766923308],[112,116,66,-0.5135658886283636],[112,116,67,-0.512801325879991],[112,116,68,-0.5125248022377491],[112,116,69,-0.5124049885198474],[112,116,70,-0.5122450273483992],[112,116,71,-0.5117878885939717],[112,116,72,-0.5106964153237641],[112,116,73,-0.509256019257009],[112,116,74,-0.5080228541046381],[112,116,75,-0.506874315906316],[112,116,76,-0.505773471435532],[112,116,77,-0.5047980308299884],[112,116,78,-0.5039559541328344],[112,116,79,-0.5031836007838137],[112,117,64,-0.5171010829508305],[112,117,65,-0.5150407766923308],[112,117,66,-0.5135658886283636],[112,117,67,-0.512801325879991],[112,117,68,-0.5125248022377491],[112,117,69,-0.5124049885198474],[112,117,70,-0.5122450273483992],[112,117,71,-0.5117878885939717],[112,117,72,-0.5106964153237641],[112,117,73,-0.509256019257009],[112,117,74,-0.5080228541046381],[112,117,75,-0.506874315906316],[112,117,76,-0.505773471435532],[112,117,77,-0.5047980308299884],[112,117,78,-0.5039559541328344],[112,117,79,-0.5031836007838137],[112,118,64,-0.5171010829508305],[112,118,65,-0.5150407766923308],[112,118,66,-0.5135658886283636],[112,118,67,-0.512801325879991],[112,118,68,-0.5125248022377491],[112,118,69,-0.5124049885198474],[112,118,70,-0.5122450273483992],[112,118,71,-0.5117878885939717],[112,118,72,-0.5106964153237641],[112,118,73,-0.509256019257009],[112,118,74,-0.5080228541046381],[112,118,75,-0.506874315906316],[112,118,76,-0.505773471435532],[112,118,77,-0.5047980308299884],[112,118,78,-0.5039559541328344],[112,118,79,-0.5031836007838137],[112,119,64,-0.5171010829508305],[112,119,65,-0.5150407766923308],[112,119,66,-0.5135658886283636],[112,119,67,-0.512801325879991],[112,119,68,-0.5125248022377491],[112,119,69,-0.5124049885198474],[112,119,70,-0.5122450273483992],[112,119,71,-0.5117878885939717],[112,119,72,-0.5106964153237641],[112,119,73,-0.509256019257009],[112,119,74,-0.5080228541046381],[112,119,75,-0.506874315906316],[112,119,76,-0.505773471435532],[112,119,77,-0.5047980308299884],[112,119,78,-0.5039559541328344],[112,119,79,-0.5031836007838137],[112,120,64,-0.5171010829508305],[112,120,65,-0.5150407766923308],[112,120,66,-0.5135658886283636],[112,120,67,-0.512801325879991],[112,120,68,-0.5125248022377491],[112,120,69,-0.5124049885198474],[112,120,70,-0.5122450273483992],[112,120,71,-0.5117878885939717],[112,120,72,-0.5106964153237641],[112,120,73,-0.509256019257009],[112,120,74,-0.5080228541046381],[112,120,75,-0.506874315906316],[112,120,76,-0.505773471435532],[112,120,77,-0.5047980308299884],[112,120,78,-0.5039559541328344],[112,120,79,-0.5031836007838137],[112,121,64,-0.5171010829508305],[112,121,65,-0.5150407766923308],[112,121,66,-0.5135658886283636],[112,121,67,-0.512801325879991],[112,121,68,-0.5125248022377491],[112,121,69,-0.5124049885198474],[112,121,70,-0.5122450273483992],[112,121,71,-0.5117878885939717],[112,121,72,-0.5106964153237641],[112,121,73,-0.509256019257009],[112,121,74,-0.5080228541046381],[112,121,75,-0.506874315906316],[112,121,76,-0.505773471435532],[112,121,77,-0.5047980308299884],[112,121,78,-0.5039559541328344],[112,121,79,-0.5031836007838137],[112,122,64,-0.5171010829508305],[112,122,65,-0.5150407766923308],[112,122,66,-0.5135658886283636],[112,122,67,-0.512801325879991],[112,122,68,-0.5125248022377491],[112,122,69,-0.5124049885198474],[112,122,70,-0.5122450273483992],[112,122,71,-0.5117878885939717],[112,122,72,-0.5106964153237641],[112,122,73,-0.509256019257009],[112,122,74,-0.5080228541046381],[112,122,75,-0.506874315906316],[112,122,76,-0.505773471435532],[112,122,77,-0.5047980308299884],[112,122,78,-0.5039559541328344],[112,122,79,-0.5031836007838137],[112,123,64,-0.5171010829508305],[112,123,65,-0.5150407766923308],[112,123,66,-0.5135658886283636],[112,123,67,-0.512801325879991],[112,123,68,-0.5125248022377491],[112,123,69,-0.5124049885198474],[112,123,70,-0.5122450273483992],[112,123,71,-0.5117878885939717],[112,123,72,-0.5106964153237641],[112,123,73,-0.509256019257009],[112,123,74,-0.5080228541046381],[112,123,75,-0.506874315906316],[112,123,76,-0.505773471435532],[112,123,77,-0.5047980308299884],[112,123,78,-0.5039559541328344],[112,123,79,-0.5031836007838137],[112,124,64,-0.5171010829508305],[112,124,65,-0.5150407766923308],[112,124,66,-0.5135658886283636],[112,124,67,-0.512801325879991],[112,124,68,-0.5125248022377491],[112,124,69,-0.5124049885198474],[112,124,70,-0.5122450273483992],[112,124,71,-0.5117878885939717],[112,124,72,-0.5106964153237641],[112,124,73,-0.509256019257009],[112,124,74,-0.5080228541046381],[112,124,75,-0.506874315906316],[112,124,76,-0.505773471435532],[112,124,77,-0.5047980308299884],[112,124,78,-0.5039559541328344],[112,124,79,-0.5031836007838137],[112,125,64,-0.5171010829508305],[112,125,65,-0.5150407766923308],[112,125,66,-0.5135658886283636],[112,125,67,-0.512801325879991],[112,125,68,-0.5125248022377491],[112,125,69,-0.5124049885198474],[112,125,70,-0.5122450273483992],[112,125,71,-0.5117878885939717],[112,125,72,-0.5106964153237641],[112,125,73,-0.509256019257009],[112,125,74,-0.5080228541046381],[112,125,75,-0.506874315906316],[112,125,76,-0.505773471435532],[112,125,77,-0.5047980308299884],[112,125,78,-0.5039559541328344],[112,125,79,-0.5031836007838137],[112,126,64,-0.5171010829508305],[112,126,65,-0.5150407766923308],[112,126,66,-0.5135658886283636],[112,126,67,-0.512801325879991],[112,126,68,-0.5125248022377491],[112,126,69,-0.5124049885198474],[112,126,70,-0.5122450273483992],[112,126,71,-0.5117878885939717],[112,126,72,-0.5106964153237641],[112,126,73,-0.509256019257009],[112,126,74,-0.5080228541046381],[112,126,75,-0.506874315906316],[112,126,76,-0.505773471435532],[112,126,77,-0.5047980308299884],[112,126,78,-0.5039559541328344],[112,126,79,-0.5031836007838137],[112,127,64,-0.5171010829508305],[112,127,65,-0.5150407766923308],[112,127,66,-0.5135658886283636],[112,127,67,-0.512801325879991],[112,127,68,-0.5125248022377491],[112,127,69,-0.5124049885198474],[112,127,70,-0.5122450273483992],[112,127,71,-0.5117878885939717],[112,127,72,-0.5106964153237641],[112,127,73,-0.509256019257009],[112,127,74,-0.5080228541046381],[112,127,75,-0.506874315906316],[112,127,76,-0.505773471435532],[112,127,77,-0.5047980308299884],[112,127,78,-0.5039559541328344],[112,127,79,-0.5031836007838137],[112,128,64,-0.5171010829508305],[112,128,65,-0.5150407766923308],[112,128,66,-0.5135658886283636],[112,128,67,-0.512801325879991],[112,128,68,-0.5125248022377491],[112,128,69,-0.5124049885198474],[112,128,70,-0.5122450273483992],[112,128,71,-0.5117878885939717],[112,128,72,-0.5106964153237641],[112,128,73,-0.509256019257009],[112,128,74,-0.5080228541046381],[112,128,75,-0.506874315906316],[112,128,76,-0.505773471435532],[112,128,77,-0.5047980308299884],[112,128,78,-0.5039559541328344],[112,128,79,-0.5031836007838137],[112,129,64,-0.5171010829508305],[112,129,65,-0.5150407766923308],[112,129,66,-0.5135658886283636],[112,129,67,-0.512801325879991],[112,129,68,-0.5125248022377491],[112,129,69,-0.5124049885198474],[112,129,70,-0.5122450273483992],[112,129,71,-0.5117878885939717],[112,129,72,-0.5106964153237641],[112,129,73,-0.509256019257009],[112,129,74,-0.5080228541046381],[112,129,75,-0.506874315906316],[112,129,76,-0.505773471435532],[112,129,77,-0.5047980308299884],[112,129,78,-0.5039559541328344],[112,129,79,-0.5031836007838137],[112,130,64,-0.5171010829508305],[112,130,65,-0.5150407766923308],[112,130,66,-0.5135658886283636],[112,130,67,-0.512801325879991],[112,130,68,-0.5125248022377491],[112,130,69,-0.5124049885198474],[112,130,70,-0.5122450273483992],[112,130,71,-0.5117878885939717],[112,130,72,-0.5106964153237641],[112,130,73,-0.509256019257009],[112,130,74,-0.5080228541046381],[112,130,75,-0.506874315906316],[112,130,76,-0.505773471435532],[112,130,77,-0.5047980308299884],[112,130,78,-0.5039559541328344],[112,130,79,-0.5031836007838137],[112,131,64,-0.5171010829508305],[112,131,65,-0.5150407766923308],[112,131,66,-0.5135658886283636],[112,131,67,-0.512801325879991],[112,131,68,-0.5125248022377491],[112,131,69,-0.5124049885198474],[112,131,70,-0.5122450273483992],[112,131,71,-0.5117878885939717],[112,131,72,-0.5106964153237641],[112,131,73,-0.509256019257009],[112,131,74,-0.5080228541046381],[112,131,75,-0.506874315906316],[112,131,76,-0.505773471435532],[112,131,77,-0.5047980308299884],[112,131,78,-0.5039559541328344],[112,131,79,-0.5031836007838137],[112,132,64,-0.5171010829508305],[112,132,65,-0.5150407766923308],[112,132,66,-0.5135658886283636],[112,132,67,-0.512801325879991],[112,132,68,-0.5125248022377491],[112,132,69,-0.5124049885198474],[112,132,70,-0.5122450273483992],[112,132,71,-0.5117878885939717],[112,132,72,-0.5106964153237641],[112,132,73,-0.509256019257009],[112,132,74,-0.5080228541046381],[112,132,75,-0.506874315906316],[112,132,76,-0.505773471435532],[112,132,77,-0.5047980308299884],[112,132,78,-0.5039559541328344],[112,132,79,-0.5031836007838137],[112,133,64,-0.5171010829508305],[112,133,65,-0.5150407766923308],[112,133,66,-0.5135658886283636],[112,133,67,-0.512801325879991],[112,133,68,-0.5125248022377491],[112,133,69,-0.5124049885198474],[112,133,70,-0.5122450273483992],[112,133,71,-0.5117878885939717],[112,133,72,-0.5106964153237641],[112,133,73,-0.509256019257009],[112,133,74,-0.5080228541046381],[112,133,75,-0.506874315906316],[112,133,76,-0.505773471435532],[112,133,77,-0.5047980308299884],[112,133,78,-0.5039559541328344],[112,133,79,-0.5031836007838137],[112,134,64,-0.5171010829508305],[112,134,65,-0.5150407766923308],[112,134,66,-0.5135658886283636],[112,134,67,-0.512801325879991],[112,134,68,-0.5125248022377491],[112,134,69,-0.5124049885198474],[112,134,70,-0.5122450273483992],[112,134,71,-0.5117878885939717],[112,134,72,-0.5106964153237641],[112,134,73,-0.509256019257009],[112,134,74,-0.5080228541046381],[112,134,75,-0.506874315906316],[112,134,76,-0.505773471435532],[112,134,77,-0.5047980308299884],[112,134,78,-0.5039559541328344],[112,134,79,-0.5031836007838137],[112,135,64,-0.5171010829508305],[112,135,65,-0.5150407766923308],[112,135,66,-0.5135658886283636],[112,135,67,-0.512801325879991],[112,135,68,-0.5125248022377491],[112,135,69,-0.5124049885198474],[112,135,70,-0.5122450273483992],[112,135,71,-0.5117878885939717],[112,135,72,-0.5106964153237641],[112,135,73,-0.509256019257009],[112,135,74,-0.5080228541046381],[112,135,75,-0.506874315906316],[112,135,76,-0.505773471435532],[112,135,77,-0.5047980308299884],[112,135,78,-0.5039559541328344],[112,135,79,-0.5031836007838137],[112,136,64,-0.5171010829508305],[112,136,65,-0.5150407766923308],[112,136,66,-0.5135658886283636],[112,136,67,-0.512801325879991],[112,136,68,-0.5125248022377491],[112,136,69,-0.5124049885198474],[112,136,70,-0.5122450273483992],[112,136,71,-0.5117878885939717],[112,136,72,-0.5106964153237641],[112,136,73,-0.509256019257009],[112,136,74,-0.5080228541046381],[112,136,75,-0.506874315906316],[112,136,76,-0.505773471435532],[112,136,77,-0.5047980308299884],[112,136,78,-0.5039559541328344],[112,136,79,-0.5031836007838137],[112,137,64,-0.5171010829508305],[112,137,65,-0.5150407766923308],[112,137,66,-0.5135658886283636],[112,137,67,-0.512801325879991],[112,137,68,-0.5125248022377491],[112,137,69,-0.5124049885198474],[112,137,70,-0.5122450273483992],[112,137,71,-0.5117878885939717],[112,137,72,-0.5106964153237641],[112,137,73,-0.509256019257009],[112,137,74,-0.5080228541046381],[112,137,75,-0.506874315906316],[112,137,76,-0.505773471435532],[112,137,77,-0.5047980308299884],[112,137,78,-0.5039559541328344],[112,137,79,-0.5031836007838137],[112,138,64,-0.5171010829508305],[112,138,65,-0.5150407766923308],[112,138,66,-0.5135658886283636],[112,138,67,-0.512801325879991],[112,138,68,-0.5125248022377491],[112,138,69,-0.5124049885198474],[112,138,70,-0.5122450273483992],[112,138,71,-0.5117878885939717],[112,138,72,-0.5106964153237641],[112,138,73,-0.509256019257009],[112,138,74,-0.5080228541046381],[112,138,75,-0.506874315906316],[112,138,76,-0.505773471435532],[112,138,77,-0.5047980308299884],[112,138,78,-0.5039559541328344],[112,138,79,-0.5031836007838137],[112,139,64,-0.5171010829508305],[112,139,65,-0.5150407766923308],[112,139,66,-0.5135658886283636],[112,139,67,-0.512801325879991],[112,139,68,-0.5125248022377491],[112,139,69,-0.5124049885198474],[112,139,70,-0.5122450273483992],[112,139,71,-0.5117878885939717],[112,139,72,-0.5106964153237641],[112,139,73,-0.509256019257009],[112,139,74,-0.5080228541046381],[112,139,75,-0.506874315906316],[112,139,76,-0.505773471435532],[112,139,77,-0.5047980308299884],[112,139,78,-0.5039559541328344],[112,139,79,-0.5031836007838137],[112,140,64,-0.5171010829508305],[112,140,65,-0.5150407766923308],[112,140,66,-0.5135658886283636],[112,140,67,-0.512801325879991],[112,140,68,-0.5125248022377491],[112,140,69,-0.5124049885198474],[112,140,70,-0.5122450273483992],[112,140,71,-0.5117878885939717],[112,140,72,-0.5106964153237641],[112,140,73,-0.509256019257009],[112,140,74,-0.5080228541046381],[112,140,75,-0.506874315906316],[112,140,76,-0.505773471435532],[112,140,77,-0.5047980308299884],[112,140,78,-0.5039559541328344],[112,140,79,-0.5031836007838137],[112,141,64,-0.5171010829508305],[112,141,65,-0.5150407766923308],[112,141,66,-0.5135658886283636],[112,141,67,-0.512801325879991],[112,141,68,-0.5125248022377491],[112,141,69,-0.5124049885198474],[112,141,70,-0.5122450273483992],[112,141,71,-0.5117878885939717],[112,141,72,-0.5106964153237641],[112,141,73,-0.509256019257009],[112,141,74,-0.5080228541046381],[112,141,75,-0.506874315906316],[112,141,76,-0.505773471435532],[112,141,77,-0.5047980308299884],[112,141,78,-0.5039559541328344],[112,141,79,-0.5031836007838137],[112,142,64,-0.5171010829508305],[112,142,65,-0.5150407766923308],[112,142,66,-0.5135658886283636],[112,142,67,-0.512801325879991],[112,142,68,-0.5125248022377491],[112,142,69,-0.5124049885198474],[112,142,70,-0.5122450273483992],[112,142,71,-0.5117878885939717],[112,142,72,-0.5106964153237641],[112,142,73,-0.509256019257009],[112,142,74,-0.5080228541046381],[112,142,75,-0.506874315906316],[112,142,76,-0.505773471435532],[112,142,77,-0.5047980308299884],[112,142,78,-0.5039559541328344],[112,142,79,-0.5031836007838137],[112,143,64,-0.5171010829508305],[112,143,65,-0.5150407766923308],[112,143,66,-0.5135658886283636],[112,143,67,-0.512801325879991],[112,143,68,-0.5125248022377491],[112,143,69,-0.5124049885198474],[112,143,70,-0.5122450273483992],[112,143,71,-0.5117878885939717],[112,143,72,-0.5106964153237641],[112,143,73,-0.509256019257009],[112,143,74,-0.5080228541046381],[112,143,75,-0.506874315906316],[112,143,76,-0.505773471435532],[112,143,77,-0.5047980308299884],[112,143,78,-0.5039559541328344],[112,143,79,-0.5031836007838137],[112,144,64,-0.5171010829508305],[112,144,65,-0.5150407766923308],[112,144,66,-0.5135658886283636],[112,144,67,-0.512801325879991],[112,144,68,-0.5125248022377491],[112,144,69,-0.5124049885198474],[112,144,70,-0.5122450273483992],[112,144,71,-0.5117878885939717],[112,144,72,-0.5106964153237641],[112,144,73,-0.509256019257009],[112,144,74,-0.5080228541046381],[112,144,75,-0.506874315906316],[112,144,76,-0.505773471435532],[112,144,77,-0.5047980308299884],[112,144,78,-0.5039559541328344],[112,144,79,-0.5031836007838137],[112,145,64,-0.5171010829508305],[112,145,65,-0.5150407766923308],[112,145,66,-0.5135658886283636],[112,145,67,-0.512801325879991],[112,145,68,-0.5125248022377491],[112,145,69,-0.5124049885198474],[112,145,70,-0.5122450273483992],[112,145,71,-0.5117878885939717],[112,145,72,-0.5106964153237641],[112,145,73,-0.509256019257009],[112,145,74,-0.5080228541046381],[112,145,75,-0.506874315906316],[112,145,76,-0.505773471435532],[112,145,77,-0.5047980308299884],[112,145,78,-0.5039559541328344],[112,145,79,-0.5031836007838137],[112,146,64,-0.5171010829508305],[112,146,65,-0.5150407766923308],[112,146,66,-0.5135658886283636],[112,146,67,-0.512801325879991],[112,146,68,-0.5125248022377491],[112,146,69,-0.5124049885198474],[112,146,70,-0.5122450273483992],[112,146,71,-0.5117878885939717],[112,146,72,-0.5106964153237641],[112,146,73,-0.509256019257009],[112,146,74,-0.5080228541046381],[112,146,75,-0.506874315906316],[112,146,76,-0.505773471435532],[112,146,77,-0.5047980308299884],[112,146,78,-0.5039559541328344],[112,146,79,-0.5031836007838137],[112,147,64,-0.5171010829508305],[112,147,65,-0.5150407766923308],[112,147,66,-0.5135658886283636],[112,147,67,-0.512801325879991],[112,147,68,-0.5125248022377491],[112,147,69,-0.5124049885198474],[112,147,70,-0.5122450273483992],[112,147,71,-0.5117878885939717],[112,147,72,-0.5106964153237641],[112,147,73,-0.509256019257009],[112,147,74,-0.5080228541046381],[112,147,75,-0.506874315906316],[112,147,76,-0.505773471435532],[112,147,77,-0.5047980308299884],[112,147,78,-0.5039559541328344],[112,147,79,-0.5031836007838137],[112,148,64,-0.5171010829508305],[112,148,65,-0.5150407766923308],[112,148,66,-0.5135658886283636],[112,148,67,-0.512801325879991],[112,148,68,-0.5125248022377491],[112,148,69,-0.5124049885198474],[112,148,70,-0.5122450273483992],[112,148,71,-0.5117878885939717],[112,148,72,-0.5106964153237641],[112,148,73,-0.509256019257009],[112,148,74,-0.5080228541046381],[112,148,75,-0.506874315906316],[112,148,76,-0.505773471435532],[112,148,77,-0.5047980308299884],[112,148,78,-0.5039559541328344],[112,148,79,-0.5031836007838137],[112,149,64,-0.5171010829508305],[112,149,65,-0.5150407766923308],[112,149,66,-0.5135658886283636],[112,149,67,-0.512801325879991],[112,149,68,-0.5125248022377491],[112,149,69,-0.5124049885198474],[112,149,70,-0.5122450273483992],[112,149,71,-0.5117878885939717],[112,149,72,-0.5106964153237641],[112,149,73,-0.509256019257009],[112,149,74,-0.5080228541046381],[112,149,75,-0.506874315906316],[112,149,76,-0.505773471435532],[112,149,77,-0.5047980308299884],[112,149,78,-0.5039559541328344],[112,149,79,-0.5031836007838137],[112,150,64,-0.5171010829508305],[112,150,65,-0.5150407766923308],[112,150,66,-0.5135658886283636],[112,150,67,-0.512801325879991],[112,150,68,-0.5125248022377491],[112,150,69,-0.5124049885198474],[112,150,70,-0.5122450273483992],[112,150,71,-0.5117878885939717],[112,150,72,-0.5106964153237641],[112,150,73,-0.509256019257009],[112,150,74,-0.5080228541046381],[112,150,75,-0.506874315906316],[112,150,76,-0.505773471435532],[112,150,77,-0.5047980308299884],[112,150,78,-0.5039559541328344],[112,150,79,-0.5031836007838137],[112,151,64,-0.5171010829508305],[112,151,65,-0.5150407766923308],[112,151,66,-0.5135658886283636],[112,151,67,-0.512801325879991],[112,151,68,-0.5125248022377491],[112,151,69,-0.5124049885198474],[112,151,70,-0.5122450273483992],[112,151,71,-0.5117878885939717],[112,151,72,-0.5106964153237641],[112,151,73,-0.509256019257009],[112,151,74,-0.5080228541046381],[112,151,75,-0.506874315906316],[112,151,76,-0.505773471435532],[112,151,77,-0.5047980308299884],[112,151,78,-0.5039559541328344],[112,151,79,-0.5031836007838137],[112,152,64,-0.5171010829508305],[112,152,65,-0.5150407766923308],[112,152,66,-0.5135658886283636],[112,152,67,-0.512801325879991],[112,152,68,-0.5125248022377491],[112,152,69,-0.5124049885198474],[112,152,70,-0.5122450273483992],[112,152,71,-0.5117878885939717],[112,152,72,-0.5106964153237641],[112,152,73,-0.509256019257009],[112,152,74,-0.5080228541046381],[112,152,75,-0.506874315906316],[112,152,76,-0.505773471435532],[112,152,77,-0.5047980308299884],[112,152,78,-0.5039559541328344],[112,152,79,-0.5031836007838137],[112,153,64,-0.5171010829508305],[112,153,65,-0.5150407766923308],[112,153,66,-0.5135658886283636],[112,153,67,-0.512801325879991],[112,153,68,-0.5125248022377491],[112,153,69,-0.5124049885198474],[112,153,70,-0.5122450273483992],[112,153,71,-0.5117878885939717],[112,153,72,-0.5106964153237641],[112,153,73,-0.509256019257009],[112,153,74,-0.5080228541046381],[112,153,75,-0.506874315906316],[112,153,76,-0.505773471435532],[112,153,77,-0.5047980308299884],[112,153,78,-0.5039559541328344],[112,153,79,-0.5031836007838137],[112,154,64,-0.5171010829508305],[112,154,65,-0.5150407766923308],[112,154,66,-0.5135658886283636],[112,154,67,-0.512801325879991],[112,154,68,-0.5125248022377491],[112,154,69,-0.5124049885198474],[112,154,70,-0.5122450273483992],[112,154,71,-0.5117878885939717],[112,154,72,-0.5106964153237641],[112,154,73,-0.509256019257009],[112,154,74,-0.5080228541046381],[112,154,75,-0.506874315906316],[112,154,76,-0.505773471435532],[112,154,77,-0.5047980308299884],[112,154,78,-0.5039559541328344],[112,154,79,-0.5031836007838137],[112,155,64,-0.5171010829508305],[112,155,65,-0.5150407766923308],[112,155,66,-0.5135658886283636],[112,155,67,-0.512801325879991],[112,155,68,-0.5125248022377491],[112,155,69,-0.5124049885198474],[112,155,70,-0.5122450273483992],[112,155,71,-0.5117878885939717],[112,155,72,-0.5106964153237641],[112,155,73,-0.509256019257009],[112,155,74,-0.5080228541046381],[112,155,75,-0.506874315906316],[112,155,76,-0.505773471435532],[112,155,77,-0.5047980308299884],[112,155,78,-0.5039559541328344],[112,155,79,-0.5031836007838137],[112,156,64,-0.5171010829508305],[112,156,65,-0.5150407766923308],[112,156,66,-0.5135658886283636],[112,156,67,-0.512801325879991],[112,156,68,-0.5125248022377491],[112,156,69,-0.5124049885198474],[112,156,70,-0.5122450273483992],[112,156,71,-0.5117878885939717],[112,156,72,-0.5106964153237641],[112,156,73,-0.509256019257009],[112,156,74,-0.5080228541046381],[112,156,75,-0.506874315906316],[112,156,76,-0.505773471435532],[112,156,77,-0.5047980308299884],[112,156,78,-0.5039559541328344],[112,156,79,-0.5031836007838137],[112,157,64,-0.5171010829508305],[112,157,65,-0.5150407766923308],[112,157,66,-0.5135658886283636],[112,157,67,-0.512801325879991],[112,157,68,-0.5125248022377491],[112,157,69,-0.5124049885198474],[112,157,70,-0.5122450273483992],[112,157,71,-0.5117878885939717],[112,157,72,-0.5106964153237641],[112,157,73,-0.509256019257009],[112,157,74,-0.5080228541046381],[112,157,75,-0.506874315906316],[112,157,76,-0.505773471435532],[112,157,77,-0.5047980308299884],[112,157,78,-0.5039559541328344],[112,157,79,-0.5031836007838137],[112,158,64,-0.5171010829508305],[112,158,65,-0.5150407766923308],[112,158,66,-0.5135658886283636],[112,158,67,-0.512801325879991],[112,158,68,-0.5125248022377491],[112,158,69,-0.5124049885198474],[112,158,70,-0.5122450273483992],[112,158,71,-0.5117878885939717],[112,158,72,-0.5106964153237641],[112,158,73,-0.509256019257009],[112,158,74,-0.5080228541046381],[112,158,75,-0.506874315906316],[112,158,76,-0.505773471435532],[112,158,77,-0.5047980308299884],[112,158,78,-0.5039559541328344],[112,158,79,-0.5031836007838137],[112,159,64,-0.5171010829508305],[112,159,65,-0.5150407766923308],[112,159,66,-0.5135658886283636],[112,159,67,-0.512801325879991],[112,159,68,-0.5125248022377491],[112,159,69,-0.5124049885198474],[112,159,70,-0.5122450273483992],[112,159,71,-0.5117878885939717],[112,159,72,-0.5106964153237641],[112,159,73,-0.509256019257009],[112,159,74,-0.5080228541046381],[112,159,75,-0.506874315906316],[112,159,76,-0.505773471435532],[112,159,77,-0.5047980308299884],[112,159,78,-0.5039559541328344],[112,159,79,-0.5031836007838137],[112,160,64,-0.5171010829508305],[112,160,65,-0.5150407766923308],[112,160,66,-0.5135658886283636],[112,160,67,-0.512801325879991],[112,160,68,-0.5125248022377491],[112,160,69,-0.5124049885198474],[112,160,70,-0.5122450273483992],[112,160,71,-0.5117878885939717],[112,160,72,-0.5106964153237641],[112,160,73,-0.509256019257009],[112,160,74,-0.5080228541046381],[112,160,75,-0.506874315906316],[112,160,76,-0.505773471435532],[112,160,77,-0.5047980308299884],[112,160,78,-0.5039559541328344],[112,160,79,-0.5031836007838137],[112,161,64,-0.5171010829508305],[112,161,65,-0.5150407766923308],[112,161,66,-0.5135658886283636],[112,161,67,-0.512801325879991],[112,161,68,-0.5125248022377491],[112,161,69,-0.5124049885198474],[112,161,70,-0.5122450273483992],[112,161,71,-0.5117878885939717],[112,161,72,-0.5106964153237641],[112,161,73,-0.509256019257009],[112,161,74,-0.5080228541046381],[112,161,75,-0.506874315906316],[112,161,76,-0.505773471435532],[112,161,77,-0.5047980308299884],[112,161,78,-0.5039559541328344],[112,161,79,-0.5031836007838137],[112,162,64,-0.5171010829508305],[112,162,65,-0.5150407766923308],[112,162,66,-0.5135658886283636],[112,162,67,-0.512801325879991],[112,162,68,-0.5125248022377491],[112,162,69,-0.5124049885198474],[112,162,70,-0.5122450273483992],[112,162,71,-0.5117878885939717],[112,162,72,-0.5106964153237641],[112,162,73,-0.509256019257009],[112,162,74,-0.5080228541046381],[112,162,75,-0.506874315906316],[112,162,76,-0.505773471435532],[112,162,77,-0.5047980308299884],[112,162,78,-0.5039559541328344],[112,162,79,-0.5031836007838137],[112,163,64,-0.5171010829508305],[112,163,65,-0.5150407766923308],[112,163,66,-0.5135658886283636],[112,163,67,-0.512801325879991],[112,163,68,-0.5125248022377491],[112,163,69,-0.5124049885198474],[112,163,70,-0.5122450273483992],[112,163,71,-0.5117878885939717],[112,163,72,-0.5106964153237641],[112,163,73,-0.509256019257009],[112,163,74,-0.5080228541046381],[112,163,75,-0.506874315906316],[112,163,76,-0.505773471435532],[112,163,77,-0.5047980308299884],[112,163,78,-0.5039559541328344],[112,163,79,-0.5031836007838137],[112,164,64,-0.5171010829508305],[112,164,65,-0.5150407766923308],[112,164,66,-0.5135658886283636],[112,164,67,-0.512801325879991],[112,164,68,-0.5125248022377491],[112,164,69,-0.5124049885198474],[112,164,70,-0.5122450273483992],[112,164,71,-0.5117878885939717],[112,164,72,-0.5106964153237641],[112,164,73,-0.509256019257009],[112,164,74,-0.5080228541046381],[112,164,75,-0.506874315906316],[112,164,76,-0.505773471435532],[112,164,77,-0.5047980308299884],[112,164,78,-0.5039559541328344],[112,164,79,-0.5031836007838137],[112,165,64,-0.5171010829508305],[112,165,65,-0.5150407766923308],[112,165,66,-0.5135658886283636],[112,165,67,-0.512801325879991],[112,165,68,-0.5125248022377491],[112,165,69,-0.5124049885198474],[112,165,70,-0.5122450273483992],[112,165,71,-0.5117878885939717],[112,165,72,-0.5106964153237641],[112,165,73,-0.509256019257009],[112,165,74,-0.5080228541046381],[112,165,75,-0.506874315906316],[112,165,76,-0.505773471435532],[112,165,77,-0.5047980308299884],[112,165,78,-0.5039559541328344],[112,165,79,-0.5031836007838137],[112,166,64,-0.5171010829508305],[112,166,65,-0.5150407766923308],[112,166,66,-0.5135658886283636],[112,166,67,-0.512801325879991],[112,166,68,-0.5125248022377491],[112,166,69,-0.5124049885198474],[112,166,70,-0.5122450273483992],[112,166,71,-0.5117878885939717],[112,166,72,-0.5106964153237641],[112,166,73,-0.509256019257009],[112,166,74,-0.5080228541046381],[112,166,75,-0.506874315906316],[112,166,76,-0.505773471435532],[112,166,77,-0.5047980308299884],[112,166,78,-0.5039559541328344],[112,166,79,-0.5031836007838137],[112,167,64,-0.5171010829508305],[112,167,65,-0.5150407766923308],[112,167,66,-0.5135658886283636],[112,167,67,-0.512801325879991],[112,167,68,-0.5125248022377491],[112,167,69,-0.5124049885198474],[112,167,70,-0.5122450273483992],[112,167,71,-0.5117878885939717],[112,167,72,-0.5106964153237641],[112,167,73,-0.509256019257009],[112,167,74,-0.5080228541046381],[112,167,75,-0.506874315906316],[112,167,76,-0.505773471435532],[112,167,77,-0.5047980308299884],[112,167,78,-0.5039559541328344],[112,167,79,-0.5031836007838137],[112,168,64,-0.5171010829508305],[112,168,65,-0.5150407766923308],[112,168,66,-0.5135658886283636],[112,168,67,-0.512801325879991],[112,168,68,-0.5125248022377491],[112,168,69,-0.5124049885198474],[112,168,70,-0.5122450273483992],[112,168,71,-0.5117878885939717],[112,168,72,-0.5106964153237641],[112,168,73,-0.509256019257009],[112,168,74,-0.5080228541046381],[112,168,75,-0.506874315906316],[112,168,76,-0.505773471435532],[112,168,77,-0.5047980308299884],[112,168,78,-0.5039559541328344],[112,168,79,-0.5031836007838137],[112,169,64,-0.5171010829508305],[112,169,65,-0.5150407766923308],[112,169,66,-0.5135658886283636],[112,169,67,-0.512801325879991],[112,169,68,-0.5125248022377491],[112,169,69,-0.5124049885198474],[112,169,70,-0.5122450273483992],[112,169,71,-0.5117878885939717],[112,169,72,-0.5106964153237641],[112,169,73,-0.509256019257009],[112,169,74,-0.5080228541046381],[112,169,75,-0.506874315906316],[112,169,76,-0.505773471435532],[112,169,77,-0.5047980308299884],[112,169,78,-0.5039559541328344],[112,169,79,-0.5031836007838137],[112,170,64,-0.5171010829508305],[112,170,65,-0.5150407766923308],[112,170,66,-0.5135658886283636],[112,170,67,-0.512801325879991],[112,170,68,-0.5125248022377491],[112,170,69,-0.5124049885198474],[112,170,70,-0.5122450273483992],[112,170,71,-0.5117878885939717],[112,170,72,-0.5106964153237641],[112,170,73,-0.509256019257009],[112,170,74,-0.5080228541046381],[112,170,75,-0.506874315906316],[112,170,76,-0.505773471435532],[112,170,77,-0.5047980308299884],[112,170,78,-0.5039559541328344],[112,170,79,-0.5031836007838137],[112,171,64,-0.5171010829508305],[112,171,65,-0.5150407766923308],[112,171,66,-0.5135658886283636],[112,171,67,-0.512801325879991],[112,171,68,-0.5125248022377491],[112,171,69,-0.5124049885198474],[112,171,70,-0.5122450273483992],[112,171,71,-0.5117878885939717],[112,171,72,-0.5106964153237641],[112,171,73,-0.509256019257009],[112,171,74,-0.5080228541046381],[112,171,75,-0.506874315906316],[112,171,76,-0.505773471435532],[112,171,77,-0.5047980308299884],[112,171,78,-0.5039559541328344],[112,171,79,-0.5031836007838137],[112,172,64,-0.5171010829508305],[112,172,65,-0.5150407766923308],[112,172,66,-0.5135658886283636],[112,172,67,-0.512801325879991],[112,172,68,-0.5125248022377491],[112,172,69,-0.5124049885198474],[112,172,70,-0.5122450273483992],[112,172,71,-0.5117878885939717],[112,172,72,-0.5106964153237641],[112,172,73,-0.509256019257009],[112,172,74,-0.5080228541046381],[112,172,75,-0.506874315906316],[112,172,76,-0.505773471435532],[112,172,77,-0.5047980308299884],[112,172,78,-0.5039559541328344],[112,172,79,-0.5031836007838137],[112,173,64,-0.5171010829508305],[112,173,65,-0.5150407766923308],[112,173,66,-0.5135658886283636],[112,173,67,-0.512801325879991],[112,173,68,-0.5125248022377491],[112,173,69,-0.5124049885198474],[112,173,70,-0.5122450273483992],[112,173,71,-0.5117878885939717],[112,173,72,-0.5106964153237641],[112,173,73,-0.509256019257009],[112,173,74,-0.5080228541046381],[112,173,75,-0.506874315906316],[112,173,76,-0.505773471435532],[112,173,77,-0.5047980308299884],[112,173,78,-0.5039559541328344],[112,173,79,-0.5031836007838137],[112,174,64,-0.5171010829508305],[112,174,65,-0.5150407766923308],[112,174,66,-0.5135658886283636],[112,174,67,-0.512801325879991],[112,174,68,-0.5125248022377491],[112,174,69,-0.5124049885198474],[112,174,70,-0.5122450273483992],[112,174,71,-0.5117878885939717],[112,174,72,-0.5106964153237641],[112,174,73,-0.509256019257009],[112,174,74,-0.5080228541046381],[112,174,75,-0.506874315906316],[112,174,76,-0.505773471435532],[112,174,77,-0.5047980308299884],[112,174,78,-0.5039559541328344],[112,174,79,-0.5031836007838137],[112,175,64,-0.5171010829508305],[112,175,65,-0.5150407766923308],[112,175,66,-0.5135658886283636],[112,175,67,-0.512801325879991],[112,175,68,-0.5125248022377491],[112,175,69,-0.5124049885198474],[112,175,70,-0.5122450273483992],[112,175,71,-0.5117878885939717],[112,175,72,-0.5106964153237641],[112,175,73,-0.509256019257009],[112,175,74,-0.5080228541046381],[112,175,75,-0.506874315906316],[112,175,76,-0.505773471435532],[112,175,77,-0.5047980308299884],[112,175,78,-0.5039559541328344],[112,175,79,-0.5031836007838137],[112,176,64,-0.5171010829508305],[112,176,65,-0.5150407766923308],[112,176,66,-0.5135658886283636],[112,176,67,-0.512801325879991],[112,176,68,-0.5125248022377491],[112,176,69,-0.5124049885198474],[112,176,70,-0.5122450273483992],[112,176,71,-0.5117878885939717],[112,176,72,-0.5106964153237641],[112,176,73,-0.509256019257009],[112,176,74,-0.5080228541046381],[112,176,75,-0.506874315906316],[112,176,76,-0.505773471435532],[112,176,77,-0.5047980308299884],[112,176,78,-0.5039559541328344],[112,176,79,-0.5031836007838137],[112,177,64,-0.5171010829508305],[112,177,65,-0.5150407766923308],[112,177,66,-0.5135658886283636],[112,177,67,-0.512801325879991],[112,177,68,-0.5125248022377491],[112,177,69,-0.5124049885198474],[112,177,70,-0.5122450273483992],[112,177,71,-0.5117878885939717],[112,177,72,-0.5106964153237641],[112,177,73,-0.509256019257009],[112,177,74,-0.5080228541046381],[112,177,75,-0.506874315906316],[112,177,76,-0.505773471435532],[112,177,77,-0.5047980308299884],[112,177,78,-0.5039559541328344],[112,177,79,-0.5031836007838137],[112,178,64,-0.5171010829508305],[112,178,65,-0.5150407766923308],[112,178,66,-0.5135658886283636],[112,178,67,-0.512801325879991],[112,178,68,-0.5125248022377491],[112,178,69,-0.5124049885198474],[112,178,70,-0.5122450273483992],[112,178,71,-0.5117878885939717],[112,178,72,-0.5106964153237641],[112,178,73,-0.509256019257009],[112,178,74,-0.5080228541046381],[112,178,75,-0.506874315906316],[112,178,76,-0.505773471435532],[112,178,77,-0.5047980308299884],[112,178,78,-0.5039559541328344],[112,178,79,-0.5031836007838137],[112,179,64,-0.5171010829508305],[112,179,65,-0.5150407766923308],[112,179,66,-0.5135658886283636],[112,179,67,-0.512801325879991],[112,179,68,-0.5125248022377491],[112,179,69,-0.5124049885198474],[112,179,70,-0.5122450273483992],[112,179,71,-0.5117878885939717],[112,179,72,-0.5106964153237641],[112,179,73,-0.509256019257009],[112,179,74,-0.5080228541046381],[112,179,75,-0.506874315906316],[112,179,76,-0.505773471435532],[112,179,77,-0.5047980308299884],[112,179,78,-0.5039559541328344],[112,179,79,-0.5031836007838137],[112,180,64,-0.5171010829508305],[112,180,65,-0.5150407766923308],[112,180,66,-0.5135658886283636],[112,180,67,-0.512801325879991],[112,180,68,-0.5125248022377491],[112,180,69,-0.5124049885198474],[112,180,70,-0.5122450273483992],[112,180,71,-0.5117878885939717],[112,180,72,-0.5106964153237641],[112,180,73,-0.509256019257009],[112,180,74,-0.5080228541046381],[112,180,75,-0.506874315906316],[112,180,76,-0.505773471435532],[112,180,77,-0.5047980308299884],[112,180,78,-0.5039559541328344],[112,180,79,-0.5031836007838137],[112,181,64,-0.5171010829508305],[112,181,65,-0.5150407766923308],[112,181,66,-0.5135658886283636],[112,181,67,-0.512801325879991],[112,181,68,-0.5125248022377491],[112,181,69,-0.5124049885198474],[112,181,70,-0.5122450273483992],[112,181,71,-0.5117878885939717],[112,181,72,-0.5106964153237641],[112,181,73,-0.509256019257009],[112,181,74,-0.5080228541046381],[112,181,75,-0.506874315906316],[112,181,76,-0.505773471435532],[112,181,77,-0.5047980308299884],[112,181,78,-0.5039559541328344],[112,181,79,-0.5031836007838137],[112,182,64,-0.5171010829508305],[112,182,65,-0.5150407766923308],[112,182,66,-0.5135658886283636],[112,182,67,-0.512801325879991],[112,182,68,-0.5125248022377491],[112,182,69,-0.5124049885198474],[112,182,70,-0.5122450273483992],[112,182,71,-0.5117878885939717],[112,182,72,-0.5106964153237641],[112,182,73,-0.509256019257009],[112,182,74,-0.5080228541046381],[112,182,75,-0.506874315906316],[112,182,76,-0.505773471435532],[112,182,77,-0.5047980308299884],[112,182,78,-0.5039559541328344],[112,182,79,-0.5031836007838137],[112,183,64,-0.5171010829508305],[112,183,65,-0.5150407766923308],[112,183,66,-0.5135658886283636],[112,183,67,-0.512801325879991],[112,183,68,-0.5125248022377491],[112,183,69,-0.5124049885198474],[112,183,70,-0.5122450273483992],[112,183,71,-0.5117878885939717],[112,183,72,-0.5106964153237641],[112,183,73,-0.509256019257009],[112,183,74,-0.5080228541046381],[112,183,75,-0.506874315906316],[112,183,76,-0.505773471435532],[112,183,77,-0.5047980308299884],[112,183,78,-0.5039559541328344],[112,183,79,-0.5031836007838137],[112,184,64,-0.5171010829508305],[112,184,65,-0.5150407766923308],[112,184,66,-0.5135658886283636],[112,184,67,-0.512801325879991],[112,184,68,-0.5125248022377491],[112,184,69,-0.5124049885198474],[112,184,70,-0.5122450273483992],[112,184,71,-0.5117878885939717],[112,184,72,-0.5106964153237641],[112,184,73,-0.509256019257009],[112,184,74,-0.5080228541046381],[112,184,75,-0.506874315906316],[112,184,76,-0.505773471435532],[112,184,77,-0.5047980308299884],[112,184,78,-0.5039559541328344],[112,184,79,-0.5031836007838137],[112,185,64,-0.5171010829508305],[112,185,65,-0.5150407766923308],[112,185,66,-0.5135658886283636],[112,185,67,-0.512801325879991],[112,185,68,-0.5125248022377491],[112,185,69,-0.5124049885198474],[112,185,70,-0.5122450273483992],[112,185,71,-0.5117878885939717],[112,185,72,-0.5106964153237641],[112,185,73,-0.509256019257009],[112,185,74,-0.5080228541046381],[112,185,75,-0.506874315906316],[112,185,76,-0.505773471435532],[112,185,77,-0.5047980308299884],[112,185,78,-0.5039559541328344],[112,185,79,-0.5031836007838137],[112,186,64,-0.5171010829508305],[112,186,65,-0.5150407766923308],[112,186,66,-0.5135658886283636],[112,186,67,-0.512801325879991],[112,186,68,-0.5125248022377491],[112,186,69,-0.5124049885198474],[112,186,70,-0.5122450273483992],[112,186,71,-0.5117878885939717],[112,186,72,-0.5106964153237641],[112,186,73,-0.509256019257009],[112,186,74,-0.5080228541046381],[112,186,75,-0.506874315906316],[112,186,76,-0.505773471435532],[112,186,77,-0.5047980308299884],[112,186,78,-0.5039559541328344],[112,186,79,-0.5031836007838137],[112,187,64,-0.5171010829508305],[112,187,65,-0.5150407766923308],[112,187,66,-0.5135658886283636],[112,187,67,-0.512801325879991],[112,187,68,-0.5125248022377491],[112,187,69,-0.5124049885198474],[112,187,70,-0.5122450273483992],[112,187,71,-0.5117878885939717],[112,187,72,-0.5106964153237641],[112,187,73,-0.509256019257009],[112,187,74,-0.5080228541046381],[112,187,75,-0.506874315906316],[112,187,76,-0.505773471435532],[112,187,77,-0.5047980308299884],[112,187,78,-0.5039559541328344],[112,187,79,-0.5031836007838137],[112,188,64,-0.5171010829508305],[112,188,65,-0.5150407766923308],[112,188,66,-0.5135658886283636],[112,188,67,-0.512801325879991],[112,188,68,-0.5125248022377491],[112,188,69,-0.5124049885198474],[112,188,70,-0.5122450273483992],[112,188,71,-0.5117878885939717],[112,188,72,-0.5106964153237641],[112,188,73,-0.509256019257009],[112,188,74,-0.5080228541046381],[112,188,75,-0.506874315906316],[112,188,76,-0.505773471435532],[112,188,77,-0.5047980308299884],[112,188,78,-0.5039559541328344],[112,188,79,-0.5031836007838137],[112,189,64,-0.5171010829508305],[112,189,65,-0.5150407766923308],[112,189,66,-0.5135658886283636],[112,189,67,-0.512801325879991],[112,189,68,-0.5125248022377491],[112,189,69,-0.5124049885198474],[112,189,70,-0.5122450273483992],[112,189,71,-0.5117878885939717],[112,189,72,-0.5106964153237641],[112,189,73,-0.509256019257009],[112,189,74,-0.5080228541046381],[112,189,75,-0.506874315906316],[112,189,76,-0.505773471435532],[112,189,77,-0.5047980308299884],[112,189,78,-0.5039559541328344],[112,189,79,-0.5031836007838137],[112,190,64,-0.5171010829508305],[112,190,65,-0.5150407766923308],[112,190,66,-0.5135658886283636],[112,190,67,-0.512801325879991],[112,190,68,-0.5125248022377491],[112,190,69,-0.5124049885198474],[112,190,70,-0.5122450273483992],[112,190,71,-0.5117878885939717],[112,190,72,-0.5106964153237641],[112,190,73,-0.509256019257009],[112,190,74,-0.5080228541046381],[112,190,75,-0.506874315906316],[112,190,76,-0.505773471435532],[112,190,77,-0.5047980308299884],[112,190,78,-0.5039559541328344],[112,190,79,-0.5031836007838137],[112,191,64,-0.5171010829508305],[112,191,65,-0.5150407766923308],[112,191,66,-0.5135658886283636],[112,191,67,-0.512801325879991],[112,191,68,-0.5125248022377491],[112,191,69,-0.5124049885198474],[112,191,70,-0.5122450273483992],[112,191,71,-0.5117878885939717],[112,191,72,-0.5106964153237641],[112,191,73,-0.509256019257009],[112,191,74,-0.5080228541046381],[112,191,75,-0.506874315906316],[112,191,76,-0.505773471435532],[112,191,77,-0.5047980308299884],[112,191,78,-0.5039559541328344],[112,191,79,-0.5031836007838137],[112,192,64,-0.5171010829508305],[112,192,65,-0.5150407766923308],[112,192,66,-0.5135658886283636],[112,192,67,-0.512801325879991],[112,192,68,-0.5125248022377491],[112,192,69,-0.5124049885198474],[112,192,70,-0.5122450273483992],[112,192,71,-0.5117878885939717],[112,192,72,-0.5106964153237641],[112,192,73,-0.509256019257009],[112,192,74,-0.5080228541046381],[112,192,75,-0.506874315906316],[112,192,76,-0.505773471435532],[112,192,77,-0.5047980308299884],[112,192,78,-0.5039559541328344],[112,192,79,-0.5031836007838137],[112,193,64,-0.5171010829508305],[112,193,65,-0.5150407766923308],[112,193,66,-0.5135658886283636],[112,193,67,-0.512801325879991],[112,193,68,-0.5125248022377491],[112,193,69,-0.5124049885198474],[112,193,70,-0.5122450273483992],[112,193,71,-0.5117878885939717],[112,193,72,-0.5106964153237641],[112,193,73,-0.509256019257009],[112,193,74,-0.5080228541046381],[112,193,75,-0.506874315906316],[112,193,76,-0.505773471435532],[112,193,77,-0.5047980308299884],[112,193,78,-0.5039559541328344],[112,193,79,-0.5031836007838137],[112,194,64,-0.5171010829508305],[112,194,65,-0.5150407766923308],[112,194,66,-0.5135658886283636],[112,194,67,-0.512801325879991],[112,194,68,-0.5125248022377491],[112,194,69,-0.5124049885198474],[112,194,70,-0.5122450273483992],[112,194,71,-0.5117878885939717],[112,194,72,-0.5106964153237641],[112,194,73,-0.509256019257009],[112,194,74,-0.5080228541046381],[112,194,75,-0.506874315906316],[112,194,76,-0.505773471435532],[112,194,77,-0.5047980308299884],[112,194,78,-0.5039559541328344],[112,194,79,-0.5031836007838137],[112,195,64,-0.5171010829508305],[112,195,65,-0.5150407766923308],[112,195,66,-0.5135658886283636],[112,195,67,-0.512801325879991],[112,195,68,-0.5125248022377491],[112,195,69,-0.5124049885198474],[112,195,70,-0.5122450273483992],[112,195,71,-0.5117878885939717],[112,195,72,-0.5106964153237641],[112,195,73,-0.509256019257009],[112,195,74,-0.5080228541046381],[112,195,75,-0.506874315906316],[112,195,76,-0.505773471435532],[112,195,77,-0.5047980308299884],[112,195,78,-0.5039559541328344],[112,195,79,-0.5031836007838137],[112,196,64,-0.5171010829508305],[112,196,65,-0.5150407766923308],[112,196,66,-0.5135658886283636],[112,196,67,-0.512801325879991],[112,196,68,-0.5125248022377491],[112,196,69,-0.5124049885198474],[112,196,70,-0.5122450273483992],[112,196,71,-0.5117878885939717],[112,196,72,-0.5106964153237641],[112,196,73,-0.509256019257009],[112,196,74,-0.5080228541046381],[112,196,75,-0.506874315906316],[112,196,76,-0.505773471435532],[112,196,77,-0.5047980308299884],[112,196,78,-0.5039559541328344],[112,196,79,-0.5031836007838137],[112,197,64,-0.5171010829508305],[112,197,65,-0.5150407766923308],[112,197,66,-0.5135658886283636],[112,197,67,-0.512801325879991],[112,197,68,-0.5125248022377491],[112,197,69,-0.5124049885198474],[112,197,70,-0.5122450273483992],[112,197,71,-0.5117878885939717],[112,197,72,-0.5106964153237641],[112,197,73,-0.509256019257009],[112,197,74,-0.5080228541046381],[112,197,75,-0.506874315906316],[112,197,76,-0.505773471435532],[112,197,77,-0.5047980308299884],[112,197,78,-0.5039559541328344],[112,197,79,-0.5031836007838137],[112,198,64,-0.5171010829508305],[112,198,65,-0.5150407766923308],[112,198,66,-0.5135658886283636],[112,198,67,-0.512801325879991],[112,198,68,-0.5125248022377491],[112,198,69,-0.5124049885198474],[112,198,70,-0.5122450273483992],[112,198,71,-0.5117878885939717],[112,198,72,-0.5106964153237641],[112,198,73,-0.509256019257009],[112,198,74,-0.5080228541046381],[112,198,75,-0.506874315906316],[112,198,76,-0.505773471435532],[112,198,77,-0.5047980308299884],[112,198,78,-0.5039559541328344],[112,198,79,-0.5031836007838137],[112,199,64,-0.5171010829508305],[112,199,65,-0.5150407766923308],[112,199,66,-0.5135658886283636],[112,199,67,-0.512801325879991],[112,199,68,-0.5125248022377491],[112,199,69,-0.5124049885198474],[112,199,70,-0.5122450273483992],[112,199,71,-0.5117878885939717],[112,199,72,-0.5106964153237641],[112,199,73,-0.509256019257009],[112,199,74,-0.5080228541046381],[112,199,75,-0.506874315906316],[112,199,76,-0.505773471435532],[112,199,77,-0.5047980308299884],[112,199,78,-0.5039559541328344],[112,199,79,-0.5031836007838137],[112,200,64,-0.5171010829508305],[112,200,65,-0.5150407766923308],[112,200,66,-0.5135658886283636],[112,200,67,-0.512801325879991],[112,200,68,-0.5125248022377491],[112,200,69,-0.5124049885198474],[112,200,70,-0.5122450273483992],[112,200,71,-0.5117878885939717],[112,200,72,-0.5106964153237641],[112,200,73,-0.509256019257009],[112,200,74,-0.5080228541046381],[112,200,75,-0.506874315906316],[112,200,76,-0.505773471435532],[112,200,77,-0.5047980308299884],[112,200,78,-0.5039559541328344],[112,200,79,-0.5031836007838137],[112,201,64,-0.5171010829508305],[112,201,65,-0.5150407766923308],[112,201,66,-0.5135658886283636],[112,201,67,-0.512801325879991],[112,201,68,-0.5125248022377491],[112,201,69,-0.5124049885198474],[112,201,70,-0.5122450273483992],[112,201,71,-0.5117878885939717],[112,201,72,-0.5106964153237641],[112,201,73,-0.509256019257009],[112,201,74,-0.5080228541046381],[112,201,75,-0.506874315906316],[112,201,76,-0.505773471435532],[112,201,77,-0.5047980308299884],[112,201,78,-0.5039559541328344],[112,201,79,-0.5031836007838137],[112,202,64,-0.5171010829508305],[112,202,65,-0.5150407766923308],[112,202,66,-0.5135658886283636],[112,202,67,-0.512801325879991],[112,202,68,-0.5125248022377491],[112,202,69,-0.5124049885198474],[112,202,70,-0.5122450273483992],[112,202,71,-0.5117878885939717],[112,202,72,-0.5106964153237641],[112,202,73,-0.509256019257009],[112,202,74,-0.5080228541046381],[112,202,75,-0.506874315906316],[112,202,76,-0.505773471435532],[112,202,77,-0.5047980308299884],[112,202,78,-0.5039559541328344],[112,202,79,-0.5031836007838137],[112,203,64,-0.5171010829508305],[112,203,65,-0.5150407766923308],[112,203,66,-0.5135658886283636],[112,203,67,-0.512801325879991],[112,203,68,-0.5125248022377491],[112,203,69,-0.5124049885198474],[112,203,70,-0.5122450273483992],[112,203,71,-0.5117878885939717],[112,203,72,-0.5106964153237641],[112,203,73,-0.509256019257009],[112,203,74,-0.5080228541046381],[112,203,75,-0.506874315906316],[112,203,76,-0.505773471435532],[112,203,77,-0.5047980308299884],[112,203,78,-0.5039559541328344],[112,203,79,-0.5031836007838137],[112,204,64,-0.5171010829508305],[112,204,65,-0.5150407766923308],[112,204,66,-0.5135658886283636],[112,204,67,-0.512801325879991],[112,204,68,-0.5125248022377491],[112,204,69,-0.5124049885198474],[112,204,70,-0.5122450273483992],[112,204,71,-0.5117878885939717],[112,204,72,-0.5106964153237641],[112,204,73,-0.509256019257009],[112,204,74,-0.5080228541046381],[112,204,75,-0.506874315906316],[112,204,76,-0.505773471435532],[112,204,77,-0.5047980308299884],[112,204,78,-0.5039559541328344],[112,204,79,-0.5031836007838137],[112,205,64,-0.5171010829508305],[112,205,65,-0.5150407766923308],[112,205,66,-0.5135658886283636],[112,205,67,-0.512801325879991],[112,205,68,-0.5125248022377491],[112,205,69,-0.5124049885198474],[112,205,70,-0.5122450273483992],[112,205,71,-0.5117878885939717],[112,205,72,-0.5106964153237641],[112,205,73,-0.509256019257009],[112,205,74,-0.5080228541046381],[112,205,75,-0.506874315906316],[112,205,76,-0.505773471435532],[112,205,77,-0.5047980308299884],[112,205,78,-0.5039559541328344],[112,205,79,-0.5031836007838137],[112,206,64,-0.5171010829508305],[112,206,65,-0.5150407766923308],[112,206,66,-0.5135658886283636],[112,206,67,-0.512801325879991],[112,206,68,-0.5125248022377491],[112,206,69,-0.5124049885198474],[112,206,70,-0.5122450273483992],[112,206,71,-0.5117878885939717],[112,206,72,-0.5106964153237641],[112,206,73,-0.509256019257009],[112,206,74,-0.5080228541046381],[112,206,75,-0.506874315906316],[112,206,76,-0.505773471435532],[112,206,77,-0.5047980308299884],[112,206,78,-0.5039559541328344],[112,206,79,-0.5031836007838137],[112,207,64,-0.5171010829508305],[112,207,65,-0.5150407766923308],[112,207,66,-0.5135658886283636],[112,207,67,-0.512801325879991],[112,207,68,-0.5125248022377491],[112,207,69,-0.5124049885198474],[112,207,70,-0.5122450273483992],[112,207,71,-0.5117878885939717],[112,207,72,-0.5106964153237641],[112,207,73,-0.509256019257009],[112,207,74,-0.5080228541046381],[112,207,75,-0.506874315906316],[112,207,76,-0.505773471435532],[112,207,77,-0.5047980308299884],[112,207,78,-0.5039559541328344],[112,207,79,-0.5031836007838137],[112,208,64,-0.5171010829508305],[112,208,65,-0.5150407766923308],[112,208,66,-0.5135658886283636],[112,208,67,-0.512801325879991],[112,208,68,-0.5125248022377491],[112,208,69,-0.5124049885198474],[112,208,70,-0.5122450273483992],[112,208,71,-0.5117878885939717],[112,208,72,-0.5106964153237641],[112,208,73,-0.509256019257009],[112,208,74,-0.5080228541046381],[112,208,75,-0.506874315906316],[112,208,76,-0.505773471435532],[112,208,77,-0.5047980308299884],[112,208,78,-0.5039559541328344],[112,208,79,-0.5031836007838137],[112,209,64,-0.5171010829508305],[112,209,65,-0.5150407766923308],[112,209,66,-0.5135658886283636],[112,209,67,-0.512801325879991],[112,209,68,-0.5125248022377491],[112,209,69,-0.5124049885198474],[112,209,70,-0.5122450273483992],[112,209,71,-0.5117878885939717],[112,209,72,-0.5106964153237641],[112,209,73,-0.509256019257009],[112,209,74,-0.5080228541046381],[112,209,75,-0.506874315906316],[112,209,76,-0.505773471435532],[112,209,77,-0.5047980308299884],[112,209,78,-0.5039559541328344],[112,209,79,-0.5031836007838137],[112,210,64,-0.5171010829508305],[112,210,65,-0.5150407766923308],[112,210,66,-0.5135658886283636],[112,210,67,-0.512801325879991],[112,210,68,-0.5125248022377491],[112,210,69,-0.5124049885198474],[112,210,70,-0.5122450273483992],[112,210,71,-0.5117878885939717],[112,210,72,-0.5106964153237641],[112,210,73,-0.509256019257009],[112,210,74,-0.5080228541046381],[112,210,75,-0.506874315906316],[112,210,76,-0.505773471435532],[112,210,77,-0.5047980308299884],[112,210,78,-0.5039559541328344],[112,210,79,-0.5031836007838137],[112,211,64,-0.5171010829508305],[112,211,65,-0.5150407766923308],[112,211,66,-0.5135658886283636],[112,211,67,-0.512801325879991],[112,211,68,-0.5125248022377491],[112,211,69,-0.5124049885198474],[112,211,70,-0.5122450273483992],[112,211,71,-0.5117878885939717],[112,211,72,-0.5106964153237641],[112,211,73,-0.509256019257009],[112,211,74,-0.5080228541046381],[112,211,75,-0.506874315906316],[112,211,76,-0.505773471435532],[112,211,77,-0.5047980308299884],[112,211,78,-0.5039559541328344],[112,211,79,-0.5031836007838137],[112,212,64,-0.5171010829508305],[112,212,65,-0.5150407766923308],[112,212,66,-0.5135658886283636],[112,212,67,-0.512801325879991],[112,212,68,-0.5125248022377491],[112,212,69,-0.5124049885198474],[112,212,70,-0.5122450273483992],[112,212,71,-0.5117878885939717],[112,212,72,-0.5106964153237641],[112,212,73,-0.509256019257009],[112,212,74,-0.5080228541046381],[112,212,75,-0.506874315906316],[112,212,76,-0.505773471435532],[112,212,77,-0.5047980308299884],[112,212,78,-0.5039559541328344],[112,212,79,-0.5031836007838137],[112,213,64,-0.5171010829508305],[112,213,65,-0.5150407766923308],[112,213,66,-0.5135658886283636],[112,213,67,-0.512801325879991],[112,213,68,-0.5125248022377491],[112,213,69,-0.5124049885198474],[112,213,70,-0.5122450273483992],[112,213,71,-0.5117878885939717],[112,213,72,-0.5106964153237641],[112,213,73,-0.509256019257009],[112,213,74,-0.5080228541046381],[112,213,75,-0.506874315906316],[112,213,76,-0.505773471435532],[112,213,77,-0.5047980308299884],[112,213,78,-0.5039559541328344],[112,213,79,-0.5031836007838137],[112,214,64,-0.5171010829508305],[112,214,65,-0.5150407766923308],[112,214,66,-0.5135658886283636],[112,214,67,-0.512801325879991],[112,214,68,-0.5125248022377491],[112,214,69,-0.5124049885198474],[112,214,70,-0.5122450273483992],[112,214,71,-0.5117878885939717],[112,214,72,-0.5106964153237641],[112,214,73,-0.509256019257009],[112,214,74,-0.5080228541046381],[112,214,75,-0.506874315906316],[112,214,76,-0.505773471435532],[112,214,77,-0.5047980308299884],[112,214,78,-0.5039559541328344],[112,214,79,-0.5031836007838137],[112,215,64,-0.5171010829508305],[112,215,65,-0.5150407766923308],[112,215,66,-0.5135658886283636],[112,215,67,-0.512801325879991],[112,215,68,-0.5125248022377491],[112,215,69,-0.5124049885198474],[112,215,70,-0.5122450273483992],[112,215,71,-0.5117878885939717],[112,215,72,-0.5106964153237641],[112,215,73,-0.509256019257009],[112,215,74,-0.5080228541046381],[112,215,75,-0.506874315906316],[112,215,76,-0.505773471435532],[112,215,77,-0.5047980308299884],[112,215,78,-0.5039559541328344],[112,215,79,-0.5031836007838137],[112,216,64,-0.5171010829508305],[112,216,65,-0.5150407766923308],[112,216,66,-0.5135658886283636],[112,216,67,-0.512801325879991],[112,216,68,-0.5125248022377491],[112,216,69,-0.5124049885198474],[112,216,70,-0.5122450273483992],[112,216,71,-0.5117878885939717],[112,216,72,-0.5106964153237641],[112,216,73,-0.509256019257009],[112,216,74,-0.5080228541046381],[112,216,75,-0.506874315906316],[112,216,76,-0.505773471435532],[112,216,77,-0.5047980308299884],[112,216,78,-0.5039559541328344],[112,216,79,-0.5031836007838137],[112,217,64,-0.5171010829508305],[112,217,65,-0.5150407766923308],[112,217,66,-0.5135658886283636],[112,217,67,-0.512801325879991],[112,217,68,-0.5125248022377491],[112,217,69,-0.5124049885198474],[112,217,70,-0.5122450273483992],[112,217,71,-0.5117878885939717],[112,217,72,-0.5106964153237641],[112,217,73,-0.509256019257009],[112,217,74,-0.5080228541046381],[112,217,75,-0.506874315906316],[112,217,76,-0.505773471435532],[112,217,77,-0.5047980308299884],[112,217,78,-0.5039559541328344],[112,217,79,-0.5031836007838137],[112,218,64,-0.5171010829508305],[112,218,65,-0.5150407766923308],[112,218,66,-0.5135658886283636],[112,218,67,-0.512801325879991],[112,218,68,-0.5125248022377491],[112,218,69,-0.5124049885198474],[112,218,70,-0.5122450273483992],[112,218,71,-0.5117878885939717],[112,218,72,-0.5106964153237641],[112,218,73,-0.509256019257009],[112,218,74,-0.5080228541046381],[112,218,75,-0.506874315906316],[112,218,76,-0.505773471435532],[112,218,77,-0.5047980308299884],[112,218,78,-0.5039559541328344],[112,218,79,-0.5031836007838137],[112,219,64,-0.5171010829508305],[112,219,65,-0.5150407766923308],[112,219,66,-0.5135658886283636],[112,219,67,-0.512801325879991],[112,219,68,-0.5125248022377491],[112,219,69,-0.5124049885198474],[112,219,70,-0.5122450273483992],[112,219,71,-0.5117878885939717],[112,219,72,-0.5106964153237641],[112,219,73,-0.509256019257009],[112,219,74,-0.5080228541046381],[112,219,75,-0.506874315906316],[112,219,76,-0.505773471435532],[112,219,77,-0.5047980308299884],[112,219,78,-0.5039559541328344],[112,219,79,-0.5031836007838137],[112,220,64,-0.5171010829508305],[112,220,65,-0.5150407766923308],[112,220,66,-0.5135658886283636],[112,220,67,-0.512801325879991],[112,220,68,-0.5125248022377491],[112,220,69,-0.5124049885198474],[112,220,70,-0.5122450273483992],[112,220,71,-0.5117878885939717],[112,220,72,-0.5106964153237641],[112,220,73,-0.509256019257009],[112,220,74,-0.5080228541046381],[112,220,75,-0.506874315906316],[112,220,76,-0.505773471435532],[112,220,77,-0.5047980308299884],[112,220,78,-0.5039559541328344],[112,220,79,-0.5031836007838137],[112,221,64,-0.5171010829508305],[112,221,65,-0.5150407766923308],[112,221,66,-0.5135658886283636],[112,221,67,-0.512801325879991],[112,221,68,-0.5125248022377491],[112,221,69,-0.5124049885198474],[112,221,70,-0.5122450273483992],[112,221,71,-0.5117878885939717],[112,221,72,-0.5106964153237641],[112,221,73,-0.509256019257009],[112,221,74,-0.5080228541046381],[112,221,75,-0.506874315906316],[112,221,76,-0.505773471435532],[112,221,77,-0.5047980308299884],[112,221,78,-0.5039559541328344],[112,221,79,-0.5031836007838137],[112,222,64,-0.5171010829508305],[112,222,65,-0.5150407766923308],[112,222,66,-0.5135658886283636],[112,222,67,-0.512801325879991],[112,222,68,-0.5125248022377491],[112,222,69,-0.5124049885198474],[112,222,70,-0.5122450273483992],[112,222,71,-0.5117878885939717],[112,222,72,-0.5106964153237641],[112,222,73,-0.509256019257009],[112,222,74,-0.5080228541046381],[112,222,75,-0.506874315906316],[112,222,76,-0.505773471435532],[112,222,77,-0.5047980308299884],[112,222,78,-0.5039559541328344],[112,222,79,-0.5031836007838137],[112,223,64,-0.5171010829508305],[112,223,65,-0.5150407766923308],[112,223,66,-0.5135658886283636],[112,223,67,-0.512801325879991],[112,223,68,-0.5125248022377491],[112,223,69,-0.5124049885198474],[112,223,70,-0.5122450273483992],[112,223,71,-0.5117878885939717],[112,223,72,-0.5106964153237641],[112,223,73,-0.509256019257009],[112,223,74,-0.5080228541046381],[112,223,75,-0.506874315906316],[112,223,76,-0.505773471435532],[112,223,77,-0.5047980308299884],[112,223,78,-0.5039559541328344],[112,223,79,-0.5031836007838137],[112,224,64,-0.5171010829508305],[112,224,65,-0.5150407766923308],[112,224,66,-0.5135658886283636],[112,224,67,-0.512801325879991],[112,224,68,-0.5125248022377491],[112,224,69,-0.5124049885198474],[112,224,70,-0.5122450273483992],[112,224,71,-0.5117878885939717],[112,224,72,-0.5106964153237641],[112,224,73,-0.509256019257009],[112,224,74,-0.5080228541046381],[112,224,75,-0.506874315906316],[112,224,76,-0.505773471435532],[112,224,77,-0.5047980308299884],[112,224,78,-0.5039559541328344],[112,224,79,-0.5031836007838137],[112,225,64,-0.5171010829508305],[112,225,65,-0.5150407766923308],[112,225,66,-0.5135658886283636],[112,225,67,-0.512801325879991],[112,225,68,-0.5125248022377491],[112,225,69,-0.5124049885198474],[112,225,70,-0.5122450273483992],[112,225,71,-0.5117878885939717],[112,225,72,-0.5106964153237641],[112,225,73,-0.509256019257009],[112,225,74,-0.5080228541046381],[112,225,75,-0.506874315906316],[112,225,76,-0.505773471435532],[112,225,77,-0.5047980308299884],[112,225,78,-0.5039559541328344],[112,225,79,-0.5031836007838137],[112,226,64,-0.5171010829508305],[112,226,65,-0.5150407766923308],[112,226,66,-0.5135658886283636],[112,226,67,-0.512801325879991],[112,226,68,-0.5125248022377491],[112,226,69,-0.5124049885198474],[112,226,70,-0.5122450273483992],[112,226,71,-0.5117878885939717],[112,226,72,-0.5106964153237641],[112,226,73,-0.509256019257009],[112,226,74,-0.5080228541046381],[112,226,75,-0.506874315906316],[112,226,76,-0.505773471435532],[112,226,77,-0.5047980308299884],[112,226,78,-0.5039559541328344],[112,226,79,-0.5031836007838137],[112,227,64,-0.5171010829508305],[112,227,65,-0.5150407766923308],[112,227,66,-0.5135658886283636],[112,227,67,-0.512801325879991],[112,227,68,-0.5125248022377491],[112,227,69,-0.5124049885198474],[112,227,70,-0.5122450273483992],[112,227,71,-0.5117878885939717],[112,227,72,-0.5106964153237641],[112,227,73,-0.509256019257009],[112,227,74,-0.5080228541046381],[112,227,75,-0.506874315906316],[112,227,76,-0.505773471435532],[112,227,77,-0.5047980308299884],[112,227,78,-0.5039559541328344],[112,227,79,-0.5031836007838137],[112,228,64,-0.5171010829508305],[112,228,65,-0.5150407766923308],[112,228,66,-0.5135658886283636],[112,228,67,-0.512801325879991],[112,228,68,-0.5125248022377491],[112,228,69,-0.5124049885198474],[112,228,70,-0.5122450273483992],[112,228,71,-0.5117878885939717],[112,228,72,-0.5106964153237641],[112,228,73,-0.509256019257009],[112,228,74,-0.5080228541046381],[112,228,75,-0.506874315906316],[112,228,76,-0.505773471435532],[112,228,77,-0.5047980308299884],[112,228,78,-0.5039559541328344],[112,228,79,-0.5031836007838137],[112,229,64,-0.5171010829508305],[112,229,65,-0.5150407766923308],[112,229,66,-0.5135658886283636],[112,229,67,-0.512801325879991],[112,229,68,-0.5125248022377491],[112,229,69,-0.5124049885198474],[112,229,70,-0.5122450273483992],[112,229,71,-0.5117878885939717],[112,229,72,-0.5106964153237641],[112,229,73,-0.509256019257009],[112,229,74,-0.5080228541046381],[112,229,75,-0.506874315906316],[112,229,76,-0.505773471435532],[112,229,77,-0.5047980308299884],[112,229,78,-0.5039559541328344],[112,229,79,-0.5031836007838137],[112,230,64,-0.5171010829508305],[112,230,65,-0.5150407766923308],[112,230,66,-0.5135658886283636],[112,230,67,-0.512801325879991],[112,230,68,-0.5125248022377491],[112,230,69,-0.5124049885198474],[112,230,70,-0.5122450273483992],[112,230,71,-0.5117878885939717],[112,230,72,-0.5106964153237641],[112,230,73,-0.509256019257009],[112,230,74,-0.5080228541046381],[112,230,75,-0.506874315906316],[112,230,76,-0.505773471435532],[112,230,77,-0.5047980308299884],[112,230,78,-0.5039559541328344],[112,230,79,-0.5031836007838137],[112,231,64,-0.5171010829508305],[112,231,65,-0.5150407766923308],[112,231,66,-0.5135658886283636],[112,231,67,-0.512801325879991],[112,231,68,-0.5125248022377491],[112,231,69,-0.5124049885198474],[112,231,70,-0.5122450273483992],[112,231,71,-0.5117878885939717],[112,231,72,-0.5106964153237641],[112,231,73,-0.509256019257009],[112,231,74,-0.5080228541046381],[112,231,75,-0.506874315906316],[112,231,76,-0.505773471435532],[112,231,77,-0.5047980308299884],[112,231,78,-0.5039559541328344],[112,231,79,-0.5031836007838137],[112,232,64,-0.5171010829508305],[112,232,65,-0.5150407766923308],[112,232,66,-0.5135658886283636],[112,232,67,-0.512801325879991],[112,232,68,-0.5125248022377491],[112,232,69,-0.5124049885198474],[112,232,70,-0.5122450273483992],[112,232,71,-0.5117878885939717],[112,232,72,-0.5106964153237641],[112,232,73,-0.509256019257009],[112,232,74,-0.5080228541046381],[112,232,75,-0.506874315906316],[112,232,76,-0.505773471435532],[112,232,77,-0.5047980308299884],[112,232,78,-0.5039559541328344],[112,232,79,-0.5031836007838137],[112,233,64,-0.5171010829508305],[112,233,65,-0.5150407766923308],[112,233,66,-0.5135658886283636],[112,233,67,-0.512801325879991],[112,233,68,-0.5125248022377491],[112,233,69,-0.5124049885198474],[112,233,70,-0.5122450273483992],[112,233,71,-0.5117878885939717],[112,233,72,-0.5106964153237641],[112,233,73,-0.509256019257009],[112,233,74,-0.5080228541046381],[112,233,75,-0.506874315906316],[112,233,76,-0.505773471435532],[112,233,77,-0.5047980308299884],[112,233,78,-0.5039559541328344],[112,233,79,-0.5031836007838137],[112,234,64,-0.5171010829508305],[112,234,65,-0.5150407766923308],[112,234,66,-0.5135658886283636],[112,234,67,-0.512801325879991],[112,234,68,-0.5125248022377491],[112,234,69,-0.5124049885198474],[112,234,70,-0.5122450273483992],[112,234,71,-0.5117878885939717],[112,234,72,-0.5106964153237641],[112,234,73,-0.509256019257009],[112,234,74,-0.5080228541046381],[112,234,75,-0.506874315906316],[112,234,76,-0.505773471435532],[112,234,77,-0.5047980308299884],[112,234,78,-0.5039559541328344],[112,234,79,-0.5031836007838137],[112,235,64,-0.5171010829508305],[112,235,65,-0.5150407766923308],[112,235,66,-0.5135658886283636],[112,235,67,-0.512801325879991],[112,235,68,-0.5125248022377491],[112,235,69,-0.5124049885198474],[112,235,70,-0.5122450273483992],[112,235,71,-0.5117878885939717],[112,235,72,-0.5106964153237641],[112,235,73,-0.509256019257009],[112,235,74,-0.5080228541046381],[112,235,75,-0.506874315906316],[112,235,76,-0.505773471435532],[112,235,77,-0.5047980308299884],[112,235,78,-0.5039559541328344],[112,235,79,-0.5031836007838137],[112,236,64,-0.5171010829508305],[112,236,65,-0.5150407766923308],[112,236,66,-0.5135658886283636],[112,236,67,-0.512801325879991],[112,236,68,-0.5125248022377491],[112,236,69,-0.5124049885198474],[112,236,70,-0.5122450273483992],[112,236,71,-0.5117878885939717],[112,236,72,-0.5106964153237641],[112,236,73,-0.509256019257009],[112,236,74,-0.5080228541046381],[112,236,75,-0.506874315906316],[112,236,76,-0.505773471435532],[112,236,77,-0.5047980308299884],[112,236,78,-0.5039559541328344],[112,236,79,-0.5031836007838137],[112,237,64,-0.5171010829508305],[112,237,65,-0.5150407766923308],[112,237,66,-0.5135658886283636],[112,237,67,-0.512801325879991],[112,237,68,-0.5125248022377491],[112,237,69,-0.5124049885198474],[112,237,70,-0.5122450273483992],[112,237,71,-0.5117878885939717],[112,237,72,-0.5106964153237641],[112,237,73,-0.509256019257009],[112,237,74,-0.5080228541046381],[112,237,75,-0.506874315906316],[112,237,76,-0.505773471435532],[112,237,77,-0.5047980308299884],[112,237,78,-0.5039559541328344],[112,237,79,-0.5031836007838137],[112,238,64,-0.5171010829508305],[112,238,65,-0.5150407766923308],[112,238,66,-0.5135658886283636],[112,238,67,-0.512801325879991],[112,238,68,-0.5125248022377491],[112,238,69,-0.5124049885198474],[112,238,70,-0.5122450273483992],[112,238,71,-0.5117878885939717],[112,238,72,-0.5106964153237641],[112,238,73,-0.509256019257009],[112,238,74,-0.5080228541046381],[112,238,75,-0.506874315906316],[112,238,76,-0.505773471435532],[112,238,77,-0.5047980308299884],[112,238,78,-0.5039559541328344],[112,238,79,-0.5031836007838137],[112,239,64,-0.5171010829508305],[112,239,65,-0.5150407766923308],[112,239,66,-0.5135658886283636],[112,239,67,-0.512801325879991],[112,239,68,-0.5125248022377491],[112,239,69,-0.5124049885198474],[112,239,70,-0.5122450273483992],[112,239,71,-0.5117878885939717],[112,239,72,-0.5106964153237641],[112,239,73,-0.509256019257009],[112,239,74,-0.5080228541046381],[112,239,75,-0.506874315906316],[112,239,76,-0.505773471435532],[112,239,77,-0.5047980308299884],[112,239,78,-0.5039559541328344],[112,239,79,-0.5031836007838137],[112,240,64,-0.5171010829508305],[112,240,65,-0.5150407766923308],[112,240,66,-0.5135658886283636],[112,240,67,-0.512801325879991],[112,240,68,-0.5125248022377491],[112,240,69,-0.5124049885198474],[112,240,70,-0.5122450273483992],[112,240,71,-0.5117878885939717],[112,240,72,-0.5106964153237641],[112,240,73,-0.509256019257009],[112,240,74,-0.5080228541046381],[112,240,75,-0.506874315906316],[112,240,76,-0.505773471435532],[112,240,77,-0.5047980308299884],[112,240,78,-0.5039559541328344],[112,240,79,-0.5031836007838137],[112,241,64,-0.5171010829508305],[112,241,65,-0.5150407766923308],[112,241,66,-0.5135658886283636],[112,241,67,-0.512801325879991],[112,241,68,-0.5125248022377491],[112,241,69,-0.5124049885198474],[112,241,70,-0.5122450273483992],[112,241,71,-0.5117878885939717],[112,241,72,-0.5106964153237641],[112,241,73,-0.509256019257009],[112,241,74,-0.5080228541046381],[112,241,75,-0.506874315906316],[112,241,76,-0.505773471435532],[112,241,77,-0.5047980308299884],[112,241,78,-0.5039559541328344],[112,241,79,-0.5031836007838137],[112,242,64,-0.5171010829508305],[112,242,65,-0.5150407766923308],[112,242,66,-0.5135658886283636],[112,242,67,-0.512801325879991],[112,242,68,-0.5125248022377491],[112,242,69,-0.5124049885198474],[112,242,70,-0.5122450273483992],[112,242,71,-0.5117878885939717],[112,242,72,-0.5106964153237641],[112,242,73,-0.509256019257009],[112,242,74,-0.5080228541046381],[112,242,75,-0.506874315906316],[112,242,76,-0.505773471435532],[112,242,77,-0.5047980308299884],[112,242,78,-0.5039559541328344],[112,242,79,-0.5031836007838137],[112,243,64,-0.5171010829508305],[112,243,65,-0.5150407766923308],[112,243,66,-0.5135658886283636],[112,243,67,-0.512801325879991],[112,243,68,-0.5125248022377491],[112,243,69,-0.5124049885198474],[112,243,70,-0.5122450273483992],[112,243,71,-0.5117878885939717],[112,243,72,-0.5106964153237641],[112,243,73,-0.509256019257009],[112,243,74,-0.5080228541046381],[112,243,75,-0.506874315906316],[112,243,76,-0.505773471435532],[112,243,77,-0.5047980308299884],[112,243,78,-0.5039559541328344],[112,243,79,-0.5031836007838137],[112,244,64,-0.5171010829508305],[112,244,65,-0.5150407766923308],[112,244,66,-0.5135658886283636],[112,244,67,-0.512801325879991],[112,244,68,-0.5125248022377491],[112,244,69,-0.5124049885198474],[112,244,70,-0.5122450273483992],[112,244,71,-0.5117878885939717],[112,244,72,-0.5106964153237641],[112,244,73,-0.509256019257009],[112,244,74,-0.5080228541046381],[112,244,75,-0.506874315906316],[112,244,76,-0.505773471435532],[112,244,77,-0.5047980308299884],[112,244,78,-0.5039559541328344],[112,244,79,-0.5031836007838137],[112,245,64,-0.5171010829508305],[112,245,65,-0.5150407766923308],[112,245,66,-0.5135658886283636],[112,245,67,-0.512801325879991],[112,245,68,-0.5125248022377491],[112,245,69,-0.5124049885198474],[112,245,70,-0.5122450273483992],[112,245,71,-0.5117878885939717],[112,245,72,-0.5106964153237641],[112,245,73,-0.509256019257009],[112,245,74,-0.5080228541046381],[112,245,75,-0.506874315906316],[112,245,76,-0.505773471435532],[112,245,77,-0.5047980308299884],[112,245,78,-0.5039559541328344],[112,245,79,-0.5031836007838137],[112,246,64,-0.5171010829508305],[112,246,65,-0.5150407766923308],[112,246,66,-0.5135658886283636],[112,246,67,-0.512801325879991],[112,246,68,-0.5125248022377491],[112,246,69,-0.5124049885198474],[112,246,70,-0.5122450273483992],[112,246,71,-0.5117878885939717],[112,246,72,-0.5106964153237641],[112,246,73,-0.509256019257009],[112,246,74,-0.5080228541046381],[112,246,75,-0.506874315906316],[112,246,76,-0.505773471435532],[112,246,77,-0.5047980308299884],[112,246,78,-0.5039559541328344],[112,246,79,-0.5031836007838137],[112,247,64,-0.5171010829508305],[112,247,65,-0.5150407766923308],[112,247,66,-0.5135658886283636],[112,247,67,-0.512801325879991],[112,247,68,-0.5125248022377491],[112,247,69,-0.5124049885198474],[112,247,70,-0.5122450273483992],[112,247,71,-0.5117878885939717],[112,247,72,-0.5106964153237641],[112,247,73,-0.509256019257009],[112,247,74,-0.5080228541046381],[112,247,75,-0.506874315906316],[112,247,76,-0.505773471435532],[112,247,77,-0.5047980308299884],[112,247,78,-0.5039559541328344],[112,247,79,-0.5031836007838137],[112,248,64,-0.5171010829508305],[112,248,65,-0.5150407766923308],[112,248,66,-0.5135658886283636],[112,248,67,-0.512801325879991],[112,248,68,-0.5125248022377491],[112,248,69,-0.5124049885198474],[112,248,70,-0.5122450273483992],[112,248,71,-0.5117878885939717],[112,248,72,-0.5106964153237641],[112,248,73,-0.509256019257009],[112,248,74,-0.5080228541046381],[112,248,75,-0.506874315906316],[112,248,76,-0.505773471435532],[112,248,77,-0.5047980308299884],[112,248,78,-0.5039559541328344],[112,248,79,-0.5031836007838137],[112,249,64,-0.5171010829508305],[112,249,65,-0.5150407766923308],[112,249,66,-0.5135658886283636],[112,249,67,-0.512801325879991],[112,249,68,-0.5125248022377491],[112,249,69,-0.5124049885198474],[112,249,70,-0.5122450273483992],[112,249,71,-0.5117878885939717],[112,249,72,-0.5106964153237641],[112,249,73,-0.509256019257009],[112,249,74,-0.5080228541046381],[112,249,75,-0.506874315906316],[112,249,76,-0.505773471435532],[112,249,77,-0.5047980308299884],[112,249,78,-0.5039559541328344],[112,249,79,-0.5031836007838137],[112,250,64,-0.5171010829508305],[112,250,65,-0.5150407766923308],[112,250,66,-0.5135658886283636],[112,250,67,-0.512801325879991],[112,250,68,-0.5125248022377491],[112,250,69,-0.5124049885198474],[112,250,70,-0.5122450273483992],[112,250,71,-0.5117878885939717],[112,250,72,-0.5106964153237641],[112,250,73,-0.509256019257009],[112,250,74,-0.5080228541046381],[112,250,75,-0.506874315906316],[112,250,76,-0.505773471435532],[112,250,77,-0.5047980308299884],[112,250,78,-0.5039559541328344],[112,250,79,-0.5031836007838137],[112,251,64,-0.5171010829508305],[112,251,65,-0.5150407766923308],[112,251,66,-0.5135658886283636],[112,251,67,-0.512801325879991],[112,251,68,-0.5125248022377491],[112,251,69,-0.5124049885198474],[112,251,70,-0.5122450273483992],[112,251,71,-0.5117878885939717],[112,251,72,-0.5106964153237641],[112,251,73,-0.509256019257009],[112,251,74,-0.5080228541046381],[112,251,75,-0.506874315906316],[112,251,76,-0.505773471435532],[112,251,77,-0.5047980308299884],[112,251,78,-0.5039559541328344],[112,251,79,-0.5031836007838137],[112,252,64,-0.5171010829508305],[112,252,65,-0.5150407766923308],[112,252,66,-0.5135658886283636],[112,252,67,-0.512801325879991],[112,252,68,-0.5125248022377491],[112,252,69,-0.5124049885198474],[112,252,70,-0.5122450273483992],[112,252,71,-0.5117878885939717],[112,252,72,-0.5106964153237641],[112,252,73,-0.509256019257009],[112,252,74,-0.5080228541046381],[112,252,75,-0.506874315906316],[112,252,76,-0.505773471435532],[112,252,77,-0.5047980308299884],[112,252,78,-0.5039559541328344],[112,252,79,-0.5031836007838137],[112,253,64,-0.5171010829508305],[112,253,65,-0.5150407766923308],[112,253,66,-0.5135658886283636],[112,253,67,-0.512801325879991],[112,253,68,-0.5125248022377491],[112,253,69,-0.5124049885198474],[112,253,70,-0.5122450273483992],[112,253,71,-0.5117878885939717],[112,253,72,-0.5106964153237641],[112,253,73,-0.509256019257009],[112,253,74,-0.5080228541046381],[112,253,75,-0.506874315906316],[112,253,76,-0.505773471435532],[112,253,77,-0.5047980308299884],[112,253,78,-0.5039559541328344],[112,253,79,-0.5031836007838137],[112,254,64,-0.5171010829508305],[112,254,65,-0.5150407766923308],[112,254,66,-0.5135658886283636],[112,254,67,-0.512801325879991],[112,254,68,-0.5125248022377491],[112,254,69,-0.5124049885198474],[112,254,70,-0.5122450273483992],[112,254,71,-0.5117878885939717],[112,254,72,-0.5106964153237641],[112,254,73,-0.509256019257009],[112,254,74,-0.5080228541046381],[112,254,75,-0.506874315906316],[112,254,76,-0.505773471435532],[112,254,77,-0.5047980308299884],[112,254,78,-0.5039559541328344],[112,254,79,-0.5031836007838137],[112,255,64,-0.5171010829508305],[112,255,65,-0.5150407766923308],[112,255,66,-0.5135658886283636],[112,255,67,-0.512801325879991],[112,255,68,-0.5125248022377491],[112,255,69,-0.5124049885198474],[112,255,70,-0.5122450273483992],[112,255,71,-0.5117878885939717],[112,255,72,-0.5106964153237641],[112,255,73,-0.509256019257009],[112,255,74,-0.5080228541046381],[112,255,75,-0.506874315906316],[112,255,76,-0.505773471435532],[112,255,77,-0.5047980308299884],[112,255,78,-0.5039559541328344],[112,255,79,-0.5031836007838137],[112,256,64,-0.5171010829508305],[112,256,65,-0.5150407766923308],[112,256,66,-0.5135658886283636],[112,256,67,-0.512801325879991],[112,256,68,-0.5125248022377491],[112,256,69,-0.5124049885198474],[112,256,70,-0.5122450273483992],[112,256,71,-0.5117878885939717],[112,256,72,-0.5106964153237641],[112,256,73,-0.509256019257009],[112,256,74,-0.5080228541046381],[112,256,75,-0.506874315906316],[112,256,76,-0.505773471435532],[112,256,77,-0.5047980308299884],[112,256,78,-0.5039559541328344],[112,256,79,-0.5031836007838137],[112,257,64,-0.5171010829508305],[112,257,65,-0.5150407766923308],[112,257,66,-0.5135658886283636],[112,257,67,-0.512801325879991],[112,257,68,-0.5125248022377491],[112,257,69,-0.5124049885198474],[112,257,70,-0.5122450273483992],[112,257,71,-0.5117878885939717],[112,257,72,-0.5106964153237641],[112,257,73,-0.509256019257009],[112,257,74,-0.5080228541046381],[112,257,75,-0.506874315906316],[112,257,76,-0.505773471435532],[112,257,77,-0.5047980308299884],[112,257,78,-0.5039559541328344],[112,257,79,-0.5031836007838137],[112,258,64,-0.5171010829508305],[112,258,65,-0.5150407766923308],[112,258,66,-0.5135658886283636],[112,258,67,-0.512801325879991],[112,258,68,-0.5125248022377491],[112,258,69,-0.5124049885198474],[112,258,70,-0.5122450273483992],[112,258,71,-0.5117878885939717],[112,258,72,-0.5106964153237641],[112,258,73,-0.509256019257009],[112,258,74,-0.5080228541046381],[112,258,75,-0.506874315906316],[112,258,76,-0.505773471435532],[112,258,77,-0.5047980308299884],[112,258,78,-0.5039559541328344],[112,258,79,-0.5031836007838137],[112,259,64,-0.5171010829508305],[112,259,65,-0.5150407766923308],[112,259,66,-0.5135658886283636],[112,259,67,-0.512801325879991],[112,259,68,-0.5125248022377491],[112,259,69,-0.5124049885198474],[112,259,70,-0.5122450273483992],[112,259,71,-0.5117878885939717],[112,259,72,-0.5106964153237641],[112,259,73,-0.509256019257009],[112,259,74,-0.5080228541046381],[112,259,75,-0.506874315906316],[112,259,76,-0.505773471435532],[112,259,77,-0.5047980308299884],[112,259,78,-0.5039559541328344],[112,259,79,-0.5031836007838137],[112,260,64,-0.5171010829508305],[112,260,65,-0.5150407766923308],[112,260,66,-0.5135658886283636],[112,260,67,-0.512801325879991],[112,260,68,-0.5125248022377491],[112,260,69,-0.5124049885198474],[112,260,70,-0.5122450273483992],[112,260,71,-0.5117878885939717],[112,260,72,-0.5106964153237641],[112,260,73,-0.509256019257009],[112,260,74,-0.5080228541046381],[112,260,75,-0.506874315906316],[112,260,76,-0.505773471435532],[112,260,77,-0.5047980308299884],[112,260,78,-0.5039559541328344],[112,260,79,-0.5031836007838137],[112,261,64,-0.5171010829508305],[112,261,65,-0.5150407766923308],[112,261,66,-0.5135658886283636],[112,261,67,-0.512801325879991],[112,261,68,-0.5125248022377491],[112,261,69,-0.5124049885198474],[112,261,70,-0.5122450273483992],[112,261,71,-0.5117878885939717],[112,261,72,-0.5106964153237641],[112,261,73,-0.509256019257009],[112,261,74,-0.5080228541046381],[112,261,75,-0.506874315906316],[112,261,76,-0.505773471435532],[112,261,77,-0.5047980308299884],[112,261,78,-0.5039559541328344],[112,261,79,-0.5031836007838137],[112,262,64,-0.5171010829508305],[112,262,65,-0.5150407766923308],[112,262,66,-0.5135658886283636],[112,262,67,-0.512801325879991],[112,262,68,-0.5125248022377491],[112,262,69,-0.5124049885198474],[112,262,70,-0.5122450273483992],[112,262,71,-0.5117878885939717],[112,262,72,-0.5106964153237641],[112,262,73,-0.509256019257009],[112,262,74,-0.5080228541046381],[112,262,75,-0.506874315906316],[112,262,76,-0.505773471435532],[112,262,77,-0.5047980308299884],[112,262,78,-0.5039559541328344],[112,262,79,-0.5031836007838137],[112,263,64,-0.5171010829508305],[112,263,65,-0.5150407766923308],[112,263,66,-0.5135658886283636],[112,263,67,-0.512801325879991],[112,263,68,-0.5125248022377491],[112,263,69,-0.5124049885198474],[112,263,70,-0.5122450273483992],[112,263,71,-0.5117878885939717],[112,263,72,-0.5106964153237641],[112,263,73,-0.509256019257009],[112,263,74,-0.5080228541046381],[112,263,75,-0.506874315906316],[112,263,76,-0.505773471435532],[112,263,77,-0.5047980308299884],[112,263,78,-0.5039559541328344],[112,263,79,-0.5031836007838137],[112,264,64,-0.5171010829508305],[112,264,65,-0.5150407766923308],[112,264,66,-0.5135658886283636],[112,264,67,-0.512801325879991],[112,264,68,-0.5125248022377491],[112,264,69,-0.5124049885198474],[112,264,70,-0.5122450273483992],[112,264,71,-0.5117878885939717],[112,264,72,-0.5106964153237641],[112,264,73,-0.509256019257009],[112,264,74,-0.5080228541046381],[112,264,75,-0.506874315906316],[112,264,76,-0.505773471435532],[112,264,77,-0.5047980308299884],[112,264,78,-0.5039559541328344],[112,264,79,-0.5031836007838137],[112,265,64,-0.5171010829508305],[112,265,65,-0.5150407766923308],[112,265,66,-0.5135658886283636],[112,265,67,-0.512801325879991],[112,265,68,-0.5125248022377491],[112,265,69,-0.5124049885198474],[112,265,70,-0.5122450273483992],[112,265,71,-0.5117878885939717],[112,265,72,-0.5106964153237641],[112,265,73,-0.509256019257009],[112,265,74,-0.5080228541046381],[112,265,75,-0.506874315906316],[112,265,76,-0.505773471435532],[112,265,77,-0.5047980308299884],[112,265,78,-0.5039559541328344],[112,265,79,-0.5031836007838137],[112,266,64,-0.5171010829508305],[112,266,65,-0.5150407766923308],[112,266,66,-0.5135658886283636],[112,266,67,-0.512801325879991],[112,266,68,-0.5125248022377491],[112,266,69,-0.5124049885198474],[112,266,70,-0.5122450273483992],[112,266,71,-0.5117878885939717],[112,266,72,-0.5106964153237641],[112,266,73,-0.509256019257009],[112,266,74,-0.5080228541046381],[112,266,75,-0.506874315906316],[112,266,76,-0.505773471435532],[112,266,77,-0.5047980308299884],[112,266,78,-0.5039559541328344],[112,266,79,-0.5031836007838137],[112,267,64,-0.5171010829508305],[112,267,65,-0.5150407766923308],[112,267,66,-0.5135658886283636],[112,267,67,-0.512801325879991],[112,267,68,-0.5125248022377491],[112,267,69,-0.5124049885198474],[112,267,70,-0.5122450273483992],[112,267,71,-0.5117878885939717],[112,267,72,-0.5106964153237641],[112,267,73,-0.509256019257009],[112,267,74,-0.5080228541046381],[112,267,75,-0.506874315906316],[112,267,76,-0.505773471435532],[112,267,77,-0.5047980308299884],[112,267,78,-0.5039559541328344],[112,267,79,-0.5031836007838137],[112,268,64,-0.5171010829508305],[112,268,65,-0.5150407766923308],[112,268,66,-0.5135658886283636],[112,268,67,-0.512801325879991],[112,268,68,-0.5125248022377491],[112,268,69,-0.5124049885198474],[112,268,70,-0.5122450273483992],[112,268,71,-0.5117878885939717],[112,268,72,-0.5106964153237641],[112,268,73,-0.509256019257009],[112,268,74,-0.5080228541046381],[112,268,75,-0.506874315906316],[112,268,76,-0.505773471435532],[112,268,77,-0.5047980308299884],[112,268,78,-0.5039559541328344],[112,268,79,-0.5031836007838137],[112,269,64,-0.5171010829508305],[112,269,65,-0.5150407766923308],[112,269,66,-0.5135658886283636],[112,269,67,-0.512801325879991],[112,269,68,-0.5125248022377491],[112,269,69,-0.5124049885198474],[112,269,70,-0.5122450273483992],[112,269,71,-0.5117878885939717],[112,269,72,-0.5106964153237641],[112,269,73,-0.509256019257009],[112,269,74,-0.5080228541046381],[112,269,75,-0.506874315906316],[112,269,76,-0.505773471435532],[112,269,77,-0.5047980308299884],[112,269,78,-0.5039559541328344],[112,269,79,-0.5031836007838137],[112,270,64,-0.5171010829508305],[112,270,65,-0.5150407766923308],[112,270,66,-0.5135658886283636],[112,270,67,-0.512801325879991],[112,270,68,-0.5125248022377491],[112,270,69,-0.5124049885198474],[112,270,70,-0.5122450273483992],[112,270,71,-0.5117878885939717],[112,270,72,-0.5106964153237641],[112,270,73,-0.509256019257009],[112,270,74,-0.5080228541046381],[112,270,75,-0.506874315906316],[112,270,76,-0.505773471435532],[112,270,77,-0.5047980308299884],[112,270,78,-0.5039559541328344],[112,270,79,-0.5031836007838137],[112,271,64,-0.5171010829508305],[112,271,65,-0.5150407766923308],[112,271,66,-0.5135658886283636],[112,271,67,-0.512801325879991],[112,271,68,-0.5125248022377491],[112,271,69,-0.5124049885198474],[112,271,70,-0.5122450273483992],[112,271,71,-0.5117878885939717],[112,271,72,-0.5106964153237641],[112,271,73,-0.509256019257009],[112,271,74,-0.5080228541046381],[112,271,75,-0.506874315906316],[112,271,76,-0.505773471435532],[112,271,77,-0.5047980308299884],[112,271,78,-0.5039559541328344],[112,271,79,-0.5031836007838137],[112,272,64,-0.5171010829508305],[112,272,65,-0.5150407766923308],[112,272,66,-0.5135658886283636],[112,272,67,-0.512801325879991],[112,272,68,-0.5125248022377491],[112,272,69,-0.5124049885198474],[112,272,70,-0.5122450273483992],[112,272,71,-0.5117878885939717],[112,272,72,-0.5106964153237641],[112,272,73,-0.509256019257009],[112,272,74,-0.5080228541046381],[112,272,75,-0.506874315906316],[112,272,76,-0.505773471435532],[112,272,77,-0.5047980308299884],[112,272,78,-0.5039559541328344],[112,272,79,-0.5031836007838137],[112,273,64,-0.5171010829508305],[112,273,65,-0.5150407766923308],[112,273,66,-0.5135658886283636],[112,273,67,-0.512801325879991],[112,273,68,-0.5125248022377491],[112,273,69,-0.5124049885198474],[112,273,70,-0.5122450273483992],[112,273,71,-0.5117878885939717],[112,273,72,-0.5106964153237641],[112,273,73,-0.509256019257009],[112,273,74,-0.5080228541046381],[112,273,75,-0.506874315906316],[112,273,76,-0.505773471435532],[112,273,77,-0.5047980308299884],[112,273,78,-0.5039559541328344],[112,273,79,-0.5031836007838137],[112,274,64,-0.5171010829508305],[112,274,65,-0.5150407766923308],[112,274,66,-0.5135658886283636],[112,274,67,-0.512801325879991],[112,274,68,-0.5125248022377491],[112,274,69,-0.5124049885198474],[112,274,70,-0.5122450273483992],[112,274,71,-0.5117878885939717],[112,274,72,-0.5106964153237641],[112,274,73,-0.509256019257009],[112,274,74,-0.5080228541046381],[112,274,75,-0.506874315906316],[112,274,76,-0.505773471435532],[112,274,77,-0.5047980308299884],[112,274,78,-0.5039559541328344],[112,274,79,-0.5031836007838137],[112,275,64,-0.5171010829508305],[112,275,65,-0.5150407766923308],[112,275,66,-0.5135658886283636],[112,275,67,-0.512801325879991],[112,275,68,-0.5125248022377491],[112,275,69,-0.5124049885198474],[112,275,70,-0.5122450273483992],[112,275,71,-0.5117878885939717],[112,275,72,-0.5106964153237641],[112,275,73,-0.509256019257009],[112,275,74,-0.5080228541046381],[112,275,75,-0.506874315906316],[112,275,76,-0.505773471435532],[112,275,77,-0.5047980308299884],[112,275,78,-0.5039559541328344],[112,275,79,-0.5031836007838137],[112,276,64,-0.5171010829508305],[112,276,65,-0.5150407766923308],[112,276,66,-0.5135658886283636],[112,276,67,-0.512801325879991],[112,276,68,-0.5125248022377491],[112,276,69,-0.5124049885198474],[112,276,70,-0.5122450273483992],[112,276,71,-0.5117878885939717],[112,276,72,-0.5106964153237641],[112,276,73,-0.509256019257009],[112,276,74,-0.5080228541046381],[112,276,75,-0.506874315906316],[112,276,76,-0.505773471435532],[112,276,77,-0.5047980308299884],[112,276,78,-0.5039559541328344],[112,276,79,-0.5031836007838137],[112,277,64,-0.5171010829508305],[112,277,65,-0.5150407766923308],[112,277,66,-0.5135658886283636],[112,277,67,-0.512801325879991],[112,277,68,-0.5125248022377491],[112,277,69,-0.5124049885198474],[112,277,70,-0.5122450273483992],[112,277,71,-0.5117878885939717],[112,277,72,-0.5106964153237641],[112,277,73,-0.509256019257009],[112,277,74,-0.5080228541046381],[112,277,75,-0.506874315906316],[112,277,76,-0.505773471435532],[112,277,77,-0.5047980308299884],[112,277,78,-0.5039559541328344],[112,277,79,-0.5031836007838137],[112,278,64,-0.5171010829508305],[112,278,65,-0.5150407766923308],[112,278,66,-0.5135658886283636],[112,278,67,-0.512801325879991],[112,278,68,-0.5125248022377491],[112,278,69,-0.5124049885198474],[112,278,70,-0.5122450273483992],[112,278,71,-0.5117878885939717],[112,278,72,-0.5106964153237641],[112,278,73,-0.509256019257009],[112,278,74,-0.5080228541046381],[112,278,75,-0.506874315906316],[112,278,76,-0.505773471435532],[112,278,77,-0.5047980308299884],[112,278,78,-0.5039559541328344],[112,278,79,-0.5031836007838137],[112,279,64,-0.5171010829508305],[112,279,65,-0.5150407766923308],[112,279,66,-0.5135658886283636],[112,279,67,-0.512801325879991],[112,279,68,-0.5125248022377491],[112,279,69,-0.5124049885198474],[112,279,70,-0.5122450273483992],[112,279,71,-0.5117878885939717],[112,279,72,-0.5106964153237641],[112,279,73,-0.509256019257009],[112,279,74,-0.5080228541046381],[112,279,75,-0.506874315906316],[112,279,76,-0.505773471435532],[112,279,77,-0.5047980308299884],[112,279,78,-0.5039559541328344],[112,279,79,-0.5031836007838137],[112,280,64,-0.5171010829508305],[112,280,65,-0.5150407766923308],[112,280,66,-0.5135658886283636],[112,280,67,-0.512801325879991],[112,280,68,-0.5125248022377491],[112,280,69,-0.5124049885198474],[112,280,70,-0.5122450273483992],[112,280,71,-0.5117878885939717],[112,280,72,-0.5106964153237641],[112,280,73,-0.509256019257009],[112,280,74,-0.5080228541046381],[112,280,75,-0.506874315906316],[112,280,76,-0.505773471435532],[112,280,77,-0.5047980308299884],[112,280,78,-0.5039559541328344],[112,280,79,-0.5031836007838137],[112,281,64,-0.5171010829508305],[112,281,65,-0.5150407766923308],[112,281,66,-0.5135658886283636],[112,281,67,-0.512801325879991],[112,281,68,-0.5125248022377491],[112,281,69,-0.5124049885198474],[112,281,70,-0.5122450273483992],[112,281,71,-0.5117878885939717],[112,281,72,-0.5106964153237641],[112,281,73,-0.509256019257009],[112,281,74,-0.5080228541046381],[112,281,75,-0.506874315906316],[112,281,76,-0.505773471435532],[112,281,77,-0.5047980308299884],[112,281,78,-0.5039559541328344],[112,281,79,-0.5031836007838137],[112,282,64,-0.5171010829508305],[112,282,65,-0.5150407766923308],[112,282,66,-0.5135658886283636],[112,282,67,-0.512801325879991],[112,282,68,-0.5125248022377491],[112,282,69,-0.5124049885198474],[112,282,70,-0.5122450273483992],[112,282,71,-0.5117878885939717],[112,282,72,-0.5106964153237641],[112,282,73,-0.509256019257009],[112,282,74,-0.5080228541046381],[112,282,75,-0.506874315906316],[112,282,76,-0.505773471435532],[112,282,77,-0.5047980308299884],[112,282,78,-0.5039559541328344],[112,282,79,-0.5031836007838137],[112,283,64,-0.5171010829508305],[112,283,65,-0.5150407766923308],[112,283,66,-0.5135658886283636],[112,283,67,-0.512801325879991],[112,283,68,-0.5125248022377491],[112,283,69,-0.5124049885198474],[112,283,70,-0.5122450273483992],[112,283,71,-0.5117878885939717],[112,283,72,-0.5106964153237641],[112,283,73,-0.509256019257009],[112,283,74,-0.5080228541046381],[112,283,75,-0.506874315906316],[112,283,76,-0.505773471435532],[112,283,77,-0.5047980308299884],[112,283,78,-0.5039559541328344],[112,283,79,-0.5031836007838137],[112,284,64,-0.5171010829508305],[112,284,65,-0.5150407766923308],[112,284,66,-0.5135658886283636],[112,284,67,-0.512801325879991],[112,284,68,-0.5125248022377491],[112,284,69,-0.5124049885198474],[112,284,70,-0.5122450273483992],[112,284,71,-0.5117878885939717],[112,284,72,-0.5106964153237641],[112,284,73,-0.509256019257009],[112,284,74,-0.5080228541046381],[112,284,75,-0.506874315906316],[112,284,76,-0.505773471435532],[112,284,77,-0.5047980308299884],[112,284,78,-0.5039559541328344],[112,284,79,-0.5031836007838137],[112,285,64,-0.5171010829508305],[112,285,65,-0.5150407766923308],[112,285,66,-0.5135658886283636],[112,285,67,-0.512801325879991],[112,285,68,-0.5125248022377491],[112,285,69,-0.5124049885198474],[112,285,70,-0.5122450273483992],[112,285,71,-0.5117878885939717],[112,285,72,-0.5106964153237641],[112,285,73,-0.509256019257009],[112,285,74,-0.5080228541046381],[112,285,75,-0.506874315906316],[112,285,76,-0.505773471435532],[112,285,77,-0.5047980308299884],[112,285,78,-0.5039559541328344],[112,285,79,-0.5031836007838137],[112,286,64,-0.5171010829508305],[112,286,65,-0.5150407766923308],[112,286,66,-0.5135658886283636],[112,286,67,-0.512801325879991],[112,286,68,-0.5125248022377491],[112,286,69,-0.5124049885198474],[112,286,70,-0.5122450273483992],[112,286,71,-0.5117878885939717],[112,286,72,-0.5106964153237641],[112,286,73,-0.509256019257009],[112,286,74,-0.5080228541046381],[112,286,75,-0.506874315906316],[112,286,76,-0.505773471435532],[112,286,77,-0.5047980308299884],[112,286,78,-0.5039559541328344],[112,286,79,-0.5031836007838137],[112,287,64,-0.5171010829508305],[112,287,65,-0.5150407766923308],[112,287,66,-0.5135658886283636],[112,287,67,-0.512801325879991],[112,287,68,-0.5125248022377491],[112,287,69,-0.5124049885198474],[112,287,70,-0.5122450273483992],[112,287,71,-0.5117878885939717],[112,287,72,-0.5106964153237641],[112,287,73,-0.509256019257009],[112,287,74,-0.5080228541046381],[112,287,75,-0.506874315906316],[112,287,76,-0.505773471435532],[112,287,77,-0.5047980308299884],[112,287,78,-0.5039559541328344],[112,287,79,-0.5031836007838137],[112,288,64,-0.5171010829508305],[112,288,65,-0.5150407766923308],[112,288,66,-0.5135658886283636],[112,288,67,-0.512801325879991],[112,288,68,-0.5125248022377491],[112,288,69,-0.5124049885198474],[112,288,70,-0.5122450273483992],[112,288,71,-0.5117878885939717],[112,288,72,-0.5106964153237641],[112,288,73,-0.509256019257009],[112,288,74,-0.5080228541046381],[112,288,75,-0.506874315906316],[112,288,76,-0.505773471435532],[112,288,77,-0.5047980308299884],[112,288,78,-0.5039559541328344],[112,288,79,-0.5031836007838137],[112,289,64,-0.5171010829508305],[112,289,65,-0.5150407766923308],[112,289,66,-0.5135658886283636],[112,289,67,-0.512801325879991],[112,289,68,-0.5125248022377491],[112,289,69,-0.5124049885198474],[112,289,70,-0.5122450273483992],[112,289,71,-0.5117878885939717],[112,289,72,-0.5106964153237641],[112,289,73,-0.509256019257009],[112,289,74,-0.5080228541046381],[112,289,75,-0.506874315906316],[112,289,76,-0.505773471435532],[112,289,77,-0.5047980308299884],[112,289,78,-0.5039559541328344],[112,289,79,-0.5031836007838137],[112,290,64,-0.5171010829508305],[112,290,65,-0.5150407766923308],[112,290,66,-0.5135658886283636],[112,290,67,-0.512801325879991],[112,290,68,-0.5125248022377491],[112,290,69,-0.5124049885198474],[112,290,70,-0.5122450273483992],[112,290,71,-0.5117878885939717],[112,290,72,-0.5106964153237641],[112,290,73,-0.509256019257009],[112,290,74,-0.5080228541046381],[112,290,75,-0.506874315906316],[112,290,76,-0.505773471435532],[112,290,77,-0.5047980308299884],[112,290,78,-0.5039559541328344],[112,290,79,-0.5031836007838137],[112,291,64,-0.5171010829508305],[112,291,65,-0.5150407766923308],[112,291,66,-0.5135658886283636],[112,291,67,-0.512801325879991],[112,291,68,-0.5125248022377491],[112,291,69,-0.5124049885198474],[112,291,70,-0.5122450273483992],[112,291,71,-0.5117878885939717],[112,291,72,-0.5106964153237641],[112,291,73,-0.509256019257009],[112,291,74,-0.5080228541046381],[112,291,75,-0.506874315906316],[112,291,76,-0.505773471435532],[112,291,77,-0.5047980308299884],[112,291,78,-0.5039559541328344],[112,291,79,-0.5031836007838137],[112,292,64,-0.5171010829508305],[112,292,65,-0.5150407766923308],[112,292,66,-0.5135658886283636],[112,292,67,-0.512801325879991],[112,292,68,-0.5125248022377491],[112,292,69,-0.5124049885198474],[112,292,70,-0.5122450273483992],[112,292,71,-0.5117878885939717],[112,292,72,-0.5106964153237641],[112,292,73,-0.509256019257009],[112,292,74,-0.5080228541046381],[112,292,75,-0.506874315906316],[112,292,76,-0.505773471435532],[112,292,77,-0.5047980308299884],[112,292,78,-0.5039559541328344],[112,292,79,-0.5031836007838137],[112,293,64,-0.5171010829508305],[112,293,65,-0.5150407766923308],[112,293,66,-0.5135658886283636],[112,293,67,-0.512801325879991],[112,293,68,-0.5125248022377491],[112,293,69,-0.5124049885198474],[112,293,70,-0.5122450273483992],[112,293,71,-0.5117878885939717],[112,293,72,-0.5106964153237641],[112,293,73,-0.509256019257009],[112,293,74,-0.5080228541046381],[112,293,75,-0.506874315906316],[112,293,76,-0.505773471435532],[112,293,77,-0.5047980308299884],[112,293,78,-0.5039559541328344],[112,293,79,-0.5031836007838137],[112,294,64,-0.5171010829508305],[112,294,65,-0.5150407766923308],[112,294,66,-0.5135658886283636],[112,294,67,-0.512801325879991],[112,294,68,-0.5125248022377491],[112,294,69,-0.5124049885198474],[112,294,70,-0.5122450273483992],[112,294,71,-0.5117878885939717],[112,294,72,-0.5106964153237641],[112,294,73,-0.509256019257009],[112,294,74,-0.5080228541046381],[112,294,75,-0.506874315906316],[112,294,76,-0.505773471435532],[112,294,77,-0.5047980308299884],[112,294,78,-0.5039559541328344],[112,294,79,-0.5031836007838137],[112,295,64,-0.5171010829508305],[112,295,65,-0.5150407766923308],[112,295,66,-0.5135658886283636],[112,295,67,-0.512801325879991],[112,295,68,-0.5125248022377491],[112,295,69,-0.5124049885198474],[112,295,70,-0.5122450273483992],[112,295,71,-0.5117878885939717],[112,295,72,-0.5106964153237641],[112,295,73,-0.509256019257009],[112,295,74,-0.5080228541046381],[112,295,75,-0.506874315906316],[112,295,76,-0.505773471435532],[112,295,77,-0.5047980308299884],[112,295,78,-0.5039559541328344],[112,295,79,-0.5031836007838137],[112,296,64,-0.5171010829508305],[112,296,65,-0.5150407766923308],[112,296,66,-0.5135658886283636],[112,296,67,-0.512801325879991],[112,296,68,-0.5125248022377491],[112,296,69,-0.5124049885198474],[112,296,70,-0.5122450273483992],[112,296,71,-0.5117878885939717],[112,296,72,-0.5106964153237641],[112,296,73,-0.509256019257009],[112,296,74,-0.5080228541046381],[112,296,75,-0.506874315906316],[112,296,76,-0.505773471435532],[112,296,77,-0.5047980308299884],[112,296,78,-0.5039559541328344],[112,296,79,-0.5031836007838137],[112,297,64,-0.5171010829508305],[112,297,65,-0.5150407766923308],[112,297,66,-0.5135658886283636],[112,297,67,-0.512801325879991],[112,297,68,-0.5125248022377491],[112,297,69,-0.5124049885198474],[112,297,70,-0.5122450273483992],[112,297,71,-0.5117878885939717],[112,297,72,-0.5106964153237641],[112,297,73,-0.509256019257009],[112,297,74,-0.5080228541046381],[112,297,75,-0.506874315906316],[112,297,76,-0.505773471435532],[112,297,77,-0.5047980308299884],[112,297,78,-0.5039559541328344],[112,297,79,-0.5031836007838137],[112,298,64,-0.5171010829508305],[112,298,65,-0.5150407766923308],[112,298,66,-0.5135658886283636],[112,298,67,-0.512801325879991],[112,298,68,-0.5125248022377491],[112,298,69,-0.5124049885198474],[112,298,70,-0.5122450273483992],[112,298,71,-0.5117878885939717],[112,298,72,-0.5106964153237641],[112,298,73,-0.509256019257009],[112,298,74,-0.5080228541046381],[112,298,75,-0.506874315906316],[112,298,76,-0.505773471435532],[112,298,77,-0.5047980308299884],[112,298,78,-0.5039559541328344],[112,298,79,-0.5031836007838137],[112,299,64,-0.5171010829508305],[112,299,65,-0.5150407766923308],[112,299,66,-0.5135658886283636],[112,299,67,-0.512801325879991],[112,299,68,-0.5125248022377491],[112,299,69,-0.5124049885198474],[112,299,70,-0.5122450273483992],[112,299,71,-0.5117878885939717],[112,299,72,-0.5106964153237641],[112,299,73,-0.509256019257009],[112,299,74,-0.5080228541046381],[112,299,75,-0.506874315906316],[112,299,76,-0.505773471435532],[112,299,77,-0.5047980308299884],[112,299,78,-0.5039559541328344],[112,299,79,-0.5031836007838137],[112,300,64,-0.5171010829508305],[112,300,65,-0.5150407766923308],[112,300,66,-0.5135658886283636],[112,300,67,-0.512801325879991],[112,300,68,-0.5125248022377491],[112,300,69,-0.5124049885198474],[112,300,70,-0.5122450273483992],[112,300,71,-0.5117878885939717],[112,300,72,-0.5106964153237641],[112,300,73,-0.509256019257009],[112,300,74,-0.5080228541046381],[112,300,75,-0.506874315906316],[112,300,76,-0.505773471435532],[112,300,77,-0.5047980308299884],[112,300,78,-0.5039559541328344],[112,300,79,-0.5031836007838137],[112,301,64,-0.5171010829508305],[112,301,65,-0.5150407766923308],[112,301,66,-0.5135658886283636],[112,301,67,-0.512801325879991],[112,301,68,-0.5125248022377491],[112,301,69,-0.5124049885198474],[112,301,70,-0.5122450273483992],[112,301,71,-0.5117878885939717],[112,301,72,-0.5106964153237641],[112,301,73,-0.509256019257009],[112,301,74,-0.5080228541046381],[112,301,75,-0.506874315906316],[112,301,76,-0.505773471435532],[112,301,77,-0.5047980308299884],[112,301,78,-0.5039559541328344],[112,301,79,-0.5031836007838137],[112,302,64,-0.5171010829508305],[112,302,65,-0.5150407766923308],[112,302,66,-0.5135658886283636],[112,302,67,-0.512801325879991],[112,302,68,-0.5125248022377491],[112,302,69,-0.5124049885198474],[112,302,70,-0.5122450273483992],[112,302,71,-0.5117878885939717],[112,302,72,-0.5106964153237641],[112,302,73,-0.509256019257009],[112,302,74,-0.5080228541046381],[112,302,75,-0.506874315906316],[112,302,76,-0.505773471435532],[112,302,77,-0.5047980308299884],[112,302,78,-0.5039559541328344],[112,302,79,-0.5031836007838137],[112,303,64,-0.5171010829508305],[112,303,65,-0.5150407766923308],[112,303,66,-0.5135658886283636],[112,303,67,-0.512801325879991],[112,303,68,-0.5125248022377491],[112,303,69,-0.5124049885198474],[112,303,70,-0.5122450273483992],[112,303,71,-0.5117878885939717],[112,303,72,-0.5106964153237641],[112,303,73,-0.509256019257009],[112,303,74,-0.5080228541046381],[112,303,75,-0.506874315906316],[112,303,76,-0.505773471435532],[112,303,77,-0.5047980308299884],[112,303,78,-0.5039559541328344],[112,303,79,-0.5031836007838137],[112,304,64,-0.5171010829508305],[112,304,65,-0.5150407766923308],[112,304,66,-0.5135658886283636],[112,304,67,-0.512801325879991],[112,304,68,-0.5125248022377491],[112,304,69,-0.5124049885198474],[112,304,70,-0.5122450273483992],[112,304,71,-0.5117878885939717],[112,304,72,-0.5106964153237641],[112,304,73,-0.509256019257009],[112,304,74,-0.5080228541046381],[112,304,75,-0.506874315906316],[112,304,76,-0.505773471435532],[112,304,77,-0.5047980308299884],[112,304,78,-0.5039559541328344],[112,304,79,-0.5031836007838137],[112,305,64,-0.5171010829508305],[112,305,65,-0.5150407766923308],[112,305,66,-0.5135658886283636],[112,305,67,-0.512801325879991],[112,305,68,-0.5125248022377491],[112,305,69,-0.5124049885198474],[112,305,70,-0.5122450273483992],[112,305,71,-0.5117878885939717],[112,305,72,-0.5106964153237641],[112,305,73,-0.509256019257009],[112,305,74,-0.5080228541046381],[112,305,75,-0.506874315906316],[112,305,76,-0.505773471435532],[112,305,77,-0.5047980308299884],[112,305,78,-0.5039559541328344],[112,305,79,-0.5031836007838137],[112,306,64,-0.5171010829508305],[112,306,65,-0.5150407766923308],[112,306,66,-0.5135658886283636],[112,306,67,-0.512801325879991],[112,306,68,-0.5125248022377491],[112,306,69,-0.5124049885198474],[112,306,70,-0.5122450273483992],[112,306,71,-0.5117878885939717],[112,306,72,-0.5106964153237641],[112,306,73,-0.509256019257009],[112,306,74,-0.5080228541046381],[112,306,75,-0.506874315906316],[112,306,76,-0.505773471435532],[112,306,77,-0.5047980308299884],[112,306,78,-0.5039559541328344],[112,306,79,-0.5031836007838137],[112,307,64,-0.5171010829508305],[112,307,65,-0.5150407766923308],[112,307,66,-0.5135658886283636],[112,307,67,-0.512801325879991],[112,307,68,-0.5125248022377491],[112,307,69,-0.5124049885198474],[112,307,70,-0.5122450273483992],[112,307,71,-0.5117878885939717],[112,307,72,-0.5106964153237641],[112,307,73,-0.509256019257009],[112,307,74,-0.5080228541046381],[112,307,75,-0.506874315906316],[112,307,76,-0.505773471435532],[112,307,77,-0.5047980308299884],[112,307,78,-0.5039559541328344],[112,307,79,-0.5031836007838137],[112,308,64,-0.5171010829508305],[112,308,65,-0.5150407766923308],[112,308,66,-0.5135658886283636],[112,308,67,-0.512801325879991],[112,308,68,-0.5125248022377491],[112,308,69,-0.5124049885198474],[112,308,70,-0.5122450273483992],[112,308,71,-0.5117878885939717],[112,308,72,-0.5106964153237641],[112,308,73,-0.509256019257009],[112,308,74,-0.5080228541046381],[112,308,75,-0.506874315906316],[112,308,76,-0.505773471435532],[112,308,77,-0.5047980308299884],[112,308,78,-0.5039559541328344],[112,308,79,-0.5031836007838137],[112,309,64,-0.5171010829508305],[112,309,65,-0.5150407766923308],[112,309,66,-0.5135658886283636],[112,309,67,-0.512801325879991],[112,309,68,-0.5125248022377491],[112,309,69,-0.5124049885198474],[112,309,70,-0.5122450273483992],[112,309,71,-0.5117878885939717],[112,309,72,-0.5106964153237641],[112,309,73,-0.509256019257009],[112,309,74,-0.5080228541046381],[112,309,75,-0.506874315906316],[112,309,76,-0.505773471435532],[112,309,77,-0.5047980308299884],[112,309,78,-0.5039559541328344],[112,309,79,-0.5031836007838137],[112,310,64,-0.5171010829508305],[112,310,65,-0.5150407766923308],[112,310,66,-0.5135658886283636],[112,310,67,-0.512801325879991],[112,310,68,-0.5125248022377491],[112,310,69,-0.5124049885198474],[112,310,70,-0.5122450273483992],[112,310,71,-0.5117878885939717],[112,310,72,-0.5106964153237641],[112,310,73,-0.509256019257009],[112,310,74,-0.5080228541046381],[112,310,75,-0.506874315906316],[112,310,76,-0.505773471435532],[112,310,77,-0.5047980308299884],[112,310,78,-0.5039559541328344],[112,310,79,-0.5031836007838137],[112,311,64,-0.5171010829508305],[112,311,65,-0.5150407766923308],[112,311,66,-0.5135658886283636],[112,311,67,-0.512801325879991],[112,311,68,-0.5125248022377491],[112,311,69,-0.5124049885198474],[112,311,70,-0.5122450273483992],[112,311,71,-0.5117878885939717],[112,311,72,-0.5106964153237641],[112,311,73,-0.509256019257009],[112,311,74,-0.5080228541046381],[112,311,75,-0.506874315906316],[112,311,76,-0.505773471435532],[112,311,77,-0.5047980308299884],[112,311,78,-0.5039559541328344],[112,311,79,-0.5031836007838137],[112,312,64,-0.5171010829508305],[112,312,65,-0.5150407766923308],[112,312,66,-0.5135658886283636],[112,312,67,-0.512801325879991],[112,312,68,-0.5125248022377491],[112,312,69,-0.5124049885198474],[112,312,70,-0.5122450273483992],[112,312,71,-0.5117878885939717],[112,312,72,-0.5106964153237641],[112,312,73,-0.509256019257009],[112,312,74,-0.5080228541046381],[112,312,75,-0.506874315906316],[112,312,76,-0.505773471435532],[112,312,77,-0.5047980308299884],[112,312,78,-0.5039559541328344],[112,312,79,-0.5031836007838137],[112,313,64,-0.5171010829508305],[112,313,65,-0.5150407766923308],[112,313,66,-0.5135658886283636],[112,313,67,-0.512801325879991],[112,313,68,-0.5125248022377491],[112,313,69,-0.5124049885198474],[112,313,70,-0.5122450273483992],[112,313,71,-0.5117878885939717],[112,313,72,-0.5106964153237641],[112,313,73,-0.509256019257009],[112,313,74,-0.5080228541046381],[112,313,75,-0.506874315906316],[112,313,76,-0.505773471435532],[112,313,77,-0.5047980308299884],[112,313,78,-0.5039559541328344],[112,313,79,-0.5031836007838137],[112,314,64,-0.5171010829508305],[112,314,65,-0.5150407766923308],[112,314,66,-0.5135658886283636],[112,314,67,-0.512801325879991],[112,314,68,-0.5125248022377491],[112,314,69,-0.5124049885198474],[112,314,70,-0.5122450273483992],[112,314,71,-0.5117878885939717],[112,314,72,-0.5106964153237641],[112,314,73,-0.509256019257009],[112,314,74,-0.5080228541046381],[112,314,75,-0.506874315906316],[112,314,76,-0.505773471435532],[112,314,77,-0.5047980308299884],[112,314,78,-0.5039559541328344],[112,314,79,-0.5031836007838137],[112,315,64,-0.5171010829508305],[112,315,65,-0.5150407766923308],[112,315,66,-0.5135658886283636],[112,315,67,-0.512801325879991],[112,315,68,-0.5125248022377491],[112,315,69,-0.5124049885198474],[112,315,70,-0.5122450273483992],[112,315,71,-0.5117878885939717],[112,315,72,-0.5106964153237641],[112,315,73,-0.509256019257009],[112,315,74,-0.5080228541046381],[112,315,75,-0.506874315906316],[112,315,76,-0.505773471435532],[112,315,77,-0.5047980308299884],[112,315,78,-0.5039559541328344],[112,315,79,-0.5031836007838137],[112,316,64,-0.5171010829508305],[112,316,65,-0.5150407766923308],[112,316,66,-0.5135658886283636],[112,316,67,-0.512801325879991],[112,316,68,-0.5125248022377491],[112,316,69,-0.5124049885198474],[112,316,70,-0.5122450273483992],[112,316,71,-0.5117878885939717],[112,316,72,-0.5106964153237641],[112,316,73,-0.509256019257009],[112,316,74,-0.5080228541046381],[112,316,75,-0.506874315906316],[112,316,76,-0.505773471435532],[112,316,77,-0.5047980308299884],[112,316,78,-0.5039559541328344],[112,316,79,-0.5031836007838137],[112,317,64,-0.5171010829508305],[112,317,65,-0.5150407766923308],[112,317,66,-0.5135658886283636],[112,317,67,-0.512801325879991],[112,317,68,-0.5125248022377491],[112,317,69,-0.5124049885198474],[112,317,70,-0.5122450273483992],[112,317,71,-0.5117878885939717],[112,317,72,-0.5106964153237641],[112,317,73,-0.509256019257009],[112,317,74,-0.5080228541046381],[112,317,75,-0.506874315906316],[112,317,76,-0.505773471435532],[112,317,77,-0.5047980308299884],[112,317,78,-0.5039559541328344],[112,317,79,-0.5031836007838137],[112,318,64,-0.5171010829508305],[112,318,65,-0.5150407766923308],[112,318,66,-0.5135658886283636],[112,318,67,-0.512801325879991],[112,318,68,-0.5125248022377491],[112,318,69,-0.5124049885198474],[112,318,70,-0.5122450273483992],[112,318,71,-0.5117878885939717],[112,318,72,-0.5106964153237641],[112,318,73,-0.509256019257009],[112,318,74,-0.5080228541046381],[112,318,75,-0.506874315906316],[112,318,76,-0.505773471435532],[112,318,77,-0.5047980308299884],[112,318,78,-0.5039559541328344],[112,318,79,-0.5031836007838137],[112,319,64,-0.5171010829508305],[112,319,65,-0.5150407766923308],[112,319,66,-0.5135658886283636],[112,319,67,-0.512801325879991],[112,319,68,-0.5125248022377491],[112,319,69,-0.5124049885198474],[112,319,70,-0.5122450273483992],[112,319,71,-0.5117878885939717],[112,319,72,-0.5106964153237641],[112,319,73,-0.509256019257009],[112,319,74,-0.5080228541046381],[112,319,75,-0.506874315906316],[112,319,76,-0.505773471435532],[112,319,77,-0.5047980308299884],[112,319,78,-0.5039559541328344],[112,319,79,-0.5031836007838137],[113,-64,64,-0.5227295868098736],[113,-64,65,-0.520820114761591],[113,-64,66,-0.5193138187751174],[113,-64,67,-0.5183762442320585],[113,-64,68,-0.5178399458527565],[113,-64,69,-0.5172820575535297],[113,-64,70,-0.5166258318349719],[113,-64,71,-0.5157407047227025],[113,-64,72,-0.5142517378553748],[113,-64,73,-0.5122488643974066],[113,-64,74,-0.5105016264133155],[113,-64,75,-0.5092914546839893],[113,-64,76,-0.5083487671799958],[113,-64,77,-0.5074529582634568],[113,-64,78,-0.5064700578805059],[113,-64,79,-0.5053090718574822],[113,-63,64,-0.5227295868098736],[113,-63,65,-0.520820114761591],[113,-63,66,-0.5193138187751174],[113,-63,67,-0.5183762442320585],[113,-63,68,-0.5178399458527565],[113,-63,69,-0.5172820575535297],[113,-63,70,-0.5166258318349719],[113,-63,71,-0.5157407047227025],[113,-63,72,-0.5142517378553748],[113,-63,73,-0.5122488643974066],[113,-63,74,-0.5105016264133155],[113,-63,75,-0.5092914546839893],[113,-63,76,-0.5083487671799958],[113,-63,77,-0.5074529582634568],[113,-63,78,-0.5064700578805059],[113,-63,79,-0.5053090718574822],[113,-62,64,-0.5227295868098736],[113,-62,65,-0.520820114761591],[113,-62,66,-0.5193138187751174],[113,-62,67,-0.5183762442320585],[113,-62,68,-0.5178399458527565],[113,-62,69,-0.5172820575535297],[113,-62,70,-0.5166258318349719],[113,-62,71,-0.5157407047227025],[113,-62,72,-0.5142517378553748],[113,-62,73,-0.5122488643974066],[113,-62,74,-0.5105016264133155],[113,-62,75,-0.5092914546839893],[113,-62,76,-0.5083487671799958],[113,-62,77,-0.5074529582634568],[113,-62,78,-0.5064700578805059],[113,-62,79,-0.5053090718574822],[113,-61,64,-0.5227295868098736],[113,-61,65,-0.520820114761591],[113,-61,66,-0.5193138187751174],[113,-61,67,-0.5183762442320585],[113,-61,68,-0.5178399458527565],[113,-61,69,-0.5172820575535297],[113,-61,70,-0.5166258318349719],[113,-61,71,-0.5157407047227025],[113,-61,72,-0.5142517378553748],[113,-61,73,-0.5122488643974066],[113,-61,74,-0.5105016264133155],[113,-61,75,-0.5092914546839893],[113,-61,76,-0.5083487671799958],[113,-61,77,-0.5074529582634568],[113,-61,78,-0.5064700578805059],[113,-61,79,-0.5053090718574822],[113,-60,64,-0.5227295868098736],[113,-60,65,-0.520820114761591],[113,-60,66,-0.5193138187751174],[113,-60,67,-0.5183762442320585],[113,-60,68,-0.5178399458527565],[113,-60,69,-0.5172820575535297],[113,-60,70,-0.5166258318349719],[113,-60,71,-0.5157407047227025],[113,-60,72,-0.5142517378553748],[113,-60,73,-0.5122488643974066],[113,-60,74,-0.5105016264133155],[113,-60,75,-0.5092914546839893],[113,-60,76,-0.5083487671799958],[113,-60,77,-0.5074529582634568],[113,-60,78,-0.5064700578805059],[113,-60,79,-0.5053090718574822],[113,-59,64,-0.5227295868098736],[113,-59,65,-0.520820114761591],[113,-59,66,-0.5193138187751174],[113,-59,67,-0.5183762442320585],[113,-59,68,-0.5178399458527565],[113,-59,69,-0.5172820575535297],[113,-59,70,-0.5166258318349719],[113,-59,71,-0.5157407047227025],[113,-59,72,-0.5142517378553748],[113,-59,73,-0.5122488643974066],[113,-59,74,-0.5105016264133155],[113,-59,75,-0.5092914546839893],[113,-59,76,-0.5083487671799958],[113,-59,77,-0.5074529582634568],[113,-59,78,-0.5064700578805059],[113,-59,79,-0.5053090718574822],[113,-58,64,-0.5227295868098736],[113,-58,65,-0.520820114761591],[113,-58,66,-0.5193138187751174],[113,-58,67,-0.5183762442320585],[113,-58,68,-0.5178399458527565],[113,-58,69,-0.5172820575535297],[113,-58,70,-0.5166258318349719],[113,-58,71,-0.5157407047227025],[113,-58,72,-0.5142517378553748],[113,-58,73,-0.5122488643974066],[113,-58,74,-0.5105016264133155],[113,-58,75,-0.5092914546839893],[113,-58,76,-0.5083487671799958],[113,-58,77,-0.5074529582634568],[113,-58,78,-0.5064700578805059],[113,-58,79,-0.5053090718574822],[113,-57,64,-0.5227295868098736],[113,-57,65,-0.520820114761591],[113,-57,66,-0.5193138187751174],[113,-57,67,-0.5183762442320585],[113,-57,68,-0.5178399458527565],[113,-57,69,-0.5172820575535297],[113,-57,70,-0.5166258318349719],[113,-57,71,-0.5157407047227025],[113,-57,72,-0.5142517378553748],[113,-57,73,-0.5122488643974066],[113,-57,74,-0.5105016264133155],[113,-57,75,-0.5092914546839893],[113,-57,76,-0.5083487671799958],[113,-57,77,-0.5074529582634568],[113,-57,78,-0.5064700578805059],[113,-57,79,-0.5053090718574822],[113,-56,64,-0.5227295868098736],[113,-56,65,-0.520820114761591],[113,-56,66,-0.5193138187751174],[113,-56,67,-0.5183762442320585],[113,-56,68,-0.5178399458527565],[113,-56,69,-0.5172820575535297],[113,-56,70,-0.5166258318349719],[113,-56,71,-0.5157407047227025],[113,-56,72,-0.5142517378553748],[113,-56,73,-0.5122488643974066],[113,-56,74,-0.5105016264133155],[113,-56,75,-0.5092914546839893],[113,-56,76,-0.5083487671799958],[113,-56,77,-0.5074529582634568],[113,-56,78,-0.5064700578805059],[113,-56,79,-0.5053090718574822],[113,-55,64,-0.5227295868098736],[113,-55,65,-0.520820114761591],[113,-55,66,-0.5193138187751174],[113,-55,67,-0.5183762442320585],[113,-55,68,-0.5178399458527565],[113,-55,69,-0.5172820575535297],[113,-55,70,-0.5166258318349719],[113,-55,71,-0.5157407047227025],[113,-55,72,-0.5142517378553748],[113,-55,73,-0.5122488643974066],[113,-55,74,-0.5105016264133155],[113,-55,75,-0.5092914546839893],[113,-55,76,-0.5083487671799958],[113,-55,77,-0.5074529582634568],[113,-55,78,-0.5064700578805059],[113,-55,79,-0.5053090718574822],[113,-54,64,-0.5227295868098736],[113,-54,65,-0.520820114761591],[113,-54,66,-0.5193138187751174],[113,-54,67,-0.5183762442320585],[113,-54,68,-0.5178399458527565],[113,-54,69,-0.5172820575535297],[113,-54,70,-0.5166258318349719],[113,-54,71,-0.5157407047227025],[113,-54,72,-0.5142517378553748],[113,-54,73,-0.5122488643974066],[113,-54,74,-0.5105016264133155],[113,-54,75,-0.5092914546839893],[113,-54,76,-0.5083487671799958],[113,-54,77,-0.5074529582634568],[113,-54,78,-0.5064700578805059],[113,-54,79,-0.5053090718574822],[113,-53,64,-0.5227295868098736],[113,-53,65,-0.520820114761591],[113,-53,66,-0.5193138187751174],[113,-53,67,-0.5183762442320585],[113,-53,68,-0.5178399458527565],[113,-53,69,-0.5172820575535297],[113,-53,70,-0.5166258318349719],[113,-53,71,-0.5157407047227025],[113,-53,72,-0.5142517378553748],[113,-53,73,-0.5122488643974066],[113,-53,74,-0.5105016264133155],[113,-53,75,-0.5092914546839893],[113,-53,76,-0.5083487671799958],[113,-53,77,-0.5074529582634568],[113,-53,78,-0.5064700578805059],[113,-53,79,-0.5053090718574822],[113,-52,64,-0.5227295868098736],[113,-52,65,-0.520820114761591],[113,-52,66,-0.5193138187751174],[113,-52,67,-0.5183762442320585],[113,-52,68,-0.5178399458527565],[113,-52,69,-0.5172820575535297],[113,-52,70,-0.5166258318349719],[113,-52,71,-0.5157407047227025],[113,-52,72,-0.5142517378553748],[113,-52,73,-0.5122488643974066],[113,-52,74,-0.5105016264133155],[113,-52,75,-0.5092914546839893],[113,-52,76,-0.5083487671799958],[113,-52,77,-0.5074529582634568],[113,-52,78,-0.5064700578805059],[113,-52,79,-0.5053090718574822],[113,-51,64,-0.5227295868098736],[113,-51,65,-0.520820114761591],[113,-51,66,-0.5193138187751174],[113,-51,67,-0.5183762442320585],[113,-51,68,-0.5178399458527565],[113,-51,69,-0.5172820575535297],[113,-51,70,-0.5166258318349719],[113,-51,71,-0.5157407047227025],[113,-51,72,-0.5142517378553748],[113,-51,73,-0.5122488643974066],[113,-51,74,-0.5105016264133155],[113,-51,75,-0.5092914546839893],[113,-51,76,-0.5083487671799958],[113,-51,77,-0.5074529582634568],[113,-51,78,-0.5064700578805059],[113,-51,79,-0.5053090718574822],[113,-50,64,-0.5227295868098736],[113,-50,65,-0.520820114761591],[113,-50,66,-0.5193138187751174],[113,-50,67,-0.5183762442320585],[113,-50,68,-0.5178399458527565],[113,-50,69,-0.5172820575535297],[113,-50,70,-0.5166258318349719],[113,-50,71,-0.5157407047227025],[113,-50,72,-0.5142517378553748],[113,-50,73,-0.5122488643974066],[113,-50,74,-0.5105016264133155],[113,-50,75,-0.5092914546839893],[113,-50,76,-0.5083487671799958],[113,-50,77,-0.5074529582634568],[113,-50,78,-0.5064700578805059],[113,-50,79,-0.5053090718574822],[113,-49,64,-0.5227295868098736],[113,-49,65,-0.520820114761591],[113,-49,66,-0.5193138187751174],[113,-49,67,-0.5183762442320585],[113,-49,68,-0.5178399458527565],[113,-49,69,-0.5172820575535297],[113,-49,70,-0.5166258318349719],[113,-49,71,-0.5157407047227025],[113,-49,72,-0.5142517378553748],[113,-49,73,-0.5122488643974066],[113,-49,74,-0.5105016264133155],[113,-49,75,-0.5092914546839893],[113,-49,76,-0.5083487671799958],[113,-49,77,-0.5074529582634568],[113,-49,78,-0.5064700578805059],[113,-49,79,-0.5053090718574822],[113,-48,64,-0.5227295868098736],[113,-48,65,-0.520820114761591],[113,-48,66,-0.5193138187751174],[113,-48,67,-0.5183762442320585],[113,-48,68,-0.5178399458527565],[113,-48,69,-0.5172820575535297],[113,-48,70,-0.5166258318349719],[113,-48,71,-0.5157407047227025],[113,-48,72,-0.5142517378553748],[113,-48,73,-0.5122488643974066],[113,-48,74,-0.5105016264133155],[113,-48,75,-0.5092914546839893],[113,-48,76,-0.5083487671799958],[113,-48,77,-0.5074529582634568],[113,-48,78,-0.5064700578805059],[113,-48,79,-0.5053090718574822],[113,-47,64,-0.5227295868098736],[113,-47,65,-0.520820114761591],[113,-47,66,-0.5193138187751174],[113,-47,67,-0.5183762442320585],[113,-47,68,-0.5178399458527565],[113,-47,69,-0.5172820575535297],[113,-47,70,-0.5166258318349719],[113,-47,71,-0.5157407047227025],[113,-47,72,-0.5142517378553748],[113,-47,73,-0.5122488643974066],[113,-47,74,-0.5105016264133155],[113,-47,75,-0.5092914546839893],[113,-47,76,-0.5083487671799958],[113,-47,77,-0.5074529582634568],[113,-47,78,-0.5064700578805059],[113,-47,79,-0.5053090718574822],[113,-46,64,-0.5227295868098736],[113,-46,65,-0.520820114761591],[113,-46,66,-0.5193138187751174],[113,-46,67,-0.5183762442320585],[113,-46,68,-0.5178399458527565],[113,-46,69,-0.5172820575535297],[113,-46,70,-0.5166258318349719],[113,-46,71,-0.5157407047227025],[113,-46,72,-0.5142517378553748],[113,-46,73,-0.5122488643974066],[113,-46,74,-0.5105016264133155],[113,-46,75,-0.5092914546839893],[113,-46,76,-0.5083487671799958],[113,-46,77,-0.5074529582634568],[113,-46,78,-0.5064700578805059],[113,-46,79,-0.5053090718574822],[113,-45,64,-0.5227295868098736],[113,-45,65,-0.520820114761591],[113,-45,66,-0.5193138187751174],[113,-45,67,-0.5183762442320585],[113,-45,68,-0.5178399458527565],[113,-45,69,-0.5172820575535297],[113,-45,70,-0.5166258318349719],[113,-45,71,-0.5157407047227025],[113,-45,72,-0.5142517378553748],[113,-45,73,-0.5122488643974066],[113,-45,74,-0.5105016264133155],[113,-45,75,-0.5092914546839893],[113,-45,76,-0.5083487671799958],[113,-45,77,-0.5074529582634568],[113,-45,78,-0.5064700578805059],[113,-45,79,-0.5053090718574822],[113,-44,64,-0.5227295868098736],[113,-44,65,-0.520820114761591],[113,-44,66,-0.5193138187751174],[113,-44,67,-0.5183762442320585],[113,-44,68,-0.5178399458527565],[113,-44,69,-0.5172820575535297],[113,-44,70,-0.5166258318349719],[113,-44,71,-0.5157407047227025],[113,-44,72,-0.5142517378553748],[113,-44,73,-0.5122488643974066],[113,-44,74,-0.5105016264133155],[113,-44,75,-0.5092914546839893],[113,-44,76,-0.5083487671799958],[113,-44,77,-0.5074529582634568],[113,-44,78,-0.5064700578805059],[113,-44,79,-0.5053090718574822],[113,-43,64,-0.5227295868098736],[113,-43,65,-0.520820114761591],[113,-43,66,-0.5193138187751174],[113,-43,67,-0.5183762442320585],[113,-43,68,-0.5178399458527565],[113,-43,69,-0.5172820575535297],[113,-43,70,-0.5166258318349719],[113,-43,71,-0.5157407047227025],[113,-43,72,-0.5142517378553748],[113,-43,73,-0.5122488643974066],[113,-43,74,-0.5105016264133155],[113,-43,75,-0.5092914546839893],[113,-43,76,-0.5083487671799958],[113,-43,77,-0.5074529582634568],[113,-43,78,-0.5064700578805059],[113,-43,79,-0.5053090718574822],[113,-42,64,-0.5227295868098736],[113,-42,65,-0.520820114761591],[113,-42,66,-0.5193138187751174],[113,-42,67,-0.5183762442320585],[113,-42,68,-0.5178399458527565],[113,-42,69,-0.5172820575535297],[113,-42,70,-0.5166258318349719],[113,-42,71,-0.5157407047227025],[113,-42,72,-0.5142517378553748],[113,-42,73,-0.5122488643974066],[113,-42,74,-0.5105016264133155],[113,-42,75,-0.5092914546839893],[113,-42,76,-0.5083487671799958],[113,-42,77,-0.5074529582634568],[113,-42,78,-0.5064700578805059],[113,-42,79,-0.5053090718574822],[113,-41,64,-0.5227295868098736],[113,-41,65,-0.520820114761591],[113,-41,66,-0.5193138187751174],[113,-41,67,-0.5183762442320585],[113,-41,68,-0.5178399458527565],[113,-41,69,-0.5172820575535297],[113,-41,70,-0.5166258318349719],[113,-41,71,-0.5157407047227025],[113,-41,72,-0.5142517378553748],[113,-41,73,-0.5122488643974066],[113,-41,74,-0.5105016264133155],[113,-41,75,-0.5092914546839893],[113,-41,76,-0.5083487671799958],[113,-41,77,-0.5074529582634568],[113,-41,78,-0.5064700578805059],[113,-41,79,-0.5053090718574822],[113,-40,64,-0.5227295868098736],[113,-40,65,-0.520820114761591],[113,-40,66,-0.5193138187751174],[113,-40,67,-0.5183762442320585],[113,-40,68,-0.5178399458527565],[113,-40,69,-0.5172820575535297],[113,-40,70,-0.5166258318349719],[113,-40,71,-0.5157407047227025],[113,-40,72,-0.5142517378553748],[113,-40,73,-0.5122488643974066],[113,-40,74,-0.5105016264133155],[113,-40,75,-0.5092914546839893],[113,-40,76,-0.5083487671799958],[113,-40,77,-0.5074529582634568],[113,-40,78,-0.5064700578805059],[113,-40,79,-0.5053090718574822],[113,-39,64,-0.5227295868098736],[113,-39,65,-0.520820114761591],[113,-39,66,-0.5193138187751174],[113,-39,67,-0.5183762442320585],[113,-39,68,-0.5178399458527565],[113,-39,69,-0.5172820575535297],[113,-39,70,-0.5166258318349719],[113,-39,71,-0.5157407047227025],[113,-39,72,-0.5142517378553748],[113,-39,73,-0.5122488643974066],[113,-39,74,-0.5105016264133155],[113,-39,75,-0.5092914546839893],[113,-39,76,-0.5083487671799958],[113,-39,77,-0.5074529582634568],[113,-39,78,-0.5064700578805059],[113,-39,79,-0.5053090718574822],[113,-38,64,-0.5227295868098736],[113,-38,65,-0.520820114761591],[113,-38,66,-0.5193138187751174],[113,-38,67,-0.5183762442320585],[113,-38,68,-0.5178399458527565],[113,-38,69,-0.5172820575535297],[113,-38,70,-0.5166258318349719],[113,-38,71,-0.5157407047227025],[113,-38,72,-0.5142517378553748],[113,-38,73,-0.5122488643974066],[113,-38,74,-0.5105016264133155],[113,-38,75,-0.5092914546839893],[113,-38,76,-0.5083487671799958],[113,-38,77,-0.5074529582634568],[113,-38,78,-0.5064700578805059],[113,-38,79,-0.5053090718574822],[113,-37,64,-0.5227295868098736],[113,-37,65,-0.520820114761591],[113,-37,66,-0.5193138187751174],[113,-37,67,-0.5183762442320585],[113,-37,68,-0.5178399458527565],[113,-37,69,-0.5172820575535297],[113,-37,70,-0.5166258318349719],[113,-37,71,-0.5157407047227025],[113,-37,72,-0.5142517378553748],[113,-37,73,-0.5122488643974066],[113,-37,74,-0.5105016264133155],[113,-37,75,-0.5092914546839893],[113,-37,76,-0.5083487671799958],[113,-37,77,-0.5074529582634568],[113,-37,78,-0.5064700578805059],[113,-37,79,-0.5053090718574822],[113,-36,64,-0.5227295868098736],[113,-36,65,-0.520820114761591],[113,-36,66,-0.5193138187751174],[113,-36,67,-0.5183762442320585],[113,-36,68,-0.5178399458527565],[113,-36,69,-0.5172820575535297],[113,-36,70,-0.5166258318349719],[113,-36,71,-0.5157407047227025],[113,-36,72,-0.5142517378553748],[113,-36,73,-0.5122488643974066],[113,-36,74,-0.5105016264133155],[113,-36,75,-0.5092914546839893],[113,-36,76,-0.5083487671799958],[113,-36,77,-0.5074529582634568],[113,-36,78,-0.5064700578805059],[113,-36,79,-0.5053090718574822],[113,-35,64,-0.5227295868098736],[113,-35,65,-0.520820114761591],[113,-35,66,-0.5193138187751174],[113,-35,67,-0.5183762442320585],[113,-35,68,-0.5178399458527565],[113,-35,69,-0.5172820575535297],[113,-35,70,-0.5166258318349719],[113,-35,71,-0.5157407047227025],[113,-35,72,-0.5142517378553748],[113,-35,73,-0.5122488643974066],[113,-35,74,-0.5105016264133155],[113,-35,75,-0.5092914546839893],[113,-35,76,-0.5083487671799958],[113,-35,77,-0.5074529582634568],[113,-35,78,-0.5064700578805059],[113,-35,79,-0.5053090718574822],[113,-34,64,-0.5227295868098736],[113,-34,65,-0.520820114761591],[113,-34,66,-0.5193138187751174],[113,-34,67,-0.5183762442320585],[113,-34,68,-0.5178399458527565],[113,-34,69,-0.5172820575535297],[113,-34,70,-0.5166258318349719],[113,-34,71,-0.5157407047227025],[113,-34,72,-0.5142517378553748],[113,-34,73,-0.5122488643974066],[113,-34,74,-0.5105016264133155],[113,-34,75,-0.5092914546839893],[113,-34,76,-0.5083487671799958],[113,-34,77,-0.5074529582634568],[113,-34,78,-0.5064700578805059],[113,-34,79,-0.5053090718574822],[113,-33,64,-0.5227295868098736],[113,-33,65,-0.520820114761591],[113,-33,66,-0.5193138187751174],[113,-33,67,-0.5183762442320585],[113,-33,68,-0.5178399458527565],[113,-33,69,-0.5172820575535297],[113,-33,70,-0.5166258318349719],[113,-33,71,-0.5157407047227025],[113,-33,72,-0.5142517378553748],[113,-33,73,-0.5122488643974066],[113,-33,74,-0.5105016264133155],[113,-33,75,-0.5092914546839893],[113,-33,76,-0.5083487671799958],[113,-33,77,-0.5074529582634568],[113,-33,78,-0.5064700578805059],[113,-33,79,-0.5053090718574822],[113,-32,64,-0.5227295868098736],[113,-32,65,-0.520820114761591],[113,-32,66,-0.5193138187751174],[113,-32,67,-0.5183762442320585],[113,-32,68,-0.5178399458527565],[113,-32,69,-0.5172820575535297],[113,-32,70,-0.5166258318349719],[113,-32,71,-0.5157407047227025],[113,-32,72,-0.5142517378553748],[113,-32,73,-0.5122488643974066],[113,-32,74,-0.5105016264133155],[113,-32,75,-0.5092914546839893],[113,-32,76,-0.5083487671799958],[113,-32,77,-0.5074529582634568],[113,-32,78,-0.5064700578805059],[113,-32,79,-0.5053090718574822],[113,-31,64,-0.5227295868098736],[113,-31,65,-0.520820114761591],[113,-31,66,-0.5193138187751174],[113,-31,67,-0.5183762442320585],[113,-31,68,-0.5178399458527565],[113,-31,69,-0.5172820575535297],[113,-31,70,-0.5166258318349719],[113,-31,71,-0.5157407047227025],[113,-31,72,-0.5142517378553748],[113,-31,73,-0.5122488643974066],[113,-31,74,-0.5105016264133155],[113,-31,75,-0.5092914546839893],[113,-31,76,-0.5083487671799958],[113,-31,77,-0.5074529582634568],[113,-31,78,-0.5064700578805059],[113,-31,79,-0.5053090718574822],[113,-30,64,-0.5227295868098736],[113,-30,65,-0.520820114761591],[113,-30,66,-0.5193138187751174],[113,-30,67,-0.5183762442320585],[113,-30,68,-0.5178399458527565],[113,-30,69,-0.5172820575535297],[113,-30,70,-0.5166258318349719],[113,-30,71,-0.5157407047227025],[113,-30,72,-0.5142517378553748],[113,-30,73,-0.5122488643974066],[113,-30,74,-0.5105016264133155],[113,-30,75,-0.5092914546839893],[113,-30,76,-0.5083487671799958],[113,-30,77,-0.5074529582634568],[113,-30,78,-0.5064700578805059],[113,-30,79,-0.5053090718574822],[113,-29,64,-0.5227295868098736],[113,-29,65,-0.520820114761591],[113,-29,66,-0.5193138187751174],[113,-29,67,-0.5183762442320585],[113,-29,68,-0.5178399458527565],[113,-29,69,-0.5172820575535297],[113,-29,70,-0.5166258318349719],[113,-29,71,-0.5157407047227025],[113,-29,72,-0.5142517378553748],[113,-29,73,-0.5122488643974066],[113,-29,74,-0.5105016264133155],[113,-29,75,-0.5092914546839893],[113,-29,76,-0.5083487671799958],[113,-29,77,-0.5074529582634568],[113,-29,78,-0.5064700578805059],[113,-29,79,-0.5053090718574822],[113,-28,64,-0.5227295868098736],[113,-28,65,-0.520820114761591],[113,-28,66,-0.5193138187751174],[113,-28,67,-0.5183762442320585],[113,-28,68,-0.5178399458527565],[113,-28,69,-0.5172820575535297],[113,-28,70,-0.5166258318349719],[113,-28,71,-0.5157407047227025],[113,-28,72,-0.5142517378553748],[113,-28,73,-0.5122488643974066],[113,-28,74,-0.5105016264133155],[113,-28,75,-0.5092914546839893],[113,-28,76,-0.5083487671799958],[113,-28,77,-0.5074529582634568],[113,-28,78,-0.5064700578805059],[113,-28,79,-0.5053090718574822],[113,-27,64,-0.5227295868098736],[113,-27,65,-0.520820114761591],[113,-27,66,-0.5193138187751174],[113,-27,67,-0.5183762442320585],[113,-27,68,-0.5178399458527565],[113,-27,69,-0.5172820575535297],[113,-27,70,-0.5166258318349719],[113,-27,71,-0.5157407047227025],[113,-27,72,-0.5142517378553748],[113,-27,73,-0.5122488643974066],[113,-27,74,-0.5105016264133155],[113,-27,75,-0.5092914546839893],[113,-27,76,-0.5083487671799958],[113,-27,77,-0.5074529582634568],[113,-27,78,-0.5064700578805059],[113,-27,79,-0.5053090718574822],[113,-26,64,-0.5227295868098736],[113,-26,65,-0.520820114761591],[113,-26,66,-0.5193138187751174],[113,-26,67,-0.5183762442320585],[113,-26,68,-0.5178399458527565],[113,-26,69,-0.5172820575535297],[113,-26,70,-0.5166258318349719],[113,-26,71,-0.5157407047227025],[113,-26,72,-0.5142517378553748],[113,-26,73,-0.5122488643974066],[113,-26,74,-0.5105016264133155],[113,-26,75,-0.5092914546839893],[113,-26,76,-0.5083487671799958],[113,-26,77,-0.5074529582634568],[113,-26,78,-0.5064700578805059],[113,-26,79,-0.5053090718574822],[113,-25,64,-0.5227295868098736],[113,-25,65,-0.520820114761591],[113,-25,66,-0.5193138187751174],[113,-25,67,-0.5183762442320585],[113,-25,68,-0.5178399458527565],[113,-25,69,-0.5172820575535297],[113,-25,70,-0.5166258318349719],[113,-25,71,-0.5157407047227025],[113,-25,72,-0.5142517378553748],[113,-25,73,-0.5122488643974066],[113,-25,74,-0.5105016264133155],[113,-25,75,-0.5092914546839893],[113,-25,76,-0.5083487671799958],[113,-25,77,-0.5074529582634568],[113,-25,78,-0.5064700578805059],[113,-25,79,-0.5053090718574822],[113,-24,64,-0.5227295868098736],[113,-24,65,-0.520820114761591],[113,-24,66,-0.5193138187751174],[113,-24,67,-0.5183762442320585],[113,-24,68,-0.5178399458527565],[113,-24,69,-0.5172820575535297],[113,-24,70,-0.5166258318349719],[113,-24,71,-0.5157407047227025],[113,-24,72,-0.5142517378553748],[113,-24,73,-0.5122488643974066],[113,-24,74,-0.5105016264133155],[113,-24,75,-0.5092914546839893],[113,-24,76,-0.5083487671799958],[113,-24,77,-0.5074529582634568],[113,-24,78,-0.5064700578805059],[113,-24,79,-0.5053090718574822],[113,-23,64,-0.5227295868098736],[113,-23,65,-0.520820114761591],[113,-23,66,-0.5193138187751174],[113,-23,67,-0.5183762442320585],[113,-23,68,-0.5178399458527565],[113,-23,69,-0.5172820575535297],[113,-23,70,-0.5166258318349719],[113,-23,71,-0.5157407047227025],[113,-23,72,-0.5142517378553748],[113,-23,73,-0.5122488643974066],[113,-23,74,-0.5105016264133155],[113,-23,75,-0.5092914546839893],[113,-23,76,-0.5083487671799958],[113,-23,77,-0.5074529582634568],[113,-23,78,-0.5064700578805059],[113,-23,79,-0.5053090718574822],[113,-22,64,-0.5227295868098736],[113,-22,65,-0.520820114761591],[113,-22,66,-0.5193138187751174],[113,-22,67,-0.5183762442320585],[113,-22,68,-0.5178399458527565],[113,-22,69,-0.5172820575535297],[113,-22,70,-0.5166258318349719],[113,-22,71,-0.5157407047227025],[113,-22,72,-0.5142517378553748],[113,-22,73,-0.5122488643974066],[113,-22,74,-0.5105016264133155],[113,-22,75,-0.5092914546839893],[113,-22,76,-0.5083487671799958],[113,-22,77,-0.5074529582634568],[113,-22,78,-0.5064700578805059],[113,-22,79,-0.5053090718574822],[113,-21,64,-0.5227295868098736],[113,-21,65,-0.520820114761591],[113,-21,66,-0.5193138187751174],[113,-21,67,-0.5183762442320585],[113,-21,68,-0.5178399458527565],[113,-21,69,-0.5172820575535297],[113,-21,70,-0.5166258318349719],[113,-21,71,-0.5157407047227025],[113,-21,72,-0.5142517378553748],[113,-21,73,-0.5122488643974066],[113,-21,74,-0.5105016264133155],[113,-21,75,-0.5092914546839893],[113,-21,76,-0.5083487671799958],[113,-21,77,-0.5074529582634568],[113,-21,78,-0.5064700578805059],[113,-21,79,-0.5053090718574822],[113,-20,64,-0.5227295868098736],[113,-20,65,-0.520820114761591],[113,-20,66,-0.5193138187751174],[113,-20,67,-0.5183762442320585],[113,-20,68,-0.5178399458527565],[113,-20,69,-0.5172820575535297],[113,-20,70,-0.5166258318349719],[113,-20,71,-0.5157407047227025],[113,-20,72,-0.5142517378553748],[113,-20,73,-0.5122488643974066],[113,-20,74,-0.5105016264133155],[113,-20,75,-0.5092914546839893],[113,-20,76,-0.5083487671799958],[113,-20,77,-0.5074529582634568],[113,-20,78,-0.5064700578805059],[113,-20,79,-0.5053090718574822],[113,-19,64,-0.5227295868098736],[113,-19,65,-0.520820114761591],[113,-19,66,-0.5193138187751174],[113,-19,67,-0.5183762442320585],[113,-19,68,-0.5178399458527565],[113,-19,69,-0.5172820575535297],[113,-19,70,-0.5166258318349719],[113,-19,71,-0.5157407047227025],[113,-19,72,-0.5142517378553748],[113,-19,73,-0.5122488643974066],[113,-19,74,-0.5105016264133155],[113,-19,75,-0.5092914546839893],[113,-19,76,-0.5083487671799958],[113,-19,77,-0.5074529582634568],[113,-19,78,-0.5064700578805059],[113,-19,79,-0.5053090718574822],[113,-18,64,-0.5227295868098736],[113,-18,65,-0.520820114761591],[113,-18,66,-0.5193138187751174],[113,-18,67,-0.5183762442320585],[113,-18,68,-0.5178399458527565],[113,-18,69,-0.5172820575535297],[113,-18,70,-0.5166258318349719],[113,-18,71,-0.5157407047227025],[113,-18,72,-0.5142517378553748],[113,-18,73,-0.5122488643974066],[113,-18,74,-0.5105016264133155],[113,-18,75,-0.5092914546839893],[113,-18,76,-0.5083487671799958],[113,-18,77,-0.5074529582634568],[113,-18,78,-0.5064700578805059],[113,-18,79,-0.5053090718574822],[113,-17,64,-0.5227295868098736],[113,-17,65,-0.520820114761591],[113,-17,66,-0.5193138187751174],[113,-17,67,-0.5183762442320585],[113,-17,68,-0.5178399458527565],[113,-17,69,-0.5172820575535297],[113,-17,70,-0.5166258318349719],[113,-17,71,-0.5157407047227025],[113,-17,72,-0.5142517378553748],[113,-17,73,-0.5122488643974066],[113,-17,74,-0.5105016264133155],[113,-17,75,-0.5092914546839893],[113,-17,76,-0.5083487671799958],[113,-17,77,-0.5074529582634568],[113,-17,78,-0.5064700578805059],[113,-17,79,-0.5053090718574822],[113,-16,64,-0.5227295868098736],[113,-16,65,-0.520820114761591],[113,-16,66,-0.5193138187751174],[113,-16,67,-0.5183762442320585],[113,-16,68,-0.5178399458527565],[113,-16,69,-0.5172820575535297],[113,-16,70,-0.5166258318349719],[113,-16,71,-0.5157407047227025],[113,-16,72,-0.5142517378553748],[113,-16,73,-0.5122488643974066],[113,-16,74,-0.5105016264133155],[113,-16,75,-0.5092914546839893],[113,-16,76,-0.5083487671799958],[113,-16,77,-0.5074529582634568],[113,-16,78,-0.5064700578805059],[113,-16,79,-0.5053090718574822],[113,-15,64,-0.5227295868098736],[113,-15,65,-0.520820114761591],[113,-15,66,-0.5193138187751174],[113,-15,67,-0.5183762442320585],[113,-15,68,-0.5178399458527565],[113,-15,69,-0.5172820575535297],[113,-15,70,-0.5166258318349719],[113,-15,71,-0.5157407047227025],[113,-15,72,-0.5142517378553748],[113,-15,73,-0.5122488643974066],[113,-15,74,-0.5105016264133155],[113,-15,75,-0.5092914546839893],[113,-15,76,-0.5083487671799958],[113,-15,77,-0.5074529582634568],[113,-15,78,-0.5064700578805059],[113,-15,79,-0.5053090718574822],[113,-14,64,-0.5227295868098736],[113,-14,65,-0.520820114761591],[113,-14,66,-0.5193138187751174],[113,-14,67,-0.5183762442320585],[113,-14,68,-0.5178399458527565],[113,-14,69,-0.5172820575535297],[113,-14,70,-0.5166258318349719],[113,-14,71,-0.5157407047227025],[113,-14,72,-0.5142517378553748],[113,-14,73,-0.5122488643974066],[113,-14,74,-0.5105016264133155],[113,-14,75,-0.5092914546839893],[113,-14,76,-0.5083487671799958],[113,-14,77,-0.5074529582634568],[113,-14,78,-0.5064700578805059],[113,-14,79,-0.5053090718574822],[113,-13,64,-0.5227295868098736],[113,-13,65,-0.520820114761591],[113,-13,66,-0.5193138187751174],[113,-13,67,-0.5183762442320585],[113,-13,68,-0.5178399458527565],[113,-13,69,-0.5172820575535297],[113,-13,70,-0.5166258318349719],[113,-13,71,-0.5157407047227025],[113,-13,72,-0.5142517378553748],[113,-13,73,-0.5122488643974066],[113,-13,74,-0.5105016264133155],[113,-13,75,-0.5092914546839893],[113,-13,76,-0.5083487671799958],[113,-13,77,-0.5074529582634568],[113,-13,78,-0.5064700578805059],[113,-13,79,-0.5053090718574822],[113,-12,64,-0.5227295868098736],[113,-12,65,-0.520820114761591],[113,-12,66,-0.5193138187751174],[113,-12,67,-0.5183762442320585],[113,-12,68,-0.5178399458527565],[113,-12,69,-0.5172820575535297],[113,-12,70,-0.5166258318349719],[113,-12,71,-0.5157407047227025],[113,-12,72,-0.5142517378553748],[113,-12,73,-0.5122488643974066],[113,-12,74,-0.5105016264133155],[113,-12,75,-0.5092914546839893],[113,-12,76,-0.5083487671799958],[113,-12,77,-0.5074529582634568],[113,-12,78,-0.5064700578805059],[113,-12,79,-0.5053090718574822],[113,-11,64,-0.5227295868098736],[113,-11,65,-0.520820114761591],[113,-11,66,-0.5193138187751174],[113,-11,67,-0.5183762442320585],[113,-11,68,-0.5178399458527565],[113,-11,69,-0.5172820575535297],[113,-11,70,-0.5166258318349719],[113,-11,71,-0.5157407047227025],[113,-11,72,-0.5142517378553748],[113,-11,73,-0.5122488643974066],[113,-11,74,-0.5105016264133155],[113,-11,75,-0.5092914546839893],[113,-11,76,-0.5083487671799958],[113,-11,77,-0.5074529582634568],[113,-11,78,-0.5064700578805059],[113,-11,79,-0.5053090718574822],[113,-10,64,-0.5227295868098736],[113,-10,65,-0.520820114761591],[113,-10,66,-0.5193138187751174],[113,-10,67,-0.5183762442320585],[113,-10,68,-0.5178399458527565],[113,-10,69,-0.5172820575535297],[113,-10,70,-0.5166258318349719],[113,-10,71,-0.5157407047227025],[113,-10,72,-0.5142517378553748],[113,-10,73,-0.5122488643974066],[113,-10,74,-0.5105016264133155],[113,-10,75,-0.5092914546839893],[113,-10,76,-0.5083487671799958],[113,-10,77,-0.5074529582634568],[113,-10,78,-0.5064700578805059],[113,-10,79,-0.5053090718574822],[113,-9,64,-0.5227295868098736],[113,-9,65,-0.520820114761591],[113,-9,66,-0.5193138187751174],[113,-9,67,-0.5183762442320585],[113,-9,68,-0.5178399458527565],[113,-9,69,-0.5172820575535297],[113,-9,70,-0.5166258318349719],[113,-9,71,-0.5157407047227025],[113,-9,72,-0.5142517378553748],[113,-9,73,-0.5122488643974066],[113,-9,74,-0.5105016264133155],[113,-9,75,-0.5092914546839893],[113,-9,76,-0.5083487671799958],[113,-9,77,-0.5074529582634568],[113,-9,78,-0.5064700578805059],[113,-9,79,-0.5053090718574822],[113,-8,64,-0.5227295868098736],[113,-8,65,-0.520820114761591],[113,-8,66,-0.5193138187751174],[113,-8,67,-0.5183762442320585],[113,-8,68,-0.5178399458527565],[113,-8,69,-0.5172820575535297],[113,-8,70,-0.5166258318349719],[113,-8,71,-0.5157407047227025],[113,-8,72,-0.5142517378553748],[113,-8,73,-0.5122488643974066],[113,-8,74,-0.5105016264133155],[113,-8,75,-0.5092914546839893],[113,-8,76,-0.5083487671799958],[113,-8,77,-0.5074529582634568],[113,-8,78,-0.5064700578805059],[113,-8,79,-0.5053090718574822],[113,-7,64,-0.5227295868098736],[113,-7,65,-0.520820114761591],[113,-7,66,-0.5193138187751174],[113,-7,67,-0.5183762442320585],[113,-7,68,-0.5178399458527565],[113,-7,69,-0.5172820575535297],[113,-7,70,-0.5166258318349719],[113,-7,71,-0.5157407047227025],[113,-7,72,-0.5142517378553748],[113,-7,73,-0.5122488643974066],[113,-7,74,-0.5105016264133155],[113,-7,75,-0.5092914546839893],[113,-7,76,-0.5083487671799958],[113,-7,77,-0.5074529582634568],[113,-7,78,-0.5064700578805059],[113,-7,79,-0.5053090718574822],[113,-6,64,-0.5227295868098736],[113,-6,65,-0.520820114761591],[113,-6,66,-0.5193138187751174],[113,-6,67,-0.5183762442320585],[113,-6,68,-0.5178399458527565],[113,-6,69,-0.5172820575535297],[113,-6,70,-0.5166258318349719],[113,-6,71,-0.5157407047227025],[113,-6,72,-0.5142517378553748],[113,-6,73,-0.5122488643974066],[113,-6,74,-0.5105016264133155],[113,-6,75,-0.5092914546839893],[113,-6,76,-0.5083487671799958],[113,-6,77,-0.5074529582634568],[113,-6,78,-0.5064700578805059],[113,-6,79,-0.5053090718574822],[113,-5,64,-0.5227295868098736],[113,-5,65,-0.520820114761591],[113,-5,66,-0.5193138187751174],[113,-5,67,-0.5183762442320585],[113,-5,68,-0.5178399458527565],[113,-5,69,-0.5172820575535297],[113,-5,70,-0.5166258318349719],[113,-5,71,-0.5157407047227025],[113,-5,72,-0.5142517378553748],[113,-5,73,-0.5122488643974066],[113,-5,74,-0.5105016264133155],[113,-5,75,-0.5092914546839893],[113,-5,76,-0.5083487671799958],[113,-5,77,-0.5074529582634568],[113,-5,78,-0.5064700578805059],[113,-5,79,-0.5053090718574822],[113,-4,64,-0.5227295868098736],[113,-4,65,-0.520820114761591],[113,-4,66,-0.5193138187751174],[113,-4,67,-0.5183762442320585],[113,-4,68,-0.5178399458527565],[113,-4,69,-0.5172820575535297],[113,-4,70,-0.5166258318349719],[113,-4,71,-0.5157407047227025],[113,-4,72,-0.5142517378553748],[113,-4,73,-0.5122488643974066],[113,-4,74,-0.5105016264133155],[113,-4,75,-0.5092914546839893],[113,-4,76,-0.5083487671799958],[113,-4,77,-0.5074529582634568],[113,-4,78,-0.5064700578805059],[113,-4,79,-0.5053090718574822],[113,-3,64,-0.5227295868098736],[113,-3,65,-0.520820114761591],[113,-3,66,-0.5193138187751174],[113,-3,67,-0.5183762442320585],[113,-3,68,-0.5178399458527565],[113,-3,69,-0.5172820575535297],[113,-3,70,-0.5166258318349719],[113,-3,71,-0.5157407047227025],[113,-3,72,-0.5142517378553748],[113,-3,73,-0.5122488643974066],[113,-3,74,-0.5105016264133155],[113,-3,75,-0.5092914546839893],[113,-3,76,-0.5083487671799958],[113,-3,77,-0.5074529582634568],[113,-3,78,-0.5064700578805059],[113,-3,79,-0.5053090718574822],[113,-2,64,-0.5227295868098736],[113,-2,65,-0.520820114761591],[113,-2,66,-0.5193138187751174],[113,-2,67,-0.5183762442320585],[113,-2,68,-0.5178399458527565],[113,-2,69,-0.5172820575535297],[113,-2,70,-0.5166258318349719],[113,-2,71,-0.5157407047227025],[113,-2,72,-0.5142517378553748],[113,-2,73,-0.5122488643974066],[113,-2,74,-0.5105016264133155],[113,-2,75,-0.5092914546839893],[113,-2,76,-0.5083487671799958],[113,-2,77,-0.5074529582634568],[113,-2,78,-0.5064700578805059],[113,-2,79,-0.5053090718574822],[113,-1,64,-0.5227295868098736],[113,-1,65,-0.520820114761591],[113,-1,66,-0.5193138187751174],[113,-1,67,-0.5183762442320585],[113,-1,68,-0.5178399458527565],[113,-1,69,-0.5172820575535297],[113,-1,70,-0.5166258318349719],[113,-1,71,-0.5157407047227025],[113,-1,72,-0.5142517378553748],[113,-1,73,-0.5122488643974066],[113,-1,74,-0.5105016264133155],[113,-1,75,-0.5092914546839893],[113,-1,76,-0.5083487671799958],[113,-1,77,-0.5074529582634568],[113,-1,78,-0.5064700578805059],[113,-1,79,-0.5053090718574822],[113,0,64,-0.5227295868098736],[113,0,65,-0.520820114761591],[113,0,66,-0.5193138187751174],[113,0,67,-0.5183762442320585],[113,0,68,-0.5178399458527565],[113,0,69,-0.5172820575535297],[113,0,70,-0.5166258318349719],[113,0,71,-0.5157407047227025],[113,0,72,-0.5142517378553748],[113,0,73,-0.5122488643974066],[113,0,74,-0.5105016264133155],[113,0,75,-0.5092914546839893],[113,0,76,-0.5083487671799958],[113,0,77,-0.5074529582634568],[113,0,78,-0.5064700578805059],[113,0,79,-0.5053090718574822],[113,1,64,-0.5227295868098736],[113,1,65,-0.520820114761591],[113,1,66,-0.5193138187751174],[113,1,67,-0.5183762442320585],[113,1,68,-0.5178399458527565],[113,1,69,-0.5172820575535297],[113,1,70,-0.5166258318349719],[113,1,71,-0.5157407047227025],[113,1,72,-0.5142517378553748],[113,1,73,-0.5122488643974066],[113,1,74,-0.5105016264133155],[113,1,75,-0.5092914546839893],[113,1,76,-0.5083487671799958],[113,1,77,-0.5074529582634568],[113,1,78,-0.5064700578805059],[113,1,79,-0.5053090718574822],[113,2,64,-0.5227295868098736],[113,2,65,-0.520820114761591],[113,2,66,-0.5193138187751174],[113,2,67,-0.5183762442320585],[113,2,68,-0.5178399458527565],[113,2,69,-0.5172820575535297],[113,2,70,-0.5166258318349719],[113,2,71,-0.5157407047227025],[113,2,72,-0.5142517378553748],[113,2,73,-0.5122488643974066],[113,2,74,-0.5105016264133155],[113,2,75,-0.5092914546839893],[113,2,76,-0.5083487671799958],[113,2,77,-0.5074529582634568],[113,2,78,-0.5064700578805059],[113,2,79,-0.5053090718574822],[113,3,64,-0.5227295868098736],[113,3,65,-0.520820114761591],[113,3,66,-0.5193138187751174],[113,3,67,-0.5183762442320585],[113,3,68,-0.5178399458527565],[113,3,69,-0.5172820575535297],[113,3,70,-0.5166258318349719],[113,3,71,-0.5157407047227025],[113,3,72,-0.5142517378553748],[113,3,73,-0.5122488643974066],[113,3,74,-0.5105016264133155],[113,3,75,-0.5092914546839893],[113,3,76,-0.5083487671799958],[113,3,77,-0.5074529582634568],[113,3,78,-0.5064700578805059],[113,3,79,-0.5053090718574822],[113,4,64,-0.5227295868098736],[113,4,65,-0.520820114761591],[113,4,66,-0.5193138187751174],[113,4,67,-0.5183762442320585],[113,4,68,-0.5178399458527565],[113,4,69,-0.5172820575535297],[113,4,70,-0.5166258318349719],[113,4,71,-0.5157407047227025],[113,4,72,-0.5142517378553748],[113,4,73,-0.5122488643974066],[113,4,74,-0.5105016264133155],[113,4,75,-0.5092914546839893],[113,4,76,-0.5083487671799958],[113,4,77,-0.5074529582634568],[113,4,78,-0.5064700578805059],[113,4,79,-0.5053090718574822],[113,5,64,-0.5227295868098736],[113,5,65,-0.520820114761591],[113,5,66,-0.5193138187751174],[113,5,67,-0.5183762442320585],[113,5,68,-0.5178399458527565],[113,5,69,-0.5172820575535297],[113,5,70,-0.5166258318349719],[113,5,71,-0.5157407047227025],[113,5,72,-0.5142517378553748],[113,5,73,-0.5122488643974066],[113,5,74,-0.5105016264133155],[113,5,75,-0.5092914546839893],[113,5,76,-0.5083487671799958],[113,5,77,-0.5074529582634568],[113,5,78,-0.5064700578805059],[113,5,79,-0.5053090718574822],[113,6,64,-0.5227295868098736],[113,6,65,-0.520820114761591],[113,6,66,-0.5193138187751174],[113,6,67,-0.5183762442320585],[113,6,68,-0.5178399458527565],[113,6,69,-0.5172820575535297],[113,6,70,-0.5166258318349719],[113,6,71,-0.5157407047227025],[113,6,72,-0.5142517378553748],[113,6,73,-0.5122488643974066],[113,6,74,-0.5105016264133155],[113,6,75,-0.5092914546839893],[113,6,76,-0.5083487671799958],[113,6,77,-0.5074529582634568],[113,6,78,-0.5064700578805059],[113,6,79,-0.5053090718574822],[113,7,64,-0.5227295868098736],[113,7,65,-0.520820114761591],[113,7,66,-0.5193138187751174],[113,7,67,-0.5183762442320585],[113,7,68,-0.5178399458527565],[113,7,69,-0.5172820575535297],[113,7,70,-0.5166258318349719],[113,7,71,-0.5157407047227025],[113,7,72,-0.5142517378553748],[113,7,73,-0.5122488643974066],[113,7,74,-0.5105016264133155],[113,7,75,-0.5092914546839893],[113,7,76,-0.5083487671799958],[113,7,77,-0.5074529582634568],[113,7,78,-0.5064700578805059],[113,7,79,-0.5053090718574822],[113,8,64,-0.5227295868098736],[113,8,65,-0.520820114761591],[113,8,66,-0.5193138187751174],[113,8,67,-0.5183762442320585],[113,8,68,-0.5178399458527565],[113,8,69,-0.5172820575535297],[113,8,70,-0.5166258318349719],[113,8,71,-0.5157407047227025],[113,8,72,-0.5142517378553748],[113,8,73,-0.5122488643974066],[113,8,74,-0.5105016264133155],[113,8,75,-0.5092914546839893],[113,8,76,-0.5083487671799958],[113,8,77,-0.5074529582634568],[113,8,78,-0.5064700578805059],[113,8,79,-0.5053090718574822],[113,9,64,-0.5227295868098736],[113,9,65,-0.520820114761591],[113,9,66,-0.5193138187751174],[113,9,67,-0.5183762442320585],[113,9,68,-0.5178399458527565],[113,9,69,-0.5172820575535297],[113,9,70,-0.5166258318349719],[113,9,71,-0.5157407047227025],[113,9,72,-0.5142517378553748],[113,9,73,-0.5122488643974066],[113,9,74,-0.5105016264133155],[113,9,75,-0.5092914546839893],[113,9,76,-0.5083487671799958],[113,9,77,-0.5074529582634568],[113,9,78,-0.5064700578805059],[113,9,79,-0.5053090718574822],[113,10,64,-0.5227295868098736],[113,10,65,-0.520820114761591],[113,10,66,-0.5193138187751174],[113,10,67,-0.5183762442320585],[113,10,68,-0.5178399458527565],[113,10,69,-0.5172820575535297],[113,10,70,-0.5166258318349719],[113,10,71,-0.5157407047227025],[113,10,72,-0.5142517378553748],[113,10,73,-0.5122488643974066],[113,10,74,-0.5105016264133155],[113,10,75,-0.5092914546839893],[113,10,76,-0.5083487671799958],[113,10,77,-0.5074529582634568],[113,10,78,-0.5064700578805059],[113,10,79,-0.5053090718574822],[113,11,64,-0.5227295868098736],[113,11,65,-0.520820114761591],[113,11,66,-0.5193138187751174],[113,11,67,-0.5183762442320585],[113,11,68,-0.5178399458527565],[113,11,69,-0.5172820575535297],[113,11,70,-0.5166258318349719],[113,11,71,-0.5157407047227025],[113,11,72,-0.5142517378553748],[113,11,73,-0.5122488643974066],[113,11,74,-0.5105016264133155],[113,11,75,-0.5092914546839893],[113,11,76,-0.5083487671799958],[113,11,77,-0.5074529582634568],[113,11,78,-0.5064700578805059],[113,11,79,-0.5053090718574822],[113,12,64,-0.5227295868098736],[113,12,65,-0.520820114761591],[113,12,66,-0.5193138187751174],[113,12,67,-0.5183762442320585],[113,12,68,-0.5178399458527565],[113,12,69,-0.5172820575535297],[113,12,70,-0.5166258318349719],[113,12,71,-0.5157407047227025],[113,12,72,-0.5142517378553748],[113,12,73,-0.5122488643974066],[113,12,74,-0.5105016264133155],[113,12,75,-0.5092914546839893],[113,12,76,-0.5083487671799958],[113,12,77,-0.5074529582634568],[113,12,78,-0.5064700578805059],[113,12,79,-0.5053090718574822],[113,13,64,-0.5227295868098736],[113,13,65,-0.520820114761591],[113,13,66,-0.5193138187751174],[113,13,67,-0.5183762442320585],[113,13,68,-0.5178399458527565],[113,13,69,-0.5172820575535297],[113,13,70,-0.5166258318349719],[113,13,71,-0.5157407047227025],[113,13,72,-0.5142517378553748],[113,13,73,-0.5122488643974066],[113,13,74,-0.5105016264133155],[113,13,75,-0.5092914546839893],[113,13,76,-0.5083487671799958],[113,13,77,-0.5074529582634568],[113,13,78,-0.5064700578805059],[113,13,79,-0.5053090718574822],[113,14,64,-0.5227295868098736],[113,14,65,-0.520820114761591],[113,14,66,-0.5193138187751174],[113,14,67,-0.5183762442320585],[113,14,68,-0.5178399458527565],[113,14,69,-0.5172820575535297],[113,14,70,-0.5166258318349719],[113,14,71,-0.5157407047227025],[113,14,72,-0.5142517378553748],[113,14,73,-0.5122488643974066],[113,14,74,-0.5105016264133155],[113,14,75,-0.5092914546839893],[113,14,76,-0.5083487671799958],[113,14,77,-0.5074529582634568],[113,14,78,-0.5064700578805059],[113,14,79,-0.5053090718574822],[113,15,64,-0.5227295868098736],[113,15,65,-0.520820114761591],[113,15,66,-0.5193138187751174],[113,15,67,-0.5183762442320585],[113,15,68,-0.5178399458527565],[113,15,69,-0.5172820575535297],[113,15,70,-0.5166258318349719],[113,15,71,-0.5157407047227025],[113,15,72,-0.5142517378553748],[113,15,73,-0.5122488643974066],[113,15,74,-0.5105016264133155],[113,15,75,-0.5092914546839893],[113,15,76,-0.5083487671799958],[113,15,77,-0.5074529582634568],[113,15,78,-0.5064700578805059],[113,15,79,-0.5053090718574822],[113,16,64,-0.5227295868098736],[113,16,65,-0.520820114761591],[113,16,66,-0.5193138187751174],[113,16,67,-0.5183762442320585],[113,16,68,-0.5178399458527565],[113,16,69,-0.5172820575535297],[113,16,70,-0.5166258318349719],[113,16,71,-0.5157407047227025],[113,16,72,-0.5142517378553748],[113,16,73,-0.5122488643974066],[113,16,74,-0.5105016264133155],[113,16,75,-0.5092914546839893],[113,16,76,-0.5083487671799958],[113,16,77,-0.5074529582634568],[113,16,78,-0.5064700578805059],[113,16,79,-0.5053090718574822],[113,17,64,-0.5227295868098736],[113,17,65,-0.520820114761591],[113,17,66,-0.5193138187751174],[113,17,67,-0.5183762442320585],[113,17,68,-0.5178399458527565],[113,17,69,-0.5172820575535297],[113,17,70,-0.5166258318349719],[113,17,71,-0.5157407047227025],[113,17,72,-0.5142517378553748],[113,17,73,-0.5122488643974066],[113,17,74,-0.5105016264133155],[113,17,75,-0.5092914546839893],[113,17,76,-0.5083487671799958],[113,17,77,-0.5074529582634568],[113,17,78,-0.5064700578805059],[113,17,79,-0.5053090718574822],[113,18,64,-0.5227295868098736],[113,18,65,-0.520820114761591],[113,18,66,-0.5193138187751174],[113,18,67,-0.5183762442320585],[113,18,68,-0.5178399458527565],[113,18,69,-0.5172820575535297],[113,18,70,-0.5166258318349719],[113,18,71,-0.5157407047227025],[113,18,72,-0.5142517378553748],[113,18,73,-0.5122488643974066],[113,18,74,-0.5105016264133155],[113,18,75,-0.5092914546839893],[113,18,76,-0.5083487671799958],[113,18,77,-0.5074529582634568],[113,18,78,-0.5064700578805059],[113,18,79,-0.5053090718574822],[113,19,64,-0.5227295868098736],[113,19,65,-0.520820114761591],[113,19,66,-0.5193138187751174],[113,19,67,-0.5183762442320585],[113,19,68,-0.5178399458527565],[113,19,69,-0.5172820575535297],[113,19,70,-0.5166258318349719],[113,19,71,-0.5157407047227025],[113,19,72,-0.5142517378553748],[113,19,73,-0.5122488643974066],[113,19,74,-0.5105016264133155],[113,19,75,-0.5092914546839893],[113,19,76,-0.5083487671799958],[113,19,77,-0.5074529582634568],[113,19,78,-0.5064700578805059],[113,19,79,-0.5053090718574822],[113,20,64,-0.5227295868098736],[113,20,65,-0.520820114761591],[113,20,66,-0.5193138187751174],[113,20,67,-0.5183762442320585],[113,20,68,-0.5178399458527565],[113,20,69,-0.5172820575535297],[113,20,70,-0.5166258318349719],[113,20,71,-0.5157407047227025],[113,20,72,-0.5142517378553748],[113,20,73,-0.5122488643974066],[113,20,74,-0.5105016264133155],[113,20,75,-0.5092914546839893],[113,20,76,-0.5083487671799958],[113,20,77,-0.5074529582634568],[113,20,78,-0.5064700578805059],[113,20,79,-0.5053090718574822],[113,21,64,-0.5227295868098736],[113,21,65,-0.520820114761591],[113,21,66,-0.5193138187751174],[113,21,67,-0.5183762442320585],[113,21,68,-0.5178399458527565],[113,21,69,-0.5172820575535297],[113,21,70,-0.5166258318349719],[113,21,71,-0.5157407047227025],[113,21,72,-0.5142517378553748],[113,21,73,-0.5122488643974066],[113,21,74,-0.5105016264133155],[113,21,75,-0.5092914546839893],[113,21,76,-0.5083487671799958],[113,21,77,-0.5074529582634568],[113,21,78,-0.5064700578805059],[113,21,79,-0.5053090718574822],[113,22,64,-0.5227295868098736],[113,22,65,-0.520820114761591],[113,22,66,-0.5193138187751174],[113,22,67,-0.5183762442320585],[113,22,68,-0.5178399458527565],[113,22,69,-0.5172820575535297],[113,22,70,-0.5166258318349719],[113,22,71,-0.5157407047227025],[113,22,72,-0.5142517378553748],[113,22,73,-0.5122488643974066],[113,22,74,-0.5105016264133155],[113,22,75,-0.5092914546839893],[113,22,76,-0.5083487671799958],[113,22,77,-0.5074529582634568],[113,22,78,-0.5064700578805059],[113,22,79,-0.5053090718574822],[113,23,64,-0.5227295868098736],[113,23,65,-0.520820114761591],[113,23,66,-0.5193138187751174],[113,23,67,-0.5183762442320585],[113,23,68,-0.5178399458527565],[113,23,69,-0.5172820575535297],[113,23,70,-0.5166258318349719],[113,23,71,-0.5157407047227025],[113,23,72,-0.5142517378553748],[113,23,73,-0.5122488643974066],[113,23,74,-0.5105016264133155],[113,23,75,-0.5092914546839893],[113,23,76,-0.5083487671799958],[113,23,77,-0.5074529582634568],[113,23,78,-0.5064700578805059],[113,23,79,-0.5053090718574822],[113,24,64,-0.5227295868098736],[113,24,65,-0.520820114761591],[113,24,66,-0.5193138187751174],[113,24,67,-0.5183762442320585],[113,24,68,-0.5178399458527565],[113,24,69,-0.5172820575535297],[113,24,70,-0.5166258318349719],[113,24,71,-0.5157407047227025],[113,24,72,-0.5142517378553748],[113,24,73,-0.5122488643974066],[113,24,74,-0.5105016264133155],[113,24,75,-0.5092914546839893],[113,24,76,-0.5083487671799958],[113,24,77,-0.5074529582634568],[113,24,78,-0.5064700578805059],[113,24,79,-0.5053090718574822],[113,25,64,-0.5227295868098736],[113,25,65,-0.520820114761591],[113,25,66,-0.5193138187751174],[113,25,67,-0.5183762442320585],[113,25,68,-0.5178399458527565],[113,25,69,-0.5172820575535297],[113,25,70,-0.5166258318349719],[113,25,71,-0.5157407047227025],[113,25,72,-0.5142517378553748],[113,25,73,-0.5122488643974066],[113,25,74,-0.5105016264133155],[113,25,75,-0.5092914546839893],[113,25,76,-0.5083487671799958],[113,25,77,-0.5074529582634568],[113,25,78,-0.5064700578805059],[113,25,79,-0.5053090718574822],[113,26,64,-0.5227295868098736],[113,26,65,-0.520820114761591],[113,26,66,-0.5193138187751174],[113,26,67,-0.5183762442320585],[113,26,68,-0.5178399458527565],[113,26,69,-0.5172820575535297],[113,26,70,-0.5166258318349719],[113,26,71,-0.5157407047227025],[113,26,72,-0.5142517378553748],[113,26,73,-0.5122488643974066],[113,26,74,-0.5105016264133155],[113,26,75,-0.5092914546839893],[113,26,76,-0.5083487671799958],[113,26,77,-0.5074529582634568],[113,26,78,-0.5064700578805059],[113,26,79,-0.5053090718574822],[113,27,64,-0.5227295868098736],[113,27,65,-0.520820114761591],[113,27,66,-0.5193138187751174],[113,27,67,-0.5183762442320585],[113,27,68,-0.5178399458527565],[113,27,69,-0.5172820575535297],[113,27,70,-0.5166258318349719],[113,27,71,-0.5157407047227025],[113,27,72,-0.5142517378553748],[113,27,73,-0.5122488643974066],[113,27,74,-0.5105016264133155],[113,27,75,-0.5092914546839893],[113,27,76,-0.5083487671799958],[113,27,77,-0.5074529582634568],[113,27,78,-0.5064700578805059],[113,27,79,-0.5053090718574822],[113,28,64,-0.5227295868098736],[113,28,65,-0.520820114761591],[113,28,66,-0.5193138187751174],[113,28,67,-0.5183762442320585],[113,28,68,-0.5178399458527565],[113,28,69,-0.5172820575535297],[113,28,70,-0.5166258318349719],[113,28,71,-0.5157407047227025],[113,28,72,-0.5142517378553748],[113,28,73,-0.5122488643974066],[113,28,74,-0.5105016264133155],[113,28,75,-0.5092914546839893],[113,28,76,-0.5083487671799958],[113,28,77,-0.5074529582634568],[113,28,78,-0.5064700578805059],[113,28,79,-0.5053090718574822],[113,29,64,-0.5227295868098736],[113,29,65,-0.520820114761591],[113,29,66,-0.5193138187751174],[113,29,67,-0.5183762442320585],[113,29,68,-0.5178399458527565],[113,29,69,-0.5172820575535297],[113,29,70,-0.5166258318349719],[113,29,71,-0.5157407047227025],[113,29,72,-0.5142517378553748],[113,29,73,-0.5122488643974066],[113,29,74,-0.5105016264133155],[113,29,75,-0.5092914546839893],[113,29,76,-0.5083487671799958],[113,29,77,-0.5074529582634568],[113,29,78,-0.5064700578805059],[113,29,79,-0.5053090718574822],[113,30,64,-0.5227295868098736],[113,30,65,-0.520820114761591],[113,30,66,-0.5193138187751174],[113,30,67,-0.5183762442320585],[113,30,68,-0.5178399458527565],[113,30,69,-0.5172820575535297],[113,30,70,-0.5166258318349719],[113,30,71,-0.5157407047227025],[113,30,72,-0.5142517378553748],[113,30,73,-0.5122488643974066],[113,30,74,-0.5105016264133155],[113,30,75,-0.5092914546839893],[113,30,76,-0.5083487671799958],[113,30,77,-0.5074529582634568],[113,30,78,-0.5064700578805059],[113,30,79,-0.5053090718574822],[113,31,64,-0.5227295868098736],[113,31,65,-0.520820114761591],[113,31,66,-0.5193138187751174],[113,31,67,-0.5183762442320585],[113,31,68,-0.5178399458527565],[113,31,69,-0.5172820575535297],[113,31,70,-0.5166258318349719],[113,31,71,-0.5157407047227025],[113,31,72,-0.5142517378553748],[113,31,73,-0.5122488643974066],[113,31,74,-0.5105016264133155],[113,31,75,-0.5092914546839893],[113,31,76,-0.5083487671799958],[113,31,77,-0.5074529582634568],[113,31,78,-0.5064700578805059],[113,31,79,-0.5053090718574822],[113,32,64,-0.5227295868098736],[113,32,65,-0.520820114761591],[113,32,66,-0.5193138187751174],[113,32,67,-0.5183762442320585],[113,32,68,-0.5178399458527565],[113,32,69,-0.5172820575535297],[113,32,70,-0.5166258318349719],[113,32,71,-0.5157407047227025],[113,32,72,-0.5142517378553748],[113,32,73,-0.5122488643974066],[113,32,74,-0.5105016264133155],[113,32,75,-0.5092914546839893],[113,32,76,-0.5083487671799958],[113,32,77,-0.5074529582634568],[113,32,78,-0.5064700578805059],[113,32,79,-0.5053090718574822],[113,33,64,-0.5227295868098736],[113,33,65,-0.520820114761591],[113,33,66,-0.5193138187751174],[113,33,67,-0.5183762442320585],[113,33,68,-0.5178399458527565],[113,33,69,-0.5172820575535297],[113,33,70,-0.5166258318349719],[113,33,71,-0.5157407047227025],[113,33,72,-0.5142517378553748],[113,33,73,-0.5122488643974066],[113,33,74,-0.5105016264133155],[113,33,75,-0.5092914546839893],[113,33,76,-0.5083487671799958],[113,33,77,-0.5074529582634568],[113,33,78,-0.5064700578805059],[113,33,79,-0.5053090718574822],[113,34,64,-0.5227295868098736],[113,34,65,-0.520820114761591],[113,34,66,-0.5193138187751174],[113,34,67,-0.5183762442320585],[113,34,68,-0.5178399458527565],[113,34,69,-0.5172820575535297],[113,34,70,-0.5166258318349719],[113,34,71,-0.5157407047227025],[113,34,72,-0.5142517378553748],[113,34,73,-0.5122488643974066],[113,34,74,-0.5105016264133155],[113,34,75,-0.5092914546839893],[113,34,76,-0.5083487671799958],[113,34,77,-0.5074529582634568],[113,34,78,-0.5064700578805059],[113,34,79,-0.5053090718574822],[113,35,64,-0.5227295868098736],[113,35,65,-0.520820114761591],[113,35,66,-0.5193138187751174],[113,35,67,-0.5183762442320585],[113,35,68,-0.5178399458527565],[113,35,69,-0.5172820575535297],[113,35,70,-0.5166258318349719],[113,35,71,-0.5157407047227025],[113,35,72,-0.5142517378553748],[113,35,73,-0.5122488643974066],[113,35,74,-0.5105016264133155],[113,35,75,-0.5092914546839893],[113,35,76,-0.5083487671799958],[113,35,77,-0.5074529582634568],[113,35,78,-0.5064700578805059],[113,35,79,-0.5053090718574822],[113,36,64,-0.5227295868098736],[113,36,65,-0.520820114761591],[113,36,66,-0.5193138187751174],[113,36,67,-0.5183762442320585],[113,36,68,-0.5178399458527565],[113,36,69,-0.5172820575535297],[113,36,70,-0.5166258318349719],[113,36,71,-0.5157407047227025],[113,36,72,-0.5142517378553748],[113,36,73,-0.5122488643974066],[113,36,74,-0.5105016264133155],[113,36,75,-0.5092914546839893],[113,36,76,-0.5083487671799958],[113,36,77,-0.5074529582634568],[113,36,78,-0.5064700578805059],[113,36,79,-0.5053090718574822],[113,37,64,-0.5227295868098736],[113,37,65,-0.520820114761591],[113,37,66,-0.5193138187751174],[113,37,67,-0.5183762442320585],[113,37,68,-0.5178399458527565],[113,37,69,-0.5172820575535297],[113,37,70,-0.5166258318349719],[113,37,71,-0.5157407047227025],[113,37,72,-0.5142517378553748],[113,37,73,-0.5122488643974066],[113,37,74,-0.5105016264133155],[113,37,75,-0.5092914546839893],[113,37,76,-0.5083487671799958],[113,37,77,-0.5074529582634568],[113,37,78,-0.5064700578805059],[113,37,79,-0.5053090718574822],[113,38,64,-0.5227295868098736],[113,38,65,-0.520820114761591],[113,38,66,-0.5193138187751174],[113,38,67,-0.5183762442320585],[113,38,68,-0.5178399458527565],[113,38,69,-0.5172820575535297],[113,38,70,-0.5166258318349719],[113,38,71,-0.5157407047227025],[113,38,72,-0.5142517378553748],[113,38,73,-0.5122488643974066],[113,38,74,-0.5105016264133155],[113,38,75,-0.5092914546839893],[113,38,76,-0.5083487671799958],[113,38,77,-0.5074529582634568],[113,38,78,-0.5064700578805059],[113,38,79,-0.5053090718574822],[113,39,64,-0.5227295868098736],[113,39,65,-0.520820114761591],[113,39,66,-0.5193138187751174],[113,39,67,-0.5183762442320585],[113,39,68,-0.5178399458527565],[113,39,69,-0.5172820575535297],[113,39,70,-0.5166258318349719],[113,39,71,-0.5157407047227025],[113,39,72,-0.5142517378553748],[113,39,73,-0.5122488643974066],[113,39,74,-0.5105016264133155],[113,39,75,-0.5092914546839893],[113,39,76,-0.5083487671799958],[113,39,77,-0.5074529582634568],[113,39,78,-0.5064700578805059],[113,39,79,-0.5053090718574822],[113,40,64,-0.5227295868098736],[113,40,65,-0.520820114761591],[113,40,66,-0.5193138187751174],[113,40,67,-0.5183762442320585],[113,40,68,-0.5178399458527565],[113,40,69,-0.5172820575535297],[113,40,70,-0.5166258318349719],[113,40,71,-0.5157407047227025],[113,40,72,-0.5142517378553748],[113,40,73,-0.5122488643974066],[113,40,74,-0.5105016264133155],[113,40,75,-0.5092914546839893],[113,40,76,-0.5083487671799958],[113,40,77,-0.5074529582634568],[113,40,78,-0.5064700578805059],[113,40,79,-0.5053090718574822],[113,41,64,-0.5227295868098736],[113,41,65,-0.520820114761591],[113,41,66,-0.5193138187751174],[113,41,67,-0.5183762442320585],[113,41,68,-0.5178399458527565],[113,41,69,-0.5172820575535297],[113,41,70,-0.5166258318349719],[113,41,71,-0.5157407047227025],[113,41,72,-0.5142517378553748],[113,41,73,-0.5122488643974066],[113,41,74,-0.5105016264133155],[113,41,75,-0.5092914546839893],[113,41,76,-0.5083487671799958],[113,41,77,-0.5074529582634568],[113,41,78,-0.5064700578805059],[113,41,79,-0.5053090718574822],[113,42,64,-0.5227295868098736],[113,42,65,-0.520820114761591],[113,42,66,-0.5193138187751174],[113,42,67,-0.5183762442320585],[113,42,68,-0.5178399458527565],[113,42,69,-0.5172820575535297],[113,42,70,-0.5166258318349719],[113,42,71,-0.5157407047227025],[113,42,72,-0.5142517378553748],[113,42,73,-0.5122488643974066],[113,42,74,-0.5105016264133155],[113,42,75,-0.5092914546839893],[113,42,76,-0.5083487671799958],[113,42,77,-0.5074529582634568],[113,42,78,-0.5064700578805059],[113,42,79,-0.5053090718574822],[113,43,64,-0.5227295868098736],[113,43,65,-0.520820114761591],[113,43,66,-0.5193138187751174],[113,43,67,-0.5183762442320585],[113,43,68,-0.5178399458527565],[113,43,69,-0.5172820575535297],[113,43,70,-0.5166258318349719],[113,43,71,-0.5157407047227025],[113,43,72,-0.5142517378553748],[113,43,73,-0.5122488643974066],[113,43,74,-0.5105016264133155],[113,43,75,-0.5092914546839893],[113,43,76,-0.5083487671799958],[113,43,77,-0.5074529582634568],[113,43,78,-0.5064700578805059],[113,43,79,-0.5053090718574822],[113,44,64,-0.5227295868098736],[113,44,65,-0.520820114761591],[113,44,66,-0.5193138187751174],[113,44,67,-0.5183762442320585],[113,44,68,-0.5178399458527565],[113,44,69,-0.5172820575535297],[113,44,70,-0.5166258318349719],[113,44,71,-0.5157407047227025],[113,44,72,-0.5142517378553748],[113,44,73,-0.5122488643974066],[113,44,74,-0.5105016264133155],[113,44,75,-0.5092914546839893],[113,44,76,-0.5083487671799958],[113,44,77,-0.5074529582634568],[113,44,78,-0.5064700578805059],[113,44,79,-0.5053090718574822],[113,45,64,-0.5227295868098736],[113,45,65,-0.520820114761591],[113,45,66,-0.5193138187751174],[113,45,67,-0.5183762442320585],[113,45,68,-0.5178399458527565],[113,45,69,-0.5172820575535297],[113,45,70,-0.5166258318349719],[113,45,71,-0.5157407047227025],[113,45,72,-0.5142517378553748],[113,45,73,-0.5122488643974066],[113,45,74,-0.5105016264133155],[113,45,75,-0.5092914546839893],[113,45,76,-0.5083487671799958],[113,45,77,-0.5074529582634568],[113,45,78,-0.5064700578805059],[113,45,79,-0.5053090718574822],[113,46,64,-0.5227295868098736],[113,46,65,-0.520820114761591],[113,46,66,-0.5193138187751174],[113,46,67,-0.5183762442320585],[113,46,68,-0.5178399458527565],[113,46,69,-0.5172820575535297],[113,46,70,-0.5166258318349719],[113,46,71,-0.5157407047227025],[113,46,72,-0.5142517378553748],[113,46,73,-0.5122488643974066],[113,46,74,-0.5105016264133155],[113,46,75,-0.5092914546839893],[113,46,76,-0.5083487671799958],[113,46,77,-0.5074529582634568],[113,46,78,-0.5064700578805059],[113,46,79,-0.5053090718574822],[113,47,64,-0.5227295868098736],[113,47,65,-0.520820114761591],[113,47,66,-0.5193138187751174],[113,47,67,-0.5183762442320585],[113,47,68,-0.5178399458527565],[113,47,69,-0.5172820575535297],[113,47,70,-0.5166258318349719],[113,47,71,-0.5157407047227025],[113,47,72,-0.5142517378553748],[113,47,73,-0.5122488643974066],[113,47,74,-0.5105016264133155],[113,47,75,-0.5092914546839893],[113,47,76,-0.5083487671799958],[113,47,77,-0.5074529582634568],[113,47,78,-0.5064700578805059],[113,47,79,-0.5053090718574822],[113,48,64,-0.5227295868098736],[113,48,65,-0.520820114761591],[113,48,66,-0.5193138187751174],[113,48,67,-0.5183762442320585],[113,48,68,-0.5178399458527565],[113,48,69,-0.5172820575535297],[113,48,70,-0.5166258318349719],[113,48,71,-0.5157407047227025],[113,48,72,-0.5142517378553748],[113,48,73,-0.5122488643974066],[113,48,74,-0.5105016264133155],[113,48,75,-0.5092914546839893],[113,48,76,-0.5083487671799958],[113,48,77,-0.5074529582634568],[113,48,78,-0.5064700578805059],[113,48,79,-0.5053090718574822],[113,49,64,-0.5227295868098736],[113,49,65,-0.520820114761591],[113,49,66,-0.5193138187751174],[113,49,67,-0.5183762442320585],[113,49,68,-0.5178399458527565],[113,49,69,-0.5172820575535297],[113,49,70,-0.5166258318349719],[113,49,71,-0.5157407047227025],[113,49,72,-0.5142517378553748],[113,49,73,-0.5122488643974066],[113,49,74,-0.5105016264133155],[113,49,75,-0.5092914546839893],[113,49,76,-0.5083487671799958],[113,49,77,-0.5074529582634568],[113,49,78,-0.5064700578805059],[113,49,79,-0.5053090718574822],[113,50,64,-0.5227295868098736],[113,50,65,-0.520820114761591],[113,50,66,-0.5193138187751174],[113,50,67,-0.5183762442320585],[113,50,68,-0.5178399458527565],[113,50,69,-0.5172820575535297],[113,50,70,-0.5166258318349719],[113,50,71,-0.5157407047227025],[113,50,72,-0.5142517378553748],[113,50,73,-0.5122488643974066],[113,50,74,-0.5105016264133155],[113,50,75,-0.5092914546839893],[113,50,76,-0.5083487671799958],[113,50,77,-0.5074529582634568],[113,50,78,-0.5064700578805059],[113,50,79,-0.5053090718574822],[113,51,64,-0.5227295868098736],[113,51,65,-0.520820114761591],[113,51,66,-0.5193138187751174],[113,51,67,-0.5183762442320585],[113,51,68,-0.5178399458527565],[113,51,69,-0.5172820575535297],[113,51,70,-0.5166258318349719],[113,51,71,-0.5157407047227025],[113,51,72,-0.5142517378553748],[113,51,73,-0.5122488643974066],[113,51,74,-0.5105016264133155],[113,51,75,-0.5092914546839893],[113,51,76,-0.5083487671799958],[113,51,77,-0.5074529582634568],[113,51,78,-0.5064700578805059],[113,51,79,-0.5053090718574822],[113,52,64,-0.5227295868098736],[113,52,65,-0.520820114761591],[113,52,66,-0.5193138187751174],[113,52,67,-0.5183762442320585],[113,52,68,-0.5178399458527565],[113,52,69,-0.5172820575535297],[113,52,70,-0.5166258318349719],[113,52,71,-0.5157407047227025],[113,52,72,-0.5142517378553748],[113,52,73,-0.5122488643974066],[113,52,74,-0.5105016264133155],[113,52,75,-0.5092914546839893],[113,52,76,-0.5083487671799958],[113,52,77,-0.5074529582634568],[113,52,78,-0.5064700578805059],[113,52,79,-0.5053090718574822],[113,53,64,-0.5227295868098736],[113,53,65,-0.520820114761591],[113,53,66,-0.5193138187751174],[113,53,67,-0.5183762442320585],[113,53,68,-0.5178399458527565],[113,53,69,-0.5172820575535297],[113,53,70,-0.5166258318349719],[113,53,71,-0.5157407047227025],[113,53,72,-0.5142517378553748],[113,53,73,-0.5122488643974066],[113,53,74,-0.5105016264133155],[113,53,75,-0.5092914546839893],[113,53,76,-0.5083487671799958],[113,53,77,-0.5074529582634568],[113,53,78,-0.5064700578805059],[113,53,79,-0.5053090718574822],[113,54,64,-0.5227295868098736],[113,54,65,-0.520820114761591],[113,54,66,-0.5193138187751174],[113,54,67,-0.5183762442320585],[113,54,68,-0.5178399458527565],[113,54,69,-0.5172820575535297],[113,54,70,-0.5166258318349719],[113,54,71,-0.5157407047227025],[113,54,72,-0.5142517378553748],[113,54,73,-0.5122488643974066],[113,54,74,-0.5105016264133155],[113,54,75,-0.5092914546839893],[113,54,76,-0.5083487671799958],[113,54,77,-0.5074529582634568],[113,54,78,-0.5064700578805059],[113,54,79,-0.5053090718574822],[113,55,64,-0.5227295868098736],[113,55,65,-0.520820114761591],[113,55,66,-0.5193138187751174],[113,55,67,-0.5183762442320585],[113,55,68,-0.5178399458527565],[113,55,69,-0.5172820575535297],[113,55,70,-0.5166258318349719],[113,55,71,-0.5157407047227025],[113,55,72,-0.5142517378553748],[113,55,73,-0.5122488643974066],[113,55,74,-0.5105016264133155],[113,55,75,-0.5092914546839893],[113,55,76,-0.5083487671799958],[113,55,77,-0.5074529582634568],[113,55,78,-0.5064700578805059],[113,55,79,-0.5053090718574822],[113,56,64,-0.5227295868098736],[113,56,65,-0.520820114761591],[113,56,66,-0.5193138187751174],[113,56,67,-0.5183762442320585],[113,56,68,-0.5178399458527565],[113,56,69,-0.5172820575535297],[113,56,70,-0.5166258318349719],[113,56,71,-0.5157407047227025],[113,56,72,-0.5142517378553748],[113,56,73,-0.5122488643974066],[113,56,74,-0.5105016264133155],[113,56,75,-0.5092914546839893],[113,56,76,-0.5083487671799958],[113,56,77,-0.5074529582634568],[113,56,78,-0.5064700578805059],[113,56,79,-0.5053090718574822],[113,57,64,-0.5227295868098736],[113,57,65,-0.520820114761591],[113,57,66,-0.5193138187751174],[113,57,67,-0.5183762442320585],[113,57,68,-0.5178399458527565],[113,57,69,-0.5172820575535297],[113,57,70,-0.5166258318349719],[113,57,71,-0.5157407047227025],[113,57,72,-0.5142517378553748],[113,57,73,-0.5122488643974066],[113,57,74,-0.5105016264133155],[113,57,75,-0.5092914546839893],[113,57,76,-0.5083487671799958],[113,57,77,-0.5074529582634568],[113,57,78,-0.5064700578805059],[113,57,79,-0.5053090718574822],[113,58,64,-0.5227295868098736],[113,58,65,-0.520820114761591],[113,58,66,-0.5193138187751174],[113,58,67,-0.5183762442320585],[113,58,68,-0.5178399458527565],[113,58,69,-0.5172820575535297],[113,58,70,-0.5166258318349719],[113,58,71,-0.5157407047227025],[113,58,72,-0.5142517378553748],[113,58,73,-0.5122488643974066],[113,58,74,-0.5105016264133155],[113,58,75,-0.5092914546839893],[113,58,76,-0.5083487671799958],[113,58,77,-0.5074529582634568],[113,58,78,-0.5064700578805059],[113,58,79,-0.5053090718574822],[113,59,64,-0.5227295868098736],[113,59,65,-0.520820114761591],[113,59,66,-0.5193138187751174],[113,59,67,-0.5183762442320585],[113,59,68,-0.5178399458527565],[113,59,69,-0.5172820575535297],[113,59,70,-0.5166258318349719],[113,59,71,-0.5157407047227025],[113,59,72,-0.5142517378553748],[113,59,73,-0.5122488643974066],[113,59,74,-0.5105016264133155],[113,59,75,-0.5092914546839893],[113,59,76,-0.5083487671799958],[113,59,77,-0.5074529582634568],[113,59,78,-0.5064700578805059],[113,59,79,-0.5053090718574822],[113,60,64,-0.5227295868098736],[113,60,65,-0.520820114761591],[113,60,66,-0.5193138187751174],[113,60,67,-0.5183762442320585],[113,60,68,-0.5178399458527565],[113,60,69,-0.5172820575535297],[113,60,70,-0.5166258318349719],[113,60,71,-0.5157407047227025],[113,60,72,-0.5142517378553748],[113,60,73,-0.5122488643974066],[113,60,74,-0.5105016264133155],[113,60,75,-0.5092914546839893],[113,60,76,-0.5083487671799958],[113,60,77,-0.5074529582634568],[113,60,78,-0.5064700578805059],[113,60,79,-0.5053090718574822],[113,61,64,-0.5227295868098736],[113,61,65,-0.520820114761591],[113,61,66,-0.5193138187751174],[113,61,67,-0.5183762442320585],[113,61,68,-0.5178399458527565],[113,61,69,-0.5172820575535297],[113,61,70,-0.5166258318349719],[113,61,71,-0.5157407047227025],[113,61,72,-0.5142517378553748],[113,61,73,-0.5122488643974066],[113,61,74,-0.5105016264133155],[113,61,75,-0.5092914546839893],[113,61,76,-0.5083487671799958],[113,61,77,-0.5074529582634568],[113,61,78,-0.5064700578805059],[113,61,79,-0.5053090718574822],[113,62,64,-0.5227295868098736],[113,62,65,-0.520820114761591],[113,62,66,-0.5193138187751174],[113,62,67,-0.5183762442320585],[113,62,68,-0.5178399458527565],[113,62,69,-0.5172820575535297],[113,62,70,-0.5166258318349719],[113,62,71,-0.5157407047227025],[113,62,72,-0.5142517378553748],[113,62,73,-0.5122488643974066],[113,62,74,-0.5105016264133155],[113,62,75,-0.5092914546839893],[113,62,76,-0.5083487671799958],[113,62,77,-0.5074529582634568],[113,62,78,-0.5064700578805059],[113,62,79,-0.5053090718574822],[113,63,64,-0.5227295868098736],[113,63,65,-0.520820114761591],[113,63,66,-0.5193138187751174],[113,63,67,-0.5183762442320585],[113,63,68,-0.5178399458527565],[113,63,69,-0.5172820575535297],[113,63,70,-0.5166258318349719],[113,63,71,-0.5157407047227025],[113,63,72,-0.5142517378553748],[113,63,73,-0.5122488643974066],[113,63,74,-0.5105016264133155],[113,63,75,-0.5092914546839893],[113,63,76,-0.5083487671799958],[113,63,77,-0.5074529582634568],[113,63,78,-0.5064700578805059],[113,63,79,-0.5053090718574822],[113,64,64,-0.5227295868098736],[113,64,65,-0.520820114761591],[113,64,66,-0.5193138187751174],[113,64,67,-0.5183762442320585],[113,64,68,-0.5178399458527565],[113,64,69,-0.5172820575535297],[113,64,70,-0.5166258318349719],[113,64,71,-0.5157407047227025],[113,64,72,-0.5142517378553748],[113,64,73,-0.5122488643974066],[113,64,74,-0.5105016264133155],[113,64,75,-0.5092914546839893],[113,64,76,-0.5083487671799958],[113,64,77,-0.5074529582634568],[113,64,78,-0.5064700578805059],[113,64,79,-0.5053090718574822],[113,65,64,-0.5227295868098736],[113,65,65,-0.520820114761591],[113,65,66,-0.5193138187751174],[113,65,67,-0.5183762442320585],[113,65,68,-0.5178399458527565],[113,65,69,-0.5172820575535297],[113,65,70,-0.5166258318349719],[113,65,71,-0.5157407047227025],[113,65,72,-0.5142517378553748],[113,65,73,-0.5122488643974066],[113,65,74,-0.5105016264133155],[113,65,75,-0.5092914546839893],[113,65,76,-0.5083487671799958],[113,65,77,-0.5074529582634568],[113,65,78,-0.5064700578805059],[113,65,79,-0.5053090718574822],[113,66,64,-0.5227295868098736],[113,66,65,-0.520820114761591],[113,66,66,-0.5193138187751174],[113,66,67,-0.5183762442320585],[113,66,68,-0.5178399458527565],[113,66,69,-0.5172820575535297],[113,66,70,-0.5166258318349719],[113,66,71,-0.5157407047227025],[113,66,72,-0.5142517378553748],[113,66,73,-0.5122488643974066],[113,66,74,-0.5105016264133155],[113,66,75,-0.5092914546839893],[113,66,76,-0.5083487671799958],[113,66,77,-0.5074529582634568],[113,66,78,-0.5064700578805059],[113,66,79,-0.5053090718574822],[113,67,64,-0.5227295868098736],[113,67,65,-0.520820114761591],[113,67,66,-0.5193138187751174],[113,67,67,-0.5183762442320585],[113,67,68,-0.5178399458527565],[113,67,69,-0.5172820575535297],[113,67,70,-0.5166258318349719],[113,67,71,-0.5157407047227025],[113,67,72,-0.5142517378553748],[113,67,73,-0.5122488643974066],[113,67,74,-0.5105016264133155],[113,67,75,-0.5092914546839893],[113,67,76,-0.5083487671799958],[113,67,77,-0.5074529582634568],[113,67,78,-0.5064700578805059],[113,67,79,-0.5053090718574822],[113,68,64,-0.5227295868098736],[113,68,65,-0.520820114761591],[113,68,66,-0.5193138187751174],[113,68,67,-0.5183762442320585],[113,68,68,-0.5178399458527565],[113,68,69,-0.5172820575535297],[113,68,70,-0.5166258318349719],[113,68,71,-0.5157407047227025],[113,68,72,-0.5142517378553748],[113,68,73,-0.5122488643974066],[113,68,74,-0.5105016264133155],[113,68,75,-0.5092914546839893],[113,68,76,-0.5083487671799958],[113,68,77,-0.5074529582634568],[113,68,78,-0.5064700578805059],[113,68,79,-0.5053090718574822],[113,69,64,-0.5227295868098736],[113,69,65,-0.520820114761591],[113,69,66,-0.5193138187751174],[113,69,67,-0.5183762442320585],[113,69,68,-0.5178399458527565],[113,69,69,-0.5172820575535297],[113,69,70,-0.5166258318349719],[113,69,71,-0.5157407047227025],[113,69,72,-0.5142517378553748],[113,69,73,-0.5122488643974066],[113,69,74,-0.5105016264133155],[113,69,75,-0.5092914546839893],[113,69,76,-0.5083487671799958],[113,69,77,-0.5074529582634568],[113,69,78,-0.5064700578805059],[113,69,79,-0.5053090718574822],[113,70,64,-0.5227295868098736],[113,70,65,-0.520820114761591],[113,70,66,-0.5193138187751174],[113,70,67,-0.5183762442320585],[113,70,68,-0.5178399458527565],[113,70,69,-0.5172820575535297],[113,70,70,-0.5166258318349719],[113,70,71,-0.5157407047227025],[113,70,72,-0.5142517378553748],[113,70,73,-0.5122488643974066],[113,70,74,-0.5105016264133155],[113,70,75,-0.5092914546839893],[113,70,76,-0.5083487671799958],[113,70,77,-0.5074529582634568],[113,70,78,-0.5064700578805059],[113,70,79,-0.5053090718574822],[113,71,64,-0.5227295868098736],[113,71,65,-0.520820114761591],[113,71,66,-0.5193138187751174],[113,71,67,-0.5183762442320585],[113,71,68,-0.5178399458527565],[113,71,69,-0.5172820575535297],[113,71,70,-0.5166258318349719],[113,71,71,-0.5157407047227025],[113,71,72,-0.5142517378553748],[113,71,73,-0.5122488643974066],[113,71,74,-0.5105016264133155],[113,71,75,-0.5092914546839893],[113,71,76,-0.5083487671799958],[113,71,77,-0.5074529582634568],[113,71,78,-0.5064700578805059],[113,71,79,-0.5053090718574822],[113,72,64,-0.5227295868098736],[113,72,65,-0.520820114761591],[113,72,66,-0.5193138187751174],[113,72,67,-0.5183762442320585],[113,72,68,-0.5178399458527565],[113,72,69,-0.5172820575535297],[113,72,70,-0.5166258318349719],[113,72,71,-0.5157407047227025],[113,72,72,-0.5142517378553748],[113,72,73,-0.5122488643974066],[113,72,74,-0.5105016264133155],[113,72,75,-0.5092914546839893],[113,72,76,-0.5083487671799958],[113,72,77,-0.5074529582634568],[113,72,78,-0.5064700578805059],[113,72,79,-0.5053090718574822],[113,73,64,-0.5227295868098736],[113,73,65,-0.520820114761591],[113,73,66,-0.5193138187751174],[113,73,67,-0.5183762442320585],[113,73,68,-0.5178399458527565],[113,73,69,-0.5172820575535297],[113,73,70,-0.5166258318349719],[113,73,71,-0.5157407047227025],[113,73,72,-0.5142517378553748],[113,73,73,-0.5122488643974066],[113,73,74,-0.5105016264133155],[113,73,75,-0.5092914546839893],[113,73,76,-0.5083487671799958],[113,73,77,-0.5074529582634568],[113,73,78,-0.5064700578805059],[113,73,79,-0.5053090718574822],[113,74,64,-0.5227295868098736],[113,74,65,-0.520820114761591],[113,74,66,-0.5193138187751174],[113,74,67,-0.5183762442320585],[113,74,68,-0.5178399458527565],[113,74,69,-0.5172820575535297],[113,74,70,-0.5166258318349719],[113,74,71,-0.5157407047227025],[113,74,72,-0.5142517378553748],[113,74,73,-0.5122488643974066],[113,74,74,-0.5105016264133155],[113,74,75,-0.5092914546839893],[113,74,76,-0.5083487671799958],[113,74,77,-0.5074529582634568],[113,74,78,-0.5064700578805059],[113,74,79,-0.5053090718574822],[113,75,64,-0.5227295868098736],[113,75,65,-0.520820114761591],[113,75,66,-0.5193138187751174],[113,75,67,-0.5183762442320585],[113,75,68,-0.5178399458527565],[113,75,69,-0.5172820575535297],[113,75,70,-0.5166258318349719],[113,75,71,-0.5157407047227025],[113,75,72,-0.5142517378553748],[113,75,73,-0.5122488643974066],[113,75,74,-0.5105016264133155],[113,75,75,-0.5092914546839893],[113,75,76,-0.5083487671799958],[113,75,77,-0.5074529582634568],[113,75,78,-0.5064700578805059],[113,75,79,-0.5053090718574822],[113,76,64,-0.5227295868098736],[113,76,65,-0.520820114761591],[113,76,66,-0.5193138187751174],[113,76,67,-0.5183762442320585],[113,76,68,-0.5178399458527565],[113,76,69,-0.5172820575535297],[113,76,70,-0.5166258318349719],[113,76,71,-0.5157407047227025],[113,76,72,-0.5142517378553748],[113,76,73,-0.5122488643974066],[113,76,74,-0.5105016264133155],[113,76,75,-0.5092914546839893],[113,76,76,-0.5083487671799958],[113,76,77,-0.5074529582634568],[113,76,78,-0.5064700578805059],[113,76,79,-0.5053090718574822],[113,77,64,-0.5227295868098736],[113,77,65,-0.520820114761591],[113,77,66,-0.5193138187751174],[113,77,67,-0.5183762442320585],[113,77,68,-0.5178399458527565],[113,77,69,-0.5172820575535297],[113,77,70,-0.5166258318349719],[113,77,71,-0.5157407047227025],[113,77,72,-0.5142517378553748],[113,77,73,-0.5122488643974066],[113,77,74,-0.5105016264133155],[113,77,75,-0.5092914546839893],[113,77,76,-0.5083487671799958],[113,77,77,-0.5074529582634568],[113,77,78,-0.5064700578805059],[113,77,79,-0.5053090718574822],[113,78,64,-0.5227295868098736],[113,78,65,-0.520820114761591],[113,78,66,-0.5193138187751174],[113,78,67,-0.5183762442320585],[113,78,68,-0.5178399458527565],[113,78,69,-0.5172820575535297],[113,78,70,-0.5166258318349719],[113,78,71,-0.5157407047227025],[113,78,72,-0.5142517378553748],[113,78,73,-0.5122488643974066],[113,78,74,-0.5105016264133155],[113,78,75,-0.5092914546839893],[113,78,76,-0.5083487671799958],[113,78,77,-0.5074529582634568],[113,78,78,-0.5064700578805059],[113,78,79,-0.5053090718574822],[113,79,64,-0.5227295868098736],[113,79,65,-0.520820114761591],[113,79,66,-0.5193138187751174],[113,79,67,-0.5183762442320585],[113,79,68,-0.5178399458527565],[113,79,69,-0.5172820575535297],[113,79,70,-0.5166258318349719],[113,79,71,-0.5157407047227025],[113,79,72,-0.5142517378553748],[113,79,73,-0.5122488643974066],[113,79,74,-0.5105016264133155],[113,79,75,-0.5092914546839893],[113,79,76,-0.5083487671799958],[113,79,77,-0.5074529582634568],[113,79,78,-0.5064700578805059],[113,79,79,-0.5053090718574822],[113,80,64,-0.5227295868098736],[113,80,65,-0.520820114761591],[113,80,66,-0.5193138187751174],[113,80,67,-0.5183762442320585],[113,80,68,-0.5178399458527565],[113,80,69,-0.5172820575535297],[113,80,70,-0.5166258318349719],[113,80,71,-0.5157407047227025],[113,80,72,-0.5142517378553748],[113,80,73,-0.5122488643974066],[113,80,74,-0.5105016264133155],[113,80,75,-0.5092914546839893],[113,80,76,-0.5083487671799958],[113,80,77,-0.5074529582634568],[113,80,78,-0.5064700578805059],[113,80,79,-0.5053090718574822],[113,81,64,-0.5227295868098736],[113,81,65,-0.520820114761591],[113,81,66,-0.5193138187751174],[113,81,67,-0.5183762442320585],[113,81,68,-0.5178399458527565],[113,81,69,-0.5172820575535297],[113,81,70,-0.5166258318349719],[113,81,71,-0.5157407047227025],[113,81,72,-0.5142517378553748],[113,81,73,-0.5122488643974066],[113,81,74,-0.5105016264133155],[113,81,75,-0.5092914546839893],[113,81,76,-0.5083487671799958],[113,81,77,-0.5074529582634568],[113,81,78,-0.5064700578805059],[113,81,79,-0.5053090718574822],[113,82,64,-0.5227295868098736],[113,82,65,-0.520820114761591],[113,82,66,-0.5193138187751174],[113,82,67,-0.5183762442320585],[113,82,68,-0.5178399458527565],[113,82,69,-0.5172820575535297],[113,82,70,-0.5166258318349719],[113,82,71,-0.5157407047227025],[113,82,72,-0.5142517378553748],[113,82,73,-0.5122488643974066],[113,82,74,-0.5105016264133155],[113,82,75,-0.5092914546839893],[113,82,76,-0.5083487671799958],[113,82,77,-0.5074529582634568],[113,82,78,-0.5064700578805059],[113,82,79,-0.5053090718574822],[113,83,64,-0.5227295868098736],[113,83,65,-0.520820114761591],[113,83,66,-0.5193138187751174],[113,83,67,-0.5183762442320585],[113,83,68,-0.5178399458527565],[113,83,69,-0.5172820575535297],[113,83,70,-0.5166258318349719],[113,83,71,-0.5157407047227025],[113,83,72,-0.5142517378553748],[113,83,73,-0.5122488643974066],[113,83,74,-0.5105016264133155],[113,83,75,-0.5092914546839893],[113,83,76,-0.5083487671799958],[113,83,77,-0.5074529582634568],[113,83,78,-0.5064700578805059],[113,83,79,-0.5053090718574822],[113,84,64,-0.5227295868098736],[113,84,65,-0.520820114761591],[113,84,66,-0.5193138187751174],[113,84,67,-0.5183762442320585],[113,84,68,-0.5178399458527565],[113,84,69,-0.5172820575535297],[113,84,70,-0.5166258318349719],[113,84,71,-0.5157407047227025],[113,84,72,-0.5142517378553748],[113,84,73,-0.5122488643974066],[113,84,74,-0.5105016264133155],[113,84,75,-0.5092914546839893],[113,84,76,-0.5083487671799958],[113,84,77,-0.5074529582634568],[113,84,78,-0.5064700578805059],[113,84,79,-0.5053090718574822],[113,85,64,-0.5227295868098736],[113,85,65,-0.520820114761591],[113,85,66,-0.5193138187751174],[113,85,67,-0.5183762442320585],[113,85,68,-0.5178399458527565],[113,85,69,-0.5172820575535297],[113,85,70,-0.5166258318349719],[113,85,71,-0.5157407047227025],[113,85,72,-0.5142517378553748],[113,85,73,-0.5122488643974066],[113,85,74,-0.5105016264133155],[113,85,75,-0.5092914546839893],[113,85,76,-0.5083487671799958],[113,85,77,-0.5074529582634568],[113,85,78,-0.5064700578805059],[113,85,79,-0.5053090718574822],[113,86,64,-0.5227295868098736],[113,86,65,-0.520820114761591],[113,86,66,-0.5193138187751174],[113,86,67,-0.5183762442320585],[113,86,68,-0.5178399458527565],[113,86,69,-0.5172820575535297],[113,86,70,-0.5166258318349719],[113,86,71,-0.5157407047227025],[113,86,72,-0.5142517378553748],[113,86,73,-0.5122488643974066],[113,86,74,-0.5105016264133155],[113,86,75,-0.5092914546839893],[113,86,76,-0.5083487671799958],[113,86,77,-0.5074529582634568],[113,86,78,-0.5064700578805059],[113,86,79,-0.5053090718574822],[113,87,64,-0.5227295868098736],[113,87,65,-0.520820114761591],[113,87,66,-0.5193138187751174],[113,87,67,-0.5183762442320585],[113,87,68,-0.5178399458527565],[113,87,69,-0.5172820575535297],[113,87,70,-0.5166258318349719],[113,87,71,-0.5157407047227025],[113,87,72,-0.5142517378553748],[113,87,73,-0.5122488643974066],[113,87,74,-0.5105016264133155],[113,87,75,-0.5092914546839893],[113,87,76,-0.5083487671799958],[113,87,77,-0.5074529582634568],[113,87,78,-0.5064700578805059],[113,87,79,-0.5053090718574822],[113,88,64,-0.5227295868098736],[113,88,65,-0.520820114761591],[113,88,66,-0.5193138187751174],[113,88,67,-0.5183762442320585],[113,88,68,-0.5178399458527565],[113,88,69,-0.5172820575535297],[113,88,70,-0.5166258318349719],[113,88,71,-0.5157407047227025],[113,88,72,-0.5142517378553748],[113,88,73,-0.5122488643974066],[113,88,74,-0.5105016264133155],[113,88,75,-0.5092914546839893],[113,88,76,-0.5083487671799958],[113,88,77,-0.5074529582634568],[113,88,78,-0.5064700578805059],[113,88,79,-0.5053090718574822],[113,89,64,-0.5227295868098736],[113,89,65,-0.520820114761591],[113,89,66,-0.5193138187751174],[113,89,67,-0.5183762442320585],[113,89,68,-0.5178399458527565],[113,89,69,-0.5172820575535297],[113,89,70,-0.5166258318349719],[113,89,71,-0.5157407047227025],[113,89,72,-0.5142517378553748],[113,89,73,-0.5122488643974066],[113,89,74,-0.5105016264133155],[113,89,75,-0.5092914546839893],[113,89,76,-0.5083487671799958],[113,89,77,-0.5074529582634568],[113,89,78,-0.5064700578805059],[113,89,79,-0.5053090718574822],[113,90,64,-0.5227295868098736],[113,90,65,-0.520820114761591],[113,90,66,-0.5193138187751174],[113,90,67,-0.5183762442320585],[113,90,68,-0.5178399458527565],[113,90,69,-0.5172820575535297],[113,90,70,-0.5166258318349719],[113,90,71,-0.5157407047227025],[113,90,72,-0.5142517378553748],[113,90,73,-0.5122488643974066],[113,90,74,-0.5105016264133155],[113,90,75,-0.5092914546839893],[113,90,76,-0.5083487671799958],[113,90,77,-0.5074529582634568],[113,90,78,-0.5064700578805059],[113,90,79,-0.5053090718574822],[113,91,64,-0.5227295868098736],[113,91,65,-0.520820114761591],[113,91,66,-0.5193138187751174],[113,91,67,-0.5183762442320585],[113,91,68,-0.5178399458527565],[113,91,69,-0.5172820575535297],[113,91,70,-0.5166258318349719],[113,91,71,-0.5157407047227025],[113,91,72,-0.5142517378553748],[113,91,73,-0.5122488643974066],[113,91,74,-0.5105016264133155],[113,91,75,-0.5092914546839893],[113,91,76,-0.5083487671799958],[113,91,77,-0.5074529582634568],[113,91,78,-0.5064700578805059],[113,91,79,-0.5053090718574822],[113,92,64,-0.5227295868098736],[113,92,65,-0.520820114761591],[113,92,66,-0.5193138187751174],[113,92,67,-0.5183762442320585],[113,92,68,-0.5178399458527565],[113,92,69,-0.5172820575535297],[113,92,70,-0.5166258318349719],[113,92,71,-0.5157407047227025],[113,92,72,-0.5142517378553748],[113,92,73,-0.5122488643974066],[113,92,74,-0.5105016264133155],[113,92,75,-0.5092914546839893],[113,92,76,-0.5083487671799958],[113,92,77,-0.5074529582634568],[113,92,78,-0.5064700578805059],[113,92,79,-0.5053090718574822],[113,93,64,-0.5227295868098736],[113,93,65,-0.520820114761591],[113,93,66,-0.5193138187751174],[113,93,67,-0.5183762442320585],[113,93,68,-0.5178399458527565],[113,93,69,-0.5172820575535297],[113,93,70,-0.5166258318349719],[113,93,71,-0.5157407047227025],[113,93,72,-0.5142517378553748],[113,93,73,-0.5122488643974066],[113,93,74,-0.5105016264133155],[113,93,75,-0.5092914546839893],[113,93,76,-0.5083487671799958],[113,93,77,-0.5074529582634568],[113,93,78,-0.5064700578805059],[113,93,79,-0.5053090718574822],[113,94,64,-0.5227295868098736],[113,94,65,-0.520820114761591],[113,94,66,-0.5193138187751174],[113,94,67,-0.5183762442320585],[113,94,68,-0.5178399458527565],[113,94,69,-0.5172820575535297],[113,94,70,-0.5166258318349719],[113,94,71,-0.5157407047227025],[113,94,72,-0.5142517378553748],[113,94,73,-0.5122488643974066],[113,94,74,-0.5105016264133155],[113,94,75,-0.5092914546839893],[113,94,76,-0.5083487671799958],[113,94,77,-0.5074529582634568],[113,94,78,-0.5064700578805059],[113,94,79,-0.5053090718574822],[113,95,64,-0.5227295868098736],[113,95,65,-0.520820114761591],[113,95,66,-0.5193138187751174],[113,95,67,-0.5183762442320585],[113,95,68,-0.5178399458527565],[113,95,69,-0.5172820575535297],[113,95,70,-0.5166258318349719],[113,95,71,-0.5157407047227025],[113,95,72,-0.5142517378553748],[113,95,73,-0.5122488643974066],[113,95,74,-0.5105016264133155],[113,95,75,-0.5092914546839893],[113,95,76,-0.5083487671799958],[113,95,77,-0.5074529582634568],[113,95,78,-0.5064700578805059],[113,95,79,-0.5053090718574822],[113,96,64,-0.5227295868098736],[113,96,65,-0.520820114761591],[113,96,66,-0.5193138187751174],[113,96,67,-0.5183762442320585],[113,96,68,-0.5178399458527565],[113,96,69,-0.5172820575535297],[113,96,70,-0.5166258318349719],[113,96,71,-0.5157407047227025],[113,96,72,-0.5142517378553748],[113,96,73,-0.5122488643974066],[113,96,74,-0.5105016264133155],[113,96,75,-0.5092914546839893],[113,96,76,-0.5083487671799958],[113,96,77,-0.5074529582634568],[113,96,78,-0.5064700578805059],[113,96,79,-0.5053090718574822],[113,97,64,-0.5227295868098736],[113,97,65,-0.520820114761591],[113,97,66,-0.5193138187751174],[113,97,67,-0.5183762442320585],[113,97,68,-0.5178399458527565],[113,97,69,-0.5172820575535297],[113,97,70,-0.5166258318349719],[113,97,71,-0.5157407047227025],[113,97,72,-0.5142517378553748],[113,97,73,-0.5122488643974066],[113,97,74,-0.5105016264133155],[113,97,75,-0.5092914546839893],[113,97,76,-0.5083487671799958],[113,97,77,-0.5074529582634568],[113,97,78,-0.5064700578805059],[113,97,79,-0.5053090718574822],[113,98,64,-0.5227295868098736],[113,98,65,-0.520820114761591],[113,98,66,-0.5193138187751174],[113,98,67,-0.5183762442320585],[113,98,68,-0.5178399458527565],[113,98,69,-0.5172820575535297],[113,98,70,-0.5166258318349719],[113,98,71,-0.5157407047227025],[113,98,72,-0.5142517378553748],[113,98,73,-0.5122488643974066],[113,98,74,-0.5105016264133155],[113,98,75,-0.5092914546839893],[113,98,76,-0.5083487671799958],[113,98,77,-0.5074529582634568],[113,98,78,-0.5064700578805059],[113,98,79,-0.5053090718574822],[113,99,64,-0.5227295868098736],[113,99,65,-0.520820114761591],[113,99,66,-0.5193138187751174],[113,99,67,-0.5183762442320585],[113,99,68,-0.5178399458527565],[113,99,69,-0.5172820575535297],[113,99,70,-0.5166258318349719],[113,99,71,-0.5157407047227025],[113,99,72,-0.5142517378553748],[113,99,73,-0.5122488643974066],[113,99,74,-0.5105016264133155],[113,99,75,-0.5092914546839893],[113,99,76,-0.5083487671799958],[113,99,77,-0.5074529582634568],[113,99,78,-0.5064700578805059],[113,99,79,-0.5053090718574822],[113,100,64,-0.5227295868098736],[113,100,65,-0.520820114761591],[113,100,66,-0.5193138187751174],[113,100,67,-0.5183762442320585],[113,100,68,-0.5178399458527565],[113,100,69,-0.5172820575535297],[113,100,70,-0.5166258318349719],[113,100,71,-0.5157407047227025],[113,100,72,-0.5142517378553748],[113,100,73,-0.5122488643974066],[113,100,74,-0.5105016264133155],[113,100,75,-0.5092914546839893],[113,100,76,-0.5083487671799958],[113,100,77,-0.5074529582634568],[113,100,78,-0.5064700578805059],[113,100,79,-0.5053090718574822],[113,101,64,-0.5227295868098736],[113,101,65,-0.520820114761591],[113,101,66,-0.5193138187751174],[113,101,67,-0.5183762442320585],[113,101,68,-0.5178399458527565],[113,101,69,-0.5172820575535297],[113,101,70,-0.5166258318349719],[113,101,71,-0.5157407047227025],[113,101,72,-0.5142517378553748],[113,101,73,-0.5122488643974066],[113,101,74,-0.5105016264133155],[113,101,75,-0.5092914546839893],[113,101,76,-0.5083487671799958],[113,101,77,-0.5074529582634568],[113,101,78,-0.5064700578805059],[113,101,79,-0.5053090718574822],[113,102,64,-0.5227295868098736],[113,102,65,-0.520820114761591],[113,102,66,-0.5193138187751174],[113,102,67,-0.5183762442320585],[113,102,68,-0.5178399458527565],[113,102,69,-0.5172820575535297],[113,102,70,-0.5166258318349719],[113,102,71,-0.5157407047227025],[113,102,72,-0.5142517378553748],[113,102,73,-0.5122488643974066],[113,102,74,-0.5105016264133155],[113,102,75,-0.5092914546839893],[113,102,76,-0.5083487671799958],[113,102,77,-0.5074529582634568],[113,102,78,-0.5064700578805059],[113,102,79,-0.5053090718574822],[113,103,64,-0.5227295868098736],[113,103,65,-0.520820114761591],[113,103,66,-0.5193138187751174],[113,103,67,-0.5183762442320585],[113,103,68,-0.5178399458527565],[113,103,69,-0.5172820575535297],[113,103,70,-0.5166258318349719],[113,103,71,-0.5157407047227025],[113,103,72,-0.5142517378553748],[113,103,73,-0.5122488643974066],[113,103,74,-0.5105016264133155],[113,103,75,-0.5092914546839893],[113,103,76,-0.5083487671799958],[113,103,77,-0.5074529582634568],[113,103,78,-0.5064700578805059],[113,103,79,-0.5053090718574822],[113,104,64,-0.5227295868098736],[113,104,65,-0.520820114761591],[113,104,66,-0.5193138187751174],[113,104,67,-0.5183762442320585],[113,104,68,-0.5178399458527565],[113,104,69,-0.5172820575535297],[113,104,70,-0.5166258318349719],[113,104,71,-0.5157407047227025],[113,104,72,-0.5142517378553748],[113,104,73,-0.5122488643974066],[113,104,74,-0.5105016264133155],[113,104,75,-0.5092914546839893],[113,104,76,-0.5083487671799958],[113,104,77,-0.5074529582634568],[113,104,78,-0.5064700578805059],[113,104,79,-0.5053090718574822],[113,105,64,-0.5227295868098736],[113,105,65,-0.520820114761591],[113,105,66,-0.5193138187751174],[113,105,67,-0.5183762442320585],[113,105,68,-0.5178399458527565],[113,105,69,-0.5172820575535297],[113,105,70,-0.5166258318349719],[113,105,71,-0.5157407047227025],[113,105,72,-0.5142517378553748],[113,105,73,-0.5122488643974066],[113,105,74,-0.5105016264133155],[113,105,75,-0.5092914546839893],[113,105,76,-0.5083487671799958],[113,105,77,-0.5074529582634568],[113,105,78,-0.5064700578805059],[113,105,79,-0.5053090718574822],[113,106,64,-0.5227295868098736],[113,106,65,-0.520820114761591],[113,106,66,-0.5193138187751174],[113,106,67,-0.5183762442320585],[113,106,68,-0.5178399458527565],[113,106,69,-0.5172820575535297],[113,106,70,-0.5166258318349719],[113,106,71,-0.5157407047227025],[113,106,72,-0.5142517378553748],[113,106,73,-0.5122488643974066],[113,106,74,-0.5105016264133155],[113,106,75,-0.5092914546839893],[113,106,76,-0.5083487671799958],[113,106,77,-0.5074529582634568],[113,106,78,-0.5064700578805059],[113,106,79,-0.5053090718574822],[113,107,64,-0.5227295868098736],[113,107,65,-0.520820114761591],[113,107,66,-0.5193138187751174],[113,107,67,-0.5183762442320585],[113,107,68,-0.5178399458527565],[113,107,69,-0.5172820575535297],[113,107,70,-0.5166258318349719],[113,107,71,-0.5157407047227025],[113,107,72,-0.5142517378553748],[113,107,73,-0.5122488643974066],[113,107,74,-0.5105016264133155],[113,107,75,-0.5092914546839893],[113,107,76,-0.5083487671799958],[113,107,77,-0.5074529582634568],[113,107,78,-0.5064700578805059],[113,107,79,-0.5053090718574822],[113,108,64,-0.5227295868098736],[113,108,65,-0.520820114761591],[113,108,66,-0.5193138187751174],[113,108,67,-0.5183762442320585],[113,108,68,-0.5178399458527565],[113,108,69,-0.5172820575535297],[113,108,70,-0.5166258318349719],[113,108,71,-0.5157407047227025],[113,108,72,-0.5142517378553748],[113,108,73,-0.5122488643974066],[113,108,74,-0.5105016264133155],[113,108,75,-0.5092914546839893],[113,108,76,-0.5083487671799958],[113,108,77,-0.5074529582634568],[113,108,78,-0.5064700578805059],[113,108,79,-0.5053090718574822],[113,109,64,-0.5227295868098736],[113,109,65,-0.520820114761591],[113,109,66,-0.5193138187751174],[113,109,67,-0.5183762442320585],[113,109,68,-0.5178399458527565],[113,109,69,-0.5172820575535297],[113,109,70,-0.5166258318349719],[113,109,71,-0.5157407047227025],[113,109,72,-0.5142517378553748],[113,109,73,-0.5122488643974066],[113,109,74,-0.5105016264133155],[113,109,75,-0.5092914546839893],[113,109,76,-0.5083487671799958],[113,109,77,-0.5074529582634568],[113,109,78,-0.5064700578805059],[113,109,79,-0.5053090718574822],[113,110,64,-0.5227295868098736],[113,110,65,-0.520820114761591],[113,110,66,-0.5193138187751174],[113,110,67,-0.5183762442320585],[113,110,68,-0.5178399458527565],[113,110,69,-0.5172820575535297],[113,110,70,-0.5166258318349719],[113,110,71,-0.5157407047227025],[113,110,72,-0.5142517378553748],[113,110,73,-0.5122488643974066],[113,110,74,-0.5105016264133155],[113,110,75,-0.5092914546839893],[113,110,76,-0.5083487671799958],[113,110,77,-0.5074529582634568],[113,110,78,-0.5064700578805059],[113,110,79,-0.5053090718574822],[113,111,64,-0.5227295868098736],[113,111,65,-0.520820114761591],[113,111,66,-0.5193138187751174],[113,111,67,-0.5183762442320585],[113,111,68,-0.5178399458527565],[113,111,69,-0.5172820575535297],[113,111,70,-0.5166258318349719],[113,111,71,-0.5157407047227025],[113,111,72,-0.5142517378553748],[113,111,73,-0.5122488643974066],[113,111,74,-0.5105016264133155],[113,111,75,-0.5092914546839893],[113,111,76,-0.5083487671799958],[113,111,77,-0.5074529582634568],[113,111,78,-0.5064700578805059],[113,111,79,-0.5053090718574822],[113,112,64,-0.5227295868098736],[113,112,65,-0.520820114761591],[113,112,66,-0.5193138187751174],[113,112,67,-0.5183762442320585],[113,112,68,-0.5178399458527565],[113,112,69,-0.5172820575535297],[113,112,70,-0.5166258318349719],[113,112,71,-0.5157407047227025],[113,112,72,-0.5142517378553748],[113,112,73,-0.5122488643974066],[113,112,74,-0.5105016264133155],[113,112,75,-0.5092914546839893],[113,112,76,-0.5083487671799958],[113,112,77,-0.5074529582634568],[113,112,78,-0.5064700578805059],[113,112,79,-0.5053090718574822],[113,113,64,-0.5227295868098736],[113,113,65,-0.520820114761591],[113,113,66,-0.5193138187751174],[113,113,67,-0.5183762442320585],[113,113,68,-0.5178399458527565],[113,113,69,-0.5172820575535297],[113,113,70,-0.5166258318349719],[113,113,71,-0.5157407047227025],[113,113,72,-0.5142517378553748],[113,113,73,-0.5122488643974066],[113,113,74,-0.5105016264133155],[113,113,75,-0.5092914546839893],[113,113,76,-0.5083487671799958],[113,113,77,-0.5074529582634568],[113,113,78,-0.5064700578805059],[113,113,79,-0.5053090718574822],[113,114,64,-0.5227295868098736],[113,114,65,-0.520820114761591],[113,114,66,-0.5193138187751174],[113,114,67,-0.5183762442320585],[113,114,68,-0.5178399458527565],[113,114,69,-0.5172820575535297],[113,114,70,-0.5166258318349719],[113,114,71,-0.5157407047227025],[113,114,72,-0.5142517378553748],[113,114,73,-0.5122488643974066],[113,114,74,-0.5105016264133155],[113,114,75,-0.5092914546839893],[113,114,76,-0.5083487671799958],[113,114,77,-0.5074529582634568],[113,114,78,-0.5064700578805059],[113,114,79,-0.5053090718574822],[113,115,64,-0.5227295868098736],[113,115,65,-0.520820114761591],[113,115,66,-0.5193138187751174],[113,115,67,-0.5183762442320585],[113,115,68,-0.5178399458527565],[113,115,69,-0.5172820575535297],[113,115,70,-0.5166258318349719],[113,115,71,-0.5157407047227025],[113,115,72,-0.5142517378553748],[113,115,73,-0.5122488643974066],[113,115,74,-0.5105016264133155],[113,115,75,-0.5092914546839893],[113,115,76,-0.5083487671799958],[113,115,77,-0.5074529582634568],[113,115,78,-0.5064700578805059],[113,115,79,-0.5053090718574822],[113,116,64,-0.5227295868098736],[113,116,65,-0.520820114761591],[113,116,66,-0.5193138187751174],[113,116,67,-0.5183762442320585],[113,116,68,-0.5178399458527565],[113,116,69,-0.5172820575535297],[113,116,70,-0.5166258318349719],[113,116,71,-0.5157407047227025],[113,116,72,-0.5142517378553748],[113,116,73,-0.5122488643974066],[113,116,74,-0.5105016264133155],[113,116,75,-0.5092914546839893],[113,116,76,-0.5083487671799958],[113,116,77,-0.5074529582634568],[113,116,78,-0.5064700578805059],[113,116,79,-0.5053090718574822],[113,117,64,-0.5227295868098736],[113,117,65,-0.520820114761591],[113,117,66,-0.5193138187751174],[113,117,67,-0.5183762442320585],[113,117,68,-0.5178399458527565],[113,117,69,-0.5172820575535297],[113,117,70,-0.5166258318349719],[113,117,71,-0.5157407047227025],[113,117,72,-0.5142517378553748],[113,117,73,-0.5122488643974066],[113,117,74,-0.5105016264133155],[113,117,75,-0.5092914546839893],[113,117,76,-0.5083487671799958],[113,117,77,-0.5074529582634568],[113,117,78,-0.5064700578805059],[113,117,79,-0.5053090718574822],[113,118,64,-0.5227295868098736],[113,118,65,-0.520820114761591],[113,118,66,-0.5193138187751174],[113,118,67,-0.5183762442320585],[113,118,68,-0.5178399458527565],[113,118,69,-0.5172820575535297],[113,118,70,-0.5166258318349719],[113,118,71,-0.5157407047227025],[113,118,72,-0.5142517378553748],[113,118,73,-0.5122488643974066],[113,118,74,-0.5105016264133155],[113,118,75,-0.5092914546839893],[113,118,76,-0.5083487671799958],[113,118,77,-0.5074529582634568],[113,118,78,-0.5064700578805059],[113,118,79,-0.5053090718574822],[113,119,64,-0.5227295868098736],[113,119,65,-0.520820114761591],[113,119,66,-0.5193138187751174],[113,119,67,-0.5183762442320585],[113,119,68,-0.5178399458527565],[113,119,69,-0.5172820575535297],[113,119,70,-0.5166258318349719],[113,119,71,-0.5157407047227025],[113,119,72,-0.5142517378553748],[113,119,73,-0.5122488643974066],[113,119,74,-0.5105016264133155],[113,119,75,-0.5092914546839893],[113,119,76,-0.5083487671799958],[113,119,77,-0.5074529582634568],[113,119,78,-0.5064700578805059],[113,119,79,-0.5053090718574822],[113,120,64,-0.5227295868098736],[113,120,65,-0.520820114761591],[113,120,66,-0.5193138187751174],[113,120,67,-0.5183762442320585],[113,120,68,-0.5178399458527565],[113,120,69,-0.5172820575535297],[113,120,70,-0.5166258318349719],[113,120,71,-0.5157407047227025],[113,120,72,-0.5142517378553748],[113,120,73,-0.5122488643974066],[113,120,74,-0.5105016264133155],[113,120,75,-0.5092914546839893],[113,120,76,-0.5083487671799958],[113,120,77,-0.5074529582634568],[113,120,78,-0.5064700578805059],[113,120,79,-0.5053090718574822],[113,121,64,-0.5227295868098736],[113,121,65,-0.520820114761591],[113,121,66,-0.5193138187751174],[113,121,67,-0.5183762442320585],[113,121,68,-0.5178399458527565],[113,121,69,-0.5172820575535297],[113,121,70,-0.5166258318349719],[113,121,71,-0.5157407047227025],[113,121,72,-0.5142517378553748],[113,121,73,-0.5122488643974066],[113,121,74,-0.5105016264133155],[113,121,75,-0.5092914546839893],[113,121,76,-0.5083487671799958],[113,121,77,-0.5074529582634568],[113,121,78,-0.5064700578805059],[113,121,79,-0.5053090718574822],[113,122,64,-0.5227295868098736],[113,122,65,-0.520820114761591],[113,122,66,-0.5193138187751174],[113,122,67,-0.5183762442320585],[113,122,68,-0.5178399458527565],[113,122,69,-0.5172820575535297],[113,122,70,-0.5166258318349719],[113,122,71,-0.5157407047227025],[113,122,72,-0.5142517378553748],[113,122,73,-0.5122488643974066],[113,122,74,-0.5105016264133155],[113,122,75,-0.5092914546839893],[113,122,76,-0.5083487671799958],[113,122,77,-0.5074529582634568],[113,122,78,-0.5064700578805059],[113,122,79,-0.5053090718574822],[113,123,64,-0.5227295868098736],[113,123,65,-0.520820114761591],[113,123,66,-0.5193138187751174],[113,123,67,-0.5183762442320585],[113,123,68,-0.5178399458527565],[113,123,69,-0.5172820575535297],[113,123,70,-0.5166258318349719],[113,123,71,-0.5157407047227025],[113,123,72,-0.5142517378553748],[113,123,73,-0.5122488643974066],[113,123,74,-0.5105016264133155],[113,123,75,-0.5092914546839893],[113,123,76,-0.5083487671799958],[113,123,77,-0.5074529582634568],[113,123,78,-0.5064700578805059],[113,123,79,-0.5053090718574822],[113,124,64,-0.5227295868098736],[113,124,65,-0.520820114761591],[113,124,66,-0.5193138187751174],[113,124,67,-0.5183762442320585],[113,124,68,-0.5178399458527565],[113,124,69,-0.5172820575535297],[113,124,70,-0.5166258318349719],[113,124,71,-0.5157407047227025],[113,124,72,-0.5142517378553748],[113,124,73,-0.5122488643974066],[113,124,74,-0.5105016264133155],[113,124,75,-0.5092914546839893],[113,124,76,-0.5083487671799958],[113,124,77,-0.5074529582634568],[113,124,78,-0.5064700578805059],[113,124,79,-0.5053090718574822],[113,125,64,-0.5227295868098736],[113,125,65,-0.520820114761591],[113,125,66,-0.5193138187751174],[113,125,67,-0.5183762442320585],[113,125,68,-0.5178399458527565],[113,125,69,-0.5172820575535297],[113,125,70,-0.5166258318349719],[113,125,71,-0.5157407047227025],[113,125,72,-0.5142517378553748],[113,125,73,-0.5122488643974066],[113,125,74,-0.5105016264133155],[113,125,75,-0.5092914546839893],[113,125,76,-0.5083487671799958],[113,125,77,-0.5074529582634568],[113,125,78,-0.5064700578805059],[113,125,79,-0.5053090718574822],[113,126,64,-0.5227295868098736],[113,126,65,-0.520820114761591],[113,126,66,-0.5193138187751174],[113,126,67,-0.5183762442320585],[113,126,68,-0.5178399458527565],[113,126,69,-0.5172820575535297],[113,126,70,-0.5166258318349719],[113,126,71,-0.5157407047227025],[113,126,72,-0.5142517378553748],[113,126,73,-0.5122488643974066],[113,126,74,-0.5105016264133155],[113,126,75,-0.5092914546839893],[113,126,76,-0.5083487671799958],[113,126,77,-0.5074529582634568],[113,126,78,-0.5064700578805059],[113,126,79,-0.5053090718574822],[113,127,64,-0.5227295868098736],[113,127,65,-0.520820114761591],[113,127,66,-0.5193138187751174],[113,127,67,-0.5183762442320585],[113,127,68,-0.5178399458527565],[113,127,69,-0.5172820575535297],[113,127,70,-0.5166258318349719],[113,127,71,-0.5157407047227025],[113,127,72,-0.5142517378553748],[113,127,73,-0.5122488643974066],[113,127,74,-0.5105016264133155],[113,127,75,-0.5092914546839893],[113,127,76,-0.5083487671799958],[113,127,77,-0.5074529582634568],[113,127,78,-0.5064700578805059],[113,127,79,-0.5053090718574822],[113,128,64,-0.5227295868098736],[113,128,65,-0.520820114761591],[113,128,66,-0.5193138187751174],[113,128,67,-0.5183762442320585],[113,128,68,-0.5178399458527565],[113,128,69,-0.5172820575535297],[113,128,70,-0.5166258318349719],[113,128,71,-0.5157407047227025],[113,128,72,-0.5142517378553748],[113,128,73,-0.5122488643974066],[113,128,74,-0.5105016264133155],[113,128,75,-0.5092914546839893],[113,128,76,-0.5083487671799958],[113,128,77,-0.5074529582634568],[113,128,78,-0.5064700578805059],[113,128,79,-0.5053090718574822],[113,129,64,-0.5227295868098736],[113,129,65,-0.520820114761591],[113,129,66,-0.5193138187751174],[113,129,67,-0.5183762442320585],[113,129,68,-0.5178399458527565],[113,129,69,-0.5172820575535297],[113,129,70,-0.5166258318349719],[113,129,71,-0.5157407047227025],[113,129,72,-0.5142517378553748],[113,129,73,-0.5122488643974066],[113,129,74,-0.5105016264133155],[113,129,75,-0.5092914546839893],[113,129,76,-0.5083487671799958],[113,129,77,-0.5074529582634568],[113,129,78,-0.5064700578805059],[113,129,79,-0.5053090718574822],[113,130,64,-0.5227295868098736],[113,130,65,-0.520820114761591],[113,130,66,-0.5193138187751174],[113,130,67,-0.5183762442320585],[113,130,68,-0.5178399458527565],[113,130,69,-0.5172820575535297],[113,130,70,-0.5166258318349719],[113,130,71,-0.5157407047227025],[113,130,72,-0.5142517378553748],[113,130,73,-0.5122488643974066],[113,130,74,-0.5105016264133155],[113,130,75,-0.5092914546839893],[113,130,76,-0.5083487671799958],[113,130,77,-0.5074529582634568],[113,130,78,-0.5064700578805059],[113,130,79,-0.5053090718574822],[113,131,64,-0.5227295868098736],[113,131,65,-0.520820114761591],[113,131,66,-0.5193138187751174],[113,131,67,-0.5183762442320585],[113,131,68,-0.5178399458527565],[113,131,69,-0.5172820575535297],[113,131,70,-0.5166258318349719],[113,131,71,-0.5157407047227025],[113,131,72,-0.5142517378553748],[113,131,73,-0.5122488643974066],[113,131,74,-0.5105016264133155],[113,131,75,-0.5092914546839893],[113,131,76,-0.5083487671799958],[113,131,77,-0.5074529582634568],[113,131,78,-0.5064700578805059],[113,131,79,-0.5053090718574822],[113,132,64,-0.5227295868098736],[113,132,65,-0.520820114761591],[113,132,66,-0.5193138187751174],[113,132,67,-0.5183762442320585],[113,132,68,-0.5178399458527565],[113,132,69,-0.5172820575535297],[113,132,70,-0.5166258318349719],[113,132,71,-0.5157407047227025],[113,132,72,-0.5142517378553748],[113,132,73,-0.5122488643974066],[113,132,74,-0.5105016264133155],[113,132,75,-0.5092914546839893],[113,132,76,-0.5083487671799958],[113,132,77,-0.5074529582634568],[113,132,78,-0.5064700578805059],[113,132,79,-0.5053090718574822],[113,133,64,-0.5227295868098736],[113,133,65,-0.520820114761591],[113,133,66,-0.5193138187751174],[113,133,67,-0.5183762442320585],[113,133,68,-0.5178399458527565],[113,133,69,-0.5172820575535297],[113,133,70,-0.5166258318349719],[113,133,71,-0.5157407047227025],[113,133,72,-0.5142517378553748],[113,133,73,-0.5122488643974066],[113,133,74,-0.5105016264133155],[113,133,75,-0.5092914546839893],[113,133,76,-0.5083487671799958],[113,133,77,-0.5074529582634568],[113,133,78,-0.5064700578805059],[113,133,79,-0.5053090718574822],[113,134,64,-0.5227295868098736],[113,134,65,-0.520820114761591],[113,134,66,-0.5193138187751174],[113,134,67,-0.5183762442320585],[113,134,68,-0.5178399458527565],[113,134,69,-0.5172820575535297],[113,134,70,-0.5166258318349719],[113,134,71,-0.5157407047227025],[113,134,72,-0.5142517378553748],[113,134,73,-0.5122488643974066],[113,134,74,-0.5105016264133155],[113,134,75,-0.5092914546839893],[113,134,76,-0.5083487671799958],[113,134,77,-0.5074529582634568],[113,134,78,-0.5064700578805059],[113,134,79,-0.5053090718574822],[113,135,64,-0.5227295868098736],[113,135,65,-0.520820114761591],[113,135,66,-0.5193138187751174],[113,135,67,-0.5183762442320585],[113,135,68,-0.5178399458527565],[113,135,69,-0.5172820575535297],[113,135,70,-0.5166258318349719],[113,135,71,-0.5157407047227025],[113,135,72,-0.5142517378553748],[113,135,73,-0.5122488643974066],[113,135,74,-0.5105016264133155],[113,135,75,-0.5092914546839893],[113,135,76,-0.5083487671799958],[113,135,77,-0.5074529582634568],[113,135,78,-0.5064700578805059],[113,135,79,-0.5053090718574822],[113,136,64,-0.5227295868098736],[113,136,65,-0.520820114761591],[113,136,66,-0.5193138187751174],[113,136,67,-0.5183762442320585],[113,136,68,-0.5178399458527565],[113,136,69,-0.5172820575535297],[113,136,70,-0.5166258318349719],[113,136,71,-0.5157407047227025],[113,136,72,-0.5142517378553748],[113,136,73,-0.5122488643974066],[113,136,74,-0.5105016264133155],[113,136,75,-0.5092914546839893],[113,136,76,-0.5083487671799958],[113,136,77,-0.5074529582634568],[113,136,78,-0.5064700578805059],[113,136,79,-0.5053090718574822],[113,137,64,-0.5227295868098736],[113,137,65,-0.520820114761591],[113,137,66,-0.5193138187751174],[113,137,67,-0.5183762442320585],[113,137,68,-0.5178399458527565],[113,137,69,-0.5172820575535297],[113,137,70,-0.5166258318349719],[113,137,71,-0.5157407047227025],[113,137,72,-0.5142517378553748],[113,137,73,-0.5122488643974066],[113,137,74,-0.5105016264133155],[113,137,75,-0.5092914546839893],[113,137,76,-0.5083487671799958],[113,137,77,-0.5074529582634568],[113,137,78,-0.5064700578805059],[113,137,79,-0.5053090718574822],[113,138,64,-0.5227295868098736],[113,138,65,-0.520820114761591],[113,138,66,-0.5193138187751174],[113,138,67,-0.5183762442320585],[113,138,68,-0.5178399458527565],[113,138,69,-0.5172820575535297],[113,138,70,-0.5166258318349719],[113,138,71,-0.5157407047227025],[113,138,72,-0.5142517378553748],[113,138,73,-0.5122488643974066],[113,138,74,-0.5105016264133155],[113,138,75,-0.5092914546839893],[113,138,76,-0.5083487671799958],[113,138,77,-0.5074529582634568],[113,138,78,-0.5064700578805059],[113,138,79,-0.5053090718574822],[113,139,64,-0.5227295868098736],[113,139,65,-0.520820114761591],[113,139,66,-0.5193138187751174],[113,139,67,-0.5183762442320585],[113,139,68,-0.5178399458527565],[113,139,69,-0.5172820575535297],[113,139,70,-0.5166258318349719],[113,139,71,-0.5157407047227025],[113,139,72,-0.5142517378553748],[113,139,73,-0.5122488643974066],[113,139,74,-0.5105016264133155],[113,139,75,-0.5092914546839893],[113,139,76,-0.5083487671799958],[113,139,77,-0.5074529582634568],[113,139,78,-0.5064700578805059],[113,139,79,-0.5053090718574822],[113,140,64,-0.5227295868098736],[113,140,65,-0.520820114761591],[113,140,66,-0.5193138187751174],[113,140,67,-0.5183762442320585],[113,140,68,-0.5178399458527565],[113,140,69,-0.5172820575535297],[113,140,70,-0.5166258318349719],[113,140,71,-0.5157407047227025],[113,140,72,-0.5142517378553748],[113,140,73,-0.5122488643974066],[113,140,74,-0.5105016264133155],[113,140,75,-0.5092914546839893],[113,140,76,-0.5083487671799958],[113,140,77,-0.5074529582634568],[113,140,78,-0.5064700578805059],[113,140,79,-0.5053090718574822],[113,141,64,-0.5227295868098736],[113,141,65,-0.520820114761591],[113,141,66,-0.5193138187751174],[113,141,67,-0.5183762442320585],[113,141,68,-0.5178399458527565],[113,141,69,-0.5172820575535297],[113,141,70,-0.5166258318349719],[113,141,71,-0.5157407047227025],[113,141,72,-0.5142517378553748],[113,141,73,-0.5122488643974066],[113,141,74,-0.5105016264133155],[113,141,75,-0.5092914546839893],[113,141,76,-0.5083487671799958],[113,141,77,-0.5074529582634568],[113,141,78,-0.5064700578805059],[113,141,79,-0.5053090718574822],[113,142,64,-0.5227295868098736],[113,142,65,-0.520820114761591],[113,142,66,-0.5193138187751174],[113,142,67,-0.5183762442320585],[113,142,68,-0.5178399458527565],[113,142,69,-0.5172820575535297],[113,142,70,-0.5166258318349719],[113,142,71,-0.5157407047227025],[113,142,72,-0.5142517378553748],[113,142,73,-0.5122488643974066],[113,142,74,-0.5105016264133155],[113,142,75,-0.5092914546839893],[113,142,76,-0.5083487671799958],[113,142,77,-0.5074529582634568],[113,142,78,-0.5064700578805059],[113,142,79,-0.5053090718574822],[113,143,64,-0.5227295868098736],[113,143,65,-0.520820114761591],[113,143,66,-0.5193138187751174],[113,143,67,-0.5183762442320585],[113,143,68,-0.5178399458527565],[113,143,69,-0.5172820575535297],[113,143,70,-0.5166258318349719],[113,143,71,-0.5157407047227025],[113,143,72,-0.5142517378553748],[113,143,73,-0.5122488643974066],[113,143,74,-0.5105016264133155],[113,143,75,-0.5092914546839893],[113,143,76,-0.5083487671799958],[113,143,77,-0.5074529582634568],[113,143,78,-0.5064700578805059],[113,143,79,-0.5053090718574822],[113,144,64,-0.5227295868098736],[113,144,65,-0.520820114761591],[113,144,66,-0.5193138187751174],[113,144,67,-0.5183762442320585],[113,144,68,-0.5178399458527565],[113,144,69,-0.5172820575535297],[113,144,70,-0.5166258318349719],[113,144,71,-0.5157407047227025],[113,144,72,-0.5142517378553748],[113,144,73,-0.5122488643974066],[113,144,74,-0.5105016264133155],[113,144,75,-0.5092914546839893],[113,144,76,-0.5083487671799958],[113,144,77,-0.5074529582634568],[113,144,78,-0.5064700578805059],[113,144,79,-0.5053090718574822],[113,145,64,-0.5227295868098736],[113,145,65,-0.520820114761591],[113,145,66,-0.5193138187751174],[113,145,67,-0.5183762442320585],[113,145,68,-0.5178399458527565],[113,145,69,-0.5172820575535297],[113,145,70,-0.5166258318349719],[113,145,71,-0.5157407047227025],[113,145,72,-0.5142517378553748],[113,145,73,-0.5122488643974066],[113,145,74,-0.5105016264133155],[113,145,75,-0.5092914546839893],[113,145,76,-0.5083487671799958],[113,145,77,-0.5074529582634568],[113,145,78,-0.5064700578805059],[113,145,79,-0.5053090718574822],[113,146,64,-0.5227295868098736],[113,146,65,-0.520820114761591],[113,146,66,-0.5193138187751174],[113,146,67,-0.5183762442320585],[113,146,68,-0.5178399458527565],[113,146,69,-0.5172820575535297],[113,146,70,-0.5166258318349719],[113,146,71,-0.5157407047227025],[113,146,72,-0.5142517378553748],[113,146,73,-0.5122488643974066],[113,146,74,-0.5105016264133155],[113,146,75,-0.5092914546839893],[113,146,76,-0.5083487671799958],[113,146,77,-0.5074529582634568],[113,146,78,-0.5064700578805059],[113,146,79,-0.5053090718574822],[113,147,64,-0.5227295868098736],[113,147,65,-0.520820114761591],[113,147,66,-0.5193138187751174],[113,147,67,-0.5183762442320585],[113,147,68,-0.5178399458527565],[113,147,69,-0.5172820575535297],[113,147,70,-0.5166258318349719],[113,147,71,-0.5157407047227025],[113,147,72,-0.5142517378553748],[113,147,73,-0.5122488643974066],[113,147,74,-0.5105016264133155],[113,147,75,-0.5092914546839893],[113,147,76,-0.5083487671799958],[113,147,77,-0.5074529582634568],[113,147,78,-0.5064700578805059],[113,147,79,-0.5053090718574822],[113,148,64,-0.5227295868098736],[113,148,65,-0.520820114761591],[113,148,66,-0.5193138187751174],[113,148,67,-0.5183762442320585],[113,148,68,-0.5178399458527565],[113,148,69,-0.5172820575535297],[113,148,70,-0.5166258318349719],[113,148,71,-0.5157407047227025],[113,148,72,-0.5142517378553748],[113,148,73,-0.5122488643974066],[113,148,74,-0.5105016264133155],[113,148,75,-0.5092914546839893],[113,148,76,-0.5083487671799958],[113,148,77,-0.5074529582634568],[113,148,78,-0.5064700578805059],[113,148,79,-0.5053090718574822],[113,149,64,-0.5227295868098736],[113,149,65,-0.520820114761591],[113,149,66,-0.5193138187751174],[113,149,67,-0.5183762442320585],[113,149,68,-0.5178399458527565],[113,149,69,-0.5172820575535297],[113,149,70,-0.5166258318349719],[113,149,71,-0.5157407047227025],[113,149,72,-0.5142517378553748],[113,149,73,-0.5122488643974066],[113,149,74,-0.5105016264133155],[113,149,75,-0.5092914546839893],[113,149,76,-0.5083487671799958],[113,149,77,-0.5074529582634568],[113,149,78,-0.5064700578805059],[113,149,79,-0.5053090718574822],[113,150,64,-0.5227295868098736],[113,150,65,-0.520820114761591],[113,150,66,-0.5193138187751174],[113,150,67,-0.5183762442320585],[113,150,68,-0.5178399458527565],[113,150,69,-0.5172820575535297],[113,150,70,-0.5166258318349719],[113,150,71,-0.5157407047227025],[113,150,72,-0.5142517378553748],[113,150,73,-0.5122488643974066],[113,150,74,-0.5105016264133155],[113,150,75,-0.5092914546839893],[113,150,76,-0.5083487671799958],[113,150,77,-0.5074529582634568],[113,150,78,-0.5064700578805059],[113,150,79,-0.5053090718574822],[113,151,64,-0.5227295868098736],[113,151,65,-0.520820114761591],[113,151,66,-0.5193138187751174],[113,151,67,-0.5183762442320585],[113,151,68,-0.5178399458527565],[113,151,69,-0.5172820575535297],[113,151,70,-0.5166258318349719],[113,151,71,-0.5157407047227025],[113,151,72,-0.5142517378553748],[113,151,73,-0.5122488643974066],[113,151,74,-0.5105016264133155],[113,151,75,-0.5092914546839893],[113,151,76,-0.5083487671799958],[113,151,77,-0.5074529582634568],[113,151,78,-0.5064700578805059],[113,151,79,-0.5053090718574822],[113,152,64,-0.5227295868098736],[113,152,65,-0.520820114761591],[113,152,66,-0.5193138187751174],[113,152,67,-0.5183762442320585],[113,152,68,-0.5178399458527565],[113,152,69,-0.5172820575535297],[113,152,70,-0.5166258318349719],[113,152,71,-0.5157407047227025],[113,152,72,-0.5142517378553748],[113,152,73,-0.5122488643974066],[113,152,74,-0.5105016264133155],[113,152,75,-0.5092914546839893],[113,152,76,-0.5083487671799958],[113,152,77,-0.5074529582634568],[113,152,78,-0.5064700578805059],[113,152,79,-0.5053090718574822],[113,153,64,-0.5227295868098736],[113,153,65,-0.520820114761591],[113,153,66,-0.5193138187751174],[113,153,67,-0.5183762442320585],[113,153,68,-0.5178399458527565],[113,153,69,-0.5172820575535297],[113,153,70,-0.5166258318349719],[113,153,71,-0.5157407047227025],[113,153,72,-0.5142517378553748],[113,153,73,-0.5122488643974066],[113,153,74,-0.5105016264133155],[113,153,75,-0.5092914546839893],[113,153,76,-0.5083487671799958],[113,153,77,-0.5074529582634568],[113,153,78,-0.5064700578805059],[113,153,79,-0.5053090718574822],[113,154,64,-0.5227295868098736],[113,154,65,-0.520820114761591],[113,154,66,-0.5193138187751174],[113,154,67,-0.5183762442320585],[113,154,68,-0.5178399458527565],[113,154,69,-0.5172820575535297],[113,154,70,-0.5166258318349719],[113,154,71,-0.5157407047227025],[113,154,72,-0.5142517378553748],[113,154,73,-0.5122488643974066],[113,154,74,-0.5105016264133155],[113,154,75,-0.5092914546839893],[113,154,76,-0.5083487671799958],[113,154,77,-0.5074529582634568],[113,154,78,-0.5064700578805059],[113,154,79,-0.5053090718574822],[113,155,64,-0.5227295868098736],[113,155,65,-0.520820114761591],[113,155,66,-0.5193138187751174],[113,155,67,-0.5183762442320585],[113,155,68,-0.5178399458527565],[113,155,69,-0.5172820575535297],[113,155,70,-0.5166258318349719],[113,155,71,-0.5157407047227025],[113,155,72,-0.5142517378553748],[113,155,73,-0.5122488643974066],[113,155,74,-0.5105016264133155],[113,155,75,-0.5092914546839893],[113,155,76,-0.5083487671799958],[113,155,77,-0.5074529582634568],[113,155,78,-0.5064700578805059],[113,155,79,-0.5053090718574822],[113,156,64,-0.5227295868098736],[113,156,65,-0.520820114761591],[113,156,66,-0.5193138187751174],[113,156,67,-0.5183762442320585],[113,156,68,-0.5178399458527565],[113,156,69,-0.5172820575535297],[113,156,70,-0.5166258318349719],[113,156,71,-0.5157407047227025],[113,156,72,-0.5142517378553748],[113,156,73,-0.5122488643974066],[113,156,74,-0.5105016264133155],[113,156,75,-0.5092914546839893],[113,156,76,-0.5083487671799958],[113,156,77,-0.5074529582634568],[113,156,78,-0.5064700578805059],[113,156,79,-0.5053090718574822],[113,157,64,-0.5227295868098736],[113,157,65,-0.520820114761591],[113,157,66,-0.5193138187751174],[113,157,67,-0.5183762442320585],[113,157,68,-0.5178399458527565],[113,157,69,-0.5172820575535297],[113,157,70,-0.5166258318349719],[113,157,71,-0.5157407047227025],[113,157,72,-0.5142517378553748],[113,157,73,-0.5122488643974066],[113,157,74,-0.5105016264133155],[113,157,75,-0.5092914546839893],[113,157,76,-0.5083487671799958],[113,157,77,-0.5074529582634568],[113,157,78,-0.5064700578805059],[113,157,79,-0.5053090718574822],[113,158,64,-0.5227295868098736],[113,158,65,-0.520820114761591],[113,158,66,-0.5193138187751174],[113,158,67,-0.5183762442320585],[113,158,68,-0.5178399458527565],[113,158,69,-0.5172820575535297],[113,158,70,-0.5166258318349719],[113,158,71,-0.5157407047227025],[113,158,72,-0.5142517378553748],[113,158,73,-0.5122488643974066],[113,158,74,-0.5105016264133155],[113,158,75,-0.5092914546839893],[113,158,76,-0.5083487671799958],[113,158,77,-0.5074529582634568],[113,158,78,-0.5064700578805059],[113,158,79,-0.5053090718574822],[113,159,64,-0.5227295868098736],[113,159,65,-0.520820114761591],[113,159,66,-0.5193138187751174],[113,159,67,-0.5183762442320585],[113,159,68,-0.5178399458527565],[113,159,69,-0.5172820575535297],[113,159,70,-0.5166258318349719],[113,159,71,-0.5157407047227025],[113,159,72,-0.5142517378553748],[113,159,73,-0.5122488643974066],[113,159,74,-0.5105016264133155],[113,159,75,-0.5092914546839893],[113,159,76,-0.5083487671799958],[113,159,77,-0.5074529582634568],[113,159,78,-0.5064700578805059],[113,159,79,-0.5053090718574822],[113,160,64,-0.5227295868098736],[113,160,65,-0.520820114761591],[113,160,66,-0.5193138187751174],[113,160,67,-0.5183762442320585],[113,160,68,-0.5178399458527565],[113,160,69,-0.5172820575535297],[113,160,70,-0.5166258318349719],[113,160,71,-0.5157407047227025],[113,160,72,-0.5142517378553748],[113,160,73,-0.5122488643974066],[113,160,74,-0.5105016264133155],[113,160,75,-0.5092914546839893],[113,160,76,-0.5083487671799958],[113,160,77,-0.5074529582634568],[113,160,78,-0.5064700578805059],[113,160,79,-0.5053090718574822],[113,161,64,-0.5227295868098736],[113,161,65,-0.520820114761591],[113,161,66,-0.5193138187751174],[113,161,67,-0.5183762442320585],[113,161,68,-0.5178399458527565],[113,161,69,-0.5172820575535297],[113,161,70,-0.5166258318349719],[113,161,71,-0.5157407047227025],[113,161,72,-0.5142517378553748],[113,161,73,-0.5122488643974066],[113,161,74,-0.5105016264133155],[113,161,75,-0.5092914546839893],[113,161,76,-0.5083487671799958],[113,161,77,-0.5074529582634568],[113,161,78,-0.5064700578805059],[113,161,79,-0.5053090718574822],[113,162,64,-0.5227295868098736],[113,162,65,-0.520820114761591],[113,162,66,-0.5193138187751174],[113,162,67,-0.5183762442320585],[113,162,68,-0.5178399458527565],[113,162,69,-0.5172820575535297],[113,162,70,-0.5166258318349719],[113,162,71,-0.5157407047227025],[113,162,72,-0.5142517378553748],[113,162,73,-0.5122488643974066],[113,162,74,-0.5105016264133155],[113,162,75,-0.5092914546839893],[113,162,76,-0.5083487671799958],[113,162,77,-0.5074529582634568],[113,162,78,-0.5064700578805059],[113,162,79,-0.5053090718574822],[113,163,64,-0.5227295868098736],[113,163,65,-0.520820114761591],[113,163,66,-0.5193138187751174],[113,163,67,-0.5183762442320585],[113,163,68,-0.5178399458527565],[113,163,69,-0.5172820575535297],[113,163,70,-0.5166258318349719],[113,163,71,-0.5157407047227025],[113,163,72,-0.5142517378553748],[113,163,73,-0.5122488643974066],[113,163,74,-0.5105016264133155],[113,163,75,-0.5092914546839893],[113,163,76,-0.5083487671799958],[113,163,77,-0.5074529582634568],[113,163,78,-0.5064700578805059],[113,163,79,-0.5053090718574822],[113,164,64,-0.5227295868098736],[113,164,65,-0.520820114761591],[113,164,66,-0.5193138187751174],[113,164,67,-0.5183762442320585],[113,164,68,-0.5178399458527565],[113,164,69,-0.5172820575535297],[113,164,70,-0.5166258318349719],[113,164,71,-0.5157407047227025],[113,164,72,-0.5142517378553748],[113,164,73,-0.5122488643974066],[113,164,74,-0.5105016264133155],[113,164,75,-0.5092914546839893],[113,164,76,-0.5083487671799958],[113,164,77,-0.5074529582634568],[113,164,78,-0.5064700578805059],[113,164,79,-0.5053090718574822],[113,165,64,-0.5227295868098736],[113,165,65,-0.520820114761591],[113,165,66,-0.5193138187751174],[113,165,67,-0.5183762442320585],[113,165,68,-0.5178399458527565],[113,165,69,-0.5172820575535297],[113,165,70,-0.5166258318349719],[113,165,71,-0.5157407047227025],[113,165,72,-0.5142517378553748],[113,165,73,-0.5122488643974066],[113,165,74,-0.5105016264133155],[113,165,75,-0.5092914546839893],[113,165,76,-0.5083487671799958],[113,165,77,-0.5074529582634568],[113,165,78,-0.5064700578805059],[113,165,79,-0.5053090718574822],[113,166,64,-0.5227295868098736],[113,166,65,-0.520820114761591],[113,166,66,-0.5193138187751174],[113,166,67,-0.5183762442320585],[113,166,68,-0.5178399458527565],[113,166,69,-0.5172820575535297],[113,166,70,-0.5166258318349719],[113,166,71,-0.5157407047227025],[113,166,72,-0.5142517378553748],[113,166,73,-0.5122488643974066],[113,166,74,-0.5105016264133155],[113,166,75,-0.5092914546839893],[113,166,76,-0.5083487671799958],[113,166,77,-0.5074529582634568],[113,166,78,-0.5064700578805059],[113,166,79,-0.5053090718574822],[113,167,64,-0.5227295868098736],[113,167,65,-0.520820114761591],[113,167,66,-0.5193138187751174],[113,167,67,-0.5183762442320585],[113,167,68,-0.5178399458527565],[113,167,69,-0.5172820575535297],[113,167,70,-0.5166258318349719],[113,167,71,-0.5157407047227025],[113,167,72,-0.5142517378553748],[113,167,73,-0.5122488643974066],[113,167,74,-0.5105016264133155],[113,167,75,-0.5092914546839893],[113,167,76,-0.5083487671799958],[113,167,77,-0.5074529582634568],[113,167,78,-0.5064700578805059],[113,167,79,-0.5053090718574822],[113,168,64,-0.5227295868098736],[113,168,65,-0.520820114761591],[113,168,66,-0.5193138187751174],[113,168,67,-0.5183762442320585],[113,168,68,-0.5178399458527565],[113,168,69,-0.5172820575535297],[113,168,70,-0.5166258318349719],[113,168,71,-0.5157407047227025],[113,168,72,-0.5142517378553748],[113,168,73,-0.5122488643974066],[113,168,74,-0.5105016264133155],[113,168,75,-0.5092914546839893],[113,168,76,-0.5083487671799958],[113,168,77,-0.5074529582634568],[113,168,78,-0.5064700578805059],[113,168,79,-0.5053090718574822],[113,169,64,-0.5227295868098736],[113,169,65,-0.520820114761591],[113,169,66,-0.5193138187751174],[113,169,67,-0.5183762442320585],[113,169,68,-0.5178399458527565],[113,169,69,-0.5172820575535297],[113,169,70,-0.5166258318349719],[113,169,71,-0.5157407047227025],[113,169,72,-0.5142517378553748],[113,169,73,-0.5122488643974066],[113,169,74,-0.5105016264133155],[113,169,75,-0.5092914546839893],[113,169,76,-0.5083487671799958],[113,169,77,-0.5074529582634568],[113,169,78,-0.5064700578805059],[113,169,79,-0.5053090718574822],[113,170,64,-0.5227295868098736],[113,170,65,-0.520820114761591],[113,170,66,-0.5193138187751174],[113,170,67,-0.5183762442320585],[113,170,68,-0.5178399458527565],[113,170,69,-0.5172820575535297],[113,170,70,-0.5166258318349719],[113,170,71,-0.5157407047227025],[113,170,72,-0.5142517378553748],[113,170,73,-0.5122488643974066],[113,170,74,-0.5105016264133155],[113,170,75,-0.5092914546839893],[113,170,76,-0.5083487671799958],[113,170,77,-0.5074529582634568],[113,170,78,-0.5064700578805059],[113,170,79,-0.5053090718574822],[113,171,64,-0.5227295868098736],[113,171,65,-0.520820114761591],[113,171,66,-0.5193138187751174],[113,171,67,-0.5183762442320585],[113,171,68,-0.5178399458527565],[113,171,69,-0.5172820575535297],[113,171,70,-0.5166258318349719],[113,171,71,-0.5157407047227025],[113,171,72,-0.5142517378553748],[113,171,73,-0.5122488643974066],[113,171,74,-0.5105016264133155],[113,171,75,-0.5092914546839893],[113,171,76,-0.5083487671799958],[113,171,77,-0.5074529582634568],[113,171,78,-0.5064700578805059],[113,171,79,-0.5053090718574822],[113,172,64,-0.5227295868098736],[113,172,65,-0.520820114761591],[113,172,66,-0.5193138187751174],[113,172,67,-0.5183762442320585],[113,172,68,-0.5178399458527565],[113,172,69,-0.5172820575535297],[113,172,70,-0.5166258318349719],[113,172,71,-0.5157407047227025],[113,172,72,-0.5142517378553748],[113,172,73,-0.5122488643974066],[113,172,74,-0.5105016264133155],[113,172,75,-0.5092914546839893],[113,172,76,-0.5083487671799958],[113,172,77,-0.5074529582634568],[113,172,78,-0.5064700578805059],[113,172,79,-0.5053090718574822],[113,173,64,-0.5227295868098736],[113,173,65,-0.520820114761591],[113,173,66,-0.5193138187751174],[113,173,67,-0.5183762442320585],[113,173,68,-0.5178399458527565],[113,173,69,-0.5172820575535297],[113,173,70,-0.5166258318349719],[113,173,71,-0.5157407047227025],[113,173,72,-0.5142517378553748],[113,173,73,-0.5122488643974066],[113,173,74,-0.5105016264133155],[113,173,75,-0.5092914546839893],[113,173,76,-0.5083487671799958],[113,173,77,-0.5074529582634568],[113,173,78,-0.5064700578805059],[113,173,79,-0.5053090718574822],[113,174,64,-0.5227295868098736],[113,174,65,-0.520820114761591],[113,174,66,-0.5193138187751174],[113,174,67,-0.5183762442320585],[113,174,68,-0.5178399458527565],[113,174,69,-0.5172820575535297],[113,174,70,-0.5166258318349719],[113,174,71,-0.5157407047227025],[113,174,72,-0.5142517378553748],[113,174,73,-0.5122488643974066],[113,174,74,-0.5105016264133155],[113,174,75,-0.5092914546839893],[113,174,76,-0.5083487671799958],[113,174,77,-0.5074529582634568],[113,174,78,-0.5064700578805059],[113,174,79,-0.5053090718574822],[113,175,64,-0.5227295868098736],[113,175,65,-0.520820114761591],[113,175,66,-0.5193138187751174],[113,175,67,-0.5183762442320585],[113,175,68,-0.5178399458527565],[113,175,69,-0.5172820575535297],[113,175,70,-0.5166258318349719],[113,175,71,-0.5157407047227025],[113,175,72,-0.5142517378553748],[113,175,73,-0.5122488643974066],[113,175,74,-0.5105016264133155],[113,175,75,-0.5092914546839893],[113,175,76,-0.5083487671799958],[113,175,77,-0.5074529582634568],[113,175,78,-0.5064700578805059],[113,175,79,-0.5053090718574822],[113,176,64,-0.5227295868098736],[113,176,65,-0.520820114761591],[113,176,66,-0.5193138187751174],[113,176,67,-0.5183762442320585],[113,176,68,-0.5178399458527565],[113,176,69,-0.5172820575535297],[113,176,70,-0.5166258318349719],[113,176,71,-0.5157407047227025],[113,176,72,-0.5142517378553748],[113,176,73,-0.5122488643974066],[113,176,74,-0.5105016264133155],[113,176,75,-0.5092914546839893],[113,176,76,-0.5083487671799958],[113,176,77,-0.5074529582634568],[113,176,78,-0.5064700578805059],[113,176,79,-0.5053090718574822],[113,177,64,-0.5227295868098736],[113,177,65,-0.520820114761591],[113,177,66,-0.5193138187751174],[113,177,67,-0.5183762442320585],[113,177,68,-0.5178399458527565],[113,177,69,-0.5172820575535297],[113,177,70,-0.5166258318349719],[113,177,71,-0.5157407047227025],[113,177,72,-0.5142517378553748],[113,177,73,-0.5122488643974066],[113,177,74,-0.5105016264133155],[113,177,75,-0.5092914546839893],[113,177,76,-0.5083487671799958],[113,177,77,-0.5074529582634568],[113,177,78,-0.5064700578805059],[113,177,79,-0.5053090718574822],[113,178,64,-0.5227295868098736],[113,178,65,-0.520820114761591],[113,178,66,-0.5193138187751174],[113,178,67,-0.5183762442320585],[113,178,68,-0.5178399458527565],[113,178,69,-0.5172820575535297],[113,178,70,-0.5166258318349719],[113,178,71,-0.5157407047227025],[113,178,72,-0.5142517378553748],[113,178,73,-0.5122488643974066],[113,178,74,-0.5105016264133155],[113,178,75,-0.5092914546839893],[113,178,76,-0.5083487671799958],[113,178,77,-0.5074529582634568],[113,178,78,-0.5064700578805059],[113,178,79,-0.5053090718574822],[113,179,64,-0.5227295868098736],[113,179,65,-0.520820114761591],[113,179,66,-0.5193138187751174],[113,179,67,-0.5183762442320585],[113,179,68,-0.5178399458527565],[113,179,69,-0.5172820575535297],[113,179,70,-0.5166258318349719],[113,179,71,-0.5157407047227025],[113,179,72,-0.5142517378553748],[113,179,73,-0.5122488643974066],[113,179,74,-0.5105016264133155],[113,179,75,-0.5092914546839893],[113,179,76,-0.5083487671799958],[113,179,77,-0.5074529582634568],[113,179,78,-0.5064700578805059],[113,179,79,-0.5053090718574822],[113,180,64,-0.5227295868098736],[113,180,65,-0.520820114761591],[113,180,66,-0.5193138187751174],[113,180,67,-0.5183762442320585],[113,180,68,-0.5178399458527565],[113,180,69,-0.5172820575535297],[113,180,70,-0.5166258318349719],[113,180,71,-0.5157407047227025],[113,180,72,-0.5142517378553748],[113,180,73,-0.5122488643974066],[113,180,74,-0.5105016264133155],[113,180,75,-0.5092914546839893],[113,180,76,-0.5083487671799958],[113,180,77,-0.5074529582634568],[113,180,78,-0.5064700578805059],[113,180,79,-0.5053090718574822],[113,181,64,-0.5227295868098736],[113,181,65,-0.520820114761591],[113,181,66,-0.5193138187751174],[113,181,67,-0.5183762442320585],[113,181,68,-0.5178399458527565],[113,181,69,-0.5172820575535297],[113,181,70,-0.5166258318349719],[113,181,71,-0.5157407047227025],[113,181,72,-0.5142517378553748],[113,181,73,-0.5122488643974066],[113,181,74,-0.5105016264133155],[113,181,75,-0.5092914546839893],[113,181,76,-0.5083487671799958],[113,181,77,-0.5074529582634568],[113,181,78,-0.5064700578805059],[113,181,79,-0.5053090718574822],[113,182,64,-0.5227295868098736],[113,182,65,-0.520820114761591],[113,182,66,-0.5193138187751174],[113,182,67,-0.5183762442320585],[113,182,68,-0.5178399458527565],[113,182,69,-0.5172820575535297],[113,182,70,-0.5166258318349719],[113,182,71,-0.5157407047227025],[113,182,72,-0.5142517378553748],[113,182,73,-0.5122488643974066],[113,182,74,-0.5105016264133155],[113,182,75,-0.5092914546839893],[113,182,76,-0.5083487671799958],[113,182,77,-0.5074529582634568],[113,182,78,-0.5064700578805059],[113,182,79,-0.5053090718574822],[113,183,64,-0.5227295868098736],[113,183,65,-0.520820114761591],[113,183,66,-0.5193138187751174],[113,183,67,-0.5183762442320585],[113,183,68,-0.5178399458527565],[113,183,69,-0.5172820575535297],[113,183,70,-0.5166258318349719],[113,183,71,-0.5157407047227025],[113,183,72,-0.5142517378553748],[113,183,73,-0.5122488643974066],[113,183,74,-0.5105016264133155],[113,183,75,-0.5092914546839893],[113,183,76,-0.5083487671799958],[113,183,77,-0.5074529582634568],[113,183,78,-0.5064700578805059],[113,183,79,-0.5053090718574822],[113,184,64,-0.5227295868098736],[113,184,65,-0.520820114761591],[113,184,66,-0.5193138187751174],[113,184,67,-0.5183762442320585],[113,184,68,-0.5178399458527565],[113,184,69,-0.5172820575535297],[113,184,70,-0.5166258318349719],[113,184,71,-0.5157407047227025],[113,184,72,-0.5142517378553748],[113,184,73,-0.5122488643974066],[113,184,74,-0.5105016264133155],[113,184,75,-0.5092914546839893],[113,184,76,-0.5083487671799958],[113,184,77,-0.5074529582634568],[113,184,78,-0.5064700578805059],[113,184,79,-0.5053090718574822],[113,185,64,-0.5227295868098736],[113,185,65,-0.520820114761591],[113,185,66,-0.5193138187751174],[113,185,67,-0.5183762442320585],[113,185,68,-0.5178399458527565],[113,185,69,-0.5172820575535297],[113,185,70,-0.5166258318349719],[113,185,71,-0.5157407047227025],[113,185,72,-0.5142517378553748],[113,185,73,-0.5122488643974066],[113,185,74,-0.5105016264133155],[113,185,75,-0.5092914546839893],[113,185,76,-0.5083487671799958],[113,185,77,-0.5074529582634568],[113,185,78,-0.5064700578805059],[113,185,79,-0.5053090718574822],[113,186,64,-0.5227295868098736],[113,186,65,-0.520820114761591],[113,186,66,-0.5193138187751174],[113,186,67,-0.5183762442320585],[113,186,68,-0.5178399458527565],[113,186,69,-0.5172820575535297],[113,186,70,-0.5166258318349719],[113,186,71,-0.5157407047227025],[113,186,72,-0.5142517378553748],[113,186,73,-0.5122488643974066],[113,186,74,-0.5105016264133155],[113,186,75,-0.5092914546839893],[113,186,76,-0.5083487671799958],[113,186,77,-0.5074529582634568],[113,186,78,-0.5064700578805059],[113,186,79,-0.5053090718574822],[113,187,64,-0.5227295868098736],[113,187,65,-0.520820114761591],[113,187,66,-0.5193138187751174],[113,187,67,-0.5183762442320585],[113,187,68,-0.5178399458527565],[113,187,69,-0.5172820575535297],[113,187,70,-0.5166258318349719],[113,187,71,-0.5157407047227025],[113,187,72,-0.5142517378553748],[113,187,73,-0.5122488643974066],[113,187,74,-0.5105016264133155],[113,187,75,-0.5092914546839893],[113,187,76,-0.5083487671799958],[113,187,77,-0.5074529582634568],[113,187,78,-0.5064700578805059],[113,187,79,-0.5053090718574822],[113,188,64,-0.5227295868098736],[113,188,65,-0.520820114761591],[113,188,66,-0.5193138187751174],[113,188,67,-0.5183762442320585],[113,188,68,-0.5178399458527565],[113,188,69,-0.5172820575535297],[113,188,70,-0.5166258318349719],[113,188,71,-0.5157407047227025],[113,188,72,-0.5142517378553748],[113,188,73,-0.5122488643974066],[113,188,74,-0.5105016264133155],[113,188,75,-0.5092914546839893],[113,188,76,-0.5083487671799958],[113,188,77,-0.5074529582634568],[113,188,78,-0.5064700578805059],[113,188,79,-0.5053090718574822],[113,189,64,-0.5227295868098736],[113,189,65,-0.520820114761591],[113,189,66,-0.5193138187751174],[113,189,67,-0.5183762442320585],[113,189,68,-0.5178399458527565],[113,189,69,-0.5172820575535297],[113,189,70,-0.5166258318349719],[113,189,71,-0.5157407047227025],[113,189,72,-0.5142517378553748],[113,189,73,-0.5122488643974066],[113,189,74,-0.5105016264133155],[113,189,75,-0.5092914546839893],[113,189,76,-0.5083487671799958],[113,189,77,-0.5074529582634568],[113,189,78,-0.5064700578805059],[113,189,79,-0.5053090718574822],[113,190,64,-0.5227295868098736],[113,190,65,-0.520820114761591],[113,190,66,-0.5193138187751174],[113,190,67,-0.5183762442320585],[113,190,68,-0.5178399458527565],[113,190,69,-0.5172820575535297],[113,190,70,-0.5166258318349719],[113,190,71,-0.5157407047227025],[113,190,72,-0.5142517378553748],[113,190,73,-0.5122488643974066],[113,190,74,-0.5105016264133155],[113,190,75,-0.5092914546839893],[113,190,76,-0.5083487671799958],[113,190,77,-0.5074529582634568],[113,190,78,-0.5064700578805059],[113,190,79,-0.5053090718574822],[113,191,64,-0.5227295868098736],[113,191,65,-0.520820114761591],[113,191,66,-0.5193138187751174],[113,191,67,-0.5183762442320585],[113,191,68,-0.5178399458527565],[113,191,69,-0.5172820575535297],[113,191,70,-0.5166258318349719],[113,191,71,-0.5157407047227025],[113,191,72,-0.5142517378553748],[113,191,73,-0.5122488643974066],[113,191,74,-0.5105016264133155],[113,191,75,-0.5092914546839893],[113,191,76,-0.5083487671799958],[113,191,77,-0.5074529582634568],[113,191,78,-0.5064700578805059],[113,191,79,-0.5053090718574822],[113,192,64,-0.5227295868098736],[113,192,65,-0.520820114761591],[113,192,66,-0.5193138187751174],[113,192,67,-0.5183762442320585],[113,192,68,-0.5178399458527565],[113,192,69,-0.5172820575535297],[113,192,70,-0.5166258318349719],[113,192,71,-0.5157407047227025],[113,192,72,-0.5142517378553748],[113,192,73,-0.5122488643974066],[113,192,74,-0.5105016264133155],[113,192,75,-0.5092914546839893],[113,192,76,-0.5083487671799958],[113,192,77,-0.5074529582634568],[113,192,78,-0.5064700578805059],[113,192,79,-0.5053090718574822],[113,193,64,-0.5227295868098736],[113,193,65,-0.520820114761591],[113,193,66,-0.5193138187751174],[113,193,67,-0.5183762442320585],[113,193,68,-0.5178399458527565],[113,193,69,-0.5172820575535297],[113,193,70,-0.5166258318349719],[113,193,71,-0.5157407047227025],[113,193,72,-0.5142517378553748],[113,193,73,-0.5122488643974066],[113,193,74,-0.5105016264133155],[113,193,75,-0.5092914546839893],[113,193,76,-0.5083487671799958],[113,193,77,-0.5074529582634568],[113,193,78,-0.5064700578805059],[113,193,79,-0.5053090718574822],[113,194,64,-0.5227295868098736],[113,194,65,-0.520820114761591],[113,194,66,-0.5193138187751174],[113,194,67,-0.5183762442320585],[113,194,68,-0.5178399458527565],[113,194,69,-0.5172820575535297],[113,194,70,-0.5166258318349719],[113,194,71,-0.5157407047227025],[113,194,72,-0.5142517378553748],[113,194,73,-0.5122488643974066],[113,194,74,-0.5105016264133155],[113,194,75,-0.5092914546839893],[113,194,76,-0.5083487671799958],[113,194,77,-0.5074529582634568],[113,194,78,-0.5064700578805059],[113,194,79,-0.5053090718574822],[113,195,64,-0.5227295868098736],[113,195,65,-0.520820114761591],[113,195,66,-0.5193138187751174],[113,195,67,-0.5183762442320585],[113,195,68,-0.5178399458527565],[113,195,69,-0.5172820575535297],[113,195,70,-0.5166258318349719],[113,195,71,-0.5157407047227025],[113,195,72,-0.5142517378553748],[113,195,73,-0.5122488643974066],[113,195,74,-0.5105016264133155],[113,195,75,-0.5092914546839893],[113,195,76,-0.5083487671799958],[113,195,77,-0.5074529582634568],[113,195,78,-0.5064700578805059],[113,195,79,-0.5053090718574822],[113,196,64,-0.5227295868098736],[113,196,65,-0.520820114761591],[113,196,66,-0.5193138187751174],[113,196,67,-0.5183762442320585],[113,196,68,-0.5178399458527565],[113,196,69,-0.5172820575535297],[113,196,70,-0.5166258318349719],[113,196,71,-0.5157407047227025],[113,196,72,-0.5142517378553748],[113,196,73,-0.5122488643974066],[113,196,74,-0.5105016264133155],[113,196,75,-0.5092914546839893],[113,196,76,-0.5083487671799958],[113,196,77,-0.5074529582634568],[113,196,78,-0.5064700578805059],[113,196,79,-0.5053090718574822],[113,197,64,-0.5227295868098736],[113,197,65,-0.520820114761591],[113,197,66,-0.5193138187751174],[113,197,67,-0.5183762442320585],[113,197,68,-0.5178399458527565],[113,197,69,-0.5172820575535297],[113,197,70,-0.5166258318349719],[113,197,71,-0.5157407047227025],[113,197,72,-0.5142517378553748],[113,197,73,-0.5122488643974066],[113,197,74,-0.5105016264133155],[113,197,75,-0.5092914546839893],[113,197,76,-0.5083487671799958],[113,197,77,-0.5074529582634568],[113,197,78,-0.5064700578805059],[113,197,79,-0.5053090718574822],[113,198,64,-0.5227295868098736],[113,198,65,-0.520820114761591],[113,198,66,-0.5193138187751174],[113,198,67,-0.5183762442320585],[113,198,68,-0.5178399458527565],[113,198,69,-0.5172820575535297],[113,198,70,-0.5166258318349719],[113,198,71,-0.5157407047227025],[113,198,72,-0.5142517378553748],[113,198,73,-0.5122488643974066],[113,198,74,-0.5105016264133155],[113,198,75,-0.5092914546839893],[113,198,76,-0.5083487671799958],[113,198,77,-0.5074529582634568],[113,198,78,-0.5064700578805059],[113,198,79,-0.5053090718574822],[113,199,64,-0.5227295868098736],[113,199,65,-0.520820114761591],[113,199,66,-0.5193138187751174],[113,199,67,-0.5183762442320585],[113,199,68,-0.5178399458527565],[113,199,69,-0.5172820575535297],[113,199,70,-0.5166258318349719],[113,199,71,-0.5157407047227025],[113,199,72,-0.5142517378553748],[113,199,73,-0.5122488643974066],[113,199,74,-0.5105016264133155],[113,199,75,-0.5092914546839893],[113,199,76,-0.5083487671799958],[113,199,77,-0.5074529582634568],[113,199,78,-0.5064700578805059],[113,199,79,-0.5053090718574822],[113,200,64,-0.5227295868098736],[113,200,65,-0.520820114761591],[113,200,66,-0.5193138187751174],[113,200,67,-0.5183762442320585],[113,200,68,-0.5178399458527565],[113,200,69,-0.5172820575535297],[113,200,70,-0.5166258318349719],[113,200,71,-0.5157407047227025],[113,200,72,-0.5142517378553748],[113,200,73,-0.5122488643974066],[113,200,74,-0.5105016264133155],[113,200,75,-0.5092914546839893],[113,200,76,-0.5083487671799958],[113,200,77,-0.5074529582634568],[113,200,78,-0.5064700578805059],[113,200,79,-0.5053090718574822],[113,201,64,-0.5227295868098736],[113,201,65,-0.520820114761591],[113,201,66,-0.5193138187751174],[113,201,67,-0.5183762442320585],[113,201,68,-0.5178399458527565],[113,201,69,-0.5172820575535297],[113,201,70,-0.5166258318349719],[113,201,71,-0.5157407047227025],[113,201,72,-0.5142517378553748],[113,201,73,-0.5122488643974066],[113,201,74,-0.5105016264133155],[113,201,75,-0.5092914546839893],[113,201,76,-0.5083487671799958],[113,201,77,-0.5074529582634568],[113,201,78,-0.5064700578805059],[113,201,79,-0.5053090718574822],[113,202,64,-0.5227295868098736],[113,202,65,-0.520820114761591],[113,202,66,-0.5193138187751174],[113,202,67,-0.5183762442320585],[113,202,68,-0.5178399458527565],[113,202,69,-0.5172820575535297],[113,202,70,-0.5166258318349719],[113,202,71,-0.5157407047227025],[113,202,72,-0.5142517378553748],[113,202,73,-0.5122488643974066],[113,202,74,-0.5105016264133155],[113,202,75,-0.5092914546839893],[113,202,76,-0.5083487671799958],[113,202,77,-0.5074529582634568],[113,202,78,-0.5064700578805059],[113,202,79,-0.5053090718574822],[113,203,64,-0.5227295868098736],[113,203,65,-0.520820114761591],[113,203,66,-0.5193138187751174],[113,203,67,-0.5183762442320585],[113,203,68,-0.5178399458527565],[113,203,69,-0.5172820575535297],[113,203,70,-0.5166258318349719],[113,203,71,-0.5157407047227025],[113,203,72,-0.5142517378553748],[113,203,73,-0.5122488643974066],[113,203,74,-0.5105016264133155],[113,203,75,-0.5092914546839893],[113,203,76,-0.5083487671799958],[113,203,77,-0.5074529582634568],[113,203,78,-0.5064700578805059],[113,203,79,-0.5053090718574822],[113,204,64,-0.5227295868098736],[113,204,65,-0.520820114761591],[113,204,66,-0.5193138187751174],[113,204,67,-0.5183762442320585],[113,204,68,-0.5178399458527565],[113,204,69,-0.5172820575535297],[113,204,70,-0.5166258318349719],[113,204,71,-0.5157407047227025],[113,204,72,-0.5142517378553748],[113,204,73,-0.5122488643974066],[113,204,74,-0.5105016264133155],[113,204,75,-0.5092914546839893],[113,204,76,-0.5083487671799958],[113,204,77,-0.5074529582634568],[113,204,78,-0.5064700578805059],[113,204,79,-0.5053090718574822],[113,205,64,-0.5227295868098736],[113,205,65,-0.520820114761591],[113,205,66,-0.5193138187751174],[113,205,67,-0.5183762442320585],[113,205,68,-0.5178399458527565],[113,205,69,-0.5172820575535297],[113,205,70,-0.5166258318349719],[113,205,71,-0.5157407047227025],[113,205,72,-0.5142517378553748],[113,205,73,-0.5122488643974066],[113,205,74,-0.5105016264133155],[113,205,75,-0.5092914546839893],[113,205,76,-0.5083487671799958],[113,205,77,-0.5074529582634568],[113,205,78,-0.5064700578805059],[113,205,79,-0.5053090718574822],[113,206,64,-0.5227295868098736],[113,206,65,-0.520820114761591],[113,206,66,-0.5193138187751174],[113,206,67,-0.5183762442320585],[113,206,68,-0.5178399458527565],[113,206,69,-0.5172820575535297],[113,206,70,-0.5166258318349719],[113,206,71,-0.5157407047227025],[113,206,72,-0.5142517378553748],[113,206,73,-0.5122488643974066],[113,206,74,-0.5105016264133155],[113,206,75,-0.5092914546839893],[113,206,76,-0.5083487671799958],[113,206,77,-0.5074529582634568],[113,206,78,-0.5064700578805059],[113,206,79,-0.5053090718574822],[113,207,64,-0.5227295868098736],[113,207,65,-0.520820114761591],[113,207,66,-0.5193138187751174],[113,207,67,-0.5183762442320585],[113,207,68,-0.5178399458527565],[113,207,69,-0.5172820575535297],[113,207,70,-0.5166258318349719],[113,207,71,-0.5157407047227025],[113,207,72,-0.5142517378553748],[113,207,73,-0.5122488643974066],[113,207,74,-0.5105016264133155],[113,207,75,-0.5092914546839893],[113,207,76,-0.5083487671799958],[113,207,77,-0.5074529582634568],[113,207,78,-0.5064700578805059],[113,207,79,-0.5053090718574822],[113,208,64,-0.5227295868098736],[113,208,65,-0.520820114761591],[113,208,66,-0.5193138187751174],[113,208,67,-0.5183762442320585],[113,208,68,-0.5178399458527565],[113,208,69,-0.5172820575535297],[113,208,70,-0.5166258318349719],[113,208,71,-0.5157407047227025],[113,208,72,-0.5142517378553748],[113,208,73,-0.5122488643974066],[113,208,74,-0.5105016264133155],[113,208,75,-0.5092914546839893],[113,208,76,-0.5083487671799958],[113,208,77,-0.5074529582634568],[113,208,78,-0.5064700578805059],[113,208,79,-0.5053090718574822],[113,209,64,-0.5227295868098736],[113,209,65,-0.520820114761591],[113,209,66,-0.5193138187751174],[113,209,67,-0.5183762442320585],[113,209,68,-0.5178399458527565],[113,209,69,-0.5172820575535297],[113,209,70,-0.5166258318349719],[113,209,71,-0.5157407047227025],[113,209,72,-0.5142517378553748],[113,209,73,-0.5122488643974066],[113,209,74,-0.5105016264133155],[113,209,75,-0.5092914546839893],[113,209,76,-0.5083487671799958],[113,209,77,-0.5074529582634568],[113,209,78,-0.5064700578805059],[113,209,79,-0.5053090718574822],[113,210,64,-0.5227295868098736],[113,210,65,-0.520820114761591],[113,210,66,-0.5193138187751174],[113,210,67,-0.5183762442320585],[113,210,68,-0.5178399458527565],[113,210,69,-0.5172820575535297],[113,210,70,-0.5166258318349719],[113,210,71,-0.5157407047227025],[113,210,72,-0.5142517378553748],[113,210,73,-0.5122488643974066],[113,210,74,-0.5105016264133155],[113,210,75,-0.5092914546839893],[113,210,76,-0.5083487671799958],[113,210,77,-0.5074529582634568],[113,210,78,-0.5064700578805059],[113,210,79,-0.5053090718574822],[113,211,64,-0.5227295868098736],[113,211,65,-0.520820114761591],[113,211,66,-0.5193138187751174],[113,211,67,-0.5183762442320585],[113,211,68,-0.5178399458527565],[113,211,69,-0.5172820575535297],[113,211,70,-0.5166258318349719],[113,211,71,-0.5157407047227025],[113,211,72,-0.5142517378553748],[113,211,73,-0.5122488643974066],[113,211,74,-0.5105016264133155],[113,211,75,-0.5092914546839893],[113,211,76,-0.5083487671799958],[113,211,77,-0.5074529582634568],[113,211,78,-0.5064700578805059],[113,211,79,-0.5053090718574822],[113,212,64,-0.5227295868098736],[113,212,65,-0.520820114761591],[113,212,66,-0.5193138187751174],[113,212,67,-0.5183762442320585],[113,212,68,-0.5178399458527565],[113,212,69,-0.5172820575535297],[113,212,70,-0.5166258318349719],[113,212,71,-0.5157407047227025],[113,212,72,-0.5142517378553748],[113,212,73,-0.5122488643974066],[113,212,74,-0.5105016264133155],[113,212,75,-0.5092914546839893],[113,212,76,-0.5083487671799958],[113,212,77,-0.5074529582634568],[113,212,78,-0.5064700578805059],[113,212,79,-0.5053090718574822],[113,213,64,-0.5227295868098736],[113,213,65,-0.520820114761591],[113,213,66,-0.5193138187751174],[113,213,67,-0.5183762442320585],[113,213,68,-0.5178399458527565],[113,213,69,-0.5172820575535297],[113,213,70,-0.5166258318349719],[113,213,71,-0.5157407047227025],[113,213,72,-0.5142517378553748],[113,213,73,-0.5122488643974066],[113,213,74,-0.5105016264133155],[113,213,75,-0.5092914546839893],[113,213,76,-0.5083487671799958],[113,213,77,-0.5074529582634568],[113,213,78,-0.5064700578805059],[113,213,79,-0.5053090718574822],[113,214,64,-0.5227295868098736],[113,214,65,-0.520820114761591],[113,214,66,-0.5193138187751174],[113,214,67,-0.5183762442320585],[113,214,68,-0.5178399458527565],[113,214,69,-0.5172820575535297],[113,214,70,-0.5166258318349719],[113,214,71,-0.5157407047227025],[113,214,72,-0.5142517378553748],[113,214,73,-0.5122488643974066],[113,214,74,-0.5105016264133155],[113,214,75,-0.5092914546839893],[113,214,76,-0.5083487671799958],[113,214,77,-0.5074529582634568],[113,214,78,-0.5064700578805059],[113,214,79,-0.5053090718574822],[113,215,64,-0.5227295868098736],[113,215,65,-0.520820114761591],[113,215,66,-0.5193138187751174],[113,215,67,-0.5183762442320585],[113,215,68,-0.5178399458527565],[113,215,69,-0.5172820575535297],[113,215,70,-0.5166258318349719],[113,215,71,-0.5157407047227025],[113,215,72,-0.5142517378553748],[113,215,73,-0.5122488643974066],[113,215,74,-0.5105016264133155],[113,215,75,-0.5092914546839893],[113,215,76,-0.5083487671799958],[113,215,77,-0.5074529582634568],[113,215,78,-0.5064700578805059],[113,215,79,-0.5053090718574822],[113,216,64,-0.5227295868098736],[113,216,65,-0.520820114761591],[113,216,66,-0.5193138187751174],[113,216,67,-0.5183762442320585],[113,216,68,-0.5178399458527565],[113,216,69,-0.5172820575535297],[113,216,70,-0.5166258318349719],[113,216,71,-0.5157407047227025],[113,216,72,-0.5142517378553748],[113,216,73,-0.5122488643974066],[113,216,74,-0.5105016264133155],[113,216,75,-0.5092914546839893],[113,216,76,-0.5083487671799958],[113,216,77,-0.5074529582634568],[113,216,78,-0.5064700578805059],[113,216,79,-0.5053090718574822],[113,217,64,-0.5227295868098736],[113,217,65,-0.520820114761591],[113,217,66,-0.5193138187751174],[113,217,67,-0.5183762442320585],[113,217,68,-0.5178399458527565],[113,217,69,-0.5172820575535297],[113,217,70,-0.5166258318349719],[113,217,71,-0.5157407047227025],[113,217,72,-0.5142517378553748],[113,217,73,-0.5122488643974066],[113,217,74,-0.5105016264133155],[113,217,75,-0.5092914546839893],[113,217,76,-0.5083487671799958],[113,217,77,-0.5074529582634568],[113,217,78,-0.5064700578805059],[113,217,79,-0.5053090718574822],[113,218,64,-0.5227295868098736],[113,218,65,-0.520820114761591],[113,218,66,-0.5193138187751174],[113,218,67,-0.5183762442320585],[113,218,68,-0.5178399458527565],[113,218,69,-0.5172820575535297],[113,218,70,-0.5166258318349719],[113,218,71,-0.5157407047227025],[113,218,72,-0.5142517378553748],[113,218,73,-0.5122488643974066],[113,218,74,-0.5105016264133155],[113,218,75,-0.5092914546839893],[113,218,76,-0.5083487671799958],[113,218,77,-0.5074529582634568],[113,218,78,-0.5064700578805059],[113,218,79,-0.5053090718574822],[113,219,64,-0.5227295868098736],[113,219,65,-0.520820114761591],[113,219,66,-0.5193138187751174],[113,219,67,-0.5183762442320585],[113,219,68,-0.5178399458527565],[113,219,69,-0.5172820575535297],[113,219,70,-0.5166258318349719],[113,219,71,-0.5157407047227025],[113,219,72,-0.5142517378553748],[113,219,73,-0.5122488643974066],[113,219,74,-0.5105016264133155],[113,219,75,-0.5092914546839893],[113,219,76,-0.5083487671799958],[113,219,77,-0.5074529582634568],[113,219,78,-0.5064700578805059],[113,219,79,-0.5053090718574822],[113,220,64,-0.5227295868098736],[113,220,65,-0.520820114761591],[113,220,66,-0.5193138187751174],[113,220,67,-0.5183762442320585],[113,220,68,-0.5178399458527565],[113,220,69,-0.5172820575535297],[113,220,70,-0.5166258318349719],[113,220,71,-0.5157407047227025],[113,220,72,-0.5142517378553748],[113,220,73,-0.5122488643974066],[113,220,74,-0.5105016264133155],[113,220,75,-0.5092914546839893],[113,220,76,-0.5083487671799958],[113,220,77,-0.5074529582634568],[113,220,78,-0.5064700578805059],[113,220,79,-0.5053090718574822],[113,221,64,-0.5227295868098736],[113,221,65,-0.520820114761591],[113,221,66,-0.5193138187751174],[113,221,67,-0.5183762442320585],[113,221,68,-0.5178399458527565],[113,221,69,-0.5172820575535297],[113,221,70,-0.5166258318349719],[113,221,71,-0.5157407047227025],[113,221,72,-0.5142517378553748],[113,221,73,-0.5122488643974066],[113,221,74,-0.5105016264133155],[113,221,75,-0.5092914546839893],[113,221,76,-0.5083487671799958],[113,221,77,-0.5074529582634568],[113,221,78,-0.5064700578805059],[113,221,79,-0.5053090718574822],[113,222,64,-0.5227295868098736],[113,222,65,-0.520820114761591],[113,222,66,-0.5193138187751174],[113,222,67,-0.5183762442320585],[113,222,68,-0.5178399458527565],[113,222,69,-0.5172820575535297],[113,222,70,-0.5166258318349719],[113,222,71,-0.5157407047227025],[113,222,72,-0.5142517378553748],[113,222,73,-0.5122488643974066],[113,222,74,-0.5105016264133155],[113,222,75,-0.5092914546839893],[113,222,76,-0.5083487671799958],[113,222,77,-0.5074529582634568],[113,222,78,-0.5064700578805059],[113,222,79,-0.5053090718574822],[113,223,64,-0.5227295868098736],[113,223,65,-0.520820114761591],[113,223,66,-0.5193138187751174],[113,223,67,-0.5183762442320585],[113,223,68,-0.5178399458527565],[113,223,69,-0.5172820575535297],[113,223,70,-0.5166258318349719],[113,223,71,-0.5157407047227025],[113,223,72,-0.5142517378553748],[113,223,73,-0.5122488643974066],[113,223,74,-0.5105016264133155],[113,223,75,-0.5092914546839893],[113,223,76,-0.5083487671799958],[113,223,77,-0.5074529582634568],[113,223,78,-0.5064700578805059],[113,223,79,-0.5053090718574822],[113,224,64,-0.5227295868098736],[113,224,65,-0.520820114761591],[113,224,66,-0.5193138187751174],[113,224,67,-0.5183762442320585],[113,224,68,-0.5178399458527565],[113,224,69,-0.5172820575535297],[113,224,70,-0.5166258318349719],[113,224,71,-0.5157407047227025],[113,224,72,-0.5142517378553748],[113,224,73,-0.5122488643974066],[113,224,74,-0.5105016264133155],[113,224,75,-0.5092914546839893],[113,224,76,-0.5083487671799958],[113,224,77,-0.5074529582634568],[113,224,78,-0.5064700578805059],[113,224,79,-0.5053090718574822],[113,225,64,-0.5227295868098736],[113,225,65,-0.520820114761591],[113,225,66,-0.5193138187751174],[113,225,67,-0.5183762442320585],[113,225,68,-0.5178399458527565],[113,225,69,-0.5172820575535297],[113,225,70,-0.5166258318349719],[113,225,71,-0.5157407047227025],[113,225,72,-0.5142517378553748],[113,225,73,-0.5122488643974066],[113,225,74,-0.5105016264133155],[113,225,75,-0.5092914546839893],[113,225,76,-0.5083487671799958],[113,225,77,-0.5074529582634568],[113,225,78,-0.5064700578805059],[113,225,79,-0.5053090718574822],[113,226,64,-0.5227295868098736],[113,226,65,-0.520820114761591],[113,226,66,-0.5193138187751174],[113,226,67,-0.5183762442320585],[113,226,68,-0.5178399458527565],[113,226,69,-0.5172820575535297],[113,226,70,-0.5166258318349719],[113,226,71,-0.5157407047227025],[113,226,72,-0.5142517378553748],[113,226,73,-0.5122488643974066],[113,226,74,-0.5105016264133155],[113,226,75,-0.5092914546839893],[113,226,76,-0.5083487671799958],[113,226,77,-0.5074529582634568],[113,226,78,-0.5064700578805059],[113,226,79,-0.5053090718574822],[113,227,64,-0.5227295868098736],[113,227,65,-0.520820114761591],[113,227,66,-0.5193138187751174],[113,227,67,-0.5183762442320585],[113,227,68,-0.5178399458527565],[113,227,69,-0.5172820575535297],[113,227,70,-0.5166258318349719],[113,227,71,-0.5157407047227025],[113,227,72,-0.5142517378553748],[113,227,73,-0.5122488643974066],[113,227,74,-0.5105016264133155],[113,227,75,-0.5092914546839893],[113,227,76,-0.5083487671799958],[113,227,77,-0.5074529582634568],[113,227,78,-0.5064700578805059],[113,227,79,-0.5053090718574822],[113,228,64,-0.5227295868098736],[113,228,65,-0.520820114761591],[113,228,66,-0.5193138187751174],[113,228,67,-0.5183762442320585],[113,228,68,-0.5178399458527565],[113,228,69,-0.5172820575535297],[113,228,70,-0.5166258318349719],[113,228,71,-0.5157407047227025],[113,228,72,-0.5142517378553748],[113,228,73,-0.5122488643974066],[113,228,74,-0.5105016264133155],[113,228,75,-0.5092914546839893],[113,228,76,-0.5083487671799958],[113,228,77,-0.5074529582634568],[113,228,78,-0.5064700578805059],[113,228,79,-0.5053090718574822],[113,229,64,-0.5227295868098736],[113,229,65,-0.520820114761591],[113,229,66,-0.5193138187751174],[113,229,67,-0.5183762442320585],[113,229,68,-0.5178399458527565],[113,229,69,-0.5172820575535297],[113,229,70,-0.5166258318349719],[113,229,71,-0.5157407047227025],[113,229,72,-0.5142517378553748],[113,229,73,-0.5122488643974066],[113,229,74,-0.5105016264133155],[113,229,75,-0.5092914546839893],[113,229,76,-0.5083487671799958],[113,229,77,-0.5074529582634568],[113,229,78,-0.5064700578805059],[113,229,79,-0.5053090718574822],[113,230,64,-0.5227295868098736],[113,230,65,-0.520820114761591],[113,230,66,-0.5193138187751174],[113,230,67,-0.5183762442320585],[113,230,68,-0.5178399458527565],[113,230,69,-0.5172820575535297],[113,230,70,-0.5166258318349719],[113,230,71,-0.5157407047227025],[113,230,72,-0.5142517378553748],[113,230,73,-0.5122488643974066],[113,230,74,-0.5105016264133155],[113,230,75,-0.5092914546839893],[113,230,76,-0.5083487671799958],[113,230,77,-0.5074529582634568],[113,230,78,-0.5064700578805059],[113,230,79,-0.5053090718574822],[113,231,64,-0.5227295868098736],[113,231,65,-0.520820114761591],[113,231,66,-0.5193138187751174],[113,231,67,-0.5183762442320585],[113,231,68,-0.5178399458527565],[113,231,69,-0.5172820575535297],[113,231,70,-0.5166258318349719],[113,231,71,-0.5157407047227025],[113,231,72,-0.5142517378553748],[113,231,73,-0.5122488643974066],[113,231,74,-0.5105016264133155],[113,231,75,-0.5092914546839893],[113,231,76,-0.5083487671799958],[113,231,77,-0.5074529582634568],[113,231,78,-0.5064700578805059],[113,231,79,-0.5053090718574822],[113,232,64,-0.5227295868098736],[113,232,65,-0.520820114761591],[113,232,66,-0.5193138187751174],[113,232,67,-0.5183762442320585],[113,232,68,-0.5178399458527565],[113,232,69,-0.5172820575535297],[113,232,70,-0.5166258318349719],[113,232,71,-0.5157407047227025],[113,232,72,-0.5142517378553748],[113,232,73,-0.5122488643974066],[113,232,74,-0.5105016264133155],[113,232,75,-0.5092914546839893],[113,232,76,-0.5083487671799958],[113,232,77,-0.5074529582634568],[113,232,78,-0.5064700578805059],[113,232,79,-0.5053090718574822],[113,233,64,-0.5227295868098736],[113,233,65,-0.520820114761591],[113,233,66,-0.5193138187751174],[113,233,67,-0.5183762442320585],[113,233,68,-0.5178399458527565],[113,233,69,-0.5172820575535297],[113,233,70,-0.5166258318349719],[113,233,71,-0.5157407047227025],[113,233,72,-0.5142517378553748],[113,233,73,-0.5122488643974066],[113,233,74,-0.5105016264133155],[113,233,75,-0.5092914546839893],[113,233,76,-0.5083487671799958],[113,233,77,-0.5074529582634568],[113,233,78,-0.5064700578805059],[113,233,79,-0.5053090718574822],[113,234,64,-0.5227295868098736],[113,234,65,-0.520820114761591],[113,234,66,-0.5193138187751174],[113,234,67,-0.5183762442320585],[113,234,68,-0.5178399458527565],[113,234,69,-0.5172820575535297],[113,234,70,-0.5166258318349719],[113,234,71,-0.5157407047227025],[113,234,72,-0.5142517378553748],[113,234,73,-0.5122488643974066],[113,234,74,-0.5105016264133155],[113,234,75,-0.5092914546839893],[113,234,76,-0.5083487671799958],[113,234,77,-0.5074529582634568],[113,234,78,-0.5064700578805059],[113,234,79,-0.5053090718574822],[113,235,64,-0.5227295868098736],[113,235,65,-0.520820114761591],[113,235,66,-0.5193138187751174],[113,235,67,-0.5183762442320585],[113,235,68,-0.5178399458527565],[113,235,69,-0.5172820575535297],[113,235,70,-0.5166258318349719],[113,235,71,-0.5157407047227025],[113,235,72,-0.5142517378553748],[113,235,73,-0.5122488643974066],[113,235,74,-0.5105016264133155],[113,235,75,-0.5092914546839893],[113,235,76,-0.5083487671799958],[113,235,77,-0.5074529582634568],[113,235,78,-0.5064700578805059],[113,235,79,-0.5053090718574822],[113,236,64,-0.5227295868098736],[113,236,65,-0.520820114761591],[113,236,66,-0.5193138187751174],[113,236,67,-0.5183762442320585],[113,236,68,-0.5178399458527565],[113,236,69,-0.5172820575535297],[113,236,70,-0.5166258318349719],[113,236,71,-0.5157407047227025],[113,236,72,-0.5142517378553748],[113,236,73,-0.5122488643974066],[113,236,74,-0.5105016264133155],[113,236,75,-0.5092914546839893],[113,236,76,-0.5083487671799958],[113,236,77,-0.5074529582634568],[113,236,78,-0.5064700578805059],[113,236,79,-0.5053090718574822],[113,237,64,-0.5227295868098736],[113,237,65,-0.520820114761591],[113,237,66,-0.5193138187751174],[113,237,67,-0.5183762442320585],[113,237,68,-0.5178399458527565],[113,237,69,-0.5172820575535297],[113,237,70,-0.5166258318349719],[113,237,71,-0.5157407047227025],[113,237,72,-0.5142517378553748],[113,237,73,-0.5122488643974066],[113,237,74,-0.5105016264133155],[113,237,75,-0.5092914546839893],[113,237,76,-0.5083487671799958],[113,237,77,-0.5074529582634568],[113,237,78,-0.5064700578805059],[113,237,79,-0.5053090718574822],[113,238,64,-0.5227295868098736],[113,238,65,-0.520820114761591],[113,238,66,-0.5193138187751174],[113,238,67,-0.5183762442320585],[113,238,68,-0.5178399458527565],[113,238,69,-0.5172820575535297],[113,238,70,-0.5166258318349719],[113,238,71,-0.5157407047227025],[113,238,72,-0.5142517378553748],[113,238,73,-0.5122488643974066],[113,238,74,-0.5105016264133155],[113,238,75,-0.5092914546839893],[113,238,76,-0.5083487671799958],[113,238,77,-0.5074529582634568],[113,238,78,-0.5064700578805059],[113,238,79,-0.5053090718574822],[113,239,64,-0.5227295868098736],[113,239,65,-0.520820114761591],[113,239,66,-0.5193138187751174],[113,239,67,-0.5183762442320585],[113,239,68,-0.5178399458527565],[113,239,69,-0.5172820575535297],[113,239,70,-0.5166258318349719],[113,239,71,-0.5157407047227025],[113,239,72,-0.5142517378553748],[113,239,73,-0.5122488643974066],[113,239,74,-0.5105016264133155],[113,239,75,-0.5092914546839893],[113,239,76,-0.5083487671799958],[113,239,77,-0.5074529582634568],[113,239,78,-0.5064700578805059],[113,239,79,-0.5053090718574822],[113,240,64,-0.5227295868098736],[113,240,65,-0.520820114761591],[113,240,66,-0.5193138187751174],[113,240,67,-0.5183762442320585],[113,240,68,-0.5178399458527565],[113,240,69,-0.5172820575535297],[113,240,70,-0.5166258318349719],[113,240,71,-0.5157407047227025],[113,240,72,-0.5142517378553748],[113,240,73,-0.5122488643974066],[113,240,74,-0.5105016264133155],[113,240,75,-0.5092914546839893],[113,240,76,-0.5083487671799958],[113,240,77,-0.5074529582634568],[113,240,78,-0.5064700578805059],[113,240,79,-0.5053090718574822],[113,241,64,-0.5227295868098736],[113,241,65,-0.520820114761591],[113,241,66,-0.5193138187751174],[113,241,67,-0.5183762442320585],[113,241,68,-0.5178399458527565],[113,241,69,-0.5172820575535297],[113,241,70,-0.5166258318349719],[113,241,71,-0.5157407047227025],[113,241,72,-0.5142517378553748],[113,241,73,-0.5122488643974066],[113,241,74,-0.5105016264133155],[113,241,75,-0.5092914546839893],[113,241,76,-0.5083487671799958],[113,241,77,-0.5074529582634568],[113,241,78,-0.5064700578805059],[113,241,79,-0.5053090718574822],[113,242,64,-0.5227295868098736],[113,242,65,-0.520820114761591],[113,242,66,-0.5193138187751174],[113,242,67,-0.5183762442320585],[113,242,68,-0.5178399458527565],[113,242,69,-0.5172820575535297],[113,242,70,-0.5166258318349719],[113,242,71,-0.5157407047227025],[113,242,72,-0.5142517378553748],[113,242,73,-0.5122488643974066],[113,242,74,-0.5105016264133155],[113,242,75,-0.5092914546839893],[113,242,76,-0.5083487671799958],[113,242,77,-0.5074529582634568],[113,242,78,-0.5064700578805059],[113,242,79,-0.5053090718574822],[113,243,64,-0.5227295868098736],[113,243,65,-0.520820114761591],[113,243,66,-0.5193138187751174],[113,243,67,-0.5183762442320585],[113,243,68,-0.5178399458527565],[113,243,69,-0.5172820575535297],[113,243,70,-0.5166258318349719],[113,243,71,-0.5157407047227025],[113,243,72,-0.5142517378553748],[113,243,73,-0.5122488643974066],[113,243,74,-0.5105016264133155],[113,243,75,-0.5092914546839893],[113,243,76,-0.5083487671799958],[113,243,77,-0.5074529582634568],[113,243,78,-0.5064700578805059],[113,243,79,-0.5053090718574822],[113,244,64,-0.5227295868098736],[113,244,65,-0.520820114761591],[113,244,66,-0.5193138187751174],[113,244,67,-0.5183762442320585],[113,244,68,-0.5178399458527565],[113,244,69,-0.5172820575535297],[113,244,70,-0.5166258318349719],[113,244,71,-0.5157407047227025],[113,244,72,-0.5142517378553748],[113,244,73,-0.5122488643974066],[113,244,74,-0.5105016264133155],[113,244,75,-0.5092914546839893],[113,244,76,-0.5083487671799958],[113,244,77,-0.5074529582634568],[113,244,78,-0.5064700578805059],[113,244,79,-0.5053090718574822],[113,245,64,-0.5227295868098736],[113,245,65,-0.520820114761591],[113,245,66,-0.5193138187751174],[113,245,67,-0.5183762442320585],[113,245,68,-0.5178399458527565],[113,245,69,-0.5172820575535297],[113,245,70,-0.5166258318349719],[113,245,71,-0.5157407047227025],[113,245,72,-0.5142517378553748],[113,245,73,-0.5122488643974066],[113,245,74,-0.5105016264133155],[113,245,75,-0.5092914546839893],[113,245,76,-0.5083487671799958],[113,245,77,-0.5074529582634568],[113,245,78,-0.5064700578805059],[113,245,79,-0.5053090718574822],[113,246,64,-0.5227295868098736],[113,246,65,-0.520820114761591],[113,246,66,-0.5193138187751174],[113,246,67,-0.5183762442320585],[113,246,68,-0.5178399458527565],[113,246,69,-0.5172820575535297],[113,246,70,-0.5166258318349719],[113,246,71,-0.5157407047227025],[113,246,72,-0.5142517378553748],[113,246,73,-0.5122488643974066],[113,246,74,-0.5105016264133155],[113,246,75,-0.5092914546839893],[113,246,76,-0.5083487671799958],[113,246,77,-0.5074529582634568],[113,246,78,-0.5064700578805059],[113,246,79,-0.5053090718574822],[113,247,64,-0.5227295868098736],[113,247,65,-0.520820114761591],[113,247,66,-0.5193138187751174],[113,247,67,-0.5183762442320585],[113,247,68,-0.5178399458527565],[113,247,69,-0.5172820575535297],[113,247,70,-0.5166258318349719],[113,247,71,-0.5157407047227025],[113,247,72,-0.5142517378553748],[113,247,73,-0.5122488643974066],[113,247,74,-0.5105016264133155],[113,247,75,-0.5092914546839893],[113,247,76,-0.5083487671799958],[113,247,77,-0.5074529582634568],[113,247,78,-0.5064700578805059],[113,247,79,-0.5053090718574822],[113,248,64,-0.5227295868098736],[113,248,65,-0.520820114761591],[113,248,66,-0.5193138187751174],[113,248,67,-0.5183762442320585],[113,248,68,-0.5178399458527565],[113,248,69,-0.5172820575535297],[113,248,70,-0.5166258318349719],[113,248,71,-0.5157407047227025],[113,248,72,-0.5142517378553748],[113,248,73,-0.5122488643974066],[113,248,74,-0.5105016264133155],[113,248,75,-0.5092914546839893],[113,248,76,-0.5083487671799958],[113,248,77,-0.5074529582634568],[113,248,78,-0.5064700578805059],[113,248,79,-0.5053090718574822],[113,249,64,-0.5227295868098736],[113,249,65,-0.520820114761591],[113,249,66,-0.5193138187751174],[113,249,67,-0.5183762442320585],[113,249,68,-0.5178399458527565],[113,249,69,-0.5172820575535297],[113,249,70,-0.5166258318349719],[113,249,71,-0.5157407047227025],[113,249,72,-0.5142517378553748],[113,249,73,-0.5122488643974066],[113,249,74,-0.5105016264133155],[113,249,75,-0.5092914546839893],[113,249,76,-0.5083487671799958],[113,249,77,-0.5074529582634568],[113,249,78,-0.5064700578805059],[113,249,79,-0.5053090718574822],[113,250,64,-0.5227295868098736],[113,250,65,-0.520820114761591],[113,250,66,-0.5193138187751174],[113,250,67,-0.5183762442320585],[113,250,68,-0.5178399458527565],[113,250,69,-0.5172820575535297],[113,250,70,-0.5166258318349719],[113,250,71,-0.5157407047227025],[113,250,72,-0.5142517378553748],[113,250,73,-0.5122488643974066],[113,250,74,-0.5105016264133155],[113,250,75,-0.5092914546839893],[113,250,76,-0.5083487671799958],[113,250,77,-0.5074529582634568],[113,250,78,-0.5064700578805059],[113,250,79,-0.5053090718574822],[113,251,64,-0.5227295868098736],[113,251,65,-0.520820114761591],[113,251,66,-0.5193138187751174],[113,251,67,-0.5183762442320585],[113,251,68,-0.5178399458527565],[113,251,69,-0.5172820575535297],[113,251,70,-0.5166258318349719],[113,251,71,-0.5157407047227025],[113,251,72,-0.5142517378553748],[113,251,73,-0.5122488643974066],[113,251,74,-0.5105016264133155],[113,251,75,-0.5092914546839893],[113,251,76,-0.5083487671799958],[113,251,77,-0.5074529582634568],[113,251,78,-0.5064700578805059],[113,251,79,-0.5053090718574822],[113,252,64,-0.5227295868098736],[113,252,65,-0.520820114761591],[113,252,66,-0.5193138187751174],[113,252,67,-0.5183762442320585],[113,252,68,-0.5178399458527565],[113,252,69,-0.5172820575535297],[113,252,70,-0.5166258318349719],[113,252,71,-0.5157407047227025],[113,252,72,-0.5142517378553748],[113,252,73,-0.5122488643974066],[113,252,74,-0.5105016264133155],[113,252,75,-0.5092914546839893],[113,252,76,-0.5083487671799958],[113,252,77,-0.5074529582634568],[113,252,78,-0.5064700578805059],[113,252,79,-0.5053090718574822],[113,253,64,-0.5227295868098736],[113,253,65,-0.520820114761591],[113,253,66,-0.5193138187751174],[113,253,67,-0.5183762442320585],[113,253,68,-0.5178399458527565],[113,253,69,-0.5172820575535297],[113,253,70,-0.5166258318349719],[113,253,71,-0.5157407047227025],[113,253,72,-0.5142517378553748],[113,253,73,-0.5122488643974066],[113,253,74,-0.5105016264133155],[113,253,75,-0.5092914546839893],[113,253,76,-0.5083487671799958],[113,253,77,-0.5074529582634568],[113,253,78,-0.5064700578805059],[113,253,79,-0.5053090718574822],[113,254,64,-0.5227295868098736],[113,254,65,-0.520820114761591],[113,254,66,-0.5193138187751174],[113,254,67,-0.5183762442320585],[113,254,68,-0.5178399458527565],[113,254,69,-0.5172820575535297],[113,254,70,-0.5166258318349719],[113,254,71,-0.5157407047227025],[113,254,72,-0.5142517378553748],[113,254,73,-0.5122488643974066],[113,254,74,-0.5105016264133155],[113,254,75,-0.5092914546839893],[113,254,76,-0.5083487671799958],[113,254,77,-0.5074529582634568],[113,254,78,-0.5064700578805059],[113,254,79,-0.5053090718574822],[113,255,64,-0.5227295868098736],[113,255,65,-0.520820114761591],[113,255,66,-0.5193138187751174],[113,255,67,-0.5183762442320585],[113,255,68,-0.5178399458527565],[113,255,69,-0.5172820575535297],[113,255,70,-0.5166258318349719],[113,255,71,-0.5157407047227025],[113,255,72,-0.5142517378553748],[113,255,73,-0.5122488643974066],[113,255,74,-0.5105016264133155],[113,255,75,-0.5092914546839893],[113,255,76,-0.5083487671799958],[113,255,77,-0.5074529582634568],[113,255,78,-0.5064700578805059],[113,255,79,-0.5053090718574822],[113,256,64,-0.5227295868098736],[113,256,65,-0.520820114761591],[113,256,66,-0.5193138187751174],[113,256,67,-0.5183762442320585],[113,256,68,-0.5178399458527565],[113,256,69,-0.5172820575535297],[113,256,70,-0.5166258318349719],[113,256,71,-0.5157407047227025],[113,256,72,-0.5142517378553748],[113,256,73,-0.5122488643974066],[113,256,74,-0.5105016264133155],[113,256,75,-0.5092914546839893],[113,256,76,-0.5083487671799958],[113,256,77,-0.5074529582634568],[113,256,78,-0.5064700578805059],[113,256,79,-0.5053090718574822],[113,257,64,-0.5227295868098736],[113,257,65,-0.520820114761591],[113,257,66,-0.5193138187751174],[113,257,67,-0.5183762442320585],[113,257,68,-0.5178399458527565],[113,257,69,-0.5172820575535297],[113,257,70,-0.5166258318349719],[113,257,71,-0.5157407047227025],[113,257,72,-0.5142517378553748],[113,257,73,-0.5122488643974066],[113,257,74,-0.5105016264133155],[113,257,75,-0.5092914546839893],[113,257,76,-0.5083487671799958],[113,257,77,-0.5074529582634568],[113,257,78,-0.5064700578805059],[113,257,79,-0.5053090718574822],[113,258,64,-0.5227295868098736],[113,258,65,-0.520820114761591],[113,258,66,-0.5193138187751174],[113,258,67,-0.5183762442320585],[113,258,68,-0.5178399458527565],[113,258,69,-0.5172820575535297],[113,258,70,-0.5166258318349719],[113,258,71,-0.5157407047227025],[113,258,72,-0.5142517378553748],[113,258,73,-0.5122488643974066],[113,258,74,-0.5105016264133155],[113,258,75,-0.5092914546839893],[113,258,76,-0.5083487671799958],[113,258,77,-0.5074529582634568],[113,258,78,-0.5064700578805059],[113,258,79,-0.5053090718574822],[113,259,64,-0.5227295868098736],[113,259,65,-0.520820114761591],[113,259,66,-0.5193138187751174],[113,259,67,-0.5183762442320585],[113,259,68,-0.5178399458527565],[113,259,69,-0.5172820575535297],[113,259,70,-0.5166258318349719],[113,259,71,-0.5157407047227025],[113,259,72,-0.5142517378553748],[113,259,73,-0.5122488643974066],[113,259,74,-0.5105016264133155],[113,259,75,-0.5092914546839893],[113,259,76,-0.5083487671799958],[113,259,77,-0.5074529582634568],[113,259,78,-0.5064700578805059],[113,259,79,-0.5053090718574822],[113,260,64,-0.5227295868098736],[113,260,65,-0.520820114761591],[113,260,66,-0.5193138187751174],[113,260,67,-0.5183762442320585],[113,260,68,-0.5178399458527565],[113,260,69,-0.5172820575535297],[113,260,70,-0.5166258318349719],[113,260,71,-0.5157407047227025],[113,260,72,-0.5142517378553748],[113,260,73,-0.5122488643974066],[113,260,74,-0.5105016264133155],[113,260,75,-0.5092914546839893],[113,260,76,-0.5083487671799958],[113,260,77,-0.5074529582634568],[113,260,78,-0.5064700578805059],[113,260,79,-0.5053090718574822],[113,261,64,-0.5227295868098736],[113,261,65,-0.520820114761591],[113,261,66,-0.5193138187751174],[113,261,67,-0.5183762442320585],[113,261,68,-0.5178399458527565],[113,261,69,-0.5172820575535297],[113,261,70,-0.5166258318349719],[113,261,71,-0.5157407047227025],[113,261,72,-0.5142517378553748],[113,261,73,-0.5122488643974066],[113,261,74,-0.5105016264133155],[113,261,75,-0.5092914546839893],[113,261,76,-0.5083487671799958],[113,261,77,-0.5074529582634568],[113,261,78,-0.5064700578805059],[113,261,79,-0.5053090718574822],[113,262,64,-0.5227295868098736],[113,262,65,-0.520820114761591],[113,262,66,-0.5193138187751174],[113,262,67,-0.5183762442320585],[113,262,68,-0.5178399458527565],[113,262,69,-0.5172820575535297],[113,262,70,-0.5166258318349719],[113,262,71,-0.5157407047227025],[113,262,72,-0.5142517378553748],[113,262,73,-0.5122488643974066],[113,262,74,-0.5105016264133155],[113,262,75,-0.5092914546839893],[113,262,76,-0.5083487671799958],[113,262,77,-0.5074529582634568],[113,262,78,-0.5064700578805059],[113,262,79,-0.5053090718574822],[113,263,64,-0.5227295868098736],[113,263,65,-0.520820114761591],[113,263,66,-0.5193138187751174],[113,263,67,-0.5183762442320585],[113,263,68,-0.5178399458527565],[113,263,69,-0.5172820575535297],[113,263,70,-0.5166258318349719],[113,263,71,-0.5157407047227025],[113,263,72,-0.5142517378553748],[113,263,73,-0.5122488643974066],[113,263,74,-0.5105016264133155],[113,263,75,-0.5092914546839893],[113,263,76,-0.5083487671799958],[113,263,77,-0.5074529582634568],[113,263,78,-0.5064700578805059],[113,263,79,-0.5053090718574822],[113,264,64,-0.5227295868098736],[113,264,65,-0.520820114761591],[113,264,66,-0.5193138187751174],[113,264,67,-0.5183762442320585],[113,264,68,-0.5178399458527565],[113,264,69,-0.5172820575535297],[113,264,70,-0.5166258318349719],[113,264,71,-0.5157407047227025],[113,264,72,-0.5142517378553748],[113,264,73,-0.5122488643974066],[113,264,74,-0.5105016264133155],[113,264,75,-0.5092914546839893],[113,264,76,-0.5083487671799958],[113,264,77,-0.5074529582634568],[113,264,78,-0.5064700578805059],[113,264,79,-0.5053090718574822],[113,265,64,-0.5227295868098736],[113,265,65,-0.520820114761591],[113,265,66,-0.5193138187751174],[113,265,67,-0.5183762442320585],[113,265,68,-0.5178399458527565],[113,265,69,-0.5172820575535297],[113,265,70,-0.5166258318349719],[113,265,71,-0.5157407047227025],[113,265,72,-0.5142517378553748],[113,265,73,-0.5122488643974066],[113,265,74,-0.5105016264133155],[113,265,75,-0.5092914546839893],[113,265,76,-0.5083487671799958],[113,265,77,-0.5074529582634568],[113,265,78,-0.5064700578805059],[113,265,79,-0.5053090718574822],[113,266,64,-0.5227295868098736],[113,266,65,-0.520820114761591],[113,266,66,-0.5193138187751174],[113,266,67,-0.5183762442320585],[113,266,68,-0.5178399458527565],[113,266,69,-0.5172820575535297],[113,266,70,-0.5166258318349719],[113,266,71,-0.5157407047227025],[113,266,72,-0.5142517378553748],[113,266,73,-0.5122488643974066],[113,266,74,-0.5105016264133155],[113,266,75,-0.5092914546839893],[113,266,76,-0.5083487671799958],[113,266,77,-0.5074529582634568],[113,266,78,-0.5064700578805059],[113,266,79,-0.5053090718574822],[113,267,64,-0.5227295868098736],[113,267,65,-0.520820114761591],[113,267,66,-0.5193138187751174],[113,267,67,-0.5183762442320585],[113,267,68,-0.5178399458527565],[113,267,69,-0.5172820575535297],[113,267,70,-0.5166258318349719],[113,267,71,-0.5157407047227025],[113,267,72,-0.5142517378553748],[113,267,73,-0.5122488643974066],[113,267,74,-0.5105016264133155],[113,267,75,-0.5092914546839893],[113,267,76,-0.5083487671799958],[113,267,77,-0.5074529582634568],[113,267,78,-0.5064700578805059],[113,267,79,-0.5053090718574822],[113,268,64,-0.5227295868098736],[113,268,65,-0.520820114761591],[113,268,66,-0.5193138187751174],[113,268,67,-0.5183762442320585],[113,268,68,-0.5178399458527565],[113,268,69,-0.5172820575535297],[113,268,70,-0.5166258318349719],[113,268,71,-0.5157407047227025],[113,268,72,-0.5142517378553748],[113,268,73,-0.5122488643974066],[113,268,74,-0.5105016264133155],[113,268,75,-0.5092914546839893],[113,268,76,-0.5083487671799958],[113,268,77,-0.5074529582634568],[113,268,78,-0.5064700578805059],[113,268,79,-0.5053090718574822],[113,269,64,-0.5227295868098736],[113,269,65,-0.520820114761591],[113,269,66,-0.5193138187751174],[113,269,67,-0.5183762442320585],[113,269,68,-0.5178399458527565],[113,269,69,-0.5172820575535297],[113,269,70,-0.5166258318349719],[113,269,71,-0.5157407047227025],[113,269,72,-0.5142517378553748],[113,269,73,-0.5122488643974066],[113,269,74,-0.5105016264133155],[113,269,75,-0.5092914546839893],[113,269,76,-0.5083487671799958],[113,269,77,-0.5074529582634568],[113,269,78,-0.5064700578805059],[113,269,79,-0.5053090718574822],[113,270,64,-0.5227295868098736],[113,270,65,-0.520820114761591],[113,270,66,-0.5193138187751174],[113,270,67,-0.5183762442320585],[113,270,68,-0.5178399458527565],[113,270,69,-0.5172820575535297],[113,270,70,-0.5166258318349719],[113,270,71,-0.5157407047227025],[113,270,72,-0.5142517378553748],[113,270,73,-0.5122488643974066],[113,270,74,-0.5105016264133155],[113,270,75,-0.5092914546839893],[113,270,76,-0.5083487671799958],[113,270,77,-0.5074529582634568],[113,270,78,-0.5064700578805059],[113,270,79,-0.5053090718574822],[113,271,64,-0.5227295868098736],[113,271,65,-0.520820114761591],[113,271,66,-0.5193138187751174],[113,271,67,-0.5183762442320585],[113,271,68,-0.5178399458527565],[113,271,69,-0.5172820575535297],[113,271,70,-0.5166258318349719],[113,271,71,-0.5157407047227025],[113,271,72,-0.5142517378553748],[113,271,73,-0.5122488643974066],[113,271,74,-0.5105016264133155],[113,271,75,-0.5092914546839893],[113,271,76,-0.5083487671799958],[113,271,77,-0.5074529582634568],[113,271,78,-0.5064700578805059],[113,271,79,-0.5053090718574822],[113,272,64,-0.5227295868098736],[113,272,65,-0.520820114761591],[113,272,66,-0.5193138187751174],[113,272,67,-0.5183762442320585],[113,272,68,-0.5178399458527565],[113,272,69,-0.5172820575535297],[113,272,70,-0.5166258318349719],[113,272,71,-0.5157407047227025],[113,272,72,-0.5142517378553748],[113,272,73,-0.5122488643974066],[113,272,74,-0.5105016264133155],[113,272,75,-0.5092914546839893],[113,272,76,-0.5083487671799958],[113,272,77,-0.5074529582634568],[113,272,78,-0.5064700578805059],[113,272,79,-0.5053090718574822],[113,273,64,-0.5227295868098736],[113,273,65,-0.520820114761591],[113,273,66,-0.5193138187751174],[113,273,67,-0.5183762442320585],[113,273,68,-0.5178399458527565],[113,273,69,-0.5172820575535297],[113,273,70,-0.5166258318349719],[113,273,71,-0.5157407047227025],[113,273,72,-0.5142517378553748],[113,273,73,-0.5122488643974066],[113,273,74,-0.5105016264133155],[113,273,75,-0.5092914546839893],[113,273,76,-0.5083487671799958],[113,273,77,-0.5074529582634568],[113,273,78,-0.5064700578805059],[113,273,79,-0.5053090718574822],[113,274,64,-0.5227295868098736],[113,274,65,-0.520820114761591],[113,274,66,-0.5193138187751174],[113,274,67,-0.5183762442320585],[113,274,68,-0.5178399458527565],[113,274,69,-0.5172820575535297],[113,274,70,-0.5166258318349719],[113,274,71,-0.5157407047227025],[113,274,72,-0.5142517378553748],[113,274,73,-0.5122488643974066],[113,274,74,-0.5105016264133155],[113,274,75,-0.5092914546839893],[113,274,76,-0.5083487671799958],[113,274,77,-0.5074529582634568],[113,274,78,-0.5064700578805059],[113,274,79,-0.5053090718574822],[113,275,64,-0.5227295868098736],[113,275,65,-0.520820114761591],[113,275,66,-0.5193138187751174],[113,275,67,-0.5183762442320585],[113,275,68,-0.5178399458527565],[113,275,69,-0.5172820575535297],[113,275,70,-0.5166258318349719],[113,275,71,-0.5157407047227025],[113,275,72,-0.5142517378553748],[113,275,73,-0.5122488643974066],[113,275,74,-0.5105016264133155],[113,275,75,-0.5092914546839893],[113,275,76,-0.5083487671799958],[113,275,77,-0.5074529582634568],[113,275,78,-0.5064700578805059],[113,275,79,-0.5053090718574822],[113,276,64,-0.5227295868098736],[113,276,65,-0.520820114761591],[113,276,66,-0.5193138187751174],[113,276,67,-0.5183762442320585],[113,276,68,-0.5178399458527565],[113,276,69,-0.5172820575535297],[113,276,70,-0.5166258318349719],[113,276,71,-0.5157407047227025],[113,276,72,-0.5142517378553748],[113,276,73,-0.5122488643974066],[113,276,74,-0.5105016264133155],[113,276,75,-0.5092914546839893],[113,276,76,-0.5083487671799958],[113,276,77,-0.5074529582634568],[113,276,78,-0.5064700578805059],[113,276,79,-0.5053090718574822],[113,277,64,-0.5227295868098736],[113,277,65,-0.520820114761591],[113,277,66,-0.5193138187751174],[113,277,67,-0.5183762442320585],[113,277,68,-0.5178399458527565],[113,277,69,-0.5172820575535297],[113,277,70,-0.5166258318349719],[113,277,71,-0.5157407047227025],[113,277,72,-0.5142517378553748],[113,277,73,-0.5122488643974066],[113,277,74,-0.5105016264133155],[113,277,75,-0.5092914546839893],[113,277,76,-0.5083487671799958],[113,277,77,-0.5074529582634568],[113,277,78,-0.5064700578805059],[113,277,79,-0.5053090718574822],[113,278,64,-0.5227295868098736],[113,278,65,-0.520820114761591],[113,278,66,-0.5193138187751174],[113,278,67,-0.5183762442320585],[113,278,68,-0.5178399458527565],[113,278,69,-0.5172820575535297],[113,278,70,-0.5166258318349719],[113,278,71,-0.5157407047227025],[113,278,72,-0.5142517378553748],[113,278,73,-0.5122488643974066],[113,278,74,-0.5105016264133155],[113,278,75,-0.5092914546839893],[113,278,76,-0.5083487671799958],[113,278,77,-0.5074529582634568],[113,278,78,-0.5064700578805059],[113,278,79,-0.5053090718574822],[113,279,64,-0.5227295868098736],[113,279,65,-0.520820114761591],[113,279,66,-0.5193138187751174],[113,279,67,-0.5183762442320585],[113,279,68,-0.5178399458527565],[113,279,69,-0.5172820575535297],[113,279,70,-0.5166258318349719],[113,279,71,-0.5157407047227025],[113,279,72,-0.5142517378553748],[113,279,73,-0.5122488643974066],[113,279,74,-0.5105016264133155],[113,279,75,-0.5092914546839893],[113,279,76,-0.5083487671799958],[113,279,77,-0.5074529582634568],[113,279,78,-0.5064700578805059],[113,279,79,-0.5053090718574822],[113,280,64,-0.5227295868098736],[113,280,65,-0.520820114761591],[113,280,66,-0.5193138187751174],[113,280,67,-0.5183762442320585],[113,280,68,-0.5178399458527565],[113,280,69,-0.5172820575535297],[113,280,70,-0.5166258318349719],[113,280,71,-0.5157407047227025],[113,280,72,-0.5142517378553748],[113,280,73,-0.5122488643974066],[113,280,74,-0.5105016264133155],[113,280,75,-0.5092914546839893],[113,280,76,-0.5083487671799958],[113,280,77,-0.5074529582634568],[113,280,78,-0.5064700578805059],[113,280,79,-0.5053090718574822],[113,281,64,-0.5227295868098736],[113,281,65,-0.520820114761591],[113,281,66,-0.5193138187751174],[113,281,67,-0.5183762442320585],[113,281,68,-0.5178399458527565],[113,281,69,-0.5172820575535297],[113,281,70,-0.5166258318349719],[113,281,71,-0.5157407047227025],[113,281,72,-0.5142517378553748],[113,281,73,-0.5122488643974066],[113,281,74,-0.5105016264133155],[113,281,75,-0.5092914546839893],[113,281,76,-0.5083487671799958],[113,281,77,-0.5074529582634568],[113,281,78,-0.5064700578805059],[113,281,79,-0.5053090718574822],[113,282,64,-0.5227295868098736],[113,282,65,-0.520820114761591],[113,282,66,-0.5193138187751174],[113,282,67,-0.5183762442320585],[113,282,68,-0.5178399458527565],[113,282,69,-0.5172820575535297],[113,282,70,-0.5166258318349719],[113,282,71,-0.5157407047227025],[113,282,72,-0.5142517378553748],[113,282,73,-0.5122488643974066],[113,282,74,-0.5105016264133155],[113,282,75,-0.5092914546839893],[113,282,76,-0.5083487671799958],[113,282,77,-0.5074529582634568],[113,282,78,-0.5064700578805059],[113,282,79,-0.5053090718574822],[113,283,64,-0.5227295868098736],[113,283,65,-0.520820114761591],[113,283,66,-0.5193138187751174],[113,283,67,-0.5183762442320585],[113,283,68,-0.5178399458527565],[113,283,69,-0.5172820575535297],[113,283,70,-0.5166258318349719],[113,283,71,-0.5157407047227025],[113,283,72,-0.5142517378553748],[113,283,73,-0.5122488643974066],[113,283,74,-0.5105016264133155],[113,283,75,-0.5092914546839893],[113,283,76,-0.5083487671799958],[113,283,77,-0.5074529582634568],[113,283,78,-0.5064700578805059],[113,283,79,-0.5053090718574822],[113,284,64,-0.5227295868098736],[113,284,65,-0.520820114761591],[113,284,66,-0.5193138187751174],[113,284,67,-0.5183762442320585],[113,284,68,-0.5178399458527565],[113,284,69,-0.5172820575535297],[113,284,70,-0.5166258318349719],[113,284,71,-0.5157407047227025],[113,284,72,-0.5142517378553748],[113,284,73,-0.5122488643974066],[113,284,74,-0.5105016264133155],[113,284,75,-0.5092914546839893],[113,284,76,-0.5083487671799958],[113,284,77,-0.5074529582634568],[113,284,78,-0.5064700578805059],[113,284,79,-0.5053090718574822],[113,285,64,-0.5227295868098736],[113,285,65,-0.520820114761591],[113,285,66,-0.5193138187751174],[113,285,67,-0.5183762442320585],[113,285,68,-0.5178399458527565],[113,285,69,-0.5172820575535297],[113,285,70,-0.5166258318349719],[113,285,71,-0.5157407047227025],[113,285,72,-0.5142517378553748],[113,285,73,-0.5122488643974066],[113,285,74,-0.5105016264133155],[113,285,75,-0.5092914546839893],[113,285,76,-0.5083487671799958],[113,285,77,-0.5074529582634568],[113,285,78,-0.5064700578805059],[113,285,79,-0.5053090718574822],[113,286,64,-0.5227295868098736],[113,286,65,-0.520820114761591],[113,286,66,-0.5193138187751174],[113,286,67,-0.5183762442320585],[113,286,68,-0.5178399458527565],[113,286,69,-0.5172820575535297],[113,286,70,-0.5166258318349719],[113,286,71,-0.5157407047227025],[113,286,72,-0.5142517378553748],[113,286,73,-0.5122488643974066],[113,286,74,-0.5105016264133155],[113,286,75,-0.5092914546839893],[113,286,76,-0.5083487671799958],[113,286,77,-0.5074529582634568],[113,286,78,-0.5064700578805059],[113,286,79,-0.5053090718574822],[113,287,64,-0.5227295868098736],[113,287,65,-0.520820114761591],[113,287,66,-0.5193138187751174],[113,287,67,-0.5183762442320585],[113,287,68,-0.5178399458527565],[113,287,69,-0.5172820575535297],[113,287,70,-0.5166258318349719],[113,287,71,-0.5157407047227025],[113,287,72,-0.5142517378553748],[113,287,73,-0.5122488643974066],[113,287,74,-0.5105016264133155],[113,287,75,-0.5092914546839893],[113,287,76,-0.5083487671799958],[113,287,77,-0.5074529582634568],[113,287,78,-0.5064700578805059],[113,287,79,-0.5053090718574822],[113,288,64,-0.5227295868098736],[113,288,65,-0.520820114761591],[113,288,66,-0.5193138187751174],[113,288,67,-0.5183762442320585],[113,288,68,-0.5178399458527565],[113,288,69,-0.5172820575535297],[113,288,70,-0.5166258318349719],[113,288,71,-0.5157407047227025],[113,288,72,-0.5142517378553748],[113,288,73,-0.5122488643974066],[113,288,74,-0.5105016264133155],[113,288,75,-0.5092914546839893],[113,288,76,-0.5083487671799958],[113,288,77,-0.5074529582634568],[113,288,78,-0.5064700578805059],[113,288,79,-0.5053090718574822],[113,289,64,-0.5227295868098736],[113,289,65,-0.520820114761591],[113,289,66,-0.5193138187751174],[113,289,67,-0.5183762442320585],[113,289,68,-0.5178399458527565],[113,289,69,-0.5172820575535297],[113,289,70,-0.5166258318349719],[113,289,71,-0.5157407047227025],[113,289,72,-0.5142517378553748],[113,289,73,-0.5122488643974066],[113,289,74,-0.5105016264133155],[113,289,75,-0.5092914546839893],[113,289,76,-0.5083487671799958],[113,289,77,-0.5074529582634568],[113,289,78,-0.5064700578805059],[113,289,79,-0.5053090718574822],[113,290,64,-0.5227295868098736],[113,290,65,-0.520820114761591],[113,290,66,-0.5193138187751174],[113,290,67,-0.5183762442320585],[113,290,68,-0.5178399458527565],[113,290,69,-0.5172820575535297],[113,290,70,-0.5166258318349719],[113,290,71,-0.5157407047227025],[113,290,72,-0.5142517378553748],[113,290,73,-0.5122488643974066],[113,290,74,-0.5105016264133155],[113,290,75,-0.5092914546839893],[113,290,76,-0.5083487671799958],[113,290,77,-0.5074529582634568],[113,290,78,-0.5064700578805059],[113,290,79,-0.5053090718574822],[113,291,64,-0.5227295868098736],[113,291,65,-0.520820114761591],[113,291,66,-0.5193138187751174],[113,291,67,-0.5183762442320585],[113,291,68,-0.5178399458527565],[113,291,69,-0.5172820575535297],[113,291,70,-0.5166258318349719],[113,291,71,-0.5157407047227025],[113,291,72,-0.5142517378553748],[113,291,73,-0.5122488643974066],[113,291,74,-0.5105016264133155],[113,291,75,-0.5092914546839893],[113,291,76,-0.5083487671799958],[113,291,77,-0.5074529582634568],[113,291,78,-0.5064700578805059],[113,291,79,-0.5053090718574822],[113,292,64,-0.5227295868098736],[113,292,65,-0.520820114761591],[113,292,66,-0.5193138187751174],[113,292,67,-0.5183762442320585],[113,292,68,-0.5178399458527565],[113,292,69,-0.5172820575535297],[113,292,70,-0.5166258318349719],[113,292,71,-0.5157407047227025],[113,292,72,-0.5142517378553748],[113,292,73,-0.5122488643974066],[113,292,74,-0.5105016264133155],[113,292,75,-0.5092914546839893],[113,292,76,-0.5083487671799958],[113,292,77,-0.5074529582634568],[113,292,78,-0.5064700578805059],[113,292,79,-0.5053090718574822],[113,293,64,-0.5227295868098736],[113,293,65,-0.520820114761591],[113,293,66,-0.5193138187751174],[113,293,67,-0.5183762442320585],[113,293,68,-0.5178399458527565],[113,293,69,-0.5172820575535297],[113,293,70,-0.5166258318349719],[113,293,71,-0.5157407047227025],[113,293,72,-0.5142517378553748],[113,293,73,-0.5122488643974066],[113,293,74,-0.5105016264133155],[113,293,75,-0.5092914546839893],[113,293,76,-0.5083487671799958],[113,293,77,-0.5074529582634568],[113,293,78,-0.5064700578805059],[113,293,79,-0.5053090718574822],[113,294,64,-0.5227295868098736],[113,294,65,-0.520820114761591],[113,294,66,-0.5193138187751174],[113,294,67,-0.5183762442320585],[113,294,68,-0.5178399458527565],[113,294,69,-0.5172820575535297],[113,294,70,-0.5166258318349719],[113,294,71,-0.5157407047227025],[113,294,72,-0.5142517378553748],[113,294,73,-0.5122488643974066],[113,294,74,-0.5105016264133155],[113,294,75,-0.5092914546839893],[113,294,76,-0.5083487671799958],[113,294,77,-0.5074529582634568],[113,294,78,-0.5064700578805059],[113,294,79,-0.5053090718574822],[113,295,64,-0.5227295868098736],[113,295,65,-0.520820114761591],[113,295,66,-0.5193138187751174],[113,295,67,-0.5183762442320585],[113,295,68,-0.5178399458527565],[113,295,69,-0.5172820575535297],[113,295,70,-0.5166258318349719],[113,295,71,-0.5157407047227025],[113,295,72,-0.5142517378553748],[113,295,73,-0.5122488643974066],[113,295,74,-0.5105016264133155],[113,295,75,-0.5092914546839893],[113,295,76,-0.5083487671799958],[113,295,77,-0.5074529582634568],[113,295,78,-0.5064700578805059],[113,295,79,-0.5053090718574822],[113,296,64,-0.5227295868098736],[113,296,65,-0.520820114761591],[113,296,66,-0.5193138187751174],[113,296,67,-0.5183762442320585],[113,296,68,-0.5178399458527565],[113,296,69,-0.5172820575535297],[113,296,70,-0.5166258318349719],[113,296,71,-0.5157407047227025],[113,296,72,-0.5142517378553748],[113,296,73,-0.5122488643974066],[113,296,74,-0.5105016264133155],[113,296,75,-0.5092914546839893],[113,296,76,-0.5083487671799958],[113,296,77,-0.5074529582634568],[113,296,78,-0.5064700578805059],[113,296,79,-0.5053090718574822],[113,297,64,-0.5227295868098736],[113,297,65,-0.520820114761591],[113,297,66,-0.5193138187751174],[113,297,67,-0.5183762442320585],[113,297,68,-0.5178399458527565],[113,297,69,-0.5172820575535297],[113,297,70,-0.5166258318349719],[113,297,71,-0.5157407047227025],[113,297,72,-0.5142517378553748],[113,297,73,-0.5122488643974066],[113,297,74,-0.5105016264133155],[113,297,75,-0.5092914546839893],[113,297,76,-0.5083487671799958],[113,297,77,-0.5074529582634568],[113,297,78,-0.5064700578805059],[113,297,79,-0.5053090718574822],[113,298,64,-0.5227295868098736],[113,298,65,-0.520820114761591],[113,298,66,-0.5193138187751174],[113,298,67,-0.5183762442320585],[113,298,68,-0.5178399458527565],[113,298,69,-0.5172820575535297],[113,298,70,-0.5166258318349719],[113,298,71,-0.5157407047227025],[113,298,72,-0.5142517378553748],[113,298,73,-0.5122488643974066],[113,298,74,-0.5105016264133155],[113,298,75,-0.5092914546839893],[113,298,76,-0.5083487671799958],[113,298,77,-0.5074529582634568],[113,298,78,-0.5064700578805059],[113,298,79,-0.5053090718574822],[113,299,64,-0.5227295868098736],[113,299,65,-0.520820114761591],[113,299,66,-0.5193138187751174],[113,299,67,-0.5183762442320585],[113,299,68,-0.5178399458527565],[113,299,69,-0.5172820575535297],[113,299,70,-0.5166258318349719],[113,299,71,-0.5157407047227025],[113,299,72,-0.5142517378553748],[113,299,73,-0.5122488643974066],[113,299,74,-0.5105016264133155],[113,299,75,-0.5092914546839893],[113,299,76,-0.5083487671799958],[113,299,77,-0.5074529582634568],[113,299,78,-0.5064700578805059],[113,299,79,-0.5053090718574822],[113,300,64,-0.5227295868098736],[113,300,65,-0.520820114761591],[113,300,66,-0.5193138187751174],[113,300,67,-0.5183762442320585],[113,300,68,-0.5178399458527565],[113,300,69,-0.5172820575535297],[113,300,70,-0.5166258318349719],[113,300,71,-0.5157407047227025],[113,300,72,-0.5142517378553748],[113,300,73,-0.5122488643974066],[113,300,74,-0.5105016264133155],[113,300,75,-0.5092914546839893],[113,300,76,-0.5083487671799958],[113,300,77,-0.5074529582634568],[113,300,78,-0.5064700578805059],[113,300,79,-0.5053090718574822],[113,301,64,-0.5227295868098736],[113,301,65,-0.520820114761591],[113,301,66,-0.5193138187751174],[113,301,67,-0.5183762442320585],[113,301,68,-0.5178399458527565],[113,301,69,-0.5172820575535297],[113,301,70,-0.5166258318349719],[113,301,71,-0.5157407047227025],[113,301,72,-0.5142517378553748],[113,301,73,-0.5122488643974066],[113,301,74,-0.5105016264133155],[113,301,75,-0.5092914546839893],[113,301,76,-0.5083487671799958],[113,301,77,-0.5074529582634568],[113,301,78,-0.5064700578805059],[113,301,79,-0.5053090718574822],[113,302,64,-0.5227295868098736],[113,302,65,-0.520820114761591],[113,302,66,-0.5193138187751174],[113,302,67,-0.5183762442320585],[113,302,68,-0.5178399458527565],[113,302,69,-0.5172820575535297],[113,302,70,-0.5166258318349719],[113,302,71,-0.5157407047227025],[113,302,72,-0.5142517378553748],[113,302,73,-0.5122488643974066],[113,302,74,-0.5105016264133155],[113,302,75,-0.5092914546839893],[113,302,76,-0.5083487671799958],[113,302,77,-0.5074529582634568],[113,302,78,-0.5064700578805059],[113,302,79,-0.5053090718574822],[113,303,64,-0.5227295868098736],[113,303,65,-0.520820114761591],[113,303,66,-0.5193138187751174],[113,303,67,-0.5183762442320585],[113,303,68,-0.5178399458527565],[113,303,69,-0.5172820575535297],[113,303,70,-0.5166258318349719],[113,303,71,-0.5157407047227025],[113,303,72,-0.5142517378553748],[113,303,73,-0.5122488643974066],[113,303,74,-0.5105016264133155],[113,303,75,-0.5092914546839893],[113,303,76,-0.5083487671799958],[113,303,77,-0.5074529582634568],[113,303,78,-0.5064700578805059],[113,303,79,-0.5053090718574822],[113,304,64,-0.5227295868098736],[113,304,65,-0.520820114761591],[113,304,66,-0.5193138187751174],[113,304,67,-0.5183762442320585],[113,304,68,-0.5178399458527565],[113,304,69,-0.5172820575535297],[113,304,70,-0.5166258318349719],[113,304,71,-0.5157407047227025],[113,304,72,-0.5142517378553748],[113,304,73,-0.5122488643974066],[113,304,74,-0.5105016264133155],[113,304,75,-0.5092914546839893],[113,304,76,-0.5083487671799958],[113,304,77,-0.5074529582634568],[113,304,78,-0.5064700578805059],[113,304,79,-0.5053090718574822],[113,305,64,-0.5227295868098736],[113,305,65,-0.520820114761591],[113,305,66,-0.5193138187751174],[113,305,67,-0.5183762442320585],[113,305,68,-0.5178399458527565],[113,305,69,-0.5172820575535297],[113,305,70,-0.5166258318349719],[113,305,71,-0.5157407047227025],[113,305,72,-0.5142517378553748],[113,305,73,-0.5122488643974066],[113,305,74,-0.5105016264133155],[113,305,75,-0.5092914546839893],[113,305,76,-0.5083487671799958],[113,305,77,-0.5074529582634568],[113,305,78,-0.5064700578805059],[113,305,79,-0.5053090718574822],[113,306,64,-0.5227295868098736],[113,306,65,-0.520820114761591],[113,306,66,-0.5193138187751174],[113,306,67,-0.5183762442320585],[113,306,68,-0.5178399458527565],[113,306,69,-0.5172820575535297],[113,306,70,-0.5166258318349719],[113,306,71,-0.5157407047227025],[113,306,72,-0.5142517378553748],[113,306,73,-0.5122488643974066],[113,306,74,-0.5105016264133155],[113,306,75,-0.5092914546839893],[113,306,76,-0.5083487671799958],[113,306,77,-0.5074529582634568],[113,306,78,-0.5064700578805059],[113,306,79,-0.5053090718574822],[113,307,64,-0.5227295868098736],[113,307,65,-0.520820114761591],[113,307,66,-0.5193138187751174],[113,307,67,-0.5183762442320585],[113,307,68,-0.5178399458527565],[113,307,69,-0.5172820575535297],[113,307,70,-0.5166258318349719],[113,307,71,-0.5157407047227025],[113,307,72,-0.5142517378553748],[113,307,73,-0.5122488643974066],[113,307,74,-0.5105016264133155],[113,307,75,-0.5092914546839893],[113,307,76,-0.5083487671799958],[113,307,77,-0.5074529582634568],[113,307,78,-0.5064700578805059],[113,307,79,-0.5053090718574822],[113,308,64,-0.5227295868098736],[113,308,65,-0.520820114761591],[113,308,66,-0.5193138187751174],[113,308,67,-0.5183762442320585],[113,308,68,-0.5178399458527565],[113,308,69,-0.5172820575535297],[113,308,70,-0.5166258318349719],[113,308,71,-0.5157407047227025],[113,308,72,-0.5142517378553748],[113,308,73,-0.5122488643974066],[113,308,74,-0.5105016264133155],[113,308,75,-0.5092914546839893],[113,308,76,-0.5083487671799958],[113,308,77,-0.5074529582634568],[113,308,78,-0.5064700578805059],[113,308,79,-0.5053090718574822],[113,309,64,-0.5227295868098736],[113,309,65,-0.520820114761591],[113,309,66,-0.5193138187751174],[113,309,67,-0.5183762442320585],[113,309,68,-0.5178399458527565],[113,309,69,-0.5172820575535297],[113,309,70,-0.5166258318349719],[113,309,71,-0.5157407047227025],[113,309,72,-0.5142517378553748],[113,309,73,-0.5122488643974066],[113,309,74,-0.5105016264133155],[113,309,75,-0.5092914546839893],[113,309,76,-0.5083487671799958],[113,309,77,-0.5074529582634568],[113,309,78,-0.5064700578805059],[113,309,79,-0.5053090718574822],[113,310,64,-0.5227295868098736],[113,310,65,-0.520820114761591],[113,310,66,-0.5193138187751174],[113,310,67,-0.5183762442320585],[113,310,68,-0.5178399458527565],[113,310,69,-0.5172820575535297],[113,310,70,-0.5166258318349719],[113,310,71,-0.5157407047227025],[113,310,72,-0.5142517378553748],[113,310,73,-0.5122488643974066],[113,310,74,-0.5105016264133155],[113,310,75,-0.5092914546839893],[113,310,76,-0.5083487671799958],[113,310,77,-0.5074529582634568],[113,310,78,-0.5064700578805059],[113,310,79,-0.5053090718574822],[113,311,64,-0.5227295868098736],[113,311,65,-0.520820114761591],[113,311,66,-0.5193138187751174],[113,311,67,-0.5183762442320585],[113,311,68,-0.5178399458527565],[113,311,69,-0.5172820575535297],[113,311,70,-0.5166258318349719],[113,311,71,-0.5157407047227025],[113,311,72,-0.5142517378553748],[113,311,73,-0.5122488643974066],[113,311,74,-0.5105016264133155],[113,311,75,-0.5092914546839893],[113,311,76,-0.5083487671799958],[113,311,77,-0.5074529582634568],[113,311,78,-0.5064700578805059],[113,311,79,-0.5053090718574822],[113,312,64,-0.5227295868098736],[113,312,65,-0.520820114761591],[113,312,66,-0.5193138187751174],[113,312,67,-0.5183762442320585],[113,312,68,-0.5178399458527565],[113,312,69,-0.5172820575535297],[113,312,70,-0.5166258318349719],[113,312,71,-0.5157407047227025],[113,312,72,-0.5142517378553748],[113,312,73,-0.5122488643974066],[113,312,74,-0.5105016264133155],[113,312,75,-0.5092914546839893],[113,312,76,-0.5083487671799958],[113,312,77,-0.5074529582634568],[113,312,78,-0.5064700578805059],[113,312,79,-0.5053090718574822],[113,313,64,-0.5227295868098736],[113,313,65,-0.520820114761591],[113,313,66,-0.5193138187751174],[113,313,67,-0.5183762442320585],[113,313,68,-0.5178399458527565],[113,313,69,-0.5172820575535297],[113,313,70,-0.5166258318349719],[113,313,71,-0.5157407047227025],[113,313,72,-0.5142517378553748],[113,313,73,-0.5122488643974066],[113,313,74,-0.5105016264133155],[113,313,75,-0.5092914546839893],[113,313,76,-0.5083487671799958],[113,313,77,-0.5074529582634568],[113,313,78,-0.5064700578805059],[113,313,79,-0.5053090718574822],[113,314,64,-0.5227295868098736],[113,314,65,-0.520820114761591],[113,314,66,-0.5193138187751174],[113,314,67,-0.5183762442320585],[113,314,68,-0.5178399458527565],[113,314,69,-0.5172820575535297],[113,314,70,-0.5166258318349719],[113,314,71,-0.5157407047227025],[113,314,72,-0.5142517378553748],[113,314,73,-0.5122488643974066],[113,314,74,-0.5105016264133155],[113,314,75,-0.5092914546839893],[113,314,76,-0.5083487671799958],[113,314,77,-0.5074529582634568],[113,314,78,-0.5064700578805059],[113,314,79,-0.5053090718574822],[113,315,64,-0.5227295868098736],[113,315,65,-0.520820114761591],[113,315,66,-0.5193138187751174],[113,315,67,-0.5183762442320585],[113,315,68,-0.5178399458527565],[113,315,69,-0.5172820575535297],[113,315,70,-0.5166258318349719],[113,315,71,-0.5157407047227025],[113,315,72,-0.5142517378553748],[113,315,73,-0.5122488643974066],[113,315,74,-0.5105016264133155],[113,315,75,-0.5092914546839893],[113,315,76,-0.5083487671799958],[113,315,77,-0.5074529582634568],[113,315,78,-0.5064700578805059],[113,315,79,-0.5053090718574822],[113,316,64,-0.5227295868098736],[113,316,65,-0.520820114761591],[113,316,66,-0.5193138187751174],[113,316,67,-0.5183762442320585],[113,316,68,-0.5178399458527565],[113,316,69,-0.5172820575535297],[113,316,70,-0.5166258318349719],[113,316,71,-0.5157407047227025],[113,316,72,-0.5142517378553748],[113,316,73,-0.5122488643974066],[113,316,74,-0.5105016264133155],[113,316,75,-0.5092914546839893],[113,316,76,-0.5083487671799958],[113,316,77,-0.5074529582634568],[113,316,78,-0.5064700578805059],[113,316,79,-0.5053090718574822],[113,317,64,-0.5227295868098736],[113,317,65,-0.520820114761591],[113,317,66,-0.5193138187751174],[113,317,67,-0.5183762442320585],[113,317,68,-0.5178399458527565],[113,317,69,-0.5172820575535297],[113,317,70,-0.5166258318349719],[113,317,71,-0.5157407047227025],[113,317,72,-0.5142517378553748],[113,317,73,-0.5122488643974066],[113,317,74,-0.5105016264133155],[113,317,75,-0.5092914546839893],[113,317,76,-0.5083487671799958],[113,317,77,-0.5074529582634568],[113,317,78,-0.5064700578805059],[113,317,79,-0.5053090718574822],[113,318,64,-0.5227295868098736],[113,318,65,-0.520820114761591],[113,318,66,-0.5193138187751174],[113,318,67,-0.5183762442320585],[113,318,68,-0.5178399458527565],[113,318,69,-0.5172820575535297],[113,318,70,-0.5166258318349719],[113,318,71,-0.5157407047227025],[113,318,72,-0.5142517378553748],[113,318,73,-0.5122488643974066],[113,318,74,-0.5105016264133155],[113,318,75,-0.5092914546839893],[113,318,76,-0.5083487671799958],[113,318,77,-0.5074529582634568],[113,318,78,-0.5064700578805059],[113,318,79,-0.5053090718574822],[113,319,64,-0.5227295868098736],[113,319,65,-0.520820114761591],[113,319,66,-0.5193138187751174],[113,319,67,-0.5183762442320585],[113,319,68,-0.5178399458527565],[113,319,69,-0.5172820575535297],[113,319,70,-0.5166258318349719],[113,319,71,-0.5157407047227025],[113,319,72,-0.5142517378553748],[113,319,73,-0.5122488643974066],[113,319,74,-0.5105016264133155],[113,319,75,-0.5092914546839893],[113,319,76,-0.5083487671799958],[113,319,77,-0.5074529582634568],[113,319,78,-0.5064700578805059],[113,319,79,-0.5053090718574822],[114,-64,64,-0.5283950641751289],[114,-64,65,-0.5268087666481733],[114,-64,66,-0.5254243705421686],[114,-64,67,-0.5242562610656023],[114,-64,68,-0.5233399346470833],[114,-64,69,-0.5223471540957689],[114,-64,70,-0.5212690830230713],[114,-64,71,-0.5199416745454073],[114,-64,72,-0.5180730791762471],[114,-64,73,-0.5158300111070275],[114,-64,74,-0.5137281464412808],[114,-64,75,-0.5123609788715839],[114,-64,76,-0.5115872910246253],[114,-64,77,-0.5109740369953215],[114,-64,78,-0.510067418217659],[114,-64,79,-0.5087996376678348],[114,-63,64,-0.5283950641751289],[114,-63,65,-0.5268087666481733],[114,-63,66,-0.5254243705421686],[114,-63,67,-0.5242562610656023],[114,-63,68,-0.5233399346470833],[114,-63,69,-0.5223471540957689],[114,-63,70,-0.5212690830230713],[114,-63,71,-0.5199416745454073],[114,-63,72,-0.5180730791762471],[114,-63,73,-0.5158300111070275],[114,-63,74,-0.5137281464412808],[114,-63,75,-0.5123609788715839],[114,-63,76,-0.5115872910246253],[114,-63,77,-0.5109740369953215],[114,-63,78,-0.510067418217659],[114,-63,79,-0.5087996376678348],[114,-62,64,-0.5283950641751289],[114,-62,65,-0.5268087666481733],[114,-62,66,-0.5254243705421686],[114,-62,67,-0.5242562610656023],[114,-62,68,-0.5233399346470833],[114,-62,69,-0.5223471540957689],[114,-62,70,-0.5212690830230713],[114,-62,71,-0.5199416745454073],[114,-62,72,-0.5180730791762471],[114,-62,73,-0.5158300111070275],[114,-62,74,-0.5137281464412808],[114,-62,75,-0.5123609788715839],[114,-62,76,-0.5115872910246253],[114,-62,77,-0.5109740369953215],[114,-62,78,-0.510067418217659],[114,-62,79,-0.5087996376678348],[114,-61,64,-0.5283950641751289],[114,-61,65,-0.5268087666481733],[114,-61,66,-0.5254243705421686],[114,-61,67,-0.5242562610656023],[114,-61,68,-0.5233399346470833],[114,-61,69,-0.5223471540957689],[114,-61,70,-0.5212690830230713],[114,-61,71,-0.5199416745454073],[114,-61,72,-0.5180730791762471],[114,-61,73,-0.5158300111070275],[114,-61,74,-0.5137281464412808],[114,-61,75,-0.5123609788715839],[114,-61,76,-0.5115872910246253],[114,-61,77,-0.5109740369953215],[114,-61,78,-0.510067418217659],[114,-61,79,-0.5087996376678348],[114,-60,64,-0.5283950641751289],[114,-60,65,-0.5268087666481733],[114,-60,66,-0.5254243705421686],[114,-60,67,-0.5242562610656023],[114,-60,68,-0.5233399346470833],[114,-60,69,-0.5223471540957689],[114,-60,70,-0.5212690830230713],[114,-60,71,-0.5199416745454073],[114,-60,72,-0.5180730791762471],[114,-60,73,-0.5158300111070275],[114,-60,74,-0.5137281464412808],[114,-60,75,-0.5123609788715839],[114,-60,76,-0.5115872910246253],[114,-60,77,-0.5109740369953215],[114,-60,78,-0.510067418217659],[114,-60,79,-0.5087996376678348],[114,-59,64,-0.5283950641751289],[114,-59,65,-0.5268087666481733],[114,-59,66,-0.5254243705421686],[114,-59,67,-0.5242562610656023],[114,-59,68,-0.5233399346470833],[114,-59,69,-0.5223471540957689],[114,-59,70,-0.5212690830230713],[114,-59,71,-0.5199416745454073],[114,-59,72,-0.5180730791762471],[114,-59,73,-0.5158300111070275],[114,-59,74,-0.5137281464412808],[114,-59,75,-0.5123609788715839],[114,-59,76,-0.5115872910246253],[114,-59,77,-0.5109740369953215],[114,-59,78,-0.510067418217659],[114,-59,79,-0.5087996376678348],[114,-58,64,-0.5283950641751289],[114,-58,65,-0.5268087666481733],[114,-58,66,-0.5254243705421686],[114,-58,67,-0.5242562610656023],[114,-58,68,-0.5233399346470833],[114,-58,69,-0.5223471540957689],[114,-58,70,-0.5212690830230713],[114,-58,71,-0.5199416745454073],[114,-58,72,-0.5180730791762471],[114,-58,73,-0.5158300111070275],[114,-58,74,-0.5137281464412808],[114,-58,75,-0.5123609788715839],[114,-58,76,-0.5115872910246253],[114,-58,77,-0.5109740369953215],[114,-58,78,-0.510067418217659],[114,-58,79,-0.5087996376678348],[114,-57,64,-0.5283950641751289],[114,-57,65,-0.5268087666481733],[114,-57,66,-0.5254243705421686],[114,-57,67,-0.5242562610656023],[114,-57,68,-0.5233399346470833],[114,-57,69,-0.5223471540957689],[114,-57,70,-0.5212690830230713],[114,-57,71,-0.5199416745454073],[114,-57,72,-0.5180730791762471],[114,-57,73,-0.5158300111070275],[114,-57,74,-0.5137281464412808],[114,-57,75,-0.5123609788715839],[114,-57,76,-0.5115872910246253],[114,-57,77,-0.5109740369953215],[114,-57,78,-0.510067418217659],[114,-57,79,-0.5087996376678348],[114,-56,64,-0.5283950641751289],[114,-56,65,-0.5268087666481733],[114,-56,66,-0.5254243705421686],[114,-56,67,-0.5242562610656023],[114,-56,68,-0.5233399346470833],[114,-56,69,-0.5223471540957689],[114,-56,70,-0.5212690830230713],[114,-56,71,-0.5199416745454073],[114,-56,72,-0.5180730791762471],[114,-56,73,-0.5158300111070275],[114,-56,74,-0.5137281464412808],[114,-56,75,-0.5123609788715839],[114,-56,76,-0.5115872910246253],[114,-56,77,-0.5109740369953215],[114,-56,78,-0.510067418217659],[114,-56,79,-0.5087996376678348],[114,-55,64,-0.5283950641751289],[114,-55,65,-0.5268087666481733],[114,-55,66,-0.5254243705421686],[114,-55,67,-0.5242562610656023],[114,-55,68,-0.5233399346470833],[114,-55,69,-0.5223471540957689],[114,-55,70,-0.5212690830230713],[114,-55,71,-0.5199416745454073],[114,-55,72,-0.5180730791762471],[114,-55,73,-0.5158300111070275],[114,-55,74,-0.5137281464412808],[114,-55,75,-0.5123609788715839],[114,-55,76,-0.5115872910246253],[114,-55,77,-0.5109740369953215],[114,-55,78,-0.510067418217659],[114,-55,79,-0.5087996376678348],[114,-54,64,-0.5283950641751289],[114,-54,65,-0.5268087666481733],[114,-54,66,-0.5254243705421686],[114,-54,67,-0.5242562610656023],[114,-54,68,-0.5233399346470833],[114,-54,69,-0.5223471540957689],[114,-54,70,-0.5212690830230713],[114,-54,71,-0.5199416745454073],[114,-54,72,-0.5180730791762471],[114,-54,73,-0.5158300111070275],[114,-54,74,-0.5137281464412808],[114,-54,75,-0.5123609788715839],[114,-54,76,-0.5115872910246253],[114,-54,77,-0.5109740369953215],[114,-54,78,-0.510067418217659],[114,-54,79,-0.5087996376678348],[114,-53,64,-0.5283950641751289],[114,-53,65,-0.5268087666481733],[114,-53,66,-0.5254243705421686],[114,-53,67,-0.5242562610656023],[114,-53,68,-0.5233399346470833],[114,-53,69,-0.5223471540957689],[114,-53,70,-0.5212690830230713],[114,-53,71,-0.5199416745454073],[114,-53,72,-0.5180730791762471],[114,-53,73,-0.5158300111070275],[114,-53,74,-0.5137281464412808],[114,-53,75,-0.5123609788715839],[114,-53,76,-0.5115872910246253],[114,-53,77,-0.5109740369953215],[114,-53,78,-0.510067418217659],[114,-53,79,-0.5087996376678348],[114,-52,64,-0.5283950641751289],[114,-52,65,-0.5268087666481733],[114,-52,66,-0.5254243705421686],[114,-52,67,-0.5242562610656023],[114,-52,68,-0.5233399346470833],[114,-52,69,-0.5223471540957689],[114,-52,70,-0.5212690830230713],[114,-52,71,-0.5199416745454073],[114,-52,72,-0.5180730791762471],[114,-52,73,-0.5158300111070275],[114,-52,74,-0.5137281464412808],[114,-52,75,-0.5123609788715839],[114,-52,76,-0.5115872910246253],[114,-52,77,-0.5109740369953215],[114,-52,78,-0.510067418217659],[114,-52,79,-0.5087996376678348],[114,-51,64,-0.5283950641751289],[114,-51,65,-0.5268087666481733],[114,-51,66,-0.5254243705421686],[114,-51,67,-0.5242562610656023],[114,-51,68,-0.5233399346470833],[114,-51,69,-0.5223471540957689],[114,-51,70,-0.5212690830230713],[114,-51,71,-0.5199416745454073],[114,-51,72,-0.5180730791762471],[114,-51,73,-0.5158300111070275],[114,-51,74,-0.5137281464412808],[114,-51,75,-0.5123609788715839],[114,-51,76,-0.5115872910246253],[114,-51,77,-0.5109740369953215],[114,-51,78,-0.510067418217659],[114,-51,79,-0.5087996376678348],[114,-50,64,-0.5283950641751289],[114,-50,65,-0.5268087666481733],[114,-50,66,-0.5254243705421686],[114,-50,67,-0.5242562610656023],[114,-50,68,-0.5233399346470833],[114,-50,69,-0.5223471540957689],[114,-50,70,-0.5212690830230713],[114,-50,71,-0.5199416745454073],[114,-50,72,-0.5180730791762471],[114,-50,73,-0.5158300111070275],[114,-50,74,-0.5137281464412808],[114,-50,75,-0.5123609788715839],[114,-50,76,-0.5115872910246253],[114,-50,77,-0.5109740369953215],[114,-50,78,-0.510067418217659],[114,-50,79,-0.5087996376678348],[114,-49,64,-0.5283950641751289],[114,-49,65,-0.5268087666481733],[114,-49,66,-0.5254243705421686],[114,-49,67,-0.5242562610656023],[114,-49,68,-0.5233399346470833],[114,-49,69,-0.5223471540957689],[114,-49,70,-0.5212690830230713],[114,-49,71,-0.5199416745454073],[114,-49,72,-0.5180730791762471],[114,-49,73,-0.5158300111070275],[114,-49,74,-0.5137281464412808],[114,-49,75,-0.5123609788715839],[114,-49,76,-0.5115872910246253],[114,-49,77,-0.5109740369953215],[114,-49,78,-0.510067418217659],[114,-49,79,-0.5087996376678348],[114,-48,64,-0.5283950641751289],[114,-48,65,-0.5268087666481733],[114,-48,66,-0.5254243705421686],[114,-48,67,-0.5242562610656023],[114,-48,68,-0.5233399346470833],[114,-48,69,-0.5223471540957689],[114,-48,70,-0.5212690830230713],[114,-48,71,-0.5199416745454073],[114,-48,72,-0.5180730791762471],[114,-48,73,-0.5158300111070275],[114,-48,74,-0.5137281464412808],[114,-48,75,-0.5123609788715839],[114,-48,76,-0.5115872910246253],[114,-48,77,-0.5109740369953215],[114,-48,78,-0.510067418217659],[114,-48,79,-0.5087996376678348],[114,-47,64,-0.5283950641751289],[114,-47,65,-0.5268087666481733],[114,-47,66,-0.5254243705421686],[114,-47,67,-0.5242562610656023],[114,-47,68,-0.5233399346470833],[114,-47,69,-0.5223471540957689],[114,-47,70,-0.5212690830230713],[114,-47,71,-0.5199416745454073],[114,-47,72,-0.5180730791762471],[114,-47,73,-0.5158300111070275],[114,-47,74,-0.5137281464412808],[114,-47,75,-0.5123609788715839],[114,-47,76,-0.5115872910246253],[114,-47,77,-0.5109740369953215],[114,-47,78,-0.510067418217659],[114,-47,79,-0.5087996376678348],[114,-46,64,-0.5283950641751289],[114,-46,65,-0.5268087666481733],[114,-46,66,-0.5254243705421686],[114,-46,67,-0.5242562610656023],[114,-46,68,-0.5233399346470833],[114,-46,69,-0.5223471540957689],[114,-46,70,-0.5212690830230713],[114,-46,71,-0.5199416745454073],[114,-46,72,-0.5180730791762471],[114,-46,73,-0.5158300111070275],[114,-46,74,-0.5137281464412808],[114,-46,75,-0.5123609788715839],[114,-46,76,-0.5115872910246253],[114,-46,77,-0.5109740369953215],[114,-46,78,-0.510067418217659],[114,-46,79,-0.5087996376678348],[114,-45,64,-0.5283950641751289],[114,-45,65,-0.5268087666481733],[114,-45,66,-0.5254243705421686],[114,-45,67,-0.5242562610656023],[114,-45,68,-0.5233399346470833],[114,-45,69,-0.5223471540957689],[114,-45,70,-0.5212690830230713],[114,-45,71,-0.5199416745454073],[114,-45,72,-0.5180730791762471],[114,-45,73,-0.5158300111070275],[114,-45,74,-0.5137281464412808],[114,-45,75,-0.5123609788715839],[114,-45,76,-0.5115872910246253],[114,-45,77,-0.5109740369953215],[114,-45,78,-0.510067418217659],[114,-45,79,-0.5087996376678348],[114,-44,64,-0.5283950641751289],[114,-44,65,-0.5268087666481733],[114,-44,66,-0.5254243705421686],[114,-44,67,-0.5242562610656023],[114,-44,68,-0.5233399346470833],[114,-44,69,-0.5223471540957689],[114,-44,70,-0.5212690830230713],[114,-44,71,-0.5199416745454073],[114,-44,72,-0.5180730791762471],[114,-44,73,-0.5158300111070275],[114,-44,74,-0.5137281464412808],[114,-44,75,-0.5123609788715839],[114,-44,76,-0.5115872910246253],[114,-44,77,-0.5109740369953215],[114,-44,78,-0.510067418217659],[114,-44,79,-0.5087996376678348],[114,-43,64,-0.5283950641751289],[114,-43,65,-0.5268087666481733],[114,-43,66,-0.5254243705421686],[114,-43,67,-0.5242562610656023],[114,-43,68,-0.5233399346470833],[114,-43,69,-0.5223471540957689],[114,-43,70,-0.5212690830230713],[114,-43,71,-0.5199416745454073],[114,-43,72,-0.5180730791762471],[114,-43,73,-0.5158300111070275],[114,-43,74,-0.5137281464412808],[114,-43,75,-0.5123609788715839],[114,-43,76,-0.5115872910246253],[114,-43,77,-0.5109740369953215],[114,-43,78,-0.510067418217659],[114,-43,79,-0.5087996376678348],[114,-42,64,-0.5283950641751289],[114,-42,65,-0.5268087666481733],[114,-42,66,-0.5254243705421686],[114,-42,67,-0.5242562610656023],[114,-42,68,-0.5233399346470833],[114,-42,69,-0.5223471540957689],[114,-42,70,-0.5212690830230713],[114,-42,71,-0.5199416745454073],[114,-42,72,-0.5180730791762471],[114,-42,73,-0.5158300111070275],[114,-42,74,-0.5137281464412808],[114,-42,75,-0.5123609788715839],[114,-42,76,-0.5115872910246253],[114,-42,77,-0.5109740369953215],[114,-42,78,-0.510067418217659],[114,-42,79,-0.5087996376678348],[114,-41,64,-0.5283950641751289],[114,-41,65,-0.5268087666481733],[114,-41,66,-0.5254243705421686],[114,-41,67,-0.5242562610656023],[114,-41,68,-0.5233399346470833],[114,-41,69,-0.5223471540957689],[114,-41,70,-0.5212690830230713],[114,-41,71,-0.5199416745454073],[114,-41,72,-0.5180730791762471],[114,-41,73,-0.5158300111070275],[114,-41,74,-0.5137281464412808],[114,-41,75,-0.5123609788715839],[114,-41,76,-0.5115872910246253],[114,-41,77,-0.5109740369953215],[114,-41,78,-0.510067418217659],[114,-41,79,-0.5087996376678348],[114,-40,64,-0.5283950641751289],[114,-40,65,-0.5268087666481733],[114,-40,66,-0.5254243705421686],[114,-40,67,-0.5242562610656023],[114,-40,68,-0.5233399346470833],[114,-40,69,-0.5223471540957689],[114,-40,70,-0.5212690830230713],[114,-40,71,-0.5199416745454073],[114,-40,72,-0.5180730791762471],[114,-40,73,-0.5158300111070275],[114,-40,74,-0.5137281464412808],[114,-40,75,-0.5123609788715839],[114,-40,76,-0.5115872910246253],[114,-40,77,-0.5109740369953215],[114,-40,78,-0.510067418217659],[114,-40,79,-0.5087996376678348],[114,-39,64,-0.5283950641751289],[114,-39,65,-0.5268087666481733],[114,-39,66,-0.5254243705421686],[114,-39,67,-0.5242562610656023],[114,-39,68,-0.5233399346470833],[114,-39,69,-0.5223471540957689],[114,-39,70,-0.5212690830230713],[114,-39,71,-0.5199416745454073],[114,-39,72,-0.5180730791762471],[114,-39,73,-0.5158300111070275],[114,-39,74,-0.5137281464412808],[114,-39,75,-0.5123609788715839],[114,-39,76,-0.5115872910246253],[114,-39,77,-0.5109740369953215],[114,-39,78,-0.510067418217659],[114,-39,79,-0.5087996376678348],[114,-38,64,-0.5283950641751289],[114,-38,65,-0.5268087666481733],[114,-38,66,-0.5254243705421686],[114,-38,67,-0.5242562610656023],[114,-38,68,-0.5233399346470833],[114,-38,69,-0.5223471540957689],[114,-38,70,-0.5212690830230713],[114,-38,71,-0.5199416745454073],[114,-38,72,-0.5180730791762471],[114,-38,73,-0.5158300111070275],[114,-38,74,-0.5137281464412808],[114,-38,75,-0.5123609788715839],[114,-38,76,-0.5115872910246253],[114,-38,77,-0.5109740369953215],[114,-38,78,-0.510067418217659],[114,-38,79,-0.5087996376678348],[114,-37,64,-0.5283950641751289],[114,-37,65,-0.5268087666481733],[114,-37,66,-0.5254243705421686],[114,-37,67,-0.5242562610656023],[114,-37,68,-0.5233399346470833],[114,-37,69,-0.5223471540957689],[114,-37,70,-0.5212690830230713],[114,-37,71,-0.5199416745454073],[114,-37,72,-0.5180730791762471],[114,-37,73,-0.5158300111070275],[114,-37,74,-0.5137281464412808],[114,-37,75,-0.5123609788715839],[114,-37,76,-0.5115872910246253],[114,-37,77,-0.5109740369953215],[114,-37,78,-0.510067418217659],[114,-37,79,-0.5087996376678348],[114,-36,64,-0.5283950641751289],[114,-36,65,-0.5268087666481733],[114,-36,66,-0.5254243705421686],[114,-36,67,-0.5242562610656023],[114,-36,68,-0.5233399346470833],[114,-36,69,-0.5223471540957689],[114,-36,70,-0.5212690830230713],[114,-36,71,-0.5199416745454073],[114,-36,72,-0.5180730791762471],[114,-36,73,-0.5158300111070275],[114,-36,74,-0.5137281464412808],[114,-36,75,-0.5123609788715839],[114,-36,76,-0.5115872910246253],[114,-36,77,-0.5109740369953215],[114,-36,78,-0.510067418217659],[114,-36,79,-0.5087996376678348],[114,-35,64,-0.5283950641751289],[114,-35,65,-0.5268087666481733],[114,-35,66,-0.5254243705421686],[114,-35,67,-0.5242562610656023],[114,-35,68,-0.5233399346470833],[114,-35,69,-0.5223471540957689],[114,-35,70,-0.5212690830230713],[114,-35,71,-0.5199416745454073],[114,-35,72,-0.5180730791762471],[114,-35,73,-0.5158300111070275],[114,-35,74,-0.5137281464412808],[114,-35,75,-0.5123609788715839],[114,-35,76,-0.5115872910246253],[114,-35,77,-0.5109740369953215],[114,-35,78,-0.510067418217659],[114,-35,79,-0.5087996376678348],[114,-34,64,-0.5283950641751289],[114,-34,65,-0.5268087666481733],[114,-34,66,-0.5254243705421686],[114,-34,67,-0.5242562610656023],[114,-34,68,-0.5233399346470833],[114,-34,69,-0.5223471540957689],[114,-34,70,-0.5212690830230713],[114,-34,71,-0.5199416745454073],[114,-34,72,-0.5180730791762471],[114,-34,73,-0.5158300111070275],[114,-34,74,-0.5137281464412808],[114,-34,75,-0.5123609788715839],[114,-34,76,-0.5115872910246253],[114,-34,77,-0.5109740369953215],[114,-34,78,-0.510067418217659],[114,-34,79,-0.5087996376678348],[114,-33,64,-0.5283950641751289],[114,-33,65,-0.5268087666481733],[114,-33,66,-0.5254243705421686],[114,-33,67,-0.5242562610656023],[114,-33,68,-0.5233399346470833],[114,-33,69,-0.5223471540957689],[114,-33,70,-0.5212690830230713],[114,-33,71,-0.5199416745454073],[114,-33,72,-0.5180730791762471],[114,-33,73,-0.5158300111070275],[114,-33,74,-0.5137281464412808],[114,-33,75,-0.5123609788715839],[114,-33,76,-0.5115872910246253],[114,-33,77,-0.5109740369953215],[114,-33,78,-0.510067418217659],[114,-33,79,-0.5087996376678348],[114,-32,64,-0.5283950641751289],[114,-32,65,-0.5268087666481733],[114,-32,66,-0.5254243705421686],[114,-32,67,-0.5242562610656023],[114,-32,68,-0.5233399346470833],[114,-32,69,-0.5223471540957689],[114,-32,70,-0.5212690830230713],[114,-32,71,-0.5199416745454073],[114,-32,72,-0.5180730791762471],[114,-32,73,-0.5158300111070275],[114,-32,74,-0.5137281464412808],[114,-32,75,-0.5123609788715839],[114,-32,76,-0.5115872910246253],[114,-32,77,-0.5109740369953215],[114,-32,78,-0.510067418217659],[114,-32,79,-0.5087996376678348],[114,-31,64,-0.5283950641751289],[114,-31,65,-0.5268087666481733],[114,-31,66,-0.5254243705421686],[114,-31,67,-0.5242562610656023],[114,-31,68,-0.5233399346470833],[114,-31,69,-0.5223471540957689],[114,-31,70,-0.5212690830230713],[114,-31,71,-0.5199416745454073],[114,-31,72,-0.5180730791762471],[114,-31,73,-0.5158300111070275],[114,-31,74,-0.5137281464412808],[114,-31,75,-0.5123609788715839],[114,-31,76,-0.5115872910246253],[114,-31,77,-0.5109740369953215],[114,-31,78,-0.510067418217659],[114,-31,79,-0.5087996376678348],[114,-30,64,-0.5283950641751289],[114,-30,65,-0.5268087666481733],[114,-30,66,-0.5254243705421686],[114,-30,67,-0.5242562610656023],[114,-30,68,-0.5233399346470833],[114,-30,69,-0.5223471540957689],[114,-30,70,-0.5212690830230713],[114,-30,71,-0.5199416745454073],[114,-30,72,-0.5180730791762471],[114,-30,73,-0.5158300111070275],[114,-30,74,-0.5137281464412808],[114,-30,75,-0.5123609788715839],[114,-30,76,-0.5115872910246253],[114,-30,77,-0.5109740369953215],[114,-30,78,-0.510067418217659],[114,-30,79,-0.5087996376678348],[114,-29,64,-0.5283950641751289],[114,-29,65,-0.5268087666481733],[114,-29,66,-0.5254243705421686],[114,-29,67,-0.5242562610656023],[114,-29,68,-0.5233399346470833],[114,-29,69,-0.5223471540957689],[114,-29,70,-0.5212690830230713],[114,-29,71,-0.5199416745454073],[114,-29,72,-0.5180730791762471],[114,-29,73,-0.5158300111070275],[114,-29,74,-0.5137281464412808],[114,-29,75,-0.5123609788715839],[114,-29,76,-0.5115872910246253],[114,-29,77,-0.5109740369953215],[114,-29,78,-0.510067418217659],[114,-29,79,-0.5087996376678348],[114,-28,64,-0.5283950641751289],[114,-28,65,-0.5268087666481733],[114,-28,66,-0.5254243705421686],[114,-28,67,-0.5242562610656023],[114,-28,68,-0.5233399346470833],[114,-28,69,-0.5223471540957689],[114,-28,70,-0.5212690830230713],[114,-28,71,-0.5199416745454073],[114,-28,72,-0.5180730791762471],[114,-28,73,-0.5158300111070275],[114,-28,74,-0.5137281464412808],[114,-28,75,-0.5123609788715839],[114,-28,76,-0.5115872910246253],[114,-28,77,-0.5109740369953215],[114,-28,78,-0.510067418217659],[114,-28,79,-0.5087996376678348],[114,-27,64,-0.5283950641751289],[114,-27,65,-0.5268087666481733],[114,-27,66,-0.5254243705421686],[114,-27,67,-0.5242562610656023],[114,-27,68,-0.5233399346470833],[114,-27,69,-0.5223471540957689],[114,-27,70,-0.5212690830230713],[114,-27,71,-0.5199416745454073],[114,-27,72,-0.5180730791762471],[114,-27,73,-0.5158300111070275],[114,-27,74,-0.5137281464412808],[114,-27,75,-0.5123609788715839],[114,-27,76,-0.5115872910246253],[114,-27,77,-0.5109740369953215],[114,-27,78,-0.510067418217659],[114,-27,79,-0.5087996376678348],[114,-26,64,-0.5283950641751289],[114,-26,65,-0.5268087666481733],[114,-26,66,-0.5254243705421686],[114,-26,67,-0.5242562610656023],[114,-26,68,-0.5233399346470833],[114,-26,69,-0.5223471540957689],[114,-26,70,-0.5212690830230713],[114,-26,71,-0.5199416745454073],[114,-26,72,-0.5180730791762471],[114,-26,73,-0.5158300111070275],[114,-26,74,-0.5137281464412808],[114,-26,75,-0.5123609788715839],[114,-26,76,-0.5115872910246253],[114,-26,77,-0.5109740369953215],[114,-26,78,-0.510067418217659],[114,-26,79,-0.5087996376678348],[114,-25,64,-0.5283950641751289],[114,-25,65,-0.5268087666481733],[114,-25,66,-0.5254243705421686],[114,-25,67,-0.5242562610656023],[114,-25,68,-0.5233399346470833],[114,-25,69,-0.5223471540957689],[114,-25,70,-0.5212690830230713],[114,-25,71,-0.5199416745454073],[114,-25,72,-0.5180730791762471],[114,-25,73,-0.5158300111070275],[114,-25,74,-0.5137281464412808],[114,-25,75,-0.5123609788715839],[114,-25,76,-0.5115872910246253],[114,-25,77,-0.5109740369953215],[114,-25,78,-0.510067418217659],[114,-25,79,-0.5087996376678348],[114,-24,64,-0.5283950641751289],[114,-24,65,-0.5268087666481733],[114,-24,66,-0.5254243705421686],[114,-24,67,-0.5242562610656023],[114,-24,68,-0.5233399346470833],[114,-24,69,-0.5223471540957689],[114,-24,70,-0.5212690830230713],[114,-24,71,-0.5199416745454073],[114,-24,72,-0.5180730791762471],[114,-24,73,-0.5158300111070275],[114,-24,74,-0.5137281464412808],[114,-24,75,-0.5123609788715839],[114,-24,76,-0.5115872910246253],[114,-24,77,-0.5109740369953215],[114,-24,78,-0.510067418217659],[114,-24,79,-0.5087996376678348],[114,-23,64,-0.5283950641751289],[114,-23,65,-0.5268087666481733],[114,-23,66,-0.5254243705421686],[114,-23,67,-0.5242562610656023],[114,-23,68,-0.5233399346470833],[114,-23,69,-0.5223471540957689],[114,-23,70,-0.5212690830230713],[114,-23,71,-0.5199416745454073],[114,-23,72,-0.5180730791762471],[114,-23,73,-0.5158300111070275],[114,-23,74,-0.5137281464412808],[114,-23,75,-0.5123609788715839],[114,-23,76,-0.5115872910246253],[114,-23,77,-0.5109740369953215],[114,-23,78,-0.510067418217659],[114,-23,79,-0.5087996376678348],[114,-22,64,-0.5283950641751289],[114,-22,65,-0.5268087666481733],[114,-22,66,-0.5254243705421686],[114,-22,67,-0.5242562610656023],[114,-22,68,-0.5233399346470833],[114,-22,69,-0.5223471540957689],[114,-22,70,-0.5212690830230713],[114,-22,71,-0.5199416745454073],[114,-22,72,-0.5180730791762471],[114,-22,73,-0.5158300111070275],[114,-22,74,-0.5137281464412808],[114,-22,75,-0.5123609788715839],[114,-22,76,-0.5115872910246253],[114,-22,77,-0.5109740369953215],[114,-22,78,-0.510067418217659],[114,-22,79,-0.5087996376678348],[114,-21,64,-0.5283950641751289],[114,-21,65,-0.5268087666481733],[114,-21,66,-0.5254243705421686],[114,-21,67,-0.5242562610656023],[114,-21,68,-0.5233399346470833],[114,-21,69,-0.5223471540957689],[114,-21,70,-0.5212690830230713],[114,-21,71,-0.5199416745454073],[114,-21,72,-0.5180730791762471],[114,-21,73,-0.5158300111070275],[114,-21,74,-0.5137281464412808],[114,-21,75,-0.5123609788715839],[114,-21,76,-0.5115872910246253],[114,-21,77,-0.5109740369953215],[114,-21,78,-0.510067418217659],[114,-21,79,-0.5087996376678348],[114,-20,64,-0.5283950641751289],[114,-20,65,-0.5268087666481733],[114,-20,66,-0.5254243705421686],[114,-20,67,-0.5242562610656023],[114,-20,68,-0.5233399346470833],[114,-20,69,-0.5223471540957689],[114,-20,70,-0.5212690830230713],[114,-20,71,-0.5199416745454073],[114,-20,72,-0.5180730791762471],[114,-20,73,-0.5158300111070275],[114,-20,74,-0.5137281464412808],[114,-20,75,-0.5123609788715839],[114,-20,76,-0.5115872910246253],[114,-20,77,-0.5109740369953215],[114,-20,78,-0.510067418217659],[114,-20,79,-0.5087996376678348],[114,-19,64,-0.5283950641751289],[114,-19,65,-0.5268087666481733],[114,-19,66,-0.5254243705421686],[114,-19,67,-0.5242562610656023],[114,-19,68,-0.5233399346470833],[114,-19,69,-0.5223471540957689],[114,-19,70,-0.5212690830230713],[114,-19,71,-0.5199416745454073],[114,-19,72,-0.5180730791762471],[114,-19,73,-0.5158300111070275],[114,-19,74,-0.5137281464412808],[114,-19,75,-0.5123609788715839],[114,-19,76,-0.5115872910246253],[114,-19,77,-0.5109740369953215],[114,-19,78,-0.510067418217659],[114,-19,79,-0.5087996376678348],[114,-18,64,-0.5283950641751289],[114,-18,65,-0.5268087666481733],[114,-18,66,-0.5254243705421686],[114,-18,67,-0.5242562610656023],[114,-18,68,-0.5233399346470833],[114,-18,69,-0.5223471540957689],[114,-18,70,-0.5212690830230713],[114,-18,71,-0.5199416745454073],[114,-18,72,-0.5180730791762471],[114,-18,73,-0.5158300111070275],[114,-18,74,-0.5137281464412808],[114,-18,75,-0.5123609788715839],[114,-18,76,-0.5115872910246253],[114,-18,77,-0.5109740369953215],[114,-18,78,-0.510067418217659],[114,-18,79,-0.5087996376678348],[114,-17,64,-0.5283950641751289],[114,-17,65,-0.5268087666481733],[114,-17,66,-0.5254243705421686],[114,-17,67,-0.5242562610656023],[114,-17,68,-0.5233399346470833],[114,-17,69,-0.5223471540957689],[114,-17,70,-0.5212690830230713],[114,-17,71,-0.5199416745454073],[114,-17,72,-0.5180730791762471],[114,-17,73,-0.5158300111070275],[114,-17,74,-0.5137281464412808],[114,-17,75,-0.5123609788715839],[114,-17,76,-0.5115872910246253],[114,-17,77,-0.5109740369953215],[114,-17,78,-0.510067418217659],[114,-17,79,-0.5087996376678348],[114,-16,64,-0.5283950641751289],[114,-16,65,-0.5268087666481733],[114,-16,66,-0.5254243705421686],[114,-16,67,-0.5242562610656023],[114,-16,68,-0.5233399346470833],[114,-16,69,-0.5223471540957689],[114,-16,70,-0.5212690830230713],[114,-16,71,-0.5199416745454073],[114,-16,72,-0.5180730791762471],[114,-16,73,-0.5158300111070275],[114,-16,74,-0.5137281464412808],[114,-16,75,-0.5123609788715839],[114,-16,76,-0.5115872910246253],[114,-16,77,-0.5109740369953215],[114,-16,78,-0.510067418217659],[114,-16,79,-0.5087996376678348],[114,-15,64,-0.5283950641751289],[114,-15,65,-0.5268087666481733],[114,-15,66,-0.5254243705421686],[114,-15,67,-0.5242562610656023],[114,-15,68,-0.5233399346470833],[114,-15,69,-0.5223471540957689],[114,-15,70,-0.5212690830230713],[114,-15,71,-0.5199416745454073],[114,-15,72,-0.5180730791762471],[114,-15,73,-0.5158300111070275],[114,-15,74,-0.5137281464412808],[114,-15,75,-0.5123609788715839],[114,-15,76,-0.5115872910246253],[114,-15,77,-0.5109740369953215],[114,-15,78,-0.510067418217659],[114,-15,79,-0.5087996376678348],[114,-14,64,-0.5283950641751289],[114,-14,65,-0.5268087666481733],[114,-14,66,-0.5254243705421686],[114,-14,67,-0.5242562610656023],[114,-14,68,-0.5233399346470833],[114,-14,69,-0.5223471540957689],[114,-14,70,-0.5212690830230713],[114,-14,71,-0.5199416745454073],[114,-14,72,-0.5180730791762471],[114,-14,73,-0.5158300111070275],[114,-14,74,-0.5137281464412808],[114,-14,75,-0.5123609788715839],[114,-14,76,-0.5115872910246253],[114,-14,77,-0.5109740369953215],[114,-14,78,-0.510067418217659],[114,-14,79,-0.5087996376678348],[114,-13,64,-0.5283950641751289],[114,-13,65,-0.5268087666481733],[114,-13,66,-0.5254243705421686],[114,-13,67,-0.5242562610656023],[114,-13,68,-0.5233399346470833],[114,-13,69,-0.5223471540957689],[114,-13,70,-0.5212690830230713],[114,-13,71,-0.5199416745454073],[114,-13,72,-0.5180730791762471],[114,-13,73,-0.5158300111070275],[114,-13,74,-0.5137281464412808],[114,-13,75,-0.5123609788715839],[114,-13,76,-0.5115872910246253],[114,-13,77,-0.5109740369953215],[114,-13,78,-0.510067418217659],[114,-13,79,-0.5087996376678348],[114,-12,64,-0.5283950641751289],[114,-12,65,-0.5268087666481733],[114,-12,66,-0.5254243705421686],[114,-12,67,-0.5242562610656023],[114,-12,68,-0.5233399346470833],[114,-12,69,-0.5223471540957689],[114,-12,70,-0.5212690830230713],[114,-12,71,-0.5199416745454073],[114,-12,72,-0.5180730791762471],[114,-12,73,-0.5158300111070275],[114,-12,74,-0.5137281464412808],[114,-12,75,-0.5123609788715839],[114,-12,76,-0.5115872910246253],[114,-12,77,-0.5109740369953215],[114,-12,78,-0.510067418217659],[114,-12,79,-0.5087996376678348],[114,-11,64,-0.5283950641751289],[114,-11,65,-0.5268087666481733],[114,-11,66,-0.5254243705421686],[114,-11,67,-0.5242562610656023],[114,-11,68,-0.5233399346470833],[114,-11,69,-0.5223471540957689],[114,-11,70,-0.5212690830230713],[114,-11,71,-0.5199416745454073],[114,-11,72,-0.5180730791762471],[114,-11,73,-0.5158300111070275],[114,-11,74,-0.5137281464412808],[114,-11,75,-0.5123609788715839],[114,-11,76,-0.5115872910246253],[114,-11,77,-0.5109740369953215],[114,-11,78,-0.510067418217659],[114,-11,79,-0.5087996376678348],[114,-10,64,-0.5283950641751289],[114,-10,65,-0.5268087666481733],[114,-10,66,-0.5254243705421686],[114,-10,67,-0.5242562610656023],[114,-10,68,-0.5233399346470833],[114,-10,69,-0.5223471540957689],[114,-10,70,-0.5212690830230713],[114,-10,71,-0.5199416745454073],[114,-10,72,-0.5180730791762471],[114,-10,73,-0.5158300111070275],[114,-10,74,-0.5137281464412808],[114,-10,75,-0.5123609788715839],[114,-10,76,-0.5115872910246253],[114,-10,77,-0.5109740369953215],[114,-10,78,-0.510067418217659],[114,-10,79,-0.5087996376678348],[114,-9,64,-0.5283950641751289],[114,-9,65,-0.5268087666481733],[114,-9,66,-0.5254243705421686],[114,-9,67,-0.5242562610656023],[114,-9,68,-0.5233399346470833],[114,-9,69,-0.5223471540957689],[114,-9,70,-0.5212690830230713],[114,-9,71,-0.5199416745454073],[114,-9,72,-0.5180730791762471],[114,-9,73,-0.5158300111070275],[114,-9,74,-0.5137281464412808],[114,-9,75,-0.5123609788715839],[114,-9,76,-0.5115872910246253],[114,-9,77,-0.5109740369953215],[114,-9,78,-0.510067418217659],[114,-9,79,-0.5087996376678348],[114,-8,64,-0.5283950641751289],[114,-8,65,-0.5268087666481733],[114,-8,66,-0.5254243705421686],[114,-8,67,-0.5242562610656023],[114,-8,68,-0.5233399346470833],[114,-8,69,-0.5223471540957689],[114,-8,70,-0.5212690830230713],[114,-8,71,-0.5199416745454073],[114,-8,72,-0.5180730791762471],[114,-8,73,-0.5158300111070275],[114,-8,74,-0.5137281464412808],[114,-8,75,-0.5123609788715839],[114,-8,76,-0.5115872910246253],[114,-8,77,-0.5109740369953215],[114,-8,78,-0.510067418217659],[114,-8,79,-0.5087996376678348],[114,-7,64,-0.5283950641751289],[114,-7,65,-0.5268087666481733],[114,-7,66,-0.5254243705421686],[114,-7,67,-0.5242562610656023],[114,-7,68,-0.5233399346470833],[114,-7,69,-0.5223471540957689],[114,-7,70,-0.5212690830230713],[114,-7,71,-0.5199416745454073],[114,-7,72,-0.5180730791762471],[114,-7,73,-0.5158300111070275],[114,-7,74,-0.5137281464412808],[114,-7,75,-0.5123609788715839],[114,-7,76,-0.5115872910246253],[114,-7,77,-0.5109740369953215],[114,-7,78,-0.510067418217659],[114,-7,79,-0.5087996376678348],[114,-6,64,-0.5283950641751289],[114,-6,65,-0.5268087666481733],[114,-6,66,-0.5254243705421686],[114,-6,67,-0.5242562610656023],[114,-6,68,-0.5233399346470833],[114,-6,69,-0.5223471540957689],[114,-6,70,-0.5212690830230713],[114,-6,71,-0.5199416745454073],[114,-6,72,-0.5180730791762471],[114,-6,73,-0.5158300111070275],[114,-6,74,-0.5137281464412808],[114,-6,75,-0.5123609788715839],[114,-6,76,-0.5115872910246253],[114,-6,77,-0.5109740369953215],[114,-6,78,-0.510067418217659],[114,-6,79,-0.5087996376678348],[114,-5,64,-0.5283950641751289],[114,-5,65,-0.5268087666481733],[114,-5,66,-0.5254243705421686],[114,-5,67,-0.5242562610656023],[114,-5,68,-0.5233399346470833],[114,-5,69,-0.5223471540957689],[114,-5,70,-0.5212690830230713],[114,-5,71,-0.5199416745454073],[114,-5,72,-0.5180730791762471],[114,-5,73,-0.5158300111070275],[114,-5,74,-0.5137281464412808],[114,-5,75,-0.5123609788715839],[114,-5,76,-0.5115872910246253],[114,-5,77,-0.5109740369953215],[114,-5,78,-0.510067418217659],[114,-5,79,-0.5087996376678348],[114,-4,64,-0.5283950641751289],[114,-4,65,-0.5268087666481733],[114,-4,66,-0.5254243705421686],[114,-4,67,-0.5242562610656023],[114,-4,68,-0.5233399346470833],[114,-4,69,-0.5223471540957689],[114,-4,70,-0.5212690830230713],[114,-4,71,-0.5199416745454073],[114,-4,72,-0.5180730791762471],[114,-4,73,-0.5158300111070275],[114,-4,74,-0.5137281464412808],[114,-4,75,-0.5123609788715839],[114,-4,76,-0.5115872910246253],[114,-4,77,-0.5109740369953215],[114,-4,78,-0.510067418217659],[114,-4,79,-0.5087996376678348],[114,-3,64,-0.5283950641751289],[114,-3,65,-0.5268087666481733],[114,-3,66,-0.5254243705421686],[114,-3,67,-0.5242562610656023],[114,-3,68,-0.5233399346470833],[114,-3,69,-0.5223471540957689],[114,-3,70,-0.5212690830230713],[114,-3,71,-0.5199416745454073],[114,-3,72,-0.5180730791762471],[114,-3,73,-0.5158300111070275],[114,-3,74,-0.5137281464412808],[114,-3,75,-0.5123609788715839],[114,-3,76,-0.5115872910246253],[114,-3,77,-0.5109740369953215],[114,-3,78,-0.510067418217659],[114,-3,79,-0.5087996376678348],[114,-2,64,-0.5283950641751289],[114,-2,65,-0.5268087666481733],[114,-2,66,-0.5254243705421686],[114,-2,67,-0.5242562610656023],[114,-2,68,-0.5233399346470833],[114,-2,69,-0.5223471540957689],[114,-2,70,-0.5212690830230713],[114,-2,71,-0.5199416745454073],[114,-2,72,-0.5180730791762471],[114,-2,73,-0.5158300111070275],[114,-2,74,-0.5137281464412808],[114,-2,75,-0.5123609788715839],[114,-2,76,-0.5115872910246253],[114,-2,77,-0.5109740369953215],[114,-2,78,-0.510067418217659],[114,-2,79,-0.5087996376678348],[114,-1,64,-0.5283950641751289],[114,-1,65,-0.5268087666481733],[114,-1,66,-0.5254243705421686],[114,-1,67,-0.5242562610656023],[114,-1,68,-0.5233399346470833],[114,-1,69,-0.5223471540957689],[114,-1,70,-0.5212690830230713],[114,-1,71,-0.5199416745454073],[114,-1,72,-0.5180730791762471],[114,-1,73,-0.5158300111070275],[114,-1,74,-0.5137281464412808],[114,-1,75,-0.5123609788715839],[114,-1,76,-0.5115872910246253],[114,-1,77,-0.5109740369953215],[114,-1,78,-0.510067418217659],[114,-1,79,-0.5087996376678348],[114,0,64,-0.5283950641751289],[114,0,65,-0.5268087666481733],[114,0,66,-0.5254243705421686],[114,0,67,-0.5242562610656023],[114,0,68,-0.5233399346470833],[114,0,69,-0.5223471540957689],[114,0,70,-0.5212690830230713],[114,0,71,-0.5199416745454073],[114,0,72,-0.5180730791762471],[114,0,73,-0.5158300111070275],[114,0,74,-0.5137281464412808],[114,0,75,-0.5123609788715839],[114,0,76,-0.5115872910246253],[114,0,77,-0.5109740369953215],[114,0,78,-0.510067418217659],[114,0,79,-0.5087996376678348],[114,1,64,-0.5283950641751289],[114,1,65,-0.5268087666481733],[114,1,66,-0.5254243705421686],[114,1,67,-0.5242562610656023],[114,1,68,-0.5233399346470833],[114,1,69,-0.5223471540957689],[114,1,70,-0.5212690830230713],[114,1,71,-0.5199416745454073],[114,1,72,-0.5180730791762471],[114,1,73,-0.5158300111070275],[114,1,74,-0.5137281464412808],[114,1,75,-0.5123609788715839],[114,1,76,-0.5115872910246253],[114,1,77,-0.5109740369953215],[114,1,78,-0.510067418217659],[114,1,79,-0.5087996376678348],[114,2,64,-0.5283950641751289],[114,2,65,-0.5268087666481733],[114,2,66,-0.5254243705421686],[114,2,67,-0.5242562610656023],[114,2,68,-0.5233399346470833],[114,2,69,-0.5223471540957689],[114,2,70,-0.5212690830230713],[114,2,71,-0.5199416745454073],[114,2,72,-0.5180730791762471],[114,2,73,-0.5158300111070275],[114,2,74,-0.5137281464412808],[114,2,75,-0.5123609788715839],[114,2,76,-0.5115872910246253],[114,2,77,-0.5109740369953215],[114,2,78,-0.510067418217659],[114,2,79,-0.5087996376678348],[114,3,64,-0.5283950641751289],[114,3,65,-0.5268087666481733],[114,3,66,-0.5254243705421686],[114,3,67,-0.5242562610656023],[114,3,68,-0.5233399346470833],[114,3,69,-0.5223471540957689],[114,3,70,-0.5212690830230713],[114,3,71,-0.5199416745454073],[114,3,72,-0.5180730791762471],[114,3,73,-0.5158300111070275],[114,3,74,-0.5137281464412808],[114,3,75,-0.5123609788715839],[114,3,76,-0.5115872910246253],[114,3,77,-0.5109740369953215],[114,3,78,-0.510067418217659],[114,3,79,-0.5087996376678348],[114,4,64,-0.5283950641751289],[114,4,65,-0.5268087666481733],[114,4,66,-0.5254243705421686],[114,4,67,-0.5242562610656023],[114,4,68,-0.5233399346470833],[114,4,69,-0.5223471540957689],[114,4,70,-0.5212690830230713],[114,4,71,-0.5199416745454073],[114,4,72,-0.5180730791762471],[114,4,73,-0.5158300111070275],[114,4,74,-0.5137281464412808],[114,4,75,-0.5123609788715839],[114,4,76,-0.5115872910246253],[114,4,77,-0.5109740369953215],[114,4,78,-0.510067418217659],[114,4,79,-0.5087996376678348],[114,5,64,-0.5283950641751289],[114,5,65,-0.5268087666481733],[114,5,66,-0.5254243705421686],[114,5,67,-0.5242562610656023],[114,5,68,-0.5233399346470833],[114,5,69,-0.5223471540957689],[114,5,70,-0.5212690830230713],[114,5,71,-0.5199416745454073],[114,5,72,-0.5180730791762471],[114,5,73,-0.5158300111070275],[114,5,74,-0.5137281464412808],[114,5,75,-0.5123609788715839],[114,5,76,-0.5115872910246253],[114,5,77,-0.5109740369953215],[114,5,78,-0.510067418217659],[114,5,79,-0.5087996376678348],[114,6,64,-0.5283950641751289],[114,6,65,-0.5268087666481733],[114,6,66,-0.5254243705421686],[114,6,67,-0.5242562610656023],[114,6,68,-0.5233399346470833],[114,6,69,-0.5223471540957689],[114,6,70,-0.5212690830230713],[114,6,71,-0.5199416745454073],[114,6,72,-0.5180730791762471],[114,6,73,-0.5158300111070275],[114,6,74,-0.5137281464412808],[114,6,75,-0.5123609788715839],[114,6,76,-0.5115872910246253],[114,6,77,-0.5109740369953215],[114,6,78,-0.510067418217659],[114,6,79,-0.5087996376678348],[114,7,64,-0.5283950641751289],[114,7,65,-0.5268087666481733],[114,7,66,-0.5254243705421686],[114,7,67,-0.5242562610656023],[114,7,68,-0.5233399346470833],[114,7,69,-0.5223471540957689],[114,7,70,-0.5212690830230713],[114,7,71,-0.5199416745454073],[114,7,72,-0.5180730791762471],[114,7,73,-0.5158300111070275],[114,7,74,-0.5137281464412808],[114,7,75,-0.5123609788715839],[114,7,76,-0.5115872910246253],[114,7,77,-0.5109740369953215],[114,7,78,-0.510067418217659],[114,7,79,-0.5087996376678348],[114,8,64,-0.5283950641751289],[114,8,65,-0.5268087666481733],[114,8,66,-0.5254243705421686],[114,8,67,-0.5242562610656023],[114,8,68,-0.5233399346470833],[114,8,69,-0.5223471540957689],[114,8,70,-0.5212690830230713],[114,8,71,-0.5199416745454073],[114,8,72,-0.5180730791762471],[114,8,73,-0.5158300111070275],[114,8,74,-0.5137281464412808],[114,8,75,-0.5123609788715839],[114,8,76,-0.5115872910246253],[114,8,77,-0.5109740369953215],[114,8,78,-0.510067418217659],[114,8,79,-0.5087996376678348],[114,9,64,-0.5283950641751289],[114,9,65,-0.5268087666481733],[114,9,66,-0.5254243705421686],[114,9,67,-0.5242562610656023],[114,9,68,-0.5233399346470833],[114,9,69,-0.5223471540957689],[114,9,70,-0.5212690830230713],[114,9,71,-0.5199416745454073],[114,9,72,-0.5180730791762471],[114,9,73,-0.5158300111070275],[114,9,74,-0.5137281464412808],[114,9,75,-0.5123609788715839],[114,9,76,-0.5115872910246253],[114,9,77,-0.5109740369953215],[114,9,78,-0.510067418217659],[114,9,79,-0.5087996376678348],[114,10,64,-0.5283950641751289],[114,10,65,-0.5268087666481733],[114,10,66,-0.5254243705421686],[114,10,67,-0.5242562610656023],[114,10,68,-0.5233399346470833],[114,10,69,-0.5223471540957689],[114,10,70,-0.5212690830230713],[114,10,71,-0.5199416745454073],[114,10,72,-0.5180730791762471],[114,10,73,-0.5158300111070275],[114,10,74,-0.5137281464412808],[114,10,75,-0.5123609788715839],[114,10,76,-0.5115872910246253],[114,10,77,-0.5109740369953215],[114,10,78,-0.510067418217659],[114,10,79,-0.5087996376678348],[114,11,64,-0.5283950641751289],[114,11,65,-0.5268087666481733],[114,11,66,-0.5254243705421686],[114,11,67,-0.5242562610656023],[114,11,68,-0.5233399346470833],[114,11,69,-0.5223471540957689],[114,11,70,-0.5212690830230713],[114,11,71,-0.5199416745454073],[114,11,72,-0.5180730791762471],[114,11,73,-0.5158300111070275],[114,11,74,-0.5137281464412808],[114,11,75,-0.5123609788715839],[114,11,76,-0.5115872910246253],[114,11,77,-0.5109740369953215],[114,11,78,-0.510067418217659],[114,11,79,-0.5087996376678348],[114,12,64,-0.5283950641751289],[114,12,65,-0.5268087666481733],[114,12,66,-0.5254243705421686],[114,12,67,-0.5242562610656023],[114,12,68,-0.5233399346470833],[114,12,69,-0.5223471540957689],[114,12,70,-0.5212690830230713],[114,12,71,-0.5199416745454073],[114,12,72,-0.5180730791762471],[114,12,73,-0.5158300111070275],[114,12,74,-0.5137281464412808],[114,12,75,-0.5123609788715839],[114,12,76,-0.5115872910246253],[114,12,77,-0.5109740369953215],[114,12,78,-0.510067418217659],[114,12,79,-0.5087996376678348],[114,13,64,-0.5283950641751289],[114,13,65,-0.5268087666481733],[114,13,66,-0.5254243705421686],[114,13,67,-0.5242562610656023],[114,13,68,-0.5233399346470833],[114,13,69,-0.5223471540957689],[114,13,70,-0.5212690830230713],[114,13,71,-0.5199416745454073],[114,13,72,-0.5180730791762471],[114,13,73,-0.5158300111070275],[114,13,74,-0.5137281464412808],[114,13,75,-0.5123609788715839],[114,13,76,-0.5115872910246253],[114,13,77,-0.5109740369953215],[114,13,78,-0.510067418217659],[114,13,79,-0.5087996376678348],[114,14,64,-0.5283950641751289],[114,14,65,-0.5268087666481733],[114,14,66,-0.5254243705421686],[114,14,67,-0.5242562610656023],[114,14,68,-0.5233399346470833],[114,14,69,-0.5223471540957689],[114,14,70,-0.5212690830230713],[114,14,71,-0.5199416745454073],[114,14,72,-0.5180730791762471],[114,14,73,-0.5158300111070275],[114,14,74,-0.5137281464412808],[114,14,75,-0.5123609788715839],[114,14,76,-0.5115872910246253],[114,14,77,-0.5109740369953215],[114,14,78,-0.510067418217659],[114,14,79,-0.5087996376678348],[114,15,64,-0.5283950641751289],[114,15,65,-0.5268087666481733],[114,15,66,-0.5254243705421686],[114,15,67,-0.5242562610656023],[114,15,68,-0.5233399346470833],[114,15,69,-0.5223471540957689],[114,15,70,-0.5212690830230713],[114,15,71,-0.5199416745454073],[114,15,72,-0.5180730791762471],[114,15,73,-0.5158300111070275],[114,15,74,-0.5137281464412808],[114,15,75,-0.5123609788715839],[114,15,76,-0.5115872910246253],[114,15,77,-0.5109740369953215],[114,15,78,-0.510067418217659],[114,15,79,-0.5087996376678348],[114,16,64,-0.5283950641751289],[114,16,65,-0.5268087666481733],[114,16,66,-0.5254243705421686],[114,16,67,-0.5242562610656023],[114,16,68,-0.5233399346470833],[114,16,69,-0.5223471540957689],[114,16,70,-0.5212690830230713],[114,16,71,-0.5199416745454073],[114,16,72,-0.5180730791762471],[114,16,73,-0.5158300111070275],[114,16,74,-0.5137281464412808],[114,16,75,-0.5123609788715839],[114,16,76,-0.5115872910246253],[114,16,77,-0.5109740369953215],[114,16,78,-0.510067418217659],[114,16,79,-0.5087996376678348],[114,17,64,-0.5283950641751289],[114,17,65,-0.5268087666481733],[114,17,66,-0.5254243705421686],[114,17,67,-0.5242562610656023],[114,17,68,-0.5233399346470833],[114,17,69,-0.5223471540957689],[114,17,70,-0.5212690830230713],[114,17,71,-0.5199416745454073],[114,17,72,-0.5180730791762471],[114,17,73,-0.5158300111070275],[114,17,74,-0.5137281464412808],[114,17,75,-0.5123609788715839],[114,17,76,-0.5115872910246253],[114,17,77,-0.5109740369953215],[114,17,78,-0.510067418217659],[114,17,79,-0.5087996376678348],[114,18,64,-0.5283950641751289],[114,18,65,-0.5268087666481733],[114,18,66,-0.5254243705421686],[114,18,67,-0.5242562610656023],[114,18,68,-0.5233399346470833],[114,18,69,-0.5223471540957689],[114,18,70,-0.5212690830230713],[114,18,71,-0.5199416745454073],[114,18,72,-0.5180730791762471],[114,18,73,-0.5158300111070275],[114,18,74,-0.5137281464412808],[114,18,75,-0.5123609788715839],[114,18,76,-0.5115872910246253],[114,18,77,-0.5109740369953215],[114,18,78,-0.510067418217659],[114,18,79,-0.5087996376678348],[114,19,64,-0.5283950641751289],[114,19,65,-0.5268087666481733],[114,19,66,-0.5254243705421686],[114,19,67,-0.5242562610656023],[114,19,68,-0.5233399346470833],[114,19,69,-0.5223471540957689],[114,19,70,-0.5212690830230713],[114,19,71,-0.5199416745454073],[114,19,72,-0.5180730791762471],[114,19,73,-0.5158300111070275],[114,19,74,-0.5137281464412808],[114,19,75,-0.5123609788715839],[114,19,76,-0.5115872910246253],[114,19,77,-0.5109740369953215],[114,19,78,-0.510067418217659],[114,19,79,-0.5087996376678348],[114,20,64,-0.5283950641751289],[114,20,65,-0.5268087666481733],[114,20,66,-0.5254243705421686],[114,20,67,-0.5242562610656023],[114,20,68,-0.5233399346470833],[114,20,69,-0.5223471540957689],[114,20,70,-0.5212690830230713],[114,20,71,-0.5199416745454073],[114,20,72,-0.5180730791762471],[114,20,73,-0.5158300111070275],[114,20,74,-0.5137281464412808],[114,20,75,-0.5123609788715839],[114,20,76,-0.5115872910246253],[114,20,77,-0.5109740369953215],[114,20,78,-0.510067418217659],[114,20,79,-0.5087996376678348],[114,21,64,-0.5283950641751289],[114,21,65,-0.5268087666481733],[114,21,66,-0.5254243705421686],[114,21,67,-0.5242562610656023],[114,21,68,-0.5233399346470833],[114,21,69,-0.5223471540957689],[114,21,70,-0.5212690830230713],[114,21,71,-0.5199416745454073],[114,21,72,-0.5180730791762471],[114,21,73,-0.5158300111070275],[114,21,74,-0.5137281464412808],[114,21,75,-0.5123609788715839],[114,21,76,-0.5115872910246253],[114,21,77,-0.5109740369953215],[114,21,78,-0.510067418217659],[114,21,79,-0.5087996376678348],[114,22,64,-0.5283950641751289],[114,22,65,-0.5268087666481733],[114,22,66,-0.5254243705421686],[114,22,67,-0.5242562610656023],[114,22,68,-0.5233399346470833],[114,22,69,-0.5223471540957689],[114,22,70,-0.5212690830230713],[114,22,71,-0.5199416745454073],[114,22,72,-0.5180730791762471],[114,22,73,-0.5158300111070275],[114,22,74,-0.5137281464412808],[114,22,75,-0.5123609788715839],[114,22,76,-0.5115872910246253],[114,22,77,-0.5109740369953215],[114,22,78,-0.510067418217659],[114,22,79,-0.5087996376678348],[114,23,64,-0.5283950641751289],[114,23,65,-0.5268087666481733],[114,23,66,-0.5254243705421686],[114,23,67,-0.5242562610656023],[114,23,68,-0.5233399346470833],[114,23,69,-0.5223471540957689],[114,23,70,-0.5212690830230713],[114,23,71,-0.5199416745454073],[114,23,72,-0.5180730791762471],[114,23,73,-0.5158300111070275],[114,23,74,-0.5137281464412808],[114,23,75,-0.5123609788715839],[114,23,76,-0.5115872910246253],[114,23,77,-0.5109740369953215],[114,23,78,-0.510067418217659],[114,23,79,-0.5087996376678348],[114,24,64,-0.5283950641751289],[114,24,65,-0.5268087666481733],[114,24,66,-0.5254243705421686],[114,24,67,-0.5242562610656023],[114,24,68,-0.5233399346470833],[114,24,69,-0.5223471540957689],[114,24,70,-0.5212690830230713],[114,24,71,-0.5199416745454073],[114,24,72,-0.5180730791762471],[114,24,73,-0.5158300111070275],[114,24,74,-0.5137281464412808],[114,24,75,-0.5123609788715839],[114,24,76,-0.5115872910246253],[114,24,77,-0.5109740369953215],[114,24,78,-0.510067418217659],[114,24,79,-0.5087996376678348],[114,25,64,-0.5283950641751289],[114,25,65,-0.5268087666481733],[114,25,66,-0.5254243705421686],[114,25,67,-0.5242562610656023],[114,25,68,-0.5233399346470833],[114,25,69,-0.5223471540957689],[114,25,70,-0.5212690830230713],[114,25,71,-0.5199416745454073],[114,25,72,-0.5180730791762471],[114,25,73,-0.5158300111070275],[114,25,74,-0.5137281464412808],[114,25,75,-0.5123609788715839],[114,25,76,-0.5115872910246253],[114,25,77,-0.5109740369953215],[114,25,78,-0.510067418217659],[114,25,79,-0.5087996376678348],[114,26,64,-0.5283950641751289],[114,26,65,-0.5268087666481733],[114,26,66,-0.5254243705421686],[114,26,67,-0.5242562610656023],[114,26,68,-0.5233399346470833],[114,26,69,-0.5223471540957689],[114,26,70,-0.5212690830230713],[114,26,71,-0.5199416745454073],[114,26,72,-0.5180730791762471],[114,26,73,-0.5158300111070275],[114,26,74,-0.5137281464412808],[114,26,75,-0.5123609788715839],[114,26,76,-0.5115872910246253],[114,26,77,-0.5109740369953215],[114,26,78,-0.510067418217659],[114,26,79,-0.5087996376678348],[114,27,64,-0.5283950641751289],[114,27,65,-0.5268087666481733],[114,27,66,-0.5254243705421686],[114,27,67,-0.5242562610656023],[114,27,68,-0.5233399346470833],[114,27,69,-0.5223471540957689],[114,27,70,-0.5212690830230713],[114,27,71,-0.5199416745454073],[114,27,72,-0.5180730791762471],[114,27,73,-0.5158300111070275],[114,27,74,-0.5137281464412808],[114,27,75,-0.5123609788715839],[114,27,76,-0.5115872910246253],[114,27,77,-0.5109740369953215],[114,27,78,-0.510067418217659],[114,27,79,-0.5087996376678348],[114,28,64,-0.5283950641751289],[114,28,65,-0.5268087666481733],[114,28,66,-0.5254243705421686],[114,28,67,-0.5242562610656023],[114,28,68,-0.5233399346470833],[114,28,69,-0.5223471540957689],[114,28,70,-0.5212690830230713],[114,28,71,-0.5199416745454073],[114,28,72,-0.5180730791762471],[114,28,73,-0.5158300111070275],[114,28,74,-0.5137281464412808],[114,28,75,-0.5123609788715839],[114,28,76,-0.5115872910246253],[114,28,77,-0.5109740369953215],[114,28,78,-0.510067418217659],[114,28,79,-0.5087996376678348],[114,29,64,-0.5283950641751289],[114,29,65,-0.5268087666481733],[114,29,66,-0.5254243705421686],[114,29,67,-0.5242562610656023],[114,29,68,-0.5233399346470833],[114,29,69,-0.5223471540957689],[114,29,70,-0.5212690830230713],[114,29,71,-0.5199416745454073],[114,29,72,-0.5180730791762471],[114,29,73,-0.5158300111070275],[114,29,74,-0.5137281464412808],[114,29,75,-0.5123609788715839],[114,29,76,-0.5115872910246253],[114,29,77,-0.5109740369953215],[114,29,78,-0.510067418217659],[114,29,79,-0.5087996376678348],[114,30,64,-0.5283950641751289],[114,30,65,-0.5268087666481733],[114,30,66,-0.5254243705421686],[114,30,67,-0.5242562610656023],[114,30,68,-0.5233399346470833],[114,30,69,-0.5223471540957689],[114,30,70,-0.5212690830230713],[114,30,71,-0.5199416745454073],[114,30,72,-0.5180730791762471],[114,30,73,-0.5158300111070275],[114,30,74,-0.5137281464412808],[114,30,75,-0.5123609788715839],[114,30,76,-0.5115872910246253],[114,30,77,-0.5109740369953215],[114,30,78,-0.510067418217659],[114,30,79,-0.5087996376678348],[114,31,64,-0.5283950641751289],[114,31,65,-0.5268087666481733],[114,31,66,-0.5254243705421686],[114,31,67,-0.5242562610656023],[114,31,68,-0.5233399346470833],[114,31,69,-0.5223471540957689],[114,31,70,-0.5212690830230713],[114,31,71,-0.5199416745454073],[114,31,72,-0.5180730791762471],[114,31,73,-0.5158300111070275],[114,31,74,-0.5137281464412808],[114,31,75,-0.5123609788715839],[114,31,76,-0.5115872910246253],[114,31,77,-0.5109740369953215],[114,31,78,-0.510067418217659],[114,31,79,-0.5087996376678348],[114,32,64,-0.5283950641751289],[114,32,65,-0.5268087666481733],[114,32,66,-0.5254243705421686],[114,32,67,-0.5242562610656023],[114,32,68,-0.5233399346470833],[114,32,69,-0.5223471540957689],[114,32,70,-0.5212690830230713],[114,32,71,-0.5199416745454073],[114,32,72,-0.5180730791762471],[114,32,73,-0.5158300111070275],[114,32,74,-0.5137281464412808],[114,32,75,-0.5123609788715839],[114,32,76,-0.5115872910246253],[114,32,77,-0.5109740369953215],[114,32,78,-0.510067418217659],[114,32,79,-0.5087996376678348],[114,33,64,-0.5283950641751289],[114,33,65,-0.5268087666481733],[114,33,66,-0.5254243705421686],[114,33,67,-0.5242562610656023],[114,33,68,-0.5233399346470833],[114,33,69,-0.5223471540957689],[114,33,70,-0.5212690830230713],[114,33,71,-0.5199416745454073],[114,33,72,-0.5180730791762471],[114,33,73,-0.5158300111070275],[114,33,74,-0.5137281464412808],[114,33,75,-0.5123609788715839],[114,33,76,-0.5115872910246253],[114,33,77,-0.5109740369953215],[114,33,78,-0.510067418217659],[114,33,79,-0.5087996376678348],[114,34,64,-0.5283950641751289],[114,34,65,-0.5268087666481733],[114,34,66,-0.5254243705421686],[114,34,67,-0.5242562610656023],[114,34,68,-0.5233399346470833],[114,34,69,-0.5223471540957689],[114,34,70,-0.5212690830230713],[114,34,71,-0.5199416745454073],[114,34,72,-0.5180730791762471],[114,34,73,-0.5158300111070275],[114,34,74,-0.5137281464412808],[114,34,75,-0.5123609788715839],[114,34,76,-0.5115872910246253],[114,34,77,-0.5109740369953215],[114,34,78,-0.510067418217659],[114,34,79,-0.5087996376678348],[114,35,64,-0.5283950641751289],[114,35,65,-0.5268087666481733],[114,35,66,-0.5254243705421686],[114,35,67,-0.5242562610656023],[114,35,68,-0.5233399346470833],[114,35,69,-0.5223471540957689],[114,35,70,-0.5212690830230713],[114,35,71,-0.5199416745454073],[114,35,72,-0.5180730791762471],[114,35,73,-0.5158300111070275],[114,35,74,-0.5137281464412808],[114,35,75,-0.5123609788715839],[114,35,76,-0.5115872910246253],[114,35,77,-0.5109740369953215],[114,35,78,-0.510067418217659],[114,35,79,-0.5087996376678348],[114,36,64,-0.5283950641751289],[114,36,65,-0.5268087666481733],[114,36,66,-0.5254243705421686],[114,36,67,-0.5242562610656023],[114,36,68,-0.5233399346470833],[114,36,69,-0.5223471540957689],[114,36,70,-0.5212690830230713],[114,36,71,-0.5199416745454073],[114,36,72,-0.5180730791762471],[114,36,73,-0.5158300111070275],[114,36,74,-0.5137281464412808],[114,36,75,-0.5123609788715839],[114,36,76,-0.5115872910246253],[114,36,77,-0.5109740369953215],[114,36,78,-0.510067418217659],[114,36,79,-0.5087996376678348],[114,37,64,-0.5283950641751289],[114,37,65,-0.5268087666481733],[114,37,66,-0.5254243705421686],[114,37,67,-0.5242562610656023],[114,37,68,-0.5233399346470833],[114,37,69,-0.5223471540957689],[114,37,70,-0.5212690830230713],[114,37,71,-0.5199416745454073],[114,37,72,-0.5180730791762471],[114,37,73,-0.5158300111070275],[114,37,74,-0.5137281464412808],[114,37,75,-0.5123609788715839],[114,37,76,-0.5115872910246253],[114,37,77,-0.5109740369953215],[114,37,78,-0.510067418217659],[114,37,79,-0.5087996376678348],[114,38,64,-0.5283950641751289],[114,38,65,-0.5268087666481733],[114,38,66,-0.5254243705421686],[114,38,67,-0.5242562610656023],[114,38,68,-0.5233399346470833],[114,38,69,-0.5223471540957689],[114,38,70,-0.5212690830230713],[114,38,71,-0.5199416745454073],[114,38,72,-0.5180730791762471],[114,38,73,-0.5158300111070275],[114,38,74,-0.5137281464412808],[114,38,75,-0.5123609788715839],[114,38,76,-0.5115872910246253],[114,38,77,-0.5109740369953215],[114,38,78,-0.510067418217659],[114,38,79,-0.5087996376678348],[114,39,64,-0.5283950641751289],[114,39,65,-0.5268087666481733],[114,39,66,-0.5254243705421686],[114,39,67,-0.5242562610656023],[114,39,68,-0.5233399346470833],[114,39,69,-0.5223471540957689],[114,39,70,-0.5212690830230713],[114,39,71,-0.5199416745454073],[114,39,72,-0.5180730791762471],[114,39,73,-0.5158300111070275],[114,39,74,-0.5137281464412808],[114,39,75,-0.5123609788715839],[114,39,76,-0.5115872910246253],[114,39,77,-0.5109740369953215],[114,39,78,-0.510067418217659],[114,39,79,-0.5087996376678348],[114,40,64,-0.5283950641751289],[114,40,65,-0.5268087666481733],[114,40,66,-0.5254243705421686],[114,40,67,-0.5242562610656023],[114,40,68,-0.5233399346470833],[114,40,69,-0.5223471540957689],[114,40,70,-0.5212690830230713],[114,40,71,-0.5199416745454073],[114,40,72,-0.5180730791762471],[114,40,73,-0.5158300111070275],[114,40,74,-0.5137281464412808],[114,40,75,-0.5123609788715839],[114,40,76,-0.5115872910246253],[114,40,77,-0.5109740369953215],[114,40,78,-0.510067418217659],[114,40,79,-0.5087996376678348],[114,41,64,-0.5283950641751289],[114,41,65,-0.5268087666481733],[114,41,66,-0.5254243705421686],[114,41,67,-0.5242562610656023],[114,41,68,-0.5233399346470833],[114,41,69,-0.5223471540957689],[114,41,70,-0.5212690830230713],[114,41,71,-0.5199416745454073],[114,41,72,-0.5180730791762471],[114,41,73,-0.5158300111070275],[114,41,74,-0.5137281464412808],[114,41,75,-0.5123609788715839],[114,41,76,-0.5115872910246253],[114,41,77,-0.5109740369953215],[114,41,78,-0.510067418217659],[114,41,79,-0.5087996376678348],[114,42,64,-0.5283950641751289],[114,42,65,-0.5268087666481733],[114,42,66,-0.5254243705421686],[114,42,67,-0.5242562610656023],[114,42,68,-0.5233399346470833],[114,42,69,-0.5223471540957689],[114,42,70,-0.5212690830230713],[114,42,71,-0.5199416745454073],[114,42,72,-0.5180730791762471],[114,42,73,-0.5158300111070275],[114,42,74,-0.5137281464412808],[114,42,75,-0.5123609788715839],[114,42,76,-0.5115872910246253],[114,42,77,-0.5109740369953215],[114,42,78,-0.510067418217659],[114,42,79,-0.5087996376678348],[114,43,64,-0.5283950641751289],[114,43,65,-0.5268087666481733],[114,43,66,-0.5254243705421686],[114,43,67,-0.5242562610656023],[114,43,68,-0.5233399346470833],[114,43,69,-0.5223471540957689],[114,43,70,-0.5212690830230713],[114,43,71,-0.5199416745454073],[114,43,72,-0.5180730791762471],[114,43,73,-0.5158300111070275],[114,43,74,-0.5137281464412808],[114,43,75,-0.5123609788715839],[114,43,76,-0.5115872910246253],[114,43,77,-0.5109740369953215],[114,43,78,-0.510067418217659],[114,43,79,-0.5087996376678348],[114,44,64,-0.5283950641751289],[114,44,65,-0.5268087666481733],[114,44,66,-0.5254243705421686],[114,44,67,-0.5242562610656023],[114,44,68,-0.5233399346470833],[114,44,69,-0.5223471540957689],[114,44,70,-0.5212690830230713],[114,44,71,-0.5199416745454073],[114,44,72,-0.5180730791762471],[114,44,73,-0.5158300111070275],[114,44,74,-0.5137281464412808],[114,44,75,-0.5123609788715839],[114,44,76,-0.5115872910246253],[114,44,77,-0.5109740369953215],[114,44,78,-0.510067418217659],[114,44,79,-0.5087996376678348],[114,45,64,-0.5283950641751289],[114,45,65,-0.5268087666481733],[114,45,66,-0.5254243705421686],[114,45,67,-0.5242562610656023],[114,45,68,-0.5233399346470833],[114,45,69,-0.5223471540957689],[114,45,70,-0.5212690830230713],[114,45,71,-0.5199416745454073],[114,45,72,-0.5180730791762471],[114,45,73,-0.5158300111070275],[114,45,74,-0.5137281464412808],[114,45,75,-0.5123609788715839],[114,45,76,-0.5115872910246253],[114,45,77,-0.5109740369953215],[114,45,78,-0.510067418217659],[114,45,79,-0.5087996376678348],[114,46,64,-0.5283950641751289],[114,46,65,-0.5268087666481733],[114,46,66,-0.5254243705421686],[114,46,67,-0.5242562610656023],[114,46,68,-0.5233399346470833],[114,46,69,-0.5223471540957689],[114,46,70,-0.5212690830230713],[114,46,71,-0.5199416745454073],[114,46,72,-0.5180730791762471],[114,46,73,-0.5158300111070275],[114,46,74,-0.5137281464412808],[114,46,75,-0.5123609788715839],[114,46,76,-0.5115872910246253],[114,46,77,-0.5109740369953215],[114,46,78,-0.510067418217659],[114,46,79,-0.5087996376678348],[114,47,64,-0.5283950641751289],[114,47,65,-0.5268087666481733],[114,47,66,-0.5254243705421686],[114,47,67,-0.5242562610656023],[114,47,68,-0.5233399346470833],[114,47,69,-0.5223471540957689],[114,47,70,-0.5212690830230713],[114,47,71,-0.5199416745454073],[114,47,72,-0.5180730791762471],[114,47,73,-0.5158300111070275],[114,47,74,-0.5137281464412808],[114,47,75,-0.5123609788715839],[114,47,76,-0.5115872910246253],[114,47,77,-0.5109740369953215],[114,47,78,-0.510067418217659],[114,47,79,-0.5087996376678348],[114,48,64,-0.5283950641751289],[114,48,65,-0.5268087666481733],[114,48,66,-0.5254243705421686],[114,48,67,-0.5242562610656023],[114,48,68,-0.5233399346470833],[114,48,69,-0.5223471540957689],[114,48,70,-0.5212690830230713],[114,48,71,-0.5199416745454073],[114,48,72,-0.5180730791762471],[114,48,73,-0.5158300111070275],[114,48,74,-0.5137281464412808],[114,48,75,-0.5123609788715839],[114,48,76,-0.5115872910246253],[114,48,77,-0.5109740369953215],[114,48,78,-0.510067418217659],[114,48,79,-0.5087996376678348],[114,49,64,-0.5283950641751289],[114,49,65,-0.5268087666481733],[114,49,66,-0.5254243705421686],[114,49,67,-0.5242562610656023],[114,49,68,-0.5233399346470833],[114,49,69,-0.5223471540957689],[114,49,70,-0.5212690830230713],[114,49,71,-0.5199416745454073],[114,49,72,-0.5180730791762471],[114,49,73,-0.5158300111070275],[114,49,74,-0.5137281464412808],[114,49,75,-0.5123609788715839],[114,49,76,-0.5115872910246253],[114,49,77,-0.5109740369953215],[114,49,78,-0.510067418217659],[114,49,79,-0.5087996376678348],[114,50,64,-0.5283950641751289],[114,50,65,-0.5268087666481733],[114,50,66,-0.5254243705421686],[114,50,67,-0.5242562610656023],[114,50,68,-0.5233399346470833],[114,50,69,-0.5223471540957689],[114,50,70,-0.5212690830230713],[114,50,71,-0.5199416745454073],[114,50,72,-0.5180730791762471],[114,50,73,-0.5158300111070275],[114,50,74,-0.5137281464412808],[114,50,75,-0.5123609788715839],[114,50,76,-0.5115872910246253],[114,50,77,-0.5109740369953215],[114,50,78,-0.510067418217659],[114,50,79,-0.5087996376678348],[114,51,64,-0.5283950641751289],[114,51,65,-0.5268087666481733],[114,51,66,-0.5254243705421686],[114,51,67,-0.5242562610656023],[114,51,68,-0.5233399346470833],[114,51,69,-0.5223471540957689],[114,51,70,-0.5212690830230713],[114,51,71,-0.5199416745454073],[114,51,72,-0.5180730791762471],[114,51,73,-0.5158300111070275],[114,51,74,-0.5137281464412808],[114,51,75,-0.5123609788715839],[114,51,76,-0.5115872910246253],[114,51,77,-0.5109740369953215],[114,51,78,-0.510067418217659],[114,51,79,-0.5087996376678348],[114,52,64,-0.5283950641751289],[114,52,65,-0.5268087666481733],[114,52,66,-0.5254243705421686],[114,52,67,-0.5242562610656023],[114,52,68,-0.5233399346470833],[114,52,69,-0.5223471540957689],[114,52,70,-0.5212690830230713],[114,52,71,-0.5199416745454073],[114,52,72,-0.5180730791762471],[114,52,73,-0.5158300111070275],[114,52,74,-0.5137281464412808],[114,52,75,-0.5123609788715839],[114,52,76,-0.5115872910246253],[114,52,77,-0.5109740369953215],[114,52,78,-0.510067418217659],[114,52,79,-0.5087996376678348],[114,53,64,-0.5283950641751289],[114,53,65,-0.5268087666481733],[114,53,66,-0.5254243705421686],[114,53,67,-0.5242562610656023],[114,53,68,-0.5233399346470833],[114,53,69,-0.5223471540957689],[114,53,70,-0.5212690830230713],[114,53,71,-0.5199416745454073],[114,53,72,-0.5180730791762471],[114,53,73,-0.5158300111070275],[114,53,74,-0.5137281464412808],[114,53,75,-0.5123609788715839],[114,53,76,-0.5115872910246253],[114,53,77,-0.5109740369953215],[114,53,78,-0.510067418217659],[114,53,79,-0.5087996376678348],[114,54,64,-0.5283950641751289],[114,54,65,-0.5268087666481733],[114,54,66,-0.5254243705421686],[114,54,67,-0.5242562610656023],[114,54,68,-0.5233399346470833],[114,54,69,-0.5223471540957689],[114,54,70,-0.5212690830230713],[114,54,71,-0.5199416745454073],[114,54,72,-0.5180730791762471],[114,54,73,-0.5158300111070275],[114,54,74,-0.5137281464412808],[114,54,75,-0.5123609788715839],[114,54,76,-0.5115872910246253],[114,54,77,-0.5109740369953215],[114,54,78,-0.510067418217659],[114,54,79,-0.5087996376678348],[114,55,64,-0.5283950641751289],[114,55,65,-0.5268087666481733],[114,55,66,-0.5254243705421686],[114,55,67,-0.5242562610656023],[114,55,68,-0.5233399346470833],[114,55,69,-0.5223471540957689],[114,55,70,-0.5212690830230713],[114,55,71,-0.5199416745454073],[114,55,72,-0.5180730791762471],[114,55,73,-0.5158300111070275],[114,55,74,-0.5137281464412808],[114,55,75,-0.5123609788715839],[114,55,76,-0.5115872910246253],[114,55,77,-0.5109740369953215],[114,55,78,-0.510067418217659],[114,55,79,-0.5087996376678348],[114,56,64,-0.5283950641751289],[114,56,65,-0.5268087666481733],[114,56,66,-0.5254243705421686],[114,56,67,-0.5242562610656023],[114,56,68,-0.5233399346470833],[114,56,69,-0.5223471540957689],[114,56,70,-0.5212690830230713],[114,56,71,-0.5199416745454073],[114,56,72,-0.5180730791762471],[114,56,73,-0.5158300111070275],[114,56,74,-0.5137281464412808],[114,56,75,-0.5123609788715839],[114,56,76,-0.5115872910246253],[114,56,77,-0.5109740369953215],[114,56,78,-0.510067418217659],[114,56,79,-0.5087996376678348],[114,57,64,-0.5283950641751289],[114,57,65,-0.5268087666481733],[114,57,66,-0.5254243705421686],[114,57,67,-0.5242562610656023],[114,57,68,-0.5233399346470833],[114,57,69,-0.5223471540957689],[114,57,70,-0.5212690830230713],[114,57,71,-0.5199416745454073],[114,57,72,-0.5180730791762471],[114,57,73,-0.5158300111070275],[114,57,74,-0.5137281464412808],[114,57,75,-0.5123609788715839],[114,57,76,-0.5115872910246253],[114,57,77,-0.5109740369953215],[114,57,78,-0.510067418217659],[114,57,79,-0.5087996376678348],[114,58,64,-0.5283950641751289],[114,58,65,-0.5268087666481733],[114,58,66,-0.5254243705421686],[114,58,67,-0.5242562610656023],[114,58,68,-0.5233399346470833],[114,58,69,-0.5223471540957689],[114,58,70,-0.5212690830230713],[114,58,71,-0.5199416745454073],[114,58,72,-0.5180730791762471],[114,58,73,-0.5158300111070275],[114,58,74,-0.5137281464412808],[114,58,75,-0.5123609788715839],[114,58,76,-0.5115872910246253],[114,58,77,-0.5109740369953215],[114,58,78,-0.510067418217659],[114,58,79,-0.5087996376678348],[114,59,64,-0.5283950641751289],[114,59,65,-0.5268087666481733],[114,59,66,-0.5254243705421686],[114,59,67,-0.5242562610656023],[114,59,68,-0.5233399346470833],[114,59,69,-0.5223471540957689],[114,59,70,-0.5212690830230713],[114,59,71,-0.5199416745454073],[114,59,72,-0.5180730791762471],[114,59,73,-0.5158300111070275],[114,59,74,-0.5137281464412808],[114,59,75,-0.5123609788715839],[114,59,76,-0.5115872910246253],[114,59,77,-0.5109740369953215],[114,59,78,-0.510067418217659],[114,59,79,-0.5087996376678348],[114,60,64,-0.5283950641751289],[114,60,65,-0.5268087666481733],[114,60,66,-0.5254243705421686],[114,60,67,-0.5242562610656023],[114,60,68,-0.5233399346470833],[114,60,69,-0.5223471540957689],[114,60,70,-0.5212690830230713],[114,60,71,-0.5199416745454073],[114,60,72,-0.5180730791762471],[114,60,73,-0.5158300111070275],[114,60,74,-0.5137281464412808],[114,60,75,-0.5123609788715839],[114,60,76,-0.5115872910246253],[114,60,77,-0.5109740369953215],[114,60,78,-0.510067418217659],[114,60,79,-0.5087996376678348],[114,61,64,-0.5283950641751289],[114,61,65,-0.5268087666481733],[114,61,66,-0.5254243705421686],[114,61,67,-0.5242562610656023],[114,61,68,-0.5233399346470833],[114,61,69,-0.5223471540957689],[114,61,70,-0.5212690830230713],[114,61,71,-0.5199416745454073],[114,61,72,-0.5180730791762471],[114,61,73,-0.5158300111070275],[114,61,74,-0.5137281464412808],[114,61,75,-0.5123609788715839],[114,61,76,-0.5115872910246253],[114,61,77,-0.5109740369953215],[114,61,78,-0.510067418217659],[114,61,79,-0.5087996376678348],[114,62,64,-0.5283950641751289],[114,62,65,-0.5268087666481733],[114,62,66,-0.5254243705421686],[114,62,67,-0.5242562610656023],[114,62,68,-0.5233399346470833],[114,62,69,-0.5223471540957689],[114,62,70,-0.5212690830230713],[114,62,71,-0.5199416745454073],[114,62,72,-0.5180730791762471],[114,62,73,-0.5158300111070275],[114,62,74,-0.5137281464412808],[114,62,75,-0.5123609788715839],[114,62,76,-0.5115872910246253],[114,62,77,-0.5109740369953215],[114,62,78,-0.510067418217659],[114,62,79,-0.5087996376678348],[114,63,64,-0.5283950641751289],[114,63,65,-0.5268087666481733],[114,63,66,-0.5254243705421686],[114,63,67,-0.5242562610656023],[114,63,68,-0.5233399346470833],[114,63,69,-0.5223471540957689],[114,63,70,-0.5212690830230713],[114,63,71,-0.5199416745454073],[114,63,72,-0.5180730791762471],[114,63,73,-0.5158300111070275],[114,63,74,-0.5137281464412808],[114,63,75,-0.5123609788715839],[114,63,76,-0.5115872910246253],[114,63,77,-0.5109740369953215],[114,63,78,-0.510067418217659],[114,63,79,-0.5087996376678348],[114,64,64,-0.5283950641751289],[114,64,65,-0.5268087666481733],[114,64,66,-0.5254243705421686],[114,64,67,-0.5242562610656023],[114,64,68,-0.5233399346470833],[114,64,69,-0.5223471540957689],[114,64,70,-0.5212690830230713],[114,64,71,-0.5199416745454073],[114,64,72,-0.5180730791762471],[114,64,73,-0.5158300111070275],[114,64,74,-0.5137281464412808],[114,64,75,-0.5123609788715839],[114,64,76,-0.5115872910246253],[114,64,77,-0.5109740369953215],[114,64,78,-0.510067418217659],[114,64,79,-0.5087996376678348],[114,65,64,-0.5283950641751289],[114,65,65,-0.5268087666481733],[114,65,66,-0.5254243705421686],[114,65,67,-0.5242562610656023],[114,65,68,-0.5233399346470833],[114,65,69,-0.5223471540957689],[114,65,70,-0.5212690830230713],[114,65,71,-0.5199416745454073],[114,65,72,-0.5180730791762471],[114,65,73,-0.5158300111070275],[114,65,74,-0.5137281464412808],[114,65,75,-0.5123609788715839],[114,65,76,-0.5115872910246253],[114,65,77,-0.5109740369953215],[114,65,78,-0.510067418217659],[114,65,79,-0.5087996376678348],[114,66,64,-0.5283950641751289],[114,66,65,-0.5268087666481733],[114,66,66,-0.5254243705421686],[114,66,67,-0.5242562610656023],[114,66,68,-0.5233399346470833],[114,66,69,-0.5223471540957689],[114,66,70,-0.5212690830230713],[114,66,71,-0.5199416745454073],[114,66,72,-0.5180730791762471],[114,66,73,-0.5158300111070275],[114,66,74,-0.5137281464412808],[114,66,75,-0.5123609788715839],[114,66,76,-0.5115872910246253],[114,66,77,-0.5109740369953215],[114,66,78,-0.510067418217659],[114,66,79,-0.5087996376678348],[114,67,64,-0.5283950641751289],[114,67,65,-0.5268087666481733],[114,67,66,-0.5254243705421686],[114,67,67,-0.5242562610656023],[114,67,68,-0.5233399346470833],[114,67,69,-0.5223471540957689],[114,67,70,-0.5212690830230713],[114,67,71,-0.5199416745454073],[114,67,72,-0.5180730791762471],[114,67,73,-0.5158300111070275],[114,67,74,-0.5137281464412808],[114,67,75,-0.5123609788715839],[114,67,76,-0.5115872910246253],[114,67,77,-0.5109740369953215],[114,67,78,-0.510067418217659],[114,67,79,-0.5087996376678348],[114,68,64,-0.5283950641751289],[114,68,65,-0.5268087666481733],[114,68,66,-0.5254243705421686],[114,68,67,-0.5242562610656023],[114,68,68,-0.5233399346470833],[114,68,69,-0.5223471540957689],[114,68,70,-0.5212690830230713],[114,68,71,-0.5199416745454073],[114,68,72,-0.5180730791762471],[114,68,73,-0.5158300111070275],[114,68,74,-0.5137281464412808],[114,68,75,-0.5123609788715839],[114,68,76,-0.5115872910246253],[114,68,77,-0.5109740369953215],[114,68,78,-0.510067418217659],[114,68,79,-0.5087996376678348],[114,69,64,-0.5283950641751289],[114,69,65,-0.5268087666481733],[114,69,66,-0.5254243705421686],[114,69,67,-0.5242562610656023],[114,69,68,-0.5233399346470833],[114,69,69,-0.5223471540957689],[114,69,70,-0.5212690830230713],[114,69,71,-0.5199416745454073],[114,69,72,-0.5180730791762471],[114,69,73,-0.5158300111070275],[114,69,74,-0.5137281464412808],[114,69,75,-0.5123609788715839],[114,69,76,-0.5115872910246253],[114,69,77,-0.5109740369953215],[114,69,78,-0.510067418217659],[114,69,79,-0.5087996376678348],[114,70,64,-0.5283950641751289],[114,70,65,-0.5268087666481733],[114,70,66,-0.5254243705421686],[114,70,67,-0.5242562610656023],[114,70,68,-0.5233399346470833],[114,70,69,-0.5223471540957689],[114,70,70,-0.5212690830230713],[114,70,71,-0.5199416745454073],[114,70,72,-0.5180730791762471],[114,70,73,-0.5158300111070275],[114,70,74,-0.5137281464412808],[114,70,75,-0.5123609788715839],[114,70,76,-0.5115872910246253],[114,70,77,-0.5109740369953215],[114,70,78,-0.510067418217659],[114,70,79,-0.5087996376678348],[114,71,64,-0.5283950641751289],[114,71,65,-0.5268087666481733],[114,71,66,-0.5254243705421686],[114,71,67,-0.5242562610656023],[114,71,68,-0.5233399346470833],[114,71,69,-0.5223471540957689],[114,71,70,-0.5212690830230713],[114,71,71,-0.5199416745454073],[114,71,72,-0.5180730791762471],[114,71,73,-0.5158300111070275],[114,71,74,-0.5137281464412808],[114,71,75,-0.5123609788715839],[114,71,76,-0.5115872910246253],[114,71,77,-0.5109740369953215],[114,71,78,-0.510067418217659],[114,71,79,-0.5087996376678348],[114,72,64,-0.5283950641751289],[114,72,65,-0.5268087666481733],[114,72,66,-0.5254243705421686],[114,72,67,-0.5242562610656023],[114,72,68,-0.5233399346470833],[114,72,69,-0.5223471540957689],[114,72,70,-0.5212690830230713],[114,72,71,-0.5199416745454073],[114,72,72,-0.5180730791762471],[114,72,73,-0.5158300111070275],[114,72,74,-0.5137281464412808],[114,72,75,-0.5123609788715839],[114,72,76,-0.5115872910246253],[114,72,77,-0.5109740369953215],[114,72,78,-0.510067418217659],[114,72,79,-0.5087996376678348],[114,73,64,-0.5283950641751289],[114,73,65,-0.5268087666481733],[114,73,66,-0.5254243705421686],[114,73,67,-0.5242562610656023],[114,73,68,-0.5233399346470833],[114,73,69,-0.5223471540957689],[114,73,70,-0.5212690830230713],[114,73,71,-0.5199416745454073],[114,73,72,-0.5180730791762471],[114,73,73,-0.5158300111070275],[114,73,74,-0.5137281464412808],[114,73,75,-0.5123609788715839],[114,73,76,-0.5115872910246253],[114,73,77,-0.5109740369953215],[114,73,78,-0.510067418217659],[114,73,79,-0.5087996376678348],[114,74,64,-0.5283950641751289],[114,74,65,-0.5268087666481733],[114,74,66,-0.5254243705421686],[114,74,67,-0.5242562610656023],[114,74,68,-0.5233399346470833],[114,74,69,-0.5223471540957689],[114,74,70,-0.5212690830230713],[114,74,71,-0.5199416745454073],[114,74,72,-0.5180730791762471],[114,74,73,-0.5158300111070275],[114,74,74,-0.5137281464412808],[114,74,75,-0.5123609788715839],[114,74,76,-0.5115872910246253],[114,74,77,-0.5109740369953215],[114,74,78,-0.510067418217659],[114,74,79,-0.5087996376678348],[114,75,64,-0.5283950641751289],[114,75,65,-0.5268087666481733],[114,75,66,-0.5254243705421686],[114,75,67,-0.5242562610656023],[114,75,68,-0.5233399346470833],[114,75,69,-0.5223471540957689],[114,75,70,-0.5212690830230713],[114,75,71,-0.5199416745454073],[114,75,72,-0.5180730791762471],[114,75,73,-0.5158300111070275],[114,75,74,-0.5137281464412808],[114,75,75,-0.5123609788715839],[114,75,76,-0.5115872910246253],[114,75,77,-0.5109740369953215],[114,75,78,-0.510067418217659],[114,75,79,-0.5087996376678348],[114,76,64,-0.5283950641751289],[114,76,65,-0.5268087666481733],[114,76,66,-0.5254243705421686],[114,76,67,-0.5242562610656023],[114,76,68,-0.5233399346470833],[114,76,69,-0.5223471540957689],[114,76,70,-0.5212690830230713],[114,76,71,-0.5199416745454073],[114,76,72,-0.5180730791762471],[114,76,73,-0.5158300111070275],[114,76,74,-0.5137281464412808],[114,76,75,-0.5123609788715839],[114,76,76,-0.5115872910246253],[114,76,77,-0.5109740369953215],[114,76,78,-0.510067418217659],[114,76,79,-0.5087996376678348],[114,77,64,-0.5283950641751289],[114,77,65,-0.5268087666481733],[114,77,66,-0.5254243705421686],[114,77,67,-0.5242562610656023],[114,77,68,-0.5233399346470833],[114,77,69,-0.5223471540957689],[114,77,70,-0.5212690830230713],[114,77,71,-0.5199416745454073],[114,77,72,-0.5180730791762471],[114,77,73,-0.5158300111070275],[114,77,74,-0.5137281464412808],[114,77,75,-0.5123609788715839],[114,77,76,-0.5115872910246253],[114,77,77,-0.5109740369953215],[114,77,78,-0.510067418217659],[114,77,79,-0.5087996376678348],[114,78,64,-0.5283950641751289],[114,78,65,-0.5268087666481733],[114,78,66,-0.5254243705421686],[114,78,67,-0.5242562610656023],[114,78,68,-0.5233399346470833],[114,78,69,-0.5223471540957689],[114,78,70,-0.5212690830230713],[114,78,71,-0.5199416745454073],[114,78,72,-0.5180730791762471],[114,78,73,-0.5158300111070275],[114,78,74,-0.5137281464412808],[114,78,75,-0.5123609788715839],[114,78,76,-0.5115872910246253],[114,78,77,-0.5109740369953215],[114,78,78,-0.510067418217659],[114,78,79,-0.5087996376678348],[114,79,64,-0.5283950641751289],[114,79,65,-0.5268087666481733],[114,79,66,-0.5254243705421686],[114,79,67,-0.5242562610656023],[114,79,68,-0.5233399346470833],[114,79,69,-0.5223471540957689],[114,79,70,-0.5212690830230713],[114,79,71,-0.5199416745454073],[114,79,72,-0.5180730791762471],[114,79,73,-0.5158300111070275],[114,79,74,-0.5137281464412808],[114,79,75,-0.5123609788715839],[114,79,76,-0.5115872910246253],[114,79,77,-0.5109740369953215],[114,79,78,-0.510067418217659],[114,79,79,-0.5087996376678348],[114,80,64,-0.5283950641751289],[114,80,65,-0.5268087666481733],[114,80,66,-0.5254243705421686],[114,80,67,-0.5242562610656023],[114,80,68,-0.5233399346470833],[114,80,69,-0.5223471540957689],[114,80,70,-0.5212690830230713],[114,80,71,-0.5199416745454073],[114,80,72,-0.5180730791762471],[114,80,73,-0.5158300111070275],[114,80,74,-0.5137281464412808],[114,80,75,-0.5123609788715839],[114,80,76,-0.5115872910246253],[114,80,77,-0.5109740369953215],[114,80,78,-0.510067418217659],[114,80,79,-0.5087996376678348],[114,81,64,-0.5283950641751289],[114,81,65,-0.5268087666481733],[114,81,66,-0.5254243705421686],[114,81,67,-0.5242562610656023],[114,81,68,-0.5233399346470833],[114,81,69,-0.5223471540957689],[114,81,70,-0.5212690830230713],[114,81,71,-0.5199416745454073],[114,81,72,-0.5180730791762471],[114,81,73,-0.5158300111070275],[114,81,74,-0.5137281464412808],[114,81,75,-0.5123609788715839],[114,81,76,-0.5115872910246253],[114,81,77,-0.5109740369953215],[114,81,78,-0.510067418217659],[114,81,79,-0.5087996376678348],[114,82,64,-0.5283950641751289],[114,82,65,-0.5268087666481733],[114,82,66,-0.5254243705421686],[114,82,67,-0.5242562610656023],[114,82,68,-0.5233399346470833],[114,82,69,-0.5223471540957689],[114,82,70,-0.5212690830230713],[114,82,71,-0.5199416745454073],[114,82,72,-0.5180730791762471],[114,82,73,-0.5158300111070275],[114,82,74,-0.5137281464412808],[114,82,75,-0.5123609788715839],[114,82,76,-0.5115872910246253],[114,82,77,-0.5109740369953215],[114,82,78,-0.510067418217659],[114,82,79,-0.5087996376678348],[114,83,64,-0.5283950641751289],[114,83,65,-0.5268087666481733],[114,83,66,-0.5254243705421686],[114,83,67,-0.5242562610656023],[114,83,68,-0.5233399346470833],[114,83,69,-0.5223471540957689],[114,83,70,-0.5212690830230713],[114,83,71,-0.5199416745454073],[114,83,72,-0.5180730791762471],[114,83,73,-0.5158300111070275],[114,83,74,-0.5137281464412808],[114,83,75,-0.5123609788715839],[114,83,76,-0.5115872910246253],[114,83,77,-0.5109740369953215],[114,83,78,-0.510067418217659],[114,83,79,-0.5087996376678348],[114,84,64,-0.5283950641751289],[114,84,65,-0.5268087666481733],[114,84,66,-0.5254243705421686],[114,84,67,-0.5242562610656023],[114,84,68,-0.5233399346470833],[114,84,69,-0.5223471540957689],[114,84,70,-0.5212690830230713],[114,84,71,-0.5199416745454073],[114,84,72,-0.5180730791762471],[114,84,73,-0.5158300111070275],[114,84,74,-0.5137281464412808],[114,84,75,-0.5123609788715839],[114,84,76,-0.5115872910246253],[114,84,77,-0.5109740369953215],[114,84,78,-0.510067418217659],[114,84,79,-0.5087996376678348],[114,85,64,-0.5283950641751289],[114,85,65,-0.5268087666481733],[114,85,66,-0.5254243705421686],[114,85,67,-0.5242562610656023],[114,85,68,-0.5233399346470833],[114,85,69,-0.5223471540957689],[114,85,70,-0.5212690830230713],[114,85,71,-0.5199416745454073],[114,85,72,-0.5180730791762471],[114,85,73,-0.5158300111070275],[114,85,74,-0.5137281464412808],[114,85,75,-0.5123609788715839],[114,85,76,-0.5115872910246253],[114,85,77,-0.5109740369953215],[114,85,78,-0.510067418217659],[114,85,79,-0.5087996376678348],[114,86,64,-0.5283950641751289],[114,86,65,-0.5268087666481733],[114,86,66,-0.5254243705421686],[114,86,67,-0.5242562610656023],[114,86,68,-0.5233399346470833],[114,86,69,-0.5223471540957689],[114,86,70,-0.5212690830230713],[114,86,71,-0.5199416745454073],[114,86,72,-0.5180730791762471],[114,86,73,-0.5158300111070275],[114,86,74,-0.5137281464412808],[114,86,75,-0.5123609788715839],[114,86,76,-0.5115872910246253],[114,86,77,-0.5109740369953215],[114,86,78,-0.510067418217659],[114,86,79,-0.5087996376678348],[114,87,64,-0.5283950641751289],[114,87,65,-0.5268087666481733],[114,87,66,-0.5254243705421686],[114,87,67,-0.5242562610656023],[114,87,68,-0.5233399346470833],[114,87,69,-0.5223471540957689],[114,87,70,-0.5212690830230713],[114,87,71,-0.5199416745454073],[114,87,72,-0.5180730791762471],[114,87,73,-0.5158300111070275],[114,87,74,-0.5137281464412808],[114,87,75,-0.5123609788715839],[114,87,76,-0.5115872910246253],[114,87,77,-0.5109740369953215],[114,87,78,-0.510067418217659],[114,87,79,-0.5087996376678348],[114,88,64,-0.5283950641751289],[114,88,65,-0.5268087666481733],[114,88,66,-0.5254243705421686],[114,88,67,-0.5242562610656023],[114,88,68,-0.5233399346470833],[114,88,69,-0.5223471540957689],[114,88,70,-0.5212690830230713],[114,88,71,-0.5199416745454073],[114,88,72,-0.5180730791762471],[114,88,73,-0.5158300111070275],[114,88,74,-0.5137281464412808],[114,88,75,-0.5123609788715839],[114,88,76,-0.5115872910246253],[114,88,77,-0.5109740369953215],[114,88,78,-0.510067418217659],[114,88,79,-0.5087996376678348],[114,89,64,-0.5283950641751289],[114,89,65,-0.5268087666481733],[114,89,66,-0.5254243705421686],[114,89,67,-0.5242562610656023],[114,89,68,-0.5233399346470833],[114,89,69,-0.5223471540957689],[114,89,70,-0.5212690830230713],[114,89,71,-0.5199416745454073],[114,89,72,-0.5180730791762471],[114,89,73,-0.5158300111070275],[114,89,74,-0.5137281464412808],[114,89,75,-0.5123609788715839],[114,89,76,-0.5115872910246253],[114,89,77,-0.5109740369953215],[114,89,78,-0.510067418217659],[114,89,79,-0.5087996376678348],[114,90,64,-0.5283950641751289],[114,90,65,-0.5268087666481733],[114,90,66,-0.5254243705421686],[114,90,67,-0.5242562610656023],[114,90,68,-0.5233399346470833],[114,90,69,-0.5223471540957689],[114,90,70,-0.5212690830230713],[114,90,71,-0.5199416745454073],[114,90,72,-0.5180730791762471],[114,90,73,-0.5158300111070275],[114,90,74,-0.5137281464412808],[114,90,75,-0.5123609788715839],[114,90,76,-0.5115872910246253],[114,90,77,-0.5109740369953215],[114,90,78,-0.510067418217659],[114,90,79,-0.5087996376678348],[114,91,64,-0.5283950641751289],[114,91,65,-0.5268087666481733],[114,91,66,-0.5254243705421686],[114,91,67,-0.5242562610656023],[114,91,68,-0.5233399346470833],[114,91,69,-0.5223471540957689],[114,91,70,-0.5212690830230713],[114,91,71,-0.5199416745454073],[114,91,72,-0.5180730791762471],[114,91,73,-0.5158300111070275],[114,91,74,-0.5137281464412808],[114,91,75,-0.5123609788715839],[114,91,76,-0.5115872910246253],[114,91,77,-0.5109740369953215],[114,91,78,-0.510067418217659],[114,91,79,-0.5087996376678348],[114,92,64,-0.5283950641751289],[114,92,65,-0.5268087666481733],[114,92,66,-0.5254243705421686],[114,92,67,-0.5242562610656023],[114,92,68,-0.5233399346470833],[114,92,69,-0.5223471540957689],[114,92,70,-0.5212690830230713],[114,92,71,-0.5199416745454073],[114,92,72,-0.5180730791762471],[114,92,73,-0.5158300111070275],[114,92,74,-0.5137281464412808],[114,92,75,-0.5123609788715839],[114,92,76,-0.5115872910246253],[114,92,77,-0.5109740369953215],[114,92,78,-0.510067418217659],[114,92,79,-0.5087996376678348],[114,93,64,-0.5283950641751289],[114,93,65,-0.5268087666481733],[114,93,66,-0.5254243705421686],[114,93,67,-0.5242562610656023],[114,93,68,-0.5233399346470833],[114,93,69,-0.5223471540957689],[114,93,70,-0.5212690830230713],[114,93,71,-0.5199416745454073],[114,93,72,-0.5180730791762471],[114,93,73,-0.5158300111070275],[114,93,74,-0.5137281464412808],[114,93,75,-0.5123609788715839],[114,93,76,-0.5115872910246253],[114,93,77,-0.5109740369953215],[114,93,78,-0.510067418217659],[114,93,79,-0.5087996376678348],[114,94,64,-0.5283950641751289],[114,94,65,-0.5268087666481733],[114,94,66,-0.5254243705421686],[114,94,67,-0.5242562610656023],[114,94,68,-0.5233399346470833],[114,94,69,-0.5223471540957689],[114,94,70,-0.5212690830230713],[114,94,71,-0.5199416745454073],[114,94,72,-0.5180730791762471],[114,94,73,-0.5158300111070275],[114,94,74,-0.5137281464412808],[114,94,75,-0.5123609788715839],[114,94,76,-0.5115872910246253],[114,94,77,-0.5109740369953215],[114,94,78,-0.510067418217659],[114,94,79,-0.5087996376678348],[114,95,64,-0.5283950641751289],[114,95,65,-0.5268087666481733],[114,95,66,-0.5254243705421686],[114,95,67,-0.5242562610656023],[114,95,68,-0.5233399346470833],[114,95,69,-0.5223471540957689],[114,95,70,-0.5212690830230713],[114,95,71,-0.5199416745454073],[114,95,72,-0.5180730791762471],[114,95,73,-0.5158300111070275],[114,95,74,-0.5137281464412808],[114,95,75,-0.5123609788715839],[114,95,76,-0.5115872910246253],[114,95,77,-0.5109740369953215],[114,95,78,-0.510067418217659],[114,95,79,-0.5087996376678348],[114,96,64,-0.5283950641751289],[114,96,65,-0.5268087666481733],[114,96,66,-0.5254243705421686],[114,96,67,-0.5242562610656023],[114,96,68,-0.5233399346470833],[114,96,69,-0.5223471540957689],[114,96,70,-0.5212690830230713],[114,96,71,-0.5199416745454073],[114,96,72,-0.5180730791762471],[114,96,73,-0.5158300111070275],[114,96,74,-0.5137281464412808],[114,96,75,-0.5123609788715839],[114,96,76,-0.5115872910246253],[114,96,77,-0.5109740369953215],[114,96,78,-0.510067418217659],[114,96,79,-0.5087996376678348],[114,97,64,-0.5283950641751289],[114,97,65,-0.5268087666481733],[114,97,66,-0.5254243705421686],[114,97,67,-0.5242562610656023],[114,97,68,-0.5233399346470833],[114,97,69,-0.5223471540957689],[114,97,70,-0.5212690830230713],[114,97,71,-0.5199416745454073],[114,97,72,-0.5180730791762471],[114,97,73,-0.5158300111070275],[114,97,74,-0.5137281464412808],[114,97,75,-0.5123609788715839],[114,97,76,-0.5115872910246253],[114,97,77,-0.5109740369953215],[114,97,78,-0.510067418217659],[114,97,79,-0.5087996376678348],[114,98,64,-0.5283950641751289],[114,98,65,-0.5268087666481733],[114,98,66,-0.5254243705421686],[114,98,67,-0.5242562610656023],[114,98,68,-0.5233399346470833],[114,98,69,-0.5223471540957689],[114,98,70,-0.5212690830230713],[114,98,71,-0.5199416745454073],[114,98,72,-0.5180730791762471],[114,98,73,-0.5158300111070275],[114,98,74,-0.5137281464412808],[114,98,75,-0.5123609788715839],[114,98,76,-0.5115872910246253],[114,98,77,-0.5109740369953215],[114,98,78,-0.510067418217659],[114,98,79,-0.5087996376678348],[114,99,64,-0.5283950641751289],[114,99,65,-0.5268087666481733],[114,99,66,-0.5254243705421686],[114,99,67,-0.5242562610656023],[114,99,68,-0.5233399346470833],[114,99,69,-0.5223471540957689],[114,99,70,-0.5212690830230713],[114,99,71,-0.5199416745454073],[114,99,72,-0.5180730791762471],[114,99,73,-0.5158300111070275],[114,99,74,-0.5137281464412808],[114,99,75,-0.5123609788715839],[114,99,76,-0.5115872910246253],[114,99,77,-0.5109740369953215],[114,99,78,-0.510067418217659],[114,99,79,-0.5087996376678348],[114,100,64,-0.5283950641751289],[114,100,65,-0.5268087666481733],[114,100,66,-0.5254243705421686],[114,100,67,-0.5242562610656023],[114,100,68,-0.5233399346470833],[114,100,69,-0.5223471540957689],[114,100,70,-0.5212690830230713],[114,100,71,-0.5199416745454073],[114,100,72,-0.5180730791762471],[114,100,73,-0.5158300111070275],[114,100,74,-0.5137281464412808],[114,100,75,-0.5123609788715839],[114,100,76,-0.5115872910246253],[114,100,77,-0.5109740369953215],[114,100,78,-0.510067418217659],[114,100,79,-0.5087996376678348],[114,101,64,-0.5283950641751289],[114,101,65,-0.5268087666481733],[114,101,66,-0.5254243705421686],[114,101,67,-0.5242562610656023],[114,101,68,-0.5233399346470833],[114,101,69,-0.5223471540957689],[114,101,70,-0.5212690830230713],[114,101,71,-0.5199416745454073],[114,101,72,-0.5180730791762471],[114,101,73,-0.5158300111070275],[114,101,74,-0.5137281464412808],[114,101,75,-0.5123609788715839],[114,101,76,-0.5115872910246253],[114,101,77,-0.5109740369953215],[114,101,78,-0.510067418217659],[114,101,79,-0.5087996376678348],[114,102,64,-0.5283950641751289],[114,102,65,-0.5268087666481733],[114,102,66,-0.5254243705421686],[114,102,67,-0.5242562610656023],[114,102,68,-0.5233399346470833],[114,102,69,-0.5223471540957689],[114,102,70,-0.5212690830230713],[114,102,71,-0.5199416745454073],[114,102,72,-0.5180730791762471],[114,102,73,-0.5158300111070275],[114,102,74,-0.5137281464412808],[114,102,75,-0.5123609788715839],[114,102,76,-0.5115872910246253],[114,102,77,-0.5109740369953215],[114,102,78,-0.510067418217659],[114,102,79,-0.5087996376678348],[114,103,64,-0.5283950641751289],[114,103,65,-0.5268087666481733],[114,103,66,-0.5254243705421686],[114,103,67,-0.5242562610656023],[114,103,68,-0.5233399346470833],[114,103,69,-0.5223471540957689],[114,103,70,-0.5212690830230713],[114,103,71,-0.5199416745454073],[114,103,72,-0.5180730791762471],[114,103,73,-0.5158300111070275],[114,103,74,-0.5137281464412808],[114,103,75,-0.5123609788715839],[114,103,76,-0.5115872910246253],[114,103,77,-0.5109740369953215],[114,103,78,-0.510067418217659],[114,103,79,-0.5087996376678348],[114,104,64,-0.5283950641751289],[114,104,65,-0.5268087666481733],[114,104,66,-0.5254243705421686],[114,104,67,-0.5242562610656023],[114,104,68,-0.5233399346470833],[114,104,69,-0.5223471540957689],[114,104,70,-0.5212690830230713],[114,104,71,-0.5199416745454073],[114,104,72,-0.5180730791762471],[114,104,73,-0.5158300111070275],[114,104,74,-0.5137281464412808],[114,104,75,-0.5123609788715839],[114,104,76,-0.5115872910246253],[114,104,77,-0.5109740369953215],[114,104,78,-0.510067418217659],[114,104,79,-0.5087996376678348],[114,105,64,-0.5283950641751289],[114,105,65,-0.5268087666481733],[114,105,66,-0.5254243705421686],[114,105,67,-0.5242562610656023],[114,105,68,-0.5233399346470833],[114,105,69,-0.5223471540957689],[114,105,70,-0.5212690830230713],[114,105,71,-0.5199416745454073],[114,105,72,-0.5180730791762471],[114,105,73,-0.5158300111070275],[114,105,74,-0.5137281464412808],[114,105,75,-0.5123609788715839],[114,105,76,-0.5115872910246253],[114,105,77,-0.5109740369953215],[114,105,78,-0.510067418217659],[114,105,79,-0.5087996376678348],[114,106,64,-0.5283950641751289],[114,106,65,-0.5268087666481733],[114,106,66,-0.5254243705421686],[114,106,67,-0.5242562610656023],[114,106,68,-0.5233399346470833],[114,106,69,-0.5223471540957689],[114,106,70,-0.5212690830230713],[114,106,71,-0.5199416745454073],[114,106,72,-0.5180730791762471],[114,106,73,-0.5158300111070275],[114,106,74,-0.5137281464412808],[114,106,75,-0.5123609788715839],[114,106,76,-0.5115872910246253],[114,106,77,-0.5109740369953215],[114,106,78,-0.510067418217659],[114,106,79,-0.5087996376678348],[114,107,64,-0.5283950641751289],[114,107,65,-0.5268087666481733],[114,107,66,-0.5254243705421686],[114,107,67,-0.5242562610656023],[114,107,68,-0.5233399346470833],[114,107,69,-0.5223471540957689],[114,107,70,-0.5212690830230713],[114,107,71,-0.5199416745454073],[114,107,72,-0.5180730791762471],[114,107,73,-0.5158300111070275],[114,107,74,-0.5137281464412808],[114,107,75,-0.5123609788715839],[114,107,76,-0.5115872910246253],[114,107,77,-0.5109740369953215],[114,107,78,-0.510067418217659],[114,107,79,-0.5087996376678348],[114,108,64,-0.5283950641751289],[114,108,65,-0.5268087666481733],[114,108,66,-0.5254243705421686],[114,108,67,-0.5242562610656023],[114,108,68,-0.5233399346470833],[114,108,69,-0.5223471540957689],[114,108,70,-0.5212690830230713],[114,108,71,-0.5199416745454073],[114,108,72,-0.5180730791762471],[114,108,73,-0.5158300111070275],[114,108,74,-0.5137281464412808],[114,108,75,-0.5123609788715839],[114,108,76,-0.5115872910246253],[114,108,77,-0.5109740369953215],[114,108,78,-0.510067418217659],[114,108,79,-0.5087996376678348],[114,109,64,-0.5283950641751289],[114,109,65,-0.5268087666481733],[114,109,66,-0.5254243705421686],[114,109,67,-0.5242562610656023],[114,109,68,-0.5233399346470833],[114,109,69,-0.5223471540957689],[114,109,70,-0.5212690830230713],[114,109,71,-0.5199416745454073],[114,109,72,-0.5180730791762471],[114,109,73,-0.5158300111070275],[114,109,74,-0.5137281464412808],[114,109,75,-0.5123609788715839],[114,109,76,-0.5115872910246253],[114,109,77,-0.5109740369953215],[114,109,78,-0.510067418217659],[114,109,79,-0.5087996376678348],[114,110,64,-0.5283950641751289],[114,110,65,-0.5268087666481733],[114,110,66,-0.5254243705421686],[114,110,67,-0.5242562610656023],[114,110,68,-0.5233399346470833],[114,110,69,-0.5223471540957689],[114,110,70,-0.5212690830230713],[114,110,71,-0.5199416745454073],[114,110,72,-0.5180730791762471],[114,110,73,-0.5158300111070275],[114,110,74,-0.5137281464412808],[114,110,75,-0.5123609788715839],[114,110,76,-0.5115872910246253],[114,110,77,-0.5109740369953215],[114,110,78,-0.510067418217659],[114,110,79,-0.5087996376678348],[114,111,64,-0.5283950641751289],[114,111,65,-0.5268087666481733],[114,111,66,-0.5254243705421686],[114,111,67,-0.5242562610656023],[114,111,68,-0.5233399346470833],[114,111,69,-0.5223471540957689],[114,111,70,-0.5212690830230713],[114,111,71,-0.5199416745454073],[114,111,72,-0.5180730791762471],[114,111,73,-0.5158300111070275],[114,111,74,-0.5137281464412808],[114,111,75,-0.5123609788715839],[114,111,76,-0.5115872910246253],[114,111,77,-0.5109740369953215],[114,111,78,-0.510067418217659],[114,111,79,-0.5087996376678348],[114,112,64,-0.5283950641751289],[114,112,65,-0.5268087666481733],[114,112,66,-0.5254243705421686],[114,112,67,-0.5242562610656023],[114,112,68,-0.5233399346470833],[114,112,69,-0.5223471540957689],[114,112,70,-0.5212690830230713],[114,112,71,-0.5199416745454073],[114,112,72,-0.5180730791762471],[114,112,73,-0.5158300111070275],[114,112,74,-0.5137281464412808],[114,112,75,-0.5123609788715839],[114,112,76,-0.5115872910246253],[114,112,77,-0.5109740369953215],[114,112,78,-0.510067418217659],[114,112,79,-0.5087996376678348],[114,113,64,-0.5283950641751289],[114,113,65,-0.5268087666481733],[114,113,66,-0.5254243705421686],[114,113,67,-0.5242562610656023],[114,113,68,-0.5233399346470833],[114,113,69,-0.5223471540957689],[114,113,70,-0.5212690830230713],[114,113,71,-0.5199416745454073],[114,113,72,-0.5180730791762471],[114,113,73,-0.5158300111070275],[114,113,74,-0.5137281464412808],[114,113,75,-0.5123609788715839],[114,113,76,-0.5115872910246253],[114,113,77,-0.5109740369953215],[114,113,78,-0.510067418217659],[114,113,79,-0.5087996376678348],[114,114,64,-0.5283950641751289],[114,114,65,-0.5268087666481733],[114,114,66,-0.5254243705421686],[114,114,67,-0.5242562610656023],[114,114,68,-0.5233399346470833],[114,114,69,-0.5223471540957689],[114,114,70,-0.5212690830230713],[114,114,71,-0.5199416745454073],[114,114,72,-0.5180730791762471],[114,114,73,-0.5158300111070275],[114,114,74,-0.5137281464412808],[114,114,75,-0.5123609788715839],[114,114,76,-0.5115872910246253],[114,114,77,-0.5109740369953215],[114,114,78,-0.510067418217659],[114,114,79,-0.5087996376678348],[114,115,64,-0.5283950641751289],[114,115,65,-0.5268087666481733],[114,115,66,-0.5254243705421686],[114,115,67,-0.5242562610656023],[114,115,68,-0.5233399346470833],[114,115,69,-0.5223471540957689],[114,115,70,-0.5212690830230713],[114,115,71,-0.5199416745454073],[114,115,72,-0.5180730791762471],[114,115,73,-0.5158300111070275],[114,115,74,-0.5137281464412808],[114,115,75,-0.5123609788715839],[114,115,76,-0.5115872910246253],[114,115,77,-0.5109740369953215],[114,115,78,-0.510067418217659],[114,115,79,-0.5087996376678348],[114,116,64,-0.5283950641751289],[114,116,65,-0.5268087666481733],[114,116,66,-0.5254243705421686],[114,116,67,-0.5242562610656023],[114,116,68,-0.5233399346470833],[114,116,69,-0.5223471540957689],[114,116,70,-0.5212690830230713],[114,116,71,-0.5199416745454073],[114,116,72,-0.5180730791762471],[114,116,73,-0.5158300111070275],[114,116,74,-0.5137281464412808],[114,116,75,-0.5123609788715839],[114,116,76,-0.5115872910246253],[114,116,77,-0.5109740369953215],[114,116,78,-0.510067418217659],[114,116,79,-0.5087996376678348],[114,117,64,-0.5283950641751289],[114,117,65,-0.5268087666481733],[114,117,66,-0.5254243705421686],[114,117,67,-0.5242562610656023],[114,117,68,-0.5233399346470833],[114,117,69,-0.5223471540957689],[114,117,70,-0.5212690830230713],[114,117,71,-0.5199416745454073],[114,117,72,-0.5180730791762471],[114,117,73,-0.5158300111070275],[114,117,74,-0.5137281464412808],[114,117,75,-0.5123609788715839],[114,117,76,-0.5115872910246253],[114,117,77,-0.5109740369953215],[114,117,78,-0.510067418217659],[114,117,79,-0.5087996376678348],[114,118,64,-0.5283950641751289],[114,118,65,-0.5268087666481733],[114,118,66,-0.5254243705421686],[114,118,67,-0.5242562610656023],[114,118,68,-0.5233399346470833],[114,118,69,-0.5223471540957689],[114,118,70,-0.5212690830230713],[114,118,71,-0.5199416745454073],[114,118,72,-0.5180730791762471],[114,118,73,-0.5158300111070275],[114,118,74,-0.5137281464412808],[114,118,75,-0.5123609788715839],[114,118,76,-0.5115872910246253],[114,118,77,-0.5109740369953215],[114,118,78,-0.510067418217659],[114,118,79,-0.5087996376678348],[114,119,64,-0.5283950641751289],[114,119,65,-0.5268087666481733],[114,119,66,-0.5254243705421686],[114,119,67,-0.5242562610656023],[114,119,68,-0.5233399346470833],[114,119,69,-0.5223471540957689],[114,119,70,-0.5212690830230713],[114,119,71,-0.5199416745454073],[114,119,72,-0.5180730791762471],[114,119,73,-0.5158300111070275],[114,119,74,-0.5137281464412808],[114,119,75,-0.5123609788715839],[114,119,76,-0.5115872910246253],[114,119,77,-0.5109740369953215],[114,119,78,-0.510067418217659],[114,119,79,-0.5087996376678348],[114,120,64,-0.5283950641751289],[114,120,65,-0.5268087666481733],[114,120,66,-0.5254243705421686],[114,120,67,-0.5242562610656023],[114,120,68,-0.5233399346470833],[114,120,69,-0.5223471540957689],[114,120,70,-0.5212690830230713],[114,120,71,-0.5199416745454073],[114,120,72,-0.5180730791762471],[114,120,73,-0.5158300111070275],[114,120,74,-0.5137281464412808],[114,120,75,-0.5123609788715839],[114,120,76,-0.5115872910246253],[114,120,77,-0.5109740369953215],[114,120,78,-0.510067418217659],[114,120,79,-0.5087996376678348],[114,121,64,-0.5283950641751289],[114,121,65,-0.5268087666481733],[114,121,66,-0.5254243705421686],[114,121,67,-0.5242562610656023],[114,121,68,-0.5233399346470833],[114,121,69,-0.5223471540957689],[114,121,70,-0.5212690830230713],[114,121,71,-0.5199416745454073],[114,121,72,-0.5180730791762471],[114,121,73,-0.5158300111070275],[114,121,74,-0.5137281464412808],[114,121,75,-0.5123609788715839],[114,121,76,-0.5115872910246253],[114,121,77,-0.5109740369953215],[114,121,78,-0.510067418217659],[114,121,79,-0.5087996376678348],[114,122,64,-0.5283950641751289],[114,122,65,-0.5268087666481733],[114,122,66,-0.5254243705421686],[114,122,67,-0.5242562610656023],[114,122,68,-0.5233399346470833],[114,122,69,-0.5223471540957689],[114,122,70,-0.5212690830230713],[114,122,71,-0.5199416745454073],[114,122,72,-0.5180730791762471],[114,122,73,-0.5158300111070275],[114,122,74,-0.5137281464412808],[114,122,75,-0.5123609788715839],[114,122,76,-0.5115872910246253],[114,122,77,-0.5109740369953215],[114,122,78,-0.510067418217659],[114,122,79,-0.5087996376678348],[114,123,64,-0.5283950641751289],[114,123,65,-0.5268087666481733],[114,123,66,-0.5254243705421686],[114,123,67,-0.5242562610656023],[114,123,68,-0.5233399346470833],[114,123,69,-0.5223471540957689],[114,123,70,-0.5212690830230713],[114,123,71,-0.5199416745454073],[114,123,72,-0.5180730791762471],[114,123,73,-0.5158300111070275],[114,123,74,-0.5137281464412808],[114,123,75,-0.5123609788715839],[114,123,76,-0.5115872910246253],[114,123,77,-0.5109740369953215],[114,123,78,-0.510067418217659],[114,123,79,-0.5087996376678348],[114,124,64,-0.5283950641751289],[114,124,65,-0.5268087666481733],[114,124,66,-0.5254243705421686],[114,124,67,-0.5242562610656023],[114,124,68,-0.5233399346470833],[114,124,69,-0.5223471540957689],[114,124,70,-0.5212690830230713],[114,124,71,-0.5199416745454073],[114,124,72,-0.5180730791762471],[114,124,73,-0.5158300111070275],[114,124,74,-0.5137281464412808],[114,124,75,-0.5123609788715839],[114,124,76,-0.5115872910246253],[114,124,77,-0.5109740369953215],[114,124,78,-0.510067418217659],[114,124,79,-0.5087996376678348],[114,125,64,-0.5283950641751289],[114,125,65,-0.5268087666481733],[114,125,66,-0.5254243705421686],[114,125,67,-0.5242562610656023],[114,125,68,-0.5233399346470833],[114,125,69,-0.5223471540957689],[114,125,70,-0.5212690830230713],[114,125,71,-0.5199416745454073],[114,125,72,-0.5180730791762471],[114,125,73,-0.5158300111070275],[114,125,74,-0.5137281464412808],[114,125,75,-0.5123609788715839],[114,125,76,-0.5115872910246253],[114,125,77,-0.5109740369953215],[114,125,78,-0.510067418217659],[114,125,79,-0.5087996376678348],[114,126,64,-0.5283950641751289],[114,126,65,-0.5268087666481733],[114,126,66,-0.5254243705421686],[114,126,67,-0.5242562610656023],[114,126,68,-0.5233399346470833],[114,126,69,-0.5223471540957689],[114,126,70,-0.5212690830230713],[114,126,71,-0.5199416745454073],[114,126,72,-0.5180730791762471],[114,126,73,-0.5158300111070275],[114,126,74,-0.5137281464412808],[114,126,75,-0.5123609788715839],[114,126,76,-0.5115872910246253],[114,126,77,-0.5109740369953215],[114,126,78,-0.510067418217659],[114,126,79,-0.5087996376678348],[114,127,64,-0.5283950641751289],[114,127,65,-0.5268087666481733],[114,127,66,-0.5254243705421686],[114,127,67,-0.5242562610656023],[114,127,68,-0.5233399346470833],[114,127,69,-0.5223471540957689],[114,127,70,-0.5212690830230713],[114,127,71,-0.5199416745454073],[114,127,72,-0.5180730791762471],[114,127,73,-0.5158300111070275],[114,127,74,-0.5137281464412808],[114,127,75,-0.5123609788715839],[114,127,76,-0.5115872910246253],[114,127,77,-0.5109740369953215],[114,127,78,-0.510067418217659],[114,127,79,-0.5087996376678348],[114,128,64,-0.5283950641751289],[114,128,65,-0.5268087666481733],[114,128,66,-0.5254243705421686],[114,128,67,-0.5242562610656023],[114,128,68,-0.5233399346470833],[114,128,69,-0.5223471540957689],[114,128,70,-0.5212690830230713],[114,128,71,-0.5199416745454073],[114,128,72,-0.5180730791762471],[114,128,73,-0.5158300111070275],[114,128,74,-0.5137281464412808],[114,128,75,-0.5123609788715839],[114,128,76,-0.5115872910246253],[114,128,77,-0.5109740369953215],[114,128,78,-0.510067418217659],[114,128,79,-0.5087996376678348],[114,129,64,-0.5283950641751289],[114,129,65,-0.5268087666481733],[114,129,66,-0.5254243705421686],[114,129,67,-0.5242562610656023],[114,129,68,-0.5233399346470833],[114,129,69,-0.5223471540957689],[114,129,70,-0.5212690830230713],[114,129,71,-0.5199416745454073],[114,129,72,-0.5180730791762471],[114,129,73,-0.5158300111070275],[114,129,74,-0.5137281464412808],[114,129,75,-0.5123609788715839],[114,129,76,-0.5115872910246253],[114,129,77,-0.5109740369953215],[114,129,78,-0.510067418217659],[114,129,79,-0.5087996376678348],[114,130,64,-0.5283950641751289],[114,130,65,-0.5268087666481733],[114,130,66,-0.5254243705421686],[114,130,67,-0.5242562610656023],[114,130,68,-0.5233399346470833],[114,130,69,-0.5223471540957689],[114,130,70,-0.5212690830230713],[114,130,71,-0.5199416745454073],[114,130,72,-0.5180730791762471],[114,130,73,-0.5158300111070275],[114,130,74,-0.5137281464412808],[114,130,75,-0.5123609788715839],[114,130,76,-0.5115872910246253],[114,130,77,-0.5109740369953215],[114,130,78,-0.510067418217659],[114,130,79,-0.5087996376678348],[114,131,64,-0.5283950641751289],[114,131,65,-0.5268087666481733],[114,131,66,-0.5254243705421686],[114,131,67,-0.5242562610656023],[114,131,68,-0.5233399346470833],[114,131,69,-0.5223471540957689],[114,131,70,-0.5212690830230713],[114,131,71,-0.5199416745454073],[114,131,72,-0.5180730791762471],[114,131,73,-0.5158300111070275],[114,131,74,-0.5137281464412808],[114,131,75,-0.5123609788715839],[114,131,76,-0.5115872910246253],[114,131,77,-0.5109740369953215],[114,131,78,-0.510067418217659],[114,131,79,-0.5087996376678348],[114,132,64,-0.5283950641751289],[114,132,65,-0.5268087666481733],[114,132,66,-0.5254243705421686],[114,132,67,-0.5242562610656023],[114,132,68,-0.5233399346470833],[114,132,69,-0.5223471540957689],[114,132,70,-0.5212690830230713],[114,132,71,-0.5199416745454073],[114,132,72,-0.5180730791762471],[114,132,73,-0.5158300111070275],[114,132,74,-0.5137281464412808],[114,132,75,-0.5123609788715839],[114,132,76,-0.5115872910246253],[114,132,77,-0.5109740369953215],[114,132,78,-0.510067418217659],[114,132,79,-0.5087996376678348],[114,133,64,-0.5283950641751289],[114,133,65,-0.5268087666481733],[114,133,66,-0.5254243705421686],[114,133,67,-0.5242562610656023],[114,133,68,-0.5233399346470833],[114,133,69,-0.5223471540957689],[114,133,70,-0.5212690830230713],[114,133,71,-0.5199416745454073],[114,133,72,-0.5180730791762471],[114,133,73,-0.5158300111070275],[114,133,74,-0.5137281464412808],[114,133,75,-0.5123609788715839],[114,133,76,-0.5115872910246253],[114,133,77,-0.5109740369953215],[114,133,78,-0.510067418217659],[114,133,79,-0.5087996376678348],[114,134,64,-0.5283950641751289],[114,134,65,-0.5268087666481733],[114,134,66,-0.5254243705421686],[114,134,67,-0.5242562610656023],[114,134,68,-0.5233399346470833],[114,134,69,-0.5223471540957689],[114,134,70,-0.5212690830230713],[114,134,71,-0.5199416745454073],[114,134,72,-0.5180730791762471],[114,134,73,-0.5158300111070275],[114,134,74,-0.5137281464412808],[114,134,75,-0.5123609788715839],[114,134,76,-0.5115872910246253],[114,134,77,-0.5109740369953215],[114,134,78,-0.510067418217659],[114,134,79,-0.5087996376678348],[114,135,64,-0.5283950641751289],[114,135,65,-0.5268087666481733],[114,135,66,-0.5254243705421686],[114,135,67,-0.5242562610656023],[114,135,68,-0.5233399346470833],[114,135,69,-0.5223471540957689],[114,135,70,-0.5212690830230713],[114,135,71,-0.5199416745454073],[114,135,72,-0.5180730791762471],[114,135,73,-0.5158300111070275],[114,135,74,-0.5137281464412808],[114,135,75,-0.5123609788715839],[114,135,76,-0.5115872910246253],[114,135,77,-0.5109740369953215],[114,135,78,-0.510067418217659],[114,135,79,-0.5087996376678348],[114,136,64,-0.5283950641751289],[114,136,65,-0.5268087666481733],[114,136,66,-0.5254243705421686],[114,136,67,-0.5242562610656023],[114,136,68,-0.5233399346470833],[114,136,69,-0.5223471540957689],[114,136,70,-0.5212690830230713],[114,136,71,-0.5199416745454073],[114,136,72,-0.5180730791762471],[114,136,73,-0.5158300111070275],[114,136,74,-0.5137281464412808],[114,136,75,-0.5123609788715839],[114,136,76,-0.5115872910246253],[114,136,77,-0.5109740369953215],[114,136,78,-0.510067418217659],[114,136,79,-0.5087996376678348],[114,137,64,-0.5283950641751289],[114,137,65,-0.5268087666481733],[114,137,66,-0.5254243705421686],[114,137,67,-0.5242562610656023],[114,137,68,-0.5233399346470833],[114,137,69,-0.5223471540957689],[114,137,70,-0.5212690830230713],[114,137,71,-0.5199416745454073],[114,137,72,-0.5180730791762471],[114,137,73,-0.5158300111070275],[114,137,74,-0.5137281464412808],[114,137,75,-0.5123609788715839],[114,137,76,-0.5115872910246253],[114,137,77,-0.5109740369953215],[114,137,78,-0.510067418217659],[114,137,79,-0.5087996376678348],[114,138,64,-0.5283950641751289],[114,138,65,-0.5268087666481733],[114,138,66,-0.5254243705421686],[114,138,67,-0.5242562610656023],[114,138,68,-0.5233399346470833],[114,138,69,-0.5223471540957689],[114,138,70,-0.5212690830230713],[114,138,71,-0.5199416745454073],[114,138,72,-0.5180730791762471],[114,138,73,-0.5158300111070275],[114,138,74,-0.5137281464412808],[114,138,75,-0.5123609788715839],[114,138,76,-0.5115872910246253],[114,138,77,-0.5109740369953215],[114,138,78,-0.510067418217659],[114,138,79,-0.5087996376678348],[114,139,64,-0.5283950641751289],[114,139,65,-0.5268087666481733],[114,139,66,-0.5254243705421686],[114,139,67,-0.5242562610656023],[114,139,68,-0.5233399346470833],[114,139,69,-0.5223471540957689],[114,139,70,-0.5212690830230713],[114,139,71,-0.5199416745454073],[114,139,72,-0.5180730791762471],[114,139,73,-0.5158300111070275],[114,139,74,-0.5137281464412808],[114,139,75,-0.5123609788715839],[114,139,76,-0.5115872910246253],[114,139,77,-0.5109740369953215],[114,139,78,-0.510067418217659],[114,139,79,-0.5087996376678348],[114,140,64,-0.5283950641751289],[114,140,65,-0.5268087666481733],[114,140,66,-0.5254243705421686],[114,140,67,-0.5242562610656023],[114,140,68,-0.5233399346470833],[114,140,69,-0.5223471540957689],[114,140,70,-0.5212690830230713],[114,140,71,-0.5199416745454073],[114,140,72,-0.5180730791762471],[114,140,73,-0.5158300111070275],[114,140,74,-0.5137281464412808],[114,140,75,-0.5123609788715839],[114,140,76,-0.5115872910246253],[114,140,77,-0.5109740369953215],[114,140,78,-0.510067418217659],[114,140,79,-0.5087996376678348],[114,141,64,-0.5283950641751289],[114,141,65,-0.5268087666481733],[114,141,66,-0.5254243705421686],[114,141,67,-0.5242562610656023],[114,141,68,-0.5233399346470833],[114,141,69,-0.5223471540957689],[114,141,70,-0.5212690830230713],[114,141,71,-0.5199416745454073],[114,141,72,-0.5180730791762471],[114,141,73,-0.5158300111070275],[114,141,74,-0.5137281464412808],[114,141,75,-0.5123609788715839],[114,141,76,-0.5115872910246253],[114,141,77,-0.5109740369953215],[114,141,78,-0.510067418217659],[114,141,79,-0.5087996376678348],[114,142,64,-0.5283950641751289],[114,142,65,-0.5268087666481733],[114,142,66,-0.5254243705421686],[114,142,67,-0.5242562610656023],[114,142,68,-0.5233399346470833],[114,142,69,-0.5223471540957689],[114,142,70,-0.5212690830230713],[114,142,71,-0.5199416745454073],[114,142,72,-0.5180730791762471],[114,142,73,-0.5158300111070275],[114,142,74,-0.5137281464412808],[114,142,75,-0.5123609788715839],[114,142,76,-0.5115872910246253],[114,142,77,-0.5109740369953215],[114,142,78,-0.510067418217659],[114,142,79,-0.5087996376678348],[114,143,64,-0.5283950641751289],[114,143,65,-0.5268087666481733],[114,143,66,-0.5254243705421686],[114,143,67,-0.5242562610656023],[114,143,68,-0.5233399346470833],[114,143,69,-0.5223471540957689],[114,143,70,-0.5212690830230713],[114,143,71,-0.5199416745454073],[114,143,72,-0.5180730791762471],[114,143,73,-0.5158300111070275],[114,143,74,-0.5137281464412808],[114,143,75,-0.5123609788715839],[114,143,76,-0.5115872910246253],[114,143,77,-0.5109740369953215],[114,143,78,-0.510067418217659],[114,143,79,-0.5087996376678348],[114,144,64,-0.5283950641751289],[114,144,65,-0.5268087666481733],[114,144,66,-0.5254243705421686],[114,144,67,-0.5242562610656023],[114,144,68,-0.5233399346470833],[114,144,69,-0.5223471540957689],[114,144,70,-0.5212690830230713],[114,144,71,-0.5199416745454073],[114,144,72,-0.5180730791762471],[114,144,73,-0.5158300111070275],[114,144,74,-0.5137281464412808],[114,144,75,-0.5123609788715839],[114,144,76,-0.5115872910246253],[114,144,77,-0.5109740369953215],[114,144,78,-0.510067418217659],[114,144,79,-0.5087996376678348],[114,145,64,-0.5283950641751289],[114,145,65,-0.5268087666481733],[114,145,66,-0.5254243705421686],[114,145,67,-0.5242562610656023],[114,145,68,-0.5233399346470833],[114,145,69,-0.5223471540957689],[114,145,70,-0.5212690830230713],[114,145,71,-0.5199416745454073],[114,145,72,-0.5180730791762471],[114,145,73,-0.5158300111070275],[114,145,74,-0.5137281464412808],[114,145,75,-0.5123609788715839],[114,145,76,-0.5115872910246253],[114,145,77,-0.5109740369953215],[114,145,78,-0.510067418217659],[114,145,79,-0.5087996376678348],[114,146,64,-0.5283950641751289],[114,146,65,-0.5268087666481733],[114,146,66,-0.5254243705421686],[114,146,67,-0.5242562610656023],[114,146,68,-0.5233399346470833],[114,146,69,-0.5223471540957689],[114,146,70,-0.5212690830230713],[114,146,71,-0.5199416745454073],[114,146,72,-0.5180730791762471],[114,146,73,-0.5158300111070275],[114,146,74,-0.5137281464412808],[114,146,75,-0.5123609788715839],[114,146,76,-0.5115872910246253],[114,146,77,-0.5109740369953215],[114,146,78,-0.510067418217659],[114,146,79,-0.5087996376678348],[114,147,64,-0.5283950641751289],[114,147,65,-0.5268087666481733],[114,147,66,-0.5254243705421686],[114,147,67,-0.5242562610656023],[114,147,68,-0.5233399346470833],[114,147,69,-0.5223471540957689],[114,147,70,-0.5212690830230713],[114,147,71,-0.5199416745454073],[114,147,72,-0.5180730791762471],[114,147,73,-0.5158300111070275],[114,147,74,-0.5137281464412808],[114,147,75,-0.5123609788715839],[114,147,76,-0.5115872910246253],[114,147,77,-0.5109740369953215],[114,147,78,-0.510067418217659],[114,147,79,-0.5087996376678348],[114,148,64,-0.5283950641751289],[114,148,65,-0.5268087666481733],[114,148,66,-0.5254243705421686],[114,148,67,-0.5242562610656023],[114,148,68,-0.5233399346470833],[114,148,69,-0.5223471540957689],[114,148,70,-0.5212690830230713],[114,148,71,-0.5199416745454073],[114,148,72,-0.5180730791762471],[114,148,73,-0.5158300111070275],[114,148,74,-0.5137281464412808],[114,148,75,-0.5123609788715839],[114,148,76,-0.5115872910246253],[114,148,77,-0.5109740369953215],[114,148,78,-0.510067418217659],[114,148,79,-0.5087996376678348],[114,149,64,-0.5283950641751289],[114,149,65,-0.5268087666481733],[114,149,66,-0.5254243705421686],[114,149,67,-0.5242562610656023],[114,149,68,-0.5233399346470833],[114,149,69,-0.5223471540957689],[114,149,70,-0.5212690830230713],[114,149,71,-0.5199416745454073],[114,149,72,-0.5180730791762471],[114,149,73,-0.5158300111070275],[114,149,74,-0.5137281464412808],[114,149,75,-0.5123609788715839],[114,149,76,-0.5115872910246253],[114,149,77,-0.5109740369953215],[114,149,78,-0.510067418217659],[114,149,79,-0.5087996376678348],[114,150,64,-0.5283950641751289],[114,150,65,-0.5268087666481733],[114,150,66,-0.5254243705421686],[114,150,67,-0.5242562610656023],[114,150,68,-0.5233399346470833],[114,150,69,-0.5223471540957689],[114,150,70,-0.5212690830230713],[114,150,71,-0.5199416745454073],[114,150,72,-0.5180730791762471],[114,150,73,-0.5158300111070275],[114,150,74,-0.5137281464412808],[114,150,75,-0.5123609788715839],[114,150,76,-0.5115872910246253],[114,150,77,-0.5109740369953215],[114,150,78,-0.510067418217659],[114,150,79,-0.5087996376678348],[114,151,64,-0.5283950641751289],[114,151,65,-0.5268087666481733],[114,151,66,-0.5254243705421686],[114,151,67,-0.5242562610656023],[114,151,68,-0.5233399346470833],[114,151,69,-0.5223471540957689],[114,151,70,-0.5212690830230713],[114,151,71,-0.5199416745454073],[114,151,72,-0.5180730791762471],[114,151,73,-0.5158300111070275],[114,151,74,-0.5137281464412808],[114,151,75,-0.5123609788715839],[114,151,76,-0.5115872910246253],[114,151,77,-0.5109740369953215],[114,151,78,-0.510067418217659],[114,151,79,-0.5087996376678348],[114,152,64,-0.5283950641751289],[114,152,65,-0.5268087666481733],[114,152,66,-0.5254243705421686],[114,152,67,-0.5242562610656023],[114,152,68,-0.5233399346470833],[114,152,69,-0.5223471540957689],[114,152,70,-0.5212690830230713],[114,152,71,-0.5199416745454073],[114,152,72,-0.5180730791762471],[114,152,73,-0.5158300111070275],[114,152,74,-0.5137281464412808],[114,152,75,-0.5123609788715839],[114,152,76,-0.5115872910246253],[114,152,77,-0.5109740369953215],[114,152,78,-0.510067418217659],[114,152,79,-0.5087996376678348],[114,153,64,-0.5283950641751289],[114,153,65,-0.5268087666481733],[114,153,66,-0.5254243705421686],[114,153,67,-0.5242562610656023],[114,153,68,-0.5233399346470833],[114,153,69,-0.5223471540957689],[114,153,70,-0.5212690830230713],[114,153,71,-0.5199416745454073],[114,153,72,-0.5180730791762471],[114,153,73,-0.5158300111070275],[114,153,74,-0.5137281464412808],[114,153,75,-0.5123609788715839],[114,153,76,-0.5115872910246253],[114,153,77,-0.5109740369953215],[114,153,78,-0.510067418217659],[114,153,79,-0.5087996376678348],[114,154,64,-0.5283950641751289],[114,154,65,-0.5268087666481733],[114,154,66,-0.5254243705421686],[114,154,67,-0.5242562610656023],[114,154,68,-0.5233399346470833],[114,154,69,-0.5223471540957689],[114,154,70,-0.5212690830230713],[114,154,71,-0.5199416745454073],[114,154,72,-0.5180730791762471],[114,154,73,-0.5158300111070275],[114,154,74,-0.5137281464412808],[114,154,75,-0.5123609788715839],[114,154,76,-0.5115872910246253],[114,154,77,-0.5109740369953215],[114,154,78,-0.510067418217659],[114,154,79,-0.5087996376678348],[114,155,64,-0.5283950641751289],[114,155,65,-0.5268087666481733],[114,155,66,-0.5254243705421686],[114,155,67,-0.5242562610656023],[114,155,68,-0.5233399346470833],[114,155,69,-0.5223471540957689],[114,155,70,-0.5212690830230713],[114,155,71,-0.5199416745454073],[114,155,72,-0.5180730791762471],[114,155,73,-0.5158300111070275],[114,155,74,-0.5137281464412808],[114,155,75,-0.5123609788715839],[114,155,76,-0.5115872910246253],[114,155,77,-0.5109740369953215],[114,155,78,-0.510067418217659],[114,155,79,-0.5087996376678348],[114,156,64,-0.5283950641751289],[114,156,65,-0.5268087666481733],[114,156,66,-0.5254243705421686],[114,156,67,-0.5242562610656023],[114,156,68,-0.5233399346470833],[114,156,69,-0.5223471540957689],[114,156,70,-0.5212690830230713],[114,156,71,-0.5199416745454073],[114,156,72,-0.5180730791762471],[114,156,73,-0.5158300111070275],[114,156,74,-0.5137281464412808],[114,156,75,-0.5123609788715839],[114,156,76,-0.5115872910246253],[114,156,77,-0.5109740369953215],[114,156,78,-0.510067418217659],[114,156,79,-0.5087996376678348],[114,157,64,-0.5283950641751289],[114,157,65,-0.5268087666481733],[114,157,66,-0.5254243705421686],[114,157,67,-0.5242562610656023],[114,157,68,-0.5233399346470833],[114,157,69,-0.5223471540957689],[114,157,70,-0.5212690830230713],[114,157,71,-0.5199416745454073],[114,157,72,-0.5180730791762471],[114,157,73,-0.5158300111070275],[114,157,74,-0.5137281464412808],[114,157,75,-0.5123609788715839],[114,157,76,-0.5115872910246253],[114,157,77,-0.5109740369953215],[114,157,78,-0.510067418217659],[114,157,79,-0.5087996376678348],[114,158,64,-0.5283950641751289],[114,158,65,-0.5268087666481733],[114,158,66,-0.5254243705421686],[114,158,67,-0.5242562610656023],[114,158,68,-0.5233399346470833],[114,158,69,-0.5223471540957689],[114,158,70,-0.5212690830230713],[114,158,71,-0.5199416745454073],[114,158,72,-0.5180730791762471],[114,158,73,-0.5158300111070275],[114,158,74,-0.5137281464412808],[114,158,75,-0.5123609788715839],[114,158,76,-0.5115872910246253],[114,158,77,-0.5109740369953215],[114,158,78,-0.510067418217659],[114,158,79,-0.5087996376678348],[114,159,64,-0.5283950641751289],[114,159,65,-0.5268087666481733],[114,159,66,-0.5254243705421686],[114,159,67,-0.5242562610656023],[114,159,68,-0.5233399346470833],[114,159,69,-0.5223471540957689],[114,159,70,-0.5212690830230713],[114,159,71,-0.5199416745454073],[114,159,72,-0.5180730791762471],[114,159,73,-0.5158300111070275],[114,159,74,-0.5137281464412808],[114,159,75,-0.5123609788715839],[114,159,76,-0.5115872910246253],[114,159,77,-0.5109740369953215],[114,159,78,-0.510067418217659],[114,159,79,-0.5087996376678348],[114,160,64,-0.5283950641751289],[114,160,65,-0.5268087666481733],[114,160,66,-0.5254243705421686],[114,160,67,-0.5242562610656023],[114,160,68,-0.5233399346470833],[114,160,69,-0.5223471540957689],[114,160,70,-0.5212690830230713],[114,160,71,-0.5199416745454073],[114,160,72,-0.5180730791762471],[114,160,73,-0.5158300111070275],[114,160,74,-0.5137281464412808],[114,160,75,-0.5123609788715839],[114,160,76,-0.5115872910246253],[114,160,77,-0.5109740369953215],[114,160,78,-0.510067418217659],[114,160,79,-0.5087996376678348],[114,161,64,-0.5283950641751289],[114,161,65,-0.5268087666481733],[114,161,66,-0.5254243705421686],[114,161,67,-0.5242562610656023],[114,161,68,-0.5233399346470833],[114,161,69,-0.5223471540957689],[114,161,70,-0.5212690830230713],[114,161,71,-0.5199416745454073],[114,161,72,-0.5180730791762471],[114,161,73,-0.5158300111070275],[114,161,74,-0.5137281464412808],[114,161,75,-0.5123609788715839],[114,161,76,-0.5115872910246253],[114,161,77,-0.5109740369953215],[114,161,78,-0.510067418217659],[114,161,79,-0.5087996376678348],[114,162,64,-0.5283950641751289],[114,162,65,-0.5268087666481733],[114,162,66,-0.5254243705421686],[114,162,67,-0.5242562610656023],[114,162,68,-0.5233399346470833],[114,162,69,-0.5223471540957689],[114,162,70,-0.5212690830230713],[114,162,71,-0.5199416745454073],[114,162,72,-0.5180730791762471],[114,162,73,-0.5158300111070275],[114,162,74,-0.5137281464412808],[114,162,75,-0.5123609788715839],[114,162,76,-0.5115872910246253],[114,162,77,-0.5109740369953215],[114,162,78,-0.510067418217659],[114,162,79,-0.5087996376678348],[114,163,64,-0.5283950641751289],[114,163,65,-0.5268087666481733],[114,163,66,-0.5254243705421686],[114,163,67,-0.5242562610656023],[114,163,68,-0.5233399346470833],[114,163,69,-0.5223471540957689],[114,163,70,-0.5212690830230713],[114,163,71,-0.5199416745454073],[114,163,72,-0.5180730791762471],[114,163,73,-0.5158300111070275],[114,163,74,-0.5137281464412808],[114,163,75,-0.5123609788715839],[114,163,76,-0.5115872910246253],[114,163,77,-0.5109740369953215],[114,163,78,-0.510067418217659],[114,163,79,-0.5087996376678348],[114,164,64,-0.5283950641751289],[114,164,65,-0.5268087666481733],[114,164,66,-0.5254243705421686],[114,164,67,-0.5242562610656023],[114,164,68,-0.5233399346470833],[114,164,69,-0.5223471540957689],[114,164,70,-0.5212690830230713],[114,164,71,-0.5199416745454073],[114,164,72,-0.5180730791762471],[114,164,73,-0.5158300111070275],[114,164,74,-0.5137281464412808],[114,164,75,-0.5123609788715839],[114,164,76,-0.5115872910246253],[114,164,77,-0.5109740369953215],[114,164,78,-0.510067418217659],[114,164,79,-0.5087996376678348],[114,165,64,-0.5283950641751289],[114,165,65,-0.5268087666481733],[114,165,66,-0.5254243705421686],[114,165,67,-0.5242562610656023],[114,165,68,-0.5233399346470833],[114,165,69,-0.5223471540957689],[114,165,70,-0.5212690830230713],[114,165,71,-0.5199416745454073],[114,165,72,-0.5180730791762471],[114,165,73,-0.5158300111070275],[114,165,74,-0.5137281464412808],[114,165,75,-0.5123609788715839],[114,165,76,-0.5115872910246253],[114,165,77,-0.5109740369953215],[114,165,78,-0.510067418217659],[114,165,79,-0.5087996376678348],[114,166,64,-0.5283950641751289],[114,166,65,-0.5268087666481733],[114,166,66,-0.5254243705421686],[114,166,67,-0.5242562610656023],[114,166,68,-0.5233399346470833],[114,166,69,-0.5223471540957689],[114,166,70,-0.5212690830230713],[114,166,71,-0.5199416745454073],[114,166,72,-0.5180730791762471],[114,166,73,-0.5158300111070275],[114,166,74,-0.5137281464412808],[114,166,75,-0.5123609788715839],[114,166,76,-0.5115872910246253],[114,166,77,-0.5109740369953215],[114,166,78,-0.510067418217659],[114,166,79,-0.5087996376678348],[114,167,64,-0.5283950641751289],[114,167,65,-0.5268087666481733],[114,167,66,-0.5254243705421686],[114,167,67,-0.5242562610656023],[114,167,68,-0.5233399346470833],[114,167,69,-0.5223471540957689],[114,167,70,-0.5212690830230713],[114,167,71,-0.5199416745454073],[114,167,72,-0.5180730791762471],[114,167,73,-0.5158300111070275],[114,167,74,-0.5137281464412808],[114,167,75,-0.5123609788715839],[114,167,76,-0.5115872910246253],[114,167,77,-0.5109740369953215],[114,167,78,-0.510067418217659],[114,167,79,-0.5087996376678348],[114,168,64,-0.5283950641751289],[114,168,65,-0.5268087666481733],[114,168,66,-0.5254243705421686],[114,168,67,-0.5242562610656023],[114,168,68,-0.5233399346470833],[114,168,69,-0.5223471540957689],[114,168,70,-0.5212690830230713],[114,168,71,-0.5199416745454073],[114,168,72,-0.5180730791762471],[114,168,73,-0.5158300111070275],[114,168,74,-0.5137281464412808],[114,168,75,-0.5123609788715839],[114,168,76,-0.5115872910246253],[114,168,77,-0.5109740369953215],[114,168,78,-0.510067418217659],[114,168,79,-0.5087996376678348],[114,169,64,-0.5283950641751289],[114,169,65,-0.5268087666481733],[114,169,66,-0.5254243705421686],[114,169,67,-0.5242562610656023],[114,169,68,-0.5233399346470833],[114,169,69,-0.5223471540957689],[114,169,70,-0.5212690830230713],[114,169,71,-0.5199416745454073],[114,169,72,-0.5180730791762471],[114,169,73,-0.5158300111070275],[114,169,74,-0.5137281464412808],[114,169,75,-0.5123609788715839],[114,169,76,-0.5115872910246253],[114,169,77,-0.5109740369953215],[114,169,78,-0.510067418217659],[114,169,79,-0.5087996376678348],[114,170,64,-0.5283950641751289],[114,170,65,-0.5268087666481733],[114,170,66,-0.5254243705421686],[114,170,67,-0.5242562610656023],[114,170,68,-0.5233399346470833],[114,170,69,-0.5223471540957689],[114,170,70,-0.5212690830230713],[114,170,71,-0.5199416745454073],[114,170,72,-0.5180730791762471],[114,170,73,-0.5158300111070275],[114,170,74,-0.5137281464412808],[114,170,75,-0.5123609788715839],[114,170,76,-0.5115872910246253],[114,170,77,-0.5109740369953215],[114,170,78,-0.510067418217659],[114,170,79,-0.5087996376678348],[114,171,64,-0.5283950641751289],[114,171,65,-0.5268087666481733],[114,171,66,-0.5254243705421686],[114,171,67,-0.5242562610656023],[114,171,68,-0.5233399346470833],[114,171,69,-0.5223471540957689],[114,171,70,-0.5212690830230713],[114,171,71,-0.5199416745454073],[114,171,72,-0.5180730791762471],[114,171,73,-0.5158300111070275],[114,171,74,-0.5137281464412808],[114,171,75,-0.5123609788715839],[114,171,76,-0.5115872910246253],[114,171,77,-0.5109740369953215],[114,171,78,-0.510067418217659],[114,171,79,-0.5087996376678348],[114,172,64,-0.5283950641751289],[114,172,65,-0.5268087666481733],[114,172,66,-0.5254243705421686],[114,172,67,-0.5242562610656023],[114,172,68,-0.5233399346470833],[114,172,69,-0.5223471540957689],[114,172,70,-0.5212690830230713],[114,172,71,-0.5199416745454073],[114,172,72,-0.5180730791762471],[114,172,73,-0.5158300111070275],[114,172,74,-0.5137281464412808],[114,172,75,-0.5123609788715839],[114,172,76,-0.5115872910246253],[114,172,77,-0.5109740369953215],[114,172,78,-0.510067418217659],[114,172,79,-0.5087996376678348],[114,173,64,-0.5283950641751289],[114,173,65,-0.5268087666481733],[114,173,66,-0.5254243705421686],[114,173,67,-0.5242562610656023],[114,173,68,-0.5233399346470833],[114,173,69,-0.5223471540957689],[114,173,70,-0.5212690830230713],[114,173,71,-0.5199416745454073],[114,173,72,-0.5180730791762471],[114,173,73,-0.5158300111070275],[114,173,74,-0.5137281464412808],[114,173,75,-0.5123609788715839],[114,173,76,-0.5115872910246253],[114,173,77,-0.5109740369953215],[114,173,78,-0.510067418217659],[114,173,79,-0.5087996376678348],[114,174,64,-0.5283950641751289],[114,174,65,-0.5268087666481733],[114,174,66,-0.5254243705421686],[114,174,67,-0.5242562610656023],[114,174,68,-0.5233399346470833],[114,174,69,-0.5223471540957689],[114,174,70,-0.5212690830230713],[114,174,71,-0.5199416745454073],[114,174,72,-0.5180730791762471],[114,174,73,-0.5158300111070275],[114,174,74,-0.5137281464412808],[114,174,75,-0.5123609788715839],[114,174,76,-0.5115872910246253],[114,174,77,-0.5109740369953215],[114,174,78,-0.510067418217659],[114,174,79,-0.5087996376678348],[114,175,64,-0.5283950641751289],[114,175,65,-0.5268087666481733],[114,175,66,-0.5254243705421686],[114,175,67,-0.5242562610656023],[114,175,68,-0.5233399346470833],[114,175,69,-0.5223471540957689],[114,175,70,-0.5212690830230713],[114,175,71,-0.5199416745454073],[114,175,72,-0.5180730791762471],[114,175,73,-0.5158300111070275],[114,175,74,-0.5137281464412808],[114,175,75,-0.5123609788715839],[114,175,76,-0.5115872910246253],[114,175,77,-0.5109740369953215],[114,175,78,-0.510067418217659],[114,175,79,-0.5087996376678348],[114,176,64,-0.5283950641751289],[114,176,65,-0.5268087666481733],[114,176,66,-0.5254243705421686],[114,176,67,-0.5242562610656023],[114,176,68,-0.5233399346470833],[114,176,69,-0.5223471540957689],[114,176,70,-0.5212690830230713],[114,176,71,-0.5199416745454073],[114,176,72,-0.5180730791762471],[114,176,73,-0.5158300111070275],[114,176,74,-0.5137281464412808],[114,176,75,-0.5123609788715839],[114,176,76,-0.5115872910246253],[114,176,77,-0.5109740369953215],[114,176,78,-0.510067418217659],[114,176,79,-0.5087996376678348],[114,177,64,-0.5283950641751289],[114,177,65,-0.5268087666481733],[114,177,66,-0.5254243705421686],[114,177,67,-0.5242562610656023],[114,177,68,-0.5233399346470833],[114,177,69,-0.5223471540957689],[114,177,70,-0.5212690830230713],[114,177,71,-0.5199416745454073],[114,177,72,-0.5180730791762471],[114,177,73,-0.5158300111070275],[114,177,74,-0.5137281464412808],[114,177,75,-0.5123609788715839],[114,177,76,-0.5115872910246253],[114,177,77,-0.5109740369953215],[114,177,78,-0.510067418217659],[114,177,79,-0.5087996376678348],[114,178,64,-0.5283950641751289],[114,178,65,-0.5268087666481733],[114,178,66,-0.5254243705421686],[114,178,67,-0.5242562610656023],[114,178,68,-0.5233399346470833],[114,178,69,-0.5223471540957689],[114,178,70,-0.5212690830230713],[114,178,71,-0.5199416745454073],[114,178,72,-0.5180730791762471],[114,178,73,-0.5158300111070275],[114,178,74,-0.5137281464412808],[114,178,75,-0.5123609788715839],[114,178,76,-0.5115872910246253],[114,178,77,-0.5109740369953215],[114,178,78,-0.510067418217659],[114,178,79,-0.5087996376678348],[114,179,64,-0.5283950641751289],[114,179,65,-0.5268087666481733],[114,179,66,-0.5254243705421686],[114,179,67,-0.5242562610656023],[114,179,68,-0.5233399346470833],[114,179,69,-0.5223471540957689],[114,179,70,-0.5212690830230713],[114,179,71,-0.5199416745454073],[114,179,72,-0.5180730791762471],[114,179,73,-0.5158300111070275],[114,179,74,-0.5137281464412808],[114,179,75,-0.5123609788715839],[114,179,76,-0.5115872910246253],[114,179,77,-0.5109740369953215],[114,179,78,-0.510067418217659],[114,179,79,-0.5087996376678348],[114,180,64,-0.5283950641751289],[114,180,65,-0.5268087666481733],[114,180,66,-0.5254243705421686],[114,180,67,-0.5242562610656023],[114,180,68,-0.5233399346470833],[114,180,69,-0.5223471540957689],[114,180,70,-0.5212690830230713],[114,180,71,-0.5199416745454073],[114,180,72,-0.5180730791762471],[114,180,73,-0.5158300111070275],[114,180,74,-0.5137281464412808],[114,180,75,-0.5123609788715839],[114,180,76,-0.5115872910246253],[114,180,77,-0.5109740369953215],[114,180,78,-0.510067418217659],[114,180,79,-0.5087996376678348],[114,181,64,-0.5283950641751289],[114,181,65,-0.5268087666481733],[114,181,66,-0.5254243705421686],[114,181,67,-0.5242562610656023],[114,181,68,-0.5233399346470833],[114,181,69,-0.5223471540957689],[114,181,70,-0.5212690830230713],[114,181,71,-0.5199416745454073],[114,181,72,-0.5180730791762471],[114,181,73,-0.5158300111070275],[114,181,74,-0.5137281464412808],[114,181,75,-0.5123609788715839],[114,181,76,-0.5115872910246253],[114,181,77,-0.5109740369953215],[114,181,78,-0.510067418217659],[114,181,79,-0.5087996376678348],[114,182,64,-0.5283950641751289],[114,182,65,-0.5268087666481733],[114,182,66,-0.5254243705421686],[114,182,67,-0.5242562610656023],[114,182,68,-0.5233399346470833],[114,182,69,-0.5223471540957689],[114,182,70,-0.5212690830230713],[114,182,71,-0.5199416745454073],[114,182,72,-0.5180730791762471],[114,182,73,-0.5158300111070275],[114,182,74,-0.5137281464412808],[114,182,75,-0.5123609788715839],[114,182,76,-0.5115872910246253],[114,182,77,-0.5109740369953215],[114,182,78,-0.510067418217659],[114,182,79,-0.5087996376678348],[114,183,64,-0.5283950641751289],[114,183,65,-0.5268087666481733],[114,183,66,-0.5254243705421686],[114,183,67,-0.5242562610656023],[114,183,68,-0.5233399346470833],[114,183,69,-0.5223471540957689],[114,183,70,-0.5212690830230713],[114,183,71,-0.5199416745454073],[114,183,72,-0.5180730791762471],[114,183,73,-0.5158300111070275],[114,183,74,-0.5137281464412808],[114,183,75,-0.5123609788715839],[114,183,76,-0.5115872910246253],[114,183,77,-0.5109740369953215],[114,183,78,-0.510067418217659],[114,183,79,-0.5087996376678348],[114,184,64,-0.5283950641751289],[114,184,65,-0.5268087666481733],[114,184,66,-0.5254243705421686],[114,184,67,-0.5242562610656023],[114,184,68,-0.5233399346470833],[114,184,69,-0.5223471540957689],[114,184,70,-0.5212690830230713],[114,184,71,-0.5199416745454073],[114,184,72,-0.5180730791762471],[114,184,73,-0.5158300111070275],[114,184,74,-0.5137281464412808],[114,184,75,-0.5123609788715839],[114,184,76,-0.5115872910246253],[114,184,77,-0.5109740369953215],[114,184,78,-0.510067418217659],[114,184,79,-0.5087996376678348],[114,185,64,-0.5283950641751289],[114,185,65,-0.5268087666481733],[114,185,66,-0.5254243705421686],[114,185,67,-0.5242562610656023],[114,185,68,-0.5233399346470833],[114,185,69,-0.5223471540957689],[114,185,70,-0.5212690830230713],[114,185,71,-0.5199416745454073],[114,185,72,-0.5180730791762471],[114,185,73,-0.5158300111070275],[114,185,74,-0.5137281464412808],[114,185,75,-0.5123609788715839],[114,185,76,-0.5115872910246253],[114,185,77,-0.5109740369953215],[114,185,78,-0.510067418217659],[114,185,79,-0.5087996376678348],[114,186,64,-0.5283950641751289],[114,186,65,-0.5268087666481733],[114,186,66,-0.5254243705421686],[114,186,67,-0.5242562610656023],[114,186,68,-0.5233399346470833],[114,186,69,-0.5223471540957689],[114,186,70,-0.5212690830230713],[114,186,71,-0.5199416745454073],[114,186,72,-0.5180730791762471],[114,186,73,-0.5158300111070275],[114,186,74,-0.5137281464412808],[114,186,75,-0.5123609788715839],[114,186,76,-0.5115872910246253],[114,186,77,-0.5109740369953215],[114,186,78,-0.510067418217659],[114,186,79,-0.5087996376678348],[114,187,64,-0.5283950641751289],[114,187,65,-0.5268087666481733],[114,187,66,-0.5254243705421686],[114,187,67,-0.5242562610656023],[114,187,68,-0.5233399346470833],[114,187,69,-0.5223471540957689],[114,187,70,-0.5212690830230713],[114,187,71,-0.5199416745454073],[114,187,72,-0.5180730791762471],[114,187,73,-0.5158300111070275],[114,187,74,-0.5137281464412808],[114,187,75,-0.5123609788715839],[114,187,76,-0.5115872910246253],[114,187,77,-0.5109740369953215],[114,187,78,-0.510067418217659],[114,187,79,-0.5087996376678348],[114,188,64,-0.5283950641751289],[114,188,65,-0.5268087666481733],[114,188,66,-0.5254243705421686],[114,188,67,-0.5242562610656023],[114,188,68,-0.5233399346470833],[114,188,69,-0.5223471540957689],[114,188,70,-0.5212690830230713],[114,188,71,-0.5199416745454073],[114,188,72,-0.5180730791762471],[114,188,73,-0.5158300111070275],[114,188,74,-0.5137281464412808],[114,188,75,-0.5123609788715839],[114,188,76,-0.5115872910246253],[114,188,77,-0.5109740369953215],[114,188,78,-0.510067418217659],[114,188,79,-0.5087996376678348],[114,189,64,-0.5283950641751289],[114,189,65,-0.5268087666481733],[114,189,66,-0.5254243705421686],[114,189,67,-0.5242562610656023],[114,189,68,-0.5233399346470833],[114,189,69,-0.5223471540957689],[114,189,70,-0.5212690830230713],[114,189,71,-0.5199416745454073],[114,189,72,-0.5180730791762471],[114,189,73,-0.5158300111070275],[114,189,74,-0.5137281464412808],[114,189,75,-0.5123609788715839],[114,189,76,-0.5115872910246253],[114,189,77,-0.5109740369953215],[114,189,78,-0.510067418217659],[114,189,79,-0.5087996376678348],[114,190,64,-0.5283950641751289],[114,190,65,-0.5268087666481733],[114,190,66,-0.5254243705421686],[114,190,67,-0.5242562610656023],[114,190,68,-0.5233399346470833],[114,190,69,-0.5223471540957689],[114,190,70,-0.5212690830230713],[114,190,71,-0.5199416745454073],[114,190,72,-0.5180730791762471],[114,190,73,-0.5158300111070275],[114,190,74,-0.5137281464412808],[114,190,75,-0.5123609788715839],[114,190,76,-0.5115872910246253],[114,190,77,-0.5109740369953215],[114,190,78,-0.510067418217659],[114,190,79,-0.5087996376678348],[114,191,64,-0.5283950641751289],[114,191,65,-0.5268087666481733],[114,191,66,-0.5254243705421686],[114,191,67,-0.5242562610656023],[114,191,68,-0.5233399346470833],[114,191,69,-0.5223471540957689],[114,191,70,-0.5212690830230713],[114,191,71,-0.5199416745454073],[114,191,72,-0.5180730791762471],[114,191,73,-0.5158300111070275],[114,191,74,-0.5137281464412808],[114,191,75,-0.5123609788715839],[114,191,76,-0.5115872910246253],[114,191,77,-0.5109740369953215],[114,191,78,-0.510067418217659],[114,191,79,-0.5087996376678348],[114,192,64,-0.5283950641751289],[114,192,65,-0.5268087666481733],[114,192,66,-0.5254243705421686],[114,192,67,-0.5242562610656023],[114,192,68,-0.5233399346470833],[114,192,69,-0.5223471540957689],[114,192,70,-0.5212690830230713],[114,192,71,-0.5199416745454073],[114,192,72,-0.5180730791762471],[114,192,73,-0.5158300111070275],[114,192,74,-0.5137281464412808],[114,192,75,-0.5123609788715839],[114,192,76,-0.5115872910246253],[114,192,77,-0.5109740369953215],[114,192,78,-0.510067418217659],[114,192,79,-0.5087996376678348],[114,193,64,-0.5283950641751289],[114,193,65,-0.5268087666481733],[114,193,66,-0.5254243705421686],[114,193,67,-0.5242562610656023],[114,193,68,-0.5233399346470833],[114,193,69,-0.5223471540957689],[114,193,70,-0.5212690830230713],[114,193,71,-0.5199416745454073],[114,193,72,-0.5180730791762471],[114,193,73,-0.5158300111070275],[114,193,74,-0.5137281464412808],[114,193,75,-0.5123609788715839],[114,193,76,-0.5115872910246253],[114,193,77,-0.5109740369953215],[114,193,78,-0.510067418217659],[114,193,79,-0.5087996376678348],[114,194,64,-0.5283950641751289],[114,194,65,-0.5268087666481733],[114,194,66,-0.5254243705421686],[114,194,67,-0.5242562610656023],[114,194,68,-0.5233399346470833],[114,194,69,-0.5223471540957689],[114,194,70,-0.5212690830230713],[114,194,71,-0.5199416745454073],[114,194,72,-0.5180730791762471],[114,194,73,-0.5158300111070275],[114,194,74,-0.5137281464412808],[114,194,75,-0.5123609788715839],[114,194,76,-0.5115872910246253],[114,194,77,-0.5109740369953215],[114,194,78,-0.510067418217659],[114,194,79,-0.5087996376678348],[114,195,64,-0.5283950641751289],[114,195,65,-0.5268087666481733],[114,195,66,-0.5254243705421686],[114,195,67,-0.5242562610656023],[114,195,68,-0.5233399346470833],[114,195,69,-0.5223471540957689],[114,195,70,-0.5212690830230713],[114,195,71,-0.5199416745454073],[114,195,72,-0.5180730791762471],[114,195,73,-0.5158300111070275],[114,195,74,-0.5137281464412808],[114,195,75,-0.5123609788715839],[114,195,76,-0.5115872910246253],[114,195,77,-0.5109740369953215],[114,195,78,-0.510067418217659],[114,195,79,-0.5087996376678348],[114,196,64,-0.5283950641751289],[114,196,65,-0.5268087666481733],[114,196,66,-0.5254243705421686],[114,196,67,-0.5242562610656023],[114,196,68,-0.5233399346470833],[114,196,69,-0.5223471540957689],[114,196,70,-0.5212690830230713],[114,196,71,-0.5199416745454073],[114,196,72,-0.5180730791762471],[114,196,73,-0.5158300111070275],[114,196,74,-0.5137281464412808],[114,196,75,-0.5123609788715839],[114,196,76,-0.5115872910246253],[114,196,77,-0.5109740369953215],[114,196,78,-0.510067418217659],[114,196,79,-0.5087996376678348],[114,197,64,-0.5283950641751289],[114,197,65,-0.5268087666481733],[114,197,66,-0.5254243705421686],[114,197,67,-0.5242562610656023],[114,197,68,-0.5233399346470833],[114,197,69,-0.5223471540957689],[114,197,70,-0.5212690830230713],[114,197,71,-0.5199416745454073],[114,197,72,-0.5180730791762471],[114,197,73,-0.5158300111070275],[114,197,74,-0.5137281464412808],[114,197,75,-0.5123609788715839],[114,197,76,-0.5115872910246253],[114,197,77,-0.5109740369953215],[114,197,78,-0.510067418217659],[114,197,79,-0.5087996376678348],[114,198,64,-0.5283950641751289],[114,198,65,-0.5268087666481733],[114,198,66,-0.5254243705421686],[114,198,67,-0.5242562610656023],[114,198,68,-0.5233399346470833],[114,198,69,-0.5223471540957689],[114,198,70,-0.5212690830230713],[114,198,71,-0.5199416745454073],[114,198,72,-0.5180730791762471],[114,198,73,-0.5158300111070275],[114,198,74,-0.5137281464412808],[114,198,75,-0.5123609788715839],[114,198,76,-0.5115872910246253],[114,198,77,-0.5109740369953215],[114,198,78,-0.510067418217659],[114,198,79,-0.5087996376678348],[114,199,64,-0.5283950641751289],[114,199,65,-0.5268087666481733],[114,199,66,-0.5254243705421686],[114,199,67,-0.5242562610656023],[114,199,68,-0.5233399346470833],[114,199,69,-0.5223471540957689],[114,199,70,-0.5212690830230713],[114,199,71,-0.5199416745454073],[114,199,72,-0.5180730791762471],[114,199,73,-0.5158300111070275],[114,199,74,-0.5137281464412808],[114,199,75,-0.5123609788715839],[114,199,76,-0.5115872910246253],[114,199,77,-0.5109740369953215],[114,199,78,-0.510067418217659],[114,199,79,-0.5087996376678348],[114,200,64,-0.5283950641751289],[114,200,65,-0.5268087666481733],[114,200,66,-0.5254243705421686],[114,200,67,-0.5242562610656023],[114,200,68,-0.5233399346470833],[114,200,69,-0.5223471540957689],[114,200,70,-0.5212690830230713],[114,200,71,-0.5199416745454073],[114,200,72,-0.5180730791762471],[114,200,73,-0.5158300111070275],[114,200,74,-0.5137281464412808],[114,200,75,-0.5123609788715839],[114,200,76,-0.5115872910246253],[114,200,77,-0.5109740369953215],[114,200,78,-0.510067418217659],[114,200,79,-0.5087996376678348],[114,201,64,-0.5283950641751289],[114,201,65,-0.5268087666481733],[114,201,66,-0.5254243705421686],[114,201,67,-0.5242562610656023],[114,201,68,-0.5233399346470833],[114,201,69,-0.5223471540957689],[114,201,70,-0.5212690830230713],[114,201,71,-0.5199416745454073],[114,201,72,-0.5180730791762471],[114,201,73,-0.5158300111070275],[114,201,74,-0.5137281464412808],[114,201,75,-0.5123609788715839],[114,201,76,-0.5115872910246253],[114,201,77,-0.5109740369953215],[114,201,78,-0.510067418217659],[114,201,79,-0.5087996376678348],[114,202,64,-0.5283950641751289],[114,202,65,-0.5268087666481733],[114,202,66,-0.5254243705421686],[114,202,67,-0.5242562610656023],[114,202,68,-0.5233399346470833],[114,202,69,-0.5223471540957689],[114,202,70,-0.5212690830230713],[114,202,71,-0.5199416745454073],[114,202,72,-0.5180730791762471],[114,202,73,-0.5158300111070275],[114,202,74,-0.5137281464412808],[114,202,75,-0.5123609788715839],[114,202,76,-0.5115872910246253],[114,202,77,-0.5109740369953215],[114,202,78,-0.510067418217659],[114,202,79,-0.5087996376678348],[114,203,64,-0.5283950641751289],[114,203,65,-0.5268087666481733],[114,203,66,-0.5254243705421686],[114,203,67,-0.5242562610656023],[114,203,68,-0.5233399346470833],[114,203,69,-0.5223471540957689],[114,203,70,-0.5212690830230713],[114,203,71,-0.5199416745454073],[114,203,72,-0.5180730791762471],[114,203,73,-0.5158300111070275],[114,203,74,-0.5137281464412808],[114,203,75,-0.5123609788715839],[114,203,76,-0.5115872910246253],[114,203,77,-0.5109740369953215],[114,203,78,-0.510067418217659],[114,203,79,-0.5087996376678348],[114,204,64,-0.5283950641751289],[114,204,65,-0.5268087666481733],[114,204,66,-0.5254243705421686],[114,204,67,-0.5242562610656023],[114,204,68,-0.5233399346470833],[114,204,69,-0.5223471540957689],[114,204,70,-0.5212690830230713],[114,204,71,-0.5199416745454073],[114,204,72,-0.5180730791762471],[114,204,73,-0.5158300111070275],[114,204,74,-0.5137281464412808],[114,204,75,-0.5123609788715839],[114,204,76,-0.5115872910246253],[114,204,77,-0.5109740369953215],[114,204,78,-0.510067418217659],[114,204,79,-0.5087996376678348],[114,205,64,-0.5283950641751289],[114,205,65,-0.5268087666481733],[114,205,66,-0.5254243705421686],[114,205,67,-0.5242562610656023],[114,205,68,-0.5233399346470833],[114,205,69,-0.5223471540957689],[114,205,70,-0.5212690830230713],[114,205,71,-0.5199416745454073],[114,205,72,-0.5180730791762471],[114,205,73,-0.5158300111070275],[114,205,74,-0.5137281464412808],[114,205,75,-0.5123609788715839],[114,205,76,-0.5115872910246253],[114,205,77,-0.5109740369953215],[114,205,78,-0.510067418217659],[114,205,79,-0.5087996376678348],[114,206,64,-0.5283950641751289],[114,206,65,-0.5268087666481733],[114,206,66,-0.5254243705421686],[114,206,67,-0.5242562610656023],[114,206,68,-0.5233399346470833],[114,206,69,-0.5223471540957689],[114,206,70,-0.5212690830230713],[114,206,71,-0.5199416745454073],[114,206,72,-0.5180730791762471],[114,206,73,-0.5158300111070275],[114,206,74,-0.5137281464412808],[114,206,75,-0.5123609788715839],[114,206,76,-0.5115872910246253],[114,206,77,-0.5109740369953215],[114,206,78,-0.510067418217659],[114,206,79,-0.5087996376678348],[114,207,64,-0.5283950641751289],[114,207,65,-0.5268087666481733],[114,207,66,-0.5254243705421686],[114,207,67,-0.5242562610656023],[114,207,68,-0.5233399346470833],[114,207,69,-0.5223471540957689],[114,207,70,-0.5212690830230713],[114,207,71,-0.5199416745454073],[114,207,72,-0.5180730791762471],[114,207,73,-0.5158300111070275],[114,207,74,-0.5137281464412808],[114,207,75,-0.5123609788715839],[114,207,76,-0.5115872910246253],[114,207,77,-0.5109740369953215],[114,207,78,-0.510067418217659],[114,207,79,-0.5087996376678348],[114,208,64,-0.5283950641751289],[114,208,65,-0.5268087666481733],[114,208,66,-0.5254243705421686],[114,208,67,-0.5242562610656023],[114,208,68,-0.5233399346470833],[114,208,69,-0.5223471540957689],[114,208,70,-0.5212690830230713],[114,208,71,-0.5199416745454073],[114,208,72,-0.5180730791762471],[114,208,73,-0.5158300111070275],[114,208,74,-0.5137281464412808],[114,208,75,-0.5123609788715839],[114,208,76,-0.5115872910246253],[114,208,77,-0.5109740369953215],[114,208,78,-0.510067418217659],[114,208,79,-0.5087996376678348],[114,209,64,-0.5283950641751289],[114,209,65,-0.5268087666481733],[114,209,66,-0.5254243705421686],[114,209,67,-0.5242562610656023],[114,209,68,-0.5233399346470833],[114,209,69,-0.5223471540957689],[114,209,70,-0.5212690830230713],[114,209,71,-0.5199416745454073],[114,209,72,-0.5180730791762471],[114,209,73,-0.5158300111070275],[114,209,74,-0.5137281464412808],[114,209,75,-0.5123609788715839],[114,209,76,-0.5115872910246253],[114,209,77,-0.5109740369953215],[114,209,78,-0.510067418217659],[114,209,79,-0.5087996376678348],[114,210,64,-0.5283950641751289],[114,210,65,-0.5268087666481733],[114,210,66,-0.5254243705421686],[114,210,67,-0.5242562610656023],[114,210,68,-0.5233399346470833],[114,210,69,-0.5223471540957689],[114,210,70,-0.5212690830230713],[114,210,71,-0.5199416745454073],[114,210,72,-0.5180730791762471],[114,210,73,-0.5158300111070275],[114,210,74,-0.5137281464412808],[114,210,75,-0.5123609788715839],[114,210,76,-0.5115872910246253],[114,210,77,-0.5109740369953215],[114,210,78,-0.510067418217659],[114,210,79,-0.5087996376678348],[114,211,64,-0.5283950641751289],[114,211,65,-0.5268087666481733],[114,211,66,-0.5254243705421686],[114,211,67,-0.5242562610656023],[114,211,68,-0.5233399346470833],[114,211,69,-0.5223471540957689],[114,211,70,-0.5212690830230713],[114,211,71,-0.5199416745454073],[114,211,72,-0.5180730791762471],[114,211,73,-0.5158300111070275],[114,211,74,-0.5137281464412808],[114,211,75,-0.5123609788715839],[114,211,76,-0.5115872910246253],[114,211,77,-0.5109740369953215],[114,211,78,-0.510067418217659],[114,211,79,-0.5087996376678348],[114,212,64,-0.5283950641751289],[114,212,65,-0.5268087666481733],[114,212,66,-0.5254243705421686],[114,212,67,-0.5242562610656023],[114,212,68,-0.5233399346470833],[114,212,69,-0.5223471540957689],[114,212,70,-0.5212690830230713],[114,212,71,-0.5199416745454073],[114,212,72,-0.5180730791762471],[114,212,73,-0.5158300111070275],[114,212,74,-0.5137281464412808],[114,212,75,-0.5123609788715839],[114,212,76,-0.5115872910246253],[114,212,77,-0.5109740369953215],[114,212,78,-0.510067418217659],[114,212,79,-0.5087996376678348],[114,213,64,-0.5283950641751289],[114,213,65,-0.5268087666481733],[114,213,66,-0.5254243705421686],[114,213,67,-0.5242562610656023],[114,213,68,-0.5233399346470833],[114,213,69,-0.5223471540957689],[114,213,70,-0.5212690830230713],[114,213,71,-0.5199416745454073],[114,213,72,-0.5180730791762471],[114,213,73,-0.5158300111070275],[114,213,74,-0.5137281464412808],[114,213,75,-0.5123609788715839],[114,213,76,-0.5115872910246253],[114,213,77,-0.5109740369953215],[114,213,78,-0.510067418217659],[114,213,79,-0.5087996376678348],[114,214,64,-0.5283950641751289],[114,214,65,-0.5268087666481733],[114,214,66,-0.5254243705421686],[114,214,67,-0.5242562610656023],[114,214,68,-0.5233399346470833],[114,214,69,-0.5223471540957689],[114,214,70,-0.5212690830230713],[114,214,71,-0.5199416745454073],[114,214,72,-0.5180730791762471],[114,214,73,-0.5158300111070275],[114,214,74,-0.5137281464412808],[114,214,75,-0.5123609788715839],[114,214,76,-0.5115872910246253],[114,214,77,-0.5109740369953215],[114,214,78,-0.510067418217659],[114,214,79,-0.5087996376678348],[114,215,64,-0.5283950641751289],[114,215,65,-0.5268087666481733],[114,215,66,-0.5254243705421686],[114,215,67,-0.5242562610656023],[114,215,68,-0.5233399346470833],[114,215,69,-0.5223471540957689],[114,215,70,-0.5212690830230713],[114,215,71,-0.5199416745454073],[114,215,72,-0.5180730791762471],[114,215,73,-0.5158300111070275],[114,215,74,-0.5137281464412808],[114,215,75,-0.5123609788715839],[114,215,76,-0.5115872910246253],[114,215,77,-0.5109740369953215],[114,215,78,-0.510067418217659],[114,215,79,-0.5087996376678348],[114,216,64,-0.5283950641751289],[114,216,65,-0.5268087666481733],[114,216,66,-0.5254243705421686],[114,216,67,-0.5242562610656023],[114,216,68,-0.5233399346470833],[114,216,69,-0.5223471540957689],[114,216,70,-0.5212690830230713],[114,216,71,-0.5199416745454073],[114,216,72,-0.5180730791762471],[114,216,73,-0.5158300111070275],[114,216,74,-0.5137281464412808],[114,216,75,-0.5123609788715839],[114,216,76,-0.5115872910246253],[114,216,77,-0.5109740369953215],[114,216,78,-0.510067418217659],[114,216,79,-0.5087996376678348],[114,217,64,-0.5283950641751289],[114,217,65,-0.5268087666481733],[114,217,66,-0.5254243705421686],[114,217,67,-0.5242562610656023],[114,217,68,-0.5233399346470833],[114,217,69,-0.5223471540957689],[114,217,70,-0.5212690830230713],[114,217,71,-0.5199416745454073],[114,217,72,-0.5180730791762471],[114,217,73,-0.5158300111070275],[114,217,74,-0.5137281464412808],[114,217,75,-0.5123609788715839],[114,217,76,-0.5115872910246253],[114,217,77,-0.5109740369953215],[114,217,78,-0.510067418217659],[114,217,79,-0.5087996376678348],[114,218,64,-0.5283950641751289],[114,218,65,-0.5268087666481733],[114,218,66,-0.5254243705421686],[114,218,67,-0.5242562610656023],[114,218,68,-0.5233399346470833],[114,218,69,-0.5223471540957689],[114,218,70,-0.5212690830230713],[114,218,71,-0.5199416745454073],[114,218,72,-0.5180730791762471],[114,218,73,-0.5158300111070275],[114,218,74,-0.5137281464412808],[114,218,75,-0.5123609788715839],[114,218,76,-0.5115872910246253],[114,218,77,-0.5109740369953215],[114,218,78,-0.510067418217659],[114,218,79,-0.5087996376678348],[114,219,64,-0.5283950641751289],[114,219,65,-0.5268087666481733],[114,219,66,-0.5254243705421686],[114,219,67,-0.5242562610656023],[114,219,68,-0.5233399346470833],[114,219,69,-0.5223471540957689],[114,219,70,-0.5212690830230713],[114,219,71,-0.5199416745454073],[114,219,72,-0.5180730791762471],[114,219,73,-0.5158300111070275],[114,219,74,-0.5137281464412808],[114,219,75,-0.5123609788715839],[114,219,76,-0.5115872910246253],[114,219,77,-0.5109740369953215],[114,219,78,-0.510067418217659],[114,219,79,-0.5087996376678348],[114,220,64,-0.5283950641751289],[114,220,65,-0.5268087666481733],[114,220,66,-0.5254243705421686],[114,220,67,-0.5242562610656023],[114,220,68,-0.5233399346470833],[114,220,69,-0.5223471540957689],[114,220,70,-0.5212690830230713],[114,220,71,-0.5199416745454073],[114,220,72,-0.5180730791762471],[114,220,73,-0.5158300111070275],[114,220,74,-0.5137281464412808],[114,220,75,-0.5123609788715839],[114,220,76,-0.5115872910246253],[114,220,77,-0.5109740369953215],[114,220,78,-0.510067418217659],[114,220,79,-0.5087996376678348],[114,221,64,-0.5283950641751289],[114,221,65,-0.5268087666481733],[114,221,66,-0.5254243705421686],[114,221,67,-0.5242562610656023],[114,221,68,-0.5233399346470833],[114,221,69,-0.5223471540957689],[114,221,70,-0.5212690830230713],[114,221,71,-0.5199416745454073],[114,221,72,-0.5180730791762471],[114,221,73,-0.5158300111070275],[114,221,74,-0.5137281464412808],[114,221,75,-0.5123609788715839],[114,221,76,-0.5115872910246253],[114,221,77,-0.5109740369953215],[114,221,78,-0.510067418217659],[114,221,79,-0.5087996376678348],[114,222,64,-0.5283950641751289],[114,222,65,-0.5268087666481733],[114,222,66,-0.5254243705421686],[114,222,67,-0.5242562610656023],[114,222,68,-0.5233399346470833],[114,222,69,-0.5223471540957689],[114,222,70,-0.5212690830230713],[114,222,71,-0.5199416745454073],[114,222,72,-0.5180730791762471],[114,222,73,-0.5158300111070275],[114,222,74,-0.5137281464412808],[114,222,75,-0.5123609788715839],[114,222,76,-0.5115872910246253],[114,222,77,-0.5109740369953215],[114,222,78,-0.510067418217659],[114,222,79,-0.5087996376678348],[114,223,64,-0.5283950641751289],[114,223,65,-0.5268087666481733],[114,223,66,-0.5254243705421686],[114,223,67,-0.5242562610656023],[114,223,68,-0.5233399346470833],[114,223,69,-0.5223471540957689],[114,223,70,-0.5212690830230713],[114,223,71,-0.5199416745454073],[114,223,72,-0.5180730791762471],[114,223,73,-0.5158300111070275],[114,223,74,-0.5137281464412808],[114,223,75,-0.5123609788715839],[114,223,76,-0.5115872910246253],[114,223,77,-0.5109740369953215],[114,223,78,-0.510067418217659],[114,223,79,-0.5087996376678348],[114,224,64,-0.5283950641751289],[114,224,65,-0.5268087666481733],[114,224,66,-0.5254243705421686],[114,224,67,-0.5242562610656023],[114,224,68,-0.5233399346470833],[114,224,69,-0.5223471540957689],[114,224,70,-0.5212690830230713],[114,224,71,-0.5199416745454073],[114,224,72,-0.5180730791762471],[114,224,73,-0.5158300111070275],[114,224,74,-0.5137281464412808],[114,224,75,-0.5123609788715839],[114,224,76,-0.5115872910246253],[114,224,77,-0.5109740369953215],[114,224,78,-0.510067418217659],[114,224,79,-0.5087996376678348],[114,225,64,-0.5283950641751289],[114,225,65,-0.5268087666481733],[114,225,66,-0.5254243705421686],[114,225,67,-0.5242562610656023],[114,225,68,-0.5233399346470833],[114,225,69,-0.5223471540957689],[114,225,70,-0.5212690830230713],[114,225,71,-0.5199416745454073],[114,225,72,-0.5180730791762471],[114,225,73,-0.5158300111070275],[114,225,74,-0.5137281464412808],[114,225,75,-0.5123609788715839],[114,225,76,-0.5115872910246253],[114,225,77,-0.5109740369953215],[114,225,78,-0.510067418217659],[114,225,79,-0.5087996376678348],[114,226,64,-0.5283950641751289],[114,226,65,-0.5268087666481733],[114,226,66,-0.5254243705421686],[114,226,67,-0.5242562610656023],[114,226,68,-0.5233399346470833],[114,226,69,-0.5223471540957689],[114,226,70,-0.5212690830230713],[114,226,71,-0.5199416745454073],[114,226,72,-0.5180730791762471],[114,226,73,-0.5158300111070275],[114,226,74,-0.5137281464412808],[114,226,75,-0.5123609788715839],[114,226,76,-0.5115872910246253],[114,226,77,-0.5109740369953215],[114,226,78,-0.510067418217659],[114,226,79,-0.5087996376678348],[114,227,64,-0.5283950641751289],[114,227,65,-0.5268087666481733],[114,227,66,-0.5254243705421686],[114,227,67,-0.5242562610656023],[114,227,68,-0.5233399346470833],[114,227,69,-0.5223471540957689],[114,227,70,-0.5212690830230713],[114,227,71,-0.5199416745454073],[114,227,72,-0.5180730791762471],[114,227,73,-0.5158300111070275],[114,227,74,-0.5137281464412808],[114,227,75,-0.5123609788715839],[114,227,76,-0.5115872910246253],[114,227,77,-0.5109740369953215],[114,227,78,-0.510067418217659],[114,227,79,-0.5087996376678348],[114,228,64,-0.5283950641751289],[114,228,65,-0.5268087666481733],[114,228,66,-0.5254243705421686],[114,228,67,-0.5242562610656023],[114,228,68,-0.5233399346470833],[114,228,69,-0.5223471540957689],[114,228,70,-0.5212690830230713],[114,228,71,-0.5199416745454073],[114,228,72,-0.5180730791762471],[114,228,73,-0.5158300111070275],[114,228,74,-0.5137281464412808],[114,228,75,-0.5123609788715839],[114,228,76,-0.5115872910246253],[114,228,77,-0.5109740369953215],[114,228,78,-0.510067418217659],[114,228,79,-0.5087996376678348],[114,229,64,-0.5283950641751289],[114,229,65,-0.5268087666481733],[114,229,66,-0.5254243705421686],[114,229,67,-0.5242562610656023],[114,229,68,-0.5233399346470833],[114,229,69,-0.5223471540957689],[114,229,70,-0.5212690830230713],[114,229,71,-0.5199416745454073],[114,229,72,-0.5180730791762471],[114,229,73,-0.5158300111070275],[114,229,74,-0.5137281464412808],[114,229,75,-0.5123609788715839],[114,229,76,-0.5115872910246253],[114,229,77,-0.5109740369953215],[114,229,78,-0.510067418217659],[114,229,79,-0.5087996376678348],[114,230,64,-0.5283950641751289],[114,230,65,-0.5268087666481733],[114,230,66,-0.5254243705421686],[114,230,67,-0.5242562610656023],[114,230,68,-0.5233399346470833],[114,230,69,-0.5223471540957689],[114,230,70,-0.5212690830230713],[114,230,71,-0.5199416745454073],[114,230,72,-0.5180730791762471],[114,230,73,-0.5158300111070275],[114,230,74,-0.5137281464412808],[114,230,75,-0.5123609788715839],[114,230,76,-0.5115872910246253],[114,230,77,-0.5109740369953215],[114,230,78,-0.510067418217659],[114,230,79,-0.5087996376678348],[114,231,64,-0.5283950641751289],[114,231,65,-0.5268087666481733],[114,231,66,-0.5254243705421686],[114,231,67,-0.5242562610656023],[114,231,68,-0.5233399346470833],[114,231,69,-0.5223471540957689],[114,231,70,-0.5212690830230713],[114,231,71,-0.5199416745454073],[114,231,72,-0.5180730791762471],[114,231,73,-0.5158300111070275],[114,231,74,-0.5137281464412808],[114,231,75,-0.5123609788715839],[114,231,76,-0.5115872910246253],[114,231,77,-0.5109740369953215],[114,231,78,-0.510067418217659],[114,231,79,-0.5087996376678348],[114,232,64,-0.5283950641751289],[114,232,65,-0.5268087666481733],[114,232,66,-0.5254243705421686],[114,232,67,-0.5242562610656023],[114,232,68,-0.5233399346470833],[114,232,69,-0.5223471540957689],[114,232,70,-0.5212690830230713],[114,232,71,-0.5199416745454073],[114,232,72,-0.5180730791762471],[114,232,73,-0.5158300111070275],[114,232,74,-0.5137281464412808],[114,232,75,-0.5123609788715839],[114,232,76,-0.5115872910246253],[114,232,77,-0.5109740369953215],[114,232,78,-0.510067418217659],[114,232,79,-0.5087996376678348],[114,233,64,-0.5283950641751289],[114,233,65,-0.5268087666481733],[114,233,66,-0.5254243705421686],[114,233,67,-0.5242562610656023],[114,233,68,-0.5233399346470833],[114,233,69,-0.5223471540957689],[114,233,70,-0.5212690830230713],[114,233,71,-0.5199416745454073],[114,233,72,-0.5180730791762471],[114,233,73,-0.5158300111070275],[114,233,74,-0.5137281464412808],[114,233,75,-0.5123609788715839],[114,233,76,-0.5115872910246253],[114,233,77,-0.5109740369953215],[114,233,78,-0.510067418217659],[114,233,79,-0.5087996376678348],[114,234,64,-0.5283950641751289],[114,234,65,-0.5268087666481733],[114,234,66,-0.5254243705421686],[114,234,67,-0.5242562610656023],[114,234,68,-0.5233399346470833],[114,234,69,-0.5223471540957689],[114,234,70,-0.5212690830230713],[114,234,71,-0.5199416745454073],[114,234,72,-0.5180730791762471],[114,234,73,-0.5158300111070275],[114,234,74,-0.5137281464412808],[114,234,75,-0.5123609788715839],[114,234,76,-0.5115872910246253],[114,234,77,-0.5109740369953215],[114,234,78,-0.510067418217659],[114,234,79,-0.5087996376678348],[114,235,64,-0.5283950641751289],[114,235,65,-0.5268087666481733],[114,235,66,-0.5254243705421686],[114,235,67,-0.5242562610656023],[114,235,68,-0.5233399346470833],[114,235,69,-0.5223471540957689],[114,235,70,-0.5212690830230713],[114,235,71,-0.5199416745454073],[114,235,72,-0.5180730791762471],[114,235,73,-0.5158300111070275],[114,235,74,-0.5137281464412808],[114,235,75,-0.5123609788715839],[114,235,76,-0.5115872910246253],[114,235,77,-0.5109740369953215],[114,235,78,-0.510067418217659],[114,235,79,-0.5087996376678348],[114,236,64,-0.5283950641751289],[114,236,65,-0.5268087666481733],[114,236,66,-0.5254243705421686],[114,236,67,-0.5242562610656023],[114,236,68,-0.5233399346470833],[114,236,69,-0.5223471540957689],[114,236,70,-0.5212690830230713],[114,236,71,-0.5199416745454073],[114,236,72,-0.5180730791762471],[114,236,73,-0.5158300111070275],[114,236,74,-0.5137281464412808],[114,236,75,-0.5123609788715839],[114,236,76,-0.5115872910246253],[114,236,77,-0.5109740369953215],[114,236,78,-0.510067418217659],[114,236,79,-0.5087996376678348],[114,237,64,-0.5283950641751289],[114,237,65,-0.5268087666481733],[114,237,66,-0.5254243705421686],[114,237,67,-0.5242562610656023],[114,237,68,-0.5233399346470833],[114,237,69,-0.5223471540957689],[114,237,70,-0.5212690830230713],[114,237,71,-0.5199416745454073],[114,237,72,-0.5180730791762471],[114,237,73,-0.5158300111070275],[114,237,74,-0.5137281464412808],[114,237,75,-0.5123609788715839],[114,237,76,-0.5115872910246253],[114,237,77,-0.5109740369953215],[114,237,78,-0.510067418217659],[114,237,79,-0.5087996376678348],[114,238,64,-0.5283950641751289],[114,238,65,-0.5268087666481733],[114,238,66,-0.5254243705421686],[114,238,67,-0.5242562610656023],[114,238,68,-0.5233399346470833],[114,238,69,-0.5223471540957689],[114,238,70,-0.5212690830230713],[114,238,71,-0.5199416745454073],[114,238,72,-0.5180730791762471],[114,238,73,-0.5158300111070275],[114,238,74,-0.5137281464412808],[114,238,75,-0.5123609788715839],[114,238,76,-0.5115872910246253],[114,238,77,-0.5109740369953215],[114,238,78,-0.510067418217659],[114,238,79,-0.5087996376678348],[114,239,64,-0.5283950641751289],[114,239,65,-0.5268087666481733],[114,239,66,-0.5254243705421686],[114,239,67,-0.5242562610656023],[114,239,68,-0.5233399346470833],[114,239,69,-0.5223471540957689],[114,239,70,-0.5212690830230713],[114,239,71,-0.5199416745454073],[114,239,72,-0.5180730791762471],[114,239,73,-0.5158300111070275],[114,239,74,-0.5137281464412808],[114,239,75,-0.5123609788715839],[114,239,76,-0.5115872910246253],[114,239,77,-0.5109740369953215],[114,239,78,-0.510067418217659],[114,239,79,-0.5087996376678348],[114,240,64,-0.5283950641751289],[114,240,65,-0.5268087666481733],[114,240,66,-0.5254243705421686],[114,240,67,-0.5242562610656023],[114,240,68,-0.5233399346470833],[114,240,69,-0.5223471540957689],[114,240,70,-0.5212690830230713],[114,240,71,-0.5199416745454073],[114,240,72,-0.5180730791762471],[114,240,73,-0.5158300111070275],[114,240,74,-0.5137281464412808],[114,240,75,-0.5123609788715839],[114,240,76,-0.5115872910246253],[114,240,77,-0.5109740369953215],[114,240,78,-0.510067418217659],[114,240,79,-0.5087996376678348],[114,241,64,-0.5283950641751289],[114,241,65,-0.5268087666481733],[114,241,66,-0.5254243705421686],[114,241,67,-0.5242562610656023],[114,241,68,-0.5233399346470833],[114,241,69,-0.5223471540957689],[114,241,70,-0.5212690830230713],[114,241,71,-0.5199416745454073],[114,241,72,-0.5180730791762471],[114,241,73,-0.5158300111070275],[114,241,74,-0.5137281464412808],[114,241,75,-0.5123609788715839],[114,241,76,-0.5115872910246253],[114,241,77,-0.5109740369953215],[114,241,78,-0.510067418217659],[114,241,79,-0.5087996376678348],[114,242,64,-0.5283950641751289],[114,242,65,-0.5268087666481733],[114,242,66,-0.5254243705421686],[114,242,67,-0.5242562610656023],[114,242,68,-0.5233399346470833],[114,242,69,-0.5223471540957689],[114,242,70,-0.5212690830230713],[114,242,71,-0.5199416745454073],[114,242,72,-0.5180730791762471],[114,242,73,-0.5158300111070275],[114,242,74,-0.5137281464412808],[114,242,75,-0.5123609788715839],[114,242,76,-0.5115872910246253],[114,242,77,-0.5109740369953215],[114,242,78,-0.510067418217659],[114,242,79,-0.5087996376678348],[114,243,64,-0.5283950641751289],[114,243,65,-0.5268087666481733],[114,243,66,-0.5254243705421686],[114,243,67,-0.5242562610656023],[114,243,68,-0.5233399346470833],[114,243,69,-0.5223471540957689],[114,243,70,-0.5212690830230713],[114,243,71,-0.5199416745454073],[114,243,72,-0.5180730791762471],[114,243,73,-0.5158300111070275],[114,243,74,-0.5137281464412808],[114,243,75,-0.5123609788715839],[114,243,76,-0.5115872910246253],[114,243,77,-0.5109740369953215],[114,243,78,-0.510067418217659],[114,243,79,-0.5087996376678348],[114,244,64,-0.5283950641751289],[114,244,65,-0.5268087666481733],[114,244,66,-0.5254243705421686],[114,244,67,-0.5242562610656023],[114,244,68,-0.5233399346470833],[114,244,69,-0.5223471540957689],[114,244,70,-0.5212690830230713],[114,244,71,-0.5199416745454073],[114,244,72,-0.5180730791762471],[114,244,73,-0.5158300111070275],[114,244,74,-0.5137281464412808],[114,244,75,-0.5123609788715839],[114,244,76,-0.5115872910246253],[114,244,77,-0.5109740369953215],[114,244,78,-0.510067418217659],[114,244,79,-0.5087996376678348],[114,245,64,-0.5283950641751289],[114,245,65,-0.5268087666481733],[114,245,66,-0.5254243705421686],[114,245,67,-0.5242562610656023],[114,245,68,-0.5233399346470833],[114,245,69,-0.5223471540957689],[114,245,70,-0.5212690830230713],[114,245,71,-0.5199416745454073],[114,245,72,-0.5180730791762471],[114,245,73,-0.5158300111070275],[114,245,74,-0.5137281464412808],[114,245,75,-0.5123609788715839],[114,245,76,-0.5115872910246253],[114,245,77,-0.5109740369953215],[114,245,78,-0.510067418217659],[114,245,79,-0.5087996376678348],[114,246,64,-0.5283950641751289],[114,246,65,-0.5268087666481733],[114,246,66,-0.5254243705421686],[114,246,67,-0.5242562610656023],[114,246,68,-0.5233399346470833],[114,246,69,-0.5223471540957689],[114,246,70,-0.5212690830230713],[114,246,71,-0.5199416745454073],[114,246,72,-0.5180730791762471],[114,246,73,-0.5158300111070275],[114,246,74,-0.5137281464412808],[114,246,75,-0.5123609788715839],[114,246,76,-0.5115872910246253],[114,246,77,-0.5109740369953215],[114,246,78,-0.510067418217659],[114,246,79,-0.5087996376678348],[114,247,64,-0.5283950641751289],[114,247,65,-0.5268087666481733],[114,247,66,-0.5254243705421686],[114,247,67,-0.5242562610656023],[114,247,68,-0.5233399346470833],[114,247,69,-0.5223471540957689],[114,247,70,-0.5212690830230713],[114,247,71,-0.5199416745454073],[114,247,72,-0.5180730791762471],[114,247,73,-0.5158300111070275],[114,247,74,-0.5137281464412808],[114,247,75,-0.5123609788715839],[114,247,76,-0.5115872910246253],[114,247,77,-0.5109740369953215],[114,247,78,-0.510067418217659],[114,247,79,-0.5087996376678348],[114,248,64,-0.5283950641751289],[114,248,65,-0.5268087666481733],[114,248,66,-0.5254243705421686],[114,248,67,-0.5242562610656023],[114,248,68,-0.5233399346470833],[114,248,69,-0.5223471540957689],[114,248,70,-0.5212690830230713],[114,248,71,-0.5199416745454073],[114,248,72,-0.5180730791762471],[114,248,73,-0.5158300111070275],[114,248,74,-0.5137281464412808],[114,248,75,-0.5123609788715839],[114,248,76,-0.5115872910246253],[114,248,77,-0.5109740369953215],[114,248,78,-0.510067418217659],[114,248,79,-0.5087996376678348],[114,249,64,-0.5283950641751289],[114,249,65,-0.5268087666481733],[114,249,66,-0.5254243705421686],[114,249,67,-0.5242562610656023],[114,249,68,-0.5233399346470833],[114,249,69,-0.5223471540957689],[114,249,70,-0.5212690830230713],[114,249,71,-0.5199416745454073],[114,249,72,-0.5180730791762471],[114,249,73,-0.5158300111070275],[114,249,74,-0.5137281464412808],[114,249,75,-0.5123609788715839],[114,249,76,-0.5115872910246253],[114,249,77,-0.5109740369953215],[114,249,78,-0.510067418217659],[114,249,79,-0.5087996376678348],[114,250,64,-0.5283950641751289],[114,250,65,-0.5268087666481733],[114,250,66,-0.5254243705421686],[114,250,67,-0.5242562610656023],[114,250,68,-0.5233399346470833],[114,250,69,-0.5223471540957689],[114,250,70,-0.5212690830230713],[114,250,71,-0.5199416745454073],[114,250,72,-0.5180730791762471],[114,250,73,-0.5158300111070275],[114,250,74,-0.5137281464412808],[114,250,75,-0.5123609788715839],[114,250,76,-0.5115872910246253],[114,250,77,-0.5109740369953215],[114,250,78,-0.510067418217659],[114,250,79,-0.5087996376678348],[114,251,64,-0.5283950641751289],[114,251,65,-0.5268087666481733],[114,251,66,-0.5254243705421686],[114,251,67,-0.5242562610656023],[114,251,68,-0.5233399346470833],[114,251,69,-0.5223471540957689],[114,251,70,-0.5212690830230713],[114,251,71,-0.5199416745454073],[114,251,72,-0.5180730791762471],[114,251,73,-0.5158300111070275],[114,251,74,-0.5137281464412808],[114,251,75,-0.5123609788715839],[114,251,76,-0.5115872910246253],[114,251,77,-0.5109740369953215],[114,251,78,-0.510067418217659],[114,251,79,-0.5087996376678348],[114,252,64,-0.5283950641751289],[114,252,65,-0.5268087666481733],[114,252,66,-0.5254243705421686],[114,252,67,-0.5242562610656023],[114,252,68,-0.5233399346470833],[114,252,69,-0.5223471540957689],[114,252,70,-0.5212690830230713],[114,252,71,-0.5199416745454073],[114,252,72,-0.5180730791762471],[114,252,73,-0.5158300111070275],[114,252,74,-0.5137281464412808],[114,252,75,-0.5123609788715839],[114,252,76,-0.5115872910246253],[114,252,77,-0.5109740369953215],[114,252,78,-0.510067418217659],[114,252,79,-0.5087996376678348],[114,253,64,-0.5283950641751289],[114,253,65,-0.5268087666481733],[114,253,66,-0.5254243705421686],[114,253,67,-0.5242562610656023],[114,253,68,-0.5233399346470833],[114,253,69,-0.5223471540957689],[114,253,70,-0.5212690830230713],[114,253,71,-0.5199416745454073],[114,253,72,-0.5180730791762471],[114,253,73,-0.5158300111070275],[114,253,74,-0.5137281464412808],[114,253,75,-0.5123609788715839],[114,253,76,-0.5115872910246253],[114,253,77,-0.5109740369953215],[114,253,78,-0.510067418217659],[114,253,79,-0.5087996376678348],[114,254,64,-0.5283950641751289],[114,254,65,-0.5268087666481733],[114,254,66,-0.5254243705421686],[114,254,67,-0.5242562610656023],[114,254,68,-0.5233399346470833],[114,254,69,-0.5223471540957689],[114,254,70,-0.5212690830230713],[114,254,71,-0.5199416745454073],[114,254,72,-0.5180730791762471],[114,254,73,-0.5158300111070275],[114,254,74,-0.5137281464412808],[114,254,75,-0.5123609788715839],[114,254,76,-0.5115872910246253],[114,254,77,-0.5109740369953215],[114,254,78,-0.510067418217659],[114,254,79,-0.5087996376678348],[114,255,64,-0.5283950641751289],[114,255,65,-0.5268087666481733],[114,255,66,-0.5254243705421686],[114,255,67,-0.5242562610656023],[114,255,68,-0.5233399346470833],[114,255,69,-0.5223471540957689],[114,255,70,-0.5212690830230713],[114,255,71,-0.5199416745454073],[114,255,72,-0.5180730791762471],[114,255,73,-0.5158300111070275],[114,255,74,-0.5137281464412808],[114,255,75,-0.5123609788715839],[114,255,76,-0.5115872910246253],[114,255,77,-0.5109740369953215],[114,255,78,-0.510067418217659],[114,255,79,-0.5087996376678348],[114,256,64,-0.5283950641751289],[114,256,65,-0.5268087666481733],[114,256,66,-0.5254243705421686],[114,256,67,-0.5242562610656023],[114,256,68,-0.5233399346470833],[114,256,69,-0.5223471540957689],[114,256,70,-0.5212690830230713],[114,256,71,-0.5199416745454073],[114,256,72,-0.5180730791762471],[114,256,73,-0.5158300111070275],[114,256,74,-0.5137281464412808],[114,256,75,-0.5123609788715839],[114,256,76,-0.5115872910246253],[114,256,77,-0.5109740369953215],[114,256,78,-0.510067418217659],[114,256,79,-0.5087996376678348],[114,257,64,-0.5283950641751289],[114,257,65,-0.5268087666481733],[114,257,66,-0.5254243705421686],[114,257,67,-0.5242562610656023],[114,257,68,-0.5233399346470833],[114,257,69,-0.5223471540957689],[114,257,70,-0.5212690830230713],[114,257,71,-0.5199416745454073],[114,257,72,-0.5180730791762471],[114,257,73,-0.5158300111070275],[114,257,74,-0.5137281464412808],[114,257,75,-0.5123609788715839],[114,257,76,-0.5115872910246253],[114,257,77,-0.5109740369953215],[114,257,78,-0.510067418217659],[114,257,79,-0.5087996376678348],[114,258,64,-0.5283950641751289],[114,258,65,-0.5268087666481733],[114,258,66,-0.5254243705421686],[114,258,67,-0.5242562610656023],[114,258,68,-0.5233399346470833],[114,258,69,-0.5223471540957689],[114,258,70,-0.5212690830230713],[114,258,71,-0.5199416745454073],[114,258,72,-0.5180730791762471],[114,258,73,-0.5158300111070275],[114,258,74,-0.5137281464412808],[114,258,75,-0.5123609788715839],[114,258,76,-0.5115872910246253],[114,258,77,-0.5109740369953215],[114,258,78,-0.510067418217659],[114,258,79,-0.5087996376678348],[114,259,64,-0.5283950641751289],[114,259,65,-0.5268087666481733],[114,259,66,-0.5254243705421686],[114,259,67,-0.5242562610656023],[114,259,68,-0.5233399346470833],[114,259,69,-0.5223471540957689],[114,259,70,-0.5212690830230713],[114,259,71,-0.5199416745454073],[114,259,72,-0.5180730791762471],[114,259,73,-0.5158300111070275],[114,259,74,-0.5137281464412808],[114,259,75,-0.5123609788715839],[114,259,76,-0.5115872910246253],[114,259,77,-0.5109740369953215],[114,259,78,-0.510067418217659],[114,259,79,-0.5087996376678348],[114,260,64,-0.5283950641751289],[114,260,65,-0.5268087666481733],[114,260,66,-0.5254243705421686],[114,260,67,-0.5242562610656023],[114,260,68,-0.5233399346470833],[114,260,69,-0.5223471540957689],[114,260,70,-0.5212690830230713],[114,260,71,-0.5199416745454073],[114,260,72,-0.5180730791762471],[114,260,73,-0.5158300111070275],[114,260,74,-0.5137281464412808],[114,260,75,-0.5123609788715839],[114,260,76,-0.5115872910246253],[114,260,77,-0.5109740369953215],[114,260,78,-0.510067418217659],[114,260,79,-0.5087996376678348],[114,261,64,-0.5283950641751289],[114,261,65,-0.5268087666481733],[114,261,66,-0.5254243705421686],[114,261,67,-0.5242562610656023],[114,261,68,-0.5233399346470833],[114,261,69,-0.5223471540957689],[114,261,70,-0.5212690830230713],[114,261,71,-0.5199416745454073],[114,261,72,-0.5180730791762471],[114,261,73,-0.5158300111070275],[114,261,74,-0.5137281464412808],[114,261,75,-0.5123609788715839],[114,261,76,-0.5115872910246253],[114,261,77,-0.5109740369953215],[114,261,78,-0.510067418217659],[114,261,79,-0.5087996376678348],[114,262,64,-0.5283950641751289],[114,262,65,-0.5268087666481733],[114,262,66,-0.5254243705421686],[114,262,67,-0.5242562610656023],[114,262,68,-0.5233399346470833],[114,262,69,-0.5223471540957689],[114,262,70,-0.5212690830230713],[114,262,71,-0.5199416745454073],[114,262,72,-0.5180730791762471],[114,262,73,-0.5158300111070275],[114,262,74,-0.5137281464412808],[114,262,75,-0.5123609788715839],[114,262,76,-0.5115872910246253],[114,262,77,-0.5109740369953215],[114,262,78,-0.510067418217659],[114,262,79,-0.5087996376678348],[114,263,64,-0.5283950641751289],[114,263,65,-0.5268087666481733],[114,263,66,-0.5254243705421686],[114,263,67,-0.5242562610656023],[114,263,68,-0.5233399346470833],[114,263,69,-0.5223471540957689],[114,263,70,-0.5212690830230713],[114,263,71,-0.5199416745454073],[114,263,72,-0.5180730791762471],[114,263,73,-0.5158300111070275],[114,263,74,-0.5137281464412808],[114,263,75,-0.5123609788715839],[114,263,76,-0.5115872910246253],[114,263,77,-0.5109740369953215],[114,263,78,-0.510067418217659],[114,263,79,-0.5087996376678348],[114,264,64,-0.5283950641751289],[114,264,65,-0.5268087666481733],[114,264,66,-0.5254243705421686],[114,264,67,-0.5242562610656023],[114,264,68,-0.5233399346470833],[114,264,69,-0.5223471540957689],[114,264,70,-0.5212690830230713],[114,264,71,-0.5199416745454073],[114,264,72,-0.5180730791762471],[114,264,73,-0.5158300111070275],[114,264,74,-0.5137281464412808],[114,264,75,-0.5123609788715839],[114,264,76,-0.5115872910246253],[114,264,77,-0.5109740369953215],[114,264,78,-0.510067418217659],[114,264,79,-0.5087996376678348],[114,265,64,-0.5283950641751289],[114,265,65,-0.5268087666481733],[114,265,66,-0.5254243705421686],[114,265,67,-0.5242562610656023],[114,265,68,-0.5233399346470833],[114,265,69,-0.5223471540957689],[114,265,70,-0.5212690830230713],[114,265,71,-0.5199416745454073],[114,265,72,-0.5180730791762471],[114,265,73,-0.5158300111070275],[114,265,74,-0.5137281464412808],[114,265,75,-0.5123609788715839],[114,265,76,-0.5115872910246253],[114,265,77,-0.5109740369953215],[114,265,78,-0.510067418217659],[114,265,79,-0.5087996376678348],[114,266,64,-0.5283950641751289],[114,266,65,-0.5268087666481733],[114,266,66,-0.5254243705421686],[114,266,67,-0.5242562610656023],[114,266,68,-0.5233399346470833],[114,266,69,-0.5223471540957689],[114,266,70,-0.5212690830230713],[114,266,71,-0.5199416745454073],[114,266,72,-0.5180730791762471],[114,266,73,-0.5158300111070275],[114,266,74,-0.5137281464412808],[114,266,75,-0.5123609788715839],[114,266,76,-0.5115872910246253],[114,266,77,-0.5109740369953215],[114,266,78,-0.510067418217659],[114,266,79,-0.5087996376678348],[114,267,64,-0.5283950641751289],[114,267,65,-0.5268087666481733],[114,267,66,-0.5254243705421686],[114,267,67,-0.5242562610656023],[114,267,68,-0.5233399346470833],[114,267,69,-0.5223471540957689],[114,267,70,-0.5212690830230713],[114,267,71,-0.5199416745454073],[114,267,72,-0.5180730791762471],[114,267,73,-0.5158300111070275],[114,267,74,-0.5137281464412808],[114,267,75,-0.5123609788715839],[114,267,76,-0.5115872910246253],[114,267,77,-0.5109740369953215],[114,267,78,-0.510067418217659],[114,267,79,-0.5087996376678348],[114,268,64,-0.5283950641751289],[114,268,65,-0.5268087666481733],[114,268,66,-0.5254243705421686],[114,268,67,-0.5242562610656023],[114,268,68,-0.5233399346470833],[114,268,69,-0.5223471540957689],[114,268,70,-0.5212690830230713],[114,268,71,-0.5199416745454073],[114,268,72,-0.5180730791762471],[114,268,73,-0.5158300111070275],[114,268,74,-0.5137281464412808],[114,268,75,-0.5123609788715839],[114,268,76,-0.5115872910246253],[114,268,77,-0.5109740369953215],[114,268,78,-0.510067418217659],[114,268,79,-0.5087996376678348],[114,269,64,-0.5283950641751289],[114,269,65,-0.5268087666481733],[114,269,66,-0.5254243705421686],[114,269,67,-0.5242562610656023],[114,269,68,-0.5233399346470833],[114,269,69,-0.5223471540957689],[114,269,70,-0.5212690830230713],[114,269,71,-0.5199416745454073],[114,269,72,-0.5180730791762471],[114,269,73,-0.5158300111070275],[114,269,74,-0.5137281464412808],[114,269,75,-0.5123609788715839],[114,269,76,-0.5115872910246253],[114,269,77,-0.5109740369953215],[114,269,78,-0.510067418217659],[114,269,79,-0.5087996376678348],[114,270,64,-0.5283950641751289],[114,270,65,-0.5268087666481733],[114,270,66,-0.5254243705421686],[114,270,67,-0.5242562610656023],[114,270,68,-0.5233399346470833],[114,270,69,-0.5223471540957689],[114,270,70,-0.5212690830230713],[114,270,71,-0.5199416745454073],[114,270,72,-0.5180730791762471],[114,270,73,-0.5158300111070275],[114,270,74,-0.5137281464412808],[114,270,75,-0.5123609788715839],[114,270,76,-0.5115872910246253],[114,270,77,-0.5109740369953215],[114,270,78,-0.510067418217659],[114,270,79,-0.5087996376678348],[114,271,64,-0.5283950641751289],[114,271,65,-0.5268087666481733],[114,271,66,-0.5254243705421686],[114,271,67,-0.5242562610656023],[114,271,68,-0.5233399346470833],[114,271,69,-0.5223471540957689],[114,271,70,-0.5212690830230713],[114,271,71,-0.5199416745454073],[114,271,72,-0.5180730791762471],[114,271,73,-0.5158300111070275],[114,271,74,-0.5137281464412808],[114,271,75,-0.5123609788715839],[114,271,76,-0.5115872910246253],[114,271,77,-0.5109740369953215],[114,271,78,-0.510067418217659],[114,271,79,-0.5087996376678348],[114,272,64,-0.5283950641751289],[114,272,65,-0.5268087666481733],[114,272,66,-0.5254243705421686],[114,272,67,-0.5242562610656023],[114,272,68,-0.5233399346470833],[114,272,69,-0.5223471540957689],[114,272,70,-0.5212690830230713],[114,272,71,-0.5199416745454073],[114,272,72,-0.5180730791762471],[114,272,73,-0.5158300111070275],[114,272,74,-0.5137281464412808],[114,272,75,-0.5123609788715839],[114,272,76,-0.5115872910246253],[114,272,77,-0.5109740369953215],[114,272,78,-0.510067418217659],[114,272,79,-0.5087996376678348],[114,273,64,-0.5283950641751289],[114,273,65,-0.5268087666481733],[114,273,66,-0.5254243705421686],[114,273,67,-0.5242562610656023],[114,273,68,-0.5233399346470833],[114,273,69,-0.5223471540957689],[114,273,70,-0.5212690830230713],[114,273,71,-0.5199416745454073],[114,273,72,-0.5180730791762471],[114,273,73,-0.5158300111070275],[114,273,74,-0.5137281464412808],[114,273,75,-0.5123609788715839],[114,273,76,-0.5115872910246253],[114,273,77,-0.5109740369953215],[114,273,78,-0.510067418217659],[114,273,79,-0.5087996376678348],[114,274,64,-0.5283950641751289],[114,274,65,-0.5268087666481733],[114,274,66,-0.5254243705421686],[114,274,67,-0.5242562610656023],[114,274,68,-0.5233399346470833],[114,274,69,-0.5223471540957689],[114,274,70,-0.5212690830230713],[114,274,71,-0.5199416745454073],[114,274,72,-0.5180730791762471],[114,274,73,-0.5158300111070275],[114,274,74,-0.5137281464412808],[114,274,75,-0.5123609788715839],[114,274,76,-0.5115872910246253],[114,274,77,-0.5109740369953215],[114,274,78,-0.510067418217659],[114,274,79,-0.5087996376678348],[114,275,64,-0.5283950641751289],[114,275,65,-0.5268087666481733],[114,275,66,-0.5254243705421686],[114,275,67,-0.5242562610656023],[114,275,68,-0.5233399346470833],[114,275,69,-0.5223471540957689],[114,275,70,-0.5212690830230713],[114,275,71,-0.5199416745454073],[114,275,72,-0.5180730791762471],[114,275,73,-0.5158300111070275],[114,275,74,-0.5137281464412808],[114,275,75,-0.5123609788715839],[114,275,76,-0.5115872910246253],[114,275,77,-0.5109740369953215],[114,275,78,-0.510067418217659],[114,275,79,-0.5087996376678348],[114,276,64,-0.5283950641751289],[114,276,65,-0.5268087666481733],[114,276,66,-0.5254243705421686],[114,276,67,-0.5242562610656023],[114,276,68,-0.5233399346470833],[114,276,69,-0.5223471540957689],[114,276,70,-0.5212690830230713],[114,276,71,-0.5199416745454073],[114,276,72,-0.5180730791762471],[114,276,73,-0.5158300111070275],[114,276,74,-0.5137281464412808],[114,276,75,-0.5123609788715839],[114,276,76,-0.5115872910246253],[114,276,77,-0.5109740369953215],[114,276,78,-0.510067418217659],[114,276,79,-0.5087996376678348],[114,277,64,-0.5283950641751289],[114,277,65,-0.5268087666481733],[114,277,66,-0.5254243705421686],[114,277,67,-0.5242562610656023],[114,277,68,-0.5233399346470833],[114,277,69,-0.5223471540957689],[114,277,70,-0.5212690830230713],[114,277,71,-0.5199416745454073],[114,277,72,-0.5180730791762471],[114,277,73,-0.5158300111070275],[114,277,74,-0.5137281464412808],[114,277,75,-0.5123609788715839],[114,277,76,-0.5115872910246253],[114,277,77,-0.5109740369953215],[114,277,78,-0.510067418217659],[114,277,79,-0.5087996376678348],[114,278,64,-0.5283950641751289],[114,278,65,-0.5268087666481733],[114,278,66,-0.5254243705421686],[114,278,67,-0.5242562610656023],[114,278,68,-0.5233399346470833],[114,278,69,-0.5223471540957689],[114,278,70,-0.5212690830230713],[114,278,71,-0.5199416745454073],[114,278,72,-0.5180730791762471],[114,278,73,-0.5158300111070275],[114,278,74,-0.5137281464412808],[114,278,75,-0.5123609788715839],[114,278,76,-0.5115872910246253],[114,278,77,-0.5109740369953215],[114,278,78,-0.510067418217659],[114,278,79,-0.5087996376678348],[114,279,64,-0.5283950641751289],[114,279,65,-0.5268087666481733],[114,279,66,-0.5254243705421686],[114,279,67,-0.5242562610656023],[114,279,68,-0.5233399346470833],[114,279,69,-0.5223471540957689],[114,279,70,-0.5212690830230713],[114,279,71,-0.5199416745454073],[114,279,72,-0.5180730791762471],[114,279,73,-0.5158300111070275],[114,279,74,-0.5137281464412808],[114,279,75,-0.5123609788715839],[114,279,76,-0.5115872910246253],[114,279,77,-0.5109740369953215],[114,279,78,-0.510067418217659],[114,279,79,-0.5087996376678348],[114,280,64,-0.5283950641751289],[114,280,65,-0.5268087666481733],[114,280,66,-0.5254243705421686],[114,280,67,-0.5242562610656023],[114,280,68,-0.5233399346470833],[114,280,69,-0.5223471540957689],[114,280,70,-0.5212690830230713],[114,280,71,-0.5199416745454073],[114,280,72,-0.5180730791762471],[114,280,73,-0.5158300111070275],[114,280,74,-0.5137281464412808],[114,280,75,-0.5123609788715839],[114,280,76,-0.5115872910246253],[114,280,77,-0.5109740369953215],[114,280,78,-0.510067418217659],[114,280,79,-0.5087996376678348],[114,281,64,-0.5283950641751289],[114,281,65,-0.5268087666481733],[114,281,66,-0.5254243705421686],[114,281,67,-0.5242562610656023],[114,281,68,-0.5233399346470833],[114,281,69,-0.5223471540957689],[114,281,70,-0.5212690830230713],[114,281,71,-0.5199416745454073],[114,281,72,-0.5180730791762471],[114,281,73,-0.5158300111070275],[114,281,74,-0.5137281464412808],[114,281,75,-0.5123609788715839],[114,281,76,-0.5115872910246253],[114,281,77,-0.5109740369953215],[114,281,78,-0.510067418217659],[114,281,79,-0.5087996376678348],[114,282,64,-0.5283950641751289],[114,282,65,-0.5268087666481733],[114,282,66,-0.5254243705421686],[114,282,67,-0.5242562610656023],[114,282,68,-0.5233399346470833],[114,282,69,-0.5223471540957689],[114,282,70,-0.5212690830230713],[114,282,71,-0.5199416745454073],[114,282,72,-0.5180730791762471],[114,282,73,-0.5158300111070275],[114,282,74,-0.5137281464412808],[114,282,75,-0.5123609788715839],[114,282,76,-0.5115872910246253],[114,282,77,-0.5109740369953215],[114,282,78,-0.510067418217659],[114,282,79,-0.5087996376678348],[114,283,64,-0.5283950641751289],[114,283,65,-0.5268087666481733],[114,283,66,-0.5254243705421686],[114,283,67,-0.5242562610656023],[114,283,68,-0.5233399346470833],[114,283,69,-0.5223471540957689],[114,283,70,-0.5212690830230713],[114,283,71,-0.5199416745454073],[114,283,72,-0.5180730791762471],[114,283,73,-0.5158300111070275],[114,283,74,-0.5137281464412808],[114,283,75,-0.5123609788715839],[114,283,76,-0.5115872910246253],[114,283,77,-0.5109740369953215],[114,283,78,-0.510067418217659],[114,283,79,-0.5087996376678348],[114,284,64,-0.5283950641751289],[114,284,65,-0.5268087666481733],[114,284,66,-0.5254243705421686],[114,284,67,-0.5242562610656023],[114,284,68,-0.5233399346470833],[114,284,69,-0.5223471540957689],[114,284,70,-0.5212690830230713],[114,284,71,-0.5199416745454073],[114,284,72,-0.5180730791762471],[114,284,73,-0.5158300111070275],[114,284,74,-0.5137281464412808],[114,284,75,-0.5123609788715839],[114,284,76,-0.5115872910246253],[114,284,77,-0.5109740369953215],[114,284,78,-0.510067418217659],[114,284,79,-0.5087996376678348],[114,285,64,-0.5283950641751289],[114,285,65,-0.5268087666481733],[114,285,66,-0.5254243705421686],[114,285,67,-0.5242562610656023],[114,285,68,-0.5233399346470833],[114,285,69,-0.5223471540957689],[114,285,70,-0.5212690830230713],[114,285,71,-0.5199416745454073],[114,285,72,-0.5180730791762471],[114,285,73,-0.5158300111070275],[114,285,74,-0.5137281464412808],[114,285,75,-0.5123609788715839],[114,285,76,-0.5115872910246253],[114,285,77,-0.5109740369953215],[114,285,78,-0.510067418217659],[114,285,79,-0.5087996376678348],[114,286,64,-0.5283950641751289],[114,286,65,-0.5268087666481733],[114,286,66,-0.5254243705421686],[114,286,67,-0.5242562610656023],[114,286,68,-0.5233399346470833],[114,286,69,-0.5223471540957689],[114,286,70,-0.5212690830230713],[114,286,71,-0.5199416745454073],[114,286,72,-0.5180730791762471],[114,286,73,-0.5158300111070275],[114,286,74,-0.5137281464412808],[114,286,75,-0.5123609788715839],[114,286,76,-0.5115872910246253],[114,286,77,-0.5109740369953215],[114,286,78,-0.510067418217659],[114,286,79,-0.5087996376678348],[114,287,64,-0.5283950641751289],[114,287,65,-0.5268087666481733],[114,287,66,-0.5254243705421686],[114,287,67,-0.5242562610656023],[114,287,68,-0.5233399346470833],[114,287,69,-0.5223471540957689],[114,287,70,-0.5212690830230713],[114,287,71,-0.5199416745454073],[114,287,72,-0.5180730791762471],[114,287,73,-0.5158300111070275],[114,287,74,-0.5137281464412808],[114,287,75,-0.5123609788715839],[114,287,76,-0.5115872910246253],[114,287,77,-0.5109740369953215],[114,287,78,-0.510067418217659],[114,287,79,-0.5087996376678348],[114,288,64,-0.5283950641751289],[114,288,65,-0.5268087666481733],[114,288,66,-0.5254243705421686],[114,288,67,-0.5242562610656023],[114,288,68,-0.5233399346470833],[114,288,69,-0.5223471540957689],[114,288,70,-0.5212690830230713],[114,288,71,-0.5199416745454073],[114,288,72,-0.5180730791762471],[114,288,73,-0.5158300111070275],[114,288,74,-0.5137281464412808],[114,288,75,-0.5123609788715839],[114,288,76,-0.5115872910246253],[114,288,77,-0.5109740369953215],[114,288,78,-0.510067418217659],[114,288,79,-0.5087996376678348],[114,289,64,-0.5283950641751289],[114,289,65,-0.5268087666481733],[114,289,66,-0.5254243705421686],[114,289,67,-0.5242562610656023],[114,289,68,-0.5233399346470833],[114,289,69,-0.5223471540957689],[114,289,70,-0.5212690830230713],[114,289,71,-0.5199416745454073],[114,289,72,-0.5180730791762471],[114,289,73,-0.5158300111070275],[114,289,74,-0.5137281464412808],[114,289,75,-0.5123609788715839],[114,289,76,-0.5115872910246253],[114,289,77,-0.5109740369953215],[114,289,78,-0.510067418217659],[114,289,79,-0.5087996376678348],[114,290,64,-0.5283950641751289],[114,290,65,-0.5268087666481733],[114,290,66,-0.5254243705421686],[114,290,67,-0.5242562610656023],[114,290,68,-0.5233399346470833],[114,290,69,-0.5223471540957689],[114,290,70,-0.5212690830230713],[114,290,71,-0.5199416745454073],[114,290,72,-0.5180730791762471],[114,290,73,-0.5158300111070275],[114,290,74,-0.5137281464412808],[114,290,75,-0.5123609788715839],[114,290,76,-0.5115872910246253],[114,290,77,-0.5109740369953215],[114,290,78,-0.510067418217659],[114,290,79,-0.5087996376678348],[114,291,64,-0.5283950641751289],[114,291,65,-0.5268087666481733],[114,291,66,-0.5254243705421686],[114,291,67,-0.5242562610656023],[114,291,68,-0.5233399346470833],[114,291,69,-0.5223471540957689],[114,291,70,-0.5212690830230713],[114,291,71,-0.5199416745454073],[114,291,72,-0.5180730791762471],[114,291,73,-0.5158300111070275],[114,291,74,-0.5137281464412808],[114,291,75,-0.5123609788715839],[114,291,76,-0.5115872910246253],[114,291,77,-0.5109740369953215],[114,291,78,-0.510067418217659],[114,291,79,-0.5087996376678348],[114,292,64,-0.5283950641751289],[114,292,65,-0.5268087666481733],[114,292,66,-0.5254243705421686],[114,292,67,-0.5242562610656023],[114,292,68,-0.5233399346470833],[114,292,69,-0.5223471540957689],[114,292,70,-0.5212690830230713],[114,292,71,-0.5199416745454073],[114,292,72,-0.5180730791762471],[114,292,73,-0.5158300111070275],[114,292,74,-0.5137281464412808],[114,292,75,-0.5123609788715839],[114,292,76,-0.5115872910246253],[114,292,77,-0.5109740369953215],[114,292,78,-0.510067418217659],[114,292,79,-0.5087996376678348],[114,293,64,-0.5283950641751289],[114,293,65,-0.5268087666481733],[114,293,66,-0.5254243705421686],[114,293,67,-0.5242562610656023],[114,293,68,-0.5233399346470833],[114,293,69,-0.5223471540957689],[114,293,70,-0.5212690830230713],[114,293,71,-0.5199416745454073],[114,293,72,-0.5180730791762471],[114,293,73,-0.5158300111070275],[114,293,74,-0.5137281464412808],[114,293,75,-0.5123609788715839],[114,293,76,-0.5115872910246253],[114,293,77,-0.5109740369953215],[114,293,78,-0.510067418217659],[114,293,79,-0.5087996376678348],[114,294,64,-0.5283950641751289],[114,294,65,-0.5268087666481733],[114,294,66,-0.5254243705421686],[114,294,67,-0.5242562610656023],[114,294,68,-0.5233399346470833],[114,294,69,-0.5223471540957689],[114,294,70,-0.5212690830230713],[114,294,71,-0.5199416745454073],[114,294,72,-0.5180730791762471],[114,294,73,-0.5158300111070275],[114,294,74,-0.5137281464412808],[114,294,75,-0.5123609788715839],[114,294,76,-0.5115872910246253],[114,294,77,-0.5109740369953215],[114,294,78,-0.510067418217659],[114,294,79,-0.5087996376678348],[114,295,64,-0.5283950641751289],[114,295,65,-0.5268087666481733],[114,295,66,-0.5254243705421686],[114,295,67,-0.5242562610656023],[114,295,68,-0.5233399346470833],[114,295,69,-0.5223471540957689],[114,295,70,-0.5212690830230713],[114,295,71,-0.5199416745454073],[114,295,72,-0.5180730791762471],[114,295,73,-0.5158300111070275],[114,295,74,-0.5137281464412808],[114,295,75,-0.5123609788715839],[114,295,76,-0.5115872910246253],[114,295,77,-0.5109740369953215],[114,295,78,-0.510067418217659],[114,295,79,-0.5087996376678348],[114,296,64,-0.5283950641751289],[114,296,65,-0.5268087666481733],[114,296,66,-0.5254243705421686],[114,296,67,-0.5242562610656023],[114,296,68,-0.5233399346470833],[114,296,69,-0.5223471540957689],[114,296,70,-0.5212690830230713],[114,296,71,-0.5199416745454073],[114,296,72,-0.5180730791762471],[114,296,73,-0.5158300111070275],[114,296,74,-0.5137281464412808],[114,296,75,-0.5123609788715839],[114,296,76,-0.5115872910246253],[114,296,77,-0.5109740369953215],[114,296,78,-0.510067418217659],[114,296,79,-0.5087996376678348],[114,297,64,-0.5283950641751289],[114,297,65,-0.5268087666481733],[114,297,66,-0.5254243705421686],[114,297,67,-0.5242562610656023],[114,297,68,-0.5233399346470833],[114,297,69,-0.5223471540957689],[114,297,70,-0.5212690830230713],[114,297,71,-0.5199416745454073],[114,297,72,-0.5180730791762471],[114,297,73,-0.5158300111070275],[114,297,74,-0.5137281464412808],[114,297,75,-0.5123609788715839],[114,297,76,-0.5115872910246253],[114,297,77,-0.5109740369953215],[114,297,78,-0.510067418217659],[114,297,79,-0.5087996376678348],[114,298,64,-0.5283950641751289],[114,298,65,-0.5268087666481733],[114,298,66,-0.5254243705421686],[114,298,67,-0.5242562610656023],[114,298,68,-0.5233399346470833],[114,298,69,-0.5223471540957689],[114,298,70,-0.5212690830230713],[114,298,71,-0.5199416745454073],[114,298,72,-0.5180730791762471],[114,298,73,-0.5158300111070275],[114,298,74,-0.5137281464412808],[114,298,75,-0.5123609788715839],[114,298,76,-0.5115872910246253],[114,298,77,-0.5109740369953215],[114,298,78,-0.510067418217659],[114,298,79,-0.5087996376678348],[114,299,64,-0.5283950641751289],[114,299,65,-0.5268087666481733],[114,299,66,-0.5254243705421686],[114,299,67,-0.5242562610656023],[114,299,68,-0.5233399346470833],[114,299,69,-0.5223471540957689],[114,299,70,-0.5212690830230713],[114,299,71,-0.5199416745454073],[114,299,72,-0.5180730791762471],[114,299,73,-0.5158300111070275],[114,299,74,-0.5137281464412808],[114,299,75,-0.5123609788715839],[114,299,76,-0.5115872910246253],[114,299,77,-0.5109740369953215],[114,299,78,-0.510067418217659],[114,299,79,-0.5087996376678348],[114,300,64,-0.5283950641751289],[114,300,65,-0.5268087666481733],[114,300,66,-0.5254243705421686],[114,300,67,-0.5242562610656023],[114,300,68,-0.5233399346470833],[114,300,69,-0.5223471540957689],[114,300,70,-0.5212690830230713],[114,300,71,-0.5199416745454073],[114,300,72,-0.5180730791762471],[114,300,73,-0.5158300111070275],[114,300,74,-0.5137281464412808],[114,300,75,-0.5123609788715839],[114,300,76,-0.5115872910246253],[114,300,77,-0.5109740369953215],[114,300,78,-0.510067418217659],[114,300,79,-0.5087996376678348],[114,301,64,-0.5283950641751289],[114,301,65,-0.5268087666481733],[114,301,66,-0.5254243705421686],[114,301,67,-0.5242562610656023],[114,301,68,-0.5233399346470833],[114,301,69,-0.5223471540957689],[114,301,70,-0.5212690830230713],[114,301,71,-0.5199416745454073],[114,301,72,-0.5180730791762471],[114,301,73,-0.5158300111070275],[114,301,74,-0.5137281464412808],[114,301,75,-0.5123609788715839],[114,301,76,-0.5115872910246253],[114,301,77,-0.5109740369953215],[114,301,78,-0.510067418217659],[114,301,79,-0.5087996376678348],[114,302,64,-0.5283950641751289],[114,302,65,-0.5268087666481733],[114,302,66,-0.5254243705421686],[114,302,67,-0.5242562610656023],[114,302,68,-0.5233399346470833],[114,302,69,-0.5223471540957689],[114,302,70,-0.5212690830230713],[114,302,71,-0.5199416745454073],[114,302,72,-0.5180730791762471],[114,302,73,-0.5158300111070275],[114,302,74,-0.5137281464412808],[114,302,75,-0.5123609788715839],[114,302,76,-0.5115872910246253],[114,302,77,-0.5109740369953215],[114,302,78,-0.510067418217659],[114,302,79,-0.5087996376678348],[114,303,64,-0.5283950641751289],[114,303,65,-0.5268087666481733],[114,303,66,-0.5254243705421686],[114,303,67,-0.5242562610656023],[114,303,68,-0.5233399346470833],[114,303,69,-0.5223471540957689],[114,303,70,-0.5212690830230713],[114,303,71,-0.5199416745454073],[114,303,72,-0.5180730791762471],[114,303,73,-0.5158300111070275],[114,303,74,-0.5137281464412808],[114,303,75,-0.5123609788715839],[114,303,76,-0.5115872910246253],[114,303,77,-0.5109740369953215],[114,303,78,-0.510067418217659],[114,303,79,-0.5087996376678348],[114,304,64,-0.5283950641751289],[114,304,65,-0.5268087666481733],[114,304,66,-0.5254243705421686],[114,304,67,-0.5242562610656023],[114,304,68,-0.5233399346470833],[114,304,69,-0.5223471540957689],[114,304,70,-0.5212690830230713],[114,304,71,-0.5199416745454073],[114,304,72,-0.5180730791762471],[114,304,73,-0.5158300111070275],[114,304,74,-0.5137281464412808],[114,304,75,-0.5123609788715839],[114,304,76,-0.5115872910246253],[114,304,77,-0.5109740369953215],[114,304,78,-0.510067418217659],[114,304,79,-0.5087996376678348],[114,305,64,-0.5283950641751289],[114,305,65,-0.5268087666481733],[114,305,66,-0.5254243705421686],[114,305,67,-0.5242562610656023],[114,305,68,-0.5233399346470833],[114,305,69,-0.5223471540957689],[114,305,70,-0.5212690830230713],[114,305,71,-0.5199416745454073],[114,305,72,-0.5180730791762471],[114,305,73,-0.5158300111070275],[114,305,74,-0.5137281464412808],[114,305,75,-0.5123609788715839],[114,305,76,-0.5115872910246253],[114,305,77,-0.5109740369953215],[114,305,78,-0.510067418217659],[114,305,79,-0.5087996376678348],[114,306,64,-0.5283950641751289],[114,306,65,-0.5268087666481733],[114,306,66,-0.5254243705421686],[114,306,67,-0.5242562610656023],[114,306,68,-0.5233399346470833],[114,306,69,-0.5223471540957689],[114,306,70,-0.5212690830230713],[114,306,71,-0.5199416745454073],[114,306,72,-0.5180730791762471],[114,306,73,-0.5158300111070275],[114,306,74,-0.5137281464412808],[114,306,75,-0.5123609788715839],[114,306,76,-0.5115872910246253],[114,306,77,-0.5109740369953215],[114,306,78,-0.510067418217659],[114,306,79,-0.5087996376678348],[114,307,64,-0.5283950641751289],[114,307,65,-0.5268087666481733],[114,307,66,-0.5254243705421686],[114,307,67,-0.5242562610656023],[114,307,68,-0.5233399346470833],[114,307,69,-0.5223471540957689],[114,307,70,-0.5212690830230713],[114,307,71,-0.5199416745454073],[114,307,72,-0.5180730791762471],[114,307,73,-0.5158300111070275],[114,307,74,-0.5137281464412808],[114,307,75,-0.5123609788715839],[114,307,76,-0.5115872910246253],[114,307,77,-0.5109740369953215],[114,307,78,-0.510067418217659],[114,307,79,-0.5087996376678348],[114,308,64,-0.5283950641751289],[114,308,65,-0.5268087666481733],[114,308,66,-0.5254243705421686],[114,308,67,-0.5242562610656023],[114,308,68,-0.5233399346470833],[114,308,69,-0.5223471540957689],[114,308,70,-0.5212690830230713],[114,308,71,-0.5199416745454073],[114,308,72,-0.5180730791762471],[114,308,73,-0.5158300111070275],[114,308,74,-0.5137281464412808],[114,308,75,-0.5123609788715839],[114,308,76,-0.5115872910246253],[114,308,77,-0.5109740369953215],[114,308,78,-0.510067418217659],[114,308,79,-0.5087996376678348],[114,309,64,-0.5283950641751289],[114,309,65,-0.5268087666481733],[114,309,66,-0.5254243705421686],[114,309,67,-0.5242562610656023],[114,309,68,-0.5233399346470833],[114,309,69,-0.5223471540957689],[114,309,70,-0.5212690830230713],[114,309,71,-0.5199416745454073],[114,309,72,-0.5180730791762471],[114,309,73,-0.5158300111070275],[114,309,74,-0.5137281464412808],[114,309,75,-0.5123609788715839],[114,309,76,-0.5115872910246253],[114,309,77,-0.5109740369953215],[114,309,78,-0.510067418217659],[114,309,79,-0.5087996376678348],[114,310,64,-0.5283950641751289],[114,310,65,-0.5268087666481733],[114,310,66,-0.5254243705421686],[114,310,67,-0.5242562610656023],[114,310,68,-0.5233399346470833],[114,310,69,-0.5223471540957689],[114,310,70,-0.5212690830230713],[114,310,71,-0.5199416745454073],[114,310,72,-0.5180730791762471],[114,310,73,-0.5158300111070275],[114,310,74,-0.5137281464412808],[114,310,75,-0.5123609788715839],[114,310,76,-0.5115872910246253],[114,310,77,-0.5109740369953215],[114,310,78,-0.510067418217659],[114,310,79,-0.5087996376678348],[114,311,64,-0.5283950641751289],[114,311,65,-0.5268087666481733],[114,311,66,-0.5254243705421686],[114,311,67,-0.5242562610656023],[114,311,68,-0.5233399346470833],[114,311,69,-0.5223471540957689],[114,311,70,-0.5212690830230713],[114,311,71,-0.5199416745454073],[114,311,72,-0.5180730791762471],[114,311,73,-0.5158300111070275],[114,311,74,-0.5137281464412808],[114,311,75,-0.5123609788715839],[114,311,76,-0.5115872910246253],[114,311,77,-0.5109740369953215],[114,311,78,-0.510067418217659],[114,311,79,-0.5087996376678348],[114,312,64,-0.5283950641751289],[114,312,65,-0.5268087666481733],[114,312,66,-0.5254243705421686],[114,312,67,-0.5242562610656023],[114,312,68,-0.5233399346470833],[114,312,69,-0.5223471540957689],[114,312,70,-0.5212690830230713],[114,312,71,-0.5199416745454073],[114,312,72,-0.5180730791762471],[114,312,73,-0.5158300111070275],[114,312,74,-0.5137281464412808],[114,312,75,-0.5123609788715839],[114,312,76,-0.5115872910246253],[114,312,77,-0.5109740369953215],[114,312,78,-0.510067418217659],[114,312,79,-0.5087996376678348],[114,313,64,-0.5283950641751289],[114,313,65,-0.5268087666481733],[114,313,66,-0.5254243705421686],[114,313,67,-0.5242562610656023],[114,313,68,-0.5233399346470833],[114,313,69,-0.5223471540957689],[114,313,70,-0.5212690830230713],[114,313,71,-0.5199416745454073],[114,313,72,-0.5180730791762471],[114,313,73,-0.5158300111070275],[114,313,74,-0.5137281464412808],[114,313,75,-0.5123609788715839],[114,313,76,-0.5115872910246253],[114,313,77,-0.5109740369953215],[114,313,78,-0.510067418217659],[114,313,79,-0.5087996376678348],[114,314,64,-0.5283950641751289],[114,314,65,-0.5268087666481733],[114,314,66,-0.5254243705421686],[114,314,67,-0.5242562610656023],[114,314,68,-0.5233399346470833],[114,314,69,-0.5223471540957689],[114,314,70,-0.5212690830230713],[114,314,71,-0.5199416745454073],[114,314,72,-0.5180730791762471],[114,314,73,-0.5158300111070275],[114,314,74,-0.5137281464412808],[114,314,75,-0.5123609788715839],[114,314,76,-0.5115872910246253],[114,314,77,-0.5109740369953215],[114,314,78,-0.510067418217659],[114,314,79,-0.5087996376678348],[114,315,64,-0.5283950641751289],[114,315,65,-0.5268087666481733],[114,315,66,-0.5254243705421686],[114,315,67,-0.5242562610656023],[114,315,68,-0.5233399346470833],[114,315,69,-0.5223471540957689],[114,315,70,-0.5212690830230713],[114,315,71,-0.5199416745454073],[114,315,72,-0.5180730791762471],[114,315,73,-0.5158300111070275],[114,315,74,-0.5137281464412808],[114,315,75,-0.5123609788715839],[114,315,76,-0.5115872910246253],[114,315,77,-0.5109740369953215],[114,315,78,-0.510067418217659],[114,315,79,-0.5087996376678348],[114,316,64,-0.5283950641751289],[114,316,65,-0.5268087666481733],[114,316,66,-0.5254243705421686],[114,316,67,-0.5242562610656023],[114,316,68,-0.5233399346470833],[114,316,69,-0.5223471540957689],[114,316,70,-0.5212690830230713],[114,316,71,-0.5199416745454073],[114,316,72,-0.5180730791762471],[114,316,73,-0.5158300111070275],[114,316,74,-0.5137281464412808],[114,316,75,-0.5123609788715839],[114,316,76,-0.5115872910246253],[114,316,77,-0.5109740369953215],[114,316,78,-0.510067418217659],[114,316,79,-0.5087996376678348],[114,317,64,-0.5283950641751289],[114,317,65,-0.5268087666481733],[114,317,66,-0.5254243705421686],[114,317,67,-0.5242562610656023],[114,317,68,-0.5233399346470833],[114,317,69,-0.5223471540957689],[114,317,70,-0.5212690830230713],[114,317,71,-0.5199416745454073],[114,317,72,-0.5180730791762471],[114,317,73,-0.5158300111070275],[114,317,74,-0.5137281464412808],[114,317,75,-0.5123609788715839],[114,317,76,-0.5115872910246253],[114,317,77,-0.5109740369953215],[114,317,78,-0.510067418217659],[114,317,79,-0.5087996376678348],[114,318,64,-0.5283950641751289],[114,318,65,-0.5268087666481733],[114,318,66,-0.5254243705421686],[114,318,67,-0.5242562610656023],[114,318,68,-0.5233399346470833],[114,318,69,-0.5223471540957689],[114,318,70,-0.5212690830230713],[114,318,71,-0.5199416745454073],[114,318,72,-0.5180730791762471],[114,318,73,-0.5158300111070275],[114,318,74,-0.5137281464412808],[114,318,75,-0.5123609788715839],[114,318,76,-0.5115872910246253],[114,318,77,-0.5109740369953215],[114,318,78,-0.510067418217659],[114,318,79,-0.5087996376678348],[114,319,64,-0.5283950641751289],[114,319,65,-0.5268087666481733],[114,319,66,-0.5254243705421686],[114,319,67,-0.5242562610656023],[114,319,68,-0.5233399346470833],[114,319,69,-0.5223471540957689],[114,319,70,-0.5212690830230713],[114,319,71,-0.5199416745454073],[114,319,72,-0.5180730791762471],[114,319,73,-0.5158300111070275],[114,319,74,-0.5137281464412808],[114,319,75,-0.5123609788715839],[114,319,76,-0.5115872910246253],[114,319,77,-0.5109740369953215],[114,319,78,-0.510067418217659],[114,319,79,-0.5087996376678348],[115,-64,64,-0.532755671069026],[115,-64,65,-0.5314468089491129],[115,-64,66,-0.530003672465682],[115,-64,67,-0.5285049434751272],[115,-64,68,-0.5272261556237936],[115,-64,69,-0.5260342918336391],[115,-64,70,-0.5249284580349922],[115,-64,71,-0.5235806312412024],[115,-64,72,-0.5217186473309994],[115,-64,73,-0.5196252521127462],[115,-64,74,-0.5176558569073677],[115,-64,75,-0.5162321664392948],[115,-64,76,-0.515502898953855],[115,-64,77,-0.5150719676166773],[115,-64,78,-0.5142765641212463],[115,-64,79,-0.5129700470715761],[115,-63,64,-0.532755671069026],[115,-63,65,-0.5314468089491129],[115,-63,66,-0.530003672465682],[115,-63,67,-0.5285049434751272],[115,-63,68,-0.5272261556237936],[115,-63,69,-0.5260342918336391],[115,-63,70,-0.5249284580349922],[115,-63,71,-0.5235806312412024],[115,-63,72,-0.5217186473309994],[115,-63,73,-0.5196252521127462],[115,-63,74,-0.5176558569073677],[115,-63,75,-0.5162321664392948],[115,-63,76,-0.515502898953855],[115,-63,77,-0.5150719676166773],[115,-63,78,-0.5142765641212463],[115,-63,79,-0.5129700470715761],[115,-62,64,-0.532755671069026],[115,-62,65,-0.5314468089491129],[115,-62,66,-0.530003672465682],[115,-62,67,-0.5285049434751272],[115,-62,68,-0.5272261556237936],[115,-62,69,-0.5260342918336391],[115,-62,70,-0.5249284580349922],[115,-62,71,-0.5235806312412024],[115,-62,72,-0.5217186473309994],[115,-62,73,-0.5196252521127462],[115,-62,74,-0.5176558569073677],[115,-62,75,-0.5162321664392948],[115,-62,76,-0.515502898953855],[115,-62,77,-0.5150719676166773],[115,-62,78,-0.5142765641212463],[115,-62,79,-0.5129700470715761],[115,-61,64,-0.532755671069026],[115,-61,65,-0.5314468089491129],[115,-61,66,-0.530003672465682],[115,-61,67,-0.5285049434751272],[115,-61,68,-0.5272261556237936],[115,-61,69,-0.5260342918336391],[115,-61,70,-0.5249284580349922],[115,-61,71,-0.5235806312412024],[115,-61,72,-0.5217186473309994],[115,-61,73,-0.5196252521127462],[115,-61,74,-0.5176558569073677],[115,-61,75,-0.5162321664392948],[115,-61,76,-0.515502898953855],[115,-61,77,-0.5150719676166773],[115,-61,78,-0.5142765641212463],[115,-61,79,-0.5129700470715761],[115,-60,64,-0.532755671069026],[115,-60,65,-0.5314468089491129],[115,-60,66,-0.530003672465682],[115,-60,67,-0.5285049434751272],[115,-60,68,-0.5272261556237936],[115,-60,69,-0.5260342918336391],[115,-60,70,-0.5249284580349922],[115,-60,71,-0.5235806312412024],[115,-60,72,-0.5217186473309994],[115,-60,73,-0.5196252521127462],[115,-60,74,-0.5176558569073677],[115,-60,75,-0.5162321664392948],[115,-60,76,-0.515502898953855],[115,-60,77,-0.5150719676166773],[115,-60,78,-0.5142765641212463],[115,-60,79,-0.5129700470715761],[115,-59,64,-0.532755671069026],[115,-59,65,-0.5314468089491129],[115,-59,66,-0.530003672465682],[115,-59,67,-0.5285049434751272],[115,-59,68,-0.5272261556237936],[115,-59,69,-0.5260342918336391],[115,-59,70,-0.5249284580349922],[115,-59,71,-0.5235806312412024],[115,-59,72,-0.5217186473309994],[115,-59,73,-0.5196252521127462],[115,-59,74,-0.5176558569073677],[115,-59,75,-0.5162321664392948],[115,-59,76,-0.515502898953855],[115,-59,77,-0.5150719676166773],[115,-59,78,-0.5142765641212463],[115,-59,79,-0.5129700470715761],[115,-58,64,-0.532755671069026],[115,-58,65,-0.5314468089491129],[115,-58,66,-0.530003672465682],[115,-58,67,-0.5285049434751272],[115,-58,68,-0.5272261556237936],[115,-58,69,-0.5260342918336391],[115,-58,70,-0.5249284580349922],[115,-58,71,-0.5235806312412024],[115,-58,72,-0.5217186473309994],[115,-58,73,-0.5196252521127462],[115,-58,74,-0.5176558569073677],[115,-58,75,-0.5162321664392948],[115,-58,76,-0.515502898953855],[115,-58,77,-0.5150719676166773],[115,-58,78,-0.5142765641212463],[115,-58,79,-0.5129700470715761],[115,-57,64,-0.532755671069026],[115,-57,65,-0.5314468089491129],[115,-57,66,-0.530003672465682],[115,-57,67,-0.5285049434751272],[115,-57,68,-0.5272261556237936],[115,-57,69,-0.5260342918336391],[115,-57,70,-0.5249284580349922],[115,-57,71,-0.5235806312412024],[115,-57,72,-0.5217186473309994],[115,-57,73,-0.5196252521127462],[115,-57,74,-0.5176558569073677],[115,-57,75,-0.5162321664392948],[115,-57,76,-0.515502898953855],[115,-57,77,-0.5150719676166773],[115,-57,78,-0.5142765641212463],[115,-57,79,-0.5129700470715761],[115,-56,64,-0.532755671069026],[115,-56,65,-0.5314468089491129],[115,-56,66,-0.530003672465682],[115,-56,67,-0.5285049434751272],[115,-56,68,-0.5272261556237936],[115,-56,69,-0.5260342918336391],[115,-56,70,-0.5249284580349922],[115,-56,71,-0.5235806312412024],[115,-56,72,-0.5217186473309994],[115,-56,73,-0.5196252521127462],[115,-56,74,-0.5176558569073677],[115,-56,75,-0.5162321664392948],[115,-56,76,-0.515502898953855],[115,-56,77,-0.5150719676166773],[115,-56,78,-0.5142765641212463],[115,-56,79,-0.5129700470715761],[115,-55,64,-0.532755671069026],[115,-55,65,-0.5314468089491129],[115,-55,66,-0.530003672465682],[115,-55,67,-0.5285049434751272],[115,-55,68,-0.5272261556237936],[115,-55,69,-0.5260342918336391],[115,-55,70,-0.5249284580349922],[115,-55,71,-0.5235806312412024],[115,-55,72,-0.5217186473309994],[115,-55,73,-0.5196252521127462],[115,-55,74,-0.5176558569073677],[115,-55,75,-0.5162321664392948],[115,-55,76,-0.515502898953855],[115,-55,77,-0.5150719676166773],[115,-55,78,-0.5142765641212463],[115,-55,79,-0.5129700470715761],[115,-54,64,-0.532755671069026],[115,-54,65,-0.5314468089491129],[115,-54,66,-0.530003672465682],[115,-54,67,-0.5285049434751272],[115,-54,68,-0.5272261556237936],[115,-54,69,-0.5260342918336391],[115,-54,70,-0.5249284580349922],[115,-54,71,-0.5235806312412024],[115,-54,72,-0.5217186473309994],[115,-54,73,-0.5196252521127462],[115,-54,74,-0.5176558569073677],[115,-54,75,-0.5162321664392948],[115,-54,76,-0.515502898953855],[115,-54,77,-0.5150719676166773],[115,-54,78,-0.5142765641212463],[115,-54,79,-0.5129700470715761],[115,-53,64,-0.532755671069026],[115,-53,65,-0.5314468089491129],[115,-53,66,-0.530003672465682],[115,-53,67,-0.5285049434751272],[115,-53,68,-0.5272261556237936],[115,-53,69,-0.5260342918336391],[115,-53,70,-0.5249284580349922],[115,-53,71,-0.5235806312412024],[115,-53,72,-0.5217186473309994],[115,-53,73,-0.5196252521127462],[115,-53,74,-0.5176558569073677],[115,-53,75,-0.5162321664392948],[115,-53,76,-0.515502898953855],[115,-53,77,-0.5150719676166773],[115,-53,78,-0.5142765641212463],[115,-53,79,-0.5129700470715761],[115,-52,64,-0.532755671069026],[115,-52,65,-0.5314468089491129],[115,-52,66,-0.530003672465682],[115,-52,67,-0.5285049434751272],[115,-52,68,-0.5272261556237936],[115,-52,69,-0.5260342918336391],[115,-52,70,-0.5249284580349922],[115,-52,71,-0.5235806312412024],[115,-52,72,-0.5217186473309994],[115,-52,73,-0.5196252521127462],[115,-52,74,-0.5176558569073677],[115,-52,75,-0.5162321664392948],[115,-52,76,-0.515502898953855],[115,-52,77,-0.5150719676166773],[115,-52,78,-0.5142765641212463],[115,-52,79,-0.5129700470715761],[115,-51,64,-0.532755671069026],[115,-51,65,-0.5314468089491129],[115,-51,66,-0.530003672465682],[115,-51,67,-0.5285049434751272],[115,-51,68,-0.5272261556237936],[115,-51,69,-0.5260342918336391],[115,-51,70,-0.5249284580349922],[115,-51,71,-0.5235806312412024],[115,-51,72,-0.5217186473309994],[115,-51,73,-0.5196252521127462],[115,-51,74,-0.5176558569073677],[115,-51,75,-0.5162321664392948],[115,-51,76,-0.515502898953855],[115,-51,77,-0.5150719676166773],[115,-51,78,-0.5142765641212463],[115,-51,79,-0.5129700470715761],[115,-50,64,-0.532755671069026],[115,-50,65,-0.5314468089491129],[115,-50,66,-0.530003672465682],[115,-50,67,-0.5285049434751272],[115,-50,68,-0.5272261556237936],[115,-50,69,-0.5260342918336391],[115,-50,70,-0.5249284580349922],[115,-50,71,-0.5235806312412024],[115,-50,72,-0.5217186473309994],[115,-50,73,-0.5196252521127462],[115,-50,74,-0.5176558569073677],[115,-50,75,-0.5162321664392948],[115,-50,76,-0.515502898953855],[115,-50,77,-0.5150719676166773],[115,-50,78,-0.5142765641212463],[115,-50,79,-0.5129700470715761],[115,-49,64,-0.532755671069026],[115,-49,65,-0.5314468089491129],[115,-49,66,-0.530003672465682],[115,-49,67,-0.5285049434751272],[115,-49,68,-0.5272261556237936],[115,-49,69,-0.5260342918336391],[115,-49,70,-0.5249284580349922],[115,-49,71,-0.5235806312412024],[115,-49,72,-0.5217186473309994],[115,-49,73,-0.5196252521127462],[115,-49,74,-0.5176558569073677],[115,-49,75,-0.5162321664392948],[115,-49,76,-0.515502898953855],[115,-49,77,-0.5150719676166773],[115,-49,78,-0.5142765641212463],[115,-49,79,-0.5129700470715761],[115,-48,64,-0.532755671069026],[115,-48,65,-0.5314468089491129],[115,-48,66,-0.530003672465682],[115,-48,67,-0.5285049434751272],[115,-48,68,-0.5272261556237936],[115,-48,69,-0.5260342918336391],[115,-48,70,-0.5249284580349922],[115,-48,71,-0.5235806312412024],[115,-48,72,-0.5217186473309994],[115,-48,73,-0.5196252521127462],[115,-48,74,-0.5176558569073677],[115,-48,75,-0.5162321664392948],[115,-48,76,-0.515502898953855],[115,-48,77,-0.5150719676166773],[115,-48,78,-0.5142765641212463],[115,-48,79,-0.5129700470715761],[115,-47,64,-0.532755671069026],[115,-47,65,-0.5314468089491129],[115,-47,66,-0.530003672465682],[115,-47,67,-0.5285049434751272],[115,-47,68,-0.5272261556237936],[115,-47,69,-0.5260342918336391],[115,-47,70,-0.5249284580349922],[115,-47,71,-0.5235806312412024],[115,-47,72,-0.5217186473309994],[115,-47,73,-0.5196252521127462],[115,-47,74,-0.5176558569073677],[115,-47,75,-0.5162321664392948],[115,-47,76,-0.515502898953855],[115,-47,77,-0.5150719676166773],[115,-47,78,-0.5142765641212463],[115,-47,79,-0.5129700470715761],[115,-46,64,-0.532755671069026],[115,-46,65,-0.5314468089491129],[115,-46,66,-0.530003672465682],[115,-46,67,-0.5285049434751272],[115,-46,68,-0.5272261556237936],[115,-46,69,-0.5260342918336391],[115,-46,70,-0.5249284580349922],[115,-46,71,-0.5235806312412024],[115,-46,72,-0.5217186473309994],[115,-46,73,-0.5196252521127462],[115,-46,74,-0.5176558569073677],[115,-46,75,-0.5162321664392948],[115,-46,76,-0.515502898953855],[115,-46,77,-0.5150719676166773],[115,-46,78,-0.5142765641212463],[115,-46,79,-0.5129700470715761],[115,-45,64,-0.532755671069026],[115,-45,65,-0.5314468089491129],[115,-45,66,-0.530003672465682],[115,-45,67,-0.5285049434751272],[115,-45,68,-0.5272261556237936],[115,-45,69,-0.5260342918336391],[115,-45,70,-0.5249284580349922],[115,-45,71,-0.5235806312412024],[115,-45,72,-0.5217186473309994],[115,-45,73,-0.5196252521127462],[115,-45,74,-0.5176558569073677],[115,-45,75,-0.5162321664392948],[115,-45,76,-0.515502898953855],[115,-45,77,-0.5150719676166773],[115,-45,78,-0.5142765641212463],[115,-45,79,-0.5129700470715761],[115,-44,64,-0.532755671069026],[115,-44,65,-0.5314468089491129],[115,-44,66,-0.530003672465682],[115,-44,67,-0.5285049434751272],[115,-44,68,-0.5272261556237936],[115,-44,69,-0.5260342918336391],[115,-44,70,-0.5249284580349922],[115,-44,71,-0.5235806312412024],[115,-44,72,-0.5217186473309994],[115,-44,73,-0.5196252521127462],[115,-44,74,-0.5176558569073677],[115,-44,75,-0.5162321664392948],[115,-44,76,-0.515502898953855],[115,-44,77,-0.5150719676166773],[115,-44,78,-0.5142765641212463],[115,-44,79,-0.5129700470715761],[115,-43,64,-0.532755671069026],[115,-43,65,-0.5314468089491129],[115,-43,66,-0.530003672465682],[115,-43,67,-0.5285049434751272],[115,-43,68,-0.5272261556237936],[115,-43,69,-0.5260342918336391],[115,-43,70,-0.5249284580349922],[115,-43,71,-0.5235806312412024],[115,-43,72,-0.5217186473309994],[115,-43,73,-0.5196252521127462],[115,-43,74,-0.5176558569073677],[115,-43,75,-0.5162321664392948],[115,-43,76,-0.515502898953855],[115,-43,77,-0.5150719676166773],[115,-43,78,-0.5142765641212463],[115,-43,79,-0.5129700470715761],[115,-42,64,-0.532755671069026],[115,-42,65,-0.5314468089491129],[115,-42,66,-0.530003672465682],[115,-42,67,-0.5285049434751272],[115,-42,68,-0.5272261556237936],[115,-42,69,-0.5260342918336391],[115,-42,70,-0.5249284580349922],[115,-42,71,-0.5235806312412024],[115,-42,72,-0.5217186473309994],[115,-42,73,-0.5196252521127462],[115,-42,74,-0.5176558569073677],[115,-42,75,-0.5162321664392948],[115,-42,76,-0.515502898953855],[115,-42,77,-0.5150719676166773],[115,-42,78,-0.5142765641212463],[115,-42,79,-0.5129700470715761],[115,-41,64,-0.532755671069026],[115,-41,65,-0.5314468089491129],[115,-41,66,-0.530003672465682],[115,-41,67,-0.5285049434751272],[115,-41,68,-0.5272261556237936],[115,-41,69,-0.5260342918336391],[115,-41,70,-0.5249284580349922],[115,-41,71,-0.5235806312412024],[115,-41,72,-0.5217186473309994],[115,-41,73,-0.5196252521127462],[115,-41,74,-0.5176558569073677],[115,-41,75,-0.5162321664392948],[115,-41,76,-0.515502898953855],[115,-41,77,-0.5150719676166773],[115,-41,78,-0.5142765641212463],[115,-41,79,-0.5129700470715761],[115,-40,64,-0.532755671069026],[115,-40,65,-0.5314468089491129],[115,-40,66,-0.530003672465682],[115,-40,67,-0.5285049434751272],[115,-40,68,-0.5272261556237936],[115,-40,69,-0.5260342918336391],[115,-40,70,-0.5249284580349922],[115,-40,71,-0.5235806312412024],[115,-40,72,-0.5217186473309994],[115,-40,73,-0.5196252521127462],[115,-40,74,-0.5176558569073677],[115,-40,75,-0.5162321664392948],[115,-40,76,-0.515502898953855],[115,-40,77,-0.5150719676166773],[115,-40,78,-0.5142765641212463],[115,-40,79,-0.5129700470715761],[115,-39,64,-0.532755671069026],[115,-39,65,-0.5314468089491129],[115,-39,66,-0.530003672465682],[115,-39,67,-0.5285049434751272],[115,-39,68,-0.5272261556237936],[115,-39,69,-0.5260342918336391],[115,-39,70,-0.5249284580349922],[115,-39,71,-0.5235806312412024],[115,-39,72,-0.5217186473309994],[115,-39,73,-0.5196252521127462],[115,-39,74,-0.5176558569073677],[115,-39,75,-0.5162321664392948],[115,-39,76,-0.515502898953855],[115,-39,77,-0.5150719676166773],[115,-39,78,-0.5142765641212463],[115,-39,79,-0.5129700470715761],[115,-38,64,-0.532755671069026],[115,-38,65,-0.5314468089491129],[115,-38,66,-0.530003672465682],[115,-38,67,-0.5285049434751272],[115,-38,68,-0.5272261556237936],[115,-38,69,-0.5260342918336391],[115,-38,70,-0.5249284580349922],[115,-38,71,-0.5235806312412024],[115,-38,72,-0.5217186473309994],[115,-38,73,-0.5196252521127462],[115,-38,74,-0.5176558569073677],[115,-38,75,-0.5162321664392948],[115,-38,76,-0.515502898953855],[115,-38,77,-0.5150719676166773],[115,-38,78,-0.5142765641212463],[115,-38,79,-0.5129700470715761],[115,-37,64,-0.532755671069026],[115,-37,65,-0.5314468089491129],[115,-37,66,-0.530003672465682],[115,-37,67,-0.5285049434751272],[115,-37,68,-0.5272261556237936],[115,-37,69,-0.5260342918336391],[115,-37,70,-0.5249284580349922],[115,-37,71,-0.5235806312412024],[115,-37,72,-0.5217186473309994],[115,-37,73,-0.5196252521127462],[115,-37,74,-0.5176558569073677],[115,-37,75,-0.5162321664392948],[115,-37,76,-0.515502898953855],[115,-37,77,-0.5150719676166773],[115,-37,78,-0.5142765641212463],[115,-37,79,-0.5129700470715761],[115,-36,64,-0.532755671069026],[115,-36,65,-0.5314468089491129],[115,-36,66,-0.530003672465682],[115,-36,67,-0.5285049434751272],[115,-36,68,-0.5272261556237936],[115,-36,69,-0.5260342918336391],[115,-36,70,-0.5249284580349922],[115,-36,71,-0.5235806312412024],[115,-36,72,-0.5217186473309994],[115,-36,73,-0.5196252521127462],[115,-36,74,-0.5176558569073677],[115,-36,75,-0.5162321664392948],[115,-36,76,-0.515502898953855],[115,-36,77,-0.5150719676166773],[115,-36,78,-0.5142765641212463],[115,-36,79,-0.5129700470715761],[115,-35,64,-0.532755671069026],[115,-35,65,-0.5314468089491129],[115,-35,66,-0.530003672465682],[115,-35,67,-0.5285049434751272],[115,-35,68,-0.5272261556237936],[115,-35,69,-0.5260342918336391],[115,-35,70,-0.5249284580349922],[115,-35,71,-0.5235806312412024],[115,-35,72,-0.5217186473309994],[115,-35,73,-0.5196252521127462],[115,-35,74,-0.5176558569073677],[115,-35,75,-0.5162321664392948],[115,-35,76,-0.515502898953855],[115,-35,77,-0.5150719676166773],[115,-35,78,-0.5142765641212463],[115,-35,79,-0.5129700470715761],[115,-34,64,-0.532755671069026],[115,-34,65,-0.5314468089491129],[115,-34,66,-0.530003672465682],[115,-34,67,-0.5285049434751272],[115,-34,68,-0.5272261556237936],[115,-34,69,-0.5260342918336391],[115,-34,70,-0.5249284580349922],[115,-34,71,-0.5235806312412024],[115,-34,72,-0.5217186473309994],[115,-34,73,-0.5196252521127462],[115,-34,74,-0.5176558569073677],[115,-34,75,-0.5162321664392948],[115,-34,76,-0.515502898953855],[115,-34,77,-0.5150719676166773],[115,-34,78,-0.5142765641212463],[115,-34,79,-0.5129700470715761],[115,-33,64,-0.532755671069026],[115,-33,65,-0.5314468089491129],[115,-33,66,-0.530003672465682],[115,-33,67,-0.5285049434751272],[115,-33,68,-0.5272261556237936],[115,-33,69,-0.5260342918336391],[115,-33,70,-0.5249284580349922],[115,-33,71,-0.5235806312412024],[115,-33,72,-0.5217186473309994],[115,-33,73,-0.5196252521127462],[115,-33,74,-0.5176558569073677],[115,-33,75,-0.5162321664392948],[115,-33,76,-0.515502898953855],[115,-33,77,-0.5150719676166773],[115,-33,78,-0.5142765641212463],[115,-33,79,-0.5129700470715761],[115,-32,64,-0.532755671069026],[115,-32,65,-0.5314468089491129],[115,-32,66,-0.530003672465682],[115,-32,67,-0.5285049434751272],[115,-32,68,-0.5272261556237936],[115,-32,69,-0.5260342918336391],[115,-32,70,-0.5249284580349922],[115,-32,71,-0.5235806312412024],[115,-32,72,-0.5217186473309994],[115,-32,73,-0.5196252521127462],[115,-32,74,-0.5176558569073677],[115,-32,75,-0.5162321664392948],[115,-32,76,-0.515502898953855],[115,-32,77,-0.5150719676166773],[115,-32,78,-0.5142765641212463],[115,-32,79,-0.5129700470715761],[115,-31,64,-0.532755671069026],[115,-31,65,-0.5314468089491129],[115,-31,66,-0.530003672465682],[115,-31,67,-0.5285049434751272],[115,-31,68,-0.5272261556237936],[115,-31,69,-0.5260342918336391],[115,-31,70,-0.5249284580349922],[115,-31,71,-0.5235806312412024],[115,-31,72,-0.5217186473309994],[115,-31,73,-0.5196252521127462],[115,-31,74,-0.5176558569073677],[115,-31,75,-0.5162321664392948],[115,-31,76,-0.515502898953855],[115,-31,77,-0.5150719676166773],[115,-31,78,-0.5142765641212463],[115,-31,79,-0.5129700470715761],[115,-30,64,-0.532755671069026],[115,-30,65,-0.5314468089491129],[115,-30,66,-0.530003672465682],[115,-30,67,-0.5285049434751272],[115,-30,68,-0.5272261556237936],[115,-30,69,-0.5260342918336391],[115,-30,70,-0.5249284580349922],[115,-30,71,-0.5235806312412024],[115,-30,72,-0.5217186473309994],[115,-30,73,-0.5196252521127462],[115,-30,74,-0.5176558569073677],[115,-30,75,-0.5162321664392948],[115,-30,76,-0.515502898953855],[115,-30,77,-0.5150719676166773],[115,-30,78,-0.5142765641212463],[115,-30,79,-0.5129700470715761],[115,-29,64,-0.532755671069026],[115,-29,65,-0.5314468089491129],[115,-29,66,-0.530003672465682],[115,-29,67,-0.5285049434751272],[115,-29,68,-0.5272261556237936],[115,-29,69,-0.5260342918336391],[115,-29,70,-0.5249284580349922],[115,-29,71,-0.5235806312412024],[115,-29,72,-0.5217186473309994],[115,-29,73,-0.5196252521127462],[115,-29,74,-0.5176558569073677],[115,-29,75,-0.5162321664392948],[115,-29,76,-0.515502898953855],[115,-29,77,-0.5150719676166773],[115,-29,78,-0.5142765641212463],[115,-29,79,-0.5129700470715761],[115,-28,64,-0.532755671069026],[115,-28,65,-0.5314468089491129],[115,-28,66,-0.530003672465682],[115,-28,67,-0.5285049434751272],[115,-28,68,-0.5272261556237936],[115,-28,69,-0.5260342918336391],[115,-28,70,-0.5249284580349922],[115,-28,71,-0.5235806312412024],[115,-28,72,-0.5217186473309994],[115,-28,73,-0.5196252521127462],[115,-28,74,-0.5176558569073677],[115,-28,75,-0.5162321664392948],[115,-28,76,-0.515502898953855],[115,-28,77,-0.5150719676166773],[115,-28,78,-0.5142765641212463],[115,-28,79,-0.5129700470715761],[115,-27,64,-0.532755671069026],[115,-27,65,-0.5314468089491129],[115,-27,66,-0.530003672465682],[115,-27,67,-0.5285049434751272],[115,-27,68,-0.5272261556237936],[115,-27,69,-0.5260342918336391],[115,-27,70,-0.5249284580349922],[115,-27,71,-0.5235806312412024],[115,-27,72,-0.5217186473309994],[115,-27,73,-0.5196252521127462],[115,-27,74,-0.5176558569073677],[115,-27,75,-0.5162321664392948],[115,-27,76,-0.515502898953855],[115,-27,77,-0.5150719676166773],[115,-27,78,-0.5142765641212463],[115,-27,79,-0.5129700470715761],[115,-26,64,-0.532755671069026],[115,-26,65,-0.5314468089491129],[115,-26,66,-0.530003672465682],[115,-26,67,-0.5285049434751272],[115,-26,68,-0.5272261556237936],[115,-26,69,-0.5260342918336391],[115,-26,70,-0.5249284580349922],[115,-26,71,-0.5235806312412024],[115,-26,72,-0.5217186473309994],[115,-26,73,-0.5196252521127462],[115,-26,74,-0.5176558569073677],[115,-26,75,-0.5162321664392948],[115,-26,76,-0.515502898953855],[115,-26,77,-0.5150719676166773],[115,-26,78,-0.5142765641212463],[115,-26,79,-0.5129700470715761],[115,-25,64,-0.532755671069026],[115,-25,65,-0.5314468089491129],[115,-25,66,-0.530003672465682],[115,-25,67,-0.5285049434751272],[115,-25,68,-0.5272261556237936],[115,-25,69,-0.5260342918336391],[115,-25,70,-0.5249284580349922],[115,-25,71,-0.5235806312412024],[115,-25,72,-0.5217186473309994],[115,-25,73,-0.5196252521127462],[115,-25,74,-0.5176558569073677],[115,-25,75,-0.5162321664392948],[115,-25,76,-0.515502898953855],[115,-25,77,-0.5150719676166773],[115,-25,78,-0.5142765641212463],[115,-25,79,-0.5129700470715761],[115,-24,64,-0.532755671069026],[115,-24,65,-0.5314468089491129],[115,-24,66,-0.530003672465682],[115,-24,67,-0.5285049434751272],[115,-24,68,-0.5272261556237936],[115,-24,69,-0.5260342918336391],[115,-24,70,-0.5249284580349922],[115,-24,71,-0.5235806312412024],[115,-24,72,-0.5217186473309994],[115,-24,73,-0.5196252521127462],[115,-24,74,-0.5176558569073677],[115,-24,75,-0.5162321664392948],[115,-24,76,-0.515502898953855],[115,-24,77,-0.5150719676166773],[115,-24,78,-0.5142765641212463],[115,-24,79,-0.5129700470715761],[115,-23,64,-0.532755671069026],[115,-23,65,-0.5314468089491129],[115,-23,66,-0.530003672465682],[115,-23,67,-0.5285049434751272],[115,-23,68,-0.5272261556237936],[115,-23,69,-0.5260342918336391],[115,-23,70,-0.5249284580349922],[115,-23,71,-0.5235806312412024],[115,-23,72,-0.5217186473309994],[115,-23,73,-0.5196252521127462],[115,-23,74,-0.5176558569073677],[115,-23,75,-0.5162321664392948],[115,-23,76,-0.515502898953855],[115,-23,77,-0.5150719676166773],[115,-23,78,-0.5142765641212463],[115,-23,79,-0.5129700470715761],[115,-22,64,-0.532755671069026],[115,-22,65,-0.5314468089491129],[115,-22,66,-0.530003672465682],[115,-22,67,-0.5285049434751272],[115,-22,68,-0.5272261556237936],[115,-22,69,-0.5260342918336391],[115,-22,70,-0.5249284580349922],[115,-22,71,-0.5235806312412024],[115,-22,72,-0.5217186473309994],[115,-22,73,-0.5196252521127462],[115,-22,74,-0.5176558569073677],[115,-22,75,-0.5162321664392948],[115,-22,76,-0.515502898953855],[115,-22,77,-0.5150719676166773],[115,-22,78,-0.5142765641212463],[115,-22,79,-0.5129700470715761],[115,-21,64,-0.532755671069026],[115,-21,65,-0.5314468089491129],[115,-21,66,-0.530003672465682],[115,-21,67,-0.5285049434751272],[115,-21,68,-0.5272261556237936],[115,-21,69,-0.5260342918336391],[115,-21,70,-0.5249284580349922],[115,-21,71,-0.5235806312412024],[115,-21,72,-0.5217186473309994],[115,-21,73,-0.5196252521127462],[115,-21,74,-0.5176558569073677],[115,-21,75,-0.5162321664392948],[115,-21,76,-0.515502898953855],[115,-21,77,-0.5150719676166773],[115,-21,78,-0.5142765641212463],[115,-21,79,-0.5129700470715761],[115,-20,64,-0.532755671069026],[115,-20,65,-0.5314468089491129],[115,-20,66,-0.530003672465682],[115,-20,67,-0.5285049434751272],[115,-20,68,-0.5272261556237936],[115,-20,69,-0.5260342918336391],[115,-20,70,-0.5249284580349922],[115,-20,71,-0.5235806312412024],[115,-20,72,-0.5217186473309994],[115,-20,73,-0.5196252521127462],[115,-20,74,-0.5176558569073677],[115,-20,75,-0.5162321664392948],[115,-20,76,-0.515502898953855],[115,-20,77,-0.5150719676166773],[115,-20,78,-0.5142765641212463],[115,-20,79,-0.5129700470715761],[115,-19,64,-0.532755671069026],[115,-19,65,-0.5314468089491129],[115,-19,66,-0.530003672465682],[115,-19,67,-0.5285049434751272],[115,-19,68,-0.5272261556237936],[115,-19,69,-0.5260342918336391],[115,-19,70,-0.5249284580349922],[115,-19,71,-0.5235806312412024],[115,-19,72,-0.5217186473309994],[115,-19,73,-0.5196252521127462],[115,-19,74,-0.5176558569073677],[115,-19,75,-0.5162321664392948],[115,-19,76,-0.515502898953855],[115,-19,77,-0.5150719676166773],[115,-19,78,-0.5142765641212463],[115,-19,79,-0.5129700470715761],[115,-18,64,-0.532755671069026],[115,-18,65,-0.5314468089491129],[115,-18,66,-0.530003672465682],[115,-18,67,-0.5285049434751272],[115,-18,68,-0.5272261556237936],[115,-18,69,-0.5260342918336391],[115,-18,70,-0.5249284580349922],[115,-18,71,-0.5235806312412024],[115,-18,72,-0.5217186473309994],[115,-18,73,-0.5196252521127462],[115,-18,74,-0.5176558569073677],[115,-18,75,-0.5162321664392948],[115,-18,76,-0.515502898953855],[115,-18,77,-0.5150719676166773],[115,-18,78,-0.5142765641212463],[115,-18,79,-0.5129700470715761],[115,-17,64,-0.532755671069026],[115,-17,65,-0.5314468089491129],[115,-17,66,-0.530003672465682],[115,-17,67,-0.5285049434751272],[115,-17,68,-0.5272261556237936],[115,-17,69,-0.5260342918336391],[115,-17,70,-0.5249284580349922],[115,-17,71,-0.5235806312412024],[115,-17,72,-0.5217186473309994],[115,-17,73,-0.5196252521127462],[115,-17,74,-0.5176558569073677],[115,-17,75,-0.5162321664392948],[115,-17,76,-0.515502898953855],[115,-17,77,-0.5150719676166773],[115,-17,78,-0.5142765641212463],[115,-17,79,-0.5129700470715761],[115,-16,64,-0.532755671069026],[115,-16,65,-0.5314468089491129],[115,-16,66,-0.530003672465682],[115,-16,67,-0.5285049434751272],[115,-16,68,-0.5272261556237936],[115,-16,69,-0.5260342918336391],[115,-16,70,-0.5249284580349922],[115,-16,71,-0.5235806312412024],[115,-16,72,-0.5217186473309994],[115,-16,73,-0.5196252521127462],[115,-16,74,-0.5176558569073677],[115,-16,75,-0.5162321664392948],[115,-16,76,-0.515502898953855],[115,-16,77,-0.5150719676166773],[115,-16,78,-0.5142765641212463],[115,-16,79,-0.5129700470715761],[115,-15,64,-0.532755671069026],[115,-15,65,-0.5314468089491129],[115,-15,66,-0.530003672465682],[115,-15,67,-0.5285049434751272],[115,-15,68,-0.5272261556237936],[115,-15,69,-0.5260342918336391],[115,-15,70,-0.5249284580349922],[115,-15,71,-0.5235806312412024],[115,-15,72,-0.5217186473309994],[115,-15,73,-0.5196252521127462],[115,-15,74,-0.5176558569073677],[115,-15,75,-0.5162321664392948],[115,-15,76,-0.515502898953855],[115,-15,77,-0.5150719676166773],[115,-15,78,-0.5142765641212463],[115,-15,79,-0.5129700470715761],[115,-14,64,-0.532755671069026],[115,-14,65,-0.5314468089491129],[115,-14,66,-0.530003672465682],[115,-14,67,-0.5285049434751272],[115,-14,68,-0.5272261556237936],[115,-14,69,-0.5260342918336391],[115,-14,70,-0.5249284580349922],[115,-14,71,-0.5235806312412024],[115,-14,72,-0.5217186473309994],[115,-14,73,-0.5196252521127462],[115,-14,74,-0.5176558569073677],[115,-14,75,-0.5162321664392948],[115,-14,76,-0.515502898953855],[115,-14,77,-0.5150719676166773],[115,-14,78,-0.5142765641212463],[115,-14,79,-0.5129700470715761],[115,-13,64,-0.532755671069026],[115,-13,65,-0.5314468089491129],[115,-13,66,-0.530003672465682],[115,-13,67,-0.5285049434751272],[115,-13,68,-0.5272261556237936],[115,-13,69,-0.5260342918336391],[115,-13,70,-0.5249284580349922],[115,-13,71,-0.5235806312412024],[115,-13,72,-0.5217186473309994],[115,-13,73,-0.5196252521127462],[115,-13,74,-0.5176558569073677],[115,-13,75,-0.5162321664392948],[115,-13,76,-0.515502898953855],[115,-13,77,-0.5150719676166773],[115,-13,78,-0.5142765641212463],[115,-13,79,-0.5129700470715761],[115,-12,64,-0.532755671069026],[115,-12,65,-0.5314468089491129],[115,-12,66,-0.530003672465682],[115,-12,67,-0.5285049434751272],[115,-12,68,-0.5272261556237936],[115,-12,69,-0.5260342918336391],[115,-12,70,-0.5249284580349922],[115,-12,71,-0.5235806312412024],[115,-12,72,-0.5217186473309994],[115,-12,73,-0.5196252521127462],[115,-12,74,-0.5176558569073677],[115,-12,75,-0.5162321664392948],[115,-12,76,-0.515502898953855],[115,-12,77,-0.5150719676166773],[115,-12,78,-0.5142765641212463],[115,-12,79,-0.5129700470715761],[115,-11,64,-0.532755671069026],[115,-11,65,-0.5314468089491129],[115,-11,66,-0.530003672465682],[115,-11,67,-0.5285049434751272],[115,-11,68,-0.5272261556237936],[115,-11,69,-0.5260342918336391],[115,-11,70,-0.5249284580349922],[115,-11,71,-0.5235806312412024],[115,-11,72,-0.5217186473309994],[115,-11,73,-0.5196252521127462],[115,-11,74,-0.5176558569073677],[115,-11,75,-0.5162321664392948],[115,-11,76,-0.515502898953855],[115,-11,77,-0.5150719676166773],[115,-11,78,-0.5142765641212463],[115,-11,79,-0.5129700470715761],[115,-10,64,-0.532755671069026],[115,-10,65,-0.5314468089491129],[115,-10,66,-0.530003672465682],[115,-10,67,-0.5285049434751272],[115,-10,68,-0.5272261556237936],[115,-10,69,-0.5260342918336391],[115,-10,70,-0.5249284580349922],[115,-10,71,-0.5235806312412024],[115,-10,72,-0.5217186473309994],[115,-10,73,-0.5196252521127462],[115,-10,74,-0.5176558569073677],[115,-10,75,-0.5162321664392948],[115,-10,76,-0.515502898953855],[115,-10,77,-0.5150719676166773],[115,-10,78,-0.5142765641212463],[115,-10,79,-0.5129700470715761],[115,-9,64,-0.532755671069026],[115,-9,65,-0.5314468089491129],[115,-9,66,-0.530003672465682],[115,-9,67,-0.5285049434751272],[115,-9,68,-0.5272261556237936],[115,-9,69,-0.5260342918336391],[115,-9,70,-0.5249284580349922],[115,-9,71,-0.5235806312412024],[115,-9,72,-0.5217186473309994],[115,-9,73,-0.5196252521127462],[115,-9,74,-0.5176558569073677],[115,-9,75,-0.5162321664392948],[115,-9,76,-0.515502898953855],[115,-9,77,-0.5150719676166773],[115,-9,78,-0.5142765641212463],[115,-9,79,-0.5129700470715761],[115,-8,64,-0.532755671069026],[115,-8,65,-0.5314468089491129],[115,-8,66,-0.530003672465682],[115,-8,67,-0.5285049434751272],[115,-8,68,-0.5272261556237936],[115,-8,69,-0.5260342918336391],[115,-8,70,-0.5249284580349922],[115,-8,71,-0.5235806312412024],[115,-8,72,-0.5217186473309994],[115,-8,73,-0.5196252521127462],[115,-8,74,-0.5176558569073677],[115,-8,75,-0.5162321664392948],[115,-8,76,-0.515502898953855],[115,-8,77,-0.5150719676166773],[115,-8,78,-0.5142765641212463],[115,-8,79,-0.5129700470715761],[115,-7,64,-0.532755671069026],[115,-7,65,-0.5314468089491129],[115,-7,66,-0.530003672465682],[115,-7,67,-0.5285049434751272],[115,-7,68,-0.5272261556237936],[115,-7,69,-0.5260342918336391],[115,-7,70,-0.5249284580349922],[115,-7,71,-0.5235806312412024],[115,-7,72,-0.5217186473309994],[115,-7,73,-0.5196252521127462],[115,-7,74,-0.5176558569073677],[115,-7,75,-0.5162321664392948],[115,-7,76,-0.515502898953855],[115,-7,77,-0.5150719676166773],[115,-7,78,-0.5142765641212463],[115,-7,79,-0.5129700470715761],[115,-6,64,-0.532755671069026],[115,-6,65,-0.5314468089491129],[115,-6,66,-0.530003672465682],[115,-6,67,-0.5285049434751272],[115,-6,68,-0.5272261556237936],[115,-6,69,-0.5260342918336391],[115,-6,70,-0.5249284580349922],[115,-6,71,-0.5235806312412024],[115,-6,72,-0.5217186473309994],[115,-6,73,-0.5196252521127462],[115,-6,74,-0.5176558569073677],[115,-6,75,-0.5162321664392948],[115,-6,76,-0.515502898953855],[115,-6,77,-0.5150719676166773],[115,-6,78,-0.5142765641212463],[115,-6,79,-0.5129700470715761],[115,-5,64,-0.532755671069026],[115,-5,65,-0.5314468089491129],[115,-5,66,-0.530003672465682],[115,-5,67,-0.5285049434751272],[115,-5,68,-0.5272261556237936],[115,-5,69,-0.5260342918336391],[115,-5,70,-0.5249284580349922],[115,-5,71,-0.5235806312412024],[115,-5,72,-0.5217186473309994],[115,-5,73,-0.5196252521127462],[115,-5,74,-0.5176558569073677],[115,-5,75,-0.5162321664392948],[115,-5,76,-0.515502898953855],[115,-5,77,-0.5150719676166773],[115,-5,78,-0.5142765641212463],[115,-5,79,-0.5129700470715761],[115,-4,64,-0.532755671069026],[115,-4,65,-0.5314468089491129],[115,-4,66,-0.530003672465682],[115,-4,67,-0.5285049434751272],[115,-4,68,-0.5272261556237936],[115,-4,69,-0.5260342918336391],[115,-4,70,-0.5249284580349922],[115,-4,71,-0.5235806312412024],[115,-4,72,-0.5217186473309994],[115,-4,73,-0.5196252521127462],[115,-4,74,-0.5176558569073677],[115,-4,75,-0.5162321664392948],[115,-4,76,-0.515502898953855],[115,-4,77,-0.5150719676166773],[115,-4,78,-0.5142765641212463],[115,-4,79,-0.5129700470715761],[115,-3,64,-0.532755671069026],[115,-3,65,-0.5314468089491129],[115,-3,66,-0.530003672465682],[115,-3,67,-0.5285049434751272],[115,-3,68,-0.5272261556237936],[115,-3,69,-0.5260342918336391],[115,-3,70,-0.5249284580349922],[115,-3,71,-0.5235806312412024],[115,-3,72,-0.5217186473309994],[115,-3,73,-0.5196252521127462],[115,-3,74,-0.5176558569073677],[115,-3,75,-0.5162321664392948],[115,-3,76,-0.515502898953855],[115,-3,77,-0.5150719676166773],[115,-3,78,-0.5142765641212463],[115,-3,79,-0.5129700470715761],[115,-2,64,-0.532755671069026],[115,-2,65,-0.5314468089491129],[115,-2,66,-0.530003672465682],[115,-2,67,-0.5285049434751272],[115,-2,68,-0.5272261556237936],[115,-2,69,-0.5260342918336391],[115,-2,70,-0.5249284580349922],[115,-2,71,-0.5235806312412024],[115,-2,72,-0.5217186473309994],[115,-2,73,-0.5196252521127462],[115,-2,74,-0.5176558569073677],[115,-2,75,-0.5162321664392948],[115,-2,76,-0.515502898953855],[115,-2,77,-0.5150719676166773],[115,-2,78,-0.5142765641212463],[115,-2,79,-0.5129700470715761],[115,-1,64,-0.532755671069026],[115,-1,65,-0.5314468089491129],[115,-1,66,-0.530003672465682],[115,-1,67,-0.5285049434751272],[115,-1,68,-0.5272261556237936],[115,-1,69,-0.5260342918336391],[115,-1,70,-0.5249284580349922],[115,-1,71,-0.5235806312412024],[115,-1,72,-0.5217186473309994],[115,-1,73,-0.5196252521127462],[115,-1,74,-0.5176558569073677],[115,-1,75,-0.5162321664392948],[115,-1,76,-0.515502898953855],[115,-1,77,-0.5150719676166773],[115,-1,78,-0.5142765641212463],[115,-1,79,-0.5129700470715761],[115,0,64,-0.532755671069026],[115,0,65,-0.5314468089491129],[115,0,66,-0.530003672465682],[115,0,67,-0.5285049434751272],[115,0,68,-0.5272261556237936],[115,0,69,-0.5260342918336391],[115,0,70,-0.5249284580349922],[115,0,71,-0.5235806312412024],[115,0,72,-0.5217186473309994],[115,0,73,-0.5196252521127462],[115,0,74,-0.5176558569073677],[115,0,75,-0.5162321664392948],[115,0,76,-0.515502898953855],[115,0,77,-0.5150719676166773],[115,0,78,-0.5142765641212463],[115,0,79,-0.5129700470715761],[115,1,64,-0.532755671069026],[115,1,65,-0.5314468089491129],[115,1,66,-0.530003672465682],[115,1,67,-0.5285049434751272],[115,1,68,-0.5272261556237936],[115,1,69,-0.5260342918336391],[115,1,70,-0.5249284580349922],[115,1,71,-0.5235806312412024],[115,1,72,-0.5217186473309994],[115,1,73,-0.5196252521127462],[115,1,74,-0.5176558569073677],[115,1,75,-0.5162321664392948],[115,1,76,-0.515502898953855],[115,1,77,-0.5150719676166773],[115,1,78,-0.5142765641212463],[115,1,79,-0.5129700470715761],[115,2,64,-0.532755671069026],[115,2,65,-0.5314468089491129],[115,2,66,-0.530003672465682],[115,2,67,-0.5285049434751272],[115,2,68,-0.5272261556237936],[115,2,69,-0.5260342918336391],[115,2,70,-0.5249284580349922],[115,2,71,-0.5235806312412024],[115,2,72,-0.5217186473309994],[115,2,73,-0.5196252521127462],[115,2,74,-0.5176558569073677],[115,2,75,-0.5162321664392948],[115,2,76,-0.515502898953855],[115,2,77,-0.5150719676166773],[115,2,78,-0.5142765641212463],[115,2,79,-0.5129700470715761],[115,3,64,-0.532755671069026],[115,3,65,-0.5314468089491129],[115,3,66,-0.530003672465682],[115,3,67,-0.5285049434751272],[115,3,68,-0.5272261556237936],[115,3,69,-0.5260342918336391],[115,3,70,-0.5249284580349922],[115,3,71,-0.5235806312412024],[115,3,72,-0.5217186473309994],[115,3,73,-0.5196252521127462],[115,3,74,-0.5176558569073677],[115,3,75,-0.5162321664392948],[115,3,76,-0.515502898953855],[115,3,77,-0.5150719676166773],[115,3,78,-0.5142765641212463],[115,3,79,-0.5129700470715761],[115,4,64,-0.532755671069026],[115,4,65,-0.5314468089491129],[115,4,66,-0.530003672465682],[115,4,67,-0.5285049434751272],[115,4,68,-0.5272261556237936],[115,4,69,-0.5260342918336391],[115,4,70,-0.5249284580349922],[115,4,71,-0.5235806312412024],[115,4,72,-0.5217186473309994],[115,4,73,-0.5196252521127462],[115,4,74,-0.5176558569073677],[115,4,75,-0.5162321664392948],[115,4,76,-0.515502898953855],[115,4,77,-0.5150719676166773],[115,4,78,-0.5142765641212463],[115,4,79,-0.5129700470715761],[115,5,64,-0.532755671069026],[115,5,65,-0.5314468089491129],[115,5,66,-0.530003672465682],[115,5,67,-0.5285049434751272],[115,5,68,-0.5272261556237936],[115,5,69,-0.5260342918336391],[115,5,70,-0.5249284580349922],[115,5,71,-0.5235806312412024],[115,5,72,-0.5217186473309994],[115,5,73,-0.5196252521127462],[115,5,74,-0.5176558569073677],[115,5,75,-0.5162321664392948],[115,5,76,-0.515502898953855],[115,5,77,-0.5150719676166773],[115,5,78,-0.5142765641212463],[115,5,79,-0.5129700470715761],[115,6,64,-0.532755671069026],[115,6,65,-0.5314468089491129],[115,6,66,-0.530003672465682],[115,6,67,-0.5285049434751272],[115,6,68,-0.5272261556237936],[115,6,69,-0.5260342918336391],[115,6,70,-0.5249284580349922],[115,6,71,-0.5235806312412024],[115,6,72,-0.5217186473309994],[115,6,73,-0.5196252521127462],[115,6,74,-0.5176558569073677],[115,6,75,-0.5162321664392948],[115,6,76,-0.515502898953855],[115,6,77,-0.5150719676166773],[115,6,78,-0.5142765641212463],[115,6,79,-0.5129700470715761],[115,7,64,-0.532755671069026],[115,7,65,-0.5314468089491129],[115,7,66,-0.530003672465682],[115,7,67,-0.5285049434751272],[115,7,68,-0.5272261556237936],[115,7,69,-0.5260342918336391],[115,7,70,-0.5249284580349922],[115,7,71,-0.5235806312412024],[115,7,72,-0.5217186473309994],[115,7,73,-0.5196252521127462],[115,7,74,-0.5176558569073677],[115,7,75,-0.5162321664392948],[115,7,76,-0.515502898953855],[115,7,77,-0.5150719676166773],[115,7,78,-0.5142765641212463],[115,7,79,-0.5129700470715761],[115,8,64,-0.532755671069026],[115,8,65,-0.5314468089491129],[115,8,66,-0.530003672465682],[115,8,67,-0.5285049434751272],[115,8,68,-0.5272261556237936],[115,8,69,-0.5260342918336391],[115,8,70,-0.5249284580349922],[115,8,71,-0.5235806312412024],[115,8,72,-0.5217186473309994],[115,8,73,-0.5196252521127462],[115,8,74,-0.5176558569073677],[115,8,75,-0.5162321664392948],[115,8,76,-0.515502898953855],[115,8,77,-0.5150719676166773],[115,8,78,-0.5142765641212463],[115,8,79,-0.5129700470715761],[115,9,64,-0.532755671069026],[115,9,65,-0.5314468089491129],[115,9,66,-0.530003672465682],[115,9,67,-0.5285049434751272],[115,9,68,-0.5272261556237936],[115,9,69,-0.5260342918336391],[115,9,70,-0.5249284580349922],[115,9,71,-0.5235806312412024],[115,9,72,-0.5217186473309994],[115,9,73,-0.5196252521127462],[115,9,74,-0.5176558569073677],[115,9,75,-0.5162321664392948],[115,9,76,-0.515502898953855],[115,9,77,-0.5150719676166773],[115,9,78,-0.5142765641212463],[115,9,79,-0.5129700470715761],[115,10,64,-0.532755671069026],[115,10,65,-0.5314468089491129],[115,10,66,-0.530003672465682],[115,10,67,-0.5285049434751272],[115,10,68,-0.5272261556237936],[115,10,69,-0.5260342918336391],[115,10,70,-0.5249284580349922],[115,10,71,-0.5235806312412024],[115,10,72,-0.5217186473309994],[115,10,73,-0.5196252521127462],[115,10,74,-0.5176558569073677],[115,10,75,-0.5162321664392948],[115,10,76,-0.515502898953855],[115,10,77,-0.5150719676166773],[115,10,78,-0.5142765641212463],[115,10,79,-0.5129700470715761],[115,11,64,-0.532755671069026],[115,11,65,-0.5314468089491129],[115,11,66,-0.530003672465682],[115,11,67,-0.5285049434751272],[115,11,68,-0.5272261556237936],[115,11,69,-0.5260342918336391],[115,11,70,-0.5249284580349922],[115,11,71,-0.5235806312412024],[115,11,72,-0.5217186473309994],[115,11,73,-0.5196252521127462],[115,11,74,-0.5176558569073677],[115,11,75,-0.5162321664392948],[115,11,76,-0.515502898953855],[115,11,77,-0.5150719676166773],[115,11,78,-0.5142765641212463],[115,11,79,-0.5129700470715761],[115,12,64,-0.532755671069026],[115,12,65,-0.5314468089491129],[115,12,66,-0.530003672465682],[115,12,67,-0.5285049434751272],[115,12,68,-0.5272261556237936],[115,12,69,-0.5260342918336391],[115,12,70,-0.5249284580349922],[115,12,71,-0.5235806312412024],[115,12,72,-0.5217186473309994],[115,12,73,-0.5196252521127462],[115,12,74,-0.5176558569073677],[115,12,75,-0.5162321664392948],[115,12,76,-0.515502898953855],[115,12,77,-0.5150719676166773],[115,12,78,-0.5142765641212463],[115,12,79,-0.5129700470715761],[115,13,64,-0.532755671069026],[115,13,65,-0.5314468089491129],[115,13,66,-0.530003672465682],[115,13,67,-0.5285049434751272],[115,13,68,-0.5272261556237936],[115,13,69,-0.5260342918336391],[115,13,70,-0.5249284580349922],[115,13,71,-0.5235806312412024],[115,13,72,-0.5217186473309994],[115,13,73,-0.5196252521127462],[115,13,74,-0.5176558569073677],[115,13,75,-0.5162321664392948],[115,13,76,-0.515502898953855],[115,13,77,-0.5150719676166773],[115,13,78,-0.5142765641212463],[115,13,79,-0.5129700470715761],[115,14,64,-0.532755671069026],[115,14,65,-0.5314468089491129],[115,14,66,-0.530003672465682],[115,14,67,-0.5285049434751272],[115,14,68,-0.5272261556237936],[115,14,69,-0.5260342918336391],[115,14,70,-0.5249284580349922],[115,14,71,-0.5235806312412024],[115,14,72,-0.5217186473309994],[115,14,73,-0.5196252521127462],[115,14,74,-0.5176558569073677],[115,14,75,-0.5162321664392948],[115,14,76,-0.515502898953855],[115,14,77,-0.5150719676166773],[115,14,78,-0.5142765641212463],[115,14,79,-0.5129700470715761],[115,15,64,-0.532755671069026],[115,15,65,-0.5314468089491129],[115,15,66,-0.530003672465682],[115,15,67,-0.5285049434751272],[115,15,68,-0.5272261556237936],[115,15,69,-0.5260342918336391],[115,15,70,-0.5249284580349922],[115,15,71,-0.5235806312412024],[115,15,72,-0.5217186473309994],[115,15,73,-0.5196252521127462],[115,15,74,-0.5176558569073677],[115,15,75,-0.5162321664392948],[115,15,76,-0.515502898953855],[115,15,77,-0.5150719676166773],[115,15,78,-0.5142765641212463],[115,15,79,-0.5129700470715761],[115,16,64,-0.532755671069026],[115,16,65,-0.5314468089491129],[115,16,66,-0.530003672465682],[115,16,67,-0.5285049434751272],[115,16,68,-0.5272261556237936],[115,16,69,-0.5260342918336391],[115,16,70,-0.5249284580349922],[115,16,71,-0.5235806312412024],[115,16,72,-0.5217186473309994],[115,16,73,-0.5196252521127462],[115,16,74,-0.5176558569073677],[115,16,75,-0.5162321664392948],[115,16,76,-0.515502898953855],[115,16,77,-0.5150719676166773],[115,16,78,-0.5142765641212463],[115,16,79,-0.5129700470715761],[115,17,64,-0.532755671069026],[115,17,65,-0.5314468089491129],[115,17,66,-0.530003672465682],[115,17,67,-0.5285049434751272],[115,17,68,-0.5272261556237936],[115,17,69,-0.5260342918336391],[115,17,70,-0.5249284580349922],[115,17,71,-0.5235806312412024],[115,17,72,-0.5217186473309994],[115,17,73,-0.5196252521127462],[115,17,74,-0.5176558569073677],[115,17,75,-0.5162321664392948],[115,17,76,-0.515502898953855],[115,17,77,-0.5150719676166773],[115,17,78,-0.5142765641212463],[115,17,79,-0.5129700470715761],[115,18,64,-0.532755671069026],[115,18,65,-0.5314468089491129],[115,18,66,-0.530003672465682],[115,18,67,-0.5285049434751272],[115,18,68,-0.5272261556237936],[115,18,69,-0.5260342918336391],[115,18,70,-0.5249284580349922],[115,18,71,-0.5235806312412024],[115,18,72,-0.5217186473309994],[115,18,73,-0.5196252521127462],[115,18,74,-0.5176558569073677],[115,18,75,-0.5162321664392948],[115,18,76,-0.515502898953855],[115,18,77,-0.5150719676166773],[115,18,78,-0.5142765641212463],[115,18,79,-0.5129700470715761],[115,19,64,-0.532755671069026],[115,19,65,-0.5314468089491129],[115,19,66,-0.530003672465682],[115,19,67,-0.5285049434751272],[115,19,68,-0.5272261556237936],[115,19,69,-0.5260342918336391],[115,19,70,-0.5249284580349922],[115,19,71,-0.5235806312412024],[115,19,72,-0.5217186473309994],[115,19,73,-0.5196252521127462],[115,19,74,-0.5176558569073677],[115,19,75,-0.5162321664392948],[115,19,76,-0.515502898953855],[115,19,77,-0.5150719676166773],[115,19,78,-0.5142765641212463],[115,19,79,-0.5129700470715761],[115,20,64,-0.532755671069026],[115,20,65,-0.5314468089491129],[115,20,66,-0.530003672465682],[115,20,67,-0.5285049434751272],[115,20,68,-0.5272261556237936],[115,20,69,-0.5260342918336391],[115,20,70,-0.5249284580349922],[115,20,71,-0.5235806312412024],[115,20,72,-0.5217186473309994],[115,20,73,-0.5196252521127462],[115,20,74,-0.5176558569073677],[115,20,75,-0.5162321664392948],[115,20,76,-0.515502898953855],[115,20,77,-0.5150719676166773],[115,20,78,-0.5142765641212463],[115,20,79,-0.5129700470715761],[115,21,64,-0.532755671069026],[115,21,65,-0.5314468089491129],[115,21,66,-0.530003672465682],[115,21,67,-0.5285049434751272],[115,21,68,-0.5272261556237936],[115,21,69,-0.5260342918336391],[115,21,70,-0.5249284580349922],[115,21,71,-0.5235806312412024],[115,21,72,-0.5217186473309994],[115,21,73,-0.5196252521127462],[115,21,74,-0.5176558569073677],[115,21,75,-0.5162321664392948],[115,21,76,-0.515502898953855],[115,21,77,-0.5150719676166773],[115,21,78,-0.5142765641212463],[115,21,79,-0.5129700470715761],[115,22,64,-0.532755671069026],[115,22,65,-0.5314468089491129],[115,22,66,-0.530003672465682],[115,22,67,-0.5285049434751272],[115,22,68,-0.5272261556237936],[115,22,69,-0.5260342918336391],[115,22,70,-0.5249284580349922],[115,22,71,-0.5235806312412024],[115,22,72,-0.5217186473309994],[115,22,73,-0.5196252521127462],[115,22,74,-0.5176558569073677],[115,22,75,-0.5162321664392948],[115,22,76,-0.515502898953855],[115,22,77,-0.5150719676166773],[115,22,78,-0.5142765641212463],[115,22,79,-0.5129700470715761],[115,23,64,-0.532755671069026],[115,23,65,-0.5314468089491129],[115,23,66,-0.530003672465682],[115,23,67,-0.5285049434751272],[115,23,68,-0.5272261556237936],[115,23,69,-0.5260342918336391],[115,23,70,-0.5249284580349922],[115,23,71,-0.5235806312412024],[115,23,72,-0.5217186473309994],[115,23,73,-0.5196252521127462],[115,23,74,-0.5176558569073677],[115,23,75,-0.5162321664392948],[115,23,76,-0.515502898953855],[115,23,77,-0.5150719676166773],[115,23,78,-0.5142765641212463],[115,23,79,-0.5129700470715761],[115,24,64,-0.532755671069026],[115,24,65,-0.5314468089491129],[115,24,66,-0.530003672465682],[115,24,67,-0.5285049434751272],[115,24,68,-0.5272261556237936],[115,24,69,-0.5260342918336391],[115,24,70,-0.5249284580349922],[115,24,71,-0.5235806312412024],[115,24,72,-0.5217186473309994],[115,24,73,-0.5196252521127462],[115,24,74,-0.5176558569073677],[115,24,75,-0.5162321664392948],[115,24,76,-0.515502898953855],[115,24,77,-0.5150719676166773],[115,24,78,-0.5142765641212463],[115,24,79,-0.5129700470715761],[115,25,64,-0.532755671069026],[115,25,65,-0.5314468089491129],[115,25,66,-0.530003672465682],[115,25,67,-0.5285049434751272],[115,25,68,-0.5272261556237936],[115,25,69,-0.5260342918336391],[115,25,70,-0.5249284580349922],[115,25,71,-0.5235806312412024],[115,25,72,-0.5217186473309994],[115,25,73,-0.5196252521127462],[115,25,74,-0.5176558569073677],[115,25,75,-0.5162321664392948],[115,25,76,-0.515502898953855],[115,25,77,-0.5150719676166773],[115,25,78,-0.5142765641212463],[115,25,79,-0.5129700470715761],[115,26,64,-0.532755671069026],[115,26,65,-0.5314468089491129],[115,26,66,-0.530003672465682],[115,26,67,-0.5285049434751272],[115,26,68,-0.5272261556237936],[115,26,69,-0.5260342918336391],[115,26,70,-0.5249284580349922],[115,26,71,-0.5235806312412024],[115,26,72,-0.5217186473309994],[115,26,73,-0.5196252521127462],[115,26,74,-0.5176558569073677],[115,26,75,-0.5162321664392948],[115,26,76,-0.515502898953855],[115,26,77,-0.5150719676166773],[115,26,78,-0.5142765641212463],[115,26,79,-0.5129700470715761],[115,27,64,-0.532755671069026],[115,27,65,-0.5314468089491129],[115,27,66,-0.530003672465682],[115,27,67,-0.5285049434751272],[115,27,68,-0.5272261556237936],[115,27,69,-0.5260342918336391],[115,27,70,-0.5249284580349922],[115,27,71,-0.5235806312412024],[115,27,72,-0.5217186473309994],[115,27,73,-0.5196252521127462],[115,27,74,-0.5176558569073677],[115,27,75,-0.5162321664392948],[115,27,76,-0.515502898953855],[115,27,77,-0.5150719676166773],[115,27,78,-0.5142765641212463],[115,27,79,-0.5129700470715761],[115,28,64,-0.532755671069026],[115,28,65,-0.5314468089491129],[115,28,66,-0.530003672465682],[115,28,67,-0.5285049434751272],[115,28,68,-0.5272261556237936],[115,28,69,-0.5260342918336391],[115,28,70,-0.5249284580349922],[115,28,71,-0.5235806312412024],[115,28,72,-0.5217186473309994],[115,28,73,-0.5196252521127462],[115,28,74,-0.5176558569073677],[115,28,75,-0.5162321664392948],[115,28,76,-0.515502898953855],[115,28,77,-0.5150719676166773],[115,28,78,-0.5142765641212463],[115,28,79,-0.5129700470715761],[115,29,64,-0.532755671069026],[115,29,65,-0.5314468089491129],[115,29,66,-0.530003672465682],[115,29,67,-0.5285049434751272],[115,29,68,-0.5272261556237936],[115,29,69,-0.5260342918336391],[115,29,70,-0.5249284580349922],[115,29,71,-0.5235806312412024],[115,29,72,-0.5217186473309994],[115,29,73,-0.5196252521127462],[115,29,74,-0.5176558569073677],[115,29,75,-0.5162321664392948],[115,29,76,-0.515502898953855],[115,29,77,-0.5150719676166773],[115,29,78,-0.5142765641212463],[115,29,79,-0.5129700470715761],[115,30,64,-0.532755671069026],[115,30,65,-0.5314468089491129],[115,30,66,-0.530003672465682],[115,30,67,-0.5285049434751272],[115,30,68,-0.5272261556237936],[115,30,69,-0.5260342918336391],[115,30,70,-0.5249284580349922],[115,30,71,-0.5235806312412024],[115,30,72,-0.5217186473309994],[115,30,73,-0.5196252521127462],[115,30,74,-0.5176558569073677],[115,30,75,-0.5162321664392948],[115,30,76,-0.515502898953855],[115,30,77,-0.5150719676166773],[115,30,78,-0.5142765641212463],[115,30,79,-0.5129700470715761],[115,31,64,-0.532755671069026],[115,31,65,-0.5314468089491129],[115,31,66,-0.530003672465682],[115,31,67,-0.5285049434751272],[115,31,68,-0.5272261556237936],[115,31,69,-0.5260342918336391],[115,31,70,-0.5249284580349922],[115,31,71,-0.5235806312412024],[115,31,72,-0.5217186473309994],[115,31,73,-0.5196252521127462],[115,31,74,-0.5176558569073677],[115,31,75,-0.5162321664392948],[115,31,76,-0.515502898953855],[115,31,77,-0.5150719676166773],[115,31,78,-0.5142765641212463],[115,31,79,-0.5129700470715761],[115,32,64,-0.532755671069026],[115,32,65,-0.5314468089491129],[115,32,66,-0.530003672465682],[115,32,67,-0.5285049434751272],[115,32,68,-0.5272261556237936],[115,32,69,-0.5260342918336391],[115,32,70,-0.5249284580349922],[115,32,71,-0.5235806312412024],[115,32,72,-0.5217186473309994],[115,32,73,-0.5196252521127462],[115,32,74,-0.5176558569073677],[115,32,75,-0.5162321664392948],[115,32,76,-0.515502898953855],[115,32,77,-0.5150719676166773],[115,32,78,-0.5142765641212463],[115,32,79,-0.5129700470715761],[115,33,64,-0.532755671069026],[115,33,65,-0.5314468089491129],[115,33,66,-0.530003672465682],[115,33,67,-0.5285049434751272],[115,33,68,-0.5272261556237936],[115,33,69,-0.5260342918336391],[115,33,70,-0.5249284580349922],[115,33,71,-0.5235806312412024],[115,33,72,-0.5217186473309994],[115,33,73,-0.5196252521127462],[115,33,74,-0.5176558569073677],[115,33,75,-0.5162321664392948],[115,33,76,-0.515502898953855],[115,33,77,-0.5150719676166773],[115,33,78,-0.5142765641212463],[115,33,79,-0.5129700470715761],[115,34,64,-0.532755671069026],[115,34,65,-0.5314468089491129],[115,34,66,-0.530003672465682],[115,34,67,-0.5285049434751272],[115,34,68,-0.5272261556237936],[115,34,69,-0.5260342918336391],[115,34,70,-0.5249284580349922],[115,34,71,-0.5235806312412024],[115,34,72,-0.5217186473309994],[115,34,73,-0.5196252521127462],[115,34,74,-0.5176558569073677],[115,34,75,-0.5162321664392948],[115,34,76,-0.515502898953855],[115,34,77,-0.5150719676166773],[115,34,78,-0.5142765641212463],[115,34,79,-0.5129700470715761],[115,35,64,-0.532755671069026],[115,35,65,-0.5314468089491129],[115,35,66,-0.530003672465682],[115,35,67,-0.5285049434751272],[115,35,68,-0.5272261556237936],[115,35,69,-0.5260342918336391],[115,35,70,-0.5249284580349922],[115,35,71,-0.5235806312412024],[115,35,72,-0.5217186473309994],[115,35,73,-0.5196252521127462],[115,35,74,-0.5176558569073677],[115,35,75,-0.5162321664392948],[115,35,76,-0.515502898953855],[115,35,77,-0.5150719676166773],[115,35,78,-0.5142765641212463],[115,35,79,-0.5129700470715761],[115,36,64,-0.532755671069026],[115,36,65,-0.5314468089491129],[115,36,66,-0.530003672465682],[115,36,67,-0.5285049434751272],[115,36,68,-0.5272261556237936],[115,36,69,-0.5260342918336391],[115,36,70,-0.5249284580349922],[115,36,71,-0.5235806312412024],[115,36,72,-0.5217186473309994],[115,36,73,-0.5196252521127462],[115,36,74,-0.5176558569073677],[115,36,75,-0.5162321664392948],[115,36,76,-0.515502898953855],[115,36,77,-0.5150719676166773],[115,36,78,-0.5142765641212463],[115,36,79,-0.5129700470715761],[115,37,64,-0.532755671069026],[115,37,65,-0.5314468089491129],[115,37,66,-0.530003672465682],[115,37,67,-0.5285049434751272],[115,37,68,-0.5272261556237936],[115,37,69,-0.5260342918336391],[115,37,70,-0.5249284580349922],[115,37,71,-0.5235806312412024],[115,37,72,-0.5217186473309994],[115,37,73,-0.5196252521127462],[115,37,74,-0.5176558569073677],[115,37,75,-0.5162321664392948],[115,37,76,-0.515502898953855],[115,37,77,-0.5150719676166773],[115,37,78,-0.5142765641212463],[115,37,79,-0.5129700470715761],[115,38,64,-0.532755671069026],[115,38,65,-0.5314468089491129],[115,38,66,-0.530003672465682],[115,38,67,-0.5285049434751272],[115,38,68,-0.5272261556237936],[115,38,69,-0.5260342918336391],[115,38,70,-0.5249284580349922],[115,38,71,-0.5235806312412024],[115,38,72,-0.5217186473309994],[115,38,73,-0.5196252521127462],[115,38,74,-0.5176558569073677],[115,38,75,-0.5162321664392948],[115,38,76,-0.515502898953855],[115,38,77,-0.5150719676166773],[115,38,78,-0.5142765641212463],[115,38,79,-0.5129700470715761],[115,39,64,-0.532755671069026],[115,39,65,-0.5314468089491129],[115,39,66,-0.530003672465682],[115,39,67,-0.5285049434751272],[115,39,68,-0.5272261556237936],[115,39,69,-0.5260342918336391],[115,39,70,-0.5249284580349922],[115,39,71,-0.5235806312412024],[115,39,72,-0.5217186473309994],[115,39,73,-0.5196252521127462],[115,39,74,-0.5176558569073677],[115,39,75,-0.5162321664392948],[115,39,76,-0.515502898953855],[115,39,77,-0.5150719676166773],[115,39,78,-0.5142765641212463],[115,39,79,-0.5129700470715761],[115,40,64,-0.532755671069026],[115,40,65,-0.5314468089491129],[115,40,66,-0.530003672465682],[115,40,67,-0.5285049434751272],[115,40,68,-0.5272261556237936],[115,40,69,-0.5260342918336391],[115,40,70,-0.5249284580349922],[115,40,71,-0.5235806312412024],[115,40,72,-0.5217186473309994],[115,40,73,-0.5196252521127462],[115,40,74,-0.5176558569073677],[115,40,75,-0.5162321664392948],[115,40,76,-0.515502898953855],[115,40,77,-0.5150719676166773],[115,40,78,-0.5142765641212463],[115,40,79,-0.5129700470715761],[115,41,64,-0.532755671069026],[115,41,65,-0.5314468089491129],[115,41,66,-0.530003672465682],[115,41,67,-0.5285049434751272],[115,41,68,-0.5272261556237936],[115,41,69,-0.5260342918336391],[115,41,70,-0.5249284580349922],[115,41,71,-0.5235806312412024],[115,41,72,-0.5217186473309994],[115,41,73,-0.5196252521127462],[115,41,74,-0.5176558569073677],[115,41,75,-0.5162321664392948],[115,41,76,-0.515502898953855],[115,41,77,-0.5150719676166773],[115,41,78,-0.5142765641212463],[115,41,79,-0.5129700470715761],[115,42,64,-0.532755671069026],[115,42,65,-0.5314468089491129],[115,42,66,-0.530003672465682],[115,42,67,-0.5285049434751272],[115,42,68,-0.5272261556237936],[115,42,69,-0.5260342918336391],[115,42,70,-0.5249284580349922],[115,42,71,-0.5235806312412024],[115,42,72,-0.5217186473309994],[115,42,73,-0.5196252521127462],[115,42,74,-0.5176558569073677],[115,42,75,-0.5162321664392948],[115,42,76,-0.515502898953855],[115,42,77,-0.5150719676166773],[115,42,78,-0.5142765641212463],[115,42,79,-0.5129700470715761],[115,43,64,-0.532755671069026],[115,43,65,-0.5314468089491129],[115,43,66,-0.530003672465682],[115,43,67,-0.5285049434751272],[115,43,68,-0.5272261556237936],[115,43,69,-0.5260342918336391],[115,43,70,-0.5249284580349922],[115,43,71,-0.5235806312412024],[115,43,72,-0.5217186473309994],[115,43,73,-0.5196252521127462],[115,43,74,-0.5176558569073677],[115,43,75,-0.5162321664392948],[115,43,76,-0.515502898953855],[115,43,77,-0.5150719676166773],[115,43,78,-0.5142765641212463],[115,43,79,-0.5129700470715761],[115,44,64,-0.532755671069026],[115,44,65,-0.5314468089491129],[115,44,66,-0.530003672465682],[115,44,67,-0.5285049434751272],[115,44,68,-0.5272261556237936],[115,44,69,-0.5260342918336391],[115,44,70,-0.5249284580349922],[115,44,71,-0.5235806312412024],[115,44,72,-0.5217186473309994],[115,44,73,-0.5196252521127462],[115,44,74,-0.5176558569073677],[115,44,75,-0.5162321664392948],[115,44,76,-0.515502898953855],[115,44,77,-0.5150719676166773],[115,44,78,-0.5142765641212463],[115,44,79,-0.5129700470715761],[115,45,64,-0.532755671069026],[115,45,65,-0.5314468089491129],[115,45,66,-0.530003672465682],[115,45,67,-0.5285049434751272],[115,45,68,-0.5272261556237936],[115,45,69,-0.5260342918336391],[115,45,70,-0.5249284580349922],[115,45,71,-0.5235806312412024],[115,45,72,-0.5217186473309994],[115,45,73,-0.5196252521127462],[115,45,74,-0.5176558569073677],[115,45,75,-0.5162321664392948],[115,45,76,-0.515502898953855],[115,45,77,-0.5150719676166773],[115,45,78,-0.5142765641212463],[115,45,79,-0.5129700470715761],[115,46,64,-0.532755671069026],[115,46,65,-0.5314468089491129],[115,46,66,-0.530003672465682],[115,46,67,-0.5285049434751272],[115,46,68,-0.5272261556237936],[115,46,69,-0.5260342918336391],[115,46,70,-0.5249284580349922],[115,46,71,-0.5235806312412024],[115,46,72,-0.5217186473309994],[115,46,73,-0.5196252521127462],[115,46,74,-0.5176558569073677],[115,46,75,-0.5162321664392948],[115,46,76,-0.515502898953855],[115,46,77,-0.5150719676166773],[115,46,78,-0.5142765641212463],[115,46,79,-0.5129700470715761],[115,47,64,-0.532755671069026],[115,47,65,-0.5314468089491129],[115,47,66,-0.530003672465682],[115,47,67,-0.5285049434751272],[115,47,68,-0.5272261556237936],[115,47,69,-0.5260342918336391],[115,47,70,-0.5249284580349922],[115,47,71,-0.5235806312412024],[115,47,72,-0.5217186473309994],[115,47,73,-0.5196252521127462],[115,47,74,-0.5176558569073677],[115,47,75,-0.5162321664392948],[115,47,76,-0.515502898953855],[115,47,77,-0.5150719676166773],[115,47,78,-0.5142765641212463],[115,47,79,-0.5129700470715761],[115,48,64,-0.532755671069026],[115,48,65,-0.5314468089491129],[115,48,66,-0.530003672465682],[115,48,67,-0.5285049434751272],[115,48,68,-0.5272261556237936],[115,48,69,-0.5260342918336391],[115,48,70,-0.5249284580349922],[115,48,71,-0.5235806312412024],[115,48,72,-0.5217186473309994],[115,48,73,-0.5196252521127462],[115,48,74,-0.5176558569073677],[115,48,75,-0.5162321664392948],[115,48,76,-0.515502898953855],[115,48,77,-0.5150719676166773],[115,48,78,-0.5142765641212463],[115,48,79,-0.5129700470715761],[115,49,64,-0.532755671069026],[115,49,65,-0.5314468089491129],[115,49,66,-0.530003672465682],[115,49,67,-0.5285049434751272],[115,49,68,-0.5272261556237936],[115,49,69,-0.5260342918336391],[115,49,70,-0.5249284580349922],[115,49,71,-0.5235806312412024],[115,49,72,-0.5217186473309994],[115,49,73,-0.5196252521127462],[115,49,74,-0.5176558569073677],[115,49,75,-0.5162321664392948],[115,49,76,-0.515502898953855],[115,49,77,-0.5150719676166773],[115,49,78,-0.5142765641212463],[115,49,79,-0.5129700470715761],[115,50,64,-0.532755671069026],[115,50,65,-0.5314468089491129],[115,50,66,-0.530003672465682],[115,50,67,-0.5285049434751272],[115,50,68,-0.5272261556237936],[115,50,69,-0.5260342918336391],[115,50,70,-0.5249284580349922],[115,50,71,-0.5235806312412024],[115,50,72,-0.5217186473309994],[115,50,73,-0.5196252521127462],[115,50,74,-0.5176558569073677],[115,50,75,-0.5162321664392948],[115,50,76,-0.515502898953855],[115,50,77,-0.5150719676166773],[115,50,78,-0.5142765641212463],[115,50,79,-0.5129700470715761],[115,51,64,-0.532755671069026],[115,51,65,-0.5314468089491129],[115,51,66,-0.530003672465682],[115,51,67,-0.5285049434751272],[115,51,68,-0.5272261556237936],[115,51,69,-0.5260342918336391],[115,51,70,-0.5249284580349922],[115,51,71,-0.5235806312412024],[115,51,72,-0.5217186473309994],[115,51,73,-0.5196252521127462],[115,51,74,-0.5176558569073677],[115,51,75,-0.5162321664392948],[115,51,76,-0.515502898953855],[115,51,77,-0.5150719676166773],[115,51,78,-0.5142765641212463],[115,51,79,-0.5129700470715761],[115,52,64,-0.532755671069026],[115,52,65,-0.5314468089491129],[115,52,66,-0.530003672465682],[115,52,67,-0.5285049434751272],[115,52,68,-0.5272261556237936],[115,52,69,-0.5260342918336391],[115,52,70,-0.5249284580349922],[115,52,71,-0.5235806312412024],[115,52,72,-0.5217186473309994],[115,52,73,-0.5196252521127462],[115,52,74,-0.5176558569073677],[115,52,75,-0.5162321664392948],[115,52,76,-0.515502898953855],[115,52,77,-0.5150719676166773],[115,52,78,-0.5142765641212463],[115,52,79,-0.5129700470715761],[115,53,64,-0.532755671069026],[115,53,65,-0.5314468089491129],[115,53,66,-0.530003672465682],[115,53,67,-0.5285049434751272],[115,53,68,-0.5272261556237936],[115,53,69,-0.5260342918336391],[115,53,70,-0.5249284580349922],[115,53,71,-0.5235806312412024],[115,53,72,-0.5217186473309994],[115,53,73,-0.5196252521127462],[115,53,74,-0.5176558569073677],[115,53,75,-0.5162321664392948],[115,53,76,-0.515502898953855],[115,53,77,-0.5150719676166773],[115,53,78,-0.5142765641212463],[115,53,79,-0.5129700470715761],[115,54,64,-0.532755671069026],[115,54,65,-0.5314468089491129],[115,54,66,-0.530003672465682],[115,54,67,-0.5285049434751272],[115,54,68,-0.5272261556237936],[115,54,69,-0.5260342918336391],[115,54,70,-0.5249284580349922],[115,54,71,-0.5235806312412024],[115,54,72,-0.5217186473309994],[115,54,73,-0.5196252521127462],[115,54,74,-0.5176558569073677],[115,54,75,-0.5162321664392948],[115,54,76,-0.515502898953855],[115,54,77,-0.5150719676166773],[115,54,78,-0.5142765641212463],[115,54,79,-0.5129700470715761],[115,55,64,-0.532755671069026],[115,55,65,-0.5314468089491129],[115,55,66,-0.530003672465682],[115,55,67,-0.5285049434751272],[115,55,68,-0.5272261556237936],[115,55,69,-0.5260342918336391],[115,55,70,-0.5249284580349922],[115,55,71,-0.5235806312412024],[115,55,72,-0.5217186473309994],[115,55,73,-0.5196252521127462],[115,55,74,-0.5176558569073677],[115,55,75,-0.5162321664392948],[115,55,76,-0.515502898953855],[115,55,77,-0.5150719676166773],[115,55,78,-0.5142765641212463],[115,55,79,-0.5129700470715761],[115,56,64,-0.532755671069026],[115,56,65,-0.5314468089491129],[115,56,66,-0.530003672465682],[115,56,67,-0.5285049434751272],[115,56,68,-0.5272261556237936],[115,56,69,-0.5260342918336391],[115,56,70,-0.5249284580349922],[115,56,71,-0.5235806312412024],[115,56,72,-0.5217186473309994],[115,56,73,-0.5196252521127462],[115,56,74,-0.5176558569073677],[115,56,75,-0.5162321664392948],[115,56,76,-0.515502898953855],[115,56,77,-0.5150719676166773],[115,56,78,-0.5142765641212463],[115,56,79,-0.5129700470715761],[115,57,64,-0.532755671069026],[115,57,65,-0.5314468089491129],[115,57,66,-0.530003672465682],[115,57,67,-0.5285049434751272],[115,57,68,-0.5272261556237936],[115,57,69,-0.5260342918336391],[115,57,70,-0.5249284580349922],[115,57,71,-0.5235806312412024],[115,57,72,-0.5217186473309994],[115,57,73,-0.5196252521127462],[115,57,74,-0.5176558569073677],[115,57,75,-0.5162321664392948],[115,57,76,-0.515502898953855],[115,57,77,-0.5150719676166773],[115,57,78,-0.5142765641212463],[115,57,79,-0.5129700470715761],[115,58,64,-0.532755671069026],[115,58,65,-0.5314468089491129],[115,58,66,-0.530003672465682],[115,58,67,-0.5285049434751272],[115,58,68,-0.5272261556237936],[115,58,69,-0.5260342918336391],[115,58,70,-0.5249284580349922],[115,58,71,-0.5235806312412024],[115,58,72,-0.5217186473309994],[115,58,73,-0.5196252521127462],[115,58,74,-0.5176558569073677],[115,58,75,-0.5162321664392948],[115,58,76,-0.515502898953855],[115,58,77,-0.5150719676166773],[115,58,78,-0.5142765641212463],[115,58,79,-0.5129700470715761],[115,59,64,-0.532755671069026],[115,59,65,-0.5314468089491129],[115,59,66,-0.530003672465682],[115,59,67,-0.5285049434751272],[115,59,68,-0.5272261556237936],[115,59,69,-0.5260342918336391],[115,59,70,-0.5249284580349922],[115,59,71,-0.5235806312412024],[115,59,72,-0.5217186473309994],[115,59,73,-0.5196252521127462],[115,59,74,-0.5176558569073677],[115,59,75,-0.5162321664392948],[115,59,76,-0.515502898953855],[115,59,77,-0.5150719676166773],[115,59,78,-0.5142765641212463],[115,59,79,-0.5129700470715761],[115,60,64,-0.532755671069026],[115,60,65,-0.5314468089491129],[115,60,66,-0.530003672465682],[115,60,67,-0.5285049434751272],[115,60,68,-0.5272261556237936],[115,60,69,-0.5260342918336391],[115,60,70,-0.5249284580349922],[115,60,71,-0.5235806312412024],[115,60,72,-0.5217186473309994],[115,60,73,-0.5196252521127462],[115,60,74,-0.5176558569073677],[115,60,75,-0.5162321664392948],[115,60,76,-0.515502898953855],[115,60,77,-0.5150719676166773],[115,60,78,-0.5142765641212463],[115,60,79,-0.5129700470715761],[115,61,64,-0.532755671069026],[115,61,65,-0.5314468089491129],[115,61,66,-0.530003672465682],[115,61,67,-0.5285049434751272],[115,61,68,-0.5272261556237936],[115,61,69,-0.5260342918336391],[115,61,70,-0.5249284580349922],[115,61,71,-0.5235806312412024],[115,61,72,-0.5217186473309994],[115,61,73,-0.5196252521127462],[115,61,74,-0.5176558569073677],[115,61,75,-0.5162321664392948],[115,61,76,-0.515502898953855],[115,61,77,-0.5150719676166773],[115,61,78,-0.5142765641212463],[115,61,79,-0.5129700470715761],[115,62,64,-0.532755671069026],[115,62,65,-0.5314468089491129],[115,62,66,-0.530003672465682],[115,62,67,-0.5285049434751272],[115,62,68,-0.5272261556237936],[115,62,69,-0.5260342918336391],[115,62,70,-0.5249284580349922],[115,62,71,-0.5235806312412024],[115,62,72,-0.5217186473309994],[115,62,73,-0.5196252521127462],[115,62,74,-0.5176558569073677],[115,62,75,-0.5162321664392948],[115,62,76,-0.515502898953855],[115,62,77,-0.5150719676166773],[115,62,78,-0.5142765641212463],[115,62,79,-0.5129700470715761],[115,63,64,-0.532755671069026],[115,63,65,-0.5314468089491129],[115,63,66,-0.530003672465682],[115,63,67,-0.5285049434751272],[115,63,68,-0.5272261556237936],[115,63,69,-0.5260342918336391],[115,63,70,-0.5249284580349922],[115,63,71,-0.5235806312412024],[115,63,72,-0.5217186473309994],[115,63,73,-0.5196252521127462],[115,63,74,-0.5176558569073677],[115,63,75,-0.5162321664392948],[115,63,76,-0.515502898953855],[115,63,77,-0.5150719676166773],[115,63,78,-0.5142765641212463],[115,63,79,-0.5129700470715761],[115,64,64,-0.532755671069026],[115,64,65,-0.5314468089491129],[115,64,66,-0.530003672465682],[115,64,67,-0.5285049434751272],[115,64,68,-0.5272261556237936],[115,64,69,-0.5260342918336391],[115,64,70,-0.5249284580349922],[115,64,71,-0.5235806312412024],[115,64,72,-0.5217186473309994],[115,64,73,-0.5196252521127462],[115,64,74,-0.5176558569073677],[115,64,75,-0.5162321664392948],[115,64,76,-0.515502898953855],[115,64,77,-0.5150719676166773],[115,64,78,-0.5142765641212463],[115,64,79,-0.5129700470715761],[115,65,64,-0.532755671069026],[115,65,65,-0.5314468089491129],[115,65,66,-0.530003672465682],[115,65,67,-0.5285049434751272],[115,65,68,-0.5272261556237936],[115,65,69,-0.5260342918336391],[115,65,70,-0.5249284580349922],[115,65,71,-0.5235806312412024],[115,65,72,-0.5217186473309994],[115,65,73,-0.5196252521127462],[115,65,74,-0.5176558569073677],[115,65,75,-0.5162321664392948],[115,65,76,-0.515502898953855],[115,65,77,-0.5150719676166773],[115,65,78,-0.5142765641212463],[115,65,79,-0.5129700470715761],[115,66,64,-0.532755671069026],[115,66,65,-0.5314468089491129],[115,66,66,-0.530003672465682],[115,66,67,-0.5285049434751272],[115,66,68,-0.5272261556237936],[115,66,69,-0.5260342918336391],[115,66,70,-0.5249284580349922],[115,66,71,-0.5235806312412024],[115,66,72,-0.5217186473309994],[115,66,73,-0.5196252521127462],[115,66,74,-0.5176558569073677],[115,66,75,-0.5162321664392948],[115,66,76,-0.515502898953855],[115,66,77,-0.5150719676166773],[115,66,78,-0.5142765641212463],[115,66,79,-0.5129700470715761],[115,67,64,-0.532755671069026],[115,67,65,-0.5314468089491129],[115,67,66,-0.530003672465682],[115,67,67,-0.5285049434751272],[115,67,68,-0.5272261556237936],[115,67,69,-0.5260342918336391],[115,67,70,-0.5249284580349922],[115,67,71,-0.5235806312412024],[115,67,72,-0.5217186473309994],[115,67,73,-0.5196252521127462],[115,67,74,-0.5176558569073677],[115,67,75,-0.5162321664392948],[115,67,76,-0.515502898953855],[115,67,77,-0.5150719676166773],[115,67,78,-0.5142765641212463],[115,67,79,-0.5129700470715761],[115,68,64,-0.532755671069026],[115,68,65,-0.5314468089491129],[115,68,66,-0.530003672465682],[115,68,67,-0.5285049434751272],[115,68,68,-0.5272261556237936],[115,68,69,-0.5260342918336391],[115,68,70,-0.5249284580349922],[115,68,71,-0.5235806312412024],[115,68,72,-0.5217186473309994],[115,68,73,-0.5196252521127462],[115,68,74,-0.5176558569073677],[115,68,75,-0.5162321664392948],[115,68,76,-0.515502898953855],[115,68,77,-0.5150719676166773],[115,68,78,-0.5142765641212463],[115,68,79,-0.5129700470715761],[115,69,64,-0.532755671069026],[115,69,65,-0.5314468089491129],[115,69,66,-0.530003672465682],[115,69,67,-0.5285049434751272],[115,69,68,-0.5272261556237936],[115,69,69,-0.5260342918336391],[115,69,70,-0.5249284580349922],[115,69,71,-0.5235806312412024],[115,69,72,-0.5217186473309994],[115,69,73,-0.5196252521127462],[115,69,74,-0.5176558569073677],[115,69,75,-0.5162321664392948],[115,69,76,-0.515502898953855],[115,69,77,-0.5150719676166773],[115,69,78,-0.5142765641212463],[115,69,79,-0.5129700470715761],[115,70,64,-0.532755671069026],[115,70,65,-0.5314468089491129],[115,70,66,-0.530003672465682],[115,70,67,-0.5285049434751272],[115,70,68,-0.5272261556237936],[115,70,69,-0.5260342918336391],[115,70,70,-0.5249284580349922],[115,70,71,-0.5235806312412024],[115,70,72,-0.5217186473309994],[115,70,73,-0.5196252521127462],[115,70,74,-0.5176558569073677],[115,70,75,-0.5162321664392948],[115,70,76,-0.515502898953855],[115,70,77,-0.5150719676166773],[115,70,78,-0.5142765641212463],[115,70,79,-0.5129700470715761],[115,71,64,-0.532755671069026],[115,71,65,-0.5314468089491129],[115,71,66,-0.530003672465682],[115,71,67,-0.5285049434751272],[115,71,68,-0.5272261556237936],[115,71,69,-0.5260342918336391],[115,71,70,-0.5249284580349922],[115,71,71,-0.5235806312412024],[115,71,72,-0.5217186473309994],[115,71,73,-0.5196252521127462],[115,71,74,-0.5176558569073677],[115,71,75,-0.5162321664392948],[115,71,76,-0.515502898953855],[115,71,77,-0.5150719676166773],[115,71,78,-0.5142765641212463],[115,71,79,-0.5129700470715761],[115,72,64,-0.532755671069026],[115,72,65,-0.5314468089491129],[115,72,66,-0.530003672465682],[115,72,67,-0.5285049434751272],[115,72,68,-0.5272261556237936],[115,72,69,-0.5260342918336391],[115,72,70,-0.5249284580349922],[115,72,71,-0.5235806312412024],[115,72,72,-0.5217186473309994],[115,72,73,-0.5196252521127462],[115,72,74,-0.5176558569073677],[115,72,75,-0.5162321664392948],[115,72,76,-0.515502898953855],[115,72,77,-0.5150719676166773],[115,72,78,-0.5142765641212463],[115,72,79,-0.5129700470715761],[115,73,64,-0.532755671069026],[115,73,65,-0.5314468089491129],[115,73,66,-0.530003672465682],[115,73,67,-0.5285049434751272],[115,73,68,-0.5272261556237936],[115,73,69,-0.5260342918336391],[115,73,70,-0.5249284580349922],[115,73,71,-0.5235806312412024],[115,73,72,-0.5217186473309994],[115,73,73,-0.5196252521127462],[115,73,74,-0.5176558569073677],[115,73,75,-0.5162321664392948],[115,73,76,-0.515502898953855],[115,73,77,-0.5150719676166773],[115,73,78,-0.5142765641212463],[115,73,79,-0.5129700470715761],[115,74,64,-0.532755671069026],[115,74,65,-0.5314468089491129],[115,74,66,-0.530003672465682],[115,74,67,-0.5285049434751272],[115,74,68,-0.5272261556237936],[115,74,69,-0.5260342918336391],[115,74,70,-0.5249284580349922],[115,74,71,-0.5235806312412024],[115,74,72,-0.5217186473309994],[115,74,73,-0.5196252521127462],[115,74,74,-0.5176558569073677],[115,74,75,-0.5162321664392948],[115,74,76,-0.515502898953855],[115,74,77,-0.5150719676166773],[115,74,78,-0.5142765641212463],[115,74,79,-0.5129700470715761],[115,75,64,-0.532755671069026],[115,75,65,-0.5314468089491129],[115,75,66,-0.530003672465682],[115,75,67,-0.5285049434751272],[115,75,68,-0.5272261556237936],[115,75,69,-0.5260342918336391],[115,75,70,-0.5249284580349922],[115,75,71,-0.5235806312412024],[115,75,72,-0.5217186473309994],[115,75,73,-0.5196252521127462],[115,75,74,-0.5176558569073677],[115,75,75,-0.5162321664392948],[115,75,76,-0.515502898953855],[115,75,77,-0.5150719676166773],[115,75,78,-0.5142765641212463],[115,75,79,-0.5129700470715761],[115,76,64,-0.532755671069026],[115,76,65,-0.5314468089491129],[115,76,66,-0.530003672465682],[115,76,67,-0.5285049434751272],[115,76,68,-0.5272261556237936],[115,76,69,-0.5260342918336391],[115,76,70,-0.5249284580349922],[115,76,71,-0.5235806312412024],[115,76,72,-0.5217186473309994],[115,76,73,-0.5196252521127462],[115,76,74,-0.5176558569073677],[115,76,75,-0.5162321664392948],[115,76,76,-0.515502898953855],[115,76,77,-0.5150719676166773],[115,76,78,-0.5142765641212463],[115,76,79,-0.5129700470715761],[115,77,64,-0.532755671069026],[115,77,65,-0.5314468089491129],[115,77,66,-0.530003672465682],[115,77,67,-0.5285049434751272],[115,77,68,-0.5272261556237936],[115,77,69,-0.5260342918336391],[115,77,70,-0.5249284580349922],[115,77,71,-0.5235806312412024],[115,77,72,-0.5217186473309994],[115,77,73,-0.5196252521127462],[115,77,74,-0.5176558569073677],[115,77,75,-0.5162321664392948],[115,77,76,-0.515502898953855],[115,77,77,-0.5150719676166773],[115,77,78,-0.5142765641212463],[115,77,79,-0.5129700470715761],[115,78,64,-0.532755671069026],[115,78,65,-0.5314468089491129],[115,78,66,-0.530003672465682],[115,78,67,-0.5285049434751272],[115,78,68,-0.5272261556237936],[115,78,69,-0.5260342918336391],[115,78,70,-0.5249284580349922],[115,78,71,-0.5235806312412024],[115,78,72,-0.5217186473309994],[115,78,73,-0.5196252521127462],[115,78,74,-0.5176558569073677],[115,78,75,-0.5162321664392948],[115,78,76,-0.515502898953855],[115,78,77,-0.5150719676166773],[115,78,78,-0.5142765641212463],[115,78,79,-0.5129700470715761],[115,79,64,-0.532755671069026],[115,79,65,-0.5314468089491129],[115,79,66,-0.530003672465682],[115,79,67,-0.5285049434751272],[115,79,68,-0.5272261556237936],[115,79,69,-0.5260342918336391],[115,79,70,-0.5249284580349922],[115,79,71,-0.5235806312412024],[115,79,72,-0.5217186473309994],[115,79,73,-0.5196252521127462],[115,79,74,-0.5176558569073677],[115,79,75,-0.5162321664392948],[115,79,76,-0.515502898953855],[115,79,77,-0.5150719676166773],[115,79,78,-0.5142765641212463],[115,79,79,-0.5129700470715761],[115,80,64,-0.532755671069026],[115,80,65,-0.5314468089491129],[115,80,66,-0.530003672465682],[115,80,67,-0.5285049434751272],[115,80,68,-0.5272261556237936],[115,80,69,-0.5260342918336391],[115,80,70,-0.5249284580349922],[115,80,71,-0.5235806312412024],[115,80,72,-0.5217186473309994],[115,80,73,-0.5196252521127462],[115,80,74,-0.5176558569073677],[115,80,75,-0.5162321664392948],[115,80,76,-0.515502898953855],[115,80,77,-0.5150719676166773],[115,80,78,-0.5142765641212463],[115,80,79,-0.5129700470715761],[115,81,64,-0.532755671069026],[115,81,65,-0.5314468089491129],[115,81,66,-0.530003672465682],[115,81,67,-0.5285049434751272],[115,81,68,-0.5272261556237936],[115,81,69,-0.5260342918336391],[115,81,70,-0.5249284580349922],[115,81,71,-0.5235806312412024],[115,81,72,-0.5217186473309994],[115,81,73,-0.5196252521127462],[115,81,74,-0.5176558569073677],[115,81,75,-0.5162321664392948],[115,81,76,-0.515502898953855],[115,81,77,-0.5150719676166773],[115,81,78,-0.5142765641212463],[115,81,79,-0.5129700470715761],[115,82,64,-0.532755671069026],[115,82,65,-0.5314468089491129],[115,82,66,-0.530003672465682],[115,82,67,-0.5285049434751272],[115,82,68,-0.5272261556237936],[115,82,69,-0.5260342918336391],[115,82,70,-0.5249284580349922],[115,82,71,-0.5235806312412024],[115,82,72,-0.5217186473309994],[115,82,73,-0.5196252521127462],[115,82,74,-0.5176558569073677],[115,82,75,-0.5162321664392948],[115,82,76,-0.515502898953855],[115,82,77,-0.5150719676166773],[115,82,78,-0.5142765641212463],[115,82,79,-0.5129700470715761],[115,83,64,-0.532755671069026],[115,83,65,-0.5314468089491129],[115,83,66,-0.530003672465682],[115,83,67,-0.5285049434751272],[115,83,68,-0.5272261556237936],[115,83,69,-0.5260342918336391],[115,83,70,-0.5249284580349922],[115,83,71,-0.5235806312412024],[115,83,72,-0.5217186473309994],[115,83,73,-0.5196252521127462],[115,83,74,-0.5176558569073677],[115,83,75,-0.5162321664392948],[115,83,76,-0.515502898953855],[115,83,77,-0.5150719676166773],[115,83,78,-0.5142765641212463],[115,83,79,-0.5129700470715761],[115,84,64,-0.532755671069026],[115,84,65,-0.5314468089491129],[115,84,66,-0.530003672465682],[115,84,67,-0.5285049434751272],[115,84,68,-0.5272261556237936],[115,84,69,-0.5260342918336391],[115,84,70,-0.5249284580349922],[115,84,71,-0.5235806312412024],[115,84,72,-0.5217186473309994],[115,84,73,-0.5196252521127462],[115,84,74,-0.5176558569073677],[115,84,75,-0.5162321664392948],[115,84,76,-0.515502898953855],[115,84,77,-0.5150719676166773],[115,84,78,-0.5142765641212463],[115,84,79,-0.5129700470715761],[115,85,64,-0.532755671069026],[115,85,65,-0.5314468089491129],[115,85,66,-0.530003672465682],[115,85,67,-0.5285049434751272],[115,85,68,-0.5272261556237936],[115,85,69,-0.5260342918336391],[115,85,70,-0.5249284580349922],[115,85,71,-0.5235806312412024],[115,85,72,-0.5217186473309994],[115,85,73,-0.5196252521127462],[115,85,74,-0.5176558569073677],[115,85,75,-0.5162321664392948],[115,85,76,-0.515502898953855],[115,85,77,-0.5150719676166773],[115,85,78,-0.5142765641212463],[115,85,79,-0.5129700470715761],[115,86,64,-0.532755671069026],[115,86,65,-0.5314468089491129],[115,86,66,-0.530003672465682],[115,86,67,-0.5285049434751272],[115,86,68,-0.5272261556237936],[115,86,69,-0.5260342918336391],[115,86,70,-0.5249284580349922],[115,86,71,-0.5235806312412024],[115,86,72,-0.5217186473309994],[115,86,73,-0.5196252521127462],[115,86,74,-0.5176558569073677],[115,86,75,-0.5162321664392948],[115,86,76,-0.515502898953855],[115,86,77,-0.5150719676166773],[115,86,78,-0.5142765641212463],[115,86,79,-0.5129700470715761],[115,87,64,-0.532755671069026],[115,87,65,-0.5314468089491129],[115,87,66,-0.530003672465682],[115,87,67,-0.5285049434751272],[115,87,68,-0.5272261556237936],[115,87,69,-0.5260342918336391],[115,87,70,-0.5249284580349922],[115,87,71,-0.5235806312412024],[115,87,72,-0.5217186473309994],[115,87,73,-0.5196252521127462],[115,87,74,-0.5176558569073677],[115,87,75,-0.5162321664392948],[115,87,76,-0.515502898953855],[115,87,77,-0.5150719676166773],[115,87,78,-0.5142765641212463],[115,87,79,-0.5129700470715761],[115,88,64,-0.532755671069026],[115,88,65,-0.5314468089491129],[115,88,66,-0.530003672465682],[115,88,67,-0.5285049434751272],[115,88,68,-0.5272261556237936],[115,88,69,-0.5260342918336391],[115,88,70,-0.5249284580349922],[115,88,71,-0.5235806312412024],[115,88,72,-0.5217186473309994],[115,88,73,-0.5196252521127462],[115,88,74,-0.5176558569073677],[115,88,75,-0.5162321664392948],[115,88,76,-0.515502898953855],[115,88,77,-0.5150719676166773],[115,88,78,-0.5142765641212463],[115,88,79,-0.5129700470715761],[115,89,64,-0.532755671069026],[115,89,65,-0.5314468089491129],[115,89,66,-0.530003672465682],[115,89,67,-0.5285049434751272],[115,89,68,-0.5272261556237936],[115,89,69,-0.5260342918336391],[115,89,70,-0.5249284580349922],[115,89,71,-0.5235806312412024],[115,89,72,-0.5217186473309994],[115,89,73,-0.5196252521127462],[115,89,74,-0.5176558569073677],[115,89,75,-0.5162321664392948],[115,89,76,-0.515502898953855],[115,89,77,-0.5150719676166773],[115,89,78,-0.5142765641212463],[115,89,79,-0.5129700470715761],[115,90,64,-0.532755671069026],[115,90,65,-0.5314468089491129],[115,90,66,-0.530003672465682],[115,90,67,-0.5285049434751272],[115,90,68,-0.5272261556237936],[115,90,69,-0.5260342918336391],[115,90,70,-0.5249284580349922],[115,90,71,-0.5235806312412024],[115,90,72,-0.5217186473309994],[115,90,73,-0.5196252521127462],[115,90,74,-0.5176558569073677],[115,90,75,-0.5162321664392948],[115,90,76,-0.515502898953855],[115,90,77,-0.5150719676166773],[115,90,78,-0.5142765641212463],[115,90,79,-0.5129700470715761],[115,91,64,-0.532755671069026],[115,91,65,-0.5314468089491129],[115,91,66,-0.530003672465682],[115,91,67,-0.5285049434751272],[115,91,68,-0.5272261556237936],[115,91,69,-0.5260342918336391],[115,91,70,-0.5249284580349922],[115,91,71,-0.5235806312412024],[115,91,72,-0.5217186473309994],[115,91,73,-0.5196252521127462],[115,91,74,-0.5176558569073677],[115,91,75,-0.5162321664392948],[115,91,76,-0.515502898953855],[115,91,77,-0.5150719676166773],[115,91,78,-0.5142765641212463],[115,91,79,-0.5129700470715761],[115,92,64,-0.532755671069026],[115,92,65,-0.5314468089491129],[115,92,66,-0.530003672465682],[115,92,67,-0.5285049434751272],[115,92,68,-0.5272261556237936],[115,92,69,-0.5260342918336391],[115,92,70,-0.5249284580349922],[115,92,71,-0.5235806312412024],[115,92,72,-0.5217186473309994],[115,92,73,-0.5196252521127462],[115,92,74,-0.5176558569073677],[115,92,75,-0.5162321664392948],[115,92,76,-0.515502898953855],[115,92,77,-0.5150719676166773],[115,92,78,-0.5142765641212463],[115,92,79,-0.5129700470715761],[115,93,64,-0.532755671069026],[115,93,65,-0.5314468089491129],[115,93,66,-0.530003672465682],[115,93,67,-0.5285049434751272],[115,93,68,-0.5272261556237936],[115,93,69,-0.5260342918336391],[115,93,70,-0.5249284580349922],[115,93,71,-0.5235806312412024],[115,93,72,-0.5217186473309994],[115,93,73,-0.5196252521127462],[115,93,74,-0.5176558569073677],[115,93,75,-0.5162321664392948],[115,93,76,-0.515502898953855],[115,93,77,-0.5150719676166773],[115,93,78,-0.5142765641212463],[115,93,79,-0.5129700470715761],[115,94,64,-0.532755671069026],[115,94,65,-0.5314468089491129],[115,94,66,-0.530003672465682],[115,94,67,-0.5285049434751272],[115,94,68,-0.5272261556237936],[115,94,69,-0.5260342918336391],[115,94,70,-0.5249284580349922],[115,94,71,-0.5235806312412024],[115,94,72,-0.5217186473309994],[115,94,73,-0.5196252521127462],[115,94,74,-0.5176558569073677],[115,94,75,-0.5162321664392948],[115,94,76,-0.515502898953855],[115,94,77,-0.5150719676166773],[115,94,78,-0.5142765641212463],[115,94,79,-0.5129700470715761],[115,95,64,-0.532755671069026],[115,95,65,-0.5314468089491129],[115,95,66,-0.530003672465682],[115,95,67,-0.5285049434751272],[115,95,68,-0.5272261556237936],[115,95,69,-0.5260342918336391],[115,95,70,-0.5249284580349922],[115,95,71,-0.5235806312412024],[115,95,72,-0.5217186473309994],[115,95,73,-0.5196252521127462],[115,95,74,-0.5176558569073677],[115,95,75,-0.5162321664392948],[115,95,76,-0.515502898953855],[115,95,77,-0.5150719676166773],[115,95,78,-0.5142765641212463],[115,95,79,-0.5129700470715761],[115,96,64,-0.532755671069026],[115,96,65,-0.5314468089491129],[115,96,66,-0.530003672465682],[115,96,67,-0.5285049434751272],[115,96,68,-0.5272261556237936],[115,96,69,-0.5260342918336391],[115,96,70,-0.5249284580349922],[115,96,71,-0.5235806312412024],[115,96,72,-0.5217186473309994],[115,96,73,-0.5196252521127462],[115,96,74,-0.5176558569073677],[115,96,75,-0.5162321664392948],[115,96,76,-0.515502898953855],[115,96,77,-0.5150719676166773],[115,96,78,-0.5142765641212463],[115,96,79,-0.5129700470715761],[115,97,64,-0.532755671069026],[115,97,65,-0.5314468089491129],[115,97,66,-0.530003672465682],[115,97,67,-0.5285049434751272],[115,97,68,-0.5272261556237936],[115,97,69,-0.5260342918336391],[115,97,70,-0.5249284580349922],[115,97,71,-0.5235806312412024],[115,97,72,-0.5217186473309994],[115,97,73,-0.5196252521127462],[115,97,74,-0.5176558569073677],[115,97,75,-0.5162321664392948],[115,97,76,-0.515502898953855],[115,97,77,-0.5150719676166773],[115,97,78,-0.5142765641212463],[115,97,79,-0.5129700470715761],[115,98,64,-0.532755671069026],[115,98,65,-0.5314468089491129],[115,98,66,-0.530003672465682],[115,98,67,-0.5285049434751272],[115,98,68,-0.5272261556237936],[115,98,69,-0.5260342918336391],[115,98,70,-0.5249284580349922],[115,98,71,-0.5235806312412024],[115,98,72,-0.5217186473309994],[115,98,73,-0.5196252521127462],[115,98,74,-0.5176558569073677],[115,98,75,-0.5162321664392948],[115,98,76,-0.515502898953855],[115,98,77,-0.5150719676166773],[115,98,78,-0.5142765641212463],[115,98,79,-0.5129700470715761],[115,99,64,-0.532755671069026],[115,99,65,-0.5314468089491129],[115,99,66,-0.530003672465682],[115,99,67,-0.5285049434751272],[115,99,68,-0.5272261556237936],[115,99,69,-0.5260342918336391],[115,99,70,-0.5249284580349922],[115,99,71,-0.5235806312412024],[115,99,72,-0.5217186473309994],[115,99,73,-0.5196252521127462],[115,99,74,-0.5176558569073677],[115,99,75,-0.5162321664392948],[115,99,76,-0.515502898953855],[115,99,77,-0.5150719676166773],[115,99,78,-0.5142765641212463],[115,99,79,-0.5129700470715761],[115,100,64,-0.532755671069026],[115,100,65,-0.5314468089491129],[115,100,66,-0.530003672465682],[115,100,67,-0.5285049434751272],[115,100,68,-0.5272261556237936],[115,100,69,-0.5260342918336391],[115,100,70,-0.5249284580349922],[115,100,71,-0.5235806312412024],[115,100,72,-0.5217186473309994],[115,100,73,-0.5196252521127462],[115,100,74,-0.5176558569073677],[115,100,75,-0.5162321664392948],[115,100,76,-0.515502898953855],[115,100,77,-0.5150719676166773],[115,100,78,-0.5142765641212463],[115,100,79,-0.5129700470715761],[115,101,64,-0.532755671069026],[115,101,65,-0.5314468089491129],[115,101,66,-0.530003672465682],[115,101,67,-0.5285049434751272],[115,101,68,-0.5272261556237936],[115,101,69,-0.5260342918336391],[115,101,70,-0.5249284580349922],[115,101,71,-0.5235806312412024],[115,101,72,-0.5217186473309994],[115,101,73,-0.5196252521127462],[115,101,74,-0.5176558569073677],[115,101,75,-0.5162321664392948],[115,101,76,-0.515502898953855],[115,101,77,-0.5150719676166773],[115,101,78,-0.5142765641212463],[115,101,79,-0.5129700470715761],[115,102,64,-0.532755671069026],[115,102,65,-0.5314468089491129],[115,102,66,-0.530003672465682],[115,102,67,-0.5285049434751272],[115,102,68,-0.5272261556237936],[115,102,69,-0.5260342918336391],[115,102,70,-0.5249284580349922],[115,102,71,-0.5235806312412024],[115,102,72,-0.5217186473309994],[115,102,73,-0.5196252521127462],[115,102,74,-0.5176558569073677],[115,102,75,-0.5162321664392948],[115,102,76,-0.515502898953855],[115,102,77,-0.5150719676166773],[115,102,78,-0.5142765641212463],[115,102,79,-0.5129700470715761],[115,103,64,-0.532755671069026],[115,103,65,-0.5314468089491129],[115,103,66,-0.530003672465682],[115,103,67,-0.5285049434751272],[115,103,68,-0.5272261556237936],[115,103,69,-0.5260342918336391],[115,103,70,-0.5249284580349922],[115,103,71,-0.5235806312412024],[115,103,72,-0.5217186473309994],[115,103,73,-0.5196252521127462],[115,103,74,-0.5176558569073677],[115,103,75,-0.5162321664392948],[115,103,76,-0.515502898953855],[115,103,77,-0.5150719676166773],[115,103,78,-0.5142765641212463],[115,103,79,-0.5129700470715761],[115,104,64,-0.532755671069026],[115,104,65,-0.5314468089491129],[115,104,66,-0.530003672465682],[115,104,67,-0.5285049434751272],[115,104,68,-0.5272261556237936],[115,104,69,-0.5260342918336391],[115,104,70,-0.5249284580349922],[115,104,71,-0.5235806312412024],[115,104,72,-0.5217186473309994],[115,104,73,-0.5196252521127462],[115,104,74,-0.5176558569073677],[115,104,75,-0.5162321664392948],[115,104,76,-0.515502898953855],[115,104,77,-0.5150719676166773],[115,104,78,-0.5142765641212463],[115,104,79,-0.5129700470715761],[115,105,64,-0.532755671069026],[115,105,65,-0.5314468089491129],[115,105,66,-0.530003672465682],[115,105,67,-0.5285049434751272],[115,105,68,-0.5272261556237936],[115,105,69,-0.5260342918336391],[115,105,70,-0.5249284580349922],[115,105,71,-0.5235806312412024],[115,105,72,-0.5217186473309994],[115,105,73,-0.5196252521127462],[115,105,74,-0.5176558569073677],[115,105,75,-0.5162321664392948],[115,105,76,-0.515502898953855],[115,105,77,-0.5150719676166773],[115,105,78,-0.5142765641212463],[115,105,79,-0.5129700470715761],[115,106,64,-0.532755671069026],[115,106,65,-0.5314468089491129],[115,106,66,-0.530003672465682],[115,106,67,-0.5285049434751272],[115,106,68,-0.5272261556237936],[115,106,69,-0.5260342918336391],[115,106,70,-0.5249284580349922],[115,106,71,-0.5235806312412024],[115,106,72,-0.5217186473309994],[115,106,73,-0.5196252521127462],[115,106,74,-0.5176558569073677],[115,106,75,-0.5162321664392948],[115,106,76,-0.515502898953855],[115,106,77,-0.5150719676166773],[115,106,78,-0.5142765641212463],[115,106,79,-0.5129700470715761],[115,107,64,-0.532755671069026],[115,107,65,-0.5314468089491129],[115,107,66,-0.530003672465682],[115,107,67,-0.5285049434751272],[115,107,68,-0.5272261556237936],[115,107,69,-0.5260342918336391],[115,107,70,-0.5249284580349922],[115,107,71,-0.5235806312412024],[115,107,72,-0.5217186473309994],[115,107,73,-0.5196252521127462],[115,107,74,-0.5176558569073677],[115,107,75,-0.5162321664392948],[115,107,76,-0.515502898953855],[115,107,77,-0.5150719676166773],[115,107,78,-0.5142765641212463],[115,107,79,-0.5129700470715761],[115,108,64,-0.532755671069026],[115,108,65,-0.5314468089491129],[115,108,66,-0.530003672465682],[115,108,67,-0.5285049434751272],[115,108,68,-0.5272261556237936],[115,108,69,-0.5260342918336391],[115,108,70,-0.5249284580349922],[115,108,71,-0.5235806312412024],[115,108,72,-0.5217186473309994],[115,108,73,-0.5196252521127462],[115,108,74,-0.5176558569073677],[115,108,75,-0.5162321664392948],[115,108,76,-0.515502898953855],[115,108,77,-0.5150719676166773],[115,108,78,-0.5142765641212463],[115,108,79,-0.5129700470715761],[115,109,64,-0.532755671069026],[115,109,65,-0.5314468089491129],[115,109,66,-0.530003672465682],[115,109,67,-0.5285049434751272],[115,109,68,-0.5272261556237936],[115,109,69,-0.5260342918336391],[115,109,70,-0.5249284580349922],[115,109,71,-0.5235806312412024],[115,109,72,-0.5217186473309994],[115,109,73,-0.5196252521127462],[115,109,74,-0.5176558569073677],[115,109,75,-0.5162321664392948],[115,109,76,-0.515502898953855],[115,109,77,-0.5150719676166773],[115,109,78,-0.5142765641212463],[115,109,79,-0.5129700470715761],[115,110,64,-0.532755671069026],[115,110,65,-0.5314468089491129],[115,110,66,-0.530003672465682],[115,110,67,-0.5285049434751272],[115,110,68,-0.5272261556237936],[115,110,69,-0.5260342918336391],[115,110,70,-0.5249284580349922],[115,110,71,-0.5235806312412024],[115,110,72,-0.5217186473309994],[115,110,73,-0.5196252521127462],[115,110,74,-0.5176558569073677],[115,110,75,-0.5162321664392948],[115,110,76,-0.515502898953855],[115,110,77,-0.5150719676166773],[115,110,78,-0.5142765641212463],[115,110,79,-0.5129700470715761],[115,111,64,-0.532755671069026],[115,111,65,-0.5314468089491129],[115,111,66,-0.530003672465682],[115,111,67,-0.5285049434751272],[115,111,68,-0.5272261556237936],[115,111,69,-0.5260342918336391],[115,111,70,-0.5249284580349922],[115,111,71,-0.5235806312412024],[115,111,72,-0.5217186473309994],[115,111,73,-0.5196252521127462],[115,111,74,-0.5176558569073677],[115,111,75,-0.5162321664392948],[115,111,76,-0.515502898953855],[115,111,77,-0.5150719676166773],[115,111,78,-0.5142765641212463],[115,111,79,-0.5129700470715761],[115,112,64,-0.532755671069026],[115,112,65,-0.5314468089491129],[115,112,66,-0.530003672465682],[115,112,67,-0.5285049434751272],[115,112,68,-0.5272261556237936],[115,112,69,-0.5260342918336391],[115,112,70,-0.5249284580349922],[115,112,71,-0.5235806312412024],[115,112,72,-0.5217186473309994],[115,112,73,-0.5196252521127462],[115,112,74,-0.5176558569073677],[115,112,75,-0.5162321664392948],[115,112,76,-0.515502898953855],[115,112,77,-0.5150719676166773],[115,112,78,-0.5142765641212463],[115,112,79,-0.5129700470715761],[115,113,64,-0.532755671069026],[115,113,65,-0.5314468089491129],[115,113,66,-0.530003672465682],[115,113,67,-0.5285049434751272],[115,113,68,-0.5272261556237936],[115,113,69,-0.5260342918336391],[115,113,70,-0.5249284580349922],[115,113,71,-0.5235806312412024],[115,113,72,-0.5217186473309994],[115,113,73,-0.5196252521127462],[115,113,74,-0.5176558569073677],[115,113,75,-0.5162321664392948],[115,113,76,-0.515502898953855],[115,113,77,-0.5150719676166773],[115,113,78,-0.5142765641212463],[115,113,79,-0.5129700470715761],[115,114,64,-0.532755671069026],[115,114,65,-0.5314468089491129],[115,114,66,-0.530003672465682],[115,114,67,-0.5285049434751272],[115,114,68,-0.5272261556237936],[115,114,69,-0.5260342918336391],[115,114,70,-0.5249284580349922],[115,114,71,-0.5235806312412024],[115,114,72,-0.5217186473309994],[115,114,73,-0.5196252521127462],[115,114,74,-0.5176558569073677],[115,114,75,-0.5162321664392948],[115,114,76,-0.515502898953855],[115,114,77,-0.5150719676166773],[115,114,78,-0.5142765641212463],[115,114,79,-0.5129700470715761],[115,115,64,-0.532755671069026],[115,115,65,-0.5314468089491129],[115,115,66,-0.530003672465682],[115,115,67,-0.5285049434751272],[115,115,68,-0.5272261556237936],[115,115,69,-0.5260342918336391],[115,115,70,-0.5249284580349922],[115,115,71,-0.5235806312412024],[115,115,72,-0.5217186473309994],[115,115,73,-0.5196252521127462],[115,115,74,-0.5176558569073677],[115,115,75,-0.5162321664392948],[115,115,76,-0.515502898953855],[115,115,77,-0.5150719676166773],[115,115,78,-0.5142765641212463],[115,115,79,-0.5129700470715761],[115,116,64,-0.532755671069026],[115,116,65,-0.5314468089491129],[115,116,66,-0.530003672465682],[115,116,67,-0.5285049434751272],[115,116,68,-0.5272261556237936],[115,116,69,-0.5260342918336391],[115,116,70,-0.5249284580349922],[115,116,71,-0.5235806312412024],[115,116,72,-0.5217186473309994],[115,116,73,-0.5196252521127462],[115,116,74,-0.5176558569073677],[115,116,75,-0.5162321664392948],[115,116,76,-0.515502898953855],[115,116,77,-0.5150719676166773],[115,116,78,-0.5142765641212463],[115,116,79,-0.5129700470715761],[115,117,64,-0.532755671069026],[115,117,65,-0.5314468089491129],[115,117,66,-0.530003672465682],[115,117,67,-0.5285049434751272],[115,117,68,-0.5272261556237936],[115,117,69,-0.5260342918336391],[115,117,70,-0.5249284580349922],[115,117,71,-0.5235806312412024],[115,117,72,-0.5217186473309994],[115,117,73,-0.5196252521127462],[115,117,74,-0.5176558569073677],[115,117,75,-0.5162321664392948],[115,117,76,-0.515502898953855],[115,117,77,-0.5150719676166773],[115,117,78,-0.5142765641212463],[115,117,79,-0.5129700470715761],[115,118,64,-0.532755671069026],[115,118,65,-0.5314468089491129],[115,118,66,-0.530003672465682],[115,118,67,-0.5285049434751272],[115,118,68,-0.5272261556237936],[115,118,69,-0.5260342918336391],[115,118,70,-0.5249284580349922],[115,118,71,-0.5235806312412024],[115,118,72,-0.5217186473309994],[115,118,73,-0.5196252521127462],[115,118,74,-0.5176558569073677],[115,118,75,-0.5162321664392948],[115,118,76,-0.515502898953855],[115,118,77,-0.5150719676166773],[115,118,78,-0.5142765641212463],[115,118,79,-0.5129700470715761],[115,119,64,-0.532755671069026],[115,119,65,-0.5314468089491129],[115,119,66,-0.530003672465682],[115,119,67,-0.5285049434751272],[115,119,68,-0.5272261556237936],[115,119,69,-0.5260342918336391],[115,119,70,-0.5249284580349922],[115,119,71,-0.5235806312412024],[115,119,72,-0.5217186473309994],[115,119,73,-0.5196252521127462],[115,119,74,-0.5176558569073677],[115,119,75,-0.5162321664392948],[115,119,76,-0.515502898953855],[115,119,77,-0.5150719676166773],[115,119,78,-0.5142765641212463],[115,119,79,-0.5129700470715761],[115,120,64,-0.532755671069026],[115,120,65,-0.5314468089491129],[115,120,66,-0.530003672465682],[115,120,67,-0.5285049434751272],[115,120,68,-0.5272261556237936],[115,120,69,-0.5260342918336391],[115,120,70,-0.5249284580349922],[115,120,71,-0.5235806312412024],[115,120,72,-0.5217186473309994],[115,120,73,-0.5196252521127462],[115,120,74,-0.5176558569073677],[115,120,75,-0.5162321664392948],[115,120,76,-0.515502898953855],[115,120,77,-0.5150719676166773],[115,120,78,-0.5142765641212463],[115,120,79,-0.5129700470715761],[115,121,64,-0.532755671069026],[115,121,65,-0.5314468089491129],[115,121,66,-0.530003672465682],[115,121,67,-0.5285049434751272],[115,121,68,-0.5272261556237936],[115,121,69,-0.5260342918336391],[115,121,70,-0.5249284580349922],[115,121,71,-0.5235806312412024],[115,121,72,-0.5217186473309994],[115,121,73,-0.5196252521127462],[115,121,74,-0.5176558569073677],[115,121,75,-0.5162321664392948],[115,121,76,-0.515502898953855],[115,121,77,-0.5150719676166773],[115,121,78,-0.5142765641212463],[115,121,79,-0.5129700470715761],[115,122,64,-0.532755671069026],[115,122,65,-0.5314468089491129],[115,122,66,-0.530003672465682],[115,122,67,-0.5285049434751272],[115,122,68,-0.5272261556237936],[115,122,69,-0.5260342918336391],[115,122,70,-0.5249284580349922],[115,122,71,-0.5235806312412024],[115,122,72,-0.5217186473309994],[115,122,73,-0.5196252521127462],[115,122,74,-0.5176558569073677],[115,122,75,-0.5162321664392948],[115,122,76,-0.515502898953855],[115,122,77,-0.5150719676166773],[115,122,78,-0.5142765641212463],[115,122,79,-0.5129700470715761],[115,123,64,-0.532755671069026],[115,123,65,-0.5314468089491129],[115,123,66,-0.530003672465682],[115,123,67,-0.5285049434751272],[115,123,68,-0.5272261556237936],[115,123,69,-0.5260342918336391],[115,123,70,-0.5249284580349922],[115,123,71,-0.5235806312412024],[115,123,72,-0.5217186473309994],[115,123,73,-0.5196252521127462],[115,123,74,-0.5176558569073677],[115,123,75,-0.5162321664392948],[115,123,76,-0.515502898953855],[115,123,77,-0.5150719676166773],[115,123,78,-0.5142765641212463],[115,123,79,-0.5129700470715761],[115,124,64,-0.532755671069026],[115,124,65,-0.5314468089491129],[115,124,66,-0.530003672465682],[115,124,67,-0.5285049434751272],[115,124,68,-0.5272261556237936],[115,124,69,-0.5260342918336391],[115,124,70,-0.5249284580349922],[115,124,71,-0.5235806312412024],[115,124,72,-0.5217186473309994],[115,124,73,-0.5196252521127462],[115,124,74,-0.5176558569073677],[115,124,75,-0.5162321664392948],[115,124,76,-0.515502898953855],[115,124,77,-0.5150719676166773],[115,124,78,-0.5142765641212463],[115,124,79,-0.5129700470715761],[115,125,64,-0.532755671069026],[115,125,65,-0.5314468089491129],[115,125,66,-0.530003672465682],[115,125,67,-0.5285049434751272],[115,125,68,-0.5272261556237936],[115,125,69,-0.5260342918336391],[115,125,70,-0.5249284580349922],[115,125,71,-0.5235806312412024],[115,125,72,-0.5217186473309994],[115,125,73,-0.5196252521127462],[115,125,74,-0.5176558569073677],[115,125,75,-0.5162321664392948],[115,125,76,-0.515502898953855],[115,125,77,-0.5150719676166773],[115,125,78,-0.5142765641212463],[115,125,79,-0.5129700470715761],[115,126,64,-0.532755671069026],[115,126,65,-0.5314468089491129],[115,126,66,-0.530003672465682],[115,126,67,-0.5285049434751272],[115,126,68,-0.5272261556237936],[115,126,69,-0.5260342918336391],[115,126,70,-0.5249284580349922],[115,126,71,-0.5235806312412024],[115,126,72,-0.5217186473309994],[115,126,73,-0.5196252521127462],[115,126,74,-0.5176558569073677],[115,126,75,-0.5162321664392948],[115,126,76,-0.515502898953855],[115,126,77,-0.5150719676166773],[115,126,78,-0.5142765641212463],[115,126,79,-0.5129700470715761],[115,127,64,-0.532755671069026],[115,127,65,-0.5314468089491129],[115,127,66,-0.530003672465682],[115,127,67,-0.5285049434751272],[115,127,68,-0.5272261556237936],[115,127,69,-0.5260342918336391],[115,127,70,-0.5249284580349922],[115,127,71,-0.5235806312412024],[115,127,72,-0.5217186473309994],[115,127,73,-0.5196252521127462],[115,127,74,-0.5176558569073677],[115,127,75,-0.5162321664392948],[115,127,76,-0.515502898953855],[115,127,77,-0.5150719676166773],[115,127,78,-0.5142765641212463],[115,127,79,-0.5129700470715761],[115,128,64,-0.532755671069026],[115,128,65,-0.5314468089491129],[115,128,66,-0.530003672465682],[115,128,67,-0.5285049434751272],[115,128,68,-0.5272261556237936],[115,128,69,-0.5260342918336391],[115,128,70,-0.5249284580349922],[115,128,71,-0.5235806312412024],[115,128,72,-0.5217186473309994],[115,128,73,-0.5196252521127462],[115,128,74,-0.5176558569073677],[115,128,75,-0.5162321664392948],[115,128,76,-0.515502898953855],[115,128,77,-0.5150719676166773],[115,128,78,-0.5142765641212463],[115,128,79,-0.5129700470715761],[115,129,64,-0.532755671069026],[115,129,65,-0.5314468089491129],[115,129,66,-0.530003672465682],[115,129,67,-0.5285049434751272],[115,129,68,-0.5272261556237936],[115,129,69,-0.5260342918336391],[115,129,70,-0.5249284580349922],[115,129,71,-0.5235806312412024],[115,129,72,-0.5217186473309994],[115,129,73,-0.5196252521127462],[115,129,74,-0.5176558569073677],[115,129,75,-0.5162321664392948],[115,129,76,-0.515502898953855],[115,129,77,-0.5150719676166773],[115,129,78,-0.5142765641212463],[115,129,79,-0.5129700470715761],[115,130,64,-0.532755671069026],[115,130,65,-0.5314468089491129],[115,130,66,-0.530003672465682],[115,130,67,-0.5285049434751272],[115,130,68,-0.5272261556237936],[115,130,69,-0.5260342918336391],[115,130,70,-0.5249284580349922],[115,130,71,-0.5235806312412024],[115,130,72,-0.5217186473309994],[115,130,73,-0.5196252521127462],[115,130,74,-0.5176558569073677],[115,130,75,-0.5162321664392948],[115,130,76,-0.515502898953855],[115,130,77,-0.5150719676166773],[115,130,78,-0.5142765641212463],[115,130,79,-0.5129700470715761],[115,131,64,-0.532755671069026],[115,131,65,-0.5314468089491129],[115,131,66,-0.530003672465682],[115,131,67,-0.5285049434751272],[115,131,68,-0.5272261556237936],[115,131,69,-0.5260342918336391],[115,131,70,-0.5249284580349922],[115,131,71,-0.5235806312412024],[115,131,72,-0.5217186473309994],[115,131,73,-0.5196252521127462],[115,131,74,-0.5176558569073677],[115,131,75,-0.5162321664392948],[115,131,76,-0.515502898953855],[115,131,77,-0.5150719676166773],[115,131,78,-0.5142765641212463],[115,131,79,-0.5129700470715761],[115,132,64,-0.532755671069026],[115,132,65,-0.5314468089491129],[115,132,66,-0.530003672465682],[115,132,67,-0.5285049434751272],[115,132,68,-0.5272261556237936],[115,132,69,-0.5260342918336391],[115,132,70,-0.5249284580349922],[115,132,71,-0.5235806312412024],[115,132,72,-0.5217186473309994],[115,132,73,-0.5196252521127462],[115,132,74,-0.5176558569073677],[115,132,75,-0.5162321664392948],[115,132,76,-0.515502898953855],[115,132,77,-0.5150719676166773],[115,132,78,-0.5142765641212463],[115,132,79,-0.5129700470715761],[115,133,64,-0.532755671069026],[115,133,65,-0.5314468089491129],[115,133,66,-0.530003672465682],[115,133,67,-0.5285049434751272],[115,133,68,-0.5272261556237936],[115,133,69,-0.5260342918336391],[115,133,70,-0.5249284580349922],[115,133,71,-0.5235806312412024],[115,133,72,-0.5217186473309994],[115,133,73,-0.5196252521127462],[115,133,74,-0.5176558569073677],[115,133,75,-0.5162321664392948],[115,133,76,-0.515502898953855],[115,133,77,-0.5150719676166773],[115,133,78,-0.5142765641212463],[115,133,79,-0.5129700470715761],[115,134,64,-0.532755671069026],[115,134,65,-0.5314468089491129],[115,134,66,-0.530003672465682],[115,134,67,-0.5285049434751272],[115,134,68,-0.5272261556237936],[115,134,69,-0.5260342918336391],[115,134,70,-0.5249284580349922],[115,134,71,-0.5235806312412024],[115,134,72,-0.5217186473309994],[115,134,73,-0.5196252521127462],[115,134,74,-0.5176558569073677],[115,134,75,-0.5162321664392948],[115,134,76,-0.515502898953855],[115,134,77,-0.5150719676166773],[115,134,78,-0.5142765641212463],[115,134,79,-0.5129700470715761],[115,135,64,-0.532755671069026],[115,135,65,-0.5314468089491129],[115,135,66,-0.530003672465682],[115,135,67,-0.5285049434751272],[115,135,68,-0.5272261556237936],[115,135,69,-0.5260342918336391],[115,135,70,-0.5249284580349922],[115,135,71,-0.5235806312412024],[115,135,72,-0.5217186473309994],[115,135,73,-0.5196252521127462],[115,135,74,-0.5176558569073677],[115,135,75,-0.5162321664392948],[115,135,76,-0.515502898953855],[115,135,77,-0.5150719676166773],[115,135,78,-0.5142765641212463],[115,135,79,-0.5129700470715761],[115,136,64,-0.532755671069026],[115,136,65,-0.5314468089491129],[115,136,66,-0.530003672465682],[115,136,67,-0.5285049434751272],[115,136,68,-0.5272261556237936],[115,136,69,-0.5260342918336391],[115,136,70,-0.5249284580349922],[115,136,71,-0.5235806312412024],[115,136,72,-0.5217186473309994],[115,136,73,-0.5196252521127462],[115,136,74,-0.5176558569073677],[115,136,75,-0.5162321664392948],[115,136,76,-0.515502898953855],[115,136,77,-0.5150719676166773],[115,136,78,-0.5142765641212463],[115,136,79,-0.5129700470715761],[115,137,64,-0.532755671069026],[115,137,65,-0.5314468089491129],[115,137,66,-0.530003672465682],[115,137,67,-0.5285049434751272],[115,137,68,-0.5272261556237936],[115,137,69,-0.5260342918336391],[115,137,70,-0.5249284580349922],[115,137,71,-0.5235806312412024],[115,137,72,-0.5217186473309994],[115,137,73,-0.5196252521127462],[115,137,74,-0.5176558569073677],[115,137,75,-0.5162321664392948],[115,137,76,-0.515502898953855],[115,137,77,-0.5150719676166773],[115,137,78,-0.5142765641212463],[115,137,79,-0.5129700470715761],[115,138,64,-0.532755671069026],[115,138,65,-0.5314468089491129],[115,138,66,-0.530003672465682],[115,138,67,-0.5285049434751272],[115,138,68,-0.5272261556237936],[115,138,69,-0.5260342918336391],[115,138,70,-0.5249284580349922],[115,138,71,-0.5235806312412024],[115,138,72,-0.5217186473309994],[115,138,73,-0.5196252521127462],[115,138,74,-0.5176558569073677],[115,138,75,-0.5162321664392948],[115,138,76,-0.515502898953855],[115,138,77,-0.5150719676166773],[115,138,78,-0.5142765641212463],[115,138,79,-0.5129700470715761],[115,139,64,-0.532755671069026],[115,139,65,-0.5314468089491129],[115,139,66,-0.530003672465682],[115,139,67,-0.5285049434751272],[115,139,68,-0.5272261556237936],[115,139,69,-0.5260342918336391],[115,139,70,-0.5249284580349922],[115,139,71,-0.5235806312412024],[115,139,72,-0.5217186473309994],[115,139,73,-0.5196252521127462],[115,139,74,-0.5176558569073677],[115,139,75,-0.5162321664392948],[115,139,76,-0.515502898953855],[115,139,77,-0.5150719676166773],[115,139,78,-0.5142765641212463],[115,139,79,-0.5129700470715761],[115,140,64,-0.532755671069026],[115,140,65,-0.5314468089491129],[115,140,66,-0.530003672465682],[115,140,67,-0.5285049434751272],[115,140,68,-0.5272261556237936],[115,140,69,-0.5260342918336391],[115,140,70,-0.5249284580349922],[115,140,71,-0.5235806312412024],[115,140,72,-0.5217186473309994],[115,140,73,-0.5196252521127462],[115,140,74,-0.5176558569073677],[115,140,75,-0.5162321664392948],[115,140,76,-0.515502898953855],[115,140,77,-0.5150719676166773],[115,140,78,-0.5142765641212463],[115,140,79,-0.5129700470715761],[115,141,64,-0.532755671069026],[115,141,65,-0.5314468089491129],[115,141,66,-0.530003672465682],[115,141,67,-0.5285049434751272],[115,141,68,-0.5272261556237936],[115,141,69,-0.5260342918336391],[115,141,70,-0.5249284580349922],[115,141,71,-0.5235806312412024],[115,141,72,-0.5217186473309994],[115,141,73,-0.5196252521127462],[115,141,74,-0.5176558569073677],[115,141,75,-0.5162321664392948],[115,141,76,-0.515502898953855],[115,141,77,-0.5150719676166773],[115,141,78,-0.5142765641212463],[115,141,79,-0.5129700470715761],[115,142,64,-0.532755671069026],[115,142,65,-0.5314468089491129],[115,142,66,-0.530003672465682],[115,142,67,-0.5285049434751272],[115,142,68,-0.5272261556237936],[115,142,69,-0.5260342918336391],[115,142,70,-0.5249284580349922],[115,142,71,-0.5235806312412024],[115,142,72,-0.5217186473309994],[115,142,73,-0.5196252521127462],[115,142,74,-0.5176558569073677],[115,142,75,-0.5162321664392948],[115,142,76,-0.515502898953855],[115,142,77,-0.5150719676166773],[115,142,78,-0.5142765641212463],[115,142,79,-0.5129700470715761],[115,143,64,-0.532755671069026],[115,143,65,-0.5314468089491129],[115,143,66,-0.530003672465682],[115,143,67,-0.5285049434751272],[115,143,68,-0.5272261556237936],[115,143,69,-0.5260342918336391],[115,143,70,-0.5249284580349922],[115,143,71,-0.5235806312412024],[115,143,72,-0.5217186473309994],[115,143,73,-0.5196252521127462],[115,143,74,-0.5176558569073677],[115,143,75,-0.5162321664392948],[115,143,76,-0.515502898953855],[115,143,77,-0.5150719676166773],[115,143,78,-0.5142765641212463],[115,143,79,-0.5129700470715761],[115,144,64,-0.532755671069026],[115,144,65,-0.5314468089491129],[115,144,66,-0.530003672465682],[115,144,67,-0.5285049434751272],[115,144,68,-0.5272261556237936],[115,144,69,-0.5260342918336391],[115,144,70,-0.5249284580349922],[115,144,71,-0.5235806312412024],[115,144,72,-0.5217186473309994],[115,144,73,-0.5196252521127462],[115,144,74,-0.5176558569073677],[115,144,75,-0.5162321664392948],[115,144,76,-0.515502898953855],[115,144,77,-0.5150719676166773],[115,144,78,-0.5142765641212463],[115,144,79,-0.5129700470715761],[115,145,64,-0.532755671069026],[115,145,65,-0.5314468089491129],[115,145,66,-0.530003672465682],[115,145,67,-0.5285049434751272],[115,145,68,-0.5272261556237936],[115,145,69,-0.5260342918336391],[115,145,70,-0.5249284580349922],[115,145,71,-0.5235806312412024],[115,145,72,-0.5217186473309994],[115,145,73,-0.5196252521127462],[115,145,74,-0.5176558569073677],[115,145,75,-0.5162321664392948],[115,145,76,-0.515502898953855],[115,145,77,-0.5150719676166773],[115,145,78,-0.5142765641212463],[115,145,79,-0.5129700470715761],[115,146,64,-0.532755671069026],[115,146,65,-0.5314468089491129],[115,146,66,-0.530003672465682],[115,146,67,-0.5285049434751272],[115,146,68,-0.5272261556237936],[115,146,69,-0.5260342918336391],[115,146,70,-0.5249284580349922],[115,146,71,-0.5235806312412024],[115,146,72,-0.5217186473309994],[115,146,73,-0.5196252521127462],[115,146,74,-0.5176558569073677],[115,146,75,-0.5162321664392948],[115,146,76,-0.515502898953855],[115,146,77,-0.5150719676166773],[115,146,78,-0.5142765641212463],[115,146,79,-0.5129700470715761],[115,147,64,-0.532755671069026],[115,147,65,-0.5314468089491129],[115,147,66,-0.530003672465682],[115,147,67,-0.5285049434751272],[115,147,68,-0.5272261556237936],[115,147,69,-0.5260342918336391],[115,147,70,-0.5249284580349922],[115,147,71,-0.5235806312412024],[115,147,72,-0.5217186473309994],[115,147,73,-0.5196252521127462],[115,147,74,-0.5176558569073677],[115,147,75,-0.5162321664392948],[115,147,76,-0.515502898953855],[115,147,77,-0.5150719676166773],[115,147,78,-0.5142765641212463],[115,147,79,-0.5129700470715761],[115,148,64,-0.532755671069026],[115,148,65,-0.5314468089491129],[115,148,66,-0.530003672465682],[115,148,67,-0.5285049434751272],[115,148,68,-0.5272261556237936],[115,148,69,-0.5260342918336391],[115,148,70,-0.5249284580349922],[115,148,71,-0.5235806312412024],[115,148,72,-0.5217186473309994],[115,148,73,-0.5196252521127462],[115,148,74,-0.5176558569073677],[115,148,75,-0.5162321664392948],[115,148,76,-0.515502898953855],[115,148,77,-0.5150719676166773],[115,148,78,-0.5142765641212463],[115,148,79,-0.5129700470715761],[115,149,64,-0.532755671069026],[115,149,65,-0.5314468089491129],[115,149,66,-0.530003672465682],[115,149,67,-0.5285049434751272],[115,149,68,-0.5272261556237936],[115,149,69,-0.5260342918336391],[115,149,70,-0.5249284580349922],[115,149,71,-0.5235806312412024],[115,149,72,-0.5217186473309994],[115,149,73,-0.5196252521127462],[115,149,74,-0.5176558569073677],[115,149,75,-0.5162321664392948],[115,149,76,-0.515502898953855],[115,149,77,-0.5150719676166773],[115,149,78,-0.5142765641212463],[115,149,79,-0.5129700470715761],[115,150,64,-0.532755671069026],[115,150,65,-0.5314468089491129],[115,150,66,-0.530003672465682],[115,150,67,-0.5285049434751272],[115,150,68,-0.5272261556237936],[115,150,69,-0.5260342918336391],[115,150,70,-0.5249284580349922],[115,150,71,-0.5235806312412024],[115,150,72,-0.5217186473309994],[115,150,73,-0.5196252521127462],[115,150,74,-0.5176558569073677],[115,150,75,-0.5162321664392948],[115,150,76,-0.515502898953855],[115,150,77,-0.5150719676166773],[115,150,78,-0.5142765641212463],[115,150,79,-0.5129700470715761],[115,151,64,-0.532755671069026],[115,151,65,-0.5314468089491129],[115,151,66,-0.530003672465682],[115,151,67,-0.5285049434751272],[115,151,68,-0.5272261556237936],[115,151,69,-0.5260342918336391],[115,151,70,-0.5249284580349922],[115,151,71,-0.5235806312412024],[115,151,72,-0.5217186473309994],[115,151,73,-0.5196252521127462],[115,151,74,-0.5176558569073677],[115,151,75,-0.5162321664392948],[115,151,76,-0.515502898953855],[115,151,77,-0.5150719676166773],[115,151,78,-0.5142765641212463],[115,151,79,-0.5129700470715761],[115,152,64,-0.532755671069026],[115,152,65,-0.5314468089491129],[115,152,66,-0.530003672465682],[115,152,67,-0.5285049434751272],[115,152,68,-0.5272261556237936],[115,152,69,-0.5260342918336391],[115,152,70,-0.5249284580349922],[115,152,71,-0.5235806312412024],[115,152,72,-0.5217186473309994],[115,152,73,-0.5196252521127462],[115,152,74,-0.5176558569073677],[115,152,75,-0.5162321664392948],[115,152,76,-0.515502898953855],[115,152,77,-0.5150719676166773],[115,152,78,-0.5142765641212463],[115,152,79,-0.5129700470715761],[115,153,64,-0.532755671069026],[115,153,65,-0.5314468089491129],[115,153,66,-0.530003672465682],[115,153,67,-0.5285049434751272],[115,153,68,-0.5272261556237936],[115,153,69,-0.5260342918336391],[115,153,70,-0.5249284580349922],[115,153,71,-0.5235806312412024],[115,153,72,-0.5217186473309994],[115,153,73,-0.5196252521127462],[115,153,74,-0.5176558569073677],[115,153,75,-0.5162321664392948],[115,153,76,-0.515502898953855],[115,153,77,-0.5150719676166773],[115,153,78,-0.5142765641212463],[115,153,79,-0.5129700470715761],[115,154,64,-0.532755671069026],[115,154,65,-0.5314468089491129],[115,154,66,-0.530003672465682],[115,154,67,-0.5285049434751272],[115,154,68,-0.5272261556237936],[115,154,69,-0.5260342918336391],[115,154,70,-0.5249284580349922],[115,154,71,-0.5235806312412024],[115,154,72,-0.5217186473309994],[115,154,73,-0.5196252521127462],[115,154,74,-0.5176558569073677],[115,154,75,-0.5162321664392948],[115,154,76,-0.515502898953855],[115,154,77,-0.5150719676166773],[115,154,78,-0.5142765641212463],[115,154,79,-0.5129700470715761],[115,155,64,-0.532755671069026],[115,155,65,-0.5314468089491129],[115,155,66,-0.530003672465682],[115,155,67,-0.5285049434751272],[115,155,68,-0.5272261556237936],[115,155,69,-0.5260342918336391],[115,155,70,-0.5249284580349922],[115,155,71,-0.5235806312412024],[115,155,72,-0.5217186473309994],[115,155,73,-0.5196252521127462],[115,155,74,-0.5176558569073677],[115,155,75,-0.5162321664392948],[115,155,76,-0.515502898953855],[115,155,77,-0.5150719676166773],[115,155,78,-0.5142765641212463],[115,155,79,-0.5129700470715761],[115,156,64,-0.532755671069026],[115,156,65,-0.5314468089491129],[115,156,66,-0.530003672465682],[115,156,67,-0.5285049434751272],[115,156,68,-0.5272261556237936],[115,156,69,-0.5260342918336391],[115,156,70,-0.5249284580349922],[115,156,71,-0.5235806312412024],[115,156,72,-0.5217186473309994],[115,156,73,-0.5196252521127462],[115,156,74,-0.5176558569073677],[115,156,75,-0.5162321664392948],[115,156,76,-0.515502898953855],[115,156,77,-0.5150719676166773],[115,156,78,-0.5142765641212463],[115,156,79,-0.5129700470715761],[115,157,64,-0.532755671069026],[115,157,65,-0.5314468089491129],[115,157,66,-0.530003672465682],[115,157,67,-0.5285049434751272],[115,157,68,-0.5272261556237936],[115,157,69,-0.5260342918336391],[115,157,70,-0.5249284580349922],[115,157,71,-0.5235806312412024],[115,157,72,-0.5217186473309994],[115,157,73,-0.5196252521127462],[115,157,74,-0.5176558569073677],[115,157,75,-0.5162321664392948],[115,157,76,-0.515502898953855],[115,157,77,-0.5150719676166773],[115,157,78,-0.5142765641212463],[115,157,79,-0.5129700470715761],[115,158,64,-0.532755671069026],[115,158,65,-0.5314468089491129],[115,158,66,-0.530003672465682],[115,158,67,-0.5285049434751272],[115,158,68,-0.5272261556237936],[115,158,69,-0.5260342918336391],[115,158,70,-0.5249284580349922],[115,158,71,-0.5235806312412024],[115,158,72,-0.5217186473309994],[115,158,73,-0.5196252521127462],[115,158,74,-0.5176558569073677],[115,158,75,-0.5162321664392948],[115,158,76,-0.515502898953855],[115,158,77,-0.5150719676166773],[115,158,78,-0.5142765641212463],[115,158,79,-0.5129700470715761],[115,159,64,-0.532755671069026],[115,159,65,-0.5314468089491129],[115,159,66,-0.530003672465682],[115,159,67,-0.5285049434751272],[115,159,68,-0.5272261556237936],[115,159,69,-0.5260342918336391],[115,159,70,-0.5249284580349922],[115,159,71,-0.5235806312412024],[115,159,72,-0.5217186473309994],[115,159,73,-0.5196252521127462],[115,159,74,-0.5176558569073677],[115,159,75,-0.5162321664392948],[115,159,76,-0.515502898953855],[115,159,77,-0.5150719676166773],[115,159,78,-0.5142765641212463],[115,159,79,-0.5129700470715761],[115,160,64,-0.532755671069026],[115,160,65,-0.5314468089491129],[115,160,66,-0.530003672465682],[115,160,67,-0.5285049434751272],[115,160,68,-0.5272261556237936],[115,160,69,-0.5260342918336391],[115,160,70,-0.5249284580349922],[115,160,71,-0.5235806312412024],[115,160,72,-0.5217186473309994],[115,160,73,-0.5196252521127462],[115,160,74,-0.5176558569073677],[115,160,75,-0.5162321664392948],[115,160,76,-0.515502898953855],[115,160,77,-0.5150719676166773],[115,160,78,-0.5142765641212463],[115,160,79,-0.5129700470715761],[115,161,64,-0.532755671069026],[115,161,65,-0.5314468089491129],[115,161,66,-0.530003672465682],[115,161,67,-0.5285049434751272],[115,161,68,-0.5272261556237936],[115,161,69,-0.5260342918336391],[115,161,70,-0.5249284580349922],[115,161,71,-0.5235806312412024],[115,161,72,-0.5217186473309994],[115,161,73,-0.5196252521127462],[115,161,74,-0.5176558569073677],[115,161,75,-0.5162321664392948],[115,161,76,-0.515502898953855],[115,161,77,-0.5150719676166773],[115,161,78,-0.5142765641212463],[115,161,79,-0.5129700470715761],[115,162,64,-0.532755671069026],[115,162,65,-0.5314468089491129],[115,162,66,-0.530003672465682],[115,162,67,-0.5285049434751272],[115,162,68,-0.5272261556237936],[115,162,69,-0.5260342918336391],[115,162,70,-0.5249284580349922],[115,162,71,-0.5235806312412024],[115,162,72,-0.5217186473309994],[115,162,73,-0.5196252521127462],[115,162,74,-0.5176558569073677],[115,162,75,-0.5162321664392948],[115,162,76,-0.515502898953855],[115,162,77,-0.5150719676166773],[115,162,78,-0.5142765641212463],[115,162,79,-0.5129700470715761],[115,163,64,-0.532755671069026],[115,163,65,-0.5314468089491129],[115,163,66,-0.530003672465682],[115,163,67,-0.5285049434751272],[115,163,68,-0.5272261556237936],[115,163,69,-0.5260342918336391],[115,163,70,-0.5249284580349922],[115,163,71,-0.5235806312412024],[115,163,72,-0.5217186473309994],[115,163,73,-0.5196252521127462],[115,163,74,-0.5176558569073677],[115,163,75,-0.5162321664392948],[115,163,76,-0.515502898953855],[115,163,77,-0.5150719676166773],[115,163,78,-0.5142765641212463],[115,163,79,-0.5129700470715761],[115,164,64,-0.532755671069026],[115,164,65,-0.5314468089491129],[115,164,66,-0.530003672465682],[115,164,67,-0.5285049434751272],[115,164,68,-0.5272261556237936],[115,164,69,-0.5260342918336391],[115,164,70,-0.5249284580349922],[115,164,71,-0.5235806312412024],[115,164,72,-0.5217186473309994],[115,164,73,-0.5196252521127462],[115,164,74,-0.5176558569073677],[115,164,75,-0.5162321664392948],[115,164,76,-0.515502898953855],[115,164,77,-0.5150719676166773],[115,164,78,-0.5142765641212463],[115,164,79,-0.5129700470715761],[115,165,64,-0.532755671069026],[115,165,65,-0.5314468089491129],[115,165,66,-0.530003672465682],[115,165,67,-0.5285049434751272],[115,165,68,-0.5272261556237936],[115,165,69,-0.5260342918336391],[115,165,70,-0.5249284580349922],[115,165,71,-0.5235806312412024],[115,165,72,-0.5217186473309994],[115,165,73,-0.5196252521127462],[115,165,74,-0.5176558569073677],[115,165,75,-0.5162321664392948],[115,165,76,-0.515502898953855],[115,165,77,-0.5150719676166773],[115,165,78,-0.5142765641212463],[115,165,79,-0.5129700470715761],[115,166,64,-0.532755671069026],[115,166,65,-0.5314468089491129],[115,166,66,-0.530003672465682],[115,166,67,-0.5285049434751272],[115,166,68,-0.5272261556237936],[115,166,69,-0.5260342918336391],[115,166,70,-0.5249284580349922],[115,166,71,-0.5235806312412024],[115,166,72,-0.5217186473309994],[115,166,73,-0.5196252521127462],[115,166,74,-0.5176558569073677],[115,166,75,-0.5162321664392948],[115,166,76,-0.515502898953855],[115,166,77,-0.5150719676166773],[115,166,78,-0.5142765641212463],[115,166,79,-0.5129700470715761],[115,167,64,-0.532755671069026],[115,167,65,-0.5314468089491129],[115,167,66,-0.530003672465682],[115,167,67,-0.5285049434751272],[115,167,68,-0.5272261556237936],[115,167,69,-0.5260342918336391],[115,167,70,-0.5249284580349922],[115,167,71,-0.5235806312412024],[115,167,72,-0.5217186473309994],[115,167,73,-0.5196252521127462],[115,167,74,-0.5176558569073677],[115,167,75,-0.5162321664392948],[115,167,76,-0.515502898953855],[115,167,77,-0.5150719676166773],[115,167,78,-0.5142765641212463],[115,167,79,-0.5129700470715761],[115,168,64,-0.532755671069026],[115,168,65,-0.5314468089491129],[115,168,66,-0.530003672465682],[115,168,67,-0.5285049434751272],[115,168,68,-0.5272261556237936],[115,168,69,-0.5260342918336391],[115,168,70,-0.5249284580349922],[115,168,71,-0.5235806312412024],[115,168,72,-0.5217186473309994],[115,168,73,-0.5196252521127462],[115,168,74,-0.5176558569073677],[115,168,75,-0.5162321664392948],[115,168,76,-0.515502898953855],[115,168,77,-0.5150719676166773],[115,168,78,-0.5142765641212463],[115,168,79,-0.5129700470715761],[115,169,64,-0.532755671069026],[115,169,65,-0.5314468089491129],[115,169,66,-0.530003672465682],[115,169,67,-0.5285049434751272],[115,169,68,-0.5272261556237936],[115,169,69,-0.5260342918336391],[115,169,70,-0.5249284580349922],[115,169,71,-0.5235806312412024],[115,169,72,-0.5217186473309994],[115,169,73,-0.5196252521127462],[115,169,74,-0.5176558569073677],[115,169,75,-0.5162321664392948],[115,169,76,-0.515502898953855],[115,169,77,-0.5150719676166773],[115,169,78,-0.5142765641212463],[115,169,79,-0.5129700470715761],[115,170,64,-0.532755671069026],[115,170,65,-0.5314468089491129],[115,170,66,-0.530003672465682],[115,170,67,-0.5285049434751272],[115,170,68,-0.5272261556237936],[115,170,69,-0.5260342918336391],[115,170,70,-0.5249284580349922],[115,170,71,-0.5235806312412024],[115,170,72,-0.5217186473309994],[115,170,73,-0.5196252521127462],[115,170,74,-0.5176558569073677],[115,170,75,-0.5162321664392948],[115,170,76,-0.515502898953855],[115,170,77,-0.5150719676166773],[115,170,78,-0.5142765641212463],[115,170,79,-0.5129700470715761],[115,171,64,-0.532755671069026],[115,171,65,-0.5314468089491129],[115,171,66,-0.530003672465682],[115,171,67,-0.5285049434751272],[115,171,68,-0.5272261556237936],[115,171,69,-0.5260342918336391],[115,171,70,-0.5249284580349922],[115,171,71,-0.5235806312412024],[115,171,72,-0.5217186473309994],[115,171,73,-0.5196252521127462],[115,171,74,-0.5176558569073677],[115,171,75,-0.5162321664392948],[115,171,76,-0.515502898953855],[115,171,77,-0.5150719676166773],[115,171,78,-0.5142765641212463],[115,171,79,-0.5129700470715761],[115,172,64,-0.532755671069026],[115,172,65,-0.5314468089491129],[115,172,66,-0.530003672465682],[115,172,67,-0.5285049434751272],[115,172,68,-0.5272261556237936],[115,172,69,-0.5260342918336391],[115,172,70,-0.5249284580349922],[115,172,71,-0.5235806312412024],[115,172,72,-0.5217186473309994],[115,172,73,-0.5196252521127462],[115,172,74,-0.5176558569073677],[115,172,75,-0.5162321664392948],[115,172,76,-0.515502898953855],[115,172,77,-0.5150719676166773],[115,172,78,-0.5142765641212463],[115,172,79,-0.5129700470715761],[115,173,64,-0.532755671069026],[115,173,65,-0.5314468089491129],[115,173,66,-0.530003672465682],[115,173,67,-0.5285049434751272],[115,173,68,-0.5272261556237936],[115,173,69,-0.5260342918336391],[115,173,70,-0.5249284580349922],[115,173,71,-0.5235806312412024],[115,173,72,-0.5217186473309994],[115,173,73,-0.5196252521127462],[115,173,74,-0.5176558569073677],[115,173,75,-0.5162321664392948],[115,173,76,-0.515502898953855],[115,173,77,-0.5150719676166773],[115,173,78,-0.5142765641212463],[115,173,79,-0.5129700470715761],[115,174,64,-0.532755671069026],[115,174,65,-0.5314468089491129],[115,174,66,-0.530003672465682],[115,174,67,-0.5285049434751272],[115,174,68,-0.5272261556237936],[115,174,69,-0.5260342918336391],[115,174,70,-0.5249284580349922],[115,174,71,-0.5235806312412024],[115,174,72,-0.5217186473309994],[115,174,73,-0.5196252521127462],[115,174,74,-0.5176558569073677],[115,174,75,-0.5162321664392948],[115,174,76,-0.515502898953855],[115,174,77,-0.5150719676166773],[115,174,78,-0.5142765641212463],[115,174,79,-0.5129700470715761],[115,175,64,-0.532755671069026],[115,175,65,-0.5314468089491129],[115,175,66,-0.530003672465682],[115,175,67,-0.5285049434751272],[115,175,68,-0.5272261556237936],[115,175,69,-0.5260342918336391],[115,175,70,-0.5249284580349922],[115,175,71,-0.5235806312412024],[115,175,72,-0.5217186473309994],[115,175,73,-0.5196252521127462],[115,175,74,-0.5176558569073677],[115,175,75,-0.5162321664392948],[115,175,76,-0.515502898953855],[115,175,77,-0.5150719676166773],[115,175,78,-0.5142765641212463],[115,175,79,-0.5129700470715761],[115,176,64,-0.532755671069026],[115,176,65,-0.5314468089491129],[115,176,66,-0.530003672465682],[115,176,67,-0.5285049434751272],[115,176,68,-0.5272261556237936],[115,176,69,-0.5260342918336391],[115,176,70,-0.5249284580349922],[115,176,71,-0.5235806312412024],[115,176,72,-0.5217186473309994],[115,176,73,-0.5196252521127462],[115,176,74,-0.5176558569073677],[115,176,75,-0.5162321664392948],[115,176,76,-0.515502898953855],[115,176,77,-0.5150719676166773],[115,176,78,-0.5142765641212463],[115,176,79,-0.5129700470715761],[115,177,64,-0.532755671069026],[115,177,65,-0.5314468089491129],[115,177,66,-0.530003672465682],[115,177,67,-0.5285049434751272],[115,177,68,-0.5272261556237936],[115,177,69,-0.5260342918336391],[115,177,70,-0.5249284580349922],[115,177,71,-0.5235806312412024],[115,177,72,-0.5217186473309994],[115,177,73,-0.5196252521127462],[115,177,74,-0.5176558569073677],[115,177,75,-0.5162321664392948],[115,177,76,-0.515502898953855],[115,177,77,-0.5150719676166773],[115,177,78,-0.5142765641212463],[115,177,79,-0.5129700470715761],[115,178,64,-0.532755671069026],[115,178,65,-0.5314468089491129],[115,178,66,-0.530003672465682],[115,178,67,-0.5285049434751272],[115,178,68,-0.5272261556237936],[115,178,69,-0.5260342918336391],[115,178,70,-0.5249284580349922],[115,178,71,-0.5235806312412024],[115,178,72,-0.5217186473309994],[115,178,73,-0.5196252521127462],[115,178,74,-0.5176558569073677],[115,178,75,-0.5162321664392948],[115,178,76,-0.515502898953855],[115,178,77,-0.5150719676166773],[115,178,78,-0.5142765641212463],[115,178,79,-0.5129700470715761],[115,179,64,-0.532755671069026],[115,179,65,-0.5314468089491129],[115,179,66,-0.530003672465682],[115,179,67,-0.5285049434751272],[115,179,68,-0.5272261556237936],[115,179,69,-0.5260342918336391],[115,179,70,-0.5249284580349922],[115,179,71,-0.5235806312412024],[115,179,72,-0.5217186473309994],[115,179,73,-0.5196252521127462],[115,179,74,-0.5176558569073677],[115,179,75,-0.5162321664392948],[115,179,76,-0.515502898953855],[115,179,77,-0.5150719676166773],[115,179,78,-0.5142765641212463],[115,179,79,-0.5129700470715761],[115,180,64,-0.532755671069026],[115,180,65,-0.5314468089491129],[115,180,66,-0.530003672465682],[115,180,67,-0.5285049434751272],[115,180,68,-0.5272261556237936],[115,180,69,-0.5260342918336391],[115,180,70,-0.5249284580349922],[115,180,71,-0.5235806312412024],[115,180,72,-0.5217186473309994],[115,180,73,-0.5196252521127462],[115,180,74,-0.5176558569073677],[115,180,75,-0.5162321664392948],[115,180,76,-0.515502898953855],[115,180,77,-0.5150719676166773],[115,180,78,-0.5142765641212463],[115,180,79,-0.5129700470715761],[115,181,64,-0.532755671069026],[115,181,65,-0.5314468089491129],[115,181,66,-0.530003672465682],[115,181,67,-0.5285049434751272],[115,181,68,-0.5272261556237936],[115,181,69,-0.5260342918336391],[115,181,70,-0.5249284580349922],[115,181,71,-0.5235806312412024],[115,181,72,-0.5217186473309994],[115,181,73,-0.5196252521127462],[115,181,74,-0.5176558569073677],[115,181,75,-0.5162321664392948],[115,181,76,-0.515502898953855],[115,181,77,-0.5150719676166773],[115,181,78,-0.5142765641212463],[115,181,79,-0.5129700470715761],[115,182,64,-0.532755671069026],[115,182,65,-0.5314468089491129],[115,182,66,-0.530003672465682],[115,182,67,-0.5285049434751272],[115,182,68,-0.5272261556237936],[115,182,69,-0.5260342918336391],[115,182,70,-0.5249284580349922],[115,182,71,-0.5235806312412024],[115,182,72,-0.5217186473309994],[115,182,73,-0.5196252521127462],[115,182,74,-0.5176558569073677],[115,182,75,-0.5162321664392948],[115,182,76,-0.515502898953855],[115,182,77,-0.5150719676166773],[115,182,78,-0.5142765641212463],[115,182,79,-0.5129700470715761],[115,183,64,-0.532755671069026],[115,183,65,-0.5314468089491129],[115,183,66,-0.530003672465682],[115,183,67,-0.5285049434751272],[115,183,68,-0.5272261556237936],[115,183,69,-0.5260342918336391],[115,183,70,-0.5249284580349922],[115,183,71,-0.5235806312412024],[115,183,72,-0.5217186473309994],[115,183,73,-0.5196252521127462],[115,183,74,-0.5176558569073677],[115,183,75,-0.5162321664392948],[115,183,76,-0.515502898953855],[115,183,77,-0.5150719676166773],[115,183,78,-0.5142765641212463],[115,183,79,-0.5129700470715761],[115,184,64,-0.532755671069026],[115,184,65,-0.5314468089491129],[115,184,66,-0.530003672465682],[115,184,67,-0.5285049434751272],[115,184,68,-0.5272261556237936],[115,184,69,-0.5260342918336391],[115,184,70,-0.5249284580349922],[115,184,71,-0.5235806312412024],[115,184,72,-0.5217186473309994],[115,184,73,-0.5196252521127462],[115,184,74,-0.5176558569073677],[115,184,75,-0.5162321664392948],[115,184,76,-0.515502898953855],[115,184,77,-0.5150719676166773],[115,184,78,-0.5142765641212463],[115,184,79,-0.5129700470715761],[115,185,64,-0.532755671069026],[115,185,65,-0.5314468089491129],[115,185,66,-0.530003672465682],[115,185,67,-0.5285049434751272],[115,185,68,-0.5272261556237936],[115,185,69,-0.5260342918336391],[115,185,70,-0.5249284580349922],[115,185,71,-0.5235806312412024],[115,185,72,-0.5217186473309994],[115,185,73,-0.5196252521127462],[115,185,74,-0.5176558569073677],[115,185,75,-0.5162321664392948],[115,185,76,-0.515502898953855],[115,185,77,-0.5150719676166773],[115,185,78,-0.5142765641212463],[115,185,79,-0.5129700470715761],[115,186,64,-0.532755671069026],[115,186,65,-0.5314468089491129],[115,186,66,-0.530003672465682],[115,186,67,-0.5285049434751272],[115,186,68,-0.5272261556237936],[115,186,69,-0.5260342918336391],[115,186,70,-0.5249284580349922],[115,186,71,-0.5235806312412024],[115,186,72,-0.5217186473309994],[115,186,73,-0.5196252521127462],[115,186,74,-0.5176558569073677],[115,186,75,-0.5162321664392948],[115,186,76,-0.515502898953855],[115,186,77,-0.5150719676166773],[115,186,78,-0.5142765641212463],[115,186,79,-0.5129700470715761],[115,187,64,-0.532755671069026],[115,187,65,-0.5314468089491129],[115,187,66,-0.530003672465682],[115,187,67,-0.5285049434751272],[115,187,68,-0.5272261556237936],[115,187,69,-0.5260342918336391],[115,187,70,-0.5249284580349922],[115,187,71,-0.5235806312412024],[115,187,72,-0.5217186473309994],[115,187,73,-0.5196252521127462],[115,187,74,-0.5176558569073677],[115,187,75,-0.5162321664392948],[115,187,76,-0.515502898953855],[115,187,77,-0.5150719676166773],[115,187,78,-0.5142765641212463],[115,187,79,-0.5129700470715761],[115,188,64,-0.532755671069026],[115,188,65,-0.5314468089491129],[115,188,66,-0.530003672465682],[115,188,67,-0.5285049434751272],[115,188,68,-0.5272261556237936],[115,188,69,-0.5260342918336391],[115,188,70,-0.5249284580349922],[115,188,71,-0.5235806312412024],[115,188,72,-0.5217186473309994],[115,188,73,-0.5196252521127462],[115,188,74,-0.5176558569073677],[115,188,75,-0.5162321664392948],[115,188,76,-0.515502898953855],[115,188,77,-0.5150719676166773],[115,188,78,-0.5142765641212463],[115,188,79,-0.5129700470715761],[115,189,64,-0.532755671069026],[115,189,65,-0.5314468089491129],[115,189,66,-0.530003672465682],[115,189,67,-0.5285049434751272],[115,189,68,-0.5272261556237936],[115,189,69,-0.5260342918336391],[115,189,70,-0.5249284580349922],[115,189,71,-0.5235806312412024],[115,189,72,-0.5217186473309994],[115,189,73,-0.5196252521127462],[115,189,74,-0.5176558569073677],[115,189,75,-0.5162321664392948],[115,189,76,-0.515502898953855],[115,189,77,-0.5150719676166773],[115,189,78,-0.5142765641212463],[115,189,79,-0.5129700470715761],[115,190,64,-0.532755671069026],[115,190,65,-0.5314468089491129],[115,190,66,-0.530003672465682],[115,190,67,-0.5285049434751272],[115,190,68,-0.5272261556237936],[115,190,69,-0.5260342918336391],[115,190,70,-0.5249284580349922],[115,190,71,-0.5235806312412024],[115,190,72,-0.5217186473309994],[115,190,73,-0.5196252521127462],[115,190,74,-0.5176558569073677],[115,190,75,-0.5162321664392948],[115,190,76,-0.515502898953855],[115,190,77,-0.5150719676166773],[115,190,78,-0.5142765641212463],[115,190,79,-0.5129700470715761],[115,191,64,-0.532755671069026],[115,191,65,-0.5314468089491129],[115,191,66,-0.530003672465682],[115,191,67,-0.5285049434751272],[115,191,68,-0.5272261556237936],[115,191,69,-0.5260342918336391],[115,191,70,-0.5249284580349922],[115,191,71,-0.5235806312412024],[115,191,72,-0.5217186473309994],[115,191,73,-0.5196252521127462],[115,191,74,-0.5176558569073677],[115,191,75,-0.5162321664392948],[115,191,76,-0.515502898953855],[115,191,77,-0.5150719676166773],[115,191,78,-0.5142765641212463],[115,191,79,-0.5129700470715761],[115,192,64,-0.532755671069026],[115,192,65,-0.5314468089491129],[115,192,66,-0.530003672465682],[115,192,67,-0.5285049434751272],[115,192,68,-0.5272261556237936],[115,192,69,-0.5260342918336391],[115,192,70,-0.5249284580349922],[115,192,71,-0.5235806312412024],[115,192,72,-0.5217186473309994],[115,192,73,-0.5196252521127462],[115,192,74,-0.5176558569073677],[115,192,75,-0.5162321664392948],[115,192,76,-0.515502898953855],[115,192,77,-0.5150719676166773],[115,192,78,-0.5142765641212463],[115,192,79,-0.5129700470715761],[115,193,64,-0.532755671069026],[115,193,65,-0.5314468089491129],[115,193,66,-0.530003672465682],[115,193,67,-0.5285049434751272],[115,193,68,-0.5272261556237936],[115,193,69,-0.5260342918336391],[115,193,70,-0.5249284580349922],[115,193,71,-0.5235806312412024],[115,193,72,-0.5217186473309994],[115,193,73,-0.5196252521127462],[115,193,74,-0.5176558569073677],[115,193,75,-0.5162321664392948],[115,193,76,-0.515502898953855],[115,193,77,-0.5150719676166773],[115,193,78,-0.5142765641212463],[115,193,79,-0.5129700470715761],[115,194,64,-0.532755671069026],[115,194,65,-0.5314468089491129],[115,194,66,-0.530003672465682],[115,194,67,-0.5285049434751272],[115,194,68,-0.5272261556237936],[115,194,69,-0.5260342918336391],[115,194,70,-0.5249284580349922],[115,194,71,-0.5235806312412024],[115,194,72,-0.5217186473309994],[115,194,73,-0.5196252521127462],[115,194,74,-0.5176558569073677],[115,194,75,-0.5162321664392948],[115,194,76,-0.515502898953855],[115,194,77,-0.5150719676166773],[115,194,78,-0.5142765641212463],[115,194,79,-0.5129700470715761],[115,195,64,-0.532755671069026],[115,195,65,-0.5314468089491129],[115,195,66,-0.530003672465682],[115,195,67,-0.5285049434751272],[115,195,68,-0.5272261556237936],[115,195,69,-0.5260342918336391],[115,195,70,-0.5249284580349922],[115,195,71,-0.5235806312412024],[115,195,72,-0.5217186473309994],[115,195,73,-0.5196252521127462],[115,195,74,-0.5176558569073677],[115,195,75,-0.5162321664392948],[115,195,76,-0.515502898953855],[115,195,77,-0.5150719676166773],[115,195,78,-0.5142765641212463],[115,195,79,-0.5129700470715761],[115,196,64,-0.532755671069026],[115,196,65,-0.5314468089491129],[115,196,66,-0.530003672465682],[115,196,67,-0.5285049434751272],[115,196,68,-0.5272261556237936],[115,196,69,-0.5260342918336391],[115,196,70,-0.5249284580349922],[115,196,71,-0.5235806312412024],[115,196,72,-0.5217186473309994],[115,196,73,-0.5196252521127462],[115,196,74,-0.5176558569073677],[115,196,75,-0.5162321664392948],[115,196,76,-0.515502898953855],[115,196,77,-0.5150719676166773],[115,196,78,-0.5142765641212463],[115,196,79,-0.5129700470715761],[115,197,64,-0.532755671069026],[115,197,65,-0.5314468089491129],[115,197,66,-0.530003672465682],[115,197,67,-0.5285049434751272],[115,197,68,-0.5272261556237936],[115,197,69,-0.5260342918336391],[115,197,70,-0.5249284580349922],[115,197,71,-0.5235806312412024],[115,197,72,-0.5217186473309994],[115,197,73,-0.5196252521127462],[115,197,74,-0.5176558569073677],[115,197,75,-0.5162321664392948],[115,197,76,-0.515502898953855],[115,197,77,-0.5150719676166773],[115,197,78,-0.5142765641212463],[115,197,79,-0.5129700470715761],[115,198,64,-0.532755671069026],[115,198,65,-0.5314468089491129],[115,198,66,-0.530003672465682],[115,198,67,-0.5285049434751272],[115,198,68,-0.5272261556237936],[115,198,69,-0.5260342918336391],[115,198,70,-0.5249284580349922],[115,198,71,-0.5235806312412024],[115,198,72,-0.5217186473309994],[115,198,73,-0.5196252521127462],[115,198,74,-0.5176558569073677],[115,198,75,-0.5162321664392948],[115,198,76,-0.515502898953855],[115,198,77,-0.5150719676166773],[115,198,78,-0.5142765641212463],[115,198,79,-0.5129700470715761],[115,199,64,-0.532755671069026],[115,199,65,-0.5314468089491129],[115,199,66,-0.530003672465682],[115,199,67,-0.5285049434751272],[115,199,68,-0.5272261556237936],[115,199,69,-0.5260342918336391],[115,199,70,-0.5249284580349922],[115,199,71,-0.5235806312412024],[115,199,72,-0.5217186473309994],[115,199,73,-0.5196252521127462],[115,199,74,-0.5176558569073677],[115,199,75,-0.5162321664392948],[115,199,76,-0.515502898953855],[115,199,77,-0.5150719676166773],[115,199,78,-0.5142765641212463],[115,199,79,-0.5129700470715761],[115,200,64,-0.532755671069026],[115,200,65,-0.5314468089491129],[115,200,66,-0.530003672465682],[115,200,67,-0.5285049434751272],[115,200,68,-0.5272261556237936],[115,200,69,-0.5260342918336391],[115,200,70,-0.5249284580349922],[115,200,71,-0.5235806312412024],[115,200,72,-0.5217186473309994],[115,200,73,-0.5196252521127462],[115,200,74,-0.5176558569073677],[115,200,75,-0.5162321664392948],[115,200,76,-0.515502898953855],[115,200,77,-0.5150719676166773],[115,200,78,-0.5142765641212463],[115,200,79,-0.5129700470715761],[115,201,64,-0.532755671069026],[115,201,65,-0.5314468089491129],[115,201,66,-0.530003672465682],[115,201,67,-0.5285049434751272],[115,201,68,-0.5272261556237936],[115,201,69,-0.5260342918336391],[115,201,70,-0.5249284580349922],[115,201,71,-0.5235806312412024],[115,201,72,-0.5217186473309994],[115,201,73,-0.5196252521127462],[115,201,74,-0.5176558569073677],[115,201,75,-0.5162321664392948],[115,201,76,-0.515502898953855],[115,201,77,-0.5150719676166773],[115,201,78,-0.5142765641212463],[115,201,79,-0.5129700470715761],[115,202,64,-0.532755671069026],[115,202,65,-0.5314468089491129],[115,202,66,-0.530003672465682],[115,202,67,-0.5285049434751272],[115,202,68,-0.5272261556237936],[115,202,69,-0.5260342918336391],[115,202,70,-0.5249284580349922],[115,202,71,-0.5235806312412024],[115,202,72,-0.5217186473309994],[115,202,73,-0.5196252521127462],[115,202,74,-0.5176558569073677],[115,202,75,-0.5162321664392948],[115,202,76,-0.515502898953855],[115,202,77,-0.5150719676166773],[115,202,78,-0.5142765641212463],[115,202,79,-0.5129700470715761],[115,203,64,-0.532755671069026],[115,203,65,-0.5314468089491129],[115,203,66,-0.530003672465682],[115,203,67,-0.5285049434751272],[115,203,68,-0.5272261556237936],[115,203,69,-0.5260342918336391],[115,203,70,-0.5249284580349922],[115,203,71,-0.5235806312412024],[115,203,72,-0.5217186473309994],[115,203,73,-0.5196252521127462],[115,203,74,-0.5176558569073677],[115,203,75,-0.5162321664392948],[115,203,76,-0.515502898953855],[115,203,77,-0.5150719676166773],[115,203,78,-0.5142765641212463],[115,203,79,-0.5129700470715761],[115,204,64,-0.532755671069026],[115,204,65,-0.5314468089491129],[115,204,66,-0.530003672465682],[115,204,67,-0.5285049434751272],[115,204,68,-0.5272261556237936],[115,204,69,-0.5260342918336391],[115,204,70,-0.5249284580349922],[115,204,71,-0.5235806312412024],[115,204,72,-0.5217186473309994],[115,204,73,-0.5196252521127462],[115,204,74,-0.5176558569073677],[115,204,75,-0.5162321664392948],[115,204,76,-0.515502898953855],[115,204,77,-0.5150719676166773],[115,204,78,-0.5142765641212463],[115,204,79,-0.5129700470715761],[115,205,64,-0.532755671069026],[115,205,65,-0.5314468089491129],[115,205,66,-0.530003672465682],[115,205,67,-0.5285049434751272],[115,205,68,-0.5272261556237936],[115,205,69,-0.5260342918336391],[115,205,70,-0.5249284580349922],[115,205,71,-0.5235806312412024],[115,205,72,-0.5217186473309994],[115,205,73,-0.5196252521127462],[115,205,74,-0.5176558569073677],[115,205,75,-0.5162321664392948],[115,205,76,-0.515502898953855],[115,205,77,-0.5150719676166773],[115,205,78,-0.5142765641212463],[115,205,79,-0.5129700470715761],[115,206,64,-0.532755671069026],[115,206,65,-0.5314468089491129],[115,206,66,-0.530003672465682],[115,206,67,-0.5285049434751272],[115,206,68,-0.5272261556237936],[115,206,69,-0.5260342918336391],[115,206,70,-0.5249284580349922],[115,206,71,-0.5235806312412024],[115,206,72,-0.5217186473309994],[115,206,73,-0.5196252521127462],[115,206,74,-0.5176558569073677],[115,206,75,-0.5162321664392948],[115,206,76,-0.515502898953855],[115,206,77,-0.5150719676166773],[115,206,78,-0.5142765641212463],[115,206,79,-0.5129700470715761],[115,207,64,-0.532755671069026],[115,207,65,-0.5314468089491129],[115,207,66,-0.530003672465682],[115,207,67,-0.5285049434751272],[115,207,68,-0.5272261556237936],[115,207,69,-0.5260342918336391],[115,207,70,-0.5249284580349922],[115,207,71,-0.5235806312412024],[115,207,72,-0.5217186473309994],[115,207,73,-0.5196252521127462],[115,207,74,-0.5176558569073677],[115,207,75,-0.5162321664392948],[115,207,76,-0.515502898953855],[115,207,77,-0.5150719676166773],[115,207,78,-0.5142765641212463],[115,207,79,-0.5129700470715761],[115,208,64,-0.532755671069026],[115,208,65,-0.5314468089491129],[115,208,66,-0.530003672465682],[115,208,67,-0.5285049434751272],[115,208,68,-0.5272261556237936],[115,208,69,-0.5260342918336391],[115,208,70,-0.5249284580349922],[115,208,71,-0.5235806312412024],[115,208,72,-0.5217186473309994],[115,208,73,-0.5196252521127462],[115,208,74,-0.5176558569073677],[115,208,75,-0.5162321664392948],[115,208,76,-0.515502898953855],[115,208,77,-0.5150719676166773],[115,208,78,-0.5142765641212463],[115,208,79,-0.5129700470715761],[115,209,64,-0.532755671069026],[115,209,65,-0.5314468089491129],[115,209,66,-0.530003672465682],[115,209,67,-0.5285049434751272],[115,209,68,-0.5272261556237936],[115,209,69,-0.5260342918336391],[115,209,70,-0.5249284580349922],[115,209,71,-0.5235806312412024],[115,209,72,-0.5217186473309994],[115,209,73,-0.5196252521127462],[115,209,74,-0.5176558569073677],[115,209,75,-0.5162321664392948],[115,209,76,-0.515502898953855],[115,209,77,-0.5150719676166773],[115,209,78,-0.5142765641212463],[115,209,79,-0.5129700470715761],[115,210,64,-0.532755671069026],[115,210,65,-0.5314468089491129],[115,210,66,-0.530003672465682],[115,210,67,-0.5285049434751272],[115,210,68,-0.5272261556237936],[115,210,69,-0.5260342918336391],[115,210,70,-0.5249284580349922],[115,210,71,-0.5235806312412024],[115,210,72,-0.5217186473309994],[115,210,73,-0.5196252521127462],[115,210,74,-0.5176558569073677],[115,210,75,-0.5162321664392948],[115,210,76,-0.515502898953855],[115,210,77,-0.5150719676166773],[115,210,78,-0.5142765641212463],[115,210,79,-0.5129700470715761],[115,211,64,-0.532755671069026],[115,211,65,-0.5314468089491129],[115,211,66,-0.530003672465682],[115,211,67,-0.5285049434751272],[115,211,68,-0.5272261556237936],[115,211,69,-0.5260342918336391],[115,211,70,-0.5249284580349922],[115,211,71,-0.5235806312412024],[115,211,72,-0.5217186473309994],[115,211,73,-0.5196252521127462],[115,211,74,-0.5176558569073677],[115,211,75,-0.5162321664392948],[115,211,76,-0.515502898953855],[115,211,77,-0.5150719676166773],[115,211,78,-0.5142765641212463],[115,211,79,-0.5129700470715761],[115,212,64,-0.532755671069026],[115,212,65,-0.5314468089491129],[115,212,66,-0.530003672465682],[115,212,67,-0.5285049434751272],[115,212,68,-0.5272261556237936],[115,212,69,-0.5260342918336391],[115,212,70,-0.5249284580349922],[115,212,71,-0.5235806312412024],[115,212,72,-0.5217186473309994],[115,212,73,-0.5196252521127462],[115,212,74,-0.5176558569073677],[115,212,75,-0.5162321664392948],[115,212,76,-0.515502898953855],[115,212,77,-0.5150719676166773],[115,212,78,-0.5142765641212463],[115,212,79,-0.5129700470715761],[115,213,64,-0.532755671069026],[115,213,65,-0.5314468089491129],[115,213,66,-0.530003672465682],[115,213,67,-0.5285049434751272],[115,213,68,-0.5272261556237936],[115,213,69,-0.5260342918336391],[115,213,70,-0.5249284580349922],[115,213,71,-0.5235806312412024],[115,213,72,-0.5217186473309994],[115,213,73,-0.5196252521127462],[115,213,74,-0.5176558569073677],[115,213,75,-0.5162321664392948],[115,213,76,-0.515502898953855],[115,213,77,-0.5150719676166773],[115,213,78,-0.5142765641212463],[115,213,79,-0.5129700470715761],[115,214,64,-0.532755671069026],[115,214,65,-0.5314468089491129],[115,214,66,-0.530003672465682],[115,214,67,-0.5285049434751272],[115,214,68,-0.5272261556237936],[115,214,69,-0.5260342918336391],[115,214,70,-0.5249284580349922],[115,214,71,-0.5235806312412024],[115,214,72,-0.5217186473309994],[115,214,73,-0.5196252521127462],[115,214,74,-0.5176558569073677],[115,214,75,-0.5162321664392948],[115,214,76,-0.515502898953855],[115,214,77,-0.5150719676166773],[115,214,78,-0.5142765641212463],[115,214,79,-0.5129700470715761],[115,215,64,-0.532755671069026],[115,215,65,-0.5314468089491129],[115,215,66,-0.530003672465682],[115,215,67,-0.5285049434751272],[115,215,68,-0.5272261556237936],[115,215,69,-0.5260342918336391],[115,215,70,-0.5249284580349922],[115,215,71,-0.5235806312412024],[115,215,72,-0.5217186473309994],[115,215,73,-0.5196252521127462],[115,215,74,-0.5176558569073677],[115,215,75,-0.5162321664392948],[115,215,76,-0.515502898953855],[115,215,77,-0.5150719676166773],[115,215,78,-0.5142765641212463],[115,215,79,-0.5129700470715761],[115,216,64,-0.532755671069026],[115,216,65,-0.5314468089491129],[115,216,66,-0.530003672465682],[115,216,67,-0.5285049434751272],[115,216,68,-0.5272261556237936],[115,216,69,-0.5260342918336391],[115,216,70,-0.5249284580349922],[115,216,71,-0.5235806312412024],[115,216,72,-0.5217186473309994],[115,216,73,-0.5196252521127462],[115,216,74,-0.5176558569073677],[115,216,75,-0.5162321664392948],[115,216,76,-0.515502898953855],[115,216,77,-0.5150719676166773],[115,216,78,-0.5142765641212463],[115,216,79,-0.5129700470715761],[115,217,64,-0.532755671069026],[115,217,65,-0.5314468089491129],[115,217,66,-0.530003672465682],[115,217,67,-0.5285049434751272],[115,217,68,-0.5272261556237936],[115,217,69,-0.5260342918336391],[115,217,70,-0.5249284580349922],[115,217,71,-0.5235806312412024],[115,217,72,-0.5217186473309994],[115,217,73,-0.5196252521127462],[115,217,74,-0.5176558569073677],[115,217,75,-0.5162321664392948],[115,217,76,-0.515502898953855],[115,217,77,-0.5150719676166773],[115,217,78,-0.5142765641212463],[115,217,79,-0.5129700470715761],[115,218,64,-0.532755671069026],[115,218,65,-0.5314468089491129],[115,218,66,-0.530003672465682],[115,218,67,-0.5285049434751272],[115,218,68,-0.5272261556237936],[115,218,69,-0.5260342918336391],[115,218,70,-0.5249284580349922],[115,218,71,-0.5235806312412024],[115,218,72,-0.5217186473309994],[115,218,73,-0.5196252521127462],[115,218,74,-0.5176558569073677],[115,218,75,-0.5162321664392948],[115,218,76,-0.515502898953855],[115,218,77,-0.5150719676166773],[115,218,78,-0.5142765641212463],[115,218,79,-0.5129700470715761],[115,219,64,-0.532755671069026],[115,219,65,-0.5314468089491129],[115,219,66,-0.530003672465682],[115,219,67,-0.5285049434751272],[115,219,68,-0.5272261556237936],[115,219,69,-0.5260342918336391],[115,219,70,-0.5249284580349922],[115,219,71,-0.5235806312412024],[115,219,72,-0.5217186473309994],[115,219,73,-0.5196252521127462],[115,219,74,-0.5176558569073677],[115,219,75,-0.5162321664392948],[115,219,76,-0.515502898953855],[115,219,77,-0.5150719676166773],[115,219,78,-0.5142765641212463],[115,219,79,-0.5129700470715761],[115,220,64,-0.532755671069026],[115,220,65,-0.5314468089491129],[115,220,66,-0.530003672465682],[115,220,67,-0.5285049434751272],[115,220,68,-0.5272261556237936],[115,220,69,-0.5260342918336391],[115,220,70,-0.5249284580349922],[115,220,71,-0.5235806312412024],[115,220,72,-0.5217186473309994],[115,220,73,-0.5196252521127462],[115,220,74,-0.5176558569073677],[115,220,75,-0.5162321664392948],[115,220,76,-0.515502898953855],[115,220,77,-0.5150719676166773],[115,220,78,-0.5142765641212463],[115,220,79,-0.5129700470715761],[115,221,64,-0.532755671069026],[115,221,65,-0.5314468089491129],[115,221,66,-0.530003672465682],[115,221,67,-0.5285049434751272],[115,221,68,-0.5272261556237936],[115,221,69,-0.5260342918336391],[115,221,70,-0.5249284580349922],[115,221,71,-0.5235806312412024],[115,221,72,-0.5217186473309994],[115,221,73,-0.5196252521127462],[115,221,74,-0.5176558569073677],[115,221,75,-0.5162321664392948],[115,221,76,-0.515502898953855],[115,221,77,-0.5150719676166773],[115,221,78,-0.5142765641212463],[115,221,79,-0.5129700470715761],[115,222,64,-0.532755671069026],[115,222,65,-0.5314468089491129],[115,222,66,-0.530003672465682],[115,222,67,-0.5285049434751272],[115,222,68,-0.5272261556237936],[115,222,69,-0.5260342918336391],[115,222,70,-0.5249284580349922],[115,222,71,-0.5235806312412024],[115,222,72,-0.5217186473309994],[115,222,73,-0.5196252521127462],[115,222,74,-0.5176558569073677],[115,222,75,-0.5162321664392948],[115,222,76,-0.515502898953855],[115,222,77,-0.5150719676166773],[115,222,78,-0.5142765641212463],[115,222,79,-0.5129700470715761],[115,223,64,-0.532755671069026],[115,223,65,-0.5314468089491129],[115,223,66,-0.530003672465682],[115,223,67,-0.5285049434751272],[115,223,68,-0.5272261556237936],[115,223,69,-0.5260342918336391],[115,223,70,-0.5249284580349922],[115,223,71,-0.5235806312412024],[115,223,72,-0.5217186473309994],[115,223,73,-0.5196252521127462],[115,223,74,-0.5176558569073677],[115,223,75,-0.5162321664392948],[115,223,76,-0.515502898953855],[115,223,77,-0.5150719676166773],[115,223,78,-0.5142765641212463],[115,223,79,-0.5129700470715761],[115,224,64,-0.532755671069026],[115,224,65,-0.5314468089491129],[115,224,66,-0.530003672465682],[115,224,67,-0.5285049434751272],[115,224,68,-0.5272261556237936],[115,224,69,-0.5260342918336391],[115,224,70,-0.5249284580349922],[115,224,71,-0.5235806312412024],[115,224,72,-0.5217186473309994],[115,224,73,-0.5196252521127462],[115,224,74,-0.5176558569073677],[115,224,75,-0.5162321664392948],[115,224,76,-0.515502898953855],[115,224,77,-0.5150719676166773],[115,224,78,-0.5142765641212463],[115,224,79,-0.5129700470715761],[115,225,64,-0.532755671069026],[115,225,65,-0.5314468089491129],[115,225,66,-0.530003672465682],[115,225,67,-0.5285049434751272],[115,225,68,-0.5272261556237936],[115,225,69,-0.5260342918336391],[115,225,70,-0.5249284580349922],[115,225,71,-0.5235806312412024],[115,225,72,-0.5217186473309994],[115,225,73,-0.5196252521127462],[115,225,74,-0.5176558569073677],[115,225,75,-0.5162321664392948],[115,225,76,-0.515502898953855],[115,225,77,-0.5150719676166773],[115,225,78,-0.5142765641212463],[115,225,79,-0.5129700470715761],[115,226,64,-0.532755671069026],[115,226,65,-0.5314468089491129],[115,226,66,-0.530003672465682],[115,226,67,-0.5285049434751272],[115,226,68,-0.5272261556237936],[115,226,69,-0.5260342918336391],[115,226,70,-0.5249284580349922],[115,226,71,-0.5235806312412024],[115,226,72,-0.5217186473309994],[115,226,73,-0.5196252521127462],[115,226,74,-0.5176558569073677],[115,226,75,-0.5162321664392948],[115,226,76,-0.515502898953855],[115,226,77,-0.5150719676166773],[115,226,78,-0.5142765641212463],[115,226,79,-0.5129700470715761],[115,227,64,-0.532755671069026],[115,227,65,-0.5314468089491129],[115,227,66,-0.530003672465682],[115,227,67,-0.5285049434751272],[115,227,68,-0.5272261556237936],[115,227,69,-0.5260342918336391],[115,227,70,-0.5249284580349922],[115,227,71,-0.5235806312412024],[115,227,72,-0.5217186473309994],[115,227,73,-0.5196252521127462],[115,227,74,-0.5176558569073677],[115,227,75,-0.5162321664392948],[115,227,76,-0.515502898953855],[115,227,77,-0.5150719676166773],[115,227,78,-0.5142765641212463],[115,227,79,-0.5129700470715761],[115,228,64,-0.532755671069026],[115,228,65,-0.5314468089491129],[115,228,66,-0.530003672465682],[115,228,67,-0.5285049434751272],[115,228,68,-0.5272261556237936],[115,228,69,-0.5260342918336391],[115,228,70,-0.5249284580349922],[115,228,71,-0.5235806312412024],[115,228,72,-0.5217186473309994],[115,228,73,-0.5196252521127462],[115,228,74,-0.5176558569073677],[115,228,75,-0.5162321664392948],[115,228,76,-0.515502898953855],[115,228,77,-0.5150719676166773],[115,228,78,-0.5142765641212463],[115,228,79,-0.5129700470715761],[115,229,64,-0.532755671069026],[115,229,65,-0.5314468089491129],[115,229,66,-0.530003672465682],[115,229,67,-0.5285049434751272],[115,229,68,-0.5272261556237936],[115,229,69,-0.5260342918336391],[115,229,70,-0.5249284580349922],[115,229,71,-0.5235806312412024],[115,229,72,-0.5217186473309994],[115,229,73,-0.5196252521127462],[115,229,74,-0.5176558569073677],[115,229,75,-0.5162321664392948],[115,229,76,-0.515502898953855],[115,229,77,-0.5150719676166773],[115,229,78,-0.5142765641212463],[115,229,79,-0.5129700470715761],[115,230,64,-0.532755671069026],[115,230,65,-0.5314468089491129],[115,230,66,-0.530003672465682],[115,230,67,-0.5285049434751272],[115,230,68,-0.5272261556237936],[115,230,69,-0.5260342918336391],[115,230,70,-0.5249284580349922],[115,230,71,-0.5235806312412024],[115,230,72,-0.5217186473309994],[115,230,73,-0.5196252521127462],[115,230,74,-0.5176558569073677],[115,230,75,-0.5162321664392948],[115,230,76,-0.515502898953855],[115,230,77,-0.5150719676166773],[115,230,78,-0.5142765641212463],[115,230,79,-0.5129700470715761],[115,231,64,-0.532755671069026],[115,231,65,-0.5314468089491129],[115,231,66,-0.530003672465682],[115,231,67,-0.5285049434751272],[115,231,68,-0.5272261556237936],[115,231,69,-0.5260342918336391],[115,231,70,-0.5249284580349922],[115,231,71,-0.5235806312412024],[115,231,72,-0.5217186473309994],[115,231,73,-0.5196252521127462],[115,231,74,-0.5176558569073677],[115,231,75,-0.5162321664392948],[115,231,76,-0.515502898953855],[115,231,77,-0.5150719676166773],[115,231,78,-0.5142765641212463],[115,231,79,-0.5129700470715761],[115,232,64,-0.532755671069026],[115,232,65,-0.5314468089491129],[115,232,66,-0.530003672465682],[115,232,67,-0.5285049434751272],[115,232,68,-0.5272261556237936],[115,232,69,-0.5260342918336391],[115,232,70,-0.5249284580349922],[115,232,71,-0.5235806312412024],[115,232,72,-0.5217186473309994],[115,232,73,-0.5196252521127462],[115,232,74,-0.5176558569073677],[115,232,75,-0.5162321664392948],[115,232,76,-0.515502898953855],[115,232,77,-0.5150719676166773],[115,232,78,-0.5142765641212463],[115,232,79,-0.5129700470715761],[115,233,64,-0.532755671069026],[115,233,65,-0.5314468089491129],[115,233,66,-0.530003672465682],[115,233,67,-0.5285049434751272],[115,233,68,-0.5272261556237936],[115,233,69,-0.5260342918336391],[115,233,70,-0.5249284580349922],[115,233,71,-0.5235806312412024],[115,233,72,-0.5217186473309994],[115,233,73,-0.5196252521127462],[115,233,74,-0.5176558569073677],[115,233,75,-0.5162321664392948],[115,233,76,-0.515502898953855],[115,233,77,-0.5150719676166773],[115,233,78,-0.5142765641212463],[115,233,79,-0.5129700470715761],[115,234,64,-0.532755671069026],[115,234,65,-0.5314468089491129],[115,234,66,-0.530003672465682],[115,234,67,-0.5285049434751272],[115,234,68,-0.5272261556237936],[115,234,69,-0.5260342918336391],[115,234,70,-0.5249284580349922],[115,234,71,-0.5235806312412024],[115,234,72,-0.5217186473309994],[115,234,73,-0.5196252521127462],[115,234,74,-0.5176558569073677],[115,234,75,-0.5162321664392948],[115,234,76,-0.515502898953855],[115,234,77,-0.5150719676166773],[115,234,78,-0.5142765641212463],[115,234,79,-0.5129700470715761],[115,235,64,-0.532755671069026],[115,235,65,-0.5314468089491129],[115,235,66,-0.530003672465682],[115,235,67,-0.5285049434751272],[115,235,68,-0.5272261556237936],[115,235,69,-0.5260342918336391],[115,235,70,-0.5249284580349922],[115,235,71,-0.5235806312412024],[115,235,72,-0.5217186473309994],[115,235,73,-0.5196252521127462],[115,235,74,-0.5176558569073677],[115,235,75,-0.5162321664392948],[115,235,76,-0.515502898953855],[115,235,77,-0.5150719676166773],[115,235,78,-0.5142765641212463],[115,235,79,-0.5129700470715761],[115,236,64,-0.532755671069026],[115,236,65,-0.5314468089491129],[115,236,66,-0.530003672465682],[115,236,67,-0.5285049434751272],[115,236,68,-0.5272261556237936],[115,236,69,-0.5260342918336391],[115,236,70,-0.5249284580349922],[115,236,71,-0.5235806312412024],[115,236,72,-0.5217186473309994],[115,236,73,-0.5196252521127462],[115,236,74,-0.5176558569073677],[115,236,75,-0.5162321664392948],[115,236,76,-0.515502898953855],[115,236,77,-0.5150719676166773],[115,236,78,-0.5142765641212463],[115,236,79,-0.5129700470715761],[115,237,64,-0.532755671069026],[115,237,65,-0.5314468089491129],[115,237,66,-0.530003672465682],[115,237,67,-0.5285049434751272],[115,237,68,-0.5272261556237936],[115,237,69,-0.5260342918336391],[115,237,70,-0.5249284580349922],[115,237,71,-0.5235806312412024],[115,237,72,-0.5217186473309994],[115,237,73,-0.5196252521127462],[115,237,74,-0.5176558569073677],[115,237,75,-0.5162321664392948],[115,237,76,-0.515502898953855],[115,237,77,-0.5150719676166773],[115,237,78,-0.5142765641212463],[115,237,79,-0.5129700470715761],[115,238,64,-0.532755671069026],[115,238,65,-0.5314468089491129],[115,238,66,-0.530003672465682],[115,238,67,-0.5285049434751272],[115,238,68,-0.5272261556237936],[115,238,69,-0.5260342918336391],[115,238,70,-0.5249284580349922],[115,238,71,-0.5235806312412024],[115,238,72,-0.5217186473309994],[115,238,73,-0.5196252521127462],[115,238,74,-0.5176558569073677],[115,238,75,-0.5162321664392948],[115,238,76,-0.515502898953855],[115,238,77,-0.5150719676166773],[115,238,78,-0.5142765641212463],[115,238,79,-0.5129700470715761],[115,239,64,-0.532755671069026],[115,239,65,-0.5314468089491129],[115,239,66,-0.530003672465682],[115,239,67,-0.5285049434751272],[115,239,68,-0.5272261556237936],[115,239,69,-0.5260342918336391],[115,239,70,-0.5249284580349922],[115,239,71,-0.5235806312412024],[115,239,72,-0.5217186473309994],[115,239,73,-0.5196252521127462],[115,239,74,-0.5176558569073677],[115,239,75,-0.5162321664392948],[115,239,76,-0.515502898953855],[115,239,77,-0.5150719676166773],[115,239,78,-0.5142765641212463],[115,239,79,-0.5129700470715761],[115,240,64,-0.532755671069026],[115,240,65,-0.5314468089491129],[115,240,66,-0.530003672465682],[115,240,67,-0.5285049434751272],[115,240,68,-0.5272261556237936],[115,240,69,-0.5260342918336391],[115,240,70,-0.5249284580349922],[115,240,71,-0.5235806312412024],[115,240,72,-0.5217186473309994],[115,240,73,-0.5196252521127462],[115,240,74,-0.5176558569073677],[115,240,75,-0.5162321664392948],[115,240,76,-0.515502898953855],[115,240,77,-0.5150719676166773],[115,240,78,-0.5142765641212463],[115,240,79,-0.5129700470715761],[115,241,64,-0.532755671069026],[115,241,65,-0.5314468089491129],[115,241,66,-0.530003672465682],[115,241,67,-0.5285049434751272],[115,241,68,-0.5272261556237936],[115,241,69,-0.5260342918336391],[115,241,70,-0.5249284580349922],[115,241,71,-0.5235806312412024],[115,241,72,-0.5217186473309994],[115,241,73,-0.5196252521127462],[115,241,74,-0.5176558569073677],[115,241,75,-0.5162321664392948],[115,241,76,-0.515502898953855],[115,241,77,-0.5150719676166773],[115,241,78,-0.5142765641212463],[115,241,79,-0.5129700470715761],[115,242,64,-0.532755671069026],[115,242,65,-0.5314468089491129],[115,242,66,-0.530003672465682],[115,242,67,-0.5285049434751272],[115,242,68,-0.5272261556237936],[115,242,69,-0.5260342918336391],[115,242,70,-0.5249284580349922],[115,242,71,-0.5235806312412024],[115,242,72,-0.5217186473309994],[115,242,73,-0.5196252521127462],[115,242,74,-0.5176558569073677],[115,242,75,-0.5162321664392948],[115,242,76,-0.515502898953855],[115,242,77,-0.5150719676166773],[115,242,78,-0.5142765641212463],[115,242,79,-0.5129700470715761],[115,243,64,-0.532755671069026],[115,243,65,-0.5314468089491129],[115,243,66,-0.530003672465682],[115,243,67,-0.5285049434751272],[115,243,68,-0.5272261556237936],[115,243,69,-0.5260342918336391],[115,243,70,-0.5249284580349922],[115,243,71,-0.5235806312412024],[115,243,72,-0.5217186473309994],[115,243,73,-0.5196252521127462],[115,243,74,-0.5176558569073677],[115,243,75,-0.5162321664392948],[115,243,76,-0.515502898953855],[115,243,77,-0.5150719676166773],[115,243,78,-0.5142765641212463],[115,243,79,-0.5129700470715761],[115,244,64,-0.532755671069026],[115,244,65,-0.5314468089491129],[115,244,66,-0.530003672465682],[115,244,67,-0.5285049434751272],[115,244,68,-0.5272261556237936],[115,244,69,-0.5260342918336391],[115,244,70,-0.5249284580349922],[115,244,71,-0.5235806312412024],[115,244,72,-0.5217186473309994],[115,244,73,-0.5196252521127462],[115,244,74,-0.5176558569073677],[115,244,75,-0.5162321664392948],[115,244,76,-0.515502898953855],[115,244,77,-0.5150719676166773],[115,244,78,-0.5142765641212463],[115,244,79,-0.5129700470715761],[115,245,64,-0.532755671069026],[115,245,65,-0.5314468089491129],[115,245,66,-0.530003672465682],[115,245,67,-0.5285049434751272],[115,245,68,-0.5272261556237936],[115,245,69,-0.5260342918336391],[115,245,70,-0.5249284580349922],[115,245,71,-0.5235806312412024],[115,245,72,-0.5217186473309994],[115,245,73,-0.5196252521127462],[115,245,74,-0.5176558569073677],[115,245,75,-0.5162321664392948],[115,245,76,-0.515502898953855],[115,245,77,-0.5150719676166773],[115,245,78,-0.5142765641212463],[115,245,79,-0.5129700470715761],[115,246,64,-0.532755671069026],[115,246,65,-0.5314468089491129],[115,246,66,-0.530003672465682],[115,246,67,-0.5285049434751272],[115,246,68,-0.5272261556237936],[115,246,69,-0.5260342918336391],[115,246,70,-0.5249284580349922],[115,246,71,-0.5235806312412024],[115,246,72,-0.5217186473309994],[115,246,73,-0.5196252521127462],[115,246,74,-0.5176558569073677],[115,246,75,-0.5162321664392948],[115,246,76,-0.515502898953855],[115,246,77,-0.5150719676166773],[115,246,78,-0.5142765641212463],[115,246,79,-0.5129700470715761],[115,247,64,-0.532755671069026],[115,247,65,-0.5314468089491129],[115,247,66,-0.530003672465682],[115,247,67,-0.5285049434751272],[115,247,68,-0.5272261556237936],[115,247,69,-0.5260342918336391],[115,247,70,-0.5249284580349922],[115,247,71,-0.5235806312412024],[115,247,72,-0.5217186473309994],[115,247,73,-0.5196252521127462],[115,247,74,-0.5176558569073677],[115,247,75,-0.5162321664392948],[115,247,76,-0.515502898953855],[115,247,77,-0.5150719676166773],[115,247,78,-0.5142765641212463],[115,247,79,-0.5129700470715761],[115,248,64,-0.532755671069026],[115,248,65,-0.5314468089491129],[115,248,66,-0.530003672465682],[115,248,67,-0.5285049434751272],[115,248,68,-0.5272261556237936],[115,248,69,-0.5260342918336391],[115,248,70,-0.5249284580349922],[115,248,71,-0.5235806312412024],[115,248,72,-0.5217186473309994],[115,248,73,-0.5196252521127462],[115,248,74,-0.5176558569073677],[115,248,75,-0.5162321664392948],[115,248,76,-0.515502898953855],[115,248,77,-0.5150719676166773],[115,248,78,-0.5142765641212463],[115,248,79,-0.5129700470715761],[115,249,64,-0.532755671069026],[115,249,65,-0.5314468089491129],[115,249,66,-0.530003672465682],[115,249,67,-0.5285049434751272],[115,249,68,-0.5272261556237936],[115,249,69,-0.5260342918336391],[115,249,70,-0.5249284580349922],[115,249,71,-0.5235806312412024],[115,249,72,-0.5217186473309994],[115,249,73,-0.5196252521127462],[115,249,74,-0.5176558569073677],[115,249,75,-0.5162321664392948],[115,249,76,-0.515502898953855],[115,249,77,-0.5150719676166773],[115,249,78,-0.5142765641212463],[115,249,79,-0.5129700470715761],[115,250,64,-0.532755671069026],[115,250,65,-0.5314468089491129],[115,250,66,-0.530003672465682],[115,250,67,-0.5285049434751272],[115,250,68,-0.5272261556237936],[115,250,69,-0.5260342918336391],[115,250,70,-0.5249284580349922],[115,250,71,-0.5235806312412024],[115,250,72,-0.5217186473309994],[115,250,73,-0.5196252521127462],[115,250,74,-0.5176558569073677],[115,250,75,-0.5162321664392948],[115,250,76,-0.515502898953855],[115,250,77,-0.5150719676166773],[115,250,78,-0.5142765641212463],[115,250,79,-0.5129700470715761],[115,251,64,-0.532755671069026],[115,251,65,-0.5314468089491129],[115,251,66,-0.530003672465682],[115,251,67,-0.5285049434751272],[115,251,68,-0.5272261556237936],[115,251,69,-0.5260342918336391],[115,251,70,-0.5249284580349922],[115,251,71,-0.5235806312412024],[115,251,72,-0.5217186473309994],[115,251,73,-0.5196252521127462],[115,251,74,-0.5176558569073677],[115,251,75,-0.5162321664392948],[115,251,76,-0.515502898953855],[115,251,77,-0.5150719676166773],[115,251,78,-0.5142765641212463],[115,251,79,-0.5129700470715761],[115,252,64,-0.532755671069026],[115,252,65,-0.5314468089491129],[115,252,66,-0.530003672465682],[115,252,67,-0.5285049434751272],[115,252,68,-0.5272261556237936],[115,252,69,-0.5260342918336391],[115,252,70,-0.5249284580349922],[115,252,71,-0.5235806312412024],[115,252,72,-0.5217186473309994],[115,252,73,-0.5196252521127462],[115,252,74,-0.5176558569073677],[115,252,75,-0.5162321664392948],[115,252,76,-0.515502898953855],[115,252,77,-0.5150719676166773],[115,252,78,-0.5142765641212463],[115,252,79,-0.5129700470715761],[115,253,64,-0.532755671069026],[115,253,65,-0.5314468089491129],[115,253,66,-0.530003672465682],[115,253,67,-0.5285049434751272],[115,253,68,-0.5272261556237936],[115,253,69,-0.5260342918336391],[115,253,70,-0.5249284580349922],[115,253,71,-0.5235806312412024],[115,253,72,-0.5217186473309994],[115,253,73,-0.5196252521127462],[115,253,74,-0.5176558569073677],[115,253,75,-0.5162321664392948],[115,253,76,-0.515502898953855],[115,253,77,-0.5150719676166773],[115,253,78,-0.5142765641212463],[115,253,79,-0.5129700470715761],[115,254,64,-0.532755671069026],[115,254,65,-0.5314468089491129],[115,254,66,-0.530003672465682],[115,254,67,-0.5285049434751272],[115,254,68,-0.5272261556237936],[115,254,69,-0.5260342918336391],[115,254,70,-0.5249284580349922],[115,254,71,-0.5235806312412024],[115,254,72,-0.5217186473309994],[115,254,73,-0.5196252521127462],[115,254,74,-0.5176558569073677],[115,254,75,-0.5162321664392948],[115,254,76,-0.515502898953855],[115,254,77,-0.5150719676166773],[115,254,78,-0.5142765641212463],[115,254,79,-0.5129700470715761],[115,255,64,-0.532755671069026],[115,255,65,-0.5314468089491129],[115,255,66,-0.530003672465682],[115,255,67,-0.5285049434751272],[115,255,68,-0.5272261556237936],[115,255,69,-0.5260342918336391],[115,255,70,-0.5249284580349922],[115,255,71,-0.5235806312412024],[115,255,72,-0.5217186473309994],[115,255,73,-0.5196252521127462],[115,255,74,-0.5176558569073677],[115,255,75,-0.5162321664392948],[115,255,76,-0.515502898953855],[115,255,77,-0.5150719676166773],[115,255,78,-0.5142765641212463],[115,255,79,-0.5129700470715761],[115,256,64,-0.532755671069026],[115,256,65,-0.5314468089491129],[115,256,66,-0.530003672465682],[115,256,67,-0.5285049434751272],[115,256,68,-0.5272261556237936],[115,256,69,-0.5260342918336391],[115,256,70,-0.5249284580349922],[115,256,71,-0.5235806312412024],[115,256,72,-0.5217186473309994],[115,256,73,-0.5196252521127462],[115,256,74,-0.5176558569073677],[115,256,75,-0.5162321664392948],[115,256,76,-0.515502898953855],[115,256,77,-0.5150719676166773],[115,256,78,-0.5142765641212463],[115,256,79,-0.5129700470715761],[115,257,64,-0.532755671069026],[115,257,65,-0.5314468089491129],[115,257,66,-0.530003672465682],[115,257,67,-0.5285049434751272],[115,257,68,-0.5272261556237936],[115,257,69,-0.5260342918336391],[115,257,70,-0.5249284580349922],[115,257,71,-0.5235806312412024],[115,257,72,-0.5217186473309994],[115,257,73,-0.5196252521127462],[115,257,74,-0.5176558569073677],[115,257,75,-0.5162321664392948],[115,257,76,-0.515502898953855],[115,257,77,-0.5150719676166773],[115,257,78,-0.5142765641212463],[115,257,79,-0.5129700470715761],[115,258,64,-0.532755671069026],[115,258,65,-0.5314468089491129],[115,258,66,-0.530003672465682],[115,258,67,-0.5285049434751272],[115,258,68,-0.5272261556237936],[115,258,69,-0.5260342918336391],[115,258,70,-0.5249284580349922],[115,258,71,-0.5235806312412024],[115,258,72,-0.5217186473309994],[115,258,73,-0.5196252521127462],[115,258,74,-0.5176558569073677],[115,258,75,-0.5162321664392948],[115,258,76,-0.515502898953855],[115,258,77,-0.5150719676166773],[115,258,78,-0.5142765641212463],[115,258,79,-0.5129700470715761],[115,259,64,-0.532755671069026],[115,259,65,-0.5314468089491129],[115,259,66,-0.530003672465682],[115,259,67,-0.5285049434751272],[115,259,68,-0.5272261556237936],[115,259,69,-0.5260342918336391],[115,259,70,-0.5249284580349922],[115,259,71,-0.5235806312412024],[115,259,72,-0.5217186473309994],[115,259,73,-0.5196252521127462],[115,259,74,-0.5176558569073677],[115,259,75,-0.5162321664392948],[115,259,76,-0.515502898953855],[115,259,77,-0.5150719676166773],[115,259,78,-0.5142765641212463],[115,259,79,-0.5129700470715761],[115,260,64,-0.532755671069026],[115,260,65,-0.5314468089491129],[115,260,66,-0.530003672465682],[115,260,67,-0.5285049434751272],[115,260,68,-0.5272261556237936],[115,260,69,-0.5260342918336391],[115,260,70,-0.5249284580349922],[115,260,71,-0.5235806312412024],[115,260,72,-0.5217186473309994],[115,260,73,-0.5196252521127462],[115,260,74,-0.5176558569073677],[115,260,75,-0.5162321664392948],[115,260,76,-0.515502898953855],[115,260,77,-0.5150719676166773],[115,260,78,-0.5142765641212463],[115,260,79,-0.5129700470715761],[115,261,64,-0.532755671069026],[115,261,65,-0.5314468089491129],[115,261,66,-0.530003672465682],[115,261,67,-0.5285049434751272],[115,261,68,-0.5272261556237936],[115,261,69,-0.5260342918336391],[115,261,70,-0.5249284580349922],[115,261,71,-0.5235806312412024],[115,261,72,-0.5217186473309994],[115,261,73,-0.5196252521127462],[115,261,74,-0.5176558569073677],[115,261,75,-0.5162321664392948],[115,261,76,-0.515502898953855],[115,261,77,-0.5150719676166773],[115,261,78,-0.5142765641212463],[115,261,79,-0.5129700470715761],[115,262,64,-0.532755671069026],[115,262,65,-0.5314468089491129],[115,262,66,-0.530003672465682],[115,262,67,-0.5285049434751272],[115,262,68,-0.5272261556237936],[115,262,69,-0.5260342918336391],[115,262,70,-0.5249284580349922],[115,262,71,-0.5235806312412024],[115,262,72,-0.5217186473309994],[115,262,73,-0.5196252521127462],[115,262,74,-0.5176558569073677],[115,262,75,-0.5162321664392948],[115,262,76,-0.515502898953855],[115,262,77,-0.5150719676166773],[115,262,78,-0.5142765641212463],[115,262,79,-0.5129700470715761],[115,263,64,-0.532755671069026],[115,263,65,-0.5314468089491129],[115,263,66,-0.530003672465682],[115,263,67,-0.5285049434751272],[115,263,68,-0.5272261556237936],[115,263,69,-0.5260342918336391],[115,263,70,-0.5249284580349922],[115,263,71,-0.5235806312412024],[115,263,72,-0.5217186473309994],[115,263,73,-0.5196252521127462],[115,263,74,-0.5176558569073677],[115,263,75,-0.5162321664392948],[115,263,76,-0.515502898953855],[115,263,77,-0.5150719676166773],[115,263,78,-0.5142765641212463],[115,263,79,-0.5129700470715761],[115,264,64,-0.532755671069026],[115,264,65,-0.5314468089491129],[115,264,66,-0.530003672465682],[115,264,67,-0.5285049434751272],[115,264,68,-0.5272261556237936],[115,264,69,-0.5260342918336391],[115,264,70,-0.5249284580349922],[115,264,71,-0.5235806312412024],[115,264,72,-0.5217186473309994],[115,264,73,-0.5196252521127462],[115,264,74,-0.5176558569073677],[115,264,75,-0.5162321664392948],[115,264,76,-0.515502898953855],[115,264,77,-0.5150719676166773],[115,264,78,-0.5142765641212463],[115,264,79,-0.5129700470715761],[115,265,64,-0.532755671069026],[115,265,65,-0.5314468089491129],[115,265,66,-0.530003672465682],[115,265,67,-0.5285049434751272],[115,265,68,-0.5272261556237936],[115,265,69,-0.5260342918336391],[115,265,70,-0.5249284580349922],[115,265,71,-0.5235806312412024],[115,265,72,-0.5217186473309994],[115,265,73,-0.5196252521127462],[115,265,74,-0.5176558569073677],[115,265,75,-0.5162321664392948],[115,265,76,-0.515502898953855],[115,265,77,-0.5150719676166773],[115,265,78,-0.5142765641212463],[115,265,79,-0.5129700470715761],[115,266,64,-0.532755671069026],[115,266,65,-0.5314468089491129],[115,266,66,-0.530003672465682],[115,266,67,-0.5285049434751272],[115,266,68,-0.5272261556237936],[115,266,69,-0.5260342918336391],[115,266,70,-0.5249284580349922],[115,266,71,-0.5235806312412024],[115,266,72,-0.5217186473309994],[115,266,73,-0.5196252521127462],[115,266,74,-0.5176558569073677],[115,266,75,-0.5162321664392948],[115,266,76,-0.515502898953855],[115,266,77,-0.5150719676166773],[115,266,78,-0.5142765641212463],[115,266,79,-0.5129700470715761],[115,267,64,-0.532755671069026],[115,267,65,-0.5314468089491129],[115,267,66,-0.530003672465682],[115,267,67,-0.5285049434751272],[115,267,68,-0.5272261556237936],[115,267,69,-0.5260342918336391],[115,267,70,-0.5249284580349922],[115,267,71,-0.5235806312412024],[115,267,72,-0.5217186473309994],[115,267,73,-0.5196252521127462],[115,267,74,-0.5176558569073677],[115,267,75,-0.5162321664392948],[115,267,76,-0.515502898953855],[115,267,77,-0.5150719676166773],[115,267,78,-0.5142765641212463],[115,267,79,-0.5129700470715761],[115,268,64,-0.532755671069026],[115,268,65,-0.5314468089491129],[115,268,66,-0.530003672465682],[115,268,67,-0.5285049434751272],[115,268,68,-0.5272261556237936],[115,268,69,-0.5260342918336391],[115,268,70,-0.5249284580349922],[115,268,71,-0.5235806312412024],[115,268,72,-0.5217186473309994],[115,268,73,-0.5196252521127462],[115,268,74,-0.5176558569073677],[115,268,75,-0.5162321664392948],[115,268,76,-0.515502898953855],[115,268,77,-0.5150719676166773],[115,268,78,-0.5142765641212463],[115,268,79,-0.5129700470715761],[115,269,64,-0.532755671069026],[115,269,65,-0.5314468089491129],[115,269,66,-0.530003672465682],[115,269,67,-0.5285049434751272],[115,269,68,-0.5272261556237936],[115,269,69,-0.5260342918336391],[115,269,70,-0.5249284580349922],[115,269,71,-0.5235806312412024],[115,269,72,-0.5217186473309994],[115,269,73,-0.5196252521127462],[115,269,74,-0.5176558569073677],[115,269,75,-0.5162321664392948],[115,269,76,-0.515502898953855],[115,269,77,-0.5150719676166773],[115,269,78,-0.5142765641212463],[115,269,79,-0.5129700470715761],[115,270,64,-0.532755671069026],[115,270,65,-0.5314468089491129],[115,270,66,-0.530003672465682],[115,270,67,-0.5285049434751272],[115,270,68,-0.5272261556237936],[115,270,69,-0.5260342918336391],[115,270,70,-0.5249284580349922],[115,270,71,-0.5235806312412024],[115,270,72,-0.5217186473309994],[115,270,73,-0.5196252521127462],[115,270,74,-0.5176558569073677],[115,270,75,-0.5162321664392948],[115,270,76,-0.515502898953855],[115,270,77,-0.5150719676166773],[115,270,78,-0.5142765641212463],[115,270,79,-0.5129700470715761],[115,271,64,-0.532755671069026],[115,271,65,-0.5314468089491129],[115,271,66,-0.530003672465682],[115,271,67,-0.5285049434751272],[115,271,68,-0.5272261556237936],[115,271,69,-0.5260342918336391],[115,271,70,-0.5249284580349922],[115,271,71,-0.5235806312412024],[115,271,72,-0.5217186473309994],[115,271,73,-0.5196252521127462],[115,271,74,-0.5176558569073677],[115,271,75,-0.5162321664392948],[115,271,76,-0.515502898953855],[115,271,77,-0.5150719676166773],[115,271,78,-0.5142765641212463],[115,271,79,-0.5129700470715761],[115,272,64,-0.532755671069026],[115,272,65,-0.5314468089491129],[115,272,66,-0.530003672465682],[115,272,67,-0.5285049434751272],[115,272,68,-0.5272261556237936],[115,272,69,-0.5260342918336391],[115,272,70,-0.5249284580349922],[115,272,71,-0.5235806312412024],[115,272,72,-0.5217186473309994],[115,272,73,-0.5196252521127462],[115,272,74,-0.5176558569073677],[115,272,75,-0.5162321664392948],[115,272,76,-0.515502898953855],[115,272,77,-0.5150719676166773],[115,272,78,-0.5142765641212463],[115,272,79,-0.5129700470715761],[115,273,64,-0.532755671069026],[115,273,65,-0.5314468089491129],[115,273,66,-0.530003672465682],[115,273,67,-0.5285049434751272],[115,273,68,-0.5272261556237936],[115,273,69,-0.5260342918336391],[115,273,70,-0.5249284580349922],[115,273,71,-0.5235806312412024],[115,273,72,-0.5217186473309994],[115,273,73,-0.5196252521127462],[115,273,74,-0.5176558569073677],[115,273,75,-0.5162321664392948],[115,273,76,-0.515502898953855],[115,273,77,-0.5150719676166773],[115,273,78,-0.5142765641212463],[115,273,79,-0.5129700470715761],[115,274,64,-0.532755671069026],[115,274,65,-0.5314468089491129],[115,274,66,-0.530003672465682],[115,274,67,-0.5285049434751272],[115,274,68,-0.5272261556237936],[115,274,69,-0.5260342918336391],[115,274,70,-0.5249284580349922],[115,274,71,-0.5235806312412024],[115,274,72,-0.5217186473309994],[115,274,73,-0.5196252521127462],[115,274,74,-0.5176558569073677],[115,274,75,-0.5162321664392948],[115,274,76,-0.515502898953855],[115,274,77,-0.5150719676166773],[115,274,78,-0.5142765641212463],[115,274,79,-0.5129700470715761],[115,275,64,-0.532755671069026],[115,275,65,-0.5314468089491129],[115,275,66,-0.530003672465682],[115,275,67,-0.5285049434751272],[115,275,68,-0.5272261556237936],[115,275,69,-0.5260342918336391],[115,275,70,-0.5249284580349922],[115,275,71,-0.5235806312412024],[115,275,72,-0.5217186473309994],[115,275,73,-0.5196252521127462],[115,275,74,-0.5176558569073677],[115,275,75,-0.5162321664392948],[115,275,76,-0.515502898953855],[115,275,77,-0.5150719676166773],[115,275,78,-0.5142765641212463],[115,275,79,-0.5129700470715761],[115,276,64,-0.532755671069026],[115,276,65,-0.5314468089491129],[115,276,66,-0.530003672465682],[115,276,67,-0.5285049434751272],[115,276,68,-0.5272261556237936],[115,276,69,-0.5260342918336391],[115,276,70,-0.5249284580349922],[115,276,71,-0.5235806312412024],[115,276,72,-0.5217186473309994],[115,276,73,-0.5196252521127462],[115,276,74,-0.5176558569073677],[115,276,75,-0.5162321664392948],[115,276,76,-0.515502898953855],[115,276,77,-0.5150719676166773],[115,276,78,-0.5142765641212463],[115,276,79,-0.5129700470715761],[115,277,64,-0.532755671069026],[115,277,65,-0.5314468089491129],[115,277,66,-0.530003672465682],[115,277,67,-0.5285049434751272],[115,277,68,-0.5272261556237936],[115,277,69,-0.5260342918336391],[115,277,70,-0.5249284580349922],[115,277,71,-0.5235806312412024],[115,277,72,-0.5217186473309994],[115,277,73,-0.5196252521127462],[115,277,74,-0.5176558569073677],[115,277,75,-0.5162321664392948],[115,277,76,-0.515502898953855],[115,277,77,-0.5150719676166773],[115,277,78,-0.5142765641212463],[115,277,79,-0.5129700470715761],[115,278,64,-0.532755671069026],[115,278,65,-0.5314468089491129],[115,278,66,-0.530003672465682],[115,278,67,-0.5285049434751272],[115,278,68,-0.5272261556237936],[115,278,69,-0.5260342918336391],[115,278,70,-0.5249284580349922],[115,278,71,-0.5235806312412024],[115,278,72,-0.5217186473309994],[115,278,73,-0.5196252521127462],[115,278,74,-0.5176558569073677],[115,278,75,-0.5162321664392948],[115,278,76,-0.515502898953855],[115,278,77,-0.5150719676166773],[115,278,78,-0.5142765641212463],[115,278,79,-0.5129700470715761],[115,279,64,-0.532755671069026],[115,279,65,-0.5314468089491129],[115,279,66,-0.530003672465682],[115,279,67,-0.5285049434751272],[115,279,68,-0.5272261556237936],[115,279,69,-0.5260342918336391],[115,279,70,-0.5249284580349922],[115,279,71,-0.5235806312412024],[115,279,72,-0.5217186473309994],[115,279,73,-0.5196252521127462],[115,279,74,-0.5176558569073677],[115,279,75,-0.5162321664392948],[115,279,76,-0.515502898953855],[115,279,77,-0.5150719676166773],[115,279,78,-0.5142765641212463],[115,279,79,-0.5129700470715761],[115,280,64,-0.532755671069026],[115,280,65,-0.5314468089491129],[115,280,66,-0.530003672465682],[115,280,67,-0.5285049434751272],[115,280,68,-0.5272261556237936],[115,280,69,-0.5260342918336391],[115,280,70,-0.5249284580349922],[115,280,71,-0.5235806312412024],[115,280,72,-0.5217186473309994],[115,280,73,-0.5196252521127462],[115,280,74,-0.5176558569073677],[115,280,75,-0.5162321664392948],[115,280,76,-0.515502898953855],[115,280,77,-0.5150719676166773],[115,280,78,-0.5142765641212463],[115,280,79,-0.5129700470715761],[115,281,64,-0.532755671069026],[115,281,65,-0.5314468089491129],[115,281,66,-0.530003672465682],[115,281,67,-0.5285049434751272],[115,281,68,-0.5272261556237936],[115,281,69,-0.5260342918336391],[115,281,70,-0.5249284580349922],[115,281,71,-0.5235806312412024],[115,281,72,-0.5217186473309994],[115,281,73,-0.5196252521127462],[115,281,74,-0.5176558569073677],[115,281,75,-0.5162321664392948],[115,281,76,-0.515502898953855],[115,281,77,-0.5150719676166773],[115,281,78,-0.5142765641212463],[115,281,79,-0.5129700470715761],[115,282,64,-0.532755671069026],[115,282,65,-0.5314468089491129],[115,282,66,-0.530003672465682],[115,282,67,-0.5285049434751272],[115,282,68,-0.5272261556237936],[115,282,69,-0.5260342918336391],[115,282,70,-0.5249284580349922],[115,282,71,-0.5235806312412024],[115,282,72,-0.5217186473309994],[115,282,73,-0.5196252521127462],[115,282,74,-0.5176558569073677],[115,282,75,-0.5162321664392948],[115,282,76,-0.515502898953855],[115,282,77,-0.5150719676166773],[115,282,78,-0.5142765641212463],[115,282,79,-0.5129700470715761],[115,283,64,-0.532755671069026],[115,283,65,-0.5314468089491129],[115,283,66,-0.530003672465682],[115,283,67,-0.5285049434751272],[115,283,68,-0.5272261556237936],[115,283,69,-0.5260342918336391],[115,283,70,-0.5249284580349922],[115,283,71,-0.5235806312412024],[115,283,72,-0.5217186473309994],[115,283,73,-0.5196252521127462],[115,283,74,-0.5176558569073677],[115,283,75,-0.5162321664392948],[115,283,76,-0.515502898953855],[115,283,77,-0.5150719676166773],[115,283,78,-0.5142765641212463],[115,283,79,-0.5129700470715761],[115,284,64,-0.532755671069026],[115,284,65,-0.5314468089491129],[115,284,66,-0.530003672465682],[115,284,67,-0.5285049434751272],[115,284,68,-0.5272261556237936],[115,284,69,-0.5260342918336391],[115,284,70,-0.5249284580349922],[115,284,71,-0.5235806312412024],[115,284,72,-0.5217186473309994],[115,284,73,-0.5196252521127462],[115,284,74,-0.5176558569073677],[115,284,75,-0.5162321664392948],[115,284,76,-0.515502898953855],[115,284,77,-0.5150719676166773],[115,284,78,-0.5142765641212463],[115,284,79,-0.5129700470715761],[115,285,64,-0.532755671069026],[115,285,65,-0.5314468089491129],[115,285,66,-0.530003672465682],[115,285,67,-0.5285049434751272],[115,285,68,-0.5272261556237936],[115,285,69,-0.5260342918336391],[115,285,70,-0.5249284580349922],[115,285,71,-0.5235806312412024],[115,285,72,-0.5217186473309994],[115,285,73,-0.5196252521127462],[115,285,74,-0.5176558569073677],[115,285,75,-0.5162321664392948],[115,285,76,-0.515502898953855],[115,285,77,-0.5150719676166773],[115,285,78,-0.5142765641212463],[115,285,79,-0.5129700470715761],[115,286,64,-0.532755671069026],[115,286,65,-0.5314468089491129],[115,286,66,-0.530003672465682],[115,286,67,-0.5285049434751272],[115,286,68,-0.5272261556237936],[115,286,69,-0.5260342918336391],[115,286,70,-0.5249284580349922],[115,286,71,-0.5235806312412024],[115,286,72,-0.5217186473309994],[115,286,73,-0.5196252521127462],[115,286,74,-0.5176558569073677],[115,286,75,-0.5162321664392948],[115,286,76,-0.515502898953855],[115,286,77,-0.5150719676166773],[115,286,78,-0.5142765641212463],[115,286,79,-0.5129700470715761],[115,287,64,-0.532755671069026],[115,287,65,-0.5314468089491129],[115,287,66,-0.530003672465682],[115,287,67,-0.5285049434751272],[115,287,68,-0.5272261556237936],[115,287,69,-0.5260342918336391],[115,287,70,-0.5249284580349922],[115,287,71,-0.5235806312412024],[115,287,72,-0.5217186473309994],[115,287,73,-0.5196252521127462],[115,287,74,-0.5176558569073677],[115,287,75,-0.5162321664392948],[115,287,76,-0.515502898953855],[115,287,77,-0.5150719676166773],[115,287,78,-0.5142765641212463],[115,287,79,-0.5129700470715761],[115,288,64,-0.532755671069026],[115,288,65,-0.5314468089491129],[115,288,66,-0.530003672465682],[115,288,67,-0.5285049434751272],[115,288,68,-0.5272261556237936],[115,288,69,-0.5260342918336391],[115,288,70,-0.5249284580349922],[115,288,71,-0.5235806312412024],[115,288,72,-0.5217186473309994],[115,288,73,-0.5196252521127462],[115,288,74,-0.5176558569073677],[115,288,75,-0.5162321664392948],[115,288,76,-0.515502898953855],[115,288,77,-0.5150719676166773],[115,288,78,-0.5142765641212463],[115,288,79,-0.5129700470715761],[115,289,64,-0.532755671069026],[115,289,65,-0.5314468089491129],[115,289,66,-0.530003672465682],[115,289,67,-0.5285049434751272],[115,289,68,-0.5272261556237936],[115,289,69,-0.5260342918336391],[115,289,70,-0.5249284580349922],[115,289,71,-0.5235806312412024],[115,289,72,-0.5217186473309994],[115,289,73,-0.5196252521127462],[115,289,74,-0.5176558569073677],[115,289,75,-0.5162321664392948],[115,289,76,-0.515502898953855],[115,289,77,-0.5150719676166773],[115,289,78,-0.5142765641212463],[115,289,79,-0.5129700470715761],[115,290,64,-0.532755671069026],[115,290,65,-0.5314468089491129],[115,290,66,-0.530003672465682],[115,290,67,-0.5285049434751272],[115,290,68,-0.5272261556237936],[115,290,69,-0.5260342918336391],[115,290,70,-0.5249284580349922],[115,290,71,-0.5235806312412024],[115,290,72,-0.5217186473309994],[115,290,73,-0.5196252521127462],[115,290,74,-0.5176558569073677],[115,290,75,-0.5162321664392948],[115,290,76,-0.515502898953855],[115,290,77,-0.5150719676166773],[115,290,78,-0.5142765641212463],[115,290,79,-0.5129700470715761],[115,291,64,-0.532755671069026],[115,291,65,-0.5314468089491129],[115,291,66,-0.530003672465682],[115,291,67,-0.5285049434751272],[115,291,68,-0.5272261556237936],[115,291,69,-0.5260342918336391],[115,291,70,-0.5249284580349922],[115,291,71,-0.5235806312412024],[115,291,72,-0.5217186473309994],[115,291,73,-0.5196252521127462],[115,291,74,-0.5176558569073677],[115,291,75,-0.5162321664392948],[115,291,76,-0.515502898953855],[115,291,77,-0.5150719676166773],[115,291,78,-0.5142765641212463],[115,291,79,-0.5129700470715761],[115,292,64,-0.532755671069026],[115,292,65,-0.5314468089491129],[115,292,66,-0.530003672465682],[115,292,67,-0.5285049434751272],[115,292,68,-0.5272261556237936],[115,292,69,-0.5260342918336391],[115,292,70,-0.5249284580349922],[115,292,71,-0.5235806312412024],[115,292,72,-0.5217186473309994],[115,292,73,-0.5196252521127462],[115,292,74,-0.5176558569073677],[115,292,75,-0.5162321664392948],[115,292,76,-0.515502898953855],[115,292,77,-0.5150719676166773],[115,292,78,-0.5142765641212463],[115,292,79,-0.5129700470715761],[115,293,64,-0.532755671069026],[115,293,65,-0.5314468089491129],[115,293,66,-0.530003672465682],[115,293,67,-0.5285049434751272],[115,293,68,-0.5272261556237936],[115,293,69,-0.5260342918336391],[115,293,70,-0.5249284580349922],[115,293,71,-0.5235806312412024],[115,293,72,-0.5217186473309994],[115,293,73,-0.5196252521127462],[115,293,74,-0.5176558569073677],[115,293,75,-0.5162321664392948],[115,293,76,-0.515502898953855],[115,293,77,-0.5150719676166773],[115,293,78,-0.5142765641212463],[115,293,79,-0.5129700470715761],[115,294,64,-0.532755671069026],[115,294,65,-0.5314468089491129],[115,294,66,-0.530003672465682],[115,294,67,-0.5285049434751272],[115,294,68,-0.5272261556237936],[115,294,69,-0.5260342918336391],[115,294,70,-0.5249284580349922],[115,294,71,-0.5235806312412024],[115,294,72,-0.5217186473309994],[115,294,73,-0.5196252521127462],[115,294,74,-0.5176558569073677],[115,294,75,-0.5162321664392948],[115,294,76,-0.515502898953855],[115,294,77,-0.5150719676166773],[115,294,78,-0.5142765641212463],[115,294,79,-0.5129700470715761],[115,295,64,-0.532755671069026],[115,295,65,-0.5314468089491129],[115,295,66,-0.530003672465682],[115,295,67,-0.5285049434751272],[115,295,68,-0.5272261556237936],[115,295,69,-0.5260342918336391],[115,295,70,-0.5249284580349922],[115,295,71,-0.5235806312412024],[115,295,72,-0.5217186473309994],[115,295,73,-0.5196252521127462],[115,295,74,-0.5176558569073677],[115,295,75,-0.5162321664392948],[115,295,76,-0.515502898953855],[115,295,77,-0.5150719676166773],[115,295,78,-0.5142765641212463],[115,295,79,-0.5129700470715761],[115,296,64,-0.532755671069026],[115,296,65,-0.5314468089491129],[115,296,66,-0.530003672465682],[115,296,67,-0.5285049434751272],[115,296,68,-0.5272261556237936],[115,296,69,-0.5260342918336391],[115,296,70,-0.5249284580349922],[115,296,71,-0.5235806312412024],[115,296,72,-0.5217186473309994],[115,296,73,-0.5196252521127462],[115,296,74,-0.5176558569073677],[115,296,75,-0.5162321664392948],[115,296,76,-0.515502898953855],[115,296,77,-0.5150719676166773],[115,296,78,-0.5142765641212463],[115,296,79,-0.5129700470715761],[115,297,64,-0.532755671069026],[115,297,65,-0.5314468089491129],[115,297,66,-0.530003672465682],[115,297,67,-0.5285049434751272],[115,297,68,-0.5272261556237936],[115,297,69,-0.5260342918336391],[115,297,70,-0.5249284580349922],[115,297,71,-0.5235806312412024],[115,297,72,-0.5217186473309994],[115,297,73,-0.5196252521127462],[115,297,74,-0.5176558569073677],[115,297,75,-0.5162321664392948],[115,297,76,-0.515502898953855],[115,297,77,-0.5150719676166773],[115,297,78,-0.5142765641212463],[115,297,79,-0.5129700470715761],[115,298,64,-0.532755671069026],[115,298,65,-0.5314468089491129],[115,298,66,-0.530003672465682],[115,298,67,-0.5285049434751272],[115,298,68,-0.5272261556237936],[115,298,69,-0.5260342918336391],[115,298,70,-0.5249284580349922],[115,298,71,-0.5235806312412024],[115,298,72,-0.5217186473309994],[115,298,73,-0.5196252521127462],[115,298,74,-0.5176558569073677],[115,298,75,-0.5162321664392948],[115,298,76,-0.515502898953855],[115,298,77,-0.5150719676166773],[115,298,78,-0.5142765641212463],[115,298,79,-0.5129700470715761],[115,299,64,-0.532755671069026],[115,299,65,-0.5314468089491129],[115,299,66,-0.530003672465682],[115,299,67,-0.5285049434751272],[115,299,68,-0.5272261556237936],[115,299,69,-0.5260342918336391],[115,299,70,-0.5249284580349922],[115,299,71,-0.5235806312412024],[115,299,72,-0.5217186473309994],[115,299,73,-0.5196252521127462],[115,299,74,-0.5176558569073677],[115,299,75,-0.5162321664392948],[115,299,76,-0.515502898953855],[115,299,77,-0.5150719676166773],[115,299,78,-0.5142765641212463],[115,299,79,-0.5129700470715761],[115,300,64,-0.532755671069026],[115,300,65,-0.5314468089491129],[115,300,66,-0.530003672465682],[115,300,67,-0.5285049434751272],[115,300,68,-0.5272261556237936],[115,300,69,-0.5260342918336391],[115,300,70,-0.5249284580349922],[115,300,71,-0.5235806312412024],[115,300,72,-0.5217186473309994],[115,300,73,-0.5196252521127462],[115,300,74,-0.5176558569073677],[115,300,75,-0.5162321664392948],[115,300,76,-0.515502898953855],[115,300,77,-0.5150719676166773],[115,300,78,-0.5142765641212463],[115,300,79,-0.5129700470715761],[115,301,64,-0.532755671069026],[115,301,65,-0.5314468089491129],[115,301,66,-0.530003672465682],[115,301,67,-0.5285049434751272],[115,301,68,-0.5272261556237936],[115,301,69,-0.5260342918336391],[115,301,70,-0.5249284580349922],[115,301,71,-0.5235806312412024],[115,301,72,-0.5217186473309994],[115,301,73,-0.5196252521127462],[115,301,74,-0.5176558569073677],[115,301,75,-0.5162321664392948],[115,301,76,-0.515502898953855],[115,301,77,-0.5150719676166773],[115,301,78,-0.5142765641212463],[115,301,79,-0.5129700470715761],[115,302,64,-0.532755671069026],[115,302,65,-0.5314468089491129],[115,302,66,-0.530003672465682],[115,302,67,-0.5285049434751272],[115,302,68,-0.5272261556237936],[115,302,69,-0.5260342918336391],[115,302,70,-0.5249284580349922],[115,302,71,-0.5235806312412024],[115,302,72,-0.5217186473309994],[115,302,73,-0.5196252521127462],[115,302,74,-0.5176558569073677],[115,302,75,-0.5162321664392948],[115,302,76,-0.515502898953855],[115,302,77,-0.5150719676166773],[115,302,78,-0.5142765641212463],[115,302,79,-0.5129700470715761],[115,303,64,-0.532755671069026],[115,303,65,-0.5314468089491129],[115,303,66,-0.530003672465682],[115,303,67,-0.5285049434751272],[115,303,68,-0.5272261556237936],[115,303,69,-0.5260342918336391],[115,303,70,-0.5249284580349922],[115,303,71,-0.5235806312412024],[115,303,72,-0.5217186473309994],[115,303,73,-0.5196252521127462],[115,303,74,-0.5176558569073677],[115,303,75,-0.5162321664392948],[115,303,76,-0.515502898953855],[115,303,77,-0.5150719676166773],[115,303,78,-0.5142765641212463],[115,303,79,-0.5129700470715761],[115,304,64,-0.532755671069026],[115,304,65,-0.5314468089491129],[115,304,66,-0.530003672465682],[115,304,67,-0.5285049434751272],[115,304,68,-0.5272261556237936],[115,304,69,-0.5260342918336391],[115,304,70,-0.5249284580349922],[115,304,71,-0.5235806312412024],[115,304,72,-0.5217186473309994],[115,304,73,-0.5196252521127462],[115,304,74,-0.5176558569073677],[115,304,75,-0.5162321664392948],[115,304,76,-0.515502898953855],[115,304,77,-0.5150719676166773],[115,304,78,-0.5142765641212463],[115,304,79,-0.5129700470715761],[115,305,64,-0.532755671069026],[115,305,65,-0.5314468089491129],[115,305,66,-0.530003672465682],[115,305,67,-0.5285049434751272],[115,305,68,-0.5272261556237936],[115,305,69,-0.5260342918336391],[115,305,70,-0.5249284580349922],[115,305,71,-0.5235806312412024],[115,305,72,-0.5217186473309994],[115,305,73,-0.5196252521127462],[115,305,74,-0.5176558569073677],[115,305,75,-0.5162321664392948],[115,305,76,-0.515502898953855],[115,305,77,-0.5150719676166773],[115,305,78,-0.5142765641212463],[115,305,79,-0.5129700470715761],[115,306,64,-0.532755671069026],[115,306,65,-0.5314468089491129],[115,306,66,-0.530003672465682],[115,306,67,-0.5285049434751272],[115,306,68,-0.5272261556237936],[115,306,69,-0.5260342918336391],[115,306,70,-0.5249284580349922],[115,306,71,-0.5235806312412024],[115,306,72,-0.5217186473309994],[115,306,73,-0.5196252521127462],[115,306,74,-0.5176558569073677],[115,306,75,-0.5162321664392948],[115,306,76,-0.515502898953855],[115,306,77,-0.5150719676166773],[115,306,78,-0.5142765641212463],[115,306,79,-0.5129700470715761],[115,307,64,-0.532755671069026],[115,307,65,-0.5314468089491129],[115,307,66,-0.530003672465682],[115,307,67,-0.5285049434751272],[115,307,68,-0.5272261556237936],[115,307,69,-0.5260342918336391],[115,307,70,-0.5249284580349922],[115,307,71,-0.5235806312412024],[115,307,72,-0.5217186473309994],[115,307,73,-0.5196252521127462],[115,307,74,-0.5176558569073677],[115,307,75,-0.5162321664392948],[115,307,76,-0.515502898953855],[115,307,77,-0.5150719676166773],[115,307,78,-0.5142765641212463],[115,307,79,-0.5129700470715761],[115,308,64,-0.532755671069026],[115,308,65,-0.5314468089491129],[115,308,66,-0.530003672465682],[115,308,67,-0.5285049434751272],[115,308,68,-0.5272261556237936],[115,308,69,-0.5260342918336391],[115,308,70,-0.5249284580349922],[115,308,71,-0.5235806312412024],[115,308,72,-0.5217186473309994],[115,308,73,-0.5196252521127462],[115,308,74,-0.5176558569073677],[115,308,75,-0.5162321664392948],[115,308,76,-0.515502898953855],[115,308,77,-0.5150719676166773],[115,308,78,-0.5142765641212463],[115,308,79,-0.5129700470715761],[115,309,64,-0.532755671069026],[115,309,65,-0.5314468089491129],[115,309,66,-0.530003672465682],[115,309,67,-0.5285049434751272],[115,309,68,-0.5272261556237936],[115,309,69,-0.5260342918336391],[115,309,70,-0.5249284580349922],[115,309,71,-0.5235806312412024],[115,309,72,-0.5217186473309994],[115,309,73,-0.5196252521127462],[115,309,74,-0.5176558569073677],[115,309,75,-0.5162321664392948],[115,309,76,-0.515502898953855],[115,309,77,-0.5150719676166773],[115,309,78,-0.5142765641212463],[115,309,79,-0.5129700470715761],[115,310,64,-0.532755671069026],[115,310,65,-0.5314468089491129],[115,310,66,-0.530003672465682],[115,310,67,-0.5285049434751272],[115,310,68,-0.5272261556237936],[115,310,69,-0.5260342918336391],[115,310,70,-0.5249284580349922],[115,310,71,-0.5235806312412024],[115,310,72,-0.5217186473309994],[115,310,73,-0.5196252521127462],[115,310,74,-0.5176558569073677],[115,310,75,-0.5162321664392948],[115,310,76,-0.515502898953855],[115,310,77,-0.5150719676166773],[115,310,78,-0.5142765641212463],[115,310,79,-0.5129700470715761],[115,311,64,-0.532755671069026],[115,311,65,-0.5314468089491129],[115,311,66,-0.530003672465682],[115,311,67,-0.5285049434751272],[115,311,68,-0.5272261556237936],[115,311,69,-0.5260342918336391],[115,311,70,-0.5249284580349922],[115,311,71,-0.5235806312412024],[115,311,72,-0.5217186473309994],[115,311,73,-0.5196252521127462],[115,311,74,-0.5176558569073677],[115,311,75,-0.5162321664392948],[115,311,76,-0.515502898953855],[115,311,77,-0.5150719676166773],[115,311,78,-0.5142765641212463],[115,311,79,-0.5129700470715761],[115,312,64,-0.532755671069026],[115,312,65,-0.5314468089491129],[115,312,66,-0.530003672465682],[115,312,67,-0.5285049434751272],[115,312,68,-0.5272261556237936],[115,312,69,-0.5260342918336391],[115,312,70,-0.5249284580349922],[115,312,71,-0.5235806312412024],[115,312,72,-0.5217186473309994],[115,312,73,-0.5196252521127462],[115,312,74,-0.5176558569073677],[115,312,75,-0.5162321664392948],[115,312,76,-0.515502898953855],[115,312,77,-0.5150719676166773],[115,312,78,-0.5142765641212463],[115,312,79,-0.5129700470715761],[115,313,64,-0.532755671069026],[115,313,65,-0.5314468089491129],[115,313,66,-0.530003672465682],[115,313,67,-0.5285049434751272],[115,313,68,-0.5272261556237936],[115,313,69,-0.5260342918336391],[115,313,70,-0.5249284580349922],[115,313,71,-0.5235806312412024],[115,313,72,-0.5217186473309994],[115,313,73,-0.5196252521127462],[115,313,74,-0.5176558569073677],[115,313,75,-0.5162321664392948],[115,313,76,-0.515502898953855],[115,313,77,-0.5150719676166773],[115,313,78,-0.5142765641212463],[115,313,79,-0.5129700470715761],[115,314,64,-0.532755671069026],[115,314,65,-0.5314468089491129],[115,314,66,-0.530003672465682],[115,314,67,-0.5285049434751272],[115,314,68,-0.5272261556237936],[115,314,69,-0.5260342918336391],[115,314,70,-0.5249284580349922],[115,314,71,-0.5235806312412024],[115,314,72,-0.5217186473309994],[115,314,73,-0.5196252521127462],[115,314,74,-0.5176558569073677],[115,314,75,-0.5162321664392948],[115,314,76,-0.515502898953855],[115,314,77,-0.5150719676166773],[115,314,78,-0.5142765641212463],[115,314,79,-0.5129700470715761],[115,315,64,-0.532755671069026],[115,315,65,-0.5314468089491129],[115,315,66,-0.530003672465682],[115,315,67,-0.5285049434751272],[115,315,68,-0.5272261556237936],[115,315,69,-0.5260342918336391],[115,315,70,-0.5249284580349922],[115,315,71,-0.5235806312412024],[115,315,72,-0.5217186473309994],[115,315,73,-0.5196252521127462],[115,315,74,-0.5176558569073677],[115,315,75,-0.5162321664392948],[115,315,76,-0.515502898953855],[115,315,77,-0.5150719676166773],[115,315,78,-0.5142765641212463],[115,315,79,-0.5129700470715761],[115,316,64,-0.532755671069026],[115,316,65,-0.5314468089491129],[115,316,66,-0.530003672465682],[115,316,67,-0.5285049434751272],[115,316,68,-0.5272261556237936],[115,316,69,-0.5260342918336391],[115,316,70,-0.5249284580349922],[115,316,71,-0.5235806312412024],[115,316,72,-0.5217186473309994],[115,316,73,-0.5196252521127462],[115,316,74,-0.5176558569073677],[115,316,75,-0.5162321664392948],[115,316,76,-0.515502898953855],[115,316,77,-0.5150719676166773],[115,316,78,-0.5142765641212463],[115,316,79,-0.5129700470715761],[115,317,64,-0.532755671069026],[115,317,65,-0.5314468089491129],[115,317,66,-0.530003672465682],[115,317,67,-0.5285049434751272],[115,317,68,-0.5272261556237936],[115,317,69,-0.5260342918336391],[115,317,70,-0.5249284580349922],[115,317,71,-0.5235806312412024],[115,317,72,-0.5217186473309994],[115,317,73,-0.5196252521127462],[115,317,74,-0.5176558569073677],[115,317,75,-0.5162321664392948],[115,317,76,-0.515502898953855],[115,317,77,-0.5150719676166773],[115,317,78,-0.5142765641212463],[115,317,79,-0.5129700470715761],[115,318,64,-0.532755671069026],[115,318,65,-0.5314468089491129],[115,318,66,-0.530003672465682],[115,318,67,-0.5285049434751272],[115,318,68,-0.5272261556237936],[115,318,69,-0.5260342918336391],[115,318,70,-0.5249284580349922],[115,318,71,-0.5235806312412024],[115,318,72,-0.5217186473309994],[115,318,73,-0.5196252521127462],[115,318,74,-0.5176558569073677],[115,318,75,-0.5162321664392948],[115,318,76,-0.515502898953855],[115,318,77,-0.5150719676166773],[115,318,78,-0.5142765641212463],[115,318,79,-0.5129700470715761],[115,319,64,-0.532755671069026],[115,319,65,-0.5314468089491129],[115,319,66,-0.530003672465682],[115,319,67,-0.5285049434751272],[115,319,68,-0.5272261556237936],[115,319,69,-0.5260342918336391],[115,319,70,-0.5249284580349922],[115,319,71,-0.5235806312412024],[115,319,72,-0.5217186473309994],[115,319,73,-0.5196252521127462],[115,319,74,-0.5176558569073677],[115,319,75,-0.5162321664392948],[115,319,76,-0.515502898953855],[115,319,77,-0.5150719676166773],[115,319,78,-0.5142765641212463],[115,319,79,-0.5129700470715761],[116,-64,64,-0.5358160398900509],[116,-64,65,-0.5347721707075834],[116,-64,66,-0.5331818107515574],[116,-64,67,-0.5313086658716202],[116,-64,68,-0.5296951904892921],[116,-64,69,-0.5284427274018526],[116,-64,70,-0.5275341626256704],[116,-64,71,-0.5264874286949635],[116,-64,72,-0.5250251665711403],[116,-64,73,-0.5234626978635788],[116,-64,74,-0.5220988970249891],[116,-64,75,-0.5210578367114067],[116,-64,76,-0.5203675851225853],[116,-64,77,-0.5198098700493574],[116,-64,78,-0.5188276823610067],[116,-64,79,-0.5173675315454602],[116,-63,64,-0.5358160398900509],[116,-63,65,-0.5347721707075834],[116,-63,66,-0.5331818107515574],[116,-63,67,-0.5313086658716202],[116,-63,68,-0.5296951904892921],[116,-63,69,-0.5284427274018526],[116,-63,70,-0.5275341626256704],[116,-63,71,-0.5264874286949635],[116,-63,72,-0.5250251665711403],[116,-63,73,-0.5234626978635788],[116,-63,74,-0.5220988970249891],[116,-63,75,-0.5210578367114067],[116,-63,76,-0.5203675851225853],[116,-63,77,-0.5198098700493574],[116,-63,78,-0.5188276823610067],[116,-63,79,-0.5173675315454602],[116,-62,64,-0.5358160398900509],[116,-62,65,-0.5347721707075834],[116,-62,66,-0.5331818107515574],[116,-62,67,-0.5313086658716202],[116,-62,68,-0.5296951904892921],[116,-62,69,-0.5284427274018526],[116,-62,70,-0.5275341626256704],[116,-62,71,-0.5264874286949635],[116,-62,72,-0.5250251665711403],[116,-62,73,-0.5234626978635788],[116,-62,74,-0.5220988970249891],[116,-62,75,-0.5210578367114067],[116,-62,76,-0.5203675851225853],[116,-62,77,-0.5198098700493574],[116,-62,78,-0.5188276823610067],[116,-62,79,-0.5173675315454602],[116,-61,64,-0.5358160398900509],[116,-61,65,-0.5347721707075834],[116,-61,66,-0.5331818107515574],[116,-61,67,-0.5313086658716202],[116,-61,68,-0.5296951904892921],[116,-61,69,-0.5284427274018526],[116,-61,70,-0.5275341626256704],[116,-61,71,-0.5264874286949635],[116,-61,72,-0.5250251665711403],[116,-61,73,-0.5234626978635788],[116,-61,74,-0.5220988970249891],[116,-61,75,-0.5210578367114067],[116,-61,76,-0.5203675851225853],[116,-61,77,-0.5198098700493574],[116,-61,78,-0.5188276823610067],[116,-61,79,-0.5173675315454602],[116,-60,64,-0.5358160398900509],[116,-60,65,-0.5347721707075834],[116,-60,66,-0.5331818107515574],[116,-60,67,-0.5313086658716202],[116,-60,68,-0.5296951904892921],[116,-60,69,-0.5284427274018526],[116,-60,70,-0.5275341626256704],[116,-60,71,-0.5264874286949635],[116,-60,72,-0.5250251665711403],[116,-60,73,-0.5234626978635788],[116,-60,74,-0.5220988970249891],[116,-60,75,-0.5210578367114067],[116,-60,76,-0.5203675851225853],[116,-60,77,-0.5198098700493574],[116,-60,78,-0.5188276823610067],[116,-60,79,-0.5173675315454602],[116,-59,64,-0.5358160398900509],[116,-59,65,-0.5347721707075834],[116,-59,66,-0.5331818107515574],[116,-59,67,-0.5313086658716202],[116,-59,68,-0.5296951904892921],[116,-59,69,-0.5284427274018526],[116,-59,70,-0.5275341626256704],[116,-59,71,-0.5264874286949635],[116,-59,72,-0.5250251665711403],[116,-59,73,-0.5234626978635788],[116,-59,74,-0.5220988970249891],[116,-59,75,-0.5210578367114067],[116,-59,76,-0.5203675851225853],[116,-59,77,-0.5198098700493574],[116,-59,78,-0.5188276823610067],[116,-59,79,-0.5173675315454602],[116,-58,64,-0.5358160398900509],[116,-58,65,-0.5347721707075834],[116,-58,66,-0.5331818107515574],[116,-58,67,-0.5313086658716202],[116,-58,68,-0.5296951904892921],[116,-58,69,-0.5284427274018526],[116,-58,70,-0.5275341626256704],[116,-58,71,-0.5264874286949635],[116,-58,72,-0.5250251665711403],[116,-58,73,-0.5234626978635788],[116,-58,74,-0.5220988970249891],[116,-58,75,-0.5210578367114067],[116,-58,76,-0.5203675851225853],[116,-58,77,-0.5198098700493574],[116,-58,78,-0.5188276823610067],[116,-58,79,-0.5173675315454602],[116,-57,64,-0.5358160398900509],[116,-57,65,-0.5347721707075834],[116,-57,66,-0.5331818107515574],[116,-57,67,-0.5313086658716202],[116,-57,68,-0.5296951904892921],[116,-57,69,-0.5284427274018526],[116,-57,70,-0.5275341626256704],[116,-57,71,-0.5264874286949635],[116,-57,72,-0.5250251665711403],[116,-57,73,-0.5234626978635788],[116,-57,74,-0.5220988970249891],[116,-57,75,-0.5210578367114067],[116,-57,76,-0.5203675851225853],[116,-57,77,-0.5198098700493574],[116,-57,78,-0.5188276823610067],[116,-57,79,-0.5173675315454602],[116,-56,64,-0.5358160398900509],[116,-56,65,-0.5347721707075834],[116,-56,66,-0.5331818107515574],[116,-56,67,-0.5313086658716202],[116,-56,68,-0.5296951904892921],[116,-56,69,-0.5284427274018526],[116,-56,70,-0.5275341626256704],[116,-56,71,-0.5264874286949635],[116,-56,72,-0.5250251665711403],[116,-56,73,-0.5234626978635788],[116,-56,74,-0.5220988970249891],[116,-56,75,-0.5210578367114067],[116,-56,76,-0.5203675851225853],[116,-56,77,-0.5198098700493574],[116,-56,78,-0.5188276823610067],[116,-56,79,-0.5173675315454602],[116,-55,64,-0.5358160398900509],[116,-55,65,-0.5347721707075834],[116,-55,66,-0.5331818107515574],[116,-55,67,-0.5313086658716202],[116,-55,68,-0.5296951904892921],[116,-55,69,-0.5284427274018526],[116,-55,70,-0.5275341626256704],[116,-55,71,-0.5264874286949635],[116,-55,72,-0.5250251665711403],[116,-55,73,-0.5234626978635788],[116,-55,74,-0.5220988970249891],[116,-55,75,-0.5210578367114067],[116,-55,76,-0.5203675851225853],[116,-55,77,-0.5198098700493574],[116,-55,78,-0.5188276823610067],[116,-55,79,-0.5173675315454602],[116,-54,64,-0.5358160398900509],[116,-54,65,-0.5347721707075834],[116,-54,66,-0.5331818107515574],[116,-54,67,-0.5313086658716202],[116,-54,68,-0.5296951904892921],[116,-54,69,-0.5284427274018526],[116,-54,70,-0.5275341626256704],[116,-54,71,-0.5264874286949635],[116,-54,72,-0.5250251665711403],[116,-54,73,-0.5234626978635788],[116,-54,74,-0.5220988970249891],[116,-54,75,-0.5210578367114067],[116,-54,76,-0.5203675851225853],[116,-54,77,-0.5198098700493574],[116,-54,78,-0.5188276823610067],[116,-54,79,-0.5173675315454602],[116,-53,64,-0.5358160398900509],[116,-53,65,-0.5347721707075834],[116,-53,66,-0.5331818107515574],[116,-53,67,-0.5313086658716202],[116,-53,68,-0.5296951904892921],[116,-53,69,-0.5284427274018526],[116,-53,70,-0.5275341626256704],[116,-53,71,-0.5264874286949635],[116,-53,72,-0.5250251665711403],[116,-53,73,-0.5234626978635788],[116,-53,74,-0.5220988970249891],[116,-53,75,-0.5210578367114067],[116,-53,76,-0.5203675851225853],[116,-53,77,-0.5198098700493574],[116,-53,78,-0.5188276823610067],[116,-53,79,-0.5173675315454602],[116,-52,64,-0.5358160398900509],[116,-52,65,-0.5347721707075834],[116,-52,66,-0.5331818107515574],[116,-52,67,-0.5313086658716202],[116,-52,68,-0.5296951904892921],[116,-52,69,-0.5284427274018526],[116,-52,70,-0.5275341626256704],[116,-52,71,-0.5264874286949635],[116,-52,72,-0.5250251665711403],[116,-52,73,-0.5234626978635788],[116,-52,74,-0.5220988970249891],[116,-52,75,-0.5210578367114067],[116,-52,76,-0.5203675851225853],[116,-52,77,-0.5198098700493574],[116,-52,78,-0.5188276823610067],[116,-52,79,-0.5173675315454602],[116,-51,64,-0.5358160398900509],[116,-51,65,-0.5347721707075834],[116,-51,66,-0.5331818107515574],[116,-51,67,-0.5313086658716202],[116,-51,68,-0.5296951904892921],[116,-51,69,-0.5284427274018526],[116,-51,70,-0.5275341626256704],[116,-51,71,-0.5264874286949635],[116,-51,72,-0.5250251665711403],[116,-51,73,-0.5234626978635788],[116,-51,74,-0.5220988970249891],[116,-51,75,-0.5210578367114067],[116,-51,76,-0.5203675851225853],[116,-51,77,-0.5198098700493574],[116,-51,78,-0.5188276823610067],[116,-51,79,-0.5173675315454602],[116,-50,64,-0.5358160398900509],[116,-50,65,-0.5347721707075834],[116,-50,66,-0.5331818107515574],[116,-50,67,-0.5313086658716202],[116,-50,68,-0.5296951904892921],[116,-50,69,-0.5284427274018526],[116,-50,70,-0.5275341626256704],[116,-50,71,-0.5264874286949635],[116,-50,72,-0.5250251665711403],[116,-50,73,-0.5234626978635788],[116,-50,74,-0.5220988970249891],[116,-50,75,-0.5210578367114067],[116,-50,76,-0.5203675851225853],[116,-50,77,-0.5198098700493574],[116,-50,78,-0.5188276823610067],[116,-50,79,-0.5173675315454602],[116,-49,64,-0.5358160398900509],[116,-49,65,-0.5347721707075834],[116,-49,66,-0.5331818107515574],[116,-49,67,-0.5313086658716202],[116,-49,68,-0.5296951904892921],[116,-49,69,-0.5284427274018526],[116,-49,70,-0.5275341626256704],[116,-49,71,-0.5264874286949635],[116,-49,72,-0.5250251665711403],[116,-49,73,-0.5234626978635788],[116,-49,74,-0.5220988970249891],[116,-49,75,-0.5210578367114067],[116,-49,76,-0.5203675851225853],[116,-49,77,-0.5198098700493574],[116,-49,78,-0.5188276823610067],[116,-49,79,-0.5173675315454602],[116,-48,64,-0.5358160398900509],[116,-48,65,-0.5347721707075834],[116,-48,66,-0.5331818107515574],[116,-48,67,-0.5313086658716202],[116,-48,68,-0.5296951904892921],[116,-48,69,-0.5284427274018526],[116,-48,70,-0.5275341626256704],[116,-48,71,-0.5264874286949635],[116,-48,72,-0.5250251665711403],[116,-48,73,-0.5234626978635788],[116,-48,74,-0.5220988970249891],[116,-48,75,-0.5210578367114067],[116,-48,76,-0.5203675851225853],[116,-48,77,-0.5198098700493574],[116,-48,78,-0.5188276823610067],[116,-48,79,-0.5173675315454602],[116,-47,64,-0.5358160398900509],[116,-47,65,-0.5347721707075834],[116,-47,66,-0.5331818107515574],[116,-47,67,-0.5313086658716202],[116,-47,68,-0.5296951904892921],[116,-47,69,-0.5284427274018526],[116,-47,70,-0.5275341626256704],[116,-47,71,-0.5264874286949635],[116,-47,72,-0.5250251665711403],[116,-47,73,-0.5234626978635788],[116,-47,74,-0.5220988970249891],[116,-47,75,-0.5210578367114067],[116,-47,76,-0.5203675851225853],[116,-47,77,-0.5198098700493574],[116,-47,78,-0.5188276823610067],[116,-47,79,-0.5173675315454602],[116,-46,64,-0.5358160398900509],[116,-46,65,-0.5347721707075834],[116,-46,66,-0.5331818107515574],[116,-46,67,-0.5313086658716202],[116,-46,68,-0.5296951904892921],[116,-46,69,-0.5284427274018526],[116,-46,70,-0.5275341626256704],[116,-46,71,-0.5264874286949635],[116,-46,72,-0.5250251665711403],[116,-46,73,-0.5234626978635788],[116,-46,74,-0.5220988970249891],[116,-46,75,-0.5210578367114067],[116,-46,76,-0.5203675851225853],[116,-46,77,-0.5198098700493574],[116,-46,78,-0.5188276823610067],[116,-46,79,-0.5173675315454602],[116,-45,64,-0.5358160398900509],[116,-45,65,-0.5347721707075834],[116,-45,66,-0.5331818107515574],[116,-45,67,-0.5313086658716202],[116,-45,68,-0.5296951904892921],[116,-45,69,-0.5284427274018526],[116,-45,70,-0.5275341626256704],[116,-45,71,-0.5264874286949635],[116,-45,72,-0.5250251665711403],[116,-45,73,-0.5234626978635788],[116,-45,74,-0.5220988970249891],[116,-45,75,-0.5210578367114067],[116,-45,76,-0.5203675851225853],[116,-45,77,-0.5198098700493574],[116,-45,78,-0.5188276823610067],[116,-45,79,-0.5173675315454602],[116,-44,64,-0.5358160398900509],[116,-44,65,-0.5347721707075834],[116,-44,66,-0.5331818107515574],[116,-44,67,-0.5313086658716202],[116,-44,68,-0.5296951904892921],[116,-44,69,-0.5284427274018526],[116,-44,70,-0.5275341626256704],[116,-44,71,-0.5264874286949635],[116,-44,72,-0.5250251665711403],[116,-44,73,-0.5234626978635788],[116,-44,74,-0.5220988970249891],[116,-44,75,-0.5210578367114067],[116,-44,76,-0.5203675851225853],[116,-44,77,-0.5198098700493574],[116,-44,78,-0.5188276823610067],[116,-44,79,-0.5173675315454602],[116,-43,64,-0.5358160398900509],[116,-43,65,-0.5347721707075834],[116,-43,66,-0.5331818107515574],[116,-43,67,-0.5313086658716202],[116,-43,68,-0.5296951904892921],[116,-43,69,-0.5284427274018526],[116,-43,70,-0.5275341626256704],[116,-43,71,-0.5264874286949635],[116,-43,72,-0.5250251665711403],[116,-43,73,-0.5234626978635788],[116,-43,74,-0.5220988970249891],[116,-43,75,-0.5210578367114067],[116,-43,76,-0.5203675851225853],[116,-43,77,-0.5198098700493574],[116,-43,78,-0.5188276823610067],[116,-43,79,-0.5173675315454602],[116,-42,64,-0.5358160398900509],[116,-42,65,-0.5347721707075834],[116,-42,66,-0.5331818107515574],[116,-42,67,-0.5313086658716202],[116,-42,68,-0.5296951904892921],[116,-42,69,-0.5284427274018526],[116,-42,70,-0.5275341626256704],[116,-42,71,-0.5264874286949635],[116,-42,72,-0.5250251665711403],[116,-42,73,-0.5234626978635788],[116,-42,74,-0.5220988970249891],[116,-42,75,-0.5210578367114067],[116,-42,76,-0.5203675851225853],[116,-42,77,-0.5198098700493574],[116,-42,78,-0.5188276823610067],[116,-42,79,-0.5173675315454602],[116,-41,64,-0.5358160398900509],[116,-41,65,-0.5347721707075834],[116,-41,66,-0.5331818107515574],[116,-41,67,-0.5313086658716202],[116,-41,68,-0.5296951904892921],[116,-41,69,-0.5284427274018526],[116,-41,70,-0.5275341626256704],[116,-41,71,-0.5264874286949635],[116,-41,72,-0.5250251665711403],[116,-41,73,-0.5234626978635788],[116,-41,74,-0.5220988970249891],[116,-41,75,-0.5210578367114067],[116,-41,76,-0.5203675851225853],[116,-41,77,-0.5198098700493574],[116,-41,78,-0.5188276823610067],[116,-41,79,-0.5173675315454602],[116,-40,64,-0.5358160398900509],[116,-40,65,-0.5347721707075834],[116,-40,66,-0.5331818107515574],[116,-40,67,-0.5313086658716202],[116,-40,68,-0.5296951904892921],[116,-40,69,-0.5284427274018526],[116,-40,70,-0.5275341626256704],[116,-40,71,-0.5264874286949635],[116,-40,72,-0.5250251665711403],[116,-40,73,-0.5234626978635788],[116,-40,74,-0.5220988970249891],[116,-40,75,-0.5210578367114067],[116,-40,76,-0.5203675851225853],[116,-40,77,-0.5198098700493574],[116,-40,78,-0.5188276823610067],[116,-40,79,-0.5173675315454602],[116,-39,64,-0.5358160398900509],[116,-39,65,-0.5347721707075834],[116,-39,66,-0.5331818107515574],[116,-39,67,-0.5313086658716202],[116,-39,68,-0.5296951904892921],[116,-39,69,-0.5284427274018526],[116,-39,70,-0.5275341626256704],[116,-39,71,-0.5264874286949635],[116,-39,72,-0.5250251665711403],[116,-39,73,-0.5234626978635788],[116,-39,74,-0.5220988970249891],[116,-39,75,-0.5210578367114067],[116,-39,76,-0.5203675851225853],[116,-39,77,-0.5198098700493574],[116,-39,78,-0.5188276823610067],[116,-39,79,-0.5173675315454602],[116,-38,64,-0.5358160398900509],[116,-38,65,-0.5347721707075834],[116,-38,66,-0.5331818107515574],[116,-38,67,-0.5313086658716202],[116,-38,68,-0.5296951904892921],[116,-38,69,-0.5284427274018526],[116,-38,70,-0.5275341626256704],[116,-38,71,-0.5264874286949635],[116,-38,72,-0.5250251665711403],[116,-38,73,-0.5234626978635788],[116,-38,74,-0.5220988970249891],[116,-38,75,-0.5210578367114067],[116,-38,76,-0.5203675851225853],[116,-38,77,-0.5198098700493574],[116,-38,78,-0.5188276823610067],[116,-38,79,-0.5173675315454602],[116,-37,64,-0.5358160398900509],[116,-37,65,-0.5347721707075834],[116,-37,66,-0.5331818107515574],[116,-37,67,-0.5313086658716202],[116,-37,68,-0.5296951904892921],[116,-37,69,-0.5284427274018526],[116,-37,70,-0.5275341626256704],[116,-37,71,-0.5264874286949635],[116,-37,72,-0.5250251665711403],[116,-37,73,-0.5234626978635788],[116,-37,74,-0.5220988970249891],[116,-37,75,-0.5210578367114067],[116,-37,76,-0.5203675851225853],[116,-37,77,-0.5198098700493574],[116,-37,78,-0.5188276823610067],[116,-37,79,-0.5173675315454602],[116,-36,64,-0.5358160398900509],[116,-36,65,-0.5347721707075834],[116,-36,66,-0.5331818107515574],[116,-36,67,-0.5313086658716202],[116,-36,68,-0.5296951904892921],[116,-36,69,-0.5284427274018526],[116,-36,70,-0.5275341626256704],[116,-36,71,-0.5264874286949635],[116,-36,72,-0.5250251665711403],[116,-36,73,-0.5234626978635788],[116,-36,74,-0.5220988970249891],[116,-36,75,-0.5210578367114067],[116,-36,76,-0.5203675851225853],[116,-36,77,-0.5198098700493574],[116,-36,78,-0.5188276823610067],[116,-36,79,-0.5173675315454602],[116,-35,64,-0.5358160398900509],[116,-35,65,-0.5347721707075834],[116,-35,66,-0.5331818107515574],[116,-35,67,-0.5313086658716202],[116,-35,68,-0.5296951904892921],[116,-35,69,-0.5284427274018526],[116,-35,70,-0.5275341626256704],[116,-35,71,-0.5264874286949635],[116,-35,72,-0.5250251665711403],[116,-35,73,-0.5234626978635788],[116,-35,74,-0.5220988970249891],[116,-35,75,-0.5210578367114067],[116,-35,76,-0.5203675851225853],[116,-35,77,-0.5198098700493574],[116,-35,78,-0.5188276823610067],[116,-35,79,-0.5173675315454602],[116,-34,64,-0.5358160398900509],[116,-34,65,-0.5347721707075834],[116,-34,66,-0.5331818107515574],[116,-34,67,-0.5313086658716202],[116,-34,68,-0.5296951904892921],[116,-34,69,-0.5284427274018526],[116,-34,70,-0.5275341626256704],[116,-34,71,-0.5264874286949635],[116,-34,72,-0.5250251665711403],[116,-34,73,-0.5234626978635788],[116,-34,74,-0.5220988970249891],[116,-34,75,-0.5210578367114067],[116,-34,76,-0.5203675851225853],[116,-34,77,-0.5198098700493574],[116,-34,78,-0.5188276823610067],[116,-34,79,-0.5173675315454602],[116,-33,64,-0.5358160398900509],[116,-33,65,-0.5347721707075834],[116,-33,66,-0.5331818107515574],[116,-33,67,-0.5313086658716202],[116,-33,68,-0.5296951904892921],[116,-33,69,-0.5284427274018526],[116,-33,70,-0.5275341626256704],[116,-33,71,-0.5264874286949635],[116,-33,72,-0.5250251665711403],[116,-33,73,-0.5234626978635788],[116,-33,74,-0.5220988970249891],[116,-33,75,-0.5210578367114067],[116,-33,76,-0.5203675851225853],[116,-33,77,-0.5198098700493574],[116,-33,78,-0.5188276823610067],[116,-33,79,-0.5173675315454602],[116,-32,64,-0.5358160398900509],[116,-32,65,-0.5347721707075834],[116,-32,66,-0.5331818107515574],[116,-32,67,-0.5313086658716202],[116,-32,68,-0.5296951904892921],[116,-32,69,-0.5284427274018526],[116,-32,70,-0.5275341626256704],[116,-32,71,-0.5264874286949635],[116,-32,72,-0.5250251665711403],[116,-32,73,-0.5234626978635788],[116,-32,74,-0.5220988970249891],[116,-32,75,-0.5210578367114067],[116,-32,76,-0.5203675851225853],[116,-32,77,-0.5198098700493574],[116,-32,78,-0.5188276823610067],[116,-32,79,-0.5173675315454602],[116,-31,64,-0.5358160398900509],[116,-31,65,-0.5347721707075834],[116,-31,66,-0.5331818107515574],[116,-31,67,-0.5313086658716202],[116,-31,68,-0.5296951904892921],[116,-31,69,-0.5284427274018526],[116,-31,70,-0.5275341626256704],[116,-31,71,-0.5264874286949635],[116,-31,72,-0.5250251665711403],[116,-31,73,-0.5234626978635788],[116,-31,74,-0.5220988970249891],[116,-31,75,-0.5210578367114067],[116,-31,76,-0.5203675851225853],[116,-31,77,-0.5198098700493574],[116,-31,78,-0.5188276823610067],[116,-31,79,-0.5173675315454602],[116,-30,64,-0.5358160398900509],[116,-30,65,-0.5347721707075834],[116,-30,66,-0.5331818107515574],[116,-30,67,-0.5313086658716202],[116,-30,68,-0.5296951904892921],[116,-30,69,-0.5284427274018526],[116,-30,70,-0.5275341626256704],[116,-30,71,-0.5264874286949635],[116,-30,72,-0.5250251665711403],[116,-30,73,-0.5234626978635788],[116,-30,74,-0.5220988970249891],[116,-30,75,-0.5210578367114067],[116,-30,76,-0.5203675851225853],[116,-30,77,-0.5198098700493574],[116,-30,78,-0.5188276823610067],[116,-30,79,-0.5173675315454602],[116,-29,64,-0.5358160398900509],[116,-29,65,-0.5347721707075834],[116,-29,66,-0.5331818107515574],[116,-29,67,-0.5313086658716202],[116,-29,68,-0.5296951904892921],[116,-29,69,-0.5284427274018526],[116,-29,70,-0.5275341626256704],[116,-29,71,-0.5264874286949635],[116,-29,72,-0.5250251665711403],[116,-29,73,-0.5234626978635788],[116,-29,74,-0.5220988970249891],[116,-29,75,-0.5210578367114067],[116,-29,76,-0.5203675851225853],[116,-29,77,-0.5198098700493574],[116,-29,78,-0.5188276823610067],[116,-29,79,-0.5173675315454602],[116,-28,64,-0.5358160398900509],[116,-28,65,-0.5347721707075834],[116,-28,66,-0.5331818107515574],[116,-28,67,-0.5313086658716202],[116,-28,68,-0.5296951904892921],[116,-28,69,-0.5284427274018526],[116,-28,70,-0.5275341626256704],[116,-28,71,-0.5264874286949635],[116,-28,72,-0.5250251665711403],[116,-28,73,-0.5234626978635788],[116,-28,74,-0.5220988970249891],[116,-28,75,-0.5210578367114067],[116,-28,76,-0.5203675851225853],[116,-28,77,-0.5198098700493574],[116,-28,78,-0.5188276823610067],[116,-28,79,-0.5173675315454602],[116,-27,64,-0.5358160398900509],[116,-27,65,-0.5347721707075834],[116,-27,66,-0.5331818107515574],[116,-27,67,-0.5313086658716202],[116,-27,68,-0.5296951904892921],[116,-27,69,-0.5284427274018526],[116,-27,70,-0.5275341626256704],[116,-27,71,-0.5264874286949635],[116,-27,72,-0.5250251665711403],[116,-27,73,-0.5234626978635788],[116,-27,74,-0.5220988970249891],[116,-27,75,-0.5210578367114067],[116,-27,76,-0.5203675851225853],[116,-27,77,-0.5198098700493574],[116,-27,78,-0.5188276823610067],[116,-27,79,-0.5173675315454602],[116,-26,64,-0.5358160398900509],[116,-26,65,-0.5347721707075834],[116,-26,66,-0.5331818107515574],[116,-26,67,-0.5313086658716202],[116,-26,68,-0.5296951904892921],[116,-26,69,-0.5284427274018526],[116,-26,70,-0.5275341626256704],[116,-26,71,-0.5264874286949635],[116,-26,72,-0.5250251665711403],[116,-26,73,-0.5234626978635788],[116,-26,74,-0.5220988970249891],[116,-26,75,-0.5210578367114067],[116,-26,76,-0.5203675851225853],[116,-26,77,-0.5198098700493574],[116,-26,78,-0.5188276823610067],[116,-26,79,-0.5173675315454602],[116,-25,64,-0.5358160398900509],[116,-25,65,-0.5347721707075834],[116,-25,66,-0.5331818107515574],[116,-25,67,-0.5313086658716202],[116,-25,68,-0.5296951904892921],[116,-25,69,-0.5284427274018526],[116,-25,70,-0.5275341626256704],[116,-25,71,-0.5264874286949635],[116,-25,72,-0.5250251665711403],[116,-25,73,-0.5234626978635788],[116,-25,74,-0.5220988970249891],[116,-25,75,-0.5210578367114067],[116,-25,76,-0.5203675851225853],[116,-25,77,-0.5198098700493574],[116,-25,78,-0.5188276823610067],[116,-25,79,-0.5173675315454602],[116,-24,64,-0.5358160398900509],[116,-24,65,-0.5347721707075834],[116,-24,66,-0.5331818107515574],[116,-24,67,-0.5313086658716202],[116,-24,68,-0.5296951904892921],[116,-24,69,-0.5284427274018526],[116,-24,70,-0.5275341626256704],[116,-24,71,-0.5264874286949635],[116,-24,72,-0.5250251665711403],[116,-24,73,-0.5234626978635788],[116,-24,74,-0.5220988970249891],[116,-24,75,-0.5210578367114067],[116,-24,76,-0.5203675851225853],[116,-24,77,-0.5198098700493574],[116,-24,78,-0.5188276823610067],[116,-24,79,-0.5173675315454602],[116,-23,64,-0.5358160398900509],[116,-23,65,-0.5347721707075834],[116,-23,66,-0.5331818107515574],[116,-23,67,-0.5313086658716202],[116,-23,68,-0.5296951904892921],[116,-23,69,-0.5284427274018526],[116,-23,70,-0.5275341626256704],[116,-23,71,-0.5264874286949635],[116,-23,72,-0.5250251665711403],[116,-23,73,-0.5234626978635788],[116,-23,74,-0.5220988970249891],[116,-23,75,-0.5210578367114067],[116,-23,76,-0.5203675851225853],[116,-23,77,-0.5198098700493574],[116,-23,78,-0.5188276823610067],[116,-23,79,-0.5173675315454602],[116,-22,64,-0.5358160398900509],[116,-22,65,-0.5347721707075834],[116,-22,66,-0.5331818107515574],[116,-22,67,-0.5313086658716202],[116,-22,68,-0.5296951904892921],[116,-22,69,-0.5284427274018526],[116,-22,70,-0.5275341626256704],[116,-22,71,-0.5264874286949635],[116,-22,72,-0.5250251665711403],[116,-22,73,-0.5234626978635788],[116,-22,74,-0.5220988970249891],[116,-22,75,-0.5210578367114067],[116,-22,76,-0.5203675851225853],[116,-22,77,-0.5198098700493574],[116,-22,78,-0.5188276823610067],[116,-22,79,-0.5173675315454602],[116,-21,64,-0.5358160398900509],[116,-21,65,-0.5347721707075834],[116,-21,66,-0.5331818107515574],[116,-21,67,-0.5313086658716202],[116,-21,68,-0.5296951904892921],[116,-21,69,-0.5284427274018526],[116,-21,70,-0.5275341626256704],[116,-21,71,-0.5264874286949635],[116,-21,72,-0.5250251665711403],[116,-21,73,-0.5234626978635788],[116,-21,74,-0.5220988970249891],[116,-21,75,-0.5210578367114067],[116,-21,76,-0.5203675851225853],[116,-21,77,-0.5198098700493574],[116,-21,78,-0.5188276823610067],[116,-21,79,-0.5173675315454602],[116,-20,64,-0.5358160398900509],[116,-20,65,-0.5347721707075834],[116,-20,66,-0.5331818107515574],[116,-20,67,-0.5313086658716202],[116,-20,68,-0.5296951904892921],[116,-20,69,-0.5284427274018526],[116,-20,70,-0.5275341626256704],[116,-20,71,-0.5264874286949635],[116,-20,72,-0.5250251665711403],[116,-20,73,-0.5234626978635788],[116,-20,74,-0.5220988970249891],[116,-20,75,-0.5210578367114067],[116,-20,76,-0.5203675851225853],[116,-20,77,-0.5198098700493574],[116,-20,78,-0.5188276823610067],[116,-20,79,-0.5173675315454602],[116,-19,64,-0.5358160398900509],[116,-19,65,-0.5347721707075834],[116,-19,66,-0.5331818107515574],[116,-19,67,-0.5313086658716202],[116,-19,68,-0.5296951904892921],[116,-19,69,-0.5284427274018526],[116,-19,70,-0.5275341626256704],[116,-19,71,-0.5264874286949635],[116,-19,72,-0.5250251665711403],[116,-19,73,-0.5234626978635788],[116,-19,74,-0.5220988970249891],[116,-19,75,-0.5210578367114067],[116,-19,76,-0.5203675851225853],[116,-19,77,-0.5198098700493574],[116,-19,78,-0.5188276823610067],[116,-19,79,-0.5173675315454602],[116,-18,64,-0.5358160398900509],[116,-18,65,-0.5347721707075834],[116,-18,66,-0.5331818107515574],[116,-18,67,-0.5313086658716202],[116,-18,68,-0.5296951904892921],[116,-18,69,-0.5284427274018526],[116,-18,70,-0.5275341626256704],[116,-18,71,-0.5264874286949635],[116,-18,72,-0.5250251665711403],[116,-18,73,-0.5234626978635788],[116,-18,74,-0.5220988970249891],[116,-18,75,-0.5210578367114067],[116,-18,76,-0.5203675851225853],[116,-18,77,-0.5198098700493574],[116,-18,78,-0.5188276823610067],[116,-18,79,-0.5173675315454602],[116,-17,64,-0.5358160398900509],[116,-17,65,-0.5347721707075834],[116,-17,66,-0.5331818107515574],[116,-17,67,-0.5313086658716202],[116,-17,68,-0.5296951904892921],[116,-17,69,-0.5284427274018526],[116,-17,70,-0.5275341626256704],[116,-17,71,-0.5264874286949635],[116,-17,72,-0.5250251665711403],[116,-17,73,-0.5234626978635788],[116,-17,74,-0.5220988970249891],[116,-17,75,-0.5210578367114067],[116,-17,76,-0.5203675851225853],[116,-17,77,-0.5198098700493574],[116,-17,78,-0.5188276823610067],[116,-17,79,-0.5173675315454602],[116,-16,64,-0.5358160398900509],[116,-16,65,-0.5347721707075834],[116,-16,66,-0.5331818107515574],[116,-16,67,-0.5313086658716202],[116,-16,68,-0.5296951904892921],[116,-16,69,-0.5284427274018526],[116,-16,70,-0.5275341626256704],[116,-16,71,-0.5264874286949635],[116,-16,72,-0.5250251665711403],[116,-16,73,-0.5234626978635788],[116,-16,74,-0.5220988970249891],[116,-16,75,-0.5210578367114067],[116,-16,76,-0.5203675851225853],[116,-16,77,-0.5198098700493574],[116,-16,78,-0.5188276823610067],[116,-16,79,-0.5173675315454602],[116,-15,64,-0.5358160398900509],[116,-15,65,-0.5347721707075834],[116,-15,66,-0.5331818107515574],[116,-15,67,-0.5313086658716202],[116,-15,68,-0.5296951904892921],[116,-15,69,-0.5284427274018526],[116,-15,70,-0.5275341626256704],[116,-15,71,-0.5264874286949635],[116,-15,72,-0.5250251665711403],[116,-15,73,-0.5234626978635788],[116,-15,74,-0.5220988970249891],[116,-15,75,-0.5210578367114067],[116,-15,76,-0.5203675851225853],[116,-15,77,-0.5198098700493574],[116,-15,78,-0.5188276823610067],[116,-15,79,-0.5173675315454602],[116,-14,64,-0.5358160398900509],[116,-14,65,-0.5347721707075834],[116,-14,66,-0.5331818107515574],[116,-14,67,-0.5313086658716202],[116,-14,68,-0.5296951904892921],[116,-14,69,-0.5284427274018526],[116,-14,70,-0.5275341626256704],[116,-14,71,-0.5264874286949635],[116,-14,72,-0.5250251665711403],[116,-14,73,-0.5234626978635788],[116,-14,74,-0.5220988970249891],[116,-14,75,-0.5210578367114067],[116,-14,76,-0.5203675851225853],[116,-14,77,-0.5198098700493574],[116,-14,78,-0.5188276823610067],[116,-14,79,-0.5173675315454602],[116,-13,64,-0.5358160398900509],[116,-13,65,-0.5347721707075834],[116,-13,66,-0.5331818107515574],[116,-13,67,-0.5313086658716202],[116,-13,68,-0.5296951904892921],[116,-13,69,-0.5284427274018526],[116,-13,70,-0.5275341626256704],[116,-13,71,-0.5264874286949635],[116,-13,72,-0.5250251665711403],[116,-13,73,-0.5234626978635788],[116,-13,74,-0.5220988970249891],[116,-13,75,-0.5210578367114067],[116,-13,76,-0.5203675851225853],[116,-13,77,-0.5198098700493574],[116,-13,78,-0.5188276823610067],[116,-13,79,-0.5173675315454602],[116,-12,64,-0.5358160398900509],[116,-12,65,-0.5347721707075834],[116,-12,66,-0.5331818107515574],[116,-12,67,-0.5313086658716202],[116,-12,68,-0.5296951904892921],[116,-12,69,-0.5284427274018526],[116,-12,70,-0.5275341626256704],[116,-12,71,-0.5264874286949635],[116,-12,72,-0.5250251665711403],[116,-12,73,-0.5234626978635788],[116,-12,74,-0.5220988970249891],[116,-12,75,-0.5210578367114067],[116,-12,76,-0.5203675851225853],[116,-12,77,-0.5198098700493574],[116,-12,78,-0.5188276823610067],[116,-12,79,-0.5173675315454602],[116,-11,64,-0.5358160398900509],[116,-11,65,-0.5347721707075834],[116,-11,66,-0.5331818107515574],[116,-11,67,-0.5313086658716202],[116,-11,68,-0.5296951904892921],[116,-11,69,-0.5284427274018526],[116,-11,70,-0.5275341626256704],[116,-11,71,-0.5264874286949635],[116,-11,72,-0.5250251665711403],[116,-11,73,-0.5234626978635788],[116,-11,74,-0.5220988970249891],[116,-11,75,-0.5210578367114067],[116,-11,76,-0.5203675851225853],[116,-11,77,-0.5198098700493574],[116,-11,78,-0.5188276823610067],[116,-11,79,-0.5173675315454602],[116,-10,64,-0.5358160398900509],[116,-10,65,-0.5347721707075834],[116,-10,66,-0.5331818107515574],[116,-10,67,-0.5313086658716202],[116,-10,68,-0.5296951904892921],[116,-10,69,-0.5284427274018526],[116,-10,70,-0.5275341626256704],[116,-10,71,-0.5264874286949635],[116,-10,72,-0.5250251665711403],[116,-10,73,-0.5234626978635788],[116,-10,74,-0.5220988970249891],[116,-10,75,-0.5210578367114067],[116,-10,76,-0.5203675851225853],[116,-10,77,-0.5198098700493574],[116,-10,78,-0.5188276823610067],[116,-10,79,-0.5173675315454602],[116,-9,64,-0.5358160398900509],[116,-9,65,-0.5347721707075834],[116,-9,66,-0.5331818107515574],[116,-9,67,-0.5313086658716202],[116,-9,68,-0.5296951904892921],[116,-9,69,-0.5284427274018526],[116,-9,70,-0.5275341626256704],[116,-9,71,-0.5264874286949635],[116,-9,72,-0.5250251665711403],[116,-9,73,-0.5234626978635788],[116,-9,74,-0.5220988970249891],[116,-9,75,-0.5210578367114067],[116,-9,76,-0.5203675851225853],[116,-9,77,-0.5198098700493574],[116,-9,78,-0.5188276823610067],[116,-9,79,-0.5173675315454602],[116,-8,64,-0.5358160398900509],[116,-8,65,-0.5347721707075834],[116,-8,66,-0.5331818107515574],[116,-8,67,-0.5313086658716202],[116,-8,68,-0.5296951904892921],[116,-8,69,-0.5284427274018526],[116,-8,70,-0.5275341626256704],[116,-8,71,-0.5264874286949635],[116,-8,72,-0.5250251665711403],[116,-8,73,-0.5234626978635788],[116,-8,74,-0.5220988970249891],[116,-8,75,-0.5210578367114067],[116,-8,76,-0.5203675851225853],[116,-8,77,-0.5198098700493574],[116,-8,78,-0.5188276823610067],[116,-8,79,-0.5173675315454602],[116,-7,64,-0.5358160398900509],[116,-7,65,-0.5347721707075834],[116,-7,66,-0.5331818107515574],[116,-7,67,-0.5313086658716202],[116,-7,68,-0.5296951904892921],[116,-7,69,-0.5284427274018526],[116,-7,70,-0.5275341626256704],[116,-7,71,-0.5264874286949635],[116,-7,72,-0.5250251665711403],[116,-7,73,-0.5234626978635788],[116,-7,74,-0.5220988970249891],[116,-7,75,-0.5210578367114067],[116,-7,76,-0.5203675851225853],[116,-7,77,-0.5198098700493574],[116,-7,78,-0.5188276823610067],[116,-7,79,-0.5173675315454602],[116,-6,64,-0.5358160398900509],[116,-6,65,-0.5347721707075834],[116,-6,66,-0.5331818107515574],[116,-6,67,-0.5313086658716202],[116,-6,68,-0.5296951904892921],[116,-6,69,-0.5284427274018526],[116,-6,70,-0.5275341626256704],[116,-6,71,-0.5264874286949635],[116,-6,72,-0.5250251665711403],[116,-6,73,-0.5234626978635788],[116,-6,74,-0.5220988970249891],[116,-6,75,-0.5210578367114067],[116,-6,76,-0.5203675851225853],[116,-6,77,-0.5198098700493574],[116,-6,78,-0.5188276823610067],[116,-6,79,-0.5173675315454602],[116,-5,64,-0.5358160398900509],[116,-5,65,-0.5347721707075834],[116,-5,66,-0.5331818107515574],[116,-5,67,-0.5313086658716202],[116,-5,68,-0.5296951904892921],[116,-5,69,-0.5284427274018526],[116,-5,70,-0.5275341626256704],[116,-5,71,-0.5264874286949635],[116,-5,72,-0.5250251665711403],[116,-5,73,-0.5234626978635788],[116,-5,74,-0.5220988970249891],[116,-5,75,-0.5210578367114067],[116,-5,76,-0.5203675851225853],[116,-5,77,-0.5198098700493574],[116,-5,78,-0.5188276823610067],[116,-5,79,-0.5173675315454602],[116,-4,64,-0.5358160398900509],[116,-4,65,-0.5347721707075834],[116,-4,66,-0.5331818107515574],[116,-4,67,-0.5313086658716202],[116,-4,68,-0.5296951904892921],[116,-4,69,-0.5284427274018526],[116,-4,70,-0.5275341626256704],[116,-4,71,-0.5264874286949635],[116,-4,72,-0.5250251665711403],[116,-4,73,-0.5234626978635788],[116,-4,74,-0.5220988970249891],[116,-4,75,-0.5210578367114067],[116,-4,76,-0.5203675851225853],[116,-4,77,-0.5198098700493574],[116,-4,78,-0.5188276823610067],[116,-4,79,-0.5173675315454602],[116,-3,64,-0.5358160398900509],[116,-3,65,-0.5347721707075834],[116,-3,66,-0.5331818107515574],[116,-3,67,-0.5313086658716202],[116,-3,68,-0.5296951904892921],[116,-3,69,-0.5284427274018526],[116,-3,70,-0.5275341626256704],[116,-3,71,-0.5264874286949635],[116,-3,72,-0.5250251665711403],[116,-3,73,-0.5234626978635788],[116,-3,74,-0.5220988970249891],[116,-3,75,-0.5210578367114067],[116,-3,76,-0.5203675851225853],[116,-3,77,-0.5198098700493574],[116,-3,78,-0.5188276823610067],[116,-3,79,-0.5173675315454602],[116,-2,64,-0.5358160398900509],[116,-2,65,-0.5347721707075834],[116,-2,66,-0.5331818107515574],[116,-2,67,-0.5313086658716202],[116,-2,68,-0.5296951904892921],[116,-2,69,-0.5284427274018526],[116,-2,70,-0.5275341626256704],[116,-2,71,-0.5264874286949635],[116,-2,72,-0.5250251665711403],[116,-2,73,-0.5234626978635788],[116,-2,74,-0.5220988970249891],[116,-2,75,-0.5210578367114067],[116,-2,76,-0.5203675851225853],[116,-2,77,-0.5198098700493574],[116,-2,78,-0.5188276823610067],[116,-2,79,-0.5173675315454602],[116,-1,64,-0.5358160398900509],[116,-1,65,-0.5347721707075834],[116,-1,66,-0.5331818107515574],[116,-1,67,-0.5313086658716202],[116,-1,68,-0.5296951904892921],[116,-1,69,-0.5284427274018526],[116,-1,70,-0.5275341626256704],[116,-1,71,-0.5264874286949635],[116,-1,72,-0.5250251665711403],[116,-1,73,-0.5234626978635788],[116,-1,74,-0.5220988970249891],[116,-1,75,-0.5210578367114067],[116,-1,76,-0.5203675851225853],[116,-1,77,-0.5198098700493574],[116,-1,78,-0.5188276823610067],[116,-1,79,-0.5173675315454602],[116,0,64,-0.5358160398900509],[116,0,65,-0.5347721707075834],[116,0,66,-0.5331818107515574],[116,0,67,-0.5313086658716202],[116,0,68,-0.5296951904892921],[116,0,69,-0.5284427274018526],[116,0,70,-0.5275341626256704],[116,0,71,-0.5264874286949635],[116,0,72,-0.5250251665711403],[116,0,73,-0.5234626978635788],[116,0,74,-0.5220988970249891],[116,0,75,-0.5210578367114067],[116,0,76,-0.5203675851225853],[116,0,77,-0.5198098700493574],[116,0,78,-0.5188276823610067],[116,0,79,-0.5173675315454602],[116,1,64,-0.5358160398900509],[116,1,65,-0.5347721707075834],[116,1,66,-0.5331818107515574],[116,1,67,-0.5313086658716202],[116,1,68,-0.5296951904892921],[116,1,69,-0.5284427274018526],[116,1,70,-0.5275341626256704],[116,1,71,-0.5264874286949635],[116,1,72,-0.5250251665711403],[116,1,73,-0.5234626978635788],[116,1,74,-0.5220988970249891],[116,1,75,-0.5210578367114067],[116,1,76,-0.5203675851225853],[116,1,77,-0.5198098700493574],[116,1,78,-0.5188276823610067],[116,1,79,-0.5173675315454602],[116,2,64,-0.5358160398900509],[116,2,65,-0.5347721707075834],[116,2,66,-0.5331818107515574],[116,2,67,-0.5313086658716202],[116,2,68,-0.5296951904892921],[116,2,69,-0.5284427274018526],[116,2,70,-0.5275341626256704],[116,2,71,-0.5264874286949635],[116,2,72,-0.5250251665711403],[116,2,73,-0.5234626978635788],[116,2,74,-0.5220988970249891],[116,2,75,-0.5210578367114067],[116,2,76,-0.5203675851225853],[116,2,77,-0.5198098700493574],[116,2,78,-0.5188276823610067],[116,2,79,-0.5173675315454602],[116,3,64,-0.5358160398900509],[116,3,65,-0.5347721707075834],[116,3,66,-0.5331818107515574],[116,3,67,-0.5313086658716202],[116,3,68,-0.5296951904892921],[116,3,69,-0.5284427274018526],[116,3,70,-0.5275341626256704],[116,3,71,-0.5264874286949635],[116,3,72,-0.5250251665711403],[116,3,73,-0.5234626978635788],[116,3,74,-0.5220988970249891],[116,3,75,-0.5210578367114067],[116,3,76,-0.5203675851225853],[116,3,77,-0.5198098700493574],[116,3,78,-0.5188276823610067],[116,3,79,-0.5173675315454602],[116,4,64,-0.5358160398900509],[116,4,65,-0.5347721707075834],[116,4,66,-0.5331818107515574],[116,4,67,-0.5313086658716202],[116,4,68,-0.5296951904892921],[116,4,69,-0.5284427274018526],[116,4,70,-0.5275341626256704],[116,4,71,-0.5264874286949635],[116,4,72,-0.5250251665711403],[116,4,73,-0.5234626978635788],[116,4,74,-0.5220988970249891],[116,4,75,-0.5210578367114067],[116,4,76,-0.5203675851225853],[116,4,77,-0.5198098700493574],[116,4,78,-0.5188276823610067],[116,4,79,-0.5173675315454602],[116,5,64,-0.5358160398900509],[116,5,65,-0.5347721707075834],[116,5,66,-0.5331818107515574],[116,5,67,-0.5313086658716202],[116,5,68,-0.5296951904892921],[116,5,69,-0.5284427274018526],[116,5,70,-0.5275341626256704],[116,5,71,-0.5264874286949635],[116,5,72,-0.5250251665711403],[116,5,73,-0.5234626978635788],[116,5,74,-0.5220988970249891],[116,5,75,-0.5210578367114067],[116,5,76,-0.5203675851225853],[116,5,77,-0.5198098700493574],[116,5,78,-0.5188276823610067],[116,5,79,-0.5173675315454602],[116,6,64,-0.5358160398900509],[116,6,65,-0.5347721707075834],[116,6,66,-0.5331818107515574],[116,6,67,-0.5313086658716202],[116,6,68,-0.5296951904892921],[116,6,69,-0.5284427274018526],[116,6,70,-0.5275341626256704],[116,6,71,-0.5264874286949635],[116,6,72,-0.5250251665711403],[116,6,73,-0.5234626978635788],[116,6,74,-0.5220988970249891],[116,6,75,-0.5210578367114067],[116,6,76,-0.5203675851225853],[116,6,77,-0.5198098700493574],[116,6,78,-0.5188276823610067],[116,6,79,-0.5173675315454602],[116,7,64,-0.5358160398900509],[116,7,65,-0.5347721707075834],[116,7,66,-0.5331818107515574],[116,7,67,-0.5313086658716202],[116,7,68,-0.5296951904892921],[116,7,69,-0.5284427274018526],[116,7,70,-0.5275341626256704],[116,7,71,-0.5264874286949635],[116,7,72,-0.5250251665711403],[116,7,73,-0.5234626978635788],[116,7,74,-0.5220988970249891],[116,7,75,-0.5210578367114067],[116,7,76,-0.5203675851225853],[116,7,77,-0.5198098700493574],[116,7,78,-0.5188276823610067],[116,7,79,-0.5173675315454602],[116,8,64,-0.5358160398900509],[116,8,65,-0.5347721707075834],[116,8,66,-0.5331818107515574],[116,8,67,-0.5313086658716202],[116,8,68,-0.5296951904892921],[116,8,69,-0.5284427274018526],[116,8,70,-0.5275341626256704],[116,8,71,-0.5264874286949635],[116,8,72,-0.5250251665711403],[116,8,73,-0.5234626978635788],[116,8,74,-0.5220988970249891],[116,8,75,-0.5210578367114067],[116,8,76,-0.5203675851225853],[116,8,77,-0.5198098700493574],[116,8,78,-0.5188276823610067],[116,8,79,-0.5173675315454602],[116,9,64,-0.5358160398900509],[116,9,65,-0.5347721707075834],[116,9,66,-0.5331818107515574],[116,9,67,-0.5313086658716202],[116,9,68,-0.5296951904892921],[116,9,69,-0.5284427274018526],[116,9,70,-0.5275341626256704],[116,9,71,-0.5264874286949635],[116,9,72,-0.5250251665711403],[116,9,73,-0.5234626978635788],[116,9,74,-0.5220988970249891],[116,9,75,-0.5210578367114067],[116,9,76,-0.5203675851225853],[116,9,77,-0.5198098700493574],[116,9,78,-0.5188276823610067],[116,9,79,-0.5173675315454602],[116,10,64,-0.5358160398900509],[116,10,65,-0.5347721707075834],[116,10,66,-0.5331818107515574],[116,10,67,-0.5313086658716202],[116,10,68,-0.5296951904892921],[116,10,69,-0.5284427274018526],[116,10,70,-0.5275341626256704],[116,10,71,-0.5264874286949635],[116,10,72,-0.5250251665711403],[116,10,73,-0.5234626978635788],[116,10,74,-0.5220988970249891],[116,10,75,-0.5210578367114067],[116,10,76,-0.5203675851225853],[116,10,77,-0.5198098700493574],[116,10,78,-0.5188276823610067],[116,10,79,-0.5173675315454602],[116,11,64,-0.5358160398900509],[116,11,65,-0.5347721707075834],[116,11,66,-0.5331818107515574],[116,11,67,-0.5313086658716202],[116,11,68,-0.5296951904892921],[116,11,69,-0.5284427274018526],[116,11,70,-0.5275341626256704],[116,11,71,-0.5264874286949635],[116,11,72,-0.5250251665711403],[116,11,73,-0.5234626978635788],[116,11,74,-0.5220988970249891],[116,11,75,-0.5210578367114067],[116,11,76,-0.5203675851225853],[116,11,77,-0.5198098700493574],[116,11,78,-0.5188276823610067],[116,11,79,-0.5173675315454602],[116,12,64,-0.5358160398900509],[116,12,65,-0.5347721707075834],[116,12,66,-0.5331818107515574],[116,12,67,-0.5313086658716202],[116,12,68,-0.5296951904892921],[116,12,69,-0.5284427274018526],[116,12,70,-0.5275341626256704],[116,12,71,-0.5264874286949635],[116,12,72,-0.5250251665711403],[116,12,73,-0.5234626978635788],[116,12,74,-0.5220988970249891],[116,12,75,-0.5210578367114067],[116,12,76,-0.5203675851225853],[116,12,77,-0.5198098700493574],[116,12,78,-0.5188276823610067],[116,12,79,-0.5173675315454602],[116,13,64,-0.5358160398900509],[116,13,65,-0.5347721707075834],[116,13,66,-0.5331818107515574],[116,13,67,-0.5313086658716202],[116,13,68,-0.5296951904892921],[116,13,69,-0.5284427274018526],[116,13,70,-0.5275341626256704],[116,13,71,-0.5264874286949635],[116,13,72,-0.5250251665711403],[116,13,73,-0.5234626978635788],[116,13,74,-0.5220988970249891],[116,13,75,-0.5210578367114067],[116,13,76,-0.5203675851225853],[116,13,77,-0.5198098700493574],[116,13,78,-0.5188276823610067],[116,13,79,-0.5173675315454602],[116,14,64,-0.5358160398900509],[116,14,65,-0.5347721707075834],[116,14,66,-0.5331818107515574],[116,14,67,-0.5313086658716202],[116,14,68,-0.5296951904892921],[116,14,69,-0.5284427274018526],[116,14,70,-0.5275341626256704],[116,14,71,-0.5264874286949635],[116,14,72,-0.5250251665711403],[116,14,73,-0.5234626978635788],[116,14,74,-0.5220988970249891],[116,14,75,-0.5210578367114067],[116,14,76,-0.5203675851225853],[116,14,77,-0.5198098700493574],[116,14,78,-0.5188276823610067],[116,14,79,-0.5173675315454602],[116,15,64,-0.5358160398900509],[116,15,65,-0.5347721707075834],[116,15,66,-0.5331818107515574],[116,15,67,-0.5313086658716202],[116,15,68,-0.5296951904892921],[116,15,69,-0.5284427274018526],[116,15,70,-0.5275341626256704],[116,15,71,-0.5264874286949635],[116,15,72,-0.5250251665711403],[116,15,73,-0.5234626978635788],[116,15,74,-0.5220988970249891],[116,15,75,-0.5210578367114067],[116,15,76,-0.5203675851225853],[116,15,77,-0.5198098700493574],[116,15,78,-0.5188276823610067],[116,15,79,-0.5173675315454602],[116,16,64,-0.5358160398900509],[116,16,65,-0.5347721707075834],[116,16,66,-0.5331818107515574],[116,16,67,-0.5313086658716202],[116,16,68,-0.5296951904892921],[116,16,69,-0.5284427274018526],[116,16,70,-0.5275341626256704],[116,16,71,-0.5264874286949635],[116,16,72,-0.5250251665711403],[116,16,73,-0.5234626978635788],[116,16,74,-0.5220988970249891],[116,16,75,-0.5210578367114067],[116,16,76,-0.5203675851225853],[116,16,77,-0.5198098700493574],[116,16,78,-0.5188276823610067],[116,16,79,-0.5173675315454602],[116,17,64,-0.5358160398900509],[116,17,65,-0.5347721707075834],[116,17,66,-0.5331818107515574],[116,17,67,-0.5313086658716202],[116,17,68,-0.5296951904892921],[116,17,69,-0.5284427274018526],[116,17,70,-0.5275341626256704],[116,17,71,-0.5264874286949635],[116,17,72,-0.5250251665711403],[116,17,73,-0.5234626978635788],[116,17,74,-0.5220988970249891],[116,17,75,-0.5210578367114067],[116,17,76,-0.5203675851225853],[116,17,77,-0.5198098700493574],[116,17,78,-0.5188276823610067],[116,17,79,-0.5173675315454602],[116,18,64,-0.5358160398900509],[116,18,65,-0.5347721707075834],[116,18,66,-0.5331818107515574],[116,18,67,-0.5313086658716202],[116,18,68,-0.5296951904892921],[116,18,69,-0.5284427274018526],[116,18,70,-0.5275341626256704],[116,18,71,-0.5264874286949635],[116,18,72,-0.5250251665711403],[116,18,73,-0.5234626978635788],[116,18,74,-0.5220988970249891],[116,18,75,-0.5210578367114067],[116,18,76,-0.5203675851225853],[116,18,77,-0.5198098700493574],[116,18,78,-0.5188276823610067],[116,18,79,-0.5173675315454602],[116,19,64,-0.5358160398900509],[116,19,65,-0.5347721707075834],[116,19,66,-0.5331818107515574],[116,19,67,-0.5313086658716202],[116,19,68,-0.5296951904892921],[116,19,69,-0.5284427274018526],[116,19,70,-0.5275341626256704],[116,19,71,-0.5264874286949635],[116,19,72,-0.5250251665711403],[116,19,73,-0.5234626978635788],[116,19,74,-0.5220988970249891],[116,19,75,-0.5210578367114067],[116,19,76,-0.5203675851225853],[116,19,77,-0.5198098700493574],[116,19,78,-0.5188276823610067],[116,19,79,-0.5173675315454602],[116,20,64,-0.5358160398900509],[116,20,65,-0.5347721707075834],[116,20,66,-0.5331818107515574],[116,20,67,-0.5313086658716202],[116,20,68,-0.5296951904892921],[116,20,69,-0.5284427274018526],[116,20,70,-0.5275341626256704],[116,20,71,-0.5264874286949635],[116,20,72,-0.5250251665711403],[116,20,73,-0.5234626978635788],[116,20,74,-0.5220988970249891],[116,20,75,-0.5210578367114067],[116,20,76,-0.5203675851225853],[116,20,77,-0.5198098700493574],[116,20,78,-0.5188276823610067],[116,20,79,-0.5173675315454602],[116,21,64,-0.5358160398900509],[116,21,65,-0.5347721707075834],[116,21,66,-0.5331818107515574],[116,21,67,-0.5313086658716202],[116,21,68,-0.5296951904892921],[116,21,69,-0.5284427274018526],[116,21,70,-0.5275341626256704],[116,21,71,-0.5264874286949635],[116,21,72,-0.5250251665711403],[116,21,73,-0.5234626978635788],[116,21,74,-0.5220988970249891],[116,21,75,-0.5210578367114067],[116,21,76,-0.5203675851225853],[116,21,77,-0.5198098700493574],[116,21,78,-0.5188276823610067],[116,21,79,-0.5173675315454602],[116,22,64,-0.5358160398900509],[116,22,65,-0.5347721707075834],[116,22,66,-0.5331818107515574],[116,22,67,-0.5313086658716202],[116,22,68,-0.5296951904892921],[116,22,69,-0.5284427274018526],[116,22,70,-0.5275341626256704],[116,22,71,-0.5264874286949635],[116,22,72,-0.5250251665711403],[116,22,73,-0.5234626978635788],[116,22,74,-0.5220988970249891],[116,22,75,-0.5210578367114067],[116,22,76,-0.5203675851225853],[116,22,77,-0.5198098700493574],[116,22,78,-0.5188276823610067],[116,22,79,-0.5173675315454602],[116,23,64,-0.5358160398900509],[116,23,65,-0.5347721707075834],[116,23,66,-0.5331818107515574],[116,23,67,-0.5313086658716202],[116,23,68,-0.5296951904892921],[116,23,69,-0.5284427274018526],[116,23,70,-0.5275341626256704],[116,23,71,-0.5264874286949635],[116,23,72,-0.5250251665711403],[116,23,73,-0.5234626978635788],[116,23,74,-0.5220988970249891],[116,23,75,-0.5210578367114067],[116,23,76,-0.5203675851225853],[116,23,77,-0.5198098700493574],[116,23,78,-0.5188276823610067],[116,23,79,-0.5173675315454602],[116,24,64,-0.5358160398900509],[116,24,65,-0.5347721707075834],[116,24,66,-0.5331818107515574],[116,24,67,-0.5313086658716202],[116,24,68,-0.5296951904892921],[116,24,69,-0.5284427274018526],[116,24,70,-0.5275341626256704],[116,24,71,-0.5264874286949635],[116,24,72,-0.5250251665711403],[116,24,73,-0.5234626978635788],[116,24,74,-0.5220988970249891],[116,24,75,-0.5210578367114067],[116,24,76,-0.5203675851225853],[116,24,77,-0.5198098700493574],[116,24,78,-0.5188276823610067],[116,24,79,-0.5173675315454602],[116,25,64,-0.5358160398900509],[116,25,65,-0.5347721707075834],[116,25,66,-0.5331818107515574],[116,25,67,-0.5313086658716202],[116,25,68,-0.5296951904892921],[116,25,69,-0.5284427274018526],[116,25,70,-0.5275341626256704],[116,25,71,-0.5264874286949635],[116,25,72,-0.5250251665711403],[116,25,73,-0.5234626978635788],[116,25,74,-0.5220988970249891],[116,25,75,-0.5210578367114067],[116,25,76,-0.5203675851225853],[116,25,77,-0.5198098700493574],[116,25,78,-0.5188276823610067],[116,25,79,-0.5173675315454602],[116,26,64,-0.5358160398900509],[116,26,65,-0.5347721707075834],[116,26,66,-0.5331818107515574],[116,26,67,-0.5313086658716202],[116,26,68,-0.5296951904892921],[116,26,69,-0.5284427274018526],[116,26,70,-0.5275341626256704],[116,26,71,-0.5264874286949635],[116,26,72,-0.5250251665711403],[116,26,73,-0.5234626978635788],[116,26,74,-0.5220988970249891],[116,26,75,-0.5210578367114067],[116,26,76,-0.5203675851225853],[116,26,77,-0.5198098700493574],[116,26,78,-0.5188276823610067],[116,26,79,-0.5173675315454602],[116,27,64,-0.5358160398900509],[116,27,65,-0.5347721707075834],[116,27,66,-0.5331818107515574],[116,27,67,-0.5313086658716202],[116,27,68,-0.5296951904892921],[116,27,69,-0.5284427274018526],[116,27,70,-0.5275341626256704],[116,27,71,-0.5264874286949635],[116,27,72,-0.5250251665711403],[116,27,73,-0.5234626978635788],[116,27,74,-0.5220988970249891],[116,27,75,-0.5210578367114067],[116,27,76,-0.5203675851225853],[116,27,77,-0.5198098700493574],[116,27,78,-0.5188276823610067],[116,27,79,-0.5173675315454602],[116,28,64,-0.5358160398900509],[116,28,65,-0.5347721707075834],[116,28,66,-0.5331818107515574],[116,28,67,-0.5313086658716202],[116,28,68,-0.5296951904892921],[116,28,69,-0.5284427274018526],[116,28,70,-0.5275341626256704],[116,28,71,-0.5264874286949635],[116,28,72,-0.5250251665711403],[116,28,73,-0.5234626978635788],[116,28,74,-0.5220988970249891],[116,28,75,-0.5210578367114067],[116,28,76,-0.5203675851225853],[116,28,77,-0.5198098700493574],[116,28,78,-0.5188276823610067],[116,28,79,-0.5173675315454602],[116,29,64,-0.5358160398900509],[116,29,65,-0.5347721707075834],[116,29,66,-0.5331818107515574],[116,29,67,-0.5313086658716202],[116,29,68,-0.5296951904892921],[116,29,69,-0.5284427274018526],[116,29,70,-0.5275341626256704],[116,29,71,-0.5264874286949635],[116,29,72,-0.5250251665711403],[116,29,73,-0.5234626978635788],[116,29,74,-0.5220988970249891],[116,29,75,-0.5210578367114067],[116,29,76,-0.5203675851225853],[116,29,77,-0.5198098700493574],[116,29,78,-0.5188276823610067],[116,29,79,-0.5173675315454602],[116,30,64,-0.5358160398900509],[116,30,65,-0.5347721707075834],[116,30,66,-0.5331818107515574],[116,30,67,-0.5313086658716202],[116,30,68,-0.5296951904892921],[116,30,69,-0.5284427274018526],[116,30,70,-0.5275341626256704],[116,30,71,-0.5264874286949635],[116,30,72,-0.5250251665711403],[116,30,73,-0.5234626978635788],[116,30,74,-0.5220988970249891],[116,30,75,-0.5210578367114067],[116,30,76,-0.5203675851225853],[116,30,77,-0.5198098700493574],[116,30,78,-0.5188276823610067],[116,30,79,-0.5173675315454602],[116,31,64,-0.5358160398900509],[116,31,65,-0.5347721707075834],[116,31,66,-0.5331818107515574],[116,31,67,-0.5313086658716202],[116,31,68,-0.5296951904892921],[116,31,69,-0.5284427274018526],[116,31,70,-0.5275341626256704],[116,31,71,-0.5264874286949635],[116,31,72,-0.5250251665711403],[116,31,73,-0.5234626978635788],[116,31,74,-0.5220988970249891],[116,31,75,-0.5210578367114067],[116,31,76,-0.5203675851225853],[116,31,77,-0.5198098700493574],[116,31,78,-0.5188276823610067],[116,31,79,-0.5173675315454602],[116,32,64,-0.5358160398900509],[116,32,65,-0.5347721707075834],[116,32,66,-0.5331818107515574],[116,32,67,-0.5313086658716202],[116,32,68,-0.5296951904892921],[116,32,69,-0.5284427274018526],[116,32,70,-0.5275341626256704],[116,32,71,-0.5264874286949635],[116,32,72,-0.5250251665711403],[116,32,73,-0.5234626978635788],[116,32,74,-0.5220988970249891],[116,32,75,-0.5210578367114067],[116,32,76,-0.5203675851225853],[116,32,77,-0.5198098700493574],[116,32,78,-0.5188276823610067],[116,32,79,-0.5173675315454602],[116,33,64,-0.5358160398900509],[116,33,65,-0.5347721707075834],[116,33,66,-0.5331818107515574],[116,33,67,-0.5313086658716202],[116,33,68,-0.5296951904892921],[116,33,69,-0.5284427274018526],[116,33,70,-0.5275341626256704],[116,33,71,-0.5264874286949635],[116,33,72,-0.5250251665711403],[116,33,73,-0.5234626978635788],[116,33,74,-0.5220988970249891],[116,33,75,-0.5210578367114067],[116,33,76,-0.5203675851225853],[116,33,77,-0.5198098700493574],[116,33,78,-0.5188276823610067],[116,33,79,-0.5173675315454602],[116,34,64,-0.5358160398900509],[116,34,65,-0.5347721707075834],[116,34,66,-0.5331818107515574],[116,34,67,-0.5313086658716202],[116,34,68,-0.5296951904892921],[116,34,69,-0.5284427274018526],[116,34,70,-0.5275341626256704],[116,34,71,-0.5264874286949635],[116,34,72,-0.5250251665711403],[116,34,73,-0.5234626978635788],[116,34,74,-0.5220988970249891],[116,34,75,-0.5210578367114067],[116,34,76,-0.5203675851225853],[116,34,77,-0.5198098700493574],[116,34,78,-0.5188276823610067],[116,34,79,-0.5173675315454602],[116,35,64,-0.5358160398900509],[116,35,65,-0.5347721707075834],[116,35,66,-0.5331818107515574],[116,35,67,-0.5313086658716202],[116,35,68,-0.5296951904892921],[116,35,69,-0.5284427274018526],[116,35,70,-0.5275341626256704],[116,35,71,-0.5264874286949635],[116,35,72,-0.5250251665711403],[116,35,73,-0.5234626978635788],[116,35,74,-0.5220988970249891],[116,35,75,-0.5210578367114067],[116,35,76,-0.5203675851225853],[116,35,77,-0.5198098700493574],[116,35,78,-0.5188276823610067],[116,35,79,-0.5173675315454602],[116,36,64,-0.5358160398900509],[116,36,65,-0.5347721707075834],[116,36,66,-0.5331818107515574],[116,36,67,-0.5313086658716202],[116,36,68,-0.5296951904892921],[116,36,69,-0.5284427274018526],[116,36,70,-0.5275341626256704],[116,36,71,-0.5264874286949635],[116,36,72,-0.5250251665711403],[116,36,73,-0.5234626978635788],[116,36,74,-0.5220988970249891],[116,36,75,-0.5210578367114067],[116,36,76,-0.5203675851225853],[116,36,77,-0.5198098700493574],[116,36,78,-0.5188276823610067],[116,36,79,-0.5173675315454602],[116,37,64,-0.5358160398900509],[116,37,65,-0.5347721707075834],[116,37,66,-0.5331818107515574],[116,37,67,-0.5313086658716202],[116,37,68,-0.5296951904892921],[116,37,69,-0.5284427274018526],[116,37,70,-0.5275341626256704],[116,37,71,-0.5264874286949635],[116,37,72,-0.5250251665711403],[116,37,73,-0.5234626978635788],[116,37,74,-0.5220988970249891],[116,37,75,-0.5210578367114067],[116,37,76,-0.5203675851225853],[116,37,77,-0.5198098700493574],[116,37,78,-0.5188276823610067],[116,37,79,-0.5173675315454602],[116,38,64,-0.5358160398900509],[116,38,65,-0.5347721707075834],[116,38,66,-0.5331818107515574],[116,38,67,-0.5313086658716202],[116,38,68,-0.5296951904892921],[116,38,69,-0.5284427274018526],[116,38,70,-0.5275341626256704],[116,38,71,-0.5264874286949635],[116,38,72,-0.5250251665711403],[116,38,73,-0.5234626978635788],[116,38,74,-0.5220988970249891],[116,38,75,-0.5210578367114067],[116,38,76,-0.5203675851225853],[116,38,77,-0.5198098700493574],[116,38,78,-0.5188276823610067],[116,38,79,-0.5173675315454602],[116,39,64,-0.5358160398900509],[116,39,65,-0.5347721707075834],[116,39,66,-0.5331818107515574],[116,39,67,-0.5313086658716202],[116,39,68,-0.5296951904892921],[116,39,69,-0.5284427274018526],[116,39,70,-0.5275341626256704],[116,39,71,-0.5264874286949635],[116,39,72,-0.5250251665711403],[116,39,73,-0.5234626978635788],[116,39,74,-0.5220988970249891],[116,39,75,-0.5210578367114067],[116,39,76,-0.5203675851225853],[116,39,77,-0.5198098700493574],[116,39,78,-0.5188276823610067],[116,39,79,-0.5173675315454602],[116,40,64,-0.5358160398900509],[116,40,65,-0.5347721707075834],[116,40,66,-0.5331818107515574],[116,40,67,-0.5313086658716202],[116,40,68,-0.5296951904892921],[116,40,69,-0.5284427274018526],[116,40,70,-0.5275341626256704],[116,40,71,-0.5264874286949635],[116,40,72,-0.5250251665711403],[116,40,73,-0.5234626978635788],[116,40,74,-0.5220988970249891],[116,40,75,-0.5210578367114067],[116,40,76,-0.5203675851225853],[116,40,77,-0.5198098700493574],[116,40,78,-0.5188276823610067],[116,40,79,-0.5173675315454602],[116,41,64,-0.5358160398900509],[116,41,65,-0.5347721707075834],[116,41,66,-0.5331818107515574],[116,41,67,-0.5313086658716202],[116,41,68,-0.5296951904892921],[116,41,69,-0.5284427274018526],[116,41,70,-0.5275341626256704],[116,41,71,-0.5264874286949635],[116,41,72,-0.5250251665711403],[116,41,73,-0.5234626978635788],[116,41,74,-0.5220988970249891],[116,41,75,-0.5210578367114067],[116,41,76,-0.5203675851225853],[116,41,77,-0.5198098700493574],[116,41,78,-0.5188276823610067],[116,41,79,-0.5173675315454602],[116,42,64,-0.5358160398900509],[116,42,65,-0.5347721707075834],[116,42,66,-0.5331818107515574],[116,42,67,-0.5313086658716202],[116,42,68,-0.5296951904892921],[116,42,69,-0.5284427274018526],[116,42,70,-0.5275341626256704],[116,42,71,-0.5264874286949635],[116,42,72,-0.5250251665711403],[116,42,73,-0.5234626978635788],[116,42,74,-0.5220988970249891],[116,42,75,-0.5210578367114067],[116,42,76,-0.5203675851225853],[116,42,77,-0.5198098700493574],[116,42,78,-0.5188276823610067],[116,42,79,-0.5173675315454602],[116,43,64,-0.5358160398900509],[116,43,65,-0.5347721707075834],[116,43,66,-0.5331818107515574],[116,43,67,-0.5313086658716202],[116,43,68,-0.5296951904892921],[116,43,69,-0.5284427274018526],[116,43,70,-0.5275341626256704],[116,43,71,-0.5264874286949635],[116,43,72,-0.5250251665711403],[116,43,73,-0.5234626978635788],[116,43,74,-0.5220988970249891],[116,43,75,-0.5210578367114067],[116,43,76,-0.5203675851225853],[116,43,77,-0.5198098700493574],[116,43,78,-0.5188276823610067],[116,43,79,-0.5173675315454602],[116,44,64,-0.5358160398900509],[116,44,65,-0.5347721707075834],[116,44,66,-0.5331818107515574],[116,44,67,-0.5313086658716202],[116,44,68,-0.5296951904892921],[116,44,69,-0.5284427274018526],[116,44,70,-0.5275341626256704],[116,44,71,-0.5264874286949635],[116,44,72,-0.5250251665711403],[116,44,73,-0.5234626978635788],[116,44,74,-0.5220988970249891],[116,44,75,-0.5210578367114067],[116,44,76,-0.5203675851225853],[116,44,77,-0.5198098700493574],[116,44,78,-0.5188276823610067],[116,44,79,-0.5173675315454602],[116,45,64,-0.5358160398900509],[116,45,65,-0.5347721707075834],[116,45,66,-0.5331818107515574],[116,45,67,-0.5313086658716202],[116,45,68,-0.5296951904892921],[116,45,69,-0.5284427274018526],[116,45,70,-0.5275341626256704],[116,45,71,-0.5264874286949635],[116,45,72,-0.5250251665711403],[116,45,73,-0.5234626978635788],[116,45,74,-0.5220988970249891],[116,45,75,-0.5210578367114067],[116,45,76,-0.5203675851225853],[116,45,77,-0.5198098700493574],[116,45,78,-0.5188276823610067],[116,45,79,-0.5173675315454602],[116,46,64,-0.5358160398900509],[116,46,65,-0.5347721707075834],[116,46,66,-0.5331818107515574],[116,46,67,-0.5313086658716202],[116,46,68,-0.5296951904892921],[116,46,69,-0.5284427274018526],[116,46,70,-0.5275341626256704],[116,46,71,-0.5264874286949635],[116,46,72,-0.5250251665711403],[116,46,73,-0.5234626978635788],[116,46,74,-0.5220988970249891],[116,46,75,-0.5210578367114067],[116,46,76,-0.5203675851225853],[116,46,77,-0.5198098700493574],[116,46,78,-0.5188276823610067],[116,46,79,-0.5173675315454602],[116,47,64,-0.5358160398900509],[116,47,65,-0.5347721707075834],[116,47,66,-0.5331818107515574],[116,47,67,-0.5313086658716202],[116,47,68,-0.5296951904892921],[116,47,69,-0.5284427274018526],[116,47,70,-0.5275341626256704],[116,47,71,-0.5264874286949635],[116,47,72,-0.5250251665711403],[116,47,73,-0.5234626978635788],[116,47,74,-0.5220988970249891],[116,47,75,-0.5210578367114067],[116,47,76,-0.5203675851225853],[116,47,77,-0.5198098700493574],[116,47,78,-0.5188276823610067],[116,47,79,-0.5173675315454602],[116,48,64,-0.5358160398900509],[116,48,65,-0.5347721707075834],[116,48,66,-0.5331818107515574],[116,48,67,-0.5313086658716202],[116,48,68,-0.5296951904892921],[116,48,69,-0.5284427274018526],[116,48,70,-0.5275341626256704],[116,48,71,-0.5264874286949635],[116,48,72,-0.5250251665711403],[116,48,73,-0.5234626978635788],[116,48,74,-0.5220988970249891],[116,48,75,-0.5210578367114067],[116,48,76,-0.5203675851225853],[116,48,77,-0.5198098700493574],[116,48,78,-0.5188276823610067],[116,48,79,-0.5173675315454602],[116,49,64,-0.5358160398900509],[116,49,65,-0.5347721707075834],[116,49,66,-0.5331818107515574],[116,49,67,-0.5313086658716202],[116,49,68,-0.5296951904892921],[116,49,69,-0.5284427274018526],[116,49,70,-0.5275341626256704],[116,49,71,-0.5264874286949635],[116,49,72,-0.5250251665711403],[116,49,73,-0.5234626978635788],[116,49,74,-0.5220988970249891],[116,49,75,-0.5210578367114067],[116,49,76,-0.5203675851225853],[116,49,77,-0.5198098700493574],[116,49,78,-0.5188276823610067],[116,49,79,-0.5173675315454602],[116,50,64,-0.5358160398900509],[116,50,65,-0.5347721707075834],[116,50,66,-0.5331818107515574],[116,50,67,-0.5313086658716202],[116,50,68,-0.5296951904892921],[116,50,69,-0.5284427274018526],[116,50,70,-0.5275341626256704],[116,50,71,-0.5264874286949635],[116,50,72,-0.5250251665711403],[116,50,73,-0.5234626978635788],[116,50,74,-0.5220988970249891],[116,50,75,-0.5210578367114067],[116,50,76,-0.5203675851225853],[116,50,77,-0.5198098700493574],[116,50,78,-0.5188276823610067],[116,50,79,-0.5173675315454602],[116,51,64,-0.5358160398900509],[116,51,65,-0.5347721707075834],[116,51,66,-0.5331818107515574],[116,51,67,-0.5313086658716202],[116,51,68,-0.5296951904892921],[116,51,69,-0.5284427274018526],[116,51,70,-0.5275341626256704],[116,51,71,-0.5264874286949635],[116,51,72,-0.5250251665711403],[116,51,73,-0.5234626978635788],[116,51,74,-0.5220988970249891],[116,51,75,-0.5210578367114067],[116,51,76,-0.5203675851225853],[116,51,77,-0.5198098700493574],[116,51,78,-0.5188276823610067],[116,51,79,-0.5173675315454602],[116,52,64,-0.5358160398900509],[116,52,65,-0.5347721707075834],[116,52,66,-0.5331818107515574],[116,52,67,-0.5313086658716202],[116,52,68,-0.5296951904892921],[116,52,69,-0.5284427274018526],[116,52,70,-0.5275341626256704],[116,52,71,-0.5264874286949635],[116,52,72,-0.5250251665711403],[116,52,73,-0.5234626978635788],[116,52,74,-0.5220988970249891],[116,52,75,-0.5210578367114067],[116,52,76,-0.5203675851225853],[116,52,77,-0.5198098700493574],[116,52,78,-0.5188276823610067],[116,52,79,-0.5173675315454602],[116,53,64,-0.5358160398900509],[116,53,65,-0.5347721707075834],[116,53,66,-0.5331818107515574],[116,53,67,-0.5313086658716202],[116,53,68,-0.5296951904892921],[116,53,69,-0.5284427274018526],[116,53,70,-0.5275341626256704],[116,53,71,-0.5264874286949635],[116,53,72,-0.5250251665711403],[116,53,73,-0.5234626978635788],[116,53,74,-0.5220988970249891],[116,53,75,-0.5210578367114067],[116,53,76,-0.5203675851225853],[116,53,77,-0.5198098700493574],[116,53,78,-0.5188276823610067],[116,53,79,-0.5173675315454602],[116,54,64,-0.5358160398900509],[116,54,65,-0.5347721707075834],[116,54,66,-0.5331818107515574],[116,54,67,-0.5313086658716202],[116,54,68,-0.5296951904892921],[116,54,69,-0.5284427274018526],[116,54,70,-0.5275341626256704],[116,54,71,-0.5264874286949635],[116,54,72,-0.5250251665711403],[116,54,73,-0.5234626978635788],[116,54,74,-0.5220988970249891],[116,54,75,-0.5210578367114067],[116,54,76,-0.5203675851225853],[116,54,77,-0.5198098700493574],[116,54,78,-0.5188276823610067],[116,54,79,-0.5173675315454602],[116,55,64,-0.5358160398900509],[116,55,65,-0.5347721707075834],[116,55,66,-0.5331818107515574],[116,55,67,-0.5313086658716202],[116,55,68,-0.5296951904892921],[116,55,69,-0.5284427274018526],[116,55,70,-0.5275341626256704],[116,55,71,-0.5264874286949635],[116,55,72,-0.5250251665711403],[116,55,73,-0.5234626978635788],[116,55,74,-0.5220988970249891],[116,55,75,-0.5210578367114067],[116,55,76,-0.5203675851225853],[116,55,77,-0.5198098700493574],[116,55,78,-0.5188276823610067],[116,55,79,-0.5173675315454602],[116,56,64,-0.5358160398900509],[116,56,65,-0.5347721707075834],[116,56,66,-0.5331818107515574],[116,56,67,-0.5313086658716202],[116,56,68,-0.5296951904892921],[116,56,69,-0.5284427274018526],[116,56,70,-0.5275341626256704],[116,56,71,-0.5264874286949635],[116,56,72,-0.5250251665711403],[116,56,73,-0.5234626978635788],[116,56,74,-0.5220988970249891],[116,56,75,-0.5210578367114067],[116,56,76,-0.5203675851225853],[116,56,77,-0.5198098700493574],[116,56,78,-0.5188276823610067],[116,56,79,-0.5173675315454602],[116,57,64,-0.5358160398900509],[116,57,65,-0.5347721707075834],[116,57,66,-0.5331818107515574],[116,57,67,-0.5313086658716202],[116,57,68,-0.5296951904892921],[116,57,69,-0.5284427274018526],[116,57,70,-0.5275341626256704],[116,57,71,-0.5264874286949635],[116,57,72,-0.5250251665711403],[116,57,73,-0.5234626978635788],[116,57,74,-0.5220988970249891],[116,57,75,-0.5210578367114067],[116,57,76,-0.5203675851225853],[116,57,77,-0.5198098700493574],[116,57,78,-0.5188276823610067],[116,57,79,-0.5173675315454602],[116,58,64,-0.5358160398900509],[116,58,65,-0.5347721707075834],[116,58,66,-0.5331818107515574],[116,58,67,-0.5313086658716202],[116,58,68,-0.5296951904892921],[116,58,69,-0.5284427274018526],[116,58,70,-0.5275341626256704],[116,58,71,-0.5264874286949635],[116,58,72,-0.5250251665711403],[116,58,73,-0.5234626978635788],[116,58,74,-0.5220988970249891],[116,58,75,-0.5210578367114067],[116,58,76,-0.5203675851225853],[116,58,77,-0.5198098700493574],[116,58,78,-0.5188276823610067],[116,58,79,-0.5173675315454602],[116,59,64,-0.5358160398900509],[116,59,65,-0.5347721707075834],[116,59,66,-0.5331818107515574],[116,59,67,-0.5313086658716202],[116,59,68,-0.5296951904892921],[116,59,69,-0.5284427274018526],[116,59,70,-0.5275341626256704],[116,59,71,-0.5264874286949635],[116,59,72,-0.5250251665711403],[116,59,73,-0.5234626978635788],[116,59,74,-0.5220988970249891],[116,59,75,-0.5210578367114067],[116,59,76,-0.5203675851225853],[116,59,77,-0.5198098700493574],[116,59,78,-0.5188276823610067],[116,59,79,-0.5173675315454602],[116,60,64,-0.5358160398900509],[116,60,65,-0.5347721707075834],[116,60,66,-0.5331818107515574],[116,60,67,-0.5313086658716202],[116,60,68,-0.5296951904892921],[116,60,69,-0.5284427274018526],[116,60,70,-0.5275341626256704],[116,60,71,-0.5264874286949635],[116,60,72,-0.5250251665711403],[116,60,73,-0.5234626978635788],[116,60,74,-0.5220988970249891],[116,60,75,-0.5210578367114067],[116,60,76,-0.5203675851225853],[116,60,77,-0.5198098700493574],[116,60,78,-0.5188276823610067],[116,60,79,-0.5173675315454602],[116,61,64,-0.5358160398900509],[116,61,65,-0.5347721707075834],[116,61,66,-0.5331818107515574],[116,61,67,-0.5313086658716202],[116,61,68,-0.5296951904892921],[116,61,69,-0.5284427274018526],[116,61,70,-0.5275341626256704],[116,61,71,-0.5264874286949635],[116,61,72,-0.5250251665711403],[116,61,73,-0.5234626978635788],[116,61,74,-0.5220988970249891],[116,61,75,-0.5210578367114067],[116,61,76,-0.5203675851225853],[116,61,77,-0.5198098700493574],[116,61,78,-0.5188276823610067],[116,61,79,-0.5173675315454602],[116,62,64,-0.5358160398900509],[116,62,65,-0.5347721707075834],[116,62,66,-0.5331818107515574],[116,62,67,-0.5313086658716202],[116,62,68,-0.5296951904892921],[116,62,69,-0.5284427274018526],[116,62,70,-0.5275341626256704],[116,62,71,-0.5264874286949635],[116,62,72,-0.5250251665711403],[116,62,73,-0.5234626978635788],[116,62,74,-0.5220988970249891],[116,62,75,-0.5210578367114067],[116,62,76,-0.5203675851225853],[116,62,77,-0.5198098700493574],[116,62,78,-0.5188276823610067],[116,62,79,-0.5173675315454602],[116,63,64,-0.5358160398900509],[116,63,65,-0.5347721707075834],[116,63,66,-0.5331818107515574],[116,63,67,-0.5313086658716202],[116,63,68,-0.5296951904892921],[116,63,69,-0.5284427274018526],[116,63,70,-0.5275341626256704],[116,63,71,-0.5264874286949635],[116,63,72,-0.5250251665711403],[116,63,73,-0.5234626978635788],[116,63,74,-0.5220988970249891],[116,63,75,-0.5210578367114067],[116,63,76,-0.5203675851225853],[116,63,77,-0.5198098700493574],[116,63,78,-0.5188276823610067],[116,63,79,-0.5173675315454602],[116,64,64,-0.5358160398900509],[116,64,65,-0.5347721707075834],[116,64,66,-0.5331818107515574],[116,64,67,-0.5313086658716202],[116,64,68,-0.5296951904892921],[116,64,69,-0.5284427274018526],[116,64,70,-0.5275341626256704],[116,64,71,-0.5264874286949635],[116,64,72,-0.5250251665711403],[116,64,73,-0.5234626978635788],[116,64,74,-0.5220988970249891],[116,64,75,-0.5210578367114067],[116,64,76,-0.5203675851225853],[116,64,77,-0.5198098700493574],[116,64,78,-0.5188276823610067],[116,64,79,-0.5173675315454602],[116,65,64,-0.5358160398900509],[116,65,65,-0.5347721707075834],[116,65,66,-0.5331818107515574],[116,65,67,-0.5313086658716202],[116,65,68,-0.5296951904892921],[116,65,69,-0.5284427274018526],[116,65,70,-0.5275341626256704],[116,65,71,-0.5264874286949635],[116,65,72,-0.5250251665711403],[116,65,73,-0.5234626978635788],[116,65,74,-0.5220988970249891],[116,65,75,-0.5210578367114067],[116,65,76,-0.5203675851225853],[116,65,77,-0.5198098700493574],[116,65,78,-0.5188276823610067],[116,65,79,-0.5173675315454602],[116,66,64,-0.5358160398900509],[116,66,65,-0.5347721707075834],[116,66,66,-0.5331818107515574],[116,66,67,-0.5313086658716202],[116,66,68,-0.5296951904892921],[116,66,69,-0.5284427274018526],[116,66,70,-0.5275341626256704],[116,66,71,-0.5264874286949635],[116,66,72,-0.5250251665711403],[116,66,73,-0.5234626978635788],[116,66,74,-0.5220988970249891],[116,66,75,-0.5210578367114067],[116,66,76,-0.5203675851225853],[116,66,77,-0.5198098700493574],[116,66,78,-0.5188276823610067],[116,66,79,-0.5173675315454602],[116,67,64,-0.5358160398900509],[116,67,65,-0.5347721707075834],[116,67,66,-0.5331818107515574],[116,67,67,-0.5313086658716202],[116,67,68,-0.5296951904892921],[116,67,69,-0.5284427274018526],[116,67,70,-0.5275341626256704],[116,67,71,-0.5264874286949635],[116,67,72,-0.5250251665711403],[116,67,73,-0.5234626978635788],[116,67,74,-0.5220988970249891],[116,67,75,-0.5210578367114067],[116,67,76,-0.5203675851225853],[116,67,77,-0.5198098700493574],[116,67,78,-0.5188276823610067],[116,67,79,-0.5173675315454602],[116,68,64,-0.5358160398900509],[116,68,65,-0.5347721707075834],[116,68,66,-0.5331818107515574],[116,68,67,-0.5313086658716202],[116,68,68,-0.5296951904892921],[116,68,69,-0.5284427274018526],[116,68,70,-0.5275341626256704],[116,68,71,-0.5264874286949635],[116,68,72,-0.5250251665711403],[116,68,73,-0.5234626978635788],[116,68,74,-0.5220988970249891],[116,68,75,-0.5210578367114067],[116,68,76,-0.5203675851225853],[116,68,77,-0.5198098700493574],[116,68,78,-0.5188276823610067],[116,68,79,-0.5173675315454602],[116,69,64,-0.5358160398900509],[116,69,65,-0.5347721707075834],[116,69,66,-0.5331818107515574],[116,69,67,-0.5313086658716202],[116,69,68,-0.5296951904892921],[116,69,69,-0.5284427274018526],[116,69,70,-0.5275341626256704],[116,69,71,-0.5264874286949635],[116,69,72,-0.5250251665711403],[116,69,73,-0.5234626978635788],[116,69,74,-0.5220988970249891],[116,69,75,-0.5210578367114067],[116,69,76,-0.5203675851225853],[116,69,77,-0.5198098700493574],[116,69,78,-0.5188276823610067],[116,69,79,-0.5173675315454602],[116,70,64,-0.5358160398900509],[116,70,65,-0.5347721707075834],[116,70,66,-0.5331818107515574],[116,70,67,-0.5313086658716202],[116,70,68,-0.5296951904892921],[116,70,69,-0.5284427274018526],[116,70,70,-0.5275341626256704],[116,70,71,-0.5264874286949635],[116,70,72,-0.5250251665711403],[116,70,73,-0.5234626978635788],[116,70,74,-0.5220988970249891],[116,70,75,-0.5210578367114067],[116,70,76,-0.5203675851225853],[116,70,77,-0.5198098700493574],[116,70,78,-0.5188276823610067],[116,70,79,-0.5173675315454602],[116,71,64,-0.5358160398900509],[116,71,65,-0.5347721707075834],[116,71,66,-0.5331818107515574],[116,71,67,-0.5313086658716202],[116,71,68,-0.5296951904892921],[116,71,69,-0.5284427274018526],[116,71,70,-0.5275341626256704],[116,71,71,-0.5264874286949635],[116,71,72,-0.5250251665711403],[116,71,73,-0.5234626978635788],[116,71,74,-0.5220988970249891],[116,71,75,-0.5210578367114067],[116,71,76,-0.5203675851225853],[116,71,77,-0.5198098700493574],[116,71,78,-0.5188276823610067],[116,71,79,-0.5173675315454602],[116,72,64,-0.5358160398900509],[116,72,65,-0.5347721707075834],[116,72,66,-0.5331818107515574],[116,72,67,-0.5313086658716202],[116,72,68,-0.5296951904892921],[116,72,69,-0.5284427274018526],[116,72,70,-0.5275341626256704],[116,72,71,-0.5264874286949635],[116,72,72,-0.5250251665711403],[116,72,73,-0.5234626978635788],[116,72,74,-0.5220988970249891],[116,72,75,-0.5210578367114067],[116,72,76,-0.5203675851225853],[116,72,77,-0.5198098700493574],[116,72,78,-0.5188276823610067],[116,72,79,-0.5173675315454602],[116,73,64,-0.5358160398900509],[116,73,65,-0.5347721707075834],[116,73,66,-0.5331818107515574],[116,73,67,-0.5313086658716202],[116,73,68,-0.5296951904892921],[116,73,69,-0.5284427274018526],[116,73,70,-0.5275341626256704],[116,73,71,-0.5264874286949635],[116,73,72,-0.5250251665711403],[116,73,73,-0.5234626978635788],[116,73,74,-0.5220988970249891],[116,73,75,-0.5210578367114067],[116,73,76,-0.5203675851225853],[116,73,77,-0.5198098700493574],[116,73,78,-0.5188276823610067],[116,73,79,-0.5173675315454602],[116,74,64,-0.5358160398900509],[116,74,65,-0.5347721707075834],[116,74,66,-0.5331818107515574],[116,74,67,-0.5313086658716202],[116,74,68,-0.5296951904892921],[116,74,69,-0.5284427274018526],[116,74,70,-0.5275341626256704],[116,74,71,-0.5264874286949635],[116,74,72,-0.5250251665711403],[116,74,73,-0.5234626978635788],[116,74,74,-0.5220988970249891],[116,74,75,-0.5210578367114067],[116,74,76,-0.5203675851225853],[116,74,77,-0.5198098700493574],[116,74,78,-0.5188276823610067],[116,74,79,-0.5173675315454602],[116,75,64,-0.5358160398900509],[116,75,65,-0.5347721707075834],[116,75,66,-0.5331818107515574],[116,75,67,-0.5313086658716202],[116,75,68,-0.5296951904892921],[116,75,69,-0.5284427274018526],[116,75,70,-0.5275341626256704],[116,75,71,-0.5264874286949635],[116,75,72,-0.5250251665711403],[116,75,73,-0.5234626978635788],[116,75,74,-0.5220988970249891],[116,75,75,-0.5210578367114067],[116,75,76,-0.5203675851225853],[116,75,77,-0.5198098700493574],[116,75,78,-0.5188276823610067],[116,75,79,-0.5173675315454602],[116,76,64,-0.5358160398900509],[116,76,65,-0.5347721707075834],[116,76,66,-0.5331818107515574],[116,76,67,-0.5313086658716202],[116,76,68,-0.5296951904892921],[116,76,69,-0.5284427274018526],[116,76,70,-0.5275341626256704],[116,76,71,-0.5264874286949635],[116,76,72,-0.5250251665711403],[116,76,73,-0.5234626978635788],[116,76,74,-0.5220988970249891],[116,76,75,-0.5210578367114067],[116,76,76,-0.5203675851225853],[116,76,77,-0.5198098700493574],[116,76,78,-0.5188276823610067],[116,76,79,-0.5173675315454602],[116,77,64,-0.5358160398900509],[116,77,65,-0.5347721707075834],[116,77,66,-0.5331818107515574],[116,77,67,-0.5313086658716202],[116,77,68,-0.5296951904892921],[116,77,69,-0.5284427274018526],[116,77,70,-0.5275341626256704],[116,77,71,-0.5264874286949635],[116,77,72,-0.5250251665711403],[116,77,73,-0.5234626978635788],[116,77,74,-0.5220988970249891],[116,77,75,-0.5210578367114067],[116,77,76,-0.5203675851225853],[116,77,77,-0.5198098700493574],[116,77,78,-0.5188276823610067],[116,77,79,-0.5173675315454602],[116,78,64,-0.5358160398900509],[116,78,65,-0.5347721707075834],[116,78,66,-0.5331818107515574],[116,78,67,-0.5313086658716202],[116,78,68,-0.5296951904892921],[116,78,69,-0.5284427274018526],[116,78,70,-0.5275341626256704],[116,78,71,-0.5264874286949635],[116,78,72,-0.5250251665711403],[116,78,73,-0.5234626978635788],[116,78,74,-0.5220988970249891],[116,78,75,-0.5210578367114067],[116,78,76,-0.5203675851225853],[116,78,77,-0.5198098700493574],[116,78,78,-0.5188276823610067],[116,78,79,-0.5173675315454602],[116,79,64,-0.5358160398900509],[116,79,65,-0.5347721707075834],[116,79,66,-0.5331818107515574],[116,79,67,-0.5313086658716202],[116,79,68,-0.5296951904892921],[116,79,69,-0.5284427274018526],[116,79,70,-0.5275341626256704],[116,79,71,-0.5264874286949635],[116,79,72,-0.5250251665711403],[116,79,73,-0.5234626978635788],[116,79,74,-0.5220988970249891],[116,79,75,-0.5210578367114067],[116,79,76,-0.5203675851225853],[116,79,77,-0.5198098700493574],[116,79,78,-0.5188276823610067],[116,79,79,-0.5173675315454602],[116,80,64,-0.5358160398900509],[116,80,65,-0.5347721707075834],[116,80,66,-0.5331818107515574],[116,80,67,-0.5313086658716202],[116,80,68,-0.5296951904892921],[116,80,69,-0.5284427274018526],[116,80,70,-0.5275341626256704],[116,80,71,-0.5264874286949635],[116,80,72,-0.5250251665711403],[116,80,73,-0.5234626978635788],[116,80,74,-0.5220988970249891],[116,80,75,-0.5210578367114067],[116,80,76,-0.5203675851225853],[116,80,77,-0.5198098700493574],[116,80,78,-0.5188276823610067],[116,80,79,-0.5173675315454602],[116,81,64,-0.5358160398900509],[116,81,65,-0.5347721707075834],[116,81,66,-0.5331818107515574],[116,81,67,-0.5313086658716202],[116,81,68,-0.5296951904892921],[116,81,69,-0.5284427274018526],[116,81,70,-0.5275341626256704],[116,81,71,-0.5264874286949635],[116,81,72,-0.5250251665711403],[116,81,73,-0.5234626978635788],[116,81,74,-0.5220988970249891],[116,81,75,-0.5210578367114067],[116,81,76,-0.5203675851225853],[116,81,77,-0.5198098700493574],[116,81,78,-0.5188276823610067],[116,81,79,-0.5173675315454602],[116,82,64,-0.5358160398900509],[116,82,65,-0.5347721707075834],[116,82,66,-0.5331818107515574],[116,82,67,-0.5313086658716202],[116,82,68,-0.5296951904892921],[116,82,69,-0.5284427274018526],[116,82,70,-0.5275341626256704],[116,82,71,-0.5264874286949635],[116,82,72,-0.5250251665711403],[116,82,73,-0.5234626978635788],[116,82,74,-0.5220988970249891],[116,82,75,-0.5210578367114067],[116,82,76,-0.5203675851225853],[116,82,77,-0.5198098700493574],[116,82,78,-0.5188276823610067],[116,82,79,-0.5173675315454602],[116,83,64,-0.5358160398900509],[116,83,65,-0.5347721707075834],[116,83,66,-0.5331818107515574],[116,83,67,-0.5313086658716202],[116,83,68,-0.5296951904892921],[116,83,69,-0.5284427274018526],[116,83,70,-0.5275341626256704],[116,83,71,-0.5264874286949635],[116,83,72,-0.5250251665711403],[116,83,73,-0.5234626978635788],[116,83,74,-0.5220988970249891],[116,83,75,-0.5210578367114067],[116,83,76,-0.5203675851225853],[116,83,77,-0.5198098700493574],[116,83,78,-0.5188276823610067],[116,83,79,-0.5173675315454602],[116,84,64,-0.5358160398900509],[116,84,65,-0.5347721707075834],[116,84,66,-0.5331818107515574],[116,84,67,-0.5313086658716202],[116,84,68,-0.5296951904892921],[116,84,69,-0.5284427274018526],[116,84,70,-0.5275341626256704],[116,84,71,-0.5264874286949635],[116,84,72,-0.5250251665711403],[116,84,73,-0.5234626978635788],[116,84,74,-0.5220988970249891],[116,84,75,-0.5210578367114067],[116,84,76,-0.5203675851225853],[116,84,77,-0.5198098700493574],[116,84,78,-0.5188276823610067],[116,84,79,-0.5173675315454602],[116,85,64,-0.5358160398900509],[116,85,65,-0.5347721707075834],[116,85,66,-0.5331818107515574],[116,85,67,-0.5313086658716202],[116,85,68,-0.5296951904892921],[116,85,69,-0.5284427274018526],[116,85,70,-0.5275341626256704],[116,85,71,-0.5264874286949635],[116,85,72,-0.5250251665711403],[116,85,73,-0.5234626978635788],[116,85,74,-0.5220988970249891],[116,85,75,-0.5210578367114067],[116,85,76,-0.5203675851225853],[116,85,77,-0.5198098700493574],[116,85,78,-0.5188276823610067],[116,85,79,-0.5173675315454602],[116,86,64,-0.5358160398900509],[116,86,65,-0.5347721707075834],[116,86,66,-0.5331818107515574],[116,86,67,-0.5313086658716202],[116,86,68,-0.5296951904892921],[116,86,69,-0.5284427274018526],[116,86,70,-0.5275341626256704],[116,86,71,-0.5264874286949635],[116,86,72,-0.5250251665711403],[116,86,73,-0.5234626978635788],[116,86,74,-0.5220988970249891],[116,86,75,-0.5210578367114067],[116,86,76,-0.5203675851225853],[116,86,77,-0.5198098700493574],[116,86,78,-0.5188276823610067],[116,86,79,-0.5173675315454602],[116,87,64,-0.5358160398900509],[116,87,65,-0.5347721707075834],[116,87,66,-0.5331818107515574],[116,87,67,-0.5313086658716202],[116,87,68,-0.5296951904892921],[116,87,69,-0.5284427274018526],[116,87,70,-0.5275341626256704],[116,87,71,-0.5264874286949635],[116,87,72,-0.5250251665711403],[116,87,73,-0.5234626978635788],[116,87,74,-0.5220988970249891],[116,87,75,-0.5210578367114067],[116,87,76,-0.5203675851225853],[116,87,77,-0.5198098700493574],[116,87,78,-0.5188276823610067],[116,87,79,-0.5173675315454602],[116,88,64,-0.5358160398900509],[116,88,65,-0.5347721707075834],[116,88,66,-0.5331818107515574],[116,88,67,-0.5313086658716202],[116,88,68,-0.5296951904892921],[116,88,69,-0.5284427274018526],[116,88,70,-0.5275341626256704],[116,88,71,-0.5264874286949635],[116,88,72,-0.5250251665711403],[116,88,73,-0.5234626978635788],[116,88,74,-0.5220988970249891],[116,88,75,-0.5210578367114067],[116,88,76,-0.5203675851225853],[116,88,77,-0.5198098700493574],[116,88,78,-0.5188276823610067],[116,88,79,-0.5173675315454602],[116,89,64,-0.5358160398900509],[116,89,65,-0.5347721707075834],[116,89,66,-0.5331818107515574],[116,89,67,-0.5313086658716202],[116,89,68,-0.5296951904892921],[116,89,69,-0.5284427274018526],[116,89,70,-0.5275341626256704],[116,89,71,-0.5264874286949635],[116,89,72,-0.5250251665711403],[116,89,73,-0.5234626978635788],[116,89,74,-0.5220988970249891],[116,89,75,-0.5210578367114067],[116,89,76,-0.5203675851225853],[116,89,77,-0.5198098700493574],[116,89,78,-0.5188276823610067],[116,89,79,-0.5173675315454602],[116,90,64,-0.5358160398900509],[116,90,65,-0.5347721707075834],[116,90,66,-0.5331818107515574],[116,90,67,-0.5313086658716202],[116,90,68,-0.5296951904892921],[116,90,69,-0.5284427274018526],[116,90,70,-0.5275341626256704],[116,90,71,-0.5264874286949635],[116,90,72,-0.5250251665711403],[116,90,73,-0.5234626978635788],[116,90,74,-0.5220988970249891],[116,90,75,-0.5210578367114067],[116,90,76,-0.5203675851225853],[116,90,77,-0.5198098700493574],[116,90,78,-0.5188276823610067],[116,90,79,-0.5173675315454602],[116,91,64,-0.5358160398900509],[116,91,65,-0.5347721707075834],[116,91,66,-0.5331818107515574],[116,91,67,-0.5313086658716202],[116,91,68,-0.5296951904892921],[116,91,69,-0.5284427274018526],[116,91,70,-0.5275341626256704],[116,91,71,-0.5264874286949635],[116,91,72,-0.5250251665711403],[116,91,73,-0.5234626978635788],[116,91,74,-0.5220988970249891],[116,91,75,-0.5210578367114067],[116,91,76,-0.5203675851225853],[116,91,77,-0.5198098700493574],[116,91,78,-0.5188276823610067],[116,91,79,-0.5173675315454602],[116,92,64,-0.5358160398900509],[116,92,65,-0.5347721707075834],[116,92,66,-0.5331818107515574],[116,92,67,-0.5313086658716202],[116,92,68,-0.5296951904892921],[116,92,69,-0.5284427274018526],[116,92,70,-0.5275341626256704],[116,92,71,-0.5264874286949635],[116,92,72,-0.5250251665711403],[116,92,73,-0.5234626978635788],[116,92,74,-0.5220988970249891],[116,92,75,-0.5210578367114067],[116,92,76,-0.5203675851225853],[116,92,77,-0.5198098700493574],[116,92,78,-0.5188276823610067],[116,92,79,-0.5173675315454602],[116,93,64,-0.5358160398900509],[116,93,65,-0.5347721707075834],[116,93,66,-0.5331818107515574],[116,93,67,-0.5313086658716202],[116,93,68,-0.5296951904892921],[116,93,69,-0.5284427274018526],[116,93,70,-0.5275341626256704],[116,93,71,-0.5264874286949635],[116,93,72,-0.5250251665711403],[116,93,73,-0.5234626978635788],[116,93,74,-0.5220988970249891],[116,93,75,-0.5210578367114067],[116,93,76,-0.5203675851225853],[116,93,77,-0.5198098700493574],[116,93,78,-0.5188276823610067],[116,93,79,-0.5173675315454602],[116,94,64,-0.5358160398900509],[116,94,65,-0.5347721707075834],[116,94,66,-0.5331818107515574],[116,94,67,-0.5313086658716202],[116,94,68,-0.5296951904892921],[116,94,69,-0.5284427274018526],[116,94,70,-0.5275341626256704],[116,94,71,-0.5264874286949635],[116,94,72,-0.5250251665711403],[116,94,73,-0.5234626978635788],[116,94,74,-0.5220988970249891],[116,94,75,-0.5210578367114067],[116,94,76,-0.5203675851225853],[116,94,77,-0.5198098700493574],[116,94,78,-0.5188276823610067],[116,94,79,-0.5173675315454602],[116,95,64,-0.5358160398900509],[116,95,65,-0.5347721707075834],[116,95,66,-0.5331818107515574],[116,95,67,-0.5313086658716202],[116,95,68,-0.5296951904892921],[116,95,69,-0.5284427274018526],[116,95,70,-0.5275341626256704],[116,95,71,-0.5264874286949635],[116,95,72,-0.5250251665711403],[116,95,73,-0.5234626978635788],[116,95,74,-0.5220988970249891],[116,95,75,-0.5210578367114067],[116,95,76,-0.5203675851225853],[116,95,77,-0.5198098700493574],[116,95,78,-0.5188276823610067],[116,95,79,-0.5173675315454602],[116,96,64,-0.5358160398900509],[116,96,65,-0.5347721707075834],[116,96,66,-0.5331818107515574],[116,96,67,-0.5313086658716202],[116,96,68,-0.5296951904892921],[116,96,69,-0.5284427274018526],[116,96,70,-0.5275341626256704],[116,96,71,-0.5264874286949635],[116,96,72,-0.5250251665711403],[116,96,73,-0.5234626978635788],[116,96,74,-0.5220988970249891],[116,96,75,-0.5210578367114067],[116,96,76,-0.5203675851225853],[116,96,77,-0.5198098700493574],[116,96,78,-0.5188276823610067],[116,96,79,-0.5173675315454602],[116,97,64,-0.5358160398900509],[116,97,65,-0.5347721707075834],[116,97,66,-0.5331818107515574],[116,97,67,-0.5313086658716202],[116,97,68,-0.5296951904892921],[116,97,69,-0.5284427274018526],[116,97,70,-0.5275341626256704],[116,97,71,-0.5264874286949635],[116,97,72,-0.5250251665711403],[116,97,73,-0.5234626978635788],[116,97,74,-0.5220988970249891],[116,97,75,-0.5210578367114067],[116,97,76,-0.5203675851225853],[116,97,77,-0.5198098700493574],[116,97,78,-0.5188276823610067],[116,97,79,-0.5173675315454602],[116,98,64,-0.5358160398900509],[116,98,65,-0.5347721707075834],[116,98,66,-0.5331818107515574],[116,98,67,-0.5313086658716202],[116,98,68,-0.5296951904892921],[116,98,69,-0.5284427274018526],[116,98,70,-0.5275341626256704],[116,98,71,-0.5264874286949635],[116,98,72,-0.5250251665711403],[116,98,73,-0.5234626978635788],[116,98,74,-0.5220988970249891],[116,98,75,-0.5210578367114067],[116,98,76,-0.5203675851225853],[116,98,77,-0.5198098700493574],[116,98,78,-0.5188276823610067],[116,98,79,-0.5173675315454602],[116,99,64,-0.5358160398900509],[116,99,65,-0.5347721707075834],[116,99,66,-0.5331818107515574],[116,99,67,-0.5313086658716202],[116,99,68,-0.5296951904892921],[116,99,69,-0.5284427274018526],[116,99,70,-0.5275341626256704],[116,99,71,-0.5264874286949635],[116,99,72,-0.5250251665711403],[116,99,73,-0.5234626978635788],[116,99,74,-0.5220988970249891],[116,99,75,-0.5210578367114067],[116,99,76,-0.5203675851225853],[116,99,77,-0.5198098700493574],[116,99,78,-0.5188276823610067],[116,99,79,-0.5173675315454602],[116,100,64,-0.5358160398900509],[116,100,65,-0.5347721707075834],[116,100,66,-0.5331818107515574],[116,100,67,-0.5313086658716202],[116,100,68,-0.5296951904892921],[116,100,69,-0.5284427274018526],[116,100,70,-0.5275341626256704],[116,100,71,-0.5264874286949635],[116,100,72,-0.5250251665711403],[116,100,73,-0.5234626978635788],[116,100,74,-0.5220988970249891],[116,100,75,-0.5210578367114067],[116,100,76,-0.5203675851225853],[116,100,77,-0.5198098700493574],[116,100,78,-0.5188276823610067],[116,100,79,-0.5173675315454602],[116,101,64,-0.5358160398900509],[116,101,65,-0.5347721707075834],[116,101,66,-0.5331818107515574],[116,101,67,-0.5313086658716202],[116,101,68,-0.5296951904892921],[116,101,69,-0.5284427274018526],[116,101,70,-0.5275341626256704],[116,101,71,-0.5264874286949635],[116,101,72,-0.5250251665711403],[116,101,73,-0.5234626978635788],[116,101,74,-0.5220988970249891],[116,101,75,-0.5210578367114067],[116,101,76,-0.5203675851225853],[116,101,77,-0.5198098700493574],[116,101,78,-0.5188276823610067],[116,101,79,-0.5173675315454602],[116,102,64,-0.5358160398900509],[116,102,65,-0.5347721707075834],[116,102,66,-0.5331818107515574],[116,102,67,-0.5313086658716202],[116,102,68,-0.5296951904892921],[116,102,69,-0.5284427274018526],[116,102,70,-0.5275341626256704],[116,102,71,-0.5264874286949635],[116,102,72,-0.5250251665711403],[116,102,73,-0.5234626978635788],[116,102,74,-0.5220988970249891],[116,102,75,-0.5210578367114067],[116,102,76,-0.5203675851225853],[116,102,77,-0.5198098700493574],[116,102,78,-0.5188276823610067],[116,102,79,-0.5173675315454602],[116,103,64,-0.5358160398900509],[116,103,65,-0.5347721707075834],[116,103,66,-0.5331818107515574],[116,103,67,-0.5313086658716202],[116,103,68,-0.5296951904892921],[116,103,69,-0.5284427274018526],[116,103,70,-0.5275341626256704],[116,103,71,-0.5264874286949635],[116,103,72,-0.5250251665711403],[116,103,73,-0.5234626978635788],[116,103,74,-0.5220988970249891],[116,103,75,-0.5210578367114067],[116,103,76,-0.5203675851225853],[116,103,77,-0.5198098700493574],[116,103,78,-0.5188276823610067],[116,103,79,-0.5173675315454602],[116,104,64,-0.5358160398900509],[116,104,65,-0.5347721707075834],[116,104,66,-0.5331818107515574],[116,104,67,-0.5313086658716202],[116,104,68,-0.5296951904892921],[116,104,69,-0.5284427274018526],[116,104,70,-0.5275341626256704],[116,104,71,-0.5264874286949635],[116,104,72,-0.5250251665711403],[116,104,73,-0.5234626978635788],[116,104,74,-0.5220988970249891],[116,104,75,-0.5210578367114067],[116,104,76,-0.5203675851225853],[116,104,77,-0.5198098700493574],[116,104,78,-0.5188276823610067],[116,104,79,-0.5173675315454602],[116,105,64,-0.5358160398900509],[116,105,65,-0.5347721707075834],[116,105,66,-0.5331818107515574],[116,105,67,-0.5313086658716202],[116,105,68,-0.5296951904892921],[116,105,69,-0.5284427274018526],[116,105,70,-0.5275341626256704],[116,105,71,-0.5264874286949635],[116,105,72,-0.5250251665711403],[116,105,73,-0.5234626978635788],[116,105,74,-0.5220988970249891],[116,105,75,-0.5210578367114067],[116,105,76,-0.5203675851225853],[116,105,77,-0.5198098700493574],[116,105,78,-0.5188276823610067],[116,105,79,-0.5173675315454602],[116,106,64,-0.5358160398900509],[116,106,65,-0.5347721707075834],[116,106,66,-0.5331818107515574],[116,106,67,-0.5313086658716202],[116,106,68,-0.5296951904892921],[116,106,69,-0.5284427274018526],[116,106,70,-0.5275341626256704],[116,106,71,-0.5264874286949635],[116,106,72,-0.5250251665711403],[116,106,73,-0.5234626978635788],[116,106,74,-0.5220988970249891],[116,106,75,-0.5210578367114067],[116,106,76,-0.5203675851225853],[116,106,77,-0.5198098700493574],[116,106,78,-0.5188276823610067],[116,106,79,-0.5173675315454602],[116,107,64,-0.5358160398900509],[116,107,65,-0.5347721707075834],[116,107,66,-0.5331818107515574],[116,107,67,-0.5313086658716202],[116,107,68,-0.5296951904892921],[116,107,69,-0.5284427274018526],[116,107,70,-0.5275341626256704],[116,107,71,-0.5264874286949635],[116,107,72,-0.5250251665711403],[116,107,73,-0.5234626978635788],[116,107,74,-0.5220988970249891],[116,107,75,-0.5210578367114067],[116,107,76,-0.5203675851225853],[116,107,77,-0.5198098700493574],[116,107,78,-0.5188276823610067],[116,107,79,-0.5173675315454602],[116,108,64,-0.5358160398900509],[116,108,65,-0.5347721707075834],[116,108,66,-0.5331818107515574],[116,108,67,-0.5313086658716202],[116,108,68,-0.5296951904892921],[116,108,69,-0.5284427274018526],[116,108,70,-0.5275341626256704],[116,108,71,-0.5264874286949635],[116,108,72,-0.5250251665711403],[116,108,73,-0.5234626978635788],[116,108,74,-0.5220988970249891],[116,108,75,-0.5210578367114067],[116,108,76,-0.5203675851225853],[116,108,77,-0.5198098700493574],[116,108,78,-0.5188276823610067],[116,108,79,-0.5173675315454602],[116,109,64,-0.5358160398900509],[116,109,65,-0.5347721707075834],[116,109,66,-0.5331818107515574],[116,109,67,-0.5313086658716202],[116,109,68,-0.5296951904892921],[116,109,69,-0.5284427274018526],[116,109,70,-0.5275341626256704],[116,109,71,-0.5264874286949635],[116,109,72,-0.5250251665711403],[116,109,73,-0.5234626978635788],[116,109,74,-0.5220988970249891],[116,109,75,-0.5210578367114067],[116,109,76,-0.5203675851225853],[116,109,77,-0.5198098700493574],[116,109,78,-0.5188276823610067],[116,109,79,-0.5173675315454602],[116,110,64,-0.5358160398900509],[116,110,65,-0.5347721707075834],[116,110,66,-0.5331818107515574],[116,110,67,-0.5313086658716202],[116,110,68,-0.5296951904892921],[116,110,69,-0.5284427274018526],[116,110,70,-0.5275341626256704],[116,110,71,-0.5264874286949635],[116,110,72,-0.5250251665711403],[116,110,73,-0.5234626978635788],[116,110,74,-0.5220988970249891],[116,110,75,-0.5210578367114067],[116,110,76,-0.5203675851225853],[116,110,77,-0.5198098700493574],[116,110,78,-0.5188276823610067],[116,110,79,-0.5173675315454602],[116,111,64,-0.5358160398900509],[116,111,65,-0.5347721707075834],[116,111,66,-0.5331818107515574],[116,111,67,-0.5313086658716202],[116,111,68,-0.5296951904892921],[116,111,69,-0.5284427274018526],[116,111,70,-0.5275341626256704],[116,111,71,-0.5264874286949635],[116,111,72,-0.5250251665711403],[116,111,73,-0.5234626978635788],[116,111,74,-0.5220988970249891],[116,111,75,-0.5210578367114067],[116,111,76,-0.5203675851225853],[116,111,77,-0.5198098700493574],[116,111,78,-0.5188276823610067],[116,111,79,-0.5173675315454602],[116,112,64,-0.5358160398900509],[116,112,65,-0.5347721707075834],[116,112,66,-0.5331818107515574],[116,112,67,-0.5313086658716202],[116,112,68,-0.5296951904892921],[116,112,69,-0.5284427274018526],[116,112,70,-0.5275341626256704],[116,112,71,-0.5264874286949635],[116,112,72,-0.5250251665711403],[116,112,73,-0.5234626978635788],[116,112,74,-0.5220988970249891],[116,112,75,-0.5210578367114067],[116,112,76,-0.5203675851225853],[116,112,77,-0.5198098700493574],[116,112,78,-0.5188276823610067],[116,112,79,-0.5173675315454602],[116,113,64,-0.5358160398900509],[116,113,65,-0.5347721707075834],[116,113,66,-0.5331818107515574],[116,113,67,-0.5313086658716202],[116,113,68,-0.5296951904892921],[116,113,69,-0.5284427274018526],[116,113,70,-0.5275341626256704],[116,113,71,-0.5264874286949635],[116,113,72,-0.5250251665711403],[116,113,73,-0.5234626978635788],[116,113,74,-0.5220988970249891],[116,113,75,-0.5210578367114067],[116,113,76,-0.5203675851225853],[116,113,77,-0.5198098700493574],[116,113,78,-0.5188276823610067],[116,113,79,-0.5173675315454602],[116,114,64,-0.5358160398900509],[116,114,65,-0.5347721707075834],[116,114,66,-0.5331818107515574],[116,114,67,-0.5313086658716202],[116,114,68,-0.5296951904892921],[116,114,69,-0.5284427274018526],[116,114,70,-0.5275341626256704],[116,114,71,-0.5264874286949635],[116,114,72,-0.5250251665711403],[116,114,73,-0.5234626978635788],[116,114,74,-0.5220988970249891],[116,114,75,-0.5210578367114067],[116,114,76,-0.5203675851225853],[116,114,77,-0.5198098700493574],[116,114,78,-0.5188276823610067],[116,114,79,-0.5173675315454602],[116,115,64,-0.5358160398900509],[116,115,65,-0.5347721707075834],[116,115,66,-0.5331818107515574],[116,115,67,-0.5313086658716202],[116,115,68,-0.5296951904892921],[116,115,69,-0.5284427274018526],[116,115,70,-0.5275341626256704],[116,115,71,-0.5264874286949635],[116,115,72,-0.5250251665711403],[116,115,73,-0.5234626978635788],[116,115,74,-0.5220988970249891],[116,115,75,-0.5210578367114067],[116,115,76,-0.5203675851225853],[116,115,77,-0.5198098700493574],[116,115,78,-0.5188276823610067],[116,115,79,-0.5173675315454602],[116,116,64,-0.5358160398900509],[116,116,65,-0.5347721707075834],[116,116,66,-0.5331818107515574],[116,116,67,-0.5313086658716202],[116,116,68,-0.5296951904892921],[116,116,69,-0.5284427274018526],[116,116,70,-0.5275341626256704],[116,116,71,-0.5264874286949635],[116,116,72,-0.5250251665711403],[116,116,73,-0.5234626978635788],[116,116,74,-0.5220988970249891],[116,116,75,-0.5210578367114067],[116,116,76,-0.5203675851225853],[116,116,77,-0.5198098700493574],[116,116,78,-0.5188276823610067],[116,116,79,-0.5173675315454602],[116,117,64,-0.5358160398900509],[116,117,65,-0.5347721707075834],[116,117,66,-0.5331818107515574],[116,117,67,-0.5313086658716202],[116,117,68,-0.5296951904892921],[116,117,69,-0.5284427274018526],[116,117,70,-0.5275341626256704],[116,117,71,-0.5264874286949635],[116,117,72,-0.5250251665711403],[116,117,73,-0.5234626978635788],[116,117,74,-0.5220988970249891],[116,117,75,-0.5210578367114067],[116,117,76,-0.5203675851225853],[116,117,77,-0.5198098700493574],[116,117,78,-0.5188276823610067],[116,117,79,-0.5173675315454602],[116,118,64,-0.5358160398900509],[116,118,65,-0.5347721707075834],[116,118,66,-0.5331818107515574],[116,118,67,-0.5313086658716202],[116,118,68,-0.5296951904892921],[116,118,69,-0.5284427274018526],[116,118,70,-0.5275341626256704],[116,118,71,-0.5264874286949635],[116,118,72,-0.5250251665711403],[116,118,73,-0.5234626978635788],[116,118,74,-0.5220988970249891],[116,118,75,-0.5210578367114067],[116,118,76,-0.5203675851225853],[116,118,77,-0.5198098700493574],[116,118,78,-0.5188276823610067],[116,118,79,-0.5173675315454602],[116,119,64,-0.5358160398900509],[116,119,65,-0.5347721707075834],[116,119,66,-0.5331818107515574],[116,119,67,-0.5313086658716202],[116,119,68,-0.5296951904892921],[116,119,69,-0.5284427274018526],[116,119,70,-0.5275341626256704],[116,119,71,-0.5264874286949635],[116,119,72,-0.5250251665711403],[116,119,73,-0.5234626978635788],[116,119,74,-0.5220988970249891],[116,119,75,-0.5210578367114067],[116,119,76,-0.5203675851225853],[116,119,77,-0.5198098700493574],[116,119,78,-0.5188276823610067],[116,119,79,-0.5173675315454602],[116,120,64,-0.5358160398900509],[116,120,65,-0.5347721707075834],[116,120,66,-0.5331818107515574],[116,120,67,-0.5313086658716202],[116,120,68,-0.5296951904892921],[116,120,69,-0.5284427274018526],[116,120,70,-0.5275341626256704],[116,120,71,-0.5264874286949635],[116,120,72,-0.5250251665711403],[116,120,73,-0.5234626978635788],[116,120,74,-0.5220988970249891],[116,120,75,-0.5210578367114067],[116,120,76,-0.5203675851225853],[116,120,77,-0.5198098700493574],[116,120,78,-0.5188276823610067],[116,120,79,-0.5173675315454602],[116,121,64,-0.5358160398900509],[116,121,65,-0.5347721707075834],[116,121,66,-0.5331818107515574],[116,121,67,-0.5313086658716202],[116,121,68,-0.5296951904892921],[116,121,69,-0.5284427274018526],[116,121,70,-0.5275341626256704],[116,121,71,-0.5264874286949635],[116,121,72,-0.5250251665711403],[116,121,73,-0.5234626978635788],[116,121,74,-0.5220988970249891],[116,121,75,-0.5210578367114067],[116,121,76,-0.5203675851225853],[116,121,77,-0.5198098700493574],[116,121,78,-0.5188276823610067],[116,121,79,-0.5173675315454602],[116,122,64,-0.5358160398900509],[116,122,65,-0.5347721707075834],[116,122,66,-0.5331818107515574],[116,122,67,-0.5313086658716202],[116,122,68,-0.5296951904892921],[116,122,69,-0.5284427274018526],[116,122,70,-0.5275341626256704],[116,122,71,-0.5264874286949635],[116,122,72,-0.5250251665711403],[116,122,73,-0.5234626978635788],[116,122,74,-0.5220988970249891],[116,122,75,-0.5210578367114067],[116,122,76,-0.5203675851225853],[116,122,77,-0.5198098700493574],[116,122,78,-0.5188276823610067],[116,122,79,-0.5173675315454602],[116,123,64,-0.5358160398900509],[116,123,65,-0.5347721707075834],[116,123,66,-0.5331818107515574],[116,123,67,-0.5313086658716202],[116,123,68,-0.5296951904892921],[116,123,69,-0.5284427274018526],[116,123,70,-0.5275341626256704],[116,123,71,-0.5264874286949635],[116,123,72,-0.5250251665711403],[116,123,73,-0.5234626978635788],[116,123,74,-0.5220988970249891],[116,123,75,-0.5210578367114067],[116,123,76,-0.5203675851225853],[116,123,77,-0.5198098700493574],[116,123,78,-0.5188276823610067],[116,123,79,-0.5173675315454602],[116,124,64,-0.5358160398900509],[116,124,65,-0.5347721707075834],[116,124,66,-0.5331818107515574],[116,124,67,-0.5313086658716202],[116,124,68,-0.5296951904892921],[116,124,69,-0.5284427274018526],[116,124,70,-0.5275341626256704],[116,124,71,-0.5264874286949635],[116,124,72,-0.5250251665711403],[116,124,73,-0.5234626978635788],[116,124,74,-0.5220988970249891],[116,124,75,-0.5210578367114067],[116,124,76,-0.5203675851225853],[116,124,77,-0.5198098700493574],[116,124,78,-0.5188276823610067],[116,124,79,-0.5173675315454602],[116,125,64,-0.5358160398900509],[116,125,65,-0.5347721707075834],[116,125,66,-0.5331818107515574],[116,125,67,-0.5313086658716202],[116,125,68,-0.5296951904892921],[116,125,69,-0.5284427274018526],[116,125,70,-0.5275341626256704],[116,125,71,-0.5264874286949635],[116,125,72,-0.5250251665711403],[116,125,73,-0.5234626978635788],[116,125,74,-0.5220988970249891],[116,125,75,-0.5210578367114067],[116,125,76,-0.5203675851225853],[116,125,77,-0.5198098700493574],[116,125,78,-0.5188276823610067],[116,125,79,-0.5173675315454602],[116,126,64,-0.5358160398900509],[116,126,65,-0.5347721707075834],[116,126,66,-0.5331818107515574],[116,126,67,-0.5313086658716202],[116,126,68,-0.5296951904892921],[116,126,69,-0.5284427274018526],[116,126,70,-0.5275341626256704],[116,126,71,-0.5264874286949635],[116,126,72,-0.5250251665711403],[116,126,73,-0.5234626978635788],[116,126,74,-0.5220988970249891],[116,126,75,-0.5210578367114067],[116,126,76,-0.5203675851225853],[116,126,77,-0.5198098700493574],[116,126,78,-0.5188276823610067],[116,126,79,-0.5173675315454602],[116,127,64,-0.5358160398900509],[116,127,65,-0.5347721707075834],[116,127,66,-0.5331818107515574],[116,127,67,-0.5313086658716202],[116,127,68,-0.5296951904892921],[116,127,69,-0.5284427274018526],[116,127,70,-0.5275341626256704],[116,127,71,-0.5264874286949635],[116,127,72,-0.5250251665711403],[116,127,73,-0.5234626978635788],[116,127,74,-0.5220988970249891],[116,127,75,-0.5210578367114067],[116,127,76,-0.5203675851225853],[116,127,77,-0.5198098700493574],[116,127,78,-0.5188276823610067],[116,127,79,-0.5173675315454602],[116,128,64,-0.5358160398900509],[116,128,65,-0.5347721707075834],[116,128,66,-0.5331818107515574],[116,128,67,-0.5313086658716202],[116,128,68,-0.5296951904892921],[116,128,69,-0.5284427274018526],[116,128,70,-0.5275341626256704],[116,128,71,-0.5264874286949635],[116,128,72,-0.5250251665711403],[116,128,73,-0.5234626978635788],[116,128,74,-0.5220988970249891],[116,128,75,-0.5210578367114067],[116,128,76,-0.5203675851225853],[116,128,77,-0.5198098700493574],[116,128,78,-0.5188276823610067],[116,128,79,-0.5173675315454602],[116,129,64,-0.5358160398900509],[116,129,65,-0.5347721707075834],[116,129,66,-0.5331818107515574],[116,129,67,-0.5313086658716202],[116,129,68,-0.5296951904892921],[116,129,69,-0.5284427274018526],[116,129,70,-0.5275341626256704],[116,129,71,-0.5264874286949635],[116,129,72,-0.5250251665711403],[116,129,73,-0.5234626978635788],[116,129,74,-0.5220988970249891],[116,129,75,-0.5210578367114067],[116,129,76,-0.5203675851225853],[116,129,77,-0.5198098700493574],[116,129,78,-0.5188276823610067],[116,129,79,-0.5173675315454602],[116,130,64,-0.5358160398900509],[116,130,65,-0.5347721707075834],[116,130,66,-0.5331818107515574],[116,130,67,-0.5313086658716202],[116,130,68,-0.5296951904892921],[116,130,69,-0.5284427274018526],[116,130,70,-0.5275341626256704],[116,130,71,-0.5264874286949635],[116,130,72,-0.5250251665711403],[116,130,73,-0.5234626978635788],[116,130,74,-0.5220988970249891],[116,130,75,-0.5210578367114067],[116,130,76,-0.5203675851225853],[116,130,77,-0.5198098700493574],[116,130,78,-0.5188276823610067],[116,130,79,-0.5173675315454602],[116,131,64,-0.5358160398900509],[116,131,65,-0.5347721707075834],[116,131,66,-0.5331818107515574],[116,131,67,-0.5313086658716202],[116,131,68,-0.5296951904892921],[116,131,69,-0.5284427274018526],[116,131,70,-0.5275341626256704],[116,131,71,-0.5264874286949635],[116,131,72,-0.5250251665711403],[116,131,73,-0.5234626978635788],[116,131,74,-0.5220988970249891],[116,131,75,-0.5210578367114067],[116,131,76,-0.5203675851225853],[116,131,77,-0.5198098700493574],[116,131,78,-0.5188276823610067],[116,131,79,-0.5173675315454602],[116,132,64,-0.5358160398900509],[116,132,65,-0.5347721707075834],[116,132,66,-0.5331818107515574],[116,132,67,-0.5313086658716202],[116,132,68,-0.5296951904892921],[116,132,69,-0.5284427274018526],[116,132,70,-0.5275341626256704],[116,132,71,-0.5264874286949635],[116,132,72,-0.5250251665711403],[116,132,73,-0.5234626978635788],[116,132,74,-0.5220988970249891],[116,132,75,-0.5210578367114067],[116,132,76,-0.5203675851225853],[116,132,77,-0.5198098700493574],[116,132,78,-0.5188276823610067],[116,132,79,-0.5173675315454602],[116,133,64,-0.5358160398900509],[116,133,65,-0.5347721707075834],[116,133,66,-0.5331818107515574],[116,133,67,-0.5313086658716202],[116,133,68,-0.5296951904892921],[116,133,69,-0.5284427274018526],[116,133,70,-0.5275341626256704],[116,133,71,-0.5264874286949635],[116,133,72,-0.5250251665711403],[116,133,73,-0.5234626978635788],[116,133,74,-0.5220988970249891],[116,133,75,-0.5210578367114067],[116,133,76,-0.5203675851225853],[116,133,77,-0.5198098700493574],[116,133,78,-0.5188276823610067],[116,133,79,-0.5173675315454602],[116,134,64,-0.5358160398900509],[116,134,65,-0.5347721707075834],[116,134,66,-0.5331818107515574],[116,134,67,-0.5313086658716202],[116,134,68,-0.5296951904892921],[116,134,69,-0.5284427274018526],[116,134,70,-0.5275341626256704],[116,134,71,-0.5264874286949635],[116,134,72,-0.5250251665711403],[116,134,73,-0.5234626978635788],[116,134,74,-0.5220988970249891],[116,134,75,-0.5210578367114067],[116,134,76,-0.5203675851225853],[116,134,77,-0.5198098700493574],[116,134,78,-0.5188276823610067],[116,134,79,-0.5173675315454602],[116,135,64,-0.5358160398900509],[116,135,65,-0.5347721707075834],[116,135,66,-0.5331818107515574],[116,135,67,-0.5313086658716202],[116,135,68,-0.5296951904892921],[116,135,69,-0.5284427274018526],[116,135,70,-0.5275341626256704],[116,135,71,-0.5264874286949635],[116,135,72,-0.5250251665711403],[116,135,73,-0.5234626978635788],[116,135,74,-0.5220988970249891],[116,135,75,-0.5210578367114067],[116,135,76,-0.5203675851225853],[116,135,77,-0.5198098700493574],[116,135,78,-0.5188276823610067],[116,135,79,-0.5173675315454602],[116,136,64,-0.5358160398900509],[116,136,65,-0.5347721707075834],[116,136,66,-0.5331818107515574],[116,136,67,-0.5313086658716202],[116,136,68,-0.5296951904892921],[116,136,69,-0.5284427274018526],[116,136,70,-0.5275341626256704],[116,136,71,-0.5264874286949635],[116,136,72,-0.5250251665711403],[116,136,73,-0.5234626978635788],[116,136,74,-0.5220988970249891],[116,136,75,-0.5210578367114067],[116,136,76,-0.5203675851225853],[116,136,77,-0.5198098700493574],[116,136,78,-0.5188276823610067],[116,136,79,-0.5173675315454602],[116,137,64,-0.5358160398900509],[116,137,65,-0.5347721707075834],[116,137,66,-0.5331818107515574],[116,137,67,-0.5313086658716202],[116,137,68,-0.5296951904892921],[116,137,69,-0.5284427274018526],[116,137,70,-0.5275341626256704],[116,137,71,-0.5264874286949635],[116,137,72,-0.5250251665711403],[116,137,73,-0.5234626978635788],[116,137,74,-0.5220988970249891],[116,137,75,-0.5210578367114067],[116,137,76,-0.5203675851225853],[116,137,77,-0.5198098700493574],[116,137,78,-0.5188276823610067],[116,137,79,-0.5173675315454602],[116,138,64,-0.5358160398900509],[116,138,65,-0.5347721707075834],[116,138,66,-0.5331818107515574],[116,138,67,-0.5313086658716202],[116,138,68,-0.5296951904892921],[116,138,69,-0.5284427274018526],[116,138,70,-0.5275341626256704],[116,138,71,-0.5264874286949635],[116,138,72,-0.5250251665711403],[116,138,73,-0.5234626978635788],[116,138,74,-0.5220988970249891],[116,138,75,-0.5210578367114067],[116,138,76,-0.5203675851225853],[116,138,77,-0.5198098700493574],[116,138,78,-0.5188276823610067],[116,138,79,-0.5173675315454602],[116,139,64,-0.5358160398900509],[116,139,65,-0.5347721707075834],[116,139,66,-0.5331818107515574],[116,139,67,-0.5313086658716202],[116,139,68,-0.5296951904892921],[116,139,69,-0.5284427274018526],[116,139,70,-0.5275341626256704],[116,139,71,-0.5264874286949635],[116,139,72,-0.5250251665711403],[116,139,73,-0.5234626978635788],[116,139,74,-0.5220988970249891],[116,139,75,-0.5210578367114067],[116,139,76,-0.5203675851225853],[116,139,77,-0.5198098700493574],[116,139,78,-0.5188276823610067],[116,139,79,-0.5173675315454602],[116,140,64,-0.5358160398900509],[116,140,65,-0.5347721707075834],[116,140,66,-0.5331818107515574],[116,140,67,-0.5313086658716202],[116,140,68,-0.5296951904892921],[116,140,69,-0.5284427274018526],[116,140,70,-0.5275341626256704],[116,140,71,-0.5264874286949635],[116,140,72,-0.5250251665711403],[116,140,73,-0.5234626978635788],[116,140,74,-0.5220988970249891],[116,140,75,-0.5210578367114067],[116,140,76,-0.5203675851225853],[116,140,77,-0.5198098700493574],[116,140,78,-0.5188276823610067],[116,140,79,-0.5173675315454602],[116,141,64,-0.5358160398900509],[116,141,65,-0.5347721707075834],[116,141,66,-0.5331818107515574],[116,141,67,-0.5313086658716202],[116,141,68,-0.5296951904892921],[116,141,69,-0.5284427274018526],[116,141,70,-0.5275341626256704],[116,141,71,-0.5264874286949635],[116,141,72,-0.5250251665711403],[116,141,73,-0.5234626978635788],[116,141,74,-0.5220988970249891],[116,141,75,-0.5210578367114067],[116,141,76,-0.5203675851225853],[116,141,77,-0.5198098700493574],[116,141,78,-0.5188276823610067],[116,141,79,-0.5173675315454602],[116,142,64,-0.5358160398900509],[116,142,65,-0.5347721707075834],[116,142,66,-0.5331818107515574],[116,142,67,-0.5313086658716202],[116,142,68,-0.5296951904892921],[116,142,69,-0.5284427274018526],[116,142,70,-0.5275341626256704],[116,142,71,-0.5264874286949635],[116,142,72,-0.5250251665711403],[116,142,73,-0.5234626978635788],[116,142,74,-0.5220988970249891],[116,142,75,-0.5210578367114067],[116,142,76,-0.5203675851225853],[116,142,77,-0.5198098700493574],[116,142,78,-0.5188276823610067],[116,142,79,-0.5173675315454602],[116,143,64,-0.5358160398900509],[116,143,65,-0.5347721707075834],[116,143,66,-0.5331818107515574],[116,143,67,-0.5313086658716202],[116,143,68,-0.5296951904892921],[116,143,69,-0.5284427274018526],[116,143,70,-0.5275341626256704],[116,143,71,-0.5264874286949635],[116,143,72,-0.5250251665711403],[116,143,73,-0.5234626978635788],[116,143,74,-0.5220988970249891],[116,143,75,-0.5210578367114067],[116,143,76,-0.5203675851225853],[116,143,77,-0.5198098700493574],[116,143,78,-0.5188276823610067],[116,143,79,-0.5173675315454602],[116,144,64,-0.5358160398900509],[116,144,65,-0.5347721707075834],[116,144,66,-0.5331818107515574],[116,144,67,-0.5313086658716202],[116,144,68,-0.5296951904892921],[116,144,69,-0.5284427274018526],[116,144,70,-0.5275341626256704],[116,144,71,-0.5264874286949635],[116,144,72,-0.5250251665711403],[116,144,73,-0.5234626978635788],[116,144,74,-0.5220988970249891],[116,144,75,-0.5210578367114067],[116,144,76,-0.5203675851225853],[116,144,77,-0.5198098700493574],[116,144,78,-0.5188276823610067],[116,144,79,-0.5173675315454602],[116,145,64,-0.5358160398900509],[116,145,65,-0.5347721707075834],[116,145,66,-0.5331818107515574],[116,145,67,-0.5313086658716202],[116,145,68,-0.5296951904892921],[116,145,69,-0.5284427274018526],[116,145,70,-0.5275341626256704],[116,145,71,-0.5264874286949635],[116,145,72,-0.5250251665711403],[116,145,73,-0.5234626978635788],[116,145,74,-0.5220988970249891],[116,145,75,-0.5210578367114067],[116,145,76,-0.5203675851225853],[116,145,77,-0.5198098700493574],[116,145,78,-0.5188276823610067],[116,145,79,-0.5173675315454602],[116,146,64,-0.5358160398900509],[116,146,65,-0.5347721707075834],[116,146,66,-0.5331818107515574],[116,146,67,-0.5313086658716202],[116,146,68,-0.5296951904892921],[116,146,69,-0.5284427274018526],[116,146,70,-0.5275341626256704],[116,146,71,-0.5264874286949635],[116,146,72,-0.5250251665711403],[116,146,73,-0.5234626978635788],[116,146,74,-0.5220988970249891],[116,146,75,-0.5210578367114067],[116,146,76,-0.5203675851225853],[116,146,77,-0.5198098700493574],[116,146,78,-0.5188276823610067],[116,146,79,-0.5173675315454602],[116,147,64,-0.5358160398900509],[116,147,65,-0.5347721707075834],[116,147,66,-0.5331818107515574],[116,147,67,-0.5313086658716202],[116,147,68,-0.5296951904892921],[116,147,69,-0.5284427274018526],[116,147,70,-0.5275341626256704],[116,147,71,-0.5264874286949635],[116,147,72,-0.5250251665711403],[116,147,73,-0.5234626978635788],[116,147,74,-0.5220988970249891],[116,147,75,-0.5210578367114067],[116,147,76,-0.5203675851225853],[116,147,77,-0.5198098700493574],[116,147,78,-0.5188276823610067],[116,147,79,-0.5173675315454602],[116,148,64,-0.5358160398900509],[116,148,65,-0.5347721707075834],[116,148,66,-0.5331818107515574],[116,148,67,-0.5313086658716202],[116,148,68,-0.5296951904892921],[116,148,69,-0.5284427274018526],[116,148,70,-0.5275341626256704],[116,148,71,-0.5264874286949635],[116,148,72,-0.5250251665711403],[116,148,73,-0.5234626978635788],[116,148,74,-0.5220988970249891],[116,148,75,-0.5210578367114067],[116,148,76,-0.5203675851225853],[116,148,77,-0.5198098700493574],[116,148,78,-0.5188276823610067],[116,148,79,-0.5173675315454602],[116,149,64,-0.5358160398900509],[116,149,65,-0.5347721707075834],[116,149,66,-0.5331818107515574],[116,149,67,-0.5313086658716202],[116,149,68,-0.5296951904892921],[116,149,69,-0.5284427274018526],[116,149,70,-0.5275341626256704],[116,149,71,-0.5264874286949635],[116,149,72,-0.5250251665711403],[116,149,73,-0.5234626978635788],[116,149,74,-0.5220988970249891],[116,149,75,-0.5210578367114067],[116,149,76,-0.5203675851225853],[116,149,77,-0.5198098700493574],[116,149,78,-0.5188276823610067],[116,149,79,-0.5173675315454602],[116,150,64,-0.5358160398900509],[116,150,65,-0.5347721707075834],[116,150,66,-0.5331818107515574],[116,150,67,-0.5313086658716202],[116,150,68,-0.5296951904892921],[116,150,69,-0.5284427274018526],[116,150,70,-0.5275341626256704],[116,150,71,-0.5264874286949635],[116,150,72,-0.5250251665711403],[116,150,73,-0.5234626978635788],[116,150,74,-0.5220988970249891],[116,150,75,-0.5210578367114067],[116,150,76,-0.5203675851225853],[116,150,77,-0.5198098700493574],[116,150,78,-0.5188276823610067],[116,150,79,-0.5173675315454602],[116,151,64,-0.5358160398900509],[116,151,65,-0.5347721707075834],[116,151,66,-0.5331818107515574],[116,151,67,-0.5313086658716202],[116,151,68,-0.5296951904892921],[116,151,69,-0.5284427274018526],[116,151,70,-0.5275341626256704],[116,151,71,-0.5264874286949635],[116,151,72,-0.5250251665711403],[116,151,73,-0.5234626978635788],[116,151,74,-0.5220988970249891],[116,151,75,-0.5210578367114067],[116,151,76,-0.5203675851225853],[116,151,77,-0.5198098700493574],[116,151,78,-0.5188276823610067],[116,151,79,-0.5173675315454602],[116,152,64,-0.5358160398900509],[116,152,65,-0.5347721707075834],[116,152,66,-0.5331818107515574],[116,152,67,-0.5313086658716202],[116,152,68,-0.5296951904892921],[116,152,69,-0.5284427274018526],[116,152,70,-0.5275341626256704],[116,152,71,-0.5264874286949635],[116,152,72,-0.5250251665711403],[116,152,73,-0.5234626978635788],[116,152,74,-0.5220988970249891],[116,152,75,-0.5210578367114067],[116,152,76,-0.5203675851225853],[116,152,77,-0.5198098700493574],[116,152,78,-0.5188276823610067],[116,152,79,-0.5173675315454602],[116,153,64,-0.5358160398900509],[116,153,65,-0.5347721707075834],[116,153,66,-0.5331818107515574],[116,153,67,-0.5313086658716202],[116,153,68,-0.5296951904892921],[116,153,69,-0.5284427274018526],[116,153,70,-0.5275341626256704],[116,153,71,-0.5264874286949635],[116,153,72,-0.5250251665711403],[116,153,73,-0.5234626978635788],[116,153,74,-0.5220988970249891],[116,153,75,-0.5210578367114067],[116,153,76,-0.5203675851225853],[116,153,77,-0.5198098700493574],[116,153,78,-0.5188276823610067],[116,153,79,-0.5173675315454602],[116,154,64,-0.5358160398900509],[116,154,65,-0.5347721707075834],[116,154,66,-0.5331818107515574],[116,154,67,-0.5313086658716202],[116,154,68,-0.5296951904892921],[116,154,69,-0.5284427274018526],[116,154,70,-0.5275341626256704],[116,154,71,-0.5264874286949635],[116,154,72,-0.5250251665711403],[116,154,73,-0.5234626978635788],[116,154,74,-0.5220988970249891],[116,154,75,-0.5210578367114067],[116,154,76,-0.5203675851225853],[116,154,77,-0.5198098700493574],[116,154,78,-0.5188276823610067],[116,154,79,-0.5173675315454602],[116,155,64,-0.5358160398900509],[116,155,65,-0.5347721707075834],[116,155,66,-0.5331818107515574],[116,155,67,-0.5313086658716202],[116,155,68,-0.5296951904892921],[116,155,69,-0.5284427274018526],[116,155,70,-0.5275341626256704],[116,155,71,-0.5264874286949635],[116,155,72,-0.5250251665711403],[116,155,73,-0.5234626978635788],[116,155,74,-0.5220988970249891],[116,155,75,-0.5210578367114067],[116,155,76,-0.5203675851225853],[116,155,77,-0.5198098700493574],[116,155,78,-0.5188276823610067],[116,155,79,-0.5173675315454602],[116,156,64,-0.5358160398900509],[116,156,65,-0.5347721707075834],[116,156,66,-0.5331818107515574],[116,156,67,-0.5313086658716202],[116,156,68,-0.5296951904892921],[116,156,69,-0.5284427274018526],[116,156,70,-0.5275341626256704],[116,156,71,-0.5264874286949635],[116,156,72,-0.5250251665711403],[116,156,73,-0.5234626978635788],[116,156,74,-0.5220988970249891],[116,156,75,-0.5210578367114067],[116,156,76,-0.5203675851225853],[116,156,77,-0.5198098700493574],[116,156,78,-0.5188276823610067],[116,156,79,-0.5173675315454602],[116,157,64,-0.5358160398900509],[116,157,65,-0.5347721707075834],[116,157,66,-0.5331818107515574],[116,157,67,-0.5313086658716202],[116,157,68,-0.5296951904892921],[116,157,69,-0.5284427274018526],[116,157,70,-0.5275341626256704],[116,157,71,-0.5264874286949635],[116,157,72,-0.5250251665711403],[116,157,73,-0.5234626978635788],[116,157,74,-0.5220988970249891],[116,157,75,-0.5210578367114067],[116,157,76,-0.5203675851225853],[116,157,77,-0.5198098700493574],[116,157,78,-0.5188276823610067],[116,157,79,-0.5173675315454602],[116,158,64,-0.5358160398900509],[116,158,65,-0.5347721707075834],[116,158,66,-0.5331818107515574],[116,158,67,-0.5313086658716202],[116,158,68,-0.5296951904892921],[116,158,69,-0.5284427274018526],[116,158,70,-0.5275341626256704],[116,158,71,-0.5264874286949635],[116,158,72,-0.5250251665711403],[116,158,73,-0.5234626978635788],[116,158,74,-0.5220988970249891],[116,158,75,-0.5210578367114067],[116,158,76,-0.5203675851225853],[116,158,77,-0.5198098700493574],[116,158,78,-0.5188276823610067],[116,158,79,-0.5173675315454602],[116,159,64,-0.5358160398900509],[116,159,65,-0.5347721707075834],[116,159,66,-0.5331818107515574],[116,159,67,-0.5313086658716202],[116,159,68,-0.5296951904892921],[116,159,69,-0.5284427274018526],[116,159,70,-0.5275341626256704],[116,159,71,-0.5264874286949635],[116,159,72,-0.5250251665711403],[116,159,73,-0.5234626978635788],[116,159,74,-0.5220988970249891],[116,159,75,-0.5210578367114067],[116,159,76,-0.5203675851225853],[116,159,77,-0.5198098700493574],[116,159,78,-0.5188276823610067],[116,159,79,-0.5173675315454602],[116,160,64,-0.5358160398900509],[116,160,65,-0.5347721707075834],[116,160,66,-0.5331818107515574],[116,160,67,-0.5313086658716202],[116,160,68,-0.5296951904892921],[116,160,69,-0.5284427274018526],[116,160,70,-0.5275341626256704],[116,160,71,-0.5264874286949635],[116,160,72,-0.5250251665711403],[116,160,73,-0.5234626978635788],[116,160,74,-0.5220988970249891],[116,160,75,-0.5210578367114067],[116,160,76,-0.5203675851225853],[116,160,77,-0.5198098700493574],[116,160,78,-0.5188276823610067],[116,160,79,-0.5173675315454602],[116,161,64,-0.5358160398900509],[116,161,65,-0.5347721707075834],[116,161,66,-0.5331818107515574],[116,161,67,-0.5313086658716202],[116,161,68,-0.5296951904892921],[116,161,69,-0.5284427274018526],[116,161,70,-0.5275341626256704],[116,161,71,-0.5264874286949635],[116,161,72,-0.5250251665711403],[116,161,73,-0.5234626978635788],[116,161,74,-0.5220988970249891],[116,161,75,-0.5210578367114067],[116,161,76,-0.5203675851225853],[116,161,77,-0.5198098700493574],[116,161,78,-0.5188276823610067],[116,161,79,-0.5173675315454602],[116,162,64,-0.5358160398900509],[116,162,65,-0.5347721707075834],[116,162,66,-0.5331818107515574],[116,162,67,-0.5313086658716202],[116,162,68,-0.5296951904892921],[116,162,69,-0.5284427274018526],[116,162,70,-0.5275341626256704],[116,162,71,-0.5264874286949635],[116,162,72,-0.5250251665711403],[116,162,73,-0.5234626978635788],[116,162,74,-0.5220988970249891],[116,162,75,-0.5210578367114067],[116,162,76,-0.5203675851225853],[116,162,77,-0.5198098700493574],[116,162,78,-0.5188276823610067],[116,162,79,-0.5173675315454602],[116,163,64,-0.5358160398900509],[116,163,65,-0.5347721707075834],[116,163,66,-0.5331818107515574],[116,163,67,-0.5313086658716202],[116,163,68,-0.5296951904892921],[116,163,69,-0.5284427274018526],[116,163,70,-0.5275341626256704],[116,163,71,-0.5264874286949635],[116,163,72,-0.5250251665711403],[116,163,73,-0.5234626978635788],[116,163,74,-0.5220988970249891],[116,163,75,-0.5210578367114067],[116,163,76,-0.5203675851225853],[116,163,77,-0.5198098700493574],[116,163,78,-0.5188276823610067],[116,163,79,-0.5173675315454602],[116,164,64,-0.5358160398900509],[116,164,65,-0.5347721707075834],[116,164,66,-0.5331818107515574],[116,164,67,-0.5313086658716202],[116,164,68,-0.5296951904892921],[116,164,69,-0.5284427274018526],[116,164,70,-0.5275341626256704],[116,164,71,-0.5264874286949635],[116,164,72,-0.5250251665711403],[116,164,73,-0.5234626978635788],[116,164,74,-0.5220988970249891],[116,164,75,-0.5210578367114067],[116,164,76,-0.5203675851225853],[116,164,77,-0.5198098700493574],[116,164,78,-0.5188276823610067],[116,164,79,-0.5173675315454602],[116,165,64,-0.5358160398900509],[116,165,65,-0.5347721707075834],[116,165,66,-0.5331818107515574],[116,165,67,-0.5313086658716202],[116,165,68,-0.5296951904892921],[116,165,69,-0.5284427274018526],[116,165,70,-0.5275341626256704],[116,165,71,-0.5264874286949635],[116,165,72,-0.5250251665711403],[116,165,73,-0.5234626978635788],[116,165,74,-0.5220988970249891],[116,165,75,-0.5210578367114067],[116,165,76,-0.5203675851225853],[116,165,77,-0.5198098700493574],[116,165,78,-0.5188276823610067],[116,165,79,-0.5173675315454602],[116,166,64,-0.5358160398900509],[116,166,65,-0.5347721707075834],[116,166,66,-0.5331818107515574],[116,166,67,-0.5313086658716202],[116,166,68,-0.5296951904892921],[116,166,69,-0.5284427274018526],[116,166,70,-0.5275341626256704],[116,166,71,-0.5264874286949635],[116,166,72,-0.5250251665711403],[116,166,73,-0.5234626978635788],[116,166,74,-0.5220988970249891],[116,166,75,-0.5210578367114067],[116,166,76,-0.5203675851225853],[116,166,77,-0.5198098700493574],[116,166,78,-0.5188276823610067],[116,166,79,-0.5173675315454602],[116,167,64,-0.5358160398900509],[116,167,65,-0.5347721707075834],[116,167,66,-0.5331818107515574],[116,167,67,-0.5313086658716202],[116,167,68,-0.5296951904892921],[116,167,69,-0.5284427274018526],[116,167,70,-0.5275341626256704],[116,167,71,-0.5264874286949635],[116,167,72,-0.5250251665711403],[116,167,73,-0.5234626978635788],[116,167,74,-0.5220988970249891],[116,167,75,-0.5210578367114067],[116,167,76,-0.5203675851225853],[116,167,77,-0.5198098700493574],[116,167,78,-0.5188276823610067],[116,167,79,-0.5173675315454602],[116,168,64,-0.5358160398900509],[116,168,65,-0.5347721707075834],[116,168,66,-0.5331818107515574],[116,168,67,-0.5313086658716202],[116,168,68,-0.5296951904892921],[116,168,69,-0.5284427274018526],[116,168,70,-0.5275341626256704],[116,168,71,-0.5264874286949635],[116,168,72,-0.5250251665711403],[116,168,73,-0.5234626978635788],[116,168,74,-0.5220988970249891],[116,168,75,-0.5210578367114067],[116,168,76,-0.5203675851225853],[116,168,77,-0.5198098700493574],[116,168,78,-0.5188276823610067],[116,168,79,-0.5173675315454602],[116,169,64,-0.5358160398900509],[116,169,65,-0.5347721707075834],[116,169,66,-0.5331818107515574],[116,169,67,-0.5313086658716202],[116,169,68,-0.5296951904892921],[116,169,69,-0.5284427274018526],[116,169,70,-0.5275341626256704],[116,169,71,-0.5264874286949635],[116,169,72,-0.5250251665711403],[116,169,73,-0.5234626978635788],[116,169,74,-0.5220988970249891],[116,169,75,-0.5210578367114067],[116,169,76,-0.5203675851225853],[116,169,77,-0.5198098700493574],[116,169,78,-0.5188276823610067],[116,169,79,-0.5173675315454602],[116,170,64,-0.5358160398900509],[116,170,65,-0.5347721707075834],[116,170,66,-0.5331818107515574],[116,170,67,-0.5313086658716202],[116,170,68,-0.5296951904892921],[116,170,69,-0.5284427274018526],[116,170,70,-0.5275341626256704],[116,170,71,-0.5264874286949635],[116,170,72,-0.5250251665711403],[116,170,73,-0.5234626978635788],[116,170,74,-0.5220988970249891],[116,170,75,-0.5210578367114067],[116,170,76,-0.5203675851225853],[116,170,77,-0.5198098700493574],[116,170,78,-0.5188276823610067],[116,170,79,-0.5173675315454602],[116,171,64,-0.5358160398900509],[116,171,65,-0.5347721707075834],[116,171,66,-0.5331818107515574],[116,171,67,-0.5313086658716202],[116,171,68,-0.5296951904892921],[116,171,69,-0.5284427274018526],[116,171,70,-0.5275341626256704],[116,171,71,-0.5264874286949635],[116,171,72,-0.5250251665711403],[116,171,73,-0.5234626978635788],[116,171,74,-0.5220988970249891],[116,171,75,-0.5210578367114067],[116,171,76,-0.5203675851225853],[116,171,77,-0.5198098700493574],[116,171,78,-0.5188276823610067],[116,171,79,-0.5173675315454602],[116,172,64,-0.5358160398900509],[116,172,65,-0.5347721707075834],[116,172,66,-0.5331818107515574],[116,172,67,-0.5313086658716202],[116,172,68,-0.5296951904892921],[116,172,69,-0.5284427274018526],[116,172,70,-0.5275341626256704],[116,172,71,-0.5264874286949635],[116,172,72,-0.5250251665711403],[116,172,73,-0.5234626978635788],[116,172,74,-0.5220988970249891],[116,172,75,-0.5210578367114067],[116,172,76,-0.5203675851225853],[116,172,77,-0.5198098700493574],[116,172,78,-0.5188276823610067],[116,172,79,-0.5173675315454602],[116,173,64,-0.5358160398900509],[116,173,65,-0.5347721707075834],[116,173,66,-0.5331818107515574],[116,173,67,-0.5313086658716202],[116,173,68,-0.5296951904892921],[116,173,69,-0.5284427274018526],[116,173,70,-0.5275341626256704],[116,173,71,-0.5264874286949635],[116,173,72,-0.5250251665711403],[116,173,73,-0.5234626978635788],[116,173,74,-0.5220988970249891],[116,173,75,-0.5210578367114067],[116,173,76,-0.5203675851225853],[116,173,77,-0.5198098700493574],[116,173,78,-0.5188276823610067],[116,173,79,-0.5173675315454602],[116,174,64,-0.5358160398900509],[116,174,65,-0.5347721707075834],[116,174,66,-0.5331818107515574],[116,174,67,-0.5313086658716202],[116,174,68,-0.5296951904892921],[116,174,69,-0.5284427274018526],[116,174,70,-0.5275341626256704],[116,174,71,-0.5264874286949635],[116,174,72,-0.5250251665711403],[116,174,73,-0.5234626978635788],[116,174,74,-0.5220988970249891],[116,174,75,-0.5210578367114067],[116,174,76,-0.5203675851225853],[116,174,77,-0.5198098700493574],[116,174,78,-0.5188276823610067],[116,174,79,-0.5173675315454602],[116,175,64,-0.5358160398900509],[116,175,65,-0.5347721707075834],[116,175,66,-0.5331818107515574],[116,175,67,-0.5313086658716202],[116,175,68,-0.5296951904892921],[116,175,69,-0.5284427274018526],[116,175,70,-0.5275341626256704],[116,175,71,-0.5264874286949635],[116,175,72,-0.5250251665711403],[116,175,73,-0.5234626978635788],[116,175,74,-0.5220988970249891],[116,175,75,-0.5210578367114067],[116,175,76,-0.5203675851225853],[116,175,77,-0.5198098700493574],[116,175,78,-0.5188276823610067],[116,175,79,-0.5173675315454602],[116,176,64,-0.5358160398900509],[116,176,65,-0.5347721707075834],[116,176,66,-0.5331818107515574],[116,176,67,-0.5313086658716202],[116,176,68,-0.5296951904892921],[116,176,69,-0.5284427274018526],[116,176,70,-0.5275341626256704],[116,176,71,-0.5264874286949635],[116,176,72,-0.5250251665711403],[116,176,73,-0.5234626978635788],[116,176,74,-0.5220988970249891],[116,176,75,-0.5210578367114067],[116,176,76,-0.5203675851225853],[116,176,77,-0.5198098700493574],[116,176,78,-0.5188276823610067],[116,176,79,-0.5173675315454602],[116,177,64,-0.5358160398900509],[116,177,65,-0.5347721707075834],[116,177,66,-0.5331818107515574],[116,177,67,-0.5313086658716202],[116,177,68,-0.5296951904892921],[116,177,69,-0.5284427274018526],[116,177,70,-0.5275341626256704],[116,177,71,-0.5264874286949635],[116,177,72,-0.5250251665711403],[116,177,73,-0.5234626978635788],[116,177,74,-0.5220988970249891],[116,177,75,-0.5210578367114067],[116,177,76,-0.5203675851225853],[116,177,77,-0.5198098700493574],[116,177,78,-0.5188276823610067],[116,177,79,-0.5173675315454602],[116,178,64,-0.5358160398900509],[116,178,65,-0.5347721707075834],[116,178,66,-0.5331818107515574],[116,178,67,-0.5313086658716202],[116,178,68,-0.5296951904892921],[116,178,69,-0.5284427274018526],[116,178,70,-0.5275341626256704],[116,178,71,-0.5264874286949635],[116,178,72,-0.5250251665711403],[116,178,73,-0.5234626978635788],[116,178,74,-0.5220988970249891],[116,178,75,-0.5210578367114067],[116,178,76,-0.5203675851225853],[116,178,77,-0.5198098700493574],[116,178,78,-0.5188276823610067],[116,178,79,-0.5173675315454602],[116,179,64,-0.5358160398900509],[116,179,65,-0.5347721707075834],[116,179,66,-0.5331818107515574],[116,179,67,-0.5313086658716202],[116,179,68,-0.5296951904892921],[116,179,69,-0.5284427274018526],[116,179,70,-0.5275341626256704],[116,179,71,-0.5264874286949635],[116,179,72,-0.5250251665711403],[116,179,73,-0.5234626978635788],[116,179,74,-0.5220988970249891],[116,179,75,-0.5210578367114067],[116,179,76,-0.5203675851225853],[116,179,77,-0.5198098700493574],[116,179,78,-0.5188276823610067],[116,179,79,-0.5173675315454602],[116,180,64,-0.5358160398900509],[116,180,65,-0.5347721707075834],[116,180,66,-0.5331818107515574],[116,180,67,-0.5313086658716202],[116,180,68,-0.5296951904892921],[116,180,69,-0.5284427274018526],[116,180,70,-0.5275341626256704],[116,180,71,-0.5264874286949635],[116,180,72,-0.5250251665711403],[116,180,73,-0.5234626978635788],[116,180,74,-0.5220988970249891],[116,180,75,-0.5210578367114067],[116,180,76,-0.5203675851225853],[116,180,77,-0.5198098700493574],[116,180,78,-0.5188276823610067],[116,180,79,-0.5173675315454602],[116,181,64,-0.5358160398900509],[116,181,65,-0.5347721707075834],[116,181,66,-0.5331818107515574],[116,181,67,-0.5313086658716202],[116,181,68,-0.5296951904892921],[116,181,69,-0.5284427274018526],[116,181,70,-0.5275341626256704],[116,181,71,-0.5264874286949635],[116,181,72,-0.5250251665711403],[116,181,73,-0.5234626978635788],[116,181,74,-0.5220988970249891],[116,181,75,-0.5210578367114067],[116,181,76,-0.5203675851225853],[116,181,77,-0.5198098700493574],[116,181,78,-0.5188276823610067],[116,181,79,-0.5173675315454602],[116,182,64,-0.5358160398900509],[116,182,65,-0.5347721707075834],[116,182,66,-0.5331818107515574],[116,182,67,-0.5313086658716202],[116,182,68,-0.5296951904892921],[116,182,69,-0.5284427274018526],[116,182,70,-0.5275341626256704],[116,182,71,-0.5264874286949635],[116,182,72,-0.5250251665711403],[116,182,73,-0.5234626978635788],[116,182,74,-0.5220988970249891],[116,182,75,-0.5210578367114067],[116,182,76,-0.5203675851225853],[116,182,77,-0.5198098700493574],[116,182,78,-0.5188276823610067],[116,182,79,-0.5173675315454602],[116,183,64,-0.5358160398900509],[116,183,65,-0.5347721707075834],[116,183,66,-0.5331818107515574],[116,183,67,-0.5313086658716202],[116,183,68,-0.5296951904892921],[116,183,69,-0.5284427274018526],[116,183,70,-0.5275341626256704],[116,183,71,-0.5264874286949635],[116,183,72,-0.5250251665711403],[116,183,73,-0.5234626978635788],[116,183,74,-0.5220988970249891],[116,183,75,-0.5210578367114067],[116,183,76,-0.5203675851225853],[116,183,77,-0.5198098700493574],[116,183,78,-0.5188276823610067],[116,183,79,-0.5173675315454602],[116,184,64,-0.5358160398900509],[116,184,65,-0.5347721707075834],[116,184,66,-0.5331818107515574],[116,184,67,-0.5313086658716202],[116,184,68,-0.5296951904892921],[116,184,69,-0.5284427274018526],[116,184,70,-0.5275341626256704],[116,184,71,-0.5264874286949635],[116,184,72,-0.5250251665711403],[116,184,73,-0.5234626978635788],[116,184,74,-0.5220988970249891],[116,184,75,-0.5210578367114067],[116,184,76,-0.5203675851225853],[116,184,77,-0.5198098700493574],[116,184,78,-0.5188276823610067],[116,184,79,-0.5173675315454602],[116,185,64,-0.5358160398900509],[116,185,65,-0.5347721707075834],[116,185,66,-0.5331818107515574],[116,185,67,-0.5313086658716202],[116,185,68,-0.5296951904892921],[116,185,69,-0.5284427274018526],[116,185,70,-0.5275341626256704],[116,185,71,-0.5264874286949635],[116,185,72,-0.5250251665711403],[116,185,73,-0.5234626978635788],[116,185,74,-0.5220988970249891],[116,185,75,-0.5210578367114067],[116,185,76,-0.5203675851225853],[116,185,77,-0.5198098700493574],[116,185,78,-0.5188276823610067],[116,185,79,-0.5173675315454602],[116,186,64,-0.5358160398900509],[116,186,65,-0.5347721707075834],[116,186,66,-0.5331818107515574],[116,186,67,-0.5313086658716202],[116,186,68,-0.5296951904892921],[116,186,69,-0.5284427274018526],[116,186,70,-0.5275341626256704],[116,186,71,-0.5264874286949635],[116,186,72,-0.5250251665711403],[116,186,73,-0.5234626978635788],[116,186,74,-0.5220988970249891],[116,186,75,-0.5210578367114067],[116,186,76,-0.5203675851225853],[116,186,77,-0.5198098700493574],[116,186,78,-0.5188276823610067],[116,186,79,-0.5173675315454602],[116,187,64,-0.5358160398900509],[116,187,65,-0.5347721707075834],[116,187,66,-0.5331818107515574],[116,187,67,-0.5313086658716202],[116,187,68,-0.5296951904892921],[116,187,69,-0.5284427274018526],[116,187,70,-0.5275341626256704],[116,187,71,-0.5264874286949635],[116,187,72,-0.5250251665711403],[116,187,73,-0.5234626978635788],[116,187,74,-0.5220988970249891],[116,187,75,-0.5210578367114067],[116,187,76,-0.5203675851225853],[116,187,77,-0.5198098700493574],[116,187,78,-0.5188276823610067],[116,187,79,-0.5173675315454602],[116,188,64,-0.5358160398900509],[116,188,65,-0.5347721707075834],[116,188,66,-0.5331818107515574],[116,188,67,-0.5313086658716202],[116,188,68,-0.5296951904892921],[116,188,69,-0.5284427274018526],[116,188,70,-0.5275341626256704],[116,188,71,-0.5264874286949635],[116,188,72,-0.5250251665711403],[116,188,73,-0.5234626978635788],[116,188,74,-0.5220988970249891],[116,188,75,-0.5210578367114067],[116,188,76,-0.5203675851225853],[116,188,77,-0.5198098700493574],[116,188,78,-0.5188276823610067],[116,188,79,-0.5173675315454602],[116,189,64,-0.5358160398900509],[116,189,65,-0.5347721707075834],[116,189,66,-0.5331818107515574],[116,189,67,-0.5313086658716202],[116,189,68,-0.5296951904892921],[116,189,69,-0.5284427274018526],[116,189,70,-0.5275341626256704],[116,189,71,-0.5264874286949635],[116,189,72,-0.5250251665711403],[116,189,73,-0.5234626978635788],[116,189,74,-0.5220988970249891],[116,189,75,-0.5210578367114067],[116,189,76,-0.5203675851225853],[116,189,77,-0.5198098700493574],[116,189,78,-0.5188276823610067],[116,189,79,-0.5173675315454602],[116,190,64,-0.5358160398900509],[116,190,65,-0.5347721707075834],[116,190,66,-0.5331818107515574],[116,190,67,-0.5313086658716202],[116,190,68,-0.5296951904892921],[116,190,69,-0.5284427274018526],[116,190,70,-0.5275341626256704],[116,190,71,-0.5264874286949635],[116,190,72,-0.5250251665711403],[116,190,73,-0.5234626978635788],[116,190,74,-0.5220988970249891],[116,190,75,-0.5210578367114067],[116,190,76,-0.5203675851225853],[116,190,77,-0.5198098700493574],[116,190,78,-0.5188276823610067],[116,190,79,-0.5173675315454602],[116,191,64,-0.5358160398900509],[116,191,65,-0.5347721707075834],[116,191,66,-0.5331818107515574],[116,191,67,-0.5313086658716202],[116,191,68,-0.5296951904892921],[116,191,69,-0.5284427274018526],[116,191,70,-0.5275341626256704],[116,191,71,-0.5264874286949635],[116,191,72,-0.5250251665711403],[116,191,73,-0.5234626978635788],[116,191,74,-0.5220988970249891],[116,191,75,-0.5210578367114067],[116,191,76,-0.5203675851225853],[116,191,77,-0.5198098700493574],[116,191,78,-0.5188276823610067],[116,191,79,-0.5173675315454602],[116,192,64,-0.5358160398900509],[116,192,65,-0.5347721707075834],[116,192,66,-0.5331818107515574],[116,192,67,-0.5313086658716202],[116,192,68,-0.5296951904892921],[116,192,69,-0.5284427274018526],[116,192,70,-0.5275341626256704],[116,192,71,-0.5264874286949635],[116,192,72,-0.5250251665711403],[116,192,73,-0.5234626978635788],[116,192,74,-0.5220988970249891],[116,192,75,-0.5210578367114067],[116,192,76,-0.5203675851225853],[116,192,77,-0.5198098700493574],[116,192,78,-0.5188276823610067],[116,192,79,-0.5173675315454602],[116,193,64,-0.5358160398900509],[116,193,65,-0.5347721707075834],[116,193,66,-0.5331818107515574],[116,193,67,-0.5313086658716202],[116,193,68,-0.5296951904892921],[116,193,69,-0.5284427274018526],[116,193,70,-0.5275341626256704],[116,193,71,-0.5264874286949635],[116,193,72,-0.5250251665711403],[116,193,73,-0.5234626978635788],[116,193,74,-0.5220988970249891],[116,193,75,-0.5210578367114067],[116,193,76,-0.5203675851225853],[116,193,77,-0.5198098700493574],[116,193,78,-0.5188276823610067],[116,193,79,-0.5173675315454602],[116,194,64,-0.5358160398900509],[116,194,65,-0.5347721707075834],[116,194,66,-0.5331818107515574],[116,194,67,-0.5313086658716202],[116,194,68,-0.5296951904892921],[116,194,69,-0.5284427274018526],[116,194,70,-0.5275341626256704],[116,194,71,-0.5264874286949635],[116,194,72,-0.5250251665711403],[116,194,73,-0.5234626978635788],[116,194,74,-0.5220988970249891],[116,194,75,-0.5210578367114067],[116,194,76,-0.5203675851225853],[116,194,77,-0.5198098700493574],[116,194,78,-0.5188276823610067],[116,194,79,-0.5173675315454602],[116,195,64,-0.5358160398900509],[116,195,65,-0.5347721707075834],[116,195,66,-0.5331818107515574],[116,195,67,-0.5313086658716202],[116,195,68,-0.5296951904892921],[116,195,69,-0.5284427274018526],[116,195,70,-0.5275341626256704],[116,195,71,-0.5264874286949635],[116,195,72,-0.5250251665711403],[116,195,73,-0.5234626978635788],[116,195,74,-0.5220988970249891],[116,195,75,-0.5210578367114067],[116,195,76,-0.5203675851225853],[116,195,77,-0.5198098700493574],[116,195,78,-0.5188276823610067],[116,195,79,-0.5173675315454602],[116,196,64,-0.5358160398900509],[116,196,65,-0.5347721707075834],[116,196,66,-0.5331818107515574],[116,196,67,-0.5313086658716202],[116,196,68,-0.5296951904892921],[116,196,69,-0.5284427274018526],[116,196,70,-0.5275341626256704],[116,196,71,-0.5264874286949635],[116,196,72,-0.5250251665711403],[116,196,73,-0.5234626978635788],[116,196,74,-0.5220988970249891],[116,196,75,-0.5210578367114067],[116,196,76,-0.5203675851225853],[116,196,77,-0.5198098700493574],[116,196,78,-0.5188276823610067],[116,196,79,-0.5173675315454602],[116,197,64,-0.5358160398900509],[116,197,65,-0.5347721707075834],[116,197,66,-0.5331818107515574],[116,197,67,-0.5313086658716202],[116,197,68,-0.5296951904892921],[116,197,69,-0.5284427274018526],[116,197,70,-0.5275341626256704],[116,197,71,-0.5264874286949635],[116,197,72,-0.5250251665711403],[116,197,73,-0.5234626978635788],[116,197,74,-0.5220988970249891],[116,197,75,-0.5210578367114067],[116,197,76,-0.5203675851225853],[116,197,77,-0.5198098700493574],[116,197,78,-0.5188276823610067],[116,197,79,-0.5173675315454602],[116,198,64,-0.5358160398900509],[116,198,65,-0.5347721707075834],[116,198,66,-0.5331818107515574],[116,198,67,-0.5313086658716202],[116,198,68,-0.5296951904892921],[116,198,69,-0.5284427274018526],[116,198,70,-0.5275341626256704],[116,198,71,-0.5264874286949635],[116,198,72,-0.5250251665711403],[116,198,73,-0.5234626978635788],[116,198,74,-0.5220988970249891],[116,198,75,-0.5210578367114067],[116,198,76,-0.5203675851225853],[116,198,77,-0.5198098700493574],[116,198,78,-0.5188276823610067],[116,198,79,-0.5173675315454602],[116,199,64,-0.5358160398900509],[116,199,65,-0.5347721707075834],[116,199,66,-0.5331818107515574],[116,199,67,-0.5313086658716202],[116,199,68,-0.5296951904892921],[116,199,69,-0.5284427274018526],[116,199,70,-0.5275341626256704],[116,199,71,-0.5264874286949635],[116,199,72,-0.5250251665711403],[116,199,73,-0.5234626978635788],[116,199,74,-0.5220988970249891],[116,199,75,-0.5210578367114067],[116,199,76,-0.5203675851225853],[116,199,77,-0.5198098700493574],[116,199,78,-0.5188276823610067],[116,199,79,-0.5173675315454602],[116,200,64,-0.5358160398900509],[116,200,65,-0.5347721707075834],[116,200,66,-0.5331818107515574],[116,200,67,-0.5313086658716202],[116,200,68,-0.5296951904892921],[116,200,69,-0.5284427274018526],[116,200,70,-0.5275341626256704],[116,200,71,-0.5264874286949635],[116,200,72,-0.5250251665711403],[116,200,73,-0.5234626978635788],[116,200,74,-0.5220988970249891],[116,200,75,-0.5210578367114067],[116,200,76,-0.5203675851225853],[116,200,77,-0.5198098700493574],[116,200,78,-0.5188276823610067],[116,200,79,-0.5173675315454602],[116,201,64,-0.5358160398900509],[116,201,65,-0.5347721707075834],[116,201,66,-0.5331818107515574],[116,201,67,-0.5313086658716202],[116,201,68,-0.5296951904892921],[116,201,69,-0.5284427274018526],[116,201,70,-0.5275341626256704],[116,201,71,-0.5264874286949635],[116,201,72,-0.5250251665711403],[116,201,73,-0.5234626978635788],[116,201,74,-0.5220988970249891],[116,201,75,-0.5210578367114067],[116,201,76,-0.5203675851225853],[116,201,77,-0.5198098700493574],[116,201,78,-0.5188276823610067],[116,201,79,-0.5173675315454602],[116,202,64,-0.5358160398900509],[116,202,65,-0.5347721707075834],[116,202,66,-0.5331818107515574],[116,202,67,-0.5313086658716202],[116,202,68,-0.5296951904892921],[116,202,69,-0.5284427274018526],[116,202,70,-0.5275341626256704],[116,202,71,-0.5264874286949635],[116,202,72,-0.5250251665711403],[116,202,73,-0.5234626978635788],[116,202,74,-0.5220988970249891],[116,202,75,-0.5210578367114067],[116,202,76,-0.5203675851225853],[116,202,77,-0.5198098700493574],[116,202,78,-0.5188276823610067],[116,202,79,-0.5173675315454602],[116,203,64,-0.5358160398900509],[116,203,65,-0.5347721707075834],[116,203,66,-0.5331818107515574],[116,203,67,-0.5313086658716202],[116,203,68,-0.5296951904892921],[116,203,69,-0.5284427274018526],[116,203,70,-0.5275341626256704],[116,203,71,-0.5264874286949635],[116,203,72,-0.5250251665711403],[116,203,73,-0.5234626978635788],[116,203,74,-0.5220988970249891],[116,203,75,-0.5210578367114067],[116,203,76,-0.5203675851225853],[116,203,77,-0.5198098700493574],[116,203,78,-0.5188276823610067],[116,203,79,-0.5173675315454602],[116,204,64,-0.5358160398900509],[116,204,65,-0.5347721707075834],[116,204,66,-0.5331818107515574],[116,204,67,-0.5313086658716202],[116,204,68,-0.5296951904892921],[116,204,69,-0.5284427274018526],[116,204,70,-0.5275341626256704],[116,204,71,-0.5264874286949635],[116,204,72,-0.5250251665711403],[116,204,73,-0.5234626978635788],[116,204,74,-0.5220988970249891],[116,204,75,-0.5210578367114067],[116,204,76,-0.5203675851225853],[116,204,77,-0.5198098700493574],[116,204,78,-0.5188276823610067],[116,204,79,-0.5173675315454602],[116,205,64,-0.5358160398900509],[116,205,65,-0.5347721707075834],[116,205,66,-0.5331818107515574],[116,205,67,-0.5313086658716202],[116,205,68,-0.5296951904892921],[116,205,69,-0.5284427274018526],[116,205,70,-0.5275341626256704],[116,205,71,-0.5264874286949635],[116,205,72,-0.5250251665711403],[116,205,73,-0.5234626978635788],[116,205,74,-0.5220988970249891],[116,205,75,-0.5210578367114067],[116,205,76,-0.5203675851225853],[116,205,77,-0.5198098700493574],[116,205,78,-0.5188276823610067],[116,205,79,-0.5173675315454602],[116,206,64,-0.5358160398900509],[116,206,65,-0.5347721707075834],[116,206,66,-0.5331818107515574],[116,206,67,-0.5313086658716202],[116,206,68,-0.5296951904892921],[116,206,69,-0.5284427274018526],[116,206,70,-0.5275341626256704],[116,206,71,-0.5264874286949635],[116,206,72,-0.5250251665711403],[116,206,73,-0.5234626978635788],[116,206,74,-0.5220988970249891],[116,206,75,-0.5210578367114067],[116,206,76,-0.5203675851225853],[116,206,77,-0.5198098700493574],[116,206,78,-0.5188276823610067],[116,206,79,-0.5173675315454602],[116,207,64,-0.5358160398900509],[116,207,65,-0.5347721707075834],[116,207,66,-0.5331818107515574],[116,207,67,-0.5313086658716202],[116,207,68,-0.5296951904892921],[116,207,69,-0.5284427274018526],[116,207,70,-0.5275341626256704],[116,207,71,-0.5264874286949635],[116,207,72,-0.5250251665711403],[116,207,73,-0.5234626978635788],[116,207,74,-0.5220988970249891],[116,207,75,-0.5210578367114067],[116,207,76,-0.5203675851225853],[116,207,77,-0.5198098700493574],[116,207,78,-0.5188276823610067],[116,207,79,-0.5173675315454602],[116,208,64,-0.5358160398900509],[116,208,65,-0.5347721707075834],[116,208,66,-0.5331818107515574],[116,208,67,-0.5313086658716202],[116,208,68,-0.5296951904892921],[116,208,69,-0.5284427274018526],[116,208,70,-0.5275341626256704],[116,208,71,-0.5264874286949635],[116,208,72,-0.5250251665711403],[116,208,73,-0.5234626978635788],[116,208,74,-0.5220988970249891],[116,208,75,-0.5210578367114067],[116,208,76,-0.5203675851225853],[116,208,77,-0.5198098700493574],[116,208,78,-0.5188276823610067],[116,208,79,-0.5173675315454602],[116,209,64,-0.5358160398900509],[116,209,65,-0.5347721707075834],[116,209,66,-0.5331818107515574],[116,209,67,-0.5313086658716202],[116,209,68,-0.5296951904892921],[116,209,69,-0.5284427274018526],[116,209,70,-0.5275341626256704],[116,209,71,-0.5264874286949635],[116,209,72,-0.5250251665711403],[116,209,73,-0.5234626978635788],[116,209,74,-0.5220988970249891],[116,209,75,-0.5210578367114067],[116,209,76,-0.5203675851225853],[116,209,77,-0.5198098700493574],[116,209,78,-0.5188276823610067],[116,209,79,-0.5173675315454602],[116,210,64,-0.5358160398900509],[116,210,65,-0.5347721707075834],[116,210,66,-0.5331818107515574],[116,210,67,-0.5313086658716202],[116,210,68,-0.5296951904892921],[116,210,69,-0.5284427274018526],[116,210,70,-0.5275341626256704],[116,210,71,-0.5264874286949635],[116,210,72,-0.5250251665711403],[116,210,73,-0.5234626978635788],[116,210,74,-0.5220988970249891],[116,210,75,-0.5210578367114067],[116,210,76,-0.5203675851225853],[116,210,77,-0.5198098700493574],[116,210,78,-0.5188276823610067],[116,210,79,-0.5173675315454602],[116,211,64,-0.5358160398900509],[116,211,65,-0.5347721707075834],[116,211,66,-0.5331818107515574],[116,211,67,-0.5313086658716202],[116,211,68,-0.5296951904892921],[116,211,69,-0.5284427274018526],[116,211,70,-0.5275341626256704],[116,211,71,-0.5264874286949635],[116,211,72,-0.5250251665711403],[116,211,73,-0.5234626978635788],[116,211,74,-0.5220988970249891],[116,211,75,-0.5210578367114067],[116,211,76,-0.5203675851225853],[116,211,77,-0.5198098700493574],[116,211,78,-0.5188276823610067],[116,211,79,-0.5173675315454602],[116,212,64,-0.5358160398900509],[116,212,65,-0.5347721707075834],[116,212,66,-0.5331818107515574],[116,212,67,-0.5313086658716202],[116,212,68,-0.5296951904892921],[116,212,69,-0.5284427274018526],[116,212,70,-0.5275341626256704],[116,212,71,-0.5264874286949635],[116,212,72,-0.5250251665711403],[116,212,73,-0.5234626978635788],[116,212,74,-0.5220988970249891],[116,212,75,-0.5210578367114067],[116,212,76,-0.5203675851225853],[116,212,77,-0.5198098700493574],[116,212,78,-0.5188276823610067],[116,212,79,-0.5173675315454602],[116,213,64,-0.5358160398900509],[116,213,65,-0.5347721707075834],[116,213,66,-0.5331818107515574],[116,213,67,-0.5313086658716202],[116,213,68,-0.5296951904892921],[116,213,69,-0.5284427274018526],[116,213,70,-0.5275341626256704],[116,213,71,-0.5264874286949635],[116,213,72,-0.5250251665711403],[116,213,73,-0.5234626978635788],[116,213,74,-0.5220988970249891],[116,213,75,-0.5210578367114067],[116,213,76,-0.5203675851225853],[116,213,77,-0.5198098700493574],[116,213,78,-0.5188276823610067],[116,213,79,-0.5173675315454602],[116,214,64,-0.5358160398900509],[116,214,65,-0.5347721707075834],[116,214,66,-0.5331818107515574],[116,214,67,-0.5313086658716202],[116,214,68,-0.5296951904892921],[116,214,69,-0.5284427274018526],[116,214,70,-0.5275341626256704],[116,214,71,-0.5264874286949635],[116,214,72,-0.5250251665711403],[116,214,73,-0.5234626978635788],[116,214,74,-0.5220988970249891],[116,214,75,-0.5210578367114067],[116,214,76,-0.5203675851225853],[116,214,77,-0.5198098700493574],[116,214,78,-0.5188276823610067],[116,214,79,-0.5173675315454602],[116,215,64,-0.5358160398900509],[116,215,65,-0.5347721707075834],[116,215,66,-0.5331818107515574],[116,215,67,-0.5313086658716202],[116,215,68,-0.5296951904892921],[116,215,69,-0.5284427274018526],[116,215,70,-0.5275341626256704],[116,215,71,-0.5264874286949635],[116,215,72,-0.5250251665711403],[116,215,73,-0.5234626978635788],[116,215,74,-0.5220988970249891],[116,215,75,-0.5210578367114067],[116,215,76,-0.5203675851225853],[116,215,77,-0.5198098700493574],[116,215,78,-0.5188276823610067],[116,215,79,-0.5173675315454602],[116,216,64,-0.5358160398900509],[116,216,65,-0.5347721707075834],[116,216,66,-0.5331818107515574],[116,216,67,-0.5313086658716202],[116,216,68,-0.5296951904892921],[116,216,69,-0.5284427274018526],[116,216,70,-0.5275341626256704],[116,216,71,-0.5264874286949635],[116,216,72,-0.5250251665711403],[116,216,73,-0.5234626978635788],[116,216,74,-0.5220988970249891],[116,216,75,-0.5210578367114067],[116,216,76,-0.5203675851225853],[116,216,77,-0.5198098700493574],[116,216,78,-0.5188276823610067],[116,216,79,-0.5173675315454602],[116,217,64,-0.5358160398900509],[116,217,65,-0.5347721707075834],[116,217,66,-0.5331818107515574],[116,217,67,-0.5313086658716202],[116,217,68,-0.5296951904892921],[116,217,69,-0.5284427274018526],[116,217,70,-0.5275341626256704],[116,217,71,-0.5264874286949635],[116,217,72,-0.5250251665711403],[116,217,73,-0.5234626978635788],[116,217,74,-0.5220988970249891],[116,217,75,-0.5210578367114067],[116,217,76,-0.5203675851225853],[116,217,77,-0.5198098700493574],[116,217,78,-0.5188276823610067],[116,217,79,-0.5173675315454602],[116,218,64,-0.5358160398900509],[116,218,65,-0.5347721707075834],[116,218,66,-0.5331818107515574],[116,218,67,-0.5313086658716202],[116,218,68,-0.5296951904892921],[116,218,69,-0.5284427274018526],[116,218,70,-0.5275341626256704],[116,218,71,-0.5264874286949635],[116,218,72,-0.5250251665711403],[116,218,73,-0.5234626978635788],[116,218,74,-0.5220988970249891],[116,218,75,-0.5210578367114067],[116,218,76,-0.5203675851225853],[116,218,77,-0.5198098700493574],[116,218,78,-0.5188276823610067],[116,218,79,-0.5173675315454602],[116,219,64,-0.5358160398900509],[116,219,65,-0.5347721707075834],[116,219,66,-0.5331818107515574],[116,219,67,-0.5313086658716202],[116,219,68,-0.5296951904892921],[116,219,69,-0.5284427274018526],[116,219,70,-0.5275341626256704],[116,219,71,-0.5264874286949635],[116,219,72,-0.5250251665711403],[116,219,73,-0.5234626978635788],[116,219,74,-0.5220988970249891],[116,219,75,-0.5210578367114067],[116,219,76,-0.5203675851225853],[116,219,77,-0.5198098700493574],[116,219,78,-0.5188276823610067],[116,219,79,-0.5173675315454602],[116,220,64,-0.5358160398900509],[116,220,65,-0.5347721707075834],[116,220,66,-0.5331818107515574],[116,220,67,-0.5313086658716202],[116,220,68,-0.5296951904892921],[116,220,69,-0.5284427274018526],[116,220,70,-0.5275341626256704],[116,220,71,-0.5264874286949635],[116,220,72,-0.5250251665711403],[116,220,73,-0.5234626978635788],[116,220,74,-0.5220988970249891],[116,220,75,-0.5210578367114067],[116,220,76,-0.5203675851225853],[116,220,77,-0.5198098700493574],[116,220,78,-0.5188276823610067],[116,220,79,-0.5173675315454602],[116,221,64,-0.5358160398900509],[116,221,65,-0.5347721707075834],[116,221,66,-0.5331818107515574],[116,221,67,-0.5313086658716202],[116,221,68,-0.5296951904892921],[116,221,69,-0.5284427274018526],[116,221,70,-0.5275341626256704],[116,221,71,-0.5264874286949635],[116,221,72,-0.5250251665711403],[116,221,73,-0.5234626978635788],[116,221,74,-0.5220988970249891],[116,221,75,-0.5210578367114067],[116,221,76,-0.5203675851225853],[116,221,77,-0.5198098700493574],[116,221,78,-0.5188276823610067],[116,221,79,-0.5173675315454602],[116,222,64,-0.5358160398900509],[116,222,65,-0.5347721707075834],[116,222,66,-0.5331818107515574],[116,222,67,-0.5313086658716202],[116,222,68,-0.5296951904892921],[116,222,69,-0.5284427274018526],[116,222,70,-0.5275341626256704],[116,222,71,-0.5264874286949635],[116,222,72,-0.5250251665711403],[116,222,73,-0.5234626978635788],[116,222,74,-0.5220988970249891],[116,222,75,-0.5210578367114067],[116,222,76,-0.5203675851225853],[116,222,77,-0.5198098700493574],[116,222,78,-0.5188276823610067],[116,222,79,-0.5173675315454602],[116,223,64,-0.5358160398900509],[116,223,65,-0.5347721707075834],[116,223,66,-0.5331818107515574],[116,223,67,-0.5313086658716202],[116,223,68,-0.5296951904892921],[116,223,69,-0.5284427274018526],[116,223,70,-0.5275341626256704],[116,223,71,-0.5264874286949635],[116,223,72,-0.5250251665711403],[116,223,73,-0.5234626978635788],[116,223,74,-0.5220988970249891],[116,223,75,-0.5210578367114067],[116,223,76,-0.5203675851225853],[116,223,77,-0.5198098700493574],[116,223,78,-0.5188276823610067],[116,223,79,-0.5173675315454602],[116,224,64,-0.5358160398900509],[116,224,65,-0.5347721707075834],[116,224,66,-0.5331818107515574],[116,224,67,-0.5313086658716202],[116,224,68,-0.5296951904892921],[116,224,69,-0.5284427274018526],[116,224,70,-0.5275341626256704],[116,224,71,-0.5264874286949635],[116,224,72,-0.5250251665711403],[116,224,73,-0.5234626978635788],[116,224,74,-0.5220988970249891],[116,224,75,-0.5210578367114067],[116,224,76,-0.5203675851225853],[116,224,77,-0.5198098700493574],[116,224,78,-0.5188276823610067],[116,224,79,-0.5173675315454602],[116,225,64,-0.5358160398900509],[116,225,65,-0.5347721707075834],[116,225,66,-0.5331818107515574],[116,225,67,-0.5313086658716202],[116,225,68,-0.5296951904892921],[116,225,69,-0.5284427274018526],[116,225,70,-0.5275341626256704],[116,225,71,-0.5264874286949635],[116,225,72,-0.5250251665711403],[116,225,73,-0.5234626978635788],[116,225,74,-0.5220988970249891],[116,225,75,-0.5210578367114067],[116,225,76,-0.5203675851225853],[116,225,77,-0.5198098700493574],[116,225,78,-0.5188276823610067],[116,225,79,-0.5173675315454602],[116,226,64,-0.5358160398900509],[116,226,65,-0.5347721707075834],[116,226,66,-0.5331818107515574],[116,226,67,-0.5313086658716202],[116,226,68,-0.5296951904892921],[116,226,69,-0.5284427274018526],[116,226,70,-0.5275341626256704],[116,226,71,-0.5264874286949635],[116,226,72,-0.5250251665711403],[116,226,73,-0.5234626978635788],[116,226,74,-0.5220988970249891],[116,226,75,-0.5210578367114067],[116,226,76,-0.5203675851225853],[116,226,77,-0.5198098700493574],[116,226,78,-0.5188276823610067],[116,226,79,-0.5173675315454602],[116,227,64,-0.5358160398900509],[116,227,65,-0.5347721707075834],[116,227,66,-0.5331818107515574],[116,227,67,-0.5313086658716202],[116,227,68,-0.5296951904892921],[116,227,69,-0.5284427274018526],[116,227,70,-0.5275341626256704],[116,227,71,-0.5264874286949635],[116,227,72,-0.5250251665711403],[116,227,73,-0.5234626978635788],[116,227,74,-0.5220988970249891],[116,227,75,-0.5210578367114067],[116,227,76,-0.5203675851225853],[116,227,77,-0.5198098700493574],[116,227,78,-0.5188276823610067],[116,227,79,-0.5173675315454602],[116,228,64,-0.5358160398900509],[116,228,65,-0.5347721707075834],[116,228,66,-0.5331818107515574],[116,228,67,-0.5313086658716202],[116,228,68,-0.5296951904892921],[116,228,69,-0.5284427274018526],[116,228,70,-0.5275341626256704],[116,228,71,-0.5264874286949635],[116,228,72,-0.5250251665711403],[116,228,73,-0.5234626978635788],[116,228,74,-0.5220988970249891],[116,228,75,-0.5210578367114067],[116,228,76,-0.5203675851225853],[116,228,77,-0.5198098700493574],[116,228,78,-0.5188276823610067],[116,228,79,-0.5173675315454602],[116,229,64,-0.5358160398900509],[116,229,65,-0.5347721707075834],[116,229,66,-0.5331818107515574],[116,229,67,-0.5313086658716202],[116,229,68,-0.5296951904892921],[116,229,69,-0.5284427274018526],[116,229,70,-0.5275341626256704],[116,229,71,-0.5264874286949635],[116,229,72,-0.5250251665711403],[116,229,73,-0.5234626978635788],[116,229,74,-0.5220988970249891],[116,229,75,-0.5210578367114067],[116,229,76,-0.5203675851225853],[116,229,77,-0.5198098700493574],[116,229,78,-0.5188276823610067],[116,229,79,-0.5173675315454602],[116,230,64,-0.5358160398900509],[116,230,65,-0.5347721707075834],[116,230,66,-0.5331818107515574],[116,230,67,-0.5313086658716202],[116,230,68,-0.5296951904892921],[116,230,69,-0.5284427274018526],[116,230,70,-0.5275341626256704],[116,230,71,-0.5264874286949635],[116,230,72,-0.5250251665711403],[116,230,73,-0.5234626978635788],[116,230,74,-0.5220988970249891],[116,230,75,-0.5210578367114067],[116,230,76,-0.5203675851225853],[116,230,77,-0.5198098700493574],[116,230,78,-0.5188276823610067],[116,230,79,-0.5173675315454602],[116,231,64,-0.5358160398900509],[116,231,65,-0.5347721707075834],[116,231,66,-0.5331818107515574],[116,231,67,-0.5313086658716202],[116,231,68,-0.5296951904892921],[116,231,69,-0.5284427274018526],[116,231,70,-0.5275341626256704],[116,231,71,-0.5264874286949635],[116,231,72,-0.5250251665711403],[116,231,73,-0.5234626978635788],[116,231,74,-0.5220988970249891],[116,231,75,-0.5210578367114067],[116,231,76,-0.5203675851225853],[116,231,77,-0.5198098700493574],[116,231,78,-0.5188276823610067],[116,231,79,-0.5173675315454602],[116,232,64,-0.5358160398900509],[116,232,65,-0.5347721707075834],[116,232,66,-0.5331818107515574],[116,232,67,-0.5313086658716202],[116,232,68,-0.5296951904892921],[116,232,69,-0.5284427274018526],[116,232,70,-0.5275341626256704],[116,232,71,-0.5264874286949635],[116,232,72,-0.5250251665711403],[116,232,73,-0.5234626978635788],[116,232,74,-0.5220988970249891],[116,232,75,-0.5210578367114067],[116,232,76,-0.5203675851225853],[116,232,77,-0.5198098700493574],[116,232,78,-0.5188276823610067],[116,232,79,-0.5173675315454602],[116,233,64,-0.5358160398900509],[116,233,65,-0.5347721707075834],[116,233,66,-0.5331818107515574],[116,233,67,-0.5313086658716202],[116,233,68,-0.5296951904892921],[116,233,69,-0.5284427274018526],[116,233,70,-0.5275341626256704],[116,233,71,-0.5264874286949635],[116,233,72,-0.5250251665711403],[116,233,73,-0.5234626978635788],[116,233,74,-0.5220988970249891],[116,233,75,-0.5210578367114067],[116,233,76,-0.5203675851225853],[116,233,77,-0.5198098700493574],[116,233,78,-0.5188276823610067],[116,233,79,-0.5173675315454602],[116,234,64,-0.5358160398900509],[116,234,65,-0.5347721707075834],[116,234,66,-0.5331818107515574],[116,234,67,-0.5313086658716202],[116,234,68,-0.5296951904892921],[116,234,69,-0.5284427274018526],[116,234,70,-0.5275341626256704],[116,234,71,-0.5264874286949635],[116,234,72,-0.5250251665711403],[116,234,73,-0.5234626978635788],[116,234,74,-0.5220988970249891],[116,234,75,-0.5210578367114067],[116,234,76,-0.5203675851225853],[116,234,77,-0.5198098700493574],[116,234,78,-0.5188276823610067],[116,234,79,-0.5173675315454602],[116,235,64,-0.5358160398900509],[116,235,65,-0.5347721707075834],[116,235,66,-0.5331818107515574],[116,235,67,-0.5313086658716202],[116,235,68,-0.5296951904892921],[116,235,69,-0.5284427274018526],[116,235,70,-0.5275341626256704],[116,235,71,-0.5264874286949635],[116,235,72,-0.5250251665711403],[116,235,73,-0.5234626978635788],[116,235,74,-0.5220988970249891],[116,235,75,-0.5210578367114067],[116,235,76,-0.5203675851225853],[116,235,77,-0.5198098700493574],[116,235,78,-0.5188276823610067],[116,235,79,-0.5173675315454602],[116,236,64,-0.5358160398900509],[116,236,65,-0.5347721707075834],[116,236,66,-0.5331818107515574],[116,236,67,-0.5313086658716202],[116,236,68,-0.5296951904892921],[116,236,69,-0.5284427274018526],[116,236,70,-0.5275341626256704],[116,236,71,-0.5264874286949635],[116,236,72,-0.5250251665711403],[116,236,73,-0.5234626978635788],[116,236,74,-0.5220988970249891],[116,236,75,-0.5210578367114067],[116,236,76,-0.5203675851225853],[116,236,77,-0.5198098700493574],[116,236,78,-0.5188276823610067],[116,236,79,-0.5173675315454602],[116,237,64,-0.5358160398900509],[116,237,65,-0.5347721707075834],[116,237,66,-0.5331818107515574],[116,237,67,-0.5313086658716202],[116,237,68,-0.5296951904892921],[116,237,69,-0.5284427274018526],[116,237,70,-0.5275341626256704],[116,237,71,-0.5264874286949635],[116,237,72,-0.5250251665711403],[116,237,73,-0.5234626978635788],[116,237,74,-0.5220988970249891],[116,237,75,-0.5210578367114067],[116,237,76,-0.5203675851225853],[116,237,77,-0.5198098700493574],[116,237,78,-0.5188276823610067],[116,237,79,-0.5173675315454602],[116,238,64,-0.5358160398900509],[116,238,65,-0.5347721707075834],[116,238,66,-0.5331818107515574],[116,238,67,-0.5313086658716202],[116,238,68,-0.5296951904892921],[116,238,69,-0.5284427274018526],[116,238,70,-0.5275341626256704],[116,238,71,-0.5264874286949635],[116,238,72,-0.5250251665711403],[116,238,73,-0.5234626978635788],[116,238,74,-0.5220988970249891],[116,238,75,-0.5210578367114067],[116,238,76,-0.5203675851225853],[116,238,77,-0.5198098700493574],[116,238,78,-0.5188276823610067],[116,238,79,-0.5173675315454602],[116,239,64,-0.5358160398900509],[116,239,65,-0.5347721707075834],[116,239,66,-0.5331818107515574],[116,239,67,-0.5313086658716202],[116,239,68,-0.5296951904892921],[116,239,69,-0.5284427274018526],[116,239,70,-0.5275341626256704],[116,239,71,-0.5264874286949635],[116,239,72,-0.5250251665711403],[116,239,73,-0.5234626978635788],[116,239,74,-0.5220988970249891],[116,239,75,-0.5210578367114067],[116,239,76,-0.5203675851225853],[116,239,77,-0.5198098700493574],[116,239,78,-0.5188276823610067],[116,239,79,-0.5173675315454602],[116,240,64,-0.5358160398900509],[116,240,65,-0.5347721707075834],[116,240,66,-0.5331818107515574],[116,240,67,-0.5313086658716202],[116,240,68,-0.5296951904892921],[116,240,69,-0.5284427274018526],[116,240,70,-0.5275341626256704],[116,240,71,-0.5264874286949635],[116,240,72,-0.5250251665711403],[116,240,73,-0.5234626978635788],[116,240,74,-0.5220988970249891],[116,240,75,-0.5210578367114067],[116,240,76,-0.5203675851225853],[116,240,77,-0.5198098700493574],[116,240,78,-0.5188276823610067],[116,240,79,-0.5173675315454602],[116,241,64,-0.5358160398900509],[116,241,65,-0.5347721707075834],[116,241,66,-0.5331818107515574],[116,241,67,-0.5313086658716202],[116,241,68,-0.5296951904892921],[116,241,69,-0.5284427274018526],[116,241,70,-0.5275341626256704],[116,241,71,-0.5264874286949635],[116,241,72,-0.5250251665711403],[116,241,73,-0.5234626978635788],[116,241,74,-0.5220988970249891],[116,241,75,-0.5210578367114067],[116,241,76,-0.5203675851225853],[116,241,77,-0.5198098700493574],[116,241,78,-0.5188276823610067],[116,241,79,-0.5173675315454602],[116,242,64,-0.5358160398900509],[116,242,65,-0.5347721707075834],[116,242,66,-0.5331818107515574],[116,242,67,-0.5313086658716202],[116,242,68,-0.5296951904892921],[116,242,69,-0.5284427274018526],[116,242,70,-0.5275341626256704],[116,242,71,-0.5264874286949635],[116,242,72,-0.5250251665711403],[116,242,73,-0.5234626978635788],[116,242,74,-0.5220988970249891],[116,242,75,-0.5210578367114067],[116,242,76,-0.5203675851225853],[116,242,77,-0.5198098700493574],[116,242,78,-0.5188276823610067],[116,242,79,-0.5173675315454602],[116,243,64,-0.5358160398900509],[116,243,65,-0.5347721707075834],[116,243,66,-0.5331818107515574],[116,243,67,-0.5313086658716202],[116,243,68,-0.5296951904892921],[116,243,69,-0.5284427274018526],[116,243,70,-0.5275341626256704],[116,243,71,-0.5264874286949635],[116,243,72,-0.5250251665711403],[116,243,73,-0.5234626978635788],[116,243,74,-0.5220988970249891],[116,243,75,-0.5210578367114067],[116,243,76,-0.5203675851225853],[116,243,77,-0.5198098700493574],[116,243,78,-0.5188276823610067],[116,243,79,-0.5173675315454602],[116,244,64,-0.5358160398900509],[116,244,65,-0.5347721707075834],[116,244,66,-0.5331818107515574],[116,244,67,-0.5313086658716202],[116,244,68,-0.5296951904892921],[116,244,69,-0.5284427274018526],[116,244,70,-0.5275341626256704],[116,244,71,-0.5264874286949635],[116,244,72,-0.5250251665711403],[116,244,73,-0.5234626978635788],[116,244,74,-0.5220988970249891],[116,244,75,-0.5210578367114067],[116,244,76,-0.5203675851225853],[116,244,77,-0.5198098700493574],[116,244,78,-0.5188276823610067],[116,244,79,-0.5173675315454602],[116,245,64,-0.5358160398900509],[116,245,65,-0.5347721707075834],[116,245,66,-0.5331818107515574],[116,245,67,-0.5313086658716202],[116,245,68,-0.5296951904892921],[116,245,69,-0.5284427274018526],[116,245,70,-0.5275341626256704],[116,245,71,-0.5264874286949635],[116,245,72,-0.5250251665711403],[116,245,73,-0.5234626978635788],[116,245,74,-0.5220988970249891],[116,245,75,-0.5210578367114067],[116,245,76,-0.5203675851225853],[116,245,77,-0.5198098700493574],[116,245,78,-0.5188276823610067],[116,245,79,-0.5173675315454602],[116,246,64,-0.5358160398900509],[116,246,65,-0.5347721707075834],[116,246,66,-0.5331818107515574],[116,246,67,-0.5313086658716202],[116,246,68,-0.5296951904892921],[116,246,69,-0.5284427274018526],[116,246,70,-0.5275341626256704],[116,246,71,-0.5264874286949635],[116,246,72,-0.5250251665711403],[116,246,73,-0.5234626978635788],[116,246,74,-0.5220988970249891],[116,246,75,-0.5210578367114067],[116,246,76,-0.5203675851225853],[116,246,77,-0.5198098700493574],[116,246,78,-0.5188276823610067],[116,246,79,-0.5173675315454602],[116,247,64,-0.5358160398900509],[116,247,65,-0.5347721707075834],[116,247,66,-0.5331818107515574],[116,247,67,-0.5313086658716202],[116,247,68,-0.5296951904892921],[116,247,69,-0.5284427274018526],[116,247,70,-0.5275341626256704],[116,247,71,-0.5264874286949635],[116,247,72,-0.5250251665711403],[116,247,73,-0.5234626978635788],[116,247,74,-0.5220988970249891],[116,247,75,-0.5210578367114067],[116,247,76,-0.5203675851225853],[116,247,77,-0.5198098700493574],[116,247,78,-0.5188276823610067],[116,247,79,-0.5173675315454602],[116,248,64,-0.5358160398900509],[116,248,65,-0.5347721707075834],[116,248,66,-0.5331818107515574],[116,248,67,-0.5313086658716202],[116,248,68,-0.5296951904892921],[116,248,69,-0.5284427274018526],[116,248,70,-0.5275341626256704],[116,248,71,-0.5264874286949635],[116,248,72,-0.5250251665711403],[116,248,73,-0.5234626978635788],[116,248,74,-0.5220988970249891],[116,248,75,-0.5210578367114067],[116,248,76,-0.5203675851225853],[116,248,77,-0.5198098700493574],[116,248,78,-0.5188276823610067],[116,248,79,-0.5173675315454602],[116,249,64,-0.5358160398900509],[116,249,65,-0.5347721707075834],[116,249,66,-0.5331818107515574],[116,249,67,-0.5313086658716202],[116,249,68,-0.5296951904892921],[116,249,69,-0.5284427274018526],[116,249,70,-0.5275341626256704],[116,249,71,-0.5264874286949635],[116,249,72,-0.5250251665711403],[116,249,73,-0.5234626978635788],[116,249,74,-0.5220988970249891],[116,249,75,-0.5210578367114067],[116,249,76,-0.5203675851225853],[116,249,77,-0.5198098700493574],[116,249,78,-0.5188276823610067],[116,249,79,-0.5173675315454602],[116,250,64,-0.5358160398900509],[116,250,65,-0.5347721707075834],[116,250,66,-0.5331818107515574],[116,250,67,-0.5313086658716202],[116,250,68,-0.5296951904892921],[116,250,69,-0.5284427274018526],[116,250,70,-0.5275341626256704],[116,250,71,-0.5264874286949635],[116,250,72,-0.5250251665711403],[116,250,73,-0.5234626978635788],[116,250,74,-0.5220988970249891],[116,250,75,-0.5210578367114067],[116,250,76,-0.5203675851225853],[116,250,77,-0.5198098700493574],[116,250,78,-0.5188276823610067],[116,250,79,-0.5173675315454602],[116,251,64,-0.5358160398900509],[116,251,65,-0.5347721707075834],[116,251,66,-0.5331818107515574],[116,251,67,-0.5313086658716202],[116,251,68,-0.5296951904892921],[116,251,69,-0.5284427274018526],[116,251,70,-0.5275341626256704],[116,251,71,-0.5264874286949635],[116,251,72,-0.5250251665711403],[116,251,73,-0.5234626978635788],[116,251,74,-0.5220988970249891],[116,251,75,-0.5210578367114067],[116,251,76,-0.5203675851225853],[116,251,77,-0.5198098700493574],[116,251,78,-0.5188276823610067],[116,251,79,-0.5173675315454602],[116,252,64,-0.5358160398900509],[116,252,65,-0.5347721707075834],[116,252,66,-0.5331818107515574],[116,252,67,-0.5313086658716202],[116,252,68,-0.5296951904892921],[116,252,69,-0.5284427274018526],[116,252,70,-0.5275341626256704],[116,252,71,-0.5264874286949635],[116,252,72,-0.5250251665711403],[116,252,73,-0.5234626978635788],[116,252,74,-0.5220988970249891],[116,252,75,-0.5210578367114067],[116,252,76,-0.5203675851225853],[116,252,77,-0.5198098700493574],[116,252,78,-0.5188276823610067],[116,252,79,-0.5173675315454602],[116,253,64,-0.5358160398900509],[116,253,65,-0.5347721707075834],[116,253,66,-0.5331818107515574],[116,253,67,-0.5313086658716202],[116,253,68,-0.5296951904892921],[116,253,69,-0.5284427274018526],[116,253,70,-0.5275341626256704],[116,253,71,-0.5264874286949635],[116,253,72,-0.5250251665711403],[116,253,73,-0.5234626978635788],[116,253,74,-0.5220988970249891],[116,253,75,-0.5210578367114067],[116,253,76,-0.5203675851225853],[116,253,77,-0.5198098700493574],[116,253,78,-0.5188276823610067],[116,253,79,-0.5173675315454602],[116,254,64,-0.5358160398900509],[116,254,65,-0.5347721707075834],[116,254,66,-0.5331818107515574],[116,254,67,-0.5313086658716202],[116,254,68,-0.5296951904892921],[116,254,69,-0.5284427274018526],[116,254,70,-0.5275341626256704],[116,254,71,-0.5264874286949635],[116,254,72,-0.5250251665711403],[116,254,73,-0.5234626978635788],[116,254,74,-0.5220988970249891],[116,254,75,-0.5210578367114067],[116,254,76,-0.5203675851225853],[116,254,77,-0.5198098700493574],[116,254,78,-0.5188276823610067],[116,254,79,-0.5173675315454602],[116,255,64,-0.5358160398900509],[116,255,65,-0.5347721707075834],[116,255,66,-0.5331818107515574],[116,255,67,-0.5313086658716202],[116,255,68,-0.5296951904892921],[116,255,69,-0.5284427274018526],[116,255,70,-0.5275341626256704],[116,255,71,-0.5264874286949635],[116,255,72,-0.5250251665711403],[116,255,73,-0.5234626978635788],[116,255,74,-0.5220988970249891],[116,255,75,-0.5210578367114067],[116,255,76,-0.5203675851225853],[116,255,77,-0.5198098700493574],[116,255,78,-0.5188276823610067],[116,255,79,-0.5173675315454602],[116,256,64,-0.5358160398900509],[116,256,65,-0.5347721707075834],[116,256,66,-0.5331818107515574],[116,256,67,-0.5313086658716202],[116,256,68,-0.5296951904892921],[116,256,69,-0.5284427274018526],[116,256,70,-0.5275341626256704],[116,256,71,-0.5264874286949635],[116,256,72,-0.5250251665711403],[116,256,73,-0.5234626978635788],[116,256,74,-0.5220988970249891],[116,256,75,-0.5210578367114067],[116,256,76,-0.5203675851225853],[116,256,77,-0.5198098700493574],[116,256,78,-0.5188276823610067],[116,256,79,-0.5173675315454602],[116,257,64,-0.5358160398900509],[116,257,65,-0.5347721707075834],[116,257,66,-0.5331818107515574],[116,257,67,-0.5313086658716202],[116,257,68,-0.5296951904892921],[116,257,69,-0.5284427274018526],[116,257,70,-0.5275341626256704],[116,257,71,-0.5264874286949635],[116,257,72,-0.5250251665711403],[116,257,73,-0.5234626978635788],[116,257,74,-0.5220988970249891],[116,257,75,-0.5210578367114067],[116,257,76,-0.5203675851225853],[116,257,77,-0.5198098700493574],[116,257,78,-0.5188276823610067],[116,257,79,-0.5173675315454602],[116,258,64,-0.5358160398900509],[116,258,65,-0.5347721707075834],[116,258,66,-0.5331818107515574],[116,258,67,-0.5313086658716202],[116,258,68,-0.5296951904892921],[116,258,69,-0.5284427274018526],[116,258,70,-0.5275341626256704],[116,258,71,-0.5264874286949635],[116,258,72,-0.5250251665711403],[116,258,73,-0.5234626978635788],[116,258,74,-0.5220988970249891],[116,258,75,-0.5210578367114067],[116,258,76,-0.5203675851225853],[116,258,77,-0.5198098700493574],[116,258,78,-0.5188276823610067],[116,258,79,-0.5173675315454602],[116,259,64,-0.5358160398900509],[116,259,65,-0.5347721707075834],[116,259,66,-0.5331818107515574],[116,259,67,-0.5313086658716202],[116,259,68,-0.5296951904892921],[116,259,69,-0.5284427274018526],[116,259,70,-0.5275341626256704],[116,259,71,-0.5264874286949635],[116,259,72,-0.5250251665711403],[116,259,73,-0.5234626978635788],[116,259,74,-0.5220988970249891],[116,259,75,-0.5210578367114067],[116,259,76,-0.5203675851225853],[116,259,77,-0.5198098700493574],[116,259,78,-0.5188276823610067],[116,259,79,-0.5173675315454602],[116,260,64,-0.5358160398900509],[116,260,65,-0.5347721707075834],[116,260,66,-0.5331818107515574],[116,260,67,-0.5313086658716202],[116,260,68,-0.5296951904892921],[116,260,69,-0.5284427274018526],[116,260,70,-0.5275341626256704],[116,260,71,-0.5264874286949635],[116,260,72,-0.5250251665711403],[116,260,73,-0.5234626978635788],[116,260,74,-0.5220988970249891],[116,260,75,-0.5210578367114067],[116,260,76,-0.5203675851225853],[116,260,77,-0.5198098700493574],[116,260,78,-0.5188276823610067],[116,260,79,-0.5173675315454602],[116,261,64,-0.5358160398900509],[116,261,65,-0.5347721707075834],[116,261,66,-0.5331818107515574],[116,261,67,-0.5313086658716202],[116,261,68,-0.5296951904892921],[116,261,69,-0.5284427274018526],[116,261,70,-0.5275341626256704],[116,261,71,-0.5264874286949635],[116,261,72,-0.5250251665711403],[116,261,73,-0.5234626978635788],[116,261,74,-0.5220988970249891],[116,261,75,-0.5210578367114067],[116,261,76,-0.5203675851225853],[116,261,77,-0.5198098700493574],[116,261,78,-0.5188276823610067],[116,261,79,-0.5173675315454602],[116,262,64,-0.5358160398900509],[116,262,65,-0.5347721707075834],[116,262,66,-0.5331818107515574],[116,262,67,-0.5313086658716202],[116,262,68,-0.5296951904892921],[116,262,69,-0.5284427274018526],[116,262,70,-0.5275341626256704],[116,262,71,-0.5264874286949635],[116,262,72,-0.5250251665711403],[116,262,73,-0.5234626978635788],[116,262,74,-0.5220988970249891],[116,262,75,-0.5210578367114067],[116,262,76,-0.5203675851225853],[116,262,77,-0.5198098700493574],[116,262,78,-0.5188276823610067],[116,262,79,-0.5173675315454602],[116,263,64,-0.5358160398900509],[116,263,65,-0.5347721707075834],[116,263,66,-0.5331818107515574],[116,263,67,-0.5313086658716202],[116,263,68,-0.5296951904892921],[116,263,69,-0.5284427274018526],[116,263,70,-0.5275341626256704],[116,263,71,-0.5264874286949635],[116,263,72,-0.5250251665711403],[116,263,73,-0.5234626978635788],[116,263,74,-0.5220988970249891],[116,263,75,-0.5210578367114067],[116,263,76,-0.5203675851225853],[116,263,77,-0.5198098700493574],[116,263,78,-0.5188276823610067],[116,263,79,-0.5173675315454602],[116,264,64,-0.5358160398900509],[116,264,65,-0.5347721707075834],[116,264,66,-0.5331818107515574],[116,264,67,-0.5313086658716202],[116,264,68,-0.5296951904892921],[116,264,69,-0.5284427274018526],[116,264,70,-0.5275341626256704],[116,264,71,-0.5264874286949635],[116,264,72,-0.5250251665711403],[116,264,73,-0.5234626978635788],[116,264,74,-0.5220988970249891],[116,264,75,-0.5210578367114067],[116,264,76,-0.5203675851225853],[116,264,77,-0.5198098700493574],[116,264,78,-0.5188276823610067],[116,264,79,-0.5173675315454602],[116,265,64,-0.5358160398900509],[116,265,65,-0.5347721707075834],[116,265,66,-0.5331818107515574],[116,265,67,-0.5313086658716202],[116,265,68,-0.5296951904892921],[116,265,69,-0.5284427274018526],[116,265,70,-0.5275341626256704],[116,265,71,-0.5264874286949635],[116,265,72,-0.5250251665711403],[116,265,73,-0.5234626978635788],[116,265,74,-0.5220988970249891],[116,265,75,-0.5210578367114067],[116,265,76,-0.5203675851225853],[116,265,77,-0.5198098700493574],[116,265,78,-0.5188276823610067],[116,265,79,-0.5173675315454602],[116,266,64,-0.5358160398900509],[116,266,65,-0.5347721707075834],[116,266,66,-0.5331818107515574],[116,266,67,-0.5313086658716202],[116,266,68,-0.5296951904892921],[116,266,69,-0.5284427274018526],[116,266,70,-0.5275341626256704],[116,266,71,-0.5264874286949635],[116,266,72,-0.5250251665711403],[116,266,73,-0.5234626978635788],[116,266,74,-0.5220988970249891],[116,266,75,-0.5210578367114067],[116,266,76,-0.5203675851225853],[116,266,77,-0.5198098700493574],[116,266,78,-0.5188276823610067],[116,266,79,-0.5173675315454602],[116,267,64,-0.5358160398900509],[116,267,65,-0.5347721707075834],[116,267,66,-0.5331818107515574],[116,267,67,-0.5313086658716202],[116,267,68,-0.5296951904892921],[116,267,69,-0.5284427274018526],[116,267,70,-0.5275341626256704],[116,267,71,-0.5264874286949635],[116,267,72,-0.5250251665711403],[116,267,73,-0.5234626978635788],[116,267,74,-0.5220988970249891],[116,267,75,-0.5210578367114067],[116,267,76,-0.5203675851225853],[116,267,77,-0.5198098700493574],[116,267,78,-0.5188276823610067],[116,267,79,-0.5173675315454602],[116,268,64,-0.5358160398900509],[116,268,65,-0.5347721707075834],[116,268,66,-0.5331818107515574],[116,268,67,-0.5313086658716202],[116,268,68,-0.5296951904892921],[116,268,69,-0.5284427274018526],[116,268,70,-0.5275341626256704],[116,268,71,-0.5264874286949635],[116,268,72,-0.5250251665711403],[116,268,73,-0.5234626978635788],[116,268,74,-0.5220988970249891],[116,268,75,-0.5210578367114067],[116,268,76,-0.5203675851225853],[116,268,77,-0.5198098700493574],[116,268,78,-0.5188276823610067],[116,268,79,-0.5173675315454602],[116,269,64,-0.5358160398900509],[116,269,65,-0.5347721707075834],[116,269,66,-0.5331818107515574],[116,269,67,-0.5313086658716202],[116,269,68,-0.5296951904892921],[116,269,69,-0.5284427274018526],[116,269,70,-0.5275341626256704],[116,269,71,-0.5264874286949635],[116,269,72,-0.5250251665711403],[116,269,73,-0.5234626978635788],[116,269,74,-0.5220988970249891],[116,269,75,-0.5210578367114067],[116,269,76,-0.5203675851225853],[116,269,77,-0.5198098700493574],[116,269,78,-0.5188276823610067],[116,269,79,-0.5173675315454602],[116,270,64,-0.5358160398900509],[116,270,65,-0.5347721707075834],[116,270,66,-0.5331818107515574],[116,270,67,-0.5313086658716202],[116,270,68,-0.5296951904892921],[116,270,69,-0.5284427274018526],[116,270,70,-0.5275341626256704],[116,270,71,-0.5264874286949635],[116,270,72,-0.5250251665711403],[116,270,73,-0.5234626978635788],[116,270,74,-0.5220988970249891],[116,270,75,-0.5210578367114067],[116,270,76,-0.5203675851225853],[116,270,77,-0.5198098700493574],[116,270,78,-0.5188276823610067],[116,270,79,-0.5173675315454602],[116,271,64,-0.5358160398900509],[116,271,65,-0.5347721707075834],[116,271,66,-0.5331818107515574],[116,271,67,-0.5313086658716202],[116,271,68,-0.5296951904892921],[116,271,69,-0.5284427274018526],[116,271,70,-0.5275341626256704],[116,271,71,-0.5264874286949635],[116,271,72,-0.5250251665711403],[116,271,73,-0.5234626978635788],[116,271,74,-0.5220988970249891],[116,271,75,-0.5210578367114067],[116,271,76,-0.5203675851225853],[116,271,77,-0.5198098700493574],[116,271,78,-0.5188276823610067],[116,271,79,-0.5173675315454602],[116,272,64,-0.5358160398900509],[116,272,65,-0.5347721707075834],[116,272,66,-0.5331818107515574],[116,272,67,-0.5313086658716202],[116,272,68,-0.5296951904892921],[116,272,69,-0.5284427274018526],[116,272,70,-0.5275341626256704],[116,272,71,-0.5264874286949635],[116,272,72,-0.5250251665711403],[116,272,73,-0.5234626978635788],[116,272,74,-0.5220988970249891],[116,272,75,-0.5210578367114067],[116,272,76,-0.5203675851225853],[116,272,77,-0.5198098700493574],[116,272,78,-0.5188276823610067],[116,272,79,-0.5173675315454602],[116,273,64,-0.5358160398900509],[116,273,65,-0.5347721707075834],[116,273,66,-0.5331818107515574],[116,273,67,-0.5313086658716202],[116,273,68,-0.5296951904892921],[116,273,69,-0.5284427274018526],[116,273,70,-0.5275341626256704],[116,273,71,-0.5264874286949635],[116,273,72,-0.5250251665711403],[116,273,73,-0.5234626978635788],[116,273,74,-0.5220988970249891],[116,273,75,-0.5210578367114067],[116,273,76,-0.5203675851225853],[116,273,77,-0.5198098700493574],[116,273,78,-0.5188276823610067],[116,273,79,-0.5173675315454602],[116,274,64,-0.5358160398900509],[116,274,65,-0.5347721707075834],[116,274,66,-0.5331818107515574],[116,274,67,-0.5313086658716202],[116,274,68,-0.5296951904892921],[116,274,69,-0.5284427274018526],[116,274,70,-0.5275341626256704],[116,274,71,-0.5264874286949635],[116,274,72,-0.5250251665711403],[116,274,73,-0.5234626978635788],[116,274,74,-0.5220988970249891],[116,274,75,-0.5210578367114067],[116,274,76,-0.5203675851225853],[116,274,77,-0.5198098700493574],[116,274,78,-0.5188276823610067],[116,274,79,-0.5173675315454602],[116,275,64,-0.5358160398900509],[116,275,65,-0.5347721707075834],[116,275,66,-0.5331818107515574],[116,275,67,-0.5313086658716202],[116,275,68,-0.5296951904892921],[116,275,69,-0.5284427274018526],[116,275,70,-0.5275341626256704],[116,275,71,-0.5264874286949635],[116,275,72,-0.5250251665711403],[116,275,73,-0.5234626978635788],[116,275,74,-0.5220988970249891],[116,275,75,-0.5210578367114067],[116,275,76,-0.5203675851225853],[116,275,77,-0.5198098700493574],[116,275,78,-0.5188276823610067],[116,275,79,-0.5173675315454602],[116,276,64,-0.5358160398900509],[116,276,65,-0.5347721707075834],[116,276,66,-0.5331818107515574],[116,276,67,-0.5313086658716202],[116,276,68,-0.5296951904892921],[116,276,69,-0.5284427274018526],[116,276,70,-0.5275341626256704],[116,276,71,-0.5264874286949635],[116,276,72,-0.5250251665711403],[116,276,73,-0.5234626978635788],[116,276,74,-0.5220988970249891],[116,276,75,-0.5210578367114067],[116,276,76,-0.5203675851225853],[116,276,77,-0.5198098700493574],[116,276,78,-0.5188276823610067],[116,276,79,-0.5173675315454602],[116,277,64,-0.5358160398900509],[116,277,65,-0.5347721707075834],[116,277,66,-0.5331818107515574],[116,277,67,-0.5313086658716202],[116,277,68,-0.5296951904892921],[116,277,69,-0.5284427274018526],[116,277,70,-0.5275341626256704],[116,277,71,-0.5264874286949635],[116,277,72,-0.5250251665711403],[116,277,73,-0.5234626978635788],[116,277,74,-0.5220988970249891],[116,277,75,-0.5210578367114067],[116,277,76,-0.5203675851225853],[116,277,77,-0.5198098700493574],[116,277,78,-0.5188276823610067],[116,277,79,-0.5173675315454602],[116,278,64,-0.5358160398900509],[116,278,65,-0.5347721707075834],[116,278,66,-0.5331818107515574],[116,278,67,-0.5313086658716202],[116,278,68,-0.5296951904892921],[116,278,69,-0.5284427274018526],[116,278,70,-0.5275341626256704],[116,278,71,-0.5264874286949635],[116,278,72,-0.5250251665711403],[116,278,73,-0.5234626978635788],[116,278,74,-0.5220988970249891],[116,278,75,-0.5210578367114067],[116,278,76,-0.5203675851225853],[116,278,77,-0.5198098700493574],[116,278,78,-0.5188276823610067],[116,278,79,-0.5173675315454602],[116,279,64,-0.5358160398900509],[116,279,65,-0.5347721707075834],[116,279,66,-0.5331818107515574],[116,279,67,-0.5313086658716202],[116,279,68,-0.5296951904892921],[116,279,69,-0.5284427274018526],[116,279,70,-0.5275341626256704],[116,279,71,-0.5264874286949635],[116,279,72,-0.5250251665711403],[116,279,73,-0.5234626978635788],[116,279,74,-0.5220988970249891],[116,279,75,-0.5210578367114067],[116,279,76,-0.5203675851225853],[116,279,77,-0.5198098700493574],[116,279,78,-0.5188276823610067],[116,279,79,-0.5173675315454602],[116,280,64,-0.5358160398900509],[116,280,65,-0.5347721707075834],[116,280,66,-0.5331818107515574],[116,280,67,-0.5313086658716202],[116,280,68,-0.5296951904892921],[116,280,69,-0.5284427274018526],[116,280,70,-0.5275341626256704],[116,280,71,-0.5264874286949635],[116,280,72,-0.5250251665711403],[116,280,73,-0.5234626978635788],[116,280,74,-0.5220988970249891],[116,280,75,-0.5210578367114067],[116,280,76,-0.5203675851225853],[116,280,77,-0.5198098700493574],[116,280,78,-0.5188276823610067],[116,280,79,-0.5173675315454602],[116,281,64,-0.5358160398900509],[116,281,65,-0.5347721707075834],[116,281,66,-0.5331818107515574],[116,281,67,-0.5313086658716202],[116,281,68,-0.5296951904892921],[116,281,69,-0.5284427274018526],[116,281,70,-0.5275341626256704],[116,281,71,-0.5264874286949635],[116,281,72,-0.5250251665711403],[116,281,73,-0.5234626978635788],[116,281,74,-0.5220988970249891],[116,281,75,-0.5210578367114067],[116,281,76,-0.5203675851225853],[116,281,77,-0.5198098700493574],[116,281,78,-0.5188276823610067],[116,281,79,-0.5173675315454602],[116,282,64,-0.5358160398900509],[116,282,65,-0.5347721707075834],[116,282,66,-0.5331818107515574],[116,282,67,-0.5313086658716202],[116,282,68,-0.5296951904892921],[116,282,69,-0.5284427274018526],[116,282,70,-0.5275341626256704],[116,282,71,-0.5264874286949635],[116,282,72,-0.5250251665711403],[116,282,73,-0.5234626978635788],[116,282,74,-0.5220988970249891],[116,282,75,-0.5210578367114067],[116,282,76,-0.5203675851225853],[116,282,77,-0.5198098700493574],[116,282,78,-0.5188276823610067],[116,282,79,-0.5173675315454602],[116,283,64,-0.5358160398900509],[116,283,65,-0.5347721707075834],[116,283,66,-0.5331818107515574],[116,283,67,-0.5313086658716202],[116,283,68,-0.5296951904892921],[116,283,69,-0.5284427274018526],[116,283,70,-0.5275341626256704],[116,283,71,-0.5264874286949635],[116,283,72,-0.5250251665711403],[116,283,73,-0.5234626978635788],[116,283,74,-0.5220988970249891],[116,283,75,-0.5210578367114067],[116,283,76,-0.5203675851225853],[116,283,77,-0.5198098700493574],[116,283,78,-0.5188276823610067],[116,283,79,-0.5173675315454602],[116,284,64,-0.5358160398900509],[116,284,65,-0.5347721707075834],[116,284,66,-0.5331818107515574],[116,284,67,-0.5313086658716202],[116,284,68,-0.5296951904892921],[116,284,69,-0.5284427274018526],[116,284,70,-0.5275341626256704],[116,284,71,-0.5264874286949635],[116,284,72,-0.5250251665711403],[116,284,73,-0.5234626978635788],[116,284,74,-0.5220988970249891],[116,284,75,-0.5210578367114067],[116,284,76,-0.5203675851225853],[116,284,77,-0.5198098700493574],[116,284,78,-0.5188276823610067],[116,284,79,-0.5173675315454602],[116,285,64,-0.5358160398900509],[116,285,65,-0.5347721707075834],[116,285,66,-0.5331818107515574],[116,285,67,-0.5313086658716202],[116,285,68,-0.5296951904892921],[116,285,69,-0.5284427274018526],[116,285,70,-0.5275341626256704],[116,285,71,-0.5264874286949635],[116,285,72,-0.5250251665711403],[116,285,73,-0.5234626978635788],[116,285,74,-0.5220988970249891],[116,285,75,-0.5210578367114067],[116,285,76,-0.5203675851225853],[116,285,77,-0.5198098700493574],[116,285,78,-0.5188276823610067],[116,285,79,-0.5173675315454602],[116,286,64,-0.5358160398900509],[116,286,65,-0.5347721707075834],[116,286,66,-0.5331818107515574],[116,286,67,-0.5313086658716202],[116,286,68,-0.5296951904892921],[116,286,69,-0.5284427274018526],[116,286,70,-0.5275341626256704],[116,286,71,-0.5264874286949635],[116,286,72,-0.5250251665711403],[116,286,73,-0.5234626978635788],[116,286,74,-0.5220988970249891],[116,286,75,-0.5210578367114067],[116,286,76,-0.5203675851225853],[116,286,77,-0.5198098700493574],[116,286,78,-0.5188276823610067],[116,286,79,-0.5173675315454602],[116,287,64,-0.5358160398900509],[116,287,65,-0.5347721707075834],[116,287,66,-0.5331818107515574],[116,287,67,-0.5313086658716202],[116,287,68,-0.5296951904892921],[116,287,69,-0.5284427274018526],[116,287,70,-0.5275341626256704],[116,287,71,-0.5264874286949635],[116,287,72,-0.5250251665711403],[116,287,73,-0.5234626978635788],[116,287,74,-0.5220988970249891],[116,287,75,-0.5210578367114067],[116,287,76,-0.5203675851225853],[116,287,77,-0.5198098700493574],[116,287,78,-0.5188276823610067],[116,287,79,-0.5173675315454602],[116,288,64,-0.5358160398900509],[116,288,65,-0.5347721707075834],[116,288,66,-0.5331818107515574],[116,288,67,-0.5313086658716202],[116,288,68,-0.5296951904892921],[116,288,69,-0.5284427274018526],[116,288,70,-0.5275341626256704],[116,288,71,-0.5264874286949635],[116,288,72,-0.5250251665711403],[116,288,73,-0.5234626978635788],[116,288,74,-0.5220988970249891],[116,288,75,-0.5210578367114067],[116,288,76,-0.5203675851225853],[116,288,77,-0.5198098700493574],[116,288,78,-0.5188276823610067],[116,288,79,-0.5173675315454602],[116,289,64,-0.5358160398900509],[116,289,65,-0.5347721707075834],[116,289,66,-0.5331818107515574],[116,289,67,-0.5313086658716202],[116,289,68,-0.5296951904892921],[116,289,69,-0.5284427274018526],[116,289,70,-0.5275341626256704],[116,289,71,-0.5264874286949635],[116,289,72,-0.5250251665711403],[116,289,73,-0.5234626978635788],[116,289,74,-0.5220988970249891],[116,289,75,-0.5210578367114067],[116,289,76,-0.5203675851225853],[116,289,77,-0.5198098700493574],[116,289,78,-0.5188276823610067],[116,289,79,-0.5173675315454602],[116,290,64,-0.5358160398900509],[116,290,65,-0.5347721707075834],[116,290,66,-0.5331818107515574],[116,290,67,-0.5313086658716202],[116,290,68,-0.5296951904892921],[116,290,69,-0.5284427274018526],[116,290,70,-0.5275341626256704],[116,290,71,-0.5264874286949635],[116,290,72,-0.5250251665711403],[116,290,73,-0.5234626978635788],[116,290,74,-0.5220988970249891],[116,290,75,-0.5210578367114067],[116,290,76,-0.5203675851225853],[116,290,77,-0.5198098700493574],[116,290,78,-0.5188276823610067],[116,290,79,-0.5173675315454602],[116,291,64,-0.5358160398900509],[116,291,65,-0.5347721707075834],[116,291,66,-0.5331818107515574],[116,291,67,-0.5313086658716202],[116,291,68,-0.5296951904892921],[116,291,69,-0.5284427274018526],[116,291,70,-0.5275341626256704],[116,291,71,-0.5264874286949635],[116,291,72,-0.5250251665711403],[116,291,73,-0.5234626978635788],[116,291,74,-0.5220988970249891],[116,291,75,-0.5210578367114067],[116,291,76,-0.5203675851225853],[116,291,77,-0.5198098700493574],[116,291,78,-0.5188276823610067],[116,291,79,-0.5173675315454602],[116,292,64,-0.5358160398900509],[116,292,65,-0.5347721707075834],[116,292,66,-0.5331818107515574],[116,292,67,-0.5313086658716202],[116,292,68,-0.5296951904892921],[116,292,69,-0.5284427274018526],[116,292,70,-0.5275341626256704],[116,292,71,-0.5264874286949635],[116,292,72,-0.5250251665711403],[116,292,73,-0.5234626978635788],[116,292,74,-0.5220988970249891],[116,292,75,-0.5210578367114067],[116,292,76,-0.5203675851225853],[116,292,77,-0.5198098700493574],[116,292,78,-0.5188276823610067],[116,292,79,-0.5173675315454602],[116,293,64,-0.5358160398900509],[116,293,65,-0.5347721707075834],[116,293,66,-0.5331818107515574],[116,293,67,-0.5313086658716202],[116,293,68,-0.5296951904892921],[116,293,69,-0.5284427274018526],[116,293,70,-0.5275341626256704],[116,293,71,-0.5264874286949635],[116,293,72,-0.5250251665711403],[116,293,73,-0.5234626978635788],[116,293,74,-0.5220988970249891],[116,293,75,-0.5210578367114067],[116,293,76,-0.5203675851225853],[116,293,77,-0.5198098700493574],[116,293,78,-0.5188276823610067],[116,293,79,-0.5173675315454602],[116,294,64,-0.5358160398900509],[116,294,65,-0.5347721707075834],[116,294,66,-0.5331818107515574],[116,294,67,-0.5313086658716202],[116,294,68,-0.5296951904892921],[116,294,69,-0.5284427274018526],[116,294,70,-0.5275341626256704],[116,294,71,-0.5264874286949635],[116,294,72,-0.5250251665711403],[116,294,73,-0.5234626978635788],[116,294,74,-0.5220988970249891],[116,294,75,-0.5210578367114067],[116,294,76,-0.5203675851225853],[116,294,77,-0.5198098700493574],[116,294,78,-0.5188276823610067],[116,294,79,-0.5173675315454602],[116,295,64,-0.5358160398900509],[116,295,65,-0.5347721707075834],[116,295,66,-0.5331818107515574],[116,295,67,-0.5313086658716202],[116,295,68,-0.5296951904892921],[116,295,69,-0.5284427274018526],[116,295,70,-0.5275341626256704],[116,295,71,-0.5264874286949635],[116,295,72,-0.5250251665711403],[116,295,73,-0.5234626978635788],[116,295,74,-0.5220988970249891],[116,295,75,-0.5210578367114067],[116,295,76,-0.5203675851225853],[116,295,77,-0.5198098700493574],[116,295,78,-0.5188276823610067],[116,295,79,-0.5173675315454602],[116,296,64,-0.5358160398900509],[116,296,65,-0.5347721707075834],[116,296,66,-0.5331818107515574],[116,296,67,-0.5313086658716202],[116,296,68,-0.5296951904892921],[116,296,69,-0.5284427274018526],[116,296,70,-0.5275341626256704],[116,296,71,-0.5264874286949635],[116,296,72,-0.5250251665711403],[116,296,73,-0.5234626978635788],[116,296,74,-0.5220988970249891],[116,296,75,-0.5210578367114067],[116,296,76,-0.5203675851225853],[116,296,77,-0.5198098700493574],[116,296,78,-0.5188276823610067],[116,296,79,-0.5173675315454602],[116,297,64,-0.5358160398900509],[116,297,65,-0.5347721707075834],[116,297,66,-0.5331818107515574],[116,297,67,-0.5313086658716202],[116,297,68,-0.5296951904892921],[116,297,69,-0.5284427274018526],[116,297,70,-0.5275341626256704],[116,297,71,-0.5264874286949635],[116,297,72,-0.5250251665711403],[116,297,73,-0.5234626978635788],[116,297,74,-0.5220988970249891],[116,297,75,-0.5210578367114067],[116,297,76,-0.5203675851225853],[116,297,77,-0.5198098700493574],[116,297,78,-0.5188276823610067],[116,297,79,-0.5173675315454602],[116,298,64,-0.5358160398900509],[116,298,65,-0.5347721707075834],[116,298,66,-0.5331818107515574],[116,298,67,-0.5313086658716202],[116,298,68,-0.5296951904892921],[116,298,69,-0.5284427274018526],[116,298,70,-0.5275341626256704],[116,298,71,-0.5264874286949635],[116,298,72,-0.5250251665711403],[116,298,73,-0.5234626978635788],[116,298,74,-0.5220988970249891],[116,298,75,-0.5210578367114067],[116,298,76,-0.5203675851225853],[116,298,77,-0.5198098700493574],[116,298,78,-0.5188276823610067],[116,298,79,-0.5173675315454602],[116,299,64,-0.5358160398900509],[116,299,65,-0.5347721707075834],[116,299,66,-0.5331818107515574],[116,299,67,-0.5313086658716202],[116,299,68,-0.5296951904892921],[116,299,69,-0.5284427274018526],[116,299,70,-0.5275341626256704],[116,299,71,-0.5264874286949635],[116,299,72,-0.5250251665711403],[116,299,73,-0.5234626978635788],[116,299,74,-0.5220988970249891],[116,299,75,-0.5210578367114067],[116,299,76,-0.5203675851225853],[116,299,77,-0.5198098700493574],[116,299,78,-0.5188276823610067],[116,299,79,-0.5173675315454602],[116,300,64,-0.5358160398900509],[116,300,65,-0.5347721707075834],[116,300,66,-0.5331818107515574],[116,300,67,-0.5313086658716202],[116,300,68,-0.5296951904892921],[116,300,69,-0.5284427274018526],[116,300,70,-0.5275341626256704],[116,300,71,-0.5264874286949635],[116,300,72,-0.5250251665711403],[116,300,73,-0.5234626978635788],[116,300,74,-0.5220988970249891],[116,300,75,-0.5210578367114067],[116,300,76,-0.5203675851225853],[116,300,77,-0.5198098700493574],[116,300,78,-0.5188276823610067],[116,300,79,-0.5173675315454602],[116,301,64,-0.5358160398900509],[116,301,65,-0.5347721707075834],[116,301,66,-0.5331818107515574],[116,301,67,-0.5313086658716202],[116,301,68,-0.5296951904892921],[116,301,69,-0.5284427274018526],[116,301,70,-0.5275341626256704],[116,301,71,-0.5264874286949635],[116,301,72,-0.5250251665711403],[116,301,73,-0.5234626978635788],[116,301,74,-0.5220988970249891],[116,301,75,-0.5210578367114067],[116,301,76,-0.5203675851225853],[116,301,77,-0.5198098700493574],[116,301,78,-0.5188276823610067],[116,301,79,-0.5173675315454602],[116,302,64,-0.5358160398900509],[116,302,65,-0.5347721707075834],[116,302,66,-0.5331818107515574],[116,302,67,-0.5313086658716202],[116,302,68,-0.5296951904892921],[116,302,69,-0.5284427274018526],[116,302,70,-0.5275341626256704],[116,302,71,-0.5264874286949635],[116,302,72,-0.5250251665711403],[116,302,73,-0.5234626978635788],[116,302,74,-0.5220988970249891],[116,302,75,-0.5210578367114067],[116,302,76,-0.5203675851225853],[116,302,77,-0.5198098700493574],[116,302,78,-0.5188276823610067],[116,302,79,-0.5173675315454602],[116,303,64,-0.5358160398900509],[116,303,65,-0.5347721707075834],[116,303,66,-0.5331818107515574],[116,303,67,-0.5313086658716202],[116,303,68,-0.5296951904892921],[116,303,69,-0.5284427274018526],[116,303,70,-0.5275341626256704],[116,303,71,-0.5264874286949635],[116,303,72,-0.5250251665711403],[116,303,73,-0.5234626978635788],[116,303,74,-0.5220988970249891],[116,303,75,-0.5210578367114067],[116,303,76,-0.5203675851225853],[116,303,77,-0.5198098700493574],[116,303,78,-0.5188276823610067],[116,303,79,-0.5173675315454602],[116,304,64,-0.5358160398900509],[116,304,65,-0.5347721707075834],[116,304,66,-0.5331818107515574],[116,304,67,-0.5313086658716202],[116,304,68,-0.5296951904892921],[116,304,69,-0.5284427274018526],[116,304,70,-0.5275341626256704],[116,304,71,-0.5264874286949635],[116,304,72,-0.5250251665711403],[116,304,73,-0.5234626978635788],[116,304,74,-0.5220988970249891],[116,304,75,-0.5210578367114067],[116,304,76,-0.5203675851225853],[116,304,77,-0.5198098700493574],[116,304,78,-0.5188276823610067],[116,304,79,-0.5173675315454602],[116,305,64,-0.5358160398900509],[116,305,65,-0.5347721707075834],[116,305,66,-0.5331818107515574],[116,305,67,-0.5313086658716202],[116,305,68,-0.5296951904892921],[116,305,69,-0.5284427274018526],[116,305,70,-0.5275341626256704],[116,305,71,-0.5264874286949635],[116,305,72,-0.5250251665711403],[116,305,73,-0.5234626978635788],[116,305,74,-0.5220988970249891],[116,305,75,-0.5210578367114067],[116,305,76,-0.5203675851225853],[116,305,77,-0.5198098700493574],[116,305,78,-0.5188276823610067],[116,305,79,-0.5173675315454602],[116,306,64,-0.5358160398900509],[116,306,65,-0.5347721707075834],[116,306,66,-0.5331818107515574],[116,306,67,-0.5313086658716202],[116,306,68,-0.5296951904892921],[116,306,69,-0.5284427274018526],[116,306,70,-0.5275341626256704],[116,306,71,-0.5264874286949635],[116,306,72,-0.5250251665711403],[116,306,73,-0.5234626978635788],[116,306,74,-0.5220988970249891],[116,306,75,-0.5210578367114067],[116,306,76,-0.5203675851225853],[116,306,77,-0.5198098700493574],[116,306,78,-0.5188276823610067],[116,306,79,-0.5173675315454602],[116,307,64,-0.5358160398900509],[116,307,65,-0.5347721707075834],[116,307,66,-0.5331818107515574],[116,307,67,-0.5313086658716202],[116,307,68,-0.5296951904892921],[116,307,69,-0.5284427274018526],[116,307,70,-0.5275341626256704],[116,307,71,-0.5264874286949635],[116,307,72,-0.5250251665711403],[116,307,73,-0.5234626978635788],[116,307,74,-0.5220988970249891],[116,307,75,-0.5210578367114067],[116,307,76,-0.5203675851225853],[116,307,77,-0.5198098700493574],[116,307,78,-0.5188276823610067],[116,307,79,-0.5173675315454602],[116,308,64,-0.5358160398900509],[116,308,65,-0.5347721707075834],[116,308,66,-0.5331818107515574],[116,308,67,-0.5313086658716202],[116,308,68,-0.5296951904892921],[116,308,69,-0.5284427274018526],[116,308,70,-0.5275341626256704],[116,308,71,-0.5264874286949635],[116,308,72,-0.5250251665711403],[116,308,73,-0.5234626978635788],[116,308,74,-0.5220988970249891],[116,308,75,-0.5210578367114067],[116,308,76,-0.5203675851225853],[116,308,77,-0.5198098700493574],[116,308,78,-0.5188276823610067],[116,308,79,-0.5173675315454602],[116,309,64,-0.5358160398900509],[116,309,65,-0.5347721707075834],[116,309,66,-0.5331818107515574],[116,309,67,-0.5313086658716202],[116,309,68,-0.5296951904892921],[116,309,69,-0.5284427274018526],[116,309,70,-0.5275341626256704],[116,309,71,-0.5264874286949635],[116,309,72,-0.5250251665711403],[116,309,73,-0.5234626978635788],[116,309,74,-0.5220988970249891],[116,309,75,-0.5210578367114067],[116,309,76,-0.5203675851225853],[116,309,77,-0.5198098700493574],[116,309,78,-0.5188276823610067],[116,309,79,-0.5173675315454602],[116,310,64,-0.5358160398900509],[116,310,65,-0.5347721707075834],[116,310,66,-0.5331818107515574],[116,310,67,-0.5313086658716202],[116,310,68,-0.5296951904892921],[116,310,69,-0.5284427274018526],[116,310,70,-0.5275341626256704],[116,310,71,-0.5264874286949635],[116,310,72,-0.5250251665711403],[116,310,73,-0.5234626978635788],[116,310,74,-0.5220988970249891],[116,310,75,-0.5210578367114067],[116,310,76,-0.5203675851225853],[116,310,77,-0.5198098700493574],[116,310,78,-0.5188276823610067],[116,310,79,-0.5173675315454602],[116,311,64,-0.5358160398900509],[116,311,65,-0.5347721707075834],[116,311,66,-0.5331818107515574],[116,311,67,-0.5313086658716202],[116,311,68,-0.5296951904892921],[116,311,69,-0.5284427274018526],[116,311,70,-0.5275341626256704],[116,311,71,-0.5264874286949635],[116,311,72,-0.5250251665711403],[116,311,73,-0.5234626978635788],[116,311,74,-0.5220988970249891],[116,311,75,-0.5210578367114067],[116,311,76,-0.5203675851225853],[116,311,77,-0.5198098700493574],[116,311,78,-0.5188276823610067],[116,311,79,-0.5173675315454602],[116,312,64,-0.5358160398900509],[116,312,65,-0.5347721707075834],[116,312,66,-0.5331818107515574],[116,312,67,-0.5313086658716202],[116,312,68,-0.5296951904892921],[116,312,69,-0.5284427274018526],[116,312,70,-0.5275341626256704],[116,312,71,-0.5264874286949635],[116,312,72,-0.5250251665711403],[116,312,73,-0.5234626978635788],[116,312,74,-0.5220988970249891],[116,312,75,-0.5210578367114067],[116,312,76,-0.5203675851225853],[116,312,77,-0.5198098700493574],[116,312,78,-0.5188276823610067],[116,312,79,-0.5173675315454602],[116,313,64,-0.5358160398900509],[116,313,65,-0.5347721707075834],[116,313,66,-0.5331818107515574],[116,313,67,-0.5313086658716202],[116,313,68,-0.5296951904892921],[116,313,69,-0.5284427274018526],[116,313,70,-0.5275341626256704],[116,313,71,-0.5264874286949635],[116,313,72,-0.5250251665711403],[116,313,73,-0.5234626978635788],[116,313,74,-0.5220988970249891],[116,313,75,-0.5210578367114067],[116,313,76,-0.5203675851225853],[116,313,77,-0.5198098700493574],[116,313,78,-0.5188276823610067],[116,313,79,-0.5173675315454602],[116,314,64,-0.5358160398900509],[116,314,65,-0.5347721707075834],[116,314,66,-0.5331818107515574],[116,314,67,-0.5313086658716202],[116,314,68,-0.5296951904892921],[116,314,69,-0.5284427274018526],[116,314,70,-0.5275341626256704],[116,314,71,-0.5264874286949635],[116,314,72,-0.5250251665711403],[116,314,73,-0.5234626978635788],[116,314,74,-0.5220988970249891],[116,314,75,-0.5210578367114067],[116,314,76,-0.5203675851225853],[116,314,77,-0.5198098700493574],[116,314,78,-0.5188276823610067],[116,314,79,-0.5173675315454602],[116,315,64,-0.5358160398900509],[116,315,65,-0.5347721707075834],[116,315,66,-0.5331818107515574],[116,315,67,-0.5313086658716202],[116,315,68,-0.5296951904892921],[116,315,69,-0.5284427274018526],[116,315,70,-0.5275341626256704],[116,315,71,-0.5264874286949635],[116,315,72,-0.5250251665711403],[116,315,73,-0.5234626978635788],[116,315,74,-0.5220988970249891],[116,315,75,-0.5210578367114067],[116,315,76,-0.5203675851225853],[116,315,77,-0.5198098700493574],[116,315,78,-0.5188276823610067],[116,315,79,-0.5173675315454602],[116,316,64,-0.5358160398900509],[116,316,65,-0.5347721707075834],[116,316,66,-0.5331818107515574],[116,316,67,-0.5313086658716202],[116,316,68,-0.5296951904892921],[116,316,69,-0.5284427274018526],[116,316,70,-0.5275341626256704],[116,316,71,-0.5264874286949635],[116,316,72,-0.5250251665711403],[116,316,73,-0.5234626978635788],[116,316,74,-0.5220988970249891],[116,316,75,-0.5210578367114067],[116,316,76,-0.5203675851225853],[116,316,77,-0.5198098700493574],[116,316,78,-0.5188276823610067],[116,316,79,-0.5173675315454602],[116,317,64,-0.5358160398900509],[116,317,65,-0.5347721707075834],[116,317,66,-0.5331818107515574],[116,317,67,-0.5313086658716202],[116,317,68,-0.5296951904892921],[116,317,69,-0.5284427274018526],[116,317,70,-0.5275341626256704],[116,317,71,-0.5264874286949635],[116,317,72,-0.5250251665711403],[116,317,73,-0.5234626978635788],[116,317,74,-0.5220988970249891],[116,317,75,-0.5210578367114067],[116,317,76,-0.5203675851225853],[116,317,77,-0.5198098700493574],[116,317,78,-0.5188276823610067],[116,317,79,-0.5173675315454602],[116,318,64,-0.5358160398900509],[116,318,65,-0.5347721707075834],[116,318,66,-0.5331818107515574],[116,318,67,-0.5313086658716202],[116,318,68,-0.5296951904892921],[116,318,69,-0.5284427274018526],[116,318,70,-0.5275341626256704],[116,318,71,-0.5264874286949635],[116,318,72,-0.5250251665711403],[116,318,73,-0.5234626978635788],[116,318,74,-0.5220988970249891],[116,318,75,-0.5210578367114067],[116,318,76,-0.5203675851225853],[116,318,77,-0.5198098700493574],[116,318,78,-0.5188276823610067],[116,318,79,-0.5173675315454602],[116,319,64,-0.5358160398900509],[116,319,65,-0.5347721707075834],[116,319,66,-0.5331818107515574],[116,319,67,-0.5313086658716202],[116,319,68,-0.5296951904892921],[116,319,69,-0.5284427274018526],[116,319,70,-0.5275341626256704],[116,319,71,-0.5264874286949635],[116,319,72,-0.5250251665711403],[116,319,73,-0.5234626978635788],[116,319,74,-0.5220988970249891],[116,319,75,-0.5210578367114067],[116,319,76,-0.5203675851225853],[116,319,77,-0.5198098700493574],[116,319,78,-0.5188276823610067],[116,319,79,-0.5173675315454602],[117,-64,64,-0.5382577069103718],[117,-64,65,-0.5374624952673912],[117,-64,66,-0.5358015894889832],[117,-64,67,-0.5336802806705236],[117,-64,68,-0.5318391248583794],[117,-64,69,-0.5305978842079639],[117,-64,70,-0.529931154102087],[117,-64,71,-0.5292989611625671],[117,-64,72,-0.5285233147442341],[117,-64,73,-0.5278422683477402],[117,-64,74,-0.5273886639624834],[117,-64,75,-0.527093943208456],[117,-64,76,-0.526702394708991],[117,-64,77,-0.5259598940610886],[117,-64,78,-0.5244757831096649],[117,-64,79,-0.5225281454622746],[117,-63,64,-0.5382577069103718],[117,-63,65,-0.5374624952673912],[117,-63,66,-0.5358015894889832],[117,-63,67,-0.5336802806705236],[117,-63,68,-0.5318391248583794],[117,-63,69,-0.5305978842079639],[117,-63,70,-0.529931154102087],[117,-63,71,-0.5292989611625671],[117,-63,72,-0.5285233147442341],[117,-63,73,-0.5278422683477402],[117,-63,74,-0.5273886639624834],[117,-63,75,-0.527093943208456],[117,-63,76,-0.526702394708991],[117,-63,77,-0.5259598940610886],[117,-63,78,-0.5244757831096649],[117,-63,79,-0.5225281454622746],[117,-62,64,-0.5382577069103718],[117,-62,65,-0.5374624952673912],[117,-62,66,-0.5358015894889832],[117,-62,67,-0.5336802806705236],[117,-62,68,-0.5318391248583794],[117,-62,69,-0.5305978842079639],[117,-62,70,-0.529931154102087],[117,-62,71,-0.5292989611625671],[117,-62,72,-0.5285233147442341],[117,-62,73,-0.5278422683477402],[117,-62,74,-0.5273886639624834],[117,-62,75,-0.527093943208456],[117,-62,76,-0.526702394708991],[117,-62,77,-0.5259598940610886],[117,-62,78,-0.5244757831096649],[117,-62,79,-0.5225281454622746],[117,-61,64,-0.5382577069103718],[117,-61,65,-0.5374624952673912],[117,-61,66,-0.5358015894889832],[117,-61,67,-0.5336802806705236],[117,-61,68,-0.5318391248583794],[117,-61,69,-0.5305978842079639],[117,-61,70,-0.529931154102087],[117,-61,71,-0.5292989611625671],[117,-61,72,-0.5285233147442341],[117,-61,73,-0.5278422683477402],[117,-61,74,-0.5273886639624834],[117,-61,75,-0.527093943208456],[117,-61,76,-0.526702394708991],[117,-61,77,-0.5259598940610886],[117,-61,78,-0.5244757831096649],[117,-61,79,-0.5225281454622746],[117,-60,64,-0.5382577069103718],[117,-60,65,-0.5374624952673912],[117,-60,66,-0.5358015894889832],[117,-60,67,-0.5336802806705236],[117,-60,68,-0.5318391248583794],[117,-60,69,-0.5305978842079639],[117,-60,70,-0.529931154102087],[117,-60,71,-0.5292989611625671],[117,-60,72,-0.5285233147442341],[117,-60,73,-0.5278422683477402],[117,-60,74,-0.5273886639624834],[117,-60,75,-0.527093943208456],[117,-60,76,-0.526702394708991],[117,-60,77,-0.5259598940610886],[117,-60,78,-0.5244757831096649],[117,-60,79,-0.5225281454622746],[117,-59,64,-0.5382577069103718],[117,-59,65,-0.5374624952673912],[117,-59,66,-0.5358015894889832],[117,-59,67,-0.5336802806705236],[117,-59,68,-0.5318391248583794],[117,-59,69,-0.5305978842079639],[117,-59,70,-0.529931154102087],[117,-59,71,-0.5292989611625671],[117,-59,72,-0.5285233147442341],[117,-59,73,-0.5278422683477402],[117,-59,74,-0.5273886639624834],[117,-59,75,-0.527093943208456],[117,-59,76,-0.526702394708991],[117,-59,77,-0.5259598940610886],[117,-59,78,-0.5244757831096649],[117,-59,79,-0.5225281454622746],[117,-58,64,-0.5382577069103718],[117,-58,65,-0.5374624952673912],[117,-58,66,-0.5358015894889832],[117,-58,67,-0.5336802806705236],[117,-58,68,-0.5318391248583794],[117,-58,69,-0.5305978842079639],[117,-58,70,-0.529931154102087],[117,-58,71,-0.5292989611625671],[117,-58,72,-0.5285233147442341],[117,-58,73,-0.5278422683477402],[117,-58,74,-0.5273886639624834],[117,-58,75,-0.527093943208456],[117,-58,76,-0.526702394708991],[117,-58,77,-0.5259598940610886],[117,-58,78,-0.5244757831096649],[117,-58,79,-0.5225281454622746],[117,-57,64,-0.5382577069103718],[117,-57,65,-0.5374624952673912],[117,-57,66,-0.5358015894889832],[117,-57,67,-0.5336802806705236],[117,-57,68,-0.5318391248583794],[117,-57,69,-0.5305978842079639],[117,-57,70,-0.529931154102087],[117,-57,71,-0.5292989611625671],[117,-57,72,-0.5285233147442341],[117,-57,73,-0.5278422683477402],[117,-57,74,-0.5273886639624834],[117,-57,75,-0.527093943208456],[117,-57,76,-0.526702394708991],[117,-57,77,-0.5259598940610886],[117,-57,78,-0.5244757831096649],[117,-57,79,-0.5225281454622746],[117,-56,64,-0.5382577069103718],[117,-56,65,-0.5374624952673912],[117,-56,66,-0.5358015894889832],[117,-56,67,-0.5336802806705236],[117,-56,68,-0.5318391248583794],[117,-56,69,-0.5305978842079639],[117,-56,70,-0.529931154102087],[117,-56,71,-0.5292989611625671],[117,-56,72,-0.5285233147442341],[117,-56,73,-0.5278422683477402],[117,-56,74,-0.5273886639624834],[117,-56,75,-0.527093943208456],[117,-56,76,-0.526702394708991],[117,-56,77,-0.5259598940610886],[117,-56,78,-0.5244757831096649],[117,-56,79,-0.5225281454622746],[117,-55,64,-0.5382577069103718],[117,-55,65,-0.5374624952673912],[117,-55,66,-0.5358015894889832],[117,-55,67,-0.5336802806705236],[117,-55,68,-0.5318391248583794],[117,-55,69,-0.5305978842079639],[117,-55,70,-0.529931154102087],[117,-55,71,-0.5292989611625671],[117,-55,72,-0.5285233147442341],[117,-55,73,-0.5278422683477402],[117,-55,74,-0.5273886639624834],[117,-55,75,-0.527093943208456],[117,-55,76,-0.526702394708991],[117,-55,77,-0.5259598940610886],[117,-55,78,-0.5244757831096649],[117,-55,79,-0.5225281454622746],[117,-54,64,-0.5382577069103718],[117,-54,65,-0.5374624952673912],[117,-54,66,-0.5358015894889832],[117,-54,67,-0.5336802806705236],[117,-54,68,-0.5318391248583794],[117,-54,69,-0.5305978842079639],[117,-54,70,-0.529931154102087],[117,-54,71,-0.5292989611625671],[117,-54,72,-0.5285233147442341],[117,-54,73,-0.5278422683477402],[117,-54,74,-0.5273886639624834],[117,-54,75,-0.527093943208456],[117,-54,76,-0.526702394708991],[117,-54,77,-0.5259598940610886],[117,-54,78,-0.5244757831096649],[117,-54,79,-0.5225281454622746],[117,-53,64,-0.5382577069103718],[117,-53,65,-0.5374624952673912],[117,-53,66,-0.5358015894889832],[117,-53,67,-0.5336802806705236],[117,-53,68,-0.5318391248583794],[117,-53,69,-0.5305978842079639],[117,-53,70,-0.529931154102087],[117,-53,71,-0.5292989611625671],[117,-53,72,-0.5285233147442341],[117,-53,73,-0.5278422683477402],[117,-53,74,-0.5273886639624834],[117,-53,75,-0.527093943208456],[117,-53,76,-0.526702394708991],[117,-53,77,-0.5259598940610886],[117,-53,78,-0.5244757831096649],[117,-53,79,-0.5225281454622746],[117,-52,64,-0.5382577069103718],[117,-52,65,-0.5374624952673912],[117,-52,66,-0.5358015894889832],[117,-52,67,-0.5336802806705236],[117,-52,68,-0.5318391248583794],[117,-52,69,-0.5305978842079639],[117,-52,70,-0.529931154102087],[117,-52,71,-0.5292989611625671],[117,-52,72,-0.5285233147442341],[117,-52,73,-0.5278422683477402],[117,-52,74,-0.5273886639624834],[117,-52,75,-0.527093943208456],[117,-52,76,-0.526702394708991],[117,-52,77,-0.5259598940610886],[117,-52,78,-0.5244757831096649],[117,-52,79,-0.5225281454622746],[117,-51,64,-0.5382577069103718],[117,-51,65,-0.5374624952673912],[117,-51,66,-0.5358015894889832],[117,-51,67,-0.5336802806705236],[117,-51,68,-0.5318391248583794],[117,-51,69,-0.5305978842079639],[117,-51,70,-0.529931154102087],[117,-51,71,-0.5292989611625671],[117,-51,72,-0.5285233147442341],[117,-51,73,-0.5278422683477402],[117,-51,74,-0.5273886639624834],[117,-51,75,-0.527093943208456],[117,-51,76,-0.526702394708991],[117,-51,77,-0.5259598940610886],[117,-51,78,-0.5244757831096649],[117,-51,79,-0.5225281454622746],[117,-50,64,-0.5382577069103718],[117,-50,65,-0.5374624952673912],[117,-50,66,-0.5358015894889832],[117,-50,67,-0.5336802806705236],[117,-50,68,-0.5318391248583794],[117,-50,69,-0.5305978842079639],[117,-50,70,-0.529931154102087],[117,-50,71,-0.5292989611625671],[117,-50,72,-0.5285233147442341],[117,-50,73,-0.5278422683477402],[117,-50,74,-0.5273886639624834],[117,-50,75,-0.527093943208456],[117,-50,76,-0.526702394708991],[117,-50,77,-0.5259598940610886],[117,-50,78,-0.5244757831096649],[117,-50,79,-0.5225281454622746],[117,-49,64,-0.5382577069103718],[117,-49,65,-0.5374624952673912],[117,-49,66,-0.5358015894889832],[117,-49,67,-0.5336802806705236],[117,-49,68,-0.5318391248583794],[117,-49,69,-0.5305978842079639],[117,-49,70,-0.529931154102087],[117,-49,71,-0.5292989611625671],[117,-49,72,-0.5285233147442341],[117,-49,73,-0.5278422683477402],[117,-49,74,-0.5273886639624834],[117,-49,75,-0.527093943208456],[117,-49,76,-0.526702394708991],[117,-49,77,-0.5259598940610886],[117,-49,78,-0.5244757831096649],[117,-49,79,-0.5225281454622746],[117,-48,64,-0.5382577069103718],[117,-48,65,-0.5374624952673912],[117,-48,66,-0.5358015894889832],[117,-48,67,-0.5336802806705236],[117,-48,68,-0.5318391248583794],[117,-48,69,-0.5305978842079639],[117,-48,70,-0.529931154102087],[117,-48,71,-0.5292989611625671],[117,-48,72,-0.5285233147442341],[117,-48,73,-0.5278422683477402],[117,-48,74,-0.5273886639624834],[117,-48,75,-0.527093943208456],[117,-48,76,-0.526702394708991],[117,-48,77,-0.5259598940610886],[117,-48,78,-0.5244757831096649],[117,-48,79,-0.5225281454622746],[117,-47,64,-0.5382577069103718],[117,-47,65,-0.5374624952673912],[117,-47,66,-0.5358015894889832],[117,-47,67,-0.5336802806705236],[117,-47,68,-0.5318391248583794],[117,-47,69,-0.5305978842079639],[117,-47,70,-0.529931154102087],[117,-47,71,-0.5292989611625671],[117,-47,72,-0.5285233147442341],[117,-47,73,-0.5278422683477402],[117,-47,74,-0.5273886639624834],[117,-47,75,-0.527093943208456],[117,-47,76,-0.526702394708991],[117,-47,77,-0.5259598940610886],[117,-47,78,-0.5244757831096649],[117,-47,79,-0.5225281454622746],[117,-46,64,-0.5382577069103718],[117,-46,65,-0.5374624952673912],[117,-46,66,-0.5358015894889832],[117,-46,67,-0.5336802806705236],[117,-46,68,-0.5318391248583794],[117,-46,69,-0.5305978842079639],[117,-46,70,-0.529931154102087],[117,-46,71,-0.5292989611625671],[117,-46,72,-0.5285233147442341],[117,-46,73,-0.5278422683477402],[117,-46,74,-0.5273886639624834],[117,-46,75,-0.527093943208456],[117,-46,76,-0.526702394708991],[117,-46,77,-0.5259598940610886],[117,-46,78,-0.5244757831096649],[117,-46,79,-0.5225281454622746],[117,-45,64,-0.5382577069103718],[117,-45,65,-0.5374624952673912],[117,-45,66,-0.5358015894889832],[117,-45,67,-0.5336802806705236],[117,-45,68,-0.5318391248583794],[117,-45,69,-0.5305978842079639],[117,-45,70,-0.529931154102087],[117,-45,71,-0.5292989611625671],[117,-45,72,-0.5285233147442341],[117,-45,73,-0.5278422683477402],[117,-45,74,-0.5273886639624834],[117,-45,75,-0.527093943208456],[117,-45,76,-0.526702394708991],[117,-45,77,-0.5259598940610886],[117,-45,78,-0.5244757831096649],[117,-45,79,-0.5225281454622746],[117,-44,64,-0.5382577069103718],[117,-44,65,-0.5374624952673912],[117,-44,66,-0.5358015894889832],[117,-44,67,-0.5336802806705236],[117,-44,68,-0.5318391248583794],[117,-44,69,-0.5305978842079639],[117,-44,70,-0.529931154102087],[117,-44,71,-0.5292989611625671],[117,-44,72,-0.5285233147442341],[117,-44,73,-0.5278422683477402],[117,-44,74,-0.5273886639624834],[117,-44,75,-0.527093943208456],[117,-44,76,-0.526702394708991],[117,-44,77,-0.5259598940610886],[117,-44,78,-0.5244757831096649],[117,-44,79,-0.5225281454622746],[117,-43,64,-0.5382577069103718],[117,-43,65,-0.5374624952673912],[117,-43,66,-0.5358015894889832],[117,-43,67,-0.5336802806705236],[117,-43,68,-0.5318391248583794],[117,-43,69,-0.5305978842079639],[117,-43,70,-0.529931154102087],[117,-43,71,-0.5292989611625671],[117,-43,72,-0.5285233147442341],[117,-43,73,-0.5278422683477402],[117,-43,74,-0.5273886639624834],[117,-43,75,-0.527093943208456],[117,-43,76,-0.526702394708991],[117,-43,77,-0.5259598940610886],[117,-43,78,-0.5244757831096649],[117,-43,79,-0.5225281454622746],[117,-42,64,-0.5382577069103718],[117,-42,65,-0.5374624952673912],[117,-42,66,-0.5358015894889832],[117,-42,67,-0.5336802806705236],[117,-42,68,-0.5318391248583794],[117,-42,69,-0.5305978842079639],[117,-42,70,-0.529931154102087],[117,-42,71,-0.5292989611625671],[117,-42,72,-0.5285233147442341],[117,-42,73,-0.5278422683477402],[117,-42,74,-0.5273886639624834],[117,-42,75,-0.527093943208456],[117,-42,76,-0.526702394708991],[117,-42,77,-0.5259598940610886],[117,-42,78,-0.5244757831096649],[117,-42,79,-0.5225281454622746],[117,-41,64,-0.5382577069103718],[117,-41,65,-0.5374624952673912],[117,-41,66,-0.5358015894889832],[117,-41,67,-0.5336802806705236],[117,-41,68,-0.5318391248583794],[117,-41,69,-0.5305978842079639],[117,-41,70,-0.529931154102087],[117,-41,71,-0.5292989611625671],[117,-41,72,-0.5285233147442341],[117,-41,73,-0.5278422683477402],[117,-41,74,-0.5273886639624834],[117,-41,75,-0.527093943208456],[117,-41,76,-0.526702394708991],[117,-41,77,-0.5259598940610886],[117,-41,78,-0.5244757831096649],[117,-41,79,-0.5225281454622746],[117,-40,64,-0.5382577069103718],[117,-40,65,-0.5374624952673912],[117,-40,66,-0.5358015894889832],[117,-40,67,-0.5336802806705236],[117,-40,68,-0.5318391248583794],[117,-40,69,-0.5305978842079639],[117,-40,70,-0.529931154102087],[117,-40,71,-0.5292989611625671],[117,-40,72,-0.5285233147442341],[117,-40,73,-0.5278422683477402],[117,-40,74,-0.5273886639624834],[117,-40,75,-0.527093943208456],[117,-40,76,-0.526702394708991],[117,-40,77,-0.5259598940610886],[117,-40,78,-0.5244757831096649],[117,-40,79,-0.5225281454622746],[117,-39,64,-0.5382577069103718],[117,-39,65,-0.5374624952673912],[117,-39,66,-0.5358015894889832],[117,-39,67,-0.5336802806705236],[117,-39,68,-0.5318391248583794],[117,-39,69,-0.5305978842079639],[117,-39,70,-0.529931154102087],[117,-39,71,-0.5292989611625671],[117,-39,72,-0.5285233147442341],[117,-39,73,-0.5278422683477402],[117,-39,74,-0.5273886639624834],[117,-39,75,-0.527093943208456],[117,-39,76,-0.526702394708991],[117,-39,77,-0.5259598940610886],[117,-39,78,-0.5244757831096649],[117,-39,79,-0.5225281454622746],[117,-38,64,-0.5382577069103718],[117,-38,65,-0.5374624952673912],[117,-38,66,-0.5358015894889832],[117,-38,67,-0.5336802806705236],[117,-38,68,-0.5318391248583794],[117,-38,69,-0.5305978842079639],[117,-38,70,-0.529931154102087],[117,-38,71,-0.5292989611625671],[117,-38,72,-0.5285233147442341],[117,-38,73,-0.5278422683477402],[117,-38,74,-0.5273886639624834],[117,-38,75,-0.527093943208456],[117,-38,76,-0.526702394708991],[117,-38,77,-0.5259598940610886],[117,-38,78,-0.5244757831096649],[117,-38,79,-0.5225281454622746],[117,-37,64,-0.5382577069103718],[117,-37,65,-0.5374624952673912],[117,-37,66,-0.5358015894889832],[117,-37,67,-0.5336802806705236],[117,-37,68,-0.5318391248583794],[117,-37,69,-0.5305978842079639],[117,-37,70,-0.529931154102087],[117,-37,71,-0.5292989611625671],[117,-37,72,-0.5285233147442341],[117,-37,73,-0.5278422683477402],[117,-37,74,-0.5273886639624834],[117,-37,75,-0.527093943208456],[117,-37,76,-0.526702394708991],[117,-37,77,-0.5259598940610886],[117,-37,78,-0.5244757831096649],[117,-37,79,-0.5225281454622746],[117,-36,64,-0.5382577069103718],[117,-36,65,-0.5374624952673912],[117,-36,66,-0.5358015894889832],[117,-36,67,-0.5336802806705236],[117,-36,68,-0.5318391248583794],[117,-36,69,-0.5305978842079639],[117,-36,70,-0.529931154102087],[117,-36,71,-0.5292989611625671],[117,-36,72,-0.5285233147442341],[117,-36,73,-0.5278422683477402],[117,-36,74,-0.5273886639624834],[117,-36,75,-0.527093943208456],[117,-36,76,-0.526702394708991],[117,-36,77,-0.5259598940610886],[117,-36,78,-0.5244757831096649],[117,-36,79,-0.5225281454622746],[117,-35,64,-0.5382577069103718],[117,-35,65,-0.5374624952673912],[117,-35,66,-0.5358015894889832],[117,-35,67,-0.5336802806705236],[117,-35,68,-0.5318391248583794],[117,-35,69,-0.5305978842079639],[117,-35,70,-0.529931154102087],[117,-35,71,-0.5292989611625671],[117,-35,72,-0.5285233147442341],[117,-35,73,-0.5278422683477402],[117,-35,74,-0.5273886639624834],[117,-35,75,-0.527093943208456],[117,-35,76,-0.526702394708991],[117,-35,77,-0.5259598940610886],[117,-35,78,-0.5244757831096649],[117,-35,79,-0.5225281454622746],[117,-34,64,-0.5382577069103718],[117,-34,65,-0.5374624952673912],[117,-34,66,-0.5358015894889832],[117,-34,67,-0.5336802806705236],[117,-34,68,-0.5318391248583794],[117,-34,69,-0.5305978842079639],[117,-34,70,-0.529931154102087],[117,-34,71,-0.5292989611625671],[117,-34,72,-0.5285233147442341],[117,-34,73,-0.5278422683477402],[117,-34,74,-0.5273886639624834],[117,-34,75,-0.527093943208456],[117,-34,76,-0.526702394708991],[117,-34,77,-0.5259598940610886],[117,-34,78,-0.5244757831096649],[117,-34,79,-0.5225281454622746],[117,-33,64,-0.5382577069103718],[117,-33,65,-0.5374624952673912],[117,-33,66,-0.5358015894889832],[117,-33,67,-0.5336802806705236],[117,-33,68,-0.5318391248583794],[117,-33,69,-0.5305978842079639],[117,-33,70,-0.529931154102087],[117,-33,71,-0.5292989611625671],[117,-33,72,-0.5285233147442341],[117,-33,73,-0.5278422683477402],[117,-33,74,-0.5273886639624834],[117,-33,75,-0.527093943208456],[117,-33,76,-0.526702394708991],[117,-33,77,-0.5259598940610886],[117,-33,78,-0.5244757831096649],[117,-33,79,-0.5225281454622746],[117,-32,64,-0.5382577069103718],[117,-32,65,-0.5374624952673912],[117,-32,66,-0.5358015894889832],[117,-32,67,-0.5336802806705236],[117,-32,68,-0.5318391248583794],[117,-32,69,-0.5305978842079639],[117,-32,70,-0.529931154102087],[117,-32,71,-0.5292989611625671],[117,-32,72,-0.5285233147442341],[117,-32,73,-0.5278422683477402],[117,-32,74,-0.5273886639624834],[117,-32,75,-0.527093943208456],[117,-32,76,-0.526702394708991],[117,-32,77,-0.5259598940610886],[117,-32,78,-0.5244757831096649],[117,-32,79,-0.5225281454622746],[117,-31,64,-0.5382577069103718],[117,-31,65,-0.5374624952673912],[117,-31,66,-0.5358015894889832],[117,-31,67,-0.5336802806705236],[117,-31,68,-0.5318391248583794],[117,-31,69,-0.5305978842079639],[117,-31,70,-0.529931154102087],[117,-31,71,-0.5292989611625671],[117,-31,72,-0.5285233147442341],[117,-31,73,-0.5278422683477402],[117,-31,74,-0.5273886639624834],[117,-31,75,-0.527093943208456],[117,-31,76,-0.526702394708991],[117,-31,77,-0.5259598940610886],[117,-31,78,-0.5244757831096649],[117,-31,79,-0.5225281454622746],[117,-30,64,-0.5382577069103718],[117,-30,65,-0.5374624952673912],[117,-30,66,-0.5358015894889832],[117,-30,67,-0.5336802806705236],[117,-30,68,-0.5318391248583794],[117,-30,69,-0.5305978842079639],[117,-30,70,-0.529931154102087],[117,-30,71,-0.5292989611625671],[117,-30,72,-0.5285233147442341],[117,-30,73,-0.5278422683477402],[117,-30,74,-0.5273886639624834],[117,-30,75,-0.527093943208456],[117,-30,76,-0.526702394708991],[117,-30,77,-0.5259598940610886],[117,-30,78,-0.5244757831096649],[117,-30,79,-0.5225281454622746],[117,-29,64,-0.5382577069103718],[117,-29,65,-0.5374624952673912],[117,-29,66,-0.5358015894889832],[117,-29,67,-0.5336802806705236],[117,-29,68,-0.5318391248583794],[117,-29,69,-0.5305978842079639],[117,-29,70,-0.529931154102087],[117,-29,71,-0.5292989611625671],[117,-29,72,-0.5285233147442341],[117,-29,73,-0.5278422683477402],[117,-29,74,-0.5273886639624834],[117,-29,75,-0.527093943208456],[117,-29,76,-0.526702394708991],[117,-29,77,-0.5259598940610886],[117,-29,78,-0.5244757831096649],[117,-29,79,-0.5225281454622746],[117,-28,64,-0.5382577069103718],[117,-28,65,-0.5374624952673912],[117,-28,66,-0.5358015894889832],[117,-28,67,-0.5336802806705236],[117,-28,68,-0.5318391248583794],[117,-28,69,-0.5305978842079639],[117,-28,70,-0.529931154102087],[117,-28,71,-0.5292989611625671],[117,-28,72,-0.5285233147442341],[117,-28,73,-0.5278422683477402],[117,-28,74,-0.5273886639624834],[117,-28,75,-0.527093943208456],[117,-28,76,-0.526702394708991],[117,-28,77,-0.5259598940610886],[117,-28,78,-0.5244757831096649],[117,-28,79,-0.5225281454622746],[117,-27,64,-0.5382577069103718],[117,-27,65,-0.5374624952673912],[117,-27,66,-0.5358015894889832],[117,-27,67,-0.5336802806705236],[117,-27,68,-0.5318391248583794],[117,-27,69,-0.5305978842079639],[117,-27,70,-0.529931154102087],[117,-27,71,-0.5292989611625671],[117,-27,72,-0.5285233147442341],[117,-27,73,-0.5278422683477402],[117,-27,74,-0.5273886639624834],[117,-27,75,-0.527093943208456],[117,-27,76,-0.526702394708991],[117,-27,77,-0.5259598940610886],[117,-27,78,-0.5244757831096649],[117,-27,79,-0.5225281454622746],[117,-26,64,-0.5382577069103718],[117,-26,65,-0.5374624952673912],[117,-26,66,-0.5358015894889832],[117,-26,67,-0.5336802806705236],[117,-26,68,-0.5318391248583794],[117,-26,69,-0.5305978842079639],[117,-26,70,-0.529931154102087],[117,-26,71,-0.5292989611625671],[117,-26,72,-0.5285233147442341],[117,-26,73,-0.5278422683477402],[117,-26,74,-0.5273886639624834],[117,-26,75,-0.527093943208456],[117,-26,76,-0.526702394708991],[117,-26,77,-0.5259598940610886],[117,-26,78,-0.5244757831096649],[117,-26,79,-0.5225281454622746],[117,-25,64,-0.5382577069103718],[117,-25,65,-0.5374624952673912],[117,-25,66,-0.5358015894889832],[117,-25,67,-0.5336802806705236],[117,-25,68,-0.5318391248583794],[117,-25,69,-0.5305978842079639],[117,-25,70,-0.529931154102087],[117,-25,71,-0.5292989611625671],[117,-25,72,-0.5285233147442341],[117,-25,73,-0.5278422683477402],[117,-25,74,-0.5273886639624834],[117,-25,75,-0.527093943208456],[117,-25,76,-0.526702394708991],[117,-25,77,-0.5259598940610886],[117,-25,78,-0.5244757831096649],[117,-25,79,-0.5225281454622746],[117,-24,64,-0.5382577069103718],[117,-24,65,-0.5374624952673912],[117,-24,66,-0.5358015894889832],[117,-24,67,-0.5336802806705236],[117,-24,68,-0.5318391248583794],[117,-24,69,-0.5305978842079639],[117,-24,70,-0.529931154102087],[117,-24,71,-0.5292989611625671],[117,-24,72,-0.5285233147442341],[117,-24,73,-0.5278422683477402],[117,-24,74,-0.5273886639624834],[117,-24,75,-0.527093943208456],[117,-24,76,-0.526702394708991],[117,-24,77,-0.5259598940610886],[117,-24,78,-0.5244757831096649],[117,-24,79,-0.5225281454622746],[117,-23,64,-0.5382577069103718],[117,-23,65,-0.5374624952673912],[117,-23,66,-0.5358015894889832],[117,-23,67,-0.5336802806705236],[117,-23,68,-0.5318391248583794],[117,-23,69,-0.5305978842079639],[117,-23,70,-0.529931154102087],[117,-23,71,-0.5292989611625671],[117,-23,72,-0.5285233147442341],[117,-23,73,-0.5278422683477402],[117,-23,74,-0.5273886639624834],[117,-23,75,-0.527093943208456],[117,-23,76,-0.526702394708991],[117,-23,77,-0.5259598940610886],[117,-23,78,-0.5244757831096649],[117,-23,79,-0.5225281454622746],[117,-22,64,-0.5382577069103718],[117,-22,65,-0.5374624952673912],[117,-22,66,-0.5358015894889832],[117,-22,67,-0.5336802806705236],[117,-22,68,-0.5318391248583794],[117,-22,69,-0.5305978842079639],[117,-22,70,-0.529931154102087],[117,-22,71,-0.5292989611625671],[117,-22,72,-0.5285233147442341],[117,-22,73,-0.5278422683477402],[117,-22,74,-0.5273886639624834],[117,-22,75,-0.527093943208456],[117,-22,76,-0.526702394708991],[117,-22,77,-0.5259598940610886],[117,-22,78,-0.5244757831096649],[117,-22,79,-0.5225281454622746],[117,-21,64,-0.5382577069103718],[117,-21,65,-0.5374624952673912],[117,-21,66,-0.5358015894889832],[117,-21,67,-0.5336802806705236],[117,-21,68,-0.5318391248583794],[117,-21,69,-0.5305978842079639],[117,-21,70,-0.529931154102087],[117,-21,71,-0.5292989611625671],[117,-21,72,-0.5285233147442341],[117,-21,73,-0.5278422683477402],[117,-21,74,-0.5273886639624834],[117,-21,75,-0.527093943208456],[117,-21,76,-0.526702394708991],[117,-21,77,-0.5259598940610886],[117,-21,78,-0.5244757831096649],[117,-21,79,-0.5225281454622746],[117,-20,64,-0.5382577069103718],[117,-20,65,-0.5374624952673912],[117,-20,66,-0.5358015894889832],[117,-20,67,-0.5336802806705236],[117,-20,68,-0.5318391248583794],[117,-20,69,-0.5305978842079639],[117,-20,70,-0.529931154102087],[117,-20,71,-0.5292989611625671],[117,-20,72,-0.5285233147442341],[117,-20,73,-0.5278422683477402],[117,-20,74,-0.5273886639624834],[117,-20,75,-0.527093943208456],[117,-20,76,-0.526702394708991],[117,-20,77,-0.5259598940610886],[117,-20,78,-0.5244757831096649],[117,-20,79,-0.5225281454622746],[117,-19,64,-0.5382577069103718],[117,-19,65,-0.5374624952673912],[117,-19,66,-0.5358015894889832],[117,-19,67,-0.5336802806705236],[117,-19,68,-0.5318391248583794],[117,-19,69,-0.5305978842079639],[117,-19,70,-0.529931154102087],[117,-19,71,-0.5292989611625671],[117,-19,72,-0.5285233147442341],[117,-19,73,-0.5278422683477402],[117,-19,74,-0.5273886639624834],[117,-19,75,-0.527093943208456],[117,-19,76,-0.526702394708991],[117,-19,77,-0.5259598940610886],[117,-19,78,-0.5244757831096649],[117,-19,79,-0.5225281454622746],[117,-18,64,-0.5382577069103718],[117,-18,65,-0.5374624952673912],[117,-18,66,-0.5358015894889832],[117,-18,67,-0.5336802806705236],[117,-18,68,-0.5318391248583794],[117,-18,69,-0.5305978842079639],[117,-18,70,-0.529931154102087],[117,-18,71,-0.5292989611625671],[117,-18,72,-0.5285233147442341],[117,-18,73,-0.5278422683477402],[117,-18,74,-0.5273886639624834],[117,-18,75,-0.527093943208456],[117,-18,76,-0.526702394708991],[117,-18,77,-0.5259598940610886],[117,-18,78,-0.5244757831096649],[117,-18,79,-0.5225281454622746],[117,-17,64,-0.5382577069103718],[117,-17,65,-0.5374624952673912],[117,-17,66,-0.5358015894889832],[117,-17,67,-0.5336802806705236],[117,-17,68,-0.5318391248583794],[117,-17,69,-0.5305978842079639],[117,-17,70,-0.529931154102087],[117,-17,71,-0.5292989611625671],[117,-17,72,-0.5285233147442341],[117,-17,73,-0.5278422683477402],[117,-17,74,-0.5273886639624834],[117,-17,75,-0.527093943208456],[117,-17,76,-0.526702394708991],[117,-17,77,-0.5259598940610886],[117,-17,78,-0.5244757831096649],[117,-17,79,-0.5225281454622746],[117,-16,64,-0.5382577069103718],[117,-16,65,-0.5374624952673912],[117,-16,66,-0.5358015894889832],[117,-16,67,-0.5336802806705236],[117,-16,68,-0.5318391248583794],[117,-16,69,-0.5305978842079639],[117,-16,70,-0.529931154102087],[117,-16,71,-0.5292989611625671],[117,-16,72,-0.5285233147442341],[117,-16,73,-0.5278422683477402],[117,-16,74,-0.5273886639624834],[117,-16,75,-0.527093943208456],[117,-16,76,-0.526702394708991],[117,-16,77,-0.5259598940610886],[117,-16,78,-0.5244757831096649],[117,-16,79,-0.5225281454622746],[117,-15,64,-0.5382577069103718],[117,-15,65,-0.5374624952673912],[117,-15,66,-0.5358015894889832],[117,-15,67,-0.5336802806705236],[117,-15,68,-0.5318391248583794],[117,-15,69,-0.5305978842079639],[117,-15,70,-0.529931154102087],[117,-15,71,-0.5292989611625671],[117,-15,72,-0.5285233147442341],[117,-15,73,-0.5278422683477402],[117,-15,74,-0.5273886639624834],[117,-15,75,-0.527093943208456],[117,-15,76,-0.526702394708991],[117,-15,77,-0.5259598940610886],[117,-15,78,-0.5244757831096649],[117,-15,79,-0.5225281454622746],[117,-14,64,-0.5382577069103718],[117,-14,65,-0.5374624952673912],[117,-14,66,-0.5358015894889832],[117,-14,67,-0.5336802806705236],[117,-14,68,-0.5318391248583794],[117,-14,69,-0.5305978842079639],[117,-14,70,-0.529931154102087],[117,-14,71,-0.5292989611625671],[117,-14,72,-0.5285233147442341],[117,-14,73,-0.5278422683477402],[117,-14,74,-0.5273886639624834],[117,-14,75,-0.527093943208456],[117,-14,76,-0.526702394708991],[117,-14,77,-0.5259598940610886],[117,-14,78,-0.5244757831096649],[117,-14,79,-0.5225281454622746],[117,-13,64,-0.5382577069103718],[117,-13,65,-0.5374624952673912],[117,-13,66,-0.5358015894889832],[117,-13,67,-0.5336802806705236],[117,-13,68,-0.5318391248583794],[117,-13,69,-0.5305978842079639],[117,-13,70,-0.529931154102087],[117,-13,71,-0.5292989611625671],[117,-13,72,-0.5285233147442341],[117,-13,73,-0.5278422683477402],[117,-13,74,-0.5273886639624834],[117,-13,75,-0.527093943208456],[117,-13,76,-0.526702394708991],[117,-13,77,-0.5259598940610886],[117,-13,78,-0.5244757831096649],[117,-13,79,-0.5225281454622746],[117,-12,64,-0.5382577069103718],[117,-12,65,-0.5374624952673912],[117,-12,66,-0.5358015894889832],[117,-12,67,-0.5336802806705236],[117,-12,68,-0.5318391248583794],[117,-12,69,-0.5305978842079639],[117,-12,70,-0.529931154102087],[117,-12,71,-0.5292989611625671],[117,-12,72,-0.5285233147442341],[117,-12,73,-0.5278422683477402],[117,-12,74,-0.5273886639624834],[117,-12,75,-0.527093943208456],[117,-12,76,-0.526702394708991],[117,-12,77,-0.5259598940610886],[117,-12,78,-0.5244757831096649],[117,-12,79,-0.5225281454622746],[117,-11,64,-0.5382577069103718],[117,-11,65,-0.5374624952673912],[117,-11,66,-0.5358015894889832],[117,-11,67,-0.5336802806705236],[117,-11,68,-0.5318391248583794],[117,-11,69,-0.5305978842079639],[117,-11,70,-0.529931154102087],[117,-11,71,-0.5292989611625671],[117,-11,72,-0.5285233147442341],[117,-11,73,-0.5278422683477402],[117,-11,74,-0.5273886639624834],[117,-11,75,-0.527093943208456],[117,-11,76,-0.526702394708991],[117,-11,77,-0.5259598940610886],[117,-11,78,-0.5244757831096649],[117,-11,79,-0.5225281454622746],[117,-10,64,-0.5382577069103718],[117,-10,65,-0.5374624952673912],[117,-10,66,-0.5358015894889832],[117,-10,67,-0.5336802806705236],[117,-10,68,-0.5318391248583794],[117,-10,69,-0.5305978842079639],[117,-10,70,-0.529931154102087],[117,-10,71,-0.5292989611625671],[117,-10,72,-0.5285233147442341],[117,-10,73,-0.5278422683477402],[117,-10,74,-0.5273886639624834],[117,-10,75,-0.527093943208456],[117,-10,76,-0.526702394708991],[117,-10,77,-0.5259598940610886],[117,-10,78,-0.5244757831096649],[117,-10,79,-0.5225281454622746],[117,-9,64,-0.5382577069103718],[117,-9,65,-0.5374624952673912],[117,-9,66,-0.5358015894889832],[117,-9,67,-0.5336802806705236],[117,-9,68,-0.5318391248583794],[117,-9,69,-0.5305978842079639],[117,-9,70,-0.529931154102087],[117,-9,71,-0.5292989611625671],[117,-9,72,-0.5285233147442341],[117,-9,73,-0.5278422683477402],[117,-9,74,-0.5273886639624834],[117,-9,75,-0.527093943208456],[117,-9,76,-0.526702394708991],[117,-9,77,-0.5259598940610886],[117,-9,78,-0.5244757831096649],[117,-9,79,-0.5225281454622746],[117,-8,64,-0.5382577069103718],[117,-8,65,-0.5374624952673912],[117,-8,66,-0.5358015894889832],[117,-8,67,-0.5336802806705236],[117,-8,68,-0.5318391248583794],[117,-8,69,-0.5305978842079639],[117,-8,70,-0.529931154102087],[117,-8,71,-0.5292989611625671],[117,-8,72,-0.5285233147442341],[117,-8,73,-0.5278422683477402],[117,-8,74,-0.5273886639624834],[117,-8,75,-0.527093943208456],[117,-8,76,-0.526702394708991],[117,-8,77,-0.5259598940610886],[117,-8,78,-0.5244757831096649],[117,-8,79,-0.5225281454622746],[117,-7,64,-0.5382577069103718],[117,-7,65,-0.5374624952673912],[117,-7,66,-0.5358015894889832],[117,-7,67,-0.5336802806705236],[117,-7,68,-0.5318391248583794],[117,-7,69,-0.5305978842079639],[117,-7,70,-0.529931154102087],[117,-7,71,-0.5292989611625671],[117,-7,72,-0.5285233147442341],[117,-7,73,-0.5278422683477402],[117,-7,74,-0.5273886639624834],[117,-7,75,-0.527093943208456],[117,-7,76,-0.526702394708991],[117,-7,77,-0.5259598940610886],[117,-7,78,-0.5244757831096649],[117,-7,79,-0.5225281454622746],[117,-6,64,-0.5382577069103718],[117,-6,65,-0.5374624952673912],[117,-6,66,-0.5358015894889832],[117,-6,67,-0.5336802806705236],[117,-6,68,-0.5318391248583794],[117,-6,69,-0.5305978842079639],[117,-6,70,-0.529931154102087],[117,-6,71,-0.5292989611625671],[117,-6,72,-0.5285233147442341],[117,-6,73,-0.5278422683477402],[117,-6,74,-0.5273886639624834],[117,-6,75,-0.527093943208456],[117,-6,76,-0.526702394708991],[117,-6,77,-0.5259598940610886],[117,-6,78,-0.5244757831096649],[117,-6,79,-0.5225281454622746],[117,-5,64,-0.5382577069103718],[117,-5,65,-0.5374624952673912],[117,-5,66,-0.5358015894889832],[117,-5,67,-0.5336802806705236],[117,-5,68,-0.5318391248583794],[117,-5,69,-0.5305978842079639],[117,-5,70,-0.529931154102087],[117,-5,71,-0.5292989611625671],[117,-5,72,-0.5285233147442341],[117,-5,73,-0.5278422683477402],[117,-5,74,-0.5273886639624834],[117,-5,75,-0.527093943208456],[117,-5,76,-0.526702394708991],[117,-5,77,-0.5259598940610886],[117,-5,78,-0.5244757831096649],[117,-5,79,-0.5225281454622746],[117,-4,64,-0.5382577069103718],[117,-4,65,-0.5374624952673912],[117,-4,66,-0.5358015894889832],[117,-4,67,-0.5336802806705236],[117,-4,68,-0.5318391248583794],[117,-4,69,-0.5305978842079639],[117,-4,70,-0.529931154102087],[117,-4,71,-0.5292989611625671],[117,-4,72,-0.5285233147442341],[117,-4,73,-0.5278422683477402],[117,-4,74,-0.5273886639624834],[117,-4,75,-0.527093943208456],[117,-4,76,-0.526702394708991],[117,-4,77,-0.5259598940610886],[117,-4,78,-0.5244757831096649],[117,-4,79,-0.5225281454622746],[117,-3,64,-0.5382577069103718],[117,-3,65,-0.5374624952673912],[117,-3,66,-0.5358015894889832],[117,-3,67,-0.5336802806705236],[117,-3,68,-0.5318391248583794],[117,-3,69,-0.5305978842079639],[117,-3,70,-0.529931154102087],[117,-3,71,-0.5292989611625671],[117,-3,72,-0.5285233147442341],[117,-3,73,-0.5278422683477402],[117,-3,74,-0.5273886639624834],[117,-3,75,-0.527093943208456],[117,-3,76,-0.526702394708991],[117,-3,77,-0.5259598940610886],[117,-3,78,-0.5244757831096649],[117,-3,79,-0.5225281454622746],[117,-2,64,-0.5382577069103718],[117,-2,65,-0.5374624952673912],[117,-2,66,-0.5358015894889832],[117,-2,67,-0.5336802806705236],[117,-2,68,-0.5318391248583794],[117,-2,69,-0.5305978842079639],[117,-2,70,-0.529931154102087],[117,-2,71,-0.5292989611625671],[117,-2,72,-0.5285233147442341],[117,-2,73,-0.5278422683477402],[117,-2,74,-0.5273886639624834],[117,-2,75,-0.527093943208456],[117,-2,76,-0.526702394708991],[117,-2,77,-0.5259598940610886],[117,-2,78,-0.5244757831096649],[117,-2,79,-0.5225281454622746],[117,-1,64,-0.5382577069103718],[117,-1,65,-0.5374624952673912],[117,-1,66,-0.5358015894889832],[117,-1,67,-0.5336802806705236],[117,-1,68,-0.5318391248583794],[117,-1,69,-0.5305978842079639],[117,-1,70,-0.529931154102087],[117,-1,71,-0.5292989611625671],[117,-1,72,-0.5285233147442341],[117,-1,73,-0.5278422683477402],[117,-1,74,-0.5273886639624834],[117,-1,75,-0.527093943208456],[117,-1,76,-0.526702394708991],[117,-1,77,-0.5259598940610886],[117,-1,78,-0.5244757831096649],[117,-1,79,-0.5225281454622746],[117,0,64,-0.5382577069103718],[117,0,65,-0.5374624952673912],[117,0,66,-0.5358015894889832],[117,0,67,-0.5336802806705236],[117,0,68,-0.5318391248583794],[117,0,69,-0.5305978842079639],[117,0,70,-0.529931154102087],[117,0,71,-0.5292989611625671],[117,0,72,-0.5285233147442341],[117,0,73,-0.5278422683477402],[117,0,74,-0.5273886639624834],[117,0,75,-0.527093943208456],[117,0,76,-0.526702394708991],[117,0,77,-0.5259598940610886],[117,0,78,-0.5244757831096649],[117,0,79,-0.5225281454622746],[117,1,64,-0.5382577069103718],[117,1,65,-0.5374624952673912],[117,1,66,-0.5358015894889832],[117,1,67,-0.5336802806705236],[117,1,68,-0.5318391248583794],[117,1,69,-0.5305978842079639],[117,1,70,-0.529931154102087],[117,1,71,-0.5292989611625671],[117,1,72,-0.5285233147442341],[117,1,73,-0.5278422683477402],[117,1,74,-0.5273886639624834],[117,1,75,-0.527093943208456],[117,1,76,-0.526702394708991],[117,1,77,-0.5259598940610886],[117,1,78,-0.5244757831096649],[117,1,79,-0.5225281454622746],[117,2,64,-0.5382577069103718],[117,2,65,-0.5374624952673912],[117,2,66,-0.5358015894889832],[117,2,67,-0.5336802806705236],[117,2,68,-0.5318391248583794],[117,2,69,-0.5305978842079639],[117,2,70,-0.529931154102087],[117,2,71,-0.5292989611625671],[117,2,72,-0.5285233147442341],[117,2,73,-0.5278422683477402],[117,2,74,-0.5273886639624834],[117,2,75,-0.527093943208456],[117,2,76,-0.526702394708991],[117,2,77,-0.5259598940610886],[117,2,78,-0.5244757831096649],[117,2,79,-0.5225281454622746],[117,3,64,-0.5382577069103718],[117,3,65,-0.5374624952673912],[117,3,66,-0.5358015894889832],[117,3,67,-0.5336802806705236],[117,3,68,-0.5318391248583794],[117,3,69,-0.5305978842079639],[117,3,70,-0.529931154102087],[117,3,71,-0.5292989611625671],[117,3,72,-0.5285233147442341],[117,3,73,-0.5278422683477402],[117,3,74,-0.5273886639624834],[117,3,75,-0.527093943208456],[117,3,76,-0.526702394708991],[117,3,77,-0.5259598940610886],[117,3,78,-0.5244757831096649],[117,3,79,-0.5225281454622746],[117,4,64,-0.5382577069103718],[117,4,65,-0.5374624952673912],[117,4,66,-0.5358015894889832],[117,4,67,-0.5336802806705236],[117,4,68,-0.5318391248583794],[117,4,69,-0.5305978842079639],[117,4,70,-0.529931154102087],[117,4,71,-0.5292989611625671],[117,4,72,-0.5285233147442341],[117,4,73,-0.5278422683477402],[117,4,74,-0.5273886639624834],[117,4,75,-0.527093943208456],[117,4,76,-0.526702394708991],[117,4,77,-0.5259598940610886],[117,4,78,-0.5244757831096649],[117,4,79,-0.5225281454622746],[117,5,64,-0.5382577069103718],[117,5,65,-0.5374624952673912],[117,5,66,-0.5358015894889832],[117,5,67,-0.5336802806705236],[117,5,68,-0.5318391248583794],[117,5,69,-0.5305978842079639],[117,5,70,-0.529931154102087],[117,5,71,-0.5292989611625671],[117,5,72,-0.5285233147442341],[117,5,73,-0.5278422683477402],[117,5,74,-0.5273886639624834],[117,5,75,-0.527093943208456],[117,5,76,-0.526702394708991],[117,5,77,-0.5259598940610886],[117,5,78,-0.5244757831096649],[117,5,79,-0.5225281454622746],[117,6,64,-0.5382577069103718],[117,6,65,-0.5374624952673912],[117,6,66,-0.5358015894889832],[117,6,67,-0.5336802806705236],[117,6,68,-0.5318391248583794],[117,6,69,-0.5305978842079639],[117,6,70,-0.529931154102087],[117,6,71,-0.5292989611625671],[117,6,72,-0.5285233147442341],[117,6,73,-0.5278422683477402],[117,6,74,-0.5273886639624834],[117,6,75,-0.527093943208456],[117,6,76,-0.526702394708991],[117,6,77,-0.5259598940610886],[117,6,78,-0.5244757831096649],[117,6,79,-0.5225281454622746],[117,7,64,-0.5382577069103718],[117,7,65,-0.5374624952673912],[117,7,66,-0.5358015894889832],[117,7,67,-0.5336802806705236],[117,7,68,-0.5318391248583794],[117,7,69,-0.5305978842079639],[117,7,70,-0.529931154102087],[117,7,71,-0.5292989611625671],[117,7,72,-0.5285233147442341],[117,7,73,-0.5278422683477402],[117,7,74,-0.5273886639624834],[117,7,75,-0.527093943208456],[117,7,76,-0.526702394708991],[117,7,77,-0.5259598940610886],[117,7,78,-0.5244757831096649],[117,7,79,-0.5225281454622746],[117,8,64,-0.5382577069103718],[117,8,65,-0.5374624952673912],[117,8,66,-0.5358015894889832],[117,8,67,-0.5336802806705236],[117,8,68,-0.5318391248583794],[117,8,69,-0.5305978842079639],[117,8,70,-0.529931154102087],[117,8,71,-0.5292989611625671],[117,8,72,-0.5285233147442341],[117,8,73,-0.5278422683477402],[117,8,74,-0.5273886639624834],[117,8,75,-0.527093943208456],[117,8,76,-0.526702394708991],[117,8,77,-0.5259598940610886],[117,8,78,-0.5244757831096649],[117,8,79,-0.5225281454622746],[117,9,64,-0.5382577069103718],[117,9,65,-0.5374624952673912],[117,9,66,-0.5358015894889832],[117,9,67,-0.5336802806705236],[117,9,68,-0.5318391248583794],[117,9,69,-0.5305978842079639],[117,9,70,-0.529931154102087],[117,9,71,-0.5292989611625671],[117,9,72,-0.5285233147442341],[117,9,73,-0.5278422683477402],[117,9,74,-0.5273886639624834],[117,9,75,-0.527093943208456],[117,9,76,-0.526702394708991],[117,9,77,-0.5259598940610886],[117,9,78,-0.5244757831096649],[117,9,79,-0.5225281454622746],[117,10,64,-0.5382577069103718],[117,10,65,-0.5374624952673912],[117,10,66,-0.5358015894889832],[117,10,67,-0.5336802806705236],[117,10,68,-0.5318391248583794],[117,10,69,-0.5305978842079639],[117,10,70,-0.529931154102087],[117,10,71,-0.5292989611625671],[117,10,72,-0.5285233147442341],[117,10,73,-0.5278422683477402],[117,10,74,-0.5273886639624834],[117,10,75,-0.527093943208456],[117,10,76,-0.526702394708991],[117,10,77,-0.5259598940610886],[117,10,78,-0.5244757831096649],[117,10,79,-0.5225281454622746],[117,11,64,-0.5382577069103718],[117,11,65,-0.5374624952673912],[117,11,66,-0.5358015894889832],[117,11,67,-0.5336802806705236],[117,11,68,-0.5318391248583794],[117,11,69,-0.5305978842079639],[117,11,70,-0.529931154102087],[117,11,71,-0.5292989611625671],[117,11,72,-0.5285233147442341],[117,11,73,-0.5278422683477402],[117,11,74,-0.5273886639624834],[117,11,75,-0.527093943208456],[117,11,76,-0.526702394708991],[117,11,77,-0.5259598940610886],[117,11,78,-0.5244757831096649],[117,11,79,-0.5225281454622746],[117,12,64,-0.5382577069103718],[117,12,65,-0.5374624952673912],[117,12,66,-0.5358015894889832],[117,12,67,-0.5336802806705236],[117,12,68,-0.5318391248583794],[117,12,69,-0.5305978842079639],[117,12,70,-0.529931154102087],[117,12,71,-0.5292989611625671],[117,12,72,-0.5285233147442341],[117,12,73,-0.5278422683477402],[117,12,74,-0.5273886639624834],[117,12,75,-0.527093943208456],[117,12,76,-0.526702394708991],[117,12,77,-0.5259598940610886],[117,12,78,-0.5244757831096649],[117,12,79,-0.5225281454622746],[117,13,64,-0.5382577069103718],[117,13,65,-0.5374624952673912],[117,13,66,-0.5358015894889832],[117,13,67,-0.5336802806705236],[117,13,68,-0.5318391248583794],[117,13,69,-0.5305978842079639],[117,13,70,-0.529931154102087],[117,13,71,-0.5292989611625671],[117,13,72,-0.5285233147442341],[117,13,73,-0.5278422683477402],[117,13,74,-0.5273886639624834],[117,13,75,-0.527093943208456],[117,13,76,-0.526702394708991],[117,13,77,-0.5259598940610886],[117,13,78,-0.5244757831096649],[117,13,79,-0.5225281454622746],[117,14,64,-0.5382577069103718],[117,14,65,-0.5374624952673912],[117,14,66,-0.5358015894889832],[117,14,67,-0.5336802806705236],[117,14,68,-0.5318391248583794],[117,14,69,-0.5305978842079639],[117,14,70,-0.529931154102087],[117,14,71,-0.5292989611625671],[117,14,72,-0.5285233147442341],[117,14,73,-0.5278422683477402],[117,14,74,-0.5273886639624834],[117,14,75,-0.527093943208456],[117,14,76,-0.526702394708991],[117,14,77,-0.5259598940610886],[117,14,78,-0.5244757831096649],[117,14,79,-0.5225281454622746],[117,15,64,-0.5382577069103718],[117,15,65,-0.5374624952673912],[117,15,66,-0.5358015894889832],[117,15,67,-0.5336802806705236],[117,15,68,-0.5318391248583794],[117,15,69,-0.5305978842079639],[117,15,70,-0.529931154102087],[117,15,71,-0.5292989611625671],[117,15,72,-0.5285233147442341],[117,15,73,-0.5278422683477402],[117,15,74,-0.5273886639624834],[117,15,75,-0.527093943208456],[117,15,76,-0.526702394708991],[117,15,77,-0.5259598940610886],[117,15,78,-0.5244757831096649],[117,15,79,-0.5225281454622746],[117,16,64,-0.5382577069103718],[117,16,65,-0.5374624952673912],[117,16,66,-0.5358015894889832],[117,16,67,-0.5336802806705236],[117,16,68,-0.5318391248583794],[117,16,69,-0.5305978842079639],[117,16,70,-0.529931154102087],[117,16,71,-0.5292989611625671],[117,16,72,-0.5285233147442341],[117,16,73,-0.5278422683477402],[117,16,74,-0.5273886639624834],[117,16,75,-0.527093943208456],[117,16,76,-0.526702394708991],[117,16,77,-0.5259598940610886],[117,16,78,-0.5244757831096649],[117,16,79,-0.5225281454622746],[117,17,64,-0.5382577069103718],[117,17,65,-0.5374624952673912],[117,17,66,-0.5358015894889832],[117,17,67,-0.5336802806705236],[117,17,68,-0.5318391248583794],[117,17,69,-0.5305978842079639],[117,17,70,-0.529931154102087],[117,17,71,-0.5292989611625671],[117,17,72,-0.5285233147442341],[117,17,73,-0.5278422683477402],[117,17,74,-0.5273886639624834],[117,17,75,-0.527093943208456],[117,17,76,-0.526702394708991],[117,17,77,-0.5259598940610886],[117,17,78,-0.5244757831096649],[117,17,79,-0.5225281454622746],[117,18,64,-0.5382577069103718],[117,18,65,-0.5374624952673912],[117,18,66,-0.5358015894889832],[117,18,67,-0.5336802806705236],[117,18,68,-0.5318391248583794],[117,18,69,-0.5305978842079639],[117,18,70,-0.529931154102087],[117,18,71,-0.5292989611625671],[117,18,72,-0.5285233147442341],[117,18,73,-0.5278422683477402],[117,18,74,-0.5273886639624834],[117,18,75,-0.527093943208456],[117,18,76,-0.526702394708991],[117,18,77,-0.5259598940610886],[117,18,78,-0.5244757831096649],[117,18,79,-0.5225281454622746],[117,19,64,-0.5382577069103718],[117,19,65,-0.5374624952673912],[117,19,66,-0.5358015894889832],[117,19,67,-0.5336802806705236],[117,19,68,-0.5318391248583794],[117,19,69,-0.5305978842079639],[117,19,70,-0.529931154102087],[117,19,71,-0.5292989611625671],[117,19,72,-0.5285233147442341],[117,19,73,-0.5278422683477402],[117,19,74,-0.5273886639624834],[117,19,75,-0.527093943208456],[117,19,76,-0.526702394708991],[117,19,77,-0.5259598940610886],[117,19,78,-0.5244757831096649],[117,19,79,-0.5225281454622746],[117,20,64,-0.5382577069103718],[117,20,65,-0.5374624952673912],[117,20,66,-0.5358015894889832],[117,20,67,-0.5336802806705236],[117,20,68,-0.5318391248583794],[117,20,69,-0.5305978842079639],[117,20,70,-0.529931154102087],[117,20,71,-0.5292989611625671],[117,20,72,-0.5285233147442341],[117,20,73,-0.5278422683477402],[117,20,74,-0.5273886639624834],[117,20,75,-0.527093943208456],[117,20,76,-0.526702394708991],[117,20,77,-0.5259598940610886],[117,20,78,-0.5244757831096649],[117,20,79,-0.5225281454622746],[117,21,64,-0.5382577069103718],[117,21,65,-0.5374624952673912],[117,21,66,-0.5358015894889832],[117,21,67,-0.5336802806705236],[117,21,68,-0.5318391248583794],[117,21,69,-0.5305978842079639],[117,21,70,-0.529931154102087],[117,21,71,-0.5292989611625671],[117,21,72,-0.5285233147442341],[117,21,73,-0.5278422683477402],[117,21,74,-0.5273886639624834],[117,21,75,-0.527093943208456],[117,21,76,-0.526702394708991],[117,21,77,-0.5259598940610886],[117,21,78,-0.5244757831096649],[117,21,79,-0.5225281454622746],[117,22,64,-0.5382577069103718],[117,22,65,-0.5374624952673912],[117,22,66,-0.5358015894889832],[117,22,67,-0.5336802806705236],[117,22,68,-0.5318391248583794],[117,22,69,-0.5305978842079639],[117,22,70,-0.529931154102087],[117,22,71,-0.5292989611625671],[117,22,72,-0.5285233147442341],[117,22,73,-0.5278422683477402],[117,22,74,-0.5273886639624834],[117,22,75,-0.527093943208456],[117,22,76,-0.526702394708991],[117,22,77,-0.5259598940610886],[117,22,78,-0.5244757831096649],[117,22,79,-0.5225281454622746],[117,23,64,-0.5382577069103718],[117,23,65,-0.5374624952673912],[117,23,66,-0.5358015894889832],[117,23,67,-0.5336802806705236],[117,23,68,-0.5318391248583794],[117,23,69,-0.5305978842079639],[117,23,70,-0.529931154102087],[117,23,71,-0.5292989611625671],[117,23,72,-0.5285233147442341],[117,23,73,-0.5278422683477402],[117,23,74,-0.5273886639624834],[117,23,75,-0.527093943208456],[117,23,76,-0.526702394708991],[117,23,77,-0.5259598940610886],[117,23,78,-0.5244757831096649],[117,23,79,-0.5225281454622746],[117,24,64,-0.5382577069103718],[117,24,65,-0.5374624952673912],[117,24,66,-0.5358015894889832],[117,24,67,-0.5336802806705236],[117,24,68,-0.5318391248583794],[117,24,69,-0.5305978842079639],[117,24,70,-0.529931154102087],[117,24,71,-0.5292989611625671],[117,24,72,-0.5285233147442341],[117,24,73,-0.5278422683477402],[117,24,74,-0.5273886639624834],[117,24,75,-0.527093943208456],[117,24,76,-0.526702394708991],[117,24,77,-0.5259598940610886],[117,24,78,-0.5244757831096649],[117,24,79,-0.5225281454622746],[117,25,64,-0.5382577069103718],[117,25,65,-0.5374624952673912],[117,25,66,-0.5358015894889832],[117,25,67,-0.5336802806705236],[117,25,68,-0.5318391248583794],[117,25,69,-0.5305978842079639],[117,25,70,-0.529931154102087],[117,25,71,-0.5292989611625671],[117,25,72,-0.5285233147442341],[117,25,73,-0.5278422683477402],[117,25,74,-0.5273886639624834],[117,25,75,-0.527093943208456],[117,25,76,-0.526702394708991],[117,25,77,-0.5259598940610886],[117,25,78,-0.5244757831096649],[117,25,79,-0.5225281454622746],[117,26,64,-0.5382577069103718],[117,26,65,-0.5374624952673912],[117,26,66,-0.5358015894889832],[117,26,67,-0.5336802806705236],[117,26,68,-0.5318391248583794],[117,26,69,-0.5305978842079639],[117,26,70,-0.529931154102087],[117,26,71,-0.5292989611625671],[117,26,72,-0.5285233147442341],[117,26,73,-0.5278422683477402],[117,26,74,-0.5273886639624834],[117,26,75,-0.527093943208456],[117,26,76,-0.526702394708991],[117,26,77,-0.5259598940610886],[117,26,78,-0.5244757831096649],[117,26,79,-0.5225281454622746],[117,27,64,-0.5382577069103718],[117,27,65,-0.5374624952673912],[117,27,66,-0.5358015894889832],[117,27,67,-0.5336802806705236],[117,27,68,-0.5318391248583794],[117,27,69,-0.5305978842079639],[117,27,70,-0.529931154102087],[117,27,71,-0.5292989611625671],[117,27,72,-0.5285233147442341],[117,27,73,-0.5278422683477402],[117,27,74,-0.5273886639624834],[117,27,75,-0.527093943208456],[117,27,76,-0.526702394708991],[117,27,77,-0.5259598940610886],[117,27,78,-0.5244757831096649],[117,27,79,-0.5225281454622746],[117,28,64,-0.5382577069103718],[117,28,65,-0.5374624952673912],[117,28,66,-0.5358015894889832],[117,28,67,-0.5336802806705236],[117,28,68,-0.5318391248583794],[117,28,69,-0.5305978842079639],[117,28,70,-0.529931154102087],[117,28,71,-0.5292989611625671],[117,28,72,-0.5285233147442341],[117,28,73,-0.5278422683477402],[117,28,74,-0.5273886639624834],[117,28,75,-0.527093943208456],[117,28,76,-0.526702394708991],[117,28,77,-0.5259598940610886],[117,28,78,-0.5244757831096649],[117,28,79,-0.5225281454622746],[117,29,64,-0.5382577069103718],[117,29,65,-0.5374624952673912],[117,29,66,-0.5358015894889832],[117,29,67,-0.5336802806705236],[117,29,68,-0.5318391248583794],[117,29,69,-0.5305978842079639],[117,29,70,-0.529931154102087],[117,29,71,-0.5292989611625671],[117,29,72,-0.5285233147442341],[117,29,73,-0.5278422683477402],[117,29,74,-0.5273886639624834],[117,29,75,-0.527093943208456],[117,29,76,-0.526702394708991],[117,29,77,-0.5259598940610886],[117,29,78,-0.5244757831096649],[117,29,79,-0.5225281454622746],[117,30,64,-0.5382577069103718],[117,30,65,-0.5374624952673912],[117,30,66,-0.5358015894889832],[117,30,67,-0.5336802806705236],[117,30,68,-0.5318391248583794],[117,30,69,-0.5305978842079639],[117,30,70,-0.529931154102087],[117,30,71,-0.5292989611625671],[117,30,72,-0.5285233147442341],[117,30,73,-0.5278422683477402],[117,30,74,-0.5273886639624834],[117,30,75,-0.527093943208456],[117,30,76,-0.526702394708991],[117,30,77,-0.5259598940610886],[117,30,78,-0.5244757831096649],[117,30,79,-0.5225281454622746],[117,31,64,-0.5382577069103718],[117,31,65,-0.5374624952673912],[117,31,66,-0.5358015894889832],[117,31,67,-0.5336802806705236],[117,31,68,-0.5318391248583794],[117,31,69,-0.5305978842079639],[117,31,70,-0.529931154102087],[117,31,71,-0.5292989611625671],[117,31,72,-0.5285233147442341],[117,31,73,-0.5278422683477402],[117,31,74,-0.5273886639624834],[117,31,75,-0.527093943208456],[117,31,76,-0.526702394708991],[117,31,77,-0.5259598940610886],[117,31,78,-0.5244757831096649],[117,31,79,-0.5225281454622746],[117,32,64,-0.5382577069103718],[117,32,65,-0.5374624952673912],[117,32,66,-0.5358015894889832],[117,32,67,-0.5336802806705236],[117,32,68,-0.5318391248583794],[117,32,69,-0.5305978842079639],[117,32,70,-0.529931154102087],[117,32,71,-0.5292989611625671],[117,32,72,-0.5285233147442341],[117,32,73,-0.5278422683477402],[117,32,74,-0.5273886639624834],[117,32,75,-0.527093943208456],[117,32,76,-0.526702394708991],[117,32,77,-0.5259598940610886],[117,32,78,-0.5244757831096649],[117,32,79,-0.5225281454622746],[117,33,64,-0.5382577069103718],[117,33,65,-0.5374624952673912],[117,33,66,-0.5358015894889832],[117,33,67,-0.5336802806705236],[117,33,68,-0.5318391248583794],[117,33,69,-0.5305978842079639],[117,33,70,-0.529931154102087],[117,33,71,-0.5292989611625671],[117,33,72,-0.5285233147442341],[117,33,73,-0.5278422683477402],[117,33,74,-0.5273886639624834],[117,33,75,-0.527093943208456],[117,33,76,-0.526702394708991],[117,33,77,-0.5259598940610886],[117,33,78,-0.5244757831096649],[117,33,79,-0.5225281454622746],[117,34,64,-0.5382577069103718],[117,34,65,-0.5374624952673912],[117,34,66,-0.5358015894889832],[117,34,67,-0.5336802806705236],[117,34,68,-0.5318391248583794],[117,34,69,-0.5305978842079639],[117,34,70,-0.529931154102087],[117,34,71,-0.5292989611625671],[117,34,72,-0.5285233147442341],[117,34,73,-0.5278422683477402],[117,34,74,-0.5273886639624834],[117,34,75,-0.527093943208456],[117,34,76,-0.526702394708991],[117,34,77,-0.5259598940610886],[117,34,78,-0.5244757831096649],[117,34,79,-0.5225281454622746],[117,35,64,-0.5382577069103718],[117,35,65,-0.5374624952673912],[117,35,66,-0.5358015894889832],[117,35,67,-0.5336802806705236],[117,35,68,-0.5318391248583794],[117,35,69,-0.5305978842079639],[117,35,70,-0.529931154102087],[117,35,71,-0.5292989611625671],[117,35,72,-0.5285233147442341],[117,35,73,-0.5278422683477402],[117,35,74,-0.5273886639624834],[117,35,75,-0.527093943208456],[117,35,76,-0.526702394708991],[117,35,77,-0.5259598940610886],[117,35,78,-0.5244757831096649],[117,35,79,-0.5225281454622746],[117,36,64,-0.5382577069103718],[117,36,65,-0.5374624952673912],[117,36,66,-0.5358015894889832],[117,36,67,-0.5336802806705236],[117,36,68,-0.5318391248583794],[117,36,69,-0.5305978842079639],[117,36,70,-0.529931154102087],[117,36,71,-0.5292989611625671],[117,36,72,-0.5285233147442341],[117,36,73,-0.5278422683477402],[117,36,74,-0.5273886639624834],[117,36,75,-0.527093943208456],[117,36,76,-0.526702394708991],[117,36,77,-0.5259598940610886],[117,36,78,-0.5244757831096649],[117,36,79,-0.5225281454622746],[117,37,64,-0.5382577069103718],[117,37,65,-0.5374624952673912],[117,37,66,-0.5358015894889832],[117,37,67,-0.5336802806705236],[117,37,68,-0.5318391248583794],[117,37,69,-0.5305978842079639],[117,37,70,-0.529931154102087],[117,37,71,-0.5292989611625671],[117,37,72,-0.5285233147442341],[117,37,73,-0.5278422683477402],[117,37,74,-0.5273886639624834],[117,37,75,-0.527093943208456],[117,37,76,-0.526702394708991],[117,37,77,-0.5259598940610886],[117,37,78,-0.5244757831096649],[117,37,79,-0.5225281454622746],[117,38,64,-0.5382577069103718],[117,38,65,-0.5374624952673912],[117,38,66,-0.5358015894889832],[117,38,67,-0.5336802806705236],[117,38,68,-0.5318391248583794],[117,38,69,-0.5305978842079639],[117,38,70,-0.529931154102087],[117,38,71,-0.5292989611625671],[117,38,72,-0.5285233147442341],[117,38,73,-0.5278422683477402],[117,38,74,-0.5273886639624834],[117,38,75,-0.527093943208456],[117,38,76,-0.526702394708991],[117,38,77,-0.5259598940610886],[117,38,78,-0.5244757831096649],[117,38,79,-0.5225281454622746],[117,39,64,-0.5382577069103718],[117,39,65,-0.5374624952673912],[117,39,66,-0.5358015894889832],[117,39,67,-0.5336802806705236],[117,39,68,-0.5318391248583794],[117,39,69,-0.5305978842079639],[117,39,70,-0.529931154102087],[117,39,71,-0.5292989611625671],[117,39,72,-0.5285233147442341],[117,39,73,-0.5278422683477402],[117,39,74,-0.5273886639624834],[117,39,75,-0.527093943208456],[117,39,76,-0.526702394708991],[117,39,77,-0.5259598940610886],[117,39,78,-0.5244757831096649],[117,39,79,-0.5225281454622746],[117,40,64,-0.5382577069103718],[117,40,65,-0.5374624952673912],[117,40,66,-0.5358015894889832],[117,40,67,-0.5336802806705236],[117,40,68,-0.5318391248583794],[117,40,69,-0.5305978842079639],[117,40,70,-0.529931154102087],[117,40,71,-0.5292989611625671],[117,40,72,-0.5285233147442341],[117,40,73,-0.5278422683477402],[117,40,74,-0.5273886639624834],[117,40,75,-0.527093943208456],[117,40,76,-0.526702394708991],[117,40,77,-0.5259598940610886],[117,40,78,-0.5244757831096649],[117,40,79,-0.5225281454622746],[117,41,64,-0.5382577069103718],[117,41,65,-0.5374624952673912],[117,41,66,-0.5358015894889832],[117,41,67,-0.5336802806705236],[117,41,68,-0.5318391248583794],[117,41,69,-0.5305978842079639],[117,41,70,-0.529931154102087],[117,41,71,-0.5292989611625671],[117,41,72,-0.5285233147442341],[117,41,73,-0.5278422683477402],[117,41,74,-0.5273886639624834],[117,41,75,-0.527093943208456],[117,41,76,-0.526702394708991],[117,41,77,-0.5259598940610886],[117,41,78,-0.5244757831096649],[117,41,79,-0.5225281454622746],[117,42,64,-0.5382577069103718],[117,42,65,-0.5374624952673912],[117,42,66,-0.5358015894889832],[117,42,67,-0.5336802806705236],[117,42,68,-0.5318391248583794],[117,42,69,-0.5305978842079639],[117,42,70,-0.529931154102087],[117,42,71,-0.5292989611625671],[117,42,72,-0.5285233147442341],[117,42,73,-0.5278422683477402],[117,42,74,-0.5273886639624834],[117,42,75,-0.527093943208456],[117,42,76,-0.526702394708991],[117,42,77,-0.5259598940610886],[117,42,78,-0.5244757831096649],[117,42,79,-0.5225281454622746],[117,43,64,-0.5382577069103718],[117,43,65,-0.5374624952673912],[117,43,66,-0.5358015894889832],[117,43,67,-0.5336802806705236],[117,43,68,-0.5318391248583794],[117,43,69,-0.5305978842079639],[117,43,70,-0.529931154102087],[117,43,71,-0.5292989611625671],[117,43,72,-0.5285233147442341],[117,43,73,-0.5278422683477402],[117,43,74,-0.5273886639624834],[117,43,75,-0.527093943208456],[117,43,76,-0.526702394708991],[117,43,77,-0.5259598940610886],[117,43,78,-0.5244757831096649],[117,43,79,-0.5225281454622746],[117,44,64,-0.5382577069103718],[117,44,65,-0.5374624952673912],[117,44,66,-0.5358015894889832],[117,44,67,-0.5336802806705236],[117,44,68,-0.5318391248583794],[117,44,69,-0.5305978842079639],[117,44,70,-0.529931154102087],[117,44,71,-0.5292989611625671],[117,44,72,-0.5285233147442341],[117,44,73,-0.5278422683477402],[117,44,74,-0.5273886639624834],[117,44,75,-0.527093943208456],[117,44,76,-0.526702394708991],[117,44,77,-0.5259598940610886],[117,44,78,-0.5244757831096649],[117,44,79,-0.5225281454622746],[117,45,64,-0.5382577069103718],[117,45,65,-0.5374624952673912],[117,45,66,-0.5358015894889832],[117,45,67,-0.5336802806705236],[117,45,68,-0.5318391248583794],[117,45,69,-0.5305978842079639],[117,45,70,-0.529931154102087],[117,45,71,-0.5292989611625671],[117,45,72,-0.5285233147442341],[117,45,73,-0.5278422683477402],[117,45,74,-0.5273886639624834],[117,45,75,-0.527093943208456],[117,45,76,-0.526702394708991],[117,45,77,-0.5259598940610886],[117,45,78,-0.5244757831096649],[117,45,79,-0.5225281454622746],[117,46,64,-0.5382577069103718],[117,46,65,-0.5374624952673912],[117,46,66,-0.5358015894889832],[117,46,67,-0.5336802806705236],[117,46,68,-0.5318391248583794],[117,46,69,-0.5305978842079639],[117,46,70,-0.529931154102087],[117,46,71,-0.5292989611625671],[117,46,72,-0.5285233147442341],[117,46,73,-0.5278422683477402],[117,46,74,-0.5273886639624834],[117,46,75,-0.527093943208456],[117,46,76,-0.526702394708991],[117,46,77,-0.5259598940610886],[117,46,78,-0.5244757831096649],[117,46,79,-0.5225281454622746],[117,47,64,-0.5382577069103718],[117,47,65,-0.5374624952673912],[117,47,66,-0.5358015894889832],[117,47,67,-0.5336802806705236],[117,47,68,-0.5318391248583794],[117,47,69,-0.5305978842079639],[117,47,70,-0.529931154102087],[117,47,71,-0.5292989611625671],[117,47,72,-0.5285233147442341],[117,47,73,-0.5278422683477402],[117,47,74,-0.5273886639624834],[117,47,75,-0.527093943208456],[117,47,76,-0.526702394708991],[117,47,77,-0.5259598940610886],[117,47,78,-0.5244757831096649],[117,47,79,-0.5225281454622746],[117,48,64,-0.5382577069103718],[117,48,65,-0.5374624952673912],[117,48,66,-0.5358015894889832],[117,48,67,-0.5336802806705236],[117,48,68,-0.5318391248583794],[117,48,69,-0.5305978842079639],[117,48,70,-0.529931154102087],[117,48,71,-0.5292989611625671],[117,48,72,-0.5285233147442341],[117,48,73,-0.5278422683477402],[117,48,74,-0.5273886639624834],[117,48,75,-0.527093943208456],[117,48,76,-0.526702394708991],[117,48,77,-0.5259598940610886],[117,48,78,-0.5244757831096649],[117,48,79,-0.5225281454622746],[117,49,64,-0.5382577069103718],[117,49,65,-0.5374624952673912],[117,49,66,-0.5358015894889832],[117,49,67,-0.5336802806705236],[117,49,68,-0.5318391248583794],[117,49,69,-0.5305978842079639],[117,49,70,-0.529931154102087],[117,49,71,-0.5292989611625671],[117,49,72,-0.5285233147442341],[117,49,73,-0.5278422683477402],[117,49,74,-0.5273886639624834],[117,49,75,-0.527093943208456],[117,49,76,-0.526702394708991],[117,49,77,-0.5259598940610886],[117,49,78,-0.5244757831096649],[117,49,79,-0.5225281454622746],[117,50,64,-0.5382577069103718],[117,50,65,-0.5374624952673912],[117,50,66,-0.5358015894889832],[117,50,67,-0.5336802806705236],[117,50,68,-0.5318391248583794],[117,50,69,-0.5305978842079639],[117,50,70,-0.529931154102087],[117,50,71,-0.5292989611625671],[117,50,72,-0.5285233147442341],[117,50,73,-0.5278422683477402],[117,50,74,-0.5273886639624834],[117,50,75,-0.527093943208456],[117,50,76,-0.526702394708991],[117,50,77,-0.5259598940610886],[117,50,78,-0.5244757831096649],[117,50,79,-0.5225281454622746],[117,51,64,-0.5382577069103718],[117,51,65,-0.5374624952673912],[117,51,66,-0.5358015894889832],[117,51,67,-0.5336802806705236],[117,51,68,-0.5318391248583794],[117,51,69,-0.5305978842079639],[117,51,70,-0.529931154102087],[117,51,71,-0.5292989611625671],[117,51,72,-0.5285233147442341],[117,51,73,-0.5278422683477402],[117,51,74,-0.5273886639624834],[117,51,75,-0.527093943208456],[117,51,76,-0.526702394708991],[117,51,77,-0.5259598940610886],[117,51,78,-0.5244757831096649],[117,51,79,-0.5225281454622746],[117,52,64,-0.5382577069103718],[117,52,65,-0.5374624952673912],[117,52,66,-0.5358015894889832],[117,52,67,-0.5336802806705236],[117,52,68,-0.5318391248583794],[117,52,69,-0.5305978842079639],[117,52,70,-0.529931154102087],[117,52,71,-0.5292989611625671],[117,52,72,-0.5285233147442341],[117,52,73,-0.5278422683477402],[117,52,74,-0.5273886639624834],[117,52,75,-0.527093943208456],[117,52,76,-0.526702394708991],[117,52,77,-0.5259598940610886],[117,52,78,-0.5244757831096649],[117,52,79,-0.5225281454622746],[117,53,64,-0.5382577069103718],[117,53,65,-0.5374624952673912],[117,53,66,-0.5358015894889832],[117,53,67,-0.5336802806705236],[117,53,68,-0.5318391248583794],[117,53,69,-0.5305978842079639],[117,53,70,-0.529931154102087],[117,53,71,-0.5292989611625671],[117,53,72,-0.5285233147442341],[117,53,73,-0.5278422683477402],[117,53,74,-0.5273886639624834],[117,53,75,-0.527093943208456],[117,53,76,-0.526702394708991],[117,53,77,-0.5259598940610886],[117,53,78,-0.5244757831096649],[117,53,79,-0.5225281454622746],[117,54,64,-0.5382577069103718],[117,54,65,-0.5374624952673912],[117,54,66,-0.5358015894889832],[117,54,67,-0.5336802806705236],[117,54,68,-0.5318391248583794],[117,54,69,-0.5305978842079639],[117,54,70,-0.529931154102087],[117,54,71,-0.5292989611625671],[117,54,72,-0.5285233147442341],[117,54,73,-0.5278422683477402],[117,54,74,-0.5273886639624834],[117,54,75,-0.527093943208456],[117,54,76,-0.526702394708991],[117,54,77,-0.5259598940610886],[117,54,78,-0.5244757831096649],[117,54,79,-0.5225281454622746],[117,55,64,-0.5382577069103718],[117,55,65,-0.5374624952673912],[117,55,66,-0.5358015894889832],[117,55,67,-0.5336802806705236],[117,55,68,-0.5318391248583794],[117,55,69,-0.5305978842079639],[117,55,70,-0.529931154102087],[117,55,71,-0.5292989611625671],[117,55,72,-0.5285233147442341],[117,55,73,-0.5278422683477402],[117,55,74,-0.5273886639624834],[117,55,75,-0.527093943208456],[117,55,76,-0.526702394708991],[117,55,77,-0.5259598940610886],[117,55,78,-0.5244757831096649],[117,55,79,-0.5225281454622746],[117,56,64,-0.5382577069103718],[117,56,65,-0.5374624952673912],[117,56,66,-0.5358015894889832],[117,56,67,-0.5336802806705236],[117,56,68,-0.5318391248583794],[117,56,69,-0.5305978842079639],[117,56,70,-0.529931154102087],[117,56,71,-0.5292989611625671],[117,56,72,-0.5285233147442341],[117,56,73,-0.5278422683477402],[117,56,74,-0.5273886639624834],[117,56,75,-0.527093943208456],[117,56,76,-0.526702394708991],[117,56,77,-0.5259598940610886],[117,56,78,-0.5244757831096649],[117,56,79,-0.5225281454622746],[117,57,64,-0.5382577069103718],[117,57,65,-0.5374624952673912],[117,57,66,-0.5358015894889832],[117,57,67,-0.5336802806705236],[117,57,68,-0.5318391248583794],[117,57,69,-0.5305978842079639],[117,57,70,-0.529931154102087],[117,57,71,-0.5292989611625671],[117,57,72,-0.5285233147442341],[117,57,73,-0.5278422683477402],[117,57,74,-0.5273886639624834],[117,57,75,-0.527093943208456],[117,57,76,-0.526702394708991],[117,57,77,-0.5259598940610886],[117,57,78,-0.5244757831096649],[117,57,79,-0.5225281454622746],[117,58,64,-0.5382577069103718],[117,58,65,-0.5374624952673912],[117,58,66,-0.5358015894889832],[117,58,67,-0.5336802806705236],[117,58,68,-0.5318391248583794],[117,58,69,-0.5305978842079639],[117,58,70,-0.529931154102087],[117,58,71,-0.5292989611625671],[117,58,72,-0.5285233147442341],[117,58,73,-0.5278422683477402],[117,58,74,-0.5273886639624834],[117,58,75,-0.527093943208456],[117,58,76,-0.526702394708991],[117,58,77,-0.5259598940610886],[117,58,78,-0.5244757831096649],[117,58,79,-0.5225281454622746],[117,59,64,-0.5382577069103718],[117,59,65,-0.5374624952673912],[117,59,66,-0.5358015894889832],[117,59,67,-0.5336802806705236],[117,59,68,-0.5318391248583794],[117,59,69,-0.5305978842079639],[117,59,70,-0.529931154102087],[117,59,71,-0.5292989611625671],[117,59,72,-0.5285233147442341],[117,59,73,-0.5278422683477402],[117,59,74,-0.5273886639624834],[117,59,75,-0.527093943208456],[117,59,76,-0.526702394708991],[117,59,77,-0.5259598940610886],[117,59,78,-0.5244757831096649],[117,59,79,-0.5225281454622746],[117,60,64,-0.5382577069103718],[117,60,65,-0.5374624952673912],[117,60,66,-0.5358015894889832],[117,60,67,-0.5336802806705236],[117,60,68,-0.5318391248583794],[117,60,69,-0.5305978842079639],[117,60,70,-0.529931154102087],[117,60,71,-0.5292989611625671],[117,60,72,-0.5285233147442341],[117,60,73,-0.5278422683477402],[117,60,74,-0.5273886639624834],[117,60,75,-0.527093943208456],[117,60,76,-0.526702394708991],[117,60,77,-0.5259598940610886],[117,60,78,-0.5244757831096649],[117,60,79,-0.5225281454622746],[117,61,64,-0.5382577069103718],[117,61,65,-0.5374624952673912],[117,61,66,-0.5358015894889832],[117,61,67,-0.5336802806705236],[117,61,68,-0.5318391248583794],[117,61,69,-0.5305978842079639],[117,61,70,-0.529931154102087],[117,61,71,-0.5292989611625671],[117,61,72,-0.5285233147442341],[117,61,73,-0.5278422683477402],[117,61,74,-0.5273886639624834],[117,61,75,-0.527093943208456],[117,61,76,-0.526702394708991],[117,61,77,-0.5259598940610886],[117,61,78,-0.5244757831096649],[117,61,79,-0.5225281454622746],[117,62,64,-0.5382577069103718],[117,62,65,-0.5374624952673912],[117,62,66,-0.5358015894889832],[117,62,67,-0.5336802806705236],[117,62,68,-0.5318391248583794],[117,62,69,-0.5305978842079639],[117,62,70,-0.529931154102087],[117,62,71,-0.5292989611625671],[117,62,72,-0.5285233147442341],[117,62,73,-0.5278422683477402],[117,62,74,-0.5273886639624834],[117,62,75,-0.527093943208456],[117,62,76,-0.526702394708991],[117,62,77,-0.5259598940610886],[117,62,78,-0.5244757831096649],[117,62,79,-0.5225281454622746],[117,63,64,-0.5382577069103718],[117,63,65,-0.5374624952673912],[117,63,66,-0.5358015894889832],[117,63,67,-0.5336802806705236],[117,63,68,-0.5318391248583794],[117,63,69,-0.5305978842079639],[117,63,70,-0.529931154102087],[117,63,71,-0.5292989611625671],[117,63,72,-0.5285233147442341],[117,63,73,-0.5278422683477402],[117,63,74,-0.5273886639624834],[117,63,75,-0.527093943208456],[117,63,76,-0.526702394708991],[117,63,77,-0.5259598940610886],[117,63,78,-0.5244757831096649],[117,63,79,-0.5225281454622746],[117,64,64,-0.5382577069103718],[117,64,65,-0.5374624952673912],[117,64,66,-0.5358015894889832],[117,64,67,-0.5336802806705236],[117,64,68,-0.5318391248583794],[117,64,69,-0.5305978842079639],[117,64,70,-0.529931154102087],[117,64,71,-0.5292989611625671],[117,64,72,-0.5285233147442341],[117,64,73,-0.5278422683477402],[117,64,74,-0.5273886639624834],[117,64,75,-0.527093943208456],[117,64,76,-0.526702394708991],[117,64,77,-0.5259598940610886],[117,64,78,-0.5244757831096649],[117,64,79,-0.5225281454622746],[117,65,64,-0.5382577069103718],[117,65,65,-0.5374624952673912],[117,65,66,-0.5358015894889832],[117,65,67,-0.5336802806705236],[117,65,68,-0.5318391248583794],[117,65,69,-0.5305978842079639],[117,65,70,-0.529931154102087],[117,65,71,-0.5292989611625671],[117,65,72,-0.5285233147442341],[117,65,73,-0.5278422683477402],[117,65,74,-0.5273886639624834],[117,65,75,-0.527093943208456],[117,65,76,-0.526702394708991],[117,65,77,-0.5259598940610886],[117,65,78,-0.5244757831096649],[117,65,79,-0.5225281454622746],[117,66,64,-0.5382577069103718],[117,66,65,-0.5374624952673912],[117,66,66,-0.5358015894889832],[117,66,67,-0.5336802806705236],[117,66,68,-0.5318391248583794],[117,66,69,-0.5305978842079639],[117,66,70,-0.529931154102087],[117,66,71,-0.5292989611625671],[117,66,72,-0.5285233147442341],[117,66,73,-0.5278422683477402],[117,66,74,-0.5273886639624834],[117,66,75,-0.527093943208456],[117,66,76,-0.526702394708991],[117,66,77,-0.5259598940610886],[117,66,78,-0.5244757831096649],[117,66,79,-0.5225281454622746],[117,67,64,-0.5382577069103718],[117,67,65,-0.5374624952673912],[117,67,66,-0.5358015894889832],[117,67,67,-0.5336802806705236],[117,67,68,-0.5318391248583794],[117,67,69,-0.5305978842079639],[117,67,70,-0.529931154102087],[117,67,71,-0.5292989611625671],[117,67,72,-0.5285233147442341],[117,67,73,-0.5278422683477402],[117,67,74,-0.5273886639624834],[117,67,75,-0.527093943208456],[117,67,76,-0.526702394708991],[117,67,77,-0.5259598940610886],[117,67,78,-0.5244757831096649],[117,67,79,-0.5225281454622746],[117,68,64,-0.5382577069103718],[117,68,65,-0.5374624952673912],[117,68,66,-0.5358015894889832],[117,68,67,-0.5336802806705236],[117,68,68,-0.5318391248583794],[117,68,69,-0.5305978842079639],[117,68,70,-0.529931154102087],[117,68,71,-0.5292989611625671],[117,68,72,-0.5285233147442341],[117,68,73,-0.5278422683477402],[117,68,74,-0.5273886639624834],[117,68,75,-0.527093943208456],[117,68,76,-0.526702394708991],[117,68,77,-0.5259598940610886],[117,68,78,-0.5244757831096649],[117,68,79,-0.5225281454622746],[117,69,64,-0.5382577069103718],[117,69,65,-0.5374624952673912],[117,69,66,-0.5358015894889832],[117,69,67,-0.5336802806705236],[117,69,68,-0.5318391248583794],[117,69,69,-0.5305978842079639],[117,69,70,-0.529931154102087],[117,69,71,-0.5292989611625671],[117,69,72,-0.5285233147442341],[117,69,73,-0.5278422683477402],[117,69,74,-0.5273886639624834],[117,69,75,-0.527093943208456],[117,69,76,-0.526702394708991],[117,69,77,-0.5259598940610886],[117,69,78,-0.5244757831096649],[117,69,79,-0.5225281454622746],[117,70,64,-0.5382577069103718],[117,70,65,-0.5374624952673912],[117,70,66,-0.5358015894889832],[117,70,67,-0.5336802806705236],[117,70,68,-0.5318391248583794],[117,70,69,-0.5305978842079639],[117,70,70,-0.529931154102087],[117,70,71,-0.5292989611625671],[117,70,72,-0.5285233147442341],[117,70,73,-0.5278422683477402],[117,70,74,-0.5273886639624834],[117,70,75,-0.527093943208456],[117,70,76,-0.526702394708991],[117,70,77,-0.5259598940610886],[117,70,78,-0.5244757831096649],[117,70,79,-0.5225281454622746],[117,71,64,-0.5382577069103718],[117,71,65,-0.5374624952673912],[117,71,66,-0.5358015894889832],[117,71,67,-0.5336802806705236],[117,71,68,-0.5318391248583794],[117,71,69,-0.5305978842079639],[117,71,70,-0.529931154102087],[117,71,71,-0.5292989611625671],[117,71,72,-0.5285233147442341],[117,71,73,-0.5278422683477402],[117,71,74,-0.5273886639624834],[117,71,75,-0.527093943208456],[117,71,76,-0.526702394708991],[117,71,77,-0.5259598940610886],[117,71,78,-0.5244757831096649],[117,71,79,-0.5225281454622746],[117,72,64,-0.5382577069103718],[117,72,65,-0.5374624952673912],[117,72,66,-0.5358015894889832],[117,72,67,-0.5336802806705236],[117,72,68,-0.5318391248583794],[117,72,69,-0.5305978842079639],[117,72,70,-0.529931154102087],[117,72,71,-0.5292989611625671],[117,72,72,-0.5285233147442341],[117,72,73,-0.5278422683477402],[117,72,74,-0.5273886639624834],[117,72,75,-0.527093943208456],[117,72,76,-0.526702394708991],[117,72,77,-0.5259598940610886],[117,72,78,-0.5244757831096649],[117,72,79,-0.5225281454622746],[117,73,64,-0.5382577069103718],[117,73,65,-0.5374624952673912],[117,73,66,-0.5358015894889832],[117,73,67,-0.5336802806705236],[117,73,68,-0.5318391248583794],[117,73,69,-0.5305978842079639],[117,73,70,-0.529931154102087],[117,73,71,-0.5292989611625671],[117,73,72,-0.5285233147442341],[117,73,73,-0.5278422683477402],[117,73,74,-0.5273886639624834],[117,73,75,-0.527093943208456],[117,73,76,-0.526702394708991],[117,73,77,-0.5259598940610886],[117,73,78,-0.5244757831096649],[117,73,79,-0.5225281454622746],[117,74,64,-0.5382577069103718],[117,74,65,-0.5374624952673912],[117,74,66,-0.5358015894889832],[117,74,67,-0.5336802806705236],[117,74,68,-0.5318391248583794],[117,74,69,-0.5305978842079639],[117,74,70,-0.529931154102087],[117,74,71,-0.5292989611625671],[117,74,72,-0.5285233147442341],[117,74,73,-0.5278422683477402],[117,74,74,-0.5273886639624834],[117,74,75,-0.527093943208456],[117,74,76,-0.526702394708991],[117,74,77,-0.5259598940610886],[117,74,78,-0.5244757831096649],[117,74,79,-0.5225281454622746],[117,75,64,-0.5382577069103718],[117,75,65,-0.5374624952673912],[117,75,66,-0.5358015894889832],[117,75,67,-0.5336802806705236],[117,75,68,-0.5318391248583794],[117,75,69,-0.5305978842079639],[117,75,70,-0.529931154102087],[117,75,71,-0.5292989611625671],[117,75,72,-0.5285233147442341],[117,75,73,-0.5278422683477402],[117,75,74,-0.5273886639624834],[117,75,75,-0.527093943208456],[117,75,76,-0.526702394708991],[117,75,77,-0.5259598940610886],[117,75,78,-0.5244757831096649],[117,75,79,-0.5225281454622746],[117,76,64,-0.5382577069103718],[117,76,65,-0.5374624952673912],[117,76,66,-0.5358015894889832],[117,76,67,-0.5336802806705236],[117,76,68,-0.5318391248583794],[117,76,69,-0.5305978842079639],[117,76,70,-0.529931154102087],[117,76,71,-0.5292989611625671],[117,76,72,-0.5285233147442341],[117,76,73,-0.5278422683477402],[117,76,74,-0.5273886639624834],[117,76,75,-0.527093943208456],[117,76,76,-0.526702394708991],[117,76,77,-0.5259598940610886],[117,76,78,-0.5244757831096649],[117,76,79,-0.5225281454622746],[117,77,64,-0.5382577069103718],[117,77,65,-0.5374624952673912],[117,77,66,-0.5358015894889832],[117,77,67,-0.5336802806705236],[117,77,68,-0.5318391248583794],[117,77,69,-0.5305978842079639],[117,77,70,-0.529931154102087],[117,77,71,-0.5292989611625671],[117,77,72,-0.5285233147442341],[117,77,73,-0.5278422683477402],[117,77,74,-0.5273886639624834],[117,77,75,-0.527093943208456],[117,77,76,-0.526702394708991],[117,77,77,-0.5259598940610886],[117,77,78,-0.5244757831096649],[117,77,79,-0.5225281454622746],[117,78,64,-0.5382577069103718],[117,78,65,-0.5374624952673912],[117,78,66,-0.5358015894889832],[117,78,67,-0.5336802806705236],[117,78,68,-0.5318391248583794],[117,78,69,-0.5305978842079639],[117,78,70,-0.529931154102087],[117,78,71,-0.5292989611625671],[117,78,72,-0.5285233147442341],[117,78,73,-0.5278422683477402],[117,78,74,-0.5273886639624834],[117,78,75,-0.527093943208456],[117,78,76,-0.526702394708991],[117,78,77,-0.5259598940610886],[117,78,78,-0.5244757831096649],[117,78,79,-0.5225281454622746],[117,79,64,-0.5382577069103718],[117,79,65,-0.5374624952673912],[117,79,66,-0.5358015894889832],[117,79,67,-0.5336802806705236],[117,79,68,-0.5318391248583794],[117,79,69,-0.5305978842079639],[117,79,70,-0.529931154102087],[117,79,71,-0.5292989611625671],[117,79,72,-0.5285233147442341],[117,79,73,-0.5278422683477402],[117,79,74,-0.5273886639624834],[117,79,75,-0.527093943208456],[117,79,76,-0.526702394708991],[117,79,77,-0.5259598940610886],[117,79,78,-0.5244757831096649],[117,79,79,-0.5225281454622746],[117,80,64,-0.5382577069103718],[117,80,65,-0.5374624952673912],[117,80,66,-0.5358015894889832],[117,80,67,-0.5336802806705236],[117,80,68,-0.5318391248583794],[117,80,69,-0.5305978842079639],[117,80,70,-0.529931154102087],[117,80,71,-0.5292989611625671],[117,80,72,-0.5285233147442341],[117,80,73,-0.5278422683477402],[117,80,74,-0.5273886639624834],[117,80,75,-0.527093943208456],[117,80,76,-0.526702394708991],[117,80,77,-0.5259598940610886],[117,80,78,-0.5244757831096649],[117,80,79,-0.5225281454622746],[117,81,64,-0.5382577069103718],[117,81,65,-0.5374624952673912],[117,81,66,-0.5358015894889832],[117,81,67,-0.5336802806705236],[117,81,68,-0.5318391248583794],[117,81,69,-0.5305978842079639],[117,81,70,-0.529931154102087],[117,81,71,-0.5292989611625671],[117,81,72,-0.5285233147442341],[117,81,73,-0.5278422683477402],[117,81,74,-0.5273886639624834],[117,81,75,-0.527093943208456],[117,81,76,-0.526702394708991],[117,81,77,-0.5259598940610886],[117,81,78,-0.5244757831096649],[117,81,79,-0.5225281454622746],[117,82,64,-0.5382577069103718],[117,82,65,-0.5374624952673912],[117,82,66,-0.5358015894889832],[117,82,67,-0.5336802806705236],[117,82,68,-0.5318391248583794],[117,82,69,-0.5305978842079639],[117,82,70,-0.529931154102087],[117,82,71,-0.5292989611625671],[117,82,72,-0.5285233147442341],[117,82,73,-0.5278422683477402],[117,82,74,-0.5273886639624834],[117,82,75,-0.527093943208456],[117,82,76,-0.526702394708991],[117,82,77,-0.5259598940610886],[117,82,78,-0.5244757831096649],[117,82,79,-0.5225281454622746],[117,83,64,-0.5382577069103718],[117,83,65,-0.5374624952673912],[117,83,66,-0.5358015894889832],[117,83,67,-0.5336802806705236],[117,83,68,-0.5318391248583794],[117,83,69,-0.5305978842079639],[117,83,70,-0.529931154102087],[117,83,71,-0.5292989611625671],[117,83,72,-0.5285233147442341],[117,83,73,-0.5278422683477402],[117,83,74,-0.5273886639624834],[117,83,75,-0.527093943208456],[117,83,76,-0.526702394708991],[117,83,77,-0.5259598940610886],[117,83,78,-0.5244757831096649],[117,83,79,-0.5225281454622746],[117,84,64,-0.5382577069103718],[117,84,65,-0.5374624952673912],[117,84,66,-0.5358015894889832],[117,84,67,-0.5336802806705236],[117,84,68,-0.5318391248583794],[117,84,69,-0.5305978842079639],[117,84,70,-0.529931154102087],[117,84,71,-0.5292989611625671],[117,84,72,-0.5285233147442341],[117,84,73,-0.5278422683477402],[117,84,74,-0.5273886639624834],[117,84,75,-0.527093943208456],[117,84,76,-0.526702394708991],[117,84,77,-0.5259598940610886],[117,84,78,-0.5244757831096649],[117,84,79,-0.5225281454622746],[117,85,64,-0.5382577069103718],[117,85,65,-0.5374624952673912],[117,85,66,-0.5358015894889832],[117,85,67,-0.5336802806705236],[117,85,68,-0.5318391248583794],[117,85,69,-0.5305978842079639],[117,85,70,-0.529931154102087],[117,85,71,-0.5292989611625671],[117,85,72,-0.5285233147442341],[117,85,73,-0.5278422683477402],[117,85,74,-0.5273886639624834],[117,85,75,-0.527093943208456],[117,85,76,-0.526702394708991],[117,85,77,-0.5259598940610886],[117,85,78,-0.5244757831096649],[117,85,79,-0.5225281454622746],[117,86,64,-0.5382577069103718],[117,86,65,-0.5374624952673912],[117,86,66,-0.5358015894889832],[117,86,67,-0.5336802806705236],[117,86,68,-0.5318391248583794],[117,86,69,-0.5305978842079639],[117,86,70,-0.529931154102087],[117,86,71,-0.5292989611625671],[117,86,72,-0.5285233147442341],[117,86,73,-0.5278422683477402],[117,86,74,-0.5273886639624834],[117,86,75,-0.527093943208456],[117,86,76,-0.526702394708991],[117,86,77,-0.5259598940610886],[117,86,78,-0.5244757831096649],[117,86,79,-0.5225281454622746],[117,87,64,-0.5382577069103718],[117,87,65,-0.5374624952673912],[117,87,66,-0.5358015894889832],[117,87,67,-0.5336802806705236],[117,87,68,-0.5318391248583794],[117,87,69,-0.5305978842079639],[117,87,70,-0.529931154102087],[117,87,71,-0.5292989611625671],[117,87,72,-0.5285233147442341],[117,87,73,-0.5278422683477402],[117,87,74,-0.5273886639624834],[117,87,75,-0.527093943208456],[117,87,76,-0.526702394708991],[117,87,77,-0.5259598940610886],[117,87,78,-0.5244757831096649],[117,87,79,-0.5225281454622746],[117,88,64,-0.5382577069103718],[117,88,65,-0.5374624952673912],[117,88,66,-0.5358015894889832],[117,88,67,-0.5336802806705236],[117,88,68,-0.5318391248583794],[117,88,69,-0.5305978842079639],[117,88,70,-0.529931154102087],[117,88,71,-0.5292989611625671],[117,88,72,-0.5285233147442341],[117,88,73,-0.5278422683477402],[117,88,74,-0.5273886639624834],[117,88,75,-0.527093943208456],[117,88,76,-0.526702394708991],[117,88,77,-0.5259598940610886],[117,88,78,-0.5244757831096649],[117,88,79,-0.5225281454622746],[117,89,64,-0.5382577069103718],[117,89,65,-0.5374624952673912],[117,89,66,-0.5358015894889832],[117,89,67,-0.5336802806705236],[117,89,68,-0.5318391248583794],[117,89,69,-0.5305978842079639],[117,89,70,-0.529931154102087],[117,89,71,-0.5292989611625671],[117,89,72,-0.5285233147442341],[117,89,73,-0.5278422683477402],[117,89,74,-0.5273886639624834],[117,89,75,-0.527093943208456],[117,89,76,-0.526702394708991],[117,89,77,-0.5259598940610886],[117,89,78,-0.5244757831096649],[117,89,79,-0.5225281454622746],[117,90,64,-0.5382577069103718],[117,90,65,-0.5374624952673912],[117,90,66,-0.5358015894889832],[117,90,67,-0.5336802806705236],[117,90,68,-0.5318391248583794],[117,90,69,-0.5305978842079639],[117,90,70,-0.529931154102087],[117,90,71,-0.5292989611625671],[117,90,72,-0.5285233147442341],[117,90,73,-0.5278422683477402],[117,90,74,-0.5273886639624834],[117,90,75,-0.527093943208456],[117,90,76,-0.526702394708991],[117,90,77,-0.5259598940610886],[117,90,78,-0.5244757831096649],[117,90,79,-0.5225281454622746],[117,91,64,-0.5382577069103718],[117,91,65,-0.5374624952673912],[117,91,66,-0.5358015894889832],[117,91,67,-0.5336802806705236],[117,91,68,-0.5318391248583794],[117,91,69,-0.5305978842079639],[117,91,70,-0.529931154102087],[117,91,71,-0.5292989611625671],[117,91,72,-0.5285233147442341],[117,91,73,-0.5278422683477402],[117,91,74,-0.5273886639624834],[117,91,75,-0.527093943208456],[117,91,76,-0.526702394708991],[117,91,77,-0.5259598940610886],[117,91,78,-0.5244757831096649],[117,91,79,-0.5225281454622746],[117,92,64,-0.5382577069103718],[117,92,65,-0.5374624952673912],[117,92,66,-0.5358015894889832],[117,92,67,-0.5336802806705236],[117,92,68,-0.5318391248583794],[117,92,69,-0.5305978842079639],[117,92,70,-0.529931154102087],[117,92,71,-0.5292989611625671],[117,92,72,-0.5285233147442341],[117,92,73,-0.5278422683477402],[117,92,74,-0.5273886639624834],[117,92,75,-0.527093943208456],[117,92,76,-0.526702394708991],[117,92,77,-0.5259598940610886],[117,92,78,-0.5244757831096649],[117,92,79,-0.5225281454622746],[117,93,64,-0.5382577069103718],[117,93,65,-0.5374624952673912],[117,93,66,-0.5358015894889832],[117,93,67,-0.5336802806705236],[117,93,68,-0.5318391248583794],[117,93,69,-0.5305978842079639],[117,93,70,-0.529931154102087],[117,93,71,-0.5292989611625671],[117,93,72,-0.5285233147442341],[117,93,73,-0.5278422683477402],[117,93,74,-0.5273886639624834],[117,93,75,-0.527093943208456],[117,93,76,-0.526702394708991],[117,93,77,-0.5259598940610886],[117,93,78,-0.5244757831096649],[117,93,79,-0.5225281454622746],[117,94,64,-0.5382577069103718],[117,94,65,-0.5374624952673912],[117,94,66,-0.5358015894889832],[117,94,67,-0.5336802806705236],[117,94,68,-0.5318391248583794],[117,94,69,-0.5305978842079639],[117,94,70,-0.529931154102087],[117,94,71,-0.5292989611625671],[117,94,72,-0.5285233147442341],[117,94,73,-0.5278422683477402],[117,94,74,-0.5273886639624834],[117,94,75,-0.527093943208456],[117,94,76,-0.526702394708991],[117,94,77,-0.5259598940610886],[117,94,78,-0.5244757831096649],[117,94,79,-0.5225281454622746],[117,95,64,-0.5382577069103718],[117,95,65,-0.5374624952673912],[117,95,66,-0.5358015894889832],[117,95,67,-0.5336802806705236],[117,95,68,-0.5318391248583794],[117,95,69,-0.5305978842079639],[117,95,70,-0.529931154102087],[117,95,71,-0.5292989611625671],[117,95,72,-0.5285233147442341],[117,95,73,-0.5278422683477402],[117,95,74,-0.5273886639624834],[117,95,75,-0.527093943208456],[117,95,76,-0.526702394708991],[117,95,77,-0.5259598940610886],[117,95,78,-0.5244757831096649],[117,95,79,-0.5225281454622746],[117,96,64,-0.5382577069103718],[117,96,65,-0.5374624952673912],[117,96,66,-0.5358015894889832],[117,96,67,-0.5336802806705236],[117,96,68,-0.5318391248583794],[117,96,69,-0.5305978842079639],[117,96,70,-0.529931154102087],[117,96,71,-0.5292989611625671],[117,96,72,-0.5285233147442341],[117,96,73,-0.5278422683477402],[117,96,74,-0.5273886639624834],[117,96,75,-0.527093943208456],[117,96,76,-0.526702394708991],[117,96,77,-0.5259598940610886],[117,96,78,-0.5244757831096649],[117,96,79,-0.5225281454622746],[117,97,64,-0.5382577069103718],[117,97,65,-0.5374624952673912],[117,97,66,-0.5358015894889832],[117,97,67,-0.5336802806705236],[117,97,68,-0.5318391248583794],[117,97,69,-0.5305978842079639],[117,97,70,-0.529931154102087],[117,97,71,-0.5292989611625671],[117,97,72,-0.5285233147442341],[117,97,73,-0.5278422683477402],[117,97,74,-0.5273886639624834],[117,97,75,-0.527093943208456],[117,97,76,-0.526702394708991],[117,97,77,-0.5259598940610886],[117,97,78,-0.5244757831096649],[117,97,79,-0.5225281454622746],[117,98,64,-0.5382577069103718],[117,98,65,-0.5374624952673912],[117,98,66,-0.5358015894889832],[117,98,67,-0.5336802806705236],[117,98,68,-0.5318391248583794],[117,98,69,-0.5305978842079639],[117,98,70,-0.529931154102087],[117,98,71,-0.5292989611625671],[117,98,72,-0.5285233147442341],[117,98,73,-0.5278422683477402],[117,98,74,-0.5273886639624834],[117,98,75,-0.527093943208456],[117,98,76,-0.526702394708991],[117,98,77,-0.5259598940610886],[117,98,78,-0.5244757831096649],[117,98,79,-0.5225281454622746],[117,99,64,-0.5382577069103718],[117,99,65,-0.5374624952673912],[117,99,66,-0.5358015894889832],[117,99,67,-0.5336802806705236],[117,99,68,-0.5318391248583794],[117,99,69,-0.5305978842079639],[117,99,70,-0.529931154102087],[117,99,71,-0.5292989611625671],[117,99,72,-0.5285233147442341],[117,99,73,-0.5278422683477402],[117,99,74,-0.5273886639624834],[117,99,75,-0.527093943208456],[117,99,76,-0.526702394708991],[117,99,77,-0.5259598940610886],[117,99,78,-0.5244757831096649],[117,99,79,-0.5225281454622746],[117,100,64,-0.5382577069103718],[117,100,65,-0.5374624952673912],[117,100,66,-0.5358015894889832],[117,100,67,-0.5336802806705236],[117,100,68,-0.5318391248583794],[117,100,69,-0.5305978842079639],[117,100,70,-0.529931154102087],[117,100,71,-0.5292989611625671],[117,100,72,-0.5285233147442341],[117,100,73,-0.5278422683477402],[117,100,74,-0.5273886639624834],[117,100,75,-0.527093943208456],[117,100,76,-0.526702394708991],[117,100,77,-0.5259598940610886],[117,100,78,-0.5244757831096649],[117,100,79,-0.5225281454622746],[117,101,64,-0.5382577069103718],[117,101,65,-0.5374624952673912],[117,101,66,-0.5358015894889832],[117,101,67,-0.5336802806705236],[117,101,68,-0.5318391248583794],[117,101,69,-0.5305978842079639],[117,101,70,-0.529931154102087],[117,101,71,-0.5292989611625671],[117,101,72,-0.5285233147442341],[117,101,73,-0.5278422683477402],[117,101,74,-0.5273886639624834],[117,101,75,-0.527093943208456],[117,101,76,-0.526702394708991],[117,101,77,-0.5259598940610886],[117,101,78,-0.5244757831096649],[117,101,79,-0.5225281454622746],[117,102,64,-0.5382577069103718],[117,102,65,-0.5374624952673912],[117,102,66,-0.5358015894889832],[117,102,67,-0.5336802806705236],[117,102,68,-0.5318391248583794],[117,102,69,-0.5305978842079639],[117,102,70,-0.529931154102087],[117,102,71,-0.5292989611625671],[117,102,72,-0.5285233147442341],[117,102,73,-0.5278422683477402],[117,102,74,-0.5273886639624834],[117,102,75,-0.527093943208456],[117,102,76,-0.526702394708991],[117,102,77,-0.5259598940610886],[117,102,78,-0.5244757831096649],[117,102,79,-0.5225281454622746],[117,103,64,-0.5382577069103718],[117,103,65,-0.5374624952673912],[117,103,66,-0.5358015894889832],[117,103,67,-0.5336802806705236],[117,103,68,-0.5318391248583794],[117,103,69,-0.5305978842079639],[117,103,70,-0.529931154102087],[117,103,71,-0.5292989611625671],[117,103,72,-0.5285233147442341],[117,103,73,-0.5278422683477402],[117,103,74,-0.5273886639624834],[117,103,75,-0.527093943208456],[117,103,76,-0.526702394708991],[117,103,77,-0.5259598940610886],[117,103,78,-0.5244757831096649],[117,103,79,-0.5225281454622746],[117,104,64,-0.5382577069103718],[117,104,65,-0.5374624952673912],[117,104,66,-0.5358015894889832],[117,104,67,-0.5336802806705236],[117,104,68,-0.5318391248583794],[117,104,69,-0.5305978842079639],[117,104,70,-0.529931154102087],[117,104,71,-0.5292989611625671],[117,104,72,-0.5285233147442341],[117,104,73,-0.5278422683477402],[117,104,74,-0.5273886639624834],[117,104,75,-0.527093943208456],[117,104,76,-0.526702394708991],[117,104,77,-0.5259598940610886],[117,104,78,-0.5244757831096649],[117,104,79,-0.5225281454622746],[117,105,64,-0.5382577069103718],[117,105,65,-0.5374624952673912],[117,105,66,-0.5358015894889832],[117,105,67,-0.5336802806705236],[117,105,68,-0.5318391248583794],[117,105,69,-0.5305978842079639],[117,105,70,-0.529931154102087],[117,105,71,-0.5292989611625671],[117,105,72,-0.5285233147442341],[117,105,73,-0.5278422683477402],[117,105,74,-0.5273886639624834],[117,105,75,-0.527093943208456],[117,105,76,-0.526702394708991],[117,105,77,-0.5259598940610886],[117,105,78,-0.5244757831096649],[117,105,79,-0.5225281454622746],[117,106,64,-0.5382577069103718],[117,106,65,-0.5374624952673912],[117,106,66,-0.5358015894889832],[117,106,67,-0.5336802806705236],[117,106,68,-0.5318391248583794],[117,106,69,-0.5305978842079639],[117,106,70,-0.529931154102087],[117,106,71,-0.5292989611625671],[117,106,72,-0.5285233147442341],[117,106,73,-0.5278422683477402],[117,106,74,-0.5273886639624834],[117,106,75,-0.527093943208456],[117,106,76,-0.526702394708991],[117,106,77,-0.5259598940610886],[117,106,78,-0.5244757831096649],[117,106,79,-0.5225281454622746],[117,107,64,-0.5382577069103718],[117,107,65,-0.5374624952673912],[117,107,66,-0.5358015894889832],[117,107,67,-0.5336802806705236],[117,107,68,-0.5318391248583794],[117,107,69,-0.5305978842079639],[117,107,70,-0.529931154102087],[117,107,71,-0.5292989611625671],[117,107,72,-0.5285233147442341],[117,107,73,-0.5278422683477402],[117,107,74,-0.5273886639624834],[117,107,75,-0.527093943208456],[117,107,76,-0.526702394708991],[117,107,77,-0.5259598940610886],[117,107,78,-0.5244757831096649],[117,107,79,-0.5225281454622746],[117,108,64,-0.5382577069103718],[117,108,65,-0.5374624952673912],[117,108,66,-0.5358015894889832],[117,108,67,-0.5336802806705236],[117,108,68,-0.5318391248583794],[117,108,69,-0.5305978842079639],[117,108,70,-0.529931154102087],[117,108,71,-0.5292989611625671],[117,108,72,-0.5285233147442341],[117,108,73,-0.5278422683477402],[117,108,74,-0.5273886639624834],[117,108,75,-0.527093943208456],[117,108,76,-0.526702394708991],[117,108,77,-0.5259598940610886],[117,108,78,-0.5244757831096649],[117,108,79,-0.5225281454622746],[117,109,64,-0.5382577069103718],[117,109,65,-0.5374624952673912],[117,109,66,-0.5358015894889832],[117,109,67,-0.5336802806705236],[117,109,68,-0.5318391248583794],[117,109,69,-0.5305978842079639],[117,109,70,-0.529931154102087],[117,109,71,-0.5292989611625671],[117,109,72,-0.5285233147442341],[117,109,73,-0.5278422683477402],[117,109,74,-0.5273886639624834],[117,109,75,-0.527093943208456],[117,109,76,-0.526702394708991],[117,109,77,-0.5259598940610886],[117,109,78,-0.5244757831096649],[117,109,79,-0.5225281454622746],[117,110,64,-0.5382577069103718],[117,110,65,-0.5374624952673912],[117,110,66,-0.5358015894889832],[117,110,67,-0.5336802806705236],[117,110,68,-0.5318391248583794],[117,110,69,-0.5305978842079639],[117,110,70,-0.529931154102087],[117,110,71,-0.5292989611625671],[117,110,72,-0.5285233147442341],[117,110,73,-0.5278422683477402],[117,110,74,-0.5273886639624834],[117,110,75,-0.527093943208456],[117,110,76,-0.526702394708991],[117,110,77,-0.5259598940610886],[117,110,78,-0.5244757831096649],[117,110,79,-0.5225281454622746],[117,111,64,-0.5382577069103718],[117,111,65,-0.5374624952673912],[117,111,66,-0.5358015894889832],[117,111,67,-0.5336802806705236],[117,111,68,-0.5318391248583794],[117,111,69,-0.5305978842079639],[117,111,70,-0.529931154102087],[117,111,71,-0.5292989611625671],[117,111,72,-0.5285233147442341],[117,111,73,-0.5278422683477402],[117,111,74,-0.5273886639624834],[117,111,75,-0.527093943208456],[117,111,76,-0.526702394708991],[117,111,77,-0.5259598940610886],[117,111,78,-0.5244757831096649],[117,111,79,-0.5225281454622746],[117,112,64,-0.5382577069103718],[117,112,65,-0.5374624952673912],[117,112,66,-0.5358015894889832],[117,112,67,-0.5336802806705236],[117,112,68,-0.5318391248583794],[117,112,69,-0.5305978842079639],[117,112,70,-0.529931154102087],[117,112,71,-0.5292989611625671],[117,112,72,-0.5285233147442341],[117,112,73,-0.5278422683477402],[117,112,74,-0.5273886639624834],[117,112,75,-0.527093943208456],[117,112,76,-0.526702394708991],[117,112,77,-0.5259598940610886],[117,112,78,-0.5244757831096649],[117,112,79,-0.5225281454622746],[117,113,64,-0.5382577069103718],[117,113,65,-0.5374624952673912],[117,113,66,-0.5358015894889832],[117,113,67,-0.5336802806705236],[117,113,68,-0.5318391248583794],[117,113,69,-0.5305978842079639],[117,113,70,-0.529931154102087],[117,113,71,-0.5292989611625671],[117,113,72,-0.5285233147442341],[117,113,73,-0.5278422683477402],[117,113,74,-0.5273886639624834],[117,113,75,-0.527093943208456],[117,113,76,-0.526702394708991],[117,113,77,-0.5259598940610886],[117,113,78,-0.5244757831096649],[117,113,79,-0.5225281454622746],[117,114,64,-0.5382577069103718],[117,114,65,-0.5374624952673912],[117,114,66,-0.5358015894889832],[117,114,67,-0.5336802806705236],[117,114,68,-0.5318391248583794],[117,114,69,-0.5305978842079639],[117,114,70,-0.529931154102087],[117,114,71,-0.5292989611625671],[117,114,72,-0.5285233147442341],[117,114,73,-0.5278422683477402],[117,114,74,-0.5273886639624834],[117,114,75,-0.527093943208456],[117,114,76,-0.526702394708991],[117,114,77,-0.5259598940610886],[117,114,78,-0.5244757831096649],[117,114,79,-0.5225281454622746],[117,115,64,-0.5382577069103718],[117,115,65,-0.5374624952673912],[117,115,66,-0.5358015894889832],[117,115,67,-0.5336802806705236],[117,115,68,-0.5318391248583794],[117,115,69,-0.5305978842079639],[117,115,70,-0.529931154102087],[117,115,71,-0.5292989611625671],[117,115,72,-0.5285233147442341],[117,115,73,-0.5278422683477402],[117,115,74,-0.5273886639624834],[117,115,75,-0.527093943208456],[117,115,76,-0.526702394708991],[117,115,77,-0.5259598940610886],[117,115,78,-0.5244757831096649],[117,115,79,-0.5225281454622746],[117,116,64,-0.5382577069103718],[117,116,65,-0.5374624952673912],[117,116,66,-0.5358015894889832],[117,116,67,-0.5336802806705236],[117,116,68,-0.5318391248583794],[117,116,69,-0.5305978842079639],[117,116,70,-0.529931154102087],[117,116,71,-0.5292989611625671],[117,116,72,-0.5285233147442341],[117,116,73,-0.5278422683477402],[117,116,74,-0.5273886639624834],[117,116,75,-0.527093943208456],[117,116,76,-0.526702394708991],[117,116,77,-0.5259598940610886],[117,116,78,-0.5244757831096649],[117,116,79,-0.5225281454622746],[117,117,64,-0.5382577069103718],[117,117,65,-0.5374624952673912],[117,117,66,-0.5358015894889832],[117,117,67,-0.5336802806705236],[117,117,68,-0.5318391248583794],[117,117,69,-0.5305978842079639],[117,117,70,-0.529931154102087],[117,117,71,-0.5292989611625671],[117,117,72,-0.5285233147442341],[117,117,73,-0.5278422683477402],[117,117,74,-0.5273886639624834],[117,117,75,-0.527093943208456],[117,117,76,-0.526702394708991],[117,117,77,-0.5259598940610886],[117,117,78,-0.5244757831096649],[117,117,79,-0.5225281454622746],[117,118,64,-0.5382577069103718],[117,118,65,-0.5374624952673912],[117,118,66,-0.5358015894889832],[117,118,67,-0.5336802806705236],[117,118,68,-0.5318391248583794],[117,118,69,-0.5305978842079639],[117,118,70,-0.529931154102087],[117,118,71,-0.5292989611625671],[117,118,72,-0.5285233147442341],[117,118,73,-0.5278422683477402],[117,118,74,-0.5273886639624834],[117,118,75,-0.527093943208456],[117,118,76,-0.526702394708991],[117,118,77,-0.5259598940610886],[117,118,78,-0.5244757831096649],[117,118,79,-0.5225281454622746],[117,119,64,-0.5382577069103718],[117,119,65,-0.5374624952673912],[117,119,66,-0.5358015894889832],[117,119,67,-0.5336802806705236],[117,119,68,-0.5318391248583794],[117,119,69,-0.5305978842079639],[117,119,70,-0.529931154102087],[117,119,71,-0.5292989611625671],[117,119,72,-0.5285233147442341],[117,119,73,-0.5278422683477402],[117,119,74,-0.5273886639624834],[117,119,75,-0.527093943208456],[117,119,76,-0.526702394708991],[117,119,77,-0.5259598940610886],[117,119,78,-0.5244757831096649],[117,119,79,-0.5225281454622746],[117,120,64,-0.5382577069103718],[117,120,65,-0.5374624952673912],[117,120,66,-0.5358015894889832],[117,120,67,-0.5336802806705236],[117,120,68,-0.5318391248583794],[117,120,69,-0.5305978842079639],[117,120,70,-0.529931154102087],[117,120,71,-0.5292989611625671],[117,120,72,-0.5285233147442341],[117,120,73,-0.5278422683477402],[117,120,74,-0.5273886639624834],[117,120,75,-0.527093943208456],[117,120,76,-0.526702394708991],[117,120,77,-0.5259598940610886],[117,120,78,-0.5244757831096649],[117,120,79,-0.5225281454622746],[117,121,64,-0.5382577069103718],[117,121,65,-0.5374624952673912],[117,121,66,-0.5358015894889832],[117,121,67,-0.5336802806705236],[117,121,68,-0.5318391248583794],[117,121,69,-0.5305978842079639],[117,121,70,-0.529931154102087],[117,121,71,-0.5292989611625671],[117,121,72,-0.5285233147442341],[117,121,73,-0.5278422683477402],[117,121,74,-0.5273886639624834],[117,121,75,-0.527093943208456],[117,121,76,-0.526702394708991],[117,121,77,-0.5259598940610886],[117,121,78,-0.5244757831096649],[117,121,79,-0.5225281454622746],[117,122,64,-0.5382577069103718],[117,122,65,-0.5374624952673912],[117,122,66,-0.5358015894889832],[117,122,67,-0.5336802806705236],[117,122,68,-0.5318391248583794],[117,122,69,-0.5305978842079639],[117,122,70,-0.529931154102087],[117,122,71,-0.5292989611625671],[117,122,72,-0.5285233147442341],[117,122,73,-0.5278422683477402],[117,122,74,-0.5273886639624834],[117,122,75,-0.527093943208456],[117,122,76,-0.526702394708991],[117,122,77,-0.5259598940610886],[117,122,78,-0.5244757831096649],[117,122,79,-0.5225281454622746],[117,123,64,-0.5382577069103718],[117,123,65,-0.5374624952673912],[117,123,66,-0.5358015894889832],[117,123,67,-0.5336802806705236],[117,123,68,-0.5318391248583794],[117,123,69,-0.5305978842079639],[117,123,70,-0.529931154102087],[117,123,71,-0.5292989611625671],[117,123,72,-0.5285233147442341],[117,123,73,-0.5278422683477402],[117,123,74,-0.5273886639624834],[117,123,75,-0.527093943208456],[117,123,76,-0.526702394708991],[117,123,77,-0.5259598940610886],[117,123,78,-0.5244757831096649],[117,123,79,-0.5225281454622746],[117,124,64,-0.5382577069103718],[117,124,65,-0.5374624952673912],[117,124,66,-0.5358015894889832],[117,124,67,-0.5336802806705236],[117,124,68,-0.5318391248583794],[117,124,69,-0.5305978842079639],[117,124,70,-0.529931154102087],[117,124,71,-0.5292989611625671],[117,124,72,-0.5285233147442341],[117,124,73,-0.5278422683477402],[117,124,74,-0.5273886639624834],[117,124,75,-0.527093943208456],[117,124,76,-0.526702394708991],[117,124,77,-0.5259598940610886],[117,124,78,-0.5244757831096649],[117,124,79,-0.5225281454622746],[117,125,64,-0.5382577069103718],[117,125,65,-0.5374624952673912],[117,125,66,-0.5358015894889832],[117,125,67,-0.5336802806705236],[117,125,68,-0.5318391248583794],[117,125,69,-0.5305978842079639],[117,125,70,-0.529931154102087],[117,125,71,-0.5292989611625671],[117,125,72,-0.5285233147442341],[117,125,73,-0.5278422683477402],[117,125,74,-0.5273886639624834],[117,125,75,-0.527093943208456],[117,125,76,-0.526702394708991],[117,125,77,-0.5259598940610886],[117,125,78,-0.5244757831096649],[117,125,79,-0.5225281454622746],[117,126,64,-0.5382577069103718],[117,126,65,-0.5374624952673912],[117,126,66,-0.5358015894889832],[117,126,67,-0.5336802806705236],[117,126,68,-0.5318391248583794],[117,126,69,-0.5305978842079639],[117,126,70,-0.529931154102087],[117,126,71,-0.5292989611625671],[117,126,72,-0.5285233147442341],[117,126,73,-0.5278422683477402],[117,126,74,-0.5273886639624834],[117,126,75,-0.527093943208456],[117,126,76,-0.526702394708991],[117,126,77,-0.5259598940610886],[117,126,78,-0.5244757831096649],[117,126,79,-0.5225281454622746],[117,127,64,-0.5382577069103718],[117,127,65,-0.5374624952673912],[117,127,66,-0.5358015894889832],[117,127,67,-0.5336802806705236],[117,127,68,-0.5318391248583794],[117,127,69,-0.5305978842079639],[117,127,70,-0.529931154102087],[117,127,71,-0.5292989611625671],[117,127,72,-0.5285233147442341],[117,127,73,-0.5278422683477402],[117,127,74,-0.5273886639624834],[117,127,75,-0.527093943208456],[117,127,76,-0.526702394708991],[117,127,77,-0.5259598940610886],[117,127,78,-0.5244757831096649],[117,127,79,-0.5225281454622746],[117,128,64,-0.5382577069103718],[117,128,65,-0.5374624952673912],[117,128,66,-0.5358015894889832],[117,128,67,-0.5336802806705236],[117,128,68,-0.5318391248583794],[117,128,69,-0.5305978842079639],[117,128,70,-0.529931154102087],[117,128,71,-0.5292989611625671],[117,128,72,-0.5285233147442341],[117,128,73,-0.5278422683477402],[117,128,74,-0.5273886639624834],[117,128,75,-0.527093943208456],[117,128,76,-0.526702394708991],[117,128,77,-0.5259598940610886],[117,128,78,-0.5244757831096649],[117,128,79,-0.5225281454622746],[117,129,64,-0.5382577069103718],[117,129,65,-0.5374624952673912],[117,129,66,-0.5358015894889832],[117,129,67,-0.5336802806705236],[117,129,68,-0.5318391248583794],[117,129,69,-0.5305978842079639],[117,129,70,-0.529931154102087],[117,129,71,-0.5292989611625671],[117,129,72,-0.5285233147442341],[117,129,73,-0.5278422683477402],[117,129,74,-0.5273886639624834],[117,129,75,-0.527093943208456],[117,129,76,-0.526702394708991],[117,129,77,-0.5259598940610886],[117,129,78,-0.5244757831096649],[117,129,79,-0.5225281454622746],[117,130,64,-0.5382577069103718],[117,130,65,-0.5374624952673912],[117,130,66,-0.5358015894889832],[117,130,67,-0.5336802806705236],[117,130,68,-0.5318391248583794],[117,130,69,-0.5305978842079639],[117,130,70,-0.529931154102087],[117,130,71,-0.5292989611625671],[117,130,72,-0.5285233147442341],[117,130,73,-0.5278422683477402],[117,130,74,-0.5273886639624834],[117,130,75,-0.527093943208456],[117,130,76,-0.526702394708991],[117,130,77,-0.5259598940610886],[117,130,78,-0.5244757831096649],[117,130,79,-0.5225281454622746],[117,131,64,-0.5382577069103718],[117,131,65,-0.5374624952673912],[117,131,66,-0.5358015894889832],[117,131,67,-0.5336802806705236],[117,131,68,-0.5318391248583794],[117,131,69,-0.5305978842079639],[117,131,70,-0.529931154102087],[117,131,71,-0.5292989611625671],[117,131,72,-0.5285233147442341],[117,131,73,-0.5278422683477402],[117,131,74,-0.5273886639624834],[117,131,75,-0.527093943208456],[117,131,76,-0.526702394708991],[117,131,77,-0.5259598940610886],[117,131,78,-0.5244757831096649],[117,131,79,-0.5225281454622746],[117,132,64,-0.5382577069103718],[117,132,65,-0.5374624952673912],[117,132,66,-0.5358015894889832],[117,132,67,-0.5336802806705236],[117,132,68,-0.5318391248583794],[117,132,69,-0.5305978842079639],[117,132,70,-0.529931154102087],[117,132,71,-0.5292989611625671],[117,132,72,-0.5285233147442341],[117,132,73,-0.5278422683477402],[117,132,74,-0.5273886639624834],[117,132,75,-0.527093943208456],[117,132,76,-0.526702394708991],[117,132,77,-0.5259598940610886],[117,132,78,-0.5244757831096649],[117,132,79,-0.5225281454622746],[117,133,64,-0.5382577069103718],[117,133,65,-0.5374624952673912],[117,133,66,-0.5358015894889832],[117,133,67,-0.5336802806705236],[117,133,68,-0.5318391248583794],[117,133,69,-0.5305978842079639],[117,133,70,-0.529931154102087],[117,133,71,-0.5292989611625671],[117,133,72,-0.5285233147442341],[117,133,73,-0.5278422683477402],[117,133,74,-0.5273886639624834],[117,133,75,-0.527093943208456],[117,133,76,-0.526702394708991],[117,133,77,-0.5259598940610886],[117,133,78,-0.5244757831096649],[117,133,79,-0.5225281454622746],[117,134,64,-0.5382577069103718],[117,134,65,-0.5374624952673912],[117,134,66,-0.5358015894889832],[117,134,67,-0.5336802806705236],[117,134,68,-0.5318391248583794],[117,134,69,-0.5305978842079639],[117,134,70,-0.529931154102087],[117,134,71,-0.5292989611625671],[117,134,72,-0.5285233147442341],[117,134,73,-0.5278422683477402],[117,134,74,-0.5273886639624834],[117,134,75,-0.527093943208456],[117,134,76,-0.526702394708991],[117,134,77,-0.5259598940610886],[117,134,78,-0.5244757831096649],[117,134,79,-0.5225281454622746],[117,135,64,-0.5382577069103718],[117,135,65,-0.5374624952673912],[117,135,66,-0.5358015894889832],[117,135,67,-0.5336802806705236],[117,135,68,-0.5318391248583794],[117,135,69,-0.5305978842079639],[117,135,70,-0.529931154102087],[117,135,71,-0.5292989611625671],[117,135,72,-0.5285233147442341],[117,135,73,-0.5278422683477402],[117,135,74,-0.5273886639624834],[117,135,75,-0.527093943208456],[117,135,76,-0.526702394708991],[117,135,77,-0.5259598940610886],[117,135,78,-0.5244757831096649],[117,135,79,-0.5225281454622746],[117,136,64,-0.5382577069103718],[117,136,65,-0.5374624952673912],[117,136,66,-0.5358015894889832],[117,136,67,-0.5336802806705236],[117,136,68,-0.5318391248583794],[117,136,69,-0.5305978842079639],[117,136,70,-0.529931154102087],[117,136,71,-0.5292989611625671],[117,136,72,-0.5285233147442341],[117,136,73,-0.5278422683477402],[117,136,74,-0.5273886639624834],[117,136,75,-0.527093943208456],[117,136,76,-0.526702394708991],[117,136,77,-0.5259598940610886],[117,136,78,-0.5244757831096649],[117,136,79,-0.5225281454622746],[117,137,64,-0.5382577069103718],[117,137,65,-0.5374624952673912],[117,137,66,-0.5358015894889832],[117,137,67,-0.5336802806705236],[117,137,68,-0.5318391248583794],[117,137,69,-0.5305978842079639],[117,137,70,-0.529931154102087],[117,137,71,-0.5292989611625671],[117,137,72,-0.5285233147442341],[117,137,73,-0.5278422683477402],[117,137,74,-0.5273886639624834],[117,137,75,-0.527093943208456],[117,137,76,-0.526702394708991],[117,137,77,-0.5259598940610886],[117,137,78,-0.5244757831096649],[117,137,79,-0.5225281454622746],[117,138,64,-0.5382577069103718],[117,138,65,-0.5374624952673912],[117,138,66,-0.5358015894889832],[117,138,67,-0.5336802806705236],[117,138,68,-0.5318391248583794],[117,138,69,-0.5305978842079639],[117,138,70,-0.529931154102087],[117,138,71,-0.5292989611625671],[117,138,72,-0.5285233147442341],[117,138,73,-0.5278422683477402],[117,138,74,-0.5273886639624834],[117,138,75,-0.527093943208456],[117,138,76,-0.526702394708991],[117,138,77,-0.5259598940610886],[117,138,78,-0.5244757831096649],[117,138,79,-0.5225281454622746],[117,139,64,-0.5382577069103718],[117,139,65,-0.5374624952673912],[117,139,66,-0.5358015894889832],[117,139,67,-0.5336802806705236],[117,139,68,-0.5318391248583794],[117,139,69,-0.5305978842079639],[117,139,70,-0.529931154102087],[117,139,71,-0.5292989611625671],[117,139,72,-0.5285233147442341],[117,139,73,-0.5278422683477402],[117,139,74,-0.5273886639624834],[117,139,75,-0.527093943208456],[117,139,76,-0.526702394708991],[117,139,77,-0.5259598940610886],[117,139,78,-0.5244757831096649],[117,139,79,-0.5225281454622746],[117,140,64,-0.5382577069103718],[117,140,65,-0.5374624952673912],[117,140,66,-0.5358015894889832],[117,140,67,-0.5336802806705236],[117,140,68,-0.5318391248583794],[117,140,69,-0.5305978842079639],[117,140,70,-0.529931154102087],[117,140,71,-0.5292989611625671],[117,140,72,-0.5285233147442341],[117,140,73,-0.5278422683477402],[117,140,74,-0.5273886639624834],[117,140,75,-0.527093943208456],[117,140,76,-0.526702394708991],[117,140,77,-0.5259598940610886],[117,140,78,-0.5244757831096649],[117,140,79,-0.5225281454622746],[117,141,64,-0.5382577069103718],[117,141,65,-0.5374624952673912],[117,141,66,-0.5358015894889832],[117,141,67,-0.5336802806705236],[117,141,68,-0.5318391248583794],[117,141,69,-0.5305978842079639],[117,141,70,-0.529931154102087],[117,141,71,-0.5292989611625671],[117,141,72,-0.5285233147442341],[117,141,73,-0.5278422683477402],[117,141,74,-0.5273886639624834],[117,141,75,-0.527093943208456],[117,141,76,-0.526702394708991],[117,141,77,-0.5259598940610886],[117,141,78,-0.5244757831096649],[117,141,79,-0.5225281454622746],[117,142,64,-0.5382577069103718],[117,142,65,-0.5374624952673912],[117,142,66,-0.5358015894889832],[117,142,67,-0.5336802806705236],[117,142,68,-0.5318391248583794],[117,142,69,-0.5305978842079639],[117,142,70,-0.529931154102087],[117,142,71,-0.5292989611625671],[117,142,72,-0.5285233147442341],[117,142,73,-0.5278422683477402],[117,142,74,-0.5273886639624834],[117,142,75,-0.527093943208456],[117,142,76,-0.526702394708991],[117,142,77,-0.5259598940610886],[117,142,78,-0.5244757831096649],[117,142,79,-0.5225281454622746],[117,143,64,-0.5382577069103718],[117,143,65,-0.5374624952673912],[117,143,66,-0.5358015894889832],[117,143,67,-0.5336802806705236],[117,143,68,-0.5318391248583794],[117,143,69,-0.5305978842079639],[117,143,70,-0.529931154102087],[117,143,71,-0.5292989611625671],[117,143,72,-0.5285233147442341],[117,143,73,-0.5278422683477402],[117,143,74,-0.5273886639624834],[117,143,75,-0.527093943208456],[117,143,76,-0.526702394708991],[117,143,77,-0.5259598940610886],[117,143,78,-0.5244757831096649],[117,143,79,-0.5225281454622746],[117,144,64,-0.5382577069103718],[117,144,65,-0.5374624952673912],[117,144,66,-0.5358015894889832],[117,144,67,-0.5336802806705236],[117,144,68,-0.5318391248583794],[117,144,69,-0.5305978842079639],[117,144,70,-0.529931154102087],[117,144,71,-0.5292989611625671],[117,144,72,-0.5285233147442341],[117,144,73,-0.5278422683477402],[117,144,74,-0.5273886639624834],[117,144,75,-0.527093943208456],[117,144,76,-0.526702394708991],[117,144,77,-0.5259598940610886],[117,144,78,-0.5244757831096649],[117,144,79,-0.5225281454622746],[117,145,64,-0.5382577069103718],[117,145,65,-0.5374624952673912],[117,145,66,-0.5358015894889832],[117,145,67,-0.5336802806705236],[117,145,68,-0.5318391248583794],[117,145,69,-0.5305978842079639],[117,145,70,-0.529931154102087],[117,145,71,-0.5292989611625671],[117,145,72,-0.5285233147442341],[117,145,73,-0.5278422683477402],[117,145,74,-0.5273886639624834],[117,145,75,-0.527093943208456],[117,145,76,-0.526702394708991],[117,145,77,-0.5259598940610886],[117,145,78,-0.5244757831096649],[117,145,79,-0.5225281454622746],[117,146,64,-0.5382577069103718],[117,146,65,-0.5374624952673912],[117,146,66,-0.5358015894889832],[117,146,67,-0.5336802806705236],[117,146,68,-0.5318391248583794],[117,146,69,-0.5305978842079639],[117,146,70,-0.529931154102087],[117,146,71,-0.5292989611625671],[117,146,72,-0.5285233147442341],[117,146,73,-0.5278422683477402],[117,146,74,-0.5273886639624834],[117,146,75,-0.527093943208456],[117,146,76,-0.526702394708991],[117,146,77,-0.5259598940610886],[117,146,78,-0.5244757831096649],[117,146,79,-0.5225281454622746],[117,147,64,-0.5382577069103718],[117,147,65,-0.5374624952673912],[117,147,66,-0.5358015894889832],[117,147,67,-0.5336802806705236],[117,147,68,-0.5318391248583794],[117,147,69,-0.5305978842079639],[117,147,70,-0.529931154102087],[117,147,71,-0.5292989611625671],[117,147,72,-0.5285233147442341],[117,147,73,-0.5278422683477402],[117,147,74,-0.5273886639624834],[117,147,75,-0.527093943208456],[117,147,76,-0.526702394708991],[117,147,77,-0.5259598940610886],[117,147,78,-0.5244757831096649],[117,147,79,-0.5225281454622746],[117,148,64,-0.5382577069103718],[117,148,65,-0.5374624952673912],[117,148,66,-0.5358015894889832],[117,148,67,-0.5336802806705236],[117,148,68,-0.5318391248583794],[117,148,69,-0.5305978842079639],[117,148,70,-0.529931154102087],[117,148,71,-0.5292989611625671],[117,148,72,-0.5285233147442341],[117,148,73,-0.5278422683477402],[117,148,74,-0.5273886639624834],[117,148,75,-0.527093943208456],[117,148,76,-0.526702394708991],[117,148,77,-0.5259598940610886],[117,148,78,-0.5244757831096649],[117,148,79,-0.5225281454622746],[117,149,64,-0.5382577069103718],[117,149,65,-0.5374624952673912],[117,149,66,-0.5358015894889832],[117,149,67,-0.5336802806705236],[117,149,68,-0.5318391248583794],[117,149,69,-0.5305978842079639],[117,149,70,-0.529931154102087],[117,149,71,-0.5292989611625671],[117,149,72,-0.5285233147442341],[117,149,73,-0.5278422683477402],[117,149,74,-0.5273886639624834],[117,149,75,-0.527093943208456],[117,149,76,-0.526702394708991],[117,149,77,-0.5259598940610886],[117,149,78,-0.5244757831096649],[117,149,79,-0.5225281454622746],[117,150,64,-0.5382577069103718],[117,150,65,-0.5374624952673912],[117,150,66,-0.5358015894889832],[117,150,67,-0.5336802806705236],[117,150,68,-0.5318391248583794],[117,150,69,-0.5305978842079639],[117,150,70,-0.529931154102087],[117,150,71,-0.5292989611625671],[117,150,72,-0.5285233147442341],[117,150,73,-0.5278422683477402],[117,150,74,-0.5273886639624834],[117,150,75,-0.527093943208456],[117,150,76,-0.526702394708991],[117,150,77,-0.5259598940610886],[117,150,78,-0.5244757831096649],[117,150,79,-0.5225281454622746],[117,151,64,-0.5382577069103718],[117,151,65,-0.5374624952673912],[117,151,66,-0.5358015894889832],[117,151,67,-0.5336802806705236],[117,151,68,-0.5318391248583794],[117,151,69,-0.5305978842079639],[117,151,70,-0.529931154102087],[117,151,71,-0.5292989611625671],[117,151,72,-0.5285233147442341],[117,151,73,-0.5278422683477402],[117,151,74,-0.5273886639624834],[117,151,75,-0.527093943208456],[117,151,76,-0.526702394708991],[117,151,77,-0.5259598940610886],[117,151,78,-0.5244757831096649],[117,151,79,-0.5225281454622746],[117,152,64,-0.5382577069103718],[117,152,65,-0.5374624952673912],[117,152,66,-0.5358015894889832],[117,152,67,-0.5336802806705236],[117,152,68,-0.5318391248583794],[117,152,69,-0.5305978842079639],[117,152,70,-0.529931154102087],[117,152,71,-0.5292989611625671],[117,152,72,-0.5285233147442341],[117,152,73,-0.5278422683477402],[117,152,74,-0.5273886639624834],[117,152,75,-0.527093943208456],[117,152,76,-0.526702394708991],[117,152,77,-0.5259598940610886],[117,152,78,-0.5244757831096649],[117,152,79,-0.5225281454622746],[117,153,64,-0.5382577069103718],[117,153,65,-0.5374624952673912],[117,153,66,-0.5358015894889832],[117,153,67,-0.5336802806705236],[117,153,68,-0.5318391248583794],[117,153,69,-0.5305978842079639],[117,153,70,-0.529931154102087],[117,153,71,-0.5292989611625671],[117,153,72,-0.5285233147442341],[117,153,73,-0.5278422683477402],[117,153,74,-0.5273886639624834],[117,153,75,-0.527093943208456],[117,153,76,-0.526702394708991],[117,153,77,-0.5259598940610886],[117,153,78,-0.5244757831096649],[117,153,79,-0.5225281454622746],[117,154,64,-0.5382577069103718],[117,154,65,-0.5374624952673912],[117,154,66,-0.5358015894889832],[117,154,67,-0.5336802806705236],[117,154,68,-0.5318391248583794],[117,154,69,-0.5305978842079639],[117,154,70,-0.529931154102087],[117,154,71,-0.5292989611625671],[117,154,72,-0.5285233147442341],[117,154,73,-0.5278422683477402],[117,154,74,-0.5273886639624834],[117,154,75,-0.527093943208456],[117,154,76,-0.526702394708991],[117,154,77,-0.5259598940610886],[117,154,78,-0.5244757831096649],[117,154,79,-0.5225281454622746],[117,155,64,-0.5382577069103718],[117,155,65,-0.5374624952673912],[117,155,66,-0.5358015894889832],[117,155,67,-0.5336802806705236],[117,155,68,-0.5318391248583794],[117,155,69,-0.5305978842079639],[117,155,70,-0.529931154102087],[117,155,71,-0.5292989611625671],[117,155,72,-0.5285233147442341],[117,155,73,-0.5278422683477402],[117,155,74,-0.5273886639624834],[117,155,75,-0.527093943208456],[117,155,76,-0.526702394708991],[117,155,77,-0.5259598940610886],[117,155,78,-0.5244757831096649],[117,155,79,-0.5225281454622746],[117,156,64,-0.5382577069103718],[117,156,65,-0.5374624952673912],[117,156,66,-0.5358015894889832],[117,156,67,-0.5336802806705236],[117,156,68,-0.5318391248583794],[117,156,69,-0.5305978842079639],[117,156,70,-0.529931154102087],[117,156,71,-0.5292989611625671],[117,156,72,-0.5285233147442341],[117,156,73,-0.5278422683477402],[117,156,74,-0.5273886639624834],[117,156,75,-0.527093943208456],[117,156,76,-0.526702394708991],[117,156,77,-0.5259598940610886],[117,156,78,-0.5244757831096649],[117,156,79,-0.5225281454622746],[117,157,64,-0.5382577069103718],[117,157,65,-0.5374624952673912],[117,157,66,-0.5358015894889832],[117,157,67,-0.5336802806705236],[117,157,68,-0.5318391248583794],[117,157,69,-0.5305978842079639],[117,157,70,-0.529931154102087],[117,157,71,-0.5292989611625671],[117,157,72,-0.5285233147442341],[117,157,73,-0.5278422683477402],[117,157,74,-0.5273886639624834],[117,157,75,-0.527093943208456],[117,157,76,-0.526702394708991],[117,157,77,-0.5259598940610886],[117,157,78,-0.5244757831096649],[117,157,79,-0.5225281454622746],[117,158,64,-0.5382577069103718],[117,158,65,-0.5374624952673912],[117,158,66,-0.5358015894889832],[117,158,67,-0.5336802806705236],[117,158,68,-0.5318391248583794],[117,158,69,-0.5305978842079639],[117,158,70,-0.529931154102087],[117,158,71,-0.5292989611625671],[117,158,72,-0.5285233147442341],[117,158,73,-0.5278422683477402],[117,158,74,-0.5273886639624834],[117,158,75,-0.527093943208456],[117,158,76,-0.526702394708991],[117,158,77,-0.5259598940610886],[117,158,78,-0.5244757831096649],[117,158,79,-0.5225281454622746],[117,159,64,-0.5382577069103718],[117,159,65,-0.5374624952673912],[117,159,66,-0.5358015894889832],[117,159,67,-0.5336802806705236],[117,159,68,-0.5318391248583794],[117,159,69,-0.5305978842079639],[117,159,70,-0.529931154102087],[117,159,71,-0.5292989611625671],[117,159,72,-0.5285233147442341],[117,159,73,-0.5278422683477402],[117,159,74,-0.5273886639624834],[117,159,75,-0.527093943208456],[117,159,76,-0.526702394708991],[117,159,77,-0.5259598940610886],[117,159,78,-0.5244757831096649],[117,159,79,-0.5225281454622746],[117,160,64,-0.5382577069103718],[117,160,65,-0.5374624952673912],[117,160,66,-0.5358015894889832],[117,160,67,-0.5336802806705236],[117,160,68,-0.5318391248583794],[117,160,69,-0.5305978842079639],[117,160,70,-0.529931154102087],[117,160,71,-0.5292989611625671],[117,160,72,-0.5285233147442341],[117,160,73,-0.5278422683477402],[117,160,74,-0.5273886639624834],[117,160,75,-0.527093943208456],[117,160,76,-0.526702394708991],[117,160,77,-0.5259598940610886],[117,160,78,-0.5244757831096649],[117,160,79,-0.5225281454622746],[117,161,64,-0.5382577069103718],[117,161,65,-0.5374624952673912],[117,161,66,-0.5358015894889832],[117,161,67,-0.5336802806705236],[117,161,68,-0.5318391248583794],[117,161,69,-0.5305978842079639],[117,161,70,-0.529931154102087],[117,161,71,-0.5292989611625671],[117,161,72,-0.5285233147442341],[117,161,73,-0.5278422683477402],[117,161,74,-0.5273886639624834],[117,161,75,-0.527093943208456],[117,161,76,-0.526702394708991],[117,161,77,-0.5259598940610886],[117,161,78,-0.5244757831096649],[117,161,79,-0.5225281454622746],[117,162,64,-0.5382577069103718],[117,162,65,-0.5374624952673912],[117,162,66,-0.5358015894889832],[117,162,67,-0.5336802806705236],[117,162,68,-0.5318391248583794],[117,162,69,-0.5305978842079639],[117,162,70,-0.529931154102087],[117,162,71,-0.5292989611625671],[117,162,72,-0.5285233147442341],[117,162,73,-0.5278422683477402],[117,162,74,-0.5273886639624834],[117,162,75,-0.527093943208456],[117,162,76,-0.526702394708991],[117,162,77,-0.5259598940610886],[117,162,78,-0.5244757831096649],[117,162,79,-0.5225281454622746],[117,163,64,-0.5382577069103718],[117,163,65,-0.5374624952673912],[117,163,66,-0.5358015894889832],[117,163,67,-0.5336802806705236],[117,163,68,-0.5318391248583794],[117,163,69,-0.5305978842079639],[117,163,70,-0.529931154102087],[117,163,71,-0.5292989611625671],[117,163,72,-0.5285233147442341],[117,163,73,-0.5278422683477402],[117,163,74,-0.5273886639624834],[117,163,75,-0.527093943208456],[117,163,76,-0.526702394708991],[117,163,77,-0.5259598940610886],[117,163,78,-0.5244757831096649],[117,163,79,-0.5225281454622746],[117,164,64,-0.5382577069103718],[117,164,65,-0.5374624952673912],[117,164,66,-0.5358015894889832],[117,164,67,-0.5336802806705236],[117,164,68,-0.5318391248583794],[117,164,69,-0.5305978842079639],[117,164,70,-0.529931154102087],[117,164,71,-0.5292989611625671],[117,164,72,-0.5285233147442341],[117,164,73,-0.5278422683477402],[117,164,74,-0.5273886639624834],[117,164,75,-0.527093943208456],[117,164,76,-0.526702394708991],[117,164,77,-0.5259598940610886],[117,164,78,-0.5244757831096649],[117,164,79,-0.5225281454622746],[117,165,64,-0.5382577069103718],[117,165,65,-0.5374624952673912],[117,165,66,-0.5358015894889832],[117,165,67,-0.5336802806705236],[117,165,68,-0.5318391248583794],[117,165,69,-0.5305978842079639],[117,165,70,-0.529931154102087],[117,165,71,-0.5292989611625671],[117,165,72,-0.5285233147442341],[117,165,73,-0.5278422683477402],[117,165,74,-0.5273886639624834],[117,165,75,-0.527093943208456],[117,165,76,-0.526702394708991],[117,165,77,-0.5259598940610886],[117,165,78,-0.5244757831096649],[117,165,79,-0.5225281454622746],[117,166,64,-0.5382577069103718],[117,166,65,-0.5374624952673912],[117,166,66,-0.5358015894889832],[117,166,67,-0.5336802806705236],[117,166,68,-0.5318391248583794],[117,166,69,-0.5305978842079639],[117,166,70,-0.529931154102087],[117,166,71,-0.5292989611625671],[117,166,72,-0.5285233147442341],[117,166,73,-0.5278422683477402],[117,166,74,-0.5273886639624834],[117,166,75,-0.527093943208456],[117,166,76,-0.526702394708991],[117,166,77,-0.5259598940610886],[117,166,78,-0.5244757831096649],[117,166,79,-0.5225281454622746],[117,167,64,-0.5382577069103718],[117,167,65,-0.5374624952673912],[117,167,66,-0.5358015894889832],[117,167,67,-0.5336802806705236],[117,167,68,-0.5318391248583794],[117,167,69,-0.5305978842079639],[117,167,70,-0.529931154102087],[117,167,71,-0.5292989611625671],[117,167,72,-0.5285233147442341],[117,167,73,-0.5278422683477402],[117,167,74,-0.5273886639624834],[117,167,75,-0.527093943208456],[117,167,76,-0.526702394708991],[117,167,77,-0.5259598940610886],[117,167,78,-0.5244757831096649],[117,167,79,-0.5225281454622746],[117,168,64,-0.5382577069103718],[117,168,65,-0.5374624952673912],[117,168,66,-0.5358015894889832],[117,168,67,-0.5336802806705236],[117,168,68,-0.5318391248583794],[117,168,69,-0.5305978842079639],[117,168,70,-0.529931154102087],[117,168,71,-0.5292989611625671],[117,168,72,-0.5285233147442341],[117,168,73,-0.5278422683477402],[117,168,74,-0.5273886639624834],[117,168,75,-0.527093943208456],[117,168,76,-0.526702394708991],[117,168,77,-0.5259598940610886],[117,168,78,-0.5244757831096649],[117,168,79,-0.5225281454622746],[117,169,64,-0.5382577069103718],[117,169,65,-0.5374624952673912],[117,169,66,-0.5358015894889832],[117,169,67,-0.5336802806705236],[117,169,68,-0.5318391248583794],[117,169,69,-0.5305978842079639],[117,169,70,-0.529931154102087],[117,169,71,-0.5292989611625671],[117,169,72,-0.5285233147442341],[117,169,73,-0.5278422683477402],[117,169,74,-0.5273886639624834],[117,169,75,-0.527093943208456],[117,169,76,-0.526702394708991],[117,169,77,-0.5259598940610886],[117,169,78,-0.5244757831096649],[117,169,79,-0.5225281454622746],[117,170,64,-0.5382577069103718],[117,170,65,-0.5374624952673912],[117,170,66,-0.5358015894889832],[117,170,67,-0.5336802806705236],[117,170,68,-0.5318391248583794],[117,170,69,-0.5305978842079639],[117,170,70,-0.529931154102087],[117,170,71,-0.5292989611625671],[117,170,72,-0.5285233147442341],[117,170,73,-0.5278422683477402],[117,170,74,-0.5273886639624834],[117,170,75,-0.527093943208456],[117,170,76,-0.526702394708991],[117,170,77,-0.5259598940610886],[117,170,78,-0.5244757831096649],[117,170,79,-0.5225281454622746],[117,171,64,-0.5382577069103718],[117,171,65,-0.5374624952673912],[117,171,66,-0.5358015894889832],[117,171,67,-0.5336802806705236],[117,171,68,-0.5318391248583794],[117,171,69,-0.5305978842079639],[117,171,70,-0.529931154102087],[117,171,71,-0.5292989611625671],[117,171,72,-0.5285233147442341],[117,171,73,-0.5278422683477402],[117,171,74,-0.5273886639624834],[117,171,75,-0.527093943208456],[117,171,76,-0.526702394708991],[117,171,77,-0.5259598940610886],[117,171,78,-0.5244757831096649],[117,171,79,-0.5225281454622746],[117,172,64,-0.5382577069103718],[117,172,65,-0.5374624952673912],[117,172,66,-0.5358015894889832],[117,172,67,-0.5336802806705236],[117,172,68,-0.5318391248583794],[117,172,69,-0.5305978842079639],[117,172,70,-0.529931154102087],[117,172,71,-0.5292989611625671],[117,172,72,-0.5285233147442341],[117,172,73,-0.5278422683477402],[117,172,74,-0.5273886639624834],[117,172,75,-0.527093943208456],[117,172,76,-0.526702394708991],[117,172,77,-0.5259598940610886],[117,172,78,-0.5244757831096649],[117,172,79,-0.5225281454622746],[117,173,64,-0.5382577069103718],[117,173,65,-0.5374624952673912],[117,173,66,-0.5358015894889832],[117,173,67,-0.5336802806705236],[117,173,68,-0.5318391248583794],[117,173,69,-0.5305978842079639],[117,173,70,-0.529931154102087],[117,173,71,-0.5292989611625671],[117,173,72,-0.5285233147442341],[117,173,73,-0.5278422683477402],[117,173,74,-0.5273886639624834],[117,173,75,-0.527093943208456],[117,173,76,-0.526702394708991],[117,173,77,-0.5259598940610886],[117,173,78,-0.5244757831096649],[117,173,79,-0.5225281454622746],[117,174,64,-0.5382577069103718],[117,174,65,-0.5374624952673912],[117,174,66,-0.5358015894889832],[117,174,67,-0.5336802806705236],[117,174,68,-0.5318391248583794],[117,174,69,-0.5305978842079639],[117,174,70,-0.529931154102087],[117,174,71,-0.5292989611625671],[117,174,72,-0.5285233147442341],[117,174,73,-0.5278422683477402],[117,174,74,-0.5273886639624834],[117,174,75,-0.527093943208456],[117,174,76,-0.526702394708991],[117,174,77,-0.5259598940610886],[117,174,78,-0.5244757831096649],[117,174,79,-0.5225281454622746],[117,175,64,-0.5382577069103718],[117,175,65,-0.5374624952673912],[117,175,66,-0.5358015894889832],[117,175,67,-0.5336802806705236],[117,175,68,-0.5318391248583794],[117,175,69,-0.5305978842079639],[117,175,70,-0.529931154102087],[117,175,71,-0.5292989611625671],[117,175,72,-0.5285233147442341],[117,175,73,-0.5278422683477402],[117,175,74,-0.5273886639624834],[117,175,75,-0.527093943208456],[117,175,76,-0.526702394708991],[117,175,77,-0.5259598940610886],[117,175,78,-0.5244757831096649],[117,175,79,-0.5225281454622746],[117,176,64,-0.5382577069103718],[117,176,65,-0.5374624952673912],[117,176,66,-0.5358015894889832],[117,176,67,-0.5336802806705236],[117,176,68,-0.5318391248583794],[117,176,69,-0.5305978842079639],[117,176,70,-0.529931154102087],[117,176,71,-0.5292989611625671],[117,176,72,-0.5285233147442341],[117,176,73,-0.5278422683477402],[117,176,74,-0.5273886639624834],[117,176,75,-0.527093943208456],[117,176,76,-0.526702394708991],[117,176,77,-0.5259598940610886],[117,176,78,-0.5244757831096649],[117,176,79,-0.5225281454622746],[117,177,64,-0.5382577069103718],[117,177,65,-0.5374624952673912],[117,177,66,-0.5358015894889832],[117,177,67,-0.5336802806705236],[117,177,68,-0.5318391248583794],[117,177,69,-0.5305978842079639],[117,177,70,-0.529931154102087],[117,177,71,-0.5292989611625671],[117,177,72,-0.5285233147442341],[117,177,73,-0.5278422683477402],[117,177,74,-0.5273886639624834],[117,177,75,-0.527093943208456],[117,177,76,-0.526702394708991],[117,177,77,-0.5259598940610886],[117,177,78,-0.5244757831096649],[117,177,79,-0.5225281454622746],[117,178,64,-0.5382577069103718],[117,178,65,-0.5374624952673912],[117,178,66,-0.5358015894889832],[117,178,67,-0.5336802806705236],[117,178,68,-0.5318391248583794],[117,178,69,-0.5305978842079639],[117,178,70,-0.529931154102087],[117,178,71,-0.5292989611625671],[117,178,72,-0.5285233147442341],[117,178,73,-0.5278422683477402],[117,178,74,-0.5273886639624834],[117,178,75,-0.527093943208456],[117,178,76,-0.526702394708991],[117,178,77,-0.5259598940610886],[117,178,78,-0.5244757831096649],[117,178,79,-0.5225281454622746],[117,179,64,-0.5382577069103718],[117,179,65,-0.5374624952673912],[117,179,66,-0.5358015894889832],[117,179,67,-0.5336802806705236],[117,179,68,-0.5318391248583794],[117,179,69,-0.5305978842079639],[117,179,70,-0.529931154102087],[117,179,71,-0.5292989611625671],[117,179,72,-0.5285233147442341],[117,179,73,-0.5278422683477402],[117,179,74,-0.5273886639624834],[117,179,75,-0.527093943208456],[117,179,76,-0.526702394708991],[117,179,77,-0.5259598940610886],[117,179,78,-0.5244757831096649],[117,179,79,-0.5225281454622746],[117,180,64,-0.5382577069103718],[117,180,65,-0.5374624952673912],[117,180,66,-0.5358015894889832],[117,180,67,-0.5336802806705236],[117,180,68,-0.5318391248583794],[117,180,69,-0.5305978842079639],[117,180,70,-0.529931154102087],[117,180,71,-0.5292989611625671],[117,180,72,-0.5285233147442341],[117,180,73,-0.5278422683477402],[117,180,74,-0.5273886639624834],[117,180,75,-0.527093943208456],[117,180,76,-0.526702394708991],[117,180,77,-0.5259598940610886],[117,180,78,-0.5244757831096649],[117,180,79,-0.5225281454622746],[117,181,64,-0.5382577069103718],[117,181,65,-0.5374624952673912],[117,181,66,-0.5358015894889832],[117,181,67,-0.5336802806705236],[117,181,68,-0.5318391248583794],[117,181,69,-0.5305978842079639],[117,181,70,-0.529931154102087],[117,181,71,-0.5292989611625671],[117,181,72,-0.5285233147442341],[117,181,73,-0.5278422683477402],[117,181,74,-0.5273886639624834],[117,181,75,-0.527093943208456],[117,181,76,-0.526702394708991],[117,181,77,-0.5259598940610886],[117,181,78,-0.5244757831096649],[117,181,79,-0.5225281454622746],[117,182,64,-0.5382577069103718],[117,182,65,-0.5374624952673912],[117,182,66,-0.5358015894889832],[117,182,67,-0.5336802806705236],[117,182,68,-0.5318391248583794],[117,182,69,-0.5305978842079639],[117,182,70,-0.529931154102087],[117,182,71,-0.5292989611625671],[117,182,72,-0.5285233147442341],[117,182,73,-0.5278422683477402],[117,182,74,-0.5273886639624834],[117,182,75,-0.527093943208456],[117,182,76,-0.526702394708991],[117,182,77,-0.5259598940610886],[117,182,78,-0.5244757831096649],[117,182,79,-0.5225281454622746],[117,183,64,-0.5382577069103718],[117,183,65,-0.5374624952673912],[117,183,66,-0.5358015894889832],[117,183,67,-0.5336802806705236],[117,183,68,-0.5318391248583794],[117,183,69,-0.5305978842079639],[117,183,70,-0.529931154102087],[117,183,71,-0.5292989611625671],[117,183,72,-0.5285233147442341],[117,183,73,-0.5278422683477402],[117,183,74,-0.5273886639624834],[117,183,75,-0.527093943208456],[117,183,76,-0.526702394708991],[117,183,77,-0.5259598940610886],[117,183,78,-0.5244757831096649],[117,183,79,-0.5225281454622746],[117,184,64,-0.5382577069103718],[117,184,65,-0.5374624952673912],[117,184,66,-0.5358015894889832],[117,184,67,-0.5336802806705236],[117,184,68,-0.5318391248583794],[117,184,69,-0.5305978842079639],[117,184,70,-0.529931154102087],[117,184,71,-0.5292989611625671],[117,184,72,-0.5285233147442341],[117,184,73,-0.5278422683477402],[117,184,74,-0.5273886639624834],[117,184,75,-0.527093943208456],[117,184,76,-0.526702394708991],[117,184,77,-0.5259598940610886],[117,184,78,-0.5244757831096649],[117,184,79,-0.5225281454622746],[117,185,64,-0.5382577069103718],[117,185,65,-0.5374624952673912],[117,185,66,-0.5358015894889832],[117,185,67,-0.5336802806705236],[117,185,68,-0.5318391248583794],[117,185,69,-0.5305978842079639],[117,185,70,-0.529931154102087],[117,185,71,-0.5292989611625671],[117,185,72,-0.5285233147442341],[117,185,73,-0.5278422683477402],[117,185,74,-0.5273886639624834],[117,185,75,-0.527093943208456],[117,185,76,-0.526702394708991],[117,185,77,-0.5259598940610886],[117,185,78,-0.5244757831096649],[117,185,79,-0.5225281454622746],[117,186,64,-0.5382577069103718],[117,186,65,-0.5374624952673912],[117,186,66,-0.5358015894889832],[117,186,67,-0.5336802806705236],[117,186,68,-0.5318391248583794],[117,186,69,-0.5305978842079639],[117,186,70,-0.529931154102087],[117,186,71,-0.5292989611625671],[117,186,72,-0.5285233147442341],[117,186,73,-0.5278422683477402],[117,186,74,-0.5273886639624834],[117,186,75,-0.527093943208456],[117,186,76,-0.526702394708991],[117,186,77,-0.5259598940610886],[117,186,78,-0.5244757831096649],[117,186,79,-0.5225281454622746],[117,187,64,-0.5382577069103718],[117,187,65,-0.5374624952673912],[117,187,66,-0.5358015894889832],[117,187,67,-0.5336802806705236],[117,187,68,-0.5318391248583794],[117,187,69,-0.5305978842079639],[117,187,70,-0.529931154102087],[117,187,71,-0.5292989611625671],[117,187,72,-0.5285233147442341],[117,187,73,-0.5278422683477402],[117,187,74,-0.5273886639624834],[117,187,75,-0.527093943208456],[117,187,76,-0.526702394708991],[117,187,77,-0.5259598940610886],[117,187,78,-0.5244757831096649],[117,187,79,-0.5225281454622746],[117,188,64,-0.5382577069103718],[117,188,65,-0.5374624952673912],[117,188,66,-0.5358015894889832],[117,188,67,-0.5336802806705236],[117,188,68,-0.5318391248583794],[117,188,69,-0.5305978842079639],[117,188,70,-0.529931154102087],[117,188,71,-0.5292989611625671],[117,188,72,-0.5285233147442341],[117,188,73,-0.5278422683477402],[117,188,74,-0.5273886639624834],[117,188,75,-0.527093943208456],[117,188,76,-0.526702394708991],[117,188,77,-0.5259598940610886],[117,188,78,-0.5244757831096649],[117,188,79,-0.5225281454622746],[117,189,64,-0.5382577069103718],[117,189,65,-0.5374624952673912],[117,189,66,-0.5358015894889832],[117,189,67,-0.5336802806705236],[117,189,68,-0.5318391248583794],[117,189,69,-0.5305978842079639],[117,189,70,-0.529931154102087],[117,189,71,-0.5292989611625671],[117,189,72,-0.5285233147442341],[117,189,73,-0.5278422683477402],[117,189,74,-0.5273886639624834],[117,189,75,-0.527093943208456],[117,189,76,-0.526702394708991],[117,189,77,-0.5259598940610886],[117,189,78,-0.5244757831096649],[117,189,79,-0.5225281454622746],[117,190,64,-0.5382577069103718],[117,190,65,-0.5374624952673912],[117,190,66,-0.5358015894889832],[117,190,67,-0.5336802806705236],[117,190,68,-0.5318391248583794],[117,190,69,-0.5305978842079639],[117,190,70,-0.529931154102087],[117,190,71,-0.5292989611625671],[117,190,72,-0.5285233147442341],[117,190,73,-0.5278422683477402],[117,190,74,-0.5273886639624834],[117,190,75,-0.527093943208456],[117,190,76,-0.526702394708991],[117,190,77,-0.5259598940610886],[117,190,78,-0.5244757831096649],[117,190,79,-0.5225281454622746],[117,191,64,-0.5382577069103718],[117,191,65,-0.5374624952673912],[117,191,66,-0.5358015894889832],[117,191,67,-0.5336802806705236],[117,191,68,-0.5318391248583794],[117,191,69,-0.5305978842079639],[117,191,70,-0.529931154102087],[117,191,71,-0.5292989611625671],[117,191,72,-0.5285233147442341],[117,191,73,-0.5278422683477402],[117,191,74,-0.5273886639624834],[117,191,75,-0.527093943208456],[117,191,76,-0.526702394708991],[117,191,77,-0.5259598940610886],[117,191,78,-0.5244757831096649],[117,191,79,-0.5225281454622746],[117,192,64,-0.5382577069103718],[117,192,65,-0.5374624952673912],[117,192,66,-0.5358015894889832],[117,192,67,-0.5336802806705236],[117,192,68,-0.5318391248583794],[117,192,69,-0.5305978842079639],[117,192,70,-0.529931154102087],[117,192,71,-0.5292989611625671],[117,192,72,-0.5285233147442341],[117,192,73,-0.5278422683477402],[117,192,74,-0.5273886639624834],[117,192,75,-0.527093943208456],[117,192,76,-0.526702394708991],[117,192,77,-0.5259598940610886],[117,192,78,-0.5244757831096649],[117,192,79,-0.5225281454622746],[117,193,64,-0.5382577069103718],[117,193,65,-0.5374624952673912],[117,193,66,-0.5358015894889832],[117,193,67,-0.5336802806705236],[117,193,68,-0.5318391248583794],[117,193,69,-0.5305978842079639],[117,193,70,-0.529931154102087],[117,193,71,-0.5292989611625671],[117,193,72,-0.5285233147442341],[117,193,73,-0.5278422683477402],[117,193,74,-0.5273886639624834],[117,193,75,-0.527093943208456],[117,193,76,-0.526702394708991],[117,193,77,-0.5259598940610886],[117,193,78,-0.5244757831096649],[117,193,79,-0.5225281454622746],[117,194,64,-0.5382577069103718],[117,194,65,-0.5374624952673912],[117,194,66,-0.5358015894889832],[117,194,67,-0.5336802806705236],[117,194,68,-0.5318391248583794],[117,194,69,-0.5305978842079639],[117,194,70,-0.529931154102087],[117,194,71,-0.5292989611625671],[117,194,72,-0.5285233147442341],[117,194,73,-0.5278422683477402],[117,194,74,-0.5273886639624834],[117,194,75,-0.527093943208456],[117,194,76,-0.526702394708991],[117,194,77,-0.5259598940610886],[117,194,78,-0.5244757831096649],[117,194,79,-0.5225281454622746],[117,195,64,-0.5382577069103718],[117,195,65,-0.5374624952673912],[117,195,66,-0.5358015894889832],[117,195,67,-0.5336802806705236],[117,195,68,-0.5318391248583794],[117,195,69,-0.5305978842079639],[117,195,70,-0.529931154102087],[117,195,71,-0.5292989611625671],[117,195,72,-0.5285233147442341],[117,195,73,-0.5278422683477402],[117,195,74,-0.5273886639624834],[117,195,75,-0.527093943208456],[117,195,76,-0.526702394708991],[117,195,77,-0.5259598940610886],[117,195,78,-0.5244757831096649],[117,195,79,-0.5225281454622746],[117,196,64,-0.5382577069103718],[117,196,65,-0.5374624952673912],[117,196,66,-0.5358015894889832],[117,196,67,-0.5336802806705236],[117,196,68,-0.5318391248583794],[117,196,69,-0.5305978842079639],[117,196,70,-0.529931154102087],[117,196,71,-0.5292989611625671],[117,196,72,-0.5285233147442341],[117,196,73,-0.5278422683477402],[117,196,74,-0.5273886639624834],[117,196,75,-0.527093943208456],[117,196,76,-0.526702394708991],[117,196,77,-0.5259598940610886],[117,196,78,-0.5244757831096649],[117,196,79,-0.5225281454622746],[117,197,64,-0.5382577069103718],[117,197,65,-0.5374624952673912],[117,197,66,-0.5358015894889832],[117,197,67,-0.5336802806705236],[117,197,68,-0.5318391248583794],[117,197,69,-0.5305978842079639],[117,197,70,-0.529931154102087],[117,197,71,-0.5292989611625671],[117,197,72,-0.5285233147442341],[117,197,73,-0.5278422683477402],[117,197,74,-0.5273886639624834],[117,197,75,-0.527093943208456],[117,197,76,-0.526702394708991],[117,197,77,-0.5259598940610886],[117,197,78,-0.5244757831096649],[117,197,79,-0.5225281454622746],[117,198,64,-0.5382577069103718],[117,198,65,-0.5374624952673912],[117,198,66,-0.5358015894889832],[117,198,67,-0.5336802806705236],[117,198,68,-0.5318391248583794],[117,198,69,-0.5305978842079639],[117,198,70,-0.529931154102087],[117,198,71,-0.5292989611625671],[117,198,72,-0.5285233147442341],[117,198,73,-0.5278422683477402],[117,198,74,-0.5273886639624834],[117,198,75,-0.527093943208456],[117,198,76,-0.526702394708991],[117,198,77,-0.5259598940610886],[117,198,78,-0.5244757831096649],[117,198,79,-0.5225281454622746],[117,199,64,-0.5382577069103718],[117,199,65,-0.5374624952673912],[117,199,66,-0.5358015894889832],[117,199,67,-0.5336802806705236],[117,199,68,-0.5318391248583794],[117,199,69,-0.5305978842079639],[117,199,70,-0.529931154102087],[117,199,71,-0.5292989611625671],[117,199,72,-0.5285233147442341],[117,199,73,-0.5278422683477402],[117,199,74,-0.5273886639624834],[117,199,75,-0.527093943208456],[117,199,76,-0.526702394708991],[117,199,77,-0.5259598940610886],[117,199,78,-0.5244757831096649],[117,199,79,-0.5225281454622746],[117,200,64,-0.5382577069103718],[117,200,65,-0.5374624952673912],[117,200,66,-0.5358015894889832],[117,200,67,-0.5336802806705236],[117,200,68,-0.5318391248583794],[117,200,69,-0.5305978842079639],[117,200,70,-0.529931154102087],[117,200,71,-0.5292989611625671],[117,200,72,-0.5285233147442341],[117,200,73,-0.5278422683477402],[117,200,74,-0.5273886639624834],[117,200,75,-0.527093943208456],[117,200,76,-0.526702394708991],[117,200,77,-0.5259598940610886],[117,200,78,-0.5244757831096649],[117,200,79,-0.5225281454622746],[117,201,64,-0.5382577069103718],[117,201,65,-0.5374624952673912],[117,201,66,-0.5358015894889832],[117,201,67,-0.5336802806705236],[117,201,68,-0.5318391248583794],[117,201,69,-0.5305978842079639],[117,201,70,-0.529931154102087],[117,201,71,-0.5292989611625671],[117,201,72,-0.5285233147442341],[117,201,73,-0.5278422683477402],[117,201,74,-0.5273886639624834],[117,201,75,-0.527093943208456],[117,201,76,-0.526702394708991],[117,201,77,-0.5259598940610886],[117,201,78,-0.5244757831096649],[117,201,79,-0.5225281454622746],[117,202,64,-0.5382577069103718],[117,202,65,-0.5374624952673912],[117,202,66,-0.5358015894889832],[117,202,67,-0.5336802806705236],[117,202,68,-0.5318391248583794],[117,202,69,-0.5305978842079639],[117,202,70,-0.529931154102087],[117,202,71,-0.5292989611625671],[117,202,72,-0.5285233147442341],[117,202,73,-0.5278422683477402],[117,202,74,-0.5273886639624834],[117,202,75,-0.527093943208456],[117,202,76,-0.526702394708991],[117,202,77,-0.5259598940610886],[117,202,78,-0.5244757831096649],[117,202,79,-0.5225281454622746],[117,203,64,-0.5382577069103718],[117,203,65,-0.5374624952673912],[117,203,66,-0.5358015894889832],[117,203,67,-0.5336802806705236],[117,203,68,-0.5318391248583794],[117,203,69,-0.5305978842079639],[117,203,70,-0.529931154102087],[117,203,71,-0.5292989611625671],[117,203,72,-0.5285233147442341],[117,203,73,-0.5278422683477402],[117,203,74,-0.5273886639624834],[117,203,75,-0.527093943208456],[117,203,76,-0.526702394708991],[117,203,77,-0.5259598940610886],[117,203,78,-0.5244757831096649],[117,203,79,-0.5225281454622746],[117,204,64,-0.5382577069103718],[117,204,65,-0.5374624952673912],[117,204,66,-0.5358015894889832],[117,204,67,-0.5336802806705236],[117,204,68,-0.5318391248583794],[117,204,69,-0.5305978842079639],[117,204,70,-0.529931154102087],[117,204,71,-0.5292989611625671],[117,204,72,-0.5285233147442341],[117,204,73,-0.5278422683477402],[117,204,74,-0.5273886639624834],[117,204,75,-0.527093943208456],[117,204,76,-0.526702394708991],[117,204,77,-0.5259598940610886],[117,204,78,-0.5244757831096649],[117,204,79,-0.5225281454622746],[117,205,64,-0.5382577069103718],[117,205,65,-0.5374624952673912],[117,205,66,-0.5358015894889832],[117,205,67,-0.5336802806705236],[117,205,68,-0.5318391248583794],[117,205,69,-0.5305978842079639],[117,205,70,-0.529931154102087],[117,205,71,-0.5292989611625671],[117,205,72,-0.5285233147442341],[117,205,73,-0.5278422683477402],[117,205,74,-0.5273886639624834],[117,205,75,-0.527093943208456],[117,205,76,-0.526702394708991],[117,205,77,-0.5259598940610886],[117,205,78,-0.5244757831096649],[117,205,79,-0.5225281454622746],[117,206,64,-0.5382577069103718],[117,206,65,-0.5374624952673912],[117,206,66,-0.5358015894889832],[117,206,67,-0.5336802806705236],[117,206,68,-0.5318391248583794],[117,206,69,-0.5305978842079639],[117,206,70,-0.529931154102087],[117,206,71,-0.5292989611625671],[117,206,72,-0.5285233147442341],[117,206,73,-0.5278422683477402],[117,206,74,-0.5273886639624834],[117,206,75,-0.527093943208456],[117,206,76,-0.526702394708991],[117,206,77,-0.5259598940610886],[117,206,78,-0.5244757831096649],[117,206,79,-0.5225281454622746],[117,207,64,-0.5382577069103718],[117,207,65,-0.5374624952673912],[117,207,66,-0.5358015894889832],[117,207,67,-0.5336802806705236],[117,207,68,-0.5318391248583794],[117,207,69,-0.5305978842079639],[117,207,70,-0.529931154102087],[117,207,71,-0.5292989611625671],[117,207,72,-0.5285233147442341],[117,207,73,-0.5278422683477402],[117,207,74,-0.5273886639624834],[117,207,75,-0.527093943208456],[117,207,76,-0.526702394708991],[117,207,77,-0.5259598940610886],[117,207,78,-0.5244757831096649],[117,207,79,-0.5225281454622746],[117,208,64,-0.5382577069103718],[117,208,65,-0.5374624952673912],[117,208,66,-0.5358015894889832],[117,208,67,-0.5336802806705236],[117,208,68,-0.5318391248583794],[117,208,69,-0.5305978842079639],[117,208,70,-0.529931154102087],[117,208,71,-0.5292989611625671],[117,208,72,-0.5285233147442341],[117,208,73,-0.5278422683477402],[117,208,74,-0.5273886639624834],[117,208,75,-0.527093943208456],[117,208,76,-0.526702394708991],[117,208,77,-0.5259598940610886],[117,208,78,-0.5244757831096649],[117,208,79,-0.5225281454622746],[117,209,64,-0.5382577069103718],[117,209,65,-0.5374624952673912],[117,209,66,-0.5358015894889832],[117,209,67,-0.5336802806705236],[117,209,68,-0.5318391248583794],[117,209,69,-0.5305978842079639],[117,209,70,-0.529931154102087],[117,209,71,-0.5292989611625671],[117,209,72,-0.5285233147442341],[117,209,73,-0.5278422683477402],[117,209,74,-0.5273886639624834],[117,209,75,-0.527093943208456],[117,209,76,-0.526702394708991],[117,209,77,-0.5259598940610886],[117,209,78,-0.5244757831096649],[117,209,79,-0.5225281454622746],[117,210,64,-0.5382577069103718],[117,210,65,-0.5374624952673912],[117,210,66,-0.5358015894889832],[117,210,67,-0.5336802806705236],[117,210,68,-0.5318391248583794],[117,210,69,-0.5305978842079639],[117,210,70,-0.529931154102087],[117,210,71,-0.5292989611625671],[117,210,72,-0.5285233147442341],[117,210,73,-0.5278422683477402],[117,210,74,-0.5273886639624834],[117,210,75,-0.527093943208456],[117,210,76,-0.526702394708991],[117,210,77,-0.5259598940610886],[117,210,78,-0.5244757831096649],[117,210,79,-0.5225281454622746],[117,211,64,-0.5382577069103718],[117,211,65,-0.5374624952673912],[117,211,66,-0.5358015894889832],[117,211,67,-0.5336802806705236],[117,211,68,-0.5318391248583794],[117,211,69,-0.5305978842079639],[117,211,70,-0.529931154102087],[117,211,71,-0.5292989611625671],[117,211,72,-0.5285233147442341],[117,211,73,-0.5278422683477402],[117,211,74,-0.5273886639624834],[117,211,75,-0.527093943208456],[117,211,76,-0.526702394708991],[117,211,77,-0.5259598940610886],[117,211,78,-0.5244757831096649],[117,211,79,-0.5225281454622746],[117,212,64,-0.5382577069103718],[117,212,65,-0.5374624952673912],[117,212,66,-0.5358015894889832],[117,212,67,-0.5336802806705236],[117,212,68,-0.5318391248583794],[117,212,69,-0.5305978842079639],[117,212,70,-0.529931154102087],[117,212,71,-0.5292989611625671],[117,212,72,-0.5285233147442341],[117,212,73,-0.5278422683477402],[117,212,74,-0.5273886639624834],[117,212,75,-0.527093943208456],[117,212,76,-0.526702394708991],[117,212,77,-0.5259598940610886],[117,212,78,-0.5244757831096649],[117,212,79,-0.5225281454622746],[117,213,64,-0.5382577069103718],[117,213,65,-0.5374624952673912],[117,213,66,-0.5358015894889832],[117,213,67,-0.5336802806705236],[117,213,68,-0.5318391248583794],[117,213,69,-0.5305978842079639],[117,213,70,-0.529931154102087],[117,213,71,-0.5292989611625671],[117,213,72,-0.5285233147442341],[117,213,73,-0.5278422683477402],[117,213,74,-0.5273886639624834],[117,213,75,-0.527093943208456],[117,213,76,-0.526702394708991],[117,213,77,-0.5259598940610886],[117,213,78,-0.5244757831096649],[117,213,79,-0.5225281454622746],[117,214,64,-0.5382577069103718],[117,214,65,-0.5374624952673912],[117,214,66,-0.5358015894889832],[117,214,67,-0.5336802806705236],[117,214,68,-0.5318391248583794],[117,214,69,-0.5305978842079639],[117,214,70,-0.529931154102087],[117,214,71,-0.5292989611625671],[117,214,72,-0.5285233147442341],[117,214,73,-0.5278422683477402],[117,214,74,-0.5273886639624834],[117,214,75,-0.527093943208456],[117,214,76,-0.526702394708991],[117,214,77,-0.5259598940610886],[117,214,78,-0.5244757831096649],[117,214,79,-0.5225281454622746],[117,215,64,-0.5382577069103718],[117,215,65,-0.5374624952673912],[117,215,66,-0.5358015894889832],[117,215,67,-0.5336802806705236],[117,215,68,-0.5318391248583794],[117,215,69,-0.5305978842079639],[117,215,70,-0.529931154102087],[117,215,71,-0.5292989611625671],[117,215,72,-0.5285233147442341],[117,215,73,-0.5278422683477402],[117,215,74,-0.5273886639624834],[117,215,75,-0.527093943208456],[117,215,76,-0.526702394708991],[117,215,77,-0.5259598940610886],[117,215,78,-0.5244757831096649],[117,215,79,-0.5225281454622746],[117,216,64,-0.5382577069103718],[117,216,65,-0.5374624952673912],[117,216,66,-0.5358015894889832],[117,216,67,-0.5336802806705236],[117,216,68,-0.5318391248583794],[117,216,69,-0.5305978842079639],[117,216,70,-0.529931154102087],[117,216,71,-0.5292989611625671],[117,216,72,-0.5285233147442341],[117,216,73,-0.5278422683477402],[117,216,74,-0.5273886639624834],[117,216,75,-0.527093943208456],[117,216,76,-0.526702394708991],[117,216,77,-0.5259598940610886],[117,216,78,-0.5244757831096649],[117,216,79,-0.5225281454622746],[117,217,64,-0.5382577069103718],[117,217,65,-0.5374624952673912],[117,217,66,-0.5358015894889832],[117,217,67,-0.5336802806705236],[117,217,68,-0.5318391248583794],[117,217,69,-0.5305978842079639],[117,217,70,-0.529931154102087],[117,217,71,-0.5292989611625671],[117,217,72,-0.5285233147442341],[117,217,73,-0.5278422683477402],[117,217,74,-0.5273886639624834],[117,217,75,-0.527093943208456],[117,217,76,-0.526702394708991],[117,217,77,-0.5259598940610886],[117,217,78,-0.5244757831096649],[117,217,79,-0.5225281454622746],[117,218,64,-0.5382577069103718],[117,218,65,-0.5374624952673912],[117,218,66,-0.5358015894889832],[117,218,67,-0.5336802806705236],[117,218,68,-0.5318391248583794],[117,218,69,-0.5305978842079639],[117,218,70,-0.529931154102087],[117,218,71,-0.5292989611625671],[117,218,72,-0.5285233147442341],[117,218,73,-0.5278422683477402],[117,218,74,-0.5273886639624834],[117,218,75,-0.527093943208456],[117,218,76,-0.526702394708991],[117,218,77,-0.5259598940610886],[117,218,78,-0.5244757831096649],[117,218,79,-0.5225281454622746],[117,219,64,-0.5382577069103718],[117,219,65,-0.5374624952673912],[117,219,66,-0.5358015894889832],[117,219,67,-0.5336802806705236],[117,219,68,-0.5318391248583794],[117,219,69,-0.5305978842079639],[117,219,70,-0.529931154102087],[117,219,71,-0.5292989611625671],[117,219,72,-0.5285233147442341],[117,219,73,-0.5278422683477402],[117,219,74,-0.5273886639624834],[117,219,75,-0.527093943208456],[117,219,76,-0.526702394708991],[117,219,77,-0.5259598940610886],[117,219,78,-0.5244757831096649],[117,219,79,-0.5225281454622746],[117,220,64,-0.5382577069103718],[117,220,65,-0.5374624952673912],[117,220,66,-0.5358015894889832],[117,220,67,-0.5336802806705236],[117,220,68,-0.5318391248583794],[117,220,69,-0.5305978842079639],[117,220,70,-0.529931154102087],[117,220,71,-0.5292989611625671],[117,220,72,-0.5285233147442341],[117,220,73,-0.5278422683477402],[117,220,74,-0.5273886639624834],[117,220,75,-0.527093943208456],[117,220,76,-0.526702394708991],[117,220,77,-0.5259598940610886],[117,220,78,-0.5244757831096649],[117,220,79,-0.5225281454622746],[117,221,64,-0.5382577069103718],[117,221,65,-0.5374624952673912],[117,221,66,-0.5358015894889832],[117,221,67,-0.5336802806705236],[117,221,68,-0.5318391248583794],[117,221,69,-0.5305978842079639],[117,221,70,-0.529931154102087],[117,221,71,-0.5292989611625671],[117,221,72,-0.5285233147442341],[117,221,73,-0.5278422683477402],[117,221,74,-0.5273886639624834],[117,221,75,-0.527093943208456],[117,221,76,-0.526702394708991],[117,221,77,-0.5259598940610886],[117,221,78,-0.5244757831096649],[117,221,79,-0.5225281454622746],[117,222,64,-0.5382577069103718],[117,222,65,-0.5374624952673912],[117,222,66,-0.5358015894889832],[117,222,67,-0.5336802806705236],[117,222,68,-0.5318391248583794],[117,222,69,-0.5305978842079639],[117,222,70,-0.529931154102087],[117,222,71,-0.5292989611625671],[117,222,72,-0.5285233147442341],[117,222,73,-0.5278422683477402],[117,222,74,-0.5273886639624834],[117,222,75,-0.527093943208456],[117,222,76,-0.526702394708991],[117,222,77,-0.5259598940610886],[117,222,78,-0.5244757831096649],[117,222,79,-0.5225281454622746],[117,223,64,-0.5382577069103718],[117,223,65,-0.5374624952673912],[117,223,66,-0.5358015894889832],[117,223,67,-0.5336802806705236],[117,223,68,-0.5318391248583794],[117,223,69,-0.5305978842079639],[117,223,70,-0.529931154102087],[117,223,71,-0.5292989611625671],[117,223,72,-0.5285233147442341],[117,223,73,-0.5278422683477402],[117,223,74,-0.5273886639624834],[117,223,75,-0.527093943208456],[117,223,76,-0.526702394708991],[117,223,77,-0.5259598940610886],[117,223,78,-0.5244757831096649],[117,223,79,-0.5225281454622746],[117,224,64,-0.5382577069103718],[117,224,65,-0.5374624952673912],[117,224,66,-0.5358015894889832],[117,224,67,-0.5336802806705236],[117,224,68,-0.5318391248583794],[117,224,69,-0.5305978842079639],[117,224,70,-0.529931154102087],[117,224,71,-0.5292989611625671],[117,224,72,-0.5285233147442341],[117,224,73,-0.5278422683477402],[117,224,74,-0.5273886639624834],[117,224,75,-0.527093943208456],[117,224,76,-0.526702394708991],[117,224,77,-0.5259598940610886],[117,224,78,-0.5244757831096649],[117,224,79,-0.5225281454622746],[117,225,64,-0.5382577069103718],[117,225,65,-0.5374624952673912],[117,225,66,-0.5358015894889832],[117,225,67,-0.5336802806705236],[117,225,68,-0.5318391248583794],[117,225,69,-0.5305978842079639],[117,225,70,-0.529931154102087],[117,225,71,-0.5292989611625671],[117,225,72,-0.5285233147442341],[117,225,73,-0.5278422683477402],[117,225,74,-0.5273886639624834],[117,225,75,-0.527093943208456],[117,225,76,-0.526702394708991],[117,225,77,-0.5259598940610886],[117,225,78,-0.5244757831096649],[117,225,79,-0.5225281454622746],[117,226,64,-0.5382577069103718],[117,226,65,-0.5374624952673912],[117,226,66,-0.5358015894889832],[117,226,67,-0.5336802806705236],[117,226,68,-0.5318391248583794],[117,226,69,-0.5305978842079639],[117,226,70,-0.529931154102087],[117,226,71,-0.5292989611625671],[117,226,72,-0.5285233147442341],[117,226,73,-0.5278422683477402],[117,226,74,-0.5273886639624834],[117,226,75,-0.527093943208456],[117,226,76,-0.526702394708991],[117,226,77,-0.5259598940610886],[117,226,78,-0.5244757831096649],[117,226,79,-0.5225281454622746],[117,227,64,-0.5382577069103718],[117,227,65,-0.5374624952673912],[117,227,66,-0.5358015894889832],[117,227,67,-0.5336802806705236],[117,227,68,-0.5318391248583794],[117,227,69,-0.5305978842079639],[117,227,70,-0.529931154102087],[117,227,71,-0.5292989611625671],[117,227,72,-0.5285233147442341],[117,227,73,-0.5278422683477402],[117,227,74,-0.5273886639624834],[117,227,75,-0.527093943208456],[117,227,76,-0.526702394708991],[117,227,77,-0.5259598940610886],[117,227,78,-0.5244757831096649],[117,227,79,-0.5225281454622746],[117,228,64,-0.5382577069103718],[117,228,65,-0.5374624952673912],[117,228,66,-0.5358015894889832],[117,228,67,-0.5336802806705236],[117,228,68,-0.5318391248583794],[117,228,69,-0.5305978842079639],[117,228,70,-0.529931154102087],[117,228,71,-0.5292989611625671],[117,228,72,-0.5285233147442341],[117,228,73,-0.5278422683477402],[117,228,74,-0.5273886639624834],[117,228,75,-0.527093943208456],[117,228,76,-0.526702394708991],[117,228,77,-0.5259598940610886],[117,228,78,-0.5244757831096649],[117,228,79,-0.5225281454622746],[117,229,64,-0.5382577069103718],[117,229,65,-0.5374624952673912],[117,229,66,-0.5358015894889832],[117,229,67,-0.5336802806705236],[117,229,68,-0.5318391248583794],[117,229,69,-0.5305978842079639],[117,229,70,-0.529931154102087],[117,229,71,-0.5292989611625671],[117,229,72,-0.5285233147442341],[117,229,73,-0.5278422683477402],[117,229,74,-0.5273886639624834],[117,229,75,-0.527093943208456],[117,229,76,-0.526702394708991],[117,229,77,-0.5259598940610886],[117,229,78,-0.5244757831096649],[117,229,79,-0.5225281454622746],[117,230,64,-0.5382577069103718],[117,230,65,-0.5374624952673912],[117,230,66,-0.5358015894889832],[117,230,67,-0.5336802806705236],[117,230,68,-0.5318391248583794],[117,230,69,-0.5305978842079639],[117,230,70,-0.529931154102087],[117,230,71,-0.5292989611625671],[117,230,72,-0.5285233147442341],[117,230,73,-0.5278422683477402],[117,230,74,-0.5273886639624834],[117,230,75,-0.527093943208456],[117,230,76,-0.526702394708991],[117,230,77,-0.5259598940610886],[117,230,78,-0.5244757831096649],[117,230,79,-0.5225281454622746],[117,231,64,-0.5382577069103718],[117,231,65,-0.5374624952673912],[117,231,66,-0.5358015894889832],[117,231,67,-0.5336802806705236],[117,231,68,-0.5318391248583794],[117,231,69,-0.5305978842079639],[117,231,70,-0.529931154102087],[117,231,71,-0.5292989611625671],[117,231,72,-0.5285233147442341],[117,231,73,-0.5278422683477402],[117,231,74,-0.5273886639624834],[117,231,75,-0.527093943208456],[117,231,76,-0.526702394708991],[117,231,77,-0.5259598940610886],[117,231,78,-0.5244757831096649],[117,231,79,-0.5225281454622746],[117,232,64,-0.5382577069103718],[117,232,65,-0.5374624952673912],[117,232,66,-0.5358015894889832],[117,232,67,-0.5336802806705236],[117,232,68,-0.5318391248583794],[117,232,69,-0.5305978842079639],[117,232,70,-0.529931154102087],[117,232,71,-0.5292989611625671],[117,232,72,-0.5285233147442341],[117,232,73,-0.5278422683477402],[117,232,74,-0.5273886639624834],[117,232,75,-0.527093943208456],[117,232,76,-0.526702394708991],[117,232,77,-0.5259598940610886],[117,232,78,-0.5244757831096649],[117,232,79,-0.5225281454622746],[117,233,64,-0.5382577069103718],[117,233,65,-0.5374624952673912],[117,233,66,-0.5358015894889832],[117,233,67,-0.5336802806705236],[117,233,68,-0.5318391248583794],[117,233,69,-0.5305978842079639],[117,233,70,-0.529931154102087],[117,233,71,-0.5292989611625671],[117,233,72,-0.5285233147442341],[117,233,73,-0.5278422683477402],[117,233,74,-0.5273886639624834],[117,233,75,-0.527093943208456],[117,233,76,-0.526702394708991],[117,233,77,-0.5259598940610886],[117,233,78,-0.5244757831096649],[117,233,79,-0.5225281454622746],[117,234,64,-0.5382577069103718],[117,234,65,-0.5374624952673912],[117,234,66,-0.5358015894889832],[117,234,67,-0.5336802806705236],[117,234,68,-0.5318391248583794],[117,234,69,-0.5305978842079639],[117,234,70,-0.529931154102087],[117,234,71,-0.5292989611625671],[117,234,72,-0.5285233147442341],[117,234,73,-0.5278422683477402],[117,234,74,-0.5273886639624834],[117,234,75,-0.527093943208456],[117,234,76,-0.526702394708991],[117,234,77,-0.5259598940610886],[117,234,78,-0.5244757831096649],[117,234,79,-0.5225281454622746],[117,235,64,-0.5382577069103718],[117,235,65,-0.5374624952673912],[117,235,66,-0.5358015894889832],[117,235,67,-0.5336802806705236],[117,235,68,-0.5318391248583794],[117,235,69,-0.5305978842079639],[117,235,70,-0.529931154102087],[117,235,71,-0.5292989611625671],[117,235,72,-0.5285233147442341],[117,235,73,-0.5278422683477402],[117,235,74,-0.5273886639624834],[117,235,75,-0.527093943208456],[117,235,76,-0.526702394708991],[117,235,77,-0.5259598940610886],[117,235,78,-0.5244757831096649],[117,235,79,-0.5225281454622746],[117,236,64,-0.5382577069103718],[117,236,65,-0.5374624952673912],[117,236,66,-0.5358015894889832],[117,236,67,-0.5336802806705236],[117,236,68,-0.5318391248583794],[117,236,69,-0.5305978842079639],[117,236,70,-0.529931154102087],[117,236,71,-0.5292989611625671],[117,236,72,-0.5285233147442341],[117,236,73,-0.5278422683477402],[117,236,74,-0.5273886639624834],[117,236,75,-0.527093943208456],[117,236,76,-0.526702394708991],[117,236,77,-0.5259598940610886],[117,236,78,-0.5244757831096649],[117,236,79,-0.5225281454622746],[117,237,64,-0.5382577069103718],[117,237,65,-0.5374624952673912],[117,237,66,-0.5358015894889832],[117,237,67,-0.5336802806705236],[117,237,68,-0.5318391248583794],[117,237,69,-0.5305978842079639],[117,237,70,-0.529931154102087],[117,237,71,-0.5292989611625671],[117,237,72,-0.5285233147442341],[117,237,73,-0.5278422683477402],[117,237,74,-0.5273886639624834],[117,237,75,-0.527093943208456],[117,237,76,-0.526702394708991],[117,237,77,-0.5259598940610886],[117,237,78,-0.5244757831096649],[117,237,79,-0.5225281454622746],[117,238,64,-0.5382577069103718],[117,238,65,-0.5374624952673912],[117,238,66,-0.5358015894889832],[117,238,67,-0.5336802806705236],[117,238,68,-0.5318391248583794],[117,238,69,-0.5305978842079639],[117,238,70,-0.529931154102087],[117,238,71,-0.5292989611625671],[117,238,72,-0.5285233147442341],[117,238,73,-0.5278422683477402],[117,238,74,-0.5273886639624834],[117,238,75,-0.527093943208456],[117,238,76,-0.526702394708991],[117,238,77,-0.5259598940610886],[117,238,78,-0.5244757831096649],[117,238,79,-0.5225281454622746],[117,239,64,-0.5382577069103718],[117,239,65,-0.5374624952673912],[117,239,66,-0.5358015894889832],[117,239,67,-0.5336802806705236],[117,239,68,-0.5318391248583794],[117,239,69,-0.5305978842079639],[117,239,70,-0.529931154102087],[117,239,71,-0.5292989611625671],[117,239,72,-0.5285233147442341],[117,239,73,-0.5278422683477402],[117,239,74,-0.5273886639624834],[117,239,75,-0.527093943208456],[117,239,76,-0.526702394708991],[117,239,77,-0.5259598940610886],[117,239,78,-0.5244757831096649],[117,239,79,-0.5225281454622746],[117,240,64,-0.5382577069103718],[117,240,65,-0.5374624952673912],[117,240,66,-0.5358015894889832],[117,240,67,-0.5336802806705236],[117,240,68,-0.5318391248583794],[117,240,69,-0.5305978842079639],[117,240,70,-0.529931154102087],[117,240,71,-0.5292989611625671],[117,240,72,-0.5285233147442341],[117,240,73,-0.5278422683477402],[117,240,74,-0.5273886639624834],[117,240,75,-0.527093943208456],[117,240,76,-0.526702394708991],[117,240,77,-0.5259598940610886],[117,240,78,-0.5244757831096649],[117,240,79,-0.5225281454622746],[117,241,64,-0.5382577069103718],[117,241,65,-0.5374624952673912],[117,241,66,-0.5358015894889832],[117,241,67,-0.5336802806705236],[117,241,68,-0.5318391248583794],[117,241,69,-0.5305978842079639],[117,241,70,-0.529931154102087],[117,241,71,-0.5292989611625671],[117,241,72,-0.5285233147442341],[117,241,73,-0.5278422683477402],[117,241,74,-0.5273886639624834],[117,241,75,-0.527093943208456],[117,241,76,-0.526702394708991],[117,241,77,-0.5259598940610886],[117,241,78,-0.5244757831096649],[117,241,79,-0.5225281454622746],[117,242,64,-0.5382577069103718],[117,242,65,-0.5374624952673912],[117,242,66,-0.5358015894889832],[117,242,67,-0.5336802806705236],[117,242,68,-0.5318391248583794],[117,242,69,-0.5305978842079639],[117,242,70,-0.529931154102087],[117,242,71,-0.5292989611625671],[117,242,72,-0.5285233147442341],[117,242,73,-0.5278422683477402],[117,242,74,-0.5273886639624834],[117,242,75,-0.527093943208456],[117,242,76,-0.526702394708991],[117,242,77,-0.5259598940610886],[117,242,78,-0.5244757831096649],[117,242,79,-0.5225281454622746],[117,243,64,-0.5382577069103718],[117,243,65,-0.5374624952673912],[117,243,66,-0.5358015894889832],[117,243,67,-0.5336802806705236],[117,243,68,-0.5318391248583794],[117,243,69,-0.5305978842079639],[117,243,70,-0.529931154102087],[117,243,71,-0.5292989611625671],[117,243,72,-0.5285233147442341],[117,243,73,-0.5278422683477402],[117,243,74,-0.5273886639624834],[117,243,75,-0.527093943208456],[117,243,76,-0.526702394708991],[117,243,77,-0.5259598940610886],[117,243,78,-0.5244757831096649],[117,243,79,-0.5225281454622746],[117,244,64,-0.5382577069103718],[117,244,65,-0.5374624952673912],[117,244,66,-0.5358015894889832],[117,244,67,-0.5336802806705236],[117,244,68,-0.5318391248583794],[117,244,69,-0.5305978842079639],[117,244,70,-0.529931154102087],[117,244,71,-0.5292989611625671],[117,244,72,-0.5285233147442341],[117,244,73,-0.5278422683477402],[117,244,74,-0.5273886639624834],[117,244,75,-0.527093943208456],[117,244,76,-0.526702394708991],[117,244,77,-0.5259598940610886],[117,244,78,-0.5244757831096649],[117,244,79,-0.5225281454622746],[117,245,64,-0.5382577069103718],[117,245,65,-0.5374624952673912],[117,245,66,-0.5358015894889832],[117,245,67,-0.5336802806705236],[117,245,68,-0.5318391248583794],[117,245,69,-0.5305978842079639],[117,245,70,-0.529931154102087],[117,245,71,-0.5292989611625671],[117,245,72,-0.5285233147442341],[117,245,73,-0.5278422683477402],[117,245,74,-0.5273886639624834],[117,245,75,-0.527093943208456],[117,245,76,-0.526702394708991],[117,245,77,-0.5259598940610886],[117,245,78,-0.5244757831096649],[117,245,79,-0.5225281454622746],[117,246,64,-0.5382577069103718],[117,246,65,-0.5374624952673912],[117,246,66,-0.5358015894889832],[117,246,67,-0.5336802806705236],[117,246,68,-0.5318391248583794],[117,246,69,-0.5305978842079639],[117,246,70,-0.529931154102087],[117,246,71,-0.5292989611625671],[117,246,72,-0.5285233147442341],[117,246,73,-0.5278422683477402],[117,246,74,-0.5273886639624834],[117,246,75,-0.527093943208456],[117,246,76,-0.526702394708991],[117,246,77,-0.5259598940610886],[117,246,78,-0.5244757831096649],[117,246,79,-0.5225281454622746],[117,247,64,-0.5382577069103718],[117,247,65,-0.5374624952673912],[117,247,66,-0.5358015894889832],[117,247,67,-0.5336802806705236],[117,247,68,-0.5318391248583794],[117,247,69,-0.5305978842079639],[117,247,70,-0.529931154102087],[117,247,71,-0.5292989611625671],[117,247,72,-0.5285233147442341],[117,247,73,-0.5278422683477402],[117,247,74,-0.5273886639624834],[117,247,75,-0.527093943208456],[117,247,76,-0.526702394708991],[117,247,77,-0.5259598940610886],[117,247,78,-0.5244757831096649],[117,247,79,-0.5225281454622746],[117,248,64,-0.5382577069103718],[117,248,65,-0.5374624952673912],[117,248,66,-0.5358015894889832],[117,248,67,-0.5336802806705236],[117,248,68,-0.5318391248583794],[117,248,69,-0.5305978842079639],[117,248,70,-0.529931154102087],[117,248,71,-0.5292989611625671],[117,248,72,-0.5285233147442341],[117,248,73,-0.5278422683477402],[117,248,74,-0.5273886639624834],[117,248,75,-0.527093943208456],[117,248,76,-0.526702394708991],[117,248,77,-0.5259598940610886],[117,248,78,-0.5244757831096649],[117,248,79,-0.5225281454622746],[117,249,64,-0.5382577069103718],[117,249,65,-0.5374624952673912],[117,249,66,-0.5358015894889832],[117,249,67,-0.5336802806705236],[117,249,68,-0.5318391248583794],[117,249,69,-0.5305978842079639],[117,249,70,-0.529931154102087],[117,249,71,-0.5292989611625671],[117,249,72,-0.5285233147442341],[117,249,73,-0.5278422683477402],[117,249,74,-0.5273886639624834],[117,249,75,-0.527093943208456],[117,249,76,-0.526702394708991],[117,249,77,-0.5259598940610886],[117,249,78,-0.5244757831096649],[117,249,79,-0.5225281454622746],[117,250,64,-0.5382577069103718],[117,250,65,-0.5374624952673912],[117,250,66,-0.5358015894889832],[117,250,67,-0.5336802806705236],[117,250,68,-0.5318391248583794],[117,250,69,-0.5305978842079639],[117,250,70,-0.529931154102087],[117,250,71,-0.5292989611625671],[117,250,72,-0.5285233147442341],[117,250,73,-0.5278422683477402],[117,250,74,-0.5273886639624834],[117,250,75,-0.527093943208456],[117,250,76,-0.526702394708991],[117,250,77,-0.5259598940610886],[117,250,78,-0.5244757831096649],[117,250,79,-0.5225281454622746],[117,251,64,-0.5382577069103718],[117,251,65,-0.5374624952673912],[117,251,66,-0.5358015894889832],[117,251,67,-0.5336802806705236],[117,251,68,-0.5318391248583794],[117,251,69,-0.5305978842079639],[117,251,70,-0.529931154102087],[117,251,71,-0.5292989611625671],[117,251,72,-0.5285233147442341],[117,251,73,-0.5278422683477402],[117,251,74,-0.5273886639624834],[117,251,75,-0.527093943208456],[117,251,76,-0.526702394708991],[117,251,77,-0.5259598940610886],[117,251,78,-0.5244757831096649],[117,251,79,-0.5225281454622746],[117,252,64,-0.5382577069103718],[117,252,65,-0.5374624952673912],[117,252,66,-0.5358015894889832],[117,252,67,-0.5336802806705236],[117,252,68,-0.5318391248583794],[117,252,69,-0.5305978842079639],[117,252,70,-0.529931154102087],[117,252,71,-0.5292989611625671],[117,252,72,-0.5285233147442341],[117,252,73,-0.5278422683477402],[117,252,74,-0.5273886639624834],[117,252,75,-0.527093943208456],[117,252,76,-0.526702394708991],[117,252,77,-0.5259598940610886],[117,252,78,-0.5244757831096649],[117,252,79,-0.5225281454622746],[117,253,64,-0.5382577069103718],[117,253,65,-0.5374624952673912],[117,253,66,-0.5358015894889832],[117,253,67,-0.5336802806705236],[117,253,68,-0.5318391248583794],[117,253,69,-0.5305978842079639],[117,253,70,-0.529931154102087],[117,253,71,-0.5292989611625671],[117,253,72,-0.5285233147442341],[117,253,73,-0.5278422683477402],[117,253,74,-0.5273886639624834],[117,253,75,-0.527093943208456],[117,253,76,-0.526702394708991],[117,253,77,-0.5259598940610886],[117,253,78,-0.5244757831096649],[117,253,79,-0.5225281454622746],[117,254,64,-0.5382577069103718],[117,254,65,-0.5374624952673912],[117,254,66,-0.5358015894889832],[117,254,67,-0.5336802806705236],[117,254,68,-0.5318391248583794],[117,254,69,-0.5305978842079639],[117,254,70,-0.529931154102087],[117,254,71,-0.5292989611625671],[117,254,72,-0.5285233147442341],[117,254,73,-0.5278422683477402],[117,254,74,-0.5273886639624834],[117,254,75,-0.527093943208456],[117,254,76,-0.526702394708991],[117,254,77,-0.5259598940610886],[117,254,78,-0.5244757831096649],[117,254,79,-0.5225281454622746],[117,255,64,-0.5382577069103718],[117,255,65,-0.5374624952673912],[117,255,66,-0.5358015894889832],[117,255,67,-0.5336802806705236],[117,255,68,-0.5318391248583794],[117,255,69,-0.5305978842079639],[117,255,70,-0.529931154102087],[117,255,71,-0.5292989611625671],[117,255,72,-0.5285233147442341],[117,255,73,-0.5278422683477402],[117,255,74,-0.5273886639624834],[117,255,75,-0.527093943208456],[117,255,76,-0.526702394708991],[117,255,77,-0.5259598940610886],[117,255,78,-0.5244757831096649],[117,255,79,-0.5225281454622746],[117,256,64,-0.5382577069103718],[117,256,65,-0.5374624952673912],[117,256,66,-0.5358015894889832],[117,256,67,-0.5336802806705236],[117,256,68,-0.5318391248583794],[117,256,69,-0.5305978842079639],[117,256,70,-0.529931154102087],[117,256,71,-0.5292989611625671],[117,256,72,-0.5285233147442341],[117,256,73,-0.5278422683477402],[117,256,74,-0.5273886639624834],[117,256,75,-0.527093943208456],[117,256,76,-0.526702394708991],[117,256,77,-0.5259598940610886],[117,256,78,-0.5244757831096649],[117,256,79,-0.5225281454622746],[117,257,64,-0.5382577069103718],[117,257,65,-0.5374624952673912],[117,257,66,-0.5358015894889832],[117,257,67,-0.5336802806705236],[117,257,68,-0.5318391248583794],[117,257,69,-0.5305978842079639],[117,257,70,-0.529931154102087],[117,257,71,-0.5292989611625671],[117,257,72,-0.5285233147442341],[117,257,73,-0.5278422683477402],[117,257,74,-0.5273886639624834],[117,257,75,-0.527093943208456],[117,257,76,-0.526702394708991],[117,257,77,-0.5259598940610886],[117,257,78,-0.5244757831096649],[117,257,79,-0.5225281454622746],[117,258,64,-0.5382577069103718],[117,258,65,-0.5374624952673912],[117,258,66,-0.5358015894889832],[117,258,67,-0.5336802806705236],[117,258,68,-0.5318391248583794],[117,258,69,-0.5305978842079639],[117,258,70,-0.529931154102087],[117,258,71,-0.5292989611625671],[117,258,72,-0.5285233147442341],[117,258,73,-0.5278422683477402],[117,258,74,-0.5273886639624834],[117,258,75,-0.527093943208456],[117,258,76,-0.526702394708991],[117,258,77,-0.5259598940610886],[117,258,78,-0.5244757831096649],[117,258,79,-0.5225281454622746],[117,259,64,-0.5382577069103718],[117,259,65,-0.5374624952673912],[117,259,66,-0.5358015894889832],[117,259,67,-0.5336802806705236],[117,259,68,-0.5318391248583794],[117,259,69,-0.5305978842079639],[117,259,70,-0.529931154102087],[117,259,71,-0.5292989611625671],[117,259,72,-0.5285233147442341],[117,259,73,-0.5278422683477402],[117,259,74,-0.5273886639624834],[117,259,75,-0.527093943208456],[117,259,76,-0.526702394708991],[117,259,77,-0.5259598940610886],[117,259,78,-0.5244757831096649],[117,259,79,-0.5225281454622746],[117,260,64,-0.5382577069103718],[117,260,65,-0.5374624952673912],[117,260,66,-0.5358015894889832],[117,260,67,-0.5336802806705236],[117,260,68,-0.5318391248583794],[117,260,69,-0.5305978842079639],[117,260,70,-0.529931154102087],[117,260,71,-0.5292989611625671],[117,260,72,-0.5285233147442341],[117,260,73,-0.5278422683477402],[117,260,74,-0.5273886639624834],[117,260,75,-0.527093943208456],[117,260,76,-0.526702394708991],[117,260,77,-0.5259598940610886],[117,260,78,-0.5244757831096649],[117,260,79,-0.5225281454622746],[117,261,64,-0.5382577069103718],[117,261,65,-0.5374624952673912],[117,261,66,-0.5358015894889832],[117,261,67,-0.5336802806705236],[117,261,68,-0.5318391248583794],[117,261,69,-0.5305978842079639],[117,261,70,-0.529931154102087],[117,261,71,-0.5292989611625671],[117,261,72,-0.5285233147442341],[117,261,73,-0.5278422683477402],[117,261,74,-0.5273886639624834],[117,261,75,-0.527093943208456],[117,261,76,-0.526702394708991],[117,261,77,-0.5259598940610886],[117,261,78,-0.5244757831096649],[117,261,79,-0.5225281454622746],[117,262,64,-0.5382577069103718],[117,262,65,-0.5374624952673912],[117,262,66,-0.5358015894889832],[117,262,67,-0.5336802806705236],[117,262,68,-0.5318391248583794],[117,262,69,-0.5305978842079639],[117,262,70,-0.529931154102087],[117,262,71,-0.5292989611625671],[117,262,72,-0.5285233147442341],[117,262,73,-0.5278422683477402],[117,262,74,-0.5273886639624834],[117,262,75,-0.527093943208456],[117,262,76,-0.526702394708991],[117,262,77,-0.5259598940610886],[117,262,78,-0.5244757831096649],[117,262,79,-0.5225281454622746],[117,263,64,-0.5382577069103718],[117,263,65,-0.5374624952673912],[117,263,66,-0.5358015894889832],[117,263,67,-0.5336802806705236],[117,263,68,-0.5318391248583794],[117,263,69,-0.5305978842079639],[117,263,70,-0.529931154102087],[117,263,71,-0.5292989611625671],[117,263,72,-0.5285233147442341],[117,263,73,-0.5278422683477402],[117,263,74,-0.5273886639624834],[117,263,75,-0.527093943208456],[117,263,76,-0.526702394708991],[117,263,77,-0.5259598940610886],[117,263,78,-0.5244757831096649],[117,263,79,-0.5225281454622746],[117,264,64,-0.5382577069103718],[117,264,65,-0.5374624952673912],[117,264,66,-0.5358015894889832],[117,264,67,-0.5336802806705236],[117,264,68,-0.5318391248583794],[117,264,69,-0.5305978842079639],[117,264,70,-0.529931154102087],[117,264,71,-0.5292989611625671],[117,264,72,-0.5285233147442341],[117,264,73,-0.5278422683477402],[117,264,74,-0.5273886639624834],[117,264,75,-0.527093943208456],[117,264,76,-0.526702394708991],[117,264,77,-0.5259598940610886],[117,264,78,-0.5244757831096649],[117,264,79,-0.5225281454622746],[117,265,64,-0.5382577069103718],[117,265,65,-0.5374624952673912],[117,265,66,-0.5358015894889832],[117,265,67,-0.5336802806705236],[117,265,68,-0.5318391248583794],[117,265,69,-0.5305978842079639],[117,265,70,-0.529931154102087],[117,265,71,-0.5292989611625671],[117,265,72,-0.5285233147442341],[117,265,73,-0.5278422683477402],[117,265,74,-0.5273886639624834],[117,265,75,-0.527093943208456],[117,265,76,-0.526702394708991],[117,265,77,-0.5259598940610886],[117,265,78,-0.5244757831096649],[117,265,79,-0.5225281454622746],[117,266,64,-0.5382577069103718],[117,266,65,-0.5374624952673912],[117,266,66,-0.5358015894889832],[117,266,67,-0.5336802806705236],[117,266,68,-0.5318391248583794],[117,266,69,-0.5305978842079639],[117,266,70,-0.529931154102087],[117,266,71,-0.5292989611625671],[117,266,72,-0.5285233147442341],[117,266,73,-0.5278422683477402],[117,266,74,-0.5273886639624834],[117,266,75,-0.527093943208456],[117,266,76,-0.526702394708991],[117,266,77,-0.5259598940610886],[117,266,78,-0.5244757831096649],[117,266,79,-0.5225281454622746],[117,267,64,-0.5382577069103718],[117,267,65,-0.5374624952673912],[117,267,66,-0.5358015894889832],[117,267,67,-0.5336802806705236],[117,267,68,-0.5318391248583794],[117,267,69,-0.5305978842079639],[117,267,70,-0.529931154102087],[117,267,71,-0.5292989611625671],[117,267,72,-0.5285233147442341],[117,267,73,-0.5278422683477402],[117,267,74,-0.5273886639624834],[117,267,75,-0.527093943208456],[117,267,76,-0.526702394708991],[117,267,77,-0.5259598940610886],[117,267,78,-0.5244757831096649],[117,267,79,-0.5225281454622746],[117,268,64,-0.5382577069103718],[117,268,65,-0.5374624952673912],[117,268,66,-0.5358015894889832],[117,268,67,-0.5336802806705236],[117,268,68,-0.5318391248583794],[117,268,69,-0.5305978842079639],[117,268,70,-0.529931154102087],[117,268,71,-0.5292989611625671],[117,268,72,-0.5285233147442341],[117,268,73,-0.5278422683477402],[117,268,74,-0.5273886639624834],[117,268,75,-0.527093943208456],[117,268,76,-0.526702394708991],[117,268,77,-0.5259598940610886],[117,268,78,-0.5244757831096649],[117,268,79,-0.5225281454622746],[117,269,64,-0.5382577069103718],[117,269,65,-0.5374624952673912],[117,269,66,-0.5358015894889832],[117,269,67,-0.5336802806705236],[117,269,68,-0.5318391248583794],[117,269,69,-0.5305978842079639],[117,269,70,-0.529931154102087],[117,269,71,-0.5292989611625671],[117,269,72,-0.5285233147442341],[117,269,73,-0.5278422683477402],[117,269,74,-0.5273886639624834],[117,269,75,-0.527093943208456],[117,269,76,-0.526702394708991],[117,269,77,-0.5259598940610886],[117,269,78,-0.5244757831096649],[117,269,79,-0.5225281454622746],[117,270,64,-0.5382577069103718],[117,270,65,-0.5374624952673912],[117,270,66,-0.5358015894889832],[117,270,67,-0.5336802806705236],[117,270,68,-0.5318391248583794],[117,270,69,-0.5305978842079639],[117,270,70,-0.529931154102087],[117,270,71,-0.5292989611625671],[117,270,72,-0.5285233147442341],[117,270,73,-0.5278422683477402],[117,270,74,-0.5273886639624834],[117,270,75,-0.527093943208456],[117,270,76,-0.526702394708991],[117,270,77,-0.5259598940610886],[117,270,78,-0.5244757831096649],[117,270,79,-0.5225281454622746],[117,271,64,-0.5382577069103718],[117,271,65,-0.5374624952673912],[117,271,66,-0.5358015894889832],[117,271,67,-0.5336802806705236],[117,271,68,-0.5318391248583794],[117,271,69,-0.5305978842079639],[117,271,70,-0.529931154102087],[117,271,71,-0.5292989611625671],[117,271,72,-0.5285233147442341],[117,271,73,-0.5278422683477402],[117,271,74,-0.5273886639624834],[117,271,75,-0.527093943208456],[117,271,76,-0.526702394708991],[117,271,77,-0.5259598940610886],[117,271,78,-0.5244757831096649],[117,271,79,-0.5225281454622746],[117,272,64,-0.5382577069103718],[117,272,65,-0.5374624952673912],[117,272,66,-0.5358015894889832],[117,272,67,-0.5336802806705236],[117,272,68,-0.5318391248583794],[117,272,69,-0.5305978842079639],[117,272,70,-0.529931154102087],[117,272,71,-0.5292989611625671],[117,272,72,-0.5285233147442341],[117,272,73,-0.5278422683477402],[117,272,74,-0.5273886639624834],[117,272,75,-0.527093943208456],[117,272,76,-0.526702394708991],[117,272,77,-0.5259598940610886],[117,272,78,-0.5244757831096649],[117,272,79,-0.5225281454622746],[117,273,64,-0.5382577069103718],[117,273,65,-0.5374624952673912],[117,273,66,-0.5358015894889832],[117,273,67,-0.5336802806705236],[117,273,68,-0.5318391248583794],[117,273,69,-0.5305978842079639],[117,273,70,-0.529931154102087],[117,273,71,-0.5292989611625671],[117,273,72,-0.5285233147442341],[117,273,73,-0.5278422683477402],[117,273,74,-0.5273886639624834],[117,273,75,-0.527093943208456],[117,273,76,-0.526702394708991],[117,273,77,-0.5259598940610886],[117,273,78,-0.5244757831096649],[117,273,79,-0.5225281454622746],[117,274,64,-0.5382577069103718],[117,274,65,-0.5374624952673912],[117,274,66,-0.5358015894889832],[117,274,67,-0.5336802806705236],[117,274,68,-0.5318391248583794],[117,274,69,-0.5305978842079639],[117,274,70,-0.529931154102087],[117,274,71,-0.5292989611625671],[117,274,72,-0.5285233147442341],[117,274,73,-0.5278422683477402],[117,274,74,-0.5273886639624834],[117,274,75,-0.527093943208456],[117,274,76,-0.526702394708991],[117,274,77,-0.5259598940610886],[117,274,78,-0.5244757831096649],[117,274,79,-0.5225281454622746],[117,275,64,-0.5382577069103718],[117,275,65,-0.5374624952673912],[117,275,66,-0.5358015894889832],[117,275,67,-0.5336802806705236],[117,275,68,-0.5318391248583794],[117,275,69,-0.5305978842079639],[117,275,70,-0.529931154102087],[117,275,71,-0.5292989611625671],[117,275,72,-0.5285233147442341],[117,275,73,-0.5278422683477402],[117,275,74,-0.5273886639624834],[117,275,75,-0.527093943208456],[117,275,76,-0.526702394708991],[117,275,77,-0.5259598940610886],[117,275,78,-0.5244757831096649],[117,275,79,-0.5225281454622746],[117,276,64,-0.5382577069103718],[117,276,65,-0.5374624952673912],[117,276,66,-0.5358015894889832],[117,276,67,-0.5336802806705236],[117,276,68,-0.5318391248583794],[117,276,69,-0.5305978842079639],[117,276,70,-0.529931154102087],[117,276,71,-0.5292989611625671],[117,276,72,-0.5285233147442341],[117,276,73,-0.5278422683477402],[117,276,74,-0.5273886639624834],[117,276,75,-0.527093943208456],[117,276,76,-0.526702394708991],[117,276,77,-0.5259598940610886],[117,276,78,-0.5244757831096649],[117,276,79,-0.5225281454622746],[117,277,64,-0.5382577069103718],[117,277,65,-0.5374624952673912],[117,277,66,-0.5358015894889832],[117,277,67,-0.5336802806705236],[117,277,68,-0.5318391248583794],[117,277,69,-0.5305978842079639],[117,277,70,-0.529931154102087],[117,277,71,-0.5292989611625671],[117,277,72,-0.5285233147442341],[117,277,73,-0.5278422683477402],[117,277,74,-0.5273886639624834],[117,277,75,-0.527093943208456],[117,277,76,-0.526702394708991],[117,277,77,-0.5259598940610886],[117,277,78,-0.5244757831096649],[117,277,79,-0.5225281454622746],[117,278,64,-0.5382577069103718],[117,278,65,-0.5374624952673912],[117,278,66,-0.5358015894889832],[117,278,67,-0.5336802806705236],[117,278,68,-0.5318391248583794],[117,278,69,-0.5305978842079639],[117,278,70,-0.529931154102087],[117,278,71,-0.5292989611625671],[117,278,72,-0.5285233147442341],[117,278,73,-0.5278422683477402],[117,278,74,-0.5273886639624834],[117,278,75,-0.527093943208456],[117,278,76,-0.526702394708991],[117,278,77,-0.5259598940610886],[117,278,78,-0.5244757831096649],[117,278,79,-0.5225281454622746],[117,279,64,-0.5382577069103718],[117,279,65,-0.5374624952673912],[117,279,66,-0.5358015894889832],[117,279,67,-0.5336802806705236],[117,279,68,-0.5318391248583794],[117,279,69,-0.5305978842079639],[117,279,70,-0.529931154102087],[117,279,71,-0.5292989611625671],[117,279,72,-0.5285233147442341],[117,279,73,-0.5278422683477402],[117,279,74,-0.5273886639624834],[117,279,75,-0.527093943208456],[117,279,76,-0.526702394708991],[117,279,77,-0.5259598940610886],[117,279,78,-0.5244757831096649],[117,279,79,-0.5225281454622746],[117,280,64,-0.5382577069103718],[117,280,65,-0.5374624952673912],[117,280,66,-0.5358015894889832],[117,280,67,-0.5336802806705236],[117,280,68,-0.5318391248583794],[117,280,69,-0.5305978842079639],[117,280,70,-0.529931154102087],[117,280,71,-0.5292989611625671],[117,280,72,-0.5285233147442341],[117,280,73,-0.5278422683477402],[117,280,74,-0.5273886639624834],[117,280,75,-0.527093943208456],[117,280,76,-0.526702394708991],[117,280,77,-0.5259598940610886],[117,280,78,-0.5244757831096649],[117,280,79,-0.5225281454622746],[117,281,64,-0.5382577069103718],[117,281,65,-0.5374624952673912],[117,281,66,-0.5358015894889832],[117,281,67,-0.5336802806705236],[117,281,68,-0.5318391248583794],[117,281,69,-0.5305978842079639],[117,281,70,-0.529931154102087],[117,281,71,-0.5292989611625671],[117,281,72,-0.5285233147442341],[117,281,73,-0.5278422683477402],[117,281,74,-0.5273886639624834],[117,281,75,-0.527093943208456],[117,281,76,-0.526702394708991],[117,281,77,-0.5259598940610886],[117,281,78,-0.5244757831096649],[117,281,79,-0.5225281454622746],[117,282,64,-0.5382577069103718],[117,282,65,-0.5374624952673912],[117,282,66,-0.5358015894889832],[117,282,67,-0.5336802806705236],[117,282,68,-0.5318391248583794],[117,282,69,-0.5305978842079639],[117,282,70,-0.529931154102087],[117,282,71,-0.5292989611625671],[117,282,72,-0.5285233147442341],[117,282,73,-0.5278422683477402],[117,282,74,-0.5273886639624834],[117,282,75,-0.527093943208456],[117,282,76,-0.526702394708991],[117,282,77,-0.5259598940610886],[117,282,78,-0.5244757831096649],[117,282,79,-0.5225281454622746],[117,283,64,-0.5382577069103718],[117,283,65,-0.5374624952673912],[117,283,66,-0.5358015894889832],[117,283,67,-0.5336802806705236],[117,283,68,-0.5318391248583794],[117,283,69,-0.5305978842079639],[117,283,70,-0.529931154102087],[117,283,71,-0.5292989611625671],[117,283,72,-0.5285233147442341],[117,283,73,-0.5278422683477402],[117,283,74,-0.5273886639624834],[117,283,75,-0.527093943208456],[117,283,76,-0.526702394708991],[117,283,77,-0.5259598940610886],[117,283,78,-0.5244757831096649],[117,283,79,-0.5225281454622746],[117,284,64,-0.5382577069103718],[117,284,65,-0.5374624952673912],[117,284,66,-0.5358015894889832],[117,284,67,-0.5336802806705236],[117,284,68,-0.5318391248583794],[117,284,69,-0.5305978842079639],[117,284,70,-0.529931154102087],[117,284,71,-0.5292989611625671],[117,284,72,-0.5285233147442341],[117,284,73,-0.5278422683477402],[117,284,74,-0.5273886639624834],[117,284,75,-0.527093943208456],[117,284,76,-0.526702394708991],[117,284,77,-0.5259598940610886],[117,284,78,-0.5244757831096649],[117,284,79,-0.5225281454622746],[117,285,64,-0.5382577069103718],[117,285,65,-0.5374624952673912],[117,285,66,-0.5358015894889832],[117,285,67,-0.5336802806705236],[117,285,68,-0.5318391248583794],[117,285,69,-0.5305978842079639],[117,285,70,-0.529931154102087],[117,285,71,-0.5292989611625671],[117,285,72,-0.5285233147442341],[117,285,73,-0.5278422683477402],[117,285,74,-0.5273886639624834],[117,285,75,-0.527093943208456],[117,285,76,-0.526702394708991],[117,285,77,-0.5259598940610886],[117,285,78,-0.5244757831096649],[117,285,79,-0.5225281454622746],[117,286,64,-0.5382577069103718],[117,286,65,-0.5374624952673912],[117,286,66,-0.5358015894889832],[117,286,67,-0.5336802806705236],[117,286,68,-0.5318391248583794],[117,286,69,-0.5305978842079639],[117,286,70,-0.529931154102087],[117,286,71,-0.5292989611625671],[117,286,72,-0.5285233147442341],[117,286,73,-0.5278422683477402],[117,286,74,-0.5273886639624834],[117,286,75,-0.527093943208456],[117,286,76,-0.526702394708991],[117,286,77,-0.5259598940610886],[117,286,78,-0.5244757831096649],[117,286,79,-0.5225281454622746],[117,287,64,-0.5382577069103718],[117,287,65,-0.5374624952673912],[117,287,66,-0.5358015894889832],[117,287,67,-0.5336802806705236],[117,287,68,-0.5318391248583794],[117,287,69,-0.5305978842079639],[117,287,70,-0.529931154102087],[117,287,71,-0.5292989611625671],[117,287,72,-0.5285233147442341],[117,287,73,-0.5278422683477402],[117,287,74,-0.5273886639624834],[117,287,75,-0.527093943208456],[117,287,76,-0.526702394708991],[117,287,77,-0.5259598940610886],[117,287,78,-0.5244757831096649],[117,287,79,-0.5225281454622746],[117,288,64,-0.5382577069103718],[117,288,65,-0.5374624952673912],[117,288,66,-0.5358015894889832],[117,288,67,-0.5336802806705236],[117,288,68,-0.5318391248583794],[117,288,69,-0.5305978842079639],[117,288,70,-0.529931154102087],[117,288,71,-0.5292989611625671],[117,288,72,-0.5285233147442341],[117,288,73,-0.5278422683477402],[117,288,74,-0.5273886639624834],[117,288,75,-0.527093943208456],[117,288,76,-0.526702394708991],[117,288,77,-0.5259598940610886],[117,288,78,-0.5244757831096649],[117,288,79,-0.5225281454622746],[117,289,64,-0.5382577069103718],[117,289,65,-0.5374624952673912],[117,289,66,-0.5358015894889832],[117,289,67,-0.5336802806705236],[117,289,68,-0.5318391248583794],[117,289,69,-0.5305978842079639],[117,289,70,-0.529931154102087],[117,289,71,-0.5292989611625671],[117,289,72,-0.5285233147442341],[117,289,73,-0.5278422683477402],[117,289,74,-0.5273886639624834],[117,289,75,-0.527093943208456],[117,289,76,-0.526702394708991],[117,289,77,-0.5259598940610886],[117,289,78,-0.5244757831096649],[117,289,79,-0.5225281454622746],[117,290,64,-0.5382577069103718],[117,290,65,-0.5374624952673912],[117,290,66,-0.5358015894889832],[117,290,67,-0.5336802806705236],[117,290,68,-0.5318391248583794],[117,290,69,-0.5305978842079639],[117,290,70,-0.529931154102087],[117,290,71,-0.5292989611625671],[117,290,72,-0.5285233147442341],[117,290,73,-0.5278422683477402],[117,290,74,-0.5273886639624834],[117,290,75,-0.527093943208456],[117,290,76,-0.526702394708991],[117,290,77,-0.5259598940610886],[117,290,78,-0.5244757831096649],[117,290,79,-0.5225281454622746],[117,291,64,-0.5382577069103718],[117,291,65,-0.5374624952673912],[117,291,66,-0.5358015894889832],[117,291,67,-0.5336802806705236],[117,291,68,-0.5318391248583794],[117,291,69,-0.5305978842079639],[117,291,70,-0.529931154102087],[117,291,71,-0.5292989611625671],[117,291,72,-0.5285233147442341],[117,291,73,-0.5278422683477402],[117,291,74,-0.5273886639624834],[117,291,75,-0.527093943208456],[117,291,76,-0.526702394708991],[117,291,77,-0.5259598940610886],[117,291,78,-0.5244757831096649],[117,291,79,-0.5225281454622746],[117,292,64,-0.5382577069103718],[117,292,65,-0.5374624952673912],[117,292,66,-0.5358015894889832],[117,292,67,-0.5336802806705236],[117,292,68,-0.5318391248583794],[117,292,69,-0.5305978842079639],[117,292,70,-0.529931154102087],[117,292,71,-0.5292989611625671],[117,292,72,-0.5285233147442341],[117,292,73,-0.5278422683477402],[117,292,74,-0.5273886639624834],[117,292,75,-0.527093943208456],[117,292,76,-0.526702394708991],[117,292,77,-0.5259598940610886],[117,292,78,-0.5244757831096649],[117,292,79,-0.5225281454622746],[117,293,64,-0.5382577069103718],[117,293,65,-0.5374624952673912],[117,293,66,-0.5358015894889832],[117,293,67,-0.5336802806705236],[117,293,68,-0.5318391248583794],[117,293,69,-0.5305978842079639],[117,293,70,-0.529931154102087],[117,293,71,-0.5292989611625671],[117,293,72,-0.5285233147442341],[117,293,73,-0.5278422683477402],[117,293,74,-0.5273886639624834],[117,293,75,-0.527093943208456],[117,293,76,-0.526702394708991],[117,293,77,-0.5259598940610886],[117,293,78,-0.5244757831096649],[117,293,79,-0.5225281454622746],[117,294,64,-0.5382577069103718],[117,294,65,-0.5374624952673912],[117,294,66,-0.5358015894889832],[117,294,67,-0.5336802806705236],[117,294,68,-0.5318391248583794],[117,294,69,-0.5305978842079639],[117,294,70,-0.529931154102087],[117,294,71,-0.5292989611625671],[117,294,72,-0.5285233147442341],[117,294,73,-0.5278422683477402],[117,294,74,-0.5273886639624834],[117,294,75,-0.527093943208456],[117,294,76,-0.526702394708991],[117,294,77,-0.5259598940610886],[117,294,78,-0.5244757831096649],[117,294,79,-0.5225281454622746],[117,295,64,-0.5382577069103718],[117,295,65,-0.5374624952673912],[117,295,66,-0.5358015894889832],[117,295,67,-0.5336802806705236],[117,295,68,-0.5318391248583794],[117,295,69,-0.5305978842079639],[117,295,70,-0.529931154102087],[117,295,71,-0.5292989611625671],[117,295,72,-0.5285233147442341],[117,295,73,-0.5278422683477402],[117,295,74,-0.5273886639624834],[117,295,75,-0.527093943208456],[117,295,76,-0.526702394708991],[117,295,77,-0.5259598940610886],[117,295,78,-0.5244757831096649],[117,295,79,-0.5225281454622746],[117,296,64,-0.5382577069103718],[117,296,65,-0.5374624952673912],[117,296,66,-0.5358015894889832],[117,296,67,-0.5336802806705236],[117,296,68,-0.5318391248583794],[117,296,69,-0.5305978842079639],[117,296,70,-0.529931154102087],[117,296,71,-0.5292989611625671],[117,296,72,-0.5285233147442341],[117,296,73,-0.5278422683477402],[117,296,74,-0.5273886639624834],[117,296,75,-0.527093943208456],[117,296,76,-0.526702394708991],[117,296,77,-0.5259598940610886],[117,296,78,-0.5244757831096649],[117,296,79,-0.5225281454622746],[117,297,64,-0.5382577069103718],[117,297,65,-0.5374624952673912],[117,297,66,-0.5358015894889832],[117,297,67,-0.5336802806705236],[117,297,68,-0.5318391248583794],[117,297,69,-0.5305978842079639],[117,297,70,-0.529931154102087],[117,297,71,-0.5292989611625671],[117,297,72,-0.5285233147442341],[117,297,73,-0.5278422683477402],[117,297,74,-0.5273886639624834],[117,297,75,-0.527093943208456],[117,297,76,-0.526702394708991],[117,297,77,-0.5259598940610886],[117,297,78,-0.5244757831096649],[117,297,79,-0.5225281454622746],[117,298,64,-0.5382577069103718],[117,298,65,-0.5374624952673912],[117,298,66,-0.5358015894889832],[117,298,67,-0.5336802806705236],[117,298,68,-0.5318391248583794],[117,298,69,-0.5305978842079639],[117,298,70,-0.529931154102087],[117,298,71,-0.5292989611625671],[117,298,72,-0.5285233147442341],[117,298,73,-0.5278422683477402],[117,298,74,-0.5273886639624834],[117,298,75,-0.527093943208456],[117,298,76,-0.526702394708991],[117,298,77,-0.5259598940610886],[117,298,78,-0.5244757831096649],[117,298,79,-0.5225281454622746],[117,299,64,-0.5382577069103718],[117,299,65,-0.5374624952673912],[117,299,66,-0.5358015894889832],[117,299,67,-0.5336802806705236],[117,299,68,-0.5318391248583794],[117,299,69,-0.5305978842079639],[117,299,70,-0.529931154102087],[117,299,71,-0.5292989611625671],[117,299,72,-0.5285233147442341],[117,299,73,-0.5278422683477402],[117,299,74,-0.5273886639624834],[117,299,75,-0.527093943208456],[117,299,76,-0.526702394708991],[117,299,77,-0.5259598940610886],[117,299,78,-0.5244757831096649],[117,299,79,-0.5225281454622746],[117,300,64,-0.5382577069103718],[117,300,65,-0.5374624952673912],[117,300,66,-0.5358015894889832],[117,300,67,-0.5336802806705236],[117,300,68,-0.5318391248583794],[117,300,69,-0.5305978842079639],[117,300,70,-0.529931154102087],[117,300,71,-0.5292989611625671],[117,300,72,-0.5285233147442341],[117,300,73,-0.5278422683477402],[117,300,74,-0.5273886639624834],[117,300,75,-0.527093943208456],[117,300,76,-0.526702394708991],[117,300,77,-0.5259598940610886],[117,300,78,-0.5244757831096649],[117,300,79,-0.5225281454622746],[117,301,64,-0.5382577069103718],[117,301,65,-0.5374624952673912],[117,301,66,-0.5358015894889832],[117,301,67,-0.5336802806705236],[117,301,68,-0.5318391248583794],[117,301,69,-0.5305978842079639],[117,301,70,-0.529931154102087],[117,301,71,-0.5292989611625671],[117,301,72,-0.5285233147442341],[117,301,73,-0.5278422683477402],[117,301,74,-0.5273886639624834],[117,301,75,-0.527093943208456],[117,301,76,-0.526702394708991],[117,301,77,-0.5259598940610886],[117,301,78,-0.5244757831096649],[117,301,79,-0.5225281454622746],[117,302,64,-0.5382577069103718],[117,302,65,-0.5374624952673912],[117,302,66,-0.5358015894889832],[117,302,67,-0.5336802806705236],[117,302,68,-0.5318391248583794],[117,302,69,-0.5305978842079639],[117,302,70,-0.529931154102087],[117,302,71,-0.5292989611625671],[117,302,72,-0.5285233147442341],[117,302,73,-0.5278422683477402],[117,302,74,-0.5273886639624834],[117,302,75,-0.527093943208456],[117,302,76,-0.526702394708991],[117,302,77,-0.5259598940610886],[117,302,78,-0.5244757831096649],[117,302,79,-0.5225281454622746],[117,303,64,-0.5382577069103718],[117,303,65,-0.5374624952673912],[117,303,66,-0.5358015894889832],[117,303,67,-0.5336802806705236],[117,303,68,-0.5318391248583794],[117,303,69,-0.5305978842079639],[117,303,70,-0.529931154102087],[117,303,71,-0.5292989611625671],[117,303,72,-0.5285233147442341],[117,303,73,-0.5278422683477402],[117,303,74,-0.5273886639624834],[117,303,75,-0.527093943208456],[117,303,76,-0.526702394708991],[117,303,77,-0.5259598940610886],[117,303,78,-0.5244757831096649],[117,303,79,-0.5225281454622746],[117,304,64,-0.5382577069103718],[117,304,65,-0.5374624952673912],[117,304,66,-0.5358015894889832],[117,304,67,-0.5336802806705236],[117,304,68,-0.5318391248583794],[117,304,69,-0.5305978842079639],[117,304,70,-0.529931154102087],[117,304,71,-0.5292989611625671],[117,304,72,-0.5285233147442341],[117,304,73,-0.5278422683477402],[117,304,74,-0.5273886639624834],[117,304,75,-0.527093943208456],[117,304,76,-0.526702394708991],[117,304,77,-0.5259598940610886],[117,304,78,-0.5244757831096649],[117,304,79,-0.5225281454622746],[117,305,64,-0.5382577069103718],[117,305,65,-0.5374624952673912],[117,305,66,-0.5358015894889832],[117,305,67,-0.5336802806705236],[117,305,68,-0.5318391248583794],[117,305,69,-0.5305978842079639],[117,305,70,-0.529931154102087],[117,305,71,-0.5292989611625671],[117,305,72,-0.5285233147442341],[117,305,73,-0.5278422683477402],[117,305,74,-0.5273886639624834],[117,305,75,-0.527093943208456],[117,305,76,-0.526702394708991],[117,305,77,-0.5259598940610886],[117,305,78,-0.5244757831096649],[117,305,79,-0.5225281454622746],[117,306,64,-0.5382577069103718],[117,306,65,-0.5374624952673912],[117,306,66,-0.5358015894889832],[117,306,67,-0.5336802806705236],[117,306,68,-0.5318391248583794],[117,306,69,-0.5305978842079639],[117,306,70,-0.529931154102087],[117,306,71,-0.5292989611625671],[117,306,72,-0.5285233147442341],[117,306,73,-0.5278422683477402],[117,306,74,-0.5273886639624834],[117,306,75,-0.527093943208456],[117,306,76,-0.526702394708991],[117,306,77,-0.5259598940610886],[117,306,78,-0.5244757831096649],[117,306,79,-0.5225281454622746],[117,307,64,-0.5382577069103718],[117,307,65,-0.5374624952673912],[117,307,66,-0.5358015894889832],[117,307,67,-0.5336802806705236],[117,307,68,-0.5318391248583794],[117,307,69,-0.5305978842079639],[117,307,70,-0.529931154102087],[117,307,71,-0.5292989611625671],[117,307,72,-0.5285233147442341],[117,307,73,-0.5278422683477402],[117,307,74,-0.5273886639624834],[117,307,75,-0.527093943208456],[117,307,76,-0.526702394708991],[117,307,77,-0.5259598940610886],[117,307,78,-0.5244757831096649],[117,307,79,-0.5225281454622746],[117,308,64,-0.5382577069103718],[117,308,65,-0.5374624952673912],[117,308,66,-0.5358015894889832],[117,308,67,-0.5336802806705236],[117,308,68,-0.5318391248583794],[117,308,69,-0.5305978842079639],[117,308,70,-0.529931154102087],[117,308,71,-0.5292989611625671],[117,308,72,-0.5285233147442341],[117,308,73,-0.5278422683477402],[117,308,74,-0.5273886639624834],[117,308,75,-0.527093943208456],[117,308,76,-0.526702394708991],[117,308,77,-0.5259598940610886],[117,308,78,-0.5244757831096649],[117,308,79,-0.5225281454622746],[117,309,64,-0.5382577069103718],[117,309,65,-0.5374624952673912],[117,309,66,-0.5358015894889832],[117,309,67,-0.5336802806705236],[117,309,68,-0.5318391248583794],[117,309,69,-0.5305978842079639],[117,309,70,-0.529931154102087],[117,309,71,-0.5292989611625671],[117,309,72,-0.5285233147442341],[117,309,73,-0.5278422683477402],[117,309,74,-0.5273886639624834],[117,309,75,-0.527093943208456],[117,309,76,-0.526702394708991],[117,309,77,-0.5259598940610886],[117,309,78,-0.5244757831096649],[117,309,79,-0.5225281454622746],[117,310,64,-0.5382577069103718],[117,310,65,-0.5374624952673912],[117,310,66,-0.5358015894889832],[117,310,67,-0.5336802806705236],[117,310,68,-0.5318391248583794],[117,310,69,-0.5305978842079639],[117,310,70,-0.529931154102087],[117,310,71,-0.5292989611625671],[117,310,72,-0.5285233147442341],[117,310,73,-0.5278422683477402],[117,310,74,-0.5273886639624834],[117,310,75,-0.527093943208456],[117,310,76,-0.526702394708991],[117,310,77,-0.5259598940610886],[117,310,78,-0.5244757831096649],[117,310,79,-0.5225281454622746],[117,311,64,-0.5382577069103718],[117,311,65,-0.5374624952673912],[117,311,66,-0.5358015894889832],[117,311,67,-0.5336802806705236],[117,311,68,-0.5318391248583794],[117,311,69,-0.5305978842079639],[117,311,70,-0.529931154102087],[117,311,71,-0.5292989611625671],[117,311,72,-0.5285233147442341],[117,311,73,-0.5278422683477402],[117,311,74,-0.5273886639624834],[117,311,75,-0.527093943208456],[117,311,76,-0.526702394708991],[117,311,77,-0.5259598940610886],[117,311,78,-0.5244757831096649],[117,311,79,-0.5225281454622746],[117,312,64,-0.5382577069103718],[117,312,65,-0.5374624952673912],[117,312,66,-0.5358015894889832],[117,312,67,-0.5336802806705236],[117,312,68,-0.5318391248583794],[117,312,69,-0.5305978842079639],[117,312,70,-0.529931154102087],[117,312,71,-0.5292989611625671],[117,312,72,-0.5285233147442341],[117,312,73,-0.5278422683477402],[117,312,74,-0.5273886639624834],[117,312,75,-0.527093943208456],[117,312,76,-0.526702394708991],[117,312,77,-0.5259598940610886],[117,312,78,-0.5244757831096649],[117,312,79,-0.5225281454622746],[117,313,64,-0.5382577069103718],[117,313,65,-0.5374624952673912],[117,313,66,-0.5358015894889832],[117,313,67,-0.5336802806705236],[117,313,68,-0.5318391248583794],[117,313,69,-0.5305978842079639],[117,313,70,-0.529931154102087],[117,313,71,-0.5292989611625671],[117,313,72,-0.5285233147442341],[117,313,73,-0.5278422683477402],[117,313,74,-0.5273886639624834],[117,313,75,-0.527093943208456],[117,313,76,-0.526702394708991],[117,313,77,-0.5259598940610886],[117,313,78,-0.5244757831096649],[117,313,79,-0.5225281454622746],[117,314,64,-0.5382577069103718],[117,314,65,-0.5374624952673912],[117,314,66,-0.5358015894889832],[117,314,67,-0.5336802806705236],[117,314,68,-0.5318391248583794],[117,314,69,-0.5305978842079639],[117,314,70,-0.529931154102087],[117,314,71,-0.5292989611625671],[117,314,72,-0.5285233147442341],[117,314,73,-0.5278422683477402],[117,314,74,-0.5273886639624834],[117,314,75,-0.527093943208456],[117,314,76,-0.526702394708991],[117,314,77,-0.5259598940610886],[117,314,78,-0.5244757831096649],[117,314,79,-0.5225281454622746],[117,315,64,-0.5382577069103718],[117,315,65,-0.5374624952673912],[117,315,66,-0.5358015894889832],[117,315,67,-0.5336802806705236],[117,315,68,-0.5318391248583794],[117,315,69,-0.5305978842079639],[117,315,70,-0.529931154102087],[117,315,71,-0.5292989611625671],[117,315,72,-0.5285233147442341],[117,315,73,-0.5278422683477402],[117,315,74,-0.5273886639624834],[117,315,75,-0.527093943208456],[117,315,76,-0.526702394708991],[117,315,77,-0.5259598940610886],[117,315,78,-0.5244757831096649],[117,315,79,-0.5225281454622746],[117,316,64,-0.5382577069103718],[117,316,65,-0.5374624952673912],[117,316,66,-0.5358015894889832],[117,316,67,-0.5336802806705236],[117,316,68,-0.5318391248583794],[117,316,69,-0.5305978842079639],[117,316,70,-0.529931154102087],[117,316,71,-0.5292989611625671],[117,316,72,-0.5285233147442341],[117,316,73,-0.5278422683477402],[117,316,74,-0.5273886639624834],[117,316,75,-0.527093943208456],[117,316,76,-0.526702394708991],[117,316,77,-0.5259598940610886],[117,316,78,-0.5244757831096649],[117,316,79,-0.5225281454622746],[117,317,64,-0.5382577069103718],[117,317,65,-0.5374624952673912],[117,317,66,-0.5358015894889832],[117,317,67,-0.5336802806705236],[117,317,68,-0.5318391248583794],[117,317,69,-0.5305978842079639],[117,317,70,-0.529931154102087],[117,317,71,-0.5292989611625671],[117,317,72,-0.5285233147442341],[117,317,73,-0.5278422683477402],[117,317,74,-0.5273886639624834],[117,317,75,-0.527093943208456],[117,317,76,-0.526702394708991],[117,317,77,-0.5259598940610886],[117,317,78,-0.5244757831096649],[117,317,79,-0.5225281454622746],[117,318,64,-0.5382577069103718],[117,318,65,-0.5374624952673912],[117,318,66,-0.5358015894889832],[117,318,67,-0.5336802806705236],[117,318,68,-0.5318391248583794],[117,318,69,-0.5305978842079639],[117,318,70,-0.529931154102087],[117,318,71,-0.5292989611625671],[117,318,72,-0.5285233147442341],[117,318,73,-0.5278422683477402],[117,318,74,-0.5273886639624834],[117,318,75,-0.527093943208456],[117,318,76,-0.526702394708991],[117,318,77,-0.5259598940610886],[117,318,78,-0.5244757831096649],[117,318,79,-0.5225281454622746],[117,319,64,-0.5382577069103718],[117,319,65,-0.5374624952673912],[117,319,66,-0.5358015894889832],[117,319,67,-0.5336802806705236],[117,319,68,-0.5318391248583794],[117,319,69,-0.5305978842079639],[117,319,70,-0.529931154102087],[117,319,71,-0.5292989611625671],[117,319,72,-0.5285233147442341],[117,319,73,-0.5278422683477402],[117,319,74,-0.5273886639624834],[117,319,75,-0.527093943208456],[117,319,76,-0.526702394708991],[117,319,77,-0.5259598940610886],[117,319,78,-0.5244757831096649],[117,319,79,-0.5225281454622746],[118,-64,64,-0.540659885853529],[118,-64,65,-0.5400260500609875],[118,-64,66,-0.5383706800639629],[118,-64,67,-0.5361858643591404],[118,-64,68,-0.5343015473335981],[118,-64,69,-0.533218989148736],[118,-64,70,-0.5328878294676542],[118,-64,71,-0.5327760968357325],[118,-64,72,-0.5329174771904945],[118,-64,73,-0.5334567576646805],[118,-64,74,-0.5341567937284708],[118,-64,75,-0.534636203199625],[118,-64,76,-0.534485774114728],[118,-64,77,-0.5334059037268162],[118,-64,78,-0.5312022604048252],[118,-64,79,-0.5284954980015755],[118,-63,64,-0.540659885853529],[118,-63,65,-0.5400260500609875],[118,-63,66,-0.5383706800639629],[118,-63,67,-0.5361858643591404],[118,-63,68,-0.5343015473335981],[118,-63,69,-0.533218989148736],[118,-63,70,-0.5328878294676542],[118,-63,71,-0.5327760968357325],[118,-63,72,-0.5329174771904945],[118,-63,73,-0.5334567576646805],[118,-63,74,-0.5341567937284708],[118,-63,75,-0.534636203199625],[118,-63,76,-0.534485774114728],[118,-63,77,-0.5334059037268162],[118,-63,78,-0.5312022604048252],[118,-63,79,-0.5284954980015755],[118,-62,64,-0.540659885853529],[118,-62,65,-0.5400260500609875],[118,-62,66,-0.5383706800639629],[118,-62,67,-0.5361858643591404],[118,-62,68,-0.5343015473335981],[118,-62,69,-0.533218989148736],[118,-62,70,-0.5328878294676542],[118,-62,71,-0.5327760968357325],[118,-62,72,-0.5329174771904945],[118,-62,73,-0.5334567576646805],[118,-62,74,-0.5341567937284708],[118,-62,75,-0.534636203199625],[118,-62,76,-0.534485774114728],[118,-62,77,-0.5334059037268162],[118,-62,78,-0.5312022604048252],[118,-62,79,-0.5284954980015755],[118,-61,64,-0.540659885853529],[118,-61,65,-0.5400260500609875],[118,-61,66,-0.5383706800639629],[118,-61,67,-0.5361858643591404],[118,-61,68,-0.5343015473335981],[118,-61,69,-0.533218989148736],[118,-61,70,-0.5328878294676542],[118,-61,71,-0.5327760968357325],[118,-61,72,-0.5329174771904945],[118,-61,73,-0.5334567576646805],[118,-61,74,-0.5341567937284708],[118,-61,75,-0.534636203199625],[118,-61,76,-0.534485774114728],[118,-61,77,-0.5334059037268162],[118,-61,78,-0.5312022604048252],[118,-61,79,-0.5284954980015755],[118,-60,64,-0.540659885853529],[118,-60,65,-0.5400260500609875],[118,-60,66,-0.5383706800639629],[118,-60,67,-0.5361858643591404],[118,-60,68,-0.5343015473335981],[118,-60,69,-0.533218989148736],[118,-60,70,-0.5328878294676542],[118,-60,71,-0.5327760968357325],[118,-60,72,-0.5329174771904945],[118,-60,73,-0.5334567576646805],[118,-60,74,-0.5341567937284708],[118,-60,75,-0.534636203199625],[118,-60,76,-0.534485774114728],[118,-60,77,-0.5334059037268162],[118,-60,78,-0.5312022604048252],[118,-60,79,-0.5284954980015755],[118,-59,64,-0.540659885853529],[118,-59,65,-0.5400260500609875],[118,-59,66,-0.5383706800639629],[118,-59,67,-0.5361858643591404],[118,-59,68,-0.5343015473335981],[118,-59,69,-0.533218989148736],[118,-59,70,-0.5328878294676542],[118,-59,71,-0.5327760968357325],[118,-59,72,-0.5329174771904945],[118,-59,73,-0.5334567576646805],[118,-59,74,-0.5341567937284708],[118,-59,75,-0.534636203199625],[118,-59,76,-0.534485774114728],[118,-59,77,-0.5334059037268162],[118,-59,78,-0.5312022604048252],[118,-59,79,-0.5284954980015755],[118,-58,64,-0.540659885853529],[118,-58,65,-0.5400260500609875],[118,-58,66,-0.5383706800639629],[118,-58,67,-0.5361858643591404],[118,-58,68,-0.5343015473335981],[118,-58,69,-0.533218989148736],[118,-58,70,-0.5328878294676542],[118,-58,71,-0.5327760968357325],[118,-58,72,-0.5329174771904945],[118,-58,73,-0.5334567576646805],[118,-58,74,-0.5341567937284708],[118,-58,75,-0.534636203199625],[118,-58,76,-0.534485774114728],[118,-58,77,-0.5334059037268162],[118,-58,78,-0.5312022604048252],[118,-58,79,-0.5284954980015755],[118,-57,64,-0.540659885853529],[118,-57,65,-0.5400260500609875],[118,-57,66,-0.5383706800639629],[118,-57,67,-0.5361858643591404],[118,-57,68,-0.5343015473335981],[118,-57,69,-0.533218989148736],[118,-57,70,-0.5328878294676542],[118,-57,71,-0.5327760968357325],[118,-57,72,-0.5329174771904945],[118,-57,73,-0.5334567576646805],[118,-57,74,-0.5341567937284708],[118,-57,75,-0.534636203199625],[118,-57,76,-0.534485774114728],[118,-57,77,-0.5334059037268162],[118,-57,78,-0.5312022604048252],[118,-57,79,-0.5284954980015755],[118,-56,64,-0.540659885853529],[118,-56,65,-0.5400260500609875],[118,-56,66,-0.5383706800639629],[118,-56,67,-0.5361858643591404],[118,-56,68,-0.5343015473335981],[118,-56,69,-0.533218989148736],[118,-56,70,-0.5328878294676542],[118,-56,71,-0.5327760968357325],[118,-56,72,-0.5329174771904945],[118,-56,73,-0.5334567576646805],[118,-56,74,-0.5341567937284708],[118,-56,75,-0.534636203199625],[118,-56,76,-0.534485774114728],[118,-56,77,-0.5334059037268162],[118,-56,78,-0.5312022604048252],[118,-56,79,-0.5284954980015755],[118,-55,64,-0.540659885853529],[118,-55,65,-0.5400260500609875],[118,-55,66,-0.5383706800639629],[118,-55,67,-0.5361858643591404],[118,-55,68,-0.5343015473335981],[118,-55,69,-0.533218989148736],[118,-55,70,-0.5328878294676542],[118,-55,71,-0.5327760968357325],[118,-55,72,-0.5329174771904945],[118,-55,73,-0.5334567576646805],[118,-55,74,-0.5341567937284708],[118,-55,75,-0.534636203199625],[118,-55,76,-0.534485774114728],[118,-55,77,-0.5334059037268162],[118,-55,78,-0.5312022604048252],[118,-55,79,-0.5284954980015755],[118,-54,64,-0.540659885853529],[118,-54,65,-0.5400260500609875],[118,-54,66,-0.5383706800639629],[118,-54,67,-0.5361858643591404],[118,-54,68,-0.5343015473335981],[118,-54,69,-0.533218989148736],[118,-54,70,-0.5328878294676542],[118,-54,71,-0.5327760968357325],[118,-54,72,-0.5329174771904945],[118,-54,73,-0.5334567576646805],[118,-54,74,-0.5341567937284708],[118,-54,75,-0.534636203199625],[118,-54,76,-0.534485774114728],[118,-54,77,-0.5334059037268162],[118,-54,78,-0.5312022604048252],[118,-54,79,-0.5284954980015755],[118,-53,64,-0.540659885853529],[118,-53,65,-0.5400260500609875],[118,-53,66,-0.5383706800639629],[118,-53,67,-0.5361858643591404],[118,-53,68,-0.5343015473335981],[118,-53,69,-0.533218989148736],[118,-53,70,-0.5328878294676542],[118,-53,71,-0.5327760968357325],[118,-53,72,-0.5329174771904945],[118,-53,73,-0.5334567576646805],[118,-53,74,-0.5341567937284708],[118,-53,75,-0.534636203199625],[118,-53,76,-0.534485774114728],[118,-53,77,-0.5334059037268162],[118,-53,78,-0.5312022604048252],[118,-53,79,-0.5284954980015755],[118,-52,64,-0.540659885853529],[118,-52,65,-0.5400260500609875],[118,-52,66,-0.5383706800639629],[118,-52,67,-0.5361858643591404],[118,-52,68,-0.5343015473335981],[118,-52,69,-0.533218989148736],[118,-52,70,-0.5328878294676542],[118,-52,71,-0.5327760968357325],[118,-52,72,-0.5329174771904945],[118,-52,73,-0.5334567576646805],[118,-52,74,-0.5341567937284708],[118,-52,75,-0.534636203199625],[118,-52,76,-0.534485774114728],[118,-52,77,-0.5334059037268162],[118,-52,78,-0.5312022604048252],[118,-52,79,-0.5284954980015755],[118,-51,64,-0.540659885853529],[118,-51,65,-0.5400260500609875],[118,-51,66,-0.5383706800639629],[118,-51,67,-0.5361858643591404],[118,-51,68,-0.5343015473335981],[118,-51,69,-0.533218989148736],[118,-51,70,-0.5328878294676542],[118,-51,71,-0.5327760968357325],[118,-51,72,-0.5329174771904945],[118,-51,73,-0.5334567576646805],[118,-51,74,-0.5341567937284708],[118,-51,75,-0.534636203199625],[118,-51,76,-0.534485774114728],[118,-51,77,-0.5334059037268162],[118,-51,78,-0.5312022604048252],[118,-51,79,-0.5284954980015755],[118,-50,64,-0.540659885853529],[118,-50,65,-0.5400260500609875],[118,-50,66,-0.5383706800639629],[118,-50,67,-0.5361858643591404],[118,-50,68,-0.5343015473335981],[118,-50,69,-0.533218989148736],[118,-50,70,-0.5328878294676542],[118,-50,71,-0.5327760968357325],[118,-50,72,-0.5329174771904945],[118,-50,73,-0.5334567576646805],[118,-50,74,-0.5341567937284708],[118,-50,75,-0.534636203199625],[118,-50,76,-0.534485774114728],[118,-50,77,-0.5334059037268162],[118,-50,78,-0.5312022604048252],[118,-50,79,-0.5284954980015755],[118,-49,64,-0.540659885853529],[118,-49,65,-0.5400260500609875],[118,-49,66,-0.5383706800639629],[118,-49,67,-0.5361858643591404],[118,-49,68,-0.5343015473335981],[118,-49,69,-0.533218989148736],[118,-49,70,-0.5328878294676542],[118,-49,71,-0.5327760968357325],[118,-49,72,-0.5329174771904945],[118,-49,73,-0.5334567576646805],[118,-49,74,-0.5341567937284708],[118,-49,75,-0.534636203199625],[118,-49,76,-0.534485774114728],[118,-49,77,-0.5334059037268162],[118,-49,78,-0.5312022604048252],[118,-49,79,-0.5284954980015755],[118,-48,64,-0.540659885853529],[118,-48,65,-0.5400260500609875],[118,-48,66,-0.5383706800639629],[118,-48,67,-0.5361858643591404],[118,-48,68,-0.5343015473335981],[118,-48,69,-0.533218989148736],[118,-48,70,-0.5328878294676542],[118,-48,71,-0.5327760968357325],[118,-48,72,-0.5329174771904945],[118,-48,73,-0.5334567576646805],[118,-48,74,-0.5341567937284708],[118,-48,75,-0.534636203199625],[118,-48,76,-0.534485774114728],[118,-48,77,-0.5334059037268162],[118,-48,78,-0.5312022604048252],[118,-48,79,-0.5284954980015755],[118,-47,64,-0.540659885853529],[118,-47,65,-0.5400260500609875],[118,-47,66,-0.5383706800639629],[118,-47,67,-0.5361858643591404],[118,-47,68,-0.5343015473335981],[118,-47,69,-0.533218989148736],[118,-47,70,-0.5328878294676542],[118,-47,71,-0.5327760968357325],[118,-47,72,-0.5329174771904945],[118,-47,73,-0.5334567576646805],[118,-47,74,-0.5341567937284708],[118,-47,75,-0.534636203199625],[118,-47,76,-0.534485774114728],[118,-47,77,-0.5334059037268162],[118,-47,78,-0.5312022604048252],[118,-47,79,-0.5284954980015755],[118,-46,64,-0.540659885853529],[118,-46,65,-0.5400260500609875],[118,-46,66,-0.5383706800639629],[118,-46,67,-0.5361858643591404],[118,-46,68,-0.5343015473335981],[118,-46,69,-0.533218989148736],[118,-46,70,-0.5328878294676542],[118,-46,71,-0.5327760968357325],[118,-46,72,-0.5329174771904945],[118,-46,73,-0.5334567576646805],[118,-46,74,-0.5341567937284708],[118,-46,75,-0.534636203199625],[118,-46,76,-0.534485774114728],[118,-46,77,-0.5334059037268162],[118,-46,78,-0.5312022604048252],[118,-46,79,-0.5284954980015755],[118,-45,64,-0.540659885853529],[118,-45,65,-0.5400260500609875],[118,-45,66,-0.5383706800639629],[118,-45,67,-0.5361858643591404],[118,-45,68,-0.5343015473335981],[118,-45,69,-0.533218989148736],[118,-45,70,-0.5328878294676542],[118,-45,71,-0.5327760968357325],[118,-45,72,-0.5329174771904945],[118,-45,73,-0.5334567576646805],[118,-45,74,-0.5341567937284708],[118,-45,75,-0.534636203199625],[118,-45,76,-0.534485774114728],[118,-45,77,-0.5334059037268162],[118,-45,78,-0.5312022604048252],[118,-45,79,-0.5284954980015755],[118,-44,64,-0.540659885853529],[118,-44,65,-0.5400260500609875],[118,-44,66,-0.5383706800639629],[118,-44,67,-0.5361858643591404],[118,-44,68,-0.5343015473335981],[118,-44,69,-0.533218989148736],[118,-44,70,-0.5328878294676542],[118,-44,71,-0.5327760968357325],[118,-44,72,-0.5329174771904945],[118,-44,73,-0.5334567576646805],[118,-44,74,-0.5341567937284708],[118,-44,75,-0.534636203199625],[118,-44,76,-0.534485774114728],[118,-44,77,-0.5334059037268162],[118,-44,78,-0.5312022604048252],[118,-44,79,-0.5284954980015755],[118,-43,64,-0.540659885853529],[118,-43,65,-0.5400260500609875],[118,-43,66,-0.5383706800639629],[118,-43,67,-0.5361858643591404],[118,-43,68,-0.5343015473335981],[118,-43,69,-0.533218989148736],[118,-43,70,-0.5328878294676542],[118,-43,71,-0.5327760968357325],[118,-43,72,-0.5329174771904945],[118,-43,73,-0.5334567576646805],[118,-43,74,-0.5341567937284708],[118,-43,75,-0.534636203199625],[118,-43,76,-0.534485774114728],[118,-43,77,-0.5334059037268162],[118,-43,78,-0.5312022604048252],[118,-43,79,-0.5284954980015755],[118,-42,64,-0.540659885853529],[118,-42,65,-0.5400260500609875],[118,-42,66,-0.5383706800639629],[118,-42,67,-0.5361858643591404],[118,-42,68,-0.5343015473335981],[118,-42,69,-0.533218989148736],[118,-42,70,-0.5328878294676542],[118,-42,71,-0.5327760968357325],[118,-42,72,-0.5329174771904945],[118,-42,73,-0.5334567576646805],[118,-42,74,-0.5341567937284708],[118,-42,75,-0.534636203199625],[118,-42,76,-0.534485774114728],[118,-42,77,-0.5334059037268162],[118,-42,78,-0.5312022604048252],[118,-42,79,-0.5284954980015755],[118,-41,64,-0.540659885853529],[118,-41,65,-0.5400260500609875],[118,-41,66,-0.5383706800639629],[118,-41,67,-0.5361858643591404],[118,-41,68,-0.5343015473335981],[118,-41,69,-0.533218989148736],[118,-41,70,-0.5328878294676542],[118,-41,71,-0.5327760968357325],[118,-41,72,-0.5329174771904945],[118,-41,73,-0.5334567576646805],[118,-41,74,-0.5341567937284708],[118,-41,75,-0.534636203199625],[118,-41,76,-0.534485774114728],[118,-41,77,-0.5334059037268162],[118,-41,78,-0.5312022604048252],[118,-41,79,-0.5284954980015755],[118,-40,64,-0.540659885853529],[118,-40,65,-0.5400260500609875],[118,-40,66,-0.5383706800639629],[118,-40,67,-0.5361858643591404],[118,-40,68,-0.5343015473335981],[118,-40,69,-0.533218989148736],[118,-40,70,-0.5328878294676542],[118,-40,71,-0.5327760968357325],[118,-40,72,-0.5329174771904945],[118,-40,73,-0.5334567576646805],[118,-40,74,-0.5341567937284708],[118,-40,75,-0.534636203199625],[118,-40,76,-0.534485774114728],[118,-40,77,-0.5334059037268162],[118,-40,78,-0.5312022604048252],[118,-40,79,-0.5284954980015755],[118,-39,64,-0.540659885853529],[118,-39,65,-0.5400260500609875],[118,-39,66,-0.5383706800639629],[118,-39,67,-0.5361858643591404],[118,-39,68,-0.5343015473335981],[118,-39,69,-0.533218989148736],[118,-39,70,-0.5328878294676542],[118,-39,71,-0.5327760968357325],[118,-39,72,-0.5329174771904945],[118,-39,73,-0.5334567576646805],[118,-39,74,-0.5341567937284708],[118,-39,75,-0.534636203199625],[118,-39,76,-0.534485774114728],[118,-39,77,-0.5334059037268162],[118,-39,78,-0.5312022604048252],[118,-39,79,-0.5284954980015755],[118,-38,64,-0.540659885853529],[118,-38,65,-0.5400260500609875],[118,-38,66,-0.5383706800639629],[118,-38,67,-0.5361858643591404],[118,-38,68,-0.5343015473335981],[118,-38,69,-0.533218989148736],[118,-38,70,-0.5328878294676542],[118,-38,71,-0.5327760968357325],[118,-38,72,-0.5329174771904945],[118,-38,73,-0.5334567576646805],[118,-38,74,-0.5341567937284708],[118,-38,75,-0.534636203199625],[118,-38,76,-0.534485774114728],[118,-38,77,-0.5334059037268162],[118,-38,78,-0.5312022604048252],[118,-38,79,-0.5284954980015755],[118,-37,64,-0.540659885853529],[118,-37,65,-0.5400260500609875],[118,-37,66,-0.5383706800639629],[118,-37,67,-0.5361858643591404],[118,-37,68,-0.5343015473335981],[118,-37,69,-0.533218989148736],[118,-37,70,-0.5328878294676542],[118,-37,71,-0.5327760968357325],[118,-37,72,-0.5329174771904945],[118,-37,73,-0.5334567576646805],[118,-37,74,-0.5341567937284708],[118,-37,75,-0.534636203199625],[118,-37,76,-0.534485774114728],[118,-37,77,-0.5334059037268162],[118,-37,78,-0.5312022604048252],[118,-37,79,-0.5284954980015755],[118,-36,64,-0.540659885853529],[118,-36,65,-0.5400260500609875],[118,-36,66,-0.5383706800639629],[118,-36,67,-0.5361858643591404],[118,-36,68,-0.5343015473335981],[118,-36,69,-0.533218989148736],[118,-36,70,-0.5328878294676542],[118,-36,71,-0.5327760968357325],[118,-36,72,-0.5329174771904945],[118,-36,73,-0.5334567576646805],[118,-36,74,-0.5341567937284708],[118,-36,75,-0.534636203199625],[118,-36,76,-0.534485774114728],[118,-36,77,-0.5334059037268162],[118,-36,78,-0.5312022604048252],[118,-36,79,-0.5284954980015755],[118,-35,64,-0.540659885853529],[118,-35,65,-0.5400260500609875],[118,-35,66,-0.5383706800639629],[118,-35,67,-0.5361858643591404],[118,-35,68,-0.5343015473335981],[118,-35,69,-0.533218989148736],[118,-35,70,-0.5328878294676542],[118,-35,71,-0.5327760968357325],[118,-35,72,-0.5329174771904945],[118,-35,73,-0.5334567576646805],[118,-35,74,-0.5341567937284708],[118,-35,75,-0.534636203199625],[118,-35,76,-0.534485774114728],[118,-35,77,-0.5334059037268162],[118,-35,78,-0.5312022604048252],[118,-35,79,-0.5284954980015755],[118,-34,64,-0.540659885853529],[118,-34,65,-0.5400260500609875],[118,-34,66,-0.5383706800639629],[118,-34,67,-0.5361858643591404],[118,-34,68,-0.5343015473335981],[118,-34,69,-0.533218989148736],[118,-34,70,-0.5328878294676542],[118,-34,71,-0.5327760968357325],[118,-34,72,-0.5329174771904945],[118,-34,73,-0.5334567576646805],[118,-34,74,-0.5341567937284708],[118,-34,75,-0.534636203199625],[118,-34,76,-0.534485774114728],[118,-34,77,-0.5334059037268162],[118,-34,78,-0.5312022604048252],[118,-34,79,-0.5284954980015755],[118,-33,64,-0.540659885853529],[118,-33,65,-0.5400260500609875],[118,-33,66,-0.5383706800639629],[118,-33,67,-0.5361858643591404],[118,-33,68,-0.5343015473335981],[118,-33,69,-0.533218989148736],[118,-33,70,-0.5328878294676542],[118,-33,71,-0.5327760968357325],[118,-33,72,-0.5329174771904945],[118,-33,73,-0.5334567576646805],[118,-33,74,-0.5341567937284708],[118,-33,75,-0.534636203199625],[118,-33,76,-0.534485774114728],[118,-33,77,-0.5334059037268162],[118,-33,78,-0.5312022604048252],[118,-33,79,-0.5284954980015755],[118,-32,64,-0.540659885853529],[118,-32,65,-0.5400260500609875],[118,-32,66,-0.5383706800639629],[118,-32,67,-0.5361858643591404],[118,-32,68,-0.5343015473335981],[118,-32,69,-0.533218989148736],[118,-32,70,-0.5328878294676542],[118,-32,71,-0.5327760968357325],[118,-32,72,-0.5329174771904945],[118,-32,73,-0.5334567576646805],[118,-32,74,-0.5341567937284708],[118,-32,75,-0.534636203199625],[118,-32,76,-0.534485774114728],[118,-32,77,-0.5334059037268162],[118,-32,78,-0.5312022604048252],[118,-32,79,-0.5284954980015755],[118,-31,64,-0.540659885853529],[118,-31,65,-0.5400260500609875],[118,-31,66,-0.5383706800639629],[118,-31,67,-0.5361858643591404],[118,-31,68,-0.5343015473335981],[118,-31,69,-0.533218989148736],[118,-31,70,-0.5328878294676542],[118,-31,71,-0.5327760968357325],[118,-31,72,-0.5329174771904945],[118,-31,73,-0.5334567576646805],[118,-31,74,-0.5341567937284708],[118,-31,75,-0.534636203199625],[118,-31,76,-0.534485774114728],[118,-31,77,-0.5334059037268162],[118,-31,78,-0.5312022604048252],[118,-31,79,-0.5284954980015755],[118,-30,64,-0.540659885853529],[118,-30,65,-0.5400260500609875],[118,-30,66,-0.5383706800639629],[118,-30,67,-0.5361858643591404],[118,-30,68,-0.5343015473335981],[118,-30,69,-0.533218989148736],[118,-30,70,-0.5328878294676542],[118,-30,71,-0.5327760968357325],[118,-30,72,-0.5329174771904945],[118,-30,73,-0.5334567576646805],[118,-30,74,-0.5341567937284708],[118,-30,75,-0.534636203199625],[118,-30,76,-0.534485774114728],[118,-30,77,-0.5334059037268162],[118,-30,78,-0.5312022604048252],[118,-30,79,-0.5284954980015755],[118,-29,64,-0.540659885853529],[118,-29,65,-0.5400260500609875],[118,-29,66,-0.5383706800639629],[118,-29,67,-0.5361858643591404],[118,-29,68,-0.5343015473335981],[118,-29,69,-0.533218989148736],[118,-29,70,-0.5328878294676542],[118,-29,71,-0.5327760968357325],[118,-29,72,-0.5329174771904945],[118,-29,73,-0.5334567576646805],[118,-29,74,-0.5341567937284708],[118,-29,75,-0.534636203199625],[118,-29,76,-0.534485774114728],[118,-29,77,-0.5334059037268162],[118,-29,78,-0.5312022604048252],[118,-29,79,-0.5284954980015755],[118,-28,64,-0.540659885853529],[118,-28,65,-0.5400260500609875],[118,-28,66,-0.5383706800639629],[118,-28,67,-0.5361858643591404],[118,-28,68,-0.5343015473335981],[118,-28,69,-0.533218989148736],[118,-28,70,-0.5328878294676542],[118,-28,71,-0.5327760968357325],[118,-28,72,-0.5329174771904945],[118,-28,73,-0.5334567576646805],[118,-28,74,-0.5341567937284708],[118,-28,75,-0.534636203199625],[118,-28,76,-0.534485774114728],[118,-28,77,-0.5334059037268162],[118,-28,78,-0.5312022604048252],[118,-28,79,-0.5284954980015755],[118,-27,64,-0.540659885853529],[118,-27,65,-0.5400260500609875],[118,-27,66,-0.5383706800639629],[118,-27,67,-0.5361858643591404],[118,-27,68,-0.5343015473335981],[118,-27,69,-0.533218989148736],[118,-27,70,-0.5328878294676542],[118,-27,71,-0.5327760968357325],[118,-27,72,-0.5329174771904945],[118,-27,73,-0.5334567576646805],[118,-27,74,-0.5341567937284708],[118,-27,75,-0.534636203199625],[118,-27,76,-0.534485774114728],[118,-27,77,-0.5334059037268162],[118,-27,78,-0.5312022604048252],[118,-27,79,-0.5284954980015755],[118,-26,64,-0.540659885853529],[118,-26,65,-0.5400260500609875],[118,-26,66,-0.5383706800639629],[118,-26,67,-0.5361858643591404],[118,-26,68,-0.5343015473335981],[118,-26,69,-0.533218989148736],[118,-26,70,-0.5328878294676542],[118,-26,71,-0.5327760968357325],[118,-26,72,-0.5329174771904945],[118,-26,73,-0.5334567576646805],[118,-26,74,-0.5341567937284708],[118,-26,75,-0.534636203199625],[118,-26,76,-0.534485774114728],[118,-26,77,-0.5334059037268162],[118,-26,78,-0.5312022604048252],[118,-26,79,-0.5284954980015755],[118,-25,64,-0.540659885853529],[118,-25,65,-0.5400260500609875],[118,-25,66,-0.5383706800639629],[118,-25,67,-0.5361858643591404],[118,-25,68,-0.5343015473335981],[118,-25,69,-0.533218989148736],[118,-25,70,-0.5328878294676542],[118,-25,71,-0.5327760968357325],[118,-25,72,-0.5329174771904945],[118,-25,73,-0.5334567576646805],[118,-25,74,-0.5341567937284708],[118,-25,75,-0.534636203199625],[118,-25,76,-0.534485774114728],[118,-25,77,-0.5334059037268162],[118,-25,78,-0.5312022604048252],[118,-25,79,-0.5284954980015755],[118,-24,64,-0.540659885853529],[118,-24,65,-0.5400260500609875],[118,-24,66,-0.5383706800639629],[118,-24,67,-0.5361858643591404],[118,-24,68,-0.5343015473335981],[118,-24,69,-0.533218989148736],[118,-24,70,-0.5328878294676542],[118,-24,71,-0.5327760968357325],[118,-24,72,-0.5329174771904945],[118,-24,73,-0.5334567576646805],[118,-24,74,-0.5341567937284708],[118,-24,75,-0.534636203199625],[118,-24,76,-0.534485774114728],[118,-24,77,-0.5334059037268162],[118,-24,78,-0.5312022604048252],[118,-24,79,-0.5284954980015755],[118,-23,64,-0.540659885853529],[118,-23,65,-0.5400260500609875],[118,-23,66,-0.5383706800639629],[118,-23,67,-0.5361858643591404],[118,-23,68,-0.5343015473335981],[118,-23,69,-0.533218989148736],[118,-23,70,-0.5328878294676542],[118,-23,71,-0.5327760968357325],[118,-23,72,-0.5329174771904945],[118,-23,73,-0.5334567576646805],[118,-23,74,-0.5341567937284708],[118,-23,75,-0.534636203199625],[118,-23,76,-0.534485774114728],[118,-23,77,-0.5334059037268162],[118,-23,78,-0.5312022604048252],[118,-23,79,-0.5284954980015755],[118,-22,64,-0.540659885853529],[118,-22,65,-0.5400260500609875],[118,-22,66,-0.5383706800639629],[118,-22,67,-0.5361858643591404],[118,-22,68,-0.5343015473335981],[118,-22,69,-0.533218989148736],[118,-22,70,-0.5328878294676542],[118,-22,71,-0.5327760968357325],[118,-22,72,-0.5329174771904945],[118,-22,73,-0.5334567576646805],[118,-22,74,-0.5341567937284708],[118,-22,75,-0.534636203199625],[118,-22,76,-0.534485774114728],[118,-22,77,-0.5334059037268162],[118,-22,78,-0.5312022604048252],[118,-22,79,-0.5284954980015755],[118,-21,64,-0.540659885853529],[118,-21,65,-0.5400260500609875],[118,-21,66,-0.5383706800639629],[118,-21,67,-0.5361858643591404],[118,-21,68,-0.5343015473335981],[118,-21,69,-0.533218989148736],[118,-21,70,-0.5328878294676542],[118,-21,71,-0.5327760968357325],[118,-21,72,-0.5329174771904945],[118,-21,73,-0.5334567576646805],[118,-21,74,-0.5341567937284708],[118,-21,75,-0.534636203199625],[118,-21,76,-0.534485774114728],[118,-21,77,-0.5334059037268162],[118,-21,78,-0.5312022604048252],[118,-21,79,-0.5284954980015755],[118,-20,64,-0.540659885853529],[118,-20,65,-0.5400260500609875],[118,-20,66,-0.5383706800639629],[118,-20,67,-0.5361858643591404],[118,-20,68,-0.5343015473335981],[118,-20,69,-0.533218989148736],[118,-20,70,-0.5328878294676542],[118,-20,71,-0.5327760968357325],[118,-20,72,-0.5329174771904945],[118,-20,73,-0.5334567576646805],[118,-20,74,-0.5341567937284708],[118,-20,75,-0.534636203199625],[118,-20,76,-0.534485774114728],[118,-20,77,-0.5334059037268162],[118,-20,78,-0.5312022604048252],[118,-20,79,-0.5284954980015755],[118,-19,64,-0.540659885853529],[118,-19,65,-0.5400260500609875],[118,-19,66,-0.5383706800639629],[118,-19,67,-0.5361858643591404],[118,-19,68,-0.5343015473335981],[118,-19,69,-0.533218989148736],[118,-19,70,-0.5328878294676542],[118,-19,71,-0.5327760968357325],[118,-19,72,-0.5329174771904945],[118,-19,73,-0.5334567576646805],[118,-19,74,-0.5341567937284708],[118,-19,75,-0.534636203199625],[118,-19,76,-0.534485774114728],[118,-19,77,-0.5334059037268162],[118,-19,78,-0.5312022604048252],[118,-19,79,-0.5284954980015755],[118,-18,64,-0.540659885853529],[118,-18,65,-0.5400260500609875],[118,-18,66,-0.5383706800639629],[118,-18,67,-0.5361858643591404],[118,-18,68,-0.5343015473335981],[118,-18,69,-0.533218989148736],[118,-18,70,-0.5328878294676542],[118,-18,71,-0.5327760968357325],[118,-18,72,-0.5329174771904945],[118,-18,73,-0.5334567576646805],[118,-18,74,-0.5341567937284708],[118,-18,75,-0.534636203199625],[118,-18,76,-0.534485774114728],[118,-18,77,-0.5334059037268162],[118,-18,78,-0.5312022604048252],[118,-18,79,-0.5284954980015755],[118,-17,64,-0.540659885853529],[118,-17,65,-0.5400260500609875],[118,-17,66,-0.5383706800639629],[118,-17,67,-0.5361858643591404],[118,-17,68,-0.5343015473335981],[118,-17,69,-0.533218989148736],[118,-17,70,-0.5328878294676542],[118,-17,71,-0.5327760968357325],[118,-17,72,-0.5329174771904945],[118,-17,73,-0.5334567576646805],[118,-17,74,-0.5341567937284708],[118,-17,75,-0.534636203199625],[118,-17,76,-0.534485774114728],[118,-17,77,-0.5334059037268162],[118,-17,78,-0.5312022604048252],[118,-17,79,-0.5284954980015755],[118,-16,64,-0.540659885853529],[118,-16,65,-0.5400260500609875],[118,-16,66,-0.5383706800639629],[118,-16,67,-0.5361858643591404],[118,-16,68,-0.5343015473335981],[118,-16,69,-0.533218989148736],[118,-16,70,-0.5328878294676542],[118,-16,71,-0.5327760968357325],[118,-16,72,-0.5329174771904945],[118,-16,73,-0.5334567576646805],[118,-16,74,-0.5341567937284708],[118,-16,75,-0.534636203199625],[118,-16,76,-0.534485774114728],[118,-16,77,-0.5334059037268162],[118,-16,78,-0.5312022604048252],[118,-16,79,-0.5284954980015755],[118,-15,64,-0.540659885853529],[118,-15,65,-0.5400260500609875],[118,-15,66,-0.5383706800639629],[118,-15,67,-0.5361858643591404],[118,-15,68,-0.5343015473335981],[118,-15,69,-0.533218989148736],[118,-15,70,-0.5328878294676542],[118,-15,71,-0.5327760968357325],[118,-15,72,-0.5329174771904945],[118,-15,73,-0.5334567576646805],[118,-15,74,-0.5341567937284708],[118,-15,75,-0.534636203199625],[118,-15,76,-0.534485774114728],[118,-15,77,-0.5334059037268162],[118,-15,78,-0.5312022604048252],[118,-15,79,-0.5284954980015755],[118,-14,64,-0.540659885853529],[118,-14,65,-0.5400260500609875],[118,-14,66,-0.5383706800639629],[118,-14,67,-0.5361858643591404],[118,-14,68,-0.5343015473335981],[118,-14,69,-0.533218989148736],[118,-14,70,-0.5328878294676542],[118,-14,71,-0.5327760968357325],[118,-14,72,-0.5329174771904945],[118,-14,73,-0.5334567576646805],[118,-14,74,-0.5341567937284708],[118,-14,75,-0.534636203199625],[118,-14,76,-0.534485774114728],[118,-14,77,-0.5334059037268162],[118,-14,78,-0.5312022604048252],[118,-14,79,-0.5284954980015755],[118,-13,64,-0.540659885853529],[118,-13,65,-0.5400260500609875],[118,-13,66,-0.5383706800639629],[118,-13,67,-0.5361858643591404],[118,-13,68,-0.5343015473335981],[118,-13,69,-0.533218989148736],[118,-13,70,-0.5328878294676542],[118,-13,71,-0.5327760968357325],[118,-13,72,-0.5329174771904945],[118,-13,73,-0.5334567576646805],[118,-13,74,-0.5341567937284708],[118,-13,75,-0.534636203199625],[118,-13,76,-0.534485774114728],[118,-13,77,-0.5334059037268162],[118,-13,78,-0.5312022604048252],[118,-13,79,-0.5284954980015755],[118,-12,64,-0.540659885853529],[118,-12,65,-0.5400260500609875],[118,-12,66,-0.5383706800639629],[118,-12,67,-0.5361858643591404],[118,-12,68,-0.5343015473335981],[118,-12,69,-0.533218989148736],[118,-12,70,-0.5328878294676542],[118,-12,71,-0.5327760968357325],[118,-12,72,-0.5329174771904945],[118,-12,73,-0.5334567576646805],[118,-12,74,-0.5341567937284708],[118,-12,75,-0.534636203199625],[118,-12,76,-0.534485774114728],[118,-12,77,-0.5334059037268162],[118,-12,78,-0.5312022604048252],[118,-12,79,-0.5284954980015755],[118,-11,64,-0.540659885853529],[118,-11,65,-0.5400260500609875],[118,-11,66,-0.5383706800639629],[118,-11,67,-0.5361858643591404],[118,-11,68,-0.5343015473335981],[118,-11,69,-0.533218989148736],[118,-11,70,-0.5328878294676542],[118,-11,71,-0.5327760968357325],[118,-11,72,-0.5329174771904945],[118,-11,73,-0.5334567576646805],[118,-11,74,-0.5341567937284708],[118,-11,75,-0.534636203199625],[118,-11,76,-0.534485774114728],[118,-11,77,-0.5334059037268162],[118,-11,78,-0.5312022604048252],[118,-11,79,-0.5284954980015755],[118,-10,64,-0.540659885853529],[118,-10,65,-0.5400260500609875],[118,-10,66,-0.5383706800639629],[118,-10,67,-0.5361858643591404],[118,-10,68,-0.5343015473335981],[118,-10,69,-0.533218989148736],[118,-10,70,-0.5328878294676542],[118,-10,71,-0.5327760968357325],[118,-10,72,-0.5329174771904945],[118,-10,73,-0.5334567576646805],[118,-10,74,-0.5341567937284708],[118,-10,75,-0.534636203199625],[118,-10,76,-0.534485774114728],[118,-10,77,-0.5334059037268162],[118,-10,78,-0.5312022604048252],[118,-10,79,-0.5284954980015755],[118,-9,64,-0.540659885853529],[118,-9,65,-0.5400260500609875],[118,-9,66,-0.5383706800639629],[118,-9,67,-0.5361858643591404],[118,-9,68,-0.5343015473335981],[118,-9,69,-0.533218989148736],[118,-9,70,-0.5328878294676542],[118,-9,71,-0.5327760968357325],[118,-9,72,-0.5329174771904945],[118,-9,73,-0.5334567576646805],[118,-9,74,-0.5341567937284708],[118,-9,75,-0.534636203199625],[118,-9,76,-0.534485774114728],[118,-9,77,-0.5334059037268162],[118,-9,78,-0.5312022604048252],[118,-9,79,-0.5284954980015755],[118,-8,64,-0.540659885853529],[118,-8,65,-0.5400260500609875],[118,-8,66,-0.5383706800639629],[118,-8,67,-0.5361858643591404],[118,-8,68,-0.5343015473335981],[118,-8,69,-0.533218989148736],[118,-8,70,-0.5328878294676542],[118,-8,71,-0.5327760968357325],[118,-8,72,-0.5329174771904945],[118,-8,73,-0.5334567576646805],[118,-8,74,-0.5341567937284708],[118,-8,75,-0.534636203199625],[118,-8,76,-0.534485774114728],[118,-8,77,-0.5334059037268162],[118,-8,78,-0.5312022604048252],[118,-8,79,-0.5284954980015755],[118,-7,64,-0.540659885853529],[118,-7,65,-0.5400260500609875],[118,-7,66,-0.5383706800639629],[118,-7,67,-0.5361858643591404],[118,-7,68,-0.5343015473335981],[118,-7,69,-0.533218989148736],[118,-7,70,-0.5328878294676542],[118,-7,71,-0.5327760968357325],[118,-7,72,-0.5329174771904945],[118,-7,73,-0.5334567576646805],[118,-7,74,-0.5341567937284708],[118,-7,75,-0.534636203199625],[118,-7,76,-0.534485774114728],[118,-7,77,-0.5334059037268162],[118,-7,78,-0.5312022604048252],[118,-7,79,-0.5284954980015755],[118,-6,64,-0.540659885853529],[118,-6,65,-0.5400260500609875],[118,-6,66,-0.5383706800639629],[118,-6,67,-0.5361858643591404],[118,-6,68,-0.5343015473335981],[118,-6,69,-0.533218989148736],[118,-6,70,-0.5328878294676542],[118,-6,71,-0.5327760968357325],[118,-6,72,-0.5329174771904945],[118,-6,73,-0.5334567576646805],[118,-6,74,-0.5341567937284708],[118,-6,75,-0.534636203199625],[118,-6,76,-0.534485774114728],[118,-6,77,-0.5334059037268162],[118,-6,78,-0.5312022604048252],[118,-6,79,-0.5284954980015755],[118,-5,64,-0.540659885853529],[118,-5,65,-0.5400260500609875],[118,-5,66,-0.5383706800639629],[118,-5,67,-0.5361858643591404],[118,-5,68,-0.5343015473335981],[118,-5,69,-0.533218989148736],[118,-5,70,-0.5328878294676542],[118,-5,71,-0.5327760968357325],[118,-5,72,-0.5329174771904945],[118,-5,73,-0.5334567576646805],[118,-5,74,-0.5341567937284708],[118,-5,75,-0.534636203199625],[118,-5,76,-0.534485774114728],[118,-5,77,-0.5334059037268162],[118,-5,78,-0.5312022604048252],[118,-5,79,-0.5284954980015755],[118,-4,64,-0.540659885853529],[118,-4,65,-0.5400260500609875],[118,-4,66,-0.5383706800639629],[118,-4,67,-0.5361858643591404],[118,-4,68,-0.5343015473335981],[118,-4,69,-0.533218989148736],[118,-4,70,-0.5328878294676542],[118,-4,71,-0.5327760968357325],[118,-4,72,-0.5329174771904945],[118,-4,73,-0.5334567576646805],[118,-4,74,-0.5341567937284708],[118,-4,75,-0.534636203199625],[118,-4,76,-0.534485774114728],[118,-4,77,-0.5334059037268162],[118,-4,78,-0.5312022604048252],[118,-4,79,-0.5284954980015755],[118,-3,64,-0.540659885853529],[118,-3,65,-0.5400260500609875],[118,-3,66,-0.5383706800639629],[118,-3,67,-0.5361858643591404],[118,-3,68,-0.5343015473335981],[118,-3,69,-0.533218989148736],[118,-3,70,-0.5328878294676542],[118,-3,71,-0.5327760968357325],[118,-3,72,-0.5329174771904945],[118,-3,73,-0.5334567576646805],[118,-3,74,-0.5341567937284708],[118,-3,75,-0.534636203199625],[118,-3,76,-0.534485774114728],[118,-3,77,-0.5334059037268162],[118,-3,78,-0.5312022604048252],[118,-3,79,-0.5284954980015755],[118,-2,64,-0.540659885853529],[118,-2,65,-0.5400260500609875],[118,-2,66,-0.5383706800639629],[118,-2,67,-0.5361858643591404],[118,-2,68,-0.5343015473335981],[118,-2,69,-0.533218989148736],[118,-2,70,-0.5328878294676542],[118,-2,71,-0.5327760968357325],[118,-2,72,-0.5329174771904945],[118,-2,73,-0.5334567576646805],[118,-2,74,-0.5341567937284708],[118,-2,75,-0.534636203199625],[118,-2,76,-0.534485774114728],[118,-2,77,-0.5334059037268162],[118,-2,78,-0.5312022604048252],[118,-2,79,-0.5284954980015755],[118,-1,64,-0.540659885853529],[118,-1,65,-0.5400260500609875],[118,-1,66,-0.5383706800639629],[118,-1,67,-0.5361858643591404],[118,-1,68,-0.5343015473335981],[118,-1,69,-0.533218989148736],[118,-1,70,-0.5328878294676542],[118,-1,71,-0.5327760968357325],[118,-1,72,-0.5329174771904945],[118,-1,73,-0.5334567576646805],[118,-1,74,-0.5341567937284708],[118,-1,75,-0.534636203199625],[118,-1,76,-0.534485774114728],[118,-1,77,-0.5334059037268162],[118,-1,78,-0.5312022604048252],[118,-1,79,-0.5284954980015755],[118,0,64,-0.540659885853529],[118,0,65,-0.5400260500609875],[118,0,66,-0.5383706800639629],[118,0,67,-0.5361858643591404],[118,0,68,-0.5343015473335981],[118,0,69,-0.533218989148736],[118,0,70,-0.5328878294676542],[118,0,71,-0.5327760968357325],[118,0,72,-0.5329174771904945],[118,0,73,-0.5334567576646805],[118,0,74,-0.5341567937284708],[118,0,75,-0.534636203199625],[118,0,76,-0.534485774114728],[118,0,77,-0.5334059037268162],[118,0,78,-0.5312022604048252],[118,0,79,-0.5284954980015755],[118,1,64,-0.540659885853529],[118,1,65,-0.5400260500609875],[118,1,66,-0.5383706800639629],[118,1,67,-0.5361858643591404],[118,1,68,-0.5343015473335981],[118,1,69,-0.533218989148736],[118,1,70,-0.5328878294676542],[118,1,71,-0.5327760968357325],[118,1,72,-0.5329174771904945],[118,1,73,-0.5334567576646805],[118,1,74,-0.5341567937284708],[118,1,75,-0.534636203199625],[118,1,76,-0.534485774114728],[118,1,77,-0.5334059037268162],[118,1,78,-0.5312022604048252],[118,1,79,-0.5284954980015755],[118,2,64,-0.540659885853529],[118,2,65,-0.5400260500609875],[118,2,66,-0.5383706800639629],[118,2,67,-0.5361858643591404],[118,2,68,-0.5343015473335981],[118,2,69,-0.533218989148736],[118,2,70,-0.5328878294676542],[118,2,71,-0.5327760968357325],[118,2,72,-0.5329174771904945],[118,2,73,-0.5334567576646805],[118,2,74,-0.5341567937284708],[118,2,75,-0.534636203199625],[118,2,76,-0.534485774114728],[118,2,77,-0.5334059037268162],[118,2,78,-0.5312022604048252],[118,2,79,-0.5284954980015755],[118,3,64,-0.540659885853529],[118,3,65,-0.5400260500609875],[118,3,66,-0.5383706800639629],[118,3,67,-0.5361858643591404],[118,3,68,-0.5343015473335981],[118,3,69,-0.533218989148736],[118,3,70,-0.5328878294676542],[118,3,71,-0.5327760968357325],[118,3,72,-0.5329174771904945],[118,3,73,-0.5334567576646805],[118,3,74,-0.5341567937284708],[118,3,75,-0.534636203199625],[118,3,76,-0.534485774114728],[118,3,77,-0.5334059037268162],[118,3,78,-0.5312022604048252],[118,3,79,-0.5284954980015755],[118,4,64,-0.540659885853529],[118,4,65,-0.5400260500609875],[118,4,66,-0.5383706800639629],[118,4,67,-0.5361858643591404],[118,4,68,-0.5343015473335981],[118,4,69,-0.533218989148736],[118,4,70,-0.5328878294676542],[118,4,71,-0.5327760968357325],[118,4,72,-0.5329174771904945],[118,4,73,-0.5334567576646805],[118,4,74,-0.5341567937284708],[118,4,75,-0.534636203199625],[118,4,76,-0.534485774114728],[118,4,77,-0.5334059037268162],[118,4,78,-0.5312022604048252],[118,4,79,-0.5284954980015755],[118,5,64,-0.540659885853529],[118,5,65,-0.5400260500609875],[118,5,66,-0.5383706800639629],[118,5,67,-0.5361858643591404],[118,5,68,-0.5343015473335981],[118,5,69,-0.533218989148736],[118,5,70,-0.5328878294676542],[118,5,71,-0.5327760968357325],[118,5,72,-0.5329174771904945],[118,5,73,-0.5334567576646805],[118,5,74,-0.5341567937284708],[118,5,75,-0.534636203199625],[118,5,76,-0.534485774114728],[118,5,77,-0.5334059037268162],[118,5,78,-0.5312022604048252],[118,5,79,-0.5284954980015755],[118,6,64,-0.540659885853529],[118,6,65,-0.5400260500609875],[118,6,66,-0.5383706800639629],[118,6,67,-0.5361858643591404],[118,6,68,-0.5343015473335981],[118,6,69,-0.533218989148736],[118,6,70,-0.5328878294676542],[118,6,71,-0.5327760968357325],[118,6,72,-0.5329174771904945],[118,6,73,-0.5334567576646805],[118,6,74,-0.5341567937284708],[118,6,75,-0.534636203199625],[118,6,76,-0.534485774114728],[118,6,77,-0.5334059037268162],[118,6,78,-0.5312022604048252],[118,6,79,-0.5284954980015755],[118,7,64,-0.540659885853529],[118,7,65,-0.5400260500609875],[118,7,66,-0.5383706800639629],[118,7,67,-0.5361858643591404],[118,7,68,-0.5343015473335981],[118,7,69,-0.533218989148736],[118,7,70,-0.5328878294676542],[118,7,71,-0.5327760968357325],[118,7,72,-0.5329174771904945],[118,7,73,-0.5334567576646805],[118,7,74,-0.5341567937284708],[118,7,75,-0.534636203199625],[118,7,76,-0.534485774114728],[118,7,77,-0.5334059037268162],[118,7,78,-0.5312022604048252],[118,7,79,-0.5284954980015755],[118,8,64,-0.540659885853529],[118,8,65,-0.5400260500609875],[118,8,66,-0.5383706800639629],[118,8,67,-0.5361858643591404],[118,8,68,-0.5343015473335981],[118,8,69,-0.533218989148736],[118,8,70,-0.5328878294676542],[118,8,71,-0.5327760968357325],[118,8,72,-0.5329174771904945],[118,8,73,-0.5334567576646805],[118,8,74,-0.5341567937284708],[118,8,75,-0.534636203199625],[118,8,76,-0.534485774114728],[118,8,77,-0.5334059037268162],[118,8,78,-0.5312022604048252],[118,8,79,-0.5284954980015755],[118,9,64,-0.540659885853529],[118,9,65,-0.5400260500609875],[118,9,66,-0.5383706800639629],[118,9,67,-0.5361858643591404],[118,9,68,-0.5343015473335981],[118,9,69,-0.533218989148736],[118,9,70,-0.5328878294676542],[118,9,71,-0.5327760968357325],[118,9,72,-0.5329174771904945],[118,9,73,-0.5334567576646805],[118,9,74,-0.5341567937284708],[118,9,75,-0.534636203199625],[118,9,76,-0.534485774114728],[118,9,77,-0.5334059037268162],[118,9,78,-0.5312022604048252],[118,9,79,-0.5284954980015755],[118,10,64,-0.540659885853529],[118,10,65,-0.5400260500609875],[118,10,66,-0.5383706800639629],[118,10,67,-0.5361858643591404],[118,10,68,-0.5343015473335981],[118,10,69,-0.533218989148736],[118,10,70,-0.5328878294676542],[118,10,71,-0.5327760968357325],[118,10,72,-0.5329174771904945],[118,10,73,-0.5334567576646805],[118,10,74,-0.5341567937284708],[118,10,75,-0.534636203199625],[118,10,76,-0.534485774114728],[118,10,77,-0.5334059037268162],[118,10,78,-0.5312022604048252],[118,10,79,-0.5284954980015755],[118,11,64,-0.540659885853529],[118,11,65,-0.5400260500609875],[118,11,66,-0.5383706800639629],[118,11,67,-0.5361858643591404],[118,11,68,-0.5343015473335981],[118,11,69,-0.533218989148736],[118,11,70,-0.5328878294676542],[118,11,71,-0.5327760968357325],[118,11,72,-0.5329174771904945],[118,11,73,-0.5334567576646805],[118,11,74,-0.5341567937284708],[118,11,75,-0.534636203199625],[118,11,76,-0.534485774114728],[118,11,77,-0.5334059037268162],[118,11,78,-0.5312022604048252],[118,11,79,-0.5284954980015755],[118,12,64,-0.540659885853529],[118,12,65,-0.5400260500609875],[118,12,66,-0.5383706800639629],[118,12,67,-0.5361858643591404],[118,12,68,-0.5343015473335981],[118,12,69,-0.533218989148736],[118,12,70,-0.5328878294676542],[118,12,71,-0.5327760968357325],[118,12,72,-0.5329174771904945],[118,12,73,-0.5334567576646805],[118,12,74,-0.5341567937284708],[118,12,75,-0.534636203199625],[118,12,76,-0.534485774114728],[118,12,77,-0.5334059037268162],[118,12,78,-0.5312022604048252],[118,12,79,-0.5284954980015755],[118,13,64,-0.540659885853529],[118,13,65,-0.5400260500609875],[118,13,66,-0.5383706800639629],[118,13,67,-0.5361858643591404],[118,13,68,-0.5343015473335981],[118,13,69,-0.533218989148736],[118,13,70,-0.5328878294676542],[118,13,71,-0.5327760968357325],[118,13,72,-0.5329174771904945],[118,13,73,-0.5334567576646805],[118,13,74,-0.5341567937284708],[118,13,75,-0.534636203199625],[118,13,76,-0.534485774114728],[118,13,77,-0.5334059037268162],[118,13,78,-0.5312022604048252],[118,13,79,-0.5284954980015755],[118,14,64,-0.540659885853529],[118,14,65,-0.5400260500609875],[118,14,66,-0.5383706800639629],[118,14,67,-0.5361858643591404],[118,14,68,-0.5343015473335981],[118,14,69,-0.533218989148736],[118,14,70,-0.5328878294676542],[118,14,71,-0.5327760968357325],[118,14,72,-0.5329174771904945],[118,14,73,-0.5334567576646805],[118,14,74,-0.5341567937284708],[118,14,75,-0.534636203199625],[118,14,76,-0.534485774114728],[118,14,77,-0.5334059037268162],[118,14,78,-0.5312022604048252],[118,14,79,-0.5284954980015755],[118,15,64,-0.540659885853529],[118,15,65,-0.5400260500609875],[118,15,66,-0.5383706800639629],[118,15,67,-0.5361858643591404],[118,15,68,-0.5343015473335981],[118,15,69,-0.533218989148736],[118,15,70,-0.5328878294676542],[118,15,71,-0.5327760968357325],[118,15,72,-0.5329174771904945],[118,15,73,-0.5334567576646805],[118,15,74,-0.5341567937284708],[118,15,75,-0.534636203199625],[118,15,76,-0.534485774114728],[118,15,77,-0.5334059037268162],[118,15,78,-0.5312022604048252],[118,15,79,-0.5284954980015755],[118,16,64,-0.540659885853529],[118,16,65,-0.5400260500609875],[118,16,66,-0.5383706800639629],[118,16,67,-0.5361858643591404],[118,16,68,-0.5343015473335981],[118,16,69,-0.533218989148736],[118,16,70,-0.5328878294676542],[118,16,71,-0.5327760968357325],[118,16,72,-0.5329174771904945],[118,16,73,-0.5334567576646805],[118,16,74,-0.5341567937284708],[118,16,75,-0.534636203199625],[118,16,76,-0.534485774114728],[118,16,77,-0.5334059037268162],[118,16,78,-0.5312022604048252],[118,16,79,-0.5284954980015755],[118,17,64,-0.540659885853529],[118,17,65,-0.5400260500609875],[118,17,66,-0.5383706800639629],[118,17,67,-0.5361858643591404],[118,17,68,-0.5343015473335981],[118,17,69,-0.533218989148736],[118,17,70,-0.5328878294676542],[118,17,71,-0.5327760968357325],[118,17,72,-0.5329174771904945],[118,17,73,-0.5334567576646805],[118,17,74,-0.5341567937284708],[118,17,75,-0.534636203199625],[118,17,76,-0.534485774114728],[118,17,77,-0.5334059037268162],[118,17,78,-0.5312022604048252],[118,17,79,-0.5284954980015755],[118,18,64,-0.540659885853529],[118,18,65,-0.5400260500609875],[118,18,66,-0.5383706800639629],[118,18,67,-0.5361858643591404],[118,18,68,-0.5343015473335981],[118,18,69,-0.533218989148736],[118,18,70,-0.5328878294676542],[118,18,71,-0.5327760968357325],[118,18,72,-0.5329174771904945],[118,18,73,-0.5334567576646805],[118,18,74,-0.5341567937284708],[118,18,75,-0.534636203199625],[118,18,76,-0.534485774114728],[118,18,77,-0.5334059037268162],[118,18,78,-0.5312022604048252],[118,18,79,-0.5284954980015755],[118,19,64,-0.540659885853529],[118,19,65,-0.5400260500609875],[118,19,66,-0.5383706800639629],[118,19,67,-0.5361858643591404],[118,19,68,-0.5343015473335981],[118,19,69,-0.533218989148736],[118,19,70,-0.5328878294676542],[118,19,71,-0.5327760968357325],[118,19,72,-0.5329174771904945],[118,19,73,-0.5334567576646805],[118,19,74,-0.5341567937284708],[118,19,75,-0.534636203199625],[118,19,76,-0.534485774114728],[118,19,77,-0.5334059037268162],[118,19,78,-0.5312022604048252],[118,19,79,-0.5284954980015755],[118,20,64,-0.540659885853529],[118,20,65,-0.5400260500609875],[118,20,66,-0.5383706800639629],[118,20,67,-0.5361858643591404],[118,20,68,-0.5343015473335981],[118,20,69,-0.533218989148736],[118,20,70,-0.5328878294676542],[118,20,71,-0.5327760968357325],[118,20,72,-0.5329174771904945],[118,20,73,-0.5334567576646805],[118,20,74,-0.5341567937284708],[118,20,75,-0.534636203199625],[118,20,76,-0.534485774114728],[118,20,77,-0.5334059037268162],[118,20,78,-0.5312022604048252],[118,20,79,-0.5284954980015755],[118,21,64,-0.540659885853529],[118,21,65,-0.5400260500609875],[118,21,66,-0.5383706800639629],[118,21,67,-0.5361858643591404],[118,21,68,-0.5343015473335981],[118,21,69,-0.533218989148736],[118,21,70,-0.5328878294676542],[118,21,71,-0.5327760968357325],[118,21,72,-0.5329174771904945],[118,21,73,-0.5334567576646805],[118,21,74,-0.5341567937284708],[118,21,75,-0.534636203199625],[118,21,76,-0.534485774114728],[118,21,77,-0.5334059037268162],[118,21,78,-0.5312022604048252],[118,21,79,-0.5284954980015755],[118,22,64,-0.540659885853529],[118,22,65,-0.5400260500609875],[118,22,66,-0.5383706800639629],[118,22,67,-0.5361858643591404],[118,22,68,-0.5343015473335981],[118,22,69,-0.533218989148736],[118,22,70,-0.5328878294676542],[118,22,71,-0.5327760968357325],[118,22,72,-0.5329174771904945],[118,22,73,-0.5334567576646805],[118,22,74,-0.5341567937284708],[118,22,75,-0.534636203199625],[118,22,76,-0.534485774114728],[118,22,77,-0.5334059037268162],[118,22,78,-0.5312022604048252],[118,22,79,-0.5284954980015755],[118,23,64,-0.540659885853529],[118,23,65,-0.5400260500609875],[118,23,66,-0.5383706800639629],[118,23,67,-0.5361858643591404],[118,23,68,-0.5343015473335981],[118,23,69,-0.533218989148736],[118,23,70,-0.5328878294676542],[118,23,71,-0.5327760968357325],[118,23,72,-0.5329174771904945],[118,23,73,-0.5334567576646805],[118,23,74,-0.5341567937284708],[118,23,75,-0.534636203199625],[118,23,76,-0.534485774114728],[118,23,77,-0.5334059037268162],[118,23,78,-0.5312022604048252],[118,23,79,-0.5284954980015755],[118,24,64,-0.540659885853529],[118,24,65,-0.5400260500609875],[118,24,66,-0.5383706800639629],[118,24,67,-0.5361858643591404],[118,24,68,-0.5343015473335981],[118,24,69,-0.533218989148736],[118,24,70,-0.5328878294676542],[118,24,71,-0.5327760968357325],[118,24,72,-0.5329174771904945],[118,24,73,-0.5334567576646805],[118,24,74,-0.5341567937284708],[118,24,75,-0.534636203199625],[118,24,76,-0.534485774114728],[118,24,77,-0.5334059037268162],[118,24,78,-0.5312022604048252],[118,24,79,-0.5284954980015755],[118,25,64,-0.540659885853529],[118,25,65,-0.5400260500609875],[118,25,66,-0.5383706800639629],[118,25,67,-0.5361858643591404],[118,25,68,-0.5343015473335981],[118,25,69,-0.533218989148736],[118,25,70,-0.5328878294676542],[118,25,71,-0.5327760968357325],[118,25,72,-0.5329174771904945],[118,25,73,-0.5334567576646805],[118,25,74,-0.5341567937284708],[118,25,75,-0.534636203199625],[118,25,76,-0.534485774114728],[118,25,77,-0.5334059037268162],[118,25,78,-0.5312022604048252],[118,25,79,-0.5284954980015755],[118,26,64,-0.540659885853529],[118,26,65,-0.5400260500609875],[118,26,66,-0.5383706800639629],[118,26,67,-0.5361858643591404],[118,26,68,-0.5343015473335981],[118,26,69,-0.533218989148736],[118,26,70,-0.5328878294676542],[118,26,71,-0.5327760968357325],[118,26,72,-0.5329174771904945],[118,26,73,-0.5334567576646805],[118,26,74,-0.5341567937284708],[118,26,75,-0.534636203199625],[118,26,76,-0.534485774114728],[118,26,77,-0.5334059037268162],[118,26,78,-0.5312022604048252],[118,26,79,-0.5284954980015755],[118,27,64,-0.540659885853529],[118,27,65,-0.5400260500609875],[118,27,66,-0.5383706800639629],[118,27,67,-0.5361858643591404],[118,27,68,-0.5343015473335981],[118,27,69,-0.533218989148736],[118,27,70,-0.5328878294676542],[118,27,71,-0.5327760968357325],[118,27,72,-0.5329174771904945],[118,27,73,-0.5334567576646805],[118,27,74,-0.5341567937284708],[118,27,75,-0.534636203199625],[118,27,76,-0.534485774114728],[118,27,77,-0.5334059037268162],[118,27,78,-0.5312022604048252],[118,27,79,-0.5284954980015755],[118,28,64,-0.540659885853529],[118,28,65,-0.5400260500609875],[118,28,66,-0.5383706800639629],[118,28,67,-0.5361858643591404],[118,28,68,-0.5343015473335981],[118,28,69,-0.533218989148736],[118,28,70,-0.5328878294676542],[118,28,71,-0.5327760968357325],[118,28,72,-0.5329174771904945],[118,28,73,-0.5334567576646805],[118,28,74,-0.5341567937284708],[118,28,75,-0.534636203199625],[118,28,76,-0.534485774114728],[118,28,77,-0.5334059037268162],[118,28,78,-0.5312022604048252],[118,28,79,-0.5284954980015755],[118,29,64,-0.540659885853529],[118,29,65,-0.5400260500609875],[118,29,66,-0.5383706800639629],[118,29,67,-0.5361858643591404],[118,29,68,-0.5343015473335981],[118,29,69,-0.533218989148736],[118,29,70,-0.5328878294676542],[118,29,71,-0.5327760968357325],[118,29,72,-0.5329174771904945],[118,29,73,-0.5334567576646805],[118,29,74,-0.5341567937284708],[118,29,75,-0.534636203199625],[118,29,76,-0.534485774114728],[118,29,77,-0.5334059037268162],[118,29,78,-0.5312022604048252],[118,29,79,-0.5284954980015755],[118,30,64,-0.540659885853529],[118,30,65,-0.5400260500609875],[118,30,66,-0.5383706800639629],[118,30,67,-0.5361858643591404],[118,30,68,-0.5343015473335981],[118,30,69,-0.533218989148736],[118,30,70,-0.5328878294676542],[118,30,71,-0.5327760968357325],[118,30,72,-0.5329174771904945],[118,30,73,-0.5334567576646805],[118,30,74,-0.5341567937284708],[118,30,75,-0.534636203199625],[118,30,76,-0.534485774114728],[118,30,77,-0.5334059037268162],[118,30,78,-0.5312022604048252],[118,30,79,-0.5284954980015755],[118,31,64,-0.540659885853529],[118,31,65,-0.5400260500609875],[118,31,66,-0.5383706800639629],[118,31,67,-0.5361858643591404],[118,31,68,-0.5343015473335981],[118,31,69,-0.533218989148736],[118,31,70,-0.5328878294676542],[118,31,71,-0.5327760968357325],[118,31,72,-0.5329174771904945],[118,31,73,-0.5334567576646805],[118,31,74,-0.5341567937284708],[118,31,75,-0.534636203199625],[118,31,76,-0.534485774114728],[118,31,77,-0.5334059037268162],[118,31,78,-0.5312022604048252],[118,31,79,-0.5284954980015755],[118,32,64,-0.540659885853529],[118,32,65,-0.5400260500609875],[118,32,66,-0.5383706800639629],[118,32,67,-0.5361858643591404],[118,32,68,-0.5343015473335981],[118,32,69,-0.533218989148736],[118,32,70,-0.5328878294676542],[118,32,71,-0.5327760968357325],[118,32,72,-0.5329174771904945],[118,32,73,-0.5334567576646805],[118,32,74,-0.5341567937284708],[118,32,75,-0.534636203199625],[118,32,76,-0.534485774114728],[118,32,77,-0.5334059037268162],[118,32,78,-0.5312022604048252],[118,32,79,-0.5284954980015755],[118,33,64,-0.540659885853529],[118,33,65,-0.5400260500609875],[118,33,66,-0.5383706800639629],[118,33,67,-0.5361858643591404],[118,33,68,-0.5343015473335981],[118,33,69,-0.533218989148736],[118,33,70,-0.5328878294676542],[118,33,71,-0.5327760968357325],[118,33,72,-0.5329174771904945],[118,33,73,-0.5334567576646805],[118,33,74,-0.5341567937284708],[118,33,75,-0.534636203199625],[118,33,76,-0.534485774114728],[118,33,77,-0.5334059037268162],[118,33,78,-0.5312022604048252],[118,33,79,-0.5284954980015755],[118,34,64,-0.540659885853529],[118,34,65,-0.5400260500609875],[118,34,66,-0.5383706800639629],[118,34,67,-0.5361858643591404],[118,34,68,-0.5343015473335981],[118,34,69,-0.533218989148736],[118,34,70,-0.5328878294676542],[118,34,71,-0.5327760968357325],[118,34,72,-0.5329174771904945],[118,34,73,-0.5334567576646805],[118,34,74,-0.5341567937284708],[118,34,75,-0.534636203199625],[118,34,76,-0.534485774114728],[118,34,77,-0.5334059037268162],[118,34,78,-0.5312022604048252],[118,34,79,-0.5284954980015755],[118,35,64,-0.540659885853529],[118,35,65,-0.5400260500609875],[118,35,66,-0.5383706800639629],[118,35,67,-0.5361858643591404],[118,35,68,-0.5343015473335981],[118,35,69,-0.533218989148736],[118,35,70,-0.5328878294676542],[118,35,71,-0.5327760968357325],[118,35,72,-0.5329174771904945],[118,35,73,-0.5334567576646805],[118,35,74,-0.5341567937284708],[118,35,75,-0.534636203199625],[118,35,76,-0.534485774114728],[118,35,77,-0.5334059037268162],[118,35,78,-0.5312022604048252],[118,35,79,-0.5284954980015755],[118,36,64,-0.540659885853529],[118,36,65,-0.5400260500609875],[118,36,66,-0.5383706800639629],[118,36,67,-0.5361858643591404],[118,36,68,-0.5343015473335981],[118,36,69,-0.533218989148736],[118,36,70,-0.5328878294676542],[118,36,71,-0.5327760968357325],[118,36,72,-0.5329174771904945],[118,36,73,-0.5334567576646805],[118,36,74,-0.5341567937284708],[118,36,75,-0.534636203199625],[118,36,76,-0.534485774114728],[118,36,77,-0.5334059037268162],[118,36,78,-0.5312022604048252],[118,36,79,-0.5284954980015755],[118,37,64,-0.540659885853529],[118,37,65,-0.5400260500609875],[118,37,66,-0.5383706800639629],[118,37,67,-0.5361858643591404],[118,37,68,-0.5343015473335981],[118,37,69,-0.533218989148736],[118,37,70,-0.5328878294676542],[118,37,71,-0.5327760968357325],[118,37,72,-0.5329174771904945],[118,37,73,-0.5334567576646805],[118,37,74,-0.5341567937284708],[118,37,75,-0.534636203199625],[118,37,76,-0.534485774114728],[118,37,77,-0.5334059037268162],[118,37,78,-0.5312022604048252],[118,37,79,-0.5284954980015755],[118,38,64,-0.540659885853529],[118,38,65,-0.5400260500609875],[118,38,66,-0.5383706800639629],[118,38,67,-0.5361858643591404],[118,38,68,-0.5343015473335981],[118,38,69,-0.533218989148736],[118,38,70,-0.5328878294676542],[118,38,71,-0.5327760968357325],[118,38,72,-0.5329174771904945],[118,38,73,-0.5334567576646805],[118,38,74,-0.5341567937284708],[118,38,75,-0.534636203199625],[118,38,76,-0.534485774114728],[118,38,77,-0.5334059037268162],[118,38,78,-0.5312022604048252],[118,38,79,-0.5284954980015755],[118,39,64,-0.540659885853529],[118,39,65,-0.5400260500609875],[118,39,66,-0.5383706800639629],[118,39,67,-0.5361858643591404],[118,39,68,-0.5343015473335981],[118,39,69,-0.533218989148736],[118,39,70,-0.5328878294676542],[118,39,71,-0.5327760968357325],[118,39,72,-0.5329174771904945],[118,39,73,-0.5334567576646805],[118,39,74,-0.5341567937284708],[118,39,75,-0.534636203199625],[118,39,76,-0.534485774114728],[118,39,77,-0.5334059037268162],[118,39,78,-0.5312022604048252],[118,39,79,-0.5284954980015755],[118,40,64,-0.540659885853529],[118,40,65,-0.5400260500609875],[118,40,66,-0.5383706800639629],[118,40,67,-0.5361858643591404],[118,40,68,-0.5343015473335981],[118,40,69,-0.533218989148736],[118,40,70,-0.5328878294676542],[118,40,71,-0.5327760968357325],[118,40,72,-0.5329174771904945],[118,40,73,-0.5334567576646805],[118,40,74,-0.5341567937284708],[118,40,75,-0.534636203199625],[118,40,76,-0.534485774114728],[118,40,77,-0.5334059037268162],[118,40,78,-0.5312022604048252],[118,40,79,-0.5284954980015755],[118,41,64,-0.540659885853529],[118,41,65,-0.5400260500609875],[118,41,66,-0.5383706800639629],[118,41,67,-0.5361858643591404],[118,41,68,-0.5343015473335981],[118,41,69,-0.533218989148736],[118,41,70,-0.5328878294676542],[118,41,71,-0.5327760968357325],[118,41,72,-0.5329174771904945],[118,41,73,-0.5334567576646805],[118,41,74,-0.5341567937284708],[118,41,75,-0.534636203199625],[118,41,76,-0.534485774114728],[118,41,77,-0.5334059037268162],[118,41,78,-0.5312022604048252],[118,41,79,-0.5284954980015755],[118,42,64,-0.540659885853529],[118,42,65,-0.5400260500609875],[118,42,66,-0.5383706800639629],[118,42,67,-0.5361858643591404],[118,42,68,-0.5343015473335981],[118,42,69,-0.533218989148736],[118,42,70,-0.5328878294676542],[118,42,71,-0.5327760968357325],[118,42,72,-0.5329174771904945],[118,42,73,-0.5334567576646805],[118,42,74,-0.5341567937284708],[118,42,75,-0.534636203199625],[118,42,76,-0.534485774114728],[118,42,77,-0.5334059037268162],[118,42,78,-0.5312022604048252],[118,42,79,-0.5284954980015755],[118,43,64,-0.540659885853529],[118,43,65,-0.5400260500609875],[118,43,66,-0.5383706800639629],[118,43,67,-0.5361858643591404],[118,43,68,-0.5343015473335981],[118,43,69,-0.533218989148736],[118,43,70,-0.5328878294676542],[118,43,71,-0.5327760968357325],[118,43,72,-0.5329174771904945],[118,43,73,-0.5334567576646805],[118,43,74,-0.5341567937284708],[118,43,75,-0.534636203199625],[118,43,76,-0.534485774114728],[118,43,77,-0.5334059037268162],[118,43,78,-0.5312022604048252],[118,43,79,-0.5284954980015755],[118,44,64,-0.540659885853529],[118,44,65,-0.5400260500609875],[118,44,66,-0.5383706800639629],[118,44,67,-0.5361858643591404],[118,44,68,-0.5343015473335981],[118,44,69,-0.533218989148736],[118,44,70,-0.5328878294676542],[118,44,71,-0.5327760968357325],[118,44,72,-0.5329174771904945],[118,44,73,-0.5334567576646805],[118,44,74,-0.5341567937284708],[118,44,75,-0.534636203199625],[118,44,76,-0.534485774114728],[118,44,77,-0.5334059037268162],[118,44,78,-0.5312022604048252],[118,44,79,-0.5284954980015755],[118,45,64,-0.540659885853529],[118,45,65,-0.5400260500609875],[118,45,66,-0.5383706800639629],[118,45,67,-0.5361858643591404],[118,45,68,-0.5343015473335981],[118,45,69,-0.533218989148736],[118,45,70,-0.5328878294676542],[118,45,71,-0.5327760968357325],[118,45,72,-0.5329174771904945],[118,45,73,-0.5334567576646805],[118,45,74,-0.5341567937284708],[118,45,75,-0.534636203199625],[118,45,76,-0.534485774114728],[118,45,77,-0.5334059037268162],[118,45,78,-0.5312022604048252],[118,45,79,-0.5284954980015755],[118,46,64,-0.540659885853529],[118,46,65,-0.5400260500609875],[118,46,66,-0.5383706800639629],[118,46,67,-0.5361858643591404],[118,46,68,-0.5343015473335981],[118,46,69,-0.533218989148736],[118,46,70,-0.5328878294676542],[118,46,71,-0.5327760968357325],[118,46,72,-0.5329174771904945],[118,46,73,-0.5334567576646805],[118,46,74,-0.5341567937284708],[118,46,75,-0.534636203199625],[118,46,76,-0.534485774114728],[118,46,77,-0.5334059037268162],[118,46,78,-0.5312022604048252],[118,46,79,-0.5284954980015755],[118,47,64,-0.540659885853529],[118,47,65,-0.5400260500609875],[118,47,66,-0.5383706800639629],[118,47,67,-0.5361858643591404],[118,47,68,-0.5343015473335981],[118,47,69,-0.533218989148736],[118,47,70,-0.5328878294676542],[118,47,71,-0.5327760968357325],[118,47,72,-0.5329174771904945],[118,47,73,-0.5334567576646805],[118,47,74,-0.5341567937284708],[118,47,75,-0.534636203199625],[118,47,76,-0.534485774114728],[118,47,77,-0.5334059037268162],[118,47,78,-0.5312022604048252],[118,47,79,-0.5284954980015755],[118,48,64,-0.540659885853529],[118,48,65,-0.5400260500609875],[118,48,66,-0.5383706800639629],[118,48,67,-0.5361858643591404],[118,48,68,-0.5343015473335981],[118,48,69,-0.533218989148736],[118,48,70,-0.5328878294676542],[118,48,71,-0.5327760968357325],[118,48,72,-0.5329174771904945],[118,48,73,-0.5334567576646805],[118,48,74,-0.5341567937284708],[118,48,75,-0.534636203199625],[118,48,76,-0.534485774114728],[118,48,77,-0.5334059037268162],[118,48,78,-0.5312022604048252],[118,48,79,-0.5284954980015755],[118,49,64,-0.540659885853529],[118,49,65,-0.5400260500609875],[118,49,66,-0.5383706800639629],[118,49,67,-0.5361858643591404],[118,49,68,-0.5343015473335981],[118,49,69,-0.533218989148736],[118,49,70,-0.5328878294676542],[118,49,71,-0.5327760968357325],[118,49,72,-0.5329174771904945],[118,49,73,-0.5334567576646805],[118,49,74,-0.5341567937284708],[118,49,75,-0.534636203199625],[118,49,76,-0.534485774114728],[118,49,77,-0.5334059037268162],[118,49,78,-0.5312022604048252],[118,49,79,-0.5284954980015755],[118,50,64,-0.540659885853529],[118,50,65,-0.5400260500609875],[118,50,66,-0.5383706800639629],[118,50,67,-0.5361858643591404],[118,50,68,-0.5343015473335981],[118,50,69,-0.533218989148736],[118,50,70,-0.5328878294676542],[118,50,71,-0.5327760968357325],[118,50,72,-0.5329174771904945],[118,50,73,-0.5334567576646805],[118,50,74,-0.5341567937284708],[118,50,75,-0.534636203199625],[118,50,76,-0.534485774114728],[118,50,77,-0.5334059037268162],[118,50,78,-0.5312022604048252],[118,50,79,-0.5284954980015755],[118,51,64,-0.540659885853529],[118,51,65,-0.5400260500609875],[118,51,66,-0.5383706800639629],[118,51,67,-0.5361858643591404],[118,51,68,-0.5343015473335981],[118,51,69,-0.533218989148736],[118,51,70,-0.5328878294676542],[118,51,71,-0.5327760968357325],[118,51,72,-0.5329174771904945],[118,51,73,-0.5334567576646805],[118,51,74,-0.5341567937284708],[118,51,75,-0.534636203199625],[118,51,76,-0.534485774114728],[118,51,77,-0.5334059037268162],[118,51,78,-0.5312022604048252],[118,51,79,-0.5284954980015755],[118,52,64,-0.540659885853529],[118,52,65,-0.5400260500609875],[118,52,66,-0.5383706800639629],[118,52,67,-0.5361858643591404],[118,52,68,-0.5343015473335981],[118,52,69,-0.533218989148736],[118,52,70,-0.5328878294676542],[118,52,71,-0.5327760968357325],[118,52,72,-0.5329174771904945],[118,52,73,-0.5334567576646805],[118,52,74,-0.5341567937284708],[118,52,75,-0.534636203199625],[118,52,76,-0.534485774114728],[118,52,77,-0.5334059037268162],[118,52,78,-0.5312022604048252],[118,52,79,-0.5284954980015755],[118,53,64,-0.540659885853529],[118,53,65,-0.5400260500609875],[118,53,66,-0.5383706800639629],[118,53,67,-0.5361858643591404],[118,53,68,-0.5343015473335981],[118,53,69,-0.533218989148736],[118,53,70,-0.5328878294676542],[118,53,71,-0.5327760968357325],[118,53,72,-0.5329174771904945],[118,53,73,-0.5334567576646805],[118,53,74,-0.5341567937284708],[118,53,75,-0.534636203199625],[118,53,76,-0.534485774114728],[118,53,77,-0.5334059037268162],[118,53,78,-0.5312022604048252],[118,53,79,-0.5284954980015755],[118,54,64,-0.540659885853529],[118,54,65,-0.5400260500609875],[118,54,66,-0.5383706800639629],[118,54,67,-0.5361858643591404],[118,54,68,-0.5343015473335981],[118,54,69,-0.533218989148736],[118,54,70,-0.5328878294676542],[118,54,71,-0.5327760968357325],[118,54,72,-0.5329174771904945],[118,54,73,-0.5334567576646805],[118,54,74,-0.5341567937284708],[118,54,75,-0.534636203199625],[118,54,76,-0.534485774114728],[118,54,77,-0.5334059037268162],[118,54,78,-0.5312022604048252],[118,54,79,-0.5284954980015755],[118,55,64,-0.540659885853529],[118,55,65,-0.5400260500609875],[118,55,66,-0.5383706800639629],[118,55,67,-0.5361858643591404],[118,55,68,-0.5343015473335981],[118,55,69,-0.533218989148736],[118,55,70,-0.5328878294676542],[118,55,71,-0.5327760968357325],[118,55,72,-0.5329174771904945],[118,55,73,-0.5334567576646805],[118,55,74,-0.5341567937284708],[118,55,75,-0.534636203199625],[118,55,76,-0.534485774114728],[118,55,77,-0.5334059037268162],[118,55,78,-0.5312022604048252],[118,55,79,-0.5284954980015755],[118,56,64,-0.540659885853529],[118,56,65,-0.5400260500609875],[118,56,66,-0.5383706800639629],[118,56,67,-0.5361858643591404],[118,56,68,-0.5343015473335981],[118,56,69,-0.533218989148736],[118,56,70,-0.5328878294676542],[118,56,71,-0.5327760968357325],[118,56,72,-0.5329174771904945],[118,56,73,-0.5334567576646805],[118,56,74,-0.5341567937284708],[118,56,75,-0.534636203199625],[118,56,76,-0.534485774114728],[118,56,77,-0.5334059037268162],[118,56,78,-0.5312022604048252],[118,56,79,-0.5284954980015755],[118,57,64,-0.540659885853529],[118,57,65,-0.5400260500609875],[118,57,66,-0.5383706800639629],[118,57,67,-0.5361858643591404],[118,57,68,-0.5343015473335981],[118,57,69,-0.533218989148736],[118,57,70,-0.5328878294676542],[118,57,71,-0.5327760968357325],[118,57,72,-0.5329174771904945],[118,57,73,-0.5334567576646805],[118,57,74,-0.5341567937284708],[118,57,75,-0.534636203199625],[118,57,76,-0.534485774114728],[118,57,77,-0.5334059037268162],[118,57,78,-0.5312022604048252],[118,57,79,-0.5284954980015755],[118,58,64,-0.540659885853529],[118,58,65,-0.5400260500609875],[118,58,66,-0.5383706800639629],[118,58,67,-0.5361858643591404],[118,58,68,-0.5343015473335981],[118,58,69,-0.533218989148736],[118,58,70,-0.5328878294676542],[118,58,71,-0.5327760968357325],[118,58,72,-0.5329174771904945],[118,58,73,-0.5334567576646805],[118,58,74,-0.5341567937284708],[118,58,75,-0.534636203199625],[118,58,76,-0.534485774114728],[118,58,77,-0.5334059037268162],[118,58,78,-0.5312022604048252],[118,58,79,-0.5284954980015755],[118,59,64,-0.540659885853529],[118,59,65,-0.5400260500609875],[118,59,66,-0.5383706800639629],[118,59,67,-0.5361858643591404],[118,59,68,-0.5343015473335981],[118,59,69,-0.533218989148736],[118,59,70,-0.5328878294676542],[118,59,71,-0.5327760968357325],[118,59,72,-0.5329174771904945],[118,59,73,-0.5334567576646805],[118,59,74,-0.5341567937284708],[118,59,75,-0.534636203199625],[118,59,76,-0.534485774114728],[118,59,77,-0.5334059037268162],[118,59,78,-0.5312022604048252],[118,59,79,-0.5284954980015755],[118,60,64,-0.540659885853529],[118,60,65,-0.5400260500609875],[118,60,66,-0.5383706800639629],[118,60,67,-0.5361858643591404],[118,60,68,-0.5343015473335981],[118,60,69,-0.533218989148736],[118,60,70,-0.5328878294676542],[118,60,71,-0.5327760968357325],[118,60,72,-0.5329174771904945],[118,60,73,-0.5334567576646805],[118,60,74,-0.5341567937284708],[118,60,75,-0.534636203199625],[118,60,76,-0.534485774114728],[118,60,77,-0.5334059037268162],[118,60,78,-0.5312022604048252],[118,60,79,-0.5284954980015755],[118,61,64,-0.540659885853529],[118,61,65,-0.5400260500609875],[118,61,66,-0.5383706800639629],[118,61,67,-0.5361858643591404],[118,61,68,-0.5343015473335981],[118,61,69,-0.533218989148736],[118,61,70,-0.5328878294676542],[118,61,71,-0.5327760968357325],[118,61,72,-0.5329174771904945],[118,61,73,-0.5334567576646805],[118,61,74,-0.5341567937284708],[118,61,75,-0.534636203199625],[118,61,76,-0.534485774114728],[118,61,77,-0.5334059037268162],[118,61,78,-0.5312022604048252],[118,61,79,-0.5284954980015755],[118,62,64,-0.540659885853529],[118,62,65,-0.5400260500609875],[118,62,66,-0.5383706800639629],[118,62,67,-0.5361858643591404],[118,62,68,-0.5343015473335981],[118,62,69,-0.533218989148736],[118,62,70,-0.5328878294676542],[118,62,71,-0.5327760968357325],[118,62,72,-0.5329174771904945],[118,62,73,-0.5334567576646805],[118,62,74,-0.5341567937284708],[118,62,75,-0.534636203199625],[118,62,76,-0.534485774114728],[118,62,77,-0.5334059037268162],[118,62,78,-0.5312022604048252],[118,62,79,-0.5284954980015755],[118,63,64,-0.540659885853529],[118,63,65,-0.5400260500609875],[118,63,66,-0.5383706800639629],[118,63,67,-0.5361858643591404],[118,63,68,-0.5343015473335981],[118,63,69,-0.533218989148736],[118,63,70,-0.5328878294676542],[118,63,71,-0.5327760968357325],[118,63,72,-0.5329174771904945],[118,63,73,-0.5334567576646805],[118,63,74,-0.5341567937284708],[118,63,75,-0.534636203199625],[118,63,76,-0.534485774114728],[118,63,77,-0.5334059037268162],[118,63,78,-0.5312022604048252],[118,63,79,-0.5284954980015755],[118,64,64,-0.540659885853529],[118,64,65,-0.5400260500609875],[118,64,66,-0.5383706800639629],[118,64,67,-0.5361858643591404],[118,64,68,-0.5343015473335981],[118,64,69,-0.533218989148736],[118,64,70,-0.5328878294676542],[118,64,71,-0.5327760968357325],[118,64,72,-0.5329174771904945],[118,64,73,-0.5334567576646805],[118,64,74,-0.5341567937284708],[118,64,75,-0.534636203199625],[118,64,76,-0.534485774114728],[118,64,77,-0.5334059037268162],[118,64,78,-0.5312022604048252],[118,64,79,-0.5284954980015755],[118,65,64,-0.540659885853529],[118,65,65,-0.5400260500609875],[118,65,66,-0.5383706800639629],[118,65,67,-0.5361858643591404],[118,65,68,-0.5343015473335981],[118,65,69,-0.533218989148736],[118,65,70,-0.5328878294676542],[118,65,71,-0.5327760968357325],[118,65,72,-0.5329174771904945],[118,65,73,-0.5334567576646805],[118,65,74,-0.5341567937284708],[118,65,75,-0.534636203199625],[118,65,76,-0.534485774114728],[118,65,77,-0.5334059037268162],[118,65,78,-0.5312022604048252],[118,65,79,-0.5284954980015755],[118,66,64,-0.540659885853529],[118,66,65,-0.5400260500609875],[118,66,66,-0.5383706800639629],[118,66,67,-0.5361858643591404],[118,66,68,-0.5343015473335981],[118,66,69,-0.533218989148736],[118,66,70,-0.5328878294676542],[118,66,71,-0.5327760968357325],[118,66,72,-0.5329174771904945],[118,66,73,-0.5334567576646805],[118,66,74,-0.5341567937284708],[118,66,75,-0.534636203199625],[118,66,76,-0.534485774114728],[118,66,77,-0.5334059037268162],[118,66,78,-0.5312022604048252],[118,66,79,-0.5284954980015755],[118,67,64,-0.540659885853529],[118,67,65,-0.5400260500609875],[118,67,66,-0.5383706800639629],[118,67,67,-0.5361858643591404],[118,67,68,-0.5343015473335981],[118,67,69,-0.533218989148736],[118,67,70,-0.5328878294676542],[118,67,71,-0.5327760968357325],[118,67,72,-0.5329174771904945],[118,67,73,-0.5334567576646805],[118,67,74,-0.5341567937284708],[118,67,75,-0.534636203199625],[118,67,76,-0.534485774114728],[118,67,77,-0.5334059037268162],[118,67,78,-0.5312022604048252],[118,67,79,-0.5284954980015755],[118,68,64,-0.540659885853529],[118,68,65,-0.5400260500609875],[118,68,66,-0.5383706800639629],[118,68,67,-0.5361858643591404],[118,68,68,-0.5343015473335981],[118,68,69,-0.533218989148736],[118,68,70,-0.5328878294676542],[118,68,71,-0.5327760968357325],[118,68,72,-0.5329174771904945],[118,68,73,-0.5334567576646805],[118,68,74,-0.5341567937284708],[118,68,75,-0.534636203199625],[118,68,76,-0.534485774114728],[118,68,77,-0.5334059037268162],[118,68,78,-0.5312022604048252],[118,68,79,-0.5284954980015755],[118,69,64,-0.540659885853529],[118,69,65,-0.5400260500609875],[118,69,66,-0.5383706800639629],[118,69,67,-0.5361858643591404],[118,69,68,-0.5343015473335981],[118,69,69,-0.533218989148736],[118,69,70,-0.5328878294676542],[118,69,71,-0.5327760968357325],[118,69,72,-0.5329174771904945],[118,69,73,-0.5334567576646805],[118,69,74,-0.5341567937284708],[118,69,75,-0.534636203199625],[118,69,76,-0.534485774114728],[118,69,77,-0.5334059037268162],[118,69,78,-0.5312022604048252],[118,69,79,-0.5284954980015755],[118,70,64,-0.540659885853529],[118,70,65,-0.5400260500609875],[118,70,66,-0.5383706800639629],[118,70,67,-0.5361858643591404],[118,70,68,-0.5343015473335981],[118,70,69,-0.533218989148736],[118,70,70,-0.5328878294676542],[118,70,71,-0.5327760968357325],[118,70,72,-0.5329174771904945],[118,70,73,-0.5334567576646805],[118,70,74,-0.5341567937284708],[118,70,75,-0.534636203199625],[118,70,76,-0.534485774114728],[118,70,77,-0.5334059037268162],[118,70,78,-0.5312022604048252],[118,70,79,-0.5284954980015755],[118,71,64,-0.540659885853529],[118,71,65,-0.5400260500609875],[118,71,66,-0.5383706800639629],[118,71,67,-0.5361858643591404],[118,71,68,-0.5343015473335981],[118,71,69,-0.533218989148736],[118,71,70,-0.5328878294676542],[118,71,71,-0.5327760968357325],[118,71,72,-0.5329174771904945],[118,71,73,-0.5334567576646805],[118,71,74,-0.5341567937284708],[118,71,75,-0.534636203199625],[118,71,76,-0.534485774114728],[118,71,77,-0.5334059037268162],[118,71,78,-0.5312022604048252],[118,71,79,-0.5284954980015755],[118,72,64,-0.540659885853529],[118,72,65,-0.5400260500609875],[118,72,66,-0.5383706800639629],[118,72,67,-0.5361858643591404],[118,72,68,-0.5343015473335981],[118,72,69,-0.533218989148736],[118,72,70,-0.5328878294676542],[118,72,71,-0.5327760968357325],[118,72,72,-0.5329174771904945],[118,72,73,-0.5334567576646805],[118,72,74,-0.5341567937284708],[118,72,75,-0.534636203199625],[118,72,76,-0.534485774114728],[118,72,77,-0.5334059037268162],[118,72,78,-0.5312022604048252],[118,72,79,-0.5284954980015755],[118,73,64,-0.540659885853529],[118,73,65,-0.5400260500609875],[118,73,66,-0.5383706800639629],[118,73,67,-0.5361858643591404],[118,73,68,-0.5343015473335981],[118,73,69,-0.533218989148736],[118,73,70,-0.5328878294676542],[118,73,71,-0.5327760968357325],[118,73,72,-0.5329174771904945],[118,73,73,-0.5334567576646805],[118,73,74,-0.5341567937284708],[118,73,75,-0.534636203199625],[118,73,76,-0.534485774114728],[118,73,77,-0.5334059037268162],[118,73,78,-0.5312022604048252],[118,73,79,-0.5284954980015755],[118,74,64,-0.540659885853529],[118,74,65,-0.5400260500609875],[118,74,66,-0.5383706800639629],[118,74,67,-0.5361858643591404],[118,74,68,-0.5343015473335981],[118,74,69,-0.533218989148736],[118,74,70,-0.5328878294676542],[118,74,71,-0.5327760968357325],[118,74,72,-0.5329174771904945],[118,74,73,-0.5334567576646805],[118,74,74,-0.5341567937284708],[118,74,75,-0.534636203199625],[118,74,76,-0.534485774114728],[118,74,77,-0.5334059037268162],[118,74,78,-0.5312022604048252],[118,74,79,-0.5284954980015755],[118,75,64,-0.540659885853529],[118,75,65,-0.5400260500609875],[118,75,66,-0.5383706800639629],[118,75,67,-0.5361858643591404],[118,75,68,-0.5343015473335981],[118,75,69,-0.533218989148736],[118,75,70,-0.5328878294676542],[118,75,71,-0.5327760968357325],[118,75,72,-0.5329174771904945],[118,75,73,-0.5334567576646805],[118,75,74,-0.5341567937284708],[118,75,75,-0.534636203199625],[118,75,76,-0.534485774114728],[118,75,77,-0.5334059037268162],[118,75,78,-0.5312022604048252],[118,75,79,-0.5284954980015755],[118,76,64,-0.540659885853529],[118,76,65,-0.5400260500609875],[118,76,66,-0.5383706800639629],[118,76,67,-0.5361858643591404],[118,76,68,-0.5343015473335981],[118,76,69,-0.533218989148736],[118,76,70,-0.5328878294676542],[118,76,71,-0.5327760968357325],[118,76,72,-0.5329174771904945],[118,76,73,-0.5334567576646805],[118,76,74,-0.5341567937284708],[118,76,75,-0.534636203199625],[118,76,76,-0.534485774114728],[118,76,77,-0.5334059037268162],[118,76,78,-0.5312022604048252],[118,76,79,-0.5284954980015755],[118,77,64,-0.540659885853529],[118,77,65,-0.5400260500609875],[118,77,66,-0.5383706800639629],[118,77,67,-0.5361858643591404],[118,77,68,-0.5343015473335981],[118,77,69,-0.533218989148736],[118,77,70,-0.5328878294676542],[118,77,71,-0.5327760968357325],[118,77,72,-0.5329174771904945],[118,77,73,-0.5334567576646805],[118,77,74,-0.5341567937284708],[118,77,75,-0.534636203199625],[118,77,76,-0.534485774114728],[118,77,77,-0.5334059037268162],[118,77,78,-0.5312022604048252],[118,77,79,-0.5284954980015755],[118,78,64,-0.540659885853529],[118,78,65,-0.5400260500609875],[118,78,66,-0.5383706800639629],[118,78,67,-0.5361858643591404],[118,78,68,-0.5343015473335981],[118,78,69,-0.533218989148736],[118,78,70,-0.5328878294676542],[118,78,71,-0.5327760968357325],[118,78,72,-0.5329174771904945],[118,78,73,-0.5334567576646805],[118,78,74,-0.5341567937284708],[118,78,75,-0.534636203199625],[118,78,76,-0.534485774114728],[118,78,77,-0.5334059037268162],[118,78,78,-0.5312022604048252],[118,78,79,-0.5284954980015755],[118,79,64,-0.540659885853529],[118,79,65,-0.5400260500609875],[118,79,66,-0.5383706800639629],[118,79,67,-0.5361858643591404],[118,79,68,-0.5343015473335981],[118,79,69,-0.533218989148736],[118,79,70,-0.5328878294676542],[118,79,71,-0.5327760968357325],[118,79,72,-0.5329174771904945],[118,79,73,-0.5334567576646805],[118,79,74,-0.5341567937284708],[118,79,75,-0.534636203199625],[118,79,76,-0.534485774114728],[118,79,77,-0.5334059037268162],[118,79,78,-0.5312022604048252],[118,79,79,-0.5284954980015755],[118,80,64,-0.540659885853529],[118,80,65,-0.5400260500609875],[118,80,66,-0.5383706800639629],[118,80,67,-0.5361858643591404],[118,80,68,-0.5343015473335981],[118,80,69,-0.533218989148736],[118,80,70,-0.5328878294676542],[118,80,71,-0.5327760968357325],[118,80,72,-0.5329174771904945],[118,80,73,-0.5334567576646805],[118,80,74,-0.5341567937284708],[118,80,75,-0.534636203199625],[118,80,76,-0.534485774114728],[118,80,77,-0.5334059037268162],[118,80,78,-0.5312022604048252],[118,80,79,-0.5284954980015755],[118,81,64,-0.540659885853529],[118,81,65,-0.5400260500609875],[118,81,66,-0.5383706800639629],[118,81,67,-0.5361858643591404],[118,81,68,-0.5343015473335981],[118,81,69,-0.533218989148736],[118,81,70,-0.5328878294676542],[118,81,71,-0.5327760968357325],[118,81,72,-0.5329174771904945],[118,81,73,-0.5334567576646805],[118,81,74,-0.5341567937284708],[118,81,75,-0.534636203199625],[118,81,76,-0.534485774114728],[118,81,77,-0.5334059037268162],[118,81,78,-0.5312022604048252],[118,81,79,-0.5284954980015755],[118,82,64,-0.540659885853529],[118,82,65,-0.5400260500609875],[118,82,66,-0.5383706800639629],[118,82,67,-0.5361858643591404],[118,82,68,-0.5343015473335981],[118,82,69,-0.533218989148736],[118,82,70,-0.5328878294676542],[118,82,71,-0.5327760968357325],[118,82,72,-0.5329174771904945],[118,82,73,-0.5334567576646805],[118,82,74,-0.5341567937284708],[118,82,75,-0.534636203199625],[118,82,76,-0.534485774114728],[118,82,77,-0.5334059037268162],[118,82,78,-0.5312022604048252],[118,82,79,-0.5284954980015755],[118,83,64,-0.540659885853529],[118,83,65,-0.5400260500609875],[118,83,66,-0.5383706800639629],[118,83,67,-0.5361858643591404],[118,83,68,-0.5343015473335981],[118,83,69,-0.533218989148736],[118,83,70,-0.5328878294676542],[118,83,71,-0.5327760968357325],[118,83,72,-0.5329174771904945],[118,83,73,-0.5334567576646805],[118,83,74,-0.5341567937284708],[118,83,75,-0.534636203199625],[118,83,76,-0.534485774114728],[118,83,77,-0.5334059037268162],[118,83,78,-0.5312022604048252],[118,83,79,-0.5284954980015755],[118,84,64,-0.540659885853529],[118,84,65,-0.5400260500609875],[118,84,66,-0.5383706800639629],[118,84,67,-0.5361858643591404],[118,84,68,-0.5343015473335981],[118,84,69,-0.533218989148736],[118,84,70,-0.5328878294676542],[118,84,71,-0.5327760968357325],[118,84,72,-0.5329174771904945],[118,84,73,-0.5334567576646805],[118,84,74,-0.5341567937284708],[118,84,75,-0.534636203199625],[118,84,76,-0.534485774114728],[118,84,77,-0.5334059037268162],[118,84,78,-0.5312022604048252],[118,84,79,-0.5284954980015755],[118,85,64,-0.540659885853529],[118,85,65,-0.5400260500609875],[118,85,66,-0.5383706800639629],[118,85,67,-0.5361858643591404],[118,85,68,-0.5343015473335981],[118,85,69,-0.533218989148736],[118,85,70,-0.5328878294676542],[118,85,71,-0.5327760968357325],[118,85,72,-0.5329174771904945],[118,85,73,-0.5334567576646805],[118,85,74,-0.5341567937284708],[118,85,75,-0.534636203199625],[118,85,76,-0.534485774114728],[118,85,77,-0.5334059037268162],[118,85,78,-0.5312022604048252],[118,85,79,-0.5284954980015755],[118,86,64,-0.540659885853529],[118,86,65,-0.5400260500609875],[118,86,66,-0.5383706800639629],[118,86,67,-0.5361858643591404],[118,86,68,-0.5343015473335981],[118,86,69,-0.533218989148736],[118,86,70,-0.5328878294676542],[118,86,71,-0.5327760968357325],[118,86,72,-0.5329174771904945],[118,86,73,-0.5334567576646805],[118,86,74,-0.5341567937284708],[118,86,75,-0.534636203199625],[118,86,76,-0.534485774114728],[118,86,77,-0.5334059037268162],[118,86,78,-0.5312022604048252],[118,86,79,-0.5284954980015755],[118,87,64,-0.540659885853529],[118,87,65,-0.5400260500609875],[118,87,66,-0.5383706800639629],[118,87,67,-0.5361858643591404],[118,87,68,-0.5343015473335981],[118,87,69,-0.533218989148736],[118,87,70,-0.5328878294676542],[118,87,71,-0.5327760968357325],[118,87,72,-0.5329174771904945],[118,87,73,-0.5334567576646805],[118,87,74,-0.5341567937284708],[118,87,75,-0.534636203199625],[118,87,76,-0.534485774114728],[118,87,77,-0.5334059037268162],[118,87,78,-0.5312022604048252],[118,87,79,-0.5284954980015755],[118,88,64,-0.540659885853529],[118,88,65,-0.5400260500609875],[118,88,66,-0.5383706800639629],[118,88,67,-0.5361858643591404],[118,88,68,-0.5343015473335981],[118,88,69,-0.533218989148736],[118,88,70,-0.5328878294676542],[118,88,71,-0.5327760968357325],[118,88,72,-0.5329174771904945],[118,88,73,-0.5334567576646805],[118,88,74,-0.5341567937284708],[118,88,75,-0.534636203199625],[118,88,76,-0.534485774114728],[118,88,77,-0.5334059037268162],[118,88,78,-0.5312022604048252],[118,88,79,-0.5284954980015755],[118,89,64,-0.540659885853529],[118,89,65,-0.5400260500609875],[118,89,66,-0.5383706800639629],[118,89,67,-0.5361858643591404],[118,89,68,-0.5343015473335981],[118,89,69,-0.533218989148736],[118,89,70,-0.5328878294676542],[118,89,71,-0.5327760968357325],[118,89,72,-0.5329174771904945],[118,89,73,-0.5334567576646805],[118,89,74,-0.5341567937284708],[118,89,75,-0.534636203199625],[118,89,76,-0.534485774114728],[118,89,77,-0.5334059037268162],[118,89,78,-0.5312022604048252],[118,89,79,-0.5284954980015755],[118,90,64,-0.540659885853529],[118,90,65,-0.5400260500609875],[118,90,66,-0.5383706800639629],[118,90,67,-0.5361858643591404],[118,90,68,-0.5343015473335981],[118,90,69,-0.533218989148736],[118,90,70,-0.5328878294676542],[118,90,71,-0.5327760968357325],[118,90,72,-0.5329174771904945],[118,90,73,-0.5334567576646805],[118,90,74,-0.5341567937284708],[118,90,75,-0.534636203199625],[118,90,76,-0.534485774114728],[118,90,77,-0.5334059037268162],[118,90,78,-0.5312022604048252],[118,90,79,-0.5284954980015755],[118,91,64,-0.540659885853529],[118,91,65,-0.5400260500609875],[118,91,66,-0.5383706800639629],[118,91,67,-0.5361858643591404],[118,91,68,-0.5343015473335981],[118,91,69,-0.533218989148736],[118,91,70,-0.5328878294676542],[118,91,71,-0.5327760968357325],[118,91,72,-0.5329174771904945],[118,91,73,-0.5334567576646805],[118,91,74,-0.5341567937284708],[118,91,75,-0.534636203199625],[118,91,76,-0.534485774114728],[118,91,77,-0.5334059037268162],[118,91,78,-0.5312022604048252],[118,91,79,-0.5284954980015755],[118,92,64,-0.540659885853529],[118,92,65,-0.5400260500609875],[118,92,66,-0.5383706800639629],[118,92,67,-0.5361858643591404],[118,92,68,-0.5343015473335981],[118,92,69,-0.533218989148736],[118,92,70,-0.5328878294676542],[118,92,71,-0.5327760968357325],[118,92,72,-0.5329174771904945],[118,92,73,-0.5334567576646805],[118,92,74,-0.5341567937284708],[118,92,75,-0.534636203199625],[118,92,76,-0.534485774114728],[118,92,77,-0.5334059037268162],[118,92,78,-0.5312022604048252],[118,92,79,-0.5284954980015755],[118,93,64,-0.540659885853529],[118,93,65,-0.5400260500609875],[118,93,66,-0.5383706800639629],[118,93,67,-0.5361858643591404],[118,93,68,-0.5343015473335981],[118,93,69,-0.533218989148736],[118,93,70,-0.5328878294676542],[118,93,71,-0.5327760968357325],[118,93,72,-0.5329174771904945],[118,93,73,-0.5334567576646805],[118,93,74,-0.5341567937284708],[118,93,75,-0.534636203199625],[118,93,76,-0.534485774114728],[118,93,77,-0.5334059037268162],[118,93,78,-0.5312022604048252],[118,93,79,-0.5284954980015755],[118,94,64,-0.540659885853529],[118,94,65,-0.5400260500609875],[118,94,66,-0.5383706800639629],[118,94,67,-0.5361858643591404],[118,94,68,-0.5343015473335981],[118,94,69,-0.533218989148736],[118,94,70,-0.5328878294676542],[118,94,71,-0.5327760968357325],[118,94,72,-0.5329174771904945],[118,94,73,-0.5334567576646805],[118,94,74,-0.5341567937284708],[118,94,75,-0.534636203199625],[118,94,76,-0.534485774114728],[118,94,77,-0.5334059037268162],[118,94,78,-0.5312022604048252],[118,94,79,-0.5284954980015755],[118,95,64,-0.540659885853529],[118,95,65,-0.5400260500609875],[118,95,66,-0.5383706800639629],[118,95,67,-0.5361858643591404],[118,95,68,-0.5343015473335981],[118,95,69,-0.533218989148736],[118,95,70,-0.5328878294676542],[118,95,71,-0.5327760968357325],[118,95,72,-0.5329174771904945],[118,95,73,-0.5334567576646805],[118,95,74,-0.5341567937284708],[118,95,75,-0.534636203199625],[118,95,76,-0.534485774114728],[118,95,77,-0.5334059037268162],[118,95,78,-0.5312022604048252],[118,95,79,-0.5284954980015755],[118,96,64,-0.540659885853529],[118,96,65,-0.5400260500609875],[118,96,66,-0.5383706800639629],[118,96,67,-0.5361858643591404],[118,96,68,-0.5343015473335981],[118,96,69,-0.533218989148736],[118,96,70,-0.5328878294676542],[118,96,71,-0.5327760968357325],[118,96,72,-0.5329174771904945],[118,96,73,-0.5334567576646805],[118,96,74,-0.5341567937284708],[118,96,75,-0.534636203199625],[118,96,76,-0.534485774114728],[118,96,77,-0.5334059037268162],[118,96,78,-0.5312022604048252],[118,96,79,-0.5284954980015755],[118,97,64,-0.540659885853529],[118,97,65,-0.5400260500609875],[118,97,66,-0.5383706800639629],[118,97,67,-0.5361858643591404],[118,97,68,-0.5343015473335981],[118,97,69,-0.533218989148736],[118,97,70,-0.5328878294676542],[118,97,71,-0.5327760968357325],[118,97,72,-0.5329174771904945],[118,97,73,-0.5334567576646805],[118,97,74,-0.5341567937284708],[118,97,75,-0.534636203199625],[118,97,76,-0.534485774114728],[118,97,77,-0.5334059037268162],[118,97,78,-0.5312022604048252],[118,97,79,-0.5284954980015755],[118,98,64,-0.540659885853529],[118,98,65,-0.5400260500609875],[118,98,66,-0.5383706800639629],[118,98,67,-0.5361858643591404],[118,98,68,-0.5343015473335981],[118,98,69,-0.533218989148736],[118,98,70,-0.5328878294676542],[118,98,71,-0.5327760968357325],[118,98,72,-0.5329174771904945],[118,98,73,-0.5334567576646805],[118,98,74,-0.5341567937284708],[118,98,75,-0.534636203199625],[118,98,76,-0.534485774114728],[118,98,77,-0.5334059037268162],[118,98,78,-0.5312022604048252],[118,98,79,-0.5284954980015755],[118,99,64,-0.540659885853529],[118,99,65,-0.5400260500609875],[118,99,66,-0.5383706800639629],[118,99,67,-0.5361858643591404],[118,99,68,-0.5343015473335981],[118,99,69,-0.533218989148736],[118,99,70,-0.5328878294676542],[118,99,71,-0.5327760968357325],[118,99,72,-0.5329174771904945],[118,99,73,-0.5334567576646805],[118,99,74,-0.5341567937284708],[118,99,75,-0.534636203199625],[118,99,76,-0.534485774114728],[118,99,77,-0.5334059037268162],[118,99,78,-0.5312022604048252],[118,99,79,-0.5284954980015755],[118,100,64,-0.540659885853529],[118,100,65,-0.5400260500609875],[118,100,66,-0.5383706800639629],[118,100,67,-0.5361858643591404],[118,100,68,-0.5343015473335981],[118,100,69,-0.533218989148736],[118,100,70,-0.5328878294676542],[118,100,71,-0.5327760968357325],[118,100,72,-0.5329174771904945],[118,100,73,-0.5334567576646805],[118,100,74,-0.5341567937284708],[118,100,75,-0.534636203199625],[118,100,76,-0.534485774114728],[118,100,77,-0.5334059037268162],[118,100,78,-0.5312022604048252],[118,100,79,-0.5284954980015755],[118,101,64,-0.540659885853529],[118,101,65,-0.5400260500609875],[118,101,66,-0.5383706800639629],[118,101,67,-0.5361858643591404],[118,101,68,-0.5343015473335981],[118,101,69,-0.533218989148736],[118,101,70,-0.5328878294676542],[118,101,71,-0.5327760968357325],[118,101,72,-0.5329174771904945],[118,101,73,-0.5334567576646805],[118,101,74,-0.5341567937284708],[118,101,75,-0.534636203199625],[118,101,76,-0.534485774114728],[118,101,77,-0.5334059037268162],[118,101,78,-0.5312022604048252],[118,101,79,-0.5284954980015755],[118,102,64,-0.540659885853529],[118,102,65,-0.5400260500609875],[118,102,66,-0.5383706800639629],[118,102,67,-0.5361858643591404],[118,102,68,-0.5343015473335981],[118,102,69,-0.533218989148736],[118,102,70,-0.5328878294676542],[118,102,71,-0.5327760968357325],[118,102,72,-0.5329174771904945],[118,102,73,-0.5334567576646805],[118,102,74,-0.5341567937284708],[118,102,75,-0.534636203199625],[118,102,76,-0.534485774114728],[118,102,77,-0.5334059037268162],[118,102,78,-0.5312022604048252],[118,102,79,-0.5284954980015755],[118,103,64,-0.540659885853529],[118,103,65,-0.5400260500609875],[118,103,66,-0.5383706800639629],[118,103,67,-0.5361858643591404],[118,103,68,-0.5343015473335981],[118,103,69,-0.533218989148736],[118,103,70,-0.5328878294676542],[118,103,71,-0.5327760968357325],[118,103,72,-0.5329174771904945],[118,103,73,-0.5334567576646805],[118,103,74,-0.5341567937284708],[118,103,75,-0.534636203199625],[118,103,76,-0.534485774114728],[118,103,77,-0.5334059037268162],[118,103,78,-0.5312022604048252],[118,103,79,-0.5284954980015755],[118,104,64,-0.540659885853529],[118,104,65,-0.5400260500609875],[118,104,66,-0.5383706800639629],[118,104,67,-0.5361858643591404],[118,104,68,-0.5343015473335981],[118,104,69,-0.533218989148736],[118,104,70,-0.5328878294676542],[118,104,71,-0.5327760968357325],[118,104,72,-0.5329174771904945],[118,104,73,-0.5334567576646805],[118,104,74,-0.5341567937284708],[118,104,75,-0.534636203199625],[118,104,76,-0.534485774114728],[118,104,77,-0.5334059037268162],[118,104,78,-0.5312022604048252],[118,104,79,-0.5284954980015755],[118,105,64,-0.540659885853529],[118,105,65,-0.5400260500609875],[118,105,66,-0.5383706800639629],[118,105,67,-0.5361858643591404],[118,105,68,-0.5343015473335981],[118,105,69,-0.533218989148736],[118,105,70,-0.5328878294676542],[118,105,71,-0.5327760968357325],[118,105,72,-0.5329174771904945],[118,105,73,-0.5334567576646805],[118,105,74,-0.5341567937284708],[118,105,75,-0.534636203199625],[118,105,76,-0.534485774114728],[118,105,77,-0.5334059037268162],[118,105,78,-0.5312022604048252],[118,105,79,-0.5284954980015755],[118,106,64,-0.540659885853529],[118,106,65,-0.5400260500609875],[118,106,66,-0.5383706800639629],[118,106,67,-0.5361858643591404],[118,106,68,-0.5343015473335981],[118,106,69,-0.533218989148736],[118,106,70,-0.5328878294676542],[118,106,71,-0.5327760968357325],[118,106,72,-0.5329174771904945],[118,106,73,-0.5334567576646805],[118,106,74,-0.5341567937284708],[118,106,75,-0.534636203199625],[118,106,76,-0.534485774114728],[118,106,77,-0.5334059037268162],[118,106,78,-0.5312022604048252],[118,106,79,-0.5284954980015755],[118,107,64,-0.540659885853529],[118,107,65,-0.5400260500609875],[118,107,66,-0.5383706800639629],[118,107,67,-0.5361858643591404],[118,107,68,-0.5343015473335981],[118,107,69,-0.533218989148736],[118,107,70,-0.5328878294676542],[118,107,71,-0.5327760968357325],[118,107,72,-0.5329174771904945],[118,107,73,-0.5334567576646805],[118,107,74,-0.5341567937284708],[118,107,75,-0.534636203199625],[118,107,76,-0.534485774114728],[118,107,77,-0.5334059037268162],[118,107,78,-0.5312022604048252],[118,107,79,-0.5284954980015755],[118,108,64,-0.540659885853529],[118,108,65,-0.5400260500609875],[118,108,66,-0.5383706800639629],[118,108,67,-0.5361858643591404],[118,108,68,-0.5343015473335981],[118,108,69,-0.533218989148736],[118,108,70,-0.5328878294676542],[118,108,71,-0.5327760968357325],[118,108,72,-0.5329174771904945],[118,108,73,-0.5334567576646805],[118,108,74,-0.5341567937284708],[118,108,75,-0.534636203199625],[118,108,76,-0.534485774114728],[118,108,77,-0.5334059037268162],[118,108,78,-0.5312022604048252],[118,108,79,-0.5284954980015755],[118,109,64,-0.540659885853529],[118,109,65,-0.5400260500609875],[118,109,66,-0.5383706800639629],[118,109,67,-0.5361858643591404],[118,109,68,-0.5343015473335981],[118,109,69,-0.533218989148736],[118,109,70,-0.5328878294676542],[118,109,71,-0.5327760968357325],[118,109,72,-0.5329174771904945],[118,109,73,-0.5334567576646805],[118,109,74,-0.5341567937284708],[118,109,75,-0.534636203199625],[118,109,76,-0.534485774114728],[118,109,77,-0.5334059037268162],[118,109,78,-0.5312022604048252],[118,109,79,-0.5284954980015755],[118,110,64,-0.540659885853529],[118,110,65,-0.5400260500609875],[118,110,66,-0.5383706800639629],[118,110,67,-0.5361858643591404],[118,110,68,-0.5343015473335981],[118,110,69,-0.533218989148736],[118,110,70,-0.5328878294676542],[118,110,71,-0.5327760968357325],[118,110,72,-0.5329174771904945],[118,110,73,-0.5334567576646805],[118,110,74,-0.5341567937284708],[118,110,75,-0.534636203199625],[118,110,76,-0.534485774114728],[118,110,77,-0.5334059037268162],[118,110,78,-0.5312022604048252],[118,110,79,-0.5284954980015755],[118,111,64,-0.540659885853529],[118,111,65,-0.5400260500609875],[118,111,66,-0.5383706800639629],[118,111,67,-0.5361858643591404],[118,111,68,-0.5343015473335981],[118,111,69,-0.533218989148736],[118,111,70,-0.5328878294676542],[118,111,71,-0.5327760968357325],[118,111,72,-0.5329174771904945],[118,111,73,-0.5334567576646805],[118,111,74,-0.5341567937284708],[118,111,75,-0.534636203199625],[118,111,76,-0.534485774114728],[118,111,77,-0.5334059037268162],[118,111,78,-0.5312022604048252],[118,111,79,-0.5284954980015755],[118,112,64,-0.540659885853529],[118,112,65,-0.5400260500609875],[118,112,66,-0.5383706800639629],[118,112,67,-0.5361858643591404],[118,112,68,-0.5343015473335981],[118,112,69,-0.533218989148736],[118,112,70,-0.5328878294676542],[118,112,71,-0.5327760968357325],[118,112,72,-0.5329174771904945],[118,112,73,-0.5334567576646805],[118,112,74,-0.5341567937284708],[118,112,75,-0.534636203199625],[118,112,76,-0.534485774114728],[118,112,77,-0.5334059037268162],[118,112,78,-0.5312022604048252],[118,112,79,-0.5284954980015755],[118,113,64,-0.540659885853529],[118,113,65,-0.5400260500609875],[118,113,66,-0.5383706800639629],[118,113,67,-0.5361858643591404],[118,113,68,-0.5343015473335981],[118,113,69,-0.533218989148736],[118,113,70,-0.5328878294676542],[118,113,71,-0.5327760968357325],[118,113,72,-0.5329174771904945],[118,113,73,-0.5334567576646805],[118,113,74,-0.5341567937284708],[118,113,75,-0.534636203199625],[118,113,76,-0.534485774114728],[118,113,77,-0.5334059037268162],[118,113,78,-0.5312022604048252],[118,113,79,-0.5284954980015755],[118,114,64,-0.540659885853529],[118,114,65,-0.5400260500609875],[118,114,66,-0.5383706800639629],[118,114,67,-0.5361858643591404],[118,114,68,-0.5343015473335981],[118,114,69,-0.533218989148736],[118,114,70,-0.5328878294676542],[118,114,71,-0.5327760968357325],[118,114,72,-0.5329174771904945],[118,114,73,-0.5334567576646805],[118,114,74,-0.5341567937284708],[118,114,75,-0.534636203199625],[118,114,76,-0.534485774114728],[118,114,77,-0.5334059037268162],[118,114,78,-0.5312022604048252],[118,114,79,-0.5284954980015755],[118,115,64,-0.540659885853529],[118,115,65,-0.5400260500609875],[118,115,66,-0.5383706800639629],[118,115,67,-0.5361858643591404],[118,115,68,-0.5343015473335981],[118,115,69,-0.533218989148736],[118,115,70,-0.5328878294676542],[118,115,71,-0.5327760968357325],[118,115,72,-0.5329174771904945],[118,115,73,-0.5334567576646805],[118,115,74,-0.5341567937284708],[118,115,75,-0.534636203199625],[118,115,76,-0.534485774114728],[118,115,77,-0.5334059037268162],[118,115,78,-0.5312022604048252],[118,115,79,-0.5284954980015755],[118,116,64,-0.540659885853529],[118,116,65,-0.5400260500609875],[118,116,66,-0.5383706800639629],[118,116,67,-0.5361858643591404],[118,116,68,-0.5343015473335981],[118,116,69,-0.533218989148736],[118,116,70,-0.5328878294676542],[118,116,71,-0.5327760968357325],[118,116,72,-0.5329174771904945],[118,116,73,-0.5334567576646805],[118,116,74,-0.5341567937284708],[118,116,75,-0.534636203199625],[118,116,76,-0.534485774114728],[118,116,77,-0.5334059037268162],[118,116,78,-0.5312022604048252],[118,116,79,-0.5284954980015755],[118,117,64,-0.540659885853529],[118,117,65,-0.5400260500609875],[118,117,66,-0.5383706800639629],[118,117,67,-0.5361858643591404],[118,117,68,-0.5343015473335981],[118,117,69,-0.533218989148736],[118,117,70,-0.5328878294676542],[118,117,71,-0.5327760968357325],[118,117,72,-0.5329174771904945],[118,117,73,-0.5334567576646805],[118,117,74,-0.5341567937284708],[118,117,75,-0.534636203199625],[118,117,76,-0.534485774114728],[118,117,77,-0.5334059037268162],[118,117,78,-0.5312022604048252],[118,117,79,-0.5284954980015755],[118,118,64,-0.540659885853529],[118,118,65,-0.5400260500609875],[118,118,66,-0.5383706800639629],[118,118,67,-0.5361858643591404],[118,118,68,-0.5343015473335981],[118,118,69,-0.533218989148736],[118,118,70,-0.5328878294676542],[118,118,71,-0.5327760968357325],[118,118,72,-0.5329174771904945],[118,118,73,-0.5334567576646805],[118,118,74,-0.5341567937284708],[118,118,75,-0.534636203199625],[118,118,76,-0.534485774114728],[118,118,77,-0.5334059037268162],[118,118,78,-0.5312022604048252],[118,118,79,-0.5284954980015755],[118,119,64,-0.540659885853529],[118,119,65,-0.5400260500609875],[118,119,66,-0.5383706800639629],[118,119,67,-0.5361858643591404],[118,119,68,-0.5343015473335981],[118,119,69,-0.533218989148736],[118,119,70,-0.5328878294676542],[118,119,71,-0.5327760968357325],[118,119,72,-0.5329174771904945],[118,119,73,-0.5334567576646805],[118,119,74,-0.5341567937284708],[118,119,75,-0.534636203199625],[118,119,76,-0.534485774114728],[118,119,77,-0.5334059037268162],[118,119,78,-0.5312022604048252],[118,119,79,-0.5284954980015755],[118,120,64,-0.540659885853529],[118,120,65,-0.5400260500609875],[118,120,66,-0.5383706800639629],[118,120,67,-0.5361858643591404],[118,120,68,-0.5343015473335981],[118,120,69,-0.533218989148736],[118,120,70,-0.5328878294676542],[118,120,71,-0.5327760968357325],[118,120,72,-0.5329174771904945],[118,120,73,-0.5334567576646805],[118,120,74,-0.5341567937284708],[118,120,75,-0.534636203199625],[118,120,76,-0.534485774114728],[118,120,77,-0.5334059037268162],[118,120,78,-0.5312022604048252],[118,120,79,-0.5284954980015755],[118,121,64,-0.540659885853529],[118,121,65,-0.5400260500609875],[118,121,66,-0.5383706800639629],[118,121,67,-0.5361858643591404],[118,121,68,-0.5343015473335981],[118,121,69,-0.533218989148736],[118,121,70,-0.5328878294676542],[118,121,71,-0.5327760968357325],[118,121,72,-0.5329174771904945],[118,121,73,-0.5334567576646805],[118,121,74,-0.5341567937284708],[118,121,75,-0.534636203199625],[118,121,76,-0.534485774114728],[118,121,77,-0.5334059037268162],[118,121,78,-0.5312022604048252],[118,121,79,-0.5284954980015755],[118,122,64,-0.540659885853529],[118,122,65,-0.5400260500609875],[118,122,66,-0.5383706800639629],[118,122,67,-0.5361858643591404],[118,122,68,-0.5343015473335981],[118,122,69,-0.533218989148736],[118,122,70,-0.5328878294676542],[118,122,71,-0.5327760968357325],[118,122,72,-0.5329174771904945],[118,122,73,-0.5334567576646805],[118,122,74,-0.5341567937284708],[118,122,75,-0.534636203199625],[118,122,76,-0.534485774114728],[118,122,77,-0.5334059037268162],[118,122,78,-0.5312022604048252],[118,122,79,-0.5284954980015755],[118,123,64,-0.540659885853529],[118,123,65,-0.5400260500609875],[118,123,66,-0.5383706800639629],[118,123,67,-0.5361858643591404],[118,123,68,-0.5343015473335981],[118,123,69,-0.533218989148736],[118,123,70,-0.5328878294676542],[118,123,71,-0.5327760968357325],[118,123,72,-0.5329174771904945],[118,123,73,-0.5334567576646805],[118,123,74,-0.5341567937284708],[118,123,75,-0.534636203199625],[118,123,76,-0.534485774114728],[118,123,77,-0.5334059037268162],[118,123,78,-0.5312022604048252],[118,123,79,-0.5284954980015755],[118,124,64,-0.540659885853529],[118,124,65,-0.5400260500609875],[118,124,66,-0.5383706800639629],[118,124,67,-0.5361858643591404],[118,124,68,-0.5343015473335981],[118,124,69,-0.533218989148736],[118,124,70,-0.5328878294676542],[118,124,71,-0.5327760968357325],[118,124,72,-0.5329174771904945],[118,124,73,-0.5334567576646805],[118,124,74,-0.5341567937284708],[118,124,75,-0.534636203199625],[118,124,76,-0.534485774114728],[118,124,77,-0.5334059037268162],[118,124,78,-0.5312022604048252],[118,124,79,-0.5284954980015755],[118,125,64,-0.540659885853529],[118,125,65,-0.5400260500609875],[118,125,66,-0.5383706800639629],[118,125,67,-0.5361858643591404],[118,125,68,-0.5343015473335981],[118,125,69,-0.533218989148736],[118,125,70,-0.5328878294676542],[118,125,71,-0.5327760968357325],[118,125,72,-0.5329174771904945],[118,125,73,-0.5334567576646805],[118,125,74,-0.5341567937284708],[118,125,75,-0.534636203199625],[118,125,76,-0.534485774114728],[118,125,77,-0.5334059037268162],[118,125,78,-0.5312022604048252],[118,125,79,-0.5284954980015755],[118,126,64,-0.540659885853529],[118,126,65,-0.5400260500609875],[118,126,66,-0.5383706800639629],[118,126,67,-0.5361858643591404],[118,126,68,-0.5343015473335981],[118,126,69,-0.533218989148736],[118,126,70,-0.5328878294676542],[118,126,71,-0.5327760968357325],[118,126,72,-0.5329174771904945],[118,126,73,-0.5334567576646805],[118,126,74,-0.5341567937284708],[118,126,75,-0.534636203199625],[118,126,76,-0.534485774114728],[118,126,77,-0.5334059037268162],[118,126,78,-0.5312022604048252],[118,126,79,-0.5284954980015755],[118,127,64,-0.540659885853529],[118,127,65,-0.5400260500609875],[118,127,66,-0.5383706800639629],[118,127,67,-0.5361858643591404],[118,127,68,-0.5343015473335981],[118,127,69,-0.533218989148736],[118,127,70,-0.5328878294676542],[118,127,71,-0.5327760968357325],[118,127,72,-0.5329174771904945],[118,127,73,-0.5334567576646805],[118,127,74,-0.5341567937284708],[118,127,75,-0.534636203199625],[118,127,76,-0.534485774114728],[118,127,77,-0.5334059037268162],[118,127,78,-0.5312022604048252],[118,127,79,-0.5284954980015755],[118,128,64,-0.540659885853529],[118,128,65,-0.5400260500609875],[118,128,66,-0.5383706800639629],[118,128,67,-0.5361858643591404],[118,128,68,-0.5343015473335981],[118,128,69,-0.533218989148736],[118,128,70,-0.5328878294676542],[118,128,71,-0.5327760968357325],[118,128,72,-0.5329174771904945],[118,128,73,-0.5334567576646805],[118,128,74,-0.5341567937284708],[118,128,75,-0.534636203199625],[118,128,76,-0.534485774114728],[118,128,77,-0.5334059037268162],[118,128,78,-0.5312022604048252],[118,128,79,-0.5284954980015755],[118,129,64,-0.540659885853529],[118,129,65,-0.5400260500609875],[118,129,66,-0.5383706800639629],[118,129,67,-0.5361858643591404],[118,129,68,-0.5343015473335981],[118,129,69,-0.533218989148736],[118,129,70,-0.5328878294676542],[118,129,71,-0.5327760968357325],[118,129,72,-0.5329174771904945],[118,129,73,-0.5334567576646805],[118,129,74,-0.5341567937284708],[118,129,75,-0.534636203199625],[118,129,76,-0.534485774114728],[118,129,77,-0.5334059037268162],[118,129,78,-0.5312022604048252],[118,129,79,-0.5284954980015755],[118,130,64,-0.540659885853529],[118,130,65,-0.5400260500609875],[118,130,66,-0.5383706800639629],[118,130,67,-0.5361858643591404],[118,130,68,-0.5343015473335981],[118,130,69,-0.533218989148736],[118,130,70,-0.5328878294676542],[118,130,71,-0.5327760968357325],[118,130,72,-0.5329174771904945],[118,130,73,-0.5334567576646805],[118,130,74,-0.5341567937284708],[118,130,75,-0.534636203199625],[118,130,76,-0.534485774114728],[118,130,77,-0.5334059037268162],[118,130,78,-0.5312022604048252],[118,130,79,-0.5284954980015755],[118,131,64,-0.540659885853529],[118,131,65,-0.5400260500609875],[118,131,66,-0.5383706800639629],[118,131,67,-0.5361858643591404],[118,131,68,-0.5343015473335981],[118,131,69,-0.533218989148736],[118,131,70,-0.5328878294676542],[118,131,71,-0.5327760968357325],[118,131,72,-0.5329174771904945],[118,131,73,-0.5334567576646805],[118,131,74,-0.5341567937284708],[118,131,75,-0.534636203199625],[118,131,76,-0.534485774114728],[118,131,77,-0.5334059037268162],[118,131,78,-0.5312022604048252],[118,131,79,-0.5284954980015755],[118,132,64,-0.540659885853529],[118,132,65,-0.5400260500609875],[118,132,66,-0.5383706800639629],[118,132,67,-0.5361858643591404],[118,132,68,-0.5343015473335981],[118,132,69,-0.533218989148736],[118,132,70,-0.5328878294676542],[118,132,71,-0.5327760968357325],[118,132,72,-0.5329174771904945],[118,132,73,-0.5334567576646805],[118,132,74,-0.5341567937284708],[118,132,75,-0.534636203199625],[118,132,76,-0.534485774114728],[118,132,77,-0.5334059037268162],[118,132,78,-0.5312022604048252],[118,132,79,-0.5284954980015755],[118,133,64,-0.540659885853529],[118,133,65,-0.5400260500609875],[118,133,66,-0.5383706800639629],[118,133,67,-0.5361858643591404],[118,133,68,-0.5343015473335981],[118,133,69,-0.533218989148736],[118,133,70,-0.5328878294676542],[118,133,71,-0.5327760968357325],[118,133,72,-0.5329174771904945],[118,133,73,-0.5334567576646805],[118,133,74,-0.5341567937284708],[118,133,75,-0.534636203199625],[118,133,76,-0.534485774114728],[118,133,77,-0.5334059037268162],[118,133,78,-0.5312022604048252],[118,133,79,-0.5284954980015755],[118,134,64,-0.540659885853529],[118,134,65,-0.5400260500609875],[118,134,66,-0.5383706800639629],[118,134,67,-0.5361858643591404],[118,134,68,-0.5343015473335981],[118,134,69,-0.533218989148736],[118,134,70,-0.5328878294676542],[118,134,71,-0.5327760968357325],[118,134,72,-0.5329174771904945],[118,134,73,-0.5334567576646805],[118,134,74,-0.5341567937284708],[118,134,75,-0.534636203199625],[118,134,76,-0.534485774114728],[118,134,77,-0.5334059037268162],[118,134,78,-0.5312022604048252],[118,134,79,-0.5284954980015755],[118,135,64,-0.540659885853529],[118,135,65,-0.5400260500609875],[118,135,66,-0.5383706800639629],[118,135,67,-0.5361858643591404],[118,135,68,-0.5343015473335981],[118,135,69,-0.533218989148736],[118,135,70,-0.5328878294676542],[118,135,71,-0.5327760968357325],[118,135,72,-0.5329174771904945],[118,135,73,-0.5334567576646805],[118,135,74,-0.5341567937284708],[118,135,75,-0.534636203199625],[118,135,76,-0.534485774114728],[118,135,77,-0.5334059037268162],[118,135,78,-0.5312022604048252],[118,135,79,-0.5284954980015755],[118,136,64,-0.540659885853529],[118,136,65,-0.5400260500609875],[118,136,66,-0.5383706800639629],[118,136,67,-0.5361858643591404],[118,136,68,-0.5343015473335981],[118,136,69,-0.533218989148736],[118,136,70,-0.5328878294676542],[118,136,71,-0.5327760968357325],[118,136,72,-0.5329174771904945],[118,136,73,-0.5334567576646805],[118,136,74,-0.5341567937284708],[118,136,75,-0.534636203199625],[118,136,76,-0.534485774114728],[118,136,77,-0.5334059037268162],[118,136,78,-0.5312022604048252],[118,136,79,-0.5284954980015755],[118,137,64,-0.540659885853529],[118,137,65,-0.5400260500609875],[118,137,66,-0.5383706800639629],[118,137,67,-0.5361858643591404],[118,137,68,-0.5343015473335981],[118,137,69,-0.533218989148736],[118,137,70,-0.5328878294676542],[118,137,71,-0.5327760968357325],[118,137,72,-0.5329174771904945],[118,137,73,-0.5334567576646805],[118,137,74,-0.5341567937284708],[118,137,75,-0.534636203199625],[118,137,76,-0.534485774114728],[118,137,77,-0.5334059037268162],[118,137,78,-0.5312022604048252],[118,137,79,-0.5284954980015755],[118,138,64,-0.540659885853529],[118,138,65,-0.5400260500609875],[118,138,66,-0.5383706800639629],[118,138,67,-0.5361858643591404],[118,138,68,-0.5343015473335981],[118,138,69,-0.533218989148736],[118,138,70,-0.5328878294676542],[118,138,71,-0.5327760968357325],[118,138,72,-0.5329174771904945],[118,138,73,-0.5334567576646805],[118,138,74,-0.5341567937284708],[118,138,75,-0.534636203199625],[118,138,76,-0.534485774114728],[118,138,77,-0.5334059037268162],[118,138,78,-0.5312022604048252],[118,138,79,-0.5284954980015755],[118,139,64,-0.540659885853529],[118,139,65,-0.5400260500609875],[118,139,66,-0.5383706800639629],[118,139,67,-0.5361858643591404],[118,139,68,-0.5343015473335981],[118,139,69,-0.533218989148736],[118,139,70,-0.5328878294676542],[118,139,71,-0.5327760968357325],[118,139,72,-0.5329174771904945],[118,139,73,-0.5334567576646805],[118,139,74,-0.5341567937284708],[118,139,75,-0.534636203199625],[118,139,76,-0.534485774114728],[118,139,77,-0.5334059037268162],[118,139,78,-0.5312022604048252],[118,139,79,-0.5284954980015755],[118,140,64,-0.540659885853529],[118,140,65,-0.5400260500609875],[118,140,66,-0.5383706800639629],[118,140,67,-0.5361858643591404],[118,140,68,-0.5343015473335981],[118,140,69,-0.533218989148736],[118,140,70,-0.5328878294676542],[118,140,71,-0.5327760968357325],[118,140,72,-0.5329174771904945],[118,140,73,-0.5334567576646805],[118,140,74,-0.5341567937284708],[118,140,75,-0.534636203199625],[118,140,76,-0.534485774114728],[118,140,77,-0.5334059037268162],[118,140,78,-0.5312022604048252],[118,140,79,-0.5284954980015755],[118,141,64,-0.540659885853529],[118,141,65,-0.5400260500609875],[118,141,66,-0.5383706800639629],[118,141,67,-0.5361858643591404],[118,141,68,-0.5343015473335981],[118,141,69,-0.533218989148736],[118,141,70,-0.5328878294676542],[118,141,71,-0.5327760968357325],[118,141,72,-0.5329174771904945],[118,141,73,-0.5334567576646805],[118,141,74,-0.5341567937284708],[118,141,75,-0.534636203199625],[118,141,76,-0.534485774114728],[118,141,77,-0.5334059037268162],[118,141,78,-0.5312022604048252],[118,141,79,-0.5284954980015755],[118,142,64,-0.540659885853529],[118,142,65,-0.5400260500609875],[118,142,66,-0.5383706800639629],[118,142,67,-0.5361858643591404],[118,142,68,-0.5343015473335981],[118,142,69,-0.533218989148736],[118,142,70,-0.5328878294676542],[118,142,71,-0.5327760968357325],[118,142,72,-0.5329174771904945],[118,142,73,-0.5334567576646805],[118,142,74,-0.5341567937284708],[118,142,75,-0.534636203199625],[118,142,76,-0.534485774114728],[118,142,77,-0.5334059037268162],[118,142,78,-0.5312022604048252],[118,142,79,-0.5284954980015755],[118,143,64,-0.540659885853529],[118,143,65,-0.5400260500609875],[118,143,66,-0.5383706800639629],[118,143,67,-0.5361858643591404],[118,143,68,-0.5343015473335981],[118,143,69,-0.533218989148736],[118,143,70,-0.5328878294676542],[118,143,71,-0.5327760968357325],[118,143,72,-0.5329174771904945],[118,143,73,-0.5334567576646805],[118,143,74,-0.5341567937284708],[118,143,75,-0.534636203199625],[118,143,76,-0.534485774114728],[118,143,77,-0.5334059037268162],[118,143,78,-0.5312022604048252],[118,143,79,-0.5284954980015755],[118,144,64,-0.540659885853529],[118,144,65,-0.5400260500609875],[118,144,66,-0.5383706800639629],[118,144,67,-0.5361858643591404],[118,144,68,-0.5343015473335981],[118,144,69,-0.533218989148736],[118,144,70,-0.5328878294676542],[118,144,71,-0.5327760968357325],[118,144,72,-0.5329174771904945],[118,144,73,-0.5334567576646805],[118,144,74,-0.5341567937284708],[118,144,75,-0.534636203199625],[118,144,76,-0.534485774114728],[118,144,77,-0.5334059037268162],[118,144,78,-0.5312022604048252],[118,144,79,-0.5284954980015755],[118,145,64,-0.540659885853529],[118,145,65,-0.5400260500609875],[118,145,66,-0.5383706800639629],[118,145,67,-0.5361858643591404],[118,145,68,-0.5343015473335981],[118,145,69,-0.533218989148736],[118,145,70,-0.5328878294676542],[118,145,71,-0.5327760968357325],[118,145,72,-0.5329174771904945],[118,145,73,-0.5334567576646805],[118,145,74,-0.5341567937284708],[118,145,75,-0.534636203199625],[118,145,76,-0.534485774114728],[118,145,77,-0.5334059037268162],[118,145,78,-0.5312022604048252],[118,145,79,-0.5284954980015755],[118,146,64,-0.540659885853529],[118,146,65,-0.5400260500609875],[118,146,66,-0.5383706800639629],[118,146,67,-0.5361858643591404],[118,146,68,-0.5343015473335981],[118,146,69,-0.533218989148736],[118,146,70,-0.5328878294676542],[118,146,71,-0.5327760968357325],[118,146,72,-0.5329174771904945],[118,146,73,-0.5334567576646805],[118,146,74,-0.5341567937284708],[118,146,75,-0.534636203199625],[118,146,76,-0.534485774114728],[118,146,77,-0.5334059037268162],[118,146,78,-0.5312022604048252],[118,146,79,-0.5284954980015755],[118,147,64,-0.540659885853529],[118,147,65,-0.5400260500609875],[118,147,66,-0.5383706800639629],[118,147,67,-0.5361858643591404],[118,147,68,-0.5343015473335981],[118,147,69,-0.533218989148736],[118,147,70,-0.5328878294676542],[118,147,71,-0.5327760968357325],[118,147,72,-0.5329174771904945],[118,147,73,-0.5334567576646805],[118,147,74,-0.5341567937284708],[118,147,75,-0.534636203199625],[118,147,76,-0.534485774114728],[118,147,77,-0.5334059037268162],[118,147,78,-0.5312022604048252],[118,147,79,-0.5284954980015755],[118,148,64,-0.540659885853529],[118,148,65,-0.5400260500609875],[118,148,66,-0.5383706800639629],[118,148,67,-0.5361858643591404],[118,148,68,-0.5343015473335981],[118,148,69,-0.533218989148736],[118,148,70,-0.5328878294676542],[118,148,71,-0.5327760968357325],[118,148,72,-0.5329174771904945],[118,148,73,-0.5334567576646805],[118,148,74,-0.5341567937284708],[118,148,75,-0.534636203199625],[118,148,76,-0.534485774114728],[118,148,77,-0.5334059037268162],[118,148,78,-0.5312022604048252],[118,148,79,-0.5284954980015755],[118,149,64,-0.540659885853529],[118,149,65,-0.5400260500609875],[118,149,66,-0.5383706800639629],[118,149,67,-0.5361858643591404],[118,149,68,-0.5343015473335981],[118,149,69,-0.533218989148736],[118,149,70,-0.5328878294676542],[118,149,71,-0.5327760968357325],[118,149,72,-0.5329174771904945],[118,149,73,-0.5334567576646805],[118,149,74,-0.5341567937284708],[118,149,75,-0.534636203199625],[118,149,76,-0.534485774114728],[118,149,77,-0.5334059037268162],[118,149,78,-0.5312022604048252],[118,149,79,-0.5284954980015755],[118,150,64,-0.540659885853529],[118,150,65,-0.5400260500609875],[118,150,66,-0.5383706800639629],[118,150,67,-0.5361858643591404],[118,150,68,-0.5343015473335981],[118,150,69,-0.533218989148736],[118,150,70,-0.5328878294676542],[118,150,71,-0.5327760968357325],[118,150,72,-0.5329174771904945],[118,150,73,-0.5334567576646805],[118,150,74,-0.5341567937284708],[118,150,75,-0.534636203199625],[118,150,76,-0.534485774114728],[118,150,77,-0.5334059037268162],[118,150,78,-0.5312022604048252],[118,150,79,-0.5284954980015755],[118,151,64,-0.540659885853529],[118,151,65,-0.5400260500609875],[118,151,66,-0.5383706800639629],[118,151,67,-0.5361858643591404],[118,151,68,-0.5343015473335981],[118,151,69,-0.533218989148736],[118,151,70,-0.5328878294676542],[118,151,71,-0.5327760968357325],[118,151,72,-0.5329174771904945],[118,151,73,-0.5334567576646805],[118,151,74,-0.5341567937284708],[118,151,75,-0.534636203199625],[118,151,76,-0.534485774114728],[118,151,77,-0.5334059037268162],[118,151,78,-0.5312022604048252],[118,151,79,-0.5284954980015755],[118,152,64,-0.540659885853529],[118,152,65,-0.5400260500609875],[118,152,66,-0.5383706800639629],[118,152,67,-0.5361858643591404],[118,152,68,-0.5343015473335981],[118,152,69,-0.533218989148736],[118,152,70,-0.5328878294676542],[118,152,71,-0.5327760968357325],[118,152,72,-0.5329174771904945],[118,152,73,-0.5334567576646805],[118,152,74,-0.5341567937284708],[118,152,75,-0.534636203199625],[118,152,76,-0.534485774114728],[118,152,77,-0.5334059037268162],[118,152,78,-0.5312022604048252],[118,152,79,-0.5284954980015755],[118,153,64,-0.540659885853529],[118,153,65,-0.5400260500609875],[118,153,66,-0.5383706800639629],[118,153,67,-0.5361858643591404],[118,153,68,-0.5343015473335981],[118,153,69,-0.533218989148736],[118,153,70,-0.5328878294676542],[118,153,71,-0.5327760968357325],[118,153,72,-0.5329174771904945],[118,153,73,-0.5334567576646805],[118,153,74,-0.5341567937284708],[118,153,75,-0.534636203199625],[118,153,76,-0.534485774114728],[118,153,77,-0.5334059037268162],[118,153,78,-0.5312022604048252],[118,153,79,-0.5284954980015755],[118,154,64,-0.540659885853529],[118,154,65,-0.5400260500609875],[118,154,66,-0.5383706800639629],[118,154,67,-0.5361858643591404],[118,154,68,-0.5343015473335981],[118,154,69,-0.533218989148736],[118,154,70,-0.5328878294676542],[118,154,71,-0.5327760968357325],[118,154,72,-0.5329174771904945],[118,154,73,-0.5334567576646805],[118,154,74,-0.5341567937284708],[118,154,75,-0.534636203199625],[118,154,76,-0.534485774114728],[118,154,77,-0.5334059037268162],[118,154,78,-0.5312022604048252],[118,154,79,-0.5284954980015755],[118,155,64,-0.540659885853529],[118,155,65,-0.5400260500609875],[118,155,66,-0.5383706800639629],[118,155,67,-0.5361858643591404],[118,155,68,-0.5343015473335981],[118,155,69,-0.533218989148736],[118,155,70,-0.5328878294676542],[118,155,71,-0.5327760968357325],[118,155,72,-0.5329174771904945],[118,155,73,-0.5334567576646805],[118,155,74,-0.5341567937284708],[118,155,75,-0.534636203199625],[118,155,76,-0.534485774114728],[118,155,77,-0.5334059037268162],[118,155,78,-0.5312022604048252],[118,155,79,-0.5284954980015755],[118,156,64,-0.540659885853529],[118,156,65,-0.5400260500609875],[118,156,66,-0.5383706800639629],[118,156,67,-0.5361858643591404],[118,156,68,-0.5343015473335981],[118,156,69,-0.533218989148736],[118,156,70,-0.5328878294676542],[118,156,71,-0.5327760968357325],[118,156,72,-0.5329174771904945],[118,156,73,-0.5334567576646805],[118,156,74,-0.5341567937284708],[118,156,75,-0.534636203199625],[118,156,76,-0.534485774114728],[118,156,77,-0.5334059037268162],[118,156,78,-0.5312022604048252],[118,156,79,-0.5284954980015755],[118,157,64,-0.540659885853529],[118,157,65,-0.5400260500609875],[118,157,66,-0.5383706800639629],[118,157,67,-0.5361858643591404],[118,157,68,-0.5343015473335981],[118,157,69,-0.533218989148736],[118,157,70,-0.5328878294676542],[118,157,71,-0.5327760968357325],[118,157,72,-0.5329174771904945],[118,157,73,-0.5334567576646805],[118,157,74,-0.5341567937284708],[118,157,75,-0.534636203199625],[118,157,76,-0.534485774114728],[118,157,77,-0.5334059037268162],[118,157,78,-0.5312022604048252],[118,157,79,-0.5284954980015755],[118,158,64,-0.540659885853529],[118,158,65,-0.5400260500609875],[118,158,66,-0.5383706800639629],[118,158,67,-0.5361858643591404],[118,158,68,-0.5343015473335981],[118,158,69,-0.533218989148736],[118,158,70,-0.5328878294676542],[118,158,71,-0.5327760968357325],[118,158,72,-0.5329174771904945],[118,158,73,-0.5334567576646805],[118,158,74,-0.5341567937284708],[118,158,75,-0.534636203199625],[118,158,76,-0.534485774114728],[118,158,77,-0.5334059037268162],[118,158,78,-0.5312022604048252],[118,158,79,-0.5284954980015755],[118,159,64,-0.540659885853529],[118,159,65,-0.5400260500609875],[118,159,66,-0.5383706800639629],[118,159,67,-0.5361858643591404],[118,159,68,-0.5343015473335981],[118,159,69,-0.533218989148736],[118,159,70,-0.5328878294676542],[118,159,71,-0.5327760968357325],[118,159,72,-0.5329174771904945],[118,159,73,-0.5334567576646805],[118,159,74,-0.5341567937284708],[118,159,75,-0.534636203199625],[118,159,76,-0.534485774114728],[118,159,77,-0.5334059037268162],[118,159,78,-0.5312022604048252],[118,159,79,-0.5284954980015755],[118,160,64,-0.540659885853529],[118,160,65,-0.5400260500609875],[118,160,66,-0.5383706800639629],[118,160,67,-0.5361858643591404],[118,160,68,-0.5343015473335981],[118,160,69,-0.533218989148736],[118,160,70,-0.5328878294676542],[118,160,71,-0.5327760968357325],[118,160,72,-0.5329174771904945],[118,160,73,-0.5334567576646805],[118,160,74,-0.5341567937284708],[118,160,75,-0.534636203199625],[118,160,76,-0.534485774114728],[118,160,77,-0.5334059037268162],[118,160,78,-0.5312022604048252],[118,160,79,-0.5284954980015755],[118,161,64,-0.540659885853529],[118,161,65,-0.5400260500609875],[118,161,66,-0.5383706800639629],[118,161,67,-0.5361858643591404],[118,161,68,-0.5343015473335981],[118,161,69,-0.533218989148736],[118,161,70,-0.5328878294676542],[118,161,71,-0.5327760968357325],[118,161,72,-0.5329174771904945],[118,161,73,-0.5334567576646805],[118,161,74,-0.5341567937284708],[118,161,75,-0.534636203199625],[118,161,76,-0.534485774114728],[118,161,77,-0.5334059037268162],[118,161,78,-0.5312022604048252],[118,161,79,-0.5284954980015755],[118,162,64,-0.540659885853529],[118,162,65,-0.5400260500609875],[118,162,66,-0.5383706800639629],[118,162,67,-0.5361858643591404],[118,162,68,-0.5343015473335981],[118,162,69,-0.533218989148736],[118,162,70,-0.5328878294676542],[118,162,71,-0.5327760968357325],[118,162,72,-0.5329174771904945],[118,162,73,-0.5334567576646805],[118,162,74,-0.5341567937284708],[118,162,75,-0.534636203199625],[118,162,76,-0.534485774114728],[118,162,77,-0.5334059037268162],[118,162,78,-0.5312022604048252],[118,162,79,-0.5284954980015755],[118,163,64,-0.540659885853529],[118,163,65,-0.5400260500609875],[118,163,66,-0.5383706800639629],[118,163,67,-0.5361858643591404],[118,163,68,-0.5343015473335981],[118,163,69,-0.533218989148736],[118,163,70,-0.5328878294676542],[118,163,71,-0.5327760968357325],[118,163,72,-0.5329174771904945],[118,163,73,-0.5334567576646805],[118,163,74,-0.5341567937284708],[118,163,75,-0.534636203199625],[118,163,76,-0.534485774114728],[118,163,77,-0.5334059037268162],[118,163,78,-0.5312022604048252],[118,163,79,-0.5284954980015755],[118,164,64,-0.540659885853529],[118,164,65,-0.5400260500609875],[118,164,66,-0.5383706800639629],[118,164,67,-0.5361858643591404],[118,164,68,-0.5343015473335981],[118,164,69,-0.533218989148736],[118,164,70,-0.5328878294676542],[118,164,71,-0.5327760968357325],[118,164,72,-0.5329174771904945],[118,164,73,-0.5334567576646805],[118,164,74,-0.5341567937284708],[118,164,75,-0.534636203199625],[118,164,76,-0.534485774114728],[118,164,77,-0.5334059037268162],[118,164,78,-0.5312022604048252],[118,164,79,-0.5284954980015755],[118,165,64,-0.540659885853529],[118,165,65,-0.5400260500609875],[118,165,66,-0.5383706800639629],[118,165,67,-0.5361858643591404],[118,165,68,-0.5343015473335981],[118,165,69,-0.533218989148736],[118,165,70,-0.5328878294676542],[118,165,71,-0.5327760968357325],[118,165,72,-0.5329174771904945],[118,165,73,-0.5334567576646805],[118,165,74,-0.5341567937284708],[118,165,75,-0.534636203199625],[118,165,76,-0.534485774114728],[118,165,77,-0.5334059037268162],[118,165,78,-0.5312022604048252],[118,165,79,-0.5284954980015755],[118,166,64,-0.540659885853529],[118,166,65,-0.5400260500609875],[118,166,66,-0.5383706800639629],[118,166,67,-0.5361858643591404],[118,166,68,-0.5343015473335981],[118,166,69,-0.533218989148736],[118,166,70,-0.5328878294676542],[118,166,71,-0.5327760968357325],[118,166,72,-0.5329174771904945],[118,166,73,-0.5334567576646805],[118,166,74,-0.5341567937284708],[118,166,75,-0.534636203199625],[118,166,76,-0.534485774114728],[118,166,77,-0.5334059037268162],[118,166,78,-0.5312022604048252],[118,166,79,-0.5284954980015755],[118,167,64,-0.540659885853529],[118,167,65,-0.5400260500609875],[118,167,66,-0.5383706800639629],[118,167,67,-0.5361858643591404],[118,167,68,-0.5343015473335981],[118,167,69,-0.533218989148736],[118,167,70,-0.5328878294676542],[118,167,71,-0.5327760968357325],[118,167,72,-0.5329174771904945],[118,167,73,-0.5334567576646805],[118,167,74,-0.5341567937284708],[118,167,75,-0.534636203199625],[118,167,76,-0.534485774114728],[118,167,77,-0.5334059037268162],[118,167,78,-0.5312022604048252],[118,167,79,-0.5284954980015755],[118,168,64,-0.540659885853529],[118,168,65,-0.5400260500609875],[118,168,66,-0.5383706800639629],[118,168,67,-0.5361858643591404],[118,168,68,-0.5343015473335981],[118,168,69,-0.533218989148736],[118,168,70,-0.5328878294676542],[118,168,71,-0.5327760968357325],[118,168,72,-0.5329174771904945],[118,168,73,-0.5334567576646805],[118,168,74,-0.5341567937284708],[118,168,75,-0.534636203199625],[118,168,76,-0.534485774114728],[118,168,77,-0.5334059037268162],[118,168,78,-0.5312022604048252],[118,168,79,-0.5284954980015755],[118,169,64,-0.540659885853529],[118,169,65,-0.5400260500609875],[118,169,66,-0.5383706800639629],[118,169,67,-0.5361858643591404],[118,169,68,-0.5343015473335981],[118,169,69,-0.533218989148736],[118,169,70,-0.5328878294676542],[118,169,71,-0.5327760968357325],[118,169,72,-0.5329174771904945],[118,169,73,-0.5334567576646805],[118,169,74,-0.5341567937284708],[118,169,75,-0.534636203199625],[118,169,76,-0.534485774114728],[118,169,77,-0.5334059037268162],[118,169,78,-0.5312022604048252],[118,169,79,-0.5284954980015755],[118,170,64,-0.540659885853529],[118,170,65,-0.5400260500609875],[118,170,66,-0.5383706800639629],[118,170,67,-0.5361858643591404],[118,170,68,-0.5343015473335981],[118,170,69,-0.533218989148736],[118,170,70,-0.5328878294676542],[118,170,71,-0.5327760968357325],[118,170,72,-0.5329174771904945],[118,170,73,-0.5334567576646805],[118,170,74,-0.5341567937284708],[118,170,75,-0.534636203199625],[118,170,76,-0.534485774114728],[118,170,77,-0.5334059037268162],[118,170,78,-0.5312022604048252],[118,170,79,-0.5284954980015755],[118,171,64,-0.540659885853529],[118,171,65,-0.5400260500609875],[118,171,66,-0.5383706800639629],[118,171,67,-0.5361858643591404],[118,171,68,-0.5343015473335981],[118,171,69,-0.533218989148736],[118,171,70,-0.5328878294676542],[118,171,71,-0.5327760968357325],[118,171,72,-0.5329174771904945],[118,171,73,-0.5334567576646805],[118,171,74,-0.5341567937284708],[118,171,75,-0.534636203199625],[118,171,76,-0.534485774114728],[118,171,77,-0.5334059037268162],[118,171,78,-0.5312022604048252],[118,171,79,-0.5284954980015755],[118,172,64,-0.540659885853529],[118,172,65,-0.5400260500609875],[118,172,66,-0.5383706800639629],[118,172,67,-0.5361858643591404],[118,172,68,-0.5343015473335981],[118,172,69,-0.533218989148736],[118,172,70,-0.5328878294676542],[118,172,71,-0.5327760968357325],[118,172,72,-0.5329174771904945],[118,172,73,-0.5334567576646805],[118,172,74,-0.5341567937284708],[118,172,75,-0.534636203199625],[118,172,76,-0.534485774114728],[118,172,77,-0.5334059037268162],[118,172,78,-0.5312022604048252],[118,172,79,-0.5284954980015755],[118,173,64,-0.540659885853529],[118,173,65,-0.5400260500609875],[118,173,66,-0.5383706800639629],[118,173,67,-0.5361858643591404],[118,173,68,-0.5343015473335981],[118,173,69,-0.533218989148736],[118,173,70,-0.5328878294676542],[118,173,71,-0.5327760968357325],[118,173,72,-0.5329174771904945],[118,173,73,-0.5334567576646805],[118,173,74,-0.5341567937284708],[118,173,75,-0.534636203199625],[118,173,76,-0.534485774114728],[118,173,77,-0.5334059037268162],[118,173,78,-0.5312022604048252],[118,173,79,-0.5284954980015755],[118,174,64,-0.540659885853529],[118,174,65,-0.5400260500609875],[118,174,66,-0.5383706800639629],[118,174,67,-0.5361858643591404],[118,174,68,-0.5343015473335981],[118,174,69,-0.533218989148736],[118,174,70,-0.5328878294676542],[118,174,71,-0.5327760968357325],[118,174,72,-0.5329174771904945],[118,174,73,-0.5334567576646805],[118,174,74,-0.5341567937284708],[118,174,75,-0.534636203199625],[118,174,76,-0.534485774114728],[118,174,77,-0.5334059037268162],[118,174,78,-0.5312022604048252],[118,174,79,-0.5284954980015755],[118,175,64,-0.540659885853529],[118,175,65,-0.5400260500609875],[118,175,66,-0.5383706800639629],[118,175,67,-0.5361858643591404],[118,175,68,-0.5343015473335981],[118,175,69,-0.533218989148736],[118,175,70,-0.5328878294676542],[118,175,71,-0.5327760968357325],[118,175,72,-0.5329174771904945],[118,175,73,-0.5334567576646805],[118,175,74,-0.5341567937284708],[118,175,75,-0.534636203199625],[118,175,76,-0.534485774114728],[118,175,77,-0.5334059037268162],[118,175,78,-0.5312022604048252],[118,175,79,-0.5284954980015755],[118,176,64,-0.540659885853529],[118,176,65,-0.5400260500609875],[118,176,66,-0.5383706800639629],[118,176,67,-0.5361858643591404],[118,176,68,-0.5343015473335981],[118,176,69,-0.533218989148736],[118,176,70,-0.5328878294676542],[118,176,71,-0.5327760968357325],[118,176,72,-0.5329174771904945],[118,176,73,-0.5334567576646805],[118,176,74,-0.5341567937284708],[118,176,75,-0.534636203199625],[118,176,76,-0.534485774114728],[118,176,77,-0.5334059037268162],[118,176,78,-0.5312022604048252],[118,176,79,-0.5284954980015755],[118,177,64,-0.540659885853529],[118,177,65,-0.5400260500609875],[118,177,66,-0.5383706800639629],[118,177,67,-0.5361858643591404],[118,177,68,-0.5343015473335981],[118,177,69,-0.533218989148736],[118,177,70,-0.5328878294676542],[118,177,71,-0.5327760968357325],[118,177,72,-0.5329174771904945],[118,177,73,-0.5334567576646805],[118,177,74,-0.5341567937284708],[118,177,75,-0.534636203199625],[118,177,76,-0.534485774114728],[118,177,77,-0.5334059037268162],[118,177,78,-0.5312022604048252],[118,177,79,-0.5284954980015755],[118,178,64,-0.540659885853529],[118,178,65,-0.5400260500609875],[118,178,66,-0.5383706800639629],[118,178,67,-0.5361858643591404],[118,178,68,-0.5343015473335981],[118,178,69,-0.533218989148736],[118,178,70,-0.5328878294676542],[118,178,71,-0.5327760968357325],[118,178,72,-0.5329174771904945],[118,178,73,-0.5334567576646805],[118,178,74,-0.5341567937284708],[118,178,75,-0.534636203199625],[118,178,76,-0.534485774114728],[118,178,77,-0.5334059037268162],[118,178,78,-0.5312022604048252],[118,178,79,-0.5284954980015755],[118,179,64,-0.540659885853529],[118,179,65,-0.5400260500609875],[118,179,66,-0.5383706800639629],[118,179,67,-0.5361858643591404],[118,179,68,-0.5343015473335981],[118,179,69,-0.533218989148736],[118,179,70,-0.5328878294676542],[118,179,71,-0.5327760968357325],[118,179,72,-0.5329174771904945],[118,179,73,-0.5334567576646805],[118,179,74,-0.5341567937284708],[118,179,75,-0.534636203199625],[118,179,76,-0.534485774114728],[118,179,77,-0.5334059037268162],[118,179,78,-0.5312022604048252],[118,179,79,-0.5284954980015755],[118,180,64,-0.540659885853529],[118,180,65,-0.5400260500609875],[118,180,66,-0.5383706800639629],[118,180,67,-0.5361858643591404],[118,180,68,-0.5343015473335981],[118,180,69,-0.533218989148736],[118,180,70,-0.5328878294676542],[118,180,71,-0.5327760968357325],[118,180,72,-0.5329174771904945],[118,180,73,-0.5334567576646805],[118,180,74,-0.5341567937284708],[118,180,75,-0.534636203199625],[118,180,76,-0.534485774114728],[118,180,77,-0.5334059037268162],[118,180,78,-0.5312022604048252],[118,180,79,-0.5284954980015755],[118,181,64,-0.540659885853529],[118,181,65,-0.5400260500609875],[118,181,66,-0.5383706800639629],[118,181,67,-0.5361858643591404],[118,181,68,-0.5343015473335981],[118,181,69,-0.533218989148736],[118,181,70,-0.5328878294676542],[118,181,71,-0.5327760968357325],[118,181,72,-0.5329174771904945],[118,181,73,-0.5334567576646805],[118,181,74,-0.5341567937284708],[118,181,75,-0.534636203199625],[118,181,76,-0.534485774114728],[118,181,77,-0.5334059037268162],[118,181,78,-0.5312022604048252],[118,181,79,-0.5284954980015755],[118,182,64,-0.540659885853529],[118,182,65,-0.5400260500609875],[118,182,66,-0.5383706800639629],[118,182,67,-0.5361858643591404],[118,182,68,-0.5343015473335981],[118,182,69,-0.533218989148736],[118,182,70,-0.5328878294676542],[118,182,71,-0.5327760968357325],[118,182,72,-0.5329174771904945],[118,182,73,-0.5334567576646805],[118,182,74,-0.5341567937284708],[118,182,75,-0.534636203199625],[118,182,76,-0.534485774114728],[118,182,77,-0.5334059037268162],[118,182,78,-0.5312022604048252],[118,182,79,-0.5284954980015755],[118,183,64,-0.540659885853529],[118,183,65,-0.5400260500609875],[118,183,66,-0.5383706800639629],[118,183,67,-0.5361858643591404],[118,183,68,-0.5343015473335981],[118,183,69,-0.533218989148736],[118,183,70,-0.5328878294676542],[118,183,71,-0.5327760968357325],[118,183,72,-0.5329174771904945],[118,183,73,-0.5334567576646805],[118,183,74,-0.5341567937284708],[118,183,75,-0.534636203199625],[118,183,76,-0.534485774114728],[118,183,77,-0.5334059037268162],[118,183,78,-0.5312022604048252],[118,183,79,-0.5284954980015755],[118,184,64,-0.540659885853529],[118,184,65,-0.5400260500609875],[118,184,66,-0.5383706800639629],[118,184,67,-0.5361858643591404],[118,184,68,-0.5343015473335981],[118,184,69,-0.533218989148736],[118,184,70,-0.5328878294676542],[118,184,71,-0.5327760968357325],[118,184,72,-0.5329174771904945],[118,184,73,-0.5334567576646805],[118,184,74,-0.5341567937284708],[118,184,75,-0.534636203199625],[118,184,76,-0.534485774114728],[118,184,77,-0.5334059037268162],[118,184,78,-0.5312022604048252],[118,184,79,-0.5284954980015755],[118,185,64,-0.540659885853529],[118,185,65,-0.5400260500609875],[118,185,66,-0.5383706800639629],[118,185,67,-0.5361858643591404],[118,185,68,-0.5343015473335981],[118,185,69,-0.533218989148736],[118,185,70,-0.5328878294676542],[118,185,71,-0.5327760968357325],[118,185,72,-0.5329174771904945],[118,185,73,-0.5334567576646805],[118,185,74,-0.5341567937284708],[118,185,75,-0.534636203199625],[118,185,76,-0.534485774114728],[118,185,77,-0.5334059037268162],[118,185,78,-0.5312022604048252],[118,185,79,-0.5284954980015755],[118,186,64,-0.540659885853529],[118,186,65,-0.5400260500609875],[118,186,66,-0.5383706800639629],[118,186,67,-0.5361858643591404],[118,186,68,-0.5343015473335981],[118,186,69,-0.533218989148736],[118,186,70,-0.5328878294676542],[118,186,71,-0.5327760968357325],[118,186,72,-0.5329174771904945],[118,186,73,-0.5334567576646805],[118,186,74,-0.5341567937284708],[118,186,75,-0.534636203199625],[118,186,76,-0.534485774114728],[118,186,77,-0.5334059037268162],[118,186,78,-0.5312022604048252],[118,186,79,-0.5284954980015755],[118,187,64,-0.540659885853529],[118,187,65,-0.5400260500609875],[118,187,66,-0.5383706800639629],[118,187,67,-0.5361858643591404],[118,187,68,-0.5343015473335981],[118,187,69,-0.533218989148736],[118,187,70,-0.5328878294676542],[118,187,71,-0.5327760968357325],[118,187,72,-0.5329174771904945],[118,187,73,-0.5334567576646805],[118,187,74,-0.5341567937284708],[118,187,75,-0.534636203199625],[118,187,76,-0.534485774114728],[118,187,77,-0.5334059037268162],[118,187,78,-0.5312022604048252],[118,187,79,-0.5284954980015755],[118,188,64,-0.540659885853529],[118,188,65,-0.5400260500609875],[118,188,66,-0.5383706800639629],[118,188,67,-0.5361858643591404],[118,188,68,-0.5343015473335981],[118,188,69,-0.533218989148736],[118,188,70,-0.5328878294676542],[118,188,71,-0.5327760968357325],[118,188,72,-0.5329174771904945],[118,188,73,-0.5334567576646805],[118,188,74,-0.5341567937284708],[118,188,75,-0.534636203199625],[118,188,76,-0.534485774114728],[118,188,77,-0.5334059037268162],[118,188,78,-0.5312022604048252],[118,188,79,-0.5284954980015755],[118,189,64,-0.540659885853529],[118,189,65,-0.5400260500609875],[118,189,66,-0.5383706800639629],[118,189,67,-0.5361858643591404],[118,189,68,-0.5343015473335981],[118,189,69,-0.533218989148736],[118,189,70,-0.5328878294676542],[118,189,71,-0.5327760968357325],[118,189,72,-0.5329174771904945],[118,189,73,-0.5334567576646805],[118,189,74,-0.5341567937284708],[118,189,75,-0.534636203199625],[118,189,76,-0.534485774114728],[118,189,77,-0.5334059037268162],[118,189,78,-0.5312022604048252],[118,189,79,-0.5284954980015755],[118,190,64,-0.540659885853529],[118,190,65,-0.5400260500609875],[118,190,66,-0.5383706800639629],[118,190,67,-0.5361858643591404],[118,190,68,-0.5343015473335981],[118,190,69,-0.533218989148736],[118,190,70,-0.5328878294676542],[118,190,71,-0.5327760968357325],[118,190,72,-0.5329174771904945],[118,190,73,-0.5334567576646805],[118,190,74,-0.5341567937284708],[118,190,75,-0.534636203199625],[118,190,76,-0.534485774114728],[118,190,77,-0.5334059037268162],[118,190,78,-0.5312022604048252],[118,190,79,-0.5284954980015755],[118,191,64,-0.540659885853529],[118,191,65,-0.5400260500609875],[118,191,66,-0.5383706800639629],[118,191,67,-0.5361858643591404],[118,191,68,-0.5343015473335981],[118,191,69,-0.533218989148736],[118,191,70,-0.5328878294676542],[118,191,71,-0.5327760968357325],[118,191,72,-0.5329174771904945],[118,191,73,-0.5334567576646805],[118,191,74,-0.5341567937284708],[118,191,75,-0.534636203199625],[118,191,76,-0.534485774114728],[118,191,77,-0.5334059037268162],[118,191,78,-0.5312022604048252],[118,191,79,-0.5284954980015755],[118,192,64,-0.540659885853529],[118,192,65,-0.5400260500609875],[118,192,66,-0.5383706800639629],[118,192,67,-0.5361858643591404],[118,192,68,-0.5343015473335981],[118,192,69,-0.533218989148736],[118,192,70,-0.5328878294676542],[118,192,71,-0.5327760968357325],[118,192,72,-0.5329174771904945],[118,192,73,-0.5334567576646805],[118,192,74,-0.5341567937284708],[118,192,75,-0.534636203199625],[118,192,76,-0.534485774114728],[118,192,77,-0.5334059037268162],[118,192,78,-0.5312022604048252],[118,192,79,-0.5284954980015755],[118,193,64,-0.540659885853529],[118,193,65,-0.5400260500609875],[118,193,66,-0.5383706800639629],[118,193,67,-0.5361858643591404],[118,193,68,-0.5343015473335981],[118,193,69,-0.533218989148736],[118,193,70,-0.5328878294676542],[118,193,71,-0.5327760968357325],[118,193,72,-0.5329174771904945],[118,193,73,-0.5334567576646805],[118,193,74,-0.5341567937284708],[118,193,75,-0.534636203199625],[118,193,76,-0.534485774114728],[118,193,77,-0.5334059037268162],[118,193,78,-0.5312022604048252],[118,193,79,-0.5284954980015755],[118,194,64,-0.540659885853529],[118,194,65,-0.5400260500609875],[118,194,66,-0.5383706800639629],[118,194,67,-0.5361858643591404],[118,194,68,-0.5343015473335981],[118,194,69,-0.533218989148736],[118,194,70,-0.5328878294676542],[118,194,71,-0.5327760968357325],[118,194,72,-0.5329174771904945],[118,194,73,-0.5334567576646805],[118,194,74,-0.5341567937284708],[118,194,75,-0.534636203199625],[118,194,76,-0.534485774114728],[118,194,77,-0.5334059037268162],[118,194,78,-0.5312022604048252],[118,194,79,-0.5284954980015755],[118,195,64,-0.540659885853529],[118,195,65,-0.5400260500609875],[118,195,66,-0.5383706800639629],[118,195,67,-0.5361858643591404],[118,195,68,-0.5343015473335981],[118,195,69,-0.533218989148736],[118,195,70,-0.5328878294676542],[118,195,71,-0.5327760968357325],[118,195,72,-0.5329174771904945],[118,195,73,-0.5334567576646805],[118,195,74,-0.5341567937284708],[118,195,75,-0.534636203199625],[118,195,76,-0.534485774114728],[118,195,77,-0.5334059037268162],[118,195,78,-0.5312022604048252],[118,195,79,-0.5284954980015755],[118,196,64,-0.540659885853529],[118,196,65,-0.5400260500609875],[118,196,66,-0.5383706800639629],[118,196,67,-0.5361858643591404],[118,196,68,-0.5343015473335981],[118,196,69,-0.533218989148736],[118,196,70,-0.5328878294676542],[118,196,71,-0.5327760968357325],[118,196,72,-0.5329174771904945],[118,196,73,-0.5334567576646805],[118,196,74,-0.5341567937284708],[118,196,75,-0.534636203199625],[118,196,76,-0.534485774114728],[118,196,77,-0.5334059037268162],[118,196,78,-0.5312022604048252],[118,196,79,-0.5284954980015755],[118,197,64,-0.540659885853529],[118,197,65,-0.5400260500609875],[118,197,66,-0.5383706800639629],[118,197,67,-0.5361858643591404],[118,197,68,-0.5343015473335981],[118,197,69,-0.533218989148736],[118,197,70,-0.5328878294676542],[118,197,71,-0.5327760968357325],[118,197,72,-0.5329174771904945],[118,197,73,-0.5334567576646805],[118,197,74,-0.5341567937284708],[118,197,75,-0.534636203199625],[118,197,76,-0.534485774114728],[118,197,77,-0.5334059037268162],[118,197,78,-0.5312022604048252],[118,197,79,-0.5284954980015755],[118,198,64,-0.540659885853529],[118,198,65,-0.5400260500609875],[118,198,66,-0.5383706800639629],[118,198,67,-0.5361858643591404],[118,198,68,-0.5343015473335981],[118,198,69,-0.533218989148736],[118,198,70,-0.5328878294676542],[118,198,71,-0.5327760968357325],[118,198,72,-0.5329174771904945],[118,198,73,-0.5334567576646805],[118,198,74,-0.5341567937284708],[118,198,75,-0.534636203199625],[118,198,76,-0.534485774114728],[118,198,77,-0.5334059037268162],[118,198,78,-0.5312022604048252],[118,198,79,-0.5284954980015755],[118,199,64,-0.540659885853529],[118,199,65,-0.5400260500609875],[118,199,66,-0.5383706800639629],[118,199,67,-0.5361858643591404],[118,199,68,-0.5343015473335981],[118,199,69,-0.533218989148736],[118,199,70,-0.5328878294676542],[118,199,71,-0.5327760968357325],[118,199,72,-0.5329174771904945],[118,199,73,-0.5334567576646805],[118,199,74,-0.5341567937284708],[118,199,75,-0.534636203199625],[118,199,76,-0.534485774114728],[118,199,77,-0.5334059037268162],[118,199,78,-0.5312022604048252],[118,199,79,-0.5284954980015755],[118,200,64,-0.540659885853529],[118,200,65,-0.5400260500609875],[118,200,66,-0.5383706800639629],[118,200,67,-0.5361858643591404],[118,200,68,-0.5343015473335981],[118,200,69,-0.533218989148736],[118,200,70,-0.5328878294676542],[118,200,71,-0.5327760968357325],[118,200,72,-0.5329174771904945],[118,200,73,-0.5334567576646805],[118,200,74,-0.5341567937284708],[118,200,75,-0.534636203199625],[118,200,76,-0.534485774114728],[118,200,77,-0.5334059037268162],[118,200,78,-0.5312022604048252],[118,200,79,-0.5284954980015755],[118,201,64,-0.540659885853529],[118,201,65,-0.5400260500609875],[118,201,66,-0.5383706800639629],[118,201,67,-0.5361858643591404],[118,201,68,-0.5343015473335981],[118,201,69,-0.533218989148736],[118,201,70,-0.5328878294676542],[118,201,71,-0.5327760968357325],[118,201,72,-0.5329174771904945],[118,201,73,-0.5334567576646805],[118,201,74,-0.5341567937284708],[118,201,75,-0.534636203199625],[118,201,76,-0.534485774114728],[118,201,77,-0.5334059037268162],[118,201,78,-0.5312022604048252],[118,201,79,-0.5284954980015755],[118,202,64,-0.540659885853529],[118,202,65,-0.5400260500609875],[118,202,66,-0.5383706800639629],[118,202,67,-0.5361858643591404],[118,202,68,-0.5343015473335981],[118,202,69,-0.533218989148736],[118,202,70,-0.5328878294676542],[118,202,71,-0.5327760968357325],[118,202,72,-0.5329174771904945],[118,202,73,-0.5334567576646805],[118,202,74,-0.5341567937284708],[118,202,75,-0.534636203199625],[118,202,76,-0.534485774114728],[118,202,77,-0.5334059037268162],[118,202,78,-0.5312022604048252],[118,202,79,-0.5284954980015755],[118,203,64,-0.540659885853529],[118,203,65,-0.5400260500609875],[118,203,66,-0.5383706800639629],[118,203,67,-0.5361858643591404],[118,203,68,-0.5343015473335981],[118,203,69,-0.533218989148736],[118,203,70,-0.5328878294676542],[118,203,71,-0.5327760968357325],[118,203,72,-0.5329174771904945],[118,203,73,-0.5334567576646805],[118,203,74,-0.5341567937284708],[118,203,75,-0.534636203199625],[118,203,76,-0.534485774114728],[118,203,77,-0.5334059037268162],[118,203,78,-0.5312022604048252],[118,203,79,-0.5284954980015755],[118,204,64,-0.540659885853529],[118,204,65,-0.5400260500609875],[118,204,66,-0.5383706800639629],[118,204,67,-0.5361858643591404],[118,204,68,-0.5343015473335981],[118,204,69,-0.533218989148736],[118,204,70,-0.5328878294676542],[118,204,71,-0.5327760968357325],[118,204,72,-0.5329174771904945],[118,204,73,-0.5334567576646805],[118,204,74,-0.5341567937284708],[118,204,75,-0.534636203199625],[118,204,76,-0.534485774114728],[118,204,77,-0.5334059037268162],[118,204,78,-0.5312022604048252],[118,204,79,-0.5284954980015755],[118,205,64,-0.540659885853529],[118,205,65,-0.5400260500609875],[118,205,66,-0.5383706800639629],[118,205,67,-0.5361858643591404],[118,205,68,-0.5343015473335981],[118,205,69,-0.533218989148736],[118,205,70,-0.5328878294676542],[118,205,71,-0.5327760968357325],[118,205,72,-0.5329174771904945],[118,205,73,-0.5334567576646805],[118,205,74,-0.5341567937284708],[118,205,75,-0.534636203199625],[118,205,76,-0.534485774114728],[118,205,77,-0.5334059037268162],[118,205,78,-0.5312022604048252],[118,205,79,-0.5284954980015755],[118,206,64,-0.540659885853529],[118,206,65,-0.5400260500609875],[118,206,66,-0.5383706800639629],[118,206,67,-0.5361858643591404],[118,206,68,-0.5343015473335981],[118,206,69,-0.533218989148736],[118,206,70,-0.5328878294676542],[118,206,71,-0.5327760968357325],[118,206,72,-0.5329174771904945],[118,206,73,-0.5334567576646805],[118,206,74,-0.5341567937284708],[118,206,75,-0.534636203199625],[118,206,76,-0.534485774114728],[118,206,77,-0.5334059037268162],[118,206,78,-0.5312022604048252],[118,206,79,-0.5284954980015755],[118,207,64,-0.540659885853529],[118,207,65,-0.5400260500609875],[118,207,66,-0.5383706800639629],[118,207,67,-0.5361858643591404],[118,207,68,-0.5343015473335981],[118,207,69,-0.533218989148736],[118,207,70,-0.5328878294676542],[118,207,71,-0.5327760968357325],[118,207,72,-0.5329174771904945],[118,207,73,-0.5334567576646805],[118,207,74,-0.5341567937284708],[118,207,75,-0.534636203199625],[118,207,76,-0.534485774114728],[118,207,77,-0.5334059037268162],[118,207,78,-0.5312022604048252],[118,207,79,-0.5284954980015755],[118,208,64,-0.540659885853529],[118,208,65,-0.5400260500609875],[118,208,66,-0.5383706800639629],[118,208,67,-0.5361858643591404],[118,208,68,-0.5343015473335981],[118,208,69,-0.533218989148736],[118,208,70,-0.5328878294676542],[118,208,71,-0.5327760968357325],[118,208,72,-0.5329174771904945],[118,208,73,-0.5334567576646805],[118,208,74,-0.5341567937284708],[118,208,75,-0.534636203199625],[118,208,76,-0.534485774114728],[118,208,77,-0.5334059037268162],[118,208,78,-0.5312022604048252],[118,208,79,-0.5284954980015755],[118,209,64,-0.540659885853529],[118,209,65,-0.5400260500609875],[118,209,66,-0.5383706800639629],[118,209,67,-0.5361858643591404],[118,209,68,-0.5343015473335981],[118,209,69,-0.533218989148736],[118,209,70,-0.5328878294676542],[118,209,71,-0.5327760968357325],[118,209,72,-0.5329174771904945],[118,209,73,-0.5334567576646805],[118,209,74,-0.5341567937284708],[118,209,75,-0.534636203199625],[118,209,76,-0.534485774114728],[118,209,77,-0.5334059037268162],[118,209,78,-0.5312022604048252],[118,209,79,-0.5284954980015755],[118,210,64,-0.540659885853529],[118,210,65,-0.5400260500609875],[118,210,66,-0.5383706800639629],[118,210,67,-0.5361858643591404],[118,210,68,-0.5343015473335981],[118,210,69,-0.533218989148736],[118,210,70,-0.5328878294676542],[118,210,71,-0.5327760968357325],[118,210,72,-0.5329174771904945],[118,210,73,-0.5334567576646805],[118,210,74,-0.5341567937284708],[118,210,75,-0.534636203199625],[118,210,76,-0.534485774114728],[118,210,77,-0.5334059037268162],[118,210,78,-0.5312022604048252],[118,210,79,-0.5284954980015755],[118,211,64,-0.540659885853529],[118,211,65,-0.5400260500609875],[118,211,66,-0.5383706800639629],[118,211,67,-0.5361858643591404],[118,211,68,-0.5343015473335981],[118,211,69,-0.533218989148736],[118,211,70,-0.5328878294676542],[118,211,71,-0.5327760968357325],[118,211,72,-0.5329174771904945],[118,211,73,-0.5334567576646805],[118,211,74,-0.5341567937284708],[118,211,75,-0.534636203199625],[118,211,76,-0.534485774114728],[118,211,77,-0.5334059037268162],[118,211,78,-0.5312022604048252],[118,211,79,-0.5284954980015755],[118,212,64,-0.540659885853529],[118,212,65,-0.5400260500609875],[118,212,66,-0.5383706800639629],[118,212,67,-0.5361858643591404],[118,212,68,-0.5343015473335981],[118,212,69,-0.533218989148736],[118,212,70,-0.5328878294676542],[118,212,71,-0.5327760968357325],[118,212,72,-0.5329174771904945],[118,212,73,-0.5334567576646805],[118,212,74,-0.5341567937284708],[118,212,75,-0.534636203199625],[118,212,76,-0.534485774114728],[118,212,77,-0.5334059037268162],[118,212,78,-0.5312022604048252],[118,212,79,-0.5284954980015755],[118,213,64,-0.540659885853529],[118,213,65,-0.5400260500609875],[118,213,66,-0.5383706800639629],[118,213,67,-0.5361858643591404],[118,213,68,-0.5343015473335981],[118,213,69,-0.533218989148736],[118,213,70,-0.5328878294676542],[118,213,71,-0.5327760968357325],[118,213,72,-0.5329174771904945],[118,213,73,-0.5334567576646805],[118,213,74,-0.5341567937284708],[118,213,75,-0.534636203199625],[118,213,76,-0.534485774114728],[118,213,77,-0.5334059037268162],[118,213,78,-0.5312022604048252],[118,213,79,-0.5284954980015755],[118,214,64,-0.540659885853529],[118,214,65,-0.5400260500609875],[118,214,66,-0.5383706800639629],[118,214,67,-0.5361858643591404],[118,214,68,-0.5343015473335981],[118,214,69,-0.533218989148736],[118,214,70,-0.5328878294676542],[118,214,71,-0.5327760968357325],[118,214,72,-0.5329174771904945],[118,214,73,-0.5334567576646805],[118,214,74,-0.5341567937284708],[118,214,75,-0.534636203199625],[118,214,76,-0.534485774114728],[118,214,77,-0.5334059037268162],[118,214,78,-0.5312022604048252],[118,214,79,-0.5284954980015755],[118,215,64,-0.540659885853529],[118,215,65,-0.5400260500609875],[118,215,66,-0.5383706800639629],[118,215,67,-0.5361858643591404],[118,215,68,-0.5343015473335981],[118,215,69,-0.533218989148736],[118,215,70,-0.5328878294676542],[118,215,71,-0.5327760968357325],[118,215,72,-0.5329174771904945],[118,215,73,-0.5334567576646805],[118,215,74,-0.5341567937284708],[118,215,75,-0.534636203199625],[118,215,76,-0.534485774114728],[118,215,77,-0.5334059037268162],[118,215,78,-0.5312022604048252],[118,215,79,-0.5284954980015755],[118,216,64,-0.540659885853529],[118,216,65,-0.5400260500609875],[118,216,66,-0.5383706800639629],[118,216,67,-0.5361858643591404],[118,216,68,-0.5343015473335981],[118,216,69,-0.533218989148736],[118,216,70,-0.5328878294676542],[118,216,71,-0.5327760968357325],[118,216,72,-0.5329174771904945],[118,216,73,-0.5334567576646805],[118,216,74,-0.5341567937284708],[118,216,75,-0.534636203199625],[118,216,76,-0.534485774114728],[118,216,77,-0.5334059037268162],[118,216,78,-0.5312022604048252],[118,216,79,-0.5284954980015755],[118,217,64,-0.540659885853529],[118,217,65,-0.5400260500609875],[118,217,66,-0.5383706800639629],[118,217,67,-0.5361858643591404],[118,217,68,-0.5343015473335981],[118,217,69,-0.533218989148736],[118,217,70,-0.5328878294676542],[118,217,71,-0.5327760968357325],[118,217,72,-0.5329174771904945],[118,217,73,-0.5334567576646805],[118,217,74,-0.5341567937284708],[118,217,75,-0.534636203199625],[118,217,76,-0.534485774114728],[118,217,77,-0.5334059037268162],[118,217,78,-0.5312022604048252],[118,217,79,-0.5284954980015755],[118,218,64,-0.540659885853529],[118,218,65,-0.5400260500609875],[118,218,66,-0.5383706800639629],[118,218,67,-0.5361858643591404],[118,218,68,-0.5343015473335981],[118,218,69,-0.533218989148736],[118,218,70,-0.5328878294676542],[118,218,71,-0.5327760968357325],[118,218,72,-0.5329174771904945],[118,218,73,-0.5334567576646805],[118,218,74,-0.5341567937284708],[118,218,75,-0.534636203199625],[118,218,76,-0.534485774114728],[118,218,77,-0.5334059037268162],[118,218,78,-0.5312022604048252],[118,218,79,-0.5284954980015755],[118,219,64,-0.540659885853529],[118,219,65,-0.5400260500609875],[118,219,66,-0.5383706800639629],[118,219,67,-0.5361858643591404],[118,219,68,-0.5343015473335981],[118,219,69,-0.533218989148736],[118,219,70,-0.5328878294676542],[118,219,71,-0.5327760968357325],[118,219,72,-0.5329174771904945],[118,219,73,-0.5334567576646805],[118,219,74,-0.5341567937284708],[118,219,75,-0.534636203199625],[118,219,76,-0.534485774114728],[118,219,77,-0.5334059037268162],[118,219,78,-0.5312022604048252],[118,219,79,-0.5284954980015755],[118,220,64,-0.540659885853529],[118,220,65,-0.5400260500609875],[118,220,66,-0.5383706800639629],[118,220,67,-0.5361858643591404],[118,220,68,-0.5343015473335981],[118,220,69,-0.533218989148736],[118,220,70,-0.5328878294676542],[118,220,71,-0.5327760968357325],[118,220,72,-0.5329174771904945],[118,220,73,-0.5334567576646805],[118,220,74,-0.5341567937284708],[118,220,75,-0.534636203199625],[118,220,76,-0.534485774114728],[118,220,77,-0.5334059037268162],[118,220,78,-0.5312022604048252],[118,220,79,-0.5284954980015755],[118,221,64,-0.540659885853529],[118,221,65,-0.5400260500609875],[118,221,66,-0.5383706800639629],[118,221,67,-0.5361858643591404],[118,221,68,-0.5343015473335981],[118,221,69,-0.533218989148736],[118,221,70,-0.5328878294676542],[118,221,71,-0.5327760968357325],[118,221,72,-0.5329174771904945],[118,221,73,-0.5334567576646805],[118,221,74,-0.5341567937284708],[118,221,75,-0.534636203199625],[118,221,76,-0.534485774114728],[118,221,77,-0.5334059037268162],[118,221,78,-0.5312022604048252],[118,221,79,-0.5284954980015755],[118,222,64,-0.540659885853529],[118,222,65,-0.5400260500609875],[118,222,66,-0.5383706800639629],[118,222,67,-0.5361858643591404],[118,222,68,-0.5343015473335981],[118,222,69,-0.533218989148736],[118,222,70,-0.5328878294676542],[118,222,71,-0.5327760968357325],[118,222,72,-0.5329174771904945],[118,222,73,-0.5334567576646805],[118,222,74,-0.5341567937284708],[118,222,75,-0.534636203199625],[118,222,76,-0.534485774114728],[118,222,77,-0.5334059037268162],[118,222,78,-0.5312022604048252],[118,222,79,-0.5284954980015755],[118,223,64,-0.540659885853529],[118,223,65,-0.5400260500609875],[118,223,66,-0.5383706800639629],[118,223,67,-0.5361858643591404],[118,223,68,-0.5343015473335981],[118,223,69,-0.533218989148736],[118,223,70,-0.5328878294676542],[118,223,71,-0.5327760968357325],[118,223,72,-0.5329174771904945],[118,223,73,-0.5334567576646805],[118,223,74,-0.5341567937284708],[118,223,75,-0.534636203199625],[118,223,76,-0.534485774114728],[118,223,77,-0.5334059037268162],[118,223,78,-0.5312022604048252],[118,223,79,-0.5284954980015755],[118,224,64,-0.540659885853529],[118,224,65,-0.5400260500609875],[118,224,66,-0.5383706800639629],[118,224,67,-0.5361858643591404],[118,224,68,-0.5343015473335981],[118,224,69,-0.533218989148736],[118,224,70,-0.5328878294676542],[118,224,71,-0.5327760968357325],[118,224,72,-0.5329174771904945],[118,224,73,-0.5334567576646805],[118,224,74,-0.5341567937284708],[118,224,75,-0.534636203199625],[118,224,76,-0.534485774114728],[118,224,77,-0.5334059037268162],[118,224,78,-0.5312022604048252],[118,224,79,-0.5284954980015755],[118,225,64,-0.540659885853529],[118,225,65,-0.5400260500609875],[118,225,66,-0.5383706800639629],[118,225,67,-0.5361858643591404],[118,225,68,-0.5343015473335981],[118,225,69,-0.533218989148736],[118,225,70,-0.5328878294676542],[118,225,71,-0.5327760968357325],[118,225,72,-0.5329174771904945],[118,225,73,-0.5334567576646805],[118,225,74,-0.5341567937284708],[118,225,75,-0.534636203199625],[118,225,76,-0.534485774114728],[118,225,77,-0.5334059037268162],[118,225,78,-0.5312022604048252],[118,225,79,-0.5284954980015755],[118,226,64,-0.540659885853529],[118,226,65,-0.5400260500609875],[118,226,66,-0.5383706800639629],[118,226,67,-0.5361858643591404],[118,226,68,-0.5343015473335981],[118,226,69,-0.533218989148736],[118,226,70,-0.5328878294676542],[118,226,71,-0.5327760968357325],[118,226,72,-0.5329174771904945],[118,226,73,-0.5334567576646805],[118,226,74,-0.5341567937284708],[118,226,75,-0.534636203199625],[118,226,76,-0.534485774114728],[118,226,77,-0.5334059037268162],[118,226,78,-0.5312022604048252],[118,226,79,-0.5284954980015755],[118,227,64,-0.540659885853529],[118,227,65,-0.5400260500609875],[118,227,66,-0.5383706800639629],[118,227,67,-0.5361858643591404],[118,227,68,-0.5343015473335981],[118,227,69,-0.533218989148736],[118,227,70,-0.5328878294676542],[118,227,71,-0.5327760968357325],[118,227,72,-0.5329174771904945],[118,227,73,-0.5334567576646805],[118,227,74,-0.5341567937284708],[118,227,75,-0.534636203199625],[118,227,76,-0.534485774114728],[118,227,77,-0.5334059037268162],[118,227,78,-0.5312022604048252],[118,227,79,-0.5284954980015755],[118,228,64,-0.540659885853529],[118,228,65,-0.5400260500609875],[118,228,66,-0.5383706800639629],[118,228,67,-0.5361858643591404],[118,228,68,-0.5343015473335981],[118,228,69,-0.533218989148736],[118,228,70,-0.5328878294676542],[118,228,71,-0.5327760968357325],[118,228,72,-0.5329174771904945],[118,228,73,-0.5334567576646805],[118,228,74,-0.5341567937284708],[118,228,75,-0.534636203199625],[118,228,76,-0.534485774114728],[118,228,77,-0.5334059037268162],[118,228,78,-0.5312022604048252],[118,228,79,-0.5284954980015755],[118,229,64,-0.540659885853529],[118,229,65,-0.5400260500609875],[118,229,66,-0.5383706800639629],[118,229,67,-0.5361858643591404],[118,229,68,-0.5343015473335981],[118,229,69,-0.533218989148736],[118,229,70,-0.5328878294676542],[118,229,71,-0.5327760968357325],[118,229,72,-0.5329174771904945],[118,229,73,-0.5334567576646805],[118,229,74,-0.5341567937284708],[118,229,75,-0.534636203199625],[118,229,76,-0.534485774114728],[118,229,77,-0.5334059037268162],[118,229,78,-0.5312022604048252],[118,229,79,-0.5284954980015755],[118,230,64,-0.540659885853529],[118,230,65,-0.5400260500609875],[118,230,66,-0.5383706800639629],[118,230,67,-0.5361858643591404],[118,230,68,-0.5343015473335981],[118,230,69,-0.533218989148736],[118,230,70,-0.5328878294676542],[118,230,71,-0.5327760968357325],[118,230,72,-0.5329174771904945],[118,230,73,-0.5334567576646805],[118,230,74,-0.5341567937284708],[118,230,75,-0.534636203199625],[118,230,76,-0.534485774114728],[118,230,77,-0.5334059037268162],[118,230,78,-0.5312022604048252],[118,230,79,-0.5284954980015755],[118,231,64,-0.540659885853529],[118,231,65,-0.5400260500609875],[118,231,66,-0.5383706800639629],[118,231,67,-0.5361858643591404],[118,231,68,-0.5343015473335981],[118,231,69,-0.533218989148736],[118,231,70,-0.5328878294676542],[118,231,71,-0.5327760968357325],[118,231,72,-0.5329174771904945],[118,231,73,-0.5334567576646805],[118,231,74,-0.5341567937284708],[118,231,75,-0.534636203199625],[118,231,76,-0.534485774114728],[118,231,77,-0.5334059037268162],[118,231,78,-0.5312022604048252],[118,231,79,-0.5284954980015755],[118,232,64,-0.540659885853529],[118,232,65,-0.5400260500609875],[118,232,66,-0.5383706800639629],[118,232,67,-0.5361858643591404],[118,232,68,-0.5343015473335981],[118,232,69,-0.533218989148736],[118,232,70,-0.5328878294676542],[118,232,71,-0.5327760968357325],[118,232,72,-0.5329174771904945],[118,232,73,-0.5334567576646805],[118,232,74,-0.5341567937284708],[118,232,75,-0.534636203199625],[118,232,76,-0.534485774114728],[118,232,77,-0.5334059037268162],[118,232,78,-0.5312022604048252],[118,232,79,-0.5284954980015755],[118,233,64,-0.540659885853529],[118,233,65,-0.5400260500609875],[118,233,66,-0.5383706800639629],[118,233,67,-0.5361858643591404],[118,233,68,-0.5343015473335981],[118,233,69,-0.533218989148736],[118,233,70,-0.5328878294676542],[118,233,71,-0.5327760968357325],[118,233,72,-0.5329174771904945],[118,233,73,-0.5334567576646805],[118,233,74,-0.5341567937284708],[118,233,75,-0.534636203199625],[118,233,76,-0.534485774114728],[118,233,77,-0.5334059037268162],[118,233,78,-0.5312022604048252],[118,233,79,-0.5284954980015755],[118,234,64,-0.540659885853529],[118,234,65,-0.5400260500609875],[118,234,66,-0.5383706800639629],[118,234,67,-0.5361858643591404],[118,234,68,-0.5343015473335981],[118,234,69,-0.533218989148736],[118,234,70,-0.5328878294676542],[118,234,71,-0.5327760968357325],[118,234,72,-0.5329174771904945],[118,234,73,-0.5334567576646805],[118,234,74,-0.5341567937284708],[118,234,75,-0.534636203199625],[118,234,76,-0.534485774114728],[118,234,77,-0.5334059037268162],[118,234,78,-0.5312022604048252],[118,234,79,-0.5284954980015755],[118,235,64,-0.540659885853529],[118,235,65,-0.5400260500609875],[118,235,66,-0.5383706800639629],[118,235,67,-0.5361858643591404],[118,235,68,-0.5343015473335981],[118,235,69,-0.533218989148736],[118,235,70,-0.5328878294676542],[118,235,71,-0.5327760968357325],[118,235,72,-0.5329174771904945],[118,235,73,-0.5334567576646805],[118,235,74,-0.5341567937284708],[118,235,75,-0.534636203199625],[118,235,76,-0.534485774114728],[118,235,77,-0.5334059037268162],[118,235,78,-0.5312022604048252],[118,235,79,-0.5284954980015755],[118,236,64,-0.540659885853529],[118,236,65,-0.5400260500609875],[118,236,66,-0.5383706800639629],[118,236,67,-0.5361858643591404],[118,236,68,-0.5343015473335981],[118,236,69,-0.533218989148736],[118,236,70,-0.5328878294676542],[118,236,71,-0.5327760968357325],[118,236,72,-0.5329174771904945],[118,236,73,-0.5334567576646805],[118,236,74,-0.5341567937284708],[118,236,75,-0.534636203199625],[118,236,76,-0.534485774114728],[118,236,77,-0.5334059037268162],[118,236,78,-0.5312022604048252],[118,236,79,-0.5284954980015755],[118,237,64,-0.540659885853529],[118,237,65,-0.5400260500609875],[118,237,66,-0.5383706800639629],[118,237,67,-0.5361858643591404],[118,237,68,-0.5343015473335981],[118,237,69,-0.533218989148736],[118,237,70,-0.5328878294676542],[118,237,71,-0.5327760968357325],[118,237,72,-0.5329174771904945],[118,237,73,-0.5334567576646805],[118,237,74,-0.5341567937284708],[118,237,75,-0.534636203199625],[118,237,76,-0.534485774114728],[118,237,77,-0.5334059037268162],[118,237,78,-0.5312022604048252],[118,237,79,-0.5284954980015755],[118,238,64,-0.540659885853529],[118,238,65,-0.5400260500609875],[118,238,66,-0.5383706800639629],[118,238,67,-0.5361858643591404],[118,238,68,-0.5343015473335981],[118,238,69,-0.533218989148736],[118,238,70,-0.5328878294676542],[118,238,71,-0.5327760968357325],[118,238,72,-0.5329174771904945],[118,238,73,-0.5334567576646805],[118,238,74,-0.5341567937284708],[118,238,75,-0.534636203199625],[118,238,76,-0.534485774114728],[118,238,77,-0.5334059037268162],[118,238,78,-0.5312022604048252],[118,238,79,-0.5284954980015755],[118,239,64,-0.540659885853529],[118,239,65,-0.5400260500609875],[118,239,66,-0.5383706800639629],[118,239,67,-0.5361858643591404],[118,239,68,-0.5343015473335981],[118,239,69,-0.533218989148736],[118,239,70,-0.5328878294676542],[118,239,71,-0.5327760968357325],[118,239,72,-0.5329174771904945],[118,239,73,-0.5334567576646805],[118,239,74,-0.5341567937284708],[118,239,75,-0.534636203199625],[118,239,76,-0.534485774114728],[118,239,77,-0.5334059037268162],[118,239,78,-0.5312022604048252],[118,239,79,-0.5284954980015755],[118,240,64,-0.540659885853529],[118,240,65,-0.5400260500609875],[118,240,66,-0.5383706800639629],[118,240,67,-0.5361858643591404],[118,240,68,-0.5343015473335981],[118,240,69,-0.533218989148736],[118,240,70,-0.5328878294676542],[118,240,71,-0.5327760968357325],[118,240,72,-0.5329174771904945],[118,240,73,-0.5334567576646805],[118,240,74,-0.5341567937284708],[118,240,75,-0.534636203199625],[118,240,76,-0.534485774114728],[118,240,77,-0.5334059037268162],[118,240,78,-0.5312022604048252],[118,240,79,-0.5284954980015755],[118,241,64,-0.540659885853529],[118,241,65,-0.5400260500609875],[118,241,66,-0.5383706800639629],[118,241,67,-0.5361858643591404],[118,241,68,-0.5343015473335981],[118,241,69,-0.533218989148736],[118,241,70,-0.5328878294676542],[118,241,71,-0.5327760968357325],[118,241,72,-0.5329174771904945],[118,241,73,-0.5334567576646805],[118,241,74,-0.5341567937284708],[118,241,75,-0.534636203199625],[118,241,76,-0.534485774114728],[118,241,77,-0.5334059037268162],[118,241,78,-0.5312022604048252],[118,241,79,-0.5284954980015755],[118,242,64,-0.540659885853529],[118,242,65,-0.5400260500609875],[118,242,66,-0.5383706800639629],[118,242,67,-0.5361858643591404],[118,242,68,-0.5343015473335981],[118,242,69,-0.533218989148736],[118,242,70,-0.5328878294676542],[118,242,71,-0.5327760968357325],[118,242,72,-0.5329174771904945],[118,242,73,-0.5334567576646805],[118,242,74,-0.5341567937284708],[118,242,75,-0.534636203199625],[118,242,76,-0.534485774114728],[118,242,77,-0.5334059037268162],[118,242,78,-0.5312022604048252],[118,242,79,-0.5284954980015755],[118,243,64,-0.540659885853529],[118,243,65,-0.5400260500609875],[118,243,66,-0.5383706800639629],[118,243,67,-0.5361858643591404],[118,243,68,-0.5343015473335981],[118,243,69,-0.533218989148736],[118,243,70,-0.5328878294676542],[118,243,71,-0.5327760968357325],[118,243,72,-0.5329174771904945],[118,243,73,-0.5334567576646805],[118,243,74,-0.5341567937284708],[118,243,75,-0.534636203199625],[118,243,76,-0.534485774114728],[118,243,77,-0.5334059037268162],[118,243,78,-0.5312022604048252],[118,243,79,-0.5284954980015755],[118,244,64,-0.540659885853529],[118,244,65,-0.5400260500609875],[118,244,66,-0.5383706800639629],[118,244,67,-0.5361858643591404],[118,244,68,-0.5343015473335981],[118,244,69,-0.533218989148736],[118,244,70,-0.5328878294676542],[118,244,71,-0.5327760968357325],[118,244,72,-0.5329174771904945],[118,244,73,-0.5334567576646805],[118,244,74,-0.5341567937284708],[118,244,75,-0.534636203199625],[118,244,76,-0.534485774114728],[118,244,77,-0.5334059037268162],[118,244,78,-0.5312022604048252],[118,244,79,-0.5284954980015755],[118,245,64,-0.540659885853529],[118,245,65,-0.5400260500609875],[118,245,66,-0.5383706800639629],[118,245,67,-0.5361858643591404],[118,245,68,-0.5343015473335981],[118,245,69,-0.533218989148736],[118,245,70,-0.5328878294676542],[118,245,71,-0.5327760968357325],[118,245,72,-0.5329174771904945],[118,245,73,-0.5334567576646805],[118,245,74,-0.5341567937284708],[118,245,75,-0.534636203199625],[118,245,76,-0.534485774114728],[118,245,77,-0.5334059037268162],[118,245,78,-0.5312022604048252],[118,245,79,-0.5284954980015755],[118,246,64,-0.540659885853529],[118,246,65,-0.5400260500609875],[118,246,66,-0.5383706800639629],[118,246,67,-0.5361858643591404],[118,246,68,-0.5343015473335981],[118,246,69,-0.533218989148736],[118,246,70,-0.5328878294676542],[118,246,71,-0.5327760968357325],[118,246,72,-0.5329174771904945],[118,246,73,-0.5334567576646805],[118,246,74,-0.5341567937284708],[118,246,75,-0.534636203199625],[118,246,76,-0.534485774114728],[118,246,77,-0.5334059037268162],[118,246,78,-0.5312022604048252],[118,246,79,-0.5284954980015755],[118,247,64,-0.540659885853529],[118,247,65,-0.5400260500609875],[118,247,66,-0.5383706800639629],[118,247,67,-0.5361858643591404],[118,247,68,-0.5343015473335981],[118,247,69,-0.533218989148736],[118,247,70,-0.5328878294676542],[118,247,71,-0.5327760968357325],[118,247,72,-0.5329174771904945],[118,247,73,-0.5334567576646805],[118,247,74,-0.5341567937284708],[118,247,75,-0.534636203199625],[118,247,76,-0.534485774114728],[118,247,77,-0.5334059037268162],[118,247,78,-0.5312022604048252],[118,247,79,-0.5284954980015755],[118,248,64,-0.540659885853529],[118,248,65,-0.5400260500609875],[118,248,66,-0.5383706800639629],[118,248,67,-0.5361858643591404],[118,248,68,-0.5343015473335981],[118,248,69,-0.533218989148736],[118,248,70,-0.5328878294676542],[118,248,71,-0.5327760968357325],[118,248,72,-0.5329174771904945],[118,248,73,-0.5334567576646805],[118,248,74,-0.5341567937284708],[118,248,75,-0.534636203199625],[118,248,76,-0.534485774114728],[118,248,77,-0.5334059037268162],[118,248,78,-0.5312022604048252],[118,248,79,-0.5284954980015755],[118,249,64,-0.540659885853529],[118,249,65,-0.5400260500609875],[118,249,66,-0.5383706800639629],[118,249,67,-0.5361858643591404],[118,249,68,-0.5343015473335981],[118,249,69,-0.533218989148736],[118,249,70,-0.5328878294676542],[118,249,71,-0.5327760968357325],[118,249,72,-0.5329174771904945],[118,249,73,-0.5334567576646805],[118,249,74,-0.5341567937284708],[118,249,75,-0.534636203199625],[118,249,76,-0.534485774114728],[118,249,77,-0.5334059037268162],[118,249,78,-0.5312022604048252],[118,249,79,-0.5284954980015755],[118,250,64,-0.540659885853529],[118,250,65,-0.5400260500609875],[118,250,66,-0.5383706800639629],[118,250,67,-0.5361858643591404],[118,250,68,-0.5343015473335981],[118,250,69,-0.533218989148736],[118,250,70,-0.5328878294676542],[118,250,71,-0.5327760968357325],[118,250,72,-0.5329174771904945],[118,250,73,-0.5334567576646805],[118,250,74,-0.5341567937284708],[118,250,75,-0.534636203199625],[118,250,76,-0.534485774114728],[118,250,77,-0.5334059037268162],[118,250,78,-0.5312022604048252],[118,250,79,-0.5284954980015755],[118,251,64,-0.540659885853529],[118,251,65,-0.5400260500609875],[118,251,66,-0.5383706800639629],[118,251,67,-0.5361858643591404],[118,251,68,-0.5343015473335981],[118,251,69,-0.533218989148736],[118,251,70,-0.5328878294676542],[118,251,71,-0.5327760968357325],[118,251,72,-0.5329174771904945],[118,251,73,-0.5334567576646805],[118,251,74,-0.5341567937284708],[118,251,75,-0.534636203199625],[118,251,76,-0.534485774114728],[118,251,77,-0.5334059037268162],[118,251,78,-0.5312022604048252],[118,251,79,-0.5284954980015755],[118,252,64,-0.540659885853529],[118,252,65,-0.5400260500609875],[118,252,66,-0.5383706800639629],[118,252,67,-0.5361858643591404],[118,252,68,-0.5343015473335981],[118,252,69,-0.533218989148736],[118,252,70,-0.5328878294676542],[118,252,71,-0.5327760968357325],[118,252,72,-0.5329174771904945],[118,252,73,-0.5334567576646805],[118,252,74,-0.5341567937284708],[118,252,75,-0.534636203199625],[118,252,76,-0.534485774114728],[118,252,77,-0.5334059037268162],[118,252,78,-0.5312022604048252],[118,252,79,-0.5284954980015755],[118,253,64,-0.540659885853529],[118,253,65,-0.5400260500609875],[118,253,66,-0.5383706800639629],[118,253,67,-0.5361858643591404],[118,253,68,-0.5343015473335981],[118,253,69,-0.533218989148736],[118,253,70,-0.5328878294676542],[118,253,71,-0.5327760968357325],[118,253,72,-0.5329174771904945],[118,253,73,-0.5334567576646805],[118,253,74,-0.5341567937284708],[118,253,75,-0.534636203199625],[118,253,76,-0.534485774114728],[118,253,77,-0.5334059037268162],[118,253,78,-0.5312022604048252],[118,253,79,-0.5284954980015755],[118,254,64,-0.540659885853529],[118,254,65,-0.5400260500609875],[118,254,66,-0.5383706800639629],[118,254,67,-0.5361858643591404],[118,254,68,-0.5343015473335981],[118,254,69,-0.533218989148736],[118,254,70,-0.5328878294676542],[118,254,71,-0.5327760968357325],[118,254,72,-0.5329174771904945],[118,254,73,-0.5334567576646805],[118,254,74,-0.5341567937284708],[118,254,75,-0.534636203199625],[118,254,76,-0.534485774114728],[118,254,77,-0.5334059037268162],[118,254,78,-0.5312022604048252],[118,254,79,-0.5284954980015755],[118,255,64,-0.540659885853529],[118,255,65,-0.5400260500609875],[118,255,66,-0.5383706800639629],[118,255,67,-0.5361858643591404],[118,255,68,-0.5343015473335981],[118,255,69,-0.533218989148736],[118,255,70,-0.5328878294676542],[118,255,71,-0.5327760968357325],[118,255,72,-0.5329174771904945],[118,255,73,-0.5334567576646805],[118,255,74,-0.5341567937284708],[118,255,75,-0.534636203199625],[118,255,76,-0.534485774114728],[118,255,77,-0.5334059037268162],[118,255,78,-0.5312022604048252],[118,255,79,-0.5284954980015755],[118,256,64,-0.540659885853529],[118,256,65,-0.5400260500609875],[118,256,66,-0.5383706800639629],[118,256,67,-0.5361858643591404],[118,256,68,-0.5343015473335981],[118,256,69,-0.533218989148736],[118,256,70,-0.5328878294676542],[118,256,71,-0.5327760968357325],[118,256,72,-0.5329174771904945],[118,256,73,-0.5334567576646805],[118,256,74,-0.5341567937284708],[118,256,75,-0.534636203199625],[118,256,76,-0.534485774114728],[118,256,77,-0.5334059037268162],[118,256,78,-0.5312022604048252],[118,256,79,-0.5284954980015755],[118,257,64,-0.540659885853529],[118,257,65,-0.5400260500609875],[118,257,66,-0.5383706800639629],[118,257,67,-0.5361858643591404],[118,257,68,-0.5343015473335981],[118,257,69,-0.533218989148736],[118,257,70,-0.5328878294676542],[118,257,71,-0.5327760968357325],[118,257,72,-0.5329174771904945],[118,257,73,-0.5334567576646805],[118,257,74,-0.5341567937284708],[118,257,75,-0.534636203199625],[118,257,76,-0.534485774114728],[118,257,77,-0.5334059037268162],[118,257,78,-0.5312022604048252],[118,257,79,-0.5284954980015755],[118,258,64,-0.540659885853529],[118,258,65,-0.5400260500609875],[118,258,66,-0.5383706800639629],[118,258,67,-0.5361858643591404],[118,258,68,-0.5343015473335981],[118,258,69,-0.533218989148736],[118,258,70,-0.5328878294676542],[118,258,71,-0.5327760968357325],[118,258,72,-0.5329174771904945],[118,258,73,-0.5334567576646805],[118,258,74,-0.5341567937284708],[118,258,75,-0.534636203199625],[118,258,76,-0.534485774114728],[118,258,77,-0.5334059037268162],[118,258,78,-0.5312022604048252],[118,258,79,-0.5284954980015755],[118,259,64,-0.540659885853529],[118,259,65,-0.5400260500609875],[118,259,66,-0.5383706800639629],[118,259,67,-0.5361858643591404],[118,259,68,-0.5343015473335981],[118,259,69,-0.533218989148736],[118,259,70,-0.5328878294676542],[118,259,71,-0.5327760968357325],[118,259,72,-0.5329174771904945],[118,259,73,-0.5334567576646805],[118,259,74,-0.5341567937284708],[118,259,75,-0.534636203199625],[118,259,76,-0.534485774114728],[118,259,77,-0.5334059037268162],[118,259,78,-0.5312022604048252],[118,259,79,-0.5284954980015755],[118,260,64,-0.540659885853529],[118,260,65,-0.5400260500609875],[118,260,66,-0.5383706800639629],[118,260,67,-0.5361858643591404],[118,260,68,-0.5343015473335981],[118,260,69,-0.533218989148736],[118,260,70,-0.5328878294676542],[118,260,71,-0.5327760968357325],[118,260,72,-0.5329174771904945],[118,260,73,-0.5334567576646805],[118,260,74,-0.5341567937284708],[118,260,75,-0.534636203199625],[118,260,76,-0.534485774114728],[118,260,77,-0.5334059037268162],[118,260,78,-0.5312022604048252],[118,260,79,-0.5284954980015755],[118,261,64,-0.540659885853529],[118,261,65,-0.5400260500609875],[118,261,66,-0.5383706800639629],[118,261,67,-0.5361858643591404],[118,261,68,-0.5343015473335981],[118,261,69,-0.533218989148736],[118,261,70,-0.5328878294676542],[118,261,71,-0.5327760968357325],[118,261,72,-0.5329174771904945],[118,261,73,-0.5334567576646805],[118,261,74,-0.5341567937284708],[118,261,75,-0.534636203199625],[118,261,76,-0.534485774114728],[118,261,77,-0.5334059037268162],[118,261,78,-0.5312022604048252],[118,261,79,-0.5284954980015755],[118,262,64,-0.540659885853529],[118,262,65,-0.5400260500609875],[118,262,66,-0.5383706800639629],[118,262,67,-0.5361858643591404],[118,262,68,-0.5343015473335981],[118,262,69,-0.533218989148736],[118,262,70,-0.5328878294676542],[118,262,71,-0.5327760968357325],[118,262,72,-0.5329174771904945],[118,262,73,-0.5334567576646805],[118,262,74,-0.5341567937284708],[118,262,75,-0.534636203199625],[118,262,76,-0.534485774114728],[118,262,77,-0.5334059037268162],[118,262,78,-0.5312022604048252],[118,262,79,-0.5284954980015755],[118,263,64,-0.540659885853529],[118,263,65,-0.5400260500609875],[118,263,66,-0.5383706800639629],[118,263,67,-0.5361858643591404],[118,263,68,-0.5343015473335981],[118,263,69,-0.533218989148736],[118,263,70,-0.5328878294676542],[118,263,71,-0.5327760968357325],[118,263,72,-0.5329174771904945],[118,263,73,-0.5334567576646805],[118,263,74,-0.5341567937284708],[118,263,75,-0.534636203199625],[118,263,76,-0.534485774114728],[118,263,77,-0.5334059037268162],[118,263,78,-0.5312022604048252],[118,263,79,-0.5284954980015755],[118,264,64,-0.540659885853529],[118,264,65,-0.5400260500609875],[118,264,66,-0.5383706800639629],[118,264,67,-0.5361858643591404],[118,264,68,-0.5343015473335981],[118,264,69,-0.533218989148736],[118,264,70,-0.5328878294676542],[118,264,71,-0.5327760968357325],[118,264,72,-0.5329174771904945],[118,264,73,-0.5334567576646805],[118,264,74,-0.5341567937284708],[118,264,75,-0.534636203199625],[118,264,76,-0.534485774114728],[118,264,77,-0.5334059037268162],[118,264,78,-0.5312022604048252],[118,264,79,-0.5284954980015755],[118,265,64,-0.540659885853529],[118,265,65,-0.5400260500609875],[118,265,66,-0.5383706800639629],[118,265,67,-0.5361858643591404],[118,265,68,-0.5343015473335981],[118,265,69,-0.533218989148736],[118,265,70,-0.5328878294676542],[118,265,71,-0.5327760968357325],[118,265,72,-0.5329174771904945],[118,265,73,-0.5334567576646805],[118,265,74,-0.5341567937284708],[118,265,75,-0.534636203199625],[118,265,76,-0.534485774114728],[118,265,77,-0.5334059037268162],[118,265,78,-0.5312022604048252],[118,265,79,-0.5284954980015755],[118,266,64,-0.540659885853529],[118,266,65,-0.5400260500609875],[118,266,66,-0.5383706800639629],[118,266,67,-0.5361858643591404],[118,266,68,-0.5343015473335981],[118,266,69,-0.533218989148736],[118,266,70,-0.5328878294676542],[118,266,71,-0.5327760968357325],[118,266,72,-0.5329174771904945],[118,266,73,-0.5334567576646805],[118,266,74,-0.5341567937284708],[118,266,75,-0.534636203199625],[118,266,76,-0.534485774114728],[118,266,77,-0.5334059037268162],[118,266,78,-0.5312022604048252],[118,266,79,-0.5284954980015755],[118,267,64,-0.540659885853529],[118,267,65,-0.5400260500609875],[118,267,66,-0.5383706800639629],[118,267,67,-0.5361858643591404],[118,267,68,-0.5343015473335981],[118,267,69,-0.533218989148736],[118,267,70,-0.5328878294676542],[118,267,71,-0.5327760968357325],[118,267,72,-0.5329174771904945],[118,267,73,-0.5334567576646805],[118,267,74,-0.5341567937284708],[118,267,75,-0.534636203199625],[118,267,76,-0.534485774114728],[118,267,77,-0.5334059037268162],[118,267,78,-0.5312022604048252],[118,267,79,-0.5284954980015755],[118,268,64,-0.540659885853529],[118,268,65,-0.5400260500609875],[118,268,66,-0.5383706800639629],[118,268,67,-0.5361858643591404],[118,268,68,-0.5343015473335981],[118,268,69,-0.533218989148736],[118,268,70,-0.5328878294676542],[118,268,71,-0.5327760968357325],[118,268,72,-0.5329174771904945],[118,268,73,-0.5334567576646805],[118,268,74,-0.5341567937284708],[118,268,75,-0.534636203199625],[118,268,76,-0.534485774114728],[118,268,77,-0.5334059037268162],[118,268,78,-0.5312022604048252],[118,268,79,-0.5284954980015755],[118,269,64,-0.540659885853529],[118,269,65,-0.5400260500609875],[118,269,66,-0.5383706800639629],[118,269,67,-0.5361858643591404],[118,269,68,-0.5343015473335981],[118,269,69,-0.533218989148736],[118,269,70,-0.5328878294676542],[118,269,71,-0.5327760968357325],[118,269,72,-0.5329174771904945],[118,269,73,-0.5334567576646805],[118,269,74,-0.5341567937284708],[118,269,75,-0.534636203199625],[118,269,76,-0.534485774114728],[118,269,77,-0.5334059037268162],[118,269,78,-0.5312022604048252],[118,269,79,-0.5284954980015755],[118,270,64,-0.540659885853529],[118,270,65,-0.5400260500609875],[118,270,66,-0.5383706800639629],[118,270,67,-0.5361858643591404],[118,270,68,-0.5343015473335981],[118,270,69,-0.533218989148736],[118,270,70,-0.5328878294676542],[118,270,71,-0.5327760968357325],[118,270,72,-0.5329174771904945],[118,270,73,-0.5334567576646805],[118,270,74,-0.5341567937284708],[118,270,75,-0.534636203199625],[118,270,76,-0.534485774114728],[118,270,77,-0.5334059037268162],[118,270,78,-0.5312022604048252],[118,270,79,-0.5284954980015755],[118,271,64,-0.540659885853529],[118,271,65,-0.5400260500609875],[118,271,66,-0.5383706800639629],[118,271,67,-0.5361858643591404],[118,271,68,-0.5343015473335981],[118,271,69,-0.533218989148736],[118,271,70,-0.5328878294676542],[118,271,71,-0.5327760968357325],[118,271,72,-0.5329174771904945],[118,271,73,-0.5334567576646805],[118,271,74,-0.5341567937284708],[118,271,75,-0.534636203199625],[118,271,76,-0.534485774114728],[118,271,77,-0.5334059037268162],[118,271,78,-0.5312022604048252],[118,271,79,-0.5284954980015755],[118,272,64,-0.540659885853529],[118,272,65,-0.5400260500609875],[118,272,66,-0.5383706800639629],[118,272,67,-0.5361858643591404],[118,272,68,-0.5343015473335981],[118,272,69,-0.533218989148736],[118,272,70,-0.5328878294676542],[118,272,71,-0.5327760968357325],[118,272,72,-0.5329174771904945],[118,272,73,-0.5334567576646805],[118,272,74,-0.5341567937284708],[118,272,75,-0.534636203199625],[118,272,76,-0.534485774114728],[118,272,77,-0.5334059037268162],[118,272,78,-0.5312022604048252],[118,272,79,-0.5284954980015755],[118,273,64,-0.540659885853529],[118,273,65,-0.5400260500609875],[118,273,66,-0.5383706800639629],[118,273,67,-0.5361858643591404],[118,273,68,-0.5343015473335981],[118,273,69,-0.533218989148736],[118,273,70,-0.5328878294676542],[118,273,71,-0.5327760968357325],[118,273,72,-0.5329174771904945],[118,273,73,-0.5334567576646805],[118,273,74,-0.5341567937284708],[118,273,75,-0.534636203199625],[118,273,76,-0.534485774114728],[118,273,77,-0.5334059037268162],[118,273,78,-0.5312022604048252],[118,273,79,-0.5284954980015755],[118,274,64,-0.540659885853529],[118,274,65,-0.5400260500609875],[118,274,66,-0.5383706800639629],[118,274,67,-0.5361858643591404],[118,274,68,-0.5343015473335981],[118,274,69,-0.533218989148736],[118,274,70,-0.5328878294676542],[118,274,71,-0.5327760968357325],[118,274,72,-0.5329174771904945],[118,274,73,-0.5334567576646805],[118,274,74,-0.5341567937284708],[118,274,75,-0.534636203199625],[118,274,76,-0.534485774114728],[118,274,77,-0.5334059037268162],[118,274,78,-0.5312022604048252],[118,274,79,-0.5284954980015755],[118,275,64,-0.540659885853529],[118,275,65,-0.5400260500609875],[118,275,66,-0.5383706800639629],[118,275,67,-0.5361858643591404],[118,275,68,-0.5343015473335981],[118,275,69,-0.533218989148736],[118,275,70,-0.5328878294676542],[118,275,71,-0.5327760968357325],[118,275,72,-0.5329174771904945],[118,275,73,-0.5334567576646805],[118,275,74,-0.5341567937284708],[118,275,75,-0.534636203199625],[118,275,76,-0.534485774114728],[118,275,77,-0.5334059037268162],[118,275,78,-0.5312022604048252],[118,275,79,-0.5284954980015755],[118,276,64,-0.540659885853529],[118,276,65,-0.5400260500609875],[118,276,66,-0.5383706800639629],[118,276,67,-0.5361858643591404],[118,276,68,-0.5343015473335981],[118,276,69,-0.533218989148736],[118,276,70,-0.5328878294676542],[118,276,71,-0.5327760968357325],[118,276,72,-0.5329174771904945],[118,276,73,-0.5334567576646805],[118,276,74,-0.5341567937284708],[118,276,75,-0.534636203199625],[118,276,76,-0.534485774114728],[118,276,77,-0.5334059037268162],[118,276,78,-0.5312022604048252],[118,276,79,-0.5284954980015755],[118,277,64,-0.540659885853529],[118,277,65,-0.5400260500609875],[118,277,66,-0.5383706800639629],[118,277,67,-0.5361858643591404],[118,277,68,-0.5343015473335981],[118,277,69,-0.533218989148736],[118,277,70,-0.5328878294676542],[118,277,71,-0.5327760968357325],[118,277,72,-0.5329174771904945],[118,277,73,-0.5334567576646805],[118,277,74,-0.5341567937284708],[118,277,75,-0.534636203199625],[118,277,76,-0.534485774114728],[118,277,77,-0.5334059037268162],[118,277,78,-0.5312022604048252],[118,277,79,-0.5284954980015755],[118,278,64,-0.540659885853529],[118,278,65,-0.5400260500609875],[118,278,66,-0.5383706800639629],[118,278,67,-0.5361858643591404],[118,278,68,-0.5343015473335981],[118,278,69,-0.533218989148736],[118,278,70,-0.5328878294676542],[118,278,71,-0.5327760968357325],[118,278,72,-0.5329174771904945],[118,278,73,-0.5334567576646805],[118,278,74,-0.5341567937284708],[118,278,75,-0.534636203199625],[118,278,76,-0.534485774114728],[118,278,77,-0.5334059037268162],[118,278,78,-0.5312022604048252],[118,278,79,-0.5284954980015755],[118,279,64,-0.540659885853529],[118,279,65,-0.5400260500609875],[118,279,66,-0.5383706800639629],[118,279,67,-0.5361858643591404],[118,279,68,-0.5343015473335981],[118,279,69,-0.533218989148736],[118,279,70,-0.5328878294676542],[118,279,71,-0.5327760968357325],[118,279,72,-0.5329174771904945],[118,279,73,-0.5334567576646805],[118,279,74,-0.5341567937284708],[118,279,75,-0.534636203199625],[118,279,76,-0.534485774114728],[118,279,77,-0.5334059037268162],[118,279,78,-0.5312022604048252],[118,279,79,-0.5284954980015755],[118,280,64,-0.540659885853529],[118,280,65,-0.5400260500609875],[118,280,66,-0.5383706800639629],[118,280,67,-0.5361858643591404],[118,280,68,-0.5343015473335981],[118,280,69,-0.533218989148736],[118,280,70,-0.5328878294676542],[118,280,71,-0.5327760968357325],[118,280,72,-0.5329174771904945],[118,280,73,-0.5334567576646805],[118,280,74,-0.5341567937284708],[118,280,75,-0.534636203199625],[118,280,76,-0.534485774114728],[118,280,77,-0.5334059037268162],[118,280,78,-0.5312022604048252],[118,280,79,-0.5284954980015755],[118,281,64,-0.540659885853529],[118,281,65,-0.5400260500609875],[118,281,66,-0.5383706800639629],[118,281,67,-0.5361858643591404],[118,281,68,-0.5343015473335981],[118,281,69,-0.533218989148736],[118,281,70,-0.5328878294676542],[118,281,71,-0.5327760968357325],[118,281,72,-0.5329174771904945],[118,281,73,-0.5334567576646805],[118,281,74,-0.5341567937284708],[118,281,75,-0.534636203199625],[118,281,76,-0.534485774114728],[118,281,77,-0.5334059037268162],[118,281,78,-0.5312022604048252],[118,281,79,-0.5284954980015755],[118,282,64,-0.540659885853529],[118,282,65,-0.5400260500609875],[118,282,66,-0.5383706800639629],[118,282,67,-0.5361858643591404],[118,282,68,-0.5343015473335981],[118,282,69,-0.533218989148736],[118,282,70,-0.5328878294676542],[118,282,71,-0.5327760968357325],[118,282,72,-0.5329174771904945],[118,282,73,-0.5334567576646805],[118,282,74,-0.5341567937284708],[118,282,75,-0.534636203199625],[118,282,76,-0.534485774114728],[118,282,77,-0.5334059037268162],[118,282,78,-0.5312022604048252],[118,282,79,-0.5284954980015755],[118,283,64,-0.540659885853529],[118,283,65,-0.5400260500609875],[118,283,66,-0.5383706800639629],[118,283,67,-0.5361858643591404],[118,283,68,-0.5343015473335981],[118,283,69,-0.533218989148736],[118,283,70,-0.5328878294676542],[118,283,71,-0.5327760968357325],[118,283,72,-0.5329174771904945],[118,283,73,-0.5334567576646805],[118,283,74,-0.5341567937284708],[118,283,75,-0.534636203199625],[118,283,76,-0.534485774114728],[118,283,77,-0.5334059037268162],[118,283,78,-0.5312022604048252],[118,283,79,-0.5284954980015755],[118,284,64,-0.540659885853529],[118,284,65,-0.5400260500609875],[118,284,66,-0.5383706800639629],[118,284,67,-0.5361858643591404],[118,284,68,-0.5343015473335981],[118,284,69,-0.533218989148736],[118,284,70,-0.5328878294676542],[118,284,71,-0.5327760968357325],[118,284,72,-0.5329174771904945],[118,284,73,-0.5334567576646805],[118,284,74,-0.5341567937284708],[118,284,75,-0.534636203199625],[118,284,76,-0.534485774114728],[118,284,77,-0.5334059037268162],[118,284,78,-0.5312022604048252],[118,284,79,-0.5284954980015755],[118,285,64,-0.540659885853529],[118,285,65,-0.5400260500609875],[118,285,66,-0.5383706800639629],[118,285,67,-0.5361858643591404],[118,285,68,-0.5343015473335981],[118,285,69,-0.533218989148736],[118,285,70,-0.5328878294676542],[118,285,71,-0.5327760968357325],[118,285,72,-0.5329174771904945],[118,285,73,-0.5334567576646805],[118,285,74,-0.5341567937284708],[118,285,75,-0.534636203199625],[118,285,76,-0.534485774114728],[118,285,77,-0.5334059037268162],[118,285,78,-0.5312022604048252],[118,285,79,-0.5284954980015755],[118,286,64,-0.540659885853529],[118,286,65,-0.5400260500609875],[118,286,66,-0.5383706800639629],[118,286,67,-0.5361858643591404],[118,286,68,-0.5343015473335981],[118,286,69,-0.533218989148736],[118,286,70,-0.5328878294676542],[118,286,71,-0.5327760968357325],[118,286,72,-0.5329174771904945],[118,286,73,-0.5334567576646805],[118,286,74,-0.5341567937284708],[118,286,75,-0.534636203199625],[118,286,76,-0.534485774114728],[118,286,77,-0.5334059037268162],[118,286,78,-0.5312022604048252],[118,286,79,-0.5284954980015755],[118,287,64,-0.540659885853529],[118,287,65,-0.5400260500609875],[118,287,66,-0.5383706800639629],[118,287,67,-0.5361858643591404],[118,287,68,-0.5343015473335981],[118,287,69,-0.533218989148736],[118,287,70,-0.5328878294676542],[118,287,71,-0.5327760968357325],[118,287,72,-0.5329174771904945],[118,287,73,-0.5334567576646805],[118,287,74,-0.5341567937284708],[118,287,75,-0.534636203199625],[118,287,76,-0.534485774114728],[118,287,77,-0.5334059037268162],[118,287,78,-0.5312022604048252],[118,287,79,-0.5284954980015755],[118,288,64,-0.540659885853529],[118,288,65,-0.5400260500609875],[118,288,66,-0.5383706800639629],[118,288,67,-0.5361858643591404],[118,288,68,-0.5343015473335981],[118,288,69,-0.533218989148736],[118,288,70,-0.5328878294676542],[118,288,71,-0.5327760968357325],[118,288,72,-0.5329174771904945],[118,288,73,-0.5334567576646805],[118,288,74,-0.5341567937284708],[118,288,75,-0.534636203199625],[118,288,76,-0.534485774114728],[118,288,77,-0.5334059037268162],[118,288,78,-0.5312022604048252],[118,288,79,-0.5284954980015755],[118,289,64,-0.540659885853529],[118,289,65,-0.5400260500609875],[118,289,66,-0.5383706800639629],[118,289,67,-0.5361858643591404],[118,289,68,-0.5343015473335981],[118,289,69,-0.533218989148736],[118,289,70,-0.5328878294676542],[118,289,71,-0.5327760968357325],[118,289,72,-0.5329174771904945],[118,289,73,-0.5334567576646805],[118,289,74,-0.5341567937284708],[118,289,75,-0.534636203199625],[118,289,76,-0.534485774114728],[118,289,77,-0.5334059037268162],[118,289,78,-0.5312022604048252],[118,289,79,-0.5284954980015755],[118,290,64,-0.540659885853529],[118,290,65,-0.5400260500609875],[118,290,66,-0.5383706800639629],[118,290,67,-0.5361858643591404],[118,290,68,-0.5343015473335981],[118,290,69,-0.533218989148736],[118,290,70,-0.5328878294676542],[118,290,71,-0.5327760968357325],[118,290,72,-0.5329174771904945],[118,290,73,-0.5334567576646805],[118,290,74,-0.5341567937284708],[118,290,75,-0.534636203199625],[118,290,76,-0.534485774114728],[118,290,77,-0.5334059037268162],[118,290,78,-0.5312022604048252],[118,290,79,-0.5284954980015755],[118,291,64,-0.540659885853529],[118,291,65,-0.5400260500609875],[118,291,66,-0.5383706800639629],[118,291,67,-0.5361858643591404],[118,291,68,-0.5343015473335981],[118,291,69,-0.533218989148736],[118,291,70,-0.5328878294676542],[118,291,71,-0.5327760968357325],[118,291,72,-0.5329174771904945],[118,291,73,-0.5334567576646805],[118,291,74,-0.5341567937284708],[118,291,75,-0.534636203199625],[118,291,76,-0.534485774114728],[118,291,77,-0.5334059037268162],[118,291,78,-0.5312022604048252],[118,291,79,-0.5284954980015755],[118,292,64,-0.540659885853529],[118,292,65,-0.5400260500609875],[118,292,66,-0.5383706800639629],[118,292,67,-0.5361858643591404],[118,292,68,-0.5343015473335981],[118,292,69,-0.533218989148736],[118,292,70,-0.5328878294676542],[118,292,71,-0.5327760968357325],[118,292,72,-0.5329174771904945],[118,292,73,-0.5334567576646805],[118,292,74,-0.5341567937284708],[118,292,75,-0.534636203199625],[118,292,76,-0.534485774114728],[118,292,77,-0.5334059037268162],[118,292,78,-0.5312022604048252],[118,292,79,-0.5284954980015755],[118,293,64,-0.540659885853529],[118,293,65,-0.5400260500609875],[118,293,66,-0.5383706800639629],[118,293,67,-0.5361858643591404],[118,293,68,-0.5343015473335981],[118,293,69,-0.533218989148736],[118,293,70,-0.5328878294676542],[118,293,71,-0.5327760968357325],[118,293,72,-0.5329174771904945],[118,293,73,-0.5334567576646805],[118,293,74,-0.5341567937284708],[118,293,75,-0.534636203199625],[118,293,76,-0.534485774114728],[118,293,77,-0.5334059037268162],[118,293,78,-0.5312022604048252],[118,293,79,-0.5284954980015755],[118,294,64,-0.540659885853529],[118,294,65,-0.5400260500609875],[118,294,66,-0.5383706800639629],[118,294,67,-0.5361858643591404],[118,294,68,-0.5343015473335981],[118,294,69,-0.533218989148736],[118,294,70,-0.5328878294676542],[118,294,71,-0.5327760968357325],[118,294,72,-0.5329174771904945],[118,294,73,-0.5334567576646805],[118,294,74,-0.5341567937284708],[118,294,75,-0.534636203199625],[118,294,76,-0.534485774114728],[118,294,77,-0.5334059037268162],[118,294,78,-0.5312022604048252],[118,294,79,-0.5284954980015755],[118,295,64,-0.540659885853529],[118,295,65,-0.5400260500609875],[118,295,66,-0.5383706800639629],[118,295,67,-0.5361858643591404],[118,295,68,-0.5343015473335981],[118,295,69,-0.533218989148736],[118,295,70,-0.5328878294676542],[118,295,71,-0.5327760968357325],[118,295,72,-0.5329174771904945],[118,295,73,-0.5334567576646805],[118,295,74,-0.5341567937284708],[118,295,75,-0.534636203199625],[118,295,76,-0.534485774114728],[118,295,77,-0.5334059037268162],[118,295,78,-0.5312022604048252],[118,295,79,-0.5284954980015755],[118,296,64,-0.540659885853529],[118,296,65,-0.5400260500609875],[118,296,66,-0.5383706800639629],[118,296,67,-0.5361858643591404],[118,296,68,-0.5343015473335981],[118,296,69,-0.533218989148736],[118,296,70,-0.5328878294676542],[118,296,71,-0.5327760968357325],[118,296,72,-0.5329174771904945],[118,296,73,-0.5334567576646805],[118,296,74,-0.5341567937284708],[118,296,75,-0.534636203199625],[118,296,76,-0.534485774114728],[118,296,77,-0.5334059037268162],[118,296,78,-0.5312022604048252],[118,296,79,-0.5284954980015755],[118,297,64,-0.540659885853529],[118,297,65,-0.5400260500609875],[118,297,66,-0.5383706800639629],[118,297,67,-0.5361858643591404],[118,297,68,-0.5343015473335981],[118,297,69,-0.533218989148736],[118,297,70,-0.5328878294676542],[118,297,71,-0.5327760968357325],[118,297,72,-0.5329174771904945],[118,297,73,-0.5334567576646805],[118,297,74,-0.5341567937284708],[118,297,75,-0.534636203199625],[118,297,76,-0.534485774114728],[118,297,77,-0.5334059037268162],[118,297,78,-0.5312022604048252],[118,297,79,-0.5284954980015755],[118,298,64,-0.540659885853529],[118,298,65,-0.5400260500609875],[118,298,66,-0.5383706800639629],[118,298,67,-0.5361858643591404],[118,298,68,-0.5343015473335981],[118,298,69,-0.533218989148736],[118,298,70,-0.5328878294676542],[118,298,71,-0.5327760968357325],[118,298,72,-0.5329174771904945],[118,298,73,-0.5334567576646805],[118,298,74,-0.5341567937284708],[118,298,75,-0.534636203199625],[118,298,76,-0.534485774114728],[118,298,77,-0.5334059037268162],[118,298,78,-0.5312022604048252],[118,298,79,-0.5284954980015755],[118,299,64,-0.540659885853529],[118,299,65,-0.5400260500609875],[118,299,66,-0.5383706800639629],[118,299,67,-0.5361858643591404],[118,299,68,-0.5343015473335981],[118,299,69,-0.533218989148736],[118,299,70,-0.5328878294676542],[118,299,71,-0.5327760968357325],[118,299,72,-0.5329174771904945],[118,299,73,-0.5334567576646805],[118,299,74,-0.5341567937284708],[118,299,75,-0.534636203199625],[118,299,76,-0.534485774114728],[118,299,77,-0.5334059037268162],[118,299,78,-0.5312022604048252],[118,299,79,-0.5284954980015755],[118,300,64,-0.540659885853529],[118,300,65,-0.5400260500609875],[118,300,66,-0.5383706800639629],[118,300,67,-0.5361858643591404],[118,300,68,-0.5343015473335981],[118,300,69,-0.533218989148736],[118,300,70,-0.5328878294676542],[118,300,71,-0.5327760968357325],[118,300,72,-0.5329174771904945],[118,300,73,-0.5334567576646805],[118,300,74,-0.5341567937284708],[118,300,75,-0.534636203199625],[118,300,76,-0.534485774114728],[118,300,77,-0.5334059037268162],[118,300,78,-0.5312022604048252],[118,300,79,-0.5284954980015755],[118,301,64,-0.540659885853529],[118,301,65,-0.5400260500609875],[118,301,66,-0.5383706800639629],[118,301,67,-0.5361858643591404],[118,301,68,-0.5343015473335981],[118,301,69,-0.533218989148736],[118,301,70,-0.5328878294676542],[118,301,71,-0.5327760968357325],[118,301,72,-0.5329174771904945],[118,301,73,-0.5334567576646805],[118,301,74,-0.5341567937284708],[118,301,75,-0.534636203199625],[118,301,76,-0.534485774114728],[118,301,77,-0.5334059037268162],[118,301,78,-0.5312022604048252],[118,301,79,-0.5284954980015755],[118,302,64,-0.540659885853529],[118,302,65,-0.5400260500609875],[118,302,66,-0.5383706800639629],[118,302,67,-0.5361858643591404],[118,302,68,-0.5343015473335981],[118,302,69,-0.533218989148736],[118,302,70,-0.5328878294676542],[118,302,71,-0.5327760968357325],[118,302,72,-0.5329174771904945],[118,302,73,-0.5334567576646805],[118,302,74,-0.5341567937284708],[118,302,75,-0.534636203199625],[118,302,76,-0.534485774114728],[118,302,77,-0.5334059037268162],[118,302,78,-0.5312022604048252],[118,302,79,-0.5284954980015755],[118,303,64,-0.540659885853529],[118,303,65,-0.5400260500609875],[118,303,66,-0.5383706800639629],[118,303,67,-0.5361858643591404],[118,303,68,-0.5343015473335981],[118,303,69,-0.533218989148736],[118,303,70,-0.5328878294676542],[118,303,71,-0.5327760968357325],[118,303,72,-0.5329174771904945],[118,303,73,-0.5334567576646805],[118,303,74,-0.5341567937284708],[118,303,75,-0.534636203199625],[118,303,76,-0.534485774114728],[118,303,77,-0.5334059037268162],[118,303,78,-0.5312022604048252],[118,303,79,-0.5284954980015755],[118,304,64,-0.540659885853529],[118,304,65,-0.5400260500609875],[118,304,66,-0.5383706800639629],[118,304,67,-0.5361858643591404],[118,304,68,-0.5343015473335981],[118,304,69,-0.533218989148736],[118,304,70,-0.5328878294676542],[118,304,71,-0.5327760968357325],[118,304,72,-0.5329174771904945],[118,304,73,-0.5334567576646805],[118,304,74,-0.5341567937284708],[118,304,75,-0.534636203199625],[118,304,76,-0.534485774114728],[118,304,77,-0.5334059037268162],[118,304,78,-0.5312022604048252],[118,304,79,-0.5284954980015755],[118,305,64,-0.540659885853529],[118,305,65,-0.5400260500609875],[118,305,66,-0.5383706800639629],[118,305,67,-0.5361858643591404],[118,305,68,-0.5343015473335981],[118,305,69,-0.533218989148736],[118,305,70,-0.5328878294676542],[118,305,71,-0.5327760968357325],[118,305,72,-0.5329174771904945],[118,305,73,-0.5334567576646805],[118,305,74,-0.5341567937284708],[118,305,75,-0.534636203199625],[118,305,76,-0.534485774114728],[118,305,77,-0.5334059037268162],[118,305,78,-0.5312022604048252],[118,305,79,-0.5284954980015755],[118,306,64,-0.540659885853529],[118,306,65,-0.5400260500609875],[118,306,66,-0.5383706800639629],[118,306,67,-0.5361858643591404],[118,306,68,-0.5343015473335981],[118,306,69,-0.533218989148736],[118,306,70,-0.5328878294676542],[118,306,71,-0.5327760968357325],[118,306,72,-0.5329174771904945],[118,306,73,-0.5334567576646805],[118,306,74,-0.5341567937284708],[118,306,75,-0.534636203199625],[118,306,76,-0.534485774114728],[118,306,77,-0.5334059037268162],[118,306,78,-0.5312022604048252],[118,306,79,-0.5284954980015755],[118,307,64,-0.540659885853529],[118,307,65,-0.5400260500609875],[118,307,66,-0.5383706800639629],[118,307,67,-0.5361858643591404],[118,307,68,-0.5343015473335981],[118,307,69,-0.533218989148736],[118,307,70,-0.5328878294676542],[118,307,71,-0.5327760968357325],[118,307,72,-0.5329174771904945],[118,307,73,-0.5334567576646805],[118,307,74,-0.5341567937284708],[118,307,75,-0.534636203199625],[118,307,76,-0.534485774114728],[118,307,77,-0.5334059037268162],[118,307,78,-0.5312022604048252],[118,307,79,-0.5284954980015755],[118,308,64,-0.540659885853529],[118,308,65,-0.5400260500609875],[118,308,66,-0.5383706800639629],[118,308,67,-0.5361858643591404],[118,308,68,-0.5343015473335981],[118,308,69,-0.533218989148736],[118,308,70,-0.5328878294676542],[118,308,71,-0.5327760968357325],[118,308,72,-0.5329174771904945],[118,308,73,-0.5334567576646805],[118,308,74,-0.5341567937284708],[118,308,75,-0.534636203199625],[118,308,76,-0.534485774114728],[118,308,77,-0.5334059037268162],[118,308,78,-0.5312022604048252],[118,308,79,-0.5284954980015755],[118,309,64,-0.540659885853529],[118,309,65,-0.5400260500609875],[118,309,66,-0.5383706800639629],[118,309,67,-0.5361858643591404],[118,309,68,-0.5343015473335981],[118,309,69,-0.533218989148736],[118,309,70,-0.5328878294676542],[118,309,71,-0.5327760968357325],[118,309,72,-0.5329174771904945],[118,309,73,-0.5334567576646805],[118,309,74,-0.5341567937284708],[118,309,75,-0.534636203199625],[118,309,76,-0.534485774114728],[118,309,77,-0.5334059037268162],[118,309,78,-0.5312022604048252],[118,309,79,-0.5284954980015755],[118,310,64,-0.540659885853529],[118,310,65,-0.5400260500609875],[118,310,66,-0.5383706800639629],[118,310,67,-0.5361858643591404],[118,310,68,-0.5343015473335981],[118,310,69,-0.533218989148736],[118,310,70,-0.5328878294676542],[118,310,71,-0.5327760968357325],[118,310,72,-0.5329174771904945],[118,310,73,-0.5334567576646805],[118,310,74,-0.5341567937284708],[118,310,75,-0.534636203199625],[118,310,76,-0.534485774114728],[118,310,77,-0.5334059037268162],[118,310,78,-0.5312022604048252],[118,310,79,-0.5284954980015755],[118,311,64,-0.540659885853529],[118,311,65,-0.5400260500609875],[118,311,66,-0.5383706800639629],[118,311,67,-0.5361858643591404],[118,311,68,-0.5343015473335981],[118,311,69,-0.533218989148736],[118,311,70,-0.5328878294676542],[118,311,71,-0.5327760968357325],[118,311,72,-0.5329174771904945],[118,311,73,-0.5334567576646805],[118,311,74,-0.5341567937284708],[118,311,75,-0.534636203199625],[118,311,76,-0.534485774114728],[118,311,77,-0.5334059037268162],[118,311,78,-0.5312022604048252],[118,311,79,-0.5284954980015755],[118,312,64,-0.540659885853529],[118,312,65,-0.5400260500609875],[118,312,66,-0.5383706800639629],[118,312,67,-0.5361858643591404],[118,312,68,-0.5343015473335981],[118,312,69,-0.533218989148736],[118,312,70,-0.5328878294676542],[118,312,71,-0.5327760968357325],[118,312,72,-0.5329174771904945],[118,312,73,-0.5334567576646805],[118,312,74,-0.5341567937284708],[118,312,75,-0.534636203199625],[118,312,76,-0.534485774114728],[118,312,77,-0.5334059037268162],[118,312,78,-0.5312022604048252],[118,312,79,-0.5284954980015755],[118,313,64,-0.540659885853529],[118,313,65,-0.5400260500609875],[118,313,66,-0.5383706800639629],[118,313,67,-0.5361858643591404],[118,313,68,-0.5343015473335981],[118,313,69,-0.533218989148736],[118,313,70,-0.5328878294676542],[118,313,71,-0.5327760968357325],[118,313,72,-0.5329174771904945],[118,313,73,-0.5334567576646805],[118,313,74,-0.5341567937284708],[118,313,75,-0.534636203199625],[118,313,76,-0.534485774114728],[118,313,77,-0.5334059037268162],[118,313,78,-0.5312022604048252],[118,313,79,-0.5284954980015755],[118,314,64,-0.540659885853529],[118,314,65,-0.5400260500609875],[118,314,66,-0.5383706800639629],[118,314,67,-0.5361858643591404],[118,314,68,-0.5343015473335981],[118,314,69,-0.533218989148736],[118,314,70,-0.5328878294676542],[118,314,71,-0.5327760968357325],[118,314,72,-0.5329174771904945],[118,314,73,-0.5334567576646805],[118,314,74,-0.5341567937284708],[118,314,75,-0.534636203199625],[118,314,76,-0.534485774114728],[118,314,77,-0.5334059037268162],[118,314,78,-0.5312022604048252],[118,314,79,-0.5284954980015755],[118,315,64,-0.540659885853529],[118,315,65,-0.5400260500609875],[118,315,66,-0.5383706800639629],[118,315,67,-0.5361858643591404],[118,315,68,-0.5343015473335981],[118,315,69,-0.533218989148736],[118,315,70,-0.5328878294676542],[118,315,71,-0.5327760968357325],[118,315,72,-0.5329174771904945],[118,315,73,-0.5334567576646805],[118,315,74,-0.5341567937284708],[118,315,75,-0.534636203199625],[118,315,76,-0.534485774114728],[118,315,77,-0.5334059037268162],[118,315,78,-0.5312022604048252],[118,315,79,-0.5284954980015755],[118,316,64,-0.540659885853529],[118,316,65,-0.5400260500609875],[118,316,66,-0.5383706800639629],[118,316,67,-0.5361858643591404],[118,316,68,-0.5343015473335981],[118,316,69,-0.533218989148736],[118,316,70,-0.5328878294676542],[118,316,71,-0.5327760968357325],[118,316,72,-0.5329174771904945],[118,316,73,-0.5334567576646805],[118,316,74,-0.5341567937284708],[118,316,75,-0.534636203199625],[118,316,76,-0.534485774114728],[118,316,77,-0.5334059037268162],[118,316,78,-0.5312022604048252],[118,316,79,-0.5284954980015755],[118,317,64,-0.540659885853529],[118,317,65,-0.5400260500609875],[118,317,66,-0.5383706800639629],[118,317,67,-0.5361858643591404],[118,317,68,-0.5343015473335981],[118,317,69,-0.533218989148736],[118,317,70,-0.5328878294676542],[118,317,71,-0.5327760968357325],[118,317,72,-0.5329174771904945],[118,317,73,-0.5334567576646805],[118,317,74,-0.5341567937284708],[118,317,75,-0.534636203199625],[118,317,76,-0.534485774114728],[118,317,77,-0.5334059037268162],[118,317,78,-0.5312022604048252],[118,317,79,-0.5284954980015755],[118,318,64,-0.540659885853529],[118,318,65,-0.5400260500609875],[118,318,66,-0.5383706800639629],[118,318,67,-0.5361858643591404],[118,318,68,-0.5343015473335981],[118,318,69,-0.533218989148736],[118,318,70,-0.5328878294676542],[118,318,71,-0.5327760968357325],[118,318,72,-0.5329174771904945],[118,318,73,-0.5334567576646805],[118,318,74,-0.5341567937284708],[118,318,75,-0.534636203199625],[118,318,76,-0.534485774114728],[118,318,77,-0.5334059037268162],[118,318,78,-0.5312022604048252],[118,318,79,-0.5284954980015755],[118,319,64,-0.540659885853529],[118,319,65,-0.5400260500609875],[118,319,66,-0.5383706800639629],[118,319,67,-0.5361858643591404],[118,319,68,-0.5343015473335981],[118,319,69,-0.533218989148736],[118,319,70,-0.5328878294676542],[118,319,71,-0.5327760968357325],[118,319,72,-0.5329174771904945],[118,319,73,-0.5334567576646805],[118,319,74,-0.5341567937284708],[118,319,75,-0.534636203199625],[118,319,76,-0.534485774114728],[118,319,77,-0.5334059037268162],[118,319,78,-0.5312022604048252],[118,319,79,-0.5284954980015755],[119,-64,64,-0.5433533973991871],[119,-64,65,-0.5427252277731895],[119,-64,66,-0.5410686656832695],[119,-64,67,-0.5389561280608177],[119,-64,68,-0.5372505597770214],[119,-64,69,-0.5365519747138023],[119,-64,70,-0.5367590710520744],[119,-64,71,-0.5373488739132881],[119,-64,72,-0.5385580025613308],[119,-64,73,-0.5402677766978741],[119,-64,74,-0.5416910946369171],[119,-64,75,-0.5423057191073895],[119,-64,76,-0.541828878223896],[119,-64,77,-0.5401435866951942],[119,-64,78,-0.5372896827757359],[119,-64,79,-0.5339196994900703],[119,-63,64,-0.5433533973991871],[119,-63,65,-0.5427252277731895],[119,-63,66,-0.5410686656832695],[119,-63,67,-0.5389561280608177],[119,-63,68,-0.5372505597770214],[119,-63,69,-0.5365519747138023],[119,-63,70,-0.5367590710520744],[119,-63,71,-0.5373488739132881],[119,-63,72,-0.5385580025613308],[119,-63,73,-0.5402677766978741],[119,-63,74,-0.5416910946369171],[119,-63,75,-0.5423057191073895],[119,-63,76,-0.541828878223896],[119,-63,77,-0.5401435866951942],[119,-63,78,-0.5372896827757359],[119,-63,79,-0.5339196994900703],[119,-62,64,-0.5433533973991871],[119,-62,65,-0.5427252277731895],[119,-62,66,-0.5410686656832695],[119,-62,67,-0.5389561280608177],[119,-62,68,-0.5372505597770214],[119,-62,69,-0.5365519747138023],[119,-62,70,-0.5367590710520744],[119,-62,71,-0.5373488739132881],[119,-62,72,-0.5385580025613308],[119,-62,73,-0.5402677766978741],[119,-62,74,-0.5416910946369171],[119,-62,75,-0.5423057191073895],[119,-62,76,-0.541828878223896],[119,-62,77,-0.5401435866951942],[119,-62,78,-0.5372896827757359],[119,-62,79,-0.5339196994900703],[119,-61,64,-0.5433533973991871],[119,-61,65,-0.5427252277731895],[119,-61,66,-0.5410686656832695],[119,-61,67,-0.5389561280608177],[119,-61,68,-0.5372505597770214],[119,-61,69,-0.5365519747138023],[119,-61,70,-0.5367590710520744],[119,-61,71,-0.5373488739132881],[119,-61,72,-0.5385580025613308],[119,-61,73,-0.5402677766978741],[119,-61,74,-0.5416910946369171],[119,-61,75,-0.5423057191073895],[119,-61,76,-0.541828878223896],[119,-61,77,-0.5401435866951942],[119,-61,78,-0.5372896827757359],[119,-61,79,-0.5339196994900703],[119,-60,64,-0.5433533973991871],[119,-60,65,-0.5427252277731895],[119,-60,66,-0.5410686656832695],[119,-60,67,-0.5389561280608177],[119,-60,68,-0.5372505597770214],[119,-60,69,-0.5365519747138023],[119,-60,70,-0.5367590710520744],[119,-60,71,-0.5373488739132881],[119,-60,72,-0.5385580025613308],[119,-60,73,-0.5402677766978741],[119,-60,74,-0.5416910946369171],[119,-60,75,-0.5423057191073895],[119,-60,76,-0.541828878223896],[119,-60,77,-0.5401435866951942],[119,-60,78,-0.5372896827757359],[119,-60,79,-0.5339196994900703],[119,-59,64,-0.5433533973991871],[119,-59,65,-0.5427252277731895],[119,-59,66,-0.5410686656832695],[119,-59,67,-0.5389561280608177],[119,-59,68,-0.5372505597770214],[119,-59,69,-0.5365519747138023],[119,-59,70,-0.5367590710520744],[119,-59,71,-0.5373488739132881],[119,-59,72,-0.5385580025613308],[119,-59,73,-0.5402677766978741],[119,-59,74,-0.5416910946369171],[119,-59,75,-0.5423057191073895],[119,-59,76,-0.541828878223896],[119,-59,77,-0.5401435866951942],[119,-59,78,-0.5372896827757359],[119,-59,79,-0.5339196994900703],[119,-58,64,-0.5433533973991871],[119,-58,65,-0.5427252277731895],[119,-58,66,-0.5410686656832695],[119,-58,67,-0.5389561280608177],[119,-58,68,-0.5372505597770214],[119,-58,69,-0.5365519747138023],[119,-58,70,-0.5367590710520744],[119,-58,71,-0.5373488739132881],[119,-58,72,-0.5385580025613308],[119,-58,73,-0.5402677766978741],[119,-58,74,-0.5416910946369171],[119,-58,75,-0.5423057191073895],[119,-58,76,-0.541828878223896],[119,-58,77,-0.5401435866951942],[119,-58,78,-0.5372896827757359],[119,-58,79,-0.5339196994900703],[119,-57,64,-0.5433533973991871],[119,-57,65,-0.5427252277731895],[119,-57,66,-0.5410686656832695],[119,-57,67,-0.5389561280608177],[119,-57,68,-0.5372505597770214],[119,-57,69,-0.5365519747138023],[119,-57,70,-0.5367590710520744],[119,-57,71,-0.5373488739132881],[119,-57,72,-0.5385580025613308],[119,-57,73,-0.5402677766978741],[119,-57,74,-0.5416910946369171],[119,-57,75,-0.5423057191073895],[119,-57,76,-0.541828878223896],[119,-57,77,-0.5401435866951942],[119,-57,78,-0.5372896827757359],[119,-57,79,-0.5339196994900703],[119,-56,64,-0.5433533973991871],[119,-56,65,-0.5427252277731895],[119,-56,66,-0.5410686656832695],[119,-56,67,-0.5389561280608177],[119,-56,68,-0.5372505597770214],[119,-56,69,-0.5365519747138023],[119,-56,70,-0.5367590710520744],[119,-56,71,-0.5373488739132881],[119,-56,72,-0.5385580025613308],[119,-56,73,-0.5402677766978741],[119,-56,74,-0.5416910946369171],[119,-56,75,-0.5423057191073895],[119,-56,76,-0.541828878223896],[119,-56,77,-0.5401435866951942],[119,-56,78,-0.5372896827757359],[119,-56,79,-0.5339196994900703],[119,-55,64,-0.5433533973991871],[119,-55,65,-0.5427252277731895],[119,-55,66,-0.5410686656832695],[119,-55,67,-0.5389561280608177],[119,-55,68,-0.5372505597770214],[119,-55,69,-0.5365519747138023],[119,-55,70,-0.5367590710520744],[119,-55,71,-0.5373488739132881],[119,-55,72,-0.5385580025613308],[119,-55,73,-0.5402677766978741],[119,-55,74,-0.5416910946369171],[119,-55,75,-0.5423057191073895],[119,-55,76,-0.541828878223896],[119,-55,77,-0.5401435866951942],[119,-55,78,-0.5372896827757359],[119,-55,79,-0.5339196994900703],[119,-54,64,-0.5433533973991871],[119,-54,65,-0.5427252277731895],[119,-54,66,-0.5410686656832695],[119,-54,67,-0.5389561280608177],[119,-54,68,-0.5372505597770214],[119,-54,69,-0.5365519747138023],[119,-54,70,-0.5367590710520744],[119,-54,71,-0.5373488739132881],[119,-54,72,-0.5385580025613308],[119,-54,73,-0.5402677766978741],[119,-54,74,-0.5416910946369171],[119,-54,75,-0.5423057191073895],[119,-54,76,-0.541828878223896],[119,-54,77,-0.5401435866951942],[119,-54,78,-0.5372896827757359],[119,-54,79,-0.5339196994900703],[119,-53,64,-0.5433533973991871],[119,-53,65,-0.5427252277731895],[119,-53,66,-0.5410686656832695],[119,-53,67,-0.5389561280608177],[119,-53,68,-0.5372505597770214],[119,-53,69,-0.5365519747138023],[119,-53,70,-0.5367590710520744],[119,-53,71,-0.5373488739132881],[119,-53,72,-0.5385580025613308],[119,-53,73,-0.5402677766978741],[119,-53,74,-0.5416910946369171],[119,-53,75,-0.5423057191073895],[119,-53,76,-0.541828878223896],[119,-53,77,-0.5401435866951942],[119,-53,78,-0.5372896827757359],[119,-53,79,-0.5339196994900703],[119,-52,64,-0.5433533973991871],[119,-52,65,-0.5427252277731895],[119,-52,66,-0.5410686656832695],[119,-52,67,-0.5389561280608177],[119,-52,68,-0.5372505597770214],[119,-52,69,-0.5365519747138023],[119,-52,70,-0.5367590710520744],[119,-52,71,-0.5373488739132881],[119,-52,72,-0.5385580025613308],[119,-52,73,-0.5402677766978741],[119,-52,74,-0.5416910946369171],[119,-52,75,-0.5423057191073895],[119,-52,76,-0.541828878223896],[119,-52,77,-0.5401435866951942],[119,-52,78,-0.5372896827757359],[119,-52,79,-0.5339196994900703],[119,-51,64,-0.5433533973991871],[119,-51,65,-0.5427252277731895],[119,-51,66,-0.5410686656832695],[119,-51,67,-0.5389561280608177],[119,-51,68,-0.5372505597770214],[119,-51,69,-0.5365519747138023],[119,-51,70,-0.5367590710520744],[119,-51,71,-0.5373488739132881],[119,-51,72,-0.5385580025613308],[119,-51,73,-0.5402677766978741],[119,-51,74,-0.5416910946369171],[119,-51,75,-0.5423057191073895],[119,-51,76,-0.541828878223896],[119,-51,77,-0.5401435866951942],[119,-51,78,-0.5372896827757359],[119,-51,79,-0.5339196994900703],[119,-50,64,-0.5433533973991871],[119,-50,65,-0.5427252277731895],[119,-50,66,-0.5410686656832695],[119,-50,67,-0.5389561280608177],[119,-50,68,-0.5372505597770214],[119,-50,69,-0.5365519747138023],[119,-50,70,-0.5367590710520744],[119,-50,71,-0.5373488739132881],[119,-50,72,-0.5385580025613308],[119,-50,73,-0.5402677766978741],[119,-50,74,-0.5416910946369171],[119,-50,75,-0.5423057191073895],[119,-50,76,-0.541828878223896],[119,-50,77,-0.5401435866951942],[119,-50,78,-0.5372896827757359],[119,-50,79,-0.5339196994900703],[119,-49,64,-0.5433533973991871],[119,-49,65,-0.5427252277731895],[119,-49,66,-0.5410686656832695],[119,-49,67,-0.5389561280608177],[119,-49,68,-0.5372505597770214],[119,-49,69,-0.5365519747138023],[119,-49,70,-0.5367590710520744],[119,-49,71,-0.5373488739132881],[119,-49,72,-0.5385580025613308],[119,-49,73,-0.5402677766978741],[119,-49,74,-0.5416910946369171],[119,-49,75,-0.5423057191073895],[119,-49,76,-0.541828878223896],[119,-49,77,-0.5401435866951942],[119,-49,78,-0.5372896827757359],[119,-49,79,-0.5339196994900703],[119,-48,64,-0.5433533973991871],[119,-48,65,-0.5427252277731895],[119,-48,66,-0.5410686656832695],[119,-48,67,-0.5389561280608177],[119,-48,68,-0.5372505597770214],[119,-48,69,-0.5365519747138023],[119,-48,70,-0.5367590710520744],[119,-48,71,-0.5373488739132881],[119,-48,72,-0.5385580025613308],[119,-48,73,-0.5402677766978741],[119,-48,74,-0.5416910946369171],[119,-48,75,-0.5423057191073895],[119,-48,76,-0.541828878223896],[119,-48,77,-0.5401435866951942],[119,-48,78,-0.5372896827757359],[119,-48,79,-0.5339196994900703],[119,-47,64,-0.5433533973991871],[119,-47,65,-0.5427252277731895],[119,-47,66,-0.5410686656832695],[119,-47,67,-0.5389561280608177],[119,-47,68,-0.5372505597770214],[119,-47,69,-0.5365519747138023],[119,-47,70,-0.5367590710520744],[119,-47,71,-0.5373488739132881],[119,-47,72,-0.5385580025613308],[119,-47,73,-0.5402677766978741],[119,-47,74,-0.5416910946369171],[119,-47,75,-0.5423057191073895],[119,-47,76,-0.541828878223896],[119,-47,77,-0.5401435866951942],[119,-47,78,-0.5372896827757359],[119,-47,79,-0.5339196994900703],[119,-46,64,-0.5433533973991871],[119,-46,65,-0.5427252277731895],[119,-46,66,-0.5410686656832695],[119,-46,67,-0.5389561280608177],[119,-46,68,-0.5372505597770214],[119,-46,69,-0.5365519747138023],[119,-46,70,-0.5367590710520744],[119,-46,71,-0.5373488739132881],[119,-46,72,-0.5385580025613308],[119,-46,73,-0.5402677766978741],[119,-46,74,-0.5416910946369171],[119,-46,75,-0.5423057191073895],[119,-46,76,-0.541828878223896],[119,-46,77,-0.5401435866951942],[119,-46,78,-0.5372896827757359],[119,-46,79,-0.5339196994900703],[119,-45,64,-0.5433533973991871],[119,-45,65,-0.5427252277731895],[119,-45,66,-0.5410686656832695],[119,-45,67,-0.5389561280608177],[119,-45,68,-0.5372505597770214],[119,-45,69,-0.5365519747138023],[119,-45,70,-0.5367590710520744],[119,-45,71,-0.5373488739132881],[119,-45,72,-0.5385580025613308],[119,-45,73,-0.5402677766978741],[119,-45,74,-0.5416910946369171],[119,-45,75,-0.5423057191073895],[119,-45,76,-0.541828878223896],[119,-45,77,-0.5401435866951942],[119,-45,78,-0.5372896827757359],[119,-45,79,-0.5339196994900703],[119,-44,64,-0.5433533973991871],[119,-44,65,-0.5427252277731895],[119,-44,66,-0.5410686656832695],[119,-44,67,-0.5389561280608177],[119,-44,68,-0.5372505597770214],[119,-44,69,-0.5365519747138023],[119,-44,70,-0.5367590710520744],[119,-44,71,-0.5373488739132881],[119,-44,72,-0.5385580025613308],[119,-44,73,-0.5402677766978741],[119,-44,74,-0.5416910946369171],[119,-44,75,-0.5423057191073895],[119,-44,76,-0.541828878223896],[119,-44,77,-0.5401435866951942],[119,-44,78,-0.5372896827757359],[119,-44,79,-0.5339196994900703],[119,-43,64,-0.5433533973991871],[119,-43,65,-0.5427252277731895],[119,-43,66,-0.5410686656832695],[119,-43,67,-0.5389561280608177],[119,-43,68,-0.5372505597770214],[119,-43,69,-0.5365519747138023],[119,-43,70,-0.5367590710520744],[119,-43,71,-0.5373488739132881],[119,-43,72,-0.5385580025613308],[119,-43,73,-0.5402677766978741],[119,-43,74,-0.5416910946369171],[119,-43,75,-0.5423057191073895],[119,-43,76,-0.541828878223896],[119,-43,77,-0.5401435866951942],[119,-43,78,-0.5372896827757359],[119,-43,79,-0.5339196994900703],[119,-42,64,-0.5433533973991871],[119,-42,65,-0.5427252277731895],[119,-42,66,-0.5410686656832695],[119,-42,67,-0.5389561280608177],[119,-42,68,-0.5372505597770214],[119,-42,69,-0.5365519747138023],[119,-42,70,-0.5367590710520744],[119,-42,71,-0.5373488739132881],[119,-42,72,-0.5385580025613308],[119,-42,73,-0.5402677766978741],[119,-42,74,-0.5416910946369171],[119,-42,75,-0.5423057191073895],[119,-42,76,-0.541828878223896],[119,-42,77,-0.5401435866951942],[119,-42,78,-0.5372896827757359],[119,-42,79,-0.5339196994900703],[119,-41,64,-0.5433533973991871],[119,-41,65,-0.5427252277731895],[119,-41,66,-0.5410686656832695],[119,-41,67,-0.5389561280608177],[119,-41,68,-0.5372505597770214],[119,-41,69,-0.5365519747138023],[119,-41,70,-0.5367590710520744],[119,-41,71,-0.5373488739132881],[119,-41,72,-0.5385580025613308],[119,-41,73,-0.5402677766978741],[119,-41,74,-0.5416910946369171],[119,-41,75,-0.5423057191073895],[119,-41,76,-0.541828878223896],[119,-41,77,-0.5401435866951942],[119,-41,78,-0.5372896827757359],[119,-41,79,-0.5339196994900703],[119,-40,64,-0.5433533973991871],[119,-40,65,-0.5427252277731895],[119,-40,66,-0.5410686656832695],[119,-40,67,-0.5389561280608177],[119,-40,68,-0.5372505597770214],[119,-40,69,-0.5365519747138023],[119,-40,70,-0.5367590710520744],[119,-40,71,-0.5373488739132881],[119,-40,72,-0.5385580025613308],[119,-40,73,-0.5402677766978741],[119,-40,74,-0.5416910946369171],[119,-40,75,-0.5423057191073895],[119,-40,76,-0.541828878223896],[119,-40,77,-0.5401435866951942],[119,-40,78,-0.5372896827757359],[119,-40,79,-0.5339196994900703],[119,-39,64,-0.5433533973991871],[119,-39,65,-0.5427252277731895],[119,-39,66,-0.5410686656832695],[119,-39,67,-0.5389561280608177],[119,-39,68,-0.5372505597770214],[119,-39,69,-0.5365519747138023],[119,-39,70,-0.5367590710520744],[119,-39,71,-0.5373488739132881],[119,-39,72,-0.5385580025613308],[119,-39,73,-0.5402677766978741],[119,-39,74,-0.5416910946369171],[119,-39,75,-0.5423057191073895],[119,-39,76,-0.541828878223896],[119,-39,77,-0.5401435866951942],[119,-39,78,-0.5372896827757359],[119,-39,79,-0.5339196994900703],[119,-38,64,-0.5433533973991871],[119,-38,65,-0.5427252277731895],[119,-38,66,-0.5410686656832695],[119,-38,67,-0.5389561280608177],[119,-38,68,-0.5372505597770214],[119,-38,69,-0.5365519747138023],[119,-38,70,-0.5367590710520744],[119,-38,71,-0.5373488739132881],[119,-38,72,-0.5385580025613308],[119,-38,73,-0.5402677766978741],[119,-38,74,-0.5416910946369171],[119,-38,75,-0.5423057191073895],[119,-38,76,-0.541828878223896],[119,-38,77,-0.5401435866951942],[119,-38,78,-0.5372896827757359],[119,-38,79,-0.5339196994900703],[119,-37,64,-0.5433533973991871],[119,-37,65,-0.5427252277731895],[119,-37,66,-0.5410686656832695],[119,-37,67,-0.5389561280608177],[119,-37,68,-0.5372505597770214],[119,-37,69,-0.5365519747138023],[119,-37,70,-0.5367590710520744],[119,-37,71,-0.5373488739132881],[119,-37,72,-0.5385580025613308],[119,-37,73,-0.5402677766978741],[119,-37,74,-0.5416910946369171],[119,-37,75,-0.5423057191073895],[119,-37,76,-0.541828878223896],[119,-37,77,-0.5401435866951942],[119,-37,78,-0.5372896827757359],[119,-37,79,-0.5339196994900703],[119,-36,64,-0.5433533973991871],[119,-36,65,-0.5427252277731895],[119,-36,66,-0.5410686656832695],[119,-36,67,-0.5389561280608177],[119,-36,68,-0.5372505597770214],[119,-36,69,-0.5365519747138023],[119,-36,70,-0.5367590710520744],[119,-36,71,-0.5373488739132881],[119,-36,72,-0.5385580025613308],[119,-36,73,-0.5402677766978741],[119,-36,74,-0.5416910946369171],[119,-36,75,-0.5423057191073895],[119,-36,76,-0.541828878223896],[119,-36,77,-0.5401435866951942],[119,-36,78,-0.5372896827757359],[119,-36,79,-0.5339196994900703],[119,-35,64,-0.5433533973991871],[119,-35,65,-0.5427252277731895],[119,-35,66,-0.5410686656832695],[119,-35,67,-0.5389561280608177],[119,-35,68,-0.5372505597770214],[119,-35,69,-0.5365519747138023],[119,-35,70,-0.5367590710520744],[119,-35,71,-0.5373488739132881],[119,-35,72,-0.5385580025613308],[119,-35,73,-0.5402677766978741],[119,-35,74,-0.5416910946369171],[119,-35,75,-0.5423057191073895],[119,-35,76,-0.541828878223896],[119,-35,77,-0.5401435866951942],[119,-35,78,-0.5372896827757359],[119,-35,79,-0.5339196994900703],[119,-34,64,-0.5433533973991871],[119,-34,65,-0.5427252277731895],[119,-34,66,-0.5410686656832695],[119,-34,67,-0.5389561280608177],[119,-34,68,-0.5372505597770214],[119,-34,69,-0.5365519747138023],[119,-34,70,-0.5367590710520744],[119,-34,71,-0.5373488739132881],[119,-34,72,-0.5385580025613308],[119,-34,73,-0.5402677766978741],[119,-34,74,-0.5416910946369171],[119,-34,75,-0.5423057191073895],[119,-34,76,-0.541828878223896],[119,-34,77,-0.5401435866951942],[119,-34,78,-0.5372896827757359],[119,-34,79,-0.5339196994900703],[119,-33,64,-0.5433533973991871],[119,-33,65,-0.5427252277731895],[119,-33,66,-0.5410686656832695],[119,-33,67,-0.5389561280608177],[119,-33,68,-0.5372505597770214],[119,-33,69,-0.5365519747138023],[119,-33,70,-0.5367590710520744],[119,-33,71,-0.5373488739132881],[119,-33,72,-0.5385580025613308],[119,-33,73,-0.5402677766978741],[119,-33,74,-0.5416910946369171],[119,-33,75,-0.5423057191073895],[119,-33,76,-0.541828878223896],[119,-33,77,-0.5401435866951942],[119,-33,78,-0.5372896827757359],[119,-33,79,-0.5339196994900703],[119,-32,64,-0.5433533973991871],[119,-32,65,-0.5427252277731895],[119,-32,66,-0.5410686656832695],[119,-32,67,-0.5389561280608177],[119,-32,68,-0.5372505597770214],[119,-32,69,-0.5365519747138023],[119,-32,70,-0.5367590710520744],[119,-32,71,-0.5373488739132881],[119,-32,72,-0.5385580025613308],[119,-32,73,-0.5402677766978741],[119,-32,74,-0.5416910946369171],[119,-32,75,-0.5423057191073895],[119,-32,76,-0.541828878223896],[119,-32,77,-0.5401435866951942],[119,-32,78,-0.5372896827757359],[119,-32,79,-0.5339196994900703],[119,-31,64,-0.5433533973991871],[119,-31,65,-0.5427252277731895],[119,-31,66,-0.5410686656832695],[119,-31,67,-0.5389561280608177],[119,-31,68,-0.5372505597770214],[119,-31,69,-0.5365519747138023],[119,-31,70,-0.5367590710520744],[119,-31,71,-0.5373488739132881],[119,-31,72,-0.5385580025613308],[119,-31,73,-0.5402677766978741],[119,-31,74,-0.5416910946369171],[119,-31,75,-0.5423057191073895],[119,-31,76,-0.541828878223896],[119,-31,77,-0.5401435866951942],[119,-31,78,-0.5372896827757359],[119,-31,79,-0.5339196994900703],[119,-30,64,-0.5433533973991871],[119,-30,65,-0.5427252277731895],[119,-30,66,-0.5410686656832695],[119,-30,67,-0.5389561280608177],[119,-30,68,-0.5372505597770214],[119,-30,69,-0.5365519747138023],[119,-30,70,-0.5367590710520744],[119,-30,71,-0.5373488739132881],[119,-30,72,-0.5385580025613308],[119,-30,73,-0.5402677766978741],[119,-30,74,-0.5416910946369171],[119,-30,75,-0.5423057191073895],[119,-30,76,-0.541828878223896],[119,-30,77,-0.5401435866951942],[119,-30,78,-0.5372896827757359],[119,-30,79,-0.5339196994900703],[119,-29,64,-0.5433533973991871],[119,-29,65,-0.5427252277731895],[119,-29,66,-0.5410686656832695],[119,-29,67,-0.5389561280608177],[119,-29,68,-0.5372505597770214],[119,-29,69,-0.5365519747138023],[119,-29,70,-0.5367590710520744],[119,-29,71,-0.5373488739132881],[119,-29,72,-0.5385580025613308],[119,-29,73,-0.5402677766978741],[119,-29,74,-0.5416910946369171],[119,-29,75,-0.5423057191073895],[119,-29,76,-0.541828878223896],[119,-29,77,-0.5401435866951942],[119,-29,78,-0.5372896827757359],[119,-29,79,-0.5339196994900703],[119,-28,64,-0.5433533973991871],[119,-28,65,-0.5427252277731895],[119,-28,66,-0.5410686656832695],[119,-28,67,-0.5389561280608177],[119,-28,68,-0.5372505597770214],[119,-28,69,-0.5365519747138023],[119,-28,70,-0.5367590710520744],[119,-28,71,-0.5373488739132881],[119,-28,72,-0.5385580025613308],[119,-28,73,-0.5402677766978741],[119,-28,74,-0.5416910946369171],[119,-28,75,-0.5423057191073895],[119,-28,76,-0.541828878223896],[119,-28,77,-0.5401435866951942],[119,-28,78,-0.5372896827757359],[119,-28,79,-0.5339196994900703],[119,-27,64,-0.5433533973991871],[119,-27,65,-0.5427252277731895],[119,-27,66,-0.5410686656832695],[119,-27,67,-0.5389561280608177],[119,-27,68,-0.5372505597770214],[119,-27,69,-0.5365519747138023],[119,-27,70,-0.5367590710520744],[119,-27,71,-0.5373488739132881],[119,-27,72,-0.5385580025613308],[119,-27,73,-0.5402677766978741],[119,-27,74,-0.5416910946369171],[119,-27,75,-0.5423057191073895],[119,-27,76,-0.541828878223896],[119,-27,77,-0.5401435866951942],[119,-27,78,-0.5372896827757359],[119,-27,79,-0.5339196994900703],[119,-26,64,-0.5433533973991871],[119,-26,65,-0.5427252277731895],[119,-26,66,-0.5410686656832695],[119,-26,67,-0.5389561280608177],[119,-26,68,-0.5372505597770214],[119,-26,69,-0.5365519747138023],[119,-26,70,-0.5367590710520744],[119,-26,71,-0.5373488739132881],[119,-26,72,-0.5385580025613308],[119,-26,73,-0.5402677766978741],[119,-26,74,-0.5416910946369171],[119,-26,75,-0.5423057191073895],[119,-26,76,-0.541828878223896],[119,-26,77,-0.5401435866951942],[119,-26,78,-0.5372896827757359],[119,-26,79,-0.5339196994900703],[119,-25,64,-0.5433533973991871],[119,-25,65,-0.5427252277731895],[119,-25,66,-0.5410686656832695],[119,-25,67,-0.5389561280608177],[119,-25,68,-0.5372505597770214],[119,-25,69,-0.5365519747138023],[119,-25,70,-0.5367590710520744],[119,-25,71,-0.5373488739132881],[119,-25,72,-0.5385580025613308],[119,-25,73,-0.5402677766978741],[119,-25,74,-0.5416910946369171],[119,-25,75,-0.5423057191073895],[119,-25,76,-0.541828878223896],[119,-25,77,-0.5401435866951942],[119,-25,78,-0.5372896827757359],[119,-25,79,-0.5339196994900703],[119,-24,64,-0.5433533973991871],[119,-24,65,-0.5427252277731895],[119,-24,66,-0.5410686656832695],[119,-24,67,-0.5389561280608177],[119,-24,68,-0.5372505597770214],[119,-24,69,-0.5365519747138023],[119,-24,70,-0.5367590710520744],[119,-24,71,-0.5373488739132881],[119,-24,72,-0.5385580025613308],[119,-24,73,-0.5402677766978741],[119,-24,74,-0.5416910946369171],[119,-24,75,-0.5423057191073895],[119,-24,76,-0.541828878223896],[119,-24,77,-0.5401435866951942],[119,-24,78,-0.5372896827757359],[119,-24,79,-0.5339196994900703],[119,-23,64,-0.5433533973991871],[119,-23,65,-0.5427252277731895],[119,-23,66,-0.5410686656832695],[119,-23,67,-0.5389561280608177],[119,-23,68,-0.5372505597770214],[119,-23,69,-0.5365519747138023],[119,-23,70,-0.5367590710520744],[119,-23,71,-0.5373488739132881],[119,-23,72,-0.5385580025613308],[119,-23,73,-0.5402677766978741],[119,-23,74,-0.5416910946369171],[119,-23,75,-0.5423057191073895],[119,-23,76,-0.541828878223896],[119,-23,77,-0.5401435866951942],[119,-23,78,-0.5372896827757359],[119,-23,79,-0.5339196994900703],[119,-22,64,-0.5433533973991871],[119,-22,65,-0.5427252277731895],[119,-22,66,-0.5410686656832695],[119,-22,67,-0.5389561280608177],[119,-22,68,-0.5372505597770214],[119,-22,69,-0.5365519747138023],[119,-22,70,-0.5367590710520744],[119,-22,71,-0.5373488739132881],[119,-22,72,-0.5385580025613308],[119,-22,73,-0.5402677766978741],[119,-22,74,-0.5416910946369171],[119,-22,75,-0.5423057191073895],[119,-22,76,-0.541828878223896],[119,-22,77,-0.5401435866951942],[119,-22,78,-0.5372896827757359],[119,-22,79,-0.5339196994900703],[119,-21,64,-0.5433533973991871],[119,-21,65,-0.5427252277731895],[119,-21,66,-0.5410686656832695],[119,-21,67,-0.5389561280608177],[119,-21,68,-0.5372505597770214],[119,-21,69,-0.5365519747138023],[119,-21,70,-0.5367590710520744],[119,-21,71,-0.5373488739132881],[119,-21,72,-0.5385580025613308],[119,-21,73,-0.5402677766978741],[119,-21,74,-0.5416910946369171],[119,-21,75,-0.5423057191073895],[119,-21,76,-0.541828878223896],[119,-21,77,-0.5401435866951942],[119,-21,78,-0.5372896827757359],[119,-21,79,-0.5339196994900703],[119,-20,64,-0.5433533973991871],[119,-20,65,-0.5427252277731895],[119,-20,66,-0.5410686656832695],[119,-20,67,-0.5389561280608177],[119,-20,68,-0.5372505597770214],[119,-20,69,-0.5365519747138023],[119,-20,70,-0.5367590710520744],[119,-20,71,-0.5373488739132881],[119,-20,72,-0.5385580025613308],[119,-20,73,-0.5402677766978741],[119,-20,74,-0.5416910946369171],[119,-20,75,-0.5423057191073895],[119,-20,76,-0.541828878223896],[119,-20,77,-0.5401435866951942],[119,-20,78,-0.5372896827757359],[119,-20,79,-0.5339196994900703],[119,-19,64,-0.5433533973991871],[119,-19,65,-0.5427252277731895],[119,-19,66,-0.5410686656832695],[119,-19,67,-0.5389561280608177],[119,-19,68,-0.5372505597770214],[119,-19,69,-0.5365519747138023],[119,-19,70,-0.5367590710520744],[119,-19,71,-0.5373488739132881],[119,-19,72,-0.5385580025613308],[119,-19,73,-0.5402677766978741],[119,-19,74,-0.5416910946369171],[119,-19,75,-0.5423057191073895],[119,-19,76,-0.541828878223896],[119,-19,77,-0.5401435866951942],[119,-19,78,-0.5372896827757359],[119,-19,79,-0.5339196994900703],[119,-18,64,-0.5433533973991871],[119,-18,65,-0.5427252277731895],[119,-18,66,-0.5410686656832695],[119,-18,67,-0.5389561280608177],[119,-18,68,-0.5372505597770214],[119,-18,69,-0.5365519747138023],[119,-18,70,-0.5367590710520744],[119,-18,71,-0.5373488739132881],[119,-18,72,-0.5385580025613308],[119,-18,73,-0.5402677766978741],[119,-18,74,-0.5416910946369171],[119,-18,75,-0.5423057191073895],[119,-18,76,-0.541828878223896],[119,-18,77,-0.5401435866951942],[119,-18,78,-0.5372896827757359],[119,-18,79,-0.5339196994900703],[119,-17,64,-0.5433533973991871],[119,-17,65,-0.5427252277731895],[119,-17,66,-0.5410686656832695],[119,-17,67,-0.5389561280608177],[119,-17,68,-0.5372505597770214],[119,-17,69,-0.5365519747138023],[119,-17,70,-0.5367590710520744],[119,-17,71,-0.5373488739132881],[119,-17,72,-0.5385580025613308],[119,-17,73,-0.5402677766978741],[119,-17,74,-0.5416910946369171],[119,-17,75,-0.5423057191073895],[119,-17,76,-0.541828878223896],[119,-17,77,-0.5401435866951942],[119,-17,78,-0.5372896827757359],[119,-17,79,-0.5339196994900703],[119,-16,64,-0.5433533973991871],[119,-16,65,-0.5427252277731895],[119,-16,66,-0.5410686656832695],[119,-16,67,-0.5389561280608177],[119,-16,68,-0.5372505597770214],[119,-16,69,-0.5365519747138023],[119,-16,70,-0.5367590710520744],[119,-16,71,-0.5373488739132881],[119,-16,72,-0.5385580025613308],[119,-16,73,-0.5402677766978741],[119,-16,74,-0.5416910946369171],[119,-16,75,-0.5423057191073895],[119,-16,76,-0.541828878223896],[119,-16,77,-0.5401435866951942],[119,-16,78,-0.5372896827757359],[119,-16,79,-0.5339196994900703],[119,-15,64,-0.5433533973991871],[119,-15,65,-0.5427252277731895],[119,-15,66,-0.5410686656832695],[119,-15,67,-0.5389561280608177],[119,-15,68,-0.5372505597770214],[119,-15,69,-0.5365519747138023],[119,-15,70,-0.5367590710520744],[119,-15,71,-0.5373488739132881],[119,-15,72,-0.5385580025613308],[119,-15,73,-0.5402677766978741],[119,-15,74,-0.5416910946369171],[119,-15,75,-0.5423057191073895],[119,-15,76,-0.541828878223896],[119,-15,77,-0.5401435866951942],[119,-15,78,-0.5372896827757359],[119,-15,79,-0.5339196994900703],[119,-14,64,-0.5433533973991871],[119,-14,65,-0.5427252277731895],[119,-14,66,-0.5410686656832695],[119,-14,67,-0.5389561280608177],[119,-14,68,-0.5372505597770214],[119,-14,69,-0.5365519747138023],[119,-14,70,-0.5367590710520744],[119,-14,71,-0.5373488739132881],[119,-14,72,-0.5385580025613308],[119,-14,73,-0.5402677766978741],[119,-14,74,-0.5416910946369171],[119,-14,75,-0.5423057191073895],[119,-14,76,-0.541828878223896],[119,-14,77,-0.5401435866951942],[119,-14,78,-0.5372896827757359],[119,-14,79,-0.5339196994900703],[119,-13,64,-0.5433533973991871],[119,-13,65,-0.5427252277731895],[119,-13,66,-0.5410686656832695],[119,-13,67,-0.5389561280608177],[119,-13,68,-0.5372505597770214],[119,-13,69,-0.5365519747138023],[119,-13,70,-0.5367590710520744],[119,-13,71,-0.5373488739132881],[119,-13,72,-0.5385580025613308],[119,-13,73,-0.5402677766978741],[119,-13,74,-0.5416910946369171],[119,-13,75,-0.5423057191073895],[119,-13,76,-0.541828878223896],[119,-13,77,-0.5401435866951942],[119,-13,78,-0.5372896827757359],[119,-13,79,-0.5339196994900703],[119,-12,64,-0.5433533973991871],[119,-12,65,-0.5427252277731895],[119,-12,66,-0.5410686656832695],[119,-12,67,-0.5389561280608177],[119,-12,68,-0.5372505597770214],[119,-12,69,-0.5365519747138023],[119,-12,70,-0.5367590710520744],[119,-12,71,-0.5373488739132881],[119,-12,72,-0.5385580025613308],[119,-12,73,-0.5402677766978741],[119,-12,74,-0.5416910946369171],[119,-12,75,-0.5423057191073895],[119,-12,76,-0.541828878223896],[119,-12,77,-0.5401435866951942],[119,-12,78,-0.5372896827757359],[119,-12,79,-0.5339196994900703],[119,-11,64,-0.5433533973991871],[119,-11,65,-0.5427252277731895],[119,-11,66,-0.5410686656832695],[119,-11,67,-0.5389561280608177],[119,-11,68,-0.5372505597770214],[119,-11,69,-0.5365519747138023],[119,-11,70,-0.5367590710520744],[119,-11,71,-0.5373488739132881],[119,-11,72,-0.5385580025613308],[119,-11,73,-0.5402677766978741],[119,-11,74,-0.5416910946369171],[119,-11,75,-0.5423057191073895],[119,-11,76,-0.541828878223896],[119,-11,77,-0.5401435866951942],[119,-11,78,-0.5372896827757359],[119,-11,79,-0.5339196994900703],[119,-10,64,-0.5433533973991871],[119,-10,65,-0.5427252277731895],[119,-10,66,-0.5410686656832695],[119,-10,67,-0.5389561280608177],[119,-10,68,-0.5372505597770214],[119,-10,69,-0.5365519747138023],[119,-10,70,-0.5367590710520744],[119,-10,71,-0.5373488739132881],[119,-10,72,-0.5385580025613308],[119,-10,73,-0.5402677766978741],[119,-10,74,-0.5416910946369171],[119,-10,75,-0.5423057191073895],[119,-10,76,-0.541828878223896],[119,-10,77,-0.5401435866951942],[119,-10,78,-0.5372896827757359],[119,-10,79,-0.5339196994900703],[119,-9,64,-0.5433533973991871],[119,-9,65,-0.5427252277731895],[119,-9,66,-0.5410686656832695],[119,-9,67,-0.5389561280608177],[119,-9,68,-0.5372505597770214],[119,-9,69,-0.5365519747138023],[119,-9,70,-0.5367590710520744],[119,-9,71,-0.5373488739132881],[119,-9,72,-0.5385580025613308],[119,-9,73,-0.5402677766978741],[119,-9,74,-0.5416910946369171],[119,-9,75,-0.5423057191073895],[119,-9,76,-0.541828878223896],[119,-9,77,-0.5401435866951942],[119,-9,78,-0.5372896827757359],[119,-9,79,-0.5339196994900703],[119,-8,64,-0.5433533973991871],[119,-8,65,-0.5427252277731895],[119,-8,66,-0.5410686656832695],[119,-8,67,-0.5389561280608177],[119,-8,68,-0.5372505597770214],[119,-8,69,-0.5365519747138023],[119,-8,70,-0.5367590710520744],[119,-8,71,-0.5373488739132881],[119,-8,72,-0.5385580025613308],[119,-8,73,-0.5402677766978741],[119,-8,74,-0.5416910946369171],[119,-8,75,-0.5423057191073895],[119,-8,76,-0.541828878223896],[119,-8,77,-0.5401435866951942],[119,-8,78,-0.5372896827757359],[119,-8,79,-0.5339196994900703],[119,-7,64,-0.5433533973991871],[119,-7,65,-0.5427252277731895],[119,-7,66,-0.5410686656832695],[119,-7,67,-0.5389561280608177],[119,-7,68,-0.5372505597770214],[119,-7,69,-0.5365519747138023],[119,-7,70,-0.5367590710520744],[119,-7,71,-0.5373488739132881],[119,-7,72,-0.5385580025613308],[119,-7,73,-0.5402677766978741],[119,-7,74,-0.5416910946369171],[119,-7,75,-0.5423057191073895],[119,-7,76,-0.541828878223896],[119,-7,77,-0.5401435866951942],[119,-7,78,-0.5372896827757359],[119,-7,79,-0.5339196994900703],[119,-6,64,-0.5433533973991871],[119,-6,65,-0.5427252277731895],[119,-6,66,-0.5410686656832695],[119,-6,67,-0.5389561280608177],[119,-6,68,-0.5372505597770214],[119,-6,69,-0.5365519747138023],[119,-6,70,-0.5367590710520744],[119,-6,71,-0.5373488739132881],[119,-6,72,-0.5385580025613308],[119,-6,73,-0.5402677766978741],[119,-6,74,-0.5416910946369171],[119,-6,75,-0.5423057191073895],[119,-6,76,-0.541828878223896],[119,-6,77,-0.5401435866951942],[119,-6,78,-0.5372896827757359],[119,-6,79,-0.5339196994900703],[119,-5,64,-0.5433533973991871],[119,-5,65,-0.5427252277731895],[119,-5,66,-0.5410686656832695],[119,-5,67,-0.5389561280608177],[119,-5,68,-0.5372505597770214],[119,-5,69,-0.5365519747138023],[119,-5,70,-0.5367590710520744],[119,-5,71,-0.5373488739132881],[119,-5,72,-0.5385580025613308],[119,-5,73,-0.5402677766978741],[119,-5,74,-0.5416910946369171],[119,-5,75,-0.5423057191073895],[119,-5,76,-0.541828878223896],[119,-5,77,-0.5401435866951942],[119,-5,78,-0.5372896827757359],[119,-5,79,-0.5339196994900703],[119,-4,64,-0.5433533973991871],[119,-4,65,-0.5427252277731895],[119,-4,66,-0.5410686656832695],[119,-4,67,-0.5389561280608177],[119,-4,68,-0.5372505597770214],[119,-4,69,-0.5365519747138023],[119,-4,70,-0.5367590710520744],[119,-4,71,-0.5373488739132881],[119,-4,72,-0.5385580025613308],[119,-4,73,-0.5402677766978741],[119,-4,74,-0.5416910946369171],[119,-4,75,-0.5423057191073895],[119,-4,76,-0.541828878223896],[119,-4,77,-0.5401435866951942],[119,-4,78,-0.5372896827757359],[119,-4,79,-0.5339196994900703],[119,-3,64,-0.5433533973991871],[119,-3,65,-0.5427252277731895],[119,-3,66,-0.5410686656832695],[119,-3,67,-0.5389561280608177],[119,-3,68,-0.5372505597770214],[119,-3,69,-0.5365519747138023],[119,-3,70,-0.5367590710520744],[119,-3,71,-0.5373488739132881],[119,-3,72,-0.5385580025613308],[119,-3,73,-0.5402677766978741],[119,-3,74,-0.5416910946369171],[119,-3,75,-0.5423057191073895],[119,-3,76,-0.541828878223896],[119,-3,77,-0.5401435866951942],[119,-3,78,-0.5372896827757359],[119,-3,79,-0.5339196994900703],[119,-2,64,-0.5433533973991871],[119,-2,65,-0.5427252277731895],[119,-2,66,-0.5410686656832695],[119,-2,67,-0.5389561280608177],[119,-2,68,-0.5372505597770214],[119,-2,69,-0.5365519747138023],[119,-2,70,-0.5367590710520744],[119,-2,71,-0.5373488739132881],[119,-2,72,-0.5385580025613308],[119,-2,73,-0.5402677766978741],[119,-2,74,-0.5416910946369171],[119,-2,75,-0.5423057191073895],[119,-2,76,-0.541828878223896],[119,-2,77,-0.5401435866951942],[119,-2,78,-0.5372896827757359],[119,-2,79,-0.5339196994900703],[119,-1,64,-0.5433533973991871],[119,-1,65,-0.5427252277731895],[119,-1,66,-0.5410686656832695],[119,-1,67,-0.5389561280608177],[119,-1,68,-0.5372505597770214],[119,-1,69,-0.5365519747138023],[119,-1,70,-0.5367590710520744],[119,-1,71,-0.5373488739132881],[119,-1,72,-0.5385580025613308],[119,-1,73,-0.5402677766978741],[119,-1,74,-0.5416910946369171],[119,-1,75,-0.5423057191073895],[119,-1,76,-0.541828878223896],[119,-1,77,-0.5401435866951942],[119,-1,78,-0.5372896827757359],[119,-1,79,-0.5339196994900703],[119,0,64,-0.5433533973991871],[119,0,65,-0.5427252277731895],[119,0,66,-0.5410686656832695],[119,0,67,-0.5389561280608177],[119,0,68,-0.5372505597770214],[119,0,69,-0.5365519747138023],[119,0,70,-0.5367590710520744],[119,0,71,-0.5373488739132881],[119,0,72,-0.5385580025613308],[119,0,73,-0.5402677766978741],[119,0,74,-0.5416910946369171],[119,0,75,-0.5423057191073895],[119,0,76,-0.541828878223896],[119,0,77,-0.5401435866951942],[119,0,78,-0.5372896827757359],[119,0,79,-0.5339196994900703],[119,1,64,-0.5433533973991871],[119,1,65,-0.5427252277731895],[119,1,66,-0.5410686656832695],[119,1,67,-0.5389561280608177],[119,1,68,-0.5372505597770214],[119,1,69,-0.5365519747138023],[119,1,70,-0.5367590710520744],[119,1,71,-0.5373488739132881],[119,1,72,-0.5385580025613308],[119,1,73,-0.5402677766978741],[119,1,74,-0.5416910946369171],[119,1,75,-0.5423057191073895],[119,1,76,-0.541828878223896],[119,1,77,-0.5401435866951942],[119,1,78,-0.5372896827757359],[119,1,79,-0.5339196994900703],[119,2,64,-0.5433533973991871],[119,2,65,-0.5427252277731895],[119,2,66,-0.5410686656832695],[119,2,67,-0.5389561280608177],[119,2,68,-0.5372505597770214],[119,2,69,-0.5365519747138023],[119,2,70,-0.5367590710520744],[119,2,71,-0.5373488739132881],[119,2,72,-0.5385580025613308],[119,2,73,-0.5402677766978741],[119,2,74,-0.5416910946369171],[119,2,75,-0.5423057191073895],[119,2,76,-0.541828878223896],[119,2,77,-0.5401435866951942],[119,2,78,-0.5372896827757359],[119,2,79,-0.5339196994900703],[119,3,64,-0.5433533973991871],[119,3,65,-0.5427252277731895],[119,3,66,-0.5410686656832695],[119,3,67,-0.5389561280608177],[119,3,68,-0.5372505597770214],[119,3,69,-0.5365519747138023],[119,3,70,-0.5367590710520744],[119,3,71,-0.5373488739132881],[119,3,72,-0.5385580025613308],[119,3,73,-0.5402677766978741],[119,3,74,-0.5416910946369171],[119,3,75,-0.5423057191073895],[119,3,76,-0.541828878223896],[119,3,77,-0.5401435866951942],[119,3,78,-0.5372896827757359],[119,3,79,-0.5339196994900703],[119,4,64,-0.5433533973991871],[119,4,65,-0.5427252277731895],[119,4,66,-0.5410686656832695],[119,4,67,-0.5389561280608177],[119,4,68,-0.5372505597770214],[119,4,69,-0.5365519747138023],[119,4,70,-0.5367590710520744],[119,4,71,-0.5373488739132881],[119,4,72,-0.5385580025613308],[119,4,73,-0.5402677766978741],[119,4,74,-0.5416910946369171],[119,4,75,-0.5423057191073895],[119,4,76,-0.541828878223896],[119,4,77,-0.5401435866951942],[119,4,78,-0.5372896827757359],[119,4,79,-0.5339196994900703],[119,5,64,-0.5433533973991871],[119,5,65,-0.5427252277731895],[119,5,66,-0.5410686656832695],[119,5,67,-0.5389561280608177],[119,5,68,-0.5372505597770214],[119,5,69,-0.5365519747138023],[119,5,70,-0.5367590710520744],[119,5,71,-0.5373488739132881],[119,5,72,-0.5385580025613308],[119,5,73,-0.5402677766978741],[119,5,74,-0.5416910946369171],[119,5,75,-0.5423057191073895],[119,5,76,-0.541828878223896],[119,5,77,-0.5401435866951942],[119,5,78,-0.5372896827757359],[119,5,79,-0.5339196994900703],[119,6,64,-0.5433533973991871],[119,6,65,-0.5427252277731895],[119,6,66,-0.5410686656832695],[119,6,67,-0.5389561280608177],[119,6,68,-0.5372505597770214],[119,6,69,-0.5365519747138023],[119,6,70,-0.5367590710520744],[119,6,71,-0.5373488739132881],[119,6,72,-0.5385580025613308],[119,6,73,-0.5402677766978741],[119,6,74,-0.5416910946369171],[119,6,75,-0.5423057191073895],[119,6,76,-0.541828878223896],[119,6,77,-0.5401435866951942],[119,6,78,-0.5372896827757359],[119,6,79,-0.5339196994900703],[119,7,64,-0.5433533973991871],[119,7,65,-0.5427252277731895],[119,7,66,-0.5410686656832695],[119,7,67,-0.5389561280608177],[119,7,68,-0.5372505597770214],[119,7,69,-0.5365519747138023],[119,7,70,-0.5367590710520744],[119,7,71,-0.5373488739132881],[119,7,72,-0.5385580025613308],[119,7,73,-0.5402677766978741],[119,7,74,-0.5416910946369171],[119,7,75,-0.5423057191073895],[119,7,76,-0.541828878223896],[119,7,77,-0.5401435866951942],[119,7,78,-0.5372896827757359],[119,7,79,-0.5339196994900703],[119,8,64,-0.5433533973991871],[119,8,65,-0.5427252277731895],[119,8,66,-0.5410686656832695],[119,8,67,-0.5389561280608177],[119,8,68,-0.5372505597770214],[119,8,69,-0.5365519747138023],[119,8,70,-0.5367590710520744],[119,8,71,-0.5373488739132881],[119,8,72,-0.5385580025613308],[119,8,73,-0.5402677766978741],[119,8,74,-0.5416910946369171],[119,8,75,-0.5423057191073895],[119,8,76,-0.541828878223896],[119,8,77,-0.5401435866951942],[119,8,78,-0.5372896827757359],[119,8,79,-0.5339196994900703],[119,9,64,-0.5433533973991871],[119,9,65,-0.5427252277731895],[119,9,66,-0.5410686656832695],[119,9,67,-0.5389561280608177],[119,9,68,-0.5372505597770214],[119,9,69,-0.5365519747138023],[119,9,70,-0.5367590710520744],[119,9,71,-0.5373488739132881],[119,9,72,-0.5385580025613308],[119,9,73,-0.5402677766978741],[119,9,74,-0.5416910946369171],[119,9,75,-0.5423057191073895],[119,9,76,-0.541828878223896],[119,9,77,-0.5401435866951942],[119,9,78,-0.5372896827757359],[119,9,79,-0.5339196994900703],[119,10,64,-0.5433533973991871],[119,10,65,-0.5427252277731895],[119,10,66,-0.5410686656832695],[119,10,67,-0.5389561280608177],[119,10,68,-0.5372505597770214],[119,10,69,-0.5365519747138023],[119,10,70,-0.5367590710520744],[119,10,71,-0.5373488739132881],[119,10,72,-0.5385580025613308],[119,10,73,-0.5402677766978741],[119,10,74,-0.5416910946369171],[119,10,75,-0.5423057191073895],[119,10,76,-0.541828878223896],[119,10,77,-0.5401435866951942],[119,10,78,-0.5372896827757359],[119,10,79,-0.5339196994900703],[119,11,64,-0.5433533973991871],[119,11,65,-0.5427252277731895],[119,11,66,-0.5410686656832695],[119,11,67,-0.5389561280608177],[119,11,68,-0.5372505597770214],[119,11,69,-0.5365519747138023],[119,11,70,-0.5367590710520744],[119,11,71,-0.5373488739132881],[119,11,72,-0.5385580025613308],[119,11,73,-0.5402677766978741],[119,11,74,-0.5416910946369171],[119,11,75,-0.5423057191073895],[119,11,76,-0.541828878223896],[119,11,77,-0.5401435866951942],[119,11,78,-0.5372896827757359],[119,11,79,-0.5339196994900703],[119,12,64,-0.5433533973991871],[119,12,65,-0.5427252277731895],[119,12,66,-0.5410686656832695],[119,12,67,-0.5389561280608177],[119,12,68,-0.5372505597770214],[119,12,69,-0.5365519747138023],[119,12,70,-0.5367590710520744],[119,12,71,-0.5373488739132881],[119,12,72,-0.5385580025613308],[119,12,73,-0.5402677766978741],[119,12,74,-0.5416910946369171],[119,12,75,-0.5423057191073895],[119,12,76,-0.541828878223896],[119,12,77,-0.5401435866951942],[119,12,78,-0.5372896827757359],[119,12,79,-0.5339196994900703],[119,13,64,-0.5433533973991871],[119,13,65,-0.5427252277731895],[119,13,66,-0.5410686656832695],[119,13,67,-0.5389561280608177],[119,13,68,-0.5372505597770214],[119,13,69,-0.5365519747138023],[119,13,70,-0.5367590710520744],[119,13,71,-0.5373488739132881],[119,13,72,-0.5385580025613308],[119,13,73,-0.5402677766978741],[119,13,74,-0.5416910946369171],[119,13,75,-0.5423057191073895],[119,13,76,-0.541828878223896],[119,13,77,-0.5401435866951942],[119,13,78,-0.5372896827757359],[119,13,79,-0.5339196994900703],[119,14,64,-0.5433533973991871],[119,14,65,-0.5427252277731895],[119,14,66,-0.5410686656832695],[119,14,67,-0.5389561280608177],[119,14,68,-0.5372505597770214],[119,14,69,-0.5365519747138023],[119,14,70,-0.5367590710520744],[119,14,71,-0.5373488739132881],[119,14,72,-0.5385580025613308],[119,14,73,-0.5402677766978741],[119,14,74,-0.5416910946369171],[119,14,75,-0.5423057191073895],[119,14,76,-0.541828878223896],[119,14,77,-0.5401435866951942],[119,14,78,-0.5372896827757359],[119,14,79,-0.5339196994900703],[119,15,64,-0.5433533973991871],[119,15,65,-0.5427252277731895],[119,15,66,-0.5410686656832695],[119,15,67,-0.5389561280608177],[119,15,68,-0.5372505597770214],[119,15,69,-0.5365519747138023],[119,15,70,-0.5367590710520744],[119,15,71,-0.5373488739132881],[119,15,72,-0.5385580025613308],[119,15,73,-0.5402677766978741],[119,15,74,-0.5416910946369171],[119,15,75,-0.5423057191073895],[119,15,76,-0.541828878223896],[119,15,77,-0.5401435866951942],[119,15,78,-0.5372896827757359],[119,15,79,-0.5339196994900703],[119,16,64,-0.5433533973991871],[119,16,65,-0.5427252277731895],[119,16,66,-0.5410686656832695],[119,16,67,-0.5389561280608177],[119,16,68,-0.5372505597770214],[119,16,69,-0.5365519747138023],[119,16,70,-0.5367590710520744],[119,16,71,-0.5373488739132881],[119,16,72,-0.5385580025613308],[119,16,73,-0.5402677766978741],[119,16,74,-0.5416910946369171],[119,16,75,-0.5423057191073895],[119,16,76,-0.541828878223896],[119,16,77,-0.5401435866951942],[119,16,78,-0.5372896827757359],[119,16,79,-0.5339196994900703],[119,17,64,-0.5433533973991871],[119,17,65,-0.5427252277731895],[119,17,66,-0.5410686656832695],[119,17,67,-0.5389561280608177],[119,17,68,-0.5372505597770214],[119,17,69,-0.5365519747138023],[119,17,70,-0.5367590710520744],[119,17,71,-0.5373488739132881],[119,17,72,-0.5385580025613308],[119,17,73,-0.5402677766978741],[119,17,74,-0.5416910946369171],[119,17,75,-0.5423057191073895],[119,17,76,-0.541828878223896],[119,17,77,-0.5401435866951942],[119,17,78,-0.5372896827757359],[119,17,79,-0.5339196994900703],[119,18,64,-0.5433533973991871],[119,18,65,-0.5427252277731895],[119,18,66,-0.5410686656832695],[119,18,67,-0.5389561280608177],[119,18,68,-0.5372505597770214],[119,18,69,-0.5365519747138023],[119,18,70,-0.5367590710520744],[119,18,71,-0.5373488739132881],[119,18,72,-0.5385580025613308],[119,18,73,-0.5402677766978741],[119,18,74,-0.5416910946369171],[119,18,75,-0.5423057191073895],[119,18,76,-0.541828878223896],[119,18,77,-0.5401435866951942],[119,18,78,-0.5372896827757359],[119,18,79,-0.5339196994900703],[119,19,64,-0.5433533973991871],[119,19,65,-0.5427252277731895],[119,19,66,-0.5410686656832695],[119,19,67,-0.5389561280608177],[119,19,68,-0.5372505597770214],[119,19,69,-0.5365519747138023],[119,19,70,-0.5367590710520744],[119,19,71,-0.5373488739132881],[119,19,72,-0.5385580025613308],[119,19,73,-0.5402677766978741],[119,19,74,-0.5416910946369171],[119,19,75,-0.5423057191073895],[119,19,76,-0.541828878223896],[119,19,77,-0.5401435866951942],[119,19,78,-0.5372896827757359],[119,19,79,-0.5339196994900703],[119,20,64,-0.5433533973991871],[119,20,65,-0.5427252277731895],[119,20,66,-0.5410686656832695],[119,20,67,-0.5389561280608177],[119,20,68,-0.5372505597770214],[119,20,69,-0.5365519747138023],[119,20,70,-0.5367590710520744],[119,20,71,-0.5373488739132881],[119,20,72,-0.5385580025613308],[119,20,73,-0.5402677766978741],[119,20,74,-0.5416910946369171],[119,20,75,-0.5423057191073895],[119,20,76,-0.541828878223896],[119,20,77,-0.5401435866951942],[119,20,78,-0.5372896827757359],[119,20,79,-0.5339196994900703],[119,21,64,-0.5433533973991871],[119,21,65,-0.5427252277731895],[119,21,66,-0.5410686656832695],[119,21,67,-0.5389561280608177],[119,21,68,-0.5372505597770214],[119,21,69,-0.5365519747138023],[119,21,70,-0.5367590710520744],[119,21,71,-0.5373488739132881],[119,21,72,-0.5385580025613308],[119,21,73,-0.5402677766978741],[119,21,74,-0.5416910946369171],[119,21,75,-0.5423057191073895],[119,21,76,-0.541828878223896],[119,21,77,-0.5401435866951942],[119,21,78,-0.5372896827757359],[119,21,79,-0.5339196994900703],[119,22,64,-0.5433533973991871],[119,22,65,-0.5427252277731895],[119,22,66,-0.5410686656832695],[119,22,67,-0.5389561280608177],[119,22,68,-0.5372505597770214],[119,22,69,-0.5365519747138023],[119,22,70,-0.5367590710520744],[119,22,71,-0.5373488739132881],[119,22,72,-0.5385580025613308],[119,22,73,-0.5402677766978741],[119,22,74,-0.5416910946369171],[119,22,75,-0.5423057191073895],[119,22,76,-0.541828878223896],[119,22,77,-0.5401435866951942],[119,22,78,-0.5372896827757359],[119,22,79,-0.5339196994900703],[119,23,64,-0.5433533973991871],[119,23,65,-0.5427252277731895],[119,23,66,-0.5410686656832695],[119,23,67,-0.5389561280608177],[119,23,68,-0.5372505597770214],[119,23,69,-0.5365519747138023],[119,23,70,-0.5367590710520744],[119,23,71,-0.5373488739132881],[119,23,72,-0.5385580025613308],[119,23,73,-0.5402677766978741],[119,23,74,-0.5416910946369171],[119,23,75,-0.5423057191073895],[119,23,76,-0.541828878223896],[119,23,77,-0.5401435866951942],[119,23,78,-0.5372896827757359],[119,23,79,-0.5339196994900703],[119,24,64,-0.5433533973991871],[119,24,65,-0.5427252277731895],[119,24,66,-0.5410686656832695],[119,24,67,-0.5389561280608177],[119,24,68,-0.5372505597770214],[119,24,69,-0.5365519747138023],[119,24,70,-0.5367590710520744],[119,24,71,-0.5373488739132881],[119,24,72,-0.5385580025613308],[119,24,73,-0.5402677766978741],[119,24,74,-0.5416910946369171],[119,24,75,-0.5423057191073895],[119,24,76,-0.541828878223896],[119,24,77,-0.5401435866951942],[119,24,78,-0.5372896827757359],[119,24,79,-0.5339196994900703],[119,25,64,-0.5433533973991871],[119,25,65,-0.5427252277731895],[119,25,66,-0.5410686656832695],[119,25,67,-0.5389561280608177],[119,25,68,-0.5372505597770214],[119,25,69,-0.5365519747138023],[119,25,70,-0.5367590710520744],[119,25,71,-0.5373488739132881],[119,25,72,-0.5385580025613308],[119,25,73,-0.5402677766978741],[119,25,74,-0.5416910946369171],[119,25,75,-0.5423057191073895],[119,25,76,-0.541828878223896],[119,25,77,-0.5401435866951942],[119,25,78,-0.5372896827757359],[119,25,79,-0.5339196994900703],[119,26,64,-0.5433533973991871],[119,26,65,-0.5427252277731895],[119,26,66,-0.5410686656832695],[119,26,67,-0.5389561280608177],[119,26,68,-0.5372505597770214],[119,26,69,-0.5365519747138023],[119,26,70,-0.5367590710520744],[119,26,71,-0.5373488739132881],[119,26,72,-0.5385580025613308],[119,26,73,-0.5402677766978741],[119,26,74,-0.5416910946369171],[119,26,75,-0.5423057191073895],[119,26,76,-0.541828878223896],[119,26,77,-0.5401435866951942],[119,26,78,-0.5372896827757359],[119,26,79,-0.5339196994900703],[119,27,64,-0.5433533973991871],[119,27,65,-0.5427252277731895],[119,27,66,-0.5410686656832695],[119,27,67,-0.5389561280608177],[119,27,68,-0.5372505597770214],[119,27,69,-0.5365519747138023],[119,27,70,-0.5367590710520744],[119,27,71,-0.5373488739132881],[119,27,72,-0.5385580025613308],[119,27,73,-0.5402677766978741],[119,27,74,-0.5416910946369171],[119,27,75,-0.5423057191073895],[119,27,76,-0.541828878223896],[119,27,77,-0.5401435866951942],[119,27,78,-0.5372896827757359],[119,27,79,-0.5339196994900703],[119,28,64,-0.5433533973991871],[119,28,65,-0.5427252277731895],[119,28,66,-0.5410686656832695],[119,28,67,-0.5389561280608177],[119,28,68,-0.5372505597770214],[119,28,69,-0.5365519747138023],[119,28,70,-0.5367590710520744],[119,28,71,-0.5373488739132881],[119,28,72,-0.5385580025613308],[119,28,73,-0.5402677766978741],[119,28,74,-0.5416910946369171],[119,28,75,-0.5423057191073895],[119,28,76,-0.541828878223896],[119,28,77,-0.5401435866951942],[119,28,78,-0.5372896827757359],[119,28,79,-0.5339196994900703],[119,29,64,-0.5433533973991871],[119,29,65,-0.5427252277731895],[119,29,66,-0.5410686656832695],[119,29,67,-0.5389561280608177],[119,29,68,-0.5372505597770214],[119,29,69,-0.5365519747138023],[119,29,70,-0.5367590710520744],[119,29,71,-0.5373488739132881],[119,29,72,-0.5385580025613308],[119,29,73,-0.5402677766978741],[119,29,74,-0.5416910946369171],[119,29,75,-0.5423057191073895],[119,29,76,-0.541828878223896],[119,29,77,-0.5401435866951942],[119,29,78,-0.5372896827757359],[119,29,79,-0.5339196994900703],[119,30,64,-0.5433533973991871],[119,30,65,-0.5427252277731895],[119,30,66,-0.5410686656832695],[119,30,67,-0.5389561280608177],[119,30,68,-0.5372505597770214],[119,30,69,-0.5365519747138023],[119,30,70,-0.5367590710520744],[119,30,71,-0.5373488739132881],[119,30,72,-0.5385580025613308],[119,30,73,-0.5402677766978741],[119,30,74,-0.5416910946369171],[119,30,75,-0.5423057191073895],[119,30,76,-0.541828878223896],[119,30,77,-0.5401435866951942],[119,30,78,-0.5372896827757359],[119,30,79,-0.5339196994900703],[119,31,64,-0.5433533973991871],[119,31,65,-0.5427252277731895],[119,31,66,-0.5410686656832695],[119,31,67,-0.5389561280608177],[119,31,68,-0.5372505597770214],[119,31,69,-0.5365519747138023],[119,31,70,-0.5367590710520744],[119,31,71,-0.5373488739132881],[119,31,72,-0.5385580025613308],[119,31,73,-0.5402677766978741],[119,31,74,-0.5416910946369171],[119,31,75,-0.5423057191073895],[119,31,76,-0.541828878223896],[119,31,77,-0.5401435866951942],[119,31,78,-0.5372896827757359],[119,31,79,-0.5339196994900703],[119,32,64,-0.5433533973991871],[119,32,65,-0.5427252277731895],[119,32,66,-0.5410686656832695],[119,32,67,-0.5389561280608177],[119,32,68,-0.5372505597770214],[119,32,69,-0.5365519747138023],[119,32,70,-0.5367590710520744],[119,32,71,-0.5373488739132881],[119,32,72,-0.5385580025613308],[119,32,73,-0.5402677766978741],[119,32,74,-0.5416910946369171],[119,32,75,-0.5423057191073895],[119,32,76,-0.541828878223896],[119,32,77,-0.5401435866951942],[119,32,78,-0.5372896827757359],[119,32,79,-0.5339196994900703],[119,33,64,-0.5433533973991871],[119,33,65,-0.5427252277731895],[119,33,66,-0.5410686656832695],[119,33,67,-0.5389561280608177],[119,33,68,-0.5372505597770214],[119,33,69,-0.5365519747138023],[119,33,70,-0.5367590710520744],[119,33,71,-0.5373488739132881],[119,33,72,-0.5385580025613308],[119,33,73,-0.5402677766978741],[119,33,74,-0.5416910946369171],[119,33,75,-0.5423057191073895],[119,33,76,-0.541828878223896],[119,33,77,-0.5401435866951942],[119,33,78,-0.5372896827757359],[119,33,79,-0.5339196994900703],[119,34,64,-0.5433533973991871],[119,34,65,-0.5427252277731895],[119,34,66,-0.5410686656832695],[119,34,67,-0.5389561280608177],[119,34,68,-0.5372505597770214],[119,34,69,-0.5365519747138023],[119,34,70,-0.5367590710520744],[119,34,71,-0.5373488739132881],[119,34,72,-0.5385580025613308],[119,34,73,-0.5402677766978741],[119,34,74,-0.5416910946369171],[119,34,75,-0.5423057191073895],[119,34,76,-0.541828878223896],[119,34,77,-0.5401435866951942],[119,34,78,-0.5372896827757359],[119,34,79,-0.5339196994900703],[119,35,64,-0.5433533973991871],[119,35,65,-0.5427252277731895],[119,35,66,-0.5410686656832695],[119,35,67,-0.5389561280608177],[119,35,68,-0.5372505597770214],[119,35,69,-0.5365519747138023],[119,35,70,-0.5367590710520744],[119,35,71,-0.5373488739132881],[119,35,72,-0.5385580025613308],[119,35,73,-0.5402677766978741],[119,35,74,-0.5416910946369171],[119,35,75,-0.5423057191073895],[119,35,76,-0.541828878223896],[119,35,77,-0.5401435866951942],[119,35,78,-0.5372896827757359],[119,35,79,-0.5339196994900703],[119,36,64,-0.5433533973991871],[119,36,65,-0.5427252277731895],[119,36,66,-0.5410686656832695],[119,36,67,-0.5389561280608177],[119,36,68,-0.5372505597770214],[119,36,69,-0.5365519747138023],[119,36,70,-0.5367590710520744],[119,36,71,-0.5373488739132881],[119,36,72,-0.5385580025613308],[119,36,73,-0.5402677766978741],[119,36,74,-0.5416910946369171],[119,36,75,-0.5423057191073895],[119,36,76,-0.541828878223896],[119,36,77,-0.5401435866951942],[119,36,78,-0.5372896827757359],[119,36,79,-0.5339196994900703],[119,37,64,-0.5433533973991871],[119,37,65,-0.5427252277731895],[119,37,66,-0.5410686656832695],[119,37,67,-0.5389561280608177],[119,37,68,-0.5372505597770214],[119,37,69,-0.5365519747138023],[119,37,70,-0.5367590710520744],[119,37,71,-0.5373488739132881],[119,37,72,-0.5385580025613308],[119,37,73,-0.5402677766978741],[119,37,74,-0.5416910946369171],[119,37,75,-0.5423057191073895],[119,37,76,-0.541828878223896],[119,37,77,-0.5401435866951942],[119,37,78,-0.5372896827757359],[119,37,79,-0.5339196994900703],[119,38,64,-0.5433533973991871],[119,38,65,-0.5427252277731895],[119,38,66,-0.5410686656832695],[119,38,67,-0.5389561280608177],[119,38,68,-0.5372505597770214],[119,38,69,-0.5365519747138023],[119,38,70,-0.5367590710520744],[119,38,71,-0.5373488739132881],[119,38,72,-0.5385580025613308],[119,38,73,-0.5402677766978741],[119,38,74,-0.5416910946369171],[119,38,75,-0.5423057191073895],[119,38,76,-0.541828878223896],[119,38,77,-0.5401435866951942],[119,38,78,-0.5372896827757359],[119,38,79,-0.5339196994900703],[119,39,64,-0.5433533973991871],[119,39,65,-0.5427252277731895],[119,39,66,-0.5410686656832695],[119,39,67,-0.5389561280608177],[119,39,68,-0.5372505597770214],[119,39,69,-0.5365519747138023],[119,39,70,-0.5367590710520744],[119,39,71,-0.5373488739132881],[119,39,72,-0.5385580025613308],[119,39,73,-0.5402677766978741],[119,39,74,-0.5416910946369171],[119,39,75,-0.5423057191073895],[119,39,76,-0.541828878223896],[119,39,77,-0.5401435866951942],[119,39,78,-0.5372896827757359],[119,39,79,-0.5339196994900703],[119,40,64,-0.5433533973991871],[119,40,65,-0.5427252277731895],[119,40,66,-0.5410686656832695],[119,40,67,-0.5389561280608177],[119,40,68,-0.5372505597770214],[119,40,69,-0.5365519747138023],[119,40,70,-0.5367590710520744],[119,40,71,-0.5373488739132881],[119,40,72,-0.5385580025613308],[119,40,73,-0.5402677766978741],[119,40,74,-0.5416910946369171],[119,40,75,-0.5423057191073895],[119,40,76,-0.541828878223896],[119,40,77,-0.5401435866951942],[119,40,78,-0.5372896827757359],[119,40,79,-0.5339196994900703],[119,41,64,-0.5433533973991871],[119,41,65,-0.5427252277731895],[119,41,66,-0.5410686656832695],[119,41,67,-0.5389561280608177],[119,41,68,-0.5372505597770214],[119,41,69,-0.5365519747138023],[119,41,70,-0.5367590710520744],[119,41,71,-0.5373488739132881],[119,41,72,-0.5385580025613308],[119,41,73,-0.5402677766978741],[119,41,74,-0.5416910946369171],[119,41,75,-0.5423057191073895],[119,41,76,-0.541828878223896],[119,41,77,-0.5401435866951942],[119,41,78,-0.5372896827757359],[119,41,79,-0.5339196994900703],[119,42,64,-0.5433533973991871],[119,42,65,-0.5427252277731895],[119,42,66,-0.5410686656832695],[119,42,67,-0.5389561280608177],[119,42,68,-0.5372505597770214],[119,42,69,-0.5365519747138023],[119,42,70,-0.5367590710520744],[119,42,71,-0.5373488739132881],[119,42,72,-0.5385580025613308],[119,42,73,-0.5402677766978741],[119,42,74,-0.5416910946369171],[119,42,75,-0.5423057191073895],[119,42,76,-0.541828878223896],[119,42,77,-0.5401435866951942],[119,42,78,-0.5372896827757359],[119,42,79,-0.5339196994900703],[119,43,64,-0.5433533973991871],[119,43,65,-0.5427252277731895],[119,43,66,-0.5410686656832695],[119,43,67,-0.5389561280608177],[119,43,68,-0.5372505597770214],[119,43,69,-0.5365519747138023],[119,43,70,-0.5367590710520744],[119,43,71,-0.5373488739132881],[119,43,72,-0.5385580025613308],[119,43,73,-0.5402677766978741],[119,43,74,-0.5416910946369171],[119,43,75,-0.5423057191073895],[119,43,76,-0.541828878223896],[119,43,77,-0.5401435866951942],[119,43,78,-0.5372896827757359],[119,43,79,-0.5339196994900703],[119,44,64,-0.5433533973991871],[119,44,65,-0.5427252277731895],[119,44,66,-0.5410686656832695],[119,44,67,-0.5389561280608177],[119,44,68,-0.5372505597770214],[119,44,69,-0.5365519747138023],[119,44,70,-0.5367590710520744],[119,44,71,-0.5373488739132881],[119,44,72,-0.5385580025613308],[119,44,73,-0.5402677766978741],[119,44,74,-0.5416910946369171],[119,44,75,-0.5423057191073895],[119,44,76,-0.541828878223896],[119,44,77,-0.5401435866951942],[119,44,78,-0.5372896827757359],[119,44,79,-0.5339196994900703],[119,45,64,-0.5433533973991871],[119,45,65,-0.5427252277731895],[119,45,66,-0.5410686656832695],[119,45,67,-0.5389561280608177],[119,45,68,-0.5372505597770214],[119,45,69,-0.5365519747138023],[119,45,70,-0.5367590710520744],[119,45,71,-0.5373488739132881],[119,45,72,-0.5385580025613308],[119,45,73,-0.5402677766978741],[119,45,74,-0.5416910946369171],[119,45,75,-0.5423057191073895],[119,45,76,-0.541828878223896],[119,45,77,-0.5401435866951942],[119,45,78,-0.5372896827757359],[119,45,79,-0.5339196994900703],[119,46,64,-0.5433533973991871],[119,46,65,-0.5427252277731895],[119,46,66,-0.5410686656832695],[119,46,67,-0.5389561280608177],[119,46,68,-0.5372505597770214],[119,46,69,-0.5365519747138023],[119,46,70,-0.5367590710520744],[119,46,71,-0.5373488739132881],[119,46,72,-0.5385580025613308],[119,46,73,-0.5402677766978741],[119,46,74,-0.5416910946369171],[119,46,75,-0.5423057191073895],[119,46,76,-0.541828878223896],[119,46,77,-0.5401435866951942],[119,46,78,-0.5372896827757359],[119,46,79,-0.5339196994900703],[119,47,64,-0.5433533973991871],[119,47,65,-0.5427252277731895],[119,47,66,-0.5410686656832695],[119,47,67,-0.5389561280608177],[119,47,68,-0.5372505597770214],[119,47,69,-0.5365519747138023],[119,47,70,-0.5367590710520744],[119,47,71,-0.5373488739132881],[119,47,72,-0.5385580025613308],[119,47,73,-0.5402677766978741],[119,47,74,-0.5416910946369171],[119,47,75,-0.5423057191073895],[119,47,76,-0.541828878223896],[119,47,77,-0.5401435866951942],[119,47,78,-0.5372896827757359],[119,47,79,-0.5339196994900703],[119,48,64,-0.5433533973991871],[119,48,65,-0.5427252277731895],[119,48,66,-0.5410686656832695],[119,48,67,-0.5389561280608177],[119,48,68,-0.5372505597770214],[119,48,69,-0.5365519747138023],[119,48,70,-0.5367590710520744],[119,48,71,-0.5373488739132881],[119,48,72,-0.5385580025613308],[119,48,73,-0.5402677766978741],[119,48,74,-0.5416910946369171],[119,48,75,-0.5423057191073895],[119,48,76,-0.541828878223896],[119,48,77,-0.5401435866951942],[119,48,78,-0.5372896827757359],[119,48,79,-0.5339196994900703],[119,49,64,-0.5433533973991871],[119,49,65,-0.5427252277731895],[119,49,66,-0.5410686656832695],[119,49,67,-0.5389561280608177],[119,49,68,-0.5372505597770214],[119,49,69,-0.5365519747138023],[119,49,70,-0.5367590710520744],[119,49,71,-0.5373488739132881],[119,49,72,-0.5385580025613308],[119,49,73,-0.5402677766978741],[119,49,74,-0.5416910946369171],[119,49,75,-0.5423057191073895],[119,49,76,-0.541828878223896],[119,49,77,-0.5401435866951942],[119,49,78,-0.5372896827757359],[119,49,79,-0.5339196994900703],[119,50,64,-0.5433533973991871],[119,50,65,-0.5427252277731895],[119,50,66,-0.5410686656832695],[119,50,67,-0.5389561280608177],[119,50,68,-0.5372505597770214],[119,50,69,-0.5365519747138023],[119,50,70,-0.5367590710520744],[119,50,71,-0.5373488739132881],[119,50,72,-0.5385580025613308],[119,50,73,-0.5402677766978741],[119,50,74,-0.5416910946369171],[119,50,75,-0.5423057191073895],[119,50,76,-0.541828878223896],[119,50,77,-0.5401435866951942],[119,50,78,-0.5372896827757359],[119,50,79,-0.5339196994900703],[119,51,64,-0.5433533973991871],[119,51,65,-0.5427252277731895],[119,51,66,-0.5410686656832695],[119,51,67,-0.5389561280608177],[119,51,68,-0.5372505597770214],[119,51,69,-0.5365519747138023],[119,51,70,-0.5367590710520744],[119,51,71,-0.5373488739132881],[119,51,72,-0.5385580025613308],[119,51,73,-0.5402677766978741],[119,51,74,-0.5416910946369171],[119,51,75,-0.5423057191073895],[119,51,76,-0.541828878223896],[119,51,77,-0.5401435866951942],[119,51,78,-0.5372896827757359],[119,51,79,-0.5339196994900703],[119,52,64,-0.5433533973991871],[119,52,65,-0.5427252277731895],[119,52,66,-0.5410686656832695],[119,52,67,-0.5389561280608177],[119,52,68,-0.5372505597770214],[119,52,69,-0.5365519747138023],[119,52,70,-0.5367590710520744],[119,52,71,-0.5373488739132881],[119,52,72,-0.5385580025613308],[119,52,73,-0.5402677766978741],[119,52,74,-0.5416910946369171],[119,52,75,-0.5423057191073895],[119,52,76,-0.541828878223896],[119,52,77,-0.5401435866951942],[119,52,78,-0.5372896827757359],[119,52,79,-0.5339196994900703],[119,53,64,-0.5433533973991871],[119,53,65,-0.5427252277731895],[119,53,66,-0.5410686656832695],[119,53,67,-0.5389561280608177],[119,53,68,-0.5372505597770214],[119,53,69,-0.5365519747138023],[119,53,70,-0.5367590710520744],[119,53,71,-0.5373488739132881],[119,53,72,-0.5385580025613308],[119,53,73,-0.5402677766978741],[119,53,74,-0.5416910946369171],[119,53,75,-0.5423057191073895],[119,53,76,-0.541828878223896],[119,53,77,-0.5401435866951942],[119,53,78,-0.5372896827757359],[119,53,79,-0.5339196994900703],[119,54,64,-0.5433533973991871],[119,54,65,-0.5427252277731895],[119,54,66,-0.5410686656832695],[119,54,67,-0.5389561280608177],[119,54,68,-0.5372505597770214],[119,54,69,-0.5365519747138023],[119,54,70,-0.5367590710520744],[119,54,71,-0.5373488739132881],[119,54,72,-0.5385580025613308],[119,54,73,-0.5402677766978741],[119,54,74,-0.5416910946369171],[119,54,75,-0.5423057191073895],[119,54,76,-0.541828878223896],[119,54,77,-0.5401435866951942],[119,54,78,-0.5372896827757359],[119,54,79,-0.5339196994900703],[119,55,64,-0.5433533973991871],[119,55,65,-0.5427252277731895],[119,55,66,-0.5410686656832695],[119,55,67,-0.5389561280608177],[119,55,68,-0.5372505597770214],[119,55,69,-0.5365519747138023],[119,55,70,-0.5367590710520744],[119,55,71,-0.5373488739132881],[119,55,72,-0.5385580025613308],[119,55,73,-0.5402677766978741],[119,55,74,-0.5416910946369171],[119,55,75,-0.5423057191073895],[119,55,76,-0.541828878223896],[119,55,77,-0.5401435866951942],[119,55,78,-0.5372896827757359],[119,55,79,-0.5339196994900703],[119,56,64,-0.5433533973991871],[119,56,65,-0.5427252277731895],[119,56,66,-0.5410686656832695],[119,56,67,-0.5389561280608177],[119,56,68,-0.5372505597770214],[119,56,69,-0.5365519747138023],[119,56,70,-0.5367590710520744],[119,56,71,-0.5373488739132881],[119,56,72,-0.5385580025613308],[119,56,73,-0.5402677766978741],[119,56,74,-0.5416910946369171],[119,56,75,-0.5423057191073895],[119,56,76,-0.541828878223896],[119,56,77,-0.5401435866951942],[119,56,78,-0.5372896827757359],[119,56,79,-0.5339196994900703],[119,57,64,-0.5433533973991871],[119,57,65,-0.5427252277731895],[119,57,66,-0.5410686656832695],[119,57,67,-0.5389561280608177],[119,57,68,-0.5372505597770214],[119,57,69,-0.5365519747138023],[119,57,70,-0.5367590710520744],[119,57,71,-0.5373488739132881],[119,57,72,-0.5385580025613308],[119,57,73,-0.5402677766978741],[119,57,74,-0.5416910946369171],[119,57,75,-0.5423057191073895],[119,57,76,-0.541828878223896],[119,57,77,-0.5401435866951942],[119,57,78,-0.5372896827757359],[119,57,79,-0.5339196994900703],[119,58,64,-0.5433533973991871],[119,58,65,-0.5427252277731895],[119,58,66,-0.5410686656832695],[119,58,67,-0.5389561280608177],[119,58,68,-0.5372505597770214],[119,58,69,-0.5365519747138023],[119,58,70,-0.5367590710520744],[119,58,71,-0.5373488739132881],[119,58,72,-0.5385580025613308],[119,58,73,-0.5402677766978741],[119,58,74,-0.5416910946369171],[119,58,75,-0.5423057191073895],[119,58,76,-0.541828878223896],[119,58,77,-0.5401435866951942],[119,58,78,-0.5372896827757359],[119,58,79,-0.5339196994900703],[119,59,64,-0.5433533973991871],[119,59,65,-0.5427252277731895],[119,59,66,-0.5410686656832695],[119,59,67,-0.5389561280608177],[119,59,68,-0.5372505597770214],[119,59,69,-0.5365519747138023],[119,59,70,-0.5367590710520744],[119,59,71,-0.5373488739132881],[119,59,72,-0.5385580025613308],[119,59,73,-0.5402677766978741],[119,59,74,-0.5416910946369171],[119,59,75,-0.5423057191073895],[119,59,76,-0.541828878223896],[119,59,77,-0.5401435866951942],[119,59,78,-0.5372896827757359],[119,59,79,-0.5339196994900703],[119,60,64,-0.5433533973991871],[119,60,65,-0.5427252277731895],[119,60,66,-0.5410686656832695],[119,60,67,-0.5389561280608177],[119,60,68,-0.5372505597770214],[119,60,69,-0.5365519747138023],[119,60,70,-0.5367590710520744],[119,60,71,-0.5373488739132881],[119,60,72,-0.5385580025613308],[119,60,73,-0.5402677766978741],[119,60,74,-0.5416910946369171],[119,60,75,-0.5423057191073895],[119,60,76,-0.541828878223896],[119,60,77,-0.5401435866951942],[119,60,78,-0.5372896827757359],[119,60,79,-0.5339196994900703],[119,61,64,-0.5433533973991871],[119,61,65,-0.5427252277731895],[119,61,66,-0.5410686656832695],[119,61,67,-0.5389561280608177],[119,61,68,-0.5372505597770214],[119,61,69,-0.5365519747138023],[119,61,70,-0.5367590710520744],[119,61,71,-0.5373488739132881],[119,61,72,-0.5385580025613308],[119,61,73,-0.5402677766978741],[119,61,74,-0.5416910946369171],[119,61,75,-0.5423057191073895],[119,61,76,-0.541828878223896],[119,61,77,-0.5401435866951942],[119,61,78,-0.5372896827757359],[119,61,79,-0.5339196994900703],[119,62,64,-0.5433533973991871],[119,62,65,-0.5427252277731895],[119,62,66,-0.5410686656832695],[119,62,67,-0.5389561280608177],[119,62,68,-0.5372505597770214],[119,62,69,-0.5365519747138023],[119,62,70,-0.5367590710520744],[119,62,71,-0.5373488739132881],[119,62,72,-0.5385580025613308],[119,62,73,-0.5402677766978741],[119,62,74,-0.5416910946369171],[119,62,75,-0.5423057191073895],[119,62,76,-0.541828878223896],[119,62,77,-0.5401435866951942],[119,62,78,-0.5372896827757359],[119,62,79,-0.5339196994900703],[119,63,64,-0.5433533973991871],[119,63,65,-0.5427252277731895],[119,63,66,-0.5410686656832695],[119,63,67,-0.5389561280608177],[119,63,68,-0.5372505597770214],[119,63,69,-0.5365519747138023],[119,63,70,-0.5367590710520744],[119,63,71,-0.5373488739132881],[119,63,72,-0.5385580025613308],[119,63,73,-0.5402677766978741],[119,63,74,-0.5416910946369171],[119,63,75,-0.5423057191073895],[119,63,76,-0.541828878223896],[119,63,77,-0.5401435866951942],[119,63,78,-0.5372896827757359],[119,63,79,-0.5339196994900703],[119,64,64,-0.5433533973991871],[119,64,65,-0.5427252277731895],[119,64,66,-0.5410686656832695],[119,64,67,-0.5389561280608177],[119,64,68,-0.5372505597770214],[119,64,69,-0.5365519747138023],[119,64,70,-0.5367590710520744],[119,64,71,-0.5373488739132881],[119,64,72,-0.5385580025613308],[119,64,73,-0.5402677766978741],[119,64,74,-0.5416910946369171],[119,64,75,-0.5423057191073895],[119,64,76,-0.541828878223896],[119,64,77,-0.5401435866951942],[119,64,78,-0.5372896827757359],[119,64,79,-0.5339196994900703],[119,65,64,-0.5433533973991871],[119,65,65,-0.5427252277731895],[119,65,66,-0.5410686656832695],[119,65,67,-0.5389561280608177],[119,65,68,-0.5372505597770214],[119,65,69,-0.5365519747138023],[119,65,70,-0.5367590710520744],[119,65,71,-0.5373488739132881],[119,65,72,-0.5385580025613308],[119,65,73,-0.5402677766978741],[119,65,74,-0.5416910946369171],[119,65,75,-0.5423057191073895],[119,65,76,-0.541828878223896],[119,65,77,-0.5401435866951942],[119,65,78,-0.5372896827757359],[119,65,79,-0.5339196994900703],[119,66,64,-0.5433533973991871],[119,66,65,-0.5427252277731895],[119,66,66,-0.5410686656832695],[119,66,67,-0.5389561280608177],[119,66,68,-0.5372505597770214],[119,66,69,-0.5365519747138023],[119,66,70,-0.5367590710520744],[119,66,71,-0.5373488739132881],[119,66,72,-0.5385580025613308],[119,66,73,-0.5402677766978741],[119,66,74,-0.5416910946369171],[119,66,75,-0.5423057191073895],[119,66,76,-0.541828878223896],[119,66,77,-0.5401435866951942],[119,66,78,-0.5372896827757359],[119,66,79,-0.5339196994900703],[119,67,64,-0.5433533973991871],[119,67,65,-0.5427252277731895],[119,67,66,-0.5410686656832695],[119,67,67,-0.5389561280608177],[119,67,68,-0.5372505597770214],[119,67,69,-0.5365519747138023],[119,67,70,-0.5367590710520744],[119,67,71,-0.5373488739132881],[119,67,72,-0.5385580025613308],[119,67,73,-0.5402677766978741],[119,67,74,-0.5416910946369171],[119,67,75,-0.5423057191073895],[119,67,76,-0.541828878223896],[119,67,77,-0.5401435866951942],[119,67,78,-0.5372896827757359],[119,67,79,-0.5339196994900703],[119,68,64,-0.5433533973991871],[119,68,65,-0.5427252277731895],[119,68,66,-0.5410686656832695],[119,68,67,-0.5389561280608177],[119,68,68,-0.5372505597770214],[119,68,69,-0.5365519747138023],[119,68,70,-0.5367590710520744],[119,68,71,-0.5373488739132881],[119,68,72,-0.5385580025613308],[119,68,73,-0.5402677766978741],[119,68,74,-0.5416910946369171],[119,68,75,-0.5423057191073895],[119,68,76,-0.541828878223896],[119,68,77,-0.5401435866951942],[119,68,78,-0.5372896827757359],[119,68,79,-0.5339196994900703],[119,69,64,-0.5433533973991871],[119,69,65,-0.5427252277731895],[119,69,66,-0.5410686656832695],[119,69,67,-0.5389561280608177],[119,69,68,-0.5372505597770214],[119,69,69,-0.5365519747138023],[119,69,70,-0.5367590710520744],[119,69,71,-0.5373488739132881],[119,69,72,-0.5385580025613308],[119,69,73,-0.5402677766978741],[119,69,74,-0.5416910946369171],[119,69,75,-0.5423057191073895],[119,69,76,-0.541828878223896],[119,69,77,-0.5401435866951942],[119,69,78,-0.5372896827757359],[119,69,79,-0.5339196994900703],[119,70,64,-0.5433533973991871],[119,70,65,-0.5427252277731895],[119,70,66,-0.5410686656832695],[119,70,67,-0.5389561280608177],[119,70,68,-0.5372505597770214],[119,70,69,-0.5365519747138023],[119,70,70,-0.5367590710520744],[119,70,71,-0.5373488739132881],[119,70,72,-0.5385580025613308],[119,70,73,-0.5402677766978741],[119,70,74,-0.5416910946369171],[119,70,75,-0.5423057191073895],[119,70,76,-0.541828878223896],[119,70,77,-0.5401435866951942],[119,70,78,-0.5372896827757359],[119,70,79,-0.5339196994900703],[119,71,64,-0.5433533973991871],[119,71,65,-0.5427252277731895],[119,71,66,-0.5410686656832695],[119,71,67,-0.5389561280608177],[119,71,68,-0.5372505597770214],[119,71,69,-0.5365519747138023],[119,71,70,-0.5367590710520744],[119,71,71,-0.5373488739132881],[119,71,72,-0.5385580025613308],[119,71,73,-0.5402677766978741],[119,71,74,-0.5416910946369171],[119,71,75,-0.5423057191073895],[119,71,76,-0.541828878223896],[119,71,77,-0.5401435866951942],[119,71,78,-0.5372896827757359],[119,71,79,-0.5339196994900703],[119,72,64,-0.5433533973991871],[119,72,65,-0.5427252277731895],[119,72,66,-0.5410686656832695],[119,72,67,-0.5389561280608177],[119,72,68,-0.5372505597770214],[119,72,69,-0.5365519747138023],[119,72,70,-0.5367590710520744],[119,72,71,-0.5373488739132881],[119,72,72,-0.5385580025613308],[119,72,73,-0.5402677766978741],[119,72,74,-0.5416910946369171],[119,72,75,-0.5423057191073895],[119,72,76,-0.541828878223896],[119,72,77,-0.5401435866951942],[119,72,78,-0.5372896827757359],[119,72,79,-0.5339196994900703],[119,73,64,-0.5433533973991871],[119,73,65,-0.5427252277731895],[119,73,66,-0.5410686656832695],[119,73,67,-0.5389561280608177],[119,73,68,-0.5372505597770214],[119,73,69,-0.5365519747138023],[119,73,70,-0.5367590710520744],[119,73,71,-0.5373488739132881],[119,73,72,-0.5385580025613308],[119,73,73,-0.5402677766978741],[119,73,74,-0.5416910946369171],[119,73,75,-0.5423057191073895],[119,73,76,-0.541828878223896],[119,73,77,-0.5401435866951942],[119,73,78,-0.5372896827757359],[119,73,79,-0.5339196994900703],[119,74,64,-0.5433533973991871],[119,74,65,-0.5427252277731895],[119,74,66,-0.5410686656832695],[119,74,67,-0.5389561280608177],[119,74,68,-0.5372505597770214],[119,74,69,-0.5365519747138023],[119,74,70,-0.5367590710520744],[119,74,71,-0.5373488739132881],[119,74,72,-0.5385580025613308],[119,74,73,-0.5402677766978741],[119,74,74,-0.5416910946369171],[119,74,75,-0.5423057191073895],[119,74,76,-0.541828878223896],[119,74,77,-0.5401435866951942],[119,74,78,-0.5372896827757359],[119,74,79,-0.5339196994900703],[119,75,64,-0.5433533973991871],[119,75,65,-0.5427252277731895],[119,75,66,-0.5410686656832695],[119,75,67,-0.5389561280608177],[119,75,68,-0.5372505597770214],[119,75,69,-0.5365519747138023],[119,75,70,-0.5367590710520744],[119,75,71,-0.5373488739132881],[119,75,72,-0.5385580025613308],[119,75,73,-0.5402677766978741],[119,75,74,-0.5416910946369171],[119,75,75,-0.5423057191073895],[119,75,76,-0.541828878223896],[119,75,77,-0.5401435866951942],[119,75,78,-0.5372896827757359],[119,75,79,-0.5339196994900703],[119,76,64,-0.5433533973991871],[119,76,65,-0.5427252277731895],[119,76,66,-0.5410686656832695],[119,76,67,-0.5389561280608177],[119,76,68,-0.5372505597770214],[119,76,69,-0.5365519747138023],[119,76,70,-0.5367590710520744],[119,76,71,-0.5373488739132881],[119,76,72,-0.5385580025613308],[119,76,73,-0.5402677766978741],[119,76,74,-0.5416910946369171],[119,76,75,-0.5423057191073895],[119,76,76,-0.541828878223896],[119,76,77,-0.5401435866951942],[119,76,78,-0.5372896827757359],[119,76,79,-0.5339196994900703],[119,77,64,-0.5433533973991871],[119,77,65,-0.5427252277731895],[119,77,66,-0.5410686656832695],[119,77,67,-0.5389561280608177],[119,77,68,-0.5372505597770214],[119,77,69,-0.5365519747138023],[119,77,70,-0.5367590710520744],[119,77,71,-0.5373488739132881],[119,77,72,-0.5385580025613308],[119,77,73,-0.5402677766978741],[119,77,74,-0.5416910946369171],[119,77,75,-0.5423057191073895],[119,77,76,-0.541828878223896],[119,77,77,-0.5401435866951942],[119,77,78,-0.5372896827757359],[119,77,79,-0.5339196994900703],[119,78,64,-0.5433533973991871],[119,78,65,-0.5427252277731895],[119,78,66,-0.5410686656832695],[119,78,67,-0.5389561280608177],[119,78,68,-0.5372505597770214],[119,78,69,-0.5365519747138023],[119,78,70,-0.5367590710520744],[119,78,71,-0.5373488739132881],[119,78,72,-0.5385580025613308],[119,78,73,-0.5402677766978741],[119,78,74,-0.5416910946369171],[119,78,75,-0.5423057191073895],[119,78,76,-0.541828878223896],[119,78,77,-0.5401435866951942],[119,78,78,-0.5372896827757359],[119,78,79,-0.5339196994900703],[119,79,64,-0.5433533973991871],[119,79,65,-0.5427252277731895],[119,79,66,-0.5410686656832695],[119,79,67,-0.5389561280608177],[119,79,68,-0.5372505597770214],[119,79,69,-0.5365519747138023],[119,79,70,-0.5367590710520744],[119,79,71,-0.5373488739132881],[119,79,72,-0.5385580025613308],[119,79,73,-0.5402677766978741],[119,79,74,-0.5416910946369171],[119,79,75,-0.5423057191073895],[119,79,76,-0.541828878223896],[119,79,77,-0.5401435866951942],[119,79,78,-0.5372896827757359],[119,79,79,-0.5339196994900703],[119,80,64,-0.5433533973991871],[119,80,65,-0.5427252277731895],[119,80,66,-0.5410686656832695],[119,80,67,-0.5389561280608177],[119,80,68,-0.5372505597770214],[119,80,69,-0.5365519747138023],[119,80,70,-0.5367590710520744],[119,80,71,-0.5373488739132881],[119,80,72,-0.5385580025613308],[119,80,73,-0.5402677766978741],[119,80,74,-0.5416910946369171],[119,80,75,-0.5423057191073895],[119,80,76,-0.541828878223896],[119,80,77,-0.5401435866951942],[119,80,78,-0.5372896827757359],[119,80,79,-0.5339196994900703],[119,81,64,-0.5433533973991871],[119,81,65,-0.5427252277731895],[119,81,66,-0.5410686656832695],[119,81,67,-0.5389561280608177],[119,81,68,-0.5372505597770214],[119,81,69,-0.5365519747138023],[119,81,70,-0.5367590710520744],[119,81,71,-0.5373488739132881],[119,81,72,-0.5385580025613308],[119,81,73,-0.5402677766978741],[119,81,74,-0.5416910946369171],[119,81,75,-0.5423057191073895],[119,81,76,-0.541828878223896],[119,81,77,-0.5401435866951942],[119,81,78,-0.5372896827757359],[119,81,79,-0.5339196994900703],[119,82,64,-0.5433533973991871],[119,82,65,-0.5427252277731895],[119,82,66,-0.5410686656832695],[119,82,67,-0.5389561280608177],[119,82,68,-0.5372505597770214],[119,82,69,-0.5365519747138023],[119,82,70,-0.5367590710520744],[119,82,71,-0.5373488739132881],[119,82,72,-0.5385580025613308],[119,82,73,-0.5402677766978741],[119,82,74,-0.5416910946369171],[119,82,75,-0.5423057191073895],[119,82,76,-0.541828878223896],[119,82,77,-0.5401435866951942],[119,82,78,-0.5372896827757359],[119,82,79,-0.5339196994900703],[119,83,64,-0.5433533973991871],[119,83,65,-0.5427252277731895],[119,83,66,-0.5410686656832695],[119,83,67,-0.5389561280608177],[119,83,68,-0.5372505597770214],[119,83,69,-0.5365519747138023],[119,83,70,-0.5367590710520744],[119,83,71,-0.5373488739132881],[119,83,72,-0.5385580025613308],[119,83,73,-0.5402677766978741],[119,83,74,-0.5416910946369171],[119,83,75,-0.5423057191073895],[119,83,76,-0.541828878223896],[119,83,77,-0.5401435866951942],[119,83,78,-0.5372896827757359],[119,83,79,-0.5339196994900703],[119,84,64,-0.5433533973991871],[119,84,65,-0.5427252277731895],[119,84,66,-0.5410686656832695],[119,84,67,-0.5389561280608177],[119,84,68,-0.5372505597770214],[119,84,69,-0.5365519747138023],[119,84,70,-0.5367590710520744],[119,84,71,-0.5373488739132881],[119,84,72,-0.5385580025613308],[119,84,73,-0.5402677766978741],[119,84,74,-0.5416910946369171],[119,84,75,-0.5423057191073895],[119,84,76,-0.541828878223896],[119,84,77,-0.5401435866951942],[119,84,78,-0.5372896827757359],[119,84,79,-0.5339196994900703],[119,85,64,-0.5433533973991871],[119,85,65,-0.5427252277731895],[119,85,66,-0.5410686656832695],[119,85,67,-0.5389561280608177],[119,85,68,-0.5372505597770214],[119,85,69,-0.5365519747138023],[119,85,70,-0.5367590710520744],[119,85,71,-0.5373488739132881],[119,85,72,-0.5385580025613308],[119,85,73,-0.5402677766978741],[119,85,74,-0.5416910946369171],[119,85,75,-0.5423057191073895],[119,85,76,-0.541828878223896],[119,85,77,-0.5401435866951942],[119,85,78,-0.5372896827757359],[119,85,79,-0.5339196994900703],[119,86,64,-0.5433533973991871],[119,86,65,-0.5427252277731895],[119,86,66,-0.5410686656832695],[119,86,67,-0.5389561280608177],[119,86,68,-0.5372505597770214],[119,86,69,-0.5365519747138023],[119,86,70,-0.5367590710520744],[119,86,71,-0.5373488739132881],[119,86,72,-0.5385580025613308],[119,86,73,-0.5402677766978741],[119,86,74,-0.5416910946369171],[119,86,75,-0.5423057191073895],[119,86,76,-0.541828878223896],[119,86,77,-0.5401435866951942],[119,86,78,-0.5372896827757359],[119,86,79,-0.5339196994900703],[119,87,64,-0.5433533973991871],[119,87,65,-0.5427252277731895],[119,87,66,-0.5410686656832695],[119,87,67,-0.5389561280608177],[119,87,68,-0.5372505597770214],[119,87,69,-0.5365519747138023],[119,87,70,-0.5367590710520744],[119,87,71,-0.5373488739132881],[119,87,72,-0.5385580025613308],[119,87,73,-0.5402677766978741],[119,87,74,-0.5416910946369171],[119,87,75,-0.5423057191073895],[119,87,76,-0.541828878223896],[119,87,77,-0.5401435866951942],[119,87,78,-0.5372896827757359],[119,87,79,-0.5339196994900703],[119,88,64,-0.5433533973991871],[119,88,65,-0.5427252277731895],[119,88,66,-0.5410686656832695],[119,88,67,-0.5389561280608177],[119,88,68,-0.5372505597770214],[119,88,69,-0.5365519747138023],[119,88,70,-0.5367590710520744],[119,88,71,-0.5373488739132881],[119,88,72,-0.5385580025613308],[119,88,73,-0.5402677766978741],[119,88,74,-0.5416910946369171],[119,88,75,-0.5423057191073895],[119,88,76,-0.541828878223896],[119,88,77,-0.5401435866951942],[119,88,78,-0.5372896827757359],[119,88,79,-0.5339196994900703],[119,89,64,-0.5433533973991871],[119,89,65,-0.5427252277731895],[119,89,66,-0.5410686656832695],[119,89,67,-0.5389561280608177],[119,89,68,-0.5372505597770214],[119,89,69,-0.5365519747138023],[119,89,70,-0.5367590710520744],[119,89,71,-0.5373488739132881],[119,89,72,-0.5385580025613308],[119,89,73,-0.5402677766978741],[119,89,74,-0.5416910946369171],[119,89,75,-0.5423057191073895],[119,89,76,-0.541828878223896],[119,89,77,-0.5401435866951942],[119,89,78,-0.5372896827757359],[119,89,79,-0.5339196994900703],[119,90,64,-0.5433533973991871],[119,90,65,-0.5427252277731895],[119,90,66,-0.5410686656832695],[119,90,67,-0.5389561280608177],[119,90,68,-0.5372505597770214],[119,90,69,-0.5365519747138023],[119,90,70,-0.5367590710520744],[119,90,71,-0.5373488739132881],[119,90,72,-0.5385580025613308],[119,90,73,-0.5402677766978741],[119,90,74,-0.5416910946369171],[119,90,75,-0.5423057191073895],[119,90,76,-0.541828878223896],[119,90,77,-0.5401435866951942],[119,90,78,-0.5372896827757359],[119,90,79,-0.5339196994900703],[119,91,64,-0.5433533973991871],[119,91,65,-0.5427252277731895],[119,91,66,-0.5410686656832695],[119,91,67,-0.5389561280608177],[119,91,68,-0.5372505597770214],[119,91,69,-0.5365519747138023],[119,91,70,-0.5367590710520744],[119,91,71,-0.5373488739132881],[119,91,72,-0.5385580025613308],[119,91,73,-0.5402677766978741],[119,91,74,-0.5416910946369171],[119,91,75,-0.5423057191073895],[119,91,76,-0.541828878223896],[119,91,77,-0.5401435866951942],[119,91,78,-0.5372896827757359],[119,91,79,-0.5339196994900703],[119,92,64,-0.5433533973991871],[119,92,65,-0.5427252277731895],[119,92,66,-0.5410686656832695],[119,92,67,-0.5389561280608177],[119,92,68,-0.5372505597770214],[119,92,69,-0.5365519747138023],[119,92,70,-0.5367590710520744],[119,92,71,-0.5373488739132881],[119,92,72,-0.5385580025613308],[119,92,73,-0.5402677766978741],[119,92,74,-0.5416910946369171],[119,92,75,-0.5423057191073895],[119,92,76,-0.541828878223896],[119,92,77,-0.5401435866951942],[119,92,78,-0.5372896827757359],[119,92,79,-0.5339196994900703],[119,93,64,-0.5433533973991871],[119,93,65,-0.5427252277731895],[119,93,66,-0.5410686656832695],[119,93,67,-0.5389561280608177],[119,93,68,-0.5372505597770214],[119,93,69,-0.5365519747138023],[119,93,70,-0.5367590710520744],[119,93,71,-0.5373488739132881],[119,93,72,-0.5385580025613308],[119,93,73,-0.5402677766978741],[119,93,74,-0.5416910946369171],[119,93,75,-0.5423057191073895],[119,93,76,-0.541828878223896],[119,93,77,-0.5401435866951942],[119,93,78,-0.5372896827757359],[119,93,79,-0.5339196994900703],[119,94,64,-0.5433533973991871],[119,94,65,-0.5427252277731895],[119,94,66,-0.5410686656832695],[119,94,67,-0.5389561280608177],[119,94,68,-0.5372505597770214],[119,94,69,-0.5365519747138023],[119,94,70,-0.5367590710520744],[119,94,71,-0.5373488739132881],[119,94,72,-0.5385580025613308],[119,94,73,-0.5402677766978741],[119,94,74,-0.5416910946369171],[119,94,75,-0.5423057191073895],[119,94,76,-0.541828878223896],[119,94,77,-0.5401435866951942],[119,94,78,-0.5372896827757359],[119,94,79,-0.5339196994900703],[119,95,64,-0.5433533973991871],[119,95,65,-0.5427252277731895],[119,95,66,-0.5410686656832695],[119,95,67,-0.5389561280608177],[119,95,68,-0.5372505597770214],[119,95,69,-0.5365519747138023],[119,95,70,-0.5367590710520744],[119,95,71,-0.5373488739132881],[119,95,72,-0.5385580025613308],[119,95,73,-0.5402677766978741],[119,95,74,-0.5416910946369171],[119,95,75,-0.5423057191073895],[119,95,76,-0.541828878223896],[119,95,77,-0.5401435866951942],[119,95,78,-0.5372896827757359],[119,95,79,-0.5339196994900703],[119,96,64,-0.5433533973991871],[119,96,65,-0.5427252277731895],[119,96,66,-0.5410686656832695],[119,96,67,-0.5389561280608177],[119,96,68,-0.5372505597770214],[119,96,69,-0.5365519747138023],[119,96,70,-0.5367590710520744],[119,96,71,-0.5373488739132881],[119,96,72,-0.5385580025613308],[119,96,73,-0.5402677766978741],[119,96,74,-0.5416910946369171],[119,96,75,-0.5423057191073895],[119,96,76,-0.541828878223896],[119,96,77,-0.5401435866951942],[119,96,78,-0.5372896827757359],[119,96,79,-0.5339196994900703],[119,97,64,-0.5433533973991871],[119,97,65,-0.5427252277731895],[119,97,66,-0.5410686656832695],[119,97,67,-0.5389561280608177],[119,97,68,-0.5372505597770214],[119,97,69,-0.5365519747138023],[119,97,70,-0.5367590710520744],[119,97,71,-0.5373488739132881],[119,97,72,-0.5385580025613308],[119,97,73,-0.5402677766978741],[119,97,74,-0.5416910946369171],[119,97,75,-0.5423057191073895],[119,97,76,-0.541828878223896],[119,97,77,-0.5401435866951942],[119,97,78,-0.5372896827757359],[119,97,79,-0.5339196994900703],[119,98,64,-0.5433533973991871],[119,98,65,-0.5427252277731895],[119,98,66,-0.5410686656832695],[119,98,67,-0.5389561280608177],[119,98,68,-0.5372505597770214],[119,98,69,-0.5365519747138023],[119,98,70,-0.5367590710520744],[119,98,71,-0.5373488739132881],[119,98,72,-0.5385580025613308],[119,98,73,-0.5402677766978741],[119,98,74,-0.5416910946369171],[119,98,75,-0.5423057191073895],[119,98,76,-0.541828878223896],[119,98,77,-0.5401435866951942],[119,98,78,-0.5372896827757359],[119,98,79,-0.5339196994900703],[119,99,64,-0.5433533973991871],[119,99,65,-0.5427252277731895],[119,99,66,-0.5410686656832695],[119,99,67,-0.5389561280608177],[119,99,68,-0.5372505597770214],[119,99,69,-0.5365519747138023],[119,99,70,-0.5367590710520744],[119,99,71,-0.5373488739132881],[119,99,72,-0.5385580025613308],[119,99,73,-0.5402677766978741],[119,99,74,-0.5416910946369171],[119,99,75,-0.5423057191073895],[119,99,76,-0.541828878223896],[119,99,77,-0.5401435866951942],[119,99,78,-0.5372896827757359],[119,99,79,-0.5339196994900703],[119,100,64,-0.5433533973991871],[119,100,65,-0.5427252277731895],[119,100,66,-0.5410686656832695],[119,100,67,-0.5389561280608177],[119,100,68,-0.5372505597770214],[119,100,69,-0.5365519747138023],[119,100,70,-0.5367590710520744],[119,100,71,-0.5373488739132881],[119,100,72,-0.5385580025613308],[119,100,73,-0.5402677766978741],[119,100,74,-0.5416910946369171],[119,100,75,-0.5423057191073895],[119,100,76,-0.541828878223896],[119,100,77,-0.5401435866951942],[119,100,78,-0.5372896827757359],[119,100,79,-0.5339196994900703],[119,101,64,-0.5433533973991871],[119,101,65,-0.5427252277731895],[119,101,66,-0.5410686656832695],[119,101,67,-0.5389561280608177],[119,101,68,-0.5372505597770214],[119,101,69,-0.5365519747138023],[119,101,70,-0.5367590710520744],[119,101,71,-0.5373488739132881],[119,101,72,-0.5385580025613308],[119,101,73,-0.5402677766978741],[119,101,74,-0.5416910946369171],[119,101,75,-0.5423057191073895],[119,101,76,-0.541828878223896],[119,101,77,-0.5401435866951942],[119,101,78,-0.5372896827757359],[119,101,79,-0.5339196994900703],[119,102,64,-0.5433533973991871],[119,102,65,-0.5427252277731895],[119,102,66,-0.5410686656832695],[119,102,67,-0.5389561280608177],[119,102,68,-0.5372505597770214],[119,102,69,-0.5365519747138023],[119,102,70,-0.5367590710520744],[119,102,71,-0.5373488739132881],[119,102,72,-0.5385580025613308],[119,102,73,-0.5402677766978741],[119,102,74,-0.5416910946369171],[119,102,75,-0.5423057191073895],[119,102,76,-0.541828878223896],[119,102,77,-0.5401435866951942],[119,102,78,-0.5372896827757359],[119,102,79,-0.5339196994900703],[119,103,64,-0.5433533973991871],[119,103,65,-0.5427252277731895],[119,103,66,-0.5410686656832695],[119,103,67,-0.5389561280608177],[119,103,68,-0.5372505597770214],[119,103,69,-0.5365519747138023],[119,103,70,-0.5367590710520744],[119,103,71,-0.5373488739132881],[119,103,72,-0.5385580025613308],[119,103,73,-0.5402677766978741],[119,103,74,-0.5416910946369171],[119,103,75,-0.5423057191073895],[119,103,76,-0.541828878223896],[119,103,77,-0.5401435866951942],[119,103,78,-0.5372896827757359],[119,103,79,-0.5339196994900703],[119,104,64,-0.5433533973991871],[119,104,65,-0.5427252277731895],[119,104,66,-0.5410686656832695],[119,104,67,-0.5389561280608177],[119,104,68,-0.5372505597770214],[119,104,69,-0.5365519747138023],[119,104,70,-0.5367590710520744],[119,104,71,-0.5373488739132881],[119,104,72,-0.5385580025613308],[119,104,73,-0.5402677766978741],[119,104,74,-0.5416910946369171],[119,104,75,-0.5423057191073895],[119,104,76,-0.541828878223896],[119,104,77,-0.5401435866951942],[119,104,78,-0.5372896827757359],[119,104,79,-0.5339196994900703],[119,105,64,-0.5433533973991871],[119,105,65,-0.5427252277731895],[119,105,66,-0.5410686656832695],[119,105,67,-0.5389561280608177],[119,105,68,-0.5372505597770214],[119,105,69,-0.5365519747138023],[119,105,70,-0.5367590710520744],[119,105,71,-0.5373488739132881],[119,105,72,-0.5385580025613308],[119,105,73,-0.5402677766978741],[119,105,74,-0.5416910946369171],[119,105,75,-0.5423057191073895],[119,105,76,-0.541828878223896],[119,105,77,-0.5401435866951942],[119,105,78,-0.5372896827757359],[119,105,79,-0.5339196994900703],[119,106,64,-0.5433533973991871],[119,106,65,-0.5427252277731895],[119,106,66,-0.5410686656832695],[119,106,67,-0.5389561280608177],[119,106,68,-0.5372505597770214],[119,106,69,-0.5365519747138023],[119,106,70,-0.5367590710520744],[119,106,71,-0.5373488739132881],[119,106,72,-0.5385580025613308],[119,106,73,-0.5402677766978741],[119,106,74,-0.5416910946369171],[119,106,75,-0.5423057191073895],[119,106,76,-0.541828878223896],[119,106,77,-0.5401435866951942],[119,106,78,-0.5372896827757359],[119,106,79,-0.5339196994900703],[119,107,64,-0.5433533973991871],[119,107,65,-0.5427252277731895],[119,107,66,-0.5410686656832695],[119,107,67,-0.5389561280608177],[119,107,68,-0.5372505597770214],[119,107,69,-0.5365519747138023],[119,107,70,-0.5367590710520744],[119,107,71,-0.5373488739132881],[119,107,72,-0.5385580025613308],[119,107,73,-0.5402677766978741],[119,107,74,-0.5416910946369171],[119,107,75,-0.5423057191073895],[119,107,76,-0.541828878223896],[119,107,77,-0.5401435866951942],[119,107,78,-0.5372896827757359],[119,107,79,-0.5339196994900703],[119,108,64,-0.5433533973991871],[119,108,65,-0.5427252277731895],[119,108,66,-0.5410686656832695],[119,108,67,-0.5389561280608177],[119,108,68,-0.5372505597770214],[119,108,69,-0.5365519747138023],[119,108,70,-0.5367590710520744],[119,108,71,-0.5373488739132881],[119,108,72,-0.5385580025613308],[119,108,73,-0.5402677766978741],[119,108,74,-0.5416910946369171],[119,108,75,-0.5423057191073895],[119,108,76,-0.541828878223896],[119,108,77,-0.5401435866951942],[119,108,78,-0.5372896827757359],[119,108,79,-0.5339196994900703],[119,109,64,-0.5433533973991871],[119,109,65,-0.5427252277731895],[119,109,66,-0.5410686656832695],[119,109,67,-0.5389561280608177],[119,109,68,-0.5372505597770214],[119,109,69,-0.5365519747138023],[119,109,70,-0.5367590710520744],[119,109,71,-0.5373488739132881],[119,109,72,-0.5385580025613308],[119,109,73,-0.5402677766978741],[119,109,74,-0.5416910946369171],[119,109,75,-0.5423057191073895],[119,109,76,-0.541828878223896],[119,109,77,-0.5401435866951942],[119,109,78,-0.5372896827757359],[119,109,79,-0.5339196994900703],[119,110,64,-0.5433533973991871],[119,110,65,-0.5427252277731895],[119,110,66,-0.5410686656832695],[119,110,67,-0.5389561280608177],[119,110,68,-0.5372505597770214],[119,110,69,-0.5365519747138023],[119,110,70,-0.5367590710520744],[119,110,71,-0.5373488739132881],[119,110,72,-0.5385580025613308],[119,110,73,-0.5402677766978741],[119,110,74,-0.5416910946369171],[119,110,75,-0.5423057191073895],[119,110,76,-0.541828878223896],[119,110,77,-0.5401435866951942],[119,110,78,-0.5372896827757359],[119,110,79,-0.5339196994900703],[119,111,64,-0.5433533973991871],[119,111,65,-0.5427252277731895],[119,111,66,-0.5410686656832695],[119,111,67,-0.5389561280608177],[119,111,68,-0.5372505597770214],[119,111,69,-0.5365519747138023],[119,111,70,-0.5367590710520744],[119,111,71,-0.5373488739132881],[119,111,72,-0.5385580025613308],[119,111,73,-0.5402677766978741],[119,111,74,-0.5416910946369171],[119,111,75,-0.5423057191073895],[119,111,76,-0.541828878223896],[119,111,77,-0.5401435866951942],[119,111,78,-0.5372896827757359],[119,111,79,-0.5339196994900703],[119,112,64,-0.5433533973991871],[119,112,65,-0.5427252277731895],[119,112,66,-0.5410686656832695],[119,112,67,-0.5389561280608177],[119,112,68,-0.5372505597770214],[119,112,69,-0.5365519747138023],[119,112,70,-0.5367590710520744],[119,112,71,-0.5373488739132881],[119,112,72,-0.5385580025613308],[119,112,73,-0.5402677766978741],[119,112,74,-0.5416910946369171],[119,112,75,-0.5423057191073895],[119,112,76,-0.541828878223896],[119,112,77,-0.5401435866951942],[119,112,78,-0.5372896827757359],[119,112,79,-0.5339196994900703],[119,113,64,-0.5433533973991871],[119,113,65,-0.5427252277731895],[119,113,66,-0.5410686656832695],[119,113,67,-0.5389561280608177],[119,113,68,-0.5372505597770214],[119,113,69,-0.5365519747138023],[119,113,70,-0.5367590710520744],[119,113,71,-0.5373488739132881],[119,113,72,-0.5385580025613308],[119,113,73,-0.5402677766978741],[119,113,74,-0.5416910946369171],[119,113,75,-0.5423057191073895],[119,113,76,-0.541828878223896],[119,113,77,-0.5401435866951942],[119,113,78,-0.5372896827757359],[119,113,79,-0.5339196994900703],[119,114,64,-0.5433533973991871],[119,114,65,-0.5427252277731895],[119,114,66,-0.5410686656832695],[119,114,67,-0.5389561280608177],[119,114,68,-0.5372505597770214],[119,114,69,-0.5365519747138023],[119,114,70,-0.5367590710520744],[119,114,71,-0.5373488739132881],[119,114,72,-0.5385580025613308],[119,114,73,-0.5402677766978741],[119,114,74,-0.5416910946369171],[119,114,75,-0.5423057191073895],[119,114,76,-0.541828878223896],[119,114,77,-0.5401435866951942],[119,114,78,-0.5372896827757359],[119,114,79,-0.5339196994900703],[119,115,64,-0.5433533973991871],[119,115,65,-0.5427252277731895],[119,115,66,-0.5410686656832695],[119,115,67,-0.5389561280608177],[119,115,68,-0.5372505597770214],[119,115,69,-0.5365519747138023],[119,115,70,-0.5367590710520744],[119,115,71,-0.5373488739132881],[119,115,72,-0.5385580025613308],[119,115,73,-0.5402677766978741],[119,115,74,-0.5416910946369171],[119,115,75,-0.5423057191073895],[119,115,76,-0.541828878223896],[119,115,77,-0.5401435866951942],[119,115,78,-0.5372896827757359],[119,115,79,-0.5339196994900703],[119,116,64,-0.5433533973991871],[119,116,65,-0.5427252277731895],[119,116,66,-0.5410686656832695],[119,116,67,-0.5389561280608177],[119,116,68,-0.5372505597770214],[119,116,69,-0.5365519747138023],[119,116,70,-0.5367590710520744],[119,116,71,-0.5373488739132881],[119,116,72,-0.5385580025613308],[119,116,73,-0.5402677766978741],[119,116,74,-0.5416910946369171],[119,116,75,-0.5423057191073895],[119,116,76,-0.541828878223896],[119,116,77,-0.5401435866951942],[119,116,78,-0.5372896827757359],[119,116,79,-0.5339196994900703],[119,117,64,-0.5433533973991871],[119,117,65,-0.5427252277731895],[119,117,66,-0.5410686656832695],[119,117,67,-0.5389561280608177],[119,117,68,-0.5372505597770214],[119,117,69,-0.5365519747138023],[119,117,70,-0.5367590710520744],[119,117,71,-0.5373488739132881],[119,117,72,-0.5385580025613308],[119,117,73,-0.5402677766978741],[119,117,74,-0.5416910946369171],[119,117,75,-0.5423057191073895],[119,117,76,-0.541828878223896],[119,117,77,-0.5401435866951942],[119,117,78,-0.5372896827757359],[119,117,79,-0.5339196994900703],[119,118,64,-0.5433533973991871],[119,118,65,-0.5427252277731895],[119,118,66,-0.5410686656832695],[119,118,67,-0.5389561280608177],[119,118,68,-0.5372505597770214],[119,118,69,-0.5365519747138023],[119,118,70,-0.5367590710520744],[119,118,71,-0.5373488739132881],[119,118,72,-0.5385580025613308],[119,118,73,-0.5402677766978741],[119,118,74,-0.5416910946369171],[119,118,75,-0.5423057191073895],[119,118,76,-0.541828878223896],[119,118,77,-0.5401435866951942],[119,118,78,-0.5372896827757359],[119,118,79,-0.5339196994900703],[119,119,64,-0.5433533973991871],[119,119,65,-0.5427252277731895],[119,119,66,-0.5410686656832695],[119,119,67,-0.5389561280608177],[119,119,68,-0.5372505597770214],[119,119,69,-0.5365519747138023],[119,119,70,-0.5367590710520744],[119,119,71,-0.5373488739132881],[119,119,72,-0.5385580025613308],[119,119,73,-0.5402677766978741],[119,119,74,-0.5416910946369171],[119,119,75,-0.5423057191073895],[119,119,76,-0.541828878223896],[119,119,77,-0.5401435866951942],[119,119,78,-0.5372896827757359],[119,119,79,-0.5339196994900703],[119,120,64,-0.5433533973991871],[119,120,65,-0.5427252277731895],[119,120,66,-0.5410686656832695],[119,120,67,-0.5389561280608177],[119,120,68,-0.5372505597770214],[119,120,69,-0.5365519747138023],[119,120,70,-0.5367590710520744],[119,120,71,-0.5373488739132881],[119,120,72,-0.5385580025613308],[119,120,73,-0.5402677766978741],[119,120,74,-0.5416910946369171],[119,120,75,-0.5423057191073895],[119,120,76,-0.541828878223896],[119,120,77,-0.5401435866951942],[119,120,78,-0.5372896827757359],[119,120,79,-0.5339196994900703],[119,121,64,-0.5433533973991871],[119,121,65,-0.5427252277731895],[119,121,66,-0.5410686656832695],[119,121,67,-0.5389561280608177],[119,121,68,-0.5372505597770214],[119,121,69,-0.5365519747138023],[119,121,70,-0.5367590710520744],[119,121,71,-0.5373488739132881],[119,121,72,-0.5385580025613308],[119,121,73,-0.5402677766978741],[119,121,74,-0.5416910946369171],[119,121,75,-0.5423057191073895],[119,121,76,-0.541828878223896],[119,121,77,-0.5401435866951942],[119,121,78,-0.5372896827757359],[119,121,79,-0.5339196994900703],[119,122,64,-0.5433533973991871],[119,122,65,-0.5427252277731895],[119,122,66,-0.5410686656832695],[119,122,67,-0.5389561280608177],[119,122,68,-0.5372505597770214],[119,122,69,-0.5365519747138023],[119,122,70,-0.5367590710520744],[119,122,71,-0.5373488739132881],[119,122,72,-0.5385580025613308],[119,122,73,-0.5402677766978741],[119,122,74,-0.5416910946369171],[119,122,75,-0.5423057191073895],[119,122,76,-0.541828878223896],[119,122,77,-0.5401435866951942],[119,122,78,-0.5372896827757359],[119,122,79,-0.5339196994900703],[119,123,64,-0.5433533973991871],[119,123,65,-0.5427252277731895],[119,123,66,-0.5410686656832695],[119,123,67,-0.5389561280608177],[119,123,68,-0.5372505597770214],[119,123,69,-0.5365519747138023],[119,123,70,-0.5367590710520744],[119,123,71,-0.5373488739132881],[119,123,72,-0.5385580025613308],[119,123,73,-0.5402677766978741],[119,123,74,-0.5416910946369171],[119,123,75,-0.5423057191073895],[119,123,76,-0.541828878223896],[119,123,77,-0.5401435866951942],[119,123,78,-0.5372896827757359],[119,123,79,-0.5339196994900703],[119,124,64,-0.5433533973991871],[119,124,65,-0.5427252277731895],[119,124,66,-0.5410686656832695],[119,124,67,-0.5389561280608177],[119,124,68,-0.5372505597770214],[119,124,69,-0.5365519747138023],[119,124,70,-0.5367590710520744],[119,124,71,-0.5373488739132881],[119,124,72,-0.5385580025613308],[119,124,73,-0.5402677766978741],[119,124,74,-0.5416910946369171],[119,124,75,-0.5423057191073895],[119,124,76,-0.541828878223896],[119,124,77,-0.5401435866951942],[119,124,78,-0.5372896827757359],[119,124,79,-0.5339196994900703],[119,125,64,-0.5433533973991871],[119,125,65,-0.5427252277731895],[119,125,66,-0.5410686656832695],[119,125,67,-0.5389561280608177],[119,125,68,-0.5372505597770214],[119,125,69,-0.5365519747138023],[119,125,70,-0.5367590710520744],[119,125,71,-0.5373488739132881],[119,125,72,-0.5385580025613308],[119,125,73,-0.5402677766978741],[119,125,74,-0.5416910946369171],[119,125,75,-0.5423057191073895],[119,125,76,-0.541828878223896],[119,125,77,-0.5401435866951942],[119,125,78,-0.5372896827757359],[119,125,79,-0.5339196994900703],[119,126,64,-0.5433533973991871],[119,126,65,-0.5427252277731895],[119,126,66,-0.5410686656832695],[119,126,67,-0.5389561280608177],[119,126,68,-0.5372505597770214],[119,126,69,-0.5365519747138023],[119,126,70,-0.5367590710520744],[119,126,71,-0.5373488739132881],[119,126,72,-0.5385580025613308],[119,126,73,-0.5402677766978741],[119,126,74,-0.5416910946369171],[119,126,75,-0.5423057191073895],[119,126,76,-0.541828878223896],[119,126,77,-0.5401435866951942],[119,126,78,-0.5372896827757359],[119,126,79,-0.5339196994900703],[119,127,64,-0.5433533973991871],[119,127,65,-0.5427252277731895],[119,127,66,-0.5410686656832695],[119,127,67,-0.5389561280608177],[119,127,68,-0.5372505597770214],[119,127,69,-0.5365519747138023],[119,127,70,-0.5367590710520744],[119,127,71,-0.5373488739132881],[119,127,72,-0.5385580025613308],[119,127,73,-0.5402677766978741],[119,127,74,-0.5416910946369171],[119,127,75,-0.5423057191073895],[119,127,76,-0.541828878223896],[119,127,77,-0.5401435866951942],[119,127,78,-0.5372896827757359],[119,127,79,-0.5339196994900703],[119,128,64,-0.5433533973991871],[119,128,65,-0.5427252277731895],[119,128,66,-0.5410686656832695],[119,128,67,-0.5389561280608177],[119,128,68,-0.5372505597770214],[119,128,69,-0.5365519747138023],[119,128,70,-0.5367590710520744],[119,128,71,-0.5373488739132881],[119,128,72,-0.5385580025613308],[119,128,73,-0.5402677766978741],[119,128,74,-0.5416910946369171],[119,128,75,-0.5423057191073895],[119,128,76,-0.541828878223896],[119,128,77,-0.5401435866951942],[119,128,78,-0.5372896827757359],[119,128,79,-0.5339196994900703],[119,129,64,-0.5433533973991871],[119,129,65,-0.5427252277731895],[119,129,66,-0.5410686656832695],[119,129,67,-0.5389561280608177],[119,129,68,-0.5372505597770214],[119,129,69,-0.5365519747138023],[119,129,70,-0.5367590710520744],[119,129,71,-0.5373488739132881],[119,129,72,-0.5385580025613308],[119,129,73,-0.5402677766978741],[119,129,74,-0.5416910946369171],[119,129,75,-0.5423057191073895],[119,129,76,-0.541828878223896],[119,129,77,-0.5401435866951942],[119,129,78,-0.5372896827757359],[119,129,79,-0.5339196994900703],[119,130,64,-0.5433533973991871],[119,130,65,-0.5427252277731895],[119,130,66,-0.5410686656832695],[119,130,67,-0.5389561280608177],[119,130,68,-0.5372505597770214],[119,130,69,-0.5365519747138023],[119,130,70,-0.5367590710520744],[119,130,71,-0.5373488739132881],[119,130,72,-0.5385580025613308],[119,130,73,-0.5402677766978741],[119,130,74,-0.5416910946369171],[119,130,75,-0.5423057191073895],[119,130,76,-0.541828878223896],[119,130,77,-0.5401435866951942],[119,130,78,-0.5372896827757359],[119,130,79,-0.5339196994900703],[119,131,64,-0.5433533973991871],[119,131,65,-0.5427252277731895],[119,131,66,-0.5410686656832695],[119,131,67,-0.5389561280608177],[119,131,68,-0.5372505597770214],[119,131,69,-0.5365519747138023],[119,131,70,-0.5367590710520744],[119,131,71,-0.5373488739132881],[119,131,72,-0.5385580025613308],[119,131,73,-0.5402677766978741],[119,131,74,-0.5416910946369171],[119,131,75,-0.5423057191073895],[119,131,76,-0.541828878223896],[119,131,77,-0.5401435866951942],[119,131,78,-0.5372896827757359],[119,131,79,-0.5339196994900703],[119,132,64,-0.5433533973991871],[119,132,65,-0.5427252277731895],[119,132,66,-0.5410686656832695],[119,132,67,-0.5389561280608177],[119,132,68,-0.5372505597770214],[119,132,69,-0.5365519747138023],[119,132,70,-0.5367590710520744],[119,132,71,-0.5373488739132881],[119,132,72,-0.5385580025613308],[119,132,73,-0.5402677766978741],[119,132,74,-0.5416910946369171],[119,132,75,-0.5423057191073895],[119,132,76,-0.541828878223896],[119,132,77,-0.5401435866951942],[119,132,78,-0.5372896827757359],[119,132,79,-0.5339196994900703],[119,133,64,-0.5433533973991871],[119,133,65,-0.5427252277731895],[119,133,66,-0.5410686656832695],[119,133,67,-0.5389561280608177],[119,133,68,-0.5372505597770214],[119,133,69,-0.5365519747138023],[119,133,70,-0.5367590710520744],[119,133,71,-0.5373488739132881],[119,133,72,-0.5385580025613308],[119,133,73,-0.5402677766978741],[119,133,74,-0.5416910946369171],[119,133,75,-0.5423057191073895],[119,133,76,-0.541828878223896],[119,133,77,-0.5401435866951942],[119,133,78,-0.5372896827757359],[119,133,79,-0.5339196994900703],[119,134,64,-0.5433533973991871],[119,134,65,-0.5427252277731895],[119,134,66,-0.5410686656832695],[119,134,67,-0.5389561280608177],[119,134,68,-0.5372505597770214],[119,134,69,-0.5365519747138023],[119,134,70,-0.5367590710520744],[119,134,71,-0.5373488739132881],[119,134,72,-0.5385580025613308],[119,134,73,-0.5402677766978741],[119,134,74,-0.5416910946369171],[119,134,75,-0.5423057191073895],[119,134,76,-0.541828878223896],[119,134,77,-0.5401435866951942],[119,134,78,-0.5372896827757359],[119,134,79,-0.5339196994900703],[119,135,64,-0.5433533973991871],[119,135,65,-0.5427252277731895],[119,135,66,-0.5410686656832695],[119,135,67,-0.5389561280608177],[119,135,68,-0.5372505597770214],[119,135,69,-0.5365519747138023],[119,135,70,-0.5367590710520744],[119,135,71,-0.5373488739132881],[119,135,72,-0.5385580025613308],[119,135,73,-0.5402677766978741],[119,135,74,-0.5416910946369171],[119,135,75,-0.5423057191073895],[119,135,76,-0.541828878223896],[119,135,77,-0.5401435866951942],[119,135,78,-0.5372896827757359],[119,135,79,-0.5339196994900703],[119,136,64,-0.5433533973991871],[119,136,65,-0.5427252277731895],[119,136,66,-0.5410686656832695],[119,136,67,-0.5389561280608177],[119,136,68,-0.5372505597770214],[119,136,69,-0.5365519747138023],[119,136,70,-0.5367590710520744],[119,136,71,-0.5373488739132881],[119,136,72,-0.5385580025613308],[119,136,73,-0.5402677766978741],[119,136,74,-0.5416910946369171],[119,136,75,-0.5423057191073895],[119,136,76,-0.541828878223896],[119,136,77,-0.5401435866951942],[119,136,78,-0.5372896827757359],[119,136,79,-0.5339196994900703],[119,137,64,-0.5433533973991871],[119,137,65,-0.5427252277731895],[119,137,66,-0.5410686656832695],[119,137,67,-0.5389561280608177],[119,137,68,-0.5372505597770214],[119,137,69,-0.5365519747138023],[119,137,70,-0.5367590710520744],[119,137,71,-0.5373488739132881],[119,137,72,-0.5385580025613308],[119,137,73,-0.5402677766978741],[119,137,74,-0.5416910946369171],[119,137,75,-0.5423057191073895],[119,137,76,-0.541828878223896],[119,137,77,-0.5401435866951942],[119,137,78,-0.5372896827757359],[119,137,79,-0.5339196994900703],[119,138,64,-0.5433533973991871],[119,138,65,-0.5427252277731895],[119,138,66,-0.5410686656832695],[119,138,67,-0.5389561280608177],[119,138,68,-0.5372505597770214],[119,138,69,-0.5365519747138023],[119,138,70,-0.5367590710520744],[119,138,71,-0.5373488739132881],[119,138,72,-0.5385580025613308],[119,138,73,-0.5402677766978741],[119,138,74,-0.5416910946369171],[119,138,75,-0.5423057191073895],[119,138,76,-0.541828878223896],[119,138,77,-0.5401435866951942],[119,138,78,-0.5372896827757359],[119,138,79,-0.5339196994900703],[119,139,64,-0.5433533973991871],[119,139,65,-0.5427252277731895],[119,139,66,-0.5410686656832695],[119,139,67,-0.5389561280608177],[119,139,68,-0.5372505597770214],[119,139,69,-0.5365519747138023],[119,139,70,-0.5367590710520744],[119,139,71,-0.5373488739132881],[119,139,72,-0.5385580025613308],[119,139,73,-0.5402677766978741],[119,139,74,-0.5416910946369171],[119,139,75,-0.5423057191073895],[119,139,76,-0.541828878223896],[119,139,77,-0.5401435866951942],[119,139,78,-0.5372896827757359],[119,139,79,-0.5339196994900703],[119,140,64,-0.5433533973991871],[119,140,65,-0.5427252277731895],[119,140,66,-0.5410686656832695],[119,140,67,-0.5389561280608177],[119,140,68,-0.5372505597770214],[119,140,69,-0.5365519747138023],[119,140,70,-0.5367590710520744],[119,140,71,-0.5373488739132881],[119,140,72,-0.5385580025613308],[119,140,73,-0.5402677766978741],[119,140,74,-0.5416910946369171],[119,140,75,-0.5423057191073895],[119,140,76,-0.541828878223896],[119,140,77,-0.5401435866951942],[119,140,78,-0.5372896827757359],[119,140,79,-0.5339196994900703],[119,141,64,-0.5433533973991871],[119,141,65,-0.5427252277731895],[119,141,66,-0.5410686656832695],[119,141,67,-0.5389561280608177],[119,141,68,-0.5372505597770214],[119,141,69,-0.5365519747138023],[119,141,70,-0.5367590710520744],[119,141,71,-0.5373488739132881],[119,141,72,-0.5385580025613308],[119,141,73,-0.5402677766978741],[119,141,74,-0.5416910946369171],[119,141,75,-0.5423057191073895],[119,141,76,-0.541828878223896],[119,141,77,-0.5401435866951942],[119,141,78,-0.5372896827757359],[119,141,79,-0.5339196994900703],[119,142,64,-0.5433533973991871],[119,142,65,-0.5427252277731895],[119,142,66,-0.5410686656832695],[119,142,67,-0.5389561280608177],[119,142,68,-0.5372505597770214],[119,142,69,-0.5365519747138023],[119,142,70,-0.5367590710520744],[119,142,71,-0.5373488739132881],[119,142,72,-0.5385580025613308],[119,142,73,-0.5402677766978741],[119,142,74,-0.5416910946369171],[119,142,75,-0.5423057191073895],[119,142,76,-0.541828878223896],[119,142,77,-0.5401435866951942],[119,142,78,-0.5372896827757359],[119,142,79,-0.5339196994900703],[119,143,64,-0.5433533973991871],[119,143,65,-0.5427252277731895],[119,143,66,-0.5410686656832695],[119,143,67,-0.5389561280608177],[119,143,68,-0.5372505597770214],[119,143,69,-0.5365519747138023],[119,143,70,-0.5367590710520744],[119,143,71,-0.5373488739132881],[119,143,72,-0.5385580025613308],[119,143,73,-0.5402677766978741],[119,143,74,-0.5416910946369171],[119,143,75,-0.5423057191073895],[119,143,76,-0.541828878223896],[119,143,77,-0.5401435866951942],[119,143,78,-0.5372896827757359],[119,143,79,-0.5339196994900703],[119,144,64,-0.5433533973991871],[119,144,65,-0.5427252277731895],[119,144,66,-0.5410686656832695],[119,144,67,-0.5389561280608177],[119,144,68,-0.5372505597770214],[119,144,69,-0.5365519747138023],[119,144,70,-0.5367590710520744],[119,144,71,-0.5373488739132881],[119,144,72,-0.5385580025613308],[119,144,73,-0.5402677766978741],[119,144,74,-0.5416910946369171],[119,144,75,-0.5423057191073895],[119,144,76,-0.541828878223896],[119,144,77,-0.5401435866951942],[119,144,78,-0.5372896827757359],[119,144,79,-0.5339196994900703],[119,145,64,-0.5433533973991871],[119,145,65,-0.5427252277731895],[119,145,66,-0.5410686656832695],[119,145,67,-0.5389561280608177],[119,145,68,-0.5372505597770214],[119,145,69,-0.5365519747138023],[119,145,70,-0.5367590710520744],[119,145,71,-0.5373488739132881],[119,145,72,-0.5385580025613308],[119,145,73,-0.5402677766978741],[119,145,74,-0.5416910946369171],[119,145,75,-0.5423057191073895],[119,145,76,-0.541828878223896],[119,145,77,-0.5401435866951942],[119,145,78,-0.5372896827757359],[119,145,79,-0.5339196994900703],[119,146,64,-0.5433533973991871],[119,146,65,-0.5427252277731895],[119,146,66,-0.5410686656832695],[119,146,67,-0.5389561280608177],[119,146,68,-0.5372505597770214],[119,146,69,-0.5365519747138023],[119,146,70,-0.5367590710520744],[119,146,71,-0.5373488739132881],[119,146,72,-0.5385580025613308],[119,146,73,-0.5402677766978741],[119,146,74,-0.5416910946369171],[119,146,75,-0.5423057191073895],[119,146,76,-0.541828878223896],[119,146,77,-0.5401435866951942],[119,146,78,-0.5372896827757359],[119,146,79,-0.5339196994900703],[119,147,64,-0.5433533973991871],[119,147,65,-0.5427252277731895],[119,147,66,-0.5410686656832695],[119,147,67,-0.5389561280608177],[119,147,68,-0.5372505597770214],[119,147,69,-0.5365519747138023],[119,147,70,-0.5367590710520744],[119,147,71,-0.5373488739132881],[119,147,72,-0.5385580025613308],[119,147,73,-0.5402677766978741],[119,147,74,-0.5416910946369171],[119,147,75,-0.5423057191073895],[119,147,76,-0.541828878223896],[119,147,77,-0.5401435866951942],[119,147,78,-0.5372896827757359],[119,147,79,-0.5339196994900703],[119,148,64,-0.5433533973991871],[119,148,65,-0.5427252277731895],[119,148,66,-0.5410686656832695],[119,148,67,-0.5389561280608177],[119,148,68,-0.5372505597770214],[119,148,69,-0.5365519747138023],[119,148,70,-0.5367590710520744],[119,148,71,-0.5373488739132881],[119,148,72,-0.5385580025613308],[119,148,73,-0.5402677766978741],[119,148,74,-0.5416910946369171],[119,148,75,-0.5423057191073895],[119,148,76,-0.541828878223896],[119,148,77,-0.5401435866951942],[119,148,78,-0.5372896827757359],[119,148,79,-0.5339196994900703],[119,149,64,-0.5433533973991871],[119,149,65,-0.5427252277731895],[119,149,66,-0.5410686656832695],[119,149,67,-0.5389561280608177],[119,149,68,-0.5372505597770214],[119,149,69,-0.5365519747138023],[119,149,70,-0.5367590710520744],[119,149,71,-0.5373488739132881],[119,149,72,-0.5385580025613308],[119,149,73,-0.5402677766978741],[119,149,74,-0.5416910946369171],[119,149,75,-0.5423057191073895],[119,149,76,-0.541828878223896],[119,149,77,-0.5401435866951942],[119,149,78,-0.5372896827757359],[119,149,79,-0.5339196994900703],[119,150,64,-0.5433533973991871],[119,150,65,-0.5427252277731895],[119,150,66,-0.5410686656832695],[119,150,67,-0.5389561280608177],[119,150,68,-0.5372505597770214],[119,150,69,-0.5365519747138023],[119,150,70,-0.5367590710520744],[119,150,71,-0.5373488739132881],[119,150,72,-0.5385580025613308],[119,150,73,-0.5402677766978741],[119,150,74,-0.5416910946369171],[119,150,75,-0.5423057191073895],[119,150,76,-0.541828878223896],[119,150,77,-0.5401435866951942],[119,150,78,-0.5372896827757359],[119,150,79,-0.5339196994900703],[119,151,64,-0.5433533973991871],[119,151,65,-0.5427252277731895],[119,151,66,-0.5410686656832695],[119,151,67,-0.5389561280608177],[119,151,68,-0.5372505597770214],[119,151,69,-0.5365519747138023],[119,151,70,-0.5367590710520744],[119,151,71,-0.5373488739132881],[119,151,72,-0.5385580025613308],[119,151,73,-0.5402677766978741],[119,151,74,-0.5416910946369171],[119,151,75,-0.5423057191073895],[119,151,76,-0.541828878223896],[119,151,77,-0.5401435866951942],[119,151,78,-0.5372896827757359],[119,151,79,-0.5339196994900703],[119,152,64,-0.5433533973991871],[119,152,65,-0.5427252277731895],[119,152,66,-0.5410686656832695],[119,152,67,-0.5389561280608177],[119,152,68,-0.5372505597770214],[119,152,69,-0.5365519747138023],[119,152,70,-0.5367590710520744],[119,152,71,-0.5373488739132881],[119,152,72,-0.5385580025613308],[119,152,73,-0.5402677766978741],[119,152,74,-0.5416910946369171],[119,152,75,-0.5423057191073895],[119,152,76,-0.541828878223896],[119,152,77,-0.5401435866951942],[119,152,78,-0.5372896827757359],[119,152,79,-0.5339196994900703],[119,153,64,-0.5433533973991871],[119,153,65,-0.5427252277731895],[119,153,66,-0.5410686656832695],[119,153,67,-0.5389561280608177],[119,153,68,-0.5372505597770214],[119,153,69,-0.5365519747138023],[119,153,70,-0.5367590710520744],[119,153,71,-0.5373488739132881],[119,153,72,-0.5385580025613308],[119,153,73,-0.5402677766978741],[119,153,74,-0.5416910946369171],[119,153,75,-0.5423057191073895],[119,153,76,-0.541828878223896],[119,153,77,-0.5401435866951942],[119,153,78,-0.5372896827757359],[119,153,79,-0.5339196994900703],[119,154,64,-0.5433533973991871],[119,154,65,-0.5427252277731895],[119,154,66,-0.5410686656832695],[119,154,67,-0.5389561280608177],[119,154,68,-0.5372505597770214],[119,154,69,-0.5365519747138023],[119,154,70,-0.5367590710520744],[119,154,71,-0.5373488739132881],[119,154,72,-0.5385580025613308],[119,154,73,-0.5402677766978741],[119,154,74,-0.5416910946369171],[119,154,75,-0.5423057191073895],[119,154,76,-0.541828878223896],[119,154,77,-0.5401435866951942],[119,154,78,-0.5372896827757359],[119,154,79,-0.5339196994900703],[119,155,64,-0.5433533973991871],[119,155,65,-0.5427252277731895],[119,155,66,-0.5410686656832695],[119,155,67,-0.5389561280608177],[119,155,68,-0.5372505597770214],[119,155,69,-0.5365519747138023],[119,155,70,-0.5367590710520744],[119,155,71,-0.5373488739132881],[119,155,72,-0.5385580025613308],[119,155,73,-0.5402677766978741],[119,155,74,-0.5416910946369171],[119,155,75,-0.5423057191073895],[119,155,76,-0.541828878223896],[119,155,77,-0.5401435866951942],[119,155,78,-0.5372896827757359],[119,155,79,-0.5339196994900703],[119,156,64,-0.5433533973991871],[119,156,65,-0.5427252277731895],[119,156,66,-0.5410686656832695],[119,156,67,-0.5389561280608177],[119,156,68,-0.5372505597770214],[119,156,69,-0.5365519747138023],[119,156,70,-0.5367590710520744],[119,156,71,-0.5373488739132881],[119,156,72,-0.5385580025613308],[119,156,73,-0.5402677766978741],[119,156,74,-0.5416910946369171],[119,156,75,-0.5423057191073895],[119,156,76,-0.541828878223896],[119,156,77,-0.5401435866951942],[119,156,78,-0.5372896827757359],[119,156,79,-0.5339196994900703],[119,157,64,-0.5433533973991871],[119,157,65,-0.5427252277731895],[119,157,66,-0.5410686656832695],[119,157,67,-0.5389561280608177],[119,157,68,-0.5372505597770214],[119,157,69,-0.5365519747138023],[119,157,70,-0.5367590710520744],[119,157,71,-0.5373488739132881],[119,157,72,-0.5385580025613308],[119,157,73,-0.5402677766978741],[119,157,74,-0.5416910946369171],[119,157,75,-0.5423057191073895],[119,157,76,-0.541828878223896],[119,157,77,-0.5401435866951942],[119,157,78,-0.5372896827757359],[119,157,79,-0.5339196994900703],[119,158,64,-0.5433533973991871],[119,158,65,-0.5427252277731895],[119,158,66,-0.5410686656832695],[119,158,67,-0.5389561280608177],[119,158,68,-0.5372505597770214],[119,158,69,-0.5365519747138023],[119,158,70,-0.5367590710520744],[119,158,71,-0.5373488739132881],[119,158,72,-0.5385580025613308],[119,158,73,-0.5402677766978741],[119,158,74,-0.5416910946369171],[119,158,75,-0.5423057191073895],[119,158,76,-0.541828878223896],[119,158,77,-0.5401435866951942],[119,158,78,-0.5372896827757359],[119,158,79,-0.5339196994900703],[119,159,64,-0.5433533973991871],[119,159,65,-0.5427252277731895],[119,159,66,-0.5410686656832695],[119,159,67,-0.5389561280608177],[119,159,68,-0.5372505597770214],[119,159,69,-0.5365519747138023],[119,159,70,-0.5367590710520744],[119,159,71,-0.5373488739132881],[119,159,72,-0.5385580025613308],[119,159,73,-0.5402677766978741],[119,159,74,-0.5416910946369171],[119,159,75,-0.5423057191073895],[119,159,76,-0.541828878223896],[119,159,77,-0.5401435866951942],[119,159,78,-0.5372896827757359],[119,159,79,-0.5339196994900703],[119,160,64,-0.5433533973991871],[119,160,65,-0.5427252277731895],[119,160,66,-0.5410686656832695],[119,160,67,-0.5389561280608177],[119,160,68,-0.5372505597770214],[119,160,69,-0.5365519747138023],[119,160,70,-0.5367590710520744],[119,160,71,-0.5373488739132881],[119,160,72,-0.5385580025613308],[119,160,73,-0.5402677766978741],[119,160,74,-0.5416910946369171],[119,160,75,-0.5423057191073895],[119,160,76,-0.541828878223896],[119,160,77,-0.5401435866951942],[119,160,78,-0.5372896827757359],[119,160,79,-0.5339196994900703],[119,161,64,-0.5433533973991871],[119,161,65,-0.5427252277731895],[119,161,66,-0.5410686656832695],[119,161,67,-0.5389561280608177],[119,161,68,-0.5372505597770214],[119,161,69,-0.5365519747138023],[119,161,70,-0.5367590710520744],[119,161,71,-0.5373488739132881],[119,161,72,-0.5385580025613308],[119,161,73,-0.5402677766978741],[119,161,74,-0.5416910946369171],[119,161,75,-0.5423057191073895],[119,161,76,-0.541828878223896],[119,161,77,-0.5401435866951942],[119,161,78,-0.5372896827757359],[119,161,79,-0.5339196994900703],[119,162,64,-0.5433533973991871],[119,162,65,-0.5427252277731895],[119,162,66,-0.5410686656832695],[119,162,67,-0.5389561280608177],[119,162,68,-0.5372505597770214],[119,162,69,-0.5365519747138023],[119,162,70,-0.5367590710520744],[119,162,71,-0.5373488739132881],[119,162,72,-0.5385580025613308],[119,162,73,-0.5402677766978741],[119,162,74,-0.5416910946369171],[119,162,75,-0.5423057191073895],[119,162,76,-0.541828878223896],[119,162,77,-0.5401435866951942],[119,162,78,-0.5372896827757359],[119,162,79,-0.5339196994900703],[119,163,64,-0.5433533973991871],[119,163,65,-0.5427252277731895],[119,163,66,-0.5410686656832695],[119,163,67,-0.5389561280608177],[119,163,68,-0.5372505597770214],[119,163,69,-0.5365519747138023],[119,163,70,-0.5367590710520744],[119,163,71,-0.5373488739132881],[119,163,72,-0.5385580025613308],[119,163,73,-0.5402677766978741],[119,163,74,-0.5416910946369171],[119,163,75,-0.5423057191073895],[119,163,76,-0.541828878223896],[119,163,77,-0.5401435866951942],[119,163,78,-0.5372896827757359],[119,163,79,-0.5339196994900703],[119,164,64,-0.5433533973991871],[119,164,65,-0.5427252277731895],[119,164,66,-0.5410686656832695],[119,164,67,-0.5389561280608177],[119,164,68,-0.5372505597770214],[119,164,69,-0.5365519747138023],[119,164,70,-0.5367590710520744],[119,164,71,-0.5373488739132881],[119,164,72,-0.5385580025613308],[119,164,73,-0.5402677766978741],[119,164,74,-0.5416910946369171],[119,164,75,-0.5423057191073895],[119,164,76,-0.541828878223896],[119,164,77,-0.5401435866951942],[119,164,78,-0.5372896827757359],[119,164,79,-0.5339196994900703],[119,165,64,-0.5433533973991871],[119,165,65,-0.5427252277731895],[119,165,66,-0.5410686656832695],[119,165,67,-0.5389561280608177],[119,165,68,-0.5372505597770214],[119,165,69,-0.5365519747138023],[119,165,70,-0.5367590710520744],[119,165,71,-0.5373488739132881],[119,165,72,-0.5385580025613308],[119,165,73,-0.5402677766978741],[119,165,74,-0.5416910946369171],[119,165,75,-0.5423057191073895],[119,165,76,-0.541828878223896],[119,165,77,-0.5401435866951942],[119,165,78,-0.5372896827757359],[119,165,79,-0.5339196994900703],[119,166,64,-0.5433533973991871],[119,166,65,-0.5427252277731895],[119,166,66,-0.5410686656832695],[119,166,67,-0.5389561280608177],[119,166,68,-0.5372505597770214],[119,166,69,-0.5365519747138023],[119,166,70,-0.5367590710520744],[119,166,71,-0.5373488739132881],[119,166,72,-0.5385580025613308],[119,166,73,-0.5402677766978741],[119,166,74,-0.5416910946369171],[119,166,75,-0.5423057191073895],[119,166,76,-0.541828878223896],[119,166,77,-0.5401435866951942],[119,166,78,-0.5372896827757359],[119,166,79,-0.5339196994900703],[119,167,64,-0.5433533973991871],[119,167,65,-0.5427252277731895],[119,167,66,-0.5410686656832695],[119,167,67,-0.5389561280608177],[119,167,68,-0.5372505597770214],[119,167,69,-0.5365519747138023],[119,167,70,-0.5367590710520744],[119,167,71,-0.5373488739132881],[119,167,72,-0.5385580025613308],[119,167,73,-0.5402677766978741],[119,167,74,-0.5416910946369171],[119,167,75,-0.5423057191073895],[119,167,76,-0.541828878223896],[119,167,77,-0.5401435866951942],[119,167,78,-0.5372896827757359],[119,167,79,-0.5339196994900703],[119,168,64,-0.5433533973991871],[119,168,65,-0.5427252277731895],[119,168,66,-0.5410686656832695],[119,168,67,-0.5389561280608177],[119,168,68,-0.5372505597770214],[119,168,69,-0.5365519747138023],[119,168,70,-0.5367590710520744],[119,168,71,-0.5373488739132881],[119,168,72,-0.5385580025613308],[119,168,73,-0.5402677766978741],[119,168,74,-0.5416910946369171],[119,168,75,-0.5423057191073895],[119,168,76,-0.541828878223896],[119,168,77,-0.5401435866951942],[119,168,78,-0.5372896827757359],[119,168,79,-0.5339196994900703],[119,169,64,-0.5433533973991871],[119,169,65,-0.5427252277731895],[119,169,66,-0.5410686656832695],[119,169,67,-0.5389561280608177],[119,169,68,-0.5372505597770214],[119,169,69,-0.5365519747138023],[119,169,70,-0.5367590710520744],[119,169,71,-0.5373488739132881],[119,169,72,-0.5385580025613308],[119,169,73,-0.5402677766978741],[119,169,74,-0.5416910946369171],[119,169,75,-0.5423057191073895],[119,169,76,-0.541828878223896],[119,169,77,-0.5401435866951942],[119,169,78,-0.5372896827757359],[119,169,79,-0.5339196994900703],[119,170,64,-0.5433533973991871],[119,170,65,-0.5427252277731895],[119,170,66,-0.5410686656832695],[119,170,67,-0.5389561280608177],[119,170,68,-0.5372505597770214],[119,170,69,-0.5365519747138023],[119,170,70,-0.5367590710520744],[119,170,71,-0.5373488739132881],[119,170,72,-0.5385580025613308],[119,170,73,-0.5402677766978741],[119,170,74,-0.5416910946369171],[119,170,75,-0.5423057191073895],[119,170,76,-0.541828878223896],[119,170,77,-0.5401435866951942],[119,170,78,-0.5372896827757359],[119,170,79,-0.5339196994900703],[119,171,64,-0.5433533973991871],[119,171,65,-0.5427252277731895],[119,171,66,-0.5410686656832695],[119,171,67,-0.5389561280608177],[119,171,68,-0.5372505597770214],[119,171,69,-0.5365519747138023],[119,171,70,-0.5367590710520744],[119,171,71,-0.5373488739132881],[119,171,72,-0.5385580025613308],[119,171,73,-0.5402677766978741],[119,171,74,-0.5416910946369171],[119,171,75,-0.5423057191073895],[119,171,76,-0.541828878223896],[119,171,77,-0.5401435866951942],[119,171,78,-0.5372896827757359],[119,171,79,-0.5339196994900703],[119,172,64,-0.5433533973991871],[119,172,65,-0.5427252277731895],[119,172,66,-0.5410686656832695],[119,172,67,-0.5389561280608177],[119,172,68,-0.5372505597770214],[119,172,69,-0.5365519747138023],[119,172,70,-0.5367590710520744],[119,172,71,-0.5373488739132881],[119,172,72,-0.5385580025613308],[119,172,73,-0.5402677766978741],[119,172,74,-0.5416910946369171],[119,172,75,-0.5423057191073895],[119,172,76,-0.541828878223896],[119,172,77,-0.5401435866951942],[119,172,78,-0.5372896827757359],[119,172,79,-0.5339196994900703],[119,173,64,-0.5433533973991871],[119,173,65,-0.5427252277731895],[119,173,66,-0.5410686656832695],[119,173,67,-0.5389561280608177],[119,173,68,-0.5372505597770214],[119,173,69,-0.5365519747138023],[119,173,70,-0.5367590710520744],[119,173,71,-0.5373488739132881],[119,173,72,-0.5385580025613308],[119,173,73,-0.5402677766978741],[119,173,74,-0.5416910946369171],[119,173,75,-0.5423057191073895],[119,173,76,-0.541828878223896],[119,173,77,-0.5401435866951942],[119,173,78,-0.5372896827757359],[119,173,79,-0.5339196994900703],[119,174,64,-0.5433533973991871],[119,174,65,-0.5427252277731895],[119,174,66,-0.5410686656832695],[119,174,67,-0.5389561280608177],[119,174,68,-0.5372505597770214],[119,174,69,-0.5365519747138023],[119,174,70,-0.5367590710520744],[119,174,71,-0.5373488739132881],[119,174,72,-0.5385580025613308],[119,174,73,-0.5402677766978741],[119,174,74,-0.5416910946369171],[119,174,75,-0.5423057191073895],[119,174,76,-0.541828878223896],[119,174,77,-0.5401435866951942],[119,174,78,-0.5372896827757359],[119,174,79,-0.5339196994900703],[119,175,64,-0.5433533973991871],[119,175,65,-0.5427252277731895],[119,175,66,-0.5410686656832695],[119,175,67,-0.5389561280608177],[119,175,68,-0.5372505597770214],[119,175,69,-0.5365519747138023],[119,175,70,-0.5367590710520744],[119,175,71,-0.5373488739132881],[119,175,72,-0.5385580025613308],[119,175,73,-0.5402677766978741],[119,175,74,-0.5416910946369171],[119,175,75,-0.5423057191073895],[119,175,76,-0.541828878223896],[119,175,77,-0.5401435866951942],[119,175,78,-0.5372896827757359],[119,175,79,-0.5339196994900703],[119,176,64,-0.5433533973991871],[119,176,65,-0.5427252277731895],[119,176,66,-0.5410686656832695],[119,176,67,-0.5389561280608177],[119,176,68,-0.5372505597770214],[119,176,69,-0.5365519747138023],[119,176,70,-0.5367590710520744],[119,176,71,-0.5373488739132881],[119,176,72,-0.5385580025613308],[119,176,73,-0.5402677766978741],[119,176,74,-0.5416910946369171],[119,176,75,-0.5423057191073895],[119,176,76,-0.541828878223896],[119,176,77,-0.5401435866951942],[119,176,78,-0.5372896827757359],[119,176,79,-0.5339196994900703],[119,177,64,-0.5433533973991871],[119,177,65,-0.5427252277731895],[119,177,66,-0.5410686656832695],[119,177,67,-0.5389561280608177],[119,177,68,-0.5372505597770214],[119,177,69,-0.5365519747138023],[119,177,70,-0.5367590710520744],[119,177,71,-0.5373488739132881],[119,177,72,-0.5385580025613308],[119,177,73,-0.5402677766978741],[119,177,74,-0.5416910946369171],[119,177,75,-0.5423057191073895],[119,177,76,-0.541828878223896],[119,177,77,-0.5401435866951942],[119,177,78,-0.5372896827757359],[119,177,79,-0.5339196994900703],[119,178,64,-0.5433533973991871],[119,178,65,-0.5427252277731895],[119,178,66,-0.5410686656832695],[119,178,67,-0.5389561280608177],[119,178,68,-0.5372505597770214],[119,178,69,-0.5365519747138023],[119,178,70,-0.5367590710520744],[119,178,71,-0.5373488739132881],[119,178,72,-0.5385580025613308],[119,178,73,-0.5402677766978741],[119,178,74,-0.5416910946369171],[119,178,75,-0.5423057191073895],[119,178,76,-0.541828878223896],[119,178,77,-0.5401435866951942],[119,178,78,-0.5372896827757359],[119,178,79,-0.5339196994900703],[119,179,64,-0.5433533973991871],[119,179,65,-0.5427252277731895],[119,179,66,-0.5410686656832695],[119,179,67,-0.5389561280608177],[119,179,68,-0.5372505597770214],[119,179,69,-0.5365519747138023],[119,179,70,-0.5367590710520744],[119,179,71,-0.5373488739132881],[119,179,72,-0.5385580025613308],[119,179,73,-0.5402677766978741],[119,179,74,-0.5416910946369171],[119,179,75,-0.5423057191073895],[119,179,76,-0.541828878223896],[119,179,77,-0.5401435866951942],[119,179,78,-0.5372896827757359],[119,179,79,-0.5339196994900703],[119,180,64,-0.5433533973991871],[119,180,65,-0.5427252277731895],[119,180,66,-0.5410686656832695],[119,180,67,-0.5389561280608177],[119,180,68,-0.5372505597770214],[119,180,69,-0.5365519747138023],[119,180,70,-0.5367590710520744],[119,180,71,-0.5373488739132881],[119,180,72,-0.5385580025613308],[119,180,73,-0.5402677766978741],[119,180,74,-0.5416910946369171],[119,180,75,-0.5423057191073895],[119,180,76,-0.541828878223896],[119,180,77,-0.5401435866951942],[119,180,78,-0.5372896827757359],[119,180,79,-0.5339196994900703],[119,181,64,-0.5433533973991871],[119,181,65,-0.5427252277731895],[119,181,66,-0.5410686656832695],[119,181,67,-0.5389561280608177],[119,181,68,-0.5372505597770214],[119,181,69,-0.5365519747138023],[119,181,70,-0.5367590710520744],[119,181,71,-0.5373488739132881],[119,181,72,-0.5385580025613308],[119,181,73,-0.5402677766978741],[119,181,74,-0.5416910946369171],[119,181,75,-0.5423057191073895],[119,181,76,-0.541828878223896],[119,181,77,-0.5401435866951942],[119,181,78,-0.5372896827757359],[119,181,79,-0.5339196994900703],[119,182,64,-0.5433533973991871],[119,182,65,-0.5427252277731895],[119,182,66,-0.5410686656832695],[119,182,67,-0.5389561280608177],[119,182,68,-0.5372505597770214],[119,182,69,-0.5365519747138023],[119,182,70,-0.5367590710520744],[119,182,71,-0.5373488739132881],[119,182,72,-0.5385580025613308],[119,182,73,-0.5402677766978741],[119,182,74,-0.5416910946369171],[119,182,75,-0.5423057191073895],[119,182,76,-0.541828878223896],[119,182,77,-0.5401435866951942],[119,182,78,-0.5372896827757359],[119,182,79,-0.5339196994900703],[119,183,64,-0.5433533973991871],[119,183,65,-0.5427252277731895],[119,183,66,-0.5410686656832695],[119,183,67,-0.5389561280608177],[119,183,68,-0.5372505597770214],[119,183,69,-0.5365519747138023],[119,183,70,-0.5367590710520744],[119,183,71,-0.5373488739132881],[119,183,72,-0.5385580025613308],[119,183,73,-0.5402677766978741],[119,183,74,-0.5416910946369171],[119,183,75,-0.5423057191073895],[119,183,76,-0.541828878223896],[119,183,77,-0.5401435866951942],[119,183,78,-0.5372896827757359],[119,183,79,-0.5339196994900703],[119,184,64,-0.5433533973991871],[119,184,65,-0.5427252277731895],[119,184,66,-0.5410686656832695],[119,184,67,-0.5389561280608177],[119,184,68,-0.5372505597770214],[119,184,69,-0.5365519747138023],[119,184,70,-0.5367590710520744],[119,184,71,-0.5373488739132881],[119,184,72,-0.5385580025613308],[119,184,73,-0.5402677766978741],[119,184,74,-0.5416910946369171],[119,184,75,-0.5423057191073895],[119,184,76,-0.541828878223896],[119,184,77,-0.5401435866951942],[119,184,78,-0.5372896827757359],[119,184,79,-0.5339196994900703],[119,185,64,-0.5433533973991871],[119,185,65,-0.5427252277731895],[119,185,66,-0.5410686656832695],[119,185,67,-0.5389561280608177],[119,185,68,-0.5372505597770214],[119,185,69,-0.5365519747138023],[119,185,70,-0.5367590710520744],[119,185,71,-0.5373488739132881],[119,185,72,-0.5385580025613308],[119,185,73,-0.5402677766978741],[119,185,74,-0.5416910946369171],[119,185,75,-0.5423057191073895],[119,185,76,-0.541828878223896],[119,185,77,-0.5401435866951942],[119,185,78,-0.5372896827757359],[119,185,79,-0.5339196994900703],[119,186,64,-0.5433533973991871],[119,186,65,-0.5427252277731895],[119,186,66,-0.5410686656832695],[119,186,67,-0.5389561280608177],[119,186,68,-0.5372505597770214],[119,186,69,-0.5365519747138023],[119,186,70,-0.5367590710520744],[119,186,71,-0.5373488739132881],[119,186,72,-0.5385580025613308],[119,186,73,-0.5402677766978741],[119,186,74,-0.5416910946369171],[119,186,75,-0.5423057191073895],[119,186,76,-0.541828878223896],[119,186,77,-0.5401435866951942],[119,186,78,-0.5372896827757359],[119,186,79,-0.5339196994900703],[119,187,64,-0.5433533973991871],[119,187,65,-0.5427252277731895],[119,187,66,-0.5410686656832695],[119,187,67,-0.5389561280608177],[119,187,68,-0.5372505597770214],[119,187,69,-0.5365519747138023],[119,187,70,-0.5367590710520744],[119,187,71,-0.5373488739132881],[119,187,72,-0.5385580025613308],[119,187,73,-0.5402677766978741],[119,187,74,-0.5416910946369171],[119,187,75,-0.5423057191073895],[119,187,76,-0.541828878223896],[119,187,77,-0.5401435866951942],[119,187,78,-0.5372896827757359],[119,187,79,-0.5339196994900703],[119,188,64,-0.5433533973991871],[119,188,65,-0.5427252277731895],[119,188,66,-0.5410686656832695],[119,188,67,-0.5389561280608177],[119,188,68,-0.5372505597770214],[119,188,69,-0.5365519747138023],[119,188,70,-0.5367590710520744],[119,188,71,-0.5373488739132881],[119,188,72,-0.5385580025613308],[119,188,73,-0.5402677766978741],[119,188,74,-0.5416910946369171],[119,188,75,-0.5423057191073895],[119,188,76,-0.541828878223896],[119,188,77,-0.5401435866951942],[119,188,78,-0.5372896827757359],[119,188,79,-0.5339196994900703],[119,189,64,-0.5433533973991871],[119,189,65,-0.5427252277731895],[119,189,66,-0.5410686656832695],[119,189,67,-0.5389561280608177],[119,189,68,-0.5372505597770214],[119,189,69,-0.5365519747138023],[119,189,70,-0.5367590710520744],[119,189,71,-0.5373488739132881],[119,189,72,-0.5385580025613308],[119,189,73,-0.5402677766978741],[119,189,74,-0.5416910946369171],[119,189,75,-0.5423057191073895],[119,189,76,-0.541828878223896],[119,189,77,-0.5401435866951942],[119,189,78,-0.5372896827757359],[119,189,79,-0.5339196994900703],[119,190,64,-0.5433533973991871],[119,190,65,-0.5427252277731895],[119,190,66,-0.5410686656832695],[119,190,67,-0.5389561280608177],[119,190,68,-0.5372505597770214],[119,190,69,-0.5365519747138023],[119,190,70,-0.5367590710520744],[119,190,71,-0.5373488739132881],[119,190,72,-0.5385580025613308],[119,190,73,-0.5402677766978741],[119,190,74,-0.5416910946369171],[119,190,75,-0.5423057191073895],[119,190,76,-0.541828878223896],[119,190,77,-0.5401435866951942],[119,190,78,-0.5372896827757359],[119,190,79,-0.5339196994900703],[119,191,64,-0.5433533973991871],[119,191,65,-0.5427252277731895],[119,191,66,-0.5410686656832695],[119,191,67,-0.5389561280608177],[119,191,68,-0.5372505597770214],[119,191,69,-0.5365519747138023],[119,191,70,-0.5367590710520744],[119,191,71,-0.5373488739132881],[119,191,72,-0.5385580025613308],[119,191,73,-0.5402677766978741],[119,191,74,-0.5416910946369171],[119,191,75,-0.5423057191073895],[119,191,76,-0.541828878223896],[119,191,77,-0.5401435866951942],[119,191,78,-0.5372896827757359],[119,191,79,-0.5339196994900703],[119,192,64,-0.5433533973991871],[119,192,65,-0.5427252277731895],[119,192,66,-0.5410686656832695],[119,192,67,-0.5389561280608177],[119,192,68,-0.5372505597770214],[119,192,69,-0.5365519747138023],[119,192,70,-0.5367590710520744],[119,192,71,-0.5373488739132881],[119,192,72,-0.5385580025613308],[119,192,73,-0.5402677766978741],[119,192,74,-0.5416910946369171],[119,192,75,-0.5423057191073895],[119,192,76,-0.541828878223896],[119,192,77,-0.5401435866951942],[119,192,78,-0.5372896827757359],[119,192,79,-0.5339196994900703],[119,193,64,-0.5433533973991871],[119,193,65,-0.5427252277731895],[119,193,66,-0.5410686656832695],[119,193,67,-0.5389561280608177],[119,193,68,-0.5372505597770214],[119,193,69,-0.5365519747138023],[119,193,70,-0.5367590710520744],[119,193,71,-0.5373488739132881],[119,193,72,-0.5385580025613308],[119,193,73,-0.5402677766978741],[119,193,74,-0.5416910946369171],[119,193,75,-0.5423057191073895],[119,193,76,-0.541828878223896],[119,193,77,-0.5401435866951942],[119,193,78,-0.5372896827757359],[119,193,79,-0.5339196994900703],[119,194,64,-0.5433533973991871],[119,194,65,-0.5427252277731895],[119,194,66,-0.5410686656832695],[119,194,67,-0.5389561280608177],[119,194,68,-0.5372505597770214],[119,194,69,-0.5365519747138023],[119,194,70,-0.5367590710520744],[119,194,71,-0.5373488739132881],[119,194,72,-0.5385580025613308],[119,194,73,-0.5402677766978741],[119,194,74,-0.5416910946369171],[119,194,75,-0.5423057191073895],[119,194,76,-0.541828878223896],[119,194,77,-0.5401435866951942],[119,194,78,-0.5372896827757359],[119,194,79,-0.5339196994900703],[119,195,64,-0.5433533973991871],[119,195,65,-0.5427252277731895],[119,195,66,-0.5410686656832695],[119,195,67,-0.5389561280608177],[119,195,68,-0.5372505597770214],[119,195,69,-0.5365519747138023],[119,195,70,-0.5367590710520744],[119,195,71,-0.5373488739132881],[119,195,72,-0.5385580025613308],[119,195,73,-0.5402677766978741],[119,195,74,-0.5416910946369171],[119,195,75,-0.5423057191073895],[119,195,76,-0.541828878223896],[119,195,77,-0.5401435866951942],[119,195,78,-0.5372896827757359],[119,195,79,-0.5339196994900703],[119,196,64,-0.5433533973991871],[119,196,65,-0.5427252277731895],[119,196,66,-0.5410686656832695],[119,196,67,-0.5389561280608177],[119,196,68,-0.5372505597770214],[119,196,69,-0.5365519747138023],[119,196,70,-0.5367590710520744],[119,196,71,-0.5373488739132881],[119,196,72,-0.5385580025613308],[119,196,73,-0.5402677766978741],[119,196,74,-0.5416910946369171],[119,196,75,-0.5423057191073895],[119,196,76,-0.541828878223896],[119,196,77,-0.5401435866951942],[119,196,78,-0.5372896827757359],[119,196,79,-0.5339196994900703],[119,197,64,-0.5433533973991871],[119,197,65,-0.5427252277731895],[119,197,66,-0.5410686656832695],[119,197,67,-0.5389561280608177],[119,197,68,-0.5372505597770214],[119,197,69,-0.5365519747138023],[119,197,70,-0.5367590710520744],[119,197,71,-0.5373488739132881],[119,197,72,-0.5385580025613308],[119,197,73,-0.5402677766978741],[119,197,74,-0.5416910946369171],[119,197,75,-0.5423057191073895],[119,197,76,-0.541828878223896],[119,197,77,-0.5401435866951942],[119,197,78,-0.5372896827757359],[119,197,79,-0.5339196994900703],[119,198,64,-0.5433533973991871],[119,198,65,-0.5427252277731895],[119,198,66,-0.5410686656832695],[119,198,67,-0.5389561280608177],[119,198,68,-0.5372505597770214],[119,198,69,-0.5365519747138023],[119,198,70,-0.5367590710520744],[119,198,71,-0.5373488739132881],[119,198,72,-0.5385580025613308],[119,198,73,-0.5402677766978741],[119,198,74,-0.5416910946369171],[119,198,75,-0.5423057191073895],[119,198,76,-0.541828878223896],[119,198,77,-0.5401435866951942],[119,198,78,-0.5372896827757359],[119,198,79,-0.5339196994900703],[119,199,64,-0.5433533973991871],[119,199,65,-0.5427252277731895],[119,199,66,-0.5410686656832695],[119,199,67,-0.5389561280608177],[119,199,68,-0.5372505597770214],[119,199,69,-0.5365519747138023],[119,199,70,-0.5367590710520744],[119,199,71,-0.5373488739132881],[119,199,72,-0.5385580025613308],[119,199,73,-0.5402677766978741],[119,199,74,-0.5416910946369171],[119,199,75,-0.5423057191073895],[119,199,76,-0.541828878223896],[119,199,77,-0.5401435866951942],[119,199,78,-0.5372896827757359],[119,199,79,-0.5339196994900703],[119,200,64,-0.5433533973991871],[119,200,65,-0.5427252277731895],[119,200,66,-0.5410686656832695],[119,200,67,-0.5389561280608177],[119,200,68,-0.5372505597770214],[119,200,69,-0.5365519747138023],[119,200,70,-0.5367590710520744],[119,200,71,-0.5373488739132881],[119,200,72,-0.5385580025613308],[119,200,73,-0.5402677766978741],[119,200,74,-0.5416910946369171],[119,200,75,-0.5423057191073895],[119,200,76,-0.541828878223896],[119,200,77,-0.5401435866951942],[119,200,78,-0.5372896827757359],[119,200,79,-0.5339196994900703],[119,201,64,-0.5433533973991871],[119,201,65,-0.5427252277731895],[119,201,66,-0.5410686656832695],[119,201,67,-0.5389561280608177],[119,201,68,-0.5372505597770214],[119,201,69,-0.5365519747138023],[119,201,70,-0.5367590710520744],[119,201,71,-0.5373488739132881],[119,201,72,-0.5385580025613308],[119,201,73,-0.5402677766978741],[119,201,74,-0.5416910946369171],[119,201,75,-0.5423057191073895],[119,201,76,-0.541828878223896],[119,201,77,-0.5401435866951942],[119,201,78,-0.5372896827757359],[119,201,79,-0.5339196994900703],[119,202,64,-0.5433533973991871],[119,202,65,-0.5427252277731895],[119,202,66,-0.5410686656832695],[119,202,67,-0.5389561280608177],[119,202,68,-0.5372505597770214],[119,202,69,-0.5365519747138023],[119,202,70,-0.5367590710520744],[119,202,71,-0.5373488739132881],[119,202,72,-0.5385580025613308],[119,202,73,-0.5402677766978741],[119,202,74,-0.5416910946369171],[119,202,75,-0.5423057191073895],[119,202,76,-0.541828878223896],[119,202,77,-0.5401435866951942],[119,202,78,-0.5372896827757359],[119,202,79,-0.5339196994900703],[119,203,64,-0.5433533973991871],[119,203,65,-0.5427252277731895],[119,203,66,-0.5410686656832695],[119,203,67,-0.5389561280608177],[119,203,68,-0.5372505597770214],[119,203,69,-0.5365519747138023],[119,203,70,-0.5367590710520744],[119,203,71,-0.5373488739132881],[119,203,72,-0.5385580025613308],[119,203,73,-0.5402677766978741],[119,203,74,-0.5416910946369171],[119,203,75,-0.5423057191073895],[119,203,76,-0.541828878223896],[119,203,77,-0.5401435866951942],[119,203,78,-0.5372896827757359],[119,203,79,-0.5339196994900703],[119,204,64,-0.5433533973991871],[119,204,65,-0.5427252277731895],[119,204,66,-0.5410686656832695],[119,204,67,-0.5389561280608177],[119,204,68,-0.5372505597770214],[119,204,69,-0.5365519747138023],[119,204,70,-0.5367590710520744],[119,204,71,-0.5373488739132881],[119,204,72,-0.5385580025613308],[119,204,73,-0.5402677766978741],[119,204,74,-0.5416910946369171],[119,204,75,-0.5423057191073895],[119,204,76,-0.541828878223896],[119,204,77,-0.5401435866951942],[119,204,78,-0.5372896827757359],[119,204,79,-0.5339196994900703],[119,205,64,-0.5433533973991871],[119,205,65,-0.5427252277731895],[119,205,66,-0.5410686656832695],[119,205,67,-0.5389561280608177],[119,205,68,-0.5372505597770214],[119,205,69,-0.5365519747138023],[119,205,70,-0.5367590710520744],[119,205,71,-0.5373488739132881],[119,205,72,-0.5385580025613308],[119,205,73,-0.5402677766978741],[119,205,74,-0.5416910946369171],[119,205,75,-0.5423057191073895],[119,205,76,-0.541828878223896],[119,205,77,-0.5401435866951942],[119,205,78,-0.5372896827757359],[119,205,79,-0.5339196994900703],[119,206,64,-0.5433533973991871],[119,206,65,-0.5427252277731895],[119,206,66,-0.5410686656832695],[119,206,67,-0.5389561280608177],[119,206,68,-0.5372505597770214],[119,206,69,-0.5365519747138023],[119,206,70,-0.5367590710520744],[119,206,71,-0.5373488739132881],[119,206,72,-0.5385580025613308],[119,206,73,-0.5402677766978741],[119,206,74,-0.5416910946369171],[119,206,75,-0.5423057191073895],[119,206,76,-0.541828878223896],[119,206,77,-0.5401435866951942],[119,206,78,-0.5372896827757359],[119,206,79,-0.5339196994900703],[119,207,64,-0.5433533973991871],[119,207,65,-0.5427252277731895],[119,207,66,-0.5410686656832695],[119,207,67,-0.5389561280608177],[119,207,68,-0.5372505597770214],[119,207,69,-0.5365519747138023],[119,207,70,-0.5367590710520744],[119,207,71,-0.5373488739132881],[119,207,72,-0.5385580025613308],[119,207,73,-0.5402677766978741],[119,207,74,-0.5416910946369171],[119,207,75,-0.5423057191073895],[119,207,76,-0.541828878223896],[119,207,77,-0.5401435866951942],[119,207,78,-0.5372896827757359],[119,207,79,-0.5339196994900703],[119,208,64,-0.5433533973991871],[119,208,65,-0.5427252277731895],[119,208,66,-0.5410686656832695],[119,208,67,-0.5389561280608177],[119,208,68,-0.5372505597770214],[119,208,69,-0.5365519747138023],[119,208,70,-0.5367590710520744],[119,208,71,-0.5373488739132881],[119,208,72,-0.5385580025613308],[119,208,73,-0.5402677766978741],[119,208,74,-0.5416910946369171],[119,208,75,-0.5423057191073895],[119,208,76,-0.541828878223896],[119,208,77,-0.5401435866951942],[119,208,78,-0.5372896827757359],[119,208,79,-0.5339196994900703],[119,209,64,-0.5433533973991871],[119,209,65,-0.5427252277731895],[119,209,66,-0.5410686656832695],[119,209,67,-0.5389561280608177],[119,209,68,-0.5372505597770214],[119,209,69,-0.5365519747138023],[119,209,70,-0.5367590710520744],[119,209,71,-0.5373488739132881],[119,209,72,-0.5385580025613308],[119,209,73,-0.5402677766978741],[119,209,74,-0.5416910946369171],[119,209,75,-0.5423057191073895],[119,209,76,-0.541828878223896],[119,209,77,-0.5401435866951942],[119,209,78,-0.5372896827757359],[119,209,79,-0.5339196994900703],[119,210,64,-0.5433533973991871],[119,210,65,-0.5427252277731895],[119,210,66,-0.5410686656832695],[119,210,67,-0.5389561280608177],[119,210,68,-0.5372505597770214],[119,210,69,-0.5365519747138023],[119,210,70,-0.5367590710520744],[119,210,71,-0.5373488739132881],[119,210,72,-0.5385580025613308],[119,210,73,-0.5402677766978741],[119,210,74,-0.5416910946369171],[119,210,75,-0.5423057191073895],[119,210,76,-0.541828878223896],[119,210,77,-0.5401435866951942],[119,210,78,-0.5372896827757359],[119,210,79,-0.5339196994900703],[119,211,64,-0.5433533973991871],[119,211,65,-0.5427252277731895],[119,211,66,-0.5410686656832695],[119,211,67,-0.5389561280608177],[119,211,68,-0.5372505597770214],[119,211,69,-0.5365519747138023],[119,211,70,-0.5367590710520744],[119,211,71,-0.5373488739132881],[119,211,72,-0.5385580025613308],[119,211,73,-0.5402677766978741],[119,211,74,-0.5416910946369171],[119,211,75,-0.5423057191073895],[119,211,76,-0.541828878223896],[119,211,77,-0.5401435866951942],[119,211,78,-0.5372896827757359],[119,211,79,-0.5339196994900703],[119,212,64,-0.5433533973991871],[119,212,65,-0.5427252277731895],[119,212,66,-0.5410686656832695],[119,212,67,-0.5389561280608177],[119,212,68,-0.5372505597770214],[119,212,69,-0.5365519747138023],[119,212,70,-0.5367590710520744],[119,212,71,-0.5373488739132881],[119,212,72,-0.5385580025613308],[119,212,73,-0.5402677766978741],[119,212,74,-0.5416910946369171],[119,212,75,-0.5423057191073895],[119,212,76,-0.541828878223896],[119,212,77,-0.5401435866951942],[119,212,78,-0.5372896827757359],[119,212,79,-0.5339196994900703],[119,213,64,-0.5433533973991871],[119,213,65,-0.5427252277731895],[119,213,66,-0.5410686656832695],[119,213,67,-0.5389561280608177],[119,213,68,-0.5372505597770214],[119,213,69,-0.5365519747138023],[119,213,70,-0.5367590710520744],[119,213,71,-0.5373488739132881],[119,213,72,-0.5385580025613308],[119,213,73,-0.5402677766978741],[119,213,74,-0.5416910946369171],[119,213,75,-0.5423057191073895],[119,213,76,-0.541828878223896],[119,213,77,-0.5401435866951942],[119,213,78,-0.5372896827757359],[119,213,79,-0.5339196994900703],[119,214,64,-0.5433533973991871],[119,214,65,-0.5427252277731895],[119,214,66,-0.5410686656832695],[119,214,67,-0.5389561280608177],[119,214,68,-0.5372505597770214],[119,214,69,-0.5365519747138023],[119,214,70,-0.5367590710520744],[119,214,71,-0.5373488739132881],[119,214,72,-0.5385580025613308],[119,214,73,-0.5402677766978741],[119,214,74,-0.5416910946369171],[119,214,75,-0.5423057191073895],[119,214,76,-0.541828878223896],[119,214,77,-0.5401435866951942],[119,214,78,-0.5372896827757359],[119,214,79,-0.5339196994900703],[119,215,64,-0.5433533973991871],[119,215,65,-0.5427252277731895],[119,215,66,-0.5410686656832695],[119,215,67,-0.5389561280608177],[119,215,68,-0.5372505597770214],[119,215,69,-0.5365519747138023],[119,215,70,-0.5367590710520744],[119,215,71,-0.5373488739132881],[119,215,72,-0.5385580025613308],[119,215,73,-0.5402677766978741],[119,215,74,-0.5416910946369171],[119,215,75,-0.5423057191073895],[119,215,76,-0.541828878223896],[119,215,77,-0.5401435866951942],[119,215,78,-0.5372896827757359],[119,215,79,-0.5339196994900703],[119,216,64,-0.5433533973991871],[119,216,65,-0.5427252277731895],[119,216,66,-0.5410686656832695],[119,216,67,-0.5389561280608177],[119,216,68,-0.5372505597770214],[119,216,69,-0.5365519747138023],[119,216,70,-0.5367590710520744],[119,216,71,-0.5373488739132881],[119,216,72,-0.5385580025613308],[119,216,73,-0.5402677766978741],[119,216,74,-0.5416910946369171],[119,216,75,-0.5423057191073895],[119,216,76,-0.541828878223896],[119,216,77,-0.5401435866951942],[119,216,78,-0.5372896827757359],[119,216,79,-0.5339196994900703],[119,217,64,-0.5433533973991871],[119,217,65,-0.5427252277731895],[119,217,66,-0.5410686656832695],[119,217,67,-0.5389561280608177],[119,217,68,-0.5372505597770214],[119,217,69,-0.5365519747138023],[119,217,70,-0.5367590710520744],[119,217,71,-0.5373488739132881],[119,217,72,-0.5385580025613308],[119,217,73,-0.5402677766978741],[119,217,74,-0.5416910946369171],[119,217,75,-0.5423057191073895],[119,217,76,-0.541828878223896],[119,217,77,-0.5401435866951942],[119,217,78,-0.5372896827757359],[119,217,79,-0.5339196994900703],[119,218,64,-0.5433533973991871],[119,218,65,-0.5427252277731895],[119,218,66,-0.5410686656832695],[119,218,67,-0.5389561280608177],[119,218,68,-0.5372505597770214],[119,218,69,-0.5365519747138023],[119,218,70,-0.5367590710520744],[119,218,71,-0.5373488739132881],[119,218,72,-0.5385580025613308],[119,218,73,-0.5402677766978741],[119,218,74,-0.5416910946369171],[119,218,75,-0.5423057191073895],[119,218,76,-0.541828878223896],[119,218,77,-0.5401435866951942],[119,218,78,-0.5372896827757359],[119,218,79,-0.5339196994900703],[119,219,64,-0.5433533973991871],[119,219,65,-0.5427252277731895],[119,219,66,-0.5410686656832695],[119,219,67,-0.5389561280608177],[119,219,68,-0.5372505597770214],[119,219,69,-0.5365519747138023],[119,219,70,-0.5367590710520744],[119,219,71,-0.5373488739132881],[119,219,72,-0.5385580025613308],[119,219,73,-0.5402677766978741],[119,219,74,-0.5416910946369171],[119,219,75,-0.5423057191073895],[119,219,76,-0.541828878223896],[119,219,77,-0.5401435866951942],[119,219,78,-0.5372896827757359],[119,219,79,-0.5339196994900703],[119,220,64,-0.5433533973991871],[119,220,65,-0.5427252277731895],[119,220,66,-0.5410686656832695],[119,220,67,-0.5389561280608177],[119,220,68,-0.5372505597770214],[119,220,69,-0.5365519747138023],[119,220,70,-0.5367590710520744],[119,220,71,-0.5373488739132881],[119,220,72,-0.5385580025613308],[119,220,73,-0.5402677766978741],[119,220,74,-0.5416910946369171],[119,220,75,-0.5423057191073895],[119,220,76,-0.541828878223896],[119,220,77,-0.5401435866951942],[119,220,78,-0.5372896827757359],[119,220,79,-0.5339196994900703],[119,221,64,-0.5433533973991871],[119,221,65,-0.5427252277731895],[119,221,66,-0.5410686656832695],[119,221,67,-0.5389561280608177],[119,221,68,-0.5372505597770214],[119,221,69,-0.5365519747138023],[119,221,70,-0.5367590710520744],[119,221,71,-0.5373488739132881],[119,221,72,-0.5385580025613308],[119,221,73,-0.5402677766978741],[119,221,74,-0.5416910946369171],[119,221,75,-0.5423057191073895],[119,221,76,-0.541828878223896],[119,221,77,-0.5401435866951942],[119,221,78,-0.5372896827757359],[119,221,79,-0.5339196994900703],[119,222,64,-0.5433533973991871],[119,222,65,-0.5427252277731895],[119,222,66,-0.5410686656832695],[119,222,67,-0.5389561280608177],[119,222,68,-0.5372505597770214],[119,222,69,-0.5365519747138023],[119,222,70,-0.5367590710520744],[119,222,71,-0.5373488739132881],[119,222,72,-0.5385580025613308],[119,222,73,-0.5402677766978741],[119,222,74,-0.5416910946369171],[119,222,75,-0.5423057191073895],[119,222,76,-0.541828878223896],[119,222,77,-0.5401435866951942],[119,222,78,-0.5372896827757359],[119,222,79,-0.5339196994900703],[119,223,64,-0.5433533973991871],[119,223,65,-0.5427252277731895],[119,223,66,-0.5410686656832695],[119,223,67,-0.5389561280608177],[119,223,68,-0.5372505597770214],[119,223,69,-0.5365519747138023],[119,223,70,-0.5367590710520744],[119,223,71,-0.5373488739132881],[119,223,72,-0.5385580025613308],[119,223,73,-0.5402677766978741],[119,223,74,-0.5416910946369171],[119,223,75,-0.5423057191073895],[119,223,76,-0.541828878223896],[119,223,77,-0.5401435866951942],[119,223,78,-0.5372896827757359],[119,223,79,-0.5339196994900703],[119,224,64,-0.5433533973991871],[119,224,65,-0.5427252277731895],[119,224,66,-0.5410686656832695],[119,224,67,-0.5389561280608177],[119,224,68,-0.5372505597770214],[119,224,69,-0.5365519747138023],[119,224,70,-0.5367590710520744],[119,224,71,-0.5373488739132881],[119,224,72,-0.5385580025613308],[119,224,73,-0.5402677766978741],[119,224,74,-0.5416910946369171],[119,224,75,-0.5423057191073895],[119,224,76,-0.541828878223896],[119,224,77,-0.5401435866951942],[119,224,78,-0.5372896827757359],[119,224,79,-0.5339196994900703],[119,225,64,-0.5433533973991871],[119,225,65,-0.5427252277731895],[119,225,66,-0.5410686656832695],[119,225,67,-0.5389561280608177],[119,225,68,-0.5372505597770214],[119,225,69,-0.5365519747138023],[119,225,70,-0.5367590710520744],[119,225,71,-0.5373488739132881],[119,225,72,-0.5385580025613308],[119,225,73,-0.5402677766978741],[119,225,74,-0.5416910946369171],[119,225,75,-0.5423057191073895],[119,225,76,-0.541828878223896],[119,225,77,-0.5401435866951942],[119,225,78,-0.5372896827757359],[119,225,79,-0.5339196994900703],[119,226,64,-0.5433533973991871],[119,226,65,-0.5427252277731895],[119,226,66,-0.5410686656832695],[119,226,67,-0.5389561280608177],[119,226,68,-0.5372505597770214],[119,226,69,-0.5365519747138023],[119,226,70,-0.5367590710520744],[119,226,71,-0.5373488739132881],[119,226,72,-0.5385580025613308],[119,226,73,-0.5402677766978741],[119,226,74,-0.5416910946369171],[119,226,75,-0.5423057191073895],[119,226,76,-0.541828878223896],[119,226,77,-0.5401435866951942],[119,226,78,-0.5372896827757359],[119,226,79,-0.5339196994900703],[119,227,64,-0.5433533973991871],[119,227,65,-0.5427252277731895],[119,227,66,-0.5410686656832695],[119,227,67,-0.5389561280608177],[119,227,68,-0.5372505597770214],[119,227,69,-0.5365519747138023],[119,227,70,-0.5367590710520744],[119,227,71,-0.5373488739132881],[119,227,72,-0.5385580025613308],[119,227,73,-0.5402677766978741],[119,227,74,-0.5416910946369171],[119,227,75,-0.5423057191073895],[119,227,76,-0.541828878223896],[119,227,77,-0.5401435866951942],[119,227,78,-0.5372896827757359],[119,227,79,-0.5339196994900703],[119,228,64,-0.5433533973991871],[119,228,65,-0.5427252277731895],[119,228,66,-0.5410686656832695],[119,228,67,-0.5389561280608177],[119,228,68,-0.5372505597770214],[119,228,69,-0.5365519747138023],[119,228,70,-0.5367590710520744],[119,228,71,-0.5373488739132881],[119,228,72,-0.5385580025613308],[119,228,73,-0.5402677766978741],[119,228,74,-0.5416910946369171],[119,228,75,-0.5423057191073895],[119,228,76,-0.541828878223896],[119,228,77,-0.5401435866951942],[119,228,78,-0.5372896827757359],[119,228,79,-0.5339196994900703],[119,229,64,-0.5433533973991871],[119,229,65,-0.5427252277731895],[119,229,66,-0.5410686656832695],[119,229,67,-0.5389561280608177],[119,229,68,-0.5372505597770214],[119,229,69,-0.5365519747138023],[119,229,70,-0.5367590710520744],[119,229,71,-0.5373488739132881],[119,229,72,-0.5385580025613308],[119,229,73,-0.5402677766978741],[119,229,74,-0.5416910946369171],[119,229,75,-0.5423057191073895],[119,229,76,-0.541828878223896],[119,229,77,-0.5401435866951942],[119,229,78,-0.5372896827757359],[119,229,79,-0.5339196994900703],[119,230,64,-0.5433533973991871],[119,230,65,-0.5427252277731895],[119,230,66,-0.5410686656832695],[119,230,67,-0.5389561280608177],[119,230,68,-0.5372505597770214],[119,230,69,-0.5365519747138023],[119,230,70,-0.5367590710520744],[119,230,71,-0.5373488739132881],[119,230,72,-0.5385580025613308],[119,230,73,-0.5402677766978741],[119,230,74,-0.5416910946369171],[119,230,75,-0.5423057191073895],[119,230,76,-0.541828878223896],[119,230,77,-0.5401435866951942],[119,230,78,-0.5372896827757359],[119,230,79,-0.5339196994900703],[119,231,64,-0.5433533973991871],[119,231,65,-0.5427252277731895],[119,231,66,-0.5410686656832695],[119,231,67,-0.5389561280608177],[119,231,68,-0.5372505597770214],[119,231,69,-0.5365519747138023],[119,231,70,-0.5367590710520744],[119,231,71,-0.5373488739132881],[119,231,72,-0.5385580025613308],[119,231,73,-0.5402677766978741],[119,231,74,-0.5416910946369171],[119,231,75,-0.5423057191073895],[119,231,76,-0.541828878223896],[119,231,77,-0.5401435866951942],[119,231,78,-0.5372896827757359],[119,231,79,-0.5339196994900703],[119,232,64,-0.5433533973991871],[119,232,65,-0.5427252277731895],[119,232,66,-0.5410686656832695],[119,232,67,-0.5389561280608177],[119,232,68,-0.5372505597770214],[119,232,69,-0.5365519747138023],[119,232,70,-0.5367590710520744],[119,232,71,-0.5373488739132881],[119,232,72,-0.5385580025613308],[119,232,73,-0.5402677766978741],[119,232,74,-0.5416910946369171],[119,232,75,-0.5423057191073895],[119,232,76,-0.541828878223896],[119,232,77,-0.5401435866951942],[119,232,78,-0.5372896827757359],[119,232,79,-0.5339196994900703],[119,233,64,-0.5433533973991871],[119,233,65,-0.5427252277731895],[119,233,66,-0.5410686656832695],[119,233,67,-0.5389561280608177],[119,233,68,-0.5372505597770214],[119,233,69,-0.5365519747138023],[119,233,70,-0.5367590710520744],[119,233,71,-0.5373488739132881],[119,233,72,-0.5385580025613308],[119,233,73,-0.5402677766978741],[119,233,74,-0.5416910946369171],[119,233,75,-0.5423057191073895],[119,233,76,-0.541828878223896],[119,233,77,-0.5401435866951942],[119,233,78,-0.5372896827757359],[119,233,79,-0.5339196994900703],[119,234,64,-0.5433533973991871],[119,234,65,-0.5427252277731895],[119,234,66,-0.5410686656832695],[119,234,67,-0.5389561280608177],[119,234,68,-0.5372505597770214],[119,234,69,-0.5365519747138023],[119,234,70,-0.5367590710520744],[119,234,71,-0.5373488739132881],[119,234,72,-0.5385580025613308],[119,234,73,-0.5402677766978741],[119,234,74,-0.5416910946369171],[119,234,75,-0.5423057191073895],[119,234,76,-0.541828878223896],[119,234,77,-0.5401435866951942],[119,234,78,-0.5372896827757359],[119,234,79,-0.5339196994900703],[119,235,64,-0.5433533973991871],[119,235,65,-0.5427252277731895],[119,235,66,-0.5410686656832695],[119,235,67,-0.5389561280608177],[119,235,68,-0.5372505597770214],[119,235,69,-0.5365519747138023],[119,235,70,-0.5367590710520744],[119,235,71,-0.5373488739132881],[119,235,72,-0.5385580025613308],[119,235,73,-0.5402677766978741],[119,235,74,-0.5416910946369171],[119,235,75,-0.5423057191073895],[119,235,76,-0.541828878223896],[119,235,77,-0.5401435866951942],[119,235,78,-0.5372896827757359],[119,235,79,-0.5339196994900703],[119,236,64,-0.5433533973991871],[119,236,65,-0.5427252277731895],[119,236,66,-0.5410686656832695],[119,236,67,-0.5389561280608177],[119,236,68,-0.5372505597770214],[119,236,69,-0.5365519747138023],[119,236,70,-0.5367590710520744],[119,236,71,-0.5373488739132881],[119,236,72,-0.5385580025613308],[119,236,73,-0.5402677766978741],[119,236,74,-0.5416910946369171],[119,236,75,-0.5423057191073895],[119,236,76,-0.541828878223896],[119,236,77,-0.5401435866951942],[119,236,78,-0.5372896827757359],[119,236,79,-0.5339196994900703],[119,237,64,-0.5433533973991871],[119,237,65,-0.5427252277731895],[119,237,66,-0.5410686656832695],[119,237,67,-0.5389561280608177],[119,237,68,-0.5372505597770214],[119,237,69,-0.5365519747138023],[119,237,70,-0.5367590710520744],[119,237,71,-0.5373488739132881],[119,237,72,-0.5385580025613308],[119,237,73,-0.5402677766978741],[119,237,74,-0.5416910946369171],[119,237,75,-0.5423057191073895],[119,237,76,-0.541828878223896],[119,237,77,-0.5401435866951942],[119,237,78,-0.5372896827757359],[119,237,79,-0.5339196994900703],[119,238,64,-0.5433533973991871],[119,238,65,-0.5427252277731895],[119,238,66,-0.5410686656832695],[119,238,67,-0.5389561280608177],[119,238,68,-0.5372505597770214],[119,238,69,-0.5365519747138023],[119,238,70,-0.5367590710520744],[119,238,71,-0.5373488739132881],[119,238,72,-0.5385580025613308],[119,238,73,-0.5402677766978741],[119,238,74,-0.5416910946369171],[119,238,75,-0.5423057191073895],[119,238,76,-0.541828878223896],[119,238,77,-0.5401435866951942],[119,238,78,-0.5372896827757359],[119,238,79,-0.5339196994900703],[119,239,64,-0.5433533973991871],[119,239,65,-0.5427252277731895],[119,239,66,-0.5410686656832695],[119,239,67,-0.5389561280608177],[119,239,68,-0.5372505597770214],[119,239,69,-0.5365519747138023],[119,239,70,-0.5367590710520744],[119,239,71,-0.5373488739132881],[119,239,72,-0.5385580025613308],[119,239,73,-0.5402677766978741],[119,239,74,-0.5416910946369171],[119,239,75,-0.5423057191073895],[119,239,76,-0.541828878223896],[119,239,77,-0.5401435866951942],[119,239,78,-0.5372896827757359],[119,239,79,-0.5339196994900703],[119,240,64,-0.5433533973991871],[119,240,65,-0.5427252277731895],[119,240,66,-0.5410686656832695],[119,240,67,-0.5389561280608177],[119,240,68,-0.5372505597770214],[119,240,69,-0.5365519747138023],[119,240,70,-0.5367590710520744],[119,240,71,-0.5373488739132881],[119,240,72,-0.5385580025613308],[119,240,73,-0.5402677766978741],[119,240,74,-0.5416910946369171],[119,240,75,-0.5423057191073895],[119,240,76,-0.541828878223896],[119,240,77,-0.5401435866951942],[119,240,78,-0.5372896827757359],[119,240,79,-0.5339196994900703],[119,241,64,-0.5433533973991871],[119,241,65,-0.5427252277731895],[119,241,66,-0.5410686656832695],[119,241,67,-0.5389561280608177],[119,241,68,-0.5372505597770214],[119,241,69,-0.5365519747138023],[119,241,70,-0.5367590710520744],[119,241,71,-0.5373488739132881],[119,241,72,-0.5385580025613308],[119,241,73,-0.5402677766978741],[119,241,74,-0.5416910946369171],[119,241,75,-0.5423057191073895],[119,241,76,-0.541828878223896],[119,241,77,-0.5401435866951942],[119,241,78,-0.5372896827757359],[119,241,79,-0.5339196994900703],[119,242,64,-0.5433533973991871],[119,242,65,-0.5427252277731895],[119,242,66,-0.5410686656832695],[119,242,67,-0.5389561280608177],[119,242,68,-0.5372505597770214],[119,242,69,-0.5365519747138023],[119,242,70,-0.5367590710520744],[119,242,71,-0.5373488739132881],[119,242,72,-0.5385580025613308],[119,242,73,-0.5402677766978741],[119,242,74,-0.5416910946369171],[119,242,75,-0.5423057191073895],[119,242,76,-0.541828878223896],[119,242,77,-0.5401435866951942],[119,242,78,-0.5372896827757359],[119,242,79,-0.5339196994900703],[119,243,64,-0.5433533973991871],[119,243,65,-0.5427252277731895],[119,243,66,-0.5410686656832695],[119,243,67,-0.5389561280608177],[119,243,68,-0.5372505597770214],[119,243,69,-0.5365519747138023],[119,243,70,-0.5367590710520744],[119,243,71,-0.5373488739132881],[119,243,72,-0.5385580025613308],[119,243,73,-0.5402677766978741],[119,243,74,-0.5416910946369171],[119,243,75,-0.5423057191073895],[119,243,76,-0.541828878223896],[119,243,77,-0.5401435866951942],[119,243,78,-0.5372896827757359],[119,243,79,-0.5339196994900703],[119,244,64,-0.5433533973991871],[119,244,65,-0.5427252277731895],[119,244,66,-0.5410686656832695],[119,244,67,-0.5389561280608177],[119,244,68,-0.5372505597770214],[119,244,69,-0.5365519747138023],[119,244,70,-0.5367590710520744],[119,244,71,-0.5373488739132881],[119,244,72,-0.5385580025613308],[119,244,73,-0.5402677766978741],[119,244,74,-0.5416910946369171],[119,244,75,-0.5423057191073895],[119,244,76,-0.541828878223896],[119,244,77,-0.5401435866951942],[119,244,78,-0.5372896827757359],[119,244,79,-0.5339196994900703],[119,245,64,-0.5433533973991871],[119,245,65,-0.5427252277731895],[119,245,66,-0.5410686656832695],[119,245,67,-0.5389561280608177],[119,245,68,-0.5372505597770214],[119,245,69,-0.5365519747138023],[119,245,70,-0.5367590710520744],[119,245,71,-0.5373488739132881],[119,245,72,-0.5385580025613308],[119,245,73,-0.5402677766978741],[119,245,74,-0.5416910946369171],[119,245,75,-0.5423057191073895],[119,245,76,-0.541828878223896],[119,245,77,-0.5401435866951942],[119,245,78,-0.5372896827757359],[119,245,79,-0.5339196994900703],[119,246,64,-0.5433533973991871],[119,246,65,-0.5427252277731895],[119,246,66,-0.5410686656832695],[119,246,67,-0.5389561280608177],[119,246,68,-0.5372505597770214],[119,246,69,-0.5365519747138023],[119,246,70,-0.5367590710520744],[119,246,71,-0.5373488739132881],[119,246,72,-0.5385580025613308],[119,246,73,-0.5402677766978741],[119,246,74,-0.5416910946369171],[119,246,75,-0.5423057191073895],[119,246,76,-0.541828878223896],[119,246,77,-0.5401435866951942],[119,246,78,-0.5372896827757359],[119,246,79,-0.5339196994900703],[119,247,64,-0.5433533973991871],[119,247,65,-0.5427252277731895],[119,247,66,-0.5410686656832695],[119,247,67,-0.5389561280608177],[119,247,68,-0.5372505597770214],[119,247,69,-0.5365519747138023],[119,247,70,-0.5367590710520744],[119,247,71,-0.5373488739132881],[119,247,72,-0.5385580025613308],[119,247,73,-0.5402677766978741],[119,247,74,-0.5416910946369171],[119,247,75,-0.5423057191073895],[119,247,76,-0.541828878223896],[119,247,77,-0.5401435866951942],[119,247,78,-0.5372896827757359],[119,247,79,-0.5339196994900703],[119,248,64,-0.5433533973991871],[119,248,65,-0.5427252277731895],[119,248,66,-0.5410686656832695],[119,248,67,-0.5389561280608177],[119,248,68,-0.5372505597770214],[119,248,69,-0.5365519747138023],[119,248,70,-0.5367590710520744],[119,248,71,-0.5373488739132881],[119,248,72,-0.5385580025613308],[119,248,73,-0.5402677766978741],[119,248,74,-0.5416910946369171],[119,248,75,-0.5423057191073895],[119,248,76,-0.541828878223896],[119,248,77,-0.5401435866951942],[119,248,78,-0.5372896827757359],[119,248,79,-0.5339196994900703],[119,249,64,-0.5433533973991871],[119,249,65,-0.5427252277731895],[119,249,66,-0.5410686656832695],[119,249,67,-0.5389561280608177],[119,249,68,-0.5372505597770214],[119,249,69,-0.5365519747138023],[119,249,70,-0.5367590710520744],[119,249,71,-0.5373488739132881],[119,249,72,-0.5385580025613308],[119,249,73,-0.5402677766978741],[119,249,74,-0.5416910946369171],[119,249,75,-0.5423057191073895],[119,249,76,-0.541828878223896],[119,249,77,-0.5401435866951942],[119,249,78,-0.5372896827757359],[119,249,79,-0.5339196994900703],[119,250,64,-0.5433533973991871],[119,250,65,-0.5427252277731895],[119,250,66,-0.5410686656832695],[119,250,67,-0.5389561280608177],[119,250,68,-0.5372505597770214],[119,250,69,-0.5365519747138023],[119,250,70,-0.5367590710520744],[119,250,71,-0.5373488739132881],[119,250,72,-0.5385580025613308],[119,250,73,-0.5402677766978741],[119,250,74,-0.5416910946369171],[119,250,75,-0.5423057191073895],[119,250,76,-0.541828878223896],[119,250,77,-0.5401435866951942],[119,250,78,-0.5372896827757359],[119,250,79,-0.5339196994900703],[119,251,64,-0.5433533973991871],[119,251,65,-0.5427252277731895],[119,251,66,-0.5410686656832695],[119,251,67,-0.5389561280608177],[119,251,68,-0.5372505597770214],[119,251,69,-0.5365519747138023],[119,251,70,-0.5367590710520744],[119,251,71,-0.5373488739132881],[119,251,72,-0.5385580025613308],[119,251,73,-0.5402677766978741],[119,251,74,-0.5416910946369171],[119,251,75,-0.5423057191073895],[119,251,76,-0.541828878223896],[119,251,77,-0.5401435866951942],[119,251,78,-0.5372896827757359],[119,251,79,-0.5339196994900703],[119,252,64,-0.5433533973991871],[119,252,65,-0.5427252277731895],[119,252,66,-0.5410686656832695],[119,252,67,-0.5389561280608177],[119,252,68,-0.5372505597770214],[119,252,69,-0.5365519747138023],[119,252,70,-0.5367590710520744],[119,252,71,-0.5373488739132881],[119,252,72,-0.5385580025613308],[119,252,73,-0.5402677766978741],[119,252,74,-0.5416910946369171],[119,252,75,-0.5423057191073895],[119,252,76,-0.541828878223896],[119,252,77,-0.5401435866951942],[119,252,78,-0.5372896827757359],[119,252,79,-0.5339196994900703],[119,253,64,-0.5433533973991871],[119,253,65,-0.5427252277731895],[119,253,66,-0.5410686656832695],[119,253,67,-0.5389561280608177],[119,253,68,-0.5372505597770214],[119,253,69,-0.5365519747138023],[119,253,70,-0.5367590710520744],[119,253,71,-0.5373488739132881],[119,253,72,-0.5385580025613308],[119,253,73,-0.5402677766978741],[119,253,74,-0.5416910946369171],[119,253,75,-0.5423057191073895],[119,253,76,-0.541828878223896],[119,253,77,-0.5401435866951942],[119,253,78,-0.5372896827757359],[119,253,79,-0.5339196994900703],[119,254,64,-0.5433533973991871],[119,254,65,-0.5427252277731895],[119,254,66,-0.5410686656832695],[119,254,67,-0.5389561280608177],[119,254,68,-0.5372505597770214],[119,254,69,-0.5365519747138023],[119,254,70,-0.5367590710520744],[119,254,71,-0.5373488739132881],[119,254,72,-0.5385580025613308],[119,254,73,-0.5402677766978741],[119,254,74,-0.5416910946369171],[119,254,75,-0.5423057191073895],[119,254,76,-0.541828878223896],[119,254,77,-0.5401435866951942],[119,254,78,-0.5372896827757359],[119,254,79,-0.5339196994900703],[119,255,64,-0.5433533973991871],[119,255,65,-0.5427252277731895],[119,255,66,-0.5410686656832695],[119,255,67,-0.5389561280608177],[119,255,68,-0.5372505597770214],[119,255,69,-0.5365519747138023],[119,255,70,-0.5367590710520744],[119,255,71,-0.5373488739132881],[119,255,72,-0.5385580025613308],[119,255,73,-0.5402677766978741],[119,255,74,-0.5416910946369171],[119,255,75,-0.5423057191073895],[119,255,76,-0.541828878223896],[119,255,77,-0.5401435866951942],[119,255,78,-0.5372896827757359],[119,255,79,-0.5339196994900703],[119,256,64,-0.5433533973991871],[119,256,65,-0.5427252277731895],[119,256,66,-0.5410686656832695],[119,256,67,-0.5389561280608177],[119,256,68,-0.5372505597770214],[119,256,69,-0.5365519747138023],[119,256,70,-0.5367590710520744],[119,256,71,-0.5373488739132881],[119,256,72,-0.5385580025613308],[119,256,73,-0.5402677766978741],[119,256,74,-0.5416910946369171],[119,256,75,-0.5423057191073895],[119,256,76,-0.541828878223896],[119,256,77,-0.5401435866951942],[119,256,78,-0.5372896827757359],[119,256,79,-0.5339196994900703],[119,257,64,-0.5433533973991871],[119,257,65,-0.5427252277731895],[119,257,66,-0.5410686656832695],[119,257,67,-0.5389561280608177],[119,257,68,-0.5372505597770214],[119,257,69,-0.5365519747138023],[119,257,70,-0.5367590710520744],[119,257,71,-0.5373488739132881],[119,257,72,-0.5385580025613308],[119,257,73,-0.5402677766978741],[119,257,74,-0.5416910946369171],[119,257,75,-0.5423057191073895],[119,257,76,-0.541828878223896],[119,257,77,-0.5401435866951942],[119,257,78,-0.5372896827757359],[119,257,79,-0.5339196994900703],[119,258,64,-0.5433533973991871],[119,258,65,-0.5427252277731895],[119,258,66,-0.5410686656832695],[119,258,67,-0.5389561280608177],[119,258,68,-0.5372505597770214],[119,258,69,-0.5365519747138023],[119,258,70,-0.5367590710520744],[119,258,71,-0.5373488739132881],[119,258,72,-0.5385580025613308],[119,258,73,-0.5402677766978741],[119,258,74,-0.5416910946369171],[119,258,75,-0.5423057191073895],[119,258,76,-0.541828878223896],[119,258,77,-0.5401435866951942],[119,258,78,-0.5372896827757359],[119,258,79,-0.5339196994900703],[119,259,64,-0.5433533973991871],[119,259,65,-0.5427252277731895],[119,259,66,-0.5410686656832695],[119,259,67,-0.5389561280608177],[119,259,68,-0.5372505597770214],[119,259,69,-0.5365519747138023],[119,259,70,-0.5367590710520744],[119,259,71,-0.5373488739132881],[119,259,72,-0.5385580025613308],[119,259,73,-0.5402677766978741],[119,259,74,-0.5416910946369171],[119,259,75,-0.5423057191073895],[119,259,76,-0.541828878223896],[119,259,77,-0.5401435866951942],[119,259,78,-0.5372896827757359],[119,259,79,-0.5339196994900703],[119,260,64,-0.5433533973991871],[119,260,65,-0.5427252277731895],[119,260,66,-0.5410686656832695],[119,260,67,-0.5389561280608177],[119,260,68,-0.5372505597770214],[119,260,69,-0.5365519747138023],[119,260,70,-0.5367590710520744],[119,260,71,-0.5373488739132881],[119,260,72,-0.5385580025613308],[119,260,73,-0.5402677766978741],[119,260,74,-0.5416910946369171],[119,260,75,-0.5423057191073895],[119,260,76,-0.541828878223896],[119,260,77,-0.5401435866951942],[119,260,78,-0.5372896827757359],[119,260,79,-0.5339196994900703],[119,261,64,-0.5433533973991871],[119,261,65,-0.5427252277731895],[119,261,66,-0.5410686656832695],[119,261,67,-0.5389561280608177],[119,261,68,-0.5372505597770214],[119,261,69,-0.5365519747138023],[119,261,70,-0.5367590710520744],[119,261,71,-0.5373488739132881],[119,261,72,-0.5385580025613308],[119,261,73,-0.5402677766978741],[119,261,74,-0.5416910946369171],[119,261,75,-0.5423057191073895],[119,261,76,-0.541828878223896],[119,261,77,-0.5401435866951942],[119,261,78,-0.5372896827757359],[119,261,79,-0.5339196994900703],[119,262,64,-0.5433533973991871],[119,262,65,-0.5427252277731895],[119,262,66,-0.5410686656832695],[119,262,67,-0.5389561280608177],[119,262,68,-0.5372505597770214],[119,262,69,-0.5365519747138023],[119,262,70,-0.5367590710520744],[119,262,71,-0.5373488739132881],[119,262,72,-0.5385580025613308],[119,262,73,-0.5402677766978741],[119,262,74,-0.5416910946369171],[119,262,75,-0.5423057191073895],[119,262,76,-0.541828878223896],[119,262,77,-0.5401435866951942],[119,262,78,-0.5372896827757359],[119,262,79,-0.5339196994900703],[119,263,64,-0.5433533973991871],[119,263,65,-0.5427252277731895],[119,263,66,-0.5410686656832695],[119,263,67,-0.5389561280608177],[119,263,68,-0.5372505597770214],[119,263,69,-0.5365519747138023],[119,263,70,-0.5367590710520744],[119,263,71,-0.5373488739132881],[119,263,72,-0.5385580025613308],[119,263,73,-0.5402677766978741],[119,263,74,-0.5416910946369171],[119,263,75,-0.5423057191073895],[119,263,76,-0.541828878223896],[119,263,77,-0.5401435866951942],[119,263,78,-0.5372896827757359],[119,263,79,-0.5339196994900703],[119,264,64,-0.5433533973991871],[119,264,65,-0.5427252277731895],[119,264,66,-0.5410686656832695],[119,264,67,-0.5389561280608177],[119,264,68,-0.5372505597770214],[119,264,69,-0.5365519747138023],[119,264,70,-0.5367590710520744],[119,264,71,-0.5373488739132881],[119,264,72,-0.5385580025613308],[119,264,73,-0.5402677766978741],[119,264,74,-0.5416910946369171],[119,264,75,-0.5423057191073895],[119,264,76,-0.541828878223896],[119,264,77,-0.5401435866951942],[119,264,78,-0.5372896827757359],[119,264,79,-0.5339196994900703],[119,265,64,-0.5433533973991871],[119,265,65,-0.5427252277731895],[119,265,66,-0.5410686656832695],[119,265,67,-0.5389561280608177],[119,265,68,-0.5372505597770214],[119,265,69,-0.5365519747138023],[119,265,70,-0.5367590710520744],[119,265,71,-0.5373488739132881],[119,265,72,-0.5385580025613308],[119,265,73,-0.5402677766978741],[119,265,74,-0.5416910946369171],[119,265,75,-0.5423057191073895],[119,265,76,-0.541828878223896],[119,265,77,-0.5401435866951942],[119,265,78,-0.5372896827757359],[119,265,79,-0.5339196994900703],[119,266,64,-0.5433533973991871],[119,266,65,-0.5427252277731895],[119,266,66,-0.5410686656832695],[119,266,67,-0.5389561280608177],[119,266,68,-0.5372505597770214],[119,266,69,-0.5365519747138023],[119,266,70,-0.5367590710520744],[119,266,71,-0.5373488739132881],[119,266,72,-0.5385580025613308],[119,266,73,-0.5402677766978741],[119,266,74,-0.5416910946369171],[119,266,75,-0.5423057191073895],[119,266,76,-0.541828878223896],[119,266,77,-0.5401435866951942],[119,266,78,-0.5372896827757359],[119,266,79,-0.5339196994900703],[119,267,64,-0.5433533973991871],[119,267,65,-0.5427252277731895],[119,267,66,-0.5410686656832695],[119,267,67,-0.5389561280608177],[119,267,68,-0.5372505597770214],[119,267,69,-0.5365519747138023],[119,267,70,-0.5367590710520744],[119,267,71,-0.5373488739132881],[119,267,72,-0.5385580025613308],[119,267,73,-0.5402677766978741],[119,267,74,-0.5416910946369171],[119,267,75,-0.5423057191073895],[119,267,76,-0.541828878223896],[119,267,77,-0.5401435866951942],[119,267,78,-0.5372896827757359],[119,267,79,-0.5339196994900703],[119,268,64,-0.5433533973991871],[119,268,65,-0.5427252277731895],[119,268,66,-0.5410686656832695],[119,268,67,-0.5389561280608177],[119,268,68,-0.5372505597770214],[119,268,69,-0.5365519747138023],[119,268,70,-0.5367590710520744],[119,268,71,-0.5373488739132881],[119,268,72,-0.5385580025613308],[119,268,73,-0.5402677766978741],[119,268,74,-0.5416910946369171],[119,268,75,-0.5423057191073895],[119,268,76,-0.541828878223896],[119,268,77,-0.5401435866951942],[119,268,78,-0.5372896827757359],[119,268,79,-0.5339196994900703],[119,269,64,-0.5433533973991871],[119,269,65,-0.5427252277731895],[119,269,66,-0.5410686656832695],[119,269,67,-0.5389561280608177],[119,269,68,-0.5372505597770214],[119,269,69,-0.5365519747138023],[119,269,70,-0.5367590710520744],[119,269,71,-0.5373488739132881],[119,269,72,-0.5385580025613308],[119,269,73,-0.5402677766978741],[119,269,74,-0.5416910946369171],[119,269,75,-0.5423057191073895],[119,269,76,-0.541828878223896],[119,269,77,-0.5401435866951942],[119,269,78,-0.5372896827757359],[119,269,79,-0.5339196994900703],[119,270,64,-0.5433533973991871],[119,270,65,-0.5427252277731895],[119,270,66,-0.5410686656832695],[119,270,67,-0.5389561280608177],[119,270,68,-0.5372505597770214],[119,270,69,-0.5365519747138023],[119,270,70,-0.5367590710520744],[119,270,71,-0.5373488739132881],[119,270,72,-0.5385580025613308],[119,270,73,-0.5402677766978741],[119,270,74,-0.5416910946369171],[119,270,75,-0.5423057191073895],[119,270,76,-0.541828878223896],[119,270,77,-0.5401435866951942],[119,270,78,-0.5372896827757359],[119,270,79,-0.5339196994900703],[119,271,64,-0.5433533973991871],[119,271,65,-0.5427252277731895],[119,271,66,-0.5410686656832695],[119,271,67,-0.5389561280608177],[119,271,68,-0.5372505597770214],[119,271,69,-0.5365519747138023],[119,271,70,-0.5367590710520744],[119,271,71,-0.5373488739132881],[119,271,72,-0.5385580025613308],[119,271,73,-0.5402677766978741],[119,271,74,-0.5416910946369171],[119,271,75,-0.5423057191073895],[119,271,76,-0.541828878223896],[119,271,77,-0.5401435866951942],[119,271,78,-0.5372896827757359],[119,271,79,-0.5339196994900703],[119,272,64,-0.5433533973991871],[119,272,65,-0.5427252277731895],[119,272,66,-0.5410686656832695],[119,272,67,-0.5389561280608177],[119,272,68,-0.5372505597770214],[119,272,69,-0.5365519747138023],[119,272,70,-0.5367590710520744],[119,272,71,-0.5373488739132881],[119,272,72,-0.5385580025613308],[119,272,73,-0.5402677766978741],[119,272,74,-0.5416910946369171],[119,272,75,-0.5423057191073895],[119,272,76,-0.541828878223896],[119,272,77,-0.5401435866951942],[119,272,78,-0.5372896827757359],[119,272,79,-0.5339196994900703],[119,273,64,-0.5433533973991871],[119,273,65,-0.5427252277731895],[119,273,66,-0.5410686656832695],[119,273,67,-0.5389561280608177],[119,273,68,-0.5372505597770214],[119,273,69,-0.5365519747138023],[119,273,70,-0.5367590710520744],[119,273,71,-0.5373488739132881],[119,273,72,-0.5385580025613308],[119,273,73,-0.5402677766978741],[119,273,74,-0.5416910946369171],[119,273,75,-0.5423057191073895],[119,273,76,-0.541828878223896],[119,273,77,-0.5401435866951942],[119,273,78,-0.5372896827757359],[119,273,79,-0.5339196994900703],[119,274,64,-0.5433533973991871],[119,274,65,-0.5427252277731895],[119,274,66,-0.5410686656832695],[119,274,67,-0.5389561280608177],[119,274,68,-0.5372505597770214],[119,274,69,-0.5365519747138023],[119,274,70,-0.5367590710520744],[119,274,71,-0.5373488739132881],[119,274,72,-0.5385580025613308],[119,274,73,-0.5402677766978741],[119,274,74,-0.5416910946369171],[119,274,75,-0.5423057191073895],[119,274,76,-0.541828878223896],[119,274,77,-0.5401435866951942],[119,274,78,-0.5372896827757359],[119,274,79,-0.5339196994900703],[119,275,64,-0.5433533973991871],[119,275,65,-0.5427252277731895],[119,275,66,-0.5410686656832695],[119,275,67,-0.5389561280608177],[119,275,68,-0.5372505597770214],[119,275,69,-0.5365519747138023],[119,275,70,-0.5367590710520744],[119,275,71,-0.5373488739132881],[119,275,72,-0.5385580025613308],[119,275,73,-0.5402677766978741],[119,275,74,-0.5416910946369171],[119,275,75,-0.5423057191073895],[119,275,76,-0.541828878223896],[119,275,77,-0.5401435866951942],[119,275,78,-0.5372896827757359],[119,275,79,-0.5339196994900703],[119,276,64,-0.5433533973991871],[119,276,65,-0.5427252277731895],[119,276,66,-0.5410686656832695],[119,276,67,-0.5389561280608177],[119,276,68,-0.5372505597770214],[119,276,69,-0.5365519747138023],[119,276,70,-0.5367590710520744],[119,276,71,-0.5373488739132881],[119,276,72,-0.5385580025613308],[119,276,73,-0.5402677766978741],[119,276,74,-0.5416910946369171],[119,276,75,-0.5423057191073895],[119,276,76,-0.541828878223896],[119,276,77,-0.5401435866951942],[119,276,78,-0.5372896827757359],[119,276,79,-0.5339196994900703],[119,277,64,-0.5433533973991871],[119,277,65,-0.5427252277731895],[119,277,66,-0.5410686656832695],[119,277,67,-0.5389561280608177],[119,277,68,-0.5372505597770214],[119,277,69,-0.5365519747138023],[119,277,70,-0.5367590710520744],[119,277,71,-0.5373488739132881],[119,277,72,-0.5385580025613308],[119,277,73,-0.5402677766978741],[119,277,74,-0.5416910946369171],[119,277,75,-0.5423057191073895],[119,277,76,-0.541828878223896],[119,277,77,-0.5401435866951942],[119,277,78,-0.5372896827757359],[119,277,79,-0.5339196994900703],[119,278,64,-0.5433533973991871],[119,278,65,-0.5427252277731895],[119,278,66,-0.5410686656832695],[119,278,67,-0.5389561280608177],[119,278,68,-0.5372505597770214],[119,278,69,-0.5365519747138023],[119,278,70,-0.5367590710520744],[119,278,71,-0.5373488739132881],[119,278,72,-0.5385580025613308],[119,278,73,-0.5402677766978741],[119,278,74,-0.5416910946369171],[119,278,75,-0.5423057191073895],[119,278,76,-0.541828878223896],[119,278,77,-0.5401435866951942],[119,278,78,-0.5372896827757359],[119,278,79,-0.5339196994900703],[119,279,64,-0.5433533973991871],[119,279,65,-0.5427252277731895],[119,279,66,-0.5410686656832695],[119,279,67,-0.5389561280608177],[119,279,68,-0.5372505597770214],[119,279,69,-0.5365519747138023],[119,279,70,-0.5367590710520744],[119,279,71,-0.5373488739132881],[119,279,72,-0.5385580025613308],[119,279,73,-0.5402677766978741],[119,279,74,-0.5416910946369171],[119,279,75,-0.5423057191073895],[119,279,76,-0.541828878223896],[119,279,77,-0.5401435866951942],[119,279,78,-0.5372896827757359],[119,279,79,-0.5339196994900703],[119,280,64,-0.5433533973991871],[119,280,65,-0.5427252277731895],[119,280,66,-0.5410686656832695],[119,280,67,-0.5389561280608177],[119,280,68,-0.5372505597770214],[119,280,69,-0.5365519747138023],[119,280,70,-0.5367590710520744],[119,280,71,-0.5373488739132881],[119,280,72,-0.5385580025613308],[119,280,73,-0.5402677766978741],[119,280,74,-0.5416910946369171],[119,280,75,-0.5423057191073895],[119,280,76,-0.541828878223896],[119,280,77,-0.5401435866951942],[119,280,78,-0.5372896827757359],[119,280,79,-0.5339196994900703],[119,281,64,-0.5433533973991871],[119,281,65,-0.5427252277731895],[119,281,66,-0.5410686656832695],[119,281,67,-0.5389561280608177],[119,281,68,-0.5372505597770214],[119,281,69,-0.5365519747138023],[119,281,70,-0.5367590710520744],[119,281,71,-0.5373488739132881],[119,281,72,-0.5385580025613308],[119,281,73,-0.5402677766978741],[119,281,74,-0.5416910946369171],[119,281,75,-0.5423057191073895],[119,281,76,-0.541828878223896],[119,281,77,-0.5401435866951942],[119,281,78,-0.5372896827757359],[119,281,79,-0.5339196994900703],[119,282,64,-0.5433533973991871],[119,282,65,-0.5427252277731895],[119,282,66,-0.5410686656832695],[119,282,67,-0.5389561280608177],[119,282,68,-0.5372505597770214],[119,282,69,-0.5365519747138023],[119,282,70,-0.5367590710520744],[119,282,71,-0.5373488739132881],[119,282,72,-0.5385580025613308],[119,282,73,-0.5402677766978741],[119,282,74,-0.5416910946369171],[119,282,75,-0.5423057191073895],[119,282,76,-0.541828878223896],[119,282,77,-0.5401435866951942],[119,282,78,-0.5372896827757359],[119,282,79,-0.5339196994900703],[119,283,64,-0.5433533973991871],[119,283,65,-0.5427252277731895],[119,283,66,-0.5410686656832695],[119,283,67,-0.5389561280608177],[119,283,68,-0.5372505597770214],[119,283,69,-0.5365519747138023],[119,283,70,-0.5367590710520744],[119,283,71,-0.5373488739132881],[119,283,72,-0.5385580025613308],[119,283,73,-0.5402677766978741],[119,283,74,-0.5416910946369171],[119,283,75,-0.5423057191073895],[119,283,76,-0.541828878223896],[119,283,77,-0.5401435866951942],[119,283,78,-0.5372896827757359],[119,283,79,-0.5339196994900703],[119,284,64,-0.5433533973991871],[119,284,65,-0.5427252277731895],[119,284,66,-0.5410686656832695],[119,284,67,-0.5389561280608177],[119,284,68,-0.5372505597770214],[119,284,69,-0.5365519747138023],[119,284,70,-0.5367590710520744],[119,284,71,-0.5373488739132881],[119,284,72,-0.5385580025613308],[119,284,73,-0.5402677766978741],[119,284,74,-0.5416910946369171],[119,284,75,-0.5423057191073895],[119,284,76,-0.541828878223896],[119,284,77,-0.5401435866951942],[119,284,78,-0.5372896827757359],[119,284,79,-0.5339196994900703],[119,285,64,-0.5433533973991871],[119,285,65,-0.5427252277731895],[119,285,66,-0.5410686656832695],[119,285,67,-0.5389561280608177],[119,285,68,-0.5372505597770214],[119,285,69,-0.5365519747138023],[119,285,70,-0.5367590710520744],[119,285,71,-0.5373488739132881],[119,285,72,-0.5385580025613308],[119,285,73,-0.5402677766978741],[119,285,74,-0.5416910946369171],[119,285,75,-0.5423057191073895],[119,285,76,-0.541828878223896],[119,285,77,-0.5401435866951942],[119,285,78,-0.5372896827757359],[119,285,79,-0.5339196994900703],[119,286,64,-0.5433533973991871],[119,286,65,-0.5427252277731895],[119,286,66,-0.5410686656832695],[119,286,67,-0.5389561280608177],[119,286,68,-0.5372505597770214],[119,286,69,-0.5365519747138023],[119,286,70,-0.5367590710520744],[119,286,71,-0.5373488739132881],[119,286,72,-0.5385580025613308],[119,286,73,-0.5402677766978741],[119,286,74,-0.5416910946369171],[119,286,75,-0.5423057191073895],[119,286,76,-0.541828878223896],[119,286,77,-0.5401435866951942],[119,286,78,-0.5372896827757359],[119,286,79,-0.5339196994900703],[119,287,64,-0.5433533973991871],[119,287,65,-0.5427252277731895],[119,287,66,-0.5410686656832695],[119,287,67,-0.5389561280608177],[119,287,68,-0.5372505597770214],[119,287,69,-0.5365519747138023],[119,287,70,-0.5367590710520744],[119,287,71,-0.5373488739132881],[119,287,72,-0.5385580025613308],[119,287,73,-0.5402677766978741],[119,287,74,-0.5416910946369171],[119,287,75,-0.5423057191073895],[119,287,76,-0.541828878223896],[119,287,77,-0.5401435866951942],[119,287,78,-0.5372896827757359],[119,287,79,-0.5339196994900703],[119,288,64,-0.5433533973991871],[119,288,65,-0.5427252277731895],[119,288,66,-0.5410686656832695],[119,288,67,-0.5389561280608177],[119,288,68,-0.5372505597770214],[119,288,69,-0.5365519747138023],[119,288,70,-0.5367590710520744],[119,288,71,-0.5373488739132881],[119,288,72,-0.5385580025613308],[119,288,73,-0.5402677766978741],[119,288,74,-0.5416910946369171],[119,288,75,-0.5423057191073895],[119,288,76,-0.541828878223896],[119,288,77,-0.5401435866951942],[119,288,78,-0.5372896827757359],[119,288,79,-0.5339196994900703],[119,289,64,-0.5433533973991871],[119,289,65,-0.5427252277731895],[119,289,66,-0.5410686656832695],[119,289,67,-0.5389561280608177],[119,289,68,-0.5372505597770214],[119,289,69,-0.5365519747138023],[119,289,70,-0.5367590710520744],[119,289,71,-0.5373488739132881],[119,289,72,-0.5385580025613308],[119,289,73,-0.5402677766978741],[119,289,74,-0.5416910946369171],[119,289,75,-0.5423057191073895],[119,289,76,-0.541828878223896],[119,289,77,-0.5401435866951942],[119,289,78,-0.5372896827757359],[119,289,79,-0.5339196994900703],[119,290,64,-0.5433533973991871],[119,290,65,-0.5427252277731895],[119,290,66,-0.5410686656832695],[119,290,67,-0.5389561280608177],[119,290,68,-0.5372505597770214],[119,290,69,-0.5365519747138023],[119,290,70,-0.5367590710520744],[119,290,71,-0.5373488739132881],[119,290,72,-0.5385580025613308],[119,290,73,-0.5402677766978741],[119,290,74,-0.5416910946369171],[119,290,75,-0.5423057191073895],[119,290,76,-0.541828878223896],[119,290,77,-0.5401435866951942],[119,290,78,-0.5372896827757359],[119,290,79,-0.5339196994900703],[119,291,64,-0.5433533973991871],[119,291,65,-0.5427252277731895],[119,291,66,-0.5410686656832695],[119,291,67,-0.5389561280608177],[119,291,68,-0.5372505597770214],[119,291,69,-0.5365519747138023],[119,291,70,-0.5367590710520744],[119,291,71,-0.5373488739132881],[119,291,72,-0.5385580025613308],[119,291,73,-0.5402677766978741],[119,291,74,-0.5416910946369171],[119,291,75,-0.5423057191073895],[119,291,76,-0.541828878223896],[119,291,77,-0.5401435866951942],[119,291,78,-0.5372896827757359],[119,291,79,-0.5339196994900703],[119,292,64,-0.5433533973991871],[119,292,65,-0.5427252277731895],[119,292,66,-0.5410686656832695],[119,292,67,-0.5389561280608177],[119,292,68,-0.5372505597770214],[119,292,69,-0.5365519747138023],[119,292,70,-0.5367590710520744],[119,292,71,-0.5373488739132881],[119,292,72,-0.5385580025613308],[119,292,73,-0.5402677766978741],[119,292,74,-0.5416910946369171],[119,292,75,-0.5423057191073895],[119,292,76,-0.541828878223896],[119,292,77,-0.5401435866951942],[119,292,78,-0.5372896827757359],[119,292,79,-0.5339196994900703],[119,293,64,-0.5433533973991871],[119,293,65,-0.5427252277731895],[119,293,66,-0.5410686656832695],[119,293,67,-0.5389561280608177],[119,293,68,-0.5372505597770214],[119,293,69,-0.5365519747138023],[119,293,70,-0.5367590710520744],[119,293,71,-0.5373488739132881],[119,293,72,-0.5385580025613308],[119,293,73,-0.5402677766978741],[119,293,74,-0.5416910946369171],[119,293,75,-0.5423057191073895],[119,293,76,-0.541828878223896],[119,293,77,-0.5401435866951942],[119,293,78,-0.5372896827757359],[119,293,79,-0.5339196994900703],[119,294,64,-0.5433533973991871],[119,294,65,-0.5427252277731895],[119,294,66,-0.5410686656832695],[119,294,67,-0.5389561280608177],[119,294,68,-0.5372505597770214],[119,294,69,-0.5365519747138023],[119,294,70,-0.5367590710520744],[119,294,71,-0.5373488739132881],[119,294,72,-0.5385580025613308],[119,294,73,-0.5402677766978741],[119,294,74,-0.5416910946369171],[119,294,75,-0.5423057191073895],[119,294,76,-0.541828878223896],[119,294,77,-0.5401435866951942],[119,294,78,-0.5372896827757359],[119,294,79,-0.5339196994900703],[119,295,64,-0.5433533973991871],[119,295,65,-0.5427252277731895],[119,295,66,-0.5410686656832695],[119,295,67,-0.5389561280608177],[119,295,68,-0.5372505597770214],[119,295,69,-0.5365519747138023],[119,295,70,-0.5367590710520744],[119,295,71,-0.5373488739132881],[119,295,72,-0.5385580025613308],[119,295,73,-0.5402677766978741],[119,295,74,-0.5416910946369171],[119,295,75,-0.5423057191073895],[119,295,76,-0.541828878223896],[119,295,77,-0.5401435866951942],[119,295,78,-0.5372896827757359],[119,295,79,-0.5339196994900703],[119,296,64,-0.5433533973991871],[119,296,65,-0.5427252277731895],[119,296,66,-0.5410686656832695],[119,296,67,-0.5389561280608177],[119,296,68,-0.5372505597770214],[119,296,69,-0.5365519747138023],[119,296,70,-0.5367590710520744],[119,296,71,-0.5373488739132881],[119,296,72,-0.5385580025613308],[119,296,73,-0.5402677766978741],[119,296,74,-0.5416910946369171],[119,296,75,-0.5423057191073895],[119,296,76,-0.541828878223896],[119,296,77,-0.5401435866951942],[119,296,78,-0.5372896827757359],[119,296,79,-0.5339196994900703],[119,297,64,-0.5433533973991871],[119,297,65,-0.5427252277731895],[119,297,66,-0.5410686656832695],[119,297,67,-0.5389561280608177],[119,297,68,-0.5372505597770214],[119,297,69,-0.5365519747138023],[119,297,70,-0.5367590710520744],[119,297,71,-0.5373488739132881],[119,297,72,-0.5385580025613308],[119,297,73,-0.5402677766978741],[119,297,74,-0.5416910946369171],[119,297,75,-0.5423057191073895],[119,297,76,-0.541828878223896],[119,297,77,-0.5401435866951942],[119,297,78,-0.5372896827757359],[119,297,79,-0.5339196994900703],[119,298,64,-0.5433533973991871],[119,298,65,-0.5427252277731895],[119,298,66,-0.5410686656832695],[119,298,67,-0.5389561280608177],[119,298,68,-0.5372505597770214],[119,298,69,-0.5365519747138023],[119,298,70,-0.5367590710520744],[119,298,71,-0.5373488739132881],[119,298,72,-0.5385580025613308],[119,298,73,-0.5402677766978741],[119,298,74,-0.5416910946369171],[119,298,75,-0.5423057191073895],[119,298,76,-0.541828878223896],[119,298,77,-0.5401435866951942],[119,298,78,-0.5372896827757359],[119,298,79,-0.5339196994900703],[119,299,64,-0.5433533973991871],[119,299,65,-0.5427252277731895],[119,299,66,-0.5410686656832695],[119,299,67,-0.5389561280608177],[119,299,68,-0.5372505597770214],[119,299,69,-0.5365519747138023],[119,299,70,-0.5367590710520744],[119,299,71,-0.5373488739132881],[119,299,72,-0.5385580025613308],[119,299,73,-0.5402677766978741],[119,299,74,-0.5416910946369171],[119,299,75,-0.5423057191073895],[119,299,76,-0.541828878223896],[119,299,77,-0.5401435866951942],[119,299,78,-0.5372896827757359],[119,299,79,-0.5339196994900703],[119,300,64,-0.5433533973991871],[119,300,65,-0.5427252277731895],[119,300,66,-0.5410686656832695],[119,300,67,-0.5389561280608177],[119,300,68,-0.5372505597770214],[119,300,69,-0.5365519747138023],[119,300,70,-0.5367590710520744],[119,300,71,-0.5373488739132881],[119,300,72,-0.5385580025613308],[119,300,73,-0.5402677766978741],[119,300,74,-0.5416910946369171],[119,300,75,-0.5423057191073895],[119,300,76,-0.541828878223896],[119,300,77,-0.5401435866951942],[119,300,78,-0.5372896827757359],[119,300,79,-0.5339196994900703],[119,301,64,-0.5433533973991871],[119,301,65,-0.5427252277731895],[119,301,66,-0.5410686656832695],[119,301,67,-0.5389561280608177],[119,301,68,-0.5372505597770214],[119,301,69,-0.5365519747138023],[119,301,70,-0.5367590710520744],[119,301,71,-0.5373488739132881],[119,301,72,-0.5385580025613308],[119,301,73,-0.5402677766978741],[119,301,74,-0.5416910946369171],[119,301,75,-0.5423057191073895],[119,301,76,-0.541828878223896],[119,301,77,-0.5401435866951942],[119,301,78,-0.5372896827757359],[119,301,79,-0.5339196994900703],[119,302,64,-0.5433533973991871],[119,302,65,-0.5427252277731895],[119,302,66,-0.5410686656832695],[119,302,67,-0.5389561280608177],[119,302,68,-0.5372505597770214],[119,302,69,-0.5365519747138023],[119,302,70,-0.5367590710520744],[119,302,71,-0.5373488739132881],[119,302,72,-0.5385580025613308],[119,302,73,-0.5402677766978741],[119,302,74,-0.5416910946369171],[119,302,75,-0.5423057191073895],[119,302,76,-0.541828878223896],[119,302,77,-0.5401435866951942],[119,302,78,-0.5372896827757359],[119,302,79,-0.5339196994900703],[119,303,64,-0.5433533973991871],[119,303,65,-0.5427252277731895],[119,303,66,-0.5410686656832695],[119,303,67,-0.5389561280608177],[119,303,68,-0.5372505597770214],[119,303,69,-0.5365519747138023],[119,303,70,-0.5367590710520744],[119,303,71,-0.5373488739132881],[119,303,72,-0.5385580025613308],[119,303,73,-0.5402677766978741],[119,303,74,-0.5416910946369171],[119,303,75,-0.5423057191073895],[119,303,76,-0.541828878223896],[119,303,77,-0.5401435866951942],[119,303,78,-0.5372896827757359],[119,303,79,-0.5339196994900703],[119,304,64,-0.5433533973991871],[119,304,65,-0.5427252277731895],[119,304,66,-0.5410686656832695],[119,304,67,-0.5389561280608177],[119,304,68,-0.5372505597770214],[119,304,69,-0.5365519747138023],[119,304,70,-0.5367590710520744],[119,304,71,-0.5373488739132881],[119,304,72,-0.5385580025613308],[119,304,73,-0.5402677766978741],[119,304,74,-0.5416910946369171],[119,304,75,-0.5423057191073895],[119,304,76,-0.541828878223896],[119,304,77,-0.5401435866951942],[119,304,78,-0.5372896827757359],[119,304,79,-0.5339196994900703],[119,305,64,-0.5433533973991871],[119,305,65,-0.5427252277731895],[119,305,66,-0.5410686656832695],[119,305,67,-0.5389561280608177],[119,305,68,-0.5372505597770214],[119,305,69,-0.5365519747138023],[119,305,70,-0.5367590710520744],[119,305,71,-0.5373488739132881],[119,305,72,-0.5385580025613308],[119,305,73,-0.5402677766978741],[119,305,74,-0.5416910946369171],[119,305,75,-0.5423057191073895],[119,305,76,-0.541828878223896],[119,305,77,-0.5401435866951942],[119,305,78,-0.5372896827757359],[119,305,79,-0.5339196994900703],[119,306,64,-0.5433533973991871],[119,306,65,-0.5427252277731895],[119,306,66,-0.5410686656832695],[119,306,67,-0.5389561280608177],[119,306,68,-0.5372505597770214],[119,306,69,-0.5365519747138023],[119,306,70,-0.5367590710520744],[119,306,71,-0.5373488739132881],[119,306,72,-0.5385580025613308],[119,306,73,-0.5402677766978741],[119,306,74,-0.5416910946369171],[119,306,75,-0.5423057191073895],[119,306,76,-0.541828878223896],[119,306,77,-0.5401435866951942],[119,306,78,-0.5372896827757359],[119,306,79,-0.5339196994900703],[119,307,64,-0.5433533973991871],[119,307,65,-0.5427252277731895],[119,307,66,-0.5410686656832695],[119,307,67,-0.5389561280608177],[119,307,68,-0.5372505597770214],[119,307,69,-0.5365519747138023],[119,307,70,-0.5367590710520744],[119,307,71,-0.5373488739132881],[119,307,72,-0.5385580025613308],[119,307,73,-0.5402677766978741],[119,307,74,-0.5416910946369171],[119,307,75,-0.5423057191073895],[119,307,76,-0.541828878223896],[119,307,77,-0.5401435866951942],[119,307,78,-0.5372896827757359],[119,307,79,-0.5339196994900703],[119,308,64,-0.5433533973991871],[119,308,65,-0.5427252277731895],[119,308,66,-0.5410686656832695],[119,308,67,-0.5389561280608177],[119,308,68,-0.5372505597770214],[119,308,69,-0.5365519747138023],[119,308,70,-0.5367590710520744],[119,308,71,-0.5373488739132881],[119,308,72,-0.5385580025613308],[119,308,73,-0.5402677766978741],[119,308,74,-0.5416910946369171],[119,308,75,-0.5423057191073895],[119,308,76,-0.541828878223896],[119,308,77,-0.5401435866951942],[119,308,78,-0.5372896827757359],[119,308,79,-0.5339196994900703],[119,309,64,-0.5433533973991871],[119,309,65,-0.5427252277731895],[119,309,66,-0.5410686656832695],[119,309,67,-0.5389561280608177],[119,309,68,-0.5372505597770214],[119,309,69,-0.5365519747138023],[119,309,70,-0.5367590710520744],[119,309,71,-0.5373488739132881],[119,309,72,-0.5385580025613308],[119,309,73,-0.5402677766978741],[119,309,74,-0.5416910946369171],[119,309,75,-0.5423057191073895],[119,309,76,-0.541828878223896],[119,309,77,-0.5401435866951942],[119,309,78,-0.5372896827757359],[119,309,79,-0.5339196994900703],[119,310,64,-0.5433533973991871],[119,310,65,-0.5427252277731895],[119,310,66,-0.5410686656832695],[119,310,67,-0.5389561280608177],[119,310,68,-0.5372505597770214],[119,310,69,-0.5365519747138023],[119,310,70,-0.5367590710520744],[119,310,71,-0.5373488739132881],[119,310,72,-0.5385580025613308],[119,310,73,-0.5402677766978741],[119,310,74,-0.5416910946369171],[119,310,75,-0.5423057191073895],[119,310,76,-0.541828878223896],[119,310,77,-0.5401435866951942],[119,310,78,-0.5372896827757359],[119,310,79,-0.5339196994900703],[119,311,64,-0.5433533973991871],[119,311,65,-0.5427252277731895],[119,311,66,-0.5410686656832695],[119,311,67,-0.5389561280608177],[119,311,68,-0.5372505597770214],[119,311,69,-0.5365519747138023],[119,311,70,-0.5367590710520744],[119,311,71,-0.5373488739132881],[119,311,72,-0.5385580025613308],[119,311,73,-0.5402677766978741],[119,311,74,-0.5416910946369171],[119,311,75,-0.5423057191073895],[119,311,76,-0.541828878223896],[119,311,77,-0.5401435866951942],[119,311,78,-0.5372896827757359],[119,311,79,-0.5339196994900703],[119,312,64,-0.5433533973991871],[119,312,65,-0.5427252277731895],[119,312,66,-0.5410686656832695],[119,312,67,-0.5389561280608177],[119,312,68,-0.5372505597770214],[119,312,69,-0.5365519747138023],[119,312,70,-0.5367590710520744],[119,312,71,-0.5373488739132881],[119,312,72,-0.5385580025613308],[119,312,73,-0.5402677766978741],[119,312,74,-0.5416910946369171],[119,312,75,-0.5423057191073895],[119,312,76,-0.541828878223896],[119,312,77,-0.5401435866951942],[119,312,78,-0.5372896827757359],[119,312,79,-0.5339196994900703],[119,313,64,-0.5433533973991871],[119,313,65,-0.5427252277731895],[119,313,66,-0.5410686656832695],[119,313,67,-0.5389561280608177],[119,313,68,-0.5372505597770214],[119,313,69,-0.5365519747138023],[119,313,70,-0.5367590710520744],[119,313,71,-0.5373488739132881],[119,313,72,-0.5385580025613308],[119,313,73,-0.5402677766978741],[119,313,74,-0.5416910946369171],[119,313,75,-0.5423057191073895],[119,313,76,-0.541828878223896],[119,313,77,-0.5401435866951942],[119,313,78,-0.5372896827757359],[119,313,79,-0.5339196994900703],[119,314,64,-0.5433533973991871],[119,314,65,-0.5427252277731895],[119,314,66,-0.5410686656832695],[119,314,67,-0.5389561280608177],[119,314,68,-0.5372505597770214],[119,314,69,-0.5365519747138023],[119,314,70,-0.5367590710520744],[119,314,71,-0.5373488739132881],[119,314,72,-0.5385580025613308],[119,314,73,-0.5402677766978741],[119,314,74,-0.5416910946369171],[119,314,75,-0.5423057191073895],[119,314,76,-0.541828878223896],[119,314,77,-0.5401435866951942],[119,314,78,-0.5372896827757359],[119,314,79,-0.5339196994900703],[119,315,64,-0.5433533973991871],[119,315,65,-0.5427252277731895],[119,315,66,-0.5410686656832695],[119,315,67,-0.5389561280608177],[119,315,68,-0.5372505597770214],[119,315,69,-0.5365519747138023],[119,315,70,-0.5367590710520744],[119,315,71,-0.5373488739132881],[119,315,72,-0.5385580025613308],[119,315,73,-0.5402677766978741],[119,315,74,-0.5416910946369171],[119,315,75,-0.5423057191073895],[119,315,76,-0.541828878223896],[119,315,77,-0.5401435866951942],[119,315,78,-0.5372896827757359],[119,315,79,-0.5339196994900703],[119,316,64,-0.5433533973991871],[119,316,65,-0.5427252277731895],[119,316,66,-0.5410686656832695],[119,316,67,-0.5389561280608177],[119,316,68,-0.5372505597770214],[119,316,69,-0.5365519747138023],[119,316,70,-0.5367590710520744],[119,316,71,-0.5373488739132881],[119,316,72,-0.5385580025613308],[119,316,73,-0.5402677766978741],[119,316,74,-0.5416910946369171],[119,316,75,-0.5423057191073895],[119,316,76,-0.541828878223896],[119,316,77,-0.5401435866951942],[119,316,78,-0.5372896827757359],[119,316,79,-0.5339196994900703],[119,317,64,-0.5433533973991871],[119,317,65,-0.5427252277731895],[119,317,66,-0.5410686656832695],[119,317,67,-0.5389561280608177],[119,317,68,-0.5372505597770214],[119,317,69,-0.5365519747138023],[119,317,70,-0.5367590710520744],[119,317,71,-0.5373488739132881],[119,317,72,-0.5385580025613308],[119,317,73,-0.5402677766978741],[119,317,74,-0.5416910946369171],[119,317,75,-0.5423057191073895],[119,317,76,-0.541828878223896],[119,317,77,-0.5401435866951942],[119,317,78,-0.5372896827757359],[119,317,79,-0.5339196994900703],[119,318,64,-0.5433533973991871],[119,318,65,-0.5427252277731895],[119,318,66,-0.5410686656832695],[119,318,67,-0.5389561280608177],[119,318,68,-0.5372505597770214],[119,318,69,-0.5365519747138023],[119,318,70,-0.5367590710520744],[119,318,71,-0.5373488739132881],[119,318,72,-0.5385580025613308],[119,318,73,-0.5402677766978741],[119,318,74,-0.5416910946369171],[119,318,75,-0.5423057191073895],[119,318,76,-0.541828878223896],[119,318,77,-0.5401435866951942],[119,318,78,-0.5372896827757359],[119,318,79,-0.5339196994900703],[119,319,64,-0.5433533973991871],[119,319,65,-0.5427252277731895],[119,319,66,-0.5410686656832695],[119,319,67,-0.5389561280608177],[119,319,68,-0.5372505597770214],[119,319,69,-0.5365519747138023],[119,319,70,-0.5367590710520744],[119,319,71,-0.5373488739132881],[119,319,72,-0.5385580025613308],[119,319,73,-0.5402677766978741],[119,319,74,-0.5416910946369171],[119,319,75,-0.5423057191073895],[119,319,76,-0.541828878223896],[119,319,77,-0.5401435866951942],[119,319,78,-0.5372896827757359],[119,319,79,-0.5339196994900703],[120,-64,64,-0.5461561381816864],[120,-64,65,-0.5455079823732376],[120,-64,66,-0.5438496991991997],[120,-64,67,-0.5418883860111237],[120,-64,68,-0.54057876765728],[120,-64,69,-0.540533009916544],[120,-64,70,-0.5415988229215145],[120,-64,71,-0.5431684888899326],[120,-64,72,-0.5453684069216251],[120,-64,73,-0.5474954880774021],[120,-64,74,-0.5486784763634205],[120,-64,75,-0.5487280450761318],[120,-64,76,-0.5475300811231136],[120,-64,77,-0.5451569445431232],[120,-64,78,-0.5418212004005909],[120,-64,79,-0.5380158722400665],[120,-63,64,-0.5461561381816864],[120,-63,65,-0.5455079823732376],[120,-63,66,-0.5438496991991997],[120,-63,67,-0.5418883860111237],[120,-63,68,-0.54057876765728],[120,-63,69,-0.540533009916544],[120,-63,70,-0.5415988229215145],[120,-63,71,-0.5431684888899326],[120,-63,72,-0.5453684069216251],[120,-63,73,-0.5474954880774021],[120,-63,74,-0.5486784763634205],[120,-63,75,-0.5487280450761318],[120,-63,76,-0.5475300811231136],[120,-63,77,-0.5451569445431232],[120,-63,78,-0.5418212004005909],[120,-63,79,-0.5380158722400665],[120,-62,64,-0.5461561381816864],[120,-62,65,-0.5455079823732376],[120,-62,66,-0.5438496991991997],[120,-62,67,-0.5418883860111237],[120,-62,68,-0.54057876765728],[120,-62,69,-0.540533009916544],[120,-62,70,-0.5415988229215145],[120,-62,71,-0.5431684888899326],[120,-62,72,-0.5453684069216251],[120,-62,73,-0.5474954880774021],[120,-62,74,-0.5486784763634205],[120,-62,75,-0.5487280450761318],[120,-62,76,-0.5475300811231136],[120,-62,77,-0.5451569445431232],[120,-62,78,-0.5418212004005909],[120,-62,79,-0.5380158722400665],[120,-61,64,-0.5461561381816864],[120,-61,65,-0.5455079823732376],[120,-61,66,-0.5438496991991997],[120,-61,67,-0.5418883860111237],[120,-61,68,-0.54057876765728],[120,-61,69,-0.540533009916544],[120,-61,70,-0.5415988229215145],[120,-61,71,-0.5431684888899326],[120,-61,72,-0.5453684069216251],[120,-61,73,-0.5474954880774021],[120,-61,74,-0.5486784763634205],[120,-61,75,-0.5487280450761318],[120,-61,76,-0.5475300811231136],[120,-61,77,-0.5451569445431232],[120,-61,78,-0.5418212004005909],[120,-61,79,-0.5380158722400665],[120,-60,64,-0.5461561381816864],[120,-60,65,-0.5455079823732376],[120,-60,66,-0.5438496991991997],[120,-60,67,-0.5418883860111237],[120,-60,68,-0.54057876765728],[120,-60,69,-0.540533009916544],[120,-60,70,-0.5415988229215145],[120,-60,71,-0.5431684888899326],[120,-60,72,-0.5453684069216251],[120,-60,73,-0.5474954880774021],[120,-60,74,-0.5486784763634205],[120,-60,75,-0.5487280450761318],[120,-60,76,-0.5475300811231136],[120,-60,77,-0.5451569445431232],[120,-60,78,-0.5418212004005909],[120,-60,79,-0.5380158722400665],[120,-59,64,-0.5461561381816864],[120,-59,65,-0.5455079823732376],[120,-59,66,-0.5438496991991997],[120,-59,67,-0.5418883860111237],[120,-59,68,-0.54057876765728],[120,-59,69,-0.540533009916544],[120,-59,70,-0.5415988229215145],[120,-59,71,-0.5431684888899326],[120,-59,72,-0.5453684069216251],[120,-59,73,-0.5474954880774021],[120,-59,74,-0.5486784763634205],[120,-59,75,-0.5487280450761318],[120,-59,76,-0.5475300811231136],[120,-59,77,-0.5451569445431232],[120,-59,78,-0.5418212004005909],[120,-59,79,-0.5380158722400665],[120,-58,64,-0.5461561381816864],[120,-58,65,-0.5455079823732376],[120,-58,66,-0.5438496991991997],[120,-58,67,-0.5418883860111237],[120,-58,68,-0.54057876765728],[120,-58,69,-0.540533009916544],[120,-58,70,-0.5415988229215145],[120,-58,71,-0.5431684888899326],[120,-58,72,-0.5453684069216251],[120,-58,73,-0.5474954880774021],[120,-58,74,-0.5486784763634205],[120,-58,75,-0.5487280450761318],[120,-58,76,-0.5475300811231136],[120,-58,77,-0.5451569445431232],[120,-58,78,-0.5418212004005909],[120,-58,79,-0.5380158722400665],[120,-57,64,-0.5461561381816864],[120,-57,65,-0.5455079823732376],[120,-57,66,-0.5438496991991997],[120,-57,67,-0.5418883860111237],[120,-57,68,-0.54057876765728],[120,-57,69,-0.540533009916544],[120,-57,70,-0.5415988229215145],[120,-57,71,-0.5431684888899326],[120,-57,72,-0.5453684069216251],[120,-57,73,-0.5474954880774021],[120,-57,74,-0.5486784763634205],[120,-57,75,-0.5487280450761318],[120,-57,76,-0.5475300811231136],[120,-57,77,-0.5451569445431232],[120,-57,78,-0.5418212004005909],[120,-57,79,-0.5380158722400665],[120,-56,64,-0.5461561381816864],[120,-56,65,-0.5455079823732376],[120,-56,66,-0.5438496991991997],[120,-56,67,-0.5418883860111237],[120,-56,68,-0.54057876765728],[120,-56,69,-0.540533009916544],[120,-56,70,-0.5415988229215145],[120,-56,71,-0.5431684888899326],[120,-56,72,-0.5453684069216251],[120,-56,73,-0.5474954880774021],[120,-56,74,-0.5486784763634205],[120,-56,75,-0.5487280450761318],[120,-56,76,-0.5475300811231136],[120,-56,77,-0.5451569445431232],[120,-56,78,-0.5418212004005909],[120,-56,79,-0.5380158722400665],[120,-55,64,-0.5461561381816864],[120,-55,65,-0.5455079823732376],[120,-55,66,-0.5438496991991997],[120,-55,67,-0.5418883860111237],[120,-55,68,-0.54057876765728],[120,-55,69,-0.540533009916544],[120,-55,70,-0.5415988229215145],[120,-55,71,-0.5431684888899326],[120,-55,72,-0.5453684069216251],[120,-55,73,-0.5474954880774021],[120,-55,74,-0.5486784763634205],[120,-55,75,-0.5487280450761318],[120,-55,76,-0.5475300811231136],[120,-55,77,-0.5451569445431232],[120,-55,78,-0.5418212004005909],[120,-55,79,-0.5380158722400665],[120,-54,64,-0.5461561381816864],[120,-54,65,-0.5455079823732376],[120,-54,66,-0.5438496991991997],[120,-54,67,-0.5418883860111237],[120,-54,68,-0.54057876765728],[120,-54,69,-0.540533009916544],[120,-54,70,-0.5415988229215145],[120,-54,71,-0.5431684888899326],[120,-54,72,-0.5453684069216251],[120,-54,73,-0.5474954880774021],[120,-54,74,-0.5486784763634205],[120,-54,75,-0.5487280450761318],[120,-54,76,-0.5475300811231136],[120,-54,77,-0.5451569445431232],[120,-54,78,-0.5418212004005909],[120,-54,79,-0.5380158722400665],[120,-53,64,-0.5461561381816864],[120,-53,65,-0.5455079823732376],[120,-53,66,-0.5438496991991997],[120,-53,67,-0.5418883860111237],[120,-53,68,-0.54057876765728],[120,-53,69,-0.540533009916544],[120,-53,70,-0.5415988229215145],[120,-53,71,-0.5431684888899326],[120,-53,72,-0.5453684069216251],[120,-53,73,-0.5474954880774021],[120,-53,74,-0.5486784763634205],[120,-53,75,-0.5487280450761318],[120,-53,76,-0.5475300811231136],[120,-53,77,-0.5451569445431232],[120,-53,78,-0.5418212004005909],[120,-53,79,-0.5380158722400665],[120,-52,64,-0.5461561381816864],[120,-52,65,-0.5455079823732376],[120,-52,66,-0.5438496991991997],[120,-52,67,-0.5418883860111237],[120,-52,68,-0.54057876765728],[120,-52,69,-0.540533009916544],[120,-52,70,-0.5415988229215145],[120,-52,71,-0.5431684888899326],[120,-52,72,-0.5453684069216251],[120,-52,73,-0.5474954880774021],[120,-52,74,-0.5486784763634205],[120,-52,75,-0.5487280450761318],[120,-52,76,-0.5475300811231136],[120,-52,77,-0.5451569445431232],[120,-52,78,-0.5418212004005909],[120,-52,79,-0.5380158722400665],[120,-51,64,-0.5461561381816864],[120,-51,65,-0.5455079823732376],[120,-51,66,-0.5438496991991997],[120,-51,67,-0.5418883860111237],[120,-51,68,-0.54057876765728],[120,-51,69,-0.540533009916544],[120,-51,70,-0.5415988229215145],[120,-51,71,-0.5431684888899326],[120,-51,72,-0.5453684069216251],[120,-51,73,-0.5474954880774021],[120,-51,74,-0.5486784763634205],[120,-51,75,-0.5487280450761318],[120,-51,76,-0.5475300811231136],[120,-51,77,-0.5451569445431232],[120,-51,78,-0.5418212004005909],[120,-51,79,-0.5380158722400665],[120,-50,64,-0.5461561381816864],[120,-50,65,-0.5455079823732376],[120,-50,66,-0.5438496991991997],[120,-50,67,-0.5418883860111237],[120,-50,68,-0.54057876765728],[120,-50,69,-0.540533009916544],[120,-50,70,-0.5415988229215145],[120,-50,71,-0.5431684888899326],[120,-50,72,-0.5453684069216251],[120,-50,73,-0.5474954880774021],[120,-50,74,-0.5486784763634205],[120,-50,75,-0.5487280450761318],[120,-50,76,-0.5475300811231136],[120,-50,77,-0.5451569445431232],[120,-50,78,-0.5418212004005909],[120,-50,79,-0.5380158722400665],[120,-49,64,-0.5461561381816864],[120,-49,65,-0.5455079823732376],[120,-49,66,-0.5438496991991997],[120,-49,67,-0.5418883860111237],[120,-49,68,-0.54057876765728],[120,-49,69,-0.540533009916544],[120,-49,70,-0.5415988229215145],[120,-49,71,-0.5431684888899326],[120,-49,72,-0.5453684069216251],[120,-49,73,-0.5474954880774021],[120,-49,74,-0.5486784763634205],[120,-49,75,-0.5487280450761318],[120,-49,76,-0.5475300811231136],[120,-49,77,-0.5451569445431232],[120,-49,78,-0.5418212004005909],[120,-49,79,-0.5380158722400665],[120,-48,64,-0.5461561381816864],[120,-48,65,-0.5455079823732376],[120,-48,66,-0.5438496991991997],[120,-48,67,-0.5418883860111237],[120,-48,68,-0.54057876765728],[120,-48,69,-0.540533009916544],[120,-48,70,-0.5415988229215145],[120,-48,71,-0.5431684888899326],[120,-48,72,-0.5453684069216251],[120,-48,73,-0.5474954880774021],[120,-48,74,-0.5486784763634205],[120,-48,75,-0.5487280450761318],[120,-48,76,-0.5475300811231136],[120,-48,77,-0.5451569445431232],[120,-48,78,-0.5418212004005909],[120,-48,79,-0.5380158722400665],[120,-47,64,-0.5461561381816864],[120,-47,65,-0.5455079823732376],[120,-47,66,-0.5438496991991997],[120,-47,67,-0.5418883860111237],[120,-47,68,-0.54057876765728],[120,-47,69,-0.540533009916544],[120,-47,70,-0.5415988229215145],[120,-47,71,-0.5431684888899326],[120,-47,72,-0.5453684069216251],[120,-47,73,-0.5474954880774021],[120,-47,74,-0.5486784763634205],[120,-47,75,-0.5487280450761318],[120,-47,76,-0.5475300811231136],[120,-47,77,-0.5451569445431232],[120,-47,78,-0.5418212004005909],[120,-47,79,-0.5380158722400665],[120,-46,64,-0.5461561381816864],[120,-46,65,-0.5455079823732376],[120,-46,66,-0.5438496991991997],[120,-46,67,-0.5418883860111237],[120,-46,68,-0.54057876765728],[120,-46,69,-0.540533009916544],[120,-46,70,-0.5415988229215145],[120,-46,71,-0.5431684888899326],[120,-46,72,-0.5453684069216251],[120,-46,73,-0.5474954880774021],[120,-46,74,-0.5486784763634205],[120,-46,75,-0.5487280450761318],[120,-46,76,-0.5475300811231136],[120,-46,77,-0.5451569445431232],[120,-46,78,-0.5418212004005909],[120,-46,79,-0.5380158722400665],[120,-45,64,-0.5461561381816864],[120,-45,65,-0.5455079823732376],[120,-45,66,-0.5438496991991997],[120,-45,67,-0.5418883860111237],[120,-45,68,-0.54057876765728],[120,-45,69,-0.540533009916544],[120,-45,70,-0.5415988229215145],[120,-45,71,-0.5431684888899326],[120,-45,72,-0.5453684069216251],[120,-45,73,-0.5474954880774021],[120,-45,74,-0.5486784763634205],[120,-45,75,-0.5487280450761318],[120,-45,76,-0.5475300811231136],[120,-45,77,-0.5451569445431232],[120,-45,78,-0.5418212004005909],[120,-45,79,-0.5380158722400665],[120,-44,64,-0.5461561381816864],[120,-44,65,-0.5455079823732376],[120,-44,66,-0.5438496991991997],[120,-44,67,-0.5418883860111237],[120,-44,68,-0.54057876765728],[120,-44,69,-0.540533009916544],[120,-44,70,-0.5415988229215145],[120,-44,71,-0.5431684888899326],[120,-44,72,-0.5453684069216251],[120,-44,73,-0.5474954880774021],[120,-44,74,-0.5486784763634205],[120,-44,75,-0.5487280450761318],[120,-44,76,-0.5475300811231136],[120,-44,77,-0.5451569445431232],[120,-44,78,-0.5418212004005909],[120,-44,79,-0.5380158722400665],[120,-43,64,-0.5461561381816864],[120,-43,65,-0.5455079823732376],[120,-43,66,-0.5438496991991997],[120,-43,67,-0.5418883860111237],[120,-43,68,-0.54057876765728],[120,-43,69,-0.540533009916544],[120,-43,70,-0.5415988229215145],[120,-43,71,-0.5431684888899326],[120,-43,72,-0.5453684069216251],[120,-43,73,-0.5474954880774021],[120,-43,74,-0.5486784763634205],[120,-43,75,-0.5487280450761318],[120,-43,76,-0.5475300811231136],[120,-43,77,-0.5451569445431232],[120,-43,78,-0.5418212004005909],[120,-43,79,-0.5380158722400665],[120,-42,64,-0.5461561381816864],[120,-42,65,-0.5455079823732376],[120,-42,66,-0.5438496991991997],[120,-42,67,-0.5418883860111237],[120,-42,68,-0.54057876765728],[120,-42,69,-0.540533009916544],[120,-42,70,-0.5415988229215145],[120,-42,71,-0.5431684888899326],[120,-42,72,-0.5453684069216251],[120,-42,73,-0.5474954880774021],[120,-42,74,-0.5486784763634205],[120,-42,75,-0.5487280450761318],[120,-42,76,-0.5475300811231136],[120,-42,77,-0.5451569445431232],[120,-42,78,-0.5418212004005909],[120,-42,79,-0.5380158722400665],[120,-41,64,-0.5461561381816864],[120,-41,65,-0.5455079823732376],[120,-41,66,-0.5438496991991997],[120,-41,67,-0.5418883860111237],[120,-41,68,-0.54057876765728],[120,-41,69,-0.540533009916544],[120,-41,70,-0.5415988229215145],[120,-41,71,-0.5431684888899326],[120,-41,72,-0.5453684069216251],[120,-41,73,-0.5474954880774021],[120,-41,74,-0.5486784763634205],[120,-41,75,-0.5487280450761318],[120,-41,76,-0.5475300811231136],[120,-41,77,-0.5451569445431232],[120,-41,78,-0.5418212004005909],[120,-41,79,-0.5380158722400665],[120,-40,64,-0.5461561381816864],[120,-40,65,-0.5455079823732376],[120,-40,66,-0.5438496991991997],[120,-40,67,-0.5418883860111237],[120,-40,68,-0.54057876765728],[120,-40,69,-0.540533009916544],[120,-40,70,-0.5415988229215145],[120,-40,71,-0.5431684888899326],[120,-40,72,-0.5453684069216251],[120,-40,73,-0.5474954880774021],[120,-40,74,-0.5486784763634205],[120,-40,75,-0.5487280450761318],[120,-40,76,-0.5475300811231136],[120,-40,77,-0.5451569445431232],[120,-40,78,-0.5418212004005909],[120,-40,79,-0.5380158722400665],[120,-39,64,-0.5461561381816864],[120,-39,65,-0.5455079823732376],[120,-39,66,-0.5438496991991997],[120,-39,67,-0.5418883860111237],[120,-39,68,-0.54057876765728],[120,-39,69,-0.540533009916544],[120,-39,70,-0.5415988229215145],[120,-39,71,-0.5431684888899326],[120,-39,72,-0.5453684069216251],[120,-39,73,-0.5474954880774021],[120,-39,74,-0.5486784763634205],[120,-39,75,-0.5487280450761318],[120,-39,76,-0.5475300811231136],[120,-39,77,-0.5451569445431232],[120,-39,78,-0.5418212004005909],[120,-39,79,-0.5380158722400665],[120,-38,64,-0.5461561381816864],[120,-38,65,-0.5455079823732376],[120,-38,66,-0.5438496991991997],[120,-38,67,-0.5418883860111237],[120,-38,68,-0.54057876765728],[120,-38,69,-0.540533009916544],[120,-38,70,-0.5415988229215145],[120,-38,71,-0.5431684888899326],[120,-38,72,-0.5453684069216251],[120,-38,73,-0.5474954880774021],[120,-38,74,-0.5486784763634205],[120,-38,75,-0.5487280450761318],[120,-38,76,-0.5475300811231136],[120,-38,77,-0.5451569445431232],[120,-38,78,-0.5418212004005909],[120,-38,79,-0.5380158722400665],[120,-37,64,-0.5461561381816864],[120,-37,65,-0.5455079823732376],[120,-37,66,-0.5438496991991997],[120,-37,67,-0.5418883860111237],[120,-37,68,-0.54057876765728],[120,-37,69,-0.540533009916544],[120,-37,70,-0.5415988229215145],[120,-37,71,-0.5431684888899326],[120,-37,72,-0.5453684069216251],[120,-37,73,-0.5474954880774021],[120,-37,74,-0.5486784763634205],[120,-37,75,-0.5487280450761318],[120,-37,76,-0.5475300811231136],[120,-37,77,-0.5451569445431232],[120,-37,78,-0.5418212004005909],[120,-37,79,-0.5380158722400665],[120,-36,64,-0.5461561381816864],[120,-36,65,-0.5455079823732376],[120,-36,66,-0.5438496991991997],[120,-36,67,-0.5418883860111237],[120,-36,68,-0.54057876765728],[120,-36,69,-0.540533009916544],[120,-36,70,-0.5415988229215145],[120,-36,71,-0.5431684888899326],[120,-36,72,-0.5453684069216251],[120,-36,73,-0.5474954880774021],[120,-36,74,-0.5486784763634205],[120,-36,75,-0.5487280450761318],[120,-36,76,-0.5475300811231136],[120,-36,77,-0.5451569445431232],[120,-36,78,-0.5418212004005909],[120,-36,79,-0.5380158722400665],[120,-35,64,-0.5461561381816864],[120,-35,65,-0.5455079823732376],[120,-35,66,-0.5438496991991997],[120,-35,67,-0.5418883860111237],[120,-35,68,-0.54057876765728],[120,-35,69,-0.540533009916544],[120,-35,70,-0.5415988229215145],[120,-35,71,-0.5431684888899326],[120,-35,72,-0.5453684069216251],[120,-35,73,-0.5474954880774021],[120,-35,74,-0.5486784763634205],[120,-35,75,-0.5487280450761318],[120,-35,76,-0.5475300811231136],[120,-35,77,-0.5451569445431232],[120,-35,78,-0.5418212004005909],[120,-35,79,-0.5380158722400665],[120,-34,64,-0.5461561381816864],[120,-34,65,-0.5455079823732376],[120,-34,66,-0.5438496991991997],[120,-34,67,-0.5418883860111237],[120,-34,68,-0.54057876765728],[120,-34,69,-0.540533009916544],[120,-34,70,-0.5415988229215145],[120,-34,71,-0.5431684888899326],[120,-34,72,-0.5453684069216251],[120,-34,73,-0.5474954880774021],[120,-34,74,-0.5486784763634205],[120,-34,75,-0.5487280450761318],[120,-34,76,-0.5475300811231136],[120,-34,77,-0.5451569445431232],[120,-34,78,-0.5418212004005909],[120,-34,79,-0.5380158722400665],[120,-33,64,-0.5461561381816864],[120,-33,65,-0.5455079823732376],[120,-33,66,-0.5438496991991997],[120,-33,67,-0.5418883860111237],[120,-33,68,-0.54057876765728],[120,-33,69,-0.540533009916544],[120,-33,70,-0.5415988229215145],[120,-33,71,-0.5431684888899326],[120,-33,72,-0.5453684069216251],[120,-33,73,-0.5474954880774021],[120,-33,74,-0.5486784763634205],[120,-33,75,-0.5487280450761318],[120,-33,76,-0.5475300811231136],[120,-33,77,-0.5451569445431232],[120,-33,78,-0.5418212004005909],[120,-33,79,-0.5380158722400665],[120,-32,64,-0.5461561381816864],[120,-32,65,-0.5455079823732376],[120,-32,66,-0.5438496991991997],[120,-32,67,-0.5418883860111237],[120,-32,68,-0.54057876765728],[120,-32,69,-0.540533009916544],[120,-32,70,-0.5415988229215145],[120,-32,71,-0.5431684888899326],[120,-32,72,-0.5453684069216251],[120,-32,73,-0.5474954880774021],[120,-32,74,-0.5486784763634205],[120,-32,75,-0.5487280450761318],[120,-32,76,-0.5475300811231136],[120,-32,77,-0.5451569445431232],[120,-32,78,-0.5418212004005909],[120,-32,79,-0.5380158722400665],[120,-31,64,-0.5461561381816864],[120,-31,65,-0.5455079823732376],[120,-31,66,-0.5438496991991997],[120,-31,67,-0.5418883860111237],[120,-31,68,-0.54057876765728],[120,-31,69,-0.540533009916544],[120,-31,70,-0.5415988229215145],[120,-31,71,-0.5431684888899326],[120,-31,72,-0.5453684069216251],[120,-31,73,-0.5474954880774021],[120,-31,74,-0.5486784763634205],[120,-31,75,-0.5487280450761318],[120,-31,76,-0.5475300811231136],[120,-31,77,-0.5451569445431232],[120,-31,78,-0.5418212004005909],[120,-31,79,-0.5380158722400665],[120,-30,64,-0.5461561381816864],[120,-30,65,-0.5455079823732376],[120,-30,66,-0.5438496991991997],[120,-30,67,-0.5418883860111237],[120,-30,68,-0.54057876765728],[120,-30,69,-0.540533009916544],[120,-30,70,-0.5415988229215145],[120,-30,71,-0.5431684888899326],[120,-30,72,-0.5453684069216251],[120,-30,73,-0.5474954880774021],[120,-30,74,-0.5486784763634205],[120,-30,75,-0.5487280450761318],[120,-30,76,-0.5475300811231136],[120,-30,77,-0.5451569445431232],[120,-30,78,-0.5418212004005909],[120,-30,79,-0.5380158722400665],[120,-29,64,-0.5461561381816864],[120,-29,65,-0.5455079823732376],[120,-29,66,-0.5438496991991997],[120,-29,67,-0.5418883860111237],[120,-29,68,-0.54057876765728],[120,-29,69,-0.540533009916544],[120,-29,70,-0.5415988229215145],[120,-29,71,-0.5431684888899326],[120,-29,72,-0.5453684069216251],[120,-29,73,-0.5474954880774021],[120,-29,74,-0.5486784763634205],[120,-29,75,-0.5487280450761318],[120,-29,76,-0.5475300811231136],[120,-29,77,-0.5451569445431232],[120,-29,78,-0.5418212004005909],[120,-29,79,-0.5380158722400665],[120,-28,64,-0.5461561381816864],[120,-28,65,-0.5455079823732376],[120,-28,66,-0.5438496991991997],[120,-28,67,-0.5418883860111237],[120,-28,68,-0.54057876765728],[120,-28,69,-0.540533009916544],[120,-28,70,-0.5415988229215145],[120,-28,71,-0.5431684888899326],[120,-28,72,-0.5453684069216251],[120,-28,73,-0.5474954880774021],[120,-28,74,-0.5486784763634205],[120,-28,75,-0.5487280450761318],[120,-28,76,-0.5475300811231136],[120,-28,77,-0.5451569445431232],[120,-28,78,-0.5418212004005909],[120,-28,79,-0.5380158722400665],[120,-27,64,-0.5461561381816864],[120,-27,65,-0.5455079823732376],[120,-27,66,-0.5438496991991997],[120,-27,67,-0.5418883860111237],[120,-27,68,-0.54057876765728],[120,-27,69,-0.540533009916544],[120,-27,70,-0.5415988229215145],[120,-27,71,-0.5431684888899326],[120,-27,72,-0.5453684069216251],[120,-27,73,-0.5474954880774021],[120,-27,74,-0.5486784763634205],[120,-27,75,-0.5487280450761318],[120,-27,76,-0.5475300811231136],[120,-27,77,-0.5451569445431232],[120,-27,78,-0.5418212004005909],[120,-27,79,-0.5380158722400665],[120,-26,64,-0.5461561381816864],[120,-26,65,-0.5455079823732376],[120,-26,66,-0.5438496991991997],[120,-26,67,-0.5418883860111237],[120,-26,68,-0.54057876765728],[120,-26,69,-0.540533009916544],[120,-26,70,-0.5415988229215145],[120,-26,71,-0.5431684888899326],[120,-26,72,-0.5453684069216251],[120,-26,73,-0.5474954880774021],[120,-26,74,-0.5486784763634205],[120,-26,75,-0.5487280450761318],[120,-26,76,-0.5475300811231136],[120,-26,77,-0.5451569445431232],[120,-26,78,-0.5418212004005909],[120,-26,79,-0.5380158722400665],[120,-25,64,-0.5461561381816864],[120,-25,65,-0.5455079823732376],[120,-25,66,-0.5438496991991997],[120,-25,67,-0.5418883860111237],[120,-25,68,-0.54057876765728],[120,-25,69,-0.540533009916544],[120,-25,70,-0.5415988229215145],[120,-25,71,-0.5431684888899326],[120,-25,72,-0.5453684069216251],[120,-25,73,-0.5474954880774021],[120,-25,74,-0.5486784763634205],[120,-25,75,-0.5487280450761318],[120,-25,76,-0.5475300811231136],[120,-25,77,-0.5451569445431232],[120,-25,78,-0.5418212004005909],[120,-25,79,-0.5380158722400665],[120,-24,64,-0.5461561381816864],[120,-24,65,-0.5455079823732376],[120,-24,66,-0.5438496991991997],[120,-24,67,-0.5418883860111237],[120,-24,68,-0.54057876765728],[120,-24,69,-0.540533009916544],[120,-24,70,-0.5415988229215145],[120,-24,71,-0.5431684888899326],[120,-24,72,-0.5453684069216251],[120,-24,73,-0.5474954880774021],[120,-24,74,-0.5486784763634205],[120,-24,75,-0.5487280450761318],[120,-24,76,-0.5475300811231136],[120,-24,77,-0.5451569445431232],[120,-24,78,-0.5418212004005909],[120,-24,79,-0.5380158722400665],[120,-23,64,-0.5461561381816864],[120,-23,65,-0.5455079823732376],[120,-23,66,-0.5438496991991997],[120,-23,67,-0.5418883860111237],[120,-23,68,-0.54057876765728],[120,-23,69,-0.540533009916544],[120,-23,70,-0.5415988229215145],[120,-23,71,-0.5431684888899326],[120,-23,72,-0.5453684069216251],[120,-23,73,-0.5474954880774021],[120,-23,74,-0.5486784763634205],[120,-23,75,-0.5487280450761318],[120,-23,76,-0.5475300811231136],[120,-23,77,-0.5451569445431232],[120,-23,78,-0.5418212004005909],[120,-23,79,-0.5380158722400665],[120,-22,64,-0.5461561381816864],[120,-22,65,-0.5455079823732376],[120,-22,66,-0.5438496991991997],[120,-22,67,-0.5418883860111237],[120,-22,68,-0.54057876765728],[120,-22,69,-0.540533009916544],[120,-22,70,-0.5415988229215145],[120,-22,71,-0.5431684888899326],[120,-22,72,-0.5453684069216251],[120,-22,73,-0.5474954880774021],[120,-22,74,-0.5486784763634205],[120,-22,75,-0.5487280450761318],[120,-22,76,-0.5475300811231136],[120,-22,77,-0.5451569445431232],[120,-22,78,-0.5418212004005909],[120,-22,79,-0.5380158722400665],[120,-21,64,-0.5461561381816864],[120,-21,65,-0.5455079823732376],[120,-21,66,-0.5438496991991997],[120,-21,67,-0.5418883860111237],[120,-21,68,-0.54057876765728],[120,-21,69,-0.540533009916544],[120,-21,70,-0.5415988229215145],[120,-21,71,-0.5431684888899326],[120,-21,72,-0.5453684069216251],[120,-21,73,-0.5474954880774021],[120,-21,74,-0.5486784763634205],[120,-21,75,-0.5487280450761318],[120,-21,76,-0.5475300811231136],[120,-21,77,-0.5451569445431232],[120,-21,78,-0.5418212004005909],[120,-21,79,-0.5380158722400665],[120,-20,64,-0.5461561381816864],[120,-20,65,-0.5455079823732376],[120,-20,66,-0.5438496991991997],[120,-20,67,-0.5418883860111237],[120,-20,68,-0.54057876765728],[120,-20,69,-0.540533009916544],[120,-20,70,-0.5415988229215145],[120,-20,71,-0.5431684888899326],[120,-20,72,-0.5453684069216251],[120,-20,73,-0.5474954880774021],[120,-20,74,-0.5486784763634205],[120,-20,75,-0.5487280450761318],[120,-20,76,-0.5475300811231136],[120,-20,77,-0.5451569445431232],[120,-20,78,-0.5418212004005909],[120,-20,79,-0.5380158722400665],[120,-19,64,-0.5461561381816864],[120,-19,65,-0.5455079823732376],[120,-19,66,-0.5438496991991997],[120,-19,67,-0.5418883860111237],[120,-19,68,-0.54057876765728],[120,-19,69,-0.540533009916544],[120,-19,70,-0.5415988229215145],[120,-19,71,-0.5431684888899326],[120,-19,72,-0.5453684069216251],[120,-19,73,-0.5474954880774021],[120,-19,74,-0.5486784763634205],[120,-19,75,-0.5487280450761318],[120,-19,76,-0.5475300811231136],[120,-19,77,-0.5451569445431232],[120,-19,78,-0.5418212004005909],[120,-19,79,-0.5380158722400665],[120,-18,64,-0.5461561381816864],[120,-18,65,-0.5455079823732376],[120,-18,66,-0.5438496991991997],[120,-18,67,-0.5418883860111237],[120,-18,68,-0.54057876765728],[120,-18,69,-0.540533009916544],[120,-18,70,-0.5415988229215145],[120,-18,71,-0.5431684888899326],[120,-18,72,-0.5453684069216251],[120,-18,73,-0.5474954880774021],[120,-18,74,-0.5486784763634205],[120,-18,75,-0.5487280450761318],[120,-18,76,-0.5475300811231136],[120,-18,77,-0.5451569445431232],[120,-18,78,-0.5418212004005909],[120,-18,79,-0.5380158722400665],[120,-17,64,-0.5461561381816864],[120,-17,65,-0.5455079823732376],[120,-17,66,-0.5438496991991997],[120,-17,67,-0.5418883860111237],[120,-17,68,-0.54057876765728],[120,-17,69,-0.540533009916544],[120,-17,70,-0.5415988229215145],[120,-17,71,-0.5431684888899326],[120,-17,72,-0.5453684069216251],[120,-17,73,-0.5474954880774021],[120,-17,74,-0.5486784763634205],[120,-17,75,-0.5487280450761318],[120,-17,76,-0.5475300811231136],[120,-17,77,-0.5451569445431232],[120,-17,78,-0.5418212004005909],[120,-17,79,-0.5380158722400665],[120,-16,64,-0.5461561381816864],[120,-16,65,-0.5455079823732376],[120,-16,66,-0.5438496991991997],[120,-16,67,-0.5418883860111237],[120,-16,68,-0.54057876765728],[120,-16,69,-0.540533009916544],[120,-16,70,-0.5415988229215145],[120,-16,71,-0.5431684888899326],[120,-16,72,-0.5453684069216251],[120,-16,73,-0.5474954880774021],[120,-16,74,-0.5486784763634205],[120,-16,75,-0.5487280450761318],[120,-16,76,-0.5475300811231136],[120,-16,77,-0.5451569445431232],[120,-16,78,-0.5418212004005909],[120,-16,79,-0.5380158722400665],[120,-15,64,-0.5461561381816864],[120,-15,65,-0.5455079823732376],[120,-15,66,-0.5438496991991997],[120,-15,67,-0.5418883860111237],[120,-15,68,-0.54057876765728],[120,-15,69,-0.540533009916544],[120,-15,70,-0.5415988229215145],[120,-15,71,-0.5431684888899326],[120,-15,72,-0.5453684069216251],[120,-15,73,-0.5474954880774021],[120,-15,74,-0.5486784763634205],[120,-15,75,-0.5487280450761318],[120,-15,76,-0.5475300811231136],[120,-15,77,-0.5451569445431232],[120,-15,78,-0.5418212004005909],[120,-15,79,-0.5380158722400665],[120,-14,64,-0.5461561381816864],[120,-14,65,-0.5455079823732376],[120,-14,66,-0.5438496991991997],[120,-14,67,-0.5418883860111237],[120,-14,68,-0.54057876765728],[120,-14,69,-0.540533009916544],[120,-14,70,-0.5415988229215145],[120,-14,71,-0.5431684888899326],[120,-14,72,-0.5453684069216251],[120,-14,73,-0.5474954880774021],[120,-14,74,-0.5486784763634205],[120,-14,75,-0.5487280450761318],[120,-14,76,-0.5475300811231136],[120,-14,77,-0.5451569445431232],[120,-14,78,-0.5418212004005909],[120,-14,79,-0.5380158722400665],[120,-13,64,-0.5461561381816864],[120,-13,65,-0.5455079823732376],[120,-13,66,-0.5438496991991997],[120,-13,67,-0.5418883860111237],[120,-13,68,-0.54057876765728],[120,-13,69,-0.540533009916544],[120,-13,70,-0.5415988229215145],[120,-13,71,-0.5431684888899326],[120,-13,72,-0.5453684069216251],[120,-13,73,-0.5474954880774021],[120,-13,74,-0.5486784763634205],[120,-13,75,-0.5487280450761318],[120,-13,76,-0.5475300811231136],[120,-13,77,-0.5451569445431232],[120,-13,78,-0.5418212004005909],[120,-13,79,-0.5380158722400665],[120,-12,64,-0.5461561381816864],[120,-12,65,-0.5455079823732376],[120,-12,66,-0.5438496991991997],[120,-12,67,-0.5418883860111237],[120,-12,68,-0.54057876765728],[120,-12,69,-0.540533009916544],[120,-12,70,-0.5415988229215145],[120,-12,71,-0.5431684888899326],[120,-12,72,-0.5453684069216251],[120,-12,73,-0.5474954880774021],[120,-12,74,-0.5486784763634205],[120,-12,75,-0.5487280450761318],[120,-12,76,-0.5475300811231136],[120,-12,77,-0.5451569445431232],[120,-12,78,-0.5418212004005909],[120,-12,79,-0.5380158722400665],[120,-11,64,-0.5461561381816864],[120,-11,65,-0.5455079823732376],[120,-11,66,-0.5438496991991997],[120,-11,67,-0.5418883860111237],[120,-11,68,-0.54057876765728],[120,-11,69,-0.540533009916544],[120,-11,70,-0.5415988229215145],[120,-11,71,-0.5431684888899326],[120,-11,72,-0.5453684069216251],[120,-11,73,-0.5474954880774021],[120,-11,74,-0.5486784763634205],[120,-11,75,-0.5487280450761318],[120,-11,76,-0.5475300811231136],[120,-11,77,-0.5451569445431232],[120,-11,78,-0.5418212004005909],[120,-11,79,-0.5380158722400665],[120,-10,64,-0.5461561381816864],[120,-10,65,-0.5455079823732376],[120,-10,66,-0.5438496991991997],[120,-10,67,-0.5418883860111237],[120,-10,68,-0.54057876765728],[120,-10,69,-0.540533009916544],[120,-10,70,-0.5415988229215145],[120,-10,71,-0.5431684888899326],[120,-10,72,-0.5453684069216251],[120,-10,73,-0.5474954880774021],[120,-10,74,-0.5486784763634205],[120,-10,75,-0.5487280450761318],[120,-10,76,-0.5475300811231136],[120,-10,77,-0.5451569445431232],[120,-10,78,-0.5418212004005909],[120,-10,79,-0.5380158722400665],[120,-9,64,-0.5461561381816864],[120,-9,65,-0.5455079823732376],[120,-9,66,-0.5438496991991997],[120,-9,67,-0.5418883860111237],[120,-9,68,-0.54057876765728],[120,-9,69,-0.540533009916544],[120,-9,70,-0.5415988229215145],[120,-9,71,-0.5431684888899326],[120,-9,72,-0.5453684069216251],[120,-9,73,-0.5474954880774021],[120,-9,74,-0.5486784763634205],[120,-9,75,-0.5487280450761318],[120,-9,76,-0.5475300811231136],[120,-9,77,-0.5451569445431232],[120,-9,78,-0.5418212004005909],[120,-9,79,-0.5380158722400665],[120,-8,64,-0.5461561381816864],[120,-8,65,-0.5455079823732376],[120,-8,66,-0.5438496991991997],[120,-8,67,-0.5418883860111237],[120,-8,68,-0.54057876765728],[120,-8,69,-0.540533009916544],[120,-8,70,-0.5415988229215145],[120,-8,71,-0.5431684888899326],[120,-8,72,-0.5453684069216251],[120,-8,73,-0.5474954880774021],[120,-8,74,-0.5486784763634205],[120,-8,75,-0.5487280450761318],[120,-8,76,-0.5475300811231136],[120,-8,77,-0.5451569445431232],[120,-8,78,-0.5418212004005909],[120,-8,79,-0.5380158722400665],[120,-7,64,-0.5461561381816864],[120,-7,65,-0.5455079823732376],[120,-7,66,-0.5438496991991997],[120,-7,67,-0.5418883860111237],[120,-7,68,-0.54057876765728],[120,-7,69,-0.540533009916544],[120,-7,70,-0.5415988229215145],[120,-7,71,-0.5431684888899326],[120,-7,72,-0.5453684069216251],[120,-7,73,-0.5474954880774021],[120,-7,74,-0.5486784763634205],[120,-7,75,-0.5487280450761318],[120,-7,76,-0.5475300811231136],[120,-7,77,-0.5451569445431232],[120,-7,78,-0.5418212004005909],[120,-7,79,-0.5380158722400665],[120,-6,64,-0.5461561381816864],[120,-6,65,-0.5455079823732376],[120,-6,66,-0.5438496991991997],[120,-6,67,-0.5418883860111237],[120,-6,68,-0.54057876765728],[120,-6,69,-0.540533009916544],[120,-6,70,-0.5415988229215145],[120,-6,71,-0.5431684888899326],[120,-6,72,-0.5453684069216251],[120,-6,73,-0.5474954880774021],[120,-6,74,-0.5486784763634205],[120,-6,75,-0.5487280450761318],[120,-6,76,-0.5475300811231136],[120,-6,77,-0.5451569445431232],[120,-6,78,-0.5418212004005909],[120,-6,79,-0.5380158722400665],[120,-5,64,-0.5461561381816864],[120,-5,65,-0.5455079823732376],[120,-5,66,-0.5438496991991997],[120,-5,67,-0.5418883860111237],[120,-5,68,-0.54057876765728],[120,-5,69,-0.540533009916544],[120,-5,70,-0.5415988229215145],[120,-5,71,-0.5431684888899326],[120,-5,72,-0.5453684069216251],[120,-5,73,-0.5474954880774021],[120,-5,74,-0.5486784763634205],[120,-5,75,-0.5487280450761318],[120,-5,76,-0.5475300811231136],[120,-5,77,-0.5451569445431232],[120,-5,78,-0.5418212004005909],[120,-5,79,-0.5380158722400665],[120,-4,64,-0.5461561381816864],[120,-4,65,-0.5455079823732376],[120,-4,66,-0.5438496991991997],[120,-4,67,-0.5418883860111237],[120,-4,68,-0.54057876765728],[120,-4,69,-0.540533009916544],[120,-4,70,-0.5415988229215145],[120,-4,71,-0.5431684888899326],[120,-4,72,-0.5453684069216251],[120,-4,73,-0.5474954880774021],[120,-4,74,-0.5486784763634205],[120,-4,75,-0.5487280450761318],[120,-4,76,-0.5475300811231136],[120,-4,77,-0.5451569445431232],[120,-4,78,-0.5418212004005909],[120,-4,79,-0.5380158722400665],[120,-3,64,-0.5461561381816864],[120,-3,65,-0.5455079823732376],[120,-3,66,-0.5438496991991997],[120,-3,67,-0.5418883860111237],[120,-3,68,-0.54057876765728],[120,-3,69,-0.540533009916544],[120,-3,70,-0.5415988229215145],[120,-3,71,-0.5431684888899326],[120,-3,72,-0.5453684069216251],[120,-3,73,-0.5474954880774021],[120,-3,74,-0.5486784763634205],[120,-3,75,-0.5487280450761318],[120,-3,76,-0.5475300811231136],[120,-3,77,-0.5451569445431232],[120,-3,78,-0.5418212004005909],[120,-3,79,-0.5380158722400665],[120,-2,64,-0.5461561381816864],[120,-2,65,-0.5455079823732376],[120,-2,66,-0.5438496991991997],[120,-2,67,-0.5418883860111237],[120,-2,68,-0.54057876765728],[120,-2,69,-0.540533009916544],[120,-2,70,-0.5415988229215145],[120,-2,71,-0.5431684888899326],[120,-2,72,-0.5453684069216251],[120,-2,73,-0.5474954880774021],[120,-2,74,-0.5486784763634205],[120,-2,75,-0.5487280450761318],[120,-2,76,-0.5475300811231136],[120,-2,77,-0.5451569445431232],[120,-2,78,-0.5418212004005909],[120,-2,79,-0.5380158722400665],[120,-1,64,-0.5461561381816864],[120,-1,65,-0.5455079823732376],[120,-1,66,-0.5438496991991997],[120,-1,67,-0.5418883860111237],[120,-1,68,-0.54057876765728],[120,-1,69,-0.540533009916544],[120,-1,70,-0.5415988229215145],[120,-1,71,-0.5431684888899326],[120,-1,72,-0.5453684069216251],[120,-1,73,-0.5474954880774021],[120,-1,74,-0.5486784763634205],[120,-1,75,-0.5487280450761318],[120,-1,76,-0.5475300811231136],[120,-1,77,-0.5451569445431232],[120,-1,78,-0.5418212004005909],[120,-1,79,-0.5380158722400665],[120,0,64,-0.5461561381816864],[120,0,65,-0.5455079823732376],[120,0,66,-0.5438496991991997],[120,0,67,-0.5418883860111237],[120,0,68,-0.54057876765728],[120,0,69,-0.540533009916544],[120,0,70,-0.5415988229215145],[120,0,71,-0.5431684888899326],[120,0,72,-0.5453684069216251],[120,0,73,-0.5474954880774021],[120,0,74,-0.5486784763634205],[120,0,75,-0.5487280450761318],[120,0,76,-0.5475300811231136],[120,0,77,-0.5451569445431232],[120,0,78,-0.5418212004005909],[120,0,79,-0.5380158722400665],[120,1,64,-0.5461561381816864],[120,1,65,-0.5455079823732376],[120,1,66,-0.5438496991991997],[120,1,67,-0.5418883860111237],[120,1,68,-0.54057876765728],[120,1,69,-0.540533009916544],[120,1,70,-0.5415988229215145],[120,1,71,-0.5431684888899326],[120,1,72,-0.5453684069216251],[120,1,73,-0.5474954880774021],[120,1,74,-0.5486784763634205],[120,1,75,-0.5487280450761318],[120,1,76,-0.5475300811231136],[120,1,77,-0.5451569445431232],[120,1,78,-0.5418212004005909],[120,1,79,-0.5380158722400665],[120,2,64,-0.5461561381816864],[120,2,65,-0.5455079823732376],[120,2,66,-0.5438496991991997],[120,2,67,-0.5418883860111237],[120,2,68,-0.54057876765728],[120,2,69,-0.540533009916544],[120,2,70,-0.5415988229215145],[120,2,71,-0.5431684888899326],[120,2,72,-0.5453684069216251],[120,2,73,-0.5474954880774021],[120,2,74,-0.5486784763634205],[120,2,75,-0.5487280450761318],[120,2,76,-0.5475300811231136],[120,2,77,-0.5451569445431232],[120,2,78,-0.5418212004005909],[120,2,79,-0.5380158722400665],[120,3,64,-0.5461561381816864],[120,3,65,-0.5455079823732376],[120,3,66,-0.5438496991991997],[120,3,67,-0.5418883860111237],[120,3,68,-0.54057876765728],[120,3,69,-0.540533009916544],[120,3,70,-0.5415988229215145],[120,3,71,-0.5431684888899326],[120,3,72,-0.5453684069216251],[120,3,73,-0.5474954880774021],[120,3,74,-0.5486784763634205],[120,3,75,-0.5487280450761318],[120,3,76,-0.5475300811231136],[120,3,77,-0.5451569445431232],[120,3,78,-0.5418212004005909],[120,3,79,-0.5380158722400665],[120,4,64,-0.5461561381816864],[120,4,65,-0.5455079823732376],[120,4,66,-0.5438496991991997],[120,4,67,-0.5418883860111237],[120,4,68,-0.54057876765728],[120,4,69,-0.540533009916544],[120,4,70,-0.5415988229215145],[120,4,71,-0.5431684888899326],[120,4,72,-0.5453684069216251],[120,4,73,-0.5474954880774021],[120,4,74,-0.5486784763634205],[120,4,75,-0.5487280450761318],[120,4,76,-0.5475300811231136],[120,4,77,-0.5451569445431232],[120,4,78,-0.5418212004005909],[120,4,79,-0.5380158722400665],[120,5,64,-0.5461561381816864],[120,5,65,-0.5455079823732376],[120,5,66,-0.5438496991991997],[120,5,67,-0.5418883860111237],[120,5,68,-0.54057876765728],[120,5,69,-0.540533009916544],[120,5,70,-0.5415988229215145],[120,5,71,-0.5431684888899326],[120,5,72,-0.5453684069216251],[120,5,73,-0.5474954880774021],[120,5,74,-0.5486784763634205],[120,5,75,-0.5487280450761318],[120,5,76,-0.5475300811231136],[120,5,77,-0.5451569445431232],[120,5,78,-0.5418212004005909],[120,5,79,-0.5380158722400665],[120,6,64,-0.5461561381816864],[120,6,65,-0.5455079823732376],[120,6,66,-0.5438496991991997],[120,6,67,-0.5418883860111237],[120,6,68,-0.54057876765728],[120,6,69,-0.540533009916544],[120,6,70,-0.5415988229215145],[120,6,71,-0.5431684888899326],[120,6,72,-0.5453684069216251],[120,6,73,-0.5474954880774021],[120,6,74,-0.5486784763634205],[120,6,75,-0.5487280450761318],[120,6,76,-0.5475300811231136],[120,6,77,-0.5451569445431232],[120,6,78,-0.5418212004005909],[120,6,79,-0.5380158722400665],[120,7,64,-0.5461561381816864],[120,7,65,-0.5455079823732376],[120,7,66,-0.5438496991991997],[120,7,67,-0.5418883860111237],[120,7,68,-0.54057876765728],[120,7,69,-0.540533009916544],[120,7,70,-0.5415988229215145],[120,7,71,-0.5431684888899326],[120,7,72,-0.5453684069216251],[120,7,73,-0.5474954880774021],[120,7,74,-0.5486784763634205],[120,7,75,-0.5487280450761318],[120,7,76,-0.5475300811231136],[120,7,77,-0.5451569445431232],[120,7,78,-0.5418212004005909],[120,7,79,-0.5380158722400665],[120,8,64,-0.5461561381816864],[120,8,65,-0.5455079823732376],[120,8,66,-0.5438496991991997],[120,8,67,-0.5418883860111237],[120,8,68,-0.54057876765728],[120,8,69,-0.540533009916544],[120,8,70,-0.5415988229215145],[120,8,71,-0.5431684888899326],[120,8,72,-0.5453684069216251],[120,8,73,-0.5474954880774021],[120,8,74,-0.5486784763634205],[120,8,75,-0.5487280450761318],[120,8,76,-0.5475300811231136],[120,8,77,-0.5451569445431232],[120,8,78,-0.5418212004005909],[120,8,79,-0.5380158722400665],[120,9,64,-0.5461561381816864],[120,9,65,-0.5455079823732376],[120,9,66,-0.5438496991991997],[120,9,67,-0.5418883860111237],[120,9,68,-0.54057876765728],[120,9,69,-0.540533009916544],[120,9,70,-0.5415988229215145],[120,9,71,-0.5431684888899326],[120,9,72,-0.5453684069216251],[120,9,73,-0.5474954880774021],[120,9,74,-0.5486784763634205],[120,9,75,-0.5487280450761318],[120,9,76,-0.5475300811231136],[120,9,77,-0.5451569445431232],[120,9,78,-0.5418212004005909],[120,9,79,-0.5380158722400665],[120,10,64,-0.5461561381816864],[120,10,65,-0.5455079823732376],[120,10,66,-0.5438496991991997],[120,10,67,-0.5418883860111237],[120,10,68,-0.54057876765728],[120,10,69,-0.540533009916544],[120,10,70,-0.5415988229215145],[120,10,71,-0.5431684888899326],[120,10,72,-0.5453684069216251],[120,10,73,-0.5474954880774021],[120,10,74,-0.5486784763634205],[120,10,75,-0.5487280450761318],[120,10,76,-0.5475300811231136],[120,10,77,-0.5451569445431232],[120,10,78,-0.5418212004005909],[120,10,79,-0.5380158722400665],[120,11,64,-0.5461561381816864],[120,11,65,-0.5455079823732376],[120,11,66,-0.5438496991991997],[120,11,67,-0.5418883860111237],[120,11,68,-0.54057876765728],[120,11,69,-0.540533009916544],[120,11,70,-0.5415988229215145],[120,11,71,-0.5431684888899326],[120,11,72,-0.5453684069216251],[120,11,73,-0.5474954880774021],[120,11,74,-0.5486784763634205],[120,11,75,-0.5487280450761318],[120,11,76,-0.5475300811231136],[120,11,77,-0.5451569445431232],[120,11,78,-0.5418212004005909],[120,11,79,-0.5380158722400665],[120,12,64,-0.5461561381816864],[120,12,65,-0.5455079823732376],[120,12,66,-0.5438496991991997],[120,12,67,-0.5418883860111237],[120,12,68,-0.54057876765728],[120,12,69,-0.540533009916544],[120,12,70,-0.5415988229215145],[120,12,71,-0.5431684888899326],[120,12,72,-0.5453684069216251],[120,12,73,-0.5474954880774021],[120,12,74,-0.5486784763634205],[120,12,75,-0.5487280450761318],[120,12,76,-0.5475300811231136],[120,12,77,-0.5451569445431232],[120,12,78,-0.5418212004005909],[120,12,79,-0.5380158722400665],[120,13,64,-0.5461561381816864],[120,13,65,-0.5455079823732376],[120,13,66,-0.5438496991991997],[120,13,67,-0.5418883860111237],[120,13,68,-0.54057876765728],[120,13,69,-0.540533009916544],[120,13,70,-0.5415988229215145],[120,13,71,-0.5431684888899326],[120,13,72,-0.5453684069216251],[120,13,73,-0.5474954880774021],[120,13,74,-0.5486784763634205],[120,13,75,-0.5487280450761318],[120,13,76,-0.5475300811231136],[120,13,77,-0.5451569445431232],[120,13,78,-0.5418212004005909],[120,13,79,-0.5380158722400665],[120,14,64,-0.5461561381816864],[120,14,65,-0.5455079823732376],[120,14,66,-0.5438496991991997],[120,14,67,-0.5418883860111237],[120,14,68,-0.54057876765728],[120,14,69,-0.540533009916544],[120,14,70,-0.5415988229215145],[120,14,71,-0.5431684888899326],[120,14,72,-0.5453684069216251],[120,14,73,-0.5474954880774021],[120,14,74,-0.5486784763634205],[120,14,75,-0.5487280450761318],[120,14,76,-0.5475300811231136],[120,14,77,-0.5451569445431232],[120,14,78,-0.5418212004005909],[120,14,79,-0.5380158722400665],[120,15,64,-0.5461561381816864],[120,15,65,-0.5455079823732376],[120,15,66,-0.5438496991991997],[120,15,67,-0.5418883860111237],[120,15,68,-0.54057876765728],[120,15,69,-0.540533009916544],[120,15,70,-0.5415988229215145],[120,15,71,-0.5431684888899326],[120,15,72,-0.5453684069216251],[120,15,73,-0.5474954880774021],[120,15,74,-0.5486784763634205],[120,15,75,-0.5487280450761318],[120,15,76,-0.5475300811231136],[120,15,77,-0.5451569445431232],[120,15,78,-0.5418212004005909],[120,15,79,-0.5380158722400665],[120,16,64,-0.5461561381816864],[120,16,65,-0.5455079823732376],[120,16,66,-0.5438496991991997],[120,16,67,-0.5418883860111237],[120,16,68,-0.54057876765728],[120,16,69,-0.540533009916544],[120,16,70,-0.5415988229215145],[120,16,71,-0.5431684888899326],[120,16,72,-0.5453684069216251],[120,16,73,-0.5474954880774021],[120,16,74,-0.5486784763634205],[120,16,75,-0.5487280450761318],[120,16,76,-0.5475300811231136],[120,16,77,-0.5451569445431232],[120,16,78,-0.5418212004005909],[120,16,79,-0.5380158722400665],[120,17,64,-0.5461561381816864],[120,17,65,-0.5455079823732376],[120,17,66,-0.5438496991991997],[120,17,67,-0.5418883860111237],[120,17,68,-0.54057876765728],[120,17,69,-0.540533009916544],[120,17,70,-0.5415988229215145],[120,17,71,-0.5431684888899326],[120,17,72,-0.5453684069216251],[120,17,73,-0.5474954880774021],[120,17,74,-0.5486784763634205],[120,17,75,-0.5487280450761318],[120,17,76,-0.5475300811231136],[120,17,77,-0.5451569445431232],[120,17,78,-0.5418212004005909],[120,17,79,-0.5380158722400665],[120,18,64,-0.5461561381816864],[120,18,65,-0.5455079823732376],[120,18,66,-0.5438496991991997],[120,18,67,-0.5418883860111237],[120,18,68,-0.54057876765728],[120,18,69,-0.540533009916544],[120,18,70,-0.5415988229215145],[120,18,71,-0.5431684888899326],[120,18,72,-0.5453684069216251],[120,18,73,-0.5474954880774021],[120,18,74,-0.5486784763634205],[120,18,75,-0.5487280450761318],[120,18,76,-0.5475300811231136],[120,18,77,-0.5451569445431232],[120,18,78,-0.5418212004005909],[120,18,79,-0.5380158722400665],[120,19,64,-0.5461561381816864],[120,19,65,-0.5455079823732376],[120,19,66,-0.5438496991991997],[120,19,67,-0.5418883860111237],[120,19,68,-0.54057876765728],[120,19,69,-0.540533009916544],[120,19,70,-0.5415988229215145],[120,19,71,-0.5431684888899326],[120,19,72,-0.5453684069216251],[120,19,73,-0.5474954880774021],[120,19,74,-0.5486784763634205],[120,19,75,-0.5487280450761318],[120,19,76,-0.5475300811231136],[120,19,77,-0.5451569445431232],[120,19,78,-0.5418212004005909],[120,19,79,-0.5380158722400665],[120,20,64,-0.5461561381816864],[120,20,65,-0.5455079823732376],[120,20,66,-0.5438496991991997],[120,20,67,-0.5418883860111237],[120,20,68,-0.54057876765728],[120,20,69,-0.540533009916544],[120,20,70,-0.5415988229215145],[120,20,71,-0.5431684888899326],[120,20,72,-0.5453684069216251],[120,20,73,-0.5474954880774021],[120,20,74,-0.5486784763634205],[120,20,75,-0.5487280450761318],[120,20,76,-0.5475300811231136],[120,20,77,-0.5451569445431232],[120,20,78,-0.5418212004005909],[120,20,79,-0.5380158722400665],[120,21,64,-0.5461561381816864],[120,21,65,-0.5455079823732376],[120,21,66,-0.5438496991991997],[120,21,67,-0.5418883860111237],[120,21,68,-0.54057876765728],[120,21,69,-0.540533009916544],[120,21,70,-0.5415988229215145],[120,21,71,-0.5431684888899326],[120,21,72,-0.5453684069216251],[120,21,73,-0.5474954880774021],[120,21,74,-0.5486784763634205],[120,21,75,-0.5487280450761318],[120,21,76,-0.5475300811231136],[120,21,77,-0.5451569445431232],[120,21,78,-0.5418212004005909],[120,21,79,-0.5380158722400665],[120,22,64,-0.5461561381816864],[120,22,65,-0.5455079823732376],[120,22,66,-0.5438496991991997],[120,22,67,-0.5418883860111237],[120,22,68,-0.54057876765728],[120,22,69,-0.540533009916544],[120,22,70,-0.5415988229215145],[120,22,71,-0.5431684888899326],[120,22,72,-0.5453684069216251],[120,22,73,-0.5474954880774021],[120,22,74,-0.5486784763634205],[120,22,75,-0.5487280450761318],[120,22,76,-0.5475300811231136],[120,22,77,-0.5451569445431232],[120,22,78,-0.5418212004005909],[120,22,79,-0.5380158722400665],[120,23,64,-0.5461561381816864],[120,23,65,-0.5455079823732376],[120,23,66,-0.5438496991991997],[120,23,67,-0.5418883860111237],[120,23,68,-0.54057876765728],[120,23,69,-0.540533009916544],[120,23,70,-0.5415988229215145],[120,23,71,-0.5431684888899326],[120,23,72,-0.5453684069216251],[120,23,73,-0.5474954880774021],[120,23,74,-0.5486784763634205],[120,23,75,-0.5487280450761318],[120,23,76,-0.5475300811231136],[120,23,77,-0.5451569445431232],[120,23,78,-0.5418212004005909],[120,23,79,-0.5380158722400665],[120,24,64,-0.5461561381816864],[120,24,65,-0.5455079823732376],[120,24,66,-0.5438496991991997],[120,24,67,-0.5418883860111237],[120,24,68,-0.54057876765728],[120,24,69,-0.540533009916544],[120,24,70,-0.5415988229215145],[120,24,71,-0.5431684888899326],[120,24,72,-0.5453684069216251],[120,24,73,-0.5474954880774021],[120,24,74,-0.5486784763634205],[120,24,75,-0.5487280450761318],[120,24,76,-0.5475300811231136],[120,24,77,-0.5451569445431232],[120,24,78,-0.5418212004005909],[120,24,79,-0.5380158722400665],[120,25,64,-0.5461561381816864],[120,25,65,-0.5455079823732376],[120,25,66,-0.5438496991991997],[120,25,67,-0.5418883860111237],[120,25,68,-0.54057876765728],[120,25,69,-0.540533009916544],[120,25,70,-0.5415988229215145],[120,25,71,-0.5431684888899326],[120,25,72,-0.5453684069216251],[120,25,73,-0.5474954880774021],[120,25,74,-0.5486784763634205],[120,25,75,-0.5487280450761318],[120,25,76,-0.5475300811231136],[120,25,77,-0.5451569445431232],[120,25,78,-0.5418212004005909],[120,25,79,-0.5380158722400665],[120,26,64,-0.5461561381816864],[120,26,65,-0.5455079823732376],[120,26,66,-0.5438496991991997],[120,26,67,-0.5418883860111237],[120,26,68,-0.54057876765728],[120,26,69,-0.540533009916544],[120,26,70,-0.5415988229215145],[120,26,71,-0.5431684888899326],[120,26,72,-0.5453684069216251],[120,26,73,-0.5474954880774021],[120,26,74,-0.5486784763634205],[120,26,75,-0.5487280450761318],[120,26,76,-0.5475300811231136],[120,26,77,-0.5451569445431232],[120,26,78,-0.5418212004005909],[120,26,79,-0.5380158722400665],[120,27,64,-0.5461561381816864],[120,27,65,-0.5455079823732376],[120,27,66,-0.5438496991991997],[120,27,67,-0.5418883860111237],[120,27,68,-0.54057876765728],[120,27,69,-0.540533009916544],[120,27,70,-0.5415988229215145],[120,27,71,-0.5431684888899326],[120,27,72,-0.5453684069216251],[120,27,73,-0.5474954880774021],[120,27,74,-0.5486784763634205],[120,27,75,-0.5487280450761318],[120,27,76,-0.5475300811231136],[120,27,77,-0.5451569445431232],[120,27,78,-0.5418212004005909],[120,27,79,-0.5380158722400665],[120,28,64,-0.5461561381816864],[120,28,65,-0.5455079823732376],[120,28,66,-0.5438496991991997],[120,28,67,-0.5418883860111237],[120,28,68,-0.54057876765728],[120,28,69,-0.540533009916544],[120,28,70,-0.5415988229215145],[120,28,71,-0.5431684888899326],[120,28,72,-0.5453684069216251],[120,28,73,-0.5474954880774021],[120,28,74,-0.5486784763634205],[120,28,75,-0.5487280450761318],[120,28,76,-0.5475300811231136],[120,28,77,-0.5451569445431232],[120,28,78,-0.5418212004005909],[120,28,79,-0.5380158722400665],[120,29,64,-0.5461561381816864],[120,29,65,-0.5455079823732376],[120,29,66,-0.5438496991991997],[120,29,67,-0.5418883860111237],[120,29,68,-0.54057876765728],[120,29,69,-0.540533009916544],[120,29,70,-0.5415988229215145],[120,29,71,-0.5431684888899326],[120,29,72,-0.5453684069216251],[120,29,73,-0.5474954880774021],[120,29,74,-0.5486784763634205],[120,29,75,-0.5487280450761318],[120,29,76,-0.5475300811231136],[120,29,77,-0.5451569445431232],[120,29,78,-0.5418212004005909],[120,29,79,-0.5380158722400665],[120,30,64,-0.5461561381816864],[120,30,65,-0.5455079823732376],[120,30,66,-0.5438496991991997],[120,30,67,-0.5418883860111237],[120,30,68,-0.54057876765728],[120,30,69,-0.540533009916544],[120,30,70,-0.5415988229215145],[120,30,71,-0.5431684888899326],[120,30,72,-0.5453684069216251],[120,30,73,-0.5474954880774021],[120,30,74,-0.5486784763634205],[120,30,75,-0.5487280450761318],[120,30,76,-0.5475300811231136],[120,30,77,-0.5451569445431232],[120,30,78,-0.5418212004005909],[120,30,79,-0.5380158722400665],[120,31,64,-0.5461561381816864],[120,31,65,-0.5455079823732376],[120,31,66,-0.5438496991991997],[120,31,67,-0.5418883860111237],[120,31,68,-0.54057876765728],[120,31,69,-0.540533009916544],[120,31,70,-0.5415988229215145],[120,31,71,-0.5431684888899326],[120,31,72,-0.5453684069216251],[120,31,73,-0.5474954880774021],[120,31,74,-0.5486784763634205],[120,31,75,-0.5487280450761318],[120,31,76,-0.5475300811231136],[120,31,77,-0.5451569445431232],[120,31,78,-0.5418212004005909],[120,31,79,-0.5380158722400665],[120,32,64,-0.5461561381816864],[120,32,65,-0.5455079823732376],[120,32,66,-0.5438496991991997],[120,32,67,-0.5418883860111237],[120,32,68,-0.54057876765728],[120,32,69,-0.540533009916544],[120,32,70,-0.5415988229215145],[120,32,71,-0.5431684888899326],[120,32,72,-0.5453684069216251],[120,32,73,-0.5474954880774021],[120,32,74,-0.5486784763634205],[120,32,75,-0.5487280450761318],[120,32,76,-0.5475300811231136],[120,32,77,-0.5451569445431232],[120,32,78,-0.5418212004005909],[120,32,79,-0.5380158722400665],[120,33,64,-0.5461561381816864],[120,33,65,-0.5455079823732376],[120,33,66,-0.5438496991991997],[120,33,67,-0.5418883860111237],[120,33,68,-0.54057876765728],[120,33,69,-0.540533009916544],[120,33,70,-0.5415988229215145],[120,33,71,-0.5431684888899326],[120,33,72,-0.5453684069216251],[120,33,73,-0.5474954880774021],[120,33,74,-0.5486784763634205],[120,33,75,-0.5487280450761318],[120,33,76,-0.5475300811231136],[120,33,77,-0.5451569445431232],[120,33,78,-0.5418212004005909],[120,33,79,-0.5380158722400665],[120,34,64,-0.5461561381816864],[120,34,65,-0.5455079823732376],[120,34,66,-0.5438496991991997],[120,34,67,-0.5418883860111237],[120,34,68,-0.54057876765728],[120,34,69,-0.540533009916544],[120,34,70,-0.5415988229215145],[120,34,71,-0.5431684888899326],[120,34,72,-0.5453684069216251],[120,34,73,-0.5474954880774021],[120,34,74,-0.5486784763634205],[120,34,75,-0.5487280450761318],[120,34,76,-0.5475300811231136],[120,34,77,-0.5451569445431232],[120,34,78,-0.5418212004005909],[120,34,79,-0.5380158722400665],[120,35,64,-0.5461561381816864],[120,35,65,-0.5455079823732376],[120,35,66,-0.5438496991991997],[120,35,67,-0.5418883860111237],[120,35,68,-0.54057876765728],[120,35,69,-0.540533009916544],[120,35,70,-0.5415988229215145],[120,35,71,-0.5431684888899326],[120,35,72,-0.5453684069216251],[120,35,73,-0.5474954880774021],[120,35,74,-0.5486784763634205],[120,35,75,-0.5487280450761318],[120,35,76,-0.5475300811231136],[120,35,77,-0.5451569445431232],[120,35,78,-0.5418212004005909],[120,35,79,-0.5380158722400665],[120,36,64,-0.5461561381816864],[120,36,65,-0.5455079823732376],[120,36,66,-0.5438496991991997],[120,36,67,-0.5418883860111237],[120,36,68,-0.54057876765728],[120,36,69,-0.540533009916544],[120,36,70,-0.5415988229215145],[120,36,71,-0.5431684888899326],[120,36,72,-0.5453684069216251],[120,36,73,-0.5474954880774021],[120,36,74,-0.5486784763634205],[120,36,75,-0.5487280450761318],[120,36,76,-0.5475300811231136],[120,36,77,-0.5451569445431232],[120,36,78,-0.5418212004005909],[120,36,79,-0.5380158722400665],[120,37,64,-0.5461561381816864],[120,37,65,-0.5455079823732376],[120,37,66,-0.5438496991991997],[120,37,67,-0.5418883860111237],[120,37,68,-0.54057876765728],[120,37,69,-0.540533009916544],[120,37,70,-0.5415988229215145],[120,37,71,-0.5431684888899326],[120,37,72,-0.5453684069216251],[120,37,73,-0.5474954880774021],[120,37,74,-0.5486784763634205],[120,37,75,-0.5487280450761318],[120,37,76,-0.5475300811231136],[120,37,77,-0.5451569445431232],[120,37,78,-0.5418212004005909],[120,37,79,-0.5380158722400665],[120,38,64,-0.5461561381816864],[120,38,65,-0.5455079823732376],[120,38,66,-0.5438496991991997],[120,38,67,-0.5418883860111237],[120,38,68,-0.54057876765728],[120,38,69,-0.540533009916544],[120,38,70,-0.5415988229215145],[120,38,71,-0.5431684888899326],[120,38,72,-0.5453684069216251],[120,38,73,-0.5474954880774021],[120,38,74,-0.5486784763634205],[120,38,75,-0.5487280450761318],[120,38,76,-0.5475300811231136],[120,38,77,-0.5451569445431232],[120,38,78,-0.5418212004005909],[120,38,79,-0.5380158722400665],[120,39,64,-0.5461561381816864],[120,39,65,-0.5455079823732376],[120,39,66,-0.5438496991991997],[120,39,67,-0.5418883860111237],[120,39,68,-0.54057876765728],[120,39,69,-0.540533009916544],[120,39,70,-0.5415988229215145],[120,39,71,-0.5431684888899326],[120,39,72,-0.5453684069216251],[120,39,73,-0.5474954880774021],[120,39,74,-0.5486784763634205],[120,39,75,-0.5487280450761318],[120,39,76,-0.5475300811231136],[120,39,77,-0.5451569445431232],[120,39,78,-0.5418212004005909],[120,39,79,-0.5380158722400665],[120,40,64,-0.5461561381816864],[120,40,65,-0.5455079823732376],[120,40,66,-0.5438496991991997],[120,40,67,-0.5418883860111237],[120,40,68,-0.54057876765728],[120,40,69,-0.540533009916544],[120,40,70,-0.5415988229215145],[120,40,71,-0.5431684888899326],[120,40,72,-0.5453684069216251],[120,40,73,-0.5474954880774021],[120,40,74,-0.5486784763634205],[120,40,75,-0.5487280450761318],[120,40,76,-0.5475300811231136],[120,40,77,-0.5451569445431232],[120,40,78,-0.5418212004005909],[120,40,79,-0.5380158722400665],[120,41,64,-0.5461561381816864],[120,41,65,-0.5455079823732376],[120,41,66,-0.5438496991991997],[120,41,67,-0.5418883860111237],[120,41,68,-0.54057876765728],[120,41,69,-0.540533009916544],[120,41,70,-0.5415988229215145],[120,41,71,-0.5431684888899326],[120,41,72,-0.5453684069216251],[120,41,73,-0.5474954880774021],[120,41,74,-0.5486784763634205],[120,41,75,-0.5487280450761318],[120,41,76,-0.5475300811231136],[120,41,77,-0.5451569445431232],[120,41,78,-0.5418212004005909],[120,41,79,-0.5380158722400665],[120,42,64,-0.5461561381816864],[120,42,65,-0.5455079823732376],[120,42,66,-0.5438496991991997],[120,42,67,-0.5418883860111237],[120,42,68,-0.54057876765728],[120,42,69,-0.540533009916544],[120,42,70,-0.5415988229215145],[120,42,71,-0.5431684888899326],[120,42,72,-0.5453684069216251],[120,42,73,-0.5474954880774021],[120,42,74,-0.5486784763634205],[120,42,75,-0.5487280450761318],[120,42,76,-0.5475300811231136],[120,42,77,-0.5451569445431232],[120,42,78,-0.5418212004005909],[120,42,79,-0.5380158722400665],[120,43,64,-0.5461561381816864],[120,43,65,-0.5455079823732376],[120,43,66,-0.5438496991991997],[120,43,67,-0.5418883860111237],[120,43,68,-0.54057876765728],[120,43,69,-0.540533009916544],[120,43,70,-0.5415988229215145],[120,43,71,-0.5431684888899326],[120,43,72,-0.5453684069216251],[120,43,73,-0.5474954880774021],[120,43,74,-0.5486784763634205],[120,43,75,-0.5487280450761318],[120,43,76,-0.5475300811231136],[120,43,77,-0.5451569445431232],[120,43,78,-0.5418212004005909],[120,43,79,-0.5380158722400665],[120,44,64,-0.5461561381816864],[120,44,65,-0.5455079823732376],[120,44,66,-0.5438496991991997],[120,44,67,-0.5418883860111237],[120,44,68,-0.54057876765728],[120,44,69,-0.540533009916544],[120,44,70,-0.5415988229215145],[120,44,71,-0.5431684888899326],[120,44,72,-0.5453684069216251],[120,44,73,-0.5474954880774021],[120,44,74,-0.5486784763634205],[120,44,75,-0.5487280450761318],[120,44,76,-0.5475300811231136],[120,44,77,-0.5451569445431232],[120,44,78,-0.5418212004005909],[120,44,79,-0.5380158722400665],[120,45,64,-0.5461561381816864],[120,45,65,-0.5455079823732376],[120,45,66,-0.5438496991991997],[120,45,67,-0.5418883860111237],[120,45,68,-0.54057876765728],[120,45,69,-0.540533009916544],[120,45,70,-0.5415988229215145],[120,45,71,-0.5431684888899326],[120,45,72,-0.5453684069216251],[120,45,73,-0.5474954880774021],[120,45,74,-0.5486784763634205],[120,45,75,-0.5487280450761318],[120,45,76,-0.5475300811231136],[120,45,77,-0.5451569445431232],[120,45,78,-0.5418212004005909],[120,45,79,-0.5380158722400665],[120,46,64,-0.5461561381816864],[120,46,65,-0.5455079823732376],[120,46,66,-0.5438496991991997],[120,46,67,-0.5418883860111237],[120,46,68,-0.54057876765728],[120,46,69,-0.540533009916544],[120,46,70,-0.5415988229215145],[120,46,71,-0.5431684888899326],[120,46,72,-0.5453684069216251],[120,46,73,-0.5474954880774021],[120,46,74,-0.5486784763634205],[120,46,75,-0.5487280450761318],[120,46,76,-0.5475300811231136],[120,46,77,-0.5451569445431232],[120,46,78,-0.5418212004005909],[120,46,79,-0.5380158722400665],[120,47,64,-0.5461561381816864],[120,47,65,-0.5455079823732376],[120,47,66,-0.5438496991991997],[120,47,67,-0.5418883860111237],[120,47,68,-0.54057876765728],[120,47,69,-0.540533009916544],[120,47,70,-0.5415988229215145],[120,47,71,-0.5431684888899326],[120,47,72,-0.5453684069216251],[120,47,73,-0.5474954880774021],[120,47,74,-0.5486784763634205],[120,47,75,-0.5487280450761318],[120,47,76,-0.5475300811231136],[120,47,77,-0.5451569445431232],[120,47,78,-0.5418212004005909],[120,47,79,-0.5380158722400665],[120,48,64,-0.5461561381816864],[120,48,65,-0.5455079823732376],[120,48,66,-0.5438496991991997],[120,48,67,-0.5418883860111237],[120,48,68,-0.54057876765728],[120,48,69,-0.540533009916544],[120,48,70,-0.5415988229215145],[120,48,71,-0.5431684888899326],[120,48,72,-0.5453684069216251],[120,48,73,-0.5474954880774021],[120,48,74,-0.5486784763634205],[120,48,75,-0.5487280450761318],[120,48,76,-0.5475300811231136],[120,48,77,-0.5451569445431232],[120,48,78,-0.5418212004005909],[120,48,79,-0.5380158722400665],[120,49,64,-0.5461561381816864],[120,49,65,-0.5455079823732376],[120,49,66,-0.5438496991991997],[120,49,67,-0.5418883860111237],[120,49,68,-0.54057876765728],[120,49,69,-0.540533009916544],[120,49,70,-0.5415988229215145],[120,49,71,-0.5431684888899326],[120,49,72,-0.5453684069216251],[120,49,73,-0.5474954880774021],[120,49,74,-0.5486784763634205],[120,49,75,-0.5487280450761318],[120,49,76,-0.5475300811231136],[120,49,77,-0.5451569445431232],[120,49,78,-0.5418212004005909],[120,49,79,-0.5380158722400665],[120,50,64,-0.5461561381816864],[120,50,65,-0.5455079823732376],[120,50,66,-0.5438496991991997],[120,50,67,-0.5418883860111237],[120,50,68,-0.54057876765728],[120,50,69,-0.540533009916544],[120,50,70,-0.5415988229215145],[120,50,71,-0.5431684888899326],[120,50,72,-0.5453684069216251],[120,50,73,-0.5474954880774021],[120,50,74,-0.5486784763634205],[120,50,75,-0.5487280450761318],[120,50,76,-0.5475300811231136],[120,50,77,-0.5451569445431232],[120,50,78,-0.5418212004005909],[120,50,79,-0.5380158722400665],[120,51,64,-0.5461561381816864],[120,51,65,-0.5455079823732376],[120,51,66,-0.5438496991991997],[120,51,67,-0.5418883860111237],[120,51,68,-0.54057876765728],[120,51,69,-0.540533009916544],[120,51,70,-0.5415988229215145],[120,51,71,-0.5431684888899326],[120,51,72,-0.5453684069216251],[120,51,73,-0.5474954880774021],[120,51,74,-0.5486784763634205],[120,51,75,-0.5487280450761318],[120,51,76,-0.5475300811231136],[120,51,77,-0.5451569445431232],[120,51,78,-0.5418212004005909],[120,51,79,-0.5380158722400665],[120,52,64,-0.5461561381816864],[120,52,65,-0.5455079823732376],[120,52,66,-0.5438496991991997],[120,52,67,-0.5418883860111237],[120,52,68,-0.54057876765728],[120,52,69,-0.540533009916544],[120,52,70,-0.5415988229215145],[120,52,71,-0.5431684888899326],[120,52,72,-0.5453684069216251],[120,52,73,-0.5474954880774021],[120,52,74,-0.5486784763634205],[120,52,75,-0.5487280450761318],[120,52,76,-0.5475300811231136],[120,52,77,-0.5451569445431232],[120,52,78,-0.5418212004005909],[120,52,79,-0.5380158722400665],[120,53,64,-0.5461561381816864],[120,53,65,-0.5455079823732376],[120,53,66,-0.5438496991991997],[120,53,67,-0.5418883860111237],[120,53,68,-0.54057876765728],[120,53,69,-0.540533009916544],[120,53,70,-0.5415988229215145],[120,53,71,-0.5431684888899326],[120,53,72,-0.5453684069216251],[120,53,73,-0.5474954880774021],[120,53,74,-0.5486784763634205],[120,53,75,-0.5487280450761318],[120,53,76,-0.5475300811231136],[120,53,77,-0.5451569445431232],[120,53,78,-0.5418212004005909],[120,53,79,-0.5380158722400665],[120,54,64,-0.5461561381816864],[120,54,65,-0.5455079823732376],[120,54,66,-0.5438496991991997],[120,54,67,-0.5418883860111237],[120,54,68,-0.54057876765728],[120,54,69,-0.540533009916544],[120,54,70,-0.5415988229215145],[120,54,71,-0.5431684888899326],[120,54,72,-0.5453684069216251],[120,54,73,-0.5474954880774021],[120,54,74,-0.5486784763634205],[120,54,75,-0.5487280450761318],[120,54,76,-0.5475300811231136],[120,54,77,-0.5451569445431232],[120,54,78,-0.5418212004005909],[120,54,79,-0.5380158722400665],[120,55,64,-0.5461561381816864],[120,55,65,-0.5455079823732376],[120,55,66,-0.5438496991991997],[120,55,67,-0.5418883860111237],[120,55,68,-0.54057876765728],[120,55,69,-0.540533009916544],[120,55,70,-0.5415988229215145],[120,55,71,-0.5431684888899326],[120,55,72,-0.5453684069216251],[120,55,73,-0.5474954880774021],[120,55,74,-0.5486784763634205],[120,55,75,-0.5487280450761318],[120,55,76,-0.5475300811231136],[120,55,77,-0.5451569445431232],[120,55,78,-0.5418212004005909],[120,55,79,-0.5380158722400665],[120,56,64,-0.5461561381816864],[120,56,65,-0.5455079823732376],[120,56,66,-0.5438496991991997],[120,56,67,-0.5418883860111237],[120,56,68,-0.54057876765728],[120,56,69,-0.540533009916544],[120,56,70,-0.5415988229215145],[120,56,71,-0.5431684888899326],[120,56,72,-0.5453684069216251],[120,56,73,-0.5474954880774021],[120,56,74,-0.5486784763634205],[120,56,75,-0.5487280450761318],[120,56,76,-0.5475300811231136],[120,56,77,-0.5451569445431232],[120,56,78,-0.5418212004005909],[120,56,79,-0.5380158722400665],[120,57,64,-0.5461561381816864],[120,57,65,-0.5455079823732376],[120,57,66,-0.5438496991991997],[120,57,67,-0.5418883860111237],[120,57,68,-0.54057876765728],[120,57,69,-0.540533009916544],[120,57,70,-0.5415988229215145],[120,57,71,-0.5431684888899326],[120,57,72,-0.5453684069216251],[120,57,73,-0.5474954880774021],[120,57,74,-0.5486784763634205],[120,57,75,-0.5487280450761318],[120,57,76,-0.5475300811231136],[120,57,77,-0.5451569445431232],[120,57,78,-0.5418212004005909],[120,57,79,-0.5380158722400665],[120,58,64,-0.5461561381816864],[120,58,65,-0.5455079823732376],[120,58,66,-0.5438496991991997],[120,58,67,-0.5418883860111237],[120,58,68,-0.54057876765728],[120,58,69,-0.540533009916544],[120,58,70,-0.5415988229215145],[120,58,71,-0.5431684888899326],[120,58,72,-0.5453684069216251],[120,58,73,-0.5474954880774021],[120,58,74,-0.5486784763634205],[120,58,75,-0.5487280450761318],[120,58,76,-0.5475300811231136],[120,58,77,-0.5451569445431232],[120,58,78,-0.5418212004005909],[120,58,79,-0.5380158722400665],[120,59,64,-0.5461561381816864],[120,59,65,-0.5455079823732376],[120,59,66,-0.5438496991991997],[120,59,67,-0.5418883860111237],[120,59,68,-0.54057876765728],[120,59,69,-0.540533009916544],[120,59,70,-0.5415988229215145],[120,59,71,-0.5431684888899326],[120,59,72,-0.5453684069216251],[120,59,73,-0.5474954880774021],[120,59,74,-0.5486784763634205],[120,59,75,-0.5487280450761318],[120,59,76,-0.5475300811231136],[120,59,77,-0.5451569445431232],[120,59,78,-0.5418212004005909],[120,59,79,-0.5380158722400665],[120,60,64,-0.5461561381816864],[120,60,65,-0.5455079823732376],[120,60,66,-0.5438496991991997],[120,60,67,-0.5418883860111237],[120,60,68,-0.54057876765728],[120,60,69,-0.540533009916544],[120,60,70,-0.5415988229215145],[120,60,71,-0.5431684888899326],[120,60,72,-0.5453684069216251],[120,60,73,-0.5474954880774021],[120,60,74,-0.5486784763634205],[120,60,75,-0.5487280450761318],[120,60,76,-0.5475300811231136],[120,60,77,-0.5451569445431232],[120,60,78,-0.5418212004005909],[120,60,79,-0.5380158722400665],[120,61,64,-0.5461561381816864],[120,61,65,-0.5455079823732376],[120,61,66,-0.5438496991991997],[120,61,67,-0.5418883860111237],[120,61,68,-0.54057876765728],[120,61,69,-0.540533009916544],[120,61,70,-0.5415988229215145],[120,61,71,-0.5431684888899326],[120,61,72,-0.5453684069216251],[120,61,73,-0.5474954880774021],[120,61,74,-0.5486784763634205],[120,61,75,-0.5487280450761318],[120,61,76,-0.5475300811231136],[120,61,77,-0.5451569445431232],[120,61,78,-0.5418212004005909],[120,61,79,-0.5380158722400665],[120,62,64,-0.5461561381816864],[120,62,65,-0.5455079823732376],[120,62,66,-0.5438496991991997],[120,62,67,-0.5418883860111237],[120,62,68,-0.54057876765728],[120,62,69,-0.540533009916544],[120,62,70,-0.5415988229215145],[120,62,71,-0.5431684888899326],[120,62,72,-0.5453684069216251],[120,62,73,-0.5474954880774021],[120,62,74,-0.5486784763634205],[120,62,75,-0.5487280450761318],[120,62,76,-0.5475300811231136],[120,62,77,-0.5451569445431232],[120,62,78,-0.5418212004005909],[120,62,79,-0.5380158722400665],[120,63,64,-0.5461561381816864],[120,63,65,-0.5455079823732376],[120,63,66,-0.5438496991991997],[120,63,67,-0.5418883860111237],[120,63,68,-0.54057876765728],[120,63,69,-0.540533009916544],[120,63,70,-0.5415988229215145],[120,63,71,-0.5431684888899326],[120,63,72,-0.5453684069216251],[120,63,73,-0.5474954880774021],[120,63,74,-0.5486784763634205],[120,63,75,-0.5487280450761318],[120,63,76,-0.5475300811231136],[120,63,77,-0.5451569445431232],[120,63,78,-0.5418212004005909],[120,63,79,-0.5380158722400665],[120,64,64,-0.5461561381816864],[120,64,65,-0.5455079823732376],[120,64,66,-0.5438496991991997],[120,64,67,-0.5418883860111237],[120,64,68,-0.54057876765728],[120,64,69,-0.540533009916544],[120,64,70,-0.5415988229215145],[120,64,71,-0.5431684888899326],[120,64,72,-0.5453684069216251],[120,64,73,-0.5474954880774021],[120,64,74,-0.5486784763634205],[120,64,75,-0.5487280450761318],[120,64,76,-0.5475300811231136],[120,64,77,-0.5451569445431232],[120,64,78,-0.5418212004005909],[120,64,79,-0.5380158722400665],[120,65,64,-0.5461561381816864],[120,65,65,-0.5455079823732376],[120,65,66,-0.5438496991991997],[120,65,67,-0.5418883860111237],[120,65,68,-0.54057876765728],[120,65,69,-0.540533009916544],[120,65,70,-0.5415988229215145],[120,65,71,-0.5431684888899326],[120,65,72,-0.5453684069216251],[120,65,73,-0.5474954880774021],[120,65,74,-0.5486784763634205],[120,65,75,-0.5487280450761318],[120,65,76,-0.5475300811231136],[120,65,77,-0.5451569445431232],[120,65,78,-0.5418212004005909],[120,65,79,-0.5380158722400665],[120,66,64,-0.5461561381816864],[120,66,65,-0.5455079823732376],[120,66,66,-0.5438496991991997],[120,66,67,-0.5418883860111237],[120,66,68,-0.54057876765728],[120,66,69,-0.540533009916544],[120,66,70,-0.5415988229215145],[120,66,71,-0.5431684888899326],[120,66,72,-0.5453684069216251],[120,66,73,-0.5474954880774021],[120,66,74,-0.5486784763634205],[120,66,75,-0.5487280450761318],[120,66,76,-0.5475300811231136],[120,66,77,-0.5451569445431232],[120,66,78,-0.5418212004005909],[120,66,79,-0.5380158722400665],[120,67,64,-0.5461561381816864],[120,67,65,-0.5455079823732376],[120,67,66,-0.5438496991991997],[120,67,67,-0.5418883860111237],[120,67,68,-0.54057876765728],[120,67,69,-0.540533009916544],[120,67,70,-0.5415988229215145],[120,67,71,-0.5431684888899326],[120,67,72,-0.5453684069216251],[120,67,73,-0.5474954880774021],[120,67,74,-0.5486784763634205],[120,67,75,-0.5487280450761318],[120,67,76,-0.5475300811231136],[120,67,77,-0.5451569445431232],[120,67,78,-0.5418212004005909],[120,67,79,-0.5380158722400665],[120,68,64,-0.5461561381816864],[120,68,65,-0.5455079823732376],[120,68,66,-0.5438496991991997],[120,68,67,-0.5418883860111237],[120,68,68,-0.54057876765728],[120,68,69,-0.540533009916544],[120,68,70,-0.5415988229215145],[120,68,71,-0.5431684888899326],[120,68,72,-0.5453684069216251],[120,68,73,-0.5474954880774021],[120,68,74,-0.5486784763634205],[120,68,75,-0.5487280450761318],[120,68,76,-0.5475300811231136],[120,68,77,-0.5451569445431232],[120,68,78,-0.5418212004005909],[120,68,79,-0.5380158722400665],[120,69,64,-0.5461561381816864],[120,69,65,-0.5455079823732376],[120,69,66,-0.5438496991991997],[120,69,67,-0.5418883860111237],[120,69,68,-0.54057876765728],[120,69,69,-0.540533009916544],[120,69,70,-0.5415988229215145],[120,69,71,-0.5431684888899326],[120,69,72,-0.5453684069216251],[120,69,73,-0.5474954880774021],[120,69,74,-0.5486784763634205],[120,69,75,-0.5487280450761318],[120,69,76,-0.5475300811231136],[120,69,77,-0.5451569445431232],[120,69,78,-0.5418212004005909],[120,69,79,-0.5380158722400665],[120,70,64,-0.5461561381816864],[120,70,65,-0.5455079823732376],[120,70,66,-0.5438496991991997],[120,70,67,-0.5418883860111237],[120,70,68,-0.54057876765728],[120,70,69,-0.540533009916544],[120,70,70,-0.5415988229215145],[120,70,71,-0.5431684888899326],[120,70,72,-0.5453684069216251],[120,70,73,-0.5474954880774021],[120,70,74,-0.5486784763634205],[120,70,75,-0.5487280450761318],[120,70,76,-0.5475300811231136],[120,70,77,-0.5451569445431232],[120,70,78,-0.5418212004005909],[120,70,79,-0.5380158722400665],[120,71,64,-0.5461561381816864],[120,71,65,-0.5455079823732376],[120,71,66,-0.5438496991991997],[120,71,67,-0.5418883860111237],[120,71,68,-0.54057876765728],[120,71,69,-0.540533009916544],[120,71,70,-0.5415988229215145],[120,71,71,-0.5431684888899326],[120,71,72,-0.5453684069216251],[120,71,73,-0.5474954880774021],[120,71,74,-0.5486784763634205],[120,71,75,-0.5487280450761318],[120,71,76,-0.5475300811231136],[120,71,77,-0.5451569445431232],[120,71,78,-0.5418212004005909],[120,71,79,-0.5380158722400665],[120,72,64,-0.5461561381816864],[120,72,65,-0.5455079823732376],[120,72,66,-0.5438496991991997],[120,72,67,-0.5418883860111237],[120,72,68,-0.54057876765728],[120,72,69,-0.540533009916544],[120,72,70,-0.5415988229215145],[120,72,71,-0.5431684888899326],[120,72,72,-0.5453684069216251],[120,72,73,-0.5474954880774021],[120,72,74,-0.5486784763634205],[120,72,75,-0.5487280450761318],[120,72,76,-0.5475300811231136],[120,72,77,-0.5451569445431232],[120,72,78,-0.5418212004005909],[120,72,79,-0.5380158722400665],[120,73,64,-0.5461561381816864],[120,73,65,-0.5455079823732376],[120,73,66,-0.5438496991991997],[120,73,67,-0.5418883860111237],[120,73,68,-0.54057876765728],[120,73,69,-0.540533009916544],[120,73,70,-0.5415988229215145],[120,73,71,-0.5431684888899326],[120,73,72,-0.5453684069216251],[120,73,73,-0.5474954880774021],[120,73,74,-0.5486784763634205],[120,73,75,-0.5487280450761318],[120,73,76,-0.5475300811231136],[120,73,77,-0.5451569445431232],[120,73,78,-0.5418212004005909],[120,73,79,-0.5380158722400665],[120,74,64,-0.5461561381816864],[120,74,65,-0.5455079823732376],[120,74,66,-0.5438496991991997],[120,74,67,-0.5418883860111237],[120,74,68,-0.54057876765728],[120,74,69,-0.540533009916544],[120,74,70,-0.5415988229215145],[120,74,71,-0.5431684888899326],[120,74,72,-0.5453684069216251],[120,74,73,-0.5474954880774021],[120,74,74,-0.5486784763634205],[120,74,75,-0.5487280450761318],[120,74,76,-0.5475300811231136],[120,74,77,-0.5451569445431232],[120,74,78,-0.5418212004005909],[120,74,79,-0.5380158722400665],[120,75,64,-0.5461561381816864],[120,75,65,-0.5455079823732376],[120,75,66,-0.5438496991991997],[120,75,67,-0.5418883860111237],[120,75,68,-0.54057876765728],[120,75,69,-0.540533009916544],[120,75,70,-0.5415988229215145],[120,75,71,-0.5431684888899326],[120,75,72,-0.5453684069216251],[120,75,73,-0.5474954880774021],[120,75,74,-0.5486784763634205],[120,75,75,-0.5487280450761318],[120,75,76,-0.5475300811231136],[120,75,77,-0.5451569445431232],[120,75,78,-0.5418212004005909],[120,75,79,-0.5380158722400665],[120,76,64,-0.5461561381816864],[120,76,65,-0.5455079823732376],[120,76,66,-0.5438496991991997],[120,76,67,-0.5418883860111237],[120,76,68,-0.54057876765728],[120,76,69,-0.540533009916544],[120,76,70,-0.5415988229215145],[120,76,71,-0.5431684888899326],[120,76,72,-0.5453684069216251],[120,76,73,-0.5474954880774021],[120,76,74,-0.5486784763634205],[120,76,75,-0.5487280450761318],[120,76,76,-0.5475300811231136],[120,76,77,-0.5451569445431232],[120,76,78,-0.5418212004005909],[120,76,79,-0.5380158722400665],[120,77,64,-0.5461561381816864],[120,77,65,-0.5455079823732376],[120,77,66,-0.5438496991991997],[120,77,67,-0.5418883860111237],[120,77,68,-0.54057876765728],[120,77,69,-0.540533009916544],[120,77,70,-0.5415988229215145],[120,77,71,-0.5431684888899326],[120,77,72,-0.5453684069216251],[120,77,73,-0.5474954880774021],[120,77,74,-0.5486784763634205],[120,77,75,-0.5487280450761318],[120,77,76,-0.5475300811231136],[120,77,77,-0.5451569445431232],[120,77,78,-0.5418212004005909],[120,77,79,-0.5380158722400665],[120,78,64,-0.5461561381816864],[120,78,65,-0.5455079823732376],[120,78,66,-0.5438496991991997],[120,78,67,-0.5418883860111237],[120,78,68,-0.54057876765728],[120,78,69,-0.540533009916544],[120,78,70,-0.5415988229215145],[120,78,71,-0.5431684888899326],[120,78,72,-0.5453684069216251],[120,78,73,-0.5474954880774021],[120,78,74,-0.5486784763634205],[120,78,75,-0.5487280450761318],[120,78,76,-0.5475300811231136],[120,78,77,-0.5451569445431232],[120,78,78,-0.5418212004005909],[120,78,79,-0.5380158722400665],[120,79,64,-0.5461561381816864],[120,79,65,-0.5455079823732376],[120,79,66,-0.5438496991991997],[120,79,67,-0.5418883860111237],[120,79,68,-0.54057876765728],[120,79,69,-0.540533009916544],[120,79,70,-0.5415988229215145],[120,79,71,-0.5431684888899326],[120,79,72,-0.5453684069216251],[120,79,73,-0.5474954880774021],[120,79,74,-0.5486784763634205],[120,79,75,-0.5487280450761318],[120,79,76,-0.5475300811231136],[120,79,77,-0.5451569445431232],[120,79,78,-0.5418212004005909],[120,79,79,-0.5380158722400665],[120,80,64,-0.5461561381816864],[120,80,65,-0.5455079823732376],[120,80,66,-0.5438496991991997],[120,80,67,-0.5418883860111237],[120,80,68,-0.54057876765728],[120,80,69,-0.540533009916544],[120,80,70,-0.5415988229215145],[120,80,71,-0.5431684888899326],[120,80,72,-0.5453684069216251],[120,80,73,-0.5474954880774021],[120,80,74,-0.5486784763634205],[120,80,75,-0.5487280450761318],[120,80,76,-0.5475300811231136],[120,80,77,-0.5451569445431232],[120,80,78,-0.5418212004005909],[120,80,79,-0.5380158722400665],[120,81,64,-0.5461561381816864],[120,81,65,-0.5455079823732376],[120,81,66,-0.5438496991991997],[120,81,67,-0.5418883860111237],[120,81,68,-0.54057876765728],[120,81,69,-0.540533009916544],[120,81,70,-0.5415988229215145],[120,81,71,-0.5431684888899326],[120,81,72,-0.5453684069216251],[120,81,73,-0.5474954880774021],[120,81,74,-0.5486784763634205],[120,81,75,-0.5487280450761318],[120,81,76,-0.5475300811231136],[120,81,77,-0.5451569445431232],[120,81,78,-0.5418212004005909],[120,81,79,-0.5380158722400665],[120,82,64,-0.5461561381816864],[120,82,65,-0.5455079823732376],[120,82,66,-0.5438496991991997],[120,82,67,-0.5418883860111237],[120,82,68,-0.54057876765728],[120,82,69,-0.540533009916544],[120,82,70,-0.5415988229215145],[120,82,71,-0.5431684888899326],[120,82,72,-0.5453684069216251],[120,82,73,-0.5474954880774021],[120,82,74,-0.5486784763634205],[120,82,75,-0.5487280450761318],[120,82,76,-0.5475300811231136],[120,82,77,-0.5451569445431232],[120,82,78,-0.5418212004005909],[120,82,79,-0.5380158722400665],[120,83,64,-0.5461561381816864],[120,83,65,-0.5455079823732376],[120,83,66,-0.5438496991991997],[120,83,67,-0.5418883860111237],[120,83,68,-0.54057876765728],[120,83,69,-0.540533009916544],[120,83,70,-0.5415988229215145],[120,83,71,-0.5431684888899326],[120,83,72,-0.5453684069216251],[120,83,73,-0.5474954880774021],[120,83,74,-0.5486784763634205],[120,83,75,-0.5487280450761318],[120,83,76,-0.5475300811231136],[120,83,77,-0.5451569445431232],[120,83,78,-0.5418212004005909],[120,83,79,-0.5380158722400665],[120,84,64,-0.5461561381816864],[120,84,65,-0.5455079823732376],[120,84,66,-0.5438496991991997],[120,84,67,-0.5418883860111237],[120,84,68,-0.54057876765728],[120,84,69,-0.540533009916544],[120,84,70,-0.5415988229215145],[120,84,71,-0.5431684888899326],[120,84,72,-0.5453684069216251],[120,84,73,-0.5474954880774021],[120,84,74,-0.5486784763634205],[120,84,75,-0.5487280450761318],[120,84,76,-0.5475300811231136],[120,84,77,-0.5451569445431232],[120,84,78,-0.5418212004005909],[120,84,79,-0.5380158722400665],[120,85,64,-0.5461561381816864],[120,85,65,-0.5455079823732376],[120,85,66,-0.5438496991991997],[120,85,67,-0.5418883860111237],[120,85,68,-0.54057876765728],[120,85,69,-0.540533009916544],[120,85,70,-0.5415988229215145],[120,85,71,-0.5431684888899326],[120,85,72,-0.5453684069216251],[120,85,73,-0.5474954880774021],[120,85,74,-0.5486784763634205],[120,85,75,-0.5487280450761318],[120,85,76,-0.5475300811231136],[120,85,77,-0.5451569445431232],[120,85,78,-0.5418212004005909],[120,85,79,-0.5380158722400665],[120,86,64,-0.5461561381816864],[120,86,65,-0.5455079823732376],[120,86,66,-0.5438496991991997],[120,86,67,-0.5418883860111237],[120,86,68,-0.54057876765728],[120,86,69,-0.540533009916544],[120,86,70,-0.5415988229215145],[120,86,71,-0.5431684888899326],[120,86,72,-0.5453684069216251],[120,86,73,-0.5474954880774021],[120,86,74,-0.5486784763634205],[120,86,75,-0.5487280450761318],[120,86,76,-0.5475300811231136],[120,86,77,-0.5451569445431232],[120,86,78,-0.5418212004005909],[120,86,79,-0.5380158722400665],[120,87,64,-0.5461561381816864],[120,87,65,-0.5455079823732376],[120,87,66,-0.5438496991991997],[120,87,67,-0.5418883860111237],[120,87,68,-0.54057876765728],[120,87,69,-0.540533009916544],[120,87,70,-0.5415988229215145],[120,87,71,-0.5431684888899326],[120,87,72,-0.5453684069216251],[120,87,73,-0.5474954880774021],[120,87,74,-0.5486784763634205],[120,87,75,-0.5487280450761318],[120,87,76,-0.5475300811231136],[120,87,77,-0.5451569445431232],[120,87,78,-0.5418212004005909],[120,87,79,-0.5380158722400665],[120,88,64,-0.5461561381816864],[120,88,65,-0.5455079823732376],[120,88,66,-0.5438496991991997],[120,88,67,-0.5418883860111237],[120,88,68,-0.54057876765728],[120,88,69,-0.540533009916544],[120,88,70,-0.5415988229215145],[120,88,71,-0.5431684888899326],[120,88,72,-0.5453684069216251],[120,88,73,-0.5474954880774021],[120,88,74,-0.5486784763634205],[120,88,75,-0.5487280450761318],[120,88,76,-0.5475300811231136],[120,88,77,-0.5451569445431232],[120,88,78,-0.5418212004005909],[120,88,79,-0.5380158722400665],[120,89,64,-0.5461561381816864],[120,89,65,-0.5455079823732376],[120,89,66,-0.5438496991991997],[120,89,67,-0.5418883860111237],[120,89,68,-0.54057876765728],[120,89,69,-0.540533009916544],[120,89,70,-0.5415988229215145],[120,89,71,-0.5431684888899326],[120,89,72,-0.5453684069216251],[120,89,73,-0.5474954880774021],[120,89,74,-0.5486784763634205],[120,89,75,-0.5487280450761318],[120,89,76,-0.5475300811231136],[120,89,77,-0.5451569445431232],[120,89,78,-0.5418212004005909],[120,89,79,-0.5380158722400665],[120,90,64,-0.5461561381816864],[120,90,65,-0.5455079823732376],[120,90,66,-0.5438496991991997],[120,90,67,-0.5418883860111237],[120,90,68,-0.54057876765728],[120,90,69,-0.540533009916544],[120,90,70,-0.5415988229215145],[120,90,71,-0.5431684888899326],[120,90,72,-0.5453684069216251],[120,90,73,-0.5474954880774021],[120,90,74,-0.5486784763634205],[120,90,75,-0.5487280450761318],[120,90,76,-0.5475300811231136],[120,90,77,-0.5451569445431232],[120,90,78,-0.5418212004005909],[120,90,79,-0.5380158722400665],[120,91,64,-0.5461561381816864],[120,91,65,-0.5455079823732376],[120,91,66,-0.5438496991991997],[120,91,67,-0.5418883860111237],[120,91,68,-0.54057876765728],[120,91,69,-0.540533009916544],[120,91,70,-0.5415988229215145],[120,91,71,-0.5431684888899326],[120,91,72,-0.5453684069216251],[120,91,73,-0.5474954880774021],[120,91,74,-0.5486784763634205],[120,91,75,-0.5487280450761318],[120,91,76,-0.5475300811231136],[120,91,77,-0.5451569445431232],[120,91,78,-0.5418212004005909],[120,91,79,-0.5380158722400665],[120,92,64,-0.5461561381816864],[120,92,65,-0.5455079823732376],[120,92,66,-0.5438496991991997],[120,92,67,-0.5418883860111237],[120,92,68,-0.54057876765728],[120,92,69,-0.540533009916544],[120,92,70,-0.5415988229215145],[120,92,71,-0.5431684888899326],[120,92,72,-0.5453684069216251],[120,92,73,-0.5474954880774021],[120,92,74,-0.5486784763634205],[120,92,75,-0.5487280450761318],[120,92,76,-0.5475300811231136],[120,92,77,-0.5451569445431232],[120,92,78,-0.5418212004005909],[120,92,79,-0.5380158722400665],[120,93,64,-0.5461561381816864],[120,93,65,-0.5455079823732376],[120,93,66,-0.5438496991991997],[120,93,67,-0.5418883860111237],[120,93,68,-0.54057876765728],[120,93,69,-0.540533009916544],[120,93,70,-0.5415988229215145],[120,93,71,-0.5431684888899326],[120,93,72,-0.5453684069216251],[120,93,73,-0.5474954880774021],[120,93,74,-0.5486784763634205],[120,93,75,-0.5487280450761318],[120,93,76,-0.5475300811231136],[120,93,77,-0.5451569445431232],[120,93,78,-0.5418212004005909],[120,93,79,-0.5380158722400665],[120,94,64,-0.5461561381816864],[120,94,65,-0.5455079823732376],[120,94,66,-0.5438496991991997],[120,94,67,-0.5418883860111237],[120,94,68,-0.54057876765728],[120,94,69,-0.540533009916544],[120,94,70,-0.5415988229215145],[120,94,71,-0.5431684888899326],[120,94,72,-0.5453684069216251],[120,94,73,-0.5474954880774021],[120,94,74,-0.5486784763634205],[120,94,75,-0.5487280450761318],[120,94,76,-0.5475300811231136],[120,94,77,-0.5451569445431232],[120,94,78,-0.5418212004005909],[120,94,79,-0.5380158722400665],[120,95,64,-0.5461561381816864],[120,95,65,-0.5455079823732376],[120,95,66,-0.5438496991991997],[120,95,67,-0.5418883860111237],[120,95,68,-0.54057876765728],[120,95,69,-0.540533009916544],[120,95,70,-0.5415988229215145],[120,95,71,-0.5431684888899326],[120,95,72,-0.5453684069216251],[120,95,73,-0.5474954880774021],[120,95,74,-0.5486784763634205],[120,95,75,-0.5487280450761318],[120,95,76,-0.5475300811231136],[120,95,77,-0.5451569445431232],[120,95,78,-0.5418212004005909],[120,95,79,-0.5380158722400665],[120,96,64,-0.5461561381816864],[120,96,65,-0.5455079823732376],[120,96,66,-0.5438496991991997],[120,96,67,-0.5418883860111237],[120,96,68,-0.54057876765728],[120,96,69,-0.540533009916544],[120,96,70,-0.5415988229215145],[120,96,71,-0.5431684888899326],[120,96,72,-0.5453684069216251],[120,96,73,-0.5474954880774021],[120,96,74,-0.5486784763634205],[120,96,75,-0.5487280450761318],[120,96,76,-0.5475300811231136],[120,96,77,-0.5451569445431232],[120,96,78,-0.5418212004005909],[120,96,79,-0.5380158722400665],[120,97,64,-0.5461561381816864],[120,97,65,-0.5455079823732376],[120,97,66,-0.5438496991991997],[120,97,67,-0.5418883860111237],[120,97,68,-0.54057876765728],[120,97,69,-0.540533009916544],[120,97,70,-0.5415988229215145],[120,97,71,-0.5431684888899326],[120,97,72,-0.5453684069216251],[120,97,73,-0.5474954880774021],[120,97,74,-0.5486784763634205],[120,97,75,-0.5487280450761318],[120,97,76,-0.5475300811231136],[120,97,77,-0.5451569445431232],[120,97,78,-0.5418212004005909],[120,97,79,-0.5380158722400665],[120,98,64,-0.5461561381816864],[120,98,65,-0.5455079823732376],[120,98,66,-0.5438496991991997],[120,98,67,-0.5418883860111237],[120,98,68,-0.54057876765728],[120,98,69,-0.540533009916544],[120,98,70,-0.5415988229215145],[120,98,71,-0.5431684888899326],[120,98,72,-0.5453684069216251],[120,98,73,-0.5474954880774021],[120,98,74,-0.5486784763634205],[120,98,75,-0.5487280450761318],[120,98,76,-0.5475300811231136],[120,98,77,-0.5451569445431232],[120,98,78,-0.5418212004005909],[120,98,79,-0.5380158722400665],[120,99,64,-0.5461561381816864],[120,99,65,-0.5455079823732376],[120,99,66,-0.5438496991991997],[120,99,67,-0.5418883860111237],[120,99,68,-0.54057876765728],[120,99,69,-0.540533009916544],[120,99,70,-0.5415988229215145],[120,99,71,-0.5431684888899326],[120,99,72,-0.5453684069216251],[120,99,73,-0.5474954880774021],[120,99,74,-0.5486784763634205],[120,99,75,-0.5487280450761318],[120,99,76,-0.5475300811231136],[120,99,77,-0.5451569445431232],[120,99,78,-0.5418212004005909],[120,99,79,-0.5380158722400665],[120,100,64,-0.5461561381816864],[120,100,65,-0.5455079823732376],[120,100,66,-0.5438496991991997],[120,100,67,-0.5418883860111237],[120,100,68,-0.54057876765728],[120,100,69,-0.540533009916544],[120,100,70,-0.5415988229215145],[120,100,71,-0.5431684888899326],[120,100,72,-0.5453684069216251],[120,100,73,-0.5474954880774021],[120,100,74,-0.5486784763634205],[120,100,75,-0.5487280450761318],[120,100,76,-0.5475300811231136],[120,100,77,-0.5451569445431232],[120,100,78,-0.5418212004005909],[120,100,79,-0.5380158722400665],[120,101,64,-0.5461561381816864],[120,101,65,-0.5455079823732376],[120,101,66,-0.5438496991991997],[120,101,67,-0.5418883860111237],[120,101,68,-0.54057876765728],[120,101,69,-0.540533009916544],[120,101,70,-0.5415988229215145],[120,101,71,-0.5431684888899326],[120,101,72,-0.5453684069216251],[120,101,73,-0.5474954880774021],[120,101,74,-0.5486784763634205],[120,101,75,-0.5487280450761318],[120,101,76,-0.5475300811231136],[120,101,77,-0.5451569445431232],[120,101,78,-0.5418212004005909],[120,101,79,-0.5380158722400665],[120,102,64,-0.5461561381816864],[120,102,65,-0.5455079823732376],[120,102,66,-0.5438496991991997],[120,102,67,-0.5418883860111237],[120,102,68,-0.54057876765728],[120,102,69,-0.540533009916544],[120,102,70,-0.5415988229215145],[120,102,71,-0.5431684888899326],[120,102,72,-0.5453684069216251],[120,102,73,-0.5474954880774021],[120,102,74,-0.5486784763634205],[120,102,75,-0.5487280450761318],[120,102,76,-0.5475300811231136],[120,102,77,-0.5451569445431232],[120,102,78,-0.5418212004005909],[120,102,79,-0.5380158722400665],[120,103,64,-0.5461561381816864],[120,103,65,-0.5455079823732376],[120,103,66,-0.5438496991991997],[120,103,67,-0.5418883860111237],[120,103,68,-0.54057876765728],[120,103,69,-0.540533009916544],[120,103,70,-0.5415988229215145],[120,103,71,-0.5431684888899326],[120,103,72,-0.5453684069216251],[120,103,73,-0.5474954880774021],[120,103,74,-0.5486784763634205],[120,103,75,-0.5487280450761318],[120,103,76,-0.5475300811231136],[120,103,77,-0.5451569445431232],[120,103,78,-0.5418212004005909],[120,103,79,-0.5380158722400665],[120,104,64,-0.5461561381816864],[120,104,65,-0.5455079823732376],[120,104,66,-0.5438496991991997],[120,104,67,-0.5418883860111237],[120,104,68,-0.54057876765728],[120,104,69,-0.540533009916544],[120,104,70,-0.5415988229215145],[120,104,71,-0.5431684888899326],[120,104,72,-0.5453684069216251],[120,104,73,-0.5474954880774021],[120,104,74,-0.5486784763634205],[120,104,75,-0.5487280450761318],[120,104,76,-0.5475300811231136],[120,104,77,-0.5451569445431232],[120,104,78,-0.5418212004005909],[120,104,79,-0.5380158722400665],[120,105,64,-0.5461561381816864],[120,105,65,-0.5455079823732376],[120,105,66,-0.5438496991991997],[120,105,67,-0.5418883860111237],[120,105,68,-0.54057876765728],[120,105,69,-0.540533009916544],[120,105,70,-0.5415988229215145],[120,105,71,-0.5431684888899326],[120,105,72,-0.5453684069216251],[120,105,73,-0.5474954880774021],[120,105,74,-0.5486784763634205],[120,105,75,-0.5487280450761318],[120,105,76,-0.5475300811231136],[120,105,77,-0.5451569445431232],[120,105,78,-0.5418212004005909],[120,105,79,-0.5380158722400665],[120,106,64,-0.5461561381816864],[120,106,65,-0.5455079823732376],[120,106,66,-0.5438496991991997],[120,106,67,-0.5418883860111237],[120,106,68,-0.54057876765728],[120,106,69,-0.540533009916544],[120,106,70,-0.5415988229215145],[120,106,71,-0.5431684888899326],[120,106,72,-0.5453684069216251],[120,106,73,-0.5474954880774021],[120,106,74,-0.5486784763634205],[120,106,75,-0.5487280450761318],[120,106,76,-0.5475300811231136],[120,106,77,-0.5451569445431232],[120,106,78,-0.5418212004005909],[120,106,79,-0.5380158722400665],[120,107,64,-0.5461561381816864],[120,107,65,-0.5455079823732376],[120,107,66,-0.5438496991991997],[120,107,67,-0.5418883860111237],[120,107,68,-0.54057876765728],[120,107,69,-0.540533009916544],[120,107,70,-0.5415988229215145],[120,107,71,-0.5431684888899326],[120,107,72,-0.5453684069216251],[120,107,73,-0.5474954880774021],[120,107,74,-0.5486784763634205],[120,107,75,-0.5487280450761318],[120,107,76,-0.5475300811231136],[120,107,77,-0.5451569445431232],[120,107,78,-0.5418212004005909],[120,107,79,-0.5380158722400665],[120,108,64,-0.5461561381816864],[120,108,65,-0.5455079823732376],[120,108,66,-0.5438496991991997],[120,108,67,-0.5418883860111237],[120,108,68,-0.54057876765728],[120,108,69,-0.540533009916544],[120,108,70,-0.5415988229215145],[120,108,71,-0.5431684888899326],[120,108,72,-0.5453684069216251],[120,108,73,-0.5474954880774021],[120,108,74,-0.5486784763634205],[120,108,75,-0.5487280450761318],[120,108,76,-0.5475300811231136],[120,108,77,-0.5451569445431232],[120,108,78,-0.5418212004005909],[120,108,79,-0.5380158722400665],[120,109,64,-0.5461561381816864],[120,109,65,-0.5455079823732376],[120,109,66,-0.5438496991991997],[120,109,67,-0.5418883860111237],[120,109,68,-0.54057876765728],[120,109,69,-0.540533009916544],[120,109,70,-0.5415988229215145],[120,109,71,-0.5431684888899326],[120,109,72,-0.5453684069216251],[120,109,73,-0.5474954880774021],[120,109,74,-0.5486784763634205],[120,109,75,-0.5487280450761318],[120,109,76,-0.5475300811231136],[120,109,77,-0.5451569445431232],[120,109,78,-0.5418212004005909],[120,109,79,-0.5380158722400665],[120,110,64,-0.5461561381816864],[120,110,65,-0.5455079823732376],[120,110,66,-0.5438496991991997],[120,110,67,-0.5418883860111237],[120,110,68,-0.54057876765728],[120,110,69,-0.540533009916544],[120,110,70,-0.5415988229215145],[120,110,71,-0.5431684888899326],[120,110,72,-0.5453684069216251],[120,110,73,-0.5474954880774021],[120,110,74,-0.5486784763634205],[120,110,75,-0.5487280450761318],[120,110,76,-0.5475300811231136],[120,110,77,-0.5451569445431232],[120,110,78,-0.5418212004005909],[120,110,79,-0.5380158722400665],[120,111,64,-0.5461561381816864],[120,111,65,-0.5455079823732376],[120,111,66,-0.5438496991991997],[120,111,67,-0.5418883860111237],[120,111,68,-0.54057876765728],[120,111,69,-0.540533009916544],[120,111,70,-0.5415988229215145],[120,111,71,-0.5431684888899326],[120,111,72,-0.5453684069216251],[120,111,73,-0.5474954880774021],[120,111,74,-0.5486784763634205],[120,111,75,-0.5487280450761318],[120,111,76,-0.5475300811231136],[120,111,77,-0.5451569445431232],[120,111,78,-0.5418212004005909],[120,111,79,-0.5380158722400665],[120,112,64,-0.5461561381816864],[120,112,65,-0.5455079823732376],[120,112,66,-0.5438496991991997],[120,112,67,-0.5418883860111237],[120,112,68,-0.54057876765728],[120,112,69,-0.540533009916544],[120,112,70,-0.5415988229215145],[120,112,71,-0.5431684888899326],[120,112,72,-0.5453684069216251],[120,112,73,-0.5474954880774021],[120,112,74,-0.5486784763634205],[120,112,75,-0.5487280450761318],[120,112,76,-0.5475300811231136],[120,112,77,-0.5451569445431232],[120,112,78,-0.5418212004005909],[120,112,79,-0.5380158722400665],[120,113,64,-0.5461561381816864],[120,113,65,-0.5455079823732376],[120,113,66,-0.5438496991991997],[120,113,67,-0.5418883860111237],[120,113,68,-0.54057876765728],[120,113,69,-0.540533009916544],[120,113,70,-0.5415988229215145],[120,113,71,-0.5431684888899326],[120,113,72,-0.5453684069216251],[120,113,73,-0.5474954880774021],[120,113,74,-0.5486784763634205],[120,113,75,-0.5487280450761318],[120,113,76,-0.5475300811231136],[120,113,77,-0.5451569445431232],[120,113,78,-0.5418212004005909],[120,113,79,-0.5380158722400665],[120,114,64,-0.5461561381816864],[120,114,65,-0.5455079823732376],[120,114,66,-0.5438496991991997],[120,114,67,-0.5418883860111237],[120,114,68,-0.54057876765728],[120,114,69,-0.540533009916544],[120,114,70,-0.5415988229215145],[120,114,71,-0.5431684888899326],[120,114,72,-0.5453684069216251],[120,114,73,-0.5474954880774021],[120,114,74,-0.5486784763634205],[120,114,75,-0.5487280450761318],[120,114,76,-0.5475300811231136],[120,114,77,-0.5451569445431232],[120,114,78,-0.5418212004005909],[120,114,79,-0.5380158722400665],[120,115,64,-0.5461561381816864],[120,115,65,-0.5455079823732376],[120,115,66,-0.5438496991991997],[120,115,67,-0.5418883860111237],[120,115,68,-0.54057876765728],[120,115,69,-0.540533009916544],[120,115,70,-0.5415988229215145],[120,115,71,-0.5431684888899326],[120,115,72,-0.5453684069216251],[120,115,73,-0.5474954880774021],[120,115,74,-0.5486784763634205],[120,115,75,-0.5487280450761318],[120,115,76,-0.5475300811231136],[120,115,77,-0.5451569445431232],[120,115,78,-0.5418212004005909],[120,115,79,-0.5380158722400665],[120,116,64,-0.5461561381816864],[120,116,65,-0.5455079823732376],[120,116,66,-0.5438496991991997],[120,116,67,-0.5418883860111237],[120,116,68,-0.54057876765728],[120,116,69,-0.540533009916544],[120,116,70,-0.5415988229215145],[120,116,71,-0.5431684888899326],[120,116,72,-0.5453684069216251],[120,116,73,-0.5474954880774021],[120,116,74,-0.5486784763634205],[120,116,75,-0.5487280450761318],[120,116,76,-0.5475300811231136],[120,116,77,-0.5451569445431232],[120,116,78,-0.5418212004005909],[120,116,79,-0.5380158722400665],[120,117,64,-0.5461561381816864],[120,117,65,-0.5455079823732376],[120,117,66,-0.5438496991991997],[120,117,67,-0.5418883860111237],[120,117,68,-0.54057876765728],[120,117,69,-0.540533009916544],[120,117,70,-0.5415988229215145],[120,117,71,-0.5431684888899326],[120,117,72,-0.5453684069216251],[120,117,73,-0.5474954880774021],[120,117,74,-0.5486784763634205],[120,117,75,-0.5487280450761318],[120,117,76,-0.5475300811231136],[120,117,77,-0.5451569445431232],[120,117,78,-0.5418212004005909],[120,117,79,-0.5380158722400665],[120,118,64,-0.5461561381816864],[120,118,65,-0.5455079823732376],[120,118,66,-0.5438496991991997],[120,118,67,-0.5418883860111237],[120,118,68,-0.54057876765728],[120,118,69,-0.540533009916544],[120,118,70,-0.5415988229215145],[120,118,71,-0.5431684888899326],[120,118,72,-0.5453684069216251],[120,118,73,-0.5474954880774021],[120,118,74,-0.5486784763634205],[120,118,75,-0.5487280450761318],[120,118,76,-0.5475300811231136],[120,118,77,-0.5451569445431232],[120,118,78,-0.5418212004005909],[120,118,79,-0.5380158722400665],[120,119,64,-0.5461561381816864],[120,119,65,-0.5455079823732376],[120,119,66,-0.5438496991991997],[120,119,67,-0.5418883860111237],[120,119,68,-0.54057876765728],[120,119,69,-0.540533009916544],[120,119,70,-0.5415988229215145],[120,119,71,-0.5431684888899326],[120,119,72,-0.5453684069216251],[120,119,73,-0.5474954880774021],[120,119,74,-0.5486784763634205],[120,119,75,-0.5487280450761318],[120,119,76,-0.5475300811231136],[120,119,77,-0.5451569445431232],[120,119,78,-0.5418212004005909],[120,119,79,-0.5380158722400665],[120,120,64,-0.5461561381816864],[120,120,65,-0.5455079823732376],[120,120,66,-0.5438496991991997],[120,120,67,-0.5418883860111237],[120,120,68,-0.54057876765728],[120,120,69,-0.540533009916544],[120,120,70,-0.5415988229215145],[120,120,71,-0.5431684888899326],[120,120,72,-0.5453684069216251],[120,120,73,-0.5474954880774021],[120,120,74,-0.5486784763634205],[120,120,75,-0.5487280450761318],[120,120,76,-0.5475300811231136],[120,120,77,-0.5451569445431232],[120,120,78,-0.5418212004005909],[120,120,79,-0.5380158722400665],[120,121,64,-0.5461561381816864],[120,121,65,-0.5455079823732376],[120,121,66,-0.5438496991991997],[120,121,67,-0.5418883860111237],[120,121,68,-0.54057876765728],[120,121,69,-0.540533009916544],[120,121,70,-0.5415988229215145],[120,121,71,-0.5431684888899326],[120,121,72,-0.5453684069216251],[120,121,73,-0.5474954880774021],[120,121,74,-0.5486784763634205],[120,121,75,-0.5487280450761318],[120,121,76,-0.5475300811231136],[120,121,77,-0.5451569445431232],[120,121,78,-0.5418212004005909],[120,121,79,-0.5380158722400665],[120,122,64,-0.5461561381816864],[120,122,65,-0.5455079823732376],[120,122,66,-0.5438496991991997],[120,122,67,-0.5418883860111237],[120,122,68,-0.54057876765728],[120,122,69,-0.540533009916544],[120,122,70,-0.5415988229215145],[120,122,71,-0.5431684888899326],[120,122,72,-0.5453684069216251],[120,122,73,-0.5474954880774021],[120,122,74,-0.5486784763634205],[120,122,75,-0.5487280450761318],[120,122,76,-0.5475300811231136],[120,122,77,-0.5451569445431232],[120,122,78,-0.5418212004005909],[120,122,79,-0.5380158722400665],[120,123,64,-0.5461561381816864],[120,123,65,-0.5455079823732376],[120,123,66,-0.5438496991991997],[120,123,67,-0.5418883860111237],[120,123,68,-0.54057876765728],[120,123,69,-0.540533009916544],[120,123,70,-0.5415988229215145],[120,123,71,-0.5431684888899326],[120,123,72,-0.5453684069216251],[120,123,73,-0.5474954880774021],[120,123,74,-0.5486784763634205],[120,123,75,-0.5487280450761318],[120,123,76,-0.5475300811231136],[120,123,77,-0.5451569445431232],[120,123,78,-0.5418212004005909],[120,123,79,-0.5380158722400665],[120,124,64,-0.5461561381816864],[120,124,65,-0.5455079823732376],[120,124,66,-0.5438496991991997],[120,124,67,-0.5418883860111237],[120,124,68,-0.54057876765728],[120,124,69,-0.540533009916544],[120,124,70,-0.5415988229215145],[120,124,71,-0.5431684888899326],[120,124,72,-0.5453684069216251],[120,124,73,-0.5474954880774021],[120,124,74,-0.5486784763634205],[120,124,75,-0.5487280450761318],[120,124,76,-0.5475300811231136],[120,124,77,-0.5451569445431232],[120,124,78,-0.5418212004005909],[120,124,79,-0.5380158722400665],[120,125,64,-0.5461561381816864],[120,125,65,-0.5455079823732376],[120,125,66,-0.5438496991991997],[120,125,67,-0.5418883860111237],[120,125,68,-0.54057876765728],[120,125,69,-0.540533009916544],[120,125,70,-0.5415988229215145],[120,125,71,-0.5431684888899326],[120,125,72,-0.5453684069216251],[120,125,73,-0.5474954880774021],[120,125,74,-0.5486784763634205],[120,125,75,-0.5487280450761318],[120,125,76,-0.5475300811231136],[120,125,77,-0.5451569445431232],[120,125,78,-0.5418212004005909],[120,125,79,-0.5380158722400665],[120,126,64,-0.5461561381816864],[120,126,65,-0.5455079823732376],[120,126,66,-0.5438496991991997],[120,126,67,-0.5418883860111237],[120,126,68,-0.54057876765728],[120,126,69,-0.540533009916544],[120,126,70,-0.5415988229215145],[120,126,71,-0.5431684888899326],[120,126,72,-0.5453684069216251],[120,126,73,-0.5474954880774021],[120,126,74,-0.5486784763634205],[120,126,75,-0.5487280450761318],[120,126,76,-0.5475300811231136],[120,126,77,-0.5451569445431232],[120,126,78,-0.5418212004005909],[120,126,79,-0.5380158722400665],[120,127,64,-0.5461561381816864],[120,127,65,-0.5455079823732376],[120,127,66,-0.5438496991991997],[120,127,67,-0.5418883860111237],[120,127,68,-0.54057876765728],[120,127,69,-0.540533009916544],[120,127,70,-0.5415988229215145],[120,127,71,-0.5431684888899326],[120,127,72,-0.5453684069216251],[120,127,73,-0.5474954880774021],[120,127,74,-0.5486784763634205],[120,127,75,-0.5487280450761318],[120,127,76,-0.5475300811231136],[120,127,77,-0.5451569445431232],[120,127,78,-0.5418212004005909],[120,127,79,-0.5380158722400665],[120,128,64,-0.5461561381816864],[120,128,65,-0.5455079823732376],[120,128,66,-0.5438496991991997],[120,128,67,-0.5418883860111237],[120,128,68,-0.54057876765728],[120,128,69,-0.540533009916544],[120,128,70,-0.5415988229215145],[120,128,71,-0.5431684888899326],[120,128,72,-0.5453684069216251],[120,128,73,-0.5474954880774021],[120,128,74,-0.5486784763634205],[120,128,75,-0.5487280450761318],[120,128,76,-0.5475300811231136],[120,128,77,-0.5451569445431232],[120,128,78,-0.5418212004005909],[120,128,79,-0.5380158722400665],[120,129,64,-0.5461561381816864],[120,129,65,-0.5455079823732376],[120,129,66,-0.5438496991991997],[120,129,67,-0.5418883860111237],[120,129,68,-0.54057876765728],[120,129,69,-0.540533009916544],[120,129,70,-0.5415988229215145],[120,129,71,-0.5431684888899326],[120,129,72,-0.5453684069216251],[120,129,73,-0.5474954880774021],[120,129,74,-0.5486784763634205],[120,129,75,-0.5487280450761318],[120,129,76,-0.5475300811231136],[120,129,77,-0.5451569445431232],[120,129,78,-0.5418212004005909],[120,129,79,-0.5380158722400665],[120,130,64,-0.5461561381816864],[120,130,65,-0.5455079823732376],[120,130,66,-0.5438496991991997],[120,130,67,-0.5418883860111237],[120,130,68,-0.54057876765728],[120,130,69,-0.540533009916544],[120,130,70,-0.5415988229215145],[120,130,71,-0.5431684888899326],[120,130,72,-0.5453684069216251],[120,130,73,-0.5474954880774021],[120,130,74,-0.5486784763634205],[120,130,75,-0.5487280450761318],[120,130,76,-0.5475300811231136],[120,130,77,-0.5451569445431232],[120,130,78,-0.5418212004005909],[120,130,79,-0.5380158722400665],[120,131,64,-0.5461561381816864],[120,131,65,-0.5455079823732376],[120,131,66,-0.5438496991991997],[120,131,67,-0.5418883860111237],[120,131,68,-0.54057876765728],[120,131,69,-0.540533009916544],[120,131,70,-0.5415988229215145],[120,131,71,-0.5431684888899326],[120,131,72,-0.5453684069216251],[120,131,73,-0.5474954880774021],[120,131,74,-0.5486784763634205],[120,131,75,-0.5487280450761318],[120,131,76,-0.5475300811231136],[120,131,77,-0.5451569445431232],[120,131,78,-0.5418212004005909],[120,131,79,-0.5380158722400665],[120,132,64,-0.5461561381816864],[120,132,65,-0.5455079823732376],[120,132,66,-0.5438496991991997],[120,132,67,-0.5418883860111237],[120,132,68,-0.54057876765728],[120,132,69,-0.540533009916544],[120,132,70,-0.5415988229215145],[120,132,71,-0.5431684888899326],[120,132,72,-0.5453684069216251],[120,132,73,-0.5474954880774021],[120,132,74,-0.5486784763634205],[120,132,75,-0.5487280450761318],[120,132,76,-0.5475300811231136],[120,132,77,-0.5451569445431232],[120,132,78,-0.5418212004005909],[120,132,79,-0.5380158722400665],[120,133,64,-0.5461561381816864],[120,133,65,-0.5455079823732376],[120,133,66,-0.5438496991991997],[120,133,67,-0.5418883860111237],[120,133,68,-0.54057876765728],[120,133,69,-0.540533009916544],[120,133,70,-0.5415988229215145],[120,133,71,-0.5431684888899326],[120,133,72,-0.5453684069216251],[120,133,73,-0.5474954880774021],[120,133,74,-0.5486784763634205],[120,133,75,-0.5487280450761318],[120,133,76,-0.5475300811231136],[120,133,77,-0.5451569445431232],[120,133,78,-0.5418212004005909],[120,133,79,-0.5380158722400665],[120,134,64,-0.5461561381816864],[120,134,65,-0.5455079823732376],[120,134,66,-0.5438496991991997],[120,134,67,-0.5418883860111237],[120,134,68,-0.54057876765728],[120,134,69,-0.540533009916544],[120,134,70,-0.5415988229215145],[120,134,71,-0.5431684888899326],[120,134,72,-0.5453684069216251],[120,134,73,-0.5474954880774021],[120,134,74,-0.5486784763634205],[120,134,75,-0.5487280450761318],[120,134,76,-0.5475300811231136],[120,134,77,-0.5451569445431232],[120,134,78,-0.5418212004005909],[120,134,79,-0.5380158722400665],[120,135,64,-0.5461561381816864],[120,135,65,-0.5455079823732376],[120,135,66,-0.5438496991991997],[120,135,67,-0.5418883860111237],[120,135,68,-0.54057876765728],[120,135,69,-0.540533009916544],[120,135,70,-0.5415988229215145],[120,135,71,-0.5431684888899326],[120,135,72,-0.5453684069216251],[120,135,73,-0.5474954880774021],[120,135,74,-0.5486784763634205],[120,135,75,-0.5487280450761318],[120,135,76,-0.5475300811231136],[120,135,77,-0.5451569445431232],[120,135,78,-0.5418212004005909],[120,135,79,-0.5380158722400665],[120,136,64,-0.5461561381816864],[120,136,65,-0.5455079823732376],[120,136,66,-0.5438496991991997],[120,136,67,-0.5418883860111237],[120,136,68,-0.54057876765728],[120,136,69,-0.540533009916544],[120,136,70,-0.5415988229215145],[120,136,71,-0.5431684888899326],[120,136,72,-0.5453684069216251],[120,136,73,-0.5474954880774021],[120,136,74,-0.5486784763634205],[120,136,75,-0.5487280450761318],[120,136,76,-0.5475300811231136],[120,136,77,-0.5451569445431232],[120,136,78,-0.5418212004005909],[120,136,79,-0.5380158722400665],[120,137,64,-0.5461561381816864],[120,137,65,-0.5455079823732376],[120,137,66,-0.5438496991991997],[120,137,67,-0.5418883860111237],[120,137,68,-0.54057876765728],[120,137,69,-0.540533009916544],[120,137,70,-0.5415988229215145],[120,137,71,-0.5431684888899326],[120,137,72,-0.5453684069216251],[120,137,73,-0.5474954880774021],[120,137,74,-0.5486784763634205],[120,137,75,-0.5487280450761318],[120,137,76,-0.5475300811231136],[120,137,77,-0.5451569445431232],[120,137,78,-0.5418212004005909],[120,137,79,-0.5380158722400665],[120,138,64,-0.5461561381816864],[120,138,65,-0.5455079823732376],[120,138,66,-0.5438496991991997],[120,138,67,-0.5418883860111237],[120,138,68,-0.54057876765728],[120,138,69,-0.540533009916544],[120,138,70,-0.5415988229215145],[120,138,71,-0.5431684888899326],[120,138,72,-0.5453684069216251],[120,138,73,-0.5474954880774021],[120,138,74,-0.5486784763634205],[120,138,75,-0.5487280450761318],[120,138,76,-0.5475300811231136],[120,138,77,-0.5451569445431232],[120,138,78,-0.5418212004005909],[120,138,79,-0.5380158722400665],[120,139,64,-0.5461561381816864],[120,139,65,-0.5455079823732376],[120,139,66,-0.5438496991991997],[120,139,67,-0.5418883860111237],[120,139,68,-0.54057876765728],[120,139,69,-0.540533009916544],[120,139,70,-0.5415988229215145],[120,139,71,-0.5431684888899326],[120,139,72,-0.5453684069216251],[120,139,73,-0.5474954880774021],[120,139,74,-0.5486784763634205],[120,139,75,-0.5487280450761318],[120,139,76,-0.5475300811231136],[120,139,77,-0.5451569445431232],[120,139,78,-0.5418212004005909],[120,139,79,-0.5380158722400665],[120,140,64,-0.5461561381816864],[120,140,65,-0.5455079823732376],[120,140,66,-0.5438496991991997],[120,140,67,-0.5418883860111237],[120,140,68,-0.54057876765728],[120,140,69,-0.540533009916544],[120,140,70,-0.5415988229215145],[120,140,71,-0.5431684888899326],[120,140,72,-0.5453684069216251],[120,140,73,-0.5474954880774021],[120,140,74,-0.5486784763634205],[120,140,75,-0.5487280450761318],[120,140,76,-0.5475300811231136],[120,140,77,-0.5451569445431232],[120,140,78,-0.5418212004005909],[120,140,79,-0.5380158722400665],[120,141,64,-0.5461561381816864],[120,141,65,-0.5455079823732376],[120,141,66,-0.5438496991991997],[120,141,67,-0.5418883860111237],[120,141,68,-0.54057876765728],[120,141,69,-0.540533009916544],[120,141,70,-0.5415988229215145],[120,141,71,-0.5431684888899326],[120,141,72,-0.5453684069216251],[120,141,73,-0.5474954880774021],[120,141,74,-0.5486784763634205],[120,141,75,-0.5487280450761318],[120,141,76,-0.5475300811231136],[120,141,77,-0.5451569445431232],[120,141,78,-0.5418212004005909],[120,141,79,-0.5380158722400665],[120,142,64,-0.5461561381816864],[120,142,65,-0.5455079823732376],[120,142,66,-0.5438496991991997],[120,142,67,-0.5418883860111237],[120,142,68,-0.54057876765728],[120,142,69,-0.540533009916544],[120,142,70,-0.5415988229215145],[120,142,71,-0.5431684888899326],[120,142,72,-0.5453684069216251],[120,142,73,-0.5474954880774021],[120,142,74,-0.5486784763634205],[120,142,75,-0.5487280450761318],[120,142,76,-0.5475300811231136],[120,142,77,-0.5451569445431232],[120,142,78,-0.5418212004005909],[120,142,79,-0.5380158722400665],[120,143,64,-0.5461561381816864],[120,143,65,-0.5455079823732376],[120,143,66,-0.5438496991991997],[120,143,67,-0.5418883860111237],[120,143,68,-0.54057876765728],[120,143,69,-0.540533009916544],[120,143,70,-0.5415988229215145],[120,143,71,-0.5431684888899326],[120,143,72,-0.5453684069216251],[120,143,73,-0.5474954880774021],[120,143,74,-0.5486784763634205],[120,143,75,-0.5487280450761318],[120,143,76,-0.5475300811231136],[120,143,77,-0.5451569445431232],[120,143,78,-0.5418212004005909],[120,143,79,-0.5380158722400665],[120,144,64,-0.5461561381816864],[120,144,65,-0.5455079823732376],[120,144,66,-0.5438496991991997],[120,144,67,-0.5418883860111237],[120,144,68,-0.54057876765728],[120,144,69,-0.540533009916544],[120,144,70,-0.5415988229215145],[120,144,71,-0.5431684888899326],[120,144,72,-0.5453684069216251],[120,144,73,-0.5474954880774021],[120,144,74,-0.5486784763634205],[120,144,75,-0.5487280450761318],[120,144,76,-0.5475300811231136],[120,144,77,-0.5451569445431232],[120,144,78,-0.5418212004005909],[120,144,79,-0.5380158722400665],[120,145,64,-0.5461561381816864],[120,145,65,-0.5455079823732376],[120,145,66,-0.5438496991991997],[120,145,67,-0.5418883860111237],[120,145,68,-0.54057876765728],[120,145,69,-0.540533009916544],[120,145,70,-0.5415988229215145],[120,145,71,-0.5431684888899326],[120,145,72,-0.5453684069216251],[120,145,73,-0.5474954880774021],[120,145,74,-0.5486784763634205],[120,145,75,-0.5487280450761318],[120,145,76,-0.5475300811231136],[120,145,77,-0.5451569445431232],[120,145,78,-0.5418212004005909],[120,145,79,-0.5380158722400665],[120,146,64,-0.5461561381816864],[120,146,65,-0.5455079823732376],[120,146,66,-0.5438496991991997],[120,146,67,-0.5418883860111237],[120,146,68,-0.54057876765728],[120,146,69,-0.540533009916544],[120,146,70,-0.5415988229215145],[120,146,71,-0.5431684888899326],[120,146,72,-0.5453684069216251],[120,146,73,-0.5474954880774021],[120,146,74,-0.5486784763634205],[120,146,75,-0.5487280450761318],[120,146,76,-0.5475300811231136],[120,146,77,-0.5451569445431232],[120,146,78,-0.5418212004005909],[120,146,79,-0.5380158722400665],[120,147,64,-0.5461561381816864],[120,147,65,-0.5455079823732376],[120,147,66,-0.5438496991991997],[120,147,67,-0.5418883860111237],[120,147,68,-0.54057876765728],[120,147,69,-0.540533009916544],[120,147,70,-0.5415988229215145],[120,147,71,-0.5431684888899326],[120,147,72,-0.5453684069216251],[120,147,73,-0.5474954880774021],[120,147,74,-0.5486784763634205],[120,147,75,-0.5487280450761318],[120,147,76,-0.5475300811231136],[120,147,77,-0.5451569445431232],[120,147,78,-0.5418212004005909],[120,147,79,-0.5380158722400665],[120,148,64,-0.5461561381816864],[120,148,65,-0.5455079823732376],[120,148,66,-0.5438496991991997],[120,148,67,-0.5418883860111237],[120,148,68,-0.54057876765728],[120,148,69,-0.540533009916544],[120,148,70,-0.5415988229215145],[120,148,71,-0.5431684888899326],[120,148,72,-0.5453684069216251],[120,148,73,-0.5474954880774021],[120,148,74,-0.5486784763634205],[120,148,75,-0.5487280450761318],[120,148,76,-0.5475300811231136],[120,148,77,-0.5451569445431232],[120,148,78,-0.5418212004005909],[120,148,79,-0.5380158722400665],[120,149,64,-0.5461561381816864],[120,149,65,-0.5455079823732376],[120,149,66,-0.5438496991991997],[120,149,67,-0.5418883860111237],[120,149,68,-0.54057876765728],[120,149,69,-0.540533009916544],[120,149,70,-0.5415988229215145],[120,149,71,-0.5431684888899326],[120,149,72,-0.5453684069216251],[120,149,73,-0.5474954880774021],[120,149,74,-0.5486784763634205],[120,149,75,-0.5487280450761318],[120,149,76,-0.5475300811231136],[120,149,77,-0.5451569445431232],[120,149,78,-0.5418212004005909],[120,149,79,-0.5380158722400665],[120,150,64,-0.5461561381816864],[120,150,65,-0.5455079823732376],[120,150,66,-0.5438496991991997],[120,150,67,-0.5418883860111237],[120,150,68,-0.54057876765728],[120,150,69,-0.540533009916544],[120,150,70,-0.5415988229215145],[120,150,71,-0.5431684888899326],[120,150,72,-0.5453684069216251],[120,150,73,-0.5474954880774021],[120,150,74,-0.5486784763634205],[120,150,75,-0.5487280450761318],[120,150,76,-0.5475300811231136],[120,150,77,-0.5451569445431232],[120,150,78,-0.5418212004005909],[120,150,79,-0.5380158722400665],[120,151,64,-0.5461561381816864],[120,151,65,-0.5455079823732376],[120,151,66,-0.5438496991991997],[120,151,67,-0.5418883860111237],[120,151,68,-0.54057876765728],[120,151,69,-0.540533009916544],[120,151,70,-0.5415988229215145],[120,151,71,-0.5431684888899326],[120,151,72,-0.5453684069216251],[120,151,73,-0.5474954880774021],[120,151,74,-0.5486784763634205],[120,151,75,-0.5487280450761318],[120,151,76,-0.5475300811231136],[120,151,77,-0.5451569445431232],[120,151,78,-0.5418212004005909],[120,151,79,-0.5380158722400665],[120,152,64,-0.5461561381816864],[120,152,65,-0.5455079823732376],[120,152,66,-0.5438496991991997],[120,152,67,-0.5418883860111237],[120,152,68,-0.54057876765728],[120,152,69,-0.540533009916544],[120,152,70,-0.5415988229215145],[120,152,71,-0.5431684888899326],[120,152,72,-0.5453684069216251],[120,152,73,-0.5474954880774021],[120,152,74,-0.5486784763634205],[120,152,75,-0.5487280450761318],[120,152,76,-0.5475300811231136],[120,152,77,-0.5451569445431232],[120,152,78,-0.5418212004005909],[120,152,79,-0.5380158722400665],[120,153,64,-0.5461561381816864],[120,153,65,-0.5455079823732376],[120,153,66,-0.5438496991991997],[120,153,67,-0.5418883860111237],[120,153,68,-0.54057876765728],[120,153,69,-0.540533009916544],[120,153,70,-0.5415988229215145],[120,153,71,-0.5431684888899326],[120,153,72,-0.5453684069216251],[120,153,73,-0.5474954880774021],[120,153,74,-0.5486784763634205],[120,153,75,-0.5487280450761318],[120,153,76,-0.5475300811231136],[120,153,77,-0.5451569445431232],[120,153,78,-0.5418212004005909],[120,153,79,-0.5380158722400665],[120,154,64,-0.5461561381816864],[120,154,65,-0.5455079823732376],[120,154,66,-0.5438496991991997],[120,154,67,-0.5418883860111237],[120,154,68,-0.54057876765728],[120,154,69,-0.540533009916544],[120,154,70,-0.5415988229215145],[120,154,71,-0.5431684888899326],[120,154,72,-0.5453684069216251],[120,154,73,-0.5474954880774021],[120,154,74,-0.5486784763634205],[120,154,75,-0.5487280450761318],[120,154,76,-0.5475300811231136],[120,154,77,-0.5451569445431232],[120,154,78,-0.5418212004005909],[120,154,79,-0.5380158722400665],[120,155,64,-0.5461561381816864],[120,155,65,-0.5455079823732376],[120,155,66,-0.5438496991991997],[120,155,67,-0.5418883860111237],[120,155,68,-0.54057876765728],[120,155,69,-0.540533009916544],[120,155,70,-0.5415988229215145],[120,155,71,-0.5431684888899326],[120,155,72,-0.5453684069216251],[120,155,73,-0.5474954880774021],[120,155,74,-0.5486784763634205],[120,155,75,-0.5487280450761318],[120,155,76,-0.5475300811231136],[120,155,77,-0.5451569445431232],[120,155,78,-0.5418212004005909],[120,155,79,-0.5380158722400665],[120,156,64,-0.5461561381816864],[120,156,65,-0.5455079823732376],[120,156,66,-0.5438496991991997],[120,156,67,-0.5418883860111237],[120,156,68,-0.54057876765728],[120,156,69,-0.540533009916544],[120,156,70,-0.5415988229215145],[120,156,71,-0.5431684888899326],[120,156,72,-0.5453684069216251],[120,156,73,-0.5474954880774021],[120,156,74,-0.5486784763634205],[120,156,75,-0.5487280450761318],[120,156,76,-0.5475300811231136],[120,156,77,-0.5451569445431232],[120,156,78,-0.5418212004005909],[120,156,79,-0.5380158722400665],[120,157,64,-0.5461561381816864],[120,157,65,-0.5455079823732376],[120,157,66,-0.5438496991991997],[120,157,67,-0.5418883860111237],[120,157,68,-0.54057876765728],[120,157,69,-0.540533009916544],[120,157,70,-0.5415988229215145],[120,157,71,-0.5431684888899326],[120,157,72,-0.5453684069216251],[120,157,73,-0.5474954880774021],[120,157,74,-0.5486784763634205],[120,157,75,-0.5487280450761318],[120,157,76,-0.5475300811231136],[120,157,77,-0.5451569445431232],[120,157,78,-0.5418212004005909],[120,157,79,-0.5380158722400665],[120,158,64,-0.5461561381816864],[120,158,65,-0.5455079823732376],[120,158,66,-0.5438496991991997],[120,158,67,-0.5418883860111237],[120,158,68,-0.54057876765728],[120,158,69,-0.540533009916544],[120,158,70,-0.5415988229215145],[120,158,71,-0.5431684888899326],[120,158,72,-0.5453684069216251],[120,158,73,-0.5474954880774021],[120,158,74,-0.5486784763634205],[120,158,75,-0.5487280450761318],[120,158,76,-0.5475300811231136],[120,158,77,-0.5451569445431232],[120,158,78,-0.5418212004005909],[120,158,79,-0.5380158722400665],[120,159,64,-0.5461561381816864],[120,159,65,-0.5455079823732376],[120,159,66,-0.5438496991991997],[120,159,67,-0.5418883860111237],[120,159,68,-0.54057876765728],[120,159,69,-0.540533009916544],[120,159,70,-0.5415988229215145],[120,159,71,-0.5431684888899326],[120,159,72,-0.5453684069216251],[120,159,73,-0.5474954880774021],[120,159,74,-0.5486784763634205],[120,159,75,-0.5487280450761318],[120,159,76,-0.5475300811231136],[120,159,77,-0.5451569445431232],[120,159,78,-0.5418212004005909],[120,159,79,-0.5380158722400665],[120,160,64,-0.5461561381816864],[120,160,65,-0.5455079823732376],[120,160,66,-0.5438496991991997],[120,160,67,-0.5418883860111237],[120,160,68,-0.54057876765728],[120,160,69,-0.540533009916544],[120,160,70,-0.5415988229215145],[120,160,71,-0.5431684888899326],[120,160,72,-0.5453684069216251],[120,160,73,-0.5474954880774021],[120,160,74,-0.5486784763634205],[120,160,75,-0.5487280450761318],[120,160,76,-0.5475300811231136],[120,160,77,-0.5451569445431232],[120,160,78,-0.5418212004005909],[120,160,79,-0.5380158722400665],[120,161,64,-0.5461561381816864],[120,161,65,-0.5455079823732376],[120,161,66,-0.5438496991991997],[120,161,67,-0.5418883860111237],[120,161,68,-0.54057876765728],[120,161,69,-0.540533009916544],[120,161,70,-0.5415988229215145],[120,161,71,-0.5431684888899326],[120,161,72,-0.5453684069216251],[120,161,73,-0.5474954880774021],[120,161,74,-0.5486784763634205],[120,161,75,-0.5487280450761318],[120,161,76,-0.5475300811231136],[120,161,77,-0.5451569445431232],[120,161,78,-0.5418212004005909],[120,161,79,-0.5380158722400665],[120,162,64,-0.5461561381816864],[120,162,65,-0.5455079823732376],[120,162,66,-0.5438496991991997],[120,162,67,-0.5418883860111237],[120,162,68,-0.54057876765728],[120,162,69,-0.540533009916544],[120,162,70,-0.5415988229215145],[120,162,71,-0.5431684888899326],[120,162,72,-0.5453684069216251],[120,162,73,-0.5474954880774021],[120,162,74,-0.5486784763634205],[120,162,75,-0.5487280450761318],[120,162,76,-0.5475300811231136],[120,162,77,-0.5451569445431232],[120,162,78,-0.5418212004005909],[120,162,79,-0.5380158722400665],[120,163,64,-0.5461561381816864],[120,163,65,-0.5455079823732376],[120,163,66,-0.5438496991991997],[120,163,67,-0.5418883860111237],[120,163,68,-0.54057876765728],[120,163,69,-0.540533009916544],[120,163,70,-0.5415988229215145],[120,163,71,-0.5431684888899326],[120,163,72,-0.5453684069216251],[120,163,73,-0.5474954880774021],[120,163,74,-0.5486784763634205],[120,163,75,-0.5487280450761318],[120,163,76,-0.5475300811231136],[120,163,77,-0.5451569445431232],[120,163,78,-0.5418212004005909],[120,163,79,-0.5380158722400665],[120,164,64,-0.5461561381816864],[120,164,65,-0.5455079823732376],[120,164,66,-0.5438496991991997],[120,164,67,-0.5418883860111237],[120,164,68,-0.54057876765728],[120,164,69,-0.540533009916544],[120,164,70,-0.5415988229215145],[120,164,71,-0.5431684888899326],[120,164,72,-0.5453684069216251],[120,164,73,-0.5474954880774021],[120,164,74,-0.5486784763634205],[120,164,75,-0.5487280450761318],[120,164,76,-0.5475300811231136],[120,164,77,-0.5451569445431232],[120,164,78,-0.5418212004005909],[120,164,79,-0.5380158722400665],[120,165,64,-0.5461561381816864],[120,165,65,-0.5455079823732376],[120,165,66,-0.5438496991991997],[120,165,67,-0.5418883860111237],[120,165,68,-0.54057876765728],[120,165,69,-0.540533009916544],[120,165,70,-0.5415988229215145],[120,165,71,-0.5431684888899326],[120,165,72,-0.5453684069216251],[120,165,73,-0.5474954880774021],[120,165,74,-0.5486784763634205],[120,165,75,-0.5487280450761318],[120,165,76,-0.5475300811231136],[120,165,77,-0.5451569445431232],[120,165,78,-0.5418212004005909],[120,165,79,-0.5380158722400665],[120,166,64,-0.5461561381816864],[120,166,65,-0.5455079823732376],[120,166,66,-0.5438496991991997],[120,166,67,-0.5418883860111237],[120,166,68,-0.54057876765728],[120,166,69,-0.540533009916544],[120,166,70,-0.5415988229215145],[120,166,71,-0.5431684888899326],[120,166,72,-0.5453684069216251],[120,166,73,-0.5474954880774021],[120,166,74,-0.5486784763634205],[120,166,75,-0.5487280450761318],[120,166,76,-0.5475300811231136],[120,166,77,-0.5451569445431232],[120,166,78,-0.5418212004005909],[120,166,79,-0.5380158722400665],[120,167,64,-0.5461561381816864],[120,167,65,-0.5455079823732376],[120,167,66,-0.5438496991991997],[120,167,67,-0.5418883860111237],[120,167,68,-0.54057876765728],[120,167,69,-0.540533009916544],[120,167,70,-0.5415988229215145],[120,167,71,-0.5431684888899326],[120,167,72,-0.5453684069216251],[120,167,73,-0.5474954880774021],[120,167,74,-0.5486784763634205],[120,167,75,-0.5487280450761318],[120,167,76,-0.5475300811231136],[120,167,77,-0.5451569445431232],[120,167,78,-0.5418212004005909],[120,167,79,-0.5380158722400665],[120,168,64,-0.5461561381816864],[120,168,65,-0.5455079823732376],[120,168,66,-0.5438496991991997],[120,168,67,-0.5418883860111237],[120,168,68,-0.54057876765728],[120,168,69,-0.540533009916544],[120,168,70,-0.5415988229215145],[120,168,71,-0.5431684888899326],[120,168,72,-0.5453684069216251],[120,168,73,-0.5474954880774021],[120,168,74,-0.5486784763634205],[120,168,75,-0.5487280450761318],[120,168,76,-0.5475300811231136],[120,168,77,-0.5451569445431232],[120,168,78,-0.5418212004005909],[120,168,79,-0.5380158722400665],[120,169,64,-0.5461561381816864],[120,169,65,-0.5455079823732376],[120,169,66,-0.5438496991991997],[120,169,67,-0.5418883860111237],[120,169,68,-0.54057876765728],[120,169,69,-0.540533009916544],[120,169,70,-0.5415988229215145],[120,169,71,-0.5431684888899326],[120,169,72,-0.5453684069216251],[120,169,73,-0.5474954880774021],[120,169,74,-0.5486784763634205],[120,169,75,-0.5487280450761318],[120,169,76,-0.5475300811231136],[120,169,77,-0.5451569445431232],[120,169,78,-0.5418212004005909],[120,169,79,-0.5380158722400665],[120,170,64,-0.5461561381816864],[120,170,65,-0.5455079823732376],[120,170,66,-0.5438496991991997],[120,170,67,-0.5418883860111237],[120,170,68,-0.54057876765728],[120,170,69,-0.540533009916544],[120,170,70,-0.5415988229215145],[120,170,71,-0.5431684888899326],[120,170,72,-0.5453684069216251],[120,170,73,-0.5474954880774021],[120,170,74,-0.5486784763634205],[120,170,75,-0.5487280450761318],[120,170,76,-0.5475300811231136],[120,170,77,-0.5451569445431232],[120,170,78,-0.5418212004005909],[120,170,79,-0.5380158722400665],[120,171,64,-0.5461561381816864],[120,171,65,-0.5455079823732376],[120,171,66,-0.5438496991991997],[120,171,67,-0.5418883860111237],[120,171,68,-0.54057876765728],[120,171,69,-0.540533009916544],[120,171,70,-0.5415988229215145],[120,171,71,-0.5431684888899326],[120,171,72,-0.5453684069216251],[120,171,73,-0.5474954880774021],[120,171,74,-0.5486784763634205],[120,171,75,-0.5487280450761318],[120,171,76,-0.5475300811231136],[120,171,77,-0.5451569445431232],[120,171,78,-0.5418212004005909],[120,171,79,-0.5380158722400665],[120,172,64,-0.5461561381816864],[120,172,65,-0.5455079823732376],[120,172,66,-0.5438496991991997],[120,172,67,-0.5418883860111237],[120,172,68,-0.54057876765728],[120,172,69,-0.540533009916544],[120,172,70,-0.5415988229215145],[120,172,71,-0.5431684888899326],[120,172,72,-0.5453684069216251],[120,172,73,-0.5474954880774021],[120,172,74,-0.5486784763634205],[120,172,75,-0.5487280450761318],[120,172,76,-0.5475300811231136],[120,172,77,-0.5451569445431232],[120,172,78,-0.5418212004005909],[120,172,79,-0.5380158722400665],[120,173,64,-0.5461561381816864],[120,173,65,-0.5455079823732376],[120,173,66,-0.5438496991991997],[120,173,67,-0.5418883860111237],[120,173,68,-0.54057876765728],[120,173,69,-0.540533009916544],[120,173,70,-0.5415988229215145],[120,173,71,-0.5431684888899326],[120,173,72,-0.5453684069216251],[120,173,73,-0.5474954880774021],[120,173,74,-0.5486784763634205],[120,173,75,-0.5487280450761318],[120,173,76,-0.5475300811231136],[120,173,77,-0.5451569445431232],[120,173,78,-0.5418212004005909],[120,173,79,-0.5380158722400665],[120,174,64,-0.5461561381816864],[120,174,65,-0.5455079823732376],[120,174,66,-0.5438496991991997],[120,174,67,-0.5418883860111237],[120,174,68,-0.54057876765728],[120,174,69,-0.540533009916544],[120,174,70,-0.5415988229215145],[120,174,71,-0.5431684888899326],[120,174,72,-0.5453684069216251],[120,174,73,-0.5474954880774021],[120,174,74,-0.5486784763634205],[120,174,75,-0.5487280450761318],[120,174,76,-0.5475300811231136],[120,174,77,-0.5451569445431232],[120,174,78,-0.5418212004005909],[120,174,79,-0.5380158722400665],[120,175,64,-0.5461561381816864],[120,175,65,-0.5455079823732376],[120,175,66,-0.5438496991991997],[120,175,67,-0.5418883860111237],[120,175,68,-0.54057876765728],[120,175,69,-0.540533009916544],[120,175,70,-0.5415988229215145],[120,175,71,-0.5431684888899326],[120,175,72,-0.5453684069216251],[120,175,73,-0.5474954880774021],[120,175,74,-0.5486784763634205],[120,175,75,-0.5487280450761318],[120,175,76,-0.5475300811231136],[120,175,77,-0.5451569445431232],[120,175,78,-0.5418212004005909],[120,175,79,-0.5380158722400665],[120,176,64,-0.5461561381816864],[120,176,65,-0.5455079823732376],[120,176,66,-0.5438496991991997],[120,176,67,-0.5418883860111237],[120,176,68,-0.54057876765728],[120,176,69,-0.540533009916544],[120,176,70,-0.5415988229215145],[120,176,71,-0.5431684888899326],[120,176,72,-0.5453684069216251],[120,176,73,-0.5474954880774021],[120,176,74,-0.5486784763634205],[120,176,75,-0.5487280450761318],[120,176,76,-0.5475300811231136],[120,176,77,-0.5451569445431232],[120,176,78,-0.5418212004005909],[120,176,79,-0.5380158722400665],[120,177,64,-0.5461561381816864],[120,177,65,-0.5455079823732376],[120,177,66,-0.5438496991991997],[120,177,67,-0.5418883860111237],[120,177,68,-0.54057876765728],[120,177,69,-0.540533009916544],[120,177,70,-0.5415988229215145],[120,177,71,-0.5431684888899326],[120,177,72,-0.5453684069216251],[120,177,73,-0.5474954880774021],[120,177,74,-0.5486784763634205],[120,177,75,-0.5487280450761318],[120,177,76,-0.5475300811231136],[120,177,77,-0.5451569445431232],[120,177,78,-0.5418212004005909],[120,177,79,-0.5380158722400665],[120,178,64,-0.5461561381816864],[120,178,65,-0.5455079823732376],[120,178,66,-0.5438496991991997],[120,178,67,-0.5418883860111237],[120,178,68,-0.54057876765728],[120,178,69,-0.540533009916544],[120,178,70,-0.5415988229215145],[120,178,71,-0.5431684888899326],[120,178,72,-0.5453684069216251],[120,178,73,-0.5474954880774021],[120,178,74,-0.5486784763634205],[120,178,75,-0.5487280450761318],[120,178,76,-0.5475300811231136],[120,178,77,-0.5451569445431232],[120,178,78,-0.5418212004005909],[120,178,79,-0.5380158722400665],[120,179,64,-0.5461561381816864],[120,179,65,-0.5455079823732376],[120,179,66,-0.5438496991991997],[120,179,67,-0.5418883860111237],[120,179,68,-0.54057876765728],[120,179,69,-0.540533009916544],[120,179,70,-0.5415988229215145],[120,179,71,-0.5431684888899326],[120,179,72,-0.5453684069216251],[120,179,73,-0.5474954880774021],[120,179,74,-0.5486784763634205],[120,179,75,-0.5487280450761318],[120,179,76,-0.5475300811231136],[120,179,77,-0.5451569445431232],[120,179,78,-0.5418212004005909],[120,179,79,-0.5380158722400665],[120,180,64,-0.5461561381816864],[120,180,65,-0.5455079823732376],[120,180,66,-0.5438496991991997],[120,180,67,-0.5418883860111237],[120,180,68,-0.54057876765728],[120,180,69,-0.540533009916544],[120,180,70,-0.5415988229215145],[120,180,71,-0.5431684888899326],[120,180,72,-0.5453684069216251],[120,180,73,-0.5474954880774021],[120,180,74,-0.5486784763634205],[120,180,75,-0.5487280450761318],[120,180,76,-0.5475300811231136],[120,180,77,-0.5451569445431232],[120,180,78,-0.5418212004005909],[120,180,79,-0.5380158722400665],[120,181,64,-0.5461561381816864],[120,181,65,-0.5455079823732376],[120,181,66,-0.5438496991991997],[120,181,67,-0.5418883860111237],[120,181,68,-0.54057876765728],[120,181,69,-0.540533009916544],[120,181,70,-0.5415988229215145],[120,181,71,-0.5431684888899326],[120,181,72,-0.5453684069216251],[120,181,73,-0.5474954880774021],[120,181,74,-0.5486784763634205],[120,181,75,-0.5487280450761318],[120,181,76,-0.5475300811231136],[120,181,77,-0.5451569445431232],[120,181,78,-0.5418212004005909],[120,181,79,-0.5380158722400665],[120,182,64,-0.5461561381816864],[120,182,65,-0.5455079823732376],[120,182,66,-0.5438496991991997],[120,182,67,-0.5418883860111237],[120,182,68,-0.54057876765728],[120,182,69,-0.540533009916544],[120,182,70,-0.5415988229215145],[120,182,71,-0.5431684888899326],[120,182,72,-0.5453684069216251],[120,182,73,-0.5474954880774021],[120,182,74,-0.5486784763634205],[120,182,75,-0.5487280450761318],[120,182,76,-0.5475300811231136],[120,182,77,-0.5451569445431232],[120,182,78,-0.5418212004005909],[120,182,79,-0.5380158722400665],[120,183,64,-0.5461561381816864],[120,183,65,-0.5455079823732376],[120,183,66,-0.5438496991991997],[120,183,67,-0.5418883860111237],[120,183,68,-0.54057876765728],[120,183,69,-0.540533009916544],[120,183,70,-0.5415988229215145],[120,183,71,-0.5431684888899326],[120,183,72,-0.5453684069216251],[120,183,73,-0.5474954880774021],[120,183,74,-0.5486784763634205],[120,183,75,-0.5487280450761318],[120,183,76,-0.5475300811231136],[120,183,77,-0.5451569445431232],[120,183,78,-0.5418212004005909],[120,183,79,-0.5380158722400665],[120,184,64,-0.5461561381816864],[120,184,65,-0.5455079823732376],[120,184,66,-0.5438496991991997],[120,184,67,-0.5418883860111237],[120,184,68,-0.54057876765728],[120,184,69,-0.540533009916544],[120,184,70,-0.5415988229215145],[120,184,71,-0.5431684888899326],[120,184,72,-0.5453684069216251],[120,184,73,-0.5474954880774021],[120,184,74,-0.5486784763634205],[120,184,75,-0.5487280450761318],[120,184,76,-0.5475300811231136],[120,184,77,-0.5451569445431232],[120,184,78,-0.5418212004005909],[120,184,79,-0.5380158722400665],[120,185,64,-0.5461561381816864],[120,185,65,-0.5455079823732376],[120,185,66,-0.5438496991991997],[120,185,67,-0.5418883860111237],[120,185,68,-0.54057876765728],[120,185,69,-0.540533009916544],[120,185,70,-0.5415988229215145],[120,185,71,-0.5431684888899326],[120,185,72,-0.5453684069216251],[120,185,73,-0.5474954880774021],[120,185,74,-0.5486784763634205],[120,185,75,-0.5487280450761318],[120,185,76,-0.5475300811231136],[120,185,77,-0.5451569445431232],[120,185,78,-0.5418212004005909],[120,185,79,-0.5380158722400665],[120,186,64,-0.5461561381816864],[120,186,65,-0.5455079823732376],[120,186,66,-0.5438496991991997],[120,186,67,-0.5418883860111237],[120,186,68,-0.54057876765728],[120,186,69,-0.540533009916544],[120,186,70,-0.5415988229215145],[120,186,71,-0.5431684888899326],[120,186,72,-0.5453684069216251],[120,186,73,-0.5474954880774021],[120,186,74,-0.5486784763634205],[120,186,75,-0.5487280450761318],[120,186,76,-0.5475300811231136],[120,186,77,-0.5451569445431232],[120,186,78,-0.5418212004005909],[120,186,79,-0.5380158722400665],[120,187,64,-0.5461561381816864],[120,187,65,-0.5455079823732376],[120,187,66,-0.5438496991991997],[120,187,67,-0.5418883860111237],[120,187,68,-0.54057876765728],[120,187,69,-0.540533009916544],[120,187,70,-0.5415988229215145],[120,187,71,-0.5431684888899326],[120,187,72,-0.5453684069216251],[120,187,73,-0.5474954880774021],[120,187,74,-0.5486784763634205],[120,187,75,-0.5487280450761318],[120,187,76,-0.5475300811231136],[120,187,77,-0.5451569445431232],[120,187,78,-0.5418212004005909],[120,187,79,-0.5380158722400665],[120,188,64,-0.5461561381816864],[120,188,65,-0.5455079823732376],[120,188,66,-0.5438496991991997],[120,188,67,-0.5418883860111237],[120,188,68,-0.54057876765728],[120,188,69,-0.540533009916544],[120,188,70,-0.5415988229215145],[120,188,71,-0.5431684888899326],[120,188,72,-0.5453684069216251],[120,188,73,-0.5474954880774021],[120,188,74,-0.5486784763634205],[120,188,75,-0.5487280450761318],[120,188,76,-0.5475300811231136],[120,188,77,-0.5451569445431232],[120,188,78,-0.5418212004005909],[120,188,79,-0.5380158722400665],[120,189,64,-0.5461561381816864],[120,189,65,-0.5455079823732376],[120,189,66,-0.5438496991991997],[120,189,67,-0.5418883860111237],[120,189,68,-0.54057876765728],[120,189,69,-0.540533009916544],[120,189,70,-0.5415988229215145],[120,189,71,-0.5431684888899326],[120,189,72,-0.5453684069216251],[120,189,73,-0.5474954880774021],[120,189,74,-0.5486784763634205],[120,189,75,-0.5487280450761318],[120,189,76,-0.5475300811231136],[120,189,77,-0.5451569445431232],[120,189,78,-0.5418212004005909],[120,189,79,-0.5380158722400665],[120,190,64,-0.5461561381816864],[120,190,65,-0.5455079823732376],[120,190,66,-0.5438496991991997],[120,190,67,-0.5418883860111237],[120,190,68,-0.54057876765728],[120,190,69,-0.540533009916544],[120,190,70,-0.5415988229215145],[120,190,71,-0.5431684888899326],[120,190,72,-0.5453684069216251],[120,190,73,-0.5474954880774021],[120,190,74,-0.5486784763634205],[120,190,75,-0.5487280450761318],[120,190,76,-0.5475300811231136],[120,190,77,-0.5451569445431232],[120,190,78,-0.5418212004005909],[120,190,79,-0.5380158722400665],[120,191,64,-0.5461561381816864],[120,191,65,-0.5455079823732376],[120,191,66,-0.5438496991991997],[120,191,67,-0.5418883860111237],[120,191,68,-0.54057876765728],[120,191,69,-0.540533009916544],[120,191,70,-0.5415988229215145],[120,191,71,-0.5431684888899326],[120,191,72,-0.5453684069216251],[120,191,73,-0.5474954880774021],[120,191,74,-0.5486784763634205],[120,191,75,-0.5487280450761318],[120,191,76,-0.5475300811231136],[120,191,77,-0.5451569445431232],[120,191,78,-0.5418212004005909],[120,191,79,-0.5380158722400665],[120,192,64,-0.5461561381816864],[120,192,65,-0.5455079823732376],[120,192,66,-0.5438496991991997],[120,192,67,-0.5418883860111237],[120,192,68,-0.54057876765728],[120,192,69,-0.540533009916544],[120,192,70,-0.5415988229215145],[120,192,71,-0.5431684888899326],[120,192,72,-0.5453684069216251],[120,192,73,-0.5474954880774021],[120,192,74,-0.5486784763634205],[120,192,75,-0.5487280450761318],[120,192,76,-0.5475300811231136],[120,192,77,-0.5451569445431232],[120,192,78,-0.5418212004005909],[120,192,79,-0.5380158722400665],[120,193,64,-0.5461561381816864],[120,193,65,-0.5455079823732376],[120,193,66,-0.5438496991991997],[120,193,67,-0.5418883860111237],[120,193,68,-0.54057876765728],[120,193,69,-0.540533009916544],[120,193,70,-0.5415988229215145],[120,193,71,-0.5431684888899326],[120,193,72,-0.5453684069216251],[120,193,73,-0.5474954880774021],[120,193,74,-0.5486784763634205],[120,193,75,-0.5487280450761318],[120,193,76,-0.5475300811231136],[120,193,77,-0.5451569445431232],[120,193,78,-0.5418212004005909],[120,193,79,-0.5380158722400665],[120,194,64,-0.5461561381816864],[120,194,65,-0.5455079823732376],[120,194,66,-0.5438496991991997],[120,194,67,-0.5418883860111237],[120,194,68,-0.54057876765728],[120,194,69,-0.540533009916544],[120,194,70,-0.5415988229215145],[120,194,71,-0.5431684888899326],[120,194,72,-0.5453684069216251],[120,194,73,-0.5474954880774021],[120,194,74,-0.5486784763634205],[120,194,75,-0.5487280450761318],[120,194,76,-0.5475300811231136],[120,194,77,-0.5451569445431232],[120,194,78,-0.5418212004005909],[120,194,79,-0.5380158722400665],[120,195,64,-0.5461561381816864],[120,195,65,-0.5455079823732376],[120,195,66,-0.5438496991991997],[120,195,67,-0.5418883860111237],[120,195,68,-0.54057876765728],[120,195,69,-0.540533009916544],[120,195,70,-0.5415988229215145],[120,195,71,-0.5431684888899326],[120,195,72,-0.5453684069216251],[120,195,73,-0.5474954880774021],[120,195,74,-0.5486784763634205],[120,195,75,-0.5487280450761318],[120,195,76,-0.5475300811231136],[120,195,77,-0.5451569445431232],[120,195,78,-0.5418212004005909],[120,195,79,-0.5380158722400665],[120,196,64,-0.5461561381816864],[120,196,65,-0.5455079823732376],[120,196,66,-0.5438496991991997],[120,196,67,-0.5418883860111237],[120,196,68,-0.54057876765728],[120,196,69,-0.540533009916544],[120,196,70,-0.5415988229215145],[120,196,71,-0.5431684888899326],[120,196,72,-0.5453684069216251],[120,196,73,-0.5474954880774021],[120,196,74,-0.5486784763634205],[120,196,75,-0.5487280450761318],[120,196,76,-0.5475300811231136],[120,196,77,-0.5451569445431232],[120,196,78,-0.5418212004005909],[120,196,79,-0.5380158722400665],[120,197,64,-0.5461561381816864],[120,197,65,-0.5455079823732376],[120,197,66,-0.5438496991991997],[120,197,67,-0.5418883860111237],[120,197,68,-0.54057876765728],[120,197,69,-0.540533009916544],[120,197,70,-0.5415988229215145],[120,197,71,-0.5431684888899326],[120,197,72,-0.5453684069216251],[120,197,73,-0.5474954880774021],[120,197,74,-0.5486784763634205],[120,197,75,-0.5487280450761318],[120,197,76,-0.5475300811231136],[120,197,77,-0.5451569445431232],[120,197,78,-0.5418212004005909],[120,197,79,-0.5380158722400665],[120,198,64,-0.5461561381816864],[120,198,65,-0.5455079823732376],[120,198,66,-0.5438496991991997],[120,198,67,-0.5418883860111237],[120,198,68,-0.54057876765728],[120,198,69,-0.540533009916544],[120,198,70,-0.5415988229215145],[120,198,71,-0.5431684888899326],[120,198,72,-0.5453684069216251],[120,198,73,-0.5474954880774021],[120,198,74,-0.5486784763634205],[120,198,75,-0.5487280450761318],[120,198,76,-0.5475300811231136],[120,198,77,-0.5451569445431232],[120,198,78,-0.5418212004005909],[120,198,79,-0.5380158722400665],[120,199,64,-0.5461561381816864],[120,199,65,-0.5455079823732376],[120,199,66,-0.5438496991991997],[120,199,67,-0.5418883860111237],[120,199,68,-0.54057876765728],[120,199,69,-0.540533009916544],[120,199,70,-0.5415988229215145],[120,199,71,-0.5431684888899326],[120,199,72,-0.5453684069216251],[120,199,73,-0.5474954880774021],[120,199,74,-0.5486784763634205],[120,199,75,-0.5487280450761318],[120,199,76,-0.5475300811231136],[120,199,77,-0.5451569445431232],[120,199,78,-0.5418212004005909],[120,199,79,-0.5380158722400665],[120,200,64,-0.5461561381816864],[120,200,65,-0.5455079823732376],[120,200,66,-0.5438496991991997],[120,200,67,-0.5418883860111237],[120,200,68,-0.54057876765728],[120,200,69,-0.540533009916544],[120,200,70,-0.5415988229215145],[120,200,71,-0.5431684888899326],[120,200,72,-0.5453684069216251],[120,200,73,-0.5474954880774021],[120,200,74,-0.5486784763634205],[120,200,75,-0.5487280450761318],[120,200,76,-0.5475300811231136],[120,200,77,-0.5451569445431232],[120,200,78,-0.5418212004005909],[120,200,79,-0.5380158722400665],[120,201,64,-0.5461561381816864],[120,201,65,-0.5455079823732376],[120,201,66,-0.5438496991991997],[120,201,67,-0.5418883860111237],[120,201,68,-0.54057876765728],[120,201,69,-0.540533009916544],[120,201,70,-0.5415988229215145],[120,201,71,-0.5431684888899326],[120,201,72,-0.5453684069216251],[120,201,73,-0.5474954880774021],[120,201,74,-0.5486784763634205],[120,201,75,-0.5487280450761318],[120,201,76,-0.5475300811231136],[120,201,77,-0.5451569445431232],[120,201,78,-0.5418212004005909],[120,201,79,-0.5380158722400665],[120,202,64,-0.5461561381816864],[120,202,65,-0.5455079823732376],[120,202,66,-0.5438496991991997],[120,202,67,-0.5418883860111237],[120,202,68,-0.54057876765728],[120,202,69,-0.540533009916544],[120,202,70,-0.5415988229215145],[120,202,71,-0.5431684888899326],[120,202,72,-0.5453684069216251],[120,202,73,-0.5474954880774021],[120,202,74,-0.5486784763634205],[120,202,75,-0.5487280450761318],[120,202,76,-0.5475300811231136],[120,202,77,-0.5451569445431232],[120,202,78,-0.5418212004005909],[120,202,79,-0.5380158722400665],[120,203,64,-0.5461561381816864],[120,203,65,-0.5455079823732376],[120,203,66,-0.5438496991991997],[120,203,67,-0.5418883860111237],[120,203,68,-0.54057876765728],[120,203,69,-0.540533009916544],[120,203,70,-0.5415988229215145],[120,203,71,-0.5431684888899326],[120,203,72,-0.5453684069216251],[120,203,73,-0.5474954880774021],[120,203,74,-0.5486784763634205],[120,203,75,-0.5487280450761318],[120,203,76,-0.5475300811231136],[120,203,77,-0.5451569445431232],[120,203,78,-0.5418212004005909],[120,203,79,-0.5380158722400665],[120,204,64,-0.5461561381816864],[120,204,65,-0.5455079823732376],[120,204,66,-0.5438496991991997],[120,204,67,-0.5418883860111237],[120,204,68,-0.54057876765728],[120,204,69,-0.540533009916544],[120,204,70,-0.5415988229215145],[120,204,71,-0.5431684888899326],[120,204,72,-0.5453684069216251],[120,204,73,-0.5474954880774021],[120,204,74,-0.5486784763634205],[120,204,75,-0.5487280450761318],[120,204,76,-0.5475300811231136],[120,204,77,-0.5451569445431232],[120,204,78,-0.5418212004005909],[120,204,79,-0.5380158722400665],[120,205,64,-0.5461561381816864],[120,205,65,-0.5455079823732376],[120,205,66,-0.5438496991991997],[120,205,67,-0.5418883860111237],[120,205,68,-0.54057876765728],[120,205,69,-0.540533009916544],[120,205,70,-0.5415988229215145],[120,205,71,-0.5431684888899326],[120,205,72,-0.5453684069216251],[120,205,73,-0.5474954880774021],[120,205,74,-0.5486784763634205],[120,205,75,-0.5487280450761318],[120,205,76,-0.5475300811231136],[120,205,77,-0.5451569445431232],[120,205,78,-0.5418212004005909],[120,205,79,-0.5380158722400665],[120,206,64,-0.5461561381816864],[120,206,65,-0.5455079823732376],[120,206,66,-0.5438496991991997],[120,206,67,-0.5418883860111237],[120,206,68,-0.54057876765728],[120,206,69,-0.540533009916544],[120,206,70,-0.5415988229215145],[120,206,71,-0.5431684888899326],[120,206,72,-0.5453684069216251],[120,206,73,-0.5474954880774021],[120,206,74,-0.5486784763634205],[120,206,75,-0.5487280450761318],[120,206,76,-0.5475300811231136],[120,206,77,-0.5451569445431232],[120,206,78,-0.5418212004005909],[120,206,79,-0.5380158722400665],[120,207,64,-0.5461561381816864],[120,207,65,-0.5455079823732376],[120,207,66,-0.5438496991991997],[120,207,67,-0.5418883860111237],[120,207,68,-0.54057876765728],[120,207,69,-0.540533009916544],[120,207,70,-0.5415988229215145],[120,207,71,-0.5431684888899326],[120,207,72,-0.5453684069216251],[120,207,73,-0.5474954880774021],[120,207,74,-0.5486784763634205],[120,207,75,-0.5487280450761318],[120,207,76,-0.5475300811231136],[120,207,77,-0.5451569445431232],[120,207,78,-0.5418212004005909],[120,207,79,-0.5380158722400665],[120,208,64,-0.5461561381816864],[120,208,65,-0.5455079823732376],[120,208,66,-0.5438496991991997],[120,208,67,-0.5418883860111237],[120,208,68,-0.54057876765728],[120,208,69,-0.540533009916544],[120,208,70,-0.5415988229215145],[120,208,71,-0.5431684888899326],[120,208,72,-0.5453684069216251],[120,208,73,-0.5474954880774021],[120,208,74,-0.5486784763634205],[120,208,75,-0.5487280450761318],[120,208,76,-0.5475300811231136],[120,208,77,-0.5451569445431232],[120,208,78,-0.5418212004005909],[120,208,79,-0.5380158722400665],[120,209,64,-0.5461561381816864],[120,209,65,-0.5455079823732376],[120,209,66,-0.5438496991991997],[120,209,67,-0.5418883860111237],[120,209,68,-0.54057876765728],[120,209,69,-0.540533009916544],[120,209,70,-0.5415988229215145],[120,209,71,-0.5431684888899326],[120,209,72,-0.5453684069216251],[120,209,73,-0.5474954880774021],[120,209,74,-0.5486784763634205],[120,209,75,-0.5487280450761318],[120,209,76,-0.5475300811231136],[120,209,77,-0.5451569445431232],[120,209,78,-0.5418212004005909],[120,209,79,-0.5380158722400665],[120,210,64,-0.5461561381816864],[120,210,65,-0.5455079823732376],[120,210,66,-0.5438496991991997],[120,210,67,-0.5418883860111237],[120,210,68,-0.54057876765728],[120,210,69,-0.540533009916544],[120,210,70,-0.5415988229215145],[120,210,71,-0.5431684888899326],[120,210,72,-0.5453684069216251],[120,210,73,-0.5474954880774021],[120,210,74,-0.5486784763634205],[120,210,75,-0.5487280450761318],[120,210,76,-0.5475300811231136],[120,210,77,-0.5451569445431232],[120,210,78,-0.5418212004005909],[120,210,79,-0.5380158722400665],[120,211,64,-0.5461561381816864],[120,211,65,-0.5455079823732376],[120,211,66,-0.5438496991991997],[120,211,67,-0.5418883860111237],[120,211,68,-0.54057876765728],[120,211,69,-0.540533009916544],[120,211,70,-0.5415988229215145],[120,211,71,-0.5431684888899326],[120,211,72,-0.5453684069216251],[120,211,73,-0.5474954880774021],[120,211,74,-0.5486784763634205],[120,211,75,-0.5487280450761318],[120,211,76,-0.5475300811231136],[120,211,77,-0.5451569445431232],[120,211,78,-0.5418212004005909],[120,211,79,-0.5380158722400665],[120,212,64,-0.5461561381816864],[120,212,65,-0.5455079823732376],[120,212,66,-0.5438496991991997],[120,212,67,-0.5418883860111237],[120,212,68,-0.54057876765728],[120,212,69,-0.540533009916544],[120,212,70,-0.5415988229215145],[120,212,71,-0.5431684888899326],[120,212,72,-0.5453684069216251],[120,212,73,-0.5474954880774021],[120,212,74,-0.5486784763634205],[120,212,75,-0.5487280450761318],[120,212,76,-0.5475300811231136],[120,212,77,-0.5451569445431232],[120,212,78,-0.5418212004005909],[120,212,79,-0.5380158722400665],[120,213,64,-0.5461561381816864],[120,213,65,-0.5455079823732376],[120,213,66,-0.5438496991991997],[120,213,67,-0.5418883860111237],[120,213,68,-0.54057876765728],[120,213,69,-0.540533009916544],[120,213,70,-0.5415988229215145],[120,213,71,-0.5431684888899326],[120,213,72,-0.5453684069216251],[120,213,73,-0.5474954880774021],[120,213,74,-0.5486784763634205],[120,213,75,-0.5487280450761318],[120,213,76,-0.5475300811231136],[120,213,77,-0.5451569445431232],[120,213,78,-0.5418212004005909],[120,213,79,-0.5380158722400665],[120,214,64,-0.5461561381816864],[120,214,65,-0.5455079823732376],[120,214,66,-0.5438496991991997],[120,214,67,-0.5418883860111237],[120,214,68,-0.54057876765728],[120,214,69,-0.540533009916544],[120,214,70,-0.5415988229215145],[120,214,71,-0.5431684888899326],[120,214,72,-0.5453684069216251],[120,214,73,-0.5474954880774021],[120,214,74,-0.5486784763634205],[120,214,75,-0.5487280450761318],[120,214,76,-0.5475300811231136],[120,214,77,-0.5451569445431232],[120,214,78,-0.5418212004005909],[120,214,79,-0.5380158722400665],[120,215,64,-0.5461561381816864],[120,215,65,-0.5455079823732376],[120,215,66,-0.5438496991991997],[120,215,67,-0.5418883860111237],[120,215,68,-0.54057876765728],[120,215,69,-0.540533009916544],[120,215,70,-0.5415988229215145],[120,215,71,-0.5431684888899326],[120,215,72,-0.5453684069216251],[120,215,73,-0.5474954880774021],[120,215,74,-0.5486784763634205],[120,215,75,-0.5487280450761318],[120,215,76,-0.5475300811231136],[120,215,77,-0.5451569445431232],[120,215,78,-0.5418212004005909],[120,215,79,-0.5380158722400665],[120,216,64,-0.5461561381816864],[120,216,65,-0.5455079823732376],[120,216,66,-0.5438496991991997],[120,216,67,-0.5418883860111237],[120,216,68,-0.54057876765728],[120,216,69,-0.540533009916544],[120,216,70,-0.5415988229215145],[120,216,71,-0.5431684888899326],[120,216,72,-0.5453684069216251],[120,216,73,-0.5474954880774021],[120,216,74,-0.5486784763634205],[120,216,75,-0.5487280450761318],[120,216,76,-0.5475300811231136],[120,216,77,-0.5451569445431232],[120,216,78,-0.5418212004005909],[120,216,79,-0.5380158722400665],[120,217,64,-0.5461561381816864],[120,217,65,-0.5455079823732376],[120,217,66,-0.5438496991991997],[120,217,67,-0.5418883860111237],[120,217,68,-0.54057876765728],[120,217,69,-0.540533009916544],[120,217,70,-0.5415988229215145],[120,217,71,-0.5431684888899326],[120,217,72,-0.5453684069216251],[120,217,73,-0.5474954880774021],[120,217,74,-0.5486784763634205],[120,217,75,-0.5487280450761318],[120,217,76,-0.5475300811231136],[120,217,77,-0.5451569445431232],[120,217,78,-0.5418212004005909],[120,217,79,-0.5380158722400665],[120,218,64,-0.5461561381816864],[120,218,65,-0.5455079823732376],[120,218,66,-0.5438496991991997],[120,218,67,-0.5418883860111237],[120,218,68,-0.54057876765728],[120,218,69,-0.540533009916544],[120,218,70,-0.5415988229215145],[120,218,71,-0.5431684888899326],[120,218,72,-0.5453684069216251],[120,218,73,-0.5474954880774021],[120,218,74,-0.5486784763634205],[120,218,75,-0.5487280450761318],[120,218,76,-0.5475300811231136],[120,218,77,-0.5451569445431232],[120,218,78,-0.5418212004005909],[120,218,79,-0.5380158722400665],[120,219,64,-0.5461561381816864],[120,219,65,-0.5455079823732376],[120,219,66,-0.5438496991991997],[120,219,67,-0.5418883860111237],[120,219,68,-0.54057876765728],[120,219,69,-0.540533009916544],[120,219,70,-0.5415988229215145],[120,219,71,-0.5431684888899326],[120,219,72,-0.5453684069216251],[120,219,73,-0.5474954880774021],[120,219,74,-0.5486784763634205],[120,219,75,-0.5487280450761318],[120,219,76,-0.5475300811231136],[120,219,77,-0.5451569445431232],[120,219,78,-0.5418212004005909],[120,219,79,-0.5380158722400665],[120,220,64,-0.5461561381816864],[120,220,65,-0.5455079823732376],[120,220,66,-0.5438496991991997],[120,220,67,-0.5418883860111237],[120,220,68,-0.54057876765728],[120,220,69,-0.540533009916544],[120,220,70,-0.5415988229215145],[120,220,71,-0.5431684888899326],[120,220,72,-0.5453684069216251],[120,220,73,-0.5474954880774021],[120,220,74,-0.5486784763634205],[120,220,75,-0.5487280450761318],[120,220,76,-0.5475300811231136],[120,220,77,-0.5451569445431232],[120,220,78,-0.5418212004005909],[120,220,79,-0.5380158722400665],[120,221,64,-0.5461561381816864],[120,221,65,-0.5455079823732376],[120,221,66,-0.5438496991991997],[120,221,67,-0.5418883860111237],[120,221,68,-0.54057876765728],[120,221,69,-0.540533009916544],[120,221,70,-0.5415988229215145],[120,221,71,-0.5431684888899326],[120,221,72,-0.5453684069216251],[120,221,73,-0.5474954880774021],[120,221,74,-0.5486784763634205],[120,221,75,-0.5487280450761318],[120,221,76,-0.5475300811231136],[120,221,77,-0.5451569445431232],[120,221,78,-0.5418212004005909],[120,221,79,-0.5380158722400665],[120,222,64,-0.5461561381816864],[120,222,65,-0.5455079823732376],[120,222,66,-0.5438496991991997],[120,222,67,-0.5418883860111237],[120,222,68,-0.54057876765728],[120,222,69,-0.540533009916544],[120,222,70,-0.5415988229215145],[120,222,71,-0.5431684888899326],[120,222,72,-0.5453684069216251],[120,222,73,-0.5474954880774021],[120,222,74,-0.5486784763634205],[120,222,75,-0.5487280450761318],[120,222,76,-0.5475300811231136],[120,222,77,-0.5451569445431232],[120,222,78,-0.5418212004005909],[120,222,79,-0.5380158722400665],[120,223,64,-0.5461561381816864],[120,223,65,-0.5455079823732376],[120,223,66,-0.5438496991991997],[120,223,67,-0.5418883860111237],[120,223,68,-0.54057876765728],[120,223,69,-0.540533009916544],[120,223,70,-0.5415988229215145],[120,223,71,-0.5431684888899326],[120,223,72,-0.5453684069216251],[120,223,73,-0.5474954880774021],[120,223,74,-0.5486784763634205],[120,223,75,-0.5487280450761318],[120,223,76,-0.5475300811231136],[120,223,77,-0.5451569445431232],[120,223,78,-0.5418212004005909],[120,223,79,-0.5380158722400665],[120,224,64,-0.5461561381816864],[120,224,65,-0.5455079823732376],[120,224,66,-0.5438496991991997],[120,224,67,-0.5418883860111237],[120,224,68,-0.54057876765728],[120,224,69,-0.540533009916544],[120,224,70,-0.5415988229215145],[120,224,71,-0.5431684888899326],[120,224,72,-0.5453684069216251],[120,224,73,-0.5474954880774021],[120,224,74,-0.5486784763634205],[120,224,75,-0.5487280450761318],[120,224,76,-0.5475300811231136],[120,224,77,-0.5451569445431232],[120,224,78,-0.5418212004005909],[120,224,79,-0.5380158722400665],[120,225,64,-0.5461561381816864],[120,225,65,-0.5455079823732376],[120,225,66,-0.5438496991991997],[120,225,67,-0.5418883860111237],[120,225,68,-0.54057876765728],[120,225,69,-0.540533009916544],[120,225,70,-0.5415988229215145],[120,225,71,-0.5431684888899326],[120,225,72,-0.5453684069216251],[120,225,73,-0.5474954880774021],[120,225,74,-0.5486784763634205],[120,225,75,-0.5487280450761318],[120,225,76,-0.5475300811231136],[120,225,77,-0.5451569445431232],[120,225,78,-0.5418212004005909],[120,225,79,-0.5380158722400665],[120,226,64,-0.5461561381816864],[120,226,65,-0.5455079823732376],[120,226,66,-0.5438496991991997],[120,226,67,-0.5418883860111237],[120,226,68,-0.54057876765728],[120,226,69,-0.540533009916544],[120,226,70,-0.5415988229215145],[120,226,71,-0.5431684888899326],[120,226,72,-0.5453684069216251],[120,226,73,-0.5474954880774021],[120,226,74,-0.5486784763634205],[120,226,75,-0.5487280450761318],[120,226,76,-0.5475300811231136],[120,226,77,-0.5451569445431232],[120,226,78,-0.5418212004005909],[120,226,79,-0.5380158722400665],[120,227,64,-0.5461561381816864],[120,227,65,-0.5455079823732376],[120,227,66,-0.5438496991991997],[120,227,67,-0.5418883860111237],[120,227,68,-0.54057876765728],[120,227,69,-0.540533009916544],[120,227,70,-0.5415988229215145],[120,227,71,-0.5431684888899326],[120,227,72,-0.5453684069216251],[120,227,73,-0.5474954880774021],[120,227,74,-0.5486784763634205],[120,227,75,-0.5487280450761318],[120,227,76,-0.5475300811231136],[120,227,77,-0.5451569445431232],[120,227,78,-0.5418212004005909],[120,227,79,-0.5380158722400665],[120,228,64,-0.5461561381816864],[120,228,65,-0.5455079823732376],[120,228,66,-0.5438496991991997],[120,228,67,-0.5418883860111237],[120,228,68,-0.54057876765728],[120,228,69,-0.540533009916544],[120,228,70,-0.5415988229215145],[120,228,71,-0.5431684888899326],[120,228,72,-0.5453684069216251],[120,228,73,-0.5474954880774021],[120,228,74,-0.5486784763634205],[120,228,75,-0.5487280450761318],[120,228,76,-0.5475300811231136],[120,228,77,-0.5451569445431232],[120,228,78,-0.5418212004005909],[120,228,79,-0.5380158722400665],[120,229,64,-0.5461561381816864],[120,229,65,-0.5455079823732376],[120,229,66,-0.5438496991991997],[120,229,67,-0.5418883860111237],[120,229,68,-0.54057876765728],[120,229,69,-0.540533009916544],[120,229,70,-0.5415988229215145],[120,229,71,-0.5431684888899326],[120,229,72,-0.5453684069216251],[120,229,73,-0.5474954880774021],[120,229,74,-0.5486784763634205],[120,229,75,-0.5487280450761318],[120,229,76,-0.5475300811231136],[120,229,77,-0.5451569445431232],[120,229,78,-0.5418212004005909],[120,229,79,-0.5380158722400665],[120,230,64,-0.5461561381816864],[120,230,65,-0.5455079823732376],[120,230,66,-0.5438496991991997],[120,230,67,-0.5418883860111237],[120,230,68,-0.54057876765728],[120,230,69,-0.540533009916544],[120,230,70,-0.5415988229215145],[120,230,71,-0.5431684888899326],[120,230,72,-0.5453684069216251],[120,230,73,-0.5474954880774021],[120,230,74,-0.5486784763634205],[120,230,75,-0.5487280450761318],[120,230,76,-0.5475300811231136],[120,230,77,-0.5451569445431232],[120,230,78,-0.5418212004005909],[120,230,79,-0.5380158722400665],[120,231,64,-0.5461561381816864],[120,231,65,-0.5455079823732376],[120,231,66,-0.5438496991991997],[120,231,67,-0.5418883860111237],[120,231,68,-0.54057876765728],[120,231,69,-0.540533009916544],[120,231,70,-0.5415988229215145],[120,231,71,-0.5431684888899326],[120,231,72,-0.5453684069216251],[120,231,73,-0.5474954880774021],[120,231,74,-0.5486784763634205],[120,231,75,-0.5487280450761318],[120,231,76,-0.5475300811231136],[120,231,77,-0.5451569445431232],[120,231,78,-0.5418212004005909],[120,231,79,-0.5380158722400665],[120,232,64,-0.5461561381816864],[120,232,65,-0.5455079823732376],[120,232,66,-0.5438496991991997],[120,232,67,-0.5418883860111237],[120,232,68,-0.54057876765728],[120,232,69,-0.540533009916544],[120,232,70,-0.5415988229215145],[120,232,71,-0.5431684888899326],[120,232,72,-0.5453684069216251],[120,232,73,-0.5474954880774021],[120,232,74,-0.5486784763634205],[120,232,75,-0.5487280450761318],[120,232,76,-0.5475300811231136],[120,232,77,-0.5451569445431232],[120,232,78,-0.5418212004005909],[120,232,79,-0.5380158722400665],[120,233,64,-0.5461561381816864],[120,233,65,-0.5455079823732376],[120,233,66,-0.5438496991991997],[120,233,67,-0.5418883860111237],[120,233,68,-0.54057876765728],[120,233,69,-0.540533009916544],[120,233,70,-0.5415988229215145],[120,233,71,-0.5431684888899326],[120,233,72,-0.5453684069216251],[120,233,73,-0.5474954880774021],[120,233,74,-0.5486784763634205],[120,233,75,-0.5487280450761318],[120,233,76,-0.5475300811231136],[120,233,77,-0.5451569445431232],[120,233,78,-0.5418212004005909],[120,233,79,-0.5380158722400665],[120,234,64,-0.5461561381816864],[120,234,65,-0.5455079823732376],[120,234,66,-0.5438496991991997],[120,234,67,-0.5418883860111237],[120,234,68,-0.54057876765728],[120,234,69,-0.540533009916544],[120,234,70,-0.5415988229215145],[120,234,71,-0.5431684888899326],[120,234,72,-0.5453684069216251],[120,234,73,-0.5474954880774021],[120,234,74,-0.5486784763634205],[120,234,75,-0.5487280450761318],[120,234,76,-0.5475300811231136],[120,234,77,-0.5451569445431232],[120,234,78,-0.5418212004005909],[120,234,79,-0.5380158722400665],[120,235,64,-0.5461561381816864],[120,235,65,-0.5455079823732376],[120,235,66,-0.5438496991991997],[120,235,67,-0.5418883860111237],[120,235,68,-0.54057876765728],[120,235,69,-0.540533009916544],[120,235,70,-0.5415988229215145],[120,235,71,-0.5431684888899326],[120,235,72,-0.5453684069216251],[120,235,73,-0.5474954880774021],[120,235,74,-0.5486784763634205],[120,235,75,-0.5487280450761318],[120,235,76,-0.5475300811231136],[120,235,77,-0.5451569445431232],[120,235,78,-0.5418212004005909],[120,235,79,-0.5380158722400665],[120,236,64,-0.5461561381816864],[120,236,65,-0.5455079823732376],[120,236,66,-0.5438496991991997],[120,236,67,-0.5418883860111237],[120,236,68,-0.54057876765728],[120,236,69,-0.540533009916544],[120,236,70,-0.5415988229215145],[120,236,71,-0.5431684888899326],[120,236,72,-0.5453684069216251],[120,236,73,-0.5474954880774021],[120,236,74,-0.5486784763634205],[120,236,75,-0.5487280450761318],[120,236,76,-0.5475300811231136],[120,236,77,-0.5451569445431232],[120,236,78,-0.5418212004005909],[120,236,79,-0.5380158722400665],[120,237,64,-0.5461561381816864],[120,237,65,-0.5455079823732376],[120,237,66,-0.5438496991991997],[120,237,67,-0.5418883860111237],[120,237,68,-0.54057876765728],[120,237,69,-0.540533009916544],[120,237,70,-0.5415988229215145],[120,237,71,-0.5431684888899326],[120,237,72,-0.5453684069216251],[120,237,73,-0.5474954880774021],[120,237,74,-0.5486784763634205],[120,237,75,-0.5487280450761318],[120,237,76,-0.5475300811231136],[120,237,77,-0.5451569445431232],[120,237,78,-0.5418212004005909],[120,237,79,-0.5380158722400665],[120,238,64,-0.5461561381816864],[120,238,65,-0.5455079823732376],[120,238,66,-0.5438496991991997],[120,238,67,-0.5418883860111237],[120,238,68,-0.54057876765728],[120,238,69,-0.540533009916544],[120,238,70,-0.5415988229215145],[120,238,71,-0.5431684888899326],[120,238,72,-0.5453684069216251],[120,238,73,-0.5474954880774021],[120,238,74,-0.5486784763634205],[120,238,75,-0.5487280450761318],[120,238,76,-0.5475300811231136],[120,238,77,-0.5451569445431232],[120,238,78,-0.5418212004005909],[120,238,79,-0.5380158722400665],[120,239,64,-0.5461561381816864],[120,239,65,-0.5455079823732376],[120,239,66,-0.5438496991991997],[120,239,67,-0.5418883860111237],[120,239,68,-0.54057876765728],[120,239,69,-0.540533009916544],[120,239,70,-0.5415988229215145],[120,239,71,-0.5431684888899326],[120,239,72,-0.5453684069216251],[120,239,73,-0.5474954880774021],[120,239,74,-0.5486784763634205],[120,239,75,-0.5487280450761318],[120,239,76,-0.5475300811231136],[120,239,77,-0.5451569445431232],[120,239,78,-0.5418212004005909],[120,239,79,-0.5380158722400665],[120,240,64,-0.5461561381816864],[120,240,65,-0.5455079823732376],[120,240,66,-0.5438496991991997],[120,240,67,-0.5418883860111237],[120,240,68,-0.54057876765728],[120,240,69,-0.540533009916544],[120,240,70,-0.5415988229215145],[120,240,71,-0.5431684888899326],[120,240,72,-0.5453684069216251],[120,240,73,-0.5474954880774021],[120,240,74,-0.5486784763634205],[120,240,75,-0.5487280450761318],[120,240,76,-0.5475300811231136],[120,240,77,-0.5451569445431232],[120,240,78,-0.5418212004005909],[120,240,79,-0.5380158722400665],[120,241,64,-0.5461561381816864],[120,241,65,-0.5455079823732376],[120,241,66,-0.5438496991991997],[120,241,67,-0.5418883860111237],[120,241,68,-0.54057876765728],[120,241,69,-0.540533009916544],[120,241,70,-0.5415988229215145],[120,241,71,-0.5431684888899326],[120,241,72,-0.5453684069216251],[120,241,73,-0.5474954880774021],[120,241,74,-0.5486784763634205],[120,241,75,-0.5487280450761318],[120,241,76,-0.5475300811231136],[120,241,77,-0.5451569445431232],[120,241,78,-0.5418212004005909],[120,241,79,-0.5380158722400665],[120,242,64,-0.5461561381816864],[120,242,65,-0.5455079823732376],[120,242,66,-0.5438496991991997],[120,242,67,-0.5418883860111237],[120,242,68,-0.54057876765728],[120,242,69,-0.540533009916544],[120,242,70,-0.5415988229215145],[120,242,71,-0.5431684888899326],[120,242,72,-0.5453684069216251],[120,242,73,-0.5474954880774021],[120,242,74,-0.5486784763634205],[120,242,75,-0.5487280450761318],[120,242,76,-0.5475300811231136],[120,242,77,-0.5451569445431232],[120,242,78,-0.5418212004005909],[120,242,79,-0.5380158722400665],[120,243,64,-0.5461561381816864],[120,243,65,-0.5455079823732376],[120,243,66,-0.5438496991991997],[120,243,67,-0.5418883860111237],[120,243,68,-0.54057876765728],[120,243,69,-0.540533009916544],[120,243,70,-0.5415988229215145],[120,243,71,-0.5431684888899326],[120,243,72,-0.5453684069216251],[120,243,73,-0.5474954880774021],[120,243,74,-0.5486784763634205],[120,243,75,-0.5487280450761318],[120,243,76,-0.5475300811231136],[120,243,77,-0.5451569445431232],[120,243,78,-0.5418212004005909],[120,243,79,-0.5380158722400665],[120,244,64,-0.5461561381816864],[120,244,65,-0.5455079823732376],[120,244,66,-0.5438496991991997],[120,244,67,-0.5418883860111237],[120,244,68,-0.54057876765728],[120,244,69,-0.540533009916544],[120,244,70,-0.5415988229215145],[120,244,71,-0.5431684888899326],[120,244,72,-0.5453684069216251],[120,244,73,-0.5474954880774021],[120,244,74,-0.5486784763634205],[120,244,75,-0.5487280450761318],[120,244,76,-0.5475300811231136],[120,244,77,-0.5451569445431232],[120,244,78,-0.5418212004005909],[120,244,79,-0.5380158722400665],[120,245,64,-0.5461561381816864],[120,245,65,-0.5455079823732376],[120,245,66,-0.5438496991991997],[120,245,67,-0.5418883860111237],[120,245,68,-0.54057876765728],[120,245,69,-0.540533009916544],[120,245,70,-0.5415988229215145],[120,245,71,-0.5431684888899326],[120,245,72,-0.5453684069216251],[120,245,73,-0.5474954880774021],[120,245,74,-0.5486784763634205],[120,245,75,-0.5487280450761318],[120,245,76,-0.5475300811231136],[120,245,77,-0.5451569445431232],[120,245,78,-0.5418212004005909],[120,245,79,-0.5380158722400665],[120,246,64,-0.5461561381816864],[120,246,65,-0.5455079823732376],[120,246,66,-0.5438496991991997],[120,246,67,-0.5418883860111237],[120,246,68,-0.54057876765728],[120,246,69,-0.540533009916544],[120,246,70,-0.5415988229215145],[120,246,71,-0.5431684888899326],[120,246,72,-0.5453684069216251],[120,246,73,-0.5474954880774021],[120,246,74,-0.5486784763634205],[120,246,75,-0.5487280450761318],[120,246,76,-0.5475300811231136],[120,246,77,-0.5451569445431232],[120,246,78,-0.5418212004005909],[120,246,79,-0.5380158722400665],[120,247,64,-0.5461561381816864],[120,247,65,-0.5455079823732376],[120,247,66,-0.5438496991991997],[120,247,67,-0.5418883860111237],[120,247,68,-0.54057876765728],[120,247,69,-0.540533009916544],[120,247,70,-0.5415988229215145],[120,247,71,-0.5431684888899326],[120,247,72,-0.5453684069216251],[120,247,73,-0.5474954880774021],[120,247,74,-0.5486784763634205],[120,247,75,-0.5487280450761318],[120,247,76,-0.5475300811231136],[120,247,77,-0.5451569445431232],[120,247,78,-0.5418212004005909],[120,247,79,-0.5380158722400665],[120,248,64,-0.5461561381816864],[120,248,65,-0.5455079823732376],[120,248,66,-0.5438496991991997],[120,248,67,-0.5418883860111237],[120,248,68,-0.54057876765728],[120,248,69,-0.540533009916544],[120,248,70,-0.5415988229215145],[120,248,71,-0.5431684888899326],[120,248,72,-0.5453684069216251],[120,248,73,-0.5474954880774021],[120,248,74,-0.5486784763634205],[120,248,75,-0.5487280450761318],[120,248,76,-0.5475300811231136],[120,248,77,-0.5451569445431232],[120,248,78,-0.5418212004005909],[120,248,79,-0.5380158722400665],[120,249,64,-0.5461561381816864],[120,249,65,-0.5455079823732376],[120,249,66,-0.5438496991991997],[120,249,67,-0.5418883860111237],[120,249,68,-0.54057876765728],[120,249,69,-0.540533009916544],[120,249,70,-0.5415988229215145],[120,249,71,-0.5431684888899326],[120,249,72,-0.5453684069216251],[120,249,73,-0.5474954880774021],[120,249,74,-0.5486784763634205],[120,249,75,-0.5487280450761318],[120,249,76,-0.5475300811231136],[120,249,77,-0.5451569445431232],[120,249,78,-0.5418212004005909],[120,249,79,-0.5380158722400665],[120,250,64,-0.5461561381816864],[120,250,65,-0.5455079823732376],[120,250,66,-0.5438496991991997],[120,250,67,-0.5418883860111237],[120,250,68,-0.54057876765728],[120,250,69,-0.540533009916544],[120,250,70,-0.5415988229215145],[120,250,71,-0.5431684888899326],[120,250,72,-0.5453684069216251],[120,250,73,-0.5474954880774021],[120,250,74,-0.5486784763634205],[120,250,75,-0.5487280450761318],[120,250,76,-0.5475300811231136],[120,250,77,-0.5451569445431232],[120,250,78,-0.5418212004005909],[120,250,79,-0.5380158722400665],[120,251,64,-0.5461561381816864],[120,251,65,-0.5455079823732376],[120,251,66,-0.5438496991991997],[120,251,67,-0.5418883860111237],[120,251,68,-0.54057876765728],[120,251,69,-0.540533009916544],[120,251,70,-0.5415988229215145],[120,251,71,-0.5431684888899326],[120,251,72,-0.5453684069216251],[120,251,73,-0.5474954880774021],[120,251,74,-0.5486784763634205],[120,251,75,-0.5487280450761318],[120,251,76,-0.5475300811231136],[120,251,77,-0.5451569445431232],[120,251,78,-0.5418212004005909],[120,251,79,-0.5380158722400665],[120,252,64,-0.5461561381816864],[120,252,65,-0.5455079823732376],[120,252,66,-0.5438496991991997],[120,252,67,-0.5418883860111237],[120,252,68,-0.54057876765728],[120,252,69,-0.540533009916544],[120,252,70,-0.5415988229215145],[120,252,71,-0.5431684888899326],[120,252,72,-0.5453684069216251],[120,252,73,-0.5474954880774021],[120,252,74,-0.5486784763634205],[120,252,75,-0.5487280450761318],[120,252,76,-0.5475300811231136],[120,252,77,-0.5451569445431232],[120,252,78,-0.5418212004005909],[120,252,79,-0.5380158722400665],[120,253,64,-0.5461561381816864],[120,253,65,-0.5455079823732376],[120,253,66,-0.5438496991991997],[120,253,67,-0.5418883860111237],[120,253,68,-0.54057876765728],[120,253,69,-0.540533009916544],[120,253,70,-0.5415988229215145],[120,253,71,-0.5431684888899326],[120,253,72,-0.5453684069216251],[120,253,73,-0.5474954880774021],[120,253,74,-0.5486784763634205],[120,253,75,-0.5487280450761318],[120,253,76,-0.5475300811231136],[120,253,77,-0.5451569445431232],[120,253,78,-0.5418212004005909],[120,253,79,-0.5380158722400665],[120,254,64,-0.5461561381816864],[120,254,65,-0.5455079823732376],[120,254,66,-0.5438496991991997],[120,254,67,-0.5418883860111237],[120,254,68,-0.54057876765728],[120,254,69,-0.540533009916544],[120,254,70,-0.5415988229215145],[120,254,71,-0.5431684888899326],[120,254,72,-0.5453684069216251],[120,254,73,-0.5474954880774021],[120,254,74,-0.5486784763634205],[120,254,75,-0.5487280450761318],[120,254,76,-0.5475300811231136],[120,254,77,-0.5451569445431232],[120,254,78,-0.5418212004005909],[120,254,79,-0.5380158722400665],[120,255,64,-0.5461561381816864],[120,255,65,-0.5455079823732376],[120,255,66,-0.5438496991991997],[120,255,67,-0.5418883860111237],[120,255,68,-0.54057876765728],[120,255,69,-0.540533009916544],[120,255,70,-0.5415988229215145],[120,255,71,-0.5431684888899326],[120,255,72,-0.5453684069216251],[120,255,73,-0.5474954880774021],[120,255,74,-0.5486784763634205],[120,255,75,-0.5487280450761318],[120,255,76,-0.5475300811231136],[120,255,77,-0.5451569445431232],[120,255,78,-0.5418212004005909],[120,255,79,-0.5380158722400665],[120,256,64,-0.5461561381816864],[120,256,65,-0.5455079823732376],[120,256,66,-0.5438496991991997],[120,256,67,-0.5418883860111237],[120,256,68,-0.54057876765728],[120,256,69,-0.540533009916544],[120,256,70,-0.5415988229215145],[120,256,71,-0.5431684888899326],[120,256,72,-0.5453684069216251],[120,256,73,-0.5474954880774021],[120,256,74,-0.5486784763634205],[120,256,75,-0.5487280450761318],[120,256,76,-0.5475300811231136],[120,256,77,-0.5451569445431232],[120,256,78,-0.5418212004005909],[120,256,79,-0.5380158722400665],[120,257,64,-0.5461561381816864],[120,257,65,-0.5455079823732376],[120,257,66,-0.5438496991991997],[120,257,67,-0.5418883860111237],[120,257,68,-0.54057876765728],[120,257,69,-0.540533009916544],[120,257,70,-0.5415988229215145],[120,257,71,-0.5431684888899326],[120,257,72,-0.5453684069216251],[120,257,73,-0.5474954880774021],[120,257,74,-0.5486784763634205],[120,257,75,-0.5487280450761318],[120,257,76,-0.5475300811231136],[120,257,77,-0.5451569445431232],[120,257,78,-0.5418212004005909],[120,257,79,-0.5380158722400665],[120,258,64,-0.5461561381816864],[120,258,65,-0.5455079823732376],[120,258,66,-0.5438496991991997],[120,258,67,-0.5418883860111237],[120,258,68,-0.54057876765728],[120,258,69,-0.540533009916544],[120,258,70,-0.5415988229215145],[120,258,71,-0.5431684888899326],[120,258,72,-0.5453684069216251],[120,258,73,-0.5474954880774021],[120,258,74,-0.5486784763634205],[120,258,75,-0.5487280450761318],[120,258,76,-0.5475300811231136],[120,258,77,-0.5451569445431232],[120,258,78,-0.5418212004005909],[120,258,79,-0.5380158722400665],[120,259,64,-0.5461561381816864],[120,259,65,-0.5455079823732376],[120,259,66,-0.5438496991991997],[120,259,67,-0.5418883860111237],[120,259,68,-0.54057876765728],[120,259,69,-0.540533009916544],[120,259,70,-0.5415988229215145],[120,259,71,-0.5431684888899326],[120,259,72,-0.5453684069216251],[120,259,73,-0.5474954880774021],[120,259,74,-0.5486784763634205],[120,259,75,-0.5487280450761318],[120,259,76,-0.5475300811231136],[120,259,77,-0.5451569445431232],[120,259,78,-0.5418212004005909],[120,259,79,-0.5380158722400665],[120,260,64,-0.5461561381816864],[120,260,65,-0.5455079823732376],[120,260,66,-0.5438496991991997],[120,260,67,-0.5418883860111237],[120,260,68,-0.54057876765728],[120,260,69,-0.540533009916544],[120,260,70,-0.5415988229215145],[120,260,71,-0.5431684888899326],[120,260,72,-0.5453684069216251],[120,260,73,-0.5474954880774021],[120,260,74,-0.5486784763634205],[120,260,75,-0.5487280450761318],[120,260,76,-0.5475300811231136],[120,260,77,-0.5451569445431232],[120,260,78,-0.5418212004005909],[120,260,79,-0.5380158722400665],[120,261,64,-0.5461561381816864],[120,261,65,-0.5455079823732376],[120,261,66,-0.5438496991991997],[120,261,67,-0.5418883860111237],[120,261,68,-0.54057876765728],[120,261,69,-0.540533009916544],[120,261,70,-0.5415988229215145],[120,261,71,-0.5431684888899326],[120,261,72,-0.5453684069216251],[120,261,73,-0.5474954880774021],[120,261,74,-0.5486784763634205],[120,261,75,-0.5487280450761318],[120,261,76,-0.5475300811231136],[120,261,77,-0.5451569445431232],[120,261,78,-0.5418212004005909],[120,261,79,-0.5380158722400665],[120,262,64,-0.5461561381816864],[120,262,65,-0.5455079823732376],[120,262,66,-0.5438496991991997],[120,262,67,-0.5418883860111237],[120,262,68,-0.54057876765728],[120,262,69,-0.540533009916544],[120,262,70,-0.5415988229215145],[120,262,71,-0.5431684888899326],[120,262,72,-0.5453684069216251],[120,262,73,-0.5474954880774021],[120,262,74,-0.5486784763634205],[120,262,75,-0.5487280450761318],[120,262,76,-0.5475300811231136],[120,262,77,-0.5451569445431232],[120,262,78,-0.5418212004005909],[120,262,79,-0.5380158722400665],[120,263,64,-0.5461561381816864],[120,263,65,-0.5455079823732376],[120,263,66,-0.5438496991991997],[120,263,67,-0.5418883860111237],[120,263,68,-0.54057876765728],[120,263,69,-0.540533009916544],[120,263,70,-0.5415988229215145],[120,263,71,-0.5431684888899326],[120,263,72,-0.5453684069216251],[120,263,73,-0.5474954880774021],[120,263,74,-0.5486784763634205],[120,263,75,-0.5487280450761318],[120,263,76,-0.5475300811231136],[120,263,77,-0.5451569445431232],[120,263,78,-0.5418212004005909],[120,263,79,-0.5380158722400665],[120,264,64,-0.5461561381816864],[120,264,65,-0.5455079823732376],[120,264,66,-0.5438496991991997],[120,264,67,-0.5418883860111237],[120,264,68,-0.54057876765728],[120,264,69,-0.540533009916544],[120,264,70,-0.5415988229215145],[120,264,71,-0.5431684888899326],[120,264,72,-0.5453684069216251],[120,264,73,-0.5474954880774021],[120,264,74,-0.5486784763634205],[120,264,75,-0.5487280450761318],[120,264,76,-0.5475300811231136],[120,264,77,-0.5451569445431232],[120,264,78,-0.5418212004005909],[120,264,79,-0.5380158722400665],[120,265,64,-0.5461561381816864],[120,265,65,-0.5455079823732376],[120,265,66,-0.5438496991991997],[120,265,67,-0.5418883860111237],[120,265,68,-0.54057876765728],[120,265,69,-0.540533009916544],[120,265,70,-0.5415988229215145],[120,265,71,-0.5431684888899326],[120,265,72,-0.5453684069216251],[120,265,73,-0.5474954880774021],[120,265,74,-0.5486784763634205],[120,265,75,-0.5487280450761318],[120,265,76,-0.5475300811231136],[120,265,77,-0.5451569445431232],[120,265,78,-0.5418212004005909],[120,265,79,-0.5380158722400665],[120,266,64,-0.5461561381816864],[120,266,65,-0.5455079823732376],[120,266,66,-0.5438496991991997],[120,266,67,-0.5418883860111237],[120,266,68,-0.54057876765728],[120,266,69,-0.540533009916544],[120,266,70,-0.5415988229215145],[120,266,71,-0.5431684888899326],[120,266,72,-0.5453684069216251],[120,266,73,-0.5474954880774021],[120,266,74,-0.5486784763634205],[120,266,75,-0.5487280450761318],[120,266,76,-0.5475300811231136],[120,266,77,-0.5451569445431232],[120,266,78,-0.5418212004005909],[120,266,79,-0.5380158722400665],[120,267,64,-0.5461561381816864],[120,267,65,-0.5455079823732376],[120,267,66,-0.5438496991991997],[120,267,67,-0.5418883860111237],[120,267,68,-0.54057876765728],[120,267,69,-0.540533009916544],[120,267,70,-0.5415988229215145],[120,267,71,-0.5431684888899326],[120,267,72,-0.5453684069216251],[120,267,73,-0.5474954880774021],[120,267,74,-0.5486784763634205],[120,267,75,-0.5487280450761318],[120,267,76,-0.5475300811231136],[120,267,77,-0.5451569445431232],[120,267,78,-0.5418212004005909],[120,267,79,-0.5380158722400665],[120,268,64,-0.5461561381816864],[120,268,65,-0.5455079823732376],[120,268,66,-0.5438496991991997],[120,268,67,-0.5418883860111237],[120,268,68,-0.54057876765728],[120,268,69,-0.540533009916544],[120,268,70,-0.5415988229215145],[120,268,71,-0.5431684888899326],[120,268,72,-0.5453684069216251],[120,268,73,-0.5474954880774021],[120,268,74,-0.5486784763634205],[120,268,75,-0.5487280450761318],[120,268,76,-0.5475300811231136],[120,268,77,-0.5451569445431232],[120,268,78,-0.5418212004005909],[120,268,79,-0.5380158722400665],[120,269,64,-0.5461561381816864],[120,269,65,-0.5455079823732376],[120,269,66,-0.5438496991991997],[120,269,67,-0.5418883860111237],[120,269,68,-0.54057876765728],[120,269,69,-0.540533009916544],[120,269,70,-0.5415988229215145],[120,269,71,-0.5431684888899326],[120,269,72,-0.5453684069216251],[120,269,73,-0.5474954880774021],[120,269,74,-0.5486784763634205],[120,269,75,-0.5487280450761318],[120,269,76,-0.5475300811231136],[120,269,77,-0.5451569445431232],[120,269,78,-0.5418212004005909],[120,269,79,-0.5380158722400665],[120,270,64,-0.5461561381816864],[120,270,65,-0.5455079823732376],[120,270,66,-0.5438496991991997],[120,270,67,-0.5418883860111237],[120,270,68,-0.54057876765728],[120,270,69,-0.540533009916544],[120,270,70,-0.5415988229215145],[120,270,71,-0.5431684888899326],[120,270,72,-0.5453684069216251],[120,270,73,-0.5474954880774021],[120,270,74,-0.5486784763634205],[120,270,75,-0.5487280450761318],[120,270,76,-0.5475300811231136],[120,270,77,-0.5451569445431232],[120,270,78,-0.5418212004005909],[120,270,79,-0.5380158722400665],[120,271,64,-0.5461561381816864],[120,271,65,-0.5455079823732376],[120,271,66,-0.5438496991991997],[120,271,67,-0.5418883860111237],[120,271,68,-0.54057876765728],[120,271,69,-0.540533009916544],[120,271,70,-0.5415988229215145],[120,271,71,-0.5431684888899326],[120,271,72,-0.5453684069216251],[120,271,73,-0.5474954880774021],[120,271,74,-0.5486784763634205],[120,271,75,-0.5487280450761318],[120,271,76,-0.5475300811231136],[120,271,77,-0.5451569445431232],[120,271,78,-0.5418212004005909],[120,271,79,-0.5380158722400665],[120,272,64,-0.5461561381816864],[120,272,65,-0.5455079823732376],[120,272,66,-0.5438496991991997],[120,272,67,-0.5418883860111237],[120,272,68,-0.54057876765728],[120,272,69,-0.540533009916544],[120,272,70,-0.5415988229215145],[120,272,71,-0.5431684888899326],[120,272,72,-0.5453684069216251],[120,272,73,-0.5474954880774021],[120,272,74,-0.5486784763634205],[120,272,75,-0.5487280450761318],[120,272,76,-0.5475300811231136],[120,272,77,-0.5451569445431232],[120,272,78,-0.5418212004005909],[120,272,79,-0.5380158722400665],[120,273,64,-0.5461561381816864],[120,273,65,-0.5455079823732376],[120,273,66,-0.5438496991991997],[120,273,67,-0.5418883860111237],[120,273,68,-0.54057876765728],[120,273,69,-0.540533009916544],[120,273,70,-0.5415988229215145],[120,273,71,-0.5431684888899326],[120,273,72,-0.5453684069216251],[120,273,73,-0.5474954880774021],[120,273,74,-0.5486784763634205],[120,273,75,-0.5487280450761318],[120,273,76,-0.5475300811231136],[120,273,77,-0.5451569445431232],[120,273,78,-0.5418212004005909],[120,273,79,-0.5380158722400665],[120,274,64,-0.5461561381816864],[120,274,65,-0.5455079823732376],[120,274,66,-0.5438496991991997],[120,274,67,-0.5418883860111237],[120,274,68,-0.54057876765728],[120,274,69,-0.540533009916544],[120,274,70,-0.5415988229215145],[120,274,71,-0.5431684888899326],[120,274,72,-0.5453684069216251],[120,274,73,-0.5474954880774021],[120,274,74,-0.5486784763634205],[120,274,75,-0.5487280450761318],[120,274,76,-0.5475300811231136],[120,274,77,-0.5451569445431232],[120,274,78,-0.5418212004005909],[120,274,79,-0.5380158722400665],[120,275,64,-0.5461561381816864],[120,275,65,-0.5455079823732376],[120,275,66,-0.5438496991991997],[120,275,67,-0.5418883860111237],[120,275,68,-0.54057876765728],[120,275,69,-0.540533009916544],[120,275,70,-0.5415988229215145],[120,275,71,-0.5431684888899326],[120,275,72,-0.5453684069216251],[120,275,73,-0.5474954880774021],[120,275,74,-0.5486784763634205],[120,275,75,-0.5487280450761318],[120,275,76,-0.5475300811231136],[120,275,77,-0.5451569445431232],[120,275,78,-0.5418212004005909],[120,275,79,-0.5380158722400665],[120,276,64,-0.5461561381816864],[120,276,65,-0.5455079823732376],[120,276,66,-0.5438496991991997],[120,276,67,-0.5418883860111237],[120,276,68,-0.54057876765728],[120,276,69,-0.540533009916544],[120,276,70,-0.5415988229215145],[120,276,71,-0.5431684888899326],[120,276,72,-0.5453684069216251],[120,276,73,-0.5474954880774021],[120,276,74,-0.5486784763634205],[120,276,75,-0.5487280450761318],[120,276,76,-0.5475300811231136],[120,276,77,-0.5451569445431232],[120,276,78,-0.5418212004005909],[120,276,79,-0.5380158722400665],[120,277,64,-0.5461561381816864],[120,277,65,-0.5455079823732376],[120,277,66,-0.5438496991991997],[120,277,67,-0.5418883860111237],[120,277,68,-0.54057876765728],[120,277,69,-0.540533009916544],[120,277,70,-0.5415988229215145],[120,277,71,-0.5431684888899326],[120,277,72,-0.5453684069216251],[120,277,73,-0.5474954880774021],[120,277,74,-0.5486784763634205],[120,277,75,-0.5487280450761318],[120,277,76,-0.5475300811231136],[120,277,77,-0.5451569445431232],[120,277,78,-0.5418212004005909],[120,277,79,-0.5380158722400665],[120,278,64,-0.5461561381816864],[120,278,65,-0.5455079823732376],[120,278,66,-0.5438496991991997],[120,278,67,-0.5418883860111237],[120,278,68,-0.54057876765728],[120,278,69,-0.540533009916544],[120,278,70,-0.5415988229215145],[120,278,71,-0.5431684888899326],[120,278,72,-0.5453684069216251],[120,278,73,-0.5474954880774021],[120,278,74,-0.5486784763634205],[120,278,75,-0.5487280450761318],[120,278,76,-0.5475300811231136],[120,278,77,-0.5451569445431232],[120,278,78,-0.5418212004005909],[120,278,79,-0.5380158722400665],[120,279,64,-0.5461561381816864],[120,279,65,-0.5455079823732376],[120,279,66,-0.5438496991991997],[120,279,67,-0.5418883860111237],[120,279,68,-0.54057876765728],[120,279,69,-0.540533009916544],[120,279,70,-0.5415988229215145],[120,279,71,-0.5431684888899326],[120,279,72,-0.5453684069216251],[120,279,73,-0.5474954880774021],[120,279,74,-0.5486784763634205],[120,279,75,-0.5487280450761318],[120,279,76,-0.5475300811231136],[120,279,77,-0.5451569445431232],[120,279,78,-0.5418212004005909],[120,279,79,-0.5380158722400665],[120,280,64,-0.5461561381816864],[120,280,65,-0.5455079823732376],[120,280,66,-0.5438496991991997],[120,280,67,-0.5418883860111237],[120,280,68,-0.54057876765728],[120,280,69,-0.540533009916544],[120,280,70,-0.5415988229215145],[120,280,71,-0.5431684888899326],[120,280,72,-0.5453684069216251],[120,280,73,-0.5474954880774021],[120,280,74,-0.5486784763634205],[120,280,75,-0.5487280450761318],[120,280,76,-0.5475300811231136],[120,280,77,-0.5451569445431232],[120,280,78,-0.5418212004005909],[120,280,79,-0.5380158722400665],[120,281,64,-0.5461561381816864],[120,281,65,-0.5455079823732376],[120,281,66,-0.5438496991991997],[120,281,67,-0.5418883860111237],[120,281,68,-0.54057876765728],[120,281,69,-0.540533009916544],[120,281,70,-0.5415988229215145],[120,281,71,-0.5431684888899326],[120,281,72,-0.5453684069216251],[120,281,73,-0.5474954880774021],[120,281,74,-0.5486784763634205],[120,281,75,-0.5487280450761318],[120,281,76,-0.5475300811231136],[120,281,77,-0.5451569445431232],[120,281,78,-0.5418212004005909],[120,281,79,-0.5380158722400665],[120,282,64,-0.5461561381816864],[120,282,65,-0.5455079823732376],[120,282,66,-0.5438496991991997],[120,282,67,-0.5418883860111237],[120,282,68,-0.54057876765728],[120,282,69,-0.540533009916544],[120,282,70,-0.5415988229215145],[120,282,71,-0.5431684888899326],[120,282,72,-0.5453684069216251],[120,282,73,-0.5474954880774021],[120,282,74,-0.5486784763634205],[120,282,75,-0.5487280450761318],[120,282,76,-0.5475300811231136],[120,282,77,-0.5451569445431232],[120,282,78,-0.5418212004005909],[120,282,79,-0.5380158722400665],[120,283,64,-0.5461561381816864],[120,283,65,-0.5455079823732376],[120,283,66,-0.5438496991991997],[120,283,67,-0.5418883860111237],[120,283,68,-0.54057876765728],[120,283,69,-0.540533009916544],[120,283,70,-0.5415988229215145],[120,283,71,-0.5431684888899326],[120,283,72,-0.5453684069216251],[120,283,73,-0.5474954880774021],[120,283,74,-0.5486784763634205],[120,283,75,-0.5487280450761318],[120,283,76,-0.5475300811231136],[120,283,77,-0.5451569445431232],[120,283,78,-0.5418212004005909],[120,283,79,-0.5380158722400665],[120,284,64,-0.5461561381816864],[120,284,65,-0.5455079823732376],[120,284,66,-0.5438496991991997],[120,284,67,-0.5418883860111237],[120,284,68,-0.54057876765728],[120,284,69,-0.540533009916544],[120,284,70,-0.5415988229215145],[120,284,71,-0.5431684888899326],[120,284,72,-0.5453684069216251],[120,284,73,-0.5474954880774021],[120,284,74,-0.5486784763634205],[120,284,75,-0.5487280450761318],[120,284,76,-0.5475300811231136],[120,284,77,-0.5451569445431232],[120,284,78,-0.5418212004005909],[120,284,79,-0.5380158722400665],[120,285,64,-0.5461561381816864],[120,285,65,-0.5455079823732376],[120,285,66,-0.5438496991991997],[120,285,67,-0.5418883860111237],[120,285,68,-0.54057876765728],[120,285,69,-0.540533009916544],[120,285,70,-0.5415988229215145],[120,285,71,-0.5431684888899326],[120,285,72,-0.5453684069216251],[120,285,73,-0.5474954880774021],[120,285,74,-0.5486784763634205],[120,285,75,-0.5487280450761318],[120,285,76,-0.5475300811231136],[120,285,77,-0.5451569445431232],[120,285,78,-0.5418212004005909],[120,285,79,-0.5380158722400665],[120,286,64,-0.5461561381816864],[120,286,65,-0.5455079823732376],[120,286,66,-0.5438496991991997],[120,286,67,-0.5418883860111237],[120,286,68,-0.54057876765728],[120,286,69,-0.540533009916544],[120,286,70,-0.5415988229215145],[120,286,71,-0.5431684888899326],[120,286,72,-0.5453684069216251],[120,286,73,-0.5474954880774021],[120,286,74,-0.5486784763634205],[120,286,75,-0.5487280450761318],[120,286,76,-0.5475300811231136],[120,286,77,-0.5451569445431232],[120,286,78,-0.5418212004005909],[120,286,79,-0.5380158722400665],[120,287,64,-0.5461561381816864],[120,287,65,-0.5455079823732376],[120,287,66,-0.5438496991991997],[120,287,67,-0.5418883860111237],[120,287,68,-0.54057876765728],[120,287,69,-0.540533009916544],[120,287,70,-0.5415988229215145],[120,287,71,-0.5431684888899326],[120,287,72,-0.5453684069216251],[120,287,73,-0.5474954880774021],[120,287,74,-0.5486784763634205],[120,287,75,-0.5487280450761318],[120,287,76,-0.5475300811231136],[120,287,77,-0.5451569445431232],[120,287,78,-0.5418212004005909],[120,287,79,-0.5380158722400665],[120,288,64,-0.5461561381816864],[120,288,65,-0.5455079823732376],[120,288,66,-0.5438496991991997],[120,288,67,-0.5418883860111237],[120,288,68,-0.54057876765728],[120,288,69,-0.540533009916544],[120,288,70,-0.5415988229215145],[120,288,71,-0.5431684888899326],[120,288,72,-0.5453684069216251],[120,288,73,-0.5474954880774021],[120,288,74,-0.5486784763634205],[120,288,75,-0.5487280450761318],[120,288,76,-0.5475300811231136],[120,288,77,-0.5451569445431232],[120,288,78,-0.5418212004005909],[120,288,79,-0.5380158722400665],[120,289,64,-0.5461561381816864],[120,289,65,-0.5455079823732376],[120,289,66,-0.5438496991991997],[120,289,67,-0.5418883860111237],[120,289,68,-0.54057876765728],[120,289,69,-0.540533009916544],[120,289,70,-0.5415988229215145],[120,289,71,-0.5431684888899326],[120,289,72,-0.5453684069216251],[120,289,73,-0.5474954880774021],[120,289,74,-0.5486784763634205],[120,289,75,-0.5487280450761318],[120,289,76,-0.5475300811231136],[120,289,77,-0.5451569445431232],[120,289,78,-0.5418212004005909],[120,289,79,-0.5380158722400665],[120,290,64,-0.5461561381816864],[120,290,65,-0.5455079823732376],[120,290,66,-0.5438496991991997],[120,290,67,-0.5418883860111237],[120,290,68,-0.54057876765728],[120,290,69,-0.540533009916544],[120,290,70,-0.5415988229215145],[120,290,71,-0.5431684888899326],[120,290,72,-0.5453684069216251],[120,290,73,-0.5474954880774021],[120,290,74,-0.5486784763634205],[120,290,75,-0.5487280450761318],[120,290,76,-0.5475300811231136],[120,290,77,-0.5451569445431232],[120,290,78,-0.5418212004005909],[120,290,79,-0.5380158722400665],[120,291,64,-0.5461561381816864],[120,291,65,-0.5455079823732376],[120,291,66,-0.5438496991991997],[120,291,67,-0.5418883860111237],[120,291,68,-0.54057876765728],[120,291,69,-0.540533009916544],[120,291,70,-0.5415988229215145],[120,291,71,-0.5431684888899326],[120,291,72,-0.5453684069216251],[120,291,73,-0.5474954880774021],[120,291,74,-0.5486784763634205],[120,291,75,-0.5487280450761318],[120,291,76,-0.5475300811231136],[120,291,77,-0.5451569445431232],[120,291,78,-0.5418212004005909],[120,291,79,-0.5380158722400665],[120,292,64,-0.5461561381816864],[120,292,65,-0.5455079823732376],[120,292,66,-0.5438496991991997],[120,292,67,-0.5418883860111237],[120,292,68,-0.54057876765728],[120,292,69,-0.540533009916544],[120,292,70,-0.5415988229215145],[120,292,71,-0.5431684888899326],[120,292,72,-0.5453684069216251],[120,292,73,-0.5474954880774021],[120,292,74,-0.5486784763634205],[120,292,75,-0.5487280450761318],[120,292,76,-0.5475300811231136],[120,292,77,-0.5451569445431232],[120,292,78,-0.5418212004005909],[120,292,79,-0.5380158722400665],[120,293,64,-0.5461561381816864],[120,293,65,-0.5455079823732376],[120,293,66,-0.5438496991991997],[120,293,67,-0.5418883860111237],[120,293,68,-0.54057876765728],[120,293,69,-0.540533009916544],[120,293,70,-0.5415988229215145],[120,293,71,-0.5431684888899326],[120,293,72,-0.5453684069216251],[120,293,73,-0.5474954880774021],[120,293,74,-0.5486784763634205],[120,293,75,-0.5487280450761318],[120,293,76,-0.5475300811231136],[120,293,77,-0.5451569445431232],[120,293,78,-0.5418212004005909],[120,293,79,-0.5380158722400665],[120,294,64,-0.5461561381816864],[120,294,65,-0.5455079823732376],[120,294,66,-0.5438496991991997],[120,294,67,-0.5418883860111237],[120,294,68,-0.54057876765728],[120,294,69,-0.540533009916544],[120,294,70,-0.5415988229215145],[120,294,71,-0.5431684888899326],[120,294,72,-0.5453684069216251],[120,294,73,-0.5474954880774021],[120,294,74,-0.5486784763634205],[120,294,75,-0.5487280450761318],[120,294,76,-0.5475300811231136],[120,294,77,-0.5451569445431232],[120,294,78,-0.5418212004005909],[120,294,79,-0.5380158722400665],[120,295,64,-0.5461561381816864],[120,295,65,-0.5455079823732376],[120,295,66,-0.5438496991991997],[120,295,67,-0.5418883860111237],[120,295,68,-0.54057876765728],[120,295,69,-0.540533009916544],[120,295,70,-0.5415988229215145],[120,295,71,-0.5431684888899326],[120,295,72,-0.5453684069216251],[120,295,73,-0.5474954880774021],[120,295,74,-0.5486784763634205],[120,295,75,-0.5487280450761318],[120,295,76,-0.5475300811231136],[120,295,77,-0.5451569445431232],[120,295,78,-0.5418212004005909],[120,295,79,-0.5380158722400665],[120,296,64,-0.5461561381816864],[120,296,65,-0.5455079823732376],[120,296,66,-0.5438496991991997],[120,296,67,-0.5418883860111237],[120,296,68,-0.54057876765728],[120,296,69,-0.540533009916544],[120,296,70,-0.5415988229215145],[120,296,71,-0.5431684888899326],[120,296,72,-0.5453684069216251],[120,296,73,-0.5474954880774021],[120,296,74,-0.5486784763634205],[120,296,75,-0.5487280450761318],[120,296,76,-0.5475300811231136],[120,296,77,-0.5451569445431232],[120,296,78,-0.5418212004005909],[120,296,79,-0.5380158722400665],[120,297,64,-0.5461561381816864],[120,297,65,-0.5455079823732376],[120,297,66,-0.5438496991991997],[120,297,67,-0.5418883860111237],[120,297,68,-0.54057876765728],[120,297,69,-0.540533009916544],[120,297,70,-0.5415988229215145],[120,297,71,-0.5431684888899326],[120,297,72,-0.5453684069216251],[120,297,73,-0.5474954880774021],[120,297,74,-0.5486784763634205],[120,297,75,-0.5487280450761318],[120,297,76,-0.5475300811231136],[120,297,77,-0.5451569445431232],[120,297,78,-0.5418212004005909],[120,297,79,-0.5380158722400665],[120,298,64,-0.5461561381816864],[120,298,65,-0.5455079823732376],[120,298,66,-0.5438496991991997],[120,298,67,-0.5418883860111237],[120,298,68,-0.54057876765728],[120,298,69,-0.540533009916544],[120,298,70,-0.5415988229215145],[120,298,71,-0.5431684888899326],[120,298,72,-0.5453684069216251],[120,298,73,-0.5474954880774021],[120,298,74,-0.5486784763634205],[120,298,75,-0.5487280450761318],[120,298,76,-0.5475300811231136],[120,298,77,-0.5451569445431232],[120,298,78,-0.5418212004005909],[120,298,79,-0.5380158722400665],[120,299,64,-0.5461561381816864],[120,299,65,-0.5455079823732376],[120,299,66,-0.5438496991991997],[120,299,67,-0.5418883860111237],[120,299,68,-0.54057876765728],[120,299,69,-0.540533009916544],[120,299,70,-0.5415988229215145],[120,299,71,-0.5431684888899326],[120,299,72,-0.5453684069216251],[120,299,73,-0.5474954880774021],[120,299,74,-0.5486784763634205],[120,299,75,-0.5487280450761318],[120,299,76,-0.5475300811231136],[120,299,77,-0.5451569445431232],[120,299,78,-0.5418212004005909],[120,299,79,-0.5380158722400665],[120,300,64,-0.5461561381816864],[120,300,65,-0.5455079823732376],[120,300,66,-0.5438496991991997],[120,300,67,-0.5418883860111237],[120,300,68,-0.54057876765728],[120,300,69,-0.540533009916544],[120,300,70,-0.5415988229215145],[120,300,71,-0.5431684888899326],[120,300,72,-0.5453684069216251],[120,300,73,-0.5474954880774021],[120,300,74,-0.5486784763634205],[120,300,75,-0.5487280450761318],[120,300,76,-0.5475300811231136],[120,300,77,-0.5451569445431232],[120,300,78,-0.5418212004005909],[120,300,79,-0.5380158722400665],[120,301,64,-0.5461561381816864],[120,301,65,-0.5455079823732376],[120,301,66,-0.5438496991991997],[120,301,67,-0.5418883860111237],[120,301,68,-0.54057876765728],[120,301,69,-0.540533009916544],[120,301,70,-0.5415988229215145],[120,301,71,-0.5431684888899326],[120,301,72,-0.5453684069216251],[120,301,73,-0.5474954880774021],[120,301,74,-0.5486784763634205],[120,301,75,-0.5487280450761318],[120,301,76,-0.5475300811231136],[120,301,77,-0.5451569445431232],[120,301,78,-0.5418212004005909],[120,301,79,-0.5380158722400665],[120,302,64,-0.5461561381816864],[120,302,65,-0.5455079823732376],[120,302,66,-0.5438496991991997],[120,302,67,-0.5418883860111237],[120,302,68,-0.54057876765728],[120,302,69,-0.540533009916544],[120,302,70,-0.5415988229215145],[120,302,71,-0.5431684888899326],[120,302,72,-0.5453684069216251],[120,302,73,-0.5474954880774021],[120,302,74,-0.5486784763634205],[120,302,75,-0.5487280450761318],[120,302,76,-0.5475300811231136],[120,302,77,-0.5451569445431232],[120,302,78,-0.5418212004005909],[120,302,79,-0.5380158722400665],[120,303,64,-0.5461561381816864],[120,303,65,-0.5455079823732376],[120,303,66,-0.5438496991991997],[120,303,67,-0.5418883860111237],[120,303,68,-0.54057876765728],[120,303,69,-0.540533009916544],[120,303,70,-0.5415988229215145],[120,303,71,-0.5431684888899326],[120,303,72,-0.5453684069216251],[120,303,73,-0.5474954880774021],[120,303,74,-0.5486784763634205],[120,303,75,-0.5487280450761318],[120,303,76,-0.5475300811231136],[120,303,77,-0.5451569445431232],[120,303,78,-0.5418212004005909],[120,303,79,-0.5380158722400665],[120,304,64,-0.5461561381816864],[120,304,65,-0.5455079823732376],[120,304,66,-0.5438496991991997],[120,304,67,-0.5418883860111237],[120,304,68,-0.54057876765728],[120,304,69,-0.540533009916544],[120,304,70,-0.5415988229215145],[120,304,71,-0.5431684888899326],[120,304,72,-0.5453684069216251],[120,304,73,-0.5474954880774021],[120,304,74,-0.5486784763634205],[120,304,75,-0.5487280450761318],[120,304,76,-0.5475300811231136],[120,304,77,-0.5451569445431232],[120,304,78,-0.5418212004005909],[120,304,79,-0.5380158722400665],[120,305,64,-0.5461561381816864],[120,305,65,-0.5455079823732376],[120,305,66,-0.5438496991991997],[120,305,67,-0.5418883860111237],[120,305,68,-0.54057876765728],[120,305,69,-0.540533009916544],[120,305,70,-0.5415988229215145],[120,305,71,-0.5431684888899326],[120,305,72,-0.5453684069216251],[120,305,73,-0.5474954880774021],[120,305,74,-0.5486784763634205],[120,305,75,-0.5487280450761318],[120,305,76,-0.5475300811231136],[120,305,77,-0.5451569445431232],[120,305,78,-0.5418212004005909],[120,305,79,-0.5380158722400665],[120,306,64,-0.5461561381816864],[120,306,65,-0.5455079823732376],[120,306,66,-0.5438496991991997],[120,306,67,-0.5418883860111237],[120,306,68,-0.54057876765728],[120,306,69,-0.540533009916544],[120,306,70,-0.5415988229215145],[120,306,71,-0.5431684888899326],[120,306,72,-0.5453684069216251],[120,306,73,-0.5474954880774021],[120,306,74,-0.5486784763634205],[120,306,75,-0.5487280450761318],[120,306,76,-0.5475300811231136],[120,306,77,-0.5451569445431232],[120,306,78,-0.5418212004005909],[120,306,79,-0.5380158722400665],[120,307,64,-0.5461561381816864],[120,307,65,-0.5455079823732376],[120,307,66,-0.5438496991991997],[120,307,67,-0.5418883860111237],[120,307,68,-0.54057876765728],[120,307,69,-0.540533009916544],[120,307,70,-0.5415988229215145],[120,307,71,-0.5431684888899326],[120,307,72,-0.5453684069216251],[120,307,73,-0.5474954880774021],[120,307,74,-0.5486784763634205],[120,307,75,-0.5487280450761318],[120,307,76,-0.5475300811231136],[120,307,77,-0.5451569445431232],[120,307,78,-0.5418212004005909],[120,307,79,-0.5380158722400665],[120,308,64,-0.5461561381816864],[120,308,65,-0.5455079823732376],[120,308,66,-0.5438496991991997],[120,308,67,-0.5418883860111237],[120,308,68,-0.54057876765728],[120,308,69,-0.540533009916544],[120,308,70,-0.5415988229215145],[120,308,71,-0.5431684888899326],[120,308,72,-0.5453684069216251],[120,308,73,-0.5474954880774021],[120,308,74,-0.5486784763634205],[120,308,75,-0.5487280450761318],[120,308,76,-0.5475300811231136],[120,308,77,-0.5451569445431232],[120,308,78,-0.5418212004005909],[120,308,79,-0.5380158722400665],[120,309,64,-0.5461561381816864],[120,309,65,-0.5455079823732376],[120,309,66,-0.5438496991991997],[120,309,67,-0.5418883860111237],[120,309,68,-0.54057876765728],[120,309,69,-0.540533009916544],[120,309,70,-0.5415988229215145],[120,309,71,-0.5431684888899326],[120,309,72,-0.5453684069216251],[120,309,73,-0.5474954880774021],[120,309,74,-0.5486784763634205],[120,309,75,-0.5487280450761318],[120,309,76,-0.5475300811231136],[120,309,77,-0.5451569445431232],[120,309,78,-0.5418212004005909],[120,309,79,-0.5380158722400665],[120,310,64,-0.5461561381816864],[120,310,65,-0.5455079823732376],[120,310,66,-0.5438496991991997],[120,310,67,-0.5418883860111237],[120,310,68,-0.54057876765728],[120,310,69,-0.540533009916544],[120,310,70,-0.5415988229215145],[120,310,71,-0.5431684888899326],[120,310,72,-0.5453684069216251],[120,310,73,-0.5474954880774021],[120,310,74,-0.5486784763634205],[120,310,75,-0.5487280450761318],[120,310,76,-0.5475300811231136],[120,310,77,-0.5451569445431232],[120,310,78,-0.5418212004005909],[120,310,79,-0.5380158722400665],[120,311,64,-0.5461561381816864],[120,311,65,-0.5455079823732376],[120,311,66,-0.5438496991991997],[120,311,67,-0.5418883860111237],[120,311,68,-0.54057876765728],[120,311,69,-0.540533009916544],[120,311,70,-0.5415988229215145],[120,311,71,-0.5431684888899326],[120,311,72,-0.5453684069216251],[120,311,73,-0.5474954880774021],[120,311,74,-0.5486784763634205],[120,311,75,-0.5487280450761318],[120,311,76,-0.5475300811231136],[120,311,77,-0.5451569445431232],[120,311,78,-0.5418212004005909],[120,311,79,-0.5380158722400665],[120,312,64,-0.5461561381816864],[120,312,65,-0.5455079823732376],[120,312,66,-0.5438496991991997],[120,312,67,-0.5418883860111237],[120,312,68,-0.54057876765728],[120,312,69,-0.540533009916544],[120,312,70,-0.5415988229215145],[120,312,71,-0.5431684888899326],[120,312,72,-0.5453684069216251],[120,312,73,-0.5474954880774021],[120,312,74,-0.5486784763634205],[120,312,75,-0.5487280450761318],[120,312,76,-0.5475300811231136],[120,312,77,-0.5451569445431232],[120,312,78,-0.5418212004005909],[120,312,79,-0.5380158722400665],[120,313,64,-0.5461561381816864],[120,313,65,-0.5455079823732376],[120,313,66,-0.5438496991991997],[120,313,67,-0.5418883860111237],[120,313,68,-0.54057876765728],[120,313,69,-0.540533009916544],[120,313,70,-0.5415988229215145],[120,313,71,-0.5431684888899326],[120,313,72,-0.5453684069216251],[120,313,73,-0.5474954880774021],[120,313,74,-0.5486784763634205],[120,313,75,-0.5487280450761318],[120,313,76,-0.5475300811231136],[120,313,77,-0.5451569445431232],[120,313,78,-0.5418212004005909],[120,313,79,-0.5380158722400665],[120,314,64,-0.5461561381816864],[120,314,65,-0.5455079823732376],[120,314,66,-0.5438496991991997],[120,314,67,-0.5418883860111237],[120,314,68,-0.54057876765728],[120,314,69,-0.540533009916544],[120,314,70,-0.5415988229215145],[120,314,71,-0.5431684888899326],[120,314,72,-0.5453684069216251],[120,314,73,-0.5474954880774021],[120,314,74,-0.5486784763634205],[120,314,75,-0.5487280450761318],[120,314,76,-0.5475300811231136],[120,314,77,-0.5451569445431232],[120,314,78,-0.5418212004005909],[120,314,79,-0.5380158722400665],[120,315,64,-0.5461561381816864],[120,315,65,-0.5455079823732376],[120,315,66,-0.5438496991991997],[120,315,67,-0.5418883860111237],[120,315,68,-0.54057876765728],[120,315,69,-0.540533009916544],[120,315,70,-0.5415988229215145],[120,315,71,-0.5431684888899326],[120,315,72,-0.5453684069216251],[120,315,73,-0.5474954880774021],[120,315,74,-0.5486784763634205],[120,315,75,-0.5487280450761318],[120,315,76,-0.5475300811231136],[120,315,77,-0.5451569445431232],[120,315,78,-0.5418212004005909],[120,315,79,-0.5380158722400665],[120,316,64,-0.5461561381816864],[120,316,65,-0.5455079823732376],[120,316,66,-0.5438496991991997],[120,316,67,-0.5418883860111237],[120,316,68,-0.54057876765728],[120,316,69,-0.540533009916544],[120,316,70,-0.5415988229215145],[120,316,71,-0.5431684888899326],[120,316,72,-0.5453684069216251],[120,316,73,-0.5474954880774021],[120,316,74,-0.5486784763634205],[120,316,75,-0.5487280450761318],[120,316,76,-0.5475300811231136],[120,316,77,-0.5451569445431232],[120,316,78,-0.5418212004005909],[120,316,79,-0.5380158722400665],[120,317,64,-0.5461561381816864],[120,317,65,-0.5455079823732376],[120,317,66,-0.5438496991991997],[120,317,67,-0.5418883860111237],[120,317,68,-0.54057876765728],[120,317,69,-0.540533009916544],[120,317,70,-0.5415988229215145],[120,317,71,-0.5431684888899326],[120,317,72,-0.5453684069216251],[120,317,73,-0.5474954880774021],[120,317,74,-0.5486784763634205],[120,317,75,-0.5487280450761318],[120,317,76,-0.5475300811231136],[120,317,77,-0.5451569445431232],[120,317,78,-0.5418212004005909],[120,317,79,-0.5380158722400665],[120,318,64,-0.5461561381816864],[120,318,65,-0.5455079823732376],[120,318,66,-0.5438496991991997],[120,318,67,-0.5418883860111237],[120,318,68,-0.54057876765728],[120,318,69,-0.540533009916544],[120,318,70,-0.5415988229215145],[120,318,71,-0.5431684888899326],[120,318,72,-0.5453684069216251],[120,318,73,-0.5474954880774021],[120,318,74,-0.5486784763634205],[120,318,75,-0.5487280450761318],[120,318,76,-0.5475300811231136],[120,318,77,-0.5451569445431232],[120,318,78,-0.5418212004005909],[120,318,79,-0.5380158722400665],[120,319,64,-0.5461561381816864],[120,319,65,-0.5455079823732376],[120,319,66,-0.5438496991991997],[120,319,67,-0.5418883860111237],[120,319,68,-0.54057876765728],[120,319,69,-0.540533009916544],[120,319,70,-0.5415988229215145],[120,319,71,-0.5431684888899326],[120,319,72,-0.5453684069216251],[120,319,73,-0.5474954880774021],[120,319,74,-0.5486784763634205],[120,319,75,-0.5487280450761318],[120,319,76,-0.5475300811231136],[120,319,77,-0.5451569445431232],[120,319,78,-0.5418212004005909],[120,319,79,-0.5380158722400665],[121,-64,64,-0.5490449965000153],[121,-64,65,-0.548549011349678],[121,-64,66,-0.5468972250819206],[121,-64,67,-0.5450501218438148],[121,-64,68,-0.5441530272364616],[121,-64,69,-0.5448597259819508],[121,-64,70,-0.5468904227018356],[121,-64,71,-0.549387838691473],[121,-64,72,-0.5521185472607613],[121,-64,73,-0.5540387257933617],[121,-64,74,-0.554715171456337],[121,-64,75,-0.5541062392294407],[121,-64,76,-0.5521560907363892],[121,-64,77,-0.5491077862679958],[121,-64,78,-0.5453321486711502],[121,-64,79,-0.5411497838795185],[121,-63,64,-0.5490449965000153],[121,-63,65,-0.548549011349678],[121,-63,66,-0.5468972250819206],[121,-63,67,-0.5450501218438148],[121,-63,68,-0.5441530272364616],[121,-63,69,-0.5448597259819508],[121,-63,70,-0.5468904227018356],[121,-63,71,-0.549387838691473],[121,-63,72,-0.5521185472607613],[121,-63,73,-0.5540387257933617],[121,-63,74,-0.554715171456337],[121,-63,75,-0.5541062392294407],[121,-63,76,-0.5521560907363892],[121,-63,77,-0.5491077862679958],[121,-63,78,-0.5453321486711502],[121,-63,79,-0.5411497838795185],[121,-62,64,-0.5490449965000153],[121,-62,65,-0.548549011349678],[121,-62,66,-0.5468972250819206],[121,-62,67,-0.5450501218438148],[121,-62,68,-0.5441530272364616],[121,-62,69,-0.5448597259819508],[121,-62,70,-0.5468904227018356],[121,-62,71,-0.549387838691473],[121,-62,72,-0.5521185472607613],[121,-62,73,-0.5540387257933617],[121,-62,74,-0.554715171456337],[121,-62,75,-0.5541062392294407],[121,-62,76,-0.5521560907363892],[121,-62,77,-0.5491077862679958],[121,-62,78,-0.5453321486711502],[121,-62,79,-0.5411497838795185],[121,-61,64,-0.5490449965000153],[121,-61,65,-0.548549011349678],[121,-61,66,-0.5468972250819206],[121,-61,67,-0.5450501218438148],[121,-61,68,-0.5441530272364616],[121,-61,69,-0.5448597259819508],[121,-61,70,-0.5468904227018356],[121,-61,71,-0.549387838691473],[121,-61,72,-0.5521185472607613],[121,-61,73,-0.5540387257933617],[121,-61,74,-0.554715171456337],[121,-61,75,-0.5541062392294407],[121,-61,76,-0.5521560907363892],[121,-61,77,-0.5491077862679958],[121,-61,78,-0.5453321486711502],[121,-61,79,-0.5411497838795185],[121,-60,64,-0.5490449965000153],[121,-60,65,-0.548549011349678],[121,-60,66,-0.5468972250819206],[121,-60,67,-0.5450501218438148],[121,-60,68,-0.5441530272364616],[121,-60,69,-0.5448597259819508],[121,-60,70,-0.5468904227018356],[121,-60,71,-0.549387838691473],[121,-60,72,-0.5521185472607613],[121,-60,73,-0.5540387257933617],[121,-60,74,-0.554715171456337],[121,-60,75,-0.5541062392294407],[121,-60,76,-0.5521560907363892],[121,-60,77,-0.5491077862679958],[121,-60,78,-0.5453321486711502],[121,-60,79,-0.5411497838795185],[121,-59,64,-0.5490449965000153],[121,-59,65,-0.548549011349678],[121,-59,66,-0.5468972250819206],[121,-59,67,-0.5450501218438148],[121,-59,68,-0.5441530272364616],[121,-59,69,-0.5448597259819508],[121,-59,70,-0.5468904227018356],[121,-59,71,-0.549387838691473],[121,-59,72,-0.5521185472607613],[121,-59,73,-0.5540387257933617],[121,-59,74,-0.554715171456337],[121,-59,75,-0.5541062392294407],[121,-59,76,-0.5521560907363892],[121,-59,77,-0.5491077862679958],[121,-59,78,-0.5453321486711502],[121,-59,79,-0.5411497838795185],[121,-58,64,-0.5490449965000153],[121,-58,65,-0.548549011349678],[121,-58,66,-0.5468972250819206],[121,-58,67,-0.5450501218438148],[121,-58,68,-0.5441530272364616],[121,-58,69,-0.5448597259819508],[121,-58,70,-0.5468904227018356],[121,-58,71,-0.549387838691473],[121,-58,72,-0.5521185472607613],[121,-58,73,-0.5540387257933617],[121,-58,74,-0.554715171456337],[121,-58,75,-0.5541062392294407],[121,-58,76,-0.5521560907363892],[121,-58,77,-0.5491077862679958],[121,-58,78,-0.5453321486711502],[121,-58,79,-0.5411497838795185],[121,-57,64,-0.5490449965000153],[121,-57,65,-0.548549011349678],[121,-57,66,-0.5468972250819206],[121,-57,67,-0.5450501218438148],[121,-57,68,-0.5441530272364616],[121,-57,69,-0.5448597259819508],[121,-57,70,-0.5468904227018356],[121,-57,71,-0.549387838691473],[121,-57,72,-0.5521185472607613],[121,-57,73,-0.5540387257933617],[121,-57,74,-0.554715171456337],[121,-57,75,-0.5541062392294407],[121,-57,76,-0.5521560907363892],[121,-57,77,-0.5491077862679958],[121,-57,78,-0.5453321486711502],[121,-57,79,-0.5411497838795185],[121,-56,64,-0.5490449965000153],[121,-56,65,-0.548549011349678],[121,-56,66,-0.5468972250819206],[121,-56,67,-0.5450501218438148],[121,-56,68,-0.5441530272364616],[121,-56,69,-0.5448597259819508],[121,-56,70,-0.5468904227018356],[121,-56,71,-0.549387838691473],[121,-56,72,-0.5521185472607613],[121,-56,73,-0.5540387257933617],[121,-56,74,-0.554715171456337],[121,-56,75,-0.5541062392294407],[121,-56,76,-0.5521560907363892],[121,-56,77,-0.5491077862679958],[121,-56,78,-0.5453321486711502],[121,-56,79,-0.5411497838795185],[121,-55,64,-0.5490449965000153],[121,-55,65,-0.548549011349678],[121,-55,66,-0.5468972250819206],[121,-55,67,-0.5450501218438148],[121,-55,68,-0.5441530272364616],[121,-55,69,-0.5448597259819508],[121,-55,70,-0.5468904227018356],[121,-55,71,-0.549387838691473],[121,-55,72,-0.5521185472607613],[121,-55,73,-0.5540387257933617],[121,-55,74,-0.554715171456337],[121,-55,75,-0.5541062392294407],[121,-55,76,-0.5521560907363892],[121,-55,77,-0.5491077862679958],[121,-55,78,-0.5453321486711502],[121,-55,79,-0.5411497838795185],[121,-54,64,-0.5490449965000153],[121,-54,65,-0.548549011349678],[121,-54,66,-0.5468972250819206],[121,-54,67,-0.5450501218438148],[121,-54,68,-0.5441530272364616],[121,-54,69,-0.5448597259819508],[121,-54,70,-0.5468904227018356],[121,-54,71,-0.549387838691473],[121,-54,72,-0.5521185472607613],[121,-54,73,-0.5540387257933617],[121,-54,74,-0.554715171456337],[121,-54,75,-0.5541062392294407],[121,-54,76,-0.5521560907363892],[121,-54,77,-0.5491077862679958],[121,-54,78,-0.5453321486711502],[121,-54,79,-0.5411497838795185],[121,-53,64,-0.5490449965000153],[121,-53,65,-0.548549011349678],[121,-53,66,-0.5468972250819206],[121,-53,67,-0.5450501218438148],[121,-53,68,-0.5441530272364616],[121,-53,69,-0.5448597259819508],[121,-53,70,-0.5468904227018356],[121,-53,71,-0.549387838691473],[121,-53,72,-0.5521185472607613],[121,-53,73,-0.5540387257933617],[121,-53,74,-0.554715171456337],[121,-53,75,-0.5541062392294407],[121,-53,76,-0.5521560907363892],[121,-53,77,-0.5491077862679958],[121,-53,78,-0.5453321486711502],[121,-53,79,-0.5411497838795185],[121,-52,64,-0.5490449965000153],[121,-52,65,-0.548549011349678],[121,-52,66,-0.5468972250819206],[121,-52,67,-0.5450501218438148],[121,-52,68,-0.5441530272364616],[121,-52,69,-0.5448597259819508],[121,-52,70,-0.5468904227018356],[121,-52,71,-0.549387838691473],[121,-52,72,-0.5521185472607613],[121,-52,73,-0.5540387257933617],[121,-52,74,-0.554715171456337],[121,-52,75,-0.5541062392294407],[121,-52,76,-0.5521560907363892],[121,-52,77,-0.5491077862679958],[121,-52,78,-0.5453321486711502],[121,-52,79,-0.5411497838795185],[121,-51,64,-0.5490449965000153],[121,-51,65,-0.548549011349678],[121,-51,66,-0.5468972250819206],[121,-51,67,-0.5450501218438148],[121,-51,68,-0.5441530272364616],[121,-51,69,-0.5448597259819508],[121,-51,70,-0.5468904227018356],[121,-51,71,-0.549387838691473],[121,-51,72,-0.5521185472607613],[121,-51,73,-0.5540387257933617],[121,-51,74,-0.554715171456337],[121,-51,75,-0.5541062392294407],[121,-51,76,-0.5521560907363892],[121,-51,77,-0.5491077862679958],[121,-51,78,-0.5453321486711502],[121,-51,79,-0.5411497838795185],[121,-50,64,-0.5490449965000153],[121,-50,65,-0.548549011349678],[121,-50,66,-0.5468972250819206],[121,-50,67,-0.5450501218438148],[121,-50,68,-0.5441530272364616],[121,-50,69,-0.5448597259819508],[121,-50,70,-0.5468904227018356],[121,-50,71,-0.549387838691473],[121,-50,72,-0.5521185472607613],[121,-50,73,-0.5540387257933617],[121,-50,74,-0.554715171456337],[121,-50,75,-0.5541062392294407],[121,-50,76,-0.5521560907363892],[121,-50,77,-0.5491077862679958],[121,-50,78,-0.5453321486711502],[121,-50,79,-0.5411497838795185],[121,-49,64,-0.5490449965000153],[121,-49,65,-0.548549011349678],[121,-49,66,-0.5468972250819206],[121,-49,67,-0.5450501218438148],[121,-49,68,-0.5441530272364616],[121,-49,69,-0.5448597259819508],[121,-49,70,-0.5468904227018356],[121,-49,71,-0.549387838691473],[121,-49,72,-0.5521185472607613],[121,-49,73,-0.5540387257933617],[121,-49,74,-0.554715171456337],[121,-49,75,-0.5541062392294407],[121,-49,76,-0.5521560907363892],[121,-49,77,-0.5491077862679958],[121,-49,78,-0.5453321486711502],[121,-49,79,-0.5411497838795185],[121,-48,64,-0.5490449965000153],[121,-48,65,-0.548549011349678],[121,-48,66,-0.5468972250819206],[121,-48,67,-0.5450501218438148],[121,-48,68,-0.5441530272364616],[121,-48,69,-0.5448597259819508],[121,-48,70,-0.5468904227018356],[121,-48,71,-0.549387838691473],[121,-48,72,-0.5521185472607613],[121,-48,73,-0.5540387257933617],[121,-48,74,-0.554715171456337],[121,-48,75,-0.5541062392294407],[121,-48,76,-0.5521560907363892],[121,-48,77,-0.5491077862679958],[121,-48,78,-0.5453321486711502],[121,-48,79,-0.5411497838795185],[121,-47,64,-0.5490449965000153],[121,-47,65,-0.548549011349678],[121,-47,66,-0.5468972250819206],[121,-47,67,-0.5450501218438148],[121,-47,68,-0.5441530272364616],[121,-47,69,-0.5448597259819508],[121,-47,70,-0.5468904227018356],[121,-47,71,-0.549387838691473],[121,-47,72,-0.5521185472607613],[121,-47,73,-0.5540387257933617],[121,-47,74,-0.554715171456337],[121,-47,75,-0.5541062392294407],[121,-47,76,-0.5521560907363892],[121,-47,77,-0.5491077862679958],[121,-47,78,-0.5453321486711502],[121,-47,79,-0.5411497838795185],[121,-46,64,-0.5490449965000153],[121,-46,65,-0.548549011349678],[121,-46,66,-0.5468972250819206],[121,-46,67,-0.5450501218438148],[121,-46,68,-0.5441530272364616],[121,-46,69,-0.5448597259819508],[121,-46,70,-0.5468904227018356],[121,-46,71,-0.549387838691473],[121,-46,72,-0.5521185472607613],[121,-46,73,-0.5540387257933617],[121,-46,74,-0.554715171456337],[121,-46,75,-0.5541062392294407],[121,-46,76,-0.5521560907363892],[121,-46,77,-0.5491077862679958],[121,-46,78,-0.5453321486711502],[121,-46,79,-0.5411497838795185],[121,-45,64,-0.5490449965000153],[121,-45,65,-0.548549011349678],[121,-45,66,-0.5468972250819206],[121,-45,67,-0.5450501218438148],[121,-45,68,-0.5441530272364616],[121,-45,69,-0.5448597259819508],[121,-45,70,-0.5468904227018356],[121,-45,71,-0.549387838691473],[121,-45,72,-0.5521185472607613],[121,-45,73,-0.5540387257933617],[121,-45,74,-0.554715171456337],[121,-45,75,-0.5541062392294407],[121,-45,76,-0.5521560907363892],[121,-45,77,-0.5491077862679958],[121,-45,78,-0.5453321486711502],[121,-45,79,-0.5411497838795185],[121,-44,64,-0.5490449965000153],[121,-44,65,-0.548549011349678],[121,-44,66,-0.5468972250819206],[121,-44,67,-0.5450501218438148],[121,-44,68,-0.5441530272364616],[121,-44,69,-0.5448597259819508],[121,-44,70,-0.5468904227018356],[121,-44,71,-0.549387838691473],[121,-44,72,-0.5521185472607613],[121,-44,73,-0.5540387257933617],[121,-44,74,-0.554715171456337],[121,-44,75,-0.5541062392294407],[121,-44,76,-0.5521560907363892],[121,-44,77,-0.5491077862679958],[121,-44,78,-0.5453321486711502],[121,-44,79,-0.5411497838795185],[121,-43,64,-0.5490449965000153],[121,-43,65,-0.548549011349678],[121,-43,66,-0.5468972250819206],[121,-43,67,-0.5450501218438148],[121,-43,68,-0.5441530272364616],[121,-43,69,-0.5448597259819508],[121,-43,70,-0.5468904227018356],[121,-43,71,-0.549387838691473],[121,-43,72,-0.5521185472607613],[121,-43,73,-0.5540387257933617],[121,-43,74,-0.554715171456337],[121,-43,75,-0.5541062392294407],[121,-43,76,-0.5521560907363892],[121,-43,77,-0.5491077862679958],[121,-43,78,-0.5453321486711502],[121,-43,79,-0.5411497838795185],[121,-42,64,-0.5490449965000153],[121,-42,65,-0.548549011349678],[121,-42,66,-0.5468972250819206],[121,-42,67,-0.5450501218438148],[121,-42,68,-0.5441530272364616],[121,-42,69,-0.5448597259819508],[121,-42,70,-0.5468904227018356],[121,-42,71,-0.549387838691473],[121,-42,72,-0.5521185472607613],[121,-42,73,-0.5540387257933617],[121,-42,74,-0.554715171456337],[121,-42,75,-0.5541062392294407],[121,-42,76,-0.5521560907363892],[121,-42,77,-0.5491077862679958],[121,-42,78,-0.5453321486711502],[121,-42,79,-0.5411497838795185],[121,-41,64,-0.5490449965000153],[121,-41,65,-0.548549011349678],[121,-41,66,-0.5468972250819206],[121,-41,67,-0.5450501218438148],[121,-41,68,-0.5441530272364616],[121,-41,69,-0.5448597259819508],[121,-41,70,-0.5468904227018356],[121,-41,71,-0.549387838691473],[121,-41,72,-0.5521185472607613],[121,-41,73,-0.5540387257933617],[121,-41,74,-0.554715171456337],[121,-41,75,-0.5541062392294407],[121,-41,76,-0.5521560907363892],[121,-41,77,-0.5491077862679958],[121,-41,78,-0.5453321486711502],[121,-41,79,-0.5411497838795185],[121,-40,64,-0.5490449965000153],[121,-40,65,-0.548549011349678],[121,-40,66,-0.5468972250819206],[121,-40,67,-0.5450501218438148],[121,-40,68,-0.5441530272364616],[121,-40,69,-0.5448597259819508],[121,-40,70,-0.5468904227018356],[121,-40,71,-0.549387838691473],[121,-40,72,-0.5521185472607613],[121,-40,73,-0.5540387257933617],[121,-40,74,-0.554715171456337],[121,-40,75,-0.5541062392294407],[121,-40,76,-0.5521560907363892],[121,-40,77,-0.5491077862679958],[121,-40,78,-0.5453321486711502],[121,-40,79,-0.5411497838795185],[121,-39,64,-0.5490449965000153],[121,-39,65,-0.548549011349678],[121,-39,66,-0.5468972250819206],[121,-39,67,-0.5450501218438148],[121,-39,68,-0.5441530272364616],[121,-39,69,-0.5448597259819508],[121,-39,70,-0.5468904227018356],[121,-39,71,-0.549387838691473],[121,-39,72,-0.5521185472607613],[121,-39,73,-0.5540387257933617],[121,-39,74,-0.554715171456337],[121,-39,75,-0.5541062392294407],[121,-39,76,-0.5521560907363892],[121,-39,77,-0.5491077862679958],[121,-39,78,-0.5453321486711502],[121,-39,79,-0.5411497838795185],[121,-38,64,-0.5490449965000153],[121,-38,65,-0.548549011349678],[121,-38,66,-0.5468972250819206],[121,-38,67,-0.5450501218438148],[121,-38,68,-0.5441530272364616],[121,-38,69,-0.5448597259819508],[121,-38,70,-0.5468904227018356],[121,-38,71,-0.549387838691473],[121,-38,72,-0.5521185472607613],[121,-38,73,-0.5540387257933617],[121,-38,74,-0.554715171456337],[121,-38,75,-0.5541062392294407],[121,-38,76,-0.5521560907363892],[121,-38,77,-0.5491077862679958],[121,-38,78,-0.5453321486711502],[121,-38,79,-0.5411497838795185],[121,-37,64,-0.5490449965000153],[121,-37,65,-0.548549011349678],[121,-37,66,-0.5468972250819206],[121,-37,67,-0.5450501218438148],[121,-37,68,-0.5441530272364616],[121,-37,69,-0.5448597259819508],[121,-37,70,-0.5468904227018356],[121,-37,71,-0.549387838691473],[121,-37,72,-0.5521185472607613],[121,-37,73,-0.5540387257933617],[121,-37,74,-0.554715171456337],[121,-37,75,-0.5541062392294407],[121,-37,76,-0.5521560907363892],[121,-37,77,-0.5491077862679958],[121,-37,78,-0.5453321486711502],[121,-37,79,-0.5411497838795185],[121,-36,64,-0.5490449965000153],[121,-36,65,-0.548549011349678],[121,-36,66,-0.5468972250819206],[121,-36,67,-0.5450501218438148],[121,-36,68,-0.5441530272364616],[121,-36,69,-0.5448597259819508],[121,-36,70,-0.5468904227018356],[121,-36,71,-0.549387838691473],[121,-36,72,-0.5521185472607613],[121,-36,73,-0.5540387257933617],[121,-36,74,-0.554715171456337],[121,-36,75,-0.5541062392294407],[121,-36,76,-0.5521560907363892],[121,-36,77,-0.5491077862679958],[121,-36,78,-0.5453321486711502],[121,-36,79,-0.5411497838795185],[121,-35,64,-0.5490449965000153],[121,-35,65,-0.548549011349678],[121,-35,66,-0.5468972250819206],[121,-35,67,-0.5450501218438148],[121,-35,68,-0.5441530272364616],[121,-35,69,-0.5448597259819508],[121,-35,70,-0.5468904227018356],[121,-35,71,-0.549387838691473],[121,-35,72,-0.5521185472607613],[121,-35,73,-0.5540387257933617],[121,-35,74,-0.554715171456337],[121,-35,75,-0.5541062392294407],[121,-35,76,-0.5521560907363892],[121,-35,77,-0.5491077862679958],[121,-35,78,-0.5453321486711502],[121,-35,79,-0.5411497838795185],[121,-34,64,-0.5490449965000153],[121,-34,65,-0.548549011349678],[121,-34,66,-0.5468972250819206],[121,-34,67,-0.5450501218438148],[121,-34,68,-0.5441530272364616],[121,-34,69,-0.5448597259819508],[121,-34,70,-0.5468904227018356],[121,-34,71,-0.549387838691473],[121,-34,72,-0.5521185472607613],[121,-34,73,-0.5540387257933617],[121,-34,74,-0.554715171456337],[121,-34,75,-0.5541062392294407],[121,-34,76,-0.5521560907363892],[121,-34,77,-0.5491077862679958],[121,-34,78,-0.5453321486711502],[121,-34,79,-0.5411497838795185],[121,-33,64,-0.5490449965000153],[121,-33,65,-0.548549011349678],[121,-33,66,-0.5468972250819206],[121,-33,67,-0.5450501218438148],[121,-33,68,-0.5441530272364616],[121,-33,69,-0.5448597259819508],[121,-33,70,-0.5468904227018356],[121,-33,71,-0.549387838691473],[121,-33,72,-0.5521185472607613],[121,-33,73,-0.5540387257933617],[121,-33,74,-0.554715171456337],[121,-33,75,-0.5541062392294407],[121,-33,76,-0.5521560907363892],[121,-33,77,-0.5491077862679958],[121,-33,78,-0.5453321486711502],[121,-33,79,-0.5411497838795185],[121,-32,64,-0.5490449965000153],[121,-32,65,-0.548549011349678],[121,-32,66,-0.5468972250819206],[121,-32,67,-0.5450501218438148],[121,-32,68,-0.5441530272364616],[121,-32,69,-0.5448597259819508],[121,-32,70,-0.5468904227018356],[121,-32,71,-0.549387838691473],[121,-32,72,-0.5521185472607613],[121,-32,73,-0.5540387257933617],[121,-32,74,-0.554715171456337],[121,-32,75,-0.5541062392294407],[121,-32,76,-0.5521560907363892],[121,-32,77,-0.5491077862679958],[121,-32,78,-0.5453321486711502],[121,-32,79,-0.5411497838795185],[121,-31,64,-0.5490449965000153],[121,-31,65,-0.548549011349678],[121,-31,66,-0.5468972250819206],[121,-31,67,-0.5450501218438148],[121,-31,68,-0.5441530272364616],[121,-31,69,-0.5448597259819508],[121,-31,70,-0.5468904227018356],[121,-31,71,-0.549387838691473],[121,-31,72,-0.5521185472607613],[121,-31,73,-0.5540387257933617],[121,-31,74,-0.554715171456337],[121,-31,75,-0.5541062392294407],[121,-31,76,-0.5521560907363892],[121,-31,77,-0.5491077862679958],[121,-31,78,-0.5453321486711502],[121,-31,79,-0.5411497838795185],[121,-30,64,-0.5490449965000153],[121,-30,65,-0.548549011349678],[121,-30,66,-0.5468972250819206],[121,-30,67,-0.5450501218438148],[121,-30,68,-0.5441530272364616],[121,-30,69,-0.5448597259819508],[121,-30,70,-0.5468904227018356],[121,-30,71,-0.549387838691473],[121,-30,72,-0.5521185472607613],[121,-30,73,-0.5540387257933617],[121,-30,74,-0.554715171456337],[121,-30,75,-0.5541062392294407],[121,-30,76,-0.5521560907363892],[121,-30,77,-0.5491077862679958],[121,-30,78,-0.5453321486711502],[121,-30,79,-0.5411497838795185],[121,-29,64,-0.5490449965000153],[121,-29,65,-0.548549011349678],[121,-29,66,-0.5468972250819206],[121,-29,67,-0.5450501218438148],[121,-29,68,-0.5441530272364616],[121,-29,69,-0.5448597259819508],[121,-29,70,-0.5468904227018356],[121,-29,71,-0.549387838691473],[121,-29,72,-0.5521185472607613],[121,-29,73,-0.5540387257933617],[121,-29,74,-0.554715171456337],[121,-29,75,-0.5541062392294407],[121,-29,76,-0.5521560907363892],[121,-29,77,-0.5491077862679958],[121,-29,78,-0.5453321486711502],[121,-29,79,-0.5411497838795185],[121,-28,64,-0.5490449965000153],[121,-28,65,-0.548549011349678],[121,-28,66,-0.5468972250819206],[121,-28,67,-0.5450501218438148],[121,-28,68,-0.5441530272364616],[121,-28,69,-0.5448597259819508],[121,-28,70,-0.5468904227018356],[121,-28,71,-0.549387838691473],[121,-28,72,-0.5521185472607613],[121,-28,73,-0.5540387257933617],[121,-28,74,-0.554715171456337],[121,-28,75,-0.5541062392294407],[121,-28,76,-0.5521560907363892],[121,-28,77,-0.5491077862679958],[121,-28,78,-0.5453321486711502],[121,-28,79,-0.5411497838795185],[121,-27,64,-0.5490449965000153],[121,-27,65,-0.548549011349678],[121,-27,66,-0.5468972250819206],[121,-27,67,-0.5450501218438148],[121,-27,68,-0.5441530272364616],[121,-27,69,-0.5448597259819508],[121,-27,70,-0.5468904227018356],[121,-27,71,-0.549387838691473],[121,-27,72,-0.5521185472607613],[121,-27,73,-0.5540387257933617],[121,-27,74,-0.554715171456337],[121,-27,75,-0.5541062392294407],[121,-27,76,-0.5521560907363892],[121,-27,77,-0.5491077862679958],[121,-27,78,-0.5453321486711502],[121,-27,79,-0.5411497838795185],[121,-26,64,-0.5490449965000153],[121,-26,65,-0.548549011349678],[121,-26,66,-0.5468972250819206],[121,-26,67,-0.5450501218438148],[121,-26,68,-0.5441530272364616],[121,-26,69,-0.5448597259819508],[121,-26,70,-0.5468904227018356],[121,-26,71,-0.549387838691473],[121,-26,72,-0.5521185472607613],[121,-26,73,-0.5540387257933617],[121,-26,74,-0.554715171456337],[121,-26,75,-0.5541062392294407],[121,-26,76,-0.5521560907363892],[121,-26,77,-0.5491077862679958],[121,-26,78,-0.5453321486711502],[121,-26,79,-0.5411497838795185],[121,-25,64,-0.5490449965000153],[121,-25,65,-0.548549011349678],[121,-25,66,-0.5468972250819206],[121,-25,67,-0.5450501218438148],[121,-25,68,-0.5441530272364616],[121,-25,69,-0.5448597259819508],[121,-25,70,-0.5468904227018356],[121,-25,71,-0.549387838691473],[121,-25,72,-0.5521185472607613],[121,-25,73,-0.5540387257933617],[121,-25,74,-0.554715171456337],[121,-25,75,-0.5541062392294407],[121,-25,76,-0.5521560907363892],[121,-25,77,-0.5491077862679958],[121,-25,78,-0.5453321486711502],[121,-25,79,-0.5411497838795185],[121,-24,64,-0.5490449965000153],[121,-24,65,-0.548549011349678],[121,-24,66,-0.5468972250819206],[121,-24,67,-0.5450501218438148],[121,-24,68,-0.5441530272364616],[121,-24,69,-0.5448597259819508],[121,-24,70,-0.5468904227018356],[121,-24,71,-0.549387838691473],[121,-24,72,-0.5521185472607613],[121,-24,73,-0.5540387257933617],[121,-24,74,-0.554715171456337],[121,-24,75,-0.5541062392294407],[121,-24,76,-0.5521560907363892],[121,-24,77,-0.5491077862679958],[121,-24,78,-0.5453321486711502],[121,-24,79,-0.5411497838795185],[121,-23,64,-0.5490449965000153],[121,-23,65,-0.548549011349678],[121,-23,66,-0.5468972250819206],[121,-23,67,-0.5450501218438148],[121,-23,68,-0.5441530272364616],[121,-23,69,-0.5448597259819508],[121,-23,70,-0.5468904227018356],[121,-23,71,-0.549387838691473],[121,-23,72,-0.5521185472607613],[121,-23,73,-0.5540387257933617],[121,-23,74,-0.554715171456337],[121,-23,75,-0.5541062392294407],[121,-23,76,-0.5521560907363892],[121,-23,77,-0.5491077862679958],[121,-23,78,-0.5453321486711502],[121,-23,79,-0.5411497838795185],[121,-22,64,-0.5490449965000153],[121,-22,65,-0.548549011349678],[121,-22,66,-0.5468972250819206],[121,-22,67,-0.5450501218438148],[121,-22,68,-0.5441530272364616],[121,-22,69,-0.5448597259819508],[121,-22,70,-0.5468904227018356],[121,-22,71,-0.549387838691473],[121,-22,72,-0.5521185472607613],[121,-22,73,-0.5540387257933617],[121,-22,74,-0.554715171456337],[121,-22,75,-0.5541062392294407],[121,-22,76,-0.5521560907363892],[121,-22,77,-0.5491077862679958],[121,-22,78,-0.5453321486711502],[121,-22,79,-0.5411497838795185],[121,-21,64,-0.5490449965000153],[121,-21,65,-0.548549011349678],[121,-21,66,-0.5468972250819206],[121,-21,67,-0.5450501218438148],[121,-21,68,-0.5441530272364616],[121,-21,69,-0.5448597259819508],[121,-21,70,-0.5468904227018356],[121,-21,71,-0.549387838691473],[121,-21,72,-0.5521185472607613],[121,-21,73,-0.5540387257933617],[121,-21,74,-0.554715171456337],[121,-21,75,-0.5541062392294407],[121,-21,76,-0.5521560907363892],[121,-21,77,-0.5491077862679958],[121,-21,78,-0.5453321486711502],[121,-21,79,-0.5411497838795185],[121,-20,64,-0.5490449965000153],[121,-20,65,-0.548549011349678],[121,-20,66,-0.5468972250819206],[121,-20,67,-0.5450501218438148],[121,-20,68,-0.5441530272364616],[121,-20,69,-0.5448597259819508],[121,-20,70,-0.5468904227018356],[121,-20,71,-0.549387838691473],[121,-20,72,-0.5521185472607613],[121,-20,73,-0.5540387257933617],[121,-20,74,-0.554715171456337],[121,-20,75,-0.5541062392294407],[121,-20,76,-0.5521560907363892],[121,-20,77,-0.5491077862679958],[121,-20,78,-0.5453321486711502],[121,-20,79,-0.5411497838795185],[121,-19,64,-0.5490449965000153],[121,-19,65,-0.548549011349678],[121,-19,66,-0.5468972250819206],[121,-19,67,-0.5450501218438148],[121,-19,68,-0.5441530272364616],[121,-19,69,-0.5448597259819508],[121,-19,70,-0.5468904227018356],[121,-19,71,-0.549387838691473],[121,-19,72,-0.5521185472607613],[121,-19,73,-0.5540387257933617],[121,-19,74,-0.554715171456337],[121,-19,75,-0.5541062392294407],[121,-19,76,-0.5521560907363892],[121,-19,77,-0.5491077862679958],[121,-19,78,-0.5453321486711502],[121,-19,79,-0.5411497838795185],[121,-18,64,-0.5490449965000153],[121,-18,65,-0.548549011349678],[121,-18,66,-0.5468972250819206],[121,-18,67,-0.5450501218438148],[121,-18,68,-0.5441530272364616],[121,-18,69,-0.5448597259819508],[121,-18,70,-0.5468904227018356],[121,-18,71,-0.549387838691473],[121,-18,72,-0.5521185472607613],[121,-18,73,-0.5540387257933617],[121,-18,74,-0.554715171456337],[121,-18,75,-0.5541062392294407],[121,-18,76,-0.5521560907363892],[121,-18,77,-0.5491077862679958],[121,-18,78,-0.5453321486711502],[121,-18,79,-0.5411497838795185],[121,-17,64,-0.5490449965000153],[121,-17,65,-0.548549011349678],[121,-17,66,-0.5468972250819206],[121,-17,67,-0.5450501218438148],[121,-17,68,-0.5441530272364616],[121,-17,69,-0.5448597259819508],[121,-17,70,-0.5468904227018356],[121,-17,71,-0.549387838691473],[121,-17,72,-0.5521185472607613],[121,-17,73,-0.5540387257933617],[121,-17,74,-0.554715171456337],[121,-17,75,-0.5541062392294407],[121,-17,76,-0.5521560907363892],[121,-17,77,-0.5491077862679958],[121,-17,78,-0.5453321486711502],[121,-17,79,-0.5411497838795185],[121,-16,64,-0.5490449965000153],[121,-16,65,-0.548549011349678],[121,-16,66,-0.5468972250819206],[121,-16,67,-0.5450501218438148],[121,-16,68,-0.5441530272364616],[121,-16,69,-0.5448597259819508],[121,-16,70,-0.5468904227018356],[121,-16,71,-0.549387838691473],[121,-16,72,-0.5521185472607613],[121,-16,73,-0.5540387257933617],[121,-16,74,-0.554715171456337],[121,-16,75,-0.5541062392294407],[121,-16,76,-0.5521560907363892],[121,-16,77,-0.5491077862679958],[121,-16,78,-0.5453321486711502],[121,-16,79,-0.5411497838795185],[121,-15,64,-0.5490449965000153],[121,-15,65,-0.548549011349678],[121,-15,66,-0.5468972250819206],[121,-15,67,-0.5450501218438148],[121,-15,68,-0.5441530272364616],[121,-15,69,-0.5448597259819508],[121,-15,70,-0.5468904227018356],[121,-15,71,-0.549387838691473],[121,-15,72,-0.5521185472607613],[121,-15,73,-0.5540387257933617],[121,-15,74,-0.554715171456337],[121,-15,75,-0.5541062392294407],[121,-15,76,-0.5521560907363892],[121,-15,77,-0.5491077862679958],[121,-15,78,-0.5453321486711502],[121,-15,79,-0.5411497838795185],[121,-14,64,-0.5490449965000153],[121,-14,65,-0.548549011349678],[121,-14,66,-0.5468972250819206],[121,-14,67,-0.5450501218438148],[121,-14,68,-0.5441530272364616],[121,-14,69,-0.5448597259819508],[121,-14,70,-0.5468904227018356],[121,-14,71,-0.549387838691473],[121,-14,72,-0.5521185472607613],[121,-14,73,-0.5540387257933617],[121,-14,74,-0.554715171456337],[121,-14,75,-0.5541062392294407],[121,-14,76,-0.5521560907363892],[121,-14,77,-0.5491077862679958],[121,-14,78,-0.5453321486711502],[121,-14,79,-0.5411497838795185],[121,-13,64,-0.5490449965000153],[121,-13,65,-0.548549011349678],[121,-13,66,-0.5468972250819206],[121,-13,67,-0.5450501218438148],[121,-13,68,-0.5441530272364616],[121,-13,69,-0.5448597259819508],[121,-13,70,-0.5468904227018356],[121,-13,71,-0.549387838691473],[121,-13,72,-0.5521185472607613],[121,-13,73,-0.5540387257933617],[121,-13,74,-0.554715171456337],[121,-13,75,-0.5541062392294407],[121,-13,76,-0.5521560907363892],[121,-13,77,-0.5491077862679958],[121,-13,78,-0.5453321486711502],[121,-13,79,-0.5411497838795185],[121,-12,64,-0.5490449965000153],[121,-12,65,-0.548549011349678],[121,-12,66,-0.5468972250819206],[121,-12,67,-0.5450501218438148],[121,-12,68,-0.5441530272364616],[121,-12,69,-0.5448597259819508],[121,-12,70,-0.5468904227018356],[121,-12,71,-0.549387838691473],[121,-12,72,-0.5521185472607613],[121,-12,73,-0.5540387257933617],[121,-12,74,-0.554715171456337],[121,-12,75,-0.5541062392294407],[121,-12,76,-0.5521560907363892],[121,-12,77,-0.5491077862679958],[121,-12,78,-0.5453321486711502],[121,-12,79,-0.5411497838795185],[121,-11,64,-0.5490449965000153],[121,-11,65,-0.548549011349678],[121,-11,66,-0.5468972250819206],[121,-11,67,-0.5450501218438148],[121,-11,68,-0.5441530272364616],[121,-11,69,-0.5448597259819508],[121,-11,70,-0.5468904227018356],[121,-11,71,-0.549387838691473],[121,-11,72,-0.5521185472607613],[121,-11,73,-0.5540387257933617],[121,-11,74,-0.554715171456337],[121,-11,75,-0.5541062392294407],[121,-11,76,-0.5521560907363892],[121,-11,77,-0.5491077862679958],[121,-11,78,-0.5453321486711502],[121,-11,79,-0.5411497838795185],[121,-10,64,-0.5490449965000153],[121,-10,65,-0.548549011349678],[121,-10,66,-0.5468972250819206],[121,-10,67,-0.5450501218438148],[121,-10,68,-0.5441530272364616],[121,-10,69,-0.5448597259819508],[121,-10,70,-0.5468904227018356],[121,-10,71,-0.549387838691473],[121,-10,72,-0.5521185472607613],[121,-10,73,-0.5540387257933617],[121,-10,74,-0.554715171456337],[121,-10,75,-0.5541062392294407],[121,-10,76,-0.5521560907363892],[121,-10,77,-0.5491077862679958],[121,-10,78,-0.5453321486711502],[121,-10,79,-0.5411497838795185],[121,-9,64,-0.5490449965000153],[121,-9,65,-0.548549011349678],[121,-9,66,-0.5468972250819206],[121,-9,67,-0.5450501218438148],[121,-9,68,-0.5441530272364616],[121,-9,69,-0.5448597259819508],[121,-9,70,-0.5468904227018356],[121,-9,71,-0.549387838691473],[121,-9,72,-0.5521185472607613],[121,-9,73,-0.5540387257933617],[121,-9,74,-0.554715171456337],[121,-9,75,-0.5541062392294407],[121,-9,76,-0.5521560907363892],[121,-9,77,-0.5491077862679958],[121,-9,78,-0.5453321486711502],[121,-9,79,-0.5411497838795185],[121,-8,64,-0.5490449965000153],[121,-8,65,-0.548549011349678],[121,-8,66,-0.5468972250819206],[121,-8,67,-0.5450501218438148],[121,-8,68,-0.5441530272364616],[121,-8,69,-0.5448597259819508],[121,-8,70,-0.5468904227018356],[121,-8,71,-0.549387838691473],[121,-8,72,-0.5521185472607613],[121,-8,73,-0.5540387257933617],[121,-8,74,-0.554715171456337],[121,-8,75,-0.5541062392294407],[121,-8,76,-0.5521560907363892],[121,-8,77,-0.5491077862679958],[121,-8,78,-0.5453321486711502],[121,-8,79,-0.5411497838795185],[121,-7,64,-0.5490449965000153],[121,-7,65,-0.548549011349678],[121,-7,66,-0.5468972250819206],[121,-7,67,-0.5450501218438148],[121,-7,68,-0.5441530272364616],[121,-7,69,-0.5448597259819508],[121,-7,70,-0.5468904227018356],[121,-7,71,-0.549387838691473],[121,-7,72,-0.5521185472607613],[121,-7,73,-0.5540387257933617],[121,-7,74,-0.554715171456337],[121,-7,75,-0.5541062392294407],[121,-7,76,-0.5521560907363892],[121,-7,77,-0.5491077862679958],[121,-7,78,-0.5453321486711502],[121,-7,79,-0.5411497838795185],[121,-6,64,-0.5490449965000153],[121,-6,65,-0.548549011349678],[121,-6,66,-0.5468972250819206],[121,-6,67,-0.5450501218438148],[121,-6,68,-0.5441530272364616],[121,-6,69,-0.5448597259819508],[121,-6,70,-0.5468904227018356],[121,-6,71,-0.549387838691473],[121,-6,72,-0.5521185472607613],[121,-6,73,-0.5540387257933617],[121,-6,74,-0.554715171456337],[121,-6,75,-0.5541062392294407],[121,-6,76,-0.5521560907363892],[121,-6,77,-0.5491077862679958],[121,-6,78,-0.5453321486711502],[121,-6,79,-0.5411497838795185],[121,-5,64,-0.5490449965000153],[121,-5,65,-0.548549011349678],[121,-5,66,-0.5468972250819206],[121,-5,67,-0.5450501218438148],[121,-5,68,-0.5441530272364616],[121,-5,69,-0.5448597259819508],[121,-5,70,-0.5468904227018356],[121,-5,71,-0.549387838691473],[121,-5,72,-0.5521185472607613],[121,-5,73,-0.5540387257933617],[121,-5,74,-0.554715171456337],[121,-5,75,-0.5541062392294407],[121,-5,76,-0.5521560907363892],[121,-5,77,-0.5491077862679958],[121,-5,78,-0.5453321486711502],[121,-5,79,-0.5411497838795185],[121,-4,64,-0.5490449965000153],[121,-4,65,-0.548549011349678],[121,-4,66,-0.5468972250819206],[121,-4,67,-0.5450501218438148],[121,-4,68,-0.5441530272364616],[121,-4,69,-0.5448597259819508],[121,-4,70,-0.5468904227018356],[121,-4,71,-0.549387838691473],[121,-4,72,-0.5521185472607613],[121,-4,73,-0.5540387257933617],[121,-4,74,-0.554715171456337],[121,-4,75,-0.5541062392294407],[121,-4,76,-0.5521560907363892],[121,-4,77,-0.5491077862679958],[121,-4,78,-0.5453321486711502],[121,-4,79,-0.5411497838795185],[121,-3,64,-0.5490449965000153],[121,-3,65,-0.548549011349678],[121,-3,66,-0.5468972250819206],[121,-3,67,-0.5450501218438148],[121,-3,68,-0.5441530272364616],[121,-3,69,-0.5448597259819508],[121,-3,70,-0.5468904227018356],[121,-3,71,-0.549387838691473],[121,-3,72,-0.5521185472607613],[121,-3,73,-0.5540387257933617],[121,-3,74,-0.554715171456337],[121,-3,75,-0.5541062392294407],[121,-3,76,-0.5521560907363892],[121,-3,77,-0.5491077862679958],[121,-3,78,-0.5453321486711502],[121,-3,79,-0.5411497838795185],[121,-2,64,-0.5490449965000153],[121,-2,65,-0.548549011349678],[121,-2,66,-0.5468972250819206],[121,-2,67,-0.5450501218438148],[121,-2,68,-0.5441530272364616],[121,-2,69,-0.5448597259819508],[121,-2,70,-0.5468904227018356],[121,-2,71,-0.549387838691473],[121,-2,72,-0.5521185472607613],[121,-2,73,-0.5540387257933617],[121,-2,74,-0.554715171456337],[121,-2,75,-0.5541062392294407],[121,-2,76,-0.5521560907363892],[121,-2,77,-0.5491077862679958],[121,-2,78,-0.5453321486711502],[121,-2,79,-0.5411497838795185],[121,-1,64,-0.5490449965000153],[121,-1,65,-0.548549011349678],[121,-1,66,-0.5468972250819206],[121,-1,67,-0.5450501218438148],[121,-1,68,-0.5441530272364616],[121,-1,69,-0.5448597259819508],[121,-1,70,-0.5468904227018356],[121,-1,71,-0.549387838691473],[121,-1,72,-0.5521185472607613],[121,-1,73,-0.5540387257933617],[121,-1,74,-0.554715171456337],[121,-1,75,-0.5541062392294407],[121,-1,76,-0.5521560907363892],[121,-1,77,-0.5491077862679958],[121,-1,78,-0.5453321486711502],[121,-1,79,-0.5411497838795185],[121,0,64,-0.5490449965000153],[121,0,65,-0.548549011349678],[121,0,66,-0.5468972250819206],[121,0,67,-0.5450501218438148],[121,0,68,-0.5441530272364616],[121,0,69,-0.5448597259819508],[121,0,70,-0.5468904227018356],[121,0,71,-0.549387838691473],[121,0,72,-0.5521185472607613],[121,0,73,-0.5540387257933617],[121,0,74,-0.554715171456337],[121,0,75,-0.5541062392294407],[121,0,76,-0.5521560907363892],[121,0,77,-0.5491077862679958],[121,0,78,-0.5453321486711502],[121,0,79,-0.5411497838795185],[121,1,64,-0.5490449965000153],[121,1,65,-0.548549011349678],[121,1,66,-0.5468972250819206],[121,1,67,-0.5450501218438148],[121,1,68,-0.5441530272364616],[121,1,69,-0.5448597259819508],[121,1,70,-0.5468904227018356],[121,1,71,-0.549387838691473],[121,1,72,-0.5521185472607613],[121,1,73,-0.5540387257933617],[121,1,74,-0.554715171456337],[121,1,75,-0.5541062392294407],[121,1,76,-0.5521560907363892],[121,1,77,-0.5491077862679958],[121,1,78,-0.5453321486711502],[121,1,79,-0.5411497838795185],[121,2,64,-0.5490449965000153],[121,2,65,-0.548549011349678],[121,2,66,-0.5468972250819206],[121,2,67,-0.5450501218438148],[121,2,68,-0.5441530272364616],[121,2,69,-0.5448597259819508],[121,2,70,-0.5468904227018356],[121,2,71,-0.549387838691473],[121,2,72,-0.5521185472607613],[121,2,73,-0.5540387257933617],[121,2,74,-0.554715171456337],[121,2,75,-0.5541062392294407],[121,2,76,-0.5521560907363892],[121,2,77,-0.5491077862679958],[121,2,78,-0.5453321486711502],[121,2,79,-0.5411497838795185],[121,3,64,-0.5490449965000153],[121,3,65,-0.548549011349678],[121,3,66,-0.5468972250819206],[121,3,67,-0.5450501218438148],[121,3,68,-0.5441530272364616],[121,3,69,-0.5448597259819508],[121,3,70,-0.5468904227018356],[121,3,71,-0.549387838691473],[121,3,72,-0.5521185472607613],[121,3,73,-0.5540387257933617],[121,3,74,-0.554715171456337],[121,3,75,-0.5541062392294407],[121,3,76,-0.5521560907363892],[121,3,77,-0.5491077862679958],[121,3,78,-0.5453321486711502],[121,3,79,-0.5411497838795185],[121,4,64,-0.5490449965000153],[121,4,65,-0.548549011349678],[121,4,66,-0.5468972250819206],[121,4,67,-0.5450501218438148],[121,4,68,-0.5441530272364616],[121,4,69,-0.5448597259819508],[121,4,70,-0.5468904227018356],[121,4,71,-0.549387838691473],[121,4,72,-0.5521185472607613],[121,4,73,-0.5540387257933617],[121,4,74,-0.554715171456337],[121,4,75,-0.5541062392294407],[121,4,76,-0.5521560907363892],[121,4,77,-0.5491077862679958],[121,4,78,-0.5453321486711502],[121,4,79,-0.5411497838795185],[121,5,64,-0.5490449965000153],[121,5,65,-0.548549011349678],[121,5,66,-0.5468972250819206],[121,5,67,-0.5450501218438148],[121,5,68,-0.5441530272364616],[121,5,69,-0.5448597259819508],[121,5,70,-0.5468904227018356],[121,5,71,-0.549387838691473],[121,5,72,-0.5521185472607613],[121,5,73,-0.5540387257933617],[121,5,74,-0.554715171456337],[121,5,75,-0.5541062392294407],[121,5,76,-0.5521560907363892],[121,5,77,-0.5491077862679958],[121,5,78,-0.5453321486711502],[121,5,79,-0.5411497838795185],[121,6,64,-0.5490449965000153],[121,6,65,-0.548549011349678],[121,6,66,-0.5468972250819206],[121,6,67,-0.5450501218438148],[121,6,68,-0.5441530272364616],[121,6,69,-0.5448597259819508],[121,6,70,-0.5468904227018356],[121,6,71,-0.549387838691473],[121,6,72,-0.5521185472607613],[121,6,73,-0.5540387257933617],[121,6,74,-0.554715171456337],[121,6,75,-0.5541062392294407],[121,6,76,-0.5521560907363892],[121,6,77,-0.5491077862679958],[121,6,78,-0.5453321486711502],[121,6,79,-0.5411497838795185],[121,7,64,-0.5490449965000153],[121,7,65,-0.548549011349678],[121,7,66,-0.5468972250819206],[121,7,67,-0.5450501218438148],[121,7,68,-0.5441530272364616],[121,7,69,-0.5448597259819508],[121,7,70,-0.5468904227018356],[121,7,71,-0.549387838691473],[121,7,72,-0.5521185472607613],[121,7,73,-0.5540387257933617],[121,7,74,-0.554715171456337],[121,7,75,-0.5541062392294407],[121,7,76,-0.5521560907363892],[121,7,77,-0.5491077862679958],[121,7,78,-0.5453321486711502],[121,7,79,-0.5411497838795185],[121,8,64,-0.5490449965000153],[121,8,65,-0.548549011349678],[121,8,66,-0.5468972250819206],[121,8,67,-0.5450501218438148],[121,8,68,-0.5441530272364616],[121,8,69,-0.5448597259819508],[121,8,70,-0.5468904227018356],[121,8,71,-0.549387838691473],[121,8,72,-0.5521185472607613],[121,8,73,-0.5540387257933617],[121,8,74,-0.554715171456337],[121,8,75,-0.5541062392294407],[121,8,76,-0.5521560907363892],[121,8,77,-0.5491077862679958],[121,8,78,-0.5453321486711502],[121,8,79,-0.5411497838795185],[121,9,64,-0.5490449965000153],[121,9,65,-0.548549011349678],[121,9,66,-0.5468972250819206],[121,9,67,-0.5450501218438148],[121,9,68,-0.5441530272364616],[121,9,69,-0.5448597259819508],[121,9,70,-0.5468904227018356],[121,9,71,-0.549387838691473],[121,9,72,-0.5521185472607613],[121,9,73,-0.5540387257933617],[121,9,74,-0.554715171456337],[121,9,75,-0.5541062392294407],[121,9,76,-0.5521560907363892],[121,9,77,-0.5491077862679958],[121,9,78,-0.5453321486711502],[121,9,79,-0.5411497838795185],[121,10,64,-0.5490449965000153],[121,10,65,-0.548549011349678],[121,10,66,-0.5468972250819206],[121,10,67,-0.5450501218438148],[121,10,68,-0.5441530272364616],[121,10,69,-0.5448597259819508],[121,10,70,-0.5468904227018356],[121,10,71,-0.549387838691473],[121,10,72,-0.5521185472607613],[121,10,73,-0.5540387257933617],[121,10,74,-0.554715171456337],[121,10,75,-0.5541062392294407],[121,10,76,-0.5521560907363892],[121,10,77,-0.5491077862679958],[121,10,78,-0.5453321486711502],[121,10,79,-0.5411497838795185],[121,11,64,-0.5490449965000153],[121,11,65,-0.548549011349678],[121,11,66,-0.5468972250819206],[121,11,67,-0.5450501218438148],[121,11,68,-0.5441530272364616],[121,11,69,-0.5448597259819508],[121,11,70,-0.5468904227018356],[121,11,71,-0.549387838691473],[121,11,72,-0.5521185472607613],[121,11,73,-0.5540387257933617],[121,11,74,-0.554715171456337],[121,11,75,-0.5541062392294407],[121,11,76,-0.5521560907363892],[121,11,77,-0.5491077862679958],[121,11,78,-0.5453321486711502],[121,11,79,-0.5411497838795185],[121,12,64,-0.5490449965000153],[121,12,65,-0.548549011349678],[121,12,66,-0.5468972250819206],[121,12,67,-0.5450501218438148],[121,12,68,-0.5441530272364616],[121,12,69,-0.5448597259819508],[121,12,70,-0.5468904227018356],[121,12,71,-0.549387838691473],[121,12,72,-0.5521185472607613],[121,12,73,-0.5540387257933617],[121,12,74,-0.554715171456337],[121,12,75,-0.5541062392294407],[121,12,76,-0.5521560907363892],[121,12,77,-0.5491077862679958],[121,12,78,-0.5453321486711502],[121,12,79,-0.5411497838795185],[121,13,64,-0.5490449965000153],[121,13,65,-0.548549011349678],[121,13,66,-0.5468972250819206],[121,13,67,-0.5450501218438148],[121,13,68,-0.5441530272364616],[121,13,69,-0.5448597259819508],[121,13,70,-0.5468904227018356],[121,13,71,-0.549387838691473],[121,13,72,-0.5521185472607613],[121,13,73,-0.5540387257933617],[121,13,74,-0.554715171456337],[121,13,75,-0.5541062392294407],[121,13,76,-0.5521560907363892],[121,13,77,-0.5491077862679958],[121,13,78,-0.5453321486711502],[121,13,79,-0.5411497838795185],[121,14,64,-0.5490449965000153],[121,14,65,-0.548549011349678],[121,14,66,-0.5468972250819206],[121,14,67,-0.5450501218438148],[121,14,68,-0.5441530272364616],[121,14,69,-0.5448597259819508],[121,14,70,-0.5468904227018356],[121,14,71,-0.549387838691473],[121,14,72,-0.5521185472607613],[121,14,73,-0.5540387257933617],[121,14,74,-0.554715171456337],[121,14,75,-0.5541062392294407],[121,14,76,-0.5521560907363892],[121,14,77,-0.5491077862679958],[121,14,78,-0.5453321486711502],[121,14,79,-0.5411497838795185],[121,15,64,-0.5490449965000153],[121,15,65,-0.548549011349678],[121,15,66,-0.5468972250819206],[121,15,67,-0.5450501218438148],[121,15,68,-0.5441530272364616],[121,15,69,-0.5448597259819508],[121,15,70,-0.5468904227018356],[121,15,71,-0.549387838691473],[121,15,72,-0.5521185472607613],[121,15,73,-0.5540387257933617],[121,15,74,-0.554715171456337],[121,15,75,-0.5541062392294407],[121,15,76,-0.5521560907363892],[121,15,77,-0.5491077862679958],[121,15,78,-0.5453321486711502],[121,15,79,-0.5411497838795185],[121,16,64,-0.5490449965000153],[121,16,65,-0.548549011349678],[121,16,66,-0.5468972250819206],[121,16,67,-0.5450501218438148],[121,16,68,-0.5441530272364616],[121,16,69,-0.5448597259819508],[121,16,70,-0.5468904227018356],[121,16,71,-0.549387838691473],[121,16,72,-0.5521185472607613],[121,16,73,-0.5540387257933617],[121,16,74,-0.554715171456337],[121,16,75,-0.5541062392294407],[121,16,76,-0.5521560907363892],[121,16,77,-0.5491077862679958],[121,16,78,-0.5453321486711502],[121,16,79,-0.5411497838795185],[121,17,64,-0.5490449965000153],[121,17,65,-0.548549011349678],[121,17,66,-0.5468972250819206],[121,17,67,-0.5450501218438148],[121,17,68,-0.5441530272364616],[121,17,69,-0.5448597259819508],[121,17,70,-0.5468904227018356],[121,17,71,-0.549387838691473],[121,17,72,-0.5521185472607613],[121,17,73,-0.5540387257933617],[121,17,74,-0.554715171456337],[121,17,75,-0.5541062392294407],[121,17,76,-0.5521560907363892],[121,17,77,-0.5491077862679958],[121,17,78,-0.5453321486711502],[121,17,79,-0.5411497838795185],[121,18,64,-0.5490449965000153],[121,18,65,-0.548549011349678],[121,18,66,-0.5468972250819206],[121,18,67,-0.5450501218438148],[121,18,68,-0.5441530272364616],[121,18,69,-0.5448597259819508],[121,18,70,-0.5468904227018356],[121,18,71,-0.549387838691473],[121,18,72,-0.5521185472607613],[121,18,73,-0.5540387257933617],[121,18,74,-0.554715171456337],[121,18,75,-0.5541062392294407],[121,18,76,-0.5521560907363892],[121,18,77,-0.5491077862679958],[121,18,78,-0.5453321486711502],[121,18,79,-0.5411497838795185],[121,19,64,-0.5490449965000153],[121,19,65,-0.548549011349678],[121,19,66,-0.5468972250819206],[121,19,67,-0.5450501218438148],[121,19,68,-0.5441530272364616],[121,19,69,-0.5448597259819508],[121,19,70,-0.5468904227018356],[121,19,71,-0.549387838691473],[121,19,72,-0.5521185472607613],[121,19,73,-0.5540387257933617],[121,19,74,-0.554715171456337],[121,19,75,-0.5541062392294407],[121,19,76,-0.5521560907363892],[121,19,77,-0.5491077862679958],[121,19,78,-0.5453321486711502],[121,19,79,-0.5411497838795185],[121,20,64,-0.5490449965000153],[121,20,65,-0.548549011349678],[121,20,66,-0.5468972250819206],[121,20,67,-0.5450501218438148],[121,20,68,-0.5441530272364616],[121,20,69,-0.5448597259819508],[121,20,70,-0.5468904227018356],[121,20,71,-0.549387838691473],[121,20,72,-0.5521185472607613],[121,20,73,-0.5540387257933617],[121,20,74,-0.554715171456337],[121,20,75,-0.5541062392294407],[121,20,76,-0.5521560907363892],[121,20,77,-0.5491077862679958],[121,20,78,-0.5453321486711502],[121,20,79,-0.5411497838795185],[121,21,64,-0.5490449965000153],[121,21,65,-0.548549011349678],[121,21,66,-0.5468972250819206],[121,21,67,-0.5450501218438148],[121,21,68,-0.5441530272364616],[121,21,69,-0.5448597259819508],[121,21,70,-0.5468904227018356],[121,21,71,-0.549387838691473],[121,21,72,-0.5521185472607613],[121,21,73,-0.5540387257933617],[121,21,74,-0.554715171456337],[121,21,75,-0.5541062392294407],[121,21,76,-0.5521560907363892],[121,21,77,-0.5491077862679958],[121,21,78,-0.5453321486711502],[121,21,79,-0.5411497838795185],[121,22,64,-0.5490449965000153],[121,22,65,-0.548549011349678],[121,22,66,-0.5468972250819206],[121,22,67,-0.5450501218438148],[121,22,68,-0.5441530272364616],[121,22,69,-0.5448597259819508],[121,22,70,-0.5468904227018356],[121,22,71,-0.549387838691473],[121,22,72,-0.5521185472607613],[121,22,73,-0.5540387257933617],[121,22,74,-0.554715171456337],[121,22,75,-0.5541062392294407],[121,22,76,-0.5521560907363892],[121,22,77,-0.5491077862679958],[121,22,78,-0.5453321486711502],[121,22,79,-0.5411497838795185],[121,23,64,-0.5490449965000153],[121,23,65,-0.548549011349678],[121,23,66,-0.5468972250819206],[121,23,67,-0.5450501218438148],[121,23,68,-0.5441530272364616],[121,23,69,-0.5448597259819508],[121,23,70,-0.5468904227018356],[121,23,71,-0.549387838691473],[121,23,72,-0.5521185472607613],[121,23,73,-0.5540387257933617],[121,23,74,-0.554715171456337],[121,23,75,-0.5541062392294407],[121,23,76,-0.5521560907363892],[121,23,77,-0.5491077862679958],[121,23,78,-0.5453321486711502],[121,23,79,-0.5411497838795185],[121,24,64,-0.5490449965000153],[121,24,65,-0.548549011349678],[121,24,66,-0.5468972250819206],[121,24,67,-0.5450501218438148],[121,24,68,-0.5441530272364616],[121,24,69,-0.5448597259819508],[121,24,70,-0.5468904227018356],[121,24,71,-0.549387838691473],[121,24,72,-0.5521185472607613],[121,24,73,-0.5540387257933617],[121,24,74,-0.554715171456337],[121,24,75,-0.5541062392294407],[121,24,76,-0.5521560907363892],[121,24,77,-0.5491077862679958],[121,24,78,-0.5453321486711502],[121,24,79,-0.5411497838795185],[121,25,64,-0.5490449965000153],[121,25,65,-0.548549011349678],[121,25,66,-0.5468972250819206],[121,25,67,-0.5450501218438148],[121,25,68,-0.5441530272364616],[121,25,69,-0.5448597259819508],[121,25,70,-0.5468904227018356],[121,25,71,-0.549387838691473],[121,25,72,-0.5521185472607613],[121,25,73,-0.5540387257933617],[121,25,74,-0.554715171456337],[121,25,75,-0.5541062392294407],[121,25,76,-0.5521560907363892],[121,25,77,-0.5491077862679958],[121,25,78,-0.5453321486711502],[121,25,79,-0.5411497838795185],[121,26,64,-0.5490449965000153],[121,26,65,-0.548549011349678],[121,26,66,-0.5468972250819206],[121,26,67,-0.5450501218438148],[121,26,68,-0.5441530272364616],[121,26,69,-0.5448597259819508],[121,26,70,-0.5468904227018356],[121,26,71,-0.549387838691473],[121,26,72,-0.5521185472607613],[121,26,73,-0.5540387257933617],[121,26,74,-0.554715171456337],[121,26,75,-0.5541062392294407],[121,26,76,-0.5521560907363892],[121,26,77,-0.5491077862679958],[121,26,78,-0.5453321486711502],[121,26,79,-0.5411497838795185],[121,27,64,-0.5490449965000153],[121,27,65,-0.548549011349678],[121,27,66,-0.5468972250819206],[121,27,67,-0.5450501218438148],[121,27,68,-0.5441530272364616],[121,27,69,-0.5448597259819508],[121,27,70,-0.5468904227018356],[121,27,71,-0.549387838691473],[121,27,72,-0.5521185472607613],[121,27,73,-0.5540387257933617],[121,27,74,-0.554715171456337],[121,27,75,-0.5541062392294407],[121,27,76,-0.5521560907363892],[121,27,77,-0.5491077862679958],[121,27,78,-0.5453321486711502],[121,27,79,-0.5411497838795185],[121,28,64,-0.5490449965000153],[121,28,65,-0.548549011349678],[121,28,66,-0.5468972250819206],[121,28,67,-0.5450501218438148],[121,28,68,-0.5441530272364616],[121,28,69,-0.5448597259819508],[121,28,70,-0.5468904227018356],[121,28,71,-0.549387838691473],[121,28,72,-0.5521185472607613],[121,28,73,-0.5540387257933617],[121,28,74,-0.554715171456337],[121,28,75,-0.5541062392294407],[121,28,76,-0.5521560907363892],[121,28,77,-0.5491077862679958],[121,28,78,-0.5453321486711502],[121,28,79,-0.5411497838795185],[121,29,64,-0.5490449965000153],[121,29,65,-0.548549011349678],[121,29,66,-0.5468972250819206],[121,29,67,-0.5450501218438148],[121,29,68,-0.5441530272364616],[121,29,69,-0.5448597259819508],[121,29,70,-0.5468904227018356],[121,29,71,-0.549387838691473],[121,29,72,-0.5521185472607613],[121,29,73,-0.5540387257933617],[121,29,74,-0.554715171456337],[121,29,75,-0.5541062392294407],[121,29,76,-0.5521560907363892],[121,29,77,-0.5491077862679958],[121,29,78,-0.5453321486711502],[121,29,79,-0.5411497838795185],[121,30,64,-0.5490449965000153],[121,30,65,-0.548549011349678],[121,30,66,-0.5468972250819206],[121,30,67,-0.5450501218438148],[121,30,68,-0.5441530272364616],[121,30,69,-0.5448597259819508],[121,30,70,-0.5468904227018356],[121,30,71,-0.549387838691473],[121,30,72,-0.5521185472607613],[121,30,73,-0.5540387257933617],[121,30,74,-0.554715171456337],[121,30,75,-0.5541062392294407],[121,30,76,-0.5521560907363892],[121,30,77,-0.5491077862679958],[121,30,78,-0.5453321486711502],[121,30,79,-0.5411497838795185],[121,31,64,-0.5490449965000153],[121,31,65,-0.548549011349678],[121,31,66,-0.5468972250819206],[121,31,67,-0.5450501218438148],[121,31,68,-0.5441530272364616],[121,31,69,-0.5448597259819508],[121,31,70,-0.5468904227018356],[121,31,71,-0.549387838691473],[121,31,72,-0.5521185472607613],[121,31,73,-0.5540387257933617],[121,31,74,-0.554715171456337],[121,31,75,-0.5541062392294407],[121,31,76,-0.5521560907363892],[121,31,77,-0.5491077862679958],[121,31,78,-0.5453321486711502],[121,31,79,-0.5411497838795185],[121,32,64,-0.5490449965000153],[121,32,65,-0.548549011349678],[121,32,66,-0.5468972250819206],[121,32,67,-0.5450501218438148],[121,32,68,-0.5441530272364616],[121,32,69,-0.5448597259819508],[121,32,70,-0.5468904227018356],[121,32,71,-0.549387838691473],[121,32,72,-0.5521185472607613],[121,32,73,-0.5540387257933617],[121,32,74,-0.554715171456337],[121,32,75,-0.5541062392294407],[121,32,76,-0.5521560907363892],[121,32,77,-0.5491077862679958],[121,32,78,-0.5453321486711502],[121,32,79,-0.5411497838795185],[121,33,64,-0.5490449965000153],[121,33,65,-0.548549011349678],[121,33,66,-0.5468972250819206],[121,33,67,-0.5450501218438148],[121,33,68,-0.5441530272364616],[121,33,69,-0.5448597259819508],[121,33,70,-0.5468904227018356],[121,33,71,-0.549387838691473],[121,33,72,-0.5521185472607613],[121,33,73,-0.5540387257933617],[121,33,74,-0.554715171456337],[121,33,75,-0.5541062392294407],[121,33,76,-0.5521560907363892],[121,33,77,-0.5491077862679958],[121,33,78,-0.5453321486711502],[121,33,79,-0.5411497838795185],[121,34,64,-0.5490449965000153],[121,34,65,-0.548549011349678],[121,34,66,-0.5468972250819206],[121,34,67,-0.5450501218438148],[121,34,68,-0.5441530272364616],[121,34,69,-0.5448597259819508],[121,34,70,-0.5468904227018356],[121,34,71,-0.549387838691473],[121,34,72,-0.5521185472607613],[121,34,73,-0.5540387257933617],[121,34,74,-0.554715171456337],[121,34,75,-0.5541062392294407],[121,34,76,-0.5521560907363892],[121,34,77,-0.5491077862679958],[121,34,78,-0.5453321486711502],[121,34,79,-0.5411497838795185],[121,35,64,-0.5490449965000153],[121,35,65,-0.548549011349678],[121,35,66,-0.5468972250819206],[121,35,67,-0.5450501218438148],[121,35,68,-0.5441530272364616],[121,35,69,-0.5448597259819508],[121,35,70,-0.5468904227018356],[121,35,71,-0.549387838691473],[121,35,72,-0.5521185472607613],[121,35,73,-0.5540387257933617],[121,35,74,-0.554715171456337],[121,35,75,-0.5541062392294407],[121,35,76,-0.5521560907363892],[121,35,77,-0.5491077862679958],[121,35,78,-0.5453321486711502],[121,35,79,-0.5411497838795185],[121,36,64,-0.5490449965000153],[121,36,65,-0.548549011349678],[121,36,66,-0.5468972250819206],[121,36,67,-0.5450501218438148],[121,36,68,-0.5441530272364616],[121,36,69,-0.5448597259819508],[121,36,70,-0.5468904227018356],[121,36,71,-0.549387838691473],[121,36,72,-0.5521185472607613],[121,36,73,-0.5540387257933617],[121,36,74,-0.554715171456337],[121,36,75,-0.5541062392294407],[121,36,76,-0.5521560907363892],[121,36,77,-0.5491077862679958],[121,36,78,-0.5453321486711502],[121,36,79,-0.5411497838795185],[121,37,64,-0.5490449965000153],[121,37,65,-0.548549011349678],[121,37,66,-0.5468972250819206],[121,37,67,-0.5450501218438148],[121,37,68,-0.5441530272364616],[121,37,69,-0.5448597259819508],[121,37,70,-0.5468904227018356],[121,37,71,-0.549387838691473],[121,37,72,-0.5521185472607613],[121,37,73,-0.5540387257933617],[121,37,74,-0.554715171456337],[121,37,75,-0.5541062392294407],[121,37,76,-0.5521560907363892],[121,37,77,-0.5491077862679958],[121,37,78,-0.5453321486711502],[121,37,79,-0.5411497838795185],[121,38,64,-0.5490449965000153],[121,38,65,-0.548549011349678],[121,38,66,-0.5468972250819206],[121,38,67,-0.5450501218438148],[121,38,68,-0.5441530272364616],[121,38,69,-0.5448597259819508],[121,38,70,-0.5468904227018356],[121,38,71,-0.549387838691473],[121,38,72,-0.5521185472607613],[121,38,73,-0.5540387257933617],[121,38,74,-0.554715171456337],[121,38,75,-0.5541062392294407],[121,38,76,-0.5521560907363892],[121,38,77,-0.5491077862679958],[121,38,78,-0.5453321486711502],[121,38,79,-0.5411497838795185],[121,39,64,-0.5490449965000153],[121,39,65,-0.548549011349678],[121,39,66,-0.5468972250819206],[121,39,67,-0.5450501218438148],[121,39,68,-0.5441530272364616],[121,39,69,-0.5448597259819508],[121,39,70,-0.5468904227018356],[121,39,71,-0.549387838691473],[121,39,72,-0.5521185472607613],[121,39,73,-0.5540387257933617],[121,39,74,-0.554715171456337],[121,39,75,-0.5541062392294407],[121,39,76,-0.5521560907363892],[121,39,77,-0.5491077862679958],[121,39,78,-0.5453321486711502],[121,39,79,-0.5411497838795185],[121,40,64,-0.5490449965000153],[121,40,65,-0.548549011349678],[121,40,66,-0.5468972250819206],[121,40,67,-0.5450501218438148],[121,40,68,-0.5441530272364616],[121,40,69,-0.5448597259819508],[121,40,70,-0.5468904227018356],[121,40,71,-0.549387838691473],[121,40,72,-0.5521185472607613],[121,40,73,-0.5540387257933617],[121,40,74,-0.554715171456337],[121,40,75,-0.5541062392294407],[121,40,76,-0.5521560907363892],[121,40,77,-0.5491077862679958],[121,40,78,-0.5453321486711502],[121,40,79,-0.5411497838795185],[121,41,64,-0.5490449965000153],[121,41,65,-0.548549011349678],[121,41,66,-0.5468972250819206],[121,41,67,-0.5450501218438148],[121,41,68,-0.5441530272364616],[121,41,69,-0.5448597259819508],[121,41,70,-0.5468904227018356],[121,41,71,-0.549387838691473],[121,41,72,-0.5521185472607613],[121,41,73,-0.5540387257933617],[121,41,74,-0.554715171456337],[121,41,75,-0.5541062392294407],[121,41,76,-0.5521560907363892],[121,41,77,-0.5491077862679958],[121,41,78,-0.5453321486711502],[121,41,79,-0.5411497838795185],[121,42,64,-0.5490449965000153],[121,42,65,-0.548549011349678],[121,42,66,-0.5468972250819206],[121,42,67,-0.5450501218438148],[121,42,68,-0.5441530272364616],[121,42,69,-0.5448597259819508],[121,42,70,-0.5468904227018356],[121,42,71,-0.549387838691473],[121,42,72,-0.5521185472607613],[121,42,73,-0.5540387257933617],[121,42,74,-0.554715171456337],[121,42,75,-0.5541062392294407],[121,42,76,-0.5521560907363892],[121,42,77,-0.5491077862679958],[121,42,78,-0.5453321486711502],[121,42,79,-0.5411497838795185],[121,43,64,-0.5490449965000153],[121,43,65,-0.548549011349678],[121,43,66,-0.5468972250819206],[121,43,67,-0.5450501218438148],[121,43,68,-0.5441530272364616],[121,43,69,-0.5448597259819508],[121,43,70,-0.5468904227018356],[121,43,71,-0.549387838691473],[121,43,72,-0.5521185472607613],[121,43,73,-0.5540387257933617],[121,43,74,-0.554715171456337],[121,43,75,-0.5541062392294407],[121,43,76,-0.5521560907363892],[121,43,77,-0.5491077862679958],[121,43,78,-0.5453321486711502],[121,43,79,-0.5411497838795185],[121,44,64,-0.5490449965000153],[121,44,65,-0.548549011349678],[121,44,66,-0.5468972250819206],[121,44,67,-0.5450501218438148],[121,44,68,-0.5441530272364616],[121,44,69,-0.5448597259819508],[121,44,70,-0.5468904227018356],[121,44,71,-0.549387838691473],[121,44,72,-0.5521185472607613],[121,44,73,-0.5540387257933617],[121,44,74,-0.554715171456337],[121,44,75,-0.5541062392294407],[121,44,76,-0.5521560907363892],[121,44,77,-0.5491077862679958],[121,44,78,-0.5453321486711502],[121,44,79,-0.5411497838795185],[121,45,64,-0.5490449965000153],[121,45,65,-0.548549011349678],[121,45,66,-0.5468972250819206],[121,45,67,-0.5450501218438148],[121,45,68,-0.5441530272364616],[121,45,69,-0.5448597259819508],[121,45,70,-0.5468904227018356],[121,45,71,-0.549387838691473],[121,45,72,-0.5521185472607613],[121,45,73,-0.5540387257933617],[121,45,74,-0.554715171456337],[121,45,75,-0.5541062392294407],[121,45,76,-0.5521560907363892],[121,45,77,-0.5491077862679958],[121,45,78,-0.5453321486711502],[121,45,79,-0.5411497838795185],[121,46,64,-0.5490449965000153],[121,46,65,-0.548549011349678],[121,46,66,-0.5468972250819206],[121,46,67,-0.5450501218438148],[121,46,68,-0.5441530272364616],[121,46,69,-0.5448597259819508],[121,46,70,-0.5468904227018356],[121,46,71,-0.549387838691473],[121,46,72,-0.5521185472607613],[121,46,73,-0.5540387257933617],[121,46,74,-0.554715171456337],[121,46,75,-0.5541062392294407],[121,46,76,-0.5521560907363892],[121,46,77,-0.5491077862679958],[121,46,78,-0.5453321486711502],[121,46,79,-0.5411497838795185],[121,47,64,-0.5490449965000153],[121,47,65,-0.548549011349678],[121,47,66,-0.5468972250819206],[121,47,67,-0.5450501218438148],[121,47,68,-0.5441530272364616],[121,47,69,-0.5448597259819508],[121,47,70,-0.5468904227018356],[121,47,71,-0.549387838691473],[121,47,72,-0.5521185472607613],[121,47,73,-0.5540387257933617],[121,47,74,-0.554715171456337],[121,47,75,-0.5541062392294407],[121,47,76,-0.5521560907363892],[121,47,77,-0.5491077862679958],[121,47,78,-0.5453321486711502],[121,47,79,-0.5411497838795185],[121,48,64,-0.5490449965000153],[121,48,65,-0.548549011349678],[121,48,66,-0.5468972250819206],[121,48,67,-0.5450501218438148],[121,48,68,-0.5441530272364616],[121,48,69,-0.5448597259819508],[121,48,70,-0.5468904227018356],[121,48,71,-0.549387838691473],[121,48,72,-0.5521185472607613],[121,48,73,-0.5540387257933617],[121,48,74,-0.554715171456337],[121,48,75,-0.5541062392294407],[121,48,76,-0.5521560907363892],[121,48,77,-0.5491077862679958],[121,48,78,-0.5453321486711502],[121,48,79,-0.5411497838795185],[121,49,64,-0.5490449965000153],[121,49,65,-0.548549011349678],[121,49,66,-0.5468972250819206],[121,49,67,-0.5450501218438148],[121,49,68,-0.5441530272364616],[121,49,69,-0.5448597259819508],[121,49,70,-0.5468904227018356],[121,49,71,-0.549387838691473],[121,49,72,-0.5521185472607613],[121,49,73,-0.5540387257933617],[121,49,74,-0.554715171456337],[121,49,75,-0.5541062392294407],[121,49,76,-0.5521560907363892],[121,49,77,-0.5491077862679958],[121,49,78,-0.5453321486711502],[121,49,79,-0.5411497838795185],[121,50,64,-0.5490449965000153],[121,50,65,-0.548549011349678],[121,50,66,-0.5468972250819206],[121,50,67,-0.5450501218438148],[121,50,68,-0.5441530272364616],[121,50,69,-0.5448597259819508],[121,50,70,-0.5468904227018356],[121,50,71,-0.549387838691473],[121,50,72,-0.5521185472607613],[121,50,73,-0.5540387257933617],[121,50,74,-0.554715171456337],[121,50,75,-0.5541062392294407],[121,50,76,-0.5521560907363892],[121,50,77,-0.5491077862679958],[121,50,78,-0.5453321486711502],[121,50,79,-0.5411497838795185],[121,51,64,-0.5490449965000153],[121,51,65,-0.548549011349678],[121,51,66,-0.5468972250819206],[121,51,67,-0.5450501218438148],[121,51,68,-0.5441530272364616],[121,51,69,-0.5448597259819508],[121,51,70,-0.5468904227018356],[121,51,71,-0.549387838691473],[121,51,72,-0.5521185472607613],[121,51,73,-0.5540387257933617],[121,51,74,-0.554715171456337],[121,51,75,-0.5541062392294407],[121,51,76,-0.5521560907363892],[121,51,77,-0.5491077862679958],[121,51,78,-0.5453321486711502],[121,51,79,-0.5411497838795185],[121,52,64,-0.5490449965000153],[121,52,65,-0.548549011349678],[121,52,66,-0.5468972250819206],[121,52,67,-0.5450501218438148],[121,52,68,-0.5441530272364616],[121,52,69,-0.5448597259819508],[121,52,70,-0.5468904227018356],[121,52,71,-0.549387838691473],[121,52,72,-0.5521185472607613],[121,52,73,-0.5540387257933617],[121,52,74,-0.554715171456337],[121,52,75,-0.5541062392294407],[121,52,76,-0.5521560907363892],[121,52,77,-0.5491077862679958],[121,52,78,-0.5453321486711502],[121,52,79,-0.5411497838795185],[121,53,64,-0.5490449965000153],[121,53,65,-0.548549011349678],[121,53,66,-0.5468972250819206],[121,53,67,-0.5450501218438148],[121,53,68,-0.5441530272364616],[121,53,69,-0.5448597259819508],[121,53,70,-0.5468904227018356],[121,53,71,-0.549387838691473],[121,53,72,-0.5521185472607613],[121,53,73,-0.5540387257933617],[121,53,74,-0.554715171456337],[121,53,75,-0.5541062392294407],[121,53,76,-0.5521560907363892],[121,53,77,-0.5491077862679958],[121,53,78,-0.5453321486711502],[121,53,79,-0.5411497838795185],[121,54,64,-0.5490449965000153],[121,54,65,-0.548549011349678],[121,54,66,-0.5468972250819206],[121,54,67,-0.5450501218438148],[121,54,68,-0.5441530272364616],[121,54,69,-0.5448597259819508],[121,54,70,-0.5468904227018356],[121,54,71,-0.549387838691473],[121,54,72,-0.5521185472607613],[121,54,73,-0.5540387257933617],[121,54,74,-0.554715171456337],[121,54,75,-0.5541062392294407],[121,54,76,-0.5521560907363892],[121,54,77,-0.5491077862679958],[121,54,78,-0.5453321486711502],[121,54,79,-0.5411497838795185],[121,55,64,-0.5490449965000153],[121,55,65,-0.548549011349678],[121,55,66,-0.5468972250819206],[121,55,67,-0.5450501218438148],[121,55,68,-0.5441530272364616],[121,55,69,-0.5448597259819508],[121,55,70,-0.5468904227018356],[121,55,71,-0.549387838691473],[121,55,72,-0.5521185472607613],[121,55,73,-0.5540387257933617],[121,55,74,-0.554715171456337],[121,55,75,-0.5541062392294407],[121,55,76,-0.5521560907363892],[121,55,77,-0.5491077862679958],[121,55,78,-0.5453321486711502],[121,55,79,-0.5411497838795185],[121,56,64,-0.5490449965000153],[121,56,65,-0.548549011349678],[121,56,66,-0.5468972250819206],[121,56,67,-0.5450501218438148],[121,56,68,-0.5441530272364616],[121,56,69,-0.5448597259819508],[121,56,70,-0.5468904227018356],[121,56,71,-0.549387838691473],[121,56,72,-0.5521185472607613],[121,56,73,-0.5540387257933617],[121,56,74,-0.554715171456337],[121,56,75,-0.5541062392294407],[121,56,76,-0.5521560907363892],[121,56,77,-0.5491077862679958],[121,56,78,-0.5453321486711502],[121,56,79,-0.5411497838795185],[121,57,64,-0.5490449965000153],[121,57,65,-0.548549011349678],[121,57,66,-0.5468972250819206],[121,57,67,-0.5450501218438148],[121,57,68,-0.5441530272364616],[121,57,69,-0.5448597259819508],[121,57,70,-0.5468904227018356],[121,57,71,-0.549387838691473],[121,57,72,-0.5521185472607613],[121,57,73,-0.5540387257933617],[121,57,74,-0.554715171456337],[121,57,75,-0.5541062392294407],[121,57,76,-0.5521560907363892],[121,57,77,-0.5491077862679958],[121,57,78,-0.5453321486711502],[121,57,79,-0.5411497838795185],[121,58,64,-0.5490449965000153],[121,58,65,-0.548549011349678],[121,58,66,-0.5468972250819206],[121,58,67,-0.5450501218438148],[121,58,68,-0.5441530272364616],[121,58,69,-0.5448597259819508],[121,58,70,-0.5468904227018356],[121,58,71,-0.549387838691473],[121,58,72,-0.5521185472607613],[121,58,73,-0.5540387257933617],[121,58,74,-0.554715171456337],[121,58,75,-0.5541062392294407],[121,58,76,-0.5521560907363892],[121,58,77,-0.5491077862679958],[121,58,78,-0.5453321486711502],[121,58,79,-0.5411497838795185],[121,59,64,-0.5490449965000153],[121,59,65,-0.548549011349678],[121,59,66,-0.5468972250819206],[121,59,67,-0.5450501218438148],[121,59,68,-0.5441530272364616],[121,59,69,-0.5448597259819508],[121,59,70,-0.5468904227018356],[121,59,71,-0.549387838691473],[121,59,72,-0.5521185472607613],[121,59,73,-0.5540387257933617],[121,59,74,-0.554715171456337],[121,59,75,-0.5541062392294407],[121,59,76,-0.5521560907363892],[121,59,77,-0.5491077862679958],[121,59,78,-0.5453321486711502],[121,59,79,-0.5411497838795185],[121,60,64,-0.5490449965000153],[121,60,65,-0.548549011349678],[121,60,66,-0.5468972250819206],[121,60,67,-0.5450501218438148],[121,60,68,-0.5441530272364616],[121,60,69,-0.5448597259819508],[121,60,70,-0.5468904227018356],[121,60,71,-0.549387838691473],[121,60,72,-0.5521185472607613],[121,60,73,-0.5540387257933617],[121,60,74,-0.554715171456337],[121,60,75,-0.5541062392294407],[121,60,76,-0.5521560907363892],[121,60,77,-0.5491077862679958],[121,60,78,-0.5453321486711502],[121,60,79,-0.5411497838795185],[121,61,64,-0.5490449965000153],[121,61,65,-0.548549011349678],[121,61,66,-0.5468972250819206],[121,61,67,-0.5450501218438148],[121,61,68,-0.5441530272364616],[121,61,69,-0.5448597259819508],[121,61,70,-0.5468904227018356],[121,61,71,-0.549387838691473],[121,61,72,-0.5521185472607613],[121,61,73,-0.5540387257933617],[121,61,74,-0.554715171456337],[121,61,75,-0.5541062392294407],[121,61,76,-0.5521560907363892],[121,61,77,-0.5491077862679958],[121,61,78,-0.5453321486711502],[121,61,79,-0.5411497838795185],[121,62,64,-0.5490449965000153],[121,62,65,-0.548549011349678],[121,62,66,-0.5468972250819206],[121,62,67,-0.5450501218438148],[121,62,68,-0.5441530272364616],[121,62,69,-0.5448597259819508],[121,62,70,-0.5468904227018356],[121,62,71,-0.549387838691473],[121,62,72,-0.5521185472607613],[121,62,73,-0.5540387257933617],[121,62,74,-0.554715171456337],[121,62,75,-0.5541062392294407],[121,62,76,-0.5521560907363892],[121,62,77,-0.5491077862679958],[121,62,78,-0.5453321486711502],[121,62,79,-0.5411497838795185],[121,63,64,-0.5490449965000153],[121,63,65,-0.548549011349678],[121,63,66,-0.5468972250819206],[121,63,67,-0.5450501218438148],[121,63,68,-0.5441530272364616],[121,63,69,-0.5448597259819508],[121,63,70,-0.5468904227018356],[121,63,71,-0.549387838691473],[121,63,72,-0.5521185472607613],[121,63,73,-0.5540387257933617],[121,63,74,-0.554715171456337],[121,63,75,-0.5541062392294407],[121,63,76,-0.5521560907363892],[121,63,77,-0.5491077862679958],[121,63,78,-0.5453321486711502],[121,63,79,-0.5411497838795185],[121,64,64,-0.5490449965000153],[121,64,65,-0.548549011349678],[121,64,66,-0.5468972250819206],[121,64,67,-0.5450501218438148],[121,64,68,-0.5441530272364616],[121,64,69,-0.5448597259819508],[121,64,70,-0.5468904227018356],[121,64,71,-0.549387838691473],[121,64,72,-0.5521185472607613],[121,64,73,-0.5540387257933617],[121,64,74,-0.554715171456337],[121,64,75,-0.5541062392294407],[121,64,76,-0.5521560907363892],[121,64,77,-0.5491077862679958],[121,64,78,-0.5453321486711502],[121,64,79,-0.5411497838795185],[121,65,64,-0.5490449965000153],[121,65,65,-0.548549011349678],[121,65,66,-0.5468972250819206],[121,65,67,-0.5450501218438148],[121,65,68,-0.5441530272364616],[121,65,69,-0.5448597259819508],[121,65,70,-0.5468904227018356],[121,65,71,-0.549387838691473],[121,65,72,-0.5521185472607613],[121,65,73,-0.5540387257933617],[121,65,74,-0.554715171456337],[121,65,75,-0.5541062392294407],[121,65,76,-0.5521560907363892],[121,65,77,-0.5491077862679958],[121,65,78,-0.5453321486711502],[121,65,79,-0.5411497838795185],[121,66,64,-0.5490449965000153],[121,66,65,-0.548549011349678],[121,66,66,-0.5468972250819206],[121,66,67,-0.5450501218438148],[121,66,68,-0.5441530272364616],[121,66,69,-0.5448597259819508],[121,66,70,-0.5468904227018356],[121,66,71,-0.549387838691473],[121,66,72,-0.5521185472607613],[121,66,73,-0.5540387257933617],[121,66,74,-0.554715171456337],[121,66,75,-0.5541062392294407],[121,66,76,-0.5521560907363892],[121,66,77,-0.5491077862679958],[121,66,78,-0.5453321486711502],[121,66,79,-0.5411497838795185],[121,67,64,-0.5490449965000153],[121,67,65,-0.548549011349678],[121,67,66,-0.5468972250819206],[121,67,67,-0.5450501218438148],[121,67,68,-0.5441530272364616],[121,67,69,-0.5448597259819508],[121,67,70,-0.5468904227018356],[121,67,71,-0.549387838691473],[121,67,72,-0.5521185472607613],[121,67,73,-0.5540387257933617],[121,67,74,-0.554715171456337],[121,67,75,-0.5541062392294407],[121,67,76,-0.5521560907363892],[121,67,77,-0.5491077862679958],[121,67,78,-0.5453321486711502],[121,67,79,-0.5411497838795185],[121,68,64,-0.5490449965000153],[121,68,65,-0.548549011349678],[121,68,66,-0.5468972250819206],[121,68,67,-0.5450501218438148],[121,68,68,-0.5441530272364616],[121,68,69,-0.5448597259819508],[121,68,70,-0.5468904227018356],[121,68,71,-0.549387838691473],[121,68,72,-0.5521185472607613],[121,68,73,-0.5540387257933617],[121,68,74,-0.554715171456337],[121,68,75,-0.5541062392294407],[121,68,76,-0.5521560907363892],[121,68,77,-0.5491077862679958],[121,68,78,-0.5453321486711502],[121,68,79,-0.5411497838795185],[121,69,64,-0.5490449965000153],[121,69,65,-0.548549011349678],[121,69,66,-0.5468972250819206],[121,69,67,-0.5450501218438148],[121,69,68,-0.5441530272364616],[121,69,69,-0.5448597259819508],[121,69,70,-0.5468904227018356],[121,69,71,-0.549387838691473],[121,69,72,-0.5521185472607613],[121,69,73,-0.5540387257933617],[121,69,74,-0.554715171456337],[121,69,75,-0.5541062392294407],[121,69,76,-0.5521560907363892],[121,69,77,-0.5491077862679958],[121,69,78,-0.5453321486711502],[121,69,79,-0.5411497838795185],[121,70,64,-0.5490449965000153],[121,70,65,-0.548549011349678],[121,70,66,-0.5468972250819206],[121,70,67,-0.5450501218438148],[121,70,68,-0.5441530272364616],[121,70,69,-0.5448597259819508],[121,70,70,-0.5468904227018356],[121,70,71,-0.549387838691473],[121,70,72,-0.5521185472607613],[121,70,73,-0.5540387257933617],[121,70,74,-0.554715171456337],[121,70,75,-0.5541062392294407],[121,70,76,-0.5521560907363892],[121,70,77,-0.5491077862679958],[121,70,78,-0.5453321486711502],[121,70,79,-0.5411497838795185],[121,71,64,-0.5490449965000153],[121,71,65,-0.548549011349678],[121,71,66,-0.5468972250819206],[121,71,67,-0.5450501218438148],[121,71,68,-0.5441530272364616],[121,71,69,-0.5448597259819508],[121,71,70,-0.5468904227018356],[121,71,71,-0.549387838691473],[121,71,72,-0.5521185472607613],[121,71,73,-0.5540387257933617],[121,71,74,-0.554715171456337],[121,71,75,-0.5541062392294407],[121,71,76,-0.5521560907363892],[121,71,77,-0.5491077862679958],[121,71,78,-0.5453321486711502],[121,71,79,-0.5411497838795185],[121,72,64,-0.5490449965000153],[121,72,65,-0.548549011349678],[121,72,66,-0.5468972250819206],[121,72,67,-0.5450501218438148],[121,72,68,-0.5441530272364616],[121,72,69,-0.5448597259819508],[121,72,70,-0.5468904227018356],[121,72,71,-0.549387838691473],[121,72,72,-0.5521185472607613],[121,72,73,-0.5540387257933617],[121,72,74,-0.554715171456337],[121,72,75,-0.5541062392294407],[121,72,76,-0.5521560907363892],[121,72,77,-0.5491077862679958],[121,72,78,-0.5453321486711502],[121,72,79,-0.5411497838795185],[121,73,64,-0.5490449965000153],[121,73,65,-0.548549011349678],[121,73,66,-0.5468972250819206],[121,73,67,-0.5450501218438148],[121,73,68,-0.5441530272364616],[121,73,69,-0.5448597259819508],[121,73,70,-0.5468904227018356],[121,73,71,-0.549387838691473],[121,73,72,-0.5521185472607613],[121,73,73,-0.5540387257933617],[121,73,74,-0.554715171456337],[121,73,75,-0.5541062392294407],[121,73,76,-0.5521560907363892],[121,73,77,-0.5491077862679958],[121,73,78,-0.5453321486711502],[121,73,79,-0.5411497838795185],[121,74,64,-0.5490449965000153],[121,74,65,-0.548549011349678],[121,74,66,-0.5468972250819206],[121,74,67,-0.5450501218438148],[121,74,68,-0.5441530272364616],[121,74,69,-0.5448597259819508],[121,74,70,-0.5468904227018356],[121,74,71,-0.549387838691473],[121,74,72,-0.5521185472607613],[121,74,73,-0.5540387257933617],[121,74,74,-0.554715171456337],[121,74,75,-0.5541062392294407],[121,74,76,-0.5521560907363892],[121,74,77,-0.5491077862679958],[121,74,78,-0.5453321486711502],[121,74,79,-0.5411497838795185],[121,75,64,-0.5490449965000153],[121,75,65,-0.548549011349678],[121,75,66,-0.5468972250819206],[121,75,67,-0.5450501218438148],[121,75,68,-0.5441530272364616],[121,75,69,-0.5448597259819508],[121,75,70,-0.5468904227018356],[121,75,71,-0.549387838691473],[121,75,72,-0.5521185472607613],[121,75,73,-0.5540387257933617],[121,75,74,-0.554715171456337],[121,75,75,-0.5541062392294407],[121,75,76,-0.5521560907363892],[121,75,77,-0.5491077862679958],[121,75,78,-0.5453321486711502],[121,75,79,-0.5411497838795185],[121,76,64,-0.5490449965000153],[121,76,65,-0.548549011349678],[121,76,66,-0.5468972250819206],[121,76,67,-0.5450501218438148],[121,76,68,-0.5441530272364616],[121,76,69,-0.5448597259819508],[121,76,70,-0.5468904227018356],[121,76,71,-0.549387838691473],[121,76,72,-0.5521185472607613],[121,76,73,-0.5540387257933617],[121,76,74,-0.554715171456337],[121,76,75,-0.5541062392294407],[121,76,76,-0.5521560907363892],[121,76,77,-0.5491077862679958],[121,76,78,-0.5453321486711502],[121,76,79,-0.5411497838795185],[121,77,64,-0.5490449965000153],[121,77,65,-0.548549011349678],[121,77,66,-0.5468972250819206],[121,77,67,-0.5450501218438148],[121,77,68,-0.5441530272364616],[121,77,69,-0.5448597259819508],[121,77,70,-0.5468904227018356],[121,77,71,-0.549387838691473],[121,77,72,-0.5521185472607613],[121,77,73,-0.5540387257933617],[121,77,74,-0.554715171456337],[121,77,75,-0.5541062392294407],[121,77,76,-0.5521560907363892],[121,77,77,-0.5491077862679958],[121,77,78,-0.5453321486711502],[121,77,79,-0.5411497838795185],[121,78,64,-0.5490449965000153],[121,78,65,-0.548549011349678],[121,78,66,-0.5468972250819206],[121,78,67,-0.5450501218438148],[121,78,68,-0.5441530272364616],[121,78,69,-0.5448597259819508],[121,78,70,-0.5468904227018356],[121,78,71,-0.549387838691473],[121,78,72,-0.5521185472607613],[121,78,73,-0.5540387257933617],[121,78,74,-0.554715171456337],[121,78,75,-0.5541062392294407],[121,78,76,-0.5521560907363892],[121,78,77,-0.5491077862679958],[121,78,78,-0.5453321486711502],[121,78,79,-0.5411497838795185],[121,79,64,-0.5490449965000153],[121,79,65,-0.548549011349678],[121,79,66,-0.5468972250819206],[121,79,67,-0.5450501218438148],[121,79,68,-0.5441530272364616],[121,79,69,-0.5448597259819508],[121,79,70,-0.5468904227018356],[121,79,71,-0.549387838691473],[121,79,72,-0.5521185472607613],[121,79,73,-0.5540387257933617],[121,79,74,-0.554715171456337],[121,79,75,-0.5541062392294407],[121,79,76,-0.5521560907363892],[121,79,77,-0.5491077862679958],[121,79,78,-0.5453321486711502],[121,79,79,-0.5411497838795185],[121,80,64,-0.5490449965000153],[121,80,65,-0.548549011349678],[121,80,66,-0.5468972250819206],[121,80,67,-0.5450501218438148],[121,80,68,-0.5441530272364616],[121,80,69,-0.5448597259819508],[121,80,70,-0.5468904227018356],[121,80,71,-0.549387838691473],[121,80,72,-0.5521185472607613],[121,80,73,-0.5540387257933617],[121,80,74,-0.554715171456337],[121,80,75,-0.5541062392294407],[121,80,76,-0.5521560907363892],[121,80,77,-0.5491077862679958],[121,80,78,-0.5453321486711502],[121,80,79,-0.5411497838795185],[121,81,64,-0.5490449965000153],[121,81,65,-0.548549011349678],[121,81,66,-0.5468972250819206],[121,81,67,-0.5450501218438148],[121,81,68,-0.5441530272364616],[121,81,69,-0.5448597259819508],[121,81,70,-0.5468904227018356],[121,81,71,-0.549387838691473],[121,81,72,-0.5521185472607613],[121,81,73,-0.5540387257933617],[121,81,74,-0.554715171456337],[121,81,75,-0.5541062392294407],[121,81,76,-0.5521560907363892],[121,81,77,-0.5491077862679958],[121,81,78,-0.5453321486711502],[121,81,79,-0.5411497838795185],[121,82,64,-0.5490449965000153],[121,82,65,-0.548549011349678],[121,82,66,-0.5468972250819206],[121,82,67,-0.5450501218438148],[121,82,68,-0.5441530272364616],[121,82,69,-0.5448597259819508],[121,82,70,-0.5468904227018356],[121,82,71,-0.549387838691473],[121,82,72,-0.5521185472607613],[121,82,73,-0.5540387257933617],[121,82,74,-0.554715171456337],[121,82,75,-0.5541062392294407],[121,82,76,-0.5521560907363892],[121,82,77,-0.5491077862679958],[121,82,78,-0.5453321486711502],[121,82,79,-0.5411497838795185],[121,83,64,-0.5490449965000153],[121,83,65,-0.548549011349678],[121,83,66,-0.5468972250819206],[121,83,67,-0.5450501218438148],[121,83,68,-0.5441530272364616],[121,83,69,-0.5448597259819508],[121,83,70,-0.5468904227018356],[121,83,71,-0.549387838691473],[121,83,72,-0.5521185472607613],[121,83,73,-0.5540387257933617],[121,83,74,-0.554715171456337],[121,83,75,-0.5541062392294407],[121,83,76,-0.5521560907363892],[121,83,77,-0.5491077862679958],[121,83,78,-0.5453321486711502],[121,83,79,-0.5411497838795185],[121,84,64,-0.5490449965000153],[121,84,65,-0.548549011349678],[121,84,66,-0.5468972250819206],[121,84,67,-0.5450501218438148],[121,84,68,-0.5441530272364616],[121,84,69,-0.5448597259819508],[121,84,70,-0.5468904227018356],[121,84,71,-0.549387838691473],[121,84,72,-0.5521185472607613],[121,84,73,-0.5540387257933617],[121,84,74,-0.554715171456337],[121,84,75,-0.5541062392294407],[121,84,76,-0.5521560907363892],[121,84,77,-0.5491077862679958],[121,84,78,-0.5453321486711502],[121,84,79,-0.5411497838795185],[121,85,64,-0.5490449965000153],[121,85,65,-0.548549011349678],[121,85,66,-0.5468972250819206],[121,85,67,-0.5450501218438148],[121,85,68,-0.5441530272364616],[121,85,69,-0.5448597259819508],[121,85,70,-0.5468904227018356],[121,85,71,-0.549387838691473],[121,85,72,-0.5521185472607613],[121,85,73,-0.5540387257933617],[121,85,74,-0.554715171456337],[121,85,75,-0.5541062392294407],[121,85,76,-0.5521560907363892],[121,85,77,-0.5491077862679958],[121,85,78,-0.5453321486711502],[121,85,79,-0.5411497838795185],[121,86,64,-0.5490449965000153],[121,86,65,-0.548549011349678],[121,86,66,-0.5468972250819206],[121,86,67,-0.5450501218438148],[121,86,68,-0.5441530272364616],[121,86,69,-0.5448597259819508],[121,86,70,-0.5468904227018356],[121,86,71,-0.549387838691473],[121,86,72,-0.5521185472607613],[121,86,73,-0.5540387257933617],[121,86,74,-0.554715171456337],[121,86,75,-0.5541062392294407],[121,86,76,-0.5521560907363892],[121,86,77,-0.5491077862679958],[121,86,78,-0.5453321486711502],[121,86,79,-0.5411497838795185],[121,87,64,-0.5490449965000153],[121,87,65,-0.548549011349678],[121,87,66,-0.5468972250819206],[121,87,67,-0.5450501218438148],[121,87,68,-0.5441530272364616],[121,87,69,-0.5448597259819508],[121,87,70,-0.5468904227018356],[121,87,71,-0.549387838691473],[121,87,72,-0.5521185472607613],[121,87,73,-0.5540387257933617],[121,87,74,-0.554715171456337],[121,87,75,-0.5541062392294407],[121,87,76,-0.5521560907363892],[121,87,77,-0.5491077862679958],[121,87,78,-0.5453321486711502],[121,87,79,-0.5411497838795185],[121,88,64,-0.5490449965000153],[121,88,65,-0.548549011349678],[121,88,66,-0.5468972250819206],[121,88,67,-0.5450501218438148],[121,88,68,-0.5441530272364616],[121,88,69,-0.5448597259819508],[121,88,70,-0.5468904227018356],[121,88,71,-0.549387838691473],[121,88,72,-0.5521185472607613],[121,88,73,-0.5540387257933617],[121,88,74,-0.554715171456337],[121,88,75,-0.5541062392294407],[121,88,76,-0.5521560907363892],[121,88,77,-0.5491077862679958],[121,88,78,-0.5453321486711502],[121,88,79,-0.5411497838795185],[121,89,64,-0.5490449965000153],[121,89,65,-0.548549011349678],[121,89,66,-0.5468972250819206],[121,89,67,-0.5450501218438148],[121,89,68,-0.5441530272364616],[121,89,69,-0.5448597259819508],[121,89,70,-0.5468904227018356],[121,89,71,-0.549387838691473],[121,89,72,-0.5521185472607613],[121,89,73,-0.5540387257933617],[121,89,74,-0.554715171456337],[121,89,75,-0.5541062392294407],[121,89,76,-0.5521560907363892],[121,89,77,-0.5491077862679958],[121,89,78,-0.5453321486711502],[121,89,79,-0.5411497838795185],[121,90,64,-0.5490449965000153],[121,90,65,-0.548549011349678],[121,90,66,-0.5468972250819206],[121,90,67,-0.5450501218438148],[121,90,68,-0.5441530272364616],[121,90,69,-0.5448597259819508],[121,90,70,-0.5468904227018356],[121,90,71,-0.549387838691473],[121,90,72,-0.5521185472607613],[121,90,73,-0.5540387257933617],[121,90,74,-0.554715171456337],[121,90,75,-0.5541062392294407],[121,90,76,-0.5521560907363892],[121,90,77,-0.5491077862679958],[121,90,78,-0.5453321486711502],[121,90,79,-0.5411497838795185],[121,91,64,-0.5490449965000153],[121,91,65,-0.548549011349678],[121,91,66,-0.5468972250819206],[121,91,67,-0.5450501218438148],[121,91,68,-0.5441530272364616],[121,91,69,-0.5448597259819508],[121,91,70,-0.5468904227018356],[121,91,71,-0.549387838691473],[121,91,72,-0.5521185472607613],[121,91,73,-0.5540387257933617],[121,91,74,-0.554715171456337],[121,91,75,-0.5541062392294407],[121,91,76,-0.5521560907363892],[121,91,77,-0.5491077862679958],[121,91,78,-0.5453321486711502],[121,91,79,-0.5411497838795185],[121,92,64,-0.5490449965000153],[121,92,65,-0.548549011349678],[121,92,66,-0.5468972250819206],[121,92,67,-0.5450501218438148],[121,92,68,-0.5441530272364616],[121,92,69,-0.5448597259819508],[121,92,70,-0.5468904227018356],[121,92,71,-0.549387838691473],[121,92,72,-0.5521185472607613],[121,92,73,-0.5540387257933617],[121,92,74,-0.554715171456337],[121,92,75,-0.5541062392294407],[121,92,76,-0.5521560907363892],[121,92,77,-0.5491077862679958],[121,92,78,-0.5453321486711502],[121,92,79,-0.5411497838795185],[121,93,64,-0.5490449965000153],[121,93,65,-0.548549011349678],[121,93,66,-0.5468972250819206],[121,93,67,-0.5450501218438148],[121,93,68,-0.5441530272364616],[121,93,69,-0.5448597259819508],[121,93,70,-0.5468904227018356],[121,93,71,-0.549387838691473],[121,93,72,-0.5521185472607613],[121,93,73,-0.5540387257933617],[121,93,74,-0.554715171456337],[121,93,75,-0.5541062392294407],[121,93,76,-0.5521560907363892],[121,93,77,-0.5491077862679958],[121,93,78,-0.5453321486711502],[121,93,79,-0.5411497838795185],[121,94,64,-0.5490449965000153],[121,94,65,-0.548549011349678],[121,94,66,-0.5468972250819206],[121,94,67,-0.5450501218438148],[121,94,68,-0.5441530272364616],[121,94,69,-0.5448597259819508],[121,94,70,-0.5468904227018356],[121,94,71,-0.549387838691473],[121,94,72,-0.5521185472607613],[121,94,73,-0.5540387257933617],[121,94,74,-0.554715171456337],[121,94,75,-0.5541062392294407],[121,94,76,-0.5521560907363892],[121,94,77,-0.5491077862679958],[121,94,78,-0.5453321486711502],[121,94,79,-0.5411497838795185],[121,95,64,-0.5490449965000153],[121,95,65,-0.548549011349678],[121,95,66,-0.5468972250819206],[121,95,67,-0.5450501218438148],[121,95,68,-0.5441530272364616],[121,95,69,-0.5448597259819508],[121,95,70,-0.5468904227018356],[121,95,71,-0.549387838691473],[121,95,72,-0.5521185472607613],[121,95,73,-0.5540387257933617],[121,95,74,-0.554715171456337],[121,95,75,-0.5541062392294407],[121,95,76,-0.5521560907363892],[121,95,77,-0.5491077862679958],[121,95,78,-0.5453321486711502],[121,95,79,-0.5411497838795185],[121,96,64,-0.5490449965000153],[121,96,65,-0.548549011349678],[121,96,66,-0.5468972250819206],[121,96,67,-0.5450501218438148],[121,96,68,-0.5441530272364616],[121,96,69,-0.5448597259819508],[121,96,70,-0.5468904227018356],[121,96,71,-0.549387838691473],[121,96,72,-0.5521185472607613],[121,96,73,-0.5540387257933617],[121,96,74,-0.554715171456337],[121,96,75,-0.5541062392294407],[121,96,76,-0.5521560907363892],[121,96,77,-0.5491077862679958],[121,96,78,-0.5453321486711502],[121,96,79,-0.5411497838795185],[121,97,64,-0.5490449965000153],[121,97,65,-0.548549011349678],[121,97,66,-0.5468972250819206],[121,97,67,-0.5450501218438148],[121,97,68,-0.5441530272364616],[121,97,69,-0.5448597259819508],[121,97,70,-0.5468904227018356],[121,97,71,-0.549387838691473],[121,97,72,-0.5521185472607613],[121,97,73,-0.5540387257933617],[121,97,74,-0.554715171456337],[121,97,75,-0.5541062392294407],[121,97,76,-0.5521560907363892],[121,97,77,-0.5491077862679958],[121,97,78,-0.5453321486711502],[121,97,79,-0.5411497838795185],[121,98,64,-0.5490449965000153],[121,98,65,-0.548549011349678],[121,98,66,-0.5468972250819206],[121,98,67,-0.5450501218438148],[121,98,68,-0.5441530272364616],[121,98,69,-0.5448597259819508],[121,98,70,-0.5468904227018356],[121,98,71,-0.549387838691473],[121,98,72,-0.5521185472607613],[121,98,73,-0.5540387257933617],[121,98,74,-0.554715171456337],[121,98,75,-0.5541062392294407],[121,98,76,-0.5521560907363892],[121,98,77,-0.5491077862679958],[121,98,78,-0.5453321486711502],[121,98,79,-0.5411497838795185],[121,99,64,-0.5490449965000153],[121,99,65,-0.548549011349678],[121,99,66,-0.5468972250819206],[121,99,67,-0.5450501218438148],[121,99,68,-0.5441530272364616],[121,99,69,-0.5448597259819508],[121,99,70,-0.5468904227018356],[121,99,71,-0.549387838691473],[121,99,72,-0.5521185472607613],[121,99,73,-0.5540387257933617],[121,99,74,-0.554715171456337],[121,99,75,-0.5541062392294407],[121,99,76,-0.5521560907363892],[121,99,77,-0.5491077862679958],[121,99,78,-0.5453321486711502],[121,99,79,-0.5411497838795185],[121,100,64,-0.5490449965000153],[121,100,65,-0.548549011349678],[121,100,66,-0.5468972250819206],[121,100,67,-0.5450501218438148],[121,100,68,-0.5441530272364616],[121,100,69,-0.5448597259819508],[121,100,70,-0.5468904227018356],[121,100,71,-0.549387838691473],[121,100,72,-0.5521185472607613],[121,100,73,-0.5540387257933617],[121,100,74,-0.554715171456337],[121,100,75,-0.5541062392294407],[121,100,76,-0.5521560907363892],[121,100,77,-0.5491077862679958],[121,100,78,-0.5453321486711502],[121,100,79,-0.5411497838795185],[121,101,64,-0.5490449965000153],[121,101,65,-0.548549011349678],[121,101,66,-0.5468972250819206],[121,101,67,-0.5450501218438148],[121,101,68,-0.5441530272364616],[121,101,69,-0.5448597259819508],[121,101,70,-0.5468904227018356],[121,101,71,-0.549387838691473],[121,101,72,-0.5521185472607613],[121,101,73,-0.5540387257933617],[121,101,74,-0.554715171456337],[121,101,75,-0.5541062392294407],[121,101,76,-0.5521560907363892],[121,101,77,-0.5491077862679958],[121,101,78,-0.5453321486711502],[121,101,79,-0.5411497838795185],[121,102,64,-0.5490449965000153],[121,102,65,-0.548549011349678],[121,102,66,-0.5468972250819206],[121,102,67,-0.5450501218438148],[121,102,68,-0.5441530272364616],[121,102,69,-0.5448597259819508],[121,102,70,-0.5468904227018356],[121,102,71,-0.549387838691473],[121,102,72,-0.5521185472607613],[121,102,73,-0.5540387257933617],[121,102,74,-0.554715171456337],[121,102,75,-0.5541062392294407],[121,102,76,-0.5521560907363892],[121,102,77,-0.5491077862679958],[121,102,78,-0.5453321486711502],[121,102,79,-0.5411497838795185],[121,103,64,-0.5490449965000153],[121,103,65,-0.548549011349678],[121,103,66,-0.5468972250819206],[121,103,67,-0.5450501218438148],[121,103,68,-0.5441530272364616],[121,103,69,-0.5448597259819508],[121,103,70,-0.5468904227018356],[121,103,71,-0.549387838691473],[121,103,72,-0.5521185472607613],[121,103,73,-0.5540387257933617],[121,103,74,-0.554715171456337],[121,103,75,-0.5541062392294407],[121,103,76,-0.5521560907363892],[121,103,77,-0.5491077862679958],[121,103,78,-0.5453321486711502],[121,103,79,-0.5411497838795185],[121,104,64,-0.5490449965000153],[121,104,65,-0.548549011349678],[121,104,66,-0.5468972250819206],[121,104,67,-0.5450501218438148],[121,104,68,-0.5441530272364616],[121,104,69,-0.5448597259819508],[121,104,70,-0.5468904227018356],[121,104,71,-0.549387838691473],[121,104,72,-0.5521185472607613],[121,104,73,-0.5540387257933617],[121,104,74,-0.554715171456337],[121,104,75,-0.5541062392294407],[121,104,76,-0.5521560907363892],[121,104,77,-0.5491077862679958],[121,104,78,-0.5453321486711502],[121,104,79,-0.5411497838795185],[121,105,64,-0.5490449965000153],[121,105,65,-0.548549011349678],[121,105,66,-0.5468972250819206],[121,105,67,-0.5450501218438148],[121,105,68,-0.5441530272364616],[121,105,69,-0.5448597259819508],[121,105,70,-0.5468904227018356],[121,105,71,-0.549387838691473],[121,105,72,-0.5521185472607613],[121,105,73,-0.5540387257933617],[121,105,74,-0.554715171456337],[121,105,75,-0.5541062392294407],[121,105,76,-0.5521560907363892],[121,105,77,-0.5491077862679958],[121,105,78,-0.5453321486711502],[121,105,79,-0.5411497838795185],[121,106,64,-0.5490449965000153],[121,106,65,-0.548549011349678],[121,106,66,-0.5468972250819206],[121,106,67,-0.5450501218438148],[121,106,68,-0.5441530272364616],[121,106,69,-0.5448597259819508],[121,106,70,-0.5468904227018356],[121,106,71,-0.549387838691473],[121,106,72,-0.5521185472607613],[121,106,73,-0.5540387257933617],[121,106,74,-0.554715171456337],[121,106,75,-0.5541062392294407],[121,106,76,-0.5521560907363892],[121,106,77,-0.5491077862679958],[121,106,78,-0.5453321486711502],[121,106,79,-0.5411497838795185],[121,107,64,-0.5490449965000153],[121,107,65,-0.548549011349678],[121,107,66,-0.5468972250819206],[121,107,67,-0.5450501218438148],[121,107,68,-0.5441530272364616],[121,107,69,-0.5448597259819508],[121,107,70,-0.5468904227018356],[121,107,71,-0.549387838691473],[121,107,72,-0.5521185472607613],[121,107,73,-0.5540387257933617],[121,107,74,-0.554715171456337],[121,107,75,-0.5541062392294407],[121,107,76,-0.5521560907363892],[121,107,77,-0.5491077862679958],[121,107,78,-0.5453321486711502],[121,107,79,-0.5411497838795185],[121,108,64,-0.5490449965000153],[121,108,65,-0.548549011349678],[121,108,66,-0.5468972250819206],[121,108,67,-0.5450501218438148],[121,108,68,-0.5441530272364616],[121,108,69,-0.5448597259819508],[121,108,70,-0.5468904227018356],[121,108,71,-0.549387838691473],[121,108,72,-0.5521185472607613],[121,108,73,-0.5540387257933617],[121,108,74,-0.554715171456337],[121,108,75,-0.5541062392294407],[121,108,76,-0.5521560907363892],[121,108,77,-0.5491077862679958],[121,108,78,-0.5453321486711502],[121,108,79,-0.5411497838795185],[121,109,64,-0.5490449965000153],[121,109,65,-0.548549011349678],[121,109,66,-0.5468972250819206],[121,109,67,-0.5450501218438148],[121,109,68,-0.5441530272364616],[121,109,69,-0.5448597259819508],[121,109,70,-0.5468904227018356],[121,109,71,-0.549387838691473],[121,109,72,-0.5521185472607613],[121,109,73,-0.5540387257933617],[121,109,74,-0.554715171456337],[121,109,75,-0.5541062392294407],[121,109,76,-0.5521560907363892],[121,109,77,-0.5491077862679958],[121,109,78,-0.5453321486711502],[121,109,79,-0.5411497838795185],[121,110,64,-0.5490449965000153],[121,110,65,-0.548549011349678],[121,110,66,-0.5468972250819206],[121,110,67,-0.5450501218438148],[121,110,68,-0.5441530272364616],[121,110,69,-0.5448597259819508],[121,110,70,-0.5468904227018356],[121,110,71,-0.549387838691473],[121,110,72,-0.5521185472607613],[121,110,73,-0.5540387257933617],[121,110,74,-0.554715171456337],[121,110,75,-0.5541062392294407],[121,110,76,-0.5521560907363892],[121,110,77,-0.5491077862679958],[121,110,78,-0.5453321486711502],[121,110,79,-0.5411497838795185],[121,111,64,-0.5490449965000153],[121,111,65,-0.548549011349678],[121,111,66,-0.5468972250819206],[121,111,67,-0.5450501218438148],[121,111,68,-0.5441530272364616],[121,111,69,-0.5448597259819508],[121,111,70,-0.5468904227018356],[121,111,71,-0.549387838691473],[121,111,72,-0.5521185472607613],[121,111,73,-0.5540387257933617],[121,111,74,-0.554715171456337],[121,111,75,-0.5541062392294407],[121,111,76,-0.5521560907363892],[121,111,77,-0.5491077862679958],[121,111,78,-0.5453321486711502],[121,111,79,-0.5411497838795185],[121,112,64,-0.5490449965000153],[121,112,65,-0.548549011349678],[121,112,66,-0.5468972250819206],[121,112,67,-0.5450501218438148],[121,112,68,-0.5441530272364616],[121,112,69,-0.5448597259819508],[121,112,70,-0.5468904227018356],[121,112,71,-0.549387838691473],[121,112,72,-0.5521185472607613],[121,112,73,-0.5540387257933617],[121,112,74,-0.554715171456337],[121,112,75,-0.5541062392294407],[121,112,76,-0.5521560907363892],[121,112,77,-0.5491077862679958],[121,112,78,-0.5453321486711502],[121,112,79,-0.5411497838795185],[121,113,64,-0.5490449965000153],[121,113,65,-0.548549011349678],[121,113,66,-0.5468972250819206],[121,113,67,-0.5450501218438148],[121,113,68,-0.5441530272364616],[121,113,69,-0.5448597259819508],[121,113,70,-0.5468904227018356],[121,113,71,-0.549387838691473],[121,113,72,-0.5521185472607613],[121,113,73,-0.5540387257933617],[121,113,74,-0.554715171456337],[121,113,75,-0.5541062392294407],[121,113,76,-0.5521560907363892],[121,113,77,-0.5491077862679958],[121,113,78,-0.5453321486711502],[121,113,79,-0.5411497838795185],[121,114,64,-0.5490449965000153],[121,114,65,-0.548549011349678],[121,114,66,-0.5468972250819206],[121,114,67,-0.5450501218438148],[121,114,68,-0.5441530272364616],[121,114,69,-0.5448597259819508],[121,114,70,-0.5468904227018356],[121,114,71,-0.549387838691473],[121,114,72,-0.5521185472607613],[121,114,73,-0.5540387257933617],[121,114,74,-0.554715171456337],[121,114,75,-0.5541062392294407],[121,114,76,-0.5521560907363892],[121,114,77,-0.5491077862679958],[121,114,78,-0.5453321486711502],[121,114,79,-0.5411497838795185],[121,115,64,-0.5490449965000153],[121,115,65,-0.548549011349678],[121,115,66,-0.5468972250819206],[121,115,67,-0.5450501218438148],[121,115,68,-0.5441530272364616],[121,115,69,-0.5448597259819508],[121,115,70,-0.5468904227018356],[121,115,71,-0.549387838691473],[121,115,72,-0.5521185472607613],[121,115,73,-0.5540387257933617],[121,115,74,-0.554715171456337],[121,115,75,-0.5541062392294407],[121,115,76,-0.5521560907363892],[121,115,77,-0.5491077862679958],[121,115,78,-0.5453321486711502],[121,115,79,-0.5411497838795185],[121,116,64,-0.5490449965000153],[121,116,65,-0.548549011349678],[121,116,66,-0.5468972250819206],[121,116,67,-0.5450501218438148],[121,116,68,-0.5441530272364616],[121,116,69,-0.5448597259819508],[121,116,70,-0.5468904227018356],[121,116,71,-0.549387838691473],[121,116,72,-0.5521185472607613],[121,116,73,-0.5540387257933617],[121,116,74,-0.554715171456337],[121,116,75,-0.5541062392294407],[121,116,76,-0.5521560907363892],[121,116,77,-0.5491077862679958],[121,116,78,-0.5453321486711502],[121,116,79,-0.5411497838795185],[121,117,64,-0.5490449965000153],[121,117,65,-0.548549011349678],[121,117,66,-0.5468972250819206],[121,117,67,-0.5450501218438148],[121,117,68,-0.5441530272364616],[121,117,69,-0.5448597259819508],[121,117,70,-0.5468904227018356],[121,117,71,-0.549387838691473],[121,117,72,-0.5521185472607613],[121,117,73,-0.5540387257933617],[121,117,74,-0.554715171456337],[121,117,75,-0.5541062392294407],[121,117,76,-0.5521560907363892],[121,117,77,-0.5491077862679958],[121,117,78,-0.5453321486711502],[121,117,79,-0.5411497838795185],[121,118,64,-0.5490449965000153],[121,118,65,-0.548549011349678],[121,118,66,-0.5468972250819206],[121,118,67,-0.5450501218438148],[121,118,68,-0.5441530272364616],[121,118,69,-0.5448597259819508],[121,118,70,-0.5468904227018356],[121,118,71,-0.549387838691473],[121,118,72,-0.5521185472607613],[121,118,73,-0.5540387257933617],[121,118,74,-0.554715171456337],[121,118,75,-0.5541062392294407],[121,118,76,-0.5521560907363892],[121,118,77,-0.5491077862679958],[121,118,78,-0.5453321486711502],[121,118,79,-0.5411497838795185],[121,119,64,-0.5490449965000153],[121,119,65,-0.548549011349678],[121,119,66,-0.5468972250819206],[121,119,67,-0.5450501218438148],[121,119,68,-0.5441530272364616],[121,119,69,-0.5448597259819508],[121,119,70,-0.5468904227018356],[121,119,71,-0.549387838691473],[121,119,72,-0.5521185472607613],[121,119,73,-0.5540387257933617],[121,119,74,-0.554715171456337],[121,119,75,-0.5541062392294407],[121,119,76,-0.5521560907363892],[121,119,77,-0.5491077862679958],[121,119,78,-0.5453321486711502],[121,119,79,-0.5411497838795185],[121,120,64,-0.5490449965000153],[121,120,65,-0.548549011349678],[121,120,66,-0.5468972250819206],[121,120,67,-0.5450501218438148],[121,120,68,-0.5441530272364616],[121,120,69,-0.5448597259819508],[121,120,70,-0.5468904227018356],[121,120,71,-0.549387838691473],[121,120,72,-0.5521185472607613],[121,120,73,-0.5540387257933617],[121,120,74,-0.554715171456337],[121,120,75,-0.5541062392294407],[121,120,76,-0.5521560907363892],[121,120,77,-0.5491077862679958],[121,120,78,-0.5453321486711502],[121,120,79,-0.5411497838795185],[121,121,64,-0.5490449965000153],[121,121,65,-0.548549011349678],[121,121,66,-0.5468972250819206],[121,121,67,-0.5450501218438148],[121,121,68,-0.5441530272364616],[121,121,69,-0.5448597259819508],[121,121,70,-0.5468904227018356],[121,121,71,-0.549387838691473],[121,121,72,-0.5521185472607613],[121,121,73,-0.5540387257933617],[121,121,74,-0.554715171456337],[121,121,75,-0.5541062392294407],[121,121,76,-0.5521560907363892],[121,121,77,-0.5491077862679958],[121,121,78,-0.5453321486711502],[121,121,79,-0.5411497838795185],[121,122,64,-0.5490449965000153],[121,122,65,-0.548549011349678],[121,122,66,-0.5468972250819206],[121,122,67,-0.5450501218438148],[121,122,68,-0.5441530272364616],[121,122,69,-0.5448597259819508],[121,122,70,-0.5468904227018356],[121,122,71,-0.549387838691473],[121,122,72,-0.5521185472607613],[121,122,73,-0.5540387257933617],[121,122,74,-0.554715171456337],[121,122,75,-0.5541062392294407],[121,122,76,-0.5521560907363892],[121,122,77,-0.5491077862679958],[121,122,78,-0.5453321486711502],[121,122,79,-0.5411497838795185],[121,123,64,-0.5490449965000153],[121,123,65,-0.548549011349678],[121,123,66,-0.5468972250819206],[121,123,67,-0.5450501218438148],[121,123,68,-0.5441530272364616],[121,123,69,-0.5448597259819508],[121,123,70,-0.5468904227018356],[121,123,71,-0.549387838691473],[121,123,72,-0.5521185472607613],[121,123,73,-0.5540387257933617],[121,123,74,-0.554715171456337],[121,123,75,-0.5541062392294407],[121,123,76,-0.5521560907363892],[121,123,77,-0.5491077862679958],[121,123,78,-0.5453321486711502],[121,123,79,-0.5411497838795185],[121,124,64,-0.5490449965000153],[121,124,65,-0.548549011349678],[121,124,66,-0.5468972250819206],[121,124,67,-0.5450501218438148],[121,124,68,-0.5441530272364616],[121,124,69,-0.5448597259819508],[121,124,70,-0.5468904227018356],[121,124,71,-0.549387838691473],[121,124,72,-0.5521185472607613],[121,124,73,-0.5540387257933617],[121,124,74,-0.554715171456337],[121,124,75,-0.5541062392294407],[121,124,76,-0.5521560907363892],[121,124,77,-0.5491077862679958],[121,124,78,-0.5453321486711502],[121,124,79,-0.5411497838795185],[121,125,64,-0.5490449965000153],[121,125,65,-0.548549011349678],[121,125,66,-0.5468972250819206],[121,125,67,-0.5450501218438148],[121,125,68,-0.5441530272364616],[121,125,69,-0.5448597259819508],[121,125,70,-0.5468904227018356],[121,125,71,-0.549387838691473],[121,125,72,-0.5521185472607613],[121,125,73,-0.5540387257933617],[121,125,74,-0.554715171456337],[121,125,75,-0.5541062392294407],[121,125,76,-0.5521560907363892],[121,125,77,-0.5491077862679958],[121,125,78,-0.5453321486711502],[121,125,79,-0.5411497838795185],[121,126,64,-0.5490449965000153],[121,126,65,-0.548549011349678],[121,126,66,-0.5468972250819206],[121,126,67,-0.5450501218438148],[121,126,68,-0.5441530272364616],[121,126,69,-0.5448597259819508],[121,126,70,-0.5468904227018356],[121,126,71,-0.549387838691473],[121,126,72,-0.5521185472607613],[121,126,73,-0.5540387257933617],[121,126,74,-0.554715171456337],[121,126,75,-0.5541062392294407],[121,126,76,-0.5521560907363892],[121,126,77,-0.5491077862679958],[121,126,78,-0.5453321486711502],[121,126,79,-0.5411497838795185],[121,127,64,-0.5490449965000153],[121,127,65,-0.548549011349678],[121,127,66,-0.5468972250819206],[121,127,67,-0.5450501218438148],[121,127,68,-0.5441530272364616],[121,127,69,-0.5448597259819508],[121,127,70,-0.5468904227018356],[121,127,71,-0.549387838691473],[121,127,72,-0.5521185472607613],[121,127,73,-0.5540387257933617],[121,127,74,-0.554715171456337],[121,127,75,-0.5541062392294407],[121,127,76,-0.5521560907363892],[121,127,77,-0.5491077862679958],[121,127,78,-0.5453321486711502],[121,127,79,-0.5411497838795185],[121,128,64,-0.5490449965000153],[121,128,65,-0.548549011349678],[121,128,66,-0.5468972250819206],[121,128,67,-0.5450501218438148],[121,128,68,-0.5441530272364616],[121,128,69,-0.5448597259819508],[121,128,70,-0.5468904227018356],[121,128,71,-0.549387838691473],[121,128,72,-0.5521185472607613],[121,128,73,-0.5540387257933617],[121,128,74,-0.554715171456337],[121,128,75,-0.5541062392294407],[121,128,76,-0.5521560907363892],[121,128,77,-0.5491077862679958],[121,128,78,-0.5453321486711502],[121,128,79,-0.5411497838795185],[121,129,64,-0.5490449965000153],[121,129,65,-0.548549011349678],[121,129,66,-0.5468972250819206],[121,129,67,-0.5450501218438148],[121,129,68,-0.5441530272364616],[121,129,69,-0.5448597259819508],[121,129,70,-0.5468904227018356],[121,129,71,-0.549387838691473],[121,129,72,-0.5521185472607613],[121,129,73,-0.5540387257933617],[121,129,74,-0.554715171456337],[121,129,75,-0.5541062392294407],[121,129,76,-0.5521560907363892],[121,129,77,-0.5491077862679958],[121,129,78,-0.5453321486711502],[121,129,79,-0.5411497838795185],[121,130,64,-0.5490449965000153],[121,130,65,-0.548549011349678],[121,130,66,-0.5468972250819206],[121,130,67,-0.5450501218438148],[121,130,68,-0.5441530272364616],[121,130,69,-0.5448597259819508],[121,130,70,-0.5468904227018356],[121,130,71,-0.549387838691473],[121,130,72,-0.5521185472607613],[121,130,73,-0.5540387257933617],[121,130,74,-0.554715171456337],[121,130,75,-0.5541062392294407],[121,130,76,-0.5521560907363892],[121,130,77,-0.5491077862679958],[121,130,78,-0.5453321486711502],[121,130,79,-0.5411497838795185],[121,131,64,-0.5490449965000153],[121,131,65,-0.548549011349678],[121,131,66,-0.5468972250819206],[121,131,67,-0.5450501218438148],[121,131,68,-0.5441530272364616],[121,131,69,-0.5448597259819508],[121,131,70,-0.5468904227018356],[121,131,71,-0.549387838691473],[121,131,72,-0.5521185472607613],[121,131,73,-0.5540387257933617],[121,131,74,-0.554715171456337],[121,131,75,-0.5541062392294407],[121,131,76,-0.5521560907363892],[121,131,77,-0.5491077862679958],[121,131,78,-0.5453321486711502],[121,131,79,-0.5411497838795185],[121,132,64,-0.5490449965000153],[121,132,65,-0.548549011349678],[121,132,66,-0.5468972250819206],[121,132,67,-0.5450501218438148],[121,132,68,-0.5441530272364616],[121,132,69,-0.5448597259819508],[121,132,70,-0.5468904227018356],[121,132,71,-0.549387838691473],[121,132,72,-0.5521185472607613],[121,132,73,-0.5540387257933617],[121,132,74,-0.554715171456337],[121,132,75,-0.5541062392294407],[121,132,76,-0.5521560907363892],[121,132,77,-0.5491077862679958],[121,132,78,-0.5453321486711502],[121,132,79,-0.5411497838795185],[121,133,64,-0.5490449965000153],[121,133,65,-0.548549011349678],[121,133,66,-0.5468972250819206],[121,133,67,-0.5450501218438148],[121,133,68,-0.5441530272364616],[121,133,69,-0.5448597259819508],[121,133,70,-0.5468904227018356],[121,133,71,-0.549387838691473],[121,133,72,-0.5521185472607613],[121,133,73,-0.5540387257933617],[121,133,74,-0.554715171456337],[121,133,75,-0.5541062392294407],[121,133,76,-0.5521560907363892],[121,133,77,-0.5491077862679958],[121,133,78,-0.5453321486711502],[121,133,79,-0.5411497838795185],[121,134,64,-0.5490449965000153],[121,134,65,-0.548549011349678],[121,134,66,-0.5468972250819206],[121,134,67,-0.5450501218438148],[121,134,68,-0.5441530272364616],[121,134,69,-0.5448597259819508],[121,134,70,-0.5468904227018356],[121,134,71,-0.549387838691473],[121,134,72,-0.5521185472607613],[121,134,73,-0.5540387257933617],[121,134,74,-0.554715171456337],[121,134,75,-0.5541062392294407],[121,134,76,-0.5521560907363892],[121,134,77,-0.5491077862679958],[121,134,78,-0.5453321486711502],[121,134,79,-0.5411497838795185],[121,135,64,-0.5490449965000153],[121,135,65,-0.548549011349678],[121,135,66,-0.5468972250819206],[121,135,67,-0.5450501218438148],[121,135,68,-0.5441530272364616],[121,135,69,-0.5448597259819508],[121,135,70,-0.5468904227018356],[121,135,71,-0.549387838691473],[121,135,72,-0.5521185472607613],[121,135,73,-0.5540387257933617],[121,135,74,-0.554715171456337],[121,135,75,-0.5541062392294407],[121,135,76,-0.5521560907363892],[121,135,77,-0.5491077862679958],[121,135,78,-0.5453321486711502],[121,135,79,-0.5411497838795185],[121,136,64,-0.5490449965000153],[121,136,65,-0.548549011349678],[121,136,66,-0.5468972250819206],[121,136,67,-0.5450501218438148],[121,136,68,-0.5441530272364616],[121,136,69,-0.5448597259819508],[121,136,70,-0.5468904227018356],[121,136,71,-0.549387838691473],[121,136,72,-0.5521185472607613],[121,136,73,-0.5540387257933617],[121,136,74,-0.554715171456337],[121,136,75,-0.5541062392294407],[121,136,76,-0.5521560907363892],[121,136,77,-0.5491077862679958],[121,136,78,-0.5453321486711502],[121,136,79,-0.5411497838795185],[121,137,64,-0.5490449965000153],[121,137,65,-0.548549011349678],[121,137,66,-0.5468972250819206],[121,137,67,-0.5450501218438148],[121,137,68,-0.5441530272364616],[121,137,69,-0.5448597259819508],[121,137,70,-0.5468904227018356],[121,137,71,-0.549387838691473],[121,137,72,-0.5521185472607613],[121,137,73,-0.5540387257933617],[121,137,74,-0.554715171456337],[121,137,75,-0.5541062392294407],[121,137,76,-0.5521560907363892],[121,137,77,-0.5491077862679958],[121,137,78,-0.5453321486711502],[121,137,79,-0.5411497838795185],[121,138,64,-0.5490449965000153],[121,138,65,-0.548549011349678],[121,138,66,-0.5468972250819206],[121,138,67,-0.5450501218438148],[121,138,68,-0.5441530272364616],[121,138,69,-0.5448597259819508],[121,138,70,-0.5468904227018356],[121,138,71,-0.549387838691473],[121,138,72,-0.5521185472607613],[121,138,73,-0.5540387257933617],[121,138,74,-0.554715171456337],[121,138,75,-0.5541062392294407],[121,138,76,-0.5521560907363892],[121,138,77,-0.5491077862679958],[121,138,78,-0.5453321486711502],[121,138,79,-0.5411497838795185],[121,139,64,-0.5490449965000153],[121,139,65,-0.548549011349678],[121,139,66,-0.5468972250819206],[121,139,67,-0.5450501218438148],[121,139,68,-0.5441530272364616],[121,139,69,-0.5448597259819508],[121,139,70,-0.5468904227018356],[121,139,71,-0.549387838691473],[121,139,72,-0.5521185472607613],[121,139,73,-0.5540387257933617],[121,139,74,-0.554715171456337],[121,139,75,-0.5541062392294407],[121,139,76,-0.5521560907363892],[121,139,77,-0.5491077862679958],[121,139,78,-0.5453321486711502],[121,139,79,-0.5411497838795185],[121,140,64,-0.5490449965000153],[121,140,65,-0.548549011349678],[121,140,66,-0.5468972250819206],[121,140,67,-0.5450501218438148],[121,140,68,-0.5441530272364616],[121,140,69,-0.5448597259819508],[121,140,70,-0.5468904227018356],[121,140,71,-0.549387838691473],[121,140,72,-0.5521185472607613],[121,140,73,-0.5540387257933617],[121,140,74,-0.554715171456337],[121,140,75,-0.5541062392294407],[121,140,76,-0.5521560907363892],[121,140,77,-0.5491077862679958],[121,140,78,-0.5453321486711502],[121,140,79,-0.5411497838795185],[121,141,64,-0.5490449965000153],[121,141,65,-0.548549011349678],[121,141,66,-0.5468972250819206],[121,141,67,-0.5450501218438148],[121,141,68,-0.5441530272364616],[121,141,69,-0.5448597259819508],[121,141,70,-0.5468904227018356],[121,141,71,-0.549387838691473],[121,141,72,-0.5521185472607613],[121,141,73,-0.5540387257933617],[121,141,74,-0.554715171456337],[121,141,75,-0.5541062392294407],[121,141,76,-0.5521560907363892],[121,141,77,-0.5491077862679958],[121,141,78,-0.5453321486711502],[121,141,79,-0.5411497838795185],[121,142,64,-0.5490449965000153],[121,142,65,-0.548549011349678],[121,142,66,-0.5468972250819206],[121,142,67,-0.5450501218438148],[121,142,68,-0.5441530272364616],[121,142,69,-0.5448597259819508],[121,142,70,-0.5468904227018356],[121,142,71,-0.549387838691473],[121,142,72,-0.5521185472607613],[121,142,73,-0.5540387257933617],[121,142,74,-0.554715171456337],[121,142,75,-0.5541062392294407],[121,142,76,-0.5521560907363892],[121,142,77,-0.5491077862679958],[121,142,78,-0.5453321486711502],[121,142,79,-0.5411497838795185],[121,143,64,-0.5490449965000153],[121,143,65,-0.548549011349678],[121,143,66,-0.5468972250819206],[121,143,67,-0.5450501218438148],[121,143,68,-0.5441530272364616],[121,143,69,-0.5448597259819508],[121,143,70,-0.5468904227018356],[121,143,71,-0.549387838691473],[121,143,72,-0.5521185472607613],[121,143,73,-0.5540387257933617],[121,143,74,-0.554715171456337],[121,143,75,-0.5541062392294407],[121,143,76,-0.5521560907363892],[121,143,77,-0.5491077862679958],[121,143,78,-0.5453321486711502],[121,143,79,-0.5411497838795185],[121,144,64,-0.5490449965000153],[121,144,65,-0.548549011349678],[121,144,66,-0.5468972250819206],[121,144,67,-0.5450501218438148],[121,144,68,-0.5441530272364616],[121,144,69,-0.5448597259819508],[121,144,70,-0.5468904227018356],[121,144,71,-0.549387838691473],[121,144,72,-0.5521185472607613],[121,144,73,-0.5540387257933617],[121,144,74,-0.554715171456337],[121,144,75,-0.5541062392294407],[121,144,76,-0.5521560907363892],[121,144,77,-0.5491077862679958],[121,144,78,-0.5453321486711502],[121,144,79,-0.5411497838795185],[121,145,64,-0.5490449965000153],[121,145,65,-0.548549011349678],[121,145,66,-0.5468972250819206],[121,145,67,-0.5450501218438148],[121,145,68,-0.5441530272364616],[121,145,69,-0.5448597259819508],[121,145,70,-0.5468904227018356],[121,145,71,-0.549387838691473],[121,145,72,-0.5521185472607613],[121,145,73,-0.5540387257933617],[121,145,74,-0.554715171456337],[121,145,75,-0.5541062392294407],[121,145,76,-0.5521560907363892],[121,145,77,-0.5491077862679958],[121,145,78,-0.5453321486711502],[121,145,79,-0.5411497838795185],[121,146,64,-0.5490449965000153],[121,146,65,-0.548549011349678],[121,146,66,-0.5468972250819206],[121,146,67,-0.5450501218438148],[121,146,68,-0.5441530272364616],[121,146,69,-0.5448597259819508],[121,146,70,-0.5468904227018356],[121,146,71,-0.549387838691473],[121,146,72,-0.5521185472607613],[121,146,73,-0.5540387257933617],[121,146,74,-0.554715171456337],[121,146,75,-0.5541062392294407],[121,146,76,-0.5521560907363892],[121,146,77,-0.5491077862679958],[121,146,78,-0.5453321486711502],[121,146,79,-0.5411497838795185],[121,147,64,-0.5490449965000153],[121,147,65,-0.548549011349678],[121,147,66,-0.5468972250819206],[121,147,67,-0.5450501218438148],[121,147,68,-0.5441530272364616],[121,147,69,-0.5448597259819508],[121,147,70,-0.5468904227018356],[121,147,71,-0.549387838691473],[121,147,72,-0.5521185472607613],[121,147,73,-0.5540387257933617],[121,147,74,-0.554715171456337],[121,147,75,-0.5541062392294407],[121,147,76,-0.5521560907363892],[121,147,77,-0.5491077862679958],[121,147,78,-0.5453321486711502],[121,147,79,-0.5411497838795185],[121,148,64,-0.5490449965000153],[121,148,65,-0.548549011349678],[121,148,66,-0.5468972250819206],[121,148,67,-0.5450501218438148],[121,148,68,-0.5441530272364616],[121,148,69,-0.5448597259819508],[121,148,70,-0.5468904227018356],[121,148,71,-0.549387838691473],[121,148,72,-0.5521185472607613],[121,148,73,-0.5540387257933617],[121,148,74,-0.554715171456337],[121,148,75,-0.5541062392294407],[121,148,76,-0.5521560907363892],[121,148,77,-0.5491077862679958],[121,148,78,-0.5453321486711502],[121,148,79,-0.5411497838795185],[121,149,64,-0.5490449965000153],[121,149,65,-0.548549011349678],[121,149,66,-0.5468972250819206],[121,149,67,-0.5450501218438148],[121,149,68,-0.5441530272364616],[121,149,69,-0.5448597259819508],[121,149,70,-0.5468904227018356],[121,149,71,-0.549387838691473],[121,149,72,-0.5521185472607613],[121,149,73,-0.5540387257933617],[121,149,74,-0.554715171456337],[121,149,75,-0.5541062392294407],[121,149,76,-0.5521560907363892],[121,149,77,-0.5491077862679958],[121,149,78,-0.5453321486711502],[121,149,79,-0.5411497838795185],[121,150,64,-0.5490449965000153],[121,150,65,-0.548549011349678],[121,150,66,-0.5468972250819206],[121,150,67,-0.5450501218438148],[121,150,68,-0.5441530272364616],[121,150,69,-0.5448597259819508],[121,150,70,-0.5468904227018356],[121,150,71,-0.549387838691473],[121,150,72,-0.5521185472607613],[121,150,73,-0.5540387257933617],[121,150,74,-0.554715171456337],[121,150,75,-0.5541062392294407],[121,150,76,-0.5521560907363892],[121,150,77,-0.5491077862679958],[121,150,78,-0.5453321486711502],[121,150,79,-0.5411497838795185],[121,151,64,-0.5490449965000153],[121,151,65,-0.548549011349678],[121,151,66,-0.5468972250819206],[121,151,67,-0.5450501218438148],[121,151,68,-0.5441530272364616],[121,151,69,-0.5448597259819508],[121,151,70,-0.5468904227018356],[121,151,71,-0.549387838691473],[121,151,72,-0.5521185472607613],[121,151,73,-0.5540387257933617],[121,151,74,-0.554715171456337],[121,151,75,-0.5541062392294407],[121,151,76,-0.5521560907363892],[121,151,77,-0.5491077862679958],[121,151,78,-0.5453321486711502],[121,151,79,-0.5411497838795185],[121,152,64,-0.5490449965000153],[121,152,65,-0.548549011349678],[121,152,66,-0.5468972250819206],[121,152,67,-0.5450501218438148],[121,152,68,-0.5441530272364616],[121,152,69,-0.5448597259819508],[121,152,70,-0.5468904227018356],[121,152,71,-0.549387838691473],[121,152,72,-0.5521185472607613],[121,152,73,-0.5540387257933617],[121,152,74,-0.554715171456337],[121,152,75,-0.5541062392294407],[121,152,76,-0.5521560907363892],[121,152,77,-0.5491077862679958],[121,152,78,-0.5453321486711502],[121,152,79,-0.5411497838795185],[121,153,64,-0.5490449965000153],[121,153,65,-0.548549011349678],[121,153,66,-0.5468972250819206],[121,153,67,-0.5450501218438148],[121,153,68,-0.5441530272364616],[121,153,69,-0.5448597259819508],[121,153,70,-0.5468904227018356],[121,153,71,-0.549387838691473],[121,153,72,-0.5521185472607613],[121,153,73,-0.5540387257933617],[121,153,74,-0.554715171456337],[121,153,75,-0.5541062392294407],[121,153,76,-0.5521560907363892],[121,153,77,-0.5491077862679958],[121,153,78,-0.5453321486711502],[121,153,79,-0.5411497838795185],[121,154,64,-0.5490449965000153],[121,154,65,-0.548549011349678],[121,154,66,-0.5468972250819206],[121,154,67,-0.5450501218438148],[121,154,68,-0.5441530272364616],[121,154,69,-0.5448597259819508],[121,154,70,-0.5468904227018356],[121,154,71,-0.549387838691473],[121,154,72,-0.5521185472607613],[121,154,73,-0.5540387257933617],[121,154,74,-0.554715171456337],[121,154,75,-0.5541062392294407],[121,154,76,-0.5521560907363892],[121,154,77,-0.5491077862679958],[121,154,78,-0.5453321486711502],[121,154,79,-0.5411497838795185],[121,155,64,-0.5490449965000153],[121,155,65,-0.548549011349678],[121,155,66,-0.5468972250819206],[121,155,67,-0.5450501218438148],[121,155,68,-0.5441530272364616],[121,155,69,-0.5448597259819508],[121,155,70,-0.5468904227018356],[121,155,71,-0.549387838691473],[121,155,72,-0.5521185472607613],[121,155,73,-0.5540387257933617],[121,155,74,-0.554715171456337],[121,155,75,-0.5541062392294407],[121,155,76,-0.5521560907363892],[121,155,77,-0.5491077862679958],[121,155,78,-0.5453321486711502],[121,155,79,-0.5411497838795185],[121,156,64,-0.5490449965000153],[121,156,65,-0.548549011349678],[121,156,66,-0.5468972250819206],[121,156,67,-0.5450501218438148],[121,156,68,-0.5441530272364616],[121,156,69,-0.5448597259819508],[121,156,70,-0.5468904227018356],[121,156,71,-0.549387838691473],[121,156,72,-0.5521185472607613],[121,156,73,-0.5540387257933617],[121,156,74,-0.554715171456337],[121,156,75,-0.5541062392294407],[121,156,76,-0.5521560907363892],[121,156,77,-0.5491077862679958],[121,156,78,-0.5453321486711502],[121,156,79,-0.5411497838795185],[121,157,64,-0.5490449965000153],[121,157,65,-0.548549011349678],[121,157,66,-0.5468972250819206],[121,157,67,-0.5450501218438148],[121,157,68,-0.5441530272364616],[121,157,69,-0.5448597259819508],[121,157,70,-0.5468904227018356],[121,157,71,-0.549387838691473],[121,157,72,-0.5521185472607613],[121,157,73,-0.5540387257933617],[121,157,74,-0.554715171456337],[121,157,75,-0.5541062392294407],[121,157,76,-0.5521560907363892],[121,157,77,-0.5491077862679958],[121,157,78,-0.5453321486711502],[121,157,79,-0.5411497838795185],[121,158,64,-0.5490449965000153],[121,158,65,-0.548549011349678],[121,158,66,-0.5468972250819206],[121,158,67,-0.5450501218438148],[121,158,68,-0.5441530272364616],[121,158,69,-0.5448597259819508],[121,158,70,-0.5468904227018356],[121,158,71,-0.549387838691473],[121,158,72,-0.5521185472607613],[121,158,73,-0.5540387257933617],[121,158,74,-0.554715171456337],[121,158,75,-0.5541062392294407],[121,158,76,-0.5521560907363892],[121,158,77,-0.5491077862679958],[121,158,78,-0.5453321486711502],[121,158,79,-0.5411497838795185],[121,159,64,-0.5490449965000153],[121,159,65,-0.548549011349678],[121,159,66,-0.5468972250819206],[121,159,67,-0.5450501218438148],[121,159,68,-0.5441530272364616],[121,159,69,-0.5448597259819508],[121,159,70,-0.5468904227018356],[121,159,71,-0.549387838691473],[121,159,72,-0.5521185472607613],[121,159,73,-0.5540387257933617],[121,159,74,-0.554715171456337],[121,159,75,-0.5541062392294407],[121,159,76,-0.5521560907363892],[121,159,77,-0.5491077862679958],[121,159,78,-0.5453321486711502],[121,159,79,-0.5411497838795185],[121,160,64,-0.5490449965000153],[121,160,65,-0.548549011349678],[121,160,66,-0.5468972250819206],[121,160,67,-0.5450501218438148],[121,160,68,-0.5441530272364616],[121,160,69,-0.5448597259819508],[121,160,70,-0.5468904227018356],[121,160,71,-0.549387838691473],[121,160,72,-0.5521185472607613],[121,160,73,-0.5540387257933617],[121,160,74,-0.554715171456337],[121,160,75,-0.5541062392294407],[121,160,76,-0.5521560907363892],[121,160,77,-0.5491077862679958],[121,160,78,-0.5453321486711502],[121,160,79,-0.5411497838795185],[121,161,64,-0.5490449965000153],[121,161,65,-0.548549011349678],[121,161,66,-0.5468972250819206],[121,161,67,-0.5450501218438148],[121,161,68,-0.5441530272364616],[121,161,69,-0.5448597259819508],[121,161,70,-0.5468904227018356],[121,161,71,-0.549387838691473],[121,161,72,-0.5521185472607613],[121,161,73,-0.5540387257933617],[121,161,74,-0.554715171456337],[121,161,75,-0.5541062392294407],[121,161,76,-0.5521560907363892],[121,161,77,-0.5491077862679958],[121,161,78,-0.5453321486711502],[121,161,79,-0.5411497838795185],[121,162,64,-0.5490449965000153],[121,162,65,-0.548549011349678],[121,162,66,-0.5468972250819206],[121,162,67,-0.5450501218438148],[121,162,68,-0.5441530272364616],[121,162,69,-0.5448597259819508],[121,162,70,-0.5468904227018356],[121,162,71,-0.549387838691473],[121,162,72,-0.5521185472607613],[121,162,73,-0.5540387257933617],[121,162,74,-0.554715171456337],[121,162,75,-0.5541062392294407],[121,162,76,-0.5521560907363892],[121,162,77,-0.5491077862679958],[121,162,78,-0.5453321486711502],[121,162,79,-0.5411497838795185],[121,163,64,-0.5490449965000153],[121,163,65,-0.548549011349678],[121,163,66,-0.5468972250819206],[121,163,67,-0.5450501218438148],[121,163,68,-0.5441530272364616],[121,163,69,-0.5448597259819508],[121,163,70,-0.5468904227018356],[121,163,71,-0.549387838691473],[121,163,72,-0.5521185472607613],[121,163,73,-0.5540387257933617],[121,163,74,-0.554715171456337],[121,163,75,-0.5541062392294407],[121,163,76,-0.5521560907363892],[121,163,77,-0.5491077862679958],[121,163,78,-0.5453321486711502],[121,163,79,-0.5411497838795185],[121,164,64,-0.5490449965000153],[121,164,65,-0.548549011349678],[121,164,66,-0.5468972250819206],[121,164,67,-0.5450501218438148],[121,164,68,-0.5441530272364616],[121,164,69,-0.5448597259819508],[121,164,70,-0.5468904227018356],[121,164,71,-0.549387838691473],[121,164,72,-0.5521185472607613],[121,164,73,-0.5540387257933617],[121,164,74,-0.554715171456337],[121,164,75,-0.5541062392294407],[121,164,76,-0.5521560907363892],[121,164,77,-0.5491077862679958],[121,164,78,-0.5453321486711502],[121,164,79,-0.5411497838795185],[121,165,64,-0.5490449965000153],[121,165,65,-0.548549011349678],[121,165,66,-0.5468972250819206],[121,165,67,-0.5450501218438148],[121,165,68,-0.5441530272364616],[121,165,69,-0.5448597259819508],[121,165,70,-0.5468904227018356],[121,165,71,-0.549387838691473],[121,165,72,-0.5521185472607613],[121,165,73,-0.5540387257933617],[121,165,74,-0.554715171456337],[121,165,75,-0.5541062392294407],[121,165,76,-0.5521560907363892],[121,165,77,-0.5491077862679958],[121,165,78,-0.5453321486711502],[121,165,79,-0.5411497838795185],[121,166,64,-0.5490449965000153],[121,166,65,-0.548549011349678],[121,166,66,-0.5468972250819206],[121,166,67,-0.5450501218438148],[121,166,68,-0.5441530272364616],[121,166,69,-0.5448597259819508],[121,166,70,-0.5468904227018356],[121,166,71,-0.549387838691473],[121,166,72,-0.5521185472607613],[121,166,73,-0.5540387257933617],[121,166,74,-0.554715171456337],[121,166,75,-0.5541062392294407],[121,166,76,-0.5521560907363892],[121,166,77,-0.5491077862679958],[121,166,78,-0.5453321486711502],[121,166,79,-0.5411497838795185],[121,167,64,-0.5490449965000153],[121,167,65,-0.548549011349678],[121,167,66,-0.5468972250819206],[121,167,67,-0.5450501218438148],[121,167,68,-0.5441530272364616],[121,167,69,-0.5448597259819508],[121,167,70,-0.5468904227018356],[121,167,71,-0.549387838691473],[121,167,72,-0.5521185472607613],[121,167,73,-0.5540387257933617],[121,167,74,-0.554715171456337],[121,167,75,-0.5541062392294407],[121,167,76,-0.5521560907363892],[121,167,77,-0.5491077862679958],[121,167,78,-0.5453321486711502],[121,167,79,-0.5411497838795185],[121,168,64,-0.5490449965000153],[121,168,65,-0.548549011349678],[121,168,66,-0.5468972250819206],[121,168,67,-0.5450501218438148],[121,168,68,-0.5441530272364616],[121,168,69,-0.5448597259819508],[121,168,70,-0.5468904227018356],[121,168,71,-0.549387838691473],[121,168,72,-0.5521185472607613],[121,168,73,-0.5540387257933617],[121,168,74,-0.554715171456337],[121,168,75,-0.5541062392294407],[121,168,76,-0.5521560907363892],[121,168,77,-0.5491077862679958],[121,168,78,-0.5453321486711502],[121,168,79,-0.5411497838795185],[121,169,64,-0.5490449965000153],[121,169,65,-0.548549011349678],[121,169,66,-0.5468972250819206],[121,169,67,-0.5450501218438148],[121,169,68,-0.5441530272364616],[121,169,69,-0.5448597259819508],[121,169,70,-0.5468904227018356],[121,169,71,-0.549387838691473],[121,169,72,-0.5521185472607613],[121,169,73,-0.5540387257933617],[121,169,74,-0.554715171456337],[121,169,75,-0.5541062392294407],[121,169,76,-0.5521560907363892],[121,169,77,-0.5491077862679958],[121,169,78,-0.5453321486711502],[121,169,79,-0.5411497838795185],[121,170,64,-0.5490449965000153],[121,170,65,-0.548549011349678],[121,170,66,-0.5468972250819206],[121,170,67,-0.5450501218438148],[121,170,68,-0.5441530272364616],[121,170,69,-0.5448597259819508],[121,170,70,-0.5468904227018356],[121,170,71,-0.549387838691473],[121,170,72,-0.5521185472607613],[121,170,73,-0.5540387257933617],[121,170,74,-0.554715171456337],[121,170,75,-0.5541062392294407],[121,170,76,-0.5521560907363892],[121,170,77,-0.5491077862679958],[121,170,78,-0.5453321486711502],[121,170,79,-0.5411497838795185],[121,171,64,-0.5490449965000153],[121,171,65,-0.548549011349678],[121,171,66,-0.5468972250819206],[121,171,67,-0.5450501218438148],[121,171,68,-0.5441530272364616],[121,171,69,-0.5448597259819508],[121,171,70,-0.5468904227018356],[121,171,71,-0.549387838691473],[121,171,72,-0.5521185472607613],[121,171,73,-0.5540387257933617],[121,171,74,-0.554715171456337],[121,171,75,-0.5541062392294407],[121,171,76,-0.5521560907363892],[121,171,77,-0.5491077862679958],[121,171,78,-0.5453321486711502],[121,171,79,-0.5411497838795185],[121,172,64,-0.5490449965000153],[121,172,65,-0.548549011349678],[121,172,66,-0.5468972250819206],[121,172,67,-0.5450501218438148],[121,172,68,-0.5441530272364616],[121,172,69,-0.5448597259819508],[121,172,70,-0.5468904227018356],[121,172,71,-0.549387838691473],[121,172,72,-0.5521185472607613],[121,172,73,-0.5540387257933617],[121,172,74,-0.554715171456337],[121,172,75,-0.5541062392294407],[121,172,76,-0.5521560907363892],[121,172,77,-0.5491077862679958],[121,172,78,-0.5453321486711502],[121,172,79,-0.5411497838795185],[121,173,64,-0.5490449965000153],[121,173,65,-0.548549011349678],[121,173,66,-0.5468972250819206],[121,173,67,-0.5450501218438148],[121,173,68,-0.5441530272364616],[121,173,69,-0.5448597259819508],[121,173,70,-0.5468904227018356],[121,173,71,-0.549387838691473],[121,173,72,-0.5521185472607613],[121,173,73,-0.5540387257933617],[121,173,74,-0.554715171456337],[121,173,75,-0.5541062392294407],[121,173,76,-0.5521560907363892],[121,173,77,-0.5491077862679958],[121,173,78,-0.5453321486711502],[121,173,79,-0.5411497838795185],[121,174,64,-0.5490449965000153],[121,174,65,-0.548549011349678],[121,174,66,-0.5468972250819206],[121,174,67,-0.5450501218438148],[121,174,68,-0.5441530272364616],[121,174,69,-0.5448597259819508],[121,174,70,-0.5468904227018356],[121,174,71,-0.549387838691473],[121,174,72,-0.5521185472607613],[121,174,73,-0.5540387257933617],[121,174,74,-0.554715171456337],[121,174,75,-0.5541062392294407],[121,174,76,-0.5521560907363892],[121,174,77,-0.5491077862679958],[121,174,78,-0.5453321486711502],[121,174,79,-0.5411497838795185],[121,175,64,-0.5490449965000153],[121,175,65,-0.548549011349678],[121,175,66,-0.5468972250819206],[121,175,67,-0.5450501218438148],[121,175,68,-0.5441530272364616],[121,175,69,-0.5448597259819508],[121,175,70,-0.5468904227018356],[121,175,71,-0.549387838691473],[121,175,72,-0.5521185472607613],[121,175,73,-0.5540387257933617],[121,175,74,-0.554715171456337],[121,175,75,-0.5541062392294407],[121,175,76,-0.5521560907363892],[121,175,77,-0.5491077862679958],[121,175,78,-0.5453321486711502],[121,175,79,-0.5411497838795185],[121,176,64,-0.5490449965000153],[121,176,65,-0.548549011349678],[121,176,66,-0.5468972250819206],[121,176,67,-0.5450501218438148],[121,176,68,-0.5441530272364616],[121,176,69,-0.5448597259819508],[121,176,70,-0.5468904227018356],[121,176,71,-0.549387838691473],[121,176,72,-0.5521185472607613],[121,176,73,-0.5540387257933617],[121,176,74,-0.554715171456337],[121,176,75,-0.5541062392294407],[121,176,76,-0.5521560907363892],[121,176,77,-0.5491077862679958],[121,176,78,-0.5453321486711502],[121,176,79,-0.5411497838795185],[121,177,64,-0.5490449965000153],[121,177,65,-0.548549011349678],[121,177,66,-0.5468972250819206],[121,177,67,-0.5450501218438148],[121,177,68,-0.5441530272364616],[121,177,69,-0.5448597259819508],[121,177,70,-0.5468904227018356],[121,177,71,-0.549387838691473],[121,177,72,-0.5521185472607613],[121,177,73,-0.5540387257933617],[121,177,74,-0.554715171456337],[121,177,75,-0.5541062392294407],[121,177,76,-0.5521560907363892],[121,177,77,-0.5491077862679958],[121,177,78,-0.5453321486711502],[121,177,79,-0.5411497838795185],[121,178,64,-0.5490449965000153],[121,178,65,-0.548549011349678],[121,178,66,-0.5468972250819206],[121,178,67,-0.5450501218438148],[121,178,68,-0.5441530272364616],[121,178,69,-0.5448597259819508],[121,178,70,-0.5468904227018356],[121,178,71,-0.549387838691473],[121,178,72,-0.5521185472607613],[121,178,73,-0.5540387257933617],[121,178,74,-0.554715171456337],[121,178,75,-0.5541062392294407],[121,178,76,-0.5521560907363892],[121,178,77,-0.5491077862679958],[121,178,78,-0.5453321486711502],[121,178,79,-0.5411497838795185],[121,179,64,-0.5490449965000153],[121,179,65,-0.548549011349678],[121,179,66,-0.5468972250819206],[121,179,67,-0.5450501218438148],[121,179,68,-0.5441530272364616],[121,179,69,-0.5448597259819508],[121,179,70,-0.5468904227018356],[121,179,71,-0.549387838691473],[121,179,72,-0.5521185472607613],[121,179,73,-0.5540387257933617],[121,179,74,-0.554715171456337],[121,179,75,-0.5541062392294407],[121,179,76,-0.5521560907363892],[121,179,77,-0.5491077862679958],[121,179,78,-0.5453321486711502],[121,179,79,-0.5411497838795185],[121,180,64,-0.5490449965000153],[121,180,65,-0.548549011349678],[121,180,66,-0.5468972250819206],[121,180,67,-0.5450501218438148],[121,180,68,-0.5441530272364616],[121,180,69,-0.5448597259819508],[121,180,70,-0.5468904227018356],[121,180,71,-0.549387838691473],[121,180,72,-0.5521185472607613],[121,180,73,-0.5540387257933617],[121,180,74,-0.554715171456337],[121,180,75,-0.5541062392294407],[121,180,76,-0.5521560907363892],[121,180,77,-0.5491077862679958],[121,180,78,-0.5453321486711502],[121,180,79,-0.5411497838795185],[121,181,64,-0.5490449965000153],[121,181,65,-0.548549011349678],[121,181,66,-0.5468972250819206],[121,181,67,-0.5450501218438148],[121,181,68,-0.5441530272364616],[121,181,69,-0.5448597259819508],[121,181,70,-0.5468904227018356],[121,181,71,-0.549387838691473],[121,181,72,-0.5521185472607613],[121,181,73,-0.5540387257933617],[121,181,74,-0.554715171456337],[121,181,75,-0.5541062392294407],[121,181,76,-0.5521560907363892],[121,181,77,-0.5491077862679958],[121,181,78,-0.5453321486711502],[121,181,79,-0.5411497838795185],[121,182,64,-0.5490449965000153],[121,182,65,-0.548549011349678],[121,182,66,-0.5468972250819206],[121,182,67,-0.5450501218438148],[121,182,68,-0.5441530272364616],[121,182,69,-0.5448597259819508],[121,182,70,-0.5468904227018356],[121,182,71,-0.549387838691473],[121,182,72,-0.5521185472607613],[121,182,73,-0.5540387257933617],[121,182,74,-0.554715171456337],[121,182,75,-0.5541062392294407],[121,182,76,-0.5521560907363892],[121,182,77,-0.5491077862679958],[121,182,78,-0.5453321486711502],[121,182,79,-0.5411497838795185],[121,183,64,-0.5490449965000153],[121,183,65,-0.548549011349678],[121,183,66,-0.5468972250819206],[121,183,67,-0.5450501218438148],[121,183,68,-0.5441530272364616],[121,183,69,-0.5448597259819508],[121,183,70,-0.5468904227018356],[121,183,71,-0.549387838691473],[121,183,72,-0.5521185472607613],[121,183,73,-0.5540387257933617],[121,183,74,-0.554715171456337],[121,183,75,-0.5541062392294407],[121,183,76,-0.5521560907363892],[121,183,77,-0.5491077862679958],[121,183,78,-0.5453321486711502],[121,183,79,-0.5411497838795185],[121,184,64,-0.5490449965000153],[121,184,65,-0.548549011349678],[121,184,66,-0.5468972250819206],[121,184,67,-0.5450501218438148],[121,184,68,-0.5441530272364616],[121,184,69,-0.5448597259819508],[121,184,70,-0.5468904227018356],[121,184,71,-0.549387838691473],[121,184,72,-0.5521185472607613],[121,184,73,-0.5540387257933617],[121,184,74,-0.554715171456337],[121,184,75,-0.5541062392294407],[121,184,76,-0.5521560907363892],[121,184,77,-0.5491077862679958],[121,184,78,-0.5453321486711502],[121,184,79,-0.5411497838795185],[121,185,64,-0.5490449965000153],[121,185,65,-0.548549011349678],[121,185,66,-0.5468972250819206],[121,185,67,-0.5450501218438148],[121,185,68,-0.5441530272364616],[121,185,69,-0.5448597259819508],[121,185,70,-0.5468904227018356],[121,185,71,-0.549387838691473],[121,185,72,-0.5521185472607613],[121,185,73,-0.5540387257933617],[121,185,74,-0.554715171456337],[121,185,75,-0.5541062392294407],[121,185,76,-0.5521560907363892],[121,185,77,-0.5491077862679958],[121,185,78,-0.5453321486711502],[121,185,79,-0.5411497838795185],[121,186,64,-0.5490449965000153],[121,186,65,-0.548549011349678],[121,186,66,-0.5468972250819206],[121,186,67,-0.5450501218438148],[121,186,68,-0.5441530272364616],[121,186,69,-0.5448597259819508],[121,186,70,-0.5468904227018356],[121,186,71,-0.549387838691473],[121,186,72,-0.5521185472607613],[121,186,73,-0.5540387257933617],[121,186,74,-0.554715171456337],[121,186,75,-0.5541062392294407],[121,186,76,-0.5521560907363892],[121,186,77,-0.5491077862679958],[121,186,78,-0.5453321486711502],[121,186,79,-0.5411497838795185],[121,187,64,-0.5490449965000153],[121,187,65,-0.548549011349678],[121,187,66,-0.5468972250819206],[121,187,67,-0.5450501218438148],[121,187,68,-0.5441530272364616],[121,187,69,-0.5448597259819508],[121,187,70,-0.5468904227018356],[121,187,71,-0.549387838691473],[121,187,72,-0.5521185472607613],[121,187,73,-0.5540387257933617],[121,187,74,-0.554715171456337],[121,187,75,-0.5541062392294407],[121,187,76,-0.5521560907363892],[121,187,77,-0.5491077862679958],[121,187,78,-0.5453321486711502],[121,187,79,-0.5411497838795185],[121,188,64,-0.5490449965000153],[121,188,65,-0.548549011349678],[121,188,66,-0.5468972250819206],[121,188,67,-0.5450501218438148],[121,188,68,-0.5441530272364616],[121,188,69,-0.5448597259819508],[121,188,70,-0.5468904227018356],[121,188,71,-0.549387838691473],[121,188,72,-0.5521185472607613],[121,188,73,-0.5540387257933617],[121,188,74,-0.554715171456337],[121,188,75,-0.5541062392294407],[121,188,76,-0.5521560907363892],[121,188,77,-0.5491077862679958],[121,188,78,-0.5453321486711502],[121,188,79,-0.5411497838795185],[121,189,64,-0.5490449965000153],[121,189,65,-0.548549011349678],[121,189,66,-0.5468972250819206],[121,189,67,-0.5450501218438148],[121,189,68,-0.5441530272364616],[121,189,69,-0.5448597259819508],[121,189,70,-0.5468904227018356],[121,189,71,-0.549387838691473],[121,189,72,-0.5521185472607613],[121,189,73,-0.5540387257933617],[121,189,74,-0.554715171456337],[121,189,75,-0.5541062392294407],[121,189,76,-0.5521560907363892],[121,189,77,-0.5491077862679958],[121,189,78,-0.5453321486711502],[121,189,79,-0.5411497838795185],[121,190,64,-0.5490449965000153],[121,190,65,-0.548549011349678],[121,190,66,-0.5468972250819206],[121,190,67,-0.5450501218438148],[121,190,68,-0.5441530272364616],[121,190,69,-0.5448597259819508],[121,190,70,-0.5468904227018356],[121,190,71,-0.549387838691473],[121,190,72,-0.5521185472607613],[121,190,73,-0.5540387257933617],[121,190,74,-0.554715171456337],[121,190,75,-0.5541062392294407],[121,190,76,-0.5521560907363892],[121,190,77,-0.5491077862679958],[121,190,78,-0.5453321486711502],[121,190,79,-0.5411497838795185],[121,191,64,-0.5490449965000153],[121,191,65,-0.548549011349678],[121,191,66,-0.5468972250819206],[121,191,67,-0.5450501218438148],[121,191,68,-0.5441530272364616],[121,191,69,-0.5448597259819508],[121,191,70,-0.5468904227018356],[121,191,71,-0.549387838691473],[121,191,72,-0.5521185472607613],[121,191,73,-0.5540387257933617],[121,191,74,-0.554715171456337],[121,191,75,-0.5541062392294407],[121,191,76,-0.5521560907363892],[121,191,77,-0.5491077862679958],[121,191,78,-0.5453321486711502],[121,191,79,-0.5411497838795185],[121,192,64,-0.5490449965000153],[121,192,65,-0.548549011349678],[121,192,66,-0.5468972250819206],[121,192,67,-0.5450501218438148],[121,192,68,-0.5441530272364616],[121,192,69,-0.5448597259819508],[121,192,70,-0.5468904227018356],[121,192,71,-0.549387838691473],[121,192,72,-0.5521185472607613],[121,192,73,-0.5540387257933617],[121,192,74,-0.554715171456337],[121,192,75,-0.5541062392294407],[121,192,76,-0.5521560907363892],[121,192,77,-0.5491077862679958],[121,192,78,-0.5453321486711502],[121,192,79,-0.5411497838795185],[121,193,64,-0.5490449965000153],[121,193,65,-0.548549011349678],[121,193,66,-0.5468972250819206],[121,193,67,-0.5450501218438148],[121,193,68,-0.5441530272364616],[121,193,69,-0.5448597259819508],[121,193,70,-0.5468904227018356],[121,193,71,-0.549387838691473],[121,193,72,-0.5521185472607613],[121,193,73,-0.5540387257933617],[121,193,74,-0.554715171456337],[121,193,75,-0.5541062392294407],[121,193,76,-0.5521560907363892],[121,193,77,-0.5491077862679958],[121,193,78,-0.5453321486711502],[121,193,79,-0.5411497838795185],[121,194,64,-0.5490449965000153],[121,194,65,-0.548549011349678],[121,194,66,-0.5468972250819206],[121,194,67,-0.5450501218438148],[121,194,68,-0.5441530272364616],[121,194,69,-0.5448597259819508],[121,194,70,-0.5468904227018356],[121,194,71,-0.549387838691473],[121,194,72,-0.5521185472607613],[121,194,73,-0.5540387257933617],[121,194,74,-0.554715171456337],[121,194,75,-0.5541062392294407],[121,194,76,-0.5521560907363892],[121,194,77,-0.5491077862679958],[121,194,78,-0.5453321486711502],[121,194,79,-0.5411497838795185],[121,195,64,-0.5490449965000153],[121,195,65,-0.548549011349678],[121,195,66,-0.5468972250819206],[121,195,67,-0.5450501218438148],[121,195,68,-0.5441530272364616],[121,195,69,-0.5448597259819508],[121,195,70,-0.5468904227018356],[121,195,71,-0.549387838691473],[121,195,72,-0.5521185472607613],[121,195,73,-0.5540387257933617],[121,195,74,-0.554715171456337],[121,195,75,-0.5541062392294407],[121,195,76,-0.5521560907363892],[121,195,77,-0.5491077862679958],[121,195,78,-0.5453321486711502],[121,195,79,-0.5411497838795185],[121,196,64,-0.5490449965000153],[121,196,65,-0.548549011349678],[121,196,66,-0.5468972250819206],[121,196,67,-0.5450501218438148],[121,196,68,-0.5441530272364616],[121,196,69,-0.5448597259819508],[121,196,70,-0.5468904227018356],[121,196,71,-0.549387838691473],[121,196,72,-0.5521185472607613],[121,196,73,-0.5540387257933617],[121,196,74,-0.554715171456337],[121,196,75,-0.5541062392294407],[121,196,76,-0.5521560907363892],[121,196,77,-0.5491077862679958],[121,196,78,-0.5453321486711502],[121,196,79,-0.5411497838795185],[121,197,64,-0.5490449965000153],[121,197,65,-0.548549011349678],[121,197,66,-0.5468972250819206],[121,197,67,-0.5450501218438148],[121,197,68,-0.5441530272364616],[121,197,69,-0.5448597259819508],[121,197,70,-0.5468904227018356],[121,197,71,-0.549387838691473],[121,197,72,-0.5521185472607613],[121,197,73,-0.5540387257933617],[121,197,74,-0.554715171456337],[121,197,75,-0.5541062392294407],[121,197,76,-0.5521560907363892],[121,197,77,-0.5491077862679958],[121,197,78,-0.5453321486711502],[121,197,79,-0.5411497838795185],[121,198,64,-0.5490449965000153],[121,198,65,-0.548549011349678],[121,198,66,-0.5468972250819206],[121,198,67,-0.5450501218438148],[121,198,68,-0.5441530272364616],[121,198,69,-0.5448597259819508],[121,198,70,-0.5468904227018356],[121,198,71,-0.549387838691473],[121,198,72,-0.5521185472607613],[121,198,73,-0.5540387257933617],[121,198,74,-0.554715171456337],[121,198,75,-0.5541062392294407],[121,198,76,-0.5521560907363892],[121,198,77,-0.5491077862679958],[121,198,78,-0.5453321486711502],[121,198,79,-0.5411497838795185],[121,199,64,-0.5490449965000153],[121,199,65,-0.548549011349678],[121,199,66,-0.5468972250819206],[121,199,67,-0.5450501218438148],[121,199,68,-0.5441530272364616],[121,199,69,-0.5448597259819508],[121,199,70,-0.5468904227018356],[121,199,71,-0.549387838691473],[121,199,72,-0.5521185472607613],[121,199,73,-0.5540387257933617],[121,199,74,-0.554715171456337],[121,199,75,-0.5541062392294407],[121,199,76,-0.5521560907363892],[121,199,77,-0.5491077862679958],[121,199,78,-0.5453321486711502],[121,199,79,-0.5411497838795185],[121,200,64,-0.5490449965000153],[121,200,65,-0.548549011349678],[121,200,66,-0.5468972250819206],[121,200,67,-0.5450501218438148],[121,200,68,-0.5441530272364616],[121,200,69,-0.5448597259819508],[121,200,70,-0.5468904227018356],[121,200,71,-0.549387838691473],[121,200,72,-0.5521185472607613],[121,200,73,-0.5540387257933617],[121,200,74,-0.554715171456337],[121,200,75,-0.5541062392294407],[121,200,76,-0.5521560907363892],[121,200,77,-0.5491077862679958],[121,200,78,-0.5453321486711502],[121,200,79,-0.5411497838795185],[121,201,64,-0.5490449965000153],[121,201,65,-0.548549011349678],[121,201,66,-0.5468972250819206],[121,201,67,-0.5450501218438148],[121,201,68,-0.5441530272364616],[121,201,69,-0.5448597259819508],[121,201,70,-0.5468904227018356],[121,201,71,-0.549387838691473],[121,201,72,-0.5521185472607613],[121,201,73,-0.5540387257933617],[121,201,74,-0.554715171456337],[121,201,75,-0.5541062392294407],[121,201,76,-0.5521560907363892],[121,201,77,-0.5491077862679958],[121,201,78,-0.5453321486711502],[121,201,79,-0.5411497838795185],[121,202,64,-0.5490449965000153],[121,202,65,-0.548549011349678],[121,202,66,-0.5468972250819206],[121,202,67,-0.5450501218438148],[121,202,68,-0.5441530272364616],[121,202,69,-0.5448597259819508],[121,202,70,-0.5468904227018356],[121,202,71,-0.549387838691473],[121,202,72,-0.5521185472607613],[121,202,73,-0.5540387257933617],[121,202,74,-0.554715171456337],[121,202,75,-0.5541062392294407],[121,202,76,-0.5521560907363892],[121,202,77,-0.5491077862679958],[121,202,78,-0.5453321486711502],[121,202,79,-0.5411497838795185],[121,203,64,-0.5490449965000153],[121,203,65,-0.548549011349678],[121,203,66,-0.5468972250819206],[121,203,67,-0.5450501218438148],[121,203,68,-0.5441530272364616],[121,203,69,-0.5448597259819508],[121,203,70,-0.5468904227018356],[121,203,71,-0.549387838691473],[121,203,72,-0.5521185472607613],[121,203,73,-0.5540387257933617],[121,203,74,-0.554715171456337],[121,203,75,-0.5541062392294407],[121,203,76,-0.5521560907363892],[121,203,77,-0.5491077862679958],[121,203,78,-0.5453321486711502],[121,203,79,-0.5411497838795185],[121,204,64,-0.5490449965000153],[121,204,65,-0.548549011349678],[121,204,66,-0.5468972250819206],[121,204,67,-0.5450501218438148],[121,204,68,-0.5441530272364616],[121,204,69,-0.5448597259819508],[121,204,70,-0.5468904227018356],[121,204,71,-0.549387838691473],[121,204,72,-0.5521185472607613],[121,204,73,-0.5540387257933617],[121,204,74,-0.554715171456337],[121,204,75,-0.5541062392294407],[121,204,76,-0.5521560907363892],[121,204,77,-0.5491077862679958],[121,204,78,-0.5453321486711502],[121,204,79,-0.5411497838795185],[121,205,64,-0.5490449965000153],[121,205,65,-0.548549011349678],[121,205,66,-0.5468972250819206],[121,205,67,-0.5450501218438148],[121,205,68,-0.5441530272364616],[121,205,69,-0.5448597259819508],[121,205,70,-0.5468904227018356],[121,205,71,-0.549387838691473],[121,205,72,-0.5521185472607613],[121,205,73,-0.5540387257933617],[121,205,74,-0.554715171456337],[121,205,75,-0.5541062392294407],[121,205,76,-0.5521560907363892],[121,205,77,-0.5491077862679958],[121,205,78,-0.5453321486711502],[121,205,79,-0.5411497838795185],[121,206,64,-0.5490449965000153],[121,206,65,-0.548549011349678],[121,206,66,-0.5468972250819206],[121,206,67,-0.5450501218438148],[121,206,68,-0.5441530272364616],[121,206,69,-0.5448597259819508],[121,206,70,-0.5468904227018356],[121,206,71,-0.549387838691473],[121,206,72,-0.5521185472607613],[121,206,73,-0.5540387257933617],[121,206,74,-0.554715171456337],[121,206,75,-0.5541062392294407],[121,206,76,-0.5521560907363892],[121,206,77,-0.5491077862679958],[121,206,78,-0.5453321486711502],[121,206,79,-0.5411497838795185],[121,207,64,-0.5490449965000153],[121,207,65,-0.548549011349678],[121,207,66,-0.5468972250819206],[121,207,67,-0.5450501218438148],[121,207,68,-0.5441530272364616],[121,207,69,-0.5448597259819508],[121,207,70,-0.5468904227018356],[121,207,71,-0.549387838691473],[121,207,72,-0.5521185472607613],[121,207,73,-0.5540387257933617],[121,207,74,-0.554715171456337],[121,207,75,-0.5541062392294407],[121,207,76,-0.5521560907363892],[121,207,77,-0.5491077862679958],[121,207,78,-0.5453321486711502],[121,207,79,-0.5411497838795185],[121,208,64,-0.5490449965000153],[121,208,65,-0.548549011349678],[121,208,66,-0.5468972250819206],[121,208,67,-0.5450501218438148],[121,208,68,-0.5441530272364616],[121,208,69,-0.5448597259819508],[121,208,70,-0.5468904227018356],[121,208,71,-0.549387838691473],[121,208,72,-0.5521185472607613],[121,208,73,-0.5540387257933617],[121,208,74,-0.554715171456337],[121,208,75,-0.5541062392294407],[121,208,76,-0.5521560907363892],[121,208,77,-0.5491077862679958],[121,208,78,-0.5453321486711502],[121,208,79,-0.5411497838795185],[121,209,64,-0.5490449965000153],[121,209,65,-0.548549011349678],[121,209,66,-0.5468972250819206],[121,209,67,-0.5450501218438148],[121,209,68,-0.5441530272364616],[121,209,69,-0.5448597259819508],[121,209,70,-0.5468904227018356],[121,209,71,-0.549387838691473],[121,209,72,-0.5521185472607613],[121,209,73,-0.5540387257933617],[121,209,74,-0.554715171456337],[121,209,75,-0.5541062392294407],[121,209,76,-0.5521560907363892],[121,209,77,-0.5491077862679958],[121,209,78,-0.5453321486711502],[121,209,79,-0.5411497838795185],[121,210,64,-0.5490449965000153],[121,210,65,-0.548549011349678],[121,210,66,-0.5468972250819206],[121,210,67,-0.5450501218438148],[121,210,68,-0.5441530272364616],[121,210,69,-0.5448597259819508],[121,210,70,-0.5468904227018356],[121,210,71,-0.549387838691473],[121,210,72,-0.5521185472607613],[121,210,73,-0.5540387257933617],[121,210,74,-0.554715171456337],[121,210,75,-0.5541062392294407],[121,210,76,-0.5521560907363892],[121,210,77,-0.5491077862679958],[121,210,78,-0.5453321486711502],[121,210,79,-0.5411497838795185],[121,211,64,-0.5490449965000153],[121,211,65,-0.548549011349678],[121,211,66,-0.5468972250819206],[121,211,67,-0.5450501218438148],[121,211,68,-0.5441530272364616],[121,211,69,-0.5448597259819508],[121,211,70,-0.5468904227018356],[121,211,71,-0.549387838691473],[121,211,72,-0.5521185472607613],[121,211,73,-0.5540387257933617],[121,211,74,-0.554715171456337],[121,211,75,-0.5541062392294407],[121,211,76,-0.5521560907363892],[121,211,77,-0.5491077862679958],[121,211,78,-0.5453321486711502],[121,211,79,-0.5411497838795185],[121,212,64,-0.5490449965000153],[121,212,65,-0.548549011349678],[121,212,66,-0.5468972250819206],[121,212,67,-0.5450501218438148],[121,212,68,-0.5441530272364616],[121,212,69,-0.5448597259819508],[121,212,70,-0.5468904227018356],[121,212,71,-0.549387838691473],[121,212,72,-0.5521185472607613],[121,212,73,-0.5540387257933617],[121,212,74,-0.554715171456337],[121,212,75,-0.5541062392294407],[121,212,76,-0.5521560907363892],[121,212,77,-0.5491077862679958],[121,212,78,-0.5453321486711502],[121,212,79,-0.5411497838795185],[121,213,64,-0.5490449965000153],[121,213,65,-0.548549011349678],[121,213,66,-0.5468972250819206],[121,213,67,-0.5450501218438148],[121,213,68,-0.5441530272364616],[121,213,69,-0.5448597259819508],[121,213,70,-0.5468904227018356],[121,213,71,-0.549387838691473],[121,213,72,-0.5521185472607613],[121,213,73,-0.5540387257933617],[121,213,74,-0.554715171456337],[121,213,75,-0.5541062392294407],[121,213,76,-0.5521560907363892],[121,213,77,-0.5491077862679958],[121,213,78,-0.5453321486711502],[121,213,79,-0.5411497838795185],[121,214,64,-0.5490449965000153],[121,214,65,-0.548549011349678],[121,214,66,-0.5468972250819206],[121,214,67,-0.5450501218438148],[121,214,68,-0.5441530272364616],[121,214,69,-0.5448597259819508],[121,214,70,-0.5468904227018356],[121,214,71,-0.549387838691473],[121,214,72,-0.5521185472607613],[121,214,73,-0.5540387257933617],[121,214,74,-0.554715171456337],[121,214,75,-0.5541062392294407],[121,214,76,-0.5521560907363892],[121,214,77,-0.5491077862679958],[121,214,78,-0.5453321486711502],[121,214,79,-0.5411497838795185],[121,215,64,-0.5490449965000153],[121,215,65,-0.548549011349678],[121,215,66,-0.5468972250819206],[121,215,67,-0.5450501218438148],[121,215,68,-0.5441530272364616],[121,215,69,-0.5448597259819508],[121,215,70,-0.5468904227018356],[121,215,71,-0.549387838691473],[121,215,72,-0.5521185472607613],[121,215,73,-0.5540387257933617],[121,215,74,-0.554715171456337],[121,215,75,-0.5541062392294407],[121,215,76,-0.5521560907363892],[121,215,77,-0.5491077862679958],[121,215,78,-0.5453321486711502],[121,215,79,-0.5411497838795185],[121,216,64,-0.5490449965000153],[121,216,65,-0.548549011349678],[121,216,66,-0.5468972250819206],[121,216,67,-0.5450501218438148],[121,216,68,-0.5441530272364616],[121,216,69,-0.5448597259819508],[121,216,70,-0.5468904227018356],[121,216,71,-0.549387838691473],[121,216,72,-0.5521185472607613],[121,216,73,-0.5540387257933617],[121,216,74,-0.554715171456337],[121,216,75,-0.5541062392294407],[121,216,76,-0.5521560907363892],[121,216,77,-0.5491077862679958],[121,216,78,-0.5453321486711502],[121,216,79,-0.5411497838795185],[121,217,64,-0.5490449965000153],[121,217,65,-0.548549011349678],[121,217,66,-0.5468972250819206],[121,217,67,-0.5450501218438148],[121,217,68,-0.5441530272364616],[121,217,69,-0.5448597259819508],[121,217,70,-0.5468904227018356],[121,217,71,-0.549387838691473],[121,217,72,-0.5521185472607613],[121,217,73,-0.5540387257933617],[121,217,74,-0.554715171456337],[121,217,75,-0.5541062392294407],[121,217,76,-0.5521560907363892],[121,217,77,-0.5491077862679958],[121,217,78,-0.5453321486711502],[121,217,79,-0.5411497838795185],[121,218,64,-0.5490449965000153],[121,218,65,-0.548549011349678],[121,218,66,-0.5468972250819206],[121,218,67,-0.5450501218438148],[121,218,68,-0.5441530272364616],[121,218,69,-0.5448597259819508],[121,218,70,-0.5468904227018356],[121,218,71,-0.549387838691473],[121,218,72,-0.5521185472607613],[121,218,73,-0.5540387257933617],[121,218,74,-0.554715171456337],[121,218,75,-0.5541062392294407],[121,218,76,-0.5521560907363892],[121,218,77,-0.5491077862679958],[121,218,78,-0.5453321486711502],[121,218,79,-0.5411497838795185],[121,219,64,-0.5490449965000153],[121,219,65,-0.548549011349678],[121,219,66,-0.5468972250819206],[121,219,67,-0.5450501218438148],[121,219,68,-0.5441530272364616],[121,219,69,-0.5448597259819508],[121,219,70,-0.5468904227018356],[121,219,71,-0.549387838691473],[121,219,72,-0.5521185472607613],[121,219,73,-0.5540387257933617],[121,219,74,-0.554715171456337],[121,219,75,-0.5541062392294407],[121,219,76,-0.5521560907363892],[121,219,77,-0.5491077862679958],[121,219,78,-0.5453321486711502],[121,219,79,-0.5411497838795185],[121,220,64,-0.5490449965000153],[121,220,65,-0.548549011349678],[121,220,66,-0.5468972250819206],[121,220,67,-0.5450501218438148],[121,220,68,-0.5441530272364616],[121,220,69,-0.5448597259819508],[121,220,70,-0.5468904227018356],[121,220,71,-0.549387838691473],[121,220,72,-0.5521185472607613],[121,220,73,-0.5540387257933617],[121,220,74,-0.554715171456337],[121,220,75,-0.5541062392294407],[121,220,76,-0.5521560907363892],[121,220,77,-0.5491077862679958],[121,220,78,-0.5453321486711502],[121,220,79,-0.5411497838795185],[121,221,64,-0.5490449965000153],[121,221,65,-0.548549011349678],[121,221,66,-0.5468972250819206],[121,221,67,-0.5450501218438148],[121,221,68,-0.5441530272364616],[121,221,69,-0.5448597259819508],[121,221,70,-0.5468904227018356],[121,221,71,-0.549387838691473],[121,221,72,-0.5521185472607613],[121,221,73,-0.5540387257933617],[121,221,74,-0.554715171456337],[121,221,75,-0.5541062392294407],[121,221,76,-0.5521560907363892],[121,221,77,-0.5491077862679958],[121,221,78,-0.5453321486711502],[121,221,79,-0.5411497838795185],[121,222,64,-0.5490449965000153],[121,222,65,-0.548549011349678],[121,222,66,-0.5468972250819206],[121,222,67,-0.5450501218438148],[121,222,68,-0.5441530272364616],[121,222,69,-0.5448597259819508],[121,222,70,-0.5468904227018356],[121,222,71,-0.549387838691473],[121,222,72,-0.5521185472607613],[121,222,73,-0.5540387257933617],[121,222,74,-0.554715171456337],[121,222,75,-0.5541062392294407],[121,222,76,-0.5521560907363892],[121,222,77,-0.5491077862679958],[121,222,78,-0.5453321486711502],[121,222,79,-0.5411497838795185],[121,223,64,-0.5490449965000153],[121,223,65,-0.548549011349678],[121,223,66,-0.5468972250819206],[121,223,67,-0.5450501218438148],[121,223,68,-0.5441530272364616],[121,223,69,-0.5448597259819508],[121,223,70,-0.5468904227018356],[121,223,71,-0.549387838691473],[121,223,72,-0.5521185472607613],[121,223,73,-0.5540387257933617],[121,223,74,-0.554715171456337],[121,223,75,-0.5541062392294407],[121,223,76,-0.5521560907363892],[121,223,77,-0.5491077862679958],[121,223,78,-0.5453321486711502],[121,223,79,-0.5411497838795185],[121,224,64,-0.5490449965000153],[121,224,65,-0.548549011349678],[121,224,66,-0.5468972250819206],[121,224,67,-0.5450501218438148],[121,224,68,-0.5441530272364616],[121,224,69,-0.5448597259819508],[121,224,70,-0.5468904227018356],[121,224,71,-0.549387838691473],[121,224,72,-0.5521185472607613],[121,224,73,-0.5540387257933617],[121,224,74,-0.554715171456337],[121,224,75,-0.5541062392294407],[121,224,76,-0.5521560907363892],[121,224,77,-0.5491077862679958],[121,224,78,-0.5453321486711502],[121,224,79,-0.5411497838795185],[121,225,64,-0.5490449965000153],[121,225,65,-0.548549011349678],[121,225,66,-0.5468972250819206],[121,225,67,-0.5450501218438148],[121,225,68,-0.5441530272364616],[121,225,69,-0.5448597259819508],[121,225,70,-0.5468904227018356],[121,225,71,-0.549387838691473],[121,225,72,-0.5521185472607613],[121,225,73,-0.5540387257933617],[121,225,74,-0.554715171456337],[121,225,75,-0.5541062392294407],[121,225,76,-0.5521560907363892],[121,225,77,-0.5491077862679958],[121,225,78,-0.5453321486711502],[121,225,79,-0.5411497838795185],[121,226,64,-0.5490449965000153],[121,226,65,-0.548549011349678],[121,226,66,-0.5468972250819206],[121,226,67,-0.5450501218438148],[121,226,68,-0.5441530272364616],[121,226,69,-0.5448597259819508],[121,226,70,-0.5468904227018356],[121,226,71,-0.549387838691473],[121,226,72,-0.5521185472607613],[121,226,73,-0.5540387257933617],[121,226,74,-0.554715171456337],[121,226,75,-0.5541062392294407],[121,226,76,-0.5521560907363892],[121,226,77,-0.5491077862679958],[121,226,78,-0.5453321486711502],[121,226,79,-0.5411497838795185],[121,227,64,-0.5490449965000153],[121,227,65,-0.548549011349678],[121,227,66,-0.5468972250819206],[121,227,67,-0.5450501218438148],[121,227,68,-0.5441530272364616],[121,227,69,-0.5448597259819508],[121,227,70,-0.5468904227018356],[121,227,71,-0.549387838691473],[121,227,72,-0.5521185472607613],[121,227,73,-0.5540387257933617],[121,227,74,-0.554715171456337],[121,227,75,-0.5541062392294407],[121,227,76,-0.5521560907363892],[121,227,77,-0.5491077862679958],[121,227,78,-0.5453321486711502],[121,227,79,-0.5411497838795185],[121,228,64,-0.5490449965000153],[121,228,65,-0.548549011349678],[121,228,66,-0.5468972250819206],[121,228,67,-0.5450501218438148],[121,228,68,-0.5441530272364616],[121,228,69,-0.5448597259819508],[121,228,70,-0.5468904227018356],[121,228,71,-0.549387838691473],[121,228,72,-0.5521185472607613],[121,228,73,-0.5540387257933617],[121,228,74,-0.554715171456337],[121,228,75,-0.5541062392294407],[121,228,76,-0.5521560907363892],[121,228,77,-0.5491077862679958],[121,228,78,-0.5453321486711502],[121,228,79,-0.5411497838795185],[121,229,64,-0.5490449965000153],[121,229,65,-0.548549011349678],[121,229,66,-0.5468972250819206],[121,229,67,-0.5450501218438148],[121,229,68,-0.5441530272364616],[121,229,69,-0.5448597259819508],[121,229,70,-0.5468904227018356],[121,229,71,-0.549387838691473],[121,229,72,-0.5521185472607613],[121,229,73,-0.5540387257933617],[121,229,74,-0.554715171456337],[121,229,75,-0.5541062392294407],[121,229,76,-0.5521560907363892],[121,229,77,-0.5491077862679958],[121,229,78,-0.5453321486711502],[121,229,79,-0.5411497838795185],[121,230,64,-0.5490449965000153],[121,230,65,-0.548549011349678],[121,230,66,-0.5468972250819206],[121,230,67,-0.5450501218438148],[121,230,68,-0.5441530272364616],[121,230,69,-0.5448597259819508],[121,230,70,-0.5468904227018356],[121,230,71,-0.549387838691473],[121,230,72,-0.5521185472607613],[121,230,73,-0.5540387257933617],[121,230,74,-0.554715171456337],[121,230,75,-0.5541062392294407],[121,230,76,-0.5521560907363892],[121,230,77,-0.5491077862679958],[121,230,78,-0.5453321486711502],[121,230,79,-0.5411497838795185],[121,231,64,-0.5490449965000153],[121,231,65,-0.548549011349678],[121,231,66,-0.5468972250819206],[121,231,67,-0.5450501218438148],[121,231,68,-0.5441530272364616],[121,231,69,-0.5448597259819508],[121,231,70,-0.5468904227018356],[121,231,71,-0.549387838691473],[121,231,72,-0.5521185472607613],[121,231,73,-0.5540387257933617],[121,231,74,-0.554715171456337],[121,231,75,-0.5541062392294407],[121,231,76,-0.5521560907363892],[121,231,77,-0.5491077862679958],[121,231,78,-0.5453321486711502],[121,231,79,-0.5411497838795185],[121,232,64,-0.5490449965000153],[121,232,65,-0.548549011349678],[121,232,66,-0.5468972250819206],[121,232,67,-0.5450501218438148],[121,232,68,-0.5441530272364616],[121,232,69,-0.5448597259819508],[121,232,70,-0.5468904227018356],[121,232,71,-0.549387838691473],[121,232,72,-0.5521185472607613],[121,232,73,-0.5540387257933617],[121,232,74,-0.554715171456337],[121,232,75,-0.5541062392294407],[121,232,76,-0.5521560907363892],[121,232,77,-0.5491077862679958],[121,232,78,-0.5453321486711502],[121,232,79,-0.5411497838795185],[121,233,64,-0.5490449965000153],[121,233,65,-0.548549011349678],[121,233,66,-0.5468972250819206],[121,233,67,-0.5450501218438148],[121,233,68,-0.5441530272364616],[121,233,69,-0.5448597259819508],[121,233,70,-0.5468904227018356],[121,233,71,-0.549387838691473],[121,233,72,-0.5521185472607613],[121,233,73,-0.5540387257933617],[121,233,74,-0.554715171456337],[121,233,75,-0.5541062392294407],[121,233,76,-0.5521560907363892],[121,233,77,-0.5491077862679958],[121,233,78,-0.5453321486711502],[121,233,79,-0.5411497838795185],[121,234,64,-0.5490449965000153],[121,234,65,-0.548549011349678],[121,234,66,-0.5468972250819206],[121,234,67,-0.5450501218438148],[121,234,68,-0.5441530272364616],[121,234,69,-0.5448597259819508],[121,234,70,-0.5468904227018356],[121,234,71,-0.549387838691473],[121,234,72,-0.5521185472607613],[121,234,73,-0.5540387257933617],[121,234,74,-0.554715171456337],[121,234,75,-0.5541062392294407],[121,234,76,-0.5521560907363892],[121,234,77,-0.5491077862679958],[121,234,78,-0.5453321486711502],[121,234,79,-0.5411497838795185],[121,235,64,-0.5490449965000153],[121,235,65,-0.548549011349678],[121,235,66,-0.5468972250819206],[121,235,67,-0.5450501218438148],[121,235,68,-0.5441530272364616],[121,235,69,-0.5448597259819508],[121,235,70,-0.5468904227018356],[121,235,71,-0.549387838691473],[121,235,72,-0.5521185472607613],[121,235,73,-0.5540387257933617],[121,235,74,-0.554715171456337],[121,235,75,-0.5541062392294407],[121,235,76,-0.5521560907363892],[121,235,77,-0.5491077862679958],[121,235,78,-0.5453321486711502],[121,235,79,-0.5411497838795185],[121,236,64,-0.5490449965000153],[121,236,65,-0.548549011349678],[121,236,66,-0.5468972250819206],[121,236,67,-0.5450501218438148],[121,236,68,-0.5441530272364616],[121,236,69,-0.5448597259819508],[121,236,70,-0.5468904227018356],[121,236,71,-0.549387838691473],[121,236,72,-0.5521185472607613],[121,236,73,-0.5540387257933617],[121,236,74,-0.554715171456337],[121,236,75,-0.5541062392294407],[121,236,76,-0.5521560907363892],[121,236,77,-0.5491077862679958],[121,236,78,-0.5453321486711502],[121,236,79,-0.5411497838795185],[121,237,64,-0.5490449965000153],[121,237,65,-0.548549011349678],[121,237,66,-0.5468972250819206],[121,237,67,-0.5450501218438148],[121,237,68,-0.5441530272364616],[121,237,69,-0.5448597259819508],[121,237,70,-0.5468904227018356],[121,237,71,-0.549387838691473],[121,237,72,-0.5521185472607613],[121,237,73,-0.5540387257933617],[121,237,74,-0.554715171456337],[121,237,75,-0.5541062392294407],[121,237,76,-0.5521560907363892],[121,237,77,-0.5491077862679958],[121,237,78,-0.5453321486711502],[121,237,79,-0.5411497838795185],[121,238,64,-0.5490449965000153],[121,238,65,-0.548549011349678],[121,238,66,-0.5468972250819206],[121,238,67,-0.5450501218438148],[121,238,68,-0.5441530272364616],[121,238,69,-0.5448597259819508],[121,238,70,-0.5468904227018356],[121,238,71,-0.549387838691473],[121,238,72,-0.5521185472607613],[121,238,73,-0.5540387257933617],[121,238,74,-0.554715171456337],[121,238,75,-0.5541062392294407],[121,238,76,-0.5521560907363892],[121,238,77,-0.5491077862679958],[121,238,78,-0.5453321486711502],[121,238,79,-0.5411497838795185],[121,239,64,-0.5490449965000153],[121,239,65,-0.548549011349678],[121,239,66,-0.5468972250819206],[121,239,67,-0.5450501218438148],[121,239,68,-0.5441530272364616],[121,239,69,-0.5448597259819508],[121,239,70,-0.5468904227018356],[121,239,71,-0.549387838691473],[121,239,72,-0.5521185472607613],[121,239,73,-0.5540387257933617],[121,239,74,-0.554715171456337],[121,239,75,-0.5541062392294407],[121,239,76,-0.5521560907363892],[121,239,77,-0.5491077862679958],[121,239,78,-0.5453321486711502],[121,239,79,-0.5411497838795185],[121,240,64,-0.5490449965000153],[121,240,65,-0.548549011349678],[121,240,66,-0.5468972250819206],[121,240,67,-0.5450501218438148],[121,240,68,-0.5441530272364616],[121,240,69,-0.5448597259819508],[121,240,70,-0.5468904227018356],[121,240,71,-0.549387838691473],[121,240,72,-0.5521185472607613],[121,240,73,-0.5540387257933617],[121,240,74,-0.554715171456337],[121,240,75,-0.5541062392294407],[121,240,76,-0.5521560907363892],[121,240,77,-0.5491077862679958],[121,240,78,-0.5453321486711502],[121,240,79,-0.5411497838795185],[121,241,64,-0.5490449965000153],[121,241,65,-0.548549011349678],[121,241,66,-0.5468972250819206],[121,241,67,-0.5450501218438148],[121,241,68,-0.5441530272364616],[121,241,69,-0.5448597259819508],[121,241,70,-0.5468904227018356],[121,241,71,-0.549387838691473],[121,241,72,-0.5521185472607613],[121,241,73,-0.5540387257933617],[121,241,74,-0.554715171456337],[121,241,75,-0.5541062392294407],[121,241,76,-0.5521560907363892],[121,241,77,-0.5491077862679958],[121,241,78,-0.5453321486711502],[121,241,79,-0.5411497838795185],[121,242,64,-0.5490449965000153],[121,242,65,-0.548549011349678],[121,242,66,-0.5468972250819206],[121,242,67,-0.5450501218438148],[121,242,68,-0.5441530272364616],[121,242,69,-0.5448597259819508],[121,242,70,-0.5468904227018356],[121,242,71,-0.549387838691473],[121,242,72,-0.5521185472607613],[121,242,73,-0.5540387257933617],[121,242,74,-0.554715171456337],[121,242,75,-0.5541062392294407],[121,242,76,-0.5521560907363892],[121,242,77,-0.5491077862679958],[121,242,78,-0.5453321486711502],[121,242,79,-0.5411497838795185],[121,243,64,-0.5490449965000153],[121,243,65,-0.548549011349678],[121,243,66,-0.5468972250819206],[121,243,67,-0.5450501218438148],[121,243,68,-0.5441530272364616],[121,243,69,-0.5448597259819508],[121,243,70,-0.5468904227018356],[121,243,71,-0.549387838691473],[121,243,72,-0.5521185472607613],[121,243,73,-0.5540387257933617],[121,243,74,-0.554715171456337],[121,243,75,-0.5541062392294407],[121,243,76,-0.5521560907363892],[121,243,77,-0.5491077862679958],[121,243,78,-0.5453321486711502],[121,243,79,-0.5411497838795185],[121,244,64,-0.5490449965000153],[121,244,65,-0.548549011349678],[121,244,66,-0.5468972250819206],[121,244,67,-0.5450501218438148],[121,244,68,-0.5441530272364616],[121,244,69,-0.5448597259819508],[121,244,70,-0.5468904227018356],[121,244,71,-0.549387838691473],[121,244,72,-0.5521185472607613],[121,244,73,-0.5540387257933617],[121,244,74,-0.554715171456337],[121,244,75,-0.5541062392294407],[121,244,76,-0.5521560907363892],[121,244,77,-0.5491077862679958],[121,244,78,-0.5453321486711502],[121,244,79,-0.5411497838795185],[121,245,64,-0.5490449965000153],[121,245,65,-0.548549011349678],[121,245,66,-0.5468972250819206],[121,245,67,-0.5450501218438148],[121,245,68,-0.5441530272364616],[121,245,69,-0.5448597259819508],[121,245,70,-0.5468904227018356],[121,245,71,-0.549387838691473],[121,245,72,-0.5521185472607613],[121,245,73,-0.5540387257933617],[121,245,74,-0.554715171456337],[121,245,75,-0.5541062392294407],[121,245,76,-0.5521560907363892],[121,245,77,-0.5491077862679958],[121,245,78,-0.5453321486711502],[121,245,79,-0.5411497838795185],[121,246,64,-0.5490449965000153],[121,246,65,-0.548549011349678],[121,246,66,-0.5468972250819206],[121,246,67,-0.5450501218438148],[121,246,68,-0.5441530272364616],[121,246,69,-0.5448597259819508],[121,246,70,-0.5468904227018356],[121,246,71,-0.549387838691473],[121,246,72,-0.5521185472607613],[121,246,73,-0.5540387257933617],[121,246,74,-0.554715171456337],[121,246,75,-0.5541062392294407],[121,246,76,-0.5521560907363892],[121,246,77,-0.5491077862679958],[121,246,78,-0.5453321486711502],[121,246,79,-0.5411497838795185],[121,247,64,-0.5490449965000153],[121,247,65,-0.548549011349678],[121,247,66,-0.5468972250819206],[121,247,67,-0.5450501218438148],[121,247,68,-0.5441530272364616],[121,247,69,-0.5448597259819508],[121,247,70,-0.5468904227018356],[121,247,71,-0.549387838691473],[121,247,72,-0.5521185472607613],[121,247,73,-0.5540387257933617],[121,247,74,-0.554715171456337],[121,247,75,-0.5541062392294407],[121,247,76,-0.5521560907363892],[121,247,77,-0.5491077862679958],[121,247,78,-0.5453321486711502],[121,247,79,-0.5411497838795185],[121,248,64,-0.5490449965000153],[121,248,65,-0.548549011349678],[121,248,66,-0.5468972250819206],[121,248,67,-0.5450501218438148],[121,248,68,-0.5441530272364616],[121,248,69,-0.5448597259819508],[121,248,70,-0.5468904227018356],[121,248,71,-0.549387838691473],[121,248,72,-0.5521185472607613],[121,248,73,-0.5540387257933617],[121,248,74,-0.554715171456337],[121,248,75,-0.5541062392294407],[121,248,76,-0.5521560907363892],[121,248,77,-0.5491077862679958],[121,248,78,-0.5453321486711502],[121,248,79,-0.5411497838795185],[121,249,64,-0.5490449965000153],[121,249,65,-0.548549011349678],[121,249,66,-0.5468972250819206],[121,249,67,-0.5450501218438148],[121,249,68,-0.5441530272364616],[121,249,69,-0.5448597259819508],[121,249,70,-0.5468904227018356],[121,249,71,-0.549387838691473],[121,249,72,-0.5521185472607613],[121,249,73,-0.5540387257933617],[121,249,74,-0.554715171456337],[121,249,75,-0.5541062392294407],[121,249,76,-0.5521560907363892],[121,249,77,-0.5491077862679958],[121,249,78,-0.5453321486711502],[121,249,79,-0.5411497838795185],[121,250,64,-0.5490449965000153],[121,250,65,-0.548549011349678],[121,250,66,-0.5468972250819206],[121,250,67,-0.5450501218438148],[121,250,68,-0.5441530272364616],[121,250,69,-0.5448597259819508],[121,250,70,-0.5468904227018356],[121,250,71,-0.549387838691473],[121,250,72,-0.5521185472607613],[121,250,73,-0.5540387257933617],[121,250,74,-0.554715171456337],[121,250,75,-0.5541062392294407],[121,250,76,-0.5521560907363892],[121,250,77,-0.5491077862679958],[121,250,78,-0.5453321486711502],[121,250,79,-0.5411497838795185],[121,251,64,-0.5490449965000153],[121,251,65,-0.548549011349678],[121,251,66,-0.5468972250819206],[121,251,67,-0.5450501218438148],[121,251,68,-0.5441530272364616],[121,251,69,-0.5448597259819508],[121,251,70,-0.5468904227018356],[121,251,71,-0.549387838691473],[121,251,72,-0.5521185472607613],[121,251,73,-0.5540387257933617],[121,251,74,-0.554715171456337],[121,251,75,-0.5541062392294407],[121,251,76,-0.5521560907363892],[121,251,77,-0.5491077862679958],[121,251,78,-0.5453321486711502],[121,251,79,-0.5411497838795185],[121,252,64,-0.5490449965000153],[121,252,65,-0.548549011349678],[121,252,66,-0.5468972250819206],[121,252,67,-0.5450501218438148],[121,252,68,-0.5441530272364616],[121,252,69,-0.5448597259819508],[121,252,70,-0.5468904227018356],[121,252,71,-0.549387838691473],[121,252,72,-0.5521185472607613],[121,252,73,-0.5540387257933617],[121,252,74,-0.554715171456337],[121,252,75,-0.5541062392294407],[121,252,76,-0.5521560907363892],[121,252,77,-0.5491077862679958],[121,252,78,-0.5453321486711502],[121,252,79,-0.5411497838795185],[121,253,64,-0.5490449965000153],[121,253,65,-0.548549011349678],[121,253,66,-0.5468972250819206],[121,253,67,-0.5450501218438148],[121,253,68,-0.5441530272364616],[121,253,69,-0.5448597259819508],[121,253,70,-0.5468904227018356],[121,253,71,-0.549387838691473],[121,253,72,-0.5521185472607613],[121,253,73,-0.5540387257933617],[121,253,74,-0.554715171456337],[121,253,75,-0.5541062392294407],[121,253,76,-0.5521560907363892],[121,253,77,-0.5491077862679958],[121,253,78,-0.5453321486711502],[121,253,79,-0.5411497838795185],[121,254,64,-0.5490449965000153],[121,254,65,-0.548549011349678],[121,254,66,-0.5468972250819206],[121,254,67,-0.5450501218438148],[121,254,68,-0.5441530272364616],[121,254,69,-0.5448597259819508],[121,254,70,-0.5468904227018356],[121,254,71,-0.549387838691473],[121,254,72,-0.5521185472607613],[121,254,73,-0.5540387257933617],[121,254,74,-0.554715171456337],[121,254,75,-0.5541062392294407],[121,254,76,-0.5521560907363892],[121,254,77,-0.5491077862679958],[121,254,78,-0.5453321486711502],[121,254,79,-0.5411497838795185],[121,255,64,-0.5490449965000153],[121,255,65,-0.548549011349678],[121,255,66,-0.5468972250819206],[121,255,67,-0.5450501218438148],[121,255,68,-0.5441530272364616],[121,255,69,-0.5448597259819508],[121,255,70,-0.5468904227018356],[121,255,71,-0.549387838691473],[121,255,72,-0.5521185472607613],[121,255,73,-0.5540387257933617],[121,255,74,-0.554715171456337],[121,255,75,-0.5541062392294407],[121,255,76,-0.5521560907363892],[121,255,77,-0.5491077862679958],[121,255,78,-0.5453321486711502],[121,255,79,-0.5411497838795185],[121,256,64,-0.5490449965000153],[121,256,65,-0.548549011349678],[121,256,66,-0.5468972250819206],[121,256,67,-0.5450501218438148],[121,256,68,-0.5441530272364616],[121,256,69,-0.5448597259819508],[121,256,70,-0.5468904227018356],[121,256,71,-0.549387838691473],[121,256,72,-0.5521185472607613],[121,256,73,-0.5540387257933617],[121,256,74,-0.554715171456337],[121,256,75,-0.5541062392294407],[121,256,76,-0.5521560907363892],[121,256,77,-0.5491077862679958],[121,256,78,-0.5453321486711502],[121,256,79,-0.5411497838795185],[121,257,64,-0.5490449965000153],[121,257,65,-0.548549011349678],[121,257,66,-0.5468972250819206],[121,257,67,-0.5450501218438148],[121,257,68,-0.5441530272364616],[121,257,69,-0.5448597259819508],[121,257,70,-0.5468904227018356],[121,257,71,-0.549387838691473],[121,257,72,-0.5521185472607613],[121,257,73,-0.5540387257933617],[121,257,74,-0.554715171456337],[121,257,75,-0.5541062392294407],[121,257,76,-0.5521560907363892],[121,257,77,-0.5491077862679958],[121,257,78,-0.5453321486711502],[121,257,79,-0.5411497838795185],[121,258,64,-0.5490449965000153],[121,258,65,-0.548549011349678],[121,258,66,-0.5468972250819206],[121,258,67,-0.5450501218438148],[121,258,68,-0.5441530272364616],[121,258,69,-0.5448597259819508],[121,258,70,-0.5468904227018356],[121,258,71,-0.549387838691473],[121,258,72,-0.5521185472607613],[121,258,73,-0.5540387257933617],[121,258,74,-0.554715171456337],[121,258,75,-0.5541062392294407],[121,258,76,-0.5521560907363892],[121,258,77,-0.5491077862679958],[121,258,78,-0.5453321486711502],[121,258,79,-0.5411497838795185],[121,259,64,-0.5490449965000153],[121,259,65,-0.548549011349678],[121,259,66,-0.5468972250819206],[121,259,67,-0.5450501218438148],[121,259,68,-0.5441530272364616],[121,259,69,-0.5448597259819508],[121,259,70,-0.5468904227018356],[121,259,71,-0.549387838691473],[121,259,72,-0.5521185472607613],[121,259,73,-0.5540387257933617],[121,259,74,-0.554715171456337],[121,259,75,-0.5541062392294407],[121,259,76,-0.5521560907363892],[121,259,77,-0.5491077862679958],[121,259,78,-0.5453321486711502],[121,259,79,-0.5411497838795185],[121,260,64,-0.5490449965000153],[121,260,65,-0.548549011349678],[121,260,66,-0.5468972250819206],[121,260,67,-0.5450501218438148],[121,260,68,-0.5441530272364616],[121,260,69,-0.5448597259819508],[121,260,70,-0.5468904227018356],[121,260,71,-0.549387838691473],[121,260,72,-0.5521185472607613],[121,260,73,-0.5540387257933617],[121,260,74,-0.554715171456337],[121,260,75,-0.5541062392294407],[121,260,76,-0.5521560907363892],[121,260,77,-0.5491077862679958],[121,260,78,-0.5453321486711502],[121,260,79,-0.5411497838795185],[121,261,64,-0.5490449965000153],[121,261,65,-0.548549011349678],[121,261,66,-0.5468972250819206],[121,261,67,-0.5450501218438148],[121,261,68,-0.5441530272364616],[121,261,69,-0.5448597259819508],[121,261,70,-0.5468904227018356],[121,261,71,-0.549387838691473],[121,261,72,-0.5521185472607613],[121,261,73,-0.5540387257933617],[121,261,74,-0.554715171456337],[121,261,75,-0.5541062392294407],[121,261,76,-0.5521560907363892],[121,261,77,-0.5491077862679958],[121,261,78,-0.5453321486711502],[121,261,79,-0.5411497838795185],[121,262,64,-0.5490449965000153],[121,262,65,-0.548549011349678],[121,262,66,-0.5468972250819206],[121,262,67,-0.5450501218438148],[121,262,68,-0.5441530272364616],[121,262,69,-0.5448597259819508],[121,262,70,-0.5468904227018356],[121,262,71,-0.549387838691473],[121,262,72,-0.5521185472607613],[121,262,73,-0.5540387257933617],[121,262,74,-0.554715171456337],[121,262,75,-0.5541062392294407],[121,262,76,-0.5521560907363892],[121,262,77,-0.5491077862679958],[121,262,78,-0.5453321486711502],[121,262,79,-0.5411497838795185],[121,263,64,-0.5490449965000153],[121,263,65,-0.548549011349678],[121,263,66,-0.5468972250819206],[121,263,67,-0.5450501218438148],[121,263,68,-0.5441530272364616],[121,263,69,-0.5448597259819508],[121,263,70,-0.5468904227018356],[121,263,71,-0.549387838691473],[121,263,72,-0.5521185472607613],[121,263,73,-0.5540387257933617],[121,263,74,-0.554715171456337],[121,263,75,-0.5541062392294407],[121,263,76,-0.5521560907363892],[121,263,77,-0.5491077862679958],[121,263,78,-0.5453321486711502],[121,263,79,-0.5411497838795185],[121,264,64,-0.5490449965000153],[121,264,65,-0.548549011349678],[121,264,66,-0.5468972250819206],[121,264,67,-0.5450501218438148],[121,264,68,-0.5441530272364616],[121,264,69,-0.5448597259819508],[121,264,70,-0.5468904227018356],[121,264,71,-0.549387838691473],[121,264,72,-0.5521185472607613],[121,264,73,-0.5540387257933617],[121,264,74,-0.554715171456337],[121,264,75,-0.5541062392294407],[121,264,76,-0.5521560907363892],[121,264,77,-0.5491077862679958],[121,264,78,-0.5453321486711502],[121,264,79,-0.5411497838795185],[121,265,64,-0.5490449965000153],[121,265,65,-0.548549011349678],[121,265,66,-0.5468972250819206],[121,265,67,-0.5450501218438148],[121,265,68,-0.5441530272364616],[121,265,69,-0.5448597259819508],[121,265,70,-0.5468904227018356],[121,265,71,-0.549387838691473],[121,265,72,-0.5521185472607613],[121,265,73,-0.5540387257933617],[121,265,74,-0.554715171456337],[121,265,75,-0.5541062392294407],[121,265,76,-0.5521560907363892],[121,265,77,-0.5491077862679958],[121,265,78,-0.5453321486711502],[121,265,79,-0.5411497838795185],[121,266,64,-0.5490449965000153],[121,266,65,-0.548549011349678],[121,266,66,-0.5468972250819206],[121,266,67,-0.5450501218438148],[121,266,68,-0.5441530272364616],[121,266,69,-0.5448597259819508],[121,266,70,-0.5468904227018356],[121,266,71,-0.549387838691473],[121,266,72,-0.5521185472607613],[121,266,73,-0.5540387257933617],[121,266,74,-0.554715171456337],[121,266,75,-0.5541062392294407],[121,266,76,-0.5521560907363892],[121,266,77,-0.5491077862679958],[121,266,78,-0.5453321486711502],[121,266,79,-0.5411497838795185],[121,267,64,-0.5490449965000153],[121,267,65,-0.548549011349678],[121,267,66,-0.5468972250819206],[121,267,67,-0.5450501218438148],[121,267,68,-0.5441530272364616],[121,267,69,-0.5448597259819508],[121,267,70,-0.5468904227018356],[121,267,71,-0.549387838691473],[121,267,72,-0.5521185472607613],[121,267,73,-0.5540387257933617],[121,267,74,-0.554715171456337],[121,267,75,-0.5541062392294407],[121,267,76,-0.5521560907363892],[121,267,77,-0.5491077862679958],[121,267,78,-0.5453321486711502],[121,267,79,-0.5411497838795185],[121,268,64,-0.5490449965000153],[121,268,65,-0.548549011349678],[121,268,66,-0.5468972250819206],[121,268,67,-0.5450501218438148],[121,268,68,-0.5441530272364616],[121,268,69,-0.5448597259819508],[121,268,70,-0.5468904227018356],[121,268,71,-0.549387838691473],[121,268,72,-0.5521185472607613],[121,268,73,-0.5540387257933617],[121,268,74,-0.554715171456337],[121,268,75,-0.5541062392294407],[121,268,76,-0.5521560907363892],[121,268,77,-0.5491077862679958],[121,268,78,-0.5453321486711502],[121,268,79,-0.5411497838795185],[121,269,64,-0.5490449965000153],[121,269,65,-0.548549011349678],[121,269,66,-0.5468972250819206],[121,269,67,-0.5450501218438148],[121,269,68,-0.5441530272364616],[121,269,69,-0.5448597259819508],[121,269,70,-0.5468904227018356],[121,269,71,-0.549387838691473],[121,269,72,-0.5521185472607613],[121,269,73,-0.5540387257933617],[121,269,74,-0.554715171456337],[121,269,75,-0.5541062392294407],[121,269,76,-0.5521560907363892],[121,269,77,-0.5491077862679958],[121,269,78,-0.5453321486711502],[121,269,79,-0.5411497838795185],[121,270,64,-0.5490449965000153],[121,270,65,-0.548549011349678],[121,270,66,-0.5468972250819206],[121,270,67,-0.5450501218438148],[121,270,68,-0.5441530272364616],[121,270,69,-0.5448597259819508],[121,270,70,-0.5468904227018356],[121,270,71,-0.549387838691473],[121,270,72,-0.5521185472607613],[121,270,73,-0.5540387257933617],[121,270,74,-0.554715171456337],[121,270,75,-0.5541062392294407],[121,270,76,-0.5521560907363892],[121,270,77,-0.5491077862679958],[121,270,78,-0.5453321486711502],[121,270,79,-0.5411497838795185],[121,271,64,-0.5490449965000153],[121,271,65,-0.548549011349678],[121,271,66,-0.5468972250819206],[121,271,67,-0.5450501218438148],[121,271,68,-0.5441530272364616],[121,271,69,-0.5448597259819508],[121,271,70,-0.5468904227018356],[121,271,71,-0.549387838691473],[121,271,72,-0.5521185472607613],[121,271,73,-0.5540387257933617],[121,271,74,-0.554715171456337],[121,271,75,-0.5541062392294407],[121,271,76,-0.5521560907363892],[121,271,77,-0.5491077862679958],[121,271,78,-0.5453321486711502],[121,271,79,-0.5411497838795185],[121,272,64,-0.5490449965000153],[121,272,65,-0.548549011349678],[121,272,66,-0.5468972250819206],[121,272,67,-0.5450501218438148],[121,272,68,-0.5441530272364616],[121,272,69,-0.5448597259819508],[121,272,70,-0.5468904227018356],[121,272,71,-0.549387838691473],[121,272,72,-0.5521185472607613],[121,272,73,-0.5540387257933617],[121,272,74,-0.554715171456337],[121,272,75,-0.5541062392294407],[121,272,76,-0.5521560907363892],[121,272,77,-0.5491077862679958],[121,272,78,-0.5453321486711502],[121,272,79,-0.5411497838795185],[121,273,64,-0.5490449965000153],[121,273,65,-0.548549011349678],[121,273,66,-0.5468972250819206],[121,273,67,-0.5450501218438148],[121,273,68,-0.5441530272364616],[121,273,69,-0.5448597259819508],[121,273,70,-0.5468904227018356],[121,273,71,-0.549387838691473],[121,273,72,-0.5521185472607613],[121,273,73,-0.5540387257933617],[121,273,74,-0.554715171456337],[121,273,75,-0.5541062392294407],[121,273,76,-0.5521560907363892],[121,273,77,-0.5491077862679958],[121,273,78,-0.5453321486711502],[121,273,79,-0.5411497838795185],[121,274,64,-0.5490449965000153],[121,274,65,-0.548549011349678],[121,274,66,-0.5468972250819206],[121,274,67,-0.5450501218438148],[121,274,68,-0.5441530272364616],[121,274,69,-0.5448597259819508],[121,274,70,-0.5468904227018356],[121,274,71,-0.549387838691473],[121,274,72,-0.5521185472607613],[121,274,73,-0.5540387257933617],[121,274,74,-0.554715171456337],[121,274,75,-0.5541062392294407],[121,274,76,-0.5521560907363892],[121,274,77,-0.5491077862679958],[121,274,78,-0.5453321486711502],[121,274,79,-0.5411497838795185],[121,275,64,-0.5490449965000153],[121,275,65,-0.548549011349678],[121,275,66,-0.5468972250819206],[121,275,67,-0.5450501218438148],[121,275,68,-0.5441530272364616],[121,275,69,-0.5448597259819508],[121,275,70,-0.5468904227018356],[121,275,71,-0.549387838691473],[121,275,72,-0.5521185472607613],[121,275,73,-0.5540387257933617],[121,275,74,-0.554715171456337],[121,275,75,-0.5541062392294407],[121,275,76,-0.5521560907363892],[121,275,77,-0.5491077862679958],[121,275,78,-0.5453321486711502],[121,275,79,-0.5411497838795185],[121,276,64,-0.5490449965000153],[121,276,65,-0.548549011349678],[121,276,66,-0.5468972250819206],[121,276,67,-0.5450501218438148],[121,276,68,-0.5441530272364616],[121,276,69,-0.5448597259819508],[121,276,70,-0.5468904227018356],[121,276,71,-0.549387838691473],[121,276,72,-0.5521185472607613],[121,276,73,-0.5540387257933617],[121,276,74,-0.554715171456337],[121,276,75,-0.5541062392294407],[121,276,76,-0.5521560907363892],[121,276,77,-0.5491077862679958],[121,276,78,-0.5453321486711502],[121,276,79,-0.5411497838795185],[121,277,64,-0.5490449965000153],[121,277,65,-0.548549011349678],[121,277,66,-0.5468972250819206],[121,277,67,-0.5450501218438148],[121,277,68,-0.5441530272364616],[121,277,69,-0.5448597259819508],[121,277,70,-0.5468904227018356],[121,277,71,-0.549387838691473],[121,277,72,-0.5521185472607613],[121,277,73,-0.5540387257933617],[121,277,74,-0.554715171456337],[121,277,75,-0.5541062392294407],[121,277,76,-0.5521560907363892],[121,277,77,-0.5491077862679958],[121,277,78,-0.5453321486711502],[121,277,79,-0.5411497838795185],[121,278,64,-0.5490449965000153],[121,278,65,-0.548549011349678],[121,278,66,-0.5468972250819206],[121,278,67,-0.5450501218438148],[121,278,68,-0.5441530272364616],[121,278,69,-0.5448597259819508],[121,278,70,-0.5468904227018356],[121,278,71,-0.549387838691473],[121,278,72,-0.5521185472607613],[121,278,73,-0.5540387257933617],[121,278,74,-0.554715171456337],[121,278,75,-0.5541062392294407],[121,278,76,-0.5521560907363892],[121,278,77,-0.5491077862679958],[121,278,78,-0.5453321486711502],[121,278,79,-0.5411497838795185],[121,279,64,-0.5490449965000153],[121,279,65,-0.548549011349678],[121,279,66,-0.5468972250819206],[121,279,67,-0.5450501218438148],[121,279,68,-0.5441530272364616],[121,279,69,-0.5448597259819508],[121,279,70,-0.5468904227018356],[121,279,71,-0.549387838691473],[121,279,72,-0.5521185472607613],[121,279,73,-0.5540387257933617],[121,279,74,-0.554715171456337],[121,279,75,-0.5541062392294407],[121,279,76,-0.5521560907363892],[121,279,77,-0.5491077862679958],[121,279,78,-0.5453321486711502],[121,279,79,-0.5411497838795185],[121,280,64,-0.5490449965000153],[121,280,65,-0.548549011349678],[121,280,66,-0.5468972250819206],[121,280,67,-0.5450501218438148],[121,280,68,-0.5441530272364616],[121,280,69,-0.5448597259819508],[121,280,70,-0.5468904227018356],[121,280,71,-0.549387838691473],[121,280,72,-0.5521185472607613],[121,280,73,-0.5540387257933617],[121,280,74,-0.554715171456337],[121,280,75,-0.5541062392294407],[121,280,76,-0.5521560907363892],[121,280,77,-0.5491077862679958],[121,280,78,-0.5453321486711502],[121,280,79,-0.5411497838795185],[121,281,64,-0.5490449965000153],[121,281,65,-0.548549011349678],[121,281,66,-0.5468972250819206],[121,281,67,-0.5450501218438148],[121,281,68,-0.5441530272364616],[121,281,69,-0.5448597259819508],[121,281,70,-0.5468904227018356],[121,281,71,-0.549387838691473],[121,281,72,-0.5521185472607613],[121,281,73,-0.5540387257933617],[121,281,74,-0.554715171456337],[121,281,75,-0.5541062392294407],[121,281,76,-0.5521560907363892],[121,281,77,-0.5491077862679958],[121,281,78,-0.5453321486711502],[121,281,79,-0.5411497838795185],[121,282,64,-0.5490449965000153],[121,282,65,-0.548549011349678],[121,282,66,-0.5468972250819206],[121,282,67,-0.5450501218438148],[121,282,68,-0.5441530272364616],[121,282,69,-0.5448597259819508],[121,282,70,-0.5468904227018356],[121,282,71,-0.549387838691473],[121,282,72,-0.5521185472607613],[121,282,73,-0.5540387257933617],[121,282,74,-0.554715171456337],[121,282,75,-0.5541062392294407],[121,282,76,-0.5521560907363892],[121,282,77,-0.5491077862679958],[121,282,78,-0.5453321486711502],[121,282,79,-0.5411497838795185],[121,283,64,-0.5490449965000153],[121,283,65,-0.548549011349678],[121,283,66,-0.5468972250819206],[121,283,67,-0.5450501218438148],[121,283,68,-0.5441530272364616],[121,283,69,-0.5448597259819508],[121,283,70,-0.5468904227018356],[121,283,71,-0.549387838691473],[121,283,72,-0.5521185472607613],[121,283,73,-0.5540387257933617],[121,283,74,-0.554715171456337],[121,283,75,-0.5541062392294407],[121,283,76,-0.5521560907363892],[121,283,77,-0.5491077862679958],[121,283,78,-0.5453321486711502],[121,283,79,-0.5411497838795185],[121,284,64,-0.5490449965000153],[121,284,65,-0.548549011349678],[121,284,66,-0.5468972250819206],[121,284,67,-0.5450501218438148],[121,284,68,-0.5441530272364616],[121,284,69,-0.5448597259819508],[121,284,70,-0.5468904227018356],[121,284,71,-0.549387838691473],[121,284,72,-0.5521185472607613],[121,284,73,-0.5540387257933617],[121,284,74,-0.554715171456337],[121,284,75,-0.5541062392294407],[121,284,76,-0.5521560907363892],[121,284,77,-0.5491077862679958],[121,284,78,-0.5453321486711502],[121,284,79,-0.5411497838795185],[121,285,64,-0.5490449965000153],[121,285,65,-0.548549011349678],[121,285,66,-0.5468972250819206],[121,285,67,-0.5450501218438148],[121,285,68,-0.5441530272364616],[121,285,69,-0.5448597259819508],[121,285,70,-0.5468904227018356],[121,285,71,-0.549387838691473],[121,285,72,-0.5521185472607613],[121,285,73,-0.5540387257933617],[121,285,74,-0.554715171456337],[121,285,75,-0.5541062392294407],[121,285,76,-0.5521560907363892],[121,285,77,-0.5491077862679958],[121,285,78,-0.5453321486711502],[121,285,79,-0.5411497838795185],[121,286,64,-0.5490449965000153],[121,286,65,-0.548549011349678],[121,286,66,-0.5468972250819206],[121,286,67,-0.5450501218438148],[121,286,68,-0.5441530272364616],[121,286,69,-0.5448597259819508],[121,286,70,-0.5468904227018356],[121,286,71,-0.549387838691473],[121,286,72,-0.5521185472607613],[121,286,73,-0.5540387257933617],[121,286,74,-0.554715171456337],[121,286,75,-0.5541062392294407],[121,286,76,-0.5521560907363892],[121,286,77,-0.5491077862679958],[121,286,78,-0.5453321486711502],[121,286,79,-0.5411497838795185],[121,287,64,-0.5490449965000153],[121,287,65,-0.548549011349678],[121,287,66,-0.5468972250819206],[121,287,67,-0.5450501218438148],[121,287,68,-0.5441530272364616],[121,287,69,-0.5448597259819508],[121,287,70,-0.5468904227018356],[121,287,71,-0.549387838691473],[121,287,72,-0.5521185472607613],[121,287,73,-0.5540387257933617],[121,287,74,-0.554715171456337],[121,287,75,-0.5541062392294407],[121,287,76,-0.5521560907363892],[121,287,77,-0.5491077862679958],[121,287,78,-0.5453321486711502],[121,287,79,-0.5411497838795185],[121,288,64,-0.5490449965000153],[121,288,65,-0.548549011349678],[121,288,66,-0.5468972250819206],[121,288,67,-0.5450501218438148],[121,288,68,-0.5441530272364616],[121,288,69,-0.5448597259819508],[121,288,70,-0.5468904227018356],[121,288,71,-0.549387838691473],[121,288,72,-0.5521185472607613],[121,288,73,-0.5540387257933617],[121,288,74,-0.554715171456337],[121,288,75,-0.5541062392294407],[121,288,76,-0.5521560907363892],[121,288,77,-0.5491077862679958],[121,288,78,-0.5453321486711502],[121,288,79,-0.5411497838795185],[121,289,64,-0.5490449965000153],[121,289,65,-0.548549011349678],[121,289,66,-0.5468972250819206],[121,289,67,-0.5450501218438148],[121,289,68,-0.5441530272364616],[121,289,69,-0.5448597259819508],[121,289,70,-0.5468904227018356],[121,289,71,-0.549387838691473],[121,289,72,-0.5521185472607613],[121,289,73,-0.5540387257933617],[121,289,74,-0.554715171456337],[121,289,75,-0.5541062392294407],[121,289,76,-0.5521560907363892],[121,289,77,-0.5491077862679958],[121,289,78,-0.5453321486711502],[121,289,79,-0.5411497838795185],[121,290,64,-0.5490449965000153],[121,290,65,-0.548549011349678],[121,290,66,-0.5468972250819206],[121,290,67,-0.5450501218438148],[121,290,68,-0.5441530272364616],[121,290,69,-0.5448597259819508],[121,290,70,-0.5468904227018356],[121,290,71,-0.549387838691473],[121,290,72,-0.5521185472607613],[121,290,73,-0.5540387257933617],[121,290,74,-0.554715171456337],[121,290,75,-0.5541062392294407],[121,290,76,-0.5521560907363892],[121,290,77,-0.5491077862679958],[121,290,78,-0.5453321486711502],[121,290,79,-0.5411497838795185],[121,291,64,-0.5490449965000153],[121,291,65,-0.548549011349678],[121,291,66,-0.5468972250819206],[121,291,67,-0.5450501218438148],[121,291,68,-0.5441530272364616],[121,291,69,-0.5448597259819508],[121,291,70,-0.5468904227018356],[121,291,71,-0.549387838691473],[121,291,72,-0.5521185472607613],[121,291,73,-0.5540387257933617],[121,291,74,-0.554715171456337],[121,291,75,-0.5541062392294407],[121,291,76,-0.5521560907363892],[121,291,77,-0.5491077862679958],[121,291,78,-0.5453321486711502],[121,291,79,-0.5411497838795185],[121,292,64,-0.5490449965000153],[121,292,65,-0.548549011349678],[121,292,66,-0.5468972250819206],[121,292,67,-0.5450501218438148],[121,292,68,-0.5441530272364616],[121,292,69,-0.5448597259819508],[121,292,70,-0.5468904227018356],[121,292,71,-0.549387838691473],[121,292,72,-0.5521185472607613],[121,292,73,-0.5540387257933617],[121,292,74,-0.554715171456337],[121,292,75,-0.5541062392294407],[121,292,76,-0.5521560907363892],[121,292,77,-0.5491077862679958],[121,292,78,-0.5453321486711502],[121,292,79,-0.5411497838795185],[121,293,64,-0.5490449965000153],[121,293,65,-0.548549011349678],[121,293,66,-0.5468972250819206],[121,293,67,-0.5450501218438148],[121,293,68,-0.5441530272364616],[121,293,69,-0.5448597259819508],[121,293,70,-0.5468904227018356],[121,293,71,-0.549387838691473],[121,293,72,-0.5521185472607613],[121,293,73,-0.5540387257933617],[121,293,74,-0.554715171456337],[121,293,75,-0.5541062392294407],[121,293,76,-0.5521560907363892],[121,293,77,-0.5491077862679958],[121,293,78,-0.5453321486711502],[121,293,79,-0.5411497838795185],[121,294,64,-0.5490449965000153],[121,294,65,-0.548549011349678],[121,294,66,-0.5468972250819206],[121,294,67,-0.5450501218438148],[121,294,68,-0.5441530272364616],[121,294,69,-0.5448597259819508],[121,294,70,-0.5468904227018356],[121,294,71,-0.549387838691473],[121,294,72,-0.5521185472607613],[121,294,73,-0.5540387257933617],[121,294,74,-0.554715171456337],[121,294,75,-0.5541062392294407],[121,294,76,-0.5521560907363892],[121,294,77,-0.5491077862679958],[121,294,78,-0.5453321486711502],[121,294,79,-0.5411497838795185],[121,295,64,-0.5490449965000153],[121,295,65,-0.548549011349678],[121,295,66,-0.5468972250819206],[121,295,67,-0.5450501218438148],[121,295,68,-0.5441530272364616],[121,295,69,-0.5448597259819508],[121,295,70,-0.5468904227018356],[121,295,71,-0.549387838691473],[121,295,72,-0.5521185472607613],[121,295,73,-0.5540387257933617],[121,295,74,-0.554715171456337],[121,295,75,-0.5541062392294407],[121,295,76,-0.5521560907363892],[121,295,77,-0.5491077862679958],[121,295,78,-0.5453321486711502],[121,295,79,-0.5411497838795185],[121,296,64,-0.5490449965000153],[121,296,65,-0.548549011349678],[121,296,66,-0.5468972250819206],[121,296,67,-0.5450501218438148],[121,296,68,-0.5441530272364616],[121,296,69,-0.5448597259819508],[121,296,70,-0.5468904227018356],[121,296,71,-0.549387838691473],[121,296,72,-0.5521185472607613],[121,296,73,-0.5540387257933617],[121,296,74,-0.554715171456337],[121,296,75,-0.5541062392294407],[121,296,76,-0.5521560907363892],[121,296,77,-0.5491077862679958],[121,296,78,-0.5453321486711502],[121,296,79,-0.5411497838795185],[121,297,64,-0.5490449965000153],[121,297,65,-0.548549011349678],[121,297,66,-0.5468972250819206],[121,297,67,-0.5450501218438148],[121,297,68,-0.5441530272364616],[121,297,69,-0.5448597259819508],[121,297,70,-0.5468904227018356],[121,297,71,-0.549387838691473],[121,297,72,-0.5521185472607613],[121,297,73,-0.5540387257933617],[121,297,74,-0.554715171456337],[121,297,75,-0.5541062392294407],[121,297,76,-0.5521560907363892],[121,297,77,-0.5491077862679958],[121,297,78,-0.5453321486711502],[121,297,79,-0.5411497838795185],[121,298,64,-0.5490449965000153],[121,298,65,-0.548549011349678],[121,298,66,-0.5468972250819206],[121,298,67,-0.5450501218438148],[121,298,68,-0.5441530272364616],[121,298,69,-0.5448597259819508],[121,298,70,-0.5468904227018356],[121,298,71,-0.549387838691473],[121,298,72,-0.5521185472607613],[121,298,73,-0.5540387257933617],[121,298,74,-0.554715171456337],[121,298,75,-0.5541062392294407],[121,298,76,-0.5521560907363892],[121,298,77,-0.5491077862679958],[121,298,78,-0.5453321486711502],[121,298,79,-0.5411497838795185],[121,299,64,-0.5490449965000153],[121,299,65,-0.548549011349678],[121,299,66,-0.5468972250819206],[121,299,67,-0.5450501218438148],[121,299,68,-0.5441530272364616],[121,299,69,-0.5448597259819508],[121,299,70,-0.5468904227018356],[121,299,71,-0.549387838691473],[121,299,72,-0.5521185472607613],[121,299,73,-0.5540387257933617],[121,299,74,-0.554715171456337],[121,299,75,-0.5541062392294407],[121,299,76,-0.5521560907363892],[121,299,77,-0.5491077862679958],[121,299,78,-0.5453321486711502],[121,299,79,-0.5411497838795185],[121,300,64,-0.5490449965000153],[121,300,65,-0.548549011349678],[121,300,66,-0.5468972250819206],[121,300,67,-0.5450501218438148],[121,300,68,-0.5441530272364616],[121,300,69,-0.5448597259819508],[121,300,70,-0.5468904227018356],[121,300,71,-0.549387838691473],[121,300,72,-0.5521185472607613],[121,300,73,-0.5540387257933617],[121,300,74,-0.554715171456337],[121,300,75,-0.5541062392294407],[121,300,76,-0.5521560907363892],[121,300,77,-0.5491077862679958],[121,300,78,-0.5453321486711502],[121,300,79,-0.5411497838795185],[121,301,64,-0.5490449965000153],[121,301,65,-0.548549011349678],[121,301,66,-0.5468972250819206],[121,301,67,-0.5450501218438148],[121,301,68,-0.5441530272364616],[121,301,69,-0.5448597259819508],[121,301,70,-0.5468904227018356],[121,301,71,-0.549387838691473],[121,301,72,-0.5521185472607613],[121,301,73,-0.5540387257933617],[121,301,74,-0.554715171456337],[121,301,75,-0.5541062392294407],[121,301,76,-0.5521560907363892],[121,301,77,-0.5491077862679958],[121,301,78,-0.5453321486711502],[121,301,79,-0.5411497838795185],[121,302,64,-0.5490449965000153],[121,302,65,-0.548549011349678],[121,302,66,-0.5468972250819206],[121,302,67,-0.5450501218438148],[121,302,68,-0.5441530272364616],[121,302,69,-0.5448597259819508],[121,302,70,-0.5468904227018356],[121,302,71,-0.549387838691473],[121,302,72,-0.5521185472607613],[121,302,73,-0.5540387257933617],[121,302,74,-0.554715171456337],[121,302,75,-0.5541062392294407],[121,302,76,-0.5521560907363892],[121,302,77,-0.5491077862679958],[121,302,78,-0.5453321486711502],[121,302,79,-0.5411497838795185],[121,303,64,-0.5490449965000153],[121,303,65,-0.548549011349678],[121,303,66,-0.5468972250819206],[121,303,67,-0.5450501218438148],[121,303,68,-0.5441530272364616],[121,303,69,-0.5448597259819508],[121,303,70,-0.5468904227018356],[121,303,71,-0.549387838691473],[121,303,72,-0.5521185472607613],[121,303,73,-0.5540387257933617],[121,303,74,-0.554715171456337],[121,303,75,-0.5541062392294407],[121,303,76,-0.5521560907363892],[121,303,77,-0.5491077862679958],[121,303,78,-0.5453321486711502],[121,303,79,-0.5411497838795185],[121,304,64,-0.5490449965000153],[121,304,65,-0.548549011349678],[121,304,66,-0.5468972250819206],[121,304,67,-0.5450501218438148],[121,304,68,-0.5441530272364616],[121,304,69,-0.5448597259819508],[121,304,70,-0.5468904227018356],[121,304,71,-0.549387838691473],[121,304,72,-0.5521185472607613],[121,304,73,-0.5540387257933617],[121,304,74,-0.554715171456337],[121,304,75,-0.5541062392294407],[121,304,76,-0.5521560907363892],[121,304,77,-0.5491077862679958],[121,304,78,-0.5453321486711502],[121,304,79,-0.5411497838795185],[121,305,64,-0.5490449965000153],[121,305,65,-0.548549011349678],[121,305,66,-0.5468972250819206],[121,305,67,-0.5450501218438148],[121,305,68,-0.5441530272364616],[121,305,69,-0.5448597259819508],[121,305,70,-0.5468904227018356],[121,305,71,-0.549387838691473],[121,305,72,-0.5521185472607613],[121,305,73,-0.5540387257933617],[121,305,74,-0.554715171456337],[121,305,75,-0.5541062392294407],[121,305,76,-0.5521560907363892],[121,305,77,-0.5491077862679958],[121,305,78,-0.5453321486711502],[121,305,79,-0.5411497838795185],[121,306,64,-0.5490449965000153],[121,306,65,-0.548549011349678],[121,306,66,-0.5468972250819206],[121,306,67,-0.5450501218438148],[121,306,68,-0.5441530272364616],[121,306,69,-0.5448597259819508],[121,306,70,-0.5468904227018356],[121,306,71,-0.549387838691473],[121,306,72,-0.5521185472607613],[121,306,73,-0.5540387257933617],[121,306,74,-0.554715171456337],[121,306,75,-0.5541062392294407],[121,306,76,-0.5521560907363892],[121,306,77,-0.5491077862679958],[121,306,78,-0.5453321486711502],[121,306,79,-0.5411497838795185],[121,307,64,-0.5490449965000153],[121,307,65,-0.548549011349678],[121,307,66,-0.5468972250819206],[121,307,67,-0.5450501218438148],[121,307,68,-0.5441530272364616],[121,307,69,-0.5448597259819508],[121,307,70,-0.5468904227018356],[121,307,71,-0.549387838691473],[121,307,72,-0.5521185472607613],[121,307,73,-0.5540387257933617],[121,307,74,-0.554715171456337],[121,307,75,-0.5541062392294407],[121,307,76,-0.5521560907363892],[121,307,77,-0.5491077862679958],[121,307,78,-0.5453321486711502],[121,307,79,-0.5411497838795185],[121,308,64,-0.5490449965000153],[121,308,65,-0.548549011349678],[121,308,66,-0.5468972250819206],[121,308,67,-0.5450501218438148],[121,308,68,-0.5441530272364616],[121,308,69,-0.5448597259819508],[121,308,70,-0.5468904227018356],[121,308,71,-0.549387838691473],[121,308,72,-0.5521185472607613],[121,308,73,-0.5540387257933617],[121,308,74,-0.554715171456337],[121,308,75,-0.5541062392294407],[121,308,76,-0.5521560907363892],[121,308,77,-0.5491077862679958],[121,308,78,-0.5453321486711502],[121,308,79,-0.5411497838795185],[121,309,64,-0.5490449965000153],[121,309,65,-0.548549011349678],[121,309,66,-0.5468972250819206],[121,309,67,-0.5450501218438148],[121,309,68,-0.5441530272364616],[121,309,69,-0.5448597259819508],[121,309,70,-0.5468904227018356],[121,309,71,-0.549387838691473],[121,309,72,-0.5521185472607613],[121,309,73,-0.5540387257933617],[121,309,74,-0.554715171456337],[121,309,75,-0.5541062392294407],[121,309,76,-0.5521560907363892],[121,309,77,-0.5491077862679958],[121,309,78,-0.5453321486711502],[121,309,79,-0.5411497838795185],[121,310,64,-0.5490449965000153],[121,310,65,-0.548549011349678],[121,310,66,-0.5468972250819206],[121,310,67,-0.5450501218438148],[121,310,68,-0.5441530272364616],[121,310,69,-0.5448597259819508],[121,310,70,-0.5468904227018356],[121,310,71,-0.549387838691473],[121,310,72,-0.5521185472607613],[121,310,73,-0.5540387257933617],[121,310,74,-0.554715171456337],[121,310,75,-0.5541062392294407],[121,310,76,-0.5521560907363892],[121,310,77,-0.5491077862679958],[121,310,78,-0.5453321486711502],[121,310,79,-0.5411497838795185],[121,311,64,-0.5490449965000153],[121,311,65,-0.548549011349678],[121,311,66,-0.5468972250819206],[121,311,67,-0.5450501218438148],[121,311,68,-0.5441530272364616],[121,311,69,-0.5448597259819508],[121,311,70,-0.5468904227018356],[121,311,71,-0.549387838691473],[121,311,72,-0.5521185472607613],[121,311,73,-0.5540387257933617],[121,311,74,-0.554715171456337],[121,311,75,-0.5541062392294407],[121,311,76,-0.5521560907363892],[121,311,77,-0.5491077862679958],[121,311,78,-0.5453321486711502],[121,311,79,-0.5411497838795185],[121,312,64,-0.5490449965000153],[121,312,65,-0.548549011349678],[121,312,66,-0.5468972250819206],[121,312,67,-0.5450501218438148],[121,312,68,-0.5441530272364616],[121,312,69,-0.5448597259819508],[121,312,70,-0.5468904227018356],[121,312,71,-0.549387838691473],[121,312,72,-0.5521185472607613],[121,312,73,-0.5540387257933617],[121,312,74,-0.554715171456337],[121,312,75,-0.5541062392294407],[121,312,76,-0.5521560907363892],[121,312,77,-0.5491077862679958],[121,312,78,-0.5453321486711502],[121,312,79,-0.5411497838795185],[121,313,64,-0.5490449965000153],[121,313,65,-0.548549011349678],[121,313,66,-0.5468972250819206],[121,313,67,-0.5450501218438148],[121,313,68,-0.5441530272364616],[121,313,69,-0.5448597259819508],[121,313,70,-0.5468904227018356],[121,313,71,-0.549387838691473],[121,313,72,-0.5521185472607613],[121,313,73,-0.5540387257933617],[121,313,74,-0.554715171456337],[121,313,75,-0.5541062392294407],[121,313,76,-0.5521560907363892],[121,313,77,-0.5491077862679958],[121,313,78,-0.5453321486711502],[121,313,79,-0.5411497838795185],[121,314,64,-0.5490449965000153],[121,314,65,-0.548549011349678],[121,314,66,-0.5468972250819206],[121,314,67,-0.5450501218438148],[121,314,68,-0.5441530272364616],[121,314,69,-0.5448597259819508],[121,314,70,-0.5468904227018356],[121,314,71,-0.549387838691473],[121,314,72,-0.5521185472607613],[121,314,73,-0.5540387257933617],[121,314,74,-0.554715171456337],[121,314,75,-0.5541062392294407],[121,314,76,-0.5521560907363892],[121,314,77,-0.5491077862679958],[121,314,78,-0.5453321486711502],[121,314,79,-0.5411497838795185],[121,315,64,-0.5490449965000153],[121,315,65,-0.548549011349678],[121,315,66,-0.5468972250819206],[121,315,67,-0.5450501218438148],[121,315,68,-0.5441530272364616],[121,315,69,-0.5448597259819508],[121,315,70,-0.5468904227018356],[121,315,71,-0.549387838691473],[121,315,72,-0.5521185472607613],[121,315,73,-0.5540387257933617],[121,315,74,-0.554715171456337],[121,315,75,-0.5541062392294407],[121,315,76,-0.5521560907363892],[121,315,77,-0.5491077862679958],[121,315,78,-0.5453321486711502],[121,315,79,-0.5411497838795185],[121,316,64,-0.5490449965000153],[121,316,65,-0.548549011349678],[121,316,66,-0.5468972250819206],[121,316,67,-0.5450501218438148],[121,316,68,-0.5441530272364616],[121,316,69,-0.5448597259819508],[121,316,70,-0.5468904227018356],[121,316,71,-0.549387838691473],[121,316,72,-0.5521185472607613],[121,316,73,-0.5540387257933617],[121,316,74,-0.554715171456337],[121,316,75,-0.5541062392294407],[121,316,76,-0.5521560907363892],[121,316,77,-0.5491077862679958],[121,316,78,-0.5453321486711502],[121,316,79,-0.5411497838795185],[121,317,64,-0.5490449965000153],[121,317,65,-0.548549011349678],[121,317,66,-0.5468972250819206],[121,317,67,-0.5450501218438148],[121,317,68,-0.5441530272364616],[121,317,69,-0.5448597259819508],[121,317,70,-0.5468904227018356],[121,317,71,-0.549387838691473],[121,317,72,-0.5521185472607613],[121,317,73,-0.5540387257933617],[121,317,74,-0.554715171456337],[121,317,75,-0.5541062392294407],[121,317,76,-0.5521560907363892],[121,317,77,-0.5491077862679958],[121,317,78,-0.5453321486711502],[121,317,79,-0.5411497838795185],[121,318,64,-0.5490449965000153],[121,318,65,-0.548549011349678],[121,318,66,-0.5468972250819206],[121,318,67,-0.5450501218438148],[121,318,68,-0.5441530272364616],[121,318,69,-0.5448597259819508],[121,318,70,-0.5468904227018356],[121,318,71,-0.549387838691473],[121,318,72,-0.5521185472607613],[121,318,73,-0.5540387257933617],[121,318,74,-0.554715171456337],[121,318,75,-0.5541062392294407],[121,318,76,-0.5521560907363892],[121,318,77,-0.5491077862679958],[121,318,78,-0.5453321486711502],[121,318,79,-0.5411497838795185],[121,319,64,-0.5490449965000153],[121,319,65,-0.548549011349678],[121,319,66,-0.5468972250819206],[121,319,67,-0.5450501218438148],[121,319,68,-0.5441530272364616],[121,319,69,-0.5448597259819508],[121,319,70,-0.5468904227018356],[121,319,71,-0.549387838691473],[121,319,72,-0.5521185472607613],[121,319,73,-0.5540387257933617],[121,319,74,-0.554715171456337],[121,319,75,-0.5541062392294407],[121,319,76,-0.5521560907363892],[121,319,77,-0.5491077862679958],[121,319,78,-0.5453321486711502],[121,319,79,-0.5411497838795185],[122,-64,64,-0.5520365312695503],[122,-64,65,-0.5518265515565872],[122,-64,66,-0.5502231270074844],[122,-64,67,-0.5484046824276447],[122,-64,68,-0.5477141104638577],[122,-64,69,-0.5488727241754532],[122,-64,70,-0.5513996481895447],[122,-64,71,-0.5542764626443386],[122,-64,72,-0.557181965559721],[122,-64,73,-0.558972891420126],[122,-64,74,-0.559431903064251],[122,-64,75,-0.5585466586053371],[122,-64,76,-0.5561536103487015],[122,-64,77,-0.5525593608617783],[122,-64,78,-0.548352126032114],[122,-64,79,-0.5437773950397968],[122,-63,64,-0.5520365312695503],[122,-63,65,-0.5518265515565872],[122,-63,66,-0.5502231270074844],[122,-63,67,-0.5484046824276447],[122,-63,68,-0.5477141104638577],[122,-63,69,-0.5488727241754532],[122,-63,70,-0.5513996481895447],[122,-63,71,-0.5542764626443386],[122,-63,72,-0.557181965559721],[122,-63,73,-0.558972891420126],[122,-63,74,-0.559431903064251],[122,-63,75,-0.5585466586053371],[122,-63,76,-0.5561536103487015],[122,-63,77,-0.5525593608617783],[122,-63,78,-0.548352126032114],[122,-63,79,-0.5437773950397968],[122,-62,64,-0.5520365312695503],[122,-62,65,-0.5518265515565872],[122,-62,66,-0.5502231270074844],[122,-62,67,-0.5484046824276447],[122,-62,68,-0.5477141104638577],[122,-62,69,-0.5488727241754532],[122,-62,70,-0.5513996481895447],[122,-62,71,-0.5542764626443386],[122,-62,72,-0.557181965559721],[122,-62,73,-0.558972891420126],[122,-62,74,-0.559431903064251],[122,-62,75,-0.5585466586053371],[122,-62,76,-0.5561536103487015],[122,-62,77,-0.5525593608617783],[122,-62,78,-0.548352126032114],[122,-62,79,-0.5437773950397968],[122,-61,64,-0.5520365312695503],[122,-61,65,-0.5518265515565872],[122,-61,66,-0.5502231270074844],[122,-61,67,-0.5484046824276447],[122,-61,68,-0.5477141104638577],[122,-61,69,-0.5488727241754532],[122,-61,70,-0.5513996481895447],[122,-61,71,-0.5542764626443386],[122,-61,72,-0.557181965559721],[122,-61,73,-0.558972891420126],[122,-61,74,-0.559431903064251],[122,-61,75,-0.5585466586053371],[122,-61,76,-0.5561536103487015],[122,-61,77,-0.5525593608617783],[122,-61,78,-0.548352126032114],[122,-61,79,-0.5437773950397968],[122,-60,64,-0.5520365312695503],[122,-60,65,-0.5518265515565872],[122,-60,66,-0.5502231270074844],[122,-60,67,-0.5484046824276447],[122,-60,68,-0.5477141104638577],[122,-60,69,-0.5488727241754532],[122,-60,70,-0.5513996481895447],[122,-60,71,-0.5542764626443386],[122,-60,72,-0.557181965559721],[122,-60,73,-0.558972891420126],[122,-60,74,-0.559431903064251],[122,-60,75,-0.5585466586053371],[122,-60,76,-0.5561536103487015],[122,-60,77,-0.5525593608617783],[122,-60,78,-0.548352126032114],[122,-60,79,-0.5437773950397968],[122,-59,64,-0.5520365312695503],[122,-59,65,-0.5518265515565872],[122,-59,66,-0.5502231270074844],[122,-59,67,-0.5484046824276447],[122,-59,68,-0.5477141104638577],[122,-59,69,-0.5488727241754532],[122,-59,70,-0.5513996481895447],[122,-59,71,-0.5542764626443386],[122,-59,72,-0.557181965559721],[122,-59,73,-0.558972891420126],[122,-59,74,-0.559431903064251],[122,-59,75,-0.5585466586053371],[122,-59,76,-0.5561536103487015],[122,-59,77,-0.5525593608617783],[122,-59,78,-0.548352126032114],[122,-59,79,-0.5437773950397968],[122,-58,64,-0.5520365312695503],[122,-58,65,-0.5518265515565872],[122,-58,66,-0.5502231270074844],[122,-58,67,-0.5484046824276447],[122,-58,68,-0.5477141104638577],[122,-58,69,-0.5488727241754532],[122,-58,70,-0.5513996481895447],[122,-58,71,-0.5542764626443386],[122,-58,72,-0.557181965559721],[122,-58,73,-0.558972891420126],[122,-58,74,-0.559431903064251],[122,-58,75,-0.5585466586053371],[122,-58,76,-0.5561536103487015],[122,-58,77,-0.5525593608617783],[122,-58,78,-0.548352126032114],[122,-58,79,-0.5437773950397968],[122,-57,64,-0.5520365312695503],[122,-57,65,-0.5518265515565872],[122,-57,66,-0.5502231270074844],[122,-57,67,-0.5484046824276447],[122,-57,68,-0.5477141104638577],[122,-57,69,-0.5488727241754532],[122,-57,70,-0.5513996481895447],[122,-57,71,-0.5542764626443386],[122,-57,72,-0.557181965559721],[122,-57,73,-0.558972891420126],[122,-57,74,-0.559431903064251],[122,-57,75,-0.5585466586053371],[122,-57,76,-0.5561536103487015],[122,-57,77,-0.5525593608617783],[122,-57,78,-0.548352126032114],[122,-57,79,-0.5437773950397968],[122,-56,64,-0.5520365312695503],[122,-56,65,-0.5518265515565872],[122,-56,66,-0.5502231270074844],[122,-56,67,-0.5484046824276447],[122,-56,68,-0.5477141104638577],[122,-56,69,-0.5488727241754532],[122,-56,70,-0.5513996481895447],[122,-56,71,-0.5542764626443386],[122,-56,72,-0.557181965559721],[122,-56,73,-0.558972891420126],[122,-56,74,-0.559431903064251],[122,-56,75,-0.5585466586053371],[122,-56,76,-0.5561536103487015],[122,-56,77,-0.5525593608617783],[122,-56,78,-0.548352126032114],[122,-56,79,-0.5437773950397968],[122,-55,64,-0.5520365312695503],[122,-55,65,-0.5518265515565872],[122,-55,66,-0.5502231270074844],[122,-55,67,-0.5484046824276447],[122,-55,68,-0.5477141104638577],[122,-55,69,-0.5488727241754532],[122,-55,70,-0.5513996481895447],[122,-55,71,-0.5542764626443386],[122,-55,72,-0.557181965559721],[122,-55,73,-0.558972891420126],[122,-55,74,-0.559431903064251],[122,-55,75,-0.5585466586053371],[122,-55,76,-0.5561536103487015],[122,-55,77,-0.5525593608617783],[122,-55,78,-0.548352126032114],[122,-55,79,-0.5437773950397968],[122,-54,64,-0.5520365312695503],[122,-54,65,-0.5518265515565872],[122,-54,66,-0.5502231270074844],[122,-54,67,-0.5484046824276447],[122,-54,68,-0.5477141104638577],[122,-54,69,-0.5488727241754532],[122,-54,70,-0.5513996481895447],[122,-54,71,-0.5542764626443386],[122,-54,72,-0.557181965559721],[122,-54,73,-0.558972891420126],[122,-54,74,-0.559431903064251],[122,-54,75,-0.5585466586053371],[122,-54,76,-0.5561536103487015],[122,-54,77,-0.5525593608617783],[122,-54,78,-0.548352126032114],[122,-54,79,-0.5437773950397968],[122,-53,64,-0.5520365312695503],[122,-53,65,-0.5518265515565872],[122,-53,66,-0.5502231270074844],[122,-53,67,-0.5484046824276447],[122,-53,68,-0.5477141104638577],[122,-53,69,-0.5488727241754532],[122,-53,70,-0.5513996481895447],[122,-53,71,-0.5542764626443386],[122,-53,72,-0.557181965559721],[122,-53,73,-0.558972891420126],[122,-53,74,-0.559431903064251],[122,-53,75,-0.5585466586053371],[122,-53,76,-0.5561536103487015],[122,-53,77,-0.5525593608617783],[122,-53,78,-0.548352126032114],[122,-53,79,-0.5437773950397968],[122,-52,64,-0.5520365312695503],[122,-52,65,-0.5518265515565872],[122,-52,66,-0.5502231270074844],[122,-52,67,-0.5484046824276447],[122,-52,68,-0.5477141104638577],[122,-52,69,-0.5488727241754532],[122,-52,70,-0.5513996481895447],[122,-52,71,-0.5542764626443386],[122,-52,72,-0.557181965559721],[122,-52,73,-0.558972891420126],[122,-52,74,-0.559431903064251],[122,-52,75,-0.5585466586053371],[122,-52,76,-0.5561536103487015],[122,-52,77,-0.5525593608617783],[122,-52,78,-0.548352126032114],[122,-52,79,-0.5437773950397968],[122,-51,64,-0.5520365312695503],[122,-51,65,-0.5518265515565872],[122,-51,66,-0.5502231270074844],[122,-51,67,-0.5484046824276447],[122,-51,68,-0.5477141104638577],[122,-51,69,-0.5488727241754532],[122,-51,70,-0.5513996481895447],[122,-51,71,-0.5542764626443386],[122,-51,72,-0.557181965559721],[122,-51,73,-0.558972891420126],[122,-51,74,-0.559431903064251],[122,-51,75,-0.5585466586053371],[122,-51,76,-0.5561536103487015],[122,-51,77,-0.5525593608617783],[122,-51,78,-0.548352126032114],[122,-51,79,-0.5437773950397968],[122,-50,64,-0.5520365312695503],[122,-50,65,-0.5518265515565872],[122,-50,66,-0.5502231270074844],[122,-50,67,-0.5484046824276447],[122,-50,68,-0.5477141104638577],[122,-50,69,-0.5488727241754532],[122,-50,70,-0.5513996481895447],[122,-50,71,-0.5542764626443386],[122,-50,72,-0.557181965559721],[122,-50,73,-0.558972891420126],[122,-50,74,-0.559431903064251],[122,-50,75,-0.5585466586053371],[122,-50,76,-0.5561536103487015],[122,-50,77,-0.5525593608617783],[122,-50,78,-0.548352126032114],[122,-50,79,-0.5437773950397968],[122,-49,64,-0.5520365312695503],[122,-49,65,-0.5518265515565872],[122,-49,66,-0.5502231270074844],[122,-49,67,-0.5484046824276447],[122,-49,68,-0.5477141104638577],[122,-49,69,-0.5488727241754532],[122,-49,70,-0.5513996481895447],[122,-49,71,-0.5542764626443386],[122,-49,72,-0.557181965559721],[122,-49,73,-0.558972891420126],[122,-49,74,-0.559431903064251],[122,-49,75,-0.5585466586053371],[122,-49,76,-0.5561536103487015],[122,-49,77,-0.5525593608617783],[122,-49,78,-0.548352126032114],[122,-49,79,-0.5437773950397968],[122,-48,64,-0.5520365312695503],[122,-48,65,-0.5518265515565872],[122,-48,66,-0.5502231270074844],[122,-48,67,-0.5484046824276447],[122,-48,68,-0.5477141104638577],[122,-48,69,-0.5488727241754532],[122,-48,70,-0.5513996481895447],[122,-48,71,-0.5542764626443386],[122,-48,72,-0.557181965559721],[122,-48,73,-0.558972891420126],[122,-48,74,-0.559431903064251],[122,-48,75,-0.5585466586053371],[122,-48,76,-0.5561536103487015],[122,-48,77,-0.5525593608617783],[122,-48,78,-0.548352126032114],[122,-48,79,-0.5437773950397968],[122,-47,64,-0.5520365312695503],[122,-47,65,-0.5518265515565872],[122,-47,66,-0.5502231270074844],[122,-47,67,-0.5484046824276447],[122,-47,68,-0.5477141104638577],[122,-47,69,-0.5488727241754532],[122,-47,70,-0.5513996481895447],[122,-47,71,-0.5542764626443386],[122,-47,72,-0.557181965559721],[122,-47,73,-0.558972891420126],[122,-47,74,-0.559431903064251],[122,-47,75,-0.5585466586053371],[122,-47,76,-0.5561536103487015],[122,-47,77,-0.5525593608617783],[122,-47,78,-0.548352126032114],[122,-47,79,-0.5437773950397968],[122,-46,64,-0.5520365312695503],[122,-46,65,-0.5518265515565872],[122,-46,66,-0.5502231270074844],[122,-46,67,-0.5484046824276447],[122,-46,68,-0.5477141104638577],[122,-46,69,-0.5488727241754532],[122,-46,70,-0.5513996481895447],[122,-46,71,-0.5542764626443386],[122,-46,72,-0.557181965559721],[122,-46,73,-0.558972891420126],[122,-46,74,-0.559431903064251],[122,-46,75,-0.5585466586053371],[122,-46,76,-0.5561536103487015],[122,-46,77,-0.5525593608617783],[122,-46,78,-0.548352126032114],[122,-46,79,-0.5437773950397968],[122,-45,64,-0.5520365312695503],[122,-45,65,-0.5518265515565872],[122,-45,66,-0.5502231270074844],[122,-45,67,-0.5484046824276447],[122,-45,68,-0.5477141104638577],[122,-45,69,-0.5488727241754532],[122,-45,70,-0.5513996481895447],[122,-45,71,-0.5542764626443386],[122,-45,72,-0.557181965559721],[122,-45,73,-0.558972891420126],[122,-45,74,-0.559431903064251],[122,-45,75,-0.5585466586053371],[122,-45,76,-0.5561536103487015],[122,-45,77,-0.5525593608617783],[122,-45,78,-0.548352126032114],[122,-45,79,-0.5437773950397968],[122,-44,64,-0.5520365312695503],[122,-44,65,-0.5518265515565872],[122,-44,66,-0.5502231270074844],[122,-44,67,-0.5484046824276447],[122,-44,68,-0.5477141104638577],[122,-44,69,-0.5488727241754532],[122,-44,70,-0.5513996481895447],[122,-44,71,-0.5542764626443386],[122,-44,72,-0.557181965559721],[122,-44,73,-0.558972891420126],[122,-44,74,-0.559431903064251],[122,-44,75,-0.5585466586053371],[122,-44,76,-0.5561536103487015],[122,-44,77,-0.5525593608617783],[122,-44,78,-0.548352126032114],[122,-44,79,-0.5437773950397968],[122,-43,64,-0.5520365312695503],[122,-43,65,-0.5518265515565872],[122,-43,66,-0.5502231270074844],[122,-43,67,-0.5484046824276447],[122,-43,68,-0.5477141104638577],[122,-43,69,-0.5488727241754532],[122,-43,70,-0.5513996481895447],[122,-43,71,-0.5542764626443386],[122,-43,72,-0.557181965559721],[122,-43,73,-0.558972891420126],[122,-43,74,-0.559431903064251],[122,-43,75,-0.5585466586053371],[122,-43,76,-0.5561536103487015],[122,-43,77,-0.5525593608617783],[122,-43,78,-0.548352126032114],[122,-43,79,-0.5437773950397968],[122,-42,64,-0.5520365312695503],[122,-42,65,-0.5518265515565872],[122,-42,66,-0.5502231270074844],[122,-42,67,-0.5484046824276447],[122,-42,68,-0.5477141104638577],[122,-42,69,-0.5488727241754532],[122,-42,70,-0.5513996481895447],[122,-42,71,-0.5542764626443386],[122,-42,72,-0.557181965559721],[122,-42,73,-0.558972891420126],[122,-42,74,-0.559431903064251],[122,-42,75,-0.5585466586053371],[122,-42,76,-0.5561536103487015],[122,-42,77,-0.5525593608617783],[122,-42,78,-0.548352126032114],[122,-42,79,-0.5437773950397968],[122,-41,64,-0.5520365312695503],[122,-41,65,-0.5518265515565872],[122,-41,66,-0.5502231270074844],[122,-41,67,-0.5484046824276447],[122,-41,68,-0.5477141104638577],[122,-41,69,-0.5488727241754532],[122,-41,70,-0.5513996481895447],[122,-41,71,-0.5542764626443386],[122,-41,72,-0.557181965559721],[122,-41,73,-0.558972891420126],[122,-41,74,-0.559431903064251],[122,-41,75,-0.5585466586053371],[122,-41,76,-0.5561536103487015],[122,-41,77,-0.5525593608617783],[122,-41,78,-0.548352126032114],[122,-41,79,-0.5437773950397968],[122,-40,64,-0.5520365312695503],[122,-40,65,-0.5518265515565872],[122,-40,66,-0.5502231270074844],[122,-40,67,-0.5484046824276447],[122,-40,68,-0.5477141104638577],[122,-40,69,-0.5488727241754532],[122,-40,70,-0.5513996481895447],[122,-40,71,-0.5542764626443386],[122,-40,72,-0.557181965559721],[122,-40,73,-0.558972891420126],[122,-40,74,-0.559431903064251],[122,-40,75,-0.5585466586053371],[122,-40,76,-0.5561536103487015],[122,-40,77,-0.5525593608617783],[122,-40,78,-0.548352126032114],[122,-40,79,-0.5437773950397968],[122,-39,64,-0.5520365312695503],[122,-39,65,-0.5518265515565872],[122,-39,66,-0.5502231270074844],[122,-39,67,-0.5484046824276447],[122,-39,68,-0.5477141104638577],[122,-39,69,-0.5488727241754532],[122,-39,70,-0.5513996481895447],[122,-39,71,-0.5542764626443386],[122,-39,72,-0.557181965559721],[122,-39,73,-0.558972891420126],[122,-39,74,-0.559431903064251],[122,-39,75,-0.5585466586053371],[122,-39,76,-0.5561536103487015],[122,-39,77,-0.5525593608617783],[122,-39,78,-0.548352126032114],[122,-39,79,-0.5437773950397968],[122,-38,64,-0.5520365312695503],[122,-38,65,-0.5518265515565872],[122,-38,66,-0.5502231270074844],[122,-38,67,-0.5484046824276447],[122,-38,68,-0.5477141104638577],[122,-38,69,-0.5488727241754532],[122,-38,70,-0.5513996481895447],[122,-38,71,-0.5542764626443386],[122,-38,72,-0.557181965559721],[122,-38,73,-0.558972891420126],[122,-38,74,-0.559431903064251],[122,-38,75,-0.5585466586053371],[122,-38,76,-0.5561536103487015],[122,-38,77,-0.5525593608617783],[122,-38,78,-0.548352126032114],[122,-38,79,-0.5437773950397968],[122,-37,64,-0.5520365312695503],[122,-37,65,-0.5518265515565872],[122,-37,66,-0.5502231270074844],[122,-37,67,-0.5484046824276447],[122,-37,68,-0.5477141104638577],[122,-37,69,-0.5488727241754532],[122,-37,70,-0.5513996481895447],[122,-37,71,-0.5542764626443386],[122,-37,72,-0.557181965559721],[122,-37,73,-0.558972891420126],[122,-37,74,-0.559431903064251],[122,-37,75,-0.5585466586053371],[122,-37,76,-0.5561536103487015],[122,-37,77,-0.5525593608617783],[122,-37,78,-0.548352126032114],[122,-37,79,-0.5437773950397968],[122,-36,64,-0.5520365312695503],[122,-36,65,-0.5518265515565872],[122,-36,66,-0.5502231270074844],[122,-36,67,-0.5484046824276447],[122,-36,68,-0.5477141104638577],[122,-36,69,-0.5488727241754532],[122,-36,70,-0.5513996481895447],[122,-36,71,-0.5542764626443386],[122,-36,72,-0.557181965559721],[122,-36,73,-0.558972891420126],[122,-36,74,-0.559431903064251],[122,-36,75,-0.5585466586053371],[122,-36,76,-0.5561536103487015],[122,-36,77,-0.5525593608617783],[122,-36,78,-0.548352126032114],[122,-36,79,-0.5437773950397968],[122,-35,64,-0.5520365312695503],[122,-35,65,-0.5518265515565872],[122,-35,66,-0.5502231270074844],[122,-35,67,-0.5484046824276447],[122,-35,68,-0.5477141104638577],[122,-35,69,-0.5488727241754532],[122,-35,70,-0.5513996481895447],[122,-35,71,-0.5542764626443386],[122,-35,72,-0.557181965559721],[122,-35,73,-0.558972891420126],[122,-35,74,-0.559431903064251],[122,-35,75,-0.5585466586053371],[122,-35,76,-0.5561536103487015],[122,-35,77,-0.5525593608617783],[122,-35,78,-0.548352126032114],[122,-35,79,-0.5437773950397968],[122,-34,64,-0.5520365312695503],[122,-34,65,-0.5518265515565872],[122,-34,66,-0.5502231270074844],[122,-34,67,-0.5484046824276447],[122,-34,68,-0.5477141104638577],[122,-34,69,-0.5488727241754532],[122,-34,70,-0.5513996481895447],[122,-34,71,-0.5542764626443386],[122,-34,72,-0.557181965559721],[122,-34,73,-0.558972891420126],[122,-34,74,-0.559431903064251],[122,-34,75,-0.5585466586053371],[122,-34,76,-0.5561536103487015],[122,-34,77,-0.5525593608617783],[122,-34,78,-0.548352126032114],[122,-34,79,-0.5437773950397968],[122,-33,64,-0.5520365312695503],[122,-33,65,-0.5518265515565872],[122,-33,66,-0.5502231270074844],[122,-33,67,-0.5484046824276447],[122,-33,68,-0.5477141104638577],[122,-33,69,-0.5488727241754532],[122,-33,70,-0.5513996481895447],[122,-33,71,-0.5542764626443386],[122,-33,72,-0.557181965559721],[122,-33,73,-0.558972891420126],[122,-33,74,-0.559431903064251],[122,-33,75,-0.5585466586053371],[122,-33,76,-0.5561536103487015],[122,-33,77,-0.5525593608617783],[122,-33,78,-0.548352126032114],[122,-33,79,-0.5437773950397968],[122,-32,64,-0.5520365312695503],[122,-32,65,-0.5518265515565872],[122,-32,66,-0.5502231270074844],[122,-32,67,-0.5484046824276447],[122,-32,68,-0.5477141104638577],[122,-32,69,-0.5488727241754532],[122,-32,70,-0.5513996481895447],[122,-32,71,-0.5542764626443386],[122,-32,72,-0.557181965559721],[122,-32,73,-0.558972891420126],[122,-32,74,-0.559431903064251],[122,-32,75,-0.5585466586053371],[122,-32,76,-0.5561536103487015],[122,-32,77,-0.5525593608617783],[122,-32,78,-0.548352126032114],[122,-32,79,-0.5437773950397968],[122,-31,64,-0.5520365312695503],[122,-31,65,-0.5518265515565872],[122,-31,66,-0.5502231270074844],[122,-31,67,-0.5484046824276447],[122,-31,68,-0.5477141104638577],[122,-31,69,-0.5488727241754532],[122,-31,70,-0.5513996481895447],[122,-31,71,-0.5542764626443386],[122,-31,72,-0.557181965559721],[122,-31,73,-0.558972891420126],[122,-31,74,-0.559431903064251],[122,-31,75,-0.5585466586053371],[122,-31,76,-0.5561536103487015],[122,-31,77,-0.5525593608617783],[122,-31,78,-0.548352126032114],[122,-31,79,-0.5437773950397968],[122,-30,64,-0.5520365312695503],[122,-30,65,-0.5518265515565872],[122,-30,66,-0.5502231270074844],[122,-30,67,-0.5484046824276447],[122,-30,68,-0.5477141104638577],[122,-30,69,-0.5488727241754532],[122,-30,70,-0.5513996481895447],[122,-30,71,-0.5542764626443386],[122,-30,72,-0.557181965559721],[122,-30,73,-0.558972891420126],[122,-30,74,-0.559431903064251],[122,-30,75,-0.5585466586053371],[122,-30,76,-0.5561536103487015],[122,-30,77,-0.5525593608617783],[122,-30,78,-0.548352126032114],[122,-30,79,-0.5437773950397968],[122,-29,64,-0.5520365312695503],[122,-29,65,-0.5518265515565872],[122,-29,66,-0.5502231270074844],[122,-29,67,-0.5484046824276447],[122,-29,68,-0.5477141104638577],[122,-29,69,-0.5488727241754532],[122,-29,70,-0.5513996481895447],[122,-29,71,-0.5542764626443386],[122,-29,72,-0.557181965559721],[122,-29,73,-0.558972891420126],[122,-29,74,-0.559431903064251],[122,-29,75,-0.5585466586053371],[122,-29,76,-0.5561536103487015],[122,-29,77,-0.5525593608617783],[122,-29,78,-0.548352126032114],[122,-29,79,-0.5437773950397968],[122,-28,64,-0.5520365312695503],[122,-28,65,-0.5518265515565872],[122,-28,66,-0.5502231270074844],[122,-28,67,-0.5484046824276447],[122,-28,68,-0.5477141104638577],[122,-28,69,-0.5488727241754532],[122,-28,70,-0.5513996481895447],[122,-28,71,-0.5542764626443386],[122,-28,72,-0.557181965559721],[122,-28,73,-0.558972891420126],[122,-28,74,-0.559431903064251],[122,-28,75,-0.5585466586053371],[122,-28,76,-0.5561536103487015],[122,-28,77,-0.5525593608617783],[122,-28,78,-0.548352126032114],[122,-28,79,-0.5437773950397968],[122,-27,64,-0.5520365312695503],[122,-27,65,-0.5518265515565872],[122,-27,66,-0.5502231270074844],[122,-27,67,-0.5484046824276447],[122,-27,68,-0.5477141104638577],[122,-27,69,-0.5488727241754532],[122,-27,70,-0.5513996481895447],[122,-27,71,-0.5542764626443386],[122,-27,72,-0.557181965559721],[122,-27,73,-0.558972891420126],[122,-27,74,-0.559431903064251],[122,-27,75,-0.5585466586053371],[122,-27,76,-0.5561536103487015],[122,-27,77,-0.5525593608617783],[122,-27,78,-0.548352126032114],[122,-27,79,-0.5437773950397968],[122,-26,64,-0.5520365312695503],[122,-26,65,-0.5518265515565872],[122,-26,66,-0.5502231270074844],[122,-26,67,-0.5484046824276447],[122,-26,68,-0.5477141104638577],[122,-26,69,-0.5488727241754532],[122,-26,70,-0.5513996481895447],[122,-26,71,-0.5542764626443386],[122,-26,72,-0.557181965559721],[122,-26,73,-0.558972891420126],[122,-26,74,-0.559431903064251],[122,-26,75,-0.5585466586053371],[122,-26,76,-0.5561536103487015],[122,-26,77,-0.5525593608617783],[122,-26,78,-0.548352126032114],[122,-26,79,-0.5437773950397968],[122,-25,64,-0.5520365312695503],[122,-25,65,-0.5518265515565872],[122,-25,66,-0.5502231270074844],[122,-25,67,-0.5484046824276447],[122,-25,68,-0.5477141104638577],[122,-25,69,-0.5488727241754532],[122,-25,70,-0.5513996481895447],[122,-25,71,-0.5542764626443386],[122,-25,72,-0.557181965559721],[122,-25,73,-0.558972891420126],[122,-25,74,-0.559431903064251],[122,-25,75,-0.5585466586053371],[122,-25,76,-0.5561536103487015],[122,-25,77,-0.5525593608617783],[122,-25,78,-0.548352126032114],[122,-25,79,-0.5437773950397968],[122,-24,64,-0.5520365312695503],[122,-24,65,-0.5518265515565872],[122,-24,66,-0.5502231270074844],[122,-24,67,-0.5484046824276447],[122,-24,68,-0.5477141104638577],[122,-24,69,-0.5488727241754532],[122,-24,70,-0.5513996481895447],[122,-24,71,-0.5542764626443386],[122,-24,72,-0.557181965559721],[122,-24,73,-0.558972891420126],[122,-24,74,-0.559431903064251],[122,-24,75,-0.5585466586053371],[122,-24,76,-0.5561536103487015],[122,-24,77,-0.5525593608617783],[122,-24,78,-0.548352126032114],[122,-24,79,-0.5437773950397968],[122,-23,64,-0.5520365312695503],[122,-23,65,-0.5518265515565872],[122,-23,66,-0.5502231270074844],[122,-23,67,-0.5484046824276447],[122,-23,68,-0.5477141104638577],[122,-23,69,-0.5488727241754532],[122,-23,70,-0.5513996481895447],[122,-23,71,-0.5542764626443386],[122,-23,72,-0.557181965559721],[122,-23,73,-0.558972891420126],[122,-23,74,-0.559431903064251],[122,-23,75,-0.5585466586053371],[122,-23,76,-0.5561536103487015],[122,-23,77,-0.5525593608617783],[122,-23,78,-0.548352126032114],[122,-23,79,-0.5437773950397968],[122,-22,64,-0.5520365312695503],[122,-22,65,-0.5518265515565872],[122,-22,66,-0.5502231270074844],[122,-22,67,-0.5484046824276447],[122,-22,68,-0.5477141104638577],[122,-22,69,-0.5488727241754532],[122,-22,70,-0.5513996481895447],[122,-22,71,-0.5542764626443386],[122,-22,72,-0.557181965559721],[122,-22,73,-0.558972891420126],[122,-22,74,-0.559431903064251],[122,-22,75,-0.5585466586053371],[122,-22,76,-0.5561536103487015],[122,-22,77,-0.5525593608617783],[122,-22,78,-0.548352126032114],[122,-22,79,-0.5437773950397968],[122,-21,64,-0.5520365312695503],[122,-21,65,-0.5518265515565872],[122,-21,66,-0.5502231270074844],[122,-21,67,-0.5484046824276447],[122,-21,68,-0.5477141104638577],[122,-21,69,-0.5488727241754532],[122,-21,70,-0.5513996481895447],[122,-21,71,-0.5542764626443386],[122,-21,72,-0.557181965559721],[122,-21,73,-0.558972891420126],[122,-21,74,-0.559431903064251],[122,-21,75,-0.5585466586053371],[122,-21,76,-0.5561536103487015],[122,-21,77,-0.5525593608617783],[122,-21,78,-0.548352126032114],[122,-21,79,-0.5437773950397968],[122,-20,64,-0.5520365312695503],[122,-20,65,-0.5518265515565872],[122,-20,66,-0.5502231270074844],[122,-20,67,-0.5484046824276447],[122,-20,68,-0.5477141104638577],[122,-20,69,-0.5488727241754532],[122,-20,70,-0.5513996481895447],[122,-20,71,-0.5542764626443386],[122,-20,72,-0.557181965559721],[122,-20,73,-0.558972891420126],[122,-20,74,-0.559431903064251],[122,-20,75,-0.5585466586053371],[122,-20,76,-0.5561536103487015],[122,-20,77,-0.5525593608617783],[122,-20,78,-0.548352126032114],[122,-20,79,-0.5437773950397968],[122,-19,64,-0.5520365312695503],[122,-19,65,-0.5518265515565872],[122,-19,66,-0.5502231270074844],[122,-19,67,-0.5484046824276447],[122,-19,68,-0.5477141104638577],[122,-19,69,-0.5488727241754532],[122,-19,70,-0.5513996481895447],[122,-19,71,-0.5542764626443386],[122,-19,72,-0.557181965559721],[122,-19,73,-0.558972891420126],[122,-19,74,-0.559431903064251],[122,-19,75,-0.5585466586053371],[122,-19,76,-0.5561536103487015],[122,-19,77,-0.5525593608617783],[122,-19,78,-0.548352126032114],[122,-19,79,-0.5437773950397968],[122,-18,64,-0.5520365312695503],[122,-18,65,-0.5518265515565872],[122,-18,66,-0.5502231270074844],[122,-18,67,-0.5484046824276447],[122,-18,68,-0.5477141104638577],[122,-18,69,-0.5488727241754532],[122,-18,70,-0.5513996481895447],[122,-18,71,-0.5542764626443386],[122,-18,72,-0.557181965559721],[122,-18,73,-0.558972891420126],[122,-18,74,-0.559431903064251],[122,-18,75,-0.5585466586053371],[122,-18,76,-0.5561536103487015],[122,-18,77,-0.5525593608617783],[122,-18,78,-0.548352126032114],[122,-18,79,-0.5437773950397968],[122,-17,64,-0.5520365312695503],[122,-17,65,-0.5518265515565872],[122,-17,66,-0.5502231270074844],[122,-17,67,-0.5484046824276447],[122,-17,68,-0.5477141104638577],[122,-17,69,-0.5488727241754532],[122,-17,70,-0.5513996481895447],[122,-17,71,-0.5542764626443386],[122,-17,72,-0.557181965559721],[122,-17,73,-0.558972891420126],[122,-17,74,-0.559431903064251],[122,-17,75,-0.5585466586053371],[122,-17,76,-0.5561536103487015],[122,-17,77,-0.5525593608617783],[122,-17,78,-0.548352126032114],[122,-17,79,-0.5437773950397968],[122,-16,64,-0.5520365312695503],[122,-16,65,-0.5518265515565872],[122,-16,66,-0.5502231270074844],[122,-16,67,-0.5484046824276447],[122,-16,68,-0.5477141104638577],[122,-16,69,-0.5488727241754532],[122,-16,70,-0.5513996481895447],[122,-16,71,-0.5542764626443386],[122,-16,72,-0.557181965559721],[122,-16,73,-0.558972891420126],[122,-16,74,-0.559431903064251],[122,-16,75,-0.5585466586053371],[122,-16,76,-0.5561536103487015],[122,-16,77,-0.5525593608617783],[122,-16,78,-0.548352126032114],[122,-16,79,-0.5437773950397968],[122,-15,64,-0.5520365312695503],[122,-15,65,-0.5518265515565872],[122,-15,66,-0.5502231270074844],[122,-15,67,-0.5484046824276447],[122,-15,68,-0.5477141104638577],[122,-15,69,-0.5488727241754532],[122,-15,70,-0.5513996481895447],[122,-15,71,-0.5542764626443386],[122,-15,72,-0.557181965559721],[122,-15,73,-0.558972891420126],[122,-15,74,-0.559431903064251],[122,-15,75,-0.5585466586053371],[122,-15,76,-0.5561536103487015],[122,-15,77,-0.5525593608617783],[122,-15,78,-0.548352126032114],[122,-15,79,-0.5437773950397968],[122,-14,64,-0.5520365312695503],[122,-14,65,-0.5518265515565872],[122,-14,66,-0.5502231270074844],[122,-14,67,-0.5484046824276447],[122,-14,68,-0.5477141104638577],[122,-14,69,-0.5488727241754532],[122,-14,70,-0.5513996481895447],[122,-14,71,-0.5542764626443386],[122,-14,72,-0.557181965559721],[122,-14,73,-0.558972891420126],[122,-14,74,-0.559431903064251],[122,-14,75,-0.5585466586053371],[122,-14,76,-0.5561536103487015],[122,-14,77,-0.5525593608617783],[122,-14,78,-0.548352126032114],[122,-14,79,-0.5437773950397968],[122,-13,64,-0.5520365312695503],[122,-13,65,-0.5518265515565872],[122,-13,66,-0.5502231270074844],[122,-13,67,-0.5484046824276447],[122,-13,68,-0.5477141104638577],[122,-13,69,-0.5488727241754532],[122,-13,70,-0.5513996481895447],[122,-13,71,-0.5542764626443386],[122,-13,72,-0.557181965559721],[122,-13,73,-0.558972891420126],[122,-13,74,-0.559431903064251],[122,-13,75,-0.5585466586053371],[122,-13,76,-0.5561536103487015],[122,-13,77,-0.5525593608617783],[122,-13,78,-0.548352126032114],[122,-13,79,-0.5437773950397968],[122,-12,64,-0.5520365312695503],[122,-12,65,-0.5518265515565872],[122,-12,66,-0.5502231270074844],[122,-12,67,-0.5484046824276447],[122,-12,68,-0.5477141104638577],[122,-12,69,-0.5488727241754532],[122,-12,70,-0.5513996481895447],[122,-12,71,-0.5542764626443386],[122,-12,72,-0.557181965559721],[122,-12,73,-0.558972891420126],[122,-12,74,-0.559431903064251],[122,-12,75,-0.5585466586053371],[122,-12,76,-0.5561536103487015],[122,-12,77,-0.5525593608617783],[122,-12,78,-0.548352126032114],[122,-12,79,-0.5437773950397968],[122,-11,64,-0.5520365312695503],[122,-11,65,-0.5518265515565872],[122,-11,66,-0.5502231270074844],[122,-11,67,-0.5484046824276447],[122,-11,68,-0.5477141104638577],[122,-11,69,-0.5488727241754532],[122,-11,70,-0.5513996481895447],[122,-11,71,-0.5542764626443386],[122,-11,72,-0.557181965559721],[122,-11,73,-0.558972891420126],[122,-11,74,-0.559431903064251],[122,-11,75,-0.5585466586053371],[122,-11,76,-0.5561536103487015],[122,-11,77,-0.5525593608617783],[122,-11,78,-0.548352126032114],[122,-11,79,-0.5437773950397968],[122,-10,64,-0.5520365312695503],[122,-10,65,-0.5518265515565872],[122,-10,66,-0.5502231270074844],[122,-10,67,-0.5484046824276447],[122,-10,68,-0.5477141104638577],[122,-10,69,-0.5488727241754532],[122,-10,70,-0.5513996481895447],[122,-10,71,-0.5542764626443386],[122,-10,72,-0.557181965559721],[122,-10,73,-0.558972891420126],[122,-10,74,-0.559431903064251],[122,-10,75,-0.5585466586053371],[122,-10,76,-0.5561536103487015],[122,-10,77,-0.5525593608617783],[122,-10,78,-0.548352126032114],[122,-10,79,-0.5437773950397968],[122,-9,64,-0.5520365312695503],[122,-9,65,-0.5518265515565872],[122,-9,66,-0.5502231270074844],[122,-9,67,-0.5484046824276447],[122,-9,68,-0.5477141104638577],[122,-9,69,-0.5488727241754532],[122,-9,70,-0.5513996481895447],[122,-9,71,-0.5542764626443386],[122,-9,72,-0.557181965559721],[122,-9,73,-0.558972891420126],[122,-9,74,-0.559431903064251],[122,-9,75,-0.5585466586053371],[122,-9,76,-0.5561536103487015],[122,-9,77,-0.5525593608617783],[122,-9,78,-0.548352126032114],[122,-9,79,-0.5437773950397968],[122,-8,64,-0.5520365312695503],[122,-8,65,-0.5518265515565872],[122,-8,66,-0.5502231270074844],[122,-8,67,-0.5484046824276447],[122,-8,68,-0.5477141104638577],[122,-8,69,-0.5488727241754532],[122,-8,70,-0.5513996481895447],[122,-8,71,-0.5542764626443386],[122,-8,72,-0.557181965559721],[122,-8,73,-0.558972891420126],[122,-8,74,-0.559431903064251],[122,-8,75,-0.5585466586053371],[122,-8,76,-0.5561536103487015],[122,-8,77,-0.5525593608617783],[122,-8,78,-0.548352126032114],[122,-8,79,-0.5437773950397968],[122,-7,64,-0.5520365312695503],[122,-7,65,-0.5518265515565872],[122,-7,66,-0.5502231270074844],[122,-7,67,-0.5484046824276447],[122,-7,68,-0.5477141104638577],[122,-7,69,-0.5488727241754532],[122,-7,70,-0.5513996481895447],[122,-7,71,-0.5542764626443386],[122,-7,72,-0.557181965559721],[122,-7,73,-0.558972891420126],[122,-7,74,-0.559431903064251],[122,-7,75,-0.5585466586053371],[122,-7,76,-0.5561536103487015],[122,-7,77,-0.5525593608617783],[122,-7,78,-0.548352126032114],[122,-7,79,-0.5437773950397968],[122,-6,64,-0.5520365312695503],[122,-6,65,-0.5518265515565872],[122,-6,66,-0.5502231270074844],[122,-6,67,-0.5484046824276447],[122,-6,68,-0.5477141104638577],[122,-6,69,-0.5488727241754532],[122,-6,70,-0.5513996481895447],[122,-6,71,-0.5542764626443386],[122,-6,72,-0.557181965559721],[122,-6,73,-0.558972891420126],[122,-6,74,-0.559431903064251],[122,-6,75,-0.5585466586053371],[122,-6,76,-0.5561536103487015],[122,-6,77,-0.5525593608617783],[122,-6,78,-0.548352126032114],[122,-6,79,-0.5437773950397968],[122,-5,64,-0.5520365312695503],[122,-5,65,-0.5518265515565872],[122,-5,66,-0.5502231270074844],[122,-5,67,-0.5484046824276447],[122,-5,68,-0.5477141104638577],[122,-5,69,-0.5488727241754532],[122,-5,70,-0.5513996481895447],[122,-5,71,-0.5542764626443386],[122,-5,72,-0.557181965559721],[122,-5,73,-0.558972891420126],[122,-5,74,-0.559431903064251],[122,-5,75,-0.5585466586053371],[122,-5,76,-0.5561536103487015],[122,-5,77,-0.5525593608617783],[122,-5,78,-0.548352126032114],[122,-5,79,-0.5437773950397968],[122,-4,64,-0.5520365312695503],[122,-4,65,-0.5518265515565872],[122,-4,66,-0.5502231270074844],[122,-4,67,-0.5484046824276447],[122,-4,68,-0.5477141104638577],[122,-4,69,-0.5488727241754532],[122,-4,70,-0.5513996481895447],[122,-4,71,-0.5542764626443386],[122,-4,72,-0.557181965559721],[122,-4,73,-0.558972891420126],[122,-4,74,-0.559431903064251],[122,-4,75,-0.5585466586053371],[122,-4,76,-0.5561536103487015],[122,-4,77,-0.5525593608617783],[122,-4,78,-0.548352126032114],[122,-4,79,-0.5437773950397968],[122,-3,64,-0.5520365312695503],[122,-3,65,-0.5518265515565872],[122,-3,66,-0.5502231270074844],[122,-3,67,-0.5484046824276447],[122,-3,68,-0.5477141104638577],[122,-3,69,-0.5488727241754532],[122,-3,70,-0.5513996481895447],[122,-3,71,-0.5542764626443386],[122,-3,72,-0.557181965559721],[122,-3,73,-0.558972891420126],[122,-3,74,-0.559431903064251],[122,-3,75,-0.5585466586053371],[122,-3,76,-0.5561536103487015],[122,-3,77,-0.5525593608617783],[122,-3,78,-0.548352126032114],[122,-3,79,-0.5437773950397968],[122,-2,64,-0.5520365312695503],[122,-2,65,-0.5518265515565872],[122,-2,66,-0.5502231270074844],[122,-2,67,-0.5484046824276447],[122,-2,68,-0.5477141104638577],[122,-2,69,-0.5488727241754532],[122,-2,70,-0.5513996481895447],[122,-2,71,-0.5542764626443386],[122,-2,72,-0.557181965559721],[122,-2,73,-0.558972891420126],[122,-2,74,-0.559431903064251],[122,-2,75,-0.5585466586053371],[122,-2,76,-0.5561536103487015],[122,-2,77,-0.5525593608617783],[122,-2,78,-0.548352126032114],[122,-2,79,-0.5437773950397968],[122,-1,64,-0.5520365312695503],[122,-1,65,-0.5518265515565872],[122,-1,66,-0.5502231270074844],[122,-1,67,-0.5484046824276447],[122,-1,68,-0.5477141104638577],[122,-1,69,-0.5488727241754532],[122,-1,70,-0.5513996481895447],[122,-1,71,-0.5542764626443386],[122,-1,72,-0.557181965559721],[122,-1,73,-0.558972891420126],[122,-1,74,-0.559431903064251],[122,-1,75,-0.5585466586053371],[122,-1,76,-0.5561536103487015],[122,-1,77,-0.5525593608617783],[122,-1,78,-0.548352126032114],[122,-1,79,-0.5437773950397968],[122,0,64,-0.5520365312695503],[122,0,65,-0.5518265515565872],[122,0,66,-0.5502231270074844],[122,0,67,-0.5484046824276447],[122,0,68,-0.5477141104638577],[122,0,69,-0.5488727241754532],[122,0,70,-0.5513996481895447],[122,0,71,-0.5542764626443386],[122,0,72,-0.557181965559721],[122,0,73,-0.558972891420126],[122,0,74,-0.559431903064251],[122,0,75,-0.5585466586053371],[122,0,76,-0.5561536103487015],[122,0,77,-0.5525593608617783],[122,0,78,-0.548352126032114],[122,0,79,-0.5437773950397968],[122,1,64,-0.5520365312695503],[122,1,65,-0.5518265515565872],[122,1,66,-0.5502231270074844],[122,1,67,-0.5484046824276447],[122,1,68,-0.5477141104638577],[122,1,69,-0.5488727241754532],[122,1,70,-0.5513996481895447],[122,1,71,-0.5542764626443386],[122,1,72,-0.557181965559721],[122,1,73,-0.558972891420126],[122,1,74,-0.559431903064251],[122,1,75,-0.5585466586053371],[122,1,76,-0.5561536103487015],[122,1,77,-0.5525593608617783],[122,1,78,-0.548352126032114],[122,1,79,-0.5437773950397968],[122,2,64,-0.5520365312695503],[122,2,65,-0.5518265515565872],[122,2,66,-0.5502231270074844],[122,2,67,-0.5484046824276447],[122,2,68,-0.5477141104638577],[122,2,69,-0.5488727241754532],[122,2,70,-0.5513996481895447],[122,2,71,-0.5542764626443386],[122,2,72,-0.557181965559721],[122,2,73,-0.558972891420126],[122,2,74,-0.559431903064251],[122,2,75,-0.5585466586053371],[122,2,76,-0.5561536103487015],[122,2,77,-0.5525593608617783],[122,2,78,-0.548352126032114],[122,2,79,-0.5437773950397968],[122,3,64,-0.5520365312695503],[122,3,65,-0.5518265515565872],[122,3,66,-0.5502231270074844],[122,3,67,-0.5484046824276447],[122,3,68,-0.5477141104638577],[122,3,69,-0.5488727241754532],[122,3,70,-0.5513996481895447],[122,3,71,-0.5542764626443386],[122,3,72,-0.557181965559721],[122,3,73,-0.558972891420126],[122,3,74,-0.559431903064251],[122,3,75,-0.5585466586053371],[122,3,76,-0.5561536103487015],[122,3,77,-0.5525593608617783],[122,3,78,-0.548352126032114],[122,3,79,-0.5437773950397968],[122,4,64,-0.5520365312695503],[122,4,65,-0.5518265515565872],[122,4,66,-0.5502231270074844],[122,4,67,-0.5484046824276447],[122,4,68,-0.5477141104638577],[122,4,69,-0.5488727241754532],[122,4,70,-0.5513996481895447],[122,4,71,-0.5542764626443386],[122,4,72,-0.557181965559721],[122,4,73,-0.558972891420126],[122,4,74,-0.559431903064251],[122,4,75,-0.5585466586053371],[122,4,76,-0.5561536103487015],[122,4,77,-0.5525593608617783],[122,4,78,-0.548352126032114],[122,4,79,-0.5437773950397968],[122,5,64,-0.5520365312695503],[122,5,65,-0.5518265515565872],[122,5,66,-0.5502231270074844],[122,5,67,-0.5484046824276447],[122,5,68,-0.5477141104638577],[122,5,69,-0.5488727241754532],[122,5,70,-0.5513996481895447],[122,5,71,-0.5542764626443386],[122,5,72,-0.557181965559721],[122,5,73,-0.558972891420126],[122,5,74,-0.559431903064251],[122,5,75,-0.5585466586053371],[122,5,76,-0.5561536103487015],[122,5,77,-0.5525593608617783],[122,5,78,-0.548352126032114],[122,5,79,-0.5437773950397968],[122,6,64,-0.5520365312695503],[122,6,65,-0.5518265515565872],[122,6,66,-0.5502231270074844],[122,6,67,-0.5484046824276447],[122,6,68,-0.5477141104638577],[122,6,69,-0.5488727241754532],[122,6,70,-0.5513996481895447],[122,6,71,-0.5542764626443386],[122,6,72,-0.557181965559721],[122,6,73,-0.558972891420126],[122,6,74,-0.559431903064251],[122,6,75,-0.5585466586053371],[122,6,76,-0.5561536103487015],[122,6,77,-0.5525593608617783],[122,6,78,-0.548352126032114],[122,6,79,-0.5437773950397968],[122,7,64,-0.5520365312695503],[122,7,65,-0.5518265515565872],[122,7,66,-0.5502231270074844],[122,7,67,-0.5484046824276447],[122,7,68,-0.5477141104638577],[122,7,69,-0.5488727241754532],[122,7,70,-0.5513996481895447],[122,7,71,-0.5542764626443386],[122,7,72,-0.557181965559721],[122,7,73,-0.558972891420126],[122,7,74,-0.559431903064251],[122,7,75,-0.5585466586053371],[122,7,76,-0.5561536103487015],[122,7,77,-0.5525593608617783],[122,7,78,-0.548352126032114],[122,7,79,-0.5437773950397968],[122,8,64,-0.5520365312695503],[122,8,65,-0.5518265515565872],[122,8,66,-0.5502231270074844],[122,8,67,-0.5484046824276447],[122,8,68,-0.5477141104638577],[122,8,69,-0.5488727241754532],[122,8,70,-0.5513996481895447],[122,8,71,-0.5542764626443386],[122,8,72,-0.557181965559721],[122,8,73,-0.558972891420126],[122,8,74,-0.559431903064251],[122,8,75,-0.5585466586053371],[122,8,76,-0.5561536103487015],[122,8,77,-0.5525593608617783],[122,8,78,-0.548352126032114],[122,8,79,-0.5437773950397968],[122,9,64,-0.5520365312695503],[122,9,65,-0.5518265515565872],[122,9,66,-0.5502231270074844],[122,9,67,-0.5484046824276447],[122,9,68,-0.5477141104638577],[122,9,69,-0.5488727241754532],[122,9,70,-0.5513996481895447],[122,9,71,-0.5542764626443386],[122,9,72,-0.557181965559721],[122,9,73,-0.558972891420126],[122,9,74,-0.559431903064251],[122,9,75,-0.5585466586053371],[122,9,76,-0.5561536103487015],[122,9,77,-0.5525593608617783],[122,9,78,-0.548352126032114],[122,9,79,-0.5437773950397968],[122,10,64,-0.5520365312695503],[122,10,65,-0.5518265515565872],[122,10,66,-0.5502231270074844],[122,10,67,-0.5484046824276447],[122,10,68,-0.5477141104638577],[122,10,69,-0.5488727241754532],[122,10,70,-0.5513996481895447],[122,10,71,-0.5542764626443386],[122,10,72,-0.557181965559721],[122,10,73,-0.558972891420126],[122,10,74,-0.559431903064251],[122,10,75,-0.5585466586053371],[122,10,76,-0.5561536103487015],[122,10,77,-0.5525593608617783],[122,10,78,-0.548352126032114],[122,10,79,-0.5437773950397968],[122,11,64,-0.5520365312695503],[122,11,65,-0.5518265515565872],[122,11,66,-0.5502231270074844],[122,11,67,-0.5484046824276447],[122,11,68,-0.5477141104638577],[122,11,69,-0.5488727241754532],[122,11,70,-0.5513996481895447],[122,11,71,-0.5542764626443386],[122,11,72,-0.557181965559721],[122,11,73,-0.558972891420126],[122,11,74,-0.559431903064251],[122,11,75,-0.5585466586053371],[122,11,76,-0.5561536103487015],[122,11,77,-0.5525593608617783],[122,11,78,-0.548352126032114],[122,11,79,-0.5437773950397968],[122,12,64,-0.5520365312695503],[122,12,65,-0.5518265515565872],[122,12,66,-0.5502231270074844],[122,12,67,-0.5484046824276447],[122,12,68,-0.5477141104638577],[122,12,69,-0.5488727241754532],[122,12,70,-0.5513996481895447],[122,12,71,-0.5542764626443386],[122,12,72,-0.557181965559721],[122,12,73,-0.558972891420126],[122,12,74,-0.559431903064251],[122,12,75,-0.5585466586053371],[122,12,76,-0.5561536103487015],[122,12,77,-0.5525593608617783],[122,12,78,-0.548352126032114],[122,12,79,-0.5437773950397968],[122,13,64,-0.5520365312695503],[122,13,65,-0.5518265515565872],[122,13,66,-0.5502231270074844],[122,13,67,-0.5484046824276447],[122,13,68,-0.5477141104638577],[122,13,69,-0.5488727241754532],[122,13,70,-0.5513996481895447],[122,13,71,-0.5542764626443386],[122,13,72,-0.557181965559721],[122,13,73,-0.558972891420126],[122,13,74,-0.559431903064251],[122,13,75,-0.5585466586053371],[122,13,76,-0.5561536103487015],[122,13,77,-0.5525593608617783],[122,13,78,-0.548352126032114],[122,13,79,-0.5437773950397968],[122,14,64,-0.5520365312695503],[122,14,65,-0.5518265515565872],[122,14,66,-0.5502231270074844],[122,14,67,-0.5484046824276447],[122,14,68,-0.5477141104638577],[122,14,69,-0.5488727241754532],[122,14,70,-0.5513996481895447],[122,14,71,-0.5542764626443386],[122,14,72,-0.557181965559721],[122,14,73,-0.558972891420126],[122,14,74,-0.559431903064251],[122,14,75,-0.5585466586053371],[122,14,76,-0.5561536103487015],[122,14,77,-0.5525593608617783],[122,14,78,-0.548352126032114],[122,14,79,-0.5437773950397968],[122,15,64,-0.5520365312695503],[122,15,65,-0.5518265515565872],[122,15,66,-0.5502231270074844],[122,15,67,-0.5484046824276447],[122,15,68,-0.5477141104638577],[122,15,69,-0.5488727241754532],[122,15,70,-0.5513996481895447],[122,15,71,-0.5542764626443386],[122,15,72,-0.557181965559721],[122,15,73,-0.558972891420126],[122,15,74,-0.559431903064251],[122,15,75,-0.5585466586053371],[122,15,76,-0.5561536103487015],[122,15,77,-0.5525593608617783],[122,15,78,-0.548352126032114],[122,15,79,-0.5437773950397968],[122,16,64,-0.5520365312695503],[122,16,65,-0.5518265515565872],[122,16,66,-0.5502231270074844],[122,16,67,-0.5484046824276447],[122,16,68,-0.5477141104638577],[122,16,69,-0.5488727241754532],[122,16,70,-0.5513996481895447],[122,16,71,-0.5542764626443386],[122,16,72,-0.557181965559721],[122,16,73,-0.558972891420126],[122,16,74,-0.559431903064251],[122,16,75,-0.5585466586053371],[122,16,76,-0.5561536103487015],[122,16,77,-0.5525593608617783],[122,16,78,-0.548352126032114],[122,16,79,-0.5437773950397968],[122,17,64,-0.5520365312695503],[122,17,65,-0.5518265515565872],[122,17,66,-0.5502231270074844],[122,17,67,-0.5484046824276447],[122,17,68,-0.5477141104638577],[122,17,69,-0.5488727241754532],[122,17,70,-0.5513996481895447],[122,17,71,-0.5542764626443386],[122,17,72,-0.557181965559721],[122,17,73,-0.558972891420126],[122,17,74,-0.559431903064251],[122,17,75,-0.5585466586053371],[122,17,76,-0.5561536103487015],[122,17,77,-0.5525593608617783],[122,17,78,-0.548352126032114],[122,17,79,-0.5437773950397968],[122,18,64,-0.5520365312695503],[122,18,65,-0.5518265515565872],[122,18,66,-0.5502231270074844],[122,18,67,-0.5484046824276447],[122,18,68,-0.5477141104638577],[122,18,69,-0.5488727241754532],[122,18,70,-0.5513996481895447],[122,18,71,-0.5542764626443386],[122,18,72,-0.557181965559721],[122,18,73,-0.558972891420126],[122,18,74,-0.559431903064251],[122,18,75,-0.5585466586053371],[122,18,76,-0.5561536103487015],[122,18,77,-0.5525593608617783],[122,18,78,-0.548352126032114],[122,18,79,-0.5437773950397968],[122,19,64,-0.5520365312695503],[122,19,65,-0.5518265515565872],[122,19,66,-0.5502231270074844],[122,19,67,-0.5484046824276447],[122,19,68,-0.5477141104638577],[122,19,69,-0.5488727241754532],[122,19,70,-0.5513996481895447],[122,19,71,-0.5542764626443386],[122,19,72,-0.557181965559721],[122,19,73,-0.558972891420126],[122,19,74,-0.559431903064251],[122,19,75,-0.5585466586053371],[122,19,76,-0.5561536103487015],[122,19,77,-0.5525593608617783],[122,19,78,-0.548352126032114],[122,19,79,-0.5437773950397968],[122,20,64,-0.5520365312695503],[122,20,65,-0.5518265515565872],[122,20,66,-0.5502231270074844],[122,20,67,-0.5484046824276447],[122,20,68,-0.5477141104638577],[122,20,69,-0.5488727241754532],[122,20,70,-0.5513996481895447],[122,20,71,-0.5542764626443386],[122,20,72,-0.557181965559721],[122,20,73,-0.558972891420126],[122,20,74,-0.559431903064251],[122,20,75,-0.5585466586053371],[122,20,76,-0.5561536103487015],[122,20,77,-0.5525593608617783],[122,20,78,-0.548352126032114],[122,20,79,-0.5437773950397968],[122,21,64,-0.5520365312695503],[122,21,65,-0.5518265515565872],[122,21,66,-0.5502231270074844],[122,21,67,-0.5484046824276447],[122,21,68,-0.5477141104638577],[122,21,69,-0.5488727241754532],[122,21,70,-0.5513996481895447],[122,21,71,-0.5542764626443386],[122,21,72,-0.557181965559721],[122,21,73,-0.558972891420126],[122,21,74,-0.559431903064251],[122,21,75,-0.5585466586053371],[122,21,76,-0.5561536103487015],[122,21,77,-0.5525593608617783],[122,21,78,-0.548352126032114],[122,21,79,-0.5437773950397968],[122,22,64,-0.5520365312695503],[122,22,65,-0.5518265515565872],[122,22,66,-0.5502231270074844],[122,22,67,-0.5484046824276447],[122,22,68,-0.5477141104638577],[122,22,69,-0.5488727241754532],[122,22,70,-0.5513996481895447],[122,22,71,-0.5542764626443386],[122,22,72,-0.557181965559721],[122,22,73,-0.558972891420126],[122,22,74,-0.559431903064251],[122,22,75,-0.5585466586053371],[122,22,76,-0.5561536103487015],[122,22,77,-0.5525593608617783],[122,22,78,-0.548352126032114],[122,22,79,-0.5437773950397968],[122,23,64,-0.5520365312695503],[122,23,65,-0.5518265515565872],[122,23,66,-0.5502231270074844],[122,23,67,-0.5484046824276447],[122,23,68,-0.5477141104638577],[122,23,69,-0.5488727241754532],[122,23,70,-0.5513996481895447],[122,23,71,-0.5542764626443386],[122,23,72,-0.557181965559721],[122,23,73,-0.558972891420126],[122,23,74,-0.559431903064251],[122,23,75,-0.5585466586053371],[122,23,76,-0.5561536103487015],[122,23,77,-0.5525593608617783],[122,23,78,-0.548352126032114],[122,23,79,-0.5437773950397968],[122,24,64,-0.5520365312695503],[122,24,65,-0.5518265515565872],[122,24,66,-0.5502231270074844],[122,24,67,-0.5484046824276447],[122,24,68,-0.5477141104638577],[122,24,69,-0.5488727241754532],[122,24,70,-0.5513996481895447],[122,24,71,-0.5542764626443386],[122,24,72,-0.557181965559721],[122,24,73,-0.558972891420126],[122,24,74,-0.559431903064251],[122,24,75,-0.5585466586053371],[122,24,76,-0.5561536103487015],[122,24,77,-0.5525593608617783],[122,24,78,-0.548352126032114],[122,24,79,-0.5437773950397968],[122,25,64,-0.5520365312695503],[122,25,65,-0.5518265515565872],[122,25,66,-0.5502231270074844],[122,25,67,-0.5484046824276447],[122,25,68,-0.5477141104638577],[122,25,69,-0.5488727241754532],[122,25,70,-0.5513996481895447],[122,25,71,-0.5542764626443386],[122,25,72,-0.557181965559721],[122,25,73,-0.558972891420126],[122,25,74,-0.559431903064251],[122,25,75,-0.5585466586053371],[122,25,76,-0.5561536103487015],[122,25,77,-0.5525593608617783],[122,25,78,-0.548352126032114],[122,25,79,-0.5437773950397968],[122,26,64,-0.5520365312695503],[122,26,65,-0.5518265515565872],[122,26,66,-0.5502231270074844],[122,26,67,-0.5484046824276447],[122,26,68,-0.5477141104638577],[122,26,69,-0.5488727241754532],[122,26,70,-0.5513996481895447],[122,26,71,-0.5542764626443386],[122,26,72,-0.557181965559721],[122,26,73,-0.558972891420126],[122,26,74,-0.559431903064251],[122,26,75,-0.5585466586053371],[122,26,76,-0.5561536103487015],[122,26,77,-0.5525593608617783],[122,26,78,-0.548352126032114],[122,26,79,-0.5437773950397968],[122,27,64,-0.5520365312695503],[122,27,65,-0.5518265515565872],[122,27,66,-0.5502231270074844],[122,27,67,-0.5484046824276447],[122,27,68,-0.5477141104638577],[122,27,69,-0.5488727241754532],[122,27,70,-0.5513996481895447],[122,27,71,-0.5542764626443386],[122,27,72,-0.557181965559721],[122,27,73,-0.558972891420126],[122,27,74,-0.559431903064251],[122,27,75,-0.5585466586053371],[122,27,76,-0.5561536103487015],[122,27,77,-0.5525593608617783],[122,27,78,-0.548352126032114],[122,27,79,-0.5437773950397968],[122,28,64,-0.5520365312695503],[122,28,65,-0.5518265515565872],[122,28,66,-0.5502231270074844],[122,28,67,-0.5484046824276447],[122,28,68,-0.5477141104638577],[122,28,69,-0.5488727241754532],[122,28,70,-0.5513996481895447],[122,28,71,-0.5542764626443386],[122,28,72,-0.557181965559721],[122,28,73,-0.558972891420126],[122,28,74,-0.559431903064251],[122,28,75,-0.5585466586053371],[122,28,76,-0.5561536103487015],[122,28,77,-0.5525593608617783],[122,28,78,-0.548352126032114],[122,28,79,-0.5437773950397968],[122,29,64,-0.5520365312695503],[122,29,65,-0.5518265515565872],[122,29,66,-0.5502231270074844],[122,29,67,-0.5484046824276447],[122,29,68,-0.5477141104638577],[122,29,69,-0.5488727241754532],[122,29,70,-0.5513996481895447],[122,29,71,-0.5542764626443386],[122,29,72,-0.557181965559721],[122,29,73,-0.558972891420126],[122,29,74,-0.559431903064251],[122,29,75,-0.5585466586053371],[122,29,76,-0.5561536103487015],[122,29,77,-0.5525593608617783],[122,29,78,-0.548352126032114],[122,29,79,-0.5437773950397968],[122,30,64,-0.5520365312695503],[122,30,65,-0.5518265515565872],[122,30,66,-0.5502231270074844],[122,30,67,-0.5484046824276447],[122,30,68,-0.5477141104638577],[122,30,69,-0.5488727241754532],[122,30,70,-0.5513996481895447],[122,30,71,-0.5542764626443386],[122,30,72,-0.557181965559721],[122,30,73,-0.558972891420126],[122,30,74,-0.559431903064251],[122,30,75,-0.5585466586053371],[122,30,76,-0.5561536103487015],[122,30,77,-0.5525593608617783],[122,30,78,-0.548352126032114],[122,30,79,-0.5437773950397968],[122,31,64,-0.5520365312695503],[122,31,65,-0.5518265515565872],[122,31,66,-0.5502231270074844],[122,31,67,-0.5484046824276447],[122,31,68,-0.5477141104638577],[122,31,69,-0.5488727241754532],[122,31,70,-0.5513996481895447],[122,31,71,-0.5542764626443386],[122,31,72,-0.557181965559721],[122,31,73,-0.558972891420126],[122,31,74,-0.559431903064251],[122,31,75,-0.5585466586053371],[122,31,76,-0.5561536103487015],[122,31,77,-0.5525593608617783],[122,31,78,-0.548352126032114],[122,31,79,-0.5437773950397968],[122,32,64,-0.5520365312695503],[122,32,65,-0.5518265515565872],[122,32,66,-0.5502231270074844],[122,32,67,-0.5484046824276447],[122,32,68,-0.5477141104638577],[122,32,69,-0.5488727241754532],[122,32,70,-0.5513996481895447],[122,32,71,-0.5542764626443386],[122,32,72,-0.557181965559721],[122,32,73,-0.558972891420126],[122,32,74,-0.559431903064251],[122,32,75,-0.5585466586053371],[122,32,76,-0.5561536103487015],[122,32,77,-0.5525593608617783],[122,32,78,-0.548352126032114],[122,32,79,-0.5437773950397968],[122,33,64,-0.5520365312695503],[122,33,65,-0.5518265515565872],[122,33,66,-0.5502231270074844],[122,33,67,-0.5484046824276447],[122,33,68,-0.5477141104638577],[122,33,69,-0.5488727241754532],[122,33,70,-0.5513996481895447],[122,33,71,-0.5542764626443386],[122,33,72,-0.557181965559721],[122,33,73,-0.558972891420126],[122,33,74,-0.559431903064251],[122,33,75,-0.5585466586053371],[122,33,76,-0.5561536103487015],[122,33,77,-0.5525593608617783],[122,33,78,-0.548352126032114],[122,33,79,-0.5437773950397968],[122,34,64,-0.5520365312695503],[122,34,65,-0.5518265515565872],[122,34,66,-0.5502231270074844],[122,34,67,-0.5484046824276447],[122,34,68,-0.5477141104638577],[122,34,69,-0.5488727241754532],[122,34,70,-0.5513996481895447],[122,34,71,-0.5542764626443386],[122,34,72,-0.557181965559721],[122,34,73,-0.558972891420126],[122,34,74,-0.559431903064251],[122,34,75,-0.5585466586053371],[122,34,76,-0.5561536103487015],[122,34,77,-0.5525593608617783],[122,34,78,-0.548352126032114],[122,34,79,-0.5437773950397968],[122,35,64,-0.5520365312695503],[122,35,65,-0.5518265515565872],[122,35,66,-0.5502231270074844],[122,35,67,-0.5484046824276447],[122,35,68,-0.5477141104638577],[122,35,69,-0.5488727241754532],[122,35,70,-0.5513996481895447],[122,35,71,-0.5542764626443386],[122,35,72,-0.557181965559721],[122,35,73,-0.558972891420126],[122,35,74,-0.559431903064251],[122,35,75,-0.5585466586053371],[122,35,76,-0.5561536103487015],[122,35,77,-0.5525593608617783],[122,35,78,-0.548352126032114],[122,35,79,-0.5437773950397968],[122,36,64,-0.5520365312695503],[122,36,65,-0.5518265515565872],[122,36,66,-0.5502231270074844],[122,36,67,-0.5484046824276447],[122,36,68,-0.5477141104638577],[122,36,69,-0.5488727241754532],[122,36,70,-0.5513996481895447],[122,36,71,-0.5542764626443386],[122,36,72,-0.557181965559721],[122,36,73,-0.558972891420126],[122,36,74,-0.559431903064251],[122,36,75,-0.5585466586053371],[122,36,76,-0.5561536103487015],[122,36,77,-0.5525593608617783],[122,36,78,-0.548352126032114],[122,36,79,-0.5437773950397968],[122,37,64,-0.5520365312695503],[122,37,65,-0.5518265515565872],[122,37,66,-0.5502231270074844],[122,37,67,-0.5484046824276447],[122,37,68,-0.5477141104638577],[122,37,69,-0.5488727241754532],[122,37,70,-0.5513996481895447],[122,37,71,-0.5542764626443386],[122,37,72,-0.557181965559721],[122,37,73,-0.558972891420126],[122,37,74,-0.559431903064251],[122,37,75,-0.5585466586053371],[122,37,76,-0.5561536103487015],[122,37,77,-0.5525593608617783],[122,37,78,-0.548352126032114],[122,37,79,-0.5437773950397968],[122,38,64,-0.5520365312695503],[122,38,65,-0.5518265515565872],[122,38,66,-0.5502231270074844],[122,38,67,-0.5484046824276447],[122,38,68,-0.5477141104638577],[122,38,69,-0.5488727241754532],[122,38,70,-0.5513996481895447],[122,38,71,-0.5542764626443386],[122,38,72,-0.557181965559721],[122,38,73,-0.558972891420126],[122,38,74,-0.559431903064251],[122,38,75,-0.5585466586053371],[122,38,76,-0.5561536103487015],[122,38,77,-0.5525593608617783],[122,38,78,-0.548352126032114],[122,38,79,-0.5437773950397968],[122,39,64,-0.5520365312695503],[122,39,65,-0.5518265515565872],[122,39,66,-0.5502231270074844],[122,39,67,-0.5484046824276447],[122,39,68,-0.5477141104638577],[122,39,69,-0.5488727241754532],[122,39,70,-0.5513996481895447],[122,39,71,-0.5542764626443386],[122,39,72,-0.557181965559721],[122,39,73,-0.558972891420126],[122,39,74,-0.559431903064251],[122,39,75,-0.5585466586053371],[122,39,76,-0.5561536103487015],[122,39,77,-0.5525593608617783],[122,39,78,-0.548352126032114],[122,39,79,-0.5437773950397968],[122,40,64,-0.5520365312695503],[122,40,65,-0.5518265515565872],[122,40,66,-0.5502231270074844],[122,40,67,-0.5484046824276447],[122,40,68,-0.5477141104638577],[122,40,69,-0.5488727241754532],[122,40,70,-0.5513996481895447],[122,40,71,-0.5542764626443386],[122,40,72,-0.557181965559721],[122,40,73,-0.558972891420126],[122,40,74,-0.559431903064251],[122,40,75,-0.5585466586053371],[122,40,76,-0.5561536103487015],[122,40,77,-0.5525593608617783],[122,40,78,-0.548352126032114],[122,40,79,-0.5437773950397968],[122,41,64,-0.5520365312695503],[122,41,65,-0.5518265515565872],[122,41,66,-0.5502231270074844],[122,41,67,-0.5484046824276447],[122,41,68,-0.5477141104638577],[122,41,69,-0.5488727241754532],[122,41,70,-0.5513996481895447],[122,41,71,-0.5542764626443386],[122,41,72,-0.557181965559721],[122,41,73,-0.558972891420126],[122,41,74,-0.559431903064251],[122,41,75,-0.5585466586053371],[122,41,76,-0.5561536103487015],[122,41,77,-0.5525593608617783],[122,41,78,-0.548352126032114],[122,41,79,-0.5437773950397968],[122,42,64,-0.5520365312695503],[122,42,65,-0.5518265515565872],[122,42,66,-0.5502231270074844],[122,42,67,-0.5484046824276447],[122,42,68,-0.5477141104638577],[122,42,69,-0.5488727241754532],[122,42,70,-0.5513996481895447],[122,42,71,-0.5542764626443386],[122,42,72,-0.557181965559721],[122,42,73,-0.558972891420126],[122,42,74,-0.559431903064251],[122,42,75,-0.5585466586053371],[122,42,76,-0.5561536103487015],[122,42,77,-0.5525593608617783],[122,42,78,-0.548352126032114],[122,42,79,-0.5437773950397968],[122,43,64,-0.5520365312695503],[122,43,65,-0.5518265515565872],[122,43,66,-0.5502231270074844],[122,43,67,-0.5484046824276447],[122,43,68,-0.5477141104638577],[122,43,69,-0.5488727241754532],[122,43,70,-0.5513996481895447],[122,43,71,-0.5542764626443386],[122,43,72,-0.557181965559721],[122,43,73,-0.558972891420126],[122,43,74,-0.559431903064251],[122,43,75,-0.5585466586053371],[122,43,76,-0.5561536103487015],[122,43,77,-0.5525593608617783],[122,43,78,-0.548352126032114],[122,43,79,-0.5437773950397968],[122,44,64,-0.5520365312695503],[122,44,65,-0.5518265515565872],[122,44,66,-0.5502231270074844],[122,44,67,-0.5484046824276447],[122,44,68,-0.5477141104638577],[122,44,69,-0.5488727241754532],[122,44,70,-0.5513996481895447],[122,44,71,-0.5542764626443386],[122,44,72,-0.557181965559721],[122,44,73,-0.558972891420126],[122,44,74,-0.559431903064251],[122,44,75,-0.5585466586053371],[122,44,76,-0.5561536103487015],[122,44,77,-0.5525593608617783],[122,44,78,-0.548352126032114],[122,44,79,-0.5437773950397968],[122,45,64,-0.5520365312695503],[122,45,65,-0.5518265515565872],[122,45,66,-0.5502231270074844],[122,45,67,-0.5484046824276447],[122,45,68,-0.5477141104638577],[122,45,69,-0.5488727241754532],[122,45,70,-0.5513996481895447],[122,45,71,-0.5542764626443386],[122,45,72,-0.557181965559721],[122,45,73,-0.558972891420126],[122,45,74,-0.559431903064251],[122,45,75,-0.5585466586053371],[122,45,76,-0.5561536103487015],[122,45,77,-0.5525593608617783],[122,45,78,-0.548352126032114],[122,45,79,-0.5437773950397968],[122,46,64,-0.5520365312695503],[122,46,65,-0.5518265515565872],[122,46,66,-0.5502231270074844],[122,46,67,-0.5484046824276447],[122,46,68,-0.5477141104638577],[122,46,69,-0.5488727241754532],[122,46,70,-0.5513996481895447],[122,46,71,-0.5542764626443386],[122,46,72,-0.557181965559721],[122,46,73,-0.558972891420126],[122,46,74,-0.559431903064251],[122,46,75,-0.5585466586053371],[122,46,76,-0.5561536103487015],[122,46,77,-0.5525593608617783],[122,46,78,-0.548352126032114],[122,46,79,-0.5437773950397968],[122,47,64,-0.5520365312695503],[122,47,65,-0.5518265515565872],[122,47,66,-0.5502231270074844],[122,47,67,-0.5484046824276447],[122,47,68,-0.5477141104638577],[122,47,69,-0.5488727241754532],[122,47,70,-0.5513996481895447],[122,47,71,-0.5542764626443386],[122,47,72,-0.557181965559721],[122,47,73,-0.558972891420126],[122,47,74,-0.559431903064251],[122,47,75,-0.5585466586053371],[122,47,76,-0.5561536103487015],[122,47,77,-0.5525593608617783],[122,47,78,-0.548352126032114],[122,47,79,-0.5437773950397968],[122,48,64,-0.5520365312695503],[122,48,65,-0.5518265515565872],[122,48,66,-0.5502231270074844],[122,48,67,-0.5484046824276447],[122,48,68,-0.5477141104638577],[122,48,69,-0.5488727241754532],[122,48,70,-0.5513996481895447],[122,48,71,-0.5542764626443386],[122,48,72,-0.557181965559721],[122,48,73,-0.558972891420126],[122,48,74,-0.559431903064251],[122,48,75,-0.5585466586053371],[122,48,76,-0.5561536103487015],[122,48,77,-0.5525593608617783],[122,48,78,-0.548352126032114],[122,48,79,-0.5437773950397968],[122,49,64,-0.5520365312695503],[122,49,65,-0.5518265515565872],[122,49,66,-0.5502231270074844],[122,49,67,-0.5484046824276447],[122,49,68,-0.5477141104638577],[122,49,69,-0.5488727241754532],[122,49,70,-0.5513996481895447],[122,49,71,-0.5542764626443386],[122,49,72,-0.557181965559721],[122,49,73,-0.558972891420126],[122,49,74,-0.559431903064251],[122,49,75,-0.5585466586053371],[122,49,76,-0.5561536103487015],[122,49,77,-0.5525593608617783],[122,49,78,-0.548352126032114],[122,49,79,-0.5437773950397968],[122,50,64,-0.5520365312695503],[122,50,65,-0.5518265515565872],[122,50,66,-0.5502231270074844],[122,50,67,-0.5484046824276447],[122,50,68,-0.5477141104638577],[122,50,69,-0.5488727241754532],[122,50,70,-0.5513996481895447],[122,50,71,-0.5542764626443386],[122,50,72,-0.557181965559721],[122,50,73,-0.558972891420126],[122,50,74,-0.559431903064251],[122,50,75,-0.5585466586053371],[122,50,76,-0.5561536103487015],[122,50,77,-0.5525593608617783],[122,50,78,-0.548352126032114],[122,50,79,-0.5437773950397968],[122,51,64,-0.5520365312695503],[122,51,65,-0.5518265515565872],[122,51,66,-0.5502231270074844],[122,51,67,-0.5484046824276447],[122,51,68,-0.5477141104638577],[122,51,69,-0.5488727241754532],[122,51,70,-0.5513996481895447],[122,51,71,-0.5542764626443386],[122,51,72,-0.557181965559721],[122,51,73,-0.558972891420126],[122,51,74,-0.559431903064251],[122,51,75,-0.5585466586053371],[122,51,76,-0.5561536103487015],[122,51,77,-0.5525593608617783],[122,51,78,-0.548352126032114],[122,51,79,-0.5437773950397968],[122,52,64,-0.5520365312695503],[122,52,65,-0.5518265515565872],[122,52,66,-0.5502231270074844],[122,52,67,-0.5484046824276447],[122,52,68,-0.5477141104638577],[122,52,69,-0.5488727241754532],[122,52,70,-0.5513996481895447],[122,52,71,-0.5542764626443386],[122,52,72,-0.557181965559721],[122,52,73,-0.558972891420126],[122,52,74,-0.559431903064251],[122,52,75,-0.5585466586053371],[122,52,76,-0.5561536103487015],[122,52,77,-0.5525593608617783],[122,52,78,-0.548352126032114],[122,52,79,-0.5437773950397968],[122,53,64,-0.5520365312695503],[122,53,65,-0.5518265515565872],[122,53,66,-0.5502231270074844],[122,53,67,-0.5484046824276447],[122,53,68,-0.5477141104638577],[122,53,69,-0.5488727241754532],[122,53,70,-0.5513996481895447],[122,53,71,-0.5542764626443386],[122,53,72,-0.557181965559721],[122,53,73,-0.558972891420126],[122,53,74,-0.559431903064251],[122,53,75,-0.5585466586053371],[122,53,76,-0.5561536103487015],[122,53,77,-0.5525593608617783],[122,53,78,-0.548352126032114],[122,53,79,-0.5437773950397968],[122,54,64,-0.5520365312695503],[122,54,65,-0.5518265515565872],[122,54,66,-0.5502231270074844],[122,54,67,-0.5484046824276447],[122,54,68,-0.5477141104638577],[122,54,69,-0.5488727241754532],[122,54,70,-0.5513996481895447],[122,54,71,-0.5542764626443386],[122,54,72,-0.557181965559721],[122,54,73,-0.558972891420126],[122,54,74,-0.559431903064251],[122,54,75,-0.5585466586053371],[122,54,76,-0.5561536103487015],[122,54,77,-0.5525593608617783],[122,54,78,-0.548352126032114],[122,54,79,-0.5437773950397968],[122,55,64,-0.5520365312695503],[122,55,65,-0.5518265515565872],[122,55,66,-0.5502231270074844],[122,55,67,-0.5484046824276447],[122,55,68,-0.5477141104638577],[122,55,69,-0.5488727241754532],[122,55,70,-0.5513996481895447],[122,55,71,-0.5542764626443386],[122,55,72,-0.557181965559721],[122,55,73,-0.558972891420126],[122,55,74,-0.559431903064251],[122,55,75,-0.5585466586053371],[122,55,76,-0.5561536103487015],[122,55,77,-0.5525593608617783],[122,55,78,-0.548352126032114],[122,55,79,-0.5437773950397968],[122,56,64,-0.5520365312695503],[122,56,65,-0.5518265515565872],[122,56,66,-0.5502231270074844],[122,56,67,-0.5484046824276447],[122,56,68,-0.5477141104638577],[122,56,69,-0.5488727241754532],[122,56,70,-0.5513996481895447],[122,56,71,-0.5542764626443386],[122,56,72,-0.557181965559721],[122,56,73,-0.558972891420126],[122,56,74,-0.559431903064251],[122,56,75,-0.5585466586053371],[122,56,76,-0.5561536103487015],[122,56,77,-0.5525593608617783],[122,56,78,-0.548352126032114],[122,56,79,-0.5437773950397968],[122,57,64,-0.5520365312695503],[122,57,65,-0.5518265515565872],[122,57,66,-0.5502231270074844],[122,57,67,-0.5484046824276447],[122,57,68,-0.5477141104638577],[122,57,69,-0.5488727241754532],[122,57,70,-0.5513996481895447],[122,57,71,-0.5542764626443386],[122,57,72,-0.557181965559721],[122,57,73,-0.558972891420126],[122,57,74,-0.559431903064251],[122,57,75,-0.5585466586053371],[122,57,76,-0.5561536103487015],[122,57,77,-0.5525593608617783],[122,57,78,-0.548352126032114],[122,57,79,-0.5437773950397968],[122,58,64,-0.5520365312695503],[122,58,65,-0.5518265515565872],[122,58,66,-0.5502231270074844],[122,58,67,-0.5484046824276447],[122,58,68,-0.5477141104638577],[122,58,69,-0.5488727241754532],[122,58,70,-0.5513996481895447],[122,58,71,-0.5542764626443386],[122,58,72,-0.557181965559721],[122,58,73,-0.558972891420126],[122,58,74,-0.559431903064251],[122,58,75,-0.5585466586053371],[122,58,76,-0.5561536103487015],[122,58,77,-0.5525593608617783],[122,58,78,-0.548352126032114],[122,58,79,-0.5437773950397968],[122,59,64,-0.5520365312695503],[122,59,65,-0.5518265515565872],[122,59,66,-0.5502231270074844],[122,59,67,-0.5484046824276447],[122,59,68,-0.5477141104638577],[122,59,69,-0.5488727241754532],[122,59,70,-0.5513996481895447],[122,59,71,-0.5542764626443386],[122,59,72,-0.557181965559721],[122,59,73,-0.558972891420126],[122,59,74,-0.559431903064251],[122,59,75,-0.5585466586053371],[122,59,76,-0.5561536103487015],[122,59,77,-0.5525593608617783],[122,59,78,-0.548352126032114],[122,59,79,-0.5437773950397968],[122,60,64,-0.5520365312695503],[122,60,65,-0.5518265515565872],[122,60,66,-0.5502231270074844],[122,60,67,-0.5484046824276447],[122,60,68,-0.5477141104638577],[122,60,69,-0.5488727241754532],[122,60,70,-0.5513996481895447],[122,60,71,-0.5542764626443386],[122,60,72,-0.557181965559721],[122,60,73,-0.558972891420126],[122,60,74,-0.559431903064251],[122,60,75,-0.5585466586053371],[122,60,76,-0.5561536103487015],[122,60,77,-0.5525593608617783],[122,60,78,-0.548352126032114],[122,60,79,-0.5437773950397968],[122,61,64,-0.5520365312695503],[122,61,65,-0.5518265515565872],[122,61,66,-0.5502231270074844],[122,61,67,-0.5484046824276447],[122,61,68,-0.5477141104638577],[122,61,69,-0.5488727241754532],[122,61,70,-0.5513996481895447],[122,61,71,-0.5542764626443386],[122,61,72,-0.557181965559721],[122,61,73,-0.558972891420126],[122,61,74,-0.559431903064251],[122,61,75,-0.5585466586053371],[122,61,76,-0.5561536103487015],[122,61,77,-0.5525593608617783],[122,61,78,-0.548352126032114],[122,61,79,-0.5437773950397968],[122,62,64,-0.5520365312695503],[122,62,65,-0.5518265515565872],[122,62,66,-0.5502231270074844],[122,62,67,-0.5484046824276447],[122,62,68,-0.5477141104638577],[122,62,69,-0.5488727241754532],[122,62,70,-0.5513996481895447],[122,62,71,-0.5542764626443386],[122,62,72,-0.557181965559721],[122,62,73,-0.558972891420126],[122,62,74,-0.559431903064251],[122,62,75,-0.5585466586053371],[122,62,76,-0.5561536103487015],[122,62,77,-0.5525593608617783],[122,62,78,-0.548352126032114],[122,62,79,-0.5437773950397968],[122,63,64,-0.5520365312695503],[122,63,65,-0.5518265515565872],[122,63,66,-0.5502231270074844],[122,63,67,-0.5484046824276447],[122,63,68,-0.5477141104638577],[122,63,69,-0.5488727241754532],[122,63,70,-0.5513996481895447],[122,63,71,-0.5542764626443386],[122,63,72,-0.557181965559721],[122,63,73,-0.558972891420126],[122,63,74,-0.559431903064251],[122,63,75,-0.5585466586053371],[122,63,76,-0.5561536103487015],[122,63,77,-0.5525593608617783],[122,63,78,-0.548352126032114],[122,63,79,-0.5437773950397968],[122,64,64,-0.5520365312695503],[122,64,65,-0.5518265515565872],[122,64,66,-0.5502231270074844],[122,64,67,-0.5484046824276447],[122,64,68,-0.5477141104638577],[122,64,69,-0.5488727241754532],[122,64,70,-0.5513996481895447],[122,64,71,-0.5542764626443386],[122,64,72,-0.557181965559721],[122,64,73,-0.558972891420126],[122,64,74,-0.559431903064251],[122,64,75,-0.5585466586053371],[122,64,76,-0.5561536103487015],[122,64,77,-0.5525593608617783],[122,64,78,-0.548352126032114],[122,64,79,-0.5437773950397968],[122,65,64,-0.5520365312695503],[122,65,65,-0.5518265515565872],[122,65,66,-0.5502231270074844],[122,65,67,-0.5484046824276447],[122,65,68,-0.5477141104638577],[122,65,69,-0.5488727241754532],[122,65,70,-0.5513996481895447],[122,65,71,-0.5542764626443386],[122,65,72,-0.557181965559721],[122,65,73,-0.558972891420126],[122,65,74,-0.559431903064251],[122,65,75,-0.5585466586053371],[122,65,76,-0.5561536103487015],[122,65,77,-0.5525593608617783],[122,65,78,-0.548352126032114],[122,65,79,-0.5437773950397968],[122,66,64,-0.5520365312695503],[122,66,65,-0.5518265515565872],[122,66,66,-0.5502231270074844],[122,66,67,-0.5484046824276447],[122,66,68,-0.5477141104638577],[122,66,69,-0.5488727241754532],[122,66,70,-0.5513996481895447],[122,66,71,-0.5542764626443386],[122,66,72,-0.557181965559721],[122,66,73,-0.558972891420126],[122,66,74,-0.559431903064251],[122,66,75,-0.5585466586053371],[122,66,76,-0.5561536103487015],[122,66,77,-0.5525593608617783],[122,66,78,-0.548352126032114],[122,66,79,-0.5437773950397968],[122,67,64,-0.5520365312695503],[122,67,65,-0.5518265515565872],[122,67,66,-0.5502231270074844],[122,67,67,-0.5484046824276447],[122,67,68,-0.5477141104638577],[122,67,69,-0.5488727241754532],[122,67,70,-0.5513996481895447],[122,67,71,-0.5542764626443386],[122,67,72,-0.557181965559721],[122,67,73,-0.558972891420126],[122,67,74,-0.559431903064251],[122,67,75,-0.5585466586053371],[122,67,76,-0.5561536103487015],[122,67,77,-0.5525593608617783],[122,67,78,-0.548352126032114],[122,67,79,-0.5437773950397968],[122,68,64,-0.5520365312695503],[122,68,65,-0.5518265515565872],[122,68,66,-0.5502231270074844],[122,68,67,-0.5484046824276447],[122,68,68,-0.5477141104638577],[122,68,69,-0.5488727241754532],[122,68,70,-0.5513996481895447],[122,68,71,-0.5542764626443386],[122,68,72,-0.557181965559721],[122,68,73,-0.558972891420126],[122,68,74,-0.559431903064251],[122,68,75,-0.5585466586053371],[122,68,76,-0.5561536103487015],[122,68,77,-0.5525593608617783],[122,68,78,-0.548352126032114],[122,68,79,-0.5437773950397968],[122,69,64,-0.5520365312695503],[122,69,65,-0.5518265515565872],[122,69,66,-0.5502231270074844],[122,69,67,-0.5484046824276447],[122,69,68,-0.5477141104638577],[122,69,69,-0.5488727241754532],[122,69,70,-0.5513996481895447],[122,69,71,-0.5542764626443386],[122,69,72,-0.557181965559721],[122,69,73,-0.558972891420126],[122,69,74,-0.559431903064251],[122,69,75,-0.5585466586053371],[122,69,76,-0.5561536103487015],[122,69,77,-0.5525593608617783],[122,69,78,-0.548352126032114],[122,69,79,-0.5437773950397968],[122,70,64,-0.5520365312695503],[122,70,65,-0.5518265515565872],[122,70,66,-0.5502231270074844],[122,70,67,-0.5484046824276447],[122,70,68,-0.5477141104638577],[122,70,69,-0.5488727241754532],[122,70,70,-0.5513996481895447],[122,70,71,-0.5542764626443386],[122,70,72,-0.557181965559721],[122,70,73,-0.558972891420126],[122,70,74,-0.559431903064251],[122,70,75,-0.5585466586053371],[122,70,76,-0.5561536103487015],[122,70,77,-0.5525593608617783],[122,70,78,-0.548352126032114],[122,70,79,-0.5437773950397968],[122,71,64,-0.5520365312695503],[122,71,65,-0.5518265515565872],[122,71,66,-0.5502231270074844],[122,71,67,-0.5484046824276447],[122,71,68,-0.5477141104638577],[122,71,69,-0.5488727241754532],[122,71,70,-0.5513996481895447],[122,71,71,-0.5542764626443386],[122,71,72,-0.557181965559721],[122,71,73,-0.558972891420126],[122,71,74,-0.559431903064251],[122,71,75,-0.5585466586053371],[122,71,76,-0.5561536103487015],[122,71,77,-0.5525593608617783],[122,71,78,-0.548352126032114],[122,71,79,-0.5437773950397968],[122,72,64,-0.5520365312695503],[122,72,65,-0.5518265515565872],[122,72,66,-0.5502231270074844],[122,72,67,-0.5484046824276447],[122,72,68,-0.5477141104638577],[122,72,69,-0.5488727241754532],[122,72,70,-0.5513996481895447],[122,72,71,-0.5542764626443386],[122,72,72,-0.557181965559721],[122,72,73,-0.558972891420126],[122,72,74,-0.559431903064251],[122,72,75,-0.5585466586053371],[122,72,76,-0.5561536103487015],[122,72,77,-0.5525593608617783],[122,72,78,-0.548352126032114],[122,72,79,-0.5437773950397968],[122,73,64,-0.5520365312695503],[122,73,65,-0.5518265515565872],[122,73,66,-0.5502231270074844],[122,73,67,-0.5484046824276447],[122,73,68,-0.5477141104638577],[122,73,69,-0.5488727241754532],[122,73,70,-0.5513996481895447],[122,73,71,-0.5542764626443386],[122,73,72,-0.557181965559721],[122,73,73,-0.558972891420126],[122,73,74,-0.559431903064251],[122,73,75,-0.5585466586053371],[122,73,76,-0.5561536103487015],[122,73,77,-0.5525593608617783],[122,73,78,-0.548352126032114],[122,73,79,-0.5437773950397968],[122,74,64,-0.5520365312695503],[122,74,65,-0.5518265515565872],[122,74,66,-0.5502231270074844],[122,74,67,-0.5484046824276447],[122,74,68,-0.5477141104638577],[122,74,69,-0.5488727241754532],[122,74,70,-0.5513996481895447],[122,74,71,-0.5542764626443386],[122,74,72,-0.557181965559721],[122,74,73,-0.558972891420126],[122,74,74,-0.559431903064251],[122,74,75,-0.5585466586053371],[122,74,76,-0.5561536103487015],[122,74,77,-0.5525593608617783],[122,74,78,-0.548352126032114],[122,74,79,-0.5437773950397968],[122,75,64,-0.5520365312695503],[122,75,65,-0.5518265515565872],[122,75,66,-0.5502231270074844],[122,75,67,-0.5484046824276447],[122,75,68,-0.5477141104638577],[122,75,69,-0.5488727241754532],[122,75,70,-0.5513996481895447],[122,75,71,-0.5542764626443386],[122,75,72,-0.557181965559721],[122,75,73,-0.558972891420126],[122,75,74,-0.559431903064251],[122,75,75,-0.5585466586053371],[122,75,76,-0.5561536103487015],[122,75,77,-0.5525593608617783],[122,75,78,-0.548352126032114],[122,75,79,-0.5437773950397968],[122,76,64,-0.5520365312695503],[122,76,65,-0.5518265515565872],[122,76,66,-0.5502231270074844],[122,76,67,-0.5484046824276447],[122,76,68,-0.5477141104638577],[122,76,69,-0.5488727241754532],[122,76,70,-0.5513996481895447],[122,76,71,-0.5542764626443386],[122,76,72,-0.557181965559721],[122,76,73,-0.558972891420126],[122,76,74,-0.559431903064251],[122,76,75,-0.5585466586053371],[122,76,76,-0.5561536103487015],[122,76,77,-0.5525593608617783],[122,76,78,-0.548352126032114],[122,76,79,-0.5437773950397968],[122,77,64,-0.5520365312695503],[122,77,65,-0.5518265515565872],[122,77,66,-0.5502231270074844],[122,77,67,-0.5484046824276447],[122,77,68,-0.5477141104638577],[122,77,69,-0.5488727241754532],[122,77,70,-0.5513996481895447],[122,77,71,-0.5542764626443386],[122,77,72,-0.557181965559721],[122,77,73,-0.558972891420126],[122,77,74,-0.559431903064251],[122,77,75,-0.5585466586053371],[122,77,76,-0.5561536103487015],[122,77,77,-0.5525593608617783],[122,77,78,-0.548352126032114],[122,77,79,-0.5437773950397968],[122,78,64,-0.5520365312695503],[122,78,65,-0.5518265515565872],[122,78,66,-0.5502231270074844],[122,78,67,-0.5484046824276447],[122,78,68,-0.5477141104638577],[122,78,69,-0.5488727241754532],[122,78,70,-0.5513996481895447],[122,78,71,-0.5542764626443386],[122,78,72,-0.557181965559721],[122,78,73,-0.558972891420126],[122,78,74,-0.559431903064251],[122,78,75,-0.5585466586053371],[122,78,76,-0.5561536103487015],[122,78,77,-0.5525593608617783],[122,78,78,-0.548352126032114],[122,78,79,-0.5437773950397968],[122,79,64,-0.5520365312695503],[122,79,65,-0.5518265515565872],[122,79,66,-0.5502231270074844],[122,79,67,-0.5484046824276447],[122,79,68,-0.5477141104638577],[122,79,69,-0.5488727241754532],[122,79,70,-0.5513996481895447],[122,79,71,-0.5542764626443386],[122,79,72,-0.557181965559721],[122,79,73,-0.558972891420126],[122,79,74,-0.559431903064251],[122,79,75,-0.5585466586053371],[122,79,76,-0.5561536103487015],[122,79,77,-0.5525593608617783],[122,79,78,-0.548352126032114],[122,79,79,-0.5437773950397968],[122,80,64,-0.5520365312695503],[122,80,65,-0.5518265515565872],[122,80,66,-0.5502231270074844],[122,80,67,-0.5484046824276447],[122,80,68,-0.5477141104638577],[122,80,69,-0.5488727241754532],[122,80,70,-0.5513996481895447],[122,80,71,-0.5542764626443386],[122,80,72,-0.557181965559721],[122,80,73,-0.558972891420126],[122,80,74,-0.559431903064251],[122,80,75,-0.5585466586053371],[122,80,76,-0.5561536103487015],[122,80,77,-0.5525593608617783],[122,80,78,-0.548352126032114],[122,80,79,-0.5437773950397968],[122,81,64,-0.5520365312695503],[122,81,65,-0.5518265515565872],[122,81,66,-0.5502231270074844],[122,81,67,-0.5484046824276447],[122,81,68,-0.5477141104638577],[122,81,69,-0.5488727241754532],[122,81,70,-0.5513996481895447],[122,81,71,-0.5542764626443386],[122,81,72,-0.557181965559721],[122,81,73,-0.558972891420126],[122,81,74,-0.559431903064251],[122,81,75,-0.5585466586053371],[122,81,76,-0.5561536103487015],[122,81,77,-0.5525593608617783],[122,81,78,-0.548352126032114],[122,81,79,-0.5437773950397968],[122,82,64,-0.5520365312695503],[122,82,65,-0.5518265515565872],[122,82,66,-0.5502231270074844],[122,82,67,-0.5484046824276447],[122,82,68,-0.5477141104638577],[122,82,69,-0.5488727241754532],[122,82,70,-0.5513996481895447],[122,82,71,-0.5542764626443386],[122,82,72,-0.557181965559721],[122,82,73,-0.558972891420126],[122,82,74,-0.559431903064251],[122,82,75,-0.5585466586053371],[122,82,76,-0.5561536103487015],[122,82,77,-0.5525593608617783],[122,82,78,-0.548352126032114],[122,82,79,-0.5437773950397968],[122,83,64,-0.5520365312695503],[122,83,65,-0.5518265515565872],[122,83,66,-0.5502231270074844],[122,83,67,-0.5484046824276447],[122,83,68,-0.5477141104638577],[122,83,69,-0.5488727241754532],[122,83,70,-0.5513996481895447],[122,83,71,-0.5542764626443386],[122,83,72,-0.557181965559721],[122,83,73,-0.558972891420126],[122,83,74,-0.559431903064251],[122,83,75,-0.5585466586053371],[122,83,76,-0.5561536103487015],[122,83,77,-0.5525593608617783],[122,83,78,-0.548352126032114],[122,83,79,-0.5437773950397968],[122,84,64,-0.5520365312695503],[122,84,65,-0.5518265515565872],[122,84,66,-0.5502231270074844],[122,84,67,-0.5484046824276447],[122,84,68,-0.5477141104638577],[122,84,69,-0.5488727241754532],[122,84,70,-0.5513996481895447],[122,84,71,-0.5542764626443386],[122,84,72,-0.557181965559721],[122,84,73,-0.558972891420126],[122,84,74,-0.559431903064251],[122,84,75,-0.5585466586053371],[122,84,76,-0.5561536103487015],[122,84,77,-0.5525593608617783],[122,84,78,-0.548352126032114],[122,84,79,-0.5437773950397968],[122,85,64,-0.5520365312695503],[122,85,65,-0.5518265515565872],[122,85,66,-0.5502231270074844],[122,85,67,-0.5484046824276447],[122,85,68,-0.5477141104638577],[122,85,69,-0.5488727241754532],[122,85,70,-0.5513996481895447],[122,85,71,-0.5542764626443386],[122,85,72,-0.557181965559721],[122,85,73,-0.558972891420126],[122,85,74,-0.559431903064251],[122,85,75,-0.5585466586053371],[122,85,76,-0.5561536103487015],[122,85,77,-0.5525593608617783],[122,85,78,-0.548352126032114],[122,85,79,-0.5437773950397968],[122,86,64,-0.5520365312695503],[122,86,65,-0.5518265515565872],[122,86,66,-0.5502231270074844],[122,86,67,-0.5484046824276447],[122,86,68,-0.5477141104638577],[122,86,69,-0.5488727241754532],[122,86,70,-0.5513996481895447],[122,86,71,-0.5542764626443386],[122,86,72,-0.557181965559721],[122,86,73,-0.558972891420126],[122,86,74,-0.559431903064251],[122,86,75,-0.5585466586053371],[122,86,76,-0.5561536103487015],[122,86,77,-0.5525593608617783],[122,86,78,-0.548352126032114],[122,86,79,-0.5437773950397968],[122,87,64,-0.5520365312695503],[122,87,65,-0.5518265515565872],[122,87,66,-0.5502231270074844],[122,87,67,-0.5484046824276447],[122,87,68,-0.5477141104638577],[122,87,69,-0.5488727241754532],[122,87,70,-0.5513996481895447],[122,87,71,-0.5542764626443386],[122,87,72,-0.557181965559721],[122,87,73,-0.558972891420126],[122,87,74,-0.559431903064251],[122,87,75,-0.5585466586053371],[122,87,76,-0.5561536103487015],[122,87,77,-0.5525593608617783],[122,87,78,-0.548352126032114],[122,87,79,-0.5437773950397968],[122,88,64,-0.5520365312695503],[122,88,65,-0.5518265515565872],[122,88,66,-0.5502231270074844],[122,88,67,-0.5484046824276447],[122,88,68,-0.5477141104638577],[122,88,69,-0.5488727241754532],[122,88,70,-0.5513996481895447],[122,88,71,-0.5542764626443386],[122,88,72,-0.557181965559721],[122,88,73,-0.558972891420126],[122,88,74,-0.559431903064251],[122,88,75,-0.5585466586053371],[122,88,76,-0.5561536103487015],[122,88,77,-0.5525593608617783],[122,88,78,-0.548352126032114],[122,88,79,-0.5437773950397968],[122,89,64,-0.5520365312695503],[122,89,65,-0.5518265515565872],[122,89,66,-0.5502231270074844],[122,89,67,-0.5484046824276447],[122,89,68,-0.5477141104638577],[122,89,69,-0.5488727241754532],[122,89,70,-0.5513996481895447],[122,89,71,-0.5542764626443386],[122,89,72,-0.557181965559721],[122,89,73,-0.558972891420126],[122,89,74,-0.559431903064251],[122,89,75,-0.5585466586053371],[122,89,76,-0.5561536103487015],[122,89,77,-0.5525593608617783],[122,89,78,-0.548352126032114],[122,89,79,-0.5437773950397968],[122,90,64,-0.5520365312695503],[122,90,65,-0.5518265515565872],[122,90,66,-0.5502231270074844],[122,90,67,-0.5484046824276447],[122,90,68,-0.5477141104638577],[122,90,69,-0.5488727241754532],[122,90,70,-0.5513996481895447],[122,90,71,-0.5542764626443386],[122,90,72,-0.557181965559721],[122,90,73,-0.558972891420126],[122,90,74,-0.559431903064251],[122,90,75,-0.5585466586053371],[122,90,76,-0.5561536103487015],[122,90,77,-0.5525593608617783],[122,90,78,-0.548352126032114],[122,90,79,-0.5437773950397968],[122,91,64,-0.5520365312695503],[122,91,65,-0.5518265515565872],[122,91,66,-0.5502231270074844],[122,91,67,-0.5484046824276447],[122,91,68,-0.5477141104638577],[122,91,69,-0.5488727241754532],[122,91,70,-0.5513996481895447],[122,91,71,-0.5542764626443386],[122,91,72,-0.557181965559721],[122,91,73,-0.558972891420126],[122,91,74,-0.559431903064251],[122,91,75,-0.5585466586053371],[122,91,76,-0.5561536103487015],[122,91,77,-0.5525593608617783],[122,91,78,-0.548352126032114],[122,91,79,-0.5437773950397968],[122,92,64,-0.5520365312695503],[122,92,65,-0.5518265515565872],[122,92,66,-0.5502231270074844],[122,92,67,-0.5484046824276447],[122,92,68,-0.5477141104638577],[122,92,69,-0.5488727241754532],[122,92,70,-0.5513996481895447],[122,92,71,-0.5542764626443386],[122,92,72,-0.557181965559721],[122,92,73,-0.558972891420126],[122,92,74,-0.559431903064251],[122,92,75,-0.5585466586053371],[122,92,76,-0.5561536103487015],[122,92,77,-0.5525593608617783],[122,92,78,-0.548352126032114],[122,92,79,-0.5437773950397968],[122,93,64,-0.5520365312695503],[122,93,65,-0.5518265515565872],[122,93,66,-0.5502231270074844],[122,93,67,-0.5484046824276447],[122,93,68,-0.5477141104638577],[122,93,69,-0.5488727241754532],[122,93,70,-0.5513996481895447],[122,93,71,-0.5542764626443386],[122,93,72,-0.557181965559721],[122,93,73,-0.558972891420126],[122,93,74,-0.559431903064251],[122,93,75,-0.5585466586053371],[122,93,76,-0.5561536103487015],[122,93,77,-0.5525593608617783],[122,93,78,-0.548352126032114],[122,93,79,-0.5437773950397968],[122,94,64,-0.5520365312695503],[122,94,65,-0.5518265515565872],[122,94,66,-0.5502231270074844],[122,94,67,-0.5484046824276447],[122,94,68,-0.5477141104638577],[122,94,69,-0.5488727241754532],[122,94,70,-0.5513996481895447],[122,94,71,-0.5542764626443386],[122,94,72,-0.557181965559721],[122,94,73,-0.558972891420126],[122,94,74,-0.559431903064251],[122,94,75,-0.5585466586053371],[122,94,76,-0.5561536103487015],[122,94,77,-0.5525593608617783],[122,94,78,-0.548352126032114],[122,94,79,-0.5437773950397968],[122,95,64,-0.5520365312695503],[122,95,65,-0.5518265515565872],[122,95,66,-0.5502231270074844],[122,95,67,-0.5484046824276447],[122,95,68,-0.5477141104638577],[122,95,69,-0.5488727241754532],[122,95,70,-0.5513996481895447],[122,95,71,-0.5542764626443386],[122,95,72,-0.557181965559721],[122,95,73,-0.558972891420126],[122,95,74,-0.559431903064251],[122,95,75,-0.5585466586053371],[122,95,76,-0.5561536103487015],[122,95,77,-0.5525593608617783],[122,95,78,-0.548352126032114],[122,95,79,-0.5437773950397968],[122,96,64,-0.5520365312695503],[122,96,65,-0.5518265515565872],[122,96,66,-0.5502231270074844],[122,96,67,-0.5484046824276447],[122,96,68,-0.5477141104638577],[122,96,69,-0.5488727241754532],[122,96,70,-0.5513996481895447],[122,96,71,-0.5542764626443386],[122,96,72,-0.557181965559721],[122,96,73,-0.558972891420126],[122,96,74,-0.559431903064251],[122,96,75,-0.5585466586053371],[122,96,76,-0.5561536103487015],[122,96,77,-0.5525593608617783],[122,96,78,-0.548352126032114],[122,96,79,-0.5437773950397968],[122,97,64,-0.5520365312695503],[122,97,65,-0.5518265515565872],[122,97,66,-0.5502231270074844],[122,97,67,-0.5484046824276447],[122,97,68,-0.5477141104638577],[122,97,69,-0.5488727241754532],[122,97,70,-0.5513996481895447],[122,97,71,-0.5542764626443386],[122,97,72,-0.557181965559721],[122,97,73,-0.558972891420126],[122,97,74,-0.559431903064251],[122,97,75,-0.5585466586053371],[122,97,76,-0.5561536103487015],[122,97,77,-0.5525593608617783],[122,97,78,-0.548352126032114],[122,97,79,-0.5437773950397968],[122,98,64,-0.5520365312695503],[122,98,65,-0.5518265515565872],[122,98,66,-0.5502231270074844],[122,98,67,-0.5484046824276447],[122,98,68,-0.5477141104638577],[122,98,69,-0.5488727241754532],[122,98,70,-0.5513996481895447],[122,98,71,-0.5542764626443386],[122,98,72,-0.557181965559721],[122,98,73,-0.558972891420126],[122,98,74,-0.559431903064251],[122,98,75,-0.5585466586053371],[122,98,76,-0.5561536103487015],[122,98,77,-0.5525593608617783],[122,98,78,-0.548352126032114],[122,98,79,-0.5437773950397968],[122,99,64,-0.5520365312695503],[122,99,65,-0.5518265515565872],[122,99,66,-0.5502231270074844],[122,99,67,-0.5484046824276447],[122,99,68,-0.5477141104638577],[122,99,69,-0.5488727241754532],[122,99,70,-0.5513996481895447],[122,99,71,-0.5542764626443386],[122,99,72,-0.557181965559721],[122,99,73,-0.558972891420126],[122,99,74,-0.559431903064251],[122,99,75,-0.5585466586053371],[122,99,76,-0.5561536103487015],[122,99,77,-0.5525593608617783],[122,99,78,-0.548352126032114],[122,99,79,-0.5437773950397968],[122,100,64,-0.5520365312695503],[122,100,65,-0.5518265515565872],[122,100,66,-0.5502231270074844],[122,100,67,-0.5484046824276447],[122,100,68,-0.5477141104638577],[122,100,69,-0.5488727241754532],[122,100,70,-0.5513996481895447],[122,100,71,-0.5542764626443386],[122,100,72,-0.557181965559721],[122,100,73,-0.558972891420126],[122,100,74,-0.559431903064251],[122,100,75,-0.5585466586053371],[122,100,76,-0.5561536103487015],[122,100,77,-0.5525593608617783],[122,100,78,-0.548352126032114],[122,100,79,-0.5437773950397968],[122,101,64,-0.5520365312695503],[122,101,65,-0.5518265515565872],[122,101,66,-0.5502231270074844],[122,101,67,-0.5484046824276447],[122,101,68,-0.5477141104638577],[122,101,69,-0.5488727241754532],[122,101,70,-0.5513996481895447],[122,101,71,-0.5542764626443386],[122,101,72,-0.557181965559721],[122,101,73,-0.558972891420126],[122,101,74,-0.559431903064251],[122,101,75,-0.5585466586053371],[122,101,76,-0.5561536103487015],[122,101,77,-0.5525593608617783],[122,101,78,-0.548352126032114],[122,101,79,-0.5437773950397968],[122,102,64,-0.5520365312695503],[122,102,65,-0.5518265515565872],[122,102,66,-0.5502231270074844],[122,102,67,-0.5484046824276447],[122,102,68,-0.5477141104638577],[122,102,69,-0.5488727241754532],[122,102,70,-0.5513996481895447],[122,102,71,-0.5542764626443386],[122,102,72,-0.557181965559721],[122,102,73,-0.558972891420126],[122,102,74,-0.559431903064251],[122,102,75,-0.5585466586053371],[122,102,76,-0.5561536103487015],[122,102,77,-0.5525593608617783],[122,102,78,-0.548352126032114],[122,102,79,-0.5437773950397968],[122,103,64,-0.5520365312695503],[122,103,65,-0.5518265515565872],[122,103,66,-0.5502231270074844],[122,103,67,-0.5484046824276447],[122,103,68,-0.5477141104638577],[122,103,69,-0.5488727241754532],[122,103,70,-0.5513996481895447],[122,103,71,-0.5542764626443386],[122,103,72,-0.557181965559721],[122,103,73,-0.558972891420126],[122,103,74,-0.559431903064251],[122,103,75,-0.5585466586053371],[122,103,76,-0.5561536103487015],[122,103,77,-0.5525593608617783],[122,103,78,-0.548352126032114],[122,103,79,-0.5437773950397968],[122,104,64,-0.5520365312695503],[122,104,65,-0.5518265515565872],[122,104,66,-0.5502231270074844],[122,104,67,-0.5484046824276447],[122,104,68,-0.5477141104638577],[122,104,69,-0.5488727241754532],[122,104,70,-0.5513996481895447],[122,104,71,-0.5542764626443386],[122,104,72,-0.557181965559721],[122,104,73,-0.558972891420126],[122,104,74,-0.559431903064251],[122,104,75,-0.5585466586053371],[122,104,76,-0.5561536103487015],[122,104,77,-0.5525593608617783],[122,104,78,-0.548352126032114],[122,104,79,-0.5437773950397968],[122,105,64,-0.5520365312695503],[122,105,65,-0.5518265515565872],[122,105,66,-0.5502231270074844],[122,105,67,-0.5484046824276447],[122,105,68,-0.5477141104638577],[122,105,69,-0.5488727241754532],[122,105,70,-0.5513996481895447],[122,105,71,-0.5542764626443386],[122,105,72,-0.557181965559721],[122,105,73,-0.558972891420126],[122,105,74,-0.559431903064251],[122,105,75,-0.5585466586053371],[122,105,76,-0.5561536103487015],[122,105,77,-0.5525593608617783],[122,105,78,-0.548352126032114],[122,105,79,-0.5437773950397968],[122,106,64,-0.5520365312695503],[122,106,65,-0.5518265515565872],[122,106,66,-0.5502231270074844],[122,106,67,-0.5484046824276447],[122,106,68,-0.5477141104638577],[122,106,69,-0.5488727241754532],[122,106,70,-0.5513996481895447],[122,106,71,-0.5542764626443386],[122,106,72,-0.557181965559721],[122,106,73,-0.558972891420126],[122,106,74,-0.559431903064251],[122,106,75,-0.5585466586053371],[122,106,76,-0.5561536103487015],[122,106,77,-0.5525593608617783],[122,106,78,-0.548352126032114],[122,106,79,-0.5437773950397968],[122,107,64,-0.5520365312695503],[122,107,65,-0.5518265515565872],[122,107,66,-0.5502231270074844],[122,107,67,-0.5484046824276447],[122,107,68,-0.5477141104638577],[122,107,69,-0.5488727241754532],[122,107,70,-0.5513996481895447],[122,107,71,-0.5542764626443386],[122,107,72,-0.557181965559721],[122,107,73,-0.558972891420126],[122,107,74,-0.559431903064251],[122,107,75,-0.5585466586053371],[122,107,76,-0.5561536103487015],[122,107,77,-0.5525593608617783],[122,107,78,-0.548352126032114],[122,107,79,-0.5437773950397968],[122,108,64,-0.5520365312695503],[122,108,65,-0.5518265515565872],[122,108,66,-0.5502231270074844],[122,108,67,-0.5484046824276447],[122,108,68,-0.5477141104638577],[122,108,69,-0.5488727241754532],[122,108,70,-0.5513996481895447],[122,108,71,-0.5542764626443386],[122,108,72,-0.557181965559721],[122,108,73,-0.558972891420126],[122,108,74,-0.559431903064251],[122,108,75,-0.5585466586053371],[122,108,76,-0.5561536103487015],[122,108,77,-0.5525593608617783],[122,108,78,-0.548352126032114],[122,108,79,-0.5437773950397968],[122,109,64,-0.5520365312695503],[122,109,65,-0.5518265515565872],[122,109,66,-0.5502231270074844],[122,109,67,-0.5484046824276447],[122,109,68,-0.5477141104638577],[122,109,69,-0.5488727241754532],[122,109,70,-0.5513996481895447],[122,109,71,-0.5542764626443386],[122,109,72,-0.557181965559721],[122,109,73,-0.558972891420126],[122,109,74,-0.559431903064251],[122,109,75,-0.5585466586053371],[122,109,76,-0.5561536103487015],[122,109,77,-0.5525593608617783],[122,109,78,-0.548352126032114],[122,109,79,-0.5437773950397968],[122,110,64,-0.5520365312695503],[122,110,65,-0.5518265515565872],[122,110,66,-0.5502231270074844],[122,110,67,-0.5484046824276447],[122,110,68,-0.5477141104638577],[122,110,69,-0.5488727241754532],[122,110,70,-0.5513996481895447],[122,110,71,-0.5542764626443386],[122,110,72,-0.557181965559721],[122,110,73,-0.558972891420126],[122,110,74,-0.559431903064251],[122,110,75,-0.5585466586053371],[122,110,76,-0.5561536103487015],[122,110,77,-0.5525593608617783],[122,110,78,-0.548352126032114],[122,110,79,-0.5437773950397968],[122,111,64,-0.5520365312695503],[122,111,65,-0.5518265515565872],[122,111,66,-0.5502231270074844],[122,111,67,-0.5484046824276447],[122,111,68,-0.5477141104638577],[122,111,69,-0.5488727241754532],[122,111,70,-0.5513996481895447],[122,111,71,-0.5542764626443386],[122,111,72,-0.557181965559721],[122,111,73,-0.558972891420126],[122,111,74,-0.559431903064251],[122,111,75,-0.5585466586053371],[122,111,76,-0.5561536103487015],[122,111,77,-0.5525593608617783],[122,111,78,-0.548352126032114],[122,111,79,-0.5437773950397968],[122,112,64,-0.5520365312695503],[122,112,65,-0.5518265515565872],[122,112,66,-0.5502231270074844],[122,112,67,-0.5484046824276447],[122,112,68,-0.5477141104638577],[122,112,69,-0.5488727241754532],[122,112,70,-0.5513996481895447],[122,112,71,-0.5542764626443386],[122,112,72,-0.557181965559721],[122,112,73,-0.558972891420126],[122,112,74,-0.559431903064251],[122,112,75,-0.5585466586053371],[122,112,76,-0.5561536103487015],[122,112,77,-0.5525593608617783],[122,112,78,-0.548352126032114],[122,112,79,-0.5437773950397968],[122,113,64,-0.5520365312695503],[122,113,65,-0.5518265515565872],[122,113,66,-0.5502231270074844],[122,113,67,-0.5484046824276447],[122,113,68,-0.5477141104638577],[122,113,69,-0.5488727241754532],[122,113,70,-0.5513996481895447],[122,113,71,-0.5542764626443386],[122,113,72,-0.557181965559721],[122,113,73,-0.558972891420126],[122,113,74,-0.559431903064251],[122,113,75,-0.5585466586053371],[122,113,76,-0.5561536103487015],[122,113,77,-0.5525593608617783],[122,113,78,-0.548352126032114],[122,113,79,-0.5437773950397968],[122,114,64,-0.5520365312695503],[122,114,65,-0.5518265515565872],[122,114,66,-0.5502231270074844],[122,114,67,-0.5484046824276447],[122,114,68,-0.5477141104638577],[122,114,69,-0.5488727241754532],[122,114,70,-0.5513996481895447],[122,114,71,-0.5542764626443386],[122,114,72,-0.557181965559721],[122,114,73,-0.558972891420126],[122,114,74,-0.559431903064251],[122,114,75,-0.5585466586053371],[122,114,76,-0.5561536103487015],[122,114,77,-0.5525593608617783],[122,114,78,-0.548352126032114],[122,114,79,-0.5437773950397968],[122,115,64,-0.5520365312695503],[122,115,65,-0.5518265515565872],[122,115,66,-0.5502231270074844],[122,115,67,-0.5484046824276447],[122,115,68,-0.5477141104638577],[122,115,69,-0.5488727241754532],[122,115,70,-0.5513996481895447],[122,115,71,-0.5542764626443386],[122,115,72,-0.557181965559721],[122,115,73,-0.558972891420126],[122,115,74,-0.559431903064251],[122,115,75,-0.5585466586053371],[122,115,76,-0.5561536103487015],[122,115,77,-0.5525593608617783],[122,115,78,-0.548352126032114],[122,115,79,-0.5437773950397968],[122,116,64,-0.5520365312695503],[122,116,65,-0.5518265515565872],[122,116,66,-0.5502231270074844],[122,116,67,-0.5484046824276447],[122,116,68,-0.5477141104638577],[122,116,69,-0.5488727241754532],[122,116,70,-0.5513996481895447],[122,116,71,-0.5542764626443386],[122,116,72,-0.557181965559721],[122,116,73,-0.558972891420126],[122,116,74,-0.559431903064251],[122,116,75,-0.5585466586053371],[122,116,76,-0.5561536103487015],[122,116,77,-0.5525593608617783],[122,116,78,-0.548352126032114],[122,116,79,-0.5437773950397968],[122,117,64,-0.5520365312695503],[122,117,65,-0.5518265515565872],[122,117,66,-0.5502231270074844],[122,117,67,-0.5484046824276447],[122,117,68,-0.5477141104638577],[122,117,69,-0.5488727241754532],[122,117,70,-0.5513996481895447],[122,117,71,-0.5542764626443386],[122,117,72,-0.557181965559721],[122,117,73,-0.558972891420126],[122,117,74,-0.559431903064251],[122,117,75,-0.5585466586053371],[122,117,76,-0.5561536103487015],[122,117,77,-0.5525593608617783],[122,117,78,-0.548352126032114],[122,117,79,-0.5437773950397968],[122,118,64,-0.5520365312695503],[122,118,65,-0.5518265515565872],[122,118,66,-0.5502231270074844],[122,118,67,-0.5484046824276447],[122,118,68,-0.5477141104638577],[122,118,69,-0.5488727241754532],[122,118,70,-0.5513996481895447],[122,118,71,-0.5542764626443386],[122,118,72,-0.557181965559721],[122,118,73,-0.558972891420126],[122,118,74,-0.559431903064251],[122,118,75,-0.5585466586053371],[122,118,76,-0.5561536103487015],[122,118,77,-0.5525593608617783],[122,118,78,-0.548352126032114],[122,118,79,-0.5437773950397968],[122,119,64,-0.5520365312695503],[122,119,65,-0.5518265515565872],[122,119,66,-0.5502231270074844],[122,119,67,-0.5484046824276447],[122,119,68,-0.5477141104638577],[122,119,69,-0.5488727241754532],[122,119,70,-0.5513996481895447],[122,119,71,-0.5542764626443386],[122,119,72,-0.557181965559721],[122,119,73,-0.558972891420126],[122,119,74,-0.559431903064251],[122,119,75,-0.5585466586053371],[122,119,76,-0.5561536103487015],[122,119,77,-0.5525593608617783],[122,119,78,-0.548352126032114],[122,119,79,-0.5437773950397968],[122,120,64,-0.5520365312695503],[122,120,65,-0.5518265515565872],[122,120,66,-0.5502231270074844],[122,120,67,-0.5484046824276447],[122,120,68,-0.5477141104638577],[122,120,69,-0.5488727241754532],[122,120,70,-0.5513996481895447],[122,120,71,-0.5542764626443386],[122,120,72,-0.557181965559721],[122,120,73,-0.558972891420126],[122,120,74,-0.559431903064251],[122,120,75,-0.5585466586053371],[122,120,76,-0.5561536103487015],[122,120,77,-0.5525593608617783],[122,120,78,-0.548352126032114],[122,120,79,-0.5437773950397968],[122,121,64,-0.5520365312695503],[122,121,65,-0.5518265515565872],[122,121,66,-0.5502231270074844],[122,121,67,-0.5484046824276447],[122,121,68,-0.5477141104638577],[122,121,69,-0.5488727241754532],[122,121,70,-0.5513996481895447],[122,121,71,-0.5542764626443386],[122,121,72,-0.557181965559721],[122,121,73,-0.558972891420126],[122,121,74,-0.559431903064251],[122,121,75,-0.5585466586053371],[122,121,76,-0.5561536103487015],[122,121,77,-0.5525593608617783],[122,121,78,-0.548352126032114],[122,121,79,-0.5437773950397968],[122,122,64,-0.5520365312695503],[122,122,65,-0.5518265515565872],[122,122,66,-0.5502231270074844],[122,122,67,-0.5484046824276447],[122,122,68,-0.5477141104638577],[122,122,69,-0.5488727241754532],[122,122,70,-0.5513996481895447],[122,122,71,-0.5542764626443386],[122,122,72,-0.557181965559721],[122,122,73,-0.558972891420126],[122,122,74,-0.559431903064251],[122,122,75,-0.5585466586053371],[122,122,76,-0.5561536103487015],[122,122,77,-0.5525593608617783],[122,122,78,-0.548352126032114],[122,122,79,-0.5437773950397968],[122,123,64,-0.5520365312695503],[122,123,65,-0.5518265515565872],[122,123,66,-0.5502231270074844],[122,123,67,-0.5484046824276447],[122,123,68,-0.5477141104638577],[122,123,69,-0.5488727241754532],[122,123,70,-0.5513996481895447],[122,123,71,-0.5542764626443386],[122,123,72,-0.557181965559721],[122,123,73,-0.558972891420126],[122,123,74,-0.559431903064251],[122,123,75,-0.5585466586053371],[122,123,76,-0.5561536103487015],[122,123,77,-0.5525593608617783],[122,123,78,-0.548352126032114],[122,123,79,-0.5437773950397968],[122,124,64,-0.5520365312695503],[122,124,65,-0.5518265515565872],[122,124,66,-0.5502231270074844],[122,124,67,-0.5484046824276447],[122,124,68,-0.5477141104638577],[122,124,69,-0.5488727241754532],[122,124,70,-0.5513996481895447],[122,124,71,-0.5542764626443386],[122,124,72,-0.557181965559721],[122,124,73,-0.558972891420126],[122,124,74,-0.559431903064251],[122,124,75,-0.5585466586053371],[122,124,76,-0.5561536103487015],[122,124,77,-0.5525593608617783],[122,124,78,-0.548352126032114],[122,124,79,-0.5437773950397968],[122,125,64,-0.5520365312695503],[122,125,65,-0.5518265515565872],[122,125,66,-0.5502231270074844],[122,125,67,-0.5484046824276447],[122,125,68,-0.5477141104638577],[122,125,69,-0.5488727241754532],[122,125,70,-0.5513996481895447],[122,125,71,-0.5542764626443386],[122,125,72,-0.557181965559721],[122,125,73,-0.558972891420126],[122,125,74,-0.559431903064251],[122,125,75,-0.5585466586053371],[122,125,76,-0.5561536103487015],[122,125,77,-0.5525593608617783],[122,125,78,-0.548352126032114],[122,125,79,-0.5437773950397968],[122,126,64,-0.5520365312695503],[122,126,65,-0.5518265515565872],[122,126,66,-0.5502231270074844],[122,126,67,-0.5484046824276447],[122,126,68,-0.5477141104638577],[122,126,69,-0.5488727241754532],[122,126,70,-0.5513996481895447],[122,126,71,-0.5542764626443386],[122,126,72,-0.557181965559721],[122,126,73,-0.558972891420126],[122,126,74,-0.559431903064251],[122,126,75,-0.5585466586053371],[122,126,76,-0.5561536103487015],[122,126,77,-0.5525593608617783],[122,126,78,-0.548352126032114],[122,126,79,-0.5437773950397968],[122,127,64,-0.5520365312695503],[122,127,65,-0.5518265515565872],[122,127,66,-0.5502231270074844],[122,127,67,-0.5484046824276447],[122,127,68,-0.5477141104638577],[122,127,69,-0.5488727241754532],[122,127,70,-0.5513996481895447],[122,127,71,-0.5542764626443386],[122,127,72,-0.557181965559721],[122,127,73,-0.558972891420126],[122,127,74,-0.559431903064251],[122,127,75,-0.5585466586053371],[122,127,76,-0.5561536103487015],[122,127,77,-0.5525593608617783],[122,127,78,-0.548352126032114],[122,127,79,-0.5437773950397968],[122,128,64,-0.5520365312695503],[122,128,65,-0.5518265515565872],[122,128,66,-0.5502231270074844],[122,128,67,-0.5484046824276447],[122,128,68,-0.5477141104638577],[122,128,69,-0.5488727241754532],[122,128,70,-0.5513996481895447],[122,128,71,-0.5542764626443386],[122,128,72,-0.557181965559721],[122,128,73,-0.558972891420126],[122,128,74,-0.559431903064251],[122,128,75,-0.5585466586053371],[122,128,76,-0.5561536103487015],[122,128,77,-0.5525593608617783],[122,128,78,-0.548352126032114],[122,128,79,-0.5437773950397968],[122,129,64,-0.5520365312695503],[122,129,65,-0.5518265515565872],[122,129,66,-0.5502231270074844],[122,129,67,-0.5484046824276447],[122,129,68,-0.5477141104638577],[122,129,69,-0.5488727241754532],[122,129,70,-0.5513996481895447],[122,129,71,-0.5542764626443386],[122,129,72,-0.557181965559721],[122,129,73,-0.558972891420126],[122,129,74,-0.559431903064251],[122,129,75,-0.5585466586053371],[122,129,76,-0.5561536103487015],[122,129,77,-0.5525593608617783],[122,129,78,-0.548352126032114],[122,129,79,-0.5437773950397968],[122,130,64,-0.5520365312695503],[122,130,65,-0.5518265515565872],[122,130,66,-0.5502231270074844],[122,130,67,-0.5484046824276447],[122,130,68,-0.5477141104638577],[122,130,69,-0.5488727241754532],[122,130,70,-0.5513996481895447],[122,130,71,-0.5542764626443386],[122,130,72,-0.557181965559721],[122,130,73,-0.558972891420126],[122,130,74,-0.559431903064251],[122,130,75,-0.5585466586053371],[122,130,76,-0.5561536103487015],[122,130,77,-0.5525593608617783],[122,130,78,-0.548352126032114],[122,130,79,-0.5437773950397968],[122,131,64,-0.5520365312695503],[122,131,65,-0.5518265515565872],[122,131,66,-0.5502231270074844],[122,131,67,-0.5484046824276447],[122,131,68,-0.5477141104638577],[122,131,69,-0.5488727241754532],[122,131,70,-0.5513996481895447],[122,131,71,-0.5542764626443386],[122,131,72,-0.557181965559721],[122,131,73,-0.558972891420126],[122,131,74,-0.559431903064251],[122,131,75,-0.5585466586053371],[122,131,76,-0.5561536103487015],[122,131,77,-0.5525593608617783],[122,131,78,-0.548352126032114],[122,131,79,-0.5437773950397968],[122,132,64,-0.5520365312695503],[122,132,65,-0.5518265515565872],[122,132,66,-0.5502231270074844],[122,132,67,-0.5484046824276447],[122,132,68,-0.5477141104638577],[122,132,69,-0.5488727241754532],[122,132,70,-0.5513996481895447],[122,132,71,-0.5542764626443386],[122,132,72,-0.557181965559721],[122,132,73,-0.558972891420126],[122,132,74,-0.559431903064251],[122,132,75,-0.5585466586053371],[122,132,76,-0.5561536103487015],[122,132,77,-0.5525593608617783],[122,132,78,-0.548352126032114],[122,132,79,-0.5437773950397968],[122,133,64,-0.5520365312695503],[122,133,65,-0.5518265515565872],[122,133,66,-0.5502231270074844],[122,133,67,-0.5484046824276447],[122,133,68,-0.5477141104638577],[122,133,69,-0.5488727241754532],[122,133,70,-0.5513996481895447],[122,133,71,-0.5542764626443386],[122,133,72,-0.557181965559721],[122,133,73,-0.558972891420126],[122,133,74,-0.559431903064251],[122,133,75,-0.5585466586053371],[122,133,76,-0.5561536103487015],[122,133,77,-0.5525593608617783],[122,133,78,-0.548352126032114],[122,133,79,-0.5437773950397968],[122,134,64,-0.5520365312695503],[122,134,65,-0.5518265515565872],[122,134,66,-0.5502231270074844],[122,134,67,-0.5484046824276447],[122,134,68,-0.5477141104638577],[122,134,69,-0.5488727241754532],[122,134,70,-0.5513996481895447],[122,134,71,-0.5542764626443386],[122,134,72,-0.557181965559721],[122,134,73,-0.558972891420126],[122,134,74,-0.559431903064251],[122,134,75,-0.5585466586053371],[122,134,76,-0.5561536103487015],[122,134,77,-0.5525593608617783],[122,134,78,-0.548352126032114],[122,134,79,-0.5437773950397968],[122,135,64,-0.5520365312695503],[122,135,65,-0.5518265515565872],[122,135,66,-0.5502231270074844],[122,135,67,-0.5484046824276447],[122,135,68,-0.5477141104638577],[122,135,69,-0.5488727241754532],[122,135,70,-0.5513996481895447],[122,135,71,-0.5542764626443386],[122,135,72,-0.557181965559721],[122,135,73,-0.558972891420126],[122,135,74,-0.559431903064251],[122,135,75,-0.5585466586053371],[122,135,76,-0.5561536103487015],[122,135,77,-0.5525593608617783],[122,135,78,-0.548352126032114],[122,135,79,-0.5437773950397968],[122,136,64,-0.5520365312695503],[122,136,65,-0.5518265515565872],[122,136,66,-0.5502231270074844],[122,136,67,-0.5484046824276447],[122,136,68,-0.5477141104638577],[122,136,69,-0.5488727241754532],[122,136,70,-0.5513996481895447],[122,136,71,-0.5542764626443386],[122,136,72,-0.557181965559721],[122,136,73,-0.558972891420126],[122,136,74,-0.559431903064251],[122,136,75,-0.5585466586053371],[122,136,76,-0.5561536103487015],[122,136,77,-0.5525593608617783],[122,136,78,-0.548352126032114],[122,136,79,-0.5437773950397968],[122,137,64,-0.5520365312695503],[122,137,65,-0.5518265515565872],[122,137,66,-0.5502231270074844],[122,137,67,-0.5484046824276447],[122,137,68,-0.5477141104638577],[122,137,69,-0.5488727241754532],[122,137,70,-0.5513996481895447],[122,137,71,-0.5542764626443386],[122,137,72,-0.557181965559721],[122,137,73,-0.558972891420126],[122,137,74,-0.559431903064251],[122,137,75,-0.5585466586053371],[122,137,76,-0.5561536103487015],[122,137,77,-0.5525593608617783],[122,137,78,-0.548352126032114],[122,137,79,-0.5437773950397968],[122,138,64,-0.5520365312695503],[122,138,65,-0.5518265515565872],[122,138,66,-0.5502231270074844],[122,138,67,-0.5484046824276447],[122,138,68,-0.5477141104638577],[122,138,69,-0.5488727241754532],[122,138,70,-0.5513996481895447],[122,138,71,-0.5542764626443386],[122,138,72,-0.557181965559721],[122,138,73,-0.558972891420126],[122,138,74,-0.559431903064251],[122,138,75,-0.5585466586053371],[122,138,76,-0.5561536103487015],[122,138,77,-0.5525593608617783],[122,138,78,-0.548352126032114],[122,138,79,-0.5437773950397968],[122,139,64,-0.5520365312695503],[122,139,65,-0.5518265515565872],[122,139,66,-0.5502231270074844],[122,139,67,-0.5484046824276447],[122,139,68,-0.5477141104638577],[122,139,69,-0.5488727241754532],[122,139,70,-0.5513996481895447],[122,139,71,-0.5542764626443386],[122,139,72,-0.557181965559721],[122,139,73,-0.558972891420126],[122,139,74,-0.559431903064251],[122,139,75,-0.5585466586053371],[122,139,76,-0.5561536103487015],[122,139,77,-0.5525593608617783],[122,139,78,-0.548352126032114],[122,139,79,-0.5437773950397968],[122,140,64,-0.5520365312695503],[122,140,65,-0.5518265515565872],[122,140,66,-0.5502231270074844],[122,140,67,-0.5484046824276447],[122,140,68,-0.5477141104638577],[122,140,69,-0.5488727241754532],[122,140,70,-0.5513996481895447],[122,140,71,-0.5542764626443386],[122,140,72,-0.557181965559721],[122,140,73,-0.558972891420126],[122,140,74,-0.559431903064251],[122,140,75,-0.5585466586053371],[122,140,76,-0.5561536103487015],[122,140,77,-0.5525593608617783],[122,140,78,-0.548352126032114],[122,140,79,-0.5437773950397968],[122,141,64,-0.5520365312695503],[122,141,65,-0.5518265515565872],[122,141,66,-0.5502231270074844],[122,141,67,-0.5484046824276447],[122,141,68,-0.5477141104638577],[122,141,69,-0.5488727241754532],[122,141,70,-0.5513996481895447],[122,141,71,-0.5542764626443386],[122,141,72,-0.557181965559721],[122,141,73,-0.558972891420126],[122,141,74,-0.559431903064251],[122,141,75,-0.5585466586053371],[122,141,76,-0.5561536103487015],[122,141,77,-0.5525593608617783],[122,141,78,-0.548352126032114],[122,141,79,-0.5437773950397968],[122,142,64,-0.5520365312695503],[122,142,65,-0.5518265515565872],[122,142,66,-0.5502231270074844],[122,142,67,-0.5484046824276447],[122,142,68,-0.5477141104638577],[122,142,69,-0.5488727241754532],[122,142,70,-0.5513996481895447],[122,142,71,-0.5542764626443386],[122,142,72,-0.557181965559721],[122,142,73,-0.558972891420126],[122,142,74,-0.559431903064251],[122,142,75,-0.5585466586053371],[122,142,76,-0.5561536103487015],[122,142,77,-0.5525593608617783],[122,142,78,-0.548352126032114],[122,142,79,-0.5437773950397968],[122,143,64,-0.5520365312695503],[122,143,65,-0.5518265515565872],[122,143,66,-0.5502231270074844],[122,143,67,-0.5484046824276447],[122,143,68,-0.5477141104638577],[122,143,69,-0.5488727241754532],[122,143,70,-0.5513996481895447],[122,143,71,-0.5542764626443386],[122,143,72,-0.557181965559721],[122,143,73,-0.558972891420126],[122,143,74,-0.559431903064251],[122,143,75,-0.5585466586053371],[122,143,76,-0.5561536103487015],[122,143,77,-0.5525593608617783],[122,143,78,-0.548352126032114],[122,143,79,-0.5437773950397968],[122,144,64,-0.5520365312695503],[122,144,65,-0.5518265515565872],[122,144,66,-0.5502231270074844],[122,144,67,-0.5484046824276447],[122,144,68,-0.5477141104638577],[122,144,69,-0.5488727241754532],[122,144,70,-0.5513996481895447],[122,144,71,-0.5542764626443386],[122,144,72,-0.557181965559721],[122,144,73,-0.558972891420126],[122,144,74,-0.559431903064251],[122,144,75,-0.5585466586053371],[122,144,76,-0.5561536103487015],[122,144,77,-0.5525593608617783],[122,144,78,-0.548352126032114],[122,144,79,-0.5437773950397968],[122,145,64,-0.5520365312695503],[122,145,65,-0.5518265515565872],[122,145,66,-0.5502231270074844],[122,145,67,-0.5484046824276447],[122,145,68,-0.5477141104638577],[122,145,69,-0.5488727241754532],[122,145,70,-0.5513996481895447],[122,145,71,-0.5542764626443386],[122,145,72,-0.557181965559721],[122,145,73,-0.558972891420126],[122,145,74,-0.559431903064251],[122,145,75,-0.5585466586053371],[122,145,76,-0.5561536103487015],[122,145,77,-0.5525593608617783],[122,145,78,-0.548352126032114],[122,145,79,-0.5437773950397968],[122,146,64,-0.5520365312695503],[122,146,65,-0.5518265515565872],[122,146,66,-0.5502231270074844],[122,146,67,-0.5484046824276447],[122,146,68,-0.5477141104638577],[122,146,69,-0.5488727241754532],[122,146,70,-0.5513996481895447],[122,146,71,-0.5542764626443386],[122,146,72,-0.557181965559721],[122,146,73,-0.558972891420126],[122,146,74,-0.559431903064251],[122,146,75,-0.5585466586053371],[122,146,76,-0.5561536103487015],[122,146,77,-0.5525593608617783],[122,146,78,-0.548352126032114],[122,146,79,-0.5437773950397968],[122,147,64,-0.5520365312695503],[122,147,65,-0.5518265515565872],[122,147,66,-0.5502231270074844],[122,147,67,-0.5484046824276447],[122,147,68,-0.5477141104638577],[122,147,69,-0.5488727241754532],[122,147,70,-0.5513996481895447],[122,147,71,-0.5542764626443386],[122,147,72,-0.557181965559721],[122,147,73,-0.558972891420126],[122,147,74,-0.559431903064251],[122,147,75,-0.5585466586053371],[122,147,76,-0.5561536103487015],[122,147,77,-0.5525593608617783],[122,147,78,-0.548352126032114],[122,147,79,-0.5437773950397968],[122,148,64,-0.5520365312695503],[122,148,65,-0.5518265515565872],[122,148,66,-0.5502231270074844],[122,148,67,-0.5484046824276447],[122,148,68,-0.5477141104638577],[122,148,69,-0.5488727241754532],[122,148,70,-0.5513996481895447],[122,148,71,-0.5542764626443386],[122,148,72,-0.557181965559721],[122,148,73,-0.558972891420126],[122,148,74,-0.559431903064251],[122,148,75,-0.5585466586053371],[122,148,76,-0.5561536103487015],[122,148,77,-0.5525593608617783],[122,148,78,-0.548352126032114],[122,148,79,-0.5437773950397968],[122,149,64,-0.5520365312695503],[122,149,65,-0.5518265515565872],[122,149,66,-0.5502231270074844],[122,149,67,-0.5484046824276447],[122,149,68,-0.5477141104638577],[122,149,69,-0.5488727241754532],[122,149,70,-0.5513996481895447],[122,149,71,-0.5542764626443386],[122,149,72,-0.557181965559721],[122,149,73,-0.558972891420126],[122,149,74,-0.559431903064251],[122,149,75,-0.5585466586053371],[122,149,76,-0.5561536103487015],[122,149,77,-0.5525593608617783],[122,149,78,-0.548352126032114],[122,149,79,-0.5437773950397968],[122,150,64,-0.5520365312695503],[122,150,65,-0.5518265515565872],[122,150,66,-0.5502231270074844],[122,150,67,-0.5484046824276447],[122,150,68,-0.5477141104638577],[122,150,69,-0.5488727241754532],[122,150,70,-0.5513996481895447],[122,150,71,-0.5542764626443386],[122,150,72,-0.557181965559721],[122,150,73,-0.558972891420126],[122,150,74,-0.559431903064251],[122,150,75,-0.5585466586053371],[122,150,76,-0.5561536103487015],[122,150,77,-0.5525593608617783],[122,150,78,-0.548352126032114],[122,150,79,-0.5437773950397968],[122,151,64,-0.5520365312695503],[122,151,65,-0.5518265515565872],[122,151,66,-0.5502231270074844],[122,151,67,-0.5484046824276447],[122,151,68,-0.5477141104638577],[122,151,69,-0.5488727241754532],[122,151,70,-0.5513996481895447],[122,151,71,-0.5542764626443386],[122,151,72,-0.557181965559721],[122,151,73,-0.558972891420126],[122,151,74,-0.559431903064251],[122,151,75,-0.5585466586053371],[122,151,76,-0.5561536103487015],[122,151,77,-0.5525593608617783],[122,151,78,-0.548352126032114],[122,151,79,-0.5437773950397968],[122,152,64,-0.5520365312695503],[122,152,65,-0.5518265515565872],[122,152,66,-0.5502231270074844],[122,152,67,-0.5484046824276447],[122,152,68,-0.5477141104638577],[122,152,69,-0.5488727241754532],[122,152,70,-0.5513996481895447],[122,152,71,-0.5542764626443386],[122,152,72,-0.557181965559721],[122,152,73,-0.558972891420126],[122,152,74,-0.559431903064251],[122,152,75,-0.5585466586053371],[122,152,76,-0.5561536103487015],[122,152,77,-0.5525593608617783],[122,152,78,-0.548352126032114],[122,152,79,-0.5437773950397968],[122,153,64,-0.5520365312695503],[122,153,65,-0.5518265515565872],[122,153,66,-0.5502231270074844],[122,153,67,-0.5484046824276447],[122,153,68,-0.5477141104638577],[122,153,69,-0.5488727241754532],[122,153,70,-0.5513996481895447],[122,153,71,-0.5542764626443386],[122,153,72,-0.557181965559721],[122,153,73,-0.558972891420126],[122,153,74,-0.559431903064251],[122,153,75,-0.5585466586053371],[122,153,76,-0.5561536103487015],[122,153,77,-0.5525593608617783],[122,153,78,-0.548352126032114],[122,153,79,-0.5437773950397968],[122,154,64,-0.5520365312695503],[122,154,65,-0.5518265515565872],[122,154,66,-0.5502231270074844],[122,154,67,-0.5484046824276447],[122,154,68,-0.5477141104638577],[122,154,69,-0.5488727241754532],[122,154,70,-0.5513996481895447],[122,154,71,-0.5542764626443386],[122,154,72,-0.557181965559721],[122,154,73,-0.558972891420126],[122,154,74,-0.559431903064251],[122,154,75,-0.5585466586053371],[122,154,76,-0.5561536103487015],[122,154,77,-0.5525593608617783],[122,154,78,-0.548352126032114],[122,154,79,-0.5437773950397968],[122,155,64,-0.5520365312695503],[122,155,65,-0.5518265515565872],[122,155,66,-0.5502231270074844],[122,155,67,-0.5484046824276447],[122,155,68,-0.5477141104638577],[122,155,69,-0.5488727241754532],[122,155,70,-0.5513996481895447],[122,155,71,-0.5542764626443386],[122,155,72,-0.557181965559721],[122,155,73,-0.558972891420126],[122,155,74,-0.559431903064251],[122,155,75,-0.5585466586053371],[122,155,76,-0.5561536103487015],[122,155,77,-0.5525593608617783],[122,155,78,-0.548352126032114],[122,155,79,-0.5437773950397968],[122,156,64,-0.5520365312695503],[122,156,65,-0.5518265515565872],[122,156,66,-0.5502231270074844],[122,156,67,-0.5484046824276447],[122,156,68,-0.5477141104638577],[122,156,69,-0.5488727241754532],[122,156,70,-0.5513996481895447],[122,156,71,-0.5542764626443386],[122,156,72,-0.557181965559721],[122,156,73,-0.558972891420126],[122,156,74,-0.559431903064251],[122,156,75,-0.5585466586053371],[122,156,76,-0.5561536103487015],[122,156,77,-0.5525593608617783],[122,156,78,-0.548352126032114],[122,156,79,-0.5437773950397968],[122,157,64,-0.5520365312695503],[122,157,65,-0.5518265515565872],[122,157,66,-0.5502231270074844],[122,157,67,-0.5484046824276447],[122,157,68,-0.5477141104638577],[122,157,69,-0.5488727241754532],[122,157,70,-0.5513996481895447],[122,157,71,-0.5542764626443386],[122,157,72,-0.557181965559721],[122,157,73,-0.558972891420126],[122,157,74,-0.559431903064251],[122,157,75,-0.5585466586053371],[122,157,76,-0.5561536103487015],[122,157,77,-0.5525593608617783],[122,157,78,-0.548352126032114],[122,157,79,-0.5437773950397968],[122,158,64,-0.5520365312695503],[122,158,65,-0.5518265515565872],[122,158,66,-0.5502231270074844],[122,158,67,-0.5484046824276447],[122,158,68,-0.5477141104638577],[122,158,69,-0.5488727241754532],[122,158,70,-0.5513996481895447],[122,158,71,-0.5542764626443386],[122,158,72,-0.557181965559721],[122,158,73,-0.558972891420126],[122,158,74,-0.559431903064251],[122,158,75,-0.5585466586053371],[122,158,76,-0.5561536103487015],[122,158,77,-0.5525593608617783],[122,158,78,-0.548352126032114],[122,158,79,-0.5437773950397968],[122,159,64,-0.5520365312695503],[122,159,65,-0.5518265515565872],[122,159,66,-0.5502231270074844],[122,159,67,-0.5484046824276447],[122,159,68,-0.5477141104638577],[122,159,69,-0.5488727241754532],[122,159,70,-0.5513996481895447],[122,159,71,-0.5542764626443386],[122,159,72,-0.557181965559721],[122,159,73,-0.558972891420126],[122,159,74,-0.559431903064251],[122,159,75,-0.5585466586053371],[122,159,76,-0.5561536103487015],[122,159,77,-0.5525593608617783],[122,159,78,-0.548352126032114],[122,159,79,-0.5437773950397968],[122,160,64,-0.5520365312695503],[122,160,65,-0.5518265515565872],[122,160,66,-0.5502231270074844],[122,160,67,-0.5484046824276447],[122,160,68,-0.5477141104638577],[122,160,69,-0.5488727241754532],[122,160,70,-0.5513996481895447],[122,160,71,-0.5542764626443386],[122,160,72,-0.557181965559721],[122,160,73,-0.558972891420126],[122,160,74,-0.559431903064251],[122,160,75,-0.5585466586053371],[122,160,76,-0.5561536103487015],[122,160,77,-0.5525593608617783],[122,160,78,-0.548352126032114],[122,160,79,-0.5437773950397968],[122,161,64,-0.5520365312695503],[122,161,65,-0.5518265515565872],[122,161,66,-0.5502231270074844],[122,161,67,-0.5484046824276447],[122,161,68,-0.5477141104638577],[122,161,69,-0.5488727241754532],[122,161,70,-0.5513996481895447],[122,161,71,-0.5542764626443386],[122,161,72,-0.557181965559721],[122,161,73,-0.558972891420126],[122,161,74,-0.559431903064251],[122,161,75,-0.5585466586053371],[122,161,76,-0.5561536103487015],[122,161,77,-0.5525593608617783],[122,161,78,-0.548352126032114],[122,161,79,-0.5437773950397968],[122,162,64,-0.5520365312695503],[122,162,65,-0.5518265515565872],[122,162,66,-0.5502231270074844],[122,162,67,-0.5484046824276447],[122,162,68,-0.5477141104638577],[122,162,69,-0.5488727241754532],[122,162,70,-0.5513996481895447],[122,162,71,-0.5542764626443386],[122,162,72,-0.557181965559721],[122,162,73,-0.558972891420126],[122,162,74,-0.559431903064251],[122,162,75,-0.5585466586053371],[122,162,76,-0.5561536103487015],[122,162,77,-0.5525593608617783],[122,162,78,-0.548352126032114],[122,162,79,-0.5437773950397968],[122,163,64,-0.5520365312695503],[122,163,65,-0.5518265515565872],[122,163,66,-0.5502231270074844],[122,163,67,-0.5484046824276447],[122,163,68,-0.5477141104638577],[122,163,69,-0.5488727241754532],[122,163,70,-0.5513996481895447],[122,163,71,-0.5542764626443386],[122,163,72,-0.557181965559721],[122,163,73,-0.558972891420126],[122,163,74,-0.559431903064251],[122,163,75,-0.5585466586053371],[122,163,76,-0.5561536103487015],[122,163,77,-0.5525593608617783],[122,163,78,-0.548352126032114],[122,163,79,-0.5437773950397968],[122,164,64,-0.5520365312695503],[122,164,65,-0.5518265515565872],[122,164,66,-0.5502231270074844],[122,164,67,-0.5484046824276447],[122,164,68,-0.5477141104638577],[122,164,69,-0.5488727241754532],[122,164,70,-0.5513996481895447],[122,164,71,-0.5542764626443386],[122,164,72,-0.557181965559721],[122,164,73,-0.558972891420126],[122,164,74,-0.559431903064251],[122,164,75,-0.5585466586053371],[122,164,76,-0.5561536103487015],[122,164,77,-0.5525593608617783],[122,164,78,-0.548352126032114],[122,164,79,-0.5437773950397968],[122,165,64,-0.5520365312695503],[122,165,65,-0.5518265515565872],[122,165,66,-0.5502231270074844],[122,165,67,-0.5484046824276447],[122,165,68,-0.5477141104638577],[122,165,69,-0.5488727241754532],[122,165,70,-0.5513996481895447],[122,165,71,-0.5542764626443386],[122,165,72,-0.557181965559721],[122,165,73,-0.558972891420126],[122,165,74,-0.559431903064251],[122,165,75,-0.5585466586053371],[122,165,76,-0.5561536103487015],[122,165,77,-0.5525593608617783],[122,165,78,-0.548352126032114],[122,165,79,-0.5437773950397968],[122,166,64,-0.5520365312695503],[122,166,65,-0.5518265515565872],[122,166,66,-0.5502231270074844],[122,166,67,-0.5484046824276447],[122,166,68,-0.5477141104638577],[122,166,69,-0.5488727241754532],[122,166,70,-0.5513996481895447],[122,166,71,-0.5542764626443386],[122,166,72,-0.557181965559721],[122,166,73,-0.558972891420126],[122,166,74,-0.559431903064251],[122,166,75,-0.5585466586053371],[122,166,76,-0.5561536103487015],[122,166,77,-0.5525593608617783],[122,166,78,-0.548352126032114],[122,166,79,-0.5437773950397968],[122,167,64,-0.5520365312695503],[122,167,65,-0.5518265515565872],[122,167,66,-0.5502231270074844],[122,167,67,-0.5484046824276447],[122,167,68,-0.5477141104638577],[122,167,69,-0.5488727241754532],[122,167,70,-0.5513996481895447],[122,167,71,-0.5542764626443386],[122,167,72,-0.557181965559721],[122,167,73,-0.558972891420126],[122,167,74,-0.559431903064251],[122,167,75,-0.5585466586053371],[122,167,76,-0.5561536103487015],[122,167,77,-0.5525593608617783],[122,167,78,-0.548352126032114],[122,167,79,-0.5437773950397968],[122,168,64,-0.5520365312695503],[122,168,65,-0.5518265515565872],[122,168,66,-0.5502231270074844],[122,168,67,-0.5484046824276447],[122,168,68,-0.5477141104638577],[122,168,69,-0.5488727241754532],[122,168,70,-0.5513996481895447],[122,168,71,-0.5542764626443386],[122,168,72,-0.557181965559721],[122,168,73,-0.558972891420126],[122,168,74,-0.559431903064251],[122,168,75,-0.5585466586053371],[122,168,76,-0.5561536103487015],[122,168,77,-0.5525593608617783],[122,168,78,-0.548352126032114],[122,168,79,-0.5437773950397968],[122,169,64,-0.5520365312695503],[122,169,65,-0.5518265515565872],[122,169,66,-0.5502231270074844],[122,169,67,-0.5484046824276447],[122,169,68,-0.5477141104638577],[122,169,69,-0.5488727241754532],[122,169,70,-0.5513996481895447],[122,169,71,-0.5542764626443386],[122,169,72,-0.557181965559721],[122,169,73,-0.558972891420126],[122,169,74,-0.559431903064251],[122,169,75,-0.5585466586053371],[122,169,76,-0.5561536103487015],[122,169,77,-0.5525593608617783],[122,169,78,-0.548352126032114],[122,169,79,-0.5437773950397968],[122,170,64,-0.5520365312695503],[122,170,65,-0.5518265515565872],[122,170,66,-0.5502231270074844],[122,170,67,-0.5484046824276447],[122,170,68,-0.5477141104638577],[122,170,69,-0.5488727241754532],[122,170,70,-0.5513996481895447],[122,170,71,-0.5542764626443386],[122,170,72,-0.557181965559721],[122,170,73,-0.558972891420126],[122,170,74,-0.559431903064251],[122,170,75,-0.5585466586053371],[122,170,76,-0.5561536103487015],[122,170,77,-0.5525593608617783],[122,170,78,-0.548352126032114],[122,170,79,-0.5437773950397968],[122,171,64,-0.5520365312695503],[122,171,65,-0.5518265515565872],[122,171,66,-0.5502231270074844],[122,171,67,-0.5484046824276447],[122,171,68,-0.5477141104638577],[122,171,69,-0.5488727241754532],[122,171,70,-0.5513996481895447],[122,171,71,-0.5542764626443386],[122,171,72,-0.557181965559721],[122,171,73,-0.558972891420126],[122,171,74,-0.559431903064251],[122,171,75,-0.5585466586053371],[122,171,76,-0.5561536103487015],[122,171,77,-0.5525593608617783],[122,171,78,-0.548352126032114],[122,171,79,-0.5437773950397968],[122,172,64,-0.5520365312695503],[122,172,65,-0.5518265515565872],[122,172,66,-0.5502231270074844],[122,172,67,-0.5484046824276447],[122,172,68,-0.5477141104638577],[122,172,69,-0.5488727241754532],[122,172,70,-0.5513996481895447],[122,172,71,-0.5542764626443386],[122,172,72,-0.557181965559721],[122,172,73,-0.558972891420126],[122,172,74,-0.559431903064251],[122,172,75,-0.5585466586053371],[122,172,76,-0.5561536103487015],[122,172,77,-0.5525593608617783],[122,172,78,-0.548352126032114],[122,172,79,-0.5437773950397968],[122,173,64,-0.5520365312695503],[122,173,65,-0.5518265515565872],[122,173,66,-0.5502231270074844],[122,173,67,-0.5484046824276447],[122,173,68,-0.5477141104638577],[122,173,69,-0.5488727241754532],[122,173,70,-0.5513996481895447],[122,173,71,-0.5542764626443386],[122,173,72,-0.557181965559721],[122,173,73,-0.558972891420126],[122,173,74,-0.559431903064251],[122,173,75,-0.5585466586053371],[122,173,76,-0.5561536103487015],[122,173,77,-0.5525593608617783],[122,173,78,-0.548352126032114],[122,173,79,-0.5437773950397968],[122,174,64,-0.5520365312695503],[122,174,65,-0.5518265515565872],[122,174,66,-0.5502231270074844],[122,174,67,-0.5484046824276447],[122,174,68,-0.5477141104638577],[122,174,69,-0.5488727241754532],[122,174,70,-0.5513996481895447],[122,174,71,-0.5542764626443386],[122,174,72,-0.557181965559721],[122,174,73,-0.558972891420126],[122,174,74,-0.559431903064251],[122,174,75,-0.5585466586053371],[122,174,76,-0.5561536103487015],[122,174,77,-0.5525593608617783],[122,174,78,-0.548352126032114],[122,174,79,-0.5437773950397968],[122,175,64,-0.5520365312695503],[122,175,65,-0.5518265515565872],[122,175,66,-0.5502231270074844],[122,175,67,-0.5484046824276447],[122,175,68,-0.5477141104638577],[122,175,69,-0.5488727241754532],[122,175,70,-0.5513996481895447],[122,175,71,-0.5542764626443386],[122,175,72,-0.557181965559721],[122,175,73,-0.558972891420126],[122,175,74,-0.559431903064251],[122,175,75,-0.5585466586053371],[122,175,76,-0.5561536103487015],[122,175,77,-0.5525593608617783],[122,175,78,-0.548352126032114],[122,175,79,-0.5437773950397968],[122,176,64,-0.5520365312695503],[122,176,65,-0.5518265515565872],[122,176,66,-0.5502231270074844],[122,176,67,-0.5484046824276447],[122,176,68,-0.5477141104638577],[122,176,69,-0.5488727241754532],[122,176,70,-0.5513996481895447],[122,176,71,-0.5542764626443386],[122,176,72,-0.557181965559721],[122,176,73,-0.558972891420126],[122,176,74,-0.559431903064251],[122,176,75,-0.5585466586053371],[122,176,76,-0.5561536103487015],[122,176,77,-0.5525593608617783],[122,176,78,-0.548352126032114],[122,176,79,-0.5437773950397968],[122,177,64,-0.5520365312695503],[122,177,65,-0.5518265515565872],[122,177,66,-0.5502231270074844],[122,177,67,-0.5484046824276447],[122,177,68,-0.5477141104638577],[122,177,69,-0.5488727241754532],[122,177,70,-0.5513996481895447],[122,177,71,-0.5542764626443386],[122,177,72,-0.557181965559721],[122,177,73,-0.558972891420126],[122,177,74,-0.559431903064251],[122,177,75,-0.5585466586053371],[122,177,76,-0.5561536103487015],[122,177,77,-0.5525593608617783],[122,177,78,-0.548352126032114],[122,177,79,-0.5437773950397968],[122,178,64,-0.5520365312695503],[122,178,65,-0.5518265515565872],[122,178,66,-0.5502231270074844],[122,178,67,-0.5484046824276447],[122,178,68,-0.5477141104638577],[122,178,69,-0.5488727241754532],[122,178,70,-0.5513996481895447],[122,178,71,-0.5542764626443386],[122,178,72,-0.557181965559721],[122,178,73,-0.558972891420126],[122,178,74,-0.559431903064251],[122,178,75,-0.5585466586053371],[122,178,76,-0.5561536103487015],[122,178,77,-0.5525593608617783],[122,178,78,-0.548352126032114],[122,178,79,-0.5437773950397968],[122,179,64,-0.5520365312695503],[122,179,65,-0.5518265515565872],[122,179,66,-0.5502231270074844],[122,179,67,-0.5484046824276447],[122,179,68,-0.5477141104638577],[122,179,69,-0.5488727241754532],[122,179,70,-0.5513996481895447],[122,179,71,-0.5542764626443386],[122,179,72,-0.557181965559721],[122,179,73,-0.558972891420126],[122,179,74,-0.559431903064251],[122,179,75,-0.5585466586053371],[122,179,76,-0.5561536103487015],[122,179,77,-0.5525593608617783],[122,179,78,-0.548352126032114],[122,179,79,-0.5437773950397968],[122,180,64,-0.5520365312695503],[122,180,65,-0.5518265515565872],[122,180,66,-0.5502231270074844],[122,180,67,-0.5484046824276447],[122,180,68,-0.5477141104638577],[122,180,69,-0.5488727241754532],[122,180,70,-0.5513996481895447],[122,180,71,-0.5542764626443386],[122,180,72,-0.557181965559721],[122,180,73,-0.558972891420126],[122,180,74,-0.559431903064251],[122,180,75,-0.5585466586053371],[122,180,76,-0.5561536103487015],[122,180,77,-0.5525593608617783],[122,180,78,-0.548352126032114],[122,180,79,-0.5437773950397968],[122,181,64,-0.5520365312695503],[122,181,65,-0.5518265515565872],[122,181,66,-0.5502231270074844],[122,181,67,-0.5484046824276447],[122,181,68,-0.5477141104638577],[122,181,69,-0.5488727241754532],[122,181,70,-0.5513996481895447],[122,181,71,-0.5542764626443386],[122,181,72,-0.557181965559721],[122,181,73,-0.558972891420126],[122,181,74,-0.559431903064251],[122,181,75,-0.5585466586053371],[122,181,76,-0.5561536103487015],[122,181,77,-0.5525593608617783],[122,181,78,-0.548352126032114],[122,181,79,-0.5437773950397968],[122,182,64,-0.5520365312695503],[122,182,65,-0.5518265515565872],[122,182,66,-0.5502231270074844],[122,182,67,-0.5484046824276447],[122,182,68,-0.5477141104638577],[122,182,69,-0.5488727241754532],[122,182,70,-0.5513996481895447],[122,182,71,-0.5542764626443386],[122,182,72,-0.557181965559721],[122,182,73,-0.558972891420126],[122,182,74,-0.559431903064251],[122,182,75,-0.5585466586053371],[122,182,76,-0.5561536103487015],[122,182,77,-0.5525593608617783],[122,182,78,-0.548352126032114],[122,182,79,-0.5437773950397968],[122,183,64,-0.5520365312695503],[122,183,65,-0.5518265515565872],[122,183,66,-0.5502231270074844],[122,183,67,-0.5484046824276447],[122,183,68,-0.5477141104638577],[122,183,69,-0.5488727241754532],[122,183,70,-0.5513996481895447],[122,183,71,-0.5542764626443386],[122,183,72,-0.557181965559721],[122,183,73,-0.558972891420126],[122,183,74,-0.559431903064251],[122,183,75,-0.5585466586053371],[122,183,76,-0.5561536103487015],[122,183,77,-0.5525593608617783],[122,183,78,-0.548352126032114],[122,183,79,-0.5437773950397968],[122,184,64,-0.5520365312695503],[122,184,65,-0.5518265515565872],[122,184,66,-0.5502231270074844],[122,184,67,-0.5484046824276447],[122,184,68,-0.5477141104638577],[122,184,69,-0.5488727241754532],[122,184,70,-0.5513996481895447],[122,184,71,-0.5542764626443386],[122,184,72,-0.557181965559721],[122,184,73,-0.558972891420126],[122,184,74,-0.559431903064251],[122,184,75,-0.5585466586053371],[122,184,76,-0.5561536103487015],[122,184,77,-0.5525593608617783],[122,184,78,-0.548352126032114],[122,184,79,-0.5437773950397968],[122,185,64,-0.5520365312695503],[122,185,65,-0.5518265515565872],[122,185,66,-0.5502231270074844],[122,185,67,-0.5484046824276447],[122,185,68,-0.5477141104638577],[122,185,69,-0.5488727241754532],[122,185,70,-0.5513996481895447],[122,185,71,-0.5542764626443386],[122,185,72,-0.557181965559721],[122,185,73,-0.558972891420126],[122,185,74,-0.559431903064251],[122,185,75,-0.5585466586053371],[122,185,76,-0.5561536103487015],[122,185,77,-0.5525593608617783],[122,185,78,-0.548352126032114],[122,185,79,-0.5437773950397968],[122,186,64,-0.5520365312695503],[122,186,65,-0.5518265515565872],[122,186,66,-0.5502231270074844],[122,186,67,-0.5484046824276447],[122,186,68,-0.5477141104638577],[122,186,69,-0.5488727241754532],[122,186,70,-0.5513996481895447],[122,186,71,-0.5542764626443386],[122,186,72,-0.557181965559721],[122,186,73,-0.558972891420126],[122,186,74,-0.559431903064251],[122,186,75,-0.5585466586053371],[122,186,76,-0.5561536103487015],[122,186,77,-0.5525593608617783],[122,186,78,-0.548352126032114],[122,186,79,-0.5437773950397968],[122,187,64,-0.5520365312695503],[122,187,65,-0.5518265515565872],[122,187,66,-0.5502231270074844],[122,187,67,-0.5484046824276447],[122,187,68,-0.5477141104638577],[122,187,69,-0.5488727241754532],[122,187,70,-0.5513996481895447],[122,187,71,-0.5542764626443386],[122,187,72,-0.557181965559721],[122,187,73,-0.558972891420126],[122,187,74,-0.559431903064251],[122,187,75,-0.5585466586053371],[122,187,76,-0.5561536103487015],[122,187,77,-0.5525593608617783],[122,187,78,-0.548352126032114],[122,187,79,-0.5437773950397968],[122,188,64,-0.5520365312695503],[122,188,65,-0.5518265515565872],[122,188,66,-0.5502231270074844],[122,188,67,-0.5484046824276447],[122,188,68,-0.5477141104638577],[122,188,69,-0.5488727241754532],[122,188,70,-0.5513996481895447],[122,188,71,-0.5542764626443386],[122,188,72,-0.557181965559721],[122,188,73,-0.558972891420126],[122,188,74,-0.559431903064251],[122,188,75,-0.5585466586053371],[122,188,76,-0.5561536103487015],[122,188,77,-0.5525593608617783],[122,188,78,-0.548352126032114],[122,188,79,-0.5437773950397968],[122,189,64,-0.5520365312695503],[122,189,65,-0.5518265515565872],[122,189,66,-0.5502231270074844],[122,189,67,-0.5484046824276447],[122,189,68,-0.5477141104638577],[122,189,69,-0.5488727241754532],[122,189,70,-0.5513996481895447],[122,189,71,-0.5542764626443386],[122,189,72,-0.557181965559721],[122,189,73,-0.558972891420126],[122,189,74,-0.559431903064251],[122,189,75,-0.5585466586053371],[122,189,76,-0.5561536103487015],[122,189,77,-0.5525593608617783],[122,189,78,-0.548352126032114],[122,189,79,-0.5437773950397968],[122,190,64,-0.5520365312695503],[122,190,65,-0.5518265515565872],[122,190,66,-0.5502231270074844],[122,190,67,-0.5484046824276447],[122,190,68,-0.5477141104638577],[122,190,69,-0.5488727241754532],[122,190,70,-0.5513996481895447],[122,190,71,-0.5542764626443386],[122,190,72,-0.557181965559721],[122,190,73,-0.558972891420126],[122,190,74,-0.559431903064251],[122,190,75,-0.5585466586053371],[122,190,76,-0.5561536103487015],[122,190,77,-0.5525593608617783],[122,190,78,-0.548352126032114],[122,190,79,-0.5437773950397968],[122,191,64,-0.5520365312695503],[122,191,65,-0.5518265515565872],[122,191,66,-0.5502231270074844],[122,191,67,-0.5484046824276447],[122,191,68,-0.5477141104638577],[122,191,69,-0.5488727241754532],[122,191,70,-0.5513996481895447],[122,191,71,-0.5542764626443386],[122,191,72,-0.557181965559721],[122,191,73,-0.558972891420126],[122,191,74,-0.559431903064251],[122,191,75,-0.5585466586053371],[122,191,76,-0.5561536103487015],[122,191,77,-0.5525593608617783],[122,191,78,-0.548352126032114],[122,191,79,-0.5437773950397968],[122,192,64,-0.5520365312695503],[122,192,65,-0.5518265515565872],[122,192,66,-0.5502231270074844],[122,192,67,-0.5484046824276447],[122,192,68,-0.5477141104638577],[122,192,69,-0.5488727241754532],[122,192,70,-0.5513996481895447],[122,192,71,-0.5542764626443386],[122,192,72,-0.557181965559721],[122,192,73,-0.558972891420126],[122,192,74,-0.559431903064251],[122,192,75,-0.5585466586053371],[122,192,76,-0.5561536103487015],[122,192,77,-0.5525593608617783],[122,192,78,-0.548352126032114],[122,192,79,-0.5437773950397968],[122,193,64,-0.5520365312695503],[122,193,65,-0.5518265515565872],[122,193,66,-0.5502231270074844],[122,193,67,-0.5484046824276447],[122,193,68,-0.5477141104638577],[122,193,69,-0.5488727241754532],[122,193,70,-0.5513996481895447],[122,193,71,-0.5542764626443386],[122,193,72,-0.557181965559721],[122,193,73,-0.558972891420126],[122,193,74,-0.559431903064251],[122,193,75,-0.5585466586053371],[122,193,76,-0.5561536103487015],[122,193,77,-0.5525593608617783],[122,193,78,-0.548352126032114],[122,193,79,-0.5437773950397968],[122,194,64,-0.5520365312695503],[122,194,65,-0.5518265515565872],[122,194,66,-0.5502231270074844],[122,194,67,-0.5484046824276447],[122,194,68,-0.5477141104638577],[122,194,69,-0.5488727241754532],[122,194,70,-0.5513996481895447],[122,194,71,-0.5542764626443386],[122,194,72,-0.557181965559721],[122,194,73,-0.558972891420126],[122,194,74,-0.559431903064251],[122,194,75,-0.5585466586053371],[122,194,76,-0.5561536103487015],[122,194,77,-0.5525593608617783],[122,194,78,-0.548352126032114],[122,194,79,-0.5437773950397968],[122,195,64,-0.5520365312695503],[122,195,65,-0.5518265515565872],[122,195,66,-0.5502231270074844],[122,195,67,-0.5484046824276447],[122,195,68,-0.5477141104638577],[122,195,69,-0.5488727241754532],[122,195,70,-0.5513996481895447],[122,195,71,-0.5542764626443386],[122,195,72,-0.557181965559721],[122,195,73,-0.558972891420126],[122,195,74,-0.559431903064251],[122,195,75,-0.5585466586053371],[122,195,76,-0.5561536103487015],[122,195,77,-0.5525593608617783],[122,195,78,-0.548352126032114],[122,195,79,-0.5437773950397968],[122,196,64,-0.5520365312695503],[122,196,65,-0.5518265515565872],[122,196,66,-0.5502231270074844],[122,196,67,-0.5484046824276447],[122,196,68,-0.5477141104638577],[122,196,69,-0.5488727241754532],[122,196,70,-0.5513996481895447],[122,196,71,-0.5542764626443386],[122,196,72,-0.557181965559721],[122,196,73,-0.558972891420126],[122,196,74,-0.559431903064251],[122,196,75,-0.5585466586053371],[122,196,76,-0.5561536103487015],[122,196,77,-0.5525593608617783],[122,196,78,-0.548352126032114],[122,196,79,-0.5437773950397968],[122,197,64,-0.5520365312695503],[122,197,65,-0.5518265515565872],[122,197,66,-0.5502231270074844],[122,197,67,-0.5484046824276447],[122,197,68,-0.5477141104638577],[122,197,69,-0.5488727241754532],[122,197,70,-0.5513996481895447],[122,197,71,-0.5542764626443386],[122,197,72,-0.557181965559721],[122,197,73,-0.558972891420126],[122,197,74,-0.559431903064251],[122,197,75,-0.5585466586053371],[122,197,76,-0.5561536103487015],[122,197,77,-0.5525593608617783],[122,197,78,-0.548352126032114],[122,197,79,-0.5437773950397968],[122,198,64,-0.5520365312695503],[122,198,65,-0.5518265515565872],[122,198,66,-0.5502231270074844],[122,198,67,-0.5484046824276447],[122,198,68,-0.5477141104638577],[122,198,69,-0.5488727241754532],[122,198,70,-0.5513996481895447],[122,198,71,-0.5542764626443386],[122,198,72,-0.557181965559721],[122,198,73,-0.558972891420126],[122,198,74,-0.559431903064251],[122,198,75,-0.5585466586053371],[122,198,76,-0.5561536103487015],[122,198,77,-0.5525593608617783],[122,198,78,-0.548352126032114],[122,198,79,-0.5437773950397968],[122,199,64,-0.5520365312695503],[122,199,65,-0.5518265515565872],[122,199,66,-0.5502231270074844],[122,199,67,-0.5484046824276447],[122,199,68,-0.5477141104638577],[122,199,69,-0.5488727241754532],[122,199,70,-0.5513996481895447],[122,199,71,-0.5542764626443386],[122,199,72,-0.557181965559721],[122,199,73,-0.558972891420126],[122,199,74,-0.559431903064251],[122,199,75,-0.5585466586053371],[122,199,76,-0.5561536103487015],[122,199,77,-0.5525593608617783],[122,199,78,-0.548352126032114],[122,199,79,-0.5437773950397968],[122,200,64,-0.5520365312695503],[122,200,65,-0.5518265515565872],[122,200,66,-0.5502231270074844],[122,200,67,-0.5484046824276447],[122,200,68,-0.5477141104638577],[122,200,69,-0.5488727241754532],[122,200,70,-0.5513996481895447],[122,200,71,-0.5542764626443386],[122,200,72,-0.557181965559721],[122,200,73,-0.558972891420126],[122,200,74,-0.559431903064251],[122,200,75,-0.5585466586053371],[122,200,76,-0.5561536103487015],[122,200,77,-0.5525593608617783],[122,200,78,-0.548352126032114],[122,200,79,-0.5437773950397968],[122,201,64,-0.5520365312695503],[122,201,65,-0.5518265515565872],[122,201,66,-0.5502231270074844],[122,201,67,-0.5484046824276447],[122,201,68,-0.5477141104638577],[122,201,69,-0.5488727241754532],[122,201,70,-0.5513996481895447],[122,201,71,-0.5542764626443386],[122,201,72,-0.557181965559721],[122,201,73,-0.558972891420126],[122,201,74,-0.559431903064251],[122,201,75,-0.5585466586053371],[122,201,76,-0.5561536103487015],[122,201,77,-0.5525593608617783],[122,201,78,-0.548352126032114],[122,201,79,-0.5437773950397968],[122,202,64,-0.5520365312695503],[122,202,65,-0.5518265515565872],[122,202,66,-0.5502231270074844],[122,202,67,-0.5484046824276447],[122,202,68,-0.5477141104638577],[122,202,69,-0.5488727241754532],[122,202,70,-0.5513996481895447],[122,202,71,-0.5542764626443386],[122,202,72,-0.557181965559721],[122,202,73,-0.558972891420126],[122,202,74,-0.559431903064251],[122,202,75,-0.5585466586053371],[122,202,76,-0.5561536103487015],[122,202,77,-0.5525593608617783],[122,202,78,-0.548352126032114],[122,202,79,-0.5437773950397968],[122,203,64,-0.5520365312695503],[122,203,65,-0.5518265515565872],[122,203,66,-0.5502231270074844],[122,203,67,-0.5484046824276447],[122,203,68,-0.5477141104638577],[122,203,69,-0.5488727241754532],[122,203,70,-0.5513996481895447],[122,203,71,-0.5542764626443386],[122,203,72,-0.557181965559721],[122,203,73,-0.558972891420126],[122,203,74,-0.559431903064251],[122,203,75,-0.5585466586053371],[122,203,76,-0.5561536103487015],[122,203,77,-0.5525593608617783],[122,203,78,-0.548352126032114],[122,203,79,-0.5437773950397968],[122,204,64,-0.5520365312695503],[122,204,65,-0.5518265515565872],[122,204,66,-0.5502231270074844],[122,204,67,-0.5484046824276447],[122,204,68,-0.5477141104638577],[122,204,69,-0.5488727241754532],[122,204,70,-0.5513996481895447],[122,204,71,-0.5542764626443386],[122,204,72,-0.557181965559721],[122,204,73,-0.558972891420126],[122,204,74,-0.559431903064251],[122,204,75,-0.5585466586053371],[122,204,76,-0.5561536103487015],[122,204,77,-0.5525593608617783],[122,204,78,-0.548352126032114],[122,204,79,-0.5437773950397968],[122,205,64,-0.5520365312695503],[122,205,65,-0.5518265515565872],[122,205,66,-0.5502231270074844],[122,205,67,-0.5484046824276447],[122,205,68,-0.5477141104638577],[122,205,69,-0.5488727241754532],[122,205,70,-0.5513996481895447],[122,205,71,-0.5542764626443386],[122,205,72,-0.557181965559721],[122,205,73,-0.558972891420126],[122,205,74,-0.559431903064251],[122,205,75,-0.5585466586053371],[122,205,76,-0.5561536103487015],[122,205,77,-0.5525593608617783],[122,205,78,-0.548352126032114],[122,205,79,-0.5437773950397968],[122,206,64,-0.5520365312695503],[122,206,65,-0.5518265515565872],[122,206,66,-0.5502231270074844],[122,206,67,-0.5484046824276447],[122,206,68,-0.5477141104638577],[122,206,69,-0.5488727241754532],[122,206,70,-0.5513996481895447],[122,206,71,-0.5542764626443386],[122,206,72,-0.557181965559721],[122,206,73,-0.558972891420126],[122,206,74,-0.559431903064251],[122,206,75,-0.5585466586053371],[122,206,76,-0.5561536103487015],[122,206,77,-0.5525593608617783],[122,206,78,-0.548352126032114],[122,206,79,-0.5437773950397968],[122,207,64,-0.5520365312695503],[122,207,65,-0.5518265515565872],[122,207,66,-0.5502231270074844],[122,207,67,-0.5484046824276447],[122,207,68,-0.5477141104638577],[122,207,69,-0.5488727241754532],[122,207,70,-0.5513996481895447],[122,207,71,-0.5542764626443386],[122,207,72,-0.557181965559721],[122,207,73,-0.558972891420126],[122,207,74,-0.559431903064251],[122,207,75,-0.5585466586053371],[122,207,76,-0.5561536103487015],[122,207,77,-0.5525593608617783],[122,207,78,-0.548352126032114],[122,207,79,-0.5437773950397968],[122,208,64,-0.5520365312695503],[122,208,65,-0.5518265515565872],[122,208,66,-0.5502231270074844],[122,208,67,-0.5484046824276447],[122,208,68,-0.5477141104638577],[122,208,69,-0.5488727241754532],[122,208,70,-0.5513996481895447],[122,208,71,-0.5542764626443386],[122,208,72,-0.557181965559721],[122,208,73,-0.558972891420126],[122,208,74,-0.559431903064251],[122,208,75,-0.5585466586053371],[122,208,76,-0.5561536103487015],[122,208,77,-0.5525593608617783],[122,208,78,-0.548352126032114],[122,208,79,-0.5437773950397968],[122,209,64,-0.5520365312695503],[122,209,65,-0.5518265515565872],[122,209,66,-0.5502231270074844],[122,209,67,-0.5484046824276447],[122,209,68,-0.5477141104638577],[122,209,69,-0.5488727241754532],[122,209,70,-0.5513996481895447],[122,209,71,-0.5542764626443386],[122,209,72,-0.557181965559721],[122,209,73,-0.558972891420126],[122,209,74,-0.559431903064251],[122,209,75,-0.5585466586053371],[122,209,76,-0.5561536103487015],[122,209,77,-0.5525593608617783],[122,209,78,-0.548352126032114],[122,209,79,-0.5437773950397968],[122,210,64,-0.5520365312695503],[122,210,65,-0.5518265515565872],[122,210,66,-0.5502231270074844],[122,210,67,-0.5484046824276447],[122,210,68,-0.5477141104638577],[122,210,69,-0.5488727241754532],[122,210,70,-0.5513996481895447],[122,210,71,-0.5542764626443386],[122,210,72,-0.557181965559721],[122,210,73,-0.558972891420126],[122,210,74,-0.559431903064251],[122,210,75,-0.5585466586053371],[122,210,76,-0.5561536103487015],[122,210,77,-0.5525593608617783],[122,210,78,-0.548352126032114],[122,210,79,-0.5437773950397968],[122,211,64,-0.5520365312695503],[122,211,65,-0.5518265515565872],[122,211,66,-0.5502231270074844],[122,211,67,-0.5484046824276447],[122,211,68,-0.5477141104638577],[122,211,69,-0.5488727241754532],[122,211,70,-0.5513996481895447],[122,211,71,-0.5542764626443386],[122,211,72,-0.557181965559721],[122,211,73,-0.558972891420126],[122,211,74,-0.559431903064251],[122,211,75,-0.5585466586053371],[122,211,76,-0.5561536103487015],[122,211,77,-0.5525593608617783],[122,211,78,-0.548352126032114],[122,211,79,-0.5437773950397968],[122,212,64,-0.5520365312695503],[122,212,65,-0.5518265515565872],[122,212,66,-0.5502231270074844],[122,212,67,-0.5484046824276447],[122,212,68,-0.5477141104638577],[122,212,69,-0.5488727241754532],[122,212,70,-0.5513996481895447],[122,212,71,-0.5542764626443386],[122,212,72,-0.557181965559721],[122,212,73,-0.558972891420126],[122,212,74,-0.559431903064251],[122,212,75,-0.5585466586053371],[122,212,76,-0.5561536103487015],[122,212,77,-0.5525593608617783],[122,212,78,-0.548352126032114],[122,212,79,-0.5437773950397968],[122,213,64,-0.5520365312695503],[122,213,65,-0.5518265515565872],[122,213,66,-0.5502231270074844],[122,213,67,-0.5484046824276447],[122,213,68,-0.5477141104638577],[122,213,69,-0.5488727241754532],[122,213,70,-0.5513996481895447],[122,213,71,-0.5542764626443386],[122,213,72,-0.557181965559721],[122,213,73,-0.558972891420126],[122,213,74,-0.559431903064251],[122,213,75,-0.5585466586053371],[122,213,76,-0.5561536103487015],[122,213,77,-0.5525593608617783],[122,213,78,-0.548352126032114],[122,213,79,-0.5437773950397968],[122,214,64,-0.5520365312695503],[122,214,65,-0.5518265515565872],[122,214,66,-0.5502231270074844],[122,214,67,-0.5484046824276447],[122,214,68,-0.5477141104638577],[122,214,69,-0.5488727241754532],[122,214,70,-0.5513996481895447],[122,214,71,-0.5542764626443386],[122,214,72,-0.557181965559721],[122,214,73,-0.558972891420126],[122,214,74,-0.559431903064251],[122,214,75,-0.5585466586053371],[122,214,76,-0.5561536103487015],[122,214,77,-0.5525593608617783],[122,214,78,-0.548352126032114],[122,214,79,-0.5437773950397968],[122,215,64,-0.5520365312695503],[122,215,65,-0.5518265515565872],[122,215,66,-0.5502231270074844],[122,215,67,-0.5484046824276447],[122,215,68,-0.5477141104638577],[122,215,69,-0.5488727241754532],[122,215,70,-0.5513996481895447],[122,215,71,-0.5542764626443386],[122,215,72,-0.557181965559721],[122,215,73,-0.558972891420126],[122,215,74,-0.559431903064251],[122,215,75,-0.5585466586053371],[122,215,76,-0.5561536103487015],[122,215,77,-0.5525593608617783],[122,215,78,-0.548352126032114],[122,215,79,-0.5437773950397968],[122,216,64,-0.5520365312695503],[122,216,65,-0.5518265515565872],[122,216,66,-0.5502231270074844],[122,216,67,-0.5484046824276447],[122,216,68,-0.5477141104638577],[122,216,69,-0.5488727241754532],[122,216,70,-0.5513996481895447],[122,216,71,-0.5542764626443386],[122,216,72,-0.557181965559721],[122,216,73,-0.558972891420126],[122,216,74,-0.559431903064251],[122,216,75,-0.5585466586053371],[122,216,76,-0.5561536103487015],[122,216,77,-0.5525593608617783],[122,216,78,-0.548352126032114],[122,216,79,-0.5437773950397968],[122,217,64,-0.5520365312695503],[122,217,65,-0.5518265515565872],[122,217,66,-0.5502231270074844],[122,217,67,-0.5484046824276447],[122,217,68,-0.5477141104638577],[122,217,69,-0.5488727241754532],[122,217,70,-0.5513996481895447],[122,217,71,-0.5542764626443386],[122,217,72,-0.557181965559721],[122,217,73,-0.558972891420126],[122,217,74,-0.559431903064251],[122,217,75,-0.5585466586053371],[122,217,76,-0.5561536103487015],[122,217,77,-0.5525593608617783],[122,217,78,-0.548352126032114],[122,217,79,-0.5437773950397968],[122,218,64,-0.5520365312695503],[122,218,65,-0.5518265515565872],[122,218,66,-0.5502231270074844],[122,218,67,-0.5484046824276447],[122,218,68,-0.5477141104638577],[122,218,69,-0.5488727241754532],[122,218,70,-0.5513996481895447],[122,218,71,-0.5542764626443386],[122,218,72,-0.557181965559721],[122,218,73,-0.558972891420126],[122,218,74,-0.559431903064251],[122,218,75,-0.5585466586053371],[122,218,76,-0.5561536103487015],[122,218,77,-0.5525593608617783],[122,218,78,-0.548352126032114],[122,218,79,-0.5437773950397968],[122,219,64,-0.5520365312695503],[122,219,65,-0.5518265515565872],[122,219,66,-0.5502231270074844],[122,219,67,-0.5484046824276447],[122,219,68,-0.5477141104638577],[122,219,69,-0.5488727241754532],[122,219,70,-0.5513996481895447],[122,219,71,-0.5542764626443386],[122,219,72,-0.557181965559721],[122,219,73,-0.558972891420126],[122,219,74,-0.559431903064251],[122,219,75,-0.5585466586053371],[122,219,76,-0.5561536103487015],[122,219,77,-0.5525593608617783],[122,219,78,-0.548352126032114],[122,219,79,-0.5437773950397968],[122,220,64,-0.5520365312695503],[122,220,65,-0.5518265515565872],[122,220,66,-0.5502231270074844],[122,220,67,-0.5484046824276447],[122,220,68,-0.5477141104638577],[122,220,69,-0.5488727241754532],[122,220,70,-0.5513996481895447],[122,220,71,-0.5542764626443386],[122,220,72,-0.557181965559721],[122,220,73,-0.558972891420126],[122,220,74,-0.559431903064251],[122,220,75,-0.5585466586053371],[122,220,76,-0.5561536103487015],[122,220,77,-0.5525593608617783],[122,220,78,-0.548352126032114],[122,220,79,-0.5437773950397968],[122,221,64,-0.5520365312695503],[122,221,65,-0.5518265515565872],[122,221,66,-0.5502231270074844],[122,221,67,-0.5484046824276447],[122,221,68,-0.5477141104638577],[122,221,69,-0.5488727241754532],[122,221,70,-0.5513996481895447],[122,221,71,-0.5542764626443386],[122,221,72,-0.557181965559721],[122,221,73,-0.558972891420126],[122,221,74,-0.559431903064251],[122,221,75,-0.5585466586053371],[122,221,76,-0.5561536103487015],[122,221,77,-0.5525593608617783],[122,221,78,-0.548352126032114],[122,221,79,-0.5437773950397968],[122,222,64,-0.5520365312695503],[122,222,65,-0.5518265515565872],[122,222,66,-0.5502231270074844],[122,222,67,-0.5484046824276447],[122,222,68,-0.5477141104638577],[122,222,69,-0.5488727241754532],[122,222,70,-0.5513996481895447],[122,222,71,-0.5542764626443386],[122,222,72,-0.557181965559721],[122,222,73,-0.558972891420126],[122,222,74,-0.559431903064251],[122,222,75,-0.5585466586053371],[122,222,76,-0.5561536103487015],[122,222,77,-0.5525593608617783],[122,222,78,-0.548352126032114],[122,222,79,-0.5437773950397968],[122,223,64,-0.5520365312695503],[122,223,65,-0.5518265515565872],[122,223,66,-0.5502231270074844],[122,223,67,-0.5484046824276447],[122,223,68,-0.5477141104638577],[122,223,69,-0.5488727241754532],[122,223,70,-0.5513996481895447],[122,223,71,-0.5542764626443386],[122,223,72,-0.557181965559721],[122,223,73,-0.558972891420126],[122,223,74,-0.559431903064251],[122,223,75,-0.5585466586053371],[122,223,76,-0.5561536103487015],[122,223,77,-0.5525593608617783],[122,223,78,-0.548352126032114],[122,223,79,-0.5437773950397968],[122,224,64,-0.5520365312695503],[122,224,65,-0.5518265515565872],[122,224,66,-0.5502231270074844],[122,224,67,-0.5484046824276447],[122,224,68,-0.5477141104638577],[122,224,69,-0.5488727241754532],[122,224,70,-0.5513996481895447],[122,224,71,-0.5542764626443386],[122,224,72,-0.557181965559721],[122,224,73,-0.558972891420126],[122,224,74,-0.559431903064251],[122,224,75,-0.5585466586053371],[122,224,76,-0.5561536103487015],[122,224,77,-0.5525593608617783],[122,224,78,-0.548352126032114],[122,224,79,-0.5437773950397968],[122,225,64,-0.5520365312695503],[122,225,65,-0.5518265515565872],[122,225,66,-0.5502231270074844],[122,225,67,-0.5484046824276447],[122,225,68,-0.5477141104638577],[122,225,69,-0.5488727241754532],[122,225,70,-0.5513996481895447],[122,225,71,-0.5542764626443386],[122,225,72,-0.557181965559721],[122,225,73,-0.558972891420126],[122,225,74,-0.559431903064251],[122,225,75,-0.5585466586053371],[122,225,76,-0.5561536103487015],[122,225,77,-0.5525593608617783],[122,225,78,-0.548352126032114],[122,225,79,-0.5437773950397968],[122,226,64,-0.5520365312695503],[122,226,65,-0.5518265515565872],[122,226,66,-0.5502231270074844],[122,226,67,-0.5484046824276447],[122,226,68,-0.5477141104638577],[122,226,69,-0.5488727241754532],[122,226,70,-0.5513996481895447],[122,226,71,-0.5542764626443386],[122,226,72,-0.557181965559721],[122,226,73,-0.558972891420126],[122,226,74,-0.559431903064251],[122,226,75,-0.5585466586053371],[122,226,76,-0.5561536103487015],[122,226,77,-0.5525593608617783],[122,226,78,-0.548352126032114],[122,226,79,-0.5437773950397968],[122,227,64,-0.5520365312695503],[122,227,65,-0.5518265515565872],[122,227,66,-0.5502231270074844],[122,227,67,-0.5484046824276447],[122,227,68,-0.5477141104638577],[122,227,69,-0.5488727241754532],[122,227,70,-0.5513996481895447],[122,227,71,-0.5542764626443386],[122,227,72,-0.557181965559721],[122,227,73,-0.558972891420126],[122,227,74,-0.559431903064251],[122,227,75,-0.5585466586053371],[122,227,76,-0.5561536103487015],[122,227,77,-0.5525593608617783],[122,227,78,-0.548352126032114],[122,227,79,-0.5437773950397968],[122,228,64,-0.5520365312695503],[122,228,65,-0.5518265515565872],[122,228,66,-0.5502231270074844],[122,228,67,-0.5484046824276447],[122,228,68,-0.5477141104638577],[122,228,69,-0.5488727241754532],[122,228,70,-0.5513996481895447],[122,228,71,-0.5542764626443386],[122,228,72,-0.557181965559721],[122,228,73,-0.558972891420126],[122,228,74,-0.559431903064251],[122,228,75,-0.5585466586053371],[122,228,76,-0.5561536103487015],[122,228,77,-0.5525593608617783],[122,228,78,-0.548352126032114],[122,228,79,-0.5437773950397968],[122,229,64,-0.5520365312695503],[122,229,65,-0.5518265515565872],[122,229,66,-0.5502231270074844],[122,229,67,-0.5484046824276447],[122,229,68,-0.5477141104638577],[122,229,69,-0.5488727241754532],[122,229,70,-0.5513996481895447],[122,229,71,-0.5542764626443386],[122,229,72,-0.557181965559721],[122,229,73,-0.558972891420126],[122,229,74,-0.559431903064251],[122,229,75,-0.5585466586053371],[122,229,76,-0.5561536103487015],[122,229,77,-0.5525593608617783],[122,229,78,-0.548352126032114],[122,229,79,-0.5437773950397968],[122,230,64,-0.5520365312695503],[122,230,65,-0.5518265515565872],[122,230,66,-0.5502231270074844],[122,230,67,-0.5484046824276447],[122,230,68,-0.5477141104638577],[122,230,69,-0.5488727241754532],[122,230,70,-0.5513996481895447],[122,230,71,-0.5542764626443386],[122,230,72,-0.557181965559721],[122,230,73,-0.558972891420126],[122,230,74,-0.559431903064251],[122,230,75,-0.5585466586053371],[122,230,76,-0.5561536103487015],[122,230,77,-0.5525593608617783],[122,230,78,-0.548352126032114],[122,230,79,-0.5437773950397968],[122,231,64,-0.5520365312695503],[122,231,65,-0.5518265515565872],[122,231,66,-0.5502231270074844],[122,231,67,-0.5484046824276447],[122,231,68,-0.5477141104638577],[122,231,69,-0.5488727241754532],[122,231,70,-0.5513996481895447],[122,231,71,-0.5542764626443386],[122,231,72,-0.557181965559721],[122,231,73,-0.558972891420126],[122,231,74,-0.559431903064251],[122,231,75,-0.5585466586053371],[122,231,76,-0.5561536103487015],[122,231,77,-0.5525593608617783],[122,231,78,-0.548352126032114],[122,231,79,-0.5437773950397968],[122,232,64,-0.5520365312695503],[122,232,65,-0.5518265515565872],[122,232,66,-0.5502231270074844],[122,232,67,-0.5484046824276447],[122,232,68,-0.5477141104638577],[122,232,69,-0.5488727241754532],[122,232,70,-0.5513996481895447],[122,232,71,-0.5542764626443386],[122,232,72,-0.557181965559721],[122,232,73,-0.558972891420126],[122,232,74,-0.559431903064251],[122,232,75,-0.5585466586053371],[122,232,76,-0.5561536103487015],[122,232,77,-0.5525593608617783],[122,232,78,-0.548352126032114],[122,232,79,-0.5437773950397968],[122,233,64,-0.5520365312695503],[122,233,65,-0.5518265515565872],[122,233,66,-0.5502231270074844],[122,233,67,-0.5484046824276447],[122,233,68,-0.5477141104638577],[122,233,69,-0.5488727241754532],[122,233,70,-0.5513996481895447],[122,233,71,-0.5542764626443386],[122,233,72,-0.557181965559721],[122,233,73,-0.558972891420126],[122,233,74,-0.559431903064251],[122,233,75,-0.5585466586053371],[122,233,76,-0.5561536103487015],[122,233,77,-0.5525593608617783],[122,233,78,-0.548352126032114],[122,233,79,-0.5437773950397968],[122,234,64,-0.5520365312695503],[122,234,65,-0.5518265515565872],[122,234,66,-0.5502231270074844],[122,234,67,-0.5484046824276447],[122,234,68,-0.5477141104638577],[122,234,69,-0.5488727241754532],[122,234,70,-0.5513996481895447],[122,234,71,-0.5542764626443386],[122,234,72,-0.557181965559721],[122,234,73,-0.558972891420126],[122,234,74,-0.559431903064251],[122,234,75,-0.5585466586053371],[122,234,76,-0.5561536103487015],[122,234,77,-0.5525593608617783],[122,234,78,-0.548352126032114],[122,234,79,-0.5437773950397968],[122,235,64,-0.5520365312695503],[122,235,65,-0.5518265515565872],[122,235,66,-0.5502231270074844],[122,235,67,-0.5484046824276447],[122,235,68,-0.5477141104638577],[122,235,69,-0.5488727241754532],[122,235,70,-0.5513996481895447],[122,235,71,-0.5542764626443386],[122,235,72,-0.557181965559721],[122,235,73,-0.558972891420126],[122,235,74,-0.559431903064251],[122,235,75,-0.5585466586053371],[122,235,76,-0.5561536103487015],[122,235,77,-0.5525593608617783],[122,235,78,-0.548352126032114],[122,235,79,-0.5437773950397968],[122,236,64,-0.5520365312695503],[122,236,65,-0.5518265515565872],[122,236,66,-0.5502231270074844],[122,236,67,-0.5484046824276447],[122,236,68,-0.5477141104638577],[122,236,69,-0.5488727241754532],[122,236,70,-0.5513996481895447],[122,236,71,-0.5542764626443386],[122,236,72,-0.557181965559721],[122,236,73,-0.558972891420126],[122,236,74,-0.559431903064251],[122,236,75,-0.5585466586053371],[122,236,76,-0.5561536103487015],[122,236,77,-0.5525593608617783],[122,236,78,-0.548352126032114],[122,236,79,-0.5437773950397968],[122,237,64,-0.5520365312695503],[122,237,65,-0.5518265515565872],[122,237,66,-0.5502231270074844],[122,237,67,-0.5484046824276447],[122,237,68,-0.5477141104638577],[122,237,69,-0.5488727241754532],[122,237,70,-0.5513996481895447],[122,237,71,-0.5542764626443386],[122,237,72,-0.557181965559721],[122,237,73,-0.558972891420126],[122,237,74,-0.559431903064251],[122,237,75,-0.5585466586053371],[122,237,76,-0.5561536103487015],[122,237,77,-0.5525593608617783],[122,237,78,-0.548352126032114],[122,237,79,-0.5437773950397968],[122,238,64,-0.5520365312695503],[122,238,65,-0.5518265515565872],[122,238,66,-0.5502231270074844],[122,238,67,-0.5484046824276447],[122,238,68,-0.5477141104638577],[122,238,69,-0.5488727241754532],[122,238,70,-0.5513996481895447],[122,238,71,-0.5542764626443386],[122,238,72,-0.557181965559721],[122,238,73,-0.558972891420126],[122,238,74,-0.559431903064251],[122,238,75,-0.5585466586053371],[122,238,76,-0.5561536103487015],[122,238,77,-0.5525593608617783],[122,238,78,-0.548352126032114],[122,238,79,-0.5437773950397968],[122,239,64,-0.5520365312695503],[122,239,65,-0.5518265515565872],[122,239,66,-0.5502231270074844],[122,239,67,-0.5484046824276447],[122,239,68,-0.5477141104638577],[122,239,69,-0.5488727241754532],[122,239,70,-0.5513996481895447],[122,239,71,-0.5542764626443386],[122,239,72,-0.557181965559721],[122,239,73,-0.558972891420126],[122,239,74,-0.559431903064251],[122,239,75,-0.5585466586053371],[122,239,76,-0.5561536103487015],[122,239,77,-0.5525593608617783],[122,239,78,-0.548352126032114],[122,239,79,-0.5437773950397968],[122,240,64,-0.5520365312695503],[122,240,65,-0.5518265515565872],[122,240,66,-0.5502231270074844],[122,240,67,-0.5484046824276447],[122,240,68,-0.5477141104638577],[122,240,69,-0.5488727241754532],[122,240,70,-0.5513996481895447],[122,240,71,-0.5542764626443386],[122,240,72,-0.557181965559721],[122,240,73,-0.558972891420126],[122,240,74,-0.559431903064251],[122,240,75,-0.5585466586053371],[122,240,76,-0.5561536103487015],[122,240,77,-0.5525593608617783],[122,240,78,-0.548352126032114],[122,240,79,-0.5437773950397968],[122,241,64,-0.5520365312695503],[122,241,65,-0.5518265515565872],[122,241,66,-0.5502231270074844],[122,241,67,-0.5484046824276447],[122,241,68,-0.5477141104638577],[122,241,69,-0.5488727241754532],[122,241,70,-0.5513996481895447],[122,241,71,-0.5542764626443386],[122,241,72,-0.557181965559721],[122,241,73,-0.558972891420126],[122,241,74,-0.559431903064251],[122,241,75,-0.5585466586053371],[122,241,76,-0.5561536103487015],[122,241,77,-0.5525593608617783],[122,241,78,-0.548352126032114],[122,241,79,-0.5437773950397968],[122,242,64,-0.5520365312695503],[122,242,65,-0.5518265515565872],[122,242,66,-0.5502231270074844],[122,242,67,-0.5484046824276447],[122,242,68,-0.5477141104638577],[122,242,69,-0.5488727241754532],[122,242,70,-0.5513996481895447],[122,242,71,-0.5542764626443386],[122,242,72,-0.557181965559721],[122,242,73,-0.558972891420126],[122,242,74,-0.559431903064251],[122,242,75,-0.5585466586053371],[122,242,76,-0.5561536103487015],[122,242,77,-0.5525593608617783],[122,242,78,-0.548352126032114],[122,242,79,-0.5437773950397968],[122,243,64,-0.5520365312695503],[122,243,65,-0.5518265515565872],[122,243,66,-0.5502231270074844],[122,243,67,-0.5484046824276447],[122,243,68,-0.5477141104638577],[122,243,69,-0.5488727241754532],[122,243,70,-0.5513996481895447],[122,243,71,-0.5542764626443386],[122,243,72,-0.557181965559721],[122,243,73,-0.558972891420126],[122,243,74,-0.559431903064251],[122,243,75,-0.5585466586053371],[122,243,76,-0.5561536103487015],[122,243,77,-0.5525593608617783],[122,243,78,-0.548352126032114],[122,243,79,-0.5437773950397968],[122,244,64,-0.5520365312695503],[122,244,65,-0.5518265515565872],[122,244,66,-0.5502231270074844],[122,244,67,-0.5484046824276447],[122,244,68,-0.5477141104638577],[122,244,69,-0.5488727241754532],[122,244,70,-0.5513996481895447],[122,244,71,-0.5542764626443386],[122,244,72,-0.557181965559721],[122,244,73,-0.558972891420126],[122,244,74,-0.559431903064251],[122,244,75,-0.5585466586053371],[122,244,76,-0.5561536103487015],[122,244,77,-0.5525593608617783],[122,244,78,-0.548352126032114],[122,244,79,-0.5437773950397968],[122,245,64,-0.5520365312695503],[122,245,65,-0.5518265515565872],[122,245,66,-0.5502231270074844],[122,245,67,-0.5484046824276447],[122,245,68,-0.5477141104638577],[122,245,69,-0.5488727241754532],[122,245,70,-0.5513996481895447],[122,245,71,-0.5542764626443386],[122,245,72,-0.557181965559721],[122,245,73,-0.558972891420126],[122,245,74,-0.559431903064251],[122,245,75,-0.5585466586053371],[122,245,76,-0.5561536103487015],[122,245,77,-0.5525593608617783],[122,245,78,-0.548352126032114],[122,245,79,-0.5437773950397968],[122,246,64,-0.5520365312695503],[122,246,65,-0.5518265515565872],[122,246,66,-0.5502231270074844],[122,246,67,-0.5484046824276447],[122,246,68,-0.5477141104638577],[122,246,69,-0.5488727241754532],[122,246,70,-0.5513996481895447],[122,246,71,-0.5542764626443386],[122,246,72,-0.557181965559721],[122,246,73,-0.558972891420126],[122,246,74,-0.559431903064251],[122,246,75,-0.5585466586053371],[122,246,76,-0.5561536103487015],[122,246,77,-0.5525593608617783],[122,246,78,-0.548352126032114],[122,246,79,-0.5437773950397968],[122,247,64,-0.5520365312695503],[122,247,65,-0.5518265515565872],[122,247,66,-0.5502231270074844],[122,247,67,-0.5484046824276447],[122,247,68,-0.5477141104638577],[122,247,69,-0.5488727241754532],[122,247,70,-0.5513996481895447],[122,247,71,-0.5542764626443386],[122,247,72,-0.557181965559721],[122,247,73,-0.558972891420126],[122,247,74,-0.559431903064251],[122,247,75,-0.5585466586053371],[122,247,76,-0.5561536103487015],[122,247,77,-0.5525593608617783],[122,247,78,-0.548352126032114],[122,247,79,-0.5437773950397968],[122,248,64,-0.5520365312695503],[122,248,65,-0.5518265515565872],[122,248,66,-0.5502231270074844],[122,248,67,-0.5484046824276447],[122,248,68,-0.5477141104638577],[122,248,69,-0.5488727241754532],[122,248,70,-0.5513996481895447],[122,248,71,-0.5542764626443386],[122,248,72,-0.557181965559721],[122,248,73,-0.558972891420126],[122,248,74,-0.559431903064251],[122,248,75,-0.5585466586053371],[122,248,76,-0.5561536103487015],[122,248,77,-0.5525593608617783],[122,248,78,-0.548352126032114],[122,248,79,-0.5437773950397968],[122,249,64,-0.5520365312695503],[122,249,65,-0.5518265515565872],[122,249,66,-0.5502231270074844],[122,249,67,-0.5484046824276447],[122,249,68,-0.5477141104638577],[122,249,69,-0.5488727241754532],[122,249,70,-0.5513996481895447],[122,249,71,-0.5542764626443386],[122,249,72,-0.557181965559721],[122,249,73,-0.558972891420126],[122,249,74,-0.559431903064251],[122,249,75,-0.5585466586053371],[122,249,76,-0.5561536103487015],[122,249,77,-0.5525593608617783],[122,249,78,-0.548352126032114],[122,249,79,-0.5437773950397968],[122,250,64,-0.5520365312695503],[122,250,65,-0.5518265515565872],[122,250,66,-0.5502231270074844],[122,250,67,-0.5484046824276447],[122,250,68,-0.5477141104638577],[122,250,69,-0.5488727241754532],[122,250,70,-0.5513996481895447],[122,250,71,-0.5542764626443386],[122,250,72,-0.557181965559721],[122,250,73,-0.558972891420126],[122,250,74,-0.559431903064251],[122,250,75,-0.5585466586053371],[122,250,76,-0.5561536103487015],[122,250,77,-0.5525593608617783],[122,250,78,-0.548352126032114],[122,250,79,-0.5437773950397968],[122,251,64,-0.5520365312695503],[122,251,65,-0.5518265515565872],[122,251,66,-0.5502231270074844],[122,251,67,-0.5484046824276447],[122,251,68,-0.5477141104638577],[122,251,69,-0.5488727241754532],[122,251,70,-0.5513996481895447],[122,251,71,-0.5542764626443386],[122,251,72,-0.557181965559721],[122,251,73,-0.558972891420126],[122,251,74,-0.559431903064251],[122,251,75,-0.5585466586053371],[122,251,76,-0.5561536103487015],[122,251,77,-0.5525593608617783],[122,251,78,-0.548352126032114],[122,251,79,-0.5437773950397968],[122,252,64,-0.5520365312695503],[122,252,65,-0.5518265515565872],[122,252,66,-0.5502231270074844],[122,252,67,-0.5484046824276447],[122,252,68,-0.5477141104638577],[122,252,69,-0.5488727241754532],[122,252,70,-0.5513996481895447],[122,252,71,-0.5542764626443386],[122,252,72,-0.557181965559721],[122,252,73,-0.558972891420126],[122,252,74,-0.559431903064251],[122,252,75,-0.5585466586053371],[122,252,76,-0.5561536103487015],[122,252,77,-0.5525593608617783],[122,252,78,-0.548352126032114],[122,252,79,-0.5437773950397968],[122,253,64,-0.5520365312695503],[122,253,65,-0.5518265515565872],[122,253,66,-0.5502231270074844],[122,253,67,-0.5484046824276447],[122,253,68,-0.5477141104638577],[122,253,69,-0.5488727241754532],[122,253,70,-0.5513996481895447],[122,253,71,-0.5542764626443386],[122,253,72,-0.557181965559721],[122,253,73,-0.558972891420126],[122,253,74,-0.559431903064251],[122,253,75,-0.5585466586053371],[122,253,76,-0.5561536103487015],[122,253,77,-0.5525593608617783],[122,253,78,-0.548352126032114],[122,253,79,-0.5437773950397968],[122,254,64,-0.5520365312695503],[122,254,65,-0.5518265515565872],[122,254,66,-0.5502231270074844],[122,254,67,-0.5484046824276447],[122,254,68,-0.5477141104638577],[122,254,69,-0.5488727241754532],[122,254,70,-0.5513996481895447],[122,254,71,-0.5542764626443386],[122,254,72,-0.557181965559721],[122,254,73,-0.558972891420126],[122,254,74,-0.559431903064251],[122,254,75,-0.5585466586053371],[122,254,76,-0.5561536103487015],[122,254,77,-0.5525593608617783],[122,254,78,-0.548352126032114],[122,254,79,-0.5437773950397968],[122,255,64,-0.5520365312695503],[122,255,65,-0.5518265515565872],[122,255,66,-0.5502231270074844],[122,255,67,-0.5484046824276447],[122,255,68,-0.5477141104638577],[122,255,69,-0.5488727241754532],[122,255,70,-0.5513996481895447],[122,255,71,-0.5542764626443386],[122,255,72,-0.557181965559721],[122,255,73,-0.558972891420126],[122,255,74,-0.559431903064251],[122,255,75,-0.5585466586053371],[122,255,76,-0.5561536103487015],[122,255,77,-0.5525593608617783],[122,255,78,-0.548352126032114],[122,255,79,-0.5437773950397968],[122,256,64,-0.5520365312695503],[122,256,65,-0.5518265515565872],[122,256,66,-0.5502231270074844],[122,256,67,-0.5484046824276447],[122,256,68,-0.5477141104638577],[122,256,69,-0.5488727241754532],[122,256,70,-0.5513996481895447],[122,256,71,-0.5542764626443386],[122,256,72,-0.557181965559721],[122,256,73,-0.558972891420126],[122,256,74,-0.559431903064251],[122,256,75,-0.5585466586053371],[122,256,76,-0.5561536103487015],[122,256,77,-0.5525593608617783],[122,256,78,-0.548352126032114],[122,256,79,-0.5437773950397968],[122,257,64,-0.5520365312695503],[122,257,65,-0.5518265515565872],[122,257,66,-0.5502231270074844],[122,257,67,-0.5484046824276447],[122,257,68,-0.5477141104638577],[122,257,69,-0.5488727241754532],[122,257,70,-0.5513996481895447],[122,257,71,-0.5542764626443386],[122,257,72,-0.557181965559721],[122,257,73,-0.558972891420126],[122,257,74,-0.559431903064251],[122,257,75,-0.5585466586053371],[122,257,76,-0.5561536103487015],[122,257,77,-0.5525593608617783],[122,257,78,-0.548352126032114],[122,257,79,-0.5437773950397968],[122,258,64,-0.5520365312695503],[122,258,65,-0.5518265515565872],[122,258,66,-0.5502231270074844],[122,258,67,-0.5484046824276447],[122,258,68,-0.5477141104638577],[122,258,69,-0.5488727241754532],[122,258,70,-0.5513996481895447],[122,258,71,-0.5542764626443386],[122,258,72,-0.557181965559721],[122,258,73,-0.558972891420126],[122,258,74,-0.559431903064251],[122,258,75,-0.5585466586053371],[122,258,76,-0.5561536103487015],[122,258,77,-0.5525593608617783],[122,258,78,-0.548352126032114],[122,258,79,-0.5437773950397968],[122,259,64,-0.5520365312695503],[122,259,65,-0.5518265515565872],[122,259,66,-0.5502231270074844],[122,259,67,-0.5484046824276447],[122,259,68,-0.5477141104638577],[122,259,69,-0.5488727241754532],[122,259,70,-0.5513996481895447],[122,259,71,-0.5542764626443386],[122,259,72,-0.557181965559721],[122,259,73,-0.558972891420126],[122,259,74,-0.559431903064251],[122,259,75,-0.5585466586053371],[122,259,76,-0.5561536103487015],[122,259,77,-0.5525593608617783],[122,259,78,-0.548352126032114],[122,259,79,-0.5437773950397968],[122,260,64,-0.5520365312695503],[122,260,65,-0.5518265515565872],[122,260,66,-0.5502231270074844],[122,260,67,-0.5484046824276447],[122,260,68,-0.5477141104638577],[122,260,69,-0.5488727241754532],[122,260,70,-0.5513996481895447],[122,260,71,-0.5542764626443386],[122,260,72,-0.557181965559721],[122,260,73,-0.558972891420126],[122,260,74,-0.559431903064251],[122,260,75,-0.5585466586053371],[122,260,76,-0.5561536103487015],[122,260,77,-0.5525593608617783],[122,260,78,-0.548352126032114],[122,260,79,-0.5437773950397968],[122,261,64,-0.5520365312695503],[122,261,65,-0.5518265515565872],[122,261,66,-0.5502231270074844],[122,261,67,-0.5484046824276447],[122,261,68,-0.5477141104638577],[122,261,69,-0.5488727241754532],[122,261,70,-0.5513996481895447],[122,261,71,-0.5542764626443386],[122,261,72,-0.557181965559721],[122,261,73,-0.558972891420126],[122,261,74,-0.559431903064251],[122,261,75,-0.5585466586053371],[122,261,76,-0.5561536103487015],[122,261,77,-0.5525593608617783],[122,261,78,-0.548352126032114],[122,261,79,-0.5437773950397968],[122,262,64,-0.5520365312695503],[122,262,65,-0.5518265515565872],[122,262,66,-0.5502231270074844],[122,262,67,-0.5484046824276447],[122,262,68,-0.5477141104638577],[122,262,69,-0.5488727241754532],[122,262,70,-0.5513996481895447],[122,262,71,-0.5542764626443386],[122,262,72,-0.557181965559721],[122,262,73,-0.558972891420126],[122,262,74,-0.559431903064251],[122,262,75,-0.5585466586053371],[122,262,76,-0.5561536103487015],[122,262,77,-0.5525593608617783],[122,262,78,-0.548352126032114],[122,262,79,-0.5437773950397968],[122,263,64,-0.5520365312695503],[122,263,65,-0.5518265515565872],[122,263,66,-0.5502231270074844],[122,263,67,-0.5484046824276447],[122,263,68,-0.5477141104638577],[122,263,69,-0.5488727241754532],[122,263,70,-0.5513996481895447],[122,263,71,-0.5542764626443386],[122,263,72,-0.557181965559721],[122,263,73,-0.558972891420126],[122,263,74,-0.559431903064251],[122,263,75,-0.5585466586053371],[122,263,76,-0.5561536103487015],[122,263,77,-0.5525593608617783],[122,263,78,-0.548352126032114],[122,263,79,-0.5437773950397968],[122,264,64,-0.5520365312695503],[122,264,65,-0.5518265515565872],[122,264,66,-0.5502231270074844],[122,264,67,-0.5484046824276447],[122,264,68,-0.5477141104638577],[122,264,69,-0.5488727241754532],[122,264,70,-0.5513996481895447],[122,264,71,-0.5542764626443386],[122,264,72,-0.557181965559721],[122,264,73,-0.558972891420126],[122,264,74,-0.559431903064251],[122,264,75,-0.5585466586053371],[122,264,76,-0.5561536103487015],[122,264,77,-0.5525593608617783],[122,264,78,-0.548352126032114],[122,264,79,-0.5437773950397968],[122,265,64,-0.5520365312695503],[122,265,65,-0.5518265515565872],[122,265,66,-0.5502231270074844],[122,265,67,-0.5484046824276447],[122,265,68,-0.5477141104638577],[122,265,69,-0.5488727241754532],[122,265,70,-0.5513996481895447],[122,265,71,-0.5542764626443386],[122,265,72,-0.557181965559721],[122,265,73,-0.558972891420126],[122,265,74,-0.559431903064251],[122,265,75,-0.5585466586053371],[122,265,76,-0.5561536103487015],[122,265,77,-0.5525593608617783],[122,265,78,-0.548352126032114],[122,265,79,-0.5437773950397968],[122,266,64,-0.5520365312695503],[122,266,65,-0.5518265515565872],[122,266,66,-0.5502231270074844],[122,266,67,-0.5484046824276447],[122,266,68,-0.5477141104638577],[122,266,69,-0.5488727241754532],[122,266,70,-0.5513996481895447],[122,266,71,-0.5542764626443386],[122,266,72,-0.557181965559721],[122,266,73,-0.558972891420126],[122,266,74,-0.559431903064251],[122,266,75,-0.5585466586053371],[122,266,76,-0.5561536103487015],[122,266,77,-0.5525593608617783],[122,266,78,-0.548352126032114],[122,266,79,-0.5437773950397968],[122,267,64,-0.5520365312695503],[122,267,65,-0.5518265515565872],[122,267,66,-0.5502231270074844],[122,267,67,-0.5484046824276447],[122,267,68,-0.5477141104638577],[122,267,69,-0.5488727241754532],[122,267,70,-0.5513996481895447],[122,267,71,-0.5542764626443386],[122,267,72,-0.557181965559721],[122,267,73,-0.558972891420126],[122,267,74,-0.559431903064251],[122,267,75,-0.5585466586053371],[122,267,76,-0.5561536103487015],[122,267,77,-0.5525593608617783],[122,267,78,-0.548352126032114],[122,267,79,-0.5437773950397968],[122,268,64,-0.5520365312695503],[122,268,65,-0.5518265515565872],[122,268,66,-0.5502231270074844],[122,268,67,-0.5484046824276447],[122,268,68,-0.5477141104638577],[122,268,69,-0.5488727241754532],[122,268,70,-0.5513996481895447],[122,268,71,-0.5542764626443386],[122,268,72,-0.557181965559721],[122,268,73,-0.558972891420126],[122,268,74,-0.559431903064251],[122,268,75,-0.5585466586053371],[122,268,76,-0.5561536103487015],[122,268,77,-0.5525593608617783],[122,268,78,-0.548352126032114],[122,268,79,-0.5437773950397968],[122,269,64,-0.5520365312695503],[122,269,65,-0.5518265515565872],[122,269,66,-0.5502231270074844],[122,269,67,-0.5484046824276447],[122,269,68,-0.5477141104638577],[122,269,69,-0.5488727241754532],[122,269,70,-0.5513996481895447],[122,269,71,-0.5542764626443386],[122,269,72,-0.557181965559721],[122,269,73,-0.558972891420126],[122,269,74,-0.559431903064251],[122,269,75,-0.5585466586053371],[122,269,76,-0.5561536103487015],[122,269,77,-0.5525593608617783],[122,269,78,-0.548352126032114],[122,269,79,-0.5437773950397968],[122,270,64,-0.5520365312695503],[122,270,65,-0.5518265515565872],[122,270,66,-0.5502231270074844],[122,270,67,-0.5484046824276447],[122,270,68,-0.5477141104638577],[122,270,69,-0.5488727241754532],[122,270,70,-0.5513996481895447],[122,270,71,-0.5542764626443386],[122,270,72,-0.557181965559721],[122,270,73,-0.558972891420126],[122,270,74,-0.559431903064251],[122,270,75,-0.5585466586053371],[122,270,76,-0.5561536103487015],[122,270,77,-0.5525593608617783],[122,270,78,-0.548352126032114],[122,270,79,-0.5437773950397968],[122,271,64,-0.5520365312695503],[122,271,65,-0.5518265515565872],[122,271,66,-0.5502231270074844],[122,271,67,-0.5484046824276447],[122,271,68,-0.5477141104638577],[122,271,69,-0.5488727241754532],[122,271,70,-0.5513996481895447],[122,271,71,-0.5542764626443386],[122,271,72,-0.557181965559721],[122,271,73,-0.558972891420126],[122,271,74,-0.559431903064251],[122,271,75,-0.5585466586053371],[122,271,76,-0.5561536103487015],[122,271,77,-0.5525593608617783],[122,271,78,-0.548352126032114],[122,271,79,-0.5437773950397968],[122,272,64,-0.5520365312695503],[122,272,65,-0.5518265515565872],[122,272,66,-0.5502231270074844],[122,272,67,-0.5484046824276447],[122,272,68,-0.5477141104638577],[122,272,69,-0.5488727241754532],[122,272,70,-0.5513996481895447],[122,272,71,-0.5542764626443386],[122,272,72,-0.557181965559721],[122,272,73,-0.558972891420126],[122,272,74,-0.559431903064251],[122,272,75,-0.5585466586053371],[122,272,76,-0.5561536103487015],[122,272,77,-0.5525593608617783],[122,272,78,-0.548352126032114],[122,272,79,-0.5437773950397968],[122,273,64,-0.5520365312695503],[122,273,65,-0.5518265515565872],[122,273,66,-0.5502231270074844],[122,273,67,-0.5484046824276447],[122,273,68,-0.5477141104638577],[122,273,69,-0.5488727241754532],[122,273,70,-0.5513996481895447],[122,273,71,-0.5542764626443386],[122,273,72,-0.557181965559721],[122,273,73,-0.558972891420126],[122,273,74,-0.559431903064251],[122,273,75,-0.5585466586053371],[122,273,76,-0.5561536103487015],[122,273,77,-0.5525593608617783],[122,273,78,-0.548352126032114],[122,273,79,-0.5437773950397968],[122,274,64,-0.5520365312695503],[122,274,65,-0.5518265515565872],[122,274,66,-0.5502231270074844],[122,274,67,-0.5484046824276447],[122,274,68,-0.5477141104638577],[122,274,69,-0.5488727241754532],[122,274,70,-0.5513996481895447],[122,274,71,-0.5542764626443386],[122,274,72,-0.557181965559721],[122,274,73,-0.558972891420126],[122,274,74,-0.559431903064251],[122,274,75,-0.5585466586053371],[122,274,76,-0.5561536103487015],[122,274,77,-0.5525593608617783],[122,274,78,-0.548352126032114],[122,274,79,-0.5437773950397968],[122,275,64,-0.5520365312695503],[122,275,65,-0.5518265515565872],[122,275,66,-0.5502231270074844],[122,275,67,-0.5484046824276447],[122,275,68,-0.5477141104638577],[122,275,69,-0.5488727241754532],[122,275,70,-0.5513996481895447],[122,275,71,-0.5542764626443386],[122,275,72,-0.557181965559721],[122,275,73,-0.558972891420126],[122,275,74,-0.559431903064251],[122,275,75,-0.5585466586053371],[122,275,76,-0.5561536103487015],[122,275,77,-0.5525593608617783],[122,275,78,-0.548352126032114],[122,275,79,-0.5437773950397968],[122,276,64,-0.5520365312695503],[122,276,65,-0.5518265515565872],[122,276,66,-0.5502231270074844],[122,276,67,-0.5484046824276447],[122,276,68,-0.5477141104638577],[122,276,69,-0.5488727241754532],[122,276,70,-0.5513996481895447],[122,276,71,-0.5542764626443386],[122,276,72,-0.557181965559721],[122,276,73,-0.558972891420126],[122,276,74,-0.559431903064251],[122,276,75,-0.5585466586053371],[122,276,76,-0.5561536103487015],[122,276,77,-0.5525593608617783],[122,276,78,-0.548352126032114],[122,276,79,-0.5437773950397968],[122,277,64,-0.5520365312695503],[122,277,65,-0.5518265515565872],[122,277,66,-0.5502231270074844],[122,277,67,-0.5484046824276447],[122,277,68,-0.5477141104638577],[122,277,69,-0.5488727241754532],[122,277,70,-0.5513996481895447],[122,277,71,-0.5542764626443386],[122,277,72,-0.557181965559721],[122,277,73,-0.558972891420126],[122,277,74,-0.559431903064251],[122,277,75,-0.5585466586053371],[122,277,76,-0.5561536103487015],[122,277,77,-0.5525593608617783],[122,277,78,-0.548352126032114],[122,277,79,-0.5437773950397968],[122,278,64,-0.5520365312695503],[122,278,65,-0.5518265515565872],[122,278,66,-0.5502231270074844],[122,278,67,-0.5484046824276447],[122,278,68,-0.5477141104638577],[122,278,69,-0.5488727241754532],[122,278,70,-0.5513996481895447],[122,278,71,-0.5542764626443386],[122,278,72,-0.557181965559721],[122,278,73,-0.558972891420126],[122,278,74,-0.559431903064251],[122,278,75,-0.5585466586053371],[122,278,76,-0.5561536103487015],[122,278,77,-0.5525593608617783],[122,278,78,-0.548352126032114],[122,278,79,-0.5437773950397968],[122,279,64,-0.5520365312695503],[122,279,65,-0.5518265515565872],[122,279,66,-0.5502231270074844],[122,279,67,-0.5484046824276447],[122,279,68,-0.5477141104638577],[122,279,69,-0.5488727241754532],[122,279,70,-0.5513996481895447],[122,279,71,-0.5542764626443386],[122,279,72,-0.557181965559721],[122,279,73,-0.558972891420126],[122,279,74,-0.559431903064251],[122,279,75,-0.5585466586053371],[122,279,76,-0.5561536103487015],[122,279,77,-0.5525593608617783],[122,279,78,-0.548352126032114],[122,279,79,-0.5437773950397968],[122,280,64,-0.5520365312695503],[122,280,65,-0.5518265515565872],[122,280,66,-0.5502231270074844],[122,280,67,-0.5484046824276447],[122,280,68,-0.5477141104638577],[122,280,69,-0.5488727241754532],[122,280,70,-0.5513996481895447],[122,280,71,-0.5542764626443386],[122,280,72,-0.557181965559721],[122,280,73,-0.558972891420126],[122,280,74,-0.559431903064251],[122,280,75,-0.5585466586053371],[122,280,76,-0.5561536103487015],[122,280,77,-0.5525593608617783],[122,280,78,-0.548352126032114],[122,280,79,-0.5437773950397968],[122,281,64,-0.5520365312695503],[122,281,65,-0.5518265515565872],[122,281,66,-0.5502231270074844],[122,281,67,-0.5484046824276447],[122,281,68,-0.5477141104638577],[122,281,69,-0.5488727241754532],[122,281,70,-0.5513996481895447],[122,281,71,-0.5542764626443386],[122,281,72,-0.557181965559721],[122,281,73,-0.558972891420126],[122,281,74,-0.559431903064251],[122,281,75,-0.5585466586053371],[122,281,76,-0.5561536103487015],[122,281,77,-0.5525593608617783],[122,281,78,-0.548352126032114],[122,281,79,-0.5437773950397968],[122,282,64,-0.5520365312695503],[122,282,65,-0.5518265515565872],[122,282,66,-0.5502231270074844],[122,282,67,-0.5484046824276447],[122,282,68,-0.5477141104638577],[122,282,69,-0.5488727241754532],[122,282,70,-0.5513996481895447],[122,282,71,-0.5542764626443386],[122,282,72,-0.557181965559721],[122,282,73,-0.558972891420126],[122,282,74,-0.559431903064251],[122,282,75,-0.5585466586053371],[122,282,76,-0.5561536103487015],[122,282,77,-0.5525593608617783],[122,282,78,-0.548352126032114],[122,282,79,-0.5437773950397968],[122,283,64,-0.5520365312695503],[122,283,65,-0.5518265515565872],[122,283,66,-0.5502231270074844],[122,283,67,-0.5484046824276447],[122,283,68,-0.5477141104638577],[122,283,69,-0.5488727241754532],[122,283,70,-0.5513996481895447],[122,283,71,-0.5542764626443386],[122,283,72,-0.557181965559721],[122,283,73,-0.558972891420126],[122,283,74,-0.559431903064251],[122,283,75,-0.5585466586053371],[122,283,76,-0.5561536103487015],[122,283,77,-0.5525593608617783],[122,283,78,-0.548352126032114],[122,283,79,-0.5437773950397968],[122,284,64,-0.5520365312695503],[122,284,65,-0.5518265515565872],[122,284,66,-0.5502231270074844],[122,284,67,-0.5484046824276447],[122,284,68,-0.5477141104638577],[122,284,69,-0.5488727241754532],[122,284,70,-0.5513996481895447],[122,284,71,-0.5542764626443386],[122,284,72,-0.557181965559721],[122,284,73,-0.558972891420126],[122,284,74,-0.559431903064251],[122,284,75,-0.5585466586053371],[122,284,76,-0.5561536103487015],[122,284,77,-0.5525593608617783],[122,284,78,-0.548352126032114],[122,284,79,-0.5437773950397968],[122,285,64,-0.5520365312695503],[122,285,65,-0.5518265515565872],[122,285,66,-0.5502231270074844],[122,285,67,-0.5484046824276447],[122,285,68,-0.5477141104638577],[122,285,69,-0.5488727241754532],[122,285,70,-0.5513996481895447],[122,285,71,-0.5542764626443386],[122,285,72,-0.557181965559721],[122,285,73,-0.558972891420126],[122,285,74,-0.559431903064251],[122,285,75,-0.5585466586053371],[122,285,76,-0.5561536103487015],[122,285,77,-0.5525593608617783],[122,285,78,-0.548352126032114],[122,285,79,-0.5437773950397968],[122,286,64,-0.5520365312695503],[122,286,65,-0.5518265515565872],[122,286,66,-0.5502231270074844],[122,286,67,-0.5484046824276447],[122,286,68,-0.5477141104638577],[122,286,69,-0.5488727241754532],[122,286,70,-0.5513996481895447],[122,286,71,-0.5542764626443386],[122,286,72,-0.557181965559721],[122,286,73,-0.558972891420126],[122,286,74,-0.559431903064251],[122,286,75,-0.5585466586053371],[122,286,76,-0.5561536103487015],[122,286,77,-0.5525593608617783],[122,286,78,-0.548352126032114],[122,286,79,-0.5437773950397968],[122,287,64,-0.5520365312695503],[122,287,65,-0.5518265515565872],[122,287,66,-0.5502231270074844],[122,287,67,-0.5484046824276447],[122,287,68,-0.5477141104638577],[122,287,69,-0.5488727241754532],[122,287,70,-0.5513996481895447],[122,287,71,-0.5542764626443386],[122,287,72,-0.557181965559721],[122,287,73,-0.558972891420126],[122,287,74,-0.559431903064251],[122,287,75,-0.5585466586053371],[122,287,76,-0.5561536103487015],[122,287,77,-0.5525593608617783],[122,287,78,-0.548352126032114],[122,287,79,-0.5437773950397968],[122,288,64,-0.5520365312695503],[122,288,65,-0.5518265515565872],[122,288,66,-0.5502231270074844],[122,288,67,-0.5484046824276447],[122,288,68,-0.5477141104638577],[122,288,69,-0.5488727241754532],[122,288,70,-0.5513996481895447],[122,288,71,-0.5542764626443386],[122,288,72,-0.557181965559721],[122,288,73,-0.558972891420126],[122,288,74,-0.559431903064251],[122,288,75,-0.5585466586053371],[122,288,76,-0.5561536103487015],[122,288,77,-0.5525593608617783],[122,288,78,-0.548352126032114],[122,288,79,-0.5437773950397968],[122,289,64,-0.5520365312695503],[122,289,65,-0.5518265515565872],[122,289,66,-0.5502231270074844],[122,289,67,-0.5484046824276447],[122,289,68,-0.5477141104638577],[122,289,69,-0.5488727241754532],[122,289,70,-0.5513996481895447],[122,289,71,-0.5542764626443386],[122,289,72,-0.557181965559721],[122,289,73,-0.558972891420126],[122,289,74,-0.559431903064251],[122,289,75,-0.5585466586053371],[122,289,76,-0.5561536103487015],[122,289,77,-0.5525593608617783],[122,289,78,-0.548352126032114],[122,289,79,-0.5437773950397968],[122,290,64,-0.5520365312695503],[122,290,65,-0.5518265515565872],[122,290,66,-0.5502231270074844],[122,290,67,-0.5484046824276447],[122,290,68,-0.5477141104638577],[122,290,69,-0.5488727241754532],[122,290,70,-0.5513996481895447],[122,290,71,-0.5542764626443386],[122,290,72,-0.557181965559721],[122,290,73,-0.558972891420126],[122,290,74,-0.559431903064251],[122,290,75,-0.5585466586053371],[122,290,76,-0.5561536103487015],[122,290,77,-0.5525593608617783],[122,290,78,-0.548352126032114],[122,290,79,-0.5437773950397968],[122,291,64,-0.5520365312695503],[122,291,65,-0.5518265515565872],[122,291,66,-0.5502231270074844],[122,291,67,-0.5484046824276447],[122,291,68,-0.5477141104638577],[122,291,69,-0.5488727241754532],[122,291,70,-0.5513996481895447],[122,291,71,-0.5542764626443386],[122,291,72,-0.557181965559721],[122,291,73,-0.558972891420126],[122,291,74,-0.559431903064251],[122,291,75,-0.5585466586053371],[122,291,76,-0.5561536103487015],[122,291,77,-0.5525593608617783],[122,291,78,-0.548352126032114],[122,291,79,-0.5437773950397968],[122,292,64,-0.5520365312695503],[122,292,65,-0.5518265515565872],[122,292,66,-0.5502231270074844],[122,292,67,-0.5484046824276447],[122,292,68,-0.5477141104638577],[122,292,69,-0.5488727241754532],[122,292,70,-0.5513996481895447],[122,292,71,-0.5542764626443386],[122,292,72,-0.557181965559721],[122,292,73,-0.558972891420126],[122,292,74,-0.559431903064251],[122,292,75,-0.5585466586053371],[122,292,76,-0.5561536103487015],[122,292,77,-0.5525593608617783],[122,292,78,-0.548352126032114],[122,292,79,-0.5437773950397968],[122,293,64,-0.5520365312695503],[122,293,65,-0.5518265515565872],[122,293,66,-0.5502231270074844],[122,293,67,-0.5484046824276447],[122,293,68,-0.5477141104638577],[122,293,69,-0.5488727241754532],[122,293,70,-0.5513996481895447],[122,293,71,-0.5542764626443386],[122,293,72,-0.557181965559721],[122,293,73,-0.558972891420126],[122,293,74,-0.559431903064251],[122,293,75,-0.5585466586053371],[122,293,76,-0.5561536103487015],[122,293,77,-0.5525593608617783],[122,293,78,-0.548352126032114],[122,293,79,-0.5437773950397968],[122,294,64,-0.5520365312695503],[122,294,65,-0.5518265515565872],[122,294,66,-0.5502231270074844],[122,294,67,-0.5484046824276447],[122,294,68,-0.5477141104638577],[122,294,69,-0.5488727241754532],[122,294,70,-0.5513996481895447],[122,294,71,-0.5542764626443386],[122,294,72,-0.557181965559721],[122,294,73,-0.558972891420126],[122,294,74,-0.559431903064251],[122,294,75,-0.5585466586053371],[122,294,76,-0.5561536103487015],[122,294,77,-0.5525593608617783],[122,294,78,-0.548352126032114],[122,294,79,-0.5437773950397968],[122,295,64,-0.5520365312695503],[122,295,65,-0.5518265515565872],[122,295,66,-0.5502231270074844],[122,295,67,-0.5484046824276447],[122,295,68,-0.5477141104638577],[122,295,69,-0.5488727241754532],[122,295,70,-0.5513996481895447],[122,295,71,-0.5542764626443386],[122,295,72,-0.557181965559721],[122,295,73,-0.558972891420126],[122,295,74,-0.559431903064251],[122,295,75,-0.5585466586053371],[122,295,76,-0.5561536103487015],[122,295,77,-0.5525593608617783],[122,295,78,-0.548352126032114],[122,295,79,-0.5437773950397968],[122,296,64,-0.5520365312695503],[122,296,65,-0.5518265515565872],[122,296,66,-0.5502231270074844],[122,296,67,-0.5484046824276447],[122,296,68,-0.5477141104638577],[122,296,69,-0.5488727241754532],[122,296,70,-0.5513996481895447],[122,296,71,-0.5542764626443386],[122,296,72,-0.557181965559721],[122,296,73,-0.558972891420126],[122,296,74,-0.559431903064251],[122,296,75,-0.5585466586053371],[122,296,76,-0.5561536103487015],[122,296,77,-0.5525593608617783],[122,296,78,-0.548352126032114],[122,296,79,-0.5437773950397968],[122,297,64,-0.5520365312695503],[122,297,65,-0.5518265515565872],[122,297,66,-0.5502231270074844],[122,297,67,-0.5484046824276447],[122,297,68,-0.5477141104638577],[122,297,69,-0.5488727241754532],[122,297,70,-0.5513996481895447],[122,297,71,-0.5542764626443386],[122,297,72,-0.557181965559721],[122,297,73,-0.558972891420126],[122,297,74,-0.559431903064251],[122,297,75,-0.5585466586053371],[122,297,76,-0.5561536103487015],[122,297,77,-0.5525593608617783],[122,297,78,-0.548352126032114],[122,297,79,-0.5437773950397968],[122,298,64,-0.5520365312695503],[122,298,65,-0.5518265515565872],[122,298,66,-0.5502231270074844],[122,298,67,-0.5484046824276447],[122,298,68,-0.5477141104638577],[122,298,69,-0.5488727241754532],[122,298,70,-0.5513996481895447],[122,298,71,-0.5542764626443386],[122,298,72,-0.557181965559721],[122,298,73,-0.558972891420126],[122,298,74,-0.559431903064251],[122,298,75,-0.5585466586053371],[122,298,76,-0.5561536103487015],[122,298,77,-0.5525593608617783],[122,298,78,-0.548352126032114],[122,298,79,-0.5437773950397968],[122,299,64,-0.5520365312695503],[122,299,65,-0.5518265515565872],[122,299,66,-0.5502231270074844],[122,299,67,-0.5484046824276447],[122,299,68,-0.5477141104638577],[122,299,69,-0.5488727241754532],[122,299,70,-0.5513996481895447],[122,299,71,-0.5542764626443386],[122,299,72,-0.557181965559721],[122,299,73,-0.558972891420126],[122,299,74,-0.559431903064251],[122,299,75,-0.5585466586053371],[122,299,76,-0.5561536103487015],[122,299,77,-0.5525593608617783],[122,299,78,-0.548352126032114],[122,299,79,-0.5437773950397968],[122,300,64,-0.5520365312695503],[122,300,65,-0.5518265515565872],[122,300,66,-0.5502231270074844],[122,300,67,-0.5484046824276447],[122,300,68,-0.5477141104638577],[122,300,69,-0.5488727241754532],[122,300,70,-0.5513996481895447],[122,300,71,-0.5542764626443386],[122,300,72,-0.557181965559721],[122,300,73,-0.558972891420126],[122,300,74,-0.559431903064251],[122,300,75,-0.5585466586053371],[122,300,76,-0.5561536103487015],[122,300,77,-0.5525593608617783],[122,300,78,-0.548352126032114],[122,300,79,-0.5437773950397968],[122,301,64,-0.5520365312695503],[122,301,65,-0.5518265515565872],[122,301,66,-0.5502231270074844],[122,301,67,-0.5484046824276447],[122,301,68,-0.5477141104638577],[122,301,69,-0.5488727241754532],[122,301,70,-0.5513996481895447],[122,301,71,-0.5542764626443386],[122,301,72,-0.557181965559721],[122,301,73,-0.558972891420126],[122,301,74,-0.559431903064251],[122,301,75,-0.5585466586053371],[122,301,76,-0.5561536103487015],[122,301,77,-0.5525593608617783],[122,301,78,-0.548352126032114],[122,301,79,-0.5437773950397968],[122,302,64,-0.5520365312695503],[122,302,65,-0.5518265515565872],[122,302,66,-0.5502231270074844],[122,302,67,-0.5484046824276447],[122,302,68,-0.5477141104638577],[122,302,69,-0.5488727241754532],[122,302,70,-0.5513996481895447],[122,302,71,-0.5542764626443386],[122,302,72,-0.557181965559721],[122,302,73,-0.558972891420126],[122,302,74,-0.559431903064251],[122,302,75,-0.5585466586053371],[122,302,76,-0.5561536103487015],[122,302,77,-0.5525593608617783],[122,302,78,-0.548352126032114],[122,302,79,-0.5437773950397968],[122,303,64,-0.5520365312695503],[122,303,65,-0.5518265515565872],[122,303,66,-0.5502231270074844],[122,303,67,-0.5484046824276447],[122,303,68,-0.5477141104638577],[122,303,69,-0.5488727241754532],[122,303,70,-0.5513996481895447],[122,303,71,-0.5542764626443386],[122,303,72,-0.557181965559721],[122,303,73,-0.558972891420126],[122,303,74,-0.559431903064251],[122,303,75,-0.5585466586053371],[122,303,76,-0.5561536103487015],[122,303,77,-0.5525593608617783],[122,303,78,-0.548352126032114],[122,303,79,-0.5437773950397968],[122,304,64,-0.5520365312695503],[122,304,65,-0.5518265515565872],[122,304,66,-0.5502231270074844],[122,304,67,-0.5484046824276447],[122,304,68,-0.5477141104638577],[122,304,69,-0.5488727241754532],[122,304,70,-0.5513996481895447],[122,304,71,-0.5542764626443386],[122,304,72,-0.557181965559721],[122,304,73,-0.558972891420126],[122,304,74,-0.559431903064251],[122,304,75,-0.5585466586053371],[122,304,76,-0.5561536103487015],[122,304,77,-0.5525593608617783],[122,304,78,-0.548352126032114],[122,304,79,-0.5437773950397968],[122,305,64,-0.5520365312695503],[122,305,65,-0.5518265515565872],[122,305,66,-0.5502231270074844],[122,305,67,-0.5484046824276447],[122,305,68,-0.5477141104638577],[122,305,69,-0.5488727241754532],[122,305,70,-0.5513996481895447],[122,305,71,-0.5542764626443386],[122,305,72,-0.557181965559721],[122,305,73,-0.558972891420126],[122,305,74,-0.559431903064251],[122,305,75,-0.5585466586053371],[122,305,76,-0.5561536103487015],[122,305,77,-0.5525593608617783],[122,305,78,-0.548352126032114],[122,305,79,-0.5437773950397968],[122,306,64,-0.5520365312695503],[122,306,65,-0.5518265515565872],[122,306,66,-0.5502231270074844],[122,306,67,-0.5484046824276447],[122,306,68,-0.5477141104638577],[122,306,69,-0.5488727241754532],[122,306,70,-0.5513996481895447],[122,306,71,-0.5542764626443386],[122,306,72,-0.557181965559721],[122,306,73,-0.558972891420126],[122,306,74,-0.559431903064251],[122,306,75,-0.5585466586053371],[122,306,76,-0.5561536103487015],[122,306,77,-0.5525593608617783],[122,306,78,-0.548352126032114],[122,306,79,-0.5437773950397968],[122,307,64,-0.5520365312695503],[122,307,65,-0.5518265515565872],[122,307,66,-0.5502231270074844],[122,307,67,-0.5484046824276447],[122,307,68,-0.5477141104638577],[122,307,69,-0.5488727241754532],[122,307,70,-0.5513996481895447],[122,307,71,-0.5542764626443386],[122,307,72,-0.557181965559721],[122,307,73,-0.558972891420126],[122,307,74,-0.559431903064251],[122,307,75,-0.5585466586053371],[122,307,76,-0.5561536103487015],[122,307,77,-0.5525593608617783],[122,307,78,-0.548352126032114],[122,307,79,-0.5437773950397968],[122,308,64,-0.5520365312695503],[122,308,65,-0.5518265515565872],[122,308,66,-0.5502231270074844],[122,308,67,-0.5484046824276447],[122,308,68,-0.5477141104638577],[122,308,69,-0.5488727241754532],[122,308,70,-0.5513996481895447],[122,308,71,-0.5542764626443386],[122,308,72,-0.557181965559721],[122,308,73,-0.558972891420126],[122,308,74,-0.559431903064251],[122,308,75,-0.5585466586053371],[122,308,76,-0.5561536103487015],[122,308,77,-0.5525593608617783],[122,308,78,-0.548352126032114],[122,308,79,-0.5437773950397968],[122,309,64,-0.5520365312695503],[122,309,65,-0.5518265515565872],[122,309,66,-0.5502231270074844],[122,309,67,-0.5484046824276447],[122,309,68,-0.5477141104638577],[122,309,69,-0.5488727241754532],[122,309,70,-0.5513996481895447],[122,309,71,-0.5542764626443386],[122,309,72,-0.557181965559721],[122,309,73,-0.558972891420126],[122,309,74,-0.559431903064251],[122,309,75,-0.5585466586053371],[122,309,76,-0.5561536103487015],[122,309,77,-0.5525593608617783],[122,309,78,-0.548352126032114],[122,309,79,-0.5437773950397968],[122,310,64,-0.5520365312695503],[122,310,65,-0.5518265515565872],[122,310,66,-0.5502231270074844],[122,310,67,-0.5484046824276447],[122,310,68,-0.5477141104638577],[122,310,69,-0.5488727241754532],[122,310,70,-0.5513996481895447],[122,310,71,-0.5542764626443386],[122,310,72,-0.557181965559721],[122,310,73,-0.558972891420126],[122,310,74,-0.559431903064251],[122,310,75,-0.5585466586053371],[122,310,76,-0.5561536103487015],[122,310,77,-0.5525593608617783],[122,310,78,-0.548352126032114],[122,310,79,-0.5437773950397968],[122,311,64,-0.5520365312695503],[122,311,65,-0.5518265515565872],[122,311,66,-0.5502231270074844],[122,311,67,-0.5484046824276447],[122,311,68,-0.5477141104638577],[122,311,69,-0.5488727241754532],[122,311,70,-0.5513996481895447],[122,311,71,-0.5542764626443386],[122,311,72,-0.557181965559721],[122,311,73,-0.558972891420126],[122,311,74,-0.559431903064251],[122,311,75,-0.5585466586053371],[122,311,76,-0.5561536103487015],[122,311,77,-0.5525593608617783],[122,311,78,-0.548352126032114],[122,311,79,-0.5437773950397968],[122,312,64,-0.5520365312695503],[122,312,65,-0.5518265515565872],[122,312,66,-0.5502231270074844],[122,312,67,-0.5484046824276447],[122,312,68,-0.5477141104638577],[122,312,69,-0.5488727241754532],[122,312,70,-0.5513996481895447],[122,312,71,-0.5542764626443386],[122,312,72,-0.557181965559721],[122,312,73,-0.558972891420126],[122,312,74,-0.559431903064251],[122,312,75,-0.5585466586053371],[122,312,76,-0.5561536103487015],[122,312,77,-0.5525593608617783],[122,312,78,-0.548352126032114],[122,312,79,-0.5437773950397968],[122,313,64,-0.5520365312695503],[122,313,65,-0.5518265515565872],[122,313,66,-0.5502231270074844],[122,313,67,-0.5484046824276447],[122,313,68,-0.5477141104638577],[122,313,69,-0.5488727241754532],[122,313,70,-0.5513996481895447],[122,313,71,-0.5542764626443386],[122,313,72,-0.557181965559721],[122,313,73,-0.558972891420126],[122,313,74,-0.559431903064251],[122,313,75,-0.5585466586053371],[122,313,76,-0.5561536103487015],[122,313,77,-0.5525593608617783],[122,313,78,-0.548352126032114],[122,313,79,-0.5437773950397968],[122,314,64,-0.5520365312695503],[122,314,65,-0.5518265515565872],[122,314,66,-0.5502231270074844],[122,314,67,-0.5484046824276447],[122,314,68,-0.5477141104638577],[122,314,69,-0.5488727241754532],[122,314,70,-0.5513996481895447],[122,314,71,-0.5542764626443386],[122,314,72,-0.557181965559721],[122,314,73,-0.558972891420126],[122,314,74,-0.559431903064251],[122,314,75,-0.5585466586053371],[122,314,76,-0.5561536103487015],[122,314,77,-0.5525593608617783],[122,314,78,-0.548352126032114],[122,314,79,-0.5437773950397968],[122,315,64,-0.5520365312695503],[122,315,65,-0.5518265515565872],[122,315,66,-0.5502231270074844],[122,315,67,-0.5484046824276447],[122,315,68,-0.5477141104638577],[122,315,69,-0.5488727241754532],[122,315,70,-0.5513996481895447],[122,315,71,-0.5542764626443386],[122,315,72,-0.557181965559721],[122,315,73,-0.558972891420126],[122,315,74,-0.559431903064251],[122,315,75,-0.5585466586053371],[122,315,76,-0.5561536103487015],[122,315,77,-0.5525593608617783],[122,315,78,-0.548352126032114],[122,315,79,-0.5437773950397968],[122,316,64,-0.5520365312695503],[122,316,65,-0.5518265515565872],[122,316,66,-0.5502231270074844],[122,316,67,-0.5484046824276447],[122,316,68,-0.5477141104638577],[122,316,69,-0.5488727241754532],[122,316,70,-0.5513996481895447],[122,316,71,-0.5542764626443386],[122,316,72,-0.557181965559721],[122,316,73,-0.558972891420126],[122,316,74,-0.559431903064251],[122,316,75,-0.5585466586053371],[122,316,76,-0.5561536103487015],[122,316,77,-0.5525593608617783],[122,316,78,-0.548352126032114],[122,316,79,-0.5437773950397968],[122,317,64,-0.5520365312695503],[122,317,65,-0.5518265515565872],[122,317,66,-0.5502231270074844],[122,317,67,-0.5484046824276447],[122,317,68,-0.5477141104638577],[122,317,69,-0.5488727241754532],[122,317,70,-0.5513996481895447],[122,317,71,-0.5542764626443386],[122,317,72,-0.557181965559721],[122,317,73,-0.558972891420126],[122,317,74,-0.559431903064251],[122,317,75,-0.5585466586053371],[122,317,76,-0.5561536103487015],[122,317,77,-0.5525593608617783],[122,317,78,-0.548352126032114],[122,317,79,-0.5437773950397968],[122,318,64,-0.5520365312695503],[122,318,65,-0.5518265515565872],[122,318,66,-0.5502231270074844],[122,318,67,-0.5484046824276447],[122,318,68,-0.5477141104638577],[122,318,69,-0.5488727241754532],[122,318,70,-0.5513996481895447],[122,318,71,-0.5542764626443386],[122,318,72,-0.557181965559721],[122,318,73,-0.558972891420126],[122,318,74,-0.559431903064251],[122,318,75,-0.5585466586053371],[122,318,76,-0.5561536103487015],[122,318,77,-0.5525593608617783],[122,318,78,-0.548352126032114],[122,318,79,-0.5437773950397968],[122,319,64,-0.5520365312695503],[122,319,65,-0.5518265515565872],[122,319,66,-0.5502231270074844],[122,319,67,-0.5484046824276447],[122,319,68,-0.5477141104638577],[122,319,69,-0.5488727241754532],[122,319,70,-0.5513996481895447],[122,319,71,-0.5542764626443386],[122,319,72,-0.557181965559721],[122,319,73,-0.558972891420126],[122,319,74,-0.559431903064251],[122,319,75,-0.5585466586053371],[122,319,76,-0.5561536103487015],[122,319,77,-0.5525593608617783],[122,319,78,-0.548352126032114],[122,319,79,-0.5437773950397968],[123,-64,64,-0.5542180947959423],[123,-64,65,-0.5544747784733772],[123,-64,66,-0.5531223490834236],[123,-64,67,-0.5513675026595592],[123,-64,68,-0.5506513863801956],[123,-64,69,-0.5517608299851418],[123,-64,70,-0.5541238412261009],[123,-64,71,-0.5568330250680447],[123,-64,72,-0.5598209835588932],[123,-64,73,-0.561847347766161],[123,-64,74,-0.5625875182449818],[123,-64,75,-0.561925869435072],[123,-64,76,-0.559489157050848],[123,-64,77,-0.5555406510829926],[123,-64,78,-0.5509115941822529],[123,-64,79,-0.5459424331784248],[123,-63,64,-0.5542180947959423],[123,-63,65,-0.5544747784733772],[123,-63,66,-0.5531223490834236],[123,-63,67,-0.5513675026595592],[123,-63,68,-0.5506513863801956],[123,-63,69,-0.5517608299851418],[123,-63,70,-0.5541238412261009],[123,-63,71,-0.5568330250680447],[123,-63,72,-0.5598209835588932],[123,-63,73,-0.561847347766161],[123,-63,74,-0.5625875182449818],[123,-63,75,-0.561925869435072],[123,-63,76,-0.559489157050848],[123,-63,77,-0.5555406510829926],[123,-63,78,-0.5509115941822529],[123,-63,79,-0.5459424331784248],[123,-62,64,-0.5542180947959423],[123,-62,65,-0.5544747784733772],[123,-62,66,-0.5531223490834236],[123,-62,67,-0.5513675026595592],[123,-62,68,-0.5506513863801956],[123,-62,69,-0.5517608299851418],[123,-62,70,-0.5541238412261009],[123,-62,71,-0.5568330250680447],[123,-62,72,-0.5598209835588932],[123,-62,73,-0.561847347766161],[123,-62,74,-0.5625875182449818],[123,-62,75,-0.561925869435072],[123,-62,76,-0.559489157050848],[123,-62,77,-0.5555406510829926],[123,-62,78,-0.5509115941822529],[123,-62,79,-0.5459424331784248],[123,-61,64,-0.5542180947959423],[123,-61,65,-0.5544747784733772],[123,-61,66,-0.5531223490834236],[123,-61,67,-0.5513675026595592],[123,-61,68,-0.5506513863801956],[123,-61,69,-0.5517608299851418],[123,-61,70,-0.5541238412261009],[123,-61,71,-0.5568330250680447],[123,-61,72,-0.5598209835588932],[123,-61,73,-0.561847347766161],[123,-61,74,-0.5625875182449818],[123,-61,75,-0.561925869435072],[123,-61,76,-0.559489157050848],[123,-61,77,-0.5555406510829926],[123,-61,78,-0.5509115941822529],[123,-61,79,-0.5459424331784248],[123,-60,64,-0.5542180947959423],[123,-60,65,-0.5544747784733772],[123,-60,66,-0.5531223490834236],[123,-60,67,-0.5513675026595592],[123,-60,68,-0.5506513863801956],[123,-60,69,-0.5517608299851418],[123,-60,70,-0.5541238412261009],[123,-60,71,-0.5568330250680447],[123,-60,72,-0.5598209835588932],[123,-60,73,-0.561847347766161],[123,-60,74,-0.5625875182449818],[123,-60,75,-0.561925869435072],[123,-60,76,-0.559489157050848],[123,-60,77,-0.5555406510829926],[123,-60,78,-0.5509115941822529],[123,-60,79,-0.5459424331784248],[123,-59,64,-0.5542180947959423],[123,-59,65,-0.5544747784733772],[123,-59,66,-0.5531223490834236],[123,-59,67,-0.5513675026595592],[123,-59,68,-0.5506513863801956],[123,-59,69,-0.5517608299851418],[123,-59,70,-0.5541238412261009],[123,-59,71,-0.5568330250680447],[123,-59,72,-0.5598209835588932],[123,-59,73,-0.561847347766161],[123,-59,74,-0.5625875182449818],[123,-59,75,-0.561925869435072],[123,-59,76,-0.559489157050848],[123,-59,77,-0.5555406510829926],[123,-59,78,-0.5509115941822529],[123,-59,79,-0.5459424331784248],[123,-58,64,-0.5542180947959423],[123,-58,65,-0.5544747784733772],[123,-58,66,-0.5531223490834236],[123,-58,67,-0.5513675026595592],[123,-58,68,-0.5506513863801956],[123,-58,69,-0.5517608299851418],[123,-58,70,-0.5541238412261009],[123,-58,71,-0.5568330250680447],[123,-58,72,-0.5598209835588932],[123,-58,73,-0.561847347766161],[123,-58,74,-0.5625875182449818],[123,-58,75,-0.561925869435072],[123,-58,76,-0.559489157050848],[123,-58,77,-0.5555406510829926],[123,-58,78,-0.5509115941822529],[123,-58,79,-0.5459424331784248],[123,-57,64,-0.5542180947959423],[123,-57,65,-0.5544747784733772],[123,-57,66,-0.5531223490834236],[123,-57,67,-0.5513675026595592],[123,-57,68,-0.5506513863801956],[123,-57,69,-0.5517608299851418],[123,-57,70,-0.5541238412261009],[123,-57,71,-0.5568330250680447],[123,-57,72,-0.5598209835588932],[123,-57,73,-0.561847347766161],[123,-57,74,-0.5625875182449818],[123,-57,75,-0.561925869435072],[123,-57,76,-0.559489157050848],[123,-57,77,-0.5555406510829926],[123,-57,78,-0.5509115941822529],[123,-57,79,-0.5459424331784248],[123,-56,64,-0.5542180947959423],[123,-56,65,-0.5544747784733772],[123,-56,66,-0.5531223490834236],[123,-56,67,-0.5513675026595592],[123,-56,68,-0.5506513863801956],[123,-56,69,-0.5517608299851418],[123,-56,70,-0.5541238412261009],[123,-56,71,-0.5568330250680447],[123,-56,72,-0.5598209835588932],[123,-56,73,-0.561847347766161],[123,-56,74,-0.5625875182449818],[123,-56,75,-0.561925869435072],[123,-56,76,-0.559489157050848],[123,-56,77,-0.5555406510829926],[123,-56,78,-0.5509115941822529],[123,-56,79,-0.5459424331784248],[123,-55,64,-0.5542180947959423],[123,-55,65,-0.5544747784733772],[123,-55,66,-0.5531223490834236],[123,-55,67,-0.5513675026595592],[123,-55,68,-0.5506513863801956],[123,-55,69,-0.5517608299851418],[123,-55,70,-0.5541238412261009],[123,-55,71,-0.5568330250680447],[123,-55,72,-0.5598209835588932],[123,-55,73,-0.561847347766161],[123,-55,74,-0.5625875182449818],[123,-55,75,-0.561925869435072],[123,-55,76,-0.559489157050848],[123,-55,77,-0.5555406510829926],[123,-55,78,-0.5509115941822529],[123,-55,79,-0.5459424331784248],[123,-54,64,-0.5542180947959423],[123,-54,65,-0.5544747784733772],[123,-54,66,-0.5531223490834236],[123,-54,67,-0.5513675026595592],[123,-54,68,-0.5506513863801956],[123,-54,69,-0.5517608299851418],[123,-54,70,-0.5541238412261009],[123,-54,71,-0.5568330250680447],[123,-54,72,-0.5598209835588932],[123,-54,73,-0.561847347766161],[123,-54,74,-0.5625875182449818],[123,-54,75,-0.561925869435072],[123,-54,76,-0.559489157050848],[123,-54,77,-0.5555406510829926],[123,-54,78,-0.5509115941822529],[123,-54,79,-0.5459424331784248],[123,-53,64,-0.5542180947959423],[123,-53,65,-0.5544747784733772],[123,-53,66,-0.5531223490834236],[123,-53,67,-0.5513675026595592],[123,-53,68,-0.5506513863801956],[123,-53,69,-0.5517608299851418],[123,-53,70,-0.5541238412261009],[123,-53,71,-0.5568330250680447],[123,-53,72,-0.5598209835588932],[123,-53,73,-0.561847347766161],[123,-53,74,-0.5625875182449818],[123,-53,75,-0.561925869435072],[123,-53,76,-0.559489157050848],[123,-53,77,-0.5555406510829926],[123,-53,78,-0.5509115941822529],[123,-53,79,-0.5459424331784248],[123,-52,64,-0.5542180947959423],[123,-52,65,-0.5544747784733772],[123,-52,66,-0.5531223490834236],[123,-52,67,-0.5513675026595592],[123,-52,68,-0.5506513863801956],[123,-52,69,-0.5517608299851418],[123,-52,70,-0.5541238412261009],[123,-52,71,-0.5568330250680447],[123,-52,72,-0.5598209835588932],[123,-52,73,-0.561847347766161],[123,-52,74,-0.5625875182449818],[123,-52,75,-0.561925869435072],[123,-52,76,-0.559489157050848],[123,-52,77,-0.5555406510829926],[123,-52,78,-0.5509115941822529],[123,-52,79,-0.5459424331784248],[123,-51,64,-0.5542180947959423],[123,-51,65,-0.5544747784733772],[123,-51,66,-0.5531223490834236],[123,-51,67,-0.5513675026595592],[123,-51,68,-0.5506513863801956],[123,-51,69,-0.5517608299851418],[123,-51,70,-0.5541238412261009],[123,-51,71,-0.5568330250680447],[123,-51,72,-0.5598209835588932],[123,-51,73,-0.561847347766161],[123,-51,74,-0.5625875182449818],[123,-51,75,-0.561925869435072],[123,-51,76,-0.559489157050848],[123,-51,77,-0.5555406510829926],[123,-51,78,-0.5509115941822529],[123,-51,79,-0.5459424331784248],[123,-50,64,-0.5542180947959423],[123,-50,65,-0.5544747784733772],[123,-50,66,-0.5531223490834236],[123,-50,67,-0.5513675026595592],[123,-50,68,-0.5506513863801956],[123,-50,69,-0.5517608299851418],[123,-50,70,-0.5541238412261009],[123,-50,71,-0.5568330250680447],[123,-50,72,-0.5598209835588932],[123,-50,73,-0.561847347766161],[123,-50,74,-0.5625875182449818],[123,-50,75,-0.561925869435072],[123,-50,76,-0.559489157050848],[123,-50,77,-0.5555406510829926],[123,-50,78,-0.5509115941822529],[123,-50,79,-0.5459424331784248],[123,-49,64,-0.5542180947959423],[123,-49,65,-0.5544747784733772],[123,-49,66,-0.5531223490834236],[123,-49,67,-0.5513675026595592],[123,-49,68,-0.5506513863801956],[123,-49,69,-0.5517608299851418],[123,-49,70,-0.5541238412261009],[123,-49,71,-0.5568330250680447],[123,-49,72,-0.5598209835588932],[123,-49,73,-0.561847347766161],[123,-49,74,-0.5625875182449818],[123,-49,75,-0.561925869435072],[123,-49,76,-0.559489157050848],[123,-49,77,-0.5555406510829926],[123,-49,78,-0.5509115941822529],[123,-49,79,-0.5459424331784248],[123,-48,64,-0.5542180947959423],[123,-48,65,-0.5544747784733772],[123,-48,66,-0.5531223490834236],[123,-48,67,-0.5513675026595592],[123,-48,68,-0.5506513863801956],[123,-48,69,-0.5517608299851418],[123,-48,70,-0.5541238412261009],[123,-48,71,-0.5568330250680447],[123,-48,72,-0.5598209835588932],[123,-48,73,-0.561847347766161],[123,-48,74,-0.5625875182449818],[123,-48,75,-0.561925869435072],[123,-48,76,-0.559489157050848],[123,-48,77,-0.5555406510829926],[123,-48,78,-0.5509115941822529],[123,-48,79,-0.5459424331784248],[123,-47,64,-0.5542180947959423],[123,-47,65,-0.5544747784733772],[123,-47,66,-0.5531223490834236],[123,-47,67,-0.5513675026595592],[123,-47,68,-0.5506513863801956],[123,-47,69,-0.5517608299851418],[123,-47,70,-0.5541238412261009],[123,-47,71,-0.5568330250680447],[123,-47,72,-0.5598209835588932],[123,-47,73,-0.561847347766161],[123,-47,74,-0.5625875182449818],[123,-47,75,-0.561925869435072],[123,-47,76,-0.559489157050848],[123,-47,77,-0.5555406510829926],[123,-47,78,-0.5509115941822529],[123,-47,79,-0.5459424331784248],[123,-46,64,-0.5542180947959423],[123,-46,65,-0.5544747784733772],[123,-46,66,-0.5531223490834236],[123,-46,67,-0.5513675026595592],[123,-46,68,-0.5506513863801956],[123,-46,69,-0.5517608299851418],[123,-46,70,-0.5541238412261009],[123,-46,71,-0.5568330250680447],[123,-46,72,-0.5598209835588932],[123,-46,73,-0.561847347766161],[123,-46,74,-0.5625875182449818],[123,-46,75,-0.561925869435072],[123,-46,76,-0.559489157050848],[123,-46,77,-0.5555406510829926],[123,-46,78,-0.5509115941822529],[123,-46,79,-0.5459424331784248],[123,-45,64,-0.5542180947959423],[123,-45,65,-0.5544747784733772],[123,-45,66,-0.5531223490834236],[123,-45,67,-0.5513675026595592],[123,-45,68,-0.5506513863801956],[123,-45,69,-0.5517608299851418],[123,-45,70,-0.5541238412261009],[123,-45,71,-0.5568330250680447],[123,-45,72,-0.5598209835588932],[123,-45,73,-0.561847347766161],[123,-45,74,-0.5625875182449818],[123,-45,75,-0.561925869435072],[123,-45,76,-0.559489157050848],[123,-45,77,-0.5555406510829926],[123,-45,78,-0.5509115941822529],[123,-45,79,-0.5459424331784248],[123,-44,64,-0.5542180947959423],[123,-44,65,-0.5544747784733772],[123,-44,66,-0.5531223490834236],[123,-44,67,-0.5513675026595592],[123,-44,68,-0.5506513863801956],[123,-44,69,-0.5517608299851418],[123,-44,70,-0.5541238412261009],[123,-44,71,-0.5568330250680447],[123,-44,72,-0.5598209835588932],[123,-44,73,-0.561847347766161],[123,-44,74,-0.5625875182449818],[123,-44,75,-0.561925869435072],[123,-44,76,-0.559489157050848],[123,-44,77,-0.5555406510829926],[123,-44,78,-0.5509115941822529],[123,-44,79,-0.5459424331784248],[123,-43,64,-0.5542180947959423],[123,-43,65,-0.5544747784733772],[123,-43,66,-0.5531223490834236],[123,-43,67,-0.5513675026595592],[123,-43,68,-0.5506513863801956],[123,-43,69,-0.5517608299851418],[123,-43,70,-0.5541238412261009],[123,-43,71,-0.5568330250680447],[123,-43,72,-0.5598209835588932],[123,-43,73,-0.561847347766161],[123,-43,74,-0.5625875182449818],[123,-43,75,-0.561925869435072],[123,-43,76,-0.559489157050848],[123,-43,77,-0.5555406510829926],[123,-43,78,-0.5509115941822529],[123,-43,79,-0.5459424331784248],[123,-42,64,-0.5542180947959423],[123,-42,65,-0.5544747784733772],[123,-42,66,-0.5531223490834236],[123,-42,67,-0.5513675026595592],[123,-42,68,-0.5506513863801956],[123,-42,69,-0.5517608299851418],[123,-42,70,-0.5541238412261009],[123,-42,71,-0.5568330250680447],[123,-42,72,-0.5598209835588932],[123,-42,73,-0.561847347766161],[123,-42,74,-0.5625875182449818],[123,-42,75,-0.561925869435072],[123,-42,76,-0.559489157050848],[123,-42,77,-0.5555406510829926],[123,-42,78,-0.5509115941822529],[123,-42,79,-0.5459424331784248],[123,-41,64,-0.5542180947959423],[123,-41,65,-0.5544747784733772],[123,-41,66,-0.5531223490834236],[123,-41,67,-0.5513675026595592],[123,-41,68,-0.5506513863801956],[123,-41,69,-0.5517608299851418],[123,-41,70,-0.5541238412261009],[123,-41,71,-0.5568330250680447],[123,-41,72,-0.5598209835588932],[123,-41,73,-0.561847347766161],[123,-41,74,-0.5625875182449818],[123,-41,75,-0.561925869435072],[123,-41,76,-0.559489157050848],[123,-41,77,-0.5555406510829926],[123,-41,78,-0.5509115941822529],[123,-41,79,-0.5459424331784248],[123,-40,64,-0.5542180947959423],[123,-40,65,-0.5544747784733772],[123,-40,66,-0.5531223490834236],[123,-40,67,-0.5513675026595592],[123,-40,68,-0.5506513863801956],[123,-40,69,-0.5517608299851418],[123,-40,70,-0.5541238412261009],[123,-40,71,-0.5568330250680447],[123,-40,72,-0.5598209835588932],[123,-40,73,-0.561847347766161],[123,-40,74,-0.5625875182449818],[123,-40,75,-0.561925869435072],[123,-40,76,-0.559489157050848],[123,-40,77,-0.5555406510829926],[123,-40,78,-0.5509115941822529],[123,-40,79,-0.5459424331784248],[123,-39,64,-0.5542180947959423],[123,-39,65,-0.5544747784733772],[123,-39,66,-0.5531223490834236],[123,-39,67,-0.5513675026595592],[123,-39,68,-0.5506513863801956],[123,-39,69,-0.5517608299851418],[123,-39,70,-0.5541238412261009],[123,-39,71,-0.5568330250680447],[123,-39,72,-0.5598209835588932],[123,-39,73,-0.561847347766161],[123,-39,74,-0.5625875182449818],[123,-39,75,-0.561925869435072],[123,-39,76,-0.559489157050848],[123,-39,77,-0.5555406510829926],[123,-39,78,-0.5509115941822529],[123,-39,79,-0.5459424331784248],[123,-38,64,-0.5542180947959423],[123,-38,65,-0.5544747784733772],[123,-38,66,-0.5531223490834236],[123,-38,67,-0.5513675026595592],[123,-38,68,-0.5506513863801956],[123,-38,69,-0.5517608299851418],[123,-38,70,-0.5541238412261009],[123,-38,71,-0.5568330250680447],[123,-38,72,-0.5598209835588932],[123,-38,73,-0.561847347766161],[123,-38,74,-0.5625875182449818],[123,-38,75,-0.561925869435072],[123,-38,76,-0.559489157050848],[123,-38,77,-0.5555406510829926],[123,-38,78,-0.5509115941822529],[123,-38,79,-0.5459424331784248],[123,-37,64,-0.5542180947959423],[123,-37,65,-0.5544747784733772],[123,-37,66,-0.5531223490834236],[123,-37,67,-0.5513675026595592],[123,-37,68,-0.5506513863801956],[123,-37,69,-0.5517608299851418],[123,-37,70,-0.5541238412261009],[123,-37,71,-0.5568330250680447],[123,-37,72,-0.5598209835588932],[123,-37,73,-0.561847347766161],[123,-37,74,-0.5625875182449818],[123,-37,75,-0.561925869435072],[123,-37,76,-0.559489157050848],[123,-37,77,-0.5555406510829926],[123,-37,78,-0.5509115941822529],[123,-37,79,-0.5459424331784248],[123,-36,64,-0.5542180947959423],[123,-36,65,-0.5544747784733772],[123,-36,66,-0.5531223490834236],[123,-36,67,-0.5513675026595592],[123,-36,68,-0.5506513863801956],[123,-36,69,-0.5517608299851418],[123,-36,70,-0.5541238412261009],[123,-36,71,-0.5568330250680447],[123,-36,72,-0.5598209835588932],[123,-36,73,-0.561847347766161],[123,-36,74,-0.5625875182449818],[123,-36,75,-0.561925869435072],[123,-36,76,-0.559489157050848],[123,-36,77,-0.5555406510829926],[123,-36,78,-0.5509115941822529],[123,-36,79,-0.5459424331784248],[123,-35,64,-0.5542180947959423],[123,-35,65,-0.5544747784733772],[123,-35,66,-0.5531223490834236],[123,-35,67,-0.5513675026595592],[123,-35,68,-0.5506513863801956],[123,-35,69,-0.5517608299851418],[123,-35,70,-0.5541238412261009],[123,-35,71,-0.5568330250680447],[123,-35,72,-0.5598209835588932],[123,-35,73,-0.561847347766161],[123,-35,74,-0.5625875182449818],[123,-35,75,-0.561925869435072],[123,-35,76,-0.559489157050848],[123,-35,77,-0.5555406510829926],[123,-35,78,-0.5509115941822529],[123,-35,79,-0.5459424331784248],[123,-34,64,-0.5542180947959423],[123,-34,65,-0.5544747784733772],[123,-34,66,-0.5531223490834236],[123,-34,67,-0.5513675026595592],[123,-34,68,-0.5506513863801956],[123,-34,69,-0.5517608299851418],[123,-34,70,-0.5541238412261009],[123,-34,71,-0.5568330250680447],[123,-34,72,-0.5598209835588932],[123,-34,73,-0.561847347766161],[123,-34,74,-0.5625875182449818],[123,-34,75,-0.561925869435072],[123,-34,76,-0.559489157050848],[123,-34,77,-0.5555406510829926],[123,-34,78,-0.5509115941822529],[123,-34,79,-0.5459424331784248],[123,-33,64,-0.5542180947959423],[123,-33,65,-0.5544747784733772],[123,-33,66,-0.5531223490834236],[123,-33,67,-0.5513675026595592],[123,-33,68,-0.5506513863801956],[123,-33,69,-0.5517608299851418],[123,-33,70,-0.5541238412261009],[123,-33,71,-0.5568330250680447],[123,-33,72,-0.5598209835588932],[123,-33,73,-0.561847347766161],[123,-33,74,-0.5625875182449818],[123,-33,75,-0.561925869435072],[123,-33,76,-0.559489157050848],[123,-33,77,-0.5555406510829926],[123,-33,78,-0.5509115941822529],[123,-33,79,-0.5459424331784248],[123,-32,64,-0.5542180947959423],[123,-32,65,-0.5544747784733772],[123,-32,66,-0.5531223490834236],[123,-32,67,-0.5513675026595592],[123,-32,68,-0.5506513863801956],[123,-32,69,-0.5517608299851418],[123,-32,70,-0.5541238412261009],[123,-32,71,-0.5568330250680447],[123,-32,72,-0.5598209835588932],[123,-32,73,-0.561847347766161],[123,-32,74,-0.5625875182449818],[123,-32,75,-0.561925869435072],[123,-32,76,-0.559489157050848],[123,-32,77,-0.5555406510829926],[123,-32,78,-0.5509115941822529],[123,-32,79,-0.5459424331784248],[123,-31,64,-0.5542180947959423],[123,-31,65,-0.5544747784733772],[123,-31,66,-0.5531223490834236],[123,-31,67,-0.5513675026595592],[123,-31,68,-0.5506513863801956],[123,-31,69,-0.5517608299851418],[123,-31,70,-0.5541238412261009],[123,-31,71,-0.5568330250680447],[123,-31,72,-0.5598209835588932],[123,-31,73,-0.561847347766161],[123,-31,74,-0.5625875182449818],[123,-31,75,-0.561925869435072],[123,-31,76,-0.559489157050848],[123,-31,77,-0.5555406510829926],[123,-31,78,-0.5509115941822529],[123,-31,79,-0.5459424331784248],[123,-30,64,-0.5542180947959423],[123,-30,65,-0.5544747784733772],[123,-30,66,-0.5531223490834236],[123,-30,67,-0.5513675026595592],[123,-30,68,-0.5506513863801956],[123,-30,69,-0.5517608299851418],[123,-30,70,-0.5541238412261009],[123,-30,71,-0.5568330250680447],[123,-30,72,-0.5598209835588932],[123,-30,73,-0.561847347766161],[123,-30,74,-0.5625875182449818],[123,-30,75,-0.561925869435072],[123,-30,76,-0.559489157050848],[123,-30,77,-0.5555406510829926],[123,-30,78,-0.5509115941822529],[123,-30,79,-0.5459424331784248],[123,-29,64,-0.5542180947959423],[123,-29,65,-0.5544747784733772],[123,-29,66,-0.5531223490834236],[123,-29,67,-0.5513675026595592],[123,-29,68,-0.5506513863801956],[123,-29,69,-0.5517608299851418],[123,-29,70,-0.5541238412261009],[123,-29,71,-0.5568330250680447],[123,-29,72,-0.5598209835588932],[123,-29,73,-0.561847347766161],[123,-29,74,-0.5625875182449818],[123,-29,75,-0.561925869435072],[123,-29,76,-0.559489157050848],[123,-29,77,-0.5555406510829926],[123,-29,78,-0.5509115941822529],[123,-29,79,-0.5459424331784248],[123,-28,64,-0.5542180947959423],[123,-28,65,-0.5544747784733772],[123,-28,66,-0.5531223490834236],[123,-28,67,-0.5513675026595592],[123,-28,68,-0.5506513863801956],[123,-28,69,-0.5517608299851418],[123,-28,70,-0.5541238412261009],[123,-28,71,-0.5568330250680447],[123,-28,72,-0.5598209835588932],[123,-28,73,-0.561847347766161],[123,-28,74,-0.5625875182449818],[123,-28,75,-0.561925869435072],[123,-28,76,-0.559489157050848],[123,-28,77,-0.5555406510829926],[123,-28,78,-0.5509115941822529],[123,-28,79,-0.5459424331784248],[123,-27,64,-0.5542180947959423],[123,-27,65,-0.5544747784733772],[123,-27,66,-0.5531223490834236],[123,-27,67,-0.5513675026595592],[123,-27,68,-0.5506513863801956],[123,-27,69,-0.5517608299851418],[123,-27,70,-0.5541238412261009],[123,-27,71,-0.5568330250680447],[123,-27,72,-0.5598209835588932],[123,-27,73,-0.561847347766161],[123,-27,74,-0.5625875182449818],[123,-27,75,-0.561925869435072],[123,-27,76,-0.559489157050848],[123,-27,77,-0.5555406510829926],[123,-27,78,-0.5509115941822529],[123,-27,79,-0.5459424331784248],[123,-26,64,-0.5542180947959423],[123,-26,65,-0.5544747784733772],[123,-26,66,-0.5531223490834236],[123,-26,67,-0.5513675026595592],[123,-26,68,-0.5506513863801956],[123,-26,69,-0.5517608299851418],[123,-26,70,-0.5541238412261009],[123,-26,71,-0.5568330250680447],[123,-26,72,-0.5598209835588932],[123,-26,73,-0.561847347766161],[123,-26,74,-0.5625875182449818],[123,-26,75,-0.561925869435072],[123,-26,76,-0.559489157050848],[123,-26,77,-0.5555406510829926],[123,-26,78,-0.5509115941822529],[123,-26,79,-0.5459424331784248],[123,-25,64,-0.5542180947959423],[123,-25,65,-0.5544747784733772],[123,-25,66,-0.5531223490834236],[123,-25,67,-0.5513675026595592],[123,-25,68,-0.5506513863801956],[123,-25,69,-0.5517608299851418],[123,-25,70,-0.5541238412261009],[123,-25,71,-0.5568330250680447],[123,-25,72,-0.5598209835588932],[123,-25,73,-0.561847347766161],[123,-25,74,-0.5625875182449818],[123,-25,75,-0.561925869435072],[123,-25,76,-0.559489157050848],[123,-25,77,-0.5555406510829926],[123,-25,78,-0.5509115941822529],[123,-25,79,-0.5459424331784248],[123,-24,64,-0.5542180947959423],[123,-24,65,-0.5544747784733772],[123,-24,66,-0.5531223490834236],[123,-24,67,-0.5513675026595592],[123,-24,68,-0.5506513863801956],[123,-24,69,-0.5517608299851418],[123,-24,70,-0.5541238412261009],[123,-24,71,-0.5568330250680447],[123,-24,72,-0.5598209835588932],[123,-24,73,-0.561847347766161],[123,-24,74,-0.5625875182449818],[123,-24,75,-0.561925869435072],[123,-24,76,-0.559489157050848],[123,-24,77,-0.5555406510829926],[123,-24,78,-0.5509115941822529],[123,-24,79,-0.5459424331784248],[123,-23,64,-0.5542180947959423],[123,-23,65,-0.5544747784733772],[123,-23,66,-0.5531223490834236],[123,-23,67,-0.5513675026595592],[123,-23,68,-0.5506513863801956],[123,-23,69,-0.5517608299851418],[123,-23,70,-0.5541238412261009],[123,-23,71,-0.5568330250680447],[123,-23,72,-0.5598209835588932],[123,-23,73,-0.561847347766161],[123,-23,74,-0.5625875182449818],[123,-23,75,-0.561925869435072],[123,-23,76,-0.559489157050848],[123,-23,77,-0.5555406510829926],[123,-23,78,-0.5509115941822529],[123,-23,79,-0.5459424331784248],[123,-22,64,-0.5542180947959423],[123,-22,65,-0.5544747784733772],[123,-22,66,-0.5531223490834236],[123,-22,67,-0.5513675026595592],[123,-22,68,-0.5506513863801956],[123,-22,69,-0.5517608299851418],[123,-22,70,-0.5541238412261009],[123,-22,71,-0.5568330250680447],[123,-22,72,-0.5598209835588932],[123,-22,73,-0.561847347766161],[123,-22,74,-0.5625875182449818],[123,-22,75,-0.561925869435072],[123,-22,76,-0.559489157050848],[123,-22,77,-0.5555406510829926],[123,-22,78,-0.5509115941822529],[123,-22,79,-0.5459424331784248],[123,-21,64,-0.5542180947959423],[123,-21,65,-0.5544747784733772],[123,-21,66,-0.5531223490834236],[123,-21,67,-0.5513675026595592],[123,-21,68,-0.5506513863801956],[123,-21,69,-0.5517608299851418],[123,-21,70,-0.5541238412261009],[123,-21,71,-0.5568330250680447],[123,-21,72,-0.5598209835588932],[123,-21,73,-0.561847347766161],[123,-21,74,-0.5625875182449818],[123,-21,75,-0.561925869435072],[123,-21,76,-0.559489157050848],[123,-21,77,-0.5555406510829926],[123,-21,78,-0.5509115941822529],[123,-21,79,-0.5459424331784248],[123,-20,64,-0.5542180947959423],[123,-20,65,-0.5544747784733772],[123,-20,66,-0.5531223490834236],[123,-20,67,-0.5513675026595592],[123,-20,68,-0.5506513863801956],[123,-20,69,-0.5517608299851418],[123,-20,70,-0.5541238412261009],[123,-20,71,-0.5568330250680447],[123,-20,72,-0.5598209835588932],[123,-20,73,-0.561847347766161],[123,-20,74,-0.5625875182449818],[123,-20,75,-0.561925869435072],[123,-20,76,-0.559489157050848],[123,-20,77,-0.5555406510829926],[123,-20,78,-0.5509115941822529],[123,-20,79,-0.5459424331784248],[123,-19,64,-0.5542180947959423],[123,-19,65,-0.5544747784733772],[123,-19,66,-0.5531223490834236],[123,-19,67,-0.5513675026595592],[123,-19,68,-0.5506513863801956],[123,-19,69,-0.5517608299851418],[123,-19,70,-0.5541238412261009],[123,-19,71,-0.5568330250680447],[123,-19,72,-0.5598209835588932],[123,-19,73,-0.561847347766161],[123,-19,74,-0.5625875182449818],[123,-19,75,-0.561925869435072],[123,-19,76,-0.559489157050848],[123,-19,77,-0.5555406510829926],[123,-19,78,-0.5509115941822529],[123,-19,79,-0.5459424331784248],[123,-18,64,-0.5542180947959423],[123,-18,65,-0.5544747784733772],[123,-18,66,-0.5531223490834236],[123,-18,67,-0.5513675026595592],[123,-18,68,-0.5506513863801956],[123,-18,69,-0.5517608299851418],[123,-18,70,-0.5541238412261009],[123,-18,71,-0.5568330250680447],[123,-18,72,-0.5598209835588932],[123,-18,73,-0.561847347766161],[123,-18,74,-0.5625875182449818],[123,-18,75,-0.561925869435072],[123,-18,76,-0.559489157050848],[123,-18,77,-0.5555406510829926],[123,-18,78,-0.5509115941822529],[123,-18,79,-0.5459424331784248],[123,-17,64,-0.5542180947959423],[123,-17,65,-0.5544747784733772],[123,-17,66,-0.5531223490834236],[123,-17,67,-0.5513675026595592],[123,-17,68,-0.5506513863801956],[123,-17,69,-0.5517608299851418],[123,-17,70,-0.5541238412261009],[123,-17,71,-0.5568330250680447],[123,-17,72,-0.5598209835588932],[123,-17,73,-0.561847347766161],[123,-17,74,-0.5625875182449818],[123,-17,75,-0.561925869435072],[123,-17,76,-0.559489157050848],[123,-17,77,-0.5555406510829926],[123,-17,78,-0.5509115941822529],[123,-17,79,-0.5459424331784248],[123,-16,64,-0.5542180947959423],[123,-16,65,-0.5544747784733772],[123,-16,66,-0.5531223490834236],[123,-16,67,-0.5513675026595592],[123,-16,68,-0.5506513863801956],[123,-16,69,-0.5517608299851418],[123,-16,70,-0.5541238412261009],[123,-16,71,-0.5568330250680447],[123,-16,72,-0.5598209835588932],[123,-16,73,-0.561847347766161],[123,-16,74,-0.5625875182449818],[123,-16,75,-0.561925869435072],[123,-16,76,-0.559489157050848],[123,-16,77,-0.5555406510829926],[123,-16,78,-0.5509115941822529],[123,-16,79,-0.5459424331784248],[123,-15,64,-0.5542180947959423],[123,-15,65,-0.5544747784733772],[123,-15,66,-0.5531223490834236],[123,-15,67,-0.5513675026595592],[123,-15,68,-0.5506513863801956],[123,-15,69,-0.5517608299851418],[123,-15,70,-0.5541238412261009],[123,-15,71,-0.5568330250680447],[123,-15,72,-0.5598209835588932],[123,-15,73,-0.561847347766161],[123,-15,74,-0.5625875182449818],[123,-15,75,-0.561925869435072],[123,-15,76,-0.559489157050848],[123,-15,77,-0.5555406510829926],[123,-15,78,-0.5509115941822529],[123,-15,79,-0.5459424331784248],[123,-14,64,-0.5542180947959423],[123,-14,65,-0.5544747784733772],[123,-14,66,-0.5531223490834236],[123,-14,67,-0.5513675026595592],[123,-14,68,-0.5506513863801956],[123,-14,69,-0.5517608299851418],[123,-14,70,-0.5541238412261009],[123,-14,71,-0.5568330250680447],[123,-14,72,-0.5598209835588932],[123,-14,73,-0.561847347766161],[123,-14,74,-0.5625875182449818],[123,-14,75,-0.561925869435072],[123,-14,76,-0.559489157050848],[123,-14,77,-0.5555406510829926],[123,-14,78,-0.5509115941822529],[123,-14,79,-0.5459424331784248],[123,-13,64,-0.5542180947959423],[123,-13,65,-0.5544747784733772],[123,-13,66,-0.5531223490834236],[123,-13,67,-0.5513675026595592],[123,-13,68,-0.5506513863801956],[123,-13,69,-0.5517608299851418],[123,-13,70,-0.5541238412261009],[123,-13,71,-0.5568330250680447],[123,-13,72,-0.5598209835588932],[123,-13,73,-0.561847347766161],[123,-13,74,-0.5625875182449818],[123,-13,75,-0.561925869435072],[123,-13,76,-0.559489157050848],[123,-13,77,-0.5555406510829926],[123,-13,78,-0.5509115941822529],[123,-13,79,-0.5459424331784248],[123,-12,64,-0.5542180947959423],[123,-12,65,-0.5544747784733772],[123,-12,66,-0.5531223490834236],[123,-12,67,-0.5513675026595592],[123,-12,68,-0.5506513863801956],[123,-12,69,-0.5517608299851418],[123,-12,70,-0.5541238412261009],[123,-12,71,-0.5568330250680447],[123,-12,72,-0.5598209835588932],[123,-12,73,-0.561847347766161],[123,-12,74,-0.5625875182449818],[123,-12,75,-0.561925869435072],[123,-12,76,-0.559489157050848],[123,-12,77,-0.5555406510829926],[123,-12,78,-0.5509115941822529],[123,-12,79,-0.5459424331784248],[123,-11,64,-0.5542180947959423],[123,-11,65,-0.5544747784733772],[123,-11,66,-0.5531223490834236],[123,-11,67,-0.5513675026595592],[123,-11,68,-0.5506513863801956],[123,-11,69,-0.5517608299851418],[123,-11,70,-0.5541238412261009],[123,-11,71,-0.5568330250680447],[123,-11,72,-0.5598209835588932],[123,-11,73,-0.561847347766161],[123,-11,74,-0.5625875182449818],[123,-11,75,-0.561925869435072],[123,-11,76,-0.559489157050848],[123,-11,77,-0.5555406510829926],[123,-11,78,-0.5509115941822529],[123,-11,79,-0.5459424331784248],[123,-10,64,-0.5542180947959423],[123,-10,65,-0.5544747784733772],[123,-10,66,-0.5531223490834236],[123,-10,67,-0.5513675026595592],[123,-10,68,-0.5506513863801956],[123,-10,69,-0.5517608299851418],[123,-10,70,-0.5541238412261009],[123,-10,71,-0.5568330250680447],[123,-10,72,-0.5598209835588932],[123,-10,73,-0.561847347766161],[123,-10,74,-0.5625875182449818],[123,-10,75,-0.561925869435072],[123,-10,76,-0.559489157050848],[123,-10,77,-0.5555406510829926],[123,-10,78,-0.5509115941822529],[123,-10,79,-0.5459424331784248],[123,-9,64,-0.5542180947959423],[123,-9,65,-0.5544747784733772],[123,-9,66,-0.5531223490834236],[123,-9,67,-0.5513675026595592],[123,-9,68,-0.5506513863801956],[123,-9,69,-0.5517608299851418],[123,-9,70,-0.5541238412261009],[123,-9,71,-0.5568330250680447],[123,-9,72,-0.5598209835588932],[123,-9,73,-0.561847347766161],[123,-9,74,-0.5625875182449818],[123,-9,75,-0.561925869435072],[123,-9,76,-0.559489157050848],[123,-9,77,-0.5555406510829926],[123,-9,78,-0.5509115941822529],[123,-9,79,-0.5459424331784248],[123,-8,64,-0.5542180947959423],[123,-8,65,-0.5544747784733772],[123,-8,66,-0.5531223490834236],[123,-8,67,-0.5513675026595592],[123,-8,68,-0.5506513863801956],[123,-8,69,-0.5517608299851418],[123,-8,70,-0.5541238412261009],[123,-8,71,-0.5568330250680447],[123,-8,72,-0.5598209835588932],[123,-8,73,-0.561847347766161],[123,-8,74,-0.5625875182449818],[123,-8,75,-0.561925869435072],[123,-8,76,-0.559489157050848],[123,-8,77,-0.5555406510829926],[123,-8,78,-0.5509115941822529],[123,-8,79,-0.5459424331784248],[123,-7,64,-0.5542180947959423],[123,-7,65,-0.5544747784733772],[123,-7,66,-0.5531223490834236],[123,-7,67,-0.5513675026595592],[123,-7,68,-0.5506513863801956],[123,-7,69,-0.5517608299851418],[123,-7,70,-0.5541238412261009],[123,-7,71,-0.5568330250680447],[123,-7,72,-0.5598209835588932],[123,-7,73,-0.561847347766161],[123,-7,74,-0.5625875182449818],[123,-7,75,-0.561925869435072],[123,-7,76,-0.559489157050848],[123,-7,77,-0.5555406510829926],[123,-7,78,-0.5509115941822529],[123,-7,79,-0.5459424331784248],[123,-6,64,-0.5542180947959423],[123,-6,65,-0.5544747784733772],[123,-6,66,-0.5531223490834236],[123,-6,67,-0.5513675026595592],[123,-6,68,-0.5506513863801956],[123,-6,69,-0.5517608299851418],[123,-6,70,-0.5541238412261009],[123,-6,71,-0.5568330250680447],[123,-6,72,-0.5598209835588932],[123,-6,73,-0.561847347766161],[123,-6,74,-0.5625875182449818],[123,-6,75,-0.561925869435072],[123,-6,76,-0.559489157050848],[123,-6,77,-0.5555406510829926],[123,-6,78,-0.5509115941822529],[123,-6,79,-0.5459424331784248],[123,-5,64,-0.5542180947959423],[123,-5,65,-0.5544747784733772],[123,-5,66,-0.5531223490834236],[123,-5,67,-0.5513675026595592],[123,-5,68,-0.5506513863801956],[123,-5,69,-0.5517608299851418],[123,-5,70,-0.5541238412261009],[123,-5,71,-0.5568330250680447],[123,-5,72,-0.5598209835588932],[123,-5,73,-0.561847347766161],[123,-5,74,-0.5625875182449818],[123,-5,75,-0.561925869435072],[123,-5,76,-0.559489157050848],[123,-5,77,-0.5555406510829926],[123,-5,78,-0.5509115941822529],[123,-5,79,-0.5459424331784248],[123,-4,64,-0.5542180947959423],[123,-4,65,-0.5544747784733772],[123,-4,66,-0.5531223490834236],[123,-4,67,-0.5513675026595592],[123,-4,68,-0.5506513863801956],[123,-4,69,-0.5517608299851418],[123,-4,70,-0.5541238412261009],[123,-4,71,-0.5568330250680447],[123,-4,72,-0.5598209835588932],[123,-4,73,-0.561847347766161],[123,-4,74,-0.5625875182449818],[123,-4,75,-0.561925869435072],[123,-4,76,-0.559489157050848],[123,-4,77,-0.5555406510829926],[123,-4,78,-0.5509115941822529],[123,-4,79,-0.5459424331784248],[123,-3,64,-0.5542180947959423],[123,-3,65,-0.5544747784733772],[123,-3,66,-0.5531223490834236],[123,-3,67,-0.5513675026595592],[123,-3,68,-0.5506513863801956],[123,-3,69,-0.5517608299851418],[123,-3,70,-0.5541238412261009],[123,-3,71,-0.5568330250680447],[123,-3,72,-0.5598209835588932],[123,-3,73,-0.561847347766161],[123,-3,74,-0.5625875182449818],[123,-3,75,-0.561925869435072],[123,-3,76,-0.559489157050848],[123,-3,77,-0.5555406510829926],[123,-3,78,-0.5509115941822529],[123,-3,79,-0.5459424331784248],[123,-2,64,-0.5542180947959423],[123,-2,65,-0.5544747784733772],[123,-2,66,-0.5531223490834236],[123,-2,67,-0.5513675026595592],[123,-2,68,-0.5506513863801956],[123,-2,69,-0.5517608299851418],[123,-2,70,-0.5541238412261009],[123,-2,71,-0.5568330250680447],[123,-2,72,-0.5598209835588932],[123,-2,73,-0.561847347766161],[123,-2,74,-0.5625875182449818],[123,-2,75,-0.561925869435072],[123,-2,76,-0.559489157050848],[123,-2,77,-0.5555406510829926],[123,-2,78,-0.5509115941822529],[123,-2,79,-0.5459424331784248],[123,-1,64,-0.5542180947959423],[123,-1,65,-0.5544747784733772],[123,-1,66,-0.5531223490834236],[123,-1,67,-0.5513675026595592],[123,-1,68,-0.5506513863801956],[123,-1,69,-0.5517608299851418],[123,-1,70,-0.5541238412261009],[123,-1,71,-0.5568330250680447],[123,-1,72,-0.5598209835588932],[123,-1,73,-0.561847347766161],[123,-1,74,-0.5625875182449818],[123,-1,75,-0.561925869435072],[123,-1,76,-0.559489157050848],[123,-1,77,-0.5555406510829926],[123,-1,78,-0.5509115941822529],[123,-1,79,-0.5459424331784248],[123,0,64,-0.5542180947959423],[123,0,65,-0.5544747784733772],[123,0,66,-0.5531223490834236],[123,0,67,-0.5513675026595592],[123,0,68,-0.5506513863801956],[123,0,69,-0.5517608299851418],[123,0,70,-0.5541238412261009],[123,0,71,-0.5568330250680447],[123,0,72,-0.5598209835588932],[123,0,73,-0.561847347766161],[123,0,74,-0.5625875182449818],[123,0,75,-0.561925869435072],[123,0,76,-0.559489157050848],[123,0,77,-0.5555406510829926],[123,0,78,-0.5509115941822529],[123,0,79,-0.5459424331784248],[123,1,64,-0.5542180947959423],[123,1,65,-0.5544747784733772],[123,1,66,-0.5531223490834236],[123,1,67,-0.5513675026595592],[123,1,68,-0.5506513863801956],[123,1,69,-0.5517608299851418],[123,1,70,-0.5541238412261009],[123,1,71,-0.5568330250680447],[123,1,72,-0.5598209835588932],[123,1,73,-0.561847347766161],[123,1,74,-0.5625875182449818],[123,1,75,-0.561925869435072],[123,1,76,-0.559489157050848],[123,1,77,-0.5555406510829926],[123,1,78,-0.5509115941822529],[123,1,79,-0.5459424331784248],[123,2,64,-0.5542180947959423],[123,2,65,-0.5544747784733772],[123,2,66,-0.5531223490834236],[123,2,67,-0.5513675026595592],[123,2,68,-0.5506513863801956],[123,2,69,-0.5517608299851418],[123,2,70,-0.5541238412261009],[123,2,71,-0.5568330250680447],[123,2,72,-0.5598209835588932],[123,2,73,-0.561847347766161],[123,2,74,-0.5625875182449818],[123,2,75,-0.561925869435072],[123,2,76,-0.559489157050848],[123,2,77,-0.5555406510829926],[123,2,78,-0.5509115941822529],[123,2,79,-0.5459424331784248],[123,3,64,-0.5542180947959423],[123,3,65,-0.5544747784733772],[123,3,66,-0.5531223490834236],[123,3,67,-0.5513675026595592],[123,3,68,-0.5506513863801956],[123,3,69,-0.5517608299851418],[123,3,70,-0.5541238412261009],[123,3,71,-0.5568330250680447],[123,3,72,-0.5598209835588932],[123,3,73,-0.561847347766161],[123,3,74,-0.5625875182449818],[123,3,75,-0.561925869435072],[123,3,76,-0.559489157050848],[123,3,77,-0.5555406510829926],[123,3,78,-0.5509115941822529],[123,3,79,-0.5459424331784248],[123,4,64,-0.5542180947959423],[123,4,65,-0.5544747784733772],[123,4,66,-0.5531223490834236],[123,4,67,-0.5513675026595592],[123,4,68,-0.5506513863801956],[123,4,69,-0.5517608299851418],[123,4,70,-0.5541238412261009],[123,4,71,-0.5568330250680447],[123,4,72,-0.5598209835588932],[123,4,73,-0.561847347766161],[123,4,74,-0.5625875182449818],[123,4,75,-0.561925869435072],[123,4,76,-0.559489157050848],[123,4,77,-0.5555406510829926],[123,4,78,-0.5509115941822529],[123,4,79,-0.5459424331784248],[123,5,64,-0.5542180947959423],[123,5,65,-0.5544747784733772],[123,5,66,-0.5531223490834236],[123,5,67,-0.5513675026595592],[123,5,68,-0.5506513863801956],[123,5,69,-0.5517608299851418],[123,5,70,-0.5541238412261009],[123,5,71,-0.5568330250680447],[123,5,72,-0.5598209835588932],[123,5,73,-0.561847347766161],[123,5,74,-0.5625875182449818],[123,5,75,-0.561925869435072],[123,5,76,-0.559489157050848],[123,5,77,-0.5555406510829926],[123,5,78,-0.5509115941822529],[123,5,79,-0.5459424331784248],[123,6,64,-0.5542180947959423],[123,6,65,-0.5544747784733772],[123,6,66,-0.5531223490834236],[123,6,67,-0.5513675026595592],[123,6,68,-0.5506513863801956],[123,6,69,-0.5517608299851418],[123,6,70,-0.5541238412261009],[123,6,71,-0.5568330250680447],[123,6,72,-0.5598209835588932],[123,6,73,-0.561847347766161],[123,6,74,-0.5625875182449818],[123,6,75,-0.561925869435072],[123,6,76,-0.559489157050848],[123,6,77,-0.5555406510829926],[123,6,78,-0.5509115941822529],[123,6,79,-0.5459424331784248],[123,7,64,-0.5542180947959423],[123,7,65,-0.5544747784733772],[123,7,66,-0.5531223490834236],[123,7,67,-0.5513675026595592],[123,7,68,-0.5506513863801956],[123,7,69,-0.5517608299851418],[123,7,70,-0.5541238412261009],[123,7,71,-0.5568330250680447],[123,7,72,-0.5598209835588932],[123,7,73,-0.561847347766161],[123,7,74,-0.5625875182449818],[123,7,75,-0.561925869435072],[123,7,76,-0.559489157050848],[123,7,77,-0.5555406510829926],[123,7,78,-0.5509115941822529],[123,7,79,-0.5459424331784248],[123,8,64,-0.5542180947959423],[123,8,65,-0.5544747784733772],[123,8,66,-0.5531223490834236],[123,8,67,-0.5513675026595592],[123,8,68,-0.5506513863801956],[123,8,69,-0.5517608299851418],[123,8,70,-0.5541238412261009],[123,8,71,-0.5568330250680447],[123,8,72,-0.5598209835588932],[123,8,73,-0.561847347766161],[123,8,74,-0.5625875182449818],[123,8,75,-0.561925869435072],[123,8,76,-0.559489157050848],[123,8,77,-0.5555406510829926],[123,8,78,-0.5509115941822529],[123,8,79,-0.5459424331784248],[123,9,64,-0.5542180947959423],[123,9,65,-0.5544747784733772],[123,9,66,-0.5531223490834236],[123,9,67,-0.5513675026595592],[123,9,68,-0.5506513863801956],[123,9,69,-0.5517608299851418],[123,9,70,-0.5541238412261009],[123,9,71,-0.5568330250680447],[123,9,72,-0.5598209835588932],[123,9,73,-0.561847347766161],[123,9,74,-0.5625875182449818],[123,9,75,-0.561925869435072],[123,9,76,-0.559489157050848],[123,9,77,-0.5555406510829926],[123,9,78,-0.5509115941822529],[123,9,79,-0.5459424331784248],[123,10,64,-0.5542180947959423],[123,10,65,-0.5544747784733772],[123,10,66,-0.5531223490834236],[123,10,67,-0.5513675026595592],[123,10,68,-0.5506513863801956],[123,10,69,-0.5517608299851418],[123,10,70,-0.5541238412261009],[123,10,71,-0.5568330250680447],[123,10,72,-0.5598209835588932],[123,10,73,-0.561847347766161],[123,10,74,-0.5625875182449818],[123,10,75,-0.561925869435072],[123,10,76,-0.559489157050848],[123,10,77,-0.5555406510829926],[123,10,78,-0.5509115941822529],[123,10,79,-0.5459424331784248],[123,11,64,-0.5542180947959423],[123,11,65,-0.5544747784733772],[123,11,66,-0.5531223490834236],[123,11,67,-0.5513675026595592],[123,11,68,-0.5506513863801956],[123,11,69,-0.5517608299851418],[123,11,70,-0.5541238412261009],[123,11,71,-0.5568330250680447],[123,11,72,-0.5598209835588932],[123,11,73,-0.561847347766161],[123,11,74,-0.5625875182449818],[123,11,75,-0.561925869435072],[123,11,76,-0.559489157050848],[123,11,77,-0.5555406510829926],[123,11,78,-0.5509115941822529],[123,11,79,-0.5459424331784248],[123,12,64,-0.5542180947959423],[123,12,65,-0.5544747784733772],[123,12,66,-0.5531223490834236],[123,12,67,-0.5513675026595592],[123,12,68,-0.5506513863801956],[123,12,69,-0.5517608299851418],[123,12,70,-0.5541238412261009],[123,12,71,-0.5568330250680447],[123,12,72,-0.5598209835588932],[123,12,73,-0.561847347766161],[123,12,74,-0.5625875182449818],[123,12,75,-0.561925869435072],[123,12,76,-0.559489157050848],[123,12,77,-0.5555406510829926],[123,12,78,-0.5509115941822529],[123,12,79,-0.5459424331784248],[123,13,64,-0.5542180947959423],[123,13,65,-0.5544747784733772],[123,13,66,-0.5531223490834236],[123,13,67,-0.5513675026595592],[123,13,68,-0.5506513863801956],[123,13,69,-0.5517608299851418],[123,13,70,-0.5541238412261009],[123,13,71,-0.5568330250680447],[123,13,72,-0.5598209835588932],[123,13,73,-0.561847347766161],[123,13,74,-0.5625875182449818],[123,13,75,-0.561925869435072],[123,13,76,-0.559489157050848],[123,13,77,-0.5555406510829926],[123,13,78,-0.5509115941822529],[123,13,79,-0.5459424331784248],[123,14,64,-0.5542180947959423],[123,14,65,-0.5544747784733772],[123,14,66,-0.5531223490834236],[123,14,67,-0.5513675026595592],[123,14,68,-0.5506513863801956],[123,14,69,-0.5517608299851418],[123,14,70,-0.5541238412261009],[123,14,71,-0.5568330250680447],[123,14,72,-0.5598209835588932],[123,14,73,-0.561847347766161],[123,14,74,-0.5625875182449818],[123,14,75,-0.561925869435072],[123,14,76,-0.559489157050848],[123,14,77,-0.5555406510829926],[123,14,78,-0.5509115941822529],[123,14,79,-0.5459424331784248],[123,15,64,-0.5542180947959423],[123,15,65,-0.5544747784733772],[123,15,66,-0.5531223490834236],[123,15,67,-0.5513675026595592],[123,15,68,-0.5506513863801956],[123,15,69,-0.5517608299851418],[123,15,70,-0.5541238412261009],[123,15,71,-0.5568330250680447],[123,15,72,-0.5598209835588932],[123,15,73,-0.561847347766161],[123,15,74,-0.5625875182449818],[123,15,75,-0.561925869435072],[123,15,76,-0.559489157050848],[123,15,77,-0.5555406510829926],[123,15,78,-0.5509115941822529],[123,15,79,-0.5459424331784248],[123,16,64,-0.5542180947959423],[123,16,65,-0.5544747784733772],[123,16,66,-0.5531223490834236],[123,16,67,-0.5513675026595592],[123,16,68,-0.5506513863801956],[123,16,69,-0.5517608299851418],[123,16,70,-0.5541238412261009],[123,16,71,-0.5568330250680447],[123,16,72,-0.5598209835588932],[123,16,73,-0.561847347766161],[123,16,74,-0.5625875182449818],[123,16,75,-0.561925869435072],[123,16,76,-0.559489157050848],[123,16,77,-0.5555406510829926],[123,16,78,-0.5509115941822529],[123,16,79,-0.5459424331784248],[123,17,64,-0.5542180947959423],[123,17,65,-0.5544747784733772],[123,17,66,-0.5531223490834236],[123,17,67,-0.5513675026595592],[123,17,68,-0.5506513863801956],[123,17,69,-0.5517608299851418],[123,17,70,-0.5541238412261009],[123,17,71,-0.5568330250680447],[123,17,72,-0.5598209835588932],[123,17,73,-0.561847347766161],[123,17,74,-0.5625875182449818],[123,17,75,-0.561925869435072],[123,17,76,-0.559489157050848],[123,17,77,-0.5555406510829926],[123,17,78,-0.5509115941822529],[123,17,79,-0.5459424331784248],[123,18,64,-0.5542180947959423],[123,18,65,-0.5544747784733772],[123,18,66,-0.5531223490834236],[123,18,67,-0.5513675026595592],[123,18,68,-0.5506513863801956],[123,18,69,-0.5517608299851418],[123,18,70,-0.5541238412261009],[123,18,71,-0.5568330250680447],[123,18,72,-0.5598209835588932],[123,18,73,-0.561847347766161],[123,18,74,-0.5625875182449818],[123,18,75,-0.561925869435072],[123,18,76,-0.559489157050848],[123,18,77,-0.5555406510829926],[123,18,78,-0.5509115941822529],[123,18,79,-0.5459424331784248],[123,19,64,-0.5542180947959423],[123,19,65,-0.5544747784733772],[123,19,66,-0.5531223490834236],[123,19,67,-0.5513675026595592],[123,19,68,-0.5506513863801956],[123,19,69,-0.5517608299851418],[123,19,70,-0.5541238412261009],[123,19,71,-0.5568330250680447],[123,19,72,-0.5598209835588932],[123,19,73,-0.561847347766161],[123,19,74,-0.5625875182449818],[123,19,75,-0.561925869435072],[123,19,76,-0.559489157050848],[123,19,77,-0.5555406510829926],[123,19,78,-0.5509115941822529],[123,19,79,-0.5459424331784248],[123,20,64,-0.5542180947959423],[123,20,65,-0.5544747784733772],[123,20,66,-0.5531223490834236],[123,20,67,-0.5513675026595592],[123,20,68,-0.5506513863801956],[123,20,69,-0.5517608299851418],[123,20,70,-0.5541238412261009],[123,20,71,-0.5568330250680447],[123,20,72,-0.5598209835588932],[123,20,73,-0.561847347766161],[123,20,74,-0.5625875182449818],[123,20,75,-0.561925869435072],[123,20,76,-0.559489157050848],[123,20,77,-0.5555406510829926],[123,20,78,-0.5509115941822529],[123,20,79,-0.5459424331784248],[123,21,64,-0.5542180947959423],[123,21,65,-0.5544747784733772],[123,21,66,-0.5531223490834236],[123,21,67,-0.5513675026595592],[123,21,68,-0.5506513863801956],[123,21,69,-0.5517608299851418],[123,21,70,-0.5541238412261009],[123,21,71,-0.5568330250680447],[123,21,72,-0.5598209835588932],[123,21,73,-0.561847347766161],[123,21,74,-0.5625875182449818],[123,21,75,-0.561925869435072],[123,21,76,-0.559489157050848],[123,21,77,-0.5555406510829926],[123,21,78,-0.5509115941822529],[123,21,79,-0.5459424331784248],[123,22,64,-0.5542180947959423],[123,22,65,-0.5544747784733772],[123,22,66,-0.5531223490834236],[123,22,67,-0.5513675026595592],[123,22,68,-0.5506513863801956],[123,22,69,-0.5517608299851418],[123,22,70,-0.5541238412261009],[123,22,71,-0.5568330250680447],[123,22,72,-0.5598209835588932],[123,22,73,-0.561847347766161],[123,22,74,-0.5625875182449818],[123,22,75,-0.561925869435072],[123,22,76,-0.559489157050848],[123,22,77,-0.5555406510829926],[123,22,78,-0.5509115941822529],[123,22,79,-0.5459424331784248],[123,23,64,-0.5542180947959423],[123,23,65,-0.5544747784733772],[123,23,66,-0.5531223490834236],[123,23,67,-0.5513675026595592],[123,23,68,-0.5506513863801956],[123,23,69,-0.5517608299851418],[123,23,70,-0.5541238412261009],[123,23,71,-0.5568330250680447],[123,23,72,-0.5598209835588932],[123,23,73,-0.561847347766161],[123,23,74,-0.5625875182449818],[123,23,75,-0.561925869435072],[123,23,76,-0.559489157050848],[123,23,77,-0.5555406510829926],[123,23,78,-0.5509115941822529],[123,23,79,-0.5459424331784248],[123,24,64,-0.5542180947959423],[123,24,65,-0.5544747784733772],[123,24,66,-0.5531223490834236],[123,24,67,-0.5513675026595592],[123,24,68,-0.5506513863801956],[123,24,69,-0.5517608299851418],[123,24,70,-0.5541238412261009],[123,24,71,-0.5568330250680447],[123,24,72,-0.5598209835588932],[123,24,73,-0.561847347766161],[123,24,74,-0.5625875182449818],[123,24,75,-0.561925869435072],[123,24,76,-0.559489157050848],[123,24,77,-0.5555406510829926],[123,24,78,-0.5509115941822529],[123,24,79,-0.5459424331784248],[123,25,64,-0.5542180947959423],[123,25,65,-0.5544747784733772],[123,25,66,-0.5531223490834236],[123,25,67,-0.5513675026595592],[123,25,68,-0.5506513863801956],[123,25,69,-0.5517608299851418],[123,25,70,-0.5541238412261009],[123,25,71,-0.5568330250680447],[123,25,72,-0.5598209835588932],[123,25,73,-0.561847347766161],[123,25,74,-0.5625875182449818],[123,25,75,-0.561925869435072],[123,25,76,-0.559489157050848],[123,25,77,-0.5555406510829926],[123,25,78,-0.5509115941822529],[123,25,79,-0.5459424331784248],[123,26,64,-0.5542180947959423],[123,26,65,-0.5544747784733772],[123,26,66,-0.5531223490834236],[123,26,67,-0.5513675026595592],[123,26,68,-0.5506513863801956],[123,26,69,-0.5517608299851418],[123,26,70,-0.5541238412261009],[123,26,71,-0.5568330250680447],[123,26,72,-0.5598209835588932],[123,26,73,-0.561847347766161],[123,26,74,-0.5625875182449818],[123,26,75,-0.561925869435072],[123,26,76,-0.559489157050848],[123,26,77,-0.5555406510829926],[123,26,78,-0.5509115941822529],[123,26,79,-0.5459424331784248],[123,27,64,-0.5542180947959423],[123,27,65,-0.5544747784733772],[123,27,66,-0.5531223490834236],[123,27,67,-0.5513675026595592],[123,27,68,-0.5506513863801956],[123,27,69,-0.5517608299851418],[123,27,70,-0.5541238412261009],[123,27,71,-0.5568330250680447],[123,27,72,-0.5598209835588932],[123,27,73,-0.561847347766161],[123,27,74,-0.5625875182449818],[123,27,75,-0.561925869435072],[123,27,76,-0.559489157050848],[123,27,77,-0.5555406510829926],[123,27,78,-0.5509115941822529],[123,27,79,-0.5459424331784248],[123,28,64,-0.5542180947959423],[123,28,65,-0.5544747784733772],[123,28,66,-0.5531223490834236],[123,28,67,-0.5513675026595592],[123,28,68,-0.5506513863801956],[123,28,69,-0.5517608299851418],[123,28,70,-0.5541238412261009],[123,28,71,-0.5568330250680447],[123,28,72,-0.5598209835588932],[123,28,73,-0.561847347766161],[123,28,74,-0.5625875182449818],[123,28,75,-0.561925869435072],[123,28,76,-0.559489157050848],[123,28,77,-0.5555406510829926],[123,28,78,-0.5509115941822529],[123,28,79,-0.5459424331784248],[123,29,64,-0.5542180947959423],[123,29,65,-0.5544747784733772],[123,29,66,-0.5531223490834236],[123,29,67,-0.5513675026595592],[123,29,68,-0.5506513863801956],[123,29,69,-0.5517608299851418],[123,29,70,-0.5541238412261009],[123,29,71,-0.5568330250680447],[123,29,72,-0.5598209835588932],[123,29,73,-0.561847347766161],[123,29,74,-0.5625875182449818],[123,29,75,-0.561925869435072],[123,29,76,-0.559489157050848],[123,29,77,-0.5555406510829926],[123,29,78,-0.5509115941822529],[123,29,79,-0.5459424331784248],[123,30,64,-0.5542180947959423],[123,30,65,-0.5544747784733772],[123,30,66,-0.5531223490834236],[123,30,67,-0.5513675026595592],[123,30,68,-0.5506513863801956],[123,30,69,-0.5517608299851418],[123,30,70,-0.5541238412261009],[123,30,71,-0.5568330250680447],[123,30,72,-0.5598209835588932],[123,30,73,-0.561847347766161],[123,30,74,-0.5625875182449818],[123,30,75,-0.561925869435072],[123,30,76,-0.559489157050848],[123,30,77,-0.5555406510829926],[123,30,78,-0.5509115941822529],[123,30,79,-0.5459424331784248],[123,31,64,-0.5542180947959423],[123,31,65,-0.5544747784733772],[123,31,66,-0.5531223490834236],[123,31,67,-0.5513675026595592],[123,31,68,-0.5506513863801956],[123,31,69,-0.5517608299851418],[123,31,70,-0.5541238412261009],[123,31,71,-0.5568330250680447],[123,31,72,-0.5598209835588932],[123,31,73,-0.561847347766161],[123,31,74,-0.5625875182449818],[123,31,75,-0.561925869435072],[123,31,76,-0.559489157050848],[123,31,77,-0.5555406510829926],[123,31,78,-0.5509115941822529],[123,31,79,-0.5459424331784248],[123,32,64,-0.5542180947959423],[123,32,65,-0.5544747784733772],[123,32,66,-0.5531223490834236],[123,32,67,-0.5513675026595592],[123,32,68,-0.5506513863801956],[123,32,69,-0.5517608299851418],[123,32,70,-0.5541238412261009],[123,32,71,-0.5568330250680447],[123,32,72,-0.5598209835588932],[123,32,73,-0.561847347766161],[123,32,74,-0.5625875182449818],[123,32,75,-0.561925869435072],[123,32,76,-0.559489157050848],[123,32,77,-0.5555406510829926],[123,32,78,-0.5509115941822529],[123,32,79,-0.5459424331784248],[123,33,64,-0.5542180947959423],[123,33,65,-0.5544747784733772],[123,33,66,-0.5531223490834236],[123,33,67,-0.5513675026595592],[123,33,68,-0.5506513863801956],[123,33,69,-0.5517608299851418],[123,33,70,-0.5541238412261009],[123,33,71,-0.5568330250680447],[123,33,72,-0.5598209835588932],[123,33,73,-0.561847347766161],[123,33,74,-0.5625875182449818],[123,33,75,-0.561925869435072],[123,33,76,-0.559489157050848],[123,33,77,-0.5555406510829926],[123,33,78,-0.5509115941822529],[123,33,79,-0.5459424331784248],[123,34,64,-0.5542180947959423],[123,34,65,-0.5544747784733772],[123,34,66,-0.5531223490834236],[123,34,67,-0.5513675026595592],[123,34,68,-0.5506513863801956],[123,34,69,-0.5517608299851418],[123,34,70,-0.5541238412261009],[123,34,71,-0.5568330250680447],[123,34,72,-0.5598209835588932],[123,34,73,-0.561847347766161],[123,34,74,-0.5625875182449818],[123,34,75,-0.561925869435072],[123,34,76,-0.559489157050848],[123,34,77,-0.5555406510829926],[123,34,78,-0.5509115941822529],[123,34,79,-0.5459424331784248],[123,35,64,-0.5542180947959423],[123,35,65,-0.5544747784733772],[123,35,66,-0.5531223490834236],[123,35,67,-0.5513675026595592],[123,35,68,-0.5506513863801956],[123,35,69,-0.5517608299851418],[123,35,70,-0.5541238412261009],[123,35,71,-0.5568330250680447],[123,35,72,-0.5598209835588932],[123,35,73,-0.561847347766161],[123,35,74,-0.5625875182449818],[123,35,75,-0.561925869435072],[123,35,76,-0.559489157050848],[123,35,77,-0.5555406510829926],[123,35,78,-0.5509115941822529],[123,35,79,-0.5459424331784248],[123,36,64,-0.5542180947959423],[123,36,65,-0.5544747784733772],[123,36,66,-0.5531223490834236],[123,36,67,-0.5513675026595592],[123,36,68,-0.5506513863801956],[123,36,69,-0.5517608299851418],[123,36,70,-0.5541238412261009],[123,36,71,-0.5568330250680447],[123,36,72,-0.5598209835588932],[123,36,73,-0.561847347766161],[123,36,74,-0.5625875182449818],[123,36,75,-0.561925869435072],[123,36,76,-0.559489157050848],[123,36,77,-0.5555406510829926],[123,36,78,-0.5509115941822529],[123,36,79,-0.5459424331784248],[123,37,64,-0.5542180947959423],[123,37,65,-0.5544747784733772],[123,37,66,-0.5531223490834236],[123,37,67,-0.5513675026595592],[123,37,68,-0.5506513863801956],[123,37,69,-0.5517608299851418],[123,37,70,-0.5541238412261009],[123,37,71,-0.5568330250680447],[123,37,72,-0.5598209835588932],[123,37,73,-0.561847347766161],[123,37,74,-0.5625875182449818],[123,37,75,-0.561925869435072],[123,37,76,-0.559489157050848],[123,37,77,-0.5555406510829926],[123,37,78,-0.5509115941822529],[123,37,79,-0.5459424331784248],[123,38,64,-0.5542180947959423],[123,38,65,-0.5544747784733772],[123,38,66,-0.5531223490834236],[123,38,67,-0.5513675026595592],[123,38,68,-0.5506513863801956],[123,38,69,-0.5517608299851418],[123,38,70,-0.5541238412261009],[123,38,71,-0.5568330250680447],[123,38,72,-0.5598209835588932],[123,38,73,-0.561847347766161],[123,38,74,-0.5625875182449818],[123,38,75,-0.561925869435072],[123,38,76,-0.559489157050848],[123,38,77,-0.5555406510829926],[123,38,78,-0.5509115941822529],[123,38,79,-0.5459424331784248],[123,39,64,-0.5542180947959423],[123,39,65,-0.5544747784733772],[123,39,66,-0.5531223490834236],[123,39,67,-0.5513675026595592],[123,39,68,-0.5506513863801956],[123,39,69,-0.5517608299851418],[123,39,70,-0.5541238412261009],[123,39,71,-0.5568330250680447],[123,39,72,-0.5598209835588932],[123,39,73,-0.561847347766161],[123,39,74,-0.5625875182449818],[123,39,75,-0.561925869435072],[123,39,76,-0.559489157050848],[123,39,77,-0.5555406510829926],[123,39,78,-0.5509115941822529],[123,39,79,-0.5459424331784248],[123,40,64,-0.5542180947959423],[123,40,65,-0.5544747784733772],[123,40,66,-0.5531223490834236],[123,40,67,-0.5513675026595592],[123,40,68,-0.5506513863801956],[123,40,69,-0.5517608299851418],[123,40,70,-0.5541238412261009],[123,40,71,-0.5568330250680447],[123,40,72,-0.5598209835588932],[123,40,73,-0.561847347766161],[123,40,74,-0.5625875182449818],[123,40,75,-0.561925869435072],[123,40,76,-0.559489157050848],[123,40,77,-0.5555406510829926],[123,40,78,-0.5509115941822529],[123,40,79,-0.5459424331784248],[123,41,64,-0.5542180947959423],[123,41,65,-0.5544747784733772],[123,41,66,-0.5531223490834236],[123,41,67,-0.5513675026595592],[123,41,68,-0.5506513863801956],[123,41,69,-0.5517608299851418],[123,41,70,-0.5541238412261009],[123,41,71,-0.5568330250680447],[123,41,72,-0.5598209835588932],[123,41,73,-0.561847347766161],[123,41,74,-0.5625875182449818],[123,41,75,-0.561925869435072],[123,41,76,-0.559489157050848],[123,41,77,-0.5555406510829926],[123,41,78,-0.5509115941822529],[123,41,79,-0.5459424331784248],[123,42,64,-0.5542180947959423],[123,42,65,-0.5544747784733772],[123,42,66,-0.5531223490834236],[123,42,67,-0.5513675026595592],[123,42,68,-0.5506513863801956],[123,42,69,-0.5517608299851418],[123,42,70,-0.5541238412261009],[123,42,71,-0.5568330250680447],[123,42,72,-0.5598209835588932],[123,42,73,-0.561847347766161],[123,42,74,-0.5625875182449818],[123,42,75,-0.561925869435072],[123,42,76,-0.559489157050848],[123,42,77,-0.5555406510829926],[123,42,78,-0.5509115941822529],[123,42,79,-0.5459424331784248],[123,43,64,-0.5542180947959423],[123,43,65,-0.5544747784733772],[123,43,66,-0.5531223490834236],[123,43,67,-0.5513675026595592],[123,43,68,-0.5506513863801956],[123,43,69,-0.5517608299851418],[123,43,70,-0.5541238412261009],[123,43,71,-0.5568330250680447],[123,43,72,-0.5598209835588932],[123,43,73,-0.561847347766161],[123,43,74,-0.5625875182449818],[123,43,75,-0.561925869435072],[123,43,76,-0.559489157050848],[123,43,77,-0.5555406510829926],[123,43,78,-0.5509115941822529],[123,43,79,-0.5459424331784248],[123,44,64,-0.5542180947959423],[123,44,65,-0.5544747784733772],[123,44,66,-0.5531223490834236],[123,44,67,-0.5513675026595592],[123,44,68,-0.5506513863801956],[123,44,69,-0.5517608299851418],[123,44,70,-0.5541238412261009],[123,44,71,-0.5568330250680447],[123,44,72,-0.5598209835588932],[123,44,73,-0.561847347766161],[123,44,74,-0.5625875182449818],[123,44,75,-0.561925869435072],[123,44,76,-0.559489157050848],[123,44,77,-0.5555406510829926],[123,44,78,-0.5509115941822529],[123,44,79,-0.5459424331784248],[123,45,64,-0.5542180947959423],[123,45,65,-0.5544747784733772],[123,45,66,-0.5531223490834236],[123,45,67,-0.5513675026595592],[123,45,68,-0.5506513863801956],[123,45,69,-0.5517608299851418],[123,45,70,-0.5541238412261009],[123,45,71,-0.5568330250680447],[123,45,72,-0.5598209835588932],[123,45,73,-0.561847347766161],[123,45,74,-0.5625875182449818],[123,45,75,-0.561925869435072],[123,45,76,-0.559489157050848],[123,45,77,-0.5555406510829926],[123,45,78,-0.5509115941822529],[123,45,79,-0.5459424331784248],[123,46,64,-0.5542180947959423],[123,46,65,-0.5544747784733772],[123,46,66,-0.5531223490834236],[123,46,67,-0.5513675026595592],[123,46,68,-0.5506513863801956],[123,46,69,-0.5517608299851418],[123,46,70,-0.5541238412261009],[123,46,71,-0.5568330250680447],[123,46,72,-0.5598209835588932],[123,46,73,-0.561847347766161],[123,46,74,-0.5625875182449818],[123,46,75,-0.561925869435072],[123,46,76,-0.559489157050848],[123,46,77,-0.5555406510829926],[123,46,78,-0.5509115941822529],[123,46,79,-0.5459424331784248],[123,47,64,-0.5542180947959423],[123,47,65,-0.5544747784733772],[123,47,66,-0.5531223490834236],[123,47,67,-0.5513675026595592],[123,47,68,-0.5506513863801956],[123,47,69,-0.5517608299851418],[123,47,70,-0.5541238412261009],[123,47,71,-0.5568330250680447],[123,47,72,-0.5598209835588932],[123,47,73,-0.561847347766161],[123,47,74,-0.5625875182449818],[123,47,75,-0.561925869435072],[123,47,76,-0.559489157050848],[123,47,77,-0.5555406510829926],[123,47,78,-0.5509115941822529],[123,47,79,-0.5459424331784248],[123,48,64,-0.5542180947959423],[123,48,65,-0.5544747784733772],[123,48,66,-0.5531223490834236],[123,48,67,-0.5513675026595592],[123,48,68,-0.5506513863801956],[123,48,69,-0.5517608299851418],[123,48,70,-0.5541238412261009],[123,48,71,-0.5568330250680447],[123,48,72,-0.5598209835588932],[123,48,73,-0.561847347766161],[123,48,74,-0.5625875182449818],[123,48,75,-0.561925869435072],[123,48,76,-0.559489157050848],[123,48,77,-0.5555406510829926],[123,48,78,-0.5509115941822529],[123,48,79,-0.5459424331784248],[123,49,64,-0.5542180947959423],[123,49,65,-0.5544747784733772],[123,49,66,-0.5531223490834236],[123,49,67,-0.5513675026595592],[123,49,68,-0.5506513863801956],[123,49,69,-0.5517608299851418],[123,49,70,-0.5541238412261009],[123,49,71,-0.5568330250680447],[123,49,72,-0.5598209835588932],[123,49,73,-0.561847347766161],[123,49,74,-0.5625875182449818],[123,49,75,-0.561925869435072],[123,49,76,-0.559489157050848],[123,49,77,-0.5555406510829926],[123,49,78,-0.5509115941822529],[123,49,79,-0.5459424331784248],[123,50,64,-0.5542180947959423],[123,50,65,-0.5544747784733772],[123,50,66,-0.5531223490834236],[123,50,67,-0.5513675026595592],[123,50,68,-0.5506513863801956],[123,50,69,-0.5517608299851418],[123,50,70,-0.5541238412261009],[123,50,71,-0.5568330250680447],[123,50,72,-0.5598209835588932],[123,50,73,-0.561847347766161],[123,50,74,-0.5625875182449818],[123,50,75,-0.561925869435072],[123,50,76,-0.559489157050848],[123,50,77,-0.5555406510829926],[123,50,78,-0.5509115941822529],[123,50,79,-0.5459424331784248],[123,51,64,-0.5542180947959423],[123,51,65,-0.5544747784733772],[123,51,66,-0.5531223490834236],[123,51,67,-0.5513675026595592],[123,51,68,-0.5506513863801956],[123,51,69,-0.5517608299851418],[123,51,70,-0.5541238412261009],[123,51,71,-0.5568330250680447],[123,51,72,-0.5598209835588932],[123,51,73,-0.561847347766161],[123,51,74,-0.5625875182449818],[123,51,75,-0.561925869435072],[123,51,76,-0.559489157050848],[123,51,77,-0.5555406510829926],[123,51,78,-0.5509115941822529],[123,51,79,-0.5459424331784248],[123,52,64,-0.5542180947959423],[123,52,65,-0.5544747784733772],[123,52,66,-0.5531223490834236],[123,52,67,-0.5513675026595592],[123,52,68,-0.5506513863801956],[123,52,69,-0.5517608299851418],[123,52,70,-0.5541238412261009],[123,52,71,-0.5568330250680447],[123,52,72,-0.5598209835588932],[123,52,73,-0.561847347766161],[123,52,74,-0.5625875182449818],[123,52,75,-0.561925869435072],[123,52,76,-0.559489157050848],[123,52,77,-0.5555406510829926],[123,52,78,-0.5509115941822529],[123,52,79,-0.5459424331784248],[123,53,64,-0.5542180947959423],[123,53,65,-0.5544747784733772],[123,53,66,-0.5531223490834236],[123,53,67,-0.5513675026595592],[123,53,68,-0.5506513863801956],[123,53,69,-0.5517608299851418],[123,53,70,-0.5541238412261009],[123,53,71,-0.5568330250680447],[123,53,72,-0.5598209835588932],[123,53,73,-0.561847347766161],[123,53,74,-0.5625875182449818],[123,53,75,-0.561925869435072],[123,53,76,-0.559489157050848],[123,53,77,-0.5555406510829926],[123,53,78,-0.5509115941822529],[123,53,79,-0.5459424331784248],[123,54,64,-0.5542180947959423],[123,54,65,-0.5544747784733772],[123,54,66,-0.5531223490834236],[123,54,67,-0.5513675026595592],[123,54,68,-0.5506513863801956],[123,54,69,-0.5517608299851418],[123,54,70,-0.5541238412261009],[123,54,71,-0.5568330250680447],[123,54,72,-0.5598209835588932],[123,54,73,-0.561847347766161],[123,54,74,-0.5625875182449818],[123,54,75,-0.561925869435072],[123,54,76,-0.559489157050848],[123,54,77,-0.5555406510829926],[123,54,78,-0.5509115941822529],[123,54,79,-0.5459424331784248],[123,55,64,-0.5542180947959423],[123,55,65,-0.5544747784733772],[123,55,66,-0.5531223490834236],[123,55,67,-0.5513675026595592],[123,55,68,-0.5506513863801956],[123,55,69,-0.5517608299851418],[123,55,70,-0.5541238412261009],[123,55,71,-0.5568330250680447],[123,55,72,-0.5598209835588932],[123,55,73,-0.561847347766161],[123,55,74,-0.5625875182449818],[123,55,75,-0.561925869435072],[123,55,76,-0.559489157050848],[123,55,77,-0.5555406510829926],[123,55,78,-0.5509115941822529],[123,55,79,-0.5459424331784248],[123,56,64,-0.5542180947959423],[123,56,65,-0.5544747784733772],[123,56,66,-0.5531223490834236],[123,56,67,-0.5513675026595592],[123,56,68,-0.5506513863801956],[123,56,69,-0.5517608299851418],[123,56,70,-0.5541238412261009],[123,56,71,-0.5568330250680447],[123,56,72,-0.5598209835588932],[123,56,73,-0.561847347766161],[123,56,74,-0.5625875182449818],[123,56,75,-0.561925869435072],[123,56,76,-0.559489157050848],[123,56,77,-0.5555406510829926],[123,56,78,-0.5509115941822529],[123,56,79,-0.5459424331784248],[123,57,64,-0.5542180947959423],[123,57,65,-0.5544747784733772],[123,57,66,-0.5531223490834236],[123,57,67,-0.5513675026595592],[123,57,68,-0.5506513863801956],[123,57,69,-0.5517608299851418],[123,57,70,-0.5541238412261009],[123,57,71,-0.5568330250680447],[123,57,72,-0.5598209835588932],[123,57,73,-0.561847347766161],[123,57,74,-0.5625875182449818],[123,57,75,-0.561925869435072],[123,57,76,-0.559489157050848],[123,57,77,-0.5555406510829926],[123,57,78,-0.5509115941822529],[123,57,79,-0.5459424331784248],[123,58,64,-0.5542180947959423],[123,58,65,-0.5544747784733772],[123,58,66,-0.5531223490834236],[123,58,67,-0.5513675026595592],[123,58,68,-0.5506513863801956],[123,58,69,-0.5517608299851418],[123,58,70,-0.5541238412261009],[123,58,71,-0.5568330250680447],[123,58,72,-0.5598209835588932],[123,58,73,-0.561847347766161],[123,58,74,-0.5625875182449818],[123,58,75,-0.561925869435072],[123,58,76,-0.559489157050848],[123,58,77,-0.5555406510829926],[123,58,78,-0.5509115941822529],[123,58,79,-0.5459424331784248],[123,59,64,-0.5542180947959423],[123,59,65,-0.5544747784733772],[123,59,66,-0.5531223490834236],[123,59,67,-0.5513675026595592],[123,59,68,-0.5506513863801956],[123,59,69,-0.5517608299851418],[123,59,70,-0.5541238412261009],[123,59,71,-0.5568330250680447],[123,59,72,-0.5598209835588932],[123,59,73,-0.561847347766161],[123,59,74,-0.5625875182449818],[123,59,75,-0.561925869435072],[123,59,76,-0.559489157050848],[123,59,77,-0.5555406510829926],[123,59,78,-0.5509115941822529],[123,59,79,-0.5459424331784248],[123,60,64,-0.5542180947959423],[123,60,65,-0.5544747784733772],[123,60,66,-0.5531223490834236],[123,60,67,-0.5513675026595592],[123,60,68,-0.5506513863801956],[123,60,69,-0.5517608299851418],[123,60,70,-0.5541238412261009],[123,60,71,-0.5568330250680447],[123,60,72,-0.5598209835588932],[123,60,73,-0.561847347766161],[123,60,74,-0.5625875182449818],[123,60,75,-0.561925869435072],[123,60,76,-0.559489157050848],[123,60,77,-0.5555406510829926],[123,60,78,-0.5509115941822529],[123,60,79,-0.5459424331784248],[123,61,64,-0.5542180947959423],[123,61,65,-0.5544747784733772],[123,61,66,-0.5531223490834236],[123,61,67,-0.5513675026595592],[123,61,68,-0.5506513863801956],[123,61,69,-0.5517608299851418],[123,61,70,-0.5541238412261009],[123,61,71,-0.5568330250680447],[123,61,72,-0.5598209835588932],[123,61,73,-0.561847347766161],[123,61,74,-0.5625875182449818],[123,61,75,-0.561925869435072],[123,61,76,-0.559489157050848],[123,61,77,-0.5555406510829926],[123,61,78,-0.5509115941822529],[123,61,79,-0.5459424331784248],[123,62,64,-0.5542180947959423],[123,62,65,-0.5544747784733772],[123,62,66,-0.5531223490834236],[123,62,67,-0.5513675026595592],[123,62,68,-0.5506513863801956],[123,62,69,-0.5517608299851418],[123,62,70,-0.5541238412261009],[123,62,71,-0.5568330250680447],[123,62,72,-0.5598209835588932],[123,62,73,-0.561847347766161],[123,62,74,-0.5625875182449818],[123,62,75,-0.561925869435072],[123,62,76,-0.559489157050848],[123,62,77,-0.5555406510829926],[123,62,78,-0.5509115941822529],[123,62,79,-0.5459424331784248],[123,63,64,-0.5542180947959423],[123,63,65,-0.5544747784733772],[123,63,66,-0.5531223490834236],[123,63,67,-0.5513675026595592],[123,63,68,-0.5506513863801956],[123,63,69,-0.5517608299851418],[123,63,70,-0.5541238412261009],[123,63,71,-0.5568330250680447],[123,63,72,-0.5598209835588932],[123,63,73,-0.561847347766161],[123,63,74,-0.5625875182449818],[123,63,75,-0.561925869435072],[123,63,76,-0.559489157050848],[123,63,77,-0.5555406510829926],[123,63,78,-0.5509115941822529],[123,63,79,-0.5459424331784248],[123,64,64,-0.5542180947959423],[123,64,65,-0.5544747784733772],[123,64,66,-0.5531223490834236],[123,64,67,-0.5513675026595592],[123,64,68,-0.5506513863801956],[123,64,69,-0.5517608299851418],[123,64,70,-0.5541238412261009],[123,64,71,-0.5568330250680447],[123,64,72,-0.5598209835588932],[123,64,73,-0.561847347766161],[123,64,74,-0.5625875182449818],[123,64,75,-0.561925869435072],[123,64,76,-0.559489157050848],[123,64,77,-0.5555406510829926],[123,64,78,-0.5509115941822529],[123,64,79,-0.5459424331784248],[123,65,64,-0.5542180947959423],[123,65,65,-0.5544747784733772],[123,65,66,-0.5531223490834236],[123,65,67,-0.5513675026595592],[123,65,68,-0.5506513863801956],[123,65,69,-0.5517608299851418],[123,65,70,-0.5541238412261009],[123,65,71,-0.5568330250680447],[123,65,72,-0.5598209835588932],[123,65,73,-0.561847347766161],[123,65,74,-0.5625875182449818],[123,65,75,-0.561925869435072],[123,65,76,-0.559489157050848],[123,65,77,-0.5555406510829926],[123,65,78,-0.5509115941822529],[123,65,79,-0.5459424331784248],[123,66,64,-0.5542180947959423],[123,66,65,-0.5544747784733772],[123,66,66,-0.5531223490834236],[123,66,67,-0.5513675026595592],[123,66,68,-0.5506513863801956],[123,66,69,-0.5517608299851418],[123,66,70,-0.5541238412261009],[123,66,71,-0.5568330250680447],[123,66,72,-0.5598209835588932],[123,66,73,-0.561847347766161],[123,66,74,-0.5625875182449818],[123,66,75,-0.561925869435072],[123,66,76,-0.559489157050848],[123,66,77,-0.5555406510829926],[123,66,78,-0.5509115941822529],[123,66,79,-0.5459424331784248],[123,67,64,-0.5542180947959423],[123,67,65,-0.5544747784733772],[123,67,66,-0.5531223490834236],[123,67,67,-0.5513675026595592],[123,67,68,-0.5506513863801956],[123,67,69,-0.5517608299851418],[123,67,70,-0.5541238412261009],[123,67,71,-0.5568330250680447],[123,67,72,-0.5598209835588932],[123,67,73,-0.561847347766161],[123,67,74,-0.5625875182449818],[123,67,75,-0.561925869435072],[123,67,76,-0.559489157050848],[123,67,77,-0.5555406510829926],[123,67,78,-0.5509115941822529],[123,67,79,-0.5459424331784248],[123,68,64,-0.5542180947959423],[123,68,65,-0.5544747784733772],[123,68,66,-0.5531223490834236],[123,68,67,-0.5513675026595592],[123,68,68,-0.5506513863801956],[123,68,69,-0.5517608299851418],[123,68,70,-0.5541238412261009],[123,68,71,-0.5568330250680447],[123,68,72,-0.5598209835588932],[123,68,73,-0.561847347766161],[123,68,74,-0.5625875182449818],[123,68,75,-0.561925869435072],[123,68,76,-0.559489157050848],[123,68,77,-0.5555406510829926],[123,68,78,-0.5509115941822529],[123,68,79,-0.5459424331784248],[123,69,64,-0.5542180947959423],[123,69,65,-0.5544747784733772],[123,69,66,-0.5531223490834236],[123,69,67,-0.5513675026595592],[123,69,68,-0.5506513863801956],[123,69,69,-0.5517608299851418],[123,69,70,-0.5541238412261009],[123,69,71,-0.5568330250680447],[123,69,72,-0.5598209835588932],[123,69,73,-0.561847347766161],[123,69,74,-0.5625875182449818],[123,69,75,-0.561925869435072],[123,69,76,-0.559489157050848],[123,69,77,-0.5555406510829926],[123,69,78,-0.5509115941822529],[123,69,79,-0.5459424331784248],[123,70,64,-0.5542180947959423],[123,70,65,-0.5544747784733772],[123,70,66,-0.5531223490834236],[123,70,67,-0.5513675026595592],[123,70,68,-0.5506513863801956],[123,70,69,-0.5517608299851418],[123,70,70,-0.5541238412261009],[123,70,71,-0.5568330250680447],[123,70,72,-0.5598209835588932],[123,70,73,-0.561847347766161],[123,70,74,-0.5625875182449818],[123,70,75,-0.561925869435072],[123,70,76,-0.559489157050848],[123,70,77,-0.5555406510829926],[123,70,78,-0.5509115941822529],[123,70,79,-0.5459424331784248],[123,71,64,-0.5542180947959423],[123,71,65,-0.5544747784733772],[123,71,66,-0.5531223490834236],[123,71,67,-0.5513675026595592],[123,71,68,-0.5506513863801956],[123,71,69,-0.5517608299851418],[123,71,70,-0.5541238412261009],[123,71,71,-0.5568330250680447],[123,71,72,-0.5598209835588932],[123,71,73,-0.561847347766161],[123,71,74,-0.5625875182449818],[123,71,75,-0.561925869435072],[123,71,76,-0.559489157050848],[123,71,77,-0.5555406510829926],[123,71,78,-0.5509115941822529],[123,71,79,-0.5459424331784248],[123,72,64,-0.5542180947959423],[123,72,65,-0.5544747784733772],[123,72,66,-0.5531223490834236],[123,72,67,-0.5513675026595592],[123,72,68,-0.5506513863801956],[123,72,69,-0.5517608299851418],[123,72,70,-0.5541238412261009],[123,72,71,-0.5568330250680447],[123,72,72,-0.5598209835588932],[123,72,73,-0.561847347766161],[123,72,74,-0.5625875182449818],[123,72,75,-0.561925869435072],[123,72,76,-0.559489157050848],[123,72,77,-0.5555406510829926],[123,72,78,-0.5509115941822529],[123,72,79,-0.5459424331784248],[123,73,64,-0.5542180947959423],[123,73,65,-0.5544747784733772],[123,73,66,-0.5531223490834236],[123,73,67,-0.5513675026595592],[123,73,68,-0.5506513863801956],[123,73,69,-0.5517608299851418],[123,73,70,-0.5541238412261009],[123,73,71,-0.5568330250680447],[123,73,72,-0.5598209835588932],[123,73,73,-0.561847347766161],[123,73,74,-0.5625875182449818],[123,73,75,-0.561925869435072],[123,73,76,-0.559489157050848],[123,73,77,-0.5555406510829926],[123,73,78,-0.5509115941822529],[123,73,79,-0.5459424331784248],[123,74,64,-0.5542180947959423],[123,74,65,-0.5544747784733772],[123,74,66,-0.5531223490834236],[123,74,67,-0.5513675026595592],[123,74,68,-0.5506513863801956],[123,74,69,-0.5517608299851418],[123,74,70,-0.5541238412261009],[123,74,71,-0.5568330250680447],[123,74,72,-0.5598209835588932],[123,74,73,-0.561847347766161],[123,74,74,-0.5625875182449818],[123,74,75,-0.561925869435072],[123,74,76,-0.559489157050848],[123,74,77,-0.5555406510829926],[123,74,78,-0.5509115941822529],[123,74,79,-0.5459424331784248],[123,75,64,-0.5542180947959423],[123,75,65,-0.5544747784733772],[123,75,66,-0.5531223490834236],[123,75,67,-0.5513675026595592],[123,75,68,-0.5506513863801956],[123,75,69,-0.5517608299851418],[123,75,70,-0.5541238412261009],[123,75,71,-0.5568330250680447],[123,75,72,-0.5598209835588932],[123,75,73,-0.561847347766161],[123,75,74,-0.5625875182449818],[123,75,75,-0.561925869435072],[123,75,76,-0.559489157050848],[123,75,77,-0.5555406510829926],[123,75,78,-0.5509115941822529],[123,75,79,-0.5459424331784248],[123,76,64,-0.5542180947959423],[123,76,65,-0.5544747784733772],[123,76,66,-0.5531223490834236],[123,76,67,-0.5513675026595592],[123,76,68,-0.5506513863801956],[123,76,69,-0.5517608299851418],[123,76,70,-0.5541238412261009],[123,76,71,-0.5568330250680447],[123,76,72,-0.5598209835588932],[123,76,73,-0.561847347766161],[123,76,74,-0.5625875182449818],[123,76,75,-0.561925869435072],[123,76,76,-0.559489157050848],[123,76,77,-0.5555406510829926],[123,76,78,-0.5509115941822529],[123,76,79,-0.5459424331784248],[123,77,64,-0.5542180947959423],[123,77,65,-0.5544747784733772],[123,77,66,-0.5531223490834236],[123,77,67,-0.5513675026595592],[123,77,68,-0.5506513863801956],[123,77,69,-0.5517608299851418],[123,77,70,-0.5541238412261009],[123,77,71,-0.5568330250680447],[123,77,72,-0.5598209835588932],[123,77,73,-0.561847347766161],[123,77,74,-0.5625875182449818],[123,77,75,-0.561925869435072],[123,77,76,-0.559489157050848],[123,77,77,-0.5555406510829926],[123,77,78,-0.5509115941822529],[123,77,79,-0.5459424331784248],[123,78,64,-0.5542180947959423],[123,78,65,-0.5544747784733772],[123,78,66,-0.5531223490834236],[123,78,67,-0.5513675026595592],[123,78,68,-0.5506513863801956],[123,78,69,-0.5517608299851418],[123,78,70,-0.5541238412261009],[123,78,71,-0.5568330250680447],[123,78,72,-0.5598209835588932],[123,78,73,-0.561847347766161],[123,78,74,-0.5625875182449818],[123,78,75,-0.561925869435072],[123,78,76,-0.559489157050848],[123,78,77,-0.5555406510829926],[123,78,78,-0.5509115941822529],[123,78,79,-0.5459424331784248],[123,79,64,-0.5542180947959423],[123,79,65,-0.5544747784733772],[123,79,66,-0.5531223490834236],[123,79,67,-0.5513675026595592],[123,79,68,-0.5506513863801956],[123,79,69,-0.5517608299851418],[123,79,70,-0.5541238412261009],[123,79,71,-0.5568330250680447],[123,79,72,-0.5598209835588932],[123,79,73,-0.561847347766161],[123,79,74,-0.5625875182449818],[123,79,75,-0.561925869435072],[123,79,76,-0.559489157050848],[123,79,77,-0.5555406510829926],[123,79,78,-0.5509115941822529],[123,79,79,-0.5459424331784248],[123,80,64,-0.5542180947959423],[123,80,65,-0.5544747784733772],[123,80,66,-0.5531223490834236],[123,80,67,-0.5513675026595592],[123,80,68,-0.5506513863801956],[123,80,69,-0.5517608299851418],[123,80,70,-0.5541238412261009],[123,80,71,-0.5568330250680447],[123,80,72,-0.5598209835588932],[123,80,73,-0.561847347766161],[123,80,74,-0.5625875182449818],[123,80,75,-0.561925869435072],[123,80,76,-0.559489157050848],[123,80,77,-0.5555406510829926],[123,80,78,-0.5509115941822529],[123,80,79,-0.5459424331784248],[123,81,64,-0.5542180947959423],[123,81,65,-0.5544747784733772],[123,81,66,-0.5531223490834236],[123,81,67,-0.5513675026595592],[123,81,68,-0.5506513863801956],[123,81,69,-0.5517608299851418],[123,81,70,-0.5541238412261009],[123,81,71,-0.5568330250680447],[123,81,72,-0.5598209835588932],[123,81,73,-0.561847347766161],[123,81,74,-0.5625875182449818],[123,81,75,-0.561925869435072],[123,81,76,-0.559489157050848],[123,81,77,-0.5555406510829926],[123,81,78,-0.5509115941822529],[123,81,79,-0.5459424331784248],[123,82,64,-0.5542180947959423],[123,82,65,-0.5544747784733772],[123,82,66,-0.5531223490834236],[123,82,67,-0.5513675026595592],[123,82,68,-0.5506513863801956],[123,82,69,-0.5517608299851418],[123,82,70,-0.5541238412261009],[123,82,71,-0.5568330250680447],[123,82,72,-0.5598209835588932],[123,82,73,-0.561847347766161],[123,82,74,-0.5625875182449818],[123,82,75,-0.561925869435072],[123,82,76,-0.559489157050848],[123,82,77,-0.5555406510829926],[123,82,78,-0.5509115941822529],[123,82,79,-0.5459424331784248],[123,83,64,-0.5542180947959423],[123,83,65,-0.5544747784733772],[123,83,66,-0.5531223490834236],[123,83,67,-0.5513675026595592],[123,83,68,-0.5506513863801956],[123,83,69,-0.5517608299851418],[123,83,70,-0.5541238412261009],[123,83,71,-0.5568330250680447],[123,83,72,-0.5598209835588932],[123,83,73,-0.561847347766161],[123,83,74,-0.5625875182449818],[123,83,75,-0.561925869435072],[123,83,76,-0.559489157050848],[123,83,77,-0.5555406510829926],[123,83,78,-0.5509115941822529],[123,83,79,-0.5459424331784248],[123,84,64,-0.5542180947959423],[123,84,65,-0.5544747784733772],[123,84,66,-0.5531223490834236],[123,84,67,-0.5513675026595592],[123,84,68,-0.5506513863801956],[123,84,69,-0.5517608299851418],[123,84,70,-0.5541238412261009],[123,84,71,-0.5568330250680447],[123,84,72,-0.5598209835588932],[123,84,73,-0.561847347766161],[123,84,74,-0.5625875182449818],[123,84,75,-0.561925869435072],[123,84,76,-0.559489157050848],[123,84,77,-0.5555406510829926],[123,84,78,-0.5509115941822529],[123,84,79,-0.5459424331784248],[123,85,64,-0.5542180947959423],[123,85,65,-0.5544747784733772],[123,85,66,-0.5531223490834236],[123,85,67,-0.5513675026595592],[123,85,68,-0.5506513863801956],[123,85,69,-0.5517608299851418],[123,85,70,-0.5541238412261009],[123,85,71,-0.5568330250680447],[123,85,72,-0.5598209835588932],[123,85,73,-0.561847347766161],[123,85,74,-0.5625875182449818],[123,85,75,-0.561925869435072],[123,85,76,-0.559489157050848],[123,85,77,-0.5555406510829926],[123,85,78,-0.5509115941822529],[123,85,79,-0.5459424331784248],[123,86,64,-0.5542180947959423],[123,86,65,-0.5544747784733772],[123,86,66,-0.5531223490834236],[123,86,67,-0.5513675026595592],[123,86,68,-0.5506513863801956],[123,86,69,-0.5517608299851418],[123,86,70,-0.5541238412261009],[123,86,71,-0.5568330250680447],[123,86,72,-0.5598209835588932],[123,86,73,-0.561847347766161],[123,86,74,-0.5625875182449818],[123,86,75,-0.561925869435072],[123,86,76,-0.559489157050848],[123,86,77,-0.5555406510829926],[123,86,78,-0.5509115941822529],[123,86,79,-0.5459424331784248],[123,87,64,-0.5542180947959423],[123,87,65,-0.5544747784733772],[123,87,66,-0.5531223490834236],[123,87,67,-0.5513675026595592],[123,87,68,-0.5506513863801956],[123,87,69,-0.5517608299851418],[123,87,70,-0.5541238412261009],[123,87,71,-0.5568330250680447],[123,87,72,-0.5598209835588932],[123,87,73,-0.561847347766161],[123,87,74,-0.5625875182449818],[123,87,75,-0.561925869435072],[123,87,76,-0.559489157050848],[123,87,77,-0.5555406510829926],[123,87,78,-0.5509115941822529],[123,87,79,-0.5459424331784248],[123,88,64,-0.5542180947959423],[123,88,65,-0.5544747784733772],[123,88,66,-0.5531223490834236],[123,88,67,-0.5513675026595592],[123,88,68,-0.5506513863801956],[123,88,69,-0.5517608299851418],[123,88,70,-0.5541238412261009],[123,88,71,-0.5568330250680447],[123,88,72,-0.5598209835588932],[123,88,73,-0.561847347766161],[123,88,74,-0.5625875182449818],[123,88,75,-0.561925869435072],[123,88,76,-0.559489157050848],[123,88,77,-0.5555406510829926],[123,88,78,-0.5509115941822529],[123,88,79,-0.5459424331784248],[123,89,64,-0.5542180947959423],[123,89,65,-0.5544747784733772],[123,89,66,-0.5531223490834236],[123,89,67,-0.5513675026595592],[123,89,68,-0.5506513863801956],[123,89,69,-0.5517608299851418],[123,89,70,-0.5541238412261009],[123,89,71,-0.5568330250680447],[123,89,72,-0.5598209835588932],[123,89,73,-0.561847347766161],[123,89,74,-0.5625875182449818],[123,89,75,-0.561925869435072],[123,89,76,-0.559489157050848],[123,89,77,-0.5555406510829926],[123,89,78,-0.5509115941822529],[123,89,79,-0.5459424331784248],[123,90,64,-0.5542180947959423],[123,90,65,-0.5544747784733772],[123,90,66,-0.5531223490834236],[123,90,67,-0.5513675026595592],[123,90,68,-0.5506513863801956],[123,90,69,-0.5517608299851418],[123,90,70,-0.5541238412261009],[123,90,71,-0.5568330250680447],[123,90,72,-0.5598209835588932],[123,90,73,-0.561847347766161],[123,90,74,-0.5625875182449818],[123,90,75,-0.561925869435072],[123,90,76,-0.559489157050848],[123,90,77,-0.5555406510829926],[123,90,78,-0.5509115941822529],[123,90,79,-0.5459424331784248],[123,91,64,-0.5542180947959423],[123,91,65,-0.5544747784733772],[123,91,66,-0.5531223490834236],[123,91,67,-0.5513675026595592],[123,91,68,-0.5506513863801956],[123,91,69,-0.5517608299851418],[123,91,70,-0.5541238412261009],[123,91,71,-0.5568330250680447],[123,91,72,-0.5598209835588932],[123,91,73,-0.561847347766161],[123,91,74,-0.5625875182449818],[123,91,75,-0.561925869435072],[123,91,76,-0.559489157050848],[123,91,77,-0.5555406510829926],[123,91,78,-0.5509115941822529],[123,91,79,-0.5459424331784248],[123,92,64,-0.5542180947959423],[123,92,65,-0.5544747784733772],[123,92,66,-0.5531223490834236],[123,92,67,-0.5513675026595592],[123,92,68,-0.5506513863801956],[123,92,69,-0.5517608299851418],[123,92,70,-0.5541238412261009],[123,92,71,-0.5568330250680447],[123,92,72,-0.5598209835588932],[123,92,73,-0.561847347766161],[123,92,74,-0.5625875182449818],[123,92,75,-0.561925869435072],[123,92,76,-0.559489157050848],[123,92,77,-0.5555406510829926],[123,92,78,-0.5509115941822529],[123,92,79,-0.5459424331784248],[123,93,64,-0.5542180947959423],[123,93,65,-0.5544747784733772],[123,93,66,-0.5531223490834236],[123,93,67,-0.5513675026595592],[123,93,68,-0.5506513863801956],[123,93,69,-0.5517608299851418],[123,93,70,-0.5541238412261009],[123,93,71,-0.5568330250680447],[123,93,72,-0.5598209835588932],[123,93,73,-0.561847347766161],[123,93,74,-0.5625875182449818],[123,93,75,-0.561925869435072],[123,93,76,-0.559489157050848],[123,93,77,-0.5555406510829926],[123,93,78,-0.5509115941822529],[123,93,79,-0.5459424331784248],[123,94,64,-0.5542180947959423],[123,94,65,-0.5544747784733772],[123,94,66,-0.5531223490834236],[123,94,67,-0.5513675026595592],[123,94,68,-0.5506513863801956],[123,94,69,-0.5517608299851418],[123,94,70,-0.5541238412261009],[123,94,71,-0.5568330250680447],[123,94,72,-0.5598209835588932],[123,94,73,-0.561847347766161],[123,94,74,-0.5625875182449818],[123,94,75,-0.561925869435072],[123,94,76,-0.559489157050848],[123,94,77,-0.5555406510829926],[123,94,78,-0.5509115941822529],[123,94,79,-0.5459424331784248],[123,95,64,-0.5542180947959423],[123,95,65,-0.5544747784733772],[123,95,66,-0.5531223490834236],[123,95,67,-0.5513675026595592],[123,95,68,-0.5506513863801956],[123,95,69,-0.5517608299851418],[123,95,70,-0.5541238412261009],[123,95,71,-0.5568330250680447],[123,95,72,-0.5598209835588932],[123,95,73,-0.561847347766161],[123,95,74,-0.5625875182449818],[123,95,75,-0.561925869435072],[123,95,76,-0.559489157050848],[123,95,77,-0.5555406510829926],[123,95,78,-0.5509115941822529],[123,95,79,-0.5459424331784248],[123,96,64,-0.5542180947959423],[123,96,65,-0.5544747784733772],[123,96,66,-0.5531223490834236],[123,96,67,-0.5513675026595592],[123,96,68,-0.5506513863801956],[123,96,69,-0.5517608299851418],[123,96,70,-0.5541238412261009],[123,96,71,-0.5568330250680447],[123,96,72,-0.5598209835588932],[123,96,73,-0.561847347766161],[123,96,74,-0.5625875182449818],[123,96,75,-0.561925869435072],[123,96,76,-0.559489157050848],[123,96,77,-0.5555406510829926],[123,96,78,-0.5509115941822529],[123,96,79,-0.5459424331784248],[123,97,64,-0.5542180947959423],[123,97,65,-0.5544747784733772],[123,97,66,-0.5531223490834236],[123,97,67,-0.5513675026595592],[123,97,68,-0.5506513863801956],[123,97,69,-0.5517608299851418],[123,97,70,-0.5541238412261009],[123,97,71,-0.5568330250680447],[123,97,72,-0.5598209835588932],[123,97,73,-0.561847347766161],[123,97,74,-0.5625875182449818],[123,97,75,-0.561925869435072],[123,97,76,-0.559489157050848],[123,97,77,-0.5555406510829926],[123,97,78,-0.5509115941822529],[123,97,79,-0.5459424331784248],[123,98,64,-0.5542180947959423],[123,98,65,-0.5544747784733772],[123,98,66,-0.5531223490834236],[123,98,67,-0.5513675026595592],[123,98,68,-0.5506513863801956],[123,98,69,-0.5517608299851418],[123,98,70,-0.5541238412261009],[123,98,71,-0.5568330250680447],[123,98,72,-0.5598209835588932],[123,98,73,-0.561847347766161],[123,98,74,-0.5625875182449818],[123,98,75,-0.561925869435072],[123,98,76,-0.559489157050848],[123,98,77,-0.5555406510829926],[123,98,78,-0.5509115941822529],[123,98,79,-0.5459424331784248],[123,99,64,-0.5542180947959423],[123,99,65,-0.5544747784733772],[123,99,66,-0.5531223490834236],[123,99,67,-0.5513675026595592],[123,99,68,-0.5506513863801956],[123,99,69,-0.5517608299851418],[123,99,70,-0.5541238412261009],[123,99,71,-0.5568330250680447],[123,99,72,-0.5598209835588932],[123,99,73,-0.561847347766161],[123,99,74,-0.5625875182449818],[123,99,75,-0.561925869435072],[123,99,76,-0.559489157050848],[123,99,77,-0.5555406510829926],[123,99,78,-0.5509115941822529],[123,99,79,-0.5459424331784248],[123,100,64,-0.5542180947959423],[123,100,65,-0.5544747784733772],[123,100,66,-0.5531223490834236],[123,100,67,-0.5513675026595592],[123,100,68,-0.5506513863801956],[123,100,69,-0.5517608299851418],[123,100,70,-0.5541238412261009],[123,100,71,-0.5568330250680447],[123,100,72,-0.5598209835588932],[123,100,73,-0.561847347766161],[123,100,74,-0.5625875182449818],[123,100,75,-0.561925869435072],[123,100,76,-0.559489157050848],[123,100,77,-0.5555406510829926],[123,100,78,-0.5509115941822529],[123,100,79,-0.5459424331784248],[123,101,64,-0.5542180947959423],[123,101,65,-0.5544747784733772],[123,101,66,-0.5531223490834236],[123,101,67,-0.5513675026595592],[123,101,68,-0.5506513863801956],[123,101,69,-0.5517608299851418],[123,101,70,-0.5541238412261009],[123,101,71,-0.5568330250680447],[123,101,72,-0.5598209835588932],[123,101,73,-0.561847347766161],[123,101,74,-0.5625875182449818],[123,101,75,-0.561925869435072],[123,101,76,-0.559489157050848],[123,101,77,-0.5555406510829926],[123,101,78,-0.5509115941822529],[123,101,79,-0.5459424331784248],[123,102,64,-0.5542180947959423],[123,102,65,-0.5544747784733772],[123,102,66,-0.5531223490834236],[123,102,67,-0.5513675026595592],[123,102,68,-0.5506513863801956],[123,102,69,-0.5517608299851418],[123,102,70,-0.5541238412261009],[123,102,71,-0.5568330250680447],[123,102,72,-0.5598209835588932],[123,102,73,-0.561847347766161],[123,102,74,-0.5625875182449818],[123,102,75,-0.561925869435072],[123,102,76,-0.559489157050848],[123,102,77,-0.5555406510829926],[123,102,78,-0.5509115941822529],[123,102,79,-0.5459424331784248],[123,103,64,-0.5542180947959423],[123,103,65,-0.5544747784733772],[123,103,66,-0.5531223490834236],[123,103,67,-0.5513675026595592],[123,103,68,-0.5506513863801956],[123,103,69,-0.5517608299851418],[123,103,70,-0.5541238412261009],[123,103,71,-0.5568330250680447],[123,103,72,-0.5598209835588932],[123,103,73,-0.561847347766161],[123,103,74,-0.5625875182449818],[123,103,75,-0.561925869435072],[123,103,76,-0.559489157050848],[123,103,77,-0.5555406510829926],[123,103,78,-0.5509115941822529],[123,103,79,-0.5459424331784248],[123,104,64,-0.5542180947959423],[123,104,65,-0.5544747784733772],[123,104,66,-0.5531223490834236],[123,104,67,-0.5513675026595592],[123,104,68,-0.5506513863801956],[123,104,69,-0.5517608299851418],[123,104,70,-0.5541238412261009],[123,104,71,-0.5568330250680447],[123,104,72,-0.5598209835588932],[123,104,73,-0.561847347766161],[123,104,74,-0.5625875182449818],[123,104,75,-0.561925869435072],[123,104,76,-0.559489157050848],[123,104,77,-0.5555406510829926],[123,104,78,-0.5509115941822529],[123,104,79,-0.5459424331784248],[123,105,64,-0.5542180947959423],[123,105,65,-0.5544747784733772],[123,105,66,-0.5531223490834236],[123,105,67,-0.5513675026595592],[123,105,68,-0.5506513863801956],[123,105,69,-0.5517608299851418],[123,105,70,-0.5541238412261009],[123,105,71,-0.5568330250680447],[123,105,72,-0.5598209835588932],[123,105,73,-0.561847347766161],[123,105,74,-0.5625875182449818],[123,105,75,-0.561925869435072],[123,105,76,-0.559489157050848],[123,105,77,-0.5555406510829926],[123,105,78,-0.5509115941822529],[123,105,79,-0.5459424331784248],[123,106,64,-0.5542180947959423],[123,106,65,-0.5544747784733772],[123,106,66,-0.5531223490834236],[123,106,67,-0.5513675026595592],[123,106,68,-0.5506513863801956],[123,106,69,-0.5517608299851418],[123,106,70,-0.5541238412261009],[123,106,71,-0.5568330250680447],[123,106,72,-0.5598209835588932],[123,106,73,-0.561847347766161],[123,106,74,-0.5625875182449818],[123,106,75,-0.561925869435072],[123,106,76,-0.559489157050848],[123,106,77,-0.5555406510829926],[123,106,78,-0.5509115941822529],[123,106,79,-0.5459424331784248],[123,107,64,-0.5542180947959423],[123,107,65,-0.5544747784733772],[123,107,66,-0.5531223490834236],[123,107,67,-0.5513675026595592],[123,107,68,-0.5506513863801956],[123,107,69,-0.5517608299851418],[123,107,70,-0.5541238412261009],[123,107,71,-0.5568330250680447],[123,107,72,-0.5598209835588932],[123,107,73,-0.561847347766161],[123,107,74,-0.5625875182449818],[123,107,75,-0.561925869435072],[123,107,76,-0.559489157050848],[123,107,77,-0.5555406510829926],[123,107,78,-0.5509115941822529],[123,107,79,-0.5459424331784248],[123,108,64,-0.5542180947959423],[123,108,65,-0.5544747784733772],[123,108,66,-0.5531223490834236],[123,108,67,-0.5513675026595592],[123,108,68,-0.5506513863801956],[123,108,69,-0.5517608299851418],[123,108,70,-0.5541238412261009],[123,108,71,-0.5568330250680447],[123,108,72,-0.5598209835588932],[123,108,73,-0.561847347766161],[123,108,74,-0.5625875182449818],[123,108,75,-0.561925869435072],[123,108,76,-0.559489157050848],[123,108,77,-0.5555406510829926],[123,108,78,-0.5509115941822529],[123,108,79,-0.5459424331784248],[123,109,64,-0.5542180947959423],[123,109,65,-0.5544747784733772],[123,109,66,-0.5531223490834236],[123,109,67,-0.5513675026595592],[123,109,68,-0.5506513863801956],[123,109,69,-0.5517608299851418],[123,109,70,-0.5541238412261009],[123,109,71,-0.5568330250680447],[123,109,72,-0.5598209835588932],[123,109,73,-0.561847347766161],[123,109,74,-0.5625875182449818],[123,109,75,-0.561925869435072],[123,109,76,-0.559489157050848],[123,109,77,-0.5555406510829926],[123,109,78,-0.5509115941822529],[123,109,79,-0.5459424331784248],[123,110,64,-0.5542180947959423],[123,110,65,-0.5544747784733772],[123,110,66,-0.5531223490834236],[123,110,67,-0.5513675026595592],[123,110,68,-0.5506513863801956],[123,110,69,-0.5517608299851418],[123,110,70,-0.5541238412261009],[123,110,71,-0.5568330250680447],[123,110,72,-0.5598209835588932],[123,110,73,-0.561847347766161],[123,110,74,-0.5625875182449818],[123,110,75,-0.561925869435072],[123,110,76,-0.559489157050848],[123,110,77,-0.5555406510829926],[123,110,78,-0.5509115941822529],[123,110,79,-0.5459424331784248],[123,111,64,-0.5542180947959423],[123,111,65,-0.5544747784733772],[123,111,66,-0.5531223490834236],[123,111,67,-0.5513675026595592],[123,111,68,-0.5506513863801956],[123,111,69,-0.5517608299851418],[123,111,70,-0.5541238412261009],[123,111,71,-0.5568330250680447],[123,111,72,-0.5598209835588932],[123,111,73,-0.561847347766161],[123,111,74,-0.5625875182449818],[123,111,75,-0.561925869435072],[123,111,76,-0.559489157050848],[123,111,77,-0.5555406510829926],[123,111,78,-0.5509115941822529],[123,111,79,-0.5459424331784248],[123,112,64,-0.5542180947959423],[123,112,65,-0.5544747784733772],[123,112,66,-0.5531223490834236],[123,112,67,-0.5513675026595592],[123,112,68,-0.5506513863801956],[123,112,69,-0.5517608299851418],[123,112,70,-0.5541238412261009],[123,112,71,-0.5568330250680447],[123,112,72,-0.5598209835588932],[123,112,73,-0.561847347766161],[123,112,74,-0.5625875182449818],[123,112,75,-0.561925869435072],[123,112,76,-0.559489157050848],[123,112,77,-0.5555406510829926],[123,112,78,-0.5509115941822529],[123,112,79,-0.5459424331784248],[123,113,64,-0.5542180947959423],[123,113,65,-0.5544747784733772],[123,113,66,-0.5531223490834236],[123,113,67,-0.5513675026595592],[123,113,68,-0.5506513863801956],[123,113,69,-0.5517608299851418],[123,113,70,-0.5541238412261009],[123,113,71,-0.5568330250680447],[123,113,72,-0.5598209835588932],[123,113,73,-0.561847347766161],[123,113,74,-0.5625875182449818],[123,113,75,-0.561925869435072],[123,113,76,-0.559489157050848],[123,113,77,-0.5555406510829926],[123,113,78,-0.5509115941822529],[123,113,79,-0.5459424331784248],[123,114,64,-0.5542180947959423],[123,114,65,-0.5544747784733772],[123,114,66,-0.5531223490834236],[123,114,67,-0.5513675026595592],[123,114,68,-0.5506513863801956],[123,114,69,-0.5517608299851418],[123,114,70,-0.5541238412261009],[123,114,71,-0.5568330250680447],[123,114,72,-0.5598209835588932],[123,114,73,-0.561847347766161],[123,114,74,-0.5625875182449818],[123,114,75,-0.561925869435072],[123,114,76,-0.559489157050848],[123,114,77,-0.5555406510829926],[123,114,78,-0.5509115941822529],[123,114,79,-0.5459424331784248],[123,115,64,-0.5542180947959423],[123,115,65,-0.5544747784733772],[123,115,66,-0.5531223490834236],[123,115,67,-0.5513675026595592],[123,115,68,-0.5506513863801956],[123,115,69,-0.5517608299851418],[123,115,70,-0.5541238412261009],[123,115,71,-0.5568330250680447],[123,115,72,-0.5598209835588932],[123,115,73,-0.561847347766161],[123,115,74,-0.5625875182449818],[123,115,75,-0.561925869435072],[123,115,76,-0.559489157050848],[123,115,77,-0.5555406510829926],[123,115,78,-0.5509115941822529],[123,115,79,-0.5459424331784248],[123,116,64,-0.5542180947959423],[123,116,65,-0.5544747784733772],[123,116,66,-0.5531223490834236],[123,116,67,-0.5513675026595592],[123,116,68,-0.5506513863801956],[123,116,69,-0.5517608299851418],[123,116,70,-0.5541238412261009],[123,116,71,-0.5568330250680447],[123,116,72,-0.5598209835588932],[123,116,73,-0.561847347766161],[123,116,74,-0.5625875182449818],[123,116,75,-0.561925869435072],[123,116,76,-0.559489157050848],[123,116,77,-0.5555406510829926],[123,116,78,-0.5509115941822529],[123,116,79,-0.5459424331784248],[123,117,64,-0.5542180947959423],[123,117,65,-0.5544747784733772],[123,117,66,-0.5531223490834236],[123,117,67,-0.5513675026595592],[123,117,68,-0.5506513863801956],[123,117,69,-0.5517608299851418],[123,117,70,-0.5541238412261009],[123,117,71,-0.5568330250680447],[123,117,72,-0.5598209835588932],[123,117,73,-0.561847347766161],[123,117,74,-0.5625875182449818],[123,117,75,-0.561925869435072],[123,117,76,-0.559489157050848],[123,117,77,-0.5555406510829926],[123,117,78,-0.5509115941822529],[123,117,79,-0.5459424331784248],[123,118,64,-0.5542180947959423],[123,118,65,-0.5544747784733772],[123,118,66,-0.5531223490834236],[123,118,67,-0.5513675026595592],[123,118,68,-0.5506513863801956],[123,118,69,-0.5517608299851418],[123,118,70,-0.5541238412261009],[123,118,71,-0.5568330250680447],[123,118,72,-0.5598209835588932],[123,118,73,-0.561847347766161],[123,118,74,-0.5625875182449818],[123,118,75,-0.561925869435072],[123,118,76,-0.559489157050848],[123,118,77,-0.5555406510829926],[123,118,78,-0.5509115941822529],[123,118,79,-0.5459424331784248],[123,119,64,-0.5542180947959423],[123,119,65,-0.5544747784733772],[123,119,66,-0.5531223490834236],[123,119,67,-0.5513675026595592],[123,119,68,-0.5506513863801956],[123,119,69,-0.5517608299851418],[123,119,70,-0.5541238412261009],[123,119,71,-0.5568330250680447],[123,119,72,-0.5598209835588932],[123,119,73,-0.561847347766161],[123,119,74,-0.5625875182449818],[123,119,75,-0.561925869435072],[123,119,76,-0.559489157050848],[123,119,77,-0.5555406510829926],[123,119,78,-0.5509115941822529],[123,119,79,-0.5459424331784248],[123,120,64,-0.5542180947959423],[123,120,65,-0.5544747784733772],[123,120,66,-0.5531223490834236],[123,120,67,-0.5513675026595592],[123,120,68,-0.5506513863801956],[123,120,69,-0.5517608299851418],[123,120,70,-0.5541238412261009],[123,120,71,-0.5568330250680447],[123,120,72,-0.5598209835588932],[123,120,73,-0.561847347766161],[123,120,74,-0.5625875182449818],[123,120,75,-0.561925869435072],[123,120,76,-0.559489157050848],[123,120,77,-0.5555406510829926],[123,120,78,-0.5509115941822529],[123,120,79,-0.5459424331784248],[123,121,64,-0.5542180947959423],[123,121,65,-0.5544747784733772],[123,121,66,-0.5531223490834236],[123,121,67,-0.5513675026595592],[123,121,68,-0.5506513863801956],[123,121,69,-0.5517608299851418],[123,121,70,-0.5541238412261009],[123,121,71,-0.5568330250680447],[123,121,72,-0.5598209835588932],[123,121,73,-0.561847347766161],[123,121,74,-0.5625875182449818],[123,121,75,-0.561925869435072],[123,121,76,-0.559489157050848],[123,121,77,-0.5555406510829926],[123,121,78,-0.5509115941822529],[123,121,79,-0.5459424331784248],[123,122,64,-0.5542180947959423],[123,122,65,-0.5544747784733772],[123,122,66,-0.5531223490834236],[123,122,67,-0.5513675026595592],[123,122,68,-0.5506513863801956],[123,122,69,-0.5517608299851418],[123,122,70,-0.5541238412261009],[123,122,71,-0.5568330250680447],[123,122,72,-0.5598209835588932],[123,122,73,-0.561847347766161],[123,122,74,-0.5625875182449818],[123,122,75,-0.561925869435072],[123,122,76,-0.559489157050848],[123,122,77,-0.5555406510829926],[123,122,78,-0.5509115941822529],[123,122,79,-0.5459424331784248],[123,123,64,-0.5542180947959423],[123,123,65,-0.5544747784733772],[123,123,66,-0.5531223490834236],[123,123,67,-0.5513675026595592],[123,123,68,-0.5506513863801956],[123,123,69,-0.5517608299851418],[123,123,70,-0.5541238412261009],[123,123,71,-0.5568330250680447],[123,123,72,-0.5598209835588932],[123,123,73,-0.561847347766161],[123,123,74,-0.5625875182449818],[123,123,75,-0.561925869435072],[123,123,76,-0.559489157050848],[123,123,77,-0.5555406510829926],[123,123,78,-0.5509115941822529],[123,123,79,-0.5459424331784248],[123,124,64,-0.5542180947959423],[123,124,65,-0.5544747784733772],[123,124,66,-0.5531223490834236],[123,124,67,-0.5513675026595592],[123,124,68,-0.5506513863801956],[123,124,69,-0.5517608299851418],[123,124,70,-0.5541238412261009],[123,124,71,-0.5568330250680447],[123,124,72,-0.5598209835588932],[123,124,73,-0.561847347766161],[123,124,74,-0.5625875182449818],[123,124,75,-0.561925869435072],[123,124,76,-0.559489157050848],[123,124,77,-0.5555406510829926],[123,124,78,-0.5509115941822529],[123,124,79,-0.5459424331784248],[123,125,64,-0.5542180947959423],[123,125,65,-0.5544747784733772],[123,125,66,-0.5531223490834236],[123,125,67,-0.5513675026595592],[123,125,68,-0.5506513863801956],[123,125,69,-0.5517608299851418],[123,125,70,-0.5541238412261009],[123,125,71,-0.5568330250680447],[123,125,72,-0.5598209835588932],[123,125,73,-0.561847347766161],[123,125,74,-0.5625875182449818],[123,125,75,-0.561925869435072],[123,125,76,-0.559489157050848],[123,125,77,-0.5555406510829926],[123,125,78,-0.5509115941822529],[123,125,79,-0.5459424331784248],[123,126,64,-0.5542180947959423],[123,126,65,-0.5544747784733772],[123,126,66,-0.5531223490834236],[123,126,67,-0.5513675026595592],[123,126,68,-0.5506513863801956],[123,126,69,-0.5517608299851418],[123,126,70,-0.5541238412261009],[123,126,71,-0.5568330250680447],[123,126,72,-0.5598209835588932],[123,126,73,-0.561847347766161],[123,126,74,-0.5625875182449818],[123,126,75,-0.561925869435072],[123,126,76,-0.559489157050848],[123,126,77,-0.5555406510829926],[123,126,78,-0.5509115941822529],[123,126,79,-0.5459424331784248],[123,127,64,-0.5542180947959423],[123,127,65,-0.5544747784733772],[123,127,66,-0.5531223490834236],[123,127,67,-0.5513675026595592],[123,127,68,-0.5506513863801956],[123,127,69,-0.5517608299851418],[123,127,70,-0.5541238412261009],[123,127,71,-0.5568330250680447],[123,127,72,-0.5598209835588932],[123,127,73,-0.561847347766161],[123,127,74,-0.5625875182449818],[123,127,75,-0.561925869435072],[123,127,76,-0.559489157050848],[123,127,77,-0.5555406510829926],[123,127,78,-0.5509115941822529],[123,127,79,-0.5459424331784248],[123,128,64,-0.5542180947959423],[123,128,65,-0.5544747784733772],[123,128,66,-0.5531223490834236],[123,128,67,-0.5513675026595592],[123,128,68,-0.5506513863801956],[123,128,69,-0.5517608299851418],[123,128,70,-0.5541238412261009],[123,128,71,-0.5568330250680447],[123,128,72,-0.5598209835588932],[123,128,73,-0.561847347766161],[123,128,74,-0.5625875182449818],[123,128,75,-0.561925869435072],[123,128,76,-0.559489157050848],[123,128,77,-0.5555406510829926],[123,128,78,-0.5509115941822529],[123,128,79,-0.5459424331784248],[123,129,64,-0.5542180947959423],[123,129,65,-0.5544747784733772],[123,129,66,-0.5531223490834236],[123,129,67,-0.5513675026595592],[123,129,68,-0.5506513863801956],[123,129,69,-0.5517608299851418],[123,129,70,-0.5541238412261009],[123,129,71,-0.5568330250680447],[123,129,72,-0.5598209835588932],[123,129,73,-0.561847347766161],[123,129,74,-0.5625875182449818],[123,129,75,-0.561925869435072],[123,129,76,-0.559489157050848],[123,129,77,-0.5555406510829926],[123,129,78,-0.5509115941822529],[123,129,79,-0.5459424331784248],[123,130,64,-0.5542180947959423],[123,130,65,-0.5544747784733772],[123,130,66,-0.5531223490834236],[123,130,67,-0.5513675026595592],[123,130,68,-0.5506513863801956],[123,130,69,-0.5517608299851418],[123,130,70,-0.5541238412261009],[123,130,71,-0.5568330250680447],[123,130,72,-0.5598209835588932],[123,130,73,-0.561847347766161],[123,130,74,-0.5625875182449818],[123,130,75,-0.561925869435072],[123,130,76,-0.559489157050848],[123,130,77,-0.5555406510829926],[123,130,78,-0.5509115941822529],[123,130,79,-0.5459424331784248],[123,131,64,-0.5542180947959423],[123,131,65,-0.5544747784733772],[123,131,66,-0.5531223490834236],[123,131,67,-0.5513675026595592],[123,131,68,-0.5506513863801956],[123,131,69,-0.5517608299851418],[123,131,70,-0.5541238412261009],[123,131,71,-0.5568330250680447],[123,131,72,-0.5598209835588932],[123,131,73,-0.561847347766161],[123,131,74,-0.5625875182449818],[123,131,75,-0.561925869435072],[123,131,76,-0.559489157050848],[123,131,77,-0.5555406510829926],[123,131,78,-0.5509115941822529],[123,131,79,-0.5459424331784248],[123,132,64,-0.5542180947959423],[123,132,65,-0.5544747784733772],[123,132,66,-0.5531223490834236],[123,132,67,-0.5513675026595592],[123,132,68,-0.5506513863801956],[123,132,69,-0.5517608299851418],[123,132,70,-0.5541238412261009],[123,132,71,-0.5568330250680447],[123,132,72,-0.5598209835588932],[123,132,73,-0.561847347766161],[123,132,74,-0.5625875182449818],[123,132,75,-0.561925869435072],[123,132,76,-0.559489157050848],[123,132,77,-0.5555406510829926],[123,132,78,-0.5509115941822529],[123,132,79,-0.5459424331784248],[123,133,64,-0.5542180947959423],[123,133,65,-0.5544747784733772],[123,133,66,-0.5531223490834236],[123,133,67,-0.5513675026595592],[123,133,68,-0.5506513863801956],[123,133,69,-0.5517608299851418],[123,133,70,-0.5541238412261009],[123,133,71,-0.5568330250680447],[123,133,72,-0.5598209835588932],[123,133,73,-0.561847347766161],[123,133,74,-0.5625875182449818],[123,133,75,-0.561925869435072],[123,133,76,-0.559489157050848],[123,133,77,-0.5555406510829926],[123,133,78,-0.5509115941822529],[123,133,79,-0.5459424331784248],[123,134,64,-0.5542180947959423],[123,134,65,-0.5544747784733772],[123,134,66,-0.5531223490834236],[123,134,67,-0.5513675026595592],[123,134,68,-0.5506513863801956],[123,134,69,-0.5517608299851418],[123,134,70,-0.5541238412261009],[123,134,71,-0.5568330250680447],[123,134,72,-0.5598209835588932],[123,134,73,-0.561847347766161],[123,134,74,-0.5625875182449818],[123,134,75,-0.561925869435072],[123,134,76,-0.559489157050848],[123,134,77,-0.5555406510829926],[123,134,78,-0.5509115941822529],[123,134,79,-0.5459424331784248],[123,135,64,-0.5542180947959423],[123,135,65,-0.5544747784733772],[123,135,66,-0.5531223490834236],[123,135,67,-0.5513675026595592],[123,135,68,-0.5506513863801956],[123,135,69,-0.5517608299851418],[123,135,70,-0.5541238412261009],[123,135,71,-0.5568330250680447],[123,135,72,-0.5598209835588932],[123,135,73,-0.561847347766161],[123,135,74,-0.5625875182449818],[123,135,75,-0.561925869435072],[123,135,76,-0.559489157050848],[123,135,77,-0.5555406510829926],[123,135,78,-0.5509115941822529],[123,135,79,-0.5459424331784248],[123,136,64,-0.5542180947959423],[123,136,65,-0.5544747784733772],[123,136,66,-0.5531223490834236],[123,136,67,-0.5513675026595592],[123,136,68,-0.5506513863801956],[123,136,69,-0.5517608299851418],[123,136,70,-0.5541238412261009],[123,136,71,-0.5568330250680447],[123,136,72,-0.5598209835588932],[123,136,73,-0.561847347766161],[123,136,74,-0.5625875182449818],[123,136,75,-0.561925869435072],[123,136,76,-0.559489157050848],[123,136,77,-0.5555406510829926],[123,136,78,-0.5509115941822529],[123,136,79,-0.5459424331784248],[123,137,64,-0.5542180947959423],[123,137,65,-0.5544747784733772],[123,137,66,-0.5531223490834236],[123,137,67,-0.5513675026595592],[123,137,68,-0.5506513863801956],[123,137,69,-0.5517608299851418],[123,137,70,-0.5541238412261009],[123,137,71,-0.5568330250680447],[123,137,72,-0.5598209835588932],[123,137,73,-0.561847347766161],[123,137,74,-0.5625875182449818],[123,137,75,-0.561925869435072],[123,137,76,-0.559489157050848],[123,137,77,-0.5555406510829926],[123,137,78,-0.5509115941822529],[123,137,79,-0.5459424331784248],[123,138,64,-0.5542180947959423],[123,138,65,-0.5544747784733772],[123,138,66,-0.5531223490834236],[123,138,67,-0.5513675026595592],[123,138,68,-0.5506513863801956],[123,138,69,-0.5517608299851418],[123,138,70,-0.5541238412261009],[123,138,71,-0.5568330250680447],[123,138,72,-0.5598209835588932],[123,138,73,-0.561847347766161],[123,138,74,-0.5625875182449818],[123,138,75,-0.561925869435072],[123,138,76,-0.559489157050848],[123,138,77,-0.5555406510829926],[123,138,78,-0.5509115941822529],[123,138,79,-0.5459424331784248],[123,139,64,-0.5542180947959423],[123,139,65,-0.5544747784733772],[123,139,66,-0.5531223490834236],[123,139,67,-0.5513675026595592],[123,139,68,-0.5506513863801956],[123,139,69,-0.5517608299851418],[123,139,70,-0.5541238412261009],[123,139,71,-0.5568330250680447],[123,139,72,-0.5598209835588932],[123,139,73,-0.561847347766161],[123,139,74,-0.5625875182449818],[123,139,75,-0.561925869435072],[123,139,76,-0.559489157050848],[123,139,77,-0.5555406510829926],[123,139,78,-0.5509115941822529],[123,139,79,-0.5459424331784248],[123,140,64,-0.5542180947959423],[123,140,65,-0.5544747784733772],[123,140,66,-0.5531223490834236],[123,140,67,-0.5513675026595592],[123,140,68,-0.5506513863801956],[123,140,69,-0.5517608299851418],[123,140,70,-0.5541238412261009],[123,140,71,-0.5568330250680447],[123,140,72,-0.5598209835588932],[123,140,73,-0.561847347766161],[123,140,74,-0.5625875182449818],[123,140,75,-0.561925869435072],[123,140,76,-0.559489157050848],[123,140,77,-0.5555406510829926],[123,140,78,-0.5509115941822529],[123,140,79,-0.5459424331784248],[123,141,64,-0.5542180947959423],[123,141,65,-0.5544747784733772],[123,141,66,-0.5531223490834236],[123,141,67,-0.5513675026595592],[123,141,68,-0.5506513863801956],[123,141,69,-0.5517608299851418],[123,141,70,-0.5541238412261009],[123,141,71,-0.5568330250680447],[123,141,72,-0.5598209835588932],[123,141,73,-0.561847347766161],[123,141,74,-0.5625875182449818],[123,141,75,-0.561925869435072],[123,141,76,-0.559489157050848],[123,141,77,-0.5555406510829926],[123,141,78,-0.5509115941822529],[123,141,79,-0.5459424331784248],[123,142,64,-0.5542180947959423],[123,142,65,-0.5544747784733772],[123,142,66,-0.5531223490834236],[123,142,67,-0.5513675026595592],[123,142,68,-0.5506513863801956],[123,142,69,-0.5517608299851418],[123,142,70,-0.5541238412261009],[123,142,71,-0.5568330250680447],[123,142,72,-0.5598209835588932],[123,142,73,-0.561847347766161],[123,142,74,-0.5625875182449818],[123,142,75,-0.561925869435072],[123,142,76,-0.559489157050848],[123,142,77,-0.5555406510829926],[123,142,78,-0.5509115941822529],[123,142,79,-0.5459424331784248],[123,143,64,-0.5542180947959423],[123,143,65,-0.5544747784733772],[123,143,66,-0.5531223490834236],[123,143,67,-0.5513675026595592],[123,143,68,-0.5506513863801956],[123,143,69,-0.5517608299851418],[123,143,70,-0.5541238412261009],[123,143,71,-0.5568330250680447],[123,143,72,-0.5598209835588932],[123,143,73,-0.561847347766161],[123,143,74,-0.5625875182449818],[123,143,75,-0.561925869435072],[123,143,76,-0.559489157050848],[123,143,77,-0.5555406510829926],[123,143,78,-0.5509115941822529],[123,143,79,-0.5459424331784248],[123,144,64,-0.5542180947959423],[123,144,65,-0.5544747784733772],[123,144,66,-0.5531223490834236],[123,144,67,-0.5513675026595592],[123,144,68,-0.5506513863801956],[123,144,69,-0.5517608299851418],[123,144,70,-0.5541238412261009],[123,144,71,-0.5568330250680447],[123,144,72,-0.5598209835588932],[123,144,73,-0.561847347766161],[123,144,74,-0.5625875182449818],[123,144,75,-0.561925869435072],[123,144,76,-0.559489157050848],[123,144,77,-0.5555406510829926],[123,144,78,-0.5509115941822529],[123,144,79,-0.5459424331784248],[123,145,64,-0.5542180947959423],[123,145,65,-0.5544747784733772],[123,145,66,-0.5531223490834236],[123,145,67,-0.5513675026595592],[123,145,68,-0.5506513863801956],[123,145,69,-0.5517608299851418],[123,145,70,-0.5541238412261009],[123,145,71,-0.5568330250680447],[123,145,72,-0.5598209835588932],[123,145,73,-0.561847347766161],[123,145,74,-0.5625875182449818],[123,145,75,-0.561925869435072],[123,145,76,-0.559489157050848],[123,145,77,-0.5555406510829926],[123,145,78,-0.5509115941822529],[123,145,79,-0.5459424331784248],[123,146,64,-0.5542180947959423],[123,146,65,-0.5544747784733772],[123,146,66,-0.5531223490834236],[123,146,67,-0.5513675026595592],[123,146,68,-0.5506513863801956],[123,146,69,-0.5517608299851418],[123,146,70,-0.5541238412261009],[123,146,71,-0.5568330250680447],[123,146,72,-0.5598209835588932],[123,146,73,-0.561847347766161],[123,146,74,-0.5625875182449818],[123,146,75,-0.561925869435072],[123,146,76,-0.559489157050848],[123,146,77,-0.5555406510829926],[123,146,78,-0.5509115941822529],[123,146,79,-0.5459424331784248],[123,147,64,-0.5542180947959423],[123,147,65,-0.5544747784733772],[123,147,66,-0.5531223490834236],[123,147,67,-0.5513675026595592],[123,147,68,-0.5506513863801956],[123,147,69,-0.5517608299851418],[123,147,70,-0.5541238412261009],[123,147,71,-0.5568330250680447],[123,147,72,-0.5598209835588932],[123,147,73,-0.561847347766161],[123,147,74,-0.5625875182449818],[123,147,75,-0.561925869435072],[123,147,76,-0.559489157050848],[123,147,77,-0.5555406510829926],[123,147,78,-0.5509115941822529],[123,147,79,-0.5459424331784248],[123,148,64,-0.5542180947959423],[123,148,65,-0.5544747784733772],[123,148,66,-0.5531223490834236],[123,148,67,-0.5513675026595592],[123,148,68,-0.5506513863801956],[123,148,69,-0.5517608299851418],[123,148,70,-0.5541238412261009],[123,148,71,-0.5568330250680447],[123,148,72,-0.5598209835588932],[123,148,73,-0.561847347766161],[123,148,74,-0.5625875182449818],[123,148,75,-0.561925869435072],[123,148,76,-0.559489157050848],[123,148,77,-0.5555406510829926],[123,148,78,-0.5509115941822529],[123,148,79,-0.5459424331784248],[123,149,64,-0.5542180947959423],[123,149,65,-0.5544747784733772],[123,149,66,-0.5531223490834236],[123,149,67,-0.5513675026595592],[123,149,68,-0.5506513863801956],[123,149,69,-0.5517608299851418],[123,149,70,-0.5541238412261009],[123,149,71,-0.5568330250680447],[123,149,72,-0.5598209835588932],[123,149,73,-0.561847347766161],[123,149,74,-0.5625875182449818],[123,149,75,-0.561925869435072],[123,149,76,-0.559489157050848],[123,149,77,-0.5555406510829926],[123,149,78,-0.5509115941822529],[123,149,79,-0.5459424331784248],[123,150,64,-0.5542180947959423],[123,150,65,-0.5544747784733772],[123,150,66,-0.5531223490834236],[123,150,67,-0.5513675026595592],[123,150,68,-0.5506513863801956],[123,150,69,-0.5517608299851418],[123,150,70,-0.5541238412261009],[123,150,71,-0.5568330250680447],[123,150,72,-0.5598209835588932],[123,150,73,-0.561847347766161],[123,150,74,-0.5625875182449818],[123,150,75,-0.561925869435072],[123,150,76,-0.559489157050848],[123,150,77,-0.5555406510829926],[123,150,78,-0.5509115941822529],[123,150,79,-0.5459424331784248],[123,151,64,-0.5542180947959423],[123,151,65,-0.5544747784733772],[123,151,66,-0.5531223490834236],[123,151,67,-0.5513675026595592],[123,151,68,-0.5506513863801956],[123,151,69,-0.5517608299851418],[123,151,70,-0.5541238412261009],[123,151,71,-0.5568330250680447],[123,151,72,-0.5598209835588932],[123,151,73,-0.561847347766161],[123,151,74,-0.5625875182449818],[123,151,75,-0.561925869435072],[123,151,76,-0.559489157050848],[123,151,77,-0.5555406510829926],[123,151,78,-0.5509115941822529],[123,151,79,-0.5459424331784248],[123,152,64,-0.5542180947959423],[123,152,65,-0.5544747784733772],[123,152,66,-0.5531223490834236],[123,152,67,-0.5513675026595592],[123,152,68,-0.5506513863801956],[123,152,69,-0.5517608299851418],[123,152,70,-0.5541238412261009],[123,152,71,-0.5568330250680447],[123,152,72,-0.5598209835588932],[123,152,73,-0.561847347766161],[123,152,74,-0.5625875182449818],[123,152,75,-0.561925869435072],[123,152,76,-0.559489157050848],[123,152,77,-0.5555406510829926],[123,152,78,-0.5509115941822529],[123,152,79,-0.5459424331784248],[123,153,64,-0.5542180947959423],[123,153,65,-0.5544747784733772],[123,153,66,-0.5531223490834236],[123,153,67,-0.5513675026595592],[123,153,68,-0.5506513863801956],[123,153,69,-0.5517608299851418],[123,153,70,-0.5541238412261009],[123,153,71,-0.5568330250680447],[123,153,72,-0.5598209835588932],[123,153,73,-0.561847347766161],[123,153,74,-0.5625875182449818],[123,153,75,-0.561925869435072],[123,153,76,-0.559489157050848],[123,153,77,-0.5555406510829926],[123,153,78,-0.5509115941822529],[123,153,79,-0.5459424331784248],[123,154,64,-0.5542180947959423],[123,154,65,-0.5544747784733772],[123,154,66,-0.5531223490834236],[123,154,67,-0.5513675026595592],[123,154,68,-0.5506513863801956],[123,154,69,-0.5517608299851418],[123,154,70,-0.5541238412261009],[123,154,71,-0.5568330250680447],[123,154,72,-0.5598209835588932],[123,154,73,-0.561847347766161],[123,154,74,-0.5625875182449818],[123,154,75,-0.561925869435072],[123,154,76,-0.559489157050848],[123,154,77,-0.5555406510829926],[123,154,78,-0.5509115941822529],[123,154,79,-0.5459424331784248],[123,155,64,-0.5542180947959423],[123,155,65,-0.5544747784733772],[123,155,66,-0.5531223490834236],[123,155,67,-0.5513675026595592],[123,155,68,-0.5506513863801956],[123,155,69,-0.5517608299851418],[123,155,70,-0.5541238412261009],[123,155,71,-0.5568330250680447],[123,155,72,-0.5598209835588932],[123,155,73,-0.561847347766161],[123,155,74,-0.5625875182449818],[123,155,75,-0.561925869435072],[123,155,76,-0.559489157050848],[123,155,77,-0.5555406510829926],[123,155,78,-0.5509115941822529],[123,155,79,-0.5459424331784248],[123,156,64,-0.5542180947959423],[123,156,65,-0.5544747784733772],[123,156,66,-0.5531223490834236],[123,156,67,-0.5513675026595592],[123,156,68,-0.5506513863801956],[123,156,69,-0.5517608299851418],[123,156,70,-0.5541238412261009],[123,156,71,-0.5568330250680447],[123,156,72,-0.5598209835588932],[123,156,73,-0.561847347766161],[123,156,74,-0.5625875182449818],[123,156,75,-0.561925869435072],[123,156,76,-0.559489157050848],[123,156,77,-0.5555406510829926],[123,156,78,-0.5509115941822529],[123,156,79,-0.5459424331784248],[123,157,64,-0.5542180947959423],[123,157,65,-0.5544747784733772],[123,157,66,-0.5531223490834236],[123,157,67,-0.5513675026595592],[123,157,68,-0.5506513863801956],[123,157,69,-0.5517608299851418],[123,157,70,-0.5541238412261009],[123,157,71,-0.5568330250680447],[123,157,72,-0.5598209835588932],[123,157,73,-0.561847347766161],[123,157,74,-0.5625875182449818],[123,157,75,-0.561925869435072],[123,157,76,-0.559489157050848],[123,157,77,-0.5555406510829926],[123,157,78,-0.5509115941822529],[123,157,79,-0.5459424331784248],[123,158,64,-0.5542180947959423],[123,158,65,-0.5544747784733772],[123,158,66,-0.5531223490834236],[123,158,67,-0.5513675026595592],[123,158,68,-0.5506513863801956],[123,158,69,-0.5517608299851418],[123,158,70,-0.5541238412261009],[123,158,71,-0.5568330250680447],[123,158,72,-0.5598209835588932],[123,158,73,-0.561847347766161],[123,158,74,-0.5625875182449818],[123,158,75,-0.561925869435072],[123,158,76,-0.559489157050848],[123,158,77,-0.5555406510829926],[123,158,78,-0.5509115941822529],[123,158,79,-0.5459424331784248],[123,159,64,-0.5542180947959423],[123,159,65,-0.5544747784733772],[123,159,66,-0.5531223490834236],[123,159,67,-0.5513675026595592],[123,159,68,-0.5506513863801956],[123,159,69,-0.5517608299851418],[123,159,70,-0.5541238412261009],[123,159,71,-0.5568330250680447],[123,159,72,-0.5598209835588932],[123,159,73,-0.561847347766161],[123,159,74,-0.5625875182449818],[123,159,75,-0.561925869435072],[123,159,76,-0.559489157050848],[123,159,77,-0.5555406510829926],[123,159,78,-0.5509115941822529],[123,159,79,-0.5459424331784248],[123,160,64,-0.5542180947959423],[123,160,65,-0.5544747784733772],[123,160,66,-0.5531223490834236],[123,160,67,-0.5513675026595592],[123,160,68,-0.5506513863801956],[123,160,69,-0.5517608299851418],[123,160,70,-0.5541238412261009],[123,160,71,-0.5568330250680447],[123,160,72,-0.5598209835588932],[123,160,73,-0.561847347766161],[123,160,74,-0.5625875182449818],[123,160,75,-0.561925869435072],[123,160,76,-0.559489157050848],[123,160,77,-0.5555406510829926],[123,160,78,-0.5509115941822529],[123,160,79,-0.5459424331784248],[123,161,64,-0.5542180947959423],[123,161,65,-0.5544747784733772],[123,161,66,-0.5531223490834236],[123,161,67,-0.5513675026595592],[123,161,68,-0.5506513863801956],[123,161,69,-0.5517608299851418],[123,161,70,-0.5541238412261009],[123,161,71,-0.5568330250680447],[123,161,72,-0.5598209835588932],[123,161,73,-0.561847347766161],[123,161,74,-0.5625875182449818],[123,161,75,-0.561925869435072],[123,161,76,-0.559489157050848],[123,161,77,-0.5555406510829926],[123,161,78,-0.5509115941822529],[123,161,79,-0.5459424331784248],[123,162,64,-0.5542180947959423],[123,162,65,-0.5544747784733772],[123,162,66,-0.5531223490834236],[123,162,67,-0.5513675026595592],[123,162,68,-0.5506513863801956],[123,162,69,-0.5517608299851418],[123,162,70,-0.5541238412261009],[123,162,71,-0.5568330250680447],[123,162,72,-0.5598209835588932],[123,162,73,-0.561847347766161],[123,162,74,-0.5625875182449818],[123,162,75,-0.561925869435072],[123,162,76,-0.559489157050848],[123,162,77,-0.5555406510829926],[123,162,78,-0.5509115941822529],[123,162,79,-0.5459424331784248],[123,163,64,-0.5542180947959423],[123,163,65,-0.5544747784733772],[123,163,66,-0.5531223490834236],[123,163,67,-0.5513675026595592],[123,163,68,-0.5506513863801956],[123,163,69,-0.5517608299851418],[123,163,70,-0.5541238412261009],[123,163,71,-0.5568330250680447],[123,163,72,-0.5598209835588932],[123,163,73,-0.561847347766161],[123,163,74,-0.5625875182449818],[123,163,75,-0.561925869435072],[123,163,76,-0.559489157050848],[123,163,77,-0.5555406510829926],[123,163,78,-0.5509115941822529],[123,163,79,-0.5459424331784248],[123,164,64,-0.5542180947959423],[123,164,65,-0.5544747784733772],[123,164,66,-0.5531223490834236],[123,164,67,-0.5513675026595592],[123,164,68,-0.5506513863801956],[123,164,69,-0.5517608299851418],[123,164,70,-0.5541238412261009],[123,164,71,-0.5568330250680447],[123,164,72,-0.5598209835588932],[123,164,73,-0.561847347766161],[123,164,74,-0.5625875182449818],[123,164,75,-0.561925869435072],[123,164,76,-0.559489157050848],[123,164,77,-0.5555406510829926],[123,164,78,-0.5509115941822529],[123,164,79,-0.5459424331784248],[123,165,64,-0.5542180947959423],[123,165,65,-0.5544747784733772],[123,165,66,-0.5531223490834236],[123,165,67,-0.5513675026595592],[123,165,68,-0.5506513863801956],[123,165,69,-0.5517608299851418],[123,165,70,-0.5541238412261009],[123,165,71,-0.5568330250680447],[123,165,72,-0.5598209835588932],[123,165,73,-0.561847347766161],[123,165,74,-0.5625875182449818],[123,165,75,-0.561925869435072],[123,165,76,-0.559489157050848],[123,165,77,-0.5555406510829926],[123,165,78,-0.5509115941822529],[123,165,79,-0.5459424331784248],[123,166,64,-0.5542180947959423],[123,166,65,-0.5544747784733772],[123,166,66,-0.5531223490834236],[123,166,67,-0.5513675026595592],[123,166,68,-0.5506513863801956],[123,166,69,-0.5517608299851418],[123,166,70,-0.5541238412261009],[123,166,71,-0.5568330250680447],[123,166,72,-0.5598209835588932],[123,166,73,-0.561847347766161],[123,166,74,-0.5625875182449818],[123,166,75,-0.561925869435072],[123,166,76,-0.559489157050848],[123,166,77,-0.5555406510829926],[123,166,78,-0.5509115941822529],[123,166,79,-0.5459424331784248],[123,167,64,-0.5542180947959423],[123,167,65,-0.5544747784733772],[123,167,66,-0.5531223490834236],[123,167,67,-0.5513675026595592],[123,167,68,-0.5506513863801956],[123,167,69,-0.5517608299851418],[123,167,70,-0.5541238412261009],[123,167,71,-0.5568330250680447],[123,167,72,-0.5598209835588932],[123,167,73,-0.561847347766161],[123,167,74,-0.5625875182449818],[123,167,75,-0.561925869435072],[123,167,76,-0.559489157050848],[123,167,77,-0.5555406510829926],[123,167,78,-0.5509115941822529],[123,167,79,-0.5459424331784248],[123,168,64,-0.5542180947959423],[123,168,65,-0.5544747784733772],[123,168,66,-0.5531223490834236],[123,168,67,-0.5513675026595592],[123,168,68,-0.5506513863801956],[123,168,69,-0.5517608299851418],[123,168,70,-0.5541238412261009],[123,168,71,-0.5568330250680447],[123,168,72,-0.5598209835588932],[123,168,73,-0.561847347766161],[123,168,74,-0.5625875182449818],[123,168,75,-0.561925869435072],[123,168,76,-0.559489157050848],[123,168,77,-0.5555406510829926],[123,168,78,-0.5509115941822529],[123,168,79,-0.5459424331784248],[123,169,64,-0.5542180947959423],[123,169,65,-0.5544747784733772],[123,169,66,-0.5531223490834236],[123,169,67,-0.5513675026595592],[123,169,68,-0.5506513863801956],[123,169,69,-0.5517608299851418],[123,169,70,-0.5541238412261009],[123,169,71,-0.5568330250680447],[123,169,72,-0.5598209835588932],[123,169,73,-0.561847347766161],[123,169,74,-0.5625875182449818],[123,169,75,-0.561925869435072],[123,169,76,-0.559489157050848],[123,169,77,-0.5555406510829926],[123,169,78,-0.5509115941822529],[123,169,79,-0.5459424331784248],[123,170,64,-0.5542180947959423],[123,170,65,-0.5544747784733772],[123,170,66,-0.5531223490834236],[123,170,67,-0.5513675026595592],[123,170,68,-0.5506513863801956],[123,170,69,-0.5517608299851418],[123,170,70,-0.5541238412261009],[123,170,71,-0.5568330250680447],[123,170,72,-0.5598209835588932],[123,170,73,-0.561847347766161],[123,170,74,-0.5625875182449818],[123,170,75,-0.561925869435072],[123,170,76,-0.559489157050848],[123,170,77,-0.5555406510829926],[123,170,78,-0.5509115941822529],[123,170,79,-0.5459424331784248],[123,171,64,-0.5542180947959423],[123,171,65,-0.5544747784733772],[123,171,66,-0.5531223490834236],[123,171,67,-0.5513675026595592],[123,171,68,-0.5506513863801956],[123,171,69,-0.5517608299851418],[123,171,70,-0.5541238412261009],[123,171,71,-0.5568330250680447],[123,171,72,-0.5598209835588932],[123,171,73,-0.561847347766161],[123,171,74,-0.5625875182449818],[123,171,75,-0.561925869435072],[123,171,76,-0.559489157050848],[123,171,77,-0.5555406510829926],[123,171,78,-0.5509115941822529],[123,171,79,-0.5459424331784248],[123,172,64,-0.5542180947959423],[123,172,65,-0.5544747784733772],[123,172,66,-0.5531223490834236],[123,172,67,-0.5513675026595592],[123,172,68,-0.5506513863801956],[123,172,69,-0.5517608299851418],[123,172,70,-0.5541238412261009],[123,172,71,-0.5568330250680447],[123,172,72,-0.5598209835588932],[123,172,73,-0.561847347766161],[123,172,74,-0.5625875182449818],[123,172,75,-0.561925869435072],[123,172,76,-0.559489157050848],[123,172,77,-0.5555406510829926],[123,172,78,-0.5509115941822529],[123,172,79,-0.5459424331784248],[123,173,64,-0.5542180947959423],[123,173,65,-0.5544747784733772],[123,173,66,-0.5531223490834236],[123,173,67,-0.5513675026595592],[123,173,68,-0.5506513863801956],[123,173,69,-0.5517608299851418],[123,173,70,-0.5541238412261009],[123,173,71,-0.5568330250680447],[123,173,72,-0.5598209835588932],[123,173,73,-0.561847347766161],[123,173,74,-0.5625875182449818],[123,173,75,-0.561925869435072],[123,173,76,-0.559489157050848],[123,173,77,-0.5555406510829926],[123,173,78,-0.5509115941822529],[123,173,79,-0.5459424331784248],[123,174,64,-0.5542180947959423],[123,174,65,-0.5544747784733772],[123,174,66,-0.5531223490834236],[123,174,67,-0.5513675026595592],[123,174,68,-0.5506513863801956],[123,174,69,-0.5517608299851418],[123,174,70,-0.5541238412261009],[123,174,71,-0.5568330250680447],[123,174,72,-0.5598209835588932],[123,174,73,-0.561847347766161],[123,174,74,-0.5625875182449818],[123,174,75,-0.561925869435072],[123,174,76,-0.559489157050848],[123,174,77,-0.5555406510829926],[123,174,78,-0.5509115941822529],[123,174,79,-0.5459424331784248],[123,175,64,-0.5542180947959423],[123,175,65,-0.5544747784733772],[123,175,66,-0.5531223490834236],[123,175,67,-0.5513675026595592],[123,175,68,-0.5506513863801956],[123,175,69,-0.5517608299851418],[123,175,70,-0.5541238412261009],[123,175,71,-0.5568330250680447],[123,175,72,-0.5598209835588932],[123,175,73,-0.561847347766161],[123,175,74,-0.5625875182449818],[123,175,75,-0.561925869435072],[123,175,76,-0.559489157050848],[123,175,77,-0.5555406510829926],[123,175,78,-0.5509115941822529],[123,175,79,-0.5459424331784248],[123,176,64,-0.5542180947959423],[123,176,65,-0.5544747784733772],[123,176,66,-0.5531223490834236],[123,176,67,-0.5513675026595592],[123,176,68,-0.5506513863801956],[123,176,69,-0.5517608299851418],[123,176,70,-0.5541238412261009],[123,176,71,-0.5568330250680447],[123,176,72,-0.5598209835588932],[123,176,73,-0.561847347766161],[123,176,74,-0.5625875182449818],[123,176,75,-0.561925869435072],[123,176,76,-0.559489157050848],[123,176,77,-0.5555406510829926],[123,176,78,-0.5509115941822529],[123,176,79,-0.5459424331784248],[123,177,64,-0.5542180947959423],[123,177,65,-0.5544747784733772],[123,177,66,-0.5531223490834236],[123,177,67,-0.5513675026595592],[123,177,68,-0.5506513863801956],[123,177,69,-0.5517608299851418],[123,177,70,-0.5541238412261009],[123,177,71,-0.5568330250680447],[123,177,72,-0.5598209835588932],[123,177,73,-0.561847347766161],[123,177,74,-0.5625875182449818],[123,177,75,-0.561925869435072],[123,177,76,-0.559489157050848],[123,177,77,-0.5555406510829926],[123,177,78,-0.5509115941822529],[123,177,79,-0.5459424331784248],[123,178,64,-0.5542180947959423],[123,178,65,-0.5544747784733772],[123,178,66,-0.5531223490834236],[123,178,67,-0.5513675026595592],[123,178,68,-0.5506513863801956],[123,178,69,-0.5517608299851418],[123,178,70,-0.5541238412261009],[123,178,71,-0.5568330250680447],[123,178,72,-0.5598209835588932],[123,178,73,-0.561847347766161],[123,178,74,-0.5625875182449818],[123,178,75,-0.561925869435072],[123,178,76,-0.559489157050848],[123,178,77,-0.5555406510829926],[123,178,78,-0.5509115941822529],[123,178,79,-0.5459424331784248],[123,179,64,-0.5542180947959423],[123,179,65,-0.5544747784733772],[123,179,66,-0.5531223490834236],[123,179,67,-0.5513675026595592],[123,179,68,-0.5506513863801956],[123,179,69,-0.5517608299851418],[123,179,70,-0.5541238412261009],[123,179,71,-0.5568330250680447],[123,179,72,-0.5598209835588932],[123,179,73,-0.561847347766161],[123,179,74,-0.5625875182449818],[123,179,75,-0.561925869435072],[123,179,76,-0.559489157050848],[123,179,77,-0.5555406510829926],[123,179,78,-0.5509115941822529],[123,179,79,-0.5459424331784248],[123,180,64,-0.5542180947959423],[123,180,65,-0.5544747784733772],[123,180,66,-0.5531223490834236],[123,180,67,-0.5513675026595592],[123,180,68,-0.5506513863801956],[123,180,69,-0.5517608299851418],[123,180,70,-0.5541238412261009],[123,180,71,-0.5568330250680447],[123,180,72,-0.5598209835588932],[123,180,73,-0.561847347766161],[123,180,74,-0.5625875182449818],[123,180,75,-0.561925869435072],[123,180,76,-0.559489157050848],[123,180,77,-0.5555406510829926],[123,180,78,-0.5509115941822529],[123,180,79,-0.5459424331784248],[123,181,64,-0.5542180947959423],[123,181,65,-0.5544747784733772],[123,181,66,-0.5531223490834236],[123,181,67,-0.5513675026595592],[123,181,68,-0.5506513863801956],[123,181,69,-0.5517608299851418],[123,181,70,-0.5541238412261009],[123,181,71,-0.5568330250680447],[123,181,72,-0.5598209835588932],[123,181,73,-0.561847347766161],[123,181,74,-0.5625875182449818],[123,181,75,-0.561925869435072],[123,181,76,-0.559489157050848],[123,181,77,-0.5555406510829926],[123,181,78,-0.5509115941822529],[123,181,79,-0.5459424331784248],[123,182,64,-0.5542180947959423],[123,182,65,-0.5544747784733772],[123,182,66,-0.5531223490834236],[123,182,67,-0.5513675026595592],[123,182,68,-0.5506513863801956],[123,182,69,-0.5517608299851418],[123,182,70,-0.5541238412261009],[123,182,71,-0.5568330250680447],[123,182,72,-0.5598209835588932],[123,182,73,-0.561847347766161],[123,182,74,-0.5625875182449818],[123,182,75,-0.561925869435072],[123,182,76,-0.559489157050848],[123,182,77,-0.5555406510829926],[123,182,78,-0.5509115941822529],[123,182,79,-0.5459424331784248],[123,183,64,-0.5542180947959423],[123,183,65,-0.5544747784733772],[123,183,66,-0.5531223490834236],[123,183,67,-0.5513675026595592],[123,183,68,-0.5506513863801956],[123,183,69,-0.5517608299851418],[123,183,70,-0.5541238412261009],[123,183,71,-0.5568330250680447],[123,183,72,-0.5598209835588932],[123,183,73,-0.561847347766161],[123,183,74,-0.5625875182449818],[123,183,75,-0.561925869435072],[123,183,76,-0.559489157050848],[123,183,77,-0.5555406510829926],[123,183,78,-0.5509115941822529],[123,183,79,-0.5459424331784248],[123,184,64,-0.5542180947959423],[123,184,65,-0.5544747784733772],[123,184,66,-0.5531223490834236],[123,184,67,-0.5513675026595592],[123,184,68,-0.5506513863801956],[123,184,69,-0.5517608299851418],[123,184,70,-0.5541238412261009],[123,184,71,-0.5568330250680447],[123,184,72,-0.5598209835588932],[123,184,73,-0.561847347766161],[123,184,74,-0.5625875182449818],[123,184,75,-0.561925869435072],[123,184,76,-0.559489157050848],[123,184,77,-0.5555406510829926],[123,184,78,-0.5509115941822529],[123,184,79,-0.5459424331784248],[123,185,64,-0.5542180947959423],[123,185,65,-0.5544747784733772],[123,185,66,-0.5531223490834236],[123,185,67,-0.5513675026595592],[123,185,68,-0.5506513863801956],[123,185,69,-0.5517608299851418],[123,185,70,-0.5541238412261009],[123,185,71,-0.5568330250680447],[123,185,72,-0.5598209835588932],[123,185,73,-0.561847347766161],[123,185,74,-0.5625875182449818],[123,185,75,-0.561925869435072],[123,185,76,-0.559489157050848],[123,185,77,-0.5555406510829926],[123,185,78,-0.5509115941822529],[123,185,79,-0.5459424331784248],[123,186,64,-0.5542180947959423],[123,186,65,-0.5544747784733772],[123,186,66,-0.5531223490834236],[123,186,67,-0.5513675026595592],[123,186,68,-0.5506513863801956],[123,186,69,-0.5517608299851418],[123,186,70,-0.5541238412261009],[123,186,71,-0.5568330250680447],[123,186,72,-0.5598209835588932],[123,186,73,-0.561847347766161],[123,186,74,-0.5625875182449818],[123,186,75,-0.561925869435072],[123,186,76,-0.559489157050848],[123,186,77,-0.5555406510829926],[123,186,78,-0.5509115941822529],[123,186,79,-0.5459424331784248],[123,187,64,-0.5542180947959423],[123,187,65,-0.5544747784733772],[123,187,66,-0.5531223490834236],[123,187,67,-0.5513675026595592],[123,187,68,-0.5506513863801956],[123,187,69,-0.5517608299851418],[123,187,70,-0.5541238412261009],[123,187,71,-0.5568330250680447],[123,187,72,-0.5598209835588932],[123,187,73,-0.561847347766161],[123,187,74,-0.5625875182449818],[123,187,75,-0.561925869435072],[123,187,76,-0.559489157050848],[123,187,77,-0.5555406510829926],[123,187,78,-0.5509115941822529],[123,187,79,-0.5459424331784248],[123,188,64,-0.5542180947959423],[123,188,65,-0.5544747784733772],[123,188,66,-0.5531223490834236],[123,188,67,-0.5513675026595592],[123,188,68,-0.5506513863801956],[123,188,69,-0.5517608299851418],[123,188,70,-0.5541238412261009],[123,188,71,-0.5568330250680447],[123,188,72,-0.5598209835588932],[123,188,73,-0.561847347766161],[123,188,74,-0.5625875182449818],[123,188,75,-0.561925869435072],[123,188,76,-0.559489157050848],[123,188,77,-0.5555406510829926],[123,188,78,-0.5509115941822529],[123,188,79,-0.5459424331784248],[123,189,64,-0.5542180947959423],[123,189,65,-0.5544747784733772],[123,189,66,-0.5531223490834236],[123,189,67,-0.5513675026595592],[123,189,68,-0.5506513863801956],[123,189,69,-0.5517608299851418],[123,189,70,-0.5541238412261009],[123,189,71,-0.5568330250680447],[123,189,72,-0.5598209835588932],[123,189,73,-0.561847347766161],[123,189,74,-0.5625875182449818],[123,189,75,-0.561925869435072],[123,189,76,-0.559489157050848],[123,189,77,-0.5555406510829926],[123,189,78,-0.5509115941822529],[123,189,79,-0.5459424331784248],[123,190,64,-0.5542180947959423],[123,190,65,-0.5544747784733772],[123,190,66,-0.5531223490834236],[123,190,67,-0.5513675026595592],[123,190,68,-0.5506513863801956],[123,190,69,-0.5517608299851418],[123,190,70,-0.5541238412261009],[123,190,71,-0.5568330250680447],[123,190,72,-0.5598209835588932],[123,190,73,-0.561847347766161],[123,190,74,-0.5625875182449818],[123,190,75,-0.561925869435072],[123,190,76,-0.559489157050848],[123,190,77,-0.5555406510829926],[123,190,78,-0.5509115941822529],[123,190,79,-0.5459424331784248],[123,191,64,-0.5542180947959423],[123,191,65,-0.5544747784733772],[123,191,66,-0.5531223490834236],[123,191,67,-0.5513675026595592],[123,191,68,-0.5506513863801956],[123,191,69,-0.5517608299851418],[123,191,70,-0.5541238412261009],[123,191,71,-0.5568330250680447],[123,191,72,-0.5598209835588932],[123,191,73,-0.561847347766161],[123,191,74,-0.5625875182449818],[123,191,75,-0.561925869435072],[123,191,76,-0.559489157050848],[123,191,77,-0.5555406510829926],[123,191,78,-0.5509115941822529],[123,191,79,-0.5459424331784248],[123,192,64,-0.5542180947959423],[123,192,65,-0.5544747784733772],[123,192,66,-0.5531223490834236],[123,192,67,-0.5513675026595592],[123,192,68,-0.5506513863801956],[123,192,69,-0.5517608299851418],[123,192,70,-0.5541238412261009],[123,192,71,-0.5568330250680447],[123,192,72,-0.5598209835588932],[123,192,73,-0.561847347766161],[123,192,74,-0.5625875182449818],[123,192,75,-0.561925869435072],[123,192,76,-0.559489157050848],[123,192,77,-0.5555406510829926],[123,192,78,-0.5509115941822529],[123,192,79,-0.5459424331784248],[123,193,64,-0.5542180947959423],[123,193,65,-0.5544747784733772],[123,193,66,-0.5531223490834236],[123,193,67,-0.5513675026595592],[123,193,68,-0.5506513863801956],[123,193,69,-0.5517608299851418],[123,193,70,-0.5541238412261009],[123,193,71,-0.5568330250680447],[123,193,72,-0.5598209835588932],[123,193,73,-0.561847347766161],[123,193,74,-0.5625875182449818],[123,193,75,-0.561925869435072],[123,193,76,-0.559489157050848],[123,193,77,-0.5555406510829926],[123,193,78,-0.5509115941822529],[123,193,79,-0.5459424331784248],[123,194,64,-0.5542180947959423],[123,194,65,-0.5544747784733772],[123,194,66,-0.5531223490834236],[123,194,67,-0.5513675026595592],[123,194,68,-0.5506513863801956],[123,194,69,-0.5517608299851418],[123,194,70,-0.5541238412261009],[123,194,71,-0.5568330250680447],[123,194,72,-0.5598209835588932],[123,194,73,-0.561847347766161],[123,194,74,-0.5625875182449818],[123,194,75,-0.561925869435072],[123,194,76,-0.559489157050848],[123,194,77,-0.5555406510829926],[123,194,78,-0.5509115941822529],[123,194,79,-0.5459424331784248],[123,195,64,-0.5542180947959423],[123,195,65,-0.5544747784733772],[123,195,66,-0.5531223490834236],[123,195,67,-0.5513675026595592],[123,195,68,-0.5506513863801956],[123,195,69,-0.5517608299851418],[123,195,70,-0.5541238412261009],[123,195,71,-0.5568330250680447],[123,195,72,-0.5598209835588932],[123,195,73,-0.561847347766161],[123,195,74,-0.5625875182449818],[123,195,75,-0.561925869435072],[123,195,76,-0.559489157050848],[123,195,77,-0.5555406510829926],[123,195,78,-0.5509115941822529],[123,195,79,-0.5459424331784248],[123,196,64,-0.5542180947959423],[123,196,65,-0.5544747784733772],[123,196,66,-0.5531223490834236],[123,196,67,-0.5513675026595592],[123,196,68,-0.5506513863801956],[123,196,69,-0.5517608299851418],[123,196,70,-0.5541238412261009],[123,196,71,-0.5568330250680447],[123,196,72,-0.5598209835588932],[123,196,73,-0.561847347766161],[123,196,74,-0.5625875182449818],[123,196,75,-0.561925869435072],[123,196,76,-0.559489157050848],[123,196,77,-0.5555406510829926],[123,196,78,-0.5509115941822529],[123,196,79,-0.5459424331784248],[123,197,64,-0.5542180947959423],[123,197,65,-0.5544747784733772],[123,197,66,-0.5531223490834236],[123,197,67,-0.5513675026595592],[123,197,68,-0.5506513863801956],[123,197,69,-0.5517608299851418],[123,197,70,-0.5541238412261009],[123,197,71,-0.5568330250680447],[123,197,72,-0.5598209835588932],[123,197,73,-0.561847347766161],[123,197,74,-0.5625875182449818],[123,197,75,-0.561925869435072],[123,197,76,-0.559489157050848],[123,197,77,-0.5555406510829926],[123,197,78,-0.5509115941822529],[123,197,79,-0.5459424331784248],[123,198,64,-0.5542180947959423],[123,198,65,-0.5544747784733772],[123,198,66,-0.5531223490834236],[123,198,67,-0.5513675026595592],[123,198,68,-0.5506513863801956],[123,198,69,-0.5517608299851418],[123,198,70,-0.5541238412261009],[123,198,71,-0.5568330250680447],[123,198,72,-0.5598209835588932],[123,198,73,-0.561847347766161],[123,198,74,-0.5625875182449818],[123,198,75,-0.561925869435072],[123,198,76,-0.559489157050848],[123,198,77,-0.5555406510829926],[123,198,78,-0.5509115941822529],[123,198,79,-0.5459424331784248],[123,199,64,-0.5542180947959423],[123,199,65,-0.5544747784733772],[123,199,66,-0.5531223490834236],[123,199,67,-0.5513675026595592],[123,199,68,-0.5506513863801956],[123,199,69,-0.5517608299851418],[123,199,70,-0.5541238412261009],[123,199,71,-0.5568330250680447],[123,199,72,-0.5598209835588932],[123,199,73,-0.561847347766161],[123,199,74,-0.5625875182449818],[123,199,75,-0.561925869435072],[123,199,76,-0.559489157050848],[123,199,77,-0.5555406510829926],[123,199,78,-0.5509115941822529],[123,199,79,-0.5459424331784248],[123,200,64,-0.5542180947959423],[123,200,65,-0.5544747784733772],[123,200,66,-0.5531223490834236],[123,200,67,-0.5513675026595592],[123,200,68,-0.5506513863801956],[123,200,69,-0.5517608299851418],[123,200,70,-0.5541238412261009],[123,200,71,-0.5568330250680447],[123,200,72,-0.5598209835588932],[123,200,73,-0.561847347766161],[123,200,74,-0.5625875182449818],[123,200,75,-0.561925869435072],[123,200,76,-0.559489157050848],[123,200,77,-0.5555406510829926],[123,200,78,-0.5509115941822529],[123,200,79,-0.5459424331784248],[123,201,64,-0.5542180947959423],[123,201,65,-0.5544747784733772],[123,201,66,-0.5531223490834236],[123,201,67,-0.5513675026595592],[123,201,68,-0.5506513863801956],[123,201,69,-0.5517608299851418],[123,201,70,-0.5541238412261009],[123,201,71,-0.5568330250680447],[123,201,72,-0.5598209835588932],[123,201,73,-0.561847347766161],[123,201,74,-0.5625875182449818],[123,201,75,-0.561925869435072],[123,201,76,-0.559489157050848],[123,201,77,-0.5555406510829926],[123,201,78,-0.5509115941822529],[123,201,79,-0.5459424331784248],[123,202,64,-0.5542180947959423],[123,202,65,-0.5544747784733772],[123,202,66,-0.5531223490834236],[123,202,67,-0.5513675026595592],[123,202,68,-0.5506513863801956],[123,202,69,-0.5517608299851418],[123,202,70,-0.5541238412261009],[123,202,71,-0.5568330250680447],[123,202,72,-0.5598209835588932],[123,202,73,-0.561847347766161],[123,202,74,-0.5625875182449818],[123,202,75,-0.561925869435072],[123,202,76,-0.559489157050848],[123,202,77,-0.5555406510829926],[123,202,78,-0.5509115941822529],[123,202,79,-0.5459424331784248],[123,203,64,-0.5542180947959423],[123,203,65,-0.5544747784733772],[123,203,66,-0.5531223490834236],[123,203,67,-0.5513675026595592],[123,203,68,-0.5506513863801956],[123,203,69,-0.5517608299851418],[123,203,70,-0.5541238412261009],[123,203,71,-0.5568330250680447],[123,203,72,-0.5598209835588932],[123,203,73,-0.561847347766161],[123,203,74,-0.5625875182449818],[123,203,75,-0.561925869435072],[123,203,76,-0.559489157050848],[123,203,77,-0.5555406510829926],[123,203,78,-0.5509115941822529],[123,203,79,-0.5459424331784248],[123,204,64,-0.5542180947959423],[123,204,65,-0.5544747784733772],[123,204,66,-0.5531223490834236],[123,204,67,-0.5513675026595592],[123,204,68,-0.5506513863801956],[123,204,69,-0.5517608299851418],[123,204,70,-0.5541238412261009],[123,204,71,-0.5568330250680447],[123,204,72,-0.5598209835588932],[123,204,73,-0.561847347766161],[123,204,74,-0.5625875182449818],[123,204,75,-0.561925869435072],[123,204,76,-0.559489157050848],[123,204,77,-0.5555406510829926],[123,204,78,-0.5509115941822529],[123,204,79,-0.5459424331784248],[123,205,64,-0.5542180947959423],[123,205,65,-0.5544747784733772],[123,205,66,-0.5531223490834236],[123,205,67,-0.5513675026595592],[123,205,68,-0.5506513863801956],[123,205,69,-0.5517608299851418],[123,205,70,-0.5541238412261009],[123,205,71,-0.5568330250680447],[123,205,72,-0.5598209835588932],[123,205,73,-0.561847347766161],[123,205,74,-0.5625875182449818],[123,205,75,-0.561925869435072],[123,205,76,-0.559489157050848],[123,205,77,-0.5555406510829926],[123,205,78,-0.5509115941822529],[123,205,79,-0.5459424331784248],[123,206,64,-0.5542180947959423],[123,206,65,-0.5544747784733772],[123,206,66,-0.5531223490834236],[123,206,67,-0.5513675026595592],[123,206,68,-0.5506513863801956],[123,206,69,-0.5517608299851418],[123,206,70,-0.5541238412261009],[123,206,71,-0.5568330250680447],[123,206,72,-0.5598209835588932],[123,206,73,-0.561847347766161],[123,206,74,-0.5625875182449818],[123,206,75,-0.561925869435072],[123,206,76,-0.559489157050848],[123,206,77,-0.5555406510829926],[123,206,78,-0.5509115941822529],[123,206,79,-0.5459424331784248],[123,207,64,-0.5542180947959423],[123,207,65,-0.5544747784733772],[123,207,66,-0.5531223490834236],[123,207,67,-0.5513675026595592],[123,207,68,-0.5506513863801956],[123,207,69,-0.5517608299851418],[123,207,70,-0.5541238412261009],[123,207,71,-0.5568330250680447],[123,207,72,-0.5598209835588932],[123,207,73,-0.561847347766161],[123,207,74,-0.5625875182449818],[123,207,75,-0.561925869435072],[123,207,76,-0.559489157050848],[123,207,77,-0.5555406510829926],[123,207,78,-0.5509115941822529],[123,207,79,-0.5459424331784248],[123,208,64,-0.5542180947959423],[123,208,65,-0.5544747784733772],[123,208,66,-0.5531223490834236],[123,208,67,-0.5513675026595592],[123,208,68,-0.5506513863801956],[123,208,69,-0.5517608299851418],[123,208,70,-0.5541238412261009],[123,208,71,-0.5568330250680447],[123,208,72,-0.5598209835588932],[123,208,73,-0.561847347766161],[123,208,74,-0.5625875182449818],[123,208,75,-0.561925869435072],[123,208,76,-0.559489157050848],[123,208,77,-0.5555406510829926],[123,208,78,-0.5509115941822529],[123,208,79,-0.5459424331784248],[123,209,64,-0.5542180947959423],[123,209,65,-0.5544747784733772],[123,209,66,-0.5531223490834236],[123,209,67,-0.5513675026595592],[123,209,68,-0.5506513863801956],[123,209,69,-0.5517608299851418],[123,209,70,-0.5541238412261009],[123,209,71,-0.5568330250680447],[123,209,72,-0.5598209835588932],[123,209,73,-0.561847347766161],[123,209,74,-0.5625875182449818],[123,209,75,-0.561925869435072],[123,209,76,-0.559489157050848],[123,209,77,-0.5555406510829926],[123,209,78,-0.5509115941822529],[123,209,79,-0.5459424331784248],[123,210,64,-0.5542180947959423],[123,210,65,-0.5544747784733772],[123,210,66,-0.5531223490834236],[123,210,67,-0.5513675026595592],[123,210,68,-0.5506513863801956],[123,210,69,-0.5517608299851418],[123,210,70,-0.5541238412261009],[123,210,71,-0.5568330250680447],[123,210,72,-0.5598209835588932],[123,210,73,-0.561847347766161],[123,210,74,-0.5625875182449818],[123,210,75,-0.561925869435072],[123,210,76,-0.559489157050848],[123,210,77,-0.5555406510829926],[123,210,78,-0.5509115941822529],[123,210,79,-0.5459424331784248],[123,211,64,-0.5542180947959423],[123,211,65,-0.5544747784733772],[123,211,66,-0.5531223490834236],[123,211,67,-0.5513675026595592],[123,211,68,-0.5506513863801956],[123,211,69,-0.5517608299851418],[123,211,70,-0.5541238412261009],[123,211,71,-0.5568330250680447],[123,211,72,-0.5598209835588932],[123,211,73,-0.561847347766161],[123,211,74,-0.5625875182449818],[123,211,75,-0.561925869435072],[123,211,76,-0.559489157050848],[123,211,77,-0.5555406510829926],[123,211,78,-0.5509115941822529],[123,211,79,-0.5459424331784248],[123,212,64,-0.5542180947959423],[123,212,65,-0.5544747784733772],[123,212,66,-0.5531223490834236],[123,212,67,-0.5513675026595592],[123,212,68,-0.5506513863801956],[123,212,69,-0.5517608299851418],[123,212,70,-0.5541238412261009],[123,212,71,-0.5568330250680447],[123,212,72,-0.5598209835588932],[123,212,73,-0.561847347766161],[123,212,74,-0.5625875182449818],[123,212,75,-0.561925869435072],[123,212,76,-0.559489157050848],[123,212,77,-0.5555406510829926],[123,212,78,-0.5509115941822529],[123,212,79,-0.5459424331784248],[123,213,64,-0.5542180947959423],[123,213,65,-0.5544747784733772],[123,213,66,-0.5531223490834236],[123,213,67,-0.5513675026595592],[123,213,68,-0.5506513863801956],[123,213,69,-0.5517608299851418],[123,213,70,-0.5541238412261009],[123,213,71,-0.5568330250680447],[123,213,72,-0.5598209835588932],[123,213,73,-0.561847347766161],[123,213,74,-0.5625875182449818],[123,213,75,-0.561925869435072],[123,213,76,-0.559489157050848],[123,213,77,-0.5555406510829926],[123,213,78,-0.5509115941822529],[123,213,79,-0.5459424331784248],[123,214,64,-0.5542180947959423],[123,214,65,-0.5544747784733772],[123,214,66,-0.5531223490834236],[123,214,67,-0.5513675026595592],[123,214,68,-0.5506513863801956],[123,214,69,-0.5517608299851418],[123,214,70,-0.5541238412261009],[123,214,71,-0.5568330250680447],[123,214,72,-0.5598209835588932],[123,214,73,-0.561847347766161],[123,214,74,-0.5625875182449818],[123,214,75,-0.561925869435072],[123,214,76,-0.559489157050848],[123,214,77,-0.5555406510829926],[123,214,78,-0.5509115941822529],[123,214,79,-0.5459424331784248],[123,215,64,-0.5542180947959423],[123,215,65,-0.5544747784733772],[123,215,66,-0.5531223490834236],[123,215,67,-0.5513675026595592],[123,215,68,-0.5506513863801956],[123,215,69,-0.5517608299851418],[123,215,70,-0.5541238412261009],[123,215,71,-0.5568330250680447],[123,215,72,-0.5598209835588932],[123,215,73,-0.561847347766161],[123,215,74,-0.5625875182449818],[123,215,75,-0.561925869435072],[123,215,76,-0.559489157050848],[123,215,77,-0.5555406510829926],[123,215,78,-0.5509115941822529],[123,215,79,-0.5459424331784248],[123,216,64,-0.5542180947959423],[123,216,65,-0.5544747784733772],[123,216,66,-0.5531223490834236],[123,216,67,-0.5513675026595592],[123,216,68,-0.5506513863801956],[123,216,69,-0.5517608299851418],[123,216,70,-0.5541238412261009],[123,216,71,-0.5568330250680447],[123,216,72,-0.5598209835588932],[123,216,73,-0.561847347766161],[123,216,74,-0.5625875182449818],[123,216,75,-0.561925869435072],[123,216,76,-0.559489157050848],[123,216,77,-0.5555406510829926],[123,216,78,-0.5509115941822529],[123,216,79,-0.5459424331784248],[123,217,64,-0.5542180947959423],[123,217,65,-0.5544747784733772],[123,217,66,-0.5531223490834236],[123,217,67,-0.5513675026595592],[123,217,68,-0.5506513863801956],[123,217,69,-0.5517608299851418],[123,217,70,-0.5541238412261009],[123,217,71,-0.5568330250680447],[123,217,72,-0.5598209835588932],[123,217,73,-0.561847347766161],[123,217,74,-0.5625875182449818],[123,217,75,-0.561925869435072],[123,217,76,-0.559489157050848],[123,217,77,-0.5555406510829926],[123,217,78,-0.5509115941822529],[123,217,79,-0.5459424331784248],[123,218,64,-0.5542180947959423],[123,218,65,-0.5544747784733772],[123,218,66,-0.5531223490834236],[123,218,67,-0.5513675026595592],[123,218,68,-0.5506513863801956],[123,218,69,-0.5517608299851418],[123,218,70,-0.5541238412261009],[123,218,71,-0.5568330250680447],[123,218,72,-0.5598209835588932],[123,218,73,-0.561847347766161],[123,218,74,-0.5625875182449818],[123,218,75,-0.561925869435072],[123,218,76,-0.559489157050848],[123,218,77,-0.5555406510829926],[123,218,78,-0.5509115941822529],[123,218,79,-0.5459424331784248],[123,219,64,-0.5542180947959423],[123,219,65,-0.5544747784733772],[123,219,66,-0.5531223490834236],[123,219,67,-0.5513675026595592],[123,219,68,-0.5506513863801956],[123,219,69,-0.5517608299851418],[123,219,70,-0.5541238412261009],[123,219,71,-0.5568330250680447],[123,219,72,-0.5598209835588932],[123,219,73,-0.561847347766161],[123,219,74,-0.5625875182449818],[123,219,75,-0.561925869435072],[123,219,76,-0.559489157050848],[123,219,77,-0.5555406510829926],[123,219,78,-0.5509115941822529],[123,219,79,-0.5459424331784248],[123,220,64,-0.5542180947959423],[123,220,65,-0.5544747784733772],[123,220,66,-0.5531223490834236],[123,220,67,-0.5513675026595592],[123,220,68,-0.5506513863801956],[123,220,69,-0.5517608299851418],[123,220,70,-0.5541238412261009],[123,220,71,-0.5568330250680447],[123,220,72,-0.5598209835588932],[123,220,73,-0.561847347766161],[123,220,74,-0.5625875182449818],[123,220,75,-0.561925869435072],[123,220,76,-0.559489157050848],[123,220,77,-0.5555406510829926],[123,220,78,-0.5509115941822529],[123,220,79,-0.5459424331784248],[123,221,64,-0.5542180947959423],[123,221,65,-0.5544747784733772],[123,221,66,-0.5531223490834236],[123,221,67,-0.5513675026595592],[123,221,68,-0.5506513863801956],[123,221,69,-0.5517608299851418],[123,221,70,-0.5541238412261009],[123,221,71,-0.5568330250680447],[123,221,72,-0.5598209835588932],[123,221,73,-0.561847347766161],[123,221,74,-0.5625875182449818],[123,221,75,-0.561925869435072],[123,221,76,-0.559489157050848],[123,221,77,-0.5555406510829926],[123,221,78,-0.5509115941822529],[123,221,79,-0.5459424331784248],[123,222,64,-0.5542180947959423],[123,222,65,-0.5544747784733772],[123,222,66,-0.5531223490834236],[123,222,67,-0.5513675026595592],[123,222,68,-0.5506513863801956],[123,222,69,-0.5517608299851418],[123,222,70,-0.5541238412261009],[123,222,71,-0.5568330250680447],[123,222,72,-0.5598209835588932],[123,222,73,-0.561847347766161],[123,222,74,-0.5625875182449818],[123,222,75,-0.561925869435072],[123,222,76,-0.559489157050848],[123,222,77,-0.5555406510829926],[123,222,78,-0.5509115941822529],[123,222,79,-0.5459424331784248],[123,223,64,-0.5542180947959423],[123,223,65,-0.5544747784733772],[123,223,66,-0.5531223490834236],[123,223,67,-0.5513675026595592],[123,223,68,-0.5506513863801956],[123,223,69,-0.5517608299851418],[123,223,70,-0.5541238412261009],[123,223,71,-0.5568330250680447],[123,223,72,-0.5598209835588932],[123,223,73,-0.561847347766161],[123,223,74,-0.5625875182449818],[123,223,75,-0.561925869435072],[123,223,76,-0.559489157050848],[123,223,77,-0.5555406510829926],[123,223,78,-0.5509115941822529],[123,223,79,-0.5459424331784248],[123,224,64,-0.5542180947959423],[123,224,65,-0.5544747784733772],[123,224,66,-0.5531223490834236],[123,224,67,-0.5513675026595592],[123,224,68,-0.5506513863801956],[123,224,69,-0.5517608299851418],[123,224,70,-0.5541238412261009],[123,224,71,-0.5568330250680447],[123,224,72,-0.5598209835588932],[123,224,73,-0.561847347766161],[123,224,74,-0.5625875182449818],[123,224,75,-0.561925869435072],[123,224,76,-0.559489157050848],[123,224,77,-0.5555406510829926],[123,224,78,-0.5509115941822529],[123,224,79,-0.5459424331784248],[123,225,64,-0.5542180947959423],[123,225,65,-0.5544747784733772],[123,225,66,-0.5531223490834236],[123,225,67,-0.5513675026595592],[123,225,68,-0.5506513863801956],[123,225,69,-0.5517608299851418],[123,225,70,-0.5541238412261009],[123,225,71,-0.5568330250680447],[123,225,72,-0.5598209835588932],[123,225,73,-0.561847347766161],[123,225,74,-0.5625875182449818],[123,225,75,-0.561925869435072],[123,225,76,-0.559489157050848],[123,225,77,-0.5555406510829926],[123,225,78,-0.5509115941822529],[123,225,79,-0.5459424331784248],[123,226,64,-0.5542180947959423],[123,226,65,-0.5544747784733772],[123,226,66,-0.5531223490834236],[123,226,67,-0.5513675026595592],[123,226,68,-0.5506513863801956],[123,226,69,-0.5517608299851418],[123,226,70,-0.5541238412261009],[123,226,71,-0.5568330250680447],[123,226,72,-0.5598209835588932],[123,226,73,-0.561847347766161],[123,226,74,-0.5625875182449818],[123,226,75,-0.561925869435072],[123,226,76,-0.559489157050848],[123,226,77,-0.5555406510829926],[123,226,78,-0.5509115941822529],[123,226,79,-0.5459424331784248],[123,227,64,-0.5542180947959423],[123,227,65,-0.5544747784733772],[123,227,66,-0.5531223490834236],[123,227,67,-0.5513675026595592],[123,227,68,-0.5506513863801956],[123,227,69,-0.5517608299851418],[123,227,70,-0.5541238412261009],[123,227,71,-0.5568330250680447],[123,227,72,-0.5598209835588932],[123,227,73,-0.561847347766161],[123,227,74,-0.5625875182449818],[123,227,75,-0.561925869435072],[123,227,76,-0.559489157050848],[123,227,77,-0.5555406510829926],[123,227,78,-0.5509115941822529],[123,227,79,-0.5459424331784248],[123,228,64,-0.5542180947959423],[123,228,65,-0.5544747784733772],[123,228,66,-0.5531223490834236],[123,228,67,-0.5513675026595592],[123,228,68,-0.5506513863801956],[123,228,69,-0.5517608299851418],[123,228,70,-0.5541238412261009],[123,228,71,-0.5568330250680447],[123,228,72,-0.5598209835588932],[123,228,73,-0.561847347766161],[123,228,74,-0.5625875182449818],[123,228,75,-0.561925869435072],[123,228,76,-0.559489157050848],[123,228,77,-0.5555406510829926],[123,228,78,-0.5509115941822529],[123,228,79,-0.5459424331784248],[123,229,64,-0.5542180947959423],[123,229,65,-0.5544747784733772],[123,229,66,-0.5531223490834236],[123,229,67,-0.5513675026595592],[123,229,68,-0.5506513863801956],[123,229,69,-0.5517608299851418],[123,229,70,-0.5541238412261009],[123,229,71,-0.5568330250680447],[123,229,72,-0.5598209835588932],[123,229,73,-0.561847347766161],[123,229,74,-0.5625875182449818],[123,229,75,-0.561925869435072],[123,229,76,-0.559489157050848],[123,229,77,-0.5555406510829926],[123,229,78,-0.5509115941822529],[123,229,79,-0.5459424331784248],[123,230,64,-0.5542180947959423],[123,230,65,-0.5544747784733772],[123,230,66,-0.5531223490834236],[123,230,67,-0.5513675026595592],[123,230,68,-0.5506513863801956],[123,230,69,-0.5517608299851418],[123,230,70,-0.5541238412261009],[123,230,71,-0.5568330250680447],[123,230,72,-0.5598209835588932],[123,230,73,-0.561847347766161],[123,230,74,-0.5625875182449818],[123,230,75,-0.561925869435072],[123,230,76,-0.559489157050848],[123,230,77,-0.5555406510829926],[123,230,78,-0.5509115941822529],[123,230,79,-0.5459424331784248],[123,231,64,-0.5542180947959423],[123,231,65,-0.5544747784733772],[123,231,66,-0.5531223490834236],[123,231,67,-0.5513675026595592],[123,231,68,-0.5506513863801956],[123,231,69,-0.5517608299851418],[123,231,70,-0.5541238412261009],[123,231,71,-0.5568330250680447],[123,231,72,-0.5598209835588932],[123,231,73,-0.561847347766161],[123,231,74,-0.5625875182449818],[123,231,75,-0.561925869435072],[123,231,76,-0.559489157050848],[123,231,77,-0.5555406510829926],[123,231,78,-0.5509115941822529],[123,231,79,-0.5459424331784248],[123,232,64,-0.5542180947959423],[123,232,65,-0.5544747784733772],[123,232,66,-0.5531223490834236],[123,232,67,-0.5513675026595592],[123,232,68,-0.5506513863801956],[123,232,69,-0.5517608299851418],[123,232,70,-0.5541238412261009],[123,232,71,-0.5568330250680447],[123,232,72,-0.5598209835588932],[123,232,73,-0.561847347766161],[123,232,74,-0.5625875182449818],[123,232,75,-0.561925869435072],[123,232,76,-0.559489157050848],[123,232,77,-0.5555406510829926],[123,232,78,-0.5509115941822529],[123,232,79,-0.5459424331784248],[123,233,64,-0.5542180947959423],[123,233,65,-0.5544747784733772],[123,233,66,-0.5531223490834236],[123,233,67,-0.5513675026595592],[123,233,68,-0.5506513863801956],[123,233,69,-0.5517608299851418],[123,233,70,-0.5541238412261009],[123,233,71,-0.5568330250680447],[123,233,72,-0.5598209835588932],[123,233,73,-0.561847347766161],[123,233,74,-0.5625875182449818],[123,233,75,-0.561925869435072],[123,233,76,-0.559489157050848],[123,233,77,-0.5555406510829926],[123,233,78,-0.5509115941822529],[123,233,79,-0.5459424331784248],[123,234,64,-0.5542180947959423],[123,234,65,-0.5544747784733772],[123,234,66,-0.5531223490834236],[123,234,67,-0.5513675026595592],[123,234,68,-0.5506513863801956],[123,234,69,-0.5517608299851418],[123,234,70,-0.5541238412261009],[123,234,71,-0.5568330250680447],[123,234,72,-0.5598209835588932],[123,234,73,-0.561847347766161],[123,234,74,-0.5625875182449818],[123,234,75,-0.561925869435072],[123,234,76,-0.559489157050848],[123,234,77,-0.5555406510829926],[123,234,78,-0.5509115941822529],[123,234,79,-0.5459424331784248],[123,235,64,-0.5542180947959423],[123,235,65,-0.5544747784733772],[123,235,66,-0.5531223490834236],[123,235,67,-0.5513675026595592],[123,235,68,-0.5506513863801956],[123,235,69,-0.5517608299851418],[123,235,70,-0.5541238412261009],[123,235,71,-0.5568330250680447],[123,235,72,-0.5598209835588932],[123,235,73,-0.561847347766161],[123,235,74,-0.5625875182449818],[123,235,75,-0.561925869435072],[123,235,76,-0.559489157050848],[123,235,77,-0.5555406510829926],[123,235,78,-0.5509115941822529],[123,235,79,-0.5459424331784248],[123,236,64,-0.5542180947959423],[123,236,65,-0.5544747784733772],[123,236,66,-0.5531223490834236],[123,236,67,-0.5513675026595592],[123,236,68,-0.5506513863801956],[123,236,69,-0.5517608299851418],[123,236,70,-0.5541238412261009],[123,236,71,-0.5568330250680447],[123,236,72,-0.5598209835588932],[123,236,73,-0.561847347766161],[123,236,74,-0.5625875182449818],[123,236,75,-0.561925869435072],[123,236,76,-0.559489157050848],[123,236,77,-0.5555406510829926],[123,236,78,-0.5509115941822529],[123,236,79,-0.5459424331784248],[123,237,64,-0.5542180947959423],[123,237,65,-0.5544747784733772],[123,237,66,-0.5531223490834236],[123,237,67,-0.5513675026595592],[123,237,68,-0.5506513863801956],[123,237,69,-0.5517608299851418],[123,237,70,-0.5541238412261009],[123,237,71,-0.5568330250680447],[123,237,72,-0.5598209835588932],[123,237,73,-0.561847347766161],[123,237,74,-0.5625875182449818],[123,237,75,-0.561925869435072],[123,237,76,-0.559489157050848],[123,237,77,-0.5555406510829926],[123,237,78,-0.5509115941822529],[123,237,79,-0.5459424331784248],[123,238,64,-0.5542180947959423],[123,238,65,-0.5544747784733772],[123,238,66,-0.5531223490834236],[123,238,67,-0.5513675026595592],[123,238,68,-0.5506513863801956],[123,238,69,-0.5517608299851418],[123,238,70,-0.5541238412261009],[123,238,71,-0.5568330250680447],[123,238,72,-0.5598209835588932],[123,238,73,-0.561847347766161],[123,238,74,-0.5625875182449818],[123,238,75,-0.561925869435072],[123,238,76,-0.559489157050848],[123,238,77,-0.5555406510829926],[123,238,78,-0.5509115941822529],[123,238,79,-0.5459424331784248],[123,239,64,-0.5542180947959423],[123,239,65,-0.5544747784733772],[123,239,66,-0.5531223490834236],[123,239,67,-0.5513675026595592],[123,239,68,-0.5506513863801956],[123,239,69,-0.5517608299851418],[123,239,70,-0.5541238412261009],[123,239,71,-0.5568330250680447],[123,239,72,-0.5598209835588932],[123,239,73,-0.561847347766161],[123,239,74,-0.5625875182449818],[123,239,75,-0.561925869435072],[123,239,76,-0.559489157050848],[123,239,77,-0.5555406510829926],[123,239,78,-0.5509115941822529],[123,239,79,-0.5459424331784248],[123,240,64,-0.5542180947959423],[123,240,65,-0.5544747784733772],[123,240,66,-0.5531223490834236],[123,240,67,-0.5513675026595592],[123,240,68,-0.5506513863801956],[123,240,69,-0.5517608299851418],[123,240,70,-0.5541238412261009],[123,240,71,-0.5568330250680447],[123,240,72,-0.5598209835588932],[123,240,73,-0.561847347766161],[123,240,74,-0.5625875182449818],[123,240,75,-0.561925869435072],[123,240,76,-0.559489157050848],[123,240,77,-0.5555406510829926],[123,240,78,-0.5509115941822529],[123,240,79,-0.5459424331784248],[123,241,64,-0.5542180947959423],[123,241,65,-0.5544747784733772],[123,241,66,-0.5531223490834236],[123,241,67,-0.5513675026595592],[123,241,68,-0.5506513863801956],[123,241,69,-0.5517608299851418],[123,241,70,-0.5541238412261009],[123,241,71,-0.5568330250680447],[123,241,72,-0.5598209835588932],[123,241,73,-0.561847347766161],[123,241,74,-0.5625875182449818],[123,241,75,-0.561925869435072],[123,241,76,-0.559489157050848],[123,241,77,-0.5555406510829926],[123,241,78,-0.5509115941822529],[123,241,79,-0.5459424331784248],[123,242,64,-0.5542180947959423],[123,242,65,-0.5544747784733772],[123,242,66,-0.5531223490834236],[123,242,67,-0.5513675026595592],[123,242,68,-0.5506513863801956],[123,242,69,-0.5517608299851418],[123,242,70,-0.5541238412261009],[123,242,71,-0.5568330250680447],[123,242,72,-0.5598209835588932],[123,242,73,-0.561847347766161],[123,242,74,-0.5625875182449818],[123,242,75,-0.561925869435072],[123,242,76,-0.559489157050848],[123,242,77,-0.5555406510829926],[123,242,78,-0.5509115941822529],[123,242,79,-0.5459424331784248],[123,243,64,-0.5542180947959423],[123,243,65,-0.5544747784733772],[123,243,66,-0.5531223490834236],[123,243,67,-0.5513675026595592],[123,243,68,-0.5506513863801956],[123,243,69,-0.5517608299851418],[123,243,70,-0.5541238412261009],[123,243,71,-0.5568330250680447],[123,243,72,-0.5598209835588932],[123,243,73,-0.561847347766161],[123,243,74,-0.5625875182449818],[123,243,75,-0.561925869435072],[123,243,76,-0.559489157050848],[123,243,77,-0.5555406510829926],[123,243,78,-0.5509115941822529],[123,243,79,-0.5459424331784248],[123,244,64,-0.5542180947959423],[123,244,65,-0.5544747784733772],[123,244,66,-0.5531223490834236],[123,244,67,-0.5513675026595592],[123,244,68,-0.5506513863801956],[123,244,69,-0.5517608299851418],[123,244,70,-0.5541238412261009],[123,244,71,-0.5568330250680447],[123,244,72,-0.5598209835588932],[123,244,73,-0.561847347766161],[123,244,74,-0.5625875182449818],[123,244,75,-0.561925869435072],[123,244,76,-0.559489157050848],[123,244,77,-0.5555406510829926],[123,244,78,-0.5509115941822529],[123,244,79,-0.5459424331784248],[123,245,64,-0.5542180947959423],[123,245,65,-0.5544747784733772],[123,245,66,-0.5531223490834236],[123,245,67,-0.5513675026595592],[123,245,68,-0.5506513863801956],[123,245,69,-0.5517608299851418],[123,245,70,-0.5541238412261009],[123,245,71,-0.5568330250680447],[123,245,72,-0.5598209835588932],[123,245,73,-0.561847347766161],[123,245,74,-0.5625875182449818],[123,245,75,-0.561925869435072],[123,245,76,-0.559489157050848],[123,245,77,-0.5555406510829926],[123,245,78,-0.5509115941822529],[123,245,79,-0.5459424331784248],[123,246,64,-0.5542180947959423],[123,246,65,-0.5544747784733772],[123,246,66,-0.5531223490834236],[123,246,67,-0.5513675026595592],[123,246,68,-0.5506513863801956],[123,246,69,-0.5517608299851418],[123,246,70,-0.5541238412261009],[123,246,71,-0.5568330250680447],[123,246,72,-0.5598209835588932],[123,246,73,-0.561847347766161],[123,246,74,-0.5625875182449818],[123,246,75,-0.561925869435072],[123,246,76,-0.559489157050848],[123,246,77,-0.5555406510829926],[123,246,78,-0.5509115941822529],[123,246,79,-0.5459424331784248],[123,247,64,-0.5542180947959423],[123,247,65,-0.5544747784733772],[123,247,66,-0.5531223490834236],[123,247,67,-0.5513675026595592],[123,247,68,-0.5506513863801956],[123,247,69,-0.5517608299851418],[123,247,70,-0.5541238412261009],[123,247,71,-0.5568330250680447],[123,247,72,-0.5598209835588932],[123,247,73,-0.561847347766161],[123,247,74,-0.5625875182449818],[123,247,75,-0.561925869435072],[123,247,76,-0.559489157050848],[123,247,77,-0.5555406510829926],[123,247,78,-0.5509115941822529],[123,247,79,-0.5459424331784248],[123,248,64,-0.5542180947959423],[123,248,65,-0.5544747784733772],[123,248,66,-0.5531223490834236],[123,248,67,-0.5513675026595592],[123,248,68,-0.5506513863801956],[123,248,69,-0.5517608299851418],[123,248,70,-0.5541238412261009],[123,248,71,-0.5568330250680447],[123,248,72,-0.5598209835588932],[123,248,73,-0.561847347766161],[123,248,74,-0.5625875182449818],[123,248,75,-0.561925869435072],[123,248,76,-0.559489157050848],[123,248,77,-0.5555406510829926],[123,248,78,-0.5509115941822529],[123,248,79,-0.5459424331784248],[123,249,64,-0.5542180947959423],[123,249,65,-0.5544747784733772],[123,249,66,-0.5531223490834236],[123,249,67,-0.5513675026595592],[123,249,68,-0.5506513863801956],[123,249,69,-0.5517608299851418],[123,249,70,-0.5541238412261009],[123,249,71,-0.5568330250680447],[123,249,72,-0.5598209835588932],[123,249,73,-0.561847347766161],[123,249,74,-0.5625875182449818],[123,249,75,-0.561925869435072],[123,249,76,-0.559489157050848],[123,249,77,-0.5555406510829926],[123,249,78,-0.5509115941822529],[123,249,79,-0.5459424331784248],[123,250,64,-0.5542180947959423],[123,250,65,-0.5544747784733772],[123,250,66,-0.5531223490834236],[123,250,67,-0.5513675026595592],[123,250,68,-0.5506513863801956],[123,250,69,-0.5517608299851418],[123,250,70,-0.5541238412261009],[123,250,71,-0.5568330250680447],[123,250,72,-0.5598209835588932],[123,250,73,-0.561847347766161],[123,250,74,-0.5625875182449818],[123,250,75,-0.561925869435072],[123,250,76,-0.559489157050848],[123,250,77,-0.5555406510829926],[123,250,78,-0.5509115941822529],[123,250,79,-0.5459424331784248],[123,251,64,-0.5542180947959423],[123,251,65,-0.5544747784733772],[123,251,66,-0.5531223490834236],[123,251,67,-0.5513675026595592],[123,251,68,-0.5506513863801956],[123,251,69,-0.5517608299851418],[123,251,70,-0.5541238412261009],[123,251,71,-0.5568330250680447],[123,251,72,-0.5598209835588932],[123,251,73,-0.561847347766161],[123,251,74,-0.5625875182449818],[123,251,75,-0.561925869435072],[123,251,76,-0.559489157050848],[123,251,77,-0.5555406510829926],[123,251,78,-0.5509115941822529],[123,251,79,-0.5459424331784248],[123,252,64,-0.5542180947959423],[123,252,65,-0.5544747784733772],[123,252,66,-0.5531223490834236],[123,252,67,-0.5513675026595592],[123,252,68,-0.5506513863801956],[123,252,69,-0.5517608299851418],[123,252,70,-0.5541238412261009],[123,252,71,-0.5568330250680447],[123,252,72,-0.5598209835588932],[123,252,73,-0.561847347766161],[123,252,74,-0.5625875182449818],[123,252,75,-0.561925869435072],[123,252,76,-0.559489157050848],[123,252,77,-0.5555406510829926],[123,252,78,-0.5509115941822529],[123,252,79,-0.5459424331784248],[123,253,64,-0.5542180947959423],[123,253,65,-0.5544747784733772],[123,253,66,-0.5531223490834236],[123,253,67,-0.5513675026595592],[123,253,68,-0.5506513863801956],[123,253,69,-0.5517608299851418],[123,253,70,-0.5541238412261009],[123,253,71,-0.5568330250680447],[123,253,72,-0.5598209835588932],[123,253,73,-0.561847347766161],[123,253,74,-0.5625875182449818],[123,253,75,-0.561925869435072],[123,253,76,-0.559489157050848],[123,253,77,-0.5555406510829926],[123,253,78,-0.5509115941822529],[123,253,79,-0.5459424331784248],[123,254,64,-0.5542180947959423],[123,254,65,-0.5544747784733772],[123,254,66,-0.5531223490834236],[123,254,67,-0.5513675026595592],[123,254,68,-0.5506513863801956],[123,254,69,-0.5517608299851418],[123,254,70,-0.5541238412261009],[123,254,71,-0.5568330250680447],[123,254,72,-0.5598209835588932],[123,254,73,-0.561847347766161],[123,254,74,-0.5625875182449818],[123,254,75,-0.561925869435072],[123,254,76,-0.559489157050848],[123,254,77,-0.5555406510829926],[123,254,78,-0.5509115941822529],[123,254,79,-0.5459424331784248],[123,255,64,-0.5542180947959423],[123,255,65,-0.5544747784733772],[123,255,66,-0.5531223490834236],[123,255,67,-0.5513675026595592],[123,255,68,-0.5506513863801956],[123,255,69,-0.5517608299851418],[123,255,70,-0.5541238412261009],[123,255,71,-0.5568330250680447],[123,255,72,-0.5598209835588932],[123,255,73,-0.561847347766161],[123,255,74,-0.5625875182449818],[123,255,75,-0.561925869435072],[123,255,76,-0.559489157050848],[123,255,77,-0.5555406510829926],[123,255,78,-0.5509115941822529],[123,255,79,-0.5459424331784248],[123,256,64,-0.5542180947959423],[123,256,65,-0.5544747784733772],[123,256,66,-0.5531223490834236],[123,256,67,-0.5513675026595592],[123,256,68,-0.5506513863801956],[123,256,69,-0.5517608299851418],[123,256,70,-0.5541238412261009],[123,256,71,-0.5568330250680447],[123,256,72,-0.5598209835588932],[123,256,73,-0.561847347766161],[123,256,74,-0.5625875182449818],[123,256,75,-0.561925869435072],[123,256,76,-0.559489157050848],[123,256,77,-0.5555406510829926],[123,256,78,-0.5509115941822529],[123,256,79,-0.5459424331784248],[123,257,64,-0.5542180947959423],[123,257,65,-0.5544747784733772],[123,257,66,-0.5531223490834236],[123,257,67,-0.5513675026595592],[123,257,68,-0.5506513863801956],[123,257,69,-0.5517608299851418],[123,257,70,-0.5541238412261009],[123,257,71,-0.5568330250680447],[123,257,72,-0.5598209835588932],[123,257,73,-0.561847347766161],[123,257,74,-0.5625875182449818],[123,257,75,-0.561925869435072],[123,257,76,-0.559489157050848],[123,257,77,-0.5555406510829926],[123,257,78,-0.5509115941822529],[123,257,79,-0.5459424331784248],[123,258,64,-0.5542180947959423],[123,258,65,-0.5544747784733772],[123,258,66,-0.5531223490834236],[123,258,67,-0.5513675026595592],[123,258,68,-0.5506513863801956],[123,258,69,-0.5517608299851418],[123,258,70,-0.5541238412261009],[123,258,71,-0.5568330250680447],[123,258,72,-0.5598209835588932],[123,258,73,-0.561847347766161],[123,258,74,-0.5625875182449818],[123,258,75,-0.561925869435072],[123,258,76,-0.559489157050848],[123,258,77,-0.5555406510829926],[123,258,78,-0.5509115941822529],[123,258,79,-0.5459424331784248],[123,259,64,-0.5542180947959423],[123,259,65,-0.5544747784733772],[123,259,66,-0.5531223490834236],[123,259,67,-0.5513675026595592],[123,259,68,-0.5506513863801956],[123,259,69,-0.5517608299851418],[123,259,70,-0.5541238412261009],[123,259,71,-0.5568330250680447],[123,259,72,-0.5598209835588932],[123,259,73,-0.561847347766161],[123,259,74,-0.5625875182449818],[123,259,75,-0.561925869435072],[123,259,76,-0.559489157050848],[123,259,77,-0.5555406510829926],[123,259,78,-0.5509115941822529],[123,259,79,-0.5459424331784248],[123,260,64,-0.5542180947959423],[123,260,65,-0.5544747784733772],[123,260,66,-0.5531223490834236],[123,260,67,-0.5513675026595592],[123,260,68,-0.5506513863801956],[123,260,69,-0.5517608299851418],[123,260,70,-0.5541238412261009],[123,260,71,-0.5568330250680447],[123,260,72,-0.5598209835588932],[123,260,73,-0.561847347766161],[123,260,74,-0.5625875182449818],[123,260,75,-0.561925869435072],[123,260,76,-0.559489157050848],[123,260,77,-0.5555406510829926],[123,260,78,-0.5509115941822529],[123,260,79,-0.5459424331784248],[123,261,64,-0.5542180947959423],[123,261,65,-0.5544747784733772],[123,261,66,-0.5531223490834236],[123,261,67,-0.5513675026595592],[123,261,68,-0.5506513863801956],[123,261,69,-0.5517608299851418],[123,261,70,-0.5541238412261009],[123,261,71,-0.5568330250680447],[123,261,72,-0.5598209835588932],[123,261,73,-0.561847347766161],[123,261,74,-0.5625875182449818],[123,261,75,-0.561925869435072],[123,261,76,-0.559489157050848],[123,261,77,-0.5555406510829926],[123,261,78,-0.5509115941822529],[123,261,79,-0.5459424331784248],[123,262,64,-0.5542180947959423],[123,262,65,-0.5544747784733772],[123,262,66,-0.5531223490834236],[123,262,67,-0.5513675026595592],[123,262,68,-0.5506513863801956],[123,262,69,-0.5517608299851418],[123,262,70,-0.5541238412261009],[123,262,71,-0.5568330250680447],[123,262,72,-0.5598209835588932],[123,262,73,-0.561847347766161],[123,262,74,-0.5625875182449818],[123,262,75,-0.561925869435072],[123,262,76,-0.559489157050848],[123,262,77,-0.5555406510829926],[123,262,78,-0.5509115941822529],[123,262,79,-0.5459424331784248],[123,263,64,-0.5542180947959423],[123,263,65,-0.5544747784733772],[123,263,66,-0.5531223490834236],[123,263,67,-0.5513675026595592],[123,263,68,-0.5506513863801956],[123,263,69,-0.5517608299851418],[123,263,70,-0.5541238412261009],[123,263,71,-0.5568330250680447],[123,263,72,-0.5598209835588932],[123,263,73,-0.561847347766161],[123,263,74,-0.5625875182449818],[123,263,75,-0.561925869435072],[123,263,76,-0.559489157050848],[123,263,77,-0.5555406510829926],[123,263,78,-0.5509115941822529],[123,263,79,-0.5459424331784248],[123,264,64,-0.5542180947959423],[123,264,65,-0.5544747784733772],[123,264,66,-0.5531223490834236],[123,264,67,-0.5513675026595592],[123,264,68,-0.5506513863801956],[123,264,69,-0.5517608299851418],[123,264,70,-0.5541238412261009],[123,264,71,-0.5568330250680447],[123,264,72,-0.5598209835588932],[123,264,73,-0.561847347766161],[123,264,74,-0.5625875182449818],[123,264,75,-0.561925869435072],[123,264,76,-0.559489157050848],[123,264,77,-0.5555406510829926],[123,264,78,-0.5509115941822529],[123,264,79,-0.5459424331784248],[123,265,64,-0.5542180947959423],[123,265,65,-0.5544747784733772],[123,265,66,-0.5531223490834236],[123,265,67,-0.5513675026595592],[123,265,68,-0.5506513863801956],[123,265,69,-0.5517608299851418],[123,265,70,-0.5541238412261009],[123,265,71,-0.5568330250680447],[123,265,72,-0.5598209835588932],[123,265,73,-0.561847347766161],[123,265,74,-0.5625875182449818],[123,265,75,-0.561925869435072],[123,265,76,-0.559489157050848],[123,265,77,-0.5555406510829926],[123,265,78,-0.5509115941822529],[123,265,79,-0.5459424331784248],[123,266,64,-0.5542180947959423],[123,266,65,-0.5544747784733772],[123,266,66,-0.5531223490834236],[123,266,67,-0.5513675026595592],[123,266,68,-0.5506513863801956],[123,266,69,-0.5517608299851418],[123,266,70,-0.5541238412261009],[123,266,71,-0.5568330250680447],[123,266,72,-0.5598209835588932],[123,266,73,-0.561847347766161],[123,266,74,-0.5625875182449818],[123,266,75,-0.561925869435072],[123,266,76,-0.559489157050848],[123,266,77,-0.5555406510829926],[123,266,78,-0.5509115941822529],[123,266,79,-0.5459424331784248],[123,267,64,-0.5542180947959423],[123,267,65,-0.5544747784733772],[123,267,66,-0.5531223490834236],[123,267,67,-0.5513675026595592],[123,267,68,-0.5506513863801956],[123,267,69,-0.5517608299851418],[123,267,70,-0.5541238412261009],[123,267,71,-0.5568330250680447],[123,267,72,-0.5598209835588932],[123,267,73,-0.561847347766161],[123,267,74,-0.5625875182449818],[123,267,75,-0.561925869435072],[123,267,76,-0.559489157050848],[123,267,77,-0.5555406510829926],[123,267,78,-0.5509115941822529],[123,267,79,-0.5459424331784248],[123,268,64,-0.5542180947959423],[123,268,65,-0.5544747784733772],[123,268,66,-0.5531223490834236],[123,268,67,-0.5513675026595592],[123,268,68,-0.5506513863801956],[123,268,69,-0.5517608299851418],[123,268,70,-0.5541238412261009],[123,268,71,-0.5568330250680447],[123,268,72,-0.5598209835588932],[123,268,73,-0.561847347766161],[123,268,74,-0.5625875182449818],[123,268,75,-0.561925869435072],[123,268,76,-0.559489157050848],[123,268,77,-0.5555406510829926],[123,268,78,-0.5509115941822529],[123,268,79,-0.5459424331784248],[123,269,64,-0.5542180947959423],[123,269,65,-0.5544747784733772],[123,269,66,-0.5531223490834236],[123,269,67,-0.5513675026595592],[123,269,68,-0.5506513863801956],[123,269,69,-0.5517608299851418],[123,269,70,-0.5541238412261009],[123,269,71,-0.5568330250680447],[123,269,72,-0.5598209835588932],[123,269,73,-0.561847347766161],[123,269,74,-0.5625875182449818],[123,269,75,-0.561925869435072],[123,269,76,-0.559489157050848],[123,269,77,-0.5555406510829926],[123,269,78,-0.5509115941822529],[123,269,79,-0.5459424331784248],[123,270,64,-0.5542180947959423],[123,270,65,-0.5544747784733772],[123,270,66,-0.5531223490834236],[123,270,67,-0.5513675026595592],[123,270,68,-0.5506513863801956],[123,270,69,-0.5517608299851418],[123,270,70,-0.5541238412261009],[123,270,71,-0.5568330250680447],[123,270,72,-0.5598209835588932],[123,270,73,-0.561847347766161],[123,270,74,-0.5625875182449818],[123,270,75,-0.561925869435072],[123,270,76,-0.559489157050848],[123,270,77,-0.5555406510829926],[123,270,78,-0.5509115941822529],[123,270,79,-0.5459424331784248],[123,271,64,-0.5542180947959423],[123,271,65,-0.5544747784733772],[123,271,66,-0.5531223490834236],[123,271,67,-0.5513675026595592],[123,271,68,-0.5506513863801956],[123,271,69,-0.5517608299851418],[123,271,70,-0.5541238412261009],[123,271,71,-0.5568330250680447],[123,271,72,-0.5598209835588932],[123,271,73,-0.561847347766161],[123,271,74,-0.5625875182449818],[123,271,75,-0.561925869435072],[123,271,76,-0.559489157050848],[123,271,77,-0.5555406510829926],[123,271,78,-0.5509115941822529],[123,271,79,-0.5459424331784248],[123,272,64,-0.5542180947959423],[123,272,65,-0.5544747784733772],[123,272,66,-0.5531223490834236],[123,272,67,-0.5513675026595592],[123,272,68,-0.5506513863801956],[123,272,69,-0.5517608299851418],[123,272,70,-0.5541238412261009],[123,272,71,-0.5568330250680447],[123,272,72,-0.5598209835588932],[123,272,73,-0.561847347766161],[123,272,74,-0.5625875182449818],[123,272,75,-0.561925869435072],[123,272,76,-0.559489157050848],[123,272,77,-0.5555406510829926],[123,272,78,-0.5509115941822529],[123,272,79,-0.5459424331784248],[123,273,64,-0.5542180947959423],[123,273,65,-0.5544747784733772],[123,273,66,-0.5531223490834236],[123,273,67,-0.5513675026595592],[123,273,68,-0.5506513863801956],[123,273,69,-0.5517608299851418],[123,273,70,-0.5541238412261009],[123,273,71,-0.5568330250680447],[123,273,72,-0.5598209835588932],[123,273,73,-0.561847347766161],[123,273,74,-0.5625875182449818],[123,273,75,-0.561925869435072],[123,273,76,-0.559489157050848],[123,273,77,-0.5555406510829926],[123,273,78,-0.5509115941822529],[123,273,79,-0.5459424331784248],[123,274,64,-0.5542180947959423],[123,274,65,-0.5544747784733772],[123,274,66,-0.5531223490834236],[123,274,67,-0.5513675026595592],[123,274,68,-0.5506513863801956],[123,274,69,-0.5517608299851418],[123,274,70,-0.5541238412261009],[123,274,71,-0.5568330250680447],[123,274,72,-0.5598209835588932],[123,274,73,-0.561847347766161],[123,274,74,-0.5625875182449818],[123,274,75,-0.561925869435072],[123,274,76,-0.559489157050848],[123,274,77,-0.5555406510829926],[123,274,78,-0.5509115941822529],[123,274,79,-0.5459424331784248],[123,275,64,-0.5542180947959423],[123,275,65,-0.5544747784733772],[123,275,66,-0.5531223490834236],[123,275,67,-0.5513675026595592],[123,275,68,-0.5506513863801956],[123,275,69,-0.5517608299851418],[123,275,70,-0.5541238412261009],[123,275,71,-0.5568330250680447],[123,275,72,-0.5598209835588932],[123,275,73,-0.561847347766161],[123,275,74,-0.5625875182449818],[123,275,75,-0.561925869435072],[123,275,76,-0.559489157050848],[123,275,77,-0.5555406510829926],[123,275,78,-0.5509115941822529],[123,275,79,-0.5459424331784248],[123,276,64,-0.5542180947959423],[123,276,65,-0.5544747784733772],[123,276,66,-0.5531223490834236],[123,276,67,-0.5513675026595592],[123,276,68,-0.5506513863801956],[123,276,69,-0.5517608299851418],[123,276,70,-0.5541238412261009],[123,276,71,-0.5568330250680447],[123,276,72,-0.5598209835588932],[123,276,73,-0.561847347766161],[123,276,74,-0.5625875182449818],[123,276,75,-0.561925869435072],[123,276,76,-0.559489157050848],[123,276,77,-0.5555406510829926],[123,276,78,-0.5509115941822529],[123,276,79,-0.5459424331784248],[123,277,64,-0.5542180947959423],[123,277,65,-0.5544747784733772],[123,277,66,-0.5531223490834236],[123,277,67,-0.5513675026595592],[123,277,68,-0.5506513863801956],[123,277,69,-0.5517608299851418],[123,277,70,-0.5541238412261009],[123,277,71,-0.5568330250680447],[123,277,72,-0.5598209835588932],[123,277,73,-0.561847347766161],[123,277,74,-0.5625875182449818],[123,277,75,-0.561925869435072],[123,277,76,-0.559489157050848],[123,277,77,-0.5555406510829926],[123,277,78,-0.5509115941822529],[123,277,79,-0.5459424331784248],[123,278,64,-0.5542180947959423],[123,278,65,-0.5544747784733772],[123,278,66,-0.5531223490834236],[123,278,67,-0.5513675026595592],[123,278,68,-0.5506513863801956],[123,278,69,-0.5517608299851418],[123,278,70,-0.5541238412261009],[123,278,71,-0.5568330250680447],[123,278,72,-0.5598209835588932],[123,278,73,-0.561847347766161],[123,278,74,-0.5625875182449818],[123,278,75,-0.561925869435072],[123,278,76,-0.559489157050848],[123,278,77,-0.5555406510829926],[123,278,78,-0.5509115941822529],[123,278,79,-0.5459424331784248],[123,279,64,-0.5542180947959423],[123,279,65,-0.5544747784733772],[123,279,66,-0.5531223490834236],[123,279,67,-0.5513675026595592],[123,279,68,-0.5506513863801956],[123,279,69,-0.5517608299851418],[123,279,70,-0.5541238412261009],[123,279,71,-0.5568330250680447],[123,279,72,-0.5598209835588932],[123,279,73,-0.561847347766161],[123,279,74,-0.5625875182449818],[123,279,75,-0.561925869435072],[123,279,76,-0.559489157050848],[123,279,77,-0.5555406510829926],[123,279,78,-0.5509115941822529],[123,279,79,-0.5459424331784248],[123,280,64,-0.5542180947959423],[123,280,65,-0.5544747784733772],[123,280,66,-0.5531223490834236],[123,280,67,-0.5513675026595592],[123,280,68,-0.5506513863801956],[123,280,69,-0.5517608299851418],[123,280,70,-0.5541238412261009],[123,280,71,-0.5568330250680447],[123,280,72,-0.5598209835588932],[123,280,73,-0.561847347766161],[123,280,74,-0.5625875182449818],[123,280,75,-0.561925869435072],[123,280,76,-0.559489157050848],[123,280,77,-0.5555406510829926],[123,280,78,-0.5509115941822529],[123,280,79,-0.5459424331784248],[123,281,64,-0.5542180947959423],[123,281,65,-0.5544747784733772],[123,281,66,-0.5531223490834236],[123,281,67,-0.5513675026595592],[123,281,68,-0.5506513863801956],[123,281,69,-0.5517608299851418],[123,281,70,-0.5541238412261009],[123,281,71,-0.5568330250680447],[123,281,72,-0.5598209835588932],[123,281,73,-0.561847347766161],[123,281,74,-0.5625875182449818],[123,281,75,-0.561925869435072],[123,281,76,-0.559489157050848],[123,281,77,-0.5555406510829926],[123,281,78,-0.5509115941822529],[123,281,79,-0.5459424331784248],[123,282,64,-0.5542180947959423],[123,282,65,-0.5544747784733772],[123,282,66,-0.5531223490834236],[123,282,67,-0.5513675026595592],[123,282,68,-0.5506513863801956],[123,282,69,-0.5517608299851418],[123,282,70,-0.5541238412261009],[123,282,71,-0.5568330250680447],[123,282,72,-0.5598209835588932],[123,282,73,-0.561847347766161],[123,282,74,-0.5625875182449818],[123,282,75,-0.561925869435072],[123,282,76,-0.559489157050848],[123,282,77,-0.5555406510829926],[123,282,78,-0.5509115941822529],[123,282,79,-0.5459424331784248],[123,283,64,-0.5542180947959423],[123,283,65,-0.5544747784733772],[123,283,66,-0.5531223490834236],[123,283,67,-0.5513675026595592],[123,283,68,-0.5506513863801956],[123,283,69,-0.5517608299851418],[123,283,70,-0.5541238412261009],[123,283,71,-0.5568330250680447],[123,283,72,-0.5598209835588932],[123,283,73,-0.561847347766161],[123,283,74,-0.5625875182449818],[123,283,75,-0.561925869435072],[123,283,76,-0.559489157050848],[123,283,77,-0.5555406510829926],[123,283,78,-0.5509115941822529],[123,283,79,-0.5459424331784248],[123,284,64,-0.5542180947959423],[123,284,65,-0.5544747784733772],[123,284,66,-0.5531223490834236],[123,284,67,-0.5513675026595592],[123,284,68,-0.5506513863801956],[123,284,69,-0.5517608299851418],[123,284,70,-0.5541238412261009],[123,284,71,-0.5568330250680447],[123,284,72,-0.5598209835588932],[123,284,73,-0.561847347766161],[123,284,74,-0.5625875182449818],[123,284,75,-0.561925869435072],[123,284,76,-0.559489157050848],[123,284,77,-0.5555406510829926],[123,284,78,-0.5509115941822529],[123,284,79,-0.5459424331784248],[123,285,64,-0.5542180947959423],[123,285,65,-0.5544747784733772],[123,285,66,-0.5531223490834236],[123,285,67,-0.5513675026595592],[123,285,68,-0.5506513863801956],[123,285,69,-0.5517608299851418],[123,285,70,-0.5541238412261009],[123,285,71,-0.5568330250680447],[123,285,72,-0.5598209835588932],[123,285,73,-0.561847347766161],[123,285,74,-0.5625875182449818],[123,285,75,-0.561925869435072],[123,285,76,-0.559489157050848],[123,285,77,-0.5555406510829926],[123,285,78,-0.5509115941822529],[123,285,79,-0.5459424331784248],[123,286,64,-0.5542180947959423],[123,286,65,-0.5544747784733772],[123,286,66,-0.5531223490834236],[123,286,67,-0.5513675026595592],[123,286,68,-0.5506513863801956],[123,286,69,-0.5517608299851418],[123,286,70,-0.5541238412261009],[123,286,71,-0.5568330250680447],[123,286,72,-0.5598209835588932],[123,286,73,-0.561847347766161],[123,286,74,-0.5625875182449818],[123,286,75,-0.561925869435072],[123,286,76,-0.559489157050848],[123,286,77,-0.5555406510829926],[123,286,78,-0.5509115941822529],[123,286,79,-0.5459424331784248],[123,287,64,-0.5542180947959423],[123,287,65,-0.5544747784733772],[123,287,66,-0.5531223490834236],[123,287,67,-0.5513675026595592],[123,287,68,-0.5506513863801956],[123,287,69,-0.5517608299851418],[123,287,70,-0.5541238412261009],[123,287,71,-0.5568330250680447],[123,287,72,-0.5598209835588932],[123,287,73,-0.561847347766161],[123,287,74,-0.5625875182449818],[123,287,75,-0.561925869435072],[123,287,76,-0.559489157050848],[123,287,77,-0.5555406510829926],[123,287,78,-0.5509115941822529],[123,287,79,-0.5459424331784248],[123,288,64,-0.5542180947959423],[123,288,65,-0.5544747784733772],[123,288,66,-0.5531223490834236],[123,288,67,-0.5513675026595592],[123,288,68,-0.5506513863801956],[123,288,69,-0.5517608299851418],[123,288,70,-0.5541238412261009],[123,288,71,-0.5568330250680447],[123,288,72,-0.5598209835588932],[123,288,73,-0.561847347766161],[123,288,74,-0.5625875182449818],[123,288,75,-0.561925869435072],[123,288,76,-0.559489157050848],[123,288,77,-0.5555406510829926],[123,288,78,-0.5509115941822529],[123,288,79,-0.5459424331784248],[123,289,64,-0.5542180947959423],[123,289,65,-0.5544747784733772],[123,289,66,-0.5531223490834236],[123,289,67,-0.5513675026595592],[123,289,68,-0.5506513863801956],[123,289,69,-0.5517608299851418],[123,289,70,-0.5541238412261009],[123,289,71,-0.5568330250680447],[123,289,72,-0.5598209835588932],[123,289,73,-0.561847347766161],[123,289,74,-0.5625875182449818],[123,289,75,-0.561925869435072],[123,289,76,-0.559489157050848],[123,289,77,-0.5555406510829926],[123,289,78,-0.5509115941822529],[123,289,79,-0.5459424331784248],[123,290,64,-0.5542180947959423],[123,290,65,-0.5544747784733772],[123,290,66,-0.5531223490834236],[123,290,67,-0.5513675026595592],[123,290,68,-0.5506513863801956],[123,290,69,-0.5517608299851418],[123,290,70,-0.5541238412261009],[123,290,71,-0.5568330250680447],[123,290,72,-0.5598209835588932],[123,290,73,-0.561847347766161],[123,290,74,-0.5625875182449818],[123,290,75,-0.561925869435072],[123,290,76,-0.559489157050848],[123,290,77,-0.5555406510829926],[123,290,78,-0.5509115941822529],[123,290,79,-0.5459424331784248],[123,291,64,-0.5542180947959423],[123,291,65,-0.5544747784733772],[123,291,66,-0.5531223490834236],[123,291,67,-0.5513675026595592],[123,291,68,-0.5506513863801956],[123,291,69,-0.5517608299851418],[123,291,70,-0.5541238412261009],[123,291,71,-0.5568330250680447],[123,291,72,-0.5598209835588932],[123,291,73,-0.561847347766161],[123,291,74,-0.5625875182449818],[123,291,75,-0.561925869435072],[123,291,76,-0.559489157050848],[123,291,77,-0.5555406510829926],[123,291,78,-0.5509115941822529],[123,291,79,-0.5459424331784248],[123,292,64,-0.5542180947959423],[123,292,65,-0.5544747784733772],[123,292,66,-0.5531223490834236],[123,292,67,-0.5513675026595592],[123,292,68,-0.5506513863801956],[123,292,69,-0.5517608299851418],[123,292,70,-0.5541238412261009],[123,292,71,-0.5568330250680447],[123,292,72,-0.5598209835588932],[123,292,73,-0.561847347766161],[123,292,74,-0.5625875182449818],[123,292,75,-0.561925869435072],[123,292,76,-0.559489157050848],[123,292,77,-0.5555406510829926],[123,292,78,-0.5509115941822529],[123,292,79,-0.5459424331784248],[123,293,64,-0.5542180947959423],[123,293,65,-0.5544747784733772],[123,293,66,-0.5531223490834236],[123,293,67,-0.5513675026595592],[123,293,68,-0.5506513863801956],[123,293,69,-0.5517608299851418],[123,293,70,-0.5541238412261009],[123,293,71,-0.5568330250680447],[123,293,72,-0.5598209835588932],[123,293,73,-0.561847347766161],[123,293,74,-0.5625875182449818],[123,293,75,-0.561925869435072],[123,293,76,-0.559489157050848],[123,293,77,-0.5555406510829926],[123,293,78,-0.5509115941822529],[123,293,79,-0.5459424331784248],[123,294,64,-0.5542180947959423],[123,294,65,-0.5544747784733772],[123,294,66,-0.5531223490834236],[123,294,67,-0.5513675026595592],[123,294,68,-0.5506513863801956],[123,294,69,-0.5517608299851418],[123,294,70,-0.5541238412261009],[123,294,71,-0.5568330250680447],[123,294,72,-0.5598209835588932],[123,294,73,-0.561847347766161],[123,294,74,-0.5625875182449818],[123,294,75,-0.561925869435072],[123,294,76,-0.559489157050848],[123,294,77,-0.5555406510829926],[123,294,78,-0.5509115941822529],[123,294,79,-0.5459424331784248],[123,295,64,-0.5542180947959423],[123,295,65,-0.5544747784733772],[123,295,66,-0.5531223490834236],[123,295,67,-0.5513675026595592],[123,295,68,-0.5506513863801956],[123,295,69,-0.5517608299851418],[123,295,70,-0.5541238412261009],[123,295,71,-0.5568330250680447],[123,295,72,-0.5598209835588932],[123,295,73,-0.561847347766161],[123,295,74,-0.5625875182449818],[123,295,75,-0.561925869435072],[123,295,76,-0.559489157050848],[123,295,77,-0.5555406510829926],[123,295,78,-0.5509115941822529],[123,295,79,-0.5459424331784248],[123,296,64,-0.5542180947959423],[123,296,65,-0.5544747784733772],[123,296,66,-0.5531223490834236],[123,296,67,-0.5513675026595592],[123,296,68,-0.5506513863801956],[123,296,69,-0.5517608299851418],[123,296,70,-0.5541238412261009],[123,296,71,-0.5568330250680447],[123,296,72,-0.5598209835588932],[123,296,73,-0.561847347766161],[123,296,74,-0.5625875182449818],[123,296,75,-0.561925869435072],[123,296,76,-0.559489157050848],[123,296,77,-0.5555406510829926],[123,296,78,-0.5509115941822529],[123,296,79,-0.5459424331784248],[123,297,64,-0.5542180947959423],[123,297,65,-0.5544747784733772],[123,297,66,-0.5531223490834236],[123,297,67,-0.5513675026595592],[123,297,68,-0.5506513863801956],[123,297,69,-0.5517608299851418],[123,297,70,-0.5541238412261009],[123,297,71,-0.5568330250680447],[123,297,72,-0.5598209835588932],[123,297,73,-0.561847347766161],[123,297,74,-0.5625875182449818],[123,297,75,-0.561925869435072],[123,297,76,-0.559489157050848],[123,297,77,-0.5555406510829926],[123,297,78,-0.5509115941822529],[123,297,79,-0.5459424331784248],[123,298,64,-0.5542180947959423],[123,298,65,-0.5544747784733772],[123,298,66,-0.5531223490834236],[123,298,67,-0.5513675026595592],[123,298,68,-0.5506513863801956],[123,298,69,-0.5517608299851418],[123,298,70,-0.5541238412261009],[123,298,71,-0.5568330250680447],[123,298,72,-0.5598209835588932],[123,298,73,-0.561847347766161],[123,298,74,-0.5625875182449818],[123,298,75,-0.561925869435072],[123,298,76,-0.559489157050848],[123,298,77,-0.5555406510829926],[123,298,78,-0.5509115941822529],[123,298,79,-0.5459424331784248],[123,299,64,-0.5542180947959423],[123,299,65,-0.5544747784733772],[123,299,66,-0.5531223490834236],[123,299,67,-0.5513675026595592],[123,299,68,-0.5506513863801956],[123,299,69,-0.5517608299851418],[123,299,70,-0.5541238412261009],[123,299,71,-0.5568330250680447],[123,299,72,-0.5598209835588932],[123,299,73,-0.561847347766161],[123,299,74,-0.5625875182449818],[123,299,75,-0.561925869435072],[123,299,76,-0.559489157050848],[123,299,77,-0.5555406510829926],[123,299,78,-0.5509115941822529],[123,299,79,-0.5459424331784248],[123,300,64,-0.5542180947959423],[123,300,65,-0.5544747784733772],[123,300,66,-0.5531223490834236],[123,300,67,-0.5513675026595592],[123,300,68,-0.5506513863801956],[123,300,69,-0.5517608299851418],[123,300,70,-0.5541238412261009],[123,300,71,-0.5568330250680447],[123,300,72,-0.5598209835588932],[123,300,73,-0.561847347766161],[123,300,74,-0.5625875182449818],[123,300,75,-0.561925869435072],[123,300,76,-0.559489157050848],[123,300,77,-0.5555406510829926],[123,300,78,-0.5509115941822529],[123,300,79,-0.5459424331784248],[123,301,64,-0.5542180947959423],[123,301,65,-0.5544747784733772],[123,301,66,-0.5531223490834236],[123,301,67,-0.5513675026595592],[123,301,68,-0.5506513863801956],[123,301,69,-0.5517608299851418],[123,301,70,-0.5541238412261009],[123,301,71,-0.5568330250680447],[123,301,72,-0.5598209835588932],[123,301,73,-0.561847347766161],[123,301,74,-0.5625875182449818],[123,301,75,-0.561925869435072],[123,301,76,-0.559489157050848],[123,301,77,-0.5555406510829926],[123,301,78,-0.5509115941822529],[123,301,79,-0.5459424331784248],[123,302,64,-0.5542180947959423],[123,302,65,-0.5544747784733772],[123,302,66,-0.5531223490834236],[123,302,67,-0.5513675026595592],[123,302,68,-0.5506513863801956],[123,302,69,-0.5517608299851418],[123,302,70,-0.5541238412261009],[123,302,71,-0.5568330250680447],[123,302,72,-0.5598209835588932],[123,302,73,-0.561847347766161],[123,302,74,-0.5625875182449818],[123,302,75,-0.561925869435072],[123,302,76,-0.559489157050848],[123,302,77,-0.5555406510829926],[123,302,78,-0.5509115941822529],[123,302,79,-0.5459424331784248],[123,303,64,-0.5542180947959423],[123,303,65,-0.5544747784733772],[123,303,66,-0.5531223490834236],[123,303,67,-0.5513675026595592],[123,303,68,-0.5506513863801956],[123,303,69,-0.5517608299851418],[123,303,70,-0.5541238412261009],[123,303,71,-0.5568330250680447],[123,303,72,-0.5598209835588932],[123,303,73,-0.561847347766161],[123,303,74,-0.5625875182449818],[123,303,75,-0.561925869435072],[123,303,76,-0.559489157050848],[123,303,77,-0.5555406510829926],[123,303,78,-0.5509115941822529],[123,303,79,-0.5459424331784248],[123,304,64,-0.5542180947959423],[123,304,65,-0.5544747784733772],[123,304,66,-0.5531223490834236],[123,304,67,-0.5513675026595592],[123,304,68,-0.5506513863801956],[123,304,69,-0.5517608299851418],[123,304,70,-0.5541238412261009],[123,304,71,-0.5568330250680447],[123,304,72,-0.5598209835588932],[123,304,73,-0.561847347766161],[123,304,74,-0.5625875182449818],[123,304,75,-0.561925869435072],[123,304,76,-0.559489157050848],[123,304,77,-0.5555406510829926],[123,304,78,-0.5509115941822529],[123,304,79,-0.5459424331784248],[123,305,64,-0.5542180947959423],[123,305,65,-0.5544747784733772],[123,305,66,-0.5531223490834236],[123,305,67,-0.5513675026595592],[123,305,68,-0.5506513863801956],[123,305,69,-0.5517608299851418],[123,305,70,-0.5541238412261009],[123,305,71,-0.5568330250680447],[123,305,72,-0.5598209835588932],[123,305,73,-0.561847347766161],[123,305,74,-0.5625875182449818],[123,305,75,-0.561925869435072],[123,305,76,-0.559489157050848],[123,305,77,-0.5555406510829926],[123,305,78,-0.5509115941822529],[123,305,79,-0.5459424331784248],[123,306,64,-0.5542180947959423],[123,306,65,-0.5544747784733772],[123,306,66,-0.5531223490834236],[123,306,67,-0.5513675026595592],[123,306,68,-0.5506513863801956],[123,306,69,-0.5517608299851418],[123,306,70,-0.5541238412261009],[123,306,71,-0.5568330250680447],[123,306,72,-0.5598209835588932],[123,306,73,-0.561847347766161],[123,306,74,-0.5625875182449818],[123,306,75,-0.561925869435072],[123,306,76,-0.559489157050848],[123,306,77,-0.5555406510829926],[123,306,78,-0.5509115941822529],[123,306,79,-0.5459424331784248],[123,307,64,-0.5542180947959423],[123,307,65,-0.5544747784733772],[123,307,66,-0.5531223490834236],[123,307,67,-0.5513675026595592],[123,307,68,-0.5506513863801956],[123,307,69,-0.5517608299851418],[123,307,70,-0.5541238412261009],[123,307,71,-0.5568330250680447],[123,307,72,-0.5598209835588932],[123,307,73,-0.561847347766161],[123,307,74,-0.5625875182449818],[123,307,75,-0.561925869435072],[123,307,76,-0.559489157050848],[123,307,77,-0.5555406510829926],[123,307,78,-0.5509115941822529],[123,307,79,-0.5459424331784248],[123,308,64,-0.5542180947959423],[123,308,65,-0.5544747784733772],[123,308,66,-0.5531223490834236],[123,308,67,-0.5513675026595592],[123,308,68,-0.5506513863801956],[123,308,69,-0.5517608299851418],[123,308,70,-0.5541238412261009],[123,308,71,-0.5568330250680447],[123,308,72,-0.5598209835588932],[123,308,73,-0.561847347766161],[123,308,74,-0.5625875182449818],[123,308,75,-0.561925869435072],[123,308,76,-0.559489157050848],[123,308,77,-0.5555406510829926],[123,308,78,-0.5509115941822529],[123,308,79,-0.5459424331784248],[123,309,64,-0.5542180947959423],[123,309,65,-0.5544747784733772],[123,309,66,-0.5531223490834236],[123,309,67,-0.5513675026595592],[123,309,68,-0.5506513863801956],[123,309,69,-0.5517608299851418],[123,309,70,-0.5541238412261009],[123,309,71,-0.5568330250680447],[123,309,72,-0.5598209835588932],[123,309,73,-0.561847347766161],[123,309,74,-0.5625875182449818],[123,309,75,-0.561925869435072],[123,309,76,-0.559489157050848],[123,309,77,-0.5555406510829926],[123,309,78,-0.5509115941822529],[123,309,79,-0.5459424331784248],[123,310,64,-0.5542180947959423],[123,310,65,-0.5544747784733772],[123,310,66,-0.5531223490834236],[123,310,67,-0.5513675026595592],[123,310,68,-0.5506513863801956],[123,310,69,-0.5517608299851418],[123,310,70,-0.5541238412261009],[123,310,71,-0.5568330250680447],[123,310,72,-0.5598209835588932],[123,310,73,-0.561847347766161],[123,310,74,-0.5625875182449818],[123,310,75,-0.561925869435072],[123,310,76,-0.559489157050848],[123,310,77,-0.5555406510829926],[123,310,78,-0.5509115941822529],[123,310,79,-0.5459424331784248],[123,311,64,-0.5542180947959423],[123,311,65,-0.5544747784733772],[123,311,66,-0.5531223490834236],[123,311,67,-0.5513675026595592],[123,311,68,-0.5506513863801956],[123,311,69,-0.5517608299851418],[123,311,70,-0.5541238412261009],[123,311,71,-0.5568330250680447],[123,311,72,-0.5598209835588932],[123,311,73,-0.561847347766161],[123,311,74,-0.5625875182449818],[123,311,75,-0.561925869435072],[123,311,76,-0.559489157050848],[123,311,77,-0.5555406510829926],[123,311,78,-0.5509115941822529],[123,311,79,-0.5459424331784248],[123,312,64,-0.5542180947959423],[123,312,65,-0.5544747784733772],[123,312,66,-0.5531223490834236],[123,312,67,-0.5513675026595592],[123,312,68,-0.5506513863801956],[123,312,69,-0.5517608299851418],[123,312,70,-0.5541238412261009],[123,312,71,-0.5568330250680447],[123,312,72,-0.5598209835588932],[123,312,73,-0.561847347766161],[123,312,74,-0.5625875182449818],[123,312,75,-0.561925869435072],[123,312,76,-0.559489157050848],[123,312,77,-0.5555406510829926],[123,312,78,-0.5509115941822529],[123,312,79,-0.5459424331784248],[123,313,64,-0.5542180947959423],[123,313,65,-0.5544747784733772],[123,313,66,-0.5531223490834236],[123,313,67,-0.5513675026595592],[123,313,68,-0.5506513863801956],[123,313,69,-0.5517608299851418],[123,313,70,-0.5541238412261009],[123,313,71,-0.5568330250680447],[123,313,72,-0.5598209835588932],[123,313,73,-0.561847347766161],[123,313,74,-0.5625875182449818],[123,313,75,-0.561925869435072],[123,313,76,-0.559489157050848],[123,313,77,-0.5555406510829926],[123,313,78,-0.5509115941822529],[123,313,79,-0.5459424331784248],[123,314,64,-0.5542180947959423],[123,314,65,-0.5544747784733772],[123,314,66,-0.5531223490834236],[123,314,67,-0.5513675026595592],[123,314,68,-0.5506513863801956],[123,314,69,-0.5517608299851418],[123,314,70,-0.5541238412261009],[123,314,71,-0.5568330250680447],[123,314,72,-0.5598209835588932],[123,314,73,-0.561847347766161],[123,314,74,-0.5625875182449818],[123,314,75,-0.561925869435072],[123,314,76,-0.559489157050848],[123,314,77,-0.5555406510829926],[123,314,78,-0.5509115941822529],[123,314,79,-0.5459424331784248],[123,315,64,-0.5542180947959423],[123,315,65,-0.5544747784733772],[123,315,66,-0.5531223490834236],[123,315,67,-0.5513675026595592],[123,315,68,-0.5506513863801956],[123,315,69,-0.5517608299851418],[123,315,70,-0.5541238412261009],[123,315,71,-0.5568330250680447],[123,315,72,-0.5598209835588932],[123,315,73,-0.561847347766161],[123,315,74,-0.5625875182449818],[123,315,75,-0.561925869435072],[123,315,76,-0.559489157050848],[123,315,77,-0.5555406510829926],[123,315,78,-0.5509115941822529],[123,315,79,-0.5459424331784248],[123,316,64,-0.5542180947959423],[123,316,65,-0.5544747784733772],[123,316,66,-0.5531223490834236],[123,316,67,-0.5513675026595592],[123,316,68,-0.5506513863801956],[123,316,69,-0.5517608299851418],[123,316,70,-0.5541238412261009],[123,316,71,-0.5568330250680447],[123,316,72,-0.5598209835588932],[123,316,73,-0.561847347766161],[123,316,74,-0.5625875182449818],[123,316,75,-0.561925869435072],[123,316,76,-0.559489157050848],[123,316,77,-0.5555406510829926],[123,316,78,-0.5509115941822529],[123,316,79,-0.5459424331784248],[123,317,64,-0.5542180947959423],[123,317,65,-0.5544747784733772],[123,317,66,-0.5531223490834236],[123,317,67,-0.5513675026595592],[123,317,68,-0.5506513863801956],[123,317,69,-0.5517608299851418],[123,317,70,-0.5541238412261009],[123,317,71,-0.5568330250680447],[123,317,72,-0.5598209835588932],[123,317,73,-0.561847347766161],[123,317,74,-0.5625875182449818],[123,317,75,-0.561925869435072],[123,317,76,-0.559489157050848],[123,317,77,-0.5555406510829926],[123,317,78,-0.5509115941822529],[123,317,79,-0.5459424331784248],[123,318,64,-0.5542180947959423],[123,318,65,-0.5544747784733772],[123,318,66,-0.5531223490834236],[123,318,67,-0.5513675026595592],[123,318,68,-0.5506513863801956],[123,318,69,-0.5517608299851418],[123,318,70,-0.5541238412261009],[123,318,71,-0.5568330250680447],[123,318,72,-0.5598209835588932],[123,318,73,-0.561847347766161],[123,318,74,-0.5625875182449818],[123,318,75,-0.561925869435072],[123,318,76,-0.559489157050848],[123,318,77,-0.5555406510829926],[123,318,78,-0.5509115941822529],[123,318,79,-0.5459424331784248],[123,319,64,-0.5542180947959423],[123,319,65,-0.5544747784733772],[123,319,66,-0.5531223490834236],[123,319,67,-0.5513675026595592],[123,319,68,-0.5506513863801956],[123,319,69,-0.5517608299851418],[123,319,70,-0.5541238412261009],[123,319,71,-0.5568330250680447],[123,319,72,-0.5598209835588932],[123,319,73,-0.561847347766161],[123,319,74,-0.5625875182449818],[123,319,75,-0.561925869435072],[123,319,76,-0.559489157050848],[123,319,77,-0.5555406510829926],[123,319,78,-0.5509115941822529],[123,319,79,-0.5459424331784248],[124,-64,64,-0.5549865774810314],[124,-64,65,-0.5559594221413136],[124,-64,66,-0.5551650784909725],[124,-64,67,-0.5536443181335926],[124,-64,68,-0.5528128109872341],[124,-64,69,-0.5535379312932491],[124,-64,70,-0.5553286522626877],[124,-64,71,-0.5575743019580841],[124,-64,72,-0.5605612844228745],[124,-64,73,-0.563075702637434],[124,-64,74,-0.5643343068659306],[124,-64,75,-0.5640878677368164],[124,-64,76,-0.5618016794323921],[124,-64,77,-0.5576293431222439],[124,-64,78,-0.5526084005832672],[124,-64,79,-0.5472907461225986],[124,-63,64,-0.5549865774810314],[124,-63,65,-0.5559594221413136],[124,-63,66,-0.5551650784909725],[124,-63,67,-0.5536443181335926],[124,-63,68,-0.5528128109872341],[124,-63,69,-0.5535379312932491],[124,-63,70,-0.5553286522626877],[124,-63,71,-0.5575743019580841],[124,-63,72,-0.5605612844228745],[124,-63,73,-0.563075702637434],[124,-63,74,-0.5643343068659306],[124,-63,75,-0.5640878677368164],[124,-63,76,-0.5618016794323921],[124,-63,77,-0.5576293431222439],[124,-63,78,-0.5526084005832672],[124,-63,79,-0.5472907461225986],[124,-62,64,-0.5549865774810314],[124,-62,65,-0.5559594221413136],[124,-62,66,-0.5551650784909725],[124,-62,67,-0.5536443181335926],[124,-62,68,-0.5528128109872341],[124,-62,69,-0.5535379312932491],[124,-62,70,-0.5553286522626877],[124,-62,71,-0.5575743019580841],[124,-62,72,-0.5605612844228745],[124,-62,73,-0.563075702637434],[124,-62,74,-0.5643343068659306],[124,-62,75,-0.5640878677368164],[124,-62,76,-0.5618016794323921],[124,-62,77,-0.5576293431222439],[124,-62,78,-0.5526084005832672],[124,-62,79,-0.5472907461225986],[124,-61,64,-0.5549865774810314],[124,-61,65,-0.5559594221413136],[124,-61,66,-0.5551650784909725],[124,-61,67,-0.5536443181335926],[124,-61,68,-0.5528128109872341],[124,-61,69,-0.5535379312932491],[124,-61,70,-0.5553286522626877],[124,-61,71,-0.5575743019580841],[124,-61,72,-0.5605612844228745],[124,-61,73,-0.563075702637434],[124,-61,74,-0.5643343068659306],[124,-61,75,-0.5640878677368164],[124,-61,76,-0.5618016794323921],[124,-61,77,-0.5576293431222439],[124,-61,78,-0.5526084005832672],[124,-61,79,-0.5472907461225986],[124,-60,64,-0.5549865774810314],[124,-60,65,-0.5559594221413136],[124,-60,66,-0.5551650784909725],[124,-60,67,-0.5536443181335926],[124,-60,68,-0.5528128109872341],[124,-60,69,-0.5535379312932491],[124,-60,70,-0.5553286522626877],[124,-60,71,-0.5575743019580841],[124,-60,72,-0.5605612844228745],[124,-60,73,-0.563075702637434],[124,-60,74,-0.5643343068659306],[124,-60,75,-0.5640878677368164],[124,-60,76,-0.5618016794323921],[124,-60,77,-0.5576293431222439],[124,-60,78,-0.5526084005832672],[124,-60,79,-0.5472907461225986],[124,-59,64,-0.5549865774810314],[124,-59,65,-0.5559594221413136],[124,-59,66,-0.5551650784909725],[124,-59,67,-0.5536443181335926],[124,-59,68,-0.5528128109872341],[124,-59,69,-0.5535379312932491],[124,-59,70,-0.5553286522626877],[124,-59,71,-0.5575743019580841],[124,-59,72,-0.5605612844228745],[124,-59,73,-0.563075702637434],[124,-59,74,-0.5643343068659306],[124,-59,75,-0.5640878677368164],[124,-59,76,-0.5618016794323921],[124,-59,77,-0.5576293431222439],[124,-59,78,-0.5526084005832672],[124,-59,79,-0.5472907461225986],[124,-58,64,-0.5549865774810314],[124,-58,65,-0.5559594221413136],[124,-58,66,-0.5551650784909725],[124,-58,67,-0.5536443181335926],[124,-58,68,-0.5528128109872341],[124,-58,69,-0.5535379312932491],[124,-58,70,-0.5553286522626877],[124,-58,71,-0.5575743019580841],[124,-58,72,-0.5605612844228745],[124,-58,73,-0.563075702637434],[124,-58,74,-0.5643343068659306],[124,-58,75,-0.5640878677368164],[124,-58,76,-0.5618016794323921],[124,-58,77,-0.5576293431222439],[124,-58,78,-0.5526084005832672],[124,-58,79,-0.5472907461225986],[124,-57,64,-0.5549865774810314],[124,-57,65,-0.5559594221413136],[124,-57,66,-0.5551650784909725],[124,-57,67,-0.5536443181335926],[124,-57,68,-0.5528128109872341],[124,-57,69,-0.5535379312932491],[124,-57,70,-0.5553286522626877],[124,-57,71,-0.5575743019580841],[124,-57,72,-0.5605612844228745],[124,-57,73,-0.563075702637434],[124,-57,74,-0.5643343068659306],[124,-57,75,-0.5640878677368164],[124,-57,76,-0.5618016794323921],[124,-57,77,-0.5576293431222439],[124,-57,78,-0.5526084005832672],[124,-57,79,-0.5472907461225986],[124,-56,64,-0.5549865774810314],[124,-56,65,-0.5559594221413136],[124,-56,66,-0.5551650784909725],[124,-56,67,-0.5536443181335926],[124,-56,68,-0.5528128109872341],[124,-56,69,-0.5535379312932491],[124,-56,70,-0.5553286522626877],[124,-56,71,-0.5575743019580841],[124,-56,72,-0.5605612844228745],[124,-56,73,-0.563075702637434],[124,-56,74,-0.5643343068659306],[124,-56,75,-0.5640878677368164],[124,-56,76,-0.5618016794323921],[124,-56,77,-0.5576293431222439],[124,-56,78,-0.5526084005832672],[124,-56,79,-0.5472907461225986],[124,-55,64,-0.5549865774810314],[124,-55,65,-0.5559594221413136],[124,-55,66,-0.5551650784909725],[124,-55,67,-0.5536443181335926],[124,-55,68,-0.5528128109872341],[124,-55,69,-0.5535379312932491],[124,-55,70,-0.5553286522626877],[124,-55,71,-0.5575743019580841],[124,-55,72,-0.5605612844228745],[124,-55,73,-0.563075702637434],[124,-55,74,-0.5643343068659306],[124,-55,75,-0.5640878677368164],[124,-55,76,-0.5618016794323921],[124,-55,77,-0.5576293431222439],[124,-55,78,-0.5526084005832672],[124,-55,79,-0.5472907461225986],[124,-54,64,-0.5549865774810314],[124,-54,65,-0.5559594221413136],[124,-54,66,-0.5551650784909725],[124,-54,67,-0.5536443181335926],[124,-54,68,-0.5528128109872341],[124,-54,69,-0.5535379312932491],[124,-54,70,-0.5553286522626877],[124,-54,71,-0.5575743019580841],[124,-54,72,-0.5605612844228745],[124,-54,73,-0.563075702637434],[124,-54,74,-0.5643343068659306],[124,-54,75,-0.5640878677368164],[124,-54,76,-0.5618016794323921],[124,-54,77,-0.5576293431222439],[124,-54,78,-0.5526084005832672],[124,-54,79,-0.5472907461225986],[124,-53,64,-0.5549865774810314],[124,-53,65,-0.5559594221413136],[124,-53,66,-0.5551650784909725],[124,-53,67,-0.5536443181335926],[124,-53,68,-0.5528128109872341],[124,-53,69,-0.5535379312932491],[124,-53,70,-0.5553286522626877],[124,-53,71,-0.5575743019580841],[124,-53,72,-0.5605612844228745],[124,-53,73,-0.563075702637434],[124,-53,74,-0.5643343068659306],[124,-53,75,-0.5640878677368164],[124,-53,76,-0.5618016794323921],[124,-53,77,-0.5576293431222439],[124,-53,78,-0.5526084005832672],[124,-53,79,-0.5472907461225986],[124,-52,64,-0.5549865774810314],[124,-52,65,-0.5559594221413136],[124,-52,66,-0.5551650784909725],[124,-52,67,-0.5536443181335926],[124,-52,68,-0.5528128109872341],[124,-52,69,-0.5535379312932491],[124,-52,70,-0.5553286522626877],[124,-52,71,-0.5575743019580841],[124,-52,72,-0.5605612844228745],[124,-52,73,-0.563075702637434],[124,-52,74,-0.5643343068659306],[124,-52,75,-0.5640878677368164],[124,-52,76,-0.5618016794323921],[124,-52,77,-0.5576293431222439],[124,-52,78,-0.5526084005832672],[124,-52,79,-0.5472907461225986],[124,-51,64,-0.5549865774810314],[124,-51,65,-0.5559594221413136],[124,-51,66,-0.5551650784909725],[124,-51,67,-0.5536443181335926],[124,-51,68,-0.5528128109872341],[124,-51,69,-0.5535379312932491],[124,-51,70,-0.5553286522626877],[124,-51,71,-0.5575743019580841],[124,-51,72,-0.5605612844228745],[124,-51,73,-0.563075702637434],[124,-51,74,-0.5643343068659306],[124,-51,75,-0.5640878677368164],[124,-51,76,-0.5618016794323921],[124,-51,77,-0.5576293431222439],[124,-51,78,-0.5526084005832672],[124,-51,79,-0.5472907461225986],[124,-50,64,-0.5549865774810314],[124,-50,65,-0.5559594221413136],[124,-50,66,-0.5551650784909725],[124,-50,67,-0.5536443181335926],[124,-50,68,-0.5528128109872341],[124,-50,69,-0.5535379312932491],[124,-50,70,-0.5553286522626877],[124,-50,71,-0.5575743019580841],[124,-50,72,-0.5605612844228745],[124,-50,73,-0.563075702637434],[124,-50,74,-0.5643343068659306],[124,-50,75,-0.5640878677368164],[124,-50,76,-0.5618016794323921],[124,-50,77,-0.5576293431222439],[124,-50,78,-0.5526084005832672],[124,-50,79,-0.5472907461225986],[124,-49,64,-0.5549865774810314],[124,-49,65,-0.5559594221413136],[124,-49,66,-0.5551650784909725],[124,-49,67,-0.5536443181335926],[124,-49,68,-0.5528128109872341],[124,-49,69,-0.5535379312932491],[124,-49,70,-0.5553286522626877],[124,-49,71,-0.5575743019580841],[124,-49,72,-0.5605612844228745],[124,-49,73,-0.563075702637434],[124,-49,74,-0.5643343068659306],[124,-49,75,-0.5640878677368164],[124,-49,76,-0.5618016794323921],[124,-49,77,-0.5576293431222439],[124,-49,78,-0.5526084005832672],[124,-49,79,-0.5472907461225986],[124,-48,64,-0.5549865774810314],[124,-48,65,-0.5559594221413136],[124,-48,66,-0.5551650784909725],[124,-48,67,-0.5536443181335926],[124,-48,68,-0.5528128109872341],[124,-48,69,-0.5535379312932491],[124,-48,70,-0.5553286522626877],[124,-48,71,-0.5575743019580841],[124,-48,72,-0.5605612844228745],[124,-48,73,-0.563075702637434],[124,-48,74,-0.5643343068659306],[124,-48,75,-0.5640878677368164],[124,-48,76,-0.5618016794323921],[124,-48,77,-0.5576293431222439],[124,-48,78,-0.5526084005832672],[124,-48,79,-0.5472907461225986],[124,-47,64,-0.5549865774810314],[124,-47,65,-0.5559594221413136],[124,-47,66,-0.5551650784909725],[124,-47,67,-0.5536443181335926],[124,-47,68,-0.5528128109872341],[124,-47,69,-0.5535379312932491],[124,-47,70,-0.5553286522626877],[124,-47,71,-0.5575743019580841],[124,-47,72,-0.5605612844228745],[124,-47,73,-0.563075702637434],[124,-47,74,-0.5643343068659306],[124,-47,75,-0.5640878677368164],[124,-47,76,-0.5618016794323921],[124,-47,77,-0.5576293431222439],[124,-47,78,-0.5526084005832672],[124,-47,79,-0.5472907461225986],[124,-46,64,-0.5549865774810314],[124,-46,65,-0.5559594221413136],[124,-46,66,-0.5551650784909725],[124,-46,67,-0.5536443181335926],[124,-46,68,-0.5528128109872341],[124,-46,69,-0.5535379312932491],[124,-46,70,-0.5553286522626877],[124,-46,71,-0.5575743019580841],[124,-46,72,-0.5605612844228745],[124,-46,73,-0.563075702637434],[124,-46,74,-0.5643343068659306],[124,-46,75,-0.5640878677368164],[124,-46,76,-0.5618016794323921],[124,-46,77,-0.5576293431222439],[124,-46,78,-0.5526084005832672],[124,-46,79,-0.5472907461225986],[124,-45,64,-0.5549865774810314],[124,-45,65,-0.5559594221413136],[124,-45,66,-0.5551650784909725],[124,-45,67,-0.5536443181335926],[124,-45,68,-0.5528128109872341],[124,-45,69,-0.5535379312932491],[124,-45,70,-0.5553286522626877],[124,-45,71,-0.5575743019580841],[124,-45,72,-0.5605612844228745],[124,-45,73,-0.563075702637434],[124,-45,74,-0.5643343068659306],[124,-45,75,-0.5640878677368164],[124,-45,76,-0.5618016794323921],[124,-45,77,-0.5576293431222439],[124,-45,78,-0.5526084005832672],[124,-45,79,-0.5472907461225986],[124,-44,64,-0.5549865774810314],[124,-44,65,-0.5559594221413136],[124,-44,66,-0.5551650784909725],[124,-44,67,-0.5536443181335926],[124,-44,68,-0.5528128109872341],[124,-44,69,-0.5535379312932491],[124,-44,70,-0.5553286522626877],[124,-44,71,-0.5575743019580841],[124,-44,72,-0.5605612844228745],[124,-44,73,-0.563075702637434],[124,-44,74,-0.5643343068659306],[124,-44,75,-0.5640878677368164],[124,-44,76,-0.5618016794323921],[124,-44,77,-0.5576293431222439],[124,-44,78,-0.5526084005832672],[124,-44,79,-0.5472907461225986],[124,-43,64,-0.5549865774810314],[124,-43,65,-0.5559594221413136],[124,-43,66,-0.5551650784909725],[124,-43,67,-0.5536443181335926],[124,-43,68,-0.5528128109872341],[124,-43,69,-0.5535379312932491],[124,-43,70,-0.5553286522626877],[124,-43,71,-0.5575743019580841],[124,-43,72,-0.5605612844228745],[124,-43,73,-0.563075702637434],[124,-43,74,-0.5643343068659306],[124,-43,75,-0.5640878677368164],[124,-43,76,-0.5618016794323921],[124,-43,77,-0.5576293431222439],[124,-43,78,-0.5526084005832672],[124,-43,79,-0.5472907461225986],[124,-42,64,-0.5549865774810314],[124,-42,65,-0.5559594221413136],[124,-42,66,-0.5551650784909725],[124,-42,67,-0.5536443181335926],[124,-42,68,-0.5528128109872341],[124,-42,69,-0.5535379312932491],[124,-42,70,-0.5553286522626877],[124,-42,71,-0.5575743019580841],[124,-42,72,-0.5605612844228745],[124,-42,73,-0.563075702637434],[124,-42,74,-0.5643343068659306],[124,-42,75,-0.5640878677368164],[124,-42,76,-0.5618016794323921],[124,-42,77,-0.5576293431222439],[124,-42,78,-0.5526084005832672],[124,-42,79,-0.5472907461225986],[124,-41,64,-0.5549865774810314],[124,-41,65,-0.5559594221413136],[124,-41,66,-0.5551650784909725],[124,-41,67,-0.5536443181335926],[124,-41,68,-0.5528128109872341],[124,-41,69,-0.5535379312932491],[124,-41,70,-0.5553286522626877],[124,-41,71,-0.5575743019580841],[124,-41,72,-0.5605612844228745],[124,-41,73,-0.563075702637434],[124,-41,74,-0.5643343068659306],[124,-41,75,-0.5640878677368164],[124,-41,76,-0.5618016794323921],[124,-41,77,-0.5576293431222439],[124,-41,78,-0.5526084005832672],[124,-41,79,-0.5472907461225986],[124,-40,64,-0.5549865774810314],[124,-40,65,-0.5559594221413136],[124,-40,66,-0.5551650784909725],[124,-40,67,-0.5536443181335926],[124,-40,68,-0.5528128109872341],[124,-40,69,-0.5535379312932491],[124,-40,70,-0.5553286522626877],[124,-40,71,-0.5575743019580841],[124,-40,72,-0.5605612844228745],[124,-40,73,-0.563075702637434],[124,-40,74,-0.5643343068659306],[124,-40,75,-0.5640878677368164],[124,-40,76,-0.5618016794323921],[124,-40,77,-0.5576293431222439],[124,-40,78,-0.5526084005832672],[124,-40,79,-0.5472907461225986],[124,-39,64,-0.5549865774810314],[124,-39,65,-0.5559594221413136],[124,-39,66,-0.5551650784909725],[124,-39,67,-0.5536443181335926],[124,-39,68,-0.5528128109872341],[124,-39,69,-0.5535379312932491],[124,-39,70,-0.5553286522626877],[124,-39,71,-0.5575743019580841],[124,-39,72,-0.5605612844228745],[124,-39,73,-0.563075702637434],[124,-39,74,-0.5643343068659306],[124,-39,75,-0.5640878677368164],[124,-39,76,-0.5618016794323921],[124,-39,77,-0.5576293431222439],[124,-39,78,-0.5526084005832672],[124,-39,79,-0.5472907461225986],[124,-38,64,-0.5549865774810314],[124,-38,65,-0.5559594221413136],[124,-38,66,-0.5551650784909725],[124,-38,67,-0.5536443181335926],[124,-38,68,-0.5528128109872341],[124,-38,69,-0.5535379312932491],[124,-38,70,-0.5553286522626877],[124,-38,71,-0.5575743019580841],[124,-38,72,-0.5605612844228745],[124,-38,73,-0.563075702637434],[124,-38,74,-0.5643343068659306],[124,-38,75,-0.5640878677368164],[124,-38,76,-0.5618016794323921],[124,-38,77,-0.5576293431222439],[124,-38,78,-0.5526084005832672],[124,-38,79,-0.5472907461225986],[124,-37,64,-0.5549865774810314],[124,-37,65,-0.5559594221413136],[124,-37,66,-0.5551650784909725],[124,-37,67,-0.5536443181335926],[124,-37,68,-0.5528128109872341],[124,-37,69,-0.5535379312932491],[124,-37,70,-0.5553286522626877],[124,-37,71,-0.5575743019580841],[124,-37,72,-0.5605612844228745],[124,-37,73,-0.563075702637434],[124,-37,74,-0.5643343068659306],[124,-37,75,-0.5640878677368164],[124,-37,76,-0.5618016794323921],[124,-37,77,-0.5576293431222439],[124,-37,78,-0.5526084005832672],[124,-37,79,-0.5472907461225986],[124,-36,64,-0.5549865774810314],[124,-36,65,-0.5559594221413136],[124,-36,66,-0.5551650784909725],[124,-36,67,-0.5536443181335926],[124,-36,68,-0.5528128109872341],[124,-36,69,-0.5535379312932491],[124,-36,70,-0.5553286522626877],[124,-36,71,-0.5575743019580841],[124,-36,72,-0.5605612844228745],[124,-36,73,-0.563075702637434],[124,-36,74,-0.5643343068659306],[124,-36,75,-0.5640878677368164],[124,-36,76,-0.5618016794323921],[124,-36,77,-0.5576293431222439],[124,-36,78,-0.5526084005832672],[124,-36,79,-0.5472907461225986],[124,-35,64,-0.5549865774810314],[124,-35,65,-0.5559594221413136],[124,-35,66,-0.5551650784909725],[124,-35,67,-0.5536443181335926],[124,-35,68,-0.5528128109872341],[124,-35,69,-0.5535379312932491],[124,-35,70,-0.5553286522626877],[124,-35,71,-0.5575743019580841],[124,-35,72,-0.5605612844228745],[124,-35,73,-0.563075702637434],[124,-35,74,-0.5643343068659306],[124,-35,75,-0.5640878677368164],[124,-35,76,-0.5618016794323921],[124,-35,77,-0.5576293431222439],[124,-35,78,-0.5526084005832672],[124,-35,79,-0.5472907461225986],[124,-34,64,-0.5549865774810314],[124,-34,65,-0.5559594221413136],[124,-34,66,-0.5551650784909725],[124,-34,67,-0.5536443181335926],[124,-34,68,-0.5528128109872341],[124,-34,69,-0.5535379312932491],[124,-34,70,-0.5553286522626877],[124,-34,71,-0.5575743019580841],[124,-34,72,-0.5605612844228745],[124,-34,73,-0.563075702637434],[124,-34,74,-0.5643343068659306],[124,-34,75,-0.5640878677368164],[124,-34,76,-0.5618016794323921],[124,-34,77,-0.5576293431222439],[124,-34,78,-0.5526084005832672],[124,-34,79,-0.5472907461225986],[124,-33,64,-0.5549865774810314],[124,-33,65,-0.5559594221413136],[124,-33,66,-0.5551650784909725],[124,-33,67,-0.5536443181335926],[124,-33,68,-0.5528128109872341],[124,-33,69,-0.5535379312932491],[124,-33,70,-0.5553286522626877],[124,-33,71,-0.5575743019580841],[124,-33,72,-0.5605612844228745],[124,-33,73,-0.563075702637434],[124,-33,74,-0.5643343068659306],[124,-33,75,-0.5640878677368164],[124,-33,76,-0.5618016794323921],[124,-33,77,-0.5576293431222439],[124,-33,78,-0.5526084005832672],[124,-33,79,-0.5472907461225986],[124,-32,64,-0.5549865774810314],[124,-32,65,-0.5559594221413136],[124,-32,66,-0.5551650784909725],[124,-32,67,-0.5536443181335926],[124,-32,68,-0.5528128109872341],[124,-32,69,-0.5535379312932491],[124,-32,70,-0.5553286522626877],[124,-32,71,-0.5575743019580841],[124,-32,72,-0.5605612844228745],[124,-32,73,-0.563075702637434],[124,-32,74,-0.5643343068659306],[124,-32,75,-0.5640878677368164],[124,-32,76,-0.5618016794323921],[124,-32,77,-0.5576293431222439],[124,-32,78,-0.5526084005832672],[124,-32,79,-0.5472907461225986],[124,-31,64,-0.5549865774810314],[124,-31,65,-0.5559594221413136],[124,-31,66,-0.5551650784909725],[124,-31,67,-0.5536443181335926],[124,-31,68,-0.5528128109872341],[124,-31,69,-0.5535379312932491],[124,-31,70,-0.5553286522626877],[124,-31,71,-0.5575743019580841],[124,-31,72,-0.5605612844228745],[124,-31,73,-0.563075702637434],[124,-31,74,-0.5643343068659306],[124,-31,75,-0.5640878677368164],[124,-31,76,-0.5618016794323921],[124,-31,77,-0.5576293431222439],[124,-31,78,-0.5526084005832672],[124,-31,79,-0.5472907461225986],[124,-30,64,-0.5549865774810314],[124,-30,65,-0.5559594221413136],[124,-30,66,-0.5551650784909725],[124,-30,67,-0.5536443181335926],[124,-30,68,-0.5528128109872341],[124,-30,69,-0.5535379312932491],[124,-30,70,-0.5553286522626877],[124,-30,71,-0.5575743019580841],[124,-30,72,-0.5605612844228745],[124,-30,73,-0.563075702637434],[124,-30,74,-0.5643343068659306],[124,-30,75,-0.5640878677368164],[124,-30,76,-0.5618016794323921],[124,-30,77,-0.5576293431222439],[124,-30,78,-0.5526084005832672],[124,-30,79,-0.5472907461225986],[124,-29,64,-0.5549865774810314],[124,-29,65,-0.5559594221413136],[124,-29,66,-0.5551650784909725],[124,-29,67,-0.5536443181335926],[124,-29,68,-0.5528128109872341],[124,-29,69,-0.5535379312932491],[124,-29,70,-0.5553286522626877],[124,-29,71,-0.5575743019580841],[124,-29,72,-0.5605612844228745],[124,-29,73,-0.563075702637434],[124,-29,74,-0.5643343068659306],[124,-29,75,-0.5640878677368164],[124,-29,76,-0.5618016794323921],[124,-29,77,-0.5576293431222439],[124,-29,78,-0.5526084005832672],[124,-29,79,-0.5472907461225986],[124,-28,64,-0.5549865774810314],[124,-28,65,-0.5559594221413136],[124,-28,66,-0.5551650784909725],[124,-28,67,-0.5536443181335926],[124,-28,68,-0.5528128109872341],[124,-28,69,-0.5535379312932491],[124,-28,70,-0.5553286522626877],[124,-28,71,-0.5575743019580841],[124,-28,72,-0.5605612844228745],[124,-28,73,-0.563075702637434],[124,-28,74,-0.5643343068659306],[124,-28,75,-0.5640878677368164],[124,-28,76,-0.5618016794323921],[124,-28,77,-0.5576293431222439],[124,-28,78,-0.5526084005832672],[124,-28,79,-0.5472907461225986],[124,-27,64,-0.5549865774810314],[124,-27,65,-0.5559594221413136],[124,-27,66,-0.5551650784909725],[124,-27,67,-0.5536443181335926],[124,-27,68,-0.5528128109872341],[124,-27,69,-0.5535379312932491],[124,-27,70,-0.5553286522626877],[124,-27,71,-0.5575743019580841],[124,-27,72,-0.5605612844228745],[124,-27,73,-0.563075702637434],[124,-27,74,-0.5643343068659306],[124,-27,75,-0.5640878677368164],[124,-27,76,-0.5618016794323921],[124,-27,77,-0.5576293431222439],[124,-27,78,-0.5526084005832672],[124,-27,79,-0.5472907461225986],[124,-26,64,-0.5549865774810314],[124,-26,65,-0.5559594221413136],[124,-26,66,-0.5551650784909725],[124,-26,67,-0.5536443181335926],[124,-26,68,-0.5528128109872341],[124,-26,69,-0.5535379312932491],[124,-26,70,-0.5553286522626877],[124,-26,71,-0.5575743019580841],[124,-26,72,-0.5605612844228745],[124,-26,73,-0.563075702637434],[124,-26,74,-0.5643343068659306],[124,-26,75,-0.5640878677368164],[124,-26,76,-0.5618016794323921],[124,-26,77,-0.5576293431222439],[124,-26,78,-0.5526084005832672],[124,-26,79,-0.5472907461225986],[124,-25,64,-0.5549865774810314],[124,-25,65,-0.5559594221413136],[124,-25,66,-0.5551650784909725],[124,-25,67,-0.5536443181335926],[124,-25,68,-0.5528128109872341],[124,-25,69,-0.5535379312932491],[124,-25,70,-0.5553286522626877],[124,-25,71,-0.5575743019580841],[124,-25,72,-0.5605612844228745],[124,-25,73,-0.563075702637434],[124,-25,74,-0.5643343068659306],[124,-25,75,-0.5640878677368164],[124,-25,76,-0.5618016794323921],[124,-25,77,-0.5576293431222439],[124,-25,78,-0.5526084005832672],[124,-25,79,-0.5472907461225986],[124,-24,64,-0.5549865774810314],[124,-24,65,-0.5559594221413136],[124,-24,66,-0.5551650784909725],[124,-24,67,-0.5536443181335926],[124,-24,68,-0.5528128109872341],[124,-24,69,-0.5535379312932491],[124,-24,70,-0.5553286522626877],[124,-24,71,-0.5575743019580841],[124,-24,72,-0.5605612844228745],[124,-24,73,-0.563075702637434],[124,-24,74,-0.5643343068659306],[124,-24,75,-0.5640878677368164],[124,-24,76,-0.5618016794323921],[124,-24,77,-0.5576293431222439],[124,-24,78,-0.5526084005832672],[124,-24,79,-0.5472907461225986],[124,-23,64,-0.5549865774810314],[124,-23,65,-0.5559594221413136],[124,-23,66,-0.5551650784909725],[124,-23,67,-0.5536443181335926],[124,-23,68,-0.5528128109872341],[124,-23,69,-0.5535379312932491],[124,-23,70,-0.5553286522626877],[124,-23,71,-0.5575743019580841],[124,-23,72,-0.5605612844228745],[124,-23,73,-0.563075702637434],[124,-23,74,-0.5643343068659306],[124,-23,75,-0.5640878677368164],[124,-23,76,-0.5618016794323921],[124,-23,77,-0.5576293431222439],[124,-23,78,-0.5526084005832672],[124,-23,79,-0.5472907461225986],[124,-22,64,-0.5549865774810314],[124,-22,65,-0.5559594221413136],[124,-22,66,-0.5551650784909725],[124,-22,67,-0.5536443181335926],[124,-22,68,-0.5528128109872341],[124,-22,69,-0.5535379312932491],[124,-22,70,-0.5553286522626877],[124,-22,71,-0.5575743019580841],[124,-22,72,-0.5605612844228745],[124,-22,73,-0.563075702637434],[124,-22,74,-0.5643343068659306],[124,-22,75,-0.5640878677368164],[124,-22,76,-0.5618016794323921],[124,-22,77,-0.5576293431222439],[124,-22,78,-0.5526084005832672],[124,-22,79,-0.5472907461225986],[124,-21,64,-0.5549865774810314],[124,-21,65,-0.5559594221413136],[124,-21,66,-0.5551650784909725],[124,-21,67,-0.5536443181335926],[124,-21,68,-0.5528128109872341],[124,-21,69,-0.5535379312932491],[124,-21,70,-0.5553286522626877],[124,-21,71,-0.5575743019580841],[124,-21,72,-0.5605612844228745],[124,-21,73,-0.563075702637434],[124,-21,74,-0.5643343068659306],[124,-21,75,-0.5640878677368164],[124,-21,76,-0.5618016794323921],[124,-21,77,-0.5576293431222439],[124,-21,78,-0.5526084005832672],[124,-21,79,-0.5472907461225986],[124,-20,64,-0.5549865774810314],[124,-20,65,-0.5559594221413136],[124,-20,66,-0.5551650784909725],[124,-20,67,-0.5536443181335926],[124,-20,68,-0.5528128109872341],[124,-20,69,-0.5535379312932491],[124,-20,70,-0.5553286522626877],[124,-20,71,-0.5575743019580841],[124,-20,72,-0.5605612844228745],[124,-20,73,-0.563075702637434],[124,-20,74,-0.5643343068659306],[124,-20,75,-0.5640878677368164],[124,-20,76,-0.5618016794323921],[124,-20,77,-0.5576293431222439],[124,-20,78,-0.5526084005832672],[124,-20,79,-0.5472907461225986],[124,-19,64,-0.5549865774810314],[124,-19,65,-0.5559594221413136],[124,-19,66,-0.5551650784909725],[124,-19,67,-0.5536443181335926],[124,-19,68,-0.5528128109872341],[124,-19,69,-0.5535379312932491],[124,-19,70,-0.5553286522626877],[124,-19,71,-0.5575743019580841],[124,-19,72,-0.5605612844228745],[124,-19,73,-0.563075702637434],[124,-19,74,-0.5643343068659306],[124,-19,75,-0.5640878677368164],[124,-19,76,-0.5618016794323921],[124,-19,77,-0.5576293431222439],[124,-19,78,-0.5526084005832672],[124,-19,79,-0.5472907461225986],[124,-18,64,-0.5549865774810314],[124,-18,65,-0.5559594221413136],[124,-18,66,-0.5551650784909725],[124,-18,67,-0.5536443181335926],[124,-18,68,-0.5528128109872341],[124,-18,69,-0.5535379312932491],[124,-18,70,-0.5553286522626877],[124,-18,71,-0.5575743019580841],[124,-18,72,-0.5605612844228745],[124,-18,73,-0.563075702637434],[124,-18,74,-0.5643343068659306],[124,-18,75,-0.5640878677368164],[124,-18,76,-0.5618016794323921],[124,-18,77,-0.5576293431222439],[124,-18,78,-0.5526084005832672],[124,-18,79,-0.5472907461225986],[124,-17,64,-0.5549865774810314],[124,-17,65,-0.5559594221413136],[124,-17,66,-0.5551650784909725],[124,-17,67,-0.5536443181335926],[124,-17,68,-0.5528128109872341],[124,-17,69,-0.5535379312932491],[124,-17,70,-0.5553286522626877],[124,-17,71,-0.5575743019580841],[124,-17,72,-0.5605612844228745],[124,-17,73,-0.563075702637434],[124,-17,74,-0.5643343068659306],[124,-17,75,-0.5640878677368164],[124,-17,76,-0.5618016794323921],[124,-17,77,-0.5576293431222439],[124,-17,78,-0.5526084005832672],[124,-17,79,-0.5472907461225986],[124,-16,64,-0.5549865774810314],[124,-16,65,-0.5559594221413136],[124,-16,66,-0.5551650784909725],[124,-16,67,-0.5536443181335926],[124,-16,68,-0.5528128109872341],[124,-16,69,-0.5535379312932491],[124,-16,70,-0.5553286522626877],[124,-16,71,-0.5575743019580841],[124,-16,72,-0.5605612844228745],[124,-16,73,-0.563075702637434],[124,-16,74,-0.5643343068659306],[124,-16,75,-0.5640878677368164],[124,-16,76,-0.5618016794323921],[124,-16,77,-0.5576293431222439],[124,-16,78,-0.5526084005832672],[124,-16,79,-0.5472907461225986],[124,-15,64,-0.5549865774810314],[124,-15,65,-0.5559594221413136],[124,-15,66,-0.5551650784909725],[124,-15,67,-0.5536443181335926],[124,-15,68,-0.5528128109872341],[124,-15,69,-0.5535379312932491],[124,-15,70,-0.5553286522626877],[124,-15,71,-0.5575743019580841],[124,-15,72,-0.5605612844228745],[124,-15,73,-0.563075702637434],[124,-15,74,-0.5643343068659306],[124,-15,75,-0.5640878677368164],[124,-15,76,-0.5618016794323921],[124,-15,77,-0.5576293431222439],[124,-15,78,-0.5526084005832672],[124,-15,79,-0.5472907461225986],[124,-14,64,-0.5549865774810314],[124,-14,65,-0.5559594221413136],[124,-14,66,-0.5551650784909725],[124,-14,67,-0.5536443181335926],[124,-14,68,-0.5528128109872341],[124,-14,69,-0.5535379312932491],[124,-14,70,-0.5553286522626877],[124,-14,71,-0.5575743019580841],[124,-14,72,-0.5605612844228745],[124,-14,73,-0.563075702637434],[124,-14,74,-0.5643343068659306],[124,-14,75,-0.5640878677368164],[124,-14,76,-0.5618016794323921],[124,-14,77,-0.5576293431222439],[124,-14,78,-0.5526084005832672],[124,-14,79,-0.5472907461225986],[124,-13,64,-0.5549865774810314],[124,-13,65,-0.5559594221413136],[124,-13,66,-0.5551650784909725],[124,-13,67,-0.5536443181335926],[124,-13,68,-0.5528128109872341],[124,-13,69,-0.5535379312932491],[124,-13,70,-0.5553286522626877],[124,-13,71,-0.5575743019580841],[124,-13,72,-0.5605612844228745],[124,-13,73,-0.563075702637434],[124,-13,74,-0.5643343068659306],[124,-13,75,-0.5640878677368164],[124,-13,76,-0.5618016794323921],[124,-13,77,-0.5576293431222439],[124,-13,78,-0.5526084005832672],[124,-13,79,-0.5472907461225986],[124,-12,64,-0.5549865774810314],[124,-12,65,-0.5559594221413136],[124,-12,66,-0.5551650784909725],[124,-12,67,-0.5536443181335926],[124,-12,68,-0.5528128109872341],[124,-12,69,-0.5535379312932491],[124,-12,70,-0.5553286522626877],[124,-12,71,-0.5575743019580841],[124,-12,72,-0.5605612844228745],[124,-12,73,-0.563075702637434],[124,-12,74,-0.5643343068659306],[124,-12,75,-0.5640878677368164],[124,-12,76,-0.5618016794323921],[124,-12,77,-0.5576293431222439],[124,-12,78,-0.5526084005832672],[124,-12,79,-0.5472907461225986],[124,-11,64,-0.5549865774810314],[124,-11,65,-0.5559594221413136],[124,-11,66,-0.5551650784909725],[124,-11,67,-0.5536443181335926],[124,-11,68,-0.5528128109872341],[124,-11,69,-0.5535379312932491],[124,-11,70,-0.5553286522626877],[124,-11,71,-0.5575743019580841],[124,-11,72,-0.5605612844228745],[124,-11,73,-0.563075702637434],[124,-11,74,-0.5643343068659306],[124,-11,75,-0.5640878677368164],[124,-11,76,-0.5618016794323921],[124,-11,77,-0.5576293431222439],[124,-11,78,-0.5526084005832672],[124,-11,79,-0.5472907461225986],[124,-10,64,-0.5549865774810314],[124,-10,65,-0.5559594221413136],[124,-10,66,-0.5551650784909725],[124,-10,67,-0.5536443181335926],[124,-10,68,-0.5528128109872341],[124,-10,69,-0.5535379312932491],[124,-10,70,-0.5553286522626877],[124,-10,71,-0.5575743019580841],[124,-10,72,-0.5605612844228745],[124,-10,73,-0.563075702637434],[124,-10,74,-0.5643343068659306],[124,-10,75,-0.5640878677368164],[124,-10,76,-0.5618016794323921],[124,-10,77,-0.5576293431222439],[124,-10,78,-0.5526084005832672],[124,-10,79,-0.5472907461225986],[124,-9,64,-0.5549865774810314],[124,-9,65,-0.5559594221413136],[124,-9,66,-0.5551650784909725],[124,-9,67,-0.5536443181335926],[124,-9,68,-0.5528128109872341],[124,-9,69,-0.5535379312932491],[124,-9,70,-0.5553286522626877],[124,-9,71,-0.5575743019580841],[124,-9,72,-0.5605612844228745],[124,-9,73,-0.563075702637434],[124,-9,74,-0.5643343068659306],[124,-9,75,-0.5640878677368164],[124,-9,76,-0.5618016794323921],[124,-9,77,-0.5576293431222439],[124,-9,78,-0.5526084005832672],[124,-9,79,-0.5472907461225986],[124,-8,64,-0.5549865774810314],[124,-8,65,-0.5559594221413136],[124,-8,66,-0.5551650784909725],[124,-8,67,-0.5536443181335926],[124,-8,68,-0.5528128109872341],[124,-8,69,-0.5535379312932491],[124,-8,70,-0.5553286522626877],[124,-8,71,-0.5575743019580841],[124,-8,72,-0.5605612844228745],[124,-8,73,-0.563075702637434],[124,-8,74,-0.5643343068659306],[124,-8,75,-0.5640878677368164],[124,-8,76,-0.5618016794323921],[124,-8,77,-0.5576293431222439],[124,-8,78,-0.5526084005832672],[124,-8,79,-0.5472907461225986],[124,-7,64,-0.5549865774810314],[124,-7,65,-0.5559594221413136],[124,-7,66,-0.5551650784909725],[124,-7,67,-0.5536443181335926],[124,-7,68,-0.5528128109872341],[124,-7,69,-0.5535379312932491],[124,-7,70,-0.5553286522626877],[124,-7,71,-0.5575743019580841],[124,-7,72,-0.5605612844228745],[124,-7,73,-0.563075702637434],[124,-7,74,-0.5643343068659306],[124,-7,75,-0.5640878677368164],[124,-7,76,-0.5618016794323921],[124,-7,77,-0.5576293431222439],[124,-7,78,-0.5526084005832672],[124,-7,79,-0.5472907461225986],[124,-6,64,-0.5549865774810314],[124,-6,65,-0.5559594221413136],[124,-6,66,-0.5551650784909725],[124,-6,67,-0.5536443181335926],[124,-6,68,-0.5528128109872341],[124,-6,69,-0.5535379312932491],[124,-6,70,-0.5553286522626877],[124,-6,71,-0.5575743019580841],[124,-6,72,-0.5605612844228745],[124,-6,73,-0.563075702637434],[124,-6,74,-0.5643343068659306],[124,-6,75,-0.5640878677368164],[124,-6,76,-0.5618016794323921],[124,-6,77,-0.5576293431222439],[124,-6,78,-0.5526084005832672],[124,-6,79,-0.5472907461225986],[124,-5,64,-0.5549865774810314],[124,-5,65,-0.5559594221413136],[124,-5,66,-0.5551650784909725],[124,-5,67,-0.5536443181335926],[124,-5,68,-0.5528128109872341],[124,-5,69,-0.5535379312932491],[124,-5,70,-0.5553286522626877],[124,-5,71,-0.5575743019580841],[124,-5,72,-0.5605612844228745],[124,-5,73,-0.563075702637434],[124,-5,74,-0.5643343068659306],[124,-5,75,-0.5640878677368164],[124,-5,76,-0.5618016794323921],[124,-5,77,-0.5576293431222439],[124,-5,78,-0.5526084005832672],[124,-5,79,-0.5472907461225986],[124,-4,64,-0.5549865774810314],[124,-4,65,-0.5559594221413136],[124,-4,66,-0.5551650784909725],[124,-4,67,-0.5536443181335926],[124,-4,68,-0.5528128109872341],[124,-4,69,-0.5535379312932491],[124,-4,70,-0.5553286522626877],[124,-4,71,-0.5575743019580841],[124,-4,72,-0.5605612844228745],[124,-4,73,-0.563075702637434],[124,-4,74,-0.5643343068659306],[124,-4,75,-0.5640878677368164],[124,-4,76,-0.5618016794323921],[124,-4,77,-0.5576293431222439],[124,-4,78,-0.5526084005832672],[124,-4,79,-0.5472907461225986],[124,-3,64,-0.5549865774810314],[124,-3,65,-0.5559594221413136],[124,-3,66,-0.5551650784909725],[124,-3,67,-0.5536443181335926],[124,-3,68,-0.5528128109872341],[124,-3,69,-0.5535379312932491],[124,-3,70,-0.5553286522626877],[124,-3,71,-0.5575743019580841],[124,-3,72,-0.5605612844228745],[124,-3,73,-0.563075702637434],[124,-3,74,-0.5643343068659306],[124,-3,75,-0.5640878677368164],[124,-3,76,-0.5618016794323921],[124,-3,77,-0.5576293431222439],[124,-3,78,-0.5526084005832672],[124,-3,79,-0.5472907461225986],[124,-2,64,-0.5549865774810314],[124,-2,65,-0.5559594221413136],[124,-2,66,-0.5551650784909725],[124,-2,67,-0.5536443181335926],[124,-2,68,-0.5528128109872341],[124,-2,69,-0.5535379312932491],[124,-2,70,-0.5553286522626877],[124,-2,71,-0.5575743019580841],[124,-2,72,-0.5605612844228745],[124,-2,73,-0.563075702637434],[124,-2,74,-0.5643343068659306],[124,-2,75,-0.5640878677368164],[124,-2,76,-0.5618016794323921],[124,-2,77,-0.5576293431222439],[124,-2,78,-0.5526084005832672],[124,-2,79,-0.5472907461225986],[124,-1,64,-0.5549865774810314],[124,-1,65,-0.5559594221413136],[124,-1,66,-0.5551650784909725],[124,-1,67,-0.5536443181335926],[124,-1,68,-0.5528128109872341],[124,-1,69,-0.5535379312932491],[124,-1,70,-0.5553286522626877],[124,-1,71,-0.5575743019580841],[124,-1,72,-0.5605612844228745],[124,-1,73,-0.563075702637434],[124,-1,74,-0.5643343068659306],[124,-1,75,-0.5640878677368164],[124,-1,76,-0.5618016794323921],[124,-1,77,-0.5576293431222439],[124,-1,78,-0.5526084005832672],[124,-1,79,-0.5472907461225986],[124,0,64,-0.5549865774810314],[124,0,65,-0.5559594221413136],[124,0,66,-0.5551650784909725],[124,0,67,-0.5536443181335926],[124,0,68,-0.5528128109872341],[124,0,69,-0.5535379312932491],[124,0,70,-0.5553286522626877],[124,0,71,-0.5575743019580841],[124,0,72,-0.5605612844228745],[124,0,73,-0.563075702637434],[124,0,74,-0.5643343068659306],[124,0,75,-0.5640878677368164],[124,0,76,-0.5618016794323921],[124,0,77,-0.5576293431222439],[124,0,78,-0.5526084005832672],[124,0,79,-0.5472907461225986],[124,1,64,-0.5549865774810314],[124,1,65,-0.5559594221413136],[124,1,66,-0.5551650784909725],[124,1,67,-0.5536443181335926],[124,1,68,-0.5528128109872341],[124,1,69,-0.5535379312932491],[124,1,70,-0.5553286522626877],[124,1,71,-0.5575743019580841],[124,1,72,-0.5605612844228745],[124,1,73,-0.563075702637434],[124,1,74,-0.5643343068659306],[124,1,75,-0.5640878677368164],[124,1,76,-0.5618016794323921],[124,1,77,-0.5576293431222439],[124,1,78,-0.5526084005832672],[124,1,79,-0.5472907461225986],[124,2,64,-0.5549865774810314],[124,2,65,-0.5559594221413136],[124,2,66,-0.5551650784909725],[124,2,67,-0.5536443181335926],[124,2,68,-0.5528128109872341],[124,2,69,-0.5535379312932491],[124,2,70,-0.5553286522626877],[124,2,71,-0.5575743019580841],[124,2,72,-0.5605612844228745],[124,2,73,-0.563075702637434],[124,2,74,-0.5643343068659306],[124,2,75,-0.5640878677368164],[124,2,76,-0.5618016794323921],[124,2,77,-0.5576293431222439],[124,2,78,-0.5526084005832672],[124,2,79,-0.5472907461225986],[124,3,64,-0.5549865774810314],[124,3,65,-0.5559594221413136],[124,3,66,-0.5551650784909725],[124,3,67,-0.5536443181335926],[124,3,68,-0.5528128109872341],[124,3,69,-0.5535379312932491],[124,3,70,-0.5553286522626877],[124,3,71,-0.5575743019580841],[124,3,72,-0.5605612844228745],[124,3,73,-0.563075702637434],[124,3,74,-0.5643343068659306],[124,3,75,-0.5640878677368164],[124,3,76,-0.5618016794323921],[124,3,77,-0.5576293431222439],[124,3,78,-0.5526084005832672],[124,3,79,-0.5472907461225986],[124,4,64,-0.5549865774810314],[124,4,65,-0.5559594221413136],[124,4,66,-0.5551650784909725],[124,4,67,-0.5536443181335926],[124,4,68,-0.5528128109872341],[124,4,69,-0.5535379312932491],[124,4,70,-0.5553286522626877],[124,4,71,-0.5575743019580841],[124,4,72,-0.5605612844228745],[124,4,73,-0.563075702637434],[124,4,74,-0.5643343068659306],[124,4,75,-0.5640878677368164],[124,4,76,-0.5618016794323921],[124,4,77,-0.5576293431222439],[124,4,78,-0.5526084005832672],[124,4,79,-0.5472907461225986],[124,5,64,-0.5549865774810314],[124,5,65,-0.5559594221413136],[124,5,66,-0.5551650784909725],[124,5,67,-0.5536443181335926],[124,5,68,-0.5528128109872341],[124,5,69,-0.5535379312932491],[124,5,70,-0.5553286522626877],[124,5,71,-0.5575743019580841],[124,5,72,-0.5605612844228745],[124,5,73,-0.563075702637434],[124,5,74,-0.5643343068659306],[124,5,75,-0.5640878677368164],[124,5,76,-0.5618016794323921],[124,5,77,-0.5576293431222439],[124,5,78,-0.5526084005832672],[124,5,79,-0.5472907461225986],[124,6,64,-0.5549865774810314],[124,6,65,-0.5559594221413136],[124,6,66,-0.5551650784909725],[124,6,67,-0.5536443181335926],[124,6,68,-0.5528128109872341],[124,6,69,-0.5535379312932491],[124,6,70,-0.5553286522626877],[124,6,71,-0.5575743019580841],[124,6,72,-0.5605612844228745],[124,6,73,-0.563075702637434],[124,6,74,-0.5643343068659306],[124,6,75,-0.5640878677368164],[124,6,76,-0.5618016794323921],[124,6,77,-0.5576293431222439],[124,6,78,-0.5526084005832672],[124,6,79,-0.5472907461225986],[124,7,64,-0.5549865774810314],[124,7,65,-0.5559594221413136],[124,7,66,-0.5551650784909725],[124,7,67,-0.5536443181335926],[124,7,68,-0.5528128109872341],[124,7,69,-0.5535379312932491],[124,7,70,-0.5553286522626877],[124,7,71,-0.5575743019580841],[124,7,72,-0.5605612844228745],[124,7,73,-0.563075702637434],[124,7,74,-0.5643343068659306],[124,7,75,-0.5640878677368164],[124,7,76,-0.5618016794323921],[124,7,77,-0.5576293431222439],[124,7,78,-0.5526084005832672],[124,7,79,-0.5472907461225986],[124,8,64,-0.5549865774810314],[124,8,65,-0.5559594221413136],[124,8,66,-0.5551650784909725],[124,8,67,-0.5536443181335926],[124,8,68,-0.5528128109872341],[124,8,69,-0.5535379312932491],[124,8,70,-0.5553286522626877],[124,8,71,-0.5575743019580841],[124,8,72,-0.5605612844228745],[124,8,73,-0.563075702637434],[124,8,74,-0.5643343068659306],[124,8,75,-0.5640878677368164],[124,8,76,-0.5618016794323921],[124,8,77,-0.5576293431222439],[124,8,78,-0.5526084005832672],[124,8,79,-0.5472907461225986],[124,9,64,-0.5549865774810314],[124,9,65,-0.5559594221413136],[124,9,66,-0.5551650784909725],[124,9,67,-0.5536443181335926],[124,9,68,-0.5528128109872341],[124,9,69,-0.5535379312932491],[124,9,70,-0.5553286522626877],[124,9,71,-0.5575743019580841],[124,9,72,-0.5605612844228745],[124,9,73,-0.563075702637434],[124,9,74,-0.5643343068659306],[124,9,75,-0.5640878677368164],[124,9,76,-0.5618016794323921],[124,9,77,-0.5576293431222439],[124,9,78,-0.5526084005832672],[124,9,79,-0.5472907461225986],[124,10,64,-0.5549865774810314],[124,10,65,-0.5559594221413136],[124,10,66,-0.5551650784909725],[124,10,67,-0.5536443181335926],[124,10,68,-0.5528128109872341],[124,10,69,-0.5535379312932491],[124,10,70,-0.5553286522626877],[124,10,71,-0.5575743019580841],[124,10,72,-0.5605612844228745],[124,10,73,-0.563075702637434],[124,10,74,-0.5643343068659306],[124,10,75,-0.5640878677368164],[124,10,76,-0.5618016794323921],[124,10,77,-0.5576293431222439],[124,10,78,-0.5526084005832672],[124,10,79,-0.5472907461225986],[124,11,64,-0.5549865774810314],[124,11,65,-0.5559594221413136],[124,11,66,-0.5551650784909725],[124,11,67,-0.5536443181335926],[124,11,68,-0.5528128109872341],[124,11,69,-0.5535379312932491],[124,11,70,-0.5553286522626877],[124,11,71,-0.5575743019580841],[124,11,72,-0.5605612844228745],[124,11,73,-0.563075702637434],[124,11,74,-0.5643343068659306],[124,11,75,-0.5640878677368164],[124,11,76,-0.5618016794323921],[124,11,77,-0.5576293431222439],[124,11,78,-0.5526084005832672],[124,11,79,-0.5472907461225986],[124,12,64,-0.5549865774810314],[124,12,65,-0.5559594221413136],[124,12,66,-0.5551650784909725],[124,12,67,-0.5536443181335926],[124,12,68,-0.5528128109872341],[124,12,69,-0.5535379312932491],[124,12,70,-0.5553286522626877],[124,12,71,-0.5575743019580841],[124,12,72,-0.5605612844228745],[124,12,73,-0.563075702637434],[124,12,74,-0.5643343068659306],[124,12,75,-0.5640878677368164],[124,12,76,-0.5618016794323921],[124,12,77,-0.5576293431222439],[124,12,78,-0.5526084005832672],[124,12,79,-0.5472907461225986],[124,13,64,-0.5549865774810314],[124,13,65,-0.5559594221413136],[124,13,66,-0.5551650784909725],[124,13,67,-0.5536443181335926],[124,13,68,-0.5528128109872341],[124,13,69,-0.5535379312932491],[124,13,70,-0.5553286522626877],[124,13,71,-0.5575743019580841],[124,13,72,-0.5605612844228745],[124,13,73,-0.563075702637434],[124,13,74,-0.5643343068659306],[124,13,75,-0.5640878677368164],[124,13,76,-0.5618016794323921],[124,13,77,-0.5576293431222439],[124,13,78,-0.5526084005832672],[124,13,79,-0.5472907461225986],[124,14,64,-0.5549865774810314],[124,14,65,-0.5559594221413136],[124,14,66,-0.5551650784909725],[124,14,67,-0.5536443181335926],[124,14,68,-0.5528128109872341],[124,14,69,-0.5535379312932491],[124,14,70,-0.5553286522626877],[124,14,71,-0.5575743019580841],[124,14,72,-0.5605612844228745],[124,14,73,-0.563075702637434],[124,14,74,-0.5643343068659306],[124,14,75,-0.5640878677368164],[124,14,76,-0.5618016794323921],[124,14,77,-0.5576293431222439],[124,14,78,-0.5526084005832672],[124,14,79,-0.5472907461225986],[124,15,64,-0.5549865774810314],[124,15,65,-0.5559594221413136],[124,15,66,-0.5551650784909725],[124,15,67,-0.5536443181335926],[124,15,68,-0.5528128109872341],[124,15,69,-0.5535379312932491],[124,15,70,-0.5553286522626877],[124,15,71,-0.5575743019580841],[124,15,72,-0.5605612844228745],[124,15,73,-0.563075702637434],[124,15,74,-0.5643343068659306],[124,15,75,-0.5640878677368164],[124,15,76,-0.5618016794323921],[124,15,77,-0.5576293431222439],[124,15,78,-0.5526084005832672],[124,15,79,-0.5472907461225986],[124,16,64,-0.5549865774810314],[124,16,65,-0.5559594221413136],[124,16,66,-0.5551650784909725],[124,16,67,-0.5536443181335926],[124,16,68,-0.5528128109872341],[124,16,69,-0.5535379312932491],[124,16,70,-0.5553286522626877],[124,16,71,-0.5575743019580841],[124,16,72,-0.5605612844228745],[124,16,73,-0.563075702637434],[124,16,74,-0.5643343068659306],[124,16,75,-0.5640878677368164],[124,16,76,-0.5618016794323921],[124,16,77,-0.5576293431222439],[124,16,78,-0.5526084005832672],[124,16,79,-0.5472907461225986],[124,17,64,-0.5549865774810314],[124,17,65,-0.5559594221413136],[124,17,66,-0.5551650784909725],[124,17,67,-0.5536443181335926],[124,17,68,-0.5528128109872341],[124,17,69,-0.5535379312932491],[124,17,70,-0.5553286522626877],[124,17,71,-0.5575743019580841],[124,17,72,-0.5605612844228745],[124,17,73,-0.563075702637434],[124,17,74,-0.5643343068659306],[124,17,75,-0.5640878677368164],[124,17,76,-0.5618016794323921],[124,17,77,-0.5576293431222439],[124,17,78,-0.5526084005832672],[124,17,79,-0.5472907461225986],[124,18,64,-0.5549865774810314],[124,18,65,-0.5559594221413136],[124,18,66,-0.5551650784909725],[124,18,67,-0.5536443181335926],[124,18,68,-0.5528128109872341],[124,18,69,-0.5535379312932491],[124,18,70,-0.5553286522626877],[124,18,71,-0.5575743019580841],[124,18,72,-0.5605612844228745],[124,18,73,-0.563075702637434],[124,18,74,-0.5643343068659306],[124,18,75,-0.5640878677368164],[124,18,76,-0.5618016794323921],[124,18,77,-0.5576293431222439],[124,18,78,-0.5526084005832672],[124,18,79,-0.5472907461225986],[124,19,64,-0.5549865774810314],[124,19,65,-0.5559594221413136],[124,19,66,-0.5551650784909725],[124,19,67,-0.5536443181335926],[124,19,68,-0.5528128109872341],[124,19,69,-0.5535379312932491],[124,19,70,-0.5553286522626877],[124,19,71,-0.5575743019580841],[124,19,72,-0.5605612844228745],[124,19,73,-0.563075702637434],[124,19,74,-0.5643343068659306],[124,19,75,-0.5640878677368164],[124,19,76,-0.5618016794323921],[124,19,77,-0.5576293431222439],[124,19,78,-0.5526084005832672],[124,19,79,-0.5472907461225986],[124,20,64,-0.5549865774810314],[124,20,65,-0.5559594221413136],[124,20,66,-0.5551650784909725],[124,20,67,-0.5536443181335926],[124,20,68,-0.5528128109872341],[124,20,69,-0.5535379312932491],[124,20,70,-0.5553286522626877],[124,20,71,-0.5575743019580841],[124,20,72,-0.5605612844228745],[124,20,73,-0.563075702637434],[124,20,74,-0.5643343068659306],[124,20,75,-0.5640878677368164],[124,20,76,-0.5618016794323921],[124,20,77,-0.5576293431222439],[124,20,78,-0.5526084005832672],[124,20,79,-0.5472907461225986],[124,21,64,-0.5549865774810314],[124,21,65,-0.5559594221413136],[124,21,66,-0.5551650784909725],[124,21,67,-0.5536443181335926],[124,21,68,-0.5528128109872341],[124,21,69,-0.5535379312932491],[124,21,70,-0.5553286522626877],[124,21,71,-0.5575743019580841],[124,21,72,-0.5605612844228745],[124,21,73,-0.563075702637434],[124,21,74,-0.5643343068659306],[124,21,75,-0.5640878677368164],[124,21,76,-0.5618016794323921],[124,21,77,-0.5576293431222439],[124,21,78,-0.5526084005832672],[124,21,79,-0.5472907461225986],[124,22,64,-0.5549865774810314],[124,22,65,-0.5559594221413136],[124,22,66,-0.5551650784909725],[124,22,67,-0.5536443181335926],[124,22,68,-0.5528128109872341],[124,22,69,-0.5535379312932491],[124,22,70,-0.5553286522626877],[124,22,71,-0.5575743019580841],[124,22,72,-0.5605612844228745],[124,22,73,-0.563075702637434],[124,22,74,-0.5643343068659306],[124,22,75,-0.5640878677368164],[124,22,76,-0.5618016794323921],[124,22,77,-0.5576293431222439],[124,22,78,-0.5526084005832672],[124,22,79,-0.5472907461225986],[124,23,64,-0.5549865774810314],[124,23,65,-0.5559594221413136],[124,23,66,-0.5551650784909725],[124,23,67,-0.5536443181335926],[124,23,68,-0.5528128109872341],[124,23,69,-0.5535379312932491],[124,23,70,-0.5553286522626877],[124,23,71,-0.5575743019580841],[124,23,72,-0.5605612844228745],[124,23,73,-0.563075702637434],[124,23,74,-0.5643343068659306],[124,23,75,-0.5640878677368164],[124,23,76,-0.5618016794323921],[124,23,77,-0.5576293431222439],[124,23,78,-0.5526084005832672],[124,23,79,-0.5472907461225986],[124,24,64,-0.5549865774810314],[124,24,65,-0.5559594221413136],[124,24,66,-0.5551650784909725],[124,24,67,-0.5536443181335926],[124,24,68,-0.5528128109872341],[124,24,69,-0.5535379312932491],[124,24,70,-0.5553286522626877],[124,24,71,-0.5575743019580841],[124,24,72,-0.5605612844228745],[124,24,73,-0.563075702637434],[124,24,74,-0.5643343068659306],[124,24,75,-0.5640878677368164],[124,24,76,-0.5618016794323921],[124,24,77,-0.5576293431222439],[124,24,78,-0.5526084005832672],[124,24,79,-0.5472907461225986],[124,25,64,-0.5549865774810314],[124,25,65,-0.5559594221413136],[124,25,66,-0.5551650784909725],[124,25,67,-0.5536443181335926],[124,25,68,-0.5528128109872341],[124,25,69,-0.5535379312932491],[124,25,70,-0.5553286522626877],[124,25,71,-0.5575743019580841],[124,25,72,-0.5605612844228745],[124,25,73,-0.563075702637434],[124,25,74,-0.5643343068659306],[124,25,75,-0.5640878677368164],[124,25,76,-0.5618016794323921],[124,25,77,-0.5576293431222439],[124,25,78,-0.5526084005832672],[124,25,79,-0.5472907461225986],[124,26,64,-0.5549865774810314],[124,26,65,-0.5559594221413136],[124,26,66,-0.5551650784909725],[124,26,67,-0.5536443181335926],[124,26,68,-0.5528128109872341],[124,26,69,-0.5535379312932491],[124,26,70,-0.5553286522626877],[124,26,71,-0.5575743019580841],[124,26,72,-0.5605612844228745],[124,26,73,-0.563075702637434],[124,26,74,-0.5643343068659306],[124,26,75,-0.5640878677368164],[124,26,76,-0.5618016794323921],[124,26,77,-0.5576293431222439],[124,26,78,-0.5526084005832672],[124,26,79,-0.5472907461225986],[124,27,64,-0.5549865774810314],[124,27,65,-0.5559594221413136],[124,27,66,-0.5551650784909725],[124,27,67,-0.5536443181335926],[124,27,68,-0.5528128109872341],[124,27,69,-0.5535379312932491],[124,27,70,-0.5553286522626877],[124,27,71,-0.5575743019580841],[124,27,72,-0.5605612844228745],[124,27,73,-0.563075702637434],[124,27,74,-0.5643343068659306],[124,27,75,-0.5640878677368164],[124,27,76,-0.5618016794323921],[124,27,77,-0.5576293431222439],[124,27,78,-0.5526084005832672],[124,27,79,-0.5472907461225986],[124,28,64,-0.5549865774810314],[124,28,65,-0.5559594221413136],[124,28,66,-0.5551650784909725],[124,28,67,-0.5536443181335926],[124,28,68,-0.5528128109872341],[124,28,69,-0.5535379312932491],[124,28,70,-0.5553286522626877],[124,28,71,-0.5575743019580841],[124,28,72,-0.5605612844228745],[124,28,73,-0.563075702637434],[124,28,74,-0.5643343068659306],[124,28,75,-0.5640878677368164],[124,28,76,-0.5618016794323921],[124,28,77,-0.5576293431222439],[124,28,78,-0.5526084005832672],[124,28,79,-0.5472907461225986],[124,29,64,-0.5549865774810314],[124,29,65,-0.5559594221413136],[124,29,66,-0.5551650784909725],[124,29,67,-0.5536443181335926],[124,29,68,-0.5528128109872341],[124,29,69,-0.5535379312932491],[124,29,70,-0.5553286522626877],[124,29,71,-0.5575743019580841],[124,29,72,-0.5605612844228745],[124,29,73,-0.563075702637434],[124,29,74,-0.5643343068659306],[124,29,75,-0.5640878677368164],[124,29,76,-0.5618016794323921],[124,29,77,-0.5576293431222439],[124,29,78,-0.5526084005832672],[124,29,79,-0.5472907461225986],[124,30,64,-0.5549865774810314],[124,30,65,-0.5559594221413136],[124,30,66,-0.5551650784909725],[124,30,67,-0.5536443181335926],[124,30,68,-0.5528128109872341],[124,30,69,-0.5535379312932491],[124,30,70,-0.5553286522626877],[124,30,71,-0.5575743019580841],[124,30,72,-0.5605612844228745],[124,30,73,-0.563075702637434],[124,30,74,-0.5643343068659306],[124,30,75,-0.5640878677368164],[124,30,76,-0.5618016794323921],[124,30,77,-0.5576293431222439],[124,30,78,-0.5526084005832672],[124,30,79,-0.5472907461225986],[124,31,64,-0.5549865774810314],[124,31,65,-0.5559594221413136],[124,31,66,-0.5551650784909725],[124,31,67,-0.5536443181335926],[124,31,68,-0.5528128109872341],[124,31,69,-0.5535379312932491],[124,31,70,-0.5553286522626877],[124,31,71,-0.5575743019580841],[124,31,72,-0.5605612844228745],[124,31,73,-0.563075702637434],[124,31,74,-0.5643343068659306],[124,31,75,-0.5640878677368164],[124,31,76,-0.5618016794323921],[124,31,77,-0.5576293431222439],[124,31,78,-0.5526084005832672],[124,31,79,-0.5472907461225986],[124,32,64,-0.5549865774810314],[124,32,65,-0.5559594221413136],[124,32,66,-0.5551650784909725],[124,32,67,-0.5536443181335926],[124,32,68,-0.5528128109872341],[124,32,69,-0.5535379312932491],[124,32,70,-0.5553286522626877],[124,32,71,-0.5575743019580841],[124,32,72,-0.5605612844228745],[124,32,73,-0.563075702637434],[124,32,74,-0.5643343068659306],[124,32,75,-0.5640878677368164],[124,32,76,-0.5618016794323921],[124,32,77,-0.5576293431222439],[124,32,78,-0.5526084005832672],[124,32,79,-0.5472907461225986],[124,33,64,-0.5549865774810314],[124,33,65,-0.5559594221413136],[124,33,66,-0.5551650784909725],[124,33,67,-0.5536443181335926],[124,33,68,-0.5528128109872341],[124,33,69,-0.5535379312932491],[124,33,70,-0.5553286522626877],[124,33,71,-0.5575743019580841],[124,33,72,-0.5605612844228745],[124,33,73,-0.563075702637434],[124,33,74,-0.5643343068659306],[124,33,75,-0.5640878677368164],[124,33,76,-0.5618016794323921],[124,33,77,-0.5576293431222439],[124,33,78,-0.5526084005832672],[124,33,79,-0.5472907461225986],[124,34,64,-0.5549865774810314],[124,34,65,-0.5559594221413136],[124,34,66,-0.5551650784909725],[124,34,67,-0.5536443181335926],[124,34,68,-0.5528128109872341],[124,34,69,-0.5535379312932491],[124,34,70,-0.5553286522626877],[124,34,71,-0.5575743019580841],[124,34,72,-0.5605612844228745],[124,34,73,-0.563075702637434],[124,34,74,-0.5643343068659306],[124,34,75,-0.5640878677368164],[124,34,76,-0.5618016794323921],[124,34,77,-0.5576293431222439],[124,34,78,-0.5526084005832672],[124,34,79,-0.5472907461225986],[124,35,64,-0.5549865774810314],[124,35,65,-0.5559594221413136],[124,35,66,-0.5551650784909725],[124,35,67,-0.5536443181335926],[124,35,68,-0.5528128109872341],[124,35,69,-0.5535379312932491],[124,35,70,-0.5553286522626877],[124,35,71,-0.5575743019580841],[124,35,72,-0.5605612844228745],[124,35,73,-0.563075702637434],[124,35,74,-0.5643343068659306],[124,35,75,-0.5640878677368164],[124,35,76,-0.5618016794323921],[124,35,77,-0.5576293431222439],[124,35,78,-0.5526084005832672],[124,35,79,-0.5472907461225986],[124,36,64,-0.5549865774810314],[124,36,65,-0.5559594221413136],[124,36,66,-0.5551650784909725],[124,36,67,-0.5536443181335926],[124,36,68,-0.5528128109872341],[124,36,69,-0.5535379312932491],[124,36,70,-0.5553286522626877],[124,36,71,-0.5575743019580841],[124,36,72,-0.5605612844228745],[124,36,73,-0.563075702637434],[124,36,74,-0.5643343068659306],[124,36,75,-0.5640878677368164],[124,36,76,-0.5618016794323921],[124,36,77,-0.5576293431222439],[124,36,78,-0.5526084005832672],[124,36,79,-0.5472907461225986],[124,37,64,-0.5549865774810314],[124,37,65,-0.5559594221413136],[124,37,66,-0.5551650784909725],[124,37,67,-0.5536443181335926],[124,37,68,-0.5528128109872341],[124,37,69,-0.5535379312932491],[124,37,70,-0.5553286522626877],[124,37,71,-0.5575743019580841],[124,37,72,-0.5605612844228745],[124,37,73,-0.563075702637434],[124,37,74,-0.5643343068659306],[124,37,75,-0.5640878677368164],[124,37,76,-0.5618016794323921],[124,37,77,-0.5576293431222439],[124,37,78,-0.5526084005832672],[124,37,79,-0.5472907461225986],[124,38,64,-0.5549865774810314],[124,38,65,-0.5559594221413136],[124,38,66,-0.5551650784909725],[124,38,67,-0.5536443181335926],[124,38,68,-0.5528128109872341],[124,38,69,-0.5535379312932491],[124,38,70,-0.5553286522626877],[124,38,71,-0.5575743019580841],[124,38,72,-0.5605612844228745],[124,38,73,-0.563075702637434],[124,38,74,-0.5643343068659306],[124,38,75,-0.5640878677368164],[124,38,76,-0.5618016794323921],[124,38,77,-0.5576293431222439],[124,38,78,-0.5526084005832672],[124,38,79,-0.5472907461225986],[124,39,64,-0.5549865774810314],[124,39,65,-0.5559594221413136],[124,39,66,-0.5551650784909725],[124,39,67,-0.5536443181335926],[124,39,68,-0.5528128109872341],[124,39,69,-0.5535379312932491],[124,39,70,-0.5553286522626877],[124,39,71,-0.5575743019580841],[124,39,72,-0.5605612844228745],[124,39,73,-0.563075702637434],[124,39,74,-0.5643343068659306],[124,39,75,-0.5640878677368164],[124,39,76,-0.5618016794323921],[124,39,77,-0.5576293431222439],[124,39,78,-0.5526084005832672],[124,39,79,-0.5472907461225986],[124,40,64,-0.5549865774810314],[124,40,65,-0.5559594221413136],[124,40,66,-0.5551650784909725],[124,40,67,-0.5536443181335926],[124,40,68,-0.5528128109872341],[124,40,69,-0.5535379312932491],[124,40,70,-0.5553286522626877],[124,40,71,-0.5575743019580841],[124,40,72,-0.5605612844228745],[124,40,73,-0.563075702637434],[124,40,74,-0.5643343068659306],[124,40,75,-0.5640878677368164],[124,40,76,-0.5618016794323921],[124,40,77,-0.5576293431222439],[124,40,78,-0.5526084005832672],[124,40,79,-0.5472907461225986],[124,41,64,-0.5549865774810314],[124,41,65,-0.5559594221413136],[124,41,66,-0.5551650784909725],[124,41,67,-0.5536443181335926],[124,41,68,-0.5528128109872341],[124,41,69,-0.5535379312932491],[124,41,70,-0.5553286522626877],[124,41,71,-0.5575743019580841],[124,41,72,-0.5605612844228745],[124,41,73,-0.563075702637434],[124,41,74,-0.5643343068659306],[124,41,75,-0.5640878677368164],[124,41,76,-0.5618016794323921],[124,41,77,-0.5576293431222439],[124,41,78,-0.5526084005832672],[124,41,79,-0.5472907461225986],[124,42,64,-0.5549865774810314],[124,42,65,-0.5559594221413136],[124,42,66,-0.5551650784909725],[124,42,67,-0.5536443181335926],[124,42,68,-0.5528128109872341],[124,42,69,-0.5535379312932491],[124,42,70,-0.5553286522626877],[124,42,71,-0.5575743019580841],[124,42,72,-0.5605612844228745],[124,42,73,-0.563075702637434],[124,42,74,-0.5643343068659306],[124,42,75,-0.5640878677368164],[124,42,76,-0.5618016794323921],[124,42,77,-0.5576293431222439],[124,42,78,-0.5526084005832672],[124,42,79,-0.5472907461225986],[124,43,64,-0.5549865774810314],[124,43,65,-0.5559594221413136],[124,43,66,-0.5551650784909725],[124,43,67,-0.5536443181335926],[124,43,68,-0.5528128109872341],[124,43,69,-0.5535379312932491],[124,43,70,-0.5553286522626877],[124,43,71,-0.5575743019580841],[124,43,72,-0.5605612844228745],[124,43,73,-0.563075702637434],[124,43,74,-0.5643343068659306],[124,43,75,-0.5640878677368164],[124,43,76,-0.5618016794323921],[124,43,77,-0.5576293431222439],[124,43,78,-0.5526084005832672],[124,43,79,-0.5472907461225986],[124,44,64,-0.5549865774810314],[124,44,65,-0.5559594221413136],[124,44,66,-0.5551650784909725],[124,44,67,-0.5536443181335926],[124,44,68,-0.5528128109872341],[124,44,69,-0.5535379312932491],[124,44,70,-0.5553286522626877],[124,44,71,-0.5575743019580841],[124,44,72,-0.5605612844228745],[124,44,73,-0.563075702637434],[124,44,74,-0.5643343068659306],[124,44,75,-0.5640878677368164],[124,44,76,-0.5618016794323921],[124,44,77,-0.5576293431222439],[124,44,78,-0.5526084005832672],[124,44,79,-0.5472907461225986],[124,45,64,-0.5549865774810314],[124,45,65,-0.5559594221413136],[124,45,66,-0.5551650784909725],[124,45,67,-0.5536443181335926],[124,45,68,-0.5528128109872341],[124,45,69,-0.5535379312932491],[124,45,70,-0.5553286522626877],[124,45,71,-0.5575743019580841],[124,45,72,-0.5605612844228745],[124,45,73,-0.563075702637434],[124,45,74,-0.5643343068659306],[124,45,75,-0.5640878677368164],[124,45,76,-0.5618016794323921],[124,45,77,-0.5576293431222439],[124,45,78,-0.5526084005832672],[124,45,79,-0.5472907461225986],[124,46,64,-0.5549865774810314],[124,46,65,-0.5559594221413136],[124,46,66,-0.5551650784909725],[124,46,67,-0.5536443181335926],[124,46,68,-0.5528128109872341],[124,46,69,-0.5535379312932491],[124,46,70,-0.5553286522626877],[124,46,71,-0.5575743019580841],[124,46,72,-0.5605612844228745],[124,46,73,-0.563075702637434],[124,46,74,-0.5643343068659306],[124,46,75,-0.5640878677368164],[124,46,76,-0.5618016794323921],[124,46,77,-0.5576293431222439],[124,46,78,-0.5526084005832672],[124,46,79,-0.5472907461225986],[124,47,64,-0.5549865774810314],[124,47,65,-0.5559594221413136],[124,47,66,-0.5551650784909725],[124,47,67,-0.5536443181335926],[124,47,68,-0.5528128109872341],[124,47,69,-0.5535379312932491],[124,47,70,-0.5553286522626877],[124,47,71,-0.5575743019580841],[124,47,72,-0.5605612844228745],[124,47,73,-0.563075702637434],[124,47,74,-0.5643343068659306],[124,47,75,-0.5640878677368164],[124,47,76,-0.5618016794323921],[124,47,77,-0.5576293431222439],[124,47,78,-0.5526084005832672],[124,47,79,-0.5472907461225986],[124,48,64,-0.5549865774810314],[124,48,65,-0.5559594221413136],[124,48,66,-0.5551650784909725],[124,48,67,-0.5536443181335926],[124,48,68,-0.5528128109872341],[124,48,69,-0.5535379312932491],[124,48,70,-0.5553286522626877],[124,48,71,-0.5575743019580841],[124,48,72,-0.5605612844228745],[124,48,73,-0.563075702637434],[124,48,74,-0.5643343068659306],[124,48,75,-0.5640878677368164],[124,48,76,-0.5618016794323921],[124,48,77,-0.5576293431222439],[124,48,78,-0.5526084005832672],[124,48,79,-0.5472907461225986],[124,49,64,-0.5549865774810314],[124,49,65,-0.5559594221413136],[124,49,66,-0.5551650784909725],[124,49,67,-0.5536443181335926],[124,49,68,-0.5528128109872341],[124,49,69,-0.5535379312932491],[124,49,70,-0.5553286522626877],[124,49,71,-0.5575743019580841],[124,49,72,-0.5605612844228745],[124,49,73,-0.563075702637434],[124,49,74,-0.5643343068659306],[124,49,75,-0.5640878677368164],[124,49,76,-0.5618016794323921],[124,49,77,-0.5576293431222439],[124,49,78,-0.5526084005832672],[124,49,79,-0.5472907461225986],[124,50,64,-0.5549865774810314],[124,50,65,-0.5559594221413136],[124,50,66,-0.5551650784909725],[124,50,67,-0.5536443181335926],[124,50,68,-0.5528128109872341],[124,50,69,-0.5535379312932491],[124,50,70,-0.5553286522626877],[124,50,71,-0.5575743019580841],[124,50,72,-0.5605612844228745],[124,50,73,-0.563075702637434],[124,50,74,-0.5643343068659306],[124,50,75,-0.5640878677368164],[124,50,76,-0.5618016794323921],[124,50,77,-0.5576293431222439],[124,50,78,-0.5526084005832672],[124,50,79,-0.5472907461225986],[124,51,64,-0.5549865774810314],[124,51,65,-0.5559594221413136],[124,51,66,-0.5551650784909725],[124,51,67,-0.5536443181335926],[124,51,68,-0.5528128109872341],[124,51,69,-0.5535379312932491],[124,51,70,-0.5553286522626877],[124,51,71,-0.5575743019580841],[124,51,72,-0.5605612844228745],[124,51,73,-0.563075702637434],[124,51,74,-0.5643343068659306],[124,51,75,-0.5640878677368164],[124,51,76,-0.5618016794323921],[124,51,77,-0.5576293431222439],[124,51,78,-0.5526084005832672],[124,51,79,-0.5472907461225986],[124,52,64,-0.5549865774810314],[124,52,65,-0.5559594221413136],[124,52,66,-0.5551650784909725],[124,52,67,-0.5536443181335926],[124,52,68,-0.5528128109872341],[124,52,69,-0.5535379312932491],[124,52,70,-0.5553286522626877],[124,52,71,-0.5575743019580841],[124,52,72,-0.5605612844228745],[124,52,73,-0.563075702637434],[124,52,74,-0.5643343068659306],[124,52,75,-0.5640878677368164],[124,52,76,-0.5618016794323921],[124,52,77,-0.5576293431222439],[124,52,78,-0.5526084005832672],[124,52,79,-0.5472907461225986],[124,53,64,-0.5549865774810314],[124,53,65,-0.5559594221413136],[124,53,66,-0.5551650784909725],[124,53,67,-0.5536443181335926],[124,53,68,-0.5528128109872341],[124,53,69,-0.5535379312932491],[124,53,70,-0.5553286522626877],[124,53,71,-0.5575743019580841],[124,53,72,-0.5605612844228745],[124,53,73,-0.563075702637434],[124,53,74,-0.5643343068659306],[124,53,75,-0.5640878677368164],[124,53,76,-0.5618016794323921],[124,53,77,-0.5576293431222439],[124,53,78,-0.5526084005832672],[124,53,79,-0.5472907461225986],[124,54,64,-0.5549865774810314],[124,54,65,-0.5559594221413136],[124,54,66,-0.5551650784909725],[124,54,67,-0.5536443181335926],[124,54,68,-0.5528128109872341],[124,54,69,-0.5535379312932491],[124,54,70,-0.5553286522626877],[124,54,71,-0.5575743019580841],[124,54,72,-0.5605612844228745],[124,54,73,-0.563075702637434],[124,54,74,-0.5643343068659306],[124,54,75,-0.5640878677368164],[124,54,76,-0.5618016794323921],[124,54,77,-0.5576293431222439],[124,54,78,-0.5526084005832672],[124,54,79,-0.5472907461225986],[124,55,64,-0.5549865774810314],[124,55,65,-0.5559594221413136],[124,55,66,-0.5551650784909725],[124,55,67,-0.5536443181335926],[124,55,68,-0.5528128109872341],[124,55,69,-0.5535379312932491],[124,55,70,-0.5553286522626877],[124,55,71,-0.5575743019580841],[124,55,72,-0.5605612844228745],[124,55,73,-0.563075702637434],[124,55,74,-0.5643343068659306],[124,55,75,-0.5640878677368164],[124,55,76,-0.5618016794323921],[124,55,77,-0.5576293431222439],[124,55,78,-0.5526084005832672],[124,55,79,-0.5472907461225986],[124,56,64,-0.5549865774810314],[124,56,65,-0.5559594221413136],[124,56,66,-0.5551650784909725],[124,56,67,-0.5536443181335926],[124,56,68,-0.5528128109872341],[124,56,69,-0.5535379312932491],[124,56,70,-0.5553286522626877],[124,56,71,-0.5575743019580841],[124,56,72,-0.5605612844228745],[124,56,73,-0.563075702637434],[124,56,74,-0.5643343068659306],[124,56,75,-0.5640878677368164],[124,56,76,-0.5618016794323921],[124,56,77,-0.5576293431222439],[124,56,78,-0.5526084005832672],[124,56,79,-0.5472907461225986],[124,57,64,-0.5549865774810314],[124,57,65,-0.5559594221413136],[124,57,66,-0.5551650784909725],[124,57,67,-0.5536443181335926],[124,57,68,-0.5528128109872341],[124,57,69,-0.5535379312932491],[124,57,70,-0.5553286522626877],[124,57,71,-0.5575743019580841],[124,57,72,-0.5605612844228745],[124,57,73,-0.563075702637434],[124,57,74,-0.5643343068659306],[124,57,75,-0.5640878677368164],[124,57,76,-0.5618016794323921],[124,57,77,-0.5576293431222439],[124,57,78,-0.5526084005832672],[124,57,79,-0.5472907461225986],[124,58,64,-0.5549865774810314],[124,58,65,-0.5559594221413136],[124,58,66,-0.5551650784909725],[124,58,67,-0.5536443181335926],[124,58,68,-0.5528128109872341],[124,58,69,-0.5535379312932491],[124,58,70,-0.5553286522626877],[124,58,71,-0.5575743019580841],[124,58,72,-0.5605612844228745],[124,58,73,-0.563075702637434],[124,58,74,-0.5643343068659306],[124,58,75,-0.5640878677368164],[124,58,76,-0.5618016794323921],[124,58,77,-0.5576293431222439],[124,58,78,-0.5526084005832672],[124,58,79,-0.5472907461225986],[124,59,64,-0.5549865774810314],[124,59,65,-0.5559594221413136],[124,59,66,-0.5551650784909725],[124,59,67,-0.5536443181335926],[124,59,68,-0.5528128109872341],[124,59,69,-0.5535379312932491],[124,59,70,-0.5553286522626877],[124,59,71,-0.5575743019580841],[124,59,72,-0.5605612844228745],[124,59,73,-0.563075702637434],[124,59,74,-0.5643343068659306],[124,59,75,-0.5640878677368164],[124,59,76,-0.5618016794323921],[124,59,77,-0.5576293431222439],[124,59,78,-0.5526084005832672],[124,59,79,-0.5472907461225986],[124,60,64,-0.5549865774810314],[124,60,65,-0.5559594221413136],[124,60,66,-0.5551650784909725],[124,60,67,-0.5536443181335926],[124,60,68,-0.5528128109872341],[124,60,69,-0.5535379312932491],[124,60,70,-0.5553286522626877],[124,60,71,-0.5575743019580841],[124,60,72,-0.5605612844228745],[124,60,73,-0.563075702637434],[124,60,74,-0.5643343068659306],[124,60,75,-0.5640878677368164],[124,60,76,-0.5618016794323921],[124,60,77,-0.5576293431222439],[124,60,78,-0.5526084005832672],[124,60,79,-0.5472907461225986],[124,61,64,-0.5549865774810314],[124,61,65,-0.5559594221413136],[124,61,66,-0.5551650784909725],[124,61,67,-0.5536443181335926],[124,61,68,-0.5528128109872341],[124,61,69,-0.5535379312932491],[124,61,70,-0.5553286522626877],[124,61,71,-0.5575743019580841],[124,61,72,-0.5605612844228745],[124,61,73,-0.563075702637434],[124,61,74,-0.5643343068659306],[124,61,75,-0.5640878677368164],[124,61,76,-0.5618016794323921],[124,61,77,-0.5576293431222439],[124,61,78,-0.5526084005832672],[124,61,79,-0.5472907461225986],[124,62,64,-0.5549865774810314],[124,62,65,-0.5559594221413136],[124,62,66,-0.5551650784909725],[124,62,67,-0.5536443181335926],[124,62,68,-0.5528128109872341],[124,62,69,-0.5535379312932491],[124,62,70,-0.5553286522626877],[124,62,71,-0.5575743019580841],[124,62,72,-0.5605612844228745],[124,62,73,-0.563075702637434],[124,62,74,-0.5643343068659306],[124,62,75,-0.5640878677368164],[124,62,76,-0.5618016794323921],[124,62,77,-0.5576293431222439],[124,62,78,-0.5526084005832672],[124,62,79,-0.5472907461225986],[124,63,64,-0.5549865774810314],[124,63,65,-0.5559594221413136],[124,63,66,-0.5551650784909725],[124,63,67,-0.5536443181335926],[124,63,68,-0.5528128109872341],[124,63,69,-0.5535379312932491],[124,63,70,-0.5553286522626877],[124,63,71,-0.5575743019580841],[124,63,72,-0.5605612844228745],[124,63,73,-0.563075702637434],[124,63,74,-0.5643343068659306],[124,63,75,-0.5640878677368164],[124,63,76,-0.5618016794323921],[124,63,77,-0.5576293431222439],[124,63,78,-0.5526084005832672],[124,63,79,-0.5472907461225986],[124,64,64,-0.5549865774810314],[124,64,65,-0.5559594221413136],[124,64,66,-0.5551650784909725],[124,64,67,-0.5536443181335926],[124,64,68,-0.5528128109872341],[124,64,69,-0.5535379312932491],[124,64,70,-0.5553286522626877],[124,64,71,-0.5575743019580841],[124,64,72,-0.5605612844228745],[124,64,73,-0.563075702637434],[124,64,74,-0.5643343068659306],[124,64,75,-0.5640878677368164],[124,64,76,-0.5618016794323921],[124,64,77,-0.5576293431222439],[124,64,78,-0.5526084005832672],[124,64,79,-0.5472907461225986],[124,65,64,-0.5549865774810314],[124,65,65,-0.5559594221413136],[124,65,66,-0.5551650784909725],[124,65,67,-0.5536443181335926],[124,65,68,-0.5528128109872341],[124,65,69,-0.5535379312932491],[124,65,70,-0.5553286522626877],[124,65,71,-0.5575743019580841],[124,65,72,-0.5605612844228745],[124,65,73,-0.563075702637434],[124,65,74,-0.5643343068659306],[124,65,75,-0.5640878677368164],[124,65,76,-0.5618016794323921],[124,65,77,-0.5576293431222439],[124,65,78,-0.5526084005832672],[124,65,79,-0.5472907461225986],[124,66,64,-0.5549865774810314],[124,66,65,-0.5559594221413136],[124,66,66,-0.5551650784909725],[124,66,67,-0.5536443181335926],[124,66,68,-0.5528128109872341],[124,66,69,-0.5535379312932491],[124,66,70,-0.5553286522626877],[124,66,71,-0.5575743019580841],[124,66,72,-0.5605612844228745],[124,66,73,-0.563075702637434],[124,66,74,-0.5643343068659306],[124,66,75,-0.5640878677368164],[124,66,76,-0.5618016794323921],[124,66,77,-0.5576293431222439],[124,66,78,-0.5526084005832672],[124,66,79,-0.5472907461225986],[124,67,64,-0.5549865774810314],[124,67,65,-0.5559594221413136],[124,67,66,-0.5551650784909725],[124,67,67,-0.5536443181335926],[124,67,68,-0.5528128109872341],[124,67,69,-0.5535379312932491],[124,67,70,-0.5553286522626877],[124,67,71,-0.5575743019580841],[124,67,72,-0.5605612844228745],[124,67,73,-0.563075702637434],[124,67,74,-0.5643343068659306],[124,67,75,-0.5640878677368164],[124,67,76,-0.5618016794323921],[124,67,77,-0.5576293431222439],[124,67,78,-0.5526084005832672],[124,67,79,-0.5472907461225986],[124,68,64,-0.5549865774810314],[124,68,65,-0.5559594221413136],[124,68,66,-0.5551650784909725],[124,68,67,-0.5536443181335926],[124,68,68,-0.5528128109872341],[124,68,69,-0.5535379312932491],[124,68,70,-0.5553286522626877],[124,68,71,-0.5575743019580841],[124,68,72,-0.5605612844228745],[124,68,73,-0.563075702637434],[124,68,74,-0.5643343068659306],[124,68,75,-0.5640878677368164],[124,68,76,-0.5618016794323921],[124,68,77,-0.5576293431222439],[124,68,78,-0.5526084005832672],[124,68,79,-0.5472907461225986],[124,69,64,-0.5549865774810314],[124,69,65,-0.5559594221413136],[124,69,66,-0.5551650784909725],[124,69,67,-0.5536443181335926],[124,69,68,-0.5528128109872341],[124,69,69,-0.5535379312932491],[124,69,70,-0.5553286522626877],[124,69,71,-0.5575743019580841],[124,69,72,-0.5605612844228745],[124,69,73,-0.563075702637434],[124,69,74,-0.5643343068659306],[124,69,75,-0.5640878677368164],[124,69,76,-0.5618016794323921],[124,69,77,-0.5576293431222439],[124,69,78,-0.5526084005832672],[124,69,79,-0.5472907461225986],[124,70,64,-0.5549865774810314],[124,70,65,-0.5559594221413136],[124,70,66,-0.5551650784909725],[124,70,67,-0.5536443181335926],[124,70,68,-0.5528128109872341],[124,70,69,-0.5535379312932491],[124,70,70,-0.5553286522626877],[124,70,71,-0.5575743019580841],[124,70,72,-0.5605612844228745],[124,70,73,-0.563075702637434],[124,70,74,-0.5643343068659306],[124,70,75,-0.5640878677368164],[124,70,76,-0.5618016794323921],[124,70,77,-0.5576293431222439],[124,70,78,-0.5526084005832672],[124,70,79,-0.5472907461225986],[124,71,64,-0.5549865774810314],[124,71,65,-0.5559594221413136],[124,71,66,-0.5551650784909725],[124,71,67,-0.5536443181335926],[124,71,68,-0.5528128109872341],[124,71,69,-0.5535379312932491],[124,71,70,-0.5553286522626877],[124,71,71,-0.5575743019580841],[124,71,72,-0.5605612844228745],[124,71,73,-0.563075702637434],[124,71,74,-0.5643343068659306],[124,71,75,-0.5640878677368164],[124,71,76,-0.5618016794323921],[124,71,77,-0.5576293431222439],[124,71,78,-0.5526084005832672],[124,71,79,-0.5472907461225986],[124,72,64,-0.5549865774810314],[124,72,65,-0.5559594221413136],[124,72,66,-0.5551650784909725],[124,72,67,-0.5536443181335926],[124,72,68,-0.5528128109872341],[124,72,69,-0.5535379312932491],[124,72,70,-0.5553286522626877],[124,72,71,-0.5575743019580841],[124,72,72,-0.5605612844228745],[124,72,73,-0.563075702637434],[124,72,74,-0.5643343068659306],[124,72,75,-0.5640878677368164],[124,72,76,-0.5618016794323921],[124,72,77,-0.5576293431222439],[124,72,78,-0.5526084005832672],[124,72,79,-0.5472907461225986],[124,73,64,-0.5549865774810314],[124,73,65,-0.5559594221413136],[124,73,66,-0.5551650784909725],[124,73,67,-0.5536443181335926],[124,73,68,-0.5528128109872341],[124,73,69,-0.5535379312932491],[124,73,70,-0.5553286522626877],[124,73,71,-0.5575743019580841],[124,73,72,-0.5605612844228745],[124,73,73,-0.563075702637434],[124,73,74,-0.5643343068659306],[124,73,75,-0.5640878677368164],[124,73,76,-0.5618016794323921],[124,73,77,-0.5576293431222439],[124,73,78,-0.5526084005832672],[124,73,79,-0.5472907461225986],[124,74,64,-0.5549865774810314],[124,74,65,-0.5559594221413136],[124,74,66,-0.5551650784909725],[124,74,67,-0.5536443181335926],[124,74,68,-0.5528128109872341],[124,74,69,-0.5535379312932491],[124,74,70,-0.5553286522626877],[124,74,71,-0.5575743019580841],[124,74,72,-0.5605612844228745],[124,74,73,-0.563075702637434],[124,74,74,-0.5643343068659306],[124,74,75,-0.5640878677368164],[124,74,76,-0.5618016794323921],[124,74,77,-0.5576293431222439],[124,74,78,-0.5526084005832672],[124,74,79,-0.5472907461225986],[124,75,64,-0.5549865774810314],[124,75,65,-0.5559594221413136],[124,75,66,-0.5551650784909725],[124,75,67,-0.5536443181335926],[124,75,68,-0.5528128109872341],[124,75,69,-0.5535379312932491],[124,75,70,-0.5553286522626877],[124,75,71,-0.5575743019580841],[124,75,72,-0.5605612844228745],[124,75,73,-0.563075702637434],[124,75,74,-0.5643343068659306],[124,75,75,-0.5640878677368164],[124,75,76,-0.5618016794323921],[124,75,77,-0.5576293431222439],[124,75,78,-0.5526084005832672],[124,75,79,-0.5472907461225986],[124,76,64,-0.5549865774810314],[124,76,65,-0.5559594221413136],[124,76,66,-0.5551650784909725],[124,76,67,-0.5536443181335926],[124,76,68,-0.5528128109872341],[124,76,69,-0.5535379312932491],[124,76,70,-0.5553286522626877],[124,76,71,-0.5575743019580841],[124,76,72,-0.5605612844228745],[124,76,73,-0.563075702637434],[124,76,74,-0.5643343068659306],[124,76,75,-0.5640878677368164],[124,76,76,-0.5618016794323921],[124,76,77,-0.5576293431222439],[124,76,78,-0.5526084005832672],[124,76,79,-0.5472907461225986],[124,77,64,-0.5549865774810314],[124,77,65,-0.5559594221413136],[124,77,66,-0.5551650784909725],[124,77,67,-0.5536443181335926],[124,77,68,-0.5528128109872341],[124,77,69,-0.5535379312932491],[124,77,70,-0.5553286522626877],[124,77,71,-0.5575743019580841],[124,77,72,-0.5605612844228745],[124,77,73,-0.563075702637434],[124,77,74,-0.5643343068659306],[124,77,75,-0.5640878677368164],[124,77,76,-0.5618016794323921],[124,77,77,-0.5576293431222439],[124,77,78,-0.5526084005832672],[124,77,79,-0.5472907461225986],[124,78,64,-0.5549865774810314],[124,78,65,-0.5559594221413136],[124,78,66,-0.5551650784909725],[124,78,67,-0.5536443181335926],[124,78,68,-0.5528128109872341],[124,78,69,-0.5535379312932491],[124,78,70,-0.5553286522626877],[124,78,71,-0.5575743019580841],[124,78,72,-0.5605612844228745],[124,78,73,-0.563075702637434],[124,78,74,-0.5643343068659306],[124,78,75,-0.5640878677368164],[124,78,76,-0.5618016794323921],[124,78,77,-0.5576293431222439],[124,78,78,-0.5526084005832672],[124,78,79,-0.5472907461225986],[124,79,64,-0.5549865774810314],[124,79,65,-0.5559594221413136],[124,79,66,-0.5551650784909725],[124,79,67,-0.5536443181335926],[124,79,68,-0.5528128109872341],[124,79,69,-0.5535379312932491],[124,79,70,-0.5553286522626877],[124,79,71,-0.5575743019580841],[124,79,72,-0.5605612844228745],[124,79,73,-0.563075702637434],[124,79,74,-0.5643343068659306],[124,79,75,-0.5640878677368164],[124,79,76,-0.5618016794323921],[124,79,77,-0.5576293431222439],[124,79,78,-0.5526084005832672],[124,79,79,-0.5472907461225986],[124,80,64,-0.5549865774810314],[124,80,65,-0.5559594221413136],[124,80,66,-0.5551650784909725],[124,80,67,-0.5536443181335926],[124,80,68,-0.5528128109872341],[124,80,69,-0.5535379312932491],[124,80,70,-0.5553286522626877],[124,80,71,-0.5575743019580841],[124,80,72,-0.5605612844228745],[124,80,73,-0.563075702637434],[124,80,74,-0.5643343068659306],[124,80,75,-0.5640878677368164],[124,80,76,-0.5618016794323921],[124,80,77,-0.5576293431222439],[124,80,78,-0.5526084005832672],[124,80,79,-0.5472907461225986],[124,81,64,-0.5549865774810314],[124,81,65,-0.5559594221413136],[124,81,66,-0.5551650784909725],[124,81,67,-0.5536443181335926],[124,81,68,-0.5528128109872341],[124,81,69,-0.5535379312932491],[124,81,70,-0.5553286522626877],[124,81,71,-0.5575743019580841],[124,81,72,-0.5605612844228745],[124,81,73,-0.563075702637434],[124,81,74,-0.5643343068659306],[124,81,75,-0.5640878677368164],[124,81,76,-0.5618016794323921],[124,81,77,-0.5576293431222439],[124,81,78,-0.5526084005832672],[124,81,79,-0.5472907461225986],[124,82,64,-0.5549865774810314],[124,82,65,-0.5559594221413136],[124,82,66,-0.5551650784909725],[124,82,67,-0.5536443181335926],[124,82,68,-0.5528128109872341],[124,82,69,-0.5535379312932491],[124,82,70,-0.5553286522626877],[124,82,71,-0.5575743019580841],[124,82,72,-0.5605612844228745],[124,82,73,-0.563075702637434],[124,82,74,-0.5643343068659306],[124,82,75,-0.5640878677368164],[124,82,76,-0.5618016794323921],[124,82,77,-0.5576293431222439],[124,82,78,-0.5526084005832672],[124,82,79,-0.5472907461225986],[124,83,64,-0.5549865774810314],[124,83,65,-0.5559594221413136],[124,83,66,-0.5551650784909725],[124,83,67,-0.5536443181335926],[124,83,68,-0.5528128109872341],[124,83,69,-0.5535379312932491],[124,83,70,-0.5553286522626877],[124,83,71,-0.5575743019580841],[124,83,72,-0.5605612844228745],[124,83,73,-0.563075702637434],[124,83,74,-0.5643343068659306],[124,83,75,-0.5640878677368164],[124,83,76,-0.5618016794323921],[124,83,77,-0.5576293431222439],[124,83,78,-0.5526084005832672],[124,83,79,-0.5472907461225986],[124,84,64,-0.5549865774810314],[124,84,65,-0.5559594221413136],[124,84,66,-0.5551650784909725],[124,84,67,-0.5536443181335926],[124,84,68,-0.5528128109872341],[124,84,69,-0.5535379312932491],[124,84,70,-0.5553286522626877],[124,84,71,-0.5575743019580841],[124,84,72,-0.5605612844228745],[124,84,73,-0.563075702637434],[124,84,74,-0.5643343068659306],[124,84,75,-0.5640878677368164],[124,84,76,-0.5618016794323921],[124,84,77,-0.5576293431222439],[124,84,78,-0.5526084005832672],[124,84,79,-0.5472907461225986],[124,85,64,-0.5549865774810314],[124,85,65,-0.5559594221413136],[124,85,66,-0.5551650784909725],[124,85,67,-0.5536443181335926],[124,85,68,-0.5528128109872341],[124,85,69,-0.5535379312932491],[124,85,70,-0.5553286522626877],[124,85,71,-0.5575743019580841],[124,85,72,-0.5605612844228745],[124,85,73,-0.563075702637434],[124,85,74,-0.5643343068659306],[124,85,75,-0.5640878677368164],[124,85,76,-0.5618016794323921],[124,85,77,-0.5576293431222439],[124,85,78,-0.5526084005832672],[124,85,79,-0.5472907461225986],[124,86,64,-0.5549865774810314],[124,86,65,-0.5559594221413136],[124,86,66,-0.5551650784909725],[124,86,67,-0.5536443181335926],[124,86,68,-0.5528128109872341],[124,86,69,-0.5535379312932491],[124,86,70,-0.5553286522626877],[124,86,71,-0.5575743019580841],[124,86,72,-0.5605612844228745],[124,86,73,-0.563075702637434],[124,86,74,-0.5643343068659306],[124,86,75,-0.5640878677368164],[124,86,76,-0.5618016794323921],[124,86,77,-0.5576293431222439],[124,86,78,-0.5526084005832672],[124,86,79,-0.5472907461225986],[124,87,64,-0.5549865774810314],[124,87,65,-0.5559594221413136],[124,87,66,-0.5551650784909725],[124,87,67,-0.5536443181335926],[124,87,68,-0.5528128109872341],[124,87,69,-0.5535379312932491],[124,87,70,-0.5553286522626877],[124,87,71,-0.5575743019580841],[124,87,72,-0.5605612844228745],[124,87,73,-0.563075702637434],[124,87,74,-0.5643343068659306],[124,87,75,-0.5640878677368164],[124,87,76,-0.5618016794323921],[124,87,77,-0.5576293431222439],[124,87,78,-0.5526084005832672],[124,87,79,-0.5472907461225986],[124,88,64,-0.5549865774810314],[124,88,65,-0.5559594221413136],[124,88,66,-0.5551650784909725],[124,88,67,-0.5536443181335926],[124,88,68,-0.5528128109872341],[124,88,69,-0.5535379312932491],[124,88,70,-0.5553286522626877],[124,88,71,-0.5575743019580841],[124,88,72,-0.5605612844228745],[124,88,73,-0.563075702637434],[124,88,74,-0.5643343068659306],[124,88,75,-0.5640878677368164],[124,88,76,-0.5618016794323921],[124,88,77,-0.5576293431222439],[124,88,78,-0.5526084005832672],[124,88,79,-0.5472907461225986],[124,89,64,-0.5549865774810314],[124,89,65,-0.5559594221413136],[124,89,66,-0.5551650784909725],[124,89,67,-0.5536443181335926],[124,89,68,-0.5528128109872341],[124,89,69,-0.5535379312932491],[124,89,70,-0.5553286522626877],[124,89,71,-0.5575743019580841],[124,89,72,-0.5605612844228745],[124,89,73,-0.563075702637434],[124,89,74,-0.5643343068659306],[124,89,75,-0.5640878677368164],[124,89,76,-0.5618016794323921],[124,89,77,-0.5576293431222439],[124,89,78,-0.5526084005832672],[124,89,79,-0.5472907461225986],[124,90,64,-0.5549865774810314],[124,90,65,-0.5559594221413136],[124,90,66,-0.5551650784909725],[124,90,67,-0.5536443181335926],[124,90,68,-0.5528128109872341],[124,90,69,-0.5535379312932491],[124,90,70,-0.5553286522626877],[124,90,71,-0.5575743019580841],[124,90,72,-0.5605612844228745],[124,90,73,-0.563075702637434],[124,90,74,-0.5643343068659306],[124,90,75,-0.5640878677368164],[124,90,76,-0.5618016794323921],[124,90,77,-0.5576293431222439],[124,90,78,-0.5526084005832672],[124,90,79,-0.5472907461225986],[124,91,64,-0.5549865774810314],[124,91,65,-0.5559594221413136],[124,91,66,-0.5551650784909725],[124,91,67,-0.5536443181335926],[124,91,68,-0.5528128109872341],[124,91,69,-0.5535379312932491],[124,91,70,-0.5553286522626877],[124,91,71,-0.5575743019580841],[124,91,72,-0.5605612844228745],[124,91,73,-0.563075702637434],[124,91,74,-0.5643343068659306],[124,91,75,-0.5640878677368164],[124,91,76,-0.5618016794323921],[124,91,77,-0.5576293431222439],[124,91,78,-0.5526084005832672],[124,91,79,-0.5472907461225986],[124,92,64,-0.5549865774810314],[124,92,65,-0.5559594221413136],[124,92,66,-0.5551650784909725],[124,92,67,-0.5536443181335926],[124,92,68,-0.5528128109872341],[124,92,69,-0.5535379312932491],[124,92,70,-0.5553286522626877],[124,92,71,-0.5575743019580841],[124,92,72,-0.5605612844228745],[124,92,73,-0.563075702637434],[124,92,74,-0.5643343068659306],[124,92,75,-0.5640878677368164],[124,92,76,-0.5618016794323921],[124,92,77,-0.5576293431222439],[124,92,78,-0.5526084005832672],[124,92,79,-0.5472907461225986],[124,93,64,-0.5549865774810314],[124,93,65,-0.5559594221413136],[124,93,66,-0.5551650784909725],[124,93,67,-0.5536443181335926],[124,93,68,-0.5528128109872341],[124,93,69,-0.5535379312932491],[124,93,70,-0.5553286522626877],[124,93,71,-0.5575743019580841],[124,93,72,-0.5605612844228745],[124,93,73,-0.563075702637434],[124,93,74,-0.5643343068659306],[124,93,75,-0.5640878677368164],[124,93,76,-0.5618016794323921],[124,93,77,-0.5576293431222439],[124,93,78,-0.5526084005832672],[124,93,79,-0.5472907461225986],[124,94,64,-0.5549865774810314],[124,94,65,-0.5559594221413136],[124,94,66,-0.5551650784909725],[124,94,67,-0.5536443181335926],[124,94,68,-0.5528128109872341],[124,94,69,-0.5535379312932491],[124,94,70,-0.5553286522626877],[124,94,71,-0.5575743019580841],[124,94,72,-0.5605612844228745],[124,94,73,-0.563075702637434],[124,94,74,-0.5643343068659306],[124,94,75,-0.5640878677368164],[124,94,76,-0.5618016794323921],[124,94,77,-0.5576293431222439],[124,94,78,-0.5526084005832672],[124,94,79,-0.5472907461225986],[124,95,64,-0.5549865774810314],[124,95,65,-0.5559594221413136],[124,95,66,-0.5551650784909725],[124,95,67,-0.5536443181335926],[124,95,68,-0.5528128109872341],[124,95,69,-0.5535379312932491],[124,95,70,-0.5553286522626877],[124,95,71,-0.5575743019580841],[124,95,72,-0.5605612844228745],[124,95,73,-0.563075702637434],[124,95,74,-0.5643343068659306],[124,95,75,-0.5640878677368164],[124,95,76,-0.5618016794323921],[124,95,77,-0.5576293431222439],[124,95,78,-0.5526084005832672],[124,95,79,-0.5472907461225986],[124,96,64,-0.5549865774810314],[124,96,65,-0.5559594221413136],[124,96,66,-0.5551650784909725],[124,96,67,-0.5536443181335926],[124,96,68,-0.5528128109872341],[124,96,69,-0.5535379312932491],[124,96,70,-0.5553286522626877],[124,96,71,-0.5575743019580841],[124,96,72,-0.5605612844228745],[124,96,73,-0.563075702637434],[124,96,74,-0.5643343068659306],[124,96,75,-0.5640878677368164],[124,96,76,-0.5618016794323921],[124,96,77,-0.5576293431222439],[124,96,78,-0.5526084005832672],[124,96,79,-0.5472907461225986],[124,97,64,-0.5549865774810314],[124,97,65,-0.5559594221413136],[124,97,66,-0.5551650784909725],[124,97,67,-0.5536443181335926],[124,97,68,-0.5528128109872341],[124,97,69,-0.5535379312932491],[124,97,70,-0.5553286522626877],[124,97,71,-0.5575743019580841],[124,97,72,-0.5605612844228745],[124,97,73,-0.563075702637434],[124,97,74,-0.5643343068659306],[124,97,75,-0.5640878677368164],[124,97,76,-0.5618016794323921],[124,97,77,-0.5576293431222439],[124,97,78,-0.5526084005832672],[124,97,79,-0.5472907461225986],[124,98,64,-0.5549865774810314],[124,98,65,-0.5559594221413136],[124,98,66,-0.5551650784909725],[124,98,67,-0.5536443181335926],[124,98,68,-0.5528128109872341],[124,98,69,-0.5535379312932491],[124,98,70,-0.5553286522626877],[124,98,71,-0.5575743019580841],[124,98,72,-0.5605612844228745],[124,98,73,-0.563075702637434],[124,98,74,-0.5643343068659306],[124,98,75,-0.5640878677368164],[124,98,76,-0.5618016794323921],[124,98,77,-0.5576293431222439],[124,98,78,-0.5526084005832672],[124,98,79,-0.5472907461225986],[124,99,64,-0.5549865774810314],[124,99,65,-0.5559594221413136],[124,99,66,-0.5551650784909725],[124,99,67,-0.5536443181335926],[124,99,68,-0.5528128109872341],[124,99,69,-0.5535379312932491],[124,99,70,-0.5553286522626877],[124,99,71,-0.5575743019580841],[124,99,72,-0.5605612844228745],[124,99,73,-0.563075702637434],[124,99,74,-0.5643343068659306],[124,99,75,-0.5640878677368164],[124,99,76,-0.5618016794323921],[124,99,77,-0.5576293431222439],[124,99,78,-0.5526084005832672],[124,99,79,-0.5472907461225986],[124,100,64,-0.5549865774810314],[124,100,65,-0.5559594221413136],[124,100,66,-0.5551650784909725],[124,100,67,-0.5536443181335926],[124,100,68,-0.5528128109872341],[124,100,69,-0.5535379312932491],[124,100,70,-0.5553286522626877],[124,100,71,-0.5575743019580841],[124,100,72,-0.5605612844228745],[124,100,73,-0.563075702637434],[124,100,74,-0.5643343068659306],[124,100,75,-0.5640878677368164],[124,100,76,-0.5618016794323921],[124,100,77,-0.5576293431222439],[124,100,78,-0.5526084005832672],[124,100,79,-0.5472907461225986],[124,101,64,-0.5549865774810314],[124,101,65,-0.5559594221413136],[124,101,66,-0.5551650784909725],[124,101,67,-0.5536443181335926],[124,101,68,-0.5528128109872341],[124,101,69,-0.5535379312932491],[124,101,70,-0.5553286522626877],[124,101,71,-0.5575743019580841],[124,101,72,-0.5605612844228745],[124,101,73,-0.563075702637434],[124,101,74,-0.5643343068659306],[124,101,75,-0.5640878677368164],[124,101,76,-0.5618016794323921],[124,101,77,-0.5576293431222439],[124,101,78,-0.5526084005832672],[124,101,79,-0.5472907461225986],[124,102,64,-0.5549865774810314],[124,102,65,-0.5559594221413136],[124,102,66,-0.5551650784909725],[124,102,67,-0.5536443181335926],[124,102,68,-0.5528128109872341],[124,102,69,-0.5535379312932491],[124,102,70,-0.5553286522626877],[124,102,71,-0.5575743019580841],[124,102,72,-0.5605612844228745],[124,102,73,-0.563075702637434],[124,102,74,-0.5643343068659306],[124,102,75,-0.5640878677368164],[124,102,76,-0.5618016794323921],[124,102,77,-0.5576293431222439],[124,102,78,-0.5526084005832672],[124,102,79,-0.5472907461225986],[124,103,64,-0.5549865774810314],[124,103,65,-0.5559594221413136],[124,103,66,-0.5551650784909725],[124,103,67,-0.5536443181335926],[124,103,68,-0.5528128109872341],[124,103,69,-0.5535379312932491],[124,103,70,-0.5553286522626877],[124,103,71,-0.5575743019580841],[124,103,72,-0.5605612844228745],[124,103,73,-0.563075702637434],[124,103,74,-0.5643343068659306],[124,103,75,-0.5640878677368164],[124,103,76,-0.5618016794323921],[124,103,77,-0.5576293431222439],[124,103,78,-0.5526084005832672],[124,103,79,-0.5472907461225986],[124,104,64,-0.5549865774810314],[124,104,65,-0.5559594221413136],[124,104,66,-0.5551650784909725],[124,104,67,-0.5536443181335926],[124,104,68,-0.5528128109872341],[124,104,69,-0.5535379312932491],[124,104,70,-0.5553286522626877],[124,104,71,-0.5575743019580841],[124,104,72,-0.5605612844228745],[124,104,73,-0.563075702637434],[124,104,74,-0.5643343068659306],[124,104,75,-0.5640878677368164],[124,104,76,-0.5618016794323921],[124,104,77,-0.5576293431222439],[124,104,78,-0.5526084005832672],[124,104,79,-0.5472907461225986],[124,105,64,-0.5549865774810314],[124,105,65,-0.5559594221413136],[124,105,66,-0.5551650784909725],[124,105,67,-0.5536443181335926],[124,105,68,-0.5528128109872341],[124,105,69,-0.5535379312932491],[124,105,70,-0.5553286522626877],[124,105,71,-0.5575743019580841],[124,105,72,-0.5605612844228745],[124,105,73,-0.563075702637434],[124,105,74,-0.5643343068659306],[124,105,75,-0.5640878677368164],[124,105,76,-0.5618016794323921],[124,105,77,-0.5576293431222439],[124,105,78,-0.5526084005832672],[124,105,79,-0.5472907461225986],[124,106,64,-0.5549865774810314],[124,106,65,-0.5559594221413136],[124,106,66,-0.5551650784909725],[124,106,67,-0.5536443181335926],[124,106,68,-0.5528128109872341],[124,106,69,-0.5535379312932491],[124,106,70,-0.5553286522626877],[124,106,71,-0.5575743019580841],[124,106,72,-0.5605612844228745],[124,106,73,-0.563075702637434],[124,106,74,-0.5643343068659306],[124,106,75,-0.5640878677368164],[124,106,76,-0.5618016794323921],[124,106,77,-0.5576293431222439],[124,106,78,-0.5526084005832672],[124,106,79,-0.5472907461225986],[124,107,64,-0.5549865774810314],[124,107,65,-0.5559594221413136],[124,107,66,-0.5551650784909725],[124,107,67,-0.5536443181335926],[124,107,68,-0.5528128109872341],[124,107,69,-0.5535379312932491],[124,107,70,-0.5553286522626877],[124,107,71,-0.5575743019580841],[124,107,72,-0.5605612844228745],[124,107,73,-0.563075702637434],[124,107,74,-0.5643343068659306],[124,107,75,-0.5640878677368164],[124,107,76,-0.5618016794323921],[124,107,77,-0.5576293431222439],[124,107,78,-0.5526084005832672],[124,107,79,-0.5472907461225986],[124,108,64,-0.5549865774810314],[124,108,65,-0.5559594221413136],[124,108,66,-0.5551650784909725],[124,108,67,-0.5536443181335926],[124,108,68,-0.5528128109872341],[124,108,69,-0.5535379312932491],[124,108,70,-0.5553286522626877],[124,108,71,-0.5575743019580841],[124,108,72,-0.5605612844228745],[124,108,73,-0.563075702637434],[124,108,74,-0.5643343068659306],[124,108,75,-0.5640878677368164],[124,108,76,-0.5618016794323921],[124,108,77,-0.5576293431222439],[124,108,78,-0.5526084005832672],[124,108,79,-0.5472907461225986],[124,109,64,-0.5549865774810314],[124,109,65,-0.5559594221413136],[124,109,66,-0.5551650784909725],[124,109,67,-0.5536443181335926],[124,109,68,-0.5528128109872341],[124,109,69,-0.5535379312932491],[124,109,70,-0.5553286522626877],[124,109,71,-0.5575743019580841],[124,109,72,-0.5605612844228745],[124,109,73,-0.563075702637434],[124,109,74,-0.5643343068659306],[124,109,75,-0.5640878677368164],[124,109,76,-0.5618016794323921],[124,109,77,-0.5576293431222439],[124,109,78,-0.5526084005832672],[124,109,79,-0.5472907461225986],[124,110,64,-0.5549865774810314],[124,110,65,-0.5559594221413136],[124,110,66,-0.5551650784909725],[124,110,67,-0.5536443181335926],[124,110,68,-0.5528128109872341],[124,110,69,-0.5535379312932491],[124,110,70,-0.5553286522626877],[124,110,71,-0.5575743019580841],[124,110,72,-0.5605612844228745],[124,110,73,-0.563075702637434],[124,110,74,-0.5643343068659306],[124,110,75,-0.5640878677368164],[124,110,76,-0.5618016794323921],[124,110,77,-0.5576293431222439],[124,110,78,-0.5526084005832672],[124,110,79,-0.5472907461225986],[124,111,64,-0.5549865774810314],[124,111,65,-0.5559594221413136],[124,111,66,-0.5551650784909725],[124,111,67,-0.5536443181335926],[124,111,68,-0.5528128109872341],[124,111,69,-0.5535379312932491],[124,111,70,-0.5553286522626877],[124,111,71,-0.5575743019580841],[124,111,72,-0.5605612844228745],[124,111,73,-0.563075702637434],[124,111,74,-0.5643343068659306],[124,111,75,-0.5640878677368164],[124,111,76,-0.5618016794323921],[124,111,77,-0.5576293431222439],[124,111,78,-0.5526084005832672],[124,111,79,-0.5472907461225986],[124,112,64,-0.5549865774810314],[124,112,65,-0.5559594221413136],[124,112,66,-0.5551650784909725],[124,112,67,-0.5536443181335926],[124,112,68,-0.5528128109872341],[124,112,69,-0.5535379312932491],[124,112,70,-0.5553286522626877],[124,112,71,-0.5575743019580841],[124,112,72,-0.5605612844228745],[124,112,73,-0.563075702637434],[124,112,74,-0.5643343068659306],[124,112,75,-0.5640878677368164],[124,112,76,-0.5618016794323921],[124,112,77,-0.5576293431222439],[124,112,78,-0.5526084005832672],[124,112,79,-0.5472907461225986],[124,113,64,-0.5549865774810314],[124,113,65,-0.5559594221413136],[124,113,66,-0.5551650784909725],[124,113,67,-0.5536443181335926],[124,113,68,-0.5528128109872341],[124,113,69,-0.5535379312932491],[124,113,70,-0.5553286522626877],[124,113,71,-0.5575743019580841],[124,113,72,-0.5605612844228745],[124,113,73,-0.563075702637434],[124,113,74,-0.5643343068659306],[124,113,75,-0.5640878677368164],[124,113,76,-0.5618016794323921],[124,113,77,-0.5576293431222439],[124,113,78,-0.5526084005832672],[124,113,79,-0.5472907461225986],[124,114,64,-0.5549865774810314],[124,114,65,-0.5559594221413136],[124,114,66,-0.5551650784909725],[124,114,67,-0.5536443181335926],[124,114,68,-0.5528128109872341],[124,114,69,-0.5535379312932491],[124,114,70,-0.5553286522626877],[124,114,71,-0.5575743019580841],[124,114,72,-0.5605612844228745],[124,114,73,-0.563075702637434],[124,114,74,-0.5643343068659306],[124,114,75,-0.5640878677368164],[124,114,76,-0.5618016794323921],[124,114,77,-0.5576293431222439],[124,114,78,-0.5526084005832672],[124,114,79,-0.5472907461225986],[124,115,64,-0.5549865774810314],[124,115,65,-0.5559594221413136],[124,115,66,-0.5551650784909725],[124,115,67,-0.5536443181335926],[124,115,68,-0.5528128109872341],[124,115,69,-0.5535379312932491],[124,115,70,-0.5553286522626877],[124,115,71,-0.5575743019580841],[124,115,72,-0.5605612844228745],[124,115,73,-0.563075702637434],[124,115,74,-0.5643343068659306],[124,115,75,-0.5640878677368164],[124,115,76,-0.5618016794323921],[124,115,77,-0.5576293431222439],[124,115,78,-0.5526084005832672],[124,115,79,-0.5472907461225986],[124,116,64,-0.5549865774810314],[124,116,65,-0.5559594221413136],[124,116,66,-0.5551650784909725],[124,116,67,-0.5536443181335926],[124,116,68,-0.5528128109872341],[124,116,69,-0.5535379312932491],[124,116,70,-0.5553286522626877],[124,116,71,-0.5575743019580841],[124,116,72,-0.5605612844228745],[124,116,73,-0.563075702637434],[124,116,74,-0.5643343068659306],[124,116,75,-0.5640878677368164],[124,116,76,-0.5618016794323921],[124,116,77,-0.5576293431222439],[124,116,78,-0.5526084005832672],[124,116,79,-0.5472907461225986],[124,117,64,-0.5549865774810314],[124,117,65,-0.5559594221413136],[124,117,66,-0.5551650784909725],[124,117,67,-0.5536443181335926],[124,117,68,-0.5528128109872341],[124,117,69,-0.5535379312932491],[124,117,70,-0.5553286522626877],[124,117,71,-0.5575743019580841],[124,117,72,-0.5605612844228745],[124,117,73,-0.563075702637434],[124,117,74,-0.5643343068659306],[124,117,75,-0.5640878677368164],[124,117,76,-0.5618016794323921],[124,117,77,-0.5576293431222439],[124,117,78,-0.5526084005832672],[124,117,79,-0.5472907461225986],[124,118,64,-0.5549865774810314],[124,118,65,-0.5559594221413136],[124,118,66,-0.5551650784909725],[124,118,67,-0.5536443181335926],[124,118,68,-0.5528128109872341],[124,118,69,-0.5535379312932491],[124,118,70,-0.5553286522626877],[124,118,71,-0.5575743019580841],[124,118,72,-0.5605612844228745],[124,118,73,-0.563075702637434],[124,118,74,-0.5643343068659306],[124,118,75,-0.5640878677368164],[124,118,76,-0.5618016794323921],[124,118,77,-0.5576293431222439],[124,118,78,-0.5526084005832672],[124,118,79,-0.5472907461225986],[124,119,64,-0.5549865774810314],[124,119,65,-0.5559594221413136],[124,119,66,-0.5551650784909725],[124,119,67,-0.5536443181335926],[124,119,68,-0.5528128109872341],[124,119,69,-0.5535379312932491],[124,119,70,-0.5553286522626877],[124,119,71,-0.5575743019580841],[124,119,72,-0.5605612844228745],[124,119,73,-0.563075702637434],[124,119,74,-0.5643343068659306],[124,119,75,-0.5640878677368164],[124,119,76,-0.5618016794323921],[124,119,77,-0.5576293431222439],[124,119,78,-0.5526084005832672],[124,119,79,-0.5472907461225986],[124,120,64,-0.5549865774810314],[124,120,65,-0.5559594221413136],[124,120,66,-0.5551650784909725],[124,120,67,-0.5536443181335926],[124,120,68,-0.5528128109872341],[124,120,69,-0.5535379312932491],[124,120,70,-0.5553286522626877],[124,120,71,-0.5575743019580841],[124,120,72,-0.5605612844228745],[124,120,73,-0.563075702637434],[124,120,74,-0.5643343068659306],[124,120,75,-0.5640878677368164],[124,120,76,-0.5618016794323921],[124,120,77,-0.5576293431222439],[124,120,78,-0.5526084005832672],[124,120,79,-0.5472907461225986],[124,121,64,-0.5549865774810314],[124,121,65,-0.5559594221413136],[124,121,66,-0.5551650784909725],[124,121,67,-0.5536443181335926],[124,121,68,-0.5528128109872341],[124,121,69,-0.5535379312932491],[124,121,70,-0.5553286522626877],[124,121,71,-0.5575743019580841],[124,121,72,-0.5605612844228745],[124,121,73,-0.563075702637434],[124,121,74,-0.5643343068659306],[124,121,75,-0.5640878677368164],[124,121,76,-0.5618016794323921],[124,121,77,-0.5576293431222439],[124,121,78,-0.5526084005832672],[124,121,79,-0.5472907461225986],[124,122,64,-0.5549865774810314],[124,122,65,-0.5559594221413136],[124,122,66,-0.5551650784909725],[124,122,67,-0.5536443181335926],[124,122,68,-0.5528128109872341],[124,122,69,-0.5535379312932491],[124,122,70,-0.5553286522626877],[124,122,71,-0.5575743019580841],[124,122,72,-0.5605612844228745],[124,122,73,-0.563075702637434],[124,122,74,-0.5643343068659306],[124,122,75,-0.5640878677368164],[124,122,76,-0.5618016794323921],[124,122,77,-0.5576293431222439],[124,122,78,-0.5526084005832672],[124,122,79,-0.5472907461225986],[124,123,64,-0.5549865774810314],[124,123,65,-0.5559594221413136],[124,123,66,-0.5551650784909725],[124,123,67,-0.5536443181335926],[124,123,68,-0.5528128109872341],[124,123,69,-0.5535379312932491],[124,123,70,-0.5553286522626877],[124,123,71,-0.5575743019580841],[124,123,72,-0.5605612844228745],[124,123,73,-0.563075702637434],[124,123,74,-0.5643343068659306],[124,123,75,-0.5640878677368164],[124,123,76,-0.5618016794323921],[124,123,77,-0.5576293431222439],[124,123,78,-0.5526084005832672],[124,123,79,-0.5472907461225986],[124,124,64,-0.5549865774810314],[124,124,65,-0.5559594221413136],[124,124,66,-0.5551650784909725],[124,124,67,-0.5536443181335926],[124,124,68,-0.5528128109872341],[124,124,69,-0.5535379312932491],[124,124,70,-0.5553286522626877],[124,124,71,-0.5575743019580841],[124,124,72,-0.5605612844228745],[124,124,73,-0.563075702637434],[124,124,74,-0.5643343068659306],[124,124,75,-0.5640878677368164],[124,124,76,-0.5618016794323921],[124,124,77,-0.5576293431222439],[124,124,78,-0.5526084005832672],[124,124,79,-0.5472907461225986],[124,125,64,-0.5549865774810314],[124,125,65,-0.5559594221413136],[124,125,66,-0.5551650784909725],[124,125,67,-0.5536443181335926],[124,125,68,-0.5528128109872341],[124,125,69,-0.5535379312932491],[124,125,70,-0.5553286522626877],[124,125,71,-0.5575743019580841],[124,125,72,-0.5605612844228745],[124,125,73,-0.563075702637434],[124,125,74,-0.5643343068659306],[124,125,75,-0.5640878677368164],[124,125,76,-0.5618016794323921],[124,125,77,-0.5576293431222439],[124,125,78,-0.5526084005832672],[124,125,79,-0.5472907461225986],[124,126,64,-0.5549865774810314],[124,126,65,-0.5559594221413136],[124,126,66,-0.5551650784909725],[124,126,67,-0.5536443181335926],[124,126,68,-0.5528128109872341],[124,126,69,-0.5535379312932491],[124,126,70,-0.5553286522626877],[124,126,71,-0.5575743019580841],[124,126,72,-0.5605612844228745],[124,126,73,-0.563075702637434],[124,126,74,-0.5643343068659306],[124,126,75,-0.5640878677368164],[124,126,76,-0.5618016794323921],[124,126,77,-0.5576293431222439],[124,126,78,-0.5526084005832672],[124,126,79,-0.5472907461225986],[124,127,64,-0.5549865774810314],[124,127,65,-0.5559594221413136],[124,127,66,-0.5551650784909725],[124,127,67,-0.5536443181335926],[124,127,68,-0.5528128109872341],[124,127,69,-0.5535379312932491],[124,127,70,-0.5553286522626877],[124,127,71,-0.5575743019580841],[124,127,72,-0.5605612844228745],[124,127,73,-0.563075702637434],[124,127,74,-0.5643343068659306],[124,127,75,-0.5640878677368164],[124,127,76,-0.5618016794323921],[124,127,77,-0.5576293431222439],[124,127,78,-0.5526084005832672],[124,127,79,-0.5472907461225986],[124,128,64,-0.5549865774810314],[124,128,65,-0.5559594221413136],[124,128,66,-0.5551650784909725],[124,128,67,-0.5536443181335926],[124,128,68,-0.5528128109872341],[124,128,69,-0.5535379312932491],[124,128,70,-0.5553286522626877],[124,128,71,-0.5575743019580841],[124,128,72,-0.5605612844228745],[124,128,73,-0.563075702637434],[124,128,74,-0.5643343068659306],[124,128,75,-0.5640878677368164],[124,128,76,-0.5618016794323921],[124,128,77,-0.5576293431222439],[124,128,78,-0.5526084005832672],[124,128,79,-0.5472907461225986],[124,129,64,-0.5549865774810314],[124,129,65,-0.5559594221413136],[124,129,66,-0.5551650784909725],[124,129,67,-0.5536443181335926],[124,129,68,-0.5528128109872341],[124,129,69,-0.5535379312932491],[124,129,70,-0.5553286522626877],[124,129,71,-0.5575743019580841],[124,129,72,-0.5605612844228745],[124,129,73,-0.563075702637434],[124,129,74,-0.5643343068659306],[124,129,75,-0.5640878677368164],[124,129,76,-0.5618016794323921],[124,129,77,-0.5576293431222439],[124,129,78,-0.5526084005832672],[124,129,79,-0.5472907461225986],[124,130,64,-0.5549865774810314],[124,130,65,-0.5559594221413136],[124,130,66,-0.5551650784909725],[124,130,67,-0.5536443181335926],[124,130,68,-0.5528128109872341],[124,130,69,-0.5535379312932491],[124,130,70,-0.5553286522626877],[124,130,71,-0.5575743019580841],[124,130,72,-0.5605612844228745],[124,130,73,-0.563075702637434],[124,130,74,-0.5643343068659306],[124,130,75,-0.5640878677368164],[124,130,76,-0.5618016794323921],[124,130,77,-0.5576293431222439],[124,130,78,-0.5526084005832672],[124,130,79,-0.5472907461225986],[124,131,64,-0.5549865774810314],[124,131,65,-0.5559594221413136],[124,131,66,-0.5551650784909725],[124,131,67,-0.5536443181335926],[124,131,68,-0.5528128109872341],[124,131,69,-0.5535379312932491],[124,131,70,-0.5553286522626877],[124,131,71,-0.5575743019580841],[124,131,72,-0.5605612844228745],[124,131,73,-0.563075702637434],[124,131,74,-0.5643343068659306],[124,131,75,-0.5640878677368164],[124,131,76,-0.5618016794323921],[124,131,77,-0.5576293431222439],[124,131,78,-0.5526084005832672],[124,131,79,-0.5472907461225986],[124,132,64,-0.5549865774810314],[124,132,65,-0.5559594221413136],[124,132,66,-0.5551650784909725],[124,132,67,-0.5536443181335926],[124,132,68,-0.5528128109872341],[124,132,69,-0.5535379312932491],[124,132,70,-0.5553286522626877],[124,132,71,-0.5575743019580841],[124,132,72,-0.5605612844228745],[124,132,73,-0.563075702637434],[124,132,74,-0.5643343068659306],[124,132,75,-0.5640878677368164],[124,132,76,-0.5618016794323921],[124,132,77,-0.5576293431222439],[124,132,78,-0.5526084005832672],[124,132,79,-0.5472907461225986],[124,133,64,-0.5549865774810314],[124,133,65,-0.5559594221413136],[124,133,66,-0.5551650784909725],[124,133,67,-0.5536443181335926],[124,133,68,-0.5528128109872341],[124,133,69,-0.5535379312932491],[124,133,70,-0.5553286522626877],[124,133,71,-0.5575743019580841],[124,133,72,-0.5605612844228745],[124,133,73,-0.563075702637434],[124,133,74,-0.5643343068659306],[124,133,75,-0.5640878677368164],[124,133,76,-0.5618016794323921],[124,133,77,-0.5576293431222439],[124,133,78,-0.5526084005832672],[124,133,79,-0.5472907461225986],[124,134,64,-0.5549865774810314],[124,134,65,-0.5559594221413136],[124,134,66,-0.5551650784909725],[124,134,67,-0.5536443181335926],[124,134,68,-0.5528128109872341],[124,134,69,-0.5535379312932491],[124,134,70,-0.5553286522626877],[124,134,71,-0.5575743019580841],[124,134,72,-0.5605612844228745],[124,134,73,-0.563075702637434],[124,134,74,-0.5643343068659306],[124,134,75,-0.5640878677368164],[124,134,76,-0.5618016794323921],[124,134,77,-0.5576293431222439],[124,134,78,-0.5526084005832672],[124,134,79,-0.5472907461225986],[124,135,64,-0.5549865774810314],[124,135,65,-0.5559594221413136],[124,135,66,-0.5551650784909725],[124,135,67,-0.5536443181335926],[124,135,68,-0.5528128109872341],[124,135,69,-0.5535379312932491],[124,135,70,-0.5553286522626877],[124,135,71,-0.5575743019580841],[124,135,72,-0.5605612844228745],[124,135,73,-0.563075702637434],[124,135,74,-0.5643343068659306],[124,135,75,-0.5640878677368164],[124,135,76,-0.5618016794323921],[124,135,77,-0.5576293431222439],[124,135,78,-0.5526084005832672],[124,135,79,-0.5472907461225986],[124,136,64,-0.5549865774810314],[124,136,65,-0.5559594221413136],[124,136,66,-0.5551650784909725],[124,136,67,-0.5536443181335926],[124,136,68,-0.5528128109872341],[124,136,69,-0.5535379312932491],[124,136,70,-0.5553286522626877],[124,136,71,-0.5575743019580841],[124,136,72,-0.5605612844228745],[124,136,73,-0.563075702637434],[124,136,74,-0.5643343068659306],[124,136,75,-0.5640878677368164],[124,136,76,-0.5618016794323921],[124,136,77,-0.5576293431222439],[124,136,78,-0.5526084005832672],[124,136,79,-0.5472907461225986],[124,137,64,-0.5549865774810314],[124,137,65,-0.5559594221413136],[124,137,66,-0.5551650784909725],[124,137,67,-0.5536443181335926],[124,137,68,-0.5528128109872341],[124,137,69,-0.5535379312932491],[124,137,70,-0.5553286522626877],[124,137,71,-0.5575743019580841],[124,137,72,-0.5605612844228745],[124,137,73,-0.563075702637434],[124,137,74,-0.5643343068659306],[124,137,75,-0.5640878677368164],[124,137,76,-0.5618016794323921],[124,137,77,-0.5576293431222439],[124,137,78,-0.5526084005832672],[124,137,79,-0.5472907461225986],[124,138,64,-0.5549865774810314],[124,138,65,-0.5559594221413136],[124,138,66,-0.5551650784909725],[124,138,67,-0.5536443181335926],[124,138,68,-0.5528128109872341],[124,138,69,-0.5535379312932491],[124,138,70,-0.5553286522626877],[124,138,71,-0.5575743019580841],[124,138,72,-0.5605612844228745],[124,138,73,-0.563075702637434],[124,138,74,-0.5643343068659306],[124,138,75,-0.5640878677368164],[124,138,76,-0.5618016794323921],[124,138,77,-0.5576293431222439],[124,138,78,-0.5526084005832672],[124,138,79,-0.5472907461225986],[124,139,64,-0.5549865774810314],[124,139,65,-0.5559594221413136],[124,139,66,-0.5551650784909725],[124,139,67,-0.5536443181335926],[124,139,68,-0.5528128109872341],[124,139,69,-0.5535379312932491],[124,139,70,-0.5553286522626877],[124,139,71,-0.5575743019580841],[124,139,72,-0.5605612844228745],[124,139,73,-0.563075702637434],[124,139,74,-0.5643343068659306],[124,139,75,-0.5640878677368164],[124,139,76,-0.5618016794323921],[124,139,77,-0.5576293431222439],[124,139,78,-0.5526084005832672],[124,139,79,-0.5472907461225986],[124,140,64,-0.5549865774810314],[124,140,65,-0.5559594221413136],[124,140,66,-0.5551650784909725],[124,140,67,-0.5536443181335926],[124,140,68,-0.5528128109872341],[124,140,69,-0.5535379312932491],[124,140,70,-0.5553286522626877],[124,140,71,-0.5575743019580841],[124,140,72,-0.5605612844228745],[124,140,73,-0.563075702637434],[124,140,74,-0.5643343068659306],[124,140,75,-0.5640878677368164],[124,140,76,-0.5618016794323921],[124,140,77,-0.5576293431222439],[124,140,78,-0.5526084005832672],[124,140,79,-0.5472907461225986],[124,141,64,-0.5549865774810314],[124,141,65,-0.5559594221413136],[124,141,66,-0.5551650784909725],[124,141,67,-0.5536443181335926],[124,141,68,-0.5528128109872341],[124,141,69,-0.5535379312932491],[124,141,70,-0.5553286522626877],[124,141,71,-0.5575743019580841],[124,141,72,-0.5605612844228745],[124,141,73,-0.563075702637434],[124,141,74,-0.5643343068659306],[124,141,75,-0.5640878677368164],[124,141,76,-0.5618016794323921],[124,141,77,-0.5576293431222439],[124,141,78,-0.5526084005832672],[124,141,79,-0.5472907461225986],[124,142,64,-0.5549865774810314],[124,142,65,-0.5559594221413136],[124,142,66,-0.5551650784909725],[124,142,67,-0.5536443181335926],[124,142,68,-0.5528128109872341],[124,142,69,-0.5535379312932491],[124,142,70,-0.5553286522626877],[124,142,71,-0.5575743019580841],[124,142,72,-0.5605612844228745],[124,142,73,-0.563075702637434],[124,142,74,-0.5643343068659306],[124,142,75,-0.5640878677368164],[124,142,76,-0.5618016794323921],[124,142,77,-0.5576293431222439],[124,142,78,-0.5526084005832672],[124,142,79,-0.5472907461225986],[124,143,64,-0.5549865774810314],[124,143,65,-0.5559594221413136],[124,143,66,-0.5551650784909725],[124,143,67,-0.5536443181335926],[124,143,68,-0.5528128109872341],[124,143,69,-0.5535379312932491],[124,143,70,-0.5553286522626877],[124,143,71,-0.5575743019580841],[124,143,72,-0.5605612844228745],[124,143,73,-0.563075702637434],[124,143,74,-0.5643343068659306],[124,143,75,-0.5640878677368164],[124,143,76,-0.5618016794323921],[124,143,77,-0.5576293431222439],[124,143,78,-0.5526084005832672],[124,143,79,-0.5472907461225986],[124,144,64,-0.5549865774810314],[124,144,65,-0.5559594221413136],[124,144,66,-0.5551650784909725],[124,144,67,-0.5536443181335926],[124,144,68,-0.5528128109872341],[124,144,69,-0.5535379312932491],[124,144,70,-0.5553286522626877],[124,144,71,-0.5575743019580841],[124,144,72,-0.5605612844228745],[124,144,73,-0.563075702637434],[124,144,74,-0.5643343068659306],[124,144,75,-0.5640878677368164],[124,144,76,-0.5618016794323921],[124,144,77,-0.5576293431222439],[124,144,78,-0.5526084005832672],[124,144,79,-0.5472907461225986],[124,145,64,-0.5549865774810314],[124,145,65,-0.5559594221413136],[124,145,66,-0.5551650784909725],[124,145,67,-0.5536443181335926],[124,145,68,-0.5528128109872341],[124,145,69,-0.5535379312932491],[124,145,70,-0.5553286522626877],[124,145,71,-0.5575743019580841],[124,145,72,-0.5605612844228745],[124,145,73,-0.563075702637434],[124,145,74,-0.5643343068659306],[124,145,75,-0.5640878677368164],[124,145,76,-0.5618016794323921],[124,145,77,-0.5576293431222439],[124,145,78,-0.5526084005832672],[124,145,79,-0.5472907461225986],[124,146,64,-0.5549865774810314],[124,146,65,-0.5559594221413136],[124,146,66,-0.5551650784909725],[124,146,67,-0.5536443181335926],[124,146,68,-0.5528128109872341],[124,146,69,-0.5535379312932491],[124,146,70,-0.5553286522626877],[124,146,71,-0.5575743019580841],[124,146,72,-0.5605612844228745],[124,146,73,-0.563075702637434],[124,146,74,-0.5643343068659306],[124,146,75,-0.5640878677368164],[124,146,76,-0.5618016794323921],[124,146,77,-0.5576293431222439],[124,146,78,-0.5526084005832672],[124,146,79,-0.5472907461225986],[124,147,64,-0.5549865774810314],[124,147,65,-0.5559594221413136],[124,147,66,-0.5551650784909725],[124,147,67,-0.5536443181335926],[124,147,68,-0.5528128109872341],[124,147,69,-0.5535379312932491],[124,147,70,-0.5553286522626877],[124,147,71,-0.5575743019580841],[124,147,72,-0.5605612844228745],[124,147,73,-0.563075702637434],[124,147,74,-0.5643343068659306],[124,147,75,-0.5640878677368164],[124,147,76,-0.5618016794323921],[124,147,77,-0.5576293431222439],[124,147,78,-0.5526084005832672],[124,147,79,-0.5472907461225986],[124,148,64,-0.5549865774810314],[124,148,65,-0.5559594221413136],[124,148,66,-0.5551650784909725],[124,148,67,-0.5536443181335926],[124,148,68,-0.5528128109872341],[124,148,69,-0.5535379312932491],[124,148,70,-0.5553286522626877],[124,148,71,-0.5575743019580841],[124,148,72,-0.5605612844228745],[124,148,73,-0.563075702637434],[124,148,74,-0.5643343068659306],[124,148,75,-0.5640878677368164],[124,148,76,-0.5618016794323921],[124,148,77,-0.5576293431222439],[124,148,78,-0.5526084005832672],[124,148,79,-0.5472907461225986],[124,149,64,-0.5549865774810314],[124,149,65,-0.5559594221413136],[124,149,66,-0.5551650784909725],[124,149,67,-0.5536443181335926],[124,149,68,-0.5528128109872341],[124,149,69,-0.5535379312932491],[124,149,70,-0.5553286522626877],[124,149,71,-0.5575743019580841],[124,149,72,-0.5605612844228745],[124,149,73,-0.563075702637434],[124,149,74,-0.5643343068659306],[124,149,75,-0.5640878677368164],[124,149,76,-0.5618016794323921],[124,149,77,-0.5576293431222439],[124,149,78,-0.5526084005832672],[124,149,79,-0.5472907461225986],[124,150,64,-0.5549865774810314],[124,150,65,-0.5559594221413136],[124,150,66,-0.5551650784909725],[124,150,67,-0.5536443181335926],[124,150,68,-0.5528128109872341],[124,150,69,-0.5535379312932491],[124,150,70,-0.5553286522626877],[124,150,71,-0.5575743019580841],[124,150,72,-0.5605612844228745],[124,150,73,-0.563075702637434],[124,150,74,-0.5643343068659306],[124,150,75,-0.5640878677368164],[124,150,76,-0.5618016794323921],[124,150,77,-0.5576293431222439],[124,150,78,-0.5526084005832672],[124,150,79,-0.5472907461225986],[124,151,64,-0.5549865774810314],[124,151,65,-0.5559594221413136],[124,151,66,-0.5551650784909725],[124,151,67,-0.5536443181335926],[124,151,68,-0.5528128109872341],[124,151,69,-0.5535379312932491],[124,151,70,-0.5553286522626877],[124,151,71,-0.5575743019580841],[124,151,72,-0.5605612844228745],[124,151,73,-0.563075702637434],[124,151,74,-0.5643343068659306],[124,151,75,-0.5640878677368164],[124,151,76,-0.5618016794323921],[124,151,77,-0.5576293431222439],[124,151,78,-0.5526084005832672],[124,151,79,-0.5472907461225986],[124,152,64,-0.5549865774810314],[124,152,65,-0.5559594221413136],[124,152,66,-0.5551650784909725],[124,152,67,-0.5536443181335926],[124,152,68,-0.5528128109872341],[124,152,69,-0.5535379312932491],[124,152,70,-0.5553286522626877],[124,152,71,-0.5575743019580841],[124,152,72,-0.5605612844228745],[124,152,73,-0.563075702637434],[124,152,74,-0.5643343068659306],[124,152,75,-0.5640878677368164],[124,152,76,-0.5618016794323921],[124,152,77,-0.5576293431222439],[124,152,78,-0.5526084005832672],[124,152,79,-0.5472907461225986],[124,153,64,-0.5549865774810314],[124,153,65,-0.5559594221413136],[124,153,66,-0.5551650784909725],[124,153,67,-0.5536443181335926],[124,153,68,-0.5528128109872341],[124,153,69,-0.5535379312932491],[124,153,70,-0.5553286522626877],[124,153,71,-0.5575743019580841],[124,153,72,-0.5605612844228745],[124,153,73,-0.563075702637434],[124,153,74,-0.5643343068659306],[124,153,75,-0.5640878677368164],[124,153,76,-0.5618016794323921],[124,153,77,-0.5576293431222439],[124,153,78,-0.5526084005832672],[124,153,79,-0.5472907461225986],[124,154,64,-0.5549865774810314],[124,154,65,-0.5559594221413136],[124,154,66,-0.5551650784909725],[124,154,67,-0.5536443181335926],[124,154,68,-0.5528128109872341],[124,154,69,-0.5535379312932491],[124,154,70,-0.5553286522626877],[124,154,71,-0.5575743019580841],[124,154,72,-0.5605612844228745],[124,154,73,-0.563075702637434],[124,154,74,-0.5643343068659306],[124,154,75,-0.5640878677368164],[124,154,76,-0.5618016794323921],[124,154,77,-0.5576293431222439],[124,154,78,-0.5526084005832672],[124,154,79,-0.5472907461225986],[124,155,64,-0.5549865774810314],[124,155,65,-0.5559594221413136],[124,155,66,-0.5551650784909725],[124,155,67,-0.5536443181335926],[124,155,68,-0.5528128109872341],[124,155,69,-0.5535379312932491],[124,155,70,-0.5553286522626877],[124,155,71,-0.5575743019580841],[124,155,72,-0.5605612844228745],[124,155,73,-0.563075702637434],[124,155,74,-0.5643343068659306],[124,155,75,-0.5640878677368164],[124,155,76,-0.5618016794323921],[124,155,77,-0.5576293431222439],[124,155,78,-0.5526084005832672],[124,155,79,-0.5472907461225986],[124,156,64,-0.5549865774810314],[124,156,65,-0.5559594221413136],[124,156,66,-0.5551650784909725],[124,156,67,-0.5536443181335926],[124,156,68,-0.5528128109872341],[124,156,69,-0.5535379312932491],[124,156,70,-0.5553286522626877],[124,156,71,-0.5575743019580841],[124,156,72,-0.5605612844228745],[124,156,73,-0.563075702637434],[124,156,74,-0.5643343068659306],[124,156,75,-0.5640878677368164],[124,156,76,-0.5618016794323921],[124,156,77,-0.5576293431222439],[124,156,78,-0.5526084005832672],[124,156,79,-0.5472907461225986],[124,157,64,-0.5549865774810314],[124,157,65,-0.5559594221413136],[124,157,66,-0.5551650784909725],[124,157,67,-0.5536443181335926],[124,157,68,-0.5528128109872341],[124,157,69,-0.5535379312932491],[124,157,70,-0.5553286522626877],[124,157,71,-0.5575743019580841],[124,157,72,-0.5605612844228745],[124,157,73,-0.563075702637434],[124,157,74,-0.5643343068659306],[124,157,75,-0.5640878677368164],[124,157,76,-0.5618016794323921],[124,157,77,-0.5576293431222439],[124,157,78,-0.5526084005832672],[124,157,79,-0.5472907461225986],[124,158,64,-0.5549865774810314],[124,158,65,-0.5559594221413136],[124,158,66,-0.5551650784909725],[124,158,67,-0.5536443181335926],[124,158,68,-0.5528128109872341],[124,158,69,-0.5535379312932491],[124,158,70,-0.5553286522626877],[124,158,71,-0.5575743019580841],[124,158,72,-0.5605612844228745],[124,158,73,-0.563075702637434],[124,158,74,-0.5643343068659306],[124,158,75,-0.5640878677368164],[124,158,76,-0.5618016794323921],[124,158,77,-0.5576293431222439],[124,158,78,-0.5526084005832672],[124,158,79,-0.5472907461225986],[124,159,64,-0.5549865774810314],[124,159,65,-0.5559594221413136],[124,159,66,-0.5551650784909725],[124,159,67,-0.5536443181335926],[124,159,68,-0.5528128109872341],[124,159,69,-0.5535379312932491],[124,159,70,-0.5553286522626877],[124,159,71,-0.5575743019580841],[124,159,72,-0.5605612844228745],[124,159,73,-0.563075702637434],[124,159,74,-0.5643343068659306],[124,159,75,-0.5640878677368164],[124,159,76,-0.5618016794323921],[124,159,77,-0.5576293431222439],[124,159,78,-0.5526084005832672],[124,159,79,-0.5472907461225986],[124,160,64,-0.5549865774810314],[124,160,65,-0.5559594221413136],[124,160,66,-0.5551650784909725],[124,160,67,-0.5536443181335926],[124,160,68,-0.5528128109872341],[124,160,69,-0.5535379312932491],[124,160,70,-0.5553286522626877],[124,160,71,-0.5575743019580841],[124,160,72,-0.5605612844228745],[124,160,73,-0.563075702637434],[124,160,74,-0.5643343068659306],[124,160,75,-0.5640878677368164],[124,160,76,-0.5618016794323921],[124,160,77,-0.5576293431222439],[124,160,78,-0.5526084005832672],[124,160,79,-0.5472907461225986],[124,161,64,-0.5549865774810314],[124,161,65,-0.5559594221413136],[124,161,66,-0.5551650784909725],[124,161,67,-0.5536443181335926],[124,161,68,-0.5528128109872341],[124,161,69,-0.5535379312932491],[124,161,70,-0.5553286522626877],[124,161,71,-0.5575743019580841],[124,161,72,-0.5605612844228745],[124,161,73,-0.563075702637434],[124,161,74,-0.5643343068659306],[124,161,75,-0.5640878677368164],[124,161,76,-0.5618016794323921],[124,161,77,-0.5576293431222439],[124,161,78,-0.5526084005832672],[124,161,79,-0.5472907461225986],[124,162,64,-0.5549865774810314],[124,162,65,-0.5559594221413136],[124,162,66,-0.5551650784909725],[124,162,67,-0.5536443181335926],[124,162,68,-0.5528128109872341],[124,162,69,-0.5535379312932491],[124,162,70,-0.5553286522626877],[124,162,71,-0.5575743019580841],[124,162,72,-0.5605612844228745],[124,162,73,-0.563075702637434],[124,162,74,-0.5643343068659306],[124,162,75,-0.5640878677368164],[124,162,76,-0.5618016794323921],[124,162,77,-0.5576293431222439],[124,162,78,-0.5526084005832672],[124,162,79,-0.5472907461225986],[124,163,64,-0.5549865774810314],[124,163,65,-0.5559594221413136],[124,163,66,-0.5551650784909725],[124,163,67,-0.5536443181335926],[124,163,68,-0.5528128109872341],[124,163,69,-0.5535379312932491],[124,163,70,-0.5553286522626877],[124,163,71,-0.5575743019580841],[124,163,72,-0.5605612844228745],[124,163,73,-0.563075702637434],[124,163,74,-0.5643343068659306],[124,163,75,-0.5640878677368164],[124,163,76,-0.5618016794323921],[124,163,77,-0.5576293431222439],[124,163,78,-0.5526084005832672],[124,163,79,-0.5472907461225986],[124,164,64,-0.5549865774810314],[124,164,65,-0.5559594221413136],[124,164,66,-0.5551650784909725],[124,164,67,-0.5536443181335926],[124,164,68,-0.5528128109872341],[124,164,69,-0.5535379312932491],[124,164,70,-0.5553286522626877],[124,164,71,-0.5575743019580841],[124,164,72,-0.5605612844228745],[124,164,73,-0.563075702637434],[124,164,74,-0.5643343068659306],[124,164,75,-0.5640878677368164],[124,164,76,-0.5618016794323921],[124,164,77,-0.5576293431222439],[124,164,78,-0.5526084005832672],[124,164,79,-0.5472907461225986],[124,165,64,-0.5549865774810314],[124,165,65,-0.5559594221413136],[124,165,66,-0.5551650784909725],[124,165,67,-0.5536443181335926],[124,165,68,-0.5528128109872341],[124,165,69,-0.5535379312932491],[124,165,70,-0.5553286522626877],[124,165,71,-0.5575743019580841],[124,165,72,-0.5605612844228745],[124,165,73,-0.563075702637434],[124,165,74,-0.5643343068659306],[124,165,75,-0.5640878677368164],[124,165,76,-0.5618016794323921],[124,165,77,-0.5576293431222439],[124,165,78,-0.5526084005832672],[124,165,79,-0.5472907461225986],[124,166,64,-0.5549865774810314],[124,166,65,-0.5559594221413136],[124,166,66,-0.5551650784909725],[124,166,67,-0.5536443181335926],[124,166,68,-0.5528128109872341],[124,166,69,-0.5535379312932491],[124,166,70,-0.5553286522626877],[124,166,71,-0.5575743019580841],[124,166,72,-0.5605612844228745],[124,166,73,-0.563075702637434],[124,166,74,-0.5643343068659306],[124,166,75,-0.5640878677368164],[124,166,76,-0.5618016794323921],[124,166,77,-0.5576293431222439],[124,166,78,-0.5526084005832672],[124,166,79,-0.5472907461225986],[124,167,64,-0.5549865774810314],[124,167,65,-0.5559594221413136],[124,167,66,-0.5551650784909725],[124,167,67,-0.5536443181335926],[124,167,68,-0.5528128109872341],[124,167,69,-0.5535379312932491],[124,167,70,-0.5553286522626877],[124,167,71,-0.5575743019580841],[124,167,72,-0.5605612844228745],[124,167,73,-0.563075702637434],[124,167,74,-0.5643343068659306],[124,167,75,-0.5640878677368164],[124,167,76,-0.5618016794323921],[124,167,77,-0.5576293431222439],[124,167,78,-0.5526084005832672],[124,167,79,-0.5472907461225986],[124,168,64,-0.5549865774810314],[124,168,65,-0.5559594221413136],[124,168,66,-0.5551650784909725],[124,168,67,-0.5536443181335926],[124,168,68,-0.5528128109872341],[124,168,69,-0.5535379312932491],[124,168,70,-0.5553286522626877],[124,168,71,-0.5575743019580841],[124,168,72,-0.5605612844228745],[124,168,73,-0.563075702637434],[124,168,74,-0.5643343068659306],[124,168,75,-0.5640878677368164],[124,168,76,-0.5618016794323921],[124,168,77,-0.5576293431222439],[124,168,78,-0.5526084005832672],[124,168,79,-0.5472907461225986],[124,169,64,-0.5549865774810314],[124,169,65,-0.5559594221413136],[124,169,66,-0.5551650784909725],[124,169,67,-0.5536443181335926],[124,169,68,-0.5528128109872341],[124,169,69,-0.5535379312932491],[124,169,70,-0.5553286522626877],[124,169,71,-0.5575743019580841],[124,169,72,-0.5605612844228745],[124,169,73,-0.563075702637434],[124,169,74,-0.5643343068659306],[124,169,75,-0.5640878677368164],[124,169,76,-0.5618016794323921],[124,169,77,-0.5576293431222439],[124,169,78,-0.5526084005832672],[124,169,79,-0.5472907461225986],[124,170,64,-0.5549865774810314],[124,170,65,-0.5559594221413136],[124,170,66,-0.5551650784909725],[124,170,67,-0.5536443181335926],[124,170,68,-0.5528128109872341],[124,170,69,-0.5535379312932491],[124,170,70,-0.5553286522626877],[124,170,71,-0.5575743019580841],[124,170,72,-0.5605612844228745],[124,170,73,-0.563075702637434],[124,170,74,-0.5643343068659306],[124,170,75,-0.5640878677368164],[124,170,76,-0.5618016794323921],[124,170,77,-0.5576293431222439],[124,170,78,-0.5526084005832672],[124,170,79,-0.5472907461225986],[124,171,64,-0.5549865774810314],[124,171,65,-0.5559594221413136],[124,171,66,-0.5551650784909725],[124,171,67,-0.5536443181335926],[124,171,68,-0.5528128109872341],[124,171,69,-0.5535379312932491],[124,171,70,-0.5553286522626877],[124,171,71,-0.5575743019580841],[124,171,72,-0.5605612844228745],[124,171,73,-0.563075702637434],[124,171,74,-0.5643343068659306],[124,171,75,-0.5640878677368164],[124,171,76,-0.5618016794323921],[124,171,77,-0.5576293431222439],[124,171,78,-0.5526084005832672],[124,171,79,-0.5472907461225986],[124,172,64,-0.5549865774810314],[124,172,65,-0.5559594221413136],[124,172,66,-0.5551650784909725],[124,172,67,-0.5536443181335926],[124,172,68,-0.5528128109872341],[124,172,69,-0.5535379312932491],[124,172,70,-0.5553286522626877],[124,172,71,-0.5575743019580841],[124,172,72,-0.5605612844228745],[124,172,73,-0.563075702637434],[124,172,74,-0.5643343068659306],[124,172,75,-0.5640878677368164],[124,172,76,-0.5618016794323921],[124,172,77,-0.5576293431222439],[124,172,78,-0.5526084005832672],[124,172,79,-0.5472907461225986],[124,173,64,-0.5549865774810314],[124,173,65,-0.5559594221413136],[124,173,66,-0.5551650784909725],[124,173,67,-0.5536443181335926],[124,173,68,-0.5528128109872341],[124,173,69,-0.5535379312932491],[124,173,70,-0.5553286522626877],[124,173,71,-0.5575743019580841],[124,173,72,-0.5605612844228745],[124,173,73,-0.563075702637434],[124,173,74,-0.5643343068659306],[124,173,75,-0.5640878677368164],[124,173,76,-0.5618016794323921],[124,173,77,-0.5576293431222439],[124,173,78,-0.5526084005832672],[124,173,79,-0.5472907461225986],[124,174,64,-0.5549865774810314],[124,174,65,-0.5559594221413136],[124,174,66,-0.5551650784909725],[124,174,67,-0.5536443181335926],[124,174,68,-0.5528128109872341],[124,174,69,-0.5535379312932491],[124,174,70,-0.5553286522626877],[124,174,71,-0.5575743019580841],[124,174,72,-0.5605612844228745],[124,174,73,-0.563075702637434],[124,174,74,-0.5643343068659306],[124,174,75,-0.5640878677368164],[124,174,76,-0.5618016794323921],[124,174,77,-0.5576293431222439],[124,174,78,-0.5526084005832672],[124,174,79,-0.5472907461225986],[124,175,64,-0.5549865774810314],[124,175,65,-0.5559594221413136],[124,175,66,-0.5551650784909725],[124,175,67,-0.5536443181335926],[124,175,68,-0.5528128109872341],[124,175,69,-0.5535379312932491],[124,175,70,-0.5553286522626877],[124,175,71,-0.5575743019580841],[124,175,72,-0.5605612844228745],[124,175,73,-0.563075702637434],[124,175,74,-0.5643343068659306],[124,175,75,-0.5640878677368164],[124,175,76,-0.5618016794323921],[124,175,77,-0.5576293431222439],[124,175,78,-0.5526084005832672],[124,175,79,-0.5472907461225986],[124,176,64,-0.5549865774810314],[124,176,65,-0.5559594221413136],[124,176,66,-0.5551650784909725],[124,176,67,-0.5536443181335926],[124,176,68,-0.5528128109872341],[124,176,69,-0.5535379312932491],[124,176,70,-0.5553286522626877],[124,176,71,-0.5575743019580841],[124,176,72,-0.5605612844228745],[124,176,73,-0.563075702637434],[124,176,74,-0.5643343068659306],[124,176,75,-0.5640878677368164],[124,176,76,-0.5618016794323921],[124,176,77,-0.5576293431222439],[124,176,78,-0.5526084005832672],[124,176,79,-0.5472907461225986],[124,177,64,-0.5549865774810314],[124,177,65,-0.5559594221413136],[124,177,66,-0.5551650784909725],[124,177,67,-0.5536443181335926],[124,177,68,-0.5528128109872341],[124,177,69,-0.5535379312932491],[124,177,70,-0.5553286522626877],[124,177,71,-0.5575743019580841],[124,177,72,-0.5605612844228745],[124,177,73,-0.563075702637434],[124,177,74,-0.5643343068659306],[124,177,75,-0.5640878677368164],[124,177,76,-0.5618016794323921],[124,177,77,-0.5576293431222439],[124,177,78,-0.5526084005832672],[124,177,79,-0.5472907461225986],[124,178,64,-0.5549865774810314],[124,178,65,-0.5559594221413136],[124,178,66,-0.5551650784909725],[124,178,67,-0.5536443181335926],[124,178,68,-0.5528128109872341],[124,178,69,-0.5535379312932491],[124,178,70,-0.5553286522626877],[124,178,71,-0.5575743019580841],[124,178,72,-0.5605612844228745],[124,178,73,-0.563075702637434],[124,178,74,-0.5643343068659306],[124,178,75,-0.5640878677368164],[124,178,76,-0.5618016794323921],[124,178,77,-0.5576293431222439],[124,178,78,-0.5526084005832672],[124,178,79,-0.5472907461225986],[124,179,64,-0.5549865774810314],[124,179,65,-0.5559594221413136],[124,179,66,-0.5551650784909725],[124,179,67,-0.5536443181335926],[124,179,68,-0.5528128109872341],[124,179,69,-0.5535379312932491],[124,179,70,-0.5553286522626877],[124,179,71,-0.5575743019580841],[124,179,72,-0.5605612844228745],[124,179,73,-0.563075702637434],[124,179,74,-0.5643343068659306],[124,179,75,-0.5640878677368164],[124,179,76,-0.5618016794323921],[124,179,77,-0.5576293431222439],[124,179,78,-0.5526084005832672],[124,179,79,-0.5472907461225986],[124,180,64,-0.5549865774810314],[124,180,65,-0.5559594221413136],[124,180,66,-0.5551650784909725],[124,180,67,-0.5536443181335926],[124,180,68,-0.5528128109872341],[124,180,69,-0.5535379312932491],[124,180,70,-0.5553286522626877],[124,180,71,-0.5575743019580841],[124,180,72,-0.5605612844228745],[124,180,73,-0.563075702637434],[124,180,74,-0.5643343068659306],[124,180,75,-0.5640878677368164],[124,180,76,-0.5618016794323921],[124,180,77,-0.5576293431222439],[124,180,78,-0.5526084005832672],[124,180,79,-0.5472907461225986],[124,181,64,-0.5549865774810314],[124,181,65,-0.5559594221413136],[124,181,66,-0.5551650784909725],[124,181,67,-0.5536443181335926],[124,181,68,-0.5528128109872341],[124,181,69,-0.5535379312932491],[124,181,70,-0.5553286522626877],[124,181,71,-0.5575743019580841],[124,181,72,-0.5605612844228745],[124,181,73,-0.563075702637434],[124,181,74,-0.5643343068659306],[124,181,75,-0.5640878677368164],[124,181,76,-0.5618016794323921],[124,181,77,-0.5576293431222439],[124,181,78,-0.5526084005832672],[124,181,79,-0.5472907461225986],[124,182,64,-0.5549865774810314],[124,182,65,-0.5559594221413136],[124,182,66,-0.5551650784909725],[124,182,67,-0.5536443181335926],[124,182,68,-0.5528128109872341],[124,182,69,-0.5535379312932491],[124,182,70,-0.5553286522626877],[124,182,71,-0.5575743019580841],[124,182,72,-0.5605612844228745],[124,182,73,-0.563075702637434],[124,182,74,-0.5643343068659306],[124,182,75,-0.5640878677368164],[124,182,76,-0.5618016794323921],[124,182,77,-0.5576293431222439],[124,182,78,-0.5526084005832672],[124,182,79,-0.5472907461225986],[124,183,64,-0.5549865774810314],[124,183,65,-0.5559594221413136],[124,183,66,-0.5551650784909725],[124,183,67,-0.5536443181335926],[124,183,68,-0.5528128109872341],[124,183,69,-0.5535379312932491],[124,183,70,-0.5553286522626877],[124,183,71,-0.5575743019580841],[124,183,72,-0.5605612844228745],[124,183,73,-0.563075702637434],[124,183,74,-0.5643343068659306],[124,183,75,-0.5640878677368164],[124,183,76,-0.5618016794323921],[124,183,77,-0.5576293431222439],[124,183,78,-0.5526084005832672],[124,183,79,-0.5472907461225986],[124,184,64,-0.5549865774810314],[124,184,65,-0.5559594221413136],[124,184,66,-0.5551650784909725],[124,184,67,-0.5536443181335926],[124,184,68,-0.5528128109872341],[124,184,69,-0.5535379312932491],[124,184,70,-0.5553286522626877],[124,184,71,-0.5575743019580841],[124,184,72,-0.5605612844228745],[124,184,73,-0.563075702637434],[124,184,74,-0.5643343068659306],[124,184,75,-0.5640878677368164],[124,184,76,-0.5618016794323921],[124,184,77,-0.5576293431222439],[124,184,78,-0.5526084005832672],[124,184,79,-0.5472907461225986],[124,185,64,-0.5549865774810314],[124,185,65,-0.5559594221413136],[124,185,66,-0.5551650784909725],[124,185,67,-0.5536443181335926],[124,185,68,-0.5528128109872341],[124,185,69,-0.5535379312932491],[124,185,70,-0.5553286522626877],[124,185,71,-0.5575743019580841],[124,185,72,-0.5605612844228745],[124,185,73,-0.563075702637434],[124,185,74,-0.5643343068659306],[124,185,75,-0.5640878677368164],[124,185,76,-0.5618016794323921],[124,185,77,-0.5576293431222439],[124,185,78,-0.5526084005832672],[124,185,79,-0.5472907461225986],[124,186,64,-0.5549865774810314],[124,186,65,-0.5559594221413136],[124,186,66,-0.5551650784909725],[124,186,67,-0.5536443181335926],[124,186,68,-0.5528128109872341],[124,186,69,-0.5535379312932491],[124,186,70,-0.5553286522626877],[124,186,71,-0.5575743019580841],[124,186,72,-0.5605612844228745],[124,186,73,-0.563075702637434],[124,186,74,-0.5643343068659306],[124,186,75,-0.5640878677368164],[124,186,76,-0.5618016794323921],[124,186,77,-0.5576293431222439],[124,186,78,-0.5526084005832672],[124,186,79,-0.5472907461225986],[124,187,64,-0.5549865774810314],[124,187,65,-0.5559594221413136],[124,187,66,-0.5551650784909725],[124,187,67,-0.5536443181335926],[124,187,68,-0.5528128109872341],[124,187,69,-0.5535379312932491],[124,187,70,-0.5553286522626877],[124,187,71,-0.5575743019580841],[124,187,72,-0.5605612844228745],[124,187,73,-0.563075702637434],[124,187,74,-0.5643343068659306],[124,187,75,-0.5640878677368164],[124,187,76,-0.5618016794323921],[124,187,77,-0.5576293431222439],[124,187,78,-0.5526084005832672],[124,187,79,-0.5472907461225986],[124,188,64,-0.5549865774810314],[124,188,65,-0.5559594221413136],[124,188,66,-0.5551650784909725],[124,188,67,-0.5536443181335926],[124,188,68,-0.5528128109872341],[124,188,69,-0.5535379312932491],[124,188,70,-0.5553286522626877],[124,188,71,-0.5575743019580841],[124,188,72,-0.5605612844228745],[124,188,73,-0.563075702637434],[124,188,74,-0.5643343068659306],[124,188,75,-0.5640878677368164],[124,188,76,-0.5618016794323921],[124,188,77,-0.5576293431222439],[124,188,78,-0.5526084005832672],[124,188,79,-0.5472907461225986],[124,189,64,-0.5549865774810314],[124,189,65,-0.5559594221413136],[124,189,66,-0.5551650784909725],[124,189,67,-0.5536443181335926],[124,189,68,-0.5528128109872341],[124,189,69,-0.5535379312932491],[124,189,70,-0.5553286522626877],[124,189,71,-0.5575743019580841],[124,189,72,-0.5605612844228745],[124,189,73,-0.563075702637434],[124,189,74,-0.5643343068659306],[124,189,75,-0.5640878677368164],[124,189,76,-0.5618016794323921],[124,189,77,-0.5576293431222439],[124,189,78,-0.5526084005832672],[124,189,79,-0.5472907461225986],[124,190,64,-0.5549865774810314],[124,190,65,-0.5559594221413136],[124,190,66,-0.5551650784909725],[124,190,67,-0.5536443181335926],[124,190,68,-0.5528128109872341],[124,190,69,-0.5535379312932491],[124,190,70,-0.5553286522626877],[124,190,71,-0.5575743019580841],[124,190,72,-0.5605612844228745],[124,190,73,-0.563075702637434],[124,190,74,-0.5643343068659306],[124,190,75,-0.5640878677368164],[124,190,76,-0.5618016794323921],[124,190,77,-0.5576293431222439],[124,190,78,-0.5526084005832672],[124,190,79,-0.5472907461225986],[124,191,64,-0.5549865774810314],[124,191,65,-0.5559594221413136],[124,191,66,-0.5551650784909725],[124,191,67,-0.5536443181335926],[124,191,68,-0.5528128109872341],[124,191,69,-0.5535379312932491],[124,191,70,-0.5553286522626877],[124,191,71,-0.5575743019580841],[124,191,72,-0.5605612844228745],[124,191,73,-0.563075702637434],[124,191,74,-0.5643343068659306],[124,191,75,-0.5640878677368164],[124,191,76,-0.5618016794323921],[124,191,77,-0.5576293431222439],[124,191,78,-0.5526084005832672],[124,191,79,-0.5472907461225986],[124,192,64,-0.5549865774810314],[124,192,65,-0.5559594221413136],[124,192,66,-0.5551650784909725],[124,192,67,-0.5536443181335926],[124,192,68,-0.5528128109872341],[124,192,69,-0.5535379312932491],[124,192,70,-0.5553286522626877],[124,192,71,-0.5575743019580841],[124,192,72,-0.5605612844228745],[124,192,73,-0.563075702637434],[124,192,74,-0.5643343068659306],[124,192,75,-0.5640878677368164],[124,192,76,-0.5618016794323921],[124,192,77,-0.5576293431222439],[124,192,78,-0.5526084005832672],[124,192,79,-0.5472907461225986],[124,193,64,-0.5549865774810314],[124,193,65,-0.5559594221413136],[124,193,66,-0.5551650784909725],[124,193,67,-0.5536443181335926],[124,193,68,-0.5528128109872341],[124,193,69,-0.5535379312932491],[124,193,70,-0.5553286522626877],[124,193,71,-0.5575743019580841],[124,193,72,-0.5605612844228745],[124,193,73,-0.563075702637434],[124,193,74,-0.5643343068659306],[124,193,75,-0.5640878677368164],[124,193,76,-0.5618016794323921],[124,193,77,-0.5576293431222439],[124,193,78,-0.5526084005832672],[124,193,79,-0.5472907461225986],[124,194,64,-0.5549865774810314],[124,194,65,-0.5559594221413136],[124,194,66,-0.5551650784909725],[124,194,67,-0.5536443181335926],[124,194,68,-0.5528128109872341],[124,194,69,-0.5535379312932491],[124,194,70,-0.5553286522626877],[124,194,71,-0.5575743019580841],[124,194,72,-0.5605612844228745],[124,194,73,-0.563075702637434],[124,194,74,-0.5643343068659306],[124,194,75,-0.5640878677368164],[124,194,76,-0.5618016794323921],[124,194,77,-0.5576293431222439],[124,194,78,-0.5526084005832672],[124,194,79,-0.5472907461225986],[124,195,64,-0.5549865774810314],[124,195,65,-0.5559594221413136],[124,195,66,-0.5551650784909725],[124,195,67,-0.5536443181335926],[124,195,68,-0.5528128109872341],[124,195,69,-0.5535379312932491],[124,195,70,-0.5553286522626877],[124,195,71,-0.5575743019580841],[124,195,72,-0.5605612844228745],[124,195,73,-0.563075702637434],[124,195,74,-0.5643343068659306],[124,195,75,-0.5640878677368164],[124,195,76,-0.5618016794323921],[124,195,77,-0.5576293431222439],[124,195,78,-0.5526084005832672],[124,195,79,-0.5472907461225986],[124,196,64,-0.5549865774810314],[124,196,65,-0.5559594221413136],[124,196,66,-0.5551650784909725],[124,196,67,-0.5536443181335926],[124,196,68,-0.5528128109872341],[124,196,69,-0.5535379312932491],[124,196,70,-0.5553286522626877],[124,196,71,-0.5575743019580841],[124,196,72,-0.5605612844228745],[124,196,73,-0.563075702637434],[124,196,74,-0.5643343068659306],[124,196,75,-0.5640878677368164],[124,196,76,-0.5618016794323921],[124,196,77,-0.5576293431222439],[124,196,78,-0.5526084005832672],[124,196,79,-0.5472907461225986],[124,197,64,-0.5549865774810314],[124,197,65,-0.5559594221413136],[124,197,66,-0.5551650784909725],[124,197,67,-0.5536443181335926],[124,197,68,-0.5528128109872341],[124,197,69,-0.5535379312932491],[124,197,70,-0.5553286522626877],[124,197,71,-0.5575743019580841],[124,197,72,-0.5605612844228745],[124,197,73,-0.563075702637434],[124,197,74,-0.5643343068659306],[124,197,75,-0.5640878677368164],[124,197,76,-0.5618016794323921],[124,197,77,-0.5576293431222439],[124,197,78,-0.5526084005832672],[124,197,79,-0.5472907461225986],[124,198,64,-0.5549865774810314],[124,198,65,-0.5559594221413136],[124,198,66,-0.5551650784909725],[124,198,67,-0.5536443181335926],[124,198,68,-0.5528128109872341],[124,198,69,-0.5535379312932491],[124,198,70,-0.5553286522626877],[124,198,71,-0.5575743019580841],[124,198,72,-0.5605612844228745],[124,198,73,-0.563075702637434],[124,198,74,-0.5643343068659306],[124,198,75,-0.5640878677368164],[124,198,76,-0.5618016794323921],[124,198,77,-0.5576293431222439],[124,198,78,-0.5526084005832672],[124,198,79,-0.5472907461225986],[124,199,64,-0.5549865774810314],[124,199,65,-0.5559594221413136],[124,199,66,-0.5551650784909725],[124,199,67,-0.5536443181335926],[124,199,68,-0.5528128109872341],[124,199,69,-0.5535379312932491],[124,199,70,-0.5553286522626877],[124,199,71,-0.5575743019580841],[124,199,72,-0.5605612844228745],[124,199,73,-0.563075702637434],[124,199,74,-0.5643343068659306],[124,199,75,-0.5640878677368164],[124,199,76,-0.5618016794323921],[124,199,77,-0.5576293431222439],[124,199,78,-0.5526084005832672],[124,199,79,-0.5472907461225986],[124,200,64,-0.5549865774810314],[124,200,65,-0.5559594221413136],[124,200,66,-0.5551650784909725],[124,200,67,-0.5536443181335926],[124,200,68,-0.5528128109872341],[124,200,69,-0.5535379312932491],[124,200,70,-0.5553286522626877],[124,200,71,-0.5575743019580841],[124,200,72,-0.5605612844228745],[124,200,73,-0.563075702637434],[124,200,74,-0.5643343068659306],[124,200,75,-0.5640878677368164],[124,200,76,-0.5618016794323921],[124,200,77,-0.5576293431222439],[124,200,78,-0.5526084005832672],[124,200,79,-0.5472907461225986],[124,201,64,-0.5549865774810314],[124,201,65,-0.5559594221413136],[124,201,66,-0.5551650784909725],[124,201,67,-0.5536443181335926],[124,201,68,-0.5528128109872341],[124,201,69,-0.5535379312932491],[124,201,70,-0.5553286522626877],[124,201,71,-0.5575743019580841],[124,201,72,-0.5605612844228745],[124,201,73,-0.563075702637434],[124,201,74,-0.5643343068659306],[124,201,75,-0.5640878677368164],[124,201,76,-0.5618016794323921],[124,201,77,-0.5576293431222439],[124,201,78,-0.5526084005832672],[124,201,79,-0.5472907461225986],[124,202,64,-0.5549865774810314],[124,202,65,-0.5559594221413136],[124,202,66,-0.5551650784909725],[124,202,67,-0.5536443181335926],[124,202,68,-0.5528128109872341],[124,202,69,-0.5535379312932491],[124,202,70,-0.5553286522626877],[124,202,71,-0.5575743019580841],[124,202,72,-0.5605612844228745],[124,202,73,-0.563075702637434],[124,202,74,-0.5643343068659306],[124,202,75,-0.5640878677368164],[124,202,76,-0.5618016794323921],[124,202,77,-0.5576293431222439],[124,202,78,-0.5526084005832672],[124,202,79,-0.5472907461225986],[124,203,64,-0.5549865774810314],[124,203,65,-0.5559594221413136],[124,203,66,-0.5551650784909725],[124,203,67,-0.5536443181335926],[124,203,68,-0.5528128109872341],[124,203,69,-0.5535379312932491],[124,203,70,-0.5553286522626877],[124,203,71,-0.5575743019580841],[124,203,72,-0.5605612844228745],[124,203,73,-0.563075702637434],[124,203,74,-0.5643343068659306],[124,203,75,-0.5640878677368164],[124,203,76,-0.5618016794323921],[124,203,77,-0.5576293431222439],[124,203,78,-0.5526084005832672],[124,203,79,-0.5472907461225986],[124,204,64,-0.5549865774810314],[124,204,65,-0.5559594221413136],[124,204,66,-0.5551650784909725],[124,204,67,-0.5536443181335926],[124,204,68,-0.5528128109872341],[124,204,69,-0.5535379312932491],[124,204,70,-0.5553286522626877],[124,204,71,-0.5575743019580841],[124,204,72,-0.5605612844228745],[124,204,73,-0.563075702637434],[124,204,74,-0.5643343068659306],[124,204,75,-0.5640878677368164],[124,204,76,-0.5618016794323921],[124,204,77,-0.5576293431222439],[124,204,78,-0.5526084005832672],[124,204,79,-0.5472907461225986],[124,205,64,-0.5549865774810314],[124,205,65,-0.5559594221413136],[124,205,66,-0.5551650784909725],[124,205,67,-0.5536443181335926],[124,205,68,-0.5528128109872341],[124,205,69,-0.5535379312932491],[124,205,70,-0.5553286522626877],[124,205,71,-0.5575743019580841],[124,205,72,-0.5605612844228745],[124,205,73,-0.563075702637434],[124,205,74,-0.5643343068659306],[124,205,75,-0.5640878677368164],[124,205,76,-0.5618016794323921],[124,205,77,-0.5576293431222439],[124,205,78,-0.5526084005832672],[124,205,79,-0.5472907461225986],[124,206,64,-0.5549865774810314],[124,206,65,-0.5559594221413136],[124,206,66,-0.5551650784909725],[124,206,67,-0.5536443181335926],[124,206,68,-0.5528128109872341],[124,206,69,-0.5535379312932491],[124,206,70,-0.5553286522626877],[124,206,71,-0.5575743019580841],[124,206,72,-0.5605612844228745],[124,206,73,-0.563075702637434],[124,206,74,-0.5643343068659306],[124,206,75,-0.5640878677368164],[124,206,76,-0.5618016794323921],[124,206,77,-0.5576293431222439],[124,206,78,-0.5526084005832672],[124,206,79,-0.5472907461225986],[124,207,64,-0.5549865774810314],[124,207,65,-0.5559594221413136],[124,207,66,-0.5551650784909725],[124,207,67,-0.5536443181335926],[124,207,68,-0.5528128109872341],[124,207,69,-0.5535379312932491],[124,207,70,-0.5553286522626877],[124,207,71,-0.5575743019580841],[124,207,72,-0.5605612844228745],[124,207,73,-0.563075702637434],[124,207,74,-0.5643343068659306],[124,207,75,-0.5640878677368164],[124,207,76,-0.5618016794323921],[124,207,77,-0.5576293431222439],[124,207,78,-0.5526084005832672],[124,207,79,-0.5472907461225986],[124,208,64,-0.5549865774810314],[124,208,65,-0.5559594221413136],[124,208,66,-0.5551650784909725],[124,208,67,-0.5536443181335926],[124,208,68,-0.5528128109872341],[124,208,69,-0.5535379312932491],[124,208,70,-0.5553286522626877],[124,208,71,-0.5575743019580841],[124,208,72,-0.5605612844228745],[124,208,73,-0.563075702637434],[124,208,74,-0.5643343068659306],[124,208,75,-0.5640878677368164],[124,208,76,-0.5618016794323921],[124,208,77,-0.5576293431222439],[124,208,78,-0.5526084005832672],[124,208,79,-0.5472907461225986],[124,209,64,-0.5549865774810314],[124,209,65,-0.5559594221413136],[124,209,66,-0.5551650784909725],[124,209,67,-0.5536443181335926],[124,209,68,-0.5528128109872341],[124,209,69,-0.5535379312932491],[124,209,70,-0.5553286522626877],[124,209,71,-0.5575743019580841],[124,209,72,-0.5605612844228745],[124,209,73,-0.563075702637434],[124,209,74,-0.5643343068659306],[124,209,75,-0.5640878677368164],[124,209,76,-0.5618016794323921],[124,209,77,-0.5576293431222439],[124,209,78,-0.5526084005832672],[124,209,79,-0.5472907461225986],[124,210,64,-0.5549865774810314],[124,210,65,-0.5559594221413136],[124,210,66,-0.5551650784909725],[124,210,67,-0.5536443181335926],[124,210,68,-0.5528128109872341],[124,210,69,-0.5535379312932491],[124,210,70,-0.5553286522626877],[124,210,71,-0.5575743019580841],[124,210,72,-0.5605612844228745],[124,210,73,-0.563075702637434],[124,210,74,-0.5643343068659306],[124,210,75,-0.5640878677368164],[124,210,76,-0.5618016794323921],[124,210,77,-0.5576293431222439],[124,210,78,-0.5526084005832672],[124,210,79,-0.5472907461225986],[124,211,64,-0.5549865774810314],[124,211,65,-0.5559594221413136],[124,211,66,-0.5551650784909725],[124,211,67,-0.5536443181335926],[124,211,68,-0.5528128109872341],[124,211,69,-0.5535379312932491],[124,211,70,-0.5553286522626877],[124,211,71,-0.5575743019580841],[124,211,72,-0.5605612844228745],[124,211,73,-0.563075702637434],[124,211,74,-0.5643343068659306],[124,211,75,-0.5640878677368164],[124,211,76,-0.5618016794323921],[124,211,77,-0.5576293431222439],[124,211,78,-0.5526084005832672],[124,211,79,-0.5472907461225986],[124,212,64,-0.5549865774810314],[124,212,65,-0.5559594221413136],[124,212,66,-0.5551650784909725],[124,212,67,-0.5536443181335926],[124,212,68,-0.5528128109872341],[124,212,69,-0.5535379312932491],[124,212,70,-0.5553286522626877],[124,212,71,-0.5575743019580841],[124,212,72,-0.5605612844228745],[124,212,73,-0.563075702637434],[124,212,74,-0.5643343068659306],[124,212,75,-0.5640878677368164],[124,212,76,-0.5618016794323921],[124,212,77,-0.5576293431222439],[124,212,78,-0.5526084005832672],[124,212,79,-0.5472907461225986],[124,213,64,-0.5549865774810314],[124,213,65,-0.5559594221413136],[124,213,66,-0.5551650784909725],[124,213,67,-0.5536443181335926],[124,213,68,-0.5528128109872341],[124,213,69,-0.5535379312932491],[124,213,70,-0.5553286522626877],[124,213,71,-0.5575743019580841],[124,213,72,-0.5605612844228745],[124,213,73,-0.563075702637434],[124,213,74,-0.5643343068659306],[124,213,75,-0.5640878677368164],[124,213,76,-0.5618016794323921],[124,213,77,-0.5576293431222439],[124,213,78,-0.5526084005832672],[124,213,79,-0.5472907461225986],[124,214,64,-0.5549865774810314],[124,214,65,-0.5559594221413136],[124,214,66,-0.5551650784909725],[124,214,67,-0.5536443181335926],[124,214,68,-0.5528128109872341],[124,214,69,-0.5535379312932491],[124,214,70,-0.5553286522626877],[124,214,71,-0.5575743019580841],[124,214,72,-0.5605612844228745],[124,214,73,-0.563075702637434],[124,214,74,-0.5643343068659306],[124,214,75,-0.5640878677368164],[124,214,76,-0.5618016794323921],[124,214,77,-0.5576293431222439],[124,214,78,-0.5526084005832672],[124,214,79,-0.5472907461225986],[124,215,64,-0.5549865774810314],[124,215,65,-0.5559594221413136],[124,215,66,-0.5551650784909725],[124,215,67,-0.5536443181335926],[124,215,68,-0.5528128109872341],[124,215,69,-0.5535379312932491],[124,215,70,-0.5553286522626877],[124,215,71,-0.5575743019580841],[124,215,72,-0.5605612844228745],[124,215,73,-0.563075702637434],[124,215,74,-0.5643343068659306],[124,215,75,-0.5640878677368164],[124,215,76,-0.5618016794323921],[124,215,77,-0.5576293431222439],[124,215,78,-0.5526084005832672],[124,215,79,-0.5472907461225986],[124,216,64,-0.5549865774810314],[124,216,65,-0.5559594221413136],[124,216,66,-0.5551650784909725],[124,216,67,-0.5536443181335926],[124,216,68,-0.5528128109872341],[124,216,69,-0.5535379312932491],[124,216,70,-0.5553286522626877],[124,216,71,-0.5575743019580841],[124,216,72,-0.5605612844228745],[124,216,73,-0.563075702637434],[124,216,74,-0.5643343068659306],[124,216,75,-0.5640878677368164],[124,216,76,-0.5618016794323921],[124,216,77,-0.5576293431222439],[124,216,78,-0.5526084005832672],[124,216,79,-0.5472907461225986],[124,217,64,-0.5549865774810314],[124,217,65,-0.5559594221413136],[124,217,66,-0.5551650784909725],[124,217,67,-0.5536443181335926],[124,217,68,-0.5528128109872341],[124,217,69,-0.5535379312932491],[124,217,70,-0.5553286522626877],[124,217,71,-0.5575743019580841],[124,217,72,-0.5605612844228745],[124,217,73,-0.563075702637434],[124,217,74,-0.5643343068659306],[124,217,75,-0.5640878677368164],[124,217,76,-0.5618016794323921],[124,217,77,-0.5576293431222439],[124,217,78,-0.5526084005832672],[124,217,79,-0.5472907461225986],[124,218,64,-0.5549865774810314],[124,218,65,-0.5559594221413136],[124,218,66,-0.5551650784909725],[124,218,67,-0.5536443181335926],[124,218,68,-0.5528128109872341],[124,218,69,-0.5535379312932491],[124,218,70,-0.5553286522626877],[124,218,71,-0.5575743019580841],[124,218,72,-0.5605612844228745],[124,218,73,-0.563075702637434],[124,218,74,-0.5643343068659306],[124,218,75,-0.5640878677368164],[124,218,76,-0.5618016794323921],[124,218,77,-0.5576293431222439],[124,218,78,-0.5526084005832672],[124,218,79,-0.5472907461225986],[124,219,64,-0.5549865774810314],[124,219,65,-0.5559594221413136],[124,219,66,-0.5551650784909725],[124,219,67,-0.5536443181335926],[124,219,68,-0.5528128109872341],[124,219,69,-0.5535379312932491],[124,219,70,-0.5553286522626877],[124,219,71,-0.5575743019580841],[124,219,72,-0.5605612844228745],[124,219,73,-0.563075702637434],[124,219,74,-0.5643343068659306],[124,219,75,-0.5640878677368164],[124,219,76,-0.5618016794323921],[124,219,77,-0.5576293431222439],[124,219,78,-0.5526084005832672],[124,219,79,-0.5472907461225986],[124,220,64,-0.5549865774810314],[124,220,65,-0.5559594221413136],[124,220,66,-0.5551650784909725],[124,220,67,-0.5536443181335926],[124,220,68,-0.5528128109872341],[124,220,69,-0.5535379312932491],[124,220,70,-0.5553286522626877],[124,220,71,-0.5575743019580841],[124,220,72,-0.5605612844228745],[124,220,73,-0.563075702637434],[124,220,74,-0.5643343068659306],[124,220,75,-0.5640878677368164],[124,220,76,-0.5618016794323921],[124,220,77,-0.5576293431222439],[124,220,78,-0.5526084005832672],[124,220,79,-0.5472907461225986],[124,221,64,-0.5549865774810314],[124,221,65,-0.5559594221413136],[124,221,66,-0.5551650784909725],[124,221,67,-0.5536443181335926],[124,221,68,-0.5528128109872341],[124,221,69,-0.5535379312932491],[124,221,70,-0.5553286522626877],[124,221,71,-0.5575743019580841],[124,221,72,-0.5605612844228745],[124,221,73,-0.563075702637434],[124,221,74,-0.5643343068659306],[124,221,75,-0.5640878677368164],[124,221,76,-0.5618016794323921],[124,221,77,-0.5576293431222439],[124,221,78,-0.5526084005832672],[124,221,79,-0.5472907461225986],[124,222,64,-0.5549865774810314],[124,222,65,-0.5559594221413136],[124,222,66,-0.5551650784909725],[124,222,67,-0.5536443181335926],[124,222,68,-0.5528128109872341],[124,222,69,-0.5535379312932491],[124,222,70,-0.5553286522626877],[124,222,71,-0.5575743019580841],[124,222,72,-0.5605612844228745],[124,222,73,-0.563075702637434],[124,222,74,-0.5643343068659306],[124,222,75,-0.5640878677368164],[124,222,76,-0.5618016794323921],[124,222,77,-0.5576293431222439],[124,222,78,-0.5526084005832672],[124,222,79,-0.5472907461225986],[124,223,64,-0.5549865774810314],[124,223,65,-0.5559594221413136],[124,223,66,-0.5551650784909725],[124,223,67,-0.5536443181335926],[124,223,68,-0.5528128109872341],[124,223,69,-0.5535379312932491],[124,223,70,-0.5553286522626877],[124,223,71,-0.5575743019580841],[124,223,72,-0.5605612844228745],[124,223,73,-0.563075702637434],[124,223,74,-0.5643343068659306],[124,223,75,-0.5640878677368164],[124,223,76,-0.5618016794323921],[124,223,77,-0.5576293431222439],[124,223,78,-0.5526084005832672],[124,223,79,-0.5472907461225986],[124,224,64,-0.5549865774810314],[124,224,65,-0.5559594221413136],[124,224,66,-0.5551650784909725],[124,224,67,-0.5536443181335926],[124,224,68,-0.5528128109872341],[124,224,69,-0.5535379312932491],[124,224,70,-0.5553286522626877],[124,224,71,-0.5575743019580841],[124,224,72,-0.5605612844228745],[124,224,73,-0.563075702637434],[124,224,74,-0.5643343068659306],[124,224,75,-0.5640878677368164],[124,224,76,-0.5618016794323921],[124,224,77,-0.5576293431222439],[124,224,78,-0.5526084005832672],[124,224,79,-0.5472907461225986],[124,225,64,-0.5549865774810314],[124,225,65,-0.5559594221413136],[124,225,66,-0.5551650784909725],[124,225,67,-0.5536443181335926],[124,225,68,-0.5528128109872341],[124,225,69,-0.5535379312932491],[124,225,70,-0.5553286522626877],[124,225,71,-0.5575743019580841],[124,225,72,-0.5605612844228745],[124,225,73,-0.563075702637434],[124,225,74,-0.5643343068659306],[124,225,75,-0.5640878677368164],[124,225,76,-0.5618016794323921],[124,225,77,-0.5576293431222439],[124,225,78,-0.5526084005832672],[124,225,79,-0.5472907461225986],[124,226,64,-0.5549865774810314],[124,226,65,-0.5559594221413136],[124,226,66,-0.5551650784909725],[124,226,67,-0.5536443181335926],[124,226,68,-0.5528128109872341],[124,226,69,-0.5535379312932491],[124,226,70,-0.5553286522626877],[124,226,71,-0.5575743019580841],[124,226,72,-0.5605612844228745],[124,226,73,-0.563075702637434],[124,226,74,-0.5643343068659306],[124,226,75,-0.5640878677368164],[124,226,76,-0.5618016794323921],[124,226,77,-0.5576293431222439],[124,226,78,-0.5526084005832672],[124,226,79,-0.5472907461225986],[124,227,64,-0.5549865774810314],[124,227,65,-0.5559594221413136],[124,227,66,-0.5551650784909725],[124,227,67,-0.5536443181335926],[124,227,68,-0.5528128109872341],[124,227,69,-0.5535379312932491],[124,227,70,-0.5553286522626877],[124,227,71,-0.5575743019580841],[124,227,72,-0.5605612844228745],[124,227,73,-0.563075702637434],[124,227,74,-0.5643343068659306],[124,227,75,-0.5640878677368164],[124,227,76,-0.5618016794323921],[124,227,77,-0.5576293431222439],[124,227,78,-0.5526084005832672],[124,227,79,-0.5472907461225986],[124,228,64,-0.5549865774810314],[124,228,65,-0.5559594221413136],[124,228,66,-0.5551650784909725],[124,228,67,-0.5536443181335926],[124,228,68,-0.5528128109872341],[124,228,69,-0.5535379312932491],[124,228,70,-0.5553286522626877],[124,228,71,-0.5575743019580841],[124,228,72,-0.5605612844228745],[124,228,73,-0.563075702637434],[124,228,74,-0.5643343068659306],[124,228,75,-0.5640878677368164],[124,228,76,-0.5618016794323921],[124,228,77,-0.5576293431222439],[124,228,78,-0.5526084005832672],[124,228,79,-0.5472907461225986],[124,229,64,-0.5549865774810314],[124,229,65,-0.5559594221413136],[124,229,66,-0.5551650784909725],[124,229,67,-0.5536443181335926],[124,229,68,-0.5528128109872341],[124,229,69,-0.5535379312932491],[124,229,70,-0.5553286522626877],[124,229,71,-0.5575743019580841],[124,229,72,-0.5605612844228745],[124,229,73,-0.563075702637434],[124,229,74,-0.5643343068659306],[124,229,75,-0.5640878677368164],[124,229,76,-0.5618016794323921],[124,229,77,-0.5576293431222439],[124,229,78,-0.5526084005832672],[124,229,79,-0.5472907461225986],[124,230,64,-0.5549865774810314],[124,230,65,-0.5559594221413136],[124,230,66,-0.5551650784909725],[124,230,67,-0.5536443181335926],[124,230,68,-0.5528128109872341],[124,230,69,-0.5535379312932491],[124,230,70,-0.5553286522626877],[124,230,71,-0.5575743019580841],[124,230,72,-0.5605612844228745],[124,230,73,-0.563075702637434],[124,230,74,-0.5643343068659306],[124,230,75,-0.5640878677368164],[124,230,76,-0.5618016794323921],[124,230,77,-0.5576293431222439],[124,230,78,-0.5526084005832672],[124,230,79,-0.5472907461225986],[124,231,64,-0.5549865774810314],[124,231,65,-0.5559594221413136],[124,231,66,-0.5551650784909725],[124,231,67,-0.5536443181335926],[124,231,68,-0.5528128109872341],[124,231,69,-0.5535379312932491],[124,231,70,-0.5553286522626877],[124,231,71,-0.5575743019580841],[124,231,72,-0.5605612844228745],[124,231,73,-0.563075702637434],[124,231,74,-0.5643343068659306],[124,231,75,-0.5640878677368164],[124,231,76,-0.5618016794323921],[124,231,77,-0.5576293431222439],[124,231,78,-0.5526084005832672],[124,231,79,-0.5472907461225986],[124,232,64,-0.5549865774810314],[124,232,65,-0.5559594221413136],[124,232,66,-0.5551650784909725],[124,232,67,-0.5536443181335926],[124,232,68,-0.5528128109872341],[124,232,69,-0.5535379312932491],[124,232,70,-0.5553286522626877],[124,232,71,-0.5575743019580841],[124,232,72,-0.5605612844228745],[124,232,73,-0.563075702637434],[124,232,74,-0.5643343068659306],[124,232,75,-0.5640878677368164],[124,232,76,-0.5618016794323921],[124,232,77,-0.5576293431222439],[124,232,78,-0.5526084005832672],[124,232,79,-0.5472907461225986],[124,233,64,-0.5549865774810314],[124,233,65,-0.5559594221413136],[124,233,66,-0.5551650784909725],[124,233,67,-0.5536443181335926],[124,233,68,-0.5528128109872341],[124,233,69,-0.5535379312932491],[124,233,70,-0.5553286522626877],[124,233,71,-0.5575743019580841],[124,233,72,-0.5605612844228745],[124,233,73,-0.563075702637434],[124,233,74,-0.5643343068659306],[124,233,75,-0.5640878677368164],[124,233,76,-0.5618016794323921],[124,233,77,-0.5576293431222439],[124,233,78,-0.5526084005832672],[124,233,79,-0.5472907461225986],[124,234,64,-0.5549865774810314],[124,234,65,-0.5559594221413136],[124,234,66,-0.5551650784909725],[124,234,67,-0.5536443181335926],[124,234,68,-0.5528128109872341],[124,234,69,-0.5535379312932491],[124,234,70,-0.5553286522626877],[124,234,71,-0.5575743019580841],[124,234,72,-0.5605612844228745],[124,234,73,-0.563075702637434],[124,234,74,-0.5643343068659306],[124,234,75,-0.5640878677368164],[124,234,76,-0.5618016794323921],[124,234,77,-0.5576293431222439],[124,234,78,-0.5526084005832672],[124,234,79,-0.5472907461225986],[124,235,64,-0.5549865774810314],[124,235,65,-0.5559594221413136],[124,235,66,-0.5551650784909725],[124,235,67,-0.5536443181335926],[124,235,68,-0.5528128109872341],[124,235,69,-0.5535379312932491],[124,235,70,-0.5553286522626877],[124,235,71,-0.5575743019580841],[124,235,72,-0.5605612844228745],[124,235,73,-0.563075702637434],[124,235,74,-0.5643343068659306],[124,235,75,-0.5640878677368164],[124,235,76,-0.5618016794323921],[124,235,77,-0.5576293431222439],[124,235,78,-0.5526084005832672],[124,235,79,-0.5472907461225986],[124,236,64,-0.5549865774810314],[124,236,65,-0.5559594221413136],[124,236,66,-0.5551650784909725],[124,236,67,-0.5536443181335926],[124,236,68,-0.5528128109872341],[124,236,69,-0.5535379312932491],[124,236,70,-0.5553286522626877],[124,236,71,-0.5575743019580841],[124,236,72,-0.5605612844228745],[124,236,73,-0.563075702637434],[124,236,74,-0.5643343068659306],[124,236,75,-0.5640878677368164],[124,236,76,-0.5618016794323921],[124,236,77,-0.5576293431222439],[124,236,78,-0.5526084005832672],[124,236,79,-0.5472907461225986],[124,237,64,-0.5549865774810314],[124,237,65,-0.5559594221413136],[124,237,66,-0.5551650784909725],[124,237,67,-0.5536443181335926],[124,237,68,-0.5528128109872341],[124,237,69,-0.5535379312932491],[124,237,70,-0.5553286522626877],[124,237,71,-0.5575743019580841],[124,237,72,-0.5605612844228745],[124,237,73,-0.563075702637434],[124,237,74,-0.5643343068659306],[124,237,75,-0.5640878677368164],[124,237,76,-0.5618016794323921],[124,237,77,-0.5576293431222439],[124,237,78,-0.5526084005832672],[124,237,79,-0.5472907461225986],[124,238,64,-0.5549865774810314],[124,238,65,-0.5559594221413136],[124,238,66,-0.5551650784909725],[124,238,67,-0.5536443181335926],[124,238,68,-0.5528128109872341],[124,238,69,-0.5535379312932491],[124,238,70,-0.5553286522626877],[124,238,71,-0.5575743019580841],[124,238,72,-0.5605612844228745],[124,238,73,-0.563075702637434],[124,238,74,-0.5643343068659306],[124,238,75,-0.5640878677368164],[124,238,76,-0.5618016794323921],[124,238,77,-0.5576293431222439],[124,238,78,-0.5526084005832672],[124,238,79,-0.5472907461225986],[124,239,64,-0.5549865774810314],[124,239,65,-0.5559594221413136],[124,239,66,-0.5551650784909725],[124,239,67,-0.5536443181335926],[124,239,68,-0.5528128109872341],[124,239,69,-0.5535379312932491],[124,239,70,-0.5553286522626877],[124,239,71,-0.5575743019580841],[124,239,72,-0.5605612844228745],[124,239,73,-0.563075702637434],[124,239,74,-0.5643343068659306],[124,239,75,-0.5640878677368164],[124,239,76,-0.5618016794323921],[124,239,77,-0.5576293431222439],[124,239,78,-0.5526084005832672],[124,239,79,-0.5472907461225986],[124,240,64,-0.5549865774810314],[124,240,65,-0.5559594221413136],[124,240,66,-0.5551650784909725],[124,240,67,-0.5536443181335926],[124,240,68,-0.5528128109872341],[124,240,69,-0.5535379312932491],[124,240,70,-0.5553286522626877],[124,240,71,-0.5575743019580841],[124,240,72,-0.5605612844228745],[124,240,73,-0.563075702637434],[124,240,74,-0.5643343068659306],[124,240,75,-0.5640878677368164],[124,240,76,-0.5618016794323921],[124,240,77,-0.5576293431222439],[124,240,78,-0.5526084005832672],[124,240,79,-0.5472907461225986],[124,241,64,-0.5549865774810314],[124,241,65,-0.5559594221413136],[124,241,66,-0.5551650784909725],[124,241,67,-0.5536443181335926],[124,241,68,-0.5528128109872341],[124,241,69,-0.5535379312932491],[124,241,70,-0.5553286522626877],[124,241,71,-0.5575743019580841],[124,241,72,-0.5605612844228745],[124,241,73,-0.563075702637434],[124,241,74,-0.5643343068659306],[124,241,75,-0.5640878677368164],[124,241,76,-0.5618016794323921],[124,241,77,-0.5576293431222439],[124,241,78,-0.5526084005832672],[124,241,79,-0.5472907461225986],[124,242,64,-0.5549865774810314],[124,242,65,-0.5559594221413136],[124,242,66,-0.5551650784909725],[124,242,67,-0.5536443181335926],[124,242,68,-0.5528128109872341],[124,242,69,-0.5535379312932491],[124,242,70,-0.5553286522626877],[124,242,71,-0.5575743019580841],[124,242,72,-0.5605612844228745],[124,242,73,-0.563075702637434],[124,242,74,-0.5643343068659306],[124,242,75,-0.5640878677368164],[124,242,76,-0.5618016794323921],[124,242,77,-0.5576293431222439],[124,242,78,-0.5526084005832672],[124,242,79,-0.5472907461225986],[124,243,64,-0.5549865774810314],[124,243,65,-0.5559594221413136],[124,243,66,-0.5551650784909725],[124,243,67,-0.5536443181335926],[124,243,68,-0.5528128109872341],[124,243,69,-0.5535379312932491],[124,243,70,-0.5553286522626877],[124,243,71,-0.5575743019580841],[124,243,72,-0.5605612844228745],[124,243,73,-0.563075702637434],[124,243,74,-0.5643343068659306],[124,243,75,-0.5640878677368164],[124,243,76,-0.5618016794323921],[124,243,77,-0.5576293431222439],[124,243,78,-0.5526084005832672],[124,243,79,-0.5472907461225986],[124,244,64,-0.5549865774810314],[124,244,65,-0.5559594221413136],[124,244,66,-0.5551650784909725],[124,244,67,-0.5536443181335926],[124,244,68,-0.5528128109872341],[124,244,69,-0.5535379312932491],[124,244,70,-0.5553286522626877],[124,244,71,-0.5575743019580841],[124,244,72,-0.5605612844228745],[124,244,73,-0.563075702637434],[124,244,74,-0.5643343068659306],[124,244,75,-0.5640878677368164],[124,244,76,-0.5618016794323921],[124,244,77,-0.5576293431222439],[124,244,78,-0.5526084005832672],[124,244,79,-0.5472907461225986],[124,245,64,-0.5549865774810314],[124,245,65,-0.5559594221413136],[124,245,66,-0.5551650784909725],[124,245,67,-0.5536443181335926],[124,245,68,-0.5528128109872341],[124,245,69,-0.5535379312932491],[124,245,70,-0.5553286522626877],[124,245,71,-0.5575743019580841],[124,245,72,-0.5605612844228745],[124,245,73,-0.563075702637434],[124,245,74,-0.5643343068659306],[124,245,75,-0.5640878677368164],[124,245,76,-0.5618016794323921],[124,245,77,-0.5576293431222439],[124,245,78,-0.5526084005832672],[124,245,79,-0.5472907461225986],[124,246,64,-0.5549865774810314],[124,246,65,-0.5559594221413136],[124,246,66,-0.5551650784909725],[124,246,67,-0.5536443181335926],[124,246,68,-0.5528128109872341],[124,246,69,-0.5535379312932491],[124,246,70,-0.5553286522626877],[124,246,71,-0.5575743019580841],[124,246,72,-0.5605612844228745],[124,246,73,-0.563075702637434],[124,246,74,-0.5643343068659306],[124,246,75,-0.5640878677368164],[124,246,76,-0.5618016794323921],[124,246,77,-0.5576293431222439],[124,246,78,-0.5526084005832672],[124,246,79,-0.5472907461225986],[124,247,64,-0.5549865774810314],[124,247,65,-0.5559594221413136],[124,247,66,-0.5551650784909725],[124,247,67,-0.5536443181335926],[124,247,68,-0.5528128109872341],[124,247,69,-0.5535379312932491],[124,247,70,-0.5553286522626877],[124,247,71,-0.5575743019580841],[124,247,72,-0.5605612844228745],[124,247,73,-0.563075702637434],[124,247,74,-0.5643343068659306],[124,247,75,-0.5640878677368164],[124,247,76,-0.5618016794323921],[124,247,77,-0.5576293431222439],[124,247,78,-0.5526084005832672],[124,247,79,-0.5472907461225986],[124,248,64,-0.5549865774810314],[124,248,65,-0.5559594221413136],[124,248,66,-0.5551650784909725],[124,248,67,-0.5536443181335926],[124,248,68,-0.5528128109872341],[124,248,69,-0.5535379312932491],[124,248,70,-0.5553286522626877],[124,248,71,-0.5575743019580841],[124,248,72,-0.5605612844228745],[124,248,73,-0.563075702637434],[124,248,74,-0.5643343068659306],[124,248,75,-0.5640878677368164],[124,248,76,-0.5618016794323921],[124,248,77,-0.5576293431222439],[124,248,78,-0.5526084005832672],[124,248,79,-0.5472907461225986],[124,249,64,-0.5549865774810314],[124,249,65,-0.5559594221413136],[124,249,66,-0.5551650784909725],[124,249,67,-0.5536443181335926],[124,249,68,-0.5528128109872341],[124,249,69,-0.5535379312932491],[124,249,70,-0.5553286522626877],[124,249,71,-0.5575743019580841],[124,249,72,-0.5605612844228745],[124,249,73,-0.563075702637434],[124,249,74,-0.5643343068659306],[124,249,75,-0.5640878677368164],[124,249,76,-0.5618016794323921],[124,249,77,-0.5576293431222439],[124,249,78,-0.5526084005832672],[124,249,79,-0.5472907461225986],[124,250,64,-0.5549865774810314],[124,250,65,-0.5559594221413136],[124,250,66,-0.5551650784909725],[124,250,67,-0.5536443181335926],[124,250,68,-0.5528128109872341],[124,250,69,-0.5535379312932491],[124,250,70,-0.5553286522626877],[124,250,71,-0.5575743019580841],[124,250,72,-0.5605612844228745],[124,250,73,-0.563075702637434],[124,250,74,-0.5643343068659306],[124,250,75,-0.5640878677368164],[124,250,76,-0.5618016794323921],[124,250,77,-0.5576293431222439],[124,250,78,-0.5526084005832672],[124,250,79,-0.5472907461225986],[124,251,64,-0.5549865774810314],[124,251,65,-0.5559594221413136],[124,251,66,-0.5551650784909725],[124,251,67,-0.5536443181335926],[124,251,68,-0.5528128109872341],[124,251,69,-0.5535379312932491],[124,251,70,-0.5553286522626877],[124,251,71,-0.5575743019580841],[124,251,72,-0.5605612844228745],[124,251,73,-0.563075702637434],[124,251,74,-0.5643343068659306],[124,251,75,-0.5640878677368164],[124,251,76,-0.5618016794323921],[124,251,77,-0.5576293431222439],[124,251,78,-0.5526084005832672],[124,251,79,-0.5472907461225986],[124,252,64,-0.5549865774810314],[124,252,65,-0.5559594221413136],[124,252,66,-0.5551650784909725],[124,252,67,-0.5536443181335926],[124,252,68,-0.5528128109872341],[124,252,69,-0.5535379312932491],[124,252,70,-0.5553286522626877],[124,252,71,-0.5575743019580841],[124,252,72,-0.5605612844228745],[124,252,73,-0.563075702637434],[124,252,74,-0.5643343068659306],[124,252,75,-0.5640878677368164],[124,252,76,-0.5618016794323921],[124,252,77,-0.5576293431222439],[124,252,78,-0.5526084005832672],[124,252,79,-0.5472907461225986],[124,253,64,-0.5549865774810314],[124,253,65,-0.5559594221413136],[124,253,66,-0.5551650784909725],[124,253,67,-0.5536443181335926],[124,253,68,-0.5528128109872341],[124,253,69,-0.5535379312932491],[124,253,70,-0.5553286522626877],[124,253,71,-0.5575743019580841],[124,253,72,-0.5605612844228745],[124,253,73,-0.563075702637434],[124,253,74,-0.5643343068659306],[124,253,75,-0.5640878677368164],[124,253,76,-0.5618016794323921],[124,253,77,-0.5576293431222439],[124,253,78,-0.5526084005832672],[124,253,79,-0.5472907461225986],[124,254,64,-0.5549865774810314],[124,254,65,-0.5559594221413136],[124,254,66,-0.5551650784909725],[124,254,67,-0.5536443181335926],[124,254,68,-0.5528128109872341],[124,254,69,-0.5535379312932491],[124,254,70,-0.5553286522626877],[124,254,71,-0.5575743019580841],[124,254,72,-0.5605612844228745],[124,254,73,-0.563075702637434],[124,254,74,-0.5643343068659306],[124,254,75,-0.5640878677368164],[124,254,76,-0.5618016794323921],[124,254,77,-0.5576293431222439],[124,254,78,-0.5526084005832672],[124,254,79,-0.5472907461225986],[124,255,64,-0.5549865774810314],[124,255,65,-0.5559594221413136],[124,255,66,-0.5551650784909725],[124,255,67,-0.5536443181335926],[124,255,68,-0.5528128109872341],[124,255,69,-0.5535379312932491],[124,255,70,-0.5553286522626877],[124,255,71,-0.5575743019580841],[124,255,72,-0.5605612844228745],[124,255,73,-0.563075702637434],[124,255,74,-0.5643343068659306],[124,255,75,-0.5640878677368164],[124,255,76,-0.5618016794323921],[124,255,77,-0.5576293431222439],[124,255,78,-0.5526084005832672],[124,255,79,-0.5472907461225986],[124,256,64,-0.5549865774810314],[124,256,65,-0.5559594221413136],[124,256,66,-0.5551650784909725],[124,256,67,-0.5536443181335926],[124,256,68,-0.5528128109872341],[124,256,69,-0.5535379312932491],[124,256,70,-0.5553286522626877],[124,256,71,-0.5575743019580841],[124,256,72,-0.5605612844228745],[124,256,73,-0.563075702637434],[124,256,74,-0.5643343068659306],[124,256,75,-0.5640878677368164],[124,256,76,-0.5618016794323921],[124,256,77,-0.5576293431222439],[124,256,78,-0.5526084005832672],[124,256,79,-0.5472907461225986],[124,257,64,-0.5549865774810314],[124,257,65,-0.5559594221413136],[124,257,66,-0.5551650784909725],[124,257,67,-0.5536443181335926],[124,257,68,-0.5528128109872341],[124,257,69,-0.5535379312932491],[124,257,70,-0.5553286522626877],[124,257,71,-0.5575743019580841],[124,257,72,-0.5605612844228745],[124,257,73,-0.563075702637434],[124,257,74,-0.5643343068659306],[124,257,75,-0.5640878677368164],[124,257,76,-0.5618016794323921],[124,257,77,-0.5576293431222439],[124,257,78,-0.5526084005832672],[124,257,79,-0.5472907461225986],[124,258,64,-0.5549865774810314],[124,258,65,-0.5559594221413136],[124,258,66,-0.5551650784909725],[124,258,67,-0.5536443181335926],[124,258,68,-0.5528128109872341],[124,258,69,-0.5535379312932491],[124,258,70,-0.5553286522626877],[124,258,71,-0.5575743019580841],[124,258,72,-0.5605612844228745],[124,258,73,-0.563075702637434],[124,258,74,-0.5643343068659306],[124,258,75,-0.5640878677368164],[124,258,76,-0.5618016794323921],[124,258,77,-0.5576293431222439],[124,258,78,-0.5526084005832672],[124,258,79,-0.5472907461225986],[124,259,64,-0.5549865774810314],[124,259,65,-0.5559594221413136],[124,259,66,-0.5551650784909725],[124,259,67,-0.5536443181335926],[124,259,68,-0.5528128109872341],[124,259,69,-0.5535379312932491],[124,259,70,-0.5553286522626877],[124,259,71,-0.5575743019580841],[124,259,72,-0.5605612844228745],[124,259,73,-0.563075702637434],[124,259,74,-0.5643343068659306],[124,259,75,-0.5640878677368164],[124,259,76,-0.5618016794323921],[124,259,77,-0.5576293431222439],[124,259,78,-0.5526084005832672],[124,259,79,-0.5472907461225986],[124,260,64,-0.5549865774810314],[124,260,65,-0.5559594221413136],[124,260,66,-0.5551650784909725],[124,260,67,-0.5536443181335926],[124,260,68,-0.5528128109872341],[124,260,69,-0.5535379312932491],[124,260,70,-0.5553286522626877],[124,260,71,-0.5575743019580841],[124,260,72,-0.5605612844228745],[124,260,73,-0.563075702637434],[124,260,74,-0.5643343068659306],[124,260,75,-0.5640878677368164],[124,260,76,-0.5618016794323921],[124,260,77,-0.5576293431222439],[124,260,78,-0.5526084005832672],[124,260,79,-0.5472907461225986],[124,261,64,-0.5549865774810314],[124,261,65,-0.5559594221413136],[124,261,66,-0.5551650784909725],[124,261,67,-0.5536443181335926],[124,261,68,-0.5528128109872341],[124,261,69,-0.5535379312932491],[124,261,70,-0.5553286522626877],[124,261,71,-0.5575743019580841],[124,261,72,-0.5605612844228745],[124,261,73,-0.563075702637434],[124,261,74,-0.5643343068659306],[124,261,75,-0.5640878677368164],[124,261,76,-0.5618016794323921],[124,261,77,-0.5576293431222439],[124,261,78,-0.5526084005832672],[124,261,79,-0.5472907461225986],[124,262,64,-0.5549865774810314],[124,262,65,-0.5559594221413136],[124,262,66,-0.5551650784909725],[124,262,67,-0.5536443181335926],[124,262,68,-0.5528128109872341],[124,262,69,-0.5535379312932491],[124,262,70,-0.5553286522626877],[124,262,71,-0.5575743019580841],[124,262,72,-0.5605612844228745],[124,262,73,-0.563075702637434],[124,262,74,-0.5643343068659306],[124,262,75,-0.5640878677368164],[124,262,76,-0.5618016794323921],[124,262,77,-0.5576293431222439],[124,262,78,-0.5526084005832672],[124,262,79,-0.5472907461225986],[124,263,64,-0.5549865774810314],[124,263,65,-0.5559594221413136],[124,263,66,-0.5551650784909725],[124,263,67,-0.5536443181335926],[124,263,68,-0.5528128109872341],[124,263,69,-0.5535379312932491],[124,263,70,-0.5553286522626877],[124,263,71,-0.5575743019580841],[124,263,72,-0.5605612844228745],[124,263,73,-0.563075702637434],[124,263,74,-0.5643343068659306],[124,263,75,-0.5640878677368164],[124,263,76,-0.5618016794323921],[124,263,77,-0.5576293431222439],[124,263,78,-0.5526084005832672],[124,263,79,-0.5472907461225986],[124,264,64,-0.5549865774810314],[124,264,65,-0.5559594221413136],[124,264,66,-0.5551650784909725],[124,264,67,-0.5536443181335926],[124,264,68,-0.5528128109872341],[124,264,69,-0.5535379312932491],[124,264,70,-0.5553286522626877],[124,264,71,-0.5575743019580841],[124,264,72,-0.5605612844228745],[124,264,73,-0.563075702637434],[124,264,74,-0.5643343068659306],[124,264,75,-0.5640878677368164],[124,264,76,-0.5618016794323921],[124,264,77,-0.5576293431222439],[124,264,78,-0.5526084005832672],[124,264,79,-0.5472907461225986],[124,265,64,-0.5549865774810314],[124,265,65,-0.5559594221413136],[124,265,66,-0.5551650784909725],[124,265,67,-0.5536443181335926],[124,265,68,-0.5528128109872341],[124,265,69,-0.5535379312932491],[124,265,70,-0.5553286522626877],[124,265,71,-0.5575743019580841],[124,265,72,-0.5605612844228745],[124,265,73,-0.563075702637434],[124,265,74,-0.5643343068659306],[124,265,75,-0.5640878677368164],[124,265,76,-0.5618016794323921],[124,265,77,-0.5576293431222439],[124,265,78,-0.5526084005832672],[124,265,79,-0.5472907461225986],[124,266,64,-0.5549865774810314],[124,266,65,-0.5559594221413136],[124,266,66,-0.5551650784909725],[124,266,67,-0.5536443181335926],[124,266,68,-0.5528128109872341],[124,266,69,-0.5535379312932491],[124,266,70,-0.5553286522626877],[124,266,71,-0.5575743019580841],[124,266,72,-0.5605612844228745],[124,266,73,-0.563075702637434],[124,266,74,-0.5643343068659306],[124,266,75,-0.5640878677368164],[124,266,76,-0.5618016794323921],[124,266,77,-0.5576293431222439],[124,266,78,-0.5526084005832672],[124,266,79,-0.5472907461225986],[124,267,64,-0.5549865774810314],[124,267,65,-0.5559594221413136],[124,267,66,-0.5551650784909725],[124,267,67,-0.5536443181335926],[124,267,68,-0.5528128109872341],[124,267,69,-0.5535379312932491],[124,267,70,-0.5553286522626877],[124,267,71,-0.5575743019580841],[124,267,72,-0.5605612844228745],[124,267,73,-0.563075702637434],[124,267,74,-0.5643343068659306],[124,267,75,-0.5640878677368164],[124,267,76,-0.5618016794323921],[124,267,77,-0.5576293431222439],[124,267,78,-0.5526084005832672],[124,267,79,-0.5472907461225986],[124,268,64,-0.5549865774810314],[124,268,65,-0.5559594221413136],[124,268,66,-0.5551650784909725],[124,268,67,-0.5536443181335926],[124,268,68,-0.5528128109872341],[124,268,69,-0.5535379312932491],[124,268,70,-0.5553286522626877],[124,268,71,-0.5575743019580841],[124,268,72,-0.5605612844228745],[124,268,73,-0.563075702637434],[124,268,74,-0.5643343068659306],[124,268,75,-0.5640878677368164],[124,268,76,-0.5618016794323921],[124,268,77,-0.5576293431222439],[124,268,78,-0.5526084005832672],[124,268,79,-0.5472907461225986],[124,269,64,-0.5549865774810314],[124,269,65,-0.5559594221413136],[124,269,66,-0.5551650784909725],[124,269,67,-0.5536443181335926],[124,269,68,-0.5528128109872341],[124,269,69,-0.5535379312932491],[124,269,70,-0.5553286522626877],[124,269,71,-0.5575743019580841],[124,269,72,-0.5605612844228745],[124,269,73,-0.563075702637434],[124,269,74,-0.5643343068659306],[124,269,75,-0.5640878677368164],[124,269,76,-0.5618016794323921],[124,269,77,-0.5576293431222439],[124,269,78,-0.5526084005832672],[124,269,79,-0.5472907461225986],[124,270,64,-0.5549865774810314],[124,270,65,-0.5559594221413136],[124,270,66,-0.5551650784909725],[124,270,67,-0.5536443181335926],[124,270,68,-0.5528128109872341],[124,270,69,-0.5535379312932491],[124,270,70,-0.5553286522626877],[124,270,71,-0.5575743019580841],[124,270,72,-0.5605612844228745],[124,270,73,-0.563075702637434],[124,270,74,-0.5643343068659306],[124,270,75,-0.5640878677368164],[124,270,76,-0.5618016794323921],[124,270,77,-0.5576293431222439],[124,270,78,-0.5526084005832672],[124,270,79,-0.5472907461225986],[124,271,64,-0.5549865774810314],[124,271,65,-0.5559594221413136],[124,271,66,-0.5551650784909725],[124,271,67,-0.5536443181335926],[124,271,68,-0.5528128109872341],[124,271,69,-0.5535379312932491],[124,271,70,-0.5553286522626877],[124,271,71,-0.5575743019580841],[124,271,72,-0.5605612844228745],[124,271,73,-0.563075702637434],[124,271,74,-0.5643343068659306],[124,271,75,-0.5640878677368164],[124,271,76,-0.5618016794323921],[124,271,77,-0.5576293431222439],[124,271,78,-0.5526084005832672],[124,271,79,-0.5472907461225986],[124,272,64,-0.5549865774810314],[124,272,65,-0.5559594221413136],[124,272,66,-0.5551650784909725],[124,272,67,-0.5536443181335926],[124,272,68,-0.5528128109872341],[124,272,69,-0.5535379312932491],[124,272,70,-0.5553286522626877],[124,272,71,-0.5575743019580841],[124,272,72,-0.5605612844228745],[124,272,73,-0.563075702637434],[124,272,74,-0.5643343068659306],[124,272,75,-0.5640878677368164],[124,272,76,-0.5618016794323921],[124,272,77,-0.5576293431222439],[124,272,78,-0.5526084005832672],[124,272,79,-0.5472907461225986],[124,273,64,-0.5549865774810314],[124,273,65,-0.5559594221413136],[124,273,66,-0.5551650784909725],[124,273,67,-0.5536443181335926],[124,273,68,-0.5528128109872341],[124,273,69,-0.5535379312932491],[124,273,70,-0.5553286522626877],[124,273,71,-0.5575743019580841],[124,273,72,-0.5605612844228745],[124,273,73,-0.563075702637434],[124,273,74,-0.5643343068659306],[124,273,75,-0.5640878677368164],[124,273,76,-0.5618016794323921],[124,273,77,-0.5576293431222439],[124,273,78,-0.5526084005832672],[124,273,79,-0.5472907461225986],[124,274,64,-0.5549865774810314],[124,274,65,-0.5559594221413136],[124,274,66,-0.5551650784909725],[124,274,67,-0.5536443181335926],[124,274,68,-0.5528128109872341],[124,274,69,-0.5535379312932491],[124,274,70,-0.5553286522626877],[124,274,71,-0.5575743019580841],[124,274,72,-0.5605612844228745],[124,274,73,-0.563075702637434],[124,274,74,-0.5643343068659306],[124,274,75,-0.5640878677368164],[124,274,76,-0.5618016794323921],[124,274,77,-0.5576293431222439],[124,274,78,-0.5526084005832672],[124,274,79,-0.5472907461225986],[124,275,64,-0.5549865774810314],[124,275,65,-0.5559594221413136],[124,275,66,-0.5551650784909725],[124,275,67,-0.5536443181335926],[124,275,68,-0.5528128109872341],[124,275,69,-0.5535379312932491],[124,275,70,-0.5553286522626877],[124,275,71,-0.5575743019580841],[124,275,72,-0.5605612844228745],[124,275,73,-0.563075702637434],[124,275,74,-0.5643343068659306],[124,275,75,-0.5640878677368164],[124,275,76,-0.5618016794323921],[124,275,77,-0.5576293431222439],[124,275,78,-0.5526084005832672],[124,275,79,-0.5472907461225986],[124,276,64,-0.5549865774810314],[124,276,65,-0.5559594221413136],[124,276,66,-0.5551650784909725],[124,276,67,-0.5536443181335926],[124,276,68,-0.5528128109872341],[124,276,69,-0.5535379312932491],[124,276,70,-0.5553286522626877],[124,276,71,-0.5575743019580841],[124,276,72,-0.5605612844228745],[124,276,73,-0.563075702637434],[124,276,74,-0.5643343068659306],[124,276,75,-0.5640878677368164],[124,276,76,-0.5618016794323921],[124,276,77,-0.5576293431222439],[124,276,78,-0.5526084005832672],[124,276,79,-0.5472907461225986],[124,277,64,-0.5549865774810314],[124,277,65,-0.5559594221413136],[124,277,66,-0.5551650784909725],[124,277,67,-0.5536443181335926],[124,277,68,-0.5528128109872341],[124,277,69,-0.5535379312932491],[124,277,70,-0.5553286522626877],[124,277,71,-0.5575743019580841],[124,277,72,-0.5605612844228745],[124,277,73,-0.563075702637434],[124,277,74,-0.5643343068659306],[124,277,75,-0.5640878677368164],[124,277,76,-0.5618016794323921],[124,277,77,-0.5576293431222439],[124,277,78,-0.5526084005832672],[124,277,79,-0.5472907461225986],[124,278,64,-0.5549865774810314],[124,278,65,-0.5559594221413136],[124,278,66,-0.5551650784909725],[124,278,67,-0.5536443181335926],[124,278,68,-0.5528128109872341],[124,278,69,-0.5535379312932491],[124,278,70,-0.5553286522626877],[124,278,71,-0.5575743019580841],[124,278,72,-0.5605612844228745],[124,278,73,-0.563075702637434],[124,278,74,-0.5643343068659306],[124,278,75,-0.5640878677368164],[124,278,76,-0.5618016794323921],[124,278,77,-0.5576293431222439],[124,278,78,-0.5526084005832672],[124,278,79,-0.5472907461225986],[124,279,64,-0.5549865774810314],[124,279,65,-0.5559594221413136],[124,279,66,-0.5551650784909725],[124,279,67,-0.5536443181335926],[124,279,68,-0.5528128109872341],[124,279,69,-0.5535379312932491],[124,279,70,-0.5553286522626877],[124,279,71,-0.5575743019580841],[124,279,72,-0.5605612844228745],[124,279,73,-0.563075702637434],[124,279,74,-0.5643343068659306],[124,279,75,-0.5640878677368164],[124,279,76,-0.5618016794323921],[124,279,77,-0.5576293431222439],[124,279,78,-0.5526084005832672],[124,279,79,-0.5472907461225986],[124,280,64,-0.5549865774810314],[124,280,65,-0.5559594221413136],[124,280,66,-0.5551650784909725],[124,280,67,-0.5536443181335926],[124,280,68,-0.5528128109872341],[124,280,69,-0.5535379312932491],[124,280,70,-0.5553286522626877],[124,280,71,-0.5575743019580841],[124,280,72,-0.5605612844228745],[124,280,73,-0.563075702637434],[124,280,74,-0.5643343068659306],[124,280,75,-0.5640878677368164],[124,280,76,-0.5618016794323921],[124,280,77,-0.5576293431222439],[124,280,78,-0.5526084005832672],[124,280,79,-0.5472907461225986],[124,281,64,-0.5549865774810314],[124,281,65,-0.5559594221413136],[124,281,66,-0.5551650784909725],[124,281,67,-0.5536443181335926],[124,281,68,-0.5528128109872341],[124,281,69,-0.5535379312932491],[124,281,70,-0.5553286522626877],[124,281,71,-0.5575743019580841],[124,281,72,-0.5605612844228745],[124,281,73,-0.563075702637434],[124,281,74,-0.5643343068659306],[124,281,75,-0.5640878677368164],[124,281,76,-0.5618016794323921],[124,281,77,-0.5576293431222439],[124,281,78,-0.5526084005832672],[124,281,79,-0.5472907461225986],[124,282,64,-0.5549865774810314],[124,282,65,-0.5559594221413136],[124,282,66,-0.5551650784909725],[124,282,67,-0.5536443181335926],[124,282,68,-0.5528128109872341],[124,282,69,-0.5535379312932491],[124,282,70,-0.5553286522626877],[124,282,71,-0.5575743019580841],[124,282,72,-0.5605612844228745],[124,282,73,-0.563075702637434],[124,282,74,-0.5643343068659306],[124,282,75,-0.5640878677368164],[124,282,76,-0.5618016794323921],[124,282,77,-0.5576293431222439],[124,282,78,-0.5526084005832672],[124,282,79,-0.5472907461225986],[124,283,64,-0.5549865774810314],[124,283,65,-0.5559594221413136],[124,283,66,-0.5551650784909725],[124,283,67,-0.5536443181335926],[124,283,68,-0.5528128109872341],[124,283,69,-0.5535379312932491],[124,283,70,-0.5553286522626877],[124,283,71,-0.5575743019580841],[124,283,72,-0.5605612844228745],[124,283,73,-0.563075702637434],[124,283,74,-0.5643343068659306],[124,283,75,-0.5640878677368164],[124,283,76,-0.5618016794323921],[124,283,77,-0.5576293431222439],[124,283,78,-0.5526084005832672],[124,283,79,-0.5472907461225986],[124,284,64,-0.5549865774810314],[124,284,65,-0.5559594221413136],[124,284,66,-0.5551650784909725],[124,284,67,-0.5536443181335926],[124,284,68,-0.5528128109872341],[124,284,69,-0.5535379312932491],[124,284,70,-0.5553286522626877],[124,284,71,-0.5575743019580841],[124,284,72,-0.5605612844228745],[124,284,73,-0.563075702637434],[124,284,74,-0.5643343068659306],[124,284,75,-0.5640878677368164],[124,284,76,-0.5618016794323921],[124,284,77,-0.5576293431222439],[124,284,78,-0.5526084005832672],[124,284,79,-0.5472907461225986],[124,285,64,-0.5549865774810314],[124,285,65,-0.5559594221413136],[124,285,66,-0.5551650784909725],[124,285,67,-0.5536443181335926],[124,285,68,-0.5528128109872341],[124,285,69,-0.5535379312932491],[124,285,70,-0.5553286522626877],[124,285,71,-0.5575743019580841],[124,285,72,-0.5605612844228745],[124,285,73,-0.563075702637434],[124,285,74,-0.5643343068659306],[124,285,75,-0.5640878677368164],[124,285,76,-0.5618016794323921],[124,285,77,-0.5576293431222439],[124,285,78,-0.5526084005832672],[124,285,79,-0.5472907461225986],[124,286,64,-0.5549865774810314],[124,286,65,-0.5559594221413136],[124,286,66,-0.5551650784909725],[124,286,67,-0.5536443181335926],[124,286,68,-0.5528128109872341],[124,286,69,-0.5535379312932491],[124,286,70,-0.5553286522626877],[124,286,71,-0.5575743019580841],[124,286,72,-0.5605612844228745],[124,286,73,-0.563075702637434],[124,286,74,-0.5643343068659306],[124,286,75,-0.5640878677368164],[124,286,76,-0.5618016794323921],[124,286,77,-0.5576293431222439],[124,286,78,-0.5526084005832672],[124,286,79,-0.5472907461225986],[124,287,64,-0.5549865774810314],[124,287,65,-0.5559594221413136],[124,287,66,-0.5551650784909725],[124,287,67,-0.5536443181335926],[124,287,68,-0.5528128109872341],[124,287,69,-0.5535379312932491],[124,287,70,-0.5553286522626877],[124,287,71,-0.5575743019580841],[124,287,72,-0.5605612844228745],[124,287,73,-0.563075702637434],[124,287,74,-0.5643343068659306],[124,287,75,-0.5640878677368164],[124,287,76,-0.5618016794323921],[124,287,77,-0.5576293431222439],[124,287,78,-0.5526084005832672],[124,287,79,-0.5472907461225986],[124,288,64,-0.5549865774810314],[124,288,65,-0.5559594221413136],[124,288,66,-0.5551650784909725],[124,288,67,-0.5536443181335926],[124,288,68,-0.5528128109872341],[124,288,69,-0.5535379312932491],[124,288,70,-0.5553286522626877],[124,288,71,-0.5575743019580841],[124,288,72,-0.5605612844228745],[124,288,73,-0.563075702637434],[124,288,74,-0.5643343068659306],[124,288,75,-0.5640878677368164],[124,288,76,-0.5618016794323921],[124,288,77,-0.5576293431222439],[124,288,78,-0.5526084005832672],[124,288,79,-0.5472907461225986],[124,289,64,-0.5549865774810314],[124,289,65,-0.5559594221413136],[124,289,66,-0.5551650784909725],[124,289,67,-0.5536443181335926],[124,289,68,-0.5528128109872341],[124,289,69,-0.5535379312932491],[124,289,70,-0.5553286522626877],[124,289,71,-0.5575743019580841],[124,289,72,-0.5605612844228745],[124,289,73,-0.563075702637434],[124,289,74,-0.5643343068659306],[124,289,75,-0.5640878677368164],[124,289,76,-0.5618016794323921],[124,289,77,-0.5576293431222439],[124,289,78,-0.5526084005832672],[124,289,79,-0.5472907461225986],[124,290,64,-0.5549865774810314],[124,290,65,-0.5559594221413136],[124,290,66,-0.5551650784909725],[124,290,67,-0.5536443181335926],[124,290,68,-0.5528128109872341],[124,290,69,-0.5535379312932491],[124,290,70,-0.5553286522626877],[124,290,71,-0.5575743019580841],[124,290,72,-0.5605612844228745],[124,290,73,-0.563075702637434],[124,290,74,-0.5643343068659306],[124,290,75,-0.5640878677368164],[124,290,76,-0.5618016794323921],[124,290,77,-0.5576293431222439],[124,290,78,-0.5526084005832672],[124,290,79,-0.5472907461225986],[124,291,64,-0.5549865774810314],[124,291,65,-0.5559594221413136],[124,291,66,-0.5551650784909725],[124,291,67,-0.5536443181335926],[124,291,68,-0.5528128109872341],[124,291,69,-0.5535379312932491],[124,291,70,-0.5553286522626877],[124,291,71,-0.5575743019580841],[124,291,72,-0.5605612844228745],[124,291,73,-0.563075702637434],[124,291,74,-0.5643343068659306],[124,291,75,-0.5640878677368164],[124,291,76,-0.5618016794323921],[124,291,77,-0.5576293431222439],[124,291,78,-0.5526084005832672],[124,291,79,-0.5472907461225986],[124,292,64,-0.5549865774810314],[124,292,65,-0.5559594221413136],[124,292,66,-0.5551650784909725],[124,292,67,-0.5536443181335926],[124,292,68,-0.5528128109872341],[124,292,69,-0.5535379312932491],[124,292,70,-0.5553286522626877],[124,292,71,-0.5575743019580841],[124,292,72,-0.5605612844228745],[124,292,73,-0.563075702637434],[124,292,74,-0.5643343068659306],[124,292,75,-0.5640878677368164],[124,292,76,-0.5618016794323921],[124,292,77,-0.5576293431222439],[124,292,78,-0.5526084005832672],[124,292,79,-0.5472907461225986],[124,293,64,-0.5549865774810314],[124,293,65,-0.5559594221413136],[124,293,66,-0.5551650784909725],[124,293,67,-0.5536443181335926],[124,293,68,-0.5528128109872341],[124,293,69,-0.5535379312932491],[124,293,70,-0.5553286522626877],[124,293,71,-0.5575743019580841],[124,293,72,-0.5605612844228745],[124,293,73,-0.563075702637434],[124,293,74,-0.5643343068659306],[124,293,75,-0.5640878677368164],[124,293,76,-0.5618016794323921],[124,293,77,-0.5576293431222439],[124,293,78,-0.5526084005832672],[124,293,79,-0.5472907461225986],[124,294,64,-0.5549865774810314],[124,294,65,-0.5559594221413136],[124,294,66,-0.5551650784909725],[124,294,67,-0.5536443181335926],[124,294,68,-0.5528128109872341],[124,294,69,-0.5535379312932491],[124,294,70,-0.5553286522626877],[124,294,71,-0.5575743019580841],[124,294,72,-0.5605612844228745],[124,294,73,-0.563075702637434],[124,294,74,-0.5643343068659306],[124,294,75,-0.5640878677368164],[124,294,76,-0.5618016794323921],[124,294,77,-0.5576293431222439],[124,294,78,-0.5526084005832672],[124,294,79,-0.5472907461225986],[124,295,64,-0.5549865774810314],[124,295,65,-0.5559594221413136],[124,295,66,-0.5551650784909725],[124,295,67,-0.5536443181335926],[124,295,68,-0.5528128109872341],[124,295,69,-0.5535379312932491],[124,295,70,-0.5553286522626877],[124,295,71,-0.5575743019580841],[124,295,72,-0.5605612844228745],[124,295,73,-0.563075702637434],[124,295,74,-0.5643343068659306],[124,295,75,-0.5640878677368164],[124,295,76,-0.5618016794323921],[124,295,77,-0.5576293431222439],[124,295,78,-0.5526084005832672],[124,295,79,-0.5472907461225986],[124,296,64,-0.5549865774810314],[124,296,65,-0.5559594221413136],[124,296,66,-0.5551650784909725],[124,296,67,-0.5536443181335926],[124,296,68,-0.5528128109872341],[124,296,69,-0.5535379312932491],[124,296,70,-0.5553286522626877],[124,296,71,-0.5575743019580841],[124,296,72,-0.5605612844228745],[124,296,73,-0.563075702637434],[124,296,74,-0.5643343068659306],[124,296,75,-0.5640878677368164],[124,296,76,-0.5618016794323921],[124,296,77,-0.5576293431222439],[124,296,78,-0.5526084005832672],[124,296,79,-0.5472907461225986],[124,297,64,-0.5549865774810314],[124,297,65,-0.5559594221413136],[124,297,66,-0.5551650784909725],[124,297,67,-0.5536443181335926],[124,297,68,-0.5528128109872341],[124,297,69,-0.5535379312932491],[124,297,70,-0.5553286522626877],[124,297,71,-0.5575743019580841],[124,297,72,-0.5605612844228745],[124,297,73,-0.563075702637434],[124,297,74,-0.5643343068659306],[124,297,75,-0.5640878677368164],[124,297,76,-0.5618016794323921],[124,297,77,-0.5576293431222439],[124,297,78,-0.5526084005832672],[124,297,79,-0.5472907461225986],[124,298,64,-0.5549865774810314],[124,298,65,-0.5559594221413136],[124,298,66,-0.5551650784909725],[124,298,67,-0.5536443181335926],[124,298,68,-0.5528128109872341],[124,298,69,-0.5535379312932491],[124,298,70,-0.5553286522626877],[124,298,71,-0.5575743019580841],[124,298,72,-0.5605612844228745],[124,298,73,-0.563075702637434],[124,298,74,-0.5643343068659306],[124,298,75,-0.5640878677368164],[124,298,76,-0.5618016794323921],[124,298,77,-0.5576293431222439],[124,298,78,-0.5526084005832672],[124,298,79,-0.5472907461225986],[124,299,64,-0.5549865774810314],[124,299,65,-0.5559594221413136],[124,299,66,-0.5551650784909725],[124,299,67,-0.5536443181335926],[124,299,68,-0.5528128109872341],[124,299,69,-0.5535379312932491],[124,299,70,-0.5553286522626877],[124,299,71,-0.5575743019580841],[124,299,72,-0.5605612844228745],[124,299,73,-0.563075702637434],[124,299,74,-0.5643343068659306],[124,299,75,-0.5640878677368164],[124,299,76,-0.5618016794323921],[124,299,77,-0.5576293431222439],[124,299,78,-0.5526084005832672],[124,299,79,-0.5472907461225986],[124,300,64,-0.5549865774810314],[124,300,65,-0.5559594221413136],[124,300,66,-0.5551650784909725],[124,300,67,-0.5536443181335926],[124,300,68,-0.5528128109872341],[124,300,69,-0.5535379312932491],[124,300,70,-0.5553286522626877],[124,300,71,-0.5575743019580841],[124,300,72,-0.5605612844228745],[124,300,73,-0.563075702637434],[124,300,74,-0.5643343068659306],[124,300,75,-0.5640878677368164],[124,300,76,-0.5618016794323921],[124,300,77,-0.5576293431222439],[124,300,78,-0.5526084005832672],[124,300,79,-0.5472907461225986],[124,301,64,-0.5549865774810314],[124,301,65,-0.5559594221413136],[124,301,66,-0.5551650784909725],[124,301,67,-0.5536443181335926],[124,301,68,-0.5528128109872341],[124,301,69,-0.5535379312932491],[124,301,70,-0.5553286522626877],[124,301,71,-0.5575743019580841],[124,301,72,-0.5605612844228745],[124,301,73,-0.563075702637434],[124,301,74,-0.5643343068659306],[124,301,75,-0.5640878677368164],[124,301,76,-0.5618016794323921],[124,301,77,-0.5576293431222439],[124,301,78,-0.5526084005832672],[124,301,79,-0.5472907461225986],[124,302,64,-0.5549865774810314],[124,302,65,-0.5559594221413136],[124,302,66,-0.5551650784909725],[124,302,67,-0.5536443181335926],[124,302,68,-0.5528128109872341],[124,302,69,-0.5535379312932491],[124,302,70,-0.5553286522626877],[124,302,71,-0.5575743019580841],[124,302,72,-0.5605612844228745],[124,302,73,-0.563075702637434],[124,302,74,-0.5643343068659306],[124,302,75,-0.5640878677368164],[124,302,76,-0.5618016794323921],[124,302,77,-0.5576293431222439],[124,302,78,-0.5526084005832672],[124,302,79,-0.5472907461225986],[124,303,64,-0.5549865774810314],[124,303,65,-0.5559594221413136],[124,303,66,-0.5551650784909725],[124,303,67,-0.5536443181335926],[124,303,68,-0.5528128109872341],[124,303,69,-0.5535379312932491],[124,303,70,-0.5553286522626877],[124,303,71,-0.5575743019580841],[124,303,72,-0.5605612844228745],[124,303,73,-0.563075702637434],[124,303,74,-0.5643343068659306],[124,303,75,-0.5640878677368164],[124,303,76,-0.5618016794323921],[124,303,77,-0.5576293431222439],[124,303,78,-0.5526084005832672],[124,303,79,-0.5472907461225986],[124,304,64,-0.5549865774810314],[124,304,65,-0.5559594221413136],[124,304,66,-0.5551650784909725],[124,304,67,-0.5536443181335926],[124,304,68,-0.5528128109872341],[124,304,69,-0.5535379312932491],[124,304,70,-0.5553286522626877],[124,304,71,-0.5575743019580841],[124,304,72,-0.5605612844228745],[124,304,73,-0.563075702637434],[124,304,74,-0.5643343068659306],[124,304,75,-0.5640878677368164],[124,304,76,-0.5618016794323921],[124,304,77,-0.5576293431222439],[124,304,78,-0.5526084005832672],[124,304,79,-0.5472907461225986],[124,305,64,-0.5549865774810314],[124,305,65,-0.5559594221413136],[124,305,66,-0.5551650784909725],[124,305,67,-0.5536443181335926],[124,305,68,-0.5528128109872341],[124,305,69,-0.5535379312932491],[124,305,70,-0.5553286522626877],[124,305,71,-0.5575743019580841],[124,305,72,-0.5605612844228745],[124,305,73,-0.563075702637434],[124,305,74,-0.5643343068659306],[124,305,75,-0.5640878677368164],[124,305,76,-0.5618016794323921],[124,305,77,-0.5576293431222439],[124,305,78,-0.5526084005832672],[124,305,79,-0.5472907461225986],[124,306,64,-0.5549865774810314],[124,306,65,-0.5559594221413136],[124,306,66,-0.5551650784909725],[124,306,67,-0.5536443181335926],[124,306,68,-0.5528128109872341],[124,306,69,-0.5535379312932491],[124,306,70,-0.5553286522626877],[124,306,71,-0.5575743019580841],[124,306,72,-0.5605612844228745],[124,306,73,-0.563075702637434],[124,306,74,-0.5643343068659306],[124,306,75,-0.5640878677368164],[124,306,76,-0.5618016794323921],[124,306,77,-0.5576293431222439],[124,306,78,-0.5526084005832672],[124,306,79,-0.5472907461225986],[124,307,64,-0.5549865774810314],[124,307,65,-0.5559594221413136],[124,307,66,-0.5551650784909725],[124,307,67,-0.5536443181335926],[124,307,68,-0.5528128109872341],[124,307,69,-0.5535379312932491],[124,307,70,-0.5553286522626877],[124,307,71,-0.5575743019580841],[124,307,72,-0.5605612844228745],[124,307,73,-0.563075702637434],[124,307,74,-0.5643343068659306],[124,307,75,-0.5640878677368164],[124,307,76,-0.5618016794323921],[124,307,77,-0.5576293431222439],[124,307,78,-0.5526084005832672],[124,307,79,-0.5472907461225986],[124,308,64,-0.5549865774810314],[124,308,65,-0.5559594221413136],[124,308,66,-0.5551650784909725],[124,308,67,-0.5536443181335926],[124,308,68,-0.5528128109872341],[124,308,69,-0.5535379312932491],[124,308,70,-0.5553286522626877],[124,308,71,-0.5575743019580841],[124,308,72,-0.5605612844228745],[124,308,73,-0.563075702637434],[124,308,74,-0.5643343068659306],[124,308,75,-0.5640878677368164],[124,308,76,-0.5618016794323921],[124,308,77,-0.5576293431222439],[124,308,78,-0.5526084005832672],[124,308,79,-0.5472907461225986],[124,309,64,-0.5549865774810314],[124,309,65,-0.5559594221413136],[124,309,66,-0.5551650784909725],[124,309,67,-0.5536443181335926],[124,309,68,-0.5528128109872341],[124,309,69,-0.5535379312932491],[124,309,70,-0.5553286522626877],[124,309,71,-0.5575743019580841],[124,309,72,-0.5605612844228745],[124,309,73,-0.563075702637434],[124,309,74,-0.5643343068659306],[124,309,75,-0.5640878677368164],[124,309,76,-0.5618016794323921],[124,309,77,-0.5576293431222439],[124,309,78,-0.5526084005832672],[124,309,79,-0.5472907461225986],[124,310,64,-0.5549865774810314],[124,310,65,-0.5559594221413136],[124,310,66,-0.5551650784909725],[124,310,67,-0.5536443181335926],[124,310,68,-0.5528128109872341],[124,310,69,-0.5535379312932491],[124,310,70,-0.5553286522626877],[124,310,71,-0.5575743019580841],[124,310,72,-0.5605612844228745],[124,310,73,-0.563075702637434],[124,310,74,-0.5643343068659306],[124,310,75,-0.5640878677368164],[124,310,76,-0.5618016794323921],[124,310,77,-0.5576293431222439],[124,310,78,-0.5526084005832672],[124,310,79,-0.5472907461225986],[124,311,64,-0.5549865774810314],[124,311,65,-0.5559594221413136],[124,311,66,-0.5551650784909725],[124,311,67,-0.5536443181335926],[124,311,68,-0.5528128109872341],[124,311,69,-0.5535379312932491],[124,311,70,-0.5553286522626877],[124,311,71,-0.5575743019580841],[124,311,72,-0.5605612844228745],[124,311,73,-0.563075702637434],[124,311,74,-0.5643343068659306],[124,311,75,-0.5640878677368164],[124,311,76,-0.5618016794323921],[124,311,77,-0.5576293431222439],[124,311,78,-0.5526084005832672],[124,311,79,-0.5472907461225986],[124,312,64,-0.5549865774810314],[124,312,65,-0.5559594221413136],[124,312,66,-0.5551650784909725],[124,312,67,-0.5536443181335926],[124,312,68,-0.5528128109872341],[124,312,69,-0.5535379312932491],[124,312,70,-0.5553286522626877],[124,312,71,-0.5575743019580841],[124,312,72,-0.5605612844228745],[124,312,73,-0.563075702637434],[124,312,74,-0.5643343068659306],[124,312,75,-0.5640878677368164],[124,312,76,-0.5618016794323921],[124,312,77,-0.5576293431222439],[124,312,78,-0.5526084005832672],[124,312,79,-0.5472907461225986],[124,313,64,-0.5549865774810314],[124,313,65,-0.5559594221413136],[124,313,66,-0.5551650784909725],[124,313,67,-0.5536443181335926],[124,313,68,-0.5528128109872341],[124,313,69,-0.5535379312932491],[124,313,70,-0.5553286522626877],[124,313,71,-0.5575743019580841],[124,313,72,-0.5605612844228745],[124,313,73,-0.563075702637434],[124,313,74,-0.5643343068659306],[124,313,75,-0.5640878677368164],[124,313,76,-0.5618016794323921],[124,313,77,-0.5576293431222439],[124,313,78,-0.5526084005832672],[124,313,79,-0.5472907461225986],[124,314,64,-0.5549865774810314],[124,314,65,-0.5559594221413136],[124,314,66,-0.5551650784909725],[124,314,67,-0.5536443181335926],[124,314,68,-0.5528128109872341],[124,314,69,-0.5535379312932491],[124,314,70,-0.5553286522626877],[124,314,71,-0.5575743019580841],[124,314,72,-0.5605612844228745],[124,314,73,-0.563075702637434],[124,314,74,-0.5643343068659306],[124,314,75,-0.5640878677368164],[124,314,76,-0.5618016794323921],[124,314,77,-0.5576293431222439],[124,314,78,-0.5526084005832672],[124,314,79,-0.5472907461225986],[124,315,64,-0.5549865774810314],[124,315,65,-0.5559594221413136],[124,315,66,-0.5551650784909725],[124,315,67,-0.5536443181335926],[124,315,68,-0.5528128109872341],[124,315,69,-0.5535379312932491],[124,315,70,-0.5553286522626877],[124,315,71,-0.5575743019580841],[124,315,72,-0.5605612844228745],[124,315,73,-0.563075702637434],[124,315,74,-0.5643343068659306],[124,315,75,-0.5640878677368164],[124,315,76,-0.5618016794323921],[124,315,77,-0.5576293431222439],[124,315,78,-0.5526084005832672],[124,315,79,-0.5472907461225986],[124,316,64,-0.5549865774810314],[124,316,65,-0.5559594221413136],[124,316,66,-0.5551650784909725],[124,316,67,-0.5536443181335926],[124,316,68,-0.5528128109872341],[124,316,69,-0.5535379312932491],[124,316,70,-0.5553286522626877],[124,316,71,-0.5575743019580841],[124,316,72,-0.5605612844228745],[124,316,73,-0.563075702637434],[124,316,74,-0.5643343068659306],[124,316,75,-0.5640878677368164],[124,316,76,-0.5618016794323921],[124,316,77,-0.5576293431222439],[124,316,78,-0.5526084005832672],[124,316,79,-0.5472907461225986],[124,317,64,-0.5549865774810314],[124,317,65,-0.5559594221413136],[124,317,66,-0.5551650784909725],[124,317,67,-0.5536443181335926],[124,317,68,-0.5528128109872341],[124,317,69,-0.5535379312932491],[124,317,70,-0.5553286522626877],[124,317,71,-0.5575743019580841],[124,317,72,-0.5605612844228745],[124,317,73,-0.563075702637434],[124,317,74,-0.5643343068659306],[124,317,75,-0.5640878677368164],[124,317,76,-0.5618016794323921],[124,317,77,-0.5576293431222439],[124,317,78,-0.5526084005832672],[124,317,79,-0.5472907461225986],[124,318,64,-0.5549865774810314],[124,318,65,-0.5559594221413136],[124,318,66,-0.5551650784909725],[124,318,67,-0.5536443181335926],[124,318,68,-0.5528128109872341],[124,318,69,-0.5535379312932491],[124,318,70,-0.5553286522626877],[124,318,71,-0.5575743019580841],[124,318,72,-0.5605612844228745],[124,318,73,-0.563075702637434],[124,318,74,-0.5643343068659306],[124,318,75,-0.5640878677368164],[124,318,76,-0.5618016794323921],[124,318,77,-0.5576293431222439],[124,318,78,-0.5526084005832672],[124,318,79,-0.5472907461225986],[124,319,64,-0.5549865774810314],[124,319,65,-0.5559594221413136],[124,319,66,-0.5551650784909725],[124,319,67,-0.5536443181335926],[124,319,68,-0.5528128109872341],[124,319,69,-0.5535379312932491],[124,319,70,-0.5553286522626877],[124,319,71,-0.5575743019580841],[124,319,72,-0.5605612844228745],[124,319,73,-0.563075702637434],[124,319,74,-0.5643343068659306],[124,319,75,-0.5640878677368164],[124,319,76,-0.5618016794323921],[124,319,77,-0.5576293431222439],[124,319,78,-0.5526084005832672],[124,319,79,-0.5472907461225986],[125,-64,64,-0.5549346171319485],[125,-64,65,-0.5566596873104572],[125,-64,66,-0.5565491765737534],[125,-64,67,-0.5553769171237946],[125,-64,68,-0.5544370338320732],[125,-64,69,-0.554666593670845],[125,-64,70,-0.5557628497481346],[125,-64,71,-0.5574178770184517],[125,-64,72,-0.5602027885615826],[125,-64,73,-0.5630908571183681],[125,-64,74,-0.5647980086505413],[125,-64,75,-0.5648296177387238],[125,-64,76,-0.5626550279557705],[125,-64,77,-0.5583309903740883],[125,-64,78,-0.5530056692659855],[125,-64,79,-0.5474466904997826],[125,-63,64,-0.5549346171319485],[125,-63,65,-0.5566596873104572],[125,-63,66,-0.5565491765737534],[125,-63,67,-0.5553769171237946],[125,-63,68,-0.5544370338320732],[125,-63,69,-0.554666593670845],[125,-63,70,-0.5557628497481346],[125,-63,71,-0.5574178770184517],[125,-63,72,-0.5602027885615826],[125,-63,73,-0.5630908571183681],[125,-63,74,-0.5647980086505413],[125,-63,75,-0.5648296177387238],[125,-63,76,-0.5626550279557705],[125,-63,77,-0.5583309903740883],[125,-63,78,-0.5530056692659855],[125,-63,79,-0.5474466904997826],[125,-62,64,-0.5549346171319485],[125,-62,65,-0.5566596873104572],[125,-62,66,-0.5565491765737534],[125,-62,67,-0.5553769171237946],[125,-62,68,-0.5544370338320732],[125,-62,69,-0.554666593670845],[125,-62,70,-0.5557628497481346],[125,-62,71,-0.5574178770184517],[125,-62,72,-0.5602027885615826],[125,-62,73,-0.5630908571183681],[125,-62,74,-0.5647980086505413],[125,-62,75,-0.5648296177387238],[125,-62,76,-0.5626550279557705],[125,-62,77,-0.5583309903740883],[125,-62,78,-0.5530056692659855],[125,-62,79,-0.5474466904997826],[125,-61,64,-0.5549346171319485],[125,-61,65,-0.5566596873104572],[125,-61,66,-0.5565491765737534],[125,-61,67,-0.5553769171237946],[125,-61,68,-0.5544370338320732],[125,-61,69,-0.554666593670845],[125,-61,70,-0.5557628497481346],[125,-61,71,-0.5574178770184517],[125,-61,72,-0.5602027885615826],[125,-61,73,-0.5630908571183681],[125,-61,74,-0.5647980086505413],[125,-61,75,-0.5648296177387238],[125,-61,76,-0.5626550279557705],[125,-61,77,-0.5583309903740883],[125,-61,78,-0.5530056692659855],[125,-61,79,-0.5474466904997826],[125,-60,64,-0.5549346171319485],[125,-60,65,-0.5566596873104572],[125,-60,66,-0.5565491765737534],[125,-60,67,-0.5553769171237946],[125,-60,68,-0.5544370338320732],[125,-60,69,-0.554666593670845],[125,-60,70,-0.5557628497481346],[125,-60,71,-0.5574178770184517],[125,-60,72,-0.5602027885615826],[125,-60,73,-0.5630908571183681],[125,-60,74,-0.5647980086505413],[125,-60,75,-0.5648296177387238],[125,-60,76,-0.5626550279557705],[125,-60,77,-0.5583309903740883],[125,-60,78,-0.5530056692659855],[125,-60,79,-0.5474466904997826],[125,-59,64,-0.5549346171319485],[125,-59,65,-0.5566596873104572],[125,-59,66,-0.5565491765737534],[125,-59,67,-0.5553769171237946],[125,-59,68,-0.5544370338320732],[125,-59,69,-0.554666593670845],[125,-59,70,-0.5557628497481346],[125,-59,71,-0.5574178770184517],[125,-59,72,-0.5602027885615826],[125,-59,73,-0.5630908571183681],[125,-59,74,-0.5647980086505413],[125,-59,75,-0.5648296177387238],[125,-59,76,-0.5626550279557705],[125,-59,77,-0.5583309903740883],[125,-59,78,-0.5530056692659855],[125,-59,79,-0.5474466904997826],[125,-58,64,-0.5549346171319485],[125,-58,65,-0.5566596873104572],[125,-58,66,-0.5565491765737534],[125,-58,67,-0.5553769171237946],[125,-58,68,-0.5544370338320732],[125,-58,69,-0.554666593670845],[125,-58,70,-0.5557628497481346],[125,-58,71,-0.5574178770184517],[125,-58,72,-0.5602027885615826],[125,-58,73,-0.5630908571183681],[125,-58,74,-0.5647980086505413],[125,-58,75,-0.5648296177387238],[125,-58,76,-0.5626550279557705],[125,-58,77,-0.5583309903740883],[125,-58,78,-0.5530056692659855],[125,-58,79,-0.5474466904997826],[125,-57,64,-0.5549346171319485],[125,-57,65,-0.5566596873104572],[125,-57,66,-0.5565491765737534],[125,-57,67,-0.5553769171237946],[125,-57,68,-0.5544370338320732],[125,-57,69,-0.554666593670845],[125,-57,70,-0.5557628497481346],[125,-57,71,-0.5574178770184517],[125,-57,72,-0.5602027885615826],[125,-57,73,-0.5630908571183681],[125,-57,74,-0.5647980086505413],[125,-57,75,-0.5648296177387238],[125,-57,76,-0.5626550279557705],[125,-57,77,-0.5583309903740883],[125,-57,78,-0.5530056692659855],[125,-57,79,-0.5474466904997826],[125,-56,64,-0.5549346171319485],[125,-56,65,-0.5566596873104572],[125,-56,66,-0.5565491765737534],[125,-56,67,-0.5553769171237946],[125,-56,68,-0.5544370338320732],[125,-56,69,-0.554666593670845],[125,-56,70,-0.5557628497481346],[125,-56,71,-0.5574178770184517],[125,-56,72,-0.5602027885615826],[125,-56,73,-0.5630908571183681],[125,-56,74,-0.5647980086505413],[125,-56,75,-0.5648296177387238],[125,-56,76,-0.5626550279557705],[125,-56,77,-0.5583309903740883],[125,-56,78,-0.5530056692659855],[125,-56,79,-0.5474466904997826],[125,-55,64,-0.5549346171319485],[125,-55,65,-0.5566596873104572],[125,-55,66,-0.5565491765737534],[125,-55,67,-0.5553769171237946],[125,-55,68,-0.5544370338320732],[125,-55,69,-0.554666593670845],[125,-55,70,-0.5557628497481346],[125,-55,71,-0.5574178770184517],[125,-55,72,-0.5602027885615826],[125,-55,73,-0.5630908571183681],[125,-55,74,-0.5647980086505413],[125,-55,75,-0.5648296177387238],[125,-55,76,-0.5626550279557705],[125,-55,77,-0.5583309903740883],[125,-55,78,-0.5530056692659855],[125,-55,79,-0.5474466904997826],[125,-54,64,-0.5549346171319485],[125,-54,65,-0.5566596873104572],[125,-54,66,-0.5565491765737534],[125,-54,67,-0.5553769171237946],[125,-54,68,-0.5544370338320732],[125,-54,69,-0.554666593670845],[125,-54,70,-0.5557628497481346],[125,-54,71,-0.5574178770184517],[125,-54,72,-0.5602027885615826],[125,-54,73,-0.5630908571183681],[125,-54,74,-0.5647980086505413],[125,-54,75,-0.5648296177387238],[125,-54,76,-0.5626550279557705],[125,-54,77,-0.5583309903740883],[125,-54,78,-0.5530056692659855],[125,-54,79,-0.5474466904997826],[125,-53,64,-0.5549346171319485],[125,-53,65,-0.5566596873104572],[125,-53,66,-0.5565491765737534],[125,-53,67,-0.5553769171237946],[125,-53,68,-0.5544370338320732],[125,-53,69,-0.554666593670845],[125,-53,70,-0.5557628497481346],[125,-53,71,-0.5574178770184517],[125,-53,72,-0.5602027885615826],[125,-53,73,-0.5630908571183681],[125,-53,74,-0.5647980086505413],[125,-53,75,-0.5648296177387238],[125,-53,76,-0.5626550279557705],[125,-53,77,-0.5583309903740883],[125,-53,78,-0.5530056692659855],[125,-53,79,-0.5474466904997826],[125,-52,64,-0.5549346171319485],[125,-52,65,-0.5566596873104572],[125,-52,66,-0.5565491765737534],[125,-52,67,-0.5553769171237946],[125,-52,68,-0.5544370338320732],[125,-52,69,-0.554666593670845],[125,-52,70,-0.5557628497481346],[125,-52,71,-0.5574178770184517],[125,-52,72,-0.5602027885615826],[125,-52,73,-0.5630908571183681],[125,-52,74,-0.5647980086505413],[125,-52,75,-0.5648296177387238],[125,-52,76,-0.5626550279557705],[125,-52,77,-0.5583309903740883],[125,-52,78,-0.5530056692659855],[125,-52,79,-0.5474466904997826],[125,-51,64,-0.5549346171319485],[125,-51,65,-0.5566596873104572],[125,-51,66,-0.5565491765737534],[125,-51,67,-0.5553769171237946],[125,-51,68,-0.5544370338320732],[125,-51,69,-0.554666593670845],[125,-51,70,-0.5557628497481346],[125,-51,71,-0.5574178770184517],[125,-51,72,-0.5602027885615826],[125,-51,73,-0.5630908571183681],[125,-51,74,-0.5647980086505413],[125,-51,75,-0.5648296177387238],[125,-51,76,-0.5626550279557705],[125,-51,77,-0.5583309903740883],[125,-51,78,-0.5530056692659855],[125,-51,79,-0.5474466904997826],[125,-50,64,-0.5549346171319485],[125,-50,65,-0.5566596873104572],[125,-50,66,-0.5565491765737534],[125,-50,67,-0.5553769171237946],[125,-50,68,-0.5544370338320732],[125,-50,69,-0.554666593670845],[125,-50,70,-0.5557628497481346],[125,-50,71,-0.5574178770184517],[125,-50,72,-0.5602027885615826],[125,-50,73,-0.5630908571183681],[125,-50,74,-0.5647980086505413],[125,-50,75,-0.5648296177387238],[125,-50,76,-0.5626550279557705],[125,-50,77,-0.5583309903740883],[125,-50,78,-0.5530056692659855],[125,-50,79,-0.5474466904997826],[125,-49,64,-0.5549346171319485],[125,-49,65,-0.5566596873104572],[125,-49,66,-0.5565491765737534],[125,-49,67,-0.5553769171237946],[125,-49,68,-0.5544370338320732],[125,-49,69,-0.554666593670845],[125,-49,70,-0.5557628497481346],[125,-49,71,-0.5574178770184517],[125,-49,72,-0.5602027885615826],[125,-49,73,-0.5630908571183681],[125,-49,74,-0.5647980086505413],[125,-49,75,-0.5648296177387238],[125,-49,76,-0.5626550279557705],[125,-49,77,-0.5583309903740883],[125,-49,78,-0.5530056692659855],[125,-49,79,-0.5474466904997826],[125,-48,64,-0.5549346171319485],[125,-48,65,-0.5566596873104572],[125,-48,66,-0.5565491765737534],[125,-48,67,-0.5553769171237946],[125,-48,68,-0.5544370338320732],[125,-48,69,-0.554666593670845],[125,-48,70,-0.5557628497481346],[125,-48,71,-0.5574178770184517],[125,-48,72,-0.5602027885615826],[125,-48,73,-0.5630908571183681],[125,-48,74,-0.5647980086505413],[125,-48,75,-0.5648296177387238],[125,-48,76,-0.5626550279557705],[125,-48,77,-0.5583309903740883],[125,-48,78,-0.5530056692659855],[125,-48,79,-0.5474466904997826],[125,-47,64,-0.5549346171319485],[125,-47,65,-0.5566596873104572],[125,-47,66,-0.5565491765737534],[125,-47,67,-0.5553769171237946],[125,-47,68,-0.5544370338320732],[125,-47,69,-0.554666593670845],[125,-47,70,-0.5557628497481346],[125,-47,71,-0.5574178770184517],[125,-47,72,-0.5602027885615826],[125,-47,73,-0.5630908571183681],[125,-47,74,-0.5647980086505413],[125,-47,75,-0.5648296177387238],[125,-47,76,-0.5626550279557705],[125,-47,77,-0.5583309903740883],[125,-47,78,-0.5530056692659855],[125,-47,79,-0.5474466904997826],[125,-46,64,-0.5549346171319485],[125,-46,65,-0.5566596873104572],[125,-46,66,-0.5565491765737534],[125,-46,67,-0.5553769171237946],[125,-46,68,-0.5544370338320732],[125,-46,69,-0.554666593670845],[125,-46,70,-0.5557628497481346],[125,-46,71,-0.5574178770184517],[125,-46,72,-0.5602027885615826],[125,-46,73,-0.5630908571183681],[125,-46,74,-0.5647980086505413],[125,-46,75,-0.5648296177387238],[125,-46,76,-0.5626550279557705],[125,-46,77,-0.5583309903740883],[125,-46,78,-0.5530056692659855],[125,-46,79,-0.5474466904997826],[125,-45,64,-0.5549346171319485],[125,-45,65,-0.5566596873104572],[125,-45,66,-0.5565491765737534],[125,-45,67,-0.5553769171237946],[125,-45,68,-0.5544370338320732],[125,-45,69,-0.554666593670845],[125,-45,70,-0.5557628497481346],[125,-45,71,-0.5574178770184517],[125,-45,72,-0.5602027885615826],[125,-45,73,-0.5630908571183681],[125,-45,74,-0.5647980086505413],[125,-45,75,-0.5648296177387238],[125,-45,76,-0.5626550279557705],[125,-45,77,-0.5583309903740883],[125,-45,78,-0.5530056692659855],[125,-45,79,-0.5474466904997826],[125,-44,64,-0.5549346171319485],[125,-44,65,-0.5566596873104572],[125,-44,66,-0.5565491765737534],[125,-44,67,-0.5553769171237946],[125,-44,68,-0.5544370338320732],[125,-44,69,-0.554666593670845],[125,-44,70,-0.5557628497481346],[125,-44,71,-0.5574178770184517],[125,-44,72,-0.5602027885615826],[125,-44,73,-0.5630908571183681],[125,-44,74,-0.5647980086505413],[125,-44,75,-0.5648296177387238],[125,-44,76,-0.5626550279557705],[125,-44,77,-0.5583309903740883],[125,-44,78,-0.5530056692659855],[125,-44,79,-0.5474466904997826],[125,-43,64,-0.5549346171319485],[125,-43,65,-0.5566596873104572],[125,-43,66,-0.5565491765737534],[125,-43,67,-0.5553769171237946],[125,-43,68,-0.5544370338320732],[125,-43,69,-0.554666593670845],[125,-43,70,-0.5557628497481346],[125,-43,71,-0.5574178770184517],[125,-43,72,-0.5602027885615826],[125,-43,73,-0.5630908571183681],[125,-43,74,-0.5647980086505413],[125,-43,75,-0.5648296177387238],[125,-43,76,-0.5626550279557705],[125,-43,77,-0.5583309903740883],[125,-43,78,-0.5530056692659855],[125,-43,79,-0.5474466904997826],[125,-42,64,-0.5549346171319485],[125,-42,65,-0.5566596873104572],[125,-42,66,-0.5565491765737534],[125,-42,67,-0.5553769171237946],[125,-42,68,-0.5544370338320732],[125,-42,69,-0.554666593670845],[125,-42,70,-0.5557628497481346],[125,-42,71,-0.5574178770184517],[125,-42,72,-0.5602027885615826],[125,-42,73,-0.5630908571183681],[125,-42,74,-0.5647980086505413],[125,-42,75,-0.5648296177387238],[125,-42,76,-0.5626550279557705],[125,-42,77,-0.5583309903740883],[125,-42,78,-0.5530056692659855],[125,-42,79,-0.5474466904997826],[125,-41,64,-0.5549346171319485],[125,-41,65,-0.5566596873104572],[125,-41,66,-0.5565491765737534],[125,-41,67,-0.5553769171237946],[125,-41,68,-0.5544370338320732],[125,-41,69,-0.554666593670845],[125,-41,70,-0.5557628497481346],[125,-41,71,-0.5574178770184517],[125,-41,72,-0.5602027885615826],[125,-41,73,-0.5630908571183681],[125,-41,74,-0.5647980086505413],[125,-41,75,-0.5648296177387238],[125,-41,76,-0.5626550279557705],[125,-41,77,-0.5583309903740883],[125,-41,78,-0.5530056692659855],[125,-41,79,-0.5474466904997826],[125,-40,64,-0.5549346171319485],[125,-40,65,-0.5566596873104572],[125,-40,66,-0.5565491765737534],[125,-40,67,-0.5553769171237946],[125,-40,68,-0.5544370338320732],[125,-40,69,-0.554666593670845],[125,-40,70,-0.5557628497481346],[125,-40,71,-0.5574178770184517],[125,-40,72,-0.5602027885615826],[125,-40,73,-0.5630908571183681],[125,-40,74,-0.5647980086505413],[125,-40,75,-0.5648296177387238],[125,-40,76,-0.5626550279557705],[125,-40,77,-0.5583309903740883],[125,-40,78,-0.5530056692659855],[125,-40,79,-0.5474466904997826],[125,-39,64,-0.5549346171319485],[125,-39,65,-0.5566596873104572],[125,-39,66,-0.5565491765737534],[125,-39,67,-0.5553769171237946],[125,-39,68,-0.5544370338320732],[125,-39,69,-0.554666593670845],[125,-39,70,-0.5557628497481346],[125,-39,71,-0.5574178770184517],[125,-39,72,-0.5602027885615826],[125,-39,73,-0.5630908571183681],[125,-39,74,-0.5647980086505413],[125,-39,75,-0.5648296177387238],[125,-39,76,-0.5626550279557705],[125,-39,77,-0.5583309903740883],[125,-39,78,-0.5530056692659855],[125,-39,79,-0.5474466904997826],[125,-38,64,-0.5549346171319485],[125,-38,65,-0.5566596873104572],[125,-38,66,-0.5565491765737534],[125,-38,67,-0.5553769171237946],[125,-38,68,-0.5544370338320732],[125,-38,69,-0.554666593670845],[125,-38,70,-0.5557628497481346],[125,-38,71,-0.5574178770184517],[125,-38,72,-0.5602027885615826],[125,-38,73,-0.5630908571183681],[125,-38,74,-0.5647980086505413],[125,-38,75,-0.5648296177387238],[125,-38,76,-0.5626550279557705],[125,-38,77,-0.5583309903740883],[125,-38,78,-0.5530056692659855],[125,-38,79,-0.5474466904997826],[125,-37,64,-0.5549346171319485],[125,-37,65,-0.5566596873104572],[125,-37,66,-0.5565491765737534],[125,-37,67,-0.5553769171237946],[125,-37,68,-0.5544370338320732],[125,-37,69,-0.554666593670845],[125,-37,70,-0.5557628497481346],[125,-37,71,-0.5574178770184517],[125,-37,72,-0.5602027885615826],[125,-37,73,-0.5630908571183681],[125,-37,74,-0.5647980086505413],[125,-37,75,-0.5648296177387238],[125,-37,76,-0.5626550279557705],[125,-37,77,-0.5583309903740883],[125,-37,78,-0.5530056692659855],[125,-37,79,-0.5474466904997826],[125,-36,64,-0.5549346171319485],[125,-36,65,-0.5566596873104572],[125,-36,66,-0.5565491765737534],[125,-36,67,-0.5553769171237946],[125,-36,68,-0.5544370338320732],[125,-36,69,-0.554666593670845],[125,-36,70,-0.5557628497481346],[125,-36,71,-0.5574178770184517],[125,-36,72,-0.5602027885615826],[125,-36,73,-0.5630908571183681],[125,-36,74,-0.5647980086505413],[125,-36,75,-0.5648296177387238],[125,-36,76,-0.5626550279557705],[125,-36,77,-0.5583309903740883],[125,-36,78,-0.5530056692659855],[125,-36,79,-0.5474466904997826],[125,-35,64,-0.5549346171319485],[125,-35,65,-0.5566596873104572],[125,-35,66,-0.5565491765737534],[125,-35,67,-0.5553769171237946],[125,-35,68,-0.5544370338320732],[125,-35,69,-0.554666593670845],[125,-35,70,-0.5557628497481346],[125,-35,71,-0.5574178770184517],[125,-35,72,-0.5602027885615826],[125,-35,73,-0.5630908571183681],[125,-35,74,-0.5647980086505413],[125,-35,75,-0.5648296177387238],[125,-35,76,-0.5626550279557705],[125,-35,77,-0.5583309903740883],[125,-35,78,-0.5530056692659855],[125,-35,79,-0.5474466904997826],[125,-34,64,-0.5549346171319485],[125,-34,65,-0.5566596873104572],[125,-34,66,-0.5565491765737534],[125,-34,67,-0.5553769171237946],[125,-34,68,-0.5544370338320732],[125,-34,69,-0.554666593670845],[125,-34,70,-0.5557628497481346],[125,-34,71,-0.5574178770184517],[125,-34,72,-0.5602027885615826],[125,-34,73,-0.5630908571183681],[125,-34,74,-0.5647980086505413],[125,-34,75,-0.5648296177387238],[125,-34,76,-0.5626550279557705],[125,-34,77,-0.5583309903740883],[125,-34,78,-0.5530056692659855],[125,-34,79,-0.5474466904997826],[125,-33,64,-0.5549346171319485],[125,-33,65,-0.5566596873104572],[125,-33,66,-0.5565491765737534],[125,-33,67,-0.5553769171237946],[125,-33,68,-0.5544370338320732],[125,-33,69,-0.554666593670845],[125,-33,70,-0.5557628497481346],[125,-33,71,-0.5574178770184517],[125,-33,72,-0.5602027885615826],[125,-33,73,-0.5630908571183681],[125,-33,74,-0.5647980086505413],[125,-33,75,-0.5648296177387238],[125,-33,76,-0.5626550279557705],[125,-33,77,-0.5583309903740883],[125,-33,78,-0.5530056692659855],[125,-33,79,-0.5474466904997826],[125,-32,64,-0.5549346171319485],[125,-32,65,-0.5566596873104572],[125,-32,66,-0.5565491765737534],[125,-32,67,-0.5553769171237946],[125,-32,68,-0.5544370338320732],[125,-32,69,-0.554666593670845],[125,-32,70,-0.5557628497481346],[125,-32,71,-0.5574178770184517],[125,-32,72,-0.5602027885615826],[125,-32,73,-0.5630908571183681],[125,-32,74,-0.5647980086505413],[125,-32,75,-0.5648296177387238],[125,-32,76,-0.5626550279557705],[125,-32,77,-0.5583309903740883],[125,-32,78,-0.5530056692659855],[125,-32,79,-0.5474466904997826],[125,-31,64,-0.5549346171319485],[125,-31,65,-0.5566596873104572],[125,-31,66,-0.5565491765737534],[125,-31,67,-0.5553769171237946],[125,-31,68,-0.5544370338320732],[125,-31,69,-0.554666593670845],[125,-31,70,-0.5557628497481346],[125,-31,71,-0.5574178770184517],[125,-31,72,-0.5602027885615826],[125,-31,73,-0.5630908571183681],[125,-31,74,-0.5647980086505413],[125,-31,75,-0.5648296177387238],[125,-31,76,-0.5626550279557705],[125,-31,77,-0.5583309903740883],[125,-31,78,-0.5530056692659855],[125,-31,79,-0.5474466904997826],[125,-30,64,-0.5549346171319485],[125,-30,65,-0.5566596873104572],[125,-30,66,-0.5565491765737534],[125,-30,67,-0.5553769171237946],[125,-30,68,-0.5544370338320732],[125,-30,69,-0.554666593670845],[125,-30,70,-0.5557628497481346],[125,-30,71,-0.5574178770184517],[125,-30,72,-0.5602027885615826],[125,-30,73,-0.5630908571183681],[125,-30,74,-0.5647980086505413],[125,-30,75,-0.5648296177387238],[125,-30,76,-0.5626550279557705],[125,-30,77,-0.5583309903740883],[125,-30,78,-0.5530056692659855],[125,-30,79,-0.5474466904997826],[125,-29,64,-0.5549346171319485],[125,-29,65,-0.5566596873104572],[125,-29,66,-0.5565491765737534],[125,-29,67,-0.5553769171237946],[125,-29,68,-0.5544370338320732],[125,-29,69,-0.554666593670845],[125,-29,70,-0.5557628497481346],[125,-29,71,-0.5574178770184517],[125,-29,72,-0.5602027885615826],[125,-29,73,-0.5630908571183681],[125,-29,74,-0.5647980086505413],[125,-29,75,-0.5648296177387238],[125,-29,76,-0.5626550279557705],[125,-29,77,-0.5583309903740883],[125,-29,78,-0.5530056692659855],[125,-29,79,-0.5474466904997826],[125,-28,64,-0.5549346171319485],[125,-28,65,-0.5566596873104572],[125,-28,66,-0.5565491765737534],[125,-28,67,-0.5553769171237946],[125,-28,68,-0.5544370338320732],[125,-28,69,-0.554666593670845],[125,-28,70,-0.5557628497481346],[125,-28,71,-0.5574178770184517],[125,-28,72,-0.5602027885615826],[125,-28,73,-0.5630908571183681],[125,-28,74,-0.5647980086505413],[125,-28,75,-0.5648296177387238],[125,-28,76,-0.5626550279557705],[125,-28,77,-0.5583309903740883],[125,-28,78,-0.5530056692659855],[125,-28,79,-0.5474466904997826],[125,-27,64,-0.5549346171319485],[125,-27,65,-0.5566596873104572],[125,-27,66,-0.5565491765737534],[125,-27,67,-0.5553769171237946],[125,-27,68,-0.5544370338320732],[125,-27,69,-0.554666593670845],[125,-27,70,-0.5557628497481346],[125,-27,71,-0.5574178770184517],[125,-27,72,-0.5602027885615826],[125,-27,73,-0.5630908571183681],[125,-27,74,-0.5647980086505413],[125,-27,75,-0.5648296177387238],[125,-27,76,-0.5626550279557705],[125,-27,77,-0.5583309903740883],[125,-27,78,-0.5530056692659855],[125,-27,79,-0.5474466904997826],[125,-26,64,-0.5549346171319485],[125,-26,65,-0.5566596873104572],[125,-26,66,-0.5565491765737534],[125,-26,67,-0.5553769171237946],[125,-26,68,-0.5544370338320732],[125,-26,69,-0.554666593670845],[125,-26,70,-0.5557628497481346],[125,-26,71,-0.5574178770184517],[125,-26,72,-0.5602027885615826],[125,-26,73,-0.5630908571183681],[125,-26,74,-0.5647980086505413],[125,-26,75,-0.5648296177387238],[125,-26,76,-0.5626550279557705],[125,-26,77,-0.5583309903740883],[125,-26,78,-0.5530056692659855],[125,-26,79,-0.5474466904997826],[125,-25,64,-0.5549346171319485],[125,-25,65,-0.5566596873104572],[125,-25,66,-0.5565491765737534],[125,-25,67,-0.5553769171237946],[125,-25,68,-0.5544370338320732],[125,-25,69,-0.554666593670845],[125,-25,70,-0.5557628497481346],[125,-25,71,-0.5574178770184517],[125,-25,72,-0.5602027885615826],[125,-25,73,-0.5630908571183681],[125,-25,74,-0.5647980086505413],[125,-25,75,-0.5648296177387238],[125,-25,76,-0.5626550279557705],[125,-25,77,-0.5583309903740883],[125,-25,78,-0.5530056692659855],[125,-25,79,-0.5474466904997826],[125,-24,64,-0.5549346171319485],[125,-24,65,-0.5566596873104572],[125,-24,66,-0.5565491765737534],[125,-24,67,-0.5553769171237946],[125,-24,68,-0.5544370338320732],[125,-24,69,-0.554666593670845],[125,-24,70,-0.5557628497481346],[125,-24,71,-0.5574178770184517],[125,-24,72,-0.5602027885615826],[125,-24,73,-0.5630908571183681],[125,-24,74,-0.5647980086505413],[125,-24,75,-0.5648296177387238],[125,-24,76,-0.5626550279557705],[125,-24,77,-0.5583309903740883],[125,-24,78,-0.5530056692659855],[125,-24,79,-0.5474466904997826],[125,-23,64,-0.5549346171319485],[125,-23,65,-0.5566596873104572],[125,-23,66,-0.5565491765737534],[125,-23,67,-0.5553769171237946],[125,-23,68,-0.5544370338320732],[125,-23,69,-0.554666593670845],[125,-23,70,-0.5557628497481346],[125,-23,71,-0.5574178770184517],[125,-23,72,-0.5602027885615826],[125,-23,73,-0.5630908571183681],[125,-23,74,-0.5647980086505413],[125,-23,75,-0.5648296177387238],[125,-23,76,-0.5626550279557705],[125,-23,77,-0.5583309903740883],[125,-23,78,-0.5530056692659855],[125,-23,79,-0.5474466904997826],[125,-22,64,-0.5549346171319485],[125,-22,65,-0.5566596873104572],[125,-22,66,-0.5565491765737534],[125,-22,67,-0.5553769171237946],[125,-22,68,-0.5544370338320732],[125,-22,69,-0.554666593670845],[125,-22,70,-0.5557628497481346],[125,-22,71,-0.5574178770184517],[125,-22,72,-0.5602027885615826],[125,-22,73,-0.5630908571183681],[125,-22,74,-0.5647980086505413],[125,-22,75,-0.5648296177387238],[125,-22,76,-0.5626550279557705],[125,-22,77,-0.5583309903740883],[125,-22,78,-0.5530056692659855],[125,-22,79,-0.5474466904997826],[125,-21,64,-0.5549346171319485],[125,-21,65,-0.5566596873104572],[125,-21,66,-0.5565491765737534],[125,-21,67,-0.5553769171237946],[125,-21,68,-0.5544370338320732],[125,-21,69,-0.554666593670845],[125,-21,70,-0.5557628497481346],[125,-21,71,-0.5574178770184517],[125,-21,72,-0.5602027885615826],[125,-21,73,-0.5630908571183681],[125,-21,74,-0.5647980086505413],[125,-21,75,-0.5648296177387238],[125,-21,76,-0.5626550279557705],[125,-21,77,-0.5583309903740883],[125,-21,78,-0.5530056692659855],[125,-21,79,-0.5474466904997826],[125,-20,64,-0.5549346171319485],[125,-20,65,-0.5566596873104572],[125,-20,66,-0.5565491765737534],[125,-20,67,-0.5553769171237946],[125,-20,68,-0.5544370338320732],[125,-20,69,-0.554666593670845],[125,-20,70,-0.5557628497481346],[125,-20,71,-0.5574178770184517],[125,-20,72,-0.5602027885615826],[125,-20,73,-0.5630908571183681],[125,-20,74,-0.5647980086505413],[125,-20,75,-0.5648296177387238],[125,-20,76,-0.5626550279557705],[125,-20,77,-0.5583309903740883],[125,-20,78,-0.5530056692659855],[125,-20,79,-0.5474466904997826],[125,-19,64,-0.5549346171319485],[125,-19,65,-0.5566596873104572],[125,-19,66,-0.5565491765737534],[125,-19,67,-0.5553769171237946],[125,-19,68,-0.5544370338320732],[125,-19,69,-0.554666593670845],[125,-19,70,-0.5557628497481346],[125,-19,71,-0.5574178770184517],[125,-19,72,-0.5602027885615826],[125,-19,73,-0.5630908571183681],[125,-19,74,-0.5647980086505413],[125,-19,75,-0.5648296177387238],[125,-19,76,-0.5626550279557705],[125,-19,77,-0.5583309903740883],[125,-19,78,-0.5530056692659855],[125,-19,79,-0.5474466904997826],[125,-18,64,-0.5549346171319485],[125,-18,65,-0.5566596873104572],[125,-18,66,-0.5565491765737534],[125,-18,67,-0.5553769171237946],[125,-18,68,-0.5544370338320732],[125,-18,69,-0.554666593670845],[125,-18,70,-0.5557628497481346],[125,-18,71,-0.5574178770184517],[125,-18,72,-0.5602027885615826],[125,-18,73,-0.5630908571183681],[125,-18,74,-0.5647980086505413],[125,-18,75,-0.5648296177387238],[125,-18,76,-0.5626550279557705],[125,-18,77,-0.5583309903740883],[125,-18,78,-0.5530056692659855],[125,-18,79,-0.5474466904997826],[125,-17,64,-0.5549346171319485],[125,-17,65,-0.5566596873104572],[125,-17,66,-0.5565491765737534],[125,-17,67,-0.5553769171237946],[125,-17,68,-0.5544370338320732],[125,-17,69,-0.554666593670845],[125,-17,70,-0.5557628497481346],[125,-17,71,-0.5574178770184517],[125,-17,72,-0.5602027885615826],[125,-17,73,-0.5630908571183681],[125,-17,74,-0.5647980086505413],[125,-17,75,-0.5648296177387238],[125,-17,76,-0.5626550279557705],[125,-17,77,-0.5583309903740883],[125,-17,78,-0.5530056692659855],[125,-17,79,-0.5474466904997826],[125,-16,64,-0.5549346171319485],[125,-16,65,-0.5566596873104572],[125,-16,66,-0.5565491765737534],[125,-16,67,-0.5553769171237946],[125,-16,68,-0.5544370338320732],[125,-16,69,-0.554666593670845],[125,-16,70,-0.5557628497481346],[125,-16,71,-0.5574178770184517],[125,-16,72,-0.5602027885615826],[125,-16,73,-0.5630908571183681],[125,-16,74,-0.5647980086505413],[125,-16,75,-0.5648296177387238],[125,-16,76,-0.5626550279557705],[125,-16,77,-0.5583309903740883],[125,-16,78,-0.5530056692659855],[125,-16,79,-0.5474466904997826],[125,-15,64,-0.5549346171319485],[125,-15,65,-0.5566596873104572],[125,-15,66,-0.5565491765737534],[125,-15,67,-0.5553769171237946],[125,-15,68,-0.5544370338320732],[125,-15,69,-0.554666593670845],[125,-15,70,-0.5557628497481346],[125,-15,71,-0.5574178770184517],[125,-15,72,-0.5602027885615826],[125,-15,73,-0.5630908571183681],[125,-15,74,-0.5647980086505413],[125,-15,75,-0.5648296177387238],[125,-15,76,-0.5626550279557705],[125,-15,77,-0.5583309903740883],[125,-15,78,-0.5530056692659855],[125,-15,79,-0.5474466904997826],[125,-14,64,-0.5549346171319485],[125,-14,65,-0.5566596873104572],[125,-14,66,-0.5565491765737534],[125,-14,67,-0.5553769171237946],[125,-14,68,-0.5544370338320732],[125,-14,69,-0.554666593670845],[125,-14,70,-0.5557628497481346],[125,-14,71,-0.5574178770184517],[125,-14,72,-0.5602027885615826],[125,-14,73,-0.5630908571183681],[125,-14,74,-0.5647980086505413],[125,-14,75,-0.5648296177387238],[125,-14,76,-0.5626550279557705],[125,-14,77,-0.5583309903740883],[125,-14,78,-0.5530056692659855],[125,-14,79,-0.5474466904997826],[125,-13,64,-0.5549346171319485],[125,-13,65,-0.5566596873104572],[125,-13,66,-0.5565491765737534],[125,-13,67,-0.5553769171237946],[125,-13,68,-0.5544370338320732],[125,-13,69,-0.554666593670845],[125,-13,70,-0.5557628497481346],[125,-13,71,-0.5574178770184517],[125,-13,72,-0.5602027885615826],[125,-13,73,-0.5630908571183681],[125,-13,74,-0.5647980086505413],[125,-13,75,-0.5648296177387238],[125,-13,76,-0.5626550279557705],[125,-13,77,-0.5583309903740883],[125,-13,78,-0.5530056692659855],[125,-13,79,-0.5474466904997826],[125,-12,64,-0.5549346171319485],[125,-12,65,-0.5566596873104572],[125,-12,66,-0.5565491765737534],[125,-12,67,-0.5553769171237946],[125,-12,68,-0.5544370338320732],[125,-12,69,-0.554666593670845],[125,-12,70,-0.5557628497481346],[125,-12,71,-0.5574178770184517],[125,-12,72,-0.5602027885615826],[125,-12,73,-0.5630908571183681],[125,-12,74,-0.5647980086505413],[125,-12,75,-0.5648296177387238],[125,-12,76,-0.5626550279557705],[125,-12,77,-0.5583309903740883],[125,-12,78,-0.5530056692659855],[125,-12,79,-0.5474466904997826],[125,-11,64,-0.5549346171319485],[125,-11,65,-0.5566596873104572],[125,-11,66,-0.5565491765737534],[125,-11,67,-0.5553769171237946],[125,-11,68,-0.5544370338320732],[125,-11,69,-0.554666593670845],[125,-11,70,-0.5557628497481346],[125,-11,71,-0.5574178770184517],[125,-11,72,-0.5602027885615826],[125,-11,73,-0.5630908571183681],[125,-11,74,-0.5647980086505413],[125,-11,75,-0.5648296177387238],[125,-11,76,-0.5626550279557705],[125,-11,77,-0.5583309903740883],[125,-11,78,-0.5530056692659855],[125,-11,79,-0.5474466904997826],[125,-10,64,-0.5549346171319485],[125,-10,65,-0.5566596873104572],[125,-10,66,-0.5565491765737534],[125,-10,67,-0.5553769171237946],[125,-10,68,-0.5544370338320732],[125,-10,69,-0.554666593670845],[125,-10,70,-0.5557628497481346],[125,-10,71,-0.5574178770184517],[125,-10,72,-0.5602027885615826],[125,-10,73,-0.5630908571183681],[125,-10,74,-0.5647980086505413],[125,-10,75,-0.5648296177387238],[125,-10,76,-0.5626550279557705],[125,-10,77,-0.5583309903740883],[125,-10,78,-0.5530056692659855],[125,-10,79,-0.5474466904997826],[125,-9,64,-0.5549346171319485],[125,-9,65,-0.5566596873104572],[125,-9,66,-0.5565491765737534],[125,-9,67,-0.5553769171237946],[125,-9,68,-0.5544370338320732],[125,-9,69,-0.554666593670845],[125,-9,70,-0.5557628497481346],[125,-9,71,-0.5574178770184517],[125,-9,72,-0.5602027885615826],[125,-9,73,-0.5630908571183681],[125,-9,74,-0.5647980086505413],[125,-9,75,-0.5648296177387238],[125,-9,76,-0.5626550279557705],[125,-9,77,-0.5583309903740883],[125,-9,78,-0.5530056692659855],[125,-9,79,-0.5474466904997826],[125,-8,64,-0.5549346171319485],[125,-8,65,-0.5566596873104572],[125,-8,66,-0.5565491765737534],[125,-8,67,-0.5553769171237946],[125,-8,68,-0.5544370338320732],[125,-8,69,-0.554666593670845],[125,-8,70,-0.5557628497481346],[125,-8,71,-0.5574178770184517],[125,-8,72,-0.5602027885615826],[125,-8,73,-0.5630908571183681],[125,-8,74,-0.5647980086505413],[125,-8,75,-0.5648296177387238],[125,-8,76,-0.5626550279557705],[125,-8,77,-0.5583309903740883],[125,-8,78,-0.5530056692659855],[125,-8,79,-0.5474466904997826],[125,-7,64,-0.5549346171319485],[125,-7,65,-0.5566596873104572],[125,-7,66,-0.5565491765737534],[125,-7,67,-0.5553769171237946],[125,-7,68,-0.5544370338320732],[125,-7,69,-0.554666593670845],[125,-7,70,-0.5557628497481346],[125,-7,71,-0.5574178770184517],[125,-7,72,-0.5602027885615826],[125,-7,73,-0.5630908571183681],[125,-7,74,-0.5647980086505413],[125,-7,75,-0.5648296177387238],[125,-7,76,-0.5626550279557705],[125,-7,77,-0.5583309903740883],[125,-7,78,-0.5530056692659855],[125,-7,79,-0.5474466904997826],[125,-6,64,-0.5549346171319485],[125,-6,65,-0.5566596873104572],[125,-6,66,-0.5565491765737534],[125,-6,67,-0.5553769171237946],[125,-6,68,-0.5544370338320732],[125,-6,69,-0.554666593670845],[125,-6,70,-0.5557628497481346],[125,-6,71,-0.5574178770184517],[125,-6,72,-0.5602027885615826],[125,-6,73,-0.5630908571183681],[125,-6,74,-0.5647980086505413],[125,-6,75,-0.5648296177387238],[125,-6,76,-0.5626550279557705],[125,-6,77,-0.5583309903740883],[125,-6,78,-0.5530056692659855],[125,-6,79,-0.5474466904997826],[125,-5,64,-0.5549346171319485],[125,-5,65,-0.5566596873104572],[125,-5,66,-0.5565491765737534],[125,-5,67,-0.5553769171237946],[125,-5,68,-0.5544370338320732],[125,-5,69,-0.554666593670845],[125,-5,70,-0.5557628497481346],[125,-5,71,-0.5574178770184517],[125,-5,72,-0.5602027885615826],[125,-5,73,-0.5630908571183681],[125,-5,74,-0.5647980086505413],[125,-5,75,-0.5648296177387238],[125,-5,76,-0.5626550279557705],[125,-5,77,-0.5583309903740883],[125,-5,78,-0.5530056692659855],[125,-5,79,-0.5474466904997826],[125,-4,64,-0.5549346171319485],[125,-4,65,-0.5566596873104572],[125,-4,66,-0.5565491765737534],[125,-4,67,-0.5553769171237946],[125,-4,68,-0.5544370338320732],[125,-4,69,-0.554666593670845],[125,-4,70,-0.5557628497481346],[125,-4,71,-0.5574178770184517],[125,-4,72,-0.5602027885615826],[125,-4,73,-0.5630908571183681],[125,-4,74,-0.5647980086505413],[125,-4,75,-0.5648296177387238],[125,-4,76,-0.5626550279557705],[125,-4,77,-0.5583309903740883],[125,-4,78,-0.5530056692659855],[125,-4,79,-0.5474466904997826],[125,-3,64,-0.5549346171319485],[125,-3,65,-0.5566596873104572],[125,-3,66,-0.5565491765737534],[125,-3,67,-0.5553769171237946],[125,-3,68,-0.5544370338320732],[125,-3,69,-0.554666593670845],[125,-3,70,-0.5557628497481346],[125,-3,71,-0.5574178770184517],[125,-3,72,-0.5602027885615826],[125,-3,73,-0.5630908571183681],[125,-3,74,-0.5647980086505413],[125,-3,75,-0.5648296177387238],[125,-3,76,-0.5626550279557705],[125,-3,77,-0.5583309903740883],[125,-3,78,-0.5530056692659855],[125,-3,79,-0.5474466904997826],[125,-2,64,-0.5549346171319485],[125,-2,65,-0.5566596873104572],[125,-2,66,-0.5565491765737534],[125,-2,67,-0.5553769171237946],[125,-2,68,-0.5544370338320732],[125,-2,69,-0.554666593670845],[125,-2,70,-0.5557628497481346],[125,-2,71,-0.5574178770184517],[125,-2,72,-0.5602027885615826],[125,-2,73,-0.5630908571183681],[125,-2,74,-0.5647980086505413],[125,-2,75,-0.5648296177387238],[125,-2,76,-0.5626550279557705],[125,-2,77,-0.5583309903740883],[125,-2,78,-0.5530056692659855],[125,-2,79,-0.5474466904997826],[125,-1,64,-0.5549346171319485],[125,-1,65,-0.5566596873104572],[125,-1,66,-0.5565491765737534],[125,-1,67,-0.5553769171237946],[125,-1,68,-0.5544370338320732],[125,-1,69,-0.554666593670845],[125,-1,70,-0.5557628497481346],[125,-1,71,-0.5574178770184517],[125,-1,72,-0.5602027885615826],[125,-1,73,-0.5630908571183681],[125,-1,74,-0.5647980086505413],[125,-1,75,-0.5648296177387238],[125,-1,76,-0.5626550279557705],[125,-1,77,-0.5583309903740883],[125,-1,78,-0.5530056692659855],[125,-1,79,-0.5474466904997826],[125,0,64,-0.5549346171319485],[125,0,65,-0.5566596873104572],[125,0,66,-0.5565491765737534],[125,0,67,-0.5553769171237946],[125,0,68,-0.5544370338320732],[125,0,69,-0.554666593670845],[125,0,70,-0.5557628497481346],[125,0,71,-0.5574178770184517],[125,0,72,-0.5602027885615826],[125,0,73,-0.5630908571183681],[125,0,74,-0.5647980086505413],[125,0,75,-0.5648296177387238],[125,0,76,-0.5626550279557705],[125,0,77,-0.5583309903740883],[125,0,78,-0.5530056692659855],[125,0,79,-0.5474466904997826],[125,1,64,-0.5549346171319485],[125,1,65,-0.5566596873104572],[125,1,66,-0.5565491765737534],[125,1,67,-0.5553769171237946],[125,1,68,-0.5544370338320732],[125,1,69,-0.554666593670845],[125,1,70,-0.5557628497481346],[125,1,71,-0.5574178770184517],[125,1,72,-0.5602027885615826],[125,1,73,-0.5630908571183681],[125,1,74,-0.5647980086505413],[125,1,75,-0.5648296177387238],[125,1,76,-0.5626550279557705],[125,1,77,-0.5583309903740883],[125,1,78,-0.5530056692659855],[125,1,79,-0.5474466904997826],[125,2,64,-0.5549346171319485],[125,2,65,-0.5566596873104572],[125,2,66,-0.5565491765737534],[125,2,67,-0.5553769171237946],[125,2,68,-0.5544370338320732],[125,2,69,-0.554666593670845],[125,2,70,-0.5557628497481346],[125,2,71,-0.5574178770184517],[125,2,72,-0.5602027885615826],[125,2,73,-0.5630908571183681],[125,2,74,-0.5647980086505413],[125,2,75,-0.5648296177387238],[125,2,76,-0.5626550279557705],[125,2,77,-0.5583309903740883],[125,2,78,-0.5530056692659855],[125,2,79,-0.5474466904997826],[125,3,64,-0.5549346171319485],[125,3,65,-0.5566596873104572],[125,3,66,-0.5565491765737534],[125,3,67,-0.5553769171237946],[125,3,68,-0.5544370338320732],[125,3,69,-0.554666593670845],[125,3,70,-0.5557628497481346],[125,3,71,-0.5574178770184517],[125,3,72,-0.5602027885615826],[125,3,73,-0.5630908571183681],[125,3,74,-0.5647980086505413],[125,3,75,-0.5648296177387238],[125,3,76,-0.5626550279557705],[125,3,77,-0.5583309903740883],[125,3,78,-0.5530056692659855],[125,3,79,-0.5474466904997826],[125,4,64,-0.5549346171319485],[125,4,65,-0.5566596873104572],[125,4,66,-0.5565491765737534],[125,4,67,-0.5553769171237946],[125,4,68,-0.5544370338320732],[125,4,69,-0.554666593670845],[125,4,70,-0.5557628497481346],[125,4,71,-0.5574178770184517],[125,4,72,-0.5602027885615826],[125,4,73,-0.5630908571183681],[125,4,74,-0.5647980086505413],[125,4,75,-0.5648296177387238],[125,4,76,-0.5626550279557705],[125,4,77,-0.5583309903740883],[125,4,78,-0.5530056692659855],[125,4,79,-0.5474466904997826],[125,5,64,-0.5549346171319485],[125,5,65,-0.5566596873104572],[125,5,66,-0.5565491765737534],[125,5,67,-0.5553769171237946],[125,5,68,-0.5544370338320732],[125,5,69,-0.554666593670845],[125,5,70,-0.5557628497481346],[125,5,71,-0.5574178770184517],[125,5,72,-0.5602027885615826],[125,5,73,-0.5630908571183681],[125,5,74,-0.5647980086505413],[125,5,75,-0.5648296177387238],[125,5,76,-0.5626550279557705],[125,5,77,-0.5583309903740883],[125,5,78,-0.5530056692659855],[125,5,79,-0.5474466904997826],[125,6,64,-0.5549346171319485],[125,6,65,-0.5566596873104572],[125,6,66,-0.5565491765737534],[125,6,67,-0.5553769171237946],[125,6,68,-0.5544370338320732],[125,6,69,-0.554666593670845],[125,6,70,-0.5557628497481346],[125,6,71,-0.5574178770184517],[125,6,72,-0.5602027885615826],[125,6,73,-0.5630908571183681],[125,6,74,-0.5647980086505413],[125,6,75,-0.5648296177387238],[125,6,76,-0.5626550279557705],[125,6,77,-0.5583309903740883],[125,6,78,-0.5530056692659855],[125,6,79,-0.5474466904997826],[125,7,64,-0.5549346171319485],[125,7,65,-0.5566596873104572],[125,7,66,-0.5565491765737534],[125,7,67,-0.5553769171237946],[125,7,68,-0.5544370338320732],[125,7,69,-0.554666593670845],[125,7,70,-0.5557628497481346],[125,7,71,-0.5574178770184517],[125,7,72,-0.5602027885615826],[125,7,73,-0.5630908571183681],[125,7,74,-0.5647980086505413],[125,7,75,-0.5648296177387238],[125,7,76,-0.5626550279557705],[125,7,77,-0.5583309903740883],[125,7,78,-0.5530056692659855],[125,7,79,-0.5474466904997826],[125,8,64,-0.5549346171319485],[125,8,65,-0.5566596873104572],[125,8,66,-0.5565491765737534],[125,8,67,-0.5553769171237946],[125,8,68,-0.5544370338320732],[125,8,69,-0.554666593670845],[125,8,70,-0.5557628497481346],[125,8,71,-0.5574178770184517],[125,8,72,-0.5602027885615826],[125,8,73,-0.5630908571183681],[125,8,74,-0.5647980086505413],[125,8,75,-0.5648296177387238],[125,8,76,-0.5626550279557705],[125,8,77,-0.5583309903740883],[125,8,78,-0.5530056692659855],[125,8,79,-0.5474466904997826],[125,9,64,-0.5549346171319485],[125,9,65,-0.5566596873104572],[125,9,66,-0.5565491765737534],[125,9,67,-0.5553769171237946],[125,9,68,-0.5544370338320732],[125,9,69,-0.554666593670845],[125,9,70,-0.5557628497481346],[125,9,71,-0.5574178770184517],[125,9,72,-0.5602027885615826],[125,9,73,-0.5630908571183681],[125,9,74,-0.5647980086505413],[125,9,75,-0.5648296177387238],[125,9,76,-0.5626550279557705],[125,9,77,-0.5583309903740883],[125,9,78,-0.5530056692659855],[125,9,79,-0.5474466904997826],[125,10,64,-0.5549346171319485],[125,10,65,-0.5566596873104572],[125,10,66,-0.5565491765737534],[125,10,67,-0.5553769171237946],[125,10,68,-0.5544370338320732],[125,10,69,-0.554666593670845],[125,10,70,-0.5557628497481346],[125,10,71,-0.5574178770184517],[125,10,72,-0.5602027885615826],[125,10,73,-0.5630908571183681],[125,10,74,-0.5647980086505413],[125,10,75,-0.5648296177387238],[125,10,76,-0.5626550279557705],[125,10,77,-0.5583309903740883],[125,10,78,-0.5530056692659855],[125,10,79,-0.5474466904997826],[125,11,64,-0.5549346171319485],[125,11,65,-0.5566596873104572],[125,11,66,-0.5565491765737534],[125,11,67,-0.5553769171237946],[125,11,68,-0.5544370338320732],[125,11,69,-0.554666593670845],[125,11,70,-0.5557628497481346],[125,11,71,-0.5574178770184517],[125,11,72,-0.5602027885615826],[125,11,73,-0.5630908571183681],[125,11,74,-0.5647980086505413],[125,11,75,-0.5648296177387238],[125,11,76,-0.5626550279557705],[125,11,77,-0.5583309903740883],[125,11,78,-0.5530056692659855],[125,11,79,-0.5474466904997826],[125,12,64,-0.5549346171319485],[125,12,65,-0.5566596873104572],[125,12,66,-0.5565491765737534],[125,12,67,-0.5553769171237946],[125,12,68,-0.5544370338320732],[125,12,69,-0.554666593670845],[125,12,70,-0.5557628497481346],[125,12,71,-0.5574178770184517],[125,12,72,-0.5602027885615826],[125,12,73,-0.5630908571183681],[125,12,74,-0.5647980086505413],[125,12,75,-0.5648296177387238],[125,12,76,-0.5626550279557705],[125,12,77,-0.5583309903740883],[125,12,78,-0.5530056692659855],[125,12,79,-0.5474466904997826],[125,13,64,-0.5549346171319485],[125,13,65,-0.5566596873104572],[125,13,66,-0.5565491765737534],[125,13,67,-0.5553769171237946],[125,13,68,-0.5544370338320732],[125,13,69,-0.554666593670845],[125,13,70,-0.5557628497481346],[125,13,71,-0.5574178770184517],[125,13,72,-0.5602027885615826],[125,13,73,-0.5630908571183681],[125,13,74,-0.5647980086505413],[125,13,75,-0.5648296177387238],[125,13,76,-0.5626550279557705],[125,13,77,-0.5583309903740883],[125,13,78,-0.5530056692659855],[125,13,79,-0.5474466904997826],[125,14,64,-0.5549346171319485],[125,14,65,-0.5566596873104572],[125,14,66,-0.5565491765737534],[125,14,67,-0.5553769171237946],[125,14,68,-0.5544370338320732],[125,14,69,-0.554666593670845],[125,14,70,-0.5557628497481346],[125,14,71,-0.5574178770184517],[125,14,72,-0.5602027885615826],[125,14,73,-0.5630908571183681],[125,14,74,-0.5647980086505413],[125,14,75,-0.5648296177387238],[125,14,76,-0.5626550279557705],[125,14,77,-0.5583309903740883],[125,14,78,-0.5530056692659855],[125,14,79,-0.5474466904997826],[125,15,64,-0.5549346171319485],[125,15,65,-0.5566596873104572],[125,15,66,-0.5565491765737534],[125,15,67,-0.5553769171237946],[125,15,68,-0.5544370338320732],[125,15,69,-0.554666593670845],[125,15,70,-0.5557628497481346],[125,15,71,-0.5574178770184517],[125,15,72,-0.5602027885615826],[125,15,73,-0.5630908571183681],[125,15,74,-0.5647980086505413],[125,15,75,-0.5648296177387238],[125,15,76,-0.5626550279557705],[125,15,77,-0.5583309903740883],[125,15,78,-0.5530056692659855],[125,15,79,-0.5474466904997826],[125,16,64,-0.5549346171319485],[125,16,65,-0.5566596873104572],[125,16,66,-0.5565491765737534],[125,16,67,-0.5553769171237946],[125,16,68,-0.5544370338320732],[125,16,69,-0.554666593670845],[125,16,70,-0.5557628497481346],[125,16,71,-0.5574178770184517],[125,16,72,-0.5602027885615826],[125,16,73,-0.5630908571183681],[125,16,74,-0.5647980086505413],[125,16,75,-0.5648296177387238],[125,16,76,-0.5626550279557705],[125,16,77,-0.5583309903740883],[125,16,78,-0.5530056692659855],[125,16,79,-0.5474466904997826],[125,17,64,-0.5549346171319485],[125,17,65,-0.5566596873104572],[125,17,66,-0.5565491765737534],[125,17,67,-0.5553769171237946],[125,17,68,-0.5544370338320732],[125,17,69,-0.554666593670845],[125,17,70,-0.5557628497481346],[125,17,71,-0.5574178770184517],[125,17,72,-0.5602027885615826],[125,17,73,-0.5630908571183681],[125,17,74,-0.5647980086505413],[125,17,75,-0.5648296177387238],[125,17,76,-0.5626550279557705],[125,17,77,-0.5583309903740883],[125,17,78,-0.5530056692659855],[125,17,79,-0.5474466904997826],[125,18,64,-0.5549346171319485],[125,18,65,-0.5566596873104572],[125,18,66,-0.5565491765737534],[125,18,67,-0.5553769171237946],[125,18,68,-0.5544370338320732],[125,18,69,-0.554666593670845],[125,18,70,-0.5557628497481346],[125,18,71,-0.5574178770184517],[125,18,72,-0.5602027885615826],[125,18,73,-0.5630908571183681],[125,18,74,-0.5647980086505413],[125,18,75,-0.5648296177387238],[125,18,76,-0.5626550279557705],[125,18,77,-0.5583309903740883],[125,18,78,-0.5530056692659855],[125,18,79,-0.5474466904997826],[125,19,64,-0.5549346171319485],[125,19,65,-0.5566596873104572],[125,19,66,-0.5565491765737534],[125,19,67,-0.5553769171237946],[125,19,68,-0.5544370338320732],[125,19,69,-0.554666593670845],[125,19,70,-0.5557628497481346],[125,19,71,-0.5574178770184517],[125,19,72,-0.5602027885615826],[125,19,73,-0.5630908571183681],[125,19,74,-0.5647980086505413],[125,19,75,-0.5648296177387238],[125,19,76,-0.5626550279557705],[125,19,77,-0.5583309903740883],[125,19,78,-0.5530056692659855],[125,19,79,-0.5474466904997826],[125,20,64,-0.5549346171319485],[125,20,65,-0.5566596873104572],[125,20,66,-0.5565491765737534],[125,20,67,-0.5553769171237946],[125,20,68,-0.5544370338320732],[125,20,69,-0.554666593670845],[125,20,70,-0.5557628497481346],[125,20,71,-0.5574178770184517],[125,20,72,-0.5602027885615826],[125,20,73,-0.5630908571183681],[125,20,74,-0.5647980086505413],[125,20,75,-0.5648296177387238],[125,20,76,-0.5626550279557705],[125,20,77,-0.5583309903740883],[125,20,78,-0.5530056692659855],[125,20,79,-0.5474466904997826],[125,21,64,-0.5549346171319485],[125,21,65,-0.5566596873104572],[125,21,66,-0.5565491765737534],[125,21,67,-0.5553769171237946],[125,21,68,-0.5544370338320732],[125,21,69,-0.554666593670845],[125,21,70,-0.5557628497481346],[125,21,71,-0.5574178770184517],[125,21,72,-0.5602027885615826],[125,21,73,-0.5630908571183681],[125,21,74,-0.5647980086505413],[125,21,75,-0.5648296177387238],[125,21,76,-0.5626550279557705],[125,21,77,-0.5583309903740883],[125,21,78,-0.5530056692659855],[125,21,79,-0.5474466904997826],[125,22,64,-0.5549346171319485],[125,22,65,-0.5566596873104572],[125,22,66,-0.5565491765737534],[125,22,67,-0.5553769171237946],[125,22,68,-0.5544370338320732],[125,22,69,-0.554666593670845],[125,22,70,-0.5557628497481346],[125,22,71,-0.5574178770184517],[125,22,72,-0.5602027885615826],[125,22,73,-0.5630908571183681],[125,22,74,-0.5647980086505413],[125,22,75,-0.5648296177387238],[125,22,76,-0.5626550279557705],[125,22,77,-0.5583309903740883],[125,22,78,-0.5530056692659855],[125,22,79,-0.5474466904997826],[125,23,64,-0.5549346171319485],[125,23,65,-0.5566596873104572],[125,23,66,-0.5565491765737534],[125,23,67,-0.5553769171237946],[125,23,68,-0.5544370338320732],[125,23,69,-0.554666593670845],[125,23,70,-0.5557628497481346],[125,23,71,-0.5574178770184517],[125,23,72,-0.5602027885615826],[125,23,73,-0.5630908571183681],[125,23,74,-0.5647980086505413],[125,23,75,-0.5648296177387238],[125,23,76,-0.5626550279557705],[125,23,77,-0.5583309903740883],[125,23,78,-0.5530056692659855],[125,23,79,-0.5474466904997826],[125,24,64,-0.5549346171319485],[125,24,65,-0.5566596873104572],[125,24,66,-0.5565491765737534],[125,24,67,-0.5553769171237946],[125,24,68,-0.5544370338320732],[125,24,69,-0.554666593670845],[125,24,70,-0.5557628497481346],[125,24,71,-0.5574178770184517],[125,24,72,-0.5602027885615826],[125,24,73,-0.5630908571183681],[125,24,74,-0.5647980086505413],[125,24,75,-0.5648296177387238],[125,24,76,-0.5626550279557705],[125,24,77,-0.5583309903740883],[125,24,78,-0.5530056692659855],[125,24,79,-0.5474466904997826],[125,25,64,-0.5549346171319485],[125,25,65,-0.5566596873104572],[125,25,66,-0.5565491765737534],[125,25,67,-0.5553769171237946],[125,25,68,-0.5544370338320732],[125,25,69,-0.554666593670845],[125,25,70,-0.5557628497481346],[125,25,71,-0.5574178770184517],[125,25,72,-0.5602027885615826],[125,25,73,-0.5630908571183681],[125,25,74,-0.5647980086505413],[125,25,75,-0.5648296177387238],[125,25,76,-0.5626550279557705],[125,25,77,-0.5583309903740883],[125,25,78,-0.5530056692659855],[125,25,79,-0.5474466904997826],[125,26,64,-0.5549346171319485],[125,26,65,-0.5566596873104572],[125,26,66,-0.5565491765737534],[125,26,67,-0.5553769171237946],[125,26,68,-0.5544370338320732],[125,26,69,-0.554666593670845],[125,26,70,-0.5557628497481346],[125,26,71,-0.5574178770184517],[125,26,72,-0.5602027885615826],[125,26,73,-0.5630908571183681],[125,26,74,-0.5647980086505413],[125,26,75,-0.5648296177387238],[125,26,76,-0.5626550279557705],[125,26,77,-0.5583309903740883],[125,26,78,-0.5530056692659855],[125,26,79,-0.5474466904997826],[125,27,64,-0.5549346171319485],[125,27,65,-0.5566596873104572],[125,27,66,-0.5565491765737534],[125,27,67,-0.5553769171237946],[125,27,68,-0.5544370338320732],[125,27,69,-0.554666593670845],[125,27,70,-0.5557628497481346],[125,27,71,-0.5574178770184517],[125,27,72,-0.5602027885615826],[125,27,73,-0.5630908571183681],[125,27,74,-0.5647980086505413],[125,27,75,-0.5648296177387238],[125,27,76,-0.5626550279557705],[125,27,77,-0.5583309903740883],[125,27,78,-0.5530056692659855],[125,27,79,-0.5474466904997826],[125,28,64,-0.5549346171319485],[125,28,65,-0.5566596873104572],[125,28,66,-0.5565491765737534],[125,28,67,-0.5553769171237946],[125,28,68,-0.5544370338320732],[125,28,69,-0.554666593670845],[125,28,70,-0.5557628497481346],[125,28,71,-0.5574178770184517],[125,28,72,-0.5602027885615826],[125,28,73,-0.5630908571183681],[125,28,74,-0.5647980086505413],[125,28,75,-0.5648296177387238],[125,28,76,-0.5626550279557705],[125,28,77,-0.5583309903740883],[125,28,78,-0.5530056692659855],[125,28,79,-0.5474466904997826],[125,29,64,-0.5549346171319485],[125,29,65,-0.5566596873104572],[125,29,66,-0.5565491765737534],[125,29,67,-0.5553769171237946],[125,29,68,-0.5544370338320732],[125,29,69,-0.554666593670845],[125,29,70,-0.5557628497481346],[125,29,71,-0.5574178770184517],[125,29,72,-0.5602027885615826],[125,29,73,-0.5630908571183681],[125,29,74,-0.5647980086505413],[125,29,75,-0.5648296177387238],[125,29,76,-0.5626550279557705],[125,29,77,-0.5583309903740883],[125,29,78,-0.5530056692659855],[125,29,79,-0.5474466904997826],[125,30,64,-0.5549346171319485],[125,30,65,-0.5566596873104572],[125,30,66,-0.5565491765737534],[125,30,67,-0.5553769171237946],[125,30,68,-0.5544370338320732],[125,30,69,-0.554666593670845],[125,30,70,-0.5557628497481346],[125,30,71,-0.5574178770184517],[125,30,72,-0.5602027885615826],[125,30,73,-0.5630908571183681],[125,30,74,-0.5647980086505413],[125,30,75,-0.5648296177387238],[125,30,76,-0.5626550279557705],[125,30,77,-0.5583309903740883],[125,30,78,-0.5530056692659855],[125,30,79,-0.5474466904997826],[125,31,64,-0.5549346171319485],[125,31,65,-0.5566596873104572],[125,31,66,-0.5565491765737534],[125,31,67,-0.5553769171237946],[125,31,68,-0.5544370338320732],[125,31,69,-0.554666593670845],[125,31,70,-0.5557628497481346],[125,31,71,-0.5574178770184517],[125,31,72,-0.5602027885615826],[125,31,73,-0.5630908571183681],[125,31,74,-0.5647980086505413],[125,31,75,-0.5648296177387238],[125,31,76,-0.5626550279557705],[125,31,77,-0.5583309903740883],[125,31,78,-0.5530056692659855],[125,31,79,-0.5474466904997826],[125,32,64,-0.5549346171319485],[125,32,65,-0.5566596873104572],[125,32,66,-0.5565491765737534],[125,32,67,-0.5553769171237946],[125,32,68,-0.5544370338320732],[125,32,69,-0.554666593670845],[125,32,70,-0.5557628497481346],[125,32,71,-0.5574178770184517],[125,32,72,-0.5602027885615826],[125,32,73,-0.5630908571183681],[125,32,74,-0.5647980086505413],[125,32,75,-0.5648296177387238],[125,32,76,-0.5626550279557705],[125,32,77,-0.5583309903740883],[125,32,78,-0.5530056692659855],[125,32,79,-0.5474466904997826],[125,33,64,-0.5549346171319485],[125,33,65,-0.5566596873104572],[125,33,66,-0.5565491765737534],[125,33,67,-0.5553769171237946],[125,33,68,-0.5544370338320732],[125,33,69,-0.554666593670845],[125,33,70,-0.5557628497481346],[125,33,71,-0.5574178770184517],[125,33,72,-0.5602027885615826],[125,33,73,-0.5630908571183681],[125,33,74,-0.5647980086505413],[125,33,75,-0.5648296177387238],[125,33,76,-0.5626550279557705],[125,33,77,-0.5583309903740883],[125,33,78,-0.5530056692659855],[125,33,79,-0.5474466904997826],[125,34,64,-0.5549346171319485],[125,34,65,-0.5566596873104572],[125,34,66,-0.5565491765737534],[125,34,67,-0.5553769171237946],[125,34,68,-0.5544370338320732],[125,34,69,-0.554666593670845],[125,34,70,-0.5557628497481346],[125,34,71,-0.5574178770184517],[125,34,72,-0.5602027885615826],[125,34,73,-0.5630908571183681],[125,34,74,-0.5647980086505413],[125,34,75,-0.5648296177387238],[125,34,76,-0.5626550279557705],[125,34,77,-0.5583309903740883],[125,34,78,-0.5530056692659855],[125,34,79,-0.5474466904997826],[125,35,64,-0.5549346171319485],[125,35,65,-0.5566596873104572],[125,35,66,-0.5565491765737534],[125,35,67,-0.5553769171237946],[125,35,68,-0.5544370338320732],[125,35,69,-0.554666593670845],[125,35,70,-0.5557628497481346],[125,35,71,-0.5574178770184517],[125,35,72,-0.5602027885615826],[125,35,73,-0.5630908571183681],[125,35,74,-0.5647980086505413],[125,35,75,-0.5648296177387238],[125,35,76,-0.5626550279557705],[125,35,77,-0.5583309903740883],[125,35,78,-0.5530056692659855],[125,35,79,-0.5474466904997826],[125,36,64,-0.5549346171319485],[125,36,65,-0.5566596873104572],[125,36,66,-0.5565491765737534],[125,36,67,-0.5553769171237946],[125,36,68,-0.5544370338320732],[125,36,69,-0.554666593670845],[125,36,70,-0.5557628497481346],[125,36,71,-0.5574178770184517],[125,36,72,-0.5602027885615826],[125,36,73,-0.5630908571183681],[125,36,74,-0.5647980086505413],[125,36,75,-0.5648296177387238],[125,36,76,-0.5626550279557705],[125,36,77,-0.5583309903740883],[125,36,78,-0.5530056692659855],[125,36,79,-0.5474466904997826],[125,37,64,-0.5549346171319485],[125,37,65,-0.5566596873104572],[125,37,66,-0.5565491765737534],[125,37,67,-0.5553769171237946],[125,37,68,-0.5544370338320732],[125,37,69,-0.554666593670845],[125,37,70,-0.5557628497481346],[125,37,71,-0.5574178770184517],[125,37,72,-0.5602027885615826],[125,37,73,-0.5630908571183681],[125,37,74,-0.5647980086505413],[125,37,75,-0.5648296177387238],[125,37,76,-0.5626550279557705],[125,37,77,-0.5583309903740883],[125,37,78,-0.5530056692659855],[125,37,79,-0.5474466904997826],[125,38,64,-0.5549346171319485],[125,38,65,-0.5566596873104572],[125,38,66,-0.5565491765737534],[125,38,67,-0.5553769171237946],[125,38,68,-0.5544370338320732],[125,38,69,-0.554666593670845],[125,38,70,-0.5557628497481346],[125,38,71,-0.5574178770184517],[125,38,72,-0.5602027885615826],[125,38,73,-0.5630908571183681],[125,38,74,-0.5647980086505413],[125,38,75,-0.5648296177387238],[125,38,76,-0.5626550279557705],[125,38,77,-0.5583309903740883],[125,38,78,-0.5530056692659855],[125,38,79,-0.5474466904997826],[125,39,64,-0.5549346171319485],[125,39,65,-0.5566596873104572],[125,39,66,-0.5565491765737534],[125,39,67,-0.5553769171237946],[125,39,68,-0.5544370338320732],[125,39,69,-0.554666593670845],[125,39,70,-0.5557628497481346],[125,39,71,-0.5574178770184517],[125,39,72,-0.5602027885615826],[125,39,73,-0.5630908571183681],[125,39,74,-0.5647980086505413],[125,39,75,-0.5648296177387238],[125,39,76,-0.5626550279557705],[125,39,77,-0.5583309903740883],[125,39,78,-0.5530056692659855],[125,39,79,-0.5474466904997826],[125,40,64,-0.5549346171319485],[125,40,65,-0.5566596873104572],[125,40,66,-0.5565491765737534],[125,40,67,-0.5553769171237946],[125,40,68,-0.5544370338320732],[125,40,69,-0.554666593670845],[125,40,70,-0.5557628497481346],[125,40,71,-0.5574178770184517],[125,40,72,-0.5602027885615826],[125,40,73,-0.5630908571183681],[125,40,74,-0.5647980086505413],[125,40,75,-0.5648296177387238],[125,40,76,-0.5626550279557705],[125,40,77,-0.5583309903740883],[125,40,78,-0.5530056692659855],[125,40,79,-0.5474466904997826],[125,41,64,-0.5549346171319485],[125,41,65,-0.5566596873104572],[125,41,66,-0.5565491765737534],[125,41,67,-0.5553769171237946],[125,41,68,-0.5544370338320732],[125,41,69,-0.554666593670845],[125,41,70,-0.5557628497481346],[125,41,71,-0.5574178770184517],[125,41,72,-0.5602027885615826],[125,41,73,-0.5630908571183681],[125,41,74,-0.5647980086505413],[125,41,75,-0.5648296177387238],[125,41,76,-0.5626550279557705],[125,41,77,-0.5583309903740883],[125,41,78,-0.5530056692659855],[125,41,79,-0.5474466904997826],[125,42,64,-0.5549346171319485],[125,42,65,-0.5566596873104572],[125,42,66,-0.5565491765737534],[125,42,67,-0.5553769171237946],[125,42,68,-0.5544370338320732],[125,42,69,-0.554666593670845],[125,42,70,-0.5557628497481346],[125,42,71,-0.5574178770184517],[125,42,72,-0.5602027885615826],[125,42,73,-0.5630908571183681],[125,42,74,-0.5647980086505413],[125,42,75,-0.5648296177387238],[125,42,76,-0.5626550279557705],[125,42,77,-0.5583309903740883],[125,42,78,-0.5530056692659855],[125,42,79,-0.5474466904997826],[125,43,64,-0.5549346171319485],[125,43,65,-0.5566596873104572],[125,43,66,-0.5565491765737534],[125,43,67,-0.5553769171237946],[125,43,68,-0.5544370338320732],[125,43,69,-0.554666593670845],[125,43,70,-0.5557628497481346],[125,43,71,-0.5574178770184517],[125,43,72,-0.5602027885615826],[125,43,73,-0.5630908571183681],[125,43,74,-0.5647980086505413],[125,43,75,-0.5648296177387238],[125,43,76,-0.5626550279557705],[125,43,77,-0.5583309903740883],[125,43,78,-0.5530056692659855],[125,43,79,-0.5474466904997826],[125,44,64,-0.5549346171319485],[125,44,65,-0.5566596873104572],[125,44,66,-0.5565491765737534],[125,44,67,-0.5553769171237946],[125,44,68,-0.5544370338320732],[125,44,69,-0.554666593670845],[125,44,70,-0.5557628497481346],[125,44,71,-0.5574178770184517],[125,44,72,-0.5602027885615826],[125,44,73,-0.5630908571183681],[125,44,74,-0.5647980086505413],[125,44,75,-0.5648296177387238],[125,44,76,-0.5626550279557705],[125,44,77,-0.5583309903740883],[125,44,78,-0.5530056692659855],[125,44,79,-0.5474466904997826],[125,45,64,-0.5549346171319485],[125,45,65,-0.5566596873104572],[125,45,66,-0.5565491765737534],[125,45,67,-0.5553769171237946],[125,45,68,-0.5544370338320732],[125,45,69,-0.554666593670845],[125,45,70,-0.5557628497481346],[125,45,71,-0.5574178770184517],[125,45,72,-0.5602027885615826],[125,45,73,-0.5630908571183681],[125,45,74,-0.5647980086505413],[125,45,75,-0.5648296177387238],[125,45,76,-0.5626550279557705],[125,45,77,-0.5583309903740883],[125,45,78,-0.5530056692659855],[125,45,79,-0.5474466904997826],[125,46,64,-0.5549346171319485],[125,46,65,-0.5566596873104572],[125,46,66,-0.5565491765737534],[125,46,67,-0.5553769171237946],[125,46,68,-0.5544370338320732],[125,46,69,-0.554666593670845],[125,46,70,-0.5557628497481346],[125,46,71,-0.5574178770184517],[125,46,72,-0.5602027885615826],[125,46,73,-0.5630908571183681],[125,46,74,-0.5647980086505413],[125,46,75,-0.5648296177387238],[125,46,76,-0.5626550279557705],[125,46,77,-0.5583309903740883],[125,46,78,-0.5530056692659855],[125,46,79,-0.5474466904997826],[125,47,64,-0.5549346171319485],[125,47,65,-0.5566596873104572],[125,47,66,-0.5565491765737534],[125,47,67,-0.5553769171237946],[125,47,68,-0.5544370338320732],[125,47,69,-0.554666593670845],[125,47,70,-0.5557628497481346],[125,47,71,-0.5574178770184517],[125,47,72,-0.5602027885615826],[125,47,73,-0.5630908571183681],[125,47,74,-0.5647980086505413],[125,47,75,-0.5648296177387238],[125,47,76,-0.5626550279557705],[125,47,77,-0.5583309903740883],[125,47,78,-0.5530056692659855],[125,47,79,-0.5474466904997826],[125,48,64,-0.5549346171319485],[125,48,65,-0.5566596873104572],[125,48,66,-0.5565491765737534],[125,48,67,-0.5553769171237946],[125,48,68,-0.5544370338320732],[125,48,69,-0.554666593670845],[125,48,70,-0.5557628497481346],[125,48,71,-0.5574178770184517],[125,48,72,-0.5602027885615826],[125,48,73,-0.5630908571183681],[125,48,74,-0.5647980086505413],[125,48,75,-0.5648296177387238],[125,48,76,-0.5626550279557705],[125,48,77,-0.5583309903740883],[125,48,78,-0.5530056692659855],[125,48,79,-0.5474466904997826],[125,49,64,-0.5549346171319485],[125,49,65,-0.5566596873104572],[125,49,66,-0.5565491765737534],[125,49,67,-0.5553769171237946],[125,49,68,-0.5544370338320732],[125,49,69,-0.554666593670845],[125,49,70,-0.5557628497481346],[125,49,71,-0.5574178770184517],[125,49,72,-0.5602027885615826],[125,49,73,-0.5630908571183681],[125,49,74,-0.5647980086505413],[125,49,75,-0.5648296177387238],[125,49,76,-0.5626550279557705],[125,49,77,-0.5583309903740883],[125,49,78,-0.5530056692659855],[125,49,79,-0.5474466904997826],[125,50,64,-0.5549346171319485],[125,50,65,-0.5566596873104572],[125,50,66,-0.5565491765737534],[125,50,67,-0.5553769171237946],[125,50,68,-0.5544370338320732],[125,50,69,-0.554666593670845],[125,50,70,-0.5557628497481346],[125,50,71,-0.5574178770184517],[125,50,72,-0.5602027885615826],[125,50,73,-0.5630908571183681],[125,50,74,-0.5647980086505413],[125,50,75,-0.5648296177387238],[125,50,76,-0.5626550279557705],[125,50,77,-0.5583309903740883],[125,50,78,-0.5530056692659855],[125,50,79,-0.5474466904997826],[125,51,64,-0.5549346171319485],[125,51,65,-0.5566596873104572],[125,51,66,-0.5565491765737534],[125,51,67,-0.5553769171237946],[125,51,68,-0.5544370338320732],[125,51,69,-0.554666593670845],[125,51,70,-0.5557628497481346],[125,51,71,-0.5574178770184517],[125,51,72,-0.5602027885615826],[125,51,73,-0.5630908571183681],[125,51,74,-0.5647980086505413],[125,51,75,-0.5648296177387238],[125,51,76,-0.5626550279557705],[125,51,77,-0.5583309903740883],[125,51,78,-0.5530056692659855],[125,51,79,-0.5474466904997826],[125,52,64,-0.5549346171319485],[125,52,65,-0.5566596873104572],[125,52,66,-0.5565491765737534],[125,52,67,-0.5553769171237946],[125,52,68,-0.5544370338320732],[125,52,69,-0.554666593670845],[125,52,70,-0.5557628497481346],[125,52,71,-0.5574178770184517],[125,52,72,-0.5602027885615826],[125,52,73,-0.5630908571183681],[125,52,74,-0.5647980086505413],[125,52,75,-0.5648296177387238],[125,52,76,-0.5626550279557705],[125,52,77,-0.5583309903740883],[125,52,78,-0.5530056692659855],[125,52,79,-0.5474466904997826],[125,53,64,-0.5549346171319485],[125,53,65,-0.5566596873104572],[125,53,66,-0.5565491765737534],[125,53,67,-0.5553769171237946],[125,53,68,-0.5544370338320732],[125,53,69,-0.554666593670845],[125,53,70,-0.5557628497481346],[125,53,71,-0.5574178770184517],[125,53,72,-0.5602027885615826],[125,53,73,-0.5630908571183681],[125,53,74,-0.5647980086505413],[125,53,75,-0.5648296177387238],[125,53,76,-0.5626550279557705],[125,53,77,-0.5583309903740883],[125,53,78,-0.5530056692659855],[125,53,79,-0.5474466904997826],[125,54,64,-0.5549346171319485],[125,54,65,-0.5566596873104572],[125,54,66,-0.5565491765737534],[125,54,67,-0.5553769171237946],[125,54,68,-0.5544370338320732],[125,54,69,-0.554666593670845],[125,54,70,-0.5557628497481346],[125,54,71,-0.5574178770184517],[125,54,72,-0.5602027885615826],[125,54,73,-0.5630908571183681],[125,54,74,-0.5647980086505413],[125,54,75,-0.5648296177387238],[125,54,76,-0.5626550279557705],[125,54,77,-0.5583309903740883],[125,54,78,-0.5530056692659855],[125,54,79,-0.5474466904997826],[125,55,64,-0.5549346171319485],[125,55,65,-0.5566596873104572],[125,55,66,-0.5565491765737534],[125,55,67,-0.5553769171237946],[125,55,68,-0.5544370338320732],[125,55,69,-0.554666593670845],[125,55,70,-0.5557628497481346],[125,55,71,-0.5574178770184517],[125,55,72,-0.5602027885615826],[125,55,73,-0.5630908571183681],[125,55,74,-0.5647980086505413],[125,55,75,-0.5648296177387238],[125,55,76,-0.5626550279557705],[125,55,77,-0.5583309903740883],[125,55,78,-0.5530056692659855],[125,55,79,-0.5474466904997826],[125,56,64,-0.5549346171319485],[125,56,65,-0.5566596873104572],[125,56,66,-0.5565491765737534],[125,56,67,-0.5553769171237946],[125,56,68,-0.5544370338320732],[125,56,69,-0.554666593670845],[125,56,70,-0.5557628497481346],[125,56,71,-0.5574178770184517],[125,56,72,-0.5602027885615826],[125,56,73,-0.5630908571183681],[125,56,74,-0.5647980086505413],[125,56,75,-0.5648296177387238],[125,56,76,-0.5626550279557705],[125,56,77,-0.5583309903740883],[125,56,78,-0.5530056692659855],[125,56,79,-0.5474466904997826],[125,57,64,-0.5549346171319485],[125,57,65,-0.5566596873104572],[125,57,66,-0.5565491765737534],[125,57,67,-0.5553769171237946],[125,57,68,-0.5544370338320732],[125,57,69,-0.554666593670845],[125,57,70,-0.5557628497481346],[125,57,71,-0.5574178770184517],[125,57,72,-0.5602027885615826],[125,57,73,-0.5630908571183681],[125,57,74,-0.5647980086505413],[125,57,75,-0.5648296177387238],[125,57,76,-0.5626550279557705],[125,57,77,-0.5583309903740883],[125,57,78,-0.5530056692659855],[125,57,79,-0.5474466904997826],[125,58,64,-0.5549346171319485],[125,58,65,-0.5566596873104572],[125,58,66,-0.5565491765737534],[125,58,67,-0.5553769171237946],[125,58,68,-0.5544370338320732],[125,58,69,-0.554666593670845],[125,58,70,-0.5557628497481346],[125,58,71,-0.5574178770184517],[125,58,72,-0.5602027885615826],[125,58,73,-0.5630908571183681],[125,58,74,-0.5647980086505413],[125,58,75,-0.5648296177387238],[125,58,76,-0.5626550279557705],[125,58,77,-0.5583309903740883],[125,58,78,-0.5530056692659855],[125,58,79,-0.5474466904997826],[125,59,64,-0.5549346171319485],[125,59,65,-0.5566596873104572],[125,59,66,-0.5565491765737534],[125,59,67,-0.5553769171237946],[125,59,68,-0.5544370338320732],[125,59,69,-0.554666593670845],[125,59,70,-0.5557628497481346],[125,59,71,-0.5574178770184517],[125,59,72,-0.5602027885615826],[125,59,73,-0.5630908571183681],[125,59,74,-0.5647980086505413],[125,59,75,-0.5648296177387238],[125,59,76,-0.5626550279557705],[125,59,77,-0.5583309903740883],[125,59,78,-0.5530056692659855],[125,59,79,-0.5474466904997826],[125,60,64,-0.5549346171319485],[125,60,65,-0.5566596873104572],[125,60,66,-0.5565491765737534],[125,60,67,-0.5553769171237946],[125,60,68,-0.5544370338320732],[125,60,69,-0.554666593670845],[125,60,70,-0.5557628497481346],[125,60,71,-0.5574178770184517],[125,60,72,-0.5602027885615826],[125,60,73,-0.5630908571183681],[125,60,74,-0.5647980086505413],[125,60,75,-0.5648296177387238],[125,60,76,-0.5626550279557705],[125,60,77,-0.5583309903740883],[125,60,78,-0.5530056692659855],[125,60,79,-0.5474466904997826],[125,61,64,-0.5549346171319485],[125,61,65,-0.5566596873104572],[125,61,66,-0.5565491765737534],[125,61,67,-0.5553769171237946],[125,61,68,-0.5544370338320732],[125,61,69,-0.554666593670845],[125,61,70,-0.5557628497481346],[125,61,71,-0.5574178770184517],[125,61,72,-0.5602027885615826],[125,61,73,-0.5630908571183681],[125,61,74,-0.5647980086505413],[125,61,75,-0.5648296177387238],[125,61,76,-0.5626550279557705],[125,61,77,-0.5583309903740883],[125,61,78,-0.5530056692659855],[125,61,79,-0.5474466904997826],[125,62,64,-0.5549346171319485],[125,62,65,-0.5566596873104572],[125,62,66,-0.5565491765737534],[125,62,67,-0.5553769171237946],[125,62,68,-0.5544370338320732],[125,62,69,-0.554666593670845],[125,62,70,-0.5557628497481346],[125,62,71,-0.5574178770184517],[125,62,72,-0.5602027885615826],[125,62,73,-0.5630908571183681],[125,62,74,-0.5647980086505413],[125,62,75,-0.5648296177387238],[125,62,76,-0.5626550279557705],[125,62,77,-0.5583309903740883],[125,62,78,-0.5530056692659855],[125,62,79,-0.5474466904997826],[125,63,64,-0.5549346171319485],[125,63,65,-0.5566596873104572],[125,63,66,-0.5565491765737534],[125,63,67,-0.5553769171237946],[125,63,68,-0.5544370338320732],[125,63,69,-0.554666593670845],[125,63,70,-0.5557628497481346],[125,63,71,-0.5574178770184517],[125,63,72,-0.5602027885615826],[125,63,73,-0.5630908571183681],[125,63,74,-0.5647980086505413],[125,63,75,-0.5648296177387238],[125,63,76,-0.5626550279557705],[125,63,77,-0.5583309903740883],[125,63,78,-0.5530056692659855],[125,63,79,-0.5474466904997826],[125,64,64,-0.5549346171319485],[125,64,65,-0.5566596873104572],[125,64,66,-0.5565491765737534],[125,64,67,-0.5553769171237946],[125,64,68,-0.5544370338320732],[125,64,69,-0.554666593670845],[125,64,70,-0.5557628497481346],[125,64,71,-0.5574178770184517],[125,64,72,-0.5602027885615826],[125,64,73,-0.5630908571183681],[125,64,74,-0.5647980086505413],[125,64,75,-0.5648296177387238],[125,64,76,-0.5626550279557705],[125,64,77,-0.5583309903740883],[125,64,78,-0.5530056692659855],[125,64,79,-0.5474466904997826],[125,65,64,-0.5549346171319485],[125,65,65,-0.5566596873104572],[125,65,66,-0.5565491765737534],[125,65,67,-0.5553769171237946],[125,65,68,-0.5544370338320732],[125,65,69,-0.554666593670845],[125,65,70,-0.5557628497481346],[125,65,71,-0.5574178770184517],[125,65,72,-0.5602027885615826],[125,65,73,-0.5630908571183681],[125,65,74,-0.5647980086505413],[125,65,75,-0.5648296177387238],[125,65,76,-0.5626550279557705],[125,65,77,-0.5583309903740883],[125,65,78,-0.5530056692659855],[125,65,79,-0.5474466904997826],[125,66,64,-0.5549346171319485],[125,66,65,-0.5566596873104572],[125,66,66,-0.5565491765737534],[125,66,67,-0.5553769171237946],[125,66,68,-0.5544370338320732],[125,66,69,-0.554666593670845],[125,66,70,-0.5557628497481346],[125,66,71,-0.5574178770184517],[125,66,72,-0.5602027885615826],[125,66,73,-0.5630908571183681],[125,66,74,-0.5647980086505413],[125,66,75,-0.5648296177387238],[125,66,76,-0.5626550279557705],[125,66,77,-0.5583309903740883],[125,66,78,-0.5530056692659855],[125,66,79,-0.5474466904997826],[125,67,64,-0.5549346171319485],[125,67,65,-0.5566596873104572],[125,67,66,-0.5565491765737534],[125,67,67,-0.5553769171237946],[125,67,68,-0.5544370338320732],[125,67,69,-0.554666593670845],[125,67,70,-0.5557628497481346],[125,67,71,-0.5574178770184517],[125,67,72,-0.5602027885615826],[125,67,73,-0.5630908571183681],[125,67,74,-0.5647980086505413],[125,67,75,-0.5648296177387238],[125,67,76,-0.5626550279557705],[125,67,77,-0.5583309903740883],[125,67,78,-0.5530056692659855],[125,67,79,-0.5474466904997826],[125,68,64,-0.5549346171319485],[125,68,65,-0.5566596873104572],[125,68,66,-0.5565491765737534],[125,68,67,-0.5553769171237946],[125,68,68,-0.5544370338320732],[125,68,69,-0.554666593670845],[125,68,70,-0.5557628497481346],[125,68,71,-0.5574178770184517],[125,68,72,-0.5602027885615826],[125,68,73,-0.5630908571183681],[125,68,74,-0.5647980086505413],[125,68,75,-0.5648296177387238],[125,68,76,-0.5626550279557705],[125,68,77,-0.5583309903740883],[125,68,78,-0.5530056692659855],[125,68,79,-0.5474466904997826],[125,69,64,-0.5549346171319485],[125,69,65,-0.5566596873104572],[125,69,66,-0.5565491765737534],[125,69,67,-0.5553769171237946],[125,69,68,-0.5544370338320732],[125,69,69,-0.554666593670845],[125,69,70,-0.5557628497481346],[125,69,71,-0.5574178770184517],[125,69,72,-0.5602027885615826],[125,69,73,-0.5630908571183681],[125,69,74,-0.5647980086505413],[125,69,75,-0.5648296177387238],[125,69,76,-0.5626550279557705],[125,69,77,-0.5583309903740883],[125,69,78,-0.5530056692659855],[125,69,79,-0.5474466904997826],[125,70,64,-0.5549346171319485],[125,70,65,-0.5566596873104572],[125,70,66,-0.5565491765737534],[125,70,67,-0.5553769171237946],[125,70,68,-0.5544370338320732],[125,70,69,-0.554666593670845],[125,70,70,-0.5557628497481346],[125,70,71,-0.5574178770184517],[125,70,72,-0.5602027885615826],[125,70,73,-0.5630908571183681],[125,70,74,-0.5647980086505413],[125,70,75,-0.5648296177387238],[125,70,76,-0.5626550279557705],[125,70,77,-0.5583309903740883],[125,70,78,-0.5530056692659855],[125,70,79,-0.5474466904997826],[125,71,64,-0.5549346171319485],[125,71,65,-0.5566596873104572],[125,71,66,-0.5565491765737534],[125,71,67,-0.5553769171237946],[125,71,68,-0.5544370338320732],[125,71,69,-0.554666593670845],[125,71,70,-0.5557628497481346],[125,71,71,-0.5574178770184517],[125,71,72,-0.5602027885615826],[125,71,73,-0.5630908571183681],[125,71,74,-0.5647980086505413],[125,71,75,-0.5648296177387238],[125,71,76,-0.5626550279557705],[125,71,77,-0.5583309903740883],[125,71,78,-0.5530056692659855],[125,71,79,-0.5474466904997826],[125,72,64,-0.5549346171319485],[125,72,65,-0.5566596873104572],[125,72,66,-0.5565491765737534],[125,72,67,-0.5553769171237946],[125,72,68,-0.5544370338320732],[125,72,69,-0.554666593670845],[125,72,70,-0.5557628497481346],[125,72,71,-0.5574178770184517],[125,72,72,-0.5602027885615826],[125,72,73,-0.5630908571183681],[125,72,74,-0.5647980086505413],[125,72,75,-0.5648296177387238],[125,72,76,-0.5626550279557705],[125,72,77,-0.5583309903740883],[125,72,78,-0.5530056692659855],[125,72,79,-0.5474466904997826],[125,73,64,-0.5549346171319485],[125,73,65,-0.5566596873104572],[125,73,66,-0.5565491765737534],[125,73,67,-0.5553769171237946],[125,73,68,-0.5544370338320732],[125,73,69,-0.554666593670845],[125,73,70,-0.5557628497481346],[125,73,71,-0.5574178770184517],[125,73,72,-0.5602027885615826],[125,73,73,-0.5630908571183681],[125,73,74,-0.5647980086505413],[125,73,75,-0.5648296177387238],[125,73,76,-0.5626550279557705],[125,73,77,-0.5583309903740883],[125,73,78,-0.5530056692659855],[125,73,79,-0.5474466904997826],[125,74,64,-0.5549346171319485],[125,74,65,-0.5566596873104572],[125,74,66,-0.5565491765737534],[125,74,67,-0.5553769171237946],[125,74,68,-0.5544370338320732],[125,74,69,-0.554666593670845],[125,74,70,-0.5557628497481346],[125,74,71,-0.5574178770184517],[125,74,72,-0.5602027885615826],[125,74,73,-0.5630908571183681],[125,74,74,-0.5647980086505413],[125,74,75,-0.5648296177387238],[125,74,76,-0.5626550279557705],[125,74,77,-0.5583309903740883],[125,74,78,-0.5530056692659855],[125,74,79,-0.5474466904997826],[125,75,64,-0.5549346171319485],[125,75,65,-0.5566596873104572],[125,75,66,-0.5565491765737534],[125,75,67,-0.5553769171237946],[125,75,68,-0.5544370338320732],[125,75,69,-0.554666593670845],[125,75,70,-0.5557628497481346],[125,75,71,-0.5574178770184517],[125,75,72,-0.5602027885615826],[125,75,73,-0.5630908571183681],[125,75,74,-0.5647980086505413],[125,75,75,-0.5648296177387238],[125,75,76,-0.5626550279557705],[125,75,77,-0.5583309903740883],[125,75,78,-0.5530056692659855],[125,75,79,-0.5474466904997826],[125,76,64,-0.5549346171319485],[125,76,65,-0.5566596873104572],[125,76,66,-0.5565491765737534],[125,76,67,-0.5553769171237946],[125,76,68,-0.5544370338320732],[125,76,69,-0.554666593670845],[125,76,70,-0.5557628497481346],[125,76,71,-0.5574178770184517],[125,76,72,-0.5602027885615826],[125,76,73,-0.5630908571183681],[125,76,74,-0.5647980086505413],[125,76,75,-0.5648296177387238],[125,76,76,-0.5626550279557705],[125,76,77,-0.5583309903740883],[125,76,78,-0.5530056692659855],[125,76,79,-0.5474466904997826],[125,77,64,-0.5549346171319485],[125,77,65,-0.5566596873104572],[125,77,66,-0.5565491765737534],[125,77,67,-0.5553769171237946],[125,77,68,-0.5544370338320732],[125,77,69,-0.554666593670845],[125,77,70,-0.5557628497481346],[125,77,71,-0.5574178770184517],[125,77,72,-0.5602027885615826],[125,77,73,-0.5630908571183681],[125,77,74,-0.5647980086505413],[125,77,75,-0.5648296177387238],[125,77,76,-0.5626550279557705],[125,77,77,-0.5583309903740883],[125,77,78,-0.5530056692659855],[125,77,79,-0.5474466904997826],[125,78,64,-0.5549346171319485],[125,78,65,-0.5566596873104572],[125,78,66,-0.5565491765737534],[125,78,67,-0.5553769171237946],[125,78,68,-0.5544370338320732],[125,78,69,-0.554666593670845],[125,78,70,-0.5557628497481346],[125,78,71,-0.5574178770184517],[125,78,72,-0.5602027885615826],[125,78,73,-0.5630908571183681],[125,78,74,-0.5647980086505413],[125,78,75,-0.5648296177387238],[125,78,76,-0.5626550279557705],[125,78,77,-0.5583309903740883],[125,78,78,-0.5530056692659855],[125,78,79,-0.5474466904997826],[125,79,64,-0.5549346171319485],[125,79,65,-0.5566596873104572],[125,79,66,-0.5565491765737534],[125,79,67,-0.5553769171237946],[125,79,68,-0.5544370338320732],[125,79,69,-0.554666593670845],[125,79,70,-0.5557628497481346],[125,79,71,-0.5574178770184517],[125,79,72,-0.5602027885615826],[125,79,73,-0.5630908571183681],[125,79,74,-0.5647980086505413],[125,79,75,-0.5648296177387238],[125,79,76,-0.5626550279557705],[125,79,77,-0.5583309903740883],[125,79,78,-0.5530056692659855],[125,79,79,-0.5474466904997826],[125,80,64,-0.5549346171319485],[125,80,65,-0.5566596873104572],[125,80,66,-0.5565491765737534],[125,80,67,-0.5553769171237946],[125,80,68,-0.5544370338320732],[125,80,69,-0.554666593670845],[125,80,70,-0.5557628497481346],[125,80,71,-0.5574178770184517],[125,80,72,-0.5602027885615826],[125,80,73,-0.5630908571183681],[125,80,74,-0.5647980086505413],[125,80,75,-0.5648296177387238],[125,80,76,-0.5626550279557705],[125,80,77,-0.5583309903740883],[125,80,78,-0.5530056692659855],[125,80,79,-0.5474466904997826],[125,81,64,-0.5549346171319485],[125,81,65,-0.5566596873104572],[125,81,66,-0.5565491765737534],[125,81,67,-0.5553769171237946],[125,81,68,-0.5544370338320732],[125,81,69,-0.554666593670845],[125,81,70,-0.5557628497481346],[125,81,71,-0.5574178770184517],[125,81,72,-0.5602027885615826],[125,81,73,-0.5630908571183681],[125,81,74,-0.5647980086505413],[125,81,75,-0.5648296177387238],[125,81,76,-0.5626550279557705],[125,81,77,-0.5583309903740883],[125,81,78,-0.5530056692659855],[125,81,79,-0.5474466904997826],[125,82,64,-0.5549346171319485],[125,82,65,-0.5566596873104572],[125,82,66,-0.5565491765737534],[125,82,67,-0.5553769171237946],[125,82,68,-0.5544370338320732],[125,82,69,-0.554666593670845],[125,82,70,-0.5557628497481346],[125,82,71,-0.5574178770184517],[125,82,72,-0.5602027885615826],[125,82,73,-0.5630908571183681],[125,82,74,-0.5647980086505413],[125,82,75,-0.5648296177387238],[125,82,76,-0.5626550279557705],[125,82,77,-0.5583309903740883],[125,82,78,-0.5530056692659855],[125,82,79,-0.5474466904997826],[125,83,64,-0.5549346171319485],[125,83,65,-0.5566596873104572],[125,83,66,-0.5565491765737534],[125,83,67,-0.5553769171237946],[125,83,68,-0.5544370338320732],[125,83,69,-0.554666593670845],[125,83,70,-0.5557628497481346],[125,83,71,-0.5574178770184517],[125,83,72,-0.5602027885615826],[125,83,73,-0.5630908571183681],[125,83,74,-0.5647980086505413],[125,83,75,-0.5648296177387238],[125,83,76,-0.5626550279557705],[125,83,77,-0.5583309903740883],[125,83,78,-0.5530056692659855],[125,83,79,-0.5474466904997826],[125,84,64,-0.5549346171319485],[125,84,65,-0.5566596873104572],[125,84,66,-0.5565491765737534],[125,84,67,-0.5553769171237946],[125,84,68,-0.5544370338320732],[125,84,69,-0.554666593670845],[125,84,70,-0.5557628497481346],[125,84,71,-0.5574178770184517],[125,84,72,-0.5602027885615826],[125,84,73,-0.5630908571183681],[125,84,74,-0.5647980086505413],[125,84,75,-0.5648296177387238],[125,84,76,-0.5626550279557705],[125,84,77,-0.5583309903740883],[125,84,78,-0.5530056692659855],[125,84,79,-0.5474466904997826],[125,85,64,-0.5549346171319485],[125,85,65,-0.5566596873104572],[125,85,66,-0.5565491765737534],[125,85,67,-0.5553769171237946],[125,85,68,-0.5544370338320732],[125,85,69,-0.554666593670845],[125,85,70,-0.5557628497481346],[125,85,71,-0.5574178770184517],[125,85,72,-0.5602027885615826],[125,85,73,-0.5630908571183681],[125,85,74,-0.5647980086505413],[125,85,75,-0.5648296177387238],[125,85,76,-0.5626550279557705],[125,85,77,-0.5583309903740883],[125,85,78,-0.5530056692659855],[125,85,79,-0.5474466904997826],[125,86,64,-0.5549346171319485],[125,86,65,-0.5566596873104572],[125,86,66,-0.5565491765737534],[125,86,67,-0.5553769171237946],[125,86,68,-0.5544370338320732],[125,86,69,-0.554666593670845],[125,86,70,-0.5557628497481346],[125,86,71,-0.5574178770184517],[125,86,72,-0.5602027885615826],[125,86,73,-0.5630908571183681],[125,86,74,-0.5647980086505413],[125,86,75,-0.5648296177387238],[125,86,76,-0.5626550279557705],[125,86,77,-0.5583309903740883],[125,86,78,-0.5530056692659855],[125,86,79,-0.5474466904997826],[125,87,64,-0.5549346171319485],[125,87,65,-0.5566596873104572],[125,87,66,-0.5565491765737534],[125,87,67,-0.5553769171237946],[125,87,68,-0.5544370338320732],[125,87,69,-0.554666593670845],[125,87,70,-0.5557628497481346],[125,87,71,-0.5574178770184517],[125,87,72,-0.5602027885615826],[125,87,73,-0.5630908571183681],[125,87,74,-0.5647980086505413],[125,87,75,-0.5648296177387238],[125,87,76,-0.5626550279557705],[125,87,77,-0.5583309903740883],[125,87,78,-0.5530056692659855],[125,87,79,-0.5474466904997826],[125,88,64,-0.5549346171319485],[125,88,65,-0.5566596873104572],[125,88,66,-0.5565491765737534],[125,88,67,-0.5553769171237946],[125,88,68,-0.5544370338320732],[125,88,69,-0.554666593670845],[125,88,70,-0.5557628497481346],[125,88,71,-0.5574178770184517],[125,88,72,-0.5602027885615826],[125,88,73,-0.5630908571183681],[125,88,74,-0.5647980086505413],[125,88,75,-0.5648296177387238],[125,88,76,-0.5626550279557705],[125,88,77,-0.5583309903740883],[125,88,78,-0.5530056692659855],[125,88,79,-0.5474466904997826],[125,89,64,-0.5549346171319485],[125,89,65,-0.5566596873104572],[125,89,66,-0.5565491765737534],[125,89,67,-0.5553769171237946],[125,89,68,-0.5544370338320732],[125,89,69,-0.554666593670845],[125,89,70,-0.5557628497481346],[125,89,71,-0.5574178770184517],[125,89,72,-0.5602027885615826],[125,89,73,-0.5630908571183681],[125,89,74,-0.5647980086505413],[125,89,75,-0.5648296177387238],[125,89,76,-0.5626550279557705],[125,89,77,-0.5583309903740883],[125,89,78,-0.5530056692659855],[125,89,79,-0.5474466904997826],[125,90,64,-0.5549346171319485],[125,90,65,-0.5566596873104572],[125,90,66,-0.5565491765737534],[125,90,67,-0.5553769171237946],[125,90,68,-0.5544370338320732],[125,90,69,-0.554666593670845],[125,90,70,-0.5557628497481346],[125,90,71,-0.5574178770184517],[125,90,72,-0.5602027885615826],[125,90,73,-0.5630908571183681],[125,90,74,-0.5647980086505413],[125,90,75,-0.5648296177387238],[125,90,76,-0.5626550279557705],[125,90,77,-0.5583309903740883],[125,90,78,-0.5530056692659855],[125,90,79,-0.5474466904997826],[125,91,64,-0.5549346171319485],[125,91,65,-0.5566596873104572],[125,91,66,-0.5565491765737534],[125,91,67,-0.5553769171237946],[125,91,68,-0.5544370338320732],[125,91,69,-0.554666593670845],[125,91,70,-0.5557628497481346],[125,91,71,-0.5574178770184517],[125,91,72,-0.5602027885615826],[125,91,73,-0.5630908571183681],[125,91,74,-0.5647980086505413],[125,91,75,-0.5648296177387238],[125,91,76,-0.5626550279557705],[125,91,77,-0.5583309903740883],[125,91,78,-0.5530056692659855],[125,91,79,-0.5474466904997826],[125,92,64,-0.5549346171319485],[125,92,65,-0.5566596873104572],[125,92,66,-0.5565491765737534],[125,92,67,-0.5553769171237946],[125,92,68,-0.5544370338320732],[125,92,69,-0.554666593670845],[125,92,70,-0.5557628497481346],[125,92,71,-0.5574178770184517],[125,92,72,-0.5602027885615826],[125,92,73,-0.5630908571183681],[125,92,74,-0.5647980086505413],[125,92,75,-0.5648296177387238],[125,92,76,-0.5626550279557705],[125,92,77,-0.5583309903740883],[125,92,78,-0.5530056692659855],[125,92,79,-0.5474466904997826],[125,93,64,-0.5549346171319485],[125,93,65,-0.5566596873104572],[125,93,66,-0.5565491765737534],[125,93,67,-0.5553769171237946],[125,93,68,-0.5544370338320732],[125,93,69,-0.554666593670845],[125,93,70,-0.5557628497481346],[125,93,71,-0.5574178770184517],[125,93,72,-0.5602027885615826],[125,93,73,-0.5630908571183681],[125,93,74,-0.5647980086505413],[125,93,75,-0.5648296177387238],[125,93,76,-0.5626550279557705],[125,93,77,-0.5583309903740883],[125,93,78,-0.5530056692659855],[125,93,79,-0.5474466904997826],[125,94,64,-0.5549346171319485],[125,94,65,-0.5566596873104572],[125,94,66,-0.5565491765737534],[125,94,67,-0.5553769171237946],[125,94,68,-0.5544370338320732],[125,94,69,-0.554666593670845],[125,94,70,-0.5557628497481346],[125,94,71,-0.5574178770184517],[125,94,72,-0.5602027885615826],[125,94,73,-0.5630908571183681],[125,94,74,-0.5647980086505413],[125,94,75,-0.5648296177387238],[125,94,76,-0.5626550279557705],[125,94,77,-0.5583309903740883],[125,94,78,-0.5530056692659855],[125,94,79,-0.5474466904997826],[125,95,64,-0.5549346171319485],[125,95,65,-0.5566596873104572],[125,95,66,-0.5565491765737534],[125,95,67,-0.5553769171237946],[125,95,68,-0.5544370338320732],[125,95,69,-0.554666593670845],[125,95,70,-0.5557628497481346],[125,95,71,-0.5574178770184517],[125,95,72,-0.5602027885615826],[125,95,73,-0.5630908571183681],[125,95,74,-0.5647980086505413],[125,95,75,-0.5648296177387238],[125,95,76,-0.5626550279557705],[125,95,77,-0.5583309903740883],[125,95,78,-0.5530056692659855],[125,95,79,-0.5474466904997826],[125,96,64,-0.5549346171319485],[125,96,65,-0.5566596873104572],[125,96,66,-0.5565491765737534],[125,96,67,-0.5553769171237946],[125,96,68,-0.5544370338320732],[125,96,69,-0.554666593670845],[125,96,70,-0.5557628497481346],[125,96,71,-0.5574178770184517],[125,96,72,-0.5602027885615826],[125,96,73,-0.5630908571183681],[125,96,74,-0.5647980086505413],[125,96,75,-0.5648296177387238],[125,96,76,-0.5626550279557705],[125,96,77,-0.5583309903740883],[125,96,78,-0.5530056692659855],[125,96,79,-0.5474466904997826],[125,97,64,-0.5549346171319485],[125,97,65,-0.5566596873104572],[125,97,66,-0.5565491765737534],[125,97,67,-0.5553769171237946],[125,97,68,-0.5544370338320732],[125,97,69,-0.554666593670845],[125,97,70,-0.5557628497481346],[125,97,71,-0.5574178770184517],[125,97,72,-0.5602027885615826],[125,97,73,-0.5630908571183681],[125,97,74,-0.5647980086505413],[125,97,75,-0.5648296177387238],[125,97,76,-0.5626550279557705],[125,97,77,-0.5583309903740883],[125,97,78,-0.5530056692659855],[125,97,79,-0.5474466904997826],[125,98,64,-0.5549346171319485],[125,98,65,-0.5566596873104572],[125,98,66,-0.5565491765737534],[125,98,67,-0.5553769171237946],[125,98,68,-0.5544370338320732],[125,98,69,-0.554666593670845],[125,98,70,-0.5557628497481346],[125,98,71,-0.5574178770184517],[125,98,72,-0.5602027885615826],[125,98,73,-0.5630908571183681],[125,98,74,-0.5647980086505413],[125,98,75,-0.5648296177387238],[125,98,76,-0.5626550279557705],[125,98,77,-0.5583309903740883],[125,98,78,-0.5530056692659855],[125,98,79,-0.5474466904997826],[125,99,64,-0.5549346171319485],[125,99,65,-0.5566596873104572],[125,99,66,-0.5565491765737534],[125,99,67,-0.5553769171237946],[125,99,68,-0.5544370338320732],[125,99,69,-0.554666593670845],[125,99,70,-0.5557628497481346],[125,99,71,-0.5574178770184517],[125,99,72,-0.5602027885615826],[125,99,73,-0.5630908571183681],[125,99,74,-0.5647980086505413],[125,99,75,-0.5648296177387238],[125,99,76,-0.5626550279557705],[125,99,77,-0.5583309903740883],[125,99,78,-0.5530056692659855],[125,99,79,-0.5474466904997826],[125,100,64,-0.5549346171319485],[125,100,65,-0.5566596873104572],[125,100,66,-0.5565491765737534],[125,100,67,-0.5553769171237946],[125,100,68,-0.5544370338320732],[125,100,69,-0.554666593670845],[125,100,70,-0.5557628497481346],[125,100,71,-0.5574178770184517],[125,100,72,-0.5602027885615826],[125,100,73,-0.5630908571183681],[125,100,74,-0.5647980086505413],[125,100,75,-0.5648296177387238],[125,100,76,-0.5626550279557705],[125,100,77,-0.5583309903740883],[125,100,78,-0.5530056692659855],[125,100,79,-0.5474466904997826],[125,101,64,-0.5549346171319485],[125,101,65,-0.5566596873104572],[125,101,66,-0.5565491765737534],[125,101,67,-0.5553769171237946],[125,101,68,-0.5544370338320732],[125,101,69,-0.554666593670845],[125,101,70,-0.5557628497481346],[125,101,71,-0.5574178770184517],[125,101,72,-0.5602027885615826],[125,101,73,-0.5630908571183681],[125,101,74,-0.5647980086505413],[125,101,75,-0.5648296177387238],[125,101,76,-0.5626550279557705],[125,101,77,-0.5583309903740883],[125,101,78,-0.5530056692659855],[125,101,79,-0.5474466904997826],[125,102,64,-0.5549346171319485],[125,102,65,-0.5566596873104572],[125,102,66,-0.5565491765737534],[125,102,67,-0.5553769171237946],[125,102,68,-0.5544370338320732],[125,102,69,-0.554666593670845],[125,102,70,-0.5557628497481346],[125,102,71,-0.5574178770184517],[125,102,72,-0.5602027885615826],[125,102,73,-0.5630908571183681],[125,102,74,-0.5647980086505413],[125,102,75,-0.5648296177387238],[125,102,76,-0.5626550279557705],[125,102,77,-0.5583309903740883],[125,102,78,-0.5530056692659855],[125,102,79,-0.5474466904997826],[125,103,64,-0.5549346171319485],[125,103,65,-0.5566596873104572],[125,103,66,-0.5565491765737534],[125,103,67,-0.5553769171237946],[125,103,68,-0.5544370338320732],[125,103,69,-0.554666593670845],[125,103,70,-0.5557628497481346],[125,103,71,-0.5574178770184517],[125,103,72,-0.5602027885615826],[125,103,73,-0.5630908571183681],[125,103,74,-0.5647980086505413],[125,103,75,-0.5648296177387238],[125,103,76,-0.5626550279557705],[125,103,77,-0.5583309903740883],[125,103,78,-0.5530056692659855],[125,103,79,-0.5474466904997826],[125,104,64,-0.5549346171319485],[125,104,65,-0.5566596873104572],[125,104,66,-0.5565491765737534],[125,104,67,-0.5553769171237946],[125,104,68,-0.5544370338320732],[125,104,69,-0.554666593670845],[125,104,70,-0.5557628497481346],[125,104,71,-0.5574178770184517],[125,104,72,-0.5602027885615826],[125,104,73,-0.5630908571183681],[125,104,74,-0.5647980086505413],[125,104,75,-0.5648296177387238],[125,104,76,-0.5626550279557705],[125,104,77,-0.5583309903740883],[125,104,78,-0.5530056692659855],[125,104,79,-0.5474466904997826],[125,105,64,-0.5549346171319485],[125,105,65,-0.5566596873104572],[125,105,66,-0.5565491765737534],[125,105,67,-0.5553769171237946],[125,105,68,-0.5544370338320732],[125,105,69,-0.554666593670845],[125,105,70,-0.5557628497481346],[125,105,71,-0.5574178770184517],[125,105,72,-0.5602027885615826],[125,105,73,-0.5630908571183681],[125,105,74,-0.5647980086505413],[125,105,75,-0.5648296177387238],[125,105,76,-0.5626550279557705],[125,105,77,-0.5583309903740883],[125,105,78,-0.5530056692659855],[125,105,79,-0.5474466904997826],[125,106,64,-0.5549346171319485],[125,106,65,-0.5566596873104572],[125,106,66,-0.5565491765737534],[125,106,67,-0.5553769171237946],[125,106,68,-0.5544370338320732],[125,106,69,-0.554666593670845],[125,106,70,-0.5557628497481346],[125,106,71,-0.5574178770184517],[125,106,72,-0.5602027885615826],[125,106,73,-0.5630908571183681],[125,106,74,-0.5647980086505413],[125,106,75,-0.5648296177387238],[125,106,76,-0.5626550279557705],[125,106,77,-0.5583309903740883],[125,106,78,-0.5530056692659855],[125,106,79,-0.5474466904997826],[125,107,64,-0.5549346171319485],[125,107,65,-0.5566596873104572],[125,107,66,-0.5565491765737534],[125,107,67,-0.5553769171237946],[125,107,68,-0.5544370338320732],[125,107,69,-0.554666593670845],[125,107,70,-0.5557628497481346],[125,107,71,-0.5574178770184517],[125,107,72,-0.5602027885615826],[125,107,73,-0.5630908571183681],[125,107,74,-0.5647980086505413],[125,107,75,-0.5648296177387238],[125,107,76,-0.5626550279557705],[125,107,77,-0.5583309903740883],[125,107,78,-0.5530056692659855],[125,107,79,-0.5474466904997826],[125,108,64,-0.5549346171319485],[125,108,65,-0.5566596873104572],[125,108,66,-0.5565491765737534],[125,108,67,-0.5553769171237946],[125,108,68,-0.5544370338320732],[125,108,69,-0.554666593670845],[125,108,70,-0.5557628497481346],[125,108,71,-0.5574178770184517],[125,108,72,-0.5602027885615826],[125,108,73,-0.5630908571183681],[125,108,74,-0.5647980086505413],[125,108,75,-0.5648296177387238],[125,108,76,-0.5626550279557705],[125,108,77,-0.5583309903740883],[125,108,78,-0.5530056692659855],[125,108,79,-0.5474466904997826],[125,109,64,-0.5549346171319485],[125,109,65,-0.5566596873104572],[125,109,66,-0.5565491765737534],[125,109,67,-0.5553769171237946],[125,109,68,-0.5544370338320732],[125,109,69,-0.554666593670845],[125,109,70,-0.5557628497481346],[125,109,71,-0.5574178770184517],[125,109,72,-0.5602027885615826],[125,109,73,-0.5630908571183681],[125,109,74,-0.5647980086505413],[125,109,75,-0.5648296177387238],[125,109,76,-0.5626550279557705],[125,109,77,-0.5583309903740883],[125,109,78,-0.5530056692659855],[125,109,79,-0.5474466904997826],[125,110,64,-0.5549346171319485],[125,110,65,-0.5566596873104572],[125,110,66,-0.5565491765737534],[125,110,67,-0.5553769171237946],[125,110,68,-0.5544370338320732],[125,110,69,-0.554666593670845],[125,110,70,-0.5557628497481346],[125,110,71,-0.5574178770184517],[125,110,72,-0.5602027885615826],[125,110,73,-0.5630908571183681],[125,110,74,-0.5647980086505413],[125,110,75,-0.5648296177387238],[125,110,76,-0.5626550279557705],[125,110,77,-0.5583309903740883],[125,110,78,-0.5530056692659855],[125,110,79,-0.5474466904997826],[125,111,64,-0.5549346171319485],[125,111,65,-0.5566596873104572],[125,111,66,-0.5565491765737534],[125,111,67,-0.5553769171237946],[125,111,68,-0.5544370338320732],[125,111,69,-0.554666593670845],[125,111,70,-0.5557628497481346],[125,111,71,-0.5574178770184517],[125,111,72,-0.5602027885615826],[125,111,73,-0.5630908571183681],[125,111,74,-0.5647980086505413],[125,111,75,-0.5648296177387238],[125,111,76,-0.5626550279557705],[125,111,77,-0.5583309903740883],[125,111,78,-0.5530056692659855],[125,111,79,-0.5474466904997826],[125,112,64,-0.5549346171319485],[125,112,65,-0.5566596873104572],[125,112,66,-0.5565491765737534],[125,112,67,-0.5553769171237946],[125,112,68,-0.5544370338320732],[125,112,69,-0.554666593670845],[125,112,70,-0.5557628497481346],[125,112,71,-0.5574178770184517],[125,112,72,-0.5602027885615826],[125,112,73,-0.5630908571183681],[125,112,74,-0.5647980086505413],[125,112,75,-0.5648296177387238],[125,112,76,-0.5626550279557705],[125,112,77,-0.5583309903740883],[125,112,78,-0.5530056692659855],[125,112,79,-0.5474466904997826],[125,113,64,-0.5549346171319485],[125,113,65,-0.5566596873104572],[125,113,66,-0.5565491765737534],[125,113,67,-0.5553769171237946],[125,113,68,-0.5544370338320732],[125,113,69,-0.554666593670845],[125,113,70,-0.5557628497481346],[125,113,71,-0.5574178770184517],[125,113,72,-0.5602027885615826],[125,113,73,-0.5630908571183681],[125,113,74,-0.5647980086505413],[125,113,75,-0.5648296177387238],[125,113,76,-0.5626550279557705],[125,113,77,-0.5583309903740883],[125,113,78,-0.5530056692659855],[125,113,79,-0.5474466904997826],[125,114,64,-0.5549346171319485],[125,114,65,-0.5566596873104572],[125,114,66,-0.5565491765737534],[125,114,67,-0.5553769171237946],[125,114,68,-0.5544370338320732],[125,114,69,-0.554666593670845],[125,114,70,-0.5557628497481346],[125,114,71,-0.5574178770184517],[125,114,72,-0.5602027885615826],[125,114,73,-0.5630908571183681],[125,114,74,-0.5647980086505413],[125,114,75,-0.5648296177387238],[125,114,76,-0.5626550279557705],[125,114,77,-0.5583309903740883],[125,114,78,-0.5530056692659855],[125,114,79,-0.5474466904997826],[125,115,64,-0.5549346171319485],[125,115,65,-0.5566596873104572],[125,115,66,-0.5565491765737534],[125,115,67,-0.5553769171237946],[125,115,68,-0.5544370338320732],[125,115,69,-0.554666593670845],[125,115,70,-0.5557628497481346],[125,115,71,-0.5574178770184517],[125,115,72,-0.5602027885615826],[125,115,73,-0.5630908571183681],[125,115,74,-0.5647980086505413],[125,115,75,-0.5648296177387238],[125,115,76,-0.5626550279557705],[125,115,77,-0.5583309903740883],[125,115,78,-0.5530056692659855],[125,115,79,-0.5474466904997826],[125,116,64,-0.5549346171319485],[125,116,65,-0.5566596873104572],[125,116,66,-0.5565491765737534],[125,116,67,-0.5553769171237946],[125,116,68,-0.5544370338320732],[125,116,69,-0.554666593670845],[125,116,70,-0.5557628497481346],[125,116,71,-0.5574178770184517],[125,116,72,-0.5602027885615826],[125,116,73,-0.5630908571183681],[125,116,74,-0.5647980086505413],[125,116,75,-0.5648296177387238],[125,116,76,-0.5626550279557705],[125,116,77,-0.5583309903740883],[125,116,78,-0.5530056692659855],[125,116,79,-0.5474466904997826],[125,117,64,-0.5549346171319485],[125,117,65,-0.5566596873104572],[125,117,66,-0.5565491765737534],[125,117,67,-0.5553769171237946],[125,117,68,-0.5544370338320732],[125,117,69,-0.554666593670845],[125,117,70,-0.5557628497481346],[125,117,71,-0.5574178770184517],[125,117,72,-0.5602027885615826],[125,117,73,-0.5630908571183681],[125,117,74,-0.5647980086505413],[125,117,75,-0.5648296177387238],[125,117,76,-0.5626550279557705],[125,117,77,-0.5583309903740883],[125,117,78,-0.5530056692659855],[125,117,79,-0.5474466904997826],[125,118,64,-0.5549346171319485],[125,118,65,-0.5566596873104572],[125,118,66,-0.5565491765737534],[125,118,67,-0.5553769171237946],[125,118,68,-0.5544370338320732],[125,118,69,-0.554666593670845],[125,118,70,-0.5557628497481346],[125,118,71,-0.5574178770184517],[125,118,72,-0.5602027885615826],[125,118,73,-0.5630908571183681],[125,118,74,-0.5647980086505413],[125,118,75,-0.5648296177387238],[125,118,76,-0.5626550279557705],[125,118,77,-0.5583309903740883],[125,118,78,-0.5530056692659855],[125,118,79,-0.5474466904997826],[125,119,64,-0.5549346171319485],[125,119,65,-0.5566596873104572],[125,119,66,-0.5565491765737534],[125,119,67,-0.5553769171237946],[125,119,68,-0.5544370338320732],[125,119,69,-0.554666593670845],[125,119,70,-0.5557628497481346],[125,119,71,-0.5574178770184517],[125,119,72,-0.5602027885615826],[125,119,73,-0.5630908571183681],[125,119,74,-0.5647980086505413],[125,119,75,-0.5648296177387238],[125,119,76,-0.5626550279557705],[125,119,77,-0.5583309903740883],[125,119,78,-0.5530056692659855],[125,119,79,-0.5474466904997826],[125,120,64,-0.5549346171319485],[125,120,65,-0.5566596873104572],[125,120,66,-0.5565491765737534],[125,120,67,-0.5553769171237946],[125,120,68,-0.5544370338320732],[125,120,69,-0.554666593670845],[125,120,70,-0.5557628497481346],[125,120,71,-0.5574178770184517],[125,120,72,-0.5602027885615826],[125,120,73,-0.5630908571183681],[125,120,74,-0.5647980086505413],[125,120,75,-0.5648296177387238],[125,120,76,-0.5626550279557705],[125,120,77,-0.5583309903740883],[125,120,78,-0.5530056692659855],[125,120,79,-0.5474466904997826],[125,121,64,-0.5549346171319485],[125,121,65,-0.5566596873104572],[125,121,66,-0.5565491765737534],[125,121,67,-0.5553769171237946],[125,121,68,-0.5544370338320732],[125,121,69,-0.554666593670845],[125,121,70,-0.5557628497481346],[125,121,71,-0.5574178770184517],[125,121,72,-0.5602027885615826],[125,121,73,-0.5630908571183681],[125,121,74,-0.5647980086505413],[125,121,75,-0.5648296177387238],[125,121,76,-0.5626550279557705],[125,121,77,-0.5583309903740883],[125,121,78,-0.5530056692659855],[125,121,79,-0.5474466904997826],[125,122,64,-0.5549346171319485],[125,122,65,-0.5566596873104572],[125,122,66,-0.5565491765737534],[125,122,67,-0.5553769171237946],[125,122,68,-0.5544370338320732],[125,122,69,-0.554666593670845],[125,122,70,-0.5557628497481346],[125,122,71,-0.5574178770184517],[125,122,72,-0.5602027885615826],[125,122,73,-0.5630908571183681],[125,122,74,-0.5647980086505413],[125,122,75,-0.5648296177387238],[125,122,76,-0.5626550279557705],[125,122,77,-0.5583309903740883],[125,122,78,-0.5530056692659855],[125,122,79,-0.5474466904997826],[125,123,64,-0.5549346171319485],[125,123,65,-0.5566596873104572],[125,123,66,-0.5565491765737534],[125,123,67,-0.5553769171237946],[125,123,68,-0.5544370338320732],[125,123,69,-0.554666593670845],[125,123,70,-0.5557628497481346],[125,123,71,-0.5574178770184517],[125,123,72,-0.5602027885615826],[125,123,73,-0.5630908571183681],[125,123,74,-0.5647980086505413],[125,123,75,-0.5648296177387238],[125,123,76,-0.5626550279557705],[125,123,77,-0.5583309903740883],[125,123,78,-0.5530056692659855],[125,123,79,-0.5474466904997826],[125,124,64,-0.5549346171319485],[125,124,65,-0.5566596873104572],[125,124,66,-0.5565491765737534],[125,124,67,-0.5553769171237946],[125,124,68,-0.5544370338320732],[125,124,69,-0.554666593670845],[125,124,70,-0.5557628497481346],[125,124,71,-0.5574178770184517],[125,124,72,-0.5602027885615826],[125,124,73,-0.5630908571183681],[125,124,74,-0.5647980086505413],[125,124,75,-0.5648296177387238],[125,124,76,-0.5626550279557705],[125,124,77,-0.5583309903740883],[125,124,78,-0.5530056692659855],[125,124,79,-0.5474466904997826],[125,125,64,-0.5549346171319485],[125,125,65,-0.5566596873104572],[125,125,66,-0.5565491765737534],[125,125,67,-0.5553769171237946],[125,125,68,-0.5544370338320732],[125,125,69,-0.554666593670845],[125,125,70,-0.5557628497481346],[125,125,71,-0.5574178770184517],[125,125,72,-0.5602027885615826],[125,125,73,-0.5630908571183681],[125,125,74,-0.5647980086505413],[125,125,75,-0.5648296177387238],[125,125,76,-0.5626550279557705],[125,125,77,-0.5583309903740883],[125,125,78,-0.5530056692659855],[125,125,79,-0.5474466904997826],[125,126,64,-0.5549346171319485],[125,126,65,-0.5566596873104572],[125,126,66,-0.5565491765737534],[125,126,67,-0.5553769171237946],[125,126,68,-0.5544370338320732],[125,126,69,-0.554666593670845],[125,126,70,-0.5557628497481346],[125,126,71,-0.5574178770184517],[125,126,72,-0.5602027885615826],[125,126,73,-0.5630908571183681],[125,126,74,-0.5647980086505413],[125,126,75,-0.5648296177387238],[125,126,76,-0.5626550279557705],[125,126,77,-0.5583309903740883],[125,126,78,-0.5530056692659855],[125,126,79,-0.5474466904997826],[125,127,64,-0.5549346171319485],[125,127,65,-0.5566596873104572],[125,127,66,-0.5565491765737534],[125,127,67,-0.5553769171237946],[125,127,68,-0.5544370338320732],[125,127,69,-0.554666593670845],[125,127,70,-0.5557628497481346],[125,127,71,-0.5574178770184517],[125,127,72,-0.5602027885615826],[125,127,73,-0.5630908571183681],[125,127,74,-0.5647980086505413],[125,127,75,-0.5648296177387238],[125,127,76,-0.5626550279557705],[125,127,77,-0.5583309903740883],[125,127,78,-0.5530056692659855],[125,127,79,-0.5474466904997826],[125,128,64,-0.5549346171319485],[125,128,65,-0.5566596873104572],[125,128,66,-0.5565491765737534],[125,128,67,-0.5553769171237946],[125,128,68,-0.5544370338320732],[125,128,69,-0.554666593670845],[125,128,70,-0.5557628497481346],[125,128,71,-0.5574178770184517],[125,128,72,-0.5602027885615826],[125,128,73,-0.5630908571183681],[125,128,74,-0.5647980086505413],[125,128,75,-0.5648296177387238],[125,128,76,-0.5626550279557705],[125,128,77,-0.5583309903740883],[125,128,78,-0.5530056692659855],[125,128,79,-0.5474466904997826],[125,129,64,-0.5549346171319485],[125,129,65,-0.5566596873104572],[125,129,66,-0.5565491765737534],[125,129,67,-0.5553769171237946],[125,129,68,-0.5544370338320732],[125,129,69,-0.554666593670845],[125,129,70,-0.5557628497481346],[125,129,71,-0.5574178770184517],[125,129,72,-0.5602027885615826],[125,129,73,-0.5630908571183681],[125,129,74,-0.5647980086505413],[125,129,75,-0.5648296177387238],[125,129,76,-0.5626550279557705],[125,129,77,-0.5583309903740883],[125,129,78,-0.5530056692659855],[125,129,79,-0.5474466904997826],[125,130,64,-0.5549346171319485],[125,130,65,-0.5566596873104572],[125,130,66,-0.5565491765737534],[125,130,67,-0.5553769171237946],[125,130,68,-0.5544370338320732],[125,130,69,-0.554666593670845],[125,130,70,-0.5557628497481346],[125,130,71,-0.5574178770184517],[125,130,72,-0.5602027885615826],[125,130,73,-0.5630908571183681],[125,130,74,-0.5647980086505413],[125,130,75,-0.5648296177387238],[125,130,76,-0.5626550279557705],[125,130,77,-0.5583309903740883],[125,130,78,-0.5530056692659855],[125,130,79,-0.5474466904997826],[125,131,64,-0.5549346171319485],[125,131,65,-0.5566596873104572],[125,131,66,-0.5565491765737534],[125,131,67,-0.5553769171237946],[125,131,68,-0.5544370338320732],[125,131,69,-0.554666593670845],[125,131,70,-0.5557628497481346],[125,131,71,-0.5574178770184517],[125,131,72,-0.5602027885615826],[125,131,73,-0.5630908571183681],[125,131,74,-0.5647980086505413],[125,131,75,-0.5648296177387238],[125,131,76,-0.5626550279557705],[125,131,77,-0.5583309903740883],[125,131,78,-0.5530056692659855],[125,131,79,-0.5474466904997826],[125,132,64,-0.5549346171319485],[125,132,65,-0.5566596873104572],[125,132,66,-0.5565491765737534],[125,132,67,-0.5553769171237946],[125,132,68,-0.5544370338320732],[125,132,69,-0.554666593670845],[125,132,70,-0.5557628497481346],[125,132,71,-0.5574178770184517],[125,132,72,-0.5602027885615826],[125,132,73,-0.5630908571183681],[125,132,74,-0.5647980086505413],[125,132,75,-0.5648296177387238],[125,132,76,-0.5626550279557705],[125,132,77,-0.5583309903740883],[125,132,78,-0.5530056692659855],[125,132,79,-0.5474466904997826],[125,133,64,-0.5549346171319485],[125,133,65,-0.5566596873104572],[125,133,66,-0.5565491765737534],[125,133,67,-0.5553769171237946],[125,133,68,-0.5544370338320732],[125,133,69,-0.554666593670845],[125,133,70,-0.5557628497481346],[125,133,71,-0.5574178770184517],[125,133,72,-0.5602027885615826],[125,133,73,-0.5630908571183681],[125,133,74,-0.5647980086505413],[125,133,75,-0.5648296177387238],[125,133,76,-0.5626550279557705],[125,133,77,-0.5583309903740883],[125,133,78,-0.5530056692659855],[125,133,79,-0.5474466904997826],[125,134,64,-0.5549346171319485],[125,134,65,-0.5566596873104572],[125,134,66,-0.5565491765737534],[125,134,67,-0.5553769171237946],[125,134,68,-0.5544370338320732],[125,134,69,-0.554666593670845],[125,134,70,-0.5557628497481346],[125,134,71,-0.5574178770184517],[125,134,72,-0.5602027885615826],[125,134,73,-0.5630908571183681],[125,134,74,-0.5647980086505413],[125,134,75,-0.5648296177387238],[125,134,76,-0.5626550279557705],[125,134,77,-0.5583309903740883],[125,134,78,-0.5530056692659855],[125,134,79,-0.5474466904997826],[125,135,64,-0.5549346171319485],[125,135,65,-0.5566596873104572],[125,135,66,-0.5565491765737534],[125,135,67,-0.5553769171237946],[125,135,68,-0.5544370338320732],[125,135,69,-0.554666593670845],[125,135,70,-0.5557628497481346],[125,135,71,-0.5574178770184517],[125,135,72,-0.5602027885615826],[125,135,73,-0.5630908571183681],[125,135,74,-0.5647980086505413],[125,135,75,-0.5648296177387238],[125,135,76,-0.5626550279557705],[125,135,77,-0.5583309903740883],[125,135,78,-0.5530056692659855],[125,135,79,-0.5474466904997826],[125,136,64,-0.5549346171319485],[125,136,65,-0.5566596873104572],[125,136,66,-0.5565491765737534],[125,136,67,-0.5553769171237946],[125,136,68,-0.5544370338320732],[125,136,69,-0.554666593670845],[125,136,70,-0.5557628497481346],[125,136,71,-0.5574178770184517],[125,136,72,-0.5602027885615826],[125,136,73,-0.5630908571183681],[125,136,74,-0.5647980086505413],[125,136,75,-0.5648296177387238],[125,136,76,-0.5626550279557705],[125,136,77,-0.5583309903740883],[125,136,78,-0.5530056692659855],[125,136,79,-0.5474466904997826],[125,137,64,-0.5549346171319485],[125,137,65,-0.5566596873104572],[125,137,66,-0.5565491765737534],[125,137,67,-0.5553769171237946],[125,137,68,-0.5544370338320732],[125,137,69,-0.554666593670845],[125,137,70,-0.5557628497481346],[125,137,71,-0.5574178770184517],[125,137,72,-0.5602027885615826],[125,137,73,-0.5630908571183681],[125,137,74,-0.5647980086505413],[125,137,75,-0.5648296177387238],[125,137,76,-0.5626550279557705],[125,137,77,-0.5583309903740883],[125,137,78,-0.5530056692659855],[125,137,79,-0.5474466904997826],[125,138,64,-0.5549346171319485],[125,138,65,-0.5566596873104572],[125,138,66,-0.5565491765737534],[125,138,67,-0.5553769171237946],[125,138,68,-0.5544370338320732],[125,138,69,-0.554666593670845],[125,138,70,-0.5557628497481346],[125,138,71,-0.5574178770184517],[125,138,72,-0.5602027885615826],[125,138,73,-0.5630908571183681],[125,138,74,-0.5647980086505413],[125,138,75,-0.5648296177387238],[125,138,76,-0.5626550279557705],[125,138,77,-0.5583309903740883],[125,138,78,-0.5530056692659855],[125,138,79,-0.5474466904997826],[125,139,64,-0.5549346171319485],[125,139,65,-0.5566596873104572],[125,139,66,-0.5565491765737534],[125,139,67,-0.5553769171237946],[125,139,68,-0.5544370338320732],[125,139,69,-0.554666593670845],[125,139,70,-0.5557628497481346],[125,139,71,-0.5574178770184517],[125,139,72,-0.5602027885615826],[125,139,73,-0.5630908571183681],[125,139,74,-0.5647980086505413],[125,139,75,-0.5648296177387238],[125,139,76,-0.5626550279557705],[125,139,77,-0.5583309903740883],[125,139,78,-0.5530056692659855],[125,139,79,-0.5474466904997826],[125,140,64,-0.5549346171319485],[125,140,65,-0.5566596873104572],[125,140,66,-0.5565491765737534],[125,140,67,-0.5553769171237946],[125,140,68,-0.5544370338320732],[125,140,69,-0.554666593670845],[125,140,70,-0.5557628497481346],[125,140,71,-0.5574178770184517],[125,140,72,-0.5602027885615826],[125,140,73,-0.5630908571183681],[125,140,74,-0.5647980086505413],[125,140,75,-0.5648296177387238],[125,140,76,-0.5626550279557705],[125,140,77,-0.5583309903740883],[125,140,78,-0.5530056692659855],[125,140,79,-0.5474466904997826],[125,141,64,-0.5549346171319485],[125,141,65,-0.5566596873104572],[125,141,66,-0.5565491765737534],[125,141,67,-0.5553769171237946],[125,141,68,-0.5544370338320732],[125,141,69,-0.554666593670845],[125,141,70,-0.5557628497481346],[125,141,71,-0.5574178770184517],[125,141,72,-0.5602027885615826],[125,141,73,-0.5630908571183681],[125,141,74,-0.5647980086505413],[125,141,75,-0.5648296177387238],[125,141,76,-0.5626550279557705],[125,141,77,-0.5583309903740883],[125,141,78,-0.5530056692659855],[125,141,79,-0.5474466904997826],[125,142,64,-0.5549346171319485],[125,142,65,-0.5566596873104572],[125,142,66,-0.5565491765737534],[125,142,67,-0.5553769171237946],[125,142,68,-0.5544370338320732],[125,142,69,-0.554666593670845],[125,142,70,-0.5557628497481346],[125,142,71,-0.5574178770184517],[125,142,72,-0.5602027885615826],[125,142,73,-0.5630908571183681],[125,142,74,-0.5647980086505413],[125,142,75,-0.5648296177387238],[125,142,76,-0.5626550279557705],[125,142,77,-0.5583309903740883],[125,142,78,-0.5530056692659855],[125,142,79,-0.5474466904997826],[125,143,64,-0.5549346171319485],[125,143,65,-0.5566596873104572],[125,143,66,-0.5565491765737534],[125,143,67,-0.5553769171237946],[125,143,68,-0.5544370338320732],[125,143,69,-0.554666593670845],[125,143,70,-0.5557628497481346],[125,143,71,-0.5574178770184517],[125,143,72,-0.5602027885615826],[125,143,73,-0.5630908571183681],[125,143,74,-0.5647980086505413],[125,143,75,-0.5648296177387238],[125,143,76,-0.5626550279557705],[125,143,77,-0.5583309903740883],[125,143,78,-0.5530056692659855],[125,143,79,-0.5474466904997826],[125,144,64,-0.5549346171319485],[125,144,65,-0.5566596873104572],[125,144,66,-0.5565491765737534],[125,144,67,-0.5553769171237946],[125,144,68,-0.5544370338320732],[125,144,69,-0.554666593670845],[125,144,70,-0.5557628497481346],[125,144,71,-0.5574178770184517],[125,144,72,-0.5602027885615826],[125,144,73,-0.5630908571183681],[125,144,74,-0.5647980086505413],[125,144,75,-0.5648296177387238],[125,144,76,-0.5626550279557705],[125,144,77,-0.5583309903740883],[125,144,78,-0.5530056692659855],[125,144,79,-0.5474466904997826],[125,145,64,-0.5549346171319485],[125,145,65,-0.5566596873104572],[125,145,66,-0.5565491765737534],[125,145,67,-0.5553769171237946],[125,145,68,-0.5544370338320732],[125,145,69,-0.554666593670845],[125,145,70,-0.5557628497481346],[125,145,71,-0.5574178770184517],[125,145,72,-0.5602027885615826],[125,145,73,-0.5630908571183681],[125,145,74,-0.5647980086505413],[125,145,75,-0.5648296177387238],[125,145,76,-0.5626550279557705],[125,145,77,-0.5583309903740883],[125,145,78,-0.5530056692659855],[125,145,79,-0.5474466904997826],[125,146,64,-0.5549346171319485],[125,146,65,-0.5566596873104572],[125,146,66,-0.5565491765737534],[125,146,67,-0.5553769171237946],[125,146,68,-0.5544370338320732],[125,146,69,-0.554666593670845],[125,146,70,-0.5557628497481346],[125,146,71,-0.5574178770184517],[125,146,72,-0.5602027885615826],[125,146,73,-0.5630908571183681],[125,146,74,-0.5647980086505413],[125,146,75,-0.5648296177387238],[125,146,76,-0.5626550279557705],[125,146,77,-0.5583309903740883],[125,146,78,-0.5530056692659855],[125,146,79,-0.5474466904997826],[125,147,64,-0.5549346171319485],[125,147,65,-0.5566596873104572],[125,147,66,-0.5565491765737534],[125,147,67,-0.5553769171237946],[125,147,68,-0.5544370338320732],[125,147,69,-0.554666593670845],[125,147,70,-0.5557628497481346],[125,147,71,-0.5574178770184517],[125,147,72,-0.5602027885615826],[125,147,73,-0.5630908571183681],[125,147,74,-0.5647980086505413],[125,147,75,-0.5648296177387238],[125,147,76,-0.5626550279557705],[125,147,77,-0.5583309903740883],[125,147,78,-0.5530056692659855],[125,147,79,-0.5474466904997826],[125,148,64,-0.5549346171319485],[125,148,65,-0.5566596873104572],[125,148,66,-0.5565491765737534],[125,148,67,-0.5553769171237946],[125,148,68,-0.5544370338320732],[125,148,69,-0.554666593670845],[125,148,70,-0.5557628497481346],[125,148,71,-0.5574178770184517],[125,148,72,-0.5602027885615826],[125,148,73,-0.5630908571183681],[125,148,74,-0.5647980086505413],[125,148,75,-0.5648296177387238],[125,148,76,-0.5626550279557705],[125,148,77,-0.5583309903740883],[125,148,78,-0.5530056692659855],[125,148,79,-0.5474466904997826],[125,149,64,-0.5549346171319485],[125,149,65,-0.5566596873104572],[125,149,66,-0.5565491765737534],[125,149,67,-0.5553769171237946],[125,149,68,-0.5544370338320732],[125,149,69,-0.554666593670845],[125,149,70,-0.5557628497481346],[125,149,71,-0.5574178770184517],[125,149,72,-0.5602027885615826],[125,149,73,-0.5630908571183681],[125,149,74,-0.5647980086505413],[125,149,75,-0.5648296177387238],[125,149,76,-0.5626550279557705],[125,149,77,-0.5583309903740883],[125,149,78,-0.5530056692659855],[125,149,79,-0.5474466904997826],[125,150,64,-0.5549346171319485],[125,150,65,-0.5566596873104572],[125,150,66,-0.5565491765737534],[125,150,67,-0.5553769171237946],[125,150,68,-0.5544370338320732],[125,150,69,-0.554666593670845],[125,150,70,-0.5557628497481346],[125,150,71,-0.5574178770184517],[125,150,72,-0.5602027885615826],[125,150,73,-0.5630908571183681],[125,150,74,-0.5647980086505413],[125,150,75,-0.5648296177387238],[125,150,76,-0.5626550279557705],[125,150,77,-0.5583309903740883],[125,150,78,-0.5530056692659855],[125,150,79,-0.5474466904997826],[125,151,64,-0.5549346171319485],[125,151,65,-0.5566596873104572],[125,151,66,-0.5565491765737534],[125,151,67,-0.5553769171237946],[125,151,68,-0.5544370338320732],[125,151,69,-0.554666593670845],[125,151,70,-0.5557628497481346],[125,151,71,-0.5574178770184517],[125,151,72,-0.5602027885615826],[125,151,73,-0.5630908571183681],[125,151,74,-0.5647980086505413],[125,151,75,-0.5648296177387238],[125,151,76,-0.5626550279557705],[125,151,77,-0.5583309903740883],[125,151,78,-0.5530056692659855],[125,151,79,-0.5474466904997826],[125,152,64,-0.5549346171319485],[125,152,65,-0.5566596873104572],[125,152,66,-0.5565491765737534],[125,152,67,-0.5553769171237946],[125,152,68,-0.5544370338320732],[125,152,69,-0.554666593670845],[125,152,70,-0.5557628497481346],[125,152,71,-0.5574178770184517],[125,152,72,-0.5602027885615826],[125,152,73,-0.5630908571183681],[125,152,74,-0.5647980086505413],[125,152,75,-0.5648296177387238],[125,152,76,-0.5626550279557705],[125,152,77,-0.5583309903740883],[125,152,78,-0.5530056692659855],[125,152,79,-0.5474466904997826],[125,153,64,-0.5549346171319485],[125,153,65,-0.5566596873104572],[125,153,66,-0.5565491765737534],[125,153,67,-0.5553769171237946],[125,153,68,-0.5544370338320732],[125,153,69,-0.554666593670845],[125,153,70,-0.5557628497481346],[125,153,71,-0.5574178770184517],[125,153,72,-0.5602027885615826],[125,153,73,-0.5630908571183681],[125,153,74,-0.5647980086505413],[125,153,75,-0.5648296177387238],[125,153,76,-0.5626550279557705],[125,153,77,-0.5583309903740883],[125,153,78,-0.5530056692659855],[125,153,79,-0.5474466904997826],[125,154,64,-0.5549346171319485],[125,154,65,-0.5566596873104572],[125,154,66,-0.5565491765737534],[125,154,67,-0.5553769171237946],[125,154,68,-0.5544370338320732],[125,154,69,-0.554666593670845],[125,154,70,-0.5557628497481346],[125,154,71,-0.5574178770184517],[125,154,72,-0.5602027885615826],[125,154,73,-0.5630908571183681],[125,154,74,-0.5647980086505413],[125,154,75,-0.5648296177387238],[125,154,76,-0.5626550279557705],[125,154,77,-0.5583309903740883],[125,154,78,-0.5530056692659855],[125,154,79,-0.5474466904997826],[125,155,64,-0.5549346171319485],[125,155,65,-0.5566596873104572],[125,155,66,-0.5565491765737534],[125,155,67,-0.5553769171237946],[125,155,68,-0.5544370338320732],[125,155,69,-0.554666593670845],[125,155,70,-0.5557628497481346],[125,155,71,-0.5574178770184517],[125,155,72,-0.5602027885615826],[125,155,73,-0.5630908571183681],[125,155,74,-0.5647980086505413],[125,155,75,-0.5648296177387238],[125,155,76,-0.5626550279557705],[125,155,77,-0.5583309903740883],[125,155,78,-0.5530056692659855],[125,155,79,-0.5474466904997826],[125,156,64,-0.5549346171319485],[125,156,65,-0.5566596873104572],[125,156,66,-0.5565491765737534],[125,156,67,-0.5553769171237946],[125,156,68,-0.5544370338320732],[125,156,69,-0.554666593670845],[125,156,70,-0.5557628497481346],[125,156,71,-0.5574178770184517],[125,156,72,-0.5602027885615826],[125,156,73,-0.5630908571183681],[125,156,74,-0.5647980086505413],[125,156,75,-0.5648296177387238],[125,156,76,-0.5626550279557705],[125,156,77,-0.5583309903740883],[125,156,78,-0.5530056692659855],[125,156,79,-0.5474466904997826],[125,157,64,-0.5549346171319485],[125,157,65,-0.5566596873104572],[125,157,66,-0.5565491765737534],[125,157,67,-0.5553769171237946],[125,157,68,-0.5544370338320732],[125,157,69,-0.554666593670845],[125,157,70,-0.5557628497481346],[125,157,71,-0.5574178770184517],[125,157,72,-0.5602027885615826],[125,157,73,-0.5630908571183681],[125,157,74,-0.5647980086505413],[125,157,75,-0.5648296177387238],[125,157,76,-0.5626550279557705],[125,157,77,-0.5583309903740883],[125,157,78,-0.5530056692659855],[125,157,79,-0.5474466904997826],[125,158,64,-0.5549346171319485],[125,158,65,-0.5566596873104572],[125,158,66,-0.5565491765737534],[125,158,67,-0.5553769171237946],[125,158,68,-0.5544370338320732],[125,158,69,-0.554666593670845],[125,158,70,-0.5557628497481346],[125,158,71,-0.5574178770184517],[125,158,72,-0.5602027885615826],[125,158,73,-0.5630908571183681],[125,158,74,-0.5647980086505413],[125,158,75,-0.5648296177387238],[125,158,76,-0.5626550279557705],[125,158,77,-0.5583309903740883],[125,158,78,-0.5530056692659855],[125,158,79,-0.5474466904997826],[125,159,64,-0.5549346171319485],[125,159,65,-0.5566596873104572],[125,159,66,-0.5565491765737534],[125,159,67,-0.5553769171237946],[125,159,68,-0.5544370338320732],[125,159,69,-0.554666593670845],[125,159,70,-0.5557628497481346],[125,159,71,-0.5574178770184517],[125,159,72,-0.5602027885615826],[125,159,73,-0.5630908571183681],[125,159,74,-0.5647980086505413],[125,159,75,-0.5648296177387238],[125,159,76,-0.5626550279557705],[125,159,77,-0.5583309903740883],[125,159,78,-0.5530056692659855],[125,159,79,-0.5474466904997826],[125,160,64,-0.5549346171319485],[125,160,65,-0.5566596873104572],[125,160,66,-0.5565491765737534],[125,160,67,-0.5553769171237946],[125,160,68,-0.5544370338320732],[125,160,69,-0.554666593670845],[125,160,70,-0.5557628497481346],[125,160,71,-0.5574178770184517],[125,160,72,-0.5602027885615826],[125,160,73,-0.5630908571183681],[125,160,74,-0.5647980086505413],[125,160,75,-0.5648296177387238],[125,160,76,-0.5626550279557705],[125,160,77,-0.5583309903740883],[125,160,78,-0.5530056692659855],[125,160,79,-0.5474466904997826],[125,161,64,-0.5549346171319485],[125,161,65,-0.5566596873104572],[125,161,66,-0.5565491765737534],[125,161,67,-0.5553769171237946],[125,161,68,-0.5544370338320732],[125,161,69,-0.554666593670845],[125,161,70,-0.5557628497481346],[125,161,71,-0.5574178770184517],[125,161,72,-0.5602027885615826],[125,161,73,-0.5630908571183681],[125,161,74,-0.5647980086505413],[125,161,75,-0.5648296177387238],[125,161,76,-0.5626550279557705],[125,161,77,-0.5583309903740883],[125,161,78,-0.5530056692659855],[125,161,79,-0.5474466904997826],[125,162,64,-0.5549346171319485],[125,162,65,-0.5566596873104572],[125,162,66,-0.5565491765737534],[125,162,67,-0.5553769171237946],[125,162,68,-0.5544370338320732],[125,162,69,-0.554666593670845],[125,162,70,-0.5557628497481346],[125,162,71,-0.5574178770184517],[125,162,72,-0.5602027885615826],[125,162,73,-0.5630908571183681],[125,162,74,-0.5647980086505413],[125,162,75,-0.5648296177387238],[125,162,76,-0.5626550279557705],[125,162,77,-0.5583309903740883],[125,162,78,-0.5530056692659855],[125,162,79,-0.5474466904997826],[125,163,64,-0.5549346171319485],[125,163,65,-0.5566596873104572],[125,163,66,-0.5565491765737534],[125,163,67,-0.5553769171237946],[125,163,68,-0.5544370338320732],[125,163,69,-0.554666593670845],[125,163,70,-0.5557628497481346],[125,163,71,-0.5574178770184517],[125,163,72,-0.5602027885615826],[125,163,73,-0.5630908571183681],[125,163,74,-0.5647980086505413],[125,163,75,-0.5648296177387238],[125,163,76,-0.5626550279557705],[125,163,77,-0.5583309903740883],[125,163,78,-0.5530056692659855],[125,163,79,-0.5474466904997826],[125,164,64,-0.5549346171319485],[125,164,65,-0.5566596873104572],[125,164,66,-0.5565491765737534],[125,164,67,-0.5553769171237946],[125,164,68,-0.5544370338320732],[125,164,69,-0.554666593670845],[125,164,70,-0.5557628497481346],[125,164,71,-0.5574178770184517],[125,164,72,-0.5602027885615826],[125,164,73,-0.5630908571183681],[125,164,74,-0.5647980086505413],[125,164,75,-0.5648296177387238],[125,164,76,-0.5626550279557705],[125,164,77,-0.5583309903740883],[125,164,78,-0.5530056692659855],[125,164,79,-0.5474466904997826],[125,165,64,-0.5549346171319485],[125,165,65,-0.5566596873104572],[125,165,66,-0.5565491765737534],[125,165,67,-0.5553769171237946],[125,165,68,-0.5544370338320732],[125,165,69,-0.554666593670845],[125,165,70,-0.5557628497481346],[125,165,71,-0.5574178770184517],[125,165,72,-0.5602027885615826],[125,165,73,-0.5630908571183681],[125,165,74,-0.5647980086505413],[125,165,75,-0.5648296177387238],[125,165,76,-0.5626550279557705],[125,165,77,-0.5583309903740883],[125,165,78,-0.5530056692659855],[125,165,79,-0.5474466904997826],[125,166,64,-0.5549346171319485],[125,166,65,-0.5566596873104572],[125,166,66,-0.5565491765737534],[125,166,67,-0.5553769171237946],[125,166,68,-0.5544370338320732],[125,166,69,-0.554666593670845],[125,166,70,-0.5557628497481346],[125,166,71,-0.5574178770184517],[125,166,72,-0.5602027885615826],[125,166,73,-0.5630908571183681],[125,166,74,-0.5647980086505413],[125,166,75,-0.5648296177387238],[125,166,76,-0.5626550279557705],[125,166,77,-0.5583309903740883],[125,166,78,-0.5530056692659855],[125,166,79,-0.5474466904997826],[125,167,64,-0.5549346171319485],[125,167,65,-0.5566596873104572],[125,167,66,-0.5565491765737534],[125,167,67,-0.5553769171237946],[125,167,68,-0.5544370338320732],[125,167,69,-0.554666593670845],[125,167,70,-0.5557628497481346],[125,167,71,-0.5574178770184517],[125,167,72,-0.5602027885615826],[125,167,73,-0.5630908571183681],[125,167,74,-0.5647980086505413],[125,167,75,-0.5648296177387238],[125,167,76,-0.5626550279557705],[125,167,77,-0.5583309903740883],[125,167,78,-0.5530056692659855],[125,167,79,-0.5474466904997826],[125,168,64,-0.5549346171319485],[125,168,65,-0.5566596873104572],[125,168,66,-0.5565491765737534],[125,168,67,-0.5553769171237946],[125,168,68,-0.5544370338320732],[125,168,69,-0.554666593670845],[125,168,70,-0.5557628497481346],[125,168,71,-0.5574178770184517],[125,168,72,-0.5602027885615826],[125,168,73,-0.5630908571183681],[125,168,74,-0.5647980086505413],[125,168,75,-0.5648296177387238],[125,168,76,-0.5626550279557705],[125,168,77,-0.5583309903740883],[125,168,78,-0.5530056692659855],[125,168,79,-0.5474466904997826],[125,169,64,-0.5549346171319485],[125,169,65,-0.5566596873104572],[125,169,66,-0.5565491765737534],[125,169,67,-0.5553769171237946],[125,169,68,-0.5544370338320732],[125,169,69,-0.554666593670845],[125,169,70,-0.5557628497481346],[125,169,71,-0.5574178770184517],[125,169,72,-0.5602027885615826],[125,169,73,-0.5630908571183681],[125,169,74,-0.5647980086505413],[125,169,75,-0.5648296177387238],[125,169,76,-0.5626550279557705],[125,169,77,-0.5583309903740883],[125,169,78,-0.5530056692659855],[125,169,79,-0.5474466904997826],[125,170,64,-0.5549346171319485],[125,170,65,-0.5566596873104572],[125,170,66,-0.5565491765737534],[125,170,67,-0.5553769171237946],[125,170,68,-0.5544370338320732],[125,170,69,-0.554666593670845],[125,170,70,-0.5557628497481346],[125,170,71,-0.5574178770184517],[125,170,72,-0.5602027885615826],[125,170,73,-0.5630908571183681],[125,170,74,-0.5647980086505413],[125,170,75,-0.5648296177387238],[125,170,76,-0.5626550279557705],[125,170,77,-0.5583309903740883],[125,170,78,-0.5530056692659855],[125,170,79,-0.5474466904997826],[125,171,64,-0.5549346171319485],[125,171,65,-0.5566596873104572],[125,171,66,-0.5565491765737534],[125,171,67,-0.5553769171237946],[125,171,68,-0.5544370338320732],[125,171,69,-0.554666593670845],[125,171,70,-0.5557628497481346],[125,171,71,-0.5574178770184517],[125,171,72,-0.5602027885615826],[125,171,73,-0.5630908571183681],[125,171,74,-0.5647980086505413],[125,171,75,-0.5648296177387238],[125,171,76,-0.5626550279557705],[125,171,77,-0.5583309903740883],[125,171,78,-0.5530056692659855],[125,171,79,-0.5474466904997826],[125,172,64,-0.5549346171319485],[125,172,65,-0.5566596873104572],[125,172,66,-0.5565491765737534],[125,172,67,-0.5553769171237946],[125,172,68,-0.5544370338320732],[125,172,69,-0.554666593670845],[125,172,70,-0.5557628497481346],[125,172,71,-0.5574178770184517],[125,172,72,-0.5602027885615826],[125,172,73,-0.5630908571183681],[125,172,74,-0.5647980086505413],[125,172,75,-0.5648296177387238],[125,172,76,-0.5626550279557705],[125,172,77,-0.5583309903740883],[125,172,78,-0.5530056692659855],[125,172,79,-0.5474466904997826],[125,173,64,-0.5549346171319485],[125,173,65,-0.5566596873104572],[125,173,66,-0.5565491765737534],[125,173,67,-0.5553769171237946],[125,173,68,-0.5544370338320732],[125,173,69,-0.554666593670845],[125,173,70,-0.5557628497481346],[125,173,71,-0.5574178770184517],[125,173,72,-0.5602027885615826],[125,173,73,-0.5630908571183681],[125,173,74,-0.5647980086505413],[125,173,75,-0.5648296177387238],[125,173,76,-0.5626550279557705],[125,173,77,-0.5583309903740883],[125,173,78,-0.5530056692659855],[125,173,79,-0.5474466904997826],[125,174,64,-0.5549346171319485],[125,174,65,-0.5566596873104572],[125,174,66,-0.5565491765737534],[125,174,67,-0.5553769171237946],[125,174,68,-0.5544370338320732],[125,174,69,-0.554666593670845],[125,174,70,-0.5557628497481346],[125,174,71,-0.5574178770184517],[125,174,72,-0.5602027885615826],[125,174,73,-0.5630908571183681],[125,174,74,-0.5647980086505413],[125,174,75,-0.5648296177387238],[125,174,76,-0.5626550279557705],[125,174,77,-0.5583309903740883],[125,174,78,-0.5530056692659855],[125,174,79,-0.5474466904997826],[125,175,64,-0.5549346171319485],[125,175,65,-0.5566596873104572],[125,175,66,-0.5565491765737534],[125,175,67,-0.5553769171237946],[125,175,68,-0.5544370338320732],[125,175,69,-0.554666593670845],[125,175,70,-0.5557628497481346],[125,175,71,-0.5574178770184517],[125,175,72,-0.5602027885615826],[125,175,73,-0.5630908571183681],[125,175,74,-0.5647980086505413],[125,175,75,-0.5648296177387238],[125,175,76,-0.5626550279557705],[125,175,77,-0.5583309903740883],[125,175,78,-0.5530056692659855],[125,175,79,-0.5474466904997826],[125,176,64,-0.5549346171319485],[125,176,65,-0.5566596873104572],[125,176,66,-0.5565491765737534],[125,176,67,-0.5553769171237946],[125,176,68,-0.5544370338320732],[125,176,69,-0.554666593670845],[125,176,70,-0.5557628497481346],[125,176,71,-0.5574178770184517],[125,176,72,-0.5602027885615826],[125,176,73,-0.5630908571183681],[125,176,74,-0.5647980086505413],[125,176,75,-0.5648296177387238],[125,176,76,-0.5626550279557705],[125,176,77,-0.5583309903740883],[125,176,78,-0.5530056692659855],[125,176,79,-0.5474466904997826],[125,177,64,-0.5549346171319485],[125,177,65,-0.5566596873104572],[125,177,66,-0.5565491765737534],[125,177,67,-0.5553769171237946],[125,177,68,-0.5544370338320732],[125,177,69,-0.554666593670845],[125,177,70,-0.5557628497481346],[125,177,71,-0.5574178770184517],[125,177,72,-0.5602027885615826],[125,177,73,-0.5630908571183681],[125,177,74,-0.5647980086505413],[125,177,75,-0.5648296177387238],[125,177,76,-0.5626550279557705],[125,177,77,-0.5583309903740883],[125,177,78,-0.5530056692659855],[125,177,79,-0.5474466904997826],[125,178,64,-0.5549346171319485],[125,178,65,-0.5566596873104572],[125,178,66,-0.5565491765737534],[125,178,67,-0.5553769171237946],[125,178,68,-0.5544370338320732],[125,178,69,-0.554666593670845],[125,178,70,-0.5557628497481346],[125,178,71,-0.5574178770184517],[125,178,72,-0.5602027885615826],[125,178,73,-0.5630908571183681],[125,178,74,-0.5647980086505413],[125,178,75,-0.5648296177387238],[125,178,76,-0.5626550279557705],[125,178,77,-0.5583309903740883],[125,178,78,-0.5530056692659855],[125,178,79,-0.5474466904997826],[125,179,64,-0.5549346171319485],[125,179,65,-0.5566596873104572],[125,179,66,-0.5565491765737534],[125,179,67,-0.5553769171237946],[125,179,68,-0.5544370338320732],[125,179,69,-0.554666593670845],[125,179,70,-0.5557628497481346],[125,179,71,-0.5574178770184517],[125,179,72,-0.5602027885615826],[125,179,73,-0.5630908571183681],[125,179,74,-0.5647980086505413],[125,179,75,-0.5648296177387238],[125,179,76,-0.5626550279557705],[125,179,77,-0.5583309903740883],[125,179,78,-0.5530056692659855],[125,179,79,-0.5474466904997826],[125,180,64,-0.5549346171319485],[125,180,65,-0.5566596873104572],[125,180,66,-0.5565491765737534],[125,180,67,-0.5553769171237946],[125,180,68,-0.5544370338320732],[125,180,69,-0.554666593670845],[125,180,70,-0.5557628497481346],[125,180,71,-0.5574178770184517],[125,180,72,-0.5602027885615826],[125,180,73,-0.5630908571183681],[125,180,74,-0.5647980086505413],[125,180,75,-0.5648296177387238],[125,180,76,-0.5626550279557705],[125,180,77,-0.5583309903740883],[125,180,78,-0.5530056692659855],[125,180,79,-0.5474466904997826],[125,181,64,-0.5549346171319485],[125,181,65,-0.5566596873104572],[125,181,66,-0.5565491765737534],[125,181,67,-0.5553769171237946],[125,181,68,-0.5544370338320732],[125,181,69,-0.554666593670845],[125,181,70,-0.5557628497481346],[125,181,71,-0.5574178770184517],[125,181,72,-0.5602027885615826],[125,181,73,-0.5630908571183681],[125,181,74,-0.5647980086505413],[125,181,75,-0.5648296177387238],[125,181,76,-0.5626550279557705],[125,181,77,-0.5583309903740883],[125,181,78,-0.5530056692659855],[125,181,79,-0.5474466904997826],[125,182,64,-0.5549346171319485],[125,182,65,-0.5566596873104572],[125,182,66,-0.5565491765737534],[125,182,67,-0.5553769171237946],[125,182,68,-0.5544370338320732],[125,182,69,-0.554666593670845],[125,182,70,-0.5557628497481346],[125,182,71,-0.5574178770184517],[125,182,72,-0.5602027885615826],[125,182,73,-0.5630908571183681],[125,182,74,-0.5647980086505413],[125,182,75,-0.5648296177387238],[125,182,76,-0.5626550279557705],[125,182,77,-0.5583309903740883],[125,182,78,-0.5530056692659855],[125,182,79,-0.5474466904997826],[125,183,64,-0.5549346171319485],[125,183,65,-0.5566596873104572],[125,183,66,-0.5565491765737534],[125,183,67,-0.5553769171237946],[125,183,68,-0.5544370338320732],[125,183,69,-0.554666593670845],[125,183,70,-0.5557628497481346],[125,183,71,-0.5574178770184517],[125,183,72,-0.5602027885615826],[125,183,73,-0.5630908571183681],[125,183,74,-0.5647980086505413],[125,183,75,-0.5648296177387238],[125,183,76,-0.5626550279557705],[125,183,77,-0.5583309903740883],[125,183,78,-0.5530056692659855],[125,183,79,-0.5474466904997826],[125,184,64,-0.5549346171319485],[125,184,65,-0.5566596873104572],[125,184,66,-0.5565491765737534],[125,184,67,-0.5553769171237946],[125,184,68,-0.5544370338320732],[125,184,69,-0.554666593670845],[125,184,70,-0.5557628497481346],[125,184,71,-0.5574178770184517],[125,184,72,-0.5602027885615826],[125,184,73,-0.5630908571183681],[125,184,74,-0.5647980086505413],[125,184,75,-0.5648296177387238],[125,184,76,-0.5626550279557705],[125,184,77,-0.5583309903740883],[125,184,78,-0.5530056692659855],[125,184,79,-0.5474466904997826],[125,185,64,-0.5549346171319485],[125,185,65,-0.5566596873104572],[125,185,66,-0.5565491765737534],[125,185,67,-0.5553769171237946],[125,185,68,-0.5544370338320732],[125,185,69,-0.554666593670845],[125,185,70,-0.5557628497481346],[125,185,71,-0.5574178770184517],[125,185,72,-0.5602027885615826],[125,185,73,-0.5630908571183681],[125,185,74,-0.5647980086505413],[125,185,75,-0.5648296177387238],[125,185,76,-0.5626550279557705],[125,185,77,-0.5583309903740883],[125,185,78,-0.5530056692659855],[125,185,79,-0.5474466904997826],[125,186,64,-0.5549346171319485],[125,186,65,-0.5566596873104572],[125,186,66,-0.5565491765737534],[125,186,67,-0.5553769171237946],[125,186,68,-0.5544370338320732],[125,186,69,-0.554666593670845],[125,186,70,-0.5557628497481346],[125,186,71,-0.5574178770184517],[125,186,72,-0.5602027885615826],[125,186,73,-0.5630908571183681],[125,186,74,-0.5647980086505413],[125,186,75,-0.5648296177387238],[125,186,76,-0.5626550279557705],[125,186,77,-0.5583309903740883],[125,186,78,-0.5530056692659855],[125,186,79,-0.5474466904997826],[125,187,64,-0.5549346171319485],[125,187,65,-0.5566596873104572],[125,187,66,-0.5565491765737534],[125,187,67,-0.5553769171237946],[125,187,68,-0.5544370338320732],[125,187,69,-0.554666593670845],[125,187,70,-0.5557628497481346],[125,187,71,-0.5574178770184517],[125,187,72,-0.5602027885615826],[125,187,73,-0.5630908571183681],[125,187,74,-0.5647980086505413],[125,187,75,-0.5648296177387238],[125,187,76,-0.5626550279557705],[125,187,77,-0.5583309903740883],[125,187,78,-0.5530056692659855],[125,187,79,-0.5474466904997826],[125,188,64,-0.5549346171319485],[125,188,65,-0.5566596873104572],[125,188,66,-0.5565491765737534],[125,188,67,-0.5553769171237946],[125,188,68,-0.5544370338320732],[125,188,69,-0.554666593670845],[125,188,70,-0.5557628497481346],[125,188,71,-0.5574178770184517],[125,188,72,-0.5602027885615826],[125,188,73,-0.5630908571183681],[125,188,74,-0.5647980086505413],[125,188,75,-0.5648296177387238],[125,188,76,-0.5626550279557705],[125,188,77,-0.5583309903740883],[125,188,78,-0.5530056692659855],[125,188,79,-0.5474466904997826],[125,189,64,-0.5549346171319485],[125,189,65,-0.5566596873104572],[125,189,66,-0.5565491765737534],[125,189,67,-0.5553769171237946],[125,189,68,-0.5544370338320732],[125,189,69,-0.554666593670845],[125,189,70,-0.5557628497481346],[125,189,71,-0.5574178770184517],[125,189,72,-0.5602027885615826],[125,189,73,-0.5630908571183681],[125,189,74,-0.5647980086505413],[125,189,75,-0.5648296177387238],[125,189,76,-0.5626550279557705],[125,189,77,-0.5583309903740883],[125,189,78,-0.5530056692659855],[125,189,79,-0.5474466904997826],[125,190,64,-0.5549346171319485],[125,190,65,-0.5566596873104572],[125,190,66,-0.5565491765737534],[125,190,67,-0.5553769171237946],[125,190,68,-0.5544370338320732],[125,190,69,-0.554666593670845],[125,190,70,-0.5557628497481346],[125,190,71,-0.5574178770184517],[125,190,72,-0.5602027885615826],[125,190,73,-0.5630908571183681],[125,190,74,-0.5647980086505413],[125,190,75,-0.5648296177387238],[125,190,76,-0.5626550279557705],[125,190,77,-0.5583309903740883],[125,190,78,-0.5530056692659855],[125,190,79,-0.5474466904997826],[125,191,64,-0.5549346171319485],[125,191,65,-0.5566596873104572],[125,191,66,-0.5565491765737534],[125,191,67,-0.5553769171237946],[125,191,68,-0.5544370338320732],[125,191,69,-0.554666593670845],[125,191,70,-0.5557628497481346],[125,191,71,-0.5574178770184517],[125,191,72,-0.5602027885615826],[125,191,73,-0.5630908571183681],[125,191,74,-0.5647980086505413],[125,191,75,-0.5648296177387238],[125,191,76,-0.5626550279557705],[125,191,77,-0.5583309903740883],[125,191,78,-0.5530056692659855],[125,191,79,-0.5474466904997826],[125,192,64,-0.5549346171319485],[125,192,65,-0.5566596873104572],[125,192,66,-0.5565491765737534],[125,192,67,-0.5553769171237946],[125,192,68,-0.5544370338320732],[125,192,69,-0.554666593670845],[125,192,70,-0.5557628497481346],[125,192,71,-0.5574178770184517],[125,192,72,-0.5602027885615826],[125,192,73,-0.5630908571183681],[125,192,74,-0.5647980086505413],[125,192,75,-0.5648296177387238],[125,192,76,-0.5626550279557705],[125,192,77,-0.5583309903740883],[125,192,78,-0.5530056692659855],[125,192,79,-0.5474466904997826],[125,193,64,-0.5549346171319485],[125,193,65,-0.5566596873104572],[125,193,66,-0.5565491765737534],[125,193,67,-0.5553769171237946],[125,193,68,-0.5544370338320732],[125,193,69,-0.554666593670845],[125,193,70,-0.5557628497481346],[125,193,71,-0.5574178770184517],[125,193,72,-0.5602027885615826],[125,193,73,-0.5630908571183681],[125,193,74,-0.5647980086505413],[125,193,75,-0.5648296177387238],[125,193,76,-0.5626550279557705],[125,193,77,-0.5583309903740883],[125,193,78,-0.5530056692659855],[125,193,79,-0.5474466904997826],[125,194,64,-0.5549346171319485],[125,194,65,-0.5566596873104572],[125,194,66,-0.5565491765737534],[125,194,67,-0.5553769171237946],[125,194,68,-0.5544370338320732],[125,194,69,-0.554666593670845],[125,194,70,-0.5557628497481346],[125,194,71,-0.5574178770184517],[125,194,72,-0.5602027885615826],[125,194,73,-0.5630908571183681],[125,194,74,-0.5647980086505413],[125,194,75,-0.5648296177387238],[125,194,76,-0.5626550279557705],[125,194,77,-0.5583309903740883],[125,194,78,-0.5530056692659855],[125,194,79,-0.5474466904997826],[125,195,64,-0.5549346171319485],[125,195,65,-0.5566596873104572],[125,195,66,-0.5565491765737534],[125,195,67,-0.5553769171237946],[125,195,68,-0.5544370338320732],[125,195,69,-0.554666593670845],[125,195,70,-0.5557628497481346],[125,195,71,-0.5574178770184517],[125,195,72,-0.5602027885615826],[125,195,73,-0.5630908571183681],[125,195,74,-0.5647980086505413],[125,195,75,-0.5648296177387238],[125,195,76,-0.5626550279557705],[125,195,77,-0.5583309903740883],[125,195,78,-0.5530056692659855],[125,195,79,-0.5474466904997826],[125,196,64,-0.5549346171319485],[125,196,65,-0.5566596873104572],[125,196,66,-0.5565491765737534],[125,196,67,-0.5553769171237946],[125,196,68,-0.5544370338320732],[125,196,69,-0.554666593670845],[125,196,70,-0.5557628497481346],[125,196,71,-0.5574178770184517],[125,196,72,-0.5602027885615826],[125,196,73,-0.5630908571183681],[125,196,74,-0.5647980086505413],[125,196,75,-0.5648296177387238],[125,196,76,-0.5626550279557705],[125,196,77,-0.5583309903740883],[125,196,78,-0.5530056692659855],[125,196,79,-0.5474466904997826],[125,197,64,-0.5549346171319485],[125,197,65,-0.5566596873104572],[125,197,66,-0.5565491765737534],[125,197,67,-0.5553769171237946],[125,197,68,-0.5544370338320732],[125,197,69,-0.554666593670845],[125,197,70,-0.5557628497481346],[125,197,71,-0.5574178770184517],[125,197,72,-0.5602027885615826],[125,197,73,-0.5630908571183681],[125,197,74,-0.5647980086505413],[125,197,75,-0.5648296177387238],[125,197,76,-0.5626550279557705],[125,197,77,-0.5583309903740883],[125,197,78,-0.5530056692659855],[125,197,79,-0.5474466904997826],[125,198,64,-0.5549346171319485],[125,198,65,-0.5566596873104572],[125,198,66,-0.5565491765737534],[125,198,67,-0.5553769171237946],[125,198,68,-0.5544370338320732],[125,198,69,-0.554666593670845],[125,198,70,-0.5557628497481346],[125,198,71,-0.5574178770184517],[125,198,72,-0.5602027885615826],[125,198,73,-0.5630908571183681],[125,198,74,-0.5647980086505413],[125,198,75,-0.5648296177387238],[125,198,76,-0.5626550279557705],[125,198,77,-0.5583309903740883],[125,198,78,-0.5530056692659855],[125,198,79,-0.5474466904997826],[125,199,64,-0.5549346171319485],[125,199,65,-0.5566596873104572],[125,199,66,-0.5565491765737534],[125,199,67,-0.5553769171237946],[125,199,68,-0.5544370338320732],[125,199,69,-0.554666593670845],[125,199,70,-0.5557628497481346],[125,199,71,-0.5574178770184517],[125,199,72,-0.5602027885615826],[125,199,73,-0.5630908571183681],[125,199,74,-0.5647980086505413],[125,199,75,-0.5648296177387238],[125,199,76,-0.5626550279557705],[125,199,77,-0.5583309903740883],[125,199,78,-0.5530056692659855],[125,199,79,-0.5474466904997826],[125,200,64,-0.5549346171319485],[125,200,65,-0.5566596873104572],[125,200,66,-0.5565491765737534],[125,200,67,-0.5553769171237946],[125,200,68,-0.5544370338320732],[125,200,69,-0.554666593670845],[125,200,70,-0.5557628497481346],[125,200,71,-0.5574178770184517],[125,200,72,-0.5602027885615826],[125,200,73,-0.5630908571183681],[125,200,74,-0.5647980086505413],[125,200,75,-0.5648296177387238],[125,200,76,-0.5626550279557705],[125,200,77,-0.5583309903740883],[125,200,78,-0.5530056692659855],[125,200,79,-0.5474466904997826],[125,201,64,-0.5549346171319485],[125,201,65,-0.5566596873104572],[125,201,66,-0.5565491765737534],[125,201,67,-0.5553769171237946],[125,201,68,-0.5544370338320732],[125,201,69,-0.554666593670845],[125,201,70,-0.5557628497481346],[125,201,71,-0.5574178770184517],[125,201,72,-0.5602027885615826],[125,201,73,-0.5630908571183681],[125,201,74,-0.5647980086505413],[125,201,75,-0.5648296177387238],[125,201,76,-0.5626550279557705],[125,201,77,-0.5583309903740883],[125,201,78,-0.5530056692659855],[125,201,79,-0.5474466904997826],[125,202,64,-0.5549346171319485],[125,202,65,-0.5566596873104572],[125,202,66,-0.5565491765737534],[125,202,67,-0.5553769171237946],[125,202,68,-0.5544370338320732],[125,202,69,-0.554666593670845],[125,202,70,-0.5557628497481346],[125,202,71,-0.5574178770184517],[125,202,72,-0.5602027885615826],[125,202,73,-0.5630908571183681],[125,202,74,-0.5647980086505413],[125,202,75,-0.5648296177387238],[125,202,76,-0.5626550279557705],[125,202,77,-0.5583309903740883],[125,202,78,-0.5530056692659855],[125,202,79,-0.5474466904997826],[125,203,64,-0.5549346171319485],[125,203,65,-0.5566596873104572],[125,203,66,-0.5565491765737534],[125,203,67,-0.5553769171237946],[125,203,68,-0.5544370338320732],[125,203,69,-0.554666593670845],[125,203,70,-0.5557628497481346],[125,203,71,-0.5574178770184517],[125,203,72,-0.5602027885615826],[125,203,73,-0.5630908571183681],[125,203,74,-0.5647980086505413],[125,203,75,-0.5648296177387238],[125,203,76,-0.5626550279557705],[125,203,77,-0.5583309903740883],[125,203,78,-0.5530056692659855],[125,203,79,-0.5474466904997826],[125,204,64,-0.5549346171319485],[125,204,65,-0.5566596873104572],[125,204,66,-0.5565491765737534],[125,204,67,-0.5553769171237946],[125,204,68,-0.5544370338320732],[125,204,69,-0.554666593670845],[125,204,70,-0.5557628497481346],[125,204,71,-0.5574178770184517],[125,204,72,-0.5602027885615826],[125,204,73,-0.5630908571183681],[125,204,74,-0.5647980086505413],[125,204,75,-0.5648296177387238],[125,204,76,-0.5626550279557705],[125,204,77,-0.5583309903740883],[125,204,78,-0.5530056692659855],[125,204,79,-0.5474466904997826],[125,205,64,-0.5549346171319485],[125,205,65,-0.5566596873104572],[125,205,66,-0.5565491765737534],[125,205,67,-0.5553769171237946],[125,205,68,-0.5544370338320732],[125,205,69,-0.554666593670845],[125,205,70,-0.5557628497481346],[125,205,71,-0.5574178770184517],[125,205,72,-0.5602027885615826],[125,205,73,-0.5630908571183681],[125,205,74,-0.5647980086505413],[125,205,75,-0.5648296177387238],[125,205,76,-0.5626550279557705],[125,205,77,-0.5583309903740883],[125,205,78,-0.5530056692659855],[125,205,79,-0.5474466904997826],[125,206,64,-0.5549346171319485],[125,206,65,-0.5566596873104572],[125,206,66,-0.5565491765737534],[125,206,67,-0.5553769171237946],[125,206,68,-0.5544370338320732],[125,206,69,-0.554666593670845],[125,206,70,-0.5557628497481346],[125,206,71,-0.5574178770184517],[125,206,72,-0.5602027885615826],[125,206,73,-0.5630908571183681],[125,206,74,-0.5647980086505413],[125,206,75,-0.5648296177387238],[125,206,76,-0.5626550279557705],[125,206,77,-0.5583309903740883],[125,206,78,-0.5530056692659855],[125,206,79,-0.5474466904997826],[125,207,64,-0.5549346171319485],[125,207,65,-0.5566596873104572],[125,207,66,-0.5565491765737534],[125,207,67,-0.5553769171237946],[125,207,68,-0.5544370338320732],[125,207,69,-0.554666593670845],[125,207,70,-0.5557628497481346],[125,207,71,-0.5574178770184517],[125,207,72,-0.5602027885615826],[125,207,73,-0.5630908571183681],[125,207,74,-0.5647980086505413],[125,207,75,-0.5648296177387238],[125,207,76,-0.5626550279557705],[125,207,77,-0.5583309903740883],[125,207,78,-0.5530056692659855],[125,207,79,-0.5474466904997826],[125,208,64,-0.5549346171319485],[125,208,65,-0.5566596873104572],[125,208,66,-0.5565491765737534],[125,208,67,-0.5553769171237946],[125,208,68,-0.5544370338320732],[125,208,69,-0.554666593670845],[125,208,70,-0.5557628497481346],[125,208,71,-0.5574178770184517],[125,208,72,-0.5602027885615826],[125,208,73,-0.5630908571183681],[125,208,74,-0.5647980086505413],[125,208,75,-0.5648296177387238],[125,208,76,-0.5626550279557705],[125,208,77,-0.5583309903740883],[125,208,78,-0.5530056692659855],[125,208,79,-0.5474466904997826],[125,209,64,-0.5549346171319485],[125,209,65,-0.5566596873104572],[125,209,66,-0.5565491765737534],[125,209,67,-0.5553769171237946],[125,209,68,-0.5544370338320732],[125,209,69,-0.554666593670845],[125,209,70,-0.5557628497481346],[125,209,71,-0.5574178770184517],[125,209,72,-0.5602027885615826],[125,209,73,-0.5630908571183681],[125,209,74,-0.5647980086505413],[125,209,75,-0.5648296177387238],[125,209,76,-0.5626550279557705],[125,209,77,-0.5583309903740883],[125,209,78,-0.5530056692659855],[125,209,79,-0.5474466904997826],[125,210,64,-0.5549346171319485],[125,210,65,-0.5566596873104572],[125,210,66,-0.5565491765737534],[125,210,67,-0.5553769171237946],[125,210,68,-0.5544370338320732],[125,210,69,-0.554666593670845],[125,210,70,-0.5557628497481346],[125,210,71,-0.5574178770184517],[125,210,72,-0.5602027885615826],[125,210,73,-0.5630908571183681],[125,210,74,-0.5647980086505413],[125,210,75,-0.5648296177387238],[125,210,76,-0.5626550279557705],[125,210,77,-0.5583309903740883],[125,210,78,-0.5530056692659855],[125,210,79,-0.5474466904997826],[125,211,64,-0.5549346171319485],[125,211,65,-0.5566596873104572],[125,211,66,-0.5565491765737534],[125,211,67,-0.5553769171237946],[125,211,68,-0.5544370338320732],[125,211,69,-0.554666593670845],[125,211,70,-0.5557628497481346],[125,211,71,-0.5574178770184517],[125,211,72,-0.5602027885615826],[125,211,73,-0.5630908571183681],[125,211,74,-0.5647980086505413],[125,211,75,-0.5648296177387238],[125,211,76,-0.5626550279557705],[125,211,77,-0.5583309903740883],[125,211,78,-0.5530056692659855],[125,211,79,-0.5474466904997826],[125,212,64,-0.5549346171319485],[125,212,65,-0.5566596873104572],[125,212,66,-0.5565491765737534],[125,212,67,-0.5553769171237946],[125,212,68,-0.5544370338320732],[125,212,69,-0.554666593670845],[125,212,70,-0.5557628497481346],[125,212,71,-0.5574178770184517],[125,212,72,-0.5602027885615826],[125,212,73,-0.5630908571183681],[125,212,74,-0.5647980086505413],[125,212,75,-0.5648296177387238],[125,212,76,-0.5626550279557705],[125,212,77,-0.5583309903740883],[125,212,78,-0.5530056692659855],[125,212,79,-0.5474466904997826],[125,213,64,-0.5549346171319485],[125,213,65,-0.5566596873104572],[125,213,66,-0.5565491765737534],[125,213,67,-0.5553769171237946],[125,213,68,-0.5544370338320732],[125,213,69,-0.554666593670845],[125,213,70,-0.5557628497481346],[125,213,71,-0.5574178770184517],[125,213,72,-0.5602027885615826],[125,213,73,-0.5630908571183681],[125,213,74,-0.5647980086505413],[125,213,75,-0.5648296177387238],[125,213,76,-0.5626550279557705],[125,213,77,-0.5583309903740883],[125,213,78,-0.5530056692659855],[125,213,79,-0.5474466904997826],[125,214,64,-0.5549346171319485],[125,214,65,-0.5566596873104572],[125,214,66,-0.5565491765737534],[125,214,67,-0.5553769171237946],[125,214,68,-0.5544370338320732],[125,214,69,-0.554666593670845],[125,214,70,-0.5557628497481346],[125,214,71,-0.5574178770184517],[125,214,72,-0.5602027885615826],[125,214,73,-0.5630908571183681],[125,214,74,-0.5647980086505413],[125,214,75,-0.5648296177387238],[125,214,76,-0.5626550279557705],[125,214,77,-0.5583309903740883],[125,214,78,-0.5530056692659855],[125,214,79,-0.5474466904997826],[125,215,64,-0.5549346171319485],[125,215,65,-0.5566596873104572],[125,215,66,-0.5565491765737534],[125,215,67,-0.5553769171237946],[125,215,68,-0.5544370338320732],[125,215,69,-0.554666593670845],[125,215,70,-0.5557628497481346],[125,215,71,-0.5574178770184517],[125,215,72,-0.5602027885615826],[125,215,73,-0.5630908571183681],[125,215,74,-0.5647980086505413],[125,215,75,-0.5648296177387238],[125,215,76,-0.5626550279557705],[125,215,77,-0.5583309903740883],[125,215,78,-0.5530056692659855],[125,215,79,-0.5474466904997826],[125,216,64,-0.5549346171319485],[125,216,65,-0.5566596873104572],[125,216,66,-0.5565491765737534],[125,216,67,-0.5553769171237946],[125,216,68,-0.5544370338320732],[125,216,69,-0.554666593670845],[125,216,70,-0.5557628497481346],[125,216,71,-0.5574178770184517],[125,216,72,-0.5602027885615826],[125,216,73,-0.5630908571183681],[125,216,74,-0.5647980086505413],[125,216,75,-0.5648296177387238],[125,216,76,-0.5626550279557705],[125,216,77,-0.5583309903740883],[125,216,78,-0.5530056692659855],[125,216,79,-0.5474466904997826],[125,217,64,-0.5549346171319485],[125,217,65,-0.5566596873104572],[125,217,66,-0.5565491765737534],[125,217,67,-0.5553769171237946],[125,217,68,-0.5544370338320732],[125,217,69,-0.554666593670845],[125,217,70,-0.5557628497481346],[125,217,71,-0.5574178770184517],[125,217,72,-0.5602027885615826],[125,217,73,-0.5630908571183681],[125,217,74,-0.5647980086505413],[125,217,75,-0.5648296177387238],[125,217,76,-0.5626550279557705],[125,217,77,-0.5583309903740883],[125,217,78,-0.5530056692659855],[125,217,79,-0.5474466904997826],[125,218,64,-0.5549346171319485],[125,218,65,-0.5566596873104572],[125,218,66,-0.5565491765737534],[125,218,67,-0.5553769171237946],[125,218,68,-0.5544370338320732],[125,218,69,-0.554666593670845],[125,218,70,-0.5557628497481346],[125,218,71,-0.5574178770184517],[125,218,72,-0.5602027885615826],[125,218,73,-0.5630908571183681],[125,218,74,-0.5647980086505413],[125,218,75,-0.5648296177387238],[125,218,76,-0.5626550279557705],[125,218,77,-0.5583309903740883],[125,218,78,-0.5530056692659855],[125,218,79,-0.5474466904997826],[125,219,64,-0.5549346171319485],[125,219,65,-0.5566596873104572],[125,219,66,-0.5565491765737534],[125,219,67,-0.5553769171237946],[125,219,68,-0.5544370338320732],[125,219,69,-0.554666593670845],[125,219,70,-0.5557628497481346],[125,219,71,-0.5574178770184517],[125,219,72,-0.5602027885615826],[125,219,73,-0.5630908571183681],[125,219,74,-0.5647980086505413],[125,219,75,-0.5648296177387238],[125,219,76,-0.5626550279557705],[125,219,77,-0.5583309903740883],[125,219,78,-0.5530056692659855],[125,219,79,-0.5474466904997826],[125,220,64,-0.5549346171319485],[125,220,65,-0.5566596873104572],[125,220,66,-0.5565491765737534],[125,220,67,-0.5553769171237946],[125,220,68,-0.5544370338320732],[125,220,69,-0.554666593670845],[125,220,70,-0.5557628497481346],[125,220,71,-0.5574178770184517],[125,220,72,-0.5602027885615826],[125,220,73,-0.5630908571183681],[125,220,74,-0.5647980086505413],[125,220,75,-0.5648296177387238],[125,220,76,-0.5626550279557705],[125,220,77,-0.5583309903740883],[125,220,78,-0.5530056692659855],[125,220,79,-0.5474466904997826],[125,221,64,-0.5549346171319485],[125,221,65,-0.5566596873104572],[125,221,66,-0.5565491765737534],[125,221,67,-0.5553769171237946],[125,221,68,-0.5544370338320732],[125,221,69,-0.554666593670845],[125,221,70,-0.5557628497481346],[125,221,71,-0.5574178770184517],[125,221,72,-0.5602027885615826],[125,221,73,-0.5630908571183681],[125,221,74,-0.5647980086505413],[125,221,75,-0.5648296177387238],[125,221,76,-0.5626550279557705],[125,221,77,-0.5583309903740883],[125,221,78,-0.5530056692659855],[125,221,79,-0.5474466904997826],[125,222,64,-0.5549346171319485],[125,222,65,-0.5566596873104572],[125,222,66,-0.5565491765737534],[125,222,67,-0.5553769171237946],[125,222,68,-0.5544370338320732],[125,222,69,-0.554666593670845],[125,222,70,-0.5557628497481346],[125,222,71,-0.5574178770184517],[125,222,72,-0.5602027885615826],[125,222,73,-0.5630908571183681],[125,222,74,-0.5647980086505413],[125,222,75,-0.5648296177387238],[125,222,76,-0.5626550279557705],[125,222,77,-0.5583309903740883],[125,222,78,-0.5530056692659855],[125,222,79,-0.5474466904997826],[125,223,64,-0.5549346171319485],[125,223,65,-0.5566596873104572],[125,223,66,-0.5565491765737534],[125,223,67,-0.5553769171237946],[125,223,68,-0.5544370338320732],[125,223,69,-0.554666593670845],[125,223,70,-0.5557628497481346],[125,223,71,-0.5574178770184517],[125,223,72,-0.5602027885615826],[125,223,73,-0.5630908571183681],[125,223,74,-0.5647980086505413],[125,223,75,-0.5648296177387238],[125,223,76,-0.5626550279557705],[125,223,77,-0.5583309903740883],[125,223,78,-0.5530056692659855],[125,223,79,-0.5474466904997826],[125,224,64,-0.5549346171319485],[125,224,65,-0.5566596873104572],[125,224,66,-0.5565491765737534],[125,224,67,-0.5553769171237946],[125,224,68,-0.5544370338320732],[125,224,69,-0.554666593670845],[125,224,70,-0.5557628497481346],[125,224,71,-0.5574178770184517],[125,224,72,-0.5602027885615826],[125,224,73,-0.5630908571183681],[125,224,74,-0.5647980086505413],[125,224,75,-0.5648296177387238],[125,224,76,-0.5626550279557705],[125,224,77,-0.5583309903740883],[125,224,78,-0.5530056692659855],[125,224,79,-0.5474466904997826],[125,225,64,-0.5549346171319485],[125,225,65,-0.5566596873104572],[125,225,66,-0.5565491765737534],[125,225,67,-0.5553769171237946],[125,225,68,-0.5544370338320732],[125,225,69,-0.554666593670845],[125,225,70,-0.5557628497481346],[125,225,71,-0.5574178770184517],[125,225,72,-0.5602027885615826],[125,225,73,-0.5630908571183681],[125,225,74,-0.5647980086505413],[125,225,75,-0.5648296177387238],[125,225,76,-0.5626550279557705],[125,225,77,-0.5583309903740883],[125,225,78,-0.5530056692659855],[125,225,79,-0.5474466904997826],[125,226,64,-0.5549346171319485],[125,226,65,-0.5566596873104572],[125,226,66,-0.5565491765737534],[125,226,67,-0.5553769171237946],[125,226,68,-0.5544370338320732],[125,226,69,-0.554666593670845],[125,226,70,-0.5557628497481346],[125,226,71,-0.5574178770184517],[125,226,72,-0.5602027885615826],[125,226,73,-0.5630908571183681],[125,226,74,-0.5647980086505413],[125,226,75,-0.5648296177387238],[125,226,76,-0.5626550279557705],[125,226,77,-0.5583309903740883],[125,226,78,-0.5530056692659855],[125,226,79,-0.5474466904997826],[125,227,64,-0.5549346171319485],[125,227,65,-0.5566596873104572],[125,227,66,-0.5565491765737534],[125,227,67,-0.5553769171237946],[125,227,68,-0.5544370338320732],[125,227,69,-0.554666593670845],[125,227,70,-0.5557628497481346],[125,227,71,-0.5574178770184517],[125,227,72,-0.5602027885615826],[125,227,73,-0.5630908571183681],[125,227,74,-0.5647980086505413],[125,227,75,-0.5648296177387238],[125,227,76,-0.5626550279557705],[125,227,77,-0.5583309903740883],[125,227,78,-0.5530056692659855],[125,227,79,-0.5474466904997826],[125,228,64,-0.5549346171319485],[125,228,65,-0.5566596873104572],[125,228,66,-0.5565491765737534],[125,228,67,-0.5553769171237946],[125,228,68,-0.5544370338320732],[125,228,69,-0.554666593670845],[125,228,70,-0.5557628497481346],[125,228,71,-0.5574178770184517],[125,228,72,-0.5602027885615826],[125,228,73,-0.5630908571183681],[125,228,74,-0.5647980086505413],[125,228,75,-0.5648296177387238],[125,228,76,-0.5626550279557705],[125,228,77,-0.5583309903740883],[125,228,78,-0.5530056692659855],[125,228,79,-0.5474466904997826],[125,229,64,-0.5549346171319485],[125,229,65,-0.5566596873104572],[125,229,66,-0.5565491765737534],[125,229,67,-0.5553769171237946],[125,229,68,-0.5544370338320732],[125,229,69,-0.554666593670845],[125,229,70,-0.5557628497481346],[125,229,71,-0.5574178770184517],[125,229,72,-0.5602027885615826],[125,229,73,-0.5630908571183681],[125,229,74,-0.5647980086505413],[125,229,75,-0.5648296177387238],[125,229,76,-0.5626550279557705],[125,229,77,-0.5583309903740883],[125,229,78,-0.5530056692659855],[125,229,79,-0.5474466904997826],[125,230,64,-0.5549346171319485],[125,230,65,-0.5566596873104572],[125,230,66,-0.5565491765737534],[125,230,67,-0.5553769171237946],[125,230,68,-0.5544370338320732],[125,230,69,-0.554666593670845],[125,230,70,-0.5557628497481346],[125,230,71,-0.5574178770184517],[125,230,72,-0.5602027885615826],[125,230,73,-0.5630908571183681],[125,230,74,-0.5647980086505413],[125,230,75,-0.5648296177387238],[125,230,76,-0.5626550279557705],[125,230,77,-0.5583309903740883],[125,230,78,-0.5530056692659855],[125,230,79,-0.5474466904997826],[125,231,64,-0.5549346171319485],[125,231,65,-0.5566596873104572],[125,231,66,-0.5565491765737534],[125,231,67,-0.5553769171237946],[125,231,68,-0.5544370338320732],[125,231,69,-0.554666593670845],[125,231,70,-0.5557628497481346],[125,231,71,-0.5574178770184517],[125,231,72,-0.5602027885615826],[125,231,73,-0.5630908571183681],[125,231,74,-0.5647980086505413],[125,231,75,-0.5648296177387238],[125,231,76,-0.5626550279557705],[125,231,77,-0.5583309903740883],[125,231,78,-0.5530056692659855],[125,231,79,-0.5474466904997826],[125,232,64,-0.5549346171319485],[125,232,65,-0.5566596873104572],[125,232,66,-0.5565491765737534],[125,232,67,-0.5553769171237946],[125,232,68,-0.5544370338320732],[125,232,69,-0.554666593670845],[125,232,70,-0.5557628497481346],[125,232,71,-0.5574178770184517],[125,232,72,-0.5602027885615826],[125,232,73,-0.5630908571183681],[125,232,74,-0.5647980086505413],[125,232,75,-0.5648296177387238],[125,232,76,-0.5626550279557705],[125,232,77,-0.5583309903740883],[125,232,78,-0.5530056692659855],[125,232,79,-0.5474466904997826],[125,233,64,-0.5549346171319485],[125,233,65,-0.5566596873104572],[125,233,66,-0.5565491765737534],[125,233,67,-0.5553769171237946],[125,233,68,-0.5544370338320732],[125,233,69,-0.554666593670845],[125,233,70,-0.5557628497481346],[125,233,71,-0.5574178770184517],[125,233,72,-0.5602027885615826],[125,233,73,-0.5630908571183681],[125,233,74,-0.5647980086505413],[125,233,75,-0.5648296177387238],[125,233,76,-0.5626550279557705],[125,233,77,-0.5583309903740883],[125,233,78,-0.5530056692659855],[125,233,79,-0.5474466904997826],[125,234,64,-0.5549346171319485],[125,234,65,-0.5566596873104572],[125,234,66,-0.5565491765737534],[125,234,67,-0.5553769171237946],[125,234,68,-0.5544370338320732],[125,234,69,-0.554666593670845],[125,234,70,-0.5557628497481346],[125,234,71,-0.5574178770184517],[125,234,72,-0.5602027885615826],[125,234,73,-0.5630908571183681],[125,234,74,-0.5647980086505413],[125,234,75,-0.5648296177387238],[125,234,76,-0.5626550279557705],[125,234,77,-0.5583309903740883],[125,234,78,-0.5530056692659855],[125,234,79,-0.5474466904997826],[125,235,64,-0.5549346171319485],[125,235,65,-0.5566596873104572],[125,235,66,-0.5565491765737534],[125,235,67,-0.5553769171237946],[125,235,68,-0.5544370338320732],[125,235,69,-0.554666593670845],[125,235,70,-0.5557628497481346],[125,235,71,-0.5574178770184517],[125,235,72,-0.5602027885615826],[125,235,73,-0.5630908571183681],[125,235,74,-0.5647980086505413],[125,235,75,-0.5648296177387238],[125,235,76,-0.5626550279557705],[125,235,77,-0.5583309903740883],[125,235,78,-0.5530056692659855],[125,235,79,-0.5474466904997826],[125,236,64,-0.5549346171319485],[125,236,65,-0.5566596873104572],[125,236,66,-0.5565491765737534],[125,236,67,-0.5553769171237946],[125,236,68,-0.5544370338320732],[125,236,69,-0.554666593670845],[125,236,70,-0.5557628497481346],[125,236,71,-0.5574178770184517],[125,236,72,-0.5602027885615826],[125,236,73,-0.5630908571183681],[125,236,74,-0.5647980086505413],[125,236,75,-0.5648296177387238],[125,236,76,-0.5626550279557705],[125,236,77,-0.5583309903740883],[125,236,78,-0.5530056692659855],[125,236,79,-0.5474466904997826],[125,237,64,-0.5549346171319485],[125,237,65,-0.5566596873104572],[125,237,66,-0.5565491765737534],[125,237,67,-0.5553769171237946],[125,237,68,-0.5544370338320732],[125,237,69,-0.554666593670845],[125,237,70,-0.5557628497481346],[125,237,71,-0.5574178770184517],[125,237,72,-0.5602027885615826],[125,237,73,-0.5630908571183681],[125,237,74,-0.5647980086505413],[125,237,75,-0.5648296177387238],[125,237,76,-0.5626550279557705],[125,237,77,-0.5583309903740883],[125,237,78,-0.5530056692659855],[125,237,79,-0.5474466904997826],[125,238,64,-0.5549346171319485],[125,238,65,-0.5566596873104572],[125,238,66,-0.5565491765737534],[125,238,67,-0.5553769171237946],[125,238,68,-0.5544370338320732],[125,238,69,-0.554666593670845],[125,238,70,-0.5557628497481346],[125,238,71,-0.5574178770184517],[125,238,72,-0.5602027885615826],[125,238,73,-0.5630908571183681],[125,238,74,-0.5647980086505413],[125,238,75,-0.5648296177387238],[125,238,76,-0.5626550279557705],[125,238,77,-0.5583309903740883],[125,238,78,-0.5530056692659855],[125,238,79,-0.5474466904997826],[125,239,64,-0.5549346171319485],[125,239,65,-0.5566596873104572],[125,239,66,-0.5565491765737534],[125,239,67,-0.5553769171237946],[125,239,68,-0.5544370338320732],[125,239,69,-0.554666593670845],[125,239,70,-0.5557628497481346],[125,239,71,-0.5574178770184517],[125,239,72,-0.5602027885615826],[125,239,73,-0.5630908571183681],[125,239,74,-0.5647980086505413],[125,239,75,-0.5648296177387238],[125,239,76,-0.5626550279557705],[125,239,77,-0.5583309903740883],[125,239,78,-0.5530056692659855],[125,239,79,-0.5474466904997826],[125,240,64,-0.5549346171319485],[125,240,65,-0.5566596873104572],[125,240,66,-0.5565491765737534],[125,240,67,-0.5553769171237946],[125,240,68,-0.5544370338320732],[125,240,69,-0.554666593670845],[125,240,70,-0.5557628497481346],[125,240,71,-0.5574178770184517],[125,240,72,-0.5602027885615826],[125,240,73,-0.5630908571183681],[125,240,74,-0.5647980086505413],[125,240,75,-0.5648296177387238],[125,240,76,-0.5626550279557705],[125,240,77,-0.5583309903740883],[125,240,78,-0.5530056692659855],[125,240,79,-0.5474466904997826],[125,241,64,-0.5549346171319485],[125,241,65,-0.5566596873104572],[125,241,66,-0.5565491765737534],[125,241,67,-0.5553769171237946],[125,241,68,-0.5544370338320732],[125,241,69,-0.554666593670845],[125,241,70,-0.5557628497481346],[125,241,71,-0.5574178770184517],[125,241,72,-0.5602027885615826],[125,241,73,-0.5630908571183681],[125,241,74,-0.5647980086505413],[125,241,75,-0.5648296177387238],[125,241,76,-0.5626550279557705],[125,241,77,-0.5583309903740883],[125,241,78,-0.5530056692659855],[125,241,79,-0.5474466904997826],[125,242,64,-0.5549346171319485],[125,242,65,-0.5566596873104572],[125,242,66,-0.5565491765737534],[125,242,67,-0.5553769171237946],[125,242,68,-0.5544370338320732],[125,242,69,-0.554666593670845],[125,242,70,-0.5557628497481346],[125,242,71,-0.5574178770184517],[125,242,72,-0.5602027885615826],[125,242,73,-0.5630908571183681],[125,242,74,-0.5647980086505413],[125,242,75,-0.5648296177387238],[125,242,76,-0.5626550279557705],[125,242,77,-0.5583309903740883],[125,242,78,-0.5530056692659855],[125,242,79,-0.5474466904997826],[125,243,64,-0.5549346171319485],[125,243,65,-0.5566596873104572],[125,243,66,-0.5565491765737534],[125,243,67,-0.5553769171237946],[125,243,68,-0.5544370338320732],[125,243,69,-0.554666593670845],[125,243,70,-0.5557628497481346],[125,243,71,-0.5574178770184517],[125,243,72,-0.5602027885615826],[125,243,73,-0.5630908571183681],[125,243,74,-0.5647980086505413],[125,243,75,-0.5648296177387238],[125,243,76,-0.5626550279557705],[125,243,77,-0.5583309903740883],[125,243,78,-0.5530056692659855],[125,243,79,-0.5474466904997826],[125,244,64,-0.5549346171319485],[125,244,65,-0.5566596873104572],[125,244,66,-0.5565491765737534],[125,244,67,-0.5553769171237946],[125,244,68,-0.5544370338320732],[125,244,69,-0.554666593670845],[125,244,70,-0.5557628497481346],[125,244,71,-0.5574178770184517],[125,244,72,-0.5602027885615826],[125,244,73,-0.5630908571183681],[125,244,74,-0.5647980086505413],[125,244,75,-0.5648296177387238],[125,244,76,-0.5626550279557705],[125,244,77,-0.5583309903740883],[125,244,78,-0.5530056692659855],[125,244,79,-0.5474466904997826],[125,245,64,-0.5549346171319485],[125,245,65,-0.5566596873104572],[125,245,66,-0.5565491765737534],[125,245,67,-0.5553769171237946],[125,245,68,-0.5544370338320732],[125,245,69,-0.554666593670845],[125,245,70,-0.5557628497481346],[125,245,71,-0.5574178770184517],[125,245,72,-0.5602027885615826],[125,245,73,-0.5630908571183681],[125,245,74,-0.5647980086505413],[125,245,75,-0.5648296177387238],[125,245,76,-0.5626550279557705],[125,245,77,-0.5583309903740883],[125,245,78,-0.5530056692659855],[125,245,79,-0.5474466904997826],[125,246,64,-0.5549346171319485],[125,246,65,-0.5566596873104572],[125,246,66,-0.5565491765737534],[125,246,67,-0.5553769171237946],[125,246,68,-0.5544370338320732],[125,246,69,-0.554666593670845],[125,246,70,-0.5557628497481346],[125,246,71,-0.5574178770184517],[125,246,72,-0.5602027885615826],[125,246,73,-0.5630908571183681],[125,246,74,-0.5647980086505413],[125,246,75,-0.5648296177387238],[125,246,76,-0.5626550279557705],[125,246,77,-0.5583309903740883],[125,246,78,-0.5530056692659855],[125,246,79,-0.5474466904997826],[125,247,64,-0.5549346171319485],[125,247,65,-0.5566596873104572],[125,247,66,-0.5565491765737534],[125,247,67,-0.5553769171237946],[125,247,68,-0.5544370338320732],[125,247,69,-0.554666593670845],[125,247,70,-0.5557628497481346],[125,247,71,-0.5574178770184517],[125,247,72,-0.5602027885615826],[125,247,73,-0.5630908571183681],[125,247,74,-0.5647980086505413],[125,247,75,-0.5648296177387238],[125,247,76,-0.5626550279557705],[125,247,77,-0.5583309903740883],[125,247,78,-0.5530056692659855],[125,247,79,-0.5474466904997826],[125,248,64,-0.5549346171319485],[125,248,65,-0.5566596873104572],[125,248,66,-0.5565491765737534],[125,248,67,-0.5553769171237946],[125,248,68,-0.5544370338320732],[125,248,69,-0.554666593670845],[125,248,70,-0.5557628497481346],[125,248,71,-0.5574178770184517],[125,248,72,-0.5602027885615826],[125,248,73,-0.5630908571183681],[125,248,74,-0.5647980086505413],[125,248,75,-0.5648296177387238],[125,248,76,-0.5626550279557705],[125,248,77,-0.5583309903740883],[125,248,78,-0.5530056692659855],[125,248,79,-0.5474466904997826],[125,249,64,-0.5549346171319485],[125,249,65,-0.5566596873104572],[125,249,66,-0.5565491765737534],[125,249,67,-0.5553769171237946],[125,249,68,-0.5544370338320732],[125,249,69,-0.554666593670845],[125,249,70,-0.5557628497481346],[125,249,71,-0.5574178770184517],[125,249,72,-0.5602027885615826],[125,249,73,-0.5630908571183681],[125,249,74,-0.5647980086505413],[125,249,75,-0.5648296177387238],[125,249,76,-0.5626550279557705],[125,249,77,-0.5583309903740883],[125,249,78,-0.5530056692659855],[125,249,79,-0.5474466904997826],[125,250,64,-0.5549346171319485],[125,250,65,-0.5566596873104572],[125,250,66,-0.5565491765737534],[125,250,67,-0.5553769171237946],[125,250,68,-0.5544370338320732],[125,250,69,-0.554666593670845],[125,250,70,-0.5557628497481346],[125,250,71,-0.5574178770184517],[125,250,72,-0.5602027885615826],[125,250,73,-0.5630908571183681],[125,250,74,-0.5647980086505413],[125,250,75,-0.5648296177387238],[125,250,76,-0.5626550279557705],[125,250,77,-0.5583309903740883],[125,250,78,-0.5530056692659855],[125,250,79,-0.5474466904997826],[125,251,64,-0.5549346171319485],[125,251,65,-0.5566596873104572],[125,251,66,-0.5565491765737534],[125,251,67,-0.5553769171237946],[125,251,68,-0.5544370338320732],[125,251,69,-0.554666593670845],[125,251,70,-0.5557628497481346],[125,251,71,-0.5574178770184517],[125,251,72,-0.5602027885615826],[125,251,73,-0.5630908571183681],[125,251,74,-0.5647980086505413],[125,251,75,-0.5648296177387238],[125,251,76,-0.5626550279557705],[125,251,77,-0.5583309903740883],[125,251,78,-0.5530056692659855],[125,251,79,-0.5474466904997826],[125,252,64,-0.5549346171319485],[125,252,65,-0.5566596873104572],[125,252,66,-0.5565491765737534],[125,252,67,-0.5553769171237946],[125,252,68,-0.5544370338320732],[125,252,69,-0.554666593670845],[125,252,70,-0.5557628497481346],[125,252,71,-0.5574178770184517],[125,252,72,-0.5602027885615826],[125,252,73,-0.5630908571183681],[125,252,74,-0.5647980086505413],[125,252,75,-0.5648296177387238],[125,252,76,-0.5626550279557705],[125,252,77,-0.5583309903740883],[125,252,78,-0.5530056692659855],[125,252,79,-0.5474466904997826],[125,253,64,-0.5549346171319485],[125,253,65,-0.5566596873104572],[125,253,66,-0.5565491765737534],[125,253,67,-0.5553769171237946],[125,253,68,-0.5544370338320732],[125,253,69,-0.554666593670845],[125,253,70,-0.5557628497481346],[125,253,71,-0.5574178770184517],[125,253,72,-0.5602027885615826],[125,253,73,-0.5630908571183681],[125,253,74,-0.5647980086505413],[125,253,75,-0.5648296177387238],[125,253,76,-0.5626550279557705],[125,253,77,-0.5583309903740883],[125,253,78,-0.5530056692659855],[125,253,79,-0.5474466904997826],[125,254,64,-0.5549346171319485],[125,254,65,-0.5566596873104572],[125,254,66,-0.5565491765737534],[125,254,67,-0.5553769171237946],[125,254,68,-0.5544370338320732],[125,254,69,-0.554666593670845],[125,254,70,-0.5557628497481346],[125,254,71,-0.5574178770184517],[125,254,72,-0.5602027885615826],[125,254,73,-0.5630908571183681],[125,254,74,-0.5647980086505413],[125,254,75,-0.5648296177387238],[125,254,76,-0.5626550279557705],[125,254,77,-0.5583309903740883],[125,254,78,-0.5530056692659855],[125,254,79,-0.5474466904997826],[125,255,64,-0.5549346171319485],[125,255,65,-0.5566596873104572],[125,255,66,-0.5565491765737534],[125,255,67,-0.5553769171237946],[125,255,68,-0.5544370338320732],[125,255,69,-0.554666593670845],[125,255,70,-0.5557628497481346],[125,255,71,-0.5574178770184517],[125,255,72,-0.5602027885615826],[125,255,73,-0.5630908571183681],[125,255,74,-0.5647980086505413],[125,255,75,-0.5648296177387238],[125,255,76,-0.5626550279557705],[125,255,77,-0.5583309903740883],[125,255,78,-0.5530056692659855],[125,255,79,-0.5474466904997826],[125,256,64,-0.5549346171319485],[125,256,65,-0.5566596873104572],[125,256,66,-0.5565491765737534],[125,256,67,-0.5553769171237946],[125,256,68,-0.5544370338320732],[125,256,69,-0.554666593670845],[125,256,70,-0.5557628497481346],[125,256,71,-0.5574178770184517],[125,256,72,-0.5602027885615826],[125,256,73,-0.5630908571183681],[125,256,74,-0.5647980086505413],[125,256,75,-0.5648296177387238],[125,256,76,-0.5626550279557705],[125,256,77,-0.5583309903740883],[125,256,78,-0.5530056692659855],[125,256,79,-0.5474466904997826],[125,257,64,-0.5549346171319485],[125,257,65,-0.5566596873104572],[125,257,66,-0.5565491765737534],[125,257,67,-0.5553769171237946],[125,257,68,-0.5544370338320732],[125,257,69,-0.554666593670845],[125,257,70,-0.5557628497481346],[125,257,71,-0.5574178770184517],[125,257,72,-0.5602027885615826],[125,257,73,-0.5630908571183681],[125,257,74,-0.5647980086505413],[125,257,75,-0.5648296177387238],[125,257,76,-0.5626550279557705],[125,257,77,-0.5583309903740883],[125,257,78,-0.5530056692659855],[125,257,79,-0.5474466904997826],[125,258,64,-0.5549346171319485],[125,258,65,-0.5566596873104572],[125,258,66,-0.5565491765737534],[125,258,67,-0.5553769171237946],[125,258,68,-0.5544370338320732],[125,258,69,-0.554666593670845],[125,258,70,-0.5557628497481346],[125,258,71,-0.5574178770184517],[125,258,72,-0.5602027885615826],[125,258,73,-0.5630908571183681],[125,258,74,-0.5647980086505413],[125,258,75,-0.5648296177387238],[125,258,76,-0.5626550279557705],[125,258,77,-0.5583309903740883],[125,258,78,-0.5530056692659855],[125,258,79,-0.5474466904997826],[125,259,64,-0.5549346171319485],[125,259,65,-0.5566596873104572],[125,259,66,-0.5565491765737534],[125,259,67,-0.5553769171237946],[125,259,68,-0.5544370338320732],[125,259,69,-0.554666593670845],[125,259,70,-0.5557628497481346],[125,259,71,-0.5574178770184517],[125,259,72,-0.5602027885615826],[125,259,73,-0.5630908571183681],[125,259,74,-0.5647980086505413],[125,259,75,-0.5648296177387238],[125,259,76,-0.5626550279557705],[125,259,77,-0.5583309903740883],[125,259,78,-0.5530056692659855],[125,259,79,-0.5474466904997826],[125,260,64,-0.5549346171319485],[125,260,65,-0.5566596873104572],[125,260,66,-0.5565491765737534],[125,260,67,-0.5553769171237946],[125,260,68,-0.5544370338320732],[125,260,69,-0.554666593670845],[125,260,70,-0.5557628497481346],[125,260,71,-0.5574178770184517],[125,260,72,-0.5602027885615826],[125,260,73,-0.5630908571183681],[125,260,74,-0.5647980086505413],[125,260,75,-0.5648296177387238],[125,260,76,-0.5626550279557705],[125,260,77,-0.5583309903740883],[125,260,78,-0.5530056692659855],[125,260,79,-0.5474466904997826],[125,261,64,-0.5549346171319485],[125,261,65,-0.5566596873104572],[125,261,66,-0.5565491765737534],[125,261,67,-0.5553769171237946],[125,261,68,-0.5544370338320732],[125,261,69,-0.554666593670845],[125,261,70,-0.5557628497481346],[125,261,71,-0.5574178770184517],[125,261,72,-0.5602027885615826],[125,261,73,-0.5630908571183681],[125,261,74,-0.5647980086505413],[125,261,75,-0.5648296177387238],[125,261,76,-0.5626550279557705],[125,261,77,-0.5583309903740883],[125,261,78,-0.5530056692659855],[125,261,79,-0.5474466904997826],[125,262,64,-0.5549346171319485],[125,262,65,-0.5566596873104572],[125,262,66,-0.5565491765737534],[125,262,67,-0.5553769171237946],[125,262,68,-0.5544370338320732],[125,262,69,-0.554666593670845],[125,262,70,-0.5557628497481346],[125,262,71,-0.5574178770184517],[125,262,72,-0.5602027885615826],[125,262,73,-0.5630908571183681],[125,262,74,-0.5647980086505413],[125,262,75,-0.5648296177387238],[125,262,76,-0.5626550279557705],[125,262,77,-0.5583309903740883],[125,262,78,-0.5530056692659855],[125,262,79,-0.5474466904997826],[125,263,64,-0.5549346171319485],[125,263,65,-0.5566596873104572],[125,263,66,-0.5565491765737534],[125,263,67,-0.5553769171237946],[125,263,68,-0.5544370338320732],[125,263,69,-0.554666593670845],[125,263,70,-0.5557628497481346],[125,263,71,-0.5574178770184517],[125,263,72,-0.5602027885615826],[125,263,73,-0.5630908571183681],[125,263,74,-0.5647980086505413],[125,263,75,-0.5648296177387238],[125,263,76,-0.5626550279557705],[125,263,77,-0.5583309903740883],[125,263,78,-0.5530056692659855],[125,263,79,-0.5474466904997826],[125,264,64,-0.5549346171319485],[125,264,65,-0.5566596873104572],[125,264,66,-0.5565491765737534],[125,264,67,-0.5553769171237946],[125,264,68,-0.5544370338320732],[125,264,69,-0.554666593670845],[125,264,70,-0.5557628497481346],[125,264,71,-0.5574178770184517],[125,264,72,-0.5602027885615826],[125,264,73,-0.5630908571183681],[125,264,74,-0.5647980086505413],[125,264,75,-0.5648296177387238],[125,264,76,-0.5626550279557705],[125,264,77,-0.5583309903740883],[125,264,78,-0.5530056692659855],[125,264,79,-0.5474466904997826],[125,265,64,-0.5549346171319485],[125,265,65,-0.5566596873104572],[125,265,66,-0.5565491765737534],[125,265,67,-0.5553769171237946],[125,265,68,-0.5544370338320732],[125,265,69,-0.554666593670845],[125,265,70,-0.5557628497481346],[125,265,71,-0.5574178770184517],[125,265,72,-0.5602027885615826],[125,265,73,-0.5630908571183681],[125,265,74,-0.5647980086505413],[125,265,75,-0.5648296177387238],[125,265,76,-0.5626550279557705],[125,265,77,-0.5583309903740883],[125,265,78,-0.5530056692659855],[125,265,79,-0.5474466904997826],[125,266,64,-0.5549346171319485],[125,266,65,-0.5566596873104572],[125,266,66,-0.5565491765737534],[125,266,67,-0.5553769171237946],[125,266,68,-0.5544370338320732],[125,266,69,-0.554666593670845],[125,266,70,-0.5557628497481346],[125,266,71,-0.5574178770184517],[125,266,72,-0.5602027885615826],[125,266,73,-0.5630908571183681],[125,266,74,-0.5647980086505413],[125,266,75,-0.5648296177387238],[125,266,76,-0.5626550279557705],[125,266,77,-0.5583309903740883],[125,266,78,-0.5530056692659855],[125,266,79,-0.5474466904997826],[125,267,64,-0.5549346171319485],[125,267,65,-0.5566596873104572],[125,267,66,-0.5565491765737534],[125,267,67,-0.5553769171237946],[125,267,68,-0.5544370338320732],[125,267,69,-0.554666593670845],[125,267,70,-0.5557628497481346],[125,267,71,-0.5574178770184517],[125,267,72,-0.5602027885615826],[125,267,73,-0.5630908571183681],[125,267,74,-0.5647980086505413],[125,267,75,-0.5648296177387238],[125,267,76,-0.5626550279557705],[125,267,77,-0.5583309903740883],[125,267,78,-0.5530056692659855],[125,267,79,-0.5474466904997826],[125,268,64,-0.5549346171319485],[125,268,65,-0.5566596873104572],[125,268,66,-0.5565491765737534],[125,268,67,-0.5553769171237946],[125,268,68,-0.5544370338320732],[125,268,69,-0.554666593670845],[125,268,70,-0.5557628497481346],[125,268,71,-0.5574178770184517],[125,268,72,-0.5602027885615826],[125,268,73,-0.5630908571183681],[125,268,74,-0.5647980086505413],[125,268,75,-0.5648296177387238],[125,268,76,-0.5626550279557705],[125,268,77,-0.5583309903740883],[125,268,78,-0.5530056692659855],[125,268,79,-0.5474466904997826],[125,269,64,-0.5549346171319485],[125,269,65,-0.5566596873104572],[125,269,66,-0.5565491765737534],[125,269,67,-0.5553769171237946],[125,269,68,-0.5544370338320732],[125,269,69,-0.554666593670845],[125,269,70,-0.5557628497481346],[125,269,71,-0.5574178770184517],[125,269,72,-0.5602027885615826],[125,269,73,-0.5630908571183681],[125,269,74,-0.5647980086505413],[125,269,75,-0.5648296177387238],[125,269,76,-0.5626550279557705],[125,269,77,-0.5583309903740883],[125,269,78,-0.5530056692659855],[125,269,79,-0.5474466904997826],[125,270,64,-0.5549346171319485],[125,270,65,-0.5566596873104572],[125,270,66,-0.5565491765737534],[125,270,67,-0.5553769171237946],[125,270,68,-0.5544370338320732],[125,270,69,-0.554666593670845],[125,270,70,-0.5557628497481346],[125,270,71,-0.5574178770184517],[125,270,72,-0.5602027885615826],[125,270,73,-0.5630908571183681],[125,270,74,-0.5647980086505413],[125,270,75,-0.5648296177387238],[125,270,76,-0.5626550279557705],[125,270,77,-0.5583309903740883],[125,270,78,-0.5530056692659855],[125,270,79,-0.5474466904997826],[125,271,64,-0.5549346171319485],[125,271,65,-0.5566596873104572],[125,271,66,-0.5565491765737534],[125,271,67,-0.5553769171237946],[125,271,68,-0.5544370338320732],[125,271,69,-0.554666593670845],[125,271,70,-0.5557628497481346],[125,271,71,-0.5574178770184517],[125,271,72,-0.5602027885615826],[125,271,73,-0.5630908571183681],[125,271,74,-0.5647980086505413],[125,271,75,-0.5648296177387238],[125,271,76,-0.5626550279557705],[125,271,77,-0.5583309903740883],[125,271,78,-0.5530056692659855],[125,271,79,-0.5474466904997826],[125,272,64,-0.5549346171319485],[125,272,65,-0.5566596873104572],[125,272,66,-0.5565491765737534],[125,272,67,-0.5553769171237946],[125,272,68,-0.5544370338320732],[125,272,69,-0.554666593670845],[125,272,70,-0.5557628497481346],[125,272,71,-0.5574178770184517],[125,272,72,-0.5602027885615826],[125,272,73,-0.5630908571183681],[125,272,74,-0.5647980086505413],[125,272,75,-0.5648296177387238],[125,272,76,-0.5626550279557705],[125,272,77,-0.5583309903740883],[125,272,78,-0.5530056692659855],[125,272,79,-0.5474466904997826],[125,273,64,-0.5549346171319485],[125,273,65,-0.5566596873104572],[125,273,66,-0.5565491765737534],[125,273,67,-0.5553769171237946],[125,273,68,-0.5544370338320732],[125,273,69,-0.554666593670845],[125,273,70,-0.5557628497481346],[125,273,71,-0.5574178770184517],[125,273,72,-0.5602027885615826],[125,273,73,-0.5630908571183681],[125,273,74,-0.5647980086505413],[125,273,75,-0.5648296177387238],[125,273,76,-0.5626550279557705],[125,273,77,-0.5583309903740883],[125,273,78,-0.5530056692659855],[125,273,79,-0.5474466904997826],[125,274,64,-0.5549346171319485],[125,274,65,-0.5566596873104572],[125,274,66,-0.5565491765737534],[125,274,67,-0.5553769171237946],[125,274,68,-0.5544370338320732],[125,274,69,-0.554666593670845],[125,274,70,-0.5557628497481346],[125,274,71,-0.5574178770184517],[125,274,72,-0.5602027885615826],[125,274,73,-0.5630908571183681],[125,274,74,-0.5647980086505413],[125,274,75,-0.5648296177387238],[125,274,76,-0.5626550279557705],[125,274,77,-0.5583309903740883],[125,274,78,-0.5530056692659855],[125,274,79,-0.5474466904997826],[125,275,64,-0.5549346171319485],[125,275,65,-0.5566596873104572],[125,275,66,-0.5565491765737534],[125,275,67,-0.5553769171237946],[125,275,68,-0.5544370338320732],[125,275,69,-0.554666593670845],[125,275,70,-0.5557628497481346],[125,275,71,-0.5574178770184517],[125,275,72,-0.5602027885615826],[125,275,73,-0.5630908571183681],[125,275,74,-0.5647980086505413],[125,275,75,-0.5648296177387238],[125,275,76,-0.5626550279557705],[125,275,77,-0.5583309903740883],[125,275,78,-0.5530056692659855],[125,275,79,-0.5474466904997826],[125,276,64,-0.5549346171319485],[125,276,65,-0.5566596873104572],[125,276,66,-0.5565491765737534],[125,276,67,-0.5553769171237946],[125,276,68,-0.5544370338320732],[125,276,69,-0.554666593670845],[125,276,70,-0.5557628497481346],[125,276,71,-0.5574178770184517],[125,276,72,-0.5602027885615826],[125,276,73,-0.5630908571183681],[125,276,74,-0.5647980086505413],[125,276,75,-0.5648296177387238],[125,276,76,-0.5626550279557705],[125,276,77,-0.5583309903740883],[125,276,78,-0.5530056692659855],[125,276,79,-0.5474466904997826],[125,277,64,-0.5549346171319485],[125,277,65,-0.5566596873104572],[125,277,66,-0.5565491765737534],[125,277,67,-0.5553769171237946],[125,277,68,-0.5544370338320732],[125,277,69,-0.554666593670845],[125,277,70,-0.5557628497481346],[125,277,71,-0.5574178770184517],[125,277,72,-0.5602027885615826],[125,277,73,-0.5630908571183681],[125,277,74,-0.5647980086505413],[125,277,75,-0.5648296177387238],[125,277,76,-0.5626550279557705],[125,277,77,-0.5583309903740883],[125,277,78,-0.5530056692659855],[125,277,79,-0.5474466904997826],[125,278,64,-0.5549346171319485],[125,278,65,-0.5566596873104572],[125,278,66,-0.5565491765737534],[125,278,67,-0.5553769171237946],[125,278,68,-0.5544370338320732],[125,278,69,-0.554666593670845],[125,278,70,-0.5557628497481346],[125,278,71,-0.5574178770184517],[125,278,72,-0.5602027885615826],[125,278,73,-0.5630908571183681],[125,278,74,-0.5647980086505413],[125,278,75,-0.5648296177387238],[125,278,76,-0.5626550279557705],[125,278,77,-0.5583309903740883],[125,278,78,-0.5530056692659855],[125,278,79,-0.5474466904997826],[125,279,64,-0.5549346171319485],[125,279,65,-0.5566596873104572],[125,279,66,-0.5565491765737534],[125,279,67,-0.5553769171237946],[125,279,68,-0.5544370338320732],[125,279,69,-0.554666593670845],[125,279,70,-0.5557628497481346],[125,279,71,-0.5574178770184517],[125,279,72,-0.5602027885615826],[125,279,73,-0.5630908571183681],[125,279,74,-0.5647980086505413],[125,279,75,-0.5648296177387238],[125,279,76,-0.5626550279557705],[125,279,77,-0.5583309903740883],[125,279,78,-0.5530056692659855],[125,279,79,-0.5474466904997826],[125,280,64,-0.5549346171319485],[125,280,65,-0.5566596873104572],[125,280,66,-0.5565491765737534],[125,280,67,-0.5553769171237946],[125,280,68,-0.5544370338320732],[125,280,69,-0.554666593670845],[125,280,70,-0.5557628497481346],[125,280,71,-0.5574178770184517],[125,280,72,-0.5602027885615826],[125,280,73,-0.5630908571183681],[125,280,74,-0.5647980086505413],[125,280,75,-0.5648296177387238],[125,280,76,-0.5626550279557705],[125,280,77,-0.5583309903740883],[125,280,78,-0.5530056692659855],[125,280,79,-0.5474466904997826],[125,281,64,-0.5549346171319485],[125,281,65,-0.5566596873104572],[125,281,66,-0.5565491765737534],[125,281,67,-0.5553769171237946],[125,281,68,-0.5544370338320732],[125,281,69,-0.554666593670845],[125,281,70,-0.5557628497481346],[125,281,71,-0.5574178770184517],[125,281,72,-0.5602027885615826],[125,281,73,-0.5630908571183681],[125,281,74,-0.5647980086505413],[125,281,75,-0.5648296177387238],[125,281,76,-0.5626550279557705],[125,281,77,-0.5583309903740883],[125,281,78,-0.5530056692659855],[125,281,79,-0.5474466904997826],[125,282,64,-0.5549346171319485],[125,282,65,-0.5566596873104572],[125,282,66,-0.5565491765737534],[125,282,67,-0.5553769171237946],[125,282,68,-0.5544370338320732],[125,282,69,-0.554666593670845],[125,282,70,-0.5557628497481346],[125,282,71,-0.5574178770184517],[125,282,72,-0.5602027885615826],[125,282,73,-0.5630908571183681],[125,282,74,-0.5647980086505413],[125,282,75,-0.5648296177387238],[125,282,76,-0.5626550279557705],[125,282,77,-0.5583309903740883],[125,282,78,-0.5530056692659855],[125,282,79,-0.5474466904997826],[125,283,64,-0.5549346171319485],[125,283,65,-0.5566596873104572],[125,283,66,-0.5565491765737534],[125,283,67,-0.5553769171237946],[125,283,68,-0.5544370338320732],[125,283,69,-0.554666593670845],[125,283,70,-0.5557628497481346],[125,283,71,-0.5574178770184517],[125,283,72,-0.5602027885615826],[125,283,73,-0.5630908571183681],[125,283,74,-0.5647980086505413],[125,283,75,-0.5648296177387238],[125,283,76,-0.5626550279557705],[125,283,77,-0.5583309903740883],[125,283,78,-0.5530056692659855],[125,283,79,-0.5474466904997826],[125,284,64,-0.5549346171319485],[125,284,65,-0.5566596873104572],[125,284,66,-0.5565491765737534],[125,284,67,-0.5553769171237946],[125,284,68,-0.5544370338320732],[125,284,69,-0.554666593670845],[125,284,70,-0.5557628497481346],[125,284,71,-0.5574178770184517],[125,284,72,-0.5602027885615826],[125,284,73,-0.5630908571183681],[125,284,74,-0.5647980086505413],[125,284,75,-0.5648296177387238],[125,284,76,-0.5626550279557705],[125,284,77,-0.5583309903740883],[125,284,78,-0.5530056692659855],[125,284,79,-0.5474466904997826],[125,285,64,-0.5549346171319485],[125,285,65,-0.5566596873104572],[125,285,66,-0.5565491765737534],[125,285,67,-0.5553769171237946],[125,285,68,-0.5544370338320732],[125,285,69,-0.554666593670845],[125,285,70,-0.5557628497481346],[125,285,71,-0.5574178770184517],[125,285,72,-0.5602027885615826],[125,285,73,-0.5630908571183681],[125,285,74,-0.5647980086505413],[125,285,75,-0.5648296177387238],[125,285,76,-0.5626550279557705],[125,285,77,-0.5583309903740883],[125,285,78,-0.5530056692659855],[125,285,79,-0.5474466904997826],[125,286,64,-0.5549346171319485],[125,286,65,-0.5566596873104572],[125,286,66,-0.5565491765737534],[125,286,67,-0.5553769171237946],[125,286,68,-0.5544370338320732],[125,286,69,-0.554666593670845],[125,286,70,-0.5557628497481346],[125,286,71,-0.5574178770184517],[125,286,72,-0.5602027885615826],[125,286,73,-0.5630908571183681],[125,286,74,-0.5647980086505413],[125,286,75,-0.5648296177387238],[125,286,76,-0.5626550279557705],[125,286,77,-0.5583309903740883],[125,286,78,-0.5530056692659855],[125,286,79,-0.5474466904997826],[125,287,64,-0.5549346171319485],[125,287,65,-0.5566596873104572],[125,287,66,-0.5565491765737534],[125,287,67,-0.5553769171237946],[125,287,68,-0.5544370338320732],[125,287,69,-0.554666593670845],[125,287,70,-0.5557628497481346],[125,287,71,-0.5574178770184517],[125,287,72,-0.5602027885615826],[125,287,73,-0.5630908571183681],[125,287,74,-0.5647980086505413],[125,287,75,-0.5648296177387238],[125,287,76,-0.5626550279557705],[125,287,77,-0.5583309903740883],[125,287,78,-0.5530056692659855],[125,287,79,-0.5474466904997826],[125,288,64,-0.5549346171319485],[125,288,65,-0.5566596873104572],[125,288,66,-0.5565491765737534],[125,288,67,-0.5553769171237946],[125,288,68,-0.5544370338320732],[125,288,69,-0.554666593670845],[125,288,70,-0.5557628497481346],[125,288,71,-0.5574178770184517],[125,288,72,-0.5602027885615826],[125,288,73,-0.5630908571183681],[125,288,74,-0.5647980086505413],[125,288,75,-0.5648296177387238],[125,288,76,-0.5626550279557705],[125,288,77,-0.5583309903740883],[125,288,78,-0.5530056692659855],[125,288,79,-0.5474466904997826],[125,289,64,-0.5549346171319485],[125,289,65,-0.5566596873104572],[125,289,66,-0.5565491765737534],[125,289,67,-0.5553769171237946],[125,289,68,-0.5544370338320732],[125,289,69,-0.554666593670845],[125,289,70,-0.5557628497481346],[125,289,71,-0.5574178770184517],[125,289,72,-0.5602027885615826],[125,289,73,-0.5630908571183681],[125,289,74,-0.5647980086505413],[125,289,75,-0.5648296177387238],[125,289,76,-0.5626550279557705],[125,289,77,-0.5583309903740883],[125,289,78,-0.5530056692659855],[125,289,79,-0.5474466904997826],[125,290,64,-0.5549346171319485],[125,290,65,-0.5566596873104572],[125,290,66,-0.5565491765737534],[125,290,67,-0.5553769171237946],[125,290,68,-0.5544370338320732],[125,290,69,-0.554666593670845],[125,290,70,-0.5557628497481346],[125,290,71,-0.5574178770184517],[125,290,72,-0.5602027885615826],[125,290,73,-0.5630908571183681],[125,290,74,-0.5647980086505413],[125,290,75,-0.5648296177387238],[125,290,76,-0.5626550279557705],[125,290,77,-0.5583309903740883],[125,290,78,-0.5530056692659855],[125,290,79,-0.5474466904997826],[125,291,64,-0.5549346171319485],[125,291,65,-0.5566596873104572],[125,291,66,-0.5565491765737534],[125,291,67,-0.5553769171237946],[125,291,68,-0.5544370338320732],[125,291,69,-0.554666593670845],[125,291,70,-0.5557628497481346],[125,291,71,-0.5574178770184517],[125,291,72,-0.5602027885615826],[125,291,73,-0.5630908571183681],[125,291,74,-0.5647980086505413],[125,291,75,-0.5648296177387238],[125,291,76,-0.5626550279557705],[125,291,77,-0.5583309903740883],[125,291,78,-0.5530056692659855],[125,291,79,-0.5474466904997826],[125,292,64,-0.5549346171319485],[125,292,65,-0.5566596873104572],[125,292,66,-0.5565491765737534],[125,292,67,-0.5553769171237946],[125,292,68,-0.5544370338320732],[125,292,69,-0.554666593670845],[125,292,70,-0.5557628497481346],[125,292,71,-0.5574178770184517],[125,292,72,-0.5602027885615826],[125,292,73,-0.5630908571183681],[125,292,74,-0.5647980086505413],[125,292,75,-0.5648296177387238],[125,292,76,-0.5626550279557705],[125,292,77,-0.5583309903740883],[125,292,78,-0.5530056692659855],[125,292,79,-0.5474466904997826],[125,293,64,-0.5549346171319485],[125,293,65,-0.5566596873104572],[125,293,66,-0.5565491765737534],[125,293,67,-0.5553769171237946],[125,293,68,-0.5544370338320732],[125,293,69,-0.554666593670845],[125,293,70,-0.5557628497481346],[125,293,71,-0.5574178770184517],[125,293,72,-0.5602027885615826],[125,293,73,-0.5630908571183681],[125,293,74,-0.5647980086505413],[125,293,75,-0.5648296177387238],[125,293,76,-0.5626550279557705],[125,293,77,-0.5583309903740883],[125,293,78,-0.5530056692659855],[125,293,79,-0.5474466904997826],[125,294,64,-0.5549346171319485],[125,294,65,-0.5566596873104572],[125,294,66,-0.5565491765737534],[125,294,67,-0.5553769171237946],[125,294,68,-0.5544370338320732],[125,294,69,-0.554666593670845],[125,294,70,-0.5557628497481346],[125,294,71,-0.5574178770184517],[125,294,72,-0.5602027885615826],[125,294,73,-0.5630908571183681],[125,294,74,-0.5647980086505413],[125,294,75,-0.5648296177387238],[125,294,76,-0.5626550279557705],[125,294,77,-0.5583309903740883],[125,294,78,-0.5530056692659855],[125,294,79,-0.5474466904997826],[125,295,64,-0.5549346171319485],[125,295,65,-0.5566596873104572],[125,295,66,-0.5565491765737534],[125,295,67,-0.5553769171237946],[125,295,68,-0.5544370338320732],[125,295,69,-0.554666593670845],[125,295,70,-0.5557628497481346],[125,295,71,-0.5574178770184517],[125,295,72,-0.5602027885615826],[125,295,73,-0.5630908571183681],[125,295,74,-0.5647980086505413],[125,295,75,-0.5648296177387238],[125,295,76,-0.5626550279557705],[125,295,77,-0.5583309903740883],[125,295,78,-0.5530056692659855],[125,295,79,-0.5474466904997826],[125,296,64,-0.5549346171319485],[125,296,65,-0.5566596873104572],[125,296,66,-0.5565491765737534],[125,296,67,-0.5553769171237946],[125,296,68,-0.5544370338320732],[125,296,69,-0.554666593670845],[125,296,70,-0.5557628497481346],[125,296,71,-0.5574178770184517],[125,296,72,-0.5602027885615826],[125,296,73,-0.5630908571183681],[125,296,74,-0.5647980086505413],[125,296,75,-0.5648296177387238],[125,296,76,-0.5626550279557705],[125,296,77,-0.5583309903740883],[125,296,78,-0.5530056692659855],[125,296,79,-0.5474466904997826],[125,297,64,-0.5549346171319485],[125,297,65,-0.5566596873104572],[125,297,66,-0.5565491765737534],[125,297,67,-0.5553769171237946],[125,297,68,-0.5544370338320732],[125,297,69,-0.554666593670845],[125,297,70,-0.5557628497481346],[125,297,71,-0.5574178770184517],[125,297,72,-0.5602027885615826],[125,297,73,-0.5630908571183681],[125,297,74,-0.5647980086505413],[125,297,75,-0.5648296177387238],[125,297,76,-0.5626550279557705],[125,297,77,-0.5583309903740883],[125,297,78,-0.5530056692659855],[125,297,79,-0.5474466904997826],[125,298,64,-0.5549346171319485],[125,298,65,-0.5566596873104572],[125,298,66,-0.5565491765737534],[125,298,67,-0.5553769171237946],[125,298,68,-0.5544370338320732],[125,298,69,-0.554666593670845],[125,298,70,-0.5557628497481346],[125,298,71,-0.5574178770184517],[125,298,72,-0.5602027885615826],[125,298,73,-0.5630908571183681],[125,298,74,-0.5647980086505413],[125,298,75,-0.5648296177387238],[125,298,76,-0.5626550279557705],[125,298,77,-0.5583309903740883],[125,298,78,-0.5530056692659855],[125,298,79,-0.5474466904997826],[125,299,64,-0.5549346171319485],[125,299,65,-0.5566596873104572],[125,299,66,-0.5565491765737534],[125,299,67,-0.5553769171237946],[125,299,68,-0.5544370338320732],[125,299,69,-0.554666593670845],[125,299,70,-0.5557628497481346],[125,299,71,-0.5574178770184517],[125,299,72,-0.5602027885615826],[125,299,73,-0.5630908571183681],[125,299,74,-0.5647980086505413],[125,299,75,-0.5648296177387238],[125,299,76,-0.5626550279557705],[125,299,77,-0.5583309903740883],[125,299,78,-0.5530056692659855],[125,299,79,-0.5474466904997826],[125,300,64,-0.5549346171319485],[125,300,65,-0.5566596873104572],[125,300,66,-0.5565491765737534],[125,300,67,-0.5553769171237946],[125,300,68,-0.5544370338320732],[125,300,69,-0.554666593670845],[125,300,70,-0.5557628497481346],[125,300,71,-0.5574178770184517],[125,300,72,-0.5602027885615826],[125,300,73,-0.5630908571183681],[125,300,74,-0.5647980086505413],[125,300,75,-0.5648296177387238],[125,300,76,-0.5626550279557705],[125,300,77,-0.5583309903740883],[125,300,78,-0.5530056692659855],[125,300,79,-0.5474466904997826],[125,301,64,-0.5549346171319485],[125,301,65,-0.5566596873104572],[125,301,66,-0.5565491765737534],[125,301,67,-0.5553769171237946],[125,301,68,-0.5544370338320732],[125,301,69,-0.554666593670845],[125,301,70,-0.5557628497481346],[125,301,71,-0.5574178770184517],[125,301,72,-0.5602027885615826],[125,301,73,-0.5630908571183681],[125,301,74,-0.5647980086505413],[125,301,75,-0.5648296177387238],[125,301,76,-0.5626550279557705],[125,301,77,-0.5583309903740883],[125,301,78,-0.5530056692659855],[125,301,79,-0.5474466904997826],[125,302,64,-0.5549346171319485],[125,302,65,-0.5566596873104572],[125,302,66,-0.5565491765737534],[125,302,67,-0.5553769171237946],[125,302,68,-0.5544370338320732],[125,302,69,-0.554666593670845],[125,302,70,-0.5557628497481346],[125,302,71,-0.5574178770184517],[125,302,72,-0.5602027885615826],[125,302,73,-0.5630908571183681],[125,302,74,-0.5647980086505413],[125,302,75,-0.5648296177387238],[125,302,76,-0.5626550279557705],[125,302,77,-0.5583309903740883],[125,302,78,-0.5530056692659855],[125,302,79,-0.5474466904997826],[125,303,64,-0.5549346171319485],[125,303,65,-0.5566596873104572],[125,303,66,-0.5565491765737534],[125,303,67,-0.5553769171237946],[125,303,68,-0.5544370338320732],[125,303,69,-0.554666593670845],[125,303,70,-0.5557628497481346],[125,303,71,-0.5574178770184517],[125,303,72,-0.5602027885615826],[125,303,73,-0.5630908571183681],[125,303,74,-0.5647980086505413],[125,303,75,-0.5648296177387238],[125,303,76,-0.5626550279557705],[125,303,77,-0.5583309903740883],[125,303,78,-0.5530056692659855],[125,303,79,-0.5474466904997826],[125,304,64,-0.5549346171319485],[125,304,65,-0.5566596873104572],[125,304,66,-0.5565491765737534],[125,304,67,-0.5553769171237946],[125,304,68,-0.5544370338320732],[125,304,69,-0.554666593670845],[125,304,70,-0.5557628497481346],[125,304,71,-0.5574178770184517],[125,304,72,-0.5602027885615826],[125,304,73,-0.5630908571183681],[125,304,74,-0.5647980086505413],[125,304,75,-0.5648296177387238],[125,304,76,-0.5626550279557705],[125,304,77,-0.5583309903740883],[125,304,78,-0.5530056692659855],[125,304,79,-0.5474466904997826],[125,305,64,-0.5549346171319485],[125,305,65,-0.5566596873104572],[125,305,66,-0.5565491765737534],[125,305,67,-0.5553769171237946],[125,305,68,-0.5544370338320732],[125,305,69,-0.554666593670845],[125,305,70,-0.5557628497481346],[125,305,71,-0.5574178770184517],[125,305,72,-0.5602027885615826],[125,305,73,-0.5630908571183681],[125,305,74,-0.5647980086505413],[125,305,75,-0.5648296177387238],[125,305,76,-0.5626550279557705],[125,305,77,-0.5583309903740883],[125,305,78,-0.5530056692659855],[125,305,79,-0.5474466904997826],[125,306,64,-0.5549346171319485],[125,306,65,-0.5566596873104572],[125,306,66,-0.5565491765737534],[125,306,67,-0.5553769171237946],[125,306,68,-0.5544370338320732],[125,306,69,-0.554666593670845],[125,306,70,-0.5557628497481346],[125,306,71,-0.5574178770184517],[125,306,72,-0.5602027885615826],[125,306,73,-0.5630908571183681],[125,306,74,-0.5647980086505413],[125,306,75,-0.5648296177387238],[125,306,76,-0.5626550279557705],[125,306,77,-0.5583309903740883],[125,306,78,-0.5530056692659855],[125,306,79,-0.5474466904997826],[125,307,64,-0.5549346171319485],[125,307,65,-0.5566596873104572],[125,307,66,-0.5565491765737534],[125,307,67,-0.5553769171237946],[125,307,68,-0.5544370338320732],[125,307,69,-0.554666593670845],[125,307,70,-0.5557628497481346],[125,307,71,-0.5574178770184517],[125,307,72,-0.5602027885615826],[125,307,73,-0.5630908571183681],[125,307,74,-0.5647980086505413],[125,307,75,-0.5648296177387238],[125,307,76,-0.5626550279557705],[125,307,77,-0.5583309903740883],[125,307,78,-0.5530056692659855],[125,307,79,-0.5474466904997826],[125,308,64,-0.5549346171319485],[125,308,65,-0.5566596873104572],[125,308,66,-0.5565491765737534],[125,308,67,-0.5553769171237946],[125,308,68,-0.5544370338320732],[125,308,69,-0.554666593670845],[125,308,70,-0.5557628497481346],[125,308,71,-0.5574178770184517],[125,308,72,-0.5602027885615826],[125,308,73,-0.5630908571183681],[125,308,74,-0.5647980086505413],[125,308,75,-0.5648296177387238],[125,308,76,-0.5626550279557705],[125,308,77,-0.5583309903740883],[125,308,78,-0.5530056692659855],[125,308,79,-0.5474466904997826],[125,309,64,-0.5549346171319485],[125,309,65,-0.5566596873104572],[125,309,66,-0.5565491765737534],[125,309,67,-0.5553769171237946],[125,309,68,-0.5544370338320732],[125,309,69,-0.554666593670845],[125,309,70,-0.5557628497481346],[125,309,71,-0.5574178770184517],[125,309,72,-0.5602027885615826],[125,309,73,-0.5630908571183681],[125,309,74,-0.5647980086505413],[125,309,75,-0.5648296177387238],[125,309,76,-0.5626550279557705],[125,309,77,-0.5583309903740883],[125,309,78,-0.5530056692659855],[125,309,79,-0.5474466904997826],[125,310,64,-0.5549346171319485],[125,310,65,-0.5566596873104572],[125,310,66,-0.5565491765737534],[125,310,67,-0.5553769171237946],[125,310,68,-0.5544370338320732],[125,310,69,-0.554666593670845],[125,310,70,-0.5557628497481346],[125,310,71,-0.5574178770184517],[125,310,72,-0.5602027885615826],[125,310,73,-0.5630908571183681],[125,310,74,-0.5647980086505413],[125,310,75,-0.5648296177387238],[125,310,76,-0.5626550279557705],[125,310,77,-0.5583309903740883],[125,310,78,-0.5530056692659855],[125,310,79,-0.5474466904997826],[125,311,64,-0.5549346171319485],[125,311,65,-0.5566596873104572],[125,311,66,-0.5565491765737534],[125,311,67,-0.5553769171237946],[125,311,68,-0.5544370338320732],[125,311,69,-0.554666593670845],[125,311,70,-0.5557628497481346],[125,311,71,-0.5574178770184517],[125,311,72,-0.5602027885615826],[125,311,73,-0.5630908571183681],[125,311,74,-0.5647980086505413],[125,311,75,-0.5648296177387238],[125,311,76,-0.5626550279557705],[125,311,77,-0.5583309903740883],[125,311,78,-0.5530056692659855],[125,311,79,-0.5474466904997826],[125,312,64,-0.5549346171319485],[125,312,65,-0.5566596873104572],[125,312,66,-0.5565491765737534],[125,312,67,-0.5553769171237946],[125,312,68,-0.5544370338320732],[125,312,69,-0.554666593670845],[125,312,70,-0.5557628497481346],[125,312,71,-0.5574178770184517],[125,312,72,-0.5602027885615826],[125,312,73,-0.5630908571183681],[125,312,74,-0.5647980086505413],[125,312,75,-0.5648296177387238],[125,312,76,-0.5626550279557705],[125,312,77,-0.5583309903740883],[125,312,78,-0.5530056692659855],[125,312,79,-0.5474466904997826],[125,313,64,-0.5549346171319485],[125,313,65,-0.5566596873104572],[125,313,66,-0.5565491765737534],[125,313,67,-0.5553769171237946],[125,313,68,-0.5544370338320732],[125,313,69,-0.554666593670845],[125,313,70,-0.5557628497481346],[125,313,71,-0.5574178770184517],[125,313,72,-0.5602027885615826],[125,313,73,-0.5630908571183681],[125,313,74,-0.5647980086505413],[125,313,75,-0.5648296177387238],[125,313,76,-0.5626550279557705],[125,313,77,-0.5583309903740883],[125,313,78,-0.5530056692659855],[125,313,79,-0.5474466904997826],[125,314,64,-0.5549346171319485],[125,314,65,-0.5566596873104572],[125,314,66,-0.5565491765737534],[125,314,67,-0.5553769171237946],[125,314,68,-0.5544370338320732],[125,314,69,-0.554666593670845],[125,314,70,-0.5557628497481346],[125,314,71,-0.5574178770184517],[125,314,72,-0.5602027885615826],[125,314,73,-0.5630908571183681],[125,314,74,-0.5647980086505413],[125,314,75,-0.5648296177387238],[125,314,76,-0.5626550279557705],[125,314,77,-0.5583309903740883],[125,314,78,-0.5530056692659855],[125,314,79,-0.5474466904997826],[125,315,64,-0.5549346171319485],[125,315,65,-0.5566596873104572],[125,315,66,-0.5565491765737534],[125,315,67,-0.5553769171237946],[125,315,68,-0.5544370338320732],[125,315,69,-0.554666593670845],[125,315,70,-0.5557628497481346],[125,315,71,-0.5574178770184517],[125,315,72,-0.5602027885615826],[125,315,73,-0.5630908571183681],[125,315,74,-0.5647980086505413],[125,315,75,-0.5648296177387238],[125,315,76,-0.5626550279557705],[125,315,77,-0.5583309903740883],[125,315,78,-0.5530056692659855],[125,315,79,-0.5474466904997826],[125,316,64,-0.5549346171319485],[125,316,65,-0.5566596873104572],[125,316,66,-0.5565491765737534],[125,316,67,-0.5553769171237946],[125,316,68,-0.5544370338320732],[125,316,69,-0.554666593670845],[125,316,70,-0.5557628497481346],[125,316,71,-0.5574178770184517],[125,316,72,-0.5602027885615826],[125,316,73,-0.5630908571183681],[125,316,74,-0.5647980086505413],[125,316,75,-0.5648296177387238],[125,316,76,-0.5626550279557705],[125,316,77,-0.5583309903740883],[125,316,78,-0.5530056692659855],[125,316,79,-0.5474466904997826],[125,317,64,-0.5549346171319485],[125,317,65,-0.5566596873104572],[125,317,66,-0.5565491765737534],[125,317,67,-0.5553769171237946],[125,317,68,-0.5544370338320732],[125,317,69,-0.554666593670845],[125,317,70,-0.5557628497481346],[125,317,71,-0.5574178770184517],[125,317,72,-0.5602027885615826],[125,317,73,-0.5630908571183681],[125,317,74,-0.5647980086505413],[125,317,75,-0.5648296177387238],[125,317,76,-0.5626550279557705],[125,317,77,-0.5583309903740883],[125,317,78,-0.5530056692659855],[125,317,79,-0.5474466904997826],[125,318,64,-0.5549346171319485],[125,318,65,-0.5566596873104572],[125,318,66,-0.5565491765737534],[125,318,67,-0.5553769171237946],[125,318,68,-0.5544370338320732],[125,318,69,-0.554666593670845],[125,318,70,-0.5557628497481346],[125,318,71,-0.5574178770184517],[125,318,72,-0.5602027885615826],[125,318,73,-0.5630908571183681],[125,318,74,-0.5647980086505413],[125,318,75,-0.5648296177387238],[125,318,76,-0.5626550279557705],[125,318,77,-0.5583309903740883],[125,318,78,-0.5530056692659855],[125,318,79,-0.5474466904997826],[125,319,64,-0.5549346171319485],[125,319,65,-0.5566596873104572],[125,319,66,-0.5565491765737534],[125,319,67,-0.5553769171237946],[125,319,68,-0.5544370338320732],[125,319,69,-0.554666593670845],[125,319,70,-0.5557628497481346],[125,319,71,-0.5574178770184517],[125,319,72,-0.5602027885615826],[125,319,73,-0.5630908571183681],[125,319,74,-0.5647980086505413],[125,319,75,-0.5648296177387238],[125,319,76,-0.5626550279557705],[125,319,77,-0.5583309903740883],[125,319,78,-0.5530056692659855],[125,319,79,-0.5474466904997826],[126,-64,64,-0.5548058114945889],[126,-64,65,-0.5570825934410095],[126,-64,66,-0.5576100312173367],[126,-64,67,-0.556856956332922],[126,-64,68,-0.5559045523405075],[126,-64,69,-0.5556793101131916],[126,-64,70,-0.5560845471918583],[126,-64,71,-0.5570640936493874],[126,-64,72,-0.5593903511762619],[126,-64,73,-0.5623086504638195],[126,-64,74,-0.564282551407814],[126,-64,75,-0.5644748508930206],[126,-64,76,-0.5623977892100811],[126,-64,77,-0.5580761544406414],[126,-64,78,-0.5526385642588139],[126,-64,79,-0.5470151044428349],[126,-63,64,-0.5548058114945889],[126,-63,65,-0.5570825934410095],[126,-63,66,-0.5576100312173367],[126,-63,67,-0.556856956332922],[126,-63,68,-0.5559045523405075],[126,-63,69,-0.5556793101131916],[126,-63,70,-0.5560845471918583],[126,-63,71,-0.5570640936493874],[126,-63,72,-0.5593903511762619],[126,-63,73,-0.5623086504638195],[126,-63,74,-0.564282551407814],[126,-63,75,-0.5644748508930206],[126,-63,76,-0.5623977892100811],[126,-63,77,-0.5580761544406414],[126,-63,78,-0.5526385642588139],[126,-63,79,-0.5470151044428349],[126,-62,64,-0.5548058114945889],[126,-62,65,-0.5570825934410095],[126,-62,66,-0.5576100312173367],[126,-62,67,-0.556856956332922],[126,-62,68,-0.5559045523405075],[126,-62,69,-0.5556793101131916],[126,-62,70,-0.5560845471918583],[126,-62,71,-0.5570640936493874],[126,-62,72,-0.5593903511762619],[126,-62,73,-0.5623086504638195],[126,-62,74,-0.564282551407814],[126,-62,75,-0.5644748508930206],[126,-62,76,-0.5623977892100811],[126,-62,77,-0.5580761544406414],[126,-62,78,-0.5526385642588139],[126,-62,79,-0.5470151044428349],[126,-61,64,-0.5548058114945889],[126,-61,65,-0.5570825934410095],[126,-61,66,-0.5576100312173367],[126,-61,67,-0.556856956332922],[126,-61,68,-0.5559045523405075],[126,-61,69,-0.5556793101131916],[126,-61,70,-0.5560845471918583],[126,-61,71,-0.5570640936493874],[126,-61,72,-0.5593903511762619],[126,-61,73,-0.5623086504638195],[126,-61,74,-0.564282551407814],[126,-61,75,-0.5644748508930206],[126,-61,76,-0.5623977892100811],[126,-61,77,-0.5580761544406414],[126,-61,78,-0.5526385642588139],[126,-61,79,-0.5470151044428349],[126,-60,64,-0.5548058114945889],[126,-60,65,-0.5570825934410095],[126,-60,66,-0.5576100312173367],[126,-60,67,-0.556856956332922],[126,-60,68,-0.5559045523405075],[126,-60,69,-0.5556793101131916],[126,-60,70,-0.5560845471918583],[126,-60,71,-0.5570640936493874],[126,-60,72,-0.5593903511762619],[126,-60,73,-0.5623086504638195],[126,-60,74,-0.564282551407814],[126,-60,75,-0.5644748508930206],[126,-60,76,-0.5623977892100811],[126,-60,77,-0.5580761544406414],[126,-60,78,-0.5526385642588139],[126,-60,79,-0.5470151044428349],[126,-59,64,-0.5548058114945889],[126,-59,65,-0.5570825934410095],[126,-59,66,-0.5576100312173367],[126,-59,67,-0.556856956332922],[126,-59,68,-0.5559045523405075],[126,-59,69,-0.5556793101131916],[126,-59,70,-0.5560845471918583],[126,-59,71,-0.5570640936493874],[126,-59,72,-0.5593903511762619],[126,-59,73,-0.5623086504638195],[126,-59,74,-0.564282551407814],[126,-59,75,-0.5644748508930206],[126,-59,76,-0.5623977892100811],[126,-59,77,-0.5580761544406414],[126,-59,78,-0.5526385642588139],[126,-59,79,-0.5470151044428349],[126,-58,64,-0.5548058114945889],[126,-58,65,-0.5570825934410095],[126,-58,66,-0.5576100312173367],[126,-58,67,-0.556856956332922],[126,-58,68,-0.5559045523405075],[126,-58,69,-0.5556793101131916],[126,-58,70,-0.5560845471918583],[126,-58,71,-0.5570640936493874],[126,-58,72,-0.5593903511762619],[126,-58,73,-0.5623086504638195],[126,-58,74,-0.564282551407814],[126,-58,75,-0.5644748508930206],[126,-58,76,-0.5623977892100811],[126,-58,77,-0.5580761544406414],[126,-58,78,-0.5526385642588139],[126,-58,79,-0.5470151044428349],[126,-57,64,-0.5548058114945889],[126,-57,65,-0.5570825934410095],[126,-57,66,-0.5576100312173367],[126,-57,67,-0.556856956332922],[126,-57,68,-0.5559045523405075],[126,-57,69,-0.5556793101131916],[126,-57,70,-0.5560845471918583],[126,-57,71,-0.5570640936493874],[126,-57,72,-0.5593903511762619],[126,-57,73,-0.5623086504638195],[126,-57,74,-0.564282551407814],[126,-57,75,-0.5644748508930206],[126,-57,76,-0.5623977892100811],[126,-57,77,-0.5580761544406414],[126,-57,78,-0.5526385642588139],[126,-57,79,-0.5470151044428349],[126,-56,64,-0.5548058114945889],[126,-56,65,-0.5570825934410095],[126,-56,66,-0.5576100312173367],[126,-56,67,-0.556856956332922],[126,-56,68,-0.5559045523405075],[126,-56,69,-0.5556793101131916],[126,-56,70,-0.5560845471918583],[126,-56,71,-0.5570640936493874],[126,-56,72,-0.5593903511762619],[126,-56,73,-0.5623086504638195],[126,-56,74,-0.564282551407814],[126,-56,75,-0.5644748508930206],[126,-56,76,-0.5623977892100811],[126,-56,77,-0.5580761544406414],[126,-56,78,-0.5526385642588139],[126,-56,79,-0.5470151044428349],[126,-55,64,-0.5548058114945889],[126,-55,65,-0.5570825934410095],[126,-55,66,-0.5576100312173367],[126,-55,67,-0.556856956332922],[126,-55,68,-0.5559045523405075],[126,-55,69,-0.5556793101131916],[126,-55,70,-0.5560845471918583],[126,-55,71,-0.5570640936493874],[126,-55,72,-0.5593903511762619],[126,-55,73,-0.5623086504638195],[126,-55,74,-0.564282551407814],[126,-55,75,-0.5644748508930206],[126,-55,76,-0.5623977892100811],[126,-55,77,-0.5580761544406414],[126,-55,78,-0.5526385642588139],[126,-55,79,-0.5470151044428349],[126,-54,64,-0.5548058114945889],[126,-54,65,-0.5570825934410095],[126,-54,66,-0.5576100312173367],[126,-54,67,-0.556856956332922],[126,-54,68,-0.5559045523405075],[126,-54,69,-0.5556793101131916],[126,-54,70,-0.5560845471918583],[126,-54,71,-0.5570640936493874],[126,-54,72,-0.5593903511762619],[126,-54,73,-0.5623086504638195],[126,-54,74,-0.564282551407814],[126,-54,75,-0.5644748508930206],[126,-54,76,-0.5623977892100811],[126,-54,77,-0.5580761544406414],[126,-54,78,-0.5526385642588139],[126,-54,79,-0.5470151044428349],[126,-53,64,-0.5548058114945889],[126,-53,65,-0.5570825934410095],[126,-53,66,-0.5576100312173367],[126,-53,67,-0.556856956332922],[126,-53,68,-0.5559045523405075],[126,-53,69,-0.5556793101131916],[126,-53,70,-0.5560845471918583],[126,-53,71,-0.5570640936493874],[126,-53,72,-0.5593903511762619],[126,-53,73,-0.5623086504638195],[126,-53,74,-0.564282551407814],[126,-53,75,-0.5644748508930206],[126,-53,76,-0.5623977892100811],[126,-53,77,-0.5580761544406414],[126,-53,78,-0.5526385642588139],[126,-53,79,-0.5470151044428349],[126,-52,64,-0.5548058114945889],[126,-52,65,-0.5570825934410095],[126,-52,66,-0.5576100312173367],[126,-52,67,-0.556856956332922],[126,-52,68,-0.5559045523405075],[126,-52,69,-0.5556793101131916],[126,-52,70,-0.5560845471918583],[126,-52,71,-0.5570640936493874],[126,-52,72,-0.5593903511762619],[126,-52,73,-0.5623086504638195],[126,-52,74,-0.564282551407814],[126,-52,75,-0.5644748508930206],[126,-52,76,-0.5623977892100811],[126,-52,77,-0.5580761544406414],[126,-52,78,-0.5526385642588139],[126,-52,79,-0.5470151044428349],[126,-51,64,-0.5548058114945889],[126,-51,65,-0.5570825934410095],[126,-51,66,-0.5576100312173367],[126,-51,67,-0.556856956332922],[126,-51,68,-0.5559045523405075],[126,-51,69,-0.5556793101131916],[126,-51,70,-0.5560845471918583],[126,-51,71,-0.5570640936493874],[126,-51,72,-0.5593903511762619],[126,-51,73,-0.5623086504638195],[126,-51,74,-0.564282551407814],[126,-51,75,-0.5644748508930206],[126,-51,76,-0.5623977892100811],[126,-51,77,-0.5580761544406414],[126,-51,78,-0.5526385642588139],[126,-51,79,-0.5470151044428349],[126,-50,64,-0.5548058114945889],[126,-50,65,-0.5570825934410095],[126,-50,66,-0.5576100312173367],[126,-50,67,-0.556856956332922],[126,-50,68,-0.5559045523405075],[126,-50,69,-0.5556793101131916],[126,-50,70,-0.5560845471918583],[126,-50,71,-0.5570640936493874],[126,-50,72,-0.5593903511762619],[126,-50,73,-0.5623086504638195],[126,-50,74,-0.564282551407814],[126,-50,75,-0.5644748508930206],[126,-50,76,-0.5623977892100811],[126,-50,77,-0.5580761544406414],[126,-50,78,-0.5526385642588139],[126,-50,79,-0.5470151044428349],[126,-49,64,-0.5548058114945889],[126,-49,65,-0.5570825934410095],[126,-49,66,-0.5576100312173367],[126,-49,67,-0.556856956332922],[126,-49,68,-0.5559045523405075],[126,-49,69,-0.5556793101131916],[126,-49,70,-0.5560845471918583],[126,-49,71,-0.5570640936493874],[126,-49,72,-0.5593903511762619],[126,-49,73,-0.5623086504638195],[126,-49,74,-0.564282551407814],[126,-49,75,-0.5644748508930206],[126,-49,76,-0.5623977892100811],[126,-49,77,-0.5580761544406414],[126,-49,78,-0.5526385642588139],[126,-49,79,-0.5470151044428349],[126,-48,64,-0.5548058114945889],[126,-48,65,-0.5570825934410095],[126,-48,66,-0.5576100312173367],[126,-48,67,-0.556856956332922],[126,-48,68,-0.5559045523405075],[126,-48,69,-0.5556793101131916],[126,-48,70,-0.5560845471918583],[126,-48,71,-0.5570640936493874],[126,-48,72,-0.5593903511762619],[126,-48,73,-0.5623086504638195],[126,-48,74,-0.564282551407814],[126,-48,75,-0.5644748508930206],[126,-48,76,-0.5623977892100811],[126,-48,77,-0.5580761544406414],[126,-48,78,-0.5526385642588139],[126,-48,79,-0.5470151044428349],[126,-47,64,-0.5548058114945889],[126,-47,65,-0.5570825934410095],[126,-47,66,-0.5576100312173367],[126,-47,67,-0.556856956332922],[126,-47,68,-0.5559045523405075],[126,-47,69,-0.5556793101131916],[126,-47,70,-0.5560845471918583],[126,-47,71,-0.5570640936493874],[126,-47,72,-0.5593903511762619],[126,-47,73,-0.5623086504638195],[126,-47,74,-0.564282551407814],[126,-47,75,-0.5644748508930206],[126,-47,76,-0.5623977892100811],[126,-47,77,-0.5580761544406414],[126,-47,78,-0.5526385642588139],[126,-47,79,-0.5470151044428349],[126,-46,64,-0.5548058114945889],[126,-46,65,-0.5570825934410095],[126,-46,66,-0.5576100312173367],[126,-46,67,-0.556856956332922],[126,-46,68,-0.5559045523405075],[126,-46,69,-0.5556793101131916],[126,-46,70,-0.5560845471918583],[126,-46,71,-0.5570640936493874],[126,-46,72,-0.5593903511762619],[126,-46,73,-0.5623086504638195],[126,-46,74,-0.564282551407814],[126,-46,75,-0.5644748508930206],[126,-46,76,-0.5623977892100811],[126,-46,77,-0.5580761544406414],[126,-46,78,-0.5526385642588139],[126,-46,79,-0.5470151044428349],[126,-45,64,-0.5548058114945889],[126,-45,65,-0.5570825934410095],[126,-45,66,-0.5576100312173367],[126,-45,67,-0.556856956332922],[126,-45,68,-0.5559045523405075],[126,-45,69,-0.5556793101131916],[126,-45,70,-0.5560845471918583],[126,-45,71,-0.5570640936493874],[126,-45,72,-0.5593903511762619],[126,-45,73,-0.5623086504638195],[126,-45,74,-0.564282551407814],[126,-45,75,-0.5644748508930206],[126,-45,76,-0.5623977892100811],[126,-45,77,-0.5580761544406414],[126,-45,78,-0.5526385642588139],[126,-45,79,-0.5470151044428349],[126,-44,64,-0.5548058114945889],[126,-44,65,-0.5570825934410095],[126,-44,66,-0.5576100312173367],[126,-44,67,-0.556856956332922],[126,-44,68,-0.5559045523405075],[126,-44,69,-0.5556793101131916],[126,-44,70,-0.5560845471918583],[126,-44,71,-0.5570640936493874],[126,-44,72,-0.5593903511762619],[126,-44,73,-0.5623086504638195],[126,-44,74,-0.564282551407814],[126,-44,75,-0.5644748508930206],[126,-44,76,-0.5623977892100811],[126,-44,77,-0.5580761544406414],[126,-44,78,-0.5526385642588139],[126,-44,79,-0.5470151044428349],[126,-43,64,-0.5548058114945889],[126,-43,65,-0.5570825934410095],[126,-43,66,-0.5576100312173367],[126,-43,67,-0.556856956332922],[126,-43,68,-0.5559045523405075],[126,-43,69,-0.5556793101131916],[126,-43,70,-0.5560845471918583],[126,-43,71,-0.5570640936493874],[126,-43,72,-0.5593903511762619],[126,-43,73,-0.5623086504638195],[126,-43,74,-0.564282551407814],[126,-43,75,-0.5644748508930206],[126,-43,76,-0.5623977892100811],[126,-43,77,-0.5580761544406414],[126,-43,78,-0.5526385642588139],[126,-43,79,-0.5470151044428349],[126,-42,64,-0.5548058114945889],[126,-42,65,-0.5570825934410095],[126,-42,66,-0.5576100312173367],[126,-42,67,-0.556856956332922],[126,-42,68,-0.5559045523405075],[126,-42,69,-0.5556793101131916],[126,-42,70,-0.5560845471918583],[126,-42,71,-0.5570640936493874],[126,-42,72,-0.5593903511762619],[126,-42,73,-0.5623086504638195],[126,-42,74,-0.564282551407814],[126,-42,75,-0.5644748508930206],[126,-42,76,-0.5623977892100811],[126,-42,77,-0.5580761544406414],[126,-42,78,-0.5526385642588139],[126,-42,79,-0.5470151044428349],[126,-41,64,-0.5548058114945889],[126,-41,65,-0.5570825934410095],[126,-41,66,-0.5576100312173367],[126,-41,67,-0.556856956332922],[126,-41,68,-0.5559045523405075],[126,-41,69,-0.5556793101131916],[126,-41,70,-0.5560845471918583],[126,-41,71,-0.5570640936493874],[126,-41,72,-0.5593903511762619],[126,-41,73,-0.5623086504638195],[126,-41,74,-0.564282551407814],[126,-41,75,-0.5644748508930206],[126,-41,76,-0.5623977892100811],[126,-41,77,-0.5580761544406414],[126,-41,78,-0.5526385642588139],[126,-41,79,-0.5470151044428349],[126,-40,64,-0.5548058114945889],[126,-40,65,-0.5570825934410095],[126,-40,66,-0.5576100312173367],[126,-40,67,-0.556856956332922],[126,-40,68,-0.5559045523405075],[126,-40,69,-0.5556793101131916],[126,-40,70,-0.5560845471918583],[126,-40,71,-0.5570640936493874],[126,-40,72,-0.5593903511762619],[126,-40,73,-0.5623086504638195],[126,-40,74,-0.564282551407814],[126,-40,75,-0.5644748508930206],[126,-40,76,-0.5623977892100811],[126,-40,77,-0.5580761544406414],[126,-40,78,-0.5526385642588139],[126,-40,79,-0.5470151044428349],[126,-39,64,-0.5548058114945889],[126,-39,65,-0.5570825934410095],[126,-39,66,-0.5576100312173367],[126,-39,67,-0.556856956332922],[126,-39,68,-0.5559045523405075],[126,-39,69,-0.5556793101131916],[126,-39,70,-0.5560845471918583],[126,-39,71,-0.5570640936493874],[126,-39,72,-0.5593903511762619],[126,-39,73,-0.5623086504638195],[126,-39,74,-0.564282551407814],[126,-39,75,-0.5644748508930206],[126,-39,76,-0.5623977892100811],[126,-39,77,-0.5580761544406414],[126,-39,78,-0.5526385642588139],[126,-39,79,-0.5470151044428349],[126,-38,64,-0.5548058114945889],[126,-38,65,-0.5570825934410095],[126,-38,66,-0.5576100312173367],[126,-38,67,-0.556856956332922],[126,-38,68,-0.5559045523405075],[126,-38,69,-0.5556793101131916],[126,-38,70,-0.5560845471918583],[126,-38,71,-0.5570640936493874],[126,-38,72,-0.5593903511762619],[126,-38,73,-0.5623086504638195],[126,-38,74,-0.564282551407814],[126,-38,75,-0.5644748508930206],[126,-38,76,-0.5623977892100811],[126,-38,77,-0.5580761544406414],[126,-38,78,-0.5526385642588139],[126,-38,79,-0.5470151044428349],[126,-37,64,-0.5548058114945889],[126,-37,65,-0.5570825934410095],[126,-37,66,-0.5576100312173367],[126,-37,67,-0.556856956332922],[126,-37,68,-0.5559045523405075],[126,-37,69,-0.5556793101131916],[126,-37,70,-0.5560845471918583],[126,-37,71,-0.5570640936493874],[126,-37,72,-0.5593903511762619],[126,-37,73,-0.5623086504638195],[126,-37,74,-0.564282551407814],[126,-37,75,-0.5644748508930206],[126,-37,76,-0.5623977892100811],[126,-37,77,-0.5580761544406414],[126,-37,78,-0.5526385642588139],[126,-37,79,-0.5470151044428349],[126,-36,64,-0.5548058114945889],[126,-36,65,-0.5570825934410095],[126,-36,66,-0.5576100312173367],[126,-36,67,-0.556856956332922],[126,-36,68,-0.5559045523405075],[126,-36,69,-0.5556793101131916],[126,-36,70,-0.5560845471918583],[126,-36,71,-0.5570640936493874],[126,-36,72,-0.5593903511762619],[126,-36,73,-0.5623086504638195],[126,-36,74,-0.564282551407814],[126,-36,75,-0.5644748508930206],[126,-36,76,-0.5623977892100811],[126,-36,77,-0.5580761544406414],[126,-36,78,-0.5526385642588139],[126,-36,79,-0.5470151044428349],[126,-35,64,-0.5548058114945889],[126,-35,65,-0.5570825934410095],[126,-35,66,-0.5576100312173367],[126,-35,67,-0.556856956332922],[126,-35,68,-0.5559045523405075],[126,-35,69,-0.5556793101131916],[126,-35,70,-0.5560845471918583],[126,-35,71,-0.5570640936493874],[126,-35,72,-0.5593903511762619],[126,-35,73,-0.5623086504638195],[126,-35,74,-0.564282551407814],[126,-35,75,-0.5644748508930206],[126,-35,76,-0.5623977892100811],[126,-35,77,-0.5580761544406414],[126,-35,78,-0.5526385642588139],[126,-35,79,-0.5470151044428349],[126,-34,64,-0.5548058114945889],[126,-34,65,-0.5570825934410095],[126,-34,66,-0.5576100312173367],[126,-34,67,-0.556856956332922],[126,-34,68,-0.5559045523405075],[126,-34,69,-0.5556793101131916],[126,-34,70,-0.5560845471918583],[126,-34,71,-0.5570640936493874],[126,-34,72,-0.5593903511762619],[126,-34,73,-0.5623086504638195],[126,-34,74,-0.564282551407814],[126,-34,75,-0.5644748508930206],[126,-34,76,-0.5623977892100811],[126,-34,77,-0.5580761544406414],[126,-34,78,-0.5526385642588139],[126,-34,79,-0.5470151044428349],[126,-33,64,-0.5548058114945889],[126,-33,65,-0.5570825934410095],[126,-33,66,-0.5576100312173367],[126,-33,67,-0.556856956332922],[126,-33,68,-0.5559045523405075],[126,-33,69,-0.5556793101131916],[126,-33,70,-0.5560845471918583],[126,-33,71,-0.5570640936493874],[126,-33,72,-0.5593903511762619],[126,-33,73,-0.5623086504638195],[126,-33,74,-0.564282551407814],[126,-33,75,-0.5644748508930206],[126,-33,76,-0.5623977892100811],[126,-33,77,-0.5580761544406414],[126,-33,78,-0.5526385642588139],[126,-33,79,-0.5470151044428349],[126,-32,64,-0.5548058114945889],[126,-32,65,-0.5570825934410095],[126,-32,66,-0.5576100312173367],[126,-32,67,-0.556856956332922],[126,-32,68,-0.5559045523405075],[126,-32,69,-0.5556793101131916],[126,-32,70,-0.5560845471918583],[126,-32,71,-0.5570640936493874],[126,-32,72,-0.5593903511762619],[126,-32,73,-0.5623086504638195],[126,-32,74,-0.564282551407814],[126,-32,75,-0.5644748508930206],[126,-32,76,-0.5623977892100811],[126,-32,77,-0.5580761544406414],[126,-32,78,-0.5526385642588139],[126,-32,79,-0.5470151044428349],[126,-31,64,-0.5548058114945889],[126,-31,65,-0.5570825934410095],[126,-31,66,-0.5576100312173367],[126,-31,67,-0.556856956332922],[126,-31,68,-0.5559045523405075],[126,-31,69,-0.5556793101131916],[126,-31,70,-0.5560845471918583],[126,-31,71,-0.5570640936493874],[126,-31,72,-0.5593903511762619],[126,-31,73,-0.5623086504638195],[126,-31,74,-0.564282551407814],[126,-31,75,-0.5644748508930206],[126,-31,76,-0.5623977892100811],[126,-31,77,-0.5580761544406414],[126,-31,78,-0.5526385642588139],[126,-31,79,-0.5470151044428349],[126,-30,64,-0.5548058114945889],[126,-30,65,-0.5570825934410095],[126,-30,66,-0.5576100312173367],[126,-30,67,-0.556856956332922],[126,-30,68,-0.5559045523405075],[126,-30,69,-0.5556793101131916],[126,-30,70,-0.5560845471918583],[126,-30,71,-0.5570640936493874],[126,-30,72,-0.5593903511762619],[126,-30,73,-0.5623086504638195],[126,-30,74,-0.564282551407814],[126,-30,75,-0.5644748508930206],[126,-30,76,-0.5623977892100811],[126,-30,77,-0.5580761544406414],[126,-30,78,-0.5526385642588139],[126,-30,79,-0.5470151044428349],[126,-29,64,-0.5548058114945889],[126,-29,65,-0.5570825934410095],[126,-29,66,-0.5576100312173367],[126,-29,67,-0.556856956332922],[126,-29,68,-0.5559045523405075],[126,-29,69,-0.5556793101131916],[126,-29,70,-0.5560845471918583],[126,-29,71,-0.5570640936493874],[126,-29,72,-0.5593903511762619],[126,-29,73,-0.5623086504638195],[126,-29,74,-0.564282551407814],[126,-29,75,-0.5644748508930206],[126,-29,76,-0.5623977892100811],[126,-29,77,-0.5580761544406414],[126,-29,78,-0.5526385642588139],[126,-29,79,-0.5470151044428349],[126,-28,64,-0.5548058114945889],[126,-28,65,-0.5570825934410095],[126,-28,66,-0.5576100312173367],[126,-28,67,-0.556856956332922],[126,-28,68,-0.5559045523405075],[126,-28,69,-0.5556793101131916],[126,-28,70,-0.5560845471918583],[126,-28,71,-0.5570640936493874],[126,-28,72,-0.5593903511762619],[126,-28,73,-0.5623086504638195],[126,-28,74,-0.564282551407814],[126,-28,75,-0.5644748508930206],[126,-28,76,-0.5623977892100811],[126,-28,77,-0.5580761544406414],[126,-28,78,-0.5526385642588139],[126,-28,79,-0.5470151044428349],[126,-27,64,-0.5548058114945889],[126,-27,65,-0.5570825934410095],[126,-27,66,-0.5576100312173367],[126,-27,67,-0.556856956332922],[126,-27,68,-0.5559045523405075],[126,-27,69,-0.5556793101131916],[126,-27,70,-0.5560845471918583],[126,-27,71,-0.5570640936493874],[126,-27,72,-0.5593903511762619],[126,-27,73,-0.5623086504638195],[126,-27,74,-0.564282551407814],[126,-27,75,-0.5644748508930206],[126,-27,76,-0.5623977892100811],[126,-27,77,-0.5580761544406414],[126,-27,78,-0.5526385642588139],[126,-27,79,-0.5470151044428349],[126,-26,64,-0.5548058114945889],[126,-26,65,-0.5570825934410095],[126,-26,66,-0.5576100312173367],[126,-26,67,-0.556856956332922],[126,-26,68,-0.5559045523405075],[126,-26,69,-0.5556793101131916],[126,-26,70,-0.5560845471918583],[126,-26,71,-0.5570640936493874],[126,-26,72,-0.5593903511762619],[126,-26,73,-0.5623086504638195],[126,-26,74,-0.564282551407814],[126,-26,75,-0.5644748508930206],[126,-26,76,-0.5623977892100811],[126,-26,77,-0.5580761544406414],[126,-26,78,-0.5526385642588139],[126,-26,79,-0.5470151044428349],[126,-25,64,-0.5548058114945889],[126,-25,65,-0.5570825934410095],[126,-25,66,-0.5576100312173367],[126,-25,67,-0.556856956332922],[126,-25,68,-0.5559045523405075],[126,-25,69,-0.5556793101131916],[126,-25,70,-0.5560845471918583],[126,-25,71,-0.5570640936493874],[126,-25,72,-0.5593903511762619],[126,-25,73,-0.5623086504638195],[126,-25,74,-0.564282551407814],[126,-25,75,-0.5644748508930206],[126,-25,76,-0.5623977892100811],[126,-25,77,-0.5580761544406414],[126,-25,78,-0.5526385642588139],[126,-25,79,-0.5470151044428349],[126,-24,64,-0.5548058114945889],[126,-24,65,-0.5570825934410095],[126,-24,66,-0.5576100312173367],[126,-24,67,-0.556856956332922],[126,-24,68,-0.5559045523405075],[126,-24,69,-0.5556793101131916],[126,-24,70,-0.5560845471918583],[126,-24,71,-0.5570640936493874],[126,-24,72,-0.5593903511762619],[126,-24,73,-0.5623086504638195],[126,-24,74,-0.564282551407814],[126,-24,75,-0.5644748508930206],[126,-24,76,-0.5623977892100811],[126,-24,77,-0.5580761544406414],[126,-24,78,-0.5526385642588139],[126,-24,79,-0.5470151044428349],[126,-23,64,-0.5548058114945889],[126,-23,65,-0.5570825934410095],[126,-23,66,-0.5576100312173367],[126,-23,67,-0.556856956332922],[126,-23,68,-0.5559045523405075],[126,-23,69,-0.5556793101131916],[126,-23,70,-0.5560845471918583],[126,-23,71,-0.5570640936493874],[126,-23,72,-0.5593903511762619],[126,-23,73,-0.5623086504638195],[126,-23,74,-0.564282551407814],[126,-23,75,-0.5644748508930206],[126,-23,76,-0.5623977892100811],[126,-23,77,-0.5580761544406414],[126,-23,78,-0.5526385642588139],[126,-23,79,-0.5470151044428349],[126,-22,64,-0.5548058114945889],[126,-22,65,-0.5570825934410095],[126,-22,66,-0.5576100312173367],[126,-22,67,-0.556856956332922],[126,-22,68,-0.5559045523405075],[126,-22,69,-0.5556793101131916],[126,-22,70,-0.5560845471918583],[126,-22,71,-0.5570640936493874],[126,-22,72,-0.5593903511762619],[126,-22,73,-0.5623086504638195],[126,-22,74,-0.564282551407814],[126,-22,75,-0.5644748508930206],[126,-22,76,-0.5623977892100811],[126,-22,77,-0.5580761544406414],[126,-22,78,-0.5526385642588139],[126,-22,79,-0.5470151044428349],[126,-21,64,-0.5548058114945889],[126,-21,65,-0.5570825934410095],[126,-21,66,-0.5576100312173367],[126,-21,67,-0.556856956332922],[126,-21,68,-0.5559045523405075],[126,-21,69,-0.5556793101131916],[126,-21,70,-0.5560845471918583],[126,-21,71,-0.5570640936493874],[126,-21,72,-0.5593903511762619],[126,-21,73,-0.5623086504638195],[126,-21,74,-0.564282551407814],[126,-21,75,-0.5644748508930206],[126,-21,76,-0.5623977892100811],[126,-21,77,-0.5580761544406414],[126,-21,78,-0.5526385642588139],[126,-21,79,-0.5470151044428349],[126,-20,64,-0.5548058114945889],[126,-20,65,-0.5570825934410095],[126,-20,66,-0.5576100312173367],[126,-20,67,-0.556856956332922],[126,-20,68,-0.5559045523405075],[126,-20,69,-0.5556793101131916],[126,-20,70,-0.5560845471918583],[126,-20,71,-0.5570640936493874],[126,-20,72,-0.5593903511762619],[126,-20,73,-0.5623086504638195],[126,-20,74,-0.564282551407814],[126,-20,75,-0.5644748508930206],[126,-20,76,-0.5623977892100811],[126,-20,77,-0.5580761544406414],[126,-20,78,-0.5526385642588139],[126,-20,79,-0.5470151044428349],[126,-19,64,-0.5548058114945889],[126,-19,65,-0.5570825934410095],[126,-19,66,-0.5576100312173367],[126,-19,67,-0.556856956332922],[126,-19,68,-0.5559045523405075],[126,-19,69,-0.5556793101131916],[126,-19,70,-0.5560845471918583],[126,-19,71,-0.5570640936493874],[126,-19,72,-0.5593903511762619],[126,-19,73,-0.5623086504638195],[126,-19,74,-0.564282551407814],[126,-19,75,-0.5644748508930206],[126,-19,76,-0.5623977892100811],[126,-19,77,-0.5580761544406414],[126,-19,78,-0.5526385642588139],[126,-19,79,-0.5470151044428349],[126,-18,64,-0.5548058114945889],[126,-18,65,-0.5570825934410095],[126,-18,66,-0.5576100312173367],[126,-18,67,-0.556856956332922],[126,-18,68,-0.5559045523405075],[126,-18,69,-0.5556793101131916],[126,-18,70,-0.5560845471918583],[126,-18,71,-0.5570640936493874],[126,-18,72,-0.5593903511762619],[126,-18,73,-0.5623086504638195],[126,-18,74,-0.564282551407814],[126,-18,75,-0.5644748508930206],[126,-18,76,-0.5623977892100811],[126,-18,77,-0.5580761544406414],[126,-18,78,-0.5526385642588139],[126,-18,79,-0.5470151044428349],[126,-17,64,-0.5548058114945889],[126,-17,65,-0.5570825934410095],[126,-17,66,-0.5576100312173367],[126,-17,67,-0.556856956332922],[126,-17,68,-0.5559045523405075],[126,-17,69,-0.5556793101131916],[126,-17,70,-0.5560845471918583],[126,-17,71,-0.5570640936493874],[126,-17,72,-0.5593903511762619],[126,-17,73,-0.5623086504638195],[126,-17,74,-0.564282551407814],[126,-17,75,-0.5644748508930206],[126,-17,76,-0.5623977892100811],[126,-17,77,-0.5580761544406414],[126,-17,78,-0.5526385642588139],[126,-17,79,-0.5470151044428349],[126,-16,64,-0.5548058114945889],[126,-16,65,-0.5570825934410095],[126,-16,66,-0.5576100312173367],[126,-16,67,-0.556856956332922],[126,-16,68,-0.5559045523405075],[126,-16,69,-0.5556793101131916],[126,-16,70,-0.5560845471918583],[126,-16,71,-0.5570640936493874],[126,-16,72,-0.5593903511762619],[126,-16,73,-0.5623086504638195],[126,-16,74,-0.564282551407814],[126,-16,75,-0.5644748508930206],[126,-16,76,-0.5623977892100811],[126,-16,77,-0.5580761544406414],[126,-16,78,-0.5526385642588139],[126,-16,79,-0.5470151044428349],[126,-15,64,-0.5548058114945889],[126,-15,65,-0.5570825934410095],[126,-15,66,-0.5576100312173367],[126,-15,67,-0.556856956332922],[126,-15,68,-0.5559045523405075],[126,-15,69,-0.5556793101131916],[126,-15,70,-0.5560845471918583],[126,-15,71,-0.5570640936493874],[126,-15,72,-0.5593903511762619],[126,-15,73,-0.5623086504638195],[126,-15,74,-0.564282551407814],[126,-15,75,-0.5644748508930206],[126,-15,76,-0.5623977892100811],[126,-15,77,-0.5580761544406414],[126,-15,78,-0.5526385642588139],[126,-15,79,-0.5470151044428349],[126,-14,64,-0.5548058114945889],[126,-14,65,-0.5570825934410095],[126,-14,66,-0.5576100312173367],[126,-14,67,-0.556856956332922],[126,-14,68,-0.5559045523405075],[126,-14,69,-0.5556793101131916],[126,-14,70,-0.5560845471918583],[126,-14,71,-0.5570640936493874],[126,-14,72,-0.5593903511762619],[126,-14,73,-0.5623086504638195],[126,-14,74,-0.564282551407814],[126,-14,75,-0.5644748508930206],[126,-14,76,-0.5623977892100811],[126,-14,77,-0.5580761544406414],[126,-14,78,-0.5526385642588139],[126,-14,79,-0.5470151044428349],[126,-13,64,-0.5548058114945889],[126,-13,65,-0.5570825934410095],[126,-13,66,-0.5576100312173367],[126,-13,67,-0.556856956332922],[126,-13,68,-0.5559045523405075],[126,-13,69,-0.5556793101131916],[126,-13,70,-0.5560845471918583],[126,-13,71,-0.5570640936493874],[126,-13,72,-0.5593903511762619],[126,-13,73,-0.5623086504638195],[126,-13,74,-0.564282551407814],[126,-13,75,-0.5644748508930206],[126,-13,76,-0.5623977892100811],[126,-13,77,-0.5580761544406414],[126,-13,78,-0.5526385642588139],[126,-13,79,-0.5470151044428349],[126,-12,64,-0.5548058114945889],[126,-12,65,-0.5570825934410095],[126,-12,66,-0.5576100312173367],[126,-12,67,-0.556856956332922],[126,-12,68,-0.5559045523405075],[126,-12,69,-0.5556793101131916],[126,-12,70,-0.5560845471918583],[126,-12,71,-0.5570640936493874],[126,-12,72,-0.5593903511762619],[126,-12,73,-0.5623086504638195],[126,-12,74,-0.564282551407814],[126,-12,75,-0.5644748508930206],[126,-12,76,-0.5623977892100811],[126,-12,77,-0.5580761544406414],[126,-12,78,-0.5526385642588139],[126,-12,79,-0.5470151044428349],[126,-11,64,-0.5548058114945889],[126,-11,65,-0.5570825934410095],[126,-11,66,-0.5576100312173367],[126,-11,67,-0.556856956332922],[126,-11,68,-0.5559045523405075],[126,-11,69,-0.5556793101131916],[126,-11,70,-0.5560845471918583],[126,-11,71,-0.5570640936493874],[126,-11,72,-0.5593903511762619],[126,-11,73,-0.5623086504638195],[126,-11,74,-0.564282551407814],[126,-11,75,-0.5644748508930206],[126,-11,76,-0.5623977892100811],[126,-11,77,-0.5580761544406414],[126,-11,78,-0.5526385642588139],[126,-11,79,-0.5470151044428349],[126,-10,64,-0.5548058114945889],[126,-10,65,-0.5570825934410095],[126,-10,66,-0.5576100312173367],[126,-10,67,-0.556856956332922],[126,-10,68,-0.5559045523405075],[126,-10,69,-0.5556793101131916],[126,-10,70,-0.5560845471918583],[126,-10,71,-0.5570640936493874],[126,-10,72,-0.5593903511762619],[126,-10,73,-0.5623086504638195],[126,-10,74,-0.564282551407814],[126,-10,75,-0.5644748508930206],[126,-10,76,-0.5623977892100811],[126,-10,77,-0.5580761544406414],[126,-10,78,-0.5526385642588139],[126,-10,79,-0.5470151044428349],[126,-9,64,-0.5548058114945889],[126,-9,65,-0.5570825934410095],[126,-9,66,-0.5576100312173367],[126,-9,67,-0.556856956332922],[126,-9,68,-0.5559045523405075],[126,-9,69,-0.5556793101131916],[126,-9,70,-0.5560845471918583],[126,-9,71,-0.5570640936493874],[126,-9,72,-0.5593903511762619],[126,-9,73,-0.5623086504638195],[126,-9,74,-0.564282551407814],[126,-9,75,-0.5644748508930206],[126,-9,76,-0.5623977892100811],[126,-9,77,-0.5580761544406414],[126,-9,78,-0.5526385642588139],[126,-9,79,-0.5470151044428349],[126,-8,64,-0.5548058114945889],[126,-8,65,-0.5570825934410095],[126,-8,66,-0.5576100312173367],[126,-8,67,-0.556856956332922],[126,-8,68,-0.5559045523405075],[126,-8,69,-0.5556793101131916],[126,-8,70,-0.5560845471918583],[126,-8,71,-0.5570640936493874],[126,-8,72,-0.5593903511762619],[126,-8,73,-0.5623086504638195],[126,-8,74,-0.564282551407814],[126,-8,75,-0.5644748508930206],[126,-8,76,-0.5623977892100811],[126,-8,77,-0.5580761544406414],[126,-8,78,-0.5526385642588139],[126,-8,79,-0.5470151044428349],[126,-7,64,-0.5548058114945889],[126,-7,65,-0.5570825934410095],[126,-7,66,-0.5576100312173367],[126,-7,67,-0.556856956332922],[126,-7,68,-0.5559045523405075],[126,-7,69,-0.5556793101131916],[126,-7,70,-0.5560845471918583],[126,-7,71,-0.5570640936493874],[126,-7,72,-0.5593903511762619],[126,-7,73,-0.5623086504638195],[126,-7,74,-0.564282551407814],[126,-7,75,-0.5644748508930206],[126,-7,76,-0.5623977892100811],[126,-7,77,-0.5580761544406414],[126,-7,78,-0.5526385642588139],[126,-7,79,-0.5470151044428349],[126,-6,64,-0.5548058114945889],[126,-6,65,-0.5570825934410095],[126,-6,66,-0.5576100312173367],[126,-6,67,-0.556856956332922],[126,-6,68,-0.5559045523405075],[126,-6,69,-0.5556793101131916],[126,-6,70,-0.5560845471918583],[126,-6,71,-0.5570640936493874],[126,-6,72,-0.5593903511762619],[126,-6,73,-0.5623086504638195],[126,-6,74,-0.564282551407814],[126,-6,75,-0.5644748508930206],[126,-6,76,-0.5623977892100811],[126,-6,77,-0.5580761544406414],[126,-6,78,-0.5526385642588139],[126,-6,79,-0.5470151044428349],[126,-5,64,-0.5548058114945889],[126,-5,65,-0.5570825934410095],[126,-5,66,-0.5576100312173367],[126,-5,67,-0.556856956332922],[126,-5,68,-0.5559045523405075],[126,-5,69,-0.5556793101131916],[126,-5,70,-0.5560845471918583],[126,-5,71,-0.5570640936493874],[126,-5,72,-0.5593903511762619],[126,-5,73,-0.5623086504638195],[126,-5,74,-0.564282551407814],[126,-5,75,-0.5644748508930206],[126,-5,76,-0.5623977892100811],[126,-5,77,-0.5580761544406414],[126,-5,78,-0.5526385642588139],[126,-5,79,-0.5470151044428349],[126,-4,64,-0.5548058114945889],[126,-4,65,-0.5570825934410095],[126,-4,66,-0.5576100312173367],[126,-4,67,-0.556856956332922],[126,-4,68,-0.5559045523405075],[126,-4,69,-0.5556793101131916],[126,-4,70,-0.5560845471918583],[126,-4,71,-0.5570640936493874],[126,-4,72,-0.5593903511762619],[126,-4,73,-0.5623086504638195],[126,-4,74,-0.564282551407814],[126,-4,75,-0.5644748508930206],[126,-4,76,-0.5623977892100811],[126,-4,77,-0.5580761544406414],[126,-4,78,-0.5526385642588139],[126,-4,79,-0.5470151044428349],[126,-3,64,-0.5548058114945889],[126,-3,65,-0.5570825934410095],[126,-3,66,-0.5576100312173367],[126,-3,67,-0.556856956332922],[126,-3,68,-0.5559045523405075],[126,-3,69,-0.5556793101131916],[126,-3,70,-0.5560845471918583],[126,-3,71,-0.5570640936493874],[126,-3,72,-0.5593903511762619],[126,-3,73,-0.5623086504638195],[126,-3,74,-0.564282551407814],[126,-3,75,-0.5644748508930206],[126,-3,76,-0.5623977892100811],[126,-3,77,-0.5580761544406414],[126,-3,78,-0.5526385642588139],[126,-3,79,-0.5470151044428349],[126,-2,64,-0.5548058114945889],[126,-2,65,-0.5570825934410095],[126,-2,66,-0.5576100312173367],[126,-2,67,-0.556856956332922],[126,-2,68,-0.5559045523405075],[126,-2,69,-0.5556793101131916],[126,-2,70,-0.5560845471918583],[126,-2,71,-0.5570640936493874],[126,-2,72,-0.5593903511762619],[126,-2,73,-0.5623086504638195],[126,-2,74,-0.564282551407814],[126,-2,75,-0.5644748508930206],[126,-2,76,-0.5623977892100811],[126,-2,77,-0.5580761544406414],[126,-2,78,-0.5526385642588139],[126,-2,79,-0.5470151044428349],[126,-1,64,-0.5548058114945889],[126,-1,65,-0.5570825934410095],[126,-1,66,-0.5576100312173367],[126,-1,67,-0.556856956332922],[126,-1,68,-0.5559045523405075],[126,-1,69,-0.5556793101131916],[126,-1,70,-0.5560845471918583],[126,-1,71,-0.5570640936493874],[126,-1,72,-0.5593903511762619],[126,-1,73,-0.5623086504638195],[126,-1,74,-0.564282551407814],[126,-1,75,-0.5644748508930206],[126,-1,76,-0.5623977892100811],[126,-1,77,-0.5580761544406414],[126,-1,78,-0.5526385642588139],[126,-1,79,-0.5470151044428349],[126,0,64,-0.5548058114945889],[126,0,65,-0.5570825934410095],[126,0,66,-0.5576100312173367],[126,0,67,-0.556856956332922],[126,0,68,-0.5559045523405075],[126,0,69,-0.5556793101131916],[126,0,70,-0.5560845471918583],[126,0,71,-0.5570640936493874],[126,0,72,-0.5593903511762619],[126,0,73,-0.5623086504638195],[126,0,74,-0.564282551407814],[126,0,75,-0.5644748508930206],[126,0,76,-0.5623977892100811],[126,0,77,-0.5580761544406414],[126,0,78,-0.5526385642588139],[126,0,79,-0.5470151044428349],[126,1,64,-0.5548058114945889],[126,1,65,-0.5570825934410095],[126,1,66,-0.5576100312173367],[126,1,67,-0.556856956332922],[126,1,68,-0.5559045523405075],[126,1,69,-0.5556793101131916],[126,1,70,-0.5560845471918583],[126,1,71,-0.5570640936493874],[126,1,72,-0.5593903511762619],[126,1,73,-0.5623086504638195],[126,1,74,-0.564282551407814],[126,1,75,-0.5644748508930206],[126,1,76,-0.5623977892100811],[126,1,77,-0.5580761544406414],[126,1,78,-0.5526385642588139],[126,1,79,-0.5470151044428349],[126,2,64,-0.5548058114945889],[126,2,65,-0.5570825934410095],[126,2,66,-0.5576100312173367],[126,2,67,-0.556856956332922],[126,2,68,-0.5559045523405075],[126,2,69,-0.5556793101131916],[126,2,70,-0.5560845471918583],[126,2,71,-0.5570640936493874],[126,2,72,-0.5593903511762619],[126,2,73,-0.5623086504638195],[126,2,74,-0.564282551407814],[126,2,75,-0.5644748508930206],[126,2,76,-0.5623977892100811],[126,2,77,-0.5580761544406414],[126,2,78,-0.5526385642588139],[126,2,79,-0.5470151044428349],[126,3,64,-0.5548058114945889],[126,3,65,-0.5570825934410095],[126,3,66,-0.5576100312173367],[126,3,67,-0.556856956332922],[126,3,68,-0.5559045523405075],[126,3,69,-0.5556793101131916],[126,3,70,-0.5560845471918583],[126,3,71,-0.5570640936493874],[126,3,72,-0.5593903511762619],[126,3,73,-0.5623086504638195],[126,3,74,-0.564282551407814],[126,3,75,-0.5644748508930206],[126,3,76,-0.5623977892100811],[126,3,77,-0.5580761544406414],[126,3,78,-0.5526385642588139],[126,3,79,-0.5470151044428349],[126,4,64,-0.5548058114945889],[126,4,65,-0.5570825934410095],[126,4,66,-0.5576100312173367],[126,4,67,-0.556856956332922],[126,4,68,-0.5559045523405075],[126,4,69,-0.5556793101131916],[126,4,70,-0.5560845471918583],[126,4,71,-0.5570640936493874],[126,4,72,-0.5593903511762619],[126,4,73,-0.5623086504638195],[126,4,74,-0.564282551407814],[126,4,75,-0.5644748508930206],[126,4,76,-0.5623977892100811],[126,4,77,-0.5580761544406414],[126,4,78,-0.5526385642588139],[126,4,79,-0.5470151044428349],[126,5,64,-0.5548058114945889],[126,5,65,-0.5570825934410095],[126,5,66,-0.5576100312173367],[126,5,67,-0.556856956332922],[126,5,68,-0.5559045523405075],[126,5,69,-0.5556793101131916],[126,5,70,-0.5560845471918583],[126,5,71,-0.5570640936493874],[126,5,72,-0.5593903511762619],[126,5,73,-0.5623086504638195],[126,5,74,-0.564282551407814],[126,5,75,-0.5644748508930206],[126,5,76,-0.5623977892100811],[126,5,77,-0.5580761544406414],[126,5,78,-0.5526385642588139],[126,5,79,-0.5470151044428349],[126,6,64,-0.5548058114945889],[126,6,65,-0.5570825934410095],[126,6,66,-0.5576100312173367],[126,6,67,-0.556856956332922],[126,6,68,-0.5559045523405075],[126,6,69,-0.5556793101131916],[126,6,70,-0.5560845471918583],[126,6,71,-0.5570640936493874],[126,6,72,-0.5593903511762619],[126,6,73,-0.5623086504638195],[126,6,74,-0.564282551407814],[126,6,75,-0.5644748508930206],[126,6,76,-0.5623977892100811],[126,6,77,-0.5580761544406414],[126,6,78,-0.5526385642588139],[126,6,79,-0.5470151044428349],[126,7,64,-0.5548058114945889],[126,7,65,-0.5570825934410095],[126,7,66,-0.5576100312173367],[126,7,67,-0.556856956332922],[126,7,68,-0.5559045523405075],[126,7,69,-0.5556793101131916],[126,7,70,-0.5560845471918583],[126,7,71,-0.5570640936493874],[126,7,72,-0.5593903511762619],[126,7,73,-0.5623086504638195],[126,7,74,-0.564282551407814],[126,7,75,-0.5644748508930206],[126,7,76,-0.5623977892100811],[126,7,77,-0.5580761544406414],[126,7,78,-0.5526385642588139],[126,7,79,-0.5470151044428349],[126,8,64,-0.5548058114945889],[126,8,65,-0.5570825934410095],[126,8,66,-0.5576100312173367],[126,8,67,-0.556856956332922],[126,8,68,-0.5559045523405075],[126,8,69,-0.5556793101131916],[126,8,70,-0.5560845471918583],[126,8,71,-0.5570640936493874],[126,8,72,-0.5593903511762619],[126,8,73,-0.5623086504638195],[126,8,74,-0.564282551407814],[126,8,75,-0.5644748508930206],[126,8,76,-0.5623977892100811],[126,8,77,-0.5580761544406414],[126,8,78,-0.5526385642588139],[126,8,79,-0.5470151044428349],[126,9,64,-0.5548058114945889],[126,9,65,-0.5570825934410095],[126,9,66,-0.5576100312173367],[126,9,67,-0.556856956332922],[126,9,68,-0.5559045523405075],[126,9,69,-0.5556793101131916],[126,9,70,-0.5560845471918583],[126,9,71,-0.5570640936493874],[126,9,72,-0.5593903511762619],[126,9,73,-0.5623086504638195],[126,9,74,-0.564282551407814],[126,9,75,-0.5644748508930206],[126,9,76,-0.5623977892100811],[126,9,77,-0.5580761544406414],[126,9,78,-0.5526385642588139],[126,9,79,-0.5470151044428349],[126,10,64,-0.5548058114945889],[126,10,65,-0.5570825934410095],[126,10,66,-0.5576100312173367],[126,10,67,-0.556856956332922],[126,10,68,-0.5559045523405075],[126,10,69,-0.5556793101131916],[126,10,70,-0.5560845471918583],[126,10,71,-0.5570640936493874],[126,10,72,-0.5593903511762619],[126,10,73,-0.5623086504638195],[126,10,74,-0.564282551407814],[126,10,75,-0.5644748508930206],[126,10,76,-0.5623977892100811],[126,10,77,-0.5580761544406414],[126,10,78,-0.5526385642588139],[126,10,79,-0.5470151044428349],[126,11,64,-0.5548058114945889],[126,11,65,-0.5570825934410095],[126,11,66,-0.5576100312173367],[126,11,67,-0.556856956332922],[126,11,68,-0.5559045523405075],[126,11,69,-0.5556793101131916],[126,11,70,-0.5560845471918583],[126,11,71,-0.5570640936493874],[126,11,72,-0.5593903511762619],[126,11,73,-0.5623086504638195],[126,11,74,-0.564282551407814],[126,11,75,-0.5644748508930206],[126,11,76,-0.5623977892100811],[126,11,77,-0.5580761544406414],[126,11,78,-0.5526385642588139],[126,11,79,-0.5470151044428349],[126,12,64,-0.5548058114945889],[126,12,65,-0.5570825934410095],[126,12,66,-0.5576100312173367],[126,12,67,-0.556856956332922],[126,12,68,-0.5559045523405075],[126,12,69,-0.5556793101131916],[126,12,70,-0.5560845471918583],[126,12,71,-0.5570640936493874],[126,12,72,-0.5593903511762619],[126,12,73,-0.5623086504638195],[126,12,74,-0.564282551407814],[126,12,75,-0.5644748508930206],[126,12,76,-0.5623977892100811],[126,12,77,-0.5580761544406414],[126,12,78,-0.5526385642588139],[126,12,79,-0.5470151044428349],[126,13,64,-0.5548058114945889],[126,13,65,-0.5570825934410095],[126,13,66,-0.5576100312173367],[126,13,67,-0.556856956332922],[126,13,68,-0.5559045523405075],[126,13,69,-0.5556793101131916],[126,13,70,-0.5560845471918583],[126,13,71,-0.5570640936493874],[126,13,72,-0.5593903511762619],[126,13,73,-0.5623086504638195],[126,13,74,-0.564282551407814],[126,13,75,-0.5644748508930206],[126,13,76,-0.5623977892100811],[126,13,77,-0.5580761544406414],[126,13,78,-0.5526385642588139],[126,13,79,-0.5470151044428349],[126,14,64,-0.5548058114945889],[126,14,65,-0.5570825934410095],[126,14,66,-0.5576100312173367],[126,14,67,-0.556856956332922],[126,14,68,-0.5559045523405075],[126,14,69,-0.5556793101131916],[126,14,70,-0.5560845471918583],[126,14,71,-0.5570640936493874],[126,14,72,-0.5593903511762619],[126,14,73,-0.5623086504638195],[126,14,74,-0.564282551407814],[126,14,75,-0.5644748508930206],[126,14,76,-0.5623977892100811],[126,14,77,-0.5580761544406414],[126,14,78,-0.5526385642588139],[126,14,79,-0.5470151044428349],[126,15,64,-0.5548058114945889],[126,15,65,-0.5570825934410095],[126,15,66,-0.5576100312173367],[126,15,67,-0.556856956332922],[126,15,68,-0.5559045523405075],[126,15,69,-0.5556793101131916],[126,15,70,-0.5560845471918583],[126,15,71,-0.5570640936493874],[126,15,72,-0.5593903511762619],[126,15,73,-0.5623086504638195],[126,15,74,-0.564282551407814],[126,15,75,-0.5644748508930206],[126,15,76,-0.5623977892100811],[126,15,77,-0.5580761544406414],[126,15,78,-0.5526385642588139],[126,15,79,-0.5470151044428349],[126,16,64,-0.5548058114945889],[126,16,65,-0.5570825934410095],[126,16,66,-0.5576100312173367],[126,16,67,-0.556856956332922],[126,16,68,-0.5559045523405075],[126,16,69,-0.5556793101131916],[126,16,70,-0.5560845471918583],[126,16,71,-0.5570640936493874],[126,16,72,-0.5593903511762619],[126,16,73,-0.5623086504638195],[126,16,74,-0.564282551407814],[126,16,75,-0.5644748508930206],[126,16,76,-0.5623977892100811],[126,16,77,-0.5580761544406414],[126,16,78,-0.5526385642588139],[126,16,79,-0.5470151044428349],[126,17,64,-0.5548058114945889],[126,17,65,-0.5570825934410095],[126,17,66,-0.5576100312173367],[126,17,67,-0.556856956332922],[126,17,68,-0.5559045523405075],[126,17,69,-0.5556793101131916],[126,17,70,-0.5560845471918583],[126,17,71,-0.5570640936493874],[126,17,72,-0.5593903511762619],[126,17,73,-0.5623086504638195],[126,17,74,-0.564282551407814],[126,17,75,-0.5644748508930206],[126,17,76,-0.5623977892100811],[126,17,77,-0.5580761544406414],[126,17,78,-0.5526385642588139],[126,17,79,-0.5470151044428349],[126,18,64,-0.5548058114945889],[126,18,65,-0.5570825934410095],[126,18,66,-0.5576100312173367],[126,18,67,-0.556856956332922],[126,18,68,-0.5559045523405075],[126,18,69,-0.5556793101131916],[126,18,70,-0.5560845471918583],[126,18,71,-0.5570640936493874],[126,18,72,-0.5593903511762619],[126,18,73,-0.5623086504638195],[126,18,74,-0.564282551407814],[126,18,75,-0.5644748508930206],[126,18,76,-0.5623977892100811],[126,18,77,-0.5580761544406414],[126,18,78,-0.5526385642588139],[126,18,79,-0.5470151044428349],[126,19,64,-0.5548058114945889],[126,19,65,-0.5570825934410095],[126,19,66,-0.5576100312173367],[126,19,67,-0.556856956332922],[126,19,68,-0.5559045523405075],[126,19,69,-0.5556793101131916],[126,19,70,-0.5560845471918583],[126,19,71,-0.5570640936493874],[126,19,72,-0.5593903511762619],[126,19,73,-0.5623086504638195],[126,19,74,-0.564282551407814],[126,19,75,-0.5644748508930206],[126,19,76,-0.5623977892100811],[126,19,77,-0.5580761544406414],[126,19,78,-0.5526385642588139],[126,19,79,-0.5470151044428349],[126,20,64,-0.5548058114945889],[126,20,65,-0.5570825934410095],[126,20,66,-0.5576100312173367],[126,20,67,-0.556856956332922],[126,20,68,-0.5559045523405075],[126,20,69,-0.5556793101131916],[126,20,70,-0.5560845471918583],[126,20,71,-0.5570640936493874],[126,20,72,-0.5593903511762619],[126,20,73,-0.5623086504638195],[126,20,74,-0.564282551407814],[126,20,75,-0.5644748508930206],[126,20,76,-0.5623977892100811],[126,20,77,-0.5580761544406414],[126,20,78,-0.5526385642588139],[126,20,79,-0.5470151044428349],[126,21,64,-0.5548058114945889],[126,21,65,-0.5570825934410095],[126,21,66,-0.5576100312173367],[126,21,67,-0.556856956332922],[126,21,68,-0.5559045523405075],[126,21,69,-0.5556793101131916],[126,21,70,-0.5560845471918583],[126,21,71,-0.5570640936493874],[126,21,72,-0.5593903511762619],[126,21,73,-0.5623086504638195],[126,21,74,-0.564282551407814],[126,21,75,-0.5644748508930206],[126,21,76,-0.5623977892100811],[126,21,77,-0.5580761544406414],[126,21,78,-0.5526385642588139],[126,21,79,-0.5470151044428349],[126,22,64,-0.5548058114945889],[126,22,65,-0.5570825934410095],[126,22,66,-0.5576100312173367],[126,22,67,-0.556856956332922],[126,22,68,-0.5559045523405075],[126,22,69,-0.5556793101131916],[126,22,70,-0.5560845471918583],[126,22,71,-0.5570640936493874],[126,22,72,-0.5593903511762619],[126,22,73,-0.5623086504638195],[126,22,74,-0.564282551407814],[126,22,75,-0.5644748508930206],[126,22,76,-0.5623977892100811],[126,22,77,-0.5580761544406414],[126,22,78,-0.5526385642588139],[126,22,79,-0.5470151044428349],[126,23,64,-0.5548058114945889],[126,23,65,-0.5570825934410095],[126,23,66,-0.5576100312173367],[126,23,67,-0.556856956332922],[126,23,68,-0.5559045523405075],[126,23,69,-0.5556793101131916],[126,23,70,-0.5560845471918583],[126,23,71,-0.5570640936493874],[126,23,72,-0.5593903511762619],[126,23,73,-0.5623086504638195],[126,23,74,-0.564282551407814],[126,23,75,-0.5644748508930206],[126,23,76,-0.5623977892100811],[126,23,77,-0.5580761544406414],[126,23,78,-0.5526385642588139],[126,23,79,-0.5470151044428349],[126,24,64,-0.5548058114945889],[126,24,65,-0.5570825934410095],[126,24,66,-0.5576100312173367],[126,24,67,-0.556856956332922],[126,24,68,-0.5559045523405075],[126,24,69,-0.5556793101131916],[126,24,70,-0.5560845471918583],[126,24,71,-0.5570640936493874],[126,24,72,-0.5593903511762619],[126,24,73,-0.5623086504638195],[126,24,74,-0.564282551407814],[126,24,75,-0.5644748508930206],[126,24,76,-0.5623977892100811],[126,24,77,-0.5580761544406414],[126,24,78,-0.5526385642588139],[126,24,79,-0.5470151044428349],[126,25,64,-0.5548058114945889],[126,25,65,-0.5570825934410095],[126,25,66,-0.5576100312173367],[126,25,67,-0.556856956332922],[126,25,68,-0.5559045523405075],[126,25,69,-0.5556793101131916],[126,25,70,-0.5560845471918583],[126,25,71,-0.5570640936493874],[126,25,72,-0.5593903511762619],[126,25,73,-0.5623086504638195],[126,25,74,-0.564282551407814],[126,25,75,-0.5644748508930206],[126,25,76,-0.5623977892100811],[126,25,77,-0.5580761544406414],[126,25,78,-0.5526385642588139],[126,25,79,-0.5470151044428349],[126,26,64,-0.5548058114945889],[126,26,65,-0.5570825934410095],[126,26,66,-0.5576100312173367],[126,26,67,-0.556856956332922],[126,26,68,-0.5559045523405075],[126,26,69,-0.5556793101131916],[126,26,70,-0.5560845471918583],[126,26,71,-0.5570640936493874],[126,26,72,-0.5593903511762619],[126,26,73,-0.5623086504638195],[126,26,74,-0.564282551407814],[126,26,75,-0.5644748508930206],[126,26,76,-0.5623977892100811],[126,26,77,-0.5580761544406414],[126,26,78,-0.5526385642588139],[126,26,79,-0.5470151044428349],[126,27,64,-0.5548058114945889],[126,27,65,-0.5570825934410095],[126,27,66,-0.5576100312173367],[126,27,67,-0.556856956332922],[126,27,68,-0.5559045523405075],[126,27,69,-0.5556793101131916],[126,27,70,-0.5560845471918583],[126,27,71,-0.5570640936493874],[126,27,72,-0.5593903511762619],[126,27,73,-0.5623086504638195],[126,27,74,-0.564282551407814],[126,27,75,-0.5644748508930206],[126,27,76,-0.5623977892100811],[126,27,77,-0.5580761544406414],[126,27,78,-0.5526385642588139],[126,27,79,-0.5470151044428349],[126,28,64,-0.5548058114945889],[126,28,65,-0.5570825934410095],[126,28,66,-0.5576100312173367],[126,28,67,-0.556856956332922],[126,28,68,-0.5559045523405075],[126,28,69,-0.5556793101131916],[126,28,70,-0.5560845471918583],[126,28,71,-0.5570640936493874],[126,28,72,-0.5593903511762619],[126,28,73,-0.5623086504638195],[126,28,74,-0.564282551407814],[126,28,75,-0.5644748508930206],[126,28,76,-0.5623977892100811],[126,28,77,-0.5580761544406414],[126,28,78,-0.5526385642588139],[126,28,79,-0.5470151044428349],[126,29,64,-0.5548058114945889],[126,29,65,-0.5570825934410095],[126,29,66,-0.5576100312173367],[126,29,67,-0.556856956332922],[126,29,68,-0.5559045523405075],[126,29,69,-0.5556793101131916],[126,29,70,-0.5560845471918583],[126,29,71,-0.5570640936493874],[126,29,72,-0.5593903511762619],[126,29,73,-0.5623086504638195],[126,29,74,-0.564282551407814],[126,29,75,-0.5644748508930206],[126,29,76,-0.5623977892100811],[126,29,77,-0.5580761544406414],[126,29,78,-0.5526385642588139],[126,29,79,-0.5470151044428349],[126,30,64,-0.5548058114945889],[126,30,65,-0.5570825934410095],[126,30,66,-0.5576100312173367],[126,30,67,-0.556856956332922],[126,30,68,-0.5559045523405075],[126,30,69,-0.5556793101131916],[126,30,70,-0.5560845471918583],[126,30,71,-0.5570640936493874],[126,30,72,-0.5593903511762619],[126,30,73,-0.5623086504638195],[126,30,74,-0.564282551407814],[126,30,75,-0.5644748508930206],[126,30,76,-0.5623977892100811],[126,30,77,-0.5580761544406414],[126,30,78,-0.5526385642588139],[126,30,79,-0.5470151044428349],[126,31,64,-0.5548058114945889],[126,31,65,-0.5570825934410095],[126,31,66,-0.5576100312173367],[126,31,67,-0.556856956332922],[126,31,68,-0.5559045523405075],[126,31,69,-0.5556793101131916],[126,31,70,-0.5560845471918583],[126,31,71,-0.5570640936493874],[126,31,72,-0.5593903511762619],[126,31,73,-0.5623086504638195],[126,31,74,-0.564282551407814],[126,31,75,-0.5644748508930206],[126,31,76,-0.5623977892100811],[126,31,77,-0.5580761544406414],[126,31,78,-0.5526385642588139],[126,31,79,-0.5470151044428349],[126,32,64,-0.5548058114945889],[126,32,65,-0.5570825934410095],[126,32,66,-0.5576100312173367],[126,32,67,-0.556856956332922],[126,32,68,-0.5559045523405075],[126,32,69,-0.5556793101131916],[126,32,70,-0.5560845471918583],[126,32,71,-0.5570640936493874],[126,32,72,-0.5593903511762619],[126,32,73,-0.5623086504638195],[126,32,74,-0.564282551407814],[126,32,75,-0.5644748508930206],[126,32,76,-0.5623977892100811],[126,32,77,-0.5580761544406414],[126,32,78,-0.5526385642588139],[126,32,79,-0.5470151044428349],[126,33,64,-0.5548058114945889],[126,33,65,-0.5570825934410095],[126,33,66,-0.5576100312173367],[126,33,67,-0.556856956332922],[126,33,68,-0.5559045523405075],[126,33,69,-0.5556793101131916],[126,33,70,-0.5560845471918583],[126,33,71,-0.5570640936493874],[126,33,72,-0.5593903511762619],[126,33,73,-0.5623086504638195],[126,33,74,-0.564282551407814],[126,33,75,-0.5644748508930206],[126,33,76,-0.5623977892100811],[126,33,77,-0.5580761544406414],[126,33,78,-0.5526385642588139],[126,33,79,-0.5470151044428349],[126,34,64,-0.5548058114945889],[126,34,65,-0.5570825934410095],[126,34,66,-0.5576100312173367],[126,34,67,-0.556856956332922],[126,34,68,-0.5559045523405075],[126,34,69,-0.5556793101131916],[126,34,70,-0.5560845471918583],[126,34,71,-0.5570640936493874],[126,34,72,-0.5593903511762619],[126,34,73,-0.5623086504638195],[126,34,74,-0.564282551407814],[126,34,75,-0.5644748508930206],[126,34,76,-0.5623977892100811],[126,34,77,-0.5580761544406414],[126,34,78,-0.5526385642588139],[126,34,79,-0.5470151044428349],[126,35,64,-0.5548058114945889],[126,35,65,-0.5570825934410095],[126,35,66,-0.5576100312173367],[126,35,67,-0.556856956332922],[126,35,68,-0.5559045523405075],[126,35,69,-0.5556793101131916],[126,35,70,-0.5560845471918583],[126,35,71,-0.5570640936493874],[126,35,72,-0.5593903511762619],[126,35,73,-0.5623086504638195],[126,35,74,-0.564282551407814],[126,35,75,-0.5644748508930206],[126,35,76,-0.5623977892100811],[126,35,77,-0.5580761544406414],[126,35,78,-0.5526385642588139],[126,35,79,-0.5470151044428349],[126,36,64,-0.5548058114945889],[126,36,65,-0.5570825934410095],[126,36,66,-0.5576100312173367],[126,36,67,-0.556856956332922],[126,36,68,-0.5559045523405075],[126,36,69,-0.5556793101131916],[126,36,70,-0.5560845471918583],[126,36,71,-0.5570640936493874],[126,36,72,-0.5593903511762619],[126,36,73,-0.5623086504638195],[126,36,74,-0.564282551407814],[126,36,75,-0.5644748508930206],[126,36,76,-0.5623977892100811],[126,36,77,-0.5580761544406414],[126,36,78,-0.5526385642588139],[126,36,79,-0.5470151044428349],[126,37,64,-0.5548058114945889],[126,37,65,-0.5570825934410095],[126,37,66,-0.5576100312173367],[126,37,67,-0.556856956332922],[126,37,68,-0.5559045523405075],[126,37,69,-0.5556793101131916],[126,37,70,-0.5560845471918583],[126,37,71,-0.5570640936493874],[126,37,72,-0.5593903511762619],[126,37,73,-0.5623086504638195],[126,37,74,-0.564282551407814],[126,37,75,-0.5644748508930206],[126,37,76,-0.5623977892100811],[126,37,77,-0.5580761544406414],[126,37,78,-0.5526385642588139],[126,37,79,-0.5470151044428349],[126,38,64,-0.5548058114945889],[126,38,65,-0.5570825934410095],[126,38,66,-0.5576100312173367],[126,38,67,-0.556856956332922],[126,38,68,-0.5559045523405075],[126,38,69,-0.5556793101131916],[126,38,70,-0.5560845471918583],[126,38,71,-0.5570640936493874],[126,38,72,-0.5593903511762619],[126,38,73,-0.5623086504638195],[126,38,74,-0.564282551407814],[126,38,75,-0.5644748508930206],[126,38,76,-0.5623977892100811],[126,38,77,-0.5580761544406414],[126,38,78,-0.5526385642588139],[126,38,79,-0.5470151044428349],[126,39,64,-0.5548058114945889],[126,39,65,-0.5570825934410095],[126,39,66,-0.5576100312173367],[126,39,67,-0.556856956332922],[126,39,68,-0.5559045523405075],[126,39,69,-0.5556793101131916],[126,39,70,-0.5560845471918583],[126,39,71,-0.5570640936493874],[126,39,72,-0.5593903511762619],[126,39,73,-0.5623086504638195],[126,39,74,-0.564282551407814],[126,39,75,-0.5644748508930206],[126,39,76,-0.5623977892100811],[126,39,77,-0.5580761544406414],[126,39,78,-0.5526385642588139],[126,39,79,-0.5470151044428349],[126,40,64,-0.5548058114945889],[126,40,65,-0.5570825934410095],[126,40,66,-0.5576100312173367],[126,40,67,-0.556856956332922],[126,40,68,-0.5559045523405075],[126,40,69,-0.5556793101131916],[126,40,70,-0.5560845471918583],[126,40,71,-0.5570640936493874],[126,40,72,-0.5593903511762619],[126,40,73,-0.5623086504638195],[126,40,74,-0.564282551407814],[126,40,75,-0.5644748508930206],[126,40,76,-0.5623977892100811],[126,40,77,-0.5580761544406414],[126,40,78,-0.5526385642588139],[126,40,79,-0.5470151044428349],[126,41,64,-0.5548058114945889],[126,41,65,-0.5570825934410095],[126,41,66,-0.5576100312173367],[126,41,67,-0.556856956332922],[126,41,68,-0.5559045523405075],[126,41,69,-0.5556793101131916],[126,41,70,-0.5560845471918583],[126,41,71,-0.5570640936493874],[126,41,72,-0.5593903511762619],[126,41,73,-0.5623086504638195],[126,41,74,-0.564282551407814],[126,41,75,-0.5644748508930206],[126,41,76,-0.5623977892100811],[126,41,77,-0.5580761544406414],[126,41,78,-0.5526385642588139],[126,41,79,-0.5470151044428349],[126,42,64,-0.5548058114945889],[126,42,65,-0.5570825934410095],[126,42,66,-0.5576100312173367],[126,42,67,-0.556856956332922],[126,42,68,-0.5559045523405075],[126,42,69,-0.5556793101131916],[126,42,70,-0.5560845471918583],[126,42,71,-0.5570640936493874],[126,42,72,-0.5593903511762619],[126,42,73,-0.5623086504638195],[126,42,74,-0.564282551407814],[126,42,75,-0.5644748508930206],[126,42,76,-0.5623977892100811],[126,42,77,-0.5580761544406414],[126,42,78,-0.5526385642588139],[126,42,79,-0.5470151044428349],[126,43,64,-0.5548058114945889],[126,43,65,-0.5570825934410095],[126,43,66,-0.5576100312173367],[126,43,67,-0.556856956332922],[126,43,68,-0.5559045523405075],[126,43,69,-0.5556793101131916],[126,43,70,-0.5560845471918583],[126,43,71,-0.5570640936493874],[126,43,72,-0.5593903511762619],[126,43,73,-0.5623086504638195],[126,43,74,-0.564282551407814],[126,43,75,-0.5644748508930206],[126,43,76,-0.5623977892100811],[126,43,77,-0.5580761544406414],[126,43,78,-0.5526385642588139],[126,43,79,-0.5470151044428349],[126,44,64,-0.5548058114945889],[126,44,65,-0.5570825934410095],[126,44,66,-0.5576100312173367],[126,44,67,-0.556856956332922],[126,44,68,-0.5559045523405075],[126,44,69,-0.5556793101131916],[126,44,70,-0.5560845471918583],[126,44,71,-0.5570640936493874],[126,44,72,-0.5593903511762619],[126,44,73,-0.5623086504638195],[126,44,74,-0.564282551407814],[126,44,75,-0.5644748508930206],[126,44,76,-0.5623977892100811],[126,44,77,-0.5580761544406414],[126,44,78,-0.5526385642588139],[126,44,79,-0.5470151044428349],[126,45,64,-0.5548058114945889],[126,45,65,-0.5570825934410095],[126,45,66,-0.5576100312173367],[126,45,67,-0.556856956332922],[126,45,68,-0.5559045523405075],[126,45,69,-0.5556793101131916],[126,45,70,-0.5560845471918583],[126,45,71,-0.5570640936493874],[126,45,72,-0.5593903511762619],[126,45,73,-0.5623086504638195],[126,45,74,-0.564282551407814],[126,45,75,-0.5644748508930206],[126,45,76,-0.5623977892100811],[126,45,77,-0.5580761544406414],[126,45,78,-0.5526385642588139],[126,45,79,-0.5470151044428349],[126,46,64,-0.5548058114945889],[126,46,65,-0.5570825934410095],[126,46,66,-0.5576100312173367],[126,46,67,-0.556856956332922],[126,46,68,-0.5559045523405075],[126,46,69,-0.5556793101131916],[126,46,70,-0.5560845471918583],[126,46,71,-0.5570640936493874],[126,46,72,-0.5593903511762619],[126,46,73,-0.5623086504638195],[126,46,74,-0.564282551407814],[126,46,75,-0.5644748508930206],[126,46,76,-0.5623977892100811],[126,46,77,-0.5580761544406414],[126,46,78,-0.5526385642588139],[126,46,79,-0.5470151044428349],[126,47,64,-0.5548058114945889],[126,47,65,-0.5570825934410095],[126,47,66,-0.5576100312173367],[126,47,67,-0.556856956332922],[126,47,68,-0.5559045523405075],[126,47,69,-0.5556793101131916],[126,47,70,-0.5560845471918583],[126,47,71,-0.5570640936493874],[126,47,72,-0.5593903511762619],[126,47,73,-0.5623086504638195],[126,47,74,-0.564282551407814],[126,47,75,-0.5644748508930206],[126,47,76,-0.5623977892100811],[126,47,77,-0.5580761544406414],[126,47,78,-0.5526385642588139],[126,47,79,-0.5470151044428349],[126,48,64,-0.5548058114945889],[126,48,65,-0.5570825934410095],[126,48,66,-0.5576100312173367],[126,48,67,-0.556856956332922],[126,48,68,-0.5559045523405075],[126,48,69,-0.5556793101131916],[126,48,70,-0.5560845471918583],[126,48,71,-0.5570640936493874],[126,48,72,-0.5593903511762619],[126,48,73,-0.5623086504638195],[126,48,74,-0.564282551407814],[126,48,75,-0.5644748508930206],[126,48,76,-0.5623977892100811],[126,48,77,-0.5580761544406414],[126,48,78,-0.5526385642588139],[126,48,79,-0.5470151044428349],[126,49,64,-0.5548058114945889],[126,49,65,-0.5570825934410095],[126,49,66,-0.5576100312173367],[126,49,67,-0.556856956332922],[126,49,68,-0.5559045523405075],[126,49,69,-0.5556793101131916],[126,49,70,-0.5560845471918583],[126,49,71,-0.5570640936493874],[126,49,72,-0.5593903511762619],[126,49,73,-0.5623086504638195],[126,49,74,-0.564282551407814],[126,49,75,-0.5644748508930206],[126,49,76,-0.5623977892100811],[126,49,77,-0.5580761544406414],[126,49,78,-0.5526385642588139],[126,49,79,-0.5470151044428349],[126,50,64,-0.5548058114945889],[126,50,65,-0.5570825934410095],[126,50,66,-0.5576100312173367],[126,50,67,-0.556856956332922],[126,50,68,-0.5559045523405075],[126,50,69,-0.5556793101131916],[126,50,70,-0.5560845471918583],[126,50,71,-0.5570640936493874],[126,50,72,-0.5593903511762619],[126,50,73,-0.5623086504638195],[126,50,74,-0.564282551407814],[126,50,75,-0.5644748508930206],[126,50,76,-0.5623977892100811],[126,50,77,-0.5580761544406414],[126,50,78,-0.5526385642588139],[126,50,79,-0.5470151044428349],[126,51,64,-0.5548058114945889],[126,51,65,-0.5570825934410095],[126,51,66,-0.5576100312173367],[126,51,67,-0.556856956332922],[126,51,68,-0.5559045523405075],[126,51,69,-0.5556793101131916],[126,51,70,-0.5560845471918583],[126,51,71,-0.5570640936493874],[126,51,72,-0.5593903511762619],[126,51,73,-0.5623086504638195],[126,51,74,-0.564282551407814],[126,51,75,-0.5644748508930206],[126,51,76,-0.5623977892100811],[126,51,77,-0.5580761544406414],[126,51,78,-0.5526385642588139],[126,51,79,-0.5470151044428349],[126,52,64,-0.5548058114945889],[126,52,65,-0.5570825934410095],[126,52,66,-0.5576100312173367],[126,52,67,-0.556856956332922],[126,52,68,-0.5559045523405075],[126,52,69,-0.5556793101131916],[126,52,70,-0.5560845471918583],[126,52,71,-0.5570640936493874],[126,52,72,-0.5593903511762619],[126,52,73,-0.5623086504638195],[126,52,74,-0.564282551407814],[126,52,75,-0.5644748508930206],[126,52,76,-0.5623977892100811],[126,52,77,-0.5580761544406414],[126,52,78,-0.5526385642588139],[126,52,79,-0.5470151044428349],[126,53,64,-0.5548058114945889],[126,53,65,-0.5570825934410095],[126,53,66,-0.5576100312173367],[126,53,67,-0.556856956332922],[126,53,68,-0.5559045523405075],[126,53,69,-0.5556793101131916],[126,53,70,-0.5560845471918583],[126,53,71,-0.5570640936493874],[126,53,72,-0.5593903511762619],[126,53,73,-0.5623086504638195],[126,53,74,-0.564282551407814],[126,53,75,-0.5644748508930206],[126,53,76,-0.5623977892100811],[126,53,77,-0.5580761544406414],[126,53,78,-0.5526385642588139],[126,53,79,-0.5470151044428349],[126,54,64,-0.5548058114945889],[126,54,65,-0.5570825934410095],[126,54,66,-0.5576100312173367],[126,54,67,-0.556856956332922],[126,54,68,-0.5559045523405075],[126,54,69,-0.5556793101131916],[126,54,70,-0.5560845471918583],[126,54,71,-0.5570640936493874],[126,54,72,-0.5593903511762619],[126,54,73,-0.5623086504638195],[126,54,74,-0.564282551407814],[126,54,75,-0.5644748508930206],[126,54,76,-0.5623977892100811],[126,54,77,-0.5580761544406414],[126,54,78,-0.5526385642588139],[126,54,79,-0.5470151044428349],[126,55,64,-0.5548058114945889],[126,55,65,-0.5570825934410095],[126,55,66,-0.5576100312173367],[126,55,67,-0.556856956332922],[126,55,68,-0.5559045523405075],[126,55,69,-0.5556793101131916],[126,55,70,-0.5560845471918583],[126,55,71,-0.5570640936493874],[126,55,72,-0.5593903511762619],[126,55,73,-0.5623086504638195],[126,55,74,-0.564282551407814],[126,55,75,-0.5644748508930206],[126,55,76,-0.5623977892100811],[126,55,77,-0.5580761544406414],[126,55,78,-0.5526385642588139],[126,55,79,-0.5470151044428349],[126,56,64,-0.5548058114945889],[126,56,65,-0.5570825934410095],[126,56,66,-0.5576100312173367],[126,56,67,-0.556856956332922],[126,56,68,-0.5559045523405075],[126,56,69,-0.5556793101131916],[126,56,70,-0.5560845471918583],[126,56,71,-0.5570640936493874],[126,56,72,-0.5593903511762619],[126,56,73,-0.5623086504638195],[126,56,74,-0.564282551407814],[126,56,75,-0.5644748508930206],[126,56,76,-0.5623977892100811],[126,56,77,-0.5580761544406414],[126,56,78,-0.5526385642588139],[126,56,79,-0.5470151044428349],[126,57,64,-0.5548058114945889],[126,57,65,-0.5570825934410095],[126,57,66,-0.5576100312173367],[126,57,67,-0.556856956332922],[126,57,68,-0.5559045523405075],[126,57,69,-0.5556793101131916],[126,57,70,-0.5560845471918583],[126,57,71,-0.5570640936493874],[126,57,72,-0.5593903511762619],[126,57,73,-0.5623086504638195],[126,57,74,-0.564282551407814],[126,57,75,-0.5644748508930206],[126,57,76,-0.5623977892100811],[126,57,77,-0.5580761544406414],[126,57,78,-0.5526385642588139],[126,57,79,-0.5470151044428349],[126,58,64,-0.5548058114945889],[126,58,65,-0.5570825934410095],[126,58,66,-0.5576100312173367],[126,58,67,-0.556856956332922],[126,58,68,-0.5559045523405075],[126,58,69,-0.5556793101131916],[126,58,70,-0.5560845471918583],[126,58,71,-0.5570640936493874],[126,58,72,-0.5593903511762619],[126,58,73,-0.5623086504638195],[126,58,74,-0.564282551407814],[126,58,75,-0.5644748508930206],[126,58,76,-0.5623977892100811],[126,58,77,-0.5580761544406414],[126,58,78,-0.5526385642588139],[126,58,79,-0.5470151044428349],[126,59,64,-0.5548058114945889],[126,59,65,-0.5570825934410095],[126,59,66,-0.5576100312173367],[126,59,67,-0.556856956332922],[126,59,68,-0.5559045523405075],[126,59,69,-0.5556793101131916],[126,59,70,-0.5560845471918583],[126,59,71,-0.5570640936493874],[126,59,72,-0.5593903511762619],[126,59,73,-0.5623086504638195],[126,59,74,-0.564282551407814],[126,59,75,-0.5644748508930206],[126,59,76,-0.5623977892100811],[126,59,77,-0.5580761544406414],[126,59,78,-0.5526385642588139],[126,59,79,-0.5470151044428349],[126,60,64,-0.5548058114945889],[126,60,65,-0.5570825934410095],[126,60,66,-0.5576100312173367],[126,60,67,-0.556856956332922],[126,60,68,-0.5559045523405075],[126,60,69,-0.5556793101131916],[126,60,70,-0.5560845471918583],[126,60,71,-0.5570640936493874],[126,60,72,-0.5593903511762619],[126,60,73,-0.5623086504638195],[126,60,74,-0.564282551407814],[126,60,75,-0.5644748508930206],[126,60,76,-0.5623977892100811],[126,60,77,-0.5580761544406414],[126,60,78,-0.5526385642588139],[126,60,79,-0.5470151044428349],[126,61,64,-0.5548058114945889],[126,61,65,-0.5570825934410095],[126,61,66,-0.5576100312173367],[126,61,67,-0.556856956332922],[126,61,68,-0.5559045523405075],[126,61,69,-0.5556793101131916],[126,61,70,-0.5560845471918583],[126,61,71,-0.5570640936493874],[126,61,72,-0.5593903511762619],[126,61,73,-0.5623086504638195],[126,61,74,-0.564282551407814],[126,61,75,-0.5644748508930206],[126,61,76,-0.5623977892100811],[126,61,77,-0.5580761544406414],[126,61,78,-0.5526385642588139],[126,61,79,-0.5470151044428349],[126,62,64,-0.5548058114945889],[126,62,65,-0.5570825934410095],[126,62,66,-0.5576100312173367],[126,62,67,-0.556856956332922],[126,62,68,-0.5559045523405075],[126,62,69,-0.5556793101131916],[126,62,70,-0.5560845471918583],[126,62,71,-0.5570640936493874],[126,62,72,-0.5593903511762619],[126,62,73,-0.5623086504638195],[126,62,74,-0.564282551407814],[126,62,75,-0.5644748508930206],[126,62,76,-0.5623977892100811],[126,62,77,-0.5580761544406414],[126,62,78,-0.5526385642588139],[126,62,79,-0.5470151044428349],[126,63,64,-0.5548058114945889],[126,63,65,-0.5570825934410095],[126,63,66,-0.5576100312173367],[126,63,67,-0.556856956332922],[126,63,68,-0.5559045523405075],[126,63,69,-0.5556793101131916],[126,63,70,-0.5560845471918583],[126,63,71,-0.5570640936493874],[126,63,72,-0.5593903511762619],[126,63,73,-0.5623086504638195],[126,63,74,-0.564282551407814],[126,63,75,-0.5644748508930206],[126,63,76,-0.5623977892100811],[126,63,77,-0.5580761544406414],[126,63,78,-0.5526385642588139],[126,63,79,-0.5470151044428349],[126,64,64,-0.5548058114945889],[126,64,65,-0.5570825934410095],[126,64,66,-0.5576100312173367],[126,64,67,-0.556856956332922],[126,64,68,-0.5559045523405075],[126,64,69,-0.5556793101131916],[126,64,70,-0.5560845471918583],[126,64,71,-0.5570640936493874],[126,64,72,-0.5593903511762619],[126,64,73,-0.5623086504638195],[126,64,74,-0.564282551407814],[126,64,75,-0.5644748508930206],[126,64,76,-0.5623977892100811],[126,64,77,-0.5580761544406414],[126,64,78,-0.5526385642588139],[126,64,79,-0.5470151044428349],[126,65,64,-0.5548058114945889],[126,65,65,-0.5570825934410095],[126,65,66,-0.5576100312173367],[126,65,67,-0.556856956332922],[126,65,68,-0.5559045523405075],[126,65,69,-0.5556793101131916],[126,65,70,-0.5560845471918583],[126,65,71,-0.5570640936493874],[126,65,72,-0.5593903511762619],[126,65,73,-0.5623086504638195],[126,65,74,-0.564282551407814],[126,65,75,-0.5644748508930206],[126,65,76,-0.5623977892100811],[126,65,77,-0.5580761544406414],[126,65,78,-0.5526385642588139],[126,65,79,-0.5470151044428349],[126,66,64,-0.5548058114945889],[126,66,65,-0.5570825934410095],[126,66,66,-0.5576100312173367],[126,66,67,-0.556856956332922],[126,66,68,-0.5559045523405075],[126,66,69,-0.5556793101131916],[126,66,70,-0.5560845471918583],[126,66,71,-0.5570640936493874],[126,66,72,-0.5593903511762619],[126,66,73,-0.5623086504638195],[126,66,74,-0.564282551407814],[126,66,75,-0.5644748508930206],[126,66,76,-0.5623977892100811],[126,66,77,-0.5580761544406414],[126,66,78,-0.5526385642588139],[126,66,79,-0.5470151044428349],[126,67,64,-0.5548058114945889],[126,67,65,-0.5570825934410095],[126,67,66,-0.5576100312173367],[126,67,67,-0.556856956332922],[126,67,68,-0.5559045523405075],[126,67,69,-0.5556793101131916],[126,67,70,-0.5560845471918583],[126,67,71,-0.5570640936493874],[126,67,72,-0.5593903511762619],[126,67,73,-0.5623086504638195],[126,67,74,-0.564282551407814],[126,67,75,-0.5644748508930206],[126,67,76,-0.5623977892100811],[126,67,77,-0.5580761544406414],[126,67,78,-0.5526385642588139],[126,67,79,-0.5470151044428349],[126,68,64,-0.5548058114945889],[126,68,65,-0.5570825934410095],[126,68,66,-0.5576100312173367],[126,68,67,-0.556856956332922],[126,68,68,-0.5559045523405075],[126,68,69,-0.5556793101131916],[126,68,70,-0.5560845471918583],[126,68,71,-0.5570640936493874],[126,68,72,-0.5593903511762619],[126,68,73,-0.5623086504638195],[126,68,74,-0.564282551407814],[126,68,75,-0.5644748508930206],[126,68,76,-0.5623977892100811],[126,68,77,-0.5580761544406414],[126,68,78,-0.5526385642588139],[126,68,79,-0.5470151044428349],[126,69,64,-0.5548058114945889],[126,69,65,-0.5570825934410095],[126,69,66,-0.5576100312173367],[126,69,67,-0.556856956332922],[126,69,68,-0.5559045523405075],[126,69,69,-0.5556793101131916],[126,69,70,-0.5560845471918583],[126,69,71,-0.5570640936493874],[126,69,72,-0.5593903511762619],[126,69,73,-0.5623086504638195],[126,69,74,-0.564282551407814],[126,69,75,-0.5644748508930206],[126,69,76,-0.5623977892100811],[126,69,77,-0.5580761544406414],[126,69,78,-0.5526385642588139],[126,69,79,-0.5470151044428349],[126,70,64,-0.5548058114945889],[126,70,65,-0.5570825934410095],[126,70,66,-0.5576100312173367],[126,70,67,-0.556856956332922],[126,70,68,-0.5559045523405075],[126,70,69,-0.5556793101131916],[126,70,70,-0.5560845471918583],[126,70,71,-0.5570640936493874],[126,70,72,-0.5593903511762619],[126,70,73,-0.5623086504638195],[126,70,74,-0.564282551407814],[126,70,75,-0.5644748508930206],[126,70,76,-0.5623977892100811],[126,70,77,-0.5580761544406414],[126,70,78,-0.5526385642588139],[126,70,79,-0.5470151044428349],[126,71,64,-0.5548058114945889],[126,71,65,-0.5570825934410095],[126,71,66,-0.5576100312173367],[126,71,67,-0.556856956332922],[126,71,68,-0.5559045523405075],[126,71,69,-0.5556793101131916],[126,71,70,-0.5560845471918583],[126,71,71,-0.5570640936493874],[126,71,72,-0.5593903511762619],[126,71,73,-0.5623086504638195],[126,71,74,-0.564282551407814],[126,71,75,-0.5644748508930206],[126,71,76,-0.5623977892100811],[126,71,77,-0.5580761544406414],[126,71,78,-0.5526385642588139],[126,71,79,-0.5470151044428349],[126,72,64,-0.5548058114945889],[126,72,65,-0.5570825934410095],[126,72,66,-0.5576100312173367],[126,72,67,-0.556856956332922],[126,72,68,-0.5559045523405075],[126,72,69,-0.5556793101131916],[126,72,70,-0.5560845471918583],[126,72,71,-0.5570640936493874],[126,72,72,-0.5593903511762619],[126,72,73,-0.5623086504638195],[126,72,74,-0.564282551407814],[126,72,75,-0.5644748508930206],[126,72,76,-0.5623977892100811],[126,72,77,-0.5580761544406414],[126,72,78,-0.5526385642588139],[126,72,79,-0.5470151044428349],[126,73,64,-0.5548058114945889],[126,73,65,-0.5570825934410095],[126,73,66,-0.5576100312173367],[126,73,67,-0.556856956332922],[126,73,68,-0.5559045523405075],[126,73,69,-0.5556793101131916],[126,73,70,-0.5560845471918583],[126,73,71,-0.5570640936493874],[126,73,72,-0.5593903511762619],[126,73,73,-0.5623086504638195],[126,73,74,-0.564282551407814],[126,73,75,-0.5644748508930206],[126,73,76,-0.5623977892100811],[126,73,77,-0.5580761544406414],[126,73,78,-0.5526385642588139],[126,73,79,-0.5470151044428349],[126,74,64,-0.5548058114945889],[126,74,65,-0.5570825934410095],[126,74,66,-0.5576100312173367],[126,74,67,-0.556856956332922],[126,74,68,-0.5559045523405075],[126,74,69,-0.5556793101131916],[126,74,70,-0.5560845471918583],[126,74,71,-0.5570640936493874],[126,74,72,-0.5593903511762619],[126,74,73,-0.5623086504638195],[126,74,74,-0.564282551407814],[126,74,75,-0.5644748508930206],[126,74,76,-0.5623977892100811],[126,74,77,-0.5580761544406414],[126,74,78,-0.5526385642588139],[126,74,79,-0.5470151044428349],[126,75,64,-0.5548058114945889],[126,75,65,-0.5570825934410095],[126,75,66,-0.5576100312173367],[126,75,67,-0.556856956332922],[126,75,68,-0.5559045523405075],[126,75,69,-0.5556793101131916],[126,75,70,-0.5560845471918583],[126,75,71,-0.5570640936493874],[126,75,72,-0.5593903511762619],[126,75,73,-0.5623086504638195],[126,75,74,-0.564282551407814],[126,75,75,-0.5644748508930206],[126,75,76,-0.5623977892100811],[126,75,77,-0.5580761544406414],[126,75,78,-0.5526385642588139],[126,75,79,-0.5470151044428349],[126,76,64,-0.5548058114945889],[126,76,65,-0.5570825934410095],[126,76,66,-0.5576100312173367],[126,76,67,-0.556856956332922],[126,76,68,-0.5559045523405075],[126,76,69,-0.5556793101131916],[126,76,70,-0.5560845471918583],[126,76,71,-0.5570640936493874],[126,76,72,-0.5593903511762619],[126,76,73,-0.5623086504638195],[126,76,74,-0.564282551407814],[126,76,75,-0.5644748508930206],[126,76,76,-0.5623977892100811],[126,76,77,-0.5580761544406414],[126,76,78,-0.5526385642588139],[126,76,79,-0.5470151044428349],[126,77,64,-0.5548058114945889],[126,77,65,-0.5570825934410095],[126,77,66,-0.5576100312173367],[126,77,67,-0.556856956332922],[126,77,68,-0.5559045523405075],[126,77,69,-0.5556793101131916],[126,77,70,-0.5560845471918583],[126,77,71,-0.5570640936493874],[126,77,72,-0.5593903511762619],[126,77,73,-0.5623086504638195],[126,77,74,-0.564282551407814],[126,77,75,-0.5644748508930206],[126,77,76,-0.5623977892100811],[126,77,77,-0.5580761544406414],[126,77,78,-0.5526385642588139],[126,77,79,-0.5470151044428349],[126,78,64,-0.5548058114945889],[126,78,65,-0.5570825934410095],[126,78,66,-0.5576100312173367],[126,78,67,-0.556856956332922],[126,78,68,-0.5559045523405075],[126,78,69,-0.5556793101131916],[126,78,70,-0.5560845471918583],[126,78,71,-0.5570640936493874],[126,78,72,-0.5593903511762619],[126,78,73,-0.5623086504638195],[126,78,74,-0.564282551407814],[126,78,75,-0.5644748508930206],[126,78,76,-0.5623977892100811],[126,78,77,-0.5580761544406414],[126,78,78,-0.5526385642588139],[126,78,79,-0.5470151044428349],[126,79,64,-0.5548058114945889],[126,79,65,-0.5570825934410095],[126,79,66,-0.5576100312173367],[126,79,67,-0.556856956332922],[126,79,68,-0.5559045523405075],[126,79,69,-0.5556793101131916],[126,79,70,-0.5560845471918583],[126,79,71,-0.5570640936493874],[126,79,72,-0.5593903511762619],[126,79,73,-0.5623086504638195],[126,79,74,-0.564282551407814],[126,79,75,-0.5644748508930206],[126,79,76,-0.5623977892100811],[126,79,77,-0.5580761544406414],[126,79,78,-0.5526385642588139],[126,79,79,-0.5470151044428349],[126,80,64,-0.5548058114945889],[126,80,65,-0.5570825934410095],[126,80,66,-0.5576100312173367],[126,80,67,-0.556856956332922],[126,80,68,-0.5559045523405075],[126,80,69,-0.5556793101131916],[126,80,70,-0.5560845471918583],[126,80,71,-0.5570640936493874],[126,80,72,-0.5593903511762619],[126,80,73,-0.5623086504638195],[126,80,74,-0.564282551407814],[126,80,75,-0.5644748508930206],[126,80,76,-0.5623977892100811],[126,80,77,-0.5580761544406414],[126,80,78,-0.5526385642588139],[126,80,79,-0.5470151044428349],[126,81,64,-0.5548058114945889],[126,81,65,-0.5570825934410095],[126,81,66,-0.5576100312173367],[126,81,67,-0.556856956332922],[126,81,68,-0.5559045523405075],[126,81,69,-0.5556793101131916],[126,81,70,-0.5560845471918583],[126,81,71,-0.5570640936493874],[126,81,72,-0.5593903511762619],[126,81,73,-0.5623086504638195],[126,81,74,-0.564282551407814],[126,81,75,-0.5644748508930206],[126,81,76,-0.5623977892100811],[126,81,77,-0.5580761544406414],[126,81,78,-0.5526385642588139],[126,81,79,-0.5470151044428349],[126,82,64,-0.5548058114945889],[126,82,65,-0.5570825934410095],[126,82,66,-0.5576100312173367],[126,82,67,-0.556856956332922],[126,82,68,-0.5559045523405075],[126,82,69,-0.5556793101131916],[126,82,70,-0.5560845471918583],[126,82,71,-0.5570640936493874],[126,82,72,-0.5593903511762619],[126,82,73,-0.5623086504638195],[126,82,74,-0.564282551407814],[126,82,75,-0.5644748508930206],[126,82,76,-0.5623977892100811],[126,82,77,-0.5580761544406414],[126,82,78,-0.5526385642588139],[126,82,79,-0.5470151044428349],[126,83,64,-0.5548058114945889],[126,83,65,-0.5570825934410095],[126,83,66,-0.5576100312173367],[126,83,67,-0.556856956332922],[126,83,68,-0.5559045523405075],[126,83,69,-0.5556793101131916],[126,83,70,-0.5560845471918583],[126,83,71,-0.5570640936493874],[126,83,72,-0.5593903511762619],[126,83,73,-0.5623086504638195],[126,83,74,-0.564282551407814],[126,83,75,-0.5644748508930206],[126,83,76,-0.5623977892100811],[126,83,77,-0.5580761544406414],[126,83,78,-0.5526385642588139],[126,83,79,-0.5470151044428349],[126,84,64,-0.5548058114945889],[126,84,65,-0.5570825934410095],[126,84,66,-0.5576100312173367],[126,84,67,-0.556856956332922],[126,84,68,-0.5559045523405075],[126,84,69,-0.5556793101131916],[126,84,70,-0.5560845471918583],[126,84,71,-0.5570640936493874],[126,84,72,-0.5593903511762619],[126,84,73,-0.5623086504638195],[126,84,74,-0.564282551407814],[126,84,75,-0.5644748508930206],[126,84,76,-0.5623977892100811],[126,84,77,-0.5580761544406414],[126,84,78,-0.5526385642588139],[126,84,79,-0.5470151044428349],[126,85,64,-0.5548058114945889],[126,85,65,-0.5570825934410095],[126,85,66,-0.5576100312173367],[126,85,67,-0.556856956332922],[126,85,68,-0.5559045523405075],[126,85,69,-0.5556793101131916],[126,85,70,-0.5560845471918583],[126,85,71,-0.5570640936493874],[126,85,72,-0.5593903511762619],[126,85,73,-0.5623086504638195],[126,85,74,-0.564282551407814],[126,85,75,-0.5644748508930206],[126,85,76,-0.5623977892100811],[126,85,77,-0.5580761544406414],[126,85,78,-0.5526385642588139],[126,85,79,-0.5470151044428349],[126,86,64,-0.5548058114945889],[126,86,65,-0.5570825934410095],[126,86,66,-0.5576100312173367],[126,86,67,-0.556856956332922],[126,86,68,-0.5559045523405075],[126,86,69,-0.5556793101131916],[126,86,70,-0.5560845471918583],[126,86,71,-0.5570640936493874],[126,86,72,-0.5593903511762619],[126,86,73,-0.5623086504638195],[126,86,74,-0.564282551407814],[126,86,75,-0.5644748508930206],[126,86,76,-0.5623977892100811],[126,86,77,-0.5580761544406414],[126,86,78,-0.5526385642588139],[126,86,79,-0.5470151044428349],[126,87,64,-0.5548058114945889],[126,87,65,-0.5570825934410095],[126,87,66,-0.5576100312173367],[126,87,67,-0.556856956332922],[126,87,68,-0.5559045523405075],[126,87,69,-0.5556793101131916],[126,87,70,-0.5560845471918583],[126,87,71,-0.5570640936493874],[126,87,72,-0.5593903511762619],[126,87,73,-0.5623086504638195],[126,87,74,-0.564282551407814],[126,87,75,-0.5644748508930206],[126,87,76,-0.5623977892100811],[126,87,77,-0.5580761544406414],[126,87,78,-0.5526385642588139],[126,87,79,-0.5470151044428349],[126,88,64,-0.5548058114945889],[126,88,65,-0.5570825934410095],[126,88,66,-0.5576100312173367],[126,88,67,-0.556856956332922],[126,88,68,-0.5559045523405075],[126,88,69,-0.5556793101131916],[126,88,70,-0.5560845471918583],[126,88,71,-0.5570640936493874],[126,88,72,-0.5593903511762619],[126,88,73,-0.5623086504638195],[126,88,74,-0.564282551407814],[126,88,75,-0.5644748508930206],[126,88,76,-0.5623977892100811],[126,88,77,-0.5580761544406414],[126,88,78,-0.5526385642588139],[126,88,79,-0.5470151044428349],[126,89,64,-0.5548058114945889],[126,89,65,-0.5570825934410095],[126,89,66,-0.5576100312173367],[126,89,67,-0.556856956332922],[126,89,68,-0.5559045523405075],[126,89,69,-0.5556793101131916],[126,89,70,-0.5560845471918583],[126,89,71,-0.5570640936493874],[126,89,72,-0.5593903511762619],[126,89,73,-0.5623086504638195],[126,89,74,-0.564282551407814],[126,89,75,-0.5644748508930206],[126,89,76,-0.5623977892100811],[126,89,77,-0.5580761544406414],[126,89,78,-0.5526385642588139],[126,89,79,-0.5470151044428349],[126,90,64,-0.5548058114945889],[126,90,65,-0.5570825934410095],[126,90,66,-0.5576100312173367],[126,90,67,-0.556856956332922],[126,90,68,-0.5559045523405075],[126,90,69,-0.5556793101131916],[126,90,70,-0.5560845471918583],[126,90,71,-0.5570640936493874],[126,90,72,-0.5593903511762619],[126,90,73,-0.5623086504638195],[126,90,74,-0.564282551407814],[126,90,75,-0.5644748508930206],[126,90,76,-0.5623977892100811],[126,90,77,-0.5580761544406414],[126,90,78,-0.5526385642588139],[126,90,79,-0.5470151044428349],[126,91,64,-0.5548058114945889],[126,91,65,-0.5570825934410095],[126,91,66,-0.5576100312173367],[126,91,67,-0.556856956332922],[126,91,68,-0.5559045523405075],[126,91,69,-0.5556793101131916],[126,91,70,-0.5560845471918583],[126,91,71,-0.5570640936493874],[126,91,72,-0.5593903511762619],[126,91,73,-0.5623086504638195],[126,91,74,-0.564282551407814],[126,91,75,-0.5644748508930206],[126,91,76,-0.5623977892100811],[126,91,77,-0.5580761544406414],[126,91,78,-0.5526385642588139],[126,91,79,-0.5470151044428349],[126,92,64,-0.5548058114945889],[126,92,65,-0.5570825934410095],[126,92,66,-0.5576100312173367],[126,92,67,-0.556856956332922],[126,92,68,-0.5559045523405075],[126,92,69,-0.5556793101131916],[126,92,70,-0.5560845471918583],[126,92,71,-0.5570640936493874],[126,92,72,-0.5593903511762619],[126,92,73,-0.5623086504638195],[126,92,74,-0.564282551407814],[126,92,75,-0.5644748508930206],[126,92,76,-0.5623977892100811],[126,92,77,-0.5580761544406414],[126,92,78,-0.5526385642588139],[126,92,79,-0.5470151044428349],[126,93,64,-0.5548058114945889],[126,93,65,-0.5570825934410095],[126,93,66,-0.5576100312173367],[126,93,67,-0.556856956332922],[126,93,68,-0.5559045523405075],[126,93,69,-0.5556793101131916],[126,93,70,-0.5560845471918583],[126,93,71,-0.5570640936493874],[126,93,72,-0.5593903511762619],[126,93,73,-0.5623086504638195],[126,93,74,-0.564282551407814],[126,93,75,-0.5644748508930206],[126,93,76,-0.5623977892100811],[126,93,77,-0.5580761544406414],[126,93,78,-0.5526385642588139],[126,93,79,-0.5470151044428349],[126,94,64,-0.5548058114945889],[126,94,65,-0.5570825934410095],[126,94,66,-0.5576100312173367],[126,94,67,-0.556856956332922],[126,94,68,-0.5559045523405075],[126,94,69,-0.5556793101131916],[126,94,70,-0.5560845471918583],[126,94,71,-0.5570640936493874],[126,94,72,-0.5593903511762619],[126,94,73,-0.5623086504638195],[126,94,74,-0.564282551407814],[126,94,75,-0.5644748508930206],[126,94,76,-0.5623977892100811],[126,94,77,-0.5580761544406414],[126,94,78,-0.5526385642588139],[126,94,79,-0.5470151044428349],[126,95,64,-0.5548058114945889],[126,95,65,-0.5570825934410095],[126,95,66,-0.5576100312173367],[126,95,67,-0.556856956332922],[126,95,68,-0.5559045523405075],[126,95,69,-0.5556793101131916],[126,95,70,-0.5560845471918583],[126,95,71,-0.5570640936493874],[126,95,72,-0.5593903511762619],[126,95,73,-0.5623086504638195],[126,95,74,-0.564282551407814],[126,95,75,-0.5644748508930206],[126,95,76,-0.5623977892100811],[126,95,77,-0.5580761544406414],[126,95,78,-0.5526385642588139],[126,95,79,-0.5470151044428349],[126,96,64,-0.5548058114945889],[126,96,65,-0.5570825934410095],[126,96,66,-0.5576100312173367],[126,96,67,-0.556856956332922],[126,96,68,-0.5559045523405075],[126,96,69,-0.5556793101131916],[126,96,70,-0.5560845471918583],[126,96,71,-0.5570640936493874],[126,96,72,-0.5593903511762619],[126,96,73,-0.5623086504638195],[126,96,74,-0.564282551407814],[126,96,75,-0.5644748508930206],[126,96,76,-0.5623977892100811],[126,96,77,-0.5580761544406414],[126,96,78,-0.5526385642588139],[126,96,79,-0.5470151044428349],[126,97,64,-0.5548058114945889],[126,97,65,-0.5570825934410095],[126,97,66,-0.5576100312173367],[126,97,67,-0.556856956332922],[126,97,68,-0.5559045523405075],[126,97,69,-0.5556793101131916],[126,97,70,-0.5560845471918583],[126,97,71,-0.5570640936493874],[126,97,72,-0.5593903511762619],[126,97,73,-0.5623086504638195],[126,97,74,-0.564282551407814],[126,97,75,-0.5644748508930206],[126,97,76,-0.5623977892100811],[126,97,77,-0.5580761544406414],[126,97,78,-0.5526385642588139],[126,97,79,-0.5470151044428349],[126,98,64,-0.5548058114945889],[126,98,65,-0.5570825934410095],[126,98,66,-0.5576100312173367],[126,98,67,-0.556856956332922],[126,98,68,-0.5559045523405075],[126,98,69,-0.5556793101131916],[126,98,70,-0.5560845471918583],[126,98,71,-0.5570640936493874],[126,98,72,-0.5593903511762619],[126,98,73,-0.5623086504638195],[126,98,74,-0.564282551407814],[126,98,75,-0.5644748508930206],[126,98,76,-0.5623977892100811],[126,98,77,-0.5580761544406414],[126,98,78,-0.5526385642588139],[126,98,79,-0.5470151044428349],[126,99,64,-0.5548058114945889],[126,99,65,-0.5570825934410095],[126,99,66,-0.5576100312173367],[126,99,67,-0.556856956332922],[126,99,68,-0.5559045523405075],[126,99,69,-0.5556793101131916],[126,99,70,-0.5560845471918583],[126,99,71,-0.5570640936493874],[126,99,72,-0.5593903511762619],[126,99,73,-0.5623086504638195],[126,99,74,-0.564282551407814],[126,99,75,-0.5644748508930206],[126,99,76,-0.5623977892100811],[126,99,77,-0.5580761544406414],[126,99,78,-0.5526385642588139],[126,99,79,-0.5470151044428349],[126,100,64,-0.5548058114945889],[126,100,65,-0.5570825934410095],[126,100,66,-0.5576100312173367],[126,100,67,-0.556856956332922],[126,100,68,-0.5559045523405075],[126,100,69,-0.5556793101131916],[126,100,70,-0.5560845471918583],[126,100,71,-0.5570640936493874],[126,100,72,-0.5593903511762619],[126,100,73,-0.5623086504638195],[126,100,74,-0.564282551407814],[126,100,75,-0.5644748508930206],[126,100,76,-0.5623977892100811],[126,100,77,-0.5580761544406414],[126,100,78,-0.5526385642588139],[126,100,79,-0.5470151044428349],[126,101,64,-0.5548058114945889],[126,101,65,-0.5570825934410095],[126,101,66,-0.5576100312173367],[126,101,67,-0.556856956332922],[126,101,68,-0.5559045523405075],[126,101,69,-0.5556793101131916],[126,101,70,-0.5560845471918583],[126,101,71,-0.5570640936493874],[126,101,72,-0.5593903511762619],[126,101,73,-0.5623086504638195],[126,101,74,-0.564282551407814],[126,101,75,-0.5644748508930206],[126,101,76,-0.5623977892100811],[126,101,77,-0.5580761544406414],[126,101,78,-0.5526385642588139],[126,101,79,-0.5470151044428349],[126,102,64,-0.5548058114945889],[126,102,65,-0.5570825934410095],[126,102,66,-0.5576100312173367],[126,102,67,-0.556856956332922],[126,102,68,-0.5559045523405075],[126,102,69,-0.5556793101131916],[126,102,70,-0.5560845471918583],[126,102,71,-0.5570640936493874],[126,102,72,-0.5593903511762619],[126,102,73,-0.5623086504638195],[126,102,74,-0.564282551407814],[126,102,75,-0.5644748508930206],[126,102,76,-0.5623977892100811],[126,102,77,-0.5580761544406414],[126,102,78,-0.5526385642588139],[126,102,79,-0.5470151044428349],[126,103,64,-0.5548058114945889],[126,103,65,-0.5570825934410095],[126,103,66,-0.5576100312173367],[126,103,67,-0.556856956332922],[126,103,68,-0.5559045523405075],[126,103,69,-0.5556793101131916],[126,103,70,-0.5560845471918583],[126,103,71,-0.5570640936493874],[126,103,72,-0.5593903511762619],[126,103,73,-0.5623086504638195],[126,103,74,-0.564282551407814],[126,103,75,-0.5644748508930206],[126,103,76,-0.5623977892100811],[126,103,77,-0.5580761544406414],[126,103,78,-0.5526385642588139],[126,103,79,-0.5470151044428349],[126,104,64,-0.5548058114945889],[126,104,65,-0.5570825934410095],[126,104,66,-0.5576100312173367],[126,104,67,-0.556856956332922],[126,104,68,-0.5559045523405075],[126,104,69,-0.5556793101131916],[126,104,70,-0.5560845471918583],[126,104,71,-0.5570640936493874],[126,104,72,-0.5593903511762619],[126,104,73,-0.5623086504638195],[126,104,74,-0.564282551407814],[126,104,75,-0.5644748508930206],[126,104,76,-0.5623977892100811],[126,104,77,-0.5580761544406414],[126,104,78,-0.5526385642588139],[126,104,79,-0.5470151044428349],[126,105,64,-0.5548058114945889],[126,105,65,-0.5570825934410095],[126,105,66,-0.5576100312173367],[126,105,67,-0.556856956332922],[126,105,68,-0.5559045523405075],[126,105,69,-0.5556793101131916],[126,105,70,-0.5560845471918583],[126,105,71,-0.5570640936493874],[126,105,72,-0.5593903511762619],[126,105,73,-0.5623086504638195],[126,105,74,-0.564282551407814],[126,105,75,-0.5644748508930206],[126,105,76,-0.5623977892100811],[126,105,77,-0.5580761544406414],[126,105,78,-0.5526385642588139],[126,105,79,-0.5470151044428349],[126,106,64,-0.5548058114945889],[126,106,65,-0.5570825934410095],[126,106,66,-0.5576100312173367],[126,106,67,-0.556856956332922],[126,106,68,-0.5559045523405075],[126,106,69,-0.5556793101131916],[126,106,70,-0.5560845471918583],[126,106,71,-0.5570640936493874],[126,106,72,-0.5593903511762619],[126,106,73,-0.5623086504638195],[126,106,74,-0.564282551407814],[126,106,75,-0.5644748508930206],[126,106,76,-0.5623977892100811],[126,106,77,-0.5580761544406414],[126,106,78,-0.5526385642588139],[126,106,79,-0.5470151044428349],[126,107,64,-0.5548058114945889],[126,107,65,-0.5570825934410095],[126,107,66,-0.5576100312173367],[126,107,67,-0.556856956332922],[126,107,68,-0.5559045523405075],[126,107,69,-0.5556793101131916],[126,107,70,-0.5560845471918583],[126,107,71,-0.5570640936493874],[126,107,72,-0.5593903511762619],[126,107,73,-0.5623086504638195],[126,107,74,-0.564282551407814],[126,107,75,-0.5644748508930206],[126,107,76,-0.5623977892100811],[126,107,77,-0.5580761544406414],[126,107,78,-0.5526385642588139],[126,107,79,-0.5470151044428349],[126,108,64,-0.5548058114945889],[126,108,65,-0.5570825934410095],[126,108,66,-0.5576100312173367],[126,108,67,-0.556856956332922],[126,108,68,-0.5559045523405075],[126,108,69,-0.5556793101131916],[126,108,70,-0.5560845471918583],[126,108,71,-0.5570640936493874],[126,108,72,-0.5593903511762619],[126,108,73,-0.5623086504638195],[126,108,74,-0.564282551407814],[126,108,75,-0.5644748508930206],[126,108,76,-0.5623977892100811],[126,108,77,-0.5580761544406414],[126,108,78,-0.5526385642588139],[126,108,79,-0.5470151044428349],[126,109,64,-0.5548058114945889],[126,109,65,-0.5570825934410095],[126,109,66,-0.5576100312173367],[126,109,67,-0.556856956332922],[126,109,68,-0.5559045523405075],[126,109,69,-0.5556793101131916],[126,109,70,-0.5560845471918583],[126,109,71,-0.5570640936493874],[126,109,72,-0.5593903511762619],[126,109,73,-0.5623086504638195],[126,109,74,-0.564282551407814],[126,109,75,-0.5644748508930206],[126,109,76,-0.5623977892100811],[126,109,77,-0.5580761544406414],[126,109,78,-0.5526385642588139],[126,109,79,-0.5470151044428349],[126,110,64,-0.5548058114945889],[126,110,65,-0.5570825934410095],[126,110,66,-0.5576100312173367],[126,110,67,-0.556856956332922],[126,110,68,-0.5559045523405075],[126,110,69,-0.5556793101131916],[126,110,70,-0.5560845471918583],[126,110,71,-0.5570640936493874],[126,110,72,-0.5593903511762619],[126,110,73,-0.5623086504638195],[126,110,74,-0.564282551407814],[126,110,75,-0.5644748508930206],[126,110,76,-0.5623977892100811],[126,110,77,-0.5580761544406414],[126,110,78,-0.5526385642588139],[126,110,79,-0.5470151044428349],[126,111,64,-0.5548058114945889],[126,111,65,-0.5570825934410095],[126,111,66,-0.5576100312173367],[126,111,67,-0.556856956332922],[126,111,68,-0.5559045523405075],[126,111,69,-0.5556793101131916],[126,111,70,-0.5560845471918583],[126,111,71,-0.5570640936493874],[126,111,72,-0.5593903511762619],[126,111,73,-0.5623086504638195],[126,111,74,-0.564282551407814],[126,111,75,-0.5644748508930206],[126,111,76,-0.5623977892100811],[126,111,77,-0.5580761544406414],[126,111,78,-0.5526385642588139],[126,111,79,-0.5470151044428349],[126,112,64,-0.5548058114945889],[126,112,65,-0.5570825934410095],[126,112,66,-0.5576100312173367],[126,112,67,-0.556856956332922],[126,112,68,-0.5559045523405075],[126,112,69,-0.5556793101131916],[126,112,70,-0.5560845471918583],[126,112,71,-0.5570640936493874],[126,112,72,-0.5593903511762619],[126,112,73,-0.5623086504638195],[126,112,74,-0.564282551407814],[126,112,75,-0.5644748508930206],[126,112,76,-0.5623977892100811],[126,112,77,-0.5580761544406414],[126,112,78,-0.5526385642588139],[126,112,79,-0.5470151044428349],[126,113,64,-0.5548058114945889],[126,113,65,-0.5570825934410095],[126,113,66,-0.5576100312173367],[126,113,67,-0.556856956332922],[126,113,68,-0.5559045523405075],[126,113,69,-0.5556793101131916],[126,113,70,-0.5560845471918583],[126,113,71,-0.5570640936493874],[126,113,72,-0.5593903511762619],[126,113,73,-0.5623086504638195],[126,113,74,-0.564282551407814],[126,113,75,-0.5644748508930206],[126,113,76,-0.5623977892100811],[126,113,77,-0.5580761544406414],[126,113,78,-0.5526385642588139],[126,113,79,-0.5470151044428349],[126,114,64,-0.5548058114945889],[126,114,65,-0.5570825934410095],[126,114,66,-0.5576100312173367],[126,114,67,-0.556856956332922],[126,114,68,-0.5559045523405075],[126,114,69,-0.5556793101131916],[126,114,70,-0.5560845471918583],[126,114,71,-0.5570640936493874],[126,114,72,-0.5593903511762619],[126,114,73,-0.5623086504638195],[126,114,74,-0.564282551407814],[126,114,75,-0.5644748508930206],[126,114,76,-0.5623977892100811],[126,114,77,-0.5580761544406414],[126,114,78,-0.5526385642588139],[126,114,79,-0.5470151044428349],[126,115,64,-0.5548058114945889],[126,115,65,-0.5570825934410095],[126,115,66,-0.5576100312173367],[126,115,67,-0.556856956332922],[126,115,68,-0.5559045523405075],[126,115,69,-0.5556793101131916],[126,115,70,-0.5560845471918583],[126,115,71,-0.5570640936493874],[126,115,72,-0.5593903511762619],[126,115,73,-0.5623086504638195],[126,115,74,-0.564282551407814],[126,115,75,-0.5644748508930206],[126,115,76,-0.5623977892100811],[126,115,77,-0.5580761544406414],[126,115,78,-0.5526385642588139],[126,115,79,-0.5470151044428349],[126,116,64,-0.5548058114945889],[126,116,65,-0.5570825934410095],[126,116,66,-0.5576100312173367],[126,116,67,-0.556856956332922],[126,116,68,-0.5559045523405075],[126,116,69,-0.5556793101131916],[126,116,70,-0.5560845471918583],[126,116,71,-0.5570640936493874],[126,116,72,-0.5593903511762619],[126,116,73,-0.5623086504638195],[126,116,74,-0.564282551407814],[126,116,75,-0.5644748508930206],[126,116,76,-0.5623977892100811],[126,116,77,-0.5580761544406414],[126,116,78,-0.5526385642588139],[126,116,79,-0.5470151044428349],[126,117,64,-0.5548058114945889],[126,117,65,-0.5570825934410095],[126,117,66,-0.5576100312173367],[126,117,67,-0.556856956332922],[126,117,68,-0.5559045523405075],[126,117,69,-0.5556793101131916],[126,117,70,-0.5560845471918583],[126,117,71,-0.5570640936493874],[126,117,72,-0.5593903511762619],[126,117,73,-0.5623086504638195],[126,117,74,-0.564282551407814],[126,117,75,-0.5644748508930206],[126,117,76,-0.5623977892100811],[126,117,77,-0.5580761544406414],[126,117,78,-0.5526385642588139],[126,117,79,-0.5470151044428349],[126,118,64,-0.5548058114945889],[126,118,65,-0.5570825934410095],[126,118,66,-0.5576100312173367],[126,118,67,-0.556856956332922],[126,118,68,-0.5559045523405075],[126,118,69,-0.5556793101131916],[126,118,70,-0.5560845471918583],[126,118,71,-0.5570640936493874],[126,118,72,-0.5593903511762619],[126,118,73,-0.5623086504638195],[126,118,74,-0.564282551407814],[126,118,75,-0.5644748508930206],[126,118,76,-0.5623977892100811],[126,118,77,-0.5580761544406414],[126,118,78,-0.5526385642588139],[126,118,79,-0.5470151044428349],[126,119,64,-0.5548058114945889],[126,119,65,-0.5570825934410095],[126,119,66,-0.5576100312173367],[126,119,67,-0.556856956332922],[126,119,68,-0.5559045523405075],[126,119,69,-0.5556793101131916],[126,119,70,-0.5560845471918583],[126,119,71,-0.5570640936493874],[126,119,72,-0.5593903511762619],[126,119,73,-0.5623086504638195],[126,119,74,-0.564282551407814],[126,119,75,-0.5644748508930206],[126,119,76,-0.5623977892100811],[126,119,77,-0.5580761544406414],[126,119,78,-0.5526385642588139],[126,119,79,-0.5470151044428349],[126,120,64,-0.5548058114945889],[126,120,65,-0.5570825934410095],[126,120,66,-0.5576100312173367],[126,120,67,-0.556856956332922],[126,120,68,-0.5559045523405075],[126,120,69,-0.5556793101131916],[126,120,70,-0.5560845471918583],[126,120,71,-0.5570640936493874],[126,120,72,-0.5593903511762619],[126,120,73,-0.5623086504638195],[126,120,74,-0.564282551407814],[126,120,75,-0.5644748508930206],[126,120,76,-0.5623977892100811],[126,120,77,-0.5580761544406414],[126,120,78,-0.5526385642588139],[126,120,79,-0.5470151044428349],[126,121,64,-0.5548058114945889],[126,121,65,-0.5570825934410095],[126,121,66,-0.5576100312173367],[126,121,67,-0.556856956332922],[126,121,68,-0.5559045523405075],[126,121,69,-0.5556793101131916],[126,121,70,-0.5560845471918583],[126,121,71,-0.5570640936493874],[126,121,72,-0.5593903511762619],[126,121,73,-0.5623086504638195],[126,121,74,-0.564282551407814],[126,121,75,-0.5644748508930206],[126,121,76,-0.5623977892100811],[126,121,77,-0.5580761544406414],[126,121,78,-0.5526385642588139],[126,121,79,-0.5470151044428349],[126,122,64,-0.5548058114945889],[126,122,65,-0.5570825934410095],[126,122,66,-0.5576100312173367],[126,122,67,-0.556856956332922],[126,122,68,-0.5559045523405075],[126,122,69,-0.5556793101131916],[126,122,70,-0.5560845471918583],[126,122,71,-0.5570640936493874],[126,122,72,-0.5593903511762619],[126,122,73,-0.5623086504638195],[126,122,74,-0.564282551407814],[126,122,75,-0.5644748508930206],[126,122,76,-0.5623977892100811],[126,122,77,-0.5580761544406414],[126,122,78,-0.5526385642588139],[126,122,79,-0.5470151044428349],[126,123,64,-0.5548058114945889],[126,123,65,-0.5570825934410095],[126,123,66,-0.5576100312173367],[126,123,67,-0.556856956332922],[126,123,68,-0.5559045523405075],[126,123,69,-0.5556793101131916],[126,123,70,-0.5560845471918583],[126,123,71,-0.5570640936493874],[126,123,72,-0.5593903511762619],[126,123,73,-0.5623086504638195],[126,123,74,-0.564282551407814],[126,123,75,-0.5644748508930206],[126,123,76,-0.5623977892100811],[126,123,77,-0.5580761544406414],[126,123,78,-0.5526385642588139],[126,123,79,-0.5470151044428349],[126,124,64,-0.5548058114945889],[126,124,65,-0.5570825934410095],[126,124,66,-0.5576100312173367],[126,124,67,-0.556856956332922],[126,124,68,-0.5559045523405075],[126,124,69,-0.5556793101131916],[126,124,70,-0.5560845471918583],[126,124,71,-0.5570640936493874],[126,124,72,-0.5593903511762619],[126,124,73,-0.5623086504638195],[126,124,74,-0.564282551407814],[126,124,75,-0.5644748508930206],[126,124,76,-0.5623977892100811],[126,124,77,-0.5580761544406414],[126,124,78,-0.5526385642588139],[126,124,79,-0.5470151044428349],[126,125,64,-0.5548058114945889],[126,125,65,-0.5570825934410095],[126,125,66,-0.5576100312173367],[126,125,67,-0.556856956332922],[126,125,68,-0.5559045523405075],[126,125,69,-0.5556793101131916],[126,125,70,-0.5560845471918583],[126,125,71,-0.5570640936493874],[126,125,72,-0.5593903511762619],[126,125,73,-0.5623086504638195],[126,125,74,-0.564282551407814],[126,125,75,-0.5644748508930206],[126,125,76,-0.5623977892100811],[126,125,77,-0.5580761544406414],[126,125,78,-0.5526385642588139],[126,125,79,-0.5470151044428349],[126,126,64,-0.5548058114945889],[126,126,65,-0.5570825934410095],[126,126,66,-0.5576100312173367],[126,126,67,-0.556856956332922],[126,126,68,-0.5559045523405075],[126,126,69,-0.5556793101131916],[126,126,70,-0.5560845471918583],[126,126,71,-0.5570640936493874],[126,126,72,-0.5593903511762619],[126,126,73,-0.5623086504638195],[126,126,74,-0.564282551407814],[126,126,75,-0.5644748508930206],[126,126,76,-0.5623977892100811],[126,126,77,-0.5580761544406414],[126,126,78,-0.5526385642588139],[126,126,79,-0.5470151044428349],[126,127,64,-0.5548058114945889],[126,127,65,-0.5570825934410095],[126,127,66,-0.5576100312173367],[126,127,67,-0.556856956332922],[126,127,68,-0.5559045523405075],[126,127,69,-0.5556793101131916],[126,127,70,-0.5560845471918583],[126,127,71,-0.5570640936493874],[126,127,72,-0.5593903511762619],[126,127,73,-0.5623086504638195],[126,127,74,-0.564282551407814],[126,127,75,-0.5644748508930206],[126,127,76,-0.5623977892100811],[126,127,77,-0.5580761544406414],[126,127,78,-0.5526385642588139],[126,127,79,-0.5470151044428349],[126,128,64,-0.5548058114945889],[126,128,65,-0.5570825934410095],[126,128,66,-0.5576100312173367],[126,128,67,-0.556856956332922],[126,128,68,-0.5559045523405075],[126,128,69,-0.5556793101131916],[126,128,70,-0.5560845471918583],[126,128,71,-0.5570640936493874],[126,128,72,-0.5593903511762619],[126,128,73,-0.5623086504638195],[126,128,74,-0.564282551407814],[126,128,75,-0.5644748508930206],[126,128,76,-0.5623977892100811],[126,128,77,-0.5580761544406414],[126,128,78,-0.5526385642588139],[126,128,79,-0.5470151044428349],[126,129,64,-0.5548058114945889],[126,129,65,-0.5570825934410095],[126,129,66,-0.5576100312173367],[126,129,67,-0.556856956332922],[126,129,68,-0.5559045523405075],[126,129,69,-0.5556793101131916],[126,129,70,-0.5560845471918583],[126,129,71,-0.5570640936493874],[126,129,72,-0.5593903511762619],[126,129,73,-0.5623086504638195],[126,129,74,-0.564282551407814],[126,129,75,-0.5644748508930206],[126,129,76,-0.5623977892100811],[126,129,77,-0.5580761544406414],[126,129,78,-0.5526385642588139],[126,129,79,-0.5470151044428349],[126,130,64,-0.5548058114945889],[126,130,65,-0.5570825934410095],[126,130,66,-0.5576100312173367],[126,130,67,-0.556856956332922],[126,130,68,-0.5559045523405075],[126,130,69,-0.5556793101131916],[126,130,70,-0.5560845471918583],[126,130,71,-0.5570640936493874],[126,130,72,-0.5593903511762619],[126,130,73,-0.5623086504638195],[126,130,74,-0.564282551407814],[126,130,75,-0.5644748508930206],[126,130,76,-0.5623977892100811],[126,130,77,-0.5580761544406414],[126,130,78,-0.5526385642588139],[126,130,79,-0.5470151044428349],[126,131,64,-0.5548058114945889],[126,131,65,-0.5570825934410095],[126,131,66,-0.5576100312173367],[126,131,67,-0.556856956332922],[126,131,68,-0.5559045523405075],[126,131,69,-0.5556793101131916],[126,131,70,-0.5560845471918583],[126,131,71,-0.5570640936493874],[126,131,72,-0.5593903511762619],[126,131,73,-0.5623086504638195],[126,131,74,-0.564282551407814],[126,131,75,-0.5644748508930206],[126,131,76,-0.5623977892100811],[126,131,77,-0.5580761544406414],[126,131,78,-0.5526385642588139],[126,131,79,-0.5470151044428349],[126,132,64,-0.5548058114945889],[126,132,65,-0.5570825934410095],[126,132,66,-0.5576100312173367],[126,132,67,-0.556856956332922],[126,132,68,-0.5559045523405075],[126,132,69,-0.5556793101131916],[126,132,70,-0.5560845471918583],[126,132,71,-0.5570640936493874],[126,132,72,-0.5593903511762619],[126,132,73,-0.5623086504638195],[126,132,74,-0.564282551407814],[126,132,75,-0.5644748508930206],[126,132,76,-0.5623977892100811],[126,132,77,-0.5580761544406414],[126,132,78,-0.5526385642588139],[126,132,79,-0.5470151044428349],[126,133,64,-0.5548058114945889],[126,133,65,-0.5570825934410095],[126,133,66,-0.5576100312173367],[126,133,67,-0.556856956332922],[126,133,68,-0.5559045523405075],[126,133,69,-0.5556793101131916],[126,133,70,-0.5560845471918583],[126,133,71,-0.5570640936493874],[126,133,72,-0.5593903511762619],[126,133,73,-0.5623086504638195],[126,133,74,-0.564282551407814],[126,133,75,-0.5644748508930206],[126,133,76,-0.5623977892100811],[126,133,77,-0.5580761544406414],[126,133,78,-0.5526385642588139],[126,133,79,-0.5470151044428349],[126,134,64,-0.5548058114945889],[126,134,65,-0.5570825934410095],[126,134,66,-0.5576100312173367],[126,134,67,-0.556856956332922],[126,134,68,-0.5559045523405075],[126,134,69,-0.5556793101131916],[126,134,70,-0.5560845471918583],[126,134,71,-0.5570640936493874],[126,134,72,-0.5593903511762619],[126,134,73,-0.5623086504638195],[126,134,74,-0.564282551407814],[126,134,75,-0.5644748508930206],[126,134,76,-0.5623977892100811],[126,134,77,-0.5580761544406414],[126,134,78,-0.5526385642588139],[126,134,79,-0.5470151044428349],[126,135,64,-0.5548058114945889],[126,135,65,-0.5570825934410095],[126,135,66,-0.5576100312173367],[126,135,67,-0.556856956332922],[126,135,68,-0.5559045523405075],[126,135,69,-0.5556793101131916],[126,135,70,-0.5560845471918583],[126,135,71,-0.5570640936493874],[126,135,72,-0.5593903511762619],[126,135,73,-0.5623086504638195],[126,135,74,-0.564282551407814],[126,135,75,-0.5644748508930206],[126,135,76,-0.5623977892100811],[126,135,77,-0.5580761544406414],[126,135,78,-0.5526385642588139],[126,135,79,-0.5470151044428349],[126,136,64,-0.5548058114945889],[126,136,65,-0.5570825934410095],[126,136,66,-0.5576100312173367],[126,136,67,-0.556856956332922],[126,136,68,-0.5559045523405075],[126,136,69,-0.5556793101131916],[126,136,70,-0.5560845471918583],[126,136,71,-0.5570640936493874],[126,136,72,-0.5593903511762619],[126,136,73,-0.5623086504638195],[126,136,74,-0.564282551407814],[126,136,75,-0.5644748508930206],[126,136,76,-0.5623977892100811],[126,136,77,-0.5580761544406414],[126,136,78,-0.5526385642588139],[126,136,79,-0.5470151044428349],[126,137,64,-0.5548058114945889],[126,137,65,-0.5570825934410095],[126,137,66,-0.5576100312173367],[126,137,67,-0.556856956332922],[126,137,68,-0.5559045523405075],[126,137,69,-0.5556793101131916],[126,137,70,-0.5560845471918583],[126,137,71,-0.5570640936493874],[126,137,72,-0.5593903511762619],[126,137,73,-0.5623086504638195],[126,137,74,-0.564282551407814],[126,137,75,-0.5644748508930206],[126,137,76,-0.5623977892100811],[126,137,77,-0.5580761544406414],[126,137,78,-0.5526385642588139],[126,137,79,-0.5470151044428349],[126,138,64,-0.5548058114945889],[126,138,65,-0.5570825934410095],[126,138,66,-0.5576100312173367],[126,138,67,-0.556856956332922],[126,138,68,-0.5559045523405075],[126,138,69,-0.5556793101131916],[126,138,70,-0.5560845471918583],[126,138,71,-0.5570640936493874],[126,138,72,-0.5593903511762619],[126,138,73,-0.5623086504638195],[126,138,74,-0.564282551407814],[126,138,75,-0.5644748508930206],[126,138,76,-0.5623977892100811],[126,138,77,-0.5580761544406414],[126,138,78,-0.5526385642588139],[126,138,79,-0.5470151044428349],[126,139,64,-0.5548058114945889],[126,139,65,-0.5570825934410095],[126,139,66,-0.5576100312173367],[126,139,67,-0.556856956332922],[126,139,68,-0.5559045523405075],[126,139,69,-0.5556793101131916],[126,139,70,-0.5560845471918583],[126,139,71,-0.5570640936493874],[126,139,72,-0.5593903511762619],[126,139,73,-0.5623086504638195],[126,139,74,-0.564282551407814],[126,139,75,-0.5644748508930206],[126,139,76,-0.5623977892100811],[126,139,77,-0.5580761544406414],[126,139,78,-0.5526385642588139],[126,139,79,-0.5470151044428349],[126,140,64,-0.5548058114945889],[126,140,65,-0.5570825934410095],[126,140,66,-0.5576100312173367],[126,140,67,-0.556856956332922],[126,140,68,-0.5559045523405075],[126,140,69,-0.5556793101131916],[126,140,70,-0.5560845471918583],[126,140,71,-0.5570640936493874],[126,140,72,-0.5593903511762619],[126,140,73,-0.5623086504638195],[126,140,74,-0.564282551407814],[126,140,75,-0.5644748508930206],[126,140,76,-0.5623977892100811],[126,140,77,-0.5580761544406414],[126,140,78,-0.5526385642588139],[126,140,79,-0.5470151044428349],[126,141,64,-0.5548058114945889],[126,141,65,-0.5570825934410095],[126,141,66,-0.5576100312173367],[126,141,67,-0.556856956332922],[126,141,68,-0.5559045523405075],[126,141,69,-0.5556793101131916],[126,141,70,-0.5560845471918583],[126,141,71,-0.5570640936493874],[126,141,72,-0.5593903511762619],[126,141,73,-0.5623086504638195],[126,141,74,-0.564282551407814],[126,141,75,-0.5644748508930206],[126,141,76,-0.5623977892100811],[126,141,77,-0.5580761544406414],[126,141,78,-0.5526385642588139],[126,141,79,-0.5470151044428349],[126,142,64,-0.5548058114945889],[126,142,65,-0.5570825934410095],[126,142,66,-0.5576100312173367],[126,142,67,-0.556856956332922],[126,142,68,-0.5559045523405075],[126,142,69,-0.5556793101131916],[126,142,70,-0.5560845471918583],[126,142,71,-0.5570640936493874],[126,142,72,-0.5593903511762619],[126,142,73,-0.5623086504638195],[126,142,74,-0.564282551407814],[126,142,75,-0.5644748508930206],[126,142,76,-0.5623977892100811],[126,142,77,-0.5580761544406414],[126,142,78,-0.5526385642588139],[126,142,79,-0.5470151044428349],[126,143,64,-0.5548058114945889],[126,143,65,-0.5570825934410095],[126,143,66,-0.5576100312173367],[126,143,67,-0.556856956332922],[126,143,68,-0.5559045523405075],[126,143,69,-0.5556793101131916],[126,143,70,-0.5560845471918583],[126,143,71,-0.5570640936493874],[126,143,72,-0.5593903511762619],[126,143,73,-0.5623086504638195],[126,143,74,-0.564282551407814],[126,143,75,-0.5644748508930206],[126,143,76,-0.5623977892100811],[126,143,77,-0.5580761544406414],[126,143,78,-0.5526385642588139],[126,143,79,-0.5470151044428349],[126,144,64,-0.5548058114945889],[126,144,65,-0.5570825934410095],[126,144,66,-0.5576100312173367],[126,144,67,-0.556856956332922],[126,144,68,-0.5559045523405075],[126,144,69,-0.5556793101131916],[126,144,70,-0.5560845471918583],[126,144,71,-0.5570640936493874],[126,144,72,-0.5593903511762619],[126,144,73,-0.5623086504638195],[126,144,74,-0.564282551407814],[126,144,75,-0.5644748508930206],[126,144,76,-0.5623977892100811],[126,144,77,-0.5580761544406414],[126,144,78,-0.5526385642588139],[126,144,79,-0.5470151044428349],[126,145,64,-0.5548058114945889],[126,145,65,-0.5570825934410095],[126,145,66,-0.5576100312173367],[126,145,67,-0.556856956332922],[126,145,68,-0.5559045523405075],[126,145,69,-0.5556793101131916],[126,145,70,-0.5560845471918583],[126,145,71,-0.5570640936493874],[126,145,72,-0.5593903511762619],[126,145,73,-0.5623086504638195],[126,145,74,-0.564282551407814],[126,145,75,-0.5644748508930206],[126,145,76,-0.5623977892100811],[126,145,77,-0.5580761544406414],[126,145,78,-0.5526385642588139],[126,145,79,-0.5470151044428349],[126,146,64,-0.5548058114945889],[126,146,65,-0.5570825934410095],[126,146,66,-0.5576100312173367],[126,146,67,-0.556856956332922],[126,146,68,-0.5559045523405075],[126,146,69,-0.5556793101131916],[126,146,70,-0.5560845471918583],[126,146,71,-0.5570640936493874],[126,146,72,-0.5593903511762619],[126,146,73,-0.5623086504638195],[126,146,74,-0.564282551407814],[126,146,75,-0.5644748508930206],[126,146,76,-0.5623977892100811],[126,146,77,-0.5580761544406414],[126,146,78,-0.5526385642588139],[126,146,79,-0.5470151044428349],[126,147,64,-0.5548058114945889],[126,147,65,-0.5570825934410095],[126,147,66,-0.5576100312173367],[126,147,67,-0.556856956332922],[126,147,68,-0.5559045523405075],[126,147,69,-0.5556793101131916],[126,147,70,-0.5560845471918583],[126,147,71,-0.5570640936493874],[126,147,72,-0.5593903511762619],[126,147,73,-0.5623086504638195],[126,147,74,-0.564282551407814],[126,147,75,-0.5644748508930206],[126,147,76,-0.5623977892100811],[126,147,77,-0.5580761544406414],[126,147,78,-0.5526385642588139],[126,147,79,-0.5470151044428349],[126,148,64,-0.5548058114945889],[126,148,65,-0.5570825934410095],[126,148,66,-0.5576100312173367],[126,148,67,-0.556856956332922],[126,148,68,-0.5559045523405075],[126,148,69,-0.5556793101131916],[126,148,70,-0.5560845471918583],[126,148,71,-0.5570640936493874],[126,148,72,-0.5593903511762619],[126,148,73,-0.5623086504638195],[126,148,74,-0.564282551407814],[126,148,75,-0.5644748508930206],[126,148,76,-0.5623977892100811],[126,148,77,-0.5580761544406414],[126,148,78,-0.5526385642588139],[126,148,79,-0.5470151044428349],[126,149,64,-0.5548058114945889],[126,149,65,-0.5570825934410095],[126,149,66,-0.5576100312173367],[126,149,67,-0.556856956332922],[126,149,68,-0.5559045523405075],[126,149,69,-0.5556793101131916],[126,149,70,-0.5560845471918583],[126,149,71,-0.5570640936493874],[126,149,72,-0.5593903511762619],[126,149,73,-0.5623086504638195],[126,149,74,-0.564282551407814],[126,149,75,-0.5644748508930206],[126,149,76,-0.5623977892100811],[126,149,77,-0.5580761544406414],[126,149,78,-0.5526385642588139],[126,149,79,-0.5470151044428349],[126,150,64,-0.5548058114945889],[126,150,65,-0.5570825934410095],[126,150,66,-0.5576100312173367],[126,150,67,-0.556856956332922],[126,150,68,-0.5559045523405075],[126,150,69,-0.5556793101131916],[126,150,70,-0.5560845471918583],[126,150,71,-0.5570640936493874],[126,150,72,-0.5593903511762619],[126,150,73,-0.5623086504638195],[126,150,74,-0.564282551407814],[126,150,75,-0.5644748508930206],[126,150,76,-0.5623977892100811],[126,150,77,-0.5580761544406414],[126,150,78,-0.5526385642588139],[126,150,79,-0.5470151044428349],[126,151,64,-0.5548058114945889],[126,151,65,-0.5570825934410095],[126,151,66,-0.5576100312173367],[126,151,67,-0.556856956332922],[126,151,68,-0.5559045523405075],[126,151,69,-0.5556793101131916],[126,151,70,-0.5560845471918583],[126,151,71,-0.5570640936493874],[126,151,72,-0.5593903511762619],[126,151,73,-0.5623086504638195],[126,151,74,-0.564282551407814],[126,151,75,-0.5644748508930206],[126,151,76,-0.5623977892100811],[126,151,77,-0.5580761544406414],[126,151,78,-0.5526385642588139],[126,151,79,-0.5470151044428349],[126,152,64,-0.5548058114945889],[126,152,65,-0.5570825934410095],[126,152,66,-0.5576100312173367],[126,152,67,-0.556856956332922],[126,152,68,-0.5559045523405075],[126,152,69,-0.5556793101131916],[126,152,70,-0.5560845471918583],[126,152,71,-0.5570640936493874],[126,152,72,-0.5593903511762619],[126,152,73,-0.5623086504638195],[126,152,74,-0.564282551407814],[126,152,75,-0.5644748508930206],[126,152,76,-0.5623977892100811],[126,152,77,-0.5580761544406414],[126,152,78,-0.5526385642588139],[126,152,79,-0.5470151044428349],[126,153,64,-0.5548058114945889],[126,153,65,-0.5570825934410095],[126,153,66,-0.5576100312173367],[126,153,67,-0.556856956332922],[126,153,68,-0.5559045523405075],[126,153,69,-0.5556793101131916],[126,153,70,-0.5560845471918583],[126,153,71,-0.5570640936493874],[126,153,72,-0.5593903511762619],[126,153,73,-0.5623086504638195],[126,153,74,-0.564282551407814],[126,153,75,-0.5644748508930206],[126,153,76,-0.5623977892100811],[126,153,77,-0.5580761544406414],[126,153,78,-0.5526385642588139],[126,153,79,-0.5470151044428349],[126,154,64,-0.5548058114945889],[126,154,65,-0.5570825934410095],[126,154,66,-0.5576100312173367],[126,154,67,-0.556856956332922],[126,154,68,-0.5559045523405075],[126,154,69,-0.5556793101131916],[126,154,70,-0.5560845471918583],[126,154,71,-0.5570640936493874],[126,154,72,-0.5593903511762619],[126,154,73,-0.5623086504638195],[126,154,74,-0.564282551407814],[126,154,75,-0.5644748508930206],[126,154,76,-0.5623977892100811],[126,154,77,-0.5580761544406414],[126,154,78,-0.5526385642588139],[126,154,79,-0.5470151044428349],[126,155,64,-0.5548058114945889],[126,155,65,-0.5570825934410095],[126,155,66,-0.5576100312173367],[126,155,67,-0.556856956332922],[126,155,68,-0.5559045523405075],[126,155,69,-0.5556793101131916],[126,155,70,-0.5560845471918583],[126,155,71,-0.5570640936493874],[126,155,72,-0.5593903511762619],[126,155,73,-0.5623086504638195],[126,155,74,-0.564282551407814],[126,155,75,-0.5644748508930206],[126,155,76,-0.5623977892100811],[126,155,77,-0.5580761544406414],[126,155,78,-0.5526385642588139],[126,155,79,-0.5470151044428349],[126,156,64,-0.5548058114945889],[126,156,65,-0.5570825934410095],[126,156,66,-0.5576100312173367],[126,156,67,-0.556856956332922],[126,156,68,-0.5559045523405075],[126,156,69,-0.5556793101131916],[126,156,70,-0.5560845471918583],[126,156,71,-0.5570640936493874],[126,156,72,-0.5593903511762619],[126,156,73,-0.5623086504638195],[126,156,74,-0.564282551407814],[126,156,75,-0.5644748508930206],[126,156,76,-0.5623977892100811],[126,156,77,-0.5580761544406414],[126,156,78,-0.5526385642588139],[126,156,79,-0.5470151044428349],[126,157,64,-0.5548058114945889],[126,157,65,-0.5570825934410095],[126,157,66,-0.5576100312173367],[126,157,67,-0.556856956332922],[126,157,68,-0.5559045523405075],[126,157,69,-0.5556793101131916],[126,157,70,-0.5560845471918583],[126,157,71,-0.5570640936493874],[126,157,72,-0.5593903511762619],[126,157,73,-0.5623086504638195],[126,157,74,-0.564282551407814],[126,157,75,-0.5644748508930206],[126,157,76,-0.5623977892100811],[126,157,77,-0.5580761544406414],[126,157,78,-0.5526385642588139],[126,157,79,-0.5470151044428349],[126,158,64,-0.5548058114945889],[126,158,65,-0.5570825934410095],[126,158,66,-0.5576100312173367],[126,158,67,-0.556856956332922],[126,158,68,-0.5559045523405075],[126,158,69,-0.5556793101131916],[126,158,70,-0.5560845471918583],[126,158,71,-0.5570640936493874],[126,158,72,-0.5593903511762619],[126,158,73,-0.5623086504638195],[126,158,74,-0.564282551407814],[126,158,75,-0.5644748508930206],[126,158,76,-0.5623977892100811],[126,158,77,-0.5580761544406414],[126,158,78,-0.5526385642588139],[126,158,79,-0.5470151044428349],[126,159,64,-0.5548058114945889],[126,159,65,-0.5570825934410095],[126,159,66,-0.5576100312173367],[126,159,67,-0.556856956332922],[126,159,68,-0.5559045523405075],[126,159,69,-0.5556793101131916],[126,159,70,-0.5560845471918583],[126,159,71,-0.5570640936493874],[126,159,72,-0.5593903511762619],[126,159,73,-0.5623086504638195],[126,159,74,-0.564282551407814],[126,159,75,-0.5644748508930206],[126,159,76,-0.5623977892100811],[126,159,77,-0.5580761544406414],[126,159,78,-0.5526385642588139],[126,159,79,-0.5470151044428349],[126,160,64,-0.5548058114945889],[126,160,65,-0.5570825934410095],[126,160,66,-0.5576100312173367],[126,160,67,-0.556856956332922],[126,160,68,-0.5559045523405075],[126,160,69,-0.5556793101131916],[126,160,70,-0.5560845471918583],[126,160,71,-0.5570640936493874],[126,160,72,-0.5593903511762619],[126,160,73,-0.5623086504638195],[126,160,74,-0.564282551407814],[126,160,75,-0.5644748508930206],[126,160,76,-0.5623977892100811],[126,160,77,-0.5580761544406414],[126,160,78,-0.5526385642588139],[126,160,79,-0.5470151044428349],[126,161,64,-0.5548058114945889],[126,161,65,-0.5570825934410095],[126,161,66,-0.5576100312173367],[126,161,67,-0.556856956332922],[126,161,68,-0.5559045523405075],[126,161,69,-0.5556793101131916],[126,161,70,-0.5560845471918583],[126,161,71,-0.5570640936493874],[126,161,72,-0.5593903511762619],[126,161,73,-0.5623086504638195],[126,161,74,-0.564282551407814],[126,161,75,-0.5644748508930206],[126,161,76,-0.5623977892100811],[126,161,77,-0.5580761544406414],[126,161,78,-0.5526385642588139],[126,161,79,-0.5470151044428349],[126,162,64,-0.5548058114945889],[126,162,65,-0.5570825934410095],[126,162,66,-0.5576100312173367],[126,162,67,-0.556856956332922],[126,162,68,-0.5559045523405075],[126,162,69,-0.5556793101131916],[126,162,70,-0.5560845471918583],[126,162,71,-0.5570640936493874],[126,162,72,-0.5593903511762619],[126,162,73,-0.5623086504638195],[126,162,74,-0.564282551407814],[126,162,75,-0.5644748508930206],[126,162,76,-0.5623977892100811],[126,162,77,-0.5580761544406414],[126,162,78,-0.5526385642588139],[126,162,79,-0.5470151044428349],[126,163,64,-0.5548058114945889],[126,163,65,-0.5570825934410095],[126,163,66,-0.5576100312173367],[126,163,67,-0.556856956332922],[126,163,68,-0.5559045523405075],[126,163,69,-0.5556793101131916],[126,163,70,-0.5560845471918583],[126,163,71,-0.5570640936493874],[126,163,72,-0.5593903511762619],[126,163,73,-0.5623086504638195],[126,163,74,-0.564282551407814],[126,163,75,-0.5644748508930206],[126,163,76,-0.5623977892100811],[126,163,77,-0.5580761544406414],[126,163,78,-0.5526385642588139],[126,163,79,-0.5470151044428349],[126,164,64,-0.5548058114945889],[126,164,65,-0.5570825934410095],[126,164,66,-0.5576100312173367],[126,164,67,-0.556856956332922],[126,164,68,-0.5559045523405075],[126,164,69,-0.5556793101131916],[126,164,70,-0.5560845471918583],[126,164,71,-0.5570640936493874],[126,164,72,-0.5593903511762619],[126,164,73,-0.5623086504638195],[126,164,74,-0.564282551407814],[126,164,75,-0.5644748508930206],[126,164,76,-0.5623977892100811],[126,164,77,-0.5580761544406414],[126,164,78,-0.5526385642588139],[126,164,79,-0.5470151044428349],[126,165,64,-0.5548058114945889],[126,165,65,-0.5570825934410095],[126,165,66,-0.5576100312173367],[126,165,67,-0.556856956332922],[126,165,68,-0.5559045523405075],[126,165,69,-0.5556793101131916],[126,165,70,-0.5560845471918583],[126,165,71,-0.5570640936493874],[126,165,72,-0.5593903511762619],[126,165,73,-0.5623086504638195],[126,165,74,-0.564282551407814],[126,165,75,-0.5644748508930206],[126,165,76,-0.5623977892100811],[126,165,77,-0.5580761544406414],[126,165,78,-0.5526385642588139],[126,165,79,-0.5470151044428349],[126,166,64,-0.5548058114945889],[126,166,65,-0.5570825934410095],[126,166,66,-0.5576100312173367],[126,166,67,-0.556856956332922],[126,166,68,-0.5559045523405075],[126,166,69,-0.5556793101131916],[126,166,70,-0.5560845471918583],[126,166,71,-0.5570640936493874],[126,166,72,-0.5593903511762619],[126,166,73,-0.5623086504638195],[126,166,74,-0.564282551407814],[126,166,75,-0.5644748508930206],[126,166,76,-0.5623977892100811],[126,166,77,-0.5580761544406414],[126,166,78,-0.5526385642588139],[126,166,79,-0.5470151044428349],[126,167,64,-0.5548058114945889],[126,167,65,-0.5570825934410095],[126,167,66,-0.5576100312173367],[126,167,67,-0.556856956332922],[126,167,68,-0.5559045523405075],[126,167,69,-0.5556793101131916],[126,167,70,-0.5560845471918583],[126,167,71,-0.5570640936493874],[126,167,72,-0.5593903511762619],[126,167,73,-0.5623086504638195],[126,167,74,-0.564282551407814],[126,167,75,-0.5644748508930206],[126,167,76,-0.5623977892100811],[126,167,77,-0.5580761544406414],[126,167,78,-0.5526385642588139],[126,167,79,-0.5470151044428349],[126,168,64,-0.5548058114945889],[126,168,65,-0.5570825934410095],[126,168,66,-0.5576100312173367],[126,168,67,-0.556856956332922],[126,168,68,-0.5559045523405075],[126,168,69,-0.5556793101131916],[126,168,70,-0.5560845471918583],[126,168,71,-0.5570640936493874],[126,168,72,-0.5593903511762619],[126,168,73,-0.5623086504638195],[126,168,74,-0.564282551407814],[126,168,75,-0.5644748508930206],[126,168,76,-0.5623977892100811],[126,168,77,-0.5580761544406414],[126,168,78,-0.5526385642588139],[126,168,79,-0.5470151044428349],[126,169,64,-0.5548058114945889],[126,169,65,-0.5570825934410095],[126,169,66,-0.5576100312173367],[126,169,67,-0.556856956332922],[126,169,68,-0.5559045523405075],[126,169,69,-0.5556793101131916],[126,169,70,-0.5560845471918583],[126,169,71,-0.5570640936493874],[126,169,72,-0.5593903511762619],[126,169,73,-0.5623086504638195],[126,169,74,-0.564282551407814],[126,169,75,-0.5644748508930206],[126,169,76,-0.5623977892100811],[126,169,77,-0.5580761544406414],[126,169,78,-0.5526385642588139],[126,169,79,-0.5470151044428349],[126,170,64,-0.5548058114945889],[126,170,65,-0.5570825934410095],[126,170,66,-0.5576100312173367],[126,170,67,-0.556856956332922],[126,170,68,-0.5559045523405075],[126,170,69,-0.5556793101131916],[126,170,70,-0.5560845471918583],[126,170,71,-0.5570640936493874],[126,170,72,-0.5593903511762619],[126,170,73,-0.5623086504638195],[126,170,74,-0.564282551407814],[126,170,75,-0.5644748508930206],[126,170,76,-0.5623977892100811],[126,170,77,-0.5580761544406414],[126,170,78,-0.5526385642588139],[126,170,79,-0.5470151044428349],[126,171,64,-0.5548058114945889],[126,171,65,-0.5570825934410095],[126,171,66,-0.5576100312173367],[126,171,67,-0.556856956332922],[126,171,68,-0.5559045523405075],[126,171,69,-0.5556793101131916],[126,171,70,-0.5560845471918583],[126,171,71,-0.5570640936493874],[126,171,72,-0.5593903511762619],[126,171,73,-0.5623086504638195],[126,171,74,-0.564282551407814],[126,171,75,-0.5644748508930206],[126,171,76,-0.5623977892100811],[126,171,77,-0.5580761544406414],[126,171,78,-0.5526385642588139],[126,171,79,-0.5470151044428349],[126,172,64,-0.5548058114945889],[126,172,65,-0.5570825934410095],[126,172,66,-0.5576100312173367],[126,172,67,-0.556856956332922],[126,172,68,-0.5559045523405075],[126,172,69,-0.5556793101131916],[126,172,70,-0.5560845471918583],[126,172,71,-0.5570640936493874],[126,172,72,-0.5593903511762619],[126,172,73,-0.5623086504638195],[126,172,74,-0.564282551407814],[126,172,75,-0.5644748508930206],[126,172,76,-0.5623977892100811],[126,172,77,-0.5580761544406414],[126,172,78,-0.5526385642588139],[126,172,79,-0.5470151044428349],[126,173,64,-0.5548058114945889],[126,173,65,-0.5570825934410095],[126,173,66,-0.5576100312173367],[126,173,67,-0.556856956332922],[126,173,68,-0.5559045523405075],[126,173,69,-0.5556793101131916],[126,173,70,-0.5560845471918583],[126,173,71,-0.5570640936493874],[126,173,72,-0.5593903511762619],[126,173,73,-0.5623086504638195],[126,173,74,-0.564282551407814],[126,173,75,-0.5644748508930206],[126,173,76,-0.5623977892100811],[126,173,77,-0.5580761544406414],[126,173,78,-0.5526385642588139],[126,173,79,-0.5470151044428349],[126,174,64,-0.5548058114945889],[126,174,65,-0.5570825934410095],[126,174,66,-0.5576100312173367],[126,174,67,-0.556856956332922],[126,174,68,-0.5559045523405075],[126,174,69,-0.5556793101131916],[126,174,70,-0.5560845471918583],[126,174,71,-0.5570640936493874],[126,174,72,-0.5593903511762619],[126,174,73,-0.5623086504638195],[126,174,74,-0.564282551407814],[126,174,75,-0.5644748508930206],[126,174,76,-0.5623977892100811],[126,174,77,-0.5580761544406414],[126,174,78,-0.5526385642588139],[126,174,79,-0.5470151044428349],[126,175,64,-0.5548058114945889],[126,175,65,-0.5570825934410095],[126,175,66,-0.5576100312173367],[126,175,67,-0.556856956332922],[126,175,68,-0.5559045523405075],[126,175,69,-0.5556793101131916],[126,175,70,-0.5560845471918583],[126,175,71,-0.5570640936493874],[126,175,72,-0.5593903511762619],[126,175,73,-0.5623086504638195],[126,175,74,-0.564282551407814],[126,175,75,-0.5644748508930206],[126,175,76,-0.5623977892100811],[126,175,77,-0.5580761544406414],[126,175,78,-0.5526385642588139],[126,175,79,-0.5470151044428349],[126,176,64,-0.5548058114945889],[126,176,65,-0.5570825934410095],[126,176,66,-0.5576100312173367],[126,176,67,-0.556856956332922],[126,176,68,-0.5559045523405075],[126,176,69,-0.5556793101131916],[126,176,70,-0.5560845471918583],[126,176,71,-0.5570640936493874],[126,176,72,-0.5593903511762619],[126,176,73,-0.5623086504638195],[126,176,74,-0.564282551407814],[126,176,75,-0.5644748508930206],[126,176,76,-0.5623977892100811],[126,176,77,-0.5580761544406414],[126,176,78,-0.5526385642588139],[126,176,79,-0.5470151044428349],[126,177,64,-0.5548058114945889],[126,177,65,-0.5570825934410095],[126,177,66,-0.5576100312173367],[126,177,67,-0.556856956332922],[126,177,68,-0.5559045523405075],[126,177,69,-0.5556793101131916],[126,177,70,-0.5560845471918583],[126,177,71,-0.5570640936493874],[126,177,72,-0.5593903511762619],[126,177,73,-0.5623086504638195],[126,177,74,-0.564282551407814],[126,177,75,-0.5644748508930206],[126,177,76,-0.5623977892100811],[126,177,77,-0.5580761544406414],[126,177,78,-0.5526385642588139],[126,177,79,-0.5470151044428349],[126,178,64,-0.5548058114945889],[126,178,65,-0.5570825934410095],[126,178,66,-0.5576100312173367],[126,178,67,-0.556856956332922],[126,178,68,-0.5559045523405075],[126,178,69,-0.5556793101131916],[126,178,70,-0.5560845471918583],[126,178,71,-0.5570640936493874],[126,178,72,-0.5593903511762619],[126,178,73,-0.5623086504638195],[126,178,74,-0.564282551407814],[126,178,75,-0.5644748508930206],[126,178,76,-0.5623977892100811],[126,178,77,-0.5580761544406414],[126,178,78,-0.5526385642588139],[126,178,79,-0.5470151044428349],[126,179,64,-0.5548058114945889],[126,179,65,-0.5570825934410095],[126,179,66,-0.5576100312173367],[126,179,67,-0.556856956332922],[126,179,68,-0.5559045523405075],[126,179,69,-0.5556793101131916],[126,179,70,-0.5560845471918583],[126,179,71,-0.5570640936493874],[126,179,72,-0.5593903511762619],[126,179,73,-0.5623086504638195],[126,179,74,-0.564282551407814],[126,179,75,-0.5644748508930206],[126,179,76,-0.5623977892100811],[126,179,77,-0.5580761544406414],[126,179,78,-0.5526385642588139],[126,179,79,-0.5470151044428349],[126,180,64,-0.5548058114945889],[126,180,65,-0.5570825934410095],[126,180,66,-0.5576100312173367],[126,180,67,-0.556856956332922],[126,180,68,-0.5559045523405075],[126,180,69,-0.5556793101131916],[126,180,70,-0.5560845471918583],[126,180,71,-0.5570640936493874],[126,180,72,-0.5593903511762619],[126,180,73,-0.5623086504638195],[126,180,74,-0.564282551407814],[126,180,75,-0.5644748508930206],[126,180,76,-0.5623977892100811],[126,180,77,-0.5580761544406414],[126,180,78,-0.5526385642588139],[126,180,79,-0.5470151044428349],[126,181,64,-0.5548058114945889],[126,181,65,-0.5570825934410095],[126,181,66,-0.5576100312173367],[126,181,67,-0.556856956332922],[126,181,68,-0.5559045523405075],[126,181,69,-0.5556793101131916],[126,181,70,-0.5560845471918583],[126,181,71,-0.5570640936493874],[126,181,72,-0.5593903511762619],[126,181,73,-0.5623086504638195],[126,181,74,-0.564282551407814],[126,181,75,-0.5644748508930206],[126,181,76,-0.5623977892100811],[126,181,77,-0.5580761544406414],[126,181,78,-0.5526385642588139],[126,181,79,-0.5470151044428349],[126,182,64,-0.5548058114945889],[126,182,65,-0.5570825934410095],[126,182,66,-0.5576100312173367],[126,182,67,-0.556856956332922],[126,182,68,-0.5559045523405075],[126,182,69,-0.5556793101131916],[126,182,70,-0.5560845471918583],[126,182,71,-0.5570640936493874],[126,182,72,-0.5593903511762619],[126,182,73,-0.5623086504638195],[126,182,74,-0.564282551407814],[126,182,75,-0.5644748508930206],[126,182,76,-0.5623977892100811],[126,182,77,-0.5580761544406414],[126,182,78,-0.5526385642588139],[126,182,79,-0.5470151044428349],[126,183,64,-0.5548058114945889],[126,183,65,-0.5570825934410095],[126,183,66,-0.5576100312173367],[126,183,67,-0.556856956332922],[126,183,68,-0.5559045523405075],[126,183,69,-0.5556793101131916],[126,183,70,-0.5560845471918583],[126,183,71,-0.5570640936493874],[126,183,72,-0.5593903511762619],[126,183,73,-0.5623086504638195],[126,183,74,-0.564282551407814],[126,183,75,-0.5644748508930206],[126,183,76,-0.5623977892100811],[126,183,77,-0.5580761544406414],[126,183,78,-0.5526385642588139],[126,183,79,-0.5470151044428349],[126,184,64,-0.5548058114945889],[126,184,65,-0.5570825934410095],[126,184,66,-0.5576100312173367],[126,184,67,-0.556856956332922],[126,184,68,-0.5559045523405075],[126,184,69,-0.5556793101131916],[126,184,70,-0.5560845471918583],[126,184,71,-0.5570640936493874],[126,184,72,-0.5593903511762619],[126,184,73,-0.5623086504638195],[126,184,74,-0.564282551407814],[126,184,75,-0.5644748508930206],[126,184,76,-0.5623977892100811],[126,184,77,-0.5580761544406414],[126,184,78,-0.5526385642588139],[126,184,79,-0.5470151044428349],[126,185,64,-0.5548058114945889],[126,185,65,-0.5570825934410095],[126,185,66,-0.5576100312173367],[126,185,67,-0.556856956332922],[126,185,68,-0.5559045523405075],[126,185,69,-0.5556793101131916],[126,185,70,-0.5560845471918583],[126,185,71,-0.5570640936493874],[126,185,72,-0.5593903511762619],[126,185,73,-0.5623086504638195],[126,185,74,-0.564282551407814],[126,185,75,-0.5644748508930206],[126,185,76,-0.5623977892100811],[126,185,77,-0.5580761544406414],[126,185,78,-0.5526385642588139],[126,185,79,-0.5470151044428349],[126,186,64,-0.5548058114945889],[126,186,65,-0.5570825934410095],[126,186,66,-0.5576100312173367],[126,186,67,-0.556856956332922],[126,186,68,-0.5559045523405075],[126,186,69,-0.5556793101131916],[126,186,70,-0.5560845471918583],[126,186,71,-0.5570640936493874],[126,186,72,-0.5593903511762619],[126,186,73,-0.5623086504638195],[126,186,74,-0.564282551407814],[126,186,75,-0.5644748508930206],[126,186,76,-0.5623977892100811],[126,186,77,-0.5580761544406414],[126,186,78,-0.5526385642588139],[126,186,79,-0.5470151044428349],[126,187,64,-0.5548058114945889],[126,187,65,-0.5570825934410095],[126,187,66,-0.5576100312173367],[126,187,67,-0.556856956332922],[126,187,68,-0.5559045523405075],[126,187,69,-0.5556793101131916],[126,187,70,-0.5560845471918583],[126,187,71,-0.5570640936493874],[126,187,72,-0.5593903511762619],[126,187,73,-0.5623086504638195],[126,187,74,-0.564282551407814],[126,187,75,-0.5644748508930206],[126,187,76,-0.5623977892100811],[126,187,77,-0.5580761544406414],[126,187,78,-0.5526385642588139],[126,187,79,-0.5470151044428349],[126,188,64,-0.5548058114945889],[126,188,65,-0.5570825934410095],[126,188,66,-0.5576100312173367],[126,188,67,-0.556856956332922],[126,188,68,-0.5559045523405075],[126,188,69,-0.5556793101131916],[126,188,70,-0.5560845471918583],[126,188,71,-0.5570640936493874],[126,188,72,-0.5593903511762619],[126,188,73,-0.5623086504638195],[126,188,74,-0.564282551407814],[126,188,75,-0.5644748508930206],[126,188,76,-0.5623977892100811],[126,188,77,-0.5580761544406414],[126,188,78,-0.5526385642588139],[126,188,79,-0.5470151044428349],[126,189,64,-0.5548058114945889],[126,189,65,-0.5570825934410095],[126,189,66,-0.5576100312173367],[126,189,67,-0.556856956332922],[126,189,68,-0.5559045523405075],[126,189,69,-0.5556793101131916],[126,189,70,-0.5560845471918583],[126,189,71,-0.5570640936493874],[126,189,72,-0.5593903511762619],[126,189,73,-0.5623086504638195],[126,189,74,-0.564282551407814],[126,189,75,-0.5644748508930206],[126,189,76,-0.5623977892100811],[126,189,77,-0.5580761544406414],[126,189,78,-0.5526385642588139],[126,189,79,-0.5470151044428349],[126,190,64,-0.5548058114945889],[126,190,65,-0.5570825934410095],[126,190,66,-0.5576100312173367],[126,190,67,-0.556856956332922],[126,190,68,-0.5559045523405075],[126,190,69,-0.5556793101131916],[126,190,70,-0.5560845471918583],[126,190,71,-0.5570640936493874],[126,190,72,-0.5593903511762619],[126,190,73,-0.5623086504638195],[126,190,74,-0.564282551407814],[126,190,75,-0.5644748508930206],[126,190,76,-0.5623977892100811],[126,190,77,-0.5580761544406414],[126,190,78,-0.5526385642588139],[126,190,79,-0.5470151044428349],[126,191,64,-0.5548058114945889],[126,191,65,-0.5570825934410095],[126,191,66,-0.5576100312173367],[126,191,67,-0.556856956332922],[126,191,68,-0.5559045523405075],[126,191,69,-0.5556793101131916],[126,191,70,-0.5560845471918583],[126,191,71,-0.5570640936493874],[126,191,72,-0.5593903511762619],[126,191,73,-0.5623086504638195],[126,191,74,-0.564282551407814],[126,191,75,-0.5644748508930206],[126,191,76,-0.5623977892100811],[126,191,77,-0.5580761544406414],[126,191,78,-0.5526385642588139],[126,191,79,-0.5470151044428349],[126,192,64,-0.5548058114945889],[126,192,65,-0.5570825934410095],[126,192,66,-0.5576100312173367],[126,192,67,-0.556856956332922],[126,192,68,-0.5559045523405075],[126,192,69,-0.5556793101131916],[126,192,70,-0.5560845471918583],[126,192,71,-0.5570640936493874],[126,192,72,-0.5593903511762619],[126,192,73,-0.5623086504638195],[126,192,74,-0.564282551407814],[126,192,75,-0.5644748508930206],[126,192,76,-0.5623977892100811],[126,192,77,-0.5580761544406414],[126,192,78,-0.5526385642588139],[126,192,79,-0.5470151044428349],[126,193,64,-0.5548058114945889],[126,193,65,-0.5570825934410095],[126,193,66,-0.5576100312173367],[126,193,67,-0.556856956332922],[126,193,68,-0.5559045523405075],[126,193,69,-0.5556793101131916],[126,193,70,-0.5560845471918583],[126,193,71,-0.5570640936493874],[126,193,72,-0.5593903511762619],[126,193,73,-0.5623086504638195],[126,193,74,-0.564282551407814],[126,193,75,-0.5644748508930206],[126,193,76,-0.5623977892100811],[126,193,77,-0.5580761544406414],[126,193,78,-0.5526385642588139],[126,193,79,-0.5470151044428349],[126,194,64,-0.5548058114945889],[126,194,65,-0.5570825934410095],[126,194,66,-0.5576100312173367],[126,194,67,-0.556856956332922],[126,194,68,-0.5559045523405075],[126,194,69,-0.5556793101131916],[126,194,70,-0.5560845471918583],[126,194,71,-0.5570640936493874],[126,194,72,-0.5593903511762619],[126,194,73,-0.5623086504638195],[126,194,74,-0.564282551407814],[126,194,75,-0.5644748508930206],[126,194,76,-0.5623977892100811],[126,194,77,-0.5580761544406414],[126,194,78,-0.5526385642588139],[126,194,79,-0.5470151044428349],[126,195,64,-0.5548058114945889],[126,195,65,-0.5570825934410095],[126,195,66,-0.5576100312173367],[126,195,67,-0.556856956332922],[126,195,68,-0.5559045523405075],[126,195,69,-0.5556793101131916],[126,195,70,-0.5560845471918583],[126,195,71,-0.5570640936493874],[126,195,72,-0.5593903511762619],[126,195,73,-0.5623086504638195],[126,195,74,-0.564282551407814],[126,195,75,-0.5644748508930206],[126,195,76,-0.5623977892100811],[126,195,77,-0.5580761544406414],[126,195,78,-0.5526385642588139],[126,195,79,-0.5470151044428349],[126,196,64,-0.5548058114945889],[126,196,65,-0.5570825934410095],[126,196,66,-0.5576100312173367],[126,196,67,-0.556856956332922],[126,196,68,-0.5559045523405075],[126,196,69,-0.5556793101131916],[126,196,70,-0.5560845471918583],[126,196,71,-0.5570640936493874],[126,196,72,-0.5593903511762619],[126,196,73,-0.5623086504638195],[126,196,74,-0.564282551407814],[126,196,75,-0.5644748508930206],[126,196,76,-0.5623977892100811],[126,196,77,-0.5580761544406414],[126,196,78,-0.5526385642588139],[126,196,79,-0.5470151044428349],[126,197,64,-0.5548058114945889],[126,197,65,-0.5570825934410095],[126,197,66,-0.5576100312173367],[126,197,67,-0.556856956332922],[126,197,68,-0.5559045523405075],[126,197,69,-0.5556793101131916],[126,197,70,-0.5560845471918583],[126,197,71,-0.5570640936493874],[126,197,72,-0.5593903511762619],[126,197,73,-0.5623086504638195],[126,197,74,-0.564282551407814],[126,197,75,-0.5644748508930206],[126,197,76,-0.5623977892100811],[126,197,77,-0.5580761544406414],[126,197,78,-0.5526385642588139],[126,197,79,-0.5470151044428349],[126,198,64,-0.5548058114945889],[126,198,65,-0.5570825934410095],[126,198,66,-0.5576100312173367],[126,198,67,-0.556856956332922],[126,198,68,-0.5559045523405075],[126,198,69,-0.5556793101131916],[126,198,70,-0.5560845471918583],[126,198,71,-0.5570640936493874],[126,198,72,-0.5593903511762619],[126,198,73,-0.5623086504638195],[126,198,74,-0.564282551407814],[126,198,75,-0.5644748508930206],[126,198,76,-0.5623977892100811],[126,198,77,-0.5580761544406414],[126,198,78,-0.5526385642588139],[126,198,79,-0.5470151044428349],[126,199,64,-0.5548058114945889],[126,199,65,-0.5570825934410095],[126,199,66,-0.5576100312173367],[126,199,67,-0.556856956332922],[126,199,68,-0.5559045523405075],[126,199,69,-0.5556793101131916],[126,199,70,-0.5560845471918583],[126,199,71,-0.5570640936493874],[126,199,72,-0.5593903511762619],[126,199,73,-0.5623086504638195],[126,199,74,-0.564282551407814],[126,199,75,-0.5644748508930206],[126,199,76,-0.5623977892100811],[126,199,77,-0.5580761544406414],[126,199,78,-0.5526385642588139],[126,199,79,-0.5470151044428349],[126,200,64,-0.5548058114945889],[126,200,65,-0.5570825934410095],[126,200,66,-0.5576100312173367],[126,200,67,-0.556856956332922],[126,200,68,-0.5559045523405075],[126,200,69,-0.5556793101131916],[126,200,70,-0.5560845471918583],[126,200,71,-0.5570640936493874],[126,200,72,-0.5593903511762619],[126,200,73,-0.5623086504638195],[126,200,74,-0.564282551407814],[126,200,75,-0.5644748508930206],[126,200,76,-0.5623977892100811],[126,200,77,-0.5580761544406414],[126,200,78,-0.5526385642588139],[126,200,79,-0.5470151044428349],[126,201,64,-0.5548058114945889],[126,201,65,-0.5570825934410095],[126,201,66,-0.5576100312173367],[126,201,67,-0.556856956332922],[126,201,68,-0.5559045523405075],[126,201,69,-0.5556793101131916],[126,201,70,-0.5560845471918583],[126,201,71,-0.5570640936493874],[126,201,72,-0.5593903511762619],[126,201,73,-0.5623086504638195],[126,201,74,-0.564282551407814],[126,201,75,-0.5644748508930206],[126,201,76,-0.5623977892100811],[126,201,77,-0.5580761544406414],[126,201,78,-0.5526385642588139],[126,201,79,-0.5470151044428349],[126,202,64,-0.5548058114945889],[126,202,65,-0.5570825934410095],[126,202,66,-0.5576100312173367],[126,202,67,-0.556856956332922],[126,202,68,-0.5559045523405075],[126,202,69,-0.5556793101131916],[126,202,70,-0.5560845471918583],[126,202,71,-0.5570640936493874],[126,202,72,-0.5593903511762619],[126,202,73,-0.5623086504638195],[126,202,74,-0.564282551407814],[126,202,75,-0.5644748508930206],[126,202,76,-0.5623977892100811],[126,202,77,-0.5580761544406414],[126,202,78,-0.5526385642588139],[126,202,79,-0.5470151044428349],[126,203,64,-0.5548058114945889],[126,203,65,-0.5570825934410095],[126,203,66,-0.5576100312173367],[126,203,67,-0.556856956332922],[126,203,68,-0.5559045523405075],[126,203,69,-0.5556793101131916],[126,203,70,-0.5560845471918583],[126,203,71,-0.5570640936493874],[126,203,72,-0.5593903511762619],[126,203,73,-0.5623086504638195],[126,203,74,-0.564282551407814],[126,203,75,-0.5644748508930206],[126,203,76,-0.5623977892100811],[126,203,77,-0.5580761544406414],[126,203,78,-0.5526385642588139],[126,203,79,-0.5470151044428349],[126,204,64,-0.5548058114945889],[126,204,65,-0.5570825934410095],[126,204,66,-0.5576100312173367],[126,204,67,-0.556856956332922],[126,204,68,-0.5559045523405075],[126,204,69,-0.5556793101131916],[126,204,70,-0.5560845471918583],[126,204,71,-0.5570640936493874],[126,204,72,-0.5593903511762619],[126,204,73,-0.5623086504638195],[126,204,74,-0.564282551407814],[126,204,75,-0.5644748508930206],[126,204,76,-0.5623977892100811],[126,204,77,-0.5580761544406414],[126,204,78,-0.5526385642588139],[126,204,79,-0.5470151044428349],[126,205,64,-0.5548058114945889],[126,205,65,-0.5570825934410095],[126,205,66,-0.5576100312173367],[126,205,67,-0.556856956332922],[126,205,68,-0.5559045523405075],[126,205,69,-0.5556793101131916],[126,205,70,-0.5560845471918583],[126,205,71,-0.5570640936493874],[126,205,72,-0.5593903511762619],[126,205,73,-0.5623086504638195],[126,205,74,-0.564282551407814],[126,205,75,-0.5644748508930206],[126,205,76,-0.5623977892100811],[126,205,77,-0.5580761544406414],[126,205,78,-0.5526385642588139],[126,205,79,-0.5470151044428349],[126,206,64,-0.5548058114945889],[126,206,65,-0.5570825934410095],[126,206,66,-0.5576100312173367],[126,206,67,-0.556856956332922],[126,206,68,-0.5559045523405075],[126,206,69,-0.5556793101131916],[126,206,70,-0.5560845471918583],[126,206,71,-0.5570640936493874],[126,206,72,-0.5593903511762619],[126,206,73,-0.5623086504638195],[126,206,74,-0.564282551407814],[126,206,75,-0.5644748508930206],[126,206,76,-0.5623977892100811],[126,206,77,-0.5580761544406414],[126,206,78,-0.5526385642588139],[126,206,79,-0.5470151044428349],[126,207,64,-0.5548058114945889],[126,207,65,-0.5570825934410095],[126,207,66,-0.5576100312173367],[126,207,67,-0.556856956332922],[126,207,68,-0.5559045523405075],[126,207,69,-0.5556793101131916],[126,207,70,-0.5560845471918583],[126,207,71,-0.5570640936493874],[126,207,72,-0.5593903511762619],[126,207,73,-0.5623086504638195],[126,207,74,-0.564282551407814],[126,207,75,-0.5644748508930206],[126,207,76,-0.5623977892100811],[126,207,77,-0.5580761544406414],[126,207,78,-0.5526385642588139],[126,207,79,-0.5470151044428349],[126,208,64,-0.5548058114945889],[126,208,65,-0.5570825934410095],[126,208,66,-0.5576100312173367],[126,208,67,-0.556856956332922],[126,208,68,-0.5559045523405075],[126,208,69,-0.5556793101131916],[126,208,70,-0.5560845471918583],[126,208,71,-0.5570640936493874],[126,208,72,-0.5593903511762619],[126,208,73,-0.5623086504638195],[126,208,74,-0.564282551407814],[126,208,75,-0.5644748508930206],[126,208,76,-0.5623977892100811],[126,208,77,-0.5580761544406414],[126,208,78,-0.5526385642588139],[126,208,79,-0.5470151044428349],[126,209,64,-0.5548058114945889],[126,209,65,-0.5570825934410095],[126,209,66,-0.5576100312173367],[126,209,67,-0.556856956332922],[126,209,68,-0.5559045523405075],[126,209,69,-0.5556793101131916],[126,209,70,-0.5560845471918583],[126,209,71,-0.5570640936493874],[126,209,72,-0.5593903511762619],[126,209,73,-0.5623086504638195],[126,209,74,-0.564282551407814],[126,209,75,-0.5644748508930206],[126,209,76,-0.5623977892100811],[126,209,77,-0.5580761544406414],[126,209,78,-0.5526385642588139],[126,209,79,-0.5470151044428349],[126,210,64,-0.5548058114945889],[126,210,65,-0.5570825934410095],[126,210,66,-0.5576100312173367],[126,210,67,-0.556856956332922],[126,210,68,-0.5559045523405075],[126,210,69,-0.5556793101131916],[126,210,70,-0.5560845471918583],[126,210,71,-0.5570640936493874],[126,210,72,-0.5593903511762619],[126,210,73,-0.5623086504638195],[126,210,74,-0.564282551407814],[126,210,75,-0.5644748508930206],[126,210,76,-0.5623977892100811],[126,210,77,-0.5580761544406414],[126,210,78,-0.5526385642588139],[126,210,79,-0.5470151044428349],[126,211,64,-0.5548058114945889],[126,211,65,-0.5570825934410095],[126,211,66,-0.5576100312173367],[126,211,67,-0.556856956332922],[126,211,68,-0.5559045523405075],[126,211,69,-0.5556793101131916],[126,211,70,-0.5560845471918583],[126,211,71,-0.5570640936493874],[126,211,72,-0.5593903511762619],[126,211,73,-0.5623086504638195],[126,211,74,-0.564282551407814],[126,211,75,-0.5644748508930206],[126,211,76,-0.5623977892100811],[126,211,77,-0.5580761544406414],[126,211,78,-0.5526385642588139],[126,211,79,-0.5470151044428349],[126,212,64,-0.5548058114945889],[126,212,65,-0.5570825934410095],[126,212,66,-0.5576100312173367],[126,212,67,-0.556856956332922],[126,212,68,-0.5559045523405075],[126,212,69,-0.5556793101131916],[126,212,70,-0.5560845471918583],[126,212,71,-0.5570640936493874],[126,212,72,-0.5593903511762619],[126,212,73,-0.5623086504638195],[126,212,74,-0.564282551407814],[126,212,75,-0.5644748508930206],[126,212,76,-0.5623977892100811],[126,212,77,-0.5580761544406414],[126,212,78,-0.5526385642588139],[126,212,79,-0.5470151044428349],[126,213,64,-0.5548058114945889],[126,213,65,-0.5570825934410095],[126,213,66,-0.5576100312173367],[126,213,67,-0.556856956332922],[126,213,68,-0.5559045523405075],[126,213,69,-0.5556793101131916],[126,213,70,-0.5560845471918583],[126,213,71,-0.5570640936493874],[126,213,72,-0.5593903511762619],[126,213,73,-0.5623086504638195],[126,213,74,-0.564282551407814],[126,213,75,-0.5644748508930206],[126,213,76,-0.5623977892100811],[126,213,77,-0.5580761544406414],[126,213,78,-0.5526385642588139],[126,213,79,-0.5470151044428349],[126,214,64,-0.5548058114945889],[126,214,65,-0.5570825934410095],[126,214,66,-0.5576100312173367],[126,214,67,-0.556856956332922],[126,214,68,-0.5559045523405075],[126,214,69,-0.5556793101131916],[126,214,70,-0.5560845471918583],[126,214,71,-0.5570640936493874],[126,214,72,-0.5593903511762619],[126,214,73,-0.5623086504638195],[126,214,74,-0.564282551407814],[126,214,75,-0.5644748508930206],[126,214,76,-0.5623977892100811],[126,214,77,-0.5580761544406414],[126,214,78,-0.5526385642588139],[126,214,79,-0.5470151044428349],[126,215,64,-0.5548058114945889],[126,215,65,-0.5570825934410095],[126,215,66,-0.5576100312173367],[126,215,67,-0.556856956332922],[126,215,68,-0.5559045523405075],[126,215,69,-0.5556793101131916],[126,215,70,-0.5560845471918583],[126,215,71,-0.5570640936493874],[126,215,72,-0.5593903511762619],[126,215,73,-0.5623086504638195],[126,215,74,-0.564282551407814],[126,215,75,-0.5644748508930206],[126,215,76,-0.5623977892100811],[126,215,77,-0.5580761544406414],[126,215,78,-0.5526385642588139],[126,215,79,-0.5470151044428349],[126,216,64,-0.5548058114945889],[126,216,65,-0.5570825934410095],[126,216,66,-0.5576100312173367],[126,216,67,-0.556856956332922],[126,216,68,-0.5559045523405075],[126,216,69,-0.5556793101131916],[126,216,70,-0.5560845471918583],[126,216,71,-0.5570640936493874],[126,216,72,-0.5593903511762619],[126,216,73,-0.5623086504638195],[126,216,74,-0.564282551407814],[126,216,75,-0.5644748508930206],[126,216,76,-0.5623977892100811],[126,216,77,-0.5580761544406414],[126,216,78,-0.5526385642588139],[126,216,79,-0.5470151044428349],[126,217,64,-0.5548058114945889],[126,217,65,-0.5570825934410095],[126,217,66,-0.5576100312173367],[126,217,67,-0.556856956332922],[126,217,68,-0.5559045523405075],[126,217,69,-0.5556793101131916],[126,217,70,-0.5560845471918583],[126,217,71,-0.5570640936493874],[126,217,72,-0.5593903511762619],[126,217,73,-0.5623086504638195],[126,217,74,-0.564282551407814],[126,217,75,-0.5644748508930206],[126,217,76,-0.5623977892100811],[126,217,77,-0.5580761544406414],[126,217,78,-0.5526385642588139],[126,217,79,-0.5470151044428349],[126,218,64,-0.5548058114945889],[126,218,65,-0.5570825934410095],[126,218,66,-0.5576100312173367],[126,218,67,-0.556856956332922],[126,218,68,-0.5559045523405075],[126,218,69,-0.5556793101131916],[126,218,70,-0.5560845471918583],[126,218,71,-0.5570640936493874],[126,218,72,-0.5593903511762619],[126,218,73,-0.5623086504638195],[126,218,74,-0.564282551407814],[126,218,75,-0.5644748508930206],[126,218,76,-0.5623977892100811],[126,218,77,-0.5580761544406414],[126,218,78,-0.5526385642588139],[126,218,79,-0.5470151044428349],[126,219,64,-0.5548058114945889],[126,219,65,-0.5570825934410095],[126,219,66,-0.5576100312173367],[126,219,67,-0.556856956332922],[126,219,68,-0.5559045523405075],[126,219,69,-0.5556793101131916],[126,219,70,-0.5560845471918583],[126,219,71,-0.5570640936493874],[126,219,72,-0.5593903511762619],[126,219,73,-0.5623086504638195],[126,219,74,-0.564282551407814],[126,219,75,-0.5644748508930206],[126,219,76,-0.5623977892100811],[126,219,77,-0.5580761544406414],[126,219,78,-0.5526385642588139],[126,219,79,-0.5470151044428349],[126,220,64,-0.5548058114945889],[126,220,65,-0.5570825934410095],[126,220,66,-0.5576100312173367],[126,220,67,-0.556856956332922],[126,220,68,-0.5559045523405075],[126,220,69,-0.5556793101131916],[126,220,70,-0.5560845471918583],[126,220,71,-0.5570640936493874],[126,220,72,-0.5593903511762619],[126,220,73,-0.5623086504638195],[126,220,74,-0.564282551407814],[126,220,75,-0.5644748508930206],[126,220,76,-0.5623977892100811],[126,220,77,-0.5580761544406414],[126,220,78,-0.5526385642588139],[126,220,79,-0.5470151044428349],[126,221,64,-0.5548058114945889],[126,221,65,-0.5570825934410095],[126,221,66,-0.5576100312173367],[126,221,67,-0.556856956332922],[126,221,68,-0.5559045523405075],[126,221,69,-0.5556793101131916],[126,221,70,-0.5560845471918583],[126,221,71,-0.5570640936493874],[126,221,72,-0.5593903511762619],[126,221,73,-0.5623086504638195],[126,221,74,-0.564282551407814],[126,221,75,-0.5644748508930206],[126,221,76,-0.5623977892100811],[126,221,77,-0.5580761544406414],[126,221,78,-0.5526385642588139],[126,221,79,-0.5470151044428349],[126,222,64,-0.5548058114945889],[126,222,65,-0.5570825934410095],[126,222,66,-0.5576100312173367],[126,222,67,-0.556856956332922],[126,222,68,-0.5559045523405075],[126,222,69,-0.5556793101131916],[126,222,70,-0.5560845471918583],[126,222,71,-0.5570640936493874],[126,222,72,-0.5593903511762619],[126,222,73,-0.5623086504638195],[126,222,74,-0.564282551407814],[126,222,75,-0.5644748508930206],[126,222,76,-0.5623977892100811],[126,222,77,-0.5580761544406414],[126,222,78,-0.5526385642588139],[126,222,79,-0.5470151044428349],[126,223,64,-0.5548058114945889],[126,223,65,-0.5570825934410095],[126,223,66,-0.5576100312173367],[126,223,67,-0.556856956332922],[126,223,68,-0.5559045523405075],[126,223,69,-0.5556793101131916],[126,223,70,-0.5560845471918583],[126,223,71,-0.5570640936493874],[126,223,72,-0.5593903511762619],[126,223,73,-0.5623086504638195],[126,223,74,-0.564282551407814],[126,223,75,-0.5644748508930206],[126,223,76,-0.5623977892100811],[126,223,77,-0.5580761544406414],[126,223,78,-0.5526385642588139],[126,223,79,-0.5470151044428349],[126,224,64,-0.5548058114945889],[126,224,65,-0.5570825934410095],[126,224,66,-0.5576100312173367],[126,224,67,-0.556856956332922],[126,224,68,-0.5559045523405075],[126,224,69,-0.5556793101131916],[126,224,70,-0.5560845471918583],[126,224,71,-0.5570640936493874],[126,224,72,-0.5593903511762619],[126,224,73,-0.5623086504638195],[126,224,74,-0.564282551407814],[126,224,75,-0.5644748508930206],[126,224,76,-0.5623977892100811],[126,224,77,-0.5580761544406414],[126,224,78,-0.5526385642588139],[126,224,79,-0.5470151044428349],[126,225,64,-0.5548058114945889],[126,225,65,-0.5570825934410095],[126,225,66,-0.5576100312173367],[126,225,67,-0.556856956332922],[126,225,68,-0.5559045523405075],[126,225,69,-0.5556793101131916],[126,225,70,-0.5560845471918583],[126,225,71,-0.5570640936493874],[126,225,72,-0.5593903511762619],[126,225,73,-0.5623086504638195],[126,225,74,-0.564282551407814],[126,225,75,-0.5644748508930206],[126,225,76,-0.5623977892100811],[126,225,77,-0.5580761544406414],[126,225,78,-0.5526385642588139],[126,225,79,-0.5470151044428349],[126,226,64,-0.5548058114945889],[126,226,65,-0.5570825934410095],[126,226,66,-0.5576100312173367],[126,226,67,-0.556856956332922],[126,226,68,-0.5559045523405075],[126,226,69,-0.5556793101131916],[126,226,70,-0.5560845471918583],[126,226,71,-0.5570640936493874],[126,226,72,-0.5593903511762619],[126,226,73,-0.5623086504638195],[126,226,74,-0.564282551407814],[126,226,75,-0.5644748508930206],[126,226,76,-0.5623977892100811],[126,226,77,-0.5580761544406414],[126,226,78,-0.5526385642588139],[126,226,79,-0.5470151044428349],[126,227,64,-0.5548058114945889],[126,227,65,-0.5570825934410095],[126,227,66,-0.5576100312173367],[126,227,67,-0.556856956332922],[126,227,68,-0.5559045523405075],[126,227,69,-0.5556793101131916],[126,227,70,-0.5560845471918583],[126,227,71,-0.5570640936493874],[126,227,72,-0.5593903511762619],[126,227,73,-0.5623086504638195],[126,227,74,-0.564282551407814],[126,227,75,-0.5644748508930206],[126,227,76,-0.5623977892100811],[126,227,77,-0.5580761544406414],[126,227,78,-0.5526385642588139],[126,227,79,-0.5470151044428349],[126,228,64,-0.5548058114945889],[126,228,65,-0.5570825934410095],[126,228,66,-0.5576100312173367],[126,228,67,-0.556856956332922],[126,228,68,-0.5559045523405075],[126,228,69,-0.5556793101131916],[126,228,70,-0.5560845471918583],[126,228,71,-0.5570640936493874],[126,228,72,-0.5593903511762619],[126,228,73,-0.5623086504638195],[126,228,74,-0.564282551407814],[126,228,75,-0.5644748508930206],[126,228,76,-0.5623977892100811],[126,228,77,-0.5580761544406414],[126,228,78,-0.5526385642588139],[126,228,79,-0.5470151044428349],[126,229,64,-0.5548058114945889],[126,229,65,-0.5570825934410095],[126,229,66,-0.5576100312173367],[126,229,67,-0.556856956332922],[126,229,68,-0.5559045523405075],[126,229,69,-0.5556793101131916],[126,229,70,-0.5560845471918583],[126,229,71,-0.5570640936493874],[126,229,72,-0.5593903511762619],[126,229,73,-0.5623086504638195],[126,229,74,-0.564282551407814],[126,229,75,-0.5644748508930206],[126,229,76,-0.5623977892100811],[126,229,77,-0.5580761544406414],[126,229,78,-0.5526385642588139],[126,229,79,-0.5470151044428349],[126,230,64,-0.5548058114945889],[126,230,65,-0.5570825934410095],[126,230,66,-0.5576100312173367],[126,230,67,-0.556856956332922],[126,230,68,-0.5559045523405075],[126,230,69,-0.5556793101131916],[126,230,70,-0.5560845471918583],[126,230,71,-0.5570640936493874],[126,230,72,-0.5593903511762619],[126,230,73,-0.5623086504638195],[126,230,74,-0.564282551407814],[126,230,75,-0.5644748508930206],[126,230,76,-0.5623977892100811],[126,230,77,-0.5580761544406414],[126,230,78,-0.5526385642588139],[126,230,79,-0.5470151044428349],[126,231,64,-0.5548058114945889],[126,231,65,-0.5570825934410095],[126,231,66,-0.5576100312173367],[126,231,67,-0.556856956332922],[126,231,68,-0.5559045523405075],[126,231,69,-0.5556793101131916],[126,231,70,-0.5560845471918583],[126,231,71,-0.5570640936493874],[126,231,72,-0.5593903511762619],[126,231,73,-0.5623086504638195],[126,231,74,-0.564282551407814],[126,231,75,-0.5644748508930206],[126,231,76,-0.5623977892100811],[126,231,77,-0.5580761544406414],[126,231,78,-0.5526385642588139],[126,231,79,-0.5470151044428349],[126,232,64,-0.5548058114945889],[126,232,65,-0.5570825934410095],[126,232,66,-0.5576100312173367],[126,232,67,-0.556856956332922],[126,232,68,-0.5559045523405075],[126,232,69,-0.5556793101131916],[126,232,70,-0.5560845471918583],[126,232,71,-0.5570640936493874],[126,232,72,-0.5593903511762619],[126,232,73,-0.5623086504638195],[126,232,74,-0.564282551407814],[126,232,75,-0.5644748508930206],[126,232,76,-0.5623977892100811],[126,232,77,-0.5580761544406414],[126,232,78,-0.5526385642588139],[126,232,79,-0.5470151044428349],[126,233,64,-0.5548058114945889],[126,233,65,-0.5570825934410095],[126,233,66,-0.5576100312173367],[126,233,67,-0.556856956332922],[126,233,68,-0.5559045523405075],[126,233,69,-0.5556793101131916],[126,233,70,-0.5560845471918583],[126,233,71,-0.5570640936493874],[126,233,72,-0.5593903511762619],[126,233,73,-0.5623086504638195],[126,233,74,-0.564282551407814],[126,233,75,-0.5644748508930206],[126,233,76,-0.5623977892100811],[126,233,77,-0.5580761544406414],[126,233,78,-0.5526385642588139],[126,233,79,-0.5470151044428349],[126,234,64,-0.5548058114945889],[126,234,65,-0.5570825934410095],[126,234,66,-0.5576100312173367],[126,234,67,-0.556856956332922],[126,234,68,-0.5559045523405075],[126,234,69,-0.5556793101131916],[126,234,70,-0.5560845471918583],[126,234,71,-0.5570640936493874],[126,234,72,-0.5593903511762619],[126,234,73,-0.5623086504638195],[126,234,74,-0.564282551407814],[126,234,75,-0.5644748508930206],[126,234,76,-0.5623977892100811],[126,234,77,-0.5580761544406414],[126,234,78,-0.5526385642588139],[126,234,79,-0.5470151044428349],[126,235,64,-0.5548058114945889],[126,235,65,-0.5570825934410095],[126,235,66,-0.5576100312173367],[126,235,67,-0.556856956332922],[126,235,68,-0.5559045523405075],[126,235,69,-0.5556793101131916],[126,235,70,-0.5560845471918583],[126,235,71,-0.5570640936493874],[126,235,72,-0.5593903511762619],[126,235,73,-0.5623086504638195],[126,235,74,-0.564282551407814],[126,235,75,-0.5644748508930206],[126,235,76,-0.5623977892100811],[126,235,77,-0.5580761544406414],[126,235,78,-0.5526385642588139],[126,235,79,-0.5470151044428349],[126,236,64,-0.5548058114945889],[126,236,65,-0.5570825934410095],[126,236,66,-0.5576100312173367],[126,236,67,-0.556856956332922],[126,236,68,-0.5559045523405075],[126,236,69,-0.5556793101131916],[126,236,70,-0.5560845471918583],[126,236,71,-0.5570640936493874],[126,236,72,-0.5593903511762619],[126,236,73,-0.5623086504638195],[126,236,74,-0.564282551407814],[126,236,75,-0.5644748508930206],[126,236,76,-0.5623977892100811],[126,236,77,-0.5580761544406414],[126,236,78,-0.5526385642588139],[126,236,79,-0.5470151044428349],[126,237,64,-0.5548058114945889],[126,237,65,-0.5570825934410095],[126,237,66,-0.5576100312173367],[126,237,67,-0.556856956332922],[126,237,68,-0.5559045523405075],[126,237,69,-0.5556793101131916],[126,237,70,-0.5560845471918583],[126,237,71,-0.5570640936493874],[126,237,72,-0.5593903511762619],[126,237,73,-0.5623086504638195],[126,237,74,-0.564282551407814],[126,237,75,-0.5644748508930206],[126,237,76,-0.5623977892100811],[126,237,77,-0.5580761544406414],[126,237,78,-0.5526385642588139],[126,237,79,-0.5470151044428349],[126,238,64,-0.5548058114945889],[126,238,65,-0.5570825934410095],[126,238,66,-0.5576100312173367],[126,238,67,-0.556856956332922],[126,238,68,-0.5559045523405075],[126,238,69,-0.5556793101131916],[126,238,70,-0.5560845471918583],[126,238,71,-0.5570640936493874],[126,238,72,-0.5593903511762619],[126,238,73,-0.5623086504638195],[126,238,74,-0.564282551407814],[126,238,75,-0.5644748508930206],[126,238,76,-0.5623977892100811],[126,238,77,-0.5580761544406414],[126,238,78,-0.5526385642588139],[126,238,79,-0.5470151044428349],[126,239,64,-0.5548058114945889],[126,239,65,-0.5570825934410095],[126,239,66,-0.5576100312173367],[126,239,67,-0.556856956332922],[126,239,68,-0.5559045523405075],[126,239,69,-0.5556793101131916],[126,239,70,-0.5560845471918583],[126,239,71,-0.5570640936493874],[126,239,72,-0.5593903511762619],[126,239,73,-0.5623086504638195],[126,239,74,-0.564282551407814],[126,239,75,-0.5644748508930206],[126,239,76,-0.5623977892100811],[126,239,77,-0.5580761544406414],[126,239,78,-0.5526385642588139],[126,239,79,-0.5470151044428349],[126,240,64,-0.5548058114945889],[126,240,65,-0.5570825934410095],[126,240,66,-0.5576100312173367],[126,240,67,-0.556856956332922],[126,240,68,-0.5559045523405075],[126,240,69,-0.5556793101131916],[126,240,70,-0.5560845471918583],[126,240,71,-0.5570640936493874],[126,240,72,-0.5593903511762619],[126,240,73,-0.5623086504638195],[126,240,74,-0.564282551407814],[126,240,75,-0.5644748508930206],[126,240,76,-0.5623977892100811],[126,240,77,-0.5580761544406414],[126,240,78,-0.5526385642588139],[126,240,79,-0.5470151044428349],[126,241,64,-0.5548058114945889],[126,241,65,-0.5570825934410095],[126,241,66,-0.5576100312173367],[126,241,67,-0.556856956332922],[126,241,68,-0.5559045523405075],[126,241,69,-0.5556793101131916],[126,241,70,-0.5560845471918583],[126,241,71,-0.5570640936493874],[126,241,72,-0.5593903511762619],[126,241,73,-0.5623086504638195],[126,241,74,-0.564282551407814],[126,241,75,-0.5644748508930206],[126,241,76,-0.5623977892100811],[126,241,77,-0.5580761544406414],[126,241,78,-0.5526385642588139],[126,241,79,-0.5470151044428349],[126,242,64,-0.5548058114945889],[126,242,65,-0.5570825934410095],[126,242,66,-0.5576100312173367],[126,242,67,-0.556856956332922],[126,242,68,-0.5559045523405075],[126,242,69,-0.5556793101131916],[126,242,70,-0.5560845471918583],[126,242,71,-0.5570640936493874],[126,242,72,-0.5593903511762619],[126,242,73,-0.5623086504638195],[126,242,74,-0.564282551407814],[126,242,75,-0.5644748508930206],[126,242,76,-0.5623977892100811],[126,242,77,-0.5580761544406414],[126,242,78,-0.5526385642588139],[126,242,79,-0.5470151044428349],[126,243,64,-0.5548058114945889],[126,243,65,-0.5570825934410095],[126,243,66,-0.5576100312173367],[126,243,67,-0.556856956332922],[126,243,68,-0.5559045523405075],[126,243,69,-0.5556793101131916],[126,243,70,-0.5560845471918583],[126,243,71,-0.5570640936493874],[126,243,72,-0.5593903511762619],[126,243,73,-0.5623086504638195],[126,243,74,-0.564282551407814],[126,243,75,-0.5644748508930206],[126,243,76,-0.5623977892100811],[126,243,77,-0.5580761544406414],[126,243,78,-0.5526385642588139],[126,243,79,-0.5470151044428349],[126,244,64,-0.5548058114945889],[126,244,65,-0.5570825934410095],[126,244,66,-0.5576100312173367],[126,244,67,-0.556856956332922],[126,244,68,-0.5559045523405075],[126,244,69,-0.5556793101131916],[126,244,70,-0.5560845471918583],[126,244,71,-0.5570640936493874],[126,244,72,-0.5593903511762619],[126,244,73,-0.5623086504638195],[126,244,74,-0.564282551407814],[126,244,75,-0.5644748508930206],[126,244,76,-0.5623977892100811],[126,244,77,-0.5580761544406414],[126,244,78,-0.5526385642588139],[126,244,79,-0.5470151044428349],[126,245,64,-0.5548058114945889],[126,245,65,-0.5570825934410095],[126,245,66,-0.5576100312173367],[126,245,67,-0.556856956332922],[126,245,68,-0.5559045523405075],[126,245,69,-0.5556793101131916],[126,245,70,-0.5560845471918583],[126,245,71,-0.5570640936493874],[126,245,72,-0.5593903511762619],[126,245,73,-0.5623086504638195],[126,245,74,-0.564282551407814],[126,245,75,-0.5644748508930206],[126,245,76,-0.5623977892100811],[126,245,77,-0.5580761544406414],[126,245,78,-0.5526385642588139],[126,245,79,-0.5470151044428349],[126,246,64,-0.5548058114945889],[126,246,65,-0.5570825934410095],[126,246,66,-0.5576100312173367],[126,246,67,-0.556856956332922],[126,246,68,-0.5559045523405075],[126,246,69,-0.5556793101131916],[126,246,70,-0.5560845471918583],[126,246,71,-0.5570640936493874],[126,246,72,-0.5593903511762619],[126,246,73,-0.5623086504638195],[126,246,74,-0.564282551407814],[126,246,75,-0.5644748508930206],[126,246,76,-0.5623977892100811],[126,246,77,-0.5580761544406414],[126,246,78,-0.5526385642588139],[126,246,79,-0.5470151044428349],[126,247,64,-0.5548058114945889],[126,247,65,-0.5570825934410095],[126,247,66,-0.5576100312173367],[126,247,67,-0.556856956332922],[126,247,68,-0.5559045523405075],[126,247,69,-0.5556793101131916],[126,247,70,-0.5560845471918583],[126,247,71,-0.5570640936493874],[126,247,72,-0.5593903511762619],[126,247,73,-0.5623086504638195],[126,247,74,-0.564282551407814],[126,247,75,-0.5644748508930206],[126,247,76,-0.5623977892100811],[126,247,77,-0.5580761544406414],[126,247,78,-0.5526385642588139],[126,247,79,-0.5470151044428349],[126,248,64,-0.5548058114945889],[126,248,65,-0.5570825934410095],[126,248,66,-0.5576100312173367],[126,248,67,-0.556856956332922],[126,248,68,-0.5559045523405075],[126,248,69,-0.5556793101131916],[126,248,70,-0.5560845471918583],[126,248,71,-0.5570640936493874],[126,248,72,-0.5593903511762619],[126,248,73,-0.5623086504638195],[126,248,74,-0.564282551407814],[126,248,75,-0.5644748508930206],[126,248,76,-0.5623977892100811],[126,248,77,-0.5580761544406414],[126,248,78,-0.5526385642588139],[126,248,79,-0.5470151044428349],[126,249,64,-0.5548058114945889],[126,249,65,-0.5570825934410095],[126,249,66,-0.5576100312173367],[126,249,67,-0.556856956332922],[126,249,68,-0.5559045523405075],[126,249,69,-0.5556793101131916],[126,249,70,-0.5560845471918583],[126,249,71,-0.5570640936493874],[126,249,72,-0.5593903511762619],[126,249,73,-0.5623086504638195],[126,249,74,-0.564282551407814],[126,249,75,-0.5644748508930206],[126,249,76,-0.5623977892100811],[126,249,77,-0.5580761544406414],[126,249,78,-0.5526385642588139],[126,249,79,-0.5470151044428349],[126,250,64,-0.5548058114945889],[126,250,65,-0.5570825934410095],[126,250,66,-0.5576100312173367],[126,250,67,-0.556856956332922],[126,250,68,-0.5559045523405075],[126,250,69,-0.5556793101131916],[126,250,70,-0.5560845471918583],[126,250,71,-0.5570640936493874],[126,250,72,-0.5593903511762619],[126,250,73,-0.5623086504638195],[126,250,74,-0.564282551407814],[126,250,75,-0.5644748508930206],[126,250,76,-0.5623977892100811],[126,250,77,-0.5580761544406414],[126,250,78,-0.5526385642588139],[126,250,79,-0.5470151044428349],[126,251,64,-0.5548058114945889],[126,251,65,-0.5570825934410095],[126,251,66,-0.5576100312173367],[126,251,67,-0.556856956332922],[126,251,68,-0.5559045523405075],[126,251,69,-0.5556793101131916],[126,251,70,-0.5560845471918583],[126,251,71,-0.5570640936493874],[126,251,72,-0.5593903511762619],[126,251,73,-0.5623086504638195],[126,251,74,-0.564282551407814],[126,251,75,-0.5644748508930206],[126,251,76,-0.5623977892100811],[126,251,77,-0.5580761544406414],[126,251,78,-0.5526385642588139],[126,251,79,-0.5470151044428349],[126,252,64,-0.5548058114945889],[126,252,65,-0.5570825934410095],[126,252,66,-0.5576100312173367],[126,252,67,-0.556856956332922],[126,252,68,-0.5559045523405075],[126,252,69,-0.5556793101131916],[126,252,70,-0.5560845471918583],[126,252,71,-0.5570640936493874],[126,252,72,-0.5593903511762619],[126,252,73,-0.5623086504638195],[126,252,74,-0.564282551407814],[126,252,75,-0.5644748508930206],[126,252,76,-0.5623977892100811],[126,252,77,-0.5580761544406414],[126,252,78,-0.5526385642588139],[126,252,79,-0.5470151044428349],[126,253,64,-0.5548058114945889],[126,253,65,-0.5570825934410095],[126,253,66,-0.5576100312173367],[126,253,67,-0.556856956332922],[126,253,68,-0.5559045523405075],[126,253,69,-0.5556793101131916],[126,253,70,-0.5560845471918583],[126,253,71,-0.5570640936493874],[126,253,72,-0.5593903511762619],[126,253,73,-0.5623086504638195],[126,253,74,-0.564282551407814],[126,253,75,-0.5644748508930206],[126,253,76,-0.5623977892100811],[126,253,77,-0.5580761544406414],[126,253,78,-0.5526385642588139],[126,253,79,-0.5470151044428349],[126,254,64,-0.5548058114945889],[126,254,65,-0.5570825934410095],[126,254,66,-0.5576100312173367],[126,254,67,-0.556856956332922],[126,254,68,-0.5559045523405075],[126,254,69,-0.5556793101131916],[126,254,70,-0.5560845471918583],[126,254,71,-0.5570640936493874],[126,254,72,-0.5593903511762619],[126,254,73,-0.5623086504638195],[126,254,74,-0.564282551407814],[126,254,75,-0.5644748508930206],[126,254,76,-0.5623977892100811],[126,254,77,-0.5580761544406414],[126,254,78,-0.5526385642588139],[126,254,79,-0.5470151044428349],[126,255,64,-0.5548058114945889],[126,255,65,-0.5570825934410095],[126,255,66,-0.5576100312173367],[126,255,67,-0.556856956332922],[126,255,68,-0.5559045523405075],[126,255,69,-0.5556793101131916],[126,255,70,-0.5560845471918583],[126,255,71,-0.5570640936493874],[126,255,72,-0.5593903511762619],[126,255,73,-0.5623086504638195],[126,255,74,-0.564282551407814],[126,255,75,-0.5644748508930206],[126,255,76,-0.5623977892100811],[126,255,77,-0.5580761544406414],[126,255,78,-0.5526385642588139],[126,255,79,-0.5470151044428349],[126,256,64,-0.5548058114945889],[126,256,65,-0.5570825934410095],[126,256,66,-0.5576100312173367],[126,256,67,-0.556856956332922],[126,256,68,-0.5559045523405075],[126,256,69,-0.5556793101131916],[126,256,70,-0.5560845471918583],[126,256,71,-0.5570640936493874],[126,256,72,-0.5593903511762619],[126,256,73,-0.5623086504638195],[126,256,74,-0.564282551407814],[126,256,75,-0.5644748508930206],[126,256,76,-0.5623977892100811],[126,256,77,-0.5580761544406414],[126,256,78,-0.5526385642588139],[126,256,79,-0.5470151044428349],[126,257,64,-0.5548058114945889],[126,257,65,-0.5570825934410095],[126,257,66,-0.5576100312173367],[126,257,67,-0.556856956332922],[126,257,68,-0.5559045523405075],[126,257,69,-0.5556793101131916],[126,257,70,-0.5560845471918583],[126,257,71,-0.5570640936493874],[126,257,72,-0.5593903511762619],[126,257,73,-0.5623086504638195],[126,257,74,-0.564282551407814],[126,257,75,-0.5644748508930206],[126,257,76,-0.5623977892100811],[126,257,77,-0.5580761544406414],[126,257,78,-0.5526385642588139],[126,257,79,-0.5470151044428349],[126,258,64,-0.5548058114945889],[126,258,65,-0.5570825934410095],[126,258,66,-0.5576100312173367],[126,258,67,-0.556856956332922],[126,258,68,-0.5559045523405075],[126,258,69,-0.5556793101131916],[126,258,70,-0.5560845471918583],[126,258,71,-0.5570640936493874],[126,258,72,-0.5593903511762619],[126,258,73,-0.5623086504638195],[126,258,74,-0.564282551407814],[126,258,75,-0.5644748508930206],[126,258,76,-0.5623977892100811],[126,258,77,-0.5580761544406414],[126,258,78,-0.5526385642588139],[126,258,79,-0.5470151044428349],[126,259,64,-0.5548058114945889],[126,259,65,-0.5570825934410095],[126,259,66,-0.5576100312173367],[126,259,67,-0.556856956332922],[126,259,68,-0.5559045523405075],[126,259,69,-0.5556793101131916],[126,259,70,-0.5560845471918583],[126,259,71,-0.5570640936493874],[126,259,72,-0.5593903511762619],[126,259,73,-0.5623086504638195],[126,259,74,-0.564282551407814],[126,259,75,-0.5644748508930206],[126,259,76,-0.5623977892100811],[126,259,77,-0.5580761544406414],[126,259,78,-0.5526385642588139],[126,259,79,-0.5470151044428349],[126,260,64,-0.5548058114945889],[126,260,65,-0.5570825934410095],[126,260,66,-0.5576100312173367],[126,260,67,-0.556856956332922],[126,260,68,-0.5559045523405075],[126,260,69,-0.5556793101131916],[126,260,70,-0.5560845471918583],[126,260,71,-0.5570640936493874],[126,260,72,-0.5593903511762619],[126,260,73,-0.5623086504638195],[126,260,74,-0.564282551407814],[126,260,75,-0.5644748508930206],[126,260,76,-0.5623977892100811],[126,260,77,-0.5580761544406414],[126,260,78,-0.5526385642588139],[126,260,79,-0.5470151044428349],[126,261,64,-0.5548058114945889],[126,261,65,-0.5570825934410095],[126,261,66,-0.5576100312173367],[126,261,67,-0.556856956332922],[126,261,68,-0.5559045523405075],[126,261,69,-0.5556793101131916],[126,261,70,-0.5560845471918583],[126,261,71,-0.5570640936493874],[126,261,72,-0.5593903511762619],[126,261,73,-0.5623086504638195],[126,261,74,-0.564282551407814],[126,261,75,-0.5644748508930206],[126,261,76,-0.5623977892100811],[126,261,77,-0.5580761544406414],[126,261,78,-0.5526385642588139],[126,261,79,-0.5470151044428349],[126,262,64,-0.5548058114945889],[126,262,65,-0.5570825934410095],[126,262,66,-0.5576100312173367],[126,262,67,-0.556856956332922],[126,262,68,-0.5559045523405075],[126,262,69,-0.5556793101131916],[126,262,70,-0.5560845471918583],[126,262,71,-0.5570640936493874],[126,262,72,-0.5593903511762619],[126,262,73,-0.5623086504638195],[126,262,74,-0.564282551407814],[126,262,75,-0.5644748508930206],[126,262,76,-0.5623977892100811],[126,262,77,-0.5580761544406414],[126,262,78,-0.5526385642588139],[126,262,79,-0.5470151044428349],[126,263,64,-0.5548058114945889],[126,263,65,-0.5570825934410095],[126,263,66,-0.5576100312173367],[126,263,67,-0.556856956332922],[126,263,68,-0.5559045523405075],[126,263,69,-0.5556793101131916],[126,263,70,-0.5560845471918583],[126,263,71,-0.5570640936493874],[126,263,72,-0.5593903511762619],[126,263,73,-0.5623086504638195],[126,263,74,-0.564282551407814],[126,263,75,-0.5644748508930206],[126,263,76,-0.5623977892100811],[126,263,77,-0.5580761544406414],[126,263,78,-0.5526385642588139],[126,263,79,-0.5470151044428349],[126,264,64,-0.5548058114945889],[126,264,65,-0.5570825934410095],[126,264,66,-0.5576100312173367],[126,264,67,-0.556856956332922],[126,264,68,-0.5559045523405075],[126,264,69,-0.5556793101131916],[126,264,70,-0.5560845471918583],[126,264,71,-0.5570640936493874],[126,264,72,-0.5593903511762619],[126,264,73,-0.5623086504638195],[126,264,74,-0.564282551407814],[126,264,75,-0.5644748508930206],[126,264,76,-0.5623977892100811],[126,264,77,-0.5580761544406414],[126,264,78,-0.5526385642588139],[126,264,79,-0.5470151044428349],[126,265,64,-0.5548058114945889],[126,265,65,-0.5570825934410095],[126,265,66,-0.5576100312173367],[126,265,67,-0.556856956332922],[126,265,68,-0.5559045523405075],[126,265,69,-0.5556793101131916],[126,265,70,-0.5560845471918583],[126,265,71,-0.5570640936493874],[126,265,72,-0.5593903511762619],[126,265,73,-0.5623086504638195],[126,265,74,-0.564282551407814],[126,265,75,-0.5644748508930206],[126,265,76,-0.5623977892100811],[126,265,77,-0.5580761544406414],[126,265,78,-0.5526385642588139],[126,265,79,-0.5470151044428349],[126,266,64,-0.5548058114945889],[126,266,65,-0.5570825934410095],[126,266,66,-0.5576100312173367],[126,266,67,-0.556856956332922],[126,266,68,-0.5559045523405075],[126,266,69,-0.5556793101131916],[126,266,70,-0.5560845471918583],[126,266,71,-0.5570640936493874],[126,266,72,-0.5593903511762619],[126,266,73,-0.5623086504638195],[126,266,74,-0.564282551407814],[126,266,75,-0.5644748508930206],[126,266,76,-0.5623977892100811],[126,266,77,-0.5580761544406414],[126,266,78,-0.5526385642588139],[126,266,79,-0.5470151044428349],[126,267,64,-0.5548058114945889],[126,267,65,-0.5570825934410095],[126,267,66,-0.5576100312173367],[126,267,67,-0.556856956332922],[126,267,68,-0.5559045523405075],[126,267,69,-0.5556793101131916],[126,267,70,-0.5560845471918583],[126,267,71,-0.5570640936493874],[126,267,72,-0.5593903511762619],[126,267,73,-0.5623086504638195],[126,267,74,-0.564282551407814],[126,267,75,-0.5644748508930206],[126,267,76,-0.5623977892100811],[126,267,77,-0.5580761544406414],[126,267,78,-0.5526385642588139],[126,267,79,-0.5470151044428349],[126,268,64,-0.5548058114945889],[126,268,65,-0.5570825934410095],[126,268,66,-0.5576100312173367],[126,268,67,-0.556856956332922],[126,268,68,-0.5559045523405075],[126,268,69,-0.5556793101131916],[126,268,70,-0.5560845471918583],[126,268,71,-0.5570640936493874],[126,268,72,-0.5593903511762619],[126,268,73,-0.5623086504638195],[126,268,74,-0.564282551407814],[126,268,75,-0.5644748508930206],[126,268,76,-0.5623977892100811],[126,268,77,-0.5580761544406414],[126,268,78,-0.5526385642588139],[126,268,79,-0.5470151044428349],[126,269,64,-0.5548058114945889],[126,269,65,-0.5570825934410095],[126,269,66,-0.5576100312173367],[126,269,67,-0.556856956332922],[126,269,68,-0.5559045523405075],[126,269,69,-0.5556793101131916],[126,269,70,-0.5560845471918583],[126,269,71,-0.5570640936493874],[126,269,72,-0.5593903511762619],[126,269,73,-0.5623086504638195],[126,269,74,-0.564282551407814],[126,269,75,-0.5644748508930206],[126,269,76,-0.5623977892100811],[126,269,77,-0.5580761544406414],[126,269,78,-0.5526385642588139],[126,269,79,-0.5470151044428349],[126,270,64,-0.5548058114945889],[126,270,65,-0.5570825934410095],[126,270,66,-0.5576100312173367],[126,270,67,-0.556856956332922],[126,270,68,-0.5559045523405075],[126,270,69,-0.5556793101131916],[126,270,70,-0.5560845471918583],[126,270,71,-0.5570640936493874],[126,270,72,-0.5593903511762619],[126,270,73,-0.5623086504638195],[126,270,74,-0.564282551407814],[126,270,75,-0.5644748508930206],[126,270,76,-0.5623977892100811],[126,270,77,-0.5580761544406414],[126,270,78,-0.5526385642588139],[126,270,79,-0.5470151044428349],[126,271,64,-0.5548058114945889],[126,271,65,-0.5570825934410095],[126,271,66,-0.5576100312173367],[126,271,67,-0.556856956332922],[126,271,68,-0.5559045523405075],[126,271,69,-0.5556793101131916],[126,271,70,-0.5560845471918583],[126,271,71,-0.5570640936493874],[126,271,72,-0.5593903511762619],[126,271,73,-0.5623086504638195],[126,271,74,-0.564282551407814],[126,271,75,-0.5644748508930206],[126,271,76,-0.5623977892100811],[126,271,77,-0.5580761544406414],[126,271,78,-0.5526385642588139],[126,271,79,-0.5470151044428349],[126,272,64,-0.5548058114945889],[126,272,65,-0.5570825934410095],[126,272,66,-0.5576100312173367],[126,272,67,-0.556856956332922],[126,272,68,-0.5559045523405075],[126,272,69,-0.5556793101131916],[126,272,70,-0.5560845471918583],[126,272,71,-0.5570640936493874],[126,272,72,-0.5593903511762619],[126,272,73,-0.5623086504638195],[126,272,74,-0.564282551407814],[126,272,75,-0.5644748508930206],[126,272,76,-0.5623977892100811],[126,272,77,-0.5580761544406414],[126,272,78,-0.5526385642588139],[126,272,79,-0.5470151044428349],[126,273,64,-0.5548058114945889],[126,273,65,-0.5570825934410095],[126,273,66,-0.5576100312173367],[126,273,67,-0.556856956332922],[126,273,68,-0.5559045523405075],[126,273,69,-0.5556793101131916],[126,273,70,-0.5560845471918583],[126,273,71,-0.5570640936493874],[126,273,72,-0.5593903511762619],[126,273,73,-0.5623086504638195],[126,273,74,-0.564282551407814],[126,273,75,-0.5644748508930206],[126,273,76,-0.5623977892100811],[126,273,77,-0.5580761544406414],[126,273,78,-0.5526385642588139],[126,273,79,-0.5470151044428349],[126,274,64,-0.5548058114945889],[126,274,65,-0.5570825934410095],[126,274,66,-0.5576100312173367],[126,274,67,-0.556856956332922],[126,274,68,-0.5559045523405075],[126,274,69,-0.5556793101131916],[126,274,70,-0.5560845471918583],[126,274,71,-0.5570640936493874],[126,274,72,-0.5593903511762619],[126,274,73,-0.5623086504638195],[126,274,74,-0.564282551407814],[126,274,75,-0.5644748508930206],[126,274,76,-0.5623977892100811],[126,274,77,-0.5580761544406414],[126,274,78,-0.5526385642588139],[126,274,79,-0.5470151044428349],[126,275,64,-0.5548058114945889],[126,275,65,-0.5570825934410095],[126,275,66,-0.5576100312173367],[126,275,67,-0.556856956332922],[126,275,68,-0.5559045523405075],[126,275,69,-0.5556793101131916],[126,275,70,-0.5560845471918583],[126,275,71,-0.5570640936493874],[126,275,72,-0.5593903511762619],[126,275,73,-0.5623086504638195],[126,275,74,-0.564282551407814],[126,275,75,-0.5644748508930206],[126,275,76,-0.5623977892100811],[126,275,77,-0.5580761544406414],[126,275,78,-0.5526385642588139],[126,275,79,-0.5470151044428349],[126,276,64,-0.5548058114945889],[126,276,65,-0.5570825934410095],[126,276,66,-0.5576100312173367],[126,276,67,-0.556856956332922],[126,276,68,-0.5559045523405075],[126,276,69,-0.5556793101131916],[126,276,70,-0.5560845471918583],[126,276,71,-0.5570640936493874],[126,276,72,-0.5593903511762619],[126,276,73,-0.5623086504638195],[126,276,74,-0.564282551407814],[126,276,75,-0.5644748508930206],[126,276,76,-0.5623977892100811],[126,276,77,-0.5580761544406414],[126,276,78,-0.5526385642588139],[126,276,79,-0.5470151044428349],[126,277,64,-0.5548058114945889],[126,277,65,-0.5570825934410095],[126,277,66,-0.5576100312173367],[126,277,67,-0.556856956332922],[126,277,68,-0.5559045523405075],[126,277,69,-0.5556793101131916],[126,277,70,-0.5560845471918583],[126,277,71,-0.5570640936493874],[126,277,72,-0.5593903511762619],[126,277,73,-0.5623086504638195],[126,277,74,-0.564282551407814],[126,277,75,-0.5644748508930206],[126,277,76,-0.5623977892100811],[126,277,77,-0.5580761544406414],[126,277,78,-0.5526385642588139],[126,277,79,-0.5470151044428349],[126,278,64,-0.5548058114945889],[126,278,65,-0.5570825934410095],[126,278,66,-0.5576100312173367],[126,278,67,-0.556856956332922],[126,278,68,-0.5559045523405075],[126,278,69,-0.5556793101131916],[126,278,70,-0.5560845471918583],[126,278,71,-0.5570640936493874],[126,278,72,-0.5593903511762619],[126,278,73,-0.5623086504638195],[126,278,74,-0.564282551407814],[126,278,75,-0.5644748508930206],[126,278,76,-0.5623977892100811],[126,278,77,-0.5580761544406414],[126,278,78,-0.5526385642588139],[126,278,79,-0.5470151044428349],[126,279,64,-0.5548058114945889],[126,279,65,-0.5570825934410095],[126,279,66,-0.5576100312173367],[126,279,67,-0.556856956332922],[126,279,68,-0.5559045523405075],[126,279,69,-0.5556793101131916],[126,279,70,-0.5560845471918583],[126,279,71,-0.5570640936493874],[126,279,72,-0.5593903511762619],[126,279,73,-0.5623086504638195],[126,279,74,-0.564282551407814],[126,279,75,-0.5644748508930206],[126,279,76,-0.5623977892100811],[126,279,77,-0.5580761544406414],[126,279,78,-0.5526385642588139],[126,279,79,-0.5470151044428349],[126,280,64,-0.5548058114945889],[126,280,65,-0.5570825934410095],[126,280,66,-0.5576100312173367],[126,280,67,-0.556856956332922],[126,280,68,-0.5559045523405075],[126,280,69,-0.5556793101131916],[126,280,70,-0.5560845471918583],[126,280,71,-0.5570640936493874],[126,280,72,-0.5593903511762619],[126,280,73,-0.5623086504638195],[126,280,74,-0.564282551407814],[126,280,75,-0.5644748508930206],[126,280,76,-0.5623977892100811],[126,280,77,-0.5580761544406414],[126,280,78,-0.5526385642588139],[126,280,79,-0.5470151044428349],[126,281,64,-0.5548058114945889],[126,281,65,-0.5570825934410095],[126,281,66,-0.5576100312173367],[126,281,67,-0.556856956332922],[126,281,68,-0.5559045523405075],[126,281,69,-0.5556793101131916],[126,281,70,-0.5560845471918583],[126,281,71,-0.5570640936493874],[126,281,72,-0.5593903511762619],[126,281,73,-0.5623086504638195],[126,281,74,-0.564282551407814],[126,281,75,-0.5644748508930206],[126,281,76,-0.5623977892100811],[126,281,77,-0.5580761544406414],[126,281,78,-0.5526385642588139],[126,281,79,-0.5470151044428349],[126,282,64,-0.5548058114945889],[126,282,65,-0.5570825934410095],[126,282,66,-0.5576100312173367],[126,282,67,-0.556856956332922],[126,282,68,-0.5559045523405075],[126,282,69,-0.5556793101131916],[126,282,70,-0.5560845471918583],[126,282,71,-0.5570640936493874],[126,282,72,-0.5593903511762619],[126,282,73,-0.5623086504638195],[126,282,74,-0.564282551407814],[126,282,75,-0.5644748508930206],[126,282,76,-0.5623977892100811],[126,282,77,-0.5580761544406414],[126,282,78,-0.5526385642588139],[126,282,79,-0.5470151044428349],[126,283,64,-0.5548058114945889],[126,283,65,-0.5570825934410095],[126,283,66,-0.5576100312173367],[126,283,67,-0.556856956332922],[126,283,68,-0.5559045523405075],[126,283,69,-0.5556793101131916],[126,283,70,-0.5560845471918583],[126,283,71,-0.5570640936493874],[126,283,72,-0.5593903511762619],[126,283,73,-0.5623086504638195],[126,283,74,-0.564282551407814],[126,283,75,-0.5644748508930206],[126,283,76,-0.5623977892100811],[126,283,77,-0.5580761544406414],[126,283,78,-0.5526385642588139],[126,283,79,-0.5470151044428349],[126,284,64,-0.5548058114945889],[126,284,65,-0.5570825934410095],[126,284,66,-0.5576100312173367],[126,284,67,-0.556856956332922],[126,284,68,-0.5559045523405075],[126,284,69,-0.5556793101131916],[126,284,70,-0.5560845471918583],[126,284,71,-0.5570640936493874],[126,284,72,-0.5593903511762619],[126,284,73,-0.5623086504638195],[126,284,74,-0.564282551407814],[126,284,75,-0.5644748508930206],[126,284,76,-0.5623977892100811],[126,284,77,-0.5580761544406414],[126,284,78,-0.5526385642588139],[126,284,79,-0.5470151044428349],[126,285,64,-0.5548058114945889],[126,285,65,-0.5570825934410095],[126,285,66,-0.5576100312173367],[126,285,67,-0.556856956332922],[126,285,68,-0.5559045523405075],[126,285,69,-0.5556793101131916],[126,285,70,-0.5560845471918583],[126,285,71,-0.5570640936493874],[126,285,72,-0.5593903511762619],[126,285,73,-0.5623086504638195],[126,285,74,-0.564282551407814],[126,285,75,-0.5644748508930206],[126,285,76,-0.5623977892100811],[126,285,77,-0.5580761544406414],[126,285,78,-0.5526385642588139],[126,285,79,-0.5470151044428349],[126,286,64,-0.5548058114945889],[126,286,65,-0.5570825934410095],[126,286,66,-0.5576100312173367],[126,286,67,-0.556856956332922],[126,286,68,-0.5559045523405075],[126,286,69,-0.5556793101131916],[126,286,70,-0.5560845471918583],[126,286,71,-0.5570640936493874],[126,286,72,-0.5593903511762619],[126,286,73,-0.5623086504638195],[126,286,74,-0.564282551407814],[126,286,75,-0.5644748508930206],[126,286,76,-0.5623977892100811],[126,286,77,-0.5580761544406414],[126,286,78,-0.5526385642588139],[126,286,79,-0.5470151044428349],[126,287,64,-0.5548058114945889],[126,287,65,-0.5570825934410095],[126,287,66,-0.5576100312173367],[126,287,67,-0.556856956332922],[126,287,68,-0.5559045523405075],[126,287,69,-0.5556793101131916],[126,287,70,-0.5560845471918583],[126,287,71,-0.5570640936493874],[126,287,72,-0.5593903511762619],[126,287,73,-0.5623086504638195],[126,287,74,-0.564282551407814],[126,287,75,-0.5644748508930206],[126,287,76,-0.5623977892100811],[126,287,77,-0.5580761544406414],[126,287,78,-0.5526385642588139],[126,287,79,-0.5470151044428349],[126,288,64,-0.5548058114945889],[126,288,65,-0.5570825934410095],[126,288,66,-0.5576100312173367],[126,288,67,-0.556856956332922],[126,288,68,-0.5559045523405075],[126,288,69,-0.5556793101131916],[126,288,70,-0.5560845471918583],[126,288,71,-0.5570640936493874],[126,288,72,-0.5593903511762619],[126,288,73,-0.5623086504638195],[126,288,74,-0.564282551407814],[126,288,75,-0.5644748508930206],[126,288,76,-0.5623977892100811],[126,288,77,-0.5580761544406414],[126,288,78,-0.5526385642588139],[126,288,79,-0.5470151044428349],[126,289,64,-0.5548058114945889],[126,289,65,-0.5570825934410095],[126,289,66,-0.5576100312173367],[126,289,67,-0.556856956332922],[126,289,68,-0.5559045523405075],[126,289,69,-0.5556793101131916],[126,289,70,-0.5560845471918583],[126,289,71,-0.5570640936493874],[126,289,72,-0.5593903511762619],[126,289,73,-0.5623086504638195],[126,289,74,-0.564282551407814],[126,289,75,-0.5644748508930206],[126,289,76,-0.5623977892100811],[126,289,77,-0.5580761544406414],[126,289,78,-0.5526385642588139],[126,289,79,-0.5470151044428349],[126,290,64,-0.5548058114945889],[126,290,65,-0.5570825934410095],[126,290,66,-0.5576100312173367],[126,290,67,-0.556856956332922],[126,290,68,-0.5559045523405075],[126,290,69,-0.5556793101131916],[126,290,70,-0.5560845471918583],[126,290,71,-0.5570640936493874],[126,290,72,-0.5593903511762619],[126,290,73,-0.5623086504638195],[126,290,74,-0.564282551407814],[126,290,75,-0.5644748508930206],[126,290,76,-0.5623977892100811],[126,290,77,-0.5580761544406414],[126,290,78,-0.5526385642588139],[126,290,79,-0.5470151044428349],[126,291,64,-0.5548058114945889],[126,291,65,-0.5570825934410095],[126,291,66,-0.5576100312173367],[126,291,67,-0.556856956332922],[126,291,68,-0.5559045523405075],[126,291,69,-0.5556793101131916],[126,291,70,-0.5560845471918583],[126,291,71,-0.5570640936493874],[126,291,72,-0.5593903511762619],[126,291,73,-0.5623086504638195],[126,291,74,-0.564282551407814],[126,291,75,-0.5644748508930206],[126,291,76,-0.5623977892100811],[126,291,77,-0.5580761544406414],[126,291,78,-0.5526385642588139],[126,291,79,-0.5470151044428349],[126,292,64,-0.5548058114945889],[126,292,65,-0.5570825934410095],[126,292,66,-0.5576100312173367],[126,292,67,-0.556856956332922],[126,292,68,-0.5559045523405075],[126,292,69,-0.5556793101131916],[126,292,70,-0.5560845471918583],[126,292,71,-0.5570640936493874],[126,292,72,-0.5593903511762619],[126,292,73,-0.5623086504638195],[126,292,74,-0.564282551407814],[126,292,75,-0.5644748508930206],[126,292,76,-0.5623977892100811],[126,292,77,-0.5580761544406414],[126,292,78,-0.5526385642588139],[126,292,79,-0.5470151044428349],[126,293,64,-0.5548058114945889],[126,293,65,-0.5570825934410095],[126,293,66,-0.5576100312173367],[126,293,67,-0.556856956332922],[126,293,68,-0.5559045523405075],[126,293,69,-0.5556793101131916],[126,293,70,-0.5560845471918583],[126,293,71,-0.5570640936493874],[126,293,72,-0.5593903511762619],[126,293,73,-0.5623086504638195],[126,293,74,-0.564282551407814],[126,293,75,-0.5644748508930206],[126,293,76,-0.5623977892100811],[126,293,77,-0.5580761544406414],[126,293,78,-0.5526385642588139],[126,293,79,-0.5470151044428349],[126,294,64,-0.5548058114945889],[126,294,65,-0.5570825934410095],[126,294,66,-0.5576100312173367],[126,294,67,-0.556856956332922],[126,294,68,-0.5559045523405075],[126,294,69,-0.5556793101131916],[126,294,70,-0.5560845471918583],[126,294,71,-0.5570640936493874],[126,294,72,-0.5593903511762619],[126,294,73,-0.5623086504638195],[126,294,74,-0.564282551407814],[126,294,75,-0.5644748508930206],[126,294,76,-0.5623977892100811],[126,294,77,-0.5580761544406414],[126,294,78,-0.5526385642588139],[126,294,79,-0.5470151044428349],[126,295,64,-0.5548058114945889],[126,295,65,-0.5570825934410095],[126,295,66,-0.5576100312173367],[126,295,67,-0.556856956332922],[126,295,68,-0.5559045523405075],[126,295,69,-0.5556793101131916],[126,295,70,-0.5560845471918583],[126,295,71,-0.5570640936493874],[126,295,72,-0.5593903511762619],[126,295,73,-0.5623086504638195],[126,295,74,-0.564282551407814],[126,295,75,-0.5644748508930206],[126,295,76,-0.5623977892100811],[126,295,77,-0.5580761544406414],[126,295,78,-0.5526385642588139],[126,295,79,-0.5470151044428349],[126,296,64,-0.5548058114945889],[126,296,65,-0.5570825934410095],[126,296,66,-0.5576100312173367],[126,296,67,-0.556856956332922],[126,296,68,-0.5559045523405075],[126,296,69,-0.5556793101131916],[126,296,70,-0.5560845471918583],[126,296,71,-0.5570640936493874],[126,296,72,-0.5593903511762619],[126,296,73,-0.5623086504638195],[126,296,74,-0.564282551407814],[126,296,75,-0.5644748508930206],[126,296,76,-0.5623977892100811],[126,296,77,-0.5580761544406414],[126,296,78,-0.5526385642588139],[126,296,79,-0.5470151044428349],[126,297,64,-0.5548058114945889],[126,297,65,-0.5570825934410095],[126,297,66,-0.5576100312173367],[126,297,67,-0.556856956332922],[126,297,68,-0.5559045523405075],[126,297,69,-0.5556793101131916],[126,297,70,-0.5560845471918583],[126,297,71,-0.5570640936493874],[126,297,72,-0.5593903511762619],[126,297,73,-0.5623086504638195],[126,297,74,-0.564282551407814],[126,297,75,-0.5644748508930206],[126,297,76,-0.5623977892100811],[126,297,77,-0.5580761544406414],[126,297,78,-0.5526385642588139],[126,297,79,-0.5470151044428349],[126,298,64,-0.5548058114945889],[126,298,65,-0.5570825934410095],[126,298,66,-0.5576100312173367],[126,298,67,-0.556856956332922],[126,298,68,-0.5559045523405075],[126,298,69,-0.5556793101131916],[126,298,70,-0.5560845471918583],[126,298,71,-0.5570640936493874],[126,298,72,-0.5593903511762619],[126,298,73,-0.5623086504638195],[126,298,74,-0.564282551407814],[126,298,75,-0.5644748508930206],[126,298,76,-0.5623977892100811],[126,298,77,-0.5580761544406414],[126,298,78,-0.5526385642588139],[126,298,79,-0.5470151044428349],[126,299,64,-0.5548058114945889],[126,299,65,-0.5570825934410095],[126,299,66,-0.5576100312173367],[126,299,67,-0.556856956332922],[126,299,68,-0.5559045523405075],[126,299,69,-0.5556793101131916],[126,299,70,-0.5560845471918583],[126,299,71,-0.5570640936493874],[126,299,72,-0.5593903511762619],[126,299,73,-0.5623086504638195],[126,299,74,-0.564282551407814],[126,299,75,-0.5644748508930206],[126,299,76,-0.5623977892100811],[126,299,77,-0.5580761544406414],[126,299,78,-0.5526385642588139],[126,299,79,-0.5470151044428349],[126,300,64,-0.5548058114945889],[126,300,65,-0.5570825934410095],[126,300,66,-0.5576100312173367],[126,300,67,-0.556856956332922],[126,300,68,-0.5559045523405075],[126,300,69,-0.5556793101131916],[126,300,70,-0.5560845471918583],[126,300,71,-0.5570640936493874],[126,300,72,-0.5593903511762619],[126,300,73,-0.5623086504638195],[126,300,74,-0.564282551407814],[126,300,75,-0.5644748508930206],[126,300,76,-0.5623977892100811],[126,300,77,-0.5580761544406414],[126,300,78,-0.5526385642588139],[126,300,79,-0.5470151044428349],[126,301,64,-0.5548058114945889],[126,301,65,-0.5570825934410095],[126,301,66,-0.5576100312173367],[126,301,67,-0.556856956332922],[126,301,68,-0.5559045523405075],[126,301,69,-0.5556793101131916],[126,301,70,-0.5560845471918583],[126,301,71,-0.5570640936493874],[126,301,72,-0.5593903511762619],[126,301,73,-0.5623086504638195],[126,301,74,-0.564282551407814],[126,301,75,-0.5644748508930206],[126,301,76,-0.5623977892100811],[126,301,77,-0.5580761544406414],[126,301,78,-0.5526385642588139],[126,301,79,-0.5470151044428349],[126,302,64,-0.5548058114945889],[126,302,65,-0.5570825934410095],[126,302,66,-0.5576100312173367],[126,302,67,-0.556856956332922],[126,302,68,-0.5559045523405075],[126,302,69,-0.5556793101131916],[126,302,70,-0.5560845471918583],[126,302,71,-0.5570640936493874],[126,302,72,-0.5593903511762619],[126,302,73,-0.5623086504638195],[126,302,74,-0.564282551407814],[126,302,75,-0.5644748508930206],[126,302,76,-0.5623977892100811],[126,302,77,-0.5580761544406414],[126,302,78,-0.5526385642588139],[126,302,79,-0.5470151044428349],[126,303,64,-0.5548058114945889],[126,303,65,-0.5570825934410095],[126,303,66,-0.5576100312173367],[126,303,67,-0.556856956332922],[126,303,68,-0.5559045523405075],[126,303,69,-0.5556793101131916],[126,303,70,-0.5560845471918583],[126,303,71,-0.5570640936493874],[126,303,72,-0.5593903511762619],[126,303,73,-0.5623086504638195],[126,303,74,-0.564282551407814],[126,303,75,-0.5644748508930206],[126,303,76,-0.5623977892100811],[126,303,77,-0.5580761544406414],[126,303,78,-0.5526385642588139],[126,303,79,-0.5470151044428349],[126,304,64,-0.5548058114945889],[126,304,65,-0.5570825934410095],[126,304,66,-0.5576100312173367],[126,304,67,-0.556856956332922],[126,304,68,-0.5559045523405075],[126,304,69,-0.5556793101131916],[126,304,70,-0.5560845471918583],[126,304,71,-0.5570640936493874],[126,304,72,-0.5593903511762619],[126,304,73,-0.5623086504638195],[126,304,74,-0.564282551407814],[126,304,75,-0.5644748508930206],[126,304,76,-0.5623977892100811],[126,304,77,-0.5580761544406414],[126,304,78,-0.5526385642588139],[126,304,79,-0.5470151044428349],[126,305,64,-0.5548058114945889],[126,305,65,-0.5570825934410095],[126,305,66,-0.5576100312173367],[126,305,67,-0.556856956332922],[126,305,68,-0.5559045523405075],[126,305,69,-0.5556793101131916],[126,305,70,-0.5560845471918583],[126,305,71,-0.5570640936493874],[126,305,72,-0.5593903511762619],[126,305,73,-0.5623086504638195],[126,305,74,-0.564282551407814],[126,305,75,-0.5644748508930206],[126,305,76,-0.5623977892100811],[126,305,77,-0.5580761544406414],[126,305,78,-0.5526385642588139],[126,305,79,-0.5470151044428349],[126,306,64,-0.5548058114945889],[126,306,65,-0.5570825934410095],[126,306,66,-0.5576100312173367],[126,306,67,-0.556856956332922],[126,306,68,-0.5559045523405075],[126,306,69,-0.5556793101131916],[126,306,70,-0.5560845471918583],[126,306,71,-0.5570640936493874],[126,306,72,-0.5593903511762619],[126,306,73,-0.5623086504638195],[126,306,74,-0.564282551407814],[126,306,75,-0.5644748508930206],[126,306,76,-0.5623977892100811],[126,306,77,-0.5580761544406414],[126,306,78,-0.5526385642588139],[126,306,79,-0.5470151044428349],[126,307,64,-0.5548058114945889],[126,307,65,-0.5570825934410095],[126,307,66,-0.5576100312173367],[126,307,67,-0.556856956332922],[126,307,68,-0.5559045523405075],[126,307,69,-0.5556793101131916],[126,307,70,-0.5560845471918583],[126,307,71,-0.5570640936493874],[126,307,72,-0.5593903511762619],[126,307,73,-0.5623086504638195],[126,307,74,-0.564282551407814],[126,307,75,-0.5644748508930206],[126,307,76,-0.5623977892100811],[126,307,77,-0.5580761544406414],[126,307,78,-0.5526385642588139],[126,307,79,-0.5470151044428349],[126,308,64,-0.5548058114945889],[126,308,65,-0.5570825934410095],[126,308,66,-0.5576100312173367],[126,308,67,-0.556856956332922],[126,308,68,-0.5559045523405075],[126,308,69,-0.5556793101131916],[126,308,70,-0.5560845471918583],[126,308,71,-0.5570640936493874],[126,308,72,-0.5593903511762619],[126,308,73,-0.5623086504638195],[126,308,74,-0.564282551407814],[126,308,75,-0.5644748508930206],[126,308,76,-0.5623977892100811],[126,308,77,-0.5580761544406414],[126,308,78,-0.5526385642588139],[126,308,79,-0.5470151044428349],[126,309,64,-0.5548058114945889],[126,309,65,-0.5570825934410095],[126,309,66,-0.5576100312173367],[126,309,67,-0.556856956332922],[126,309,68,-0.5559045523405075],[126,309,69,-0.5556793101131916],[126,309,70,-0.5560845471918583],[126,309,71,-0.5570640936493874],[126,309,72,-0.5593903511762619],[126,309,73,-0.5623086504638195],[126,309,74,-0.564282551407814],[126,309,75,-0.5644748508930206],[126,309,76,-0.5623977892100811],[126,309,77,-0.5580761544406414],[126,309,78,-0.5526385642588139],[126,309,79,-0.5470151044428349],[126,310,64,-0.5548058114945889],[126,310,65,-0.5570825934410095],[126,310,66,-0.5576100312173367],[126,310,67,-0.556856956332922],[126,310,68,-0.5559045523405075],[126,310,69,-0.5556793101131916],[126,310,70,-0.5560845471918583],[126,310,71,-0.5570640936493874],[126,310,72,-0.5593903511762619],[126,310,73,-0.5623086504638195],[126,310,74,-0.564282551407814],[126,310,75,-0.5644748508930206],[126,310,76,-0.5623977892100811],[126,310,77,-0.5580761544406414],[126,310,78,-0.5526385642588139],[126,310,79,-0.5470151044428349],[126,311,64,-0.5548058114945889],[126,311,65,-0.5570825934410095],[126,311,66,-0.5576100312173367],[126,311,67,-0.556856956332922],[126,311,68,-0.5559045523405075],[126,311,69,-0.5556793101131916],[126,311,70,-0.5560845471918583],[126,311,71,-0.5570640936493874],[126,311,72,-0.5593903511762619],[126,311,73,-0.5623086504638195],[126,311,74,-0.564282551407814],[126,311,75,-0.5644748508930206],[126,311,76,-0.5623977892100811],[126,311,77,-0.5580761544406414],[126,311,78,-0.5526385642588139],[126,311,79,-0.5470151044428349],[126,312,64,-0.5548058114945889],[126,312,65,-0.5570825934410095],[126,312,66,-0.5576100312173367],[126,312,67,-0.556856956332922],[126,312,68,-0.5559045523405075],[126,312,69,-0.5556793101131916],[126,312,70,-0.5560845471918583],[126,312,71,-0.5570640936493874],[126,312,72,-0.5593903511762619],[126,312,73,-0.5623086504638195],[126,312,74,-0.564282551407814],[126,312,75,-0.5644748508930206],[126,312,76,-0.5623977892100811],[126,312,77,-0.5580761544406414],[126,312,78,-0.5526385642588139],[126,312,79,-0.5470151044428349],[126,313,64,-0.5548058114945889],[126,313,65,-0.5570825934410095],[126,313,66,-0.5576100312173367],[126,313,67,-0.556856956332922],[126,313,68,-0.5559045523405075],[126,313,69,-0.5556793101131916],[126,313,70,-0.5560845471918583],[126,313,71,-0.5570640936493874],[126,313,72,-0.5593903511762619],[126,313,73,-0.5623086504638195],[126,313,74,-0.564282551407814],[126,313,75,-0.5644748508930206],[126,313,76,-0.5623977892100811],[126,313,77,-0.5580761544406414],[126,313,78,-0.5526385642588139],[126,313,79,-0.5470151044428349],[126,314,64,-0.5548058114945889],[126,314,65,-0.5570825934410095],[126,314,66,-0.5576100312173367],[126,314,67,-0.556856956332922],[126,314,68,-0.5559045523405075],[126,314,69,-0.5556793101131916],[126,314,70,-0.5560845471918583],[126,314,71,-0.5570640936493874],[126,314,72,-0.5593903511762619],[126,314,73,-0.5623086504638195],[126,314,74,-0.564282551407814],[126,314,75,-0.5644748508930206],[126,314,76,-0.5623977892100811],[126,314,77,-0.5580761544406414],[126,314,78,-0.5526385642588139],[126,314,79,-0.5470151044428349],[126,315,64,-0.5548058114945889],[126,315,65,-0.5570825934410095],[126,315,66,-0.5576100312173367],[126,315,67,-0.556856956332922],[126,315,68,-0.5559045523405075],[126,315,69,-0.5556793101131916],[126,315,70,-0.5560845471918583],[126,315,71,-0.5570640936493874],[126,315,72,-0.5593903511762619],[126,315,73,-0.5623086504638195],[126,315,74,-0.564282551407814],[126,315,75,-0.5644748508930206],[126,315,76,-0.5623977892100811],[126,315,77,-0.5580761544406414],[126,315,78,-0.5526385642588139],[126,315,79,-0.5470151044428349],[126,316,64,-0.5548058114945889],[126,316,65,-0.5570825934410095],[126,316,66,-0.5576100312173367],[126,316,67,-0.556856956332922],[126,316,68,-0.5559045523405075],[126,316,69,-0.5556793101131916],[126,316,70,-0.5560845471918583],[126,316,71,-0.5570640936493874],[126,316,72,-0.5593903511762619],[126,316,73,-0.5623086504638195],[126,316,74,-0.564282551407814],[126,316,75,-0.5644748508930206],[126,316,76,-0.5623977892100811],[126,316,77,-0.5580761544406414],[126,316,78,-0.5526385642588139],[126,316,79,-0.5470151044428349],[126,317,64,-0.5548058114945889],[126,317,65,-0.5570825934410095],[126,317,66,-0.5576100312173367],[126,317,67,-0.556856956332922],[126,317,68,-0.5559045523405075],[126,317,69,-0.5556793101131916],[126,317,70,-0.5560845471918583],[126,317,71,-0.5570640936493874],[126,317,72,-0.5593903511762619],[126,317,73,-0.5623086504638195],[126,317,74,-0.564282551407814],[126,317,75,-0.5644748508930206],[126,317,76,-0.5623977892100811],[126,317,77,-0.5580761544406414],[126,317,78,-0.5526385642588139],[126,317,79,-0.5470151044428349],[126,318,64,-0.5548058114945889],[126,318,65,-0.5570825934410095],[126,318,66,-0.5576100312173367],[126,318,67,-0.556856956332922],[126,318,68,-0.5559045523405075],[126,318,69,-0.5556793101131916],[126,318,70,-0.5560845471918583],[126,318,71,-0.5570640936493874],[126,318,72,-0.5593903511762619],[126,318,73,-0.5623086504638195],[126,318,74,-0.564282551407814],[126,318,75,-0.5644748508930206],[126,318,76,-0.5623977892100811],[126,318,77,-0.5580761544406414],[126,318,78,-0.5526385642588139],[126,318,79,-0.5470151044428349],[126,319,64,-0.5548058114945889],[126,319,65,-0.5570825934410095],[126,319,66,-0.5576100312173367],[126,319,67,-0.556856956332922],[126,319,68,-0.5559045523405075],[126,319,69,-0.5556793101131916],[126,319,70,-0.5560845471918583],[126,319,71,-0.5570640936493874],[126,319,72,-0.5593903511762619],[126,319,73,-0.5623086504638195],[126,319,74,-0.564282551407814],[126,319,75,-0.5644748508930206],[126,319,76,-0.5623977892100811],[126,319,77,-0.5580761544406414],[126,319,78,-0.5526385642588139],[126,319,79,-0.5470151044428349],[127,-64,64,-0.555078387260437],[127,-64,65,-0.5577244460582733],[127,-64,66,-0.5588730648159981],[127,-64,67,-0.5586894489824772],[127,-64,68,-0.5579561330378056],[127,-64,69,-0.5574606731534004],[127,-64,70,-0.5572692304849625],[127,-64,71,-0.5575528629124165],[127,-64,72,-0.5592196434736252],[127,-64,73,-0.5617599152028561],[127,-64,74,-0.5636810474097729],[127,-64,75,-0.5638935938477516],[127,-64,76,-0.5618910305202007],[127,-64,77,-0.5576980598270893],[127,-64,78,-0.5523377247154713],[127,-64,79,-0.5468230731785297],[127,-63,64,-0.555078387260437],[127,-63,65,-0.5577244460582733],[127,-63,66,-0.5588730648159981],[127,-63,67,-0.5586894489824772],[127,-63,68,-0.5579561330378056],[127,-63,69,-0.5574606731534004],[127,-63,70,-0.5572692304849625],[127,-63,71,-0.5575528629124165],[127,-63,72,-0.5592196434736252],[127,-63,73,-0.5617599152028561],[127,-63,74,-0.5636810474097729],[127,-63,75,-0.5638935938477516],[127,-63,76,-0.5618910305202007],[127,-63,77,-0.5576980598270893],[127,-63,78,-0.5523377247154713],[127,-63,79,-0.5468230731785297],[127,-62,64,-0.555078387260437],[127,-62,65,-0.5577244460582733],[127,-62,66,-0.5588730648159981],[127,-62,67,-0.5586894489824772],[127,-62,68,-0.5579561330378056],[127,-62,69,-0.5574606731534004],[127,-62,70,-0.5572692304849625],[127,-62,71,-0.5575528629124165],[127,-62,72,-0.5592196434736252],[127,-62,73,-0.5617599152028561],[127,-62,74,-0.5636810474097729],[127,-62,75,-0.5638935938477516],[127,-62,76,-0.5618910305202007],[127,-62,77,-0.5576980598270893],[127,-62,78,-0.5523377247154713],[127,-62,79,-0.5468230731785297],[127,-61,64,-0.555078387260437],[127,-61,65,-0.5577244460582733],[127,-61,66,-0.5588730648159981],[127,-61,67,-0.5586894489824772],[127,-61,68,-0.5579561330378056],[127,-61,69,-0.5574606731534004],[127,-61,70,-0.5572692304849625],[127,-61,71,-0.5575528629124165],[127,-61,72,-0.5592196434736252],[127,-61,73,-0.5617599152028561],[127,-61,74,-0.5636810474097729],[127,-61,75,-0.5638935938477516],[127,-61,76,-0.5618910305202007],[127,-61,77,-0.5576980598270893],[127,-61,78,-0.5523377247154713],[127,-61,79,-0.5468230731785297],[127,-60,64,-0.555078387260437],[127,-60,65,-0.5577244460582733],[127,-60,66,-0.5588730648159981],[127,-60,67,-0.5586894489824772],[127,-60,68,-0.5579561330378056],[127,-60,69,-0.5574606731534004],[127,-60,70,-0.5572692304849625],[127,-60,71,-0.5575528629124165],[127,-60,72,-0.5592196434736252],[127,-60,73,-0.5617599152028561],[127,-60,74,-0.5636810474097729],[127,-60,75,-0.5638935938477516],[127,-60,76,-0.5618910305202007],[127,-60,77,-0.5576980598270893],[127,-60,78,-0.5523377247154713],[127,-60,79,-0.5468230731785297],[127,-59,64,-0.555078387260437],[127,-59,65,-0.5577244460582733],[127,-59,66,-0.5588730648159981],[127,-59,67,-0.5586894489824772],[127,-59,68,-0.5579561330378056],[127,-59,69,-0.5574606731534004],[127,-59,70,-0.5572692304849625],[127,-59,71,-0.5575528629124165],[127,-59,72,-0.5592196434736252],[127,-59,73,-0.5617599152028561],[127,-59,74,-0.5636810474097729],[127,-59,75,-0.5638935938477516],[127,-59,76,-0.5618910305202007],[127,-59,77,-0.5576980598270893],[127,-59,78,-0.5523377247154713],[127,-59,79,-0.5468230731785297],[127,-58,64,-0.555078387260437],[127,-58,65,-0.5577244460582733],[127,-58,66,-0.5588730648159981],[127,-58,67,-0.5586894489824772],[127,-58,68,-0.5579561330378056],[127,-58,69,-0.5574606731534004],[127,-58,70,-0.5572692304849625],[127,-58,71,-0.5575528629124165],[127,-58,72,-0.5592196434736252],[127,-58,73,-0.5617599152028561],[127,-58,74,-0.5636810474097729],[127,-58,75,-0.5638935938477516],[127,-58,76,-0.5618910305202007],[127,-58,77,-0.5576980598270893],[127,-58,78,-0.5523377247154713],[127,-58,79,-0.5468230731785297],[127,-57,64,-0.555078387260437],[127,-57,65,-0.5577244460582733],[127,-57,66,-0.5588730648159981],[127,-57,67,-0.5586894489824772],[127,-57,68,-0.5579561330378056],[127,-57,69,-0.5574606731534004],[127,-57,70,-0.5572692304849625],[127,-57,71,-0.5575528629124165],[127,-57,72,-0.5592196434736252],[127,-57,73,-0.5617599152028561],[127,-57,74,-0.5636810474097729],[127,-57,75,-0.5638935938477516],[127,-57,76,-0.5618910305202007],[127,-57,77,-0.5576980598270893],[127,-57,78,-0.5523377247154713],[127,-57,79,-0.5468230731785297],[127,-56,64,-0.555078387260437],[127,-56,65,-0.5577244460582733],[127,-56,66,-0.5588730648159981],[127,-56,67,-0.5586894489824772],[127,-56,68,-0.5579561330378056],[127,-56,69,-0.5574606731534004],[127,-56,70,-0.5572692304849625],[127,-56,71,-0.5575528629124165],[127,-56,72,-0.5592196434736252],[127,-56,73,-0.5617599152028561],[127,-56,74,-0.5636810474097729],[127,-56,75,-0.5638935938477516],[127,-56,76,-0.5618910305202007],[127,-56,77,-0.5576980598270893],[127,-56,78,-0.5523377247154713],[127,-56,79,-0.5468230731785297],[127,-55,64,-0.555078387260437],[127,-55,65,-0.5577244460582733],[127,-55,66,-0.5588730648159981],[127,-55,67,-0.5586894489824772],[127,-55,68,-0.5579561330378056],[127,-55,69,-0.5574606731534004],[127,-55,70,-0.5572692304849625],[127,-55,71,-0.5575528629124165],[127,-55,72,-0.5592196434736252],[127,-55,73,-0.5617599152028561],[127,-55,74,-0.5636810474097729],[127,-55,75,-0.5638935938477516],[127,-55,76,-0.5618910305202007],[127,-55,77,-0.5576980598270893],[127,-55,78,-0.5523377247154713],[127,-55,79,-0.5468230731785297],[127,-54,64,-0.555078387260437],[127,-54,65,-0.5577244460582733],[127,-54,66,-0.5588730648159981],[127,-54,67,-0.5586894489824772],[127,-54,68,-0.5579561330378056],[127,-54,69,-0.5574606731534004],[127,-54,70,-0.5572692304849625],[127,-54,71,-0.5575528629124165],[127,-54,72,-0.5592196434736252],[127,-54,73,-0.5617599152028561],[127,-54,74,-0.5636810474097729],[127,-54,75,-0.5638935938477516],[127,-54,76,-0.5618910305202007],[127,-54,77,-0.5576980598270893],[127,-54,78,-0.5523377247154713],[127,-54,79,-0.5468230731785297],[127,-53,64,-0.555078387260437],[127,-53,65,-0.5577244460582733],[127,-53,66,-0.5588730648159981],[127,-53,67,-0.5586894489824772],[127,-53,68,-0.5579561330378056],[127,-53,69,-0.5574606731534004],[127,-53,70,-0.5572692304849625],[127,-53,71,-0.5575528629124165],[127,-53,72,-0.5592196434736252],[127,-53,73,-0.5617599152028561],[127,-53,74,-0.5636810474097729],[127,-53,75,-0.5638935938477516],[127,-53,76,-0.5618910305202007],[127,-53,77,-0.5576980598270893],[127,-53,78,-0.5523377247154713],[127,-53,79,-0.5468230731785297],[127,-52,64,-0.555078387260437],[127,-52,65,-0.5577244460582733],[127,-52,66,-0.5588730648159981],[127,-52,67,-0.5586894489824772],[127,-52,68,-0.5579561330378056],[127,-52,69,-0.5574606731534004],[127,-52,70,-0.5572692304849625],[127,-52,71,-0.5575528629124165],[127,-52,72,-0.5592196434736252],[127,-52,73,-0.5617599152028561],[127,-52,74,-0.5636810474097729],[127,-52,75,-0.5638935938477516],[127,-52,76,-0.5618910305202007],[127,-52,77,-0.5576980598270893],[127,-52,78,-0.5523377247154713],[127,-52,79,-0.5468230731785297],[127,-51,64,-0.555078387260437],[127,-51,65,-0.5577244460582733],[127,-51,66,-0.5588730648159981],[127,-51,67,-0.5586894489824772],[127,-51,68,-0.5579561330378056],[127,-51,69,-0.5574606731534004],[127,-51,70,-0.5572692304849625],[127,-51,71,-0.5575528629124165],[127,-51,72,-0.5592196434736252],[127,-51,73,-0.5617599152028561],[127,-51,74,-0.5636810474097729],[127,-51,75,-0.5638935938477516],[127,-51,76,-0.5618910305202007],[127,-51,77,-0.5576980598270893],[127,-51,78,-0.5523377247154713],[127,-51,79,-0.5468230731785297],[127,-50,64,-0.555078387260437],[127,-50,65,-0.5577244460582733],[127,-50,66,-0.5588730648159981],[127,-50,67,-0.5586894489824772],[127,-50,68,-0.5579561330378056],[127,-50,69,-0.5574606731534004],[127,-50,70,-0.5572692304849625],[127,-50,71,-0.5575528629124165],[127,-50,72,-0.5592196434736252],[127,-50,73,-0.5617599152028561],[127,-50,74,-0.5636810474097729],[127,-50,75,-0.5638935938477516],[127,-50,76,-0.5618910305202007],[127,-50,77,-0.5576980598270893],[127,-50,78,-0.5523377247154713],[127,-50,79,-0.5468230731785297],[127,-49,64,-0.555078387260437],[127,-49,65,-0.5577244460582733],[127,-49,66,-0.5588730648159981],[127,-49,67,-0.5586894489824772],[127,-49,68,-0.5579561330378056],[127,-49,69,-0.5574606731534004],[127,-49,70,-0.5572692304849625],[127,-49,71,-0.5575528629124165],[127,-49,72,-0.5592196434736252],[127,-49,73,-0.5617599152028561],[127,-49,74,-0.5636810474097729],[127,-49,75,-0.5638935938477516],[127,-49,76,-0.5618910305202007],[127,-49,77,-0.5576980598270893],[127,-49,78,-0.5523377247154713],[127,-49,79,-0.5468230731785297],[127,-48,64,-0.555078387260437],[127,-48,65,-0.5577244460582733],[127,-48,66,-0.5588730648159981],[127,-48,67,-0.5586894489824772],[127,-48,68,-0.5579561330378056],[127,-48,69,-0.5574606731534004],[127,-48,70,-0.5572692304849625],[127,-48,71,-0.5575528629124165],[127,-48,72,-0.5592196434736252],[127,-48,73,-0.5617599152028561],[127,-48,74,-0.5636810474097729],[127,-48,75,-0.5638935938477516],[127,-48,76,-0.5618910305202007],[127,-48,77,-0.5576980598270893],[127,-48,78,-0.5523377247154713],[127,-48,79,-0.5468230731785297],[127,-47,64,-0.555078387260437],[127,-47,65,-0.5577244460582733],[127,-47,66,-0.5588730648159981],[127,-47,67,-0.5586894489824772],[127,-47,68,-0.5579561330378056],[127,-47,69,-0.5574606731534004],[127,-47,70,-0.5572692304849625],[127,-47,71,-0.5575528629124165],[127,-47,72,-0.5592196434736252],[127,-47,73,-0.5617599152028561],[127,-47,74,-0.5636810474097729],[127,-47,75,-0.5638935938477516],[127,-47,76,-0.5618910305202007],[127,-47,77,-0.5576980598270893],[127,-47,78,-0.5523377247154713],[127,-47,79,-0.5468230731785297],[127,-46,64,-0.555078387260437],[127,-46,65,-0.5577244460582733],[127,-46,66,-0.5588730648159981],[127,-46,67,-0.5586894489824772],[127,-46,68,-0.5579561330378056],[127,-46,69,-0.5574606731534004],[127,-46,70,-0.5572692304849625],[127,-46,71,-0.5575528629124165],[127,-46,72,-0.5592196434736252],[127,-46,73,-0.5617599152028561],[127,-46,74,-0.5636810474097729],[127,-46,75,-0.5638935938477516],[127,-46,76,-0.5618910305202007],[127,-46,77,-0.5576980598270893],[127,-46,78,-0.5523377247154713],[127,-46,79,-0.5468230731785297],[127,-45,64,-0.555078387260437],[127,-45,65,-0.5577244460582733],[127,-45,66,-0.5588730648159981],[127,-45,67,-0.5586894489824772],[127,-45,68,-0.5579561330378056],[127,-45,69,-0.5574606731534004],[127,-45,70,-0.5572692304849625],[127,-45,71,-0.5575528629124165],[127,-45,72,-0.5592196434736252],[127,-45,73,-0.5617599152028561],[127,-45,74,-0.5636810474097729],[127,-45,75,-0.5638935938477516],[127,-45,76,-0.5618910305202007],[127,-45,77,-0.5576980598270893],[127,-45,78,-0.5523377247154713],[127,-45,79,-0.5468230731785297],[127,-44,64,-0.555078387260437],[127,-44,65,-0.5577244460582733],[127,-44,66,-0.5588730648159981],[127,-44,67,-0.5586894489824772],[127,-44,68,-0.5579561330378056],[127,-44,69,-0.5574606731534004],[127,-44,70,-0.5572692304849625],[127,-44,71,-0.5575528629124165],[127,-44,72,-0.5592196434736252],[127,-44,73,-0.5617599152028561],[127,-44,74,-0.5636810474097729],[127,-44,75,-0.5638935938477516],[127,-44,76,-0.5618910305202007],[127,-44,77,-0.5576980598270893],[127,-44,78,-0.5523377247154713],[127,-44,79,-0.5468230731785297],[127,-43,64,-0.555078387260437],[127,-43,65,-0.5577244460582733],[127,-43,66,-0.5588730648159981],[127,-43,67,-0.5586894489824772],[127,-43,68,-0.5579561330378056],[127,-43,69,-0.5574606731534004],[127,-43,70,-0.5572692304849625],[127,-43,71,-0.5575528629124165],[127,-43,72,-0.5592196434736252],[127,-43,73,-0.5617599152028561],[127,-43,74,-0.5636810474097729],[127,-43,75,-0.5638935938477516],[127,-43,76,-0.5618910305202007],[127,-43,77,-0.5576980598270893],[127,-43,78,-0.5523377247154713],[127,-43,79,-0.5468230731785297],[127,-42,64,-0.555078387260437],[127,-42,65,-0.5577244460582733],[127,-42,66,-0.5588730648159981],[127,-42,67,-0.5586894489824772],[127,-42,68,-0.5579561330378056],[127,-42,69,-0.5574606731534004],[127,-42,70,-0.5572692304849625],[127,-42,71,-0.5575528629124165],[127,-42,72,-0.5592196434736252],[127,-42,73,-0.5617599152028561],[127,-42,74,-0.5636810474097729],[127,-42,75,-0.5638935938477516],[127,-42,76,-0.5618910305202007],[127,-42,77,-0.5576980598270893],[127,-42,78,-0.5523377247154713],[127,-42,79,-0.5468230731785297],[127,-41,64,-0.555078387260437],[127,-41,65,-0.5577244460582733],[127,-41,66,-0.5588730648159981],[127,-41,67,-0.5586894489824772],[127,-41,68,-0.5579561330378056],[127,-41,69,-0.5574606731534004],[127,-41,70,-0.5572692304849625],[127,-41,71,-0.5575528629124165],[127,-41,72,-0.5592196434736252],[127,-41,73,-0.5617599152028561],[127,-41,74,-0.5636810474097729],[127,-41,75,-0.5638935938477516],[127,-41,76,-0.5618910305202007],[127,-41,77,-0.5576980598270893],[127,-41,78,-0.5523377247154713],[127,-41,79,-0.5468230731785297],[127,-40,64,-0.555078387260437],[127,-40,65,-0.5577244460582733],[127,-40,66,-0.5588730648159981],[127,-40,67,-0.5586894489824772],[127,-40,68,-0.5579561330378056],[127,-40,69,-0.5574606731534004],[127,-40,70,-0.5572692304849625],[127,-40,71,-0.5575528629124165],[127,-40,72,-0.5592196434736252],[127,-40,73,-0.5617599152028561],[127,-40,74,-0.5636810474097729],[127,-40,75,-0.5638935938477516],[127,-40,76,-0.5618910305202007],[127,-40,77,-0.5576980598270893],[127,-40,78,-0.5523377247154713],[127,-40,79,-0.5468230731785297],[127,-39,64,-0.555078387260437],[127,-39,65,-0.5577244460582733],[127,-39,66,-0.5588730648159981],[127,-39,67,-0.5586894489824772],[127,-39,68,-0.5579561330378056],[127,-39,69,-0.5574606731534004],[127,-39,70,-0.5572692304849625],[127,-39,71,-0.5575528629124165],[127,-39,72,-0.5592196434736252],[127,-39,73,-0.5617599152028561],[127,-39,74,-0.5636810474097729],[127,-39,75,-0.5638935938477516],[127,-39,76,-0.5618910305202007],[127,-39,77,-0.5576980598270893],[127,-39,78,-0.5523377247154713],[127,-39,79,-0.5468230731785297],[127,-38,64,-0.555078387260437],[127,-38,65,-0.5577244460582733],[127,-38,66,-0.5588730648159981],[127,-38,67,-0.5586894489824772],[127,-38,68,-0.5579561330378056],[127,-38,69,-0.5574606731534004],[127,-38,70,-0.5572692304849625],[127,-38,71,-0.5575528629124165],[127,-38,72,-0.5592196434736252],[127,-38,73,-0.5617599152028561],[127,-38,74,-0.5636810474097729],[127,-38,75,-0.5638935938477516],[127,-38,76,-0.5618910305202007],[127,-38,77,-0.5576980598270893],[127,-38,78,-0.5523377247154713],[127,-38,79,-0.5468230731785297],[127,-37,64,-0.555078387260437],[127,-37,65,-0.5577244460582733],[127,-37,66,-0.5588730648159981],[127,-37,67,-0.5586894489824772],[127,-37,68,-0.5579561330378056],[127,-37,69,-0.5574606731534004],[127,-37,70,-0.5572692304849625],[127,-37,71,-0.5575528629124165],[127,-37,72,-0.5592196434736252],[127,-37,73,-0.5617599152028561],[127,-37,74,-0.5636810474097729],[127,-37,75,-0.5638935938477516],[127,-37,76,-0.5618910305202007],[127,-37,77,-0.5576980598270893],[127,-37,78,-0.5523377247154713],[127,-37,79,-0.5468230731785297],[127,-36,64,-0.555078387260437],[127,-36,65,-0.5577244460582733],[127,-36,66,-0.5588730648159981],[127,-36,67,-0.5586894489824772],[127,-36,68,-0.5579561330378056],[127,-36,69,-0.5574606731534004],[127,-36,70,-0.5572692304849625],[127,-36,71,-0.5575528629124165],[127,-36,72,-0.5592196434736252],[127,-36,73,-0.5617599152028561],[127,-36,74,-0.5636810474097729],[127,-36,75,-0.5638935938477516],[127,-36,76,-0.5618910305202007],[127,-36,77,-0.5576980598270893],[127,-36,78,-0.5523377247154713],[127,-36,79,-0.5468230731785297],[127,-35,64,-0.555078387260437],[127,-35,65,-0.5577244460582733],[127,-35,66,-0.5588730648159981],[127,-35,67,-0.5586894489824772],[127,-35,68,-0.5579561330378056],[127,-35,69,-0.5574606731534004],[127,-35,70,-0.5572692304849625],[127,-35,71,-0.5575528629124165],[127,-35,72,-0.5592196434736252],[127,-35,73,-0.5617599152028561],[127,-35,74,-0.5636810474097729],[127,-35,75,-0.5638935938477516],[127,-35,76,-0.5618910305202007],[127,-35,77,-0.5576980598270893],[127,-35,78,-0.5523377247154713],[127,-35,79,-0.5468230731785297],[127,-34,64,-0.555078387260437],[127,-34,65,-0.5577244460582733],[127,-34,66,-0.5588730648159981],[127,-34,67,-0.5586894489824772],[127,-34,68,-0.5579561330378056],[127,-34,69,-0.5574606731534004],[127,-34,70,-0.5572692304849625],[127,-34,71,-0.5575528629124165],[127,-34,72,-0.5592196434736252],[127,-34,73,-0.5617599152028561],[127,-34,74,-0.5636810474097729],[127,-34,75,-0.5638935938477516],[127,-34,76,-0.5618910305202007],[127,-34,77,-0.5576980598270893],[127,-34,78,-0.5523377247154713],[127,-34,79,-0.5468230731785297],[127,-33,64,-0.555078387260437],[127,-33,65,-0.5577244460582733],[127,-33,66,-0.5588730648159981],[127,-33,67,-0.5586894489824772],[127,-33,68,-0.5579561330378056],[127,-33,69,-0.5574606731534004],[127,-33,70,-0.5572692304849625],[127,-33,71,-0.5575528629124165],[127,-33,72,-0.5592196434736252],[127,-33,73,-0.5617599152028561],[127,-33,74,-0.5636810474097729],[127,-33,75,-0.5638935938477516],[127,-33,76,-0.5618910305202007],[127,-33,77,-0.5576980598270893],[127,-33,78,-0.5523377247154713],[127,-33,79,-0.5468230731785297],[127,-32,64,-0.555078387260437],[127,-32,65,-0.5577244460582733],[127,-32,66,-0.5588730648159981],[127,-32,67,-0.5586894489824772],[127,-32,68,-0.5579561330378056],[127,-32,69,-0.5574606731534004],[127,-32,70,-0.5572692304849625],[127,-32,71,-0.5575528629124165],[127,-32,72,-0.5592196434736252],[127,-32,73,-0.5617599152028561],[127,-32,74,-0.5636810474097729],[127,-32,75,-0.5638935938477516],[127,-32,76,-0.5618910305202007],[127,-32,77,-0.5576980598270893],[127,-32,78,-0.5523377247154713],[127,-32,79,-0.5468230731785297],[127,-31,64,-0.555078387260437],[127,-31,65,-0.5577244460582733],[127,-31,66,-0.5588730648159981],[127,-31,67,-0.5586894489824772],[127,-31,68,-0.5579561330378056],[127,-31,69,-0.5574606731534004],[127,-31,70,-0.5572692304849625],[127,-31,71,-0.5575528629124165],[127,-31,72,-0.5592196434736252],[127,-31,73,-0.5617599152028561],[127,-31,74,-0.5636810474097729],[127,-31,75,-0.5638935938477516],[127,-31,76,-0.5618910305202007],[127,-31,77,-0.5576980598270893],[127,-31,78,-0.5523377247154713],[127,-31,79,-0.5468230731785297],[127,-30,64,-0.555078387260437],[127,-30,65,-0.5577244460582733],[127,-30,66,-0.5588730648159981],[127,-30,67,-0.5586894489824772],[127,-30,68,-0.5579561330378056],[127,-30,69,-0.5574606731534004],[127,-30,70,-0.5572692304849625],[127,-30,71,-0.5575528629124165],[127,-30,72,-0.5592196434736252],[127,-30,73,-0.5617599152028561],[127,-30,74,-0.5636810474097729],[127,-30,75,-0.5638935938477516],[127,-30,76,-0.5618910305202007],[127,-30,77,-0.5576980598270893],[127,-30,78,-0.5523377247154713],[127,-30,79,-0.5468230731785297],[127,-29,64,-0.555078387260437],[127,-29,65,-0.5577244460582733],[127,-29,66,-0.5588730648159981],[127,-29,67,-0.5586894489824772],[127,-29,68,-0.5579561330378056],[127,-29,69,-0.5574606731534004],[127,-29,70,-0.5572692304849625],[127,-29,71,-0.5575528629124165],[127,-29,72,-0.5592196434736252],[127,-29,73,-0.5617599152028561],[127,-29,74,-0.5636810474097729],[127,-29,75,-0.5638935938477516],[127,-29,76,-0.5618910305202007],[127,-29,77,-0.5576980598270893],[127,-29,78,-0.5523377247154713],[127,-29,79,-0.5468230731785297],[127,-28,64,-0.555078387260437],[127,-28,65,-0.5577244460582733],[127,-28,66,-0.5588730648159981],[127,-28,67,-0.5586894489824772],[127,-28,68,-0.5579561330378056],[127,-28,69,-0.5574606731534004],[127,-28,70,-0.5572692304849625],[127,-28,71,-0.5575528629124165],[127,-28,72,-0.5592196434736252],[127,-28,73,-0.5617599152028561],[127,-28,74,-0.5636810474097729],[127,-28,75,-0.5638935938477516],[127,-28,76,-0.5618910305202007],[127,-28,77,-0.5576980598270893],[127,-28,78,-0.5523377247154713],[127,-28,79,-0.5468230731785297],[127,-27,64,-0.555078387260437],[127,-27,65,-0.5577244460582733],[127,-27,66,-0.5588730648159981],[127,-27,67,-0.5586894489824772],[127,-27,68,-0.5579561330378056],[127,-27,69,-0.5574606731534004],[127,-27,70,-0.5572692304849625],[127,-27,71,-0.5575528629124165],[127,-27,72,-0.5592196434736252],[127,-27,73,-0.5617599152028561],[127,-27,74,-0.5636810474097729],[127,-27,75,-0.5638935938477516],[127,-27,76,-0.5618910305202007],[127,-27,77,-0.5576980598270893],[127,-27,78,-0.5523377247154713],[127,-27,79,-0.5468230731785297],[127,-26,64,-0.555078387260437],[127,-26,65,-0.5577244460582733],[127,-26,66,-0.5588730648159981],[127,-26,67,-0.5586894489824772],[127,-26,68,-0.5579561330378056],[127,-26,69,-0.5574606731534004],[127,-26,70,-0.5572692304849625],[127,-26,71,-0.5575528629124165],[127,-26,72,-0.5592196434736252],[127,-26,73,-0.5617599152028561],[127,-26,74,-0.5636810474097729],[127,-26,75,-0.5638935938477516],[127,-26,76,-0.5618910305202007],[127,-26,77,-0.5576980598270893],[127,-26,78,-0.5523377247154713],[127,-26,79,-0.5468230731785297],[127,-25,64,-0.555078387260437],[127,-25,65,-0.5577244460582733],[127,-25,66,-0.5588730648159981],[127,-25,67,-0.5586894489824772],[127,-25,68,-0.5579561330378056],[127,-25,69,-0.5574606731534004],[127,-25,70,-0.5572692304849625],[127,-25,71,-0.5575528629124165],[127,-25,72,-0.5592196434736252],[127,-25,73,-0.5617599152028561],[127,-25,74,-0.5636810474097729],[127,-25,75,-0.5638935938477516],[127,-25,76,-0.5618910305202007],[127,-25,77,-0.5576980598270893],[127,-25,78,-0.5523377247154713],[127,-25,79,-0.5468230731785297],[127,-24,64,-0.555078387260437],[127,-24,65,-0.5577244460582733],[127,-24,66,-0.5588730648159981],[127,-24,67,-0.5586894489824772],[127,-24,68,-0.5579561330378056],[127,-24,69,-0.5574606731534004],[127,-24,70,-0.5572692304849625],[127,-24,71,-0.5575528629124165],[127,-24,72,-0.5592196434736252],[127,-24,73,-0.5617599152028561],[127,-24,74,-0.5636810474097729],[127,-24,75,-0.5638935938477516],[127,-24,76,-0.5618910305202007],[127,-24,77,-0.5576980598270893],[127,-24,78,-0.5523377247154713],[127,-24,79,-0.5468230731785297],[127,-23,64,-0.555078387260437],[127,-23,65,-0.5577244460582733],[127,-23,66,-0.5588730648159981],[127,-23,67,-0.5586894489824772],[127,-23,68,-0.5579561330378056],[127,-23,69,-0.5574606731534004],[127,-23,70,-0.5572692304849625],[127,-23,71,-0.5575528629124165],[127,-23,72,-0.5592196434736252],[127,-23,73,-0.5617599152028561],[127,-23,74,-0.5636810474097729],[127,-23,75,-0.5638935938477516],[127,-23,76,-0.5618910305202007],[127,-23,77,-0.5576980598270893],[127,-23,78,-0.5523377247154713],[127,-23,79,-0.5468230731785297],[127,-22,64,-0.555078387260437],[127,-22,65,-0.5577244460582733],[127,-22,66,-0.5588730648159981],[127,-22,67,-0.5586894489824772],[127,-22,68,-0.5579561330378056],[127,-22,69,-0.5574606731534004],[127,-22,70,-0.5572692304849625],[127,-22,71,-0.5575528629124165],[127,-22,72,-0.5592196434736252],[127,-22,73,-0.5617599152028561],[127,-22,74,-0.5636810474097729],[127,-22,75,-0.5638935938477516],[127,-22,76,-0.5618910305202007],[127,-22,77,-0.5576980598270893],[127,-22,78,-0.5523377247154713],[127,-22,79,-0.5468230731785297],[127,-21,64,-0.555078387260437],[127,-21,65,-0.5577244460582733],[127,-21,66,-0.5588730648159981],[127,-21,67,-0.5586894489824772],[127,-21,68,-0.5579561330378056],[127,-21,69,-0.5574606731534004],[127,-21,70,-0.5572692304849625],[127,-21,71,-0.5575528629124165],[127,-21,72,-0.5592196434736252],[127,-21,73,-0.5617599152028561],[127,-21,74,-0.5636810474097729],[127,-21,75,-0.5638935938477516],[127,-21,76,-0.5618910305202007],[127,-21,77,-0.5576980598270893],[127,-21,78,-0.5523377247154713],[127,-21,79,-0.5468230731785297],[127,-20,64,-0.555078387260437],[127,-20,65,-0.5577244460582733],[127,-20,66,-0.5588730648159981],[127,-20,67,-0.5586894489824772],[127,-20,68,-0.5579561330378056],[127,-20,69,-0.5574606731534004],[127,-20,70,-0.5572692304849625],[127,-20,71,-0.5575528629124165],[127,-20,72,-0.5592196434736252],[127,-20,73,-0.5617599152028561],[127,-20,74,-0.5636810474097729],[127,-20,75,-0.5638935938477516],[127,-20,76,-0.5618910305202007],[127,-20,77,-0.5576980598270893],[127,-20,78,-0.5523377247154713],[127,-20,79,-0.5468230731785297],[127,-19,64,-0.555078387260437],[127,-19,65,-0.5577244460582733],[127,-19,66,-0.5588730648159981],[127,-19,67,-0.5586894489824772],[127,-19,68,-0.5579561330378056],[127,-19,69,-0.5574606731534004],[127,-19,70,-0.5572692304849625],[127,-19,71,-0.5575528629124165],[127,-19,72,-0.5592196434736252],[127,-19,73,-0.5617599152028561],[127,-19,74,-0.5636810474097729],[127,-19,75,-0.5638935938477516],[127,-19,76,-0.5618910305202007],[127,-19,77,-0.5576980598270893],[127,-19,78,-0.5523377247154713],[127,-19,79,-0.5468230731785297],[127,-18,64,-0.555078387260437],[127,-18,65,-0.5577244460582733],[127,-18,66,-0.5588730648159981],[127,-18,67,-0.5586894489824772],[127,-18,68,-0.5579561330378056],[127,-18,69,-0.5574606731534004],[127,-18,70,-0.5572692304849625],[127,-18,71,-0.5575528629124165],[127,-18,72,-0.5592196434736252],[127,-18,73,-0.5617599152028561],[127,-18,74,-0.5636810474097729],[127,-18,75,-0.5638935938477516],[127,-18,76,-0.5618910305202007],[127,-18,77,-0.5576980598270893],[127,-18,78,-0.5523377247154713],[127,-18,79,-0.5468230731785297],[127,-17,64,-0.555078387260437],[127,-17,65,-0.5577244460582733],[127,-17,66,-0.5588730648159981],[127,-17,67,-0.5586894489824772],[127,-17,68,-0.5579561330378056],[127,-17,69,-0.5574606731534004],[127,-17,70,-0.5572692304849625],[127,-17,71,-0.5575528629124165],[127,-17,72,-0.5592196434736252],[127,-17,73,-0.5617599152028561],[127,-17,74,-0.5636810474097729],[127,-17,75,-0.5638935938477516],[127,-17,76,-0.5618910305202007],[127,-17,77,-0.5576980598270893],[127,-17,78,-0.5523377247154713],[127,-17,79,-0.5468230731785297],[127,-16,64,-0.555078387260437],[127,-16,65,-0.5577244460582733],[127,-16,66,-0.5588730648159981],[127,-16,67,-0.5586894489824772],[127,-16,68,-0.5579561330378056],[127,-16,69,-0.5574606731534004],[127,-16,70,-0.5572692304849625],[127,-16,71,-0.5575528629124165],[127,-16,72,-0.5592196434736252],[127,-16,73,-0.5617599152028561],[127,-16,74,-0.5636810474097729],[127,-16,75,-0.5638935938477516],[127,-16,76,-0.5618910305202007],[127,-16,77,-0.5576980598270893],[127,-16,78,-0.5523377247154713],[127,-16,79,-0.5468230731785297],[127,-15,64,-0.555078387260437],[127,-15,65,-0.5577244460582733],[127,-15,66,-0.5588730648159981],[127,-15,67,-0.5586894489824772],[127,-15,68,-0.5579561330378056],[127,-15,69,-0.5574606731534004],[127,-15,70,-0.5572692304849625],[127,-15,71,-0.5575528629124165],[127,-15,72,-0.5592196434736252],[127,-15,73,-0.5617599152028561],[127,-15,74,-0.5636810474097729],[127,-15,75,-0.5638935938477516],[127,-15,76,-0.5618910305202007],[127,-15,77,-0.5576980598270893],[127,-15,78,-0.5523377247154713],[127,-15,79,-0.5468230731785297],[127,-14,64,-0.555078387260437],[127,-14,65,-0.5577244460582733],[127,-14,66,-0.5588730648159981],[127,-14,67,-0.5586894489824772],[127,-14,68,-0.5579561330378056],[127,-14,69,-0.5574606731534004],[127,-14,70,-0.5572692304849625],[127,-14,71,-0.5575528629124165],[127,-14,72,-0.5592196434736252],[127,-14,73,-0.5617599152028561],[127,-14,74,-0.5636810474097729],[127,-14,75,-0.5638935938477516],[127,-14,76,-0.5618910305202007],[127,-14,77,-0.5576980598270893],[127,-14,78,-0.5523377247154713],[127,-14,79,-0.5468230731785297],[127,-13,64,-0.555078387260437],[127,-13,65,-0.5577244460582733],[127,-13,66,-0.5588730648159981],[127,-13,67,-0.5586894489824772],[127,-13,68,-0.5579561330378056],[127,-13,69,-0.5574606731534004],[127,-13,70,-0.5572692304849625],[127,-13,71,-0.5575528629124165],[127,-13,72,-0.5592196434736252],[127,-13,73,-0.5617599152028561],[127,-13,74,-0.5636810474097729],[127,-13,75,-0.5638935938477516],[127,-13,76,-0.5618910305202007],[127,-13,77,-0.5576980598270893],[127,-13,78,-0.5523377247154713],[127,-13,79,-0.5468230731785297],[127,-12,64,-0.555078387260437],[127,-12,65,-0.5577244460582733],[127,-12,66,-0.5588730648159981],[127,-12,67,-0.5586894489824772],[127,-12,68,-0.5579561330378056],[127,-12,69,-0.5574606731534004],[127,-12,70,-0.5572692304849625],[127,-12,71,-0.5575528629124165],[127,-12,72,-0.5592196434736252],[127,-12,73,-0.5617599152028561],[127,-12,74,-0.5636810474097729],[127,-12,75,-0.5638935938477516],[127,-12,76,-0.5618910305202007],[127,-12,77,-0.5576980598270893],[127,-12,78,-0.5523377247154713],[127,-12,79,-0.5468230731785297],[127,-11,64,-0.555078387260437],[127,-11,65,-0.5577244460582733],[127,-11,66,-0.5588730648159981],[127,-11,67,-0.5586894489824772],[127,-11,68,-0.5579561330378056],[127,-11,69,-0.5574606731534004],[127,-11,70,-0.5572692304849625],[127,-11,71,-0.5575528629124165],[127,-11,72,-0.5592196434736252],[127,-11,73,-0.5617599152028561],[127,-11,74,-0.5636810474097729],[127,-11,75,-0.5638935938477516],[127,-11,76,-0.5618910305202007],[127,-11,77,-0.5576980598270893],[127,-11,78,-0.5523377247154713],[127,-11,79,-0.5468230731785297],[127,-10,64,-0.555078387260437],[127,-10,65,-0.5577244460582733],[127,-10,66,-0.5588730648159981],[127,-10,67,-0.5586894489824772],[127,-10,68,-0.5579561330378056],[127,-10,69,-0.5574606731534004],[127,-10,70,-0.5572692304849625],[127,-10,71,-0.5575528629124165],[127,-10,72,-0.5592196434736252],[127,-10,73,-0.5617599152028561],[127,-10,74,-0.5636810474097729],[127,-10,75,-0.5638935938477516],[127,-10,76,-0.5618910305202007],[127,-10,77,-0.5576980598270893],[127,-10,78,-0.5523377247154713],[127,-10,79,-0.5468230731785297],[127,-9,64,-0.555078387260437],[127,-9,65,-0.5577244460582733],[127,-9,66,-0.5588730648159981],[127,-9,67,-0.5586894489824772],[127,-9,68,-0.5579561330378056],[127,-9,69,-0.5574606731534004],[127,-9,70,-0.5572692304849625],[127,-9,71,-0.5575528629124165],[127,-9,72,-0.5592196434736252],[127,-9,73,-0.5617599152028561],[127,-9,74,-0.5636810474097729],[127,-9,75,-0.5638935938477516],[127,-9,76,-0.5618910305202007],[127,-9,77,-0.5576980598270893],[127,-9,78,-0.5523377247154713],[127,-9,79,-0.5468230731785297],[127,-8,64,-0.555078387260437],[127,-8,65,-0.5577244460582733],[127,-8,66,-0.5588730648159981],[127,-8,67,-0.5586894489824772],[127,-8,68,-0.5579561330378056],[127,-8,69,-0.5574606731534004],[127,-8,70,-0.5572692304849625],[127,-8,71,-0.5575528629124165],[127,-8,72,-0.5592196434736252],[127,-8,73,-0.5617599152028561],[127,-8,74,-0.5636810474097729],[127,-8,75,-0.5638935938477516],[127,-8,76,-0.5618910305202007],[127,-8,77,-0.5576980598270893],[127,-8,78,-0.5523377247154713],[127,-8,79,-0.5468230731785297],[127,-7,64,-0.555078387260437],[127,-7,65,-0.5577244460582733],[127,-7,66,-0.5588730648159981],[127,-7,67,-0.5586894489824772],[127,-7,68,-0.5579561330378056],[127,-7,69,-0.5574606731534004],[127,-7,70,-0.5572692304849625],[127,-7,71,-0.5575528629124165],[127,-7,72,-0.5592196434736252],[127,-7,73,-0.5617599152028561],[127,-7,74,-0.5636810474097729],[127,-7,75,-0.5638935938477516],[127,-7,76,-0.5618910305202007],[127,-7,77,-0.5576980598270893],[127,-7,78,-0.5523377247154713],[127,-7,79,-0.5468230731785297],[127,-6,64,-0.555078387260437],[127,-6,65,-0.5577244460582733],[127,-6,66,-0.5588730648159981],[127,-6,67,-0.5586894489824772],[127,-6,68,-0.5579561330378056],[127,-6,69,-0.5574606731534004],[127,-6,70,-0.5572692304849625],[127,-6,71,-0.5575528629124165],[127,-6,72,-0.5592196434736252],[127,-6,73,-0.5617599152028561],[127,-6,74,-0.5636810474097729],[127,-6,75,-0.5638935938477516],[127,-6,76,-0.5618910305202007],[127,-6,77,-0.5576980598270893],[127,-6,78,-0.5523377247154713],[127,-6,79,-0.5468230731785297],[127,-5,64,-0.555078387260437],[127,-5,65,-0.5577244460582733],[127,-5,66,-0.5588730648159981],[127,-5,67,-0.5586894489824772],[127,-5,68,-0.5579561330378056],[127,-5,69,-0.5574606731534004],[127,-5,70,-0.5572692304849625],[127,-5,71,-0.5575528629124165],[127,-5,72,-0.5592196434736252],[127,-5,73,-0.5617599152028561],[127,-5,74,-0.5636810474097729],[127,-5,75,-0.5638935938477516],[127,-5,76,-0.5618910305202007],[127,-5,77,-0.5576980598270893],[127,-5,78,-0.5523377247154713],[127,-5,79,-0.5468230731785297],[127,-4,64,-0.555078387260437],[127,-4,65,-0.5577244460582733],[127,-4,66,-0.5588730648159981],[127,-4,67,-0.5586894489824772],[127,-4,68,-0.5579561330378056],[127,-4,69,-0.5574606731534004],[127,-4,70,-0.5572692304849625],[127,-4,71,-0.5575528629124165],[127,-4,72,-0.5592196434736252],[127,-4,73,-0.5617599152028561],[127,-4,74,-0.5636810474097729],[127,-4,75,-0.5638935938477516],[127,-4,76,-0.5618910305202007],[127,-4,77,-0.5576980598270893],[127,-4,78,-0.5523377247154713],[127,-4,79,-0.5468230731785297],[127,-3,64,-0.555078387260437],[127,-3,65,-0.5577244460582733],[127,-3,66,-0.5588730648159981],[127,-3,67,-0.5586894489824772],[127,-3,68,-0.5579561330378056],[127,-3,69,-0.5574606731534004],[127,-3,70,-0.5572692304849625],[127,-3,71,-0.5575528629124165],[127,-3,72,-0.5592196434736252],[127,-3,73,-0.5617599152028561],[127,-3,74,-0.5636810474097729],[127,-3,75,-0.5638935938477516],[127,-3,76,-0.5618910305202007],[127,-3,77,-0.5576980598270893],[127,-3,78,-0.5523377247154713],[127,-3,79,-0.5468230731785297],[127,-2,64,-0.555078387260437],[127,-2,65,-0.5577244460582733],[127,-2,66,-0.5588730648159981],[127,-2,67,-0.5586894489824772],[127,-2,68,-0.5579561330378056],[127,-2,69,-0.5574606731534004],[127,-2,70,-0.5572692304849625],[127,-2,71,-0.5575528629124165],[127,-2,72,-0.5592196434736252],[127,-2,73,-0.5617599152028561],[127,-2,74,-0.5636810474097729],[127,-2,75,-0.5638935938477516],[127,-2,76,-0.5618910305202007],[127,-2,77,-0.5576980598270893],[127,-2,78,-0.5523377247154713],[127,-2,79,-0.5468230731785297],[127,-1,64,-0.555078387260437],[127,-1,65,-0.5577244460582733],[127,-1,66,-0.5588730648159981],[127,-1,67,-0.5586894489824772],[127,-1,68,-0.5579561330378056],[127,-1,69,-0.5574606731534004],[127,-1,70,-0.5572692304849625],[127,-1,71,-0.5575528629124165],[127,-1,72,-0.5592196434736252],[127,-1,73,-0.5617599152028561],[127,-1,74,-0.5636810474097729],[127,-1,75,-0.5638935938477516],[127,-1,76,-0.5618910305202007],[127,-1,77,-0.5576980598270893],[127,-1,78,-0.5523377247154713],[127,-1,79,-0.5468230731785297],[127,0,64,-0.555078387260437],[127,0,65,-0.5577244460582733],[127,0,66,-0.5588730648159981],[127,0,67,-0.5586894489824772],[127,0,68,-0.5579561330378056],[127,0,69,-0.5574606731534004],[127,0,70,-0.5572692304849625],[127,0,71,-0.5575528629124165],[127,0,72,-0.5592196434736252],[127,0,73,-0.5617599152028561],[127,0,74,-0.5636810474097729],[127,0,75,-0.5638935938477516],[127,0,76,-0.5618910305202007],[127,0,77,-0.5576980598270893],[127,0,78,-0.5523377247154713],[127,0,79,-0.5468230731785297],[127,1,64,-0.555078387260437],[127,1,65,-0.5577244460582733],[127,1,66,-0.5588730648159981],[127,1,67,-0.5586894489824772],[127,1,68,-0.5579561330378056],[127,1,69,-0.5574606731534004],[127,1,70,-0.5572692304849625],[127,1,71,-0.5575528629124165],[127,1,72,-0.5592196434736252],[127,1,73,-0.5617599152028561],[127,1,74,-0.5636810474097729],[127,1,75,-0.5638935938477516],[127,1,76,-0.5618910305202007],[127,1,77,-0.5576980598270893],[127,1,78,-0.5523377247154713],[127,1,79,-0.5468230731785297],[127,2,64,-0.555078387260437],[127,2,65,-0.5577244460582733],[127,2,66,-0.5588730648159981],[127,2,67,-0.5586894489824772],[127,2,68,-0.5579561330378056],[127,2,69,-0.5574606731534004],[127,2,70,-0.5572692304849625],[127,2,71,-0.5575528629124165],[127,2,72,-0.5592196434736252],[127,2,73,-0.5617599152028561],[127,2,74,-0.5636810474097729],[127,2,75,-0.5638935938477516],[127,2,76,-0.5618910305202007],[127,2,77,-0.5576980598270893],[127,2,78,-0.5523377247154713],[127,2,79,-0.5468230731785297],[127,3,64,-0.555078387260437],[127,3,65,-0.5577244460582733],[127,3,66,-0.5588730648159981],[127,3,67,-0.5586894489824772],[127,3,68,-0.5579561330378056],[127,3,69,-0.5574606731534004],[127,3,70,-0.5572692304849625],[127,3,71,-0.5575528629124165],[127,3,72,-0.5592196434736252],[127,3,73,-0.5617599152028561],[127,3,74,-0.5636810474097729],[127,3,75,-0.5638935938477516],[127,3,76,-0.5618910305202007],[127,3,77,-0.5576980598270893],[127,3,78,-0.5523377247154713],[127,3,79,-0.5468230731785297],[127,4,64,-0.555078387260437],[127,4,65,-0.5577244460582733],[127,4,66,-0.5588730648159981],[127,4,67,-0.5586894489824772],[127,4,68,-0.5579561330378056],[127,4,69,-0.5574606731534004],[127,4,70,-0.5572692304849625],[127,4,71,-0.5575528629124165],[127,4,72,-0.5592196434736252],[127,4,73,-0.5617599152028561],[127,4,74,-0.5636810474097729],[127,4,75,-0.5638935938477516],[127,4,76,-0.5618910305202007],[127,4,77,-0.5576980598270893],[127,4,78,-0.5523377247154713],[127,4,79,-0.5468230731785297],[127,5,64,-0.555078387260437],[127,5,65,-0.5577244460582733],[127,5,66,-0.5588730648159981],[127,5,67,-0.5586894489824772],[127,5,68,-0.5579561330378056],[127,5,69,-0.5574606731534004],[127,5,70,-0.5572692304849625],[127,5,71,-0.5575528629124165],[127,5,72,-0.5592196434736252],[127,5,73,-0.5617599152028561],[127,5,74,-0.5636810474097729],[127,5,75,-0.5638935938477516],[127,5,76,-0.5618910305202007],[127,5,77,-0.5576980598270893],[127,5,78,-0.5523377247154713],[127,5,79,-0.5468230731785297],[127,6,64,-0.555078387260437],[127,6,65,-0.5577244460582733],[127,6,66,-0.5588730648159981],[127,6,67,-0.5586894489824772],[127,6,68,-0.5579561330378056],[127,6,69,-0.5574606731534004],[127,6,70,-0.5572692304849625],[127,6,71,-0.5575528629124165],[127,6,72,-0.5592196434736252],[127,6,73,-0.5617599152028561],[127,6,74,-0.5636810474097729],[127,6,75,-0.5638935938477516],[127,6,76,-0.5618910305202007],[127,6,77,-0.5576980598270893],[127,6,78,-0.5523377247154713],[127,6,79,-0.5468230731785297],[127,7,64,-0.555078387260437],[127,7,65,-0.5577244460582733],[127,7,66,-0.5588730648159981],[127,7,67,-0.5586894489824772],[127,7,68,-0.5579561330378056],[127,7,69,-0.5574606731534004],[127,7,70,-0.5572692304849625],[127,7,71,-0.5575528629124165],[127,7,72,-0.5592196434736252],[127,7,73,-0.5617599152028561],[127,7,74,-0.5636810474097729],[127,7,75,-0.5638935938477516],[127,7,76,-0.5618910305202007],[127,7,77,-0.5576980598270893],[127,7,78,-0.5523377247154713],[127,7,79,-0.5468230731785297],[127,8,64,-0.555078387260437],[127,8,65,-0.5577244460582733],[127,8,66,-0.5588730648159981],[127,8,67,-0.5586894489824772],[127,8,68,-0.5579561330378056],[127,8,69,-0.5574606731534004],[127,8,70,-0.5572692304849625],[127,8,71,-0.5575528629124165],[127,8,72,-0.5592196434736252],[127,8,73,-0.5617599152028561],[127,8,74,-0.5636810474097729],[127,8,75,-0.5638935938477516],[127,8,76,-0.5618910305202007],[127,8,77,-0.5576980598270893],[127,8,78,-0.5523377247154713],[127,8,79,-0.5468230731785297],[127,9,64,-0.555078387260437],[127,9,65,-0.5577244460582733],[127,9,66,-0.5588730648159981],[127,9,67,-0.5586894489824772],[127,9,68,-0.5579561330378056],[127,9,69,-0.5574606731534004],[127,9,70,-0.5572692304849625],[127,9,71,-0.5575528629124165],[127,9,72,-0.5592196434736252],[127,9,73,-0.5617599152028561],[127,9,74,-0.5636810474097729],[127,9,75,-0.5638935938477516],[127,9,76,-0.5618910305202007],[127,9,77,-0.5576980598270893],[127,9,78,-0.5523377247154713],[127,9,79,-0.5468230731785297],[127,10,64,-0.555078387260437],[127,10,65,-0.5577244460582733],[127,10,66,-0.5588730648159981],[127,10,67,-0.5586894489824772],[127,10,68,-0.5579561330378056],[127,10,69,-0.5574606731534004],[127,10,70,-0.5572692304849625],[127,10,71,-0.5575528629124165],[127,10,72,-0.5592196434736252],[127,10,73,-0.5617599152028561],[127,10,74,-0.5636810474097729],[127,10,75,-0.5638935938477516],[127,10,76,-0.5618910305202007],[127,10,77,-0.5576980598270893],[127,10,78,-0.5523377247154713],[127,10,79,-0.5468230731785297],[127,11,64,-0.555078387260437],[127,11,65,-0.5577244460582733],[127,11,66,-0.5588730648159981],[127,11,67,-0.5586894489824772],[127,11,68,-0.5579561330378056],[127,11,69,-0.5574606731534004],[127,11,70,-0.5572692304849625],[127,11,71,-0.5575528629124165],[127,11,72,-0.5592196434736252],[127,11,73,-0.5617599152028561],[127,11,74,-0.5636810474097729],[127,11,75,-0.5638935938477516],[127,11,76,-0.5618910305202007],[127,11,77,-0.5576980598270893],[127,11,78,-0.5523377247154713],[127,11,79,-0.5468230731785297],[127,12,64,-0.555078387260437],[127,12,65,-0.5577244460582733],[127,12,66,-0.5588730648159981],[127,12,67,-0.5586894489824772],[127,12,68,-0.5579561330378056],[127,12,69,-0.5574606731534004],[127,12,70,-0.5572692304849625],[127,12,71,-0.5575528629124165],[127,12,72,-0.5592196434736252],[127,12,73,-0.5617599152028561],[127,12,74,-0.5636810474097729],[127,12,75,-0.5638935938477516],[127,12,76,-0.5618910305202007],[127,12,77,-0.5576980598270893],[127,12,78,-0.5523377247154713],[127,12,79,-0.5468230731785297],[127,13,64,-0.555078387260437],[127,13,65,-0.5577244460582733],[127,13,66,-0.5588730648159981],[127,13,67,-0.5586894489824772],[127,13,68,-0.5579561330378056],[127,13,69,-0.5574606731534004],[127,13,70,-0.5572692304849625],[127,13,71,-0.5575528629124165],[127,13,72,-0.5592196434736252],[127,13,73,-0.5617599152028561],[127,13,74,-0.5636810474097729],[127,13,75,-0.5638935938477516],[127,13,76,-0.5618910305202007],[127,13,77,-0.5576980598270893],[127,13,78,-0.5523377247154713],[127,13,79,-0.5468230731785297],[127,14,64,-0.555078387260437],[127,14,65,-0.5577244460582733],[127,14,66,-0.5588730648159981],[127,14,67,-0.5586894489824772],[127,14,68,-0.5579561330378056],[127,14,69,-0.5574606731534004],[127,14,70,-0.5572692304849625],[127,14,71,-0.5575528629124165],[127,14,72,-0.5592196434736252],[127,14,73,-0.5617599152028561],[127,14,74,-0.5636810474097729],[127,14,75,-0.5638935938477516],[127,14,76,-0.5618910305202007],[127,14,77,-0.5576980598270893],[127,14,78,-0.5523377247154713],[127,14,79,-0.5468230731785297],[127,15,64,-0.555078387260437],[127,15,65,-0.5577244460582733],[127,15,66,-0.5588730648159981],[127,15,67,-0.5586894489824772],[127,15,68,-0.5579561330378056],[127,15,69,-0.5574606731534004],[127,15,70,-0.5572692304849625],[127,15,71,-0.5575528629124165],[127,15,72,-0.5592196434736252],[127,15,73,-0.5617599152028561],[127,15,74,-0.5636810474097729],[127,15,75,-0.5638935938477516],[127,15,76,-0.5618910305202007],[127,15,77,-0.5576980598270893],[127,15,78,-0.5523377247154713],[127,15,79,-0.5468230731785297],[127,16,64,-0.555078387260437],[127,16,65,-0.5577244460582733],[127,16,66,-0.5588730648159981],[127,16,67,-0.5586894489824772],[127,16,68,-0.5579561330378056],[127,16,69,-0.5574606731534004],[127,16,70,-0.5572692304849625],[127,16,71,-0.5575528629124165],[127,16,72,-0.5592196434736252],[127,16,73,-0.5617599152028561],[127,16,74,-0.5636810474097729],[127,16,75,-0.5638935938477516],[127,16,76,-0.5618910305202007],[127,16,77,-0.5576980598270893],[127,16,78,-0.5523377247154713],[127,16,79,-0.5468230731785297],[127,17,64,-0.555078387260437],[127,17,65,-0.5577244460582733],[127,17,66,-0.5588730648159981],[127,17,67,-0.5586894489824772],[127,17,68,-0.5579561330378056],[127,17,69,-0.5574606731534004],[127,17,70,-0.5572692304849625],[127,17,71,-0.5575528629124165],[127,17,72,-0.5592196434736252],[127,17,73,-0.5617599152028561],[127,17,74,-0.5636810474097729],[127,17,75,-0.5638935938477516],[127,17,76,-0.5618910305202007],[127,17,77,-0.5576980598270893],[127,17,78,-0.5523377247154713],[127,17,79,-0.5468230731785297],[127,18,64,-0.555078387260437],[127,18,65,-0.5577244460582733],[127,18,66,-0.5588730648159981],[127,18,67,-0.5586894489824772],[127,18,68,-0.5579561330378056],[127,18,69,-0.5574606731534004],[127,18,70,-0.5572692304849625],[127,18,71,-0.5575528629124165],[127,18,72,-0.5592196434736252],[127,18,73,-0.5617599152028561],[127,18,74,-0.5636810474097729],[127,18,75,-0.5638935938477516],[127,18,76,-0.5618910305202007],[127,18,77,-0.5576980598270893],[127,18,78,-0.5523377247154713],[127,18,79,-0.5468230731785297],[127,19,64,-0.555078387260437],[127,19,65,-0.5577244460582733],[127,19,66,-0.5588730648159981],[127,19,67,-0.5586894489824772],[127,19,68,-0.5579561330378056],[127,19,69,-0.5574606731534004],[127,19,70,-0.5572692304849625],[127,19,71,-0.5575528629124165],[127,19,72,-0.5592196434736252],[127,19,73,-0.5617599152028561],[127,19,74,-0.5636810474097729],[127,19,75,-0.5638935938477516],[127,19,76,-0.5618910305202007],[127,19,77,-0.5576980598270893],[127,19,78,-0.5523377247154713],[127,19,79,-0.5468230731785297],[127,20,64,-0.555078387260437],[127,20,65,-0.5577244460582733],[127,20,66,-0.5588730648159981],[127,20,67,-0.5586894489824772],[127,20,68,-0.5579561330378056],[127,20,69,-0.5574606731534004],[127,20,70,-0.5572692304849625],[127,20,71,-0.5575528629124165],[127,20,72,-0.5592196434736252],[127,20,73,-0.5617599152028561],[127,20,74,-0.5636810474097729],[127,20,75,-0.5638935938477516],[127,20,76,-0.5618910305202007],[127,20,77,-0.5576980598270893],[127,20,78,-0.5523377247154713],[127,20,79,-0.5468230731785297],[127,21,64,-0.555078387260437],[127,21,65,-0.5577244460582733],[127,21,66,-0.5588730648159981],[127,21,67,-0.5586894489824772],[127,21,68,-0.5579561330378056],[127,21,69,-0.5574606731534004],[127,21,70,-0.5572692304849625],[127,21,71,-0.5575528629124165],[127,21,72,-0.5592196434736252],[127,21,73,-0.5617599152028561],[127,21,74,-0.5636810474097729],[127,21,75,-0.5638935938477516],[127,21,76,-0.5618910305202007],[127,21,77,-0.5576980598270893],[127,21,78,-0.5523377247154713],[127,21,79,-0.5468230731785297],[127,22,64,-0.555078387260437],[127,22,65,-0.5577244460582733],[127,22,66,-0.5588730648159981],[127,22,67,-0.5586894489824772],[127,22,68,-0.5579561330378056],[127,22,69,-0.5574606731534004],[127,22,70,-0.5572692304849625],[127,22,71,-0.5575528629124165],[127,22,72,-0.5592196434736252],[127,22,73,-0.5617599152028561],[127,22,74,-0.5636810474097729],[127,22,75,-0.5638935938477516],[127,22,76,-0.5618910305202007],[127,22,77,-0.5576980598270893],[127,22,78,-0.5523377247154713],[127,22,79,-0.5468230731785297],[127,23,64,-0.555078387260437],[127,23,65,-0.5577244460582733],[127,23,66,-0.5588730648159981],[127,23,67,-0.5586894489824772],[127,23,68,-0.5579561330378056],[127,23,69,-0.5574606731534004],[127,23,70,-0.5572692304849625],[127,23,71,-0.5575528629124165],[127,23,72,-0.5592196434736252],[127,23,73,-0.5617599152028561],[127,23,74,-0.5636810474097729],[127,23,75,-0.5638935938477516],[127,23,76,-0.5618910305202007],[127,23,77,-0.5576980598270893],[127,23,78,-0.5523377247154713],[127,23,79,-0.5468230731785297],[127,24,64,-0.555078387260437],[127,24,65,-0.5577244460582733],[127,24,66,-0.5588730648159981],[127,24,67,-0.5586894489824772],[127,24,68,-0.5579561330378056],[127,24,69,-0.5574606731534004],[127,24,70,-0.5572692304849625],[127,24,71,-0.5575528629124165],[127,24,72,-0.5592196434736252],[127,24,73,-0.5617599152028561],[127,24,74,-0.5636810474097729],[127,24,75,-0.5638935938477516],[127,24,76,-0.5618910305202007],[127,24,77,-0.5576980598270893],[127,24,78,-0.5523377247154713],[127,24,79,-0.5468230731785297],[127,25,64,-0.555078387260437],[127,25,65,-0.5577244460582733],[127,25,66,-0.5588730648159981],[127,25,67,-0.5586894489824772],[127,25,68,-0.5579561330378056],[127,25,69,-0.5574606731534004],[127,25,70,-0.5572692304849625],[127,25,71,-0.5575528629124165],[127,25,72,-0.5592196434736252],[127,25,73,-0.5617599152028561],[127,25,74,-0.5636810474097729],[127,25,75,-0.5638935938477516],[127,25,76,-0.5618910305202007],[127,25,77,-0.5576980598270893],[127,25,78,-0.5523377247154713],[127,25,79,-0.5468230731785297],[127,26,64,-0.555078387260437],[127,26,65,-0.5577244460582733],[127,26,66,-0.5588730648159981],[127,26,67,-0.5586894489824772],[127,26,68,-0.5579561330378056],[127,26,69,-0.5574606731534004],[127,26,70,-0.5572692304849625],[127,26,71,-0.5575528629124165],[127,26,72,-0.5592196434736252],[127,26,73,-0.5617599152028561],[127,26,74,-0.5636810474097729],[127,26,75,-0.5638935938477516],[127,26,76,-0.5618910305202007],[127,26,77,-0.5576980598270893],[127,26,78,-0.5523377247154713],[127,26,79,-0.5468230731785297],[127,27,64,-0.555078387260437],[127,27,65,-0.5577244460582733],[127,27,66,-0.5588730648159981],[127,27,67,-0.5586894489824772],[127,27,68,-0.5579561330378056],[127,27,69,-0.5574606731534004],[127,27,70,-0.5572692304849625],[127,27,71,-0.5575528629124165],[127,27,72,-0.5592196434736252],[127,27,73,-0.5617599152028561],[127,27,74,-0.5636810474097729],[127,27,75,-0.5638935938477516],[127,27,76,-0.5618910305202007],[127,27,77,-0.5576980598270893],[127,27,78,-0.5523377247154713],[127,27,79,-0.5468230731785297],[127,28,64,-0.555078387260437],[127,28,65,-0.5577244460582733],[127,28,66,-0.5588730648159981],[127,28,67,-0.5586894489824772],[127,28,68,-0.5579561330378056],[127,28,69,-0.5574606731534004],[127,28,70,-0.5572692304849625],[127,28,71,-0.5575528629124165],[127,28,72,-0.5592196434736252],[127,28,73,-0.5617599152028561],[127,28,74,-0.5636810474097729],[127,28,75,-0.5638935938477516],[127,28,76,-0.5618910305202007],[127,28,77,-0.5576980598270893],[127,28,78,-0.5523377247154713],[127,28,79,-0.5468230731785297],[127,29,64,-0.555078387260437],[127,29,65,-0.5577244460582733],[127,29,66,-0.5588730648159981],[127,29,67,-0.5586894489824772],[127,29,68,-0.5579561330378056],[127,29,69,-0.5574606731534004],[127,29,70,-0.5572692304849625],[127,29,71,-0.5575528629124165],[127,29,72,-0.5592196434736252],[127,29,73,-0.5617599152028561],[127,29,74,-0.5636810474097729],[127,29,75,-0.5638935938477516],[127,29,76,-0.5618910305202007],[127,29,77,-0.5576980598270893],[127,29,78,-0.5523377247154713],[127,29,79,-0.5468230731785297],[127,30,64,-0.555078387260437],[127,30,65,-0.5577244460582733],[127,30,66,-0.5588730648159981],[127,30,67,-0.5586894489824772],[127,30,68,-0.5579561330378056],[127,30,69,-0.5574606731534004],[127,30,70,-0.5572692304849625],[127,30,71,-0.5575528629124165],[127,30,72,-0.5592196434736252],[127,30,73,-0.5617599152028561],[127,30,74,-0.5636810474097729],[127,30,75,-0.5638935938477516],[127,30,76,-0.5618910305202007],[127,30,77,-0.5576980598270893],[127,30,78,-0.5523377247154713],[127,30,79,-0.5468230731785297],[127,31,64,-0.555078387260437],[127,31,65,-0.5577244460582733],[127,31,66,-0.5588730648159981],[127,31,67,-0.5586894489824772],[127,31,68,-0.5579561330378056],[127,31,69,-0.5574606731534004],[127,31,70,-0.5572692304849625],[127,31,71,-0.5575528629124165],[127,31,72,-0.5592196434736252],[127,31,73,-0.5617599152028561],[127,31,74,-0.5636810474097729],[127,31,75,-0.5638935938477516],[127,31,76,-0.5618910305202007],[127,31,77,-0.5576980598270893],[127,31,78,-0.5523377247154713],[127,31,79,-0.5468230731785297],[127,32,64,-0.555078387260437],[127,32,65,-0.5577244460582733],[127,32,66,-0.5588730648159981],[127,32,67,-0.5586894489824772],[127,32,68,-0.5579561330378056],[127,32,69,-0.5574606731534004],[127,32,70,-0.5572692304849625],[127,32,71,-0.5575528629124165],[127,32,72,-0.5592196434736252],[127,32,73,-0.5617599152028561],[127,32,74,-0.5636810474097729],[127,32,75,-0.5638935938477516],[127,32,76,-0.5618910305202007],[127,32,77,-0.5576980598270893],[127,32,78,-0.5523377247154713],[127,32,79,-0.5468230731785297],[127,33,64,-0.555078387260437],[127,33,65,-0.5577244460582733],[127,33,66,-0.5588730648159981],[127,33,67,-0.5586894489824772],[127,33,68,-0.5579561330378056],[127,33,69,-0.5574606731534004],[127,33,70,-0.5572692304849625],[127,33,71,-0.5575528629124165],[127,33,72,-0.5592196434736252],[127,33,73,-0.5617599152028561],[127,33,74,-0.5636810474097729],[127,33,75,-0.5638935938477516],[127,33,76,-0.5618910305202007],[127,33,77,-0.5576980598270893],[127,33,78,-0.5523377247154713],[127,33,79,-0.5468230731785297],[127,34,64,-0.555078387260437],[127,34,65,-0.5577244460582733],[127,34,66,-0.5588730648159981],[127,34,67,-0.5586894489824772],[127,34,68,-0.5579561330378056],[127,34,69,-0.5574606731534004],[127,34,70,-0.5572692304849625],[127,34,71,-0.5575528629124165],[127,34,72,-0.5592196434736252],[127,34,73,-0.5617599152028561],[127,34,74,-0.5636810474097729],[127,34,75,-0.5638935938477516],[127,34,76,-0.5618910305202007],[127,34,77,-0.5576980598270893],[127,34,78,-0.5523377247154713],[127,34,79,-0.5468230731785297],[127,35,64,-0.555078387260437],[127,35,65,-0.5577244460582733],[127,35,66,-0.5588730648159981],[127,35,67,-0.5586894489824772],[127,35,68,-0.5579561330378056],[127,35,69,-0.5574606731534004],[127,35,70,-0.5572692304849625],[127,35,71,-0.5575528629124165],[127,35,72,-0.5592196434736252],[127,35,73,-0.5617599152028561],[127,35,74,-0.5636810474097729],[127,35,75,-0.5638935938477516],[127,35,76,-0.5618910305202007],[127,35,77,-0.5576980598270893],[127,35,78,-0.5523377247154713],[127,35,79,-0.5468230731785297],[127,36,64,-0.555078387260437],[127,36,65,-0.5577244460582733],[127,36,66,-0.5588730648159981],[127,36,67,-0.5586894489824772],[127,36,68,-0.5579561330378056],[127,36,69,-0.5574606731534004],[127,36,70,-0.5572692304849625],[127,36,71,-0.5575528629124165],[127,36,72,-0.5592196434736252],[127,36,73,-0.5617599152028561],[127,36,74,-0.5636810474097729],[127,36,75,-0.5638935938477516],[127,36,76,-0.5618910305202007],[127,36,77,-0.5576980598270893],[127,36,78,-0.5523377247154713],[127,36,79,-0.5468230731785297],[127,37,64,-0.555078387260437],[127,37,65,-0.5577244460582733],[127,37,66,-0.5588730648159981],[127,37,67,-0.5586894489824772],[127,37,68,-0.5579561330378056],[127,37,69,-0.5574606731534004],[127,37,70,-0.5572692304849625],[127,37,71,-0.5575528629124165],[127,37,72,-0.5592196434736252],[127,37,73,-0.5617599152028561],[127,37,74,-0.5636810474097729],[127,37,75,-0.5638935938477516],[127,37,76,-0.5618910305202007],[127,37,77,-0.5576980598270893],[127,37,78,-0.5523377247154713],[127,37,79,-0.5468230731785297],[127,38,64,-0.555078387260437],[127,38,65,-0.5577244460582733],[127,38,66,-0.5588730648159981],[127,38,67,-0.5586894489824772],[127,38,68,-0.5579561330378056],[127,38,69,-0.5574606731534004],[127,38,70,-0.5572692304849625],[127,38,71,-0.5575528629124165],[127,38,72,-0.5592196434736252],[127,38,73,-0.5617599152028561],[127,38,74,-0.5636810474097729],[127,38,75,-0.5638935938477516],[127,38,76,-0.5618910305202007],[127,38,77,-0.5576980598270893],[127,38,78,-0.5523377247154713],[127,38,79,-0.5468230731785297],[127,39,64,-0.555078387260437],[127,39,65,-0.5577244460582733],[127,39,66,-0.5588730648159981],[127,39,67,-0.5586894489824772],[127,39,68,-0.5579561330378056],[127,39,69,-0.5574606731534004],[127,39,70,-0.5572692304849625],[127,39,71,-0.5575528629124165],[127,39,72,-0.5592196434736252],[127,39,73,-0.5617599152028561],[127,39,74,-0.5636810474097729],[127,39,75,-0.5638935938477516],[127,39,76,-0.5618910305202007],[127,39,77,-0.5576980598270893],[127,39,78,-0.5523377247154713],[127,39,79,-0.5468230731785297],[127,40,64,-0.555078387260437],[127,40,65,-0.5577244460582733],[127,40,66,-0.5588730648159981],[127,40,67,-0.5586894489824772],[127,40,68,-0.5579561330378056],[127,40,69,-0.5574606731534004],[127,40,70,-0.5572692304849625],[127,40,71,-0.5575528629124165],[127,40,72,-0.5592196434736252],[127,40,73,-0.5617599152028561],[127,40,74,-0.5636810474097729],[127,40,75,-0.5638935938477516],[127,40,76,-0.5618910305202007],[127,40,77,-0.5576980598270893],[127,40,78,-0.5523377247154713],[127,40,79,-0.5468230731785297],[127,41,64,-0.555078387260437],[127,41,65,-0.5577244460582733],[127,41,66,-0.5588730648159981],[127,41,67,-0.5586894489824772],[127,41,68,-0.5579561330378056],[127,41,69,-0.5574606731534004],[127,41,70,-0.5572692304849625],[127,41,71,-0.5575528629124165],[127,41,72,-0.5592196434736252],[127,41,73,-0.5617599152028561],[127,41,74,-0.5636810474097729],[127,41,75,-0.5638935938477516],[127,41,76,-0.5618910305202007],[127,41,77,-0.5576980598270893],[127,41,78,-0.5523377247154713],[127,41,79,-0.5468230731785297],[127,42,64,-0.555078387260437],[127,42,65,-0.5577244460582733],[127,42,66,-0.5588730648159981],[127,42,67,-0.5586894489824772],[127,42,68,-0.5579561330378056],[127,42,69,-0.5574606731534004],[127,42,70,-0.5572692304849625],[127,42,71,-0.5575528629124165],[127,42,72,-0.5592196434736252],[127,42,73,-0.5617599152028561],[127,42,74,-0.5636810474097729],[127,42,75,-0.5638935938477516],[127,42,76,-0.5618910305202007],[127,42,77,-0.5576980598270893],[127,42,78,-0.5523377247154713],[127,42,79,-0.5468230731785297],[127,43,64,-0.555078387260437],[127,43,65,-0.5577244460582733],[127,43,66,-0.5588730648159981],[127,43,67,-0.5586894489824772],[127,43,68,-0.5579561330378056],[127,43,69,-0.5574606731534004],[127,43,70,-0.5572692304849625],[127,43,71,-0.5575528629124165],[127,43,72,-0.5592196434736252],[127,43,73,-0.5617599152028561],[127,43,74,-0.5636810474097729],[127,43,75,-0.5638935938477516],[127,43,76,-0.5618910305202007],[127,43,77,-0.5576980598270893],[127,43,78,-0.5523377247154713],[127,43,79,-0.5468230731785297],[127,44,64,-0.555078387260437],[127,44,65,-0.5577244460582733],[127,44,66,-0.5588730648159981],[127,44,67,-0.5586894489824772],[127,44,68,-0.5579561330378056],[127,44,69,-0.5574606731534004],[127,44,70,-0.5572692304849625],[127,44,71,-0.5575528629124165],[127,44,72,-0.5592196434736252],[127,44,73,-0.5617599152028561],[127,44,74,-0.5636810474097729],[127,44,75,-0.5638935938477516],[127,44,76,-0.5618910305202007],[127,44,77,-0.5576980598270893],[127,44,78,-0.5523377247154713],[127,44,79,-0.5468230731785297],[127,45,64,-0.555078387260437],[127,45,65,-0.5577244460582733],[127,45,66,-0.5588730648159981],[127,45,67,-0.5586894489824772],[127,45,68,-0.5579561330378056],[127,45,69,-0.5574606731534004],[127,45,70,-0.5572692304849625],[127,45,71,-0.5575528629124165],[127,45,72,-0.5592196434736252],[127,45,73,-0.5617599152028561],[127,45,74,-0.5636810474097729],[127,45,75,-0.5638935938477516],[127,45,76,-0.5618910305202007],[127,45,77,-0.5576980598270893],[127,45,78,-0.5523377247154713],[127,45,79,-0.5468230731785297],[127,46,64,-0.555078387260437],[127,46,65,-0.5577244460582733],[127,46,66,-0.5588730648159981],[127,46,67,-0.5586894489824772],[127,46,68,-0.5579561330378056],[127,46,69,-0.5574606731534004],[127,46,70,-0.5572692304849625],[127,46,71,-0.5575528629124165],[127,46,72,-0.5592196434736252],[127,46,73,-0.5617599152028561],[127,46,74,-0.5636810474097729],[127,46,75,-0.5638935938477516],[127,46,76,-0.5618910305202007],[127,46,77,-0.5576980598270893],[127,46,78,-0.5523377247154713],[127,46,79,-0.5468230731785297],[127,47,64,-0.555078387260437],[127,47,65,-0.5577244460582733],[127,47,66,-0.5588730648159981],[127,47,67,-0.5586894489824772],[127,47,68,-0.5579561330378056],[127,47,69,-0.5574606731534004],[127,47,70,-0.5572692304849625],[127,47,71,-0.5575528629124165],[127,47,72,-0.5592196434736252],[127,47,73,-0.5617599152028561],[127,47,74,-0.5636810474097729],[127,47,75,-0.5638935938477516],[127,47,76,-0.5618910305202007],[127,47,77,-0.5576980598270893],[127,47,78,-0.5523377247154713],[127,47,79,-0.5468230731785297],[127,48,64,-0.555078387260437],[127,48,65,-0.5577244460582733],[127,48,66,-0.5588730648159981],[127,48,67,-0.5586894489824772],[127,48,68,-0.5579561330378056],[127,48,69,-0.5574606731534004],[127,48,70,-0.5572692304849625],[127,48,71,-0.5575528629124165],[127,48,72,-0.5592196434736252],[127,48,73,-0.5617599152028561],[127,48,74,-0.5636810474097729],[127,48,75,-0.5638935938477516],[127,48,76,-0.5618910305202007],[127,48,77,-0.5576980598270893],[127,48,78,-0.5523377247154713],[127,48,79,-0.5468230731785297],[127,49,64,-0.555078387260437],[127,49,65,-0.5577244460582733],[127,49,66,-0.5588730648159981],[127,49,67,-0.5586894489824772],[127,49,68,-0.5579561330378056],[127,49,69,-0.5574606731534004],[127,49,70,-0.5572692304849625],[127,49,71,-0.5575528629124165],[127,49,72,-0.5592196434736252],[127,49,73,-0.5617599152028561],[127,49,74,-0.5636810474097729],[127,49,75,-0.5638935938477516],[127,49,76,-0.5618910305202007],[127,49,77,-0.5576980598270893],[127,49,78,-0.5523377247154713],[127,49,79,-0.5468230731785297],[127,50,64,-0.555078387260437],[127,50,65,-0.5577244460582733],[127,50,66,-0.5588730648159981],[127,50,67,-0.5586894489824772],[127,50,68,-0.5579561330378056],[127,50,69,-0.5574606731534004],[127,50,70,-0.5572692304849625],[127,50,71,-0.5575528629124165],[127,50,72,-0.5592196434736252],[127,50,73,-0.5617599152028561],[127,50,74,-0.5636810474097729],[127,50,75,-0.5638935938477516],[127,50,76,-0.5618910305202007],[127,50,77,-0.5576980598270893],[127,50,78,-0.5523377247154713],[127,50,79,-0.5468230731785297],[127,51,64,-0.555078387260437],[127,51,65,-0.5577244460582733],[127,51,66,-0.5588730648159981],[127,51,67,-0.5586894489824772],[127,51,68,-0.5579561330378056],[127,51,69,-0.5574606731534004],[127,51,70,-0.5572692304849625],[127,51,71,-0.5575528629124165],[127,51,72,-0.5592196434736252],[127,51,73,-0.5617599152028561],[127,51,74,-0.5636810474097729],[127,51,75,-0.5638935938477516],[127,51,76,-0.5618910305202007],[127,51,77,-0.5576980598270893],[127,51,78,-0.5523377247154713],[127,51,79,-0.5468230731785297],[127,52,64,-0.555078387260437],[127,52,65,-0.5577244460582733],[127,52,66,-0.5588730648159981],[127,52,67,-0.5586894489824772],[127,52,68,-0.5579561330378056],[127,52,69,-0.5574606731534004],[127,52,70,-0.5572692304849625],[127,52,71,-0.5575528629124165],[127,52,72,-0.5592196434736252],[127,52,73,-0.5617599152028561],[127,52,74,-0.5636810474097729],[127,52,75,-0.5638935938477516],[127,52,76,-0.5618910305202007],[127,52,77,-0.5576980598270893],[127,52,78,-0.5523377247154713],[127,52,79,-0.5468230731785297],[127,53,64,-0.555078387260437],[127,53,65,-0.5577244460582733],[127,53,66,-0.5588730648159981],[127,53,67,-0.5586894489824772],[127,53,68,-0.5579561330378056],[127,53,69,-0.5574606731534004],[127,53,70,-0.5572692304849625],[127,53,71,-0.5575528629124165],[127,53,72,-0.5592196434736252],[127,53,73,-0.5617599152028561],[127,53,74,-0.5636810474097729],[127,53,75,-0.5638935938477516],[127,53,76,-0.5618910305202007],[127,53,77,-0.5576980598270893],[127,53,78,-0.5523377247154713],[127,53,79,-0.5468230731785297],[127,54,64,-0.555078387260437],[127,54,65,-0.5577244460582733],[127,54,66,-0.5588730648159981],[127,54,67,-0.5586894489824772],[127,54,68,-0.5579561330378056],[127,54,69,-0.5574606731534004],[127,54,70,-0.5572692304849625],[127,54,71,-0.5575528629124165],[127,54,72,-0.5592196434736252],[127,54,73,-0.5617599152028561],[127,54,74,-0.5636810474097729],[127,54,75,-0.5638935938477516],[127,54,76,-0.5618910305202007],[127,54,77,-0.5576980598270893],[127,54,78,-0.5523377247154713],[127,54,79,-0.5468230731785297],[127,55,64,-0.555078387260437],[127,55,65,-0.5577244460582733],[127,55,66,-0.5588730648159981],[127,55,67,-0.5586894489824772],[127,55,68,-0.5579561330378056],[127,55,69,-0.5574606731534004],[127,55,70,-0.5572692304849625],[127,55,71,-0.5575528629124165],[127,55,72,-0.5592196434736252],[127,55,73,-0.5617599152028561],[127,55,74,-0.5636810474097729],[127,55,75,-0.5638935938477516],[127,55,76,-0.5618910305202007],[127,55,77,-0.5576980598270893],[127,55,78,-0.5523377247154713],[127,55,79,-0.5468230731785297],[127,56,64,-0.555078387260437],[127,56,65,-0.5577244460582733],[127,56,66,-0.5588730648159981],[127,56,67,-0.5586894489824772],[127,56,68,-0.5579561330378056],[127,56,69,-0.5574606731534004],[127,56,70,-0.5572692304849625],[127,56,71,-0.5575528629124165],[127,56,72,-0.5592196434736252],[127,56,73,-0.5617599152028561],[127,56,74,-0.5636810474097729],[127,56,75,-0.5638935938477516],[127,56,76,-0.5618910305202007],[127,56,77,-0.5576980598270893],[127,56,78,-0.5523377247154713],[127,56,79,-0.5468230731785297],[127,57,64,-0.555078387260437],[127,57,65,-0.5577244460582733],[127,57,66,-0.5588730648159981],[127,57,67,-0.5586894489824772],[127,57,68,-0.5579561330378056],[127,57,69,-0.5574606731534004],[127,57,70,-0.5572692304849625],[127,57,71,-0.5575528629124165],[127,57,72,-0.5592196434736252],[127,57,73,-0.5617599152028561],[127,57,74,-0.5636810474097729],[127,57,75,-0.5638935938477516],[127,57,76,-0.5618910305202007],[127,57,77,-0.5576980598270893],[127,57,78,-0.5523377247154713],[127,57,79,-0.5468230731785297],[127,58,64,-0.555078387260437],[127,58,65,-0.5577244460582733],[127,58,66,-0.5588730648159981],[127,58,67,-0.5586894489824772],[127,58,68,-0.5579561330378056],[127,58,69,-0.5574606731534004],[127,58,70,-0.5572692304849625],[127,58,71,-0.5575528629124165],[127,58,72,-0.5592196434736252],[127,58,73,-0.5617599152028561],[127,58,74,-0.5636810474097729],[127,58,75,-0.5638935938477516],[127,58,76,-0.5618910305202007],[127,58,77,-0.5576980598270893],[127,58,78,-0.5523377247154713],[127,58,79,-0.5468230731785297],[127,59,64,-0.555078387260437],[127,59,65,-0.5577244460582733],[127,59,66,-0.5588730648159981],[127,59,67,-0.5586894489824772],[127,59,68,-0.5579561330378056],[127,59,69,-0.5574606731534004],[127,59,70,-0.5572692304849625],[127,59,71,-0.5575528629124165],[127,59,72,-0.5592196434736252],[127,59,73,-0.5617599152028561],[127,59,74,-0.5636810474097729],[127,59,75,-0.5638935938477516],[127,59,76,-0.5618910305202007],[127,59,77,-0.5576980598270893],[127,59,78,-0.5523377247154713],[127,59,79,-0.5468230731785297],[127,60,64,-0.555078387260437],[127,60,65,-0.5577244460582733],[127,60,66,-0.5588730648159981],[127,60,67,-0.5586894489824772],[127,60,68,-0.5579561330378056],[127,60,69,-0.5574606731534004],[127,60,70,-0.5572692304849625],[127,60,71,-0.5575528629124165],[127,60,72,-0.5592196434736252],[127,60,73,-0.5617599152028561],[127,60,74,-0.5636810474097729],[127,60,75,-0.5638935938477516],[127,60,76,-0.5618910305202007],[127,60,77,-0.5576980598270893],[127,60,78,-0.5523377247154713],[127,60,79,-0.5468230731785297],[127,61,64,-0.555078387260437],[127,61,65,-0.5577244460582733],[127,61,66,-0.5588730648159981],[127,61,67,-0.5586894489824772],[127,61,68,-0.5579561330378056],[127,61,69,-0.5574606731534004],[127,61,70,-0.5572692304849625],[127,61,71,-0.5575528629124165],[127,61,72,-0.5592196434736252],[127,61,73,-0.5617599152028561],[127,61,74,-0.5636810474097729],[127,61,75,-0.5638935938477516],[127,61,76,-0.5618910305202007],[127,61,77,-0.5576980598270893],[127,61,78,-0.5523377247154713],[127,61,79,-0.5468230731785297],[127,62,64,-0.555078387260437],[127,62,65,-0.5577244460582733],[127,62,66,-0.5588730648159981],[127,62,67,-0.5586894489824772],[127,62,68,-0.5579561330378056],[127,62,69,-0.5574606731534004],[127,62,70,-0.5572692304849625],[127,62,71,-0.5575528629124165],[127,62,72,-0.5592196434736252],[127,62,73,-0.5617599152028561],[127,62,74,-0.5636810474097729],[127,62,75,-0.5638935938477516],[127,62,76,-0.5618910305202007],[127,62,77,-0.5576980598270893],[127,62,78,-0.5523377247154713],[127,62,79,-0.5468230731785297],[127,63,64,-0.555078387260437],[127,63,65,-0.5577244460582733],[127,63,66,-0.5588730648159981],[127,63,67,-0.5586894489824772],[127,63,68,-0.5579561330378056],[127,63,69,-0.5574606731534004],[127,63,70,-0.5572692304849625],[127,63,71,-0.5575528629124165],[127,63,72,-0.5592196434736252],[127,63,73,-0.5617599152028561],[127,63,74,-0.5636810474097729],[127,63,75,-0.5638935938477516],[127,63,76,-0.5618910305202007],[127,63,77,-0.5576980598270893],[127,63,78,-0.5523377247154713],[127,63,79,-0.5468230731785297],[127,64,64,-0.555078387260437],[127,64,65,-0.5577244460582733],[127,64,66,-0.5588730648159981],[127,64,67,-0.5586894489824772],[127,64,68,-0.5579561330378056],[127,64,69,-0.5574606731534004],[127,64,70,-0.5572692304849625],[127,64,71,-0.5575528629124165],[127,64,72,-0.5592196434736252],[127,64,73,-0.5617599152028561],[127,64,74,-0.5636810474097729],[127,64,75,-0.5638935938477516],[127,64,76,-0.5618910305202007],[127,64,77,-0.5576980598270893],[127,64,78,-0.5523377247154713],[127,64,79,-0.5468230731785297],[127,65,64,-0.555078387260437],[127,65,65,-0.5577244460582733],[127,65,66,-0.5588730648159981],[127,65,67,-0.5586894489824772],[127,65,68,-0.5579561330378056],[127,65,69,-0.5574606731534004],[127,65,70,-0.5572692304849625],[127,65,71,-0.5575528629124165],[127,65,72,-0.5592196434736252],[127,65,73,-0.5617599152028561],[127,65,74,-0.5636810474097729],[127,65,75,-0.5638935938477516],[127,65,76,-0.5618910305202007],[127,65,77,-0.5576980598270893],[127,65,78,-0.5523377247154713],[127,65,79,-0.5468230731785297],[127,66,64,-0.555078387260437],[127,66,65,-0.5577244460582733],[127,66,66,-0.5588730648159981],[127,66,67,-0.5586894489824772],[127,66,68,-0.5579561330378056],[127,66,69,-0.5574606731534004],[127,66,70,-0.5572692304849625],[127,66,71,-0.5575528629124165],[127,66,72,-0.5592196434736252],[127,66,73,-0.5617599152028561],[127,66,74,-0.5636810474097729],[127,66,75,-0.5638935938477516],[127,66,76,-0.5618910305202007],[127,66,77,-0.5576980598270893],[127,66,78,-0.5523377247154713],[127,66,79,-0.5468230731785297],[127,67,64,-0.555078387260437],[127,67,65,-0.5577244460582733],[127,67,66,-0.5588730648159981],[127,67,67,-0.5586894489824772],[127,67,68,-0.5579561330378056],[127,67,69,-0.5574606731534004],[127,67,70,-0.5572692304849625],[127,67,71,-0.5575528629124165],[127,67,72,-0.5592196434736252],[127,67,73,-0.5617599152028561],[127,67,74,-0.5636810474097729],[127,67,75,-0.5638935938477516],[127,67,76,-0.5618910305202007],[127,67,77,-0.5576980598270893],[127,67,78,-0.5523377247154713],[127,67,79,-0.5468230731785297],[127,68,64,-0.555078387260437],[127,68,65,-0.5577244460582733],[127,68,66,-0.5588730648159981],[127,68,67,-0.5586894489824772],[127,68,68,-0.5579561330378056],[127,68,69,-0.5574606731534004],[127,68,70,-0.5572692304849625],[127,68,71,-0.5575528629124165],[127,68,72,-0.5592196434736252],[127,68,73,-0.5617599152028561],[127,68,74,-0.5636810474097729],[127,68,75,-0.5638935938477516],[127,68,76,-0.5618910305202007],[127,68,77,-0.5576980598270893],[127,68,78,-0.5523377247154713],[127,68,79,-0.5468230731785297],[127,69,64,-0.555078387260437],[127,69,65,-0.5577244460582733],[127,69,66,-0.5588730648159981],[127,69,67,-0.5586894489824772],[127,69,68,-0.5579561330378056],[127,69,69,-0.5574606731534004],[127,69,70,-0.5572692304849625],[127,69,71,-0.5575528629124165],[127,69,72,-0.5592196434736252],[127,69,73,-0.5617599152028561],[127,69,74,-0.5636810474097729],[127,69,75,-0.5638935938477516],[127,69,76,-0.5618910305202007],[127,69,77,-0.5576980598270893],[127,69,78,-0.5523377247154713],[127,69,79,-0.5468230731785297],[127,70,64,-0.555078387260437],[127,70,65,-0.5577244460582733],[127,70,66,-0.5588730648159981],[127,70,67,-0.5586894489824772],[127,70,68,-0.5579561330378056],[127,70,69,-0.5574606731534004],[127,70,70,-0.5572692304849625],[127,70,71,-0.5575528629124165],[127,70,72,-0.5592196434736252],[127,70,73,-0.5617599152028561],[127,70,74,-0.5636810474097729],[127,70,75,-0.5638935938477516],[127,70,76,-0.5618910305202007],[127,70,77,-0.5576980598270893],[127,70,78,-0.5523377247154713],[127,70,79,-0.5468230731785297],[127,71,64,-0.555078387260437],[127,71,65,-0.5577244460582733],[127,71,66,-0.5588730648159981],[127,71,67,-0.5586894489824772],[127,71,68,-0.5579561330378056],[127,71,69,-0.5574606731534004],[127,71,70,-0.5572692304849625],[127,71,71,-0.5575528629124165],[127,71,72,-0.5592196434736252],[127,71,73,-0.5617599152028561],[127,71,74,-0.5636810474097729],[127,71,75,-0.5638935938477516],[127,71,76,-0.5618910305202007],[127,71,77,-0.5576980598270893],[127,71,78,-0.5523377247154713],[127,71,79,-0.5468230731785297],[127,72,64,-0.555078387260437],[127,72,65,-0.5577244460582733],[127,72,66,-0.5588730648159981],[127,72,67,-0.5586894489824772],[127,72,68,-0.5579561330378056],[127,72,69,-0.5574606731534004],[127,72,70,-0.5572692304849625],[127,72,71,-0.5575528629124165],[127,72,72,-0.5592196434736252],[127,72,73,-0.5617599152028561],[127,72,74,-0.5636810474097729],[127,72,75,-0.5638935938477516],[127,72,76,-0.5618910305202007],[127,72,77,-0.5576980598270893],[127,72,78,-0.5523377247154713],[127,72,79,-0.5468230731785297],[127,73,64,-0.555078387260437],[127,73,65,-0.5577244460582733],[127,73,66,-0.5588730648159981],[127,73,67,-0.5586894489824772],[127,73,68,-0.5579561330378056],[127,73,69,-0.5574606731534004],[127,73,70,-0.5572692304849625],[127,73,71,-0.5575528629124165],[127,73,72,-0.5592196434736252],[127,73,73,-0.5617599152028561],[127,73,74,-0.5636810474097729],[127,73,75,-0.5638935938477516],[127,73,76,-0.5618910305202007],[127,73,77,-0.5576980598270893],[127,73,78,-0.5523377247154713],[127,73,79,-0.5468230731785297],[127,74,64,-0.555078387260437],[127,74,65,-0.5577244460582733],[127,74,66,-0.5588730648159981],[127,74,67,-0.5586894489824772],[127,74,68,-0.5579561330378056],[127,74,69,-0.5574606731534004],[127,74,70,-0.5572692304849625],[127,74,71,-0.5575528629124165],[127,74,72,-0.5592196434736252],[127,74,73,-0.5617599152028561],[127,74,74,-0.5636810474097729],[127,74,75,-0.5638935938477516],[127,74,76,-0.5618910305202007],[127,74,77,-0.5576980598270893],[127,74,78,-0.5523377247154713],[127,74,79,-0.5468230731785297],[127,75,64,-0.555078387260437],[127,75,65,-0.5577244460582733],[127,75,66,-0.5588730648159981],[127,75,67,-0.5586894489824772],[127,75,68,-0.5579561330378056],[127,75,69,-0.5574606731534004],[127,75,70,-0.5572692304849625],[127,75,71,-0.5575528629124165],[127,75,72,-0.5592196434736252],[127,75,73,-0.5617599152028561],[127,75,74,-0.5636810474097729],[127,75,75,-0.5638935938477516],[127,75,76,-0.5618910305202007],[127,75,77,-0.5576980598270893],[127,75,78,-0.5523377247154713],[127,75,79,-0.5468230731785297],[127,76,64,-0.555078387260437],[127,76,65,-0.5577244460582733],[127,76,66,-0.5588730648159981],[127,76,67,-0.5586894489824772],[127,76,68,-0.5579561330378056],[127,76,69,-0.5574606731534004],[127,76,70,-0.5572692304849625],[127,76,71,-0.5575528629124165],[127,76,72,-0.5592196434736252],[127,76,73,-0.5617599152028561],[127,76,74,-0.5636810474097729],[127,76,75,-0.5638935938477516],[127,76,76,-0.5618910305202007],[127,76,77,-0.5576980598270893],[127,76,78,-0.5523377247154713],[127,76,79,-0.5468230731785297],[127,77,64,-0.555078387260437],[127,77,65,-0.5577244460582733],[127,77,66,-0.5588730648159981],[127,77,67,-0.5586894489824772],[127,77,68,-0.5579561330378056],[127,77,69,-0.5574606731534004],[127,77,70,-0.5572692304849625],[127,77,71,-0.5575528629124165],[127,77,72,-0.5592196434736252],[127,77,73,-0.5617599152028561],[127,77,74,-0.5636810474097729],[127,77,75,-0.5638935938477516],[127,77,76,-0.5618910305202007],[127,77,77,-0.5576980598270893],[127,77,78,-0.5523377247154713],[127,77,79,-0.5468230731785297],[127,78,64,-0.555078387260437],[127,78,65,-0.5577244460582733],[127,78,66,-0.5588730648159981],[127,78,67,-0.5586894489824772],[127,78,68,-0.5579561330378056],[127,78,69,-0.5574606731534004],[127,78,70,-0.5572692304849625],[127,78,71,-0.5575528629124165],[127,78,72,-0.5592196434736252],[127,78,73,-0.5617599152028561],[127,78,74,-0.5636810474097729],[127,78,75,-0.5638935938477516],[127,78,76,-0.5618910305202007],[127,78,77,-0.5576980598270893],[127,78,78,-0.5523377247154713],[127,78,79,-0.5468230731785297],[127,79,64,-0.555078387260437],[127,79,65,-0.5577244460582733],[127,79,66,-0.5588730648159981],[127,79,67,-0.5586894489824772],[127,79,68,-0.5579561330378056],[127,79,69,-0.5574606731534004],[127,79,70,-0.5572692304849625],[127,79,71,-0.5575528629124165],[127,79,72,-0.5592196434736252],[127,79,73,-0.5617599152028561],[127,79,74,-0.5636810474097729],[127,79,75,-0.5638935938477516],[127,79,76,-0.5618910305202007],[127,79,77,-0.5576980598270893],[127,79,78,-0.5523377247154713],[127,79,79,-0.5468230731785297],[127,80,64,-0.555078387260437],[127,80,65,-0.5577244460582733],[127,80,66,-0.5588730648159981],[127,80,67,-0.5586894489824772],[127,80,68,-0.5579561330378056],[127,80,69,-0.5574606731534004],[127,80,70,-0.5572692304849625],[127,80,71,-0.5575528629124165],[127,80,72,-0.5592196434736252],[127,80,73,-0.5617599152028561],[127,80,74,-0.5636810474097729],[127,80,75,-0.5638935938477516],[127,80,76,-0.5618910305202007],[127,80,77,-0.5576980598270893],[127,80,78,-0.5523377247154713],[127,80,79,-0.5468230731785297],[127,81,64,-0.555078387260437],[127,81,65,-0.5577244460582733],[127,81,66,-0.5588730648159981],[127,81,67,-0.5586894489824772],[127,81,68,-0.5579561330378056],[127,81,69,-0.5574606731534004],[127,81,70,-0.5572692304849625],[127,81,71,-0.5575528629124165],[127,81,72,-0.5592196434736252],[127,81,73,-0.5617599152028561],[127,81,74,-0.5636810474097729],[127,81,75,-0.5638935938477516],[127,81,76,-0.5618910305202007],[127,81,77,-0.5576980598270893],[127,81,78,-0.5523377247154713],[127,81,79,-0.5468230731785297],[127,82,64,-0.555078387260437],[127,82,65,-0.5577244460582733],[127,82,66,-0.5588730648159981],[127,82,67,-0.5586894489824772],[127,82,68,-0.5579561330378056],[127,82,69,-0.5574606731534004],[127,82,70,-0.5572692304849625],[127,82,71,-0.5575528629124165],[127,82,72,-0.5592196434736252],[127,82,73,-0.5617599152028561],[127,82,74,-0.5636810474097729],[127,82,75,-0.5638935938477516],[127,82,76,-0.5618910305202007],[127,82,77,-0.5576980598270893],[127,82,78,-0.5523377247154713],[127,82,79,-0.5468230731785297],[127,83,64,-0.555078387260437],[127,83,65,-0.5577244460582733],[127,83,66,-0.5588730648159981],[127,83,67,-0.5586894489824772],[127,83,68,-0.5579561330378056],[127,83,69,-0.5574606731534004],[127,83,70,-0.5572692304849625],[127,83,71,-0.5575528629124165],[127,83,72,-0.5592196434736252],[127,83,73,-0.5617599152028561],[127,83,74,-0.5636810474097729],[127,83,75,-0.5638935938477516],[127,83,76,-0.5618910305202007],[127,83,77,-0.5576980598270893],[127,83,78,-0.5523377247154713],[127,83,79,-0.5468230731785297],[127,84,64,-0.555078387260437],[127,84,65,-0.5577244460582733],[127,84,66,-0.5588730648159981],[127,84,67,-0.5586894489824772],[127,84,68,-0.5579561330378056],[127,84,69,-0.5574606731534004],[127,84,70,-0.5572692304849625],[127,84,71,-0.5575528629124165],[127,84,72,-0.5592196434736252],[127,84,73,-0.5617599152028561],[127,84,74,-0.5636810474097729],[127,84,75,-0.5638935938477516],[127,84,76,-0.5618910305202007],[127,84,77,-0.5576980598270893],[127,84,78,-0.5523377247154713],[127,84,79,-0.5468230731785297],[127,85,64,-0.555078387260437],[127,85,65,-0.5577244460582733],[127,85,66,-0.5588730648159981],[127,85,67,-0.5586894489824772],[127,85,68,-0.5579561330378056],[127,85,69,-0.5574606731534004],[127,85,70,-0.5572692304849625],[127,85,71,-0.5575528629124165],[127,85,72,-0.5592196434736252],[127,85,73,-0.5617599152028561],[127,85,74,-0.5636810474097729],[127,85,75,-0.5638935938477516],[127,85,76,-0.5618910305202007],[127,85,77,-0.5576980598270893],[127,85,78,-0.5523377247154713],[127,85,79,-0.5468230731785297],[127,86,64,-0.555078387260437],[127,86,65,-0.5577244460582733],[127,86,66,-0.5588730648159981],[127,86,67,-0.5586894489824772],[127,86,68,-0.5579561330378056],[127,86,69,-0.5574606731534004],[127,86,70,-0.5572692304849625],[127,86,71,-0.5575528629124165],[127,86,72,-0.5592196434736252],[127,86,73,-0.5617599152028561],[127,86,74,-0.5636810474097729],[127,86,75,-0.5638935938477516],[127,86,76,-0.5618910305202007],[127,86,77,-0.5576980598270893],[127,86,78,-0.5523377247154713],[127,86,79,-0.5468230731785297],[127,87,64,-0.555078387260437],[127,87,65,-0.5577244460582733],[127,87,66,-0.5588730648159981],[127,87,67,-0.5586894489824772],[127,87,68,-0.5579561330378056],[127,87,69,-0.5574606731534004],[127,87,70,-0.5572692304849625],[127,87,71,-0.5575528629124165],[127,87,72,-0.5592196434736252],[127,87,73,-0.5617599152028561],[127,87,74,-0.5636810474097729],[127,87,75,-0.5638935938477516],[127,87,76,-0.5618910305202007],[127,87,77,-0.5576980598270893],[127,87,78,-0.5523377247154713],[127,87,79,-0.5468230731785297],[127,88,64,-0.555078387260437],[127,88,65,-0.5577244460582733],[127,88,66,-0.5588730648159981],[127,88,67,-0.5586894489824772],[127,88,68,-0.5579561330378056],[127,88,69,-0.5574606731534004],[127,88,70,-0.5572692304849625],[127,88,71,-0.5575528629124165],[127,88,72,-0.5592196434736252],[127,88,73,-0.5617599152028561],[127,88,74,-0.5636810474097729],[127,88,75,-0.5638935938477516],[127,88,76,-0.5618910305202007],[127,88,77,-0.5576980598270893],[127,88,78,-0.5523377247154713],[127,88,79,-0.5468230731785297],[127,89,64,-0.555078387260437],[127,89,65,-0.5577244460582733],[127,89,66,-0.5588730648159981],[127,89,67,-0.5586894489824772],[127,89,68,-0.5579561330378056],[127,89,69,-0.5574606731534004],[127,89,70,-0.5572692304849625],[127,89,71,-0.5575528629124165],[127,89,72,-0.5592196434736252],[127,89,73,-0.5617599152028561],[127,89,74,-0.5636810474097729],[127,89,75,-0.5638935938477516],[127,89,76,-0.5618910305202007],[127,89,77,-0.5576980598270893],[127,89,78,-0.5523377247154713],[127,89,79,-0.5468230731785297],[127,90,64,-0.555078387260437],[127,90,65,-0.5577244460582733],[127,90,66,-0.5588730648159981],[127,90,67,-0.5586894489824772],[127,90,68,-0.5579561330378056],[127,90,69,-0.5574606731534004],[127,90,70,-0.5572692304849625],[127,90,71,-0.5575528629124165],[127,90,72,-0.5592196434736252],[127,90,73,-0.5617599152028561],[127,90,74,-0.5636810474097729],[127,90,75,-0.5638935938477516],[127,90,76,-0.5618910305202007],[127,90,77,-0.5576980598270893],[127,90,78,-0.5523377247154713],[127,90,79,-0.5468230731785297],[127,91,64,-0.555078387260437],[127,91,65,-0.5577244460582733],[127,91,66,-0.5588730648159981],[127,91,67,-0.5586894489824772],[127,91,68,-0.5579561330378056],[127,91,69,-0.5574606731534004],[127,91,70,-0.5572692304849625],[127,91,71,-0.5575528629124165],[127,91,72,-0.5592196434736252],[127,91,73,-0.5617599152028561],[127,91,74,-0.5636810474097729],[127,91,75,-0.5638935938477516],[127,91,76,-0.5618910305202007],[127,91,77,-0.5576980598270893],[127,91,78,-0.5523377247154713],[127,91,79,-0.5468230731785297],[127,92,64,-0.555078387260437],[127,92,65,-0.5577244460582733],[127,92,66,-0.5588730648159981],[127,92,67,-0.5586894489824772],[127,92,68,-0.5579561330378056],[127,92,69,-0.5574606731534004],[127,92,70,-0.5572692304849625],[127,92,71,-0.5575528629124165],[127,92,72,-0.5592196434736252],[127,92,73,-0.5617599152028561],[127,92,74,-0.5636810474097729],[127,92,75,-0.5638935938477516],[127,92,76,-0.5618910305202007],[127,92,77,-0.5576980598270893],[127,92,78,-0.5523377247154713],[127,92,79,-0.5468230731785297],[127,93,64,-0.555078387260437],[127,93,65,-0.5577244460582733],[127,93,66,-0.5588730648159981],[127,93,67,-0.5586894489824772],[127,93,68,-0.5579561330378056],[127,93,69,-0.5574606731534004],[127,93,70,-0.5572692304849625],[127,93,71,-0.5575528629124165],[127,93,72,-0.5592196434736252],[127,93,73,-0.5617599152028561],[127,93,74,-0.5636810474097729],[127,93,75,-0.5638935938477516],[127,93,76,-0.5618910305202007],[127,93,77,-0.5576980598270893],[127,93,78,-0.5523377247154713],[127,93,79,-0.5468230731785297],[127,94,64,-0.555078387260437],[127,94,65,-0.5577244460582733],[127,94,66,-0.5588730648159981],[127,94,67,-0.5586894489824772],[127,94,68,-0.5579561330378056],[127,94,69,-0.5574606731534004],[127,94,70,-0.5572692304849625],[127,94,71,-0.5575528629124165],[127,94,72,-0.5592196434736252],[127,94,73,-0.5617599152028561],[127,94,74,-0.5636810474097729],[127,94,75,-0.5638935938477516],[127,94,76,-0.5618910305202007],[127,94,77,-0.5576980598270893],[127,94,78,-0.5523377247154713],[127,94,79,-0.5468230731785297],[127,95,64,-0.555078387260437],[127,95,65,-0.5577244460582733],[127,95,66,-0.5588730648159981],[127,95,67,-0.5586894489824772],[127,95,68,-0.5579561330378056],[127,95,69,-0.5574606731534004],[127,95,70,-0.5572692304849625],[127,95,71,-0.5575528629124165],[127,95,72,-0.5592196434736252],[127,95,73,-0.5617599152028561],[127,95,74,-0.5636810474097729],[127,95,75,-0.5638935938477516],[127,95,76,-0.5618910305202007],[127,95,77,-0.5576980598270893],[127,95,78,-0.5523377247154713],[127,95,79,-0.5468230731785297],[127,96,64,-0.555078387260437],[127,96,65,-0.5577244460582733],[127,96,66,-0.5588730648159981],[127,96,67,-0.5586894489824772],[127,96,68,-0.5579561330378056],[127,96,69,-0.5574606731534004],[127,96,70,-0.5572692304849625],[127,96,71,-0.5575528629124165],[127,96,72,-0.5592196434736252],[127,96,73,-0.5617599152028561],[127,96,74,-0.5636810474097729],[127,96,75,-0.5638935938477516],[127,96,76,-0.5618910305202007],[127,96,77,-0.5576980598270893],[127,96,78,-0.5523377247154713],[127,96,79,-0.5468230731785297],[127,97,64,-0.555078387260437],[127,97,65,-0.5577244460582733],[127,97,66,-0.5588730648159981],[127,97,67,-0.5586894489824772],[127,97,68,-0.5579561330378056],[127,97,69,-0.5574606731534004],[127,97,70,-0.5572692304849625],[127,97,71,-0.5575528629124165],[127,97,72,-0.5592196434736252],[127,97,73,-0.5617599152028561],[127,97,74,-0.5636810474097729],[127,97,75,-0.5638935938477516],[127,97,76,-0.5618910305202007],[127,97,77,-0.5576980598270893],[127,97,78,-0.5523377247154713],[127,97,79,-0.5468230731785297],[127,98,64,-0.555078387260437],[127,98,65,-0.5577244460582733],[127,98,66,-0.5588730648159981],[127,98,67,-0.5586894489824772],[127,98,68,-0.5579561330378056],[127,98,69,-0.5574606731534004],[127,98,70,-0.5572692304849625],[127,98,71,-0.5575528629124165],[127,98,72,-0.5592196434736252],[127,98,73,-0.5617599152028561],[127,98,74,-0.5636810474097729],[127,98,75,-0.5638935938477516],[127,98,76,-0.5618910305202007],[127,98,77,-0.5576980598270893],[127,98,78,-0.5523377247154713],[127,98,79,-0.5468230731785297],[127,99,64,-0.555078387260437],[127,99,65,-0.5577244460582733],[127,99,66,-0.5588730648159981],[127,99,67,-0.5586894489824772],[127,99,68,-0.5579561330378056],[127,99,69,-0.5574606731534004],[127,99,70,-0.5572692304849625],[127,99,71,-0.5575528629124165],[127,99,72,-0.5592196434736252],[127,99,73,-0.5617599152028561],[127,99,74,-0.5636810474097729],[127,99,75,-0.5638935938477516],[127,99,76,-0.5618910305202007],[127,99,77,-0.5576980598270893],[127,99,78,-0.5523377247154713],[127,99,79,-0.5468230731785297],[127,100,64,-0.555078387260437],[127,100,65,-0.5577244460582733],[127,100,66,-0.5588730648159981],[127,100,67,-0.5586894489824772],[127,100,68,-0.5579561330378056],[127,100,69,-0.5574606731534004],[127,100,70,-0.5572692304849625],[127,100,71,-0.5575528629124165],[127,100,72,-0.5592196434736252],[127,100,73,-0.5617599152028561],[127,100,74,-0.5636810474097729],[127,100,75,-0.5638935938477516],[127,100,76,-0.5618910305202007],[127,100,77,-0.5576980598270893],[127,100,78,-0.5523377247154713],[127,100,79,-0.5468230731785297],[127,101,64,-0.555078387260437],[127,101,65,-0.5577244460582733],[127,101,66,-0.5588730648159981],[127,101,67,-0.5586894489824772],[127,101,68,-0.5579561330378056],[127,101,69,-0.5574606731534004],[127,101,70,-0.5572692304849625],[127,101,71,-0.5575528629124165],[127,101,72,-0.5592196434736252],[127,101,73,-0.5617599152028561],[127,101,74,-0.5636810474097729],[127,101,75,-0.5638935938477516],[127,101,76,-0.5618910305202007],[127,101,77,-0.5576980598270893],[127,101,78,-0.5523377247154713],[127,101,79,-0.5468230731785297],[127,102,64,-0.555078387260437],[127,102,65,-0.5577244460582733],[127,102,66,-0.5588730648159981],[127,102,67,-0.5586894489824772],[127,102,68,-0.5579561330378056],[127,102,69,-0.5574606731534004],[127,102,70,-0.5572692304849625],[127,102,71,-0.5575528629124165],[127,102,72,-0.5592196434736252],[127,102,73,-0.5617599152028561],[127,102,74,-0.5636810474097729],[127,102,75,-0.5638935938477516],[127,102,76,-0.5618910305202007],[127,102,77,-0.5576980598270893],[127,102,78,-0.5523377247154713],[127,102,79,-0.5468230731785297],[127,103,64,-0.555078387260437],[127,103,65,-0.5577244460582733],[127,103,66,-0.5588730648159981],[127,103,67,-0.5586894489824772],[127,103,68,-0.5579561330378056],[127,103,69,-0.5574606731534004],[127,103,70,-0.5572692304849625],[127,103,71,-0.5575528629124165],[127,103,72,-0.5592196434736252],[127,103,73,-0.5617599152028561],[127,103,74,-0.5636810474097729],[127,103,75,-0.5638935938477516],[127,103,76,-0.5618910305202007],[127,103,77,-0.5576980598270893],[127,103,78,-0.5523377247154713],[127,103,79,-0.5468230731785297],[127,104,64,-0.555078387260437],[127,104,65,-0.5577244460582733],[127,104,66,-0.5588730648159981],[127,104,67,-0.5586894489824772],[127,104,68,-0.5579561330378056],[127,104,69,-0.5574606731534004],[127,104,70,-0.5572692304849625],[127,104,71,-0.5575528629124165],[127,104,72,-0.5592196434736252],[127,104,73,-0.5617599152028561],[127,104,74,-0.5636810474097729],[127,104,75,-0.5638935938477516],[127,104,76,-0.5618910305202007],[127,104,77,-0.5576980598270893],[127,104,78,-0.5523377247154713],[127,104,79,-0.5468230731785297],[127,105,64,-0.555078387260437],[127,105,65,-0.5577244460582733],[127,105,66,-0.5588730648159981],[127,105,67,-0.5586894489824772],[127,105,68,-0.5579561330378056],[127,105,69,-0.5574606731534004],[127,105,70,-0.5572692304849625],[127,105,71,-0.5575528629124165],[127,105,72,-0.5592196434736252],[127,105,73,-0.5617599152028561],[127,105,74,-0.5636810474097729],[127,105,75,-0.5638935938477516],[127,105,76,-0.5618910305202007],[127,105,77,-0.5576980598270893],[127,105,78,-0.5523377247154713],[127,105,79,-0.5468230731785297],[127,106,64,-0.555078387260437],[127,106,65,-0.5577244460582733],[127,106,66,-0.5588730648159981],[127,106,67,-0.5586894489824772],[127,106,68,-0.5579561330378056],[127,106,69,-0.5574606731534004],[127,106,70,-0.5572692304849625],[127,106,71,-0.5575528629124165],[127,106,72,-0.5592196434736252],[127,106,73,-0.5617599152028561],[127,106,74,-0.5636810474097729],[127,106,75,-0.5638935938477516],[127,106,76,-0.5618910305202007],[127,106,77,-0.5576980598270893],[127,106,78,-0.5523377247154713],[127,106,79,-0.5468230731785297],[127,107,64,-0.555078387260437],[127,107,65,-0.5577244460582733],[127,107,66,-0.5588730648159981],[127,107,67,-0.5586894489824772],[127,107,68,-0.5579561330378056],[127,107,69,-0.5574606731534004],[127,107,70,-0.5572692304849625],[127,107,71,-0.5575528629124165],[127,107,72,-0.5592196434736252],[127,107,73,-0.5617599152028561],[127,107,74,-0.5636810474097729],[127,107,75,-0.5638935938477516],[127,107,76,-0.5618910305202007],[127,107,77,-0.5576980598270893],[127,107,78,-0.5523377247154713],[127,107,79,-0.5468230731785297],[127,108,64,-0.555078387260437],[127,108,65,-0.5577244460582733],[127,108,66,-0.5588730648159981],[127,108,67,-0.5586894489824772],[127,108,68,-0.5579561330378056],[127,108,69,-0.5574606731534004],[127,108,70,-0.5572692304849625],[127,108,71,-0.5575528629124165],[127,108,72,-0.5592196434736252],[127,108,73,-0.5617599152028561],[127,108,74,-0.5636810474097729],[127,108,75,-0.5638935938477516],[127,108,76,-0.5618910305202007],[127,108,77,-0.5576980598270893],[127,108,78,-0.5523377247154713],[127,108,79,-0.5468230731785297],[127,109,64,-0.555078387260437],[127,109,65,-0.5577244460582733],[127,109,66,-0.5588730648159981],[127,109,67,-0.5586894489824772],[127,109,68,-0.5579561330378056],[127,109,69,-0.5574606731534004],[127,109,70,-0.5572692304849625],[127,109,71,-0.5575528629124165],[127,109,72,-0.5592196434736252],[127,109,73,-0.5617599152028561],[127,109,74,-0.5636810474097729],[127,109,75,-0.5638935938477516],[127,109,76,-0.5618910305202007],[127,109,77,-0.5576980598270893],[127,109,78,-0.5523377247154713],[127,109,79,-0.5468230731785297],[127,110,64,-0.555078387260437],[127,110,65,-0.5577244460582733],[127,110,66,-0.5588730648159981],[127,110,67,-0.5586894489824772],[127,110,68,-0.5579561330378056],[127,110,69,-0.5574606731534004],[127,110,70,-0.5572692304849625],[127,110,71,-0.5575528629124165],[127,110,72,-0.5592196434736252],[127,110,73,-0.5617599152028561],[127,110,74,-0.5636810474097729],[127,110,75,-0.5638935938477516],[127,110,76,-0.5618910305202007],[127,110,77,-0.5576980598270893],[127,110,78,-0.5523377247154713],[127,110,79,-0.5468230731785297],[127,111,64,-0.555078387260437],[127,111,65,-0.5577244460582733],[127,111,66,-0.5588730648159981],[127,111,67,-0.5586894489824772],[127,111,68,-0.5579561330378056],[127,111,69,-0.5574606731534004],[127,111,70,-0.5572692304849625],[127,111,71,-0.5575528629124165],[127,111,72,-0.5592196434736252],[127,111,73,-0.5617599152028561],[127,111,74,-0.5636810474097729],[127,111,75,-0.5638935938477516],[127,111,76,-0.5618910305202007],[127,111,77,-0.5576980598270893],[127,111,78,-0.5523377247154713],[127,111,79,-0.5468230731785297],[127,112,64,-0.555078387260437],[127,112,65,-0.5577244460582733],[127,112,66,-0.5588730648159981],[127,112,67,-0.5586894489824772],[127,112,68,-0.5579561330378056],[127,112,69,-0.5574606731534004],[127,112,70,-0.5572692304849625],[127,112,71,-0.5575528629124165],[127,112,72,-0.5592196434736252],[127,112,73,-0.5617599152028561],[127,112,74,-0.5636810474097729],[127,112,75,-0.5638935938477516],[127,112,76,-0.5618910305202007],[127,112,77,-0.5576980598270893],[127,112,78,-0.5523377247154713],[127,112,79,-0.5468230731785297],[127,113,64,-0.555078387260437],[127,113,65,-0.5577244460582733],[127,113,66,-0.5588730648159981],[127,113,67,-0.5586894489824772],[127,113,68,-0.5579561330378056],[127,113,69,-0.5574606731534004],[127,113,70,-0.5572692304849625],[127,113,71,-0.5575528629124165],[127,113,72,-0.5592196434736252],[127,113,73,-0.5617599152028561],[127,113,74,-0.5636810474097729],[127,113,75,-0.5638935938477516],[127,113,76,-0.5618910305202007],[127,113,77,-0.5576980598270893],[127,113,78,-0.5523377247154713],[127,113,79,-0.5468230731785297],[127,114,64,-0.555078387260437],[127,114,65,-0.5577244460582733],[127,114,66,-0.5588730648159981],[127,114,67,-0.5586894489824772],[127,114,68,-0.5579561330378056],[127,114,69,-0.5574606731534004],[127,114,70,-0.5572692304849625],[127,114,71,-0.5575528629124165],[127,114,72,-0.5592196434736252],[127,114,73,-0.5617599152028561],[127,114,74,-0.5636810474097729],[127,114,75,-0.5638935938477516],[127,114,76,-0.5618910305202007],[127,114,77,-0.5576980598270893],[127,114,78,-0.5523377247154713],[127,114,79,-0.5468230731785297],[127,115,64,-0.555078387260437],[127,115,65,-0.5577244460582733],[127,115,66,-0.5588730648159981],[127,115,67,-0.5586894489824772],[127,115,68,-0.5579561330378056],[127,115,69,-0.5574606731534004],[127,115,70,-0.5572692304849625],[127,115,71,-0.5575528629124165],[127,115,72,-0.5592196434736252],[127,115,73,-0.5617599152028561],[127,115,74,-0.5636810474097729],[127,115,75,-0.5638935938477516],[127,115,76,-0.5618910305202007],[127,115,77,-0.5576980598270893],[127,115,78,-0.5523377247154713],[127,115,79,-0.5468230731785297],[127,116,64,-0.555078387260437],[127,116,65,-0.5577244460582733],[127,116,66,-0.5588730648159981],[127,116,67,-0.5586894489824772],[127,116,68,-0.5579561330378056],[127,116,69,-0.5574606731534004],[127,116,70,-0.5572692304849625],[127,116,71,-0.5575528629124165],[127,116,72,-0.5592196434736252],[127,116,73,-0.5617599152028561],[127,116,74,-0.5636810474097729],[127,116,75,-0.5638935938477516],[127,116,76,-0.5618910305202007],[127,116,77,-0.5576980598270893],[127,116,78,-0.5523377247154713],[127,116,79,-0.5468230731785297],[127,117,64,-0.555078387260437],[127,117,65,-0.5577244460582733],[127,117,66,-0.5588730648159981],[127,117,67,-0.5586894489824772],[127,117,68,-0.5579561330378056],[127,117,69,-0.5574606731534004],[127,117,70,-0.5572692304849625],[127,117,71,-0.5575528629124165],[127,117,72,-0.5592196434736252],[127,117,73,-0.5617599152028561],[127,117,74,-0.5636810474097729],[127,117,75,-0.5638935938477516],[127,117,76,-0.5618910305202007],[127,117,77,-0.5576980598270893],[127,117,78,-0.5523377247154713],[127,117,79,-0.5468230731785297],[127,118,64,-0.555078387260437],[127,118,65,-0.5577244460582733],[127,118,66,-0.5588730648159981],[127,118,67,-0.5586894489824772],[127,118,68,-0.5579561330378056],[127,118,69,-0.5574606731534004],[127,118,70,-0.5572692304849625],[127,118,71,-0.5575528629124165],[127,118,72,-0.5592196434736252],[127,118,73,-0.5617599152028561],[127,118,74,-0.5636810474097729],[127,118,75,-0.5638935938477516],[127,118,76,-0.5618910305202007],[127,118,77,-0.5576980598270893],[127,118,78,-0.5523377247154713],[127,118,79,-0.5468230731785297],[127,119,64,-0.555078387260437],[127,119,65,-0.5577244460582733],[127,119,66,-0.5588730648159981],[127,119,67,-0.5586894489824772],[127,119,68,-0.5579561330378056],[127,119,69,-0.5574606731534004],[127,119,70,-0.5572692304849625],[127,119,71,-0.5575528629124165],[127,119,72,-0.5592196434736252],[127,119,73,-0.5617599152028561],[127,119,74,-0.5636810474097729],[127,119,75,-0.5638935938477516],[127,119,76,-0.5618910305202007],[127,119,77,-0.5576980598270893],[127,119,78,-0.5523377247154713],[127,119,79,-0.5468230731785297],[127,120,64,-0.555078387260437],[127,120,65,-0.5577244460582733],[127,120,66,-0.5588730648159981],[127,120,67,-0.5586894489824772],[127,120,68,-0.5579561330378056],[127,120,69,-0.5574606731534004],[127,120,70,-0.5572692304849625],[127,120,71,-0.5575528629124165],[127,120,72,-0.5592196434736252],[127,120,73,-0.5617599152028561],[127,120,74,-0.5636810474097729],[127,120,75,-0.5638935938477516],[127,120,76,-0.5618910305202007],[127,120,77,-0.5576980598270893],[127,120,78,-0.5523377247154713],[127,120,79,-0.5468230731785297],[127,121,64,-0.555078387260437],[127,121,65,-0.5577244460582733],[127,121,66,-0.5588730648159981],[127,121,67,-0.5586894489824772],[127,121,68,-0.5579561330378056],[127,121,69,-0.5574606731534004],[127,121,70,-0.5572692304849625],[127,121,71,-0.5575528629124165],[127,121,72,-0.5592196434736252],[127,121,73,-0.5617599152028561],[127,121,74,-0.5636810474097729],[127,121,75,-0.5638935938477516],[127,121,76,-0.5618910305202007],[127,121,77,-0.5576980598270893],[127,121,78,-0.5523377247154713],[127,121,79,-0.5468230731785297],[127,122,64,-0.555078387260437],[127,122,65,-0.5577244460582733],[127,122,66,-0.5588730648159981],[127,122,67,-0.5586894489824772],[127,122,68,-0.5579561330378056],[127,122,69,-0.5574606731534004],[127,122,70,-0.5572692304849625],[127,122,71,-0.5575528629124165],[127,122,72,-0.5592196434736252],[127,122,73,-0.5617599152028561],[127,122,74,-0.5636810474097729],[127,122,75,-0.5638935938477516],[127,122,76,-0.5618910305202007],[127,122,77,-0.5576980598270893],[127,122,78,-0.5523377247154713],[127,122,79,-0.5468230731785297],[127,123,64,-0.555078387260437],[127,123,65,-0.5577244460582733],[127,123,66,-0.5588730648159981],[127,123,67,-0.5586894489824772],[127,123,68,-0.5579561330378056],[127,123,69,-0.5574606731534004],[127,123,70,-0.5572692304849625],[127,123,71,-0.5575528629124165],[127,123,72,-0.5592196434736252],[127,123,73,-0.5617599152028561],[127,123,74,-0.5636810474097729],[127,123,75,-0.5638935938477516],[127,123,76,-0.5618910305202007],[127,123,77,-0.5576980598270893],[127,123,78,-0.5523377247154713],[127,123,79,-0.5468230731785297],[127,124,64,-0.555078387260437],[127,124,65,-0.5577244460582733],[127,124,66,-0.5588730648159981],[127,124,67,-0.5586894489824772],[127,124,68,-0.5579561330378056],[127,124,69,-0.5574606731534004],[127,124,70,-0.5572692304849625],[127,124,71,-0.5575528629124165],[127,124,72,-0.5592196434736252],[127,124,73,-0.5617599152028561],[127,124,74,-0.5636810474097729],[127,124,75,-0.5638935938477516],[127,124,76,-0.5618910305202007],[127,124,77,-0.5576980598270893],[127,124,78,-0.5523377247154713],[127,124,79,-0.5468230731785297],[127,125,64,-0.555078387260437],[127,125,65,-0.5577244460582733],[127,125,66,-0.5588730648159981],[127,125,67,-0.5586894489824772],[127,125,68,-0.5579561330378056],[127,125,69,-0.5574606731534004],[127,125,70,-0.5572692304849625],[127,125,71,-0.5575528629124165],[127,125,72,-0.5592196434736252],[127,125,73,-0.5617599152028561],[127,125,74,-0.5636810474097729],[127,125,75,-0.5638935938477516],[127,125,76,-0.5618910305202007],[127,125,77,-0.5576980598270893],[127,125,78,-0.5523377247154713],[127,125,79,-0.5468230731785297],[127,126,64,-0.555078387260437],[127,126,65,-0.5577244460582733],[127,126,66,-0.5588730648159981],[127,126,67,-0.5586894489824772],[127,126,68,-0.5579561330378056],[127,126,69,-0.5574606731534004],[127,126,70,-0.5572692304849625],[127,126,71,-0.5575528629124165],[127,126,72,-0.5592196434736252],[127,126,73,-0.5617599152028561],[127,126,74,-0.5636810474097729],[127,126,75,-0.5638935938477516],[127,126,76,-0.5618910305202007],[127,126,77,-0.5576980598270893],[127,126,78,-0.5523377247154713],[127,126,79,-0.5468230731785297],[127,127,64,-0.555078387260437],[127,127,65,-0.5577244460582733],[127,127,66,-0.5588730648159981],[127,127,67,-0.5586894489824772],[127,127,68,-0.5579561330378056],[127,127,69,-0.5574606731534004],[127,127,70,-0.5572692304849625],[127,127,71,-0.5575528629124165],[127,127,72,-0.5592196434736252],[127,127,73,-0.5617599152028561],[127,127,74,-0.5636810474097729],[127,127,75,-0.5638935938477516],[127,127,76,-0.5618910305202007],[127,127,77,-0.5576980598270893],[127,127,78,-0.5523377247154713],[127,127,79,-0.5468230731785297],[127,128,64,-0.555078387260437],[127,128,65,-0.5577244460582733],[127,128,66,-0.5588730648159981],[127,128,67,-0.5586894489824772],[127,128,68,-0.5579561330378056],[127,128,69,-0.5574606731534004],[127,128,70,-0.5572692304849625],[127,128,71,-0.5575528629124165],[127,128,72,-0.5592196434736252],[127,128,73,-0.5617599152028561],[127,128,74,-0.5636810474097729],[127,128,75,-0.5638935938477516],[127,128,76,-0.5618910305202007],[127,128,77,-0.5576980598270893],[127,128,78,-0.5523377247154713],[127,128,79,-0.5468230731785297],[127,129,64,-0.555078387260437],[127,129,65,-0.5577244460582733],[127,129,66,-0.5588730648159981],[127,129,67,-0.5586894489824772],[127,129,68,-0.5579561330378056],[127,129,69,-0.5574606731534004],[127,129,70,-0.5572692304849625],[127,129,71,-0.5575528629124165],[127,129,72,-0.5592196434736252],[127,129,73,-0.5617599152028561],[127,129,74,-0.5636810474097729],[127,129,75,-0.5638935938477516],[127,129,76,-0.5618910305202007],[127,129,77,-0.5576980598270893],[127,129,78,-0.5523377247154713],[127,129,79,-0.5468230731785297],[127,130,64,-0.555078387260437],[127,130,65,-0.5577244460582733],[127,130,66,-0.5588730648159981],[127,130,67,-0.5586894489824772],[127,130,68,-0.5579561330378056],[127,130,69,-0.5574606731534004],[127,130,70,-0.5572692304849625],[127,130,71,-0.5575528629124165],[127,130,72,-0.5592196434736252],[127,130,73,-0.5617599152028561],[127,130,74,-0.5636810474097729],[127,130,75,-0.5638935938477516],[127,130,76,-0.5618910305202007],[127,130,77,-0.5576980598270893],[127,130,78,-0.5523377247154713],[127,130,79,-0.5468230731785297],[127,131,64,-0.555078387260437],[127,131,65,-0.5577244460582733],[127,131,66,-0.5588730648159981],[127,131,67,-0.5586894489824772],[127,131,68,-0.5579561330378056],[127,131,69,-0.5574606731534004],[127,131,70,-0.5572692304849625],[127,131,71,-0.5575528629124165],[127,131,72,-0.5592196434736252],[127,131,73,-0.5617599152028561],[127,131,74,-0.5636810474097729],[127,131,75,-0.5638935938477516],[127,131,76,-0.5618910305202007],[127,131,77,-0.5576980598270893],[127,131,78,-0.5523377247154713],[127,131,79,-0.5468230731785297],[127,132,64,-0.555078387260437],[127,132,65,-0.5577244460582733],[127,132,66,-0.5588730648159981],[127,132,67,-0.5586894489824772],[127,132,68,-0.5579561330378056],[127,132,69,-0.5574606731534004],[127,132,70,-0.5572692304849625],[127,132,71,-0.5575528629124165],[127,132,72,-0.5592196434736252],[127,132,73,-0.5617599152028561],[127,132,74,-0.5636810474097729],[127,132,75,-0.5638935938477516],[127,132,76,-0.5618910305202007],[127,132,77,-0.5576980598270893],[127,132,78,-0.5523377247154713],[127,132,79,-0.5468230731785297],[127,133,64,-0.555078387260437],[127,133,65,-0.5577244460582733],[127,133,66,-0.5588730648159981],[127,133,67,-0.5586894489824772],[127,133,68,-0.5579561330378056],[127,133,69,-0.5574606731534004],[127,133,70,-0.5572692304849625],[127,133,71,-0.5575528629124165],[127,133,72,-0.5592196434736252],[127,133,73,-0.5617599152028561],[127,133,74,-0.5636810474097729],[127,133,75,-0.5638935938477516],[127,133,76,-0.5618910305202007],[127,133,77,-0.5576980598270893],[127,133,78,-0.5523377247154713],[127,133,79,-0.5468230731785297],[127,134,64,-0.555078387260437],[127,134,65,-0.5577244460582733],[127,134,66,-0.5588730648159981],[127,134,67,-0.5586894489824772],[127,134,68,-0.5579561330378056],[127,134,69,-0.5574606731534004],[127,134,70,-0.5572692304849625],[127,134,71,-0.5575528629124165],[127,134,72,-0.5592196434736252],[127,134,73,-0.5617599152028561],[127,134,74,-0.5636810474097729],[127,134,75,-0.5638935938477516],[127,134,76,-0.5618910305202007],[127,134,77,-0.5576980598270893],[127,134,78,-0.5523377247154713],[127,134,79,-0.5468230731785297],[127,135,64,-0.555078387260437],[127,135,65,-0.5577244460582733],[127,135,66,-0.5588730648159981],[127,135,67,-0.5586894489824772],[127,135,68,-0.5579561330378056],[127,135,69,-0.5574606731534004],[127,135,70,-0.5572692304849625],[127,135,71,-0.5575528629124165],[127,135,72,-0.5592196434736252],[127,135,73,-0.5617599152028561],[127,135,74,-0.5636810474097729],[127,135,75,-0.5638935938477516],[127,135,76,-0.5618910305202007],[127,135,77,-0.5576980598270893],[127,135,78,-0.5523377247154713],[127,135,79,-0.5468230731785297],[127,136,64,-0.555078387260437],[127,136,65,-0.5577244460582733],[127,136,66,-0.5588730648159981],[127,136,67,-0.5586894489824772],[127,136,68,-0.5579561330378056],[127,136,69,-0.5574606731534004],[127,136,70,-0.5572692304849625],[127,136,71,-0.5575528629124165],[127,136,72,-0.5592196434736252],[127,136,73,-0.5617599152028561],[127,136,74,-0.5636810474097729],[127,136,75,-0.5638935938477516],[127,136,76,-0.5618910305202007],[127,136,77,-0.5576980598270893],[127,136,78,-0.5523377247154713],[127,136,79,-0.5468230731785297],[127,137,64,-0.555078387260437],[127,137,65,-0.5577244460582733],[127,137,66,-0.5588730648159981],[127,137,67,-0.5586894489824772],[127,137,68,-0.5579561330378056],[127,137,69,-0.5574606731534004],[127,137,70,-0.5572692304849625],[127,137,71,-0.5575528629124165],[127,137,72,-0.5592196434736252],[127,137,73,-0.5617599152028561],[127,137,74,-0.5636810474097729],[127,137,75,-0.5638935938477516],[127,137,76,-0.5618910305202007],[127,137,77,-0.5576980598270893],[127,137,78,-0.5523377247154713],[127,137,79,-0.5468230731785297],[127,138,64,-0.555078387260437],[127,138,65,-0.5577244460582733],[127,138,66,-0.5588730648159981],[127,138,67,-0.5586894489824772],[127,138,68,-0.5579561330378056],[127,138,69,-0.5574606731534004],[127,138,70,-0.5572692304849625],[127,138,71,-0.5575528629124165],[127,138,72,-0.5592196434736252],[127,138,73,-0.5617599152028561],[127,138,74,-0.5636810474097729],[127,138,75,-0.5638935938477516],[127,138,76,-0.5618910305202007],[127,138,77,-0.5576980598270893],[127,138,78,-0.5523377247154713],[127,138,79,-0.5468230731785297],[127,139,64,-0.555078387260437],[127,139,65,-0.5577244460582733],[127,139,66,-0.5588730648159981],[127,139,67,-0.5586894489824772],[127,139,68,-0.5579561330378056],[127,139,69,-0.5574606731534004],[127,139,70,-0.5572692304849625],[127,139,71,-0.5575528629124165],[127,139,72,-0.5592196434736252],[127,139,73,-0.5617599152028561],[127,139,74,-0.5636810474097729],[127,139,75,-0.5638935938477516],[127,139,76,-0.5618910305202007],[127,139,77,-0.5576980598270893],[127,139,78,-0.5523377247154713],[127,139,79,-0.5468230731785297],[127,140,64,-0.555078387260437],[127,140,65,-0.5577244460582733],[127,140,66,-0.5588730648159981],[127,140,67,-0.5586894489824772],[127,140,68,-0.5579561330378056],[127,140,69,-0.5574606731534004],[127,140,70,-0.5572692304849625],[127,140,71,-0.5575528629124165],[127,140,72,-0.5592196434736252],[127,140,73,-0.5617599152028561],[127,140,74,-0.5636810474097729],[127,140,75,-0.5638935938477516],[127,140,76,-0.5618910305202007],[127,140,77,-0.5576980598270893],[127,140,78,-0.5523377247154713],[127,140,79,-0.5468230731785297],[127,141,64,-0.555078387260437],[127,141,65,-0.5577244460582733],[127,141,66,-0.5588730648159981],[127,141,67,-0.5586894489824772],[127,141,68,-0.5579561330378056],[127,141,69,-0.5574606731534004],[127,141,70,-0.5572692304849625],[127,141,71,-0.5575528629124165],[127,141,72,-0.5592196434736252],[127,141,73,-0.5617599152028561],[127,141,74,-0.5636810474097729],[127,141,75,-0.5638935938477516],[127,141,76,-0.5618910305202007],[127,141,77,-0.5576980598270893],[127,141,78,-0.5523377247154713],[127,141,79,-0.5468230731785297],[127,142,64,-0.555078387260437],[127,142,65,-0.5577244460582733],[127,142,66,-0.5588730648159981],[127,142,67,-0.5586894489824772],[127,142,68,-0.5579561330378056],[127,142,69,-0.5574606731534004],[127,142,70,-0.5572692304849625],[127,142,71,-0.5575528629124165],[127,142,72,-0.5592196434736252],[127,142,73,-0.5617599152028561],[127,142,74,-0.5636810474097729],[127,142,75,-0.5638935938477516],[127,142,76,-0.5618910305202007],[127,142,77,-0.5576980598270893],[127,142,78,-0.5523377247154713],[127,142,79,-0.5468230731785297],[127,143,64,-0.555078387260437],[127,143,65,-0.5577244460582733],[127,143,66,-0.5588730648159981],[127,143,67,-0.5586894489824772],[127,143,68,-0.5579561330378056],[127,143,69,-0.5574606731534004],[127,143,70,-0.5572692304849625],[127,143,71,-0.5575528629124165],[127,143,72,-0.5592196434736252],[127,143,73,-0.5617599152028561],[127,143,74,-0.5636810474097729],[127,143,75,-0.5638935938477516],[127,143,76,-0.5618910305202007],[127,143,77,-0.5576980598270893],[127,143,78,-0.5523377247154713],[127,143,79,-0.5468230731785297],[127,144,64,-0.555078387260437],[127,144,65,-0.5577244460582733],[127,144,66,-0.5588730648159981],[127,144,67,-0.5586894489824772],[127,144,68,-0.5579561330378056],[127,144,69,-0.5574606731534004],[127,144,70,-0.5572692304849625],[127,144,71,-0.5575528629124165],[127,144,72,-0.5592196434736252],[127,144,73,-0.5617599152028561],[127,144,74,-0.5636810474097729],[127,144,75,-0.5638935938477516],[127,144,76,-0.5618910305202007],[127,144,77,-0.5576980598270893],[127,144,78,-0.5523377247154713],[127,144,79,-0.5468230731785297],[127,145,64,-0.555078387260437],[127,145,65,-0.5577244460582733],[127,145,66,-0.5588730648159981],[127,145,67,-0.5586894489824772],[127,145,68,-0.5579561330378056],[127,145,69,-0.5574606731534004],[127,145,70,-0.5572692304849625],[127,145,71,-0.5575528629124165],[127,145,72,-0.5592196434736252],[127,145,73,-0.5617599152028561],[127,145,74,-0.5636810474097729],[127,145,75,-0.5638935938477516],[127,145,76,-0.5618910305202007],[127,145,77,-0.5576980598270893],[127,145,78,-0.5523377247154713],[127,145,79,-0.5468230731785297],[127,146,64,-0.555078387260437],[127,146,65,-0.5577244460582733],[127,146,66,-0.5588730648159981],[127,146,67,-0.5586894489824772],[127,146,68,-0.5579561330378056],[127,146,69,-0.5574606731534004],[127,146,70,-0.5572692304849625],[127,146,71,-0.5575528629124165],[127,146,72,-0.5592196434736252],[127,146,73,-0.5617599152028561],[127,146,74,-0.5636810474097729],[127,146,75,-0.5638935938477516],[127,146,76,-0.5618910305202007],[127,146,77,-0.5576980598270893],[127,146,78,-0.5523377247154713],[127,146,79,-0.5468230731785297],[127,147,64,-0.555078387260437],[127,147,65,-0.5577244460582733],[127,147,66,-0.5588730648159981],[127,147,67,-0.5586894489824772],[127,147,68,-0.5579561330378056],[127,147,69,-0.5574606731534004],[127,147,70,-0.5572692304849625],[127,147,71,-0.5575528629124165],[127,147,72,-0.5592196434736252],[127,147,73,-0.5617599152028561],[127,147,74,-0.5636810474097729],[127,147,75,-0.5638935938477516],[127,147,76,-0.5618910305202007],[127,147,77,-0.5576980598270893],[127,147,78,-0.5523377247154713],[127,147,79,-0.5468230731785297],[127,148,64,-0.555078387260437],[127,148,65,-0.5577244460582733],[127,148,66,-0.5588730648159981],[127,148,67,-0.5586894489824772],[127,148,68,-0.5579561330378056],[127,148,69,-0.5574606731534004],[127,148,70,-0.5572692304849625],[127,148,71,-0.5575528629124165],[127,148,72,-0.5592196434736252],[127,148,73,-0.5617599152028561],[127,148,74,-0.5636810474097729],[127,148,75,-0.5638935938477516],[127,148,76,-0.5618910305202007],[127,148,77,-0.5576980598270893],[127,148,78,-0.5523377247154713],[127,148,79,-0.5468230731785297],[127,149,64,-0.555078387260437],[127,149,65,-0.5577244460582733],[127,149,66,-0.5588730648159981],[127,149,67,-0.5586894489824772],[127,149,68,-0.5579561330378056],[127,149,69,-0.5574606731534004],[127,149,70,-0.5572692304849625],[127,149,71,-0.5575528629124165],[127,149,72,-0.5592196434736252],[127,149,73,-0.5617599152028561],[127,149,74,-0.5636810474097729],[127,149,75,-0.5638935938477516],[127,149,76,-0.5618910305202007],[127,149,77,-0.5576980598270893],[127,149,78,-0.5523377247154713],[127,149,79,-0.5468230731785297],[127,150,64,-0.555078387260437],[127,150,65,-0.5577244460582733],[127,150,66,-0.5588730648159981],[127,150,67,-0.5586894489824772],[127,150,68,-0.5579561330378056],[127,150,69,-0.5574606731534004],[127,150,70,-0.5572692304849625],[127,150,71,-0.5575528629124165],[127,150,72,-0.5592196434736252],[127,150,73,-0.5617599152028561],[127,150,74,-0.5636810474097729],[127,150,75,-0.5638935938477516],[127,150,76,-0.5618910305202007],[127,150,77,-0.5576980598270893],[127,150,78,-0.5523377247154713],[127,150,79,-0.5468230731785297],[127,151,64,-0.555078387260437],[127,151,65,-0.5577244460582733],[127,151,66,-0.5588730648159981],[127,151,67,-0.5586894489824772],[127,151,68,-0.5579561330378056],[127,151,69,-0.5574606731534004],[127,151,70,-0.5572692304849625],[127,151,71,-0.5575528629124165],[127,151,72,-0.5592196434736252],[127,151,73,-0.5617599152028561],[127,151,74,-0.5636810474097729],[127,151,75,-0.5638935938477516],[127,151,76,-0.5618910305202007],[127,151,77,-0.5576980598270893],[127,151,78,-0.5523377247154713],[127,151,79,-0.5468230731785297],[127,152,64,-0.555078387260437],[127,152,65,-0.5577244460582733],[127,152,66,-0.5588730648159981],[127,152,67,-0.5586894489824772],[127,152,68,-0.5579561330378056],[127,152,69,-0.5574606731534004],[127,152,70,-0.5572692304849625],[127,152,71,-0.5575528629124165],[127,152,72,-0.5592196434736252],[127,152,73,-0.5617599152028561],[127,152,74,-0.5636810474097729],[127,152,75,-0.5638935938477516],[127,152,76,-0.5618910305202007],[127,152,77,-0.5576980598270893],[127,152,78,-0.5523377247154713],[127,152,79,-0.5468230731785297],[127,153,64,-0.555078387260437],[127,153,65,-0.5577244460582733],[127,153,66,-0.5588730648159981],[127,153,67,-0.5586894489824772],[127,153,68,-0.5579561330378056],[127,153,69,-0.5574606731534004],[127,153,70,-0.5572692304849625],[127,153,71,-0.5575528629124165],[127,153,72,-0.5592196434736252],[127,153,73,-0.5617599152028561],[127,153,74,-0.5636810474097729],[127,153,75,-0.5638935938477516],[127,153,76,-0.5618910305202007],[127,153,77,-0.5576980598270893],[127,153,78,-0.5523377247154713],[127,153,79,-0.5468230731785297],[127,154,64,-0.555078387260437],[127,154,65,-0.5577244460582733],[127,154,66,-0.5588730648159981],[127,154,67,-0.5586894489824772],[127,154,68,-0.5579561330378056],[127,154,69,-0.5574606731534004],[127,154,70,-0.5572692304849625],[127,154,71,-0.5575528629124165],[127,154,72,-0.5592196434736252],[127,154,73,-0.5617599152028561],[127,154,74,-0.5636810474097729],[127,154,75,-0.5638935938477516],[127,154,76,-0.5618910305202007],[127,154,77,-0.5576980598270893],[127,154,78,-0.5523377247154713],[127,154,79,-0.5468230731785297],[127,155,64,-0.555078387260437],[127,155,65,-0.5577244460582733],[127,155,66,-0.5588730648159981],[127,155,67,-0.5586894489824772],[127,155,68,-0.5579561330378056],[127,155,69,-0.5574606731534004],[127,155,70,-0.5572692304849625],[127,155,71,-0.5575528629124165],[127,155,72,-0.5592196434736252],[127,155,73,-0.5617599152028561],[127,155,74,-0.5636810474097729],[127,155,75,-0.5638935938477516],[127,155,76,-0.5618910305202007],[127,155,77,-0.5576980598270893],[127,155,78,-0.5523377247154713],[127,155,79,-0.5468230731785297],[127,156,64,-0.555078387260437],[127,156,65,-0.5577244460582733],[127,156,66,-0.5588730648159981],[127,156,67,-0.5586894489824772],[127,156,68,-0.5579561330378056],[127,156,69,-0.5574606731534004],[127,156,70,-0.5572692304849625],[127,156,71,-0.5575528629124165],[127,156,72,-0.5592196434736252],[127,156,73,-0.5617599152028561],[127,156,74,-0.5636810474097729],[127,156,75,-0.5638935938477516],[127,156,76,-0.5618910305202007],[127,156,77,-0.5576980598270893],[127,156,78,-0.5523377247154713],[127,156,79,-0.5468230731785297],[127,157,64,-0.555078387260437],[127,157,65,-0.5577244460582733],[127,157,66,-0.5588730648159981],[127,157,67,-0.5586894489824772],[127,157,68,-0.5579561330378056],[127,157,69,-0.5574606731534004],[127,157,70,-0.5572692304849625],[127,157,71,-0.5575528629124165],[127,157,72,-0.5592196434736252],[127,157,73,-0.5617599152028561],[127,157,74,-0.5636810474097729],[127,157,75,-0.5638935938477516],[127,157,76,-0.5618910305202007],[127,157,77,-0.5576980598270893],[127,157,78,-0.5523377247154713],[127,157,79,-0.5468230731785297],[127,158,64,-0.555078387260437],[127,158,65,-0.5577244460582733],[127,158,66,-0.5588730648159981],[127,158,67,-0.5586894489824772],[127,158,68,-0.5579561330378056],[127,158,69,-0.5574606731534004],[127,158,70,-0.5572692304849625],[127,158,71,-0.5575528629124165],[127,158,72,-0.5592196434736252],[127,158,73,-0.5617599152028561],[127,158,74,-0.5636810474097729],[127,158,75,-0.5638935938477516],[127,158,76,-0.5618910305202007],[127,158,77,-0.5576980598270893],[127,158,78,-0.5523377247154713],[127,158,79,-0.5468230731785297],[127,159,64,-0.555078387260437],[127,159,65,-0.5577244460582733],[127,159,66,-0.5588730648159981],[127,159,67,-0.5586894489824772],[127,159,68,-0.5579561330378056],[127,159,69,-0.5574606731534004],[127,159,70,-0.5572692304849625],[127,159,71,-0.5575528629124165],[127,159,72,-0.5592196434736252],[127,159,73,-0.5617599152028561],[127,159,74,-0.5636810474097729],[127,159,75,-0.5638935938477516],[127,159,76,-0.5618910305202007],[127,159,77,-0.5576980598270893],[127,159,78,-0.5523377247154713],[127,159,79,-0.5468230731785297],[127,160,64,-0.555078387260437],[127,160,65,-0.5577244460582733],[127,160,66,-0.5588730648159981],[127,160,67,-0.5586894489824772],[127,160,68,-0.5579561330378056],[127,160,69,-0.5574606731534004],[127,160,70,-0.5572692304849625],[127,160,71,-0.5575528629124165],[127,160,72,-0.5592196434736252],[127,160,73,-0.5617599152028561],[127,160,74,-0.5636810474097729],[127,160,75,-0.5638935938477516],[127,160,76,-0.5618910305202007],[127,160,77,-0.5576980598270893],[127,160,78,-0.5523377247154713],[127,160,79,-0.5468230731785297],[127,161,64,-0.555078387260437],[127,161,65,-0.5577244460582733],[127,161,66,-0.5588730648159981],[127,161,67,-0.5586894489824772],[127,161,68,-0.5579561330378056],[127,161,69,-0.5574606731534004],[127,161,70,-0.5572692304849625],[127,161,71,-0.5575528629124165],[127,161,72,-0.5592196434736252],[127,161,73,-0.5617599152028561],[127,161,74,-0.5636810474097729],[127,161,75,-0.5638935938477516],[127,161,76,-0.5618910305202007],[127,161,77,-0.5576980598270893],[127,161,78,-0.5523377247154713],[127,161,79,-0.5468230731785297],[127,162,64,-0.555078387260437],[127,162,65,-0.5577244460582733],[127,162,66,-0.5588730648159981],[127,162,67,-0.5586894489824772],[127,162,68,-0.5579561330378056],[127,162,69,-0.5574606731534004],[127,162,70,-0.5572692304849625],[127,162,71,-0.5575528629124165],[127,162,72,-0.5592196434736252],[127,162,73,-0.5617599152028561],[127,162,74,-0.5636810474097729],[127,162,75,-0.5638935938477516],[127,162,76,-0.5618910305202007],[127,162,77,-0.5576980598270893],[127,162,78,-0.5523377247154713],[127,162,79,-0.5468230731785297],[127,163,64,-0.555078387260437],[127,163,65,-0.5577244460582733],[127,163,66,-0.5588730648159981],[127,163,67,-0.5586894489824772],[127,163,68,-0.5579561330378056],[127,163,69,-0.5574606731534004],[127,163,70,-0.5572692304849625],[127,163,71,-0.5575528629124165],[127,163,72,-0.5592196434736252],[127,163,73,-0.5617599152028561],[127,163,74,-0.5636810474097729],[127,163,75,-0.5638935938477516],[127,163,76,-0.5618910305202007],[127,163,77,-0.5576980598270893],[127,163,78,-0.5523377247154713],[127,163,79,-0.5468230731785297],[127,164,64,-0.555078387260437],[127,164,65,-0.5577244460582733],[127,164,66,-0.5588730648159981],[127,164,67,-0.5586894489824772],[127,164,68,-0.5579561330378056],[127,164,69,-0.5574606731534004],[127,164,70,-0.5572692304849625],[127,164,71,-0.5575528629124165],[127,164,72,-0.5592196434736252],[127,164,73,-0.5617599152028561],[127,164,74,-0.5636810474097729],[127,164,75,-0.5638935938477516],[127,164,76,-0.5618910305202007],[127,164,77,-0.5576980598270893],[127,164,78,-0.5523377247154713],[127,164,79,-0.5468230731785297],[127,165,64,-0.555078387260437],[127,165,65,-0.5577244460582733],[127,165,66,-0.5588730648159981],[127,165,67,-0.5586894489824772],[127,165,68,-0.5579561330378056],[127,165,69,-0.5574606731534004],[127,165,70,-0.5572692304849625],[127,165,71,-0.5575528629124165],[127,165,72,-0.5592196434736252],[127,165,73,-0.5617599152028561],[127,165,74,-0.5636810474097729],[127,165,75,-0.5638935938477516],[127,165,76,-0.5618910305202007],[127,165,77,-0.5576980598270893],[127,165,78,-0.5523377247154713],[127,165,79,-0.5468230731785297],[127,166,64,-0.555078387260437],[127,166,65,-0.5577244460582733],[127,166,66,-0.5588730648159981],[127,166,67,-0.5586894489824772],[127,166,68,-0.5579561330378056],[127,166,69,-0.5574606731534004],[127,166,70,-0.5572692304849625],[127,166,71,-0.5575528629124165],[127,166,72,-0.5592196434736252],[127,166,73,-0.5617599152028561],[127,166,74,-0.5636810474097729],[127,166,75,-0.5638935938477516],[127,166,76,-0.5618910305202007],[127,166,77,-0.5576980598270893],[127,166,78,-0.5523377247154713],[127,166,79,-0.5468230731785297],[127,167,64,-0.555078387260437],[127,167,65,-0.5577244460582733],[127,167,66,-0.5588730648159981],[127,167,67,-0.5586894489824772],[127,167,68,-0.5579561330378056],[127,167,69,-0.5574606731534004],[127,167,70,-0.5572692304849625],[127,167,71,-0.5575528629124165],[127,167,72,-0.5592196434736252],[127,167,73,-0.5617599152028561],[127,167,74,-0.5636810474097729],[127,167,75,-0.5638935938477516],[127,167,76,-0.5618910305202007],[127,167,77,-0.5576980598270893],[127,167,78,-0.5523377247154713],[127,167,79,-0.5468230731785297],[127,168,64,-0.555078387260437],[127,168,65,-0.5577244460582733],[127,168,66,-0.5588730648159981],[127,168,67,-0.5586894489824772],[127,168,68,-0.5579561330378056],[127,168,69,-0.5574606731534004],[127,168,70,-0.5572692304849625],[127,168,71,-0.5575528629124165],[127,168,72,-0.5592196434736252],[127,168,73,-0.5617599152028561],[127,168,74,-0.5636810474097729],[127,168,75,-0.5638935938477516],[127,168,76,-0.5618910305202007],[127,168,77,-0.5576980598270893],[127,168,78,-0.5523377247154713],[127,168,79,-0.5468230731785297],[127,169,64,-0.555078387260437],[127,169,65,-0.5577244460582733],[127,169,66,-0.5588730648159981],[127,169,67,-0.5586894489824772],[127,169,68,-0.5579561330378056],[127,169,69,-0.5574606731534004],[127,169,70,-0.5572692304849625],[127,169,71,-0.5575528629124165],[127,169,72,-0.5592196434736252],[127,169,73,-0.5617599152028561],[127,169,74,-0.5636810474097729],[127,169,75,-0.5638935938477516],[127,169,76,-0.5618910305202007],[127,169,77,-0.5576980598270893],[127,169,78,-0.5523377247154713],[127,169,79,-0.5468230731785297],[127,170,64,-0.555078387260437],[127,170,65,-0.5577244460582733],[127,170,66,-0.5588730648159981],[127,170,67,-0.5586894489824772],[127,170,68,-0.5579561330378056],[127,170,69,-0.5574606731534004],[127,170,70,-0.5572692304849625],[127,170,71,-0.5575528629124165],[127,170,72,-0.5592196434736252],[127,170,73,-0.5617599152028561],[127,170,74,-0.5636810474097729],[127,170,75,-0.5638935938477516],[127,170,76,-0.5618910305202007],[127,170,77,-0.5576980598270893],[127,170,78,-0.5523377247154713],[127,170,79,-0.5468230731785297],[127,171,64,-0.555078387260437],[127,171,65,-0.5577244460582733],[127,171,66,-0.5588730648159981],[127,171,67,-0.5586894489824772],[127,171,68,-0.5579561330378056],[127,171,69,-0.5574606731534004],[127,171,70,-0.5572692304849625],[127,171,71,-0.5575528629124165],[127,171,72,-0.5592196434736252],[127,171,73,-0.5617599152028561],[127,171,74,-0.5636810474097729],[127,171,75,-0.5638935938477516],[127,171,76,-0.5618910305202007],[127,171,77,-0.5576980598270893],[127,171,78,-0.5523377247154713],[127,171,79,-0.5468230731785297],[127,172,64,-0.555078387260437],[127,172,65,-0.5577244460582733],[127,172,66,-0.5588730648159981],[127,172,67,-0.5586894489824772],[127,172,68,-0.5579561330378056],[127,172,69,-0.5574606731534004],[127,172,70,-0.5572692304849625],[127,172,71,-0.5575528629124165],[127,172,72,-0.5592196434736252],[127,172,73,-0.5617599152028561],[127,172,74,-0.5636810474097729],[127,172,75,-0.5638935938477516],[127,172,76,-0.5618910305202007],[127,172,77,-0.5576980598270893],[127,172,78,-0.5523377247154713],[127,172,79,-0.5468230731785297],[127,173,64,-0.555078387260437],[127,173,65,-0.5577244460582733],[127,173,66,-0.5588730648159981],[127,173,67,-0.5586894489824772],[127,173,68,-0.5579561330378056],[127,173,69,-0.5574606731534004],[127,173,70,-0.5572692304849625],[127,173,71,-0.5575528629124165],[127,173,72,-0.5592196434736252],[127,173,73,-0.5617599152028561],[127,173,74,-0.5636810474097729],[127,173,75,-0.5638935938477516],[127,173,76,-0.5618910305202007],[127,173,77,-0.5576980598270893],[127,173,78,-0.5523377247154713],[127,173,79,-0.5468230731785297],[127,174,64,-0.555078387260437],[127,174,65,-0.5577244460582733],[127,174,66,-0.5588730648159981],[127,174,67,-0.5586894489824772],[127,174,68,-0.5579561330378056],[127,174,69,-0.5574606731534004],[127,174,70,-0.5572692304849625],[127,174,71,-0.5575528629124165],[127,174,72,-0.5592196434736252],[127,174,73,-0.5617599152028561],[127,174,74,-0.5636810474097729],[127,174,75,-0.5638935938477516],[127,174,76,-0.5618910305202007],[127,174,77,-0.5576980598270893],[127,174,78,-0.5523377247154713],[127,174,79,-0.5468230731785297],[127,175,64,-0.555078387260437],[127,175,65,-0.5577244460582733],[127,175,66,-0.5588730648159981],[127,175,67,-0.5586894489824772],[127,175,68,-0.5579561330378056],[127,175,69,-0.5574606731534004],[127,175,70,-0.5572692304849625],[127,175,71,-0.5575528629124165],[127,175,72,-0.5592196434736252],[127,175,73,-0.5617599152028561],[127,175,74,-0.5636810474097729],[127,175,75,-0.5638935938477516],[127,175,76,-0.5618910305202007],[127,175,77,-0.5576980598270893],[127,175,78,-0.5523377247154713],[127,175,79,-0.5468230731785297],[127,176,64,-0.555078387260437],[127,176,65,-0.5577244460582733],[127,176,66,-0.5588730648159981],[127,176,67,-0.5586894489824772],[127,176,68,-0.5579561330378056],[127,176,69,-0.5574606731534004],[127,176,70,-0.5572692304849625],[127,176,71,-0.5575528629124165],[127,176,72,-0.5592196434736252],[127,176,73,-0.5617599152028561],[127,176,74,-0.5636810474097729],[127,176,75,-0.5638935938477516],[127,176,76,-0.5618910305202007],[127,176,77,-0.5576980598270893],[127,176,78,-0.5523377247154713],[127,176,79,-0.5468230731785297],[127,177,64,-0.555078387260437],[127,177,65,-0.5577244460582733],[127,177,66,-0.5588730648159981],[127,177,67,-0.5586894489824772],[127,177,68,-0.5579561330378056],[127,177,69,-0.5574606731534004],[127,177,70,-0.5572692304849625],[127,177,71,-0.5575528629124165],[127,177,72,-0.5592196434736252],[127,177,73,-0.5617599152028561],[127,177,74,-0.5636810474097729],[127,177,75,-0.5638935938477516],[127,177,76,-0.5618910305202007],[127,177,77,-0.5576980598270893],[127,177,78,-0.5523377247154713],[127,177,79,-0.5468230731785297],[127,178,64,-0.555078387260437],[127,178,65,-0.5577244460582733],[127,178,66,-0.5588730648159981],[127,178,67,-0.5586894489824772],[127,178,68,-0.5579561330378056],[127,178,69,-0.5574606731534004],[127,178,70,-0.5572692304849625],[127,178,71,-0.5575528629124165],[127,178,72,-0.5592196434736252],[127,178,73,-0.5617599152028561],[127,178,74,-0.5636810474097729],[127,178,75,-0.5638935938477516],[127,178,76,-0.5618910305202007],[127,178,77,-0.5576980598270893],[127,178,78,-0.5523377247154713],[127,178,79,-0.5468230731785297],[127,179,64,-0.555078387260437],[127,179,65,-0.5577244460582733],[127,179,66,-0.5588730648159981],[127,179,67,-0.5586894489824772],[127,179,68,-0.5579561330378056],[127,179,69,-0.5574606731534004],[127,179,70,-0.5572692304849625],[127,179,71,-0.5575528629124165],[127,179,72,-0.5592196434736252],[127,179,73,-0.5617599152028561],[127,179,74,-0.5636810474097729],[127,179,75,-0.5638935938477516],[127,179,76,-0.5618910305202007],[127,179,77,-0.5576980598270893],[127,179,78,-0.5523377247154713],[127,179,79,-0.5468230731785297],[127,180,64,-0.555078387260437],[127,180,65,-0.5577244460582733],[127,180,66,-0.5588730648159981],[127,180,67,-0.5586894489824772],[127,180,68,-0.5579561330378056],[127,180,69,-0.5574606731534004],[127,180,70,-0.5572692304849625],[127,180,71,-0.5575528629124165],[127,180,72,-0.5592196434736252],[127,180,73,-0.5617599152028561],[127,180,74,-0.5636810474097729],[127,180,75,-0.5638935938477516],[127,180,76,-0.5618910305202007],[127,180,77,-0.5576980598270893],[127,180,78,-0.5523377247154713],[127,180,79,-0.5468230731785297],[127,181,64,-0.555078387260437],[127,181,65,-0.5577244460582733],[127,181,66,-0.5588730648159981],[127,181,67,-0.5586894489824772],[127,181,68,-0.5579561330378056],[127,181,69,-0.5574606731534004],[127,181,70,-0.5572692304849625],[127,181,71,-0.5575528629124165],[127,181,72,-0.5592196434736252],[127,181,73,-0.5617599152028561],[127,181,74,-0.5636810474097729],[127,181,75,-0.5638935938477516],[127,181,76,-0.5618910305202007],[127,181,77,-0.5576980598270893],[127,181,78,-0.5523377247154713],[127,181,79,-0.5468230731785297],[127,182,64,-0.555078387260437],[127,182,65,-0.5577244460582733],[127,182,66,-0.5588730648159981],[127,182,67,-0.5586894489824772],[127,182,68,-0.5579561330378056],[127,182,69,-0.5574606731534004],[127,182,70,-0.5572692304849625],[127,182,71,-0.5575528629124165],[127,182,72,-0.5592196434736252],[127,182,73,-0.5617599152028561],[127,182,74,-0.5636810474097729],[127,182,75,-0.5638935938477516],[127,182,76,-0.5618910305202007],[127,182,77,-0.5576980598270893],[127,182,78,-0.5523377247154713],[127,182,79,-0.5468230731785297],[127,183,64,-0.555078387260437],[127,183,65,-0.5577244460582733],[127,183,66,-0.5588730648159981],[127,183,67,-0.5586894489824772],[127,183,68,-0.5579561330378056],[127,183,69,-0.5574606731534004],[127,183,70,-0.5572692304849625],[127,183,71,-0.5575528629124165],[127,183,72,-0.5592196434736252],[127,183,73,-0.5617599152028561],[127,183,74,-0.5636810474097729],[127,183,75,-0.5638935938477516],[127,183,76,-0.5618910305202007],[127,183,77,-0.5576980598270893],[127,183,78,-0.5523377247154713],[127,183,79,-0.5468230731785297],[127,184,64,-0.555078387260437],[127,184,65,-0.5577244460582733],[127,184,66,-0.5588730648159981],[127,184,67,-0.5586894489824772],[127,184,68,-0.5579561330378056],[127,184,69,-0.5574606731534004],[127,184,70,-0.5572692304849625],[127,184,71,-0.5575528629124165],[127,184,72,-0.5592196434736252],[127,184,73,-0.5617599152028561],[127,184,74,-0.5636810474097729],[127,184,75,-0.5638935938477516],[127,184,76,-0.5618910305202007],[127,184,77,-0.5576980598270893],[127,184,78,-0.5523377247154713],[127,184,79,-0.5468230731785297],[127,185,64,-0.555078387260437],[127,185,65,-0.5577244460582733],[127,185,66,-0.5588730648159981],[127,185,67,-0.5586894489824772],[127,185,68,-0.5579561330378056],[127,185,69,-0.5574606731534004],[127,185,70,-0.5572692304849625],[127,185,71,-0.5575528629124165],[127,185,72,-0.5592196434736252],[127,185,73,-0.5617599152028561],[127,185,74,-0.5636810474097729],[127,185,75,-0.5638935938477516],[127,185,76,-0.5618910305202007],[127,185,77,-0.5576980598270893],[127,185,78,-0.5523377247154713],[127,185,79,-0.5468230731785297],[127,186,64,-0.555078387260437],[127,186,65,-0.5577244460582733],[127,186,66,-0.5588730648159981],[127,186,67,-0.5586894489824772],[127,186,68,-0.5579561330378056],[127,186,69,-0.5574606731534004],[127,186,70,-0.5572692304849625],[127,186,71,-0.5575528629124165],[127,186,72,-0.5592196434736252],[127,186,73,-0.5617599152028561],[127,186,74,-0.5636810474097729],[127,186,75,-0.5638935938477516],[127,186,76,-0.5618910305202007],[127,186,77,-0.5576980598270893],[127,186,78,-0.5523377247154713],[127,186,79,-0.5468230731785297],[127,187,64,-0.555078387260437],[127,187,65,-0.5577244460582733],[127,187,66,-0.5588730648159981],[127,187,67,-0.5586894489824772],[127,187,68,-0.5579561330378056],[127,187,69,-0.5574606731534004],[127,187,70,-0.5572692304849625],[127,187,71,-0.5575528629124165],[127,187,72,-0.5592196434736252],[127,187,73,-0.5617599152028561],[127,187,74,-0.5636810474097729],[127,187,75,-0.5638935938477516],[127,187,76,-0.5618910305202007],[127,187,77,-0.5576980598270893],[127,187,78,-0.5523377247154713],[127,187,79,-0.5468230731785297],[127,188,64,-0.555078387260437],[127,188,65,-0.5577244460582733],[127,188,66,-0.5588730648159981],[127,188,67,-0.5586894489824772],[127,188,68,-0.5579561330378056],[127,188,69,-0.5574606731534004],[127,188,70,-0.5572692304849625],[127,188,71,-0.5575528629124165],[127,188,72,-0.5592196434736252],[127,188,73,-0.5617599152028561],[127,188,74,-0.5636810474097729],[127,188,75,-0.5638935938477516],[127,188,76,-0.5618910305202007],[127,188,77,-0.5576980598270893],[127,188,78,-0.5523377247154713],[127,188,79,-0.5468230731785297],[127,189,64,-0.555078387260437],[127,189,65,-0.5577244460582733],[127,189,66,-0.5588730648159981],[127,189,67,-0.5586894489824772],[127,189,68,-0.5579561330378056],[127,189,69,-0.5574606731534004],[127,189,70,-0.5572692304849625],[127,189,71,-0.5575528629124165],[127,189,72,-0.5592196434736252],[127,189,73,-0.5617599152028561],[127,189,74,-0.5636810474097729],[127,189,75,-0.5638935938477516],[127,189,76,-0.5618910305202007],[127,189,77,-0.5576980598270893],[127,189,78,-0.5523377247154713],[127,189,79,-0.5468230731785297],[127,190,64,-0.555078387260437],[127,190,65,-0.5577244460582733],[127,190,66,-0.5588730648159981],[127,190,67,-0.5586894489824772],[127,190,68,-0.5579561330378056],[127,190,69,-0.5574606731534004],[127,190,70,-0.5572692304849625],[127,190,71,-0.5575528629124165],[127,190,72,-0.5592196434736252],[127,190,73,-0.5617599152028561],[127,190,74,-0.5636810474097729],[127,190,75,-0.5638935938477516],[127,190,76,-0.5618910305202007],[127,190,77,-0.5576980598270893],[127,190,78,-0.5523377247154713],[127,190,79,-0.5468230731785297],[127,191,64,-0.555078387260437],[127,191,65,-0.5577244460582733],[127,191,66,-0.5588730648159981],[127,191,67,-0.5586894489824772],[127,191,68,-0.5579561330378056],[127,191,69,-0.5574606731534004],[127,191,70,-0.5572692304849625],[127,191,71,-0.5575528629124165],[127,191,72,-0.5592196434736252],[127,191,73,-0.5617599152028561],[127,191,74,-0.5636810474097729],[127,191,75,-0.5638935938477516],[127,191,76,-0.5618910305202007],[127,191,77,-0.5576980598270893],[127,191,78,-0.5523377247154713],[127,191,79,-0.5468230731785297],[127,192,64,-0.555078387260437],[127,192,65,-0.5577244460582733],[127,192,66,-0.5588730648159981],[127,192,67,-0.5586894489824772],[127,192,68,-0.5579561330378056],[127,192,69,-0.5574606731534004],[127,192,70,-0.5572692304849625],[127,192,71,-0.5575528629124165],[127,192,72,-0.5592196434736252],[127,192,73,-0.5617599152028561],[127,192,74,-0.5636810474097729],[127,192,75,-0.5638935938477516],[127,192,76,-0.5618910305202007],[127,192,77,-0.5576980598270893],[127,192,78,-0.5523377247154713],[127,192,79,-0.5468230731785297],[127,193,64,-0.555078387260437],[127,193,65,-0.5577244460582733],[127,193,66,-0.5588730648159981],[127,193,67,-0.5586894489824772],[127,193,68,-0.5579561330378056],[127,193,69,-0.5574606731534004],[127,193,70,-0.5572692304849625],[127,193,71,-0.5575528629124165],[127,193,72,-0.5592196434736252],[127,193,73,-0.5617599152028561],[127,193,74,-0.5636810474097729],[127,193,75,-0.5638935938477516],[127,193,76,-0.5618910305202007],[127,193,77,-0.5576980598270893],[127,193,78,-0.5523377247154713],[127,193,79,-0.5468230731785297],[127,194,64,-0.555078387260437],[127,194,65,-0.5577244460582733],[127,194,66,-0.5588730648159981],[127,194,67,-0.5586894489824772],[127,194,68,-0.5579561330378056],[127,194,69,-0.5574606731534004],[127,194,70,-0.5572692304849625],[127,194,71,-0.5575528629124165],[127,194,72,-0.5592196434736252],[127,194,73,-0.5617599152028561],[127,194,74,-0.5636810474097729],[127,194,75,-0.5638935938477516],[127,194,76,-0.5618910305202007],[127,194,77,-0.5576980598270893],[127,194,78,-0.5523377247154713],[127,194,79,-0.5468230731785297],[127,195,64,-0.555078387260437],[127,195,65,-0.5577244460582733],[127,195,66,-0.5588730648159981],[127,195,67,-0.5586894489824772],[127,195,68,-0.5579561330378056],[127,195,69,-0.5574606731534004],[127,195,70,-0.5572692304849625],[127,195,71,-0.5575528629124165],[127,195,72,-0.5592196434736252],[127,195,73,-0.5617599152028561],[127,195,74,-0.5636810474097729],[127,195,75,-0.5638935938477516],[127,195,76,-0.5618910305202007],[127,195,77,-0.5576980598270893],[127,195,78,-0.5523377247154713],[127,195,79,-0.5468230731785297],[127,196,64,-0.555078387260437],[127,196,65,-0.5577244460582733],[127,196,66,-0.5588730648159981],[127,196,67,-0.5586894489824772],[127,196,68,-0.5579561330378056],[127,196,69,-0.5574606731534004],[127,196,70,-0.5572692304849625],[127,196,71,-0.5575528629124165],[127,196,72,-0.5592196434736252],[127,196,73,-0.5617599152028561],[127,196,74,-0.5636810474097729],[127,196,75,-0.5638935938477516],[127,196,76,-0.5618910305202007],[127,196,77,-0.5576980598270893],[127,196,78,-0.5523377247154713],[127,196,79,-0.5468230731785297],[127,197,64,-0.555078387260437],[127,197,65,-0.5577244460582733],[127,197,66,-0.5588730648159981],[127,197,67,-0.5586894489824772],[127,197,68,-0.5579561330378056],[127,197,69,-0.5574606731534004],[127,197,70,-0.5572692304849625],[127,197,71,-0.5575528629124165],[127,197,72,-0.5592196434736252],[127,197,73,-0.5617599152028561],[127,197,74,-0.5636810474097729],[127,197,75,-0.5638935938477516],[127,197,76,-0.5618910305202007],[127,197,77,-0.5576980598270893],[127,197,78,-0.5523377247154713],[127,197,79,-0.5468230731785297],[127,198,64,-0.555078387260437],[127,198,65,-0.5577244460582733],[127,198,66,-0.5588730648159981],[127,198,67,-0.5586894489824772],[127,198,68,-0.5579561330378056],[127,198,69,-0.5574606731534004],[127,198,70,-0.5572692304849625],[127,198,71,-0.5575528629124165],[127,198,72,-0.5592196434736252],[127,198,73,-0.5617599152028561],[127,198,74,-0.5636810474097729],[127,198,75,-0.5638935938477516],[127,198,76,-0.5618910305202007],[127,198,77,-0.5576980598270893],[127,198,78,-0.5523377247154713],[127,198,79,-0.5468230731785297],[127,199,64,-0.555078387260437],[127,199,65,-0.5577244460582733],[127,199,66,-0.5588730648159981],[127,199,67,-0.5586894489824772],[127,199,68,-0.5579561330378056],[127,199,69,-0.5574606731534004],[127,199,70,-0.5572692304849625],[127,199,71,-0.5575528629124165],[127,199,72,-0.5592196434736252],[127,199,73,-0.5617599152028561],[127,199,74,-0.5636810474097729],[127,199,75,-0.5638935938477516],[127,199,76,-0.5618910305202007],[127,199,77,-0.5576980598270893],[127,199,78,-0.5523377247154713],[127,199,79,-0.5468230731785297],[127,200,64,-0.555078387260437],[127,200,65,-0.5577244460582733],[127,200,66,-0.5588730648159981],[127,200,67,-0.5586894489824772],[127,200,68,-0.5579561330378056],[127,200,69,-0.5574606731534004],[127,200,70,-0.5572692304849625],[127,200,71,-0.5575528629124165],[127,200,72,-0.5592196434736252],[127,200,73,-0.5617599152028561],[127,200,74,-0.5636810474097729],[127,200,75,-0.5638935938477516],[127,200,76,-0.5618910305202007],[127,200,77,-0.5576980598270893],[127,200,78,-0.5523377247154713],[127,200,79,-0.5468230731785297],[127,201,64,-0.555078387260437],[127,201,65,-0.5577244460582733],[127,201,66,-0.5588730648159981],[127,201,67,-0.5586894489824772],[127,201,68,-0.5579561330378056],[127,201,69,-0.5574606731534004],[127,201,70,-0.5572692304849625],[127,201,71,-0.5575528629124165],[127,201,72,-0.5592196434736252],[127,201,73,-0.5617599152028561],[127,201,74,-0.5636810474097729],[127,201,75,-0.5638935938477516],[127,201,76,-0.5618910305202007],[127,201,77,-0.5576980598270893],[127,201,78,-0.5523377247154713],[127,201,79,-0.5468230731785297],[127,202,64,-0.555078387260437],[127,202,65,-0.5577244460582733],[127,202,66,-0.5588730648159981],[127,202,67,-0.5586894489824772],[127,202,68,-0.5579561330378056],[127,202,69,-0.5574606731534004],[127,202,70,-0.5572692304849625],[127,202,71,-0.5575528629124165],[127,202,72,-0.5592196434736252],[127,202,73,-0.5617599152028561],[127,202,74,-0.5636810474097729],[127,202,75,-0.5638935938477516],[127,202,76,-0.5618910305202007],[127,202,77,-0.5576980598270893],[127,202,78,-0.5523377247154713],[127,202,79,-0.5468230731785297],[127,203,64,-0.555078387260437],[127,203,65,-0.5577244460582733],[127,203,66,-0.5588730648159981],[127,203,67,-0.5586894489824772],[127,203,68,-0.5579561330378056],[127,203,69,-0.5574606731534004],[127,203,70,-0.5572692304849625],[127,203,71,-0.5575528629124165],[127,203,72,-0.5592196434736252],[127,203,73,-0.5617599152028561],[127,203,74,-0.5636810474097729],[127,203,75,-0.5638935938477516],[127,203,76,-0.5618910305202007],[127,203,77,-0.5576980598270893],[127,203,78,-0.5523377247154713],[127,203,79,-0.5468230731785297],[127,204,64,-0.555078387260437],[127,204,65,-0.5577244460582733],[127,204,66,-0.5588730648159981],[127,204,67,-0.5586894489824772],[127,204,68,-0.5579561330378056],[127,204,69,-0.5574606731534004],[127,204,70,-0.5572692304849625],[127,204,71,-0.5575528629124165],[127,204,72,-0.5592196434736252],[127,204,73,-0.5617599152028561],[127,204,74,-0.5636810474097729],[127,204,75,-0.5638935938477516],[127,204,76,-0.5618910305202007],[127,204,77,-0.5576980598270893],[127,204,78,-0.5523377247154713],[127,204,79,-0.5468230731785297],[127,205,64,-0.555078387260437],[127,205,65,-0.5577244460582733],[127,205,66,-0.5588730648159981],[127,205,67,-0.5586894489824772],[127,205,68,-0.5579561330378056],[127,205,69,-0.5574606731534004],[127,205,70,-0.5572692304849625],[127,205,71,-0.5575528629124165],[127,205,72,-0.5592196434736252],[127,205,73,-0.5617599152028561],[127,205,74,-0.5636810474097729],[127,205,75,-0.5638935938477516],[127,205,76,-0.5618910305202007],[127,205,77,-0.5576980598270893],[127,205,78,-0.5523377247154713],[127,205,79,-0.5468230731785297],[127,206,64,-0.555078387260437],[127,206,65,-0.5577244460582733],[127,206,66,-0.5588730648159981],[127,206,67,-0.5586894489824772],[127,206,68,-0.5579561330378056],[127,206,69,-0.5574606731534004],[127,206,70,-0.5572692304849625],[127,206,71,-0.5575528629124165],[127,206,72,-0.5592196434736252],[127,206,73,-0.5617599152028561],[127,206,74,-0.5636810474097729],[127,206,75,-0.5638935938477516],[127,206,76,-0.5618910305202007],[127,206,77,-0.5576980598270893],[127,206,78,-0.5523377247154713],[127,206,79,-0.5468230731785297],[127,207,64,-0.555078387260437],[127,207,65,-0.5577244460582733],[127,207,66,-0.5588730648159981],[127,207,67,-0.5586894489824772],[127,207,68,-0.5579561330378056],[127,207,69,-0.5574606731534004],[127,207,70,-0.5572692304849625],[127,207,71,-0.5575528629124165],[127,207,72,-0.5592196434736252],[127,207,73,-0.5617599152028561],[127,207,74,-0.5636810474097729],[127,207,75,-0.5638935938477516],[127,207,76,-0.5618910305202007],[127,207,77,-0.5576980598270893],[127,207,78,-0.5523377247154713],[127,207,79,-0.5468230731785297],[127,208,64,-0.555078387260437],[127,208,65,-0.5577244460582733],[127,208,66,-0.5588730648159981],[127,208,67,-0.5586894489824772],[127,208,68,-0.5579561330378056],[127,208,69,-0.5574606731534004],[127,208,70,-0.5572692304849625],[127,208,71,-0.5575528629124165],[127,208,72,-0.5592196434736252],[127,208,73,-0.5617599152028561],[127,208,74,-0.5636810474097729],[127,208,75,-0.5638935938477516],[127,208,76,-0.5618910305202007],[127,208,77,-0.5576980598270893],[127,208,78,-0.5523377247154713],[127,208,79,-0.5468230731785297],[127,209,64,-0.555078387260437],[127,209,65,-0.5577244460582733],[127,209,66,-0.5588730648159981],[127,209,67,-0.5586894489824772],[127,209,68,-0.5579561330378056],[127,209,69,-0.5574606731534004],[127,209,70,-0.5572692304849625],[127,209,71,-0.5575528629124165],[127,209,72,-0.5592196434736252],[127,209,73,-0.5617599152028561],[127,209,74,-0.5636810474097729],[127,209,75,-0.5638935938477516],[127,209,76,-0.5618910305202007],[127,209,77,-0.5576980598270893],[127,209,78,-0.5523377247154713],[127,209,79,-0.5468230731785297],[127,210,64,-0.555078387260437],[127,210,65,-0.5577244460582733],[127,210,66,-0.5588730648159981],[127,210,67,-0.5586894489824772],[127,210,68,-0.5579561330378056],[127,210,69,-0.5574606731534004],[127,210,70,-0.5572692304849625],[127,210,71,-0.5575528629124165],[127,210,72,-0.5592196434736252],[127,210,73,-0.5617599152028561],[127,210,74,-0.5636810474097729],[127,210,75,-0.5638935938477516],[127,210,76,-0.5618910305202007],[127,210,77,-0.5576980598270893],[127,210,78,-0.5523377247154713],[127,210,79,-0.5468230731785297],[127,211,64,-0.555078387260437],[127,211,65,-0.5577244460582733],[127,211,66,-0.5588730648159981],[127,211,67,-0.5586894489824772],[127,211,68,-0.5579561330378056],[127,211,69,-0.5574606731534004],[127,211,70,-0.5572692304849625],[127,211,71,-0.5575528629124165],[127,211,72,-0.5592196434736252],[127,211,73,-0.5617599152028561],[127,211,74,-0.5636810474097729],[127,211,75,-0.5638935938477516],[127,211,76,-0.5618910305202007],[127,211,77,-0.5576980598270893],[127,211,78,-0.5523377247154713],[127,211,79,-0.5468230731785297],[127,212,64,-0.555078387260437],[127,212,65,-0.5577244460582733],[127,212,66,-0.5588730648159981],[127,212,67,-0.5586894489824772],[127,212,68,-0.5579561330378056],[127,212,69,-0.5574606731534004],[127,212,70,-0.5572692304849625],[127,212,71,-0.5575528629124165],[127,212,72,-0.5592196434736252],[127,212,73,-0.5617599152028561],[127,212,74,-0.5636810474097729],[127,212,75,-0.5638935938477516],[127,212,76,-0.5618910305202007],[127,212,77,-0.5576980598270893],[127,212,78,-0.5523377247154713],[127,212,79,-0.5468230731785297],[127,213,64,-0.555078387260437],[127,213,65,-0.5577244460582733],[127,213,66,-0.5588730648159981],[127,213,67,-0.5586894489824772],[127,213,68,-0.5579561330378056],[127,213,69,-0.5574606731534004],[127,213,70,-0.5572692304849625],[127,213,71,-0.5575528629124165],[127,213,72,-0.5592196434736252],[127,213,73,-0.5617599152028561],[127,213,74,-0.5636810474097729],[127,213,75,-0.5638935938477516],[127,213,76,-0.5618910305202007],[127,213,77,-0.5576980598270893],[127,213,78,-0.5523377247154713],[127,213,79,-0.5468230731785297],[127,214,64,-0.555078387260437],[127,214,65,-0.5577244460582733],[127,214,66,-0.5588730648159981],[127,214,67,-0.5586894489824772],[127,214,68,-0.5579561330378056],[127,214,69,-0.5574606731534004],[127,214,70,-0.5572692304849625],[127,214,71,-0.5575528629124165],[127,214,72,-0.5592196434736252],[127,214,73,-0.5617599152028561],[127,214,74,-0.5636810474097729],[127,214,75,-0.5638935938477516],[127,214,76,-0.5618910305202007],[127,214,77,-0.5576980598270893],[127,214,78,-0.5523377247154713],[127,214,79,-0.5468230731785297],[127,215,64,-0.555078387260437],[127,215,65,-0.5577244460582733],[127,215,66,-0.5588730648159981],[127,215,67,-0.5586894489824772],[127,215,68,-0.5579561330378056],[127,215,69,-0.5574606731534004],[127,215,70,-0.5572692304849625],[127,215,71,-0.5575528629124165],[127,215,72,-0.5592196434736252],[127,215,73,-0.5617599152028561],[127,215,74,-0.5636810474097729],[127,215,75,-0.5638935938477516],[127,215,76,-0.5618910305202007],[127,215,77,-0.5576980598270893],[127,215,78,-0.5523377247154713],[127,215,79,-0.5468230731785297],[127,216,64,-0.555078387260437],[127,216,65,-0.5577244460582733],[127,216,66,-0.5588730648159981],[127,216,67,-0.5586894489824772],[127,216,68,-0.5579561330378056],[127,216,69,-0.5574606731534004],[127,216,70,-0.5572692304849625],[127,216,71,-0.5575528629124165],[127,216,72,-0.5592196434736252],[127,216,73,-0.5617599152028561],[127,216,74,-0.5636810474097729],[127,216,75,-0.5638935938477516],[127,216,76,-0.5618910305202007],[127,216,77,-0.5576980598270893],[127,216,78,-0.5523377247154713],[127,216,79,-0.5468230731785297],[127,217,64,-0.555078387260437],[127,217,65,-0.5577244460582733],[127,217,66,-0.5588730648159981],[127,217,67,-0.5586894489824772],[127,217,68,-0.5579561330378056],[127,217,69,-0.5574606731534004],[127,217,70,-0.5572692304849625],[127,217,71,-0.5575528629124165],[127,217,72,-0.5592196434736252],[127,217,73,-0.5617599152028561],[127,217,74,-0.5636810474097729],[127,217,75,-0.5638935938477516],[127,217,76,-0.5618910305202007],[127,217,77,-0.5576980598270893],[127,217,78,-0.5523377247154713],[127,217,79,-0.5468230731785297],[127,218,64,-0.555078387260437],[127,218,65,-0.5577244460582733],[127,218,66,-0.5588730648159981],[127,218,67,-0.5586894489824772],[127,218,68,-0.5579561330378056],[127,218,69,-0.5574606731534004],[127,218,70,-0.5572692304849625],[127,218,71,-0.5575528629124165],[127,218,72,-0.5592196434736252],[127,218,73,-0.5617599152028561],[127,218,74,-0.5636810474097729],[127,218,75,-0.5638935938477516],[127,218,76,-0.5618910305202007],[127,218,77,-0.5576980598270893],[127,218,78,-0.5523377247154713],[127,218,79,-0.5468230731785297],[127,219,64,-0.555078387260437],[127,219,65,-0.5577244460582733],[127,219,66,-0.5588730648159981],[127,219,67,-0.5586894489824772],[127,219,68,-0.5579561330378056],[127,219,69,-0.5574606731534004],[127,219,70,-0.5572692304849625],[127,219,71,-0.5575528629124165],[127,219,72,-0.5592196434736252],[127,219,73,-0.5617599152028561],[127,219,74,-0.5636810474097729],[127,219,75,-0.5638935938477516],[127,219,76,-0.5618910305202007],[127,219,77,-0.5576980598270893],[127,219,78,-0.5523377247154713],[127,219,79,-0.5468230731785297],[127,220,64,-0.555078387260437],[127,220,65,-0.5577244460582733],[127,220,66,-0.5588730648159981],[127,220,67,-0.5586894489824772],[127,220,68,-0.5579561330378056],[127,220,69,-0.5574606731534004],[127,220,70,-0.5572692304849625],[127,220,71,-0.5575528629124165],[127,220,72,-0.5592196434736252],[127,220,73,-0.5617599152028561],[127,220,74,-0.5636810474097729],[127,220,75,-0.5638935938477516],[127,220,76,-0.5618910305202007],[127,220,77,-0.5576980598270893],[127,220,78,-0.5523377247154713],[127,220,79,-0.5468230731785297],[127,221,64,-0.555078387260437],[127,221,65,-0.5577244460582733],[127,221,66,-0.5588730648159981],[127,221,67,-0.5586894489824772],[127,221,68,-0.5579561330378056],[127,221,69,-0.5574606731534004],[127,221,70,-0.5572692304849625],[127,221,71,-0.5575528629124165],[127,221,72,-0.5592196434736252],[127,221,73,-0.5617599152028561],[127,221,74,-0.5636810474097729],[127,221,75,-0.5638935938477516],[127,221,76,-0.5618910305202007],[127,221,77,-0.5576980598270893],[127,221,78,-0.5523377247154713],[127,221,79,-0.5468230731785297],[127,222,64,-0.555078387260437],[127,222,65,-0.5577244460582733],[127,222,66,-0.5588730648159981],[127,222,67,-0.5586894489824772],[127,222,68,-0.5579561330378056],[127,222,69,-0.5574606731534004],[127,222,70,-0.5572692304849625],[127,222,71,-0.5575528629124165],[127,222,72,-0.5592196434736252],[127,222,73,-0.5617599152028561],[127,222,74,-0.5636810474097729],[127,222,75,-0.5638935938477516],[127,222,76,-0.5618910305202007],[127,222,77,-0.5576980598270893],[127,222,78,-0.5523377247154713],[127,222,79,-0.5468230731785297],[127,223,64,-0.555078387260437],[127,223,65,-0.5577244460582733],[127,223,66,-0.5588730648159981],[127,223,67,-0.5586894489824772],[127,223,68,-0.5579561330378056],[127,223,69,-0.5574606731534004],[127,223,70,-0.5572692304849625],[127,223,71,-0.5575528629124165],[127,223,72,-0.5592196434736252],[127,223,73,-0.5617599152028561],[127,223,74,-0.5636810474097729],[127,223,75,-0.5638935938477516],[127,223,76,-0.5618910305202007],[127,223,77,-0.5576980598270893],[127,223,78,-0.5523377247154713],[127,223,79,-0.5468230731785297],[127,224,64,-0.555078387260437],[127,224,65,-0.5577244460582733],[127,224,66,-0.5588730648159981],[127,224,67,-0.5586894489824772],[127,224,68,-0.5579561330378056],[127,224,69,-0.5574606731534004],[127,224,70,-0.5572692304849625],[127,224,71,-0.5575528629124165],[127,224,72,-0.5592196434736252],[127,224,73,-0.5617599152028561],[127,224,74,-0.5636810474097729],[127,224,75,-0.5638935938477516],[127,224,76,-0.5618910305202007],[127,224,77,-0.5576980598270893],[127,224,78,-0.5523377247154713],[127,224,79,-0.5468230731785297],[127,225,64,-0.555078387260437],[127,225,65,-0.5577244460582733],[127,225,66,-0.5588730648159981],[127,225,67,-0.5586894489824772],[127,225,68,-0.5579561330378056],[127,225,69,-0.5574606731534004],[127,225,70,-0.5572692304849625],[127,225,71,-0.5575528629124165],[127,225,72,-0.5592196434736252],[127,225,73,-0.5617599152028561],[127,225,74,-0.5636810474097729],[127,225,75,-0.5638935938477516],[127,225,76,-0.5618910305202007],[127,225,77,-0.5576980598270893],[127,225,78,-0.5523377247154713],[127,225,79,-0.5468230731785297],[127,226,64,-0.555078387260437],[127,226,65,-0.5577244460582733],[127,226,66,-0.5588730648159981],[127,226,67,-0.5586894489824772],[127,226,68,-0.5579561330378056],[127,226,69,-0.5574606731534004],[127,226,70,-0.5572692304849625],[127,226,71,-0.5575528629124165],[127,226,72,-0.5592196434736252],[127,226,73,-0.5617599152028561],[127,226,74,-0.5636810474097729],[127,226,75,-0.5638935938477516],[127,226,76,-0.5618910305202007],[127,226,77,-0.5576980598270893],[127,226,78,-0.5523377247154713],[127,226,79,-0.5468230731785297],[127,227,64,-0.555078387260437],[127,227,65,-0.5577244460582733],[127,227,66,-0.5588730648159981],[127,227,67,-0.5586894489824772],[127,227,68,-0.5579561330378056],[127,227,69,-0.5574606731534004],[127,227,70,-0.5572692304849625],[127,227,71,-0.5575528629124165],[127,227,72,-0.5592196434736252],[127,227,73,-0.5617599152028561],[127,227,74,-0.5636810474097729],[127,227,75,-0.5638935938477516],[127,227,76,-0.5618910305202007],[127,227,77,-0.5576980598270893],[127,227,78,-0.5523377247154713],[127,227,79,-0.5468230731785297],[127,228,64,-0.555078387260437],[127,228,65,-0.5577244460582733],[127,228,66,-0.5588730648159981],[127,228,67,-0.5586894489824772],[127,228,68,-0.5579561330378056],[127,228,69,-0.5574606731534004],[127,228,70,-0.5572692304849625],[127,228,71,-0.5575528629124165],[127,228,72,-0.5592196434736252],[127,228,73,-0.5617599152028561],[127,228,74,-0.5636810474097729],[127,228,75,-0.5638935938477516],[127,228,76,-0.5618910305202007],[127,228,77,-0.5576980598270893],[127,228,78,-0.5523377247154713],[127,228,79,-0.5468230731785297],[127,229,64,-0.555078387260437],[127,229,65,-0.5577244460582733],[127,229,66,-0.5588730648159981],[127,229,67,-0.5586894489824772],[127,229,68,-0.5579561330378056],[127,229,69,-0.5574606731534004],[127,229,70,-0.5572692304849625],[127,229,71,-0.5575528629124165],[127,229,72,-0.5592196434736252],[127,229,73,-0.5617599152028561],[127,229,74,-0.5636810474097729],[127,229,75,-0.5638935938477516],[127,229,76,-0.5618910305202007],[127,229,77,-0.5576980598270893],[127,229,78,-0.5523377247154713],[127,229,79,-0.5468230731785297],[127,230,64,-0.555078387260437],[127,230,65,-0.5577244460582733],[127,230,66,-0.5588730648159981],[127,230,67,-0.5586894489824772],[127,230,68,-0.5579561330378056],[127,230,69,-0.5574606731534004],[127,230,70,-0.5572692304849625],[127,230,71,-0.5575528629124165],[127,230,72,-0.5592196434736252],[127,230,73,-0.5617599152028561],[127,230,74,-0.5636810474097729],[127,230,75,-0.5638935938477516],[127,230,76,-0.5618910305202007],[127,230,77,-0.5576980598270893],[127,230,78,-0.5523377247154713],[127,230,79,-0.5468230731785297],[127,231,64,-0.555078387260437],[127,231,65,-0.5577244460582733],[127,231,66,-0.5588730648159981],[127,231,67,-0.5586894489824772],[127,231,68,-0.5579561330378056],[127,231,69,-0.5574606731534004],[127,231,70,-0.5572692304849625],[127,231,71,-0.5575528629124165],[127,231,72,-0.5592196434736252],[127,231,73,-0.5617599152028561],[127,231,74,-0.5636810474097729],[127,231,75,-0.5638935938477516],[127,231,76,-0.5618910305202007],[127,231,77,-0.5576980598270893],[127,231,78,-0.5523377247154713],[127,231,79,-0.5468230731785297],[127,232,64,-0.555078387260437],[127,232,65,-0.5577244460582733],[127,232,66,-0.5588730648159981],[127,232,67,-0.5586894489824772],[127,232,68,-0.5579561330378056],[127,232,69,-0.5574606731534004],[127,232,70,-0.5572692304849625],[127,232,71,-0.5575528629124165],[127,232,72,-0.5592196434736252],[127,232,73,-0.5617599152028561],[127,232,74,-0.5636810474097729],[127,232,75,-0.5638935938477516],[127,232,76,-0.5618910305202007],[127,232,77,-0.5576980598270893],[127,232,78,-0.5523377247154713],[127,232,79,-0.5468230731785297],[127,233,64,-0.555078387260437],[127,233,65,-0.5577244460582733],[127,233,66,-0.5588730648159981],[127,233,67,-0.5586894489824772],[127,233,68,-0.5579561330378056],[127,233,69,-0.5574606731534004],[127,233,70,-0.5572692304849625],[127,233,71,-0.5575528629124165],[127,233,72,-0.5592196434736252],[127,233,73,-0.5617599152028561],[127,233,74,-0.5636810474097729],[127,233,75,-0.5638935938477516],[127,233,76,-0.5618910305202007],[127,233,77,-0.5576980598270893],[127,233,78,-0.5523377247154713],[127,233,79,-0.5468230731785297],[127,234,64,-0.555078387260437],[127,234,65,-0.5577244460582733],[127,234,66,-0.5588730648159981],[127,234,67,-0.5586894489824772],[127,234,68,-0.5579561330378056],[127,234,69,-0.5574606731534004],[127,234,70,-0.5572692304849625],[127,234,71,-0.5575528629124165],[127,234,72,-0.5592196434736252],[127,234,73,-0.5617599152028561],[127,234,74,-0.5636810474097729],[127,234,75,-0.5638935938477516],[127,234,76,-0.5618910305202007],[127,234,77,-0.5576980598270893],[127,234,78,-0.5523377247154713],[127,234,79,-0.5468230731785297],[127,235,64,-0.555078387260437],[127,235,65,-0.5577244460582733],[127,235,66,-0.5588730648159981],[127,235,67,-0.5586894489824772],[127,235,68,-0.5579561330378056],[127,235,69,-0.5574606731534004],[127,235,70,-0.5572692304849625],[127,235,71,-0.5575528629124165],[127,235,72,-0.5592196434736252],[127,235,73,-0.5617599152028561],[127,235,74,-0.5636810474097729],[127,235,75,-0.5638935938477516],[127,235,76,-0.5618910305202007],[127,235,77,-0.5576980598270893],[127,235,78,-0.5523377247154713],[127,235,79,-0.5468230731785297],[127,236,64,-0.555078387260437],[127,236,65,-0.5577244460582733],[127,236,66,-0.5588730648159981],[127,236,67,-0.5586894489824772],[127,236,68,-0.5579561330378056],[127,236,69,-0.5574606731534004],[127,236,70,-0.5572692304849625],[127,236,71,-0.5575528629124165],[127,236,72,-0.5592196434736252],[127,236,73,-0.5617599152028561],[127,236,74,-0.5636810474097729],[127,236,75,-0.5638935938477516],[127,236,76,-0.5618910305202007],[127,236,77,-0.5576980598270893],[127,236,78,-0.5523377247154713],[127,236,79,-0.5468230731785297],[127,237,64,-0.555078387260437],[127,237,65,-0.5577244460582733],[127,237,66,-0.5588730648159981],[127,237,67,-0.5586894489824772],[127,237,68,-0.5579561330378056],[127,237,69,-0.5574606731534004],[127,237,70,-0.5572692304849625],[127,237,71,-0.5575528629124165],[127,237,72,-0.5592196434736252],[127,237,73,-0.5617599152028561],[127,237,74,-0.5636810474097729],[127,237,75,-0.5638935938477516],[127,237,76,-0.5618910305202007],[127,237,77,-0.5576980598270893],[127,237,78,-0.5523377247154713],[127,237,79,-0.5468230731785297],[127,238,64,-0.555078387260437],[127,238,65,-0.5577244460582733],[127,238,66,-0.5588730648159981],[127,238,67,-0.5586894489824772],[127,238,68,-0.5579561330378056],[127,238,69,-0.5574606731534004],[127,238,70,-0.5572692304849625],[127,238,71,-0.5575528629124165],[127,238,72,-0.5592196434736252],[127,238,73,-0.5617599152028561],[127,238,74,-0.5636810474097729],[127,238,75,-0.5638935938477516],[127,238,76,-0.5618910305202007],[127,238,77,-0.5576980598270893],[127,238,78,-0.5523377247154713],[127,238,79,-0.5468230731785297],[127,239,64,-0.555078387260437],[127,239,65,-0.5577244460582733],[127,239,66,-0.5588730648159981],[127,239,67,-0.5586894489824772],[127,239,68,-0.5579561330378056],[127,239,69,-0.5574606731534004],[127,239,70,-0.5572692304849625],[127,239,71,-0.5575528629124165],[127,239,72,-0.5592196434736252],[127,239,73,-0.5617599152028561],[127,239,74,-0.5636810474097729],[127,239,75,-0.5638935938477516],[127,239,76,-0.5618910305202007],[127,239,77,-0.5576980598270893],[127,239,78,-0.5523377247154713],[127,239,79,-0.5468230731785297],[127,240,64,-0.555078387260437],[127,240,65,-0.5577244460582733],[127,240,66,-0.5588730648159981],[127,240,67,-0.5586894489824772],[127,240,68,-0.5579561330378056],[127,240,69,-0.5574606731534004],[127,240,70,-0.5572692304849625],[127,240,71,-0.5575528629124165],[127,240,72,-0.5592196434736252],[127,240,73,-0.5617599152028561],[127,240,74,-0.5636810474097729],[127,240,75,-0.5638935938477516],[127,240,76,-0.5618910305202007],[127,240,77,-0.5576980598270893],[127,240,78,-0.5523377247154713],[127,240,79,-0.5468230731785297],[127,241,64,-0.555078387260437],[127,241,65,-0.5577244460582733],[127,241,66,-0.5588730648159981],[127,241,67,-0.5586894489824772],[127,241,68,-0.5579561330378056],[127,241,69,-0.5574606731534004],[127,241,70,-0.5572692304849625],[127,241,71,-0.5575528629124165],[127,241,72,-0.5592196434736252],[127,241,73,-0.5617599152028561],[127,241,74,-0.5636810474097729],[127,241,75,-0.5638935938477516],[127,241,76,-0.5618910305202007],[127,241,77,-0.5576980598270893],[127,241,78,-0.5523377247154713],[127,241,79,-0.5468230731785297],[127,242,64,-0.555078387260437],[127,242,65,-0.5577244460582733],[127,242,66,-0.5588730648159981],[127,242,67,-0.5586894489824772],[127,242,68,-0.5579561330378056],[127,242,69,-0.5574606731534004],[127,242,70,-0.5572692304849625],[127,242,71,-0.5575528629124165],[127,242,72,-0.5592196434736252],[127,242,73,-0.5617599152028561],[127,242,74,-0.5636810474097729],[127,242,75,-0.5638935938477516],[127,242,76,-0.5618910305202007],[127,242,77,-0.5576980598270893],[127,242,78,-0.5523377247154713],[127,242,79,-0.5468230731785297],[127,243,64,-0.555078387260437],[127,243,65,-0.5577244460582733],[127,243,66,-0.5588730648159981],[127,243,67,-0.5586894489824772],[127,243,68,-0.5579561330378056],[127,243,69,-0.5574606731534004],[127,243,70,-0.5572692304849625],[127,243,71,-0.5575528629124165],[127,243,72,-0.5592196434736252],[127,243,73,-0.5617599152028561],[127,243,74,-0.5636810474097729],[127,243,75,-0.5638935938477516],[127,243,76,-0.5618910305202007],[127,243,77,-0.5576980598270893],[127,243,78,-0.5523377247154713],[127,243,79,-0.5468230731785297],[127,244,64,-0.555078387260437],[127,244,65,-0.5577244460582733],[127,244,66,-0.5588730648159981],[127,244,67,-0.5586894489824772],[127,244,68,-0.5579561330378056],[127,244,69,-0.5574606731534004],[127,244,70,-0.5572692304849625],[127,244,71,-0.5575528629124165],[127,244,72,-0.5592196434736252],[127,244,73,-0.5617599152028561],[127,244,74,-0.5636810474097729],[127,244,75,-0.5638935938477516],[127,244,76,-0.5618910305202007],[127,244,77,-0.5576980598270893],[127,244,78,-0.5523377247154713],[127,244,79,-0.5468230731785297],[127,245,64,-0.555078387260437],[127,245,65,-0.5577244460582733],[127,245,66,-0.5588730648159981],[127,245,67,-0.5586894489824772],[127,245,68,-0.5579561330378056],[127,245,69,-0.5574606731534004],[127,245,70,-0.5572692304849625],[127,245,71,-0.5575528629124165],[127,245,72,-0.5592196434736252],[127,245,73,-0.5617599152028561],[127,245,74,-0.5636810474097729],[127,245,75,-0.5638935938477516],[127,245,76,-0.5618910305202007],[127,245,77,-0.5576980598270893],[127,245,78,-0.5523377247154713],[127,245,79,-0.5468230731785297],[127,246,64,-0.555078387260437],[127,246,65,-0.5577244460582733],[127,246,66,-0.5588730648159981],[127,246,67,-0.5586894489824772],[127,246,68,-0.5579561330378056],[127,246,69,-0.5574606731534004],[127,246,70,-0.5572692304849625],[127,246,71,-0.5575528629124165],[127,246,72,-0.5592196434736252],[127,246,73,-0.5617599152028561],[127,246,74,-0.5636810474097729],[127,246,75,-0.5638935938477516],[127,246,76,-0.5618910305202007],[127,246,77,-0.5576980598270893],[127,246,78,-0.5523377247154713],[127,246,79,-0.5468230731785297],[127,247,64,-0.555078387260437],[127,247,65,-0.5577244460582733],[127,247,66,-0.5588730648159981],[127,247,67,-0.5586894489824772],[127,247,68,-0.5579561330378056],[127,247,69,-0.5574606731534004],[127,247,70,-0.5572692304849625],[127,247,71,-0.5575528629124165],[127,247,72,-0.5592196434736252],[127,247,73,-0.5617599152028561],[127,247,74,-0.5636810474097729],[127,247,75,-0.5638935938477516],[127,247,76,-0.5618910305202007],[127,247,77,-0.5576980598270893],[127,247,78,-0.5523377247154713],[127,247,79,-0.5468230731785297],[127,248,64,-0.555078387260437],[127,248,65,-0.5577244460582733],[127,248,66,-0.5588730648159981],[127,248,67,-0.5586894489824772],[127,248,68,-0.5579561330378056],[127,248,69,-0.5574606731534004],[127,248,70,-0.5572692304849625],[127,248,71,-0.5575528629124165],[127,248,72,-0.5592196434736252],[127,248,73,-0.5617599152028561],[127,248,74,-0.5636810474097729],[127,248,75,-0.5638935938477516],[127,248,76,-0.5618910305202007],[127,248,77,-0.5576980598270893],[127,248,78,-0.5523377247154713],[127,248,79,-0.5468230731785297],[127,249,64,-0.555078387260437],[127,249,65,-0.5577244460582733],[127,249,66,-0.5588730648159981],[127,249,67,-0.5586894489824772],[127,249,68,-0.5579561330378056],[127,249,69,-0.5574606731534004],[127,249,70,-0.5572692304849625],[127,249,71,-0.5575528629124165],[127,249,72,-0.5592196434736252],[127,249,73,-0.5617599152028561],[127,249,74,-0.5636810474097729],[127,249,75,-0.5638935938477516],[127,249,76,-0.5618910305202007],[127,249,77,-0.5576980598270893],[127,249,78,-0.5523377247154713],[127,249,79,-0.5468230731785297],[127,250,64,-0.555078387260437],[127,250,65,-0.5577244460582733],[127,250,66,-0.5588730648159981],[127,250,67,-0.5586894489824772],[127,250,68,-0.5579561330378056],[127,250,69,-0.5574606731534004],[127,250,70,-0.5572692304849625],[127,250,71,-0.5575528629124165],[127,250,72,-0.5592196434736252],[127,250,73,-0.5617599152028561],[127,250,74,-0.5636810474097729],[127,250,75,-0.5638935938477516],[127,250,76,-0.5618910305202007],[127,250,77,-0.5576980598270893],[127,250,78,-0.5523377247154713],[127,250,79,-0.5468230731785297],[127,251,64,-0.555078387260437],[127,251,65,-0.5577244460582733],[127,251,66,-0.5588730648159981],[127,251,67,-0.5586894489824772],[127,251,68,-0.5579561330378056],[127,251,69,-0.5574606731534004],[127,251,70,-0.5572692304849625],[127,251,71,-0.5575528629124165],[127,251,72,-0.5592196434736252],[127,251,73,-0.5617599152028561],[127,251,74,-0.5636810474097729],[127,251,75,-0.5638935938477516],[127,251,76,-0.5618910305202007],[127,251,77,-0.5576980598270893],[127,251,78,-0.5523377247154713],[127,251,79,-0.5468230731785297],[127,252,64,-0.555078387260437],[127,252,65,-0.5577244460582733],[127,252,66,-0.5588730648159981],[127,252,67,-0.5586894489824772],[127,252,68,-0.5579561330378056],[127,252,69,-0.5574606731534004],[127,252,70,-0.5572692304849625],[127,252,71,-0.5575528629124165],[127,252,72,-0.5592196434736252],[127,252,73,-0.5617599152028561],[127,252,74,-0.5636810474097729],[127,252,75,-0.5638935938477516],[127,252,76,-0.5618910305202007],[127,252,77,-0.5576980598270893],[127,252,78,-0.5523377247154713],[127,252,79,-0.5468230731785297],[127,253,64,-0.555078387260437],[127,253,65,-0.5577244460582733],[127,253,66,-0.5588730648159981],[127,253,67,-0.5586894489824772],[127,253,68,-0.5579561330378056],[127,253,69,-0.5574606731534004],[127,253,70,-0.5572692304849625],[127,253,71,-0.5575528629124165],[127,253,72,-0.5592196434736252],[127,253,73,-0.5617599152028561],[127,253,74,-0.5636810474097729],[127,253,75,-0.5638935938477516],[127,253,76,-0.5618910305202007],[127,253,77,-0.5576980598270893],[127,253,78,-0.5523377247154713],[127,253,79,-0.5468230731785297],[127,254,64,-0.555078387260437],[127,254,65,-0.5577244460582733],[127,254,66,-0.5588730648159981],[127,254,67,-0.5586894489824772],[127,254,68,-0.5579561330378056],[127,254,69,-0.5574606731534004],[127,254,70,-0.5572692304849625],[127,254,71,-0.5575528629124165],[127,254,72,-0.5592196434736252],[127,254,73,-0.5617599152028561],[127,254,74,-0.5636810474097729],[127,254,75,-0.5638935938477516],[127,254,76,-0.5618910305202007],[127,254,77,-0.5576980598270893],[127,254,78,-0.5523377247154713],[127,254,79,-0.5468230731785297],[127,255,64,-0.555078387260437],[127,255,65,-0.5577244460582733],[127,255,66,-0.5588730648159981],[127,255,67,-0.5586894489824772],[127,255,68,-0.5579561330378056],[127,255,69,-0.5574606731534004],[127,255,70,-0.5572692304849625],[127,255,71,-0.5575528629124165],[127,255,72,-0.5592196434736252],[127,255,73,-0.5617599152028561],[127,255,74,-0.5636810474097729],[127,255,75,-0.5638935938477516],[127,255,76,-0.5618910305202007],[127,255,77,-0.5576980598270893],[127,255,78,-0.5523377247154713],[127,255,79,-0.5468230731785297],[127,256,64,-0.555078387260437],[127,256,65,-0.5577244460582733],[127,256,66,-0.5588730648159981],[127,256,67,-0.5586894489824772],[127,256,68,-0.5579561330378056],[127,256,69,-0.5574606731534004],[127,256,70,-0.5572692304849625],[127,256,71,-0.5575528629124165],[127,256,72,-0.5592196434736252],[127,256,73,-0.5617599152028561],[127,256,74,-0.5636810474097729],[127,256,75,-0.5638935938477516],[127,256,76,-0.5618910305202007],[127,256,77,-0.5576980598270893],[127,256,78,-0.5523377247154713],[127,256,79,-0.5468230731785297],[127,257,64,-0.555078387260437],[127,257,65,-0.5577244460582733],[127,257,66,-0.5588730648159981],[127,257,67,-0.5586894489824772],[127,257,68,-0.5579561330378056],[127,257,69,-0.5574606731534004],[127,257,70,-0.5572692304849625],[127,257,71,-0.5575528629124165],[127,257,72,-0.5592196434736252],[127,257,73,-0.5617599152028561],[127,257,74,-0.5636810474097729],[127,257,75,-0.5638935938477516],[127,257,76,-0.5618910305202007],[127,257,77,-0.5576980598270893],[127,257,78,-0.5523377247154713],[127,257,79,-0.5468230731785297],[127,258,64,-0.555078387260437],[127,258,65,-0.5577244460582733],[127,258,66,-0.5588730648159981],[127,258,67,-0.5586894489824772],[127,258,68,-0.5579561330378056],[127,258,69,-0.5574606731534004],[127,258,70,-0.5572692304849625],[127,258,71,-0.5575528629124165],[127,258,72,-0.5592196434736252],[127,258,73,-0.5617599152028561],[127,258,74,-0.5636810474097729],[127,258,75,-0.5638935938477516],[127,258,76,-0.5618910305202007],[127,258,77,-0.5576980598270893],[127,258,78,-0.5523377247154713],[127,258,79,-0.5468230731785297],[127,259,64,-0.555078387260437],[127,259,65,-0.5577244460582733],[127,259,66,-0.5588730648159981],[127,259,67,-0.5586894489824772],[127,259,68,-0.5579561330378056],[127,259,69,-0.5574606731534004],[127,259,70,-0.5572692304849625],[127,259,71,-0.5575528629124165],[127,259,72,-0.5592196434736252],[127,259,73,-0.5617599152028561],[127,259,74,-0.5636810474097729],[127,259,75,-0.5638935938477516],[127,259,76,-0.5618910305202007],[127,259,77,-0.5576980598270893],[127,259,78,-0.5523377247154713],[127,259,79,-0.5468230731785297],[127,260,64,-0.555078387260437],[127,260,65,-0.5577244460582733],[127,260,66,-0.5588730648159981],[127,260,67,-0.5586894489824772],[127,260,68,-0.5579561330378056],[127,260,69,-0.5574606731534004],[127,260,70,-0.5572692304849625],[127,260,71,-0.5575528629124165],[127,260,72,-0.5592196434736252],[127,260,73,-0.5617599152028561],[127,260,74,-0.5636810474097729],[127,260,75,-0.5638935938477516],[127,260,76,-0.5618910305202007],[127,260,77,-0.5576980598270893],[127,260,78,-0.5523377247154713],[127,260,79,-0.5468230731785297],[127,261,64,-0.555078387260437],[127,261,65,-0.5577244460582733],[127,261,66,-0.5588730648159981],[127,261,67,-0.5586894489824772],[127,261,68,-0.5579561330378056],[127,261,69,-0.5574606731534004],[127,261,70,-0.5572692304849625],[127,261,71,-0.5575528629124165],[127,261,72,-0.5592196434736252],[127,261,73,-0.5617599152028561],[127,261,74,-0.5636810474097729],[127,261,75,-0.5638935938477516],[127,261,76,-0.5618910305202007],[127,261,77,-0.5576980598270893],[127,261,78,-0.5523377247154713],[127,261,79,-0.5468230731785297],[127,262,64,-0.555078387260437],[127,262,65,-0.5577244460582733],[127,262,66,-0.5588730648159981],[127,262,67,-0.5586894489824772],[127,262,68,-0.5579561330378056],[127,262,69,-0.5574606731534004],[127,262,70,-0.5572692304849625],[127,262,71,-0.5575528629124165],[127,262,72,-0.5592196434736252],[127,262,73,-0.5617599152028561],[127,262,74,-0.5636810474097729],[127,262,75,-0.5638935938477516],[127,262,76,-0.5618910305202007],[127,262,77,-0.5576980598270893],[127,262,78,-0.5523377247154713],[127,262,79,-0.5468230731785297],[127,263,64,-0.555078387260437],[127,263,65,-0.5577244460582733],[127,263,66,-0.5588730648159981],[127,263,67,-0.5586894489824772],[127,263,68,-0.5579561330378056],[127,263,69,-0.5574606731534004],[127,263,70,-0.5572692304849625],[127,263,71,-0.5575528629124165],[127,263,72,-0.5592196434736252],[127,263,73,-0.5617599152028561],[127,263,74,-0.5636810474097729],[127,263,75,-0.5638935938477516],[127,263,76,-0.5618910305202007],[127,263,77,-0.5576980598270893],[127,263,78,-0.5523377247154713],[127,263,79,-0.5468230731785297],[127,264,64,-0.555078387260437],[127,264,65,-0.5577244460582733],[127,264,66,-0.5588730648159981],[127,264,67,-0.5586894489824772],[127,264,68,-0.5579561330378056],[127,264,69,-0.5574606731534004],[127,264,70,-0.5572692304849625],[127,264,71,-0.5575528629124165],[127,264,72,-0.5592196434736252],[127,264,73,-0.5617599152028561],[127,264,74,-0.5636810474097729],[127,264,75,-0.5638935938477516],[127,264,76,-0.5618910305202007],[127,264,77,-0.5576980598270893],[127,264,78,-0.5523377247154713],[127,264,79,-0.5468230731785297],[127,265,64,-0.555078387260437],[127,265,65,-0.5577244460582733],[127,265,66,-0.5588730648159981],[127,265,67,-0.5586894489824772],[127,265,68,-0.5579561330378056],[127,265,69,-0.5574606731534004],[127,265,70,-0.5572692304849625],[127,265,71,-0.5575528629124165],[127,265,72,-0.5592196434736252],[127,265,73,-0.5617599152028561],[127,265,74,-0.5636810474097729],[127,265,75,-0.5638935938477516],[127,265,76,-0.5618910305202007],[127,265,77,-0.5576980598270893],[127,265,78,-0.5523377247154713],[127,265,79,-0.5468230731785297],[127,266,64,-0.555078387260437],[127,266,65,-0.5577244460582733],[127,266,66,-0.5588730648159981],[127,266,67,-0.5586894489824772],[127,266,68,-0.5579561330378056],[127,266,69,-0.5574606731534004],[127,266,70,-0.5572692304849625],[127,266,71,-0.5575528629124165],[127,266,72,-0.5592196434736252],[127,266,73,-0.5617599152028561],[127,266,74,-0.5636810474097729],[127,266,75,-0.5638935938477516],[127,266,76,-0.5618910305202007],[127,266,77,-0.5576980598270893],[127,266,78,-0.5523377247154713],[127,266,79,-0.5468230731785297],[127,267,64,-0.555078387260437],[127,267,65,-0.5577244460582733],[127,267,66,-0.5588730648159981],[127,267,67,-0.5586894489824772],[127,267,68,-0.5579561330378056],[127,267,69,-0.5574606731534004],[127,267,70,-0.5572692304849625],[127,267,71,-0.5575528629124165],[127,267,72,-0.5592196434736252],[127,267,73,-0.5617599152028561],[127,267,74,-0.5636810474097729],[127,267,75,-0.5638935938477516],[127,267,76,-0.5618910305202007],[127,267,77,-0.5576980598270893],[127,267,78,-0.5523377247154713],[127,267,79,-0.5468230731785297],[127,268,64,-0.555078387260437],[127,268,65,-0.5577244460582733],[127,268,66,-0.5588730648159981],[127,268,67,-0.5586894489824772],[127,268,68,-0.5579561330378056],[127,268,69,-0.5574606731534004],[127,268,70,-0.5572692304849625],[127,268,71,-0.5575528629124165],[127,268,72,-0.5592196434736252],[127,268,73,-0.5617599152028561],[127,268,74,-0.5636810474097729],[127,268,75,-0.5638935938477516],[127,268,76,-0.5618910305202007],[127,268,77,-0.5576980598270893],[127,268,78,-0.5523377247154713],[127,268,79,-0.5468230731785297],[127,269,64,-0.555078387260437],[127,269,65,-0.5577244460582733],[127,269,66,-0.5588730648159981],[127,269,67,-0.5586894489824772],[127,269,68,-0.5579561330378056],[127,269,69,-0.5574606731534004],[127,269,70,-0.5572692304849625],[127,269,71,-0.5575528629124165],[127,269,72,-0.5592196434736252],[127,269,73,-0.5617599152028561],[127,269,74,-0.5636810474097729],[127,269,75,-0.5638935938477516],[127,269,76,-0.5618910305202007],[127,269,77,-0.5576980598270893],[127,269,78,-0.5523377247154713],[127,269,79,-0.5468230731785297],[127,270,64,-0.555078387260437],[127,270,65,-0.5577244460582733],[127,270,66,-0.5588730648159981],[127,270,67,-0.5586894489824772],[127,270,68,-0.5579561330378056],[127,270,69,-0.5574606731534004],[127,270,70,-0.5572692304849625],[127,270,71,-0.5575528629124165],[127,270,72,-0.5592196434736252],[127,270,73,-0.5617599152028561],[127,270,74,-0.5636810474097729],[127,270,75,-0.5638935938477516],[127,270,76,-0.5618910305202007],[127,270,77,-0.5576980598270893],[127,270,78,-0.5523377247154713],[127,270,79,-0.5468230731785297],[127,271,64,-0.555078387260437],[127,271,65,-0.5577244460582733],[127,271,66,-0.5588730648159981],[127,271,67,-0.5586894489824772],[127,271,68,-0.5579561330378056],[127,271,69,-0.5574606731534004],[127,271,70,-0.5572692304849625],[127,271,71,-0.5575528629124165],[127,271,72,-0.5592196434736252],[127,271,73,-0.5617599152028561],[127,271,74,-0.5636810474097729],[127,271,75,-0.5638935938477516],[127,271,76,-0.5618910305202007],[127,271,77,-0.5576980598270893],[127,271,78,-0.5523377247154713],[127,271,79,-0.5468230731785297],[127,272,64,-0.555078387260437],[127,272,65,-0.5577244460582733],[127,272,66,-0.5588730648159981],[127,272,67,-0.5586894489824772],[127,272,68,-0.5579561330378056],[127,272,69,-0.5574606731534004],[127,272,70,-0.5572692304849625],[127,272,71,-0.5575528629124165],[127,272,72,-0.5592196434736252],[127,272,73,-0.5617599152028561],[127,272,74,-0.5636810474097729],[127,272,75,-0.5638935938477516],[127,272,76,-0.5618910305202007],[127,272,77,-0.5576980598270893],[127,272,78,-0.5523377247154713],[127,272,79,-0.5468230731785297],[127,273,64,-0.555078387260437],[127,273,65,-0.5577244460582733],[127,273,66,-0.5588730648159981],[127,273,67,-0.5586894489824772],[127,273,68,-0.5579561330378056],[127,273,69,-0.5574606731534004],[127,273,70,-0.5572692304849625],[127,273,71,-0.5575528629124165],[127,273,72,-0.5592196434736252],[127,273,73,-0.5617599152028561],[127,273,74,-0.5636810474097729],[127,273,75,-0.5638935938477516],[127,273,76,-0.5618910305202007],[127,273,77,-0.5576980598270893],[127,273,78,-0.5523377247154713],[127,273,79,-0.5468230731785297],[127,274,64,-0.555078387260437],[127,274,65,-0.5577244460582733],[127,274,66,-0.5588730648159981],[127,274,67,-0.5586894489824772],[127,274,68,-0.5579561330378056],[127,274,69,-0.5574606731534004],[127,274,70,-0.5572692304849625],[127,274,71,-0.5575528629124165],[127,274,72,-0.5592196434736252],[127,274,73,-0.5617599152028561],[127,274,74,-0.5636810474097729],[127,274,75,-0.5638935938477516],[127,274,76,-0.5618910305202007],[127,274,77,-0.5576980598270893],[127,274,78,-0.5523377247154713],[127,274,79,-0.5468230731785297],[127,275,64,-0.555078387260437],[127,275,65,-0.5577244460582733],[127,275,66,-0.5588730648159981],[127,275,67,-0.5586894489824772],[127,275,68,-0.5579561330378056],[127,275,69,-0.5574606731534004],[127,275,70,-0.5572692304849625],[127,275,71,-0.5575528629124165],[127,275,72,-0.5592196434736252],[127,275,73,-0.5617599152028561],[127,275,74,-0.5636810474097729],[127,275,75,-0.5638935938477516],[127,275,76,-0.5618910305202007],[127,275,77,-0.5576980598270893],[127,275,78,-0.5523377247154713],[127,275,79,-0.5468230731785297],[127,276,64,-0.555078387260437],[127,276,65,-0.5577244460582733],[127,276,66,-0.5588730648159981],[127,276,67,-0.5586894489824772],[127,276,68,-0.5579561330378056],[127,276,69,-0.5574606731534004],[127,276,70,-0.5572692304849625],[127,276,71,-0.5575528629124165],[127,276,72,-0.5592196434736252],[127,276,73,-0.5617599152028561],[127,276,74,-0.5636810474097729],[127,276,75,-0.5638935938477516],[127,276,76,-0.5618910305202007],[127,276,77,-0.5576980598270893],[127,276,78,-0.5523377247154713],[127,276,79,-0.5468230731785297],[127,277,64,-0.555078387260437],[127,277,65,-0.5577244460582733],[127,277,66,-0.5588730648159981],[127,277,67,-0.5586894489824772],[127,277,68,-0.5579561330378056],[127,277,69,-0.5574606731534004],[127,277,70,-0.5572692304849625],[127,277,71,-0.5575528629124165],[127,277,72,-0.5592196434736252],[127,277,73,-0.5617599152028561],[127,277,74,-0.5636810474097729],[127,277,75,-0.5638935938477516],[127,277,76,-0.5618910305202007],[127,277,77,-0.5576980598270893],[127,277,78,-0.5523377247154713],[127,277,79,-0.5468230731785297],[127,278,64,-0.555078387260437],[127,278,65,-0.5577244460582733],[127,278,66,-0.5588730648159981],[127,278,67,-0.5586894489824772],[127,278,68,-0.5579561330378056],[127,278,69,-0.5574606731534004],[127,278,70,-0.5572692304849625],[127,278,71,-0.5575528629124165],[127,278,72,-0.5592196434736252],[127,278,73,-0.5617599152028561],[127,278,74,-0.5636810474097729],[127,278,75,-0.5638935938477516],[127,278,76,-0.5618910305202007],[127,278,77,-0.5576980598270893],[127,278,78,-0.5523377247154713],[127,278,79,-0.5468230731785297],[127,279,64,-0.555078387260437],[127,279,65,-0.5577244460582733],[127,279,66,-0.5588730648159981],[127,279,67,-0.5586894489824772],[127,279,68,-0.5579561330378056],[127,279,69,-0.5574606731534004],[127,279,70,-0.5572692304849625],[127,279,71,-0.5575528629124165],[127,279,72,-0.5592196434736252],[127,279,73,-0.5617599152028561],[127,279,74,-0.5636810474097729],[127,279,75,-0.5638935938477516],[127,279,76,-0.5618910305202007],[127,279,77,-0.5576980598270893],[127,279,78,-0.5523377247154713],[127,279,79,-0.5468230731785297],[127,280,64,-0.555078387260437],[127,280,65,-0.5577244460582733],[127,280,66,-0.5588730648159981],[127,280,67,-0.5586894489824772],[127,280,68,-0.5579561330378056],[127,280,69,-0.5574606731534004],[127,280,70,-0.5572692304849625],[127,280,71,-0.5575528629124165],[127,280,72,-0.5592196434736252],[127,280,73,-0.5617599152028561],[127,280,74,-0.5636810474097729],[127,280,75,-0.5638935938477516],[127,280,76,-0.5618910305202007],[127,280,77,-0.5576980598270893],[127,280,78,-0.5523377247154713],[127,280,79,-0.5468230731785297],[127,281,64,-0.555078387260437],[127,281,65,-0.5577244460582733],[127,281,66,-0.5588730648159981],[127,281,67,-0.5586894489824772],[127,281,68,-0.5579561330378056],[127,281,69,-0.5574606731534004],[127,281,70,-0.5572692304849625],[127,281,71,-0.5575528629124165],[127,281,72,-0.5592196434736252],[127,281,73,-0.5617599152028561],[127,281,74,-0.5636810474097729],[127,281,75,-0.5638935938477516],[127,281,76,-0.5618910305202007],[127,281,77,-0.5576980598270893],[127,281,78,-0.5523377247154713],[127,281,79,-0.5468230731785297],[127,282,64,-0.555078387260437],[127,282,65,-0.5577244460582733],[127,282,66,-0.5588730648159981],[127,282,67,-0.5586894489824772],[127,282,68,-0.5579561330378056],[127,282,69,-0.5574606731534004],[127,282,70,-0.5572692304849625],[127,282,71,-0.5575528629124165],[127,282,72,-0.5592196434736252],[127,282,73,-0.5617599152028561],[127,282,74,-0.5636810474097729],[127,282,75,-0.5638935938477516],[127,282,76,-0.5618910305202007],[127,282,77,-0.5576980598270893],[127,282,78,-0.5523377247154713],[127,282,79,-0.5468230731785297],[127,283,64,-0.555078387260437],[127,283,65,-0.5577244460582733],[127,283,66,-0.5588730648159981],[127,283,67,-0.5586894489824772],[127,283,68,-0.5579561330378056],[127,283,69,-0.5574606731534004],[127,283,70,-0.5572692304849625],[127,283,71,-0.5575528629124165],[127,283,72,-0.5592196434736252],[127,283,73,-0.5617599152028561],[127,283,74,-0.5636810474097729],[127,283,75,-0.5638935938477516],[127,283,76,-0.5618910305202007],[127,283,77,-0.5576980598270893],[127,283,78,-0.5523377247154713],[127,283,79,-0.5468230731785297],[127,284,64,-0.555078387260437],[127,284,65,-0.5577244460582733],[127,284,66,-0.5588730648159981],[127,284,67,-0.5586894489824772],[127,284,68,-0.5579561330378056],[127,284,69,-0.5574606731534004],[127,284,70,-0.5572692304849625],[127,284,71,-0.5575528629124165],[127,284,72,-0.5592196434736252],[127,284,73,-0.5617599152028561],[127,284,74,-0.5636810474097729],[127,284,75,-0.5638935938477516],[127,284,76,-0.5618910305202007],[127,284,77,-0.5576980598270893],[127,284,78,-0.5523377247154713],[127,284,79,-0.5468230731785297],[127,285,64,-0.555078387260437],[127,285,65,-0.5577244460582733],[127,285,66,-0.5588730648159981],[127,285,67,-0.5586894489824772],[127,285,68,-0.5579561330378056],[127,285,69,-0.5574606731534004],[127,285,70,-0.5572692304849625],[127,285,71,-0.5575528629124165],[127,285,72,-0.5592196434736252],[127,285,73,-0.5617599152028561],[127,285,74,-0.5636810474097729],[127,285,75,-0.5638935938477516],[127,285,76,-0.5618910305202007],[127,285,77,-0.5576980598270893],[127,285,78,-0.5523377247154713],[127,285,79,-0.5468230731785297],[127,286,64,-0.555078387260437],[127,286,65,-0.5577244460582733],[127,286,66,-0.5588730648159981],[127,286,67,-0.5586894489824772],[127,286,68,-0.5579561330378056],[127,286,69,-0.5574606731534004],[127,286,70,-0.5572692304849625],[127,286,71,-0.5575528629124165],[127,286,72,-0.5592196434736252],[127,286,73,-0.5617599152028561],[127,286,74,-0.5636810474097729],[127,286,75,-0.5638935938477516],[127,286,76,-0.5618910305202007],[127,286,77,-0.5576980598270893],[127,286,78,-0.5523377247154713],[127,286,79,-0.5468230731785297],[127,287,64,-0.555078387260437],[127,287,65,-0.5577244460582733],[127,287,66,-0.5588730648159981],[127,287,67,-0.5586894489824772],[127,287,68,-0.5579561330378056],[127,287,69,-0.5574606731534004],[127,287,70,-0.5572692304849625],[127,287,71,-0.5575528629124165],[127,287,72,-0.5592196434736252],[127,287,73,-0.5617599152028561],[127,287,74,-0.5636810474097729],[127,287,75,-0.5638935938477516],[127,287,76,-0.5618910305202007],[127,287,77,-0.5576980598270893],[127,287,78,-0.5523377247154713],[127,287,79,-0.5468230731785297],[127,288,64,-0.555078387260437],[127,288,65,-0.5577244460582733],[127,288,66,-0.5588730648159981],[127,288,67,-0.5586894489824772],[127,288,68,-0.5579561330378056],[127,288,69,-0.5574606731534004],[127,288,70,-0.5572692304849625],[127,288,71,-0.5575528629124165],[127,288,72,-0.5592196434736252],[127,288,73,-0.5617599152028561],[127,288,74,-0.5636810474097729],[127,288,75,-0.5638935938477516],[127,288,76,-0.5618910305202007],[127,288,77,-0.5576980598270893],[127,288,78,-0.5523377247154713],[127,288,79,-0.5468230731785297],[127,289,64,-0.555078387260437],[127,289,65,-0.5577244460582733],[127,289,66,-0.5588730648159981],[127,289,67,-0.5586894489824772],[127,289,68,-0.5579561330378056],[127,289,69,-0.5574606731534004],[127,289,70,-0.5572692304849625],[127,289,71,-0.5575528629124165],[127,289,72,-0.5592196434736252],[127,289,73,-0.5617599152028561],[127,289,74,-0.5636810474097729],[127,289,75,-0.5638935938477516],[127,289,76,-0.5618910305202007],[127,289,77,-0.5576980598270893],[127,289,78,-0.5523377247154713],[127,289,79,-0.5468230731785297],[127,290,64,-0.555078387260437],[127,290,65,-0.5577244460582733],[127,290,66,-0.5588730648159981],[127,290,67,-0.5586894489824772],[127,290,68,-0.5579561330378056],[127,290,69,-0.5574606731534004],[127,290,70,-0.5572692304849625],[127,290,71,-0.5575528629124165],[127,290,72,-0.5592196434736252],[127,290,73,-0.5617599152028561],[127,290,74,-0.5636810474097729],[127,290,75,-0.5638935938477516],[127,290,76,-0.5618910305202007],[127,290,77,-0.5576980598270893],[127,290,78,-0.5523377247154713],[127,290,79,-0.5468230731785297],[127,291,64,-0.555078387260437],[127,291,65,-0.5577244460582733],[127,291,66,-0.5588730648159981],[127,291,67,-0.5586894489824772],[127,291,68,-0.5579561330378056],[127,291,69,-0.5574606731534004],[127,291,70,-0.5572692304849625],[127,291,71,-0.5575528629124165],[127,291,72,-0.5592196434736252],[127,291,73,-0.5617599152028561],[127,291,74,-0.5636810474097729],[127,291,75,-0.5638935938477516],[127,291,76,-0.5618910305202007],[127,291,77,-0.5576980598270893],[127,291,78,-0.5523377247154713],[127,291,79,-0.5468230731785297],[127,292,64,-0.555078387260437],[127,292,65,-0.5577244460582733],[127,292,66,-0.5588730648159981],[127,292,67,-0.5586894489824772],[127,292,68,-0.5579561330378056],[127,292,69,-0.5574606731534004],[127,292,70,-0.5572692304849625],[127,292,71,-0.5575528629124165],[127,292,72,-0.5592196434736252],[127,292,73,-0.5617599152028561],[127,292,74,-0.5636810474097729],[127,292,75,-0.5638935938477516],[127,292,76,-0.5618910305202007],[127,292,77,-0.5576980598270893],[127,292,78,-0.5523377247154713],[127,292,79,-0.5468230731785297],[127,293,64,-0.555078387260437],[127,293,65,-0.5577244460582733],[127,293,66,-0.5588730648159981],[127,293,67,-0.5586894489824772],[127,293,68,-0.5579561330378056],[127,293,69,-0.5574606731534004],[127,293,70,-0.5572692304849625],[127,293,71,-0.5575528629124165],[127,293,72,-0.5592196434736252],[127,293,73,-0.5617599152028561],[127,293,74,-0.5636810474097729],[127,293,75,-0.5638935938477516],[127,293,76,-0.5618910305202007],[127,293,77,-0.5576980598270893],[127,293,78,-0.5523377247154713],[127,293,79,-0.5468230731785297],[127,294,64,-0.555078387260437],[127,294,65,-0.5577244460582733],[127,294,66,-0.5588730648159981],[127,294,67,-0.5586894489824772],[127,294,68,-0.5579561330378056],[127,294,69,-0.5574606731534004],[127,294,70,-0.5572692304849625],[127,294,71,-0.5575528629124165],[127,294,72,-0.5592196434736252],[127,294,73,-0.5617599152028561],[127,294,74,-0.5636810474097729],[127,294,75,-0.5638935938477516],[127,294,76,-0.5618910305202007],[127,294,77,-0.5576980598270893],[127,294,78,-0.5523377247154713],[127,294,79,-0.5468230731785297],[127,295,64,-0.555078387260437],[127,295,65,-0.5577244460582733],[127,295,66,-0.5588730648159981],[127,295,67,-0.5586894489824772],[127,295,68,-0.5579561330378056],[127,295,69,-0.5574606731534004],[127,295,70,-0.5572692304849625],[127,295,71,-0.5575528629124165],[127,295,72,-0.5592196434736252],[127,295,73,-0.5617599152028561],[127,295,74,-0.5636810474097729],[127,295,75,-0.5638935938477516],[127,295,76,-0.5618910305202007],[127,295,77,-0.5576980598270893],[127,295,78,-0.5523377247154713],[127,295,79,-0.5468230731785297],[127,296,64,-0.555078387260437],[127,296,65,-0.5577244460582733],[127,296,66,-0.5588730648159981],[127,296,67,-0.5586894489824772],[127,296,68,-0.5579561330378056],[127,296,69,-0.5574606731534004],[127,296,70,-0.5572692304849625],[127,296,71,-0.5575528629124165],[127,296,72,-0.5592196434736252],[127,296,73,-0.5617599152028561],[127,296,74,-0.5636810474097729],[127,296,75,-0.5638935938477516],[127,296,76,-0.5618910305202007],[127,296,77,-0.5576980598270893],[127,296,78,-0.5523377247154713],[127,296,79,-0.5468230731785297],[127,297,64,-0.555078387260437],[127,297,65,-0.5577244460582733],[127,297,66,-0.5588730648159981],[127,297,67,-0.5586894489824772],[127,297,68,-0.5579561330378056],[127,297,69,-0.5574606731534004],[127,297,70,-0.5572692304849625],[127,297,71,-0.5575528629124165],[127,297,72,-0.5592196434736252],[127,297,73,-0.5617599152028561],[127,297,74,-0.5636810474097729],[127,297,75,-0.5638935938477516],[127,297,76,-0.5618910305202007],[127,297,77,-0.5576980598270893],[127,297,78,-0.5523377247154713],[127,297,79,-0.5468230731785297],[127,298,64,-0.555078387260437],[127,298,65,-0.5577244460582733],[127,298,66,-0.5588730648159981],[127,298,67,-0.5586894489824772],[127,298,68,-0.5579561330378056],[127,298,69,-0.5574606731534004],[127,298,70,-0.5572692304849625],[127,298,71,-0.5575528629124165],[127,298,72,-0.5592196434736252],[127,298,73,-0.5617599152028561],[127,298,74,-0.5636810474097729],[127,298,75,-0.5638935938477516],[127,298,76,-0.5618910305202007],[127,298,77,-0.5576980598270893],[127,298,78,-0.5523377247154713],[127,298,79,-0.5468230731785297],[127,299,64,-0.555078387260437],[127,299,65,-0.5577244460582733],[127,299,66,-0.5588730648159981],[127,299,67,-0.5586894489824772],[127,299,68,-0.5579561330378056],[127,299,69,-0.5574606731534004],[127,299,70,-0.5572692304849625],[127,299,71,-0.5575528629124165],[127,299,72,-0.5592196434736252],[127,299,73,-0.5617599152028561],[127,299,74,-0.5636810474097729],[127,299,75,-0.5638935938477516],[127,299,76,-0.5618910305202007],[127,299,77,-0.5576980598270893],[127,299,78,-0.5523377247154713],[127,299,79,-0.5468230731785297],[127,300,64,-0.555078387260437],[127,300,65,-0.5577244460582733],[127,300,66,-0.5588730648159981],[127,300,67,-0.5586894489824772],[127,300,68,-0.5579561330378056],[127,300,69,-0.5574606731534004],[127,300,70,-0.5572692304849625],[127,300,71,-0.5575528629124165],[127,300,72,-0.5592196434736252],[127,300,73,-0.5617599152028561],[127,300,74,-0.5636810474097729],[127,300,75,-0.5638935938477516],[127,300,76,-0.5618910305202007],[127,300,77,-0.5576980598270893],[127,300,78,-0.5523377247154713],[127,300,79,-0.5468230731785297],[127,301,64,-0.555078387260437],[127,301,65,-0.5577244460582733],[127,301,66,-0.5588730648159981],[127,301,67,-0.5586894489824772],[127,301,68,-0.5579561330378056],[127,301,69,-0.5574606731534004],[127,301,70,-0.5572692304849625],[127,301,71,-0.5575528629124165],[127,301,72,-0.5592196434736252],[127,301,73,-0.5617599152028561],[127,301,74,-0.5636810474097729],[127,301,75,-0.5638935938477516],[127,301,76,-0.5618910305202007],[127,301,77,-0.5576980598270893],[127,301,78,-0.5523377247154713],[127,301,79,-0.5468230731785297],[127,302,64,-0.555078387260437],[127,302,65,-0.5577244460582733],[127,302,66,-0.5588730648159981],[127,302,67,-0.5586894489824772],[127,302,68,-0.5579561330378056],[127,302,69,-0.5574606731534004],[127,302,70,-0.5572692304849625],[127,302,71,-0.5575528629124165],[127,302,72,-0.5592196434736252],[127,302,73,-0.5617599152028561],[127,302,74,-0.5636810474097729],[127,302,75,-0.5638935938477516],[127,302,76,-0.5618910305202007],[127,302,77,-0.5576980598270893],[127,302,78,-0.5523377247154713],[127,302,79,-0.5468230731785297],[127,303,64,-0.555078387260437],[127,303,65,-0.5577244460582733],[127,303,66,-0.5588730648159981],[127,303,67,-0.5586894489824772],[127,303,68,-0.5579561330378056],[127,303,69,-0.5574606731534004],[127,303,70,-0.5572692304849625],[127,303,71,-0.5575528629124165],[127,303,72,-0.5592196434736252],[127,303,73,-0.5617599152028561],[127,303,74,-0.5636810474097729],[127,303,75,-0.5638935938477516],[127,303,76,-0.5618910305202007],[127,303,77,-0.5576980598270893],[127,303,78,-0.5523377247154713],[127,303,79,-0.5468230731785297],[127,304,64,-0.555078387260437],[127,304,65,-0.5577244460582733],[127,304,66,-0.5588730648159981],[127,304,67,-0.5586894489824772],[127,304,68,-0.5579561330378056],[127,304,69,-0.5574606731534004],[127,304,70,-0.5572692304849625],[127,304,71,-0.5575528629124165],[127,304,72,-0.5592196434736252],[127,304,73,-0.5617599152028561],[127,304,74,-0.5636810474097729],[127,304,75,-0.5638935938477516],[127,304,76,-0.5618910305202007],[127,304,77,-0.5576980598270893],[127,304,78,-0.5523377247154713],[127,304,79,-0.5468230731785297],[127,305,64,-0.555078387260437],[127,305,65,-0.5577244460582733],[127,305,66,-0.5588730648159981],[127,305,67,-0.5586894489824772],[127,305,68,-0.5579561330378056],[127,305,69,-0.5574606731534004],[127,305,70,-0.5572692304849625],[127,305,71,-0.5575528629124165],[127,305,72,-0.5592196434736252],[127,305,73,-0.5617599152028561],[127,305,74,-0.5636810474097729],[127,305,75,-0.5638935938477516],[127,305,76,-0.5618910305202007],[127,305,77,-0.5576980598270893],[127,305,78,-0.5523377247154713],[127,305,79,-0.5468230731785297],[127,306,64,-0.555078387260437],[127,306,65,-0.5577244460582733],[127,306,66,-0.5588730648159981],[127,306,67,-0.5586894489824772],[127,306,68,-0.5579561330378056],[127,306,69,-0.5574606731534004],[127,306,70,-0.5572692304849625],[127,306,71,-0.5575528629124165],[127,306,72,-0.5592196434736252],[127,306,73,-0.5617599152028561],[127,306,74,-0.5636810474097729],[127,306,75,-0.5638935938477516],[127,306,76,-0.5618910305202007],[127,306,77,-0.5576980598270893],[127,306,78,-0.5523377247154713],[127,306,79,-0.5468230731785297],[127,307,64,-0.555078387260437],[127,307,65,-0.5577244460582733],[127,307,66,-0.5588730648159981],[127,307,67,-0.5586894489824772],[127,307,68,-0.5579561330378056],[127,307,69,-0.5574606731534004],[127,307,70,-0.5572692304849625],[127,307,71,-0.5575528629124165],[127,307,72,-0.5592196434736252],[127,307,73,-0.5617599152028561],[127,307,74,-0.5636810474097729],[127,307,75,-0.5638935938477516],[127,307,76,-0.5618910305202007],[127,307,77,-0.5576980598270893],[127,307,78,-0.5523377247154713],[127,307,79,-0.5468230731785297],[127,308,64,-0.555078387260437],[127,308,65,-0.5577244460582733],[127,308,66,-0.5588730648159981],[127,308,67,-0.5586894489824772],[127,308,68,-0.5579561330378056],[127,308,69,-0.5574606731534004],[127,308,70,-0.5572692304849625],[127,308,71,-0.5575528629124165],[127,308,72,-0.5592196434736252],[127,308,73,-0.5617599152028561],[127,308,74,-0.5636810474097729],[127,308,75,-0.5638935938477516],[127,308,76,-0.5618910305202007],[127,308,77,-0.5576980598270893],[127,308,78,-0.5523377247154713],[127,308,79,-0.5468230731785297],[127,309,64,-0.555078387260437],[127,309,65,-0.5577244460582733],[127,309,66,-0.5588730648159981],[127,309,67,-0.5586894489824772],[127,309,68,-0.5579561330378056],[127,309,69,-0.5574606731534004],[127,309,70,-0.5572692304849625],[127,309,71,-0.5575528629124165],[127,309,72,-0.5592196434736252],[127,309,73,-0.5617599152028561],[127,309,74,-0.5636810474097729],[127,309,75,-0.5638935938477516],[127,309,76,-0.5618910305202007],[127,309,77,-0.5576980598270893],[127,309,78,-0.5523377247154713],[127,309,79,-0.5468230731785297],[127,310,64,-0.555078387260437],[127,310,65,-0.5577244460582733],[127,310,66,-0.5588730648159981],[127,310,67,-0.5586894489824772],[127,310,68,-0.5579561330378056],[127,310,69,-0.5574606731534004],[127,310,70,-0.5572692304849625],[127,310,71,-0.5575528629124165],[127,310,72,-0.5592196434736252],[127,310,73,-0.5617599152028561],[127,310,74,-0.5636810474097729],[127,310,75,-0.5638935938477516],[127,310,76,-0.5618910305202007],[127,310,77,-0.5576980598270893],[127,310,78,-0.5523377247154713],[127,310,79,-0.5468230731785297],[127,311,64,-0.555078387260437],[127,311,65,-0.5577244460582733],[127,311,66,-0.5588730648159981],[127,311,67,-0.5586894489824772],[127,311,68,-0.5579561330378056],[127,311,69,-0.5574606731534004],[127,311,70,-0.5572692304849625],[127,311,71,-0.5575528629124165],[127,311,72,-0.5592196434736252],[127,311,73,-0.5617599152028561],[127,311,74,-0.5636810474097729],[127,311,75,-0.5638935938477516],[127,311,76,-0.5618910305202007],[127,311,77,-0.5576980598270893],[127,311,78,-0.5523377247154713],[127,311,79,-0.5468230731785297],[127,312,64,-0.555078387260437],[127,312,65,-0.5577244460582733],[127,312,66,-0.5588730648159981],[127,312,67,-0.5586894489824772],[127,312,68,-0.5579561330378056],[127,312,69,-0.5574606731534004],[127,312,70,-0.5572692304849625],[127,312,71,-0.5575528629124165],[127,312,72,-0.5592196434736252],[127,312,73,-0.5617599152028561],[127,312,74,-0.5636810474097729],[127,312,75,-0.5638935938477516],[127,312,76,-0.5618910305202007],[127,312,77,-0.5576980598270893],[127,312,78,-0.5523377247154713],[127,312,79,-0.5468230731785297],[127,313,64,-0.555078387260437],[127,313,65,-0.5577244460582733],[127,313,66,-0.5588730648159981],[127,313,67,-0.5586894489824772],[127,313,68,-0.5579561330378056],[127,313,69,-0.5574606731534004],[127,313,70,-0.5572692304849625],[127,313,71,-0.5575528629124165],[127,313,72,-0.5592196434736252],[127,313,73,-0.5617599152028561],[127,313,74,-0.5636810474097729],[127,313,75,-0.5638935938477516],[127,313,76,-0.5618910305202007],[127,313,77,-0.5576980598270893],[127,313,78,-0.5523377247154713],[127,313,79,-0.5468230731785297],[127,314,64,-0.555078387260437],[127,314,65,-0.5577244460582733],[127,314,66,-0.5588730648159981],[127,314,67,-0.5586894489824772],[127,314,68,-0.5579561330378056],[127,314,69,-0.5574606731534004],[127,314,70,-0.5572692304849625],[127,314,71,-0.5575528629124165],[127,314,72,-0.5592196434736252],[127,314,73,-0.5617599152028561],[127,314,74,-0.5636810474097729],[127,314,75,-0.5638935938477516],[127,314,76,-0.5618910305202007],[127,314,77,-0.5576980598270893],[127,314,78,-0.5523377247154713],[127,314,79,-0.5468230731785297],[127,315,64,-0.555078387260437],[127,315,65,-0.5577244460582733],[127,315,66,-0.5588730648159981],[127,315,67,-0.5586894489824772],[127,315,68,-0.5579561330378056],[127,315,69,-0.5574606731534004],[127,315,70,-0.5572692304849625],[127,315,71,-0.5575528629124165],[127,315,72,-0.5592196434736252],[127,315,73,-0.5617599152028561],[127,315,74,-0.5636810474097729],[127,315,75,-0.5638935938477516],[127,315,76,-0.5618910305202007],[127,315,77,-0.5576980598270893],[127,315,78,-0.5523377247154713],[127,315,79,-0.5468230731785297],[127,316,64,-0.555078387260437],[127,316,65,-0.5577244460582733],[127,316,66,-0.5588730648159981],[127,316,67,-0.5586894489824772],[127,316,68,-0.5579561330378056],[127,316,69,-0.5574606731534004],[127,316,70,-0.5572692304849625],[127,316,71,-0.5575528629124165],[127,316,72,-0.5592196434736252],[127,316,73,-0.5617599152028561],[127,316,74,-0.5636810474097729],[127,316,75,-0.5638935938477516],[127,316,76,-0.5618910305202007],[127,316,77,-0.5576980598270893],[127,316,78,-0.5523377247154713],[127,316,79,-0.5468230731785297],[127,317,64,-0.555078387260437],[127,317,65,-0.5577244460582733],[127,317,66,-0.5588730648159981],[127,317,67,-0.5586894489824772],[127,317,68,-0.5579561330378056],[127,317,69,-0.5574606731534004],[127,317,70,-0.5572692304849625],[127,317,71,-0.5575528629124165],[127,317,72,-0.5592196434736252],[127,317,73,-0.5617599152028561],[127,317,74,-0.5636810474097729],[127,317,75,-0.5638935938477516],[127,317,76,-0.5618910305202007],[127,317,77,-0.5576980598270893],[127,317,78,-0.5523377247154713],[127,317,79,-0.5468230731785297],[127,318,64,-0.555078387260437],[127,318,65,-0.5577244460582733],[127,318,66,-0.5588730648159981],[127,318,67,-0.5586894489824772],[127,318,68,-0.5579561330378056],[127,318,69,-0.5574606731534004],[127,318,70,-0.5572692304849625],[127,318,71,-0.5575528629124165],[127,318,72,-0.5592196434736252],[127,318,73,-0.5617599152028561],[127,318,74,-0.5636810474097729],[127,318,75,-0.5638935938477516],[127,318,76,-0.5618910305202007],[127,318,77,-0.5576980598270893],[127,318,78,-0.5523377247154713],[127,318,79,-0.5468230731785297],[127,319,64,-0.555078387260437],[127,319,65,-0.5577244460582733],[127,319,66,-0.5588730648159981],[127,319,67,-0.5586894489824772],[127,319,68,-0.5579561330378056],[127,319,69,-0.5574606731534004],[127,319,70,-0.5572692304849625],[127,319,71,-0.5575528629124165],[127,319,72,-0.5592196434736252],[127,319,73,-0.5617599152028561],[127,319,74,-0.5636810474097729],[127,319,75,-0.5638935938477516],[127,319,76,-0.5618910305202007],[127,319,77,-0.5576980598270893],[127,319,78,-0.5523377247154713],[127,319,79,-0.5468230731785297]] diff --git a/pumpkin-world/assets/converted_sloped_cheese_7_4.json b/pumpkin-world/assets/converted_sloped_cheese_7_4.json new file mode 100644 index 000000000..19a5c49d9 --- /dev/null +++ b/pumpkin-world/assets/converted_sloped_cheese_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,22.890817429972945],[112,-64,65,22.88991419458145],[112,-64,66,22.886297620410364],[112,-64,67,22.889287174144286],[112,-64,68,22.90561687589041],[112,-64,69,22.938808437849588],[112,-64,70,22.986421228204634],[112,-64,71,23.042792286899484],[112,-64,72,23.093825371949443],[112,-64,73,23.13965257832631],[112,-64,74,23.211448603282097],[112,-64,75,23.258487321688616],[112,-64,76,23.2561160441314],[112,-64,77,23.209410104109214],[112,-64,78,23.138546905349003],[112,-64,79,23.049262919618926],[112,-63,64,22.709262929667453],[112,-63,65,22.705214407220883],[112,-63,66,22.69866843996519],[112,-63,67,22.702973298114152],[112,-63,68,22.715218504499813],[112,-63,69,22.74804518821603],[112,-63,70,22.796838218863563],[112,-63,71,22.85192306166555],[112,-63,72,22.904120694846018],[112,-63,73,22.950594789835534],[112,-63,74,23.02187475839922],[112,-63,75,23.068345704524162],[112,-63,76,23.06647526851608],[112,-63,77,23.022824752053406],[112,-63,78,22.958476269254483],[112,-63,79,22.87337789606828],[112,-62,64,22.524487437244616],[112,-62,65,22.522301566603332],[112,-62,66,22.514578614069183],[112,-62,67,22.517295539846774],[112,-62,68,22.529306954571837],[112,-62,69,22.563293329712874],[112,-62,70,22.610994010512197],[112,-62,71,22.66572583007984],[112,-62,72,22.71854622094953],[112,-62,73,22.76844620484026],[112,-62,74,22.83787304897633],[112,-62,75,22.886022894934534],[112,-62,76,22.880842149578744],[112,-62,77,22.839499523674366],[112,-62,78,22.77559646469945],[112,-62,79,22.69233576719766],[112,-61,64,22.336883519239954],[112,-61,65,22.334657511704734],[112,-61,66,22.325105129198075],[112,-61,67,22.327545324194016],[112,-61,68,22.341153747907097],[112,-61,69,22.373215003782008],[112,-61,70,22.419488207628465],[112,-61,71,22.4779869304779],[112,-61,72,22.529212926691596],[112,-61,73,22.57998194098352],[112,-61,74,22.648652552216028],[112,-61,75,22.698292243703914],[112,-61,76,22.693211646827002],[112,-61,77,22.65327508068569],[112,-61,78,22.588350442972416],[112,-61,79,22.506225237349994],[112,-60,64,22.14698789180707],[112,-60,65,22.146500697623257],[112,-60,66,22.136550947188997],[112,-60,67,22.135588838643187],[112,-60,68,22.15307759601755],[112,-60,69,22.18491107124934],[112,-60,70,22.23143271883029],[112,-60,71,22.290799240703787],[112,-60,72,22.34114285900877],[112,-60,73,22.388843489569698],[112,-60,74,22.457746308099157],[112,-60,75,22.508228111911347],[112,-60,76,22.507094182580353],[112,-60,77,22.46576798383956],[112,-60,78,22.403174354791517],[112,-60,79,22.32113673315262],[112,-59,64,21.964585273959084],[112,-59,65,21.967968927030064],[112,-59,66,21.96135273695709],[112,-59,67,21.959947801704857],[112,-59,68,21.97539918132535],[112,-59,69,22.008358458353488],[112,-59,70,22.052366906331667],[112,-59,71,22.11104047183278],[112,-59,72,22.16100195046191],[112,-59,73,22.208252500831552],[112,-59,74,22.276129644256578],[112,-59,75,22.325555762689255],[112,-59,76,22.324634954407667],[112,-59,77,22.280969910832297],[112,-59,78,22.217744008494726],[112,-59,79,22.132365467782744],[112,-58,64,21.77811246738305],[112,-58,65,21.78167258548778],[112,-58,66,21.77819883923401],[112,-58,67,21.7772971747258],[112,-58,68,21.79113751507215],[112,-58,69,21.82418732599248],[112,-58,70,21.869159999245557],[112,-58,71,21.927862092587812],[112,-58,72,21.97685240181787],[112,-58,73,22.02292758873445],[112,-58,74,22.09217510302504],[112,-58,75,22.14055306476016],[112,-58,76,22.137617717455647],[112,-58,77,22.094643851541168],[112,-58,78,22.031963246989452],[112,-58,79,21.947651019797323],[112,-57,64,21.58600158640753],[112,-57,65,21.59000744538234],[112,-57,66,21.585309416399927],[112,-57,67,21.586090262542807],[112,-57,68,21.602451102271363],[112,-57,69,21.632260432661084],[112,-57,70,21.67653324832515],[112,-57,71,21.737438043716004],[112,-57,72,21.789016227843717],[112,-57,73,21.832504056198946],[112,-57,74,21.903889411963057],[112,-57,75,21.95060827523774],[112,-57,76,21.947225544812092],[112,-57,77,21.906448645050272],[112,-57,78,21.844273788380153],[112,-57,79,21.759745952368984],[112,-56,64,21.40287798624486],[112,-56,65,21.40559354601796],[112,-56,66,21.40112825658388],[112,-56,67,21.400012243975276],[112,-56,68,21.420528161633303],[112,-56,69,21.447246115562546],[112,-56,70,21.4933720113399],[112,-56,71,21.552027362793332],[112,-56,72,21.603819726519013],[112,-56,73,21.64754774327147],[112,-56,74,21.718564087973952],[112,-56,75,21.764855557144465],[112,-56,76,21.76342749592193],[112,-56,77,21.723591062181466],[112,-56,78,21.660255453512626],[112,-56,79,21.576796706079147],[112,-55,64,21.21708307632013],[112,-55,65,21.220616148514633],[112,-55,66,21.217135187601542],[112,-55,67,21.216354503144927],[112,-55,68,21.234870387298386],[112,-55,69,21.26117585572008],[112,-55,70,21.30839501553169],[112,-55,71,21.367445247025824],[112,-55,72,21.418042527500553],[112,-55,73,21.4628814650221],[112,-55,74,21.534041012755278],[112,-55,75,21.579860384558906],[112,-55,76,21.57882065034031],[112,-55,77,21.538302913923303],[112,-55,78,21.476222318259623],[112,-55,79,21.39504225090845],[112,-54,64,21.030897295049154],[112,-54,65,21.033955765810664],[112,-54,66,21.033357755272203],[112,-54,67,21.03417258182346],[112,-54,68,21.049499303990768],[112,-54,69,21.078166877159852],[112,-54,70,21.126100442361764],[112,-54,71,21.18256268179137],[112,-54,72,21.230739983006423],[112,-54,73,21.276983456260734],[112,-54,74,21.349929730908503],[112,-54,75,21.39632983645604],[112,-54,76,21.395321734748197],[112,-54,77,21.35692345698724],[112,-54,78,21.29376184233157],[112,-54,79,21.211831854648693],[112,-53,64,20.8403908431545],[112,-53,65,20.846639940359292],[112,-53,66,20.842406719275242],[112,-53,67,20.846844593251248],[112,-53,68,20.861790235650293],[112,-53,69,20.89097519235893],[112,-53,70,20.935927521747967],[112,-53,71,20.993811582348442],[112,-53,72,21.041409550562708],[112,-53,73,21.087039864496138],[112,-53,74,21.158818560248953],[112,-53,75,21.20658344726992],[112,-53,76,21.20632297706191],[112,-53,77,21.17068909374734],[112,-53,78,21.10984529080749],[112,-53,79,21.02922167392733],[112,-52,64,20.645649705675808],[112,-52,65,20.65379046087995],[112,-52,66,20.649668760054002],[112,-52,67,20.65570892293725],[112,-52,68,20.66995645273126],[112,-52,69,20.699948028994726],[112,-52,70,20.744269170064523],[112,-52,71,20.80017610954627],[112,-52,72,20.849902244277025],[112,-52,73,20.895532946105753],[112,-52,74,20.963652513582073],[112,-52,75,21.014149774193964],[112,-52,76,21.01399563111165],[112,-52,77,20.980568122098404],[112,-52,78,20.922627738357097],[112,-52,79,20.843645379474825],[112,-51,64,20.44917415129276],[112,-51,65,20.460300873157095],[112,-51,66,20.4566108919854],[112,-51,67,20.46332147123665],[112,-51,68,20.477419854356],[112,-51,69,20.51013865278979],[112,-51,70,20.558447007280147],[112,-51,71,20.61326051005334],[112,-51,72,20.665353636883665],[112,-51,73,20.711242432470804],[112,-51,74,20.778930794547872],[112,-51,75,20.830067377751757],[112,-51,76,20.830835734458027],[112,-51,77,20.79820731744719],[112,-51,78,20.74723386785814],[112,-51,79,20.67176009838],[112,-50,64,20.26544014730419],[112,-50,65,20.275806613786234],[112,-50,66,20.273044907334768],[112,-50,67,20.28031517357394],[112,-50,68,20.296616203480692],[112,-50,69,20.328324980097005],[112,-50,70,20.376753051097015],[112,-50,71,20.430208669747792],[112,-50,72,20.48028572820186],[112,-50,73,20.525475503232226],[112,-50,74,20.593428267259206],[112,-50,75,20.643355624421638],[112,-50,76,20.648130744200316],[112,-50,77,20.615076529864965],[112,-50,78,20.562127946111453],[112,-50,79,20.49018306438319],[112,-49,64,20.075876048336646],[112,-49,65,20.084833072521114],[112,-49,66,20.084578851521645],[112,-49,67,20.091533697076084],[112,-49,68,20.10955465864153],[112,-49,69,20.140541362089078],[112,-49,70,20.1872002581283],[112,-49,71,20.242563618881434],[112,-49,72,20.289000095824786],[112,-49,73,20.335622045266273],[112,-49,74,20.402631130594987],[112,-49,75,20.452169906622217],[112,-49,76,20.45858321075041],[112,-49,77,20.42735939215101],[112,-49,78,20.376244600260907],[112,-49,79,20.304454043829345],[112,-48,64,19.893291407585483],[112,-48,65,19.900452076704802],[112,-48,66,19.900549415436224],[112,-48,67,19.90939129172131],[112,-48,68,19.92952836498981],[112,-48,69,19.960038093178976],[112,-48,70,20.00657779103674],[112,-48,71,20.06172544476331],[112,-48,72,20.105940486645917],[112,-48,73,20.148835505991844],[112,-48,74,20.216848946651126],[112,-48,75,20.268880103966215],[112,-48,76,20.27406958351568],[112,-48,77,20.246960387665123],[112,-48,78,20.19393752662472],[112,-48,79,20.121912667076938],[112,-47,64,19.701533184274965],[112,-47,65,19.714897246655994],[112,-47,66,19.72199699256607],[112,-47,67,19.73315146348617],[112,-47,68,19.753985434124942],[112,-47,69,19.786978177814692],[112,-47,70,19.83249062791016],[112,-47,71,19.88576822950034],[112,-47,72,19.928011110975802],[112,-47,73,19.967909898976945],[112,-47,74,20.037811685613715],[112,-47,75,20.089164871758456],[112,-47,76,20.092259464079604],[112,-47,77,20.06319646597886],[112,-47,78,20.008852480008354],[112,-47,79,19.936451934505985],[112,-46,64,19.624747061820724],[112,-46,65,19.558067407550674],[112,-46,66,19.5415949046323],[112,-46,67,19.552635127494163],[112,-46,68,19.573237055391118],[112,-46,69,19.606261712833813],[112,-46,70,19.649222031754753],[112,-46,71,19.702495479966647],[112,-46,72,19.74801740154754],[112,-46,73,19.78722923838024],[112,-46,74,19.855162375157633],[112,-46,75,19.90570762082365],[112,-46,76,19.9086363528597],[112,-46,77,19.878100137827293],[112,-46,78,19.827254806407193],[112,-46,79,19.755316848257166],[112,-45,64,19.458498506780096],[112,-45,65,19.400695303858722],[112,-45,66,19.356529330245568],[112,-45,67,19.36745621040883],[112,-45,68,19.389156982548382],[112,-45,69,19.419660177912377],[112,-45,70,19.461548734499022],[112,-45,71,19.512850484665258],[112,-45,72,19.561751833210057],[112,-45,73,19.602547595679688],[112,-45,74,19.667016236760563],[112,-45,75,19.71721997550124],[112,-45,76,19.72291595744088],[112,-45,77,19.693276354516218],[112,-45,78,19.642458115586493],[112,-45,79,19.57266607024965],[112,-44,64,19.42326095492933],[112,-44,65,19.36186460592803],[112,-44,66,19.21698433364668],[112,-44,67,19.228316956347825],[112,-44,68,19.24939873238099],[112,-44,69,19.277807793370446],[112,-44,70,19.317269471975912],[112,-44,71,19.368819051244124],[112,-44,72,19.41852584175688],[112,-44,73,19.460424911290666],[112,-44,74,19.524367612426726],[112,-44,75,19.57309889556255],[112,-44,76,19.580321506775],[112,-44,77,19.551053947634436],[112,-44,78,19.49718982605367],[112,-44,79,19.430253284659212],[112,-43,64,19.20781601349034],[112,-43,65,19.180841409883293],[112,-43,66,19.048154381689834],[112,-43,67,19.05686028555617],[112,-43,68,19.07454588046196],[112,-43,69,19.099392301368415],[112,-43,70,19.1363064743011],[112,-43,71,19.18739079612827],[112,-43,72,19.2370502724322],[112,-43,73,19.28068368062979],[112,-43,74,19.345658957794715],[112,-43,75,19.395687253342906],[112,-43,76,19.40122947375951],[112,-43,77,19.37427874541734],[112,-43,78,19.31751180497572],[112,-43,79,19.25180794430624],[112,-42,64,19.067759137744893],[112,-42,65,19.045340255545607],[112,-42,66,18.871987365651982],[112,-42,67,18.87765231630604],[112,-42,68,18.893811048975756],[112,-42,69,18.916550764531657],[112,-42,70,18.951868912620707],[112,-42,71,19.004886420822675],[112,-42,72,19.05490608777065],[112,-42,73,19.099977408220436],[112,-42,74,19.16509519215307],[112,-42,75,19.215471980462166],[112,-42,76,19.221556800102977],[112,-42,77,19.191525727479355],[112,-42,78,19.136820846685936],[112,-42,79,19.070971468967542],[112,-41,64,18.944778381342072],[112,-41,65,18.862652065657063],[112,-41,66,18.68587683806364],[112,-41,67,18.69241392278068],[112,-41,68,18.70492379552434],[112,-41,69,18.726978530113335],[112,-41,70,18.764123968617334],[112,-41,71,18.816953683370308],[112,-41,72,18.86671489739832],[112,-41,73,18.912789781329298],[112,-41,74,18.97946667772648],[112,-41,75,19.02892046127919],[112,-41,76,19.034197264298257],[112,-41,77,19.006031480545936],[112,-41,78,18.953547977089123],[112,-41,79,18.88895020618081],[112,-40,64,18.78571682440524],[112,-40,65,18.68625733120938],[112,-40,66,18.506131090670387],[112,-40,67,18.513944278281212],[112,-40,68,18.526515933499926],[112,-40,69,18.544611252216406],[112,-40,70,18.580593143057776],[112,-40,71,18.632833953806394],[112,-40,72,18.682810892794613],[112,-40,73,18.729880049044027],[112,-40,74,18.798262524325935],[112,-40,75,18.84629843921697],[112,-40,76,18.84853217121985],[112,-40,77,18.824219246128177],[112,-40,78,18.773317514739635],[112,-40,79,18.70981187449907],[112,-39,64,18.631463068849598],[112,-39,65,18.500542807126312],[112,-39,66,18.32706132577781],[112,-39,67,18.331283889108384],[112,-39,68,18.340885542635025],[112,-39,69,18.35530965556889],[112,-39,70,18.3939009954081],[112,-39,71,18.44956125653651],[112,-39,72,18.50422473194616],[112,-39,73,18.55374408571515],[112,-39,74,18.624076556986427],[112,-39,75,18.67076698965909],[112,-39,76,18.673432458163695],[112,-39,77,18.64971993962051],[112,-39,78,18.59912524064156],[112,-39,79,18.531134350039412],[112,-38,64,18.364452735792675],[112,-38,65,18.247406093834453],[112,-38,66,18.147698288997784],[112,-38,67,18.150281196519945],[112,-38,68,18.15932040947621],[112,-38,69,18.1754130305075],[112,-38,70,18.212945967310883],[112,-38,71,18.266423992334033],[112,-38,72,18.320734956162124],[112,-38,73,18.373522794314137],[112,-38,74,18.442130589724677],[112,-38,75,18.48711120034448],[112,-38,76,18.492512991779545],[112,-38,77,18.468058529060276],[112,-38,78,18.419677228847554],[112,-38,79,18.352564650452454],[112,-37,64,18.216855241184383],[112,-37,65,18.08155834453259],[112,-37,66,17.961880317206674],[112,-37,67,17.962992729250672],[112,-37,68,17.97121217835012],[112,-37,69,17.98915817407323],[112,-37,70,18.02623047861176],[112,-37,71,18.07998823853447],[112,-37,72,18.13327264538123],[112,-37,73,18.188645749157338],[112,-37,74,18.253064526612626],[112,-37,75,18.299760845304263],[112,-37,76,18.30637177890765],[112,-37,77,18.280186938172662],[112,-37,78,18.235895616571167],[112,-37,79,18.168731876764426],[112,-36,64,18.04141612409647],[112,-36,65,17.899922603826504],[112,-36,66,17.773597908356056],[112,-36,67,17.773916306083073],[112,-36,68,17.779244853159902],[112,-36,69,17.799775316376838],[112,-36,70,17.837350747752964],[112,-36,71,17.888187051827472],[112,-36,72,17.941872778867847],[112,-36,73,17.996839312932146],[112,-36,74,18.061900661281353],[112,-36,75,18.109819662919524],[112,-36,76,18.116644208978705],[112,-36,77,18.091473788726777],[112,-36,78,18.046457611692496],[112,-36,79,17.980806951715543],[112,-35,64,17.789160502080875],[112,-35,65,17.827675811367083],[112,-35,66,17.79625481356659],[112,-35,67,17.765088148877222],[112,-35,68,17.692449142781964],[112,-35,69,17.622354628932353],[112,-35,70,17.65679218719892],[112,-35,71,17.703119160556152],[112,-35,72,17.75145142687541],[112,-35,73,17.801332947855332],[112,-35,74,17.865919197654488],[112,-35,75,17.91586203038218],[112,-35,76,17.92319522109823],[112,-35,77,17.90314115898807],[112,-35,78,17.860807977361002],[112,-35,79,17.80255954874442],[112,-34,64,17.597144812442636],[112,-34,65,17.681931242045923],[112,-34,66,17.645491238159554],[112,-34,67,17.592433336225792],[112,-34,68,17.552959216831475],[112,-34,69,17.441446274375117],[112,-34,70,17.47592488166109],[112,-34,71,17.52111960934444],[112,-34,72,17.567927104789526],[112,-34,73,17.616080470566335],[112,-34,74,17.67925965764474],[112,-34,75,17.727195497696894],[112,-34,76,17.737163182001286],[112,-34,77,17.718243807004622],[112,-34,78,17.67811666680986],[112,-34,79,17.621875200694152],[112,-33,64,17.471221882166105],[112,-33,65,17.57116097171783],[112,-33,66,17.56430843931677],[112,-33,67,17.491038808883836],[112,-33,68,17.447332622633827],[112,-33,69,17.33726918337465],[112,-33,70,17.36473891588634],[112,-33,71,17.406597221559604],[112,-33,72,17.448207259278647],[112,-33,73,17.48929822862485],[112,-33,74,17.54881856459781],[112,-33,75,17.589268536391334],[112,-33,76,17.595718399815507],[112,-33,77,17.573765194297945],[112,-33,78,17.530089902573074],[112,-33,79,17.473057266077685],[112,-32,64,17.28150673084811],[112,-32,65,17.390427218617486],[112,-32,66,17.402676440099402],[112,-32,67,17.323808391359535],[112,-32,68,17.273290463255332],[112,-32,69,17.15901429630718],[112,-32,70,17.183084242936808],[112,-32,71,17.223950491793797],[112,-32,72,17.265961851278995],[112,-32,73,17.307950556990807],[112,-32,74,17.36646265865846],[112,-32,75,17.405786782528274],[112,-32,76,17.411139073298347],[112,-32,77,17.392102679089806],[112,-32,78,17.34816825404295],[112,-32,79,17.29150078458251],[112,-31,64,17.186249802572053],[112,-31,65,17.27865659897358],[112,-31,66,17.2312288061833],[112,-31,67,17.082778674185644],[112,-31,68,17.011509396119717],[112,-31,69,16.97954786784811],[112,-31,70,17.002396786086805],[112,-31,71,17.041600615748028],[112,-31,72,17.08354689845659],[112,-31,73,17.12671235050885],[112,-31,74,17.183807658470425],[112,-31,75,17.2241865959658],[112,-31,76,17.22780934946606],[112,-31,77,17.208250090919964],[112,-31,78,17.164517289842934],[112,-31,79,17.10959414627375],[112,-30,64,17.027664110969567],[112,-30,65,17.112732813762168],[112,-30,66,17.055562720344597],[112,-30,67,16.903029692693146],[112,-30,68,16.832450233281516],[112,-30,69,16.79956175925009],[112,-30,70,16.821819100097223],[112,-30,71,16.860332115879753],[112,-30,72,16.90224101147948],[112,-30,73,16.94526644794118],[112,-30,74,16.999923298205644],[112,-30,75,17.041375502229588],[112,-30,76,17.046072709433254],[112,-30,77,17.02413542870986],[112,-30,78,16.984332414098496],[112,-30,79,16.927032042962583],[112,-29,64,16.87922756375181],[112,-29,65,16.93462373897286],[112,-29,66,16.891220742653747],[112,-29,67,16.73306528891242],[112,-29,68,16.658919786544658],[112,-29,69,16.615847870155406],[112,-29,70,16.637553842125016],[112,-29,71,16.6744397668978],[112,-29,72,16.716944143640557],[112,-29,73,16.759801881625965],[112,-29,74,16.813403360300025],[112,-29,75,16.852340586359567],[112,-29,76,16.857483182533965],[112,-29,77,16.836275246041026],[112,-29,78,16.79923966628821],[112,-29,79,16.741489437885587],[112,-28,64,16.7005548185559],[112,-28,65,16.730630986887288],[112,-28,66,16.69917577116605],[112,-28,67,16.54371896101349],[112,-28,68,16.46064498703341],[112,-28,69,16.429010083566084],[112,-28,70,16.45094820829874],[112,-28,71,16.485625327000395],[112,-28,72,16.527937603312186],[112,-28,73,16.569354708614497],[112,-28,74,16.62385770387431],[112,-28,75,16.662288962389827],[112,-28,76,16.666267028360398],[112,-28,77,16.646308825686837],[112,-28,78,16.61029775055213],[112,-28,79,16.55406475641968],[112,-27,64,16.563524807737732],[112,-27,65,16.55671508679342],[112,-27,66,16.476731817987837],[112,-27,67,16.287544045574727],[112,-27,68,16.244334408987452],[112,-27,69,16.256335555794912],[112,-27,70,16.279970020140656],[112,-27,71,16.32022604926987],[112,-27,72,16.363578737526854],[112,-27,73,16.40532996129787],[112,-27,74,16.461302264587914],[112,-27,75,16.497453643433726],[112,-27,76,16.50065684028003],[112,-27,77,16.476478755969737],[112,-27,78,16.434402497573526],[112,-27,79,16.374649185011332],[112,-26,64,16.446638608450126],[112,-26,65,16.451924920917826],[112,-26,66,16.33868566356402],[112,-26,67,16.110177175613913],[112,-26,68,16.06294505456709],[112,-26,69,16.07618971275341],[112,-26,70,16.100546875537955],[112,-26,71,16.141215894328546],[112,-26,72,16.18226012439197],[112,-26,73,16.22300234860592],[112,-26,74,16.276845354569126],[112,-26,75,16.31376124825052],[112,-26,76,16.31725555134617],[112,-26,77,16.29373343228353],[112,-26,78,16.251488389112243],[112,-26,79,16.192661728989545],[112,-25,64,16.273922308895127],[112,-25,65,16.29435475776586],[112,-25,66,16.133913635578438],[112,-25,67,15.91800386562595],[112,-25,68,15.874959669055393],[112,-25,69,15.890725317064199],[112,-25,70,15.917612497305008],[112,-25,71,15.95499800151751],[112,-25,72,15.996813883934607],[112,-25,73,16.036347533251085],[112,-25,74,16.087186438956877],[112,-25,75,16.126583964023414],[112,-25,76,16.131678722146056],[112,-25,77,16.110055084349934],[112,-25,78,16.068032287202616],[112,-25,79,16.008803682213525],[112,-24,64,16.081808902200688],[112,-24,65,16.100307908779847],[112,-24,66,15.917188290011346],[112,-24,67,15.700400617873067],[112,-24,68,15.69642517896081],[112,-24,69,15.713101595802744],[112,-24,70,15.73921618445123],[112,-24,71,15.774473678201206],[112,-24,72,15.817149452768867],[112,-24,73,15.853613658262045],[112,-24,74,15.904658649950676],[112,-24,75,15.942975136486814],[112,-24,76,15.9484740594504],[112,-24,77,15.92734645815425],[112,-24,78,15.885204651397688],[112,-24,79,15.826233386207313],[112,-23,64,15.924660346617404],[112,-23,65,15.926655077044055],[112,-23,66,15.759980639575216],[112,-23,67,15.527976850916334],[112,-23,68,15.521055941297055],[112,-23,69,15.534851225671499],[112,-23,70,15.563616023243993],[112,-23,71,15.598118303952958],[112,-23,72,15.636008633648077],[112,-23,73,15.667157022101831],[112,-23,74,15.718459372975888],[112,-23,75,15.758135210427579],[112,-23,76,15.763636146109478],[112,-23,77,15.744167346897319],[112,-23,78,15.703850985106069],[112,-23,79,15.645551467725351],[112,-22,64,15.750772130919582],[112,-22,65,15.73800640336108],[112,-22,66,15.558334926110145],[112,-22,67,15.33439945136792],[112,-22,68,15.340782062597723],[112,-22,69,15.35398521270809],[112,-22,70,15.384569906228224],[112,-22,71,15.42023564838185],[112,-22,72,15.453755551920091],[112,-22,73,15.486076119495157],[112,-22,74,15.53673374244917],[112,-22,75,15.575776396863201],[112,-22,76,15.58249824701776],[112,-22,77,15.562179649892439],[112,-22,78,15.522512559052307],[112,-22,79,15.465247666961854],[112,-21,64,15.574908716486467],[112,-21,65,15.590441871398731],[112,-21,66,15.383703284770155],[112,-21,67,15.14831625421781],[112,-21,68,15.155009007077673],[112,-21,69,15.169214900485576],[112,-21,70,15.196254900516418],[112,-21,71,15.234406614540703],[112,-21,72,15.269734063033745],[112,-21,73,15.301989739082334],[112,-21,74,15.352871522366732],[112,-21,75,15.39252836714212],[112,-21,76,15.3965225727197],[112,-21,77,15.37590959305255],[112,-21,78,15.338737620747276],[112,-21,79,15.281482159189085],[112,-20,64,15.378949454085468],[112,-20,65,15.36680904641548],[112,-20,66,15.156567476015791],[112,-20,67,14.96522910159068],[112,-20,68,14.968936261807222],[112,-20,69,14.98242236663009],[112,-20,70,15.0293049517338],[112,-20,71,15.044779474617258],[112,-20,72,15.079390707081211],[112,-20,73,15.113648489310638],[112,-20,74,15.163676746615002],[112,-20,75,15.20149203302258],[112,-20,76,15.206568840657948],[112,-20,77,15.186355992943373],[112,-20,78,15.149524405803383],[112,-20,79,15.094450899063393],[112,-19,64,15.171597879595755],[112,-19,65,15.147873973990885],[112,-19,66,14.922629190167118],[112,-19,67,14.793924496803086],[112,-19,68,14.796006225464728],[112,-19,69,14.80780160192263],[112,-19,70,14.831338605572732],[112,-19,71,14.86400807990964],[112,-19,72,14.898918046542798],[112,-19,73,14.947483180333023],[112,-19,74,15.048845063689877],[112,-19,75,15.08613447333566],[112,-19,76,15.028336876067987],[112,-19,77,15.008863033599134],[112,-19,78,14.973930089788707],[112,-19,79,14.92163393415435],[112,-18,64,14.97435234143979],[112,-18,65,14.916909302771721],[112,-18,66,14.712386313084544],[112,-18,67,14.615608684333502],[112,-18,68,14.617924120309151],[112,-18,69,14.628089771377768],[112,-18,70,14.650753080030771],[112,-18,71,14.679379628593763],[112,-18,72,14.71500152013742],[112,-18,73,14.784580976255954],[112,-18,74,14.882499513169096],[112,-18,75,14.939542209738002],[112,-18,76,14.849959776070797],[112,-18,77,14.830952244401399],[112,-18,78,14.79270386958956],[112,-18,79,14.741972525961307],[112,-17,64,14.772662468841693],[112,-17,65,14.676657001757105],[112,-17,66,14.50177316342686],[112,-17,67,14.431683445037361],[112,-17,68,14.433540301689387],[112,-17,69,14.44229823869656],[112,-17,70,14.464656358360788],[112,-17,71,14.492661176370046],[112,-17,72,14.529893869734849],[112,-17,73,14.587640865076118],[112,-17,74,14.696926181793268],[112,-17,75,14.773017859285996],[112,-17,76,14.699106670510666],[112,-17,77,14.646437908737196],[112,-17,78,14.60872115235534],[112,-17,79,14.562165472613993],[112,-16,64,14.467452715041563],[112,-16,65,14.378093343851626],[112,-16,66,14.248852776076784],[112,-16,67,14.254167053005615],[112,-16,68,14.253510295106821],[112,-16,69,14.263890192642425],[112,-16,70,14.285262299782255],[112,-16,71,14.31468820287717],[112,-16,72,14.349172327745654],[112,-16,73,14.392725788372486],[112,-16,74,14.445455883743797],[112,-16,75,14.48050678064143],[112,-16,76,14.486122528910242],[112,-16,77,14.463720309219006],[112,-16,78,14.42804050119551],[112,-16,79,14.382315712864786],[112,-15,64,14.259129424338319],[112,-15,65,14.176233363692884],[112,-15,66,14.081136663399036],[112,-15,67,14.084877397143305],[112,-15,68,14.08282646024991],[112,-15,69,14.091916392114873],[112,-15,70,14.111980697630466],[112,-15,71,14.138495174152867],[112,-15,72,14.169317725208256],[112,-15,73,14.20934066258802],[112,-15,74,14.261575396165986],[112,-15,75,14.296637206376358],[112,-15,76,14.304327830171658],[112,-15,77,14.284505262080305],[112,-15,78,14.252782739407866],[112,-15,79,14.20765779772751],[112,-14,64,13.983258700786699],[112,-14,65,13.94339184653604],[112,-14,66,13.904764843885632],[112,-14,67,13.906099139498261],[112,-14,68,13.905821360275821],[112,-14,69,13.916507133667336],[112,-14,70,13.933449692472596],[112,-14,71,13.959324010463869],[112,-14,72,13.99045739761587],[112,-14,73,14.028719944764573],[112,-14,74,14.0801404679346],[112,-14,75,14.115298084179038],[112,-14,76,14.124901715675989],[112,-14,77,14.105582235931974],[112,-14,78,14.07525981403185],[112,-14,79,14.026481683055586],[112,-13,64,13.794419084218092],[112,-13,65,13.757286213852018],[112,-13,66,13.71927716847012],[112,-13,67,13.721432550327037],[112,-13,68,13.723755663955057],[112,-13,69,13.733250066145203],[112,-13,70,13.751827046502877],[112,-13,71,13.775680849359393],[112,-13,72,13.805245785532156],[112,-13,73,13.842078850001336],[112,-13,74,13.919801360210643],[112,-13,75,13.957663929813943],[112,-13,76,13.93856782581977],[112,-13,77,13.92029406424797],[112,-13,78,13.890287797579301],[112,-13,79,13.841702710742462],[112,-12,64,13.587939110623244],[112,-12,65,13.555248376907846],[112,-12,66,13.535046508567527],[112,-12,67,13.53738349609017],[112,-12,68,13.538380506386062],[112,-12,69,13.547392711354654],[112,-12,70,13.566208656564331],[112,-12,71,13.590703633956265],[112,-12,72,13.6177971275199],[112,-12,73,13.652005480806126],[112,-12,74,13.746031015166993],[112,-12,75,13.771682700773946],[112,-12,76,13.750217615168804],[112,-12,77,13.730652245187581],[112,-12,78,13.698938966682602],[112,-12,79,13.652328542381225],[112,-11,64,13.451777838375813],[112,-11,65,13.393255824685713],[112,-11,66,13.354273108045835],[112,-11,67,13.354814666608599],[112,-11,68,13.352054755327558],[112,-11,69,13.36058678834861],[112,-11,70,13.383348304706063],[112,-11,71,13.411675590452178],[112,-11,72,13.446552383648978],[112,-11,73,13.53789890730853],[112,-11,74,13.69134711468304],[112,-11,75,13.712960145236645],[112,-11,76,13.60044902876729],[112,-11,77,13.553900044689982],[112,-11,78,13.513170074317799],[112,-11,79,13.464242502076777],[112,-10,64,13.264927708858998],[112,-10,65,13.201133531289136],[112,-10,66,13.17697454150961],[112,-10,67,13.175684879009767],[112,-10,68,13.174997689097404],[112,-10,69,13.178836061799725],[112,-10,70,13.20097846749468],[112,-10,71,13.229760815999306],[112,-10,72,13.266127646718267],[112,-10,73,13.36221553112949],[112,-10,74,13.519603294175061],[112,-10,75,13.528797223900819],[112,-10,76,13.42420228372539],[112,-10,77,13.373137276552448],[112,-10,78,13.333426118518625],[112,-10,79,13.284612910428944],[112,-9,64,13.074526971025797],[112,-9,65,13.01652769194241],[112,-9,66,12.991845465588687],[112,-9,67,12.992553587881325],[112,-9,68,12.99187664496325],[112,-9,69,12.99319919243983],[112,-9,70,13.012864956976626],[112,-9,71,13.043825033782042],[112,-9,72,13.080963661637396],[112,-9,73,13.170466013787042],[112,-9,74,13.332808797415305],[112,-9,75,13.332908882928109],[112,-9,76,13.243732544641206],[112,-9,77,13.189866353535633],[112,-9,78,13.15152160391799],[112,-9,79,13.10382047586096],[112,-8,64,12.920913303406634],[112,-8,65,12.854937705551691],[112,-8,66,12.813163540476921],[112,-8,67,12.81569712409242],[112,-8,68,12.812251478192444],[112,-8,69,12.815056603986681],[112,-8,70,12.83133818617302],[112,-8,71,12.863589686081857],[112,-8,72,12.897868144312053],[112,-8,73,12.959383092725767],[112,-8,74,13.158187117560036],[112,-8,75,13.180023620967683],[112,-8,76,13.089849347005005],[112,-8,77,13.021952333591178],[112,-8,78,12.973521005442606],[112,-8,79,12.924686721616137],[112,-7,64,12.735538832006684],[112,-7,65,12.666885636413353],[112,-7,66,12.633827901507656],[112,-7,67,12.635125435685358],[112,-7,68,12.633361377824428],[112,-7,69,12.635657439701767],[112,-7,70,12.650585981871906],[112,-7,71,12.682521632213685],[112,-7,72,12.718093574710638],[112,-7,73,12.768664199644492],[112,-7,74,12.96496760887327],[112,-7,75,12.995121389724918],[112,-7,76,12.900192654129235],[112,-7,77,12.83251324121925],[112,-7,78,12.794478611605143],[112,-7,79,12.744949339489386],[112,-6,64,12.550078270750253],[112,-6,65,12.487359549145879],[112,-6,66,12.454755270826649],[112,-6,67,12.45553808410515],[112,-6,68,12.454835173455535],[112,-6,69,12.456940625146435],[112,-6,70,12.470620452144694],[112,-6,71,12.50150357268333],[112,-6,72,12.536417692483843],[112,-6,73,12.576162529780904],[112,-6,74,12.765043291424595],[112,-6,75,12.79735623984059],[112,-6,76,12.702257734194127],[112,-6,77,12.650711310708337],[112,-6,78,12.61441010540276],[112,-6,79,12.564364385535894],[112,-5,64,12.350413147533093],[112,-5,65,12.360135373063322],[112,-5,66,12.305049322368784],[112,-5,67,12.272223920616172],[112,-5,68,12.270681751484204],[112,-5,69,12.273213047509179],[112,-5,70,12.287252624110094],[112,-5,71,12.31645935715238],[112,-5,72,12.351230868601357],[112,-5,73,12.387015562329745],[112,-5,74,12.45786720872571],[112,-5,75,12.476226155956548],[112,-5,76,12.482969852088805],[112,-5,77,12.46503510474694],[112,-5,78,12.430903714853377],[112,-5,79,12.383317467242065],[112,-4,64,12.151155040192295],[112,-4,65,12.158804017637426],[112,-4,66,12.113548356403449],[112,-4,67,12.088987161300325],[112,-4,68,12.089612018758434],[112,-4,69,12.090878747062577],[112,-4,70,12.101793061387841],[112,-4,71,12.128058791956072],[112,-4,72,12.16102512979486],[112,-4,73,12.195841329897593],[112,-4,74,12.248949004838007],[112,-4,75,12.284006324367244],[112,-4,76,12.29027397184379],[112,-4,77,12.276549589575453],[112,-4,78,12.242642363540885],[112,-4,79,12.196482295015342],[112,-3,64,12.006772151054243],[112,-3,65,12.012682842327171],[112,-3,66,11.987065473765231],[112,-3,67,11.932494826563438],[112,-3,68,11.931133528027653],[112,-3,69,11.934987814677733],[112,-3,70,11.944036100649793],[112,-3,71,11.962423811610602],[112,-3,72,11.991736096321617],[112,-3,73,12.026983243359432],[112,-3,74,12.110477590284965],[112,-3,75,12.109375706226803],[112,-3,76,12.119235230777871],[112,-3,77,12.108151225241228],[112,-3,78,12.079008194238373],[112,-3,79,12.038721145662956],[112,-2,64,11.805033826558502],[112,-2,65,11.806708626489359],[112,-2,66,11.793788255511],[112,-2,67,11.752936608805458],[112,-2,68,11.75125919603653],[112,-2,69,11.756887846979613],[112,-2,70,11.765917121842097],[112,-2,71,11.784665812291648],[112,-2,72,11.814384799722053],[112,-2,73,11.849185398107675],[112,-2,74,11.910044747049309],[112,-2,75,11.929014698982977],[112,-2,76,11.93903674546356],[112,-2,77,11.928861730071764],[112,-2,78,11.899743494125948],[112,-2,79,11.859688483216326],[112,-1,64,11.572026984242614],[112,-1,65,11.583920997426235],[112,-1,66,11.601134777069854],[112,-1,67,11.596504472800731],[112,-1,68,11.588731683050058],[112,-1,69,11.57439115450225],[112,-1,70,11.583665398863538],[112,-1,71,11.604724865050303],[112,-1,72,11.6320382621481],[112,-1,73,11.675418203126654],[112,-1,74,11.714872383024822],[112,-1,75,11.748380695993887],[112,-1,76,11.759345341943504],[112,-1,77,11.750149745913577],[112,-1,78,11.723331422656926],[112,-1,79,11.682047987931528],[112,0,64,11.45667468197045],[112,0,65,11.483597088510944],[112,0,66,11.502724352899403],[112,0,67,11.512455632794609],[112,0,68,11.516403122936442],[112,0,69,11.523513551515588],[112,0,70,11.535206832250587],[112,0,71,11.556500262872335],[112,0,72,11.583697985751437],[112,0,73,11.621015415318464],[112,0,74,11.664997812409997],[112,0,75,11.693671056610127],[112,0,76,11.704085608637584],[112,0,77,11.688711161894835],[112,0,78,11.656698662951722],[112,0,79,11.609075114603211],[112,1,64,11.271524244063627],[112,1,65,11.29920677941063],[112,1,66,11.318174589730273],[112,1,67,11.327647505602794],[112,1,68,11.332486159130347],[112,1,69,11.341173953975975],[112,1,70,11.352601422947275],[112,1,71,11.373562078313096],[112,1,72,11.40143645346832],[112,1,73,11.439566761806406],[112,1,74,11.483781982481972],[112,1,75,11.51537491056543],[112,1,76,11.525816410026017],[112,1,77,11.50910277011337],[112,1,78,11.474797545336239],[112,1,79,11.425465394417508],[112,2,64,11.084204951697984],[112,2,65,11.115641934625238],[112,2,66,11.134694153871894],[112,2,67,11.144680297107165],[112,2,68,11.148113177263541],[112,2,69,11.156192274175469],[112,2,70,11.170523225642615],[112,2,71,11.192114229466938],[112,2,72,11.22094420787662],[112,2,73,11.259788173365727],[112,2,74,11.302549830671316],[112,2,75,11.33566880674863],[112,2,76,11.346025836788982],[112,2,77,11.329270653647598],[112,2,78,11.294438396479178],[112,2,79,11.245008722423336],[112,3,64,10.897268865124731],[112,3,65,10.933517125095763],[112,3,66,10.952407539248934],[112,3,67,10.962086772089084],[112,3,68,10.963473660327267],[112,3,69,10.97223924136991],[112,3,70,10.987567313291345],[112,3,71,11.011812366853661],[112,3,72,11.03900107209647],[112,3,73,11.078292440594815],[112,3,74,11.121844763547953],[112,3,75,11.154435950351699],[112,3,76,11.16407832322058],[112,3,77,11.14917038158241],[112,3,78,11.113681507239088],[112,3,79,11.066713448423004],[112,4,64,10.714384466465367],[112,4,65,10.74929675015105],[112,4,66,10.770224492031861],[112,4,67,10.779859399125797],[112,4,68,10.78110820235546],[112,4,69,10.791339738410942],[112,4,70,10.806514137086507],[112,4,71,10.829246457991383],[112,4,72,10.85897401892043],[112,4,73,10.89378171006947],[112,4,74,10.93909093866276],[112,4,75,10.972430772705076],[112,4,76,10.982765921403702],[112,4,77,10.966892384954829],[112,4,78,10.934186019999595],[112,4,79,10.891306064803585],[112,5,64,10.53142186443414],[112,5,65,10.565701330842751],[112,5,66,10.586113933872769],[112,5,67,10.596609264081005],[112,5,68,10.60117459363757],[112,5,69,10.61073628918951],[112,5,70,10.624720399294254],[112,5,71,10.644927050191312],[112,5,72,10.676184876095357],[112,5,73,10.710634284266849],[112,5,74,10.75610111433004],[112,5,75,10.788633461371878],[112,5,76,10.79958886790444],[112,5,77,10.783664634612169],[112,5,78,10.754769173629303],[112,5,79,10.71571687483544],[112,6,64,10.348254713246536],[112,6,65,10.378562950158429],[112,6,66,10.401550190859473],[112,6,67,10.414528615953348],[112,6,68,10.419372695164899],[112,6,69,10.430076276049174],[112,6,70,10.442521180115962],[112,6,71,10.462440635707225],[112,6,72,10.49407269997068],[112,6,73,10.529644890081778],[112,6,74,10.572740544983553],[112,6,75,10.606410533198007],[112,6,76,10.61787416739734],[112,6,77,10.604982657495505],[112,6,78,10.575537840571265],[112,6,79,10.540270634539608],[112,7,64,10.162872596851233],[112,7,65,10.192753298555127],[112,7,66,10.22018505721307],[112,7,67,10.233776488616181],[112,7,68,10.23849908391468],[112,7,69,10.248796329978624],[112,7,70,10.260084652636051],[112,7,71,10.280710074885617],[112,7,72,10.309558954813255],[112,7,73,10.345087093263944],[112,7,74,10.390313719864809],[112,7,75,10.426325727476252],[112,7,76,10.43498595406514],[112,7,77,10.426158363136448],[112,7,78,10.400619592330827],[112,7,79,10.36446525782014],[112,8,64,9.975127525362597],[112,8,65,10.008390339339146],[112,8,66,10.035356958415893],[112,8,67,10.050349340038549],[112,8,68,10.056829376377088],[112,8,69,10.065367027900864],[112,8,70,10.078513462010463],[112,8,71,10.098127732521425],[112,8,72,10.125452786279924],[112,8,73,10.162233173420548],[112,8,74,10.208715551660287],[112,8,75,10.246904882655356],[112,8,76,10.256793653444516],[112,8,77,10.249190794206756],[112,8,78,10.226185628896127],[112,8,79,10.19180121360833],[112,9,64,9.790668103578628],[112,9,65,9.824158278268508],[112,9,66,9.851121017153456],[112,9,67,9.871132548647703],[112,9,68,9.878839914128521],[112,9,69,9.8875479547796],[112,9,70,9.902798038194414],[112,9,71,9.919671793115075],[112,9,72,9.942455323797388],[112,9,73,9.975764700650155],[112,9,74,10.022720497617431],[112,9,75,10.06208438778311],[112,9,76,10.07415137449056],[112,9,77,10.06903753362009],[112,9,78,10.050285167787838],[112,9,79,10.019162951700112],[112,10,64,9.606589374767823],[112,10,65,9.639250032137832],[112,10,66,9.666257725919893],[112,10,67,9.686942822437448],[112,10,68,9.694191633772654],[112,10,69,9.70386289217072],[112,10,70,9.722151801898992],[112,10,71,9.739962845702461],[112,10,72,9.759782234259513],[112,10,73,9.795341036132585],[112,10,74,9.841303284608012],[112,10,75,9.879697564125227],[112,10,76,9.894022002173635],[112,10,77,9.888433634292866],[112,10,78,9.87172198177508],[112,10,79,9.840888082919586],[112,11,64,9.422650217128142],[112,11,65,9.457079330064806],[112,11,66,9.483266923102885],[112,11,67,9.503561247518434],[112,11,68,9.509733855288337],[112,11,69,9.521220810907144],[112,11,70,9.541339079489102],[112,11,71,9.557900445872615],[112,11,72,9.577629060968455],[112,11,73,9.614816698035902],[112,11,74,9.660461487712157],[112,11,75,9.69790429423505],[112,11,76,9.712070320707248],[112,11,77,9.708714494574494],[112,11,78,9.69014967699173],[112,11,79,9.6605376813769],[112,12,64,9.237906044650977],[112,12,65,9.273228418433797],[112,12,66,9.296518794338974],[112,12,67,9.312660353528674],[112,12,68,9.319972102836282],[112,12,69,9.331685095719205],[112,12,70,9.352518275994377],[112,12,71,9.367146649035549],[112,12,72,9.389312182011503],[112,12,73,9.4237307999709],[112,12,74,9.471010119156464],[112,12,75,9.507182566385463],[112,12,76,9.521627504745087],[112,12,77,9.51901217444167],[112,12,78,9.500280674087511],[112,12,79,9.471396888399761],[112,13,64,9.056872792487315],[112,13,65,9.090340221671886],[112,13,66,9.112612779891736],[112,13,67,9.125009464377136],[112,13,68,9.13311217430145],[112,13,69,9.147597943093265],[112,13,70,9.169395545163109],[112,13,71,9.187656926434821],[112,13,72,9.211189712572928],[112,13,73,9.244361835956965],[112,13,74,9.293364838607731],[112,13,75,9.32881300057942],[112,13,76,9.342913535893233],[112,13,77,9.33840375481189],[112,13,78,9.319325731228558],[112,13,79,9.292260423375183],[112,14,64,8.87237050502559],[112,14,65,8.908284730388527],[112,14,66,8.931256954418417],[112,14,67,8.941621693791236],[112,14,68,8.949892936020989],[112,14,69,8.964123300452213],[112,14,70,8.98556588107196],[112,14,71,9.00544580824736],[112,14,72,9.031340096565845],[112,14,73,9.06396443569927],[112,14,74,9.110300486037326],[112,14,75,9.145919069591544],[112,14,76,9.161437915476103],[112,14,77,9.157602882804998],[112,14,78,9.142333570142242],[112,14,79,9.116036082465426],[112,15,64,8.68650336708643],[112,15,65,8.724344512693655],[112,15,66,8.747831755951774],[112,15,67,8.759324034447529],[112,15,68,8.768395612886753],[112,15,69,8.780366481358389],[112,15,70,8.801461707080296],[112,15,71,8.82224286630372],[112,15,72,8.848001619260723],[112,15,73,8.88495394735845],[112,15,74,8.928901368511962],[112,15,75,8.963757960440645],[112,15,76,8.980552288567475],[112,15,77,8.976273551319048],[112,15,78,8.962872051038445],[112,15,79,8.935949700143496],[112,16,64,8.500757620241883],[112,16,65,8.538186516687457],[112,16,66,8.562231808152609],[112,16,67,8.576279376203303],[112,16,68,8.584415975734252],[112,16,69,8.59829675567325],[112,16,70,8.618533219065542],[112,16,71,8.638308423616987],[112,16,72,8.665503377297851],[112,16,73,8.705755242562013],[112,16,74,8.751797999214654],[112,16,75,8.785230692054315],[112,16,76,8.800110149066539],[112,16,77,8.797912539224408],[112,16,78,8.785196288649583],[112,16,79,8.757686459670918],[112,17,64,8.314839971675253],[112,17,65,8.351788777259678],[112,17,66,8.377164496919232],[112,17,67,8.392542206425711],[112,17,68,8.40343889394408],[112,17,69,8.416775983686511],[112,17,70,8.435283850923941],[112,17,71,8.45431751082095],[112,17,72,8.482583123984465],[112,17,73,8.524704119302264],[112,17,74,8.570273487555601],[112,17,75,8.601746353533768],[112,17,76,8.619449064600035],[112,17,77,8.618347102775518],[112,17,78,8.604291955411476],[112,17,79,8.57544694665961],[112,18,64,8.126827924531375],[112,18,65,8.165624154282261],[112,18,66,8.193254507739692],[112,18,67,8.209519998736988],[112,18,68,8.220882536499385],[112,18,69,8.23517461990077],[112,18,70,8.251466667630371],[112,18,71,8.270842128984155],[112,18,72,8.30116153263889],[112,18,73,8.342378565539555],[112,18,74,8.387316479762193],[112,18,75,8.421435001388584],[112,18,76,8.438613861484491],[112,18,77,8.437871126311524],[112,18,78,8.420725160385365],[112,18,79,8.391519023543752],[112,19,64,7.938868233304567],[112,19,65,7.979710535102577],[112,19,66,8.009959293811866],[112,19,67,8.028134842222759],[112,19,68,8.038758304169612],[112,19,69,8.054300967710281],[112,19,70,8.066723985250032],[112,19,71,8.087546228631473],[112,19,72,8.11855311275021],[112,19,73,8.158827827483233],[112,19,74,8.204375113410556],[112,19,75,8.236421276767347],[112,19,76,8.255948249014724],[112,19,77,8.255147619641097],[112,19,78,8.238977327393073],[112,19,79,8.209563113054648],[112,20,64,7.753427133290623],[112,20,65,7.794779033166723],[112,20,66,7.823540687623252],[112,20,67,7.840224369956572],[112,20,68,7.851578228621875],[112,20,69,7.865707263413404],[112,20,70,7.877623682728029],[112,20,71,7.900148645887229],[112,20,72,7.93227452536035],[112,20,73,7.971426989977613],[112,20,74,8.01403917418986],[112,20,75,8.044348938878956],[112,20,76,8.062753791918203],[112,20,77,8.062902784997227],[112,20,78,8.048216342202904],[112,20,79,8.022209380654173],[112,21,64,7.572861887949818],[112,21,65,7.613099024544385],[112,21,66,7.644919063025935],[112,21,67,7.66102052922124],[112,21,68,7.67469264779945],[112,21,69,7.687506518855979],[112,21,70,7.701745225574477],[112,21,71,7.7262220035230875],[112,21,72,7.755353355750138],[112,21,73,7.792578542875426],[112,21,74,7.834627507478464],[112,21,75,7.861835096801783],[112,21,76,7.880056531651406],[112,21,77,7.88378501135953],[112,21,78,7.870739890313573],[112,21,79,7.8476749036920825],[112,22,64,7.389642176154412],[112,22,65,7.431378385573306],[112,22,66,7.462931044822195],[112,22,67,7.476393359832216],[112,22,68,7.489462073952437],[112,22,69,7.503479472069029],[112,22,70,7.519577239922125],[112,22,71,7.542404580255336],[112,22,72,7.5730620937517035],[112,22,73,7.60916161807277],[112,22,74,7.652428107767471],[112,22,75,7.678865621384255],[112,22,76,7.695819285332682],[112,22,77,7.698664237150958],[112,22,78,7.687665299843812],[112,22,79,7.664107331850751],[112,23,64,7.206404284526123],[112,23,65,7.2521799032985115],[112,23,66,7.279760445277959],[112,23,67,7.293413625914994],[112,23,68,7.306808679309386],[112,23,69,7.320570218261169],[112,23,70,7.337962236880099],[112,23,71,7.359854349506489],[112,23,72,7.390020322581391],[112,23,73,7.427805209309017],[112,23,74,7.469500755451859],[112,23,75,7.496837797509496],[112,23,76,7.511693960756821],[112,23,77,7.51201268320547],[112,23,78,7.503926715482892],[112,23,79,7.482955871202803],[112,24,64,7.03321980718098],[112,24,65,7.079297665744782],[112,24,66,7.107714349724228],[112,24,67,7.1187464205413304],[112,24,68,7.132417598450823],[112,24,69,7.147001562395551],[112,24,70,7.165175530229106],[112,24,71,7.186414713240837],[112,24,72,7.217318065363971],[112,24,73,7.257380365466766],[112,24,74,7.29574084575697],[112,24,75,7.3252144574651945],[112,24,76,7.3374707155239625],[112,24,77,7.337301644033612],[112,24,78,7.3321018142653855],[112,24,79,7.311714461782393],[112,25,64,6.86309771969542],[112,25,65,6.907058176904836],[112,25,66,6.934542762549011],[112,25,67,6.946803166578723],[112,25,68,6.958366512848446],[112,25,69,6.970892972883318],[112,25,70,6.98967368314587],[112,25,71,7.014083354081348],[112,25,72,7.045591340503853],[112,25,73,7.084465652414851],[112,25,74,7.123381424014009],[112,25,75,7.153436707592161],[112,25,76,7.158811356866837],[112,25,77,7.157948662895074],[112,25,78,7.148009113333711],[112,25,79,7.127000007506223],[112,26,64,6.679011700998772],[112,26,65,6.723675854991136],[112,26,66,6.753975639856562],[112,26,67,6.767827439019927],[112,26,68,6.776287374984276],[112,26,69,6.786077250869988],[112,26,70,6.80651524190297],[112,26,71,6.831518868096034],[112,26,72,6.8636725240134675],[112,26,73,6.899514002399789],[112,26,74,6.939394660620217],[112,26,75,6.969131738599398],[112,26,76,6.975367683059387],[112,26,77,6.975504478472778],[112,26,78,6.963646518600089],[112,26,79,6.941307906901227],[112,27,64,6.4954095581819455],[112,27,65,6.539806298211709],[112,27,66,6.573502935169922],[112,27,67,6.586157980887213],[112,27,68,6.593341139349209],[112,27,69,6.6004505507129565],[112,27,70,6.620857326664499],[112,27,71,6.64662216730401],[112,27,72,6.678094265890921],[112,27,73,6.715817649983801],[112,27,74,6.753479010455742],[112,27,75,6.7818526131563255],[112,27,76,6.790050970400815],[112,27,77,6.789730199250168],[112,27,78,6.777360923766705],[112,27,79,6.756075107327934],[112,28,64,6.314272867384269],[112,28,65,6.355904824484474],[112,28,66,6.389035964276222],[112,28,67,6.40027035804829],[112,28,68,6.405238481294369],[112,28,69,6.4098148804169455],[112,28,70,6.429232839139524],[112,28,71,6.455745701869415],[112,28,72,6.485358051444931],[112,28,73,6.522637413929864],[112,28,74,6.562449973917451],[112,28,75,6.588362018993139],[112,28,76,6.598513368066188],[112,28,77,6.5998523080424505],[112,28,78,6.587402244186612],[112,28,79,6.5664635130208024],[112,29,64,6.1304355184610255],[112,29,65,6.169353449086746],[112,29,66,6.199875577642909],[112,29,67,6.207926993539013],[112,29,68,6.211778037063186],[112,29,69,6.216604400039542],[112,29,70,6.236032354854812],[112,29,71,6.262859585819788],[112,29,72,6.290155307758966],[112,29,73,6.327319442107526],[112,29,74,6.365976353750941],[112,29,75,6.3935912217566315],[112,29,76,6.408413005399586],[112,29,77,6.409169098807768],[112,29,78,6.397828723426395],[112,29,79,6.377074680529708],[112,30,64,5.947544740967643],[112,30,65,5.987254435706234],[112,30,66,6.014947958561779],[112,30,67,6.022433504400045],[112,30,68,6.025442690430504],[112,30,69,6.029742650674467],[112,30,70,6.048157599843307],[112,30,71,6.071970735912112],[112,30,72,6.103598083655986],[112,30,73,6.138781462786576],[112,30,74,6.178097101550773],[112,30,75,6.206752202631234],[112,30,76,6.219872950499717],[112,30,77,6.221273912391622],[112,30,78,6.213321751068035],[112,30,79,6.194055751113268],[112,31,64,5.765001804372505],[112,31,65,5.806885652534472],[112,31,66,5.830098996806619],[112,31,67,5.839387466581206],[112,31,68,5.841704983880724],[112,31,69,5.846114960353327],[112,31,70,5.861047641594317],[112,31,71,5.882454207937444],[112,31,72,5.917218633846852],[112,31,73,5.952159280290706],[112,31,74,5.992697667547583],[112,31,75,6.016545887020114],[112,31,76,6.028034024983237],[112,31,77,6.031224353626259],[112,31,78,6.02600943274353],[112,31,79,6.007780995603122],[112,32,64,5.595185154951753],[112,32,65,5.636338987021956],[112,32,66,5.65766948550908],[112,32,67,5.66611278777183],[112,32,68,5.668308275263979],[112,32,69,5.671783325597626],[112,32,70,5.684415062976159],[112,32,71,5.706828979548986],[112,32,72,5.740219472710801],[112,32,73,5.778420255026196],[112,32,74,5.8155828281393935],[112,32,75,5.841395357872143],[112,32,76,5.852145074644917],[112,32,77,5.855036977044437],[112,32,78,5.850683760050697],[112,32,79,5.835958043501003],[112,33,64,5.404360747578753],[112,33,65,5.446581324295625],[112,33,66,5.468845412401034],[112,33,67,5.47723460135387],[112,33,68,5.479403751970245],[112,33,69,5.484251623353629],[112,33,70,5.493595331083651],[112,33,71,5.514526908100307],[112,33,72,5.5463725210713966],[112,33,73,5.585294233933963],[112,33,74,5.622022101435901],[112,33,75,5.645943274053296],[112,33,76,5.660548542863105],[112,33,77,5.660648469549755],[112,33,78,5.660816696951065],[112,33,79,5.648865385081459],[112,34,64,5.222803729035234],[112,34,65,5.2622501810280475],[112,34,66,5.286723275627692],[112,34,67,5.295292447639297],[112,34,68,5.295301457702986],[112,34,69,5.2998986852206915],[112,34,70,5.307584026316892],[112,34,71,5.326262999942423],[112,34,72,5.357002975120677],[112,34,73,5.39932718544508],[112,34,74,5.43439772181537],[112,34,75,5.457820936771498],[112,34,76,5.472931817258813],[112,34,77,5.4744213558908905],[112,34,78,5.474459558602752],[112,34,79,5.4626996100373795],[112,35,64,5.038904557138326],[112,35,65,5.0790752169470705],[112,35,66,5.104724325566757],[112,35,67,5.113884558572474],[112,35,68,5.11233405615543],[112,35,69,5.115128732299894],[112,35,70,5.12043601896165],[112,35,71,5.138614478637409],[112,35,72,5.168245752017915],[112,35,73,5.209102740475419],[112,35,74,5.242903516444148],[112,35,75,5.269900344941675],[112,35,76,5.287475540262246],[112,35,77,5.290464724829701],[112,35,78,5.288161327494305],[112,35,79,5.274954922448516],[112,36,64,4.854250717479217],[112,36,65,4.893063680480706],[112,36,66,4.919492600606679],[112,36,67,4.929324097111562],[112,36,68,4.929812669451204],[112,36,69,4.927358820601735],[112,36,70,4.93128786544276],[112,36,71,4.946669590771441],[112,36,72,4.977365602213677],[112,36,73,5.016562882748479],[112,36,74,5.049017684130915],[112,36,75,5.079873537726663],[112,36,76,5.098745691205543],[112,36,77,5.101392047762736],[112,36,78,5.099138836766096],[112,36,79,5.086977617376555],[112,37,64,4.678961805204854],[112,37,65,4.714336175534193],[112,37,66,4.737363771348296],[112,37,67,4.745139245501112],[112,37,68,4.743294577660357],[112,37,69,4.739894386956188],[112,37,70,4.741123181665984],[112,37,71,4.757316078722329],[112,37,72,4.784480140462501],[112,37,73,4.8217980796861175],[112,37,74,4.856091557611711],[112,37,75,4.887418125716804],[112,37,76,4.905328234009452],[112,37,77,4.9086100535697215],[112,37,78,4.907349170491373],[112,37,79,4.900028624679696],[112,38,64,4.496544956573323],[112,38,65,4.530046462863436],[112,38,66,4.550968630687283],[112,38,67,4.557777548913406],[112,38,68,4.558585876779055],[112,38,69,4.554607357228291],[112,38,70,4.556119691499378],[112,38,71,4.5738321867334495],[112,38,72,4.599310115185762],[112,38,73,4.635326916148481],[112,38,74,4.669186112620309],[112,38,75,4.697169726321867],[112,38,76,4.716297294174599],[112,38,77,4.722121007356139],[112,38,78,4.722396021791402],[112,38,79,4.718258783705196],[112,39,64,4.313613949881743],[112,39,65,4.347132207265094],[112,39,66,4.365641780454786],[112,39,67,4.371156249537176],[112,39,68,4.371738878750948],[112,39,69,4.369936101392168],[112,39,70,4.370432065210353],[112,39,71,4.391261833037095],[112,39,72,4.4168619663453486],[112,39,73,4.4506490377694545],[112,39,74,4.485426010831713],[112,39,75,4.51091904516717],[112,39,76,4.527383508508389],[112,39,77,4.534236485536285],[112,39,78,4.538770689566884],[112,39,79,4.535826929076757],[112,40,64,4.141955088743772],[112,40,65,4.176052275526831],[112,40,66,4.195277211985282],[112,40,67,4.198957776409769],[112,40,68,4.199526924483132],[112,40,69,4.20030712828174],[112,40,70,4.201955464410854],[112,40,71,4.219792625486989],[112,40,72,4.246314021635432],[112,40,73,4.281371107447909],[112,40,74,4.311808019780446],[112,40,75,4.337272544375013],[112,40,76,4.353184697144796],[112,40,77,4.361848388024483],[112,40,78,4.366823023542502],[112,40,79,4.3652524991928106],[112,41,64,3.9577527501053673],[112,41,65,3.9903765755794023],[112,41,66,4.010317515132183],[112,41,67,4.015703505099368],[112,41,68,4.0151655136977515],[112,41,69,4.018154429713932],[112,41,70,4.020941488734441],[112,41,71,4.034761775159443],[112,41,72,4.060491389958355],[112,41,73,4.0934762442534005],[112,41,74,4.125501365067314],[112,41,75,4.150326107185176],[112,41,76,4.165195703640723],[112,41,77,4.173997599923594],[112,41,78,4.181502722558112],[112,41,79,4.180214487871633],[112,42,64,3.773645271302687],[112,42,65,3.807960195091428],[112,42,66,3.8266914677155337],[112,42,67,3.831609285645413],[112,42,68,3.8304961051216573],[112,42,69,3.8338124418627446],[112,42,70,3.838951654293726],[112,42,71,3.8491161939614806],[112,42,72,3.874822214938379],[112,42,73,3.907550467061694],[112,42,74,3.9395688936398963],[112,42,75,3.962527803761562],[112,42,76,3.977244271532604],[112,42,77,3.9870469354507208],[112,42,78,3.993233763684376],[112,42,79,3.9955733963940165],[112,43,64,3.5895496410168164],[112,43,65,3.624779772243059],[112,43,66,3.642954424885609],[112,43,67,3.6466818349883576],[112,43,68,3.6466242007057894],[112,43,69,3.646435282307743],[112,43,70,3.651529716175572],[112,43,71,3.663966031144431],[112,43,72,3.689888427951008],[112,43,73,3.7217152028909246],[112,43,74,3.755042293641883],[112,43,75,3.7772139242893816],[112,43,76,3.7914126783001905],[112,43,77,3.7999355502746304],[112,43,78,3.808035376593269],[112,43,79,3.810174085974705],[112,44,64,3.4034306427187175],[112,44,65,3.43763537999825],[112,44,66,3.457598862418516],[112,44,67,3.463272830209057],[112,44,68,3.4622586060407845],[112,44,69,3.460993363134584],[112,44,70,3.4628168341306296],[112,44,71,3.4752825410202717],[112,44,72,3.5014291235831085],[112,44,73,3.5320640206454472],[112,44,74,3.5641472806893453],[112,44,75,3.589090239680291],[112,44,76,3.603624777418595],[112,44,77,3.61310543933623],[112,44,78,3.6226466279351306],[112,44,79,3.6255297280023204],[112,45,64,3.209391453029118],[112,45,65,3.2480465035740904],[112,45,66,3.275086911429184],[112,45,67,3.286559007345594],[112,45,68,3.2872288564731633],[112,45,69,3.2901892992212742],[112,45,70,3.2947095872514676],[112,45,71,3.311168942940046],[112,45,72,3.3342327675731696],[112,45,73,3.3646318516951252],[112,45,74,3.399169591000552],[112,45,75,3.426055918925377],[112,45,76,3.440552527885578],[112,45,77,3.448533950454654],[112,45,78,3.45799337762061],[112,45,79,3.4580567236550794],[112,46,64,3.0220814049504763],[112,46,65,3.0628505414704486],[112,46,66,3.088730620229325],[112,46,67,3.1017159655182662],[112,46,68,3.103004334229599],[112,46,69,3.107000399381289],[112,46,70,3.1133392824581607],[112,46,71,3.12850066585553],[112,46,72,3.1505754305988924],[112,46,73,3.1777244432728247],[112,46,74,3.2137347262237075],[112,46,75,3.238754807995139],[112,46,76,3.2532882742236224],[112,46,77,3.262364183561628],[112,46,78,3.2725140803259207],[112,46,79,3.2713740068894417],[112,47,64,2.83459074826719],[112,47,65,2.875237013559387],[112,47,66,2.9012458357025865],[112,47,67,2.9137357981057757],[112,47,68,2.9189150905323236],[112,47,69,2.9246202173303044],[112,47,70,2.9291144166205827],[112,47,71,2.943285896121759],[112,47,72,2.9650822123096474],[112,47,73,2.9922279144085686],[112,47,74,3.0255577569345053],[112,47,75,3.0528236251417935],[112,47,76,3.065616241674039],[112,47,77,3.078416674375227],[112,47,78,3.0880129461363883],[112,47,79,3.0861951196964474],[112,48,64,2.6619615029576122],[112,48,65,2.7040886778466167],[112,48,66,2.7296152804556817],[112,48,67,2.7438969807931133],[112,48,68,2.7514462376841116],[112,48,69,2.754767003218195],[112,48,70,2.758936810615263],[112,48,71,2.7727361901827163],[112,48,72,2.7954517075528504],[112,48,73,2.8215938918072063],[112,48,74,2.852595238205142],[112,48,75,2.8803574428963907],[112,48,76,2.8969044940773636],[112,48,77,2.908909263030235],[112,48,78,2.9173720831967445],[112,48,79,2.9174196405164796],[112,49,64,2.47366865292833],[112,49,65,2.5187660626383734],[112,49,66,2.5467228179766086],[112,49,67,2.5609380663122905],[112,49,68,2.5685149064375756],[112,49,69,2.5735563927084253],[112,49,70,2.577596927007849],[112,49,71,2.588431844699898],[112,49,72,2.607547502036925],[112,49,73,2.6327736232554546],[112,49,74,2.6628823976387146],[112,49,75,2.689701140054339],[112,49,76,2.7098850431824983],[112,49,77,2.721797546534893],[112,49,78,2.7316383682183014],[112,49,79,2.7324461418520007],[112,50,64,2.28688674956313],[112,50,65,2.331068165138311],[112,50,66,2.3616946245815535],[112,50,67,2.375317036308632],[112,50,68,2.3812247099891697],[112,50,69,2.388507368903412],[112,50,70,2.393449178093158],[112,50,71,2.40253860871617],[112,50,72,2.42053762663369],[112,50,73,2.4469880129650172],[112,50,74,2.4775088753319015],[112,50,75,2.5039127097586285],[112,50,76,2.523306286538344],[112,50,77,2.5370750322582682],[112,50,78,2.548386846845573],[112,50,79,2.5503391420944825],[112,51,64,2.097306659489566],[112,51,65,2.1415706070156957],[112,51,66,2.1720532405077506],[112,51,67,2.187341216183308],[112,51,68,2.1914781199554323],[112,51,69,2.2020086032753032],[112,51,70,2.2077573765202585],[112,51,71,2.216754221195581],[112,51,72,2.2327680173876856],[112,51,73,2.262853982393091],[112,51,74,2.291801977496985],[112,51,75,2.3152366942020315],[112,51,76,2.3343546805508995],[112,51,77,2.349716887109088],[112,51,78,2.361468947606688],[112,51,79,2.3651628375767193],[112,52,64,1.9153002356477735],[112,52,65,1.959990829522917],[112,52,66,1.9904285660748033],[112,52,67,2.0057852311541864],[112,52,68,2.0136788102773577],[112,52,69,2.023652165923571],[112,52,70,2.02983593874884],[112,52,71,2.0367341367956295],[112,52,72,2.0552355843122667],[112,52,73,2.085885157873429],[112,52,74,2.1122276737147727],[112,52,75,2.133614108929671],[112,52,76,2.154493498052639],[112,52,77,2.1703158121914767],[112,52,78,2.18025620869471],[112,52,79,2.18628146359697],[112,53,64,1.7262140009682],[112,53,65,1.7701958067982808],[112,53,66,1.799824855729288],[112,53,67,1.8147863078071784],[112,53,68,1.8233779132456462],[112,53,69,1.8298546369963826],[112,53,70,1.833925288479047],[112,53,71,1.8404130446330949],[112,53,72,1.859798056277191],[112,53,73,1.893395561462383],[112,53,74,1.919162895043972],[112,53,75,1.9408083070119362],[112,53,76,1.958917502099715],[112,53,77,1.9761829148013008],[112,53,78,1.9881193753220976],[112,53,79,1.9944018862901927],[112,54,64,1.5346021931169542],[112,54,65,1.580229076599169],[112,54,66,1.611326764308378],[112,54,67,1.6288592505271708],[112,54,68,1.6363595719717647],[112,54,69,1.6387902920883541],[112,54,70,1.644821992237093],[112,54,71,1.6531865793986564],[112,54,72,1.674920342017862],[112,54,73,1.7066250221910177],[112,54,74,1.7347994616090066],[112,54,75,1.7548341887199803],[112,54,76,1.772233064149536],[112,54,77,1.7885388579350947],[112,54,78,1.8016425082981646],[112,54,79,1.8100584921550271],[112,55,64,1.3431537154794129],[112,55,65,1.388288382862863],[112,55,66,1.4224874966840095],[112,55,67,1.4414103505245603],[112,55,68,1.4483571292835415],[112,55,69,1.4496840625731136],[112,55,70,1.456739948700716],[112,55,71,1.4678018951424365],[112,55,72,1.491048902987722],[112,55,73,1.5191553432717575],[112,55,74,1.5468444329309856],[112,55,75,1.5678726735669635],[112,55,76,1.5866660029061748],[112,55,77,1.6042869035361083],[112,55,78,1.6159400745661736],[112,55,79,1.6228120758819498],[112,56,64,1.170203516519741],[112,56,65,1.2142775051942265],[112,56,66,1.2464555850521002],[112,56,67,1.2675380799751426],[112,56,68,1.2728126247057507],[112,56,69,1.2744426857531328],[112,56,70,1.2831224836679935],[112,56,71,1.295724771637055],[112,56,72,1.3198920722150658],[112,56,73,1.346545764542586],[112,56,74,1.3728387674651534],[112,56,75,1.3964817869988009],[112,56,76,1.4169540145906472],[112,56,77,1.4351962014525745],[112,56,78,1.4462933704418897],[112,56,79,1.453831044779978],[112,57,64,0.9836109571858023],[112,57,65,1.0276120994486972],[112,57,66,1.0589416623154952],[112,57,67,1.0804138479676875],[112,57,68,1.083473271219186],[112,57,69,1.0870272706704163],[112,57,70,1.0947914765297884],[112,57,71,1.1089599059461503],[112,57,72,1.131345486578983],[112,57,73,1.1561453687245002],[112,57,74,1.1813482202198216],[112,57,75,1.2082285328651985],[112,57,76,1.230167082682685],[112,57,77,1.2457836849219628],[112,57,78,1.2562754201533657],[112,57,79,1.2646074978010944],[112,58,64,0.8332764948143869],[112,58,65,0.8767458460315622],[112,58,66,0.9104659701376315],[112,58,67,0.9287257031728258],[112,58,68,0.9327917372873265],[112,58,69,0.9334367083215616],[112,58,70,0.9434584357372167],[112,58,71,0.956022729419053],[112,58,72,0.9752937257818789],[112,58,73,1.0018660935711472],[112,58,74,1.0281546865300417],[112,58,75,1.0505401243970667],[112,58,76,1.0745458710477203],[112,58,77,1.0893100578822557],[112,58,78,1.1029476862592797],[112,58,79,1.1126741463181948],[112,59,64,0.644165058048217],[112,59,65,0.6882345955347802],[112,59,66,0.7216943733706991],[112,59,67,0.7385714471520365],[112,59,68,0.7457898696613531],[112,59,69,0.7458092514396026],[112,59,70,0.755045181251688],[112,59,71,0.7640583712067076],[112,59,72,0.7862982932499558],[112,59,73,0.8132864687107334],[112,59,74,0.8377060973253683],[112,59,75,0.8597224762884986],[112,59,76,0.8832033134122567],[112,59,77,0.902270159244264],[112,59,78,0.9185295794427114],[112,59,79,0.9311120890360656],[112,60,64,0.45121204785160324],[112,60,65,0.4950932606797557],[112,60,66,0.5292123098570143],[112,60,67,0.5470492192431897],[112,60,68,0.5546717124536061],[112,60,69,0.5562797518681134],[112,60,70,0.5631866599850898],[112,60,71,0.5713266974026125],[112,60,72,0.5953965452763664],[112,60,73,0.6227759866344273],[112,60,74,0.6463413816538461],[112,60,75,0.6669286075666617],[112,60,76,0.6918502732787057],[112,60,77,0.7127324868660521],[112,60,78,0.7301736632556279],[112,60,79,0.7465592350157453],[112,61,64,0.2549164704845616],[112,61,65,0.30321420115064723],[112,61,66,0.33649956101887585],[112,61,67,0.3535812883729928],[112,61,68,0.3600380699455621],[112,61,69,0.36255469578484584],[112,61,70,0.36753971030028243],[112,61,71,0.3810926348620895],[112,61,72,0.40748412796073485],[112,61,73,0.4333878067303723],[112,61,74,0.4595096692887125],[112,61,75,0.4800489878247969],[112,61,76,0.506070271776172],[112,61,77,0.5299920355677149],[112,61,78,0.5491075619213494],[112,61,79,0.5691292652910945],[112,62,64,0.08995226736406439],[112,62,65,0.11093043233837355],[112,62,66,0.14561014572138803],[112,62,67,0.1618459464685634],[112,62,68,0.16894191180106216],[112,62,69,0.1721523776585006],[112,62,70,0.1761021198415907],[112,62,71,0.19175481455288088],[112,62,72,0.21944936702113416],[112,62,73,0.2455370455722404],[112,62,74,0.2703744387172241],[112,62,75,0.29213280833000044],[112,62,76,0.31879845181334254],[112,62,77,0.34173049088728286],[112,62,78,0.3614902969414109],[112,62,79,0.3827044919974137],[112,63,64,-0.030625767150497904],[112,63,65,-0.023086520814565997],[112,63,66,-0.013685367296213058],[112,63,67,-0.009100372771630838],[112,63,68,-0.009784194355179049],[112,63,69,-0.010580806139487267],[112,63,70,-0.007913571956888327],[112,63,71,0.0032876049292739074],[112,63,72,0.008388461657079405],[112,63,73,0.012806084624186101],[112,63,74,0.013263282477213909],[112,63,75,0.03399682647730838],[112,63,76,0.061036130344975736],[112,63,77,0.08186935421862912],[112,63,78,0.10441602143380406],[112,63,79,0.12219392792984655],[112,64,64,-0.07055635993160399],[112,64,65,-0.06180143143379259],[112,64,66,-0.05274716210213019],[112,64,67,-0.04769106018501329],[112,64,68,-0.0489390815539857],[112,64,69,-0.05085060417875556],[112,64,70,-0.04687164383895914],[112,64,71,-0.03747275933484104],[112,64,72,-0.03173896591897517],[112,64,73,-0.02715932948538835],[112,64,74,-0.024245737102583875],[112,64,75,-0.022485375465017873],[112,64,76,-0.01492237240575467],[112,64,77,-0.008348481100640404],[112,64,78,-0.0013906835535567041],[112,64,79,0.0026845327432990784],[112,65,64,-0.11917248509507603],[112,65,65,-0.10748547885246122],[112,65,66,-0.1024112343361554],[112,65,67,-0.09834430711778133],[112,65,68,-0.09972082448159553],[112,65,69,-0.10064354221483732],[112,65,70,-0.09481561169570889],[112,65,71,-0.0877770290099173],[112,65,72,-0.08093744738333625],[112,65,73,-0.07525239577724908],[112,65,74,-0.07461362175679528],[112,65,75,-0.07138992548175277],[112,65,76,-0.06573034354096992],[112,65,77,-0.05969384409493299],[112,65,78,-0.051718194143031845],[112,65,79,-0.046714347759757746],[112,66,64,-0.1718262335738323],[112,66,65,-0.16181574907303217],[112,66,66,-0.1569325529546464],[112,66,67,-0.1534131238141107],[112,66,68,-0.15336021832196378],[112,66,69,-0.1551912878442819],[112,66,70,-0.1470781684938501],[112,66,71,-0.14311372837633785],[112,66,72,-0.13468369965943905],[112,66,73,-0.12974613687476694],[112,66,74,-0.12752616454835314],[112,66,75,-0.1248636389211709],[112,66,76,-0.12050654064415879],[112,66,77,-0.11468824870544973],[112,66,78,-0.10689377266038745],[112,66,79,-0.10106846600874975],[112,67,64,-0.21844271041994756],[112,67,65,-0.20882448940559842],[112,67,66,-0.2061985029508353],[112,67,67,-0.20226459645325384],[112,67,68,-0.20147295566730664],[112,67,69,-0.2033924826078083],[112,67,70,-0.1961263269768908],[112,67,71,-0.1933653656273917],[112,67,72,-0.18501166587732115],[112,67,73,-0.1766223958829036],[112,67,74,-0.1755389113374528],[112,67,75,-0.17296055852040493],[112,67,76,-0.16668971519706965],[112,67,77,-0.16350866099186312],[112,67,78,-0.15864123931230178],[112,67,79,-0.15082368390226267],[112,68,64,-0.35245072740346994],[112,68,65,-0.34494353359272767],[112,68,66,-0.3407674047305211],[112,68,67,-0.33842353701594996],[112,68,68,-0.33781327570898123],[112,68,69,-0.3370021342062321],[112,68,70,-0.33377647343354583],[112,68,71,-0.32694423416956186],[112,68,72,-0.3198718801090378],[112,68,73,-0.3114723615763106],[112,68,74,-0.30968858545693434],[112,68,75,-0.307747365470765],[112,68,76,-0.30226980571932693],[112,68,77,-0.2984279094297535],[112,68,78,-0.2955003349764449],[112,68,79,-0.28844452875085846],[112,69,64,-0.39592917953427054],[112,69,65,-0.38892338364309587],[112,69,66,-0.39074704180165154],[112,69,67,-0.39038766674148817],[112,69,68,-0.3887145150828818],[112,69,69,-0.38696480322011173],[112,69,70,-0.38430890374869964],[112,69,71,-0.3758707623947365],[112,69,72,-0.36482314151577083],[112,69,73,-0.3566452094094115],[112,69,74,-0.3523332928840309],[112,69,75,-0.3497519794717256],[112,69,76,-0.35002819965661836],[112,69,77,-0.34555599006898274],[112,69,78,-0.3499990953444354],[112,69,79,-0.3479478725538053],[112,70,64,-0.4460792531448298],[112,70,65,-0.4390955816790094],[112,70,66,-0.43779411777016886],[112,70,67,-0.4389113291016751],[112,70,68,-0.43720369358031974],[112,70,69,-0.4346061623437258],[112,70,70,-0.4323207918439465],[112,70,71,-0.4253933132617293],[112,70,72,-0.41488487400649077],[112,70,73,-0.4072519477695125],[112,70,74,-0.40454097975100356],[112,70,75,-0.39943034781064873],[112,70,76,-0.3981066554566016],[112,70,77,-0.3969881004520772],[112,70,78,-0.3993141257356994],[112,70,79,-0.3983793972289154],[112,71,64,-0.48414932445640413],[112,71,65,-0.4806512381803444],[112,71,66,-0.477345939164044],[112,71,67,-0.47690115552662243],[112,71,68,-0.47369448642758705],[112,71,69,-0.47222838592077543],[112,71,70,-0.47179342890088877],[112,71,71,-0.4647448031433147],[112,71,72,-0.45336564256784573],[112,71,73,-0.4482043535147934],[112,71,74,-0.44531691542265406],[112,71,75,-0.4393691813401104],[112,71,76,-0.4367601714950968],[112,71,77,-0.43610134967277214],[112,71,78,-0.43799234437959467],[112,71,79,-0.43678105374219167],[112,72,64,-0.5354141509444131],[112,72,65,-0.5311726738052964],[112,72,66,-0.525204672173379],[112,72,67,-0.5251487590740931],[112,72,68,-0.5206197576483269],[112,72,69,-0.5191436420837917],[112,72,70,-0.5202035819314583],[112,72,71,-0.5136191938413399],[112,72,72,-0.5059780299677082],[112,72,73,-0.49742307841936373],[112,72,74,-0.4963445687448038],[112,72,75,-0.48883462166781755],[112,72,76,-0.4863054240039728],[112,72,77,-0.48550648424846926],[112,72,78,-0.48869813520635413],[112,72,79,-0.4865784647696635],[112,73,64,-0.5933851403720588],[112,73,65,-0.5840709119164361],[112,73,66,-0.5737481407660698],[112,73,67,-0.5681114551460718],[112,73,68,-0.5644569812783499],[112,73,69,-0.5652978340406309],[112,73,70,-0.5671978765025246],[112,73,71,-0.565622243542932],[112,73,72,-0.5648245354046021],[112,73,73,-0.5572110781687448],[112,73,74,-0.555422671730842],[112,73,75,-0.5485001163354067],[112,73,76,-0.545264695255632],[112,73,77,-0.5405162317404013],[112,73,78,-0.5383940831375678],[112,73,79,-0.5338497026339187],[112,74,64,-0.6517076783285627],[112,74,65,-0.6352159328551411],[112,74,66,-0.625748166110429],[112,74,67,-0.621384869531652],[112,74,68,-0.6191200812957415],[112,74,69,-0.6209683012887369],[112,74,70,-0.6225612846418382],[112,74,71,-0.6234045145729277],[112,74,72,-0.6218095075480752],[112,74,73,-0.614066903021389],[112,74,74,-0.6122068717215695],[112,74,75,-0.6043988674224804],[112,74,76,-0.6016707386387069],[112,74,77,-0.5958233893158642],[112,74,78,-0.5917539131039591],[112,74,79,-0.586941373390206],[112,75,64,-0.700867460285219],[112,75,65,-0.6854838028336968],[112,75,66,-0.6738714041160134],[112,75,67,-0.671530086909313],[112,75,68,-0.6686631379723874],[112,75,69,-0.6708493979497754],[112,75,70,-0.6696673884114879],[112,75,71,-0.6738245300138632],[112,75,72,-0.6735879817883257],[112,75,73,-0.6655610524788065],[112,75,74,-0.6622418211375061],[112,75,75,-0.6569067390019276],[112,75,76,-0.6511191149291851],[112,75,77,-0.6467484534655892],[112,75,78,-0.6422770109749721],[112,75,79,-0.6349793937276034],[112,76,64,-0.7442421904272599],[112,76,65,-0.7310383051336181],[112,76,66,-0.7198653968949438],[112,76,67,-0.7155797073755964],[112,76,68,-0.7140136248021416],[112,76,69,-0.7154275096179806],[112,76,70,-0.7130450675158577],[112,76,71,-0.7163772791410041],[112,76,72,-0.7178984376740529],[112,76,73,-0.709277786277465],[112,76,74,-0.7065493937010517],[112,76,75,-0.7038997441365272],[112,76,76,-0.6986253328058023],[112,76,77,-0.6936908751549986],[112,76,78,-0.6888041997555634],[112,76,79,-0.6833119498484816],[112,77,64,-0.7924392029958175],[112,77,65,-0.7776599424746831],[112,77,66,-0.7660204888810778],[112,77,67,-0.7643179384177038],[112,77,68,-0.7636080470926683],[112,77,69,-0.7646870162576792],[112,77,70,-0.7625582798565429],[112,77,71,-0.7629022431583781],[112,77,72,-0.7663170605758568],[112,77,73,-0.7588015118894326],[112,77,74,-0.7544428317189316],[112,77,75,-0.7534959984807862],[112,77,76,-0.7487948488796322],[112,77,77,-0.7440505445482333],[112,77,78,-0.7394705488306119],[112,77,79,-0.7308813356657815],[112,78,64,-0.8406150323366781],[112,78,65,-0.8248081644509585],[112,78,66,-0.8135060929516434],[112,78,67,-0.8123617052768403],[112,78,68,-0.8135209797821485],[112,78,69,-0.8137778084484009],[112,78,70,-0.811535766233125],[112,78,71,-0.811571086110563],[112,78,72,-0.8152732292400104],[112,78,73,-0.8104157320220174],[112,78,74,-0.8053561928217229],[112,78,75,-0.8037897238754228],[112,78,76,-0.798075447573414],[112,78,77,-0.7930115015387199],[112,78,78,-0.789343635903256],[112,78,79,-0.7820625274803652],[112,79,64,-0.8795603265444539],[112,79,65,-0.8647085801204955],[112,79,66,-0.8527648801283],[112,79,67,-0.8515787740339955],[112,79,68,-0.8517041152661375],[112,79,69,-0.8536735978672032],[112,79,70,-0.8521248351848107],[112,79,71,-0.8514396059833005],[112,79,72,-0.8538299288978094],[112,79,73,-0.8492197629309869],[112,79,74,-0.8464673490573049],[112,79,75,-0.8409835138289077],[112,79,76,-0.8378111844464018],[112,79,77,-0.8323759980690738],[112,79,78,-0.8274306556361728],[112,79,79,-0.8211266860869724],[112,80,64,-0.9317018502876784],[112,80,65,-0.9153206549849003],[112,80,66,-0.902632895760451],[112,80,67,-0.9004573772508424],[112,80,68,-0.9022273557230673],[112,80,69,-0.9029827710354602],[112,80,70,-0.902200563169267],[112,80,71,-0.9024509843200041],[112,80,72,-0.901876136509428],[112,80,73,-0.8960737793197695],[112,80,74,-0.8938960981945444],[112,80,75,-0.8901015523826435],[112,80,76,-0.8873508744931706],[112,80,77,-0.8814709078659613],[112,80,78,-0.8779468170745444],[112,80,79,-0.8716070092062093],[112,81,64,-0.9808336321730216],[112,81,65,-0.9655326209339303],[112,81,66,-0.9542916245798231],[112,81,67,-0.9469125166854548],[112,81,68,-0.9502152848576173],[112,81,69,-0.9509716658004509],[112,81,70,-0.9494127188524104],[112,81,71,-0.9481620934113331],[112,81,72,-0.9427464003549952],[112,81,73,-0.9351728324676495],[112,81,74,-0.9317444182300925],[112,81,75,-0.9279814993773741],[112,81,76,-0.9274304502665857],[112,81,77,-0.927604815708336],[112,81,78,-0.9300171666115622],[112,81,79,-0.9269880157655249],[112,82,64,-1.0369534357650565],[112,82,65,-1.0200454916911608],[112,82,66,-1.010057551411579],[112,82,67,-1.001618564421064],[112,82,68,-1.004228901569557],[112,82,69,-1.0070820851242148],[112,82,70,-1.0060105542996722],[112,82,71,-1.0043079574096256],[112,82,72,-0.996532535581769],[112,82,73,-0.9889871637726854],[112,82,74,-0.9855418848535723],[112,82,75,-0.9800281934936383],[112,82,76,-0.9798981389646068],[112,82,77,-0.9808573832557786],[112,82,78,-0.9832906443470583],[112,82,79,-0.9770247468287155],[112,83,64,-1.0876615907856948],[112,83,65,-1.070865398474075],[112,83,66,-1.060755988469498],[112,83,67,-1.0500341824129782],[112,83,68,-1.0545644328793065],[112,83,69,-1.055591084379559],[112,83,70,-1.0560672157847528],[112,83,71,-1.0553292043730684],[112,83,72,-1.0452994081486786],[112,83,73,-1.0359871372322393],[112,83,74,-1.0325474764863851],[112,83,75,-1.0288828760959445],[112,83,76,-1.0292921352645865],[112,83,77,-1.0312251345397974],[112,83,78,-1.0331884074616706],[112,83,79,-1.0266339332138075],[112,84,64,-1.1338699066155988],[112,84,65,-1.1177912785708564],[112,84,66,-1.1063700240758143],[112,84,67,-1.0986854566851667],[112,84,68,-1.0997607634786462],[112,84,69,-1.1035488649400809],[112,84,70,-1.1024971017455794],[112,84,71,-1.1026911822308465],[112,84,72,-1.093018554681983],[112,84,73,-1.082089336461283],[112,84,74,-1.0814739378849363],[112,84,75,-1.0772420202282833],[112,84,76,-1.0790725229774012],[112,84,77,-1.0794533123310714],[112,84,78,-1.0803744289419608],[112,84,79,-1.075840018653538],[112,85,64,-1.1771742980042348],[112,85,65,-1.1625112585655102],[112,85,66,-1.152104212406095],[112,85,67,-1.1499804523472976],[112,85,68,-1.1490882221976313],[112,85,69,-1.1542100138021218],[112,85,70,-1.1535801030588628],[112,85,71,-1.1571219124251173],[112,85,72,-1.1517052326645583],[112,85,73,-1.1407149518189625],[112,85,74,-1.142758615683813],[112,85,75,-1.139417661045519],[112,85,76,-1.1356217115945395],[112,85,77,-1.1285941749779842],[112,85,78,-1.1223920906615639],[112,85,79,-1.112518471625896],[112,86,64,-1.2220332872770043],[112,86,65,-1.207226509372193],[112,86,66,-1.1983050763091005],[112,86,67,-1.1980788788982915],[112,86,68,-1.1988020345703847],[112,86,69,-1.2013723600296808],[112,86,70,-1.2029980513068081],[112,86,71,-1.2076386558300989],[112,86,72,-1.2006311735712458],[112,86,73,-1.1919800501892466],[112,86,74,-1.1907679514039782],[112,86,75,-1.1905756286630007],[112,86,76,-1.1871684238917868],[112,86,77,-1.1779878481851753],[112,86,78,-1.1697882804010789],[112,86,79,-1.1613639911525824],[112,87,64,-1.2577431035368598],[112,87,65,-1.244030190020095],[112,87,66,-1.237755666362695],[112,87,67,-1.2357736392570684],[112,87,68,-1.2363525738892878],[112,87,69,-1.2387411168752418],[112,87,70,-1.2420043679559836],[112,87,71,-1.2460953516261148],[112,87,72,-1.239851217648457],[112,87,73,-1.2323955378457314],[112,87,74,-1.2310009157551645],[112,87,75,-1.2309280711541493],[112,87,76,-1.2280747345043854],[112,87,77,-1.218003579465275],[112,87,78,-1.2091701661943302],[112,87,79,-1.2013934261658843],[112,88,64,-1.305128079099175],[112,88,65,-1.292963438295736],[112,88,66,-1.2859348714219654],[112,88,67,-1.284667730953419],[112,88,68,-1.2839768804148386],[112,88,69,-1.2837036224147025],[112,88,70,-1.2887173671776657],[112,88,71,-1.2923701343294467],[112,88,72,-1.287902205887777],[112,88,73,-1.2785089558859934],[112,88,74,-1.2808764801706887],[112,88,75,-1.2818780587153713],[112,88,76,-1.2792497589871965],[112,88,77,-1.2674777745897121],[112,88,78,-1.2593677582695488],[112,88,79,-1.2514846572722695],[112,89,64,-1.3551820928570777],[112,89,65,-1.341955713960001],[112,89,66,-1.332596708795636],[112,89,67,-1.3308073920771017],[112,89,68,-1.3312936957189472],[112,89,69,-1.3318080594360866],[112,89,70,-1.337221108241027],[112,89,71,-1.3367491974720855],[112,89,72,-1.334090423831125],[112,89,73,-1.3268628213503733],[112,89,74,-1.3301040346470738],[112,89,75,-1.329822918665374],[112,89,76,-1.327223533042321],[112,89,77,-1.3194972619620733],[112,89,78,-1.3086923153415189],[112,89,79,-1.3006053374650213],[112,90,64,-1.4089911543516702],[112,90,65,-1.3938559288894907],[112,90,66,-1.3853391767734626],[112,90,67,-1.381962698819653],[112,90,68,-1.3839737911782746],[112,90,69,-1.385061760170019],[112,90,70,-1.3881166791991395],[112,90,71,-1.39009203854243],[112,90,72,-1.3866810479935499],[112,90,73,-1.3792962866685823],[112,90,74,-1.3862472950676146],[112,90,75,-1.384191460349822],[112,90,76,-1.3809800050256602],[112,90,77,-1.376751662101495],[112,90,78,-1.3654984370183652],[112,90,79,-1.357034869666361],[112,91,64,-1.4543419337622903],[112,91,65,-1.4416705107682168],[112,91,66,-1.4329545450476484],[112,91,67,-1.4280366321561184],[112,91,68,-1.4302091811688014],[112,91,69,-1.4313640425133975],[112,91,70,-1.4339793995577343],[112,91,71,-1.438778706585946],[112,91,72,-1.4371629384485884],[112,91,73,-1.432729801849529],[112,91,74,-1.4344538819688721],[112,91,75,-1.4349751339748522],[112,91,76,-1.4303532509452594],[112,91,77,-1.4275333299682247],[112,91,78,-1.4190461610107303],[112,91,79,-1.4113239139007947],[112,92,64,-1.500313573100467],[112,92,65,-1.4877768612570577],[112,92,66,-1.4771474414349648],[112,92,67,-1.473661842793136],[112,92,68,-1.4769258752653747],[112,92,69,-1.4809431612148023],[112,92,70,-1.4856627964487499],[112,92,71,-1.4865952644769638],[112,92,72,-1.4881669706618128],[112,92,73,-1.485540991618199],[112,92,74,-1.4825085379378053],[112,92,75,-1.485504208178773],[112,92,76,-1.4796714474295383],[112,92,77,-1.4800892639937753],[112,92,78,-1.476833293637813],[112,92,79,-1.4682278827386603],[112,93,64,-1.5503287458502126],[112,93,65,-1.537139216703678],[112,93,66,-1.5244950716542955],[112,93,67,-1.5213128148270627],[112,93,68,-1.5250349169706816],[112,93,69,-1.5304024316480198],[112,93,70,-1.5335640871984155],[112,93,71,-1.5323377310355892],[112,93,72,-1.5281149321296694],[112,93,73,-1.522317484615958],[112,93,74,-1.5202976355685593],[112,93,75,-1.5223354105664442],[112,93,76,-1.5220954203364618],[112,93,77,-1.5259860110794845],[112,93,78,-1.5309506964419788],[112,93,79,-1.5288827872104793],[112,94,64,-1.594658879109652],[112,94,65,-1.5815463201731137],[112,94,66,-1.5715499789416771],[112,94,67,-1.5709456979865317],[112,94,68,-1.575086800591963],[112,94,69,-1.57717975580991],[112,94,70,-1.577569395687268],[112,94,71,-1.577892272688684],[112,94,72,-1.575505798506177],[112,94,73,-1.5695447577333093],[112,94,74,-1.569532375014127],[112,94,75,-1.5682607798791284],[112,94,76,-1.5698826422405525],[112,94,77,-1.57496471412659],[112,94,78,-1.577884033199718],[112,94,79,-1.576214971133409],[112,95,64,-1.6293803963139388],[112,95,65,-1.616033090167599],[112,95,66,-1.6077639601105773],[112,95,67,-1.610227313522706],[112,95,68,-1.6150617312046056],[112,95,69,-1.6172387226116043],[112,95,70,-1.6149919593979973],[112,95,71,-1.6160311072394515],[112,95,72,-1.6139792441723448],[112,95,73,-1.608347314957821],[112,95,74,-1.6110104013018915],[112,95,75,-1.6095459705805415],[112,95,76,-1.6133562266858084],[112,95,77,-1.6170639159927722],[112,95,78,-1.618536274388404],[112,95,79,-1.6167016912470924],[112,96,64,-1.6737539462493352],[112,96,65,-1.660666365229551],[112,96,66,-1.6551935906349293],[112,96,67,-1.6581155763174078],[112,96,68,-1.659387409394839],[112,96,69,-1.6619674467807664],[112,96,70,-1.662587392816587],[112,96,71,-1.6634382497528821],[112,96,72,-1.6609364605889692],[112,96,73,-1.6581534066140304],[112,96,74,-1.658897633900017],[112,96,75,-1.6600153697990017],[112,96,76,-1.6633054916336287],[112,96,77,-1.6675741202271694],[112,96,78,-1.6673792177994042],[112,96,79,-1.6639198087102176],[112,97,64,-1.7171899279171114],[112,97,65,-1.705626038220514],[112,97,66,-1.699294303220256],[112,97,67,-1.7011295553844525],[112,97,68,-1.7014591017954552],[112,97,69,-1.7054707695429887],[112,97,70,-1.7120541730751104],[112,97,71,-1.7166323064420865],[112,97,72,-1.716245961505312],[112,97,73,-1.7152918087950593],[112,97,74,-1.7175113450684234],[112,97,75,-1.721348568207204],[112,97,76,-1.7200717961035696],[112,97,77,-1.7165459665003622],[112,97,78,-1.7094738472717546],[112,97,79,-1.7025359104602218],[112,98,64,-1.7723981606495125],[112,98,65,-1.7604998519570325],[112,98,66,-1.7528668100427889],[112,98,67,-1.7519119054822205],[112,98,68,-1.7535514480724639],[112,98,69,-1.7580654504666675],[112,98,70,-1.7676439903017624],[112,98,71,-1.7733586202945477],[112,98,72,-1.770876040069959],[112,98,73,-1.7686717690171272],[112,98,74,-1.770998970675744],[112,98,75,-1.776694968433755],[112,98,76,-1.7738836570064707],[112,98,77,-1.769507075900169],[112,98,78,-1.7589818724228137],[112,98,79,-1.752695361302589],[112,99,64,-1.8196498730391124],[112,99,65,-1.8061495253109543],[112,99,66,-1.798863311353042],[112,99,67,-1.7975242112057532],[112,99,68,-1.803149812361856],[112,99,69,-1.806873314576658],[112,99,70,-1.816435015994713],[112,99,71,-1.8207766023854302],[112,99,72,-1.8194033440422943],[112,99,73,-1.818275088547093],[112,99,74,-1.8231171294739303],[112,99,75,-1.82769429926161],[112,99,76,-1.8253542474448305],[112,99,77,-1.8166106853540207],[112,99,78,-1.806231360463602],[112,99,79,-1.7961230151146834],[112,100,64,-1.8079697452384815],[112,100,65,-1.795750441264846],[112,100,66,-1.7859187071873839],[112,100,67,-1.7861170662453545],[112,100,68,-1.790116062921943],[112,100,69,-1.7939898283246138],[112,100,70,-1.7995873531796531],[112,100,71,-1.804476818047008],[112,100,72,-1.8071366628503076],[112,100,73,-1.8049871496445415],[112,100,74,-1.8125388346952402],[112,100,75,-1.8139053393439153],[112,100,76,-1.812710677869654],[112,100,77,-1.8030185523685716],[112,100,78,-1.7926725043177594],[112,100,79,-1.7801796579548492],[112,101,64,-1.8544867488831056],[112,101,65,-1.8436884499729198],[112,101,66,-1.8352911005631452],[112,101,67,-1.836338422686191],[112,101,68,-1.8377979865431184],[112,101,69,-1.840218915726048],[112,101,70,-1.8446062379315142],[112,101,71,-1.8518662938971269],[112,101,72,-1.8567478348170525],[112,101,73,-1.855581071424785],[112,101,74,-1.8596933012261068],[112,101,75,-1.8619723367239922],[112,101,76,-1.8594489594534502],[112,101,77,-1.851565368267604],[112,101,78,-1.8398666494324594],[112,101,79,-1.8251585116411888],[112,102,64,-1.9005784430336568],[112,102,65,-1.8907603937399462],[112,102,66,-1.8856433686626],[112,102,67,-1.885208144786141],[112,102,68,-1.8842433656270532],[112,102,69,-1.8877321332218702],[112,102,70,-1.89068559546002],[112,102,71,-1.9002070570144933],[112,102,72,-1.9034366970997456],[112,102,73,-1.9045890519468207],[112,102,74,-1.910107454718748],[112,102,75,-1.9100094408488109],[112,102,76,-1.9075274207369626],[112,102,77,-1.898100404345244],[112,102,78,-1.8880182323856132],[112,102,79,-1.874194992847545],[112,103,64,-1.9401245512695477],[112,103,65,-1.9305309142194982],[112,103,66,-1.9255164687709863],[112,103,67,-1.9257349036042637],[112,103,68,-1.9248727155785161],[112,103,69,-1.9310231856071383],[112,103,70,-1.9314897622407725],[112,103,71,-1.9409223924882815],[112,103,72,-1.94105433377639],[112,103,73,-1.946767920038568],[112,103,74,-1.951496976294424],[112,103,75,-1.9521222907300808],[112,103,76,-1.9473677699060987],[112,103,77,-1.9392796219124642],[112,103,78,-1.9300654301801634],[112,103,79,-1.9198961425689358],[112,104,64,-1.9918928212272569],[112,104,65,-1.9825809569516724],[112,104,66,-1.975037191695042],[112,104,67,-1.9726768783695112],[112,104,68,-1.9757448269135667],[112,104,69,-1.9810753563927683],[112,104,70,-1.9843007679565852],[112,104,71,-1.9877227406662645],[112,104,72,-1.990831444276271],[112,104,73,-1.995908734592918],[112,104,74,-1.9996277737624006],[112,104,75,-1.9981824835186734],[112,104,76,-1.994255895735892],[112,104,77,-1.9887998003746805],[112,104,78,-1.9794138563149595],[112,104,79,-1.9676616401655338],[112,105,64,-2.0421214076598804],[112,105,65,-2.030287716463514],[112,105,66,-2.0201328553423603],[112,105,67,-2.016338014936197],[112,105,68,-2.0215616599269617],[112,105,69,-2.026180953333263],[112,105,70,-2.0294876637327994],[112,105,71,-2.0315198259274645],[112,105,72,-2.0339364348323885],[112,105,73,-2.037223092978866],[112,105,74,-2.038556731573271],[112,105,75,-2.038284904639804],[112,105,76,-2.037400969494717],[112,105,77,-2.033614333075376],[112,105,78,-2.0268089273750323],[112,105,79,-2.017476636965094],[112,106,64,-2.09760308206147],[112,106,65,-2.0844776063294908],[112,106,66,-2.0776440484433283],[112,106,67,-2.071395732770741],[112,106,68,-2.0748006721588528],[112,106,69,-2.0797573766146806],[112,106,70,-2.0822385054358126],[112,106,71,-2.087092284213289],[112,106,72,-2.0853326858331185],[112,106,73,-2.0899754769420498],[112,106,74,-2.092924807557622],[112,106,75,-2.0928817375513096],[112,106,76,-2.0902686743077803],[112,106,77,-2.0828219322488892],[112,106,78,-2.077140592709141],[112,106,79,-2.068495622818676],[112,107,64,-2.144629411531867],[112,107,65,-2.1348318190393454],[112,107,66,-2.127629256738745],[112,107,67,-2.1217379681341377],[112,107,68,-2.1234113824918492],[112,107,69,-2.129949068415607],[112,107,70,-2.1334183341858477],[112,107,71,-2.1356361876289034],[112,107,72,-2.13292411259517],[112,107,73,-2.138038056664513],[112,107,74,-2.1432172535722223],[112,107,75,-2.141186176010817],[112,107,76,-2.1358814584958585],[112,107,77,-2.1336744914246384],[112,107,78,-2.1248813499379504],[112,107,79,-2.116395410026716],[112,108,64,-2.192370588035487],[112,108,65,-2.1819700875842973],[112,108,66,-2.176931739611764],[112,108,67,-2.1750559184262177],[112,108,68,-2.175878929047611],[112,108,69,-2.181451004177251],[112,108,70,-2.185857925312121],[112,108,71,-2.188827845736336],[112,108,72,-2.1899737109754445],[112,108,73,-2.192621567418702],[112,108,74,-2.198272234313141],[112,108,75,-2.1949943251783504],[112,108,76,-2.1873585469543624],[112,108,77,-2.184679866706277],[112,108,78,-2.178131740278338],[112,108,79,-2.166313550622383],[112,109,64,-2.2423983282539823],[112,109,65,-2.2342923197622886],[112,109,66,-2.2291483736539566],[112,109,67,-2.2301076476375195],[112,109,68,-2.2316695793519474],[112,109,69,-2.237629061516391],[112,109,70,-2.240499911426265],[112,109,71,-2.246459408788059],[112,109,72,-2.25066394195706],[112,109,73,-2.2509709857140776],[112,109,74,-2.252897339610259],[112,109,75,-2.252887135626828],[112,109,76,-2.2412405570069924],[112,109,77,-2.2328812209585487],[112,109,78,-2.222667564414042],[112,109,79,-2.209320101049149],[112,110,64,-2.2892615567664865],[112,110,65,-2.2812193586980545],[112,110,66,-2.275747700039927],[112,110,67,-2.277977763605022],[112,110,68,-2.2817098278237173],[112,110,69,-2.284204364102261],[112,110,70,-2.2895880949454397],[112,110,71,-2.295180289391388],[112,110,72,-2.2996400578790066],[112,110,73,-2.3002440311700814],[112,110,74,-2.3024679595112376],[112,110,75,-2.302673107829999],[112,110,76,-2.2924311721359394],[112,110,77,-2.279660357848593],[112,110,78,-2.2695446935337333],[112,110,79,-2.254904188702319],[112,111,64,-2.3293002944285988],[112,111,65,-2.323127270063754],[112,111,66,-2.3160452619335055],[112,111,67,-2.3189564408222676],[112,111,68,-2.3210401716386633],[112,111,69,-2.3258112198295793],[112,111,70,-2.3335641324549052],[112,111,71,-2.3398044632117854],[112,111,72,-2.344574593328423],[112,111,73,-2.343568364260466],[112,111,74,-2.344891931301466],[112,111,75,-2.3453473910188385],[112,111,76,-2.3382347759644904],[112,111,77,-2.3231033688378124],[112,111,78,-2.313667865109216],[112,111,79,-2.299417308865269],[112,112,64,-2.3795660894407638],[112,112,65,-2.3693773451483104],[112,112,66,-2.3651792346718508],[112,112,67,-2.3691628359757013],[112,112,68,-2.3689783005995246],[112,112,69,-2.3718050394720107],[112,112,70,-2.3831396756099936],[112,112,71,-2.3923848655033733],[112,112,72,-2.3931852476194906],[112,112,73,-2.3921800422044455],[112,112,74,-2.3917677241163604],[112,112,75,-2.3911801773113446],[112,112,76,-2.387245962581189],[112,112,77,-2.3745800122246474],[112,112,78,-2.3591342079478466],[112,112,79,-2.3469370634239053],[112,113,64,-2.4243725345187688],[112,113,65,-2.414993399331872],[112,113,66,-2.4135099391229615],[112,113,67,-2.417134190461177],[112,113,68,-2.4177996437679115],[112,113,69,-2.420719207186861],[112,113,70,-2.430554157531102],[112,113,71,-2.4405274839038045],[112,113,72,-2.4405565477209668],[112,113,73,-2.4374595834965973],[112,113,74,-2.4398871809237774],[112,113,75,-2.4392742527826172],[112,113,76,-2.437143185503704],[112,113,77,-2.4232054867955553],[112,113,78,-2.4060907222907093],[112,113,79,-2.392691045590259],[112,114,64,-2.476009165830415],[112,114,65,-2.4695088835415624],[112,114,66,-2.465207619962656],[112,114,67,-2.4702787322836204],[112,114,68,-2.47270349877607],[112,114,69,-2.4728245395746766],[112,114,70,-2.48257745019935],[112,114,71,-2.4920830613618548],[112,114,72,-2.4932270330925848],[112,114,73,-2.4910808615265205],[112,114,74,-2.4930004748896013],[112,114,75,-2.492269698089077],[112,114,76,-2.487863936879292],[112,114,77,-2.477051713422396],[112,114,78,-2.4588408505906982],[112,114,79,-2.4414742850192366],[112,115,64,-2.521983018636309],[112,115,65,-2.5142311621702365],[112,115,66,-2.511208136440631],[112,115,67,-2.51689195961933],[112,115,68,-2.518856325962824],[112,115,69,-2.5222298078890035],[112,115,70,-2.531096905365755],[112,115,71,-2.539143567567687],[112,115,72,-2.5413303617304472],[112,115,73,-2.5385272033196498],[112,115,74,-2.5383492075601044],[112,115,75,-2.541414712891411],[112,115,76,-2.532680684830672],[112,115,77,-2.523276665609581],[112,115,78,-2.5094598052359403],[112,115,79,-2.488203615548148],[112,116,64,-2.565684799921886],[112,116,65,-2.555927234460278],[112,116,66,-2.550222487058521],[112,116,67,-2.5533081381602085],[112,116,68,-2.5579452076743827],[112,116,69,-2.5587840370607875],[112,116,70,-2.567570797041857],[112,116,71,-2.5748760253422174],[112,116,72,-2.5766349997658415],[112,116,73,-2.5748715292885294],[112,116,74,-2.57643072793797],[112,116,75,-2.5779350036869593],[112,116,76,-2.5689563919936957],[112,116,77,-2.558914465876126],[112,116,78,-2.548062203499675],[112,116,79,-2.528637441980709],[112,117,64,-2.61764426892466],[112,117,65,-2.6046937672247625],[112,117,66,-2.5996346319987076],[112,117,67,-2.601362558156796],[112,117,68,-2.6036079560356042],[112,117,69,-2.6093471115984888],[112,117,70,-2.617232048323649],[112,117,71,-2.624360106558383],[112,117,72,-2.624249176147409],[112,117,73,-2.6186081670994774],[112,117,74,-2.6216370575434658],[112,117,75,-2.618961793035343],[112,117,76,-2.609197604329584],[112,117,77,-2.5983290682877613],[112,117,78,-2.588229788023947],[112,117,79,-2.5697811887764646],[112,118,64,-2.6652800450532963],[112,118,65,-2.6528281923944204],[112,118,66,-2.6478071437107196],[112,118,67,-2.6483193488315053],[112,118,68,-2.6521040702174816],[112,118,69,-2.6578451128714047],[112,118,70,-2.6643045787046744],[112,118,71,-2.6719988519916575],[112,118,72,-2.6728768296515977],[112,118,73,-2.6673189984136423],[112,118,74,-2.6705891220899463],[112,118,75,-2.6658722233888392],[112,118,76,-2.6567602081203763],[112,118,77,-2.6450569869253124],[112,118,78,-2.6350292028009954],[112,118,79,-2.617666966409416],[112,119,64,-2.702998598692877],[112,119,65,-2.692168471691412],[112,119,66,-2.6868301953700655],[112,119,67,-2.687154155620457],[112,119,68,-2.6914891198139403],[112,119,69,-2.6984349328596244],[112,119,70,-2.7054365053398075],[112,119,71,-2.713829050552779],[112,119,72,-2.716368210868026],[112,119,73,-2.71091143820043],[112,119,74,-2.7142964934915526],[112,119,75,-2.7115737581793478],[112,119,76,-2.7028607984760504],[112,119,77,-2.6907885334193145],[112,119,78,-2.6816185466086973],[112,119,79,-2.664601972029226],[112,120,64,-2.748731247988619],[112,120,65,-2.740535883487575],[112,120,66,-2.7336980463626155],[112,120,67,-2.7327803468418477],[112,120,68,-2.738250970477192],[112,120,69,-2.7447563186222825],[112,120,70,-2.7516636445523215],[112,120,71,-2.7603155851596686],[112,120,72,-2.7632759895210834],[112,120,73,-2.760081836534655],[112,120,74,-2.7626562666971366],[112,120,75,-2.758551822497537],[112,120,76,-2.749812158341239],[112,120,77,-2.737673014705528],[112,120,78,-2.7291133794385054],[112,120,79,-2.7137987839488913],[112,121,64,-2.7919852155972475],[112,121,65,-2.785032001881365],[112,121,66,-2.779457325203944],[112,121,67,-2.7757698068039844],[112,121,68,-2.781325085792454],[112,121,69,-2.788037975326414],[112,121,70,-2.797608800068244],[112,121,71,-2.809040511460728],[112,121,72,-2.812134903410806],[112,121,73,-2.8146198442074035],[112,121,74,-2.8148634037694],[112,121,75,-2.8086260562758323],[112,121,76,-2.801472557550215],[112,121,77,-2.7911732297320198],[112,121,78,-2.78473751278245],[112,121,79,-2.780105848945064],[112,122,64,-2.8442130863118473],[112,122,65,-2.8353598773675053],[112,122,66,-2.8332011989059698],[112,122,67,-2.8304062180161607],[112,122,68,-2.8325174118906977],[112,122,69,-2.8423323567053957],[112,122,70,-2.8528929289451455],[112,122,71,-2.8627980478912316],[112,122,72,-2.865938318358916],[112,122,73,-2.8691063957563836],[112,122,74,-2.8663113909192117],[112,122,75,-2.8592186639167085],[112,122,76,-2.8520774745946946],[112,122,77,-2.845104189386685],[112,122,78,-2.8386052803581623],[112,122,79,-2.8283164330555395],[112,123,64,-2.8906692692316285],[112,123,65,-2.8834944866178325],[112,123,66,-2.8811147035996463],[112,123,67,-2.8779988796332354],[112,123,68,-2.881891818151074],[112,123,69,-2.8912979456967784],[112,123,70,-2.903852801243456],[112,123,71,-2.9133325918690396],[112,123,72,-2.9156641437580206],[112,123,73,-2.9159036398190272],[112,123,74,-2.9103801746146325],[112,123,75,-2.908075537884556],[112,123,76,-2.9013130550998474],[112,123,77,-2.8956052302050566],[112,123,78,-2.88886953804559],[112,123,79,-2.888868721611913],[112,124,64,-2.931087569520729],[112,124,65,-2.9300189186320487],[112,124,66,-2.930104708445891],[112,124,67,-2.929978901967969],[112,124,68,-2.935595591329827],[112,124,69,-2.944591989396165],[112,124,70,-2.9585975727996257],[112,124,71,-2.96795367719351],[112,124,72,-2.9691306283749337],[112,124,73,-2.970033219903085],[112,124,74,-2.966978315476134],[112,124,75,-2.962882304757541],[112,124,76,-2.9577815680206703],[112,124,77,-2.951753358302982],[112,124,78,-2.9416881806275432],[112,124,79,-2.9439018675231163],[112,125,64,-2.9793836392038404],[112,125,65,-2.9791061520029887],[112,125,66,-2.980990357300864],[112,125,67,-2.98141839091303],[112,125,68,-2.9842943185616035],[112,125,69,-2.994503338258116],[112,125,70,-3.0071242728085044],[112,125,71,-3.017148329383407],[112,125,72,-3.0183527979843583],[112,125,73,-3.0176968166417844],[112,125,74,-3.014117836734866],[112,125,75,-3.009528255961175],[112,125,76,-3.0050133597593476],[112,125,77,-2.9978081352628805],[112,125,78,-2.994565644325505],[112,125,79,-2.99656555911406],[112,126,64,-3.02707746543992],[112,126,65,-3.027742848395467],[112,126,66,-3.0291104415608565],[112,126,67,-3.031815839723917],[112,126,68,-3.0333278513231567],[112,126,69,-3.0435765935396306],[112,126,70,-3.0579680212972455],[112,126,71,-3.066489861694743],[112,126,72,-3.067993253227398],[112,126,73,-3.064340719095663],[112,126,74,-3.06191625551725],[112,126,75,-3.0590354032487115],[112,126,76,-3.0540048907240593],[112,126,77,-3.0456847685941497],[112,126,78,-3.076164928711967],[112,126,79,-3.087726590169813],[112,127,64,-3.068007215679093],[112,127,65,-3.0658777018903027],[112,127,66,-3.0677047491132066],[112,127,67,-3.071594749236782],[112,127,68,-3.0786224633477857],[112,127,69,-3.089125541564601],[112,127,70,-3.1052005425806404],[112,127,71,-3.1131137001352664],[112,127,72,-3.114774074454],[112,127,73,-3.1083265030961207],[112,127,74,-3.107521422926654],[112,127,75,-3.107659922151995],[112,127,76,-3.103985451851251],[112,127,77,-3.0934653308470974],[112,127,78,-3.0988437517660308],[112,127,79,-3.116009758226543],[112,128,64,-3.116444669167726],[112,128,65,-3.1126923040429433],[112,128,66,-3.1118552724442723],[112,128,67,-3.1179388996486086],[112,128,68,-3.1287866629164998],[112,128,69,-3.1395805862029627],[112,128,70,-3.155099716592019],[112,128,71,-3.1643676592782475],[112,128,72,-3.1637393953222848],[112,128,73,-3.1545049387124022],[112,128,74,-3.156098698089413],[112,128,75,-3.155958870505697],[112,128,76,-3.1513448743093244],[112,128,77,-3.1398137957854955],[112,128,78,-3.147363454025221],[112,128,79,-3.180061904439938],[112,129,64,-3.1621530831700837],[112,129,65,-3.159753239152252],[112,129,66,-3.1591869231329976],[112,129,67,-3.17006982476131],[112,129,68,-3.1829920032564383],[112,129,69,-3.1956147038659095],[112,129,70,-3.2075607018063],[112,129,71,-3.2152640534956567],[112,129,72,-3.209678352284737],[112,129,73,-3.200518214753131],[112,129,74,-3.203675259323191],[112,129,75,-3.199783451322858],[112,129,76,-3.1925894654448856],[112,129,77,-3.179365729399477],[112,129,78,-3.166125118881555],[112,129,79,-3.1941768260179924],[112,130,64,-3.2164716374977713],[112,130,65,-3.213722213121073],[112,130,66,-3.213218858224266],[112,130,67,-3.2241859275270874],[112,130,68,-3.23602448547399],[112,130,69,-3.24984104876111],[112,130,70,-3.2613630891319185],[112,130,71,-3.26672192271202],[112,130,72,-3.275560412393349],[112,130,73,-3.297378118026657],[112,130,74,-3.311200532140185],[112,130,75,-3.3307635447120534],[112,130,76,-3.360604607936621],[112,130,77,-3.3620570571421142],[112,130,78,-3.3518283172814316],[112,130,79,-3.3382030493141257],[112,131,64,-3.267597245076592],[112,131,65,-3.263267507209774],[112,131,66,-3.262729910310279],[112,131,67,-3.272236679337078],[112,131,68,-3.2835222906530803],[112,131,69,-3.2973421488849195],[112,131,70,-3.307664642647668],[112,131,71,-3.3208151740841823],[112,131,72,-3.3386440906982413],[112,131,73,-3.3628878551323274],[112,131,74,-3.39126546802536],[112,131,75,-3.401017046775156],[112,131,76,-3.419179751629919],[112,131,77,-3.4046238182713613],[112,131,78,-3.3945066735528115],[112,131,79,-3.379848286674751],[112,132,64,-3.3034185451420357],[112,132,65,-3.3027352489374273],[112,132,66,-3.305876999712037],[112,132,67,-3.3149607607427],[112,132,68,-3.329471593649461],[112,132,69,-3.343114285131298],[112,132,70,-3.3562127148471914],[112,132,71,-3.3734140817703007],[112,132,72,-3.389799890431016],[112,132,73,-3.413846570390776],[112,132,74,-3.443150627326327],[112,132,75,-3.4548757567529877],[112,132,76,-3.462447365390736],[112,132,77,-3.4482620773480326],[112,132,78,-3.434154693247402],[112,132,79,-3.4206666447361718],[112,133,64,-3.361275951604962],[112,133,65,-3.347068115595266],[112,133,66,-3.351701785567601],[112,133,67,-3.3557013405250222],[112,133,68,-3.3692183155402677],[112,133,69,-3.3830340248864936],[112,133,70,-3.3984799263490904],[112,133,71,-3.408007618712063],[112,133,72,-3.420104840581913],[112,133,73,-3.439977355837479],[112,133,74,-3.46591523394303],[112,133,75,-3.479334554177262],[112,133,76,-3.5021546168534945],[112,133,77,-3.488049780345746],[112,133,78,-3.471087836274811],[112,133,79,-3.457804983766502],[112,134,64,-3.409514916777874],[112,134,65,-3.3944239446999878],[112,134,66,-3.4002896348977134],[112,134,67,-3.403950523318531],[112,134,68,-3.417769266098622],[112,134,69,-3.4299501278189686],[112,134,70,-3.444844253052088],[112,134,71,-3.4518153088629937],[112,134,72,-3.4730772248238697],[112,134,73,-3.4894539945530445],[112,134,74,-3.5112820854622617],[112,134,75,-3.519877017593105],[112,134,76,-3.5355020691910073],[112,134,77,-3.520932836420765],[112,134,78,-3.5049677578266314],[112,134,79,-3.4929663971416707],[112,135,64,-3.434160876007555],[112,135,65,-3.4364424930784385],[112,135,66,-3.4423632708401977],[112,135,67,-3.4472886595568113],[112,135,68,-3.459847606870277],[112,135,69,-3.4720445930319146],[112,135,70,-3.4869722187049046],[112,135,71,-3.4945973720704893],[112,135,72,-3.50337156330993],[112,135,73,-3.518973099445755],[112,135,74,-3.534772076905947],[112,135,75,-3.5447753903765777],[112,135,76,-3.5673119932491835],[112,135,77,-3.5614910324421243],[112,135,78,-3.5459573778731532],[112,135,79,-3.533146486582647],[112,136,64,-3.4824967800356705],[112,136,65,-3.4849927847717312],[112,136,66,-3.489800234190775],[112,136,67,-3.4925058368679647],[112,136,68,-3.5050563294825245],[112,136,69,-3.5175707620555707],[112,136,70,-3.529199798409835],[112,136,71,-3.540194196380718],[112,136,72,-3.5528222419829367],[112,136,73,-3.5698157607941776],[112,136,74,-3.586668144692478],[112,136,75,-3.5957500754837373],[112,136,76,-3.6174092644023315],[112,136,77,-3.618535997914907],[112,136,78,-3.603739240007711],[112,136,79,-3.588337760124459],[112,137,64,-3.5475918031998637],[112,137,65,-3.532687050480751],[112,137,66,-3.5363831286568863],[112,137,67,-3.540099141596033],[112,137,68,-3.5501218048688523],[112,137,69,-3.5616618789639105],[112,137,70,-3.5713583351628944],[112,137,71,-3.5842227499790975],[112,137,72,-3.5950496225928337],[112,137,73,-3.611527908291],[112,137,74,-3.6239023006093034],[112,137,75,-3.624293787166655],[112,137,76,-3.6366960126290273],[112,137,77,-3.650410260857],[112,137,78,-3.638368502902656],[112,137,79,-3.624841404128391],[112,138,64,-3.5851601362704257],[112,138,65,-3.5841138968805972],[112,138,66,-3.587207694910427],[112,138,67,-3.593393654568198],[112,138,68,-3.6027516980112257],[112,138,69,-3.612721321971851],[112,138,70,-3.620136854091061],[112,138,71,-3.632072605927382],[112,138,72,-3.644530320538106],[112,138,73,-3.6502698046589286],[112,138,74,-3.661130633599173],[112,138,75,-3.6634506356227297],[112,138,76,-3.6776256280476654],[112,138,77,-3.694519741675205],[112,138,78,-3.6919390264984946],[112,138,79,-3.678338354045317],[112,139,64,-3.6309386813624034],[112,139,65,-3.630520746329277],[112,139,66,-3.633293611093413],[112,139,67,-3.638605252681679],[112,139,68,-3.6484798246975],[112,139,69,-3.6575591477547698],[112,139,70,-3.666212456132653],[112,139,71,-3.6780534227135093],[112,139,72,-3.6892798107659774],[112,139,73,-3.701305986320167],[112,139,74,-3.714600009986731],[112,139,75,-3.722421176996824],[112,139,76,-3.7381042191864307],[112,139,77,-3.753247537189733],[112,139,78,-3.736612263648194],[112,139,79,-3.7217934495525116],[112,140,64,-3.690245494711926],[112,140,65,-3.6838509583288808],[112,140,66,-3.682954866306919],[112,140,67,-3.682014991423618],[112,140,68,-3.6899074149691526],[112,140,69,-3.695109376434518],[112,140,70,-3.700491318036031],[112,140,71,-3.713231430426533],[112,140,72,-3.7238880761867263],[112,140,73,-3.7390083702209256],[112,140,74,-3.750315749984646],[112,140,75,-3.7683257918941933],[112,140,76,-3.7862000825777717],[112,140,77,-3.8011593836116626],[112,140,78,-3.7838003317053923],[112,140,79,-3.76851716457585],[112,141,64,-3.7436174077511417],[112,141,65,-3.7358838726741257],[112,141,66,-3.729096411496254],[112,141,67,-3.7257320476476],[112,141,68,-3.7327206062052083],[112,141,69,-3.7373835089971883],[112,141,70,-3.745087703559325],[112,141,71,-3.773251374076409],[112,141,72,-3.791277395901928],[112,141,73,-3.798655165224077],[112,141,74,-3.805379163538376],[112,141,75,-3.819726743732923],[112,141,76,-3.8292175597082543],[112,141,77,-3.8389628311650106],[112,141,78,-3.824455984172207],[112,141,79,-3.806596408345266],[112,142,64,-3.7905503326964696],[112,142,65,-3.7853368381700654],[112,142,66,-3.776790185676841],[112,142,67,-3.774003364444254],[112,142,68,-3.7761905342636366],[112,142,69,-3.7819450388749942],[112,142,70,-3.7905167860427538],[112,142,71,-3.81754118556193],[112,142,72,-3.8379909853324614],[112,142,73,-3.8462170455915277],[112,142,74,-3.8521202266913996],[112,142,75,-3.8673418746257453],[112,142,76,-3.875166957603557],[112,142,77,-3.8835815612240148],[112,142,78,-3.870331550037999],[112,142,79,-3.8529428565967314],[112,143,64,-3.832088309469009],[112,143,65,-3.8276740475430575],[112,143,66,-3.8186572438620643],[112,143,67,-3.8156337064432977],[112,143,68,-3.81519949701867],[112,143,69,-3.825153993370428],[112,143,70,-3.833699633978694],[112,143,71,-3.850773170853948],[112,143,72,-3.8685252952555023],[112,143,73,-3.8767689045939435],[112,143,74,-3.8850061707714216],[112,143,75,-3.9009929512978556],[112,143,76,-3.905294229154301],[112,143,77,-3.924105216725122],[112,143,78,-3.9112103546499335],[112,143,79,-3.890382123375533],[112,144,64,-3.880616042031175],[112,144,65,-3.874010354900884],[112,144,66,-3.86607702866578],[112,144,67,-3.8626396736179682],[112,144,68,-3.863266796256174],[112,144,69,-3.8710073189318606],[112,144,70,-3.882775878901182],[112,144,71,-3.8972686223838404],[112,144,72,-3.916058452394343],[112,144,73,-3.9233485024040347],[112,144,74,-3.935604047441816],[112,144,75,-3.9512189937233146],[112,144,76,-3.956620323304591],[112,144,77,-3.980068581966731],[112,144,78,-3.9651428054963573],[112,144,79,-3.945046566508367],[112,145,64,-3.9192196455715758],[112,145,65,-3.9157009946136827],[112,145,66,-3.911317875711282],[112,145,67,-3.9094388294415636],[112,145,68,-3.9136099495121246],[112,145,69,-3.9222052989050837],[112,145,70,-3.932143448900652],[112,145,71,-3.9433794778623694],[112,145,72,-3.951931244143024],[112,145,73,-3.9502834216897935],[112,145,74,-3.9535020705593102],[112,145,75,-3.9531790939024667],[112,145,76,-3.950774421312009],[112,145,77,-3.9725699226176987],[112,145,78,-3.979886328718268],[112,145,79,-3.9593053812778027],[112,146,64,-3.968711704928367],[112,146,65,-3.9672582597501136],[112,146,66,-3.9625776953330054],[112,146,67,-3.9619317487873666],[112,146,68,-3.966505450123428],[112,146,69,-3.972997333203379],[112,146,70,-3.9823711847068943],[112,146,71,-3.993312789972632],[112,146,72,-4.000220149218161],[112,146,73,-3.999720749086559],[112,146,74,-4.000768912313938],[112,146,75,-4.002127977847151],[112,146,76,-3.995921438032906],[112,146,77,-4.0135591773426995],[112,146,78,-4.0160397409398225],[112,146,79,-3.9992133908604917],[112,147,64,-4.017620639980775],[112,147,65,-4.014919970187949],[112,147,66,-4.009276724373288],[112,147,67,-4.009491570042183],[112,147,68,-4.012761836993155],[112,147,69,-4.0204971079913046],[112,147,70,-4.031177275412993],[112,147,71,-4.041418747324704],[112,147,72,-4.046684664125986],[112,147,73,-4.045733586567677],[112,147,74,-4.047920601824034],[112,147,75,-4.047541422917251],[112,147,76,-4.03574698493457],[112,147,77,-3.984232368670987],[112,147,78,-3.939080521180058],[112,147,79,-3.919600857030583],[112,148,64,-4.046991438608068],[112,148,65,-4.036676207867523],[112,148,66,-4.028441200118742],[112,148,67,-4.024419193158266],[112,148,68,-4.024448528758145],[112,148,69,-4.028396240085985],[112,148,70,-4.036664540292771],[112,148,71,-4.042614020598629],[112,148,72,-4.047518885582239],[112,148,73,-4.045830551515674],[112,148,74,-4.045520147429632],[112,148,75,-4.0444486506141395],[112,148,76,-4.022242295827082],[112,148,77,-3.992957277731916],[112,148,78,-3.9624437468990377],[112,148,79,-3.9484410361668845],[112,149,64,-4.094581282633303],[112,149,65,-4.085324111173147],[112,149,66,-4.0766821050467446],[112,149,67,-4.072802019279071],[112,149,68,-4.073502832319248],[112,149,69,-4.0754129544019255],[112,149,70,-4.082853984263593],[112,149,71,-4.0883897850501985],[112,149,72,-4.091972587017695],[112,149,73,-4.09012581970474],[112,149,74,-4.092948629948873],[112,149,75,-4.0883341329792735],[112,149,76,-4.072560428640279],[112,149,77,-4.047421986855996],[112,149,78,-4.023034672478833],[112,149,79,-4.007606711386335],[112,150,64,-4.144529527740523],[112,150,65,-4.132918631786766],[112,150,66,-4.125559080946455],[112,150,67,-4.119680812206258],[112,150,68,-4.121877549405883],[112,150,69,-4.123711556487877],[112,150,70,-4.128445217869534],[112,150,71,-4.133361359630687],[112,150,72,-4.135994135019884],[112,150,73,-4.1362414416451685],[112,150,74,-4.13798719491033],[112,150,75,-4.135151497992989],[112,150,76,-4.1190509928363825],[112,150,77,-4.089913984218064],[112,150,78,-4.069377717528432],[112,150,79,-4.052787660994448],[112,151,64,-4.187344766032772],[112,151,65,-4.178640618428634],[112,151,66,-4.169942562818038],[112,151,67,-4.161374600583426],[112,151,68,-4.1621282129248005],[112,151,69,-4.167307527284252],[112,151,70,-4.171613972226396],[112,151,71,-4.1767426844448785],[112,151,72,-4.182079154827557],[112,151,73,-4.180743086060613],[112,151,74,-4.185113752970795],[112,151,75,-4.183440661865653],[112,151,76,-4.173995038048979],[112,151,77,-4.14395278304086],[112,151,78,-4.1188448102924795],[112,151,79,-4.104827472107836],[112,152,64,-4.239758533644697],[112,152,65,-4.228514833575886],[112,152,66,-4.21786226430924],[112,152,67,-4.208762562480959],[112,152,68,-4.20848260240867],[112,152,69,-4.212147797101655],[112,152,70,-4.216065835678724],[112,152,71,-4.224012103675212],[112,152,72,-4.227173813925086],[112,152,73,-4.2264253954330275],[112,152,74,-4.230835138622867],[112,152,75,-4.22833119728035],[112,152,76,-4.2205965786781885],[112,152,77,-4.193836922962903],[112,152,78,-4.165794713950561],[112,152,79,-4.148183269166842],[112,153,64,-4.292660261138166],[112,153,65,-4.275868581643462],[112,153,66,-4.262535915155075],[112,153,67,-4.24752481374719],[112,153,68,-4.246299920641936],[112,153,69,-4.25116791377631],[112,153,70,-4.256764968145295],[112,153,71,-4.265661573749169],[112,153,72,-4.268678689181227],[112,153,73,-4.273047617363227],[112,153,74,-4.276239045332907],[112,153,75,-4.276342974223718],[112,153,76,-4.265071315864016],[112,153,77,-4.23908318978627],[112,153,78,-4.211557413323217],[112,153,79,-4.188662828633708],[112,154,64,-4.3448737910950825],[112,154,65,-4.329774393233641],[112,154,66,-4.314765459628308],[112,154,67,-4.300741153182144],[112,154,68,-4.298309076423639],[112,154,69,-4.303718078422437],[112,154,70,-4.308993862743135],[112,154,71,-4.31578829128808],[112,154,72,-4.319000812042161],[112,154,73,-4.3242428117456155],[112,154,74,-4.3285379850915655],[112,154,75,-4.330112664887423],[112,154,76,-4.31761141578539],[112,154,77,-4.292549345195695],[112,154,78,-4.267317837607008],[112,154,79,-4.235900284760752],[112,155,64,-4.390052006204543],[112,155,65,-4.37692755639372],[112,155,66,-4.361892248581463],[112,155,67,-4.34886402356255],[112,155,68,-4.3437485181798845],[112,155,69,-4.351276340403939],[112,155,70,-4.356121266793788],[112,155,71,-4.362094285090796],[112,155,72,-4.367805222331404],[112,155,73,-4.373164604326974],[112,155,74,-4.375671307633262],[112,155,75,-4.37661881775575],[112,155,76,-4.364389054629188],[112,155,77,-4.341461701006954],[112,155,78,-4.3178849976781395],[112,155,79,-4.2879654113282815],[112,156,64,-4.438268221328759],[112,156,65,-4.425553444802552],[112,156,66,-4.410963248057105],[112,156,67,-4.3994955267230775],[112,156,68,-4.394601412150044],[112,156,69,-4.39937816311679],[112,156,70,-4.4044838871702465],[112,156,71,-4.414410949846716],[112,156,72,-4.417640034081194],[112,156,73,-4.420906326034152],[112,156,74,-4.42670044730195],[112,156,75,-4.4257703873989795],[112,156,76,-4.413343273746206],[112,156,77,-4.392093114015899],[112,156,78,-4.3628089105864545],[112,156,79,-4.331783781406343],[112,157,64,-4.48530510077618],[112,157,65,-4.4746727110448665],[112,157,66,-4.4639781358833375],[112,157,67,-4.457293674059183],[112,157,68,-4.455129361381691],[112,157,69,-4.457941463031927],[112,157,70,-4.463668088536043],[112,157,71,-4.469519582940863],[112,157,72,-4.467802869124964],[112,157,73,-4.466361331088815],[112,157,74,-4.472226685715723],[112,157,75,-4.473346802328221],[112,157,76,-4.462769234413782],[112,157,77,-4.442812511118785],[112,157,78,-4.410098801644298],[112,157,79,-4.380229618576669],[112,158,64,-4.532631263749522],[112,158,65,-4.521297329478508],[112,158,66,-4.511210202144074],[112,158,67,-4.504426022438165],[112,158,68,-4.505244231687305],[112,158,69,-4.506685293440715],[112,158,70,-4.511968980721133],[112,158,71,-4.519676412444629],[112,158,72,-4.515938054856276],[112,158,73,-4.513646568917073],[112,158,74,-4.519365906550137],[112,158,75,-4.522907736854386],[112,158,76,-4.511373985279069],[112,158,77,-4.492271897654288],[112,158,78,-4.448802897204209],[112,158,79,-4.420691665194208],[112,159,64,-4.656522087110844],[112,159,65,-4.638147833970293],[112,159,66,-4.622556366824397],[112,159,67,-4.610824431498424],[112,159,68,-4.603795358372455],[112,159,69,-4.597463115048876],[112,159,70,-4.596280578156353],[112,159,71,-4.595026078340889],[112,159,72,-4.581821788650981],[112,159,73,-4.569839484986541],[112,159,74,-4.567769915453543],[112,159,75,-4.561284283306272],[112,159,76,-4.54230097352545],[112,159,77,-4.518448697756132],[112,159,78,-4.479483941467378],[112,159,79,-4.453933531601285],[112,160,64,-4.706631044603252],[112,160,65,-4.6861676209463266],[112,160,66,-4.66818156561527],[112,160,67,-4.655310213383072],[112,160,68,-4.648538588207739],[112,160,69,-4.645040031570402],[112,160,70,-4.645347453068718],[112,160,71,-4.642284725958465],[112,160,72,-4.631151820668878],[112,160,73,-4.6170369934035955],[112,160,74,-4.61606144051272],[112,160,75,-4.607324398528168],[112,160,76,-4.592790364999159],[112,160,77,-4.564933908494529],[112,160,78,-4.524180957115907],[112,160,79,-4.498057332844805],[112,161,64,-4.751756843871796],[112,161,65,-4.735026840486393],[112,161,66,-4.7136725230419545],[112,161,67,-4.700855497310272],[112,161,68,-4.694162436188557],[112,161,69,-4.691519693704399],[112,161,70,-4.69373706673795],[112,161,71,-4.689573632126587],[112,161,72,-4.681111904720836],[112,161,73,-4.665674844379098],[112,161,74,-4.662795444546874],[112,161,75,-4.656628652010943],[112,161,76,-4.639853819815755],[112,161,77,-4.61391818245087],[112,161,78,-4.568630566264694],[112,161,79,-4.540547857156624],[112,162,64,-4.801566313568529],[112,162,65,-4.784634211362394],[112,162,66,-4.7658374951617075],[112,162,67,-4.752718959732381],[112,162,68,-4.745393142676387],[112,162,69,-4.743063398569014],[112,162,70,-4.747392297502619],[112,162,71,-4.742617242281349],[112,162,72,-4.7336125061906715],[112,162,73,-4.717750490800447],[112,162,74,-4.715814312701032],[112,162,75,-4.708924473208993],[112,162,76,-4.688296332350726],[112,162,77,-4.665288659562326],[112,162,78,-4.624754338536556],[112,162,79,-4.593327775317059],[112,163,64,-4.847292407865188],[112,163,65,-4.829666968864144],[112,163,66,-4.8143253897576175],[112,163,67,-4.798894776234992],[112,163,68,-4.792832845196179],[112,163,69,-4.7915379466111485],[112,163,70,-4.7955541250765314],[112,163,71,-4.793876104307746],[112,163,72,-4.7830067461876915],[112,163,73,-4.766318613078633],[112,163,74,-4.763113554640198],[112,163,75,-4.756656327459343],[112,163,76,-4.735024608972742],[112,163,77,-4.710519797750335],[112,163,78,-4.678263646886672],[112,163,79,-4.6465836933871065],[112,164,64,-4.87002699331814],[112,164,65,-4.857642580104275],[112,164,66,-4.844984906840489],[112,164,67,-4.835828221814325],[112,164,68,-4.835402867165398],[112,164,69,-4.838882639481147],[112,164,70,-4.8458418844565685],[112,164,71,-4.845936437477563],[112,164,72,-4.834099127760179],[112,164,73,-4.816883095431521],[112,164,74,-4.8152364337828555],[112,164,75,-4.809846957764895],[112,164,76,-4.786869639123209],[112,164,77,-4.759028214568098],[112,164,78,-4.72684530126087],[112,164,79,-4.693746123956974],[112,165,64,-4.911243847811483],[112,165,65,-4.897008730090318],[112,165,66,-4.883743357215841],[112,165,67,-4.878409560002664],[112,165,68,-4.878586089930843],[112,165,69,-4.883573503479431],[112,165,70,-4.888666489992099],[112,165,71,-4.890265148519663],[112,165,72,-4.8792562853400145],[112,165,73,-4.865752540835133],[112,165,74,-4.864902431134311],[112,165,75,-4.857460746075723],[112,165,76,-4.83484134953258],[112,165,77,-4.803854469560798],[112,165,78,-4.771067512278397],[112,165,79,-4.7386245384665475],[112,166,64,-4.9562134261330675],[112,166,65,-4.941269066957491],[112,166,66,-4.929011566010216],[112,166,67,-4.928822078586846],[112,166,68,-4.9272684180263955],[112,166,69,-4.931253145762978],[112,166,70,-4.933645889594308],[112,166,71,-4.935364566379174],[112,166,72,-4.9265931549692485],[112,166,73,-4.916204232236234],[112,166,74,-4.912051144148411],[112,166,75,-4.905134678613668],[112,166,76,-4.883052557465545],[112,166,77,-4.851066291785285],[112,166,78,-4.816433369210644],[112,166,79,-4.784714375766527],[112,167,64,-4.994588946043409],[112,167,65,-4.981037920370663],[112,167,66,-4.971500381026911],[112,167,67,-4.970628090060608],[112,167,68,-4.970214102681408],[112,167,69,-4.973598671357453],[112,167,70,-4.975549421205348],[112,167,71,-4.978476806089403],[112,167,72,-4.9735023311576345],[112,167,73,-4.9648437146813125],[112,167,74,-4.9604275366486945],[112,167,75,-4.954854180606358],[112,167,76,-4.932331428375928],[112,167,77,-4.900247134779083],[112,167,78,-4.866492454619946],[112,167,79,-4.829794577888595],[112,168,64,-5.040370508250645],[112,168,65,-5.02610292623357],[112,168,66,-5.017555584583368],[112,168,67,-5.016626773214265],[112,168,68,-5.0177283903069245],[112,168,69,-5.020189768541175],[112,168,70,-5.021720851042188],[112,168,71,-5.024466046709215],[112,168,72,-5.020530780627415],[112,168,73,-5.013642902960281],[112,168,74,-5.0092035623683095],[112,168,75,-5.002488423421508],[112,168,76,-4.979806847233868],[112,168,77,-4.945048463409199],[112,168,78,-4.913470006677077],[112,168,79,-4.876053229401937],[112,169,64,-5.08851780053405],[112,169,65,-5.07402886381184],[112,169,66,-5.066231768811104],[112,169,67,-5.065661933254297],[112,169,68,-5.065086568066376],[112,169,69,-5.06848594225936],[112,169,70,-5.072315097288827],[112,169,71,-5.074684213588317],[112,169,72,-5.067441276719774],[112,169,73,-5.060345174738135],[112,169,74,-5.05899357871512],[112,169,75,-5.048739133923105],[112,169,76,-5.026446679987507],[112,169,77,-4.996749166206527],[112,169,78,-4.961982610112171],[112,169,79,-4.9229404578100935],[112,170,64,-5.14037428637363],[112,170,65,-5.125638373043258],[112,170,66,-5.117904701760401],[112,170,67,-5.118012226947167],[112,170,68,-5.114578765327787],[112,170,69,-5.116818074584483],[112,170,70,-5.123281516040184],[112,170,71,-5.127056518421439],[112,170,72,-5.119191491841746],[112,170,73,-5.112327387905208],[112,170,74,-5.111983765096871],[112,170,75,-5.099471769552525],[112,170,76,-5.07700198388243],[112,170,77,-5.051182067223638],[112,170,78,-5.0119860054855945],[112,170,79,-4.969838756293821],[112,171,64,-5.187567029261307],[112,171,65,-5.173628138398526],[112,171,66,-5.1679830754753056],[112,171,67,-5.165296358368041],[112,171,68,-5.160798501070667],[112,171,69,-5.162944817177092],[112,171,70,-5.171479182671106],[112,171,71,-5.174858367242601],[112,171,72,-5.168814132347398],[112,171,73,-5.161324736186636],[112,171,74,-5.158527644693908],[112,171,75,-5.147108429565545],[112,171,76,-5.126390499817006],[112,171,77,-5.094151816542863],[112,171,78,-5.0532441039760245],[112,171,79,-5.012107992372681],[112,172,64,-5.239524885168951],[112,172,65,-5.226311921401093],[112,172,66,-5.22080591193767],[112,172,67,-5.215504901253163],[112,172,68,-5.213982241282122],[112,172,69,-5.214356315382987],[112,172,70,-5.221332538809819],[112,172,71,-5.2255979585049435],[112,172,72,-5.2196827512797075],[112,172,73,-5.2129444908215214],[112,172,74,-5.211173437838981],[112,172,75,-5.1992745434524625],[112,172,76,-5.178169518215098],[112,172,77,-5.139914154233948],[112,172,78,-5.092244912279477],[112,172,79,-5.04752256786342],[112,173,64,-5.289440108854753],[112,173,65,-5.27417248125877],[112,173,66,-5.267813190081233],[112,173,67,-5.262730150035001],[112,173,68,-5.263662135936431],[112,173,69,-5.263188970286766],[112,173,70,-5.267357615022745],[112,173,71,-5.272197857441516],[112,173,72,-5.267648437120852],[112,173,73,-5.26002640487221],[112,173,74,-5.261521549648058],[112,173,75,-5.249262805322708],[112,173,76,-5.224441808024578],[112,173,77,-5.189166611752442],[112,173,78,-5.141898600166017],[112,173,79,-5.09441966202281],[112,174,64,-5.337220614064842],[112,174,65,-5.32198319060988],[112,174,66,-5.313246685386513],[112,174,67,-5.311550930335865],[112,174,68,-5.310867068272818],[112,174,69,-5.311598039890387],[112,174,70,-5.313297471622022],[112,174,71,-5.318186353703407],[112,174,72,-5.316796233419514],[112,174,73,-5.3093360578083235],[112,174,74,-5.3090336663590785],[112,174,75,-5.297680468925036],[112,174,76,-5.273373928971409],[112,174,77,-5.2369630479596],[112,174,78,-5.1930339632852105],[112,174,79,-5.143300761017572],[112,175,64,-5.374550065379449],[112,175,65,-5.3609884670908485],[112,175,66,-5.35053205089674],[112,175,67,-5.35184689928196],[112,175,68,-5.352396205069432],[112,175,69,-5.355994119511649],[112,175,70,-5.358819292240846],[112,175,71,-5.362962969409899],[112,175,72,-5.364536108290448],[112,175,73,-5.357963534347126],[112,175,74,-5.3559187554144065],[112,175,75,-5.345355542528726],[112,175,76,-5.3303290447034515],[112,175,77,-5.306893243659977],[112,175,78,-5.276848231751895],[112,175,79,-5.241433268400195],[112,176,64,-5.418649361649065],[112,176,65,-5.405787168855711],[112,176,66,-5.39564541816053],[112,176,67,-5.394519270093424],[112,176,68,-5.397048007633435],[112,176,69,-5.4022014860990115],[112,176,70,-5.408117271105096],[112,176,71,-5.414194400183477],[112,176,72,-5.414197504273308],[112,176,73,-5.4047661890236816],[112,176,74,-5.402438077909967],[112,176,75,-5.393262410204396],[112,176,76,-5.378058496781609],[112,176,77,-5.356307416243419],[112,176,78,-5.3252481040785655],[112,176,79,-5.287991461058516],[112,177,64,-5.46544000971897],[112,177,65,-5.453013335036144],[112,177,66,-5.446761690308319],[112,177,67,-5.4444655673192495],[112,177,68,-5.450549709836559],[112,177,69,-5.457512875684384],[112,177,70,-5.463090475809073],[112,177,71,-5.468771963510241],[112,177,72,-5.463573212769001],[112,177,73,-5.454399569115156],[112,177,74,-5.451291052112007],[112,177,75,-5.444179194867314],[112,177,76,-5.4261770646172485],[112,177,77,-5.405360743245803],[112,177,78,-5.375676927010782],[112,177,79,-5.340693658286929],[112,178,64,-5.516682373778822],[112,178,65,-5.503352812187118],[112,178,66,-5.497687658206983],[112,178,67,-5.495098601065263],[112,178,68,-5.501064986143748],[112,178,69,-5.508424732700674],[112,178,70,-5.515147829579487],[112,178,71,-5.51955121422825],[112,178,72,-5.515614733810104],[112,178,73,-5.507988281670544],[112,178,74,-5.503400615313364],[112,178,75,-5.496583039916283],[112,178,76,-5.478367780514289],[112,178,77,-5.456035717622057],[112,178,78,-5.425160261101204],[112,178,79,-5.39141201448996],[112,179,64,-5.563905748164744],[112,179,65,-5.550286290159155],[112,179,66,-5.543339669014218],[112,179,67,-5.539748794929961],[112,179,68,-5.542550500830987],[112,179,69,-5.552589082826431],[112,179,70,-5.5635052604407145],[112,179,71,-5.565380245173743],[112,179,72,-5.564659777103431],[112,179,73,-5.554747351185617],[112,179,74,-5.550406297251074],[112,179,75,-5.544218933281334],[112,179,76,-5.5263945885222645],[112,179,77,-5.504157863069554],[112,179,78,-5.4724335724169055],[112,179,79,-5.43579759028181],[112,180,64,-5.613179432887186],[112,180,65,-5.597387968411005],[112,180,66,-5.589098932663343],[112,180,67,-5.5882652347840205],[112,180,68,-5.591275170676423],[112,180,69,-5.601793787223787],[112,180,70,-5.6132386340507],[112,180,71,-5.619165730050258],[112,180,72,-5.618520996713292],[112,180,73,-5.607856598457421],[112,180,74,-5.603411136513752],[112,180,75,-5.598558852421167],[112,180,76,-5.58297856120595],[112,180,77,-5.560609152974306],[112,180,78,-5.528941203463427],[112,180,79,-5.490055582490857],[112,181,64,-5.655539773514157],[112,181,65,-5.638699485884894],[112,181,66,-5.624817877549856],[112,181,67,-5.6228664665249255],[112,181,68,-5.626111546215494],[112,181,69,-5.633724466550741],[112,181,70,-5.646222862759192],[112,181,71,-5.657041636148995],[112,181,72,-5.659171378461419],[112,181,73,-5.651409974398341],[112,181,74,-5.649118168426696],[112,181,75,-5.646014880878871],[112,181,76,-5.63039134434773],[112,181,77,-5.601302179410837],[112,181,78,-5.565492142824831],[112,181,79,-5.525689143570913],[112,182,64,-5.702859969407918],[112,182,65,-5.686147421890477],[112,182,66,-5.671788669208747],[112,182,67,-5.6668510645389425],[112,182,68,-5.671327637797016],[112,182,69,-5.67675816904296],[112,182,70,-5.68951340687256],[112,182,71,-5.699636083396388],[112,182,72,-5.703659541124719],[112,182,73,-5.696440291602862],[112,182,74,-5.695566965782691],[112,182,75,-5.693457244645292],[112,182,76,-5.676710363441097],[112,182,77,-5.642677884598091],[112,182,78,-5.605531977834794],[112,182,79,-5.566419452739763],[112,183,64,-5.742812554587544],[112,183,65,-5.726661516476309],[112,183,66,-5.715165087783924],[112,183,67,-5.709485101380957],[112,183,68,-5.714041035771128],[112,183,69,-5.717847782563769],[112,183,70,-5.732752159209461],[112,183,71,-5.744014882052997],[112,183,72,-5.748580992123751],[112,183,73,-5.741851853854518],[112,183,74,-5.7414413674164235],[112,183,75,-5.7375936576977065],[112,183,76,-5.722850238799901],[112,183,77,-5.6905367944282785],[112,183,78,-5.6515762956413695],[112,183,79,-5.61073558463333],[112,184,64,-5.786197900950109],[112,184,65,-5.77021353120624],[112,184,66,-5.760508298409185],[112,184,67,-5.757802848807925],[112,184,68,-5.760413988527282],[112,184,69,-5.765417268710272],[112,184,70,-5.779943406289736],[112,184,71,-5.791708815326677],[112,184,72,-5.797831320463704],[112,184,73,-5.787900607302833],[112,184,74,-5.788230606670367],[112,184,75,-5.783068554170641],[112,184,76,-5.767210637206464],[112,184,77,-5.735617136396547],[112,184,78,-5.695904828058911],[112,184,79,-5.6551954565801426],[112,185,64,-5.830902905459586],[112,185,65,-5.813931343617691],[112,185,66,-5.806244754152044],[112,185,67,-5.802164879903464],[112,185,68,-5.805151159613514],[112,185,69,-5.8116471062322],[112,185,70,-5.8262588422618755],[112,185,71,-5.838869820450484],[112,185,72,-5.843190753036338],[112,185,73,-5.833178187837409],[112,185,74,-5.833004469603751],[112,185,75,-5.828208159400273],[112,185,76,-5.8084316375290515],[112,185,77,-5.778506106450447],[112,185,78,-5.736834167590594],[112,185,79,-5.696053255050907],[112,186,64,-5.882255291461741],[112,186,65,-5.865504131578115],[112,186,66,-5.855845414175003],[112,186,67,-5.850290263345328],[112,186,68,-5.854258385091952],[112,186,69,-5.862758166637872],[112,186,70,-5.878596507915018],[112,186,71,-5.888636766240913],[112,186,72,-5.892452088538175],[112,186,73,-5.8825400111065385],[112,186,74,-5.882551047393085],[112,186,75,-5.876863845296802],[112,186,76,-5.8548182103908015],[112,186,77,-5.824831362275044],[112,186,78,-5.7895505172996975],[112,186,79,-5.747840291749268],[112,187,64,-5.9298915588072125],[112,187,65,-5.912742555031934],[112,187,66,-5.907152027853861],[112,187,67,-5.898153209829658],[112,187,68,-5.899781483869429],[112,187,69,-5.905104510701176],[112,187,70,-5.922400370794587],[112,187,71,-5.933797816071885],[112,187,72,-5.937010460120409],[112,187,73,-5.927052930350135],[112,187,74,-5.928778996223393],[112,187,75,-5.92098074768437],[112,187,76,-5.899839356684786],[112,187,77,-5.870401487702243],[112,187,78,-5.836097525527304],[112,187,79,-5.798119265898225],[112,188,64,-5.969524690343902],[112,188,65,-5.955159696413285],[112,188,66,-5.947710304333448],[112,188,67,-5.938248311306407],[112,188,68,-5.937609197341733],[112,188,69,-5.942197759097194],[112,188,70,-5.957196364323973],[112,188,71,-5.9712775334009836],[112,188,72,-5.971495581387856],[112,188,73,-5.9631406158588875],[112,188,74,-5.964794806856714],[112,188,75,-5.9589480103447805],[112,188,76,-5.939613181705727],[112,188,77,-5.909729169635467],[112,188,78,-5.873143492552718],[112,188,79,-5.840965344920429],[112,189,64,-6.010787393073424],[112,189,65,-6.000869312515455],[112,189,66,-5.995346344025977],[112,189,67,-5.986511023912157],[112,189,68,-5.988284316811384],[112,189,69,-5.9931742642899675],[112,189,70,-6.004663664693135],[112,189,71,-6.019798369998956],[112,189,72,-6.0179406192321],[112,189,73,-6.008721874459301],[112,189,74,-6.009838974322993],[112,189,75,-6.001320372614977],[112,189,76,-5.978789030479879],[112,189,77,-5.947461659154887],[112,189,78,-5.911918660098682],[112,189,79,-5.875815351039784],[112,190,64,-6.057922947200898],[112,190,65,-6.047151085761108],[112,190,66,-6.041751699268966],[112,190,67,-6.0335858171829555],[112,190,68,-6.035636792656364],[112,190,69,-6.0416083927077615],[112,190,70,-6.049209622929412],[112,190,71,-6.06284674897411],[112,190,72,-6.0612998201090695],[112,190,73,-6.0546123498739455],[112,190,74,-6.0534867404637565],[112,190,75,-6.045050190620595],[112,190,76,-6.023344857631308],[112,190,77,-5.9897644805420915],[112,190,78,-5.955346313535391],[112,190,79,-5.919931802980043],[112,191,64,-6.104339388031338],[112,191,65,-6.08886941181963],[112,191,66,-6.085929837151047],[112,191,67,-6.08072227514586],[112,191,68,-6.08076062300163],[112,191,69,-6.08558548522068],[112,191,70,-6.0956594905685515],[112,191,71,-6.104707132861939],[112,191,72,-6.104532951853307],[112,191,73,-6.096265351541288],[112,191,74,-6.098653088526935],[112,191,75,-6.08687616020899],[112,191,76,-6.060601514717356],[112,191,77,-6.028609911651711],[112,191,78,-5.9950713690833375],[112,191,79,-5.957278072753717],[112,192,64,-6.152149289480526],[112,192,65,-6.138169021759893],[112,192,66,-6.131132626852759],[112,192,67,-6.129367917353623],[112,192,68,-6.127003696544512],[112,192,69,-6.131545291393194],[112,192,70,-6.142563434207896],[112,192,71,-6.149324634984259],[112,192,72,-6.146619979670607],[112,192,73,-6.142305548658465],[112,192,74,-6.142475811711404],[112,192,75,-6.127984461597265],[112,192,76,-6.104638603073499],[112,192,77,-6.072851532349479],[112,192,78,-6.037329550754795],[112,192,79,-5.999034429007848],[112,193,64,-6.210721466123157],[112,193,65,-6.1926570498880835],[112,193,66,-6.180423793051142],[112,193,67,-6.172809892081217],[112,193,68,-6.168543023587661],[112,193,69,-6.1742358608378165],[112,193,70,-6.186299576519027],[112,193,71,-6.193305601145306],[112,193,72,-6.1891843377825575],[112,193,73,-6.185477282520676],[112,193,74,-6.184407019732296],[112,193,75,-6.171786315985959],[112,193,76,-6.15012852028779],[112,193,77,-6.119111904171309],[112,193,78,-6.086740115748216],[112,193,79,-6.050531815244289],[112,194,64,-6.266667836002562],[112,194,65,-6.246331370936381],[112,194,66,-6.230676767335382],[112,194,67,-6.2227362547753104],[112,194,68,-6.21899259510472],[112,194,69,-6.222599959336239],[112,194,70,-6.234795419568471],[112,194,71,-6.242792850026636],[112,194,72,-6.238153687668644],[112,194,73,-6.233716203447462],[112,194,74,-6.231568769612354],[112,194,75,-6.221144840591533],[112,194,76,-6.199070958731852],[112,194,77,-6.16630923337702],[112,194,78,-6.1312678369523965],[112,194,79,-6.091029759148919],[112,195,64,-6.316278420117052],[112,195,65,-6.294022483925039],[112,195,66,-6.2779786817242735],[112,195,67,-6.264260614414444],[112,195,68,-6.2624930280299616],[112,195,69,-6.268139695573065],[112,195,70,-6.279969218723113],[112,195,71,-6.286514892565182],[112,195,72,-6.28120304571533],[112,195,73,-6.277137521758313],[112,195,74,-6.274957851487605],[112,195,75,-6.266606026294366],[112,195,76,-6.242712557714427],[112,195,77,-6.2125538995473715],[112,195,78,-6.180603235827951],[112,195,79,-6.1387917748362915],[112,196,64,-6.357771344315203],[112,196,65,-6.329983931928935],[112,196,66,-6.3079817998880365],[112,196,67,-6.28892230570817],[112,196,68,-6.279715184792804],[112,196,69,-6.2826254118417095],[112,196,70,-6.290823700136307],[112,196,71,-6.297145293417879],[112,196,72,-6.29018719963051],[112,196,73,-6.284653734498563],[112,196,74,-6.282557442165995],[112,196,75,-6.275864633257498],[112,196,76,-6.249515767931098],[112,196,77,-6.222230478567597],[112,196,78,-6.200005494288564],[112,196,79,-6.15710843131837],[112,197,64,-6.4042136255691],[112,197,65,-6.377023210821122],[112,197,66,-6.35639514336899],[112,197,67,-6.333450291298178],[112,197,68,-6.32383511828698],[112,197,69,-6.325574016362915],[112,197,70,-6.332495878446033],[112,197,71,-6.341439114452853],[112,197,72,-6.3344774324123385],[112,197,73,-6.329442543733242],[112,197,74,-6.3285191069005275],[112,197,75,-6.321192381606025],[112,197,76,-6.294299918803894],[112,197,77,-6.264815111883181],[112,197,78,-6.241220755032765],[112,197,79,-6.199968974167892],[112,198,64,-6.452111155617145],[112,198,65,-6.424831228621346],[112,198,66,-6.404324806968971],[112,198,67,-6.379406969101641],[112,198,68,-6.366992992588785],[112,198,69,-6.368965756182169],[112,198,70,-6.375973678644493],[112,198,71,-6.385170546798661],[112,198,72,-6.378453628645685],[112,198,73,-6.370802348520878],[112,198,74,-6.369671471872443],[112,198,75,-6.363234330846582],[112,198,76,-6.340230595998316],[112,198,77,-6.312021064119047],[112,198,78,-6.291043314454149],[112,198,79,-6.251887027768248],[112,199,64,-6.50230932814087],[112,199,65,-6.473628740140088],[112,199,66,-6.449260458521979],[112,199,67,-6.423154755448585],[112,199,68,-6.411885559251054],[112,199,69,-6.4121628401854815],[112,199,70,-6.418755994430425],[112,199,71,-6.426118001404705],[112,199,72,-6.420878801434621],[112,199,73,-6.409806223385991],[112,199,74,-6.410241008842272],[112,199,75,-6.403256555552769],[112,199,76,-6.382689050889009],[112,199,77,-6.352573890189225],[112,199,78,-6.3281801796682755],[112,199,79,-6.291018708458917],[112,200,64,-6.552872404916538],[112,200,65,-6.523294614178451],[112,200,66,-6.496149828528277],[112,200,67,-6.469063535204347],[112,200,68,-6.459543791935244],[112,200,69,-6.458899768905492],[112,200,70,-6.464104164492342],[112,200,71,-6.466514258367929],[112,200,72,-6.463085913757125],[112,200,73,-6.452172833600604],[112,200,74,-6.452705637156754],[112,200,75,-6.444320482490292],[112,200,76,-6.423728506106795],[112,200,77,-6.401660667853436],[112,200,78,-6.378158690914679],[112,200,79,-6.340778246803781],[112,201,64,-6.5969201005982026],[112,201,65,-6.567617501279539],[112,201,66,-6.538488836964785],[112,201,67,-6.508699357063903],[112,201,68,-6.497074831273151],[112,201,69,-6.495529872482237],[112,201,70,-6.499678865584143],[112,201,71,-6.507105099897604],[112,201,72,-6.507231900388664],[112,201,73,-6.496601434748433],[112,201,74,-6.499936956775528],[112,201,75,-6.4995269055108755],[112,201,76,-6.4783469963039835],[112,201,77,-6.455373633129359],[112,201,78,-6.429454102850289],[112,201,79,-6.389506640126482],[112,202,64,-6.649481245750826],[112,202,65,-6.618842463696822],[112,202,66,-6.590333556513784],[112,202,67,-6.562992148575489],[112,202,68,-6.549512099179625],[112,202,69,-6.545255368878348],[112,202,70,-6.545563243600973],[112,202,71,-6.553555310125708],[112,202,72,-6.5558741346806615],[112,202,73,-6.545884558791423],[112,202,74,-6.5452254913795205],[112,202,75,-6.545745043131863],[112,202,76,-6.5223932347582005],[112,202,77,-6.499593404395349],[112,202,78,-6.475992286608559],[112,202,79,-6.440754243322035],[112,203,64,-6.699938234453706],[112,203,65,-6.665809694790882],[112,203,66,-6.63943501137962],[112,203,67,-6.613939866723679],[112,203,68,-6.599055920901402],[112,203,69,-6.592309921616736],[112,203,70,-6.588338563077914],[112,203,71,-6.596492301048525],[112,203,72,-6.600550336762472],[112,203,73,-6.591546862246879],[112,203,74,-6.590149443753056],[112,203,75,-6.59166395303238],[112,203,76,-6.569202293240241],[112,203,77,-6.551288119713417],[112,203,78,-6.531414317571585],[112,203,79,-6.496578276645192],[112,204,64,-6.749713805902358],[112,204,65,-6.713966174193119],[112,204,66,-6.686809726769933],[112,204,67,-6.665814624553194],[112,204,68,-6.651131434211447],[112,204,69,-6.640112044380631],[112,204,70,-6.637939126293734],[112,204,71,-6.641497836976737],[112,204,72,-6.643488689327163],[112,204,73,-6.640637869525301],[112,204,74,-6.641197732987832],[112,204,75,-6.641941539568563],[112,204,76,-6.620298216443342],[112,204,77,-6.6001649345097615],[112,204,78,-6.581911139918708],[112,204,79,-6.549178613576452],[112,205,64,-6.801874677184772],[112,205,65,-6.76961607997696],[112,205,66,-6.742440834424585],[112,205,67,-6.723230104793598],[112,205,68,-6.709719464727897],[112,205,69,-6.6986545985957315],[112,205,70,-6.696523233848619],[112,205,71,-6.695405938804186],[112,205,72,-6.687162098059171],[112,205,73,-6.681650275440732],[112,205,74,-6.6910629148883],[112,205,75,-6.689121765697791],[112,205,76,-6.66859243579819],[112,205,77,-6.652577013822903],[112,205,78,-6.632778988087014],[112,205,79,-6.599994074640112],[112,206,64,-6.852990029729002],[112,206,65,-6.821282420758291],[112,206,66,-6.789751674824471],[112,206,67,-6.771212034658876],[112,206,68,-6.7540373368275315],[112,206,69,-6.746098221553114],[112,206,70,-6.743332912667643],[112,206,71,-6.742062742601851],[112,206,72,-6.7299358798447875],[112,206,73,-6.7263151885627375],[112,206,74,-6.742929312126801],[112,206,75,-6.738644344662104],[112,206,76,-6.719489140397419],[112,206,77,-6.706785813999055],[112,206,78,-6.6837807306886905],[112,206,79,-6.6520736250059365],[112,207,64,-6.901506229328107],[112,207,65,-6.868569734163147],[112,207,66,-6.836456692658487],[112,207,67,-6.81786760351921],[112,207,68,-6.800380863211357],[112,207,69,-6.79417784913138],[112,207,70,-6.789630672636916],[112,207,71,-6.7878978061836515],[112,207,72,-6.775428642630283],[112,207,73,-6.765422185115348],[112,207,74,-6.781149355271063],[112,207,75,-6.7780458842836895],[112,207,76,-6.761145903082741],[112,207,77,-6.742041765892224],[112,207,78,-6.716580933628757],[112,207,79,-6.689745660830414],[112,208,64,-6.95061657531693],[112,208,65,-6.914919477983384],[112,208,66,-6.883465210826057],[112,208,67,-6.863394949573951],[112,208,68,-6.84629924631601],[112,208,69,-6.838322483001969],[112,208,70,-6.833285774129889],[112,208,71,-6.831787778131919],[112,208,72,-6.821465785061382],[112,208,73,-6.8129414061213485],[112,208,74,-6.817313891084255],[112,208,75,-6.814510961760923],[112,208,76,-6.800242815126304],[112,208,77,-6.779973236918364],[112,208,78,-6.751818923440385],[112,208,79,-6.723754768071207],[112,209,64,-7.000994064307141],[112,209,65,-6.961451133058593],[112,209,66,-6.929920169408648],[112,209,67,-6.9082623988295095],[112,209,68,-6.890858051097985],[112,209,69,-6.884400898616675],[112,209,70,-6.880342267087392],[112,209,71,-6.876828241588429],[112,209,72,-6.868735438713134],[112,209,73,-6.8614455032393],[112,209,74,-6.866356209566464],[112,209,75,-6.862685510531636],[112,209,76,-6.848025604003188],[112,209,77,-6.828797657811654],[112,209,78,-6.800311620195886],[112,209,79,-6.768353984105932],[112,210,64,-7.051325584794437],[112,210,65,-7.013497252349716],[112,210,66,-6.9810079965986045],[112,210,67,-6.957334375902217],[112,210,68,-6.942137459478666],[112,210,69,-6.932830793647676],[112,210,70,-6.926353254164667],[112,210,71,-6.92646782114609],[112,210,72,-6.918830525304856],[112,210,73,-6.911042385283134],[112,210,74,-6.910590271545385],[112,210,75,-6.907910316621239],[112,210,76,-6.891708088777611],[112,210,77,-6.870517446999258],[112,210,78,-6.840982096357252],[112,210,79,-6.807531390147201],[112,211,64,-7.101251407090281],[112,211,65,-7.0606297406234395],[112,211,66,-7.026772975711813],[112,211,67,-7.004754988216649],[112,211,68,-6.98852162679725],[112,211,69,-6.977262626237961],[112,211,70,-6.972302360905583],[112,211,71,-6.971636883186132],[112,211,72,-6.966163716248275],[112,211,73,-6.95599678349774],[112,211,74,-6.95565630513367],[112,211,75,-6.953755727152525],[112,211,76,-6.9389120262008435],[112,211,77,-6.91990717236659],[112,211,78,-6.892953178957812],[112,211,79,-6.865433299749156],[112,212,64,-7.141260404117868],[112,212,65,-7.103354491530071],[112,212,66,-7.070781144858177],[112,212,67,-7.050270143225815],[112,212,68,-7.035797812506083],[112,212,69,-7.031553704153105],[112,212,70,-7.026647331238389],[112,212,71,-7.027026213202242],[112,212,72,-7.023607911565341],[112,212,73,-7.014026090426739],[112,212,74,-7.010691832852938],[112,212,75,-7.007974971015134],[112,212,76,-6.990908184216384],[112,212,77,-6.966894986800581],[112,212,78,-6.936442267504452],[112,212,79,-6.906351155472506],[112,213,64,-7.195075158889611],[112,213,65,-7.153657425713686],[112,213,66,-7.116420743139214],[112,213,67,-7.0867946158253865],[112,213,68,-7.071541797754233],[112,213,69,-7.069131292430403],[112,213,70,-7.067675980535954],[112,213,71,-7.073107655980237],[112,213,72,-7.073407645587666],[112,213,73,-7.067067646625059],[112,213,74,-7.066346157608983],[112,213,75,-7.06222627608755],[112,213,76,-7.0432013066891095],[112,213,77,-7.015485444696284],[112,213,78,-6.982945872057504],[112,213,79,-6.950870319542944],[112,214,64,-7.238748321144129],[112,214,65,-7.19959417106465],[112,214,66,-7.162298599328036],[112,214,67,-7.13256232009347],[112,214,68,-7.116432073289694],[112,214,69,-7.114674393205301],[112,214,70,-7.1127903317526435],[112,214,71,-7.116607234358629],[112,214,72,-7.118952556333646],[112,214,73,-7.11396414336719],[112,214,74,-7.112702156969935],[112,214,75,-7.110854952868272],[112,214,76,-7.09506691036777],[112,214,77,-7.064802927654732],[112,214,78,-7.036426425482387],[112,214,79,-7.00328819212104],[112,215,64,-7.2867188331663595],[112,215,65,-7.246787321586967],[112,215,66,-7.2091723650114],[112,215,67,-7.177711741035979],[112,215,68,-7.164482751291181],[112,215,69,-7.159788890990918],[112,215,70,-7.158589601597744],[112,215,71,-7.162297627269592],[112,215,72,-7.164572520468035],[112,215,73,-7.160310923891231],[112,215,74,-7.157778271155061],[112,215,75,-7.154086010986152],[112,215,76,-7.137653957911336],[112,215,77,-7.108267774307403],[112,215,78,-7.079894719528525],[112,215,79,-7.045029634972937],[112,216,64,-7.329828346362855],[112,216,65,-7.291900402838707],[112,216,66,-7.252072065289577],[112,216,67,-7.223939186954565],[112,216,68,-7.210828986452514],[112,216,69,-7.206121777356018],[112,216,70,-7.20451645553284],[112,216,71,-7.209223615117081],[112,216,72,-7.209910038066435],[112,216,73,-7.203253580953956],[112,216,74,-7.20034551192703],[112,216,75,-7.196861550660193],[112,216,76,-7.185736819452364],[112,216,77,-7.161353691823721],[112,216,78,-7.134365905574077],[112,216,79,-7.091357684382274],[112,217,64,-7.3661702489403895],[112,217,65,-7.330221708134795],[112,217,66,-7.299958913006696],[112,217,67,-7.276680507869306],[112,217,68,-7.264037689486921],[112,217,69,-7.257984524140057],[112,217,70,-7.254571586179598],[112,217,71,-7.256424643959008],[112,217,72,-7.249368326257766],[112,217,73,-7.234645698518154],[112,217,74,-7.231348156047983],[112,217,75,-7.231697442383533],[112,217,76,-7.224284862825743],[112,217,77,-7.207215553669344],[112,217,78,-7.1813458104917745],[112,217,79,-7.136371949966005],[112,218,64,-7.414850279879016],[112,218,65,-7.37745126723241],[112,218,66,-7.348071654661796],[112,218,67,-7.327607909657208],[112,218,68,-7.312983253194272],[112,218,69,-7.3045789554027705],[112,218,70,-7.302008522633961],[112,218,71,-7.306156540132055],[112,218,72,-7.296241670512111],[112,218,73,-7.279942486467233],[112,218,74,-7.275153307486508],[112,218,75,-7.27124433948022],[112,218,76,-7.274021651879968],[112,218,77,-7.263240614764487],[112,218,78,-7.23909873468964],[112,218,79,-7.19273631656199],[112,219,64,-7.460304466560213],[112,219,65,-7.421904051016188],[112,219,66,-7.392660772182442],[112,219,67,-7.373308002137403],[112,219,68,-7.359220942816921],[112,219,69,-7.347900404642551],[112,219,70,-7.347429224053643],[112,219,71,-7.349083242992301],[112,219,72,-7.3389269050749775],[112,219,73,-7.323638660790564],[112,219,74,-7.31902729807332],[112,219,75,-7.318901805225915],[112,219,76,-7.322588565230262],[112,219,77,-7.3242116101410835],[112,219,78,-7.294915773683477],[112,219,79,-7.247891762371965],[112,220,64,-7.504046027090681],[112,220,65,-7.4653498087831185],[112,220,66,-7.434222997623034],[112,220,67,-7.413644312997066],[112,220,68,-7.395307182302885],[112,220,69,-7.3831607567068245],[112,220,70,-7.381814083853688],[112,220,71,-7.380474601440526],[112,220,72,-7.37220128453107],[112,220,73,-7.3595606938140925],[112,220,74,-7.353595376276029],[112,220,75,-7.363914923447268],[112,220,76,-7.375915692367526],[112,220,77,-7.38864132245747],[112,220,78,-7.362902971213243],[112,220,79,-7.314447797801876],[112,221,64,-7.549685475614179],[112,221,65,-7.511837280174443],[112,221,66,-7.478932358242135],[112,221,67,-7.456627943949029],[112,221,68,-7.438485357625953],[112,221,69,-7.425466518083179],[112,221,70,-7.42515564731348],[112,221,71,-7.421921804670056],[112,221,72,-7.413623764082643],[112,221,73,-7.4002952555512085],[112,221,74,-7.403405337544019],[112,221,75,-7.441120001121382],[112,221,76,-7.4560120051811705],[112,221,77,-7.447327453151393],[112,221,78,-7.408760426472534],[112,221,79,-7.359631095329292],[112,222,64,-7.591159106442409],[112,222,65,-7.5564998454087595],[112,222,66,-7.522778180492517],[112,222,67,-7.498867051260182],[112,222,68,-7.4826971045468795],[112,222,69,-7.471560514640306],[112,222,70,-7.468242714312622],[112,222,71,-7.464889061145179],[112,222,72,-7.452026360346292],[112,222,73,-7.439051018377323],[112,222,74,-7.461181316013898],[112,222,75,-7.497340624583784],[112,222,76,-7.501199994181475],[112,222,77,-7.484172128209354],[112,222,78,-7.442727333135958],[112,222,79,-7.395304904407778],[112,223,64,-7.639629959883611],[112,223,65,-7.6058043981102585],[112,223,66,-7.571951367723187],[112,223,67,-7.54645033862238],[112,223,68,-7.528283398356856],[112,223,69,-7.517590362591046],[112,223,70,-7.512816518410875],[112,223,71,-7.506726608473695],[112,223,72,-7.493901131106459],[112,223,73,-7.488090125495155],[112,223,74,-7.527865159820219],[112,223,75,-7.564642209970313],[112,223,76,-7.557734848585601],[112,223,77,-7.530212949063525],[112,223,78,-7.485910823068942],[112,223,79,-7.4358698898035325],[112,224,64,-7.684879475772135],[112,224,65,-7.649755161646302],[112,224,66,-7.618724154115469],[112,224,67,-7.593460958051724],[112,224,68,-7.57208998198832],[112,224,69,-7.561963841321464],[112,224,70,-7.555139013822965],[112,224,71,-7.5486007053538655],[112,224,72,-7.53578477357436],[112,224,73,-7.54222184426781],[112,224,74,-7.5809124299563075],[112,224,75,-7.620771925930383],[112,224,76,-7.6125838448059335],[112,224,77,-7.577815361570592],[112,224,78,-7.533163831716928],[112,224,79,-7.481757047435753],[112,225,64,-7.737416730361694],[112,225,65,-7.6969267920749465],[112,225,66,-7.662263468438816],[112,225,67,-7.635290407936895],[112,225,68,-7.611866216695912],[112,225,69,-7.6032036164110295],[112,225,70,-7.5964419275934345],[112,225,71,-7.591031813322875],[112,225,72,-7.579324749870123],[112,225,73,-7.592442697553815],[112,225,74,-7.635672146232439],[112,225,75,-7.679847529160656],[112,225,76,-7.662186482270463],[112,225,77,-7.623755858312607],[112,225,78,-7.579308494618926],[112,225,79,-7.529243217841794],[112,226,64,-7.782840577695196],[112,226,65,-7.744934794321583],[112,226,66,-7.709537872100787],[112,226,67,-7.684503758334098],[112,226,68,-7.662592877363134],[112,226,69,-7.650424806969505],[112,226,70,-7.643442640034713],[112,226,71,-7.637706461074741],[112,226,72,-7.625094360053241],[112,226,73,-7.621383934036341],[112,226,74,-7.672672546747192],[112,226,75,-7.723902482775965],[112,226,76,-7.709810754518417],[112,226,77,-7.670946987483195],[112,226,78,-7.62512790765446],[112,226,79,-7.574897220213078],[112,227,64,-7.826122861237882],[112,227,65,-7.788498645458966],[112,227,66,-7.75475138659132],[112,227,67,-7.728410853624203],[112,227,68,-7.7083256900765695],[112,227,69,-7.695312353568237],[112,227,70,-7.68859452145688],[112,227,71,-7.683149117274476],[112,227,72,-7.670448515900997],[112,227,73,-7.663639909411611],[112,227,74,-7.724181673157185],[112,227,75,-7.782620294508685],[112,227,76,-7.767756786646604],[112,227,77,-7.726203480507532],[112,227,78,-7.6814564573328],[112,227,79,-7.6311910026122485],[112,228,64,-7.859551254062002],[112,228,65,-7.82114255072722],[112,228,66,-7.785239968034741],[112,228,67,-7.759807312654636],[112,228,68,-7.7405608386986575],[112,228,69,-7.727595529763561],[112,228,70,-7.718440388023181],[112,228,71,-7.71358432993146],[112,228,72,-7.7002621072293795],[112,228,73,-7.688516287147484],[112,228,74,-7.767871502024223],[112,228,75,-7.825513946122014],[112,228,76,-7.808079020427552],[112,228,77,-7.769383687076637],[112,228,78,-7.725562920365275],[112,228,79,-7.6763556623409],[112,229,64,-7.896604552528155],[112,229,65,-7.859877598742508],[112,229,66,-7.828240741105559],[112,229,67,-7.8055921060507],[112,229,68,-7.790398969451707],[112,229,69,-7.777612435437654],[112,229,70,-7.766563928933603],[112,229,71,-7.758419218418599],[112,229,72,-7.744806062055039],[112,229,73,-7.778942852159095],[112,229,74,-7.883932320313663],[112,229,75,-7.881607956349982],[112,229,76,-7.858860843366846],[112,229,77,-7.818296984970195],[112,229,78,-7.77767952050281],[112,229,79,-7.727407510498268],[112,230,64,-7.943707689475609],[112,230,65,-7.905576606491378],[112,230,66,-7.871862435999152],[112,230,67,-7.851679004450155],[112,230,68,-7.837164547270221],[112,230,69,-7.823339938965992],[112,230,70,-7.810808469780812],[112,230,71,-7.802538134344295],[112,230,72,-7.7862239291187505],[112,230,73,-7.818530672967767],[112,230,74,-7.934617172146603],[112,230,75,-7.926202202557126],[112,230,76,-7.901542113302757],[112,230,77,-7.860250038355717],[112,230,78,-7.818326837054798],[112,230,79,-7.76891684306313],[112,231,64,-7.993933797441324],[112,231,65,-7.955038942786004],[112,231,66,-7.9210261064413645],[112,231,67,-7.902107174056551],[112,231,68,-7.884954974144804],[112,231,69,-7.873213421873073],[112,231,70,-7.860924966593835],[112,231,71,-7.850689837055033],[112,231,72,-7.83171473604549],[112,231,73,-7.831031985282076],[112,231,74,-7.95974360780839],[112,231,75,-7.971865125228413],[112,231,76,-7.946642221382446],[112,231,77,-7.9070973285608215],[112,231,78,-7.865773033117033],[112,231,79,-7.814957167872016],[112,232,64,-8.039148188687358],[112,232,65,-8.002287538589952],[112,232,66,-7.966775362577023],[112,232,67,-7.945428697613956],[112,232,68,-7.929735179470916],[112,232,69,-7.919010060810744],[112,232,70,-7.908770673120612],[112,232,71,-7.897880601790921],[112,232,72,-7.877498901093329],[112,232,73,-7.870934852764476],[112,232,74,-8.002728371435117],[112,232,75,-8.02050743085015],[112,232,76,-7.994293166740226],[112,232,77,-7.95633851030637],[112,232,78,-7.9139214459617],[112,232,79,-7.862166469903983],[112,233,64,-8.084762934383459],[112,233,65,-8.04771137347334],[112,233,66,-8.011065718731112],[112,233,67,-7.989525663952732],[112,233,68,-7.974019518960452],[112,233,69,-7.965731999677132],[112,233,70,-7.956312305588085],[112,233,71,-7.947440831471617],[112,233,72,-7.926798527666673],[112,233,73,-7.909788709127724],[112,233,74,-8.044667885639965],[112,233,75,-8.070857107516003],[112,233,76,-8.042551513405977],[112,233,77,-8.007890513779387],[112,233,78,-7.9642169075414095],[112,233,79,-7.912876895428305],[112,234,64,-8.134175618160702],[112,234,65,-8.095341088201707],[112,234,66,-8.058904193651403],[112,234,67,-8.03810980415637],[112,234,68,-8.023462809266249],[112,234,69,-8.01326680428911],[112,234,70,-8.007025245321497],[112,234,71,-7.99825904483701],[112,234,72,-7.977881131167785],[112,234,73,-7.9550871278494455],[112,234,74,-8.0582781225551],[112,234,75,-8.121800986308712],[112,234,76,-8.09755167855579],[112,234,77,-8.064333982399598],[112,234,78,-8.02275804787174],[112,234,79,-7.97151348155929],[112,235,64,-8.181578480975016],[112,235,65,-8.142219964092865],[112,235,66,-8.105082333995679],[112,235,67,-8.083383307818385],[112,235,68,-8.066795784685812],[112,235,69,-8.056739254535323],[112,235,70,-8.052569438213],[112,235,71,-8.04625738456567],[112,235,72,-8.02563557020636],[112,235,73,-8.003899917343317],[112,235,74,-8.000433834219793],[112,235,75,-8.079701666407237],[112,235,76,-8.113593246531197],[112,235,77,-8.086312261175996],[112,235,78,-8.024607777890656],[112,235,79,-8.028025976930095],[112,236,64,-8.249016882693091],[112,236,65,-8.206717932919883],[112,236,66,-8.167706992984977],[112,236,67,-8.14605021681789],[112,236,68,-8.128256868562715],[112,236,69,-8.118607486945654],[112,236,70,-8.113057430991681],[112,236,71,-8.104194934985683],[112,236,72,-8.085198057849674],[112,236,73,-8.065291229321543],[112,236,74,-8.058955486468953],[112,236,75,-8.130604840168767],[112,236,76,-8.151136024599808],[112,236,77,-8.121461957920438],[112,236,78,-8.063884591744374],[112,236,79,-8.080634165070819],[112,237,64,-8.298684800336414],[112,237,65,-8.253365398109247],[112,237,66,-8.209546034128948],[112,237,67,-8.18444565925907],[112,237,68,-8.166934994115092],[112,237,69,-8.156196775440229],[112,237,70,-8.147072427452889],[112,237,71,-8.140989490250682],[112,237,72,-8.124210661781266],[112,237,73,-8.10614617997299],[112,237,74,-8.130621777648694],[112,237,75,-8.201580948524688],[112,237,76,-8.225963621488084],[112,237,77,-8.187127503529348],[112,237,78,-8.148444458845136],[112,237,79,-8.128464484750099],[112,238,64,-8.345224653380752],[112,238,65,-8.299893488262372],[112,238,66,-8.256394488618128],[112,238,67,-8.229841127596863],[112,238,68,-8.214114831420957],[112,238,69,-8.203904318975612],[112,238,70,-8.193854088806308],[112,238,71,-8.188674777643032],[112,238,72,-8.172684292358026],[112,238,73,-8.155430387796073],[112,238,74,-8.152563291909543],[112,238,75,-8.196115042957413],[112,238,76,-8.223257362281084],[112,238,77,-8.201201703449708],[112,238,78,-8.224669000495906],[112,238,79,-8.172875370283215],[112,239,64,-8.400127375511385],[112,239,65,-8.354675241145506],[112,239,66,-8.310968902712222],[112,239,67,-8.282883137669051],[112,239,68,-8.265032846874224],[112,239,69,-8.25542063347868],[112,239,70,-8.245486812047236],[112,239,71,-8.240571074517511],[112,239,72,-8.22501002454825],[112,239,73,-8.206967924466198],[112,239,74,-8.196197102016942],[112,239,75,-8.211708072201418],[112,239,76,-8.23137528442627],[112,239,77,-8.2133021329627],[112,239,78,-8.247225021436881],[112,239,79,-8.215891484744427],[112,240,64,-8.444928352292262],[112,240,65,-8.400613616257418],[112,240,66,-8.360938824268791],[112,240,67,-8.332548595614242],[112,240,68,-8.312521619524109],[112,240,69,-8.306248516306558],[112,240,70,-8.295849392936208],[112,240,71,-8.28709166656561],[112,240,72,-8.272961548284442],[112,240,73,-8.255162777248835],[112,240,74,-8.24528640044631],[112,240,75,-8.25195044710258],[112,240,76,-8.262884736576188],[112,240,77,-8.250977235011517],[112,240,78,-8.283568192361686],[112,240,79,-8.256113372306272],[112,241,64,-8.491274740082094],[112,241,65,-8.449347490302507],[112,241,66,-8.4160897463328],[112,241,67,-8.392111174733497],[112,241,68,-8.372907753146395],[112,241,69,-8.363356371578034],[112,241,70,-8.354990495597013],[112,241,71,-8.348438081499058],[112,241,72,-8.329379889787445],[112,241,73,-8.311784548027049],[112,241,74,-8.306591673372699],[112,241,75,-8.295853362473515],[112,241,76,-8.25988334308122],[112,241,77,-8.212310284934135],[112,241,78,-8.157526280744143],[112,241,79,-8.097249914612794],[112,242,64,-8.540731696375712],[112,242,65,-8.498197057120935],[112,242,66,-8.46421269144061],[112,242,67,-8.439757856979712],[112,242,68,-8.42469857475043],[112,242,69,-8.413591017131742],[112,242,70,-8.404441441602723],[112,242,71,-8.400862210197797],[112,242,72,-8.381121886782648],[112,242,73,-8.361366341974879],[112,242,74,-8.358598912195859],[112,242,75,-8.347640251736063],[112,242,76,-8.311816837903981],[112,242,77,-8.265373063769907],[112,242,78,-8.207732523503855],[112,242,79,-8.146354369321612],[112,243,64,-8.583931782757181],[112,243,65,-8.543456528940137],[112,243,66,-8.50951050134233],[112,243,67,-8.484899072952105],[112,243,68,-8.47079903305774],[112,243,69,-8.459311420978077],[112,243,70,-8.452679823791652],[112,243,71,-8.449892503205607],[112,243,72,-8.430265629536526],[112,243,73,-8.409826768989658],[112,243,74,-8.406564475267196],[112,243,75,-8.393637955984218],[112,243,76,-8.360711750164153],[112,243,77,-8.315373637238057],[112,243,78,-8.260202925978527],[112,243,79,-8.196651278557516],[112,244,64,-8.624652515728785],[112,244,65,-8.587809087954408],[112,244,66,-8.561041721687905],[112,244,67,-8.541518569683928],[112,244,68,-8.531273413787568],[112,244,69,-8.523612597236259],[112,244,70,-8.52166644143272],[112,244,71,-8.517258004207234],[112,244,72,-8.50202868119512],[112,244,73,-8.48173820394689],[112,244,74,-8.478393049513727],[112,244,75,-8.468362711252507],[112,244,76,-8.437231458482124],[112,244,77,-8.393288267221093],[112,244,78,-8.341356357314568],[112,244,79,-8.278182841857264],[112,245,64,-8.67128561643082],[112,245,65,-8.63475960370072],[112,245,66,-8.60720017648476],[112,245,67,-8.588048697330551],[112,245,68,-8.577001542594507],[112,245,69,-8.57106008782012],[112,245,70,-8.568170229132805],[112,245,71,-8.563379510974775],[112,245,72,-8.546869602798381],[112,245,73,-8.527667709512762],[112,245,74,-8.526463201567633],[112,245,75,-8.51666976937091],[112,245,76,-8.486912818429714],[112,245,77,-8.441475479660964],[112,245,78,-8.388517070393101],[112,245,79,-8.32446300268214],[112,246,64,-8.717733484146313],[112,246,65,-8.680375552915173],[112,246,66,-8.651029618694112],[112,246,67,-8.632437622823161],[112,246,68,-8.622433683884775],[112,246,69,-8.615914893530181],[112,246,70,-8.615087077173827],[112,246,71,-8.610958554131104],[112,246,72,-8.595489621140048],[112,246,73,-8.57706570403494],[112,246,74,-8.57338963524384],[112,246,75,-8.56233164952953],[112,246,76,-8.533812098458522],[112,246,77,-8.49132893841193],[112,246,78,-8.438240228670924],[112,246,79,-8.37418279004154],[112,247,64,-8.773245819579154],[112,247,65,-8.734193871408316],[112,247,66,-8.70228942928024],[112,247,67,-8.682926573061703],[112,247,68,-8.668429120299681],[112,247,69,-8.66367782026028],[112,247,70,-8.661139497551584],[112,247,71,-8.659485304742995],[112,247,72,-8.644423029367083],[112,247,73,-8.624482945433561],[112,247,74,-8.619551726276582],[112,247,75,-8.607605631810896],[112,247,76,-8.580615591832167],[112,247,77,-8.537311349392873],[112,247,78,-8.484118303802001],[112,247,79,-8.420988150816891],[112,248,64,-8.819297039242366],[112,248,65,-8.779458052470654],[112,248,66,-8.749122654558855],[112,248,67,-8.72889139600792],[112,248,68,-8.714135438818358],[112,248,69,-8.706895526009653],[112,248,70,-8.704851272752244],[112,248,71,-8.705100141499326],[112,248,72,-8.691439898582725],[112,248,73,-8.670002503300436],[112,248,74,-8.665039291621056],[112,248,75,-8.65603271420234],[112,248,76,-8.627277523697693],[112,248,77,-8.585982409951795],[112,248,78,-8.53372507354036],[112,248,79,-8.473512412407306],[112,249,64,-8.854827272396115],[112,249,65,-8.817816622553625],[112,249,66,-8.788303401834531],[112,249,67,-8.76820509024509],[112,249,68,-8.756068414143519],[112,249,69,-8.749089616413361],[112,249,70,-8.745589271529294],[112,249,71,-8.743242040915863],[112,249,72,-8.728799077411292],[112,249,73,-8.708839840995793],[112,249,74,-8.703572560331724],[112,249,75,-8.69324755771831],[112,249,76,-8.66370421483157],[112,249,77,-8.628887987240892],[112,249,78,-8.584156652989952],[112,249,79,-8.531653342807717],[112,250,64,-8.903935160207686],[112,250,65,-8.86553518214356],[112,250,66,-8.836932400897703],[112,250,67,-8.816974463615528],[112,250,68,-8.803380311878215],[112,250,69,-8.79583955028087],[112,250,70,-8.793346235648533],[112,250,71,-8.791574076103986],[112,250,72,-8.780263637100859],[112,250,73,-8.760497759100351],[112,250,74,-8.75402502418329],[112,250,75,-8.744133879917422],[112,250,76,-8.714919469003057],[112,250,77,-8.677223516236653],[112,250,78,-8.646513180283987],[112,250,79,-8.605698784538347],[112,251,64,-8.950725908763271],[112,251,65,-8.910901423599729],[112,251,66,-8.882451797604446],[112,251,67,-8.862427621323128],[112,251,68,-8.84791666110921],[112,251,69,-8.842845774899313],[112,251,70,-8.839999165454186],[112,251,71,-8.839737273944937],[112,251,72,-8.829595773267767],[112,251,73,-8.811220415866659],[112,251,74,-8.804105642632447],[112,251,75,-8.792231697348898],[112,251,76,-8.763742213295503],[112,251,77,-8.725642894309976],[112,251,78,-8.703828375603415],[112,251,79,-8.664229790229633],[112,252,64,-8.995243619492838],[112,252,65,-8.95106773921492],[112,252,66,-8.918674546742702],[112,252,67,-8.898603554053237],[112,252,68,-8.881652655706818],[112,252,69,-8.873110033047027],[112,252,70,-8.870097141426669],[112,252,71,-8.869488940526907],[112,252,72,-8.857945442000707],[112,252,73,-8.839791124706274],[112,252,74,-8.836264133738656],[112,252,75,-8.824482354679352],[112,252,76,-8.795311128053331],[112,252,77,-8.757625717312214],[112,252,78,-8.744455469247661],[112,252,79,-8.70959439294189],[112,253,64,-9.050310068709523],[112,253,65,-9.005126404218027],[112,253,66,-8.968177768936904],[112,253,67,-8.947428582309684],[112,253,68,-8.92891565170707],[112,253,69,-8.923090192513634],[112,253,70,-8.923807635930874],[112,253,71,-8.922996181819556],[112,253,72,-8.911733854687766],[112,253,73,-8.896400602057088],[112,253,74,-8.894589814156749],[112,253,75,-8.881609798473258],[112,253,76,-8.849392951309621],[112,253,77,-8.816088767636307],[112,253,78,-8.81564568463121],[112,253,79,-8.780104557758246],[112,254,64,-9.014900892781986],[112,254,65,-8.97831501923208],[112,254,66,-8.94568850660061],[112,254,67,-8.928876288391027],[112,254,68,-8.91999166242788],[112,254,69,-8.923822989436102],[112,254,70,-8.934998947496013],[112,254,71,-8.943035569459731],[112,254,72,-8.939879616771915],[112,254,73,-8.930551172394123],[112,254,74,-8.93935605651039],[112,254,75,-8.934121997288797],[112,254,76,-8.912504423371438],[112,254,77,-8.885310619933968],[112,254,78,-8.882060585709912],[112,254,79,-8.84904592079867],[112,255,64,-9.05845128394172],[112,255,65,-9.021632606646069],[112,255,66,-8.989787402977004],[112,255,67,-8.97092951576056],[112,255,68,-8.964164171351392],[112,255,69,-8.968274289690475],[112,255,70,-8.979533608474535],[112,255,71,-8.989961462538028],[112,255,72,-8.985730158108757],[112,255,73,-8.976528914769686],[112,255,74,-8.983921141352269],[112,255,75,-8.982643729555397],[112,255,76,-8.959977904994307],[112,255,77,-8.929823770831918],[112,255,78,-8.925735653838215],[112,255,79,-8.894897778904179],[112,256,64,-9.103523803830463],[112,256,65,-9.063268017000366],[112,256,66,-9.033764381220832],[112,256,67,-9.01452202403934],[112,256,68,-9.006051931998991],[112,256,69,-9.012274851438777],[112,256,70,-9.022168552941087],[112,256,71,-9.033558073487121],[112,256,72,-9.031336551148685],[112,256,73,-9.021671216962934],[112,256,74,-9.029913110626586],[112,256,75,-9.030271382052188],[112,256,76,-9.008225463954208],[112,256,77,-8.975546031219938],[112,256,78,-8.972312114095255],[112,256,79,-8.949238658638105],[112,257,64,-9.146388808300559],[112,257,65,-9.107527567772689],[112,257,66,-9.078354915368326],[112,257,67,-9.057736233996632],[112,257,68,-9.049266785523224],[112,257,69,-9.055723380006867],[112,257,70,-9.06479702804295],[112,257,71,-9.074472187466439],[112,257,72,-9.0731487384069],[112,257,73,-9.067077903658511],[112,257,74,-9.073619842201252],[112,257,75,-9.073381914126871],[112,257,76,-9.053273301981383],[112,257,77,-9.041411642172811],[112,257,78,-9.041834327582611],[112,257,79,-9.023214501231465],[112,258,64,-9.193373968848318],[112,258,65,-9.152879893227386],[112,258,66,-9.12306833467689],[112,258,67,-9.104158296321394],[112,258,68,-9.099327277217002],[112,258,69,-9.10433696030516],[112,258,70,-9.110722546543137],[112,258,71,-9.119436421109816],[112,258,72,-9.118496442955015],[112,258,73,-9.11237079949773],[112,258,74,-9.119903773794213],[112,258,75,-9.118064294033655],[112,258,76,-9.101060814287814],[112,258,77,-9.086546937903945],[112,258,78,-9.091600890587678],[112,258,79,-9.070224348936074],[112,259,64,-9.237115477912342],[112,259,65,-9.197981804029572],[112,259,66,-9.166230002080297],[112,259,67,-9.146657525424521],[112,259,68,-9.1423323889756],[112,259,69,-9.147271237222101],[112,259,70,-9.15262996984215],[112,259,71,-9.162450923314612],[112,259,72,-9.163950344461124],[112,259,73,-9.157242585252938],[112,259,74,-9.164539146686101],[112,259,75,-9.162979604156103],[112,259,76,-9.145597742495367],[112,259,77,-9.119590000161164],[112,259,78,-9.13177843798901],[112,259,79,-9.123212617485649],[112,260,64,-9.305802764581314],[112,260,65,-9.270478283463014],[112,260,66,-9.240222035021862],[112,260,67,-9.225211592122069],[112,260,68,-9.22406441716976],[112,260,69,-9.23469258440411],[112,260,70,-9.243178732806719],[112,260,71,-9.254762230352782],[112,260,72,-9.256030978571436],[112,260,73,-9.25074472194042],[112,260,74,-9.25687334360382],[112,260,75,-9.253336581153377],[112,260,76,-9.236426980740111],[112,260,77,-9.204571382820527],[112,260,78,-9.199446855409692],[112,260,79,-9.183713721606553],[112,261,64,-9.346312959983887],[112,261,65,-9.311647191889064],[112,261,66,-9.282265789065761],[112,261,67,-9.271979776088056],[112,261,68,-9.270926076808781],[112,261,69,-9.279998861559386],[112,261,70,-9.288473804897494],[112,261,71,-9.298144171638931],[112,261,72,-9.296553546740325],[112,261,73,-9.289190939909624],[112,261,74,-9.295329803890285],[112,261,75,-9.290676699929035],[112,261,76,-9.276475032333186],[112,261,77,-9.246618460119262],[112,261,78,-9.233980988181735],[112,261,79,-9.220510461062194],[112,262,64,-9.398575124837368],[112,262,65,-9.363049173654208],[112,262,66,-9.33332667226086],[112,262,67,-9.321572838297465],[112,262,68,-9.317435683687226],[112,262,69,-9.327448582664093],[112,262,70,-9.33721889664024],[112,262,71,-9.346571066320829],[112,262,72,-9.343552009026343],[112,262,73,-9.335056872632519],[112,262,74,-9.34314364877931],[112,262,75,-9.33705732063402],[112,262,76,-9.322095120645725],[112,262,77,-9.290039476123214],[112,262,78,-9.28450486227524],[112,262,79,-9.282563858480659],[112,263,64,-9.439456245966378],[112,263,65,-9.407377052138173],[112,263,66,-9.376573777657276],[112,263,67,-9.362412155189556],[112,263,68,-9.358943376268687],[112,263,69,-9.37052647278123],[112,263,70,-9.381426499217316],[112,263,71,-9.39139104785049],[112,263,72,-9.389148159679948],[112,263,73,-9.382747895780682],[112,263,74,-9.389240789762962],[112,263,75,-9.385488961175822],[112,263,76,-9.370304269265207],[112,263,77,-9.334456888258654],[112,263,78,-9.322813382589061],[112,263,79,-9.319827148925144],[112,264,64,-9.48117261651201],[112,264,65,-9.448935703243352],[112,264,66,-9.41771780440812],[112,264,67,-9.403792874283994],[112,264,68,-9.401652584750247],[112,264,69,-9.411251635385266],[112,264,70,-9.426825247457156],[112,264,71,-9.436909317893562],[112,264,72,-9.43540574201729],[112,264,73,-9.429951390385176],[112,264,74,-9.437789064444726],[112,264,75,-9.43643403890397],[112,264,76,-9.415878773747957],[112,264,77,-9.380908916096747],[112,264,78,-9.370578606710657],[112,264,79,-9.366063525268537],[112,265,64,-9.525178822971448],[112,265,65,-9.490673034014979],[112,265,66,-9.459390344008627],[112,265,67,-9.445511526250097],[112,265,68,-9.443390894257025],[112,265,69,-9.452086457709894],[112,265,70,-9.470658621794986],[112,265,71,-9.485885877950315],[112,265,72,-9.486009928347684],[112,265,73,-9.482779511518634],[112,265,74,-9.491593962670883],[112,265,75,-9.509955749498161],[112,265,76,-9.5134579327303],[112,265,77,-9.50708027640026],[112,265,78,-9.488285477940712],[112,265,79,-9.431827373420454],[112,266,64,-9.570855533825068],[112,266,65,-9.535131373581457],[112,266,66,-9.503767970563258],[112,266,67,-9.492020486100449],[112,266,68,-9.489959835401304],[112,266,69,-9.497428146013009],[112,266,70,-9.517422426592512],[112,266,71,-9.534195803270332],[112,266,72,-9.537000485641173],[112,266,73,-9.53123596371449],[112,266,74,-9.540600399236633],[112,266,75,-9.553631040650144],[112,266,76,-9.56335125548849],[112,266,77,-9.549601987536148],[112,266,78,-9.53674067723446],[112,266,79,-9.47482521268504],[112,267,64,-9.614251895789321],[112,267,65,-9.57927667488384],[112,267,66,-9.547933623466488],[112,267,67,-9.536582305880597],[112,267,68,-9.535303023337118],[112,267,69,-9.544437858390143],[112,267,70,-9.558608486208229],[112,267,71,-9.576646729602828],[112,267,72,-9.583704839612668],[112,267,73,-9.57729925799182],[112,267,74,-9.587650810782016],[112,267,75,-9.611441492784671],[112,267,76,-9.624799675852962],[112,267,77,-9.616523900710328],[112,267,78,-9.592726769378105],[112,267,79,-9.524903761840193],[112,268,64,-9.653917390129886],[112,268,65,-9.617362345369722],[112,268,66,-9.586049601464852],[112,268,67,-9.571821352137201],[112,268,68,-9.570248896392991],[112,268,69,-9.576829984125947],[112,268,70,-9.587295980382514],[112,268,71,-9.60545877034434],[112,268,72,-9.61211503188428],[112,268,73,-9.605574882079424],[112,268,74,-9.655633292481925],[112,268,75,-9.679133035057118],[112,268,76,-9.686641244719773],[112,268,77,-9.673954132602994],[112,268,78,-9.616793343373075],[112,268,79,-9.546755726043362],[112,269,64,-9.696885189651706],[112,269,65,-9.657536460141436],[112,269,66,-9.629951033219985],[112,269,67,-9.61612690444696],[112,269,68,-9.61516316805307],[112,269,69,-9.624255788265087],[112,269,70,-9.63352929495612],[112,269,71,-9.65073082730909],[112,269,72,-9.656015474825525],[112,269,73,-9.649855011138657],[112,269,74,-9.712816952711355],[112,269,75,-9.737786997585264],[112,269,76,-9.73954682230822],[112,269,77,-9.717803068274172],[112,269,78,-9.660624760730517],[112,269,79,-9.592052384054622],[112,270,64,-9.748477108394116],[112,270,65,-9.706823636881095],[112,270,66,-9.679830144128188],[112,270,67,-9.664487256873802],[112,270,68,-9.664394829137903],[112,270,69,-9.67221217842484],[112,270,70,-9.681475983472327],[112,270,71,-9.695568157494156],[112,270,72,-9.69968946091511],[112,270,73,-9.696412830473315],[112,270,74,-9.766226200250973],[112,270,75,-9.785567801756804],[112,270,76,-9.780805481995822],[112,270,77,-9.75558162050479],[112,270,78,-9.700020032018463],[112,270,79,-9.633923427333025],[112,271,64,-9.790908730538552],[112,271,65,-9.751579295111034],[112,271,66,-9.722996976170467],[112,271,67,-9.70853784256165],[112,271,68,-9.710331239749884],[112,271,69,-9.714621545755408],[112,271,70,-9.724413897692077],[112,271,71,-9.73845229204296],[112,271,72,-9.741502089476368],[112,271,73,-9.739770807105122],[112,271,74,-9.810588274209273],[112,271,75,-9.827234799159132],[112,271,76,-9.828411336931472],[112,271,77,-9.795074504392312],[112,271,78,-9.73986941828425],[112,271,79,-9.675164589922714],[112,272,64,-9.833287930445946],[112,272,65,-9.797656121197424],[112,272,66,-9.767341004003296],[112,272,67,-9.751475577525083],[112,272,68,-9.755777047452744],[112,272,69,-9.758451742937499],[112,272,70,-9.767891978543702],[112,272,71,-9.781709908901867],[112,272,72,-9.783922274658337],[112,272,73,-9.779856534535815],[112,272,74,-9.851482327282925],[112,272,75,-9.876204903055728],[112,272,76,-9.881634397560273],[112,272,77,-9.83883364926877],[112,272,78,-9.783909270758553],[112,272,79,-9.718617137578951],[112,273,64,-9.881794817757601],[112,273,65,-9.845349301482418],[112,273,66,-9.810114559790843],[112,273,67,-9.794057399194854],[112,273,68,-9.7966158529452],[112,273,69,-9.801202506156992],[112,273,70,-9.80948662715025],[112,273,71,-9.82760003916387],[112,273,72,-9.827585205097796],[112,273,73,-9.82307375444529],[112,273,74,-9.850061795053541],[112,273,75,-9.848391209957487],[112,273,76,-9.821965828518437],[112,273,77,-9.779397775333694],[112,273,78,-9.726351736436962],[112,273,79,-9.664913590991075],[112,274,64,-9.929007674389268],[112,274,65,-9.888908435056937],[112,274,66,-9.856572659408831],[112,274,67,-9.840010174486741],[112,274,68,-9.841076160877314],[112,274,69,-9.847285430197699],[112,274,70,-9.857568569899453],[112,274,71,-9.872706137526384],[112,274,72,-9.874614520037785],[112,274,73,-9.869958321433462],[112,274,74,-9.892188752318887],[112,274,75,-9.893726747517688],[112,274,76,-9.865915720963496],[112,274,77,-9.8222063539874],[112,274,78,-9.770443014679591],[112,274,79,-9.709048504938634],[112,275,64,-9.97150413187386],[112,275,65,-9.930358975783024],[112,275,66,-9.901036076960729],[112,275,67,-9.884205107392667],[112,275,68,-9.881810458635607],[112,275,69,-9.891685528666518],[112,275,70,-9.902394265458032],[112,275,71,-9.916610843503936],[112,275,72,-9.91716411392896],[112,275,73,-9.913932546987738],[112,275,74,-9.939441499446845],[112,275,75,-9.941923861008508],[112,275,76,-9.91767650078276],[112,275,77,-9.87345648337562],[112,275,78,-9.822026310412435],[112,275,79,-9.76169124465629],[112,276,64,-10.003123031586522],[112,276,65,-9.964825828085354],[112,276,66,-9.935014562695223],[112,276,67,-9.918005763795888],[112,276,68,-9.915108921255733],[112,276,69,-9.923258300368726],[112,276,70,-9.940405747259225],[112,276,71,-9.95015805463626],[112,276,72,-9.952082572859428],[112,276,73,-9.945485401441665],[112,276,74,-9.96964770944437],[112,276,75,-9.981075254945301],[112,276,76,-9.966706710813087],[112,276,77,-9.928484451490009],[112,276,78,-9.87525860014936],[112,276,79,-9.815448629453037],[112,277,64,-10.034339564104707],[112,277,65,-10.00291247718847],[112,277,66,-9.976403988822389],[112,277,67,-9.963191900296536],[112,277,68,-9.962768025830616],[112,277,69,-9.970370824171972],[112,277,70,-9.986831317289086],[112,277,71,-9.996597543160387],[112,277,72,-9.995539193530556],[112,277,73,-9.9878069213137],[112,277,74,-10.01150298904919],[112,277,75,-10.024901576891336],[112,277,76,-10.011969863586396],[112,277,77,-9.97266198885745],[112,277,78,-9.921601796655143],[112,277,79,-9.856853888497945],[112,278,64,-10.080015442234329],[112,278,65,-10.048174503627953],[112,278,66,-10.02509679818179],[112,278,67,-10.011248696851213],[112,278,68,-10.01054479244748],[112,278,69,-10.016437592327065],[112,278,70,-10.031988465043652],[112,278,71,-10.041807576748669],[112,278,72,-10.039521764045501],[112,278,73,-10.03238410865525],[112,278,74,-10.052824600830025],[112,278,75,-10.069680594124357],[112,278,76,-10.053319490639218],[112,278,77,-10.013039011253943],[112,278,78,-9.962257304044325],[112,278,79,-9.897019743202259],[112,279,64,-10.12150002531387],[112,279,65,-10.089268663142372],[112,279,66,-10.065260653657843],[112,279,67,-10.055495764472145],[112,279,68,-10.052022980314899],[112,279,69,-10.058607928793032],[112,279,70,-10.073532513112522],[112,279,71,-10.083619789412792],[112,279,72,-10.08318480124463],[112,279,73,-10.076436041629442],[112,279,74,-10.094467517351763],[112,279,75,-10.113788683560482],[112,279,76,-10.099436244793702],[112,279,77,-10.054712114740564],[112,279,78,-10.004753447616014],[112,279,79,-9.938473281667397],[112,280,64,-10.160362920523923],[112,280,65,-10.1285695171672],[112,280,66,-10.106364155854548],[112,280,67,-10.09760225730939],[112,280,68,-10.093492512421578],[112,280,69,-10.101575180801436],[112,280,70,-10.113925965020858],[112,280,71,-10.125328547327445],[112,280,72,-10.126403313073432],[112,280,73,-10.120156699340189],[112,280,74,-10.141340435472452],[112,280,75,-10.15905861571256],[112,280,76,-10.144714368693917],[112,280,77,-10.099428927868086],[112,280,78,-10.046310567729398],[112,280,79,-9.98320391608494],[112,281,64,-10.201694967691752],[112,281,65,-10.167293197351716],[112,281,66,-10.145298510086697],[112,281,67,-10.137911178456001],[112,281,68,-10.135805540035935],[112,281,69,-10.146632288194677],[112,281,70,-10.158236157565636],[112,281,71,-10.169219348731517],[112,281,72,-10.168420141339375],[112,281,73,-10.163348357696982],[112,281,74,-10.20792774257886],[112,281,75,-10.223025262357961],[112,281,76,-10.198872405689597],[112,281,77,-10.153386884692837],[112,281,78,-10.09903496762137],[112,281,79,-10.035337919903128],[112,282,64,-10.2468123220137],[112,282,65,-10.212659990360681],[112,282,66,-10.189703289545736],[112,282,67,-10.180691159804745],[112,282,68,-10.182221467936447],[112,282,69,-10.191434854976915],[112,282,70,-10.201551544543673],[112,282,71,-10.215408007111037],[112,282,72,-10.214046591839356],[112,282,73,-10.209756795592314],[112,282,74,-10.246360165383768],[112,282,75,-10.262532680310064],[112,282,76,-10.243544824745547],[112,282,77,-10.197111294044772],[112,282,78,-10.143091546341415],[112,282,79,-10.080582872966156],[112,283,64,-10.28979981786767],[112,283,65,-10.256124528176723],[112,283,66,-10.233648287791604],[112,283,67,-10.222724811436896],[112,283,68,-10.223108305378153],[112,283,69,-10.232660751840982],[112,283,70,-10.242901103935381],[112,283,71,-10.257531918272473],[112,283,72,-10.257286364917414],[112,283,73,-10.261383558753058],[112,283,74,-10.309804185574349],[112,283,75,-10.32510399434596],[112,283,76,-10.294651739852865],[112,283,77,-10.249034724209977],[112,283,78,-10.195182998618144],[112,283,79,-10.127976931928279],[112,284,64,-10.349885856295243],[112,284,65,-10.311420134317322],[112,284,66,-10.282001968166716],[112,284,67,-10.26825856011769],[112,284,68,-10.262577516493549],[112,284,69,-10.267213140674865],[112,284,70,-10.276593044513367],[112,284,71,-10.289534173995527],[112,284,72,-10.288818725796336],[112,284,73,-10.294952253327365],[112,284,74,-10.351175989621662],[112,284,75,-10.37287303881855],[112,284,76,-10.342532842708104],[112,284,77,-10.297305766692848],[112,284,78,-10.241200393693326],[112,284,79,-10.172953672458416],[112,285,64,-10.401683838723791],[112,285,65,-10.361660192431147],[112,285,66,-10.33183472750534],[112,285,67,-10.319746546055175],[112,285,68,-10.312667092822068],[112,285,69,-10.316661041165018],[112,285,70,-10.330653531226517],[112,285,71,-10.340830014291987],[112,285,72,-10.337606984086278],[112,285,73,-10.34325424713835],[112,285,74,-10.398743320358834],[112,285,75,-10.418308669985905],[112,285,76,-10.388204368077155],[112,285,77,-10.343656407407925],[112,285,78,-10.285673035104137],[112,285,79,-10.215476457422877],[112,286,64,-10.449034061509824],[112,286,65,-10.407218901607227],[112,286,66,-10.376569402663835],[112,286,67,-10.363576836729033],[112,286,68,-10.356451226977395],[112,286,69,-10.361402024632229],[112,286,70,-10.376095535571782],[112,286,71,-10.38665727563097],[112,286,72,-10.382815235868637],[112,286,73,-10.386087817574753],[112,286,74,-10.44218730144607],[112,286,75,-10.465063462384395],[112,286,76,-10.433761066605642],[112,286,77,-10.38941993510622],[112,286,78,-10.332357793339924],[112,286,79,-10.26439142090506],[112,287,64,-10.492761194194218],[112,287,65,-10.452352464029417],[112,287,66,-10.418113417599903],[112,287,67,-10.40359070471727],[112,287,68,-10.396710851032102],[112,287,69,-10.40396564202674],[112,287,70,-10.419998815886348],[112,287,71,-10.431863881619856],[112,287,72,-10.43036148739501],[112,287,73,-10.426929215690112],[112,287,74,-10.474123581607062],[112,287,75,-10.504072114824577],[112,287,76,-10.47844354771258],[112,287,77,-10.433730704654945],[112,287,78,-10.375536486535765],[112,287,79,-10.307016680895401],[112,288,64,-10.534488628150445],[112,288,65,-10.495929224880959],[112,288,66,-10.462177572611028],[112,288,67,-10.444956099417277],[112,288,68,-10.439529967492371],[112,288,69,-10.446520215865084],[112,288,70,-10.464897115348966],[112,288,71,-10.477121554411623],[112,288,72,-10.474422162434658],[112,288,73,-10.472457067215444],[112,288,74,-10.512774039346715],[112,288,75,-10.546703175816962],[112,288,76,-10.524999942949329],[112,288,77,-10.478126576791803],[112,288,78,-10.417835189121485],[112,288,79,-10.34717284749554],[112,289,64,-10.571408237000009],[112,289,65,-10.531214527448574],[112,289,66,-10.497720158955412],[112,289,67,-10.479079888379838],[112,289,68,-10.474090342305708],[112,289,69,-10.480629506669638],[112,289,70,-10.499402558013516],[112,289,71,-10.511917934191224],[112,289,72,-10.512111167378832],[112,289,73,-10.524878483664388],[112,289,74,-10.581282985997406],[112,289,75,-10.612104165154808],[112,289,76,-10.576954619695611],[112,289,77,-10.528745107290515],[112,289,78,-10.46938233386662],[112,289,79,-10.396801920906872],[112,290,64,-10.619463216783542],[112,290,65,-10.577233207904504],[112,290,66,-10.545326851908598],[112,290,67,-10.52879389178641],[112,290,68,-10.522983703860065],[112,290,69,-10.52915191879534],[112,290,70,-10.543988752851845],[112,290,71,-10.555323063170022],[112,290,72,-10.558087990267008],[112,290,73,-10.560048786236644],[112,290,74,-10.608775084976354],[112,290,75,-10.650602125946355],[112,290,76,-10.621917503405417],[112,290,77,-10.571614547118395],[112,290,78,-10.511896257500954],[112,290,79,-10.438136032996079],[112,291,64,-10.66518325654059],[112,291,65,-10.621245262167157],[112,291,66,-10.59111528076039],[112,291,67,-10.576723939053686],[112,291,68,-10.569806636988748],[112,291,69,-10.573477724822554],[112,291,70,-10.585628846539578],[112,291,71,-10.599364404382387],[112,291,72,-10.601596039254916],[112,291,73,-10.604905179410597],[112,291,74,-10.635955404872],[112,291,75,-10.683296901520727],[112,291,76,-10.67072139795283],[112,291,77,-10.621851152192052],[112,291,78,-10.559983133960744],[112,291,79,-10.48407658708195],[112,292,64,-10.709385392071178],[112,292,65,-10.672800511433],[112,292,66,-10.64867739719643],[112,292,67,-10.637648665904246],[112,292,68,-10.637002353576014],[112,292,69,-10.646761669982869],[112,292,70,-10.660006443681631],[112,292,71,-10.676784442708385],[112,292,72,-10.68044040079826],[112,292,73,-10.682711290533804],[112,292,74,-10.706164963258765],[112,292,75,-10.734465919767802],[112,292,76,-10.713444671144304],[112,292,77,-10.662145297681857],[112,292,78,-10.597822805138936],[112,292,79,-10.526209545482056],[112,293,64,-10.758382048768802],[112,293,65,-10.724498236425791],[112,293,66,-10.696362452994892],[112,293,67,-10.685912444898408],[112,293,68,-10.6838578695609],[112,293,69,-10.693749572593813],[112,293,70,-10.705743340635449],[112,293,71,-10.718416530469678],[112,293,72,-10.723313953342247],[112,293,73,-10.725172678774936],[112,293,74,-10.748078708175607],[112,293,75,-10.77620443548022],[112,293,76,-10.75600980913592],[112,293,77,-10.702970835652483],[112,293,78,-10.639771802673646],[112,293,79,-10.567209021115776],[112,294,64,-10.805970461573322],[112,294,65,-10.773483383426175],[112,294,66,-10.745304020649813],[112,294,67,-10.732488496772065],[112,294,68,-10.72952324157095],[112,294,69,-10.736379279532368],[112,294,70,-10.750648357786412],[112,294,71,-10.760816573233775],[112,294,72,-10.764719511555198],[112,294,73,-10.764222711157291],[112,294,74,-10.787755642671199],[112,294,75,-10.825002701395974],[112,294,76,-10.80532174160831],[112,294,77,-10.749077040508169],[112,294,78,-10.690115324142663],[112,294,79,-10.61686288279495],[112,295,64,-10.853533690013839],[112,295,65,-10.818581787915466],[112,295,66,-10.790454230954666],[112,295,67,-10.778929016312697],[112,295,68,-10.77584689055603],[112,295,69,-10.78196749926899],[112,295,70,-10.798236435462218],[112,295,71,-10.80814279667335],[112,295,72,-10.80945058315063],[112,295,73,-10.806897578757429],[112,295,74,-10.81946109657965],[112,295,75,-10.821308144722328],[112,295,76,-10.833493977020945],[112,295,77,-10.793941241018722],[112,295,78,-10.730998704963087],[112,295,79,-10.660900374690293],[112,296,64,-10.898513202803079],[112,296,65,-10.866018539725628],[112,296,66,-10.837639411318797],[112,296,67,-10.822052405769043],[112,296,68,-10.818936644181727],[112,296,69,-10.826304390113519],[112,296,70,-10.845217881092308],[112,296,71,-10.855826140706947],[112,296,72,-10.853541464103643],[112,296,73,-10.85115409879036],[112,296,74,-10.862332082289358],[112,296,75,-10.863681576664618],[112,296,76,-10.875374233340104],[112,296,77,-10.838665403854197],[112,296,78,-10.776727474363566],[112,296,79,-10.705988296199186],[112,297,64,-10.946491329531215],[112,297,65,-10.917979903580974],[112,297,66,-10.890537811225084],[112,297,67,-10.874009276621967],[112,297,68,-10.871547606778613],[112,297,69,-10.87832107876834],[112,297,70,-10.89557255229402],[112,297,71,-10.905092942608638],[112,297,72,-10.897979885289994],[112,297,73,-10.889847996105619],[112,297,74,-10.897813916083471],[112,297,75,-10.910288596494379],[112,297,76,-10.93261655056864],[112,297,77,-10.890382613822867],[112,297,78,-10.828164000979323],[112,297,79,-10.755173737763556],[112,298,64,-10.992655698429054],[112,298,65,-10.963033919174835],[112,298,66,-10.937453820512303],[112,298,67,-10.922580009190877],[112,298,68,-10.92002751524822],[112,298,69,-10.926841921887082],[112,298,70,-10.944300348230566],[112,298,71,-10.950181088709321],[112,298,72,-10.943104730581341],[112,298,73,-10.934045450442198],[112,298,74,-10.941666301972031],[112,298,75,-10.95889430196838],[112,298,76,-10.979278984796078],[112,298,77,-10.933927315206075],[112,298,78,-10.871025187334372],[112,298,79,-10.797738315569077],[112,299,64,-11.037699743659998],[112,299,65,-11.005699811617319],[112,299,66,-10.981811307824934],[112,299,67,-10.96784890873792],[112,299,68,-10.963777626271701],[112,299,69,-10.971932502859435],[112,299,70,-10.98864393394436],[112,299,71,-10.9949890303009],[112,299,72,-10.987281120594856],[112,299,73,-10.977922667855141],[112,299,74,-10.985538245105051],[112,299,75,-11.002821943786323],[112,299,76,-11.022059911909992],[112,299,77,-10.98132572498932],[112,299,78,-10.916088540160937],[112,299,79,-10.845069810399876],[112,300,64,-11.080345918540626],[112,300,65,-11.046013888474953],[112,300,66,-11.02105626400032],[112,300,67,-11.004742365989294],[112,300,68,-10.998124389989364],[112,300,69,-11.00762095023016],[112,300,70,-11.024676617217523],[112,300,71,-11.037728344053708],[112,300,72,-11.03273087540109],[112,300,73,-11.025478438649568],[112,300,74,-11.03513483249484],[112,300,75,-11.036475472384275],[112,300,76,-11.015181454649966],[112,300,77,-10.982905388001779],[112,300,78,-10.943661305804563],[112,300,79,-10.883173869139235],[112,301,64,-11.126340650732711],[112,301,65,-11.092518597544236],[112,301,66,-11.066502776824677],[112,301,67,-11.047301600114375],[112,301,68,-11.042193525265828],[112,301,69,-11.04881179218104],[112,301,70,-11.067059727480311],[112,301,71,-11.080320953324355],[112,301,72,-11.079201803615867],[112,301,73,-11.07421396658323],[112,301,74,-11.083108233678711],[112,301,75,-11.083778433309464],[112,301,76,-11.058369818135468],[112,301,77,-11.02488110618148],[112,301,78,-10.986131922666667],[112,301,79,-10.92454328942097],[112,302,64,-11.17032283957695],[112,302,65,-11.137418048557237],[112,302,66,-11.110584713960362],[112,302,67,-11.089378808529194],[112,302,68,-11.086460806024645],[112,302,69,-11.088995520247648],[112,302,70,-11.10321362792336],[112,302,71,-11.11986852254732],[112,302,72,-11.12080301033116],[112,302,73,-11.115547010472183],[112,302,74,-11.126580879523846],[112,302,75,-11.12428647234625],[112,302,76,-11.095966261871837],[112,302,77,-11.060934646227278],[112,302,78,-11.028091457293044],[112,302,79,-10.971442976149019],[112,303,64,-11.213729017399741],[112,303,65,-11.182769902305544],[112,303,66,-11.156262354882749],[112,303,67,-11.135537199548677],[112,303,68,-11.130066509636423],[112,303,69,-11.131629563710783],[112,303,70,-11.147850818339311],[112,303,71,-11.164897850682994],[112,303,72,-11.166518285575153],[112,303,73,-11.162727253617009],[112,303,74,-11.174083447386513],[112,303,75,-11.17135874463],[112,303,76,-11.14265348895221],[112,303,77,-11.113871666411244],[112,303,78,-11.077106086965966],[112,303,79,-11.018408036645361],[112,304,64,-11.25859027435048],[112,304,65,-11.227878035950262],[112,304,66,-11.200073602390068],[112,304,67,-11.179987877692568],[112,304,68,-11.172439858944449],[112,304,69,-11.176484125894413],[112,304,70,-11.194456517780777],[112,304,71,-11.21242833073652],[112,304,72,-11.212483837911856],[112,304,73,-11.209342791286302],[112,304,74,-11.22054319392546],[112,304,75,-11.216415908907097],[112,304,76,-11.187899023414966],[112,304,77,-11.155262038628898],[112,304,78,-11.11809816936585],[112,304,79,-11.062537588520675],[112,305,64,-11.305558455761181],[112,305,65,-11.27417225198961],[112,305,66,-11.245007865290809],[112,305,67,-11.226173853642152],[112,305,68,-11.218269138678686],[112,305,69,-11.222982102622952],[112,305,70,-11.240349419453729],[112,305,71,-11.26037621628883],[112,305,72,-11.260429623393426],[112,305,73,-11.254857818588258],[112,305,74,-11.264587960443356],[112,305,75,-11.262784991741555],[112,305,76,-11.234003982070599],[112,305,77,-11.202026957375807],[112,305,78,-11.164175208109166],[112,305,79,-11.108690765425639],[112,306,64,-11.354826912613253],[112,306,65,-11.323409253542538],[112,306,66,-11.293212804085597],[112,306,67,-11.272730559306947],[112,306,68,-11.266069494455834],[112,306,69,-11.270174312958726],[112,306,70,-11.28696794149261],[112,306,71,-11.305764169682307],[112,306,72,-11.30757835463964],[112,306,73,-11.298903825671779],[112,306,74,-11.311365232852125],[112,306,75,-11.307065715324134],[112,306,76,-11.278939681000649],[112,306,77,-11.243871275665677],[112,306,78,-11.209959886014408],[112,306,79,-11.154054765129755],[112,307,64,-11.40166027826202],[112,307,65,-11.368480205099885],[112,307,66,-11.337310333135104],[112,307,67,-11.317903484088777],[112,307,68,-11.310848964451614],[112,307,69,-11.316192555418533],[112,307,70,-11.33416458846106],[112,307,71,-11.351028543607418],[112,307,72,-11.351527315166523],[112,307,73,-11.342613847443102],[112,307,74,-11.354857336289033],[112,307,75,-11.351800756571327],[112,307,76,-11.324520872395063],[112,307,77,-11.287640828774867],[112,307,78,-11.25638742729496],[112,307,79,-11.198668487923428],[112,308,64,-11.448383369978815],[112,308,65,-11.410097625396242],[112,308,66,-11.373566552303707],[112,308,67,-11.351729892620929],[112,308,68,-11.345030836945545],[112,308,69,-11.350438802291825],[112,308,70,-11.364377111169098],[112,308,71,-11.379239774536423],[112,308,72,-11.37847072499439],[112,308,73,-11.371542778046384],[112,308,74,-11.387557091364592],[112,308,75,-11.384291908787198],[112,308,76,-11.358757830601906],[112,308,77,-11.339302700064767],[112,308,78,-11.31471017408364],[112,308,79,-11.255934630580608],[112,309,64,-11.491942275005705],[112,309,65,-11.454287871386207],[112,309,66,-11.417545735617585],[112,309,67,-11.398180239897883],[112,309,68,-11.392640332264373],[112,309,69,-11.398890775292957],[112,309,70,-11.409675630720283],[112,309,71,-11.422537621503732],[112,309,72,-11.423277618215376],[112,309,73,-11.417298812452621],[112,309,74,-11.433224719224329],[112,309,75,-11.430385171057942],[112,309,76,-11.401670216789352],[112,309,77,-11.368380172793064],[112,309,78,-11.326635284061481],[112,309,79,-11.261302115980936],[112,310,64,-11.531520821065657],[112,310,65,-11.494990099219049],[112,310,66,-11.459734643231103],[112,310,67,-11.439757316236904],[112,310,68,-11.433608627878616],[112,310,69,-11.438734346882239],[112,310,70,-11.449266389684162],[112,310,71,-11.462539534328332],[112,310,72,-11.463007635607582],[112,310,73,-11.455075237672427],[112,310,74,-11.469133895563733],[112,310,75,-11.467151232662573],[112,310,76,-11.436999995176578],[112,310,77,-11.406192368345573],[112,310,78,-11.366238707620873],[112,310,79,-11.303124697668022],[112,311,64,-11.576448461592975],[112,311,65,-11.539944782526305],[112,311,66,-11.505409363667061],[112,311,67,-11.486532209717595],[112,311,68,-11.478519393332153],[112,311,69,-11.483566957930321],[112,311,70,-11.49385118747807],[112,311,71,-11.50655935397489],[112,311,72,-11.509332694571555],[112,311,73,-11.500570466202056],[112,311,74,-11.511175605800704],[112,311,75,-11.509956849505702],[112,311,76,-11.487906094193528],[112,311,77,-11.45586582106305],[112,311,78,-11.414760355098256],[112,311,79,-11.343071028328342],[112,312,64,-11.613658084985358],[112,312,65,-11.576839459347395],[112,312,66,-11.544908247903294],[112,312,67,-11.526242189469963],[112,312,68,-11.516464839386293],[112,312,69,-11.519341727203232],[112,312,70,-11.531196735647573],[112,312,71,-11.545258578666163],[112,312,72,-11.548278851462026],[112,312,73,-11.541832269758972],[112,312,74,-11.551309740854867],[112,312,75,-11.550869751788596],[112,312,76,-11.52930356614509],[112,312,77,-11.498410493313957],[112,312,78,-11.456670353847642],[112,312,79,-11.384810078159115],[112,313,64,-11.657133336730332],[112,313,65,-11.621459489022765],[112,313,66,-11.58937557988979],[112,313,67,-11.57094854261096],[112,313,68,-11.559046176355928],[112,313,69,-11.562863456019],[112,313,70,-11.576653144807574],[112,313,71,-11.588127366415575],[112,313,72,-11.592354273237728],[112,313,73,-11.587006136053759],[112,313,74,-11.597889382079515],[112,313,75,-11.595203464449447],[112,313,76,-11.568870121080096],[112,313,77,-11.536637516580226],[112,313,78,-11.492371636847679],[112,313,79,-11.42808395124429],[112,314,64,-11.703542246400968],[112,314,65,-11.669016987054171],[112,314,66,-11.638415105116424],[112,314,67,-11.616694400608845],[112,314,68,-11.605405455043265],[112,314,69,-11.607717400270836],[112,314,70,-11.620215812396294],[112,314,71,-11.633918098126456],[112,314,72,-11.636104890119535],[112,314,73,-11.631515627121976],[112,314,74,-11.64386613040621],[112,314,75,-11.63859620784424],[112,314,76,-11.60553787407399],[112,314,77,-11.574882006978392],[112,314,78,-11.529473246208509],[112,314,79,-11.46688482673017],[112,315,64,-11.750069462116123],[112,315,65,-11.714146585934914],[112,315,66,-11.685318422508637],[112,315,67,-11.662676195497559],[112,315,68,-11.652432433015422],[112,315,69,-11.652384215191189],[112,315,70,-11.665025504525833],[112,315,71,-11.678326851319197],[112,315,72,-11.677775667788525],[112,315,73,-11.676023914264507],[112,315,74,-11.68505892542269],[112,315,75,-11.682067882504466],[112,315,76,-11.64975683350286],[112,315,77,-11.618297032172569],[112,315,78,-11.574656164383553],[112,315,79,-11.51364952611065],[112,316,64,-11.80493324329664],[112,316,65,-11.765445982675269],[112,316,66,-11.734286164601267],[112,316,67,-11.71008247871709],[112,316,68,-11.699054772056662],[112,316,69,-11.697803802284398],[112,316,70,-11.7105059266851],[112,316,71,-11.719570378846875],[112,316,72,-11.719342843957914],[112,316,73,-11.717842210124665],[112,316,74,-11.725707352823344],[112,316,75,-11.722289181316627],[112,316,76,-11.694405943903519],[112,316,77,-11.661794805685176],[112,316,78,-11.609410563230705],[112,316,79,-11.53582637257159],[112,317,64,-11.855227581481683],[112,317,65,-11.812857959733439],[112,317,66,-11.780518890632306],[112,317,67,-11.756521419301887],[112,317,68,-11.745708487701167],[112,317,69,-11.746130879581171],[112,317,70,-11.757465002918195],[112,317,71,-11.764263505580972],[112,317,72,-11.76242352639995],[112,317,73,-11.759455182278387],[112,317,74,-11.768033890618508],[112,317,75,-11.764067578392325],[112,317,76,-11.73666068590018],[112,317,77,-11.706802858166068],[112,317,78,-11.655972699239694],[112,317,79,-11.581746004331853],[112,318,64,-11.898889335989848],[112,318,65,-11.853718533642256],[112,318,66,-11.81708023529188],[112,318,67,-11.798659666992577],[112,318,68,-11.785694932857037],[112,318,69,-11.784583181912062],[112,318,70,-11.796710211923502],[112,318,71,-11.804070968824988],[112,318,72,-11.799570212337112],[112,318,73,-11.791674382972344],[112,318,74,-11.800880474275083],[112,318,75,-11.797627459058331],[112,318,76,-11.773185746363646],[112,318,77,-11.74527009481382],[112,318,78,-11.695779071024807],[112,318,79,-11.622833154233858],[112,319,64,-11.95046040091402],[112,319,65,-11.904834949243439],[112,319,66,-11.863772443105034],[112,319,67,-11.845852116328667],[112,319,68,-11.832351580627314],[112,319,69,-11.830340229593396],[112,319,70,-11.843427783938923],[112,319,71,-11.851845316338927],[112,319,72,-11.844651402927315],[112,319,73,-11.832932557892217],[112,319,74,-11.841872974564097],[112,319,75,-11.839653555072344],[112,319,76,-11.821300329103801],[112,319,77,-11.790380337574708],[112,319,78,-11.739122589541656],[112,319,79,-11.662649236744597],[113,-64,64,22.864617445737416],[113,-64,65,22.887002874404367],[113,-64,66,22.89971265569241],[113,-64,67,22.90994872370304],[113,-64,68,22.92766232712732],[113,-64,69,22.950010897602738],[113,-64,70,22.98688250876238],[113,-64,71,23.038724715343424],[113,-64,72,23.10079472366028],[113,-64,73,23.147713871081418],[113,-64,74,23.203752751459934],[113,-64,75,23.28109716529741],[113,-64,76,23.351651255884185],[113,-64,77,23.384246041369245],[113,-64,78,23.370111213838115],[113,-64,79,23.297333385066704],[113,-63,64,22.678556795780743],[113,-63,65,22.697906789352714],[113,-63,66,22.71252892008889],[113,-63,67,22.721904966051703],[113,-63,68,22.73779143945756],[113,-63,69,22.76313240262405],[113,-63,70,22.79875198875467],[113,-63,71,22.849222452429608],[113,-63,72,22.91226401775519],[113,-63,73,22.960231792143798],[113,-63,74,23.015555623147183],[113,-63,75,23.09387522987432],[113,-63,76,23.164316457076467],[113,-63,77,23.199713466914485],[113,-63,78,23.191189614486238],[113,-63,79,23.1195427612966],[113,-62,64,22.495565840484915],[113,-62,65,22.51424442558883],[113,-62,66,22.526795652437098],[113,-62,67,22.53734190565995],[113,-62,68,22.551900489866046],[113,-62,69,22.577004129943408],[113,-62,70,22.61439506630444],[113,-62,71,22.66563208090823],[113,-62,72,22.728194228313253],[113,-62,73,22.77707179146184],[113,-62,74,22.830290306586576],[113,-62,75,22.909038061594295],[113,-62,76,22.977170706184364],[113,-62,77,23.01403851042431],[113,-62,78,23.004851113782085],[113,-62,79,22.93735966274196],[113,-61,64,22.306335767323482],[113,-61,65,22.328887304893183],[113,-61,66,22.337388217757844],[113,-61,67,22.34733757008214],[113,-61,68,22.361099430759403],[113,-61,69,22.387729361449587],[113,-61,70,22.424344317402408],[113,-61,71,22.47719592269013],[113,-61,72,22.539202365178014],[113,-61,73,22.589379406475608],[113,-61,74,22.64164088670176],[113,-61,75,22.722617953019537],[113,-61,76,22.788962260860362],[113,-61,77,22.825080492484496],[113,-61,78,22.817963141489095],[113,-61,79,22.749258984809096],[113,-60,64,22.117041031802085],[113,-60,65,22.139509605277283],[113,-60,66,22.147316895274656],[113,-60,67,22.15472463231124],[113,-60,68,22.17164998669338],[113,-60,69,22.199162711869093],[113,-60,70,22.236603767989436],[113,-60,71,22.289280917749817],[113,-60,72,22.35053239980172],[113,-60,73,22.399212613183895],[113,-60,74,22.453399368579067],[113,-60,75,22.534152979004883],[113,-60,76,22.602575299157557],[113,-60,77,22.6371910181405],[113,-60,78,22.629622706235818],[113,-60,79,22.561173566068415],[113,-59,64,21.937557779324116],[113,-59,65,21.959587126370895],[113,-59,66,21.968640177006645],[113,-59,67,21.97496652108291],[113,-59,68,21.993476499589047],[113,-59,69,22.019826059662666],[113,-59,70,22.05413044335709],[113,-59,71,22.110654988544596],[113,-59,72,22.16779708518588],[113,-59,73,22.215008253735093],[113,-59,74,22.273347523785763],[113,-59,75,22.35123279117096],[113,-59,76,22.417414390752015],[113,-59,77,22.44721728051532],[113,-59,78,22.44084104389571],[113,-59,79,22.36917371413402],[113,-58,64,21.748109138695998],[113,-58,65,21.772626610996344],[113,-58,66,21.782411939629853],[113,-58,67,21.792159095963207],[113,-58,68,21.81046045218565],[113,-58,69,21.836964386719764],[113,-58,70,21.870894354369273],[113,-58,71,21.92653471916202],[113,-58,72,21.982690793443442],[113,-58,73,22.028760905922574],[113,-58,74,22.08938024732864],[113,-58,75,22.168016329162423],[113,-58,76,22.23010516133865],[113,-58,77,22.259804788000913],[113,-58,78,22.252585279285135],[113,-58,79,22.182733605920134],[113,-57,64,21.55410704723346],[113,-57,65,21.579370168718174],[113,-57,66,21.590736176649184],[113,-57,67,21.601287702527674],[113,-57,68,21.620632850000256],[113,-57,69,21.64582777722137],[113,-57,70,21.67906323337856],[113,-57,71,21.73534765091695],[113,-57,72,21.790925010283548],[113,-57,73,21.838424140630366],[113,-57,74,21.900588593586814],[113,-57,75,21.97792711042847],[113,-57,76,22.04174174901562],[113,-57,77,22.073229871578185],[113,-57,78,22.063520984440913],[113,-57,79,21.992758647878865],[113,-56,64,21.368248317102402],[113,-56,65,21.392089113299978],[113,-56,66,21.40394179845075],[113,-56,67,21.41572959949272],[113,-56,68,21.43425307848346],[113,-56,69,21.459026242174236],[113,-56,70,21.493810055695796],[113,-56,71,21.54665207935982],[113,-56,72,21.60711935160879],[113,-56,73,21.65476728146618],[113,-56,74,21.71472256422851],[113,-56,75,21.79034286967435],[113,-56,76,21.85678989037703],[113,-56,77,21.889625126825493],[113,-56,78,21.874685399396093],[113,-56,79,21.80617045924909],[113,-55,64,21.180012857404243],[113,-55,65,21.2050406967322],[113,-55,66,21.217940905301546],[113,-55,67,21.230575979282985],[113,-55,68,21.246898609305862],[113,-55,69,21.271254644075864],[113,-55,70,21.3077100768557],[113,-55,71,21.360464939707203],[113,-55,72,21.42110665507991],[113,-55,73,21.47100450531629],[113,-55,74,21.530353114176723],[113,-55,75,21.604366860545625],[113,-55,76,21.670285858268112],[113,-55,77,21.70378365294245],[113,-55,78,21.688923321309655],[113,-55,79,21.621967704444653],[113,-54,64,20.99329035538072],[113,-54,65,21.01908393139734],[113,-54,66,21.031821966889957],[113,-54,67,21.04439160258094],[113,-54,68,21.06090838305742],[113,-54,69,21.084939040800172],[113,-54,70,21.121313209266244],[113,-54,71,21.175407583071188],[113,-54,72,21.233637733408887],[113,-54,73,21.284329578613157],[113,-54,74,21.3461467793256],[113,-54,75,21.419754513411263],[113,-54,76,21.484754587408677],[113,-54,77,21.519359747772157],[113,-54,78,21.505476995764074],[113,-54,79,21.4370197388974],[113,-53,64,20.804123318176497],[113,-53,65,20.828596791338033],[113,-53,66,20.840958739615495],[113,-53,67,20.854108131820343],[113,-53,68,20.874647207162518],[113,-53,69,20.89811852277545],[113,-53,70,20.930789273227493],[113,-53,71,20.983038983255955],[113,-53,72,21.045320589734114],[113,-53,73,21.09640243148558],[113,-53,74,21.156324652271437],[113,-53,75,21.232211888572436],[113,-53,76,21.297475510300924],[113,-53,77,21.33142006351574],[113,-53,78,21.32038444774753],[113,-53,79,21.253454324746887],[113,-52,64,20.60901917735225],[113,-52,65,20.63430551711343],[113,-52,66,20.649830519533527],[113,-52,67,20.662135884294543],[113,-52,68,20.685432386433586],[113,-52,69,20.709494195083575],[113,-52,70,20.738928498441314],[113,-52,71,20.792731483841074],[113,-52,72,20.854111988981856],[113,-52,73,20.904982913187606],[113,-52,74,20.966106763084177],[113,-52,75,21.040039350000015],[113,-52,76,21.104820976282234],[113,-52,77,21.13947066433895],[113,-52,78,21.132767890665196],[113,-52,79,21.06787629282611],[113,-51,64,20.41173769137704],[113,-51,65,20.436937801644966],[113,-51,66,20.451235353126357],[113,-51,67,20.46314723533594],[113,-51,68,20.4864048143514],[113,-51,69,20.512710582788923],[113,-51,70,20.54492292603886],[113,-51,71,20.596625871966342],[113,-51,72,20.658747342520186],[113,-51,73,20.70767890837563],[113,-51,74,20.768312855077312],[113,-51,75,20.84534235354019],[113,-51,76,20.911731675850458],[113,-51,77,20.949004268738562],[113,-51,78,20.949844058046878],[113,-51,79,20.89169881281456],[113,-50,64,20.2265781009708],[113,-50,65,20.253754522151606],[113,-50,66,20.267189857640744],[113,-50,67,20.28063180838683],[113,-50,68,20.301473740278166],[113,-50,69,20.327226014186152],[113,-50,70,20.361768707393214],[113,-50,71,20.411544252004795],[113,-50,72,20.471877154965494],[113,-50,73,20.522522126286024],[113,-50,74,20.58058075966364],[113,-50,75,20.656531046367714],[113,-50,76,20.72551251033142],[113,-50,77,20.76196360220644],[113,-50,78,20.762973670744163],[113,-50,79,20.707920139315156],[113,-49,64,20.035711780882934],[113,-49,65,20.063851357769757],[113,-49,66,20.075570513802557],[113,-49,67,20.09078140629591],[113,-49,68,20.112120339602836],[113,-49,69,20.137043243355198],[113,-49,70,20.172259623354922],[113,-49,71,20.22153445353263],[113,-49,72,20.281784833553733],[113,-49,73,20.330653745763502],[113,-49,74,20.39126856993695],[113,-49,75,20.466181921467584],[113,-49,76,20.535824939752857],[113,-49,77,20.57442290332577],[113,-49,78,20.574099145838172],[113,-49,79,20.521593510811773],[113,-48,64,19.874025801553987],[113,-48,65,19.879227709449015],[113,-48,66,19.89073506374021],[113,-48,67,19.906381728603883],[113,-48,68,19.928272830994164],[113,-48,69,19.955876413697162],[113,-48,70,19.99033256605944],[113,-48,71,20.040807832434083],[113,-48,72,20.098904348232352],[113,-48,73,20.145154282586073],[113,-48,74,20.205086302055953],[113,-48,75,20.27841318789918],[113,-48,76,20.3485556575345],[113,-48,77,20.39013752999051],[113,-48,78,20.39060890033321],[113,-48,79,20.3393384707601],[113,-47,64,19.711394554397515],[113,-47,65,19.690295513606454],[113,-47,66,19.71151747162476],[113,-47,67,19.730586370881802],[113,-47,68,19.753287616271233],[113,-47,69,19.78108105601885],[113,-47,70,19.816930684677363],[113,-47,71,19.86945276279099],[113,-47,72,19.92553370194653],[113,-47,73,19.969708268509425],[113,-47,74,20.027158334870144],[113,-47,75,20.102946397687493],[113,-47,76,20.168691669212325],[113,-47,77,20.211116691114025],[113,-47,78,20.208622429801256],[113,-47,79,20.154637783363686],[113,-46,64,19.582577624667422],[113,-46,65,19.5073862023433],[113,-46,66,19.52903824717073],[113,-46,67,19.548009138431635],[113,-46,68,19.57126587340324],[113,-46,69,19.599603959195743],[113,-46,70,19.63350686165307],[113,-46,71,19.686597904653798],[113,-46,72,19.744271173381716],[113,-46,73,19.78746883934506],[113,-46,74,19.844144637557402],[113,-46,75,19.920896011508244],[113,-46,76,19.98668064125733],[113,-46,77,20.02588391752857],[113,-46,78,20.025122978814405],[113,-46,79,19.9709354267338],[113,-45,64,19.43776812086881],[113,-45,65,19.34562129780687],[113,-45,66,19.341589183876653],[113,-45,67,19.360419918568418],[113,-45,68,19.38516805432236],[113,-45,69,19.41175836400433],[113,-45,70,19.4459843655049],[113,-45,71,19.497299814529953],[113,-45,72,19.5577955901114],[113,-45,73,19.60440639782711],[113,-45,74,19.658161381508584],[113,-45,75,19.73556952738436],[113,-45,76,19.80242296793453],[113,-45,77,19.83920360405552],[113,-45,78,19.83820695500178],[113,-45,79,19.786058951112704],[113,-44,64,19.433876033317283],[113,-44,65,19.264578055061328],[113,-44,66,19.199823697580495],[113,-44,67,19.217267738303544],[113,-44,68,19.239505621278873],[113,-44,69,19.26276951111702],[113,-44,70,19.296237023906613],[113,-44,71,19.346563416930497],[113,-44,72,19.408990365296496],[113,-44,73,19.454111815196015],[113,-44,74,19.5106618815503],[113,-44,75,19.58659898535663],[113,-44,76,19.652379952042104],[113,-44,77,19.68951487432675],[113,-44,78,19.68651686096232],[113,-44,79,19.634509055321477],[113,-43,64,19.219174202850123],[113,-43,65,19.02947740887725],[113,-43,66,19.032532741368737],[113,-43,67,19.047929195662313],[113,-43,68,19.0673118106423],[113,-43,69,19.087048324370382],[113,-43,70,19.115166080681],[113,-43,71,19.16686964911981],[113,-43,72,19.22781333628511],[113,-43,73,19.274945446649784],[113,-43,74,19.33519221829717],[113,-43,75,19.409013936303698],[113,-43,76,19.474906745728894],[113,-43,77,19.511713993560885],[113,-43,78,19.505282282208864],[113,-43,79,19.45423322065003],[113,-42,64,19.07763326789818],[113,-42,65,18.91078342816197],[113,-42,66,18.857033946232526],[113,-42,67,18.870908829051736],[113,-42,68,18.8870328521536],[113,-42,69,18.90595965808626],[113,-42,70,18.933307410817516],[113,-42,71,18.981982852459744],[113,-42,72,19.043620769959748],[113,-42,73,19.09311344994107],[113,-42,74,19.151124419722677],[113,-42,75,19.22568402110403],[113,-42,76,19.29220530569257],[113,-42,77,19.326117925736582],[113,-42,78,19.321863439257005],[113,-42,79,19.271503384917672],[113,-41,64,18.9607622280914],[113,-41,65,18.766968713161326],[113,-41,66,18.670723662751573],[113,-41,67,18.684340833839844],[113,-41,68,18.699242759369938],[113,-41,69,18.718597679831742],[113,-41,70,18.746838472880945],[113,-41,71,18.790917577374508],[113,-41,72,18.853433883759347],[113,-41,73,18.904552964939125],[113,-41,74,18.962695873036402],[113,-41,75,19.03695761051247],[113,-41,76,19.10229955630481],[113,-41,77,19.137247414961298],[113,-41,78,19.137276387751964],[113,-41,79,19.08879474150442],[113,-40,64,18.833319509919022],[113,-40,65,18.61061497753881],[113,-40,66,18.48980500876911],[113,-40,67,18.50489344436643],[113,-40,68,18.51656765015024],[113,-40,69,18.534878528166537],[113,-40,70,18.5623374868853],[113,-40,71,18.60832640207886],[113,-40,72,18.66848319775035],[113,-40,73,18.71773625647328],[113,-40,74,18.778318086322713],[113,-40,75,18.851085794150475],[113,-40,76,18.914844091882994],[113,-40,77,18.952600808732377],[113,-40,78,18.954029404231],[113,-40,79,18.907402532330362],[113,-39,64,18.67136520501328],[113,-39,65,18.463421390934045],[113,-39,66,18.310399070022584],[113,-39,67,18.32205308579345],[113,-39,68,18.331326639230145],[113,-39,69,18.34661541475871],[113,-39,70,18.376645185478825],[113,-39,71,18.423762773522242],[113,-39,72,18.4861076739341],[113,-39,73,18.53852713568544],[113,-39,74,18.601135338240802],[113,-39,75,18.672029931688467],[113,-39,76,18.73444318826735],[113,-39,77,18.775194668669556],[113,-39,78,18.777451414486166],[113,-39,79,18.73088969431092],[113,-38,64,18.465275911908844],[113,-38,65,18.257103117369507],[113,-38,66,18.130069676628494],[113,-38,67,18.137361358013003],[113,-38,68,18.1455724754149],[113,-38,69,18.1627261194665],[113,-38,70,18.191445878178328],[113,-38,71,18.239221432177725],[113,-38,72,18.298914582280656],[113,-38,73,18.356749664961722],[113,-38,74,18.416763770451762],[113,-38,75,18.4880857912228],[113,-38,76,18.553307978876393],[113,-38,77,18.593608684035285],[113,-38,78,18.596041926082112],[113,-38,79,18.548814600450424],[113,-37,64,18.31018818986087],[113,-37,65,18.117110321733207],[113,-37,66,17.944273005539205],[113,-37,67,17.950486516218984],[113,-37,68,17.956793334980073],[113,-37,69,17.974409171572802],[113,-37,70,18.004163084811264],[113,-37,71,18.050590735176595],[113,-37,72,18.112438057781095],[113,-37,73,18.169160076689494],[113,-37,74,18.230343112529614],[113,-37,75,18.30195091762101],[113,-37,76,18.366782814075496],[113,-37,77,18.405470945061985],[113,-37,78,18.40836234429648],[113,-37,79,18.361813167412926],[113,-36,64,18.12766748672909],[113,-36,65,17.950519032039065],[113,-36,66,17.76986351423139],[113,-36,67,17.763047751676645],[113,-36,68,17.768241553881637],[113,-36,69,17.783407774234636],[113,-36,70,17.813161803532115],[113,-36,71,17.862284166796552],[113,-36,72,17.922540985412365],[113,-36,73,17.980558102695806],[113,-36,74,18.039322757670426],[113,-36,75,18.112202452213907],[113,-36,76,18.177067386331753],[113,-36,77,18.215129149487893],[113,-36,78,18.219390855159016],[113,-36,79,18.17284591361296],[113,-35,64,17.84690707809281],[113,-35,65,17.844264785045645],[113,-35,66,17.801558470374072],[113,-35,67,17.722638892609254],[113,-35,68,17.59978090104239],[113,-35,69,17.602946426674833],[113,-35,70,17.630937299771087],[113,-35,71,17.67491998477215],[113,-35,72,17.733144638526554],[113,-35,73,17.783133547135265],[113,-35,74,17.843887803036182],[113,-35,75,17.918361350240694],[113,-35,76,17.982515523369695],[113,-35,77,18.021530761332148],[113,-35,78,18.02821255579676],[113,-35,79,17.987703309327635],[113,-34,64,17.649058721619205],[113,-34,65,17.680794261074613],[113,-34,66,17.649673263094968],[113,-34,67,17.54468840851207],[113,-34,68,17.433759408888914],[113,-34,69,17.42311053625137],[113,-34,70,17.44959354325868],[113,-34,71,17.491241845791308],[113,-34,72,17.549017162087722],[113,-34,73,17.596442931763598],[113,-34,74,17.658148882399303],[113,-34,75,17.729660662000718],[113,-34,76,17.795122532342663],[113,-34,77,17.8344196993684],[113,-34,78,17.84263275154337],[113,-34,79,17.80418028108383],[113,-33,64,17.507844959067743],[113,-33,65,17.569463488062986],[113,-33,66,17.544990772163427],[113,-33,67,17.439612745060614],[113,-33,68,17.334370587149614],[113,-33,69,17.316107905050032],[113,-33,70,17.33625393266491],[113,-33,71,17.37598206496604],[113,-33,72,17.42839256938843],[113,-33,73,17.47137930217671],[113,-33,74,17.525075341754945],[113,-33,75,17.59118532048869],[113,-33,76,17.6502605067481],[113,-33,77,17.68714946590267],[113,-33,78,17.69086206749772],[113,-33,79,17.648285525222498],[113,-32,64,17.332647557157113],[113,-32,65,17.41270471944549],[113,-32,66,17.39728933211812],[113,-32,67,17.281948198926973],[113,-32,68,17.138913702312426],[113,-32,69,17.13638356384394],[113,-32,70,17.154430133837536],[113,-32,71,17.194313523028075],[113,-32,72,17.246086583903445],[113,-32,73,17.290617435022277],[113,-32,74,17.34236292473112],[113,-32,75,17.407119572596457],[113,-32,76,17.463377285415127],[113,-32,77,17.502352034735054],[113,-32,78,17.50381883374061],[113,-32,79,17.46016971666543],[113,-31,64,17.237346251270647],[113,-31,65,17.305965039235968],[113,-31,66,17.245853917940924],[113,-31,67,17.05923475097003],[113,-31,68,16.94922639777634],[113,-31,69,16.95457401308359],[113,-31,70,16.972437921105872],[113,-31,71,17.012944086796903],[113,-31,72,17.063788884391066],[113,-31,73,17.10846864866976],[113,-31,74,17.160645560834794],[113,-31,75,17.222917140300485],[113,-31,76,17.279596705461564],[113,-31,77,17.315951585440416],[113,-31,78,17.318433740037136],[113,-31,79,17.274818108215324],[113,-30,64,17.080623619243575],[113,-30,65,17.14198203329443],[113,-30,66,17.079103973444656],[113,-30,67,16.87794582794067],[113,-30,68,16.769628101537606],[113,-30,69,16.77350391379808],[113,-30,70,16.791714094859362],[113,-30,71,16.83177929530847],[113,-30,72,16.881801189790444],[113,-30,73,16.927216469354377],[113,-30,74,16.97870010518242],[113,-30,75,17.040632219099827],[113,-30,76,17.095488876608275],[113,-30,77,17.13003774434678],[113,-30,78,17.133371573313383],[113,-30,79,17.090928764548188],[113,-29,64,16.926478379702765],[113,-29,65,16.96292754231896],[113,-29,66,16.89836733655078],[113,-29,67,16.692315074954482],[113,-29,68,16.58111274816541],[113,-29,69,16.586687980447586],[113,-29,70,16.60704234005752],[113,-29,71,16.64549316615761],[113,-29,72,16.69460720400538],[113,-29,73,16.741730796290796],[113,-29,74,16.792885079055182],[113,-29,75,16.852030818538168],[113,-29,76,16.906431889015884],[113,-29,77,16.94234761480513],[113,-29,78,16.945371631534396],[113,-29,79,16.903774106688044],[113,-28,64,16.73178212142532],[113,-28,65,16.763652936600096],[113,-28,66,16.677000197293566],[113,-28,67,16.4988774635297],[113,-28,68,16.392515699215277],[113,-28,69,16.400815570063994],[113,-28,70,16.418099602499048],[113,-28,71,16.455481233331383],[113,-28,72,16.50597516765878],[113,-28,73,16.553107106415034],[113,-28,74,16.60326067388665],[113,-28,75,16.66079003059018],[113,-28,76,16.716250511469323],[113,-28,77,16.752783135974056],[113,-28,78,16.75457438741561],[113,-28,79,16.712748777172308],[113,-27,64,16.5535335507054],[113,-27,65,16.584326599354217],[113,-27,66,16.434380206889458],[113,-27,67,16.23192229943172],[113,-27,68,16.210196813737195],[113,-27,69,16.221206882922097],[113,-27,70,16.243390341150768],[113,-27,71,16.285017404405654],[113,-27,72,16.34001887727384],[113,-27,73,16.39020405485909],[113,-27,74,16.441570295292962],[113,-27,75,16.496184028673323],[113,-27,76,16.54822956170075],[113,-27,77,16.577925991373636],[113,-27,78,16.572406398980096],[113,-27,79,16.52628872580129],[113,-26,64,16.417829885000156],[113,-26,65,16.452378454490727],[113,-26,66,16.294382987668612],[113,-26,67,16.048676591649087],[113,-26,68,16.029602603808343],[113,-26,69,16.039361341106435],[113,-26,70,16.06397930742672],[113,-26,71,16.103166199113666],[113,-26,72,16.159711191019486],[113,-26,73,16.205521247576748],[113,-26,74,16.257881466168396],[113,-26,75,16.312881204812342],[113,-26,76,16.363761897130978],[113,-26,77,16.39112862519698],[113,-26,78,16.388381604243076],[113,-26,79,16.342772155251552],[113,-25,64,16.236115742070425],[113,-25,65,16.26990153936433],[113,-25,66,16.126233419123793],[113,-25,67,15.858610809963839],[113,-25,68,15.840756942123356],[113,-25,69,15.853641201648557],[113,-25,70,15.878516003649716],[113,-25,71,15.918175096172693],[113,-25,72,15.973936443597877],[113,-25,73,16.01749764538587],[113,-25,74,16.06697106001702],[113,-25,75,16.12483081057344],[113,-25,76,16.176996343385934],[113,-25,77,16.201116323797397],[113,-25,78,16.199913578398526],[113,-25,79,16.15548294253459],[113,-24,64,16.0547947969258],[113,-24,65,16.04203385738012],[113,-24,66,15.932187040534874],[113,-24,67,15.662131648830677],[113,-24,68,15.65916693632688],[113,-24,69,15.674422334623763],[113,-24,70,15.700653125824555],[113,-24,71,15.738356602313155],[113,-24,72,15.791247623105004],[113,-24,73,15.83409729678438],[113,-24,74,15.881755695055167],[113,-24,75,15.938375451564037],[113,-24,76,15.990368642428338],[113,-24,77,16.01722986628278],[113,-24,78,16.01486020573978],[113,-24,79,15.971324076455415],[113,-23,64,15.849342868546964],[113,-23,65,15.811568974968381],[113,-23,66,15.725142411499014],[113,-23,67,15.491067133350445],[113,-23,68,15.487732745262361],[113,-23,69,15.501133670525267],[113,-23,70,15.526058356608566],[113,-23,71,15.560461115984957],[113,-23,72,15.604045123810995],[113,-23,73,15.64222887049244],[113,-23,74,15.69144858695289],[113,-23,75,15.746073670155631],[113,-23,76,15.799385609325189],[113,-23,77,15.831008729935352],[113,-23,78,15.833406942464958],[113,-23,79,15.792431050653276],[113,-22,64,15.649287460938844],[113,-22,65,15.607975276368848],[113,-22,66,15.499848503678427],[113,-22,67,15.299572822821556],[113,-22,68,15.309348267975578],[113,-22,69,15.319951748379603],[113,-22,70,15.344546595791584],[113,-22,71,15.378960406655285],[113,-22,72,15.421280057148282],[113,-22,73,15.46138809948052],[113,-22,74,15.509478002384688],[113,-22,75,15.563955724470802],[113,-22,76,15.616310884789849],[113,-22,77,15.647788560539492],[113,-22,78,15.647737659351796],[113,-22,79,15.608428804312496],[113,-21,64,15.496976371118702],[113,-21,65,15.431277375218375],[113,-21,66,15.317259550910183],[113,-21,67,15.127162813670369],[113,-21,68,15.125118838287564],[113,-21,69,15.136977036608078],[113,-21,70,15.158223304821556],[113,-21,71,15.19150217633774],[113,-21,72,15.234727907761851],[113,-21,73,15.273864410888063],[113,-21,74,15.338054913175128],[113,-21,75,15.38976665474921],[113,-21,76,15.428293344504318],[113,-21,77,15.461878792532415],[113,-21,78,15.462124115893037],[113,-21,79,15.422346190949936],[113,-20,64,15.265614465190144],[113,-20,65,15.197046457115215],[113,-20,66,15.07698433821747],[113,-20,67,14.93067750010479],[113,-20,68,14.939139908325144],[113,-20,69,14.949901539796091],[113,-20,70,14.967203821210452],[113,-20,71,15.002498927269073],[113,-20,72,15.046274928663216],[113,-20,73,15.085206564233511],[113,-20,74,15.157777916466483],[113,-20,75,15.25828414845876],[113,-20,76,15.238160412250721],[113,-20,77,15.27142309031882],[113,-20,78,15.272063138157003],[113,-20,79,15.234950666656887],[113,-19,64,15.0894983516942],[113,-19,65,14.995527595065944],[113,-19,66,14.857399327596491],[113,-19,67,14.759817269190847],[113,-19,68,14.765933726267457],[113,-19,69,14.774092499696167],[113,-19,70,14.79041103764611],[113,-19,71,14.822565392367213],[113,-19,72,14.868250392902416],[113,-19,73,14.927317931213532],[113,-19,74,15.042453799931748],[113,-19,75,15.170543671914684],[113,-19,76,15.139147589030161],[113,-19,77,15.094853791801198],[113,-19,78,15.09573906968368],[113,-19,79,15.06209047205987],[113,-18,64,14.8670595240045],[113,-18,65,14.773669587989247],[113,-18,66,14.65176043849643],[113,-18,67,14.580526320415437],[113,-18,68,14.586973452032451],[113,-18,69,14.594854804759173],[113,-18,70,14.610705510933531],[113,-18,71,14.641500314580966],[113,-18,72,14.684218229722557],[113,-18,73,14.757946207644249],[113,-18,74,14.88097517916211],[113,-18,75,15.01657059889626],[113,-18,76,14.998329054429636],[113,-18,77,14.934628686111692],[113,-18,78,14.916577297896342],[113,-18,79,14.88303515803451],[113,-17,64,14.667673478132869],[113,-17,65,14.560379645301945],[113,-17,66,14.452659293480858],[113,-17,67,14.394330189933846],[113,-17,68,14.400601788025941],[113,-17,69,14.408126452326185],[113,-17,70,14.424182900938334],[113,-17,71,14.454963713055683],[113,-17,72,14.496629921023708],[113,-17,73,14.558321030465281],[113,-17,74,14.71121782295699],[113,-17,75,14.84379509543217],[113,-17,76,14.806762554442832],[113,-17,77,14.759795241519962],[113,-17,78,14.733044386125552],[113,-17,79,14.700648103530353],[113,-16,64,14.429612897572975],[113,-16,65,14.330273254182302],[113,-16,66,14.243069937583458],[113,-16,67,14.216514638978431],[113,-16,68,14.22254620398324],[113,-16,69,14.228097443841852],[113,-16,70,14.243769687942764],[113,-16,71,14.27279627922379],[113,-16,72,14.315069868458037],[113,-16,73,14.362197229224273],[113,-16,74,14.47046665724691],[113,-16,75,14.578867622953737],[113,-16,76,14.541964289461282],[113,-16,77,14.544832651050742],[113,-16,78,14.550007690638898],[113,-16,79,14.519382055696928],[113,-15,64,14.216506598219746],[113,-15,65,14.148473560604474],[113,-15,66,14.053697207450197],[113,-15,67,14.045360408301136],[113,-15,68,14.049429086036982],[113,-15,69,14.055683638679945],[113,-15,70,14.069896243383411],[113,-15,71,14.094523941123965],[113,-15,72,14.132910633772473],[113,-15,73,14.178019058295552],[113,-15,74,14.29478901789142],[113,-15,75,14.382218868408149],[113,-15,76,14.347466880415478],[113,-15,77,14.363427898034669],[113,-15,78,14.372256634286334],[113,-15,79,14.341421253103901],[113,-14,64,13.943590949775183],[113,-14,65,13.914737663973279],[113,-14,66,13.85799610694263],[113,-14,67,13.868436541757884],[113,-14,68,13.870895412323295],[113,-14,69,13.87823298774489],[113,-14,70,13.892378107193606],[113,-14,71,13.915446553210606],[113,-14,72,13.953974796118455],[113,-14,73,14.004378835233869],[113,-14,74,14.103276407731013],[113,-14,75,14.184840178111825],[113,-14,76,14.157159511735737],[113,-14,77,14.1837508392907],[113,-14,78,14.18874295913562],[113,-14,79,14.158603187085614],[113,-13,64,13.784353456757088],[113,-13,65,13.75415125785839],[113,-13,66,13.678307737591583],[113,-13,67,13.682591765246784],[113,-13,68,13.686973466350565],[113,-13,69,13.695942974505561],[113,-13,70,13.70945974334119],[113,-13,71,13.730157789445474],[113,-13,72,13.76715309764907],[113,-13,73,13.845759285452482],[113,-13,74,13.954317715264231],[113,-13,75,14.036899504430849],[113,-13,76,13.982593734119815],[113,-13,77,13.998114493729728],[113,-13,78,14.002388077719637],[113,-13,79,13.970139976610621],[113,-12,64,13.587324547771429],[113,-12,65,13.55905244042094],[113,-12,66,13.490643361548615],[113,-12,67,13.498031156781911],[113,-12,68,13.500332677444382],[113,-12,69,13.508131698663549],[113,-12,70,13.52373593284289],[113,-12,71,13.545236576350765],[113,-12,72,13.582857397872207],[113,-12,73,13.66783645046521],[113,-12,74,13.771952669842058],[113,-12,75,13.835773865353213],[113,-12,76,13.792577166029945],[113,-12,77,13.80682329912877],[113,-12,78,13.809478495492197],[113,-12,79,13.777313965988897],[113,-11,64,13.472045409175683],[113,-11,65,13.406023374230669],[113,-11,66,13.309543274437917],[113,-11,67,13.315704250268556],[113,-11,68,13.318682033201659],[113,-11,69,13.3238190849891],[113,-11,70,13.343329112395267],[113,-11,71,13.372423961733444],[113,-11,72,13.44963524731632],[113,-11,73,13.584670201467532],[113,-11,74,13.710785705352736],[113,-11,75,13.767046980151244],[113,-11,76,13.74111014908555],[113,-11,77,13.746441452396308],[113,-11,78,13.64204355291594],[113,-11,79,13.591899009960366],[113,-10,64,13.270797043378089],[113,-10,65,13.202200363109046],[113,-10,66,13.130193593496926],[113,-10,67,13.135222522163573],[113,-10,68,13.137315580445152],[113,-10,69,13.139875486791686],[113,-10,70,13.160865561232093],[113,-10,71,13.191779694987007],[113,-10,72,13.263524205633395],[113,-10,73,13.396488773290788],[113,-10,74,13.52196622591066],[113,-10,75,13.57182155977891],[113,-10,76,13.570316049717656],[113,-10,77,13.56620566698037],[113,-10,78,13.448955907080528],[113,-10,79,13.410338182843354],[113,-9,64,13.07038507994885],[113,-9,65,13.002260008505035],[113,-9,66,12.943454689685009],[113,-9,67,12.948653237729502],[113,-9,68,12.951544416130535],[113,-9,69,12.952272191208351],[113,-9,70,12.973534269798723],[113,-9,71,13.0058984480355],[113,-9,72,13.062096395183984],[113,-9,73,13.211792193342474],[113,-9,74,13.310720399362456],[113,-9,75,13.371218440805569],[113,-9,76,13.395266468459928],[113,-9,77,13.363521557465194],[113,-9,78,13.264098385366376],[113,-9,79,13.227792253603745],[113,-8,64,12.877450813563469],[113,-8,65,12.803568839807058],[113,-8,66,12.764923094987003],[113,-8,67,12.77192077461838],[113,-8,68,12.77016755607821],[113,-8,69,12.7746897399379],[113,-8,70,12.79129522454863],[113,-8,71,12.825039397967766],[113,-8,72,12.869412718249787],[113,-8,73,12.984174211651416],[113,-8,74,13.127672688474808],[113,-8,75,13.219184251800323],[113,-8,76,13.239372437014527],[113,-8,77,13.193596603873544],[113,-8,78,13.08420391558252],[113,-8,79,13.047270722970236],[113,-7,64,12.692853919785184],[113,-7,65,12.612193535362891],[113,-7,66,12.583459559007952],[113,-7,67,12.59083936857567],[113,-7,68,12.590965328078077],[113,-7,69,12.594708883188146],[113,-7,70,12.609839475479635],[113,-7,71,12.641861398898989],[113,-7,72,12.687779586622561],[113,-7,73,12.788962953220574],[113,-7,74,12.946952523435625],[113,-7,75,13.028357179180052],[113,-7,76,13.032095931752274],[113,-7,77,12.988374460565552],[113,-7,78,12.90145163557532],[113,-7,79,12.865205792165424],[113,-6,64,12.514751114322623],[113,-6,65,12.439568082730062],[113,-6,66,12.40279001979926],[113,-6,67,12.410032153709212],[113,-6,68,12.411444328832793],[113,-6,69,12.413972862312521],[113,-6,70,12.428284140122202],[113,-6,71,12.459199018061513],[113,-6,72,12.503868423803441],[113,-6,73,12.585019792805314],[113,-6,74,12.764489201273326],[113,-6,75,12.847413868821873],[113,-6,76,12.834510903676064],[113,-6,77,12.78186391131416],[113,-6,78,12.719869177831121],[113,-6,79,12.685334806484498],[113,-5,64,12.311805273166522],[113,-5,65,12.315496263450568],[113,-5,66,12.276181732566185],[113,-5,67,12.240923516054597],[113,-5,68,12.226088471216107],[113,-5,69,12.229399498061222],[113,-5,70,12.24248881178895],[113,-5,71,12.271965861642167],[113,-5,72,12.315832716273345],[113,-5,73,12.360256960351817],[113,-5,74,12.457587058794696],[113,-5,75,12.480083275537478],[113,-5,76,12.50694325532445],[113,-5,77,12.531187582103522],[113,-5,78,12.533349496626123],[113,-5,79,12.500841198383597],[113,-4,64,12.108941051411701],[113,-4,65,12.12074208495821],[113,-4,66,12.077177489921477],[113,-4,67,12.050783644684886],[113,-4,68,12.041985306607494],[113,-4,69,12.044879864775075],[113,-4,70,12.05729143828363],[113,-4,71,12.082321931811613],[113,-4,72,12.12652585642551],[113,-4,73,12.170645175356103],[113,-4,74,12.255617029232786],[113,-4,75,12.268480519194071],[113,-4,76,12.31369423801188],[113,-4,77,12.340549056582658],[113,-4,78,12.341979474691946],[113,-4,79,12.310975458100309],[113,-3,64,11.963227311955569],[113,-3,65,11.970205165960202],[113,-3,66,11.930389815945416],[113,-3,67,11.92288350919686],[113,-3,68,11.886086949035207],[113,-3,69,11.87919204046297],[113,-3,70,11.889850604297441],[113,-3,71,11.90850231460798],[113,-3,72,11.94850676072083],[113,-3,73,12.012568073069726],[113,-3,74,12.119848012747816],[113,-3,75,12.103670221324341],[113,-3,76,12.136732297457463],[113,-3,77,12.166527117141802],[113,-3,78,12.172766650159666],[113,-3,79,12.146155940360549],[113,-2,64,11.757927888312388],[113,-2,65,11.76627088466423],[113,-2,66,11.741965089474943],[113,-2,67,11.726348857464252],[113,-2,68,11.704797062279358],[113,-2,69,11.701615964790394],[113,-2,70,11.711070884184464],[113,-2,71,11.731350744845017],[113,-2,72,11.770086712841671],[113,-2,73,11.815572789905048],[113,-2,74,11.904910177169647],[113,-2,75,11.908819176336118],[113,-2,76,11.957362732783373],[113,-2,77,11.985778263392767],[113,-2,78,11.989147383017313],[113,-2,79,11.964727013996196],[113,-1,64,11.54426507876665],[113,-1,65,11.554537423874327],[113,-1,66,11.567853786943532],[113,-1,67,11.558588338154765],[113,-1,68,11.561216047325793],[113,-1,69,11.572021205671431],[113,-1,70,11.526326000797473],[113,-1,71,11.551942099760943],[113,-1,72,11.595784800062974],[113,-1,73,11.645595054400923],[113,-1,74,11.675436223143123],[113,-1,75,11.727662494258604],[113,-1,76,11.77413078376398],[113,-1,77,11.803478118556091],[113,-1,78,11.808374952541794],[113,-1,79,11.784688809839597],[113,0,64,11.377754931579656],[113,0,65,11.415060364137313],[113,0,66,11.440163336658703],[113,0,67,11.452651058401022],[113,0,68,11.462492943685355],[113,0,69,11.465970638002949],[113,0,70,11.474848043407643],[113,0,71,11.502818182611293],[113,0,72,11.538971086613953],[113,0,73,11.582526558616316],[113,0,74,11.62683565992789],[113,0,75,11.673451175984825],[113,0,76,11.715859017583302],[113,0,77,11.738404548778616],[113,0,78,11.735647391184257],[113,0,79,11.704025984594816],[113,1,64,11.189728185639776],[113,1,65,11.227042179873385],[113,1,66,11.254763989638915],[113,1,67,11.268377150156637],[113,1,68,11.273540351991699],[113,1,69,11.282124862803693],[113,1,70,11.29315531807523],[113,1,71,11.318516534109735],[113,1,72,11.355667494439967],[113,1,73,11.400498313961304],[113,1,74,11.443835167012974],[113,1,75,11.492208031384965],[113,1,76,11.532897967006246],[113,1,77,11.555247496374374],[113,1,78,11.554814185580526],[113,1,79,11.520969368248835],[113,2,64,11.002342176962705],[113,2,65,11.042967722498695],[113,2,66,11.07033582875361],[113,2,67,11.082950888608906],[113,2,68,11.0905969101574],[113,2,69,11.100048024844584],[113,2,70,11.109575191318688],[113,2,71,11.133200831002641],[113,2,72,11.170903662217679],[113,2,73,11.216695220491912],[113,2,74,11.259447033816256],[113,2,75,11.310182564188604],[113,2,76,11.350939394362484],[113,2,77,11.371247329479754],[113,2,78,11.369784706892244],[113,2,79,11.33799847675992],[113,3,64,10.817178574765673],[113,3,65,10.860454125023644],[113,3,66,10.884578769382154],[113,3,67,10.896859754079266],[113,3,68,10.90540188027364],[113,3,69,10.914216619422561],[113,3,70,10.925183820495636],[113,3,71,10.947789668214453],[113,3,72,10.988276034813296],[113,3,73,11.034263908506833],[113,3,74,11.078923086471873],[113,3,75,11.125257441973114],[113,3,76,11.168764835756173],[113,3,77,11.187782901897183],[113,3,78,11.185155380933857],[113,3,79,11.158836774433507],[113,4,64,10.63133971675598],[113,4,65,10.673990228885645],[113,4,66,10.69875879042096],[113,4,67,10.711911144262581],[113,4,68,10.722100681168016],[113,4,69,10.732155845788972],[113,4,70,10.74273585578268],[113,4,71,10.76433375761764],[113,4,72,10.807283957000607],[113,4,73,10.851762410302547],[113,4,74,10.897119959875276],[113,4,75,10.944246176653362],[113,4,76,10.985229747187176],[113,4,77,11.005215864737835],[113,4,78,11.002867116843351],[113,4,79,10.978330657779065],[113,5,64,10.446495956776536],[113,5,65,10.487324550671833],[113,5,66,10.514120503243332],[113,5,67,10.528740893626482],[113,5,68,10.541160937754645],[113,5,69,10.549846744227862],[113,5,70,10.560132555093967],[113,5,71,10.5812981302117],[113,5,72,10.624669771773217],[113,5,73,10.66813192066807],[113,5,74,10.713182549261662],[113,5,75,10.76130510869012],[113,5,76,10.804136576385245],[113,5,77,10.821769969489337],[113,5,78,10.822231684068122],[113,5,79,10.801027172061094],[113,6,64,10.259377703390347],[113,6,65,10.300473722238983],[113,6,66,10.328317622905727],[113,6,67,10.347655761530694],[113,6,68,10.359917872717546],[113,6,69,10.367724514141457],[113,6,70,10.377131514903349],[113,6,71,10.399683080527087],[113,6,72,10.441904831245816],[113,6,73,10.485917816099533],[113,6,74,10.531678510847067],[113,6,75,10.581170448851738],[113,6,76,10.621909494129524],[113,6,77,10.641077085615315],[113,6,78,10.642667338272792],[113,6,79,10.621038992160624],[113,7,64,10.071729744228477],[113,7,65,10.114092918457578],[113,7,66,10.14434309135584],[113,7,67,10.163696416503768],[113,7,68,10.176649135758424],[113,7,69,10.18509313670276],[113,7,70,10.19441442384292],[113,7,71,10.220242353906698],[113,7,72,10.260035912673988],[113,7,73,10.30402602393736],[113,7,74,10.3517272580518],[113,7,75,10.402284626607614],[113,7,76,10.43793186858028],[113,7,77,10.461227462451184],[113,7,78,10.465776563031149],[113,7,79,10.441581822854817],[113,8,64,9.886455738202521],[113,8,65,9.92684019646324],[113,8,66,9.957540723237617],[113,8,67,9.979436678141896],[113,8,68,9.99327268334424],[113,8,69,10.004865997666531],[113,8,70,10.016287419286579],[113,8,71,10.040729919618178],[113,8,72,10.080031282831262],[113,8,73,10.125067186558578],[113,8,74,10.172546775381294],[113,8,75,10.226178161447482],[113,8,76,10.262671795839001],[113,8,77,10.284654744243625],[113,8,78,10.28990117715112],[113,8,79,10.265915946509319],[113,9,64,9.702714052394226],[113,9,65,9.743842700513966],[113,9,66,9.777287905445514],[113,9,67,9.801475996481736],[113,9,68,9.817386206292865],[113,9,69,9.829592389714106],[113,9,70,9.84171854660665],[113,9,71,9.863075421121199],[113,9,72,9.899604791533845],[113,9,73,9.943472178972522],[113,9,74,9.990260658436569],[113,9,75,10.044298897491043],[113,9,76,10.080893726672048],[113,9,77,10.103876647129557],[113,9,78,10.110782603694698],[113,9,79,10.09082839339747],[113,10,64,9.515442481400898],[113,10,65,9.558707614529649],[113,10,66,9.59133868686875],[113,10,67,9.617332601669876],[113,10,68,9.633104122742216],[113,10,69,9.645085836632894],[113,10,70,9.659768696231426],[113,10,71,9.682494840686047],[113,10,72,9.715817325683272],[113,10,73,9.760858710078816],[113,10,74,9.810745514889415],[113,10,75,9.861566578368866],[113,10,76,9.90164533332538],[113,10,77,9.92281932639933],[113,10,78,9.926943173379879],[113,10,79,9.9098002726865],[113,11,64,9.330664869333388],[113,11,65,9.371132181394849],[113,11,66,9.407004481744885],[113,11,67,9.43297953062977],[113,11,68,9.446451795327718],[113,11,69,9.459173086328397],[113,11,70,9.478283719036028],[113,11,71,9.500065974662382],[113,11,72,9.533463870379567],[113,11,73,9.577736166515349],[113,11,74,9.629450770407134],[113,11,75,9.67987823473743],[113,11,76,9.718753071179982],[113,11,77,9.739931738257212],[113,11,78,9.745833110957342],[113,11,79,9.728185282644572],[113,12,64,9.144217538390432],[113,12,65,9.185923933491537],[113,12,66,9.217958760633026],[113,12,67,9.240010740465456],[113,12,68,9.252374457250896],[113,12,69,9.269826897366688],[113,12,70,9.28997332300441],[113,12,71,9.3105107051498],[113,12,72,9.344167600959635],[113,12,73,9.386701418955312],[113,12,74,9.43892508632492],[113,12,75,9.485727694630512],[113,12,76,9.52558488118817],[113,12,77,9.548683047778805],[113,12,78,9.556098399842188],[113,12,79,9.53782839730639],[113,13,64,8.957663225901523],[113,13,65,8.999516848014329],[113,13,66,9.025622778119523],[113,13,67,9.0438019574795],[113,13,68,9.057576794834217],[113,13,69,9.078818769316163],[113,13,70,9.101066612983363],[113,13,71,9.123716502036459],[113,13,72,9.16023868694403],[113,13,73,9.20554435165255],[113,13,74,9.257462437106025],[113,13,75,9.301064022179416],[113,13,76,9.340503309465353],[113,13,77,9.368038621356588],[113,13,78,9.371694828451156],[113,13,79,9.35688317174485],[113,14,64,8.77204292938053],[113,14,65,8.81408702235693],[113,14,66,8.84154562184815],[113,14,67,8.859886738272273],[113,14,68,8.875238131186025],[113,14,69,8.893754919617836],[113,14,70,8.915948345298705],[113,14,71,8.939501899676461],[113,14,72,8.976090552312373],[113,14,73,9.02332084694291],[113,14,74,9.074231714893754],[113,14,75,9.119377669987925],[113,14,76,9.157122115990168],[113,14,77,9.18539057373446],[113,14,78,9.191683193988716],[113,14,79,9.175111197886366],[113,15,64,8.583248300127192],[113,15,65,8.62736217891207],[113,15,66,8.65609026871826],[113,15,67,8.677482333833344],[113,15,68,8.69243456375339],[113,15,69,8.708254390101397],[113,15,70,8.728606312789971],[113,15,71,8.75534034968608],[113,15,72,8.793334586330495],[113,15,73,8.839933178524568],[113,15,74,8.893007998288354],[113,15,75,8.937096579271959],[113,15,76,8.974998936944713],[113,15,77,9.00244851394935],[113,15,78,9.010962639172215],[113,15,79,8.994032002235823],[113,16,64,8.393740316238489],[113,16,65,8.438214575733435],[113,16,66,8.470174901879348],[113,16,67,8.492687965844913],[113,16,68,8.50867997098166],[113,16,69,8.523809469110843],[113,16,70,8.54466576331008],[113,16,71,8.572956107530741],[113,16,72,8.613748439068853],[113,16,73,8.662166575494439],[113,16,74,8.713088519395649],[113,16,75,8.758637658362442],[113,16,76,8.796747609859928],[113,16,77,8.824165491528726],[113,16,78,8.834383331716317],[113,16,79,8.819447017237232],[113,17,64,8.206946952669426],[113,17,65,8.251720800561316],[113,17,66,8.282576852611454],[113,17,67,8.308070525060465],[113,17,68,8.325117534363427],[113,17,69,8.339148497109163],[113,17,70,8.360960675206655],[113,17,71,8.388548459334249],[113,17,72,8.429971900362457],[113,17,73,8.480166221859603],[113,17,74,8.529672287784415],[113,17,75,8.576336632041544],[113,17,76,8.614876325579807],[113,17,77,8.643468784624561],[113,17,78,8.649660878183363],[113,17,79,8.633701590305725],[113,18,64,8.0179919425314],[113,18,65,8.063632464879126],[113,18,66,8.097325214240641],[113,18,67,8.12357538140702],[113,18,68,8.14020076762936],[113,18,69,8.156950044640185],[113,18,70,8.17577671862747],[113,18,71,8.205855200785825],[113,18,72,8.245731750672974],[113,18,73,8.296896402193061],[113,18,74,8.346075840163442],[113,18,75,8.393765751997645],[113,18,76,8.432459059142879],[113,18,77,8.457993212627812],[113,18,78,8.464304098543002],[113,18,79,8.448351769438256],[113,19,64,7.83268636631389],[113,19,65,7.875810146469269],[113,19,66,7.91204507563329],[113,19,67,7.938929461488939],[113,19,68,7.9565771880859915],[113,19,69,7.975264258259493],[113,19,70,7.992405578283589],[113,19,71,8.020167665223013],[113,19,72,8.062092828948803],[113,19,73,8.113625113694296],[113,19,74,8.160161685271767],[113,19,75,8.207066936049525],[113,19,76,8.248017472932629],[113,19,77,8.272663012934013],[113,19,78,8.278358204146867],[113,19,79,8.262308529050946],[113,20,64,7.648054987969514],[113,20,65,7.6901770768549165],[113,20,66,7.724553746541986],[113,20,67,7.748622713874518],[113,20,68,7.768976611761126],[113,20,69,7.7869494693105095],[113,20,70,7.804448722999187],[113,20,71,7.8323518828228105],[113,20,72,7.873787681386984],[113,20,73,7.924530577333602],[113,20,74,7.968784205346389],[113,20,75,8.013996931970627],[113,20,76,8.05390384133929],[113,20,77,8.081374055815674],[113,20,78,8.086613935016121],[113,20,79,8.071662666964967],[113,21,64,7.468853563507676],[113,21,65,7.512116575672222],[113,21,66,7.544611788551546],[113,21,67,7.566042601702742],[113,21,68,7.589153039487083],[113,21,69,7.60662956903383],[113,21,70,7.625103168568905],[113,21,71,7.651656383332226],[113,21,72,7.693310962974063],[113,21,73,7.741426875439986],[113,21,74,7.785051241923299],[113,21,75,7.825209463503872],[113,21,76,7.8655528865914786],[113,21,77,7.897319991183518],[113,21,78,7.906613243957949],[113,21,79,7.8943134492249785],[113,22,64,7.283371148024809],[113,22,65,7.328615003886513],[113,22,66,7.362617865570902],[113,22,67,7.381288297639959],[113,22,68,7.401598211252989],[113,22,69,7.422260208365273],[113,22,70,7.440598830530417],[113,22,71,7.468612042806415],[113,22,72,7.5110001467781755],[113,22,73,7.557416899074135],[113,22,74,7.603470827267698],[113,22,75,7.641508399243904],[113,22,76,7.679644998284592],[113,22,77,7.710377912678525],[113,22,78,7.718489832754663],[113,22,79,7.707924920633647],[113,23,64,7.100083452281459],[113,23,65,7.145807279350594],[113,23,66,7.179322273981398],[113,23,67,7.196361436675779],[113,23,68,7.216605825972206],[113,23,69,7.236782907820291],[113,23,70,7.257487690439214],[113,23,71,7.284941984293736],[113,23,72,7.32903643370683],[113,23,73,7.375474433238396],[113,23,74,7.419021764707345],[113,23,75,7.4578263247448255],[113,23,76,7.4932764379198575],[113,23,77,7.521834421783227],[113,23,78,7.531315559700562],[113,23,79,7.522429430722164],[113,24,64,6.928052518676897],[113,24,65,6.972209979354922],[113,24,66,7.004408061323757],[113,24,67,7.022952669949577],[113,24,68,7.040541946436046],[113,24,69,7.058559289966365],[113,24,70,7.081172199318559],[113,24,71,7.111158608741643],[113,24,72,7.154348380411837],[113,24,73,7.203884741000043],[113,24,74,7.246651070203899],[113,24,75,7.283634126777694],[113,24,76,7.316887851230596],[113,24,77,7.342604465732189],[113,24,78,7.3543486685975745],[113,24,79,7.347999367273346],[113,25,64,6.756090905936198],[113,25,65,6.801544430169623],[113,25,66,6.83213656096408],[113,25,67,6.8517487969754125],[113,25,68,6.866954172600166],[113,25,69,6.882987290825377],[113,25,70,6.9052145988578335],[113,25,71,6.9381059716380875],[113,25,72,6.981346576966902],[113,25,73,7.02881264652066],[113,25,74,7.073974528477286],[113,25,75,7.110836959570861],[113,25,76,7.13786575122378],[113,25,77,7.158501867018006],[113,25,78,7.16778979582719],[113,25,79,7.158881596511478],[113,26,64,6.571892314298974],[113,26,65,6.618575583971699],[113,26,66,6.650751042940854],[113,26,67,6.670948009080559],[113,26,68,6.68303864417876],[113,26,69,6.697192102380048],[113,26,70,6.7210452957119955],[113,26,71,6.7536836523863215],[113,26,72,6.795184145974776],[113,26,73,6.843424928762806],[113,26,74,6.887544370571273],[113,26,75,6.923724546754583],[113,26,76,6.949740308356876],[113,26,77,6.97249312322533],[113,26,78,6.981662804875393],[113,26,79,6.973141584919862],[113,27,64,6.388622423182336],[113,27,65,6.435016780871756],[113,27,66,6.469588850469537],[113,27,67,6.489420975279973],[113,27,68,6.4996204486158335],[113,27,69,6.5140015027461935],[113,27,70,6.53444297029946],[113,27,71,6.566753148629245],[113,27,72,6.608992381805791],[113,27,73,6.657432133067046],[113,27,74,6.6999434033709795],[113,27,75,6.736632423423131],[113,27,76,6.7640376248279335],[113,27,77,6.785115167184747],[113,27,78,6.793295773211524],[113,27,79,6.7854656403699405],[113,28,64,6.204283742014959],[113,28,65,6.250422729884394],[113,28,66,6.285909423689546],[113,28,67,6.302941686321553],[113,28,68,6.310891234313556],[113,28,69,6.323571497217167],[113,28,70,6.345806298207703],[113,28,71,6.3747849381659485],[113,28,72,6.4154298456443595],[113,28,73,6.463470449869781],[113,28,74,6.506577853567699],[113,28,75,6.543374808148167],[113,28,76,6.5732281367424585],[113,28,77,6.592619079970506],[113,28,78,6.600755933861021],[113,28,79,6.590782705111301],[113,29,64,6.018986632745592],[113,29,65,6.065948566960318],[113,29,66,6.097481235528929],[113,29,67,6.111667302883163],[113,29,68,6.119402532625962],[113,29,69,6.128524948970877],[113,29,70,6.151001019806481],[113,29,71,6.181717263882039],[113,29,72,6.220281596242588],[113,29,73,6.267351267576011],[113,29,74,6.311563666047041],[113,29,75,6.349306816784259],[113,29,76,6.379534212563103],[113,29,77,6.399297940077121],[113,29,78,6.408510808057147],[113,29,79,6.3990431578789],[113,30,64,5.838055137192781],[113,30,65,5.882968618072517],[113,30,66,5.912524914671635],[113,30,67,5.9241715665514985],[113,30,68,5.932201367630232],[113,30,69,5.943120059867367],[113,30,70,5.963496468355374],[113,30,71,5.990400640585552],[113,30,72,6.029841807850242],[113,30,73,6.077900291067693],[113,30,74,6.122153131381551],[113,30,75,6.159124277605173],[113,30,76,6.189253831347811],[113,30,77,6.209585229090561],[113,30,78,6.218215430686889],[113,30,79,6.20992826590246],[113,31,64,5.655214370480939],[113,31,65,5.699657513406401],[113,31,66,5.727946441099858],[113,31,67,5.738169917503746],[113,31,68,5.74690662633658],[113,31,69,5.757137164073421],[113,31,70,5.774775427844074],[113,31,71,5.799267490103205],[113,31,72,5.840961171397307],[113,31,73,5.887938924781393],[113,31,74,5.932076512830406],[113,31,75,5.969815359097422],[113,31,76,5.998234280398639],[113,31,77,6.017912695588633],[113,31,78,6.026037331710996],[113,31,79,6.0202214496524995],[113,32,64,5.483988668550446],[113,32,65,5.530026921828717],[113,32,66,5.555462967620897],[113,32,67,5.564528572495901],[113,32,68,5.571437589007063],[113,32,69,5.583009109678],[113,32,70,5.5993531904843685],[113,32,71,5.621936574730054],[113,32,72,5.664258648604653],[113,32,73,5.709843727995162],[113,32,74,5.752804927225741],[113,32,75,5.791463302377758],[113,32,76,5.817289089564767],[113,32,77,5.836250947831171],[113,32,78,5.848130216064757],[113,32,79,5.844987378110068],[113,33,64,5.290305590063126],[113,33,65,5.33752752088273],[113,33,66,5.364923086655004],[113,33,67,5.377096999635308],[113,33,68,5.3859803883864705],[113,33,69,5.394178335695442],[113,33,70,5.409060126119973],[113,33,71,5.430246367310364],[113,33,72,5.467378174750732],[113,33,73,5.513808493330297],[113,33,74,5.554118246733131],[113,33,75,5.591670610336778],[113,33,76,5.6193260386362045],[113,33,77,5.637579846801761],[113,33,78,5.653124978046519],[113,33,79,5.6529646342541655],[113,34,64,5.106702673635515],[113,34,65,5.1526679499670545],[113,34,66,5.1830416951756355],[113,34,67,5.193344822202299],[113,34,68,5.201424412716065],[113,34,69,5.210765200564901],[113,34,70,5.224371460379202],[113,34,71,5.244572811866742],[113,34,72,5.2782987793373355],[113,34,73,5.3246574060913066],[113,34,74,5.365590463733351],[113,34,75,5.400888660407214],[113,34,76,5.428825867026698],[113,34,77,5.449782633534037],[113,34,78,5.464342816810479],[113,34,79,5.464521923338874],[113,35,64,4.921982459093256],[113,35,65,4.9702270570090334],[113,35,66,4.999642706927337],[113,35,67,5.010512101720117],[113,35,68,5.018280731197293],[113,35,69,5.0252556421975205],[113,35,70,5.035305413876379],[113,35,71,5.055503180525727],[113,35,72,5.088319404117894],[113,35,73,5.134507302894405],[113,35,74,5.175336999112093],[113,35,75,5.211972614121304],[113,35,76,5.242402707619544],[113,35,77,5.261985909679617],[113,35,78,5.275402494220445],[113,35,79,5.276974593577876],[113,36,64,4.734452607407555],[113,36,65,4.782820300809956],[113,36,66,4.812368279726261],[113,36,67,4.82457399207582],[113,36,68,4.830508388509912],[113,36,69,4.836142907717088],[113,36,70,4.845004988775346],[113,36,71,4.864205764084923],[113,36,72,4.897999760131456],[113,36,73,4.942741335725416],[113,36,74,4.980870793463403],[113,36,75,5.019590983226797],[113,36,76,5.053783246329124],[113,36,77,5.073152219305007],[113,36,78,5.085920568906488],[113,36,79,5.08917760239431],[113,37,64,4.561898130665534],[113,37,65,4.603004937221826],[113,37,66,4.628577870714316],[113,37,67,4.637917843575188],[113,37,68,4.640660139125328],[113,37,69,4.644559259821742],[113,37,70,4.652155484183565],[113,37,71,4.670451268458456],[113,37,72,4.706560993718185],[113,37,73,4.755733455873927],[113,37,74,4.792266919299325],[113,37,75,4.830642326636276],[113,37,76,4.864924374349704],[113,37,77,4.8884300128437275],[113,37,78,4.900930418447901],[113,37,79,4.905296161459465],[113,38,64,4.380564024276813],[113,38,65,4.419831816722961],[113,38,66,4.441971028983368],[113,38,67,4.451702851609736],[113,38,68,4.455012004464045],[113,38,69,4.4561222927452615],[113,38,70,4.464726633542921],[113,38,71,4.4861279979832505],[113,38,72,4.52191259473562],[113,38,73,4.567909695696608],[113,38,74,4.608845799744674],[113,38,75,4.64366568835952],[113,38,76,4.675124222014492],[113,38,77,4.698696002287581],[113,38,78,4.712943684922331],[113,38,79,4.718642880356271],[113,39,64,4.198206539828967],[113,39,65,4.236329699960039],[113,39,66,4.255813447284188],[113,39,67,4.264839583428677],[113,39,68,4.267356357495116],[113,39,69,4.267812716596769],[113,39,70,4.276351820999687],[113,39,71,4.300335206602574],[113,39,72,4.336194159316577],[113,39,73,4.384433242054036],[113,39,74,4.424925256849727],[113,39,75,4.458445222888638],[113,39,76,4.487972982374755],[113,39,77,4.509293316498053],[113,39,78,4.526587050189071],[113,39,79,4.532752061461522],[113,40,64,4.024645686545572],[113,40,65,4.06488601625047],[113,40,66,4.083575270904403],[113,40,67,4.090615346093153],[113,40,68,4.0964323479938995],[113,40,69,4.097914563713475],[113,40,70,4.1048644220915955],[113,40,71,4.127907400795017],[113,40,72,4.165382382108601],[113,40,73,4.213405760831035],[113,40,74,4.252909034203611],[113,40,75,4.287279309288765],[113,40,76,4.31406428147595],[113,40,77,4.335017908349471],[113,40,78,4.35235439975664],[113,40,79,4.359996542715278],[113,41,64,3.8380282030597077],[113,41,65,3.8772317688434343],[113,41,66,3.8977257718870733],[113,41,67,3.904525444510263],[113,41,68,3.910292136945785],[113,41,69,3.9133573929917937],[113,41,70,3.9206178461799155],[113,41,71,3.9428450944083733],[113,41,72,3.979822205450161],[113,41,73,4.028574547780668],[113,41,74,4.06959232943091],[113,41,75,4.101021094548891],[113,41,76,4.124786421024305],[113,41,77,4.146919201960843],[113,41,78,4.165050176178207],[113,41,79,4.173354417992363],[113,42,64,3.652990942647123],[113,42,65,3.6916886023097097],[113,42,66,3.7120438068343287],[113,42,67,3.719531707692295],[113,42,68,3.7232645957524784],[113,42,69,3.728883829500986],[113,42,70,3.7373338505293896],[113,42,71,3.7588861997200076],[113,42,72,3.7959830604788123],[113,42,73,3.843643348403],[113,42,74,3.883048824848726],[113,42,75,3.912923919085603],[113,42,76,3.9353437859448217],[113,42,77,3.958665634526475],[113,42,78,3.9766812357463133],[113,42,79,3.9883585561509634],[113,43,64,3.4700388944827867],[113,43,65,3.5055042065897495],[113,43,66,3.5261477329174036],[113,43,67,3.5341725942237296],[113,43,68,3.536488303270828],[113,43,69,3.542482106343739],[113,43,70,3.5536146344432016],[113,43,71,3.5725630489875173],[113,43,72,3.6095354348836386],[113,43,73,3.655655141460814],[113,43,74,3.6958840987588806],[113,43,75,3.726872722225644],[113,43,76,3.7472651129408434],[113,43,77,3.7714369132664394],[113,43,78,3.790269580344753],[113,43,79,3.8051105873588837],[113,44,64,3.2800967263871432],[113,44,65,3.316233061868809],[113,44,66,3.336965979891727],[113,44,67,3.3494383308501265],[113,44,68,3.3486776483932115],[113,44,69,3.354566370051472],[113,44,70,3.3648495721319733],[113,44,71,3.3835714879946264],[113,44,72,3.4208376344293434],[113,44,73,3.4658587054158567],[113,44,74,3.506082868512806],[113,44,75,3.537587782719541],[113,44,76,3.5606532791215044],[113,44,77,3.581103500804607],[113,44,78,3.5998834291997364],[113,44,79,3.616255480182301],[113,45,64,3.0798482286279194],[113,45,65,3.1199130136197315],[113,45,66,3.148005419927399],[113,45,67,3.1646347958655183],[113,45,68,3.168514993147237],[113,45,69,3.1778387081290775],[113,45,70,3.1925269631778335],[113,45,71,3.216967948405923],[113,45,72,3.253341641509968],[113,45,73,3.300667794116428],[113,45,74,3.342457546426209],[113,45,75,3.3765155448738056],[113,45,76,3.398410213032774],[113,45,77,3.41716880589224],[113,45,78,3.4345155662188667],[113,45,79,3.446018217564671],[113,46,64,2.8912951464634458],[113,46,65,2.9319036983118476],[113,46,66,2.9609725654035515],[113,46,67,2.97641331268693],[113,46,68,2.9815136155625845],[113,46,69,2.9917662481623233],[113,46,70,3.0089383738915365],[113,46,71,3.031437051480735],[113,46,72,3.0674539201659514],[113,46,73,3.1128072523681625],[113,46,74,3.1534973028950093],[113,46,75,3.190058092803051],[113,46,76,3.2114748434205374],[113,46,77,3.232258539773787],[113,46,78,3.2490338393238436],[113,46,79,3.2596908396409514],[113,47,64,2.703981186871229],[113,47,65,2.7444496929130318],[113,47,66,2.773626834041599],[113,47,67,2.7920143755808318],[113,47,68,2.7949918140479797],[113,47,69,2.806674477375897],[113,47,70,2.823023854919222],[113,47,71,2.8459354626015507],[113,47,72,2.880708883240831],[113,47,73,2.9244977219081107],[113,47,74,2.9649148996561987],[113,47,75,3.00298976311718],[113,47,76,3.0256676825472026],[113,47,77,3.045769157224779],[113,47,78,3.0607975815390405],[113,47,79,3.0711432635583926],[113,48,64,2.5296539891924894],[113,48,65,2.5697883054432653],[113,48,66,2.5992132669285852],[113,48,67,2.617766482339912],[113,48,68,2.6242417511301728],[113,48,69,2.6367856297235033],[113,48,70,2.65319757524897],[113,48,71,2.6735971729575274],[113,48,72,2.7084223969452568],[113,48,73,2.7515818234672555],[113,48,74,2.7924022123547347],[113,48,75,2.8294105422570155],[113,48,76,2.8530522806043974],[113,48,77,2.8721744473605684],[113,48,78,2.889147504995754],[113,48,79,2.899167164231772],[113,49,64,2.3426627704553535],[113,49,65,2.3848675896467992],[113,49,66,2.4172812420660454],[113,49,67,2.4352570356819463],[113,49,68,2.447857530932053],[113,49,69,2.463512947360953],[113,49,70,2.4748289512788224],[113,49,71,2.4895690693561536],[113,49,72,2.516980434048169],[113,49,73,2.5581849541045147],[113,49,74,2.5966122214504614],[113,49,75,2.6297522752291833],[113,49,76,2.656178682748873],[113,49,77,2.6755508263200274],[113,49,78,2.6932101298824205],[113,49,79,2.70368608860801],[113,50,64,2.153386651079641],[113,50,65,2.196926926256027],[113,50,66,2.22970377359354],[113,50,67,2.248142975306904],[113,50,68,2.261627438825354],[113,50,69,2.276070471728349],[113,50,70,2.285996317158677],[113,50,71,2.302982720671679],[113,50,72,2.3298107756597535],[113,50,73,2.369671062814989],[113,50,74,2.4081166370118297],[113,50,75,2.442039926877482],[113,50,76,2.465757296596859],[113,50,77,2.487456137407338],[113,50,78,2.5053709362625267],[113,50,79,2.518697249895912],[113,51,64,1.9628633584899662],[113,51,65,2.008417258676615],[113,51,66,2.041166471913033],[113,51,67,2.060028492056072],[113,51,68,2.0740657397705085],[113,51,69,2.0907812137668382],[113,51,70,2.100456288694971],[113,51,71,2.1147699573134413],[113,51,72,2.141203260301664],[113,51,73,2.181661227092911],[113,51,74,2.220309479862925],[113,51,75,2.2518929646510824],[113,51,76,2.2761962432048346],[113,51,77,2.296429157300586],[113,51,78,2.3177288137317875],[113,51,79,2.331075739441285],[113,52,64,1.7834027497493454],[113,52,65,1.8291370534726479],[113,52,66,1.863717238981677],[113,52,67,1.883256725883834],[113,52,68,1.8963083864793506],[113,52,69,1.9129261600049603],[113,52,70,1.9246158727580562],[113,52,71,1.9377846440956275],[113,52,72,1.9645617498650008],[113,52,73,2.0049982018876222],[113,52,74,2.042996965991957],[113,52,75,2.072515010838827],[113,52,76,2.0964314737440723],[113,52,77,2.116046607974998],[113,52,78,2.138540744361288],[113,52,79,2.153560528654032],[113,53,64,1.5949224976130387],[113,53,65,1.639286104450233],[113,53,66,1.6730568105916874],[113,53,67,1.6949933139675835],[113,53,68,1.7034653261572787],[113,53,69,1.7175673957569217],[113,53,70,1.7273820848782537],[113,53,71,1.7418258172834777],[113,53,72,1.7666524855718022],[113,53,73,1.8085352318544352],[113,53,74,1.8488738567493155],[113,53,75,1.875441790044675],[113,53,76,1.8995419614006208],[113,53,77,1.9207521948634134],[113,53,78,1.9421621107397862],[113,53,79,1.9599610934511114],[113,54,64,1.4023189603852688],[113,54,65,1.446396601671859],[113,54,66,1.4816012479403846],[113,54,67,1.5048910031033786],[113,54,68,1.5157934387398844],[113,54,69,1.5273949499491832],[113,54,70,1.5383613565331402],[113,54,71,1.5520237509695707],[113,54,72,1.5807433919046037],[113,54,73,1.6238395228134932],[113,54,74,1.6646237979173635],[113,54,75,1.6892601467535073],[113,54,76,1.7104332484317115],[113,54,77,1.7324836432758173],[113,54,78,1.7552684617907661],[113,54,79,1.771605749535357],[113,55,64,1.2085787695960473],[113,55,65,1.2535375959305004],[113,55,66,1.28937986924676],[113,55,67,1.3134214239848752],[113,55,68,1.3238969996625454],[113,55,69,1.3365112698693573],[113,55,70,1.3499756966969978],[113,55,71,1.3641740511598828],[113,55,72,1.3951048343169885],[113,55,73,1.4369766143202323],[113,55,74,1.4767167429590062],[113,55,75,1.5034553482754727],[113,55,76,1.5236186912885075],[113,55,77,1.5440572938647492],[113,55,78,1.5666948486516066],[113,55,79,1.5834167804675372],[113,56,64,1.0351413953111646],[113,56,65,1.0776272406883034],[113,56,66,1.1138132266206153],[113,56,67,1.135796122754044],[113,56,68,1.1457646394531589],[113,56,69,1.15760229704722],[113,56,70,1.1750017933552355],[113,56,71,1.1933077464361719],[113,56,72,1.225037459304758],[113,56,73,1.2641700738735433],[113,56,74,1.3024269920015654],[113,56,75,1.3298714457829872],[113,56,76,1.3508072753539957],[113,56,77,1.373614557283033],[113,56,78,1.3956107591772522],[113,56,79,1.4111323855316091],[113,57,64,0.8494787945148792],[113,57,65,0.8915587263083427],[113,57,66,0.9276850382624326],[113,57,67,0.9501442755019593],[113,57,68,0.9595848642454593],[113,57,69,0.9704684899999544],[113,57,70,0.9886068041026466],[113,57,71,1.0069770518002281],[113,57,72,1.0334860218696196],[113,57,73,1.0707583820353967],[113,57,74,1.1074400631768675],[113,57,75,1.1351742282657142],[113,57,76,1.157949688627534],[113,57,77,1.1792202957980964],[113,57,78,1.2012030869433556],[113,57,79,1.2189828853143014],[113,58,64,0.6999829730168116],[113,58,65,0.7426129503059614],[113,58,66,0.7766707021079018],[113,58,67,0.7972228782907077],[113,58,68,0.8085790435557182],[113,58,69,0.8189401678319784],[113,58,70,0.8355499967905391],[113,58,71,0.8555812662161358],[113,58,72,0.880704736687571],[113,58,73,0.9177816695084009],[113,58,74,0.9542941628250382],[113,58,75,0.9776852335257082],[113,58,76,1.00295299357553],[113,58,77,1.0236247896349235],[113,58,78,1.046287250010807],[113,58,79,1.0665164613934583],[113,59,64,0.5098044916538068],[113,59,65,0.5516203070644395],[113,59,66,0.5853633121716699],[113,59,67,0.6064638757531577],[113,59,68,0.6187889879965431],[113,59,69,0.6275042391838221],[113,59,70,0.6444106877868225],[113,59,71,0.6631769704530244],[113,59,72,0.6908225609905688],[113,59,73,0.7283496448763801],[113,59,74,0.7647728870457007],[113,59,75,0.7880866658216958],[113,59,76,0.8121773273719599],[113,59,77,0.8347318267138679],[113,59,78,0.8589285848248358],[113,59,79,0.8820016756959759],[113,60,64,0.31783704413947655],[113,60,65,0.36086998646481117],[113,60,66,0.39519002232508926],[113,60,67,0.41486810312212263],[113,60,68,0.42398313728206105],[113,60,69,0.43482865132525317],[113,60,70,0.4512836150534168],[113,60,71,0.4697414556484931],[113,60,72,0.500462417391096],[113,60,73,0.5369695116180878],[113,60,74,0.5730776981963184],[113,60,75,0.5962296520491986],[113,60,76,0.6186069540690666],[113,60,77,0.6439718806531558],[113,60,78,0.6703974453851149],[113,60,79,0.6973113783204062],[113,61,64,0.12656918944265755],[113,61,65,0.1684939477415066],[113,61,66,0.20153419429020297],[113,61,67,0.21697397354279713],[113,61,68,0.2219785301747303],[113,61,69,0.2340983956207812],[113,61,70,0.25262537312746636],[113,61,71,0.27527407747132593],[113,61,72,0.3106770541102171],[113,61,73,0.35304371245934496],[113,61,74,0.3884402591407671],[113,61,75,0.4125995292795261],[113,61,76,0.4354982975605395],[113,61,77,0.45996284910424323],[113,61,78,0.4891700053840846],[113,61,79,0.5207280637168765],[113,62,64,0.062458060572963395],[113,62,65,0.06950176379851893],[113,62,66,0.07525186966905972],[113,62,67,0.07478746399787564],[113,62,68,0.07107952113473677],[113,62,69,0.073247368808102],[113,62,70,0.08047862961477169],[113,62,71,0.08891914838040628],[113,62,72,0.12285980547517865],[113,62,73,0.16505408519655063],[113,62,74,0.20070405324189625],[113,62,75,0.22708809023637],[113,62,76,0.24866637896211763],[113,62,77,0.2720989298648179],[113,62,78,0.3036426636221124],[113,62,79,0.33476000993367216],[113,63,64,-0.05888778341492301],[113,63,65,-0.054994864242669084],[113,63,66,-0.048729886446997245],[113,63,67,-0.04922109209769861],[113,63,68,-0.05051834983036532],[113,63,69,-0.05040868120250051],[113,63,70,-0.041637139673863],[113,63,71,-0.03242017836237021],[113,63,72,-0.022220797054542926],[113,63,73,-0.013997321104420729],[113,63,74,-0.008260656087252391],[113,63,75,-0.005139442671578273],[113,63,76,1.647226274234248E-4],[113,63,77,0.01454999128853747],[113,63,78,0.04461706946713109],[113,63,79,0.07189496149572257],[113,64,64,-0.09918837810156535],[113,64,65,-0.09487348446275534],[113,64,66,-0.08991009178414948],[113,64,67,-0.08881267993716933],[113,64,68,-0.08966269651522456],[113,64,69,-0.09223473421724587],[113,64,70,-0.08296012338322593],[113,64,71,-0.0738005973982283],[113,64,72,-0.0629101179084691],[113,64,73,-0.05311319634155624],[113,64,74,-0.046986400881432105],[113,64,75,-0.04253147837371786],[113,64,76,-0.03700787300144101],[113,64,77,-0.029244257565935336],[113,64,78,-0.01931079377200147],[113,64,79,-0.01561599331891679],[113,65,64,-0.15131222229439215],[113,65,65,-0.1457391253190155],[113,65,66,-0.14144753970856427],[113,65,67,-0.1401983865276443],[113,65,68,-0.14201404444613083],[113,65,69,-0.14303085086637507],[113,65,70,-0.13299478919091223],[113,65,71,-0.12314590611791681],[113,65,72,-0.11142733426372438],[113,65,73,-0.10255464030498358],[113,65,74,-0.09618313463709274],[113,65,75,-0.09103760170816658],[113,65,76,-0.0860243902048433],[113,65,77,-0.0791873653931434],[113,65,78,-0.06833951695767866],[113,65,79,-0.06424142042600743],[113,66,64,-0.20606399878024173],[113,66,65,-0.19996501880099388],[113,66,66,-0.19676169395789833],[113,66,67,-0.19632881869733193],[113,66,68,-0.1998899969248203],[113,66,69,-0.19900800700825155],[113,66,70,-0.1890261224209981],[113,66,71,-0.179394472582582],[113,66,72,-0.1659915409920824],[113,66,73,-0.15640042627637618],[113,66,74,-0.14947475123098825],[113,66,75,-0.14594120024113427],[113,66,76,-0.14215183177117163],[113,66,77,-0.13533204483588457],[113,66,78,-0.12456439530692706],[113,66,79,-0.11911146002283253],[113,67,64,-0.25262809878394327],[113,67,65,-0.24891464976125582],[113,67,66,-0.24956098896229822],[113,67,67,-0.24747698197269685],[113,67,68,-0.24876305159100026],[113,67,69,-0.24687422272403342],[113,67,70,-0.23835800886955813],[113,67,71,-0.22979552320148566],[113,67,72,-0.21538296135060353],[113,67,73,-0.204850403985561],[113,67,74,-0.19763310268918416],[113,67,75,-0.19639941978451012],[113,67,76,-0.192200639041881],[113,67,77,-0.18555722482765252],[113,67,78,-0.1782470915262569],[113,67,79,-0.17204209755685923],[113,68,64,-0.38634770468426693],[113,68,65,-0.388131321631286],[113,68,66,-0.3880342802087716],[113,68,67,-0.3843903240569544],[113,68,68,-0.3840828227113365],[113,68,69,-0.38272263483723895],[113,68,70,-0.3739671590583836],[113,68,71,-0.36458954214486666],[113,68,72,-0.3505234641757532],[113,68,73,-0.34047677461014364],[113,68,74,-0.3346223258101231],[113,68,75,-0.33261523691109185],[113,68,76,-0.32888635789596626],[113,68,77,-0.324004942700503],[113,68,78,-0.3170025698049398],[113,68,79,-0.3085668027756115],[113,69,64,-0.43545345256786294],[113,69,65,-0.43910160948087595],[113,69,66,-0.43942899758776083],[113,69,67,-0.4390803734369232],[113,69,68,-0.43470773466704893],[113,69,69,-0.43036694662514197],[113,69,70,-0.42110214260231077],[113,69,71,-0.40767706400640946],[113,69,72,-0.39199215544545934],[113,69,73,-0.3784777536478767],[113,69,74,-0.3731144499970085],[113,69,75,-0.3711365034355716],[113,69,76,-0.369263999626347],[113,69,77,-0.37038276734283815],[113,69,78,-0.3695186309276631],[113,69,79,-0.36293069872946637],[113,70,64,-0.4900824979142778],[113,70,65,-0.49056584213989696],[113,70,66,-0.48775169527298534],[113,70,67,-0.4862931324574835],[113,70,68,-0.4828501516703739],[113,70,69,-0.47814562821299245],[113,70,70,-0.46947194365392453],[113,70,71,-0.4538414317835622],[113,70,72,-0.43904556881474377],[113,70,73,-0.42767091639153026],[113,70,74,-0.4215421295464318],[113,70,75,-0.42164334672149584],[113,70,76,-0.4181355057569049],[113,70,77,-0.41714574436046836],[113,70,78,-0.41806085601832144],[113,70,79,-0.41115848517158227],[113,71,64,-0.5298823989884407],[113,71,65,-0.53156427422771],[113,71,66,-0.5265040226457525],[113,71,67,-0.5233461684787227],[113,71,68,-0.5215628561281813],[113,71,69,-0.5157292429450385],[113,71,70,-0.5067359789544511],[113,71,71,-0.49189027198803625],[113,71,72,-0.478573076252651],[113,71,73,-0.4657843157108361],[113,71,74,-0.4642168522238106],[113,71,75,-0.4616847736015638],[113,71,76,-0.45801599492076694],[113,71,77,-0.45593883406989305],[113,71,78,-0.45738964298793283],[113,71,79,-0.44985330805603074],[113,72,64,-0.5816309389347217],[113,72,65,-0.5837542638883463],[113,72,66,-0.5765752907842556],[113,72,67,-0.5713237848653596],[113,72,68,-0.5688675232437425],[113,72,69,-0.5640005360530047],[113,72,70,-0.5568430656839574],[113,72,71,-0.5416331578127493],[113,72,72,-0.5306800235622918],[113,72,73,-0.5175354894840823],[113,72,74,-0.5132679865450561],[113,72,75,-0.5105923387715878],[113,72,76,-0.5065076576612016],[113,72,77,-0.5046749946491418],[113,72,78,-0.5074694483106218],[113,72,79,-0.49890488335171446],[113,73,64,-0.6429102424894377],[113,73,65,-0.6350168217758466],[113,73,66,-0.6234659025195493],[113,73,67,-0.6129388324262826],[113,73,68,-0.6079246276563974],[113,73,69,-0.6011242788433444],[113,73,70,-0.598514207124407],[113,73,71,-0.5943284153094476],[113,73,72,-0.5877760005700124],[113,73,73,-0.5785627268823494],[113,73,74,-0.5716775576216917],[113,73,75,-0.5678789222892238],[113,73,76,-0.5658296430610744],[113,73,77,-0.5614360655880669],[113,73,78,-0.5584126602655934],[113,73,79,-0.5484083176123024],[113,74,64,-0.6987417012194908],[113,74,65,-0.6885072982142066],[113,74,66,-0.6764072579740884],[113,74,67,-0.6689149733030318],[113,74,68,-0.663400807747161],[113,74,69,-0.6555037013663991],[113,74,70,-0.6520498495241277],[113,74,71,-0.6517136607556758],[113,74,72,-0.6453338848658536],[113,74,73,-0.6331358412580441],[113,74,74,-0.6281422487578574],[113,74,75,-0.6222476409662709],[113,74,76,-0.6250958586707644],[113,74,77,-0.6183063865628282],[113,74,78,-0.6141631881874319],[113,74,79,-0.6036508367183665],[113,75,64,-0.746879928629713],[113,75,65,-0.7358180967486234],[113,75,66,-0.7253747567846099],[113,75,67,-0.7188764190494598],[113,75,68,-0.7129964268243347],[113,75,69,-0.7039459224274349],[113,75,70,-0.7007870737299429],[113,75,71,-0.7002743890296702],[113,75,72,-0.6965271645538691],[113,75,73,-0.6843599736661357],[113,75,74,-0.6807497176702002],[113,75,75,-0.6753495711979643],[113,75,76,-0.6753230551764262],[113,75,77,-0.6733540065349951],[113,75,78,-0.6661304159470577],[113,75,79,-0.6558607288949299],[113,76,64,-0.790117314794449],[113,76,65,-0.778986844310263],[113,76,66,-0.7687360680620187],[113,76,67,-0.7628094420708931],[113,76,68,-0.7577488451983652],[113,76,69,-0.7507227306107102],[113,76,70,-0.7440714677070395],[113,76,71,-0.7428872192914199],[113,76,72,-0.7426266726589053],[113,76,73,-0.732292866432257],[113,76,74,-0.7275139528749694],[113,76,75,-0.7222666324722373],[113,76,76,-0.7221060123733467],[113,76,77,-0.7228442976986513],[113,76,78,-0.7173632719604429],[113,76,79,-0.7045410233621884],[113,77,64,-0.8377756990915113],[113,77,65,-0.8265537944717686],[113,77,66,-0.8175351015850577],[113,77,67,-0.8132699167617812],[113,77,68,-0.8068178878118661],[113,77,69,-0.800349746162855],[113,77,70,-0.795920885022053],[113,77,71,-0.794575100476979],[113,77,72,-0.7937743621413074],[113,77,73,-0.7856223776870592],[113,77,74,-0.7790355703975841],[113,77,75,-0.7769082753382477],[113,77,76,-0.774838709157552],[113,77,77,-0.7763681306086313],[113,77,78,-0.7702224108642044],[113,77,79,-0.757562323451193],[113,78,64,-0.8858260797754608],[113,78,65,-0.8727499829504554],[113,78,66,-0.8636970062084867],[113,78,67,-0.8603376737912987],[113,78,68,-0.855002619784256],[113,78,69,-0.850562984083608],[113,78,70,-0.8444823569243761],[113,78,71,-0.8429008012922039],[113,78,72,-0.8423246081262743],[113,78,73,-0.8372950682189662],[113,78,74,-0.830879654261617],[113,78,75,-0.8258565903120441],[113,78,76,-0.8272735768175763],[113,78,77,-0.8263122381175445],[113,78,78,-0.8222464074403315],[113,78,79,-0.8084864574281942],[113,79,64,-0.9256905032609009],[113,79,65,-0.9101936086698639],[113,79,66,-0.9026587842045317],[113,79,67,-0.8999409738672333],[113,79,68,-0.8941421444839962],[113,79,69,-0.8890147604417592],[113,79,70,-0.8834357972082081],[113,79,71,-0.8819959677064537],[113,79,72,-0.8817749317747454],[113,79,73,-0.8752663318536696],[113,79,74,-0.8713516504963237],[113,79,75,-0.8646584672195744],[113,79,76,-0.8666528173277924],[113,79,77,-0.8643638261416582],[113,79,78,-0.8595842839491256],[113,79,79,-0.8469766449735022],[113,80,64,-0.9734856053956644],[113,80,65,-0.9599544133843779],[113,80,66,-0.9513398362010026],[113,80,67,-0.9452840068207657],[113,80,68,-0.9441451181685231],[113,80,69,-0.9404056999575215],[113,80,70,-0.9339440197521733],[113,80,71,-0.9307831651168672],[113,80,72,-0.9298176447424349],[113,80,73,-0.921882900469212],[113,80,74,-0.9184268909782507],[113,80,75,-0.9143290781544602],[113,80,76,-0.9161960503444435],[113,80,77,-0.9163063152708041],[113,80,78,-0.9106806314697139],[113,80,79,-0.8986791581591129],[113,81,64,-1.0203006074421235],[113,81,65,-1.0087347515670544],[113,81,66,-0.9973077262930073],[113,81,67,-0.9886269324102168],[113,81,68,-0.9889603986175222],[113,81,69,-0.9848894315698711],[113,81,70,-0.9792904572864349],[113,81,71,-0.9741992141290233],[113,81,72,-0.9681047536210127],[113,81,73,-0.9583213160220532],[113,81,74,-0.954063115287948],[113,81,75,-0.9519688464613222],[113,81,76,-0.9590144346217596],[113,81,77,-0.9635172682751598],[113,81,78,-0.962874880707677],[113,81,79,-0.9560320399974953],[113,82,64,-1.0766517924116576],[113,82,65,-1.0653895828320752],[113,82,66,-1.052558584965403],[113,82,67,-1.0430643777298803],[113,82,68,-1.045786785750483],[113,82,69,-1.0410072101744094],[113,82,70,-1.0364428635009078],[113,82,71,-1.0314600938094587],[113,82,72,-1.0244795907865674],[113,82,73,-1.0144800232308087],[113,82,74,-1.0065022662683765],[113,82,75,-1.004686978730966],[113,82,76,-1.0127337754727772],[113,82,77,-1.0157525303751913],[113,82,78,-1.017335816984529],[113,82,79,-1.011508975324856],[113,83,64,-1.1270607498846283],[113,83,65,-1.1140809399898277],[113,83,66,-1.1040402897727084],[113,83,67,-1.0943485266893167],[113,83,68,-1.093844437203979],[113,83,69,-1.0928785562087133],[113,83,70,-1.087362152430173],[113,83,71,-1.0836626469308743],[113,83,72,-1.0742480263696175],[113,83,73,-1.0633725011773945],[113,83,74,-1.0546470632642793],[113,83,75,-1.053785458730485],[113,83,76,-1.0614602557938684],[113,83,77,-1.0674666003952173],[113,83,78,-1.069335306363227],[113,83,79,-1.061192360326062],[113,84,64,-1.1736933931495594],[113,84,65,-1.160592815491575],[113,84,66,-1.148616452665761],[113,84,67,-1.1421272607440915],[113,84,68,-1.1409293464209913],[113,84,69,-1.1405513655265302],[113,84,70,-1.138013110197652],[113,84,71,-1.1338443934014766],[113,84,72,-1.1226868007888124],[113,84,73,-1.110772116328595],[113,84,74,-1.102711490347368],[113,84,75,-1.1060475284866458],[113,84,76,-1.1131432653285658],[113,84,77,-1.1173384370098656],[113,84,78,-1.118596764284393],[113,84,79,-1.1096937029866856],[113,85,64,-1.2211726367119184],[113,85,65,-1.2126376966017938],[113,85,66,-1.2050668076317879],[113,85,67,-1.200356799171483],[113,85,68,-1.2005489830547769],[113,85,69,-1.2002203340400077],[113,85,70,-1.1978214663659474],[113,85,71,-1.1955519323095278],[113,85,72,-1.1853614912769779],[113,85,73,-1.1735491299090541],[113,85,74,-1.1695271386179653],[113,85,75,-1.1728767274606704],[113,85,76,-1.17616082853058],[113,85,77,-1.1723843431329337],[113,85,78,-1.1650972527154144],[113,85,79,-1.1531133421670614],[113,86,64,-1.2692691603359165],[113,86,65,-1.2605638633877438],[113,86,66,-1.2538488926500602],[113,86,67,-1.2507733240140517],[113,86,68,-1.2464979324817569],[113,86,69,-1.2458544034864452],[113,86,70,-1.2464715532518478],[113,86,71,-1.245380143160693],[113,86,72,-1.2363572680458776],[113,86,73,-1.2255706301708258],[113,86,74,-1.2195129194813243],[113,86,75,-1.2250108178618915],[113,86,76,-1.2264971425291153],[113,86,77,-1.222355094310492],[113,86,78,-1.2159904215985418],[113,86,79,-1.2041739069151338],[113,87,64,-1.3065222516488795],[113,87,65,-1.298940154806301],[113,87,66,-1.2937722129345495],[113,87,67,-1.2890703096831941],[113,87,68,-1.2856235191269734],[113,87,69,-1.2814957209742264],[113,87,70,-1.283532082130356],[113,87,71,-1.2833004371302013],[113,87,72,-1.2757735536679793],[113,87,73,-1.264308241566735],[113,87,74,-1.2618099284430526],[113,87,75,-1.2669890209453754],[113,87,76,-1.2676620250340398],[113,87,77,-1.2641604744713608],[113,87,78,-1.256453469267508],[113,87,79,-1.2460423213086604],[113,88,64,-1.3556243292195351],[113,88,65,-1.3468444118632452],[113,88,66,-1.340796661282929],[113,88,67,-1.3372219236286833],[113,88,68,-1.3348911267695147],[113,88,69,-1.3304317052940349],[113,88,70,-1.3334754549121315],[113,88,71,-1.3307191079899865],[113,88,72,-1.3247133461935914],[113,88,73,-1.312132488248129],[113,88,74,-1.3121577475577584],[113,88,75,-1.31614742726515],[113,88,76,-1.318225469854573],[113,88,77,-1.3133974845332754],[113,88,78,-1.3049224797698145],[113,88,79,-1.2944689420052868],[113,89,64,-1.4051186173421715],[113,89,65,-1.396831086796656],[113,89,66,-1.3883071724340077],[113,89,67,-1.3851584998828992],[113,89,68,-1.3821757178845635],[113,89,69,-1.3789991395001808],[113,89,70,-1.3814406128084924],[113,89,71,-1.3800406749047696],[113,89,72,-1.3716075686484719],[113,89,73,-1.3585615687962613],[113,89,74,-1.3612151640193733],[113,89,75,-1.3655327383641052],[113,89,76,-1.367281180332939],[113,89,77,-1.3615885120225706],[113,89,78,-1.355330277497551],[113,89,79,-1.34304452739484],[113,90,64,-1.4605368592458814],[113,90,65,-1.4500257916574544],[113,90,66,-1.4396690873475548],[113,90,67,-1.4365899567605376],[113,90,68,-1.4359153220691345],[113,90,69,-1.4331323878261184],[113,90,70,-1.437544146196583],[113,90,71,-1.433137075838701],[113,90,72,-1.4247923337368504],[113,90,73,-1.4128246454314901],[113,90,74,-1.4157781511606624],[113,90,75,-1.4185512732071675],[113,90,76,-1.4204673864542263],[113,90,77,-1.4193153102306644],[113,90,78,-1.4111426345816627],[113,90,79,-1.3990623270968119],[113,91,64,-1.509030748634788],[113,91,65,-1.497471879098601],[113,91,66,-1.4872218326381392],[113,91,67,-1.4827527655771555],[113,91,68,-1.4822492228942667],[113,91,69,-1.483344919384905],[113,91,70,-1.484476556437068],[113,91,71,-1.4808521682307667],[113,91,72,-1.472552619206807],[113,91,73,-1.4624986336788082],[113,91,74,-1.4649965151559499],[113,91,75,-1.4639671386626618],[113,91,76,-1.4662058620495273],[113,91,77,-1.470218603750469],[113,91,78,-1.4656212264274422],[113,91,79,-1.4514414663032151],[113,92,64,-1.548995332267545],[113,92,65,-1.5360139761773643],[113,92,66,-1.526501003452412],[113,92,67,-1.5213376598054036],[113,92,68,-1.5245259449326898],[113,92,69,-1.5274597263035472],[113,92,70,-1.52812096279236],[113,92,71,-1.525157184369415],[113,92,72,-1.5179769210857768],[113,92,73,-1.5071606534137998],[113,92,74,-1.5067721720204819],[113,92,75,-1.5065015521988725],[113,92,76,-1.5105140459815785],[113,92,77,-1.5133658313963425],[113,92,78,-1.5123383443803737],[113,92,79,-1.4986608805213903],[113,93,64,-1.5981350837940453],[113,93,65,-1.5880377313836491],[113,93,66,-1.577807060066749],[113,93,67,-1.5730898147376384],[113,93,68,-1.5764046549740478],[113,93,69,-1.5790477871515267],[113,93,70,-1.579582311173608],[113,93,71,-1.573103202054481],[113,93,72,-1.5599586856837304],[113,93,73,-1.545725895523532],[113,93,74,-1.5408320660729866],[113,93,75,-1.543361837591572],[113,93,76,-1.550730743077058],[113,93,77,-1.5587517959646484],[113,93,78,-1.5648454017308446],[113,93,79,-1.5583131038838702],[113,94,64,-1.6440568753297569],[113,94,65,-1.6332170180848382],[113,94,66,-1.6230035733120582],[113,94,67,-1.6213535433550317],[113,94,68,-1.6228266330834458],[113,94,69,-1.6275051773542328],[113,94,70,-1.6246777333446283],[113,94,71,-1.6183777113427043],[113,94,72,-1.6072444365397223],[113,94,73,-1.5929244146544441],[113,94,74,-1.5889662233079391],[113,94,75,-1.5890547946927591],[113,94,76,-1.596448686317532],[113,94,77,-1.604462143058122],[113,94,78,-1.6121242298204113],[113,94,79,-1.6054229633849317],[113,95,64,-1.6791130644005088],[113,95,65,-1.6673341684489504],[113,95,66,-1.6612083469764272],[113,95,67,-1.65965424887473],[113,95,68,-1.6627304083481809],[113,95,69,-1.6644237076691932],[113,95,70,-1.6622786489366708],[113,95,71,-1.656512698837711],[113,95,72,-1.64794459119533],[113,95,73,-1.6333867536204238],[113,95,74,-1.6283418448026632],[113,95,75,-1.629450254482652],[113,95,76,-1.634714861325779],[113,95,77,-1.6448354419282336],[113,95,78,-1.6523391560207998],[113,95,79,-1.6469710221537583],[113,96,64,-1.7257297014565056],[113,96,65,-1.7150526468188203],[113,96,66,-1.7071115393686815],[113,96,67,-1.7061030184478325],[113,96,68,-1.7104079258314842],[113,96,69,-1.7104330890419464],[113,96,70,-1.7079982125569664],[113,96,71,-1.7043210963714104],[113,96,72,-1.6957332397658094],[113,96,73,-1.6809843951308725],[113,96,74,-1.6772428105437862],[113,96,75,-1.6782073126807568],[113,96,76,-1.6831260476396075],[113,96,77,-1.6941443295997858],[113,96,78,-1.7013937684708127],[113,96,79,-1.6939331309725958],[113,97,64,-1.7664860953176473],[113,97,65,-1.755317071905113],[113,97,66,-1.7469980625390784],[113,97,67,-1.7418052689516481],[113,97,68,-1.7462296811061817],[113,97,69,-1.748090343194896],[113,97,70,-1.750268622577116],[113,97,71,-1.7531123459772575],[113,97,72,-1.7481224926075984],[113,97,73,-1.739522581489917],[113,97,74,-1.737797096530552],[113,97,75,-1.739823541311541],[113,97,76,-1.7404980660686322],[113,97,77,-1.745518035761732],[113,97,78,-1.7425674540853362],[113,97,79,-1.7302674815881829],[113,98,64,-1.819629226488954],[113,98,65,-1.8082803205547513],[113,98,66,-1.7972848147982579],[113,98,67,-1.7940900585220938],[113,98,68,-1.7988616257911874],[113,98,69,-1.7978524435764396],[113,98,70,-1.8030493861457693],[113,98,71,-1.8076761600666171],[113,98,72,-1.8020631848989839],[113,98,73,-1.7939968241848858],[113,98,74,-1.7937548869739397],[113,98,75,-1.7965346963239222],[113,98,76,-1.7956486995371501],[113,98,77,-1.799654898275194],[113,98,78,-1.792387870463611],[113,98,79,-1.781232934498159],[113,99,64,-1.864981198398408],[113,99,65,-1.8538333128563227],[113,99,66,-1.844733100456132],[113,99,67,-1.841538157782438],[113,99,68,-1.8445736614965091],[113,99,69,-1.846387507275969],[113,99,70,-1.8512876309326423],[113,99,71,-1.85322452966451],[113,99,72,-1.8493335975009026],[113,99,73,-1.8420430531115066],[113,99,74,-1.8427735970604977],[113,99,75,-1.84530264400506],[113,99,76,-1.8474104788651229],[113,99,77,-1.8455042286375156],[113,99,78,-1.8394501475703982],[113,99,79,-1.8274506079943393],[113,100,64,-1.8586538436425737],[113,100,65,-1.8476415085008426],[113,100,66,-1.8375880981541879],[113,100,67,-1.833781949105666],[113,100,68,-1.8363085345941972],[113,100,69,-1.8367074448405658],[113,100,70,-1.8372198920838048],[113,100,71,-1.8403445413669735],[113,100,72,-1.8381911251627134],[113,100,73,-1.8314987369843285],[113,100,74,-1.831142129487472],[113,100,75,-1.832582095626949],[113,100,76,-1.8351212908724401],[113,100,77,-1.8317494491128588],[113,100,78,-1.829301979035017],[113,100,79,-1.814125689132249],[113,101,64,-1.9046305548378846],[113,101,65,-1.8914512323515544],[113,101,66,-1.885684640260946],[113,101,67,-1.8834335504155924],[113,101,68,-1.8846803635148932],[113,101,69,-1.88338497919228],[113,101,70,-1.8815948306625534],[113,101,71,-1.8854739739983157],[113,101,72,-1.8842316907914112],[113,101,73,-1.8789756195293392],[113,101,74,-1.8783647036658127],[113,101,75,-1.8808189650419003],[113,101,76,-1.881163689932967],[113,101,77,-1.878318737346778],[113,101,78,-1.8751593198245275],[113,101,79,-1.860522635326374],[113,102,64,-1.9488265231053261],[113,102,65,-1.9393889416413357],[113,102,66,-1.9330959379795267],[113,102,67,-1.9335314348938248],[113,102,68,-1.9325227411146004],[113,102,69,-1.9302868097188794],[113,102,70,-1.9276167598441252],[113,102,71,-1.9308224977472288],[113,102,72,-1.9311957219887284],[113,102,73,-1.926739757176642],[113,102,74,-1.9271417918044649],[113,102,75,-1.9286351143388556],[113,102,76,-1.9298801254805102],[113,102,77,-1.9274352391649443],[113,102,78,-1.9229357788916706],[113,102,79,-1.9092688019929795],[113,103,64,-1.988136251164162],[113,103,65,-1.9797068471743657],[113,103,66,-1.974126537885298],[113,103,67,-1.9730075756202163],[113,103,68,-1.9725105839173842],[113,103,69,-1.9705802693424546],[113,103,70,-1.96696703189433],[113,103,71,-1.970174362242902],[113,103,72,-1.9699337169258828],[113,103,73,-1.967392866002588],[113,103,74,-1.9677344220971849],[113,103,75,-1.970585970123748],[113,103,76,-1.9718796740630573],[113,103,77,-1.972994228350057],[113,103,78,-1.966090909535237],[113,103,79,-1.955595240236449],[113,104,64,-2.039115538128209],[113,104,65,-2.0316602941178683],[113,104,66,-2.02739445039443],[113,104,67,-2.0220438360718913],[113,104,68,-2.0221440497194525],[113,104,69,-2.021139391322493],[113,104,70,-2.017906376043348],[113,104,71,-2.016705756122678],[113,104,72,-2.0172998965541193],[113,104,73,-2.0150739608266663],[113,104,74,-2.014509328359652],[113,104,75,-2.016975438443542],[113,104,76,-2.0197919157911057],[113,104,77,-2.0225204913675703],[113,104,78,-2.0167610487094403],[113,104,79,-2.004190619508155],[113,105,64,-2.087257010596956],[113,105,65,-2.080581377550809],[113,105,66,-2.0718798638859113],[113,105,67,-2.065785277640823],[113,105,68,-2.065896493569043],[113,105,69,-2.066102872182716],[113,105,70,-2.06362138426238],[113,105,71,-2.0579492984247683],[113,105,72,-2.055672762647705],[113,105,73,-2.0522964096323153],[113,105,74,-2.0515729845546278],[113,105,75,-2.0559915411508296],[113,105,76,-2.0613065524391985],[113,105,77,-2.0688253623647124],[113,105,78,-2.0680745609146505],[113,105,79,-2.058617157994469],[113,106,64,-2.142248968609345],[113,106,65,-2.1370849869294255],[113,106,66,-2.1264850503019708],[113,106,67,-2.1218251103044024],[113,106,68,-2.1197863748984984],[113,106,69,-2.1205991015636787],[113,106,70,-2.1183896161448414],[113,106,71,-2.111436737382639],[113,106,72,-2.1084702843511836],[113,106,73,-2.105632886146306],[113,106,74,-2.104116482205813],[113,106,75,-2.1076585439503233],[113,106,76,-2.11542454601349],[113,106,77,-2.120191398002188],[113,106,78,-2.1194213015073484],[113,106,79,-2.109610451273226],[113,107,64,-2.191230808609396],[113,107,65,-2.187048723305164],[113,107,66,-2.1793177602474048],[113,107,67,-2.1730000142256505],[113,107,68,-2.1676254534485095],[113,107,69,-2.169888302466568],[113,107,70,-2.166326252956647],[113,107,71,-2.161405555608729],[113,107,72,-2.1576149251486556],[113,107,73,-2.1527034801514344],[113,107,74,-2.1543292568428956],[113,107,75,-2.154870306204766],[113,107,76,-2.161395789215917],[113,107,77,-2.167411359556491],[113,107,78,-2.1662467265700998],[113,107,79,-2.156053991070632],[113,108,64,-2.2419526232700338],[113,108,65,-2.2362620000594293],[113,108,66,-2.2304935408854076],[113,108,67,-2.2264735494450196],[113,108,68,-2.2199227609322936],[113,108,69,-2.2222055005108046],[113,108,70,-2.218549358199233],[113,108,71,-2.2155265854980524],[113,108,72,-2.213208767814178],[113,108,73,-2.209755469801232],[113,108,74,-2.207972044940999],[113,108,75,-2.208994445682144],[113,108,76,-2.2123479320508816],[113,108,77,-2.2191847527565405],[113,108,78,-2.218258600819189],[113,108,79,-2.207925707256597],[113,109,64,-2.2996117514997656],[113,109,65,-2.291316872800848],[113,109,66,-2.2869217635018764],[113,109,67,-2.2864540800860884],[113,109,68,-2.280661556159312],[113,109,69,-2.2787917041901173],[113,109,70,-2.2752711999170363],[113,109,71,-2.2766807267508686],[113,109,72,-2.2755457626866096],[113,109,73,-2.271205150129328],[113,109,74,-2.2670321802307907],[113,109,75,-2.2682184439635003],[113,109,76,-2.2671064646465817],[113,109,77,-2.2689244483595883],[113,109,78,-2.2613403635503477],[113,109,79,-2.245304487093627],[113,110,64,-2.346922598471055],[113,110,65,-2.338782401500716],[113,110,66,-2.3344879183650606],[113,110,67,-2.3348089128536857],[113,110,68,-2.3307363135403607],[113,110,69,-2.3261577473750172],[113,110,70,-2.324424666825274],[113,110,71,-2.3251637925426314],[113,110,72,-2.3272696925577425],[113,110,73,-2.322166085761914],[113,110,74,-2.3154041279762927],[113,110,75,-2.3169500878350355],[113,110,76,-2.318134331923508],[113,110,77,-2.3178274902021987],[113,110,78,-2.307445699328544],[113,110,79,-2.2922186870463723],[113,111,64,-2.386966546162012],[113,111,65,-2.379993985727258],[113,111,66,-2.374081158283735],[113,111,67,-2.3746512730822564],[113,111,68,-2.3729100753048233],[113,111,69,-2.368370668882701],[113,111,70,-2.369605975587773],[113,111,71,-2.36796003503537],[113,111,72,-2.371162880331912],[113,111,73,-2.3652443970592545],[113,111,74,-2.359684381177528],[113,111,75,-2.363854097631818],[113,111,76,-2.3672409568147694],[113,111,77,-2.360893396665044],[113,111,78,-2.3526402732256173],[113,111,79,-2.339469916013667],[113,112,64,-2.437717543865555],[113,112,65,-2.4291178544425125],[113,112,66,-2.4236118467882517],[113,112,67,-2.423178130546123],[113,112,68,-2.4213678065601822],[113,112,69,-2.418378834138309],[113,112,70,-2.4206315372953506],[113,112,71,-2.4185469140441938],[113,112,72,-2.420938896954351],[113,112,73,-2.4143794755662698],[113,112,74,-2.40969755024685],[113,112,75,-2.412747237569503],[113,112,76,-2.4173436660930436],[113,112,77,-2.4105894427804673],[113,112,78,-2.399122472289306],[113,112,79,-2.3870967141978943],[113,113,64,-2.487022632680808],[113,113,65,-2.477558514030782],[113,113,66,-2.4706736277263732],[113,113,67,-2.4703692704346],[113,113,68,-2.4699500471844296],[113,113,69,-2.466658614941918],[113,113,70,-2.4680188210708747],[113,113,71,-2.4696919995327327],[113,113,72,-2.47160475007308],[113,113,73,-2.46310912815151],[113,113,74,-2.456491075409189],[113,113,75,-2.4608380220903134],[113,113,76,-2.4658994617213343],[113,113,77,-2.4615943454174922],[113,113,78,-2.4470051617991935],[113,113,79,-2.432896466352228],[113,114,64,-2.537977126229831],[113,114,65,-2.530327113558353],[113,114,66,-2.523941878683002],[113,114,67,-2.524275042319654],[113,114,68,-2.523318535403993],[113,114,69,-2.5194353931296973],[113,114,70,-2.5223642011386636],[113,114,71,-2.5251437583703455],[113,114,72,-2.5229794012395645],[113,114,73,-2.513527712622178],[113,114,74,-2.5073479928743674],[113,114,75,-2.5122337553705947],[113,114,76,-2.5175482648158627],[113,114,77,-2.5133620151041867],[113,114,78,-2.4995797794368775],[113,114,79,-2.4831449126128096],[113,115,64,-2.582956992859125],[113,115,65,-2.5738122194476443],[113,115,66,-2.5711013234921016],[113,115,67,-2.570513882367291],[113,115,68,-2.569172004968997],[113,115,69,-2.569159233861404],[113,115,70,-2.5696175524979252],[113,115,71,-2.573277362602039],[113,115,72,-2.5698258040010504],[113,115,73,-2.5604862006741467],[113,115,74,-2.5552798731113087],[113,115,75,-2.560746242476454],[113,115,76,-2.561249523842669],[113,115,77,-2.5584313116073383],[113,115,78,-2.5466656377668624],[113,115,79,-2.528901734675777],[113,116,64,-2.61989042363109],[113,116,65,-2.6107171131285845],[113,116,66,-2.6066870306601624],[113,116,67,-2.607599616021618],[113,116,68,-2.6063305220815045],[113,116,69,-2.6067966875598785],[113,116,70,-2.6077517452428753],[113,116,71,-2.6128586038751287],[113,116,72,-2.609769304074103],[113,116,73,-2.6008804759531623],[113,116,74,-2.596501343059581],[113,116,75,-2.6010268903087854],[113,116,76,-2.597645836853091],[113,116,77,-2.5958235156653515],[113,116,78,-2.5866546663957832],[113,116,79,-2.567794922499911],[113,117,64,-2.669716127279752],[113,117,65,-2.661557610600634],[113,117,66,-2.655991155420595],[113,117,67,-2.653274915836559],[113,117,68,-2.653265820740514],[113,117,69,-2.6517278398267243],[113,117,70,-2.652993897613673],[113,117,71,-2.658134224803696],[113,117,72,-2.655874480464845],[113,117,73,-2.646402545180644],[113,117,74,-2.642544293182109],[113,117,75,-2.6456914749164873],[113,117,76,-2.6403653483916862],[113,117,77,-2.6367682668478625],[113,117,78,-2.629996268751911],[113,117,79,-2.6097374699741684],[113,118,64,-2.7170459343947333],[113,118,65,-2.7128263277242275],[113,118,66,-2.702329634579392],[113,118,67,-2.699992958202451],[113,118,68,-2.701789753942579],[113,118,69,-2.6987224938362226],[113,118,70,-2.6994063263942456],[113,118,71,-2.7065504727550223],[113,118,72,-2.704254536673474],[113,118,73,-2.6960204259181473],[113,118,74,-2.6922738837653983],[113,118,75,-2.691947119108459],[113,118,76,-2.6891616430624707],[113,118,77,-2.684794621497379],[113,118,78,-2.6780307177588507],[113,118,79,-2.660363270704569],[113,119,64,-2.7552887663999743],[113,119,65,-2.7521584323075383],[113,119,66,-2.7423097024249077],[113,119,67,-2.7381338731859093],[113,119,68,-2.7421716692175995],[113,119,69,-2.741532403879272],[113,119,70,-2.7433464326560317],[113,119,71,-2.7521413481135606],[113,119,72,-2.7491131973259786],[113,119,73,-2.7412717152106714],[113,119,74,-2.7373083861113723],[113,119,75,-2.7371965694094382],[113,119,76,-2.733846931148855],[113,119,77,-2.73096811002829],[113,119,78,-2.726356565797885],[113,119,79,-2.7090323510112717],[113,120,64,-2.8024940848422575],[113,120,65,-2.7983967831533434],[113,120,66,-2.790292118125426],[113,120,67,-2.7860222007860003],[113,120,68,-2.7895060651041286],[113,120,69,-2.789662154446503],[113,120,70,-2.7924622970854154],[113,120,71,-2.7990219083600207],[113,120,72,-2.7964600199111476],[113,120,73,-2.790770160744744],[113,120,74,-2.7861987706472315],[113,120,75,-2.786592877651546],[113,120,76,-2.7813842591210562],[113,120,77,-2.777916828279227],[113,120,78,-2.7745559787655747],[113,120,79,-2.7592518930350693],[113,121,64,-2.84126369906081],[113,121,65,-2.8386771265836535],[113,121,66,-2.834551375634651],[113,121,67,-2.833493790152291],[113,121,68,-2.8334622403924827],[113,121,69,-2.8369072120958805],[113,121,70,-2.8434625155438833],[113,121,71,-2.8468178413147216],[113,121,72,-2.8463131730576094],[113,121,73,-2.841069338410883],[113,121,74,-2.8359238449421382],[113,121,75,-2.83342405904779],[113,121,76,-2.8328259649903584],[113,121,77,-2.8315851654919646],[113,121,78,-2.8296578583432623],[113,121,79,-2.816357349290055],[113,122,64,-2.8928827559148727],[113,122,65,-2.8893911455251646],[113,122,66,-2.8894882687805556],[113,122,67,-2.887415996420666],[113,122,68,-2.8874749877567254],[113,122,69,-2.8901857482324917],[113,122,70,-2.896555339202679],[113,122,71,-2.8970472941970553],[113,122,72,-2.899571496646672],[113,122,73,-2.8960133228815645],[113,122,74,-2.8872271737127924],[113,122,75,-2.8842992878345126],[113,122,76,-2.8857062821514394],[113,122,77,-2.8864832532960056],[113,122,78,-2.8832742327852916],[113,122,79,-2.867909981216602],[113,123,64,-2.9356570605954655],[113,123,65,-2.9355799419689124],[113,123,66,-2.938612910160743],[113,123,67,-2.9371943372293217],[113,123,68,-2.937998793622652],[113,123,69,-2.9401415217270297],[113,123,70,-2.9457472533551123],[113,123,71,-2.9470979382246085],[113,123,72,-2.949222779459784],[113,123,73,-2.9428235208771185],[113,123,74,-2.935636337082774],[113,123,75,-2.9307356564848877],[113,123,76,-2.9327847479665836],[113,123,77,-2.936709438972784],[113,123,78,-2.9335415487750436],[113,123,79,-2.9127513666872833],[113,124,64,-2.979418283936253],[113,124,65,-2.9809178690143763],[113,124,66,-2.9883275247647165],[113,124,67,-2.98846918069021],[113,124,68,-2.9917792949313413],[113,124,69,-2.9945822553327552],[113,124,70,-3.0002880952440036],[113,124,71,-3.0011774244610465],[113,124,72,-3.001235260440757],[113,124,73,-2.9932813918194796],[113,124,74,-2.9870187308074545],[113,124,75,-2.9831251272979356],[113,124,76,-2.986327262552354],[113,124,77,-2.9900472247546985],[113,124,78,-2.9865877078688157],[113,124,79,-2.9651337663201263],[113,125,64,-3.025734719030508],[113,125,65,-3.029439246545488],[113,125,66,-3.0369395888490724],[113,125,67,-3.037040869593629],[113,125,68,-3.0411110655718616],[113,125,69,-3.044381164534516],[113,125,70,-3.050814117712954],[113,125,71,-3.051500669300714],[113,125,72,-3.050498991024562],[113,125,73,-3.041230314866869],[113,125,74,-3.0345517204655565],[113,125,75,-3.0303047930137805],[113,125,76,-3.033988048424965],[113,125,77,-3.0375746956622147],[113,125,78,-3.0348981349604722],[113,125,79,-3.0244179782971226],[113,126,64,-3.0742426729526517],[113,126,65,-3.076611179711723],[113,126,66,-3.0812567249684975],[113,126,67,-3.084109571312535],[113,126,68,-3.089832402689202],[113,126,69,-3.093613795223038],[113,126,70,-3.0989271867582544],[113,126,71,-3.1007208261682635],[113,126,72,-3.0989527213247055],[113,126,73,-3.090469082346376],[113,126,74,-3.0798747563003968],[113,126,75,-3.0793075598198056],[113,126,76,-3.0846037035669647],[113,126,77,-3.087279885721752],[113,126,78,-3.0963250976663748],[113,126,79,-3.115517343039935],[113,127,64,-3.1161039596579565],[113,127,65,-3.1155783530792522],[113,127,66,-3.119172402172283],[113,127,67,-3.1247612978389565],[113,127,68,-3.1337782101389857],[113,127,69,-3.1383000565306065],[113,127,70,-3.14176107538941],[113,127,71,-3.145660188116433],[113,127,72,-3.1471016711058004],[113,127,73,-3.137676637699321],[113,127,74,-3.124978438792632],[113,127,75,-3.12748996617837],[113,127,76,-3.1337671567312273],[113,127,77,-3.1344966344557266],[113,127,78,-3.1345646086402077],[113,127,79,-3.147064004764391],[113,128,64,-3.1642918765558896],[113,128,65,-3.1619796927909727],[113,128,66,-3.1628593335280772],[113,128,67,-3.171990503172129],[113,128,68,-3.1831164688212885],[113,128,69,-3.1845462174984127],[113,128,70,-3.1891959730804476],[113,128,71,-3.1942305811574854],[113,128,72,-3.1954640513750494],[113,128,73,-3.1843051141778225],[113,128,74,-3.1751758884344716],[113,128,75,-3.1773732969636277],[113,128,76,-3.183157445225845],[113,128,77,-3.1800518293125672],[113,128,78,-3.1963892693553846],[113,128,79,-3.2080077204797037],[113,129,64,-3.2087368225740147],[113,129,65,-3.2117446158784975],[113,129,66,-3.2126151119591646],[113,129,67,-3.2260454042469333],[113,129,68,-3.238006416099557],[113,129,69,-3.2420907983398526],[113,129,70,-3.243498367892233],[113,129,71,-3.244737638593273],[113,129,72,-3.2392024600920615],[113,129,73,-3.2252357774575584],[113,129,74,-3.215879864380375],[113,129,75,-3.218101357508171],[113,129,76,-3.220917916759574],[113,129,77,-3.2164415316310224],[113,129,78,-3.2147765516055347],[113,129,79,-3.2177992509800872],[113,130,64,-3.262100482133815],[113,130,65,-3.2652342992151455],[113,130,66,-3.2671256684982635],[113,130,67,-3.2778235997536735],[113,130,68,-3.289343054466586],[113,130,69,-3.2955581957992277],[113,130,70,-3.2956302069907575],[113,130,71,-3.297154109919694],[113,130,72,-3.2912944619555504],[113,130,73,-3.307623753855248],[113,130,74,-3.316431583919105],[113,130,75,-3.347159099319829],[113,130,76,-3.3876438610499635],[113,130,77,-3.4135430023659197],[113,130,78,-3.4060077089667247],[113,130,79,-3.390742478732211],[113,131,64,-3.3098502797642575],[113,131,65,-3.312521114310757],[113,131,66,-3.3167591557013973],[113,131,67,-3.3256967224310734],[113,131,68,-3.334852065198187],[113,131,69,-3.3406351800551257],[113,131,70,-3.34304054444301],[113,131,71,-3.3460925642811463],[113,131,72,-3.344597822042176],[113,131,73,-3.3814422607630092],[113,131,74,-3.3976813819693845],[113,131,75,-3.42692070953154],[113,131,76,-3.457998505149099],[113,131,77,-3.455754645171453],[113,131,78,-3.448176128448341],[113,131,79,-3.4320408081634297],[113,132,64,-3.3449847457746977],[113,132,65,-3.348862923945805],[113,132,66,-3.357068028201928],[113,132,67,-3.3684096413504534],[113,132,68,-3.3788749834419036],[113,132,69,-3.3867353031750653],[113,132,70,-3.3929541249245094],[113,132,71,-3.3977931529087657],[113,132,72,-3.404480445783419],[113,132,73,-3.4276065617437306],[113,132,74,-3.455056235337938],[113,132,75,-3.4720327257255175],[113,132,76,-3.5000423081920298],[113,132,77,-3.4964757817312466],[113,132,78,-3.4885554652640147],[113,132,79,-3.473522065400692],[113,133,64,-3.3971699235640687],[113,133,65,-3.398576095072547],[113,133,66,-3.40165195834616],[113,133,67,-3.4056109918280106],[113,133,68,-3.414843639498105],[113,133,69,-3.4240568727185003],[113,133,70,-3.4339634706168374],[113,133,71,-3.442095045796318],[113,133,72,-3.454684248368057],[113,133,73,-3.4692506641182828],[113,133,74,-3.4852877302596927],[113,133,75,-3.4911472076864647],[113,133,76,-3.5349992956607075],[113,133,77,-3.535844789869492],[113,133,78,-3.5256258119872887],[113,133,79,-3.5125062111935312],[113,134,64,-3.4439136958161107],[113,134,65,-3.446712654511414],[113,134,66,-3.451086303956597],[113,134,67,-3.450441431089602],[113,134,68,-3.461324611201513],[113,134,69,-3.470636585325064],[113,134,70,-3.479899387801655],[113,134,71,-3.488620354187394],[113,134,72,-3.5082811921343424],[113,134,73,-3.518674652451453],[113,134,74,-3.533183254833405],[113,134,75,-3.5326416303429697],[113,134,76,-3.5755947912445585],[113,134,77,-3.5689138679835803],[113,134,78,-3.559982535512475],[113,134,79,-3.547434955077766],[113,135,64,-3.4856806423880027],[113,135,65,-3.4873615618697],[113,135,66,-3.4913155531526487],[113,135,67,-3.49447529655151],[113,135,68,-3.503197100024927],[113,135,69,-3.5145714105657655],[113,135,70,-3.5219978841678072],[113,135,71,-3.5271506180656473],[113,135,72,-3.540482723466738],[113,135,73,-3.5510161908898206],[113,135,74,-3.5549342693605506],[113,135,75,-3.55945503312018],[113,135,76,-3.6002544072686264],[113,135,77,-3.6070573800776704],[113,135,78,-3.598963603299644],[113,135,79,-3.5871538293159313],[113,136,64,-3.534395198862239],[113,136,65,-3.534893117198568],[113,136,66,-3.5390767588928336],[113,136,67,-3.5409782254668225],[113,136,68,-3.5478044885069235],[113,136,69,-3.5599359757406854],[113,136,70,-3.568139618872489],[113,136,71,-3.573190473588453],[113,136,72,-3.593530343223966],[113,136,73,-3.5999904541091032],[113,136,74,-3.604512207774412],[113,136,75,-3.614533337576158],[113,136,76,-3.6564138551980823],[113,136,77,-3.664379138651221],[113,136,78,-3.655183027289819],[113,136,79,-3.6429471355855063],[113,137,64,-3.5822040789165994],[113,137,65,-3.583159205954925],[113,137,66,-3.586048145486426],[113,137,67,-3.58865044809802],[113,137,68,-3.5936713112039014],[113,137,69,-3.6056572056270477],[113,137,70,-3.6139081928043093],[113,137,71,-3.6185190972084724],[113,137,72,-3.643515890634405],[113,137,73,-3.6402319530842426],[113,137,74,-3.637858131988633],[113,137,75,-3.6477936279764287],[113,137,76,-3.680369552900304],[113,137,77,-3.7006811274418],[113,137,78,-3.690894306606716],[113,137,79,-3.6773012595820176],[113,138,64,-3.634991618779441],[113,138,65,-3.6375657468938787],[113,138,66,-3.641136274071533],[113,138,67,-3.6424192209847237],[113,138,68,-3.647546741029325],[113,138,69,-3.656806257718841],[113,138,70,-3.662528520827806],[113,138,71,-3.6697111254458163],[113,138,72,-3.6769203114248414],[113,138,73,-3.6778127507237137],[113,138,74,-3.677203390767342],[113,138,75,-3.691205768599903],[113,138,76,-3.7208968193951093],[113,138,77,-3.753710026284511],[113,138,78,-3.746250273126257],[113,138,79,-3.73149264477309],[113,139,64,-3.6820959720318527],[113,139,65,-3.685084185201905],[113,139,66,-3.689601533686658],[113,139,67,-3.6900749437929714],[113,139,68,-3.696227057153949],[113,139,69,-3.7030714883193214],[113,139,70,-3.707190512272523],[113,139,71,-3.7165394688374542],[113,139,72,-3.729694711866874],[113,139,73,-3.733945209015497],[113,139,74,-3.74252730014696],[113,139,75,-3.7596139977913903],[113,139,76,-3.7846325021546],[113,139,77,-3.79768825840117],[113,139,78,-3.793166415477043],[113,139,79,-3.7788020231069903],[113,140,64,-3.740424605555452],[113,140,65,-3.740686546517383],[113,140,66,-3.7401591501783136],[113,140,67,-3.738200033442428],[113,140,68,-3.7395122213429355],[113,140,69,-3.7428953326721426],[113,140,70,-3.7468412950647023],[113,140,71,-3.7537023447163005],[113,140,72,-3.764750764751883],[113,140,73,-3.7713518229620537],[113,140,74,-3.786939024642369],[113,140,75,-3.8141309479719347],[113,140,76,-3.837458036535494],[113,140,77,-3.845609922669378],[113,140,78,-3.8385543271254527],[113,140,79,-3.826555607612666],[113,141,64,-3.795433077376586],[113,141,65,-3.791080711167119],[113,141,66,-3.787862536022542],[113,141,67,-3.78354601185459],[113,141,68,-3.786080753437355],[113,141,69,-3.7911938788158235],[113,141,70,-3.795457236625891],[113,141,71,-3.80261112705913],[113,141,72,-3.8132392908163655],[113,141,73,-3.8219593258150653],[113,141,74,-3.8420364770085453],[113,141,75,-3.866531677071308],[113,141,76,-3.8832635047404644],[113,141,77,-3.8847623361888317],[113,141,78,-3.876942006518779],[113,141,79,-3.8648956048753607],[113,142,64,-3.844675207510902],[113,142,65,-3.8400346787729833],[113,142,66,-3.8336955492191094],[113,142,67,-3.828927897256782],[113,142,68,-3.8315021283071067],[113,142,69,-3.8349537995651817],[113,142,70,-3.841258519667893],[113,142,71,-3.850263471383993],[113,142,72,-3.8595865303370873],[113,142,73,-3.8674033727404713],[113,142,74,-3.887944485066935],[113,142,75,-3.913086422328574],[113,142,76,-3.92888797536962],[113,142,77,-3.933338753144798],[113,142,78,-3.923948139571743],[113,142,79,-3.9101832952699573],[113,143,64,-3.8845985848069917],[113,143,65,-3.8815190890189286],[113,143,66,-3.8758250340008247],[113,143,67,-3.8705904461547678],[113,143,68,-3.8719411803938053],[113,143,69,-3.877901938192774],[113,143,70,-3.8846220898459944],[113,143,71,-3.8939974661568066],[113,143,72,-3.9011901721172926],[113,143,73,-3.9010619240862194],[113,143,74,-3.920397083045019],[113,143,75,-3.9440016429820464],[113,143,76,-3.972192099151594],[113,143,77,-3.9742907586554503],[113,143,78,-3.966118541723747],[113,143,79,-3.9482959632945835],[113,144,64,-3.933479880181977],[113,144,65,-3.929313344786535],[113,144,66,-3.9228491074885934],[113,144,67,-3.919129869969261],[113,144,68,-3.9199802042831418],[113,144,69,-3.9234548952870973],[113,144,70,-3.9293103678498444],[113,144,71,-3.939133178670122],[113,144,72,-3.9467298820010632],[113,144,73,-3.94347754431588],[113,144,74,-3.968333161613526],[113,144,75,-4.000078558821884],[113,144,76,-4.026688895566874],[113,144,77,-4.028586788132784],[113,144,78,-4.020267111265981],[113,144,79,-4.001255819665604],[113,145,64,-3.970064216253909],[113,145,65,-3.9693134078786625],[113,145,66,-3.9675690709693465],[113,145,67,-3.9643197880234013],[113,145,68,-3.9694258449560245],[113,145,69,-3.9700146500680575],[113,145,70,-3.9739755891071424],[113,145,71,-3.981946230242783],[113,145,72,-3.985858545891961],[113,145,73,-3.9767528648432737],[113,145,74,-3.9709910855222224],[113,145,75,-3.9850157645679256],[113,145,76,-4.009445390603236],[113,145,77,-4.038676132726672],[113,145,78,-4.037779679863226],[113,145,79,-4.011032889062706],[113,146,64,-4.021982851493658],[113,146,65,-4.019996443264143],[113,146,66,-4.01890202425632],[113,146,67,-4.016600969989609],[113,146,68,-4.022499084998039],[113,146,69,-4.023606454145062],[113,146,70,-4.025607621729351],[113,146,71,-4.031409626047022],[113,146,72,-4.036149698692461],[113,146,73,-4.0263932012474575],[113,146,74,-4.021386036261802],[113,146,75,-4.026020620188626],[113,146,76,-4.050603829089518],[113,146,77,-4.07341650983558],[113,146,78,-4.0777879836204765],[113,146,79,-4.052782901077883],[113,147,64,-4.070179938891683],[113,147,65,-4.067781563287635],[113,147,66,-4.066705115008897],[113,147,67,-4.065363138078396],[113,147,68,-4.070203652762864],[113,147,69,-4.0716659639483685],[113,147,70,-4.0737855969712795],[113,147,71,-4.078219479145466],[113,147,72,-4.081044060523993],[113,147,73,-4.074443775635682],[113,147,74,-4.068742161434589],[113,147,75,-4.073122944244843],[113,147,76,-4.0476877848574855],[113,147,77,-4.021914031706788],[113,147,78,-4.001351839464067],[113,147,79,-3.984272335070649],[113,148,64,-4.0952269148631935],[113,148,65,-4.091204055844216],[113,148,66,-4.08373396515589],[113,148,67,-4.078584882572361],[113,148,68,-4.082006084002773],[113,148,69,-4.079976535580307],[113,148,70,-4.0807938877661805],[113,148,71,-4.082016580701658],[113,148,72,-4.083963315003666],[113,148,73,-4.07626290683455],[113,148,74,-4.0707578536632365],[113,148,75,-4.074266597818993],[113,148,76,-4.056233721869246],[113,148,77,-4.04145002983211],[113,148,78,-4.02714331179335],[113,148,79,-4.004669910225086],[113,149,64,-4.146587010378516],[113,149,65,-4.142508638911309],[113,149,66,-4.135897879895871],[113,149,67,-4.1274364206464815],[113,149,68,-4.1305410415466515],[113,149,69,-4.126634372878852],[113,149,70,-4.126801213763845],[113,149,71,-4.129376309511001],[113,149,72,-4.129938322867551],[113,149,73,-4.121643492619549],[113,149,74,-4.119684177506238],[113,149,75,-4.120027826930208],[113,149,76,-4.1093731723618605],[113,149,77,-4.10039800031995],[113,149,78,-4.091087542604553],[113,149,79,-4.068052191167836],[113,150,64,-4.1973524916998075],[113,150,65,-4.19251628741933],[113,150,66,-4.186956373440831],[113,150,67,-4.178064526759333],[113,150,68,-4.176736971896918],[113,150,69,-4.176265680613363],[113,150,70,-4.173924763401005],[113,150,71,-4.17663276998678],[113,150,72,-4.1777175846162615],[113,150,73,-4.169883382029605],[113,150,74,-4.166759848610611],[113,150,75,-4.1662336864404175],[113,150,76,-4.157875665142206],[113,150,77,-4.14781655042162],[113,150,78,-4.13636523748743],[113,150,79,-4.114916513933381],[113,151,64,-4.242235265228817],[113,151,65,-4.237960834913713],[113,151,66,-4.231424065723802],[113,151,67,-4.220672727315047],[113,151,68,-4.221322907664215],[113,151,69,-4.220362308550939],[113,151,70,-4.216491698314216],[113,151,71,-4.220265704637892],[113,151,72,-4.220980111295033],[113,151,73,-4.2158140683982595],[113,151,74,-4.2128673872222695],[113,151,75,-4.213739147067166],[113,151,76,-4.217107906154186],[113,151,77,-4.204956549862986],[113,151,78,-4.187647954288171],[113,151,79,-4.165548417126331],[113,152,64,-4.293754544017989],[113,152,65,-4.288266063712994],[113,152,66,-4.282139703895621],[113,152,67,-4.271700210631818],[113,152,68,-4.269791752605078],[113,152,69,-4.268715780912014],[113,152,70,-4.26669367050557],[113,152,71,-4.267346130276008],[113,152,72,-4.265925006373677],[113,152,73,-4.262963324302117],[113,152,74,-4.258527041473462],[113,152,75,-4.259932796084622],[113,152,76,-4.264325723316251],[113,152,77,-4.253978861072851],[113,152,78,-4.232119519564018],[113,152,79,-4.212768599025938],[113,153,64,-4.3493854240164636],[113,153,65,-4.33901971430777],[113,153,66,-4.32733730512081],[113,153,67,-4.313161402536783],[113,153,68,-4.308247161745713],[113,153,69,-4.309493924956824],[113,153,70,-4.308314254917714],[113,153,71,-4.309995406797862],[113,153,72,-4.311495388625104],[113,153,73,-4.310931920525978],[113,153,74,-4.306497891018765],[113,153,75,-4.308377295150715],[113,153,76,-4.3122961452908815],[113,153,77,-4.300170053644932],[113,153,78,-4.2757567882783585],[113,153,79,-4.254598483508668],[113,154,64,-4.403372634594962],[113,154,65,-4.393258320511486],[113,154,66,-4.379661049866617],[113,154,67,-4.36609341221469],[113,154,68,-4.360027407597313],[113,154,69,-4.35900747845256],[113,154,70,-4.361819155122846],[113,154,71,-4.360415395597427],[113,154,72,-4.363766993338365],[113,154,73,-4.363088329710058],[113,154,74,-4.359900194176013],[113,154,75,-4.3639714910320615],[113,154,76,-4.371558492365834],[113,154,77,-4.357391929422345],[113,154,78,-4.328680033582667],[113,154,79,-4.305415989029611],[113,155,64,-4.451731249830016],[113,155,65,-4.443476679505461],[113,155,66,-4.427568588468459],[113,155,67,-4.413760748054687],[113,155,68,-4.408845148608538],[113,155,69,-4.407196162523185],[113,155,70,-4.407753600151495],[113,155,71,-4.407190433024387],[113,155,72,-4.410406139269284],[113,155,73,-4.410582023130333],[113,155,74,-4.406915241067713],[113,155,75,-4.412434475085195],[113,155,76,-4.419535859472944],[113,155,77,-4.404532668210027],[113,155,78,-4.381759044243889],[113,155,79,-4.3554260886355385],[113,156,64,-4.500730420247915],[113,156,65,-4.4905122056940145],[113,156,66,-4.477380825035405],[113,156,67,-4.465233567883258],[113,156,68,-4.461214281110959],[113,156,69,-4.459671870998565],[113,156,70,-4.460778972773166],[113,156,71,-4.460240720153429],[113,156,72,-4.461202405693401],[113,156,73,-4.459251924741],[113,156,74,-4.456526389809314],[113,156,75,-4.463372705604267],[113,156,76,-4.470151508525121],[113,156,77,-4.451675840976246],[113,156,78,-4.425526916324506],[113,156,79,-4.397318411752325],[113,157,64,-4.542794408758543],[113,157,65,-4.534455536520118],[113,157,66,-4.530179617768158],[113,157,67,-4.524538194091423],[113,157,68,-4.520849035735271],[113,157,69,-4.520729368564287],[113,157,70,-4.517174975070953],[113,157,71,-4.517107678969903],[113,157,72,-4.512257185199566],[113,157,73,-4.5054139642133055],[113,157,74,-4.503525077677157],[113,157,75,-4.512649977371885],[113,157,76,-4.515167446004865],[113,157,77,-4.494286064333744],[113,157,78,-4.472095853590018],[113,157,79,-4.440457553658515],[113,158,64,-4.5877577822968645],[113,158,65,-4.580253432257063],[113,158,66,-4.57795563563353],[113,158,67,-4.573412907666948],[113,158,68,-4.571095952576045],[113,158,69,-4.566945936994291],[113,158,70,-4.563911529561716],[113,158,71,-4.567190396712568],[113,158,72,-4.562331080136709],[113,158,73,-4.553714680296742],[113,158,74,-4.553735569171633],[113,158,75,-4.563421441546765],[113,158,76,-4.562842051633979],[113,158,77,-4.536754701449181],[113,158,78,-4.507862490543362],[113,158,79,-4.477091387558487],[113,159,64,-4.709623684754891],[113,159,65,-4.695390931358258],[113,159,66,-4.687620786471891],[113,159,67,-4.678014933209395],[113,159,68,-4.669029641320284],[113,159,69,-4.6555945243932655],[113,159,70,-4.643653606461923],[113,159,71,-4.6414217393049775],[113,159,72,-4.62652474343515],[113,159,73,-4.609614869423257],[113,159,74,-4.602775754712664],[113,159,75,-4.60254488322636],[113,159,76,-4.596635323301585],[113,159,77,-4.579059534951922],[113,159,78,-4.546633814133755],[113,159,79,-4.515487373829978],[113,160,64,-4.7570301017889225],[113,160,65,-4.745777755186809],[113,160,66,-4.734325999148698],[113,160,67,-4.722601751537642],[113,160,68,-4.715749110393015],[113,160,69,-4.701706380398528],[113,160,70,-4.691394785680172],[113,160,71,-4.687019933790423],[113,160,72,-4.675393427893711],[113,160,73,-4.657956745786903],[113,160,74,-4.652254252761557],[113,160,75,-4.6488812658933325],[113,160,76,-4.644405367562836],[113,160,77,-4.624010242505355],[113,160,78,-4.591366057413455],[113,160,79,-4.557966510388238],[113,161,64,-4.804051652533112],[113,161,65,-4.793396459815822],[113,161,66,-4.7795410040131285],[113,161,67,-4.765709090860461],[113,161,68,-4.758849237698618],[113,161,69,-4.7481393429953025],[113,161,70,-4.739591054367008],[113,161,71,-4.734473836303236],[113,161,72,-4.722951606172141],[113,161,73,-4.706480360311859],[113,161,74,-4.701008542984756],[113,161,75,-4.69654206315196],[113,161,76,-4.692396111029848],[113,161,77,-4.668233355203967],[113,161,78,-4.6322460145270234],[113,161,79,-4.59736865039817],[113,162,64,-4.854107636366828],[113,162,65,-4.845401504945734],[113,162,66,-4.829418225195424],[113,162,67,-4.813489772352385],[113,162,68,-4.806805053587772],[113,162,69,-4.799015444181168],[113,162,70,-4.792274860976872],[113,162,71,-4.786537132995264],[113,162,72,-4.77654841292496],[113,162,73,-4.758972500282631],[113,162,74,-4.750845744954382],[113,162,75,-4.750214937367462],[113,162,76,-4.7438662941225775],[113,162,77,-4.7288952044520425],[113,162,78,-4.690629124126409],[113,162,79,-4.654149647473895],[113,163,64,-4.901227849034087],[113,163,65,-4.888571074004421],[113,163,66,-4.874804037725172],[113,163,67,-4.859023566848226],[113,163,68,-4.851423327544071],[113,163,69,-4.844307758673131],[113,163,70,-4.8375720459649845],[113,163,71,-4.8350297169957255],[113,163,72,-4.824981887244597],[113,163,73,-4.806819318671488],[113,163,74,-4.7953678497135845],[113,163,75,-4.797807836107834],[113,163,76,-4.792308746737454],[113,163,77,-4.776613691599391],[113,163,78,-4.749067172435239],[113,163,79,-4.712081305385351],[113,164,64,-4.923854262529788],[113,164,65,-4.913721679385648],[113,164,66,-4.904755058180135],[113,164,67,-4.893461222047497],[113,164,68,-4.888804807685646],[113,164,69,-4.882380643281149],[113,164,70,-4.880102574678155],[113,164,71,-4.876059615755403],[113,164,72,-4.871113368256738],[113,164,73,-4.851806848763294],[113,164,74,-4.8381563476601315],[113,164,75,-4.840870722116704],[113,164,76,-4.836297931096864],[113,164,77,-4.818550590812314],[113,164,78,-4.792909080192948],[113,164,79,-4.759930912602129],[113,165,64,-4.961076256623983],[113,165,65,-4.951763447482412],[113,165,66,-4.940226684912761],[113,165,67,-4.9315635745294895],[113,165,68,-4.928051178117889],[113,165,69,-4.922464045193665],[113,165,70,-4.918458929882568],[113,165,71,-4.917718332890118],[113,165,72,-4.914666420061444],[113,165,73,-4.900019326403116],[113,165,74,-4.887816716553083],[113,165,75,-4.8882966238978645],[113,165,76,-4.879536922442343],[113,165,77,-4.85913871163912],[113,165,78,-4.8356287335547306],[113,165,79,-4.807589296916343],[113,166,64,-5.005772199934512],[113,166,65,-4.996328800743983],[113,166,66,-4.986851794678375],[113,166,67,-4.9804262209703705],[113,166,68,-4.974294594993105],[113,166,69,-4.969537204836203],[113,166,70,-4.964860942283264],[113,166,71,-4.9660596690871746],[113,166,72,-4.958845233525761],[113,166,73,-4.947373424784369],[113,166,74,-4.938040268802165],[113,166,75,-4.936636664381961],[113,166,76,-4.926890953613554],[113,166,77,-4.907627089693671],[113,166,78,-4.883652058975087],[113,166,79,-4.8561848035156405],[113,167,64,-5.042866349707256],[113,167,65,-5.036672040959446],[113,167,66,-5.027530942723563],[113,167,67,-5.024716896495174],[113,167,68,-5.0170988357199935],[113,167,69,-5.012473349136974],[113,167,70,-5.009078242087454],[113,167,71,-5.010357376240064],[113,167,72,-5.005172656203621],[113,167,73,-4.995629939939731],[113,167,74,-4.986668401365436],[113,167,75,-4.986041433382529],[113,167,76,-4.976305866409617],[113,167,77,-4.958451334390265],[113,167,78,-4.931294306847691],[113,167,79,-4.899617515717136],[113,168,64,-5.089978190710714],[113,168,65,-5.082513512375405],[113,168,66,-5.073322622036903],[113,168,67,-5.071237101766935],[113,168,68,-5.066046604188189],[113,168,69,-5.060822308882263],[113,168,70,-5.05699958796105],[113,168,71,-5.058667057520335],[113,168,72,-5.052738699041837],[113,168,73,-5.042471994453082],[113,168,74,-5.033141700521418],[113,168,75,-5.031879073222527],[113,168,76,-5.023744140452535],[113,168,77,-5.005049156338345],[113,168,78,-4.975195956814519],[113,168,79,-4.944277527048792],[113,169,64,-5.145842554973997],[113,169,65,-5.136152679092944],[113,169,66,-5.127377774408478],[113,169,67,-5.12698049139472],[113,169,68,-5.120381611852674],[113,169,69,-5.116064404078879],[113,169,70,-5.112840852181599],[113,169,71,-5.1125730663046856],[113,169,72,-5.102880415568309],[113,169,73,-5.090155897898496],[113,169,74,-5.080358335132369],[113,169,75,-5.077343562490729],[113,169,76,-5.071133914851749],[113,169,77,-5.052301564192935],[113,169,78,-5.02131254229411],[113,169,79,-4.990438559633439],[113,170,64,-5.197859832301126],[113,170,65,-5.187138310783821],[113,170,66,-5.1812013063067575],[113,170,67,-5.179630080581192],[113,170,68,-5.1702483390555765],[113,170,69,-5.167975003230698],[113,170,70,-5.16591249103754],[113,170,71,-5.165657189038734],[113,170,72,-5.1571883675735455],[113,170,73,-5.14117260154741],[113,170,74,-5.130072463988103],[113,170,75,-5.127156110051786],[113,170,76,-5.122869277260438],[113,170,77,-5.110015827409349],[113,170,78,-5.068469372910247],[113,170,79,-5.03435700216546],[113,171,64,-5.246131025627286],[113,171,65,-5.234617537098576],[113,171,66,-5.228811351924368],[113,171,67,-5.225676231006417],[113,171,68,-5.21895318513195],[113,171,69,-5.21458351071113],[113,171,70,-5.2136999467825165],[113,171,71,-5.2131762711755165],[113,171,72,-5.205435697790838],[113,171,73,-5.187814208079085],[113,171,74,-5.1784452550358235],[113,171,75,-5.174259544361754],[113,171,76,-5.170243607798344],[113,171,77,-5.153039949712502],[113,171,78,-5.111320991212515],[113,171,79,-5.076580184402194],[113,172,64,-5.299765395678676],[113,172,65,-5.288210408782959],[113,172,66,-5.2798156554735085],[113,172,67,-5.2758224608664435],[113,172,68,-5.2709572885655085],[113,172,69,-5.265778836342078],[113,172,70,-5.264854542531985],[113,172,71,-5.261166155083184],[113,172,72,-5.255721128994188],[113,172,73,-5.239684944129035],[113,172,74,-5.230687648280907],[113,172,75,-5.226443845271058],[113,172,76,-5.223940971535677],[113,172,77,-5.196518461582519],[113,172,78,-5.1455586700070715],[113,172,79,-5.103519884413574],[113,173,64,-5.347511779148611],[113,173,65,-5.33699240622458],[113,173,66,-5.329330773791029],[113,173,67,-5.32317637898037],[113,173,68,-5.318723234364344],[113,173,69,-5.315822510846199],[113,173,70,-5.311862419586291],[113,173,71,-5.307137844727224],[113,173,72,-5.301137918627836],[113,173,73,-5.286947417371133],[113,173,74,-5.278565051763313],[113,173,75,-5.273656558386018],[113,173,76,-5.272284364309897],[113,173,77,-5.242382485921054],[113,173,78,-5.195955215729139],[113,173,79,-5.148794423304187],[113,174,64,-5.393767460116409],[113,174,65,-5.384135205263998],[113,174,66,-5.377229168225656],[113,174,67,-5.370560257532322],[113,174,68,-5.367344453725055],[113,174,69,-5.3619678108689355],[113,174,70,-5.3577066389373496],[113,174,71,-5.355113341936006],[113,174,72,-5.348084959404067],[113,174,73,-5.3342363777449835],[113,174,74,-5.324556693429071],[113,174,75,-5.322603554973625],[113,174,76,-5.322153977007852],[113,174,77,-5.290207066747826],[113,174,78,-5.24916974750924],[113,174,79,-5.202486958582909],[113,175,64,-5.431671253375492],[113,175,65,-5.425744726218116],[113,175,66,-5.416284293503007],[113,175,67,-5.411025207781556],[113,175,68,-5.409249654731011],[113,175,69,-5.407441589310106],[113,175,70,-5.400030851302067],[113,175,71,-5.401275232378952],[113,175,72,-5.395887483935091],[113,175,73,-5.381105946858734],[113,175,74,-5.370948299895398],[113,175,75,-5.369299982692758],[113,175,76,-5.3735244323185265],[113,175,77,-5.3707987817639395],[113,175,78,-5.355094713355232],[113,175,79,-5.30995558546818],[113,176,64,-5.475098175926978],[113,176,65,-5.468266873526137],[113,176,66,-5.45846565759337],[113,176,67,-5.453208943438724],[113,176,68,-5.454471474888017],[113,176,69,-5.452386287477652],[113,176,70,-5.446428219308605],[113,176,71,-5.448674458496267],[113,176,72,-5.442945280538553],[113,176,73,-5.43005765540383],[113,176,74,-5.4172574017133135],[113,176,75,-5.417585742888688],[113,176,76,-5.4225875860446875],[113,176,77,-5.419992494432976],[113,176,78,-5.400438788963662],[113,176,79,-5.357294587629042],[113,177,64,-5.523120003542232],[113,177,65,-5.516508136868428],[113,177,66,-5.508337327370779],[113,177,67,-5.500161272144292],[113,177,68,-5.504313847271382],[113,177,69,-5.503180733555871],[113,177,70,-5.497470225868611],[113,177,71,-5.4996836560481395],[113,177,72,-5.492876628336851],[113,177,73,-5.475384112640928],[113,177,74,-5.465633621013112],[113,177,75,-5.466365271712539],[113,177,76,-5.472233369102816],[113,177,77,-5.469527269954402],[113,177,78,-5.450684371200138],[113,177,79,-5.413332980870493],[113,178,64,-5.573975181729579],[113,178,65,-5.564654366286137],[113,178,66,-5.555628788919944],[113,178,67,-5.5496510130263],[113,178,68,-5.5524060488690505],[113,178,69,-5.5531181115526],[113,178,70,-5.550056685430275],[113,178,71,-5.5518024062150335],[113,178,72,-5.544828263185059],[113,178,73,-5.526546528637711],[113,178,74,-5.51623730587375],[113,178,75,-5.517412777856617],[113,178,76,-5.522115432361073],[113,178,77,-5.5211918867850445],[113,178,78,-5.50298391719925],[113,178,79,-5.463979958102621],[113,179,64,-5.620113134103293],[113,179,65,-5.608784534480776],[113,179,66,-5.599584798554331],[113,179,67,-5.593761992431276],[113,179,68,-5.595209707400189],[113,179,69,-5.596353119257371],[113,179,70,-5.596685101087891],[113,179,71,-5.599339217403532],[113,179,72,-5.590648909411723],[113,179,73,-5.57393033956396],[113,179,74,-5.560627726634875],[113,179,75,-5.563388833576294],[113,179,76,-5.569820039949545],[113,179,77,-5.568275393475917],[113,179,78,-5.54828169332653],[113,179,79,-5.509951121934559],[113,180,64,-5.663952572127307],[113,180,65,-5.653959064349636],[113,180,66,-5.644604353578718],[113,180,67,-5.640299379192311],[113,180,68,-5.641246324147031],[113,180,69,-5.643507135984876],[113,180,70,-5.646535684621315],[113,180,71,-5.648185541872985],[113,180,72,-5.6417671976488375],[113,180,73,-5.626511042435766],[113,180,74,-5.615029069843087],[113,180,75,-5.617369864137527],[113,180,76,-5.6237171628296405],[113,180,77,-5.622077995150344],[113,180,78,-5.602832751756773],[113,180,79,-5.564560572877042],[113,181,64,-5.702005654997978],[113,181,65,-5.692665803935506],[113,181,66,-5.6813408749671925],[113,181,67,-5.676972939921442],[113,181,68,-5.675246666981658],[113,181,69,-5.676921898792357],[113,181,70,-5.682401221183106],[113,181,71,-5.6861627337813285],[113,181,72,-5.685451883341227],[113,181,73,-5.672381321133774],[113,181,74,-5.6639730421650345],[113,181,75,-5.665373108602585],[113,181,76,-5.670029994335576],[113,181,77,-5.659828895055318],[113,181,78,-5.637368962565413],[113,181,79,-5.599267019195244],[113,182,64,-5.747269621400067],[113,182,65,-5.739874030287056],[113,182,66,-5.728139738642173],[113,182,67,-5.723143344516059],[113,182,68,-5.722916675107781],[113,182,69,-5.721228544144364],[113,182,70,-5.726537833902694],[113,182,71,-5.731187739130292],[113,182,72,-5.731637268143853],[113,182,73,-5.7168220249286605],[113,182,74,-5.709718358790996],[113,182,75,-5.714162474745905],[113,182,76,-5.71495000433384],[113,182,77,-5.701521094911508],[113,182,78,-5.676030863152251],[113,182,79,-5.639761853993613],[113,183,64,-5.787983564788071],[113,183,65,-5.780686789635767],[113,183,66,-5.770876651545614],[113,183,67,-5.765149841720159],[113,183,68,-5.766670742105912],[113,183,69,-5.766135264703275],[113,183,70,-5.770464584579364],[113,183,71,-5.776959764730281],[113,183,72,-5.7783978988825675],[113,183,73,-5.76454235038593],[113,183,74,-5.757696578605435],[113,183,75,-5.762135295908035],[113,183,76,-5.76128203992889],[113,183,77,-5.746414192784278],[113,183,78,-5.720754501914667],[113,183,79,-5.68458824690135],[113,184,64,-5.833400817643496],[113,184,65,-5.8253980597392685],[113,184,66,-5.817257048737104],[113,184,67,-5.812679706388876],[113,184,68,-5.813056304834708],[113,184,69,-5.813602247238746],[113,184,70,-5.818336152410968],[113,184,71,-5.8260167368717894],[113,184,72,-5.826773028945398],[113,184,73,-5.813066954591904],[113,184,74,-5.804419731890233],[113,184,75,-5.8073324830380955],[113,184,76,-5.8049252938036595],[113,184,77,-5.792127344331687],[113,184,78,-5.767564957342827],[113,184,79,-5.7293589561331295],[113,185,64,-5.880115420658015],[113,185,65,-5.871879174740416],[113,185,66,-5.862496599407758],[113,185,67,-5.860268402033606],[113,185,68,-5.859422562195232],[113,185,69,-5.860057706017521],[113,185,70,-5.86655322641237],[113,185,71,-5.8739252101252895],[113,185,72,-5.875251659498291],[113,185,73,-5.860073503766451],[113,185,74,-5.848781169377834],[113,185,75,-5.8507041420939006],[113,185,76,-5.846915947149417],[113,185,77,-5.834082103026366],[113,185,78,-5.810391911680166],[113,185,79,-5.768684833171462],[113,186,64,-5.933662212334228],[113,186,65,-5.9225595419552315],[113,186,66,-5.916445567911927],[113,186,67,-5.912403778847224],[113,186,68,-5.909898717371523],[113,186,69,-5.911869570189266],[113,186,70,-5.919453204029157],[113,186,71,-5.92392608752719],[113,186,72,-5.924537320302158],[113,186,73,-5.908761411594253],[113,186,74,-5.895085396440542],[113,186,75,-5.898696437729614],[113,186,76,-5.898129814743238],[113,186,77,-5.884708109632223],[113,186,78,-5.864067093326267],[113,186,79,-5.822305566084005],[113,187,64,-5.980536105621935],[113,187,65,-5.9727053340988645],[113,187,66,-5.964546186772016],[113,187,67,-5.959219304625343],[113,187,68,-5.957586039057755],[113,187,69,-5.957595592641469],[113,187,70,-5.963872063364213],[113,187,71,-5.968842068769299],[113,187,72,-5.968467436425691],[113,187,73,-5.953912427921292],[113,187,74,-5.941140523041871],[113,187,75,-5.944537942086534],[113,187,76,-5.947039059424985],[113,187,77,-5.934048954783394],[113,187,78,-5.914465953132547],[113,187,79,-5.876557860782132],[113,188,64,-6.027762421700867],[113,188,65,-6.021045361628699],[113,188,66,-6.01189859014176],[113,188,67,-6.002804324905898],[113,188,68,-6.000184092929619],[113,188,69,-5.998787049343162],[113,188,70,-6.004301354050896],[113,188,71,-6.010856401921515],[113,188,72,-6.007436835916112],[113,188,73,-5.9898590019187266],[113,188,74,-5.979907170587198],[113,188,75,-5.984736311823463],[113,188,76,-5.987914703573246],[113,188,77,-5.977260788997846],[113,188,78,-5.955093969749627],[113,188,79,-5.91920217955368],[113,189,64,-6.071160661687254],[113,189,65,-6.068561209555017],[113,189,66,-6.063232981692071],[113,189,67,-6.058066429070362],[113,189,68,-6.05558358089942],[113,189,69,-6.0533557907859805],[113,189,70,-6.057482050083266],[113,189,71,-6.062403516810357],[113,189,72,-6.055533356969445],[113,189,73,-6.036111741160362],[113,189,74,-6.0249316956527945],[113,189,75,-6.024220074937371],[113,189,76,-6.025228809643753],[113,189,77,-6.017677014525309],[113,189,78,-5.993549566142096],[113,189,79,-5.957953132598745],[113,190,64,-6.119902102218395],[113,190,65,-6.114184512032619],[113,190,66,-6.111100597679026],[113,190,67,-6.106976527373805],[113,190,68,-6.104130785731696],[113,190,69,-6.1029764467473315],[113,190,70,-6.102358128390073],[113,190,71,-6.108465891318753],[113,190,72,-6.1017359816037855],[113,190,73,-6.081649190346776],[113,190,74,-6.068523356085814],[113,190,75,-6.067463239380145],[113,190,76,-6.066707471528746],[113,190,77,-6.062379864977492],[113,190,78,-6.037107027147036],[113,190,79,-6.000625933973979],[113,191,64,-6.164449795018498],[113,191,65,-6.157482698376869],[113,191,66,-6.156657414062095],[113,191,67,-6.153998518416779],[113,191,68,-6.149874532240554],[113,191,69,-6.14707036483167],[113,191,70,-6.146390199481188],[113,191,71,-6.150647409677489],[113,191,72,-6.143370745411898],[113,191,73,-6.126158482190883],[113,191,74,-6.1138607957385664],[113,191,75,-6.112214074634413],[113,191,76,-6.109106690192465],[113,191,77,-6.104807528013532],[113,191,78,-6.080877380038133],[113,191,79,-6.040202938208091],[113,192,64,-6.212555284882977],[113,192,65,-6.207342868914384],[113,192,66,-6.204062561210886],[113,192,67,-6.200606114913372],[113,192,68,-6.197740551002372],[113,192,69,-6.193249408368416],[113,192,70,-6.1923051522144155],[113,192,71,-6.193595789435491],[113,192,72,-6.184851221844821],[113,192,73,-6.167215538416268],[113,192,74,-6.1572286953801765],[113,192,75,-6.1562501678583095],[113,192,76,-6.1517286475738615],[113,192,77,-6.14677141129018],[113,192,78,-6.121406691686277],[113,192,79,-6.0817927251620505],[113,193,64,-6.2714864134271116],[113,193,65,-6.260529752954952],[113,193,66,-6.2467085913041815],[113,193,67,-6.2413589631712325],[113,193,68,-6.235328285382989],[113,193,69,-6.232188735128585],[113,193,70,-6.232433929874207],[113,193,71,-6.234751029364985],[113,193,72,-6.224094354585742],[113,193,73,-6.209594432814925],[113,193,74,-6.201623725420793],[113,193,75,-6.1981572337348725],[113,193,76,-6.196031108271454],[113,193,77,-6.188484200823507],[113,193,78,-6.1696231279755045],[113,193,79,-6.134105631422013],[113,194,64,-6.3274157897394],[113,194,65,-6.3141972150098455],[113,194,66,-6.2976164120669225],[113,194,67,-6.288797802773571],[113,194,68,-6.283228786729649],[113,194,69,-6.279932035101396],[113,194,70,-6.281206438551615],[113,194,71,-6.282255592290166],[113,194,72,-6.272825471448917],[113,194,73,-6.257646518324722],[113,194,74,-6.249754596036194],[113,194,75,-6.246142084187537],[113,194,76,-6.243396591214015],[113,194,77,-6.2349985946371085],[113,194,78,-6.214338721776374],[113,194,79,-6.175401582815584],[113,195,64,-6.375188879033535],[113,195,65,-6.361642796723501],[113,195,66,-6.345863697112332],[113,195,67,-6.3333864386212975],[113,195,68,-6.32688903561442],[113,195,69,-6.3231566666013],[113,195,70,-6.32366696820273],[113,195,71,-6.324923295690508],[113,195,72,-6.3165115222539905],[113,195,73,-6.304798717262791],[113,195,74,-6.293858254918566],[113,195,75,-6.293664696677605],[113,195,76,-6.28934971288978],[113,195,77,-6.285243325075394],[113,195,78,-6.263326017847742],[113,195,79,-6.224996673287787],[113,196,64,-6.415695312773402],[113,196,65,-6.397725729552357],[113,196,66,-6.377040693453791],[113,196,67,-6.357441880872488],[113,196,68,-6.344069455253257],[113,196,69,-6.338448684482093],[113,196,70,-6.337157926052776],[113,196,71,-6.337273169097138],[113,196,72,-6.3285915859431086],[113,196,73,-6.317977931505263],[113,196,74,-6.30666190735222],[113,196,75,-6.307073015232396],[113,196,76,-6.304532104526331],[113,196,77,-6.30190615625611],[113,196,78,-6.282837555262849],[113,196,79,-6.248027702537111],[113,197,64,-6.463121389514799],[113,197,65,-6.444109533151711],[113,197,66,-6.425157275557298],[113,197,67,-6.4037374388421],[113,197,68,-6.38873663506582],[113,197,69,-6.3818007959623175],[113,197,70,-6.379724972192846],[113,197,71,-6.380212341412391],[113,197,72,-6.373608323016568],[113,197,73,-6.361499163416723],[113,197,74,-6.351934970728308],[113,197,75,-6.351926135096917],[113,197,76,-6.347466527685258],[113,197,77,-6.34432534783157],[113,197,78,-6.323051701312792],[113,197,79,-6.288978106274927],[113,198,64,-6.5120686323397],[113,198,65,-6.493175900473814],[113,198,66,-6.471407923923944],[113,198,67,-6.447510742691098],[113,198,68,-6.4348377884167345],[113,198,69,-6.425980321164657],[113,198,70,-6.423711361367849],[113,198,71,-6.425222097987839],[113,198,72,-6.417104274323627],[113,198,73,-6.404952738017284],[113,198,74,-6.39552584327946],[113,198,75,-6.39408539736823],[113,198,76,-6.392926745989634],[113,198,77,-6.392293041926842],[113,198,78,-6.37370578136791],[113,198,79,-6.341568263415167],[113,199,64,-6.560264638548284],[113,199,65,-6.541083198312761],[113,199,66,-6.516436528787025],[113,199,67,-6.492009269903203],[113,199,68,-6.479487525043844],[113,199,69,-6.473245440446102],[113,199,70,-6.46779189352707],[113,199,71,-6.470208460500739],[113,199,72,-6.463710800815664],[113,199,73,-6.447347524666983],[113,199,74,-6.435092633563695],[113,199,75,-6.438065576149025],[113,199,76,-6.436794671774153],[113,199,77,-6.435153134165294],[113,199,78,-6.415572879195568],[113,199,79,-6.382513683166029],[113,200,64,-6.610817323741456],[113,200,65,-6.590271150579203],[113,200,66,-6.5662345751477815],[113,200,67,-6.541293236332333],[113,200,68,-6.525708396555894],[113,200,69,-6.518522875333777],[113,200,70,-6.512643052412601],[113,200,71,-6.514527567751791],[113,200,72,-6.5081989909671],[113,200,73,-6.4921675455098224],[113,200,74,-6.477713833850491],[113,200,75,-6.4791562021435345],[113,200,76,-6.48304345174033],[113,200,77,-6.4840873420834715],[113,200,78,-6.466166838089964],[113,200,79,-6.435232386869857],[113,201,64,-6.652231498475906],[113,201,65,-6.630312535582838],[113,201,66,-6.608134316767257],[113,201,67,-6.585436683850574],[113,201,68,-6.565756455880822],[113,201,69,-6.557674868388257],[113,201,70,-6.552636594265027],[113,201,71,-6.553429854612799],[113,201,72,-6.5494874717088205],[113,201,73,-6.5353262646247625],[113,201,74,-6.526029894672162],[113,201,75,-6.529315707589151],[113,201,76,-6.536403607738295],[113,201,77,-6.530633893015186],[113,201,78,-6.510993518885645],[113,201,79,-6.476710636479982],[113,202,64,-6.7045418498940945],[113,202,65,-6.6835290193755315],[113,202,66,-6.663143550901382],[113,202,67,-6.638687468174633],[113,202,68,-6.618861806573623],[113,202,69,-6.6065340587727714],[113,202,70,-6.598900625091186],[113,202,71,-6.5999220826173515],[113,202,72,-6.596134565715723],[113,202,73,-6.583753010342191],[113,202,74,-6.573855509044058],[113,202,75,-6.57467497579015],[113,202,76,-6.5787808519749165],[113,202,77,-6.577547879494224],[113,202,78,-6.558875720804582],[113,202,79,-6.528561332501176],[113,203,64,-6.755317913947074],[113,203,65,-6.732172436371281],[113,203,66,-6.7103015465640645],[113,203,67,-6.6885484342766],[113,203,68,-6.669637584435553],[113,203,69,-6.653697082391231],[113,203,70,-6.644251148884957],[113,203,71,-6.64497497605838],[113,203,72,-6.641709767289426],[113,203,73,-6.628537045406447],[113,203,74,-6.619225682176905],[113,203,75,-6.621477972253722],[113,203,76,-6.626128441526655],[113,203,77,-6.631948333605479],[113,203,78,-6.6124346525867574],[113,203,79,-6.5866436191950655],[113,204,64,-6.806734983648054],[113,204,65,-6.780917184449076],[113,204,66,-6.757409468347671],[113,204,67,-6.7355938800636626],[113,204,68,-6.719348725747255],[113,204,69,-6.700644239549626],[113,204,70,-6.687573952524682],[113,204,71,-6.688993387094279],[113,204,72,-6.685395699774809],[113,204,73,-6.673677707291091],[113,204,74,-6.662875136968909],[113,204,75,-6.666771147719376],[113,204,76,-6.6728073591683925],[113,204,77,-6.683571130937353],[113,204,78,-6.6645000015767435],[113,204,79,-6.637113515493733],[113,205,64,-6.866241643104814],[113,205,65,-6.840355068297688],[113,205,66,-6.816700794963905],[113,205,67,-6.794359476398269],[113,205,68,-6.777843261549142],[113,205,69,-6.760204565893917],[113,205,70,-6.746866810616301],[113,205,71,-6.740875714480825],[113,205,72,-6.730289238456928],[113,205,73,-6.7159521716782],[113,205,74,-6.705954382811102],[113,205,75,-6.711677677720057],[113,205,76,-6.71527866040323],[113,205,77,-6.729346297558773],[113,205,78,-6.713568722580071],[113,205,79,-6.682446542526592],[113,206,64,-6.91606793037137],[113,206,65,-6.890326717166042],[113,206,66,-6.863438147437817],[113,206,67,-6.842113924571498],[113,206,68,-6.823813580044259],[113,206,69,-6.808385061192683],[113,206,70,-6.794591257120596],[113,206,71,-6.786222902453977],[113,206,72,-6.773771705567121],[113,206,73,-6.758242011473671],[113,206,74,-6.753179534007369],[113,206,75,-6.760822514459103],[113,206,76,-6.7664119933843585],[113,206,77,-6.782724265515178],[113,206,78,-6.770387635407717],[113,206,79,-6.737095353809004],[113,207,64,-6.966795252047555],[113,207,65,-6.9400383924242925],[113,207,66,-6.911137195265579],[113,207,67,-6.887148690911846],[113,207,68,-6.869893896289506],[113,207,69,-6.853806178109832],[113,207,70,-6.840970551802519],[113,207,71,-6.833797739069521],[113,207,72,-6.819081836850192],[113,207,73,-6.800895250156179],[113,207,74,-6.793884625561175],[113,207,75,-6.80208485610803],[113,207,76,-6.808303569852105],[113,207,77,-6.8206264215301005],[113,207,78,-6.809255185215236],[113,207,79,-6.772894452331527],[113,208,64,-7.015817719062672],[113,208,65,-6.987305405264991],[113,208,66,-6.956932622442633],[113,208,67,-6.932825284121264],[113,208,68,-6.914694175306173],[113,208,69,-6.900063242577451],[113,208,70,-6.8836965265909695],[113,208,71,-6.87776355775495],[113,208,72,-6.864835949101339],[113,208,73,-6.848698759792028],[113,208,74,-6.840587559507759],[113,208,75,-6.84696671949608],[113,208,76,-6.8531683241446135],[113,208,77,-6.865448193001914],[113,208,78,-6.8557263910608475],[113,208,79,-6.819927051465513],[113,209,64,-7.065652160773027],[113,209,65,-7.03438253072591],[113,209,66,-7.002336967832205],[113,209,67,-6.979078948569479],[113,209,68,-6.959694276454305],[113,209,69,-6.943300787697913],[113,209,70,-6.92897283447195],[113,209,71,-6.922802142938901],[113,209,72,-6.910844208272146],[113,209,73,-6.893655266991482],[113,209,74,-6.886147434312072],[113,209,75,-6.897207088411622],[113,209,76,-6.904810312525016],[113,209,77,-6.91349825007293],[113,209,78,-6.901646018910254],[113,209,79,-6.862423131005355],[113,210,64,-7.114946860229266],[113,210,65,-7.085480973340735],[113,210,66,-7.053906645321526],[113,210,67,-7.026938841440485],[113,210,68,-7.008602546153654],[113,210,69,-6.992544792778289],[113,210,70,-6.978777115770681],[113,210,71,-6.97117622334359],[113,210,72,-6.960960677440325],[113,210,73,-6.942907897144841],[113,210,74,-6.933918675060647],[113,210,75,-6.943225894981208],[113,210,76,-6.948390262284769],[113,210,77,-6.954399495978649],[113,210,78,-6.939623066298551],[113,210,79,-6.903255065860414],[113,211,64,-7.162181163334141],[113,211,65,-7.132159202321003],[113,211,66,-7.1007854111658],[113,211,67,-7.074541660760637],[113,211,68,-7.055471113985815],[113,211,69,-7.038335144993986],[113,211,70,-7.024097159028208],[113,211,71,-7.016964065326714],[113,211,72,-7.008201035709843],[113,211,73,-6.990212866702182],[113,211,74,-6.979162712988926],[113,211,75,-6.99227329899161],[113,211,76,-6.996138609908195],[113,211,77,-7.001816829785467],[113,211,78,-6.990442567237794],[113,211,79,-6.961149654913286],[113,212,64,-7.200907705677429],[113,212,65,-7.1728625617095245],[113,212,66,-7.143791924411876],[113,212,67,-7.12077905308545],[113,212,68,-7.105659027074262],[113,212,69,-7.095549984294179],[113,212,70,-7.082924677493826],[113,212,71,-7.077762593586639],[113,212,72,-7.070351112524423],[113,212,73,-7.0506284676310225],[113,212,74,-7.037810527520575],[113,212,75,-7.044693881857767],[113,212,76,-7.050952074953738],[113,212,77,-7.048158255808533],[113,212,78,-7.034687877010029],[113,212,79,-7.001808551349615],[113,213,64,-7.254355411865619],[113,213,65,-7.219188463164435],[113,213,66,-7.18582965423238],[113,213,67,-7.160478945634927],[113,213,68,-7.141213227912283],[113,213,69,-7.131082965319564],[113,213,70,-7.122863808616374],[113,213,71,-7.1222089133075],[113,213,72,-7.118797484925113],[113,213,73,-7.10540330760046],[113,213,74,-7.094992164319222],[113,213,75,-7.098775493410822],[113,213,76,-7.104187906286736],[113,213,77,-7.100218824406122],[113,213,78,-7.083066524104667],[113,213,79,-7.049015770072123],[113,214,64,-7.3000120698855975],[113,214,65,-7.264202292320792],[113,214,66,-7.231453308502663],[113,214,67,-7.205428306709197],[113,214,68,-7.186490867786036],[113,214,69,-7.17782283565475],[113,214,70,-7.169442010514695],[113,214,71,-7.167273165921207],[113,214,72,-7.16340582185677],[113,214,73,-7.151699258348674],[113,214,74,-7.142693530831947],[113,214,75,-7.145758652386333],[113,214,76,-7.152191638758302],[113,214,77,-7.1516522681411505],[113,214,78,-7.133458078984172],[113,214,79,-7.098692528495937],[113,215,64,-7.345975080071251],[113,215,65,-7.313803933077753],[113,215,66,-7.279582744691254],[113,215,67,-7.253424878314332],[113,215,68,-7.234821523673518],[113,215,69,-7.225988711736568],[113,215,70,-7.215862153847013],[113,215,71,-7.212977914623184],[113,215,72,-7.209962640430243],[113,215,73,-7.19791206609428],[113,215,74,-7.18812293952709],[113,215,75,-7.18872775106673],[113,215,76,-7.194379445680456],[113,215,77,-7.194721449001383],[113,215,78,-7.175180240536713],[113,215,79,-7.139005678380345],[113,216,64,-7.390064773247377],[113,216,65,-7.358535165346829],[113,216,66,-7.327179224796417],[113,216,67,-7.3015139996740555],[113,216,68,-7.282139688024756],[113,216,69,-7.271424876792505],[113,216,70,-7.262249461648088],[113,216,71,-7.257766745329388],[113,216,72,-7.256484493203425],[113,216,73,-7.242482921489323],[113,216,74,-7.230069079089092],[113,216,75,-7.230569230666136],[113,216,76,-7.24001857020675],[113,216,77,-7.2436065392937214],[113,216,78,-7.227744588043599],[113,216,79,-7.1869283415129885],[113,217,64,-7.427222612196822],[113,217,65,-7.4017886947420095],[113,217,66,-7.376865916017652],[113,217,67,-7.356329534301569],[113,217,68,-7.336934949953221],[113,217,69,-7.324934460857481],[113,217,70,-7.314553075741096],[113,217,71,-7.306329343709953],[113,217,72,-7.298628341344032],[113,217,73,-7.275855106288281],[113,217,74,-7.261625731432091],[113,217,75,-7.264200733204227],[113,217,76,-7.274021209962073],[113,217,77,-7.286784974311125],[113,217,78,-7.279965646904222],[113,217,79,-7.230896023114411],[113,218,64,-7.478063346293179],[113,218,65,-7.44991258829409],[113,218,66,-7.42685870802823],[113,218,67,-7.408852757445865],[113,218,68,-7.387070700676508],[113,218,69,-7.374517043393251],[113,218,70,-7.363676267497797],[113,218,71,-7.354771587847389],[113,218,72,-7.344862916277996],[113,218,73,-7.321916677919845],[113,218,74,-7.305719791982825],[113,218,75,-7.306625373445688],[113,218,76,-7.319289284962177],[113,218,77,-7.339354602822148],[113,218,78,-7.336456680457469],[113,218,79,-7.286533981251995],[113,219,64,-7.525714449641119],[113,219,65,-7.496740507497541],[113,219,66,-7.472548306013112],[113,219,67,-7.453420658100023],[113,219,68,-7.433056958076611],[113,219,69,-7.417696222819597],[113,219,70,-7.406468350239132],[113,219,71,-7.401559454696722],[113,219,72,-7.389063255833863],[113,219,73,-7.363799181921737],[113,219,74,-7.34642258988093],[113,219,75,-7.352718527350111],[113,219,76,-7.370942136591893],[113,219,77,-7.39136329564964],[113,219,78,-7.392894403169023],[113,219,79,-7.3427634044159245],[113,220,64,-7.571282036194215],[113,220,65,-7.539741720479797],[113,220,66,-7.512120697851277],[113,220,67,-7.490473249872269],[113,220,68,-7.470272487179046],[113,220,69,-7.453427900670108],[113,220,70,-7.4391756891767535],[113,220,71,-7.434302616952355],[113,220,72,-7.422371568600584],[113,220,73,-7.397266581773222],[113,220,74,-7.378955461629037],[113,220,75,-7.397792761454325],[113,220,76,-7.418600773038038],[113,220,77,-7.457233852321643],[113,220,78,-7.460917876245138],[113,220,79,-7.411655115097446],[113,221,64,-7.61647650576235],[113,221,65,-7.585879119414838],[113,221,66,-7.558253416908334],[113,221,67,-7.534727563883688],[113,221,68,-7.513005340044825],[113,221,69,-7.495497936802709],[113,221,70,-7.482945761533044],[113,221,71,-7.476345584343005],[113,221,72,-7.464655901645754],[113,221,73,-7.441313557255192],[113,221,74,-7.448088152463036],[113,221,75,-7.485446355436816],[113,221,76,-7.498512677915973],[113,221,77,-7.53404173138736],[113,221,78,-7.508193717856273],[113,221,79,-7.460348976224005],[113,222,64,-7.658360149258281],[113,222,65,-7.631614311157028],[113,222,66,-7.601680233100373],[113,222,67,-7.578442351255126],[113,222,68,-7.557194245509519],[113,222,69,-7.5401723639810685],[113,222,70,-7.525687654683124],[113,222,71,-7.515963635066966],[113,222,72,-7.5042108472644555],[113,222,73,-7.481563465230063],[113,222,74,-7.50648672255497],[113,222,75,-7.543507847627583],[113,222,76,-7.5522262303564025],[113,222,77,-7.572423601624098],[113,222,78,-7.544854176301002],[113,222,79,-7.4963116394893055],[113,223,64,-7.706888405658537],[113,223,65,-7.679200750149144],[113,223,66,-7.652486697875106],[113,223,67,-7.6277019892726905],[113,223,68,-7.605155602984624],[113,223,69,-7.586878745953358],[113,223,70,-7.570731804529524],[113,223,71,-7.55926080331111],[113,223,72,-7.543845160275978],[113,223,73,-7.525196157441758],[113,223,74,-7.571822341770347],[113,223,75,-7.616765388478639],[113,223,76,-7.6207159010350916],[113,223,77,-7.618864764419752],[113,223,78,-7.588452655090709],[113,223,79,-7.540573723407677],[113,224,64,-7.749198417011954],[113,224,65,-7.723367299263277],[113,224,66,-7.697707647516377],[113,224,67,-7.6731434436427985],[113,224,68,-7.649367453341446],[113,224,69,-7.630457397649151],[113,224,70,-7.614898239651902],[113,224,71,-7.6007586914933345],[113,224,72,-7.585663376604613],[113,224,73,-7.569249461841326],[113,224,74,-7.620451743049316],[113,224,75,-7.670197995962151],[113,224,76,-7.676438215028737],[113,224,77,-7.666317777420998],[113,224,78,-7.636666350811028],[113,224,79,-7.587338033598185],[113,225,64,-7.80032532923056],[113,225,65,-7.772736842040714],[113,225,66,-7.745082397103177],[113,225,67,-7.716074990170965],[113,225,68,-7.690374879491497],[113,225,69,-7.6725232666982395],[113,225,70,-7.660195492997838],[113,225,71,-7.645954204913356],[113,225,72,-7.6331730145589765],[113,225,73,-7.622528209557108],[113,225,74,-7.674033234213989],[113,225,75,-7.717906879111429],[113,225,76,-7.725683665094164],[113,225,77,-7.7150399510410175],[113,225,78,-7.686312403204564],[113,225,79,-7.635678904235989],[113,226,64,-7.848629860891968],[113,226,65,-7.821394313598749],[113,226,66,-7.792271242517587],[113,226,67,-7.7652881435546215],[113,226,68,-7.740713053194742],[113,226,69,-7.721785463346506],[113,226,70,-7.708910709298689],[113,226,71,-7.693985923898064],[113,226,72,-7.679848104985773],[113,226,73,-7.664537692726072],[113,226,74,-7.706620015509926],[113,226,75,-7.753352244416467],[113,226,76,-7.7713338841300805],[113,226,77,-7.762812827764642],[113,226,78,-7.732829162743643],[113,226,79,-7.6804975633035255],[113,227,64,-7.893252320403174],[113,227,65,-7.868141991772865],[113,227,66,-7.837097919890483],[113,227,67,-7.811880255943662],[113,227,68,-7.7868215959127465],[113,227,69,-7.7664385519508565],[113,227,70,-7.751481105774535],[113,227,71,-7.7380942617315736],[113,227,72,-7.7250597816192625],[113,227,73,-7.709282180451735],[113,227,74,-7.758916084815783],[113,227,75,-7.8116997326884885],[113,227,76,-7.826961231584944],[113,227,77,-7.816559547868209],[113,227,78,-7.788686747684966],[113,227,79,-7.738602505845536],[113,228,64,-7.927126994743656],[113,228,65,-7.899264664219792],[113,228,66,-7.86743809945865],[113,228,67,-7.841066767389512],[113,228,68,-7.818279242819558],[113,228,69,-7.799188362286697],[113,228,70,-7.780371908940442],[113,228,71,-7.767049887796446],[113,228,72,-7.7535890945263946],[113,228,73,-7.737293711817622],[113,228,74,-7.797090965344474],[113,228,75,-7.8535720854077224],[113,228,76,-7.868407497086806],[113,228,77,-7.8574582882374155],[113,228,78,-7.832749827516933],[113,228,79,-7.782949862173541],[113,229,64,-7.9624321665311],[113,229,65,-7.936161773928861],[113,229,66,-7.90785722541274],[113,229,67,-7.8865592054719516],[113,229,68,-7.866648826808741],[113,229,69,-7.847544438833627],[113,229,70,-7.8244507900007045],[113,229,71,-7.806723924690035],[113,229,72,-7.7920794823669945],[113,229,73,-7.8152816586706475],[113,229,74,-7.903074239889356],[113,229,75,-7.917512558052366],[113,229,76,-7.9180073932825685],[113,229,77,-7.90786696349504],[113,229,78,-7.884781394312302],[113,229,79,-7.834924054659915],[113,230,64,-8.00594509821146],[113,230,65,-7.980237892412665],[113,230,66,-7.954525445070368],[113,230,67,-7.930913581086853],[113,230,68,-7.912270402090689],[113,230,69,-7.894825769668617],[113,230,70,-7.870881442182141],[113,230,71,-7.850993490035726],[113,230,72,-7.836076635446892],[113,230,73,-7.861892550598432],[113,230,74,-7.951036274118656],[113,230,75,-7.963136384927229],[113,230,76,-7.960999483005037],[113,230,77,-7.952104641315285],[113,230,78,-7.926277036762048],[113,230,79,-7.877586212925486],[113,231,64,-8.06072831851633],[113,231,65,-8.033442211637075],[113,231,66,-8.002792017219804],[113,231,67,-7.980718002885116],[113,231,68,-7.960693510174161],[113,231,69,-7.942387295168897],[113,231,70,-7.918104968324314],[113,231,71,-7.900898779591828],[113,231,72,-7.882359671159533],[113,231,73,-7.869213506356448],[113,231,74,-7.957492439649876],[113,231,75,-8.006831693316586],[113,231,76,-8.006857465529377],[113,231,77,-7.998880015964594],[113,231,78,-7.973041395976713],[113,231,79,-7.924901399599783],[113,232,64,-8.109629436835174],[113,232,65,-8.081757268741024],[113,232,66,-8.048169704870446],[113,232,67,-8.024245679451392],[113,232,68,-8.005348632424273],[113,232,69,-7.987228650680863],[113,232,70,-7.965362510786924],[113,232,71,-7.94818683812479],[113,232,72,-7.927939239696811],[113,232,73,-7.911182557336161],[113,232,74,-8.006113495517564],[113,232,75,-8.05623196982267],[113,232,76,-8.054356544717601],[113,232,77,-8.044724482527538],[113,232,78,-8.019763961564552],[113,232,79,-7.970151652581122],[113,233,64,-8.155120437026115],[113,233,65,-8.129970828305286],[113,233,66,-8.094931008615736],[113,233,67,-8.068332379032631],[113,233,68,-8.051759522552045],[113,233,69,-8.032662663252122],[113,233,70,-8.01159310586102],[113,233,71,-7.995693794803796],[113,233,72,-7.974517345732379],[113,233,73,-7.9477331769814725],[113,233,74,-8.047200793825851],[113,233,75,-8.107576599327832],[113,233,76,-8.105185228691445],[113,233,77,-8.096167234351046],[113,233,78,-8.06944284364877],[113,233,79,-8.019650506060515],[113,234,64,-8.207497067727216],[113,234,65,-8.17978109402936],[113,234,66,-8.14294755352964],[113,234,67,-8.117905653032912],[113,234,68,-8.102718410810024],[113,234,69,-8.0838804933336],[113,234,70,-8.06336336570784],[113,234,71,-8.045238700567634],[113,234,72,-8.025957166084355],[113,234,73,-7.998241090854147],[113,234,74,-8.069310634452336],[113,234,75,-8.156507642092988],[113,234,76,-8.161210793812614],[113,234,77,-8.15465771612604],[113,234,78,-8.127672523015166],[113,234,79,-8.076290277271305],[113,235,64,-8.254551466335203],[113,235,65,-8.22640570536026],[113,235,66,-8.190245676017573],[113,235,67,-8.165471995897352],[113,235,68,-8.149226284185088],[113,235,69,-8.130485602685376],[113,235,70,-8.109591396106712],[113,235,71,-8.092412159836433],[113,235,72,-8.07529918282699],[113,235,73,-8.04647463180989],[113,235,74,-8.028209567958445],[113,235,75,-8.091412617487473],[113,235,76,-8.141256926109719],[113,235,77,-8.154973960498111],[113,235,78,-8.121627365838322],[113,235,79,-8.131401280158872],[113,236,64,-8.322768277197003],[113,236,65,-8.289092398733601],[113,236,66,-8.253048980238624],[113,236,67,-8.227990127220195],[113,236,68,-8.209108176483927],[113,236,69,-8.190961770408412],[113,236,70,-8.169579532632675],[113,236,71,-8.15194855007653],[113,236,72,-8.135755315521891],[113,236,73,-8.109131414690395],[113,236,74,-8.090379991162427],[113,236,75,-8.141635431767446],[113,236,76,-8.193567503515316],[113,236,77,-8.195973696078152],[113,236,78,-8.169672932213894],[113,236,79,-8.185139724766655],[113,237,64,-8.376452621572433],[113,237,65,-8.336647553004424],[113,237,66,-8.29783662546961],[113,237,67,-8.26879931124542],[113,237,68,-8.247696994589528],[113,237,69,-8.228500129440802],[113,237,70,-8.205784247720144],[113,237,71,-8.19123286149079],[113,237,72,-8.17497490322787],[113,237,73,-8.150506790022654],[113,237,74,-8.153357837865668],[113,237,75,-8.225682655543164],[113,237,76,-8.274250917113307],[113,237,77,-8.26796460126504],[113,237,78,-8.26337472571995],[113,237,79,-8.234765421493133],[113,238,64,-8.423959903737876],[113,238,65,-8.384068200670429],[113,238,66,-8.346798599223657],[113,238,67,-8.316356453977312],[113,238,68,-8.296540239600837],[113,238,69,-8.275286230231359],[113,238,70,-8.253524931583556],[113,238,71,-8.237719816783805],[113,238,72,-8.22346231406582],[113,238,73,-8.199592840539129],[113,238,74,-8.195441902222546],[113,238,75,-8.260347535328284],[113,238,76,-8.31120900476972],[113,238,77,-8.31564441435803],[113,238,78,-8.328985553676201],[113,238,79,-8.277615575435789],[113,239,64,-8.47900886993491],[113,239,65,-8.4395518947604],[113,239,66,-8.399803560073389],[113,239,67,-8.369881844289788],[113,239,68,-8.347092788600053],[113,239,69,-8.327791073657817],[113,239,70,-8.303890732741138],[113,239,71,-8.288339207767134],[113,239,72,-8.275794154800682],[113,239,73,-8.249827026682167],[113,239,74,-8.231161540586024],[113,239,75,-8.275125431970464],[113,239,76,-8.325285289986766],[113,239,77,-8.335410418724125],[113,239,78,-8.372683377456992],[113,239,79,-8.319844422369165],[113,240,64,-8.525633053236126],[113,240,65,-8.489358361343308],[113,240,66,-8.449671354004543],[113,240,67,-8.418635214974161],[113,240,68,-8.396327366229878],[113,240,69,-8.374835817827682],[113,240,70,-8.352559907898954],[113,240,71,-8.338062249058355],[113,240,72,-8.323517085751186],[113,240,73,-8.300179022462936],[113,240,74,-8.277556314192749],[113,240,75,-8.311842281265694],[113,240,76,-8.359226009513895],[113,240,77,-8.380796196967106],[113,240,78,-8.416832308391108],[113,240,79,-8.365367084085946],[113,241,64,-8.564793034753462],[113,241,65,-8.535832197938712],[113,241,66,-8.502688082763619],[113,241,67,-8.477193630968854],[113,241,68,-8.454501302556286],[113,241,69,-8.434008622655936],[113,241,70,-8.412088472564777],[113,241,71,-8.397683501188876],[113,241,72,-8.380986879417618],[113,241,73,-8.35745360445554],[113,241,74,-8.339796606572541],[113,241,75,-8.336129737697135],[113,241,76,-8.327463732410633],[113,241,77,-8.312216164074997],[113,241,78,-8.275582573809377],[113,241,79,-8.232263365434072],[113,242,64,-8.61345964816372],[113,242,65,-8.584452779442197],[113,242,66,-8.55247427574209],[113,242,67,-8.526416240985482],[113,242,68,-8.506064150254861],[113,242,69,-8.484460446068834],[113,242,70,-8.464476499685155],[113,242,71,-8.451462693894069],[113,242,72,-8.431430245960831],[113,242,73,-8.40596722015667],[113,242,74,-8.391972131458486],[113,242,75,-8.388882340507195],[113,242,76,-8.380520073437221],[113,242,77,-8.364764906720456],[113,242,78,-8.328502314194129],[113,242,79,-8.280153935563321],[113,243,64,-8.660122743426111],[113,243,65,-8.630545313816539],[113,243,66,-8.597704577148496],[113,243,67,-8.571492626540692],[113,243,68,-8.551125057911891],[113,243,69,-8.5315408547365],[113,243,70,-8.510596034706959],[113,243,71,-8.498097635915155],[113,243,72,-8.479143502186492],[113,243,73,-8.45216334116137],[113,243,74,-8.438264377611603],[113,243,75,-8.435768197949665],[113,243,76,-8.429662548594417],[113,243,77,-8.414171545269802],[113,243,78,-8.379144443455406],[113,243,79,-8.326391193762001],[113,244,64,-8.69884692778908],[113,244,65,-8.673622428815161],[113,244,66,-8.646250250777662],[113,244,67,-8.622988573905275],[113,244,68,-8.605039494123469],[113,244,69,-8.589870117394492],[113,244,70,-8.571736379780495],[113,244,71,-8.560918281930073],[113,244,72,-8.54325013473422],[113,244,73,-8.51765671028684],[113,244,74,-8.503575742351705],[113,244,75,-8.503077258918804],[113,244,76,-8.501156134511964],[113,244,77,-8.48757234558734],[113,244,78,-8.451864904390854],[113,244,79,-8.392246285544967],[113,245,64,-8.742683125777484],[113,245,65,-8.71776847973312],[113,245,66,-8.689927849516488],[113,245,67,-8.668581765788225],[113,245,68,-8.648493132319508],[113,245,69,-8.634636249340153],[113,245,70,-8.618147838722642],[113,245,71,-8.606274702154082],[113,245,72,-8.58801153187346],[113,245,73,-8.563766831510444],[113,245,74,-8.55060008569482],[113,245,75,-8.550669455793182],[113,245,76,-8.550377833472934],[113,245,77,-8.537913344135772],[113,245,78,-8.501693784287166],[113,245,79,-8.447529496390844],[113,246,64,-8.787590563120883],[113,246,65,-8.759882118894735],[113,246,66,-8.732600583158101],[113,246,67,-8.711287917060888],[113,246,68,-8.692775791581223],[113,246,69,-8.678972122528434],[113,246,70,-8.666026402293458],[113,246,71,-8.653351795670249],[113,246,72,-8.636675812304603],[113,246,73,-8.6131863846083],[113,246,74,-8.596439906848463],[113,246,75,-8.59847191224051],[113,246,76,-8.599287644844864],[113,246,77,-8.585187170280886],[113,246,78,-8.548400922795798],[113,246,79,-8.487646982735157],[113,247,64,-8.841985373480842],[113,247,65,-8.812702331951655],[113,247,66,-8.78331008291407],[113,247,67,-8.761198460900946],[113,247,68,-8.740697566934289],[113,247,69,-8.72635472984076],[113,247,70,-8.71704305054304],[113,247,71,-8.704454084615424],[113,247,72,-8.687637957532662],[113,247,73,-8.66109595785868],[113,247,74,-8.643067779745518],[113,247,75,-8.643837186438141],[113,247,76,-8.6456677997454],[113,247,77,-8.632281447821004],[113,247,78,-8.593893116782242],[113,247,79,-8.533103864765886],[113,248,64,-8.889289322484961],[113,248,65,-8.858291647236003],[113,248,66,-8.828572043388117],[113,248,67,-8.806029516953988],[113,248,68,-8.78557997820193],[113,248,69,-8.773500135119177],[113,248,70,-8.763062144908112],[113,248,71,-8.752115579239463],[113,248,72,-8.735658251653229],[113,248,73,-8.708863659948737],[113,248,74,-8.689288926294513],[113,248,75,-8.68940010285211],[113,248,76,-8.691821389886675],[113,248,77,-8.679766691428874],[113,248,78,-8.642556430530547],[113,248,79,-8.583803421306905],[113,249,64,-8.92509277516797],[113,249,65,-8.895244105405489],[113,249,66,-8.866531040785818],[113,249,67,-8.841979349280516],[113,249,68,-8.825324795261029],[113,249,69,-8.81042379413649],[113,249,70,-8.800130279211281],[113,249,71,-8.788951387733698],[113,249,72,-8.771722097257399],[113,249,73,-8.745631263888516],[113,249,74,-8.727041421980337],[113,249,75,-8.725549174904062],[113,249,76,-8.729756105220329],[113,249,77,-8.723422948319007],[113,249,78,-8.69599023963196],[113,249,79,-8.672127945836191],[113,250,64,-8.972917587680685],[113,250,65,-8.942193435096565],[113,250,66,-8.91545176506205],[113,250,67,-8.892060387899923],[113,250,68,-8.875099169965647],[113,250,69,-8.859994777709119],[113,250,70,-8.84965035736241],[113,250,71,-8.836750297674694],[113,250,72,-8.820619760036491],[113,250,73,-8.795090711093895],[113,250,74,-8.778533536331144],[113,250,75,-8.77652563291724],[113,250,76,-8.781645378545749],[113,250,77,-8.773717506346179],[113,250,78,-8.754871880292571],[113,250,79,-8.74525282098026],[113,251,64,-9.018236973170755],[113,251,65,-8.987468782020123],[113,251,66,-8.961205754860533],[113,251,67,-8.939354848861944],[113,251,68,-8.922601095158317],[113,251,69,-8.907416055980367],[113,251,70,-8.893559220494298],[113,251,71,-8.88243003307043],[113,251,72,-8.869688081236013],[113,251,73,-8.844716501336132],[113,251,74,-8.827944933141662],[113,251,75,-8.826562275112916],[113,251,76,-8.830393454737258],[113,251,77,-8.822634143551301],[113,251,78,-8.803482855776512],[113,251,79,-8.797614004451475],[113,252,64,-9.061986792112847],[113,252,65,-9.026667592878985],[113,252,66,-8.997383199131392],[113,252,67,-8.976134434887168],[113,252,68,-8.955902950590081],[113,252,69,-8.938140964482313],[113,252,70,-8.923464778470052],[113,252,71,-8.914198986831408],[113,252,72,-8.900326281555383],[113,252,73,-8.877608337939964],[113,252,74,-8.856928373408735],[113,252,75,-8.857655324398133],[113,252,76,-8.86164227841677],[113,252,77,-8.855635284072576],[113,252,78,-8.84074672506154],[113,252,79,-8.841330710368231],[113,253,64,-9.120831252468866],[113,253,65,-9.084337353339269],[113,253,66,-9.05114787456895],[113,253,67,-9.029126565758737],[113,253,68,-9.011248544468392],[113,253,69,-8.99391640613551],[113,253,70,-8.97898772323553],[113,253,71,-8.97062038888571],[113,253,72,-8.957982386159665],[113,253,73,-8.934730914944343],[113,253,74,-8.915865527081934],[113,253,75,-8.916080234865769],[113,253,76,-8.917199116334396],[113,253,77,-8.906790227139092],[113,253,78,-8.895436395357933],[113,253,79,-8.888649775403788],[113,254,64,-9.085279263992941],[113,254,65,-9.057758162257276],[113,254,66,-9.028773802025684],[113,254,67,-9.011443932823923],[113,254,68,-9.002682978850494],[113,254,69,-8.99579874801692],[113,254,70,-8.98981712566136],[113,254,71,-8.98785885983258],[113,254,72,-8.982215885490017],[113,254,73,-8.968124401084067],[113,254,74,-8.960233003061708],[113,254,75,-8.972335331913024],[113,254,76,-8.98277501252094],[113,254,77,-8.981882015196016],[113,254,78,-8.971049077029445],[113,254,79,-8.95927722566473],[113,255,64,-9.12988991633076],[113,255,65,-9.102716650162723],[113,255,66,-9.0724011305482],[113,255,67,-9.055025096121023],[113,255,68,-9.048459626527853],[113,255,69,-9.041272192427288],[113,255,70,-9.03592531052237],[113,255,71,-9.035013540222112],[113,255,72,-9.030263399637843],[113,255,73,-9.013436302646117],[113,255,74,-9.005906252655596],[113,255,75,-9.018357624877511],[113,255,76,-9.029436708077762],[113,255,77,-9.026601169767606],[113,255,78,-9.01162118677881],[113,255,79,-9.006181202546777],[113,256,64,-9.175076139905036],[113,256,65,-9.1453687963257],[113,256,66,-9.116944126562881],[113,256,67,-9.098428858848623],[113,256,68,-9.092333365294206],[113,256,69,-9.085930609725626],[113,256,70,-9.082316730747094],[113,256,71,-9.081662868874744],[113,256,72,-9.074090934093736],[113,256,73,-9.058111579510351],[113,256,74,-9.052610045587276],[113,256,75,-9.06351063950597],[113,256,76,-9.075108653284593],[113,256,77,-9.072710673004334],[113,256,78,-9.056914166500595],[113,256,79,-9.062213637485705],[113,257,64,-9.218335096740416],[113,257,65,-9.189442408438328],[113,257,66,-9.161477227349186],[113,257,67,-9.144051280941984],[113,257,68,-9.135912169909371],[113,257,69,-9.129936352085169],[113,257,70,-9.126063416036876],[113,257,71,-9.124491021263166],[113,257,72,-9.117954404826719],[113,257,73,-9.10271547345653],[113,257,74,-9.098305067845862],[113,257,75,-9.107805471587403],[113,257,76,-9.119480335230532],[113,257,77,-9.119462102959552],[113,257,78,-9.129826656233687],[113,257,79,-9.144242830384385],[113,258,64,-9.260737920021016],[113,258,65,-9.234373188742172],[113,258,66,-9.208930862894146],[113,258,67,-9.192428859337737],[113,258,68,-9.184378772067147],[113,258,69,-9.176574341028187],[113,258,70,-9.171257592422455],[113,258,71,-9.169776970269556],[113,258,72,-9.16560343890152],[113,258,73,-9.150737187644266],[113,258,74,-9.143728323622769],[113,258,75,-9.152912970061625],[113,258,76,-9.16425694419724],[113,258,77,-9.165412197385264],[113,258,78,-9.179819062704073],[113,258,79,-9.190886422259661],[113,259,64,-9.30504414928593],[113,259,65,-9.27662169541121],[113,259,66,-9.253803452268649],[113,259,67,-9.238754287236132],[113,259,68,-9.22948281737968],[113,259,69,-9.221660898949688],[113,259,70,-9.215999995547124],[113,259,71,-9.211205170912958],[113,259,72,-9.2107052710773],[113,259,73,-9.19808156886865],[113,259,74,-9.190500758165934],[113,259,75,-9.196664652153393],[113,259,76,-9.210483521905287],[113,259,77,-9.211171124008363],[113,259,78,-9.214789311033133],[113,259,79,-9.23843403431065],[113,260,64,-9.386410270457212],[113,260,65,-9.359908498937116],[113,260,66,-9.3412032452599],[113,260,67,-9.331221980431067],[113,260,68,-9.324446636299713],[113,260,69,-9.321302349591464],[113,260,70,-9.317899486662046],[113,260,71,-9.314531687576896],[113,260,72,-9.313486777952495],[113,260,73,-9.302027457464241],[113,260,74,-9.29440932936301],[113,260,75,-9.300534781705425],[113,260,76,-9.312254927107514],[113,260,77,-9.310289847443213],[113,260,78,-9.304365434337852],[113,260,79,-9.300741605820193],[113,261,64,-9.42567173110945],[113,261,65,-9.401363176473664],[113,261,66,-9.38645758205064],[113,261,67,-9.377754237016902],[113,261,68,-9.373729396954277],[113,261,69,-9.372640227943975],[113,261,70,-9.370071722871526],[113,261,71,-9.363965603853723],[113,261,72,-9.35565607733973],[113,261,73,-9.339937328929365],[113,261,74,-9.330148703684841],[113,261,75,-9.335885145180265],[113,261,76,-9.35062266927549],[113,261,77,-9.357190638465722],[113,261,78,-9.352583214240438],[113,261,79,-9.349372766876042],[113,262,64,-9.478810470562323],[113,262,65,-9.454616315533107],[113,262,66,-9.436806294453286],[113,262,67,-9.426427259519063],[113,262,68,-9.419747619582674],[113,262,69,-9.420081851903069],[113,262,70,-9.418500557276031],[113,262,71,-9.412998259729429],[113,262,72,-9.40341115153371],[113,262,73,-9.387003397980834],[113,262,74,-9.376768902731428],[113,262,75,-9.38247628558841],[113,262,76,-9.396490546527502],[113,262,77,-9.400620873487027],[113,262,78,-9.411059042783581],[113,262,79,-9.417507778394134],[113,263,64,-9.522062542638407],[113,263,65,-9.501226933015394],[113,263,66,-9.47998406427899],[113,263,67,-9.467171411351126],[113,263,68,-9.4614271066411],[113,263,69,-9.463412828912181],[113,263,70,-9.462652385334236],[113,263,71,-9.45672638477944],[113,263,72,-9.450244179844798],[113,263,73,-9.432644610312602],[113,263,74,-9.424510040227391],[113,263,75,-9.432568265228648],[113,263,76,-9.444977922333237],[113,263,77,-9.446607875459499],[113,263,78,-9.45349641479835],[113,263,79,-9.463783450701783],[113,264,64,-9.565497373523243],[113,264,65,-9.54315567973138],[113,264,66,-9.52063565634261],[113,264,67,-9.507133297593805],[113,264,68,-9.503519451025692],[113,264,69,-9.503312434638337],[113,264,70,-9.505877012125776],[113,264,71,-9.502166706431982],[113,264,72,-9.494352322733466],[113,264,73,-9.478855117681924],[113,264,74,-9.46987163186365],[113,264,75,-9.480748233352589],[113,264,76,-9.492590173701778],[113,264,77,-9.491180851370512],[113,264,78,-9.506050810152127],[113,264,79,-9.516595635960398],[113,265,64,-9.614292691575134],[113,265,65,-9.587904307098084],[113,265,66,-9.559568417562978],[113,265,67,-9.543104562585194],[113,265,68,-9.53976331251578],[113,265,69,-9.53654614206151],[113,265,70,-9.541507031118723],[113,265,71,-9.546566429311156],[113,265,72,-9.546098453907739],[113,265,73,-9.532752212016003],[113,265,74,-9.525755521620802],[113,265,75,-9.573924052309842],[113,265,76,-9.614270150642396],[113,265,77,-9.637407396894549],[113,265,78,-9.63762986561821],[113,265,79,-9.571273757722645],[113,266,64,-9.660351031778076],[113,266,65,-9.635510601451445],[113,266,66,-9.60611598847159],[113,266,67,-9.588491190326835],[113,266,68,-9.586465671775],[113,266,69,-9.582554670232504],[113,266,70,-9.585873990202161],[113,266,71,-9.593870091620216],[113,266,72,-9.594290364436173],[113,266,73,-9.58138845663655],[113,266,74,-9.575030360661405],[113,266,75,-9.610925773647915],[113,266,76,-9.651427371112467],[113,266,77,-9.686733329260854],[113,266,78,-9.681842367822314],[113,266,79,-9.614582569185343],[113,267,64,-9.704520449740835],[113,267,65,-9.678266427745909],[113,267,66,-9.649080289350751],[113,267,67,-9.631979956554972],[113,267,68,-9.629712033596386],[113,267,69,-9.625475105831],[113,267,70,-9.62584822431456],[113,267,71,-9.636730610054673],[113,267,72,-9.640637588505824],[113,267,73,-9.625303469552223],[113,267,74,-9.621264189511127],[113,267,75,-9.661872404323557],[113,267,76,-9.705042943198029],[113,267,77,-9.744593378680424],[113,267,78,-9.73355175556738],[113,267,79,-9.664837836751229],[113,268,64,-9.744859510046169],[113,268,65,-9.715846479715985],[113,268,66,-9.682754745797107],[113,268,67,-9.664720684694275],[113,268,68,-9.661719376816047],[113,268,69,-9.656574442802457],[113,268,70,-9.654299270102904],[113,268,71,-9.663030625106453],[113,268,72,-9.669179032157372],[113,268,73,-9.651736062889407],[113,268,74,-9.652412749095385],[113,268,75,-9.715459213013876],[113,268,76,-9.758372021190278],[113,268,77,-9.794914797447468],[113,268,78,-9.757997400535757],[113,268,79,-9.690280431368656],[113,269,64,-9.787318343228486],[113,269,65,-9.75624326731853],[113,269,66,-9.726461417567767],[113,269,67,-9.711127320811904],[113,269,68,-9.707536906120477],[113,269,69,-9.70271984104855],[113,269,70,-9.698073667505755],[113,269,71,-9.7061123995074],[113,269,72,-9.71115873522918],[113,269,73,-9.699511372542052],[113,269,74,-9.700772577950556],[113,269,75,-9.768177088162483],[113,269,76,-9.812655049003611],[113,269,77,-9.839316817275384],[113,269,78,-9.802862479803304],[113,269,79,-9.734403973064703],[113,270,64,-9.83486609868399],[113,270,65,-9.802012111640657],[113,270,66,-9.775628045450128],[113,270,67,-9.760205810202077],[113,270,68,-9.757277077886789],[113,270,69,-9.751075672734641],[113,270,70,-9.743110704956951],[113,270,71,-9.749639870126751],[113,270,72,-9.756674045797231],[113,270,73,-9.745571720570245],[113,270,74,-9.755149168812553],[113,270,75,-9.818871330954467],[113,270,76,-9.859017052019112],[113,270,77,-9.876064317537592],[113,270,78,-9.841250737883822],[113,270,79,-9.775649927971996],[113,271,64,-9.875618768075528],[113,271,65,-9.845239481872298],[113,271,66,-9.818799999267608],[113,271,67,-9.806556583877905],[113,271,68,-9.801647674517698],[113,271,69,-9.795091152442525],[113,271,70,-9.786348148118844],[113,271,71,-9.792397018655567],[113,271,72,-9.799122777913885],[113,271,73,-9.788626415492818],[113,271,74,-9.799076571103294],[113,271,75,-9.865199913185076],[113,271,76,-9.900858516974337],[113,271,77,-9.916554644927153],[113,271,78,-9.881747190225274],[113,271,79,-9.817008916405394],[113,272,64,-9.917068215677546],[113,272,65,-9.888757939516479],[113,272,66,-9.862633760649379],[113,272,67,-9.85078586789375],[113,272,68,-9.845274408795934],[113,272,69,-9.839371425175159],[113,272,70,-9.831606152739353],[113,272,71,-9.837236419355046],[113,272,72,-9.8410619390553],[113,272,73,-9.830329548313689],[113,272,74,-9.846875040497196],[113,272,75,-9.916594224344369],[113,272,76,-9.955222462081965],[113,272,77,-9.962839928617138],[113,272,78,-9.925075449492537],[113,272,79,-9.861301495038436],[113,273,64,-9.966597854658065],[113,273,65,-9.935230837365436],[113,273,66,-9.903728703687259],[113,273,67,-9.888783472324345],[113,273,68,-9.882035453035845],[113,273,69,-9.875517462418747],[113,273,70,-9.871622116064408],[113,273,71,-9.880515277950451],[113,273,72,-9.88107305873425],[113,273,73,-9.869081674217902],[113,273,74,-9.875396909197917],[113,273,75,-9.900101252229277],[113,273,76,-9.908823326843041],[113,273,77,-9.901130183751308],[113,273,78,-9.870354092088983],[113,273,79,-9.80939828258636],[113,274,64,-10.013999513203672],[113,274,65,-9.981380271811195],[113,274,66,-9.950944905738243],[113,274,67,-9.934144743775283],[113,274,68,-9.925647931846067],[113,274,69,-9.922704082464003],[113,274,70,-9.919884159688621],[113,274,71,-9.927079440632228],[113,274,72,-9.928275729908282],[113,274,73,-9.913379800015123],[113,274,74,-9.915378003589693],[113,274,75,-9.943840061736914],[113,274,76,-9.950660268462853],[113,274,77,-9.944027585399487],[113,274,78,-9.915424917560594],[113,274,79,-9.854144000127306],[113,275,64,-10.055611901164518],[113,275,65,-10.024008414441928],[113,275,66,-9.995740083373539],[113,275,67,-9.978917908195092],[113,275,68,-9.969550834516216],[113,275,69,-9.966662695284285],[113,275,70,-9.966040039217248],[113,275,71,-9.972400283667262],[113,275,72,-9.971426260273049],[113,275,73,-9.957005198494382],[113,275,74,-9.961347951471208],[113,275,75,-9.992372296705865],[113,275,76,-10.002092937806347],[113,275,77,-9.995215223355585],[113,275,78,-9.965077543772875],[113,275,79,-9.905009015885986],[113,276,64,-10.088261537426414],[113,276,65,-10.058340397239764],[113,276,66,-10.032642670271049],[113,276,67,-10.013274984513997],[113,276,68,-10.002852491017899],[113,276,69,-9.999430038786263],[113,276,70,-9.99823816636308],[113,276,71,-10.005668606140986],[113,276,72,-10.003112139592709],[113,276,73,-9.991232163502882],[113,276,74,-9.993342059651981],[113,276,75,-10.034050951591897],[113,276,76,-10.05376042436547],[113,276,77,-10.04972162410445],[113,276,78,-10.016778479092581],[113,276,79,-9.956043786199778],[113,277,64,-10.12195138662659],[113,277,65,-10.10115869758647],[113,277,66,-10.08022480874364],[113,277,67,-10.062613518194663],[113,277,68,-10.056491877466643],[113,277,69,-10.050920974925823],[113,277,70,-10.050912778627929],[113,277,71,-10.052216664294216],[113,277,72,-10.04935125141508],[113,277,73,-10.035447799631806],[113,277,74,-10.037542367567859],[113,277,75,-10.079585685183265],[113,277,76,-10.099550926122156],[113,277,77,-10.092905469052019],[113,277,78,-10.060473598032802],[113,277,79,-9.996499708884832],[113,278,64,-10.168948621665397],[113,278,65,-10.148908157582621],[113,278,66,-10.127287249299867],[113,278,67,-10.111339857855086],[113,278,68,-10.10459552883525],[113,278,69,-10.097643253008723],[113,278,70,-10.097771637900143],[113,278,71,-10.095888784682419],[113,278,72,-10.094241770288566],[113,278,73,-10.081502112469707],[113,278,74,-10.08249218133439],[113,278,75,-10.123547125754218],[113,278,76,-10.140559811242221],[113,278,77,-10.132404235304199],[113,278,78,-10.101655347300838],[113,278,79,-10.036113209918572],[113,279,64,-10.208808464322544],[113,279,65,-10.189481416837717],[113,279,66,-10.169702672952583],[113,279,67,-10.158016939680316],[113,279,68,-10.148099094471478],[113,279,69,-10.140760941794023],[113,279,70,-10.140561389032726],[113,279,71,-10.138677639585445],[113,279,72,-10.138522727395104],[113,279,73,-10.12650614917917],[113,279,74,-10.126080882413806],[113,279,75,-10.168492118085776],[113,279,76,-10.1838090891186],[113,279,77,-10.17433804713032],[113,279,78,-10.145059494822354],[113,279,79,-10.0767452807306],[113,280,64,-10.248362863238174],[113,280,65,-10.231210113199777],[113,280,66,-10.21083996095328],[113,280,67,-10.201324955213426],[113,280,68,-10.192127518586412],[113,280,69,-10.18402107692313],[113,280,70,-10.182943206846174],[113,280,71,-10.184890172703287],[113,280,72,-10.180756528363743],[113,280,73,-10.16999005889856],[113,280,74,-10.174374477809305],[113,280,75,-10.213635940192763],[113,280,76,-10.22683586648779],[113,280,77,-10.217079520483363],[113,280,78,-10.190203595559316],[113,280,79,-10.122342290138509],[113,281,64,-10.29176516652977],[113,281,65,-10.273431158463204],[113,281,66,-10.253586003515919],[113,281,67,-10.243527009589366],[113,281,68,-10.235803502315838],[113,281,69,-10.22761819099508],[113,281,70,-10.22730942273004],[113,281,71,-10.228375319008261],[113,281,72,-10.225389116620546],[113,281,73,-10.212807096048312],[113,281,74,-10.234265228758826],[113,281,75,-10.273056224719673],[113,281,76,-10.280704552951748],[113,281,77,-10.270930204249312],[113,281,78,-10.239854280318395],[113,281,79,-10.17571044338833],[113,282,64,-10.338022235662628],[113,282,65,-10.31634816618122],[113,282,66,-10.298744058047527],[113,282,67,-10.288355376377043],[113,282,68,-10.28145350873981],[113,282,69,-10.27565096892131],[113,282,70,-10.272771925476581],[113,282,71,-10.272974786943285],[113,282,72,-10.271311432026536],[113,282,73,-10.258518776174583],[113,282,74,-10.275015485044213],[113,282,75,-10.317545326364616],[113,282,76,-10.328148014094275],[113,282,77,-10.315967719219223],[113,282,78,-10.283511489655957],[113,282,79,-10.22088259272775],[113,283,64,-10.383455678930861],[113,283,65,-10.357430524223812],[113,283,66,-10.341546983611673],[113,283,67,-10.331496978389158],[113,283,68,-10.325506587662062],[113,283,69,-10.320736633761367],[113,283,70,-10.315321229143308],[113,283,71,-10.316885871262915],[113,283,72,-10.315843821653495],[113,283,73,-10.305205598104608],[113,283,74,-10.334328706708419],[113,283,75,-10.379660344651231],[113,283,76,-10.378762823390069],[113,283,77,-10.369314047263163],[113,283,78,-10.33406768982922],[113,283,79,-10.270355357505222],[113,284,64,-10.4437811925473],[113,284,65,-10.414131160713753],[113,284,66,-10.395549016400494],[113,284,67,-10.382063268539946],[113,284,68,-10.37103818109514],[113,284,69,-10.362259859605231],[113,284,70,-10.357838692419008],[113,284,71,-10.358047431359289],[113,284,72,-10.359122690007908],[113,284,73,-10.348096289954603],[113,284,74,-10.37676854244974],[113,284,75,-10.427591813151054],[113,284,76,-10.424322370627218],[113,284,77,-10.417312420544148],[113,284,78,-10.382100445427675],[113,284,79,-10.31725506738022],[113,285,64,-10.497042240728568],[113,285,65,-10.46765255310894],[113,285,66,-10.446273084140717],[113,285,67,-10.432251275779722],[113,285,68,-10.421879959807168],[113,285,69,-10.413363097530514],[113,285,70,-10.411228536602879],[113,285,71,-10.412521074787497],[113,285,72,-10.411800351305189],[113,285,73,-10.402755707035354],[113,285,74,-10.423959903960178],[113,285,75,-10.468632671250983],[113,285,76,-10.470590459871264],[113,285,77,-10.462041405341443],[113,285,78,-10.426922693392424],[113,285,79,-10.359504094612895],[113,286,64,-10.545143628709186],[113,286,65,-10.516111694693711],[113,286,66,-10.491159993407386],[113,286,67,-10.47433441798548],[113,286,68,-10.467352305741453],[113,286,69,-10.45713554271887],[113,286,70,-10.456419767024519],[113,286,71,-10.458745121123286],[113,286,72,-10.457107866033471],[113,286,73,-10.444918837332244],[113,286,74,-10.464059739179351],[113,286,75,-10.511884762593438],[113,286,76,-10.518134961356823],[113,286,77,-10.508961875773625],[113,286,78,-10.47549499879021],[113,286,79,-10.40750055903802],[113,287,64,-10.588485209897325],[113,287,65,-10.560193744567831],[113,287,66,-10.53153676523335],[113,287,67,-10.514561765330592],[113,287,68,-10.508133588513628],[113,287,69,-10.50205598051685],[113,287,70,-10.50397657195106],[113,287,71,-10.50585196995917],[113,287,72,-10.501940876116288],[113,287,73,-10.489867688005122],[113,287,74,-10.50130485193433],[113,287,75,-10.54896664902612],[113,287,76,-10.563957166114117],[113,287,77,-10.551627848290332],[113,287,78,-10.51849198951076],[113,287,79,-10.451308802402668],[113,288,64,-10.629722705505912],[113,288,65,-10.60297063751891],[113,288,66,-10.575805678223455],[113,288,67,-10.558434718269634],[113,288,68,-10.548391632794965],[113,288,69,-10.54524768670091],[113,288,70,-10.549100724391707],[113,288,71,-10.551636067375103],[113,288,72,-10.548092229244638],[113,288,73,-10.535729429722958],[113,288,74,-10.54173514528981],[113,288,75,-10.587951567806217],[113,288,76,-10.608281425706942],[113,288,77,-10.596282335841677],[113,288,78,-10.561579759169776],[113,288,79,-10.494494164999086],[113,289,64,-10.662293536500078],[113,289,65,-10.63491298575355],[113,289,66,-10.609174685037448],[113,289,67,-10.593371895846417],[113,289,68,-10.58174319381949],[113,289,69,-10.578665841769642],[113,289,70,-10.582195659646459],[113,289,71,-10.585146859873735],[113,289,72,-10.582172944853818],[113,289,73,-10.57200383276713],[113,289,74,-10.605306621771183],[113,289,75,-10.659729090613435],[113,289,76,-10.662342087653043],[113,289,77,-10.64807202799416],[113,289,78,-10.613657931689692],[113,289,79,-10.544219203564136],[113,290,64,-10.710545280908574],[113,290,65,-10.682320708718056],[113,290,66,-10.658869415149162],[113,290,67,-10.641595899133385],[113,290,68,-10.628335777443805],[113,290,69,-10.62416818729314],[113,290,70,-10.624603839141018],[113,290,71,-10.628442370231928],[113,290,72,-10.627030867079723],[113,290,73,-10.616226636414641],[113,290,74,-10.634257558783991],[113,290,75,-10.696183376851954],[113,290,76,-10.704960847834018],[113,290,77,-10.689566564546785],[113,290,78,-10.65496250813123],[113,290,79,-10.584870476863763],[113,291,64,-10.758076078355115],[113,291,65,-10.727708200120492],[113,291,66,-10.703614935452041],[113,291,67,-10.688437595613529],[113,291,68,-10.675047793222864],[113,291,69,-10.670130817151136],[113,291,70,-10.665504916570862],[113,291,71,-10.669440154968662],[113,291,72,-10.667360235847276],[113,291,73,-10.658557240216432],[113,291,74,-10.67261364896835],[113,291,75,-10.74215251783017],[113,291,76,-10.753619906528371],[113,291,77,-10.739522927020646],[113,291,78,-10.701313700849028],[113,291,79,-10.629537939120357],[113,292,64,-10.798246887678465],[113,292,65,-10.773380214595095],[113,292,66,-10.754086064168218],[113,292,67,-10.743570122225021],[113,292,68,-10.73936681559879],[113,292,69,-10.734996103601377],[113,292,70,-10.733000350099976],[113,292,71,-10.738216261913955],[113,292,72,-10.737103769278951],[113,292,73,-10.727295202833144],[113,292,74,-10.739841367641842],[113,292,75,-10.786144508943124],[113,292,76,-10.796068340111118],[113,292,77,-10.779849046869197],[113,292,78,-10.74217001731229],[113,292,79,-10.670586493819533],[113,293,64,-10.846822746837338],[113,293,65,-10.822457044858206],[113,293,66,-10.80221950336674],[113,293,67,-10.791730143393409],[113,293,68,-10.788060563534788],[113,293,69,-10.78111513860315],[113,293,70,-10.779263342459993],[113,293,71,-10.782922060216688],[113,293,72,-10.779510151504912],[113,293,73,-10.77008470372256],[113,293,74,-10.782237260178409],[113,293,75,-10.830836984310473],[113,293,76,-10.840444991232214],[113,293,77,-10.823939998501293],[113,293,78,-10.783825538388788],[113,293,79,-10.71515606728087],[113,294,64,-10.894977549478085],[113,294,65,-10.873130069552658],[113,294,66,-10.85316286840452],[113,294,67,-10.839306053104565],[113,294,68,-10.833347916676809],[113,294,69,-10.825109083287694],[113,294,70,-10.823572811286454],[113,294,71,-10.824538883068316],[113,294,72,-10.822442702227523],[113,294,73,-10.812847077712714],[113,294,74,-10.824144010715587],[113,294,75,-10.88014012267555],[113,294,76,-10.891801372197655],[113,294,77,-10.875452531003804],[113,294,78,-10.835357827257829],[113,294,79,-10.763964248428],[113,295,64,-10.940511561757639],[113,295,65,-10.920504684047488],[113,295,66,-10.900908546523675],[113,295,67,-10.88645957884909],[113,295,68,-10.878507181109983],[113,295,69,-10.870829237485173],[113,295,70,-10.869875402539975],[113,295,71,-10.87104505756042],[113,295,72,-10.869753349543274],[113,295,73,-10.858065117591988],[113,295,74,-10.855283859231264],[113,295,75,-10.87675933942083],[113,295,76,-10.927281851443905],[113,295,77,-10.920172033592825],[113,295,78,-10.878369503363489],[113,295,79,-10.807788386958487],[113,296,64,-10.984973394008712],[113,296,65,-10.964670369218352],[113,296,66,-10.945508429199721],[113,296,67,-10.930524994527538],[113,296,68,-10.922192459420536],[113,296,69,-10.917967233309357],[113,296,70,-10.918265913527849],[113,296,71,-10.919952509341632],[113,296,72,-10.915992519628771],[113,296,73,-10.904851542014619],[113,296,74,-10.89975256753076],[113,296,75,-10.917212605118165],[113,296,76,-10.969798269536696],[113,296,77,-10.9638837597742],[113,296,78,-10.923741871784772],[113,296,79,-10.8550675112314],[113,297,64,-11.034485661255635],[113,297,65,-11.01343835668092],[113,297,66,-10.996233458436295],[113,297,67,-10.984923052553555],[113,297,68,-10.97806881289218],[113,297,69,-10.973791078054338],[113,297,70,-10.97232483691348],[113,297,71,-10.970488353051095],[113,297,72,-10.960768824979363],[113,297,73,-10.942996691993034],[113,297,74,-10.937064243030129],[113,297,75,-10.969424654394869],[113,297,76,-11.027568239670131],[113,297,77,-11.015987248821583],[113,297,78,-10.976873773181007],[113,297,79,-10.907336626284433],[113,298,64,-11.081669119636294],[113,298,65,-11.058936179344117],[113,298,66,-11.042115434054384],[113,298,67,-11.032083637787325],[113,298,68,-11.02717634314124],[113,298,69,-11.020323171495313],[113,298,70,-11.020785765960643],[113,298,71,-11.015556330993883],[113,298,72,-11.005183062514929],[113,298,73,-10.98505604956423],[113,298,74,-10.98205071414479],[113,298,75,-11.009619423111298],[113,298,76,-11.063999157129357],[113,298,77,-11.060008885032072],[113,298,78,-11.022076926201343],[113,298,79,-10.950456600887028],[113,299,64,-11.125652935192656],[113,299,65,-11.102690760564965],[113,299,66,-11.086238091516284],[113,299,67,-11.07408530583656],[113,299,68,-11.068161093097062],[113,299,69,-11.0640747732249],[113,299,70,-11.06540174497696],[113,299,71,-11.059536672255598],[113,299,72,-11.048673083446038],[113,299,73,-11.027920592983882],[113,299,74,-11.025987128744035],[113,299,75,-11.050903141923458],[113,299,76,-11.109527809826707],[113,299,77,-11.109101271858403],[113,299,78,-11.069413286288494],[113,299,79,-10.996613525926296],[113,300,64,-11.168284738671343],[113,300,65,-11.145081108876353],[113,300,66,-11.123814310075806],[113,300,67,-11.106786044912754],[113,300,68,-11.097680462325506],[113,300,69,-11.09288002949398],[113,300,70,-11.094831055226543],[113,300,71,-11.097890697510309],[113,300,72,-11.093244799120729],[113,300,73,-11.077087124903601],[113,300,74,-11.074831287918512],[113,300,75,-11.086956518397244],[113,300,76,-11.09968392583854],[113,300,77,-11.10078707805952],[113,300,78,-11.087579255964892],[113,300,79,-11.031005984775208],[113,301,64,-11.215186830516453],[113,301,65,-11.191234433507272],[113,301,66,-11.168802964959424],[113,301,67,-11.149409762030032],[113,301,68,-11.140187373256982],[113,301,69,-11.135178633631519],[113,301,70,-11.134521535331688],[113,301,71,-11.14046087088274],[113,301,72,-11.138812891491973],[113,301,73,-11.123342408340013],[113,301,74,-11.119170280802496],[113,301,75,-11.133897075487145],[113,301,76,-11.14512014297264],[113,301,77,-11.14477510560485],[113,301,78,-11.129439616750197],[113,301,79,-11.075522997136263],[113,302,64,-11.25830141328196],[113,302,65,-11.23432331175764],[113,302,66,-11.21270647256799],[113,302,67,-11.191782879121755],[113,302,68,-11.181443759343118],[113,302,69,-11.17461126261736],[113,302,70,-11.173071651553183],[113,302,71,-11.179838026261965],[113,302,72,-11.180570754712928],[113,302,73,-11.166518887185571],[113,302,74,-11.161152161052174],[113,302,75,-11.175363847642554],[113,302,76,-11.184891022355862],[113,302,77,-11.184321970114905],[113,302,78,-11.170674355373094],[113,302,79,-11.124661653419928],[113,303,64,-11.301549718960596],[113,303,65,-11.280459796844674],[113,303,66,-11.258435100580781],[113,303,67,-11.237709103735641],[113,303,68,-11.227806214420209],[113,303,69,-11.218754102445336],[113,303,70,-11.219530111517935],[113,303,71,-11.224746824809417],[113,303,72,-11.225839601169112],[113,303,73,-11.212147255797632],[113,303,74,-11.207862614971004],[113,303,75,-11.2181063946796],[113,303,76,-11.22842328893752],[113,303,77,-11.229060932288073],[113,303,78,-11.219833458945832],[113,303,79,-11.170582225097297],[113,304,64,-11.347492837104308],[113,304,65,-11.324769985754456],[113,304,66,-11.305357490147264],[113,304,67,-11.283140351377641],[113,304,68,-11.273996556156987],[113,304,69,-11.2636557935551],[113,304,70,-11.26358908278654],[113,304,71,-11.271145329766249],[113,304,72,-11.271044327562311],[113,304,73,-11.258786857449898],[113,304,74,-11.25153738170382],[113,304,75,-11.263451281134241],[113,304,76,-11.272625727329382],[113,304,77,-11.273573669659902],[113,304,78,-11.262428562359553],[113,304,79,-11.209501037979367],[113,305,64,-11.393076347531391],[113,305,65,-11.370579894559057],[113,305,66,-11.350497694296765],[113,305,67,-11.32831741592293],[113,305,68,-11.320163662246829],[113,305,69,-11.310165881587913],[113,305,70,-11.30902201260669],[113,305,71,-11.31712205975577],[113,305,72,-11.317763990071672],[113,305,73,-11.303133020817137],[113,305,74,-11.296103958859208],[113,305,75,-11.308156005514713],[113,305,76,-11.319698295357442],[113,305,77,-11.317267536415006],[113,305,78,-11.305623251746777],[113,305,79,-11.250448911678559],[113,306,64,-11.441386722557867],[113,306,65,-11.420286385125957],[113,306,66,-11.39777876619219],[113,306,67,-11.376494940483422],[113,306,68,-11.363979699715257],[113,306,69,-11.357429864548603],[113,306,70,-11.357561150827427],[113,306,71,-11.363338192227491],[113,306,72,-11.364947689150595],[113,306,73,-11.34948348339112],[113,306,74,-11.343248448465632],[113,306,75,-11.355564369746531],[113,306,76,-11.366511707629842],[113,306,77,-11.359837317324025],[113,306,78,-11.345749890155432],[113,306,79,-11.292033299026],[113,307,64,-11.490577469282899],[113,307,65,-11.466139093739608],[113,307,66,-11.441663770146787],[113,307,67,-11.421610538032743],[113,307,68,-11.408389912567044],[113,307,69,-11.403717065223253],[113,307,70,-11.404500846987903],[113,307,71,-11.406098390432065],[113,307,72,-11.407351912802334],[113,307,73,-11.396163819111289],[113,307,74,-11.390761149376386],[113,307,75,-11.40235831178726],[113,307,76,-11.41137033665006],[113,307,77,-11.403660403798021],[113,307,78,-11.387421127724194],[113,307,79,-11.334058301639844],[113,308,64,-11.533214597756123],[113,308,65,-11.505893828502439],[113,308,66,-11.476539864778507],[113,308,67,-11.455563196883356],[113,308,68,-11.445400630912404],[113,308,69,-11.438919572408084],[113,308,70,-11.437143389372045],[113,308,71,-11.435965134716973],[113,308,72,-11.43760699272973],[113,308,73,-11.426382506409649],[113,308,74,-11.422851328546434],[113,308,75,-11.434341375350963],[113,308,76,-11.443968295187492],[113,308,77,-11.44140928992179],[113,308,78,-11.436437401005184],[113,308,79,-11.392617400325019],[113,309,64,-11.58110850362332],[113,309,65,-11.552206681761929],[113,309,66,-11.523541451588459],[113,309,67,-11.502409451114385],[113,309,68,-11.48904313824145],[113,309,69,-11.483411374134013],[113,309,70,-11.480470029107062],[113,309,71,-11.480449944674307],[113,309,72,-11.481361341236235],[113,309,73,-11.470738398858819],[113,309,74,-11.468732961330142],[113,309,75,-11.48071545325984],[113,309,76,-11.488665831491712],[113,309,77,-11.481386248235802],[113,309,78,-11.464032543077325],[113,309,79,-11.407182464494593],[113,310,64,-11.61971156870767],[113,310,65,-11.593974102539752],[113,310,66,-11.566026604301957],[113,310,67,-11.544151369474621],[113,310,68,-11.530447371911476],[113,310,69,-11.522735531642043],[113,310,70,-11.518987141335641],[113,310,71,-11.521976559491312],[113,310,72,-11.521330020411678],[113,310,73,-11.507850259405123],[113,310,74,-11.505788878976027],[113,310,75,-11.51830746164589],[113,310,76,-11.526142524525206],[113,310,77,-11.520142235566235],[113,310,78,-11.503520594501431],[113,310,79,-11.449057742437633],[113,311,64,-11.664373971953827],[113,311,65,-11.639955676237442],[113,311,66,-11.611617596153353],[113,311,67,-11.58983651448371],[113,311,68,-11.574778947223965],[113,311,69,-11.566619442896753],[113,311,70,-11.562507059032052],[113,311,71,-11.567327378030841],[113,311,72,-11.566983724155609],[113,311,73,-11.552375359364447],[113,311,74,-11.550035986433222],[113,311,75,-11.562619521863773],[113,311,76,-11.570908647730523],[113,311,77,-11.577153369950482],[113,311,78,-11.555081859489528],[113,311,79,-11.493998337263983],[113,312,64,-11.702826981331393],[113,312,65,-11.679409453791074],[113,312,66,-11.653775571249458],[113,312,67,-11.632690422807759],[113,312,68,-11.617580368980263],[113,312,69,-11.607376338782535],[113,312,70,-11.604405292983733],[113,312,71,-11.610061852081412],[113,312,72,-11.609960450703175],[113,312,73,-11.596451526251592],[113,312,74,-11.592695362177931],[113,312,75,-11.605689348020391],[113,312,76,-11.613789060187303],[113,312,77,-11.625814821191018],[113,312,78,-11.60302177140976],[113,312,79,-11.53671486182118],[113,313,64,-11.749601503992285],[113,313,65,-11.726427735691423],[113,313,66,-11.701227608285917],[113,313,67,-11.678966411732778],[113,313,68,-11.663641593065481],[113,313,69,-11.650865761960928],[113,313,70,-11.64936216705464],[113,313,71,-11.654823233106601],[113,313,72,-11.65298717975561],[113,313,73,-11.64015761040419],[113,313,74,-11.638188618944165],[113,313,75,-11.647950801452698],[113,313,76,-11.658167795151867],[113,313,77,-11.666244823415177],[113,313,78,-11.643257817205368],[113,313,79,-11.579659515077752],[113,314,64,-11.796034553336183],[113,314,65,-11.773267147235426],[113,314,66,-11.749580258082714],[113,314,67,-11.726681822046086],[113,314,68,-11.709323114224047],[113,314,69,-11.700155261381198],[113,314,70,-11.697952237563586],[113,314,71,-11.70088689059752],[113,314,72,-11.698257488017694],[113,314,73,-11.683691690849821],[113,314,74,-11.680322340840355],[113,314,75,-11.692306617955614],[113,314,76,-11.703150659656327],[113,314,77,-11.704424308268873],[113,314,78,-11.683956841350442],[113,314,79,-11.622028826484325],[113,315,64,-11.841929529052198],[113,315,65,-11.819173110920369],[113,315,66,-11.797210917960307],[113,315,67,-11.772387370842932],[113,315,68,-11.754987471769244],[113,315,69,-11.746318612014532],[113,315,70,-11.745042454441519],[113,315,71,-11.74485129702596],[113,315,72,-11.743033250358096],[113,315,73,-11.72651691067622],[113,315,74,-11.722068642516463],[113,315,75,-11.733878129793517],[113,315,76,-11.74611543201124],[113,315,77,-11.749783631855863],[113,315,78,-11.728717481826875],[113,315,79,-11.667710131869816],[113,316,64,-11.89639283998134],[113,316,65,-11.870873910888548],[113,316,66,-11.84745141671447],[113,316,67,-11.821694603884113],[113,316,68,-11.8028385154726],[113,316,69,-11.79167080454158],[113,316,70,-11.789152386979417],[113,316,71,-11.788927997685553],[113,316,72,-11.784635936975162],[113,316,73,-11.769580136172554],[113,316,74,-11.76255135542595],[113,316,75,-11.774563708930375],[113,316,76,-11.78512205097037],[113,316,77,-11.79265660441927],[113,316,78,-11.765373252696573],[113,316,79,-11.697002273985497],[113,317,64,-11.946647607744357],[113,317,65,-11.917753219414045],[113,317,66,-11.892861103401135],[113,317,67,-11.867818368857243],[113,317,68,-11.851443189604426],[113,317,69,-11.839777986365203],[113,317,70,-11.834599403604578],[113,317,71,-11.833979447896192],[113,317,72,-11.829107257297277],[113,317,73,-11.814078359514879],[113,317,74,-11.804799989401854],[113,317,75,-11.816991653947351],[113,317,76,-11.829835106620367],[113,317,77,-11.839711721427793],[113,317,78,-11.812809432645242],[113,317,79,-11.745150269878279],[113,318,64,-11.989580786894036],[113,318,65,-11.958116063838736],[113,318,66,-11.928640874455898],[113,318,67,-11.906958464566634],[113,318,68,-11.89278513536986],[113,318,69,-11.878603749446851],[113,318,70,-11.873880514921442],[113,318,71,-11.872090099760491],[113,318,72,-11.86459163163472],[113,318,73,-11.84843621727861],[113,318,74,-11.840171202207168],[113,318,75,-11.852183562843024],[113,318,76,-11.869175183244845],[113,318,77,-11.878636459248042],[113,318,78,-11.851614238840453],[113,318,79,-11.784096359763096],[113,319,64,-12.039024773873807],[113,319,65,-12.006967896604623],[113,319,66,-11.974987999160142],[113,319,67,-11.95499281455967],[113,319,68,-11.937952654013385],[113,319,69,-11.92578716763106],[113,319,70,-11.91926992632214],[113,319,71,-11.919040948926776],[113,319,72,-11.908880674498214],[113,319,73,-11.889773943289246],[113,319,74,-11.88406456013341],[113,319,75,-11.897636114203642],[113,319,76,-11.913962435326129],[113,319,77,-11.92580985941036],[113,319,78,-11.895837259920757],[113,319,79,-11.824699813319622],[114,-64,64,22.85837451729849],[114,-64,65,22.90394270553992],[114,-64,66,22.933710496994514],[114,-64,67,22.95048846919993],[114,-64,68,22.97099314810271],[114,-64,69,22.988616009803433],[114,-64,70,23.011608294159323],[114,-64,71,23.04658794822762],[114,-64,72,23.09941801843953],[114,-64,73,23.154569139712606],[114,-64,74,23.204479693057674],[114,-64,75,23.27662282117105],[114,-64,76,23.373980002271143],[114,-64,77,23.469194945448674],[114,-64,78,23.524175073176874],[114,-64,79,23.528943418730965],[114,-63,64,22.66756530026659],[114,-63,65,22.71149917999333],[114,-63,66,22.74408803873987],[114,-63,67,22.760920180292338],[114,-63,68,22.780659510461113],[114,-63,69,22.79899496391555],[114,-63,70,22.823115594199354],[114,-63,71,22.85641844155385],[114,-63,72,22.912924066019634],[114,-63,73,22.96910080319576],[114,-63,74,23.01717752736705],[114,-63,75,23.088889862608177],[114,-63,76,23.186302998688554],[114,-63,77,23.285154495396622],[114,-63,78,23.342966288627945],[114,-63,79,23.348602546341695],[114,-62,64,22.481308869046085],[114,-62,65,22.525200287979757],[114,-62,66,22.55840369885255],[114,-62,67,22.57541160807207],[114,-62,68,22.59363284205648],[114,-62,69,22.610978153658007],[114,-62,70,22.637423516838126],[114,-62,71,22.671623822270817],[114,-62,72,22.726266723300714],[114,-62,73,22.782925207474687],[114,-62,74,22.83132696616988],[114,-62,75,22.902915539605605],[114,-62,76,23.000188372389267],[114,-62,77,23.09901213908815],[114,-62,78,23.156141694899407],[114,-62,79,23.159982798041863],[114,-61,64,22.29172664970431],[114,-61,65,22.33666799712763],[114,-61,66,22.367966154163934],[114,-61,67,22.38190629133667],[114,-61,68,22.40113936912815],[114,-61,69,22.41803293964544],[114,-61,70,22.44679811657213],[114,-61,71,22.482664462870876],[114,-61,72,22.536789613933436],[114,-61,73,22.59278439115222],[114,-61,74,22.641981919297763],[114,-61,75,22.714816307342623],[114,-61,76,22.811691567617963],[114,-61,77,22.910471652177794],[114,-61,78,22.967664202467766],[114,-61,79,22.97104736129601],[114,-60,64,22.102448186707772],[114,-60,65,22.14682042095871],[114,-60,66,22.175181165422895],[114,-60,67,22.191198690942766],[114,-60,68,22.20914788325716],[114,-60,69,22.228836704229867],[114,-60,70,22.25799406982147],[114,-60,71,22.293681786922587],[114,-60,72,22.34809402680733],[114,-60,73,22.405953393905897],[114,-60,74,22.45452378243353],[114,-60,75,22.525930639185944],[114,-60,76,22.62426030775549],[114,-60,77,22.720995679531608],[114,-60,78,22.777898311839408],[114,-60,79,22.78189179390011],[114,-59,64,21.923024831094907],[114,-59,65,21.9649411884699],[114,-59,66,21.9947324758669],[114,-59,67,22.011374375505966],[114,-59,68,22.03071299528408],[114,-59,69,22.049687004608682],[114,-59,70,22.07444569859698],[114,-59,71,22.113807905486002],[114,-59,72,22.16955692111122],[114,-59,73,22.225839456162063],[114,-59,74,22.27247030179967],[114,-59,75,22.343677023643217],[114,-59,76,22.438520652711183],[114,-59,77,22.53112104439714],[114,-59,78,22.58311464553248],[114,-59,79,22.58235199560126],[114,-58,64,21.733860471231054],[114,-58,65,21.777054684607453],[114,-58,66,21.809716359263664],[114,-58,67,21.82887417373671],[114,-58,68,21.84939430530873],[114,-58,69,21.86609605591165],[114,-58,70,21.890102235237883],[114,-58,71,21.927955079332797],[114,-58,72,21.98387674344038],[114,-58,73,22.040402513892975],[114,-58,74,22.09057595638558],[114,-58,75,22.160373067396456],[114,-58,76,22.251984057752495],[114,-58,77,22.343953208957004],[114,-58,78,22.39527531826541],[114,-58,79,22.394545303588156],[114,-57,64,21.539217449378636],[114,-57,65,21.5851456433576],[114,-57,66,21.61526287945867],[114,-57,67,21.639987905323146],[114,-57,68,21.65967550856101],[114,-57,69,21.675519765786902],[114,-57,70,21.700387140111214],[114,-57,71,21.73564208262448],[114,-57,72,21.790702970496675],[114,-57,73,21.849166779996995],[114,-57,74,21.900903905766278],[114,-57,75,21.972878175133864],[114,-57,76,22.064851242948517],[114,-57,77,22.156342727741123],[114,-57,78,22.204239873329442],[114,-57,79,22.20551553384898],[114,-56,64,21.35215355371634],[114,-56,65,21.397812583917055],[114,-56,66,21.428098917913328],[114,-56,67,21.451186717150087],[114,-56,68,21.47205369816283],[114,-56,69,21.48846392454588],[114,-56,70,21.512788549812466],[114,-56,71,21.549565785458555],[114,-56,72,21.604667129211318],[114,-56,73,21.66587765007842],[114,-56,74,21.71689175211306],[114,-56,75,21.786410099914058],[114,-56,76,21.879690085469434],[114,-56,77,21.969283755430506],[114,-56,78,22.016294839109392],[114,-56,79,22.01922454545724],[114,-55,64,21.16434410566835],[114,-55,65,21.210272051988127],[114,-55,66,21.239783575351446],[114,-55,67,21.264474247560543],[114,-55,68,21.28422500089505],[114,-55,69,21.299934919643913],[114,-55,70,21.32438355231361],[114,-55,71,21.36486456505462],[114,-55,72,21.41799886567417],[114,-55,73,21.480027832280076],[114,-55,74,21.530766764406895],[114,-55,75,21.60014065166965],[114,-55,76,21.69376411897465],[114,-55,77,21.78248488828945],[114,-55,78,21.82985043572727],[114,-55,79,21.83326738280655],[114,-54,64,20.976550970077106],[114,-54,65,21.020354438691456],[114,-54,66,21.051407856669993],[114,-54,67,21.076640282366103],[114,-54,68,21.09513508599181],[114,-54,69,21.112054413687698],[114,-54,70,21.134964475277883],[114,-54,71,21.177067380311016],[114,-54,72,21.23102215591665],[114,-54,73,21.292426215944115],[114,-54,74,21.34577603238919],[114,-54,75,21.416558938679874],[114,-54,76,21.509033206483345],[114,-54,77,21.599215583822154],[114,-54,78,21.64469421276821],[114,-54,79,21.64954376443833],[114,-53,64,20.807717941879876],[114,-53,65,20.828576229934313],[114,-53,66,20.861109227536698],[114,-53,67,20.8833557654078],[114,-53,68,20.903907629665902],[114,-53,69,20.921691188074995],[114,-53,70,20.944141371043703],[114,-53,71,20.98540772933576],[114,-53,72,21.04211096321441],[114,-53,73,21.101330307494436],[114,-53,74,21.156032905104862],[114,-53,75,21.224437346874716],[114,-53,76,21.318478884967664],[114,-53,77,21.409931755774096],[114,-53,78,21.458122320757994],[114,-53,79,21.459533871762453],[114,-52,64,20.65475521808225],[114,-52,65,20.643113103557585],[114,-52,66,20.667496641700232],[114,-52,67,20.689178928838707],[114,-52,68,20.712918838000206],[114,-52,69,20.73276353812226],[114,-52,70,20.754774093780206],[114,-52,71,20.794521532285145],[114,-52,72,20.851661574603988],[114,-52,73,20.91009851683913],[114,-52,74,20.963495545614933],[114,-52,75,21.03316268206254],[114,-52,76,21.128094264932102],[114,-52,77,21.21873136842872],[114,-52,78,21.268338286129726],[114,-52,79,21.270872596151825],[114,-51,64,20.424267365882944],[114,-51,65,20.428457411896797],[114,-51,66,20.46212179059776],[114,-51,67,20.48446568370071],[114,-51,68,20.50840886191333],[114,-51,69,20.530581746201072],[114,-51,70,20.553687118191828],[114,-51,71,20.592657578671755],[114,-51,72,20.649480666999967],[114,-51,73,20.705115204634737],[114,-51,74,20.759272916293853],[114,-51,75,20.831999173235296],[114,-51,76,20.92882566453634],[114,-51,77,21.02266323687068],[114,-51,78,21.080996497774194],[114,-51,79,21.09141593358684],[114,-50,64,20.28332775635833],[114,-50,65,20.24458353910706],[114,-50,66,20.27657993018665],[114,-50,67,20.299468111084902],[114,-50,68,20.321708018815496],[114,-50,69,20.3414999325513],[114,-50,70,20.368760205270608],[114,-50,71,20.408366966918045],[114,-50,72,20.463386601577625],[114,-50,73,20.518970276177118],[114,-50,74,20.5707677850809],[114,-50,75,20.643922969341954],[114,-50,76,20.741266560741185],[114,-50,77,20.837075915044014],[114,-50,78,20.89280998428546],[114,-50,79,20.908019193222845],[114,-49,64,20.097432351784928],[114,-49,65,20.054263537668852],[114,-49,66,20.083762542506364],[114,-49,67,20.107087504781795],[114,-49,68,20.13194792103191],[114,-49,69,20.149969347249957],[114,-49,70,20.17704806006255],[114,-49,71,20.216893034620664],[114,-49,72,20.272379574174117],[114,-49,73,20.328068848169785],[114,-49,74,20.381827987082996],[114,-49,75,20.453754517371745],[114,-49,76,20.550831270229647],[114,-49,77,20.643816762609735],[114,-49,78,20.703126321594382],[114,-49,79,20.720004541059712],[114,-48,64,19.922449522234192],[114,-48,65,19.868850130022906],[114,-48,66,19.90119619519238],[114,-48,67,19.92324891735018],[114,-48,68,19.94859533563781],[114,-48,69,19.966774324233892],[114,-48,70,19.9928272825637],[114,-48,71,20.033535788217776],[114,-48,72,20.08680030811553],[114,-48,73,20.142738411476937],[114,-48,74,20.19764803852912],[114,-48,75,20.26889328572749],[114,-48,76,20.363785152382068],[114,-48,77,20.458509886135147],[114,-48,78,20.51785560902853],[114,-48,79,20.534948150222764],[114,-47,64,19.746208276645937],[114,-47,65,19.705510792994886],[114,-47,66,19.7196952715971],[114,-47,67,19.748479891775773],[114,-47,68,19.77341623319535],[114,-47,69,19.796731071115076],[114,-47,70,19.82211005024914],[114,-47,71,19.861897619425932],[114,-47,72,19.913884363006403],[114,-47,73,19.9710234338371],[114,-47,74,20.023029295578564],[114,-47,75,20.09421509275693],[114,-47,76,20.187906519905912],[114,-47,77,20.280210392662433],[114,-47,78,20.336516108660444],[114,-47,79,20.3506874644708],[114,-46,64,19.534317070890616],[114,-46,65,19.49553276154602],[114,-46,66,19.53498131046858],[114,-46,67,19.56382357475627],[114,-46,68,19.59028039650291],[114,-46,69,19.614183482336923],[114,-46,70,19.639332769692327],[114,-46,71,19.67831884263282],[114,-46,72,19.731294438177496],[114,-46,73,19.790016778663198],[114,-46,74,19.840813931559914],[114,-46,75,19.912423992365923],[114,-46,76,20.00561012731827],[114,-46,77,20.095911077154437],[114,-46,78,20.150106500219945],[114,-46,79,20.164222730401114],[114,-45,64,19.3654612455359],[114,-45,65,19.319590617647243],[114,-45,66,19.347055465522537],[114,-45,67,19.375835412830366],[114,-45,68,19.400772064721135],[114,-45,69,19.425067114260933],[114,-45,70,19.451721856270787],[114,-45,71,19.49037517639134],[114,-45,72,19.54607852005897],[114,-45,73,19.6025948270055],[114,-45,74,19.65451530104337],[114,-45,75,19.727501310733],[114,-45,76,19.81746407021531],[114,-45,77,19.9082429045816],[114,-45,78,19.961417898754824],[114,-45,79,19.975058964492565],[114,-44,64,19.344975052490913],[114,-44,65,19.18790156912037],[114,-44,66,19.197326048175487],[114,-44,67,19.222761257495307],[114,-44,68,19.24762059093094],[114,-44,69,19.2698266591775],[114,-44,70,19.29229332880966],[114,-44,71,19.331763861156215],[114,-44,72,19.387340555931065],[114,-44,73,19.4423123598601],[114,-44,74,19.494825513487196],[114,-44,75,19.56784086391942],[114,-44,76,19.658220690973067],[114,-44,77,19.749006805889415],[114,-44,78,19.80218085224451],[114,-44,79,19.815344870402377],[114,-43,64,19.122233966302392],[114,-43,65,18.99149665611948],[114,-43,66,19.027846184964737],[114,-43,67,19.052037136660392],[114,-43,68,19.074733950733876],[114,-43,69,19.09315694475531],[114,-43,70,19.115972972602457],[114,-43,71,19.15096522352726],[114,-43,72,19.207288537238174],[114,-43,73,19.263207634558615],[114,-43,74,19.317109577258474],[114,-43,75,19.390162096733082],[114,-43,76,19.479371271961003],[114,-43,77,19.567946381884088],[114,-43,78,19.62138429675564],[114,-43,79,19.634256019779766],[114,-42,64,18.98541014876875],[114,-42,65,18.850044537663017],[114,-42,66,18.850607578649758],[114,-42,67,18.872190453787383],[114,-42,68,18.894409840064682],[114,-42,69,18.911984231616607],[114,-42,70,18.930864368657886],[114,-42,71,18.964482294531184],[114,-42,72,19.019793117237988],[114,-42,73,19.07962947948887],[114,-42,74,19.131050140131716],[114,-42,75,19.20510127766226],[114,-42,76,19.293405441521376],[114,-42,77,19.38383651748601],[114,-42,78,19.437594971720547],[114,-42,79,19.446640232606523],[114,-41,64,18.889209715456175],[114,-41,65,18.702227086518633],[114,-41,66,18.66331510436672],[114,-41,67,18.683694382858185],[114,-41,68,18.701822628536696],[114,-41,69,18.718211593572484],[114,-41,70,18.738956022454726],[114,-41,71,18.77473304498514],[114,-41,72,18.82989771467692],[114,-41,73,18.88962417258698],[114,-41,74,18.941420032348848],[114,-41,75,19.014764834593315],[114,-41,76,19.104806746538145],[114,-41,77,19.19269314911425],[114,-41,78,19.246523075949767],[114,-41,79,19.260396905478146],[114,-40,64,18.721817435363825],[114,-40,65,18.56869063420049],[114,-40,66,18.483438960113602],[114,-40,67,18.50121977756251],[114,-40,68,18.51726987945177],[114,-40,69,18.533468518434542],[114,-40,70,18.553478485853404],[114,-40,71,18.591100915391436],[114,-40,72,18.643552308008175],[114,-40,73,18.703381405753053],[114,-40,74,18.757397046287984],[114,-40,75,18.827983372819663],[114,-40,76,18.915956384755198],[114,-40,77,19.0053934461055],[114,-40,78,19.06236009401088],[114,-40,79,19.076330196416574],[114,-39,64,18.57040603735057],[114,-39,65,18.451292992878013],[114,-39,66,18.303594003354842],[114,-39,67,18.317258863368103],[114,-39,68,18.33289354470192],[114,-39,69,18.345279466997795],[114,-39,70,18.3678390739253],[114,-39,71,18.406375814919446],[114,-39,72,18.46021870054769],[114,-39,73,18.52220736886224],[114,-39,74,18.577503833129274],[114,-39,75,18.645886095644872],[114,-39,76,18.73383699313128],[114,-39,77,18.825798169295684],[114,-39,78,18.88393542287386],[114,-39,79,18.902910527555104],[114,-38,64,18.430812097872053],[114,-38,65,18.323721757775406],[114,-38,66,18.134687208354404],[114,-38,67,18.136493483556087],[114,-38,68,18.147865639468964],[114,-38,69,18.16309943852912],[114,-38,70,18.185233236533485],[114,-38,71,18.222721651359105],[114,-38,72,18.275054024326902],[114,-38,73,18.338921293502363],[114,-38,74,18.394003508065612],[114,-38,75,18.46112757835863],[114,-38,76,18.550200638528683],[114,-38,77,18.638149076899634],[114,-38,78,18.69970162061821],[114,-38,79,18.717883964295666],[114,-37,64,18.287866102544466],[114,-37,65,18.17938053149129],[114,-37,66,18.002930033368767],[114,-37,67,17.951149770282928],[114,-37,68,17.959507926031407],[114,-37,69,17.974182516678916],[114,-37,70,17.995730276790752],[114,-37,71,18.03340767891832],[114,-37,72,18.08743273202398],[114,-37,73,18.152084544618653],[114,-37,74,18.206784578631503],[114,-37,75,18.27298459683118],[114,-37,76,18.361153868372455],[114,-37,77,18.448264488964412],[114,-37,78,18.50975862092051],[114,-37,79,18.52781143357953],[114,-36,64,18.135893648022904],[114,-36,65,18.01060870433365],[114,-36,66,17.830041859128436],[114,-36,67,17.762944549575312],[114,-36,68,17.7703071252806],[114,-36,69,17.78409159204391],[114,-36,70,17.804891184338192],[114,-36,71,17.84493197070417],[114,-36,72,17.899238387096002],[114,-36,73,17.963536548137387],[114,-36,74,18.01753014492262],[114,-36,75,18.084592793477142],[114,-36,76,18.171317330727998],[114,-36,77,18.25952659597487],[114,-36,78,18.317028154054565],[114,-36,79,18.336624345309453],[114,-35,64,17.858976989178824],[114,-35,65,17.885966592174718],[114,-35,66,17.850498474043118],[114,-35,67,17.751503218246167],[114,-35,68,17.624206472594068],[114,-35,69,17.604212343140322],[114,-35,70,17.624262990195206],[114,-35,71,17.659093501968563],[114,-35,72,17.71273181414167],[114,-35,73,17.769314848801127],[114,-35,74,17.824314493589767],[114,-35,75,17.88886016251137],[114,-35,76,17.976380812501365],[114,-35,77,18.06612890067982],[114,-35,78,18.126101423715053],[114,-35,79,18.1461026980352],[114,-34,64,17.682395316707645],[114,-34,65,17.72579982684157],[114,-34,66,17.693400261437862],[114,-34,67,17.58513820003199],[114,-34,68,17.476439484825658],[114,-34,69,17.42186315070991],[114,-34,70,17.44129884475099],[114,-34,71,17.47508314151012],[114,-34,72,17.527747271301312],[114,-34,73,17.582305087073532],[114,-34,74,17.636510699622754],[114,-34,75,17.701142143820626],[114,-34,76,17.787612408572343],[114,-34,77,17.8771572077884],[114,-34,78,17.937016415851385],[114,-34,79,17.959343206490058],[114,-33,64,17.52532077298328],[114,-33,65,17.58790507789748],[114,-33,66,17.572974322432007],[114,-33,67,17.457586477013002],[114,-33,68,17.393489706880004],[114,-33,69,17.310122135100112],[114,-33,70,17.326884056442985],[114,-33,71,17.355150818376973],[114,-33,72,17.405048043080086],[114,-33,73,17.45312081494268],[114,-33,74,17.500382931420766],[114,-33,75,17.56139890847473],[114,-33,76,17.641441213714582],[114,-33,77,17.723722967671872],[114,-33,78,17.779249241468815],[114,-33,79,17.798787791037558],[114,-32,64,17.35053794424548],[114,-32,65,17.400106766389467],[114,-32,66,17.396588423722942],[114,-32,67,17.28314457312777],[114,-32,68,17.205409156591024],[114,-32,69,17.12740059208181],[114,-32,70,17.142078615577276],[114,-32,71,17.17394435384463],[114,-32,72,17.220187684614324],[114,-32,73,17.269549704763627],[114,-32,74,17.317576553247815],[114,-32,75,17.37904918000956],[114,-32,76,17.454458445323247],[114,-32,77,17.537880098622892],[114,-32,78,17.591811986485187],[114,-32,79,17.608262093400693],[114,-31,64,17.19700817269349],[114,-31,65,17.24261023294104],[114,-31,66,17.185208519580186],[114,-31,67,17.030787001034174],[114,-31,68,16.938115207554574],[114,-31,69,16.943568316766562],[114,-31,70,16.959128448202712],[114,-31,71,16.99173970899658],[114,-31,72,17.036079842911565],[114,-31,73,17.086964362716106],[114,-31,74,17.13366348249824],[114,-31,75,17.195055621477263],[114,-31,76,17.268808778049156],[114,-31,77,17.349243828785447],[114,-31,78,17.40445120748477],[114,-31,79,17.420721596983036],[114,-30,64,17.022357639696263],[114,-30,65,17.108602660187593],[114,-30,66,17.032528447922886],[114,-30,67,16.84923137368095],[114,-30,68,16.780501307782455],[114,-30,69,16.761864393294868],[114,-30,70,16.77647008550926],[114,-30,71,16.806843309069485],[114,-30,72,16.853343736304797],[114,-30,73,16.906177172136513],[114,-30,74,16.952468236883654],[114,-30,75,17.01120521989515],[114,-30,76,17.083948945676006],[114,-30,77,17.160933372894092],[114,-30,78,17.218100694449575],[114,-30,79,17.23653052079048],[114,-29,64,16.87356627843576],[114,-29,65,16.937632828373026],[114,-29,66,16.89526854230183],[114,-29,67,16.694706742602143],[114,-29,68,16.628316120004904],[114,-29,69,16.572016377998487],[114,-29,70,16.588689018074632],[114,-29,71,16.618713960387588],[114,-29,72,16.66413171906977],[114,-29,73,16.720734914019676],[114,-29,74,16.766686913626046],[114,-29,75,16.823124073216782],[114,-29,76,16.894715954510332],[114,-29,77,16.97137855924684],[114,-29,78,17.02686378451955],[114,-29,79,17.044918325181705],[114,-28,64,16.66734138891693],[114,-28,65,16.7423616818541],[114,-28,66,16.706170749860387],[114,-28,67,16.521835482494435],[114,-28,68,16.422513498365692],[114,-28,69,16.38512631292981],[114,-28,70,16.400842813731483],[114,-28,71,16.429264621348945],[114,-28,72,16.47670204096465],[114,-28,73,16.53419805360306],[114,-28,74,16.578391396006378],[114,-28,75,16.63360819572093],[114,-28,76,16.705483996086755],[114,-28,77,16.779640963909856],[114,-28,78,16.834014311869936],[114,-28,79,16.85276597121436],[114,-27,64,16.51728573249767],[114,-27,65,16.563400076971245],[114,-27,66,16.476170339764924],[114,-27,67,16.27946013679495],[114,-27,68,16.191279353154886],[114,-27,69,16.201312186444408],[114,-27,70,16.221205731459232],[114,-27,71,16.25402094048363],[114,-27,72,16.309960069620725],[114,-27,73,16.368784237980023],[114,-27,74,16.41525279559203],[114,-27,75,16.467188654019367],[114,-27,76,16.534563507910597],[114,-27,77,16.602110019294237],[114,-27,78,16.645232980928466],[114,-27,79,16.658815259590618],[114,-26,64,16.381545310079908],[114,-26,65,16.426444080340207],[114,-26,66,16.32506192703858],[114,-26,67,16.119821215485796],[114,-26,68,16.00661120628053],[114,-26,69,16.01845338667124],[114,-26,70,16.040282720075716],[114,-26,71,16.07337564733523],[114,-26,72,16.128780437401822],[114,-26,73,16.184225859047174],[114,-26,74,16.23304045730047],[114,-26,75,16.283058775869126],[114,-26,76,16.349747431078463],[114,-26,77,16.417565812350286],[114,-26,78,16.45876494243084],[114,-26,79,16.470184381470304],[114,-25,64,16.194268453239605],[114,-25,65,16.212253142283014],[114,-25,66,16.135209737440995],[114,-25,67,15.947545358796285],[114,-25,68,15.816939067570118],[114,-25,69,15.829262346117913],[114,-25,70,15.851960099558498],[114,-25,71,15.888104270884133],[114,-25,72,15.94242154339418],[114,-25,73,15.996034008112268],[114,-25,74,16.042860535215347],[114,-25,75,16.094079160373166],[114,-25,76,16.160583304991157],[114,-25,77,16.22711168119531],[114,-25,78,16.26924090662086],[114,-25,79,16.2826222140817],[114,-24,64,16.00664864672936],[114,-24,65,15.962742877313989],[114,-24,66,15.90798663658943],[114,-24,67,15.731592684798313],[114,-24,68,15.635145056201466],[114,-24,69,15.64817159875221],[114,-24,70,15.671524043495856],[114,-24,71,15.709936632137062],[114,-24,72,15.760452894870173],[114,-24,73,15.811900671338007],[114,-24,74,15.858218803305002],[114,-24,75,15.908763430813236],[114,-24,76,15.976103797042065],[114,-24,77,16.04014583376031],[114,-24,78,16.082526264843015],[114,-24,79,16.09549615542166],[114,-23,64,15.739279578665256],[114,-23,65,15.701220222327443],[114,-23,66,15.656774601965587],[114,-23,67,15.530117644062246],[114,-23,68,15.465736756252616],[114,-23,69,15.475637081408994],[114,-23,70,15.496942026243616],[114,-23,71,15.528639049477267],[114,-23,72,15.572326295460309],[114,-23,73,15.620759195077866],[114,-23,74,15.663178862958615],[114,-23,75,15.714563508696061],[114,-23,76,15.78381421883799],[114,-23,77,15.851612671937543],[114,-23,78,15.901669206535072],[114,-23,79,15.919259835759565],[114,-22,64,15.530552762713302],[114,-22,65,15.489904107839095],[114,-22,66,15.440240546727601],[114,-22,67,15.330035016284349],[114,-22,68,15.28641486341297],[114,-22,69,15.2960378768527],[114,-22,70,15.315986723197783],[114,-22,71,15.346248020397153],[114,-22,72,15.389207006093457],[114,-22,73,15.437378238369803],[114,-22,74,15.479610455396504],[114,-22,75,15.530212873111322],[114,-22,76,15.598589594144224],[114,-22,77,15.668624898763296],[114,-22,78,15.715591696696917],[114,-22,79,15.732761968161675],[114,-21,64,15.404078941084013],[114,-21,65,15.320159351663452],[114,-21,66,15.29501971011689],[114,-21,67,15.178510986674144],[114,-21,68,15.101528908053693],[114,-21,69,15.110617616928758],[114,-21,70,15.128789904454504],[114,-21,71,15.157900898212016],[114,-21,72,15.199263402231887],[114,-21,73,15.248914698815236],[114,-21,74,15.29039197883993],[114,-21,75,15.359279985571932],[114,-21,76,15.411531750041187],[114,-21,77,15.479533211432482],[114,-21,78,15.523772949649501],[114,-21,79,15.54298235694131],[114,-20,64,15.198629681008743],[114,-20,65,15.088099237867016],[114,-20,66,15.083719188555053],[114,-20,67,14.974345480827036],[114,-20,68,14.91610774224199],[114,-20,69,14.927775932776669],[114,-20,70,14.941567463437533],[114,-20,71,14.968344576561966],[114,-20,72,15.012453902446895],[114,-20,73,15.05788010500375],[114,-20,74,15.100116742522333],[114,-20,75,15.185126027574324],[114,-20,76,15.241068618756826],[114,-20,77,15.287792936074728],[114,-20,78,15.334503688517843],[114,-20,79,15.354925631144505],[114,-19,64,15.038858087423664],[114,-19,65,14.920399785565177],[114,-19,66,14.85650793565748],[114,-19,67,14.749050721878621],[114,-19,68,14.744446316508204],[114,-19,69,14.753063384192565],[114,-19,70,14.765080081462543],[114,-19,71,14.791997863138066],[114,-19,72,14.834776877691215],[114,-19,73,14.881732921106595],[114,-19,74,14.992674656705313],[114,-19,75,15.092168287427278],[114,-19,76,15.153496861849042],[114,-19,77,15.11084390316493],[114,-19,78,15.15940468128141],[114,-19,79,15.181870574564144],[114,-18,64,14.81587060213894],[114,-18,65,14.713769228039608],[114,-18,66,14.641971102824934],[114,-18,67,14.56008926771375],[114,-18,68,14.56609915344585],[114,-18,69,14.571183565959851],[114,-18,70,14.582604775610372],[114,-18,71,14.610662954747363],[114,-18,72,14.651703173593125],[114,-18,73,14.704818220909912],[114,-18,74,14.842086789360668],[114,-18,75,14.936567628357281],[114,-18,76,14.992258037138889],[114,-18,77,14.946657796076954],[114,-18,78,14.976188295890957],[114,-18,79,14.997894500675445],[114,-17,64,14.60917001664867],[114,-17,65,14.502112497087442],[114,-17,66,14.440011504262724],[114,-17,67,14.373918198560084],[114,-17,68,14.379515883678083],[114,-17,69,14.386482405329014],[114,-17,70,14.399005398893257],[114,-17,71,14.422400771254692],[114,-17,72,14.462945065614262],[114,-17,73,14.530651779127773],[114,-17,74,14.691037310998428],[114,-17,75,14.795014495584361],[114,-17,76,14.817402624429512],[114,-17,77,14.807162133724294],[114,-17,78,14.79103246230738],[114,-17,79,14.810763611166564],[114,-16,64,14.433548366243473],[114,-16,65,14.337769337736374],[114,-16,66,14.288291946136443],[114,-16,67,14.212949173929395],[114,-16,68,14.198889723684264],[114,-16,69,14.20646820639895],[114,-16,70,14.219162730819075],[114,-16,71,14.23963223618254],[114,-16,72,14.313327780713461],[114,-16,73,14.394757582387257],[114,-16,74,14.513337907220977],[114,-16,75,14.601318834592584],[114,-16,76,14.61090079444248],[114,-16,77,14.63583278774601],[114,-16,78,14.606948926948547],[114,-16,79,14.626267369700228],[114,-15,64,14.233794617660376],[114,-15,65,14.158273370016628],[114,-15,66,14.089276677751684],[114,-15,67,14.014841630226378],[114,-15,68,14.02563817680042],[114,-15,69,14.030700763481903],[114,-15,70,14.041250476781814],[114,-15,71,14.057490773557213],[114,-15,72,14.14398674353298],[114,-15,73,14.234588534334383],[114,-15,74,14.338740733595667],[114,-15,75,14.421731588030562],[114,-15,76,14.422746166435807],[114,-15,77,14.43835712313735],[114,-15,78,14.427883539536852],[114,-15,79,14.447945022670751],[114,-14,64,13.93487894930962],[114,-14,65,13.911972008283552],[114,-14,66,13.862775685941148],[114,-14,67,13.836325734811783],[114,-14,68,13.845578201058293],[114,-14,69,13.851993321367726],[114,-14,70,13.860836921910701],[114,-14,71,13.87797339160199],[114,-14,72,13.963593935968944],[114,-14,73,14.034757975518946],[114,-14,74,14.130543117911591],[114,-14,75,14.209451677271463],[114,-14,76,14.214694238334728],[114,-14,77,14.2363083516202],[114,-14,78,14.244407602469643],[114,-14,79,14.266906705456408],[114,-13,64,13.769924899334871],[114,-13,65,13.749194589346555],[114,-13,66,13.695499172155108],[114,-13,67,13.661598679898022],[114,-13,68,13.660445939540477],[114,-13,69,13.6659194291877],[114,-13,70,13.67467151081854],[114,-13,71,13.69146661509441],[114,-13,72,13.80333736697521],[114,-13,73,13.896047210918285],[114,-13,74,13.967047397895833],[114,-13,75,14.053333198222994],[114,-13,76,14.074377797474739],[114,-13,77,14.073000472213261],[114,-13,78,14.06869179405619],[114,-13,79,14.076337241233714],[114,-12,64,13.577728284782902],[114,-12,65,13.54830575512031],[114,-12,66,13.498161574140212],[114,-12,67,13.468348499559484],[114,-12,68,13.474530620996749],[114,-12,69,13.478221865347836],[114,-12,70,13.487610088353987],[114,-12,71,13.504099065613628],[114,-12,72,13.605853171464027],[114,-12,73,13.700017391978292],[114,-12,74,13.76461074012117],[114,-12,75,13.851559668200748],[114,-12,76,13.885108925115173],[114,-12,77,13.873358853468094],[114,-12,78,13.862607909048148],[114,-12,79,13.88216726430978],[114,-11,64,13.421442478991821],[114,-11,65,13.385083915656661],[114,-11,66,13.314597780834971],[114,-11,67,13.286539979952163],[114,-11,68,13.293423944868522],[114,-11,69,13.295851799683144],[114,-11,70,13.310020558298582],[114,-11,71,13.331287215374386],[114,-11,72,13.476121173965625],[114,-11,73,13.607605960803747],[114,-11,74,13.70712384590622],[114,-11,75,13.78879519769211],[114,-11,76,13.819865295834267],[114,-11,77,13.812070321179375],[114,-11,78,13.77724559627406],[114,-11,79,13.73963867100406],[114,-10,64,13.227241973338154],[114,-10,65,13.180352503814953],[114,-10,66,13.123961681006515],[114,-10,67,13.101801478525088],[114,-10,68,13.109752359987855],[114,-10,69,13.110802367501918],[114,-10,70,13.125552411831505],[114,-10,71,13.1514103218781],[114,-10,72,13.276994066884114],[114,-10,73,13.399821747176526],[114,-10,74,13.503774153926676],[114,-10,75,13.582108786059848],[114,-10,76,13.626539323931842],[114,-10,77,13.614260847059532],[114,-10,78,13.575242340266811],[114,-10,79,13.54499785799243],[114,-9,64,13.041550183532445],[114,-9,65,12.986937444153847],[114,-9,66,12.93257275110032],[114,-9,67,12.914823708655554],[114,-9,68,12.920645130004079],[114,-9,69,12.923560761898978],[114,-9,70,12.940245293604681],[114,-9,71,12.967303573307584],[114,-9,72,13.066357470597067],[114,-9,73,13.195788419136335],[114,-9,74,13.300074546710588],[114,-9,75,13.382321935840531],[114,-9,76,13.437290871928175],[114,-9,77,13.42193542597464],[114,-9,78,13.372951405242038],[114,-9,79,13.331260709646633],[114,-8,64,12.79424754105647],[114,-8,65,12.750469025842378],[114,-8,66,12.71969435412656],[114,-8,67,12.7353160123677],[114,-8,68,12.739782638270054],[114,-8,69,12.741504825658067],[114,-8,70,12.757282348675446],[114,-8,71,12.784345371454293],[114,-8,72,12.831986037598767],[114,-8,73,12.952855251369346],[114,-8,74,13.095079343313543],[114,-8,75,13.201701054565342],[114,-8,76,13.255919789530859],[114,-8,77,13.240186598636067],[114,-8,78,13.172121603312137],[114,-8,79,13.143075040684522],[114,-7,64,12.58744519946511],[114,-7,65,12.561416326201426],[114,-7,66,12.538714389849511],[114,-7,67,12.55351097857773],[114,-7,68,12.558282176548593],[114,-7,69,12.559964756889688],[114,-7,70,12.574546265637403],[114,-7,71,12.602940181625243],[114,-7,72,12.649013117222006],[114,-7,73,12.742853103668882],[114,-7,74,12.894259830944359],[114,-7,75,13.000934236283424],[114,-7,76,13.04235759662807],[114,-7,77,13.04307419999822],[114,-7,78,12.976573878690964],[114,-7,79,12.958595359880542],[114,-6,64,12.386536102480271],[114,-6,65,12.36759090369982],[114,-6,66,12.35547183699847],[114,-6,67,12.369180025068069],[114,-6,68,12.375877023275258],[114,-6,69,12.378724734512568],[114,-6,70,12.394311571556935],[114,-6,71,12.419929868735325],[114,-6,72,12.464994806986985],[114,-6,73,12.537919999550873],[114,-6,74,12.709221692724624],[114,-6,75,12.823757316954618],[114,-6,76,12.852724738804326],[114,-6,77,12.840555231809345],[114,-6,78,12.765650547829717],[114,-6,79,12.775105814372516],[114,-5,64,12.18159892705547],[114,-5,65,12.21765190332627],[114,-5,66,12.247612594667785],[114,-5,67,12.21575455340794],[114,-5,68,12.208066989021317],[114,-5,69,12.195462048993068],[114,-5,70,12.208598557905411],[114,-5,71,12.23339134790147],[114,-5,72,12.276071872826689],[114,-5,73,12.327311015042772],[114,-5,74,12.382275904133953],[114,-5,75,12.449701515032649],[114,-5,76,12.481595552809196],[114,-5,77,12.538110875925971],[114,-5,78,12.5764618282298],[114,-5,79,12.585902126589222],[114,-4,64,11.99462984234722],[114,-4,65,12.01856255474604],[114,-4,66,12.045794146418308],[114,-4,67,12.013310266962387],[114,-4,68,12.00896965001015],[114,-4,69,12.009704829415185],[114,-4,70,12.021459121770368],[114,-4,71,12.044440890685374],[114,-4,72,12.085595453907652],[114,-4,73,12.137350748777436],[114,-4,74,12.183113882961862],[114,-4,75,12.230761166838091],[114,-4,76,12.290980760619734],[114,-4,77,12.347099477978775],[114,-4,78,12.382668209838462],[114,-4,79,12.393563050424383],[114,-3,64,11.851420601032245],[114,-3,65,11.877917591586394],[114,-3,66,11.889014609126258],[114,-3,67,11.872922074719975],[114,-3,68,11.868586604496434],[114,-3,69,11.836849020898756],[114,-3,70,11.846589562205443],[114,-3,71,11.863949054010538],[114,-3,72,11.905329435814673],[114,-3,73,11.949823551186181],[114,-3,74,12.023162391159367],[114,-3,75,12.07039635742734],[114,-3,76,12.110374460520967],[114,-3,77,12.166731146297602],[114,-3,78,12.205431759846508],[114,-3,79,12.22342225034764],[114,-2,64,11.654604538511737],[114,-2,65,11.678131641241036],[114,-2,66,11.678782300661435],[114,-2,67,11.676732318735226],[114,-2,68,11.663344253684349],[114,-2,69,11.666407326659368],[114,-2,70,11.666451694450233],[114,-2,71,11.682451267197662],[114,-2,72,11.719551031745748],[114,-2,73,11.770039252926699],[114,-2,74,11.812649059250424],[114,-2,75,11.86408142563052],[114,-2,76,11.924445269685213],[114,-2,77,11.984380701861367],[114,-2,78,12.02127634892944],[114,-2,79,12.040960984037524],[114,-1,64,11.480545379131934],[114,-1,65,11.510233162664706],[114,-1,66,11.51848899229116],[114,-1,67,11.50949604712425],[114,-1,68,11.520211061964774],[114,-1,69,11.537248682672718],[114,-1,70,11.494849080486736],[114,-1,71,11.525358495045733],[114,-1,72,11.579474918230613],[114,-1,73,11.605292806208714],[114,-1,74,11.632046377316836],[114,-1,75,11.681355026804127],[114,-1,76,11.740404651134433],[114,-1,77,11.800902649655042],[114,-1,78,11.837152118094409],[114,-1,79,11.857441172062519],[114,0,64,11.300798016126755],[114,0,65,11.34517370499795],[114,0,66,11.377688609552152],[114,0,67,11.39510997963479],[114,0,68,11.406229270340852],[114,0,69,11.415462467573953],[114,0,70,11.427856908591146],[114,0,71,11.45143669338965],[114,0,72,11.488525894243184],[114,0,73,11.537877454941482],[114,0,74,11.582931938113955],[114,0,75,11.628186544273223],[114,0,76,11.679952487807158],[114,0,77,11.735301131284281],[114,0,78,11.762141492903888],[114,0,79,11.772858098962871],[114,1,64,11.112791446132755],[114,1,65,11.158673227451628],[114,1,66,11.190520876507096],[114,1,67,11.208321071478293],[114,1,68,11.218865093213056],[114,1,69,11.229505705105343],[114,1,70,11.24128968031154],[114,1,71,11.265212834456925],[114,1,72,11.303111368025192],[114,1,73,11.35582597738965],[114,1,74,11.399860616036177],[114,1,75,11.4472223102383],[114,1,76,11.498981900941835],[114,1,77,11.548081384462531],[114,1,78,11.579012771893593],[114,1,79,11.58681083938104],[114,2,64,10.925538300554742],[114,2,65,10.97117637921992],[114,2,66,11.004850243081668],[114,2,67,11.024072241892945],[114,2,68,11.034775655483665],[114,2,69,11.045779784911412],[114,2,70,11.053519250721255],[114,2,71,11.076161101954382],[114,2,72,11.116012061247348],[114,2,73,11.171619579610585],[114,2,74,11.213952812337228],[114,2,75,11.263202399967982],[114,2,76,11.314907422295672],[114,2,77,11.363178425856027],[114,2,78,11.39299115151453],[114,2,79,11.402087914249899],[114,3,64,10.739119438326378],[114,3,65,10.786759881304404],[114,3,66,10.819478879160952],[114,3,67,10.836728122065802],[114,3,68,10.847669958192714],[114,3,69,10.86006827423366],[114,3,70,10.868890899774883],[114,3,71,10.88851056642419],[114,3,72,10.93071768761033],[114,3,73,10.98723859118512],[114,3,74,11.030688321119108],[114,3,75,11.076281469857275],[114,3,76,11.129501235531828],[114,3,77,11.177241564314032],[114,3,78,11.205882194979873],[114,3,79,11.219857264813376],[114,4,64,10.551797192411074],[114,4,65,10.598913461725628],[114,4,66,10.630918330789138],[114,4,67,10.650121143453953],[114,4,68,10.662579117891319],[114,4,69,10.675818460164622],[114,4,70,10.686521530301281],[114,4,71,10.705274203650017],[114,4,72,10.751127870119879],[114,4,73,10.8032316203055],[114,4,74,10.84757143549857],[114,4,75,10.89358921989356],[114,4,76,10.947133042640987],[114,4,77,10.993125549603336],[114,4,78,11.023779975401688],[114,4,79,11.03781435121674],[114,5,64,10.365181541781396],[114,5,65,10.409890363948037],[114,5,66,10.44461577871345],[114,5,67,10.465024088043574],[114,5,68,10.48026946242632],[114,5,69,10.490401984470134],[114,5,70,10.500635567445027],[114,5,71,10.523760700674368],[114,5,72,10.567465393023868],[114,5,73,10.619673780672718],[114,5,74,10.665087106104504],[114,5,75,10.712907697007209],[114,5,76,10.764157811859016],[114,5,77,10.810688492606381],[114,5,78,10.842324088505663],[114,5,79,10.856319199907254],[114,6,64,10.17739526306588],[114,6,65,10.220010023065361],[114,6,66,10.257674512481314],[114,6,67,10.283578340914362],[114,6,68,10.296103779160656],[114,6,69,10.3084447833788],[114,6,70,10.317875122455877],[114,6,71,10.340957561310011],[114,6,72,10.384834152843434],[114,6,73,10.435654317230803],[114,6,74,10.482142757888452],[114,6,75,10.532029032260558],[114,6,76,10.584271140368061],[114,6,77,10.630204813513226],[114,6,78,10.662070896485055],[114,6,79,10.676783087382168],[114,7,64,9.98781071645843],[114,7,65,10.032895578702831],[114,7,66,10.071639335249573],[114,7,67,10.096608874066126],[114,7,68,10.11041762974931],[114,7,69,10.125272390538706],[114,7,70,10.134633259491665],[114,7,71,10.157997641049926],[114,7,72,10.20146200704624],[114,7,73,10.252870194538586],[114,7,74,10.302353339271985],[114,7,75,10.351489795352002],[114,7,76,10.40011949597424],[114,7,77,10.44837297342524],[114,7,78,10.480146953274355],[114,7,79,10.491292804424933],[114,8,64,9.8015590163603],[114,8,65,9.84660153106451],[114,8,66,9.884350672533722],[114,8,67,9.913600659849449],[114,8,68,9.929010975244848],[114,8,69,9.945822659383163],[114,8,70,9.957390140296647],[114,8,71,9.980018264139995],[114,8,72,10.02422371756084],[114,8,73,10.07626516042677],[114,8,74,10.125735736631157],[114,8,75,10.17724017579499],[114,8,76,10.225734767303875],[114,8,77,10.27262350241806],[114,8,78,10.303577414371432],[114,8,79,10.315026899639765],[114,9,64,9.615060501981699],[114,9,65,9.663154143179199],[114,9,66,9.702156559399903],[114,9,67,9.735110416161879],[114,9,68,9.754157276336507],[114,9,69,9.770933710364492],[114,9,70,9.783117028437537],[114,9,71,9.802736027648681],[114,9,72,9.845534264103122],[114,9,73,9.896558895727923],[114,9,74,9.942537961689174],[114,9,75,9.9932729618865],[114,9,76,10.042793028249053],[114,9,77,10.091527278969824],[114,9,78,10.119722698564214],[114,9,79,10.132807540547425],[114,10,64,9.42590852264658],[114,10,65,9.47490611148833],[114,10,66,9.516099449622443],[114,10,67,9.546782875336778],[114,10,68,9.568509369733098],[114,10,69,9.586855354657374],[114,10,70,9.600406152574642],[114,10,71,9.619727210254423],[114,10,72,9.661628849542982],[114,10,73,9.715282209349503],[114,10,74,9.761397951742037],[114,10,75,9.809944944044503],[114,10,76,9.857623074301264],[114,10,77,9.906912304237487],[114,10,78,9.934377180993305],[114,10,79,9.948936312653617],[114,11,64,9.238470252723635],[114,11,65,9.284749654824205],[114,11,66,9.329177008067605],[114,11,67,9.360201080510107],[114,11,68,9.380369440226495],[114,11,69,9.400731532342828],[114,11,70,9.415301329746528],[114,11,71,9.437169067810583],[114,11,72,9.477487956779315],[114,11,73,9.530757516978808],[114,11,74,9.578872579231284],[114,11,75,9.62717666079887],[114,11,76,9.674871973196334],[114,11,77,9.722800981264184],[114,11,78,9.751501739995549],[114,11,79,9.765274038181207],[114,12,64,9.050743752558521],[114,12,65,9.095088020010534],[114,12,66,9.137406577789724],[114,12,67,9.167666405519396],[114,12,68,9.185297027406873],[114,12,69,9.207073932867946],[114,12,70,9.226768772223366],[114,12,71,9.248719191463206],[114,12,72,9.286436902536918],[114,12,73,9.338589986801065],[114,12,74,9.38743142426639],[114,12,75,9.435307105388052],[114,12,76,9.483215595516898],[114,12,77,9.52932305455662],[114,12,78,9.559189742580044],[114,12,79,9.57347106226559],[114,13,64,8.8594838378208],[114,13,65,8.90373585349257],[114,13,66,8.943403712861612],[114,13,67,8.97185111589433],[114,13,68,8.988070264938072],[114,13,69,9.011431432762983],[114,13,70,9.032700990269314],[114,13,71,9.058806438897795],[114,13,72,9.098729349151785],[114,13,73,9.154482548269787],[114,13,74,9.203295688645722],[114,13,75,9.251388282115894],[114,13,76,9.297613924549264],[114,13,77,9.343317774580514],[114,13,78,9.37407937630729],[114,13,79,9.389911749851978],[114,14,64,8.672869912536628],[114,14,65,8.716223972515072],[114,14,66,8.756715160974021],[114,14,67,8.7868340713775],[114,14,68,8.804442446831224],[114,14,69,8.824568626890574],[114,14,70,8.844799543438778],[114,14,71,8.873903967002892],[114,14,72,8.914164817568961],[114,14,73,8.970524918880345],[114,14,74,9.020562668506269],[114,14,75,9.067668093923142],[114,14,76,9.11506502530232],[114,14,77,9.158671033257342],[114,14,78,9.19119287423734],[114,14,79,9.20667811510101],[114,15,64,8.483713356598928],[114,15,65,8.529061535531778],[114,15,66,8.569898623427113],[114,15,67,8.601218097450554],[114,15,68,8.619719792917897],[114,15,69,8.638283755993006],[114,15,70,8.658291469554952],[114,15,71,8.68706499262683],[114,15,72,8.730100077188926],[114,15,73,8.785915035070886],[114,15,74,8.839540932264772],[114,15,75,8.883841210919943],[114,15,76,8.93198746803908],[114,15,77,8.975662133100863],[114,15,78,9.0101272316515],[114,15,79,9.024387612761387],[114,16,64,8.292265398874408],[114,16,65,8.338474099284783],[114,16,66,8.381685980702661],[114,16,67,8.416545068395509],[114,16,68,8.434378413490174],[114,16,69,8.453196727795484],[114,16,70,8.47625189585463],[114,16,71,8.502778286308926],[114,16,72,8.548576236331748],[114,16,73,8.606616506858352],[114,16,74,8.661076800318513],[114,16,75,8.706997109245545],[114,16,76,8.75173652075391],[114,16,77,8.798096944638408],[114,16,78,8.831033230238333],[114,16,79,8.846182282551341],[114,17,64,8.105906099350944],[114,17,65,8.151126297862215],[114,17,66,8.193687929782742],[114,17,67,8.228295478958403],[114,17,68,8.247384045068088],[114,17,69,8.267816438330492],[114,17,70,8.291702857576462],[114,17,71,8.317149326994931],[114,17,72,8.36575688093223],[114,17,73,8.422082505555085],[114,17,74,8.475454927178141],[114,17,75,8.523179821401849],[114,17,76,8.568599138510512],[114,17,77,8.614522588935104],[114,17,78,8.645797385161911],[114,17,79,8.659271157478976],[114,18,64,7.918900742950113],[114,18,65,7.966288430076006],[114,18,66,8.005985530613232],[114,18,67,8.04029704504348],[114,18,68,8.062407515010673],[114,18,69,8.082409242682042],[114,18,70,8.104750622673944],[114,18,71,8.134116345830973],[114,18,72,8.182607865527213],[114,18,73,8.239288538545829],[114,18,74,8.291104908681772],[114,18,75,8.338748149625427],[114,18,76,8.385976052187807],[114,18,77,8.429360959166088],[114,18,78,8.458719477263664],[114,18,79,8.471250104661651],[114,19,64,7.7346767389097835],[114,19,65,7.780030858125985],[114,19,66,7.821549477211363],[114,19,67,7.853142372992221],[114,19,68,7.877104435753065],[114,19,69,7.8974455308461255],[114,19,70,7.921376775183445],[114,19,71,7.952243413242199],[114,19,72,7.998667895232596],[114,19,73,8.057032984282111],[114,19,74,8.107550602028223],[114,19,75,8.151252192615141],[114,19,76,8.199589217760863],[114,19,77,8.243164654060744],[114,19,78,8.27292358098858],[114,19,79,8.284806552396372],[114,20,64,7.55085454369797],[114,20,65,7.5946625730776125],[114,20,66,7.632956479837812],[114,20,67,7.66171661013866],[114,20,68,7.687238059291601],[114,20,69,7.708521189565548],[114,20,70,7.732874433147724],[114,20,71,7.764160543616697],[114,20,72,7.809315122831781],[114,20,73,7.8670152677940495],[114,20,74,7.916193696999387],[114,20,75,7.957147754433106],[114,20,76,8.00448489976421],[114,20,77,8.049177754111804],[114,20,78,8.080169764321575],[114,20,79,8.09324977185],[114,21,64,7.372568554335703],[114,21,65,7.41587551799139],[114,21,66,7.452083583527486],[114,21,67,7.479407804252221],[114,21,68,7.503777759176646],[114,21,69,7.52717805312243],[114,21,70,7.549313771242103],[114,21,71,7.576692883235829],[114,21,72,7.622198796677668],[114,21,73,7.679163379715804],[114,21,74,7.727955548385161],[114,21,75,7.766890058872179],[114,21,76,7.813418449180969],[114,21,77,7.862198153875369],[114,21,78,7.893500037662229],[114,21,79,7.909282730446583],[114,22,64,7.187096534085983],[114,22,65,7.232389522064502],[114,22,66,7.266530685956887],[114,22,67,7.291611886397932],[114,22,68,7.313847837423407],[114,22,69,7.340093349545283],[114,22,70,7.361072178404201],[114,22,71,7.391764999566761],[114,22,72,7.440721420515253],[114,22,73,7.492777639594961],[114,22,74,7.543589820012318],[114,22,75,7.578520812337999],[114,22,76,7.624355316610346],[114,22,77,7.671755943743749],[114,22,78,7.703358375521907],[114,22,79,7.721764155484266],[114,23,64,7.004656728803165],[114,23,65,7.045525951377281],[114,23,66,7.0799830246492705],[114,23,67,7.103289992359397],[114,23,68,7.125741297961838],[114,23,69,7.153577983053985],[114,23,70,7.1752091996162335],[114,23,71,7.2074609745767315],[114,23,72,7.25713764724652],[114,23,73,7.309687839854909],[114,23,74,7.3573827361321635],[114,23,75,7.394732894441048],[114,23,76,7.437814448572606],[114,23,77,7.48181349166035],[114,23,78,7.513005983603025],[114,23,79,7.53259082467085],[114,24,64,6.831075588331294],[114,24,65,6.870423572884113],[114,24,66,6.903625552084598],[114,24,67,6.9290329957721575],[114,24,68,6.949975919635525],[114,24,69,6.974783895512773],[114,24,70,6.999559720965892],[114,24,71,7.03239943044102],[114,24,72,7.081270652333047],[114,24,73,7.136339389035684],[114,24,74,7.183258851990924],[114,24,75,7.220141405807517],[114,24,76,7.259360055602901],[114,24,77,7.302246620583955],[114,24,78,7.333850987678395],[114,24,79,7.354211714744679],[114,25,64,6.65730185154689],[114,25,65,6.698027544602593],[114,25,66,6.730991525012292],[114,25,67,6.757798502706614],[114,25,68,6.779161701174134],[114,25,69,6.800662006137351],[114,25,70,6.8253643548554],[114,25,71,6.857141132428115],[114,25,72,6.90336456436176],[114,25,73,6.958617628069381],[114,25,74,7.007910437375915],[114,25,75,7.0452262097058265],[114,25,76,7.079382840699885],[114,25,77,7.115095058391665],[114,25,78,7.139636876619003],[114,25,79,7.154381808427156],[114,26,64,6.473701278879751],[114,26,65,6.51445677163537],[114,26,66,6.549054021452654],[114,26,67,6.575554513777249],[114,26,68,6.594642007799452],[114,26,69,6.614202990677651],[114,26,70,6.640194693790811],[114,26,71,6.669899155313502],[114,26,72,6.717972259365308],[114,26,73,6.772811828508763],[114,26,74,6.819412001530736],[114,26,75,6.856891229352199],[114,26,76,6.890236608819698],[114,26,77,6.924646336807878],[114,26,78,6.9514305116058726],[114,26,79,6.966323137810476],[114,27,64,6.2898100029878155],[114,27,65,6.329793537897152],[114,27,66,6.364266981451893],[114,27,67,6.391804026337988],[114,27,68,6.408820393200959],[114,27,69,6.427913536207959],[114,27,70,6.453174150112359],[114,27,71,6.483715634090887],[114,27,72,6.529532180556783],[114,27,73,6.583842220785847],[114,27,74,6.631051217570052],[114,27,75,6.668900534289334],[114,27,76,6.703328734810221],[114,27,77,6.736002825082921],[114,27,78,6.76396695802108],[114,27,79,6.779082993617733],[114,28,64,6.106169268890346],[114,28,65,6.145051451437388],[114,28,66,6.180034647034781],[114,28,67,6.204654165976045],[114,28,68,6.219749109411022],[114,28,69,6.237128054668819],[114,28,70,6.260325830060883],[114,28,71,6.290299248693444],[114,28,72,6.334625221821594],[114,28,73,6.388764968452025],[114,28,74,6.43686385330399],[114,28,75,6.4753477618170185],[114,28,76,6.508253022213295],[114,28,77,6.54017314120103],[114,28,78,6.567841615769898],[114,28,79,6.582522692140847],[114,29,64,5.917869646184108],[114,29,65,5.9587232429533135],[114,29,66,5.989939958234631],[114,29,67,6.014765724864471],[114,29,68,6.028226444552656],[114,29,69,6.043994894387396],[114,29,70,6.065557604500874],[114,29,71,6.097746948071415],[114,29,72,6.1400843481154235],[114,29,73,6.194546315535557],[114,29,74,6.243289260937492],[114,29,75,6.281169469778541],[114,29,76,6.314840991767071],[114,29,77,6.348087448593528],[114,29,78,6.374449011627301],[114,29,79,6.389825533754712],[114,30,64,5.730988385535069],[114,30,65,5.7754036280589345],[114,30,66,5.807810137144846],[114,30,67,5.827833562145613],[114,30,68,5.839494114262915],[114,30,69,5.855590877127993],[114,30,70,5.876823703270288],[114,30,71,5.908849747885905],[114,30,72,5.951462368548475],[114,30,73,6.0034836627425845],[114,30,74,6.053109782485581],[114,30,75,6.090319536650384],[114,30,76,6.123762164767581],[114,30,77,6.158720142525288],[114,30,78,6.182755802529115],[114,30,79,6.196499012755632],[114,31,64,5.544545671223933],[114,31,65,5.58846111033825],[114,31,66,5.622115599297867],[114,31,67,5.638366179705345],[114,31,68,5.652933125562688],[114,31,69,5.670554018156546],[114,31,70,5.689119166016482],[114,31,71,5.72080196298732],[114,31,72,5.761224025854262],[114,31,73,5.81199524348498],[114,31,74,5.8618526364844294],[114,31,75,5.89902427280612],[114,31,76,5.929775818805288],[114,31,77,5.9653149436032535],[114,31,78,5.990068697808955],[114,31,79,6.0057949357097105],[114,32,64,5.370256354256372],[114,32,65,5.4132838058099155],[114,32,66,5.448275136906321],[114,32,67,5.462602628675669],[114,32,68,5.477408300432708],[114,32,69,5.493745372996644],[114,32,70,5.512325152389311],[114,32,71,5.542875274820135],[114,32,72,5.585089911434929],[114,32,73,5.635156032608925],[114,32,74,5.679956109210501],[114,32,75,5.7188633042673],[114,32,76,5.750898727281768],[114,32,77,5.784686138595149],[114,32,78,5.8100580346961195],[114,32,79,5.827868319747895],[114,33,64,5.175955144240787],[114,33,65,5.219999865811131],[114,33,66,5.25711364089228],[114,33,67,5.271889231165382],[114,33,68,5.286338557872207],[114,33,69,5.303607626360854],[114,33,70,5.321326742334552],[114,33,71,5.349118534714572],[114,33,72,5.387113874595885],[114,33,73,5.435325394706061],[114,33,74,5.478995064816298],[114,33,75,5.517224173336031],[114,33,76,5.550120553450186],[114,33,77,5.581812065746954],[114,33,78,5.611093642671546],[114,33,79,5.630156784440413],[114,34,64,4.991531766360898],[114,34,65,5.035284739388914],[114,34,66,5.070057080189643],[114,34,67,5.087493251055102],[114,34,68,5.10034520854836],[114,34,69,5.115980151348474],[114,34,70,5.133200632245618],[114,34,71,5.161105783063801],[114,34,72,5.195174548412716],[114,34,73,5.243595346065673],[114,34,74,5.288773908879608],[114,34,75,5.327274544234654],[114,34,76,5.359884147959909],[114,34,77,5.39261968911383],[114,34,78,5.418620448312714],[114,34,79,5.439336793219197],[114,35,64,4.804148037825857],[114,35,65,4.849839487017907],[114,35,66,4.886334153245468],[114,35,67,4.902549137873889],[114,35,68,4.913911644404399],[114,35,69,4.927664165937345],[114,35,70,4.9452137236210625],[114,35,71,4.9699302019956795],[114,35,72,5.005572784772546],[114,35,73,5.055174867423498],[114,35,74,5.0982849467207],[114,35,75,5.137476546339766],[114,35,76,5.171162876555013],[114,35,77,5.204022730672019],[114,35,78,5.229714684623103],[114,35,79,5.2498673964817755],[114,36,64,4.616159045806499],[114,36,65,4.6627008401756065],[114,36,66,4.696243070796384],[114,36,67,4.714226967434263],[114,36,68,4.725923579437557],[114,36,69,4.7363747207547675],[114,36,70,4.75206097676679],[114,36,71,4.774852129335038],[114,36,72,4.813054078816209],[114,36,73,4.861274065845086],[114,36,74,4.902975646803734],[114,36,75,4.946838226540934],[114,36,76,4.981593649605868],[114,36,77,5.013538116141449],[114,36,78,5.039066795274193],[114,36,79,5.056528803756475],[114,37,64,4.4478277253810665],[114,37,65,4.484217067363631],[114,37,66,4.510257090190661],[114,37,67,4.526890236692574],[114,37,68,4.537030088867483],[114,37,69,4.544052025712429],[114,37,70,4.559540226236558],[114,37,71,4.581624795399289],[114,37,72,4.623932378331999],[114,37,73,4.675611669346238],[114,37,74,4.717533529996445],[114,37,75,4.758646097132598],[114,37,76,4.797919047707432],[114,37,77,4.826971358163907],[114,37,78,4.851872701296243],[114,37,79,4.874271211070928],[114,38,64,4.265053701693924],[114,38,65,4.3006667517086274],[114,38,66,4.3242713166707345],[114,38,67,4.340827879758728],[114,38,68,4.350983973473126],[114,38,69,4.35603773825409],[114,38,70,4.36941705336279],[114,38,71,4.395717796089798],[114,38,72,4.436798228659026],[114,38,73,4.490370747663026],[114,38,74,4.533069460087154],[114,38,75,4.571871866073784],[114,38,76,4.607515657199914],[114,38,77,4.637233919343134],[114,38,78,4.6627177535968345],[114,38,79,4.684254896492204],[114,39,64,4.0800807131436265],[114,39,65,4.113451540734342],[114,39,66,4.137605101245017],[114,39,67,4.152606198938865],[114,39,68,4.161820376508559],[114,39,69,4.168792901073939],[114,39,70,4.181270516668112],[114,39,71,4.2068940932859284],[114,39,72,4.249306729220851],[114,39,73,4.304235092971206],[114,39,74,4.348120573970999],[114,39,75,4.384363500855089],[114,39,76,4.417715670679407],[114,39,77,4.446694284672745],[114,39,78,4.474422794699086],[114,39,79,4.497867545447101],[114,40,64,3.9042843877566766],[114,40,65,3.9390607432603035],[114,40,66,3.9633780194483172],[114,40,67,3.9764832325809762],[114,40,68,3.9859966939717113],[114,40,69,3.996515243391056],[114,40,70,4.007125331186622],[114,40,71,4.033176976770823],[114,40,72,4.078639030089027],[114,40,73,4.133196259094372],[114,40,74,4.17818373534295],[114,40,75,4.214645960939878],[114,40,76,4.242791507235278],[114,40,77,4.271384738107921],[114,40,78,4.300593064977893],[114,40,79,4.3259643352834365],[114,41,64,3.7169248744286385],[114,41,65,3.750437003685669],[114,41,66,3.7735794307512847],[114,41,67,3.786859438146617],[114,41,68,3.795100674804925],[114,41,69,3.8085398640387194],[114,41,70,3.8215509554127447],[114,41,71,3.8472156474221255],[114,41,72,3.893459272358544],[114,41,73,3.9480271926579724],[114,41,74,3.9949463134623096],[114,41,75,4.028192206185485],[114,41,76,4.054560404105656],[114,41,77,4.080615258587045],[114,41,78,4.111153034181122],[114,41,79,4.136821126225297],[114,42,64,3.528396914528256],[114,42,65,3.5641640714445133],[114,42,66,3.584671243363794],[114,42,67,3.5984162298997195],[114,42,68,3.6065096867600657],[114,42,69,3.6192488690252036],[114,42,70,3.6330954546080765],[114,42,71,3.661967651686614],[114,42,72,3.706647292500571],[114,42,73,3.7612949421054283],[114,42,74,3.8080220984570596],[114,42,75,3.839904933156988],[114,42,76,3.864494248449017],[114,42,77,3.8914651419734136],[114,42,78,3.9206488090851948],[114,42,79,3.94858964494492],[114,43,64,3.3425449590470757],[114,43,65,3.376426700517756],[114,43,66,3.3961595664012663],[114,43,67,3.411040157139149],[114,43,68,3.4192507895518047],[114,43,69,3.4314747716906475],[114,43,70,3.4476018526711343],[114,43,71,3.475929817130063],[114,43,72,3.519663730420762],[114,43,73,3.5730999392977756],[114,43,74,3.620870573332512],[114,43,75,3.655285559824993],[114,43,76,3.6763455351871266],[114,43,77,3.7038001122172615],[114,43,78,3.7314483502218785],[114,43,79,3.7624797445191906],[114,44,64,3.1505900827353055],[114,44,65,3.1827568835350255],[114,44,66,3.204204771668827],[114,44,67,3.2209461719660646],[114,44,68,3.2291206214488826],[114,44,69,3.2413055244541296],[114,44,70,3.258976350041997],[114,44,71,3.2865160554271506],[114,44,72,3.329884847093887],[114,44,73,3.3820063134898164],[114,44,74,3.4316873023117793],[114,44,75,3.465513009739605],[114,44,76,3.4854840356513477],[114,44,77,3.5104191851849635],[114,44,78,3.538255388850699],[114,44,79,3.5698325635537502],[114,45,64,2.9472197367522437],[114,45,65,2.981087523374562],[114,45,66,3.008194404789019],[114,45,67,3.0300731901433284],[114,45,68,3.04622901749729],[114,45,69,3.061689017948931],[114,45,70,3.08763030413003],[114,45,71,3.1200614059760263],[114,45,72,3.1658868188485965],[114,45,73,3.2194376053767564],[114,45,74,3.2684560786159595],[114,45,75,3.30433038262437],[114,45,76,3.324997595142304],[114,45,77,3.3464441873582516],[114,45,78,3.370562568058466],[114,45,79,3.3958656739836255],[114,46,64,2.7577324725986787],[114,46,65,2.7920245937465067],[114,46,66,2.821678216830779],[114,46,67,2.8422420504378407],[114,46,68,2.858024705113272],[114,46,69,2.874967999276791],[114,46,70,2.901696520686092],[114,46,71,2.93298078765907],[114,46,72,2.9790664227493058],[114,46,73,3.032795059176979],[114,46,74,3.0806780355033343],[114,46,75,3.1160623653429367],[114,46,76,3.1371996877345696],[114,46,77,3.159632328266822],[114,46,78,3.182145871920226],[114,46,79,3.207659154983435],[114,47,64,2.5692694252344084],[114,47,65,2.6039080062905082],[114,47,66,2.633409554897497],[114,47,67,2.6557998655128237],[114,47,68,2.669000966276481],[114,47,69,2.6869691094645605],[114,47,70,2.7161556755964535],[114,47,71,2.747490204485993],[114,47,72,2.7912893473228344],[114,47,73,2.844110546400279],[114,47,74,2.894808930032335],[114,47,75,2.9298587533875664],[114,47,76,2.9508039287056365],[114,47,77,2.9716149612897658],[114,47,78,2.9947707243188604],[114,47,79,3.01981618708348],[114,48,64,2.395536131613059],[114,48,65,2.4309018366153623],[114,48,66,2.4598652318537177],[114,48,67,2.481718715203572],[114,48,68,2.495238955557904],[114,48,69,2.5163711840693868],[114,48,70,2.542691467123863],[114,48,71,2.572425683820816],[114,48,72,2.6156959327146563],[114,48,73,2.6689973913717573],[114,48,74,2.7207063571153585],[114,48,75,2.7555378224778724],[114,48,76,2.7784485452995615],[114,48,77,2.798833637893152],[114,48,78,2.8208381634142787],[114,48,79,2.8450124413875155],[114,49,64,2.2077024848353766],[114,49,65,2.2460680040274417],[114,49,66,2.2801050289336486],[114,49,67,2.301331603674548],[114,49,68,2.319925761285709],[114,49,69,2.3408566620665416],[114,49,70,2.3618725673150025],[114,49,71,2.385757363211538],[114,49,72,2.421533199840321],[114,49,73,2.469729867604964],[114,49,74,2.516985538042392],[114,49,75,2.5548869977089335],[114,49,76,2.5790344955391946],[114,49,77,2.5996799676202826],[114,49,78,2.620737692704711],[114,49,79,2.643611994091842],[114,50,64,2.0171117434321033],[114,50,65,2.0591411355448384],[114,50,66,2.0919722005077683],[114,50,67,2.1150441645238547],[114,50,68,2.1334030000765996],[114,50,69,2.154297036367839],[114,50,70,2.1720273038569737],[114,50,71,2.1957403405663247],[114,50,72,2.232301530386067],[114,50,73,2.281006417843985],[114,50,74,2.3258092742388414],[114,50,75,2.3629559489117926],[114,50,76,2.3868767946785567],[114,50,77,2.4091365537452023],[114,50,78,2.4307960971938236],[114,50,79,2.4542674015692847],[114,51,64,1.825896298025674],[114,51,65,1.86966457439338],[114,51,66,1.9004259919722177],[114,51,67,1.9254963017066824],[114,51,68,1.946713042319061],[114,51,69,1.9678459849026761],[114,51,70,1.9834777124531462],[114,51,71,2.0067784832689624],[114,51,72,2.044608000691802],[114,51,73,2.0926734089101355],[114,51,74,2.1344791100646323],[114,51,75,2.1712562119585783],[114,51,76,2.195971112352853],[114,51,77,2.214549083741276],[114,51,78,2.2382327252540355],[114,51,79,2.2657132631299537],[114,52,64,1.6470333538643436],[114,52,65,1.6922686839611112],[114,52,66,1.722985925720651],[114,52,67,1.7499192354617699],[114,52,68,1.7709309297769003],[114,52,69,1.7924821649071585],[114,52,70,1.8090561856904988],[114,52,71,1.8307231157318973],[114,52,72,1.8676256751219888],[114,52,73,1.9170883158399732],[114,52,74,1.9604455266869756],[114,52,75,1.994271596072019],[114,52,76,2.0207241597535055],[114,52,77,2.0363895323754533],[114,52,78,2.0607963360054002],[114,52,79,2.087837502902471],[114,53,64,1.4624662358961684],[114,53,65,1.5024576534577334],[114,53,66,1.532354271699917],[114,53,67,1.557975772087692],[114,53,68,1.578143149895696],[114,53,69,1.596704684938176],[114,53,70,1.6103875508524317],[114,53,71,1.6341528972062327],[114,53,72,1.6704585231805587],[114,53,73,1.7189452264393645],[114,53,74,1.7633559939560495],[114,53,75,1.7951946408893706],[114,53,76,1.8201460581298339],[114,53,77,1.838440085044939],[114,53,78,1.8624783004806067],[114,53,79,1.8912447642637915],[114,54,64,1.2706848683207157],[114,54,65,1.3078242816708345],[114,54,66,1.341570160332895],[114,54,67,1.3668295031367388],[114,54,68,1.3884121850757647],[114,54,69,1.4065048153173385],[114,54,70,1.4204821684032503],[114,54,71,1.4448743458366065],[114,54,72,1.4835285855690583],[114,54,73,1.532555858046478],[114,54,74,1.577509825679848],[114,54,75,1.6086681685508752],[114,54,76,1.6294989116857819],[114,54,77,1.6505826117368412],[114,54,78,1.673431809522817],[114,54,79,1.6988639263683984],[114,55,64,1.0798520192008367],[114,55,65,1.115174856154854],[114,55,66,1.1489970015577775],[114,55,67,1.1746288766209172],[114,55,68,1.1947197275908144],[114,55,69,1.2125579457951228],[114,55,70,1.2331847990055758],[114,55,71,1.257403378389628],[114,55,72,1.2953657328773047],[114,55,73,1.3454780413374519],[114,55,74,1.3890310347693213],[114,55,75,1.4196291483458965],[114,55,76,1.4400975138780518],[114,55,77,1.4619272432130597],[114,55,78,1.4847471694299879],[114,55,79,1.5077559178739683],[114,56,64,0.9047592616390103],[114,56,65,0.940503911834964],[114,56,66,0.9723693238739793],[114,56,67,0.9951127623559417],[114,56,68,1.0159843385534155],[114,56,69,1.0349112921001984],[114,56,70,1.058307727531659],[114,56,71,1.085802072988281],[114,56,72,1.122717828069568],[114,56,73,1.1706312955300746],[114,56,74,1.214695933593181],[114,56,75,1.2465307935639605],[114,56,76,1.2659048239735375],[114,56,77,1.2878067996431406],[114,56,78,1.3119855884194478],[114,56,79,1.3344435110379604],[114,57,64,0.7154714871259031],[114,57,65,0.7525757473329018],[114,57,66,0.7841273218529993],[114,57,67,0.8080298587594262],[114,57,68,0.8273276920556222],[114,57,69,0.8493204870366147],[114,57,70,0.8720533656038081],[114,57,71,0.8978707212130769],[114,57,72,0.9301165695502298],[114,57,73,0.9732444161455212],[114,57,74,1.0166290637736972],[114,57,75,1.0497624137684956],[114,57,76,1.0713481730112822],[114,57,77,1.0906459427597885],[114,57,78,1.11458176423228],[114,57,79,1.1379489182200146],[114,58,64,0.5661221969412163],[114,58,65,0.6011329296498101],[114,58,66,0.6325260496314329],[114,58,67,0.6557122794989251],[114,58,68,0.6759830332973922],[114,58,69,0.6971662876285278],[114,58,70,0.7179208845155756],[114,58,71,0.7451502806697341],[114,58,72,0.779757873165063],[114,58,73,0.8197279358607094],[114,58,74,0.8620056433721015],[114,58,75,0.892921953939938],[114,58,76,0.9170381210611194],[114,58,77,0.9339927547385825],[114,58,78,0.9597361795224438],[114,58,79,0.984317406001064],[114,59,64,0.3730994975107437],[114,59,65,0.40837076371896674],[114,59,66,0.44062728259469536],[114,59,67,0.464738456016488],[114,59,68,0.4816535104652879],[114,59,69,0.504688351067067],[114,59,70,0.5265598839240208],[114,59,71,0.5529870355162805],[114,59,72,0.5886116831884087],[114,59,73,0.6306090550303839],[114,59,74,0.6736745679202025],[114,59,75,0.7040210922149083],[114,59,76,0.7272743719671113],[114,59,77,0.7451609369137391],[114,59,78,0.7710255705416845],[114,59,79,0.7973597123657129],[114,60,64,0.17928323569212465],[114,60,65,0.21630066650892538],[114,60,66,0.2477024700827087],[114,60,67,0.2701597914307316],[114,60,68,0.28528532185203803],[114,60,69,0.30737360714748185],[114,60,70,0.33028215909381803],[114,60,71,0.35767048935111295],[114,60,72,0.3962459124679563],[114,60,73,0.440758309752368],[114,60,74,0.48269714750973153],[114,60,75,0.5128986756196374],[114,60,76,0.5341270532880835],[114,60,77,0.5542187894002639],[114,60,78,0.5795361750420109],[114,60,79,0.6089894921020702],[114,61,64,0.07961791909116077],[114,61,65,0.08413365495073596],[114,61,66,0.08396774146200346],[114,61,67,0.08024724860567958],[114,61,68,0.08079602587408401],[114,61,69,0.10252507609925006],[114,61,70,0.1288525677397551],[114,61,71,0.16212624885108246],[114,61,72,0.20515703245495293],[114,61,73,0.25791685219928767],[114,61,74,0.30051239008520003],[114,61,75,0.33074208846990766],[114,61,76,0.3493260628638397],[114,61,77,0.3723322756772143],[114,61,78,0.398758051613959],[114,61,79,0.43120506303184813],[114,62,64,0.03134494050421291],[114,62,65,0.03201659929379842],[114,62,66,0.03215480051327517],[114,62,67,0.027398261334545412],[114,62,68,0.02886059446359765],[114,62,69,0.03243450942566092],[114,62,70,0.04190130725478332],[114,62,71,0.050683369828419395],[114,62,72,0.06160006948031782],[114,62,73,0.07454801078553012],[114,62,74,0.11566195094431198],[114,62,75,0.14491574762715093],[114,62,76,0.16184388755758744],[114,62,77,0.1833435674373226],[114,62,78,0.21001509596231244],[114,62,79,0.24327866158130682],[114,63,64,-0.09177047561886703],[114,63,65,-0.09093262169598347],[114,63,66,-0.09419861624881916],[114,63,67,-0.09683189496371256],[114,63,68,-0.09363941620691173],[114,63,69,-0.09046634871246945],[114,63,70,-0.07946971212805792],[114,63,71,-0.06889765908582433],[114,63,72,-0.058777260268397094],[114,63,73,-0.04570603483920456],[114,63,74,-0.03521372390757599],[114,63,75,-0.029895794854968058],[114,63,76,-0.0274534661910366],[114,63,77,-0.0179122518582705],[114,63,78,-0.00882336352426151],[114,63,79,2.2490376446153426E-4],[114,64,64,-0.13021299881246154],[114,64,65,-0.13091316145517223],[114,64,66,-0.13424067697304004],[114,64,67,-0.13707480745197168],[114,64,68,-0.13722123217697632],[114,64,69,-0.13224590774733203],[114,64,70,-0.11877005876148448],[114,64,71,-0.10869658508594089],[114,64,72,-0.09574815762850482],[114,64,73,-0.08391686916548104],[114,64,74,-0.07402228947364053],[114,64,75,-0.06932818690794694],[114,64,76,-0.06532894089568202],[114,64,77,-0.056358011418638665],[114,64,78,-0.0465224161123582],[114,64,79,-0.0405216587703479],[114,65,64,-0.18224822336622049],[114,65,65,-0.18281232091425534],[114,65,66,-0.18556881588767554],[114,65,67,-0.18721301869204365],[114,65,68,-0.18878962940626698],[114,65,69,-0.18463885349078726],[114,65,70,-0.17098296781645908],[114,65,71,-0.15863518314942587],[114,65,72,-0.14601331924985533],[114,65,73,-0.13368802647370642],[114,65,74,-0.12208103753649653],[114,65,75,-0.11617101584775694],[114,65,76,-0.11228573409671154],[114,65,77,-0.10516568669056232],[114,65,78,-0.09666395503709203],[114,65,79,-0.08970597373718613],[114,66,64,-0.24114085892490733],[114,66,65,-0.24064124660915076],[114,66,66,-0.24175941135641593],[114,66,67,-0.24119583573417136],[114,66,68,-0.24576389693993955],[114,66,69,-0.24034828856680873],[114,66,70,-0.22872930913998374],[114,66,71,-0.21440551990580375],[114,66,72,-0.19958789023731355],[114,66,73,-0.187362072856301],[114,66,74,-0.17308479440697372],[114,66,75,-0.16873392160074444],[114,66,76,-0.1671630069491351],[114,66,77,-0.16159642962422832],[114,66,78,-0.1519294195863078],[114,66,79,-0.14546993120307275],[114,67,64,-0.29234968325570987],[114,67,65,-0.292055976661159],[114,67,66,-0.29340741975559204],[114,67,67,-0.29157651861137307],[114,67,68,-0.29254590327361407],[114,67,69,-0.2890984394773919],[114,67,70,-0.2792708209802297],[114,67,71,-0.2636068998254978],[114,67,72,-0.24684983044206904],[114,67,73,-0.2346826117039087],[114,67,74,-0.224055800762181],[114,67,75,-0.21986292461652612],[114,67,76,-0.2189184859963501],[114,67,77,-0.21319995957402488],[114,67,78,-0.2043650477578511],[114,67,79,-0.19762039912869134],[114,68,64,-0.43026450974283054],[114,68,65,-0.4324538036990386],[114,68,66,-0.43401682273988834],[114,68,67,-0.4295819532733839],[114,68,68,-0.4265170982101613],[114,68,69,-0.4232746809919429],[114,68,70,-0.41480627922401525],[114,68,71,-0.40056544667692506],[114,68,72,-0.38193068614310244],[114,68,73,-0.37162455555226415],[114,68,74,-0.3605913398662646],[114,68,75,-0.3568757037299777],[114,68,76,-0.35510429539673616],[114,68,77,-0.3527835798574877],[114,68,78,-0.3453439946336574],[114,68,79,-0.33680731778288264],[114,69,64,-0.4829235192481388],[114,69,65,-0.4860255377566584],[114,69,66,-0.48837078745344864],[114,69,67,-0.4836205781062821],[114,69,68,-0.47508486788859],[114,69,69,-0.4688930235877254],[114,69,70,-0.45734896367635136],[114,69,71,-0.4401208953619966],[114,69,72,-0.41975857767848],[114,69,73,-0.4046138445973896],[114,69,74,-0.3950489700756209],[114,69,75,-0.3912127775817991],[114,69,76,-0.39016967509348977],[114,69,77,-0.39750567685576976],[114,69,78,-0.3949302229633419],[114,69,79,-0.3867933213220913],[114,70,64,-0.5331523148761959],[114,70,65,-0.5373569008688671],[114,70,66,-0.538593579443559],[114,70,67,-0.532753292665852],[114,70,68,-0.5252744061290813],[114,70,69,-0.5179042948168607],[114,70,70,-0.5052591228076923],[114,70,71,-0.4899467953974454],[114,70,72,-0.4702081943634726],[114,70,73,-0.4554402369163227],[114,70,74,-0.4447188792228577],[114,70,75,-0.4403982944112266],[114,70,76,-0.4393929133358879],[114,70,77,-0.44685132489541174],[114,70,78,-0.4438574281401878],[114,70,79,-0.4327950046113509],[114,71,64,-0.5744859705665655],[114,71,65,-0.5789149123069395],[114,71,66,-0.5769346914941378],[114,71,67,-0.571841548271948],[114,71,68,-0.5631407689143925],[114,71,69,-0.5550405355174239],[114,71,70,-0.5423218944350321],[114,71,71,-0.5272182313509785],[114,71,72,-0.5093220044134845],[114,71,73,-0.494493733794105],[114,71,74,-0.4849883323604296],[114,71,75,-0.4830821802427987],[114,71,76,-0.4819096665918282],[114,71,77,-0.48454990629364436],[114,71,78,-0.48389419297382563],[114,71,79,-0.4733705179750566],[114,72,64,-0.6272574712252441],[114,72,65,-0.6328897350949751],[114,72,66,-0.626350004856301],[114,72,67,-0.6186783285370084],[114,72,68,-0.6104524162894773],[114,72,69,-0.6039926735046155],[114,72,70,-0.5925042016579133],[114,72,71,-0.5758500715670728],[114,72,72,-0.5599968122115286],[114,72,73,-0.5445171351759637],[114,72,74,-0.534507335114801],[114,72,75,-0.5317554720676091],[114,72,76,-0.5312588736027969],[114,72,77,-0.5345991044842849],[114,72,78,-0.534263715824231],[114,72,79,-0.5246820587580547],[114,73,64,-0.6882177070738392],[114,73,65,-0.6843046363796766],[114,73,66,-0.671598315038943],[114,73,67,-0.6606752333700462],[114,73,68,-0.6499592050185123],[114,73,69,-0.6424709323503368],[114,73,70,-0.6351891413299029],[114,73,71,-0.6229040597516747],[114,73,72,-0.6135442653834942],[114,73,73,-0.6057684054062087],[114,73,74,-0.5946721693793362],[114,73,75,-0.5888804837986087],[114,73,76,-0.5922152505323728],[114,73,77,-0.5922456452975441],[114,73,78,-0.5892689784800421],[114,73,79,-0.5779959080660692],[114,74,64,-0.7436970165488126],[114,74,65,-0.736867327670714],[114,74,66,-0.7248940010587803],[114,74,67,-0.7161168268542836],[114,74,68,-0.7074592901236921],[114,74,69,-0.6953704850299546],[114,74,70,-0.6888050310268728],[114,74,71,-0.6780347197808665],[114,74,72,-0.6684364307689041],[114,74,73,-0.6604773646254566],[114,74,74,-0.6506083649722811],[114,74,75,-0.6458209726507453],[114,74,76,-0.6499233331277514],[114,74,77,-0.6496028022343788],[114,74,78,-0.6450395279915945],[114,74,79,-0.6332875293899216],[114,75,64,-0.7915681797975003],[114,75,65,-0.7845439151079703],[114,75,66,-0.7745516232846222],[114,75,67,-0.7671016626653244],[114,75,68,-0.7576540411300152],[114,75,69,-0.7428038215212992],[114,75,70,-0.7330745055585246],[114,75,71,-0.7256714350342286],[114,75,72,-0.7189023603414922],[114,75,73,-0.7101925375652914],[114,75,74,-0.7036559461349393],[114,75,75,-0.6983348252959355],[114,75,76,-0.7002810615582392],[114,75,77,-0.7018335652296456],[114,75,78,-0.6958727460461669],[114,75,79,-0.6845019239032722],[114,76,64,-0.8344060046094928],[114,76,65,-0.8271519465541353],[114,76,66,-0.8170266381828345],[114,76,67,-0.8111460852638337],[114,76,68,-0.8011256168887191],[114,76,69,-0.7879309812697117],[114,76,70,-0.7792216268675576],[114,76,71,-0.771202976195177],[114,76,72,-0.7647790045748568],[114,76,73,-0.7575673164260343],[114,76,74,-0.7484013287775777],[114,76,75,-0.7456883992058843],[114,76,76,-0.7465438167783152],[114,76,77,-0.7496221737843636],[114,76,78,-0.746294262773735],[114,76,79,-0.7347479347024047],[114,77,64,-0.8831504232534626],[114,77,65,-0.8735967019825338],[114,77,66,-0.865597511835621],[114,77,67,-0.8608555190225116],[114,77,68,-0.8524187686465152],[114,77,69,-0.8408618255043516],[114,77,70,-0.8333938649035617],[114,77,71,-0.82664856726548],[114,77,72,-0.8203890798176439],[114,77,73,-0.8122540141922399],[114,77,74,-0.8031921529412128],[114,77,75,-0.8029733192315802],[114,77,76,-0.8035978392066241],[114,77,77,-0.8046359936595981],[114,77,78,-0.8031163328416242],[114,77,79,-0.7910851552866448],[114,78,64,-0.9322344499000246],[114,78,65,-0.9223316508934584],[114,78,66,-0.9137868658936441],[114,78,67,-0.9095758771263417],[114,78,68,-0.9003365340261982],[114,78,69,-0.8913583114729409],[114,78,70,-0.8818391116107807],[114,78,71,-0.8757857179916706],[114,78,72,-0.8702646094215046],[114,78,73,-0.8622205409458861],[114,78,74,-0.8542816076193759],[114,78,75,-0.8538860532170446],[114,78,76,-0.8554575734326593],[114,78,77,-0.8557682682899665],[114,78,78,-0.8568379486223384],[114,78,79,-0.8455592926556145],[114,79,64,-0.9671799690112263],[114,79,65,-0.9608064054960777],[114,79,66,-0.9526114777115374],[114,79,67,-0.9464240760809048],[114,79,68,-0.9406588912558655],[114,79,69,-0.9321133905603894],[114,79,70,-0.9206286806222552],[114,79,71,-0.915105715978521],[114,79,72,-0.9097235076404748],[114,79,73,-0.9016553653396278],[114,79,74,-0.8948035987334377],[114,79,75,-0.8910045790354756],[114,79,76,-0.8952500926001231],[114,79,77,-0.8989075112948637],[114,79,78,-0.8991845639881175],[114,79,79,-0.8882297328248173],[114,80,64,-1.015512703355553],[114,80,65,-1.0076196990362556],[114,80,66,-1.0006941342721143],[114,80,67,-0.9944705781287437],[114,80,68,-0.9906025463382439],[114,80,69,-0.9824025362858323],[114,80,70,-0.9700104855311125],[114,80,71,-0.9653716584441667],[114,80,72,-0.9582789067951699],[114,80,73,-0.9487510714112232],[114,80,74,-0.9411548503227345],[114,80,75,-0.940204809446674],[114,80,76,-0.9458467275730233],[114,80,77,-0.949986626232969],[114,80,78,-0.9510866264149096],[114,80,79,-0.9399926872433034],[114,81,64,-1.0611190451869668],[114,81,65,-1.0545784252527886],[114,81,66,-1.0452811265398714],[114,81,67,-1.037073220438081],[114,81,68,-1.0359430734632864],[114,81,69,-1.026354238743464],[114,81,70,-1.0141410914990305],[114,81,71,-1.0081391221373939],[114,81,72,-0.9976395117971121],[114,81,73,-0.985555545717765],[114,81,74,-0.9802026622609863],[114,81,75,-0.9801049567312452],[114,81,76,-0.9886329537108103],[114,81,77,-0.9978881143810111],[114,81,78,-1.0040123373991277],[114,81,79,-0.9974437862848349],[114,82,64,-1.1185189749931888],[114,82,65,-1.110307321627837],[114,82,66,-1.1001812634153276],[114,82,67,-1.0915408817667598],[114,82,68,-1.0884117318205624],[114,82,69,-1.08150815944781],[114,82,70,-1.0725753821104318],[114,82,71,-1.0656789045934156],[114,82,72,-1.0525263764825508],[114,82,73,-1.041601962100616],[114,82,74,-1.035687179944958],[114,82,75,-1.0337863709843789],[114,82,76,-1.0437863205854239],[114,82,77,-1.0545428942143502],[114,82,78,-1.0573225882410595],[114,82,79,-1.0558129631533355],[114,83,64,-1.1676448502821897],[114,83,65,-1.1564867658210791],[114,83,66,-1.149954947311727],[114,83,67,-1.1415277858656177],[114,83,68,-1.1366517354432433],[114,83,69,-1.131964681086418],[114,83,70,-1.1256393095465655],[114,83,71,-1.1190575711223008],[114,83,72,-1.1049482611537083],[114,83,73,-1.0919126077620704],[114,83,74,-1.0853968418688618],[114,83,75,-1.083903392592728],[114,83,76,-1.0949469092106563],[114,83,77,-1.1059462191872356],[114,83,78,-1.10987325945291],[114,83,79,-1.1068823006067006],[114,84,64,-1.2124463610547251],[114,84,65,-1.2008085975863327],[114,84,66,-1.1947753614240433],[114,84,67,-1.1864292541905386],[114,84,68,-1.183247562251809],[114,84,69,-1.179975013388708],[114,84,70,-1.1749779102493743],[114,84,71,-1.1698881212916254],[114,84,72,-1.1540582881841135],[114,84,73,-1.1423215285748651],[114,84,74,-1.1338190735408202],[114,84,75,-1.1352256916782753],[114,84,76,-1.1448947364954352],[114,84,77,-1.1551402276708114],[114,84,78,-1.1601797691268585],[114,84,79,-1.1558364321963537],[114,85,64,-1.2659584520900669],[114,85,65,-1.260209659280391],[114,85,66,-1.2557312643655567],[114,85,67,-1.2501511969718568],[114,85,68,-1.2473890947266542],[114,85,69,-1.240740930140081],[114,85,70,-1.2394189691849764],[114,85,71,-1.2334141543467623],[114,85,72,-1.2211552663052134],[114,85,73,-1.2085925317540598],[114,85,74,-1.2026165712066326],[114,85,75,-1.2039700447958448],[114,85,76,-1.208901883856923],[114,85,77,-1.2138219903162382],[114,85,78,-1.2100161590456815],[114,85,79,-1.199297321437122],[114,86,64,-1.3150113618067176],[114,86,65,-1.310067388848758],[114,86,66,-1.3059649275938228],[114,86,67,-1.298510555407622],[114,86,68,-1.2936769501753338],[114,86,69,-1.288058873094416],[114,86,70,-1.286045191511778],[114,86,71,-1.281177541020627],[114,86,72,-1.2699609686852429],[114,86,73,-1.261570209525177],[114,86,74,-1.256897857407872],[114,86,75,-1.2573289365737157],[114,86,76,-1.2590625028226854],[114,86,77,-1.2621648869833417],[114,86,78,-1.2611579467931735],[114,86,79,-1.2504610102367633],[114,87,64,-1.3551735025976333],[114,87,65,-1.3505662431617185],[114,87,66,-1.3465050715634974],[114,87,67,-1.3384225568622212],[114,87,68,-1.3321148585550775],[114,87,69,-1.3258532259811429],[114,87,70,-1.3232434585716715],[114,87,71,-1.3181494830843596],[114,87,72,-1.3107536094627406],[114,87,73,-1.3034985970735773],[114,87,74,-1.2973636763167866],[114,87,75,-1.2984608189749978],[114,87,76,-1.3009392877278567],[114,87,77,-1.3043761098437519],[114,87,78,-1.3026251243927214],[114,87,79,-1.2940071128585542],[114,88,64,-1.4069102485318095],[114,88,65,-1.3985718805651126],[114,88,66,-1.3963113938516454],[114,88,67,-1.3886605632469964],[114,88,68,-1.3824772619294292],[114,88,69,-1.37377980845549],[114,88,70,-1.3742989746309284],[114,88,71,-1.3667777301323412],[114,88,72,-1.3601322969872833],[114,88,73,-1.3498368189677994],[114,88,74,-1.343712123848212],[114,88,75,-1.3472647587812268],[114,88,76,-1.3533613537305187],[114,88,77,-1.3533342065307883],[114,88,78,-1.3525219562176152],[114,88,79,-1.3412805022835135],[114,89,64,-1.4561214828033657],[114,89,65,-1.4479924970224773],[114,89,66,-1.442472288000985],[114,89,67,-1.4360354605286374],[114,89,68,-1.4323598393032855],[114,89,69,-1.4240091185199948],[114,89,70,-1.4228691359956052],[114,89,71,-1.418399210733586],[114,89,72,-1.4089218111542714],[114,89,73,-1.3975528332941407],[114,89,74,-1.394521596390363],[114,89,75,-1.3968986985417788],[114,89,76,-1.4027919701699307],[114,89,77,-1.4010456648353693],[114,89,78,-1.401893706488611],[114,89,79,-1.3919704871961525],[114,90,64,-1.5111094325547274],[114,90,65,-1.5028166995782994],[114,90,66,-1.495906871855127],[114,90,67,-1.4880867944426601],[114,90,68,-1.4858452747826392],[114,90,69,-1.480794900230911],[114,90,70,-1.478155081816006],[114,90,71,-1.4730556083098612],[114,90,72,-1.4630249712783403],[114,90,73,-1.4510182534936842],[114,90,74,-1.4489903852074262],[114,90,75,-1.4490139871821248],[114,90,76,-1.4534841579316837],[114,90,77,-1.455671568723376],[114,90,78,-1.4565827357630303],[114,90,79,-1.4479609237423197],[114,91,64,-1.5596124485151448],[114,91,65,-1.5543260931217369],[114,91,66,-1.5423284632728187],[114,91,67,-1.535487363415663],[114,91,68,-1.532733350237419],[114,91,69,-1.531071905211851],[114,91,70,-1.5286050696959137],[114,91,71,-1.5232741662997595],[114,91,72,-1.51104001132685],[114,91,73,-1.5010487587526404],[114,91,74,-1.4942170459482549],[114,91,75,-1.4932528585928009],[114,91,76,-1.5010117361293478],[114,91,77,-1.5061284122956065],[114,91,78,-1.506642137277345],[114,91,79,-1.4987796290466333],[114,92,64,-1.5956385916589475],[114,92,65,-1.589135986770534],[114,92,66,-1.5774815036283645],[114,92,67,-1.5717555831099335],[114,92,68,-1.5683026591778313],[114,92,69,-1.5677886397334388],[114,92,70,-1.565141775806411],[114,92,71,-1.5611818852556827],[114,92,72,-1.5499612513932333],[114,92,73,-1.5385183023087723],[114,92,74,-1.5282926847477318],[114,92,75,-1.5292069387247311],[114,92,76,-1.5367501817877531],[114,92,77,-1.5416713298726856],[114,92,78,-1.5449885430342214],[114,92,79,-1.5368477348207576],[114,93,64,-1.6491268448660807],[114,93,65,-1.6424288012155934],[114,93,66,-1.6315787684384357],[114,93,67,-1.6227614370208046],[114,93,68,-1.6214641394516436],[114,93,69,-1.6208272658717695],[114,93,70,-1.617132302671149],[114,93,71,-1.6088094010984562],[114,93,72,-1.5919625937392945],[114,93,73,-1.5762836280865025],[114,93,74,-1.5635758275327485],[114,93,75,-1.5658677327197423],[114,93,76,-1.5760610601143288],[114,93,77,-1.589107897289573],[114,93,78,-1.5990640110111456],[114,93,79,-1.5946688001698441],[114,94,64,-1.6960180132672278],[114,94,65,-1.6888465656349592],[114,94,66,-1.680192258304704],[114,94,67,-1.6687549329404994],[114,94,68,-1.6681060152791096],[114,94,69,-1.6683484591886852],[114,94,70,-1.664144598245016],[114,94,71,-1.6566262135984255],[114,94,72,-1.6408533759737247],[114,94,73,-1.6214397555498117],[114,94,74,-1.6118059603145143],[114,94,75,-1.6146848784378345],[114,94,76,-1.6221079377694074],[114,94,77,-1.637216515034456],[114,94,78,-1.6475987843700879],[114,94,79,-1.6440255418953655],[114,95,64,-1.7323802498408742],[114,95,65,-1.7236332367714349],[114,95,66,-1.7177851045064043],[114,95,67,-1.7088629401199786],[114,95,68,-1.708529679755441],[114,95,69,-1.7081091025296484],[114,95,70,-1.7032604251735826],[114,95,71,-1.693162288500263],[114,95,72,-1.6787463099611575],[114,95,73,-1.6605538986245236],[114,95,74,-1.6515802261469712],[114,95,75,-1.652748014751758],[114,95,76,-1.660063835211541],[114,95,77,-1.6765909428270305],[114,95,78,-1.689519563203337],[114,95,79,-1.6847412960084893],[114,96,64,-1.7788515794922766],[114,96,65,-1.7708098446574043],[114,96,66,-1.7651380233391747],[114,96,67,-1.756999340573196],[114,96,68,-1.756697576412056],[114,96,69,-1.75555908654568],[114,96,70,-1.7506388165934672],[114,96,71,-1.7387844402971304],[114,96,72,-1.7241219652263449],[114,96,73,-1.7068823540865443],[114,96,74,-1.6986122667734724],[114,96,75,-1.6995891781486392],[114,96,76,-1.7087891164455518],[114,96,77,-1.723879257046438],[114,96,78,-1.7366197220944217],[114,96,79,-1.7330020468622427],[114,97,64,-1.8146133367769401],[114,97,65,-1.8072051788826384],[114,97,66,-1.7998948632427811],[114,97,67,-1.7930544106072381],[114,97,68,-1.7926388686080532],[114,97,69,-1.7909873718333624],[114,97,70,-1.7901563606188704],[114,97,71,-1.7858084902239382],[114,97,72,-1.7742271983874693],[114,97,73,-1.764119674561547],[114,97,74,-1.755249066360818],[114,97,75,-1.759754741980491],[114,97,76,-1.7651227824263989],[114,97,77,-1.7735466286196182],[114,97,78,-1.7762771956825356],[114,97,79,-1.7686260464037598],[114,98,64,-1.8674820718735916],[114,98,65,-1.8584678712509606],[114,98,66,-1.8517650945219883],[114,98,67,-1.8432904056503767],[114,98,68,-1.8407232119984263],[114,98,69,-1.841767132037397],[114,98,70,-1.8409349814482192],[114,98,71,-1.837459172118951],[114,98,72,-1.8285872398208065],[114,98,73,-1.8192570947022877],[114,98,74,-1.8109314813496615],[114,98,75,-1.8145690263086536],[114,98,76,-1.8192346847930903],[114,98,77,-1.827151481616116],[114,98,78,-1.828146701866532],[114,98,79,-1.8180847857431077],[114,99,64,-1.9129063366222907],[114,99,65,-1.9060225357157106],[114,99,66,-1.8990738289822533],[114,99,67,-1.89216508537308],[114,99,68,-1.88858435315588],[114,99,69,-1.8881956556257682],[114,99,70,-1.8871930841349986],[114,99,71,-1.8837604810667772],[114,99,72,-1.8784225133855927],[114,99,73,-1.8681387833563228],[114,99,74,-1.8627721131043493],[114,99,75,-1.8643521471196878],[114,99,76,-1.869175510598676],[114,99,77,-1.8758938765530755],[114,99,78,-1.8725669250712613],[114,99,79,-1.8637709059649408],[114,100,64,-1.9100835547869375],[114,100,65,-1.9050850748321844],[114,100,66,-1.8972614298719446],[114,100,67,-1.8904223304014387],[114,100,68,-1.8837476855925377],[114,100,69,-1.882417533371019],[114,100,70,-1.8785830581857812],[114,100,71,-1.873691831199663],[114,100,72,-1.8670985719030986],[114,100,73,-1.8595543457358659],[114,100,74,-1.8528992292022204],[114,100,75,-1.853329786248759],[114,100,76,-1.8599789644487814],[114,100,77,-1.8651869667500953],[114,100,78,-1.8632360095964897],[114,100,79,-1.8544996100744204],[114,101,64,-1.9570717126839623],[114,101,65,-1.94993004664499],[114,101,66,-1.9437414894031064],[114,101,67,-1.9380617502009254],[114,101,68,-1.9325629657941301],[114,101,69,-1.9282281882401595],[114,101,70,-1.9230703119169648],[114,101,71,-1.920351540111977],[114,101,72,-1.9135530087521428],[114,101,73,-1.9060425844954925],[114,101,74,-1.8997799216021087],[114,101,75,-1.901998466712171],[114,101,76,-1.9062365204326615],[114,101,77,-1.9092012509583365],[114,101,78,-1.9101266280431346],[114,101,79,-1.9026768181813305],[114,102,64,-2.0044049430057775],[114,102,65,-1.9965140650054425],[114,102,66,-1.9905643222765834],[114,102,67,-1.9861832433409792],[114,102,68,-1.982305847983208],[114,102,69,-1.976635044504422],[114,102,70,-1.969910549223667],[114,102,71,-1.9651439250931948],[114,102,72,-1.9588643269888961],[114,102,73,-1.9524473940937492],[114,102,74,-1.9467442998670543],[114,102,75,-1.947816771811776],[114,102,76,-1.9527257152991104],[114,102,77,-1.9590265771771933],[114,102,78,-1.9578778886671755],[114,102,79,-1.95260682961092],[114,103,64,-2.0431126120166456],[114,103,65,-2.037091661226137],[114,103,66,-2.032179613479871],[114,103,67,-2.0274767968350007],[114,103,68,-2.0219369592376104],[114,103,69,-2.0185718939856847],[114,103,70,-2.0115665008914188],[114,103,71,-2.005730158423786],[114,103,72,-1.9996929110383757],[114,103,73,-1.992265680922554],[114,103,74,-1.9878980928576644],[114,103,75,-1.9895493132733528],[114,103,76,-1.9944712925041037],[114,103,77,-2.002032917174947],[114,103,78,-2.003622618678131],[114,103,79,-2.0004117416878775],[114,104,64,-2.094061477635024],[114,104,65,-2.089266971951069],[114,104,66,-2.0844105590981905],[114,104,67,-2.080110916088741],[114,104,68,-2.07152341979552],[114,104,69,-2.067996109145249],[114,104,70,-2.0618970598040502],[114,104,71,-2.054663957427191],[114,104,72,-2.046172104217923],[114,104,73,-2.0379435281036065],[114,104,74,-2.0354572907523596],[114,104,75,-2.0345762962682077],[114,104,76,-2.039802907813706],[114,104,77,-2.050150622419085],[114,104,78,-2.0538699890023104],[114,104,79,-2.0504458886898504],[114,105,64,-2.140317004843336],[114,105,65,-2.1343171774856966],[114,105,66,-2.1297761726948794],[114,105,67,-2.1245706867628713],[114,105,68,-2.116573196293737],[114,105,69,-2.112767826861056],[114,105,70,-2.1042928219212937],[114,105,71,-2.097014694250555],[114,105,72,-2.0836823172403482],[114,105,73,-2.0753947723538726],[114,105,74,-2.0721519647865443],[114,105,75,-2.071772346944947],[114,105,76,-2.08182320007942],[114,105,77,-2.096788872080563],[114,105,78,-2.1073254200459033],[114,105,79,-2.1066989927729067],[114,106,64,-2.1952916751152403],[114,106,65,-2.1884585709015796],[114,106,66,-2.184750816570314],[114,106,67,-2.1781153055890448],[114,106,68,-2.17102756797857],[114,106,69,-2.166137483098726],[114,106,70,-2.156491834812927],[114,106,71,-2.1493373730694825],[114,106,72,-2.1386115724179025],[114,106,73,-2.1282383591226774],[114,106,74,-2.1227734365693673],[114,106,75,-2.1252827238048084],[114,106,76,-2.136327455777361],[114,106,77,-2.1519525705581763],[114,106,78,-2.1599629451656615],[114,106,79,-2.1590214191038184],[114,107,64,-2.2436800177267457],[114,107,65,-2.2382740592878747],[114,107,66,-2.2323862876911287],[114,107,67,-2.227388262582236],[114,107,68,-2.221308720139949],[114,107,69,-2.2144991233839195],[114,107,70,-2.2045473712336427],[114,107,71,-2.197208807695297],[114,107,72,-2.1863370243073272],[114,107,73,-2.1762282268777198],[114,107,74,-2.1718164847051273],[114,107,75,-2.1734866219421463],[114,107,76,-2.1830568089478093],[114,107,77,-2.1976014488461577],[114,107,78,-2.207290468067435],[114,107,79,-2.205290496996417],[114,108,64,-2.2949186173582636],[114,108,65,-2.290688241468414],[114,108,66,-2.2854163131169303],[114,108,67,-2.2804380309004815],[114,108,68,-2.2733806350588943],[114,108,69,-2.266176417452065],[114,108,70,-2.259183192675253],[114,108,71,-2.2504521470209173],[114,108,72,-2.2401156704697667],[114,108,73,-2.232962542556909],[114,108,74,-2.2267483613765306],[114,108,75,-2.2280617950033528],[114,108,76,-2.2363212079759043],[114,108,77,-2.250242849129376],[114,108,78,-2.260089973326327],[114,108,79,-2.257439430339392],[114,109,64,-2.3520912785331287],[114,109,65,-2.347700109806518],[114,109,66,-2.344304926420554],[114,109,67,-2.3401119400582564],[114,109,68,-2.3351013986479425],[114,109,69,-2.3270805130996846],[114,109,70,-2.318835436373884],[114,109,71,-2.3115678193366125],[114,109,72,-2.302257932298914],[114,109,73,-2.29535972826708],[114,109,74,-2.288558939287647],[114,109,75,-2.287425689743662],[114,109,76,-2.2954528775052805],[114,109,77,-2.3010919693753693],[114,109,78,-2.3036473190877502],[114,109,79,-2.293623708056603],[114,110,64,-2.398830705468982],[114,110,65,-2.39462998717487],[114,110,66,-2.392133103334627],[114,110,67,-2.3900782020219085],[114,110,68,-2.385158167020636],[114,110,69,-2.3749643633539432],[114,110,70,-2.3674049796392387],[114,110,71,-2.359327188166708],[114,110,72,-2.353371871106115],[114,110,73,-2.346246080182896],[114,110,74,-2.3397493914461367],[114,110,75,-2.3380582054949697],[114,110,76,-2.3436536774164143],[114,110,77,-2.35132774805359],[114,110,78,-2.3528802691438933],[114,110,79,-2.343339157201327],[114,111,64,-2.438208428032572],[114,111,65,-2.4348718157183327],[114,111,66,-2.4349785025508384],[114,111,67,-2.4334029654589795],[114,111,68,-2.4273346482169154],[114,111,69,-2.4180054029220535],[114,111,70,-2.4112833102862403],[114,111,71,-2.403266684575367],[114,111,72,-2.398328053547629],[114,111,73,-2.3914078604279565],[114,111,74,-2.3841294550141954],[114,111,75,-2.3838448319411705],[114,111,76,-2.3907535797989787],[114,111,77,-2.396940043159909],[114,111,78,-2.3946099599972013],[114,111,79,-2.3880399922147224],[114,112,64,-2.4878381518741133],[114,112,65,-2.486068186814613],[114,112,66,-2.4851553368788517],[114,112,67,-2.481290468207424],[114,112,68,-2.477265694360235],[114,112,69,-2.467419359231786],[114,112,70,-2.4603883206139985],[114,112,71,-2.4544945299673113],[114,112,72,-2.4528039990420565],[114,112,73,-2.441952171971195],[114,112,74,-2.432588402738707],[114,112,75,-2.432149977371756],[114,112,76,-2.439697306778541],[114,112,77,-2.4462274263766624],[114,112,78,-2.44083229721557],[114,112,79,-2.4358360582523733],[114,113,64,-2.539532428057568],[114,113,65,-2.537613729076453],[114,113,66,-2.534030806328803],[114,113,67,-2.5296830531092103],[114,113,68,-2.5229973149454272],[114,113,69,-2.5162100923160104],[114,113,70,-2.5102481487700405],[114,113,71,-2.5060130645861065],[114,113,72,-2.501370898046344],[114,113,73,-2.491311598269383],[114,113,74,-2.4787865313627426],[114,113,75,-2.480372700911358],[114,113,76,-2.4892100083478947],[114,113,77,-2.4961355641612815],[114,113,78,-2.488056896157513],[114,113,79,-2.481004601725064],[114,114,64,-2.593521173289863],[114,114,65,-2.5911606469535307],[114,114,66,-2.588292842324504],[114,114,67,-2.5824334249818843],[114,114,68,-2.5776267885830397],[114,114,69,-2.569599440631155],[114,114,70,-2.563570241898077],[114,114,71,-2.560670084686253],[114,114,72,-2.5534567643323163],[114,114,73,-2.542713815210722],[114,114,74,-2.531541760224387],[114,114,75,-2.532716709147759],[114,114,76,-2.5414361801364604],[114,114,77,-2.548883147543768],[114,114,78,-2.5421585822509405],[114,114,79,-2.5323869780213077],[114,115,64,-2.639284186525141],[114,115,65,-2.6375249391358038],[114,115,66,-2.634496956326497],[114,115,67,-2.629951670573512],[114,115,68,-2.625346982520993],[114,115,69,-2.617935137679041],[114,115,70,-2.610165771726691],[114,115,71,-2.607465201119646],[114,115,72,-2.600963157543042],[114,115,73,-2.590153137498939],[114,115,74,-2.5805230324165698],[114,115,75,-2.5831352781245815],[114,115,76,-2.588865440726121],[114,115,77,-2.594992759004145],[114,115,78,-2.5921924547127895],[114,115,79,-2.581609019515333],[114,116,64,-2.672886549074089],[114,116,65,-2.673298445856964],[114,116,66,-2.6695023100769144],[114,116,67,-2.666745093338902],[114,116,68,-2.6637765972004672],[114,116,69,-2.6564018310524125],[114,116,70,-2.6502428454250557],[114,116,71,-2.6491226881341414],[114,116,72,-2.6429878883771094],[114,116,73,-2.635225604617321],[114,116,74,-2.624388911542147],[114,116,75,-2.6256334431760298],[114,116,76,-2.6270586817262904],[114,116,77,-2.633586303666185],[114,116,78,-2.630775361238506],[114,116,79,-2.6197735872913874],[114,117,64,-2.7268231341414086],[114,117,65,-2.7234885280904764],[114,117,66,-2.718234308181161],[114,117,67,-2.7127385357636067],[114,117,68,-2.7075073162314705],[114,117,69,-2.7023112794716866],[114,117,70,-2.6965231780635537],[114,117,71,-2.695989035733345],[114,117,72,-2.6899623705591322],[114,117,73,-2.680490908190924],[114,117,74,-2.671044838089575],[114,117,75,-2.669194585087749],[114,117,76,-2.6697788255592756],[114,117,77,-2.675171545129711],[114,117,78,-2.6753441651871293],[114,117,79,-2.6621439326276426],[114,118,64,-2.776275452629259],[114,118,65,-2.7704800485874195],[114,118,66,-2.7667737177187997],[114,118,67,-2.761664815034265],[114,118,68,-2.7563046946331915],[114,118,69,-2.75336590913134],[114,118,70,-2.7496474594676323],[114,118,71,-2.747665788476301],[114,118,72,-2.7396282776059646],[114,118,73,-2.7284628598267404],[114,118,74,-2.717567726554723],[114,118,75,-2.717348392080575],[114,118,76,-2.7169988651835015],[114,118,77,-2.723203406889418],[114,118,78,-2.7235297336560023],[114,118,79,-2.7126380678424478],[114,119,64,-2.81398175450402],[114,119,65,-2.8109874737062195],[114,119,66,-2.806879753103473],[114,119,67,-2.8016924284086366],[114,119,68,-2.7983766049345706],[114,119,69,-2.795535208394897],[114,119,70,-2.793662398676488],[114,119,71,-2.794646825879884],[114,119,72,-2.786222142719278],[114,119,73,-2.7737449078137595],[114,119,74,-2.7645119611644944],[114,119,75,-2.7632961995729124],[114,119,76,-2.7635103686450093],[114,119,77,-2.7701853762643784],[114,119,78,-2.7737984722687345],[114,119,79,-2.7624319195456604],[114,120,64,-2.860982335408472],[114,120,65,-2.8573991320544416],[114,120,66,-2.85392255190144],[114,120,67,-2.848964820025856],[114,120,68,-2.848616347940769],[114,120,69,-2.8428953333799547],[114,120,70,-2.842884859922736],[114,120,71,-2.844875354884886],[114,120,72,-2.836935765053276],[114,120,73,-2.824904017779174],[114,120,74,-2.813294178032036],[114,120,75,-2.8093771790782465],[114,120,76,-2.8116723906336163],[114,120,77,-2.819146121118251],[114,120,78,-2.823056796572807],[114,120,79,-2.8134283379767453],[114,121,64,-2.8977911933042173],[114,121,65,-2.8974952759959614],[114,121,66,-2.898836022051081],[114,121,67,-2.8964534258001997],[114,121,68,-2.895174236925193],[114,121,69,-2.89023529047797],[114,121,70,-2.890284101607548],[114,121,71,-2.889873210464728],[114,121,72,-2.8842275497299745],[114,121,73,-2.8753406760815947],[114,121,74,-2.8630851809069475],[114,121,75,-2.856232601723059],[114,121,76,-2.860234798346407],[114,121,77,-2.8730981861753686],[114,121,78,-2.879154172470069],[114,121,79,-2.8725139975012093],[114,122,64,-2.9469575411562627],[114,122,65,-2.9512358375072023],[114,122,66,-2.951595451051304],[114,122,67,-2.9487333107844393],[114,122,68,-2.9477022380391515],[114,122,69,-2.942878995948828],[114,122,70,-2.9449462501645414],[114,122,71,-2.941045340387536],[114,122,72,-2.9379514907099313],[114,122,73,-2.9303005635028394],[114,122,74,-2.917527030840722],[114,122,75,-2.9085514107453365],[114,122,76,-2.9162630053378007],[114,122,77,-2.9274237736574937],[114,122,78,-2.932702495052769],[114,122,79,-2.9223798440712176],[114,123,64,-2.9913535789933268],[114,123,65,-2.9984712265628812],[114,123,66,-3.0008021784732306],[114,123,67,-2.998042865155732],[114,123,68,-2.995692174462846],[114,123,69,-2.9936811788109647],[114,123,70,-2.9930773028005526],[114,123,71,-2.9878768878997137],[114,123,72,-2.9859076624056518],[114,123,73,-2.9781307597417546],[114,123,74,-2.9632179942426156],[114,123,75,-2.9566558356911927],[114,123,76,-2.9639794857588018],[114,123,77,-2.977909633304083],[114,123,78,-2.9823105201283697],[114,123,79,-2.9691554144986028],[114,124,64,-3.0355610856984314],[114,124,65,-3.0447101779661296],[114,124,66,-3.049461446629552],[114,124,67,-3.047622152007279],[114,124,68,-3.047202054684419],[114,124,69,-3.0432903954382398],[114,124,70,-3.042404381031441],[114,124,71,-3.0390680133263164],[114,124,72,-3.0375954588968117],[114,124,73,-3.0275941960473562],[114,124,74,-3.0129078785017454],[114,124,75,-3.0082367082521593],[114,124,76,-3.0152841170000126],[114,124,77,-3.0290834369549238],[114,124,78,-3.033615717968734],[114,124,79,-3.024118453624537],[114,125,64,-3.0808855508068977],[114,125,65,-3.090967513418646],[114,125,66,-3.095953577078342],[114,125,67,-3.0943420455036716],[114,125,68,-3.0957809764908584],[114,125,69,-3.0943922765587413],[114,125,70,-3.093009120195791],[114,125,71,-3.089531383413291],[114,125,72,-3.085632635529013],[114,125,73,-3.0743845341703593],[114,125,74,-3.059904067555091],[114,125,75,-3.056830324408741],[114,125,76,-3.0660739687094614],[114,125,77,-3.0761189973992695],[114,125,78,-3.0828771782514233],[114,125,79,-3.082765505722436],[114,126,64,-3.126829375551954],[114,126,65,-3.1346185737966845],[114,126,66,-3.1405636002349286],[114,126,67,-3.1414950409236733],[114,126,68,-3.145149909974342],[114,126,69,-3.145546402845399],[114,126,70,-3.1442549354667846],[114,126,71,-3.138536070660587],[114,126,72,-3.133679843777087],[114,126,73,-3.1206246231321972],[114,126,74,-3.108715032320631],[114,126,75,-3.1051647690570787],[114,126,76,-3.114654634302872],[114,126,77,-3.1253029808352406],[114,126,78,-3.1557027627700136],[114,126,79,-3.1785294586916133],[114,127,64,-3.1646596562017892],[114,127,65,-3.1736709866543555],[114,127,66,-3.1793625255662312],[114,127,67,-3.184735926696244],[114,127,68,-3.1868160974078275],[114,127,69,-3.188667257398253],[114,127,70,-3.186854924098307],[114,127,71,-3.184372758618311],[114,127,72,-3.1769110278858532],[114,127,73,-3.167734395159726],[114,127,74,-3.1550448637237016],[114,127,75,-3.1524418400364316],[114,127,76,-3.159798826286413],[114,127,77,-3.1712592568426463],[114,127,78,-3.197934899100135],[114,127,79,-3.2073661602751846],[114,128,64,-3.2122689928102828],[114,128,65,-3.221891001104566],[114,128,66,-3.2269292210363414],[114,128,67,-3.2322167780527176],[114,128,68,-3.234885908332668],[114,128,69,-3.237063127829467],[114,128,70,-3.2351801986702435],[114,128,71,-3.2316433259860142],[114,128,72,-3.226558239155935],[114,128,73,-3.214894759778249],[114,128,74,-3.204277227818355],[114,128,75,-3.202093572617477],[114,128,76,-3.2095726192606886],[114,128,77,-3.215941470118166],[114,128,78,-3.2609231953777402],[114,128,79,-3.2695434232096026],[114,129,64,-3.2585423840915078],[114,129,65,-3.268835701923651],[114,129,66,-3.2771049869186504],[114,129,67,-3.2858073098034897],[114,129,68,-3.292314281851205],[114,129,69,-3.2939014149886883],[114,129,70,-3.287368752638055],[114,129,71,-3.280894586372401],[114,129,72,-3.2703361692632513],[114,129,73,-3.255985650923615],[114,129,74,-3.2411207042678005],[114,129,75,-3.2418218143999358],[114,129,76,-3.249648513068694],[114,129,77,-3.253211437007111],[114,129,78,-3.2837270692189526],[114,129,79,-3.2813116101100546],[114,130,64,-3.3100909889662486],[114,130,65,-3.3207081349101606],[114,130,66,-3.3280959503308414],[114,130,67,-3.3369930417684635],[114,130,68,-3.344867091371192],[114,130,69,-3.3457479447215355],[114,130,70,-3.341226268329695],[114,130,71,-3.3340900624530887],[114,130,72,-3.3223390994132607],[114,130,73,-3.307284536692621],[114,130,74,-3.33238528326704],[114,130,75,-3.373904994214535],[114,130,76,-3.4362276787160195],[114,130,77,-3.4579430741462285],[114,130,78,-3.460691486069995],[114,130,79,-3.451311534016007],[114,131,64,-3.3568960364234277],[114,131,65,-3.3681333017087103],[114,131,66,-3.377271007899404],[114,131,67,-3.38488463887137],[114,131,68,-3.3902121553945355],[114,131,69,-3.3911026965302318],[114,131,70,-3.3874730238127064],[114,131,71,-3.384293347883137],[114,131,72,-3.3694468217554236],[114,131,73,-3.3792803765780564],[114,131,74,-3.408676739419346],[114,131,75,-3.4522439964038796],[114,131,76,-3.4908018607132303],[114,131,77,-3.5001011784593707],[114,131,78,-3.50276740547533],[114,131,79,-3.49482732287475],[114,132,64,-3.393864209331364],[114,132,65,-3.405131796589396],[114,132,66,-3.417840255460614],[114,132,67,-3.4240792183240654],[114,132,68,-3.430126790000713],[114,132,69,-3.4345880463526743],[114,132,70,-3.4357168489659644],[114,132,71,-3.431350165822253],[114,132,72,-3.4195811994918675],[114,132,73,-3.425821141437232],[114,132,74,-3.457589972207229],[114,132,75,-3.497703737205903],[114,132,76,-3.530110670267712],[114,132,77,-3.5421043834964863],[114,132,78,-3.5426185469084266],[114,132,79,-3.5370886683893277],[114,133,64,-3.449642057546737],[114,133,65,-3.4536721011306346],[114,133,66,-3.4589930838040375],[114,133,67,-3.459257921421653],[114,133,68,-3.4641966399910347],[114,133,69,-3.4715737472948693],[114,133,70,-3.475903760314908],[114,133,71,-3.475508408152933],[114,133,72,-3.4893853747377217],[114,133,73,-3.491451694720174],[114,133,74,-3.4976730461875962],[114,133,75,-3.5220371004277506],[114,133,76,-3.5672562110320083],[114,133,77,-3.5825470659097696],[114,133,78,-3.5827529456674667],[114,133,79,-3.576352819222869],[114,134,64,-3.49652544024807],[114,134,65,-3.5011321311033754],[114,134,66,-3.5064177801092358],[114,134,67,-3.503827695040413],[114,134,68,-3.509398858207731],[114,134,69,-3.5170485901293995],[114,134,70,-3.5241988049385933],[114,134,71,-3.5237312802772434],[114,134,72,-3.5468864827849105],[114,134,73,-3.5468374361380244],[114,134,74,-3.5461393800445027],[114,134,75,-3.562468324856257],[114,134,76,-3.6109395079834075],[114,134,77,-3.6209866178074446],[114,134,78,-3.623439827666556],[114,134,79,-3.618203861591419],[114,135,64,-3.5375814082878994],[114,135,65,-3.543794866208813],[114,135,66,-3.5479862816327232],[114,135,67,-3.5481555104054485],[114,135,68,-3.552645756321018],[114,135,69,-3.560113924481757],[114,135,70,-3.5665941600400792],[114,135,71,-3.566930757545281],[114,135,72,-3.580805249899262],[114,135,73,-3.5779907495934298],[114,135,74,-3.5779947812717467],[114,135,75,-3.588124415557169],[114,135,76,-3.6409903506746217],[114,135,77,-3.661501016493976],[114,135,78,-3.6623269777763046],[114,135,79,-3.659901251587389],[114,136,64,-3.584394799555229],[114,136,65,-3.5908851851465],[114,136,66,-3.5945662184690335],[114,136,67,-3.596676387821852],[114,136,68,-3.599034472420784],[114,136,69,-3.6066292986653083],[114,136,70,-3.6119460063417734],[114,136,71,-3.6152248198711208],[114,136,72,-3.6375554309250098],[114,136,73,-3.636612545371598],[114,136,74,-3.6285176316701007],[114,136,75,-3.6449718778961047],[114,136,76,-3.7030246908677187],[114,136,77,-3.715174704448569],[114,136,78,-3.717137820834775],[114,136,79,-3.714060206132171],[114,137,64,-3.633286487950212],[114,137,65,-3.64110685371819],[114,137,66,-3.6436443926265216],[114,137,67,-3.643455658266581],[114,137,68,-3.6461983806048215],[114,137,69,-3.654452581043459],[114,137,70,-3.6601210145734533],[114,137,71,-3.6627328634456946],[114,137,72,-3.6797436108909927],[114,137,73,-3.675727775579011],[114,137,74,-3.6638455268771],[114,137,75,-3.6804038566102006],[114,137,76,-3.7260224948283844],[114,137,77,-3.7492196711251364],[114,137,78,-3.7526121661840004],[114,137,79,-3.7492753394116667],[114,138,64,-3.685566900044623],[114,138,65,-3.693697359980467],[114,138,66,-3.6980159869443807],[114,138,67,-3.6956973783050433],[114,138,68,-3.7004415992050927],[114,138,69,-3.705491914087513],[114,138,70,-3.710323386212703],[114,138,71,-3.714316064828677],[114,138,72,-3.7141237608368294],[114,138,73,-3.711427241815963],[114,138,74,-3.7049564805262896],[114,138,75,-3.7246991967208873],[114,138,76,-3.7686025891685566],[114,138,77,-3.796941267674228],[114,138,78,-3.8029228229687044],[114,138,79,-3.7991466502783346],[114,139,64,-3.7350170995260306],[114,139,65,-3.742810791681603],[114,139,66,-3.749359369025075],[114,139,67,-3.745908358102153],[114,139,68,-3.7503714805311765],[114,139,69,-3.7507050560463995],[114,139,70,-3.7559496753908985],[114,139,71,-3.7595803684110574],[114,139,72,-3.766282439732116],[114,139,73,-3.771049068091185],[114,139,74,-3.7700846956704512],[114,139,75,-3.7951905405854585],[114,139,76,-3.8266885293321447],[114,139,77,-3.8402262271767196],[114,139,78,-3.8488979474608955],[114,139,79,-3.8444376216454383],[114,140,64,-3.7938051378377247],[114,140,65,-3.8003231207701162],[114,140,66,-3.803877934323271],[114,140,67,-3.7979548673603087],[114,140,68,-3.7976777830377753],[114,140,69,-3.7973940475796883],[114,140,70,-3.7982534801788534],[114,140,71,-3.8006972579131992],[114,140,72,-3.8024431415897535],[114,140,73,-3.8129061149089356],[114,140,74,-3.8202123574088507],[114,140,75,-3.847172316635849],[114,140,76,-3.8742973381625454],[114,140,77,-3.885221132306207],[114,140,78,-3.894295073228882],[114,140,79,-3.8924644784378417],[114,141,64,-3.8507679226789855],[114,141,65,-3.8534799637963024],[114,141,66,-3.8549725724984816],[114,141,67,-3.8491611015132534],[114,141,68,-3.8452183185420674],[114,141,69,-3.8461958536208014],[114,141,70,-3.8487551093545203],[114,141,71,-3.851783391088416],[114,141,72,-3.850791082512446],[114,141,73,-3.8577374069472827],[114,141,74,-3.876839191101449],[114,141,75,-3.8989234314971397],[114,141,76,-3.9125119184634958],[114,141,77,-3.9239213601773955],[114,141,78,-3.9332822191827996],[114,141,79,-3.9309049145410695],[114,142,64,-3.9000895582669033],[114,142,65,-3.9022517371220924],[114,142,66,-3.9027181347397146],[114,142,67,-3.897851275655718],[114,142,68,-3.8927524466925427],[114,142,69,-3.8929928877676314],[114,142,70,-3.8938347383193634],[114,142,71,-3.89890563115347],[114,142,72,-3.898045738889999],[114,142,73,-3.90125397285997],[114,142,74,-3.9234479514004184],[114,142,75,-3.9416238037968414],[114,142,76,-3.956411682456408],[114,142,77,-3.9698104698230696],[114,142,78,-3.9792580304928613],[114,142,79,-3.9769678178794927],[114,143,64,-3.9408668832502465],[114,143,65,-3.947688419314136],[114,143,66,-3.944370467436733],[114,143,67,-3.9387464941945445],[114,143,68,-3.9353650454164497],[114,143,69,-3.934498427139986],[114,143,70,-3.937704228683402],[114,143,71,-3.9411053988141735],[114,143,72,-3.939479080933533],[114,143,73,-3.9347691187705913],[114,143,74,-3.9548271852361263],[114,143,75,-3.9793729534479794],[114,143,76,-3.9964305937349227],[114,143,77,-4.009799444194413],[114,143,78,-4.018788471458093],[114,143,79,-4.015047471934085],[114,144,64,-3.9892033173193564],[114,144,65,-3.994659957895668],[114,144,66,-3.992658685891902],[114,144,67,-3.9857582107874814],[114,144,68,-3.9830965155740676],[114,144,69,-3.9797527938509143],[114,144,70,-3.9830666029926705],[114,144,71,-3.9854804914638473],[114,144,72,-3.9849390546984966],[114,144,73,-3.980008285834972],[114,144,74,-4.005344171327417],[114,144,75,-4.036509919561766],[114,144,76,-4.052180047437894],[114,144,77,-4.067520782406116],[114,144,78,-4.073533153794172],[114,144,79,-4.068068945930423],[114,145,64,-4.025979332718187],[114,145,65,-4.033983002187753],[114,145,66,-4.035819799024097],[114,145,67,-4.031345222651756],[114,145,68,-4.030303498351917],[114,145,69,-4.027192956560332],[114,145,70,-4.027415506806836],[114,145,71,-4.02515495896583],[114,145,72,-4.025011419146942],[114,145,73,-4.013523380451195],[114,145,74,-4.003698789030731],[114,145,75,-4.021866944219092],[114,145,76,-4.055324570638881],[114,145,77,-4.0684242422010435],[114,145,78,-4.072753509910632],[114,145,79,-4.067064745595677],[114,146,64,-4.077415265700785],[114,146,65,-4.086575280700601],[114,146,66,-4.087710448347078],[114,146,67,-4.082746071433599],[114,146,68,-4.080142022080819],[114,146,69,-4.0793273934885175],[114,146,70,-4.078130159210641],[114,146,71,-4.075512650782071],[114,146,72,-4.075518987273032],[114,146,73,-4.0641416650284805],[114,146,74,-4.052882018801317],[114,146,75,-4.060913919089213],[114,146,76,-4.090889219877548],[114,146,77,-4.1047198158698475],[114,146,78,-4.109362296037234],[114,146,79,-4.105838122833784],[114,147,64,-4.1271841827100415],[114,147,65,-4.134267378532193],[114,147,66,-4.134848502341383],[114,147,67,-4.129347175989436],[114,147,68,-4.129791518437738],[114,147,69,-4.12552976474624],[114,147,70,-4.12520465027651],[114,147,71,-4.119855153732364],[114,147,72,-4.12099331134747],[114,147,73,-4.111358284186001],[114,147,74,-4.099023394259691],[114,147,75,-4.091272179712356],[114,147,76,-4.0716596082432845],[114,147,77,-4.084030953978155],[114,147,78,-4.090449434699881],[114,147,79,-4.0842660704618],[114,148,64,-4.154261794606577],[114,148,65,-4.157206659474874],[114,148,66,-4.155595486733752],[114,148,67,-4.143714001807881],[114,148,68,-4.1416030286194365],[114,148,69,-4.135314452307125],[114,148,70,-4.131059093483907],[114,148,71,-4.12568550749046],[114,148,72,-4.123706175740963],[114,148,73,-4.115336843444614],[114,148,74,-4.103936226264114],[114,148,75,-4.105794314311748],[114,148,76,-4.1031549962045855],[114,148,77,-4.101187433459246],[114,148,78,-4.09495207364709],[114,148,79,-4.089192505812213],[114,149,64,-4.204611424979298],[114,149,65,-4.206859501144283],[114,149,66,-4.205998313691582],[114,149,67,-4.195012327248207],[114,149,68,-4.190208225492265],[114,149,69,-4.181911754800591],[114,149,70,-4.178281225851627],[114,149,71,-4.174516590063137],[114,149,72,-4.173387146796253],[114,149,73,-4.163479778420071],[114,149,74,-4.1543600578464845],[114,149,75,-4.15465331468923],[114,149,76,-4.1536589904864964],[114,149,77,-4.155764301232265],[114,149,78,-4.151826894393275],[114,149,79,-4.146297997059061],[114,150,64,-4.254730237443683],[114,150,65,-4.257402152582084],[114,150,66,-4.255451401479967],[114,150,67,-4.245184910535213],[114,150,68,-4.239116021602457],[114,150,69,-4.232848875063117],[114,150,70,-4.224911943733341],[114,150,71,-4.224176856613536],[114,150,72,-4.221035351209041],[114,150,73,-4.213582619130394],[114,150,74,-4.202224044020997],[114,150,75,-4.201908366616494],[114,150,76,-4.203966556087518],[114,150,77,-4.204936314916712],[114,150,78,-4.200113854964436],[114,150,79,-4.191753599962656],[114,151,64,-4.2994411224035645],[114,151,65,-4.301384304706416],[114,151,66,-4.3005039100808595],[114,151,67,-4.289164519451174],[114,151,68,-4.286102186151232],[114,151,69,-4.281897332650349],[114,151,70,-4.272563207126678],[114,151,71,-4.269066318785024],[114,151,72,-4.266342211221402],[114,151,73,-4.259404373099597],[114,151,74,-4.250224986879605],[114,151,75,-4.251271533365848],[114,151,76,-4.263522597483392],[114,151,77,-4.259464091379582],[114,151,78,-4.253133475546685],[114,151,79,-4.244520711817503],[114,152,64,-4.351468891584159],[114,152,65,-4.35065973764106],[114,152,66,-4.350445827436167],[114,152,67,-4.341981707664569],[114,152,68,-4.337474750200466],[114,152,69,-4.333250481623338],[114,152,70,-4.323987237660495],[114,152,71,-4.317318183551723],[114,152,72,-4.3127285384272955],[114,152,73,-4.305720979509875],[114,152,74,-4.297874284576982],[114,152,75,-4.297950107566581],[114,152,76,-4.312183899407577],[114,152,77,-4.306550467127279],[114,152,78,-4.299735291191623],[114,152,79,-4.28880153147903],[114,153,64,-4.409470501145659],[114,153,65,-4.405779747738581],[114,153,66,-4.3955650790669765],[114,153,67,-4.384836746573094],[114,153,68,-4.37869156711797],[114,153,69,-4.373181549415275],[114,153,70,-4.367614568636686],[114,153,71,-4.362207452749146],[114,153,72,-4.356722468051473],[114,153,73,-4.353886822586928],[114,153,74,-4.346574283940216],[114,153,75,-4.347574071196077],[114,153,76,-4.359193587721524],[114,153,77,-4.349115799692255],[114,153,78,-4.3381374097728616],[114,153,79,-4.327203673028382],[114,154,64,-4.4641185485308785],[114,154,65,-4.46133454334046],[114,154,66,-4.449520429387807],[114,154,67,-4.438778920767306],[114,154,68,-4.431909166962445],[114,154,69,-4.4261394018971805],[114,154,70,-4.421124561606513],[114,154,71,-4.415025064043751],[114,154,72,-4.408548383476396],[114,154,73,-4.4049048384969085],[114,154,74,-4.398419933047251],[114,154,75,-4.399816050279382],[114,154,76,-4.418081969281347],[114,154,77,-4.406407903709512],[114,154,78,-4.388752774457261],[114,154,79,-4.373953576251037],[114,155,64,-4.514351467103254],[114,155,65,-4.510995684542077],[114,155,66,-4.497560744636973],[114,155,67,-4.486841016085443],[114,155,68,-4.482236670349976],[114,155,69,-4.472641953977845],[114,155,70,-4.468805089858885],[114,155,71,-4.463406019934674],[114,155,72,-4.456546546904752],[114,155,73,-4.452750700642884],[114,155,74,-4.446600756010052],[114,155,75,-4.4490776698893475],[114,155,76,-4.467409579440537],[114,155,77,-4.459708902823494],[114,155,78,-4.441625774995972],[114,155,79,-4.424538580657352],[114,156,64,-4.562356198256653],[114,156,65,-4.559979903679574],[114,156,66,-4.549783675946995],[114,156,67,-4.53827569234681],[114,156,68,-4.5346828723415795],[114,156,69,-4.526136530768789],[114,156,70,-4.519095730423229],[114,156,71,-4.514540840466398],[114,156,72,-4.508294304340638],[114,156,73,-4.505712930836235],[114,156,74,-4.49940512939799],[114,156,75,-4.504479557719971],[114,156,76,-4.50251261805503],[114,156,77,-4.5021843641383406],[114,156,78,-4.487012327163073],[114,156,79,-4.4683758349953715],[114,157,64,-4.600666985873012],[114,157,65,-4.6037757749233466],[114,157,66,-4.602491073301891],[114,157,67,-4.595807577129599],[114,157,68,-4.592814492446719],[114,157,69,-4.584324864625164],[114,157,70,-4.57448412135374],[114,157,71,-4.568322754381099],[114,157,72,-4.558700484002268],[114,157,73,-4.555094397514269],[114,157,74,-4.548904905154277],[114,157,75,-4.554213487830163],[114,157,76,-4.547212347021377],[114,157,77,-4.543603671281097],[114,157,78,-4.529640806430293],[114,157,79,-4.507691105137115],[114,158,64,-4.645325090515721],[114,158,65,-4.648636504707218],[114,158,66,-4.651927117231626],[114,158,67,-4.645567228684206],[114,158,68,-4.642224811889128],[114,158,69,-4.631146958632538],[114,158,70,-4.618946313147137],[114,158,71,-4.615481676463718],[114,158,72,-4.608037525511873],[114,158,73,-4.603610766744381],[114,158,74,-4.598676534262585],[114,158,75,-4.597409667265213],[114,158,76,-4.594285091950493],[114,158,77,-4.583078614164156],[114,158,78,-4.566879792552802],[114,158,79,-4.545836670920924],[114,159,64,-4.763959294736128],[114,159,65,-4.762167828898162],[114,159,66,-4.759917824614006],[114,159,67,-4.748767822008279],[114,159,68,-4.737415993151417],[114,159,69,-4.717094911136582],[114,159,70,-4.697085084670626],[114,159,71,-4.688184172070553],[114,159,72,-4.673025111507755],[114,159,73,-4.6594378413344755],[114,159,74,-4.645397653543278],[114,159,75,-4.642881191909053],[114,159,76,-4.641791911900266],[114,159,77,-4.622771296625209],[114,159,78,-4.6090411133503855],[114,159,79,-4.5889013384460124],[114,160,64,-4.811497497894004],[114,160,65,-4.808849905919217],[114,160,66,-4.80549511774623],[114,160,67,-4.794280873590099],[114,160,68,-4.781844253528027],[114,160,69,-4.764999979892435],[114,160,70,-4.744674553399966],[114,160,71,-4.734786423724869],[114,160,72,-4.721539981945182],[114,160,73,-4.704700399489226],[114,160,74,-4.6921282419958725],[114,160,75,-4.690528052795365],[114,160,76,-4.689824963827157],[114,160,77,-4.66754318377308],[114,160,78,-4.653850784946045],[114,160,79,-4.6334194527480355],[114,161,64,-4.857039324496441],[114,161,65,-4.855594748038221],[114,161,66,-4.850372002350026],[114,161,67,-4.83827405354803],[114,161,68,-4.8254361086817035],[114,161,69,-4.811689760319363],[114,161,70,-4.792449261726606],[114,161,71,-4.78176006960975],[114,161,72,-4.7682039738191735],[114,161,73,-4.754093732207863],[114,161,74,-4.739320902238957],[114,161,75,-4.736183313191612],[114,161,76,-4.733492482949128],[114,161,77,-4.707345313592244],[114,161,78,-4.69174446083207],[114,161,79,-4.67553201320825],[114,162,64,-4.909949567616152],[114,162,65,-4.908854907830847],[114,162,66,-4.900858683321813],[114,162,67,-4.8854695665039305],[114,162,68,-4.874426289547996],[114,162,69,-4.8627269822565005],[114,162,70,-4.845373237183211],[114,162,71,-4.83417861509189],[114,162,72,-4.8207475285696075],[114,162,73,-4.804355504022938],[114,162,74,-4.793218018538224],[114,162,75,-4.787959418377195],[114,162,76,-4.788084114194275],[114,162,77,-4.764659123261486],[114,162,78,-4.748744816176463],[114,162,79,-4.732766249602823],[114,163,64,-4.956793968133755],[114,163,65,-4.954747831634158],[114,163,66,-4.944899880264639],[114,163,67,-4.931024796391993],[114,163,68,-4.919891975903123],[114,163,69,-4.906953569898879],[114,163,70,-4.890511454718001],[114,163,71,-4.881382144634634],[114,163,72,-4.870776965086579],[114,163,73,-4.851796374588529],[114,163,74,-4.839551186601362],[114,163,75,-4.834189135887114],[114,163,76,-4.837394754869089],[114,163,77,-4.825841416616358],[114,163,78,-4.808863334435016],[114,163,79,-4.793097246651612],[114,164,64,-4.980644708165981],[114,164,65,-4.9778637981685],[114,164,66,-4.972222422408879],[114,164,67,-4.959600813986697],[114,164,68,-4.953202227602987],[114,164,69,-4.940199290058738],[114,164,70,-4.925553368983735],[114,164,71,-4.915947177382089],[114,164,72,-4.907114800105226],[114,164,73,-4.890637953557926],[114,164,74,-4.873683650022779],[114,164,75,-4.869651579536168],[114,164,76,-4.8720445475040055],[114,164,77,-4.864415289556309],[114,164,78,-4.850988562291728],[114,164,79,-4.836776089402266],[114,165,64,-5.01952305689362],[114,165,65,-5.013520477855574],[114,165,66,-5.005555792598849],[114,165,67,-4.99768808887666],[114,165,68,-4.989754064447773],[114,165,69,-4.975129483623744],[114,165,70,-4.961871615383093],[114,165,71,-4.955082087755037],[114,165,72,-4.94987526987898],[114,165,73,-4.937616280487829],[114,165,74,-4.920142285790447],[114,165,75,-4.915622605997457],[114,165,76,-4.915398465508104],[114,165,77,-4.9067032295712245],[114,165,78,-4.895607247548661],[114,165,79,-4.884406353574472],[114,166,64,-5.0639594269104835],[114,166,65,-5.061969556894689],[114,166,66,-5.051418071066464],[114,166,67,-5.044062844247204],[114,166,68,-5.035585250490391],[114,166,69,-5.020900360719041],[114,166,70,-5.010311254064182],[114,166,71,-5.002408815545468],[114,166,72,-4.9954620432178345],[114,166,73,-4.985622973309952],[114,166,74,-4.969144112247888],[114,166,75,-4.962693283800299],[114,166,76,-4.960939277094027],[114,166,77,-4.956732967668804],[114,166,78,-4.94733758282213],[114,166,79,-4.932825788158949],[114,167,64,-5.103940456148952],[114,167,65,-5.101824341455655],[114,167,66,-5.093906468297596],[114,167,67,-5.087706122935425],[114,167,68,-5.077314077940632],[114,167,69,-5.065280721011244],[114,167,70,-5.055529490772687],[114,167,71,-5.047637372648498],[114,167,72,-5.0404669282862615],[114,167,73,-5.032332215389368],[114,167,74,-5.016593678812879],[114,167,75,-5.009729756629791],[114,167,76,-5.006870782437624],[114,167,77,-5.008916934878301],[114,167,78,-4.994609355155649],[114,167,79,-4.979251775804833],[114,168,64,-5.150990286742082],[114,168,65,-5.150209761095722],[114,168,66,-5.140619513889385],[114,168,67,-5.134135466264883],[114,168,68,-5.124619959377158],[114,168,69,-5.112439479358355],[114,168,70,-5.1016421231061155],[114,168,71,-5.096762541029278],[114,168,72,-5.086502721679347],[114,168,73,-5.075774386181614],[114,168,74,-5.061763990812237],[114,168,75,-5.054259818135633],[114,168,76,-5.054743639067392],[114,168,77,-5.053641068730063],[114,168,78,-5.040137094818483],[114,168,79,-5.024179966039866],[114,169,64,-5.208386581707026],[114,169,65,-5.205619159982905],[114,169,66,-5.198028763646312],[114,169,67,-5.190611765548263],[114,169,68,-5.182430780191844],[114,169,69,-5.169448569604223],[114,169,70,-5.157353045307095],[114,169,71,-5.151147718601225],[114,169,72,-5.139289326416058],[114,169,73,-5.124082678291308],[114,169,74,-5.10504531728215],[114,169,75,-5.099236130091973],[114,169,76,-5.103330552455949],[114,169,77,-5.1058985985181],[114,169,78,-5.0884163006307706],[114,169,79,-5.069961147332669],[114,170,64,-5.261584850939142],[114,170,65,-5.257667632291289],[114,170,66,-5.251294449818477],[114,170,67,-5.2441554092132465],[114,170,68,-5.234003534181618],[114,170,69,-5.22355350729724],[114,170,70,-5.213646864892047],[114,170,71,-5.205201096831258],[114,170,72,-5.190849077008176],[114,170,73,-5.173320617764937],[114,170,74,-5.156233064868046],[114,170,75,-5.1501197717745075],[114,170,76,-5.155323228978937],[114,170,77,-5.163990844397433],[114,170,78,-5.138462236319229],[114,170,79,-5.118536570846878],[114,171,64,-5.309186588093754],[114,171,65,-5.305049518733607],[114,171,66,-5.299604169254708],[114,171,67,-5.2925729156209504],[114,171,68,-5.280944404724244],[114,171,69,-5.272174254751181],[114,171,70,-5.261687255681785],[114,171,71,-5.2551085903796215],[114,171,72,-5.2388330998412975],[114,171,73,-5.218623345472452],[114,171,74,-5.20264501168822],[114,171,75,-5.198624563664864],[114,171,76,-5.20513635235083],[114,171,77,-5.207784679908254],[114,171,78,-5.1776985225395356],[114,171,79,-5.159774466475057],[114,172,64,-5.357744277423307],[114,172,65,-5.356133181119882],[114,172,66,-5.349954597143192],[114,172,67,-5.34396169826376],[114,172,68,-5.334005534658751],[114,172,69,-5.324326458512284],[114,172,70,-5.314023713213202],[114,172,71,-5.307132764423706],[114,172,72,-5.290397998205008],[114,172,73,-5.268224531502939],[114,172,74,-5.254057072622957],[114,172,75,-5.251118297819713],[114,172,76,-5.257918811451826],[114,172,77,-5.255081077518788],[114,172,78,-5.212736211202393],[114,172,79,-5.188230148670476],[114,173,64,-5.4068815939691675],[114,173,65,-5.403617049745161],[114,173,66,-5.39810654061692],[114,173,67,-5.390364569979351],[114,173,68,-5.381588250640583],[114,173,69,-5.373337306641871],[114,173,70,-5.361843182966706],[114,173,71,-5.351688527411482],[114,173,72,-5.336132957368016],[114,173,73,-5.315618092888877],[114,173,74,-5.299537946525972],[114,173,75,-5.297216511407487],[114,173,76,-5.305229835265128],[114,173,77,-5.298194718021099],[114,173,78,-5.257366587665206],[114,173,79,-5.22955371734183],[114,174,64,-5.451904565898409],[114,174,65,-5.449282936331035],[114,174,66,-5.445024293733381],[114,174,67,-5.436350979756357],[114,174,68,-5.427262053795501],[114,174,69,-5.418610853771631],[114,174,70,-5.406129398501396],[114,174,71,-5.394824637357199],[114,174,72,-5.380359928342362],[114,174,73,-5.362803975280998],[114,174,74,-5.3488243225691505],[114,174,75,-5.342951191872393],[114,174,76,-5.352880459574959],[114,174,77,-5.3453464463339735],[114,174,78,-5.30710718380706],[114,174,79,-5.275548791790128],[114,175,64,-5.488506252623988],[114,175,65,-5.487206081892783],[114,175,66,-5.483322643047262],[114,175,67,-5.475720026425463],[114,175,68,-5.471034834698416],[114,175,69,-5.46260881096246],[114,175,70,-5.44676791615012],[114,175,71,-5.436139639577461],[114,175,72,-5.423554961422079],[114,175,73,-5.408416527946511],[114,175,74,-5.396681292246338],[114,175,75,-5.3932486200728995],[114,175,76,-5.404918020932106],[114,175,77,-5.418150901696158],[114,175,78,-5.418552124409583],[114,175,79,-5.377995942857788],[114,176,64,-5.532464520672384],[114,176,65,-5.530808130092505],[114,176,66,-5.527328410099331],[114,176,67,-5.518274058076272],[114,176,68,-5.515422759706114],[114,176,69,-5.506149867166066],[114,176,70,-5.491169068845913],[114,176,71,-5.479827354321424],[114,176,72,-5.47185710118266],[114,176,73,-5.45775367184324],[114,176,74,-5.442823067571673],[114,176,75,-5.439979908528302],[114,176,76,-5.453944133155179],[114,176,77,-5.466851054455363],[114,176,78,-5.4683651787785035],[114,176,79,-5.424629574680396],[114,177,64,-5.582138758543893],[114,177,65,-5.5812044030305055],[114,177,66,-5.575515087319212],[114,177,67,-5.567625038905893],[114,177,68,-5.56515054391754],[114,177,69,-5.559396658243537],[114,177,70,-5.5431596209505685],[114,177,71,-5.530627285280807],[114,177,72,-5.520631631624444],[114,177,73,-5.505724226760435],[114,177,74,-5.490917765360965],[114,177,75,-5.48808989152532],[114,177,76,-5.5045373759462155],[114,177,77,-5.519906502775435],[114,177,78,-5.520372908583282],[114,177,79,-5.4970831718610444],[114,178,64,-5.631101730946994],[114,178,65,-5.6319629535429705],[114,178,66,-5.625578368482787],[114,178,67,-5.6197309045026085],[114,178,68,-5.61364075254696],[114,178,69,-5.611507023533588],[114,178,70,-5.596414197022762],[114,178,71,-5.583561902030904],[114,178,72,-5.570216271629755],[114,178,73,-5.556868447770032],[114,178,74,-5.5415588628346555],[114,178,75,-5.538808117459403],[114,178,76,-5.553399394983206],[114,178,77,-5.5709799226870045],[114,178,78,-5.571965476975061],[114,178,79,-5.54972046464624],[114,179,64,-5.677333120052608],[114,179,65,-5.674258811170576],[114,179,66,-5.669182966697917],[114,179,67,-5.663518456791431],[114,179,68,-5.659149632271293],[114,179,69,-5.6551235789797465],[114,179,70,-5.644202499956592],[114,179,71,-5.631806120308908],[114,179,72,-5.618090214468229],[114,179,73,-5.602595176973338],[114,179,74,-5.5869520422875425],[114,179,75,-5.58497762858578],[114,179,76,-5.600529097480693],[114,179,77,-5.619224711415914],[114,179,78,-5.6191476865432755],[114,179,79,-5.595055088855809],[114,180,64,-5.719144269395728],[114,180,65,-5.71466412835119],[114,180,66,-5.710740671300567],[114,180,67,-5.707599033650339],[114,180,68,-5.703895963423213],[114,180,69,-5.699070933815031],[114,180,70,-5.691718550081412],[114,180,71,-5.682201168962952],[114,180,72,-5.667971258847212],[114,180,73,-5.652532050153688],[114,180,74,-5.636564814054473],[114,180,75,-5.637105461144094],[114,180,76,-5.652918319302911],[114,180,77,-5.671740941976559],[114,180,78,-5.669936831808914],[114,180,79,-5.644877887318221],[114,181,64,-5.755384009704399],[114,181,65,-5.7521040969032615],[114,181,66,-5.747765296736114],[114,181,67,-5.741875613845245],[114,181,68,-5.7361561788806466],[114,181,69,-5.7315321324953485],[114,181,70,-5.725798552105608],[114,181,71,-5.7219846308921865],[114,181,72,-5.711951650919634],[114,181,73,-5.698896858363167],[114,181,74,-5.682502918461793],[114,181,75,-5.686294844662843],[114,181,76,-5.701430045601792],[114,181,77,-5.713197655614697],[114,181,78,-5.705735875400106],[114,181,79,-5.687077718582206],[114,182,64,-5.802858278122795],[114,182,65,-5.799352147258837],[114,182,66,-5.794560261398768],[114,182,67,-5.789174927150402],[114,182,68,-5.782827845675094],[114,182,69,-5.776843663519516],[114,182,70,-5.774016890213172],[114,182,71,-5.768274466672696],[114,182,72,-5.7587262812263855],[114,182,73,-5.746673594953079],[114,182,74,-5.730687069122274],[114,182,75,-5.735673054045327],[114,182,76,-5.744973454709011],[114,182,77,-5.754607921271265],[114,182,78,-5.746434758949134],[114,182,79,-5.727297188023421],[114,183,64,-5.842811611848896],[114,183,65,-5.840523014959092],[114,183,66,-5.8379302931374175],[114,183,67,-5.8315997580887124],[114,183,68,-5.828421974951918],[114,183,69,-5.821949353437165],[114,183,70,-5.817687435387558],[114,183,71,-5.812963760610445],[114,183,72,-5.804403244017582],[114,183,73,-5.7925255792402695],[114,183,74,-5.779281546348681],[114,183,75,-5.78266339713138],[114,183,76,-5.792333318197997],[114,183,77,-5.798943861807898],[114,183,78,-5.791023376130735],[114,183,79,-5.770682164757963],[114,184,64,-5.887321298838133],[114,184,65,-5.887009892721155],[114,184,66,-5.885693607241592],[114,184,67,-5.878976997597208],[114,184,68,-5.874051842436322],[114,184,69,-5.869416778007355],[114,184,70,-5.864218620497583],[114,184,71,-5.860444730158583],[114,184,72,-5.853721414040657],[114,184,73,-5.840497879790001],[114,184,74,-5.825647086287016],[114,184,75,-5.828824239407934],[114,184,76,-5.836956641915699],[114,184,77,-5.845632839308203],[114,184,78,-5.837179598459254],[114,184,79,-5.818786363290599],[114,185,64,-5.936715221486017],[114,185,65,-5.93531462595736],[114,185,66,-5.933495529208066],[114,185,67,-5.927651931114257],[114,185,68,-5.920969507263217],[114,185,69,-5.915046845926978],[114,185,70,-5.9114502449416575],[114,185,71,-5.908306404273813],[114,185,72,-5.901978494316369],[114,185,73,-5.888579771914843],[114,185,74,-5.870814362428703],[114,185,75,-5.871832615748827],[114,185,76,-5.878937740765566],[114,185,77,-5.8879224471354785],[114,185,78,-5.8811784378954535],[114,185,79,-5.861097890723399],[114,186,64,-5.989734335091942],[114,186,65,-5.988596319709774],[114,186,66,-5.986470980350273],[114,186,67,-5.980303880378117],[114,186,68,-5.971726139020539],[114,186,69,-5.968476720401937],[114,186,70,-5.967497342079501],[114,186,71,-5.960693577957349],[114,186,72,-5.9546792770350905],[114,186,73,-5.938867911606572],[114,186,74,-5.921367936982797],[114,186,75,-5.9189821362916835],[114,186,76,-5.9305915002686564],[114,186,77,-5.939786785845423],[114,186,78,-5.933296375011162],[114,186,79,-5.912059890524497],[114,187,64,-6.037801080037806],[114,187,65,-6.037533834324629],[114,187,66,-6.034272197823667],[114,187,67,-6.030688271073769],[114,187,68,-6.02087470631679],[114,187,69,-6.016809321547187],[114,187,70,-6.01765745870037],[114,187,71,-6.011564707150218],[114,187,72,-5.99991825246181],[114,187,73,-5.982883677046182],[114,187,74,-5.966596597889353],[114,187,75,-5.963387811594852],[114,187,76,-5.980128917023861],[114,187,77,-5.991724544565913],[114,187,78,-5.987328869517102],[114,187,79,-5.967534810194688],[114,188,64,-6.088930947763194],[114,188,65,-6.090086443751746],[114,188,66,-6.0852957131541],[114,188,67,-6.077595057873149],[114,188,68,-6.069306975686021],[114,188,69,-6.063374733905718],[114,188,70,-6.060669798381705],[114,188,71,-6.056176244819432],[114,188,72,-6.04162019491307],[114,188,73,-6.021651033960174],[114,188,74,-6.0072365417065],[114,188,75,-6.003337510590623],[114,188,76,-6.026100652896795],[114,188,77,-6.036745404295804],[114,188,78,-6.036669793283167],[114,188,79,-6.014707001644782],[114,189,64,-6.132531145197066],[114,189,65,-6.138750982372645],[114,189,66,-6.138236475817772],[114,189,67,-6.1341219210617695],[114,189,68,-6.127153526231548],[114,189,69,-6.121340754617422],[114,189,70,-6.11715928598133],[114,189,71,-6.110803747650794],[114,189,72,-6.091339145529547],[114,189,73,-6.068060128372052],[114,189,74,-6.051506678910654],[114,189,75,-6.048770482826226],[114,189,76,-6.064327777318826],[114,189,77,-6.077938967666708],[114,189,78,-6.0776469905887724],[114,189,79,-6.054254594484181],[114,190,64,-6.181783115303277],[114,190,65,-6.184804616470468],[114,190,66,-6.1863047661052],[114,190,67,-6.1841400420989885],[114,190,68,-6.175776049997123],[114,190,69,-6.169231845943203],[114,190,70,-6.163332335270672],[114,190,71,-6.15411150463744],[114,190,72,-6.138063516033454],[114,190,73,-6.115230244124859],[114,190,74,-6.096095939199828],[114,190,75,-6.095529768046385],[114,190,76,-6.107462578912974],[114,190,77,-6.121706239397733],[114,190,78,-6.119925086639739],[114,190,79,-6.09841360452132],[114,191,64,-6.2274226120089065],[114,191,65,-6.2309779800974585],[114,191,66,-6.232934574770803],[114,191,67,-6.229667329872538],[114,191,68,-6.222756576723817],[114,191,69,-6.212119934573356],[114,191,70,-6.204264127988969],[114,191,71,-6.1973450013935185],[114,191,72,-6.180738652592792],[114,191,73,-6.157909375764466],[114,191,74,-6.142615682586803],[114,191,75,-6.141415510613669],[114,191,76,-6.150970111078932],[114,191,77,-6.164673405571971],[114,191,78,-6.160294667608932],[114,191,79,-6.139478087986776],[114,192,64,-6.27862384182548],[114,192,65,-6.280402530391848],[114,192,66,-6.280470403418024],[114,192,67,-6.278381822452702],[114,192,68,-6.268104822472794],[114,192,69,-6.257741553204636],[114,192,70,-6.250339638618974],[114,192,71,-6.241456369289017],[114,192,72,-6.224278743083111],[114,192,73,-6.201954485151429],[114,192,74,-6.18730517077041],[114,192,75,-6.185216226434506],[114,192,76,-6.192520830084982],[114,192,77,-6.208685644753767],[114,192,78,-6.203841334982519],[114,192,79,-6.18243579677953],[114,193,64,-6.335717730794756],[114,193,65,-6.332294359154084],[114,193,66,-6.325121462150878],[114,193,67,-6.314303842350843],[114,193,68,-6.302523199830324],[114,193,69,-6.294383032572821],[114,193,70,-6.285944117880462],[114,193,71,-6.28042144628116],[114,193,72,-6.265343972531174],[114,193,73,-6.2477116799094246],[114,193,74,-6.230617990000932],[114,193,75,-6.227317840389602],[114,193,76,-6.235145028748395],[114,193,77,-6.251237859601227],[114,193,78,-6.253310364821102],[114,193,79,-6.233250467170368],[114,194,64,-6.390287957438394],[114,194,65,-6.386670436606217],[114,194,66,-6.375089959358761],[114,194,67,-6.363937741884538],[114,194,68,-6.352044283001182],[114,194,69,-6.343594325673643],[114,194,70,-6.335451380144015],[114,194,71,-6.327311106088735],[114,194,72,-6.313440206197853],[114,194,73,-6.29683492941221],[114,194,74,-6.2784113199798135],[114,194,75,-6.27486758040234],[114,194,76,-6.283427502184552],[114,194,77,-6.297242398895608],[114,194,78,-6.296927593353694],[114,194,79,-6.277790720368447],[114,195,64,-6.4395702604754],[114,195,65,-6.434775147537076],[114,195,66,-6.421847187713154],[114,195,67,-6.408102683814037],[114,195,68,-6.39800496226448],[114,195,69,-6.387475804143345],[114,195,70,-6.37870955282276],[114,195,71,-6.370082605317023],[114,195,72,-6.357833916616701],[114,195,73,-6.342676617710589],[114,195,74,-6.323535455424538],[114,195,75,-6.318891782132156],[114,195,76,-6.327277800080993],[114,195,77,-6.342788655296258],[114,195,78,-6.348537493275509],[114,195,79,-6.3302819761949465],[114,196,64,-6.478594920522238],[114,196,65,-6.469925864289791],[114,196,66,-6.4536113663584835],[114,196,67,-6.435742713275084],[114,196,68,-6.422215633477107],[114,196,69,-6.407593375428897],[114,196,70,-6.397675065061978],[114,196,71,-6.387375840209859],[114,196,72,-6.3735913623871525],[114,196,73,-6.360190733159859],[114,196,74,-6.342267602286427],[114,196,75,-6.336555204217749],[114,196,76,-6.345305323649833],[114,196,77,-6.363121140902821],[114,196,78,-6.3707545767490705],[114,196,79,-6.356589477187395],[114,197,64,-6.5302128761829055],[114,197,65,-6.51821990207056],[114,197,66,-6.501899330905169],[114,197,67,-6.4830540223865345],[114,197,68,-6.464028623686367],[114,197,69,-6.450597738461775],[114,197,70,-6.441148202694405],[114,197,71,-6.428320942568116],[114,197,72,-6.416718228992575],[114,197,73,-6.404610349498721],[114,197,74,-6.387192825457194],[114,197,75,-6.380499688791682],[114,197,76,-6.387371594589579],[114,197,77,-6.402061218836037],[114,197,78,-6.40862561046419],[114,197,79,-6.393889344703977],[114,198,64,-6.58055074581307],[114,198,65,-6.5674933989734505],[114,198,66,-6.54959320340301],[114,198,67,-6.52863764912643],[114,198,68,-6.509844694709287],[114,198,69,-6.496140397616299],[114,198,70,-6.4834615380313085],[114,198,71,-6.472821328638217],[114,198,72,-6.459963317567984],[114,198,73,-6.448082555602454],[114,198,74,-6.432380162313365],[114,198,75,-6.424872305464746],[114,198,76,-6.434024076997881],[114,198,77,-6.450782756447283],[114,198,78,-6.456491719346479],[114,198,79,-6.4437040681737825],[114,199,64,-6.627603838870841],[114,199,65,-6.613742593064189],[114,199,66,-6.597387214988403],[114,199,67,-6.573641582619295],[114,199,68,-6.555198284221393],[114,199,69,-6.541090195939991],[114,199,70,-6.527921604037431],[114,199,71,-6.517949928780058],[114,199,72,-6.504904491249926],[114,199,73,-6.492783307356319],[114,199,74,-6.476086856126974],[114,199,75,-6.469973805251439],[114,199,76,-6.481271417643848],[114,199,77,-6.497756141077777],[114,199,78,-6.497300520099565],[114,199,79,-6.484083873509892],[114,200,64,-6.676703582450606],[114,200,65,-6.662479894435337],[114,200,66,-6.646233457090584],[114,200,67,-6.622612311700761],[114,200,68,-6.602558687938088],[114,200,69,-6.586404308386581],[114,200,70,-6.5734150997314105],[114,200,71,-6.564223691607441],[114,200,72,-6.550887998828464],[114,200,73,-6.537763903864193],[114,200,74,-6.516078386424251],[114,200,75,-6.513997133794063],[114,200,76,-6.527904219622613],[114,200,77,-6.545032397305321],[114,200,78,-6.5438699010517825],[114,200,79,-6.5303147895379405],[114,201,64,-6.713441944638305],[114,201,65,-6.701461324330801],[114,201,66,-6.6870860723512555],[114,201,67,-6.6651750343519405],[114,201,68,-6.642910529546244],[114,201,69,-6.627323394671098],[114,201,70,-6.613346436281728],[114,201,71,-6.604127340610436],[114,201,72,-6.595729974846742],[114,201,73,-6.582632146805073],[114,201,74,-6.559567108359729],[114,201,75,-6.557732280858911],[114,201,76,-6.569641095658604],[114,201,77,-6.58885879880906],[114,201,78,-6.5804379011913054],[114,201,79,-6.562777470625218],[114,202,64,-6.76699070156391],[114,202,65,-6.754696769350285],[114,202,66,-6.741682930004907],[114,202,67,-6.717666995587522],[114,202,68,-6.696956290053869],[114,202,69,-6.677564915894851],[114,202,70,-6.661155613986103],[114,202,71,-6.651478947713074],[114,202,72,-6.6446989642382706],[114,202,73,-6.630334456699649],[114,202,74,-6.608191436003566],[114,202,75,-6.605594599025001],[114,202,76,-6.6145316034654],[114,202,77,-6.6349881134211985],[114,202,78,-6.629133600906601],[114,202,79,-6.614107871462624],[114,203,64,-6.817447315946515],[114,203,65,-6.8064384118754875],[114,203,66,-6.789492664783309],[114,203,67,-6.767761819567057],[114,203,68,-6.747603454695658],[114,203,69,-6.724611525380155],[114,203,70,-6.707059595299463],[114,203,71,-6.698587493950007],[114,203,72,-6.687753322258816],[114,203,73,-6.673921235552572],[114,203,74,-6.654225298265339],[114,203,75,-6.648581738188392],[114,203,76,-6.66073440723103],[114,203,77,-6.685507124800493],[114,203,78,-6.67917555692715],[114,203,79,-6.665891210342039],[114,204,64,-6.86980564455465],[114,204,65,-6.856030484727307],[114,204,66,-6.837292259243097],[114,204,67,-6.812383471220584],[114,204,68,-6.790554171462571],[114,204,69,-6.766323773376799],[114,204,70,-6.748529091842757],[114,204,71,-6.739720436133106],[114,204,72,-6.727231070353531],[114,204,73,-6.713709682505558],[114,204,74,-6.694560006191491],[114,204,75,-6.687825923475269],[114,204,76,-6.7030557919168245],[114,204,77,-6.732166691859908],[114,204,78,-6.726933768489767],[114,204,79,-6.717147403395668],[114,205,64,-6.933447786769798],[114,205,65,-6.916552510141893],[114,205,66,-6.897280650954484],[114,205,67,-6.870776044585639],[114,205,68,-6.847779193857635],[114,205,69,-6.82559529782927],[114,205,70,-6.806705507393418],[114,205,71,-6.788532744333774],[114,205,72,-6.7746576665736615],[114,205,73,-6.75676642430726],[114,205,74,-6.73724998521595],[114,205,75,-6.732801175486141],[114,205,76,-6.750176203770766],[114,205,77,-6.782295123418712],[114,205,78,-6.778242178529008],[114,205,79,-6.763482736676162],[114,206,64,-6.983663428298175],[114,206,65,-6.967242617853451],[114,206,66,-6.945891735112913],[114,206,67,-6.918062205892431],[114,206,68,-6.895494472947143],[114,206,69,-6.87343261533533],[114,206,70,-6.853901162623099],[114,206,71,-6.833113305083743],[114,206,72,-6.818198116052045],[114,206,73,-6.800703112737139],[114,206,74,-6.783410508044425],[114,206,75,-6.777932965646061],[114,206,76,-6.799742007104547],[114,206,77,-6.83192884960891],[114,206,78,-6.831832517772953],[114,206,79,-6.815210578133108],[114,207,64,-7.033190704664817],[114,207,65,-7.0156564664091485],[114,207,66,-6.99284639832369],[114,207,67,-6.96626628844585],[114,207,68,-6.942157954316833],[114,207,69,-6.919961393938631],[114,207,70,-6.898799534343065],[114,207,71,-6.879155508341115],[114,207,72,-6.8642493234283934],[114,207,73,-6.846130835741524],[114,207,74,-6.828797499318613],[114,207,75,-6.8236952993134095],[114,207,76,-6.841439580640237],[114,207,77,-6.871822557526077],[114,207,78,-6.872758204175618],[114,207,79,-6.858478102949661],[114,208,64,-7.0818860865654285],[114,208,65,-7.064293313782511],[114,208,66,-7.040416082523356],[114,208,67,-7.013656233088149],[114,208,68,-6.9870925750015],[114,208,69,-6.966139111045443],[114,208,70,-6.943545657741546],[114,208,71,-6.9252928134002385],[114,208,72,-6.909499575606521],[114,208,73,-6.892372868473113],[114,208,74,-6.875307623448301],[114,208,75,-6.870971623278771],[114,208,76,-6.89394132604199],[114,208,77,-6.924386516406389],[114,208,78,-6.933475058311134],[114,208,79,-6.918263234270536],[114,209,64,-7.130865030729972],[114,209,65,-7.113292119611588],[114,209,66,-7.087487767270987],[114,209,67,-7.059724115926686],[114,209,68,-7.0333526466665415],[114,209,69,-7.010058651149575],[114,209,70,-6.988652208494024],[114,209,71,-6.969728161915792],[114,209,72,-6.955224513937122],[114,209,73,-6.939576348403878],[114,209,74,-6.9203504490014005],[114,209,75,-6.918775501308756],[114,209,76,-6.9453698768974546],[114,209,77,-6.978612568359174],[114,209,78,-6.986438067208846],[114,209,79,-6.965898761587185],[114,210,64,-7.182995926902036],[114,210,65,-7.16309513982977],[114,210,66,-7.1392630217992705],[114,210,67,-7.111255484453041],[114,210,68,-7.086435561498595],[114,210,69,-7.062889253080163],[114,210,70,-7.039174490485837],[114,210,71,-7.02182058704895],[114,210,72,-7.005384865283225],[114,210,73,-6.989465206680228],[114,210,74,-6.971183854527657],[114,210,75,-6.968750210822093],[114,210,76,-6.99234274241497],[114,210,77,-7.0237248175915905],[114,210,78,-7.029556325151634],[114,210,79,-7.010518448468633],[114,211,64,-7.230583141979567],[114,211,65,-7.210742368291297],[114,211,66,-7.187903705430493],[114,211,67,-7.158977309180426],[114,211,68,-7.136140423237559],[114,211,69,-7.113522148726849],[114,211,70,-7.0889929343082105],[114,211,71,-7.071946742445634],[114,211,72,-7.056217111845999],[114,211,73,-7.035208466056875],[114,211,74,-7.017839852260805],[114,211,75,-7.01842056849391],[114,211,76,-7.04197674307665],[114,211,77,-7.074547793680937],[114,211,78,-7.0838212540288215],[114,211,79,-7.0705798936516455],[114,212,64,-7.266071160645035],[114,212,65,-7.2483455323222605],[114,212,66,-7.230032238354836],[114,212,67,-7.209800509445723],[114,212,68,-7.188125233654703],[114,212,69,-7.1689781451703105],[114,212,70,-7.149540303502629],[114,212,71,-7.136268864610542],[114,212,72,-7.120571217817385],[114,212,73,-7.100426359995285],[114,212,74,-7.07979742299138],[114,212,75,-7.077676802429258],[114,212,76,-7.099755577244639],[114,212,77,-7.12257158803484],[114,212,78,-7.125901904559141],[114,212,79,-7.115564495441591],[114,213,64,-7.319087063733305],[114,213,65,-7.294314162488962],[114,213,66,-7.268508231057649],[114,213,67,-7.246464888809741],[114,213,68,-7.225610411309546],[114,213,69,-7.204539403838869],[114,213,70,-7.18730041878589],[114,213,71,-7.18117112273366],[114,213,72,-7.17226661080907],[114,213,73,-7.156068947741541],[114,213,74,-7.1342232592457195],[114,213,75,-7.135392338606781],[114,213,76,-7.154850548566259],[114,213,77,-7.173934937489249],[114,213,78,-7.175934320109701],[114,213,79,-7.160787853765946],[114,214,64,-7.365118424633043],[114,214,65,-7.341352572781305],[114,214,66,-7.312720719512502],[114,214,67,-7.29141728372268],[114,214,68,-7.271731617782347],[114,214,69,-7.249283940599719],[114,214,70,-7.235869310688353],[114,214,71,-7.225199128135017],[114,214,72,-7.217174233121495],[114,214,73,-7.2019017042766516],[114,214,74,-7.179612446615321],[114,214,75,-7.1822199483410225],[114,214,76,-7.2037439441463595],[114,214,77,-7.224597529079264],[114,214,78,-7.22515904487688],[114,214,79,-7.2078651605890975],[114,215,64,-7.412899630988134],[114,215,65,-7.391059582596037],[114,215,66,-7.361903638819128],[114,215,67,-7.338615653982873],[114,215,68,-7.320167002588753],[114,215,69,-7.299817791039837],[114,215,70,-7.282993132077679],[114,215,71,-7.271277803072796],[114,215,72,-7.262115591288554],[114,215,73,-7.245348108959929],[114,215,74,-7.224075469025011],[114,215,75,-7.224522607773101],[114,215,76,-7.244465517189585],[114,215,77,-7.264788105007648],[114,215,78,-7.264784240129762],[114,215,79,-7.250505274662536],[114,216,64,-7.456194701983217],[114,216,65,-7.435472261650998],[114,216,66,-7.408433594854504],[114,216,67,-7.383340674876418],[114,216,68,-7.366500479798602],[114,216,69,-7.345888139989356],[114,216,70,-7.329186915586294],[114,216,71,-7.3190382573887875],[114,216,72,-7.306939971803182],[114,216,73,-7.288681415851089],[114,216,74,-7.266457623940737],[114,216,75,-7.264086584155443],[114,216,76,-7.2848827927885305],[114,216,77,-7.306368716099541],[114,216,78,-7.306298763381207],[114,216,79,-7.294452531231638],[114,217,64,-7.493123760807869],[114,217,65,-7.477391429636821],[114,217,66,-7.459441593094023],[114,217,67,-7.440310205988973],[114,217,68,-7.421470126822891],[114,217,69,-7.401668556653295],[114,217,70,-7.38259561837485],[114,217,71,-7.368333750627976],[114,217,72,-7.348342396274861],[114,217,73,-7.323356250802663],[114,217,74,-7.299526769802953],[114,217,75,-7.2973217738860985],[114,217,76,-7.320230028782388],[114,217,77,-7.3459823445126995],[114,217,78,-7.350463431971791],[114,217,79,-7.3424653740285715],[114,218,64,-7.544178762161974],[114,218,65,-7.528154702881362],[114,218,66,-7.510954443413476],[114,218,67,-7.492434996055502],[114,218,68,-7.470726537094232],[114,218,69,-7.452664393020719],[114,218,70,-7.432013761135218],[114,218,71,-7.415287568285803],[114,218,72,-7.395780072147116],[114,218,73,-7.368632027935037],[114,218,74,-7.344078142664394],[114,218,75,-7.34057073541981],[114,218,76,-7.364618698328991],[114,218,77,-7.394076189948695],[114,218,78,-7.407497445165156],[114,218,79,-7.396871317387743],[114,219,64,-7.590600148231298],[114,219,65,-7.572658953459679],[114,219,66,-7.5579380949096295],[114,219,67,-7.537766789116358],[114,219,68,-7.518587878970419],[114,219,69,-7.497210962919532],[114,219,70,-7.476454521401517],[114,219,71,-7.4588085850751575],[114,219,72,-7.438541428567546],[114,219,73,-7.411742233355562],[114,219,74,-7.388954968362917],[114,219,75,-7.384761682167972],[114,219,76,-7.413500871806989],[114,219,77,-7.449714353530171],[114,219,78,-7.468468204526729],[114,219,79,-7.452092603465742],[114,220,64,-7.63600900887562],[114,220,65,-7.6171949433430965],[114,220,66,-7.600553308187172],[114,220,67,-7.576418474711148],[114,220,68,-7.554963552339076],[114,220,69,-7.53273001837353],[114,220,70,-7.508564851882074],[114,220,71,-7.490816942421049],[114,220,72,-7.471732481002533],[114,220,73,-7.444511780786704],[114,220,74,-7.425766208811078],[114,220,75,-7.430025405323384],[114,220,76,-7.455106947569466],[114,220,77,-7.509317497432632],[114,220,78,-7.540209067464737],[114,220,79,-7.522594812348333],[114,221,64,-7.680079563400918],[114,221,65,-7.663379781505312],[114,221,66,-7.643908692422591],[114,221,67,-7.622022510817345],[114,221,68,-7.5999970608528145],[114,221,69,-7.574937047481143],[114,221,70,-7.551264153069872],[114,221,71,-7.533018766626417],[114,221,72,-7.513356556302311],[114,221,73,-7.489380672419747],[114,221,74,-7.503945785373698],[114,221,75,-7.516761602667507],[114,221,76,-7.541576060903269],[114,221,77,-7.5962703248086365],[114,221,78,-7.60176712099168],[114,221,79,-7.572783883668266],[114,222,64,-7.726261672783532],[114,222,65,-7.707422578016055],[114,222,66,-7.688785449348302],[114,222,67,-7.666866170298734],[114,222,68,-7.64289254742136],[114,222,69,-7.619807810993481],[114,222,70,-7.59600189948395],[114,222,71,-7.5768154173913445],[114,222,72,-7.554977334342355],[114,222,73,-7.531757924712549],[114,222,74,-7.554965285251112],[114,222,75,-7.569204612200694],[114,222,76,-7.594930767266572],[114,222,77,-7.645748974375695],[114,222,78,-7.640648446665829],[114,222,79,-7.613306124744467],[114,223,64,-7.776679519149366],[114,223,65,-7.7572044722351645],[114,223,66,-7.739739773432691],[114,223,67,-7.7157490713740495],[114,223,68,-7.689840188244474],[114,223,69,-7.666426507651003],[114,223,70,-7.642750315214016],[114,223,71,-7.620183915376993],[114,223,72,-7.597414775660318],[114,223,73,-7.593837531092972],[114,223,74,-7.616017480743169],[114,223,75,-7.63479358729701],[114,223,76,-7.663630503464963],[114,223,77,-7.692760112594818],[114,223,78,-7.6851365125942745],[114,223,79,-7.658796303684601],[114,224,64,-7.818728230234581],[114,224,65,-7.804235893247953],[114,224,66,-7.78565379468232],[114,224,67,-7.761480691219321],[114,224,68,-7.731881014476917],[114,224,69,-7.708517487924563],[114,224,70,-7.6874894914160175],[114,224,71,-7.663514296372426],[114,224,72,-7.639610837184313],[114,224,73,-7.64470135346276],[114,224,74,-7.665354224641879],[114,224,75,-7.6891154177763426],[114,224,76,-7.719383048374513],[114,224,77,-7.741096406954623],[114,224,78,-7.734328332874703],[114,224,79,-7.708165193233652],[114,225,64,-7.870852843270993],[114,225,65,-7.854614949084883],[114,225,66,-7.833143335679785],[114,225,67,-7.805395490448651],[114,225,68,-7.774305406140187],[114,225,69,-7.751237339815157],[114,225,70,-7.732361682700104],[114,225,71,-7.707895478936092],[114,225,72,-7.687264617485675],[114,225,73,-7.6999499637608535],[114,225,74,-7.714633859531247],[114,225,75,-7.745854441736034],[114,225,76,-7.774088088292329],[114,225,77,-7.788826250655419],[114,225,78,-7.782844625004924],[114,225,79,-7.75713598649611],[114,226,64,-7.918838062745948],[114,226,65,-7.904707330248123],[114,226,66,-7.883851844358106],[114,226,67,-7.855192707814427],[114,226,68,-7.826797655496439],[114,226,69,-7.800176140368556],[114,226,70,-7.780758053642074],[114,226,71,-7.756860135731694],[114,226,72,-7.734713688593825],[114,226,73,-7.726325748888737],[114,226,74,-7.7474354428928365],[114,226,75,-7.784869569113035],[114,226,76,-7.821222015094595],[114,226,77,-7.837176407368687],[114,226,78,-7.82970578627626],[114,226,79,-7.803340672242236],[114,227,64,-7.967204370449644],[114,227,65,-7.950244733252472],[114,227,66,-7.930313721240405],[114,227,67,-7.902387497434099],[114,227,68,-7.8736097300732855],[114,227,69,-7.844135489113705],[114,227,70,-7.823938962202765],[114,227,71,-7.801497754664696],[114,227,72,-7.779763153836003],[114,227,73,-7.764994784250837],[114,227,74,-7.7924180069478295],[114,227,75,-7.842977204971221],[114,227,76,-7.878661621572289],[114,227,77,-7.892648178752545],[114,227,78,-7.887017730181971],[114,227,79,-7.859559976528344],[114,228,64,-8.00283605083117],[114,228,65,-7.984981920167186],[114,228,66,-7.961560690416575],[114,228,67,-7.932622144222357],[114,228,68,-7.904049212893566],[114,228,69,-7.87719200676349],[114,228,70,-7.84995575822612],[114,228,71,-7.827948332200056],[114,228,72,-7.810162135517676],[114,228,73,-7.791562907170546],[114,228,74,-7.828485041449622],[114,228,75,-7.882722266172418],[114,228,76,-7.919248792863515],[114,228,77,-7.9344312657814315],[114,228,78,-7.932013122322769],[114,228,79,-7.90452127856213],[114,229,64,-8.037001421587798],[114,229,65,-8.022439590171924],[114,229,66,-8.001697096186327],[114,229,67,-7.975194399308705],[114,229,68,-7.949617363803166],[114,229,69,-7.923615105073232],[114,229,70,-7.892140663035303],[114,229,71,-7.866540610532086],[114,229,72,-7.847801691598013],[114,229,73,-7.867135525389527],[114,229,74,-7.926932952435673],[114,229,75,-7.955434186617722],[114,229,76,-7.96903916892128],[114,229,77,-7.983474736135279],[114,229,78,-7.98135815560113],[114,229,79,-7.95558698998699],[114,230,64,-8.080939908619495],[114,230,65,-8.065450017075339],[114,230,66,-8.046397617603674],[114,230,67,-8.02217386268122],[114,230,68,-7.996065888667985],[114,230,69,-7.972058062676992],[114,230,70,-7.939517755816004],[114,230,71,-7.913367659306924],[114,230,72,-7.893018914331129],[114,230,73,-7.901403192017731],[114,230,74,-7.980329769863993],[114,230,75,-8.001528975432654],[114,230,76,-8.012719998938563],[114,230,77,-8.027863320993578],[114,230,78,-8.023626602674794],[114,230,79,-8.000207089839224],[114,231,64,-8.13484794692156],[114,231,65,-8.116921266124951],[114,231,66,-8.0990611129124],[114,231,67,-8.071261728081879],[114,231,68,-8.04562447110616],[114,231,69,-8.021621619636276],[114,231,70,-7.989647655295283],[114,231,71,-7.962049364373941],[114,231,72,-7.939000233175597],[114,231,73,-7.914341370360733],[114,231,74,-7.982456753378013],[114,231,75,-8.015968227506486],[114,231,76,-8.048271385943545],[114,231,77,-8.071985207560394],[114,231,78,-8.070001378534753],[114,231,79,-8.045164438345376],[114,232,64,-8.184773174055248],[114,232,65,-8.166818538524176],[114,232,66,-8.146341103976855],[114,232,67,-8.115901650904721],[114,232,68,-8.091809344127952],[114,232,69,-8.066025765951581],[114,232,70,-8.03637699512442],[114,232,71,-8.005982057293114],[114,232,72,-7.984340276298125],[114,232,73,-7.959641059334464],[114,232,74,-8.027955877205061],[114,232,75,-8.054537994331342],[114,232,76,-8.097627326761186],[114,232,77,-8.119829208043738],[114,232,78,-8.116529023046882],[114,232,79,-8.093219272334121],[114,233,64,-8.232789086284127],[114,233,65,-8.216960465502549],[114,233,66,-8.194215094453497],[114,233,67,-8.163224250298763],[114,233,68,-8.138888853938377],[114,233,69,-8.111357134287683],[114,233,70,-8.082455576771634],[114,233,71,-8.054549789763435],[114,233,72,-8.028895392823836],[114,233,73,-8.003290572852409],[114,233,74,-8.071656741897385],[114,233,75,-8.107781112937209],[114,233,76,-8.149762297305038],[114,233,77,-8.170127921514961],[114,233,78,-8.167848132033116],[114,233,79,-8.143880481947393],[114,234,64,-8.284023410049468],[114,234,65,-8.26855907185752],[114,234,66,-8.242841611907583],[114,234,67,-8.21241922023268],[114,234,68,-8.190415761273185],[114,234,69,-8.16170335626036],[114,234,70,-8.132022059482939],[114,234,71,-8.105744709228157],[114,234,72,-8.078213439157244],[114,234,73,-8.050153501179892],[114,234,74,-8.087045695133167],[114,234,75,-8.151332156578183],[114,234,76,-8.193192502294881],[114,234,77,-8.224031755996593],[114,234,78,-8.221521319618956],[114,234,79,-8.196783010572654],[114,235,64,-8.333997163287753],[114,235,65,-8.314659372292601],[114,235,66,-8.289195993278618],[114,235,67,-8.259516293939248],[114,235,68,-8.235386890322003],[114,235,69,-8.209757895573832],[114,235,70,-8.178730090605267],[114,235,71,-8.153208656142393],[114,235,72,-8.12571661522671],[114,235,73,-8.09769302970366],[114,235,74,-8.072876998882354],[114,235,75,-8.09279856966575],[114,235,76,-8.127746228896594],[114,235,77,-8.178499844039472],[114,235,78,-8.226051509036564],[114,235,79,-8.25192176464676],[114,236,64,-8.398516653105922],[114,236,65,-8.377356129206236],[114,236,66,-8.352528834643552],[114,236,67,-8.325804766986316],[114,236,68,-8.29750961883553],[114,236,69,-8.269707515811815],[114,236,70,-8.239011161880326],[114,236,71,-8.211843523050566],[114,236,72,-8.188105906652051],[114,236,73,-8.160787923753416],[114,236,74,-8.13567342478401],[114,236,75,-8.152880952267507],[114,236,76,-8.183518280828608],[114,236,77,-8.23237592479454],[114,236,78,-8.291865729406938],[114,236,79,-8.305791473134429],[114,237,64,-8.453610494065472],[114,237,65,-8.429303854793236],[114,237,66,-8.398610421545746],[114,237,67,-8.366081697029204],[114,237,68,-8.33542144714157],[114,237,69,-8.306473343628141],[114,237,70,-8.27589190281731],[114,237,71,-8.24889759484673],[114,237,72,-8.227216700846254],[114,237,73,-8.203089055905291],[114,237,74,-8.179193605951946],[114,237,75,-8.230249343991657],[114,237,76,-8.26492085339668],[114,237,77,-8.323227674039744],[114,237,78,-8.382283498444842],[114,237,79,-8.353825231703485],[114,238,64,-8.502204317040867],[114,238,65,-8.479154279771288],[114,238,66,-8.44673309716137],[114,238,67,-8.41322304869111],[114,238,68,-8.38478010851722],[114,238,69,-8.35351227911403],[114,238,70,-8.32384504576405],[114,238,71,-8.297157771095653],[114,238,72,-8.277486366537186],[114,238,73,-8.252790285078712],[114,238,74,-8.25800795416989],[114,238,75,-8.297049497853497],[114,238,76,-8.331452108948794],[114,238,77,-8.405956151764531],[114,238,78,-8.425677596549582],[114,238,79,-8.397764268540751],[114,239,64,-8.556886468351827],[114,239,65,-8.534802612911935],[114,239,66,-8.50012392184991],[114,239,67,-8.46574310601787],[114,239,68,-8.439687364034972],[114,239,69,-8.408054359975392],[114,239,70,-8.375197104104958],[114,239,71,-8.347894851273871],[114,239,72,-8.327354138739674],[114,239,73,-8.30419784434878],[114,239,74,-8.291808136177567],[114,239,75,-8.320018472450485],[114,239,76,-8.357258948107201],[114,239,77,-8.437566436255153],[114,239,78,-8.468708807105527],[114,239,79,-8.439308006822953],[114,240,64,-8.604217643097183],[114,240,65,-8.58265185890425],[114,240,66,-8.549264820458609],[114,240,67,-8.516208960962135],[114,240,68,-8.489084265463637],[114,240,69,-8.455945253696505],[114,240,70,-8.422499767310722],[114,240,71,-8.395477916918148],[114,240,72,-8.376695443041555],[114,240,73,-8.354843243650294],[114,240,74,-8.341918377797372],[114,240,75,-8.354646361268218],[114,240,76,-8.397368360945753],[114,240,77,-8.481864242670037],[114,240,78,-8.515616692076211],[114,240,79,-8.487637767922546],[114,241,64,-8.642030302776643],[114,241,65,-8.626910319459755],[114,241,66,-8.600879137901002],[114,241,67,-8.575711205855601],[114,241,68,-8.546333287393223],[114,241,69,-8.514558272780915],[114,241,70,-8.480893734160833],[114,241,71,-8.45482625485688],[114,241,72,-8.434986698096498],[114,241,73,-8.41312241638171],[114,241,74,-8.388364649683686],[114,241,75,-8.380804250573059],[114,241,76,-8.384653347881425],[114,241,77,-8.395192493392887],[114,241,78,-8.384373469364414],[114,241,79,-8.371213440947733],[114,242,64,-8.692640202896447],[114,242,65,-8.674801438490364],[114,242,66,-8.650663624996435],[114,242,67,-8.624277836038514],[114,242,68,-8.596983283110644],[114,242,69,-8.566465196036702],[114,242,70,-8.534093893034335],[114,242,71,-8.507559183102948],[114,242,72,-8.485874550046542],[114,242,73,-8.462962546923162],[114,242,74,-8.440667315911162],[114,242,75,-8.432286319214025],[114,242,76,-8.436562171794048],[114,242,77,-8.446981814476786],[114,242,78,-8.438040536776146],[114,242,79,-8.420693963577165],[114,243,64,-8.73611298132593],[114,243,65,-8.71783143351088],[114,243,66,-8.695388686401948],[114,243,67,-8.668817249489308],[114,243,68,-8.644330578809184],[114,243,69,-8.614643272215751],[114,243,70,-8.58199998515351],[114,243,71,-8.556372763487605],[114,243,72,-8.533346416719466],[114,243,73,-8.509446121552259],[114,243,74,-8.48793001130648],[114,243,75,-8.478953011136305],[114,243,76,-8.487253128077766],[114,243,77,-8.49637285983083],[114,243,78,-8.487105413697536],[114,243,79,-8.485263744750183],[114,244,64,-8.772154334750121],[114,244,65,-8.758773284590848],[114,244,66,-8.739641629929423],[114,244,67,-8.715819845934545],[114,244,68,-8.6914796093661],[114,244,69,-8.66696869004969],[114,244,70,-8.636154155223297],[114,244,71,-8.611919986940622],[114,244,72,-8.59137740650025],[114,244,73,-8.565725892129418],[114,244,74,-8.545429291753939],[114,244,75,-8.537254984127438],[114,244,76,-8.550935570058988],[114,244,77,-8.562475043213068],[114,244,78,-8.552956783563289],[114,244,79,-8.549522124902865],[114,245,64,-8.815419887068268],[114,245,65,-8.80122326337346],[114,245,66,-8.783681388829596],[114,245,67,-8.762029823948996],[114,245,68,-8.73517045915062],[114,245,69,-8.709394141761479],[114,245,70,-8.682345593087527],[114,245,71,-8.657677007595597],[114,245,72,-8.635460904112442],[114,245,73,-8.611834344075946],[114,245,74,-8.59048215337613],[114,245,75,-8.587361581297031],[114,245,76,-8.600230624061496],[114,245,77,-8.613562119301974],[114,245,78,-8.603104198416688],[114,245,79,-8.60957930725341],[114,246,64,-8.862246195643797],[114,246,65,-8.846486254664155],[114,246,66,-8.828310658905291],[114,246,67,-8.80548216548309],[114,246,68,-8.779367745399586],[114,246,69,-8.754593710110512],[114,246,70,-8.731898065655221],[114,246,71,-8.706564691714952],[114,246,72,-8.682424331044063],[114,246,73,-8.65857079159132],[114,246,74,-8.635413548399567],[114,246,75,-8.632469016333571],[114,246,76,-8.648768891575584],[114,246,77,-8.661525768249088],[114,246,78,-8.65042053143822],[114,246,79,-8.66602067465322],[114,247,64,-8.915369523312664],[114,247,65,-8.898659524271675],[114,247,66,-8.87798060641147],[114,247,67,-8.85420994113499],[114,247,68,-8.830322649647549],[114,247,69,-8.804112250277868],[114,247,70,-8.785207613564664],[114,247,71,-8.760388966147564],[114,247,72,-8.73170463436639],[114,247,73,-8.708664678641352],[114,247,74,-8.681872057080064],[114,247,75,-8.676691043929521],[114,247,76,-8.691715036244675],[114,247,77,-8.70633150518701],[114,247,78,-8.6942420666163],[114,247,79,-8.699051790498586],[114,248,64,-8.963894843008271],[114,248,65,-8.945292036168007],[114,248,66,-8.920895680716358],[114,248,67,-8.896757686303015],[114,248,68,-8.875243895944791],[114,248,69,-8.85194693739022],[114,248,70,-8.831589252308452],[114,248,71,-8.808886887124336],[114,248,72,-8.781720969760086],[114,248,73,-8.75550078781158],[114,248,74,-8.728069299345071],[114,248,75,-8.723273501801293],[114,248,76,-8.737650897371001],[114,248,77,-8.755222174797568],[114,248,78,-8.743270728109177],[114,248,79,-8.746164591475718],[114,249,64,-9.000016283487172],[114,249,65,-8.980540675684717],[114,249,66,-8.956773826009206],[114,249,67,-8.930334097638777],[114,249,68,-8.908527506776336],[114,249,69,-8.88696143749713],[114,249,70,-8.868479185859586],[114,249,71,-8.847539583551406],[114,249,72,-8.81944281680894],[114,249,73,-8.79201110860658],[114,249,74,-8.763022295842168],[114,249,75,-8.760386773795354],[114,249,76,-8.777869999797124],[114,249,77,-8.797809668191622],[114,249,78,-8.794223901373417],[114,249,79,-8.828556292976744],[114,250,64,-9.047084994050449],[114,250,65,-9.026442786278965],[114,250,66,-9.004165351868384],[114,250,67,-8.980832815468945],[114,250,68,-8.959719704604794],[114,250,69,-8.936109216936629],[114,250,70,-8.917261216599611],[114,250,71,-8.893925782167704],[114,250,72,-8.868081754199043],[114,250,73,-8.841499746282754],[114,250,74,-8.81333471328804],[114,250,75,-8.811256571390244],[114,250,76,-8.829130639402553],[114,250,77,-8.847414584040944],[114,250,78,-8.87484667262705],[114,250,79,-8.884262353889945],[114,251,64,-9.09261011304173],[114,251,65,-9.072096479201969],[114,251,66,-9.051949955931182],[114,251,67,-9.028042716690878],[114,251,68,-9.007292056205824],[114,251,69,-8.98366119164277],[114,251,70,-8.963746119615063],[114,251,71,-8.940868618676092],[114,251,72,-8.916544930203994],[114,251,73,-8.890401003354],[114,251,74,-8.861065794140194],[114,251,75,-8.858318582769911],[114,251,76,-8.87508427255688],[114,251,77,-8.897390385644277],[114,251,78,-8.922495989312985],[114,251,79,-8.936216266295753],[114,252,64,-9.13656379032084],[114,252,65,-9.111282520861776],[114,252,66,-9.089013599762923],[114,252,67,-9.064337111610559],[114,252,68,-9.043662231042003],[114,252,69,-9.017207039678272],[114,252,70,-8.992671340495994],[114,252,71,-8.970934273056093],[114,252,72,-8.946455214518977],[114,252,73,-8.92163627821393],[114,252,74,-8.893510257110515],[114,252,75,-8.889972402673074],[114,252,76,-8.905442231566777],[114,252,77,-8.929032902211418],[114,252,78,-8.964681080780165],[114,252,79,-8.991312868347839],[114,253,64,-9.195290593877132],[114,253,65,-9.170959160514192],[114,253,66,-9.145106666512367],[114,253,67,-9.120541545745473],[114,253,68,-9.099214963215255],[114,253,69,-9.074961761187872],[114,253,70,-9.04795502059394],[114,253,71,-9.0282874780898],[114,253,72,-9.002280103845509],[114,253,73,-8.978481450423189],[114,253,74,-8.951941327300798],[114,253,75,-8.947677877851941],[114,253,76,-8.963324027203042],[114,253,77,-8.97998263783056],[114,253,78,-8.989515607642101],[114,253,79,-9.01714115735085],[114,254,64,-9.162152771719725],[114,254,65,-9.143596646326268],[114,254,66,-9.123774471506064],[114,254,67,-9.10549840149996],[114,254,68,-9.091700710903234],[114,254,69,-9.075005606838918],[114,254,70,-9.058070146431687],[114,254,71,-9.044602685599255],[114,254,72,-9.029565187321488],[114,254,73,-9.014009382424453],[114,254,74,-8.997706382576878],[114,254,75,-9.004371351013152],[114,254,76,-9.027786719927262],[114,254,77,-9.053755925875288],[114,254,78,-9.067418322739274],[114,254,79,-9.085557060454803],[114,255,64,-9.204651587658864],[114,255,65,-9.190062976996524],[114,255,66,-9.170126223273913],[114,255,67,-9.153094658954092],[114,255,68,-9.138417076171569],[114,255,69,-9.121440295225728],[114,255,70,-9.104408058167147],[114,255,71,-9.090285882692099],[114,255,72,-9.076786751855591],[114,255,73,-9.061604438281831],[114,255,74,-9.043612491004902],[114,255,75,-9.050756401103422],[114,255,76,-9.075737692746008],[114,255,77,-9.101180790373082],[114,255,78,-9.105440985610551],[114,255,79,-9.127048690085577],[114,256,64,-9.24827784468086],[114,256,65,-9.23355647325712],[114,256,66,-9.21513956853904],[114,256,67,-9.198976322451633],[114,256,68,-9.184751799364928],[114,256,69,-9.16554693940418],[114,256,70,-9.149898027201148],[114,256,71,-9.1368403624952],[114,256,72,-9.123315276950153],[114,256,73,-9.106764524007774],[114,256,74,-9.089601725510231],[114,256,75,-9.095383219813185],[114,256,76,-9.122689204481015],[114,256,77,-9.147934305442762],[114,256,78,-9.156975415121925],[114,256,79,-9.180080013353408],[114,257,64,-9.294205992972518],[114,257,65,-9.278767627597878],[114,257,66,-9.260511246858673],[114,257,67,-9.243240464422987],[114,257,68,-9.230001728617756],[114,257,69,-9.211923057711898],[114,257,70,-9.196669004727044],[114,257,71,-9.182376523392387],[114,257,72,-9.16806716096325],[114,257,73,-9.152757708855814],[114,257,74,-9.135152458002091],[114,257,75,-9.140289294723154],[114,257,76,-9.16800238646164],[114,257,77,-9.193881262771614],[114,257,78,-9.236017704407441],[114,257,79,-9.267667035243159],[114,258,64,-9.340320345626985],[114,258,65,-9.32588210711221],[114,258,66,-9.309582071552365],[114,258,67,-9.292607754942098],[114,258,68,-9.279096673359664],[114,258,69,-9.259701094589609],[114,258,70,-9.244536345199924],[114,258,71,-9.232088457780462],[114,258,72,-9.216885765263129],[114,258,73,-9.201482583758274],[114,258,74,-9.184824785276021],[114,258,75,-9.187538768390626],[114,258,76,-9.212928734438057],[114,258,77,-9.24122702231857],[114,258,78,-9.287645105732775],[114,258,79,-9.323119039873117],[114,259,64,-9.383066671495609],[114,259,65,-9.36952934663928],[114,259,66,-9.35566748333273],[114,259,67,-9.341054016203202],[114,259,68,-9.327889223906467],[114,259,69,-9.30819472700855],[114,259,70,-9.291369337137333],[114,259,71,-9.275545762554076],[114,259,72,-9.262289591983683],[114,259,73,-9.247594944006705],[114,259,74,-9.232758042561251],[114,259,75,-9.2357087404145],[114,259,76,-9.259627009872178],[114,259,77,-9.287241864183649],[114,259,78,-9.320862814643004],[114,259,79,-9.377248332711808],[114,260,64,-9.478885846067872],[114,260,65,-9.46460775100175],[114,260,66,-9.456201859480851],[114,260,67,-9.444739910263117],[114,260,68,-9.434640316612873],[114,260,69,-9.41814598024349],[114,260,70,-9.404467980572656],[114,260,71,-9.389146454859992],[114,260,72,-9.375875733188332],[114,260,73,-9.363058571571655],[114,260,74,-9.346497979378427],[114,260,75,-9.349172518959858],[114,260,76,-9.372173230897804],[114,260,77,-9.39941683406863],[114,260,78,-9.416584115473706],[114,260,79,-9.446285606094493],[114,261,64,-9.5142463647801],[114,261,65,-9.506677381151516],[114,261,66,-9.502175437099968],[114,261,67,-9.49509166974284],[114,261,68,-9.484347400199713],[114,261,69,-9.471671702953627],[114,261,70,-9.455285765688103],[114,261,71,-9.436047153971348],[114,261,72,-9.417961078041818],[114,261,73,-9.401094538570268],[114,261,74,-9.383104258511993],[114,261,75,-9.385790268667577],[114,261,76,-9.410648401319444],[114,261,77,-9.443081601126986],[114,261,78,-9.484458160873963],[114,261,79,-9.509167588422047],[114,262,64,-9.567666988980845],[114,262,65,-9.559482385018486],[114,262,66,-9.553206260149182],[114,262,67,-9.543496019450352],[114,262,68,-9.531965502849143],[114,262,69,-9.519093515670875],[114,262,70,-9.502273490181759],[114,262,71,-9.48302274607002],[114,262,72,-9.467109013552747],[114,262,73,-9.449491611923337],[114,262,74,-9.430077863653034],[114,262,75,-9.432644815641614],[114,262,76,-9.456176296669978],[114,262,77,-9.487885350829199],[114,262,78,-9.54835194060625],[114,262,79,-9.5799626420195],[114,263,64,-9.611084871177635],[114,263,65,-9.604897783949198],[114,263,66,-9.594786136463451],[114,263,67,-9.583423682222088],[114,263,68,-9.5762510220675],[114,263,69,-9.561972022739509],[114,263,70,-9.545053375000647],[114,263,71,-9.527021765139098],[114,263,72,-9.510468991199891],[114,263,73,-9.495166631400927],[114,263,74,-9.47577274208636],[114,263,75,-9.478285451061964],[114,263,76,-9.502790449859777],[114,263,77,-9.533790836639204],[114,263,78,-9.597585393675935],[114,263,79,-9.623130181071906],[114,264,64,-9.654775535318812],[114,264,65,-9.649368486218389],[114,264,66,-9.639798422901723],[114,264,67,-9.626231169093044],[114,264,68,-9.618338826924575],[114,264,69,-9.604840971788452],[114,264,70,-9.589857593943815],[114,264,71,-9.572909282716871],[114,264,72,-9.555781804886525],[114,264,73,-9.539764933429744],[114,264,74,-9.522277642670492],[114,264,75,-9.524061333148003],[114,264,76,-9.548890897763993],[114,264,77,-9.579631873890447],[114,264,78,-9.645424049232231],[114,264,79,-9.668902379023617],[114,265,64,-9.706201515547844],[114,265,65,-9.695814767602915],[114,265,66,-9.678309363159006],[114,265,67,-9.659542108616828],[114,265,68,-9.647857247265218],[114,265,69,-9.63681612914189],[114,265,70,-9.625772710949422],[114,265,71,-9.616228368980524],[114,265,72,-9.605276777473629],[114,265,73,-9.593787678013253],[114,265,74,-9.577038953620571],[114,265,75,-9.61945185525115],[114,265,76,-9.692018802692902],[114,265,77,-9.73448475899659],[114,265,78,-9.759546413234585],[114,265,79,-9.72472014310586],[114,266,64,-9.756387908692325],[114,266,65,-9.742268313177057],[114,266,66,-9.725588775555844],[114,266,67,-9.706424799574084],[114,266,68,-9.693458127895768],[114,266,69,-9.681506070813404],[114,266,70,-9.67135445025335],[114,266,71,-9.663893772655157],[114,266,72,-9.65447790930221],[114,266,73,-9.640599684095227],[114,266,74,-9.625749162096424],[114,266,75,-9.656152816503676],[114,266,76,-9.73418070768613],[114,266,77,-9.78392045723292],[114,266,78,-9.806617451485566],[114,266,79,-9.77039994082169],[114,267,64,-9.798085882171206],[114,267,65,-9.786870459486394],[114,267,66,-9.768904825712935],[114,267,67,-9.75056982333476],[114,267,68,-9.737088367865173],[114,267,69,-9.72512025501091],[114,267,70,-9.71368437909397],[114,267,71,-9.707881387422418],[114,267,72,-9.70028580581694],[114,267,73,-9.686182368306689],[114,267,74,-9.67134648558391],[114,267,75,-9.704225934324267],[114,267,76,-9.783471924300395],[114,267,77,-9.843676789758137],[114,267,78,-9.857311206473431],[114,267,79,-9.82125038421311],[114,268,64,-9.837261582395609],[114,268,65,-9.822828404973736],[114,268,66,-9.804131337686659],[114,268,67,-9.783076565111013],[114,268,68,-9.769242538765852],[114,268,69,-9.754762250662516],[114,268,70,-9.740583000762827],[114,268,71,-9.73320472051139],[114,268,72,-9.727859400128297],[114,268,73,-9.71352322056871],[114,268,74,-9.701866410865335],[114,268,75,-9.738529211084767],[114,268,76,-9.81828884647929],[114,268,77,-9.87314953955336],[114,268,78,-9.885480562556694],[114,268,79,-9.847464376679058],[114,269,64,-9.880512575464412],[114,269,65,-9.863793218080923],[114,269,66,-9.844217049408492],[114,269,67,-9.826576937397432],[114,269,68,-9.813699337680164],[114,269,69,-9.796118503867257],[114,269,70,-9.781610260392105],[114,269,71,-9.775279080050929],[114,269,72,-9.772014095384728],[114,269,73,-9.75982842635518],[114,269,74,-9.750000099618914],[114,269,75,-9.781133410076116],[114,269,76,-9.866764599810043],[114,269,77,-9.926854217798539],[114,269,78,-9.933441557935314],[114,269,79,-9.89365232209914],[114,270,64,-9.927451071113678],[114,270,65,-9.91066421774545],[114,270,66,-9.890292402365475],[114,270,67,-9.87471045523108],[114,270,68,-9.86122277649956],[114,270,69,-9.84477418844977],[114,270,70,-9.825530877424832],[114,270,71,-9.817917608451086],[114,270,72,-9.814790589897957],[114,270,73,-9.803611490456644],[114,270,74,-9.795228859640817],[114,270,75,-9.827611498168256],[114,270,76,-9.911660812333011],[114,270,77,-9.970226359768875],[114,270,78,-9.96994464855859],[114,270,79,-9.930387329685967],[114,271,64,-9.968451155255755],[114,271,65,-9.953535134600164],[114,271,66,-9.933634543250918],[114,271,67,-9.918943943766475],[114,271,68,-9.904486591924371],[114,271,69,-9.889072316182077],[114,271,70,-9.870270831055805],[114,271,71,-9.862747024247515],[114,271,72,-9.858318699203455],[114,271,73,-9.84755919353356],[114,271,74,-9.8361382629614],[114,271,75,-9.874378263355407],[114,271,76,-9.950725659433726],[114,271,77,-10.016701454011162],[114,271,78,-10.010277222738958],[114,271,79,-9.973524382374139],[114,272,64,-10.009367680410586],[114,272,65,-9.996094733652052],[114,272,66,-9.977571535364179],[114,272,67,-9.960597878252656],[114,272,68,-9.947148967567522],[114,272,69,-9.933669880232731],[114,272,70,-9.91439978836099],[114,272,71,-9.90703122787106],[114,272,72,-9.901118372166206],[114,272,73,-9.890724074378232],[114,272,74,-9.878879791423087],[114,272,75,-9.924940743341425],[114,272,76,-9.999376935316974],[114,272,77,-10.059115747147736],[114,272,78,-10.054571804876515],[114,272,79,-10.018343187629702],[114,273,64,-10.05710440445717],[114,273,65,-10.04025239228753],[114,273,66,-10.016614108490343],[114,273,67,-9.997543146943457],[114,273,68,-9.98120561142532],[114,273,69,-9.966289397154593],[114,273,70,-9.951892554535164],[114,273,71,-9.944632189069267],[114,273,72,-9.940299969666123],[114,273,73,-9.929078397349885],[114,273,74,-9.918900215890591],[114,273,75,-9.942274922302056],[114,273,76,-9.97582907311355],[114,273,77,-9.999250256809884],[114,273,78,-9.997293542201906],[114,273,79,-9.963210416291474],[114,274,64,-10.102673444066147],[114,274,65,-10.085922528222865],[114,274,66,-10.06315141424048],[114,274,67,-10.043488891694475],[114,274,68,-10.02831317678174],[114,274,69,-10.010746849243365],[114,274,70,-9.998864438685828],[114,274,71,-9.991308223910025],[114,274,72,-9.984407480768196],[114,274,73,-9.972785339228693],[114,274,74,-9.965375544084784],[114,274,75,-9.986380333871157],[114,274,76,-10.019524468192362],[114,274,77,-10.042741536848949],[114,274,78,-10.04034404385069],[114,274,79,-10.00740898366746],[114,275,64,-10.144830941010985],[114,275,65,-10.128000964336872],[114,275,66,-10.108026955217582],[114,275,67,-10.087915864290947],[114,275,68,-10.074570684950897],[114,275,69,-10.05803733659747],[114,275,70,-10.045959150143027],[114,275,71,-10.036835171925166],[114,275,72,-10.029691841360924],[114,275,73,-10.01774651843836],[114,275,74,-10.010889894601476],[114,275,75,-10.035505172700342],[114,275,76,-10.069714178913797],[114,275,77,-10.092920291863848],[114,275,78,-10.089262419455533],[114,275,79,-10.055357433507465],[114,276,64,-10.178064833474249],[114,276,65,-10.164067543976499],[114,276,66,-10.146894922237855],[114,276,67,-10.122279174698225],[114,276,68,-10.107127595962483],[114,276,69,-10.090435705607385],[114,276,70,-10.078632144315332],[114,276,71,-10.069815917540433],[114,276,72,-10.058424272368843],[114,276,73,-10.04928226007883],[114,276,74,-10.040693159168491],[114,276,75,-10.079808493626336],[114,276,76,-10.12221321482204],[114,276,77,-10.145046933131573],[114,276,78,-10.139295175270636],[114,276,79,-10.105967437794673],[114,277,64,-10.213999819849935],[114,277,65,-10.207893770391621],[114,277,66,-10.197543016998232],[114,277,67,-10.176763712367753],[114,277,68,-10.162802848252884],[114,277,69,-10.145160092391086],[114,277,70,-10.132019139804877],[114,277,71,-10.118789614532387],[114,277,72,-10.10602473084554],[114,277,73,-10.09687262325552],[114,277,74,-10.085084366254014],[114,277,75,-10.125429168914215],[114,277,76,-10.165209129175926],[114,277,77,-10.188133968204813],[114,277,78,-10.182244097579463],[114,277,79,-10.148073359831123],[114,278,64,-10.263361960497864],[114,278,65,-10.256966338903773],[114,278,66,-10.245812153527151],[114,278,67,-10.226981538244354],[114,278,68,-10.211262866178107],[114,278,69,-10.193094165757854],[114,278,70,-10.17729727788524],[114,278,71,-10.160075985157325],[114,278,72,-10.150813799963686],[114,278,73,-10.141817031703193],[114,278,74,-10.131139752025982],[114,278,75,-10.167629047653488],[114,278,76,-10.204026862049059],[114,278,77,-10.228388144512799],[114,278,78,-10.222293209264501],[114,278,79,-10.18634340392222],[114,279,64,-10.305873192939334],[114,279,65,-10.298210834354437],[114,279,66,-10.288081747304743],[114,279,67,-10.272541654816862],[114,279,68,-10.25836614148489],[114,279,69,-10.23807469013275],[114,279,70,-10.22156835316066],[114,279,71,-10.203738857178596],[114,279,72,-10.19566995939527],[114,279,73,-10.18657307405726],[114,279,74,-10.178379619742675],[114,279,75,-10.212097416669511],[114,279,76,-10.247458666534335],[114,279,77,-10.271341575333196],[114,279,78,-10.265885379051932],[114,279,79,-10.228869491389284],[114,280,64,-10.347650104855456],[114,280,65,-10.340730531967296],[114,280,66,-10.33125155651714],[114,280,67,-10.318321450890455],[114,280,68,-10.302814062962744],[114,280,69,-10.279930742188714],[114,280,70,-10.266254901684222],[114,280,71,-10.250987127206267],[114,280,72,-10.240200659610574],[114,280,73,-10.230698358561671],[114,280,74,-10.220943404753521],[114,280,75,-10.257786544840084],[114,280,76,-10.291508193785603],[114,280,77,-10.313047555886953],[114,280,78,-10.311258230820563],[114,280,79,-10.273490736157653],[114,281,64,-10.39182685229879],[114,281,65,-10.386455050680622],[114,281,66,-10.374101505822411],[114,281,67,-10.362796230779097],[114,281,68,-10.345493896696393],[114,281,69,-10.32563466684513],[114,281,70,-10.309695970855321],[114,281,71,-10.297358210054577],[114,281,72,-10.283554836594943],[114,281,73,-10.273806991295338],[114,281,74,-10.265182690974152],[114,281,75,-10.317335396390275],[114,281,76,-10.344656588398191],[114,281,77,-10.36635279364635],[114,281,78,-10.36144500936824],[114,281,79,-10.328648755442117],[114,282,64,-10.438353548429205],[114,282,65,-10.432402381301284],[114,282,66,-10.422186383800177],[114,282,67,-10.406697322793441],[114,282,68,-10.392957436648379],[114,282,69,-10.373326506863142],[114,282,70,-10.359279786012724],[114,282,71,-10.346055970663402],[114,282,72,-10.33292070407375],[114,282,73,-10.319563410429142],[114,282,74,-10.311779843049552],[114,282,75,-10.358334688217688],[114,282,76,-10.391156735361173],[114,282,77,-10.412394833533408],[114,282,78,-10.40623457479549],[114,282,79,-10.375891980955284],[114,283,64,-10.482369525247076],[114,283,65,-10.475495625819876],[114,283,66,-10.465463973495151],[114,283,67,-10.450398296000508],[114,283,68,-10.437797409891756],[114,283,69,-10.419023939864529],[114,283,70,-10.405038242957067],[114,283,71,-10.393122757165967],[114,283,72,-10.379979053855445],[114,283,73,-10.367801927221397],[114,283,74,-10.36265613894289],[114,283,75,-10.408536832589714],[114,283,76,-10.440937970996153],[114,283,77,-10.462847709075993],[114,283,78,-10.456016758729737],[114,283,79,-10.427338710934986],[114,284,64,-10.544036735204989],[114,284,65,-10.533796378062664],[114,284,66,-10.522958783683878],[114,284,67,-10.503497043688348],[114,284,68,-10.489543870933876],[114,284,69,-10.471503244394704],[114,284,70,-10.457290220401044],[114,284,71,-10.442340941411425],[114,284,72,-10.431420028438705],[114,284,73,-10.421085820326493],[114,284,74,-10.416007495958482],[114,284,75,-10.455968160256338],[114,284,76,-10.487167900861905],[114,284,77,-10.50793932158314],[114,284,78,-10.506713711756715],[114,284,79,-10.473180980798402],[114,285,64,-10.59899909081197],[114,285,65,-10.587802178750033],[114,285,66,-10.574492582661962],[114,285,67,-10.556160873035427],[114,285,68,-10.542351908263262],[114,285,69,-10.523251423141785],[114,285,70,-10.51096016612979],[114,285,71,-10.496891576002879],[114,285,72,-10.485659256668574],[114,285,73,-10.475507838906521],[114,285,74,-10.471648915366647],[114,285,75,-10.502306328049734],[114,285,76,-10.531359811879557],[114,285,77,-10.553896245713391],[114,285,78,-10.55249723032056],[114,285,79,-10.517968479887962],[114,286,64,-10.647454507355288],[114,286,65,-10.635383943582235],[114,286,66,-10.620448919736187],[114,286,67,-10.602368729302526],[114,286,68,-10.587592317772012],[114,286,69,-10.569017881692947],[114,286,70,-10.557647023056221],[114,286,71,-10.542304042464803],[114,286,72,-10.528849369057136],[114,286,73,-10.517110490975995],[114,286,74,-10.510307903033084],[114,286,75,-10.548539073866044],[114,286,76,-10.578905976713312],[114,286,77,-10.600371748292021],[114,286,78,-10.599913236175917],[114,286,79,-10.566714881772445],[114,287,64,-10.69184785423482],[114,287,65,-10.68014341704712],[114,287,66,-10.662514259367036],[114,287,67,-10.64186145691491],[114,287,68,-10.628999819636654],[114,287,69,-10.613489687781538],[114,287,70,-10.601504300423898],[114,287,71,-10.589202822888392],[114,287,72,-10.574088345750525],[114,287,73,-10.562152483844546],[114,287,74,-10.551048382767789],[114,287,75,-10.592801481791696],[114,287,76,-10.622221225221761],[114,287,77,-10.641981404523289],[114,287,78,-10.642448260591397],[114,287,79,-10.61069571714094],[114,288,64,-10.736389332915008],[114,288,65,-10.720455519339398],[114,288,66,-10.704395075085912],[114,288,67,-10.685243847917484],[114,288,68,-10.669526599060756],[114,288,69,-10.656585305623404],[114,288,70,-10.645729606550736],[114,288,71,-10.63310157016494],[114,288,72,-10.617642894323687],[114,288,73,-10.605649939733809],[114,288,74,-10.592842035557979],[114,288,75,-10.635011717364241],[114,288,76,-10.667772700150735],[114,288,77,-10.68680564922366],[114,288,78,-10.687545406865308],[114,288,79,-10.654383030048946],[114,289,64,-10.76773770776908],[114,289,65,-10.755235052502],[114,289,66,-10.738616804232262],[114,289,67,-10.721352164325483],[114,289,68,-10.703862853743626],[114,289,69,-10.68991205164824],[114,289,70,-10.676949922644553],[114,289,71,-10.663169769148581],[114,289,72,-10.648905910954634],[114,289,73,-10.638568806759357],[114,289,74,-10.652681838463812],[114,289,75,-10.701911602956583],[114,289,76,-10.721101551456362],[114,289,77,-10.740526123801429],[114,289,78,-10.737247861022484],[114,289,79,-10.70361702338885],[114,290,64,-10.816600871354298],[114,290,65,-10.802386815852136],[114,290,66,-10.787733962806382],[114,290,67,-10.767735388022164],[114,290,68,-10.750515294789375],[114,290,69,-10.73327087723752],[114,290,70,-10.719394032301139],[114,290,71,-10.706314776484533],[114,290,72,-10.692453753065429],[114,290,73,-10.682679790782615],[114,290,74,-10.687131975434873],[114,290,75,-10.734993290199023],[114,290,76,-10.763290384435715],[114,290,77,-10.781857381376863],[114,290,78,-10.777595785485234],[114,290,79,-10.74272800260269],[114,291,64,-10.860768178478942],[114,291,65,-10.847662372885495],[114,291,66,-10.833631430255549],[114,291,67,-10.812728085645134],[114,291,68,-10.794843177212107],[114,291,69,-10.778478645336435],[114,291,70,-10.76233775641785],[114,291,71,-10.748148207850127],[114,291,72,-10.737749474098004],[114,291,73,-10.72630237320916],[114,291,74,-10.73147517451762],[114,291,75,-10.793325884508073],[114,291,76,-10.811947426702318],[114,291,77,-10.830237778459097],[114,291,78,-10.826305130283068],[114,291,79,-10.790292468708264],[114,292,64,-10.895540028039738],[114,292,65,-10.888644626693937],[114,292,66,-10.878798549701889],[114,292,67,-10.861997848524794],[114,292,68,-10.85071146747939],[114,292,69,-10.837823101234324],[114,292,70,-10.822828971730356],[114,292,71,-10.809361434597891],[114,292,72,-10.799642103922205],[114,292,73,-10.78646776187428],[114,292,74,-10.791083526018001],[114,292,75,-10.83656645628112],[114,292,76,-10.853247617806765],[114,292,77,-10.871828375652473],[114,292,78,-10.869824274805612],[114,292,79,-10.833341524325792],[114,293,64,-10.940590978850855],[114,293,65,-10.935867643589],[114,293,66,-10.92380686754256],[114,293,67,-10.909385236370504],[114,293,68,-10.899099305890546],[114,293,69,-10.883044660744863],[114,293,70,-10.867859452494658],[114,293,71,-10.854625183906183],[114,293,72,-10.843387193591747],[114,293,73,-10.831141225296799],[114,293,74,-10.833389211847487],[114,293,75,-10.881702296868028],[114,293,76,-10.898820451092135],[114,293,77,-10.91795942426847],[114,293,78,-10.914792833778835],[114,293,79,-10.8782364466588],[114,294,64,-10.990113651769205],[114,294,65,-10.982340796059914],[114,294,66,-10.974067020289391],[114,294,67,-10.95874013045061],[114,294,68,-10.946640557627573],[114,294,69,-10.927530389181186],[114,294,70,-10.912099673720627],[114,294,71,-10.897323991841297],[114,294,72,-10.885121648523619],[114,294,73,-10.872441886135862],[114,294,74,-10.878250710603954],[114,294,75,-10.934924872428123],[114,294,76,-10.954677128842782],[114,294,77,-10.974293720053234],[114,294,78,-10.969472375882736],[114,294,79,-10.929906085979859],[114,295,64,-11.034696329494725],[114,295,65,-11.026514763619609],[114,295,66,-11.02046494984533],[114,295,67,-11.004872239554139],[114,295,68,-10.991876029975712],[114,295,69,-10.97388802157543],[114,295,70,-10.957937082324092],[114,295,71,-10.942828288341419],[114,295,72,-10.931234960245654],[114,295,73,-10.92012470403678],[114,295,74,-10.908010288687734],[114,295,75,-10.929731018914397],[114,295,76,-10.986397052710698],[114,295,77,-11.018586655615625],[114,295,78,-11.01184898032468],[114,295,79,-10.971249106449077],[114,296,64,-11.079165257697477],[114,296,65,-11.071229848442979],[114,296,66,-11.06480715022953],[114,296,67,-11.050660433497201],[114,296,68,-11.03664920920594],[114,296,69,-11.020201282168578],[114,296,70,-11.006323060087453],[114,296,71,-10.992191397758672],[114,296,72,-10.980488795592859],[114,296,73,-10.967826681466068],[114,296,74,-10.954664748054626],[114,296,75,-10.97068558790309],[114,296,76,-11.029000021551319],[114,296,77,-11.06550639133086],[114,296,78,-11.057927247646244],[114,296,79,-11.016992118607169],[114,297,64,-11.126158370460637],[114,297,65,-11.121787078633321],[114,297,66,-11.118213681539046],[114,297,67,-11.106564039683432],[114,297,68,-11.092006459932907],[114,297,69,-11.074493453719148],[114,297,70,-11.059157563219934],[114,297,71,-11.04131531435164],[114,297,72,-11.02486230314782],[114,297,73,-11.007192090526209],[114,297,74,-10.991467347749442],[114,297,75,-11.015371258733207],[114,297,76,-11.089445655513197],[114,297,77,-11.118241234809986],[114,297,78,-11.112222934048662],[114,297,79,-11.070318085199675],[114,298,64,-11.173649822287684],[114,298,65,-11.168507999586913],[114,298,66,-11.163018228074803],[114,298,67,-11.152307293862075],[114,298,68,-11.136977687726326],[114,298,69,-11.121144775839207],[114,298,70,-11.106130513891522],[114,298,71,-11.085614124852045],[114,298,72,-11.070420233178645],[114,298,73,-11.05155114036084],[114,298,74,-11.036347260237836],[114,298,75,-11.04259688487266],[114,298,76,-11.112068691140985],[114,298,77,-11.160629318346896],[114,298,78,-11.156466141139397],[114,298,79,-11.116891162959138],[114,299,64,-11.218703403840523],[114,299,65,-11.214038747720332],[114,299,66,-11.207489570555351],[114,299,67,-11.195253386242037],[114,299,68,-11.179085147534954],[114,299,69,-11.164935617417118],[114,299,70,-11.149853060767546],[114,299,71,-11.129518780136811],[114,299,72,-11.11271532243307],[114,299,73,-11.09464378255894],[114,299,74,-11.08198938061562],[114,299,75,-11.087591333613583],[114,299,76,-11.156383430962768],[114,299,77,-11.211575156666585],[114,299,78,-11.203295219635887],[114,299,79,-11.166267425924051],[114,300,64,-11.26526958820936],[114,300,65,-11.256980481197111],[114,300,66,-11.244383024081532],[114,300,67,-11.225330024289338],[114,300,68,-11.209011072969973],[114,300,69,-11.193218018501561],[114,300,70,-11.180337366884896],[114,300,71,-11.169618944615806],[114,300,72,-11.156066246339762],[114,300,73,-11.141037528848237],[114,300,74,-11.12997282287896],[114,300,75,-11.137798629902697],[114,300,76,-11.162326377084065],[114,300,77,-11.195276960609782],[114,300,78,-11.208309448594854],[114,300,79,-11.195730356703244],[114,301,64,-11.311713380440299],[114,301,65,-11.302459499454491],[114,301,66,-11.289505957064286],[114,301,67,-11.269016836984486],[114,301,68,-11.252488535124547],[114,301,69,-11.235969500929476],[114,301,70,-11.223277916240642],[114,301,71,-11.212753036063969],[114,301,72,-11.201311422002153],[114,301,73,-11.185216105019837],[114,301,74,-11.17403245776874],[114,301,75,-11.183016603334332],[114,301,76,-11.20981712307604],[114,301,77,-11.241772010497561],[114,301,78,-11.251889664695273],[114,301,79,-11.23729876801936],[114,302,64,-11.35748688745327],[114,302,65,-11.344605007289813],[114,302,66,-11.333128164615179],[114,302,67,-11.310023153286712],[114,302,68,-11.29173779866425],[114,302,69,-11.278036897612363],[114,302,70,-11.264109183134913],[114,302,71,-11.253166298513984],[114,302,72,-11.243354715130055],[114,302,73,-11.226800156284703],[114,302,74,-11.213923841037095],[114,302,75,-11.221687100500285],[114,302,76,-11.248324177385124],[114,302,77,-11.282076749302325],[114,302,78,-11.289132660838138],[114,302,79,-11.278243991016788],[114,303,64,-11.399852747476016],[114,303,65,-11.388729957231966],[114,303,66,-11.377717298034085],[114,303,67,-11.354795456094266],[114,303,68,-11.335658118407482],[114,303,69,-11.320694537084009],[114,303,70,-11.307691929454588],[114,303,71,-11.298056713219651],[114,303,72,-11.286956610834588],[114,303,73,-11.272015823583715],[114,303,74,-11.258635507585613],[114,303,75,-11.26540018454562],[114,303,76,-11.292711669550737],[114,303,77,-11.325655450885193],[114,303,78,-11.342485172373111],[114,303,79,-11.32253636091844],[114,304,64,-11.445866999157401],[114,304,65,-11.434434721235602],[114,304,66,-11.423323457194353],[114,304,67,-11.400206569342686],[114,304,68,-11.38298027626704],[114,304,69,-11.364927753959432],[114,304,70,-11.351692510571239],[114,304,71,-11.343291393678337],[114,304,72,-11.331551047622309],[114,304,73,-11.316019394678941],[114,304,74,-11.303175044589942],[114,304,75,-11.310979382293327],[114,304,76,-11.33783357808865],[114,304,77,-11.370173188060736],[114,304,78,-11.384594158254604],[114,304,79,-11.364432561482452],[114,305,64,-11.493177339823768],[114,305,65,-11.48112681079472],[114,305,66,-11.467712135918141],[114,305,67,-11.446986733766881],[114,305,68,-11.429353051849624],[114,305,69,-11.408394470540326],[114,305,70,-11.394154020210909],[114,305,71,-11.387403497664733],[114,305,72,-11.373931415919648],[114,305,73,-11.36151712494994],[114,305,74,-11.347673828447729],[114,305,75,-11.355509246610637],[114,305,76,-11.384819094553622],[114,305,77,-11.415170463873286],[114,305,78,-11.423754121401123],[114,305,79,-11.407810959704799],[114,306,64,-11.540953560129791],[114,306,65,-11.530797720959091],[114,306,66,-11.515948831227236],[114,306,67,-11.49444585372393],[114,306,68,-11.475720323525376],[114,306,69,-11.455470326431751],[114,306,70,-11.4399260087619],[114,306,71,-11.433401018839223],[114,306,72,-11.420522092851733],[114,306,73,-11.408372903059108],[114,306,74,-11.395401755829756],[114,306,75,-11.402601661373213],[114,306,76,-11.431744705565313],[114,306,77,-11.460906033574787],[114,306,78,-11.46240173223555],[114,306,79,-11.446586105492488],[114,307,64,-11.588316809353365],[114,307,65,-11.576492896878873],[114,307,66,-11.560608893476212],[114,307,67,-11.538680017714046],[114,307,68,-11.519818779012963],[114,307,69,-11.502092346789214],[114,307,70,-11.486158566106663],[114,307,71,-11.47734968512864],[114,307,72,-11.465599548695176],[114,307,73,-11.455810415426264],[114,307,74,-11.44218000033595],[114,307,75,-11.448416540856194],[114,307,76,-11.475528060765534],[114,307,77,-11.504157776391132],[114,307,78,-11.504208161594727],[114,307,79,-11.488720108643614],[114,308,64,-11.627097414060266],[114,308,65,-11.613816319811626],[114,308,66,-11.595773940225925],[114,308,67,-11.575590158852265],[114,308,68,-11.556545987700673],[114,308,69,-11.539996101648093],[114,308,70,-11.524482219575486],[114,308,71,-11.513067495762211],[114,308,72,-11.501546193157855],[114,308,73,-11.4894210467611],[114,308,74,-11.478450680958876],[114,308,75,-11.483157162542028],[114,308,76,-11.50998673241505],[114,308,77,-11.540925649961327],[114,308,78,-11.549112328448038],[114,308,79,-11.537106773995506],[114,309,64,-11.672819297566525],[114,309,65,-11.659150235729676],[114,309,66,-11.644204571024623],[114,309,67,-11.62163692386378],[114,309,68,-11.602667512122744],[114,309,69,-11.584072787195122],[114,309,70,-11.569276595934],[114,309,71,-11.555746461692623],[114,309,72,-11.547416125323359],[114,309,73,-11.536981134994788],[114,309,74,-11.523795309680821],[114,309,75,-11.528795922821484],[114,309,76,-11.55273566064638],[114,309,77,-11.585004814357017],[114,309,78,-11.588744088994646],[114,309,79,-11.566953698257233],[114,310,64,-11.712321864928018],[114,310,65,-11.70186355755243],[114,310,66,-11.685396923964785],[114,310,67,-11.6617014997861],[114,310,68,-11.641631265328767],[114,310,69,-11.622555698567407],[114,310,70,-11.608822812602934],[114,310,71,-11.59644994068251],[114,310,72,-11.587177627136878],[114,310,73,-11.575218932229223],[114,310,74,-11.56058877165003],[114,310,75,-11.567330663381904],[114,310,76,-11.590715383694944],[114,310,77,-11.621950515019428],[114,310,78,-11.628949169706244],[114,310,79,-11.606853369394507],[114,311,64,-11.759418832324739],[114,311,65,-11.749193131436469],[114,311,66,-11.731199360841876],[114,311,67,-11.707926942502688],[114,311,68,-11.686701896628179],[114,311,69,-11.667414393729672],[114,311,70,-11.654733833748692],[114,311,71,-11.641924199907121],[114,311,72,-11.632648871252165],[114,311,73,-11.61948557496352],[114,311,74,-11.602643123354289],[114,311,75,-11.612130156760136],[114,311,76,-11.637913628362645],[114,311,77,-11.672514315466593],[114,311,78,-11.682212486820502],[114,311,79,-11.655660730361468],[114,312,64,-11.79864636245741],[114,312,65,-11.79043830435375],[114,312,66,-11.774772193829895],[114,312,67,-11.752492014560005],[114,312,68,-11.73175405237837],[114,312,69,-11.711835397175916],[114,312,70,-11.697901548021369],[114,312,71,-11.685825056445895],[114,312,72,-11.678094029425937],[114,312,73,-11.663789656498949],[114,312,74,-11.647868310006395],[114,312,75,-11.653999375366622],[114,312,76,-11.68256795721835],[114,312,77,-11.721680746182711],[114,312,78,-11.732889557591555],[114,312,79,-11.705003930593401],[114,313,64,-11.847159667407313],[114,313,65,-11.837515741012844],[114,313,66,-11.822751025267848],[114,313,67,-11.799016609572098],[114,313,68,-11.778607799796347],[114,313,69,-11.758403340540045],[114,313,70,-11.744091099016906],[114,313,71,-11.731650747594456],[114,313,72,-11.721651740736748],[114,313,73,-11.707016938562113],[114,313,74,-11.69100147443258],[114,313,75,-11.696095976578768],[114,313,76,-11.727829041509915],[114,313,77,-11.764514077973864],[114,313,78,-11.77727342556545],[114,313,79,-11.750539553167386],[114,314,64,-11.8978043884894],[114,314,65,-11.888494873223793],[114,314,66,-11.873975788576798],[114,314,67,-11.849152081957081],[114,314,68,-11.826764951036397],[114,314,69,-11.807684285728651],[114,314,70,-11.791979476883462],[114,314,71,-11.779098331115119],[114,314,72,-11.768137824026638],[114,314,73,-11.75205183257451],[114,314,74,-11.73339708117457],[114,314,75,-11.740574533838974],[114,314,76,-11.773216834527508],[114,314,77,-11.810614923247616],[114,314,78,-11.81987611707858],[114,314,79,-11.794738281700443],[114,315,64,-11.942933552856234],[114,315,65,-11.93515039929423],[114,315,66,-11.921430306744561],[114,315,67,-11.897342152745876],[114,315,68,-11.874369315575436],[114,315,69,-11.854467596159237],[114,315,70,-11.838908293368533],[114,315,71,-11.823703665647576],[114,315,72,-11.812354166068335],[114,315,73,-11.794662749801493],[114,315,74,-11.777130398115991],[114,315,75,-11.787342417311319],[114,315,76,-11.819994205113948],[114,315,77,-11.857320953508394],[114,315,78,-11.866137436504697],[114,315,79,-11.840739572730511],[114,316,64,-11.999057214810668],[114,316,65,-11.988754777638926],[114,316,66,-11.970963834682983],[114,316,67,-11.946952161287058],[114,316,68,-11.921810341429437],[114,316,69,-11.898501785501546],[114,316,70,-11.881730545790289],[114,316,71,-11.868846408063028],[114,316,72,-11.854554773445827],[114,316,73,-11.836419803881224],[114,316,74,-11.819284080150767],[114,316,75,-11.828400989923558],[114,316,76,-11.860688571529069],[114,316,77,-11.89697048234726],[114,316,78,-11.90606481950622],[114,316,79,-11.874206257150696],[114,317,64,-12.048405568349237],[114,317,65,-12.035147836825605],[114,317,66,-12.01723996308173],[114,317,67,-11.990758763302535],[114,317,68,-11.969366838371116],[114,317,69,-11.94553504641589],[114,317,70,-11.925640228800397],[114,317,71,-11.913494601537119],[114,317,72,-11.900539018782164],[114,317,73,-11.881853417523699],[114,317,74,-11.863737422678657],[114,317,75,-11.871955655577281],[114,317,76,-11.905414978494141],[114,317,77,-11.942799100476135],[114,317,78,-11.953933190198136],[114,317,79,-11.923451795331964],[114,318,64,-12.089231255462142],[114,318,65,-12.074483180600172],[114,318,66,-12.055504728510844],[114,318,67,-12.030605956721327],[114,318,68,-12.008118396806676],[114,318,69,-11.983795511151373],[114,318,70,-11.965452600779786],[114,318,71,-11.949837176183916],[114,318,72,-11.935282902842072],[114,318,73,-11.91779402200875],[114,318,74,-11.898147091771973],[114,318,75,-11.90564215587582],[114,318,76,-11.94098892167446],[114,318,77,-11.979331320250077],[114,318,78,-11.99186304128405],[114,318,79,-11.961668156313332],[114,319,64,-12.136788889588585],[114,319,65,-12.11877020327915],[114,319,66,-12.10066064298624],[114,319,67,-12.076302636058838],[114,319,68,-12.054153665007336],[114,319,69,-12.030039191837622],[114,319,70,-12.01172169786723],[114,319,71,-11.995205734303985],[114,319,72,-11.97853775019821],[114,319,73,-11.96199590579228],[114,319,74,-11.94262301745082],[114,319,75,-11.951070539336207],[114,319,76,-11.98679609595288],[114,319,77,-12.023262672425494],[114,319,78,-12.037999698513582],[114,319,79,-12.002733763736863],[115,-64,64,22.85339773414857],[115,-64,65,22.915330658230097],[115,-64,66,22.95645063943213],[115,-64,67,22.981964147074976],[115,-64,68,22.998832642405983],[115,-64,69,23.017221517109014],[115,-64,70,23.03779041546053],[115,-64,71,23.062166226029856],[115,-64,72,23.104256715545127],[115,-64,73,23.163804097790237],[115,-64,74,23.214490814239994],[115,-64,75,23.26959315141083],[115,-64,76,23.356425962634663],[115,-64,77,23.468414702310938],[115,-64,78,23.561643342975202],[115,-64,79,23.61541692847115],[115,-63,64,22.66117504438169],[115,-63,65,22.72669926178076],[115,-63,66,22.7693277896536],[115,-63,67,22.792636174011086],[115,-63,68,22.809599880845116],[115,-63,69,22.827743445590276],[115,-63,70,22.84731717808132],[115,-63,71,22.873221003458564],[115,-63,72,22.918551961974753],[115,-63,73,22.975811072796017],[115,-63,74,23.024409220802454],[115,-63,75,23.081156350876633],[115,-63,76,23.16967075795413],[115,-63,77,23.284199612378508],[115,-63,78,23.3805855053166],[115,-63,79,23.43284330672191],[115,-62,64,22.47497639993487],[115,-62,65,22.53877978688499],[115,-62,66,22.58268751115123],[115,-62,67,22.60437943568554],[115,-62,68,22.621408025290833],[115,-62,69,22.64130099207103],[115,-62,70,22.6596715060161],[115,-62,71,22.687740738074694],[115,-62,72,22.733097617431888],[115,-62,73,22.79028845358972],[115,-62,74,22.83892154384401],[115,-62,75,22.892743499617083],[115,-62,76,22.984403593922664],[115,-62,77,23.09805641385172],[115,-62,78,23.193915627150577],[115,-62,79,23.244391883488554],[115,-61,64,22.283944405330224],[115,-61,65,22.346432484146483],[115,-61,66,22.38882140761654],[115,-61,67,22.411693831488577],[115,-61,68,22.428695090280574],[115,-61,69,22.449094525459575],[115,-61,70,22.470495771896015],[115,-61,71,22.49769118021019],[115,-61,72,22.542833007608436],[115,-61,73,22.599077393155305],[115,-61,74,22.650867096883385],[115,-61,75,22.703796481724318],[115,-61,76,22.795501732829763],[115,-61,77,22.908892275509697],[115,-61,78,23.003185759335388],[115,-61,79,23.05184642786023],[115,-60,64,22.092662977414726],[115,-60,65,22.154119060029554],[115,-60,66,22.19825252455979],[115,-60,67,22.22003150310893],[115,-60,68,22.238984776527605],[115,-60,69,22.258401630427844],[115,-60,70,22.280483252270553],[115,-60,71,22.308247360930153],[115,-60,72,22.352695055108487],[115,-60,73,22.411683318215097],[115,-60,74,22.463452663096827],[115,-60,75,22.51888661313957],[115,-60,76,22.606964757069584],[115,-60,77,22.716870229332514],[115,-60,78,22.810036507942204],[115,-60,79,22.859393123557886],[115,-59,64,21.914277481688988],[115,-59,65,21.975553258773918],[115,-59,66,22.018166069714173],[115,-59,67,22.041360290331028],[115,-59,68,22.060753933674587],[115,-59,69,22.07683155579773],[115,-59,70,22.099261494065175],[115,-59,71,22.126021882810484],[115,-59,72,22.1726922406927],[115,-59,73,22.231180718498802],[115,-59,74,22.283290553907225],[115,-59,75,22.33928071549524],[115,-59,76,22.421385055299297],[115,-59,77,22.526592192777674],[115,-59,78,22.613249806442823],[115,-59,79,22.660815108221083],[115,-58,64,21.727331725870446],[115,-58,65,21.787260483297924],[115,-58,66,21.831662408543227],[115,-58,67,21.85794703330017],[115,-58,68,21.87556052345034],[115,-58,69,21.89055216030518],[115,-58,70,21.914363071624745],[115,-58,71,21.940681993112346],[115,-58,72,21.987289250961442],[115,-58,73,22.045812201504557],[115,-58,74,22.099839188935718],[115,-58,75,22.15493546697372],[115,-58,76,22.232820086705782],[115,-58,77,22.339092979354888],[115,-58,78,22.425139118456425],[115,-58,79,22.470980765662215],[115,-57,64,21.531873099598332],[115,-57,65,21.590952420175665],[115,-57,66,21.636067533872463],[115,-57,67,21.663374831060203],[115,-57,68,21.68085976881741],[115,-57,69,21.697990764736858],[115,-57,70,21.722707397164786],[115,-57,71,21.750444579470596],[115,-57,72,21.797443335751463],[115,-57,73,21.855881190978845],[115,-57,74,21.911534246404067],[115,-57,75,21.96379480695664],[115,-57,76,22.041093645129283],[115,-57,77,22.148879179755905],[115,-57,78,22.233582853641558],[115,-57,79,22.27835472170362],[115,-56,64,21.34730475976962],[115,-56,65,21.402889431245473],[115,-56,66,21.447837136911755],[115,-56,67,21.475992579926896],[115,-56,68,21.494204160236947],[115,-56,69,21.512810822753064],[115,-56,70,21.534343324719536],[115,-56,71,21.561904866205094],[115,-56,72,21.609699064344923],[115,-56,73,21.669564154367063],[115,-56,74,21.722808841533134],[115,-56,75,21.777740505777512],[115,-56,76,21.856540854324138],[115,-56,77,21.962843101509797],[115,-56,78,22.04582662199726],[115,-56,79,22.09198649966948],[115,-55,64,21.15836045209416],[115,-55,65,21.215800046162983],[115,-55,66,21.26026028475145],[115,-55,67,21.288881402068924],[115,-55,68,21.307031756133515],[115,-55,69,21.325237736160762],[115,-55,70,21.346256201183664],[115,-55,71,21.37466299376424],[115,-55,72,21.422591014350054],[115,-55,73,21.48193699641357],[115,-55,74,21.53527304883034],[115,-55,75,21.593449559704958],[115,-55,76,21.672515846612562],[115,-55,77,21.777548051228347],[115,-55,78,21.860596056749287],[115,-55,79,21.90608881455579],[115,-54,64,20.96771255919513],[115,-54,65,21.02611234499783],[115,-54,66,21.06950904818054],[115,-54,67,21.097955176730327],[115,-54,68,21.11770438603516],[115,-54,69,21.13681487587784],[115,-54,70,21.159777726928375],[115,-54,71,21.188559410408132],[115,-54,72,21.234337420425835],[115,-54,73,21.292022750230622],[115,-54,74,21.348347962242574],[115,-54,75,21.40608092377744],[115,-54,76,21.48894514635598],[115,-54,77,21.593371331344407],[115,-54,78,21.677177695292155],[115,-54,79,21.721326307868893],[115,-53,64,20.83203154680988],[115,-53,65,20.830868033009548],[115,-53,66,20.876163819809346],[115,-53,67,20.902321400356897],[115,-53,68,20.924178425234246],[115,-53,69,20.94381464712887],[115,-53,70,20.968189815752613],[115,-53,71,20.997740733663804],[115,-53,72,21.044056041354008],[115,-53,73,21.098854969143826],[115,-53,74,21.156988703592866],[115,-53,75,21.213993852388636],[115,-53,76,21.299468134328606],[115,-53,77,21.403723237000936],[115,-53,78,21.48734997234989],[115,-53,79,21.532252280461396],[115,-52,64,20.677142337411606],[115,-52,65,20.63864363308902],[115,-52,66,20.681573002902027],[115,-52,67,20.7066893933982],[115,-52,68,20.73159446740387],[115,-52,69,20.751824916868166],[115,-52,70,20.775541954237735],[115,-52,71,20.808594766654053],[115,-52,72,20.8547357380359],[115,-52,73,20.90891985150218],[115,-52,74,20.965908232693558],[115,-52,75,21.024162978983224],[115,-52,76,21.10930971568079],[115,-52,77,21.213336705745768],[115,-52,78,21.296479348251264],[115,-52,79,21.342200951085495],[115,-51,64,20.458909106263903],[115,-51,65,20.43483993107394],[115,-51,66,20.472424840090305],[115,-51,67,20.496938667575993],[115,-51,68,20.521860754976252],[115,-51,69,20.540000137574086],[115,-51,70,20.56454378072192],[115,-51,71,20.60144195516727],[115,-51,72,20.64690291098286],[115,-51,73,20.700969432186884],[115,-51,74,20.757881231179496],[115,-51,75,20.81880146704723],[115,-51,76,20.906749263150108],[115,-51,77,21.01458336568374],[115,-51,78,21.105012808090247],[115,-51,79,21.160485965276116],[115,-50,64,20.323133098530448],[115,-50,65,20.25128170300688],[115,-50,66,20.282837707853464],[115,-50,67,20.31034039751312],[115,-50,68,20.334638688884276],[115,-50,69,20.351816971377396],[115,-50,70,20.37588665614525],[115,-50,71,20.411211116070724],[115,-50,72,20.459284408881718],[115,-50,73,20.515727522587056],[115,-50,74,20.571047055746497],[115,-50,75,20.63414979792362],[115,-50,76,20.72086151155591],[115,-50,77,20.828517322439243],[115,-50,78,20.91697195535044],[115,-50,79,20.97334937011712],[115,-49,64,20.131115678161404],[115,-49,65,20.059842077143763],[115,-49,66,20.09003599144702],[115,-49,67,20.119737564441852],[115,-49,68,20.14142872542125],[115,-49,69,20.161683660856646],[115,-49,70,20.18316113905345],[115,-49,71,20.21984620360093],[115,-49,72,20.268750212151527],[115,-49,73,20.32711208328169],[115,-49,74,20.382777100068704],[115,-49,75,20.44261776100399],[115,-49,76,20.528257371337723],[115,-49,77,20.637170828854003],[115,-49,78,20.728594317944417],[115,-49,79,20.78641293391321],[115,-48,64,19.95715173201434],[115,-48,65,19.908273778119867],[115,-48,66,19.905037142755255],[115,-48,67,19.934796858498757],[115,-48,68,19.95640003981578],[115,-48,69,19.977337277412023],[115,-48,70,20.000945404550247],[115,-48,71,20.035495507776833],[115,-48,72,20.083558925737783],[115,-48,73,20.141258905336464],[115,-48,74,20.19949293409939],[115,-48,75,20.258024756209554],[115,-48,76,20.341165557110344],[115,-48,77,20.45085000823407],[115,-48,78,20.542677085449046],[115,-48,79,20.60231100425801],[115,-47,64,19.778182430920126],[115,-47,65,19.736968037223114],[115,-47,66,19.72361222802636],[115,-47,67,19.7595273799207],[115,-47,68,19.784137417075364],[115,-47,69,19.80535509889632],[115,-47,70,19.82837140567007],[115,-47,71,19.863084151060455],[115,-47,72,19.90647950742932],[115,-47,73,19.967269371635574],[115,-47,74,20.025248051722826],[115,-47,75,20.08639744173658],[115,-47,76,20.166322781838534],[115,-47,77,20.272510514795812],[115,-47,78,20.35904135146838],[115,-47,79,20.415559984603853],[115,-46,64,19.546334371512252],[115,-46,65,19.493283483791632],[115,-46,66,19.540474469244586],[115,-46,67,19.573888416582815],[115,-46,68,19.599355010045002],[115,-46,69,19.622769221856267],[115,-46,70,19.646654088905514],[115,-46,71,19.677420891085298],[115,-46,72,19.722410628789355],[115,-46,73,19.784658873823098],[115,-46,74,19.842513389436853],[115,-46,75,19.904334515037636],[115,-46,76,19.982690393138903],[115,-46,77,20.087471852831023],[115,-46,78,20.17511389707834],[115,-46,79,20.229122107419407],[115,-45,64,19.377865593751025],[115,-45,65,19.305246650065786],[115,-45,66,19.350750218348164],[115,-45,67,19.3846732717004],[115,-45,68,19.410117028789504],[115,-45,69,19.434614748640488],[115,-45,70,19.45877974364428],[115,-45,71,19.486270255205564],[115,-45,72,19.532872326013905],[115,-45,73,19.5961922735342],[115,-45,74,19.655001342481285],[115,-45,75,19.71460563347278],[115,-45,76,19.795042342772255],[115,-45,77,19.897641122515058],[115,-45,78,19.984521506558206],[115,-45,79,20.038919211249087],[115,-44,64,19.332295853943023],[115,-44,65,19.16579730566577],[115,-44,66,19.193862831765337],[115,-44,67,19.224961312736582],[115,-44,68,19.249458080566725],[115,-44,69,19.270095279180197],[115,-44,70,19.29283795492372],[115,-44,71,19.318819107001172],[115,-44,72,19.3672848552569],[115,-44,73,19.42673267189976],[115,-44,74,19.486806185897727],[115,-44,75,19.545076431761814],[115,-44,76,19.628059356256788],[115,-44,77,19.729363906407855],[115,-44,78,19.81606154586775],[115,-44,79,19.868849687145243],[115,-43,64,19.064147327625463],[115,-43,65,18.9773782312102],[115,-43,66,19.01980741539839],[115,-43,67,19.05111950633499],[115,-43,68,19.074227882383543],[115,-43,69,19.09354196389921],[115,-43,70,19.11462035269611],[115,-43,71,19.141709048367463],[115,-43,72,19.18774911159692],[115,-43,73,19.24687705210362],[115,-43,74,19.30730919509078],[115,-43,75,19.365201650989544],[115,-43,76,19.447583421779136],[115,-43,77,19.547828343608927],[115,-43,78,19.633230301338966],[115,-43,79,19.683731866081306],[115,-42,64,18.900242319534364],[115,-42,65,18.795747882769117],[115,-42,66,18.837053318334313],[115,-42,67,18.868000351614008],[115,-42,68,18.88950874969187],[115,-42,69,18.908192992122558],[115,-42,70,18.92906005709231],[115,-42,71,18.954169269663623],[115,-42,72,18.999736566847005],[115,-42,73,19.0592615658128],[115,-42,74,19.119004745888496],[115,-42,75,19.178658528625785],[115,-42,76,19.26073988800679],[115,-42,77,19.360706755091655],[115,-42,78,19.444517800888367],[115,-42,79,19.496627126397517],[115,-41,64,18.766916754304052],[115,-41,65,18.60782874924393],[115,-41,66,18.650142417581822],[115,-41,67,18.674979673777425],[115,-41,68,18.69674477887825],[115,-41,69,18.71686782891259],[115,-41,70,18.73393053574401],[115,-41,71,18.760871040992274],[115,-41,72,18.808697390966294],[115,-41,73,18.86834236575386],[115,-41,74,18.928400363273155],[115,-41,75,18.98780374297445],[115,-41,76,19.069775669737414],[115,-41,77,19.17051533430339],[115,-41,78,19.25611290364104],[115,-41,79,19.306770910183285],[115,-40,64,18.63179582671058],[115,-40,65,18.44718712937619],[115,-40,66,18.46959695621527],[115,-40,67,18.494032405090145],[115,-40,68,18.51216346794788],[115,-40,69,18.53043226096219],[115,-40,70,18.545996924243465],[115,-40,71,18.575649524624428],[115,-40,72,18.62351960852161],[115,-40,73,18.682081550076948],[115,-40,74,18.740730838561625],[115,-40,75,18.801081418915697],[115,-40,76,18.882620768177933],[115,-40,77,18.98410701054434],[115,-40,78,19.06890603828159],[115,-40,79,19.120849377670645],[115,-39,64,18.495770508724164],[115,-39,65,18.326579175709334],[115,-39,66,18.290909028684645],[115,-39,67,18.311270826551336],[115,-39,68,18.32289025361044],[115,-39,69,18.341829329068116],[115,-39,70,18.35954437443183],[115,-39,71,18.39007737745921],[115,-39,72,18.439362249023578],[115,-39,73,18.501419554679185],[115,-39,74,18.561551915983344],[115,-39,75,18.622263572968777],[115,-39,76,18.702543700755793],[115,-39,77,18.8052802546515],[115,-39,78,18.889323456422364],[115,-39,79,18.945033300839977],[115,-38,64,18.38379999988781],[115,-38,65,18.24821548917634],[115,-38,66,18.110900746303333],[115,-38,67,18.127994695621886],[115,-38,68,18.14146850755685],[115,-38,69,18.15894546692665],[115,-38,70,18.175516146069924],[115,-38,71,18.20547612945954],[115,-38,72,18.252608920722217],[115,-38,73,18.317838541235236],[115,-38,74,18.37986201784537],[115,-38,75,18.436442911135945],[115,-38,76,18.513583153375134],[115,-38,77,18.61610214719676],[115,-38,78,18.70279712006005],[115,-38,79,18.759268274688072],[115,-37,64,18.24766234881336],[115,-37,65,18.126643143795157],[115,-37,66,17.94936112067526],[115,-37,67,17.941463642590644],[115,-37,68,17.9551136929476],[115,-37,69,17.971776169968276],[115,-37,70,17.989756851120646],[115,-37,71,18.017616858612165],[115,-37,72,18.064694625818657],[115,-37,73,18.131508360442563],[115,-37,74,18.189823334619074],[115,-37,75,18.24404961266319],[115,-37,76,18.32063400817996],[115,-37,77,18.42399603960874],[115,-37,78,18.511891907190478],[115,-37,79,18.57011373294053],[115,-36,64,18.062631305491042],[115,-36,65,17.969065877810156],[115,-36,66,17.791899159179458],[115,-36,67,17.755759270326877],[115,-36,68,17.76911630531444],[115,-36,69,17.786102951926903],[115,-36,70,17.803018526750147],[115,-36,71,17.830860998861706],[115,-36,72,17.88025862472123],[115,-36,73,17.943217520714786],[115,-36,74,18.00031814998554],[115,-36,75,18.05483837483637],[115,-36,76,18.13121436688699],[115,-36,77,18.231655366607168],[115,-36,78,18.32233048103043],[115,-36,79,18.381572700904684],[115,-35,64,17.7492871339084],[115,-35,65,17.843867203547322],[115,-35,66,17.812127047740574],[115,-35,67,17.76554083489761],[115,-35,68,17.63150756419441],[115,-35,69,17.606154572470206],[115,-35,70,17.621470082140984],[115,-35,71,17.647522278899764],[115,-35,72,17.692881232901776],[115,-35,73,17.750350716311935],[115,-35,74,17.808050391773474],[115,-35,75,17.861259246959005],[115,-35,76,17.938365740302466],[115,-35,77,18.03816230545192],[115,-35,78,18.12900747770153],[115,-35,79,18.189898168593864],[115,-34,64,17.56628811926712],[115,-34,65,17.6808719623229],[115,-34,66,17.65784854388161],[115,-34,67,17.576744229700182],[115,-34,68,17.496326769386886],[115,-34,69,17.420280272858953],[115,-34,70,17.435413840515523],[115,-34,71,17.464026589493404],[115,-34,72,17.509239201786286],[115,-34,73,17.564950439614933],[115,-34,74,17.622471930055173],[115,-34,75,17.67459046518308],[115,-34,76,17.75184228879458],[115,-34,77,17.849037292312417],[115,-34,78,17.93807749838619],[115,-34,79,17.998086418237964],[115,-33,64,17.4180499311473],[115,-33,65,17.523686117710444],[115,-33,66,17.535593548628864],[115,-33,67,17.457323916352397],[115,-33,68,17.40503166330587],[115,-33,69,17.303095283577335],[115,-33,70,17.31396353878503],[115,-33,71,17.341782650848007],[115,-33,72,17.3816726851242],[115,-33,73,17.43205531702347],[115,-33,74,17.48542178462583],[115,-33,75,17.53252620821238],[115,-33,76,17.602926379838642],[115,-33,77,17.69650851973781],[115,-33,78,17.779616319564116],[115,-33,79,17.83362185838366],[115,-32,64,17.257517367281288],[115,-32,65,17.353383825241565],[115,-32,66,17.363872543552244],[115,-32,67,17.278018643666574],[115,-32,68,17.23485641989108],[115,-32,69,17.116327681867276],[115,-32,70,17.129749288985504],[115,-32,71,17.15665742833255],[115,-32,72,17.19712941815416],[115,-32,73,17.246708281261782],[115,-32,74,17.298590005637244],[115,-32,75,17.34595468168077],[115,-32,76,17.415439777158202],[115,-32,77,17.50612264494683],[115,-32,78,17.59032182517666],[115,-32,79,17.645889624683555],[115,-31,64,17.10152208518543],[115,-31,65,17.20600726798837],[115,-31,66,17.134601427281233],[115,-31,67,17.042438890335347],[115,-31,68,16.97977825149874],[115,-31,69,16.931622349883593],[115,-31,70,16.943838565496524],[115,-31,71,16.969368285335925],[115,-31,72,17.01302847065461],[115,-31,73,17.06251977265664],[115,-31,74,17.11275709518795],[115,-31,75,17.161137749754257],[115,-31,76,17.228855139944553],[115,-31,77,17.3201151800691],[115,-31,78,17.40226079906001],[115,-31,79,17.459168264571687],[115,-30,64,16.91891092906606],[115,-30,65,17.050599620047837],[115,-30,66,16.974191373064645],[115,-30,67,16.865388737131074],[115,-30,68,16.797572120990996],[115,-30,69,16.746406891638717],[115,-30,70,16.759695641942706],[115,-30,71,16.78351046190865],[115,-30,72,16.827206322714844],[115,-30,73,16.877740645555548],[115,-30,74,16.928130943563357],[115,-30,75,16.9744777870563],[115,-30,76,17.039360120460362],[115,-30,77,17.13164654002448],[115,-30,78,17.214004012440267],[115,-30,79,17.273879308262543],[115,-29,64,16.77508259193384],[115,-29,65,16.906703211023352],[115,-29,66,16.849157347263723],[115,-29,67,16.71354786905298],[115,-29,68,16.643961673282107],[115,-29,69,16.556058457273863],[115,-29,70,16.568119941076485],[115,-29,71,16.59452732296713],[115,-29,72,16.634575589711673],[115,-29,73,16.690161768193835],[115,-29,74,16.74003215478996],[115,-29,75,16.786045083807252],[115,-29,76,16.850639368929752],[115,-29,77,16.940595987986622],[115,-29,78,17.0209077335127],[115,-29,79,17.08204751706333],[115,-28,64,16.596290706963924],[115,-28,65,16.703064802222922],[115,-28,66,16.664550754320743],[115,-28,67,16.53160695103332],[115,-28,68,16.459808865840678],[115,-28,69,16.369665306182657],[115,-28,70,16.382271273894204],[115,-28,71,16.408172629574175],[115,-28,72,16.448996792749604],[115,-28,73,16.503964111000002],[115,-28,74,16.55337702966556],[115,-28,75,16.601475290491678],[115,-28,76,16.66397644268533],[115,-28,77,16.748158217103587],[115,-28,78,16.828634980118483],[115,-28,79,16.887731270958355],[115,-27,64,16.45618880149234],[115,-27,65,16.48820856086849],[115,-27,66,16.441527615628157],[115,-27,67,16.284055525440817],[115,-27,68,16.172218208667026],[115,-27,69,16.183822467085584],[115,-27,70,16.199661052654413],[115,-27,71,16.233780632419812],[115,-27,72,16.279047938283114],[115,-27,73,16.339332774420427],[115,-27,74,16.38871273347812],[115,-27,75,16.435287489879755],[115,-27,76,16.49116835491895],[115,-27,77,16.568290070010793],[115,-27,78,16.638836946773438],[115,-27,79,16.686362815223532],[115,-26,64,16.30081230138945],[115,-26,65,16.33369935518325],[115,-26,66,16.279483414897246],[115,-26,67,16.13316025730059],[115,-26,68,15.989090613143183],[115,-26,69,16.00014566665204],[115,-26,70,16.017005862621083],[115,-26,71,16.051493605082626],[115,-26,72,16.10015049244852],[115,-26,73,16.155487081693614],[115,-26,74,16.206948607389872],[115,-26,75,16.250394887862385],[115,-26,76,16.305336036894694],[115,-26,77,16.380253545179333],[115,-26,78,16.45017162926657],[115,-26,79,16.497052044965614],[115,-25,64,16.084143219966872],[115,-25,65,16.136232247332757],[115,-25,66,16.087440158394937],[115,-25,67,15.97862310925489],[115,-25,68,15.79972943348255],[115,-25,69,15.812900866776047],[115,-25,70,15.830080502815667],[115,-25,71,15.862951091639871],[115,-25,72,15.911452952444336],[115,-25,73,15.965802655872341],[115,-25,74,16.017227166964236],[115,-25,75,16.06152381269582],[115,-25,76,16.118584262411726],[115,-25,77,16.188940415566115],[115,-25,78,16.25963288096691],[115,-25,79,16.30443034936945],[115,-24,64,15.86942583979706],[115,-24,65,15.913706776555548],[115,-24,66,15.868722286350684],[115,-24,67,15.778594624168209],[115,-24,68,15.616502586089322],[115,-24,69,15.629197465348932],[115,-24,70,15.648186422407672],[115,-24,71,15.679723074673145],[115,-24,72,15.728553287643841],[115,-24,73,15.78314970291154],[115,-24,74,15.83363385892234],[115,-24,75,15.878697247214903],[115,-24,76,15.933875800511377],[115,-24,77,16.002448932439336],[115,-24,78,16.070208945732805],[115,-24,79,16.11796084477662],[115,-23,64,15.61181390057998],[115,-23,65,15.647668811938736],[115,-23,66,15.605944133181158],[115,-23,67,15.537704737284386],[115,-23,68,15.443710567990163],[115,-23,69,15.456637975726016],[115,-23,70,15.472509354975085],[115,-23,71,15.500478177696783],[115,-23,72,15.54176787612352],[115,-23,73,15.593188914754586],[115,-23,74,15.639658645805705],[115,-23,75,15.709158596149653],[115,-23,76,15.739636650940415],[115,-23,77,15.814014898790033],[115,-23,78,15.886434432802762],[115,-23,79,15.941972119963253],[115,-22,64,15.441878088296223],[115,-22,65,15.426413224836114],[115,-22,66,15.412631943374489],[115,-22,67,15.307038318288448],[115,-22,68,15.261075278450193],[115,-22,69,15.274024114595887],[115,-22,70,15.290611598854827],[115,-22,71,15.317453028139205],[115,-22,72,15.358415443368772],[115,-22,73,15.40953710778896],[115,-22,74,15.453496021513438],[115,-22,75,15.52578323544741],[115,-22,76,15.55224542843877],[115,-22,77,15.62882311627118],[115,-22,78,15.698808623526746],[115,-22,79,15.756153042520433],[115,-21,64,15.314771341302734],[115,-21,65,15.297295226969956],[115,-21,66,15.290319150061633],[115,-21,67,15.155706796600407],[115,-21,68,15.075921418212802],[115,-21,69,15.088611724456971],[115,-21,70,15.103524014117879],[115,-21,71,15.129309906884771],[115,-21,72,15.168627823338612],[115,-21,73,15.219524818164714],[115,-21,74,15.292319819774566],[115,-21,75,15.39010573960871],[115,-21,76,15.381019710579702],[115,-21,77,15.43949943349058],[115,-21,78,15.507371905926622],[115,-21,79,15.56403051612316],[115,-20,64,15.109560178363283],[115,-20,65,15.10136930937237],[115,-20,66,15.047483173380703],[115,-20,67,14.949928483038903],[115,-20,68,14.892349840409775],[115,-20,69,14.903899285185373],[115,-20,70,14.916438238812228],[115,-20,71,14.942074548156592],[115,-20,72,14.980262960549792],[115,-20,73,15.02802389264912],[115,-20,74,15.092629530933383],[115,-20,75,15.203972380636475],[115,-20,76,15.212974055544999],[115,-20,77,15.24803286005202],[115,-20,78,15.317835715992159],[115,-20,79,15.37209940009662],[115,-19,64,14.998264801591457],[115,-19,65,14.928055287874072],[115,-19,66,14.818382025307097],[115,-19,67,14.7425902081091],[115,-19,68,14.722691920231657],[115,-19,69,14.733210179201969],[115,-19,70,14.743924734619767],[115,-19,71,14.767248669036029],[115,-19,72,14.80216261675802],[115,-19,73,14.865922062061099],[115,-19,74,14.971013829235277],[115,-19,75,15.092427876557116],[115,-19,76,15.130116312327607],[115,-19,77,15.122616967017713],[115,-19,78,15.142649262212311],[115,-19,79,15.197318874500727],[115,-18,64,14.79381548974789],[115,-18,65,14.729608227500126],[115,-18,66,14.62534864744914],[115,-18,67,14.578306882666446],[115,-18,68,14.544627565323513],[115,-18,69,14.553728429283296],[115,-18,70,14.56565987814006],[115,-18,71,14.58607098570369],[115,-18,72,14.619886613775126],[115,-18,73,14.692597860236237],[115,-18,74,14.792871807336294],[115,-18,75,14.93013060166701],[115,-18,76,14.961196523849013],[115,-18,77,14.965077558689886],[115,-18,78,14.957931831528388],[115,-18,79,15.012508912451462],[115,-17,64,14.572957509975147],[115,-17,65,14.505655755388208],[115,-17,66,14.442373572950338],[115,-17,67,14.396849510658782],[115,-17,68,14.35772069386849],[115,-17,69,14.366630994293276],[115,-17,70,14.378934882846913],[115,-17,71,14.39843891462354],[115,-17,72,14.43132914574523],[115,-17,73,14.517230200000794],[115,-17,74,14.629889452111872],[115,-17,75,14.778180898176345],[115,-17,76,14.791891433152857],[115,-17,77,14.8041650556354],[115,-17,78,14.771604896878811],[115,-17,79,14.821902708400698],[115,-16,64,14.433229511294456],[115,-16,65,14.354299425585765],[115,-16,66,14.327412776570618],[115,-16,67,14.285435077923745],[115,-16,68,14.222923076130504],[115,-16,69,14.18725075222731],[115,-16,70,14.197158188278033],[115,-16,71,14.215714515274088],[115,-16,72,14.315212232020485],[115,-16,73,14.377987555355709],[115,-16,74,14.466488846004014],[115,-16,75,14.577760779934337],[115,-16,76,14.597584912716776],[115,-16,77,14.636496885466956],[115,-16,78,14.62153564842634],[115,-16,79,14.638516585001737],[115,-15,64,14.243298534571364],[115,-15,65,14.162413043893837],[115,-15,66,14.12305158032332],[115,-15,67,14.104157171697677],[115,-15,68,14.030681687594425],[115,-15,69,14.01242431273821],[115,-15,70,14.019101082656134],[115,-15,71,14.047728104441264],[115,-15,72,14.156221990118741],[115,-15,73,14.202354132546784],[115,-15,74,14.280489686933626],[115,-15,75,14.406331336949583],[115,-15,76,14.437841039121528],[115,-15,77,14.445372671823723],[115,-15,78,14.437718012296632],[115,-15,79,14.460434223841155],[115,-14,64,13.929802800396883],[115,-14,65,13.891514861819521],[115,-14,66,13.882608321261806],[115,-14,67,13.871272673313168],[115,-14,68,13.82707171765958],[115,-14,69,13.831202614248578],[115,-14,70,13.83650863887797],[115,-14,71,13.876246467300026],[115,-14,72,13.956341911511883],[115,-14,73,13.998556153416782],[115,-14,74,14.076478916258127],[115,-14,75,14.163996371172965],[115,-14,76,14.210658315871992],[115,-14,77,14.244694660943551],[115,-14,78,14.234206922143997],[115,-14,79,14.274635332453924],[115,-13,64,13.753189722526887],[115,-13,65,13.735108400609437],[115,-13,66,13.715578473551782],[115,-13,67,13.701413034141279],[115,-13,68,13.667349327247974],[115,-13,69,13.644099927568508],[115,-13,70,13.648167840775962],[115,-13,71,13.727598017680547],[115,-13,72,13.823990695565671],[115,-13,73,13.849508439609549],[115,-13,74,13.934124569161423],[115,-13,75,14.025168834929362],[115,-13,76,14.033389068100375],[115,-13,77,14.10296509164142],[115,-13,78,14.04756330403091],[115,-13,79,14.084135974124013],[115,-12,64,13.555407613895714],[115,-12,65,13.540500006574664],[115,-12,66,13.511333388347383],[115,-12,67,13.496263640527705],[115,-12,68,13.479571844937581],[115,-12,69,13.457103670696684],[115,-12,70,13.457279821850552],[115,-12,71,13.533784575236469],[115,-12,72,13.623612359885021],[115,-12,73,13.662183499855711],[115,-12,74,13.745648631882625],[115,-12,75,13.828742579454891],[115,-12,76,13.83622582691328],[115,-12,77,13.897305551391314],[115,-12,78,13.85365563374818],[115,-12,79,13.893392755651233],[115,-11,64,13.378753403257264],[115,-11,65,13.394585869866287],[115,-11,66,13.3324145025001],[115,-11,67,13.30050282363404],[115,-11,68,13.275913524258613],[115,-11,69,13.276524712545985],[115,-11,70,13.279879677897036],[115,-11,71,13.384153284403212],[115,-11,72,13.49202097375691],[115,-11,73,13.577534574455669],[115,-11,74,13.680670327525338],[115,-11,75,13.762480427026798],[115,-11,76,13.78785443652282],[115,-11,77,13.820114691762873],[115,-11,78,13.793404182694928],[115,-11,79,13.78809570958887],[115,-10,64,13.183253595529173],[115,-10,65,13.176871945576222],[115,-10,66,13.14987505426611],[115,-10,67,13.098628370192468],[115,-10,68,13.088626296434652],[115,-10,69,13.093290883368079],[115,-10,70,13.09591003635962],[115,-10,71,13.181559055464916],[115,-10,72,13.291653418042522],[115,-10,73,13.382792980113953],[115,-10,74,13.493499708651761],[115,-10,75,13.569526776959531],[115,-10,76,13.605995029804866],[115,-10,77,13.604678035078],[115,-10,78,13.619417711604035],[115,-10,79,13.600432273005827],[115,-9,64,12.999414105943337],[115,-9,65,12.964465964318345],[115,-9,66,12.956263194161428],[115,-9,67,12.88770599813561],[115,-9,68,12.900074128198334],[115,-9,69,12.904016047852755],[115,-9,70,12.90962799112607],[115,-9,71,12.97079160380099],[115,-9,72,13.081317833509145],[115,-9,73,13.19266483379925],[115,-9,74,13.305917194894175],[115,-9,75,13.370826205248592],[115,-9,76,13.407406804008975],[115,-9,77,13.39915283943161],[115,-9,78,13.434179558355655],[115,-9,79,13.411494016613775],[115,-8,64,12.732359650058696],[115,-8,65,12.704409025984322],[115,-8,66,12.694701839688165],[115,-8,67,12.703124454103685],[115,-8,68,12.71750697209402],[115,-8,69,12.720110151609196],[115,-8,70,12.730119424201417],[115,-8,71,12.75329080142524],[115,-8,72,12.808341219421102],[115,-8,73,12.948522007649212],[115,-8,74,13.098462564408946],[115,-8,75,13.187223847510165],[115,-8,76,13.236128888147446],[115,-8,77,13.20581674021318],[115,-8,78,13.232008281237215],[115,-8,79,13.211549902277417],[115,-7,64,12.520365366464295],[115,-7,65,12.504710706018166],[115,-7,66,12.504235201108592],[115,-7,67,12.520062127301063],[115,-7,68,12.533084531016852],[115,-7,69,12.537200040732717],[115,-7,70,12.551323219658835],[115,-7,71,12.572100171168326],[115,-7,72,12.61323677227784],[115,-7,73,12.746049592593078],[115,-7,74,12.89726924029934],[115,-7,75,12.991253759520392],[115,-7,76,13.032595046982005],[115,-7,77,12.996663598019982],[115,-7,78,13.026869247712478],[115,-7,79,12.998742162896503],[115,-6,64,12.316331341758051],[115,-6,65,12.314596090122668],[115,-6,66,12.320578897339006],[115,-6,67,12.338851459114746],[115,-6,68,12.34911831460617],[115,-6,69,12.356937162021765],[115,-6,70,12.369710171165012],[115,-6,71,12.391413088467797],[115,-6,72,12.427820929274295],[115,-6,73,12.540958627092536],[115,-6,74,12.697025102380337],[115,-6,75,12.780909276172238],[115,-6,76,12.826150393816949],[115,-6,77,12.801772478968667],[115,-6,78,12.810543500515612],[115,-6,79,12.78407213601315],[115,-5,64,12.11232950575168],[115,-5,65,12.175674115923945],[115,-5,66,12.20999841130425],[115,-5,67,12.190650745989386],[115,-5,68,12.205316549784166],[115,-5,69,12.185782187155647],[115,-5,70,12.181436801031138],[115,-5,71,12.220519522717328],[115,-5,72,12.275619506067937],[115,-5,73,12.291300576916091],[115,-5,74,12.352451334613674],[115,-5,75,12.402362748194264],[115,-5,76,12.428920499921778],[115,-5,77,12.49155367112522],[115,-5,78,12.54499683506207],[115,-5,79,12.579750618284999],[115,-4,64,11.91998564078815],[115,-4,65,11.964822474687935],[115,-4,66,12.012431861233686],[115,-4,67,12.003752740467602],[115,-4,68,11.990530371325033],[115,-4,69,11.981161542679082],[115,-4,70,11.99103793333355],[115,-4,71,12.010797521083807],[115,-4,72,12.06444449296003],[115,-4,73,12.098192632058813],[115,-4,74,12.145662436624109],[115,-4,75,12.189198972994687],[115,-4,76,12.235040372901382],[115,-4,77,12.297740395445581],[115,-4,78,12.352221423397557],[115,-4,79,12.3890223151381],[115,-3,64,11.779194849683087],[115,-3,65,11.810012040389255],[115,-3,66,11.85918755455684],[115,-3,67,11.86145691311822],[115,-3,68,11.842989697858785],[115,-3,69,11.849691895378447],[115,-3,70,11.821096350909828],[115,-3,71,11.85696065400299],[115,-3,72,11.912403462701073],[115,-3,73,11.92707397007387],[115,-3,74,11.97846786067531],[115,-3,75,12.036513253505406],[115,-3,76,12.055311052584276],[115,-3,77,12.111873484851392],[115,-3,78,12.172159745173289],[115,-3,79,12.216312994491245],[115,-2,64,11.595470250292525],[115,-2,65,11.612977697419973],[115,-2,66,11.664180586550009],[115,-2,67,11.669956476522692],[115,-2,68,11.64336981408482],[115,-2,69,11.662762387846959],[115,-2,70,11.642750920745176],[115,-2,71,11.661169337657368],[115,-2,72,11.714258135345958],[115,-2,73,11.726081334110109],[115,-2,74,11.782497118870513],[115,-2,75,11.839539949531359],[115,-2,76,11.866381629757765],[115,-2,77,11.929426466811895],[115,-2,78,11.988101295019408],[115,-2,79,12.03387964213631],[115,-1,64,11.435995239199901],[115,-1,65,11.455710856755433],[115,-1,66,11.510385156010718],[115,-1,67,11.522454605898456],[115,-1,68,11.501537597488982],[115,-1,69,11.520115818751878],[115,-1,70,11.528580251202618],[115,-1,71,11.531831629781454],[115,-1,72,11.570786932561015],[115,-1,73,11.552259862528762],[115,-1,74,11.58821934741953],[115,-1,75,11.631817715638617],[115,-1,76,11.682718238599817],[115,-1,77,11.747165986515368],[115,-1,78,11.803474589750762],[115,-1,79,11.849346574134367],[115,0,64,11.245611904630751],[115,0,65,11.29124711442149],[115,0,66,11.328313304359453],[115,0,67,11.353606180580588],[115,0,68,11.367353802619347],[115,0,69,11.374998497393069],[115,0,70,11.389925440213492],[115,0,71,11.407423425102197],[115,0,72,11.43943439859744],[115,0,73,11.487778154380427],[115,0,74,11.534213349657662],[115,0,75,11.575934337336484],[115,0,76,11.62079159140372],[115,0,77,11.67901656976039],[115,0,78,11.726561706816447],[115,0,79,11.762910423741594],[115,1,64,11.055568678339455],[115,1,65,11.103809976890881],[115,1,66,11.141070226115865],[115,1,67,11.166795175872963],[115,1,68,11.179603977476809],[115,1,69,11.18991186698885],[115,1,70,11.201691393016615],[115,1,71,11.219592314958696],[115,1,72,11.254580711085259],[115,1,73,11.304676290446446],[115,1,74,11.35162775747118],[115,1,75,11.392169492332105],[115,1,76,11.434932223024937],[115,1,77,11.490415546221037],[115,1,78,11.54074395876217],[115,1,79,11.576095490593545],[115,2,64,10.866340650543032],[115,2,65,10.91607773801446],[115,2,66,10.951211368503992],[115,2,67,10.976638499479552],[115,2,68,10.991769528936558],[115,2,69,11.002488119508913],[115,2,70,11.011139158710943],[115,2,71,11.030017925384419],[115,2,72,11.0685726815619],[115,2,73,11.119326471431167],[115,2,74,11.165712644239392],[115,2,75,11.205797930412224],[115,2,76,11.247641681568568],[115,2,77,11.301664110300075],[115,2,78,11.353437517002385],[115,2,79,11.390205148842403],[115,3,64,10.6795256287901],[115,3,65,10.726589440076772],[115,3,66,10.759579024693956],[115,3,67,10.787159351389054],[115,3,68,10.80486367809864],[115,3,69,10.815698940323864],[115,3,70,10.823680756841645],[115,3,71,10.842331645172411],[115,3,72,10.88472914405317],[115,3,73,10.93589636052269],[115,3,74,10.978040033289277],[115,3,75,11.018181529353297],[115,3,76,11.063418760263806],[115,3,77,11.116621680066954],[115,3,78,11.166160558944155],[115,3,79,11.204338131829267],[115,4,64,10.489243787913557],[115,4,65,10.535422483941694],[115,4,66,10.571550470893046],[115,4,67,10.598360103593357],[115,4,68,10.618051529242438],[115,4,69,10.631276959677558],[115,4,70,10.641469466280734],[115,4,71,10.657372687897167],[115,4,72,10.702057797552849],[115,4,73,10.751983893006646],[115,4,74,10.795053174687007],[115,4,75,10.83401905120096],[115,4,76,10.880123428828904],[115,4,77,10.934247930672035],[115,4,78,10.981898437281988],[115,4,79,11.019445816436182],[115,5,64,10.298263571032596],[115,5,65,10.345138713596306],[115,5,66,10.383258004268544],[115,5,67,10.411486856703847],[115,5,68,10.430259672261506],[115,5,69,10.44410809346277],[115,5,70,10.456626975879631],[115,5,71,10.476896197709797],[115,5,72,10.518155861500704],[115,5,73,10.567809919437115],[115,5,74,10.613649745323954],[115,5,75,10.652766689596955],[115,5,76,10.699029746514428],[115,5,77,10.751069823440092],[115,5,78,10.796201290451405],[115,5,79,10.83340882521013],[115,6,64,10.107860260712767],[115,6,65,10.156056277685952],[115,6,66,10.19584241757966],[115,6,67,10.224993472239449],[115,6,68,10.244047395628447],[115,6,69,10.259740664405767],[115,6,70,10.274866731794932],[115,6,71,10.295734198360588],[115,6,72,10.335428972504733],[115,6,73,10.38336591177471],[115,6,74,10.429441967423704],[115,6,75,10.47173461755244],[115,6,76,10.516706246495495],[115,6,77,10.568510381346403],[115,6,78,10.613083197113022],[115,6,79,10.648062110331315],[115,7,64,9.92029779402443],[115,7,65,9.968230130052781],[115,7,66,10.007729132643005],[115,7,67,10.038683208465299],[115,7,68,10.059382186713458],[115,7,69,10.076988093031545],[115,7,70,10.090305776664227],[115,7,71,10.11140075903622],[115,7,72,10.15215836467576],[115,7,73,10.200666623110713],[115,7,74,10.246365406782337],[115,7,75,10.289251974054629],[115,7,76,10.334352248195637],[115,7,77,10.385293106671854],[115,7,78,10.430204372051763],[115,7,79,10.463963847390362],[115,8,64,9.733911218866211],[115,8,65,9.781637065802803],[115,8,66,9.82365183322627],[115,8,67,9.858010936322831],[115,8,68,9.880180388695926],[115,8,69,9.897658992367557],[115,8,70,9.912680147219177],[115,8,71,9.935409228283039],[115,8,72,9.97371176115604],[115,8,73,10.022002233834797],[115,8,74,10.07103521892983],[115,8,75,10.112573403614448],[115,8,76,10.158480585542353],[115,8,77,10.211498648423332],[115,8,78,10.253758214984039],[115,8,79,10.289050997565287],[115,9,64,9.546758063048333],[115,9,65,9.59703392269758],[115,9,66,9.643891476813273],[115,9,67,9.681281798217869],[115,9,68,9.706402387209673],[115,9,69,9.723239732695355],[115,9,70,9.735703916643997],[115,9,71,9.754679942127908],[115,9,72,9.79009793415113],[115,9,73,9.839614260724417],[115,9,74,9.888995019873285],[115,9,75,9.928471556564917],[115,9,76,9.975363400589742],[115,9,77,10.029249218809783],[115,9,78,10.070814702270587],[115,9,79,10.104291017141612],[115,10,64,9.35775972208266],[115,10,65,9.406832204951442],[115,10,66,9.454853167519966],[115,10,67,9.492931352322445],[115,10,68,9.519863347561328],[115,10,69,9.538110589985068],[115,10,70,9.549613730615738],[115,10,71,9.56864733484872],[115,10,72,9.606472395220859],[115,10,73,9.65617340876318],[115,10,74,9.704146573384646],[115,10,75,9.742584057505457],[115,10,76,9.790582141525995],[115,10,77,9.843143795073441],[115,10,78,9.886265914582058],[115,10,79,9.917699466370694],[115,11,64,9.16835657988637],[115,11,65,9.216727753287289],[115,11,66,9.26539400066127],[115,11,67,9.302846946405024],[115,11,68,9.331420666681348],[115,11,69,9.35243582897713],[115,11,70,9.365250620225009],[115,11,71,9.382591114011507],[115,11,72,9.42244017503186],[115,11,73,9.473972138306001],[115,11,74,9.519108615765408],[115,11,75,9.55949270469081],[115,11,76,9.606252596905932],[115,11,77,9.655950683222366],[115,11,78,9.700650053114371],[115,11,79,9.731661183993495],[115,12,64,8.979154254610211],[115,12,65,9.024992447143893],[115,12,66,9.072211994325173],[115,12,67,9.110087993890422],[115,12,68,9.136884083187129],[115,12,69,9.159767149221842],[115,12,70,9.175798291667123],[115,12,71,9.192097631516026],[115,12,72,9.22975739226305],[115,12,73,9.281728192857868],[115,12,74,9.328163328047038],[115,12,75,9.369179264609055],[115,12,76,9.414268171713983],[115,12,77,9.463506818410234],[115,12,78,9.506334438213859],[115,12,79,9.537316218527463],[115,13,64,8.78887027742924],[115,13,65,8.832546832650598],[115,13,66,8.876748858022815],[115,13,67,8.915599177269776],[115,13,68,8.938668939093962],[115,13,69,8.962231269625349],[115,13,70,8.980392267325241],[115,13,71,9.002005958561636],[115,13,72,9.041471568041066],[115,13,73,9.097015240846662],[115,13,74,9.143782332574403],[115,13,75,9.18512007991022],[115,13,76,9.229148975623712],[115,13,77,9.27853375682759],[115,13,78,9.320010947469566],[115,13,79,9.351198946512934],[115,14,64,8.59947612294735],[115,14,65,8.644763884687313],[115,14,66,8.688982253076613],[115,14,67,8.727046539055355],[115,14,68,8.7519800967129],[115,14,69,8.772682349987633],[115,14,70,8.792976676510888],[115,14,71,8.815769646535676],[115,14,72,8.85610610307894],[115,14,73,8.912660278700603],[115,14,74,8.958682636603866],[115,14,75,8.999582237483946],[115,14,76,9.04204077690989],[115,14,77,9.091857953817925],[115,14,78,9.1347007399741],[115,14,79,9.16604786503832],[115,15,64,8.411150385426907],[115,15,65,8.454932772566524],[115,15,66,8.502211038664244],[115,15,67,8.539934900430255],[115,15,68,8.564514252679025],[115,15,69,8.584820590957547],[115,15,70,8.603976708853923],[115,15,71,8.630104673581844],[115,15,72,8.672146435552882],[115,15,73,8.72734475240258],[115,15,74,8.77431447252184],[115,15,75,8.813320904631906],[115,15,76,8.856856854899652],[115,15,77,8.908629103065824],[115,15,78,8.948488741693797],[115,15,79,8.979141793260686],[115,16,64,8.222762422578352],[115,16,65,8.266638196993465],[115,16,66,8.314861159406725],[115,16,67,8.35188582822126],[115,16,68,8.376433035021675],[115,16,69,8.40118798331926],[115,16,70,8.42050572103916],[115,16,71,8.448741534521547],[115,16,72,8.492101499193858],[115,16,73,8.549063763606558],[115,16,74,8.596811488642848],[115,16,75,8.635276483888738],[115,16,76,8.68055458454627],[115,16,77,8.732066497148999],[115,16,78,8.77328003594064],[115,16,79,8.803566191878952],[115,17,64,8.037005827490425],[115,17,65,8.08131212490473],[115,17,66,8.127145560381654],[115,17,67,8.162317066377414],[115,17,68,8.189882606749062],[115,17,69,8.214589586616283],[115,17,70,8.231417715463584],[115,17,71,8.26065670875412],[115,17,72,8.305090501436387],[115,17,73,8.364013707660815],[115,17,74,8.410719298927157],[115,17,75,8.450630173369012],[115,17,76,8.495174475638617],[115,17,77,8.544963925067954],[115,17,78,8.586596952283488],[115,17,79,8.616975094054611],[115,18,64,7.853201287350822],[115,18,65,7.897943092797571],[115,18,66,7.940828501855925],[115,18,67,7.974034088636307],[115,18,68,8.003195937377715],[115,18,69,8.026168083727685],[115,18,70,8.04599412168283],[115,18,71,8.07478540311545],[115,18,72,8.121240573962247],[115,18,73,8.177504843944968],[115,18,74,8.223458471074139],[115,18,75,8.263296205809263],[115,18,76,8.30929662730492],[115,18,77,8.357733347700869],[115,18,78,8.400500890749708],[115,18,79,8.431660125328424],[115,19,64,7.666721375401025],[115,19,65,7.711036579230707],[115,19,66,7.7530189279277035],[115,19,67,7.785004738368693],[115,19,68,7.8152954699916295],[115,19,69,7.84077608087446],[115,19,70,7.864231485272001],[115,19,71,7.8922317420965795],[115,19,72,7.938116931127194],[115,19,73,7.989760185208581],[115,19,74,8.0375266652403],[115,19,75,8.077964769335956],[115,19,76,8.121627974540008],[115,19,77,8.170949105686601],[115,19,78,8.21438596651814],[115,19,79,8.242903811587993],[115,20,64,7.4829944371617785],[115,20,65,7.520497660045857],[115,20,66,7.56284744021203],[115,20,67,7.593970354362658],[115,20,68,7.624765815226588],[115,20,69,7.648352154997371],[115,20,70,7.672282932696758],[115,20,71,7.702093108748268],[115,20,72,7.7454249816118015],[115,20,73,7.798198107890013],[115,20,74,7.845462025540332],[115,20,75,7.883771333545635],[115,20,76,7.927424721486116],[115,20,77,7.9744880372521845],[115,20,78,8.01767613902734],[115,20,79,8.047163961550705],[115,21,64,7.305221489181819],[115,21,65,7.340585245865071],[115,21,66,7.378205451552478],[115,21,67,7.410076468915476],[115,21,68,7.437963669776225],[115,21,69,7.460265485408142],[115,21,70,7.482821370939482],[115,21,71,7.5125686444574145],[115,21,72,7.5557743688951176],[115,21,73,7.604264496927753],[115,21,74,7.654327600575414],[115,21,75,7.691263096060853],[115,21,76,7.7334992515644245],[115,21,77,7.7821164675353645],[115,21,78,7.824531898136773],[115,21,79,7.8582707761721515],[115,22,64,7.117017801622767],[115,22,65,7.1529214054283345],[115,22,66,7.190858242747098],[115,22,67,7.221218780773662],[115,22,68,7.250416048412626],[115,22,69,7.272445337710562],[115,22,70,7.294460557177718],[115,22,71,7.32726285184704],[115,22,72,7.369995406560331],[115,22,73,7.418976674717469],[115,22,74,7.466883632717582],[115,22,75,7.502338493874308],[115,22,76,7.542199328658229],[115,22,77,7.590922255811792],[115,22,78,7.633296935147916],[115,22,79,7.668947270738619],[115,23,64,6.9303137451211345],[115,23,65,6.966259048555029],[115,23,66,7.003426695850966],[115,23,67,7.035666283506569],[115,23,68,7.062326557224803],[115,23,69,7.087312913200873],[115,23,70,7.108530962667206],[115,23,71,7.1393032986180325],[115,23,72,7.18552811787709],[115,23,73,7.235966155647429],[115,23,74,7.280293165588471],[115,23,75,7.316662167334883],[115,23,76,7.354628064567713],[115,23,77,7.401167940635532],[115,23,78,7.444221241038862],[115,23,79,7.480373866188309],[115,24,64,6.750933851229331],[115,24,65,6.786751221186834],[115,24,66,6.82472520855863],[115,24,67,6.858772333586449],[115,24,68,6.886015264950179],[115,24,69,6.909618014649265],[115,24,70,6.9323563690653405],[115,24,71,6.9604943581214975],[115,24,72,7.007739448052115],[115,24,73,7.058590361315269],[115,24,74,7.103643443602972],[115,24,75,7.138320829552006],[115,24,76,7.172782408888857],[115,24,77,7.220031585322089],[115,24,78,7.263416816689733],[115,24,79,7.298620414425885],[115,25,64,6.577205898065332],[115,25,65,6.613574206839309],[115,25,66,6.651702703966199],[115,25,67,6.684452359306785],[115,25,68,6.7117139761623354],[115,25,69,6.7343751910852685],[115,25,70,6.760602061802337],[115,25,71,6.78544372646828],[115,25,72,6.828976027914764],[115,25,73,6.881451992889637],[115,25,74,6.927206486373133],[115,25,75,6.959686910940335],[115,25,76,6.989314775419687],[115,25,77,7.0296112378642635],[115,25,78,7.066909321334459],[115,25,79,7.097841060498284],[115,26,64,6.394508997594622],[115,26,65,6.4311286409208055],[115,26,66,6.468912123049848],[115,26,67,6.49797782566233],[115,26,68,6.524704788440544],[115,26,69,6.548581329743179],[115,26,70,6.572992195389352],[115,26,71,6.600284951797596],[115,26,72,6.642039178724563],[115,26,73,6.69169848023617],[115,26,74,6.737393316805239],[115,26,75,6.772441499159824],[115,26,76,6.8030329672884156],[115,26,77,6.8401271289544985],[115,26,78,6.878193404412237],[115,26,79,6.906957559659853],[115,27,64,6.212267973710306],[115,27,65,6.248703025662895],[115,27,66,6.283891705825047],[115,27,67,6.313394751861361],[115,27,68,6.338575461501666],[115,27,69,6.360688228993169],[115,27,70,6.386141039702062],[115,27,71,6.4128637370022785],[115,27,72,6.453261246878557],[115,27,73,6.503782366416922],[115,27,74,6.548546175661683],[115,27,75,6.584712923199132],[115,27,76,6.6143309605900455],[115,27,77,6.649255941600818],[115,27,78,6.6885925151003764],[115,27,79,6.715508971440935],[115,28,64,6.024081393701195],[115,28,65,6.061552801409669],[115,28,66,6.096338970896373],[115,28,67,6.126940598868873],[115,28,68,6.148621389329055],[115,28,69,6.171168503514808],[115,28,70,6.191375656999542],[115,28,71,6.217813131725076],[115,28,72,6.259598197583783],[115,28,73,6.310011041696825],[115,28,74,6.356277809388943],[115,28,75,6.392510415632661],[115,28,76,6.419905805748806],[115,28,77,6.452808327247755],[115,28,78,6.490728115456316],[115,28,79,6.517479663344083],[115,29,64,5.834176302336238],[115,29,65,5.872237657088857],[115,29,66,5.908482219418155],[115,29,67,5.939089558633499],[115,29,68,5.961247185928361],[115,29,69,5.980662812468288],[115,29,70,5.998699075902523],[115,29,71,6.0236063079013675],[115,29,72,6.064294480569781],[115,29,73,6.116810237820351],[115,29,74,6.163301600783967],[115,29,75,6.199797217925167],[115,29,76,6.228352522936897],[115,29,77,6.260825401786008],[115,29,78,6.298142889489378],[115,29,79,6.32683249085542],[115,30,64,5.6470817379322025],[115,30,65,5.6883346940752615],[115,30,66,5.723094704379408],[115,30,67,5.753721841448231],[115,30,68,5.774495008247275],[115,30,69,5.793607261464229],[115,30,70,5.811128638394133],[115,30,71,5.833923242505046],[115,30,72,5.874040134002596],[115,30,73,5.925177300870645],[115,30,74,5.97297923016817],[115,30,75,6.00672943972918],[115,30,76,6.038643227451217],[115,30,77,6.0707097706211695],[115,30,78,6.105240437855608],[115,30,79,6.135269784539888],[115,31,64,5.457806259405127],[115,31,65,5.500139680330498],[115,31,66,5.536916350398187],[115,31,67,5.568534718296776],[115,31,68,5.584764124764848],[115,31,69,5.602124780065809],[115,31,70,5.620493126403042],[115,31,71,5.644005783077443],[115,31,72,5.683130354028044],[115,31,73,5.735289128809813],[115,31,74,5.779859309340278],[115,31,75,5.813229857960103],[115,31,76,5.844233610039754],[115,31,77,5.8755078309898785],[115,31,78,5.908648323558224],[115,31,79,5.943493518111143],[115,32,64,5.281713905006605],[115,32,65,5.322735547176702],[115,32,66,5.360592989499237],[115,32,67,5.390910405356505],[115,32,68,5.406050132299832],[115,32,69,5.420740892264068],[115,32,70,5.442474503025925],[115,32,71,5.466609806156887],[115,32,72,5.504544181784486],[115,32,73,5.554234781513486],[115,32,74,5.597799065104419],[115,32,75,5.63238653138872],[115,32,76,5.663955317300152],[115,32,77,5.694182063174272],[115,32,78,5.726330826059452],[115,32,79,5.7618176720955185],[115,33,64,5.086549955270644],[115,33,65,5.129739306130526],[115,33,66,5.169395233433504],[115,33,67,5.198570490019956],[115,33,68,5.214870862357884],[115,33,69,5.228285182547133],[115,33,70,5.245624525409793],[115,33,71,5.273536816729733],[115,33,72,5.3086349347575],[115,33,73,5.35173356969003],[115,33,74,5.396507814969181],[115,33,75,5.430515813825404],[115,33,76,5.462544434724797],[115,33,77,5.4934434671214465],[115,33,78,5.525978272617705],[115,33,79,5.562560849010836],[115,34,64,4.9022143276415955],[115,34,65,4.9437639106566],[115,34,66,4.984963807080557],[115,34,67,5.00855319211672],[115,34,68,5.02578990194257],[115,34,69,5.040490844605313],[115,34,70,5.056198557883328],[115,34,71,5.082922198144683],[115,34,72,5.117886853748586],[115,34,73,5.1608441820363815],[115,34,74,5.20591731537452],[115,34,75,5.239211627659988],[115,34,76,5.271331752326334],[115,34,77,5.302886898096548],[115,34,78,5.3361078006758165],[115,34,79,5.367404707628291],[115,35,64,4.715080543147419],[115,35,65,4.756185707142443],[115,35,66,4.798140124940494],[115,35,67,4.82030505288197],[115,35,68,4.838479109830539],[115,35,69,4.851897666400866],[115,35,70,4.8661534623579],[115,35,71,4.892926718097987],[115,35,72,4.9279633953229744],[115,35,73,4.9706364403349115],[115,35,74,5.015392839980936],[115,35,75,5.049631140639104],[115,35,76,5.083243116892621],[115,35,77,5.110816211430738],[115,35,78,5.144472390417357],[115,35,79,5.176872280211267],[115,36,64,4.524425634601449],[115,36,65,4.565328820961245],[115,36,66,4.605802423388017],[115,36,67,4.630287506730875],[115,36,68,4.646737232858801],[115,36,69,4.660657250761687],[115,36,70,4.676542854423129],[115,36,71,4.699660181380273],[115,36,72,4.734614062507427],[115,36,73,4.776895293036504],[115,36,74,4.820187853100066],[115,36,75,4.857823244649041],[115,36,76,4.891984144945992],[115,36,77,4.918356464060314],[115,36,78,4.948801653789058],[115,36,79,4.982354561306729],[115,37,64,4.351978779517031],[115,37,65,4.388432077035409],[115,37,66,4.421010906108695],[115,37,67,4.441671042531028],[115,37,68,4.453427860291239],[115,37,69,4.465771426936907],[115,37,70,4.482604081314583],[115,37,71,4.50641807650956],[115,37,72,4.545741393616554],[115,37,73,4.589130031136877],[115,37,74,4.633794293031349],[115,37,75,4.67179925171846],[115,37,76,4.705606525902098],[115,37,77,4.733422707470601],[115,37,78,4.763949006806315],[115,37,79,4.801565380842702],[115,38,64,4.169221182980884],[115,38,65,4.202721242547814],[115,38,66,4.2315607942915525],[115,38,67,4.252452869823171],[115,38,68,4.26798156907478],[115,38,69,4.2792806647359285],[115,38,70,4.295953869263119],[115,38,71,4.316738520461092],[115,38,72,4.355749327812598],[115,38,73,4.401681450803087],[115,38,74,4.445890894383135],[115,38,75,4.48177619578136],[115,38,76,4.514840758412092],[115,38,77,4.542144550162843],[115,38,78,4.574251688716653],[115,38,79,4.614074953108417],[115,39,64,3.981406996297121],[115,39,65,4.01534398182445],[115,39,66,4.043396890864805],[115,39,67,4.063678529357992],[115,39,68,4.0818169081008335],[115,39,69,4.093573695605336],[115,39,70,4.107973601881303],[115,39,71,4.128941016118461],[115,39,72,4.166830145359479],[115,39,73,4.215298876526425],[115,39,74,4.259333106568395],[115,39,75,4.2938125883262215],[115,39,76,4.324217625157609],[115,39,77,4.352117162761506],[115,39,78,4.385934331619912],[115,39,79,4.42652169921544],[115,40,64,3.803562877952127],[115,40,65,3.8385155196834546],[115,40,66,3.8667634330583334],[115,40,67,3.8869613201271713],[115,40,68,3.9042143322647056],[115,40,69,3.9201411044000514],[115,40,70,3.9317616314542767],[115,40,71,3.953530369864754],[115,40,72,3.9924315876710708],[115,40,73,4.043194155989224],[115,40,74,4.085856809747096],[115,40,75,4.121212851153815],[115,40,76,4.148739493289961],[115,40,77,4.1763812794117605],[115,40,78,4.209566744110952],[115,40,79,4.248704438264083],[115,41,64,3.6158412344023008],[115,41,65,3.6492152253072905],[115,41,66,3.677118161720194],[115,41,67,3.697156256971144],[115,41,68,3.7143371884872405],[115,41,69,3.729468123283366],[115,41,70,3.7381230408722494],[115,41,71,3.7631956111680704],[115,41,72,3.8067902170986603],[115,41,73,3.8605888511283144],[115,41,74,3.9003297881188423],[115,41,75,3.936077672510163],[115,41,76,3.9610666721560457],[115,41,77,3.985243372702557],[115,41,78,4.019911579799257],[115,41,79,4.056877116008911],[115,42,64,3.427789454210423],[115,42,65,3.4582952090147927],[115,42,66,3.484770337532805],[115,42,67,3.504318885180778],[115,42,68,3.5228053399435586],[115,42,69,3.536082129393091],[115,42,70,3.548096791647193],[115,42,71,3.5759746817318026],[115,42,72,3.6190816961297014],[115,42,73,3.6737294978572574],[115,42,74,3.717478228705197],[115,42,75,3.751037934774131],[115,42,76,3.7730887061260883],[115,42,77,3.7960734676677332],[115,42,78,3.8281990749995596],[115,42,79,3.866395786456874],[115,43,64,3.2394471074740725],[115,43,65,3.2681729753267232],[115,43,66,3.294986109748527],[115,43,67,3.314198902960131],[115,43,68,3.3312051195923633],[115,43,69,3.3461208097253285],[115,43,70,3.3621804741646453],[115,43,71,3.3893177558055965],[115,43,72,3.432259134977425],[115,43,73,3.483137061461833],[115,43,74,3.5292681318387857],[115,43,75,3.5637324085705746],[115,43,76,3.58396456123024],[115,43,77,3.606836367486411],[115,43,78,3.638073946693169],[115,43,79,3.675024109407735],[115,44,64,3.0453752943663983],[115,44,65,3.075873179055678],[115,44,66,3.1025878608901487],[115,44,67,3.121774076660571],[115,44,68,3.1388508770015022],[115,44,69,3.1540624691120605],[115,44,70,3.1719881353190678],[115,44,71,3.198756538872705],[115,44,72,3.2404974899772867],[115,44,73,3.2881921121354902],[115,44,74,3.33750283523509],[115,44,75,3.3730338253142627],[115,44,76,3.391263615501054],[115,44,77,3.4138020128390423],[115,44,78,3.4458633524459064],[115,44,79,3.4816031000717658],[115,45,64,2.8410311324582875],[115,45,65,2.8736258536289268],[115,45,66,2.904859605254228],[115,45,67,2.9307921591922863],[115,45,68,2.9498632352024616],[115,45,69,2.97286014473289],[115,45,70,2.997684905018347],[115,45,71,3.0291928483753523],[115,45,72,3.0767316850805617],[115,45,73,3.1274972566521124],[115,45,74,3.175775465178792],[115,45,75,3.209431125698952],[115,45,76,3.229758085589995],[115,45,77,3.247581249429083],[115,45,78,3.2762451544170923],[115,45,79,3.30857775943936],[115,46,64,2.6507109398191915],[115,46,65,2.681148945914989],[115,46,66,2.713269089699888],[115,46,67,2.73954473902994],[115,46,68,2.760981649477742],[115,46,69,2.784665012026967],[115,46,70,2.8114082783699548],[115,46,71,2.8443036967525694],[115,46,72,2.889537149838613],[115,46,73,2.942774860896109],[115,46,74,2.989108659115573],[115,46,75,3.022594107371168],[115,46,76,3.0411976807795287],[115,46,77,3.0612401479821223],[115,46,78,3.086721755153474],[115,46,79,3.120912566515414],[115,47,64,2.460235961831077],[115,47,65,2.4896149873767914],[115,47,66,2.523135445607838],[115,47,67,2.5492284754287167],[115,47,68,2.5741477832942947],[115,47,69,2.596670960025663],[115,47,70,2.6240143013669766],[115,47,71,2.6584261921322],[115,47,72,2.701508833045004],[115,47,73,2.755879493731915],[115,47,74,2.8019188207651067],[115,47,75,2.8346468731769354],[115,47,76,2.8532355840029853],[115,47,77,2.8724693324727397],[115,47,78,2.8991376305763343],[115,47,79,2.9322484297909606],[115,48,64,2.2842749545453422],[115,48,65,2.3153379605267355],[115,48,66,2.3465017289039602],[115,48,67,2.372323464649863],[115,48,68,2.399072879961756],[115,48,69,2.4241343855259494],[115,48,70,2.4512340536967505],[115,48,71,2.4851197474952498],[115,48,72,2.5266496896435617],[115,48,73,2.579171651630185],[115,48,74,2.62677699429364],[115,48,75,2.6597717779393686],[115,48,76,2.6807447259113766],[115,48,77,2.6979284031341453],[115,48,78,2.7248532088089377],[115,48,79,2.758459781952335],[115,49,64,2.096691639692996],[115,49,65,2.1310191337270994],[115,49,66,2.1631998278993976],[115,49,67,2.194625752230737],[115,49,68,2.2206483297816],[115,49,69,2.247226990772587],[115,49,70,2.270348356759408],[115,49,71,2.2981900096946144],[115,49,72,2.331973350010188],[115,49,73,2.379952188075735],[115,49,74,2.424030838430184],[115,49,75,2.459405934781144],[115,49,76,2.4824762292511555],[115,49,77,2.4991962599001307],[115,49,78,2.521634281136354],[115,49,79,2.5545688287251114],[115,50,64,1.9040433182731555],[115,50,65,1.9417002499204146],[115,50,66,1.97544650793619],[115,50,67,2.0069892969131278],[115,50,68,2.033522988889281],[115,50,69,2.05929238367969],[115,50,70,2.079528333493009],[115,50,71,2.1079573734937873],[115,50,72,2.142890372777158],[115,50,73,2.190854212212353],[115,50,74,2.234139594534002],[115,50,75,2.2694005333290646],[115,50,76,2.2929043744106066],[115,50,77,2.3072349220956196],[115,50,78,2.32975262887631],[115,50,79,2.359665602358171],[115,51,64,1.7115459828601005],[115,51,65,1.75323561488108],[115,51,66,1.786331064389178],[115,51,67,1.8171156248545026],[115,51,68,1.8451589660367362],[115,51,69,1.8687009971924722],[115,51,70,1.8883508783415601],[115,51,71,1.918357746284383],[115,51,72,1.9551920755016094],[115,51,73,1.9999184646644192],[115,51,74,2.0440186675483685],[115,51,75,2.0803405611681436],[115,51,76,2.1029658399794657],[115,51,77,2.116610641069284],[115,51,78,2.1380044884727396],[115,51,79,2.1659349096887923],[115,52,64,1.538615405158849],[115,52,65,1.5787927992402675],[115,52,66,1.6122401598347682],[115,52,67,1.646211900272841],[115,52,68,1.6745814591177401],[115,52,69,1.698607729764436],[115,52,70,1.7179377002765468],[115,52,71,1.7450287477539292],[115,52,72,1.7825811182446472],[115,52,73,1.8258505941731535],[115,52,74,1.870734981075385],[115,52,75,1.9050466315935763],[115,52,76,1.9272896021401869],[115,52,77,1.9392637545769653],[115,52,78,1.9618197080706365],[115,52,79,1.9931440812191934],[115,53,64,1.3548973201057795],[115,53,65,1.3890234599863291],[115,53,66,1.420636830277062],[115,53,67,1.4531782425430229],[115,53,68,1.4819206343570372],[115,53,69,1.504434043974654],[115,53,70,1.5191312910638066],[115,53,71,1.5444857527268736],[115,53,72,1.5840540095802584],[115,53,73,1.6267081096794358],[115,53,74,1.669922134208586],[115,53,75,1.7051893034869192],[115,53,76,1.7265533081793092],[115,53,77,1.7394827850461652],[115,53,78,1.7625286985371562],[115,53,79,1.7958584436421559],[115,54,64,1.1637139636333547],[115,54,65,1.1944910233622654],[115,54,66,1.2300607522363816],[115,54,67,1.2623843066517528],[115,54,68,1.2902573151801904],[115,54,69,1.3143130346693142],[115,54,70,1.3307465454806375],[115,54,71,1.3544759801703152],[115,54,72,1.3940020514755032],[115,54,73,1.4382210574083558],[115,54,74,1.4813116246732616],[115,54,75,1.515896537199799],[115,54,76,1.5353158667067277],[115,54,77,1.5502693539561352],[115,54,78,1.5710652513297687],[115,54,79,1.6026219112986944],[115,55,64,0.9716348137163107],[115,55,65,1.0036935086903365],[115,55,66,1.0398483604508708],[115,55,67,1.0715047130756514],[115,55,68,1.0970678391330737],[115,55,69,1.1229194026962288],[115,55,70,1.140970197856857],[115,55,71,1.1668504525048413],[115,55,72,1.2052771838989302],[115,55,73,1.2500259332185828],[115,55,74,1.294044115337845],[115,55,75,1.3282281846699193],[115,55,76,1.3434234472633273],[115,55,77,1.3607078747924344],[115,55,78,1.3823777508758326],[115,55,79,1.412038424763434],[115,56,64,0.7960613310084181],[115,56,65,0.8273683368199639],[115,56,66,0.8613112859262526],[115,56,67,0.8908265111110607],[115,56,68,0.9182633116688893],[115,56,69,0.9462354151405472],[115,56,70,0.9683043278264316],[115,56,71,0.993182618595633],[115,56,72,1.0295894635202405],[115,56,73,1.073252154129214],[115,56,74,1.1196045662048086],[115,56,75,1.1512108963641483],[115,56,76,1.1688641915304867],[115,56,77,1.1863324437903724],[115,56,78,1.210718990211598],[115,56,79,1.23965573014872],[115,57,64,0.6055698258984088],[115,57,65,0.6390349667767867],[115,57,66,0.6713401469865103],[115,57,67,0.7036962645394227],[115,57,68,0.731059891285643],[115,57,69,0.7593556897361049],[115,57,70,0.7817276316955769],[115,57,71,0.8049836311593235],[115,57,72,0.8349764073473191],[115,57,73,0.8771916863453162],[115,57,74,0.9195414597877755],[115,57,75,0.9534598957367979],[115,57,76,0.974735267699234],[115,57,77,0.9915851978200995],[115,57,78,1.01539929639609],[115,57,79,1.043851494681336],[115,58,64,0.45761531701720687],[115,58,65,0.48853567855952595],[115,58,66,0.5198616539030505],[115,58,67,0.5521936609298161],[115,58,68,0.5790902283713545],[115,58,69,0.6043708404128014],[115,58,70,0.6293113508746295],[115,58,71,0.6514148279009542],[115,58,72,0.680714317348533],[115,58,73,0.7255219436225909],[115,58,74,0.7640714686886788],[115,58,75,0.7987222058234815],[115,58,76,0.8205995730852023],[115,58,77,0.8380940234760457],[115,58,78,0.8591913065396063],[115,58,79,0.8886547321372358],[115,59,64,0.26727490112034546],[115,59,65,0.29745264075343836],[115,59,66,0.3275703015268867],[115,59,67,0.35991953751140426],[115,59,68,0.38518184233179037],[115,59,69,0.41176115804023294],[115,59,70,0.4362761749387796],[115,59,71,0.4587161446779728],[115,59,72,0.4898846173944401],[115,59,73,0.5345652280404841],[115,59,74,0.575625575572789],[115,59,75,0.607811207709198],[115,59,76,0.6277517083623165],[115,59,77,0.646224844979204],[115,59,78,0.6681079668822902],[115,59,79,0.6970363514490376],[115,60,64,0.09997110267501237],[115,60,65,0.10406132005358606],[115,60,66,0.12920236295182183],[115,60,67,0.16135216874039965],[115,60,68,0.1900270464665906],[115,60,69,0.2134696210554593],[115,60,70,0.23998205436575767],[115,60,71,0.2611775186696417],[115,60,72,0.29559718838497184],[115,60,73,0.3404114409694944],[115,60,74,0.3833619060820823],[115,60,75,0.4148162462869981],[115,60,76,0.4353952178470737],[115,60,77,0.45224672454454984],[115,60,78,0.47390199479853096],[115,60,79,0.5030377317387602],[115,61,64,0.05465277839799351],[115,61,65,0.05223610623244547],[115,61,66,0.049339792799382776],[115,61,67,0.04760274650138628],[115,61,68,0.048683898621359425],[115,61,69,0.052029830988127135],[115,61,70,0.06068644957559258],[115,61,71,0.06344327843518292],[115,61,72,0.10547872975712044],[115,61,73,0.15278768567994838],[115,61,74,0.1980469690959331],[115,61,75,0.22781031085480163],[115,61,76,0.2492920064902187],[115,61,77,0.264853981652],[115,61,78,0.28971996959020807],[115,61,79,0.3243979865982266],[115,62,64,0.004989880153635898],[115,62,65,0.001704290237316497],[115,62,66,-0.0036331243480804964],[115,62,67,-0.005090616489672448],[115,62,68,-0.005991830154193023],[115,62,69,-3.0947479519273513E-4],[115,62,70,0.010440514188857483],[115,62,71,0.017575105978899566],[115,62,72,0.030568004149626113],[115,62,73,0.037984768310190584],[115,62,74,0.04681068809519842],[115,62,75,0.051626120021760924],[115,62,76,0.0608700095576408],[115,62,77,0.07351945625749401],[115,62,78,0.10009004639748932],[115,62,79,0.1371458863895823],[115,63,64,-0.11826856813390099],[115,63,65,-0.12326972669260078],[115,63,66,-0.12757634311646524],[115,63,67,-0.12879914562389058],[115,63,68,-0.13030998389921034],[115,63,69,-0.12351633009652309],[115,63,70,-0.11247768340790873],[115,63,71,-0.1024561989537241],[115,63,72,-0.08912522671483637],[115,63,73,-0.07651228942488839],[115,63,74,-0.06898956410657313],[115,63,75,-0.06659208536717616],[115,63,76,-0.05953128171341822],[115,63,77,-0.05468735540894136],[115,63,78,-0.04126765152997092],[115,63,79,-0.027156166832420933],[115,64,64,-0.15798762629865815],[115,64,65,-0.1663558598402789],[115,64,66,-0.17015605427487318],[115,64,67,-0.17145426572377848],[115,64,68,-0.17082677348422814],[115,64,69,-0.1653115353075696],[115,64,70,-0.15223792468448055],[115,64,71,-0.1436712108270082],[115,64,72,-0.13109576840117038],[115,64,73,-0.11421013988359716],[115,64,74,-0.10681298052601602],[115,64,75,-0.10295822620197367],[115,64,76,-0.09521620165925106],[115,64,77,-0.09076853144745467],[115,64,78,-0.08065121928648139],[115,64,79,-0.0702447377186376],[115,65,64,-0.2103761921108372],[115,65,65,-0.21839835691196458],[115,65,66,-0.2232738237355677],[115,65,67,-0.22261465499590585],[115,65,68,-0.2198077744449301],[115,65,69,-0.21457107731071756],[115,65,70,-0.20265748322392604],[115,65,71,-0.1949629328175297],[115,65,72,-0.18087431114650632],[115,65,73,-0.16385293965059256],[115,65,74,-0.15573645575667291],[115,65,75,-0.15058676405559876],[115,65,76,-0.14153300458285561],[115,65,77,-0.13805075316365994],[115,65,78,-0.13087400577336697],[115,65,79,-0.12177097474124592],[115,66,64,-0.26912765723178633],[115,66,65,-0.27722000026783494],[115,66,66,-0.28108885975634124],[115,66,67,-0.2774975890022298],[115,66,68,-0.2751675850648324],[115,66,69,-0.26776063299495007],[115,66,70,-0.258032743064031],[115,66,71,-0.250779380164126],[115,66,72,-0.2341889544402744],[115,66,73,-0.21839797608295536],[115,66,74,-0.20972441194061245],[115,66,75,-0.20344230240072686],[115,66,76,-0.19287591792460096],[115,66,77,-0.1899506799449908],[115,66,78,-0.1878236890913625],[115,66,79,-0.17874463971583088],[115,67,64,-0.3229673080368308],[115,67,65,-0.32802226243947896],[115,67,66,-0.3299064681794761],[115,67,67,-0.32660596794095464],[115,67,68,-0.32526379023381],[115,67,69,-0.3163413947707518],[115,67,70,-0.30952651415051735],[115,67,71,-0.29905043859446767],[115,67,72,-0.2811258812021531],[115,67,73,-0.2668674523406463],[115,67,74,-0.2562976085571441],[115,67,75,-0.24994583429542006],[115,67,76,-0.2411793605295996],[115,67,77,-0.23978507534545368],[115,67,78,-0.23835429339142683],[115,67,79,-0.2293426415692608],[115,68,64,-0.4616078972977203],[115,68,65,-0.4658229765107102],[115,68,66,-0.467028015082522],[115,68,67,-0.4650216097351233],[115,68,68,-0.4599176808403441],[115,68,69,-0.4525280941030885],[115,68,70,-0.44802764387181726],[115,68,71,-0.4320327607681719],[115,68,72,-0.41570124432549355],[115,68,73,-0.40112905104057883],[115,68,74,-0.39376508270112665],[115,68,75,-0.3885159762525577],[115,68,76,-0.37980064768214683],[115,68,77,-0.3811550753580218],[115,68,78,-0.37715967794424926],[115,68,79,-0.36673547241360505],[115,69,64,-0.5185522159988389],[115,69,65,-0.5229198281758229],[115,69,66,-0.5211910628909974],[115,69,67,-0.5184772823139113],[115,69,68,-0.5068907895909129],[115,69,69,-0.49748408563792135],[115,69,70,-0.4880336167177304],[115,69,71,-0.46730519568611006],[115,69,72,-0.4465538850716337],[115,69,73,-0.4293860682935677],[115,69,74,-0.42039644455733893],[115,69,75,-0.4171254957466506],[115,69,76,-0.41382291479187083],[115,69,77,-0.4192927285187583],[115,69,78,-0.4205245324191058],[115,69,79,-0.4142978434100433],[115,70,64,-0.5696824779833672],[115,70,65,-0.5750227562846251],[115,70,66,-0.5725280902614639],[115,70,67,-0.5679806044551413],[115,70,68,-0.5569912854219204],[115,70,69,-0.5475017172030383],[115,70,70,-0.5350100275016136],[115,70,71,-0.5173596904704696],[115,70,72,-0.4981857178861039],[115,70,73,-0.4801898674618661],[115,70,74,-0.4709188801550229],[115,70,75,-0.4667162162488445],[115,70,76,-0.4638893462744753],[115,70,77,-0.4708663370271429],[115,70,78,-0.47057997385067146],[115,70,79,-0.4650377531798874],[115,71,64,-0.6124876465657737],[115,71,65,-0.6144654196548306],[115,71,66,-0.6128282046858721],[115,71,67,-0.6087626715331551],[115,71,68,-0.5959387360558781],[115,71,69,-0.5858899040009975],[115,71,70,-0.5732741571162511],[115,71,71,-0.5577659764384191],[115,71,72,-0.5369296177221782],[115,71,73,-0.5214279079228995],[115,71,74,-0.5113606694788084],[115,71,75,-0.5066939515240696],[115,71,76,-0.5048097177893277],[115,71,77,-0.5121785280641957],[115,71,78,-0.512970058575445],[115,71,79,-0.5035388409840038],[115,72,64,-0.6642511393593692],[115,72,65,-0.6643850782299808],[115,72,66,-0.6635908611178641],[115,72,67,-0.6587105446857949],[115,72,68,-0.6444251545838766],[115,72,69,-0.634229953896945],[115,72,70,-0.6230417834640872],[115,72,71,-0.6074625084581502],[115,72,72,-0.5874824442127335],[115,72,73,-0.5707531270388404],[115,72,74,-0.56192043297976],[115,72,75,-0.5558549804115896],[115,72,76,-0.5573670473764486],[115,72,77,-0.5668096896643438],[115,72,78,-0.5642301295264178],[115,72,79,-0.552785403661896],[115,73,64,-0.7206050215364701],[115,73,65,-0.7179684767142902],[115,73,66,-0.7092071192954214],[115,73,67,-0.6977683457892578],[115,73,68,-0.681787749762664],[115,73,69,-0.6716656232784388],[115,73,70,-0.6633190085281626],[115,73,71,-0.6521799023909005],[115,73,72,-0.6388390820669296],[115,73,73,-0.6295248952929402],[115,73,74,-0.6217638708753139],[115,73,75,-0.6173236858140808],[115,73,76,-0.6212602435143961],[115,73,77,-0.6238118795266518],[115,73,78,-0.6192530361807127],[115,73,79,-0.6046777049661146],[115,74,64,-0.7786861665448679],[115,74,65,-0.7748587983217029],[115,74,66,-0.7653257980677698],[115,74,67,-0.7509166235717706],[115,74,68,-0.7377061706395148],[115,74,69,-0.7248618017182539],[115,74,70,-0.7152857162256193],[115,74,71,-0.7050461555431589],[115,74,72,-0.6924123603437314],[115,74,73,-0.6846328965313281],[115,74,74,-0.6775325161749479],[115,74,75,-0.6736413544443787],[115,74,76,-0.6791576855289067],[115,74,77,-0.6791269942142876],[115,74,78,-0.6758788860649501],[115,74,79,-0.664014971152857],[115,75,64,-0.8282681964882522],[115,75,65,-0.8227953023290211],[115,75,66,-0.8113488137925273],[115,75,67,-0.7976765063945342],[115,75,68,-0.784801824222478],[115,75,69,-0.7747040741180415],[115,75,70,-0.7620443546546818],[115,75,71,-0.7546943973062126],[115,75,72,-0.741381548312524],[115,75,73,-0.73238411729709],[115,75,74,-0.7294082620495461],[115,75,75,-0.7265518261255361],[115,75,76,-0.7288805422464635],[115,75,77,-0.7291395549073755],[115,75,78,-0.7291760603382471],[115,75,79,-0.7197716362578543],[115,76,64,-0.8708560434167929],[115,76,65,-0.8656291828173203],[115,76,66,-0.8555068497824799],[115,76,67,-0.8449726571674595],[115,76,68,-0.8297184521191625],[115,76,69,-0.8193854014212368],[115,76,70,-0.8056604122608428],[115,76,71,-0.7976899742412691],[115,76,72,-0.7879314610055156],[115,76,73,-0.7796419759227451],[115,76,74,-0.7770614896630682],[115,76,75,-0.7756982984186138],[115,76,76,-0.776704990104005],[115,76,77,-0.7764344408155953],[115,76,78,-0.7775602475552976],[115,76,79,-0.7706012590436246],[115,77,64,-0.9170686208849588],[115,77,65,-0.9137064153213597],[115,77,66,-0.9055819538673342],[115,77,67,-0.8974291285209899],[115,77,68,-0.8848441661697385],[115,77,69,-0.8756870068244229],[115,77,70,-0.8620844556124632],[115,77,71,-0.8540101446898836],[115,77,72,-0.8473057949521884],[115,77,73,-0.8399753234935509],[115,77,74,-0.8357791689100534],[115,77,75,-0.8331324805042759],[115,77,76,-0.8333722929350392],[115,77,77,-0.8336869640451949],[115,77,78,-0.832643588661133],[115,77,79,-0.8270947897539322],[115,78,64,-0.9665147916762749],[115,78,65,-0.9621281832675177],[115,78,66,-0.9563047455121717],[115,78,67,-0.946163773510398],[115,78,68,-0.9367198807238984],[115,78,69,-0.9257096025321323],[115,78,70,-0.9122586100326604],[115,78,71,-0.9028720618161405],[115,78,72,-0.8953616779563323],[115,78,73,-0.8916887166501201],[115,78,74,-0.8863471432475305],[115,78,75,-0.8836537849278995],[115,78,76,-0.8833826675123315],[115,78,77,-0.8852330294674481],[115,78,78,-0.8856403185693678],[115,78,79,-0.8805391505250666],[115,79,64,-1.0050707823802953],[115,79,65,-1.0006295504918201],[115,79,66,-0.9939465399655529],[115,79,67,-0.983632628809016],[115,79,68,-0.977057156054758],[115,79,69,-0.9646963056422939],[115,79,70,-0.9510316410676701],[115,79,71,-0.9439023704408972],[115,79,72,-0.9329321972989575],[115,79,73,-0.9301812632176312],[115,79,74,-0.9249148371387694],[115,79,75,-0.9253605737168941],[115,79,76,-0.9256967566204997],[115,79,77,-0.9283265554807064],[115,79,78,-0.9299669399235763],[115,79,79,-0.9258303257399126],[115,80,64,-1.0543781218166124],[115,80,65,-1.0487764444044774],[115,80,66,-1.0427787281192862],[115,80,67,-1.0327648836647578],[115,80,68,-1.0268074997976737],[115,80,69,-1.017496692284166],[115,80,70,-1.0042429601438436],[115,80,71,-0.9952643644413599],[115,80,72,-0.9844695673652832],[115,80,73,-0.9805053828708465],[115,80,74,-0.975156945556574],[115,80,75,-0.9745026004237496],[115,80,76,-0.9750951123609821],[115,80,77,-0.9798232654567183],[115,80,78,-0.9832624912252701],[115,80,79,-0.9797723623539796],[115,81,64,-1.1001842586250588],[115,81,65,-1.0930106270470026],[115,81,66,-1.0850692718292991],[115,81,67,-1.0758898736940925],[115,81,68,-1.0696650967793202],[115,81,69,-1.059832386600975],[115,81,70,-1.0488880480112959],[115,81,71,-1.0390568696209985],[115,81,72,-1.0271478575030957],[115,81,73,-1.0169491357657159],[115,81,74,-1.0126155116914777],[115,81,75,-1.012952275752438],[115,81,76,-1.0177799761727273],[115,81,77,-1.030743309703144],[115,81,78,-1.039546048685789],[115,81,79,-1.0386215481388705],[115,82,64,-1.1535960125258247],[115,82,65,-1.148087537780155],[115,82,66,-1.137225734743133],[115,82,67,-1.1288729701576365],[115,82,68,-1.1224563339792617],[115,82,69,-1.113750305813463],[115,82,70,-1.1058166976723787],[115,82,71,-1.0953787280580394],[115,82,72,-1.084450747102614],[115,82,73,-1.0705722871369792],[115,82,74,-1.0688837907501978],[115,82,75,-1.070085401651729],[115,82,76,-1.0727655061058534],[115,82,77,-1.0870235854165955],[115,82,78,-1.094804428273496],[115,82,79,-1.0958440360805393],[115,83,64,-1.2006702804306781],[115,83,65,-1.194359789857446],[115,83,66,-1.1845151535641796],[115,83,67,-1.176718807465146],[115,83,68,-1.1694809279745353],[115,83,69,-1.1631579516865835],[115,83,70,-1.157663770409442],[115,83,71,-1.149533149879442],[115,83,72,-1.1362896039857997],[115,83,73,-1.1235718373037387],[115,83,74,-1.1201140775245286],[115,83,75,-1.120583384745322],[115,83,76,-1.1217001523288157],[115,83,77,-1.136116459647865],[115,83,78,-1.1456552639137239],[115,83,79,-1.1489423372871097],[115,84,64,-1.2461903576182964],[115,84,65,-1.2394441683731896],[115,84,66,-1.2281440585328682],[115,84,67,-1.2191900589654625],[115,84,68,-1.2136262590171765],[115,84,69,-1.2097502973863974],[115,84,70,-1.2051517246816508],[115,84,71,-1.200142374911495],[115,84,72,-1.1855879554203723],[115,84,73,-1.1737475772269026],[115,84,74,-1.1711165306085336],[115,84,75,-1.1703176856798407],[115,84,76,-1.17090553822352],[115,84,77,-1.187011296529905],[115,84,78,-1.1980866890584625],[115,84,79,-1.1978788473310642],[115,85,64,-1.302359317500091],[115,85,65,-1.2999574654549937],[115,85,66,-1.2927801653155364],[115,85,67,-1.284774479602026],[115,85,68,-1.2792395635353653],[115,85,69,-1.2766977423474568],[115,85,70,-1.2727278112214417],[115,85,71,-1.2667767530353615],[115,85,72,-1.252456912759189],[115,85,73,-1.241988187653324],[115,85,74,-1.240689387253784],[115,85,75,-1.2377040686707907],[115,85,76,-1.2411103123486713],[115,85,77,-1.249765824351574],[115,85,78,-1.251645580001701],[115,85,79,-1.2431749548343396],[115,86,64,-1.3518730276764535],[115,86,65,-1.3482540538627554],[115,86,66,-1.343045240241794],[115,86,67,-1.3361553042183545],[115,86,68,-1.3283379442788257],[115,86,69,-1.3258555075276717],[115,86,70,-1.321960891929308],[115,86,71,-1.3125530372879317],[115,86,72,-1.3031796733976213],[115,86,73,-1.2934016016767125],[115,86,74,-1.2902302352455643],[115,86,75,-1.2916237058844147],[115,86,76,-1.2949139464406574],[115,86,77,-1.301162577505181],[115,86,78,-1.3034147125921791],[115,86,79,-1.2936430420229952],[115,87,64,-1.3902403591113084],[115,87,65,-1.3894386667019003],[115,87,66,-1.3856634039302742],[115,87,67,-1.3783363937686708],[115,87,68,-1.3702465626446148],[115,87,69,-1.3650381584162399],[115,87,70,-1.3615238815798743],[115,87,71,-1.3508821200191696],[115,87,72,-1.3443571774012926],[115,87,73,-1.3345144346522022],[115,87,74,-1.3306497318441335],[115,87,75,-1.3344065673727483],[115,87,76,-1.3375556594475495],[115,87,77,-1.3426325235647059],[115,87,78,-1.3426276716672214],[115,87,79,-1.3335065241615633],[115,88,64,-1.4414035784762715],[115,88,65,-1.4403765375067752],[115,88,66,-1.4369383767712036],[115,88,67,-1.4300558020011243],[115,88,68,-1.4226689320418797],[115,88,69,-1.4143027498561616],[115,88,70,-1.410298314473538],[115,88,71,-1.4001203480204563],[115,88,72,-1.3924234473838335],[115,88,73,-1.3858171270982305],[115,88,74,-1.3814033965880088],[115,88,75,-1.3824130967726735],[115,88,76,-1.3867155353201497],[115,88,77,-1.3913033564147193],[115,88,78,-1.3912176422870766],[115,88,79,-1.3843995761866985],[115,89,64,-1.4914079889502232],[115,89,65,-1.488768804051119],[115,89,66,-1.4841487592433689],[115,89,67,-1.4776775271650096],[115,89,68,-1.471386641474693],[115,89,69,-1.461860842556699],[115,89,70,-1.4587265028790373],[115,89,71,-1.4503895884257691],[115,89,72,-1.4441626029571673],[115,89,73,-1.4351309791878664],[115,89,74,-1.432404364708597],[115,89,75,-1.4320195729954908],[115,89,76,-1.4333703051985616],[115,89,77,-1.4380754830613338],[115,89,78,-1.4398555205280288],[115,89,79,-1.4345276517355643],[115,90,64,-1.5462167185476383],[115,90,65,-1.5444173224828421],[115,90,66,-1.5407712807637175],[115,90,67,-1.5318574295654637],[115,90,68,-1.5255896661108286],[115,90,69,-1.515456696093509],[115,90,70,-1.5111591991458377],[115,90,71,-1.5059220676116767],[115,90,72,-1.4976839248361802],[115,90,73,-1.4900711747558706],[115,90,74,-1.4861244833954226],[115,90,75,-1.4843737848484575],[115,90,76,-1.483582680890412],[115,90,77,-1.4910488015488605],[115,90,78,-1.495107176304159],[115,90,79,-1.4907005323243152],[115,91,64,-1.5954772025732815],[115,91,65,-1.5945073462139976],[115,91,66,-1.58890988643023],[115,91,67,-1.5787182853332309],[115,91,68,-1.5720928228723214],[115,91,69,-1.5649896090159605],[115,91,70,-1.5627286264742453],[115,91,71,-1.5554857470649983],[115,91,72,-1.5451392091429232],[115,91,73,-1.5386998998651151],[115,91,74,-1.5323694603009177],[115,91,75,-1.5293197261189668],[115,91,76,-1.5292366484447069],[115,91,77,-1.5396012751147001],[115,91,78,-1.545099771165705],[115,91,79,-1.540398425850011],[115,92,64,-1.6272120871411677],[115,92,65,-1.6261021102198319],[115,92,66,-1.6179776665855607],[115,92,67,-1.606744979299547],[115,92,68,-1.60009715534817],[115,92,69,-1.5975376973998718],[115,92,70,-1.5962118588714547],[115,92,71,-1.588456277230194],[115,92,72,-1.5789122455613953],[115,92,73,-1.5709506316449031],[115,92,74,-1.5638727722992551],[115,92,75,-1.5597215172650434],[115,92,76,-1.5616420440554273],[115,92,77,-1.5711736937615026],[115,92,78,-1.5773914811474012],[115,92,79,-1.5733686362879673],[115,93,64,-1.6846032228610406],[115,93,65,-1.6817188483183412],[115,93,66,-1.67115143995665],[115,93,67,-1.6582168912316333],[115,93,68,-1.6520593463763693],[115,93,69,-1.649812559122198],[115,93,70,-1.6475138610680164],[115,93,71,-1.632892827080948],[115,93,72,-1.6214999484726862],[115,93,73,-1.6100188176792205],[115,93,74,-1.59862514427996],[115,93,75,-1.5952355779344969],[115,93,76,-1.6021978008641495],[115,93,77,-1.6170600490981522],[115,93,78,-1.628440332559405],[115,93,79,-1.6322516282101882],[115,94,64,-1.7305860348673463],[115,94,65,-1.7273885535982],[115,94,66,-1.7192858273172347],[115,94,67,-1.7073576983406142],[115,94,68,-1.7014347669524121],[115,94,69,-1.6968588425043347],[115,94,70,-1.6941638730817221],[115,94,71,-1.6801342247043665],[115,94,72,-1.6659740581076565],[115,94,73,-1.655303166765616],[115,94,74,-1.643902235956813],[115,94,75,-1.6409058535924066],[115,94,76,-1.6515491590528963],[115,94,77,-1.6665161648951676],[115,94,78,-1.6775005936070069],[115,94,79,-1.680003612574753],[115,95,64,-1.7669292824763592],[115,95,65,-1.7631228733981756],[115,95,66,-1.7577721592818742],[115,95,67,-1.7468283884884364],[115,95,68,-1.740525932780502],[115,95,69,-1.7343401165264662],[115,95,70,-1.732005748970605],[115,95,71,-1.7201751356399748],[115,95,72,-1.7036987847687133],[115,95,73,-1.6911993069233515],[115,95,74,-1.6813920582719195],[115,95,75,-1.680688688019133],[115,95,76,-1.693293994108653],[115,95,77,-1.708486112524357],[115,95,78,-1.7193016288796308],[115,95,79,-1.721171634275517],[115,96,64,-1.8136172223308025],[115,96,65,-1.8107331768487185],[115,96,66,-1.8051112763117443],[115,96,67,-1.794589205606124],[115,96,68,-1.7869464381131597],[115,96,69,-1.7811225199838567],[115,96,70,-1.778746898051615],[115,96,71,-1.7666899382173282],[115,96,72,-1.7484270803660285],[115,96,73,-1.7360770467668967],[115,96,74,-1.7286605703632603],[115,96,75,-1.7309636411130795],[115,96,76,-1.742946580146676],[115,96,77,-1.7571233013691248],[115,96,78,-1.768957240218509],[115,96,79,-1.7682595300784902],[115,97,64,-1.851706607302207],[115,97,65,-1.8466442619127628],[115,97,66,-1.838614317032779],[115,97,67,-1.8284256964207877],[115,97,68,-1.8216807751598187],[115,97,69,-1.8170994147470823],[115,97,70,-1.8182188043236986],[115,97,71,-1.8111325904624755],[115,97,72,-1.7992030984351355],[115,97,73,-1.7925660297518298],[115,97,74,-1.786341527125896],[115,97,75,-1.7888893231464302],[115,97,76,-1.7974236496172247],[115,97,77,-1.8068069081122473],[115,97,78,-1.808401201266223],[115,97,79,-1.8042398991120603],[115,98,64,-1.9024867749927934],[115,98,65,-1.8994854642330377],[115,98,66,-1.890573482833693],[115,98,67,-1.8796933047825295],[115,98,68,-1.8742278944119726],[115,98,69,-1.8708236904770654],[115,98,70,-1.8704084919710613],[115,98,71,-1.8633391402135906],[115,98,72,-1.8549825331789163],[115,98,73,-1.8461389930016372],[115,98,74,-1.8399245872141152],[115,98,75,-1.8419425031283811],[115,98,76,-1.850031886380512],[115,98,77,-1.8570461541015952],[115,98,78,-1.8580024782584106],[115,98,79,-1.8541110630997717],[115,99,64,-1.9489333134225926],[115,99,65,-1.9459261565187504],[115,99,66,-1.9383498337553653],[115,99,67,-1.9297053846913275],[115,99,68,-1.922558378664403],[115,99,69,-1.917274374048179],[115,99,70,-1.9158267362105719],[115,99,71,-1.9098668043836469],[115,99,72,-1.9021529486093949],[115,99,73,-1.8957820991898193],[115,99,74,-1.888517184834913],[115,99,75,-1.8904053778975638],[115,99,76,-1.8971296120709378],[115,99,77,-1.9020708155040702],[115,99,78,-1.904289110045982],[115,99,79,-1.9008863307903434],[115,100,64,-1.955402995005888],[115,100,65,-1.9490121782612195],[115,100,66,-1.9412396332381818],[115,100,67,-1.9313496040142404],[115,100,68,-1.9194790019228767],[115,100,69,-1.911144181496404],[115,100,70,-1.9079457639189255],[115,100,71,-1.9024436248913315],[115,100,72,-1.8952788639113582],[115,100,73,-1.886147629632034],[115,100,74,-1.8814304291354935],[115,100,75,-1.8821989225216595],[115,100,76,-1.8888629076452725],[115,100,77,-1.893780251456122],[115,100,78,-1.8955902978429762],[115,100,79,-1.8929347551806377],[115,101,64,-2.0001725201597407],[115,101,65,-1.9937645376640445],[115,101,66,-1.9869793956220734],[115,101,67,-1.9782282876813542],[115,101,68,-1.9661322578761427],[115,101,69,-1.9596907506910737],[115,101,70,-1.9552620530042384],[115,101,71,-1.951013668481118],[115,101,72,-1.9424718181165483],[115,101,73,-1.9341939680901417],[115,101,74,-1.9303316315578567],[115,101,75,-1.9285127064019112],[115,101,76,-1.9328423696085482],[115,101,77,-1.9400476858205278],[115,101,78,-1.9423879904666521],[115,101,79,-1.9403909380351099],[115,102,64,-2.0483369822447353],[115,102,65,-2.041987099306546],[115,102,66,-2.0361321389610056],[115,102,67,-2.0259739321842583],[115,102,68,-2.0158808762236404],[115,102,69,-2.0111289975954314],[115,102,70,-2.0033598821935796],[115,102,71,-1.9980653462407858],[115,102,72,-1.9896162284122096],[115,102,73,-1.984265327792855],[115,102,74,-1.9769379084128944],[115,102,75,-1.9741129095211516],[115,102,76,-1.9786901062896847],[115,102,77,-1.988037295554291],[115,102,78,-1.990831620621637],[115,102,79,-1.9896904638899795],[115,103,64,-2.090278391723263],[115,103,65,-2.083760937147326],[115,103,66,-2.0799695370687683],[115,103,67,-2.0682331861691656],[115,103,68,-2.0596472032903965],[115,103,69,-2.0519262764464505],[115,103,70,-2.0439309762015165],[115,103,71,-2.0366579310493167],[115,103,72,-2.0308426603601983],[115,103,73,-2.0268499441657313],[115,103,74,-2.017637512680093],[115,103,75,-2.014326148690828],[115,103,76,-2.0206763774609255],[115,103,77,-2.03069260483914],[115,103,78,-2.036452861020085],[115,103,79,-2.0355275978194673],[115,104,64,-2.1391884497480973],[115,104,65,-2.1339050952480823],[115,104,66,-2.130319356894198],[115,104,67,-2.1214258364321097],[115,104,68,-2.110620401935557],[115,104,69,-2.101598081464182],[115,104,70,-2.091210069219589],[115,104,71,-2.0857284087923436],[115,104,72,-2.0776277384095403],[115,104,73,-2.073497302737378],[115,104,74,-2.0658407515231674],[115,104,75,-2.06146638113751],[115,104,76,-2.068003640950338],[115,104,77,-2.0781059877670605],[115,104,78,-2.0881407131260805],[115,104,79,-2.0869637773404204],[115,105,64,-2.179774011562058],[115,105,65,-2.1776280795483953],[115,105,66,-2.173575221792627],[115,105,67,-2.164304221993494],[115,105,68,-2.155236382690683],[115,105,69,-2.1450650389368486],[115,105,70,-2.133078561086665],[115,105,71,-2.122930717462638],[115,105,72,-2.1162115613709376],[115,105,73,-2.108985665899163],[115,105,74,-2.1018414226589317],[115,105,75,-2.0981005076902592],[115,105,76,-2.107208352969366],[115,105,77,-2.1274762114670343],[115,105,78,-2.1427490705849004],[115,105,79,-2.146598960981739],[115,106,64,-2.2342107703718095],[115,106,65,-2.231988272878349],[115,106,66,-2.2255884487842628],[115,106,67,-2.2174362725994787],[115,106,68,-2.20900878549057],[115,106,69,-2.19912174325634],[115,106,70,-2.187929533524567],[115,106,71,-2.1776560024079465],[115,106,72,-2.1693310353324113],[115,106,73,-2.1601359667766484],[115,106,74,-2.153772134328344],[115,106,75,-2.1518892913731764],[115,106,76,-2.1632652567247646],[115,106,77,-2.183593305393059],[115,106,78,-2.1956928922553396],[115,106,79,-2.198854385585452],[115,107,64,-2.2824934835586914],[115,107,65,-2.28049991124243],[115,107,66,-2.2758978270264336],[115,107,67,-2.2681014202984464],[115,107,68,-2.256252076120072],[115,107,69,-2.245850422610113],[115,107,70,-2.2334097157346955],[115,107,71,-2.2286152413185865],[115,107,72,-2.2190687644333087],[115,107,73,-2.208819209172599],[115,107,74,-2.2029461456987707],[115,107,75,-2.202653933776718],[115,107,76,-2.213574180529871],[115,107,77,-2.2303217099370642],[115,107,78,-2.2407537467535383],[115,107,79,-2.243854502478747],[115,108,64,-2.334455414953822],[115,108,65,-2.3332746004619915],[115,108,66,-2.3288612503318147],[115,108,67,-2.3200124440191856],[115,108,68,-2.3072370755283678],[115,108,69,-2.2966692709895122],[115,108,70,-2.288121585409439],[115,108,71,-2.2813042617575765],[115,108,72,-2.2718296080309637],[115,108,73,-2.2641223276950657],[115,108,74,-2.2556154587786144],[115,108,75,-2.257202762230864],[115,108,76,-2.2668289207607804],[115,108,77,-2.283650957151435],[115,108,78,-2.296501206786375],[115,108,79,-2.297313316789751],[115,109,64,-2.3947132334986674],[115,109,65,-2.3939260533693583],[115,109,66,-2.3889073270749774],[115,109,67,-2.3772848670762965],[115,109,68,-2.3677727189338396],[115,109,69,-2.3569550280916545],[115,109,70,-2.3511569979405005],[115,109,71,-2.3420235380269165],[115,109,72,-2.332428143393387],[115,109,73,-2.3259949560245787],[115,109,74,-2.317678505381934],[115,109,75,-2.3172478267620336],[115,109,76,-2.3220580023828687],[115,109,77,-2.3345835339108363],[115,109,78,-2.342457023262412],[115,109,79,-2.3375936316596038],[115,110,64,-2.441852772615863],[115,110,65,-2.443081653051634],[115,110,66,-2.43926983443968],[115,110,67,-2.429817556692105],[115,110,68,-2.419604904901244],[115,110,69,-2.409301479785045],[115,110,70,-2.4035697668707026],[115,110,71,-2.39128402132132],[115,110,72,-2.3806866881263007],[115,110,73,-2.375946767973292],[115,110,74,-2.3712525427341284],[115,110,75,-2.366803865557627],[115,110,76,-2.3699601668604338],[115,110,77,-2.3856888959300138],[115,110,78,-2.3922064274994987],[115,110,79,-2.385283572575557],[115,111,64,-2.4810715969583876],[115,111,65,-2.4863698676135684],[115,111,66,-2.4828250566766514],[115,111,67,-2.4720900366136958],[115,111,68,-2.463170884674246],[115,111,69,-2.456808145597614],[115,111,70,-2.4479842606981226],[115,111,71,-2.4347616621719617],[115,111,72,-2.4274419161566327],[115,111,73,-2.4216734997859444],[115,111,74,-2.4154913216104736],[115,111,75,-2.4100055700998766],[115,111,76,-2.4143530723035838],[115,111,77,-2.429671949768902],[115,111,78,-2.437642411650283],[115,111,79,-2.4314868632293867],[115,112,64,-2.5314267997793896],[115,112,65,-2.5337348943824796],[115,112,66,-2.531968020962253],[115,112,67,-2.5213389328262634],[115,112,68,-2.51437361978269],[115,112,69,-2.5071141807090305],[115,112,70,-2.4978597423862903],[115,112,71,-2.4858495557976754],[115,112,72,-2.478126463885528],[115,112,73,-2.4709921977504026],[115,112,74,-2.4627082437686187],[115,112,75,-2.460335201783376],[115,112,76,-2.4643390568166357],[115,112,77,-2.478071702807454],[115,112,78,-2.4824733555788745],[115,112,79,-2.4762510675435587],[115,113,64,-2.58102480243386],[115,113,65,-2.583378921796162],[115,113,66,-2.5828021865542],[115,113,67,-2.572340620925811],[115,113,68,-2.5649382950572575],[115,113,69,-2.5556782177839112],[115,113,70,-2.543603872821198],[115,113,71,-2.5358360216619036],[115,113,72,-2.527131331963024],[115,113,73,-2.518868145438385],[115,113,74,-2.513630148573461],[115,113,75,-2.5090174276322896],[115,113,76,-2.5151952869017427],[115,113,77,-2.527888001850825],[115,113,78,-2.5306108129717297],[115,113,79,-2.5201875657426527],[115,114,64,-2.6362893948553454],[115,114,65,-2.63896776734737],[115,114,66,-2.6362147827744105],[115,114,67,-2.6262336815063083],[115,114,68,-2.6184343388177234],[115,114,69,-2.606503265042981],[115,114,70,-2.594324653834327],[115,114,71,-2.5907766138220536],[115,114,72,-2.5824971873134164],[115,114,73,-2.5719445296394023],[115,114,74,-2.5679513970279246],[115,114,75,-2.5631191896943357],[115,114,76,-2.5676482728996337],[115,114,77,-2.582043280682634],[115,114,78,-2.5810622871866733],[115,114,79,-2.5707328656578805],[115,115,64,-2.6831241765423304],[115,115,65,-2.6853517731749634],[115,115,66,-2.6817382905072473],[115,115,67,-2.6723598073439816],[115,115,68,-2.6649829156054325],[115,115,69,-2.654299833299328],[115,115,70,-2.642560317609599],[115,115,71,-2.6376829697543798],[115,115,72,-2.6309961976937486],[115,115,73,-2.622278866028209],[115,115,74,-2.6150548295503326],[115,115,75,-2.610179038706367],[115,115,76,-2.6142357156747336],[115,115,77,-2.628180857666714],[115,115,78,-2.6304338711007142],[115,115,79,-2.621261944754832],[115,116,64,-2.714133220355198],[115,116,65,-2.7169197964362133],[115,116,66,-2.717096689089361],[115,116,67,-2.7100993479262807],[115,116,68,-2.7050563151568428],[115,116,69,-2.696673394328588],[115,116,70,-2.6882572954875106],[115,116,71,-2.682446602174799],[115,116,72,-2.6787722653917947],[115,116,73,-2.6694993963708855],[115,116,74,-2.6598434265288473],[115,116,75,-2.654688001700584],[115,116,76,-2.655785554607331],[115,116,77,-2.665087106761669],[115,116,78,-2.6716435306341944],[115,116,79,-2.662247935119381],[115,117,64,-2.7697522978594837],[115,117,65,-2.769740575302752],[115,117,66,-2.7657220409169443],[115,117,67,-2.757420750459735],[115,117,68,-2.7517135498199035],[115,117,69,-2.742521149172472],[115,117,70,-2.7367360942097227],[115,117,71,-2.7316847608455745],[115,117,72,-2.727459640900311],[115,117,73,-2.7173091195718206],[115,117,74,-2.7050878304851174],[115,117,75,-2.6995408077584857],[115,117,76,-2.702297262257589],[115,117,77,-2.7092261644097255],[115,117,78,-2.7168047376725153],[115,117,79,-2.7089146534443254],[115,118,64,-2.818999789802601],[115,118,65,-2.8201363205382304],[115,118,66,-2.813156642069743],[115,118,67,-2.8060949720558437],[115,118,68,-2.800175433429686],[115,118,69,-2.7912064815356206],[115,118,70,-2.7883837503513815],[115,118,71,-2.783903936200629],[115,118,72,-2.7776481850503982],[115,118,73,-2.7658950607475816],[115,118,74,-2.754637292877854],[115,118,75,-2.747165451632597],[115,118,76,-2.7513280087491765],[115,118,77,-2.759048383969979],[115,118,78,-2.7652424781757556],[115,118,79,-2.760721059780049],[115,119,64,-2.8583168763156834],[115,119,65,-2.8604463375399893],[115,119,66,-2.854254527185666],[115,119,67,-2.850056546957773],[115,119,68,-2.8443112046634615],[115,119,69,-2.83527405510176],[115,119,70,-2.833825040019075],[115,119,71,-2.8299908539383436],[115,119,72,-2.8216061822464638],[115,119,73,-2.810423034423457],[115,119,74,-2.801007436076751],[115,119,75,-2.79290180551617],[115,119,76,-2.7972730268627863],[115,119,77,-2.808031427545095],[115,119,78,-2.8137351416640777],[115,119,79,-2.8102516205346926],[115,120,64,-2.9044788644973702],[115,120,65,-2.90861035957625],[115,120,66,-2.902854664614809],[115,120,67,-2.898934820896022],[115,120,68,-2.8913779767223335],[115,120,69,-2.8846884094845624],[115,120,70,-2.8829662567458083],[115,120,71,-2.879845545771591],[115,120,72,-2.870973556774609],[115,120,73,-2.858150132037247],[115,120,74,-2.84822121601861],[115,120,75,-2.839631089078719],[115,120,76,-2.847477369350537],[115,120,77,-2.857721685101736],[115,120,78,-2.8648297779126985],[115,120,79,-2.859393719849757],[115,121,64,-2.942164909847591],[115,121,65,-2.947658760892388],[115,121,66,-2.9473806372550797],[115,121,67,-2.9446359640024076],[115,121,68,-2.9364960518189682],[115,121,69,-2.93299973608923],[115,121,70,-2.9306472902351985],[115,121,71,-2.927418324348535],[115,121,72,-2.9219479872675005],[115,121,73,-2.9078043782355993],[115,121,74,-2.8954976672294075],[115,121,75,-2.8880127785129837],[115,121,76,-2.896285310302752],[115,121,77,-2.9097075085389066],[115,121,78,-2.9213888205554346],[115,121,79,-2.918188089723429],[115,122,64,-2.9931265346275504],[115,122,65,-2.99731992116826],[115,122,66,-2.99658923290963],[115,122,67,-2.994176273379015],[115,122,68,-2.990632209504847],[115,122,69,-2.9881656307755815],[115,122,70,-2.9850915548772763],[115,122,71,-2.9803492362133457],[115,122,72,-2.976968556173911],[115,122,73,-2.9626903060937484],[115,122,74,-2.95141055730899],[115,122,75,-2.940321742051266],[115,122,76,-2.9487663518312495],[115,122,77,-2.9628709521184295],[115,122,78,-2.973424679084584],[115,122,79,-2.9689155161484266],[115,123,64,-3.039376613226251],[115,123,65,-3.043511198498714],[115,123,66,-3.043185136093879],[115,123,67,-3.041549768936189],[115,123,68,-3.0393377982915473],[115,123,69,-3.0357022974789154],[115,123,70,-3.032066563755906],[115,123,71,-3.027522781458476],[115,123,72,-3.024473040783316],[115,123,73,-3.0126171017606134],[115,123,74,-3.002141605192657],[115,123,75,-2.990835815628738],[115,123,76,-2.995108537759623],[115,123,77,-3.0114497510609444],[115,123,78,-3.0209695589130456],[115,123,79,-3.0169737715871254],[115,124,64,-3.0818537771517516],[115,124,65,-3.0894655039983405],[115,124,66,-3.0907364113631077],[115,124,67,-3.0883290852902596],[115,124,68,-3.0887736289562806],[115,124,69,-3.08537495482124],[115,124,70,-3.0781884941973834],[115,124,71,-3.075351402940111],[115,124,72,-3.071864819923763],[115,124,73,-3.0618052942953784],[115,124,74,-3.0492834566909104],[115,124,75,-3.039669800832381],[115,124,76,-3.045424731512884],[115,124,77,-3.0629188744353213],[115,124,78,-3.0731625029255545],[115,124,79,-3.0716886268946575],[115,125,64,-3.1268443496461233],[115,125,65,-3.133413230100961],[115,125,66,-3.1350693861354055],[115,125,67,-3.134524408656916],[115,125,68,-3.135289651798059],[115,125,69,-3.13377043414179],[115,125,70,-3.126470189390247],[115,125,71,-3.1209030810922522],[115,125,72,-3.1191300264448336],[115,125,73,-3.1099053669118084],[115,125,74,-3.0974867664670844],[115,125,75,-3.0893633604077952],[115,125,76,-3.094752443375444],[115,125,77,-3.1112962838948364],[115,125,78,-3.1230219999855757],[115,125,79,-3.1295444389942992],[115,126,64,-3.1706127687893915],[115,126,65,-3.1788620522471276],[115,126,66,-3.1825505704387522],[115,126,67,-3.183589055584505],[115,126,68,-3.1824296014184514],[115,126,69,-3.1818656624434007],[115,126,70,-3.176299390783959],[115,126,71,-3.170172777709081],[115,126,72,-3.1666509958144324],[115,126,73,-3.1597216159293087],[115,126,74,-3.1450380819242074],[115,126,75,-3.137342678548565],[115,126,76,-3.143730218066303],[115,126,77,-3.1585979294668447],[115,126,78,-3.1778662457766806],[115,126,79,-3.2262270145103966],[115,127,64,-3.208016254910666],[115,127,65,-3.217697790081692],[115,127,66,-3.221852818118534],[115,127,67,-3.225158561660589],[115,127,68,-3.224151702108271],[115,127,69,-3.222150319496213],[115,127,70,-3.2222166435994932],[115,127,71,-3.215805551022088],[115,127,72,-3.211854791198819],[115,127,73,-3.20374685325721],[115,127,74,-3.190824837445795],[115,127,75,-3.1829463783563847],[115,127,76,-3.1911375101529655],[115,127,77,-3.204392880794889],[115,127,78,-3.2164760246564685],[115,127,79,-3.2583188622062282],[115,128,64,-3.256511788406357],[115,128,65,-3.265706425963442],[115,128,66,-3.2697682537710557],[115,128,67,-3.272739013196691],[115,128,68,-3.269225463314408],[115,128,69,-3.269323116295099],[115,128,70,-3.272253268712229],[115,128,71,-3.2645554554627747],[115,128,72,-3.2577264480187482],[115,128,73,-3.248243450647651],[115,128,74,-3.2363339307735774],[115,128,75,-3.2329881547611206],[115,128,76,-3.2403277911578128],[115,128,77,-3.2508310895616193],[115,128,78,-3.2738971646030155],[115,128,79,-3.3194632155605244],[115,129,64,-3.299122050847609],[115,129,65,-3.3107050561060514],[115,129,66,-3.3221929200633418],[115,129,67,-3.3243036675991244],[115,129,68,-3.3248808181521348],[115,129,69,-3.3248305375567195],[115,129,70,-3.3264988753568554],[115,129,71,-3.31529680362503],[115,129,72,-3.300245498168101],[115,129,73,-3.2869355326821865],[115,129,74,-3.2755163550389264],[115,129,75,-3.271783487363933],[115,129,76,-3.2798608735693033],[115,129,77,-3.289100832467278],[115,129,78,-3.2963212576256207],[115,129,79,-3.3285157249228075],[115,130,64,-3.351512119329123],[115,130,65,-3.3646027717371414],[115,130,66,-3.376338281788159],[115,130,67,-3.3769897383801686],[115,130,68,-3.3768528195583665],[115,130,69,-3.3771805328405344],[115,130,70,-3.3777921919352103],[115,130,71,-3.3696879879014956],[115,130,72,-3.353172344152853],[115,130,73,-3.3400361459885395],[115,130,74,-3.3525830563702397],[115,130,75,-3.396474161850057],[115,130,76,-3.479489552667187],[115,130,77,-3.4964381606725627],[115,130,78,-3.5084582984509067],[115,130,79,-3.505715221135276],[115,131,64,-3.40288506050487],[115,131,65,-3.415233134705674],[115,131,66,-3.425406353034031],[115,131,67,-3.4241561980312896],[115,131,68,-3.42404456430034],[115,131,69,-3.4250265119831287],[115,131,70,-3.4248006345038413],[115,131,71,-3.4176955375423095],[115,131,72,-3.3993847074999715],[115,131,73,-3.3863812508734354],[115,131,74,-3.435808875148202],[115,131,75,-3.477719976018395],[115,131,76,-3.5260717212345813],[115,131,77,-3.5405918872086506],[115,131,78,-3.5522413199573224],[115,131,79,-3.55240562588898],[115,132,64,-3.441005521765738],[115,132,65,-3.455686472279538],[115,132,66,-3.4657803430200422],[115,132,67,-3.465381291137688],[115,132,68,-3.4647239767294926],[115,132,69,-3.4692860556909126],[115,132,70,-3.4696515565255157],[115,132,71,-3.4616671811032784],[115,132,72,-3.447221522370471],[115,132,73,-3.433771065521933],[115,132,74,-3.4882624362107495],[115,132,75,-3.5245250891943387],[115,132,76,-3.5663569976881737],[115,132,77,-3.584001423328063],[115,132,78,-3.5955540163186193],[115,132,79,-3.5936236398816392],[115,133,64,-3.493922775404423],[115,133,65,-3.502375678463053],[115,133,66,-3.504023242187322],[115,133,67,-3.5029266513695902],[115,133,68,-3.500217671956223],[115,133,69,-3.5071170227973654],[115,133,70,-3.5103008194229965],[115,133,71,-3.50713247275943],[115,133,72,-3.499737069923152],[115,133,73,-3.5084561298241113],[115,133,74,-3.530637700193061],[115,133,75,-3.554258929767304],[115,133,76,-3.6065478052719704],[115,133,77,-3.6237577338545925],[115,133,78,-3.6346266035286106],[115,133,79,-3.6321540839939974],[115,134,64,-3.5390473375098432],[115,134,65,-3.5467694498441347],[115,134,66,-3.549022388497864],[115,134,67,-3.547353334601506],[115,134,68,-3.548303429362136],[115,134,69,-3.5532124978544393],[115,134,70,-3.5569555951871563],[115,134,71,-3.556030540666098],[115,134,72,-3.5494957740079705],[115,134,73,-3.5633982705519798],[115,134,74,-3.5808593588775874],[115,134,75,-3.602543946958092],[115,134,76,-3.6465231266336855],[115,134,77,-3.6671470856055666],[115,134,78,-3.676561427033671],[115,134,79,-3.675184535584452],[115,135,64,-3.5775259176977396],[115,135,65,-3.5869640176216135],[115,135,66,-3.5902662765914073],[115,135,67,-3.5884577057268525],[115,135,68,-3.59140565622644],[115,135,69,-3.5951372147394887],[115,135,70,-3.601094114978023],[115,135,71,-3.6024520226614714],[115,135,72,-3.5968852948331205],[115,135,73,-3.603965517515345],[115,135,74,-3.6127134672227394],[115,135,75,-3.6349178773513002],[115,135,76,-3.686101168603987],[115,135,77,-3.7056412722879912],[115,135,78,-3.717580118752473],[115,135,79,-3.7144089429124993],[115,136,64,-3.6264176531077297],[115,136,65,-3.6354856976490795],[115,136,66,-3.639700893843285],[115,136,67,-3.6375562540827056],[115,136,68,-3.6380137349303165],[115,136,69,-3.6404809518605075],[115,136,70,-3.646160234819973],[115,136,71,-3.647718348408642],[115,136,72,-3.6459543037585425],[115,136,73,-3.6626309273176676],[115,136,74,-3.6733170608616446],[115,136,75,-3.6992762361660447],[115,136,76,-3.740613199386492],[115,136,77,-3.762706552507109],[115,136,78,-3.7731082359794446],[115,136,79,-3.7695724775350348],[115,137,64,-3.6769093047444517],[115,137,65,-3.6843877941610526],[115,137,66,-3.687000456922368],[115,137,67,-3.685247117029515],[115,137,68,-3.683646154026697],[115,137,69,-3.6880532271205464],[115,137,70,-3.696591885253412],[115,137,71,-3.6943700368744743],[115,137,72,-3.692745170650355],[115,137,73,-3.705042136913928],[115,137,74,-3.714548442993501],[115,137,75,-3.7313742722142123],[115,137,76,-3.7681917374189213],[115,137,77,-3.7957928312924913],[115,137,78,-3.8075017163342357],[115,137,79,-3.804497582674023],[115,138,64,-3.732931357997034],[115,138,65,-3.7380275419730675],[115,138,66,-3.742383693129422],[115,138,67,-3.739612019323068],[115,138,68,-3.7375596760307026],[115,138,69,-3.7406549436635883],[115,138,70,-3.7478022616095537],[115,138,71,-3.7464099267621083],[115,138,72,-3.7420535712558864],[115,138,73,-3.7449338736021707],[115,138,74,-3.7602627701835942],[115,138,75,-3.7705422560449344],[115,138,76,-3.808886003051923],[115,138,77,-3.8376045975548867],[115,138,78,-3.8492434893578995],[115,138,79,-3.8457593581167338],[115,139,64,-3.781590717067302],[115,139,65,-3.7892681735332667],[115,139,66,-3.793254867690693],[115,139,67,-3.790412466230778],[115,139,68,-3.788791741772549],[115,139,69,-3.789198191216407],[115,139,70,-3.792940743062604],[115,139,71,-3.793770122350119],[115,139,72,-3.790401422380016],[115,139,73,-3.8081672588210544],[115,139,74,-3.8232163196808195],[115,139,75,-3.8359956746176955],[115,139,76,-3.8646802852553757],[115,139,77,-3.880432382930803],[115,139,78,-3.8901721689111652],[115,139,79,-3.8955599435353987],[115,140,64,-3.841626820491831],[115,140,65,-3.8500744304987227],[115,140,66,-3.849970293303269],[115,140,67,-3.8435680289748135],[115,140,68,-3.839637708363501],[115,140,69,-3.8385164928964786],[115,140,70,-3.8385655254885283],[115,140,71,-3.836914089967015],[115,140,72,-3.834069384293188],[115,140,73,-3.8526361455481517],[115,140,74,-3.864998109788802],[115,140,75,-3.881827314694041],[115,140,76,-3.908138979675804],[115,140,77,-3.9231802191732195],[115,140,78,-3.9368351910567663],[115,140,79,-3.9405800123978887],[115,141,64,-3.896486110929665],[115,141,65,-3.906273192327848],[115,141,66,-3.9042673604262847],[115,141,67,-3.8962393022471757],[115,141,68,-3.8908609225126054],[115,141,69,-3.8897701759741614],[115,141,70,-3.8888838881789978],[115,141,71,-3.8887844201069424],[115,141,72,-3.885470065257575],[115,141,73,-3.8936595286315243],[115,141,74,-3.9123250343547564],[115,141,75,-3.929855742716162],[115,141,76,-3.9460922156261917],[115,141,77,-3.9594719848325055],[115,141,78,-3.974315272356661],[115,141,79,-3.9782746973639314],[115,142,64,-3.9447285041942877],[115,142,65,-3.9545880696606286],[115,142,66,-3.9527780437134554],[115,142,67,-3.9473216582984265],[115,142,68,-3.9393792182761267],[115,142,69,-3.93696367930796],[115,142,70,-3.935400687561976],[115,142,71,-3.9368769252020672],[115,142,72,-3.93036506175554],[115,142,73,-3.9403835786734844],[115,142,74,-3.9567807713427405],[115,142,75,-3.9741316284898396],[115,142,76,-3.9882305683075363],[115,142,77,-4.003367207056761],[115,142,78,-4.021387426325054],[115,142,79,-4.026100993258172],[115,143,64,-3.986626824539376],[115,143,65,-3.9960565503123395],[115,143,66,-3.9963793209899787],[115,143,67,-3.9913601119062525],[115,143,68,-3.9853190896284385],[115,143,69,-3.9817637861522575],[115,143,70,-3.9801221409217256],[115,143,71,-3.9787221180400927],[115,143,72,-3.977061203616826],[115,143,73,-3.976986799918435],[115,143,74,-3.9946801791761506],[115,143,75,-4.013606746303596],[115,143,76,-4.028247583923447],[115,143,77,-4.04389940286385],[115,143,78,-4.059759480471643],[115,143,79,-4.064526019554765],[115,144,64,-4.033870159323545],[115,144,65,-4.0416720337128025],[115,144,66,-4.044512744189896],[115,144,67,-4.03927923686944],[115,144,68,-4.03304160315043],[115,144,69,-4.028315115085134],[115,144,70,-4.02640662711172],[115,144,71,-4.024398605707855],[115,144,72,-4.0224090652859195],[115,144,73,-4.02624117423408],[115,144,74,-4.048666157944751],[115,144,75,-4.06971852849459],[115,144,76,-4.084359336896794],[115,144,77,-4.100433247548025],[115,144,78,-4.113370182830943],[115,144,79,-4.117643920443211],[115,145,64,-4.072473335303347],[115,145,65,-4.085002855902033],[115,145,66,-4.089145029219625],[115,145,67,-4.086045297395312],[115,145,68,-4.07878161781932],[115,145,69,-4.072920537636207],[115,145,70,-4.073398039719992],[115,145,71,-4.067679660287822],[115,145,72,-4.060903537648329],[115,145,73,-4.0532163887555654],[115,145,74,-4.0449238018130655],[115,145,75,-4.052992685710436],[115,145,76,-4.076707068923072],[115,145,77,-4.093658571694385],[115,145,78,-4.110181007693345],[115,145,79,-4.122130224666845],[115,146,64,-4.127506774540391],[115,146,65,-4.139581623708837],[115,146,66,-4.143563933716126],[115,146,67,-4.138473079031328],[115,146,68,-4.132221346295964],[115,146,69,-4.124075808638515],[115,146,70,-4.125766071775307],[115,146,71,-4.120188266227602],[115,146,72,-4.110775186692619],[115,146,73,-4.1024680347792115],[115,146,74,-4.092646669732508],[115,146,75,-4.092933108702239],[115,146,76,-4.112756329595438],[115,146,77,-4.133347736555442],[115,146,78,-4.1468126470625295],[115,146,79,-4.164881697163041],[115,147,64,-4.1768693495135025],[115,147,65,-4.18692110276883],[115,147,66,-4.191137561485004],[115,147,67,-4.183577007489655],[115,147,68,-4.178275402861338],[115,147,69,-4.171251291806153],[115,147,70,-4.169682749336755],[115,147,71,-4.1643575733423726],[115,147,72,-4.156642453784785],[115,147,73,-4.148679249927303],[115,147,74,-4.142242052273767],[115,147,75,-4.138490825781337],[115,147,76,-4.128201054984775],[115,147,77,-4.143313037777558],[115,147,78,-4.159500727967289],[115,147,79,-4.1307259299753625],[115,148,64,-4.199709244298487],[115,148,65,-4.206105196289397],[115,148,66,-4.2071723909844465],[115,148,67,-4.199519492229074],[115,148,68,-4.18960727977864],[115,148,69,-4.181471075798427],[115,148,70,-4.175741017705394],[115,148,71,-4.171021198720292],[115,148,72,-4.167086900776449],[115,148,73,-4.158280215446216],[115,148,74,-4.150843802011695],[115,148,75,-4.1466539087455025],[115,148,76,-4.1584264829898565],[115,148,77,-4.16026876989589],[115,148,78,-4.163375813493338],[115,148,79,-4.1344171493905995],[115,149,64,-4.247635971245572],[115,149,65,-4.256684495528009],[115,149,66,-4.256914856229751],[115,149,67,-4.248255376086762],[115,149,68,-4.2360339458247225],[115,149,69,-4.226922043593175],[115,149,70,-4.221917774659317],[115,149,71,-4.217607867029342],[115,149,72,-4.2134217686285504],[115,149,73,-4.207568753077783],[115,149,74,-4.199359998332311],[115,149,75,-4.19460096373467],[115,149,76,-4.205375217393966],[115,149,77,-4.211334115398045],[115,149,78,-4.212205232380439],[115,149,79,-4.192193077330819],[115,150,64,-4.297286458338792],[115,150,65,-4.305572679804735],[115,150,66,-4.30665820390791],[115,150,67,-4.296830385346448],[115,150,68,-4.284081122366024],[115,150,69,-4.276483784726169],[115,150,70,-4.26866716042521],[115,150,71,-4.266591950318187],[115,150,72,-4.26080351598869],[115,150,73,-4.2557317292562695],[115,150,74,-4.251487027720486],[115,150,75,-4.245269209989923],[115,150,76,-4.254915268837126],[115,150,77,-4.258373281501911],[115,150,78,-4.259243754028915],[115,150,79,-4.241169305448982],[115,151,64,-4.342962743513657],[115,151,65,-4.347832305115151],[115,151,66,-4.348400692819245],[115,151,67,-4.340107971483762],[115,151,68,-4.330041768438441],[115,151,69,-4.323704420850565],[115,151,70,-4.315467372809463],[115,151,71,-4.3135162138722425],[115,151,72,-4.308086050949502],[115,151,73,-4.304777755427094],[115,151,74,-4.302450915359178],[115,151,75,-4.296738573839639],[115,151,76,-4.308338153753522],[115,151,77,-4.314717014313022],[115,151,78,-4.312241034420998],[115,151,79,-4.294692125899849],[115,152,64,-4.397435061225578],[115,152,65,-4.40064303305667],[115,152,66,-4.397792610806436],[115,152,67,-4.388110595264695],[115,152,68,-4.382109013221772],[115,152,69,-4.375234468665787],[115,152,70,-4.366191376147851],[115,152,71,-4.3627057471836395],[115,152,72,-4.35771838698352],[115,152,73,-4.353447462367312],[115,152,74,-4.349813647207818],[115,152,75,-4.346333901682829],[115,152,76,-4.35790708683371],[115,152,77,-4.363489354828877],[115,152,78,-4.351127602175098],[115,152,79,-4.336277946486529],[115,153,64,-4.456972829301653],[115,153,65,-4.455035110349238],[115,153,66,-4.442159911353774],[115,153,67,-4.429706476849949],[115,153,68,-4.42518446744045],[115,153,69,-4.41688819102262],[115,153,70,-4.408093619653588],[115,153,71,-4.406770064916224],[115,153,72,-4.404470151264839],[115,153,73,-4.401886656684334],[115,153,74,-4.398731746558355],[115,153,75,-4.398102184237175],[115,153,76,-4.409821968483645],[115,153,77,-4.403704872461531],[115,153,78,-4.386049645811534],[115,153,79,-4.3760035534175215],[115,154,64,-4.512424164850822],[115,154,65,-4.510780381685569],[115,154,66,-4.500453247727991],[115,154,67,-4.485669066809718],[115,154,68,-4.478306615661401],[115,154,69,-4.469088667352363],[115,154,70,-4.462461286350195],[115,154,71,-4.461157004528733],[115,154,72,-4.4549389572395235],[115,154,73,-4.45186168544035],[115,154,74,-4.450160227022549],[115,154,75,-4.453212470796706],[115,154,76,-4.465439666416041],[115,154,77,-4.460660013088155],[115,154,78,-4.436427188608764],[115,154,79,-4.428949875437655],[115,155,64,-4.56071875445437],[115,155,65,-4.559465156096508],[115,155,66,-4.551818382202195],[115,155,67,-4.53673129033759],[115,155,68,-4.527092737122299],[115,155,69,-4.5191247887184565],[115,155,70,-4.5114405534026],[115,155,71,-4.507784032887967],[115,155,72,-4.500500935207016],[115,155,73,-4.499056131327322],[115,155,74,-4.498066579430502],[115,155,75,-4.500110761802334],[115,155,76,-4.513464323874664],[115,155,77,-4.510553385599476],[115,155,78,-4.485740856190528],[115,155,79,-4.482807721664178],[115,156,64,-4.610250735473564],[115,156,65,-4.610569877866937],[115,156,66,-4.602690042640535],[115,156,67,-4.590589069600563],[115,156,68,-4.577907242523833],[115,156,69,-4.573168294723035],[115,156,70,-4.564053844559075],[115,156,71,-4.561454370530954],[115,156,72,-4.555502858145747],[115,156,73,-4.553175797783136],[115,156,74,-4.552197663536512],[115,156,75,-4.550512969523756],[115,156,76,-4.555821128078695],[115,156,77,-4.544204753137767],[115,156,78,-4.527390194731814],[115,156,79,-4.528787735757838],[115,157,64,-4.649906530478648],[115,157,65,-4.656340008193476],[115,157,66,-4.654769461574069],[115,157,67,-4.6475816545103985],[115,157,68,-4.638464085654273],[115,157,69,-4.6304204898407555],[115,157,70,-4.619762618923772],[115,157,71,-4.614921498300953],[115,157,72,-4.607595210282704],[115,157,73,-4.601258857151395],[115,157,74,-4.601212178975428],[115,157,75,-4.5967429901459065],[115,157,76,-4.592505552057956],[115,157,77,-4.581932671111885],[115,157,78,-4.572658839439299],[115,157,79,-4.569568092973512],[115,158,64,-4.694337173900769],[115,158,65,-4.705689266363792],[115,158,66,-4.701790539368144],[115,158,67,-4.693641217276088],[115,158,68,-4.687085476745534],[115,158,69,-4.67604835745556],[115,158,70,-4.667612772898915],[115,158,71,-4.66047185237495],[115,158,72,-4.653677971868222],[115,158,73,-4.650170673467041],[115,158,74,-4.650076868409068],[115,158,75,-4.63454945787676],[115,158,76,-4.630696410883471],[115,158,77,-4.61639032357885],[115,158,78,-4.610398749729983],[115,158,79,-4.60727832830845],[115,159,64,-4.812134756853856],[115,159,65,-4.816479942032384],[115,159,66,-4.809767117349847],[115,159,67,-4.795375743297611],[115,159,68,-4.779835530953863],[115,159,69,-4.761314329035352],[115,159,70,-4.744239818854097],[115,159,71,-4.730334811038981],[115,159,72,-4.715141929243945],[115,159,73,-4.704862703878356],[115,159,74,-4.693960828783436],[115,159,75,-4.681717933751756],[115,159,76,-4.677390827438301],[115,159,77,-4.664720030002192],[115,159,78,-4.6521553108097],[115,159,79,-4.650127705141307],[115,160,64,-4.85550463985041],[115,160,65,-4.859836427603462],[115,160,66,-4.855781495410113],[115,160,67,-4.844881138469953],[115,160,68,-4.8274656669110385],[115,160,69,-4.807060690532845],[115,160,70,-4.79102178967769],[115,160,71,-4.777484647552627],[115,160,72,-4.76197387695887],[115,160,73,-4.752338189056035],[115,160,74,-4.740999563850763],[115,160,75,-4.7268304097626395],[115,160,76,-4.717870967584001],[115,160,77,-4.712762371087653],[115,160,78,-4.697314426312778],[115,160,79,-4.693643114971437],[115,161,64,-4.89873034572956],[115,161,65,-4.904298884295333],[115,161,66,-4.902145396487143],[115,161,67,-4.891571051827266],[115,161,68,-4.8746357925173855],[115,161,69,-4.852831587345607],[115,161,70,-4.837667351048881],[115,161,71,-4.824058211355246],[115,161,72,-4.808705301371648],[115,161,73,-4.798524538347633],[115,161,74,-4.788385361371041],[115,161,75,-4.774391299840155],[115,161,76,-4.760180784974566],[115,161,77,-4.751499273978961],[115,161,78,-4.7402813980311995],[115,161,79,-4.733059763820064],[115,162,64,-4.949349648319764],[115,162,65,-4.955192511480221],[115,162,66,-4.9517718966277675],[115,162,67,-4.944252094429207],[115,162,68,-4.9284174280179585],[115,162,69,-4.904859147004319],[115,162,70,-4.888459940857404],[115,162,71,-4.875515406411815],[115,162,72,-4.863805055008177],[115,162,73,-4.850962621272127],[115,162,74,-4.839425859579428],[115,162,75,-4.827811735132621],[115,162,76,-4.820588828227571],[115,162,77,-4.8120817542848116],[115,162,78,-4.798040740143625],[115,162,79,-4.786205656438436],[115,163,64,-4.997410437443934],[115,163,65,-5.002027910456123],[115,163,66,-4.997646624454074],[115,163,67,-4.986938882820616],[115,163,68,-4.973416499753226],[115,163,69,-4.952407744245265],[115,163,70,-4.936620800384784],[115,163,71,-4.922740728101261],[115,163,72,-4.911259651037418],[115,163,73,-4.897585384382087],[115,163,74,-4.882810233035271],[115,163,75,-4.873311967943874],[115,163,76,-4.875029775093645],[115,163,77,-4.874963726298799],[115,163,78,-4.863072966515753],[115,163,79,-4.847398463263648],[115,164,64,-5.0234751730706595],[115,164,65,-5.024123475315407],[115,164,66,-5.02060325715133],[115,164,67,-5.01084239312032],[115,164,68,-4.998476279191757],[115,164,69,-4.980963197707509],[115,164,70,-4.967178047826462],[115,164,71,-4.954990037797362],[115,164,72,-4.943325881843047],[115,164,73,-4.92877564674927],[115,164,74,-4.911426157221231],[115,164,75,-4.902644551175855],[115,164,76,-4.904725940969681],[115,164,77,-4.906569638858843],[115,164,78,-4.901938575934693],[115,164,79,-4.891102173571468],[115,165,64,-5.065416568643216],[115,165,65,-5.0651553647311705],[115,165,66,-5.057052987200285],[115,165,67,-5.046245851444024],[115,165,68,-5.031407314323351],[115,165,69,-5.018145381308147],[115,165,70,-5.0038883934735665],[115,165,71,-4.995964017829416],[115,165,72,-4.988169244265999],[115,165,73,-4.973923048898081],[115,165,74,-4.956704426384611],[115,165,75,-4.945500983918977],[115,165,76,-4.946653723518012],[115,165,77,-4.946631901652259],[115,165,78,-4.943723985870445],[115,165,79,-4.937453020472937],[115,166,64,-5.112141671100499],[115,166,65,-5.112161645056176],[115,166,66,-5.105177279178105],[115,166,67,-5.090535380681618],[115,166,68,-5.076171001341938],[115,166,69,-5.061768673139991],[115,166,70,-5.046962526551974],[115,166,71,-5.039182091438326],[115,166,72,-5.033905532412816],[115,166,73,-5.0202290170553745],[115,166,74,-5.002386560317626],[115,166,75,-4.990022914400992],[115,166,76,-4.99101225708447],[115,166,77,-4.995844616277541],[115,166,78,-4.993867993320334],[115,166,79,-4.984784864295447],[115,167,64,-5.150650658618718],[115,167,65,-5.153033578803887],[115,167,66,-5.144282163003351],[115,167,67,-5.131541499596898],[115,167,68,-5.118218922772821],[115,167,69,-5.102117512890107],[115,167,70,-5.088857675352357],[115,167,71,-5.081813930259713],[115,167,72,-5.076234296458297],[115,167,73,-5.064140702796529],[115,167,74,-5.048570806641647],[115,167,75,-5.036991663487737],[115,167,76,-5.039811423627418],[115,167,77,-5.048269537981641],[115,167,78,-5.044849070888268],[115,167,79,-5.034017326631488],[115,168,64,-5.1978914775458875],[115,168,65,-5.202424736479711],[115,168,66,-5.191181660182345],[115,168,67,-5.17600312159366],[115,168,68,-5.166614254394994],[115,168,69,-5.148918538369614],[115,168,70,-5.1322044112242775],[115,168,71,-5.125991804504482],[115,168,72,-5.120216847141596],[115,168,73,-5.108782292606108],[115,168,74,-5.093675840076902],[115,168,75,-5.084057229768421],[115,168,76,-5.086840323690021],[115,168,77,-5.094957571909855],[115,168,78,-5.092642797592634],[115,168,79,-5.081247977887824],[115,169,64,-5.256610825822851],[115,169,65,-5.259754730928125],[115,169,66,-5.2507662066761345],[115,169,67,-5.234099692223817],[115,169,68,-5.222989304530587],[115,169,69,-5.207071472061996],[115,169,70,-5.191036133018942],[115,169,71,-5.180450526238131],[115,169,72,-5.167280907405343],[115,169,73,-5.154017030222148],[115,169,74,-5.139385378168783],[115,169,75,-5.130243263797712],[115,169,76,-5.135372987325639],[115,169,77,-5.1477595944208545],[115,169,78,-5.141939561295093],[115,169,79,-5.128821095391416],[115,170,64,-5.310572880107057],[115,170,65,-5.310634326383964],[115,170,66,-5.301469846979905],[115,170,67,-5.285994393084013],[115,170,68,-5.274894912200441],[115,170,69,-5.2605878195042],[115,170,70,-5.24613251625135],[115,170,71,-5.237530923251571],[115,170,72,-5.220787996359325],[115,170,73,-5.205181514281314],[115,170,74,-5.188370774993587],[115,170,75,-5.180521310339591],[115,170,76,-5.186987019126655],[115,170,77,-5.2007378295024855],[115,170,78,-5.192324092143672],[115,170,79,-5.176575508129495],[115,171,64,-5.356134574750466],[115,171,65,-5.356042699286299],[115,171,66,-5.350065858453779],[115,171,67,-5.334868910641242],[115,171,68,-5.3246141393003015],[115,171,69,-5.309962380329903],[115,171,70,-5.296952061158003],[115,171,71,-5.287381113765544],[115,171,72,-5.268212594678197],[115,171,73,-5.252065269007046],[115,171,74,-5.234488322116323],[115,171,75,-5.228432546466331],[115,171,76,-5.235884264822256],[115,171,77,-5.251286391579823],[115,171,78,-5.229074232577617],[115,171,79,-5.216240466518778],[115,172,64,-5.404473464238269],[115,172,65,-5.406216467857746],[115,172,66,-5.400213501977345],[115,172,67,-5.387657974343199],[115,172,68,-5.3779773885010815],[115,172,69,-5.363214238802791],[115,172,70,-5.350444783151315],[115,172,71,-5.33992264046351],[115,172,72,-5.319452541255063],[115,172,73,-5.3045578677466425],[115,172,74,-5.289076616945996],[115,172,75,-5.28251291509776],[115,172,76,-5.2884478699688025],[115,172,77,-5.303873404531061],[115,172,78,-5.26322294851481],[115,172,79,-5.242540658454934],[115,173,64,-5.449658838341052],[115,173,65,-5.453193811715026],[115,173,66,-5.449020113588902],[115,173,67,-5.435386836963244],[115,173,68,-5.423898550818887],[115,173,69,-5.410160185646735],[115,173,70,-5.397159024229649],[115,173,71,-5.384530052234428],[115,173,72,-5.366140848733061],[115,173,73,-5.352544299826999],[115,173,74,-5.337900462696843],[115,173,75,-5.328590072091995],[115,173,76,-5.334721768008789],[115,173,77,-5.34400119922589],[115,173,78,-5.308377671437804],[115,173,79,-5.286113223068757],[115,174,64,-5.492787072212271],[115,174,65,-5.498711311587872],[115,174,66,-5.493708411546747],[115,174,67,-5.483396791042915],[115,174,68,-5.4701061995997255],[115,174,69,-5.456900567757783],[115,174,70,-5.4435005113600035],[115,174,71,-5.428033892771338],[115,174,72,-5.413510397786616],[115,174,73,-5.398341492527458],[115,174,74,-5.384924807658191],[115,174,75,-5.374485835616806],[115,174,76,-5.380593950776425],[115,174,77,-5.389669032941203],[115,174,78,-5.358710885140721],[115,174,79,-5.332534033175074],[115,175,64,-5.531042060460385],[115,175,65,-5.534736585997851],[115,175,66,-5.530870946686454],[115,175,67,-5.523023964424397],[115,175,68,-5.511667329363411],[115,175,69,-5.499184513260724],[115,175,70,-5.486246584148536],[115,175,71,-5.471526817664153],[115,175,72,-5.458765540656571],[115,175,73,-5.443176707873827],[115,175,74,-5.432472882613594],[115,175,75,-5.422990632266065],[115,175,76,-5.430377838979403],[115,175,77,-5.45071229389386],[115,175,78,-5.461841754061987],[115,175,79,-5.433920900480802],[115,176,64,-5.573750545935075],[115,176,65,-5.576271508168419],[115,176,66,-5.573278628706753],[115,176,67,-5.5652270288080565],[115,176,68,-5.558241564973929],[115,176,69,-5.54493970020237],[115,176,70,-5.532599129673419],[115,176,71,-5.517198604014758],[115,176,72,-5.502610601899924],[115,176,73,-5.490720609465451],[115,176,74,-5.478714938795901],[115,176,75,-5.469908281315267],[115,176,76,-5.479886952208358],[115,176,77,-5.498548147731607],[115,176,78,-5.511140299469303],[115,176,79,-5.479595024464264],[115,177,64,-5.622018234921826],[115,177,65,-5.625287721436361],[115,177,66,-5.622373759062263],[115,177,67,-5.614391627960812],[115,177,68,-5.608597432765515],[115,177,69,-5.599136095407326],[115,177,70,-5.585506382409316],[115,177,71,-5.56766779888605],[115,177,72,-5.54829919096821],[115,177,73,-5.534970751190348],[115,177,74,-5.526931169036027],[115,177,75,-5.516822276660695],[115,177,76,-5.529462769800841],[115,177,77,-5.5507430511058855],[115,177,78,-5.565275653316759],[115,177,79,-5.5542796615396055],[115,178,64,-5.671475920404434],[115,178,65,-5.674984971495096],[115,178,66,-5.6704392076579255],[115,178,67,-5.665511868590411],[115,178,68,-5.659558158848102],[115,178,69,-5.650005905666838],[115,178,70,-5.636095272218733],[115,178,71,-5.618208939850526],[115,178,72,-5.5998625442696435],[115,178,73,-5.585210244758626],[115,178,74,-5.575762269845219],[115,178,75,-5.567731260318084],[115,178,76,-5.581608038383684],[115,178,77,-5.604928053641866],[115,178,78,-5.617691392391958],[115,178,79,-5.605359866892242],[115,179,64,-5.716282298635296],[115,179,65,-5.720166829410094],[115,179,66,-5.716780006518441],[115,179,67,-5.711833864073408],[115,179,68,-5.707023533862666],[115,179,69,-5.697139177111909],[115,179,70,-5.683115124336538],[115,179,71,-5.665799549909045],[115,179,72,-5.64704577053832],[115,179,73,-5.633058851859693],[115,179,74,-5.619742056888222],[115,179,75,-5.615703155721733],[115,179,76,-5.630861820946936],[115,179,77,-5.653591225824697],[115,179,78,-5.662602924600515],[115,179,79,-5.648429335105609],[115,180,64,-5.754018320123624],[115,180,65,-5.7596855698630245],[115,180,66,-5.758109607443865],[115,180,67,-5.754086516209103],[115,180,68,-5.7495620312842135],[115,180,69,-5.740260347053451],[115,180,70,-5.729447943947501],[115,180,71,-5.7159954698494655],[115,180,72,-5.696869107990155],[115,180,73,-5.680445465663162],[115,180,74,-5.668092805222926],[115,180,75,-5.6663349086085235],[115,180,76,-5.682064828121578],[115,180,77,-5.704267501891799],[115,180,78,-5.712339752823874],[115,180,79,-5.695542061575678],[115,181,64,-5.790479345969697],[115,181,65,-5.794697568602653],[115,181,66,-5.79558188333179],[115,181,67,-5.788027457914565],[115,181,68,-5.78272957003513],[115,181,69,-5.775162499891457],[115,181,70,-5.7663048105500785],[115,181,71,-5.75379050375946],[115,181,72,-5.742038392867472],[115,181,73,-5.726755485081332],[115,181,74,-5.7160401579606885],[115,181,75,-5.716822333901084],[115,181,76,-5.73046377343962],[115,181,77,-5.751909811696841],[115,181,78,-5.756976952194587],[115,181,79,-5.750701865069407],[115,182,64,-5.839431528613597],[115,182,65,-5.840409673755172],[115,182,66,-5.842658127453866],[115,182,67,-5.835021041957592],[115,182,68,-5.829250067672129],[115,182,69,-5.821361858184812],[115,182,70,-5.814123109664707],[115,182,71,-5.798516839454392],[115,182,72,-5.789496379423486],[115,182,73,-5.77551264714731],[115,182,74,-5.764845568957497],[115,182,75,-5.763659703733826],[115,182,76,-5.775700506881143],[115,182,77,-5.7965037270273845],[115,182,78,-5.803354272766977],[115,182,79,-5.796853912151405],[115,183,64,-5.883291527127415],[115,183,65,-5.884416886392551],[115,183,66,-5.886755621774308],[115,183,67,-5.877767997528835],[115,183,68,-5.872085546512743],[115,183,69,-5.864097732554026],[115,183,70,-5.856528056689614],[115,183,71,-5.845439419060573],[115,183,72,-5.8334647760884],[115,183,73,-5.822134582371722],[115,183,74,-5.812560162209585],[115,183,75,-5.809714703130964],[115,183,76,-5.8229861608218245],[115,183,77,-5.842319208361357],[115,183,78,-5.850697961945789],[115,183,79,-5.841499298951438],[115,184,64,-5.930712491128216],[115,184,65,-5.934242573486797],[115,184,66,-5.933597362522758],[115,184,67,-5.922825108136132],[115,184,68,-5.917408089645981],[115,184,69,-5.907690929125237],[115,184,70,-5.900132091916219],[115,184,71,-5.892284580083808],[115,184,72,-5.881175960318249],[115,184,73,-5.86948174892648],[115,184,74,-5.858632093859331],[115,184,75,-5.854707397992229],[115,184,76,-5.86905392619917],[115,184,77,-5.889670777192166],[115,184,78,-5.897989113092997],[115,184,79,-5.8912995950951705],[115,185,64,-5.97934541450935],[115,185,65,-5.9816752223028145],[115,185,66,-5.9808223367767255],[115,185,67,-5.969279252223252],[115,185,68,-5.962993464940788],[115,185,69,-5.954856916000956],[115,185,70,-5.947435788625126],[115,185,71,-5.938797033144929],[115,185,72,-5.928180855226018],[115,185,73,-5.917283606810209],[115,185,74,-5.905793851949925],[115,185,75,-5.900072479864972],[115,185,76,-5.912641715863346],[115,185,77,-5.932542567611056],[115,185,78,-5.939494959871665],[115,185,79,-5.932801513231202],[115,186,64,-6.030960525435208],[115,186,65,-6.034428922344645],[115,186,66,-6.033456402748812],[115,186,67,-6.023442064579986],[115,186,68,-6.014041237642165],[115,186,69,-6.008094659339778],[115,186,70,-6.002268929938286],[115,186,71,-5.990687870949312],[115,186,72,-5.981115856320471],[115,186,73,-5.967295761483592],[115,186,74,-5.954169871887249],[115,186,75,-5.948684118628442],[115,186,76,-5.961049172649728],[115,186,77,-5.979384828728971],[115,186,78,-5.986703771230951],[115,186,79,-5.978571698789831],[115,187,64,-6.078045460415553],[115,187,65,-6.082724619241915],[115,187,66,-6.080879992050736],[115,187,67,-6.072863224632665],[115,187,68,-6.064255127797417],[115,187,69,-6.0579399921934165],[115,187,70,-6.052756041783117],[115,187,71,-6.044224201927731],[115,187,72,-6.0289354484993085],[115,187,73,-6.010900190885683],[115,187,74,-5.999594117499763],[115,187,75,-5.993465936458756],[115,187,76,-6.010558574784578],[115,187,77,-6.029301189960781],[115,187,78,-6.0387893937468675],[115,187,79,-6.032179120685576],[115,188,64,-6.137305296936959],[115,188,65,-6.137398553716243],[115,188,66,-6.135631040448027],[115,188,67,-6.124602243007636],[115,188,68,-6.113543849303993],[115,188,69,-6.10401866471503],[115,188,70,-6.0994126054641375],[115,188,71,-6.092290463925073],[115,188,72,-6.073398915620793],[115,188,73,-6.0549527562579595],[115,188,74,-6.041893077273298],[115,188,75,-6.03747974349862],[115,188,76,-6.055500080830723],[115,188,77,-6.073397186373047],[115,188,78,-6.085270607871972],[115,188,79,-6.080503942193347],[115,189,64,-6.181752781638197],[115,189,65,-6.185699722027571],[115,189,66,-6.189239023937245],[115,189,67,-6.183901219668438],[115,189,68,-6.175039862657438],[115,189,69,-6.163735559684337],[115,189,70,-6.156169371916074],[115,189,71,-6.144516591890554],[115,189,72,-6.124076854979494],[115,189,73,-6.105160986849876],[115,189,74,-6.090451724980064],[115,189,75,-6.081830508627087],[115,189,76,-6.0971867440163985],[115,189,77,-6.11423872174859],[115,189,78,-6.124947405035233],[115,189,79,-6.119353849588951],[115,190,64,-6.229835476870475],[115,190,65,-6.2381072612631625],[115,190,66,-6.239259290370859],[115,190,67,-6.234926474156949],[115,190,68,-6.223296654269916],[115,190,69,-6.212275097564701],[115,190,70,-6.201938457180575],[115,190,71,-6.189169500211261],[115,190,72,-6.171059040991627],[115,190,73,-6.152100813275852],[115,190,74,-6.1376124459765595],[115,190,75,-6.130002063248446],[115,190,76,-6.143094242501068],[115,190,77,-6.1602779199201425],[115,190,78,-6.168246892677206],[115,190,79,-6.163683382760438],[115,191,64,-6.2779436821500125],[115,191,65,-6.285981879694298],[115,191,66,-6.289062828836834],[115,191,67,-6.281401190049262],[115,191,68,-6.2671411952695415],[115,191,69,-6.256022318322489],[115,191,70,-6.2461273053003685],[115,191,71,-6.23530296195408],[115,191,72,-6.218178053058251],[115,191,73,-6.197795663773683],[115,191,74,-6.184028565500305],[115,191,75,-6.175722550327292],[115,191,76,-6.186248975942665],[115,191,77,-6.204645650305384],[115,191,78,-6.2123607558253156],[115,191,79,-6.204251010878359],[115,192,64,-6.329141732807128],[115,192,65,-6.335459490983565],[115,192,66,-6.335802060203962],[115,192,67,-6.328723953157271],[115,192,68,-6.313920246453434],[115,192,69,-6.302810645380322],[115,192,70,-6.29208517796811],[115,192,71,-6.281297406147326],[115,192,72,-6.262467014063327],[115,192,73,-6.244662619632103],[115,192,74,-6.2315253701680895],[115,192,75,-6.2226148648675075],[115,192,76,-6.232227445695041],[115,192,77,-6.253051727095838],[115,192,78,-6.2553296040219974],[115,192,79,-6.247562213183191],[115,193,64,-6.386332715581138],[115,193,65,-6.38813059316925],[115,193,66,-6.379495761703806],[115,193,67,-6.365267654887957],[115,193,68,-6.349078840347791],[115,193,69,-6.338835153168113],[115,193,70,-6.3289542078102325],[115,193,71,-6.319537944347309],[115,193,72,-6.304653459196189],[115,193,73,-6.289346522520133],[115,193,74,-6.27457238294625],[115,193,75,-6.265386414700179],[115,193,76,-6.271677818314711],[115,193,77,-6.29403591534074],[115,193,78,-6.303322345229009],[115,193,79,-6.300334617322862],[115,194,64,-6.438885145689262],[115,194,65,-6.441490508464958],[115,194,66,-6.430606272016063],[115,194,67,-6.412883210451857],[115,194,68,-6.397296436775062],[115,194,69,-6.386820739404071],[115,194,70,-6.379040042418561],[115,194,71,-6.368465541211827],[115,194,72,-6.353282107577799],[115,194,73,-6.336590942114225],[115,194,74,-6.321545870093177],[115,194,75,-6.3121940888693935],[115,194,76,-6.318035828296889],[115,194,77,-6.341091390917054],[115,194,78,-6.352345649123714],[115,194,79,-6.346383782286243],[115,195,64,-6.490770224886244],[115,195,65,-6.4909919712072925],[115,195,66,-6.476347866993006],[115,195,67,-6.4590103902286655],[115,195,68,-6.442736475384496],[115,195,69,-6.432837924357409],[115,195,70,-6.4244421445098805],[115,195,71,-6.412411693476316],[115,195,72,-6.3967065664214955],[115,195,73,-6.381011814633203],[115,195,74,-6.366028844620986],[115,195,75,-6.355292614691534],[115,195,76,-6.362586739011446],[115,195,77,-6.387299791063213],[115,195,78,-6.401623801750256],[115,195,79,-6.3962325106723075],[115,196,64,-6.5305211805186465],[115,196,65,-6.526980432878732],[115,196,66,-6.512294289729155],[115,196,67,-6.491090110484476],[115,196,68,-6.472074746687795],[115,196,69,-6.458501327374321],[115,196,70,-6.446768558074456],[115,196,71,-6.435284020557584],[115,196,72,-6.417953633631145],[115,196,73,-6.404228488357116],[115,196,74,-6.387655452605282],[115,196,75,-6.37765177386952],[115,196,76,-6.384593324801015],[115,196,77,-6.416026607224841],[115,196,78,-6.430461565090059],[115,196,79,-6.427170627513509],[115,197,64,-6.57927073232013],[115,197,65,-6.574674960994643],[115,197,66,-6.559597208111975],[115,197,67,-6.538433599854856],[115,197,68,-6.519779817106667],[115,197,69,-6.501677496946766],[115,197,70,-6.4881695685639995],[115,197,71,-6.475756186452921],[115,197,72,-6.459541254653748],[115,197,73,-6.44705037304804],[115,197,74,-6.431479076073857],[115,197,75,-6.42059695357223],[115,197,76,-6.426839603730959],[115,197,77,-6.457491174743163],[115,197,78,-6.471980484526404],[115,197,79,-6.468319480001363],[115,198,64,-6.627971443230785],[115,198,65,-6.621740820399966],[115,198,66,-6.608568600701382],[115,198,67,-6.583684874564416],[115,198,68,-6.566593321499601],[115,198,69,-6.545446177692338],[115,198,70,-6.529274578817083],[115,198,71,-6.515961744537924],[115,198,72,-6.502727172866873],[115,198,73,-6.489970706427079],[115,198,74,-6.476269726239286],[115,198,75,-6.465563883510305],[115,198,76,-6.472339013093508],[115,198,77,-6.5022132695783945],[115,198,78,-6.5170845030784506],[115,198,79,-6.5156697617454125],[115,199,64,-6.675889747965496],[115,199,65,-6.669565223070874],[115,199,66,-6.654800925162739],[115,199,67,-6.628888626947121],[115,199,68,-6.608485755527415],[115,199,69,-6.58900094695061],[115,199,70,-6.573621852948006],[115,199,71,-6.560342338096185],[115,199,72,-6.549256388556909],[115,199,73,-6.534843422453577],[115,199,74,-6.521021479857077],[115,199,75,-6.511287343945983],[115,199,76,-6.51962806828727],[115,199,77,-6.545023398276132],[115,199,78,-6.555656828738935],[115,199,79,-6.557679140534625],[115,200,64,-6.726211354986624],[115,200,65,-6.718838173517521],[115,200,66,-6.701905460651029],[115,200,67,-6.676163272307677],[115,200,68,-6.653880805105634],[115,200,69,-6.63322402145734],[115,200,70,-6.617421409795022],[115,200,71,-6.606138512307019],[115,200,72,-6.595089807906046],[115,200,73,-6.581716987697222],[115,200,74,-6.56292093227453],[115,200,75,-6.553354047634312],[115,200,76,-6.563914889081502],[115,200,77,-6.590816847116649],[115,200,78,-6.605775325341242],[115,200,79,-6.605281447967549],[115,201,64,-6.766035852611004],[115,201,65,-6.759819826314245],[115,201,66,-6.7449586526594185],[115,201,67,-6.718844977050347],[115,201,68,-6.695864819147456],[115,201,69,-6.674366568416256],[115,201,70,-6.658562554556994],[115,201,71,-6.649083616123791],[115,201,72,-6.637558000248307],[115,201,73,-6.625805812905475],[115,201,74,-6.607427959502584],[115,201,75,-6.598128777010262],[115,201,76,-6.606044310349181],[115,201,77,-6.633151429608436],[115,201,78,-6.638848565330455],[115,201,79,-6.63204688051284],[115,202,64,-6.820474427275335],[115,202,65,-6.812533028232788],[115,202,66,-6.799725190361749],[115,202,67,-6.77407092125204],[115,202,68,-6.747677009684421],[115,202,69,-6.725235566501562],[115,202,70,-6.70884192747663],[115,202,71,-6.6976898894900785],[115,202,72,-6.685409825597326],[115,202,73,-6.674827280750633],[115,202,74,-6.657098991915957],[115,202,75,-6.646491970768114],[115,202,76,-6.65281901868928],[115,202,77,-6.680302353320901],[115,202,78,-6.684778216071494],[115,202,79,-6.683190399469716],[115,203,64,-6.869505388977108],[115,203,65,-6.862197339792299],[115,203,66,-6.848270044986708],[115,203,67,-6.821388373173732],[115,203,68,-6.796842124824359],[115,203,69,-6.772508119562507],[115,203,70,-6.753942140624961],[115,203,71,-6.742457521083802],[115,203,72,-6.73084873898906],[115,203,73,-6.718883594257823],[115,203,74,-6.702511619593592],[115,203,75,-6.691557962331373],[115,203,76,-6.699017564814364],[115,203,77,-6.728737281422671],[115,203,78,-6.734836842446787],[115,203,79,-6.73564462035771],[115,204,64,-6.919310276024698],[115,204,65,-6.9119456444559635],[115,204,66,-6.8949848644515574],[115,204,67,-6.867786608369824],[115,204,68,-6.83779611581274],[115,204,69,-6.813674687464229],[115,204,70,-6.795979974968371],[115,204,71,-6.780506003145705],[115,204,72,-6.767597574708337],[115,204,73,-6.756146473701948],[115,204,74,-6.739284165057954],[115,204,75,-6.730048829026423],[115,204,76,-6.742725350087105],[115,204,77,-6.770172282578673],[115,204,78,-6.7833832723084635],[115,204,79,-6.785846227215245],[115,205,64,-6.977664603199397],[115,205,65,-6.970811194665244],[115,205,66,-6.952803665703139],[115,205,67,-6.9260681719051505],[115,205,68,-6.897224279588332],[115,205,69,-6.872892180222402],[115,205,70,-6.852331191264971],[115,205,71,-6.83407927553581],[115,205,72,-6.816905074169416],[115,205,73,-6.802411154029684],[115,205,74,-6.784561194596472],[115,205,75,-6.776384589015683],[115,205,76,-6.787863865597424],[115,205,77,-6.8190723855219755],[115,205,78,-6.836286594011675],[115,205,79,-6.836064476419207],[115,206,64,-7.026637440275086],[115,206,65,-7.019918042468801],[115,206,66,-7.000003743739785],[115,206,67,-6.971794509622974],[115,206,68,-6.9458874740381145],[115,206,69,-6.918050430425162],[115,206,70,-6.896610402864428],[115,206,71,-6.8809140733066885],[115,206,72,-6.863164305789255],[115,206,73,-6.847614924433716],[115,206,74,-6.831147531049191],[115,206,75,-6.823202854380055],[115,206,76,-6.834647826339884],[115,206,77,-6.867942415840892],[115,206,78,-6.883812771080675],[115,206,79,-6.890034904799733],[115,207,64,-7.079524684034027],[115,207,65,-7.0684796895614905],[115,207,66,-7.048396477520376],[115,207,67,-7.021019819672232],[115,207,68,-6.993426815238446],[115,207,69,-6.965326195864554],[115,207,70,-6.944769364701875],[115,207,71,-6.927699358192913],[115,207,72,-6.909197673351432],[115,207,73,-6.892827956092969],[115,207,74,-6.877893023401601],[115,207,75,-6.868813037340124],[115,207,76,-6.880164469124015],[115,207,77,-6.910706054312113],[115,207,78,-6.924543970471474],[115,207,79,-6.929186823768756],[115,208,64,-7.13208932279922],[115,208,65,-7.118956076787118],[115,208,66,-7.097934578967552],[115,208,67,-7.068003953567249],[115,208,68,-7.0397140026101175],[115,208,69,-7.011345708564693],[115,208,70,-6.991219011216966],[115,208,71,-6.970772311696745],[115,208,72,-6.9547760877789075],[115,208,73,-6.940681066417739],[115,208,74,-6.924634149969208],[115,208,75,-6.914329261349383],[115,208,76,-6.926221375410156],[115,208,77,-6.964944744853757],[115,208,78,-6.9868958495442355],[115,208,79,-6.991195364030962],[115,209,64,-7.181910178354835],[115,209,65,-7.1702925956091725],[115,209,66,-7.146254499510598],[115,209,67,-7.116439240963758],[115,209,68,-7.086508735423682],[115,209,69,-7.058584373166358],[115,209,70,-7.037039978188383],[115,209,71,-7.014735141726386],[115,209,72,-7.001924295826477],[115,209,73,-6.987486871915463],[115,209,74,-6.970613462808859],[115,209,75,-6.960613314408193],[115,209,76,-6.973007721298877],[115,209,77,-7.010478239597997],[115,209,78,-7.035224344282426],[115,209,79,-7.0369202042622625],[115,210,64,-7.235971004238302],[115,210,65,-7.223719640596782],[115,210,66,-7.2002799023763915],[115,210,67,-7.167787119365395],[115,210,68,-7.139433339862237],[115,210,69,-7.110277760487915],[115,210,70,-7.086360814809114],[115,210,71,-7.066011464288868],[115,210,72,-7.053219978950554],[115,210,73,-7.037744044290656],[115,210,74,-7.020828046534927],[115,210,75,-7.010741108981662],[115,210,76,-7.019359142098733],[115,210,77,-7.056774725007412],[115,210,78,-7.084889879723333],[115,210,79,-7.082251442002998],[115,211,64,-7.2849043289490485],[115,211,65,-7.270770663864614],[115,211,66,-7.247578646502667],[115,211,67,-7.215074324027669],[115,211,68,-7.1884037954149225],[115,211,69,-7.158317162097459],[115,211,70,-7.135480924818075],[115,211,71,-7.117354972006161],[115,211,72,-7.101512397597364],[115,211,73,-7.083157100474606],[115,211,74,-7.068569620106575],[115,211,75,-7.0580760655546175],[115,211,76,-7.071483636012905],[115,211,77,-7.111689676006879],[115,211,78,-7.142421789146825],[115,211,79,-7.142182327014813],[115,212,64,-7.3165701293061],[115,212,65,-7.306750230242095],[115,212,66,-7.287031261646784],[115,212,67,-7.261761064962402],[115,212,68,-7.239081873627728],[115,212,69,-7.216567829373582],[115,212,70,-7.197350458639702],[115,212,71,-7.18149345979246],[115,212,72,-7.166354626833599],[115,212,73,-7.145724826036636],[115,212,74,-7.12834276310493],[115,212,75,-7.120701148728832],[115,212,76,-7.133135957076042],[115,212,77,-7.165364665079136],[115,212,78,-7.190939997046848],[115,212,79,-7.194192216981121],[115,213,64,-7.3663105871366],[115,213,65,-7.353935720251857],[115,213,66,-7.326445738674558],[115,213,67,-7.296608071508155],[115,213,68,-7.27486792845665],[115,213,69,-7.2527287547691355],[115,213,70,-7.236839388343812],[115,213,71,-7.226512865455493],[115,213,72,-7.215586882274051],[115,213,73,-7.200404007615502],[115,213,74,-7.183937395631905],[115,213,75,-7.1747878256791235],[115,213,76,-7.192369447440093],[115,213,77,-7.223119539023705],[115,213,78,-7.241524671756974],[115,213,79,-7.242973195069885],[115,214,64,-7.412874636707685],[115,214,65,-7.398844783433481],[115,214,66,-7.373236485803832],[115,214,67,-7.344838790500229],[115,214,68,-7.322404853944365],[115,214,69,-7.30064155884386],[115,214,70,-7.281642420970442],[115,214,71,-7.271236532909885],[115,214,72,-7.260718749503755],[115,214,73,-7.249312492327323],[115,214,74,-7.23072302265794],[115,214,75,-7.221998425631372],[115,214,76,-7.242995835899663],[115,214,77,-7.27354482417272],[115,214,78,-7.291122494633562],[115,214,79,-7.288370921193195],[115,215,64,-7.460489067409055],[115,215,65,-7.448087107348839],[115,215,66,-7.4233519896834945],[115,215,67,-7.3946670917830355],[115,215,68,-7.372340911567905],[115,215,69,-7.349212696944807],[115,215,70,-7.329586895843044],[115,215,71,-7.318161449664095],[115,215,72,-7.30687797008379],[115,215,73,-7.294388713480003],[115,215,74,-7.275696157525811],[115,215,75,-7.267508840207383],[115,215,76,-7.285844760923579],[115,215,77,-7.312368562148289],[115,215,78,-7.32992545560377],[115,215,79,-7.330380808197519],[115,216,64,-7.505950552338315],[115,216,65,-7.493729325473533],[115,216,66,-7.46734949841816],[115,216,67,-7.440729278487221],[115,216,68,-7.419131681466163],[115,216,69,-7.397766089124367],[115,216,70,-7.379182971735564],[115,216,71,-7.36538183395732],[115,216,72,-7.3506652489272675],[115,216,73,-7.337762758633361],[115,216,74,-7.319997890339176],[115,216,75,-7.312530500980066],[115,216,76,-7.326775152819765],[115,216,77,-7.350068199900102],[115,216,78,-7.369493331782103],[115,216,79,-7.3725423906775935],[115,217,64,-7.542416381850284],[115,217,65,-7.535083697917964],[115,217,66,-7.518570852381286],[115,217,67,-7.495745424740471],[115,217,68,-7.473857592858339],[115,217,69,-7.455106726299479],[115,217,70,-7.435010840237501],[115,217,71,-7.414174550899776],[115,217,72,-7.391631348532984],[115,217,73,-7.3715659308358585],[115,217,74,-7.352288104098129],[115,217,75,-7.3444813597727645],[115,217,76,-7.3630065460964085],[115,217,77,-7.39137828190131],[115,217,78,-7.415496207700907],[115,217,79,-7.420284484658243],[115,218,64,-7.591320500507543],[115,218,65,-7.584554509361945],[115,218,66,-7.568410269363327],[115,218,67,-7.5490990911442175],[115,218,68,-7.523603009740699],[115,218,69,-7.504391171292117],[115,218,70,-7.484568195669665],[115,218,71,-7.464837283128489],[115,218,72,-7.438772427148778],[115,218,73,-7.415915941951813],[115,218,74,-7.398586314620174],[115,218,75,-7.385638851757073],[115,218,76,-7.405989691409747],[115,218,77,-7.442934881788503],[115,218,78,-7.469189551253749],[115,218,79,-7.474650334306211],[115,219,64,-7.63684287154876],[115,219,65,-7.629246773296867],[115,219,66,-7.616171689940627],[115,219,67,-7.59579875666679],[115,219,68,-7.571950072691004],[115,219,69,-7.550169874620391],[115,219,70,-7.529505055409013],[115,219,71,-7.509423699284794],[115,219,72,-7.48461875897515],[115,219,73,-7.462111385025885],[115,219,74,-7.442450794943812],[115,219,75,-7.4310295328037315],[115,219,76,-7.453588710497635],[115,219,77,-7.498029031776981],[115,219,78,-7.52790362812125],[115,219,79,-7.5307427965131035],[115,220,64,-7.6847830810362785],[115,220,65,-7.675712014337922],[115,220,66,-7.660619895671401],[115,220,67,-7.635938154580644],[115,220,68,-7.612446548370952],[115,220,69,-7.587054682844316],[115,220,70,-7.563957149903185],[115,220,71,-7.539236967354788],[115,220,72,-7.516928361124466],[115,220,73,-7.494569637342566],[115,220,74,-7.4753385311959555],[115,220,75,-7.472390299994362],[115,220,76,-7.503307345274048],[115,220,77,-7.554905266304653],[115,220,78,-7.594203888775884],[115,220,79,-7.598626710727347],[115,221,64,-7.730388457551635],[115,221,65,-7.72225360190311],[115,221,66,-7.70809022203978],[115,221,67,-7.683094108036584],[115,221,68,-7.6599007868350455],[115,221,69,-7.631188337077586],[115,221,70,-7.6063536146120825],[115,221,71,-7.581669696037432],[115,221,72,-7.560022450058552],[115,221,73,-7.5385562277486216],[115,221,74,-7.543673069712578],[115,221,75,-7.559816270789151],[115,221,76,-7.587923535720698],[115,221,77,-7.639823071456256],[115,221,78,-7.661575073914849],[115,221,79,-7.64840683422388],[115,222,64,-7.775466168619962],[115,222,65,-7.767429952550202],[115,222,66,-7.753125874015861],[115,222,67,-7.730309742625447],[115,222,68,-7.704297547108591],[115,222,69,-7.675263809879513],[115,222,70,-7.649120664148426],[115,222,71,-7.625724298111914],[115,222,72,-7.601912389334743],[115,222,73,-7.581520879413447],[115,222,74,-7.601173768775011],[115,222,75,-7.6165156270649375],[115,222,76,-7.641460785311601],[115,222,77,-7.698596724039637],[115,222,78,-7.70658477761874],[115,222,79,-7.692942307898196],[115,223,64,-7.823252650963204],[115,223,65,-7.816565784889716],[115,223,66,-7.803235444129768],[115,223,67,-7.779138578908056],[115,223,68,-7.747708143478126],[115,223,69,-7.721639352730216],[115,223,70,-7.695258104350469],[115,223,71,-7.672298914218987],[115,223,72,-7.6478978653986225],[115,223,73,-7.624002428580773],[115,223,74,-7.666553316134168],[115,223,75,-7.689340597696671],[115,223,76,-7.704928987718025],[115,223,77,-7.744439706063878],[115,223,78,-7.752579440951827],[115,223,79,-7.738035324500508],[115,224,64,-7.867510293239118],[115,224,65,-7.863380646109767],[115,224,66,-7.848602070046158],[115,224,67,-7.822592067614235],[115,224,68,-7.791667817838157],[115,224,69,-7.763125866517452],[115,224,70,-7.740536506949197],[115,224,71,-7.717188105327909],[115,224,72,-7.691433113125832],[115,224,73,-7.680331542927417],[115,224,74,-7.7220779593825295],[115,224,75,-7.747481837783973],[115,224,76,-7.760246124365064],[115,224,77,-7.790747116634748],[115,224,78,-7.797759462002209],[115,224,79,-7.787399828638877],[115,225,64,-7.922553095062371],[115,225,65,-7.915436058715652],[115,225,66,-7.900132621839556],[115,225,67,-7.867286776833385],[115,225,68,-7.837151624694446],[115,225,69,-7.805338041432319],[115,225,70,-7.784438603877994],[115,225,71,-7.764145674331682],[115,225,72,-7.740700744638628],[115,225,73,-7.744749008422829],[115,225,74,-7.776111646929396],[115,225,75,-7.801786908912974],[115,225,76,-7.818974719081989],[115,225,77,-7.838946312290811],[115,225,78,-7.845613699786614],[115,225,79,-7.836926677179945],[115,226,64,-7.972749345840089],[115,226,65,-7.967549699623166],[115,226,66,-7.953239757989254],[115,226,67,-7.919115840623917],[115,226,68,-7.887409742687866],[115,226,69,-7.856311531443793],[115,226,70,-7.83089601775347],[115,226,71,-7.809630542659295],[115,226,72,-7.789218187033598],[115,226,73,-7.7889176816820145],[115,226,74,-7.806947286567542],[115,226,75,-7.840789727496328],[115,226,76,-7.863766042824723],[115,226,77,-7.888401815083182],[115,226,78,-7.896089673398595],[115,226,79,-7.884446573347454],[115,227,64,-8.020179609457694],[115,227,65,-8.01363877988759],[115,227,66,-8.00014439034172],[115,227,67,-7.9679427017805935],[115,227,68,-7.933434067432705],[115,227,69,-7.9018218405357485],[115,227,70,-7.8749530715251606],[115,227,71,-7.853057481421376],[115,227,72,-7.833520871516845],[115,227,73,-7.836750927952738],[115,227,74,-7.859080114560935],[115,227,75,-7.895509027710214],[115,227,76,-7.914483995715529],[115,227,77,-7.945484166153057],[115,227,78,-7.954416454481977],[115,227,79,-7.942467480941749],[115,228,64,-8.056881070270371],[115,228,65,-8.047534203531315],[115,228,66,-8.032617106779137],[115,228,67,-8.001981034475461],[115,228,68,-7.9690616490547],[115,228,69,-7.935102258091529],[115,228,70,-7.905482071256397],[115,228,71,-7.883033557112099],[115,228,72,-7.863923821912884],[115,228,73,-7.862244987732248],[115,228,74,-7.891465281110268],[115,228,75,-7.928379605111027],[115,228,76,-7.954073339880232],[115,228,77,-7.987761511243931],[115,228,78,-8.00168424917369],[115,228,79,-7.988882919106952],[115,229,64,-8.092258856618306],[115,229,65,-8.086381682464959],[115,229,66,-8.071820322200473],[115,229,67,-8.046172738203403],[115,229,68,-8.016006386100717],[115,229,69,-7.9788526951025025],[115,229,70,-7.949440125458281],[115,229,71,-7.922190615535004],[115,229,72,-7.900245676176866],[115,229,73,-7.93556993317572],[115,229,74,-7.98165446107157],[115,229,75,-8.002529161896401],[115,229,76,-8.015051565406843],[115,229,77,-8.036112985177448],[115,229,78,-8.051080814038972],[115,229,79,-8.039853439307326],[115,230,64,-8.137469413228729],[115,230,65,-8.134594348574984],[115,230,66,-8.118264884296138],[115,230,67,-8.089186903137561],[115,230,68,-8.06179338224016],[115,230,69,-8.026324010196593],[115,230,70,-7.992961260819388],[115,230,71,-7.965688010727002],[115,230,72,-7.944420636902119],[115,230,73,-7.9631644117106575],[115,230,74,-8.02647990673619],[115,230,75,-8.053495368683823],[115,230,76,-8.062935287572794],[115,230,77,-8.085306319343767],[115,230,78,-8.098211598739386],[115,230,79,-8.088977491567432],[115,231,64,-8.191541394120216],[115,231,65,-8.187564067695899],[115,231,66,-8.17076326238341],[115,231,67,-8.139596814620168],[115,231,68,-8.109502695414884],[115,231,69,-8.073426350852834],[115,231,70,-8.04354442706911],[115,231,71,-8.015678679637627],[115,231,72,-7.993023287704615],[115,231,73,-7.967856053548805],[115,231,74,-8.021916525635039],[115,231,75,-8.060213012891182],[115,231,76,-8.105204518689508],[115,231,77,-8.128623055031554],[115,231,78,-8.14274439299471],[115,231,79,-8.133209719770944],[115,232,64,-8.239172219443805],[115,232,65,-8.234692599190748],[115,232,66,-8.21809336919104],[115,232,67,-8.186683469511774],[115,232,68,-8.153993517575183],[115,232,69,-8.12071268652133],[115,232,70,-8.091970642116657],[115,232,71,-8.064098584586105],[115,232,72,-8.040498281998387],[115,232,73,-8.014006044519848],[115,232,74,-8.06988630265644],[115,232,75,-8.112789401796018],[115,232,76,-8.14468108865628],[115,232,77,-8.17799166750797],[115,232,78,-8.18924598586458],[115,232,79,-8.178129665439437],[115,233,64,-8.289851743688343],[115,233,65,-8.283674378364426],[115,233,66,-8.26463336102987],[115,233,67,-8.231766972630313],[115,233,68,-8.199778955717377],[115,233,69,-8.169543802541194],[115,233,70,-8.142308209707924],[115,233,71,-8.112290604945407],[115,233,72,-8.087434888706925],[115,233,73,-8.059967508424712],[115,233,74,-8.117059972477819],[115,233,75,-8.162192868133747],[115,233,76,-8.191146383609384],[115,233,77,-8.22936116941544],[115,233,78,-8.24104546464658],[115,233,79,-8.231040438870997],[115,234,64,-8.34466114820354],[115,234,65,-8.336254093874258],[115,234,66,-8.315509158412128],[115,234,67,-8.280578288209638],[115,234,68,-8.252103064871525],[115,234,69,-8.220342165114698],[115,234,70,-8.195248146908765],[115,234,71,-8.164413226229824],[115,234,72,-8.136631390160893],[115,234,73,-8.107421829545443],[115,234,74,-8.143228674985956],[115,234,75,-8.186377476097045],[115,234,76,-8.227971340493951],[115,234,77,-8.276066439712393],[115,234,78,-8.290670361805677],[115,234,79,-8.281580502778004],[115,235,64,-8.393726360240645],[115,235,65,-8.385636232332246],[115,235,66,-8.365716522367018],[115,235,67,-8.328650882850283],[115,235,68,-8.300363016161642],[115,235,69,-8.268552049655103],[115,235,70,-8.240645471138748],[115,235,71,-8.210724080364137],[115,235,72,-8.182465722406791],[115,235,73,-8.155675557915165],[115,235,74,-8.135572699929067],[115,235,75,-8.122463168754132],[115,235,76,-8.171355518097243],[115,235,77,-8.224406963301922],[115,235,78,-8.304450620601624],[115,235,79,-8.336681017642736],[115,236,64,-8.457172514728281],[115,236,65,-8.45030668582276],[115,236,66,-8.43015539830202],[115,236,67,-8.394968024504166],[115,236,68,-8.364121338878858],[115,236,69,-8.33104940148494],[115,236,70,-8.301627770311326],[115,236,71,-8.272679409048056],[115,236,72,-8.242775771151821],[115,236,73,-8.218981857858974],[115,236,74,-8.200103592193477],[115,236,75,-8.188020427532454],[115,236,76,-8.240077972105356],[115,236,77,-8.294345258837895],[115,236,78,-8.365413899519133],[115,236,79,-8.390803274558872],[115,237,64,-8.513928405362764],[115,237,65,-8.500104818676204],[115,237,66,-8.474825099820697],[115,237,67,-8.435838910307249],[115,237,68,-8.402358811334748],[115,237,69,-8.37124473048019],[115,237,70,-8.338298492433477],[115,237,71,-8.31235868169474],[115,237,72,-8.283144553355408],[115,237,73,-8.261715689559603],[115,237,74,-8.242825199758638],[115,237,75,-8.260068284938603],[115,237,76,-8.319600203753312],[115,237,77,-8.382549217797068],[115,237,78,-8.447934739803934],[115,237,79,-8.436860863929358],[115,238,64,-8.56387809094354],[115,238,65,-8.54718712973667],[115,238,66,-8.523437768977331],[115,238,67,-8.483214286417308],[115,238,68,-8.452759289255116],[115,238,69,-8.421715535322951],[115,238,70,-8.385292266366298],[115,238,71,-8.356809071787621],[115,238,72,-8.329616119391254],[115,238,73,-8.31035609628948],[115,238,74,-8.314611905231502],[115,238,75,-8.326315338069923],[115,238,76,-8.396850692750425],[115,238,77,-8.46963244326697],[115,238,78,-8.492134566171192],[115,238,79,-8.482736057503024],[115,239,64,-8.616195070300861],[115,239,65,-8.60150894214717],[115,239,66,-8.576256008558314],[115,239,67,-8.538207065005826],[115,239,68,-8.506695504177397],[115,239,69,-8.472446232242172],[115,239,70,-8.437282798010497],[115,239,71,-8.406007807208985],[115,239,72,-8.37890306804336],[115,239,73,-8.360042158081278],[115,239,74,-8.347430015431602],[115,239,75,-8.352294971445279],[115,239,76,-8.416979997717366],[115,239,77,-8.497844523742527],[115,239,78,-8.535660321933058],[115,239,79,-8.52683827336386],[115,240,64,-8.663258633551644],[115,240,65,-8.647486573143034],[115,240,66,-8.621040551449042],[115,240,67,-8.585983276367815],[115,240,68,-8.552169528862134],[115,240,69,-8.520161061187622],[115,240,70,-8.486048002081956],[115,240,71,-8.452626911156388],[115,240,72,-8.427548713103421],[115,240,73,-8.412298221688214],[115,240,74,-8.392932354491592],[115,240,75,-8.39371371453963],[115,240,76,-8.450506719566265],[115,240,77,-8.538666141453508],[115,240,78,-8.583278665272424],[115,240,79,-8.572648987383864],[115,241,64,-8.702562940248836],[115,241,65,-8.693268151981773],[115,241,66,-8.671475266665047],[115,241,67,-8.643053076868556],[115,241,68,-8.61053855638892],[115,241,69,-8.57604697413517],[115,241,70,-8.544180467134717],[115,241,71,-8.513232659450534],[115,241,72,-8.488228698919523],[115,241,73,-8.472100457916323],[115,241,74,-8.45089023606386],[115,241,75,-8.431856073318743],[115,241,76,-8.437366585839499],[115,241,77,-8.454187615103123],[115,241,78,-8.459546693052902],[115,241,79,-8.505358915070172],[115,242,64,-8.754488613275903],[115,242,65,-8.74236720083446],[115,242,66,-8.722696769726975],[115,242,67,-8.695453938865707],[115,242,68,-8.661778547744696],[115,242,69,-8.625490278355834],[115,242,70,-8.595488144466218],[115,242,71,-8.566115746631985],[115,242,72,-8.538865972388894],[115,242,73,-8.522074672253016],[115,242,74,-8.500706412085094],[115,242,75,-8.484637816941547],[115,242,76,-8.49137367540127],[115,242,77,-8.509006914470453],[115,242,78,-8.513133104494592],[115,242,79,-8.563420803772157],[115,243,64,-8.799066646392347],[115,243,65,-8.787193667551731],[115,243,66,-8.768777926722235],[115,243,67,-8.73993017066761],[115,243,68,-8.709214460049438],[115,243,69,-8.675648956201158],[115,243,70,-8.644098366538042],[115,243,71,-8.614004575578338],[115,243,72,-8.58451760374381],[115,243,73,-8.567698834681789],[115,243,74,-8.54564570476431],[115,243,75,-8.533433240327863],[115,243,76,-8.539065363661674],[115,243,77,-8.558720184191491],[115,243,78,-8.563921851399575],[115,243,79,-8.630832591509229],[115,244,64,-8.832551309511],[115,244,65,-8.825207685353448],[115,244,66,-8.811707579053062],[115,244,67,-8.782951926529588],[115,244,68,-8.754080206471265],[115,244,69,-8.723807781965576],[115,244,70,-8.693421763255312],[115,244,71,-8.66479370308783],[115,244,72,-8.636526171653532],[115,244,73,-8.61643188183438],[115,244,74,-8.596666872961569],[115,244,75,-8.587109076485202],[115,244,76,-8.591585554070244],[115,244,77,-8.613631836193461],[115,244,78,-8.62190709177743],[115,244,79,-8.681796859834094],[115,245,64,-8.87385107223124],[115,245,65,-8.868032876957328],[115,245,66,-8.855917915132245],[115,245,67,-8.829115891547032],[115,245,68,-8.798825248430138],[115,245,69,-8.771295896808958],[115,245,70,-8.740592739141047],[115,245,71,-8.715023640326937],[115,245,72,-8.68652968864582],[115,245,73,-8.66470607657215],[115,245,74,-8.643712366093133],[115,245,75,-8.635074733446586],[115,245,76,-8.642757516072264],[115,245,77,-8.663305676194051],[115,245,78,-8.671633046463214],[115,245,79,-8.730874984328823],[115,246,64,-8.91769877964395],[115,246,65,-8.910806405778684],[115,246,66,-8.89820616648823],[115,246,67,-8.873292292492884],[115,246,68,-8.844763279105308],[115,246,69,-8.816172827839722],[115,246,70,-8.786214010457973],[115,246,71,-8.763542796353505],[115,246,72,-8.734274116499973],[115,246,73,-8.710699989720606],[115,246,74,-8.69013128232477],[115,246,75,-8.681184755939954],[115,246,76,-8.692236362096647],[115,246,77,-8.7126873677091],[115,246,78,-8.720729804550565],[115,246,79,-8.788571520771146],[115,247,64,-8.971888809502774],[115,247,65,-8.961820894240306],[115,247,66,-8.94609917243735],[115,247,67,-8.917491079515843],[115,247,68,-8.89109547470736],[115,247,69,-8.865578834040026],[115,247,70,-8.839668172856749],[115,247,71,-8.810538393854927],[115,247,72,-8.78094754798417],[115,247,73,-8.757159569146042],[115,247,74,-8.736721110878415],[115,247,75,-8.726800118539389],[115,247,76,-8.734576476921799],[115,247,77,-8.759855924358579],[115,247,78,-8.766025449392641],[115,247,79,-8.821718885332132],[115,248,64,-9.018618237802052],[115,248,65,-9.008803555732081],[115,248,66,-8.990978120830835],[115,248,67,-8.960353590329268],[115,248,68,-8.93347396745125],[115,248,69,-8.911866405794067],[115,248,70,-8.88615906780212],[115,248,71,-8.856471067873512],[115,248,72,-8.824906916542819],[115,248,73,-8.802159543566587],[115,248,74,-8.784235210555297],[115,248,75,-8.771701195917144],[115,248,76,-8.78041729955078],[115,248,77,-8.80636872246583],[115,248,78,-8.81286951254332],[115,248,79,-8.874541175595441],[115,249,64,-9.057123053677463],[115,249,65,-9.045857830883646],[115,249,66,-9.024523519409293],[115,249,67,-8.994329244867577],[115,249,68,-8.967445118875684],[115,249,69,-8.948402824513412],[115,249,70,-8.921966568677762],[115,249,71,-8.893095548916989],[115,249,72,-8.862943913391014],[115,249,73,-8.837358897304279],[115,249,74,-8.820444415472084],[115,249,75,-8.80802151157639],[115,249,76,-8.819205746707636],[115,249,77,-8.848968229862319],[115,249,78,-8.869255369646218],[115,249,79,-8.95670247872502],[115,250,64,-9.10830450030684],[115,250,65,-9.092210360899092],[115,250,66,-9.073598654119841],[115,250,67,-9.043135426642456],[115,250,68,-9.01850930028385],[115,250,69,-8.997894203108086],[115,250,70,-8.97106677564675],[115,250,71,-8.944111772883877],[115,250,72,-8.91394670354249],[115,250,73,-8.886786779743908],[115,250,74,-8.867703768920059],[115,250,75,-8.855284158835314],[115,250,76,-8.86755858052338],[115,250,77,-8.898459010225027],[115,250,78,-8.957667976551612],[115,250,79,-9.001787266670634],[115,251,64,-9.154787700050761],[115,251,65,-9.13809544745859],[115,251,66,-9.118082674067747],[115,251,67,-9.09168729352095],[115,251,68,-9.067285478718128],[115,251,69,-9.041918051529969],[115,251,70,-9.015952613764384],[115,251,71,-8.988732029836022],[115,251,72,-8.962041715103847],[115,251,73,-8.934326950819743],[115,251,74,-8.911621462770709],[115,251,75,-8.902097388935337],[115,251,76,-8.913783932500447],[115,251,77,-8.947004193858337],[115,251,78,-8.997470043809637],[115,251,79,-9.049986494092154],[115,252,64,-9.194059644850453],[115,252,65,-9.177957237008151],[115,252,66,-9.154270910844925],[115,252,67,-9.127313346136068],[115,252,68,-9.101600118783779],[115,252,69,-9.073553769382213],[115,252,70,-9.046206797257213],[115,252,71,-9.020808352655687],[115,252,72,-8.99190634630143],[115,252,73,-8.96773820203088],[115,252,74,-8.942572126470282],[115,252,75,-8.93477260373892],[115,252,76,-8.946947327669994],[115,252,77,-8.980129849113576],[115,252,78,-9.036815002883683],[115,252,79,-9.089797456396864],[115,253,64,-9.251497896190468],[115,253,65,-9.237259582091733],[115,253,66,-9.212069172880215],[115,253,67,-9.184016821384636],[115,253,68,-9.156981580261037],[115,253,69,-9.130116940734181],[115,253,70,-9.10549823861695],[115,253,71,-9.080219061118928],[115,253,72,-9.050330237444998],[115,253,73,-9.026372002629136],[115,253,74,-9.000736248069138],[115,253,75,-8.993109126107598],[115,253,76,-9.003832273518947],[115,253,77,-9.029195743171657],[115,253,78,-9.0541205521886],[115,253,79,-9.091257182350438],[115,254,64,-9.21489715026086],[115,254,65,-9.210379465581866],[115,254,66,-9.19089097910672],[115,254,67,-9.17033895840622],[115,254,68,-9.149911630177007],[115,254,69,-9.133204668882241],[115,254,70,-9.115820390826642],[115,254,71,-9.099968825349926],[115,254,72,-9.078415977626998],[115,254,73,-9.063182509207884],[115,254,74,-9.04867651808359],[115,254,75,-9.048403625431073],[115,254,76,-9.069828395594673],[115,254,77,-9.101986535691204],[115,254,78,-9.130919356563606],[115,254,79,-9.16685268204694],[115,255,64,-9.259922012606113],[115,255,65,-9.25424237906667],[115,255,66,-9.236518755720935],[115,255,67,-9.21674004894453],[115,255,68,-9.196810795449316],[115,255,69,-9.17899637362767],[115,255,70,-9.160680289701641],[115,255,71,-9.145681032392307],[115,255,72,-9.127031627682735],[115,255,73,-9.11078953510636],[115,255,74,-9.097797110215703],[115,255,75,-9.095684031552215],[115,255,76,-9.117955944817467],[115,255,77,-9.148705831778162],[115,255,78,-9.167609013063542],[115,255,79,-9.212668210257728],[115,256,64,-9.305413021989567],[115,256,65,-9.298488780551022],[115,256,66,-9.28186570044481],[115,256,67,-9.26352701714097],[115,256,68,-9.24431007310586],[115,256,69,-9.226315701323626],[115,256,70,-9.206934003311838],[115,256,71,-9.191473740470153],[115,256,72,-9.174750826536313],[115,256,73,-9.158860490908877],[115,256,74,-9.144935827149956],[115,256,75,-9.1428859923665],[115,256,76,-9.166018394046176],[115,256,77,-9.197003665200917],[115,256,78,-9.215187614811923],[115,256,79,-9.262556466022186],[115,257,64,-9.351285772657308],[115,257,65,-9.343088009855409],[115,257,66,-9.329207126050779],[115,257,67,-9.310786581274177],[115,257,68,-9.290709857626885],[115,257,69,-9.273542208674554],[115,257,70,-9.25326848146283],[115,257,71,-9.236410715686446],[115,257,72,-9.223932377312169],[115,257,73,-9.208252510183733],[115,257,74,-9.19395311062648],[115,257,75,-9.190962865199225],[115,257,76,-9.212195847620409],[115,257,77,-9.249965701109657],[115,257,78,-9.29899170502619],[115,257,79,-9.347772206352168],[115,258,64,-9.398782171392694],[115,258,65,-9.39221114049419],[115,258,66,-9.380410151709498],[115,258,67,-9.362063084076862],[115,258,68,-9.345288356575164],[115,258,69,-9.323435251300399],[115,258,70,-9.301727053060862],[115,258,71,-9.287169532614906],[115,258,72,-9.272178305709431],[115,258,73,-9.257346523730508],[115,258,74,-9.244717606437975],[115,258,75,-9.241129116743762],[115,258,76,-9.26124077258407],[115,258,77,-9.295173152783267],[115,258,78,-9.356697269828251],[115,258,79,-9.41395581045487],[115,259,64,-9.444156424437542],[115,259,65,-9.438466797170436],[115,259,66,-9.427113992829382],[115,259,67,-9.410382636140616],[115,259,68,-9.391216764935969],[115,259,69,-9.37005331562547],[115,259,70,-9.349810496314635],[115,259,71,-9.332365340350204],[115,259,72,-9.316994692102107],[115,259,73,-9.300257960537952],[115,259,74,-9.290115187207213],[115,259,75,-9.285513636103031],[115,259,76,-9.306426981907277],[115,259,77,-9.341561797708136],[115,259,78,-9.392569662466421],[115,259,79,-9.467960437077624],[115,260,64,-9.550700573240356],[115,260,65,-9.546887274097926],[115,260,66,-9.538965249203246],[115,260,67,-9.527053910339903],[115,260,68,-9.507762547929218],[115,260,69,-9.490151184915737],[115,260,70,-9.473090855016473],[115,260,71,-9.455051947641753],[115,260,72,-9.43852720952581],[115,260,73,-9.42492781929378],[115,260,74,-9.414769957107392],[115,260,75,-9.411169402893288],[115,260,76,-9.428514316904064],[115,260,77,-9.462764482466751],[115,260,78,-9.504597881231577],[115,260,79,-9.544406820107353],[115,261,64,-9.585392850083254],[115,261,65,-9.589250686318355],[115,261,66,-9.588215761999654],[115,261,67,-9.57532397559198],[115,261,68,-9.55863852401734],[115,261,69,-9.54294907272113],[115,261,70,-9.52293611777228],[115,261,71,-9.503097152301338],[115,261,72,-9.479219935935674],[115,261,73,-9.46129731307285],[115,261,74,-9.449946209039268],[115,261,75,-9.446264455629912],[115,261,76,-9.467445440426966],[115,261,77,-9.5078947210128],[115,261,78,-9.57411624598626],[115,261,79,-9.608510492584214],[115,262,64,-9.636235522661508],[115,262,65,-9.63976991887465],[115,262,66,-9.640529432095507],[115,262,67,-9.623984438962264],[115,262,68,-9.608492152639734],[115,262,69,-9.59140676023599],[115,262,70,-9.570405075366594],[115,262,71,-9.5509732103273],[115,262,72,-9.52648911353657],[115,262,73,-9.511731012161052],[115,262,74,-9.497655328894409],[115,262,75,-9.492843243045005],[115,262,76,-9.513307614458435],[115,262,77,-9.552278115205786],[115,262,78,-9.642722191744243],[115,262,79,-9.684156088412335],[115,263,64,-9.680156569325344],[115,263,65,-9.684488310817638],[115,263,66,-9.681926760920394],[115,263,67,-9.665649320017119],[115,263,68,-9.6520209150799],[115,263,69,-9.634654602985195],[115,263,70,-9.612107582045434],[115,263,71,-9.594522317129668],[115,263,72,-9.572841549418834],[115,263,73,-9.557770752724295],[115,263,74,-9.54542059687629],[115,263,75,-9.541714504149578],[115,263,76,-9.560986390913957],[115,263,77,-9.599332041542738],[115,263,78,-9.685454449625439],[115,263,79,-9.72928561015579],[115,264,64,-9.723040373909402],[115,264,65,-9.73041108277294],[115,264,66,-9.724025800518827],[115,264,67,-9.707078291688925],[115,264,68,-9.693378512427596],[115,264,69,-9.676973553179772],[115,264,70,-9.656331496775005],[115,264,71,-9.637721942513465],[115,264,72,-9.618691559331053],[115,264,73,-9.605621941159097],[115,264,74,-9.591102905973425],[115,264,75,-9.588937345053576],[115,264,76,-9.608333476528328],[115,264,77,-9.651157832180118],[115,264,78,-9.738544007088914],[115,264,79,-9.775035256052147],[115,265,64,-9.776743226188868],[115,265,65,-9.777550689213406],[115,265,66,-9.763646331109234],[115,265,67,-9.742849382825659],[115,265,68,-9.726223881830565],[115,265,69,-9.70954306002673],[115,265,70,-9.693530403708854],[115,265,71,-9.680738229203566],[115,265,72,-9.666722413945402],[115,265,73,-9.657554544847054],[115,265,74,-9.655251608530255],[115,265,75,-9.694368619920885],[115,265,76,-9.765641970921248],[115,265,77,-9.818595478419583],[115,265,78,-9.843342393197767],[115,265,79,-9.829750722983931],[115,266,64,-9.825962571651779],[115,266,65,-9.825277782044315],[115,266,66,-9.813566633192764],[115,266,67,-9.789684212310574],[115,266,68,-9.77172498964996],[115,266,69,-9.75570765922138],[115,266,70,-9.741464728094538],[115,266,71,-9.729943525564419],[115,266,72,-9.714771120937458],[115,266,73,-9.705150239276822],[115,266,74,-9.69544646773955],[115,266,75,-9.736273694608407],[115,266,76,-9.810138287412725],[115,266,77,-9.86473231409342],[115,266,78,-9.891336042493712],[115,266,79,-9.877127968496566],[115,267,64,-9.870442591605617],[115,267,65,-9.868337866763218],[115,267,66,-9.856555536276447],[115,267,67,-9.834830218102903],[115,267,68,-9.816850882282981],[115,267,69,-9.799074956723624],[115,267,70,-9.784894390361599],[115,267,71,-9.773000174595161],[115,267,72,-9.758727585349328],[115,267,73,-9.750970200449615],[115,267,74,-9.743577029384129],[115,267,75,-9.786396331989204],[115,267,76,-9.860703200580458],[115,267,77,-9.926107948099935],[115,267,78,-9.944071656252287],[115,267,79,-9.928837535523678],[115,268,64,-9.909347274383398],[115,268,65,-9.907873587500083],[115,268,66,-9.892381501573254],[115,268,67,-9.870043267376069],[115,268,68,-9.847375185787877],[115,268,69,-9.82920198074491],[115,268,70,-9.814146026417179],[115,268,71,-9.8001691058801],[115,268,72,-9.788172240766393],[115,268,73,-9.781784531047787],[115,268,74,-9.773408115211659],[115,268,75,-9.81557380321195],[115,268,76,-9.88480402792128],[115,268,77,-9.952979101662262],[115,268,78,-9.972916932379905],[115,268,79,-9.954747656967347],[115,269,64,-9.951890137666542],[115,269,65,-9.949878164067865],[115,269,66,-9.935855313299404],[115,269,67,-9.913753913757281],[115,269,68,-9.891102737636817],[115,269,69,-9.872524321101716],[115,269,70,-9.85869273323501],[115,269,71,-9.84291805636154],[115,269,72,-9.83159065792016],[115,269,73,-9.824587152657791],[115,269,74,-9.817129457099773],[115,269,75,-9.859381998009201],[115,269,76,-9.935720982086938],[115,269,77,-10.000025005181062],[115,269,78,-10.01818887405284],[115,269,79,-9.998692673033608],[115,270,64,-9.997788710424324],[115,270,65,-9.995466453549836],[115,270,66,-9.981666911311153],[115,270,67,-9.959995810637917],[115,270,68,-9.939778833451516],[115,270,69,-9.921385585226286],[115,270,70,-9.903024327592474],[115,270,71,-9.887933354682676],[115,270,72,-9.874872770701582],[115,270,73,-9.868663134272724],[115,270,74,-9.862223676656475],[115,270,75,-9.899165902242908],[115,270,76,-9.976820379645751],[115,270,77,-10.035920154798232],[115,270,78,-10.053307449479702],[115,270,79,-10.033550275309196],[115,271,64,-10.039419898670184],[115,271,65,-10.037164108730689],[115,271,66,-10.02282311274364],[115,271,67,-10.001764757511053],[115,271,68,-9.982413552033824],[115,271,69,-9.962061329791764],[115,271,70,-9.942519226920057],[115,271,71,-9.929518484352432],[115,271,72,-9.918153194362828],[115,271,73,-9.912279761571519],[115,271,74,-9.905307873537064],[115,271,75,-9.942909900082912],[115,271,76,-10.019629680800804],[115,271,77,-10.08365883032577],[115,271,78,-10.095156092379694],[115,271,79,-10.077709647791512],[115,272,64,-10.083136703678974],[115,272,65,-10.078773433957917],[115,272,66,-10.06572545464928],[115,272,67,-10.044346958600961],[115,272,68,-10.022961579058503],[115,272,69,-10.003282205221321],[115,272,70,-9.98612795645546],[115,272,71,-9.97056232145379],[115,272,72,-9.9603050899524],[115,272,73,-9.95767966590889],[115,272,74,-9.94547263864582],[115,272,75,-9.992126540173006],[115,272,76,-10.069364166017992],[115,272,77,-10.130029893658472],[115,272,78,-10.138902732311484],[115,272,79,-10.12115826968384],[115,273,64,-10.129445695587846],[115,273,65,-10.122191215241548],[115,273,66,-10.103383423083171],[115,273,67,-10.079512289908694],[115,273,68,-10.057119098132306],[115,273,69,-10.039070294810704],[115,273,70,-10.024862047775814],[115,273,71,-10.008835200093227],[115,273,72,-10.000319842581192],[115,273,73,-9.99748732782564],[115,273,74,-9.985938520729515],[115,273,75,-10.001769160433724],[115,273,76,-10.036754489440035],[115,273,77,-10.07147940952206],[115,273,78,-10.081979226787702],[115,273,79,-10.066342974480433],[115,274,64,-10.174414418854932],[115,274,65,-10.16935829998581],[115,274,66,-10.149588800411465],[115,274,67,-10.126382599326512],[115,274,68,-10.104077532372479],[115,274,69,-10.085317468825162],[115,274,70,-10.069317171763448],[115,274,71,-10.055705639650778],[115,274,72,-10.045675971302321],[115,274,73,-10.040140020793947],[115,274,74,-10.033556822753267],[115,274,75,-10.047970856731524],[115,274,76,-10.081257150017317],[115,274,77,-10.11317496353866],[115,274,78,-10.12335882708882],[115,274,79,-10.10850224230794],[115,275,64,-10.2189380856939],[115,275,65,-10.215822060074379],[115,275,66,-10.195598468605517],[115,275,67,-10.170399624779602],[115,275,68,-10.14892013853468],[115,275,69,-10.128808411595655],[115,275,70,-10.114388524046898],[115,275,71,-10.102718921867933],[115,275,72,-10.089577827809569],[115,275,73,-10.084309142711701],[115,275,74,-10.077674052884223],[115,275,75,-10.096243237104375],[115,275,76,-10.131094845914816],[115,275,77,-10.160699789898445],[115,275,78,-10.172095924270792],[115,275,79,-10.157937996714661],[115,276,64,-10.253290878016562],[115,276,65,-10.249890304189009],[115,276,66,-10.231257056874309],[115,276,67,-10.203562415650435],[115,276,68,-10.180207328704318],[115,276,69,-10.163372860635661],[115,276,70,-10.147095772625555],[115,276,71,-10.134923150452687],[115,276,72,-10.122452604941369],[115,276,73,-10.115612140132423],[115,276,74,-10.108455573242596],[115,276,75,-10.139024484018996],[115,276,76,-10.178524433457632],[115,276,77,-10.21005433583969],[115,276,78,-10.221911457644431],[115,276,79,-10.210643065706845],[115,277,64,-10.29006088940519],[115,277,65,-10.292139998274175],[115,277,66,-10.283096806830331],[115,277,67,-10.262868475741584],[115,277,68,-10.238627480963027],[115,277,69,-10.21759646788024],[115,277,70,-10.199623952696147],[115,277,71,-10.183537735477142],[115,277,72,-10.168882334695418],[115,277,73,-10.160765479221412],[115,277,74,-10.155724984455896],[115,277,75,-10.185751751133019],[115,277,76,-10.221937174754638],[115,277,77,-10.252390172083421],[115,277,78,-10.265804353429834],[115,277,79,-10.252890810073808],[115,278,64,-10.337705280112269],[115,278,65,-10.339904549266253],[115,278,66,-10.332495487268707],[115,278,67,-10.313299272872353],[115,278,68,-10.28986056433853],[115,278,69,-10.266179752375134],[115,278,70,-10.244277329342166],[115,278,71,-10.226252383847845],[115,278,72,-10.21117777928847],[115,278,73,-10.205009015597378],[115,278,74,-10.201272169107844],[115,278,75,-10.227324309799263],[115,278,76,-10.260786189679747],[115,278,77,-10.290888756815255],[115,278,78,-10.305162883582222],[115,278,79,-10.290521014082687],[115,279,64,-10.380298745054473],[115,279,65,-10.383902229317096],[115,279,66,-10.376095640292737],[115,279,67,-10.35820071005949],[115,279,68,-10.33686341977965],[115,279,69,-10.312085415057693],[115,279,70,-10.28886260207988],[115,279,71,-10.270723203698152],[115,279,72,-10.254242034625383],[115,279,73,-10.249409351450344],[115,279,74,-10.248465872715135],[115,279,75,-10.271335879619834],[115,279,76,-10.304216945392902],[115,279,77,-10.335826869073824],[115,279,78,-10.346961446554307],[115,279,79,-10.331632397450846],[115,280,64,-10.422538879627222],[115,280,65,-10.426881379502145],[115,280,66,-10.417959523554813],[115,280,67,-10.402478695355],[115,280,68,-10.378963071017353],[115,280,69,-10.356206734823093],[115,280,70,-10.335238380389619],[115,280,71,-10.31750839478687],[115,280,72,-10.302023424452766],[115,280,73,-10.295646997092856],[115,280,74,-10.29269684923894],[115,280,75,-10.318134282802717],[115,280,76,-10.35158601828072],[115,280,77,-10.380445794494845],[115,280,78,-10.394087380719908],[115,280,79,-10.377747557916306],[115,281,64,-10.467903458433117],[115,281,65,-10.470302071735434],[115,281,66,-10.46228424302019],[115,281,67,-10.447161197151793],[115,281,68,-10.424781746025175],[115,281,69,-10.401374125662768],[115,281,70,-10.381550351875083],[115,281,71,-10.364012003944813],[115,281,72,-10.348788603375247],[115,281,73,-10.341619338490464],[115,281,74,-10.337808071374274],[115,281,75,-10.376379090806907],[115,281,76,-10.40553650108281],[115,281,77,-10.434638229278278],[115,281,78,-10.448002585984957],[115,281,79,-10.432147023573908],[115,282,64,-10.513598764635764],[115,282,65,-10.518244579204739],[115,282,66,-10.50997260231322],[115,282,67,-10.494200337000741],[115,282,68,-10.472172794218663],[115,282,69,-10.44761300034262],[115,282,70,-10.431025334104413],[115,282,71,-10.41294935784754],[115,282,72,-10.396527827068944],[115,282,73,-10.390140328461396],[115,282,74,-10.383080472711892],[115,282,75,-10.418679272838233],[115,282,76,-10.456775772918808],[115,282,77,-10.485075423988082],[115,282,78,-10.497411242201702],[115,282,79,-10.48331083418529],[115,283,64,-10.55937134999066],[115,283,65,-10.564653590493673],[115,283,66,-10.557709906462481],[115,283,67,-10.537646294790024],[115,283,68,-10.513991442543837],[115,283,69,-10.493836601678877],[115,283,70,-10.478036033062725],[115,283,71,-10.460235900656095],[115,283,72,-10.442913389643197],[115,283,73,-10.435307612831506],[115,283,74,-10.42728420843001],[115,283,75,-10.46608271295245],[115,283,76,-10.505682117832716],[115,283,77,-10.534227951910461],[115,283,78,-10.545937817756348],[115,283,79,-10.535901432614196],[115,284,64,-10.625604781122062],[115,284,65,-10.627090132451356],[115,284,66,-10.617691212624672],[115,284,67,-10.596796792415919],[115,284,68,-10.571507517490785],[115,284,69,-10.5505007162905],[115,284,70,-10.536258984316023],[115,284,71,-10.517059573064667],[115,284,72,-10.49969268178692],[115,284,73,-10.492579480429594],[115,284,74,-10.484945684358001],[115,284,75,-10.516049208529822],[115,284,76,-10.551109539372066],[115,284,77,-10.579972787729822],[115,284,78,-10.594375258277811],[115,284,79,-10.582156689185714],[115,285,64,-10.682244702681139],[115,285,65,-10.680213945923185],[115,285,66,-10.669992053562984],[115,285,67,-10.648247134161847],[115,285,68,-10.624787663304765],[115,285,69,-10.604916025010791],[115,285,70,-10.588551678067532],[115,285,71,-10.567756923708199],[115,285,72,-10.552030283033274],[115,285,73,-10.547474282088206],[115,285,74,-10.538034816144284],[115,285,75,-10.563186094417688],[115,285,76,-10.59570148868138],[115,285,77,-10.622913117375223],[115,285,78,-10.638240943245533],[115,285,79,-10.626597098652274],[115,286,64,-10.728659602132154],[115,286,65,-10.728382272249744],[115,286,66,-10.71661370307515],[115,286,67,-10.69467538313052],[115,286,68,-10.670790244137796],[115,286,69,-10.651491682143888],[115,286,70,-10.632320138818885],[115,286,71,-10.614383101577967],[115,286,72,-10.59764979298214],[115,286,73,-10.592957105505093],[115,286,74,-10.58097154319915],[115,286,75,-10.606273711838263],[115,286,76,-10.639193632384293],[115,286,77,-10.670173651891378],[115,286,78,-10.686486312259994],[115,286,79,-10.673918781103001],[115,287,64,-10.771891250779758],[115,287,65,-10.77105841218792],[115,287,66,-10.76093229548978],[115,287,67,-10.737437871097544],[115,287,68,-10.714247129877716],[115,287,69,-10.69650908591283],[115,287,70,-10.675524631082638],[115,287,71,-10.658725241574134],[115,287,72,-10.642458878545321],[115,287,73,-10.638674765472821],[115,287,74,-10.625280992078592],[115,287,75,-10.65001663287857],[115,287,76,-10.680585647447423],[115,287,77,-10.711724424019957],[115,287,78,-10.729624470249835],[115,287,79,-10.717447174692552],[115,288,64,-10.816651869834386],[115,288,65,-10.814971672028728],[115,288,66,-10.80768584945643],[115,288,67,-10.783415312238441],[115,288,68,-10.75656317281786],[115,288,69,-10.740251349549716],[115,288,70,-10.721505774374895],[115,288,71,-10.703806965013749],[115,288,72,-10.686890800983027],[115,288,73,-10.680364754815095],[115,288,74,-10.668968710598756],[115,288,75,-10.695017522777212],[115,288,76,-10.726369798956444],[115,288,77,-10.756267997011623],[115,288,78,-10.775625017008789],[115,288,79,-10.764101417441685],[115,289,64,-10.851874329962033],[115,289,65,-10.850795370765159],[115,289,66,-10.841791757863184],[115,289,67,-10.818978722846062],[115,289,68,-10.794175245555476],[115,289,69,-10.774236404179627],[115,289,70,-10.755601520650481],[115,289,71,-10.737428739026333],[115,289,72,-10.71936039409991],[115,289,73,-10.710986515179362],[115,289,74,-10.713148809352168],[115,289,75,-10.758015721363744],[115,289,76,-10.780035358793997],[115,289,77,-10.81121469745276],[115,289,78,-10.82795645726121],[115,289,79,-10.813925929807242],[115,290,64,-10.89854727241547],[115,290,65,-10.898790860771228],[115,290,66,-10.887648035275136],[115,290,67,-10.861859137386716],[115,290,68,-10.840834176177085],[115,290,69,-10.820546434900264],[115,290,70,-10.802208987041507],[115,290,71,-10.784103676310728],[115,290,72,-10.76622368572077],[115,290,73,-10.75669018147876],[115,290,74,-10.751255021912373],[115,290,75,-10.79353280883481],[115,290,76,-10.819228698964002],[115,290,77,-10.849456583397457],[115,290,78,-10.867591082743083],[115,290,79,-10.852112682700216],[115,291,64,-10.94263799412174],[115,291,65,-10.943111046653385],[115,291,66,-10.931338112788703],[115,291,67,-10.9044569028483],[115,291,68,-10.883507789419228],[115,291,69,-10.862425158952814],[115,291,70,-10.844753949684446],[115,291,71,-10.827625322925076],[115,291,72,-10.81084697836786],[115,291,73,-10.801457866315127],[115,291,74,-10.798698914332714],[115,291,75,-10.854430910090809],[115,291,76,-10.868188432891701],[115,291,77,-10.897653428718245],[115,291,78,-10.918607028636654],[115,291,79,-10.901466730678433],[115,292,64,-10.972337049677419],[115,292,65,-10.977357006691973],[115,292,66,-10.97026194196483],[115,292,67,-10.947534072499353],[115,292,68,-10.929127691299188],[115,292,69,-10.911189918728537],[115,292,70,-10.894421842157469],[115,292,71,-10.87715420512678],[115,292,72,-10.862712130910914],[115,292,73,-10.853607618154237],[115,292,74,-10.850426327818102],[115,292,75,-10.894321960487975],[115,292,76,-10.909759886036118],[115,292,77,-10.93942902947277],[115,292,78,-10.958319923664964],[115,292,79,-10.944980607068906],[115,293,64,-11.01812031462056],[115,293,65,-11.021374173286032],[115,293,66,-11.01476145045409],[115,293,67,-10.9953301218226],[115,293,68,-10.976035055166212],[115,293,69,-10.95803870351203],[115,293,70,-10.939258330564014],[115,293,71,-10.919921750073064],[115,293,72,-10.906077985456337],[115,293,73,-10.898667165198319],[115,293,74,-10.89771659597332],[115,293,75,-10.936580100251037],[115,293,76,-10.954827672320874],[115,293,77,-10.984081674147136],[115,293,78,-11.000122506867545],[115,293,79,-10.987680825987171],[115,294,64,-11.063592559351312],[115,294,65,-11.065567435505363],[115,294,66,-11.060102362802851],[115,294,67,-11.041699777765492],[115,294,68,-11.023250976112244],[115,294,69,-11.004094428119439],[115,294,70,-10.983647840418666],[115,294,71,-10.963879891849766],[115,294,72,-10.948288986703018],[115,294,73,-10.942485323270914],[115,294,74,-10.942084796660215],[115,294,75,-10.983852537354284],[115,294,76,-11.011673646171024],[115,294,77,-11.042464185214387],[115,294,78,-11.056289622097482],[115,294,79,-11.043601396533111],[115,295,64,-11.110640442490041],[115,295,65,-11.109488080209623],[115,295,66,-11.104956678494167],[115,295,67,-11.089132742329632],[115,295,68,-11.068406942059841],[115,295,69,-11.046698658574302],[115,295,70,-11.027036021283575],[115,295,71,-11.008809997980753],[115,295,72,-10.994144589018095],[115,295,73,-10.98718921686825],[115,295,74,-10.978985728225329],[115,295,75,-10.981429042392634],[115,295,76,-11.040335943529838],[115,295,77,-11.088392417275116],[115,295,78,-11.10094752516829],[115,295,79,-11.083644063011144],[115,296,64,-11.157023002464102],[115,296,65,-11.156136533519017],[115,296,66,-11.149340826802822],[115,296,67,-11.136481493354237],[115,296,68,-11.112010660149496],[115,296,69,-11.093237514035899],[115,296,70,-11.072316420565219],[115,296,71,-11.054753326580132],[115,296,72,-11.037969686996973],[115,296,73,-11.030615594864967],[115,296,74,-11.025363107379253],[115,296,75,-11.02426341547045],[115,296,76,-11.082924230284283],[115,296,77,-11.1335893804372],[115,296,78,-11.148846762828951],[115,296,79,-11.12854383364553],[115,297,64,-11.20213006765282],[115,297,65,-11.203517417880976],[115,297,66,-11.202547601707682],[115,297,67,-11.187599460960742],[115,297,68,-11.16581893840502],[115,297,69,-11.1475804614233],[115,297,70,-11.127495363154486],[115,297,71,-11.105801146458656],[115,297,72,-11.082281844709987],[115,297,73,-11.069220106417765],[115,297,74,-11.063465854025637],[115,297,75,-11.069081582329206],[115,297,76,-11.138827467840125],[115,297,77,-11.187578969802614],[115,297,78,-11.202521887185357],[115,297,79,-11.181861372570395],[115,298,64,-11.248112166865331],[115,298,65,-11.251620119009097],[115,298,66,-11.248842480550703],[115,298,67,-11.233101600513255],[115,298,68,-11.211509747679006],[115,298,69,-11.19250181369026],[115,298,70,-11.17375599007814],[115,298,71,-11.15341046410303],[115,298,72,-11.129867959765466],[115,298,73,-11.117286716162173],[115,298,74,-11.107283680568717],[115,298,75,-11.107884433496126],[115,298,76,-11.158372206480362],[115,298,77,-11.23424090300889],[115,298,78,-11.247192609671673],[115,298,79,-11.229040389917076],[115,299,64,-11.29510018590281],[115,299,65,-11.297348760682027],[115,299,66,-11.293267760148582],[115,299,67,-11.274764446477505],[115,299,68,-11.251941614503764],[115,299,69,-11.2361237027783],[115,299,70,-11.219305403625778],[115,299,71,-11.19781373208956],[115,299,72,-11.176991225046995],[115,299,73,-11.163588659285553],[115,299,74,-11.15254345113993],[115,299,75,-11.152841859572233],[115,299,76,-11.19897237079291],[115,299,77,-11.28255263630947],[115,299,78,-11.29691733028514],[115,299,79,-11.280957010701957],[115,300,64,-11.342934650087692],[115,300,65,-11.341562708215978],[115,300,66,-11.328293360815776],[115,300,67,-11.30807205594179],[115,300,68,-11.28334202461357],[115,300,69,-11.264471210998268],[115,300,70,-11.252258304211113],[115,300,71,-11.23698025494781],[115,300,72,-11.220953271114459],[115,300,73,-11.211480403239],[115,300,74,-11.202750768423655],[115,300,75,-11.199242412073032],[115,300,76,-11.22128339240629],[115,300,77,-11.259118405094654],[115,300,78,-11.28690667989929],[115,300,79,-11.295996408351284],[115,301,64,-11.389572918079404],[115,301,65,-11.385818245504947],[115,301,66,-11.37302223067795],[115,301,67,-11.35263832464302],[115,301,68,-11.327596749973065],[115,301,69,-11.309126820732324],[115,301,70,-11.2955739664275],[115,301,71,-11.280215690485477],[115,301,72,-11.263833237733145],[115,301,73,-11.255118149855024],[115,301,74,-11.24634168106144],[115,301,75,-11.242142429176324],[115,301,76,-11.265427168074194],[115,301,77,-11.306672844243726],[115,301,78,-11.332459128540382],[115,301,79,-11.339914945013005],[115,302,64,-11.432042798692084],[115,302,65,-11.432641700592862],[115,302,66,-11.41557327599023],[115,302,67,-11.391793812198996],[115,302,68,-11.37060369839861],[115,302,69,-11.3512247333737],[115,302,70,-11.334834863626162],[115,302,71,-11.319056808134693],[115,302,72,-11.303410693815032],[115,302,73,-11.295546049135313],[115,302,74,-11.28487394437418],[115,302,75,-11.280767084459232],[115,302,76,-11.303441914974586],[115,302,77,-11.348091612674338],[115,302,78,-11.373478442430695],[115,302,79,-11.381569623014778],[115,303,64,-11.477401851229947],[115,303,65,-11.475825713850547],[115,303,66,-11.460934017708174],[115,303,67,-11.436068422228415],[115,303,68,-11.415775441307698],[115,303,69,-11.396295229319472],[115,303,70,-11.37683124361943],[115,303,71,-11.36257282612161],[115,303,72,-11.347195027019277],[115,303,73,-11.336950311828172],[115,303,74,-11.32862983510036],[115,303,75,-11.326856947235092],[115,303,76,-11.348838381238059],[115,303,77,-11.39278110804786],[115,303,78,-11.41867664654034],[115,303,79,-11.425599978376082],[115,304,64,-11.522762840266333],[115,304,65,-11.521448265899474],[115,304,66,-11.507653339477065],[115,304,67,-11.482893066071107],[115,304,68,-11.459576609035935],[115,304,69,-11.441106330063274],[115,304,70,-11.419129139653899],[115,304,71,-11.403722039892893],[115,304,72,-11.391279273932534],[115,304,73,-11.38300248651447],[115,304,74,-11.373591718099581],[115,304,75,-11.372875873405913],[115,304,76,-11.39524816510645],[115,304,77,-11.43903917446264],[115,304,78,-11.463004489543902],[115,304,79,-11.465432617838662],[115,305,64,-11.57132961630295],[115,305,65,-11.56648620449289],[115,305,66,-11.555640688665907],[115,305,67,-11.52983879107668],[115,305,68,-11.505291841420329],[115,305,69,-11.48513446288175],[115,305,70,-11.462983773930535],[115,305,71,-11.448210321175333],[115,305,72,-11.435202847254473],[115,305,73,-11.426703387372168],[115,305,74,-11.417440048269022],[115,305,75,-11.416277861818097],[115,305,76,-11.441041321063363],[115,305,77,-11.484916676862637],[115,305,78,-11.50681206338304],[115,305,79,-11.506848915715842],[115,306,64,-11.619118690246065],[115,306,65,-11.61687559664826],[115,306,66,-11.604479937107344],[115,306,67,-11.57867843985333],[115,306,68,-11.555184244127982],[115,306,69,-11.533016858861869],[115,306,70,-11.509389094936516],[115,306,71,-11.496192928072157],[115,306,72,-11.482081614518515],[115,306,73,-11.472619361404982],[115,306,74,-11.461985587594445],[115,306,75,-11.462164533757788],[115,306,76,-11.488588112079455],[115,306,77,-11.52928144776584],[115,306,78,-11.550875483144472],[115,306,79,-11.544815198063837],[115,307,64,-11.667328099567635],[115,307,65,-11.665107074218117],[115,307,66,-11.653003462289087],[115,307,67,-11.624349712835068],[115,307,68,-11.601378353364183],[115,307,69,-11.577082029805553],[115,307,70,-11.554729514442343],[115,307,71,-11.542435117263185],[115,307,72,-11.530322497020812],[115,307,73,-11.519172874413549],[115,307,74,-11.510528735373082],[115,307,75,-11.507494547084582],[115,307,76,-11.531772054366042],[115,307,77,-11.570382959243585],[115,307,78,-11.594167589310512],[115,307,79,-11.58995610608003],[115,308,64,-11.703096983286564],[115,308,65,-11.702689716025375],[115,308,66,-11.689509179566931],[115,308,67,-11.662344118773872],[115,308,68,-11.638406279428875],[115,308,69,-11.615515811238597],[115,308,70,-11.59440265194156],[115,308,71,-11.583340844886292],[115,308,72,-11.569840066362163],[115,308,73,-11.557421586691662],[115,308,74,-11.54832863354872],[115,308,75,-11.544035364935654],[115,308,76,-11.56846519950056],[115,308,77,-11.608755400732512],[115,308,78,-11.635163100197143],[115,308,79,-11.64878413528478],[115,309,64,-11.750531676863845],[115,309,65,-11.749920848582281],[115,309,66,-11.734686493387581],[115,309,67,-11.70808142344839],[115,309,68,-11.684688189701752],[115,309,69,-11.66001315092126],[115,309,70,-11.640642772995019],[115,309,71,-11.628720308844846],[115,309,72,-11.613852692670866],[115,309,73,-11.602557632237993],[115,309,74,-11.594071648728171],[115,309,75,-11.589455385963284],[115,309,76,-11.61311857435229],[115,309,77,-11.65490888837223],[115,309,78,-11.68184370714514],[115,309,79,-11.683627995566068],[115,310,64,-11.793051880449235],[115,310,65,-11.791074671471826],[115,310,66,-11.776598750476278],[115,310,67,-11.750485118197885],[115,310,68,-11.723763541021388],[115,310,69,-11.698145504433013],[115,310,70,-11.678088941330786],[115,310,71,-11.666403435790908],[115,310,72,-11.652222637995393],[115,310,73,-11.64104574872086],[115,310,74,-11.631546741206837],[115,310,75,-11.626766772340808],[115,310,76,-11.651566911145764],[115,310,77,-11.692808781690243],[115,310,78,-11.719262925893052],[115,310,79,-11.722859601473578],[115,311,64,-11.838011422255159],[115,311,65,-11.837654274664413],[115,311,66,-11.822098363992389],[115,311,67,-11.795577307199943],[115,311,68,-11.766323367016081],[115,311,69,-11.741079848623318],[115,311,70,-11.72458193681464],[115,311,71,-11.71110590602161],[115,311,72,-11.697181880673524],[115,311,73,-11.685863656214893],[115,311,74,-11.677176452339056],[115,311,75,-11.673670766222209],[115,311,76,-11.697956198594902],[115,311,77,-11.740118766377982],[115,311,78,-11.76709848212565],[115,311,79,-11.769792716864162],[115,312,64,-11.873475040936915],[115,312,65,-11.87697349077421],[115,312,66,-11.865183086263748],[115,312,67,-11.839665954996729],[115,312,68,-11.8109300017037],[115,312,69,-11.78332633562532],[115,312,70,-11.770448674189598],[115,312,71,-11.755721986338552],[115,312,72,-11.739972610265118],[115,312,73,-11.729352313331198],[115,312,74,-11.720329607183904],[115,312,75,-11.719043311867377],[115,312,76,-11.744888725477928],[115,312,77,-11.793185344795372],[115,312,78,-11.821720769945046],[115,312,79,-11.819627649245652],[115,313,64,-11.920600861912591],[115,313,65,-11.923974163822255],[115,313,66,-11.912628484612204],[115,313,67,-11.88798401263326],[115,313,68,-11.858463312279785],[115,313,69,-11.830528078216487],[115,313,70,-11.81632029886763],[115,313,71,-11.80193600369041],[115,313,72,-11.78597080347359],[115,313,73,-11.774789788511049],[115,313,74,-11.76168518209554],[115,313,75,-11.761360981285423],[115,313,76,-11.789303704640815],[115,313,77,-11.837423926209562],[115,313,78,-11.867693350086242],[115,313,79,-11.865789581336845],[115,314,64,-11.974659645130783],[115,314,65,-11.975484387896039],[115,314,66,-11.964031714121885],[115,314,67,-11.938525078620977],[115,314,68,-11.907318575565691],[115,314,69,-11.879048942854146],[115,314,70,-11.862570139423667],[115,314,71,-11.849027098267396],[115,314,72,-11.834853150809238],[115,314,73,-11.822417565813383],[115,314,74,-11.80762781414936],[115,314,75,-11.806381758167385],[115,314,76,-11.833930823840983],[115,314,77,-11.882948143471602],[115,314,78,-11.912961483214854],[115,314,79,-11.91262452430301],[115,315,64,-12.023869358342207],[115,315,65,-12.024094026761345],[115,315,66,-12.011724096837286],[115,315,67,-11.982902392193038],[115,315,68,-11.953372021118545],[115,315,69,-11.926901531069138],[115,315,70,-11.907827528719094],[115,315,71,-11.893754689670347],[115,315,72,-11.881781838147834],[115,315,73,-11.868464136332296],[115,315,74,-11.854067674592859],[115,315,75,-11.850398913182731],[115,315,76,-11.88065163936017],[115,315,77,-11.929902167726198],[115,315,78,-11.95798036008826],[115,315,79,-11.960359926596889],[115,316,64,-12.077964574624023],[115,316,65,-12.0770489658877],[115,316,66,-12.063751532432896],[115,316,67,-12.033993386673613],[115,316,68,-12.00124822489986],[115,316,69,-11.973079460560596],[115,316,70,-11.95125518559029],[115,316,71,-11.938457640976567],[115,316,72,-11.92519892553175],[115,316,73,-11.908695097539383],[115,316,74,-11.897190738365703],[115,316,75,-11.893735024308626],[115,316,76,-11.923335028751127],[115,316,77,-11.96851237943804],[115,316,78,-11.997466124993668],[115,316,79,-11.996971216195522],[115,317,64,-12.1268974995125],[115,317,65,-12.121747790859041],[115,317,66,-12.11062622180819],[115,317,67,-12.080015162647403],[115,317,68,-12.047032004149134],[115,317,69,-12.020993038782027],[115,317,70,-11.998903990416133],[115,317,71,-11.984979665836597],[115,317,72,-11.971089037796409],[115,317,73,-11.954205125072624],[115,317,74,-11.941004863387796],[115,317,75,-11.94032633773664],[115,317,76,-11.968625675427107],[115,317,77,-12.012930560243158],[115,317,78,-12.043334393347799],[115,317,79,-12.045213942160093],[115,318,64,-12.167913266980596],[115,318,65,-12.161171376086857],[115,318,66,-12.14821815812625],[115,318,67,-12.115887281587131],[115,318,68,-12.084645092107731],[115,318,69,-12.057639186375674],[115,318,70,-12.037068764579999],[115,318,71,-12.021823063299234],[115,318,72,-12.006412414948954],[115,318,73,-11.992580851525437],[115,318,74,-11.97857398589852],[115,318,75,-11.978176387053171],[115,318,76,-12.003971350884932],[115,318,77,-12.050523344893536],[115,318,78,-12.081983208476647],[115,318,79,-12.082595090702682],[115,319,64,-12.216626570051577],[115,319,65,-12.209350074167348],[115,319,66,-12.192073384375135],[115,319,67,-12.158982260524144],[115,319,68,-12.131805246922992],[115,319,69,-12.103824758217039],[115,319,70,-12.081992622937884],[115,319,71,-12.066478209569299],[115,319,72,-12.050368747949916],[115,319,73,-12.038251028424027],[115,319,74,-12.024755478242435],[115,319,75,-12.024010557960052],[115,319,76,-12.048914263046601],[115,319,77,-12.096257564357726],[115,319,78,-12.129347268876383],[115,319,79,-12.12244141194014],[116,-64,64,22.859195143752512],[116,-64,65,22.924895477867803],[116,-64,66,22.97524312190423],[116,-64,67,23.005006975773277],[116,-64,68,23.019308661757112],[116,-64,69,23.03443861343523],[116,-64,70,23.05468467398628],[116,-64,71,23.080381870368686],[116,-64,72,23.111970420712215],[116,-64,73,23.169845939164567],[116,-64,74,23.23046735469773],[116,-64,75,23.282739312300357],[116,-64,76,23.349473833142817],[116,-64,77,23.443310732742567],[116,-64,78,23.536620158540217],[116,-64,79,23.605849468218953],[116,-63,64,22.66546257201253],[116,-63,65,22.73427366078088],[116,-63,66,22.78469994913118],[116,-63,67,22.8139917347226],[116,-63,68,22.8313803807311],[116,-63,69,22.846933486802076],[116,-63,70,22.867784271570944],[116,-63,71,22.890773219119065],[116,-63,72,22.92649288899352],[116,-63,73,22.983100764820097],[116,-63,74,23.04112037634544],[116,-63,75,23.092887025410207],[116,-63,76,23.16193788423822],[116,-63,77,23.256965207829612],[116,-63,78,23.352634306558635],[116,-63,79,23.421494064505577],[116,-62,64,22.478354813847886],[116,-62,65,22.5466886582838],[116,-62,66,22.600189680954863],[116,-62,67,22.62696524864269],[116,-62,68,22.646454173591984],[116,-62,69,22.662545220191372],[116,-62,70,22.68304807433408],[116,-62,71,22.70369392161119],[116,-62,72,22.7413235875846],[116,-62,73,22.795870011343183],[116,-62,74,22.853776629486934],[116,-62,75,22.90577990217761],[116,-62,76,22.977658280464084],[116,-62,77,23.0689474049303],[116,-62,78,23.163989351059094],[116,-62,79,23.231457466014252],[116,-61,64,22.285326972374452],[116,-61,65,22.35462317106253],[116,-61,66,22.40773671172188],[116,-61,67,22.434450883149626],[116,-61,68,22.453821322729905],[116,-61,69,22.47097584048492],[116,-61,70,22.491074010388935],[116,-61,71,22.513477764879575],[116,-61,72,22.552227746901483],[116,-61,73,22.60500626980393],[116,-61,74,22.661918566448172],[116,-61,75,22.71679831265896],[116,-61,76,22.788836386487574],[116,-61,77,22.878191666770796],[116,-61,78,22.970485574195617],[116,-61,79,23.03855834278426],[116,-60,64,22.09271085613543],[116,-60,65,22.16407594934579],[116,-60,66,22.217398786989573],[116,-60,67,22.244917444986317],[116,-60,68,22.263304637902028],[116,-60,69,22.27857636558002],[116,-60,70,22.300565074052965],[116,-60,71,22.324270105417146],[116,-60,72,22.362724416158223],[116,-60,73,22.41735028274219],[116,-60,74,22.474800170955334],[116,-60,75,22.530409905136146],[116,-60,76,22.601686488372454],[116,-60,77,22.68839519127283],[116,-60,78,22.781591189594806],[116,-60,79,22.847297388910658],[116,-59,64,21.917424386303463],[116,-59,65,21.98547084403301],[116,-59,66,22.036964649293246],[116,-59,67,22.063735489292853],[116,-59,68,22.079667067847552],[116,-59,69,22.095717989788486],[116,-59,70,22.12072164485393],[116,-59,71,22.142417597991578],[116,-59,72,22.178554001973854],[116,-59,73,22.236388925880565],[116,-59,74,22.294698972798827],[116,-59,75,22.347609193408093],[116,-59,76,22.414587275043917],[116,-59,77,22.50015083091682],[116,-59,78,22.586084463091737],[116,-59,79,22.648025191854085],[116,-58,64,21.731096477137942],[116,-58,65,21.797019397485528],[116,-58,66,21.84678983683581],[116,-58,67,21.875457846614214],[116,-58,68,21.892595457054398],[116,-58,69,21.91000826985754],[116,-58,70,21.934509357118944],[116,-58,71,21.95637354893525],[116,-58,72,21.99211398183171],[116,-58,73,22.050442379197104],[116,-58,74,22.110608671432974],[116,-58,75,22.160141909102446],[116,-58,76,22.225507720003108],[116,-58,77,22.312289858297593],[116,-58,78,22.39614227978683],[116,-58,79,22.459978669156797],[116,-57,64,21.53531149295071],[116,-57,65,21.601201579993226],[116,-57,66,21.652435934193466],[116,-57,67,21.681870884132692],[116,-57,68,21.69869136863313],[116,-57,69,21.718565283587804],[116,-57,70,21.743898908315842],[116,-57,71,21.765302686452983],[116,-57,72,21.801761739284856],[116,-57,73,21.85868239735042],[116,-57,74,21.919923950480776],[116,-57,75,21.972212343563058],[116,-57,76,22.034796637493038],[116,-57,77,22.12174362696555],[116,-57,78,22.20564136994884],[116,-57,79,22.26803030377649],[116,-56,64,21.34626117268662],[116,-56,65,21.411684722432913],[116,-56,66,21.46435611845516],[116,-56,67,21.49343235474766],[116,-56,68,21.50900995402049],[116,-56,69,21.528750043891176],[116,-56,70,21.553830132501737],[116,-56,71,21.576930513375473],[116,-56,72,21.6130911716512],[116,-56,73,21.670262770664362],[116,-56,74,21.733194340339896],[116,-56,75,21.785526033767066],[116,-56,76,21.849508723907697],[116,-56,77,21.935515822168043],[116,-56,78,22.01965989060851],[116,-56,79,22.082265079792524],[116,-55,64,21.1563259554026],[116,-55,65,21.222406286686233],[116,-55,66,21.274592541644196],[116,-55,67,21.30515178303019],[116,-55,68,21.320206992232503],[116,-55,69,21.340481082160323],[116,-55,70,21.364593482149786],[116,-55,71,21.389947853657965],[116,-55,72,21.426614150487293],[116,-55,73,21.48185566931838],[116,-55,74,21.546278170041266],[116,-55,75,21.597981988068508],[116,-55,76,21.66496603813773],[116,-55,77,21.751384817620025],[116,-55,78,21.834184599627847],[116,-55,79,21.89585996660887],[116,-54,64,20.970059358787367],[116,-54,65,21.032266089038735],[116,-54,66,21.085167021435954],[116,-54,67,21.112222187823818],[116,-54,68,21.130922423288606],[116,-54,69,21.149245340311296],[116,-54,70,21.17523953440597],[116,-54,71,21.203097673350893],[116,-54,72,21.238430667529453],[116,-54,73,21.29408008495512],[116,-54,74,21.35709293429791],[116,-54,75,21.410554028445123],[116,-54,76,21.477935949492945],[116,-54,77,21.566108985903455],[116,-54,78,21.648412768607248],[116,-54,79,21.709843461733072],[116,-53,64,20.833846809959873],[116,-53,65,20.83923477611032],[116,-53,66,20.88918720736809],[116,-53,67,20.916997349351167],[116,-53,68,20.93360927328691],[116,-53,69,20.954453291250637],[116,-53,70,20.982621378575345],[116,-53,71,21.011603394773495],[116,-53,72,21.048240642498634],[116,-53,73,21.100809928614623],[116,-53,74,21.164014762244896],[116,-53,75,21.218941826789035],[116,-53,76,21.288987607007765],[116,-53,77,21.375847642155303],[116,-53,78,21.45792399951673],[116,-53,79,21.51864305402404],[116,-52,64,20.67267956942167],[116,-52,65,20.646607164796553],[116,-52,66,20.69570854697086],[116,-52,67,20.722568086672158],[116,-52,68,20.743045522357054],[116,-52,69,20.763744916424134],[116,-52,70,20.79096366473596],[116,-52,71,20.82009962658634],[116,-52,72,20.85926705802229],[116,-52,73,20.913323183562838],[116,-52,74,20.974130730740757],[116,-52,75,21.03193600969022],[116,-52,76,21.102778677389086],[116,-52,77,21.186188847299896],[116,-52,78,21.266913918949715],[116,-52,79,21.329071476499347],[116,-51,64,20.45465082921434],[116,-51,65,20.442550693713766],[116,-51,66,20.484111586403152],[116,-51,67,20.508670898968894],[116,-51,68,20.529986416172815],[116,-51,69,20.54880854251955],[116,-51,70,20.57429465584679],[116,-51,71,20.608017359693708],[116,-51,72,20.64872637908951],[116,-51,73,20.703756801948423],[116,-51,74,20.765732042939305],[116,-51,75,20.825682323443612],[116,-51,76,20.89780222390617],[116,-51,77,20.987486275725825],[116,-51,78,21.075944512787657],[116,-51,79,21.145860319598704],[116,-50,64,20.31498979442033],[116,-50,65,20.25504449284769],[116,-50,66,20.29540237249472],[116,-50,67,20.323041479632504],[116,-50,68,20.344668920180656],[116,-50,69,20.36265755951247],[116,-50,70,20.38623038630384],[116,-50,71,20.418957342439757],[116,-50,72,20.462398916119792],[116,-50,73,20.518342730045042],[116,-50,74,20.580692775825273],[116,-50,75,20.642906666272314],[116,-50,76,20.711448746964006],[116,-50,77,20.799152921456216],[116,-50,78,20.886881751812403],[116,-50,79,20.957346933293977],[116,-49,64,20.137942899941432],[116,-49,65,20.07120181457483],[116,-49,66,20.10198841249457],[116,-49,67,20.13077440019719],[116,-49,68,20.153298156959245],[116,-49,69,20.171531218481704],[116,-49,70,20.19575102865458],[116,-49,71,20.22537638319194],[116,-49,72,20.271305449216424],[116,-49,73,20.328655761519006],[116,-49,74,20.391699753138667],[116,-49,75,20.4526697796631],[116,-49,76,20.51943741471693],[116,-49,77,20.60887381650397],[116,-49,78,20.695546790631496],[116,-49,79,20.768616323095777],[116,-48,64,19.97741236054857],[116,-48,65,19.91754923203281],[116,-48,66,19.91527046155976],[116,-48,67,19.945499970009237],[116,-48,68,19.968668387266934],[116,-48,69,19.98642413638349],[116,-48,70,20.010385269428077],[116,-48,71,20.039456361964355],[116,-48,72,20.08399329746235],[116,-48,73,20.143722880757423],[116,-48,74,20.208314036732546],[116,-48,75,20.266138752185917],[116,-48,76,20.331777869801517],[116,-48,77,20.421455321158046],[116,-48,78,20.50878878778667],[116,-48,79,20.58040640479936],[116,-47,64,19.790423438188267],[116,-47,65,19.75065732524522],[116,-47,66,19.734676868453676],[116,-47,67,19.76621504674153],[116,-47,68,19.79243500481667],[116,-47,69,19.813810741151563],[116,-47,70,19.837650284022125],[116,-47,71,19.8661850387305],[116,-47,72,19.907934805874028],[116,-47,73,19.96937334689071],[116,-47,74,20.032226083179246],[116,-47,75,20.087746308533614],[116,-47,76,20.15177635048538],[116,-47,77,20.240797723580265],[116,-47,78,20.324459203568995],[116,-47,79,20.393565298028978],[116,-46,64,19.52671871153218],[116,-46,65,19.50478002911818],[116,-46,66,19.5481005042726],[116,-46,67,19.579796761479184],[116,-46,68,19.606423928404837],[116,-46,69,19.628447687596573],[116,-46,70,19.653202985590397],[116,-46,71,19.68114132379899],[116,-46,72,19.720526782372765],[116,-46,73,19.782898368014436],[116,-46,74,19.846788148206638],[116,-46,75,19.902356552569834],[116,-46,76,19.965417531865047],[116,-46,77,20.054934269853703],[116,-46,78,20.139002852946184],[116,-46,79,20.207715704106384],[116,-45,64,19.353746097978874],[116,-45,65,19.326045172175252],[116,-45,66,19.35788459372944],[116,-45,67,19.39078788938581],[116,-45,68,19.41521930349171],[116,-45,69,19.439336764333433],[116,-45,70,19.464964923588177],[116,-45,71,19.492758411989968],[116,-45,72,19.52929254386033],[116,-45,73,19.59090590536546],[116,-45,74,19.65526584079926],[116,-45,75,19.709315692699143],[116,-45,76,19.774709453681673],[116,-45,77,19.86376415305789],[116,-45,78,19.949423888737666],[116,-45,79,20.018485477010298],[116,-44,64,19.28247250053603],[116,-44,65,19.198342985997435],[116,-44,66,19.192731134664644],[116,-44,67,19.225729056173897],[116,-44,68,19.247647060877377],[116,-44,69,19.26833668287959],[116,-44,70,19.29036677604346],[116,-44,71,19.31643259626707],[116,-44,72,19.354403825317615],[116,-44,73,19.412640754367082],[116,-44,74,19.47695933702539],[116,-44,75,19.53154294151032],[116,-44,76,19.598820236660707],[116,-44,77,19.68760488228375],[116,-44,78,19.772165746567904],[116,-44,79,19.839898874842994],[116,-43,64,19.02790684930081],[116,-43,65,18.976195683185022],[116,-43,66,19.020719629917153],[116,-43,67,19.051341199719516],[116,-43,68,19.071871073823548],[116,-43,69,19.091701842917566],[116,-43,70,19.112125719099275],[116,-43,71,19.13757668234204],[116,-43,72,19.175585655285687],[116,-43,73,19.23339164114578],[116,-43,74,19.29833556362762],[116,-43,75,19.352934401853712],[116,-43,76,19.418702393138364],[116,-43,77,19.505739140249446],[116,-43,78,19.587259512229842],[116,-43,79,19.654032641053348],[116,-42,64,18.864854789374448],[116,-42,65,18.789286568599454],[116,-42,66,18.834171265788605],[116,-42,67,18.865325581422262],[116,-42,68,18.88588725885374],[116,-42,69,18.904588884798436],[116,-42,70,18.924303103014513],[116,-42,71,18.949251094184913],[116,-42,72,18.987284053833154],[116,-42,73,19.04512146579061],[116,-42,74,19.109754215024754],[116,-42,75,19.16436039549888],[116,-42,76,19.230450665478262],[116,-42,77,19.317286178131532],[116,-42,78,19.399950809895415],[116,-42,79,19.465678142181325],[116,-41,64,18.717876560628476],[116,-41,65,18.596327340721775],[116,-41,66,18.643278275923247],[116,-41,67,18.674538318973024],[116,-41,68,18.694481784440114],[116,-41,69,18.712155579000026],[116,-41,70,18.72944227391409],[116,-41,71,18.753715210707362],[116,-41,72,18.792811079510525],[116,-41,73,18.852495683458415],[116,-41,74,18.915464217771998],[116,-41,75,18.97267324580588],[116,-41,76,19.03897554288813],[116,-41,77,19.12406485891904],[116,-41,78,19.210954343805582],[116,-41,79,19.27483905104223],[116,-40,64,18.53920885087644],[116,-40,65,18.414192294336736],[116,-40,66,18.46119584753256],[116,-40,67,18.48890492136114],[116,-40,68,18.50830768970046],[116,-40,69,18.524872630670938],[116,-40,70,18.541852369839315],[116,-40,71,18.566688298788424],[116,-40,72,18.604938632647105],[116,-40,73,18.664624837064377],[116,-40,74,18.726548927005176],[116,-40,75,18.784503323840354],[116,-40,76,18.85250707077919],[116,-40,77,18.93788986620436],[116,-40,78,19.024127819893817],[116,-40,79,19.08890285538448],[116,-39,64,18.400615357054974],[116,-39,65,18.256313409480164],[116,-39,66,18.28176622311002],[116,-39,67,18.30671811344486],[116,-39,68,18.323185376487377],[116,-39,69,18.33861230999987],[116,-39,70,18.354759060969755],[116,-39,71,18.381387799156162],[116,-39,72,18.421701395417525],[116,-39,73,18.484560242174876],[116,-39,74,18.547092625070455],[116,-39,75,18.603241890137998],[116,-39,76,18.673003898546146],[116,-39,77,18.756587053959304],[116,-39,78,18.842285616905166],[116,-39,79,18.909245356463817],[116,-38,64,18.305590259769865],[116,-38,65,18.161619943250276],[116,-38,66,18.10081539557192],[116,-38,67,18.124614475817754],[116,-38,68,18.141293344073542],[116,-38,69,18.156113164011952],[116,-38,70,18.17162411235286],[116,-38,71,18.197754153087057],[116,-38,72,18.237293915227404],[116,-38,73,18.300501194550403],[116,-38,74,18.36249983191895],[116,-38,75,18.418661337370548],[116,-38,76,18.48330403661101],[116,-38,77,18.568352368606266],[116,-38,78,18.65437394878908],[116,-38,79,18.724648935068995],[116,-37,64,18.16258335872752],[116,-37,65,18.050192307309413],[116,-37,66,17.985210279280167],[116,-37,67,17.936016203722584],[116,-37,68,17.95461408686112],[116,-37,69,17.967809333935644],[116,-37,70,17.98249917347397],[116,-37,71,18.01025171070408],[116,-37,72,18.048141540081406],[116,-37,73,18.110046922639167],[116,-37,74,18.175058058994694],[116,-37,75,18.22663052629418],[116,-37,76,18.289489893979678],[116,-37,77,18.373600515147906],[116,-37,78,18.462106506763515],[116,-37,79,18.53390036420212],[116,-36,64,18.00692733407764],[116,-36,65,17.887767112607712],[116,-36,66,17.838686949312077],[116,-36,67,17.75119107735023],[116,-36,68,17.768174422905496],[116,-36,69,17.78066178362868],[116,-36,70,17.797915300751256],[116,-36,71,17.824100019965016],[116,-36,72,17.86344754170563],[116,-36,73,17.92376755689822],[116,-36,74,17.986472396497327],[116,-36,75,18.038187192239995],[116,-36,76,18.099735570759577],[116,-36,77,18.183194638496737],[116,-36,78,18.27039837865687],[116,-36,79,18.344476987448665],[116,-35,64,17.73229418342079],[116,-35,65,17.74427406980608],[116,-35,66,17.818512314923787],[116,-35,67,17.803987267741263],[116,-35,68,17.695065333058455],[116,-35,69,17.6032589361161],[116,-35,70,17.61514775452144],[116,-35,71,17.63912139363103],[116,-35,72,17.676936652298608],[116,-35,73,17.733627126867496],[116,-35,74,17.790865727669427],[116,-35,75,17.844493645374378],[116,-35,76,17.907218385258926],[116,-35,77,17.989132104839268],[116,-35,78,18.079088231065562],[116,-35,79,18.151815149953197],[116,-34,64,17.565741575588877],[116,-34,65,17.600673545708986],[116,-34,66,17.634022628371426],[116,-34,67,17.634720718170012],[116,-34,68,17.571612111851067],[116,-34,69,17.43706077641098],[116,-34,70,17.42916323798233],[116,-34,71,17.45392556785313],[116,-34,72,17.49223953128824],[116,-34,73,17.546515133611724],[116,-34,74,17.601702203550275],[116,-34,75,17.65518639042859],[116,-34,76,17.7180717389891],[116,-34,77,17.801842726762978],[116,-34,78,17.88933766474784],[116,-34,79,17.96105478223951],[116,-33,64,17.409866926494406],[116,-33,65,17.48116838232791],[116,-33,66,17.492303668362503],[116,-33,67,17.476778264601432],[116,-33,68,17.46680311186334],[116,-33,69,17.35950999822187],[116,-33,70,17.306345773647386],[116,-33,71,17.32652314090094],[116,-33,72,17.360847074229948],[116,-33,73,17.410419943887135],[116,-33,74,17.461015215169866],[116,-33,75,17.50947157343724],[116,-33,76,17.56790199282681],[116,-33,77,17.64671688945288],[116,-33,78,17.727391721710603],[116,-33,79,17.79493748053637],[116,-32,64,17.219215528529013],[116,-32,65,17.293061183138715],[116,-32,66,17.327153583371953],[116,-32,67,17.278566045162272],[116,-32,68,17.28965082823816],[116,-32,69,17.183688847122813],[116,-32,70,17.11808599378396],[116,-32,71,17.139677057572516],[116,-32,72,17.177348221844202],[116,-32,73,17.222124361939642],[116,-32,74,17.27393797467174],[116,-32,75,17.322952124950653],[116,-32,76,17.380985223103675],[116,-32,77,17.455906521994564],[116,-32,78,17.53748697870348],[116,-32,79,17.60458881154966],[116,-31,64,17.031192517299232],[116,-31,65,17.092869641478032],[116,-31,66,17.131556021241646],[116,-31,67,17.050299904252167],[116,-31,68,17.043870934492418],[116,-31,69,16.956178049466406],[116,-31,70,16.931908715651993],[116,-31,71,16.954141573125728],[116,-31,72,16.99019855492971],[116,-31,73,17.035918479277083],[116,-31,74,17.087918531091294],[116,-31,75,17.137791831484346],[116,-31,76,17.19511143152144],[116,-31,77,17.269104822424023],[116,-31,78,17.347434757546317],[116,-31,79,17.417578825620527],[116,-30,64,16.85339688251018],[116,-30,65,16.928563390090165],[116,-30,66,16.96738242343382],[116,-30,67,16.901447849082725],[116,-30,68,16.860374960868096],[116,-30,69,16.776851957039234],[116,-30,70,16.74590427888829],[116,-30,71,16.768998696999727],[116,-30,72,16.80448891696032],[116,-30,73,16.85007949743725],[116,-30,74,16.901843359236402],[116,-30,75,16.95230281435076],[116,-30,76,17.008231773129523],[116,-30,77,17.08020629161493],[116,-30,78,17.161624616395073],[116,-30,79,17.230782041246243],[116,-29,64,16.732593607124127],[116,-29,65,16.810770511111496],[116,-29,66,16.844786860900857],[116,-29,67,16.79664723735906],[116,-29,68,16.72078142633856],[116,-29,69,16.647741185660205],[116,-29,70,16.601878417429518],[116,-29,71,16.61119130908961],[116,-29,72,16.615086287040555],[116,-29,73,16.696514367514375],[116,-29,74,16.713642478969096],[116,-29,75,16.762194946751286],[116,-29,76,16.8152775066217],[116,-29,77,16.888408380882087],[116,-29,78,16.969311856550135],[116,-29,79,17.03939192712386],[116,-28,64,16.536764317881815],[116,-28,65,16.6224574094125],[116,-28,66,16.66311662170214],[116,-28,67,16.608389636816135],[116,-28,68,16.538224708909166],[116,-28,69,16.463302222048796],[116,-28,70,16.440896807435134],[116,-28,71,16.456209462923052],[116,-28,72,16.43054029570601],[116,-28,73,16.53021688428551],[116,-28,74,16.52900276609862],[116,-28,75,16.576809436297342],[116,-28,76,16.628296387508115],[116,-28,77,16.697000977311344],[116,-28,78,16.777943710970465],[116,-28,79,16.846450901834775],[116,-27,64,16.385988115106947],[116,-27,65,16.441153833997745],[116,-27,66,16.435217542005063],[116,-27,67,16.33609564227244],[116,-27,68,16.26163756362991],[116,-27,69,16.173233526001255],[116,-27,70,16.193738015927007],[116,-27,71,16.247031679083836],[116,-27,72,16.258165074274167],[116,-27,73,16.32465372855151],[116,-27,74,16.361223265820403],[116,-27,75,16.408224712719033],[116,-27,76,16.45444844557638],[116,-27,77,16.515425585062825],[116,-27,78,16.58520995169535],[116,-27,79,16.64582189666848],[116,-26,64,16.25314989781641],[116,-26,65,16.284813935030915],[116,-26,66,16.280999087874708],[116,-26,67,16.163709696133985],[116,-26,68,16.061275067038924],[116,-26,69,15.9903778759934],[116,-26,70,16.005074811906248],[116,-26,71,16.074170112893498],[116,-26,72,16.075748924832105],[116,-26,73,16.14454092331854],[116,-26,74,16.177776912063468],[116,-26,75,16.222544941073217],[116,-26,76,16.268960948555314],[116,-26,77,16.32785949492154],[116,-26,78,16.396543914035767],[116,-26,79,16.45775276427599],[116,-25,64,16.069772238800134],[116,-25,65,16.086643112099164],[116,-25,66,16.068255912357973],[116,-25,67,15.972199215568699],[116,-25,68,15.862088325201903],[116,-25,69,15.800769226225858],[116,-25,70,15.817962667526134],[116,-25,71,15.889840834911018],[116,-25,72,15.903462160007697],[116,-25,73,15.956361755457777],[116,-25,74,15.990868430172027],[116,-25,75,16.035281453572352],[116,-25,76,16.08032682877308],[116,-25,77,16.13843017801081],[116,-25,78,16.206573694439246],[116,-25,79,16.266596373397068],[116,-24,64,15.86588430343387],[116,-24,65,15.875496291360983],[116,-24,66,15.842980199104124],[116,-24,67,15.752169621045647],[116,-24,68,15.642770372926025],[116,-24,69,15.618533758316238],[116,-24,70,15.635382236295172],[116,-24,71,15.67799714205748],[116,-24,72,15.740986125398726],[116,-24,73,15.763261751218005],[116,-24,74,15.806595074313277],[116,-24,75,15.849378937799337],[116,-24,76,15.893592750643645],[116,-24,77,15.95119658264831],[116,-24,78,16.016618279345554],[116,-24,79,16.077045291697093],[116,-23,64,15.628405328894814],[116,-23,65,15.609039063517088],[116,-23,66,15.60776221548666],[116,-23,67,15.520053155874686],[116,-23,68,15.427496954872575],[116,-23,69,15.441598202141648],[116,-23,70,15.456789232294021],[116,-23,71,15.480733396145055],[116,-23,72,15.514880396732975],[116,-23,73,15.56199458987336],[116,-23,74,15.619435158470097],[116,-23,75,15.678977414009584],[116,-23,76,15.724069291994962],[116,-23,77,15.76375143922171],[116,-23,78,15.829973878600443],[116,-23,79,15.895023482021385],[116,-22,64,15.452278687672296],[116,-22,65,15.412297671850068],[116,-22,66,15.414703998077078],[116,-22,67,15.324752295241055],[116,-22,68,15.24615650570411],[116,-22,69,15.257165529414811],[116,-22,70,15.272826782419289],[116,-22,71,15.294179466454356],[116,-22,72,15.33064177414886],[116,-22,73,15.37667796409785],[116,-22,74,15.457410706470222],[116,-22,75,15.50627903288743],[116,-22,76,15.536520591215817],[116,-22,77,15.576161988432446],[116,-22,78,15.6423402797138],[116,-22,79,15.707539184249876],[116,-21,64,15.331596028748903],[116,-21,65,15.305833939434848],[116,-21,66,15.29333946086181],[116,-21,67,15.211309519089156],[116,-21,68,15.06137929412766],[116,-21,69,15.070509247357652],[116,-21,70,15.083825299748124],[116,-21,71,15.106585877661367],[116,-21,72,15.18098837283541],[116,-21,73,15.216422866420661],[116,-21,74,15.319099529281168],[116,-21,75,15.368655891927153],[116,-21,76,15.404189440972711],[116,-21,77,15.384729403483172],[116,-21,78,15.451176375327478],[116,-21,79,15.515956575499557],[116,-20,64,15.122358277314154],[116,-20,65,15.120522834142285],[116,-20,66,15.087821535344792],[116,-20,67,15.013424474445593],[116,-20,68,14.875247111624523],[116,-20,69,14.886634544703716],[116,-20,70,14.90068416040275],[116,-20,71,14.923100698015128],[116,-20,72,14.982297089786194],[116,-20,73,15.057637149010187],[116,-20,74,15.122692096444647],[116,-20,75,15.186228087978744],[116,-20,76,15.223712602478589],[116,-20,77,15.193496038395164],[116,-20,78,15.259864801073517],[116,-20,79,15.32436979593377],[116,-19,64,15.007620189940052],[116,-19,65,14.966245582737288],[116,-19,66,14.89609205056523],[116,-19,67,14.788522456260743],[116,-19,68,14.704554068644267],[116,-19,69,14.715951589758943],[116,-19,70,14.727782579043453],[116,-19,71,14.749309723545105],[116,-19,72,14.828951974285996],[116,-19,73,14.930108917179748],[116,-19,74,15.033434018110741],[116,-19,75,15.105403050799985],[116,-19,76,15.12213813134002],[116,-19,77,15.060333171253795],[116,-19,78,15.081864496613711],[116,-19,79,15.147753319150256],[116,-18,64,14.807821584049988],[116,-18,65,14.747208700221414],[116,-18,66,14.696155938658814],[116,-18,67,14.596449766078562],[116,-18,68,14.52459284855911],[116,-18,69,14.535772449921867],[116,-18,70,14.550102287167585],[116,-18,71,14.569315425636496],[116,-18,72,14.656937220473363],[116,-18,73,14.754631734771007],[116,-18,74,14.869697994222124],[116,-18,75,14.955847983139078],[116,-18,76,14.944179914085085],[116,-18,77,14.911316380046902],[116,-18,78,14.896399436122438],[116,-18,79,14.960263002740406],[116,-17,64,14.590142715093476],[116,-17,65,14.53400122308952],[116,-17,66,14.47509004341416],[116,-17,67,14.40767719180995],[116,-17,68,14.336787579512926],[116,-17,69,14.350623849531013],[116,-17,70,14.36364560172053],[116,-17,71,14.391613008868916],[116,-17,72,14.483824432980995],[116,-17,73,14.584574422319136],[116,-17,74,14.704846328158123],[116,-17,75,14.777224405782443],[116,-17,76,14.769844899493144],[116,-17,77,14.731150025807812],[116,-17,78,14.710442849540211],[116,-17,79,14.772125858349295],[116,-16,64,14.414990310581539],[116,-16,65,14.387004067615404],[116,-16,66,14.345773174030567],[116,-16,67,14.296586835411036],[116,-16,68,14.215973491785538],[116,-16,69,14.168704158475272],[116,-16,70,14.196862718562105],[116,-16,71,14.301048597240575],[116,-16,72,14.40814987541738],[116,-16,73,14.465696103596832],[116,-16,74,14.549366727707582],[116,-16,75,14.57863605582142],[116,-16,76,14.570595794211444],[116,-16,77,14.580083730577824],[116,-16,78,14.527001903126665],[116,-16,79,14.586681330942978],[116,-15,64,14.224356446451894],[116,-15,65,14.189416414641261],[116,-15,66,14.150323688291511],[116,-15,67,14.103424116839557],[116,-15,68,14.044972956626502],[116,-15,69,13.99900700659275],[116,-15,70,14.010981601321193],[116,-15,71,14.110977171229926],[116,-15,72,14.228665395070449],[116,-15,73,14.282583253160677],[116,-15,74,14.34980316297784],[116,-15,75,14.386976274969674],[116,-15,76,14.379574989774689],[116,-15,77,14.4224716727128],[116,-15,78,14.350943926233606],[116,-15,79,14.405983632966429],[116,-14,64,13.919411538855492],[116,-14,65,13.899080634289483],[116,-14,66,13.892447019914602],[116,-14,67,13.868450257621491],[116,-14,68,13.83004191170045],[116,-14,69,13.815375444741587],[116,-14,70,13.823824256153694],[116,-14,71,13.904313351683134],[116,-14,72,13.996667563461342],[116,-14,73,14.050208198538193],[116,-14,74,14.104200073211345],[116,-14,75,14.128654860281774],[116,-14,76,14.159206889895806],[116,-14,77,14.217006792907755],[116,-14,78,14.173453931128236],[116,-14,79,14.219685653292098],[116,-13,64,13.731190831066433],[116,-13,65,13.732973432591617],[116,-13,66,13.73235875395896],[116,-13,67,13.714948704643747],[116,-13,68,13.679879687365311],[116,-13,69,13.654106807919392],[116,-13,70,13.670213081074403],[116,-13,71,13.754986975601959],[116,-13,72,13.855272842820858],[116,-13,73,13.896302252973927],[116,-13,74,13.939337085816442],[116,-13,75,13.973382404764386],[116,-13,76,14.004569780787508],[116,-13,77,14.041987087996173],[116,-13,78,14.001924869899797],[116,-13,79,14.029561001434443],[116,-12,64,13.532624195705221],[116,-12,65,13.51257650711287],[116,-12,66,13.515956682641734],[116,-12,67,13.520324770010724],[116,-12,68,13.485121546148749],[116,-12,69,13.448596375312766],[116,-12,70,13.457918862357179],[116,-12,71,13.548479967548182],[116,-12,72,13.656506930533524],[116,-12,73,13.69865824312869],[116,-12,74,13.733931245654313],[116,-12,75,13.775301951962648],[116,-12,76,13.806526749936342],[116,-12,77,13.821574228434686],[116,-12,78,13.81142730792334],[116,-12,79,13.839565124209294],[116,-11,64,13.353151701820542],[116,-11,65,13.355783237488849],[116,-11,66,13.340739264922242],[116,-11,67,13.331755370168002],[116,-11,68,13.303466712988712],[116,-11,69,13.260646902325341],[116,-11,70,13.263291755191037],[116,-11,71,13.375408288639138],[116,-11,72,13.511523538310573],[116,-11,73,13.59179113343266],[116,-11,74,13.666970319530332],[116,-11,75,13.703998707797941],[116,-11,76,13.73292365152047],[116,-11,77,13.736892266029113],[116,-11,78,13.734266295740188],[116,-11,79,13.685916673481817],[116,-10,64,13.155612774363561],[116,-10,65,13.146456438161982],[116,-10,66,13.147206677103162],[116,-10,67,13.117114462516195],[116,-10,68,13.116232359792663],[116,-10,69,13.07615944703171],[116,-10,70,13.079873561039761],[116,-10,71,13.157059985814696],[116,-10,72,13.301560657296703],[116,-10,73,13.37396697314832],[116,-10,74,13.45618676435312],[116,-10,75,13.499505195557575],[116,-10,76,13.53122778634534],[116,-10,77,13.530878046166677],[116,-10,78,13.528438218797303],[116,-10,79,13.50388325208847],[116,-9,64,12.974053956099613],[116,-9,65,12.946930741334558],[116,-9,66,12.946530625402518],[116,-9,67,12.91174595802169],[116,-9,68,12.917424120610013],[116,-9,69,12.888294678216797],[116,-9,70,12.894936993357812],[116,-9,71,12.950058439308904],[116,-9,72,13.086054390487071],[116,-9,73,13.160317424905328],[116,-9,74,13.249705419349429],[116,-9,75,13.300645803793886],[116,-9,76,13.340305493749616],[116,-9,77,13.338711019405741],[116,-9,78,13.304309773613456],[116,-9,79,13.293196209538214],[116,-8,64,12.725034618847726],[116,-8,65,12.68483373483514],[116,-8,66,12.673106112328721],[116,-8,67,12.683428182595613],[116,-8,68,12.697402633928991],[116,-8,69,12.704575725694028],[116,-8,70,12.71513256659531],[116,-8,71,12.732463302285101],[116,-8,72,12.805221294957743],[116,-8,73,12.89848299760767],[116,-8,74,13.039154809106773],[116,-8,75,13.117612236747727],[116,-8,76,13.151636747854297],[116,-8,77,13.147555275480876],[116,-8,78,13.078997772911423],[116,-8,79,13.094608801007183],[116,-7,64,12.516060920283273],[116,-7,65,12.490615341374104],[116,-7,66,12.476030001828777],[116,-7,67,12.50003316355211],[116,-7,68,12.512642088515106],[116,-7,69,12.521862707764248],[116,-7,70,12.533618325710192],[116,-7,71,12.55043555859199],[116,-7,72,12.59781796094446],[116,-7,73,12.69330247553507],[116,-7,74,12.83973633440226],[116,-7,75,12.91567943110741],[116,-7,76,12.947523815378077],[116,-7,77,12.939008596939408],[116,-7,78,12.862593684843501],[116,-7,79,12.90649173837603],[116,-6,64,12.302811589362125],[116,-6,65,12.288859678661307],[116,-6,66,12.292543887347295],[116,-6,67,12.314898703115986],[116,-6,68,12.32921641234063],[116,-6,69,12.340218835876259],[116,-6,70,12.349412762208342],[116,-6,71,12.367317674813798],[116,-6,72,12.399747677576542],[116,-6,73,12.488339046124594],[116,-6,74,12.620151265207287],[116,-6,75,12.707405953521583],[116,-6,76,12.748097638558685],[116,-6,77,12.732977380258417],[116,-6,78,12.670232820152497],[116,-6,79,12.716349940492671],[116,-5,64,12.088211479312422],[116,-5,65,12.136702330389667],[116,-5,66,12.197468603650817],[116,-5,67,12.205472291366444],[116,-5,68,12.249062922810522],[116,-5,69,12.246322162343807],[116,-5,70,12.21586418162509],[116,-5,71,12.218479969681882],[116,-5,72,12.23206057547794],[116,-5,73,12.255795480826466],[116,-5,74,12.303592266599763],[116,-5,75,12.356897035125034],[116,-5,76,12.3817746655106],[116,-5,77,12.424043782802142],[116,-5,78,12.478629599771612],[116,-5,79,12.522156060841274],[116,-4,64,11.885369197123392],[116,-4,65,11.9308759504347],[116,-4,66,11.99060837607036],[116,-4,67,12.009776261400393],[116,-4,68,12.050146984425629],[116,-4,69,12.046018328971472],[116,-4,70,12.02170708191099],[116,-4,71,12.01988566981109],[116,-4,72,12.029029894474638],[116,-4,73,12.05763339233217],[116,-4,74,12.103101201888133],[116,-4,75,12.143660186161775],[116,-4,76,12.181488523780867],[116,-4,77,12.232410472957515],[116,-4,78,12.28578803465461],[116,-4,79,12.332288855956044],[116,-3,64,11.72355639382692],[116,-3,65,11.776920481597923],[116,-3,66,11.83806956316376],[116,-3,67,11.87798707651131],[116,-3,68,11.910087374810088],[116,-3,69,11.906155136298189],[116,-3,70,11.890869323422278],[116,-3,71,11.881510876305159],[116,-3,72,11.877340482820573],[116,-3,73,11.898824840915468],[116,-3,74,11.940090816803439],[116,-3,75,11.98189921386987],[116,-3,76,11.988782338086862],[116,-3,77,12.041966809038945],[116,-3,78,12.102272060389982],[116,-3,79,12.153957822423891],[116,-2,64,11.53105044004537],[116,-2,65,11.577071576868924],[116,-2,66,11.647719583179235],[116,-2,67,11.693278930564244],[116,-2,68,11.711311404968372],[116,-2,69,11.706610813612546],[116,-2,70,11.697607623449946],[116,-2,71,11.69711897071521],[116,-2,72,11.67415000663839],[116,-2,73,11.708376965470254],[116,-2,74,11.745128144496958],[116,-2,75,11.768423543549417],[116,-2,76,11.805888802867523],[116,-2,77,11.8563558131857],[116,-2,78,11.915894056467145],[116,-2,79,11.969766705214257],[116,-1,64,11.363953203906162],[116,-1,65,11.41600444325272],[116,-1,66,11.498618007424342],[116,-1,67,11.543431591740752],[116,-1,68,11.555567954899798],[116,-1,69,11.56802598445851],[116,-1,70,11.553449852191502],[116,-1,71,11.5517724352818],[116,-1,72,11.53456730933079],[116,-1,73,11.552053479440168],[116,-1,74,11.538973493920425],[116,-1,75,11.579829441718507],[116,-1,76,11.62215057663256],[116,-1,77,11.672318632252514],[116,-1,78,11.730209993736192],[116,-1,79,11.785472753042551],[116,0,64,11.20906023684323],[116,0,65,11.25762323206814],[116,0,66,11.297889870405676],[116,0,67,11.324714364517211],[116,0,68,11.338710591951374],[116,0,69,11.349187791806603],[116,0,70,11.358598424038012],[116,0,71,11.36982540918308],[116,0,72,11.395915222137278],[116,0,73,11.439709581572705],[116,0,74,11.482886485083625],[116,0,75,11.521687411390873],[116,0,76,11.558561728879909],[116,0,77,11.601136559401478],[116,0,78,11.65226373025104],[116,0,79,11.701488356186115],[116,1,64,11.02014375552625],[116,1,65,11.06764353597286],[116,1,66,11.108120803150525],[116,1,67,11.13684513592694],[116,1,68,11.150612113253443],[116,1,69,11.161692205221726],[116,1,70,11.172182166516102],[116,1,71,11.183991073526673],[116,1,72,11.21298034707808],[116,1,73,11.254730001745939],[116,1,74,11.29728563552673],[116,1,75,11.33364215251147],[116,1,76,11.370742659350187],[116,1,77,11.415605327046698],[116,1,78,11.467975669456171],[116,1,79,11.514956667298964],[116,2,64,10.830687930419632],[116,2,65,10.876470725937793],[116,2,66,10.917088342863202],[116,2,67,10.94802037970354],[116,2,68,10.96298370287513],[116,2,69,10.9739777525192],[116,2,70,10.983320033513758],[116,2,71,10.997025649529355],[116,2,72,11.02658486841448],[116,2,73,11.070003954242427],[116,2,74,11.10989538929102],[116,2,75,11.14549315635244],[116,2,76,11.18158686280382],[116,2,77,11.22784044348203],[116,2,78,11.280468004017917],[116,2,79,11.32710316536503],[116,3,64,10.640126507958735],[116,3,65,10.686383643420182],[116,3,66,10.727003160980942],[116,3,67,10.758995335340503],[116,3,68,10.776718497349068],[116,3,69,10.786275974953679],[116,3,70,10.794349186851601],[116,3,71,10.811049267042456],[116,3,72,10.83994057723324],[116,3,73,10.883387212738228],[116,3,74,10.923116940297504],[116,3,75,10.957514668707189],[116,3,76,10.99614694748813],[116,3,77,11.039845814147386],[116,3,78,11.09059442113632],[116,3,79,11.138216376370599],[116,4,64,10.450239035919198],[116,4,65,10.496170240146217],[116,4,66,10.537157427366276],[116,4,67,10.569310951666012],[116,4,68,10.58867627519297],[116,4,69,10.601048286623993],[116,4,70,10.608470129473776],[116,4,71,10.625130054063288],[116,4,72,10.656395672218235],[116,4,73,10.69735799815086],[116,4,74,10.739252731284896],[116,4,75,10.774028261737396],[116,4,76,10.811848348458623],[116,4,77,10.855367346233791],[116,4,78,10.903815394164592],[116,4,79,10.950578534620881],[116,5,64,10.25788944064151],[116,5,65,10.303323578785768],[116,5,66,10.346647589640046],[116,5,67,10.379903423727205],[116,5,68,10.40028751230252],[116,5,69,10.415064269878844],[116,5,70,10.42287740749384],[116,5,71,10.443460127174234],[116,5,72,10.472042045327951],[116,5,73,10.512166984118545],[116,5,74,10.554911091507234],[116,5,75,10.590771183205144],[116,5,76,10.627477233645081],[116,5,77,10.671094626231982],[116,5,78,10.718205599676407],[116,5,79,10.761496501222933],[116,6,64,10.068352141267471],[116,6,65,10.113794455852151],[116,6,66,10.157243592916657],[116,6,67,10.19053476628291],[116,6,68,10.212764952376183],[116,6,69,10.22919423178066],[116,6,70,10.241105315794686],[116,6,71,10.258554312869018],[116,6,72,10.289269890846688],[116,6,73,10.32772992315464],[116,6,74,10.36757391751829],[116,6,75,10.406356446360528],[116,6,76,10.444041565093391],[116,6,77,10.488361722055716],[116,6,78,10.533876968743938],[116,6,79,10.577118740020477],[116,7,64,9.879280522119009],[116,7,65,9.92518596791015],[116,7,66,9.96748142736223],[116,7,67,10.00327900757144],[116,7,68,10.025774633117614],[116,7,69,10.046733367762528],[116,7,70,10.059246573592885],[116,7,71,10.072790357794206],[116,7,72,10.105857211413351],[116,7,73,10.144873089215446],[116,7,74,10.182326615651219],[116,7,75,10.222247739266283],[116,7,76,10.260727024457374],[116,7,77,10.30427448063496],[116,7,78,10.348975880002806],[116,7,79,10.39355394145219],[116,8,64,9.69015229082685],[116,8,65,9.73654476603927],[116,8,66,9.780392995941149],[116,8,67,9.820455556276539],[116,8,68,9.847331343296986],[116,8,69,9.866968500393941],[116,8,70,9.881322654266972],[116,8,71,9.893497617276068],[116,8,72,9.927518881683346],[116,8,73,9.968512012260833],[116,8,74,10.007447357244454],[116,8,75,10.047951518643329],[116,8,76,10.085694380379758],[116,8,77,10.129204884079622],[116,8,78,10.173114713808435],[116,8,79,10.2174904306278],[116,9,64,9.502078438457335],[116,9,65,9.549917344556523],[116,9,66,9.596566652145368],[116,9,67,9.63954601866349],[116,9,68,9.669354216273373],[116,9,69,9.689088946767065],[116,9,70,9.700831165766273],[116,9,71,9.712651428452737],[116,9,72,9.742695436389935],[116,9,73,9.784233548956733],[116,9,74,9.822624751804241],[116,9,75,9.862580354164692],[116,9,76,9.902132178366715],[116,9,77,9.945545889348459],[116,9,78,9.987955966907114],[116,9,79,10.03005983026732],[116,10,64,9.309168465375476],[116,10,65,9.3588442729786],[116,10,66,9.408914448726836],[116,10,67,9.449699820545348],[116,10,68,9.481082291682327],[116,10,69,9.500002505137937],[116,10,70,9.51250805297846],[116,10,71,9.525317884479273],[116,10,72,9.555200082648911],[116,10,73,9.599733994728956],[116,10,74,9.639391005652646],[116,10,75,9.676592519805956],[116,10,76,9.714351716273775],[116,10,77,9.759522370143205],[116,10,78,9.802296041521869],[116,10,79,9.842579907765465],[116,11,64,9.120201024685374],[116,11,65,9.167893264238545],[116,11,66,9.216766052217535],[116,11,67,9.260278882654921],[116,11,68,9.29158328313484],[116,11,69,9.312223582924],[116,11,70,9.32397891124725],[116,11,71,9.338571854731898],[116,11,72,9.36902645519007],[116,11,73,9.4133469806934],[116,11,74,9.455445978235355],[116,11,75,9.491699091378347],[116,11,76,9.52843820149491],[116,11,77,9.571320111509019],[116,11,78,9.614611000246782],[116,11,79,9.655854230819246],[116,12,64,8.932103381986432],[116,12,65,8.975401306880826],[116,12,66,9.025725663106149],[116,12,67,9.068116663962103],[116,12,68,9.098109619637365],[116,12,69,9.12028805553859],[116,12,70,9.133475162732333],[116,12,71,9.146920963299221],[116,12,72,9.176628095847647],[116,12,73,9.220847922952407],[116,12,74,9.264942109219435],[116,12,75,9.301148158271365],[116,12,76,9.336082782266612],[116,12,77,9.37725994079069],[116,12,78,9.422192210681416],[116,12,79,9.461582095249707],[116,13,64,8.741078114864589],[116,13,65,8.781285448453664],[116,13,66,8.829490228942872],[116,13,67,8.873092913380068],[116,13,68,8.900917121386518],[116,13,69,8.923100609137903],[116,13,70,8.939599186042134],[116,13,71,8.957244700464871],[116,13,72,8.989205265178517],[116,13,73,9.036375080001854],[116,13,74,9.081196052858703],[116,13,75,9.115082880295914],[116,13,76,9.150583585246583],[116,13,77,9.189065945001943],[116,13,78,9.234186918451414],[116,13,79,9.274964166061697],[116,14,64,8.55133918225524],[116,14,65,8.592958866018826],[116,14,66,8.641983348825251],[116,14,67,8.683992875511159],[116,14,68,8.713283543250313],[116,14,69,8.735493055486515],[116,14,70,8.750715882084185],[116,14,71,8.772718455817957],[116,14,72,8.805595534521398],[116,14,73,8.851834426319549],[116,14,74,8.89338167788405],[116,14,75,8.928944550919216],[116,14,76,8.963356060101106],[116,14,77,9.00331894723815],[116,14,78,9.04875413387676],[116,14,79,9.08788142175382],[116,15,64,8.363379571824211],[116,15,65,8.407881775683599],[116,15,66,8.455694503958588],[116,15,67,8.495851007208556],[116,15,68,8.52310086704178],[116,15,69,8.546279258336584],[116,15,70,8.565838290387846],[116,15,71,8.5851986747679],[116,15,72,8.619584394811834],[116,15,73,8.66700018821786],[116,15,74,8.707809287120558],[116,15,75,8.742567173102398],[116,15,76,8.778019182739522],[116,15,77,8.816279830776168],[116,15,78,8.862682840141044],[116,15,79,8.901522663150399],[116,16,64,8.173853334884743],[116,16,65,8.220664131274681],[116,16,66,8.268538200239313],[116,16,67,8.308110393615795],[116,16,68,8.336714009707988],[116,16,69,8.363193956739472],[116,16,70,8.382760529179201],[116,16,71,8.40388179921914],[116,16,72,8.440588161577601],[116,16,73,8.48607883202798],[116,16,74,8.527921190391863],[116,16,75,8.561505124757222],[116,16,76,8.599828240394913],[116,16,77,8.641278290467719],[116,16,78,8.686671626342273],[116,16,79,8.726931411729474],[116,17,64,7.990942135291617],[116,17,65,8.032686783452542],[116,17,66,8.079495213949654],[116,17,67,8.120612348276696],[116,17,68,8.149576559777778],[116,17,69,8.175346147041603],[116,17,70,8.19397947121682],[116,17,71,8.217029480566776],[116,17,72,8.251956335200092],[116,17,73,8.298659441988514],[116,17,74,8.341789821854864],[116,17,75,8.37298588495175],[116,17,76,8.412581386511334],[116,17,77,8.45518214752415],[116,17,78,8.49817703364071],[116,17,79,8.539268200538851],[116,18,64,7.804538714482799],[116,18,65,7.845218540517414],[116,18,66,7.891892194696292],[116,18,67,7.930591225850157],[116,18,68,7.96268217499569],[116,18,69,7.986006493472862],[116,18,70,8.006811609614507],[116,18,71,8.028904051445105],[116,18,72,8.064250926302348],[116,18,73,8.112368140449439],[116,18,74,8.153385201155766],[116,18,75,8.185236306234557],[116,18,76,8.223781797009284],[116,18,77,8.268494545289231],[116,18,78,8.310484537123413],[116,18,79,8.349023666233713],[116,19,64,7.6170736218549076],[116,19,65,7.658534775409969],[116,19,66,7.70412795637276],[116,19,67,7.741720565471217],[116,19,68,7.7757298996039985],[116,19,69,7.800397686566729],[116,19,70,7.820103659305678],[116,19,71,7.843563874625699],[116,19,72,7.877891050018043],[116,19,73,7.923625046827195],[116,19,74,7.963488520394667],[116,19,75,7.9984355571920105],[116,19,76,8.035772519658142],[116,19,77,8.080067626773355],[116,19,78,8.122174450119687],[116,19,79,8.159851253946139],[116,20,64,7.4318112627765025],[116,20,65,7.469203431870806],[116,20,66,7.512521441690168],[116,20,67,7.550027163259313],[116,20,68,7.584449360213136],[116,20,69,7.609097908879311],[116,20,70,7.6290212517503475],[116,20,71,7.653565532566086],[116,20,72,7.685040266092241],[116,20,73,7.725975417309987],[116,20,74,7.768161740105707],[116,20,75,7.802125611971091],[116,20,76,7.838847773558818],[116,20,77,7.8835026245404025],[116,20,78,7.927470894310819],[116,20,79,7.963988469340329],[116,21,64,7.2543513297437014],[116,21,65,7.288722367504849],[116,21,66,7.328739176421014],[116,21,67,7.367566779832896],[116,21,68,7.400426090683363],[116,21,69,7.422368217855595],[116,21,70,7.438683850875056],[116,21,71,7.462483967846599],[116,21,72,7.492089952516027],[116,21,73,7.529219244110206],[116,21,74,7.571445066478688],[116,21,75,7.60398118383191],[116,21,76,7.638234115620114],[116,21,77,7.684255570479006],[116,21,78,7.729887876429289],[116,21,79,7.769770419189237],[116,22,64,7.068995339573748],[116,22,65,7.1015625987726425],[116,22,66,7.137554512047384],[116,22,67,7.17695517373862],[116,22,68,7.213026893599792],[116,22,69,7.234852909569397],[116,22,70,7.250691594101462],[116,22,71,7.274119219503864],[116,22,72,7.303993941929005],[116,22,73,7.341955893652131],[116,22,74,7.3840883011598],[116,22,75,7.414888331240475],[116,22,76,7.448021192519954],[116,22,77,7.49050523420147],[116,22,78,7.53876749898234],[116,22,79,7.579156002704274],[116,23,64,6.880982828933949],[116,23,65,6.911804815721124],[116,23,66,6.950199605580932],[116,23,67,6.9889064162756425],[116,23,68,7.023617011438571],[116,23,69,7.0474414785284285],[116,23,70,7.061618140244598],[116,23,71,7.0845388286576485],[116,23,72,7.1177546945518015],[116,23,73,7.156862121508473],[116,23,74,7.196699006560314],[116,23,75,7.225647166338474],[116,23,76,7.2587905456292505],[116,23,77,7.300940334800144],[116,23,78,7.347775161679946],[116,23,79,7.389633262761551],[116,24,64,6.7002945795302296],[116,24,65,6.732594792883763],[116,24,66,6.772330738953393],[116,24,67,6.810691872731106],[116,24,68,6.843700266839505],[116,24,69,6.866076149122841],[116,24,70,6.8827025332662775],[116,24,71,6.904517939567002],[116,24,72,6.9384300232909295],[116,24,73,6.9782847755180155],[116,24,74,7.017696192571045],[116,24,75,7.0451731525121595],[116,24,76,7.0778581792329245],[116,24,77,7.119601139396647],[116,24,78,7.165394268029725],[116,24,79,7.209388888050548],[116,25,64,6.523272375258095],[116,25,65,6.5564886318339735],[116,25,66,6.595628184007082],[116,25,67,6.6329504978380465],[116,25,68,6.6647473419029595],[116,25,69,6.687380992086374],[116,25,70,6.706755834504874],[116,25,71,6.727727586814908],[116,25,72,6.758020294013311],[116,25,73,6.7993584653514745],[116,25,74,6.837286925136423],[116,25,75,6.867893986306178],[116,25,76,6.894687307526871],[116,25,77,6.931009280525893],[116,25,78,6.969940364157631],[116,25,79,7.008029512805105],[116,26,64,6.340389287817992],[116,26,65,6.371041890348975],[116,26,66,6.4093474525884515],[116,26,67,6.446693622256031],[116,26,68,6.478043187968774],[116,26,69,6.501979739034903],[116,26,70,6.520967316187694],[116,26,71,6.540588351987531],[116,26,72,6.569504245616047],[116,26,73,6.609439004967998],[116,26,74,6.649403027479125],[116,26,75,6.680974674139248],[116,26,76,6.706300779981703],[116,26,77,6.738600025521906],[116,26,78,6.7795897174431845],[116,26,79,6.817842323962019],[116,27,64,6.157481031284916],[116,27,65,6.1839570190768836],[116,27,66,6.222206166460666],[116,27,67,6.259615310913014],[116,27,68,6.29109786486055],[116,27,69,6.315949850380581],[116,27,70,6.334521524765062],[116,27,71,6.351070289157729],[116,27,72,6.38097090615126],[116,27,73,6.421426221983683],[116,27,74,6.459058098526172],[116,27,75,6.490892675711063],[116,27,76,6.517849868425594],[116,27,77,6.550404534597453],[116,27,78,6.588304621146632],[116,27,79,6.623421371242287],[116,28,64,5.967699872578121],[116,28,65,5.995122862313947],[116,28,66,6.032861150881204],[116,28,67,6.070028476673863],[116,28,68,6.10131591051098],[116,28,69,6.122480090715721],[116,28,70,6.138100294787973],[116,28,71,6.155556954699907],[116,28,72,6.188225421025372],[116,28,73,6.228768923359725],[116,28,74,6.264173753120045],[116,28,75,6.295314503071513],[116,28,76,6.321267141664658],[116,28,77,6.355082586114468],[116,28,78,6.390481219630744],[116,28,79,6.42396502727792],[116,29,64,5.774650666172351],[116,29,65,5.80450145441868],[116,29,66,5.842583543621487],[116,29,67,5.882322199086877],[116,29,68,5.911814446536916],[116,29,69,5.930418534935],[116,29,70,5.946013225074984],[116,29,71,5.962129334140926],[116,29,72,5.99383660110077],[116,29,73,6.034354573227262],[116,29,74,6.070241633399727],[116,29,75,6.10236362890414],[116,29,76,6.129646953068925],[116,29,77,6.161754236776139],[116,29,78,6.1989140756769405],[116,29,79,6.23532702992178],[116,30,64,5.587106041588569],[116,30,65,5.620760640686209],[116,30,66,5.65743051192594],[116,30,67,5.697705187270309],[116,30,68,5.724429061837665],[116,30,69,5.7411547481152825],[116,30,70,5.754441338472446],[116,30,71,5.770924336716734],[116,30,72,5.802561209724975],[116,30,73,5.842806568963947],[116,30,74,5.880790037977342],[116,30,75,5.911702426103288],[116,30,76,5.936604394068802],[116,30,77,5.968643501168166],[116,30,78,6.005711356679472],[116,30,79,6.043505674584844],[116,31,64,5.4009241544927615],[116,31,65,5.435935188637168],[116,31,66,5.474045686747269],[116,31,67,5.510488858231006],[116,31,68,5.535982038350542],[116,31,69,5.551376391332798],[116,31,70,5.564304774406891],[116,31,71,5.581312564123884],[116,31,72,5.611484854150312],[116,31,73,5.65180777328468],[116,31,74,5.690750204906928],[116,31,75,5.719279967658317],[116,31,76,5.7413549171534255],[116,31,77,5.771566483128104],[116,31,78,5.81060719748185],[116,31,79,5.852166517271865],[116,32,64,5.22386041194907],[116,32,65,5.2589776909106964],[116,32,66,5.296225863526482],[116,32,67,5.332513499489423],[116,32,68,5.357245338861088],[116,32,69,5.370133620995427],[116,32,70,5.383714954004837],[116,32,71,5.404291755438755],[116,32,72,5.433527583165695],[116,32,73,5.471903653840072],[116,32,74,5.508609755097373],[116,32,75,5.537710360171258],[116,32,76,5.559229220276049],[116,32,77,5.587141893427897],[116,32,78,5.62592154994478],[116,32,79,5.668615699623036],[116,33,64,5.028538876156869],[116,33,65,5.066262948446975],[116,33,66,5.106104465606964],[116,33,67,5.141941830082218],[116,33,68,5.164619182784876],[116,33,69,5.176060544947788],[116,33,70,5.190677923936886],[116,33,71,5.209659601306342],[116,33,72,5.23578920484324],[116,33,73,5.269720707016064],[116,33,74,5.3045746642487055],[116,33,75,5.33277030256498],[116,33,76,5.35668982940346],[116,33,77,5.383150945640567],[116,33,78,5.4234055215791885],[116,33,79,5.467808496495378],[116,34,64,4.8397721701612575],[116,34,65,4.878280700361185],[116,34,66,4.921467528060692],[116,34,67,4.9527308592931565],[116,34,68,4.972793528436564],[116,34,69,4.9873920939404215],[116,34,70,4.99888940352169],[116,34,71,5.017510439971678],[116,34,72,5.046001213014638],[116,34,73,5.079011618753488],[116,34,74,5.113040578770853],[116,34,75,5.14036082566424],[116,34,76,5.166503411697576],[116,34,77,5.1941217648035485],[116,34,78,5.228474919582544],[116,34,79,5.271490894156296],[116,35,64,4.653003678901135],[116,35,65,4.689413134862071],[116,35,66,4.731740807975732],[116,35,67,4.7641415473696105],[116,35,68,4.782501220723469],[116,35,69,4.796553238898904],[116,35,70,4.809286400933499],[116,35,71,4.828515878038011],[116,35,72,4.854678663321834],[116,35,73,4.8879510273334885],[116,35,74,4.922927636684076],[116,35,75,4.949736471473052],[116,35,76,4.975318830480816],[116,35,77,5.002811031503043],[116,35,78,5.037804257682307],[116,35,79,5.078754344756706],[116,36,64,4.462226683965672],[116,36,65,4.498357763783008],[116,36,66,4.538704693445645],[116,36,67,4.56871929536531],[116,36,68,4.58877480518903],[116,36,69,4.60548438375484],[116,36,70,4.6176768219854205],[116,36,71,4.634965913184177],[116,36,72,4.661376474741263],[116,36,73,4.694530641390745],[116,36,74,4.7267440839312584],[116,36,75,4.755009660186246],[116,36,76,4.782875970149632],[116,36,77,4.811235936250301],[116,36,78,4.8435511136765514],[116,36,79,4.885658964204191],[116,37,64,4.285644440131009],[116,37,65,4.318199364226592],[116,37,66,4.3513548460811124],[116,37,67,4.376418848780285],[116,37,68,4.396355851696262],[116,37,69,4.411703012748976],[116,37,70,4.423784144450309],[116,37,71,4.438662473871032],[116,37,72,4.470257434830257],[116,37,73,4.506141447759787],[116,37,74,4.538411727555457],[116,37,75,4.57082004876661],[116,37,76,4.595059204404889],[116,37,77,4.624708819645313],[116,37,78,4.658485255382736],[116,37,79,4.70456379491854],[116,38,64,4.098865162850524],[116,38,65,4.130356787171879],[116,38,66,4.161134225181752],[116,38,67,4.185505940738144],[116,38,68,4.209622257134113],[116,38,69,4.226847957400172],[116,38,70,4.23695183344016],[116,38,71,4.248842139339458],[116,38,72,4.281680933902846],[116,38,73,4.317969798159446],[116,38,74,4.348847099630522],[116,38,75,4.379684689899392],[116,38,76,4.40498422193959],[116,38,77,4.431608295561197],[116,38,78,4.469776389510809],[116,38,79,4.516648908031722],[116,39,64,3.911583308509175],[116,39,65,3.941431098350959],[116,39,66,3.9711338422019153],[116,39,67,3.996899299595395],[116,39,68,4.02173991598462],[116,39,69,4.038342618007431],[116,39,70,4.048304674035656],[116,39,71,4.060844939738794],[116,39,72,4.093159823249234],[116,39,73,4.127935142098242],[116,39,74,4.161475020750158],[116,39,75,4.190758761158165],[116,39,76,4.215465965681386],[116,39,77,4.239230619928074],[116,39,78,4.278408310758711],[116,39,79,4.326418194795648],[116,40,64,3.7346091724518504],[116,40,65,3.761464644679514],[116,40,66,3.794235534610575],[116,40,67,3.8201489920363016],[116,40,68,3.8439960630312635],[116,40,69,3.86293353652458],[116,40,70,3.8716860507696227],[116,40,71,3.8862057014884943],[116,40,72,3.9159515122174042],[116,40,73,3.9543483792144474],[116,40,74,3.988653627774155],[116,40,75,4.01618505006032],[116,40,76,4.041259210853512],[116,40,77,4.063227310681666],[116,40,78,4.101188916103533],[116,40,79,4.147780759878534],[116,41,64,3.544410620244878],[116,41,65,3.572899608409692],[116,41,66,3.602706180794421],[116,41,67,3.629322814282516],[116,41,68,3.653650901546921],[116,41,69,3.6722260638935436],[116,41,70,3.679095645241969],[116,41,71,3.6971086448947506],[116,41,72,3.7276115693875482],[116,41,73,3.768692343633959],[116,41,74,3.8035834488575633],[116,41,75,3.8293931586360053],[116,41,76,3.851784489146913],[116,41,77,3.8733069337497774],[116,41,78,3.9081620560580013],[116,41,79,3.955484683337168],[116,42,64,3.3531540815941288],[116,42,65,3.3814252934656035],[116,42,66,3.411658823180034],[116,42,67,3.437909489219869],[116,42,68,3.463982807757619],[116,42,69,3.4790143999076677],[116,42,70,3.4864504646544723],[116,42,71,3.5047259895621563],[116,42,72,3.538508846366567],[116,42,73,3.5808667109272],[116,42,74,3.6162131142602933],[116,42,75,3.641927693352041],[116,42,76,3.6629497261570867],[116,42,77,3.6835630837866726],[116,42,78,3.718083421423227],[116,42,79,3.7642871775681193],[116,43,64,3.1598926478829092],[116,43,65,3.1901188270096976],[116,43,66,3.219485849834661],[116,43,67,3.2468285776297727],[116,43,68,3.2737123675037187],[116,43,69,3.287075457577415],[116,43,70,3.2959370401392394],[116,43,71,3.315599975072573],[116,43,72,3.3501416331057228],[116,43,73,3.389577917886454],[116,43,74,3.4242608755677373],[116,43,75,3.4525437049739525],[116,43,76,3.4714162545144096],[116,43,77,3.493125508652915],[116,43,78,3.53019418883657],[116,43,79,3.574919673198075],[116,44,64,2.9669403309777898],[116,44,65,2.9927610757720418],[116,44,66,3.023827927198279],[116,44,67,3.0538039412983116],[116,44,68,3.079477489315474],[116,44,69,3.0931271175905564],[116,44,70,3.105684535037316],[116,44,71,3.123601215208787],[116,44,72,3.1566343243399437],[116,44,73,3.1962303274869694],[116,44,74,3.2316790023470285],[116,44,75,3.2600570298026095],[116,44,76,3.2765044282117164],[116,44,77,3.300878666813576],[116,44,78,3.3355711848389005],[116,44,79,3.380252087965962],[116,45,64,2.7612092649474453],[116,45,65,2.790140200924833],[116,45,66,2.8257105404717695],[116,45,67,2.862702376611459],[116,45,68,2.8910719476810383],[116,45,69,2.91185952794052],[116,45,70,2.9321804050212323],[116,45,71,2.956340789885299],[116,45,72,2.992848584007702],[116,45,73,3.033084108587591],[116,45,74,3.0685669272947034],[116,45,75,3.0961824798196385],[116,45,76,3.1124093833247164],[116,45,77,3.133168947333459],[116,45,78,3.165506264264086],[116,45,79,3.205255255301885],[116,46,64,2.5701286350955894],[116,46,65,2.595493166219843],[116,46,66,2.6337635240313464],[116,46,67,2.6710360635714876],[116,46,68,2.701517104537476],[116,46,69,2.7223016752191134],[116,46,70,2.742957237232773],[116,46,71,2.768970200971805],[116,46,72,2.8061414798843898],[116,46,73,2.845771058764279],[116,46,74,2.8826148065500377],[116,46,75,2.911375341461031],[116,46,76,2.9264348248550487],[116,46,77,2.9477338994612587],[116,46,78,2.975429236449784],[116,46,79,3.0137413094051118],[116,47,64,2.3793730454891913],[116,47,65,2.4040316263805606],[116,47,66,2.441617752456056],[116,47,67,2.4807919133184937],[116,47,68,2.5118885106438884],[116,47,69,2.5327209803386688],[116,47,70,2.5542402655275716],[116,47,71,2.581682961456377],[116,47,72,2.618998179236966],[116,47,73,2.659265480011157],[116,47,74,2.69548904038169],[116,47,75,2.7239749592936433],[116,47,76,2.7410239157712684],[116,47,77,2.7599996117045915],[116,47,78,2.7858898102170944],[116,47,79,2.823688713173946],[116,48,64,2.2009314674259337],[116,48,65,2.229816011876668],[116,48,66,2.265322519068788],[116,48,67,2.3047988558936114],[116,48,68,2.337183062128061],[116,48,69,2.3594527050388576],[116,48,70,2.3801869676434637],[116,48,71,2.40822644161448],[116,48,72,2.4446120353868834],[116,48,73,2.4846018368538885],[116,48,74,2.523098971406414],[116,48,75,2.5483449620405754],[116,48,76,2.564755718473502],[116,48,77,2.5839632602847873],[116,48,78,2.6106529439488666],[116,48,79,2.647906054495208],[116,49,64,2.011004151451082],[116,49,65,2.043490994187111],[116,49,66,2.0811462959681974],[116,49,67,2.121395636117601],[116,49,68,2.153750703186117],[116,49,69,2.181025768597397],[116,49,70,2.1997262032030322],[116,49,71,2.222129355846643],[116,49,72,2.2534531819340584],[116,49,73,2.2890291064679453],[116,49,74,2.3239400388751807],[116,49,75,2.348070529103889],[116,49,76,2.365241826529254],[116,49,77,2.381530843707152],[116,49,78,2.4090631001015606],[116,49,79,2.4475042327078347],[116,50,64,1.819139335973106],[116,50,65,1.8529090072319825],[116,50,66,1.889924883984292],[116,50,67,1.931017703302322],[116,50,68,1.9655058534738599],[116,50,69,1.9933042349505574],[116,50,70,2.011940417470234],[116,50,71,2.0346751977511746],[116,50,72,2.0620782686832864],[116,50,73,2.0979238947029204],[116,50,74,2.132663389198921],[116,50,75,2.1568272907010955],[116,50,76,2.176147859789736],[116,50,77,2.191429453553722],[116,50,78,2.214426771956226],[116,50,79,2.253055165050449],[116,51,64,1.628616849447573],[116,51,65,1.6601359822702522],[116,51,66,1.6978877205363512],[116,51,67,1.739085286909777],[116,51,68,1.7763273201999936],[116,51,69,1.8043993213888316],[116,51,70,1.8213635316500816],[116,51,71,1.8447046618605814],[116,51,72,1.8745412356616988],[116,51,73,1.9072511290819494],[116,51,74,1.9414501062383154],[116,51,75,1.9670367757904688],[116,51,76,1.9851993092585558],[116,51,77,1.9985224471368828],[116,51,78,2.021208803592108],[116,51,79,2.059668712878999],[116,52,64,1.4593776189582468],[116,52,65,1.4883239517993823],[116,52,66,1.5267050578429435],[116,52,67,1.5682757113691927],[116,52,68,1.6090221998533296],[116,52,69,1.6379806371703411],[116,52,70,1.6527373319371268],[116,52,71,1.675678301879798],[116,52,72,1.7057778896793725],[116,52,73,1.7397988866828817],[116,52,74,1.7713799009579199],[116,52,75,1.7960742089008717],[116,52,76,1.811301610508794],[116,52,77,1.8267229955462705],[116,52,78,1.8490262934023345],[116,52,79,1.8900667361402324],[116,53,64,1.275178281629535],[116,53,65,1.302036886407222],[116,53,66,1.3375232122328533],[116,53,67,1.3766063011771645],[116,53,68,1.4153468332797994],[116,53,69,1.4405837765969793],[116,53,70,1.452365182639776],[116,53,71,1.47188052052556],[116,53,72,1.5058287425178714],[116,53,73,1.5404736030001687],[116,53,74,1.5688983597467103],[116,53,75,1.593524515066313],[116,53,76,1.6095042333961864],[116,53,77,1.6255697357159664],[116,53,78,1.651971351899284],[116,53,79,1.6929980359143988],[116,54,64,1.0834540599023712],[116,54,65,1.1099925041509402],[116,54,66,1.1473086602247138],[116,54,67,1.1854058580488793],[116,54,68,1.2226991262558604],[116,54,69,1.2487438092039762],[116,54,70,1.2615387714642712],[116,54,71,1.2826870717034804],[116,54,72,1.317013877975742],[116,54,73,1.3513405968120862],[116,54,74,1.377345088473996],[116,54,75,1.401665981207366],[116,54,76,1.4173174820221783],[116,54,77,1.4321654210137567],[116,54,78,1.4603464743377288],[116,54,79,1.4990406554196587],[116,55,64,0.8939392907845335],[116,55,65,0.919021827239638],[116,55,66,0.9545150614701989],[116,55,67,0.9934162430061717],[116,55,68,1.02933028816368],[116,55,69,1.0555308288881093],[116,55,70,1.0727465414345392],[116,55,71,1.0949537759152848],[116,55,72,1.1259324034182927],[116,55,73,1.1595935144844702],[116,55,74,1.185887890818655],[116,55,75,1.2117445012040877],[116,55,76,1.2251271629074778],[116,55,77,1.242047939892327],[116,55,78,1.2695407394905194],[116,55,79,1.308508250434663],[116,56,64,0.715751985798248],[116,56,65,0.7431657912107119],[116,56,66,0.7767417587485534],[116,56,67,0.8111183328005063],[116,56,68,0.8487833975598676],[116,56,69,0.8789387262232691],[116,56,70,0.8983687101685356],[116,56,71,0.9178530460366403],[116,56,72,0.9489780862032532],[116,56,73,0.983088018437049],[116,56,74,1.010508192246307],[116,56,75,1.0363351835331265],[116,56,76,1.0508344629653816],[116,56,77,1.0677921451592687],[116,56,78,1.0965821229769694],[116,56,79,1.1343414512691345],[116,57,64,0.5238991122429388],[116,57,65,0.5523314003556605],[116,57,66,0.5860168299974751],[116,57,67,0.6238840076587084],[116,57,68,0.6608960839102708],[116,57,69,0.6907811714715101],[116,57,70,0.7104582014982417],[116,57,71,0.7279491780940911],[116,57,72,0.7545484697883499],[116,57,73,0.7843397085096869],[116,57,74,0.8137587139375859],[116,57,75,0.8370555285808488],[116,57,76,0.8530122112829753],[116,57,77,0.873009011511648],[116,57,78,0.9021424119445597],[116,57,79,0.9389774039210216],[116,58,64,0.3750203299848602],[116,58,65,0.400046656406083],[116,58,66,0.4331125726485463],[116,58,67,0.47534587013198154],[116,58,68,0.5099636157251356],[116,58,69,0.5396101109352631],[116,58,70,0.5574091265654355],[116,58,71,0.5733924527560782],[116,58,72,0.5991456657317404],[116,58,73,0.6315086158217504],[116,58,74,0.6599522828226498],[116,58,75,0.6800196328701875],[116,58,76,0.7004582513523147],[116,58,77,0.7173587194226506],[116,58,78,0.744279131896021],[116,58,79,0.7831871336664681],[116,59,64,0.1816947974007127],[116,59,65,0.20820639183050146],[116,59,66,0.23919885659628762],[116,59,67,0.2823025033861721],[116,59,68,0.31795842759193915],[116,59,69,0.34347319928477726],[116,59,70,0.3628521368623394],[116,59,71,0.38152682695766604],[116,59,72,0.40489315038277807],[116,59,73,0.43998748716932],[116,59,74,0.4664976689846657],[116,59,75,0.489064050381789],[116,59,76,0.5095266282731035],[116,59,77,0.5270517299357539],[116,59,78,0.5526874788853049],[116,59,79,0.5903256706002784],[116,60,64,0.07071389140748437],[116,60,65,0.07405401434030082],[116,60,66,0.07483577816545116],[116,60,67,0.08202950784334619],[116,60,68,0.11627967585689443],[116,60,69,0.1454568989712946],[116,60,70,0.16673828608971086],[116,60,71,0.18319535083483124],[116,60,72,0.209518540221943],[116,60,73,0.2441024870578421],[116,60,74,0.27293820620350506],[116,60,75,0.29436421660060397],[116,60,76,0.31511682267467866],[116,60,77,0.33334294303028045],[116,60,78,0.3563379932630564],[116,60,79,0.39449505403701657],[116,61,64,0.028809793409855844],[116,61,65,0.02476089941924088],[116,61,66,0.01921166044746994],[116,61,67,0.02133239801592736],[116,61,68,0.022375122177545267],[116,61,69,0.028630189143043397],[116,61,70,0.034982451694281214],[116,61,71,0.036982021871935444],[116,61,72,0.04567404794017359],[116,61,73,0.05391601774657398],[116,61,74,0.08533402566483471],[116,61,75,0.10632527059051357],[116,61,76,0.12702647366176228],[116,61,77,0.14585485771245282],[116,61,78,0.17086418412036014],[116,61,79,0.21260514055315907],[116,62,64,-0.019969355733900157],[116,62,65,-0.026468816625974126],[116,62,66,-0.030692260210192487],[116,62,67,-0.03119885919861695],[116,62,68,-0.03070225496088501],[116,62,69,-0.02293221642792627],[116,62,70,-0.013846319813169944],[116,62,71,-0.012243508018731586],[116,62,72,-0.002862478219292211],[116,62,73,0.006291905118596633],[116,62,74,0.012523557609709676],[116,62,75,0.01475705533802478],[116,62,76,0.023759963786680452],[116,62,77,0.029534216687899698],[116,62,78,0.04024471268863493],[116,62,79,0.05473744458989348],[116,63,64,-0.14264795018591725],[116,63,65,-0.14877585867633075],[116,63,66,-0.15587644649211718],[116,63,67,-0.15375068575236678],[116,63,68,-0.15319614124511222],[116,63,69,-0.14570893318817335],[116,63,70,-0.1360860750783874],[116,63,71,-0.12916251851026922],[116,63,72,-0.1198267538345169],[116,63,73,-0.11063717207083743],[116,63,74,-0.10572769471020922],[116,63,75,-0.10089827404363495],[116,63,76,-0.09164096781116511],[116,63,77,-0.08771157726427821],[116,63,78,-0.07617896562304553],[116,63,79,-0.062020441955219566],[116,64,64,-0.18065793330173036],[116,64,65,-0.18954481507555587],[116,64,66,-0.19685813513771527],[116,64,67,-0.19536679100032117],[116,64,68,-0.19204179446145647],[116,64,69,-0.18707122476963178],[116,64,70,-0.176309705903676],[116,64,71,-0.16934977386219274],[116,64,72,-0.15897879893916517],[116,64,73,-0.14631109126254083],[116,64,74,-0.14358242488279105],[116,64,75,-0.1354099742076287],[116,64,76,-0.12734517135355977],[116,64,77,-0.12078464164844166],[116,64,78,-0.11361881124482973],[116,64,79,-0.10292511759923187],[116,65,64,-0.23225810383886358],[116,65,65,-0.2418031435012514],[116,65,66,-0.24796149401881562],[116,65,67,-0.24394399842429473],[116,65,68,-0.2404794073642879],[116,65,69,-0.23614458149101747],[116,65,70,-0.22741753330866493],[116,65,71,-0.22022771571002736],[116,65,72,-0.2069044390377031],[116,65,73,-0.19431853848808184],[116,65,74,-0.19189882879244918],[116,65,75,-0.18464043079060616],[116,65,76,-0.17386784877554837],[116,65,77,-0.1669629987191138],[116,65,78,-0.1627587176539684],[116,65,79,-0.1548676367398022],[116,66,64,-0.28944378731952125],[116,66,65,-0.30043031089141453],[116,66,66,-0.30374353471107735],[116,66,67,-0.30069472619349774],[116,66,68,-0.29520737715764594],[116,66,69,-0.2894236104476693],[116,66,70,-0.2817420771086345],[116,66,71,-0.273794121367952],[116,66,72,-0.26115148514950637],[116,66,73,-0.24978123229036664],[116,66,74,-0.2461933684359338],[116,66,75,-0.236842103398822],[116,66,76,-0.22617067102544308],[116,66,77,-0.22280156888805866],[116,66,78,-0.21837964548904915],[116,66,79,-0.21227083958123338],[116,67,64,-0.3415980474500583],[116,67,65,-0.35243627941204697],[116,67,66,-0.353750508567765],[116,67,67,-0.3519243698321932],[116,67,68,-0.3451804405643605],[116,67,69,-0.33695345326050163],[116,67,70,-0.33133523413391974],[116,67,71,-0.3213306692722564],[116,67,72,-0.30794257441244666],[116,67,73,-0.297836456871159],[116,67,74,-0.29219997791521946],[116,67,75,-0.28645227630898007],[116,67,76,-0.27688239150800625],[116,67,77,-0.27611801923161644],[116,67,78,-0.27112464447915774],[116,67,79,-0.2634147679150942],[116,68,64,-0.4817247776989934],[116,68,65,-0.491261312567957],[116,68,66,-0.49499801253454323],[116,68,67,-0.49250906159219177],[116,68,68,-0.48211078657759554],[116,68,69,-0.47492154239033585],[116,68,70,-0.4664026084169277],[116,68,71,-0.45619576059320643],[116,68,72,-0.443576568314338],[116,68,73,-0.4338462580393161],[116,68,74,-0.4282876080766536],[116,68,75,-0.4233031327721346],[116,68,76,-0.41635614573978635],[116,68,77,-0.4153210086998066],[116,68,78,-0.40931052444425975],[116,68,79,-0.40205597096095114],[116,69,64,-0.5405127244719085],[116,69,65,-0.5479464280017419],[116,69,66,-0.54931874811079],[116,69,67,-0.5444981003946993],[116,69,68,-0.5278885227218534],[116,69,69,-0.516639494437746],[116,69,70,-0.5043535577500129],[116,69,71,-0.488023058900696],[116,69,72,-0.4710142569162683],[116,69,73,-0.4604448179790046],[116,69,74,-0.455386608215263],[116,69,75,-0.4519493723290616],[116,69,76,-0.4477151672794577],[116,69,77,-0.452443945648933],[116,69,78,-0.45116096215859824],[116,69,79,-0.44483820200585955],[116,70,64,-0.5922941062163741],[116,70,65,-0.5988611935565628],[116,70,66,-0.598039370098532],[116,70,67,-0.5949079142419728],[116,70,68,-0.5779584392544286],[116,70,69,-0.5667528802352403],[116,70,70,-0.5533885343003278],[116,70,71,-0.5381185640512228],[116,70,72,-0.5218442089642188],[116,70,73,-0.5103794976935502],[116,70,74,-0.5050216183413239],[116,70,75,-0.49990727037776206],[116,70,76,-0.498283478852102],[116,70,77,-0.5041852599347874],[116,70,78,-0.5029486289421543],[116,70,79,-0.4970444009126339],[116,71,64,-0.6343826939998474],[116,71,65,-0.6382811971311583],[116,71,66,-0.638464911692477],[116,71,67,-0.6336843135020968],[116,71,68,-0.6163045797449032],[116,71,69,-0.6046971909038124],[116,71,70,-0.5925183774245968],[116,71,71,-0.5777433985306236],[116,71,72,-0.5617676129712149],[116,71,73,-0.5507870179824028],[116,71,74,-0.5458902043921285],[116,71,75,-0.54130230196286],[116,71,76,-0.5405276840967772],[116,71,77,-0.5456241882593967],[116,71,78,-0.5451077665693345],[116,71,79,-0.537633991266386],[116,72,64,-0.6870471234224012],[116,72,65,-0.6917941478593113],[116,72,66,-0.6907452550368718],[116,72,67,-0.6823252221646141],[116,72,68,-0.664358078511026],[116,72,69,-0.6538098815384155],[116,72,70,-0.6429087936528104],[116,72,71,-0.6283474323040708],[116,72,72,-0.6121201968107111],[116,72,73,-0.5999968263515731],[116,72,74,-0.5964734998839598],[116,72,75,-0.5934818957716119],[116,72,76,-0.5939083176425665],[116,72,77,-0.5982074509512734],[116,72,78,-0.5959738297792996],[116,72,79,-0.5860824423276142],[116,73,64,-0.7492848263445696],[116,73,65,-0.747940735654785],[116,73,66,-0.7383491813914485],[116,73,67,-0.7246686681170429],[116,73,68,-0.706066710327148],[116,73,69,-0.6962378085233886],[116,73,70,-0.6881344335175716],[116,73,71,-0.676292249305608],[116,73,72,-0.6659160592617267],[116,73,73,-0.6589699992249605],[116,73,74,-0.6545515208287537],[116,73,75,-0.6513888902113855],[116,73,76,-0.6528539619613087],[116,73,77,-0.6543404851054927],[116,73,78,-0.6505202664171363],[116,73,79,-0.6371105229598779],[116,74,64,-0.8053348412286963],[116,74,65,-0.805721615459987],[116,74,66,-0.7953507975081501],[116,74,67,-0.7786201252403966],[116,74,68,-0.7608819178722507],[116,74,69,-0.7485200887821329],[116,74,70,-0.741154415904495],[116,74,71,-0.7300213492624631],[116,74,72,-0.717882194985549],[116,74,73,-0.712868909318935],[116,74,74,-0.7101082331103414],[116,74,75,-0.7079395236504974],[116,74,76,-0.7092140473266951],[116,74,77,-0.7114773217216915],[116,74,78,-0.7082034397143923],[116,74,79,-0.6965772446228101],[116,75,64,-0.8552738382257511],[116,75,65,-0.8542216440475412],[116,75,66,-0.8432515794579826],[116,75,67,-0.8271342983740858],[116,75,68,-0.8101883775007725],[116,75,69,-0.7973931256213588],[116,75,70,-0.7888734450951592],[116,75,71,-0.7772207403981064],[116,75,72,-0.7660310470606586],[116,75,73,-0.7602823353597035],[116,75,74,-0.761635202305603],[116,75,75,-0.7595563679062272],[116,75,76,-0.7613266200220021],[116,75,77,-0.7604327900918124],[116,75,78,-0.7594293164438345],[116,75,79,-0.7512946198543969],[116,76,64,-0.8985660230488413],[116,76,65,-0.8968852896159619],[116,76,66,-0.8862307886131651],[116,76,67,-0.8702873800177316],[116,76,68,-0.8545169455622489],[116,76,69,-0.8423686074742536],[116,76,70,-0.8326488508524319],[116,76,71,-0.822980940483833],[116,76,72,-0.8138378902064656],[116,76,73,-0.8088231521444995],[116,76,74,-0.8115721696517102],[116,76,75,-0.8107113824832947],[116,76,76,-0.8088957930381004],[116,76,77,-0.8079228432954992],[116,76,78,-0.807704518083218],[116,76,79,-0.803946142620831],[116,77,64,-0.9460140674328928],[116,77,65,-0.9443475847889655],[116,77,66,-0.9355029436723765],[116,77,67,-0.9234410295536526],[116,77,68,-0.908766788246011],[116,77,69,-0.8999576431936238],[116,77,70,-0.8911032141506314],[116,77,71,-0.8815656960278047],[116,77,72,-0.8749508508523738],[116,77,73,-0.870895613095295],[116,77,74,-0.8713015631212132],[116,77,75,-0.869484727507711],[116,77,76,-0.8670120784068602],[116,77,77,-0.8673974367621676],[116,77,78,-0.8660664651101604],[116,77,79,-0.8636146479342278],[116,78,64,-0.9962138326009912],[116,78,65,-0.9931692120730666],[116,78,66,-0.9869462713967183],[116,78,67,-0.9734695870783152],[116,78,68,-0.958800555605387],[116,78,69,-0.9488563087287792],[116,78,70,-0.9387702183955304],[116,78,71,-0.9332743552425763],[116,78,72,-0.924560478919989],[116,78,73,-0.9218874142939707],[116,78,74,-0.9206654613122649],[116,78,75,-0.9199113985299112],[116,78,76,-0.9173372949612972],[116,78,77,-0.9195970783870632],[116,78,78,-0.9203070639370323],[116,78,79,-0.9177905857673669],[116,79,64,-1.0337761918897233],[116,79,65,-1.0309194117284108],[116,79,66,-1.0250860698883635],[116,79,67,-1.0116421504606192],[116,79,68,-0.9981579335676029],[116,79,69,-0.9885354248517626],[116,79,70,-0.9773471368473289],[116,79,71,-0.9719361953363427],[116,79,72,-0.9628407098768796],[116,79,73,-0.9619483146629182],[116,79,74,-0.9616014718675463],[116,79,75,-0.9621116239031389],[116,79,76,-0.959436541808568],[116,79,77,-0.9637566040614375],[116,79,78,-0.9641220669560977],[116,79,79,-0.9612722812754507],[116,80,64,-1.0829276408392834],[116,80,65,-1.0788767640287507],[116,80,66,-1.0721567516469463],[116,80,67,-1.05996458674152],[116,80,68,-1.0465071437324318],[116,80,69,-1.0378125506168976],[116,80,70,-1.0266371199990336],[116,80,71,-1.0226170371189485],[116,80,72,-1.0139016153373606],[116,80,73,-1.0130619583329732],[116,80,74,-1.0118517819237858],[116,80,75,-1.011747135409495],[116,80,76,-1.0102150034726587],[116,80,77,-1.0163111302043712],[116,80,78,-1.018151664434748],[116,80,79,-1.013503466844825],[116,81,64,-1.1284418087307504],[116,81,65,-1.1218706375759204],[116,81,66,-1.1146860140333583],[116,81,67,-1.099285011371562],[116,81,68,-1.0874995000193703],[116,81,69,-1.0780321755420608],[116,81,70,-1.0695795803291348],[116,81,71,-1.0628969727554107],[116,81,72,-1.0547507565203982],[116,81,73,-1.0538159166629504],[116,81,74,-1.0542910415234963],[116,81,75,-1.053333511721134],[116,81,76,-1.055687690249556],[116,81,77,-1.0663723620200463],[116,81,78,-1.0730741826210863],[116,81,79,-1.071501807903983],[116,82,64,-1.181944304843061],[116,82,65,-1.1770943258938564],[116,82,66,-1.1687424398919692],[116,82,67,-1.1540320594992737],[116,82,68,-1.1403453443930043],[116,82,69,-1.1297145694134012],[116,82,70,-1.1236831083358085],[116,82,71,-1.1167556459441395],[116,82,72,-1.1100981078654928],[116,82,73,-1.1074301455179059],[116,82,74,-1.1108385002358807],[116,82,75,-1.1116831362276396],[116,82,76,-1.1117166739142668],[116,82,77,-1.1225338645529985],[116,82,78,-1.130184059231222],[116,82,79,-1.1290264337785028],[116,83,64,-1.2278905980075658],[116,83,65,-1.2248515963096347],[116,83,66,-1.2134468745685234],[116,83,67,-1.2000883715039545],[116,83,68,-1.188676543217322],[116,83,69,-1.1811833241852847],[116,83,70,-1.1746797062698795],[116,83,71,-1.169449571040947],[116,83,72,-1.1645101259094903],[116,83,73,-1.1593671945711475],[116,83,74,-1.161014048251482],[116,83,75,-1.1629679037034122],[116,83,76,-1.163180852629971],[116,83,77,-1.1726416868147445],[116,83,78,-1.1846687903384523],[116,83,79,-1.1813289662049],[116,84,64,-1.2752768644759152],[116,84,65,-1.2688922503265212],[116,84,66,-1.2585751676652674],[116,84,67,-1.2459597560278317],[116,84,68,-1.2348370936418684],[116,84,69,-1.2291366769762937],[116,84,70,-1.2274631021204212],[116,84,71,-1.222410607436992],[116,84,72,-1.2152101016843362],[116,84,73,-1.2093239618518798],[116,84,74,-1.2111439128569819],[116,84,75,-1.2118007329796807],[116,84,76,-1.2146289798116372],[116,84,77,-1.223518584547848],[116,84,78,-1.2349304751846792],[116,84,79,-1.232373592267491],[116,85,64,-1.3333758806274718],[116,85,65,-1.3308974753470562],[116,85,66,-1.323294679085417],[116,85,67,-1.3139147585959867],[116,85,68,-1.3042279845022118],[116,85,69,-1.2989837996974871],[116,85,70,-1.2984047935530807],[116,85,71,-1.2933660407645968],[116,85,72,-1.2832596737451551],[116,85,73,-1.2771266379820614],[116,85,74,-1.279717718562743],[116,85,75,-1.2824624824696191],[116,85,76,-1.2856810326563026],[116,85,77,-1.2860808235980856],[116,85,78,-1.2894722984549243],[116,85,79,-1.281697937384989],[116,86,64,-1.3820543236068499],[116,86,65,-1.382131584643366],[116,86,66,-1.37614385864187],[116,86,67,-1.3634889452841015],[116,86,68,-1.3549668508735548],[116,86,69,-1.3494462751521086],[116,86,70,-1.3496200020231401],[116,86,71,-1.3419975073982255],[116,86,72,-1.3345457359532265],[116,86,73,-1.3273221319275519],[116,86,74,-1.3292330937164931],[116,86,75,-1.3324239616882214],[116,86,76,-1.3378158927729442],[116,86,77,-1.3379768496751752],[116,86,78,-1.3403893226653403],[116,86,79,-1.3312332461746204],[116,87,64,-1.422704567288826],[116,87,65,-1.421691522406749],[116,87,66,-1.418132371882165],[116,87,67,-1.4074648454519132],[116,87,68,-1.3979115122541996],[116,87,69,-1.3913439614483571],[116,87,70,-1.3890883036325108],[116,87,71,-1.3807334265385005],[116,87,72,-1.3739506715357694],[116,87,73,-1.3683451707610135],[116,87,74,-1.3689281704564646],[116,87,75,-1.3729063182096097],[116,87,76,-1.377592784692948],[116,87,77,-1.3811074380567507],[116,87,78,-1.3819351530433615],[116,87,79,-1.372612395773851],[116,88,64,-1.4725451782937191],[116,88,65,-1.47140416199065],[116,88,66,-1.4689102012948811],[116,88,67,-1.4579435230965407],[116,88,68,-1.4489965769229007],[116,88,69,-1.4414217336615802],[116,88,70,-1.4389637758497624],[116,88,71,-1.429930520337081],[116,88,72,-1.4238512959892875],[116,88,73,-1.4178658525690937],[116,88,74,-1.420707112121708],[116,88,75,-1.42196415758253],[116,88,76,-1.4247358490927755],[116,88,77,-1.4298517703358242],[116,88,78,-1.430536725144379],[116,88,79,-1.4221147012701878],[116,89,64,-1.5230823716196333],[116,89,65,-1.5213620934723324],[116,89,66,-1.517410230480908],[116,89,67,-1.50682709208986],[116,89,68,-1.498343329227274],[116,89,69,-1.489415333112581],[116,89,70,-1.4868769455695183],[116,89,71,-1.481065205975234],[116,89,72,-1.4732419397734247],[116,89,73,-1.4678765038118176],[116,89,74,-1.4698224905530375],[116,89,75,-1.4710839469016952],[116,89,76,-1.4712778520358238],[116,89,77,-1.4763665871432665],[116,89,78,-1.480018746502251],[116,89,79,-1.4712588588155278],[116,90,64,-1.5760050412723678],[116,90,65,-1.574708450653366],[116,90,66,-1.5699970490787447],[116,90,67,-1.5598241932158283],[116,90,68,-1.553572439823238],[116,90,69,-1.5435180800056192],[116,90,70,-1.5395850389802281],[116,90,71,-1.5341422099081368],[116,90,72,-1.5283823195224382],[116,90,73,-1.5228163608553995],[116,90,74,-1.5230125108030206],[116,90,75,-1.5237002166477458],[116,90,76,-1.5221636319118415],[116,90,77,-1.527640425973333],[116,90,78,-1.5322756888020854],[116,90,79,-1.5257991267942381],[116,91,64,-1.6230933480134828],[116,91,65,-1.6233643428385571],[116,91,66,-1.6173628321482623],[116,91,67,-1.607175378757417],[116,91,68,-1.601960359821404],[116,91,69,-1.5922497040966115],[116,91,70,-1.5876970398843855],[116,91,71,-1.580996159869369],[116,91,72,-1.5758568325737066],[116,91,73,-1.5717041335943818],[116,91,74,-1.569875541991891],[116,91,75,-1.5679243590287166],[116,91,76,-1.5686284850490788],[116,91,77,-1.5751338145828826],[116,91,78,-1.5769778358815487],[116,91,79,-1.5724289953292725],[116,92,64,-1.6505485242313473],[116,92,65,-1.650763564401993],[116,92,66,-1.6437278373566182],[116,92,67,-1.6314494071727883],[116,92,68,-1.6265484851854495],[116,92,69,-1.6184878308590631],[116,92,70,-1.6154267937795024],[116,92,71,-1.6106816365576406],[116,92,72,-1.6040334935926452],[116,92,73,-1.5994108474989612],[116,92,74,-1.5949968336980158],[116,92,75,-1.5952891713525919],[116,92,76,-1.5962659782558846],[116,92,77,-1.6003483696764558],[116,92,78,-1.6051994871143553],[116,92,79,-1.6017374470041967],[116,93,64,-1.7047669996763841],[116,93,65,-1.7055784336951454],[116,93,66,-1.6952508762054666],[116,93,67,-1.6825678746226131],[116,93,68,-1.6772789296786144],[116,93,69,-1.6721965627365603],[116,93,70,-1.6676174885829325],[116,93,71,-1.6580246818470163],[116,93,72,-1.6471452610446544],[116,93,73,-1.6366981250940833],[116,93,74,-1.6334594794161217],[116,93,75,-1.632200035631731],[116,93,76,-1.636837922789547],[116,93,77,-1.647705755940277],[116,93,78,-1.6566537179311367],[116,93,79,-1.6567245531175405],[116,94,64,-1.7535862117879555],[116,94,65,-1.7519727186745795],[116,94,66,-1.7441353335036844],[116,94,67,-1.7331355623298121],[116,94,68,-1.726237195475178],[116,94,69,-1.720521458595226],[116,94,70,-1.7158106928942005],[116,94,71,-1.7058728203618754],[116,94,72,-1.690449513724696],[116,94,73,-1.6826083048014753],[116,94,74,-1.6798378927104252],[116,94,75,-1.6765282922368385],[116,94,76,-1.6858583886894996],[116,94,77,-1.6958796592530376],[116,94,78,-1.705766271681998],[116,94,79,-1.7056584601892513],[116,95,64,-1.790198420500974],[116,95,65,-1.7880524322011015],[116,95,66,-1.783195313784958],[116,95,67,-1.7715333067643944],[116,95,68,-1.7638031558546556],[116,95,69,-1.7575469807653752],[116,95,70,-1.751534103671531],[116,95,71,-1.7444977070240548],[116,95,72,-1.7287234450481068],[116,95,73,-1.71999591584669],[116,95,74,-1.717616900105945],[116,95,75,-1.7174228658267294],[116,95,76,-1.7274809407718206],[116,95,77,-1.7378928333100163],[116,95,78,-1.7465321068782822],[116,95,79,-1.746046697106103],[116,96,64,-1.8379200642982298],[116,96,65,-1.8349481204865754],[116,96,66,-1.8305649789938143],[116,96,67,-1.820788591675868],[116,96,68,-1.8089588054221517],[116,96,69,-1.8020586128550469],[116,96,70,-1.7972730590187198],[116,96,71,-1.791109954642164],[116,96,72,-1.7759458512802448],[116,96,73,-1.7670968596009222],[116,96,74,-1.765180597164216],[116,96,75,-1.7670716161910252],[116,96,76,-1.7767653714771625],[116,96,77,-1.7880791443949842],[116,96,78,-1.794795418759187],[116,96,79,-1.7960269693224828],[116,97,64,-1.8779152509744614],[116,97,65,-1.874216684537565],[116,97,66,-1.8687792514937922],[116,97,67,-1.8571693297951415],[116,97,68,-1.8465132274263723],[116,97,69,-1.8382056779849298],[116,97,70,-1.8380433577194526],[116,97,71,-1.8369777355637686],[116,97,72,-1.827893011085737],[116,97,73,-1.8229146414128166],[116,97,74,-1.8197062309786343],[116,97,75,-1.8236905507314982],[116,97,76,-1.8322619722987243],[116,97,77,-1.8388467861089257],[116,97,78,-1.8398617906494892],[116,97,79,-1.8374249203055928],[116,98,64,-1.9318042376312161],[116,98,65,-1.9271066138066375],[116,98,66,-1.9207144863976575],[116,98,67,-1.9080557644062197],[116,98,68,-1.8981912337977251],[116,98,69,-1.8898426421963757],[116,98,70,-1.8918111910762507],[116,98,71,-1.8895271036588466],[116,98,72,-1.880861586852087],[116,98,73,-1.8763078939881819],[116,98,74,-1.874452462861919],[116,98,75,-1.8780754239792918],[116,98,76,-1.884361628468027],[116,98,77,-1.8890059621667334],[116,98,78,-1.8896209347582509],[116,98,79,-1.8879340226288615],[116,99,64,-1.977464698097661],[116,99,65,-1.9740727236923303],[116,99,66,-1.96674643576367],[116,99,67,-1.9557775766750174],[116,99,68,-1.9445890021499213],[116,99,69,-1.9383818867724327],[116,99,70,-1.9380368582942338],[116,99,71,-1.9342520107198296],[116,99,72,-1.9302229225597962],[116,99,73,-1.9243410891072013],[116,99,74,-1.9249326200679528],[116,99,75,-1.927815380426597],[116,99,76,-1.931940548361459],[116,99,77,-1.9359175143653737],[116,99,78,-1.9351508484959756],[116,99,79,-1.933502741405907],[116,100,64,-1.9869975852585813],[116,100,65,-1.9804478839655033],[116,100,66,-1.9709555875308955],[116,100,67,-1.957601979230674],[116,100,68,-1.942088281914332],[116,100,69,-1.9378040303794317],[116,100,70,-1.9327237811519609],[116,100,71,-1.9256633547418087],[116,100,72,-1.9228219327988474],[116,100,73,-1.9198579912948885],[116,100,74,-1.918593507973504],[116,100,75,-1.9190331536249385],[116,100,76,-1.9231155950459013],[116,100,77,-1.9290635000735914],[116,100,78,-1.9278253680484148],[116,100,79,-1.9254946834914193],[116,101,64,-2.0322222088819677],[116,101,65,-2.0257293597215744],[116,101,66,-2.018630462611433],[116,101,67,-2.0055944267280186],[116,101,68,-1.9907054109090578],[116,101,69,-1.9857193311953758],[116,101,70,-1.9793674286247704],[116,101,71,-1.9735406034945502],[116,101,72,-1.969250830349909],[116,101,73,-1.9678368137407736],[116,101,74,-1.9663574073229804],[116,101,75,-1.9651615928102508],[116,101,76,-1.9688666760830615],[116,101,77,-1.976485200649973],[116,101,78,-1.9751569808337228],[116,101,79,-1.9728200822312367],[116,102,64,-2.079246289715433],[116,102,65,-2.075157577768523],[116,102,66,-2.06852129385735],[116,102,67,-2.0550950153943144],[116,102,68,-2.0426933961976803],[116,102,69,-2.035225175577379],[116,102,70,-2.0274650652097743],[116,102,71,-2.020883229335097],[116,102,72,-2.0178021472771914],[116,102,73,-2.0152085866202913],[116,102,74,-2.013371586083679],[116,102,75,-2.0128055949485426],[116,102,76,-2.014003910385503],[116,102,77,-2.021935229324615],[116,102,78,-2.0225679471115554],[116,102,79,-2.022635405667615],[116,103,64,-2.1194511191840375],[116,103,65,-2.1182204099333473],[116,103,66,-2.111299196051284],[116,103,67,-2.0967220713435886],[116,103,68,-2.0851919308244127],[116,103,69,-2.0743547791887624],[116,103,70,-2.0685073674987704],[116,103,71,-2.061869896051892],[116,103,72,-2.0581322157188446],[116,103,73,-2.0579718698661056],[116,103,74,-2.056470394549369],[116,103,75,-2.054780337879789],[116,103,76,-2.0570227613428393],[116,103,77,-2.065116018400428],[116,103,78,-2.0664831702289064],[116,103,79,-2.0698540120277484],[116,104,64,-2.1698568950140413],[116,104,65,-2.1689606160313257],[116,104,66,-2.1623333279842427],[116,104,67,-2.148371282424706],[116,104,68,-2.1345086089381153],[116,104,69,-2.1238048951094552],[116,104,70,-2.116587543740668],[116,104,71,-2.109265985559874],[116,104,72,-2.106683944327214],[116,104,73,-2.105954584350468],[116,104,74,-2.10346979195105],[116,104,75,-2.101321593323656],[116,104,76,-2.105585239065232],[116,104,77,-2.113903590579977],[116,104,78,-2.117394478756077],[116,104,79,-2.121530863403005],[116,105,64,-2.2139229771841378],[116,105,65,-2.212036123546454],[116,105,66,-2.204003241003739],[116,105,67,-2.188942783441608],[116,105,68,-2.1765985767263345],[116,105,69,-2.1661304172636546],[116,105,70,-2.156736565857562],[116,105,71,-2.1484043959130807],[116,105,72,-2.1448017801306483],[116,105,73,-2.142918397282885],[116,105,74,-2.1375642448929137],[116,105,75,-2.13851744069985],[116,105,76,-2.147619391912921],[116,105,77,-2.163255016660661],[116,105,78,-2.174098143473825],[116,105,79,-2.179594554895493],[116,106,64,-2.2683170084561755],[116,106,65,-2.26615347843455],[116,106,66,-2.2558226892054187],[116,106,67,-2.2428043976860748],[116,106,68,-2.230463109123834],[116,106,69,-2.2176728039115776],[116,106,70,-2.209183446007346],[116,106,71,-2.1991173140511093],[116,106,72,-2.1976571104349643],[116,106,73,-2.193180174403865],[116,106,74,-2.1885823177896206],[116,106,75,-2.1928325211328783],[116,106,76,-2.202316309656559],[116,106,77,-2.2196013009209286],[116,106,78,-2.2283248009901175],[116,106,79,-2.2318712001417373],[116,107,64,-2.314565913788166],[116,107,65,-2.3144589528961537],[116,107,66,-2.3048525876297368],[116,107,67,-2.290185354759676],[116,107,68,-2.2785340096362248],[116,107,69,-2.2667277853732077],[116,107,70,-2.257587383592774],[116,107,71,-2.247243365886072],[116,107,72,-2.244265079891122],[116,107,73,-2.240917021629678],[116,107,74,-2.2359693281820583],[116,107,75,-2.242250314573288],[116,107,76,-2.25205494263977],[116,107,77,-2.2675708478615615],[116,107,78,-2.276806447947412],[116,107,79,-2.277580786265753],[116,108,64,-2.3683919490726844],[116,108,65,-2.3678040890970253],[116,108,66,-2.359791507129079],[116,108,67,-2.3440067093651002],[116,108,68,-2.331358766677368],[116,108,69,-2.3191686418221056],[116,108,70,-2.3087080440973944],[116,108,71,-2.301511449157089],[116,108,72,-2.296350509173268],[116,108,73,-2.2933099046794716],[116,108,74,-2.289647720535674],[116,108,75,-2.2948052316130414],[116,108,76,-2.3049151266947208],[116,108,77,-2.3205847697147526],[116,108,78,-2.330254061187675],[116,108,79,-2.332864599718717],[116,109,64,-2.42696288310336],[116,109,65,-2.4268092862523356],[116,109,66,-2.4219890941172877],[116,109,67,-2.4059625159706672],[116,109,68,-2.3921625359930507],[116,109,69,-2.3790281955299686],[116,109,70,-2.372345528278113],[116,109,71,-2.3631132826925523],[116,109,72,-2.35721648903255],[116,109,73,-2.353459727078416],[116,109,74,-2.3505624991331304],[116,109,75,-2.3522832076812645],[116,109,76,-2.3609707664502655],[116,109,77,-2.371424909395427],[116,109,78,-2.378081920711954],[116,109,79,-2.373777419401516],[116,110,64,-2.4751371359613805],[116,110,65,-2.4780352376592245],[116,110,66,-2.4731828575490233],[116,110,67,-2.4571867668980447],[116,110,68,-2.4435676367582695],[116,110,69,-2.4319562699701716],[116,110,70,-2.423387679840564],[116,110,71,-2.4150908413501204],[116,110,72,-2.406730083800748],[116,110,73,-2.4034008621026],[116,110,74,-2.4024866481832476],[116,110,75,-2.4018090707858017],[116,110,76,-2.407557775838311],[116,110,77,-2.4195736252615125],[116,110,78,-2.4258490996285484],[116,110,79,-2.4222720855399755],[116,111,64,-2.5161603058913475],[116,111,65,-2.5201170270714135],[116,111,66,-2.516086727544441],[116,111,67,-2.4997649385817025],[116,111,68,-2.4896819234856515],[116,111,69,-2.4777701347118803],[116,111,70,-2.4689973309853888],[116,111,71,-2.4603720454212477],[116,111,72,-2.4533390719833466],[116,111,73,-2.4476185955234944],[116,111,74,-2.449410622941091],[116,111,75,-2.4479605884913456],[116,111,76,-2.45272321491889],[116,111,77,-2.4654559954536794],[116,111,78,-2.4713492308227902],[116,111,79,-2.468074172514066],[116,112,64,-2.5657304949142223],[116,112,65,-2.5725019674227276],[116,112,66,-2.5673645872366486],[116,112,67,-2.55033502910769],[116,112,68,-2.542017880532972],[116,112,69,-2.5287754617921654],[116,112,70,-2.5186366718370623],[116,112,71,-2.511005110761025],[116,112,72,-2.5027081636864326],[116,112,73,-2.4964065474003183],[116,112,74,-2.497065219246687],[116,112,75,-2.4975417395445234],[116,112,76,-2.503354015070047],[116,112,77,-2.516027834904802],[116,112,78,-2.5204758062164356],[116,112,79,-2.514751484386024],[116,113,64,-2.6141125570168793],[116,113,65,-2.6213226591125482],[116,113,66,-2.61860118498946],[116,113,67,-2.601513669703009],[116,113,68,-2.5906010823460894],[116,113,69,-2.577609782721438],[116,113,70,-2.5662519191030917],[116,113,71,-2.560208638105247],[116,113,72,-2.5528948637213347],[116,113,73,-2.5467019781245868],[116,113,74,-2.5481046080498344],[116,113,75,-2.54702683727192],[116,113,76,-2.5514477969258778],[116,113,77,-2.563848307233886],[116,113,78,-2.5681422456606398],[116,113,79,-2.560899652598406],[116,114,64,-2.6681237389781907],[116,114,65,-2.6748037970532255],[116,114,66,-2.670110450121211],[116,114,67,-2.6548807150452225],[116,114,68,-2.64308171817163],[116,114,69,-2.6310725865210154],[116,114,70,-2.618324398679451],[116,114,71,-2.616255219047065],[116,114,72,-2.6091838988798663],[116,114,73,-2.6045656228774514],[116,114,74,-2.605176301485838],[116,114,75,-2.600969277845529],[116,114,76,-2.6059947638873733],[116,114,77,-2.6185467907798676],[116,114,78,-2.6195174117295013],[116,114,79,-2.610717859928831],[116,115,64,-2.7161929348740848],[116,115,65,-2.723983946801122],[116,115,66,-2.7170639683102413],[116,115,67,-2.7000166441060447],[116,115,68,-2.6892317068362863],[116,115,69,-2.679601023175289],[116,115,70,-2.667570035818485],[116,115,71,-2.667169300957937],[116,115,72,-2.66195298775336],[116,115,73,-2.656444201046828],[116,115,74,-2.656562577087505],[116,115,75,-2.649534977279736],[116,115,76,-2.6530131731831275],[116,115,77,-2.6641688112761],[116,115,78,-2.66710743542089],[116,115,79,-2.661186861704971],[116,116,64,-2.7434941133564332],[116,116,65,-2.7525418863346283],[116,116,66,-2.7503562407536952],[116,116,67,-2.738913542185735],[116,116,68,-2.7310920597287125],[116,116,69,-2.7243465827822484],[116,116,70,-2.714522487537827],[116,116,71,-2.712937310536164],[116,116,72,-2.7090351732336284],[116,116,73,-2.706116522778415],[116,116,74,-2.704385149465197],[116,116,75,-2.695895921736347],[116,116,76,-2.6961223313887004],[116,116,77,-2.70574565507454],[116,116,78,-2.7086099697369685],[116,116,79,-2.7001162122906783],[116,117,64,-2.7983212906771304],[116,117,65,-2.8036764550821762],[116,117,66,-2.7970464172790477],[116,117,67,-2.787281907414725],[116,117,68,-2.778154126565186],[116,117,69,-2.7697473000521136],[116,117,70,-2.764144716252163],[116,117,71,-2.7605719555638717],[116,117,72,-2.7578533749730947],[116,117,73,-2.7543726591771303],[116,117,74,-2.751678090924701],[116,117,75,-2.743313175742729],[116,117,76,-2.7443638063176206],[116,117,77,-2.7512456623372312],[116,117,78,-2.753440946369572],[116,117,79,-2.746307276416673],[116,118,64,-2.847824963170732],[116,118,65,-2.8513261474359575],[116,118,66,-2.8444417885188527],[116,118,67,-2.8371057555074515],[116,118,68,-2.8268710084970365],[116,118,69,-2.8172085147079633],[116,118,70,-2.8155081500416443],[116,118,71,-2.811458929875865],[116,118,72,-2.8064197666067994],[116,118,73,-2.8050088408151885],[116,118,74,-2.7983521784808],[116,118,75,-2.7937661241838225],[116,118,76,-2.796058249879254],[116,118,77,-2.8010251991629094],[116,118,78,-2.8029372211447647],[116,118,79,-2.7971937875009556],[116,119,64,-2.889309651749445],[116,119,65,-2.8933169677608697],[116,119,66,-2.8849273424081816],[116,119,67,-2.879765189145259],[116,119,68,-2.8699265360066053],[116,119,69,-2.861189357661234],[116,119,70,-2.8596233765385883],[116,119,71,-2.8575800808598033],[116,119,72,-2.852506359109982],[116,119,73,-2.849678314080914],[116,119,74,-2.843947583553799],[116,119,75,-2.8399325439706846],[116,119,76,-2.8444095245637353],[116,119,77,-2.850091217634205],[116,119,78,-2.853199288825804],[116,119,79,-2.8458482916971124],[116,120,64,-2.935958158992793],[116,120,65,-2.9401962083872353],[116,120,66,-2.935190279149219],[116,120,67,-2.927328000650776],[116,120,68,-2.9206340949828777],[116,120,69,-2.9135348283814535],[116,120,70,-2.9100793596017547],[116,120,71,-2.9081526543454537],[116,120,72,-2.901897173786463],[116,120,73,-2.8935524803033212],[116,120,74,-2.890810325291819],[116,120,75,-2.886931910947118],[116,120,76,-2.8910025361546774],[116,120,77,-2.898384848713281],[116,120,78,-2.9021259520346936],[116,120,79,-2.895317537938315],[116,121,64,-2.9727103854242904],[116,121,65,-2.979026690784965],[116,121,66,-2.978604674434277],[116,121,67,-2.9732419647686297],[116,121,68,-2.967502155632567],[116,121,69,-2.963323413842837],[116,121,70,-2.9586499951629124],[116,121,71,-2.95598963223428],[116,121,72,-2.94959901638254],[116,121,73,-2.9422239364712093],[116,121,74,-2.935405324798858],[116,121,75,-2.9344495053560604],[116,121,76,-2.9388377219131927],[116,121,77,-2.9492601642399934],[116,121,78,-2.9598407526009374],[116,121,79,-2.9535295441642235],[116,122,64,-3.023134185661891],[116,122,65,-3.0291793122502595],[116,122,66,-3.029327600507839],[116,122,67,-3.0242799097193425],[116,122,68,-3.019372337257431],[116,122,69,-3.015224219175226],[116,122,70,-3.012501998563997],[116,122,71,-3.011177172425731],[116,122,72,-3.0043812287265865],[116,122,73,-2.9968959604952436],[116,122,74,-2.990272285483125],[116,122,75,-2.9886097113683507],[116,122,76,-2.993183571893143],[116,122,77,-3.0014894766668565],[116,122,78,-3.0123268966291117],[116,122,79,-3.0068031621853937],[116,123,64,-3.065800835859332],[116,123,65,-3.0747093969321804],[116,123,66,-3.0762266724036484],[116,123,67,-3.072543337635349],[116,123,68,-3.0680749728339065],[116,123,69,-3.0625403765259422],[116,123,70,-3.0579890555080667],[116,123,71,-3.057497529136423],[116,123,72,-3.0535447302859637],[116,123,73,-3.0468132029177366],[116,123,74,-3.042706301441276],[116,123,75,-3.0372197983738767],[116,123,76,-3.04033974478815],[116,123,77,-3.050709640311343],[116,123,78,-3.0607861160338614],[116,123,79,-3.0566442324289373],[116,124,64,-3.1095458704607015],[116,124,65,-3.1212290199350625],[116,124,66,-3.1227277462331964],[116,124,67,-3.118576427094004],[116,124,68,-3.11374184405066],[116,124,69,-3.110185971350129],[116,124,70,-3.105757966275804],[116,124,71,-3.103153540389695],[116,124,72,-3.1004118750233887],[116,124,73,-3.0932433449853307],[116,124,74,-3.092129001956959],[116,124,75,-3.0856139783763386],[116,124,76,-3.0889115430785314],[116,124,77,-3.1006646039916914],[116,124,78,-3.111599978371173],[116,124,79,-3.109950023744845],[116,125,64,-3.1545220014459288],[116,125,65,-3.165962894048513],[116,125,66,-3.168323796887721],[116,125,67,-3.164830938557957],[116,125,68,-3.159641173716733],[116,125,69,-3.158534903727109],[116,125,70,-3.153489675358892],[116,125,71,-3.1494662363176906],[116,125,72,-3.1469951888796603],[116,125,73,-3.1422147322681804],[116,125,74,-3.1411022277818548],[116,125,75,-3.1337848926608776],[116,125,76,-3.137249071765367],[116,125,77,-3.1498641266829464],[116,125,78,-3.1600919064789648],[116,125,79,-3.156733032661135],[116,126,64,-3.1997865038394155],[116,126,65,-3.210385927901075],[116,126,66,-3.2141043065920902],[116,126,67,-3.209758594219221],[116,126,68,-3.2067544425494554],[116,126,69,-3.206492696038803],[116,126,70,-3.2007432142945174],[116,126,71,-3.1977230217908748],[116,126,72,-3.195316534295773],[116,126,73,-3.1903676351415773],[116,126,74,-3.1875238778312025],[116,126,75,-3.181870308050334],[116,126,76,-3.184976162572929],[116,126,77,-3.1978541977402455],[116,126,78,-3.207084512556261],[116,126,79,-3.230711755658588],[116,127,64,-3.2382966854450377],[116,127,65,-3.248245977535089],[116,127,66,-3.253996891290563],[116,127,67,-3.2530541984516446],[116,127,68,-3.2472111208606007],[116,127,69,-3.246473681687257],[116,127,70,-3.2425835605100524],[116,127,71,-3.2418342711510855],[116,127,72,-3.2398061783150176],[116,127,73,-3.2369034841484883],[116,127,74,-3.2325132186159764],[116,127,75,-3.2304953947036177],[116,127,76,-3.2338511693433367],[116,127,77,-3.2446792910133477],[116,127,78,-3.2521420152237495],[116,127,79,-3.2671996115576465],[116,128,64,-3.2855135292536146],[116,128,65,-3.294269786925251],[116,128,66,-3.3010727717552473],[116,128,67,-3.2997720507438117],[116,128,68,-3.2949623128259624],[116,128,69,-3.292374931566639],[116,128,70,-3.290913110419468],[116,128,71,-3.2886076351005626],[116,128,72,-3.286831916090415],[116,128,73,-3.2843663652270316],[116,128,74,-3.280456541419301],[116,128,75,-3.2781283323495174],[116,128,76,-3.2808366337069605],[116,128,77,-3.291151036156908],[116,128,78,-3.298086077878506],[116,128,79,-3.331735761309161],[116,129,64,-3.327186701539767],[116,129,65,-3.339828149768734],[116,129,66,-3.352675128674479],[116,129,67,-3.3535702638957896],[116,129,68,-3.3502941859599873],[116,129,69,-3.346530859656157],[116,129,70,-3.3455922100389373],[116,129,71,-3.337658114691915],[116,129,72,-3.3297948628275775],[116,129,73,-3.3261958074959175],[116,129,74,-3.3178093990617956],[116,129,75,-3.3197549665297217],[116,129,76,-3.322328812830992],[116,129,77,-3.331366422992915],[116,129,78,-3.333998038285071],[116,129,79,-3.347181052064143],[116,130,64,-3.3779944471617833],[116,130,65,-3.3938892739924986],[116,130,66,-3.4067593470574655],[116,130,67,-3.4050067331441864],[116,130,68,-3.4023371493313244],[116,130,69,-3.3998984365115454],[116,130,70,-3.399154929276233],[116,130,71,-3.3920041296964905],[116,130,72,-3.3812334168079548],[116,130,73,-3.3772344162974166],[116,130,74,-3.398243446551319],[116,130,75,-3.447519428374901],[116,130,76,-3.5129201605262694],[116,130,77,-3.540007944982839],[116,130,78,-3.5445117108275275],[116,130,79,-3.543997351969439],[116,131,64,-3.427259188157935],[116,131,65,-3.443953192087892],[116,131,66,-3.453537453046911],[116,131,67,-3.452171713938905],[116,131,68,-3.445474790744326],[116,131,69,-3.4460902922404557],[116,131,70,-3.447380049109369],[116,131,71,-3.439882148271765],[116,131,72,-3.4284422276221145],[116,131,73,-3.422121252254964],[116,131,74,-3.479233982232715],[116,131,75,-3.527409402226831],[116,131,76,-3.5738042852411422],[116,131,77,-3.5861325537170288],[116,131,78,-3.590537904808886],[116,131,79,-3.5898622105745375],[116,132,64,-3.4684734365973737],[116,132,65,-3.486291967633553],[116,132,66,-3.4947135026433656],[116,132,67,-3.4938328701922203],[116,132,68,-3.48762355912184],[116,132,69,-3.4893077559179027],[116,132,70,-3.491884940298603],[116,132,71,-3.4859676620654203],[116,132,72,-3.474159542125768],[116,132,73,-3.466795681105361],[116,132,74,-3.531123993649371],[116,132,75,-3.5806673042760897],[116,132,76,-3.6160597965928902],[116,132,77,-3.6296685874441477],[116,132,78,-3.636323851811988],[116,132,79,-3.6368299205638683],[116,133,64,-3.523434419973748],[116,133,65,-3.5354685047658285],[116,133,66,-3.5366419522760393],[116,133,67,-3.5316838526680643],[116,133,68,-3.525015917688222],[116,133,69,-3.526579735107362],[116,133,70,-3.5315509099099374],[116,133,71,-3.5305228796456567],[116,133,72,-3.5267818313567454],[116,133,73,-3.541825997036819],[116,133,74,-3.5801676518786203],[116,133,75,-3.6128240805440948],[116,133,76,-3.653950977892458],[116,133,77,-3.669489835588973],[116,133,78,-3.675222581233813],[116,133,79,-3.677211633623069],[116,134,64,-3.5713749198605473],[116,134,65,-3.5813455260436236],[116,134,66,-3.5828446395391347],[116,134,67,-3.5788717747542798],[116,134,68,-3.570231489096329],[116,134,69,-3.574806400013115],[116,134,70,-3.579327940649262],[116,134,71,-3.5786639898439145],[116,134,72,-3.5738631777173553],[116,134,73,-3.5914804719235858],[116,134,74,-3.6303978503587597],[116,134,75,-3.6640971625156746],[116,134,76,-3.697534261653132],[116,134,77,-3.7178920629318886],[116,134,78,-3.7241718602606264],[116,134,79,-3.726374168637297],[116,135,64,-3.6108707393135613],[116,135,65,-3.6203862781265754],[116,135,66,-3.6256226624818413],[116,135,67,-3.62066155261835],[116,135,68,-3.6148973015687265],[116,135,69,-3.617361389395163],[116,135,70,-3.6213485840809456],[116,135,71,-3.6244788488079167],[116,135,72,-3.624387863423834],[116,135,73,-3.6262212950566357],[116,135,74,-3.6682042466808498],[116,135,75,-3.6954605069296282],[116,135,76,-3.7366023584482777],[116,135,77,-3.756313717910964],[116,135,78,-3.7663008288468576],[116,135,79,-3.7659732303230946],[116,136,64,-3.6597527608281095],[116,136,65,-3.6675502498481456],[116,136,66,-3.672345587433722],[116,136,67,-3.6694961741815404],[116,136,68,-3.6638487854050896],[116,136,69,-3.664506681222787],[116,136,70,-3.667996122434317],[116,136,71,-3.6724145906743573],[116,136,72,-3.6729247176093485],[116,136,73,-3.679233131943294],[116,136,74,-3.7249367129382316],[116,136,75,-3.7536443981411503],[116,136,76,-3.7921634437640077],[116,136,77,-3.8110056665292737],[116,136,78,-3.82066649479752],[116,136,79,-3.820817198155752],[116,137,64,-3.7103622299868846],[116,137,65,-3.716461443350939],[116,137,66,-3.7206272338255237],[116,137,67,-3.7172091580033277],[116,137,68,-3.7120527279802307],[116,137,69,-3.7130939490315598],[116,137,70,-3.7171445025504055],[116,137,71,-3.7198254739063876],[116,137,72,-3.72005064609415],[116,137,73,-3.726776044954675],[116,137,74,-3.758577917632204],[116,137,75,-3.780616698950058],[116,137,76,-3.826190233560954],[116,137,77,-3.844249312930738],[116,137,78,-3.855202800125742],[116,137,79,-3.8533510040532164],[116,138,64,-3.764538167633718],[116,138,65,-3.7725766629568644],[116,138,66,-3.7775356895208314],[116,138,67,-3.7714556783578774],[116,138,68,-3.7649732223622023],[116,138,69,-3.766680523797326],[116,138,70,-3.771244563440852],[116,138,71,-3.7737957943006895],[116,138,72,-3.7712576909714666],[116,138,73,-3.7716766238212545],[116,138,74,-3.798196159880228],[116,138,75,-3.814676971465779],[116,138,76,-3.8549550899063374],[116,138,77,-3.8798873487991767],[116,138,78,-3.8906596003331666],[116,138,79,-3.8891547423621677],[116,139,64,-3.8100288765558714],[116,139,65,-3.823014729049384],[116,139,66,-3.8291374364734545],[116,139,67,-3.820404242882843],[116,139,68,-3.8133260897987102],[116,139,69,-3.8180438351574493],[116,139,70,-3.821144539962857],[116,139,71,-3.822837052521848],[116,139,72,-3.8178560047873384],[116,139,73,-3.8296543234768494],[116,139,74,-3.8626104562938974],[116,139,75,-3.880526294636625],[116,139,76,-3.9113693879907006],[116,139,77,-3.924485934948404],[116,139,78,-3.93252497876769],[116,139,79,-3.9340658522054843],[116,140,64,-3.8696568739993182],[116,140,65,-3.884570988295188],[116,140,66,-3.8868543694855506],[116,140,67,-3.8743771295117746],[116,140,68,-3.865116125305162],[116,140,69,-3.866660328826141],[116,140,70,-3.8676965007858977],[116,140,71,-3.866216765462383],[116,140,72,-3.8628451303029583],[116,140,73,-3.879708818371075],[116,140,74,-3.9106578513159764],[116,140,75,-3.930920278886981],[116,140,76,-3.954508749861342],[116,140,77,-3.967615872752262],[116,140,78,-3.9770354291622416],[116,140,79,-3.9779354027809926],[116,141,64,-3.922335717911558],[116,141,65,-3.9374788078590512],[116,141,66,-3.937542619259922],[116,141,67,-3.92731388267935],[116,141,68,-3.9190930517088973],[116,141,69,-3.9175192364461378],[116,141,70,-3.9179677800431527],[116,141,71,-3.9178685317833537],[116,141,72,-3.913828492849484],[116,141,73,-3.9259552185452304],[116,141,74,-3.9569268254137007],[116,141,75,-3.978263100471247],[116,141,76,-3.9884670734778354],[116,141,77,-4.002524630905035],[116,141,78,-4.01312106463433],[116,141,79,-4.016595258738331],[116,142,64,-3.9721618482125898],[116,142,65,-3.983809133209656],[116,142,66,-3.986495611364012],[116,142,67,-3.97756980119272],[116,142,68,-3.9702648985318603],[116,142,69,-3.9666242438762818],[116,142,70,-3.963885694004279],[116,142,71,-3.9638658418626624],[116,142,72,-3.9587018740197495],[116,142,73,-3.9698111035364905],[116,142,74,-4.000837955481035],[116,142,75,-4.0184380150118955],[116,142,76,-4.028078013114686],[116,142,77,-4.045351739019304],[116,142,78,-4.057309773331845],[116,142,79,-4.062450534860816],[116,143,64,-4.014345815560708],[116,143,65,-4.026824192998007],[116,143,66,-4.030148255123722],[116,143,67,-4.022587619232755],[116,143,68,-4.016204422489405],[116,143,69,-4.01064499154455],[116,143,70,-4.0092219742066435],[116,143,71,-4.010957398303349],[116,143,72,-4.00447977344288],[116,143,73,-4.007306773326124],[116,143,74,-4.033447200697227],[116,143,75,-4.0534671410746945],[116,143,76,-4.070399120567658],[116,143,77,-4.083498980546844],[116,143,78,-4.093974225177126],[116,143,79,-4.101091159277697],[116,144,64,-4.0640885193766305],[116,144,65,-4.0768888164994745],[116,144,66,-4.079558762219566],[116,144,67,-4.072358524346078],[116,144,68,-4.063241949528555],[116,144,69,-4.058296728873834],[116,144,70,-4.056498100621622],[116,144,71,-4.057608025958201],[116,144,72,-4.052394509318474],[116,144,73,-4.055859472359057],[116,144,74,-4.085338780224979],[116,144,75,-4.108356037441415],[116,144,76,-4.124615520603948],[116,144,77,-4.139766645260309],[116,144,78,-4.14768584767724],[116,144,79,-4.1551414048493704],[116,145,64,-4.106087374614973],[116,145,65,-4.122591241922814],[116,145,66,-4.125555505913168],[116,145,67,-4.1202103808837585],[116,145,68,-4.110541655294319],[116,145,69,-4.102416799152399],[116,145,70,-4.10281078103579],[116,145,71,-4.100576545330502],[116,145,72,-4.09372739598364],[116,145,73,-4.092595588926784],[116,145,74,-4.093901929706968],[116,145,75,-4.100128158237344],[116,145,76,-4.114335570275243],[116,145,77,-4.1338291773931815],[116,145,78,-4.140689623322882],[116,145,79,-4.15902795234142],[116,146,64,-4.161012242369957],[116,146,65,-4.17647004884962],[116,146,66,-4.180970404728362],[116,146,67,-4.173264845689541],[116,146,68,-4.164108548908335],[116,146,69,-4.1561326764595075],[116,146,70,-4.156890774420416],[116,146,71,-4.152848044038789],[116,146,72,-4.146406028857767],[116,146,73,-4.143714189011978],[116,146,74,-4.144428639424261],[116,146,75,-4.145021769751328],[116,146,76,-4.156542935341087],[116,146,77,-4.174301549219301],[116,146,78,-4.185065002253948],[116,146,79,-4.201395482479403],[116,147,64,-4.209858031631546],[116,147,65,-4.222974679847274],[116,147,66,-4.229113928915167],[116,147,67,-4.219660550239724],[116,147,68,-4.212440503398371],[116,147,69,-4.20425101057047],[116,147,70,-4.205276965632472],[116,147,71,-4.200178717732003],[116,147,72,-4.19415080985471],[116,147,73,-4.189619380204323],[116,147,74,-4.1919855534655275],[116,147,75,-4.192080744392135],[116,147,76,-4.1862778528398685],[116,147,77,-4.197355673398009],[116,147,78,-4.214374375061126],[116,147,79,-4.17973432863116],[116,148,64,-4.230860843573312],[116,148,65,-4.243888107392295],[116,148,66,-4.246199238579173],[116,148,67,-4.236793887544345],[116,148,68,-4.224563328859458],[116,148,69,-4.216171775251833],[116,148,70,-4.214984372146557],[116,148,71,-4.21287841566102],[116,148,72,-4.206170559152384],[116,148,73,-4.203390437487417],[116,148,74,-4.203479169670579],[116,148,75,-4.204161857827084],[116,148,76,-4.20970160449231],[116,148,77,-4.215066121524388],[116,148,78,-4.211018051025025],[116,148,79,-4.177533025956241],[116,149,64,-4.280679700142405],[116,149,65,-4.29403510228592],[116,149,66,-4.295879857958984],[116,149,67,-4.2855370993558255],[116,149,68,-4.271581052201964],[116,149,69,-4.263545017199625],[116,149,70,-4.2605942166218504],[116,149,71,-4.256663275156174],[116,149,72,-4.255328650321425],[116,149,73,-4.2535698344845265],[116,149,74,-4.252122655600809],[116,149,75,-4.253423795944552],[116,149,76,-4.260322610241219],[116,149,77,-4.268811602307019],[116,149,78,-4.255268707192739],[116,149,79,-4.236057141846073],[116,150,64,-4.3316221485461295],[116,150,65,-4.341814942964381],[116,150,66,-4.343977121278713],[116,150,67,-4.332899978065779],[116,150,68,-4.318561272600467],[116,150,69,-4.309091386546548],[116,150,70,-4.304132233061972],[116,150,71,-4.303354714096655],[116,150,72,-4.303404831926081],[116,150,73,-4.303659819078091],[116,150,74,-4.3030525058897195],[116,150,75,-4.303824592151001],[116,150,76,-4.312259908790559],[116,150,77,-4.3201011298359875],[116,150,78,-4.300779606553574],[116,150,79,-4.287775352089893],[116,151,64,-4.3752780080606035],[116,151,65,-4.384531583638024],[116,151,66,-4.383124969545013],[116,151,67,-4.375398665723854],[116,151,68,-4.364638946596365],[116,151,69,-4.354136612707214],[116,151,70,-4.349385296114473],[116,151,71,-4.348941411692941],[116,151,72,-4.349365751631126],[116,151,73,-4.352513650420922],[116,151,74,-4.354758957265552],[116,151,75,-4.357508727617464],[116,151,76,-4.365511477679259],[116,151,77,-4.377912797637153],[116,151,78,-4.3614848306812375],[116,151,79,-4.33926923777307],[116,152,64,-4.427422857863805],[116,152,65,-4.436689025129462],[116,152,66,-4.43241021612396],[116,152,67,-4.422674114562952],[116,152,68,-4.415498250927467],[116,152,69,-4.404054639650168],[116,152,70,-4.3974274087431455],[116,152,71,-4.398864560383642],[116,152,72,-4.396652014992661],[116,152,73,-4.3998481475304265],[116,152,74,-4.404613694441866],[116,152,75,-4.407746076264809],[116,152,76,-4.417953934714194],[116,152,77,-4.423652775601787],[116,152,78,-4.4111955755361665],[116,152,79,-4.382579699728014],[116,153,64,-4.488802405740054],[116,153,65,-4.491913737551276],[116,153,66,-4.479944406933036],[116,153,67,-4.465799550029471],[116,153,68,-4.458224798031843],[116,153,69,-4.44804969787982],[116,153,70,-4.441631456734882],[116,153,71,-4.444845872904416],[116,153,72,-4.444114855951901],[116,153,73,-4.44778023953345],[116,153,74,-4.453471276594343],[116,153,75,-4.460061028902581],[116,153,76,-4.46894703032858],[116,153,77,-4.467040603163347],[116,153,78,-4.450182182951866],[116,153,79,-4.425604608136697],[116,154,64,-4.547244614030652],[116,154,65,-4.547365398235663],[116,154,66,-4.536882114849367],[116,154,67,-4.522449154584177],[116,154,68,-4.51075820310437],[116,154,69,-4.503260939826065],[116,154,70,-4.494608578240626],[116,154,71,-4.49750769512289],[116,154,72,-4.498305860839007],[116,154,73,-4.500923777105448],[116,154,74,-4.506071423391755],[116,154,75,-4.514151719443081],[116,154,76,-4.524621064228176],[116,154,77,-4.529843082422474],[116,154,78,-4.502618470216903],[116,154,79,-4.476846353774053],[116,155,64,-4.595308769009159],[116,155,65,-4.59829337811669],[116,155,66,-4.589065383216527],[116,155,67,-4.573175453366831],[116,155,68,-4.560542551217861],[116,155,69,-4.550388405524388],[116,155,70,-4.5426658893508085],[116,155,71,-4.54561972534769],[116,155,72,-4.542763829907549],[116,155,73,-4.546420299605618],[116,155,74,-4.555038814755012],[116,155,75,-4.562283320488388],[116,155,76,-4.57288230902849],[116,155,77,-4.575502246776522],[116,155,78,-4.548159233111185],[116,155,79,-4.526851577528687],[116,156,64,-4.645379717636158],[116,156,65,-4.649843720114727],[116,156,66,-4.641317987757151],[116,156,67,-4.627702617521958],[116,156,68,-4.612001669013503],[116,156,69,-4.603408843415588],[116,156,70,-4.597617548333779],[116,156,71,-4.597160230042702],[116,156,72,-4.596141687172769],[116,156,73,-4.59758470131379],[116,156,74,-4.607265118450244],[116,156,75,-4.616295248532413],[116,156,76,-4.624123543950523],[116,156,77,-4.607137343671797],[116,156,78,-4.58649561477594],[116,156,79,-4.570573597057674],[116,157,64,-4.685324316582555],[116,157,65,-4.695199166877191],[116,157,66,-4.6926567058319115],[116,157,67,-4.683030440212396],[116,157,68,-4.6688650301066055],[116,157,69,-4.659752517698022],[116,157,70,-4.653857053768185],[116,157,71,-4.652703677655713],[116,157,72,-4.646745103298705],[116,157,73,-4.647589812896919],[116,157,74,-4.654925095860355],[116,157,75,-4.663290162709866],[116,157,76,-4.662945875975258],[116,157,77,-4.643580905629903],[116,157,78,-4.621594748052979],[116,157,79,-4.6112757964348905],[116,158,64,-4.730478371001813],[116,158,65,-4.744539127787311],[116,158,66,-4.74085190362107],[116,158,67,-4.730271432881707],[116,158,68,-4.717766503497907],[116,158,69,-4.707436969185668],[116,158,70,-4.701419579816193],[116,158,71,-4.700852383558049],[116,158,72,-4.695768740015334],[116,158,73,-4.694404261172164],[116,158,74,-4.702763699353757],[116,158,75,-4.711386541991058],[116,158,76,-4.69901439702394],[116,158,77,-4.675071658590451],[116,158,78,-4.65618742426847],[116,158,79,-4.650437318950243],[116,159,64,-4.8461355458444215],[116,159,65,-4.853994987920519],[116,159,66,-4.846723591333185],[116,159,67,-4.828150018119883],[116,159,68,-4.808977540983265],[116,159,69,-4.790992797223886],[116,159,70,-4.778945925340505],[116,159,71,-4.768917289359318],[116,159,72,-4.75524602004932],[116,159,73,-4.746538010884491],[116,159,74,-4.7436399225440535],[116,159,75,-4.744138719611681],[116,159,76,-4.742399588335485],[116,159,77,-4.71069526446614],[116,159,78,-4.693621151935632],[116,159,79,-4.694212392775026],[116,160,64,-4.8908340432921005],[116,160,65,-4.89926256069768],[116,160,66,-4.894481397002818],[116,160,67,-4.877694700999263],[116,160,68,-4.856487272456849],[116,160,69,-4.835623314406225],[116,160,70,-4.825023107722122],[116,160,71,-4.814004648661674],[116,160,72,-4.799322373417515],[116,160,73,-4.792645558336768],[116,160,74,-4.790176843280838],[116,160,75,-4.791511100982118],[116,160,76,-4.791556844005856],[116,160,77,-4.749594066033242],[116,160,78,-4.734352551085995],[116,160,79,-4.736368223846453],[116,161,64,-4.934207225961095],[116,161,65,-4.942887624040393],[116,161,66,-4.938414679550653],[116,161,67,-4.925496964779501],[116,161,68,-4.904017257418405],[116,161,69,-4.882939913140652],[116,161,70,-4.870319081587426],[116,161,71,-4.860065388845028],[116,161,72,-4.84649167285378],[116,161,73,-4.838662036423453],[116,161,74,-4.836135584406997],[116,161,75,-4.835709346176108],[116,161,76,-4.833845458801342],[116,161,77,-4.790474329974951],[116,161,78,-4.7754448196744645],[116,161,79,-4.780322215587401],[116,162,64,-4.985061216054891],[116,162,65,-4.9925773006625604],[116,162,66,-4.988013811420863],[116,162,67,-4.974887204713324],[116,162,68,-4.955586147897076],[116,162,69,-4.934667964475237],[116,162,70,-4.92012456957758],[116,162,71,-4.910528170008073],[116,162,72,-4.898739761887881],[116,162,73,-4.889841633342683],[116,162,74,-4.884348011741913],[116,162,75,-4.882822023113296],[116,162,76,-4.884225251387065],[116,162,77,-4.855667417132148],[116,162,78,-4.835234860662028],[116,162,79,-4.8325401032011674],[116,163,64,-5.029638913895202],[116,163,65,-5.038079303337953],[116,163,66,-5.031859007150137],[116,163,67,-5.018815481382262],[116,163,68,-5.001623726632659],[116,163,69,-4.98254731111332],[116,163,70,-4.966020687430424],[116,163,71,-4.959614149480816],[116,163,72,-4.945246093559817],[116,163,73,-4.93473720441124],[116,163,74,-4.9280024511214355],[116,163,75,-4.924287201671253],[116,163,76,-4.926332518834371],[116,163,77,-4.920918985035449],[116,163,78,-4.904304316522546],[116,163,79,-4.8914918255250734],[116,164,64,-5.051877036103819],[116,164,65,-5.060438203216597],[116,164,66,-5.05214723177164],[116,164,67,-5.038866655817578],[116,164,68,-5.021375620497367],[116,164,69,-5.004632351883317],[116,164,70,-4.990923873485517],[116,164,71,-4.985000401914879],[116,164,72,-4.970642001947579],[116,164,73,-4.960550290595359],[116,164,74,-4.949673707836123],[116,164,75,-4.949050585296409],[116,164,76,-4.9531283373811785],[116,164,77,-4.946177045784858],[116,164,78,-4.941505400534649],[116,164,79,-4.931878348837531],[116,165,64,-5.093324892546798],[116,165,65,-5.100079402361687],[116,165,66,-5.091016023964167],[116,165,67,-5.075960091249137],[116,165,68,-5.0559732506848585],[116,165,69,-5.040456367764901],[116,165,70,-5.029719434240114],[116,165,71,-5.023002376444116],[116,165,72,-5.014267904821313],[116,165,73,-5.004612861980864],[116,165,74,-4.992482003144211],[116,165,75,-4.991340706014791],[116,165,76,-4.993140558035563],[116,165,77,-4.986660065684444],[116,165,78,-4.984989775613263],[116,165,79,-4.976554543703564],[116,166,64,-5.141063011373296],[116,166,65,-5.147980876776425],[116,166,66,-5.136741492751954],[116,166,67,-5.121664508059363],[116,166,68,-5.103358375195838],[116,166,69,-5.086047666077161],[116,166,70,-5.072122964713564],[116,166,71,-5.06630096532101],[116,166,72,-5.059877000917176],[116,166,73,-5.04942899571732],[116,166,74,-5.039632328371589],[116,166,75,-5.0364484822258415],[116,166,76,-5.035343017768096],[116,166,77,-5.03597417219714],[116,166,78,-5.036090692256176],[116,166,79,-5.025138109954202],[116,167,64,-5.181611229178664],[116,167,65,-5.190428080584331],[116,167,66,-5.178734738959529],[116,167,67,-5.160729322584562],[116,167,68,-5.14356796169814],[116,167,69,-5.12544923674848],[116,167,70,-5.111997473604255],[116,167,71,-5.109831810971299],[116,167,72,-5.103101340610662],[116,167,73,-5.092598248744432],[116,167,74,-5.086225395665245],[116,167,75,-5.08196527125534],[116,167,76,-5.082880407213745],[116,167,77,-5.087547619245394],[116,167,78,-5.085620203056645],[116,167,79,-5.074182314135499],[116,168,64,-5.228610496657911],[116,168,65,-5.2358798677364815],[116,168,66,-5.224587331028919],[116,168,67,-5.205001216843954],[116,168,68,-5.1902644168765715],[116,168,69,-5.169777447950894],[116,168,70,-5.15806930719826],[116,168,71,-5.1556369771418025],[116,168,72,-5.146465485630738],[116,168,73,-5.139871058594289],[116,168,74,-5.133072288196235],[116,168,75,-5.127560087942007],[116,168,76,-5.129109139142548],[116,168,77,-5.1344988532109666],[116,168,78,-5.131000474028364],[116,168,79,-5.120057334172549],[116,169,64,-5.2862581226216365],[116,169,65,-5.289476157878501],[116,169,66,-5.281296366908841],[116,169,67,-5.260123074803508],[116,169,68,-5.244770459138761],[116,169,69,-5.2243488015472686],[116,169,70,-5.213672939131067],[116,169,71,-5.207056631536986],[116,169,72,-5.195022331651567],[116,169,73,-5.187335450363811],[116,169,74,-5.179512886630163],[116,169,75,-5.174631008934292],[116,169,76,-5.179267904396065],[116,169,77,-5.188027085850635],[116,169,78,-5.178145274951563],[116,169,79,-5.167170376989959],[116,170,64,-5.338284787105712],[116,170,65,-5.340666188370988],[116,170,66,-5.332486454459115],[116,170,67,-5.315280564216301],[116,170,68,-5.299324632014556],[116,170,69,-5.279187614930224],[116,170,70,-5.266941636075236],[116,170,71,-5.2604017013492825],[116,170,72,-5.2471556212384876],[116,170,73,-5.237568401088872],[116,170,74,-5.232424204881549],[116,170,75,-5.226960292810602],[116,170,76,-5.229356219667953],[116,170,77,-5.23807714170109],[116,170,78,-5.228401871566446],[116,170,79,-5.213857642532155],[116,171,64,-5.383178600593425],[116,171,65,-5.38619036970088],[116,171,66,-5.378903018453632],[116,171,67,-5.363036610754947],[116,171,68,-5.349684061098325],[116,171,69,-5.330154087220869],[116,171,70,-5.315812392891426],[116,171,71,-5.3095082712965835],[116,171,72,-5.294270338692578],[116,171,73,-5.285314718336868],[116,171,74,-5.279674508435914],[116,171,75,-5.275150354637697],[116,171,76,-5.275906273553951],[116,171,77,-5.285977821489847],[116,171,78,-5.268016497190228],[116,171,79,-5.255337595137761],[116,172,64,-5.431058568184606],[116,172,65,-5.435320035148665],[116,172,66,-5.4294313277492305],[116,172,67,-5.4132282609444555],[116,172,68,-5.4007909946749475],[116,172,69,-5.382515611521759],[116,172,70,-5.368121914920435],[116,172,71,-5.361311124178811],[116,172,72,-5.346335003522389],[116,172,73,-5.335135201263096],[116,172,74,-5.332729731495369],[116,172,75,-5.327510047923687],[116,172,76,-5.327051279308845],[116,172,77,-5.3376970428599515],[116,172,78,-5.3094111312394965],[116,172,79,-5.289384742739693],[116,173,64,-5.475682055283751],[116,173,65,-5.481163934110469],[116,173,66,-5.47498477386879],[116,173,67,-5.461119060515311],[116,173,68,-5.445998321015847],[116,173,69,-5.429114466740081],[116,173,70,-5.416018331764559],[116,173,71,-5.4074605488689205],[116,173,72,-5.392499669363693],[116,173,73,-5.3833998090190525],[116,173,74,-5.38025917618799],[116,173,75,-5.373185011813485],[116,173,76,-5.374142090964535],[116,173,77,-5.384887228198688],[116,173,78,-5.35678558021108],[116,173,79,-5.335722276722754],[116,174,64,-5.5219352508859245],[116,174,65,-5.528311821063237],[116,174,66,-5.520522874064379],[116,174,67,-5.504703921777394],[116,174,68,-5.4916167437288825],[116,174,69,-5.474639727352863],[116,174,70,-5.462190448813435],[116,174,71,-5.453171815882286],[116,174,72,-5.439358184958003],[116,174,73,-5.430440213986028],[116,174,74,-5.425698325586385],[116,174,75,-5.418467879749341],[116,174,76,-5.418663284384912],[116,174,77,-5.43130270364182],[116,174,78,-5.403212140365483],[116,174,79,-5.378036266866984],[116,175,64,-5.5591426999171745],[116,175,65,-5.566357427967284],[116,175,66,-5.559881595647197],[116,175,67,-5.543345311983143],[116,175,68,-5.532493284523097],[116,175,69,-5.518489191972187],[116,175,70,-5.507366257542982],[116,175,71,-5.495596035170361],[116,175,72,-5.484283137225755],[116,175,73,-5.475265178240296],[116,175,74,-5.471775521398238],[116,175,75,-5.465873516505152],[116,175,76,-5.467454048028916],[116,175,77,-5.481553191285951],[116,175,78,-5.4939049937846915],[116,175,79,-5.4713941229688166],[116,176,64,-5.603879796651302],[116,176,65,-5.6104888539654025],[116,176,66,-5.602857572193275],[116,176,67,-5.586632248342479],[116,176,68,-5.577010983283575],[116,176,69,-5.5637827862836735],[116,176,70,-5.553549952126913],[116,176,71,-5.541891082504719],[116,176,72,-5.529716452111475],[116,176,73,-5.5204435975980015],[116,176,74,-5.517357994083524],[116,176,75,-5.512833678290032],[116,176,76,-5.51752360674292],[116,176,77,-5.52921375298151],[116,176,78,-5.543842638097156],[116,176,79,-5.521063423214518],[116,177,64,-5.6525866154372935],[116,177,65,-5.661092141261464],[116,177,66,-5.652370782353535],[116,177,67,-5.639339899358385],[116,177,68,-5.627197878856897],[116,177,69,-5.616383956288891],[116,177,70,-5.607145224241541],[116,177,71,-5.593438543300634],[116,177,72,-5.578005451506476],[116,177,73,-5.567538350593846],[116,177,74,-5.563462986576414],[116,177,75,-5.561128713833105],[116,177,76,-5.567544175484635],[116,177,77,-5.5837568927624455],[116,177,78,-5.595023211273333],[116,177,79,-5.589451121755257],[116,178,64,-5.702722251809836],[116,178,65,-5.709453546845262],[116,178,66,-5.701346505129623],[116,178,67,-5.691479701767645],[116,178,68,-5.678255150895685],[116,178,69,-5.669776578916284],[116,178,70,-5.660077592216137],[116,178,71,-5.644365979897337],[116,178,72,-5.628070305597506],[116,178,73,-5.616426967321076],[116,178,74,-5.613066255058161],[116,178,75,-5.609968324961338],[116,178,76,-5.619933990479026],[116,178,77,-5.636502773833239],[116,178,78,-5.647648606807602],[116,178,79,-5.639155157386613],[116,179,64,-5.745714012568374],[116,179,65,-5.753227707547843],[116,179,66,-5.747777546812981],[116,179,67,-5.737889066761225],[116,179,68,-5.725944271247904],[116,179,69,-5.716929487554875],[116,179,70,-5.707118883538323],[116,179,71,-5.692513599420184],[116,179,72,-5.675708437527995],[116,179,73,-5.661140603182402],[116,179,74,-5.656974565237559],[116,179,75,-5.657992572248631],[116,179,76,-5.669060447428068],[116,179,77,-5.686510264616552],[116,179,78,-5.693922384738272],[116,179,79,-5.683432413828154],[116,180,64,-5.780691659612926],[116,180,65,-5.789629921805438],[116,180,66,-5.787168221758987],[116,180,67,-5.778709331801444],[116,180,68,-5.769460816683392],[116,180,69,-5.7602077747515645],[116,180,70,-5.753348017644594],[116,180,71,-5.740993628212508],[116,180,72,-5.720479440297441],[116,180,73,-5.706265178590468],[116,180,74,-5.704597885333643],[116,180,75,-5.707546191486098],[116,180,76,-5.717761633387972],[116,180,77,-5.735571055609918],[116,180,78,-5.741537804724893],[116,180,79,-5.732006468921254],[116,181,64,-5.81505446771632],[116,181,65,-5.822815696062756],[116,181,66,-5.824435747052471],[116,181,67,-5.81551889930378],[116,181,68,-5.8028403171493474],[116,181,69,-5.798054001726564],[116,181,70,-5.790379525982164],[116,181,71,-5.780332603922576],[116,181,72,-5.7646280651469475],[116,181,73,-5.752165360073752],[116,181,74,-5.752949110493719],[116,181,75,-5.755559807963061],[116,181,76,-5.767342488029104],[116,181,77,-5.788087257095014],[116,181,78,-5.798473943294141],[116,181,79,-5.7983494167586915],[116,182,64,-5.862297564390031],[116,182,65,-5.8683115935899695],[116,182,66,-5.872809665472112],[116,182,67,-5.862480818619131],[116,182,68,-5.84889691419925],[116,182,69,-5.843695230917015],[116,182,70,-5.837098448071232],[116,182,71,-5.825729123439755],[116,182,72,-5.81156647861336],[116,182,73,-5.801814625532102],[116,182,74,-5.799011738362938],[116,182,75,-5.8016972666125834],[116,182,76,-5.8160954418411634],[116,182,77,-5.835680987753161],[116,182,78,-5.851692674542557],[116,182,79,-5.8470071867145395],[116,183,64,-5.908008005625357],[116,183,65,-5.9137030478780375],[116,183,66,-5.914650171900564],[116,183,67,-5.903971209669526],[116,183,68,-5.893256374122437],[116,183,69,-5.88796587794245],[116,183,70,-5.880213112353035],[116,183,71,-5.870226082634164],[116,183,72,-5.856846771766085],[116,183,73,-5.846652378435626],[116,183,74,-5.8444115735721605],[116,183,75,-5.847670852363476],[116,183,76,-5.865535864172408],[116,183,77,-5.884286047923844],[116,183,78,-5.895241319107845],[116,183,79,-5.892696217962],[116,184,64,-5.956779977704416],[116,184,65,-5.96269805530541],[116,184,66,-5.960940291612508],[116,184,67,-5.947807385586778],[116,184,68,-5.939409319299364],[116,184,69,-5.932845448867232],[116,184,70,-5.926244869793672],[116,184,71,-5.917402444690345],[116,184,72,-5.904117579299482],[116,184,73,-5.893790718765725],[116,184,74,-5.89067156954786],[116,184,75,-5.894764064343639],[116,184,76,-5.914887095874842],[116,184,77,-5.932115257462452],[116,184,78,-5.940553479309758],[116,184,79,-5.940143274465623],[116,185,64,-6.005774202593677],[116,185,65,-6.012326021356348],[116,185,66,-6.010382253614833],[116,185,67,-5.995033811483288],[116,185,68,-5.984321412022091],[116,185,69,-5.980074464695882],[116,185,70,-5.9738479674957095],[116,185,71,-5.964991401135934],[116,185,72,-5.952603380989176],[116,185,73,-5.942203102771777],[116,185,74,-5.937640232564701],[116,185,75,-5.941267836076764],[116,185,76,-5.95899063047517],[116,185,77,-5.974000896784139],[116,185,78,-5.980710737706516],[116,185,79,-5.981646072903034],[116,186,64,-6.059762534156017],[116,186,65,-6.066896990998626],[116,186,66,-6.0626911405205375],[116,186,67,-6.050585176885362],[116,186,68,-6.038076427978888],[116,186,69,-6.030620048497808],[116,186,70,-6.02767560114669],[116,186,71,-6.019069798968934],[116,186,72,-6.005092692345805],[116,186,73,-5.993317272508683],[116,186,74,-5.988941973967432],[116,186,75,-5.988667344476455],[116,186,76,-6.002588972550409],[116,186,77,-6.016901382277533],[116,186,78,-6.023413805809484],[116,186,79,-6.023101898394774],[116,187,64,-6.108368739869307],[116,187,65,-6.117280814283532],[116,187,66,-6.113593760737866],[116,187,67,-6.101560710009688],[116,187,68,-6.086964139883111],[116,187,69,-6.078484385574247],[116,187,70,-6.075711457763923],[116,187,71,-6.070058763659073],[116,187,72,-6.05459450508651],[116,187,73,-6.042305792807298],[116,187,74,-6.035881494447087],[116,187,75,-6.036023389571105],[116,187,76,-6.054082019475007],[116,187,77,-6.068724217562104],[116,187,78,-6.072824259179472],[116,187,79,-6.0760726377212935],[116,188,64,-6.170256819200714],[116,188,65,-6.176206172397644],[116,188,66,-6.1700861469963595],[116,188,67,-6.15581721623044],[116,188,68,-6.136615874919626],[116,188,69,-6.126336087682859],[116,188,70,-6.121872759016923],[116,188,71,-6.114152614526389],[116,188,72,-6.099427569112919],[116,188,73,-6.088623659095959],[116,188,74,-6.083272127595677],[116,188,75,-6.078175768547368],[116,188,76,-6.097766292045598],[116,188,77,-6.114708066616482],[116,188,78,-6.1173337143394955],[116,188,79,-6.123482949311773],[116,189,64,-6.217817079607806],[116,189,65,-6.225868787933594],[116,189,66,-6.224925948211201],[116,189,67,-6.213367826027755],[116,189,68,-6.195803126446638],[116,189,69,-6.183772796528101],[116,189,70,-6.17812120700305],[116,189,71,-6.1675333298561075],[116,189,72,-6.149364424318569],[116,189,73,-6.137605469035872],[116,189,74,-6.132623542547278],[116,189,75,-6.127249596952169],[116,189,76,-6.1338637565886875],[116,189,77,-6.1546788107271535],[116,189,78,-6.1590925444623705],[116,189,79,-6.160987907020328],[116,190,64,-6.268521122017343],[116,190,65,-6.2761151413190275],[116,190,66,-6.274904860767748],[116,190,67,-6.265023104449432],[116,190,68,-6.246012874734615],[116,190,69,-6.229460279884739],[116,190,70,-6.223267901191917],[116,190,71,-6.213077975852762],[116,190,72,-6.196731574019887],[116,190,73,-6.187010911507426],[116,190,74,-6.180519724839584],[116,190,75,-6.174033180099871],[116,190,76,-6.178575164341972],[116,190,77,-6.20070368412006],[116,190,78,-6.205482525826779],[116,190,79,-6.206022759976924],[116,191,64,-6.31608964201958],[116,191,65,-6.325651415400693],[116,191,66,-6.32286258659606],[116,191,67,-6.311838809762815],[116,191,68,-6.2922719024296265],[116,191,69,-6.2754613016449134],[116,191,70,-6.269152742299559],[116,191,71,-6.259212378526026],[116,191,72,-6.243177971604755],[116,191,73,-6.23341197951382],[116,191,74,-6.228303474973554],[116,191,75,-6.220960266777774],[116,191,76,-6.224050411564322],[116,191,77,-6.245622727837692],[116,191,78,-6.252202322272522],[116,191,79,-6.248481206170387],[116,192,64,-6.366915533086614],[116,192,65,-6.374368659837663],[116,192,66,-6.372183957143168],[116,192,67,-6.3567746443920825],[116,192,68,-6.338149299999316],[116,192,69,-6.323165054910236],[116,192,70,-6.314847781176651],[116,192,71,-6.305884609792617],[116,192,72,-6.291466705087021],[116,192,73,-6.280581955648358],[116,192,74,-6.275442868349862],[116,192,75,-6.268702978155773],[116,192,76,-6.273377127164965],[116,192,77,-6.293685278307351],[116,192,78,-6.2993459905198215],[116,192,79,-6.295340358381022],[116,193,64,-6.421006520205134],[116,193,65,-6.424688177954963],[116,193,66,-6.412883468436354],[116,193,67,-6.392818805473176],[116,193,68,-6.377779314257364],[116,193,69,-6.361858947191136],[116,193,70,-6.352262297063535],[116,193,71,-6.346631367041602],[116,193,72,-6.334710831049309],[116,193,73,-6.3238872266966535],[116,193,74,-6.320216384952255],[116,193,75,-6.315506702375525],[116,193,76,-6.317700575739059],[116,193,77,-6.337363490879617],[116,193,78,-6.34721355276061],[116,193,79,-6.348953491300209],[116,194,64,-6.4751980948502394],[116,194,65,-6.477524975216628],[116,194,66,-6.465381059568438],[116,194,67,-6.4434287418290115],[116,194,68,-6.427050784267882],[116,194,69,-6.413307754056186],[116,194,70,-6.403313016206107],[116,194,71,-6.397249151258531],[116,194,72,-6.382761345253421],[116,194,73,-6.3725160253703805],[116,194,74,-6.367285029790577],[116,194,75,-6.363588925681166],[116,194,76,-6.366121934284844],[116,194,77,-6.3840937064481595],[116,194,78,-6.398150534525801],[116,194,79,-6.397968437759978],[116,195,64,-6.5242225948636685],[116,195,65,-6.526919609936982],[116,195,66,-6.513670718494224],[116,195,67,-6.489953583236619],[116,195,68,-6.471341732497862],[116,195,69,-6.458292227872519],[116,195,70,-6.4479079606742005],[116,195,71,-6.442075673361283],[116,195,72,-6.428711026864142],[116,195,73,-6.417456891136826],[116,195,74,-6.413216980844135],[116,195,75,-6.408426401208795],[116,195,76,-6.408563145622095],[116,195,77,-6.430796593125572],[116,195,78,-6.450892352136891],[116,195,79,-6.449809792043911],[116,196,64,-6.563081451723082],[116,196,65,-6.565357055507559],[116,196,66,-6.5486788886785305],[116,196,67,-6.523564831816398],[116,196,68,-6.5039144761989585],[116,196,69,-6.488861445800062],[116,196,70,-6.476049118969168],[116,196,71,-6.468372151411195],[116,196,72,-6.454780424872021],[116,196,73,-6.446657532448017],[116,196,74,-6.445516280275425],[116,196,75,-6.4374844775130775],[116,196,76,-6.439004971810197],[116,196,77,-6.463330372272903],[116,196,78,-6.485399730487647],[116,196,79,-6.484660151490726],[116,197,64,-6.6136071454828596],[116,197,65,-6.614923754331991],[116,197,66,-6.597587396839664],[116,197,67,-6.571232501887389],[116,197,68,-6.55036130196836],[116,197,69,-6.531084258250194],[116,197,70,-6.516891038907855],[116,197,71,-6.510028254139666],[116,197,72,-6.4971763798027835],[116,197,73,-6.491073404553056],[116,197,74,-6.489054177558276],[116,197,75,-6.480670208585431],[116,197,76,-6.482523460925886],[116,197,77,-6.50054637326453],[116,197,78,-6.522704566161542],[116,197,79,-6.522169391131256],[116,198,64,-6.6610023625580075],[116,198,65,-6.662354573001887],[116,198,66,-6.6454231138374755],[116,198,67,-6.618647889433779],[116,198,68,-6.596352509355311],[116,198,69,-6.574570819766923],[116,198,70,-6.559000930662203],[116,198,71,-6.552148715631477],[116,198,72,-6.542996185474104],[116,198,73,-6.536789228089918],[116,198,74,-6.533459922201956],[116,198,75,-6.525109928856529],[116,198,76,-6.526954810330028],[116,198,77,-6.544620874765737],[116,198,78,-6.565593666022607],[116,198,79,-6.566808263944073],[116,199,64,-6.707903328509351],[116,199,65,-6.708241815479007],[116,199,66,-6.690814226784165],[116,199,67,-6.664725064729353],[116,199,68,-6.639669166613737],[116,199,69,-6.619558050248557],[116,199,70,-6.6026235246053915],[116,199,71,-6.595131121458767],[116,199,72,-6.588936991803124],[116,199,73,-6.5863769756223745],[116,199,74,-6.577469910735304],[116,199,75,-6.56751957141964],[116,199,76,-6.571338290429421],[116,199,77,-6.584677646729974],[116,199,78,-6.603886102289066],[116,199,79,-6.608558231478737],[116,200,64,-6.75646807103344],[116,200,65,-6.755673930575991],[116,200,66,-6.739542134258176],[116,200,67,-6.712387161707759],[116,200,68,-6.6866200975658785],[116,200,69,-6.6638411148641294],[116,200,70,-6.650108152708341],[116,200,71,-6.640173234369106],[116,200,72,-6.637628538757031],[116,200,73,-6.631419961092903],[116,200,74,-6.621685607611292],[116,200,75,-6.611586872993931],[116,200,76,-6.615948094664818],[116,200,77,-6.631660992530902],[116,200,78,-6.646885320013074],[116,200,79,-6.655790566469684],[116,201,64,-6.795223198120515],[116,201,65,-6.795604085414113],[116,201,66,-6.781767358061146],[116,201,67,-6.754511987202156],[116,201,68,-6.726845218768908],[116,201,69,-6.703716874853618],[116,201,70,-6.690101851551818],[116,201,71,-6.683059282207292],[116,201,72,-6.679759784880086],[116,201,73,-6.674721655589619],[116,201,74,-6.662857789182301],[116,201,75,-6.6562379593876555],[116,201,76,-6.660123145427037],[116,201,77,-6.676922633155232],[116,201,78,-6.684093824613095],[116,201,79,-6.687756114961666],[116,202,64,-6.849454811560661],[116,202,65,-6.849580888609391],[116,202,66,-6.835569843062094],[116,202,67,-6.808147049045351],[116,202,68,-6.779750043547058],[116,202,69,-6.754595027844812],[116,202,70,-6.742166772737328],[116,202,71,-6.734534015332772],[116,202,72,-6.729157362398281],[116,202,73,-6.721776336569108],[116,202,74,-6.711878427332218],[116,202,75,-6.708148094593557],[116,202,76,-6.7098630822433405],[116,202,77,-6.7266412837738],[116,202,78,-6.733580668360389],[116,202,79,-6.735376908480036],[116,203,64,-6.899697008915407],[116,203,65,-6.899329605136416],[116,203,66,-6.883965753116368],[116,203,67,-6.856916359837879],[116,203,68,-6.828749653465142],[116,203,69,-6.803419986515319],[116,203,70,-6.7918745733144785],[116,203,71,-6.781785398500964],[116,203,72,-6.775282796876533],[116,203,73,-6.768843031952336],[116,203,74,-6.758356888399754],[116,203,75,-6.754206063129001],[116,203,76,-6.756677476578302],[116,203,77,-6.778734826917109],[116,203,78,-6.783279582791242],[116,203,79,-6.785726931730125],[116,204,64,-6.952037320947284],[116,204,65,-6.946659284736059],[116,204,66,-6.931339941255375],[116,204,67,-6.90289911423997],[116,204,68,-6.870391740310518],[116,204,69,-6.844816237091568],[116,204,70,-6.8288660190382515],[116,204,71,-6.819787833978408],[116,204,72,-6.809906603439896],[116,204,73,-6.801667008580315],[116,204,74,-6.792483853500817],[116,204,75,-6.788666809351903],[116,204,76,-6.794920953473004],[116,204,77,-6.820423015338735],[116,204,78,-6.828221578031508],[116,204,79,-6.82882437071688],[116,205,64,-7.011986566852859],[116,205,65,-7.006269936059358],[116,205,66,-6.99123143234442],[116,205,67,-6.9622508275389885],[116,205,68,-6.92694658632814],[116,205,69,-6.904644750479504],[116,205,70,-6.886001436699299],[116,205,71,-6.875404083118389],[116,205,72,-6.859523873147825],[116,205,73,-6.84668558375945],[116,205,74,-6.8370124556445155],[116,205,75,-6.836219282702639],[116,205,76,-6.842396229771022],[116,205,77,-6.867883540528095],[116,205,78,-6.875688981901341],[116,205,79,-6.875846950029146],[116,206,64,-7.063037777292919],[116,206,65,-7.055626910223581],[116,206,66,-7.039265979680226],[116,206,67,-7.008370550900711],[116,206,68,-6.9750301715410545],[116,206,69,-6.950686874298938],[116,206,70,-6.933760302401131],[116,206,71,-6.922140139248414],[116,206,72,-6.905161128778874],[116,206,73,-6.891880577729043],[116,206,74,-6.884378750911676],[116,206,75,-6.883559233874992],[116,206,76,-6.889550264512948],[116,206,77,-6.920042219530998],[116,206,78,-6.926210329543804],[116,206,79,-6.925571945857773],[116,207,64,-7.1149417201478125],[116,207,65,-7.1089628224076575],[116,207,66,-7.0878746757708555],[116,207,67,-7.057579613327573],[116,207,68,-7.024775946291398],[116,207,69,-6.999067844623586],[116,207,70,-6.9811362669106165],[116,207,71,-6.967366653214771],[116,207,72,-6.953287347141219],[116,207,73,-6.939566105453269],[116,207,74,-6.933665832526475],[116,207,75,-6.9291005189614],[116,207,76,-6.936809806703092],[116,207,77,-6.9628458084727205],[116,207,78,-6.965822979473359],[116,207,79,-6.965350217057063],[116,208,64,-7.167429428012348],[116,208,65,-7.161319479428415],[116,208,66,-7.13955285120487],[116,208,67,-7.107285405975154],[116,208,68,-7.072483262280897],[116,208,69,-7.043857833808693],[116,208,70,-7.025848283912456],[116,208,71,-7.013146450844173],[116,208,72,-7.000242288624995],[116,208,73,-6.988100448498559],[116,208,74,-6.980603865549118],[116,208,75,-6.97464111488903],[116,208,76,-6.982160744174149],[116,208,77,-7.016559102022933],[116,208,78,-7.025744333914597],[116,208,79,-7.02919300451064],[116,209,64,-7.216367920492696],[116,209,65,-7.212107097686078],[116,209,66,-7.1885207213020195],[116,209,67,-7.154441162743393],[116,209,68,-7.120273368476707],[116,209,69,-7.091525236451474],[116,209,70,-7.069613301513749],[116,209,71,-7.056335321865286],[116,209,72,-7.04463699607575],[116,209,73,-7.034290888200156],[116,209,74,-7.026630887645278],[116,209,75,-7.0209750670407916],[116,209,76,-7.0293389246407285],[116,209,77,-7.06270117606731],[116,209,78,-7.076294683422703],[116,209,79,-7.0817265018756625],[116,210,64,-7.271404537193837],[116,210,65,-7.2634749111723655],[116,210,66,-7.240520989099866],[116,210,67,-7.206928911766287],[116,210,68,-7.169480382333887],[116,210,69,-7.138906493140317],[116,210,70,-7.1198631454099575],[116,210,71,-7.105317651465517],[116,210,72,-7.094105709174098],[116,210,73,-7.084758586569542],[116,210,74,-7.076840957153541],[116,210,75,-7.071509234654222],[116,210,76,-7.078447334560193],[116,210,77,-7.110477191405226],[116,210,78,-7.126470092656176],[116,210,79,-7.132510692201308],[116,211,64,-7.31970444232754],[116,211,65,-7.31045575772185],[116,211,66,-7.286722017658842],[116,211,67,-7.250394149895603],[116,211,68,-7.214078036805044],[116,211,69,-7.186803426105609],[116,211,70,-7.168377910526876],[116,211,71,-7.153809609775476],[116,211,72,-7.140482983142725],[116,211,73,-7.129621848691648],[116,211,74,-7.121309088358453],[116,211,75,-7.120612261696691],[116,211,76,-7.123190443286883],[116,211,77,-7.160491260191411],[116,211,78,-7.181131132898413],[116,211,79,-7.187847432884884],[116,212,64,-7.348702023100969],[116,212,65,-7.345062560238484],[116,212,66,-7.322886248582782],[116,212,67,-7.2927426693231485],[116,212,68,-7.2650564205000485],[116,212,69,-7.242407383146567],[116,212,70,-7.228869223016757],[116,212,71,-7.217745855568487],[116,212,72,-7.20260111091186],[116,212,73,-7.191230522036031],[116,212,74,-7.1828544959806475],[116,212,75,-7.1809836410506716],[116,212,76,-7.185599594782294],[116,212,77,-7.213584668355693],[116,212,78,-7.231161739929897],[116,212,79,-7.237772713286742],[116,213,64,-7.398002777293246],[116,213,65,-7.391298301435504],[116,213,66,-7.364198577566401],[116,213,67,-7.328713234077681],[116,213,68,-7.3003250215291615],[116,213,69,-7.281821384683715],[116,213,70,-7.269994438162556],[116,213,71,-7.261006403822683],[116,213,72,-7.249985701780397],[116,213,73,-7.243634623349637],[116,213,74,-7.237737315834829],[116,213,75,-7.234354744001387],[116,213,76,-7.24466792456262],[116,213,77,-7.271735922700775],[116,213,78,-7.2885627145929694],[116,213,79,-7.291837833774471],[116,214,64,-7.445458994116187],[116,214,65,-7.436903552245223],[116,214,66,-7.412213869767606],[116,214,67,-7.37685637076512],[116,214,68,-7.348600471673035],[116,214,69,-7.330186769181786],[116,214,70,-7.317697091817377],[116,214,71,-7.3077171278803],[116,214,72,-7.29608768796497],[116,214,73,-7.2888665853765175],[116,214,74,-7.284991252643273],[116,214,75,-7.280860809610188],[116,214,76,-7.295742690890991],[116,214,77,-7.320551690645653],[116,214,78,-7.339304841567847],[116,214,79,-7.344578196243238],[116,215,64,-7.492551956759395],[116,215,65,-7.486116754177094],[116,215,66,-7.4618328585397],[116,215,67,-7.427708310753656],[116,215,68,-7.399236846511867],[116,215,69,-7.379594665865225],[116,215,70,-7.366429404260146],[116,215,71,-7.3545358943782],[116,215,72,-7.343415213340668],[116,215,73,-7.33605443362509],[116,215,74,-7.331486635827893],[116,215,75,-7.327509250327642],[116,215,76,-7.33951848605459],[116,215,77,-7.361626413820421],[116,215,78,-7.378580264328179],[116,215,79,-7.385917957566234],[116,216,64,-7.537481608725472],[116,216,65,-7.531206365460771],[116,216,66,-7.508692921817563],[116,216,67,-7.475031013417978],[116,216,68,-7.449220593010475],[116,216,69,-7.429392257243149],[116,216,70,-7.413037652655865],[116,216,71,-7.403604489871327],[116,216,72,-7.391067182262613],[116,216,73,-7.383167604201539],[116,216,74,-7.375589555659588],[116,216,75,-7.372135835224841],[116,216,76,-7.381590698292878],[116,216,77,-7.401727129996159],[116,216,78,-7.418911333280465],[116,216,79,-7.4308728692529575],[116,217,64,-7.576356194161059],[116,217,65,-7.5747459224655485],[116,217,66,-7.5574893589720515],[116,217,67,-7.531000319128403],[116,217,68,-7.505905530460718],[116,217,69,-7.4871031011040605],[116,217,70,-7.469969141782705],[116,217,71,-7.4544445783622235],[116,217,72,-7.431589893547217],[116,217,73,-7.420169575912345],[116,217,74,-7.410192434796565],[116,217,75,-7.406145249548052],[116,217,76,-7.422904529648566],[116,217,77,-7.4476298246955865],[116,217,78,-7.463866229159517],[116,217,79,-7.479923206000146],[116,218,64,-7.629138059125395],[116,218,65,-7.6263200450242765],[116,218,66,-7.609206440580573],[116,218,67,-7.5831860280759855],[116,218,68,-7.555711979089378],[116,218,69,-7.537907302405544],[116,218,70,-7.520814680639909],[116,218,71,-7.502003715580699],[116,218,72,-7.479229753846615],[116,218,73,-7.467311642667759],[116,218,74,-7.458210834897581],[116,218,75,-7.454213035495132],[116,218,76,-7.4672268496129215],[116,218,77,-7.497533687634134],[116,218,78,-7.5155922163554205],[116,218,79,-7.529243815880958],[116,219,64,-7.675308746196951],[116,219,65,-7.675666882469605],[116,219,66,-7.656313952886311],[116,219,67,-7.628656390637048],[116,219,68,-7.60451683717865],[116,219,69,-7.585570734629904],[116,219,70,-7.5663556293676],[116,219,71,-7.546112067876513],[116,219,72,-7.5240569486107916],[116,219,73,-7.510793119884551],[116,219,74,-7.504830453784449],[116,219,75,-7.497709162886325],[116,219,76,-7.521389561391041],[116,219,77,-7.5509652707903765],[116,219,78,-7.569948504417153],[116,219,79,-7.584225765586171],[116,220,64,-7.723136601417416],[116,220,65,-7.720302631038767],[116,220,66,-7.69915866161581],[116,220,67,-7.669563097895032],[116,220,68,-7.643762200620539],[116,220,69,-7.619525513547406],[116,220,70,-7.60138361591734],[116,220,71,-7.577740559546477],[116,220,72,-7.554882508582464],[116,220,73,-7.543327226341537],[116,220,74,-7.539044447327619],[116,220,75,-7.537014001670314],[116,220,76,-7.567318771175207],[116,220,77,-7.607568756835026],[116,220,78,-7.632890633496993],[116,220,79,-7.650138345662815],[116,221,64,-7.768110595089786],[116,221,65,-7.765730290844385],[116,221,66,-7.745236652256182],[116,221,67,-7.716836465940107],[116,221,68,-7.690893312087816],[116,221,69,-7.664536423953372],[116,221,70,-7.6446827323619955],[116,221,71,-7.622294853974196],[116,221,72,-7.5992641587911836],[116,221,73,-7.587176105851828],[116,221,74,-7.586623291266516],[116,221,75,-7.625133159622017],[116,221,76,-7.652834896720937],[116,221,77,-7.692467868691173],[116,221,78,-7.712937962247932],[116,221,79,-7.700118750659033],[116,222,64,-7.809764590690315],[116,222,65,-7.810709127161908],[116,222,66,-7.793009234712185],[116,222,67,-7.764001326776783],[116,222,68,-7.73590826072668],[116,222,69,-7.708788610601142],[116,222,70,-7.686815331076762],[116,222,71,-7.66777995676419],[116,222,72,-7.647173886093371],[116,222,73,-7.633254658492679],[116,222,74,-7.641457284654377],[116,222,75,-7.676345900135964],[116,222,76,-7.709822495329328],[116,222,77,-7.7444802452990285],[116,222,78,-7.759942661941239],[116,222,79,-7.746497892412862],[116,223,64,-7.857133878436388],[116,223,65,-7.85973408441412],[116,223,66,-7.845233288529035],[116,223,67,-7.814200871506604],[116,223,68,-7.783410327734063],[116,223,69,-7.7545006695947265],[116,223,70,-7.7342838054328595],[116,223,71,-7.713507924538344],[116,223,72,-7.6934325235503795],[116,223,73,-7.679925699911872],[116,223,74,-7.706565608538014],[116,223,75,-7.744399673011201],[116,223,76,-7.7818396311392375],[116,223,77,-7.803155960526006],[116,223,78,-7.80270337403541],[116,223,79,-7.792489093240372],[116,224,64,-7.902002922151288],[116,224,65,-7.905715627641006],[116,224,66,-7.891062541594942],[116,224,67,-7.861589862916974],[116,224,68,-7.829275097109893],[116,224,69,-7.798456126100758],[116,224,70,-7.779434743330871],[116,224,71,-7.760612561707308],[116,224,72,-7.735300851382589],[116,224,73,-7.721792754385457],[116,224,74,-7.7661317880704175],[116,224,75,-7.803062500441622],[116,224,76,-7.83753418440599],[116,224,77,-7.849254989871371],[116,224,78,-7.851739388501138],[116,224,79,-7.841222910736236],[116,225,64,-7.956968074343329],[116,225,65,-7.956421478977777],[116,225,66,-7.943243259134513],[116,225,67,-7.906928262953595],[116,225,68,-7.869727793056683],[116,225,69,-7.841465638977143],[116,225,70,-7.822109512587975],[116,225,71,-7.8069496537263685],[116,225,72,-7.78686882355947],[116,225,73,-7.774268309961767],[116,225,74,-7.828377529701028],[116,225,75,-7.861593026300431],[116,225,76,-7.88826076580426],[116,225,77,-7.8978745198810545],[116,225,78,-7.901773063333807],[116,225,79,-7.893970588106528],[116,226,64,-8.009591115790512],[116,226,65,-8.008221870303792],[116,226,66,-7.994340325301491],[116,226,67,-7.957945961118515],[116,226,68,-7.922362552493611],[116,226,69,-7.891006865578956],[116,226,70,-7.870112251083242],[116,226,71,-7.854992123818456],[116,226,72,-7.834564150839625],[116,226,73,-7.824556423812249],[116,226,74,-7.872163693753126],[116,226,75,-7.898955974661644],[116,226,76,-7.9373466633371255],[116,226,77,-7.948044094262958],[116,226,78,-7.952185883184142],[116,226,79,-7.944987880885787],[116,227,64,-8.056726231094768],[116,227,65,-8.05692311051297],[116,227,66,-8.042153557875197],[116,227,67,-8.006132118486248],[116,227,68,-7.971149824895663],[116,227,69,-7.935562749505959],[116,227,70,-7.913662141180638],[116,227,71,-7.8969960843044],[116,227,72,-7.878974206372913],[116,227,73,-7.870687162987704],[116,227,74,-7.931610429669245],[116,227,75,-7.954050112531861],[116,227,76,-7.995439849905517],[116,227,77,-8.006953726342154],[116,227,78,-8.011542039042165],[116,227,79,-8.003220953857365],[116,228,64,-8.091886658195918],[116,228,65,-8.09205985412797],[116,228,66,-8.078005807710905],[116,228,67,-8.042954722018552],[116,228,68,-8.006891383477877],[116,228,69,-7.969452084595704],[116,228,70,-7.943503977479816],[116,228,71,-7.925494205700923],[116,228,72,-7.909250030711605],[116,228,73,-7.898729737183232],[116,228,74,-7.971193074075443],[116,228,75,-7.994719456331454],[116,228,76,-8.038112620448972],[116,228,77,-8.051153467347376],[116,228,78,-8.058298733692382],[116,228,79,-8.049269198515919],[116,229,64,-8.129189904434712],[116,229,65,-8.131390622122664],[116,229,66,-8.120146909282692],[116,229,67,-8.090611081970817],[116,229,68,-8.05369234082538],[116,229,69,-8.01724847943909],[116,229,70,-7.988700814232134],[116,229,71,-7.96889638077777],[116,229,72,-7.948731619620945],[116,229,73,-7.982066323901348],[116,229,74,-8.072397171916387],[116,229,75,-8.080337353674922],[116,229,76,-8.08759784428549],[116,229,77,-8.099417648214397],[116,229,78,-8.10843791779321],[116,229,79,-8.09908547485739],[116,230,64,-8.174717488681754],[116,230,65,-8.179514867584391],[116,230,66,-8.16465951825133],[116,230,67,-8.13486459836812],[116,230,68,-8.100079784150012],[116,230,69,-8.062707228302674],[116,230,70,-8.03640467653293],[116,230,71,-8.015417339942452],[116,230,72,-7.995102489987955],[116,230,73,-8.023050871980974],[116,230,74,-8.11927085551923],[116,230,75,-8.134876237006502],[116,230,76,-8.13756561362066],[116,230,77,-8.1550692506654],[116,230,78,-8.16035517450769],[116,230,79,-8.151107673951875],[116,231,64,-8.22946617009224],[116,231,65,-8.233482813621622],[116,231,66,-8.217650916535645],[116,231,67,-8.184387194323213],[116,231,68,-8.15037160934336],[116,231,69,-8.114121202246892],[116,231,70,-8.087318990971736],[116,231,71,-8.065601475860882],[116,231,72,-8.045548016997268],[116,231,73,-8.02778050079058],[116,231,74,-8.09805506694993],[116,231,75,-8.143126557128236],[116,231,76,-8.162183236109223],[116,231,77,-8.20133875319624],[116,231,78,-8.203950065840969],[116,231,79,-8.195783757697722],[116,232,64,-8.27743395738736],[116,232,65,-8.282998774774738],[116,232,66,-8.264823532030842],[116,232,67,-8.229656368035663],[116,232,68,-8.196910457910652],[116,232,69,-8.16156912959806],[116,232,70,-8.135571048464916],[116,232,71,-8.112637052343153],[116,232,72,-8.094994604609425],[116,232,73,-8.07295449537096],[116,232,74,-8.14047494524535],[116,232,75,-8.183735027502719],[116,232,76,-8.202725094310699],[116,232,77,-8.24628194284168],[116,232,78,-8.251539609333294],[116,232,79,-8.24482757934548],[116,233,64,-8.329927899367245],[116,233,65,-8.331958873698586],[116,233,66,-8.312040198614087],[116,233,67,-8.276526118281549],[116,233,68,-8.242425796679587],[116,233,69,-8.20761454179609],[116,233,70,-8.183617649585075],[116,233,71,-8.161558954749138],[116,233,72,-8.14091813866783],[116,233,73,-8.121360614196021],[116,233,74,-8.191569611194646],[116,233,75,-8.222513840371903],[116,233,76,-8.255123717877348],[116,233,77,-8.296536143936615],[116,233,78,-8.30339499968111],[116,233,79,-8.300285211928648],[116,234,64,-8.386684738183998],[116,234,65,-8.385666560406424],[116,234,66,-8.364578800954641],[116,234,67,-8.326736307963756],[116,234,68,-8.293753923929028],[116,234,69,-8.262267228005058],[116,234,70,-8.236743829186413],[116,234,71,-8.211614419974477],[116,234,72,-8.190362600101844],[116,234,73,-8.169394880423544],[116,234,74,-8.215424901873186],[116,234,75,-8.24962905570349],[116,234,76,-8.287326454963123],[116,234,77,-8.34020778258313],[116,234,78,-8.348139223853092],[116,234,79,-8.343197894385119],[116,235,64,-8.436380787274661],[116,235,65,-8.436718758356957],[116,235,66,-8.413688732935986],[116,235,67,-8.377841437947646],[116,235,68,-8.342791833714378],[116,235,69,-8.311377303621779],[116,235,70,-8.28675909944906],[116,235,71,-8.259951264198108],[116,235,72,-8.237706446439798],[116,235,73,-8.216715596753742],[116,235,74,-8.208961288563193],[116,235,75,-8.200919818343166],[116,235,76,-8.234998881157056],[116,235,77,-8.316844710978858],[116,235,78,-8.405063155218242],[116,235,79,-8.398255759041811],[116,236,64,-8.50301947271673],[116,236,65,-8.503749629861769],[116,236,66,-8.4800052763595],[116,236,67,-8.443987886706486],[116,236,68,-8.408821105380174],[116,236,69,-8.377801886349799],[116,236,70,-8.350443202813299],[116,236,71,-8.324252886337197],[116,236,72,-8.300150149923175],[116,236,73,-8.279929631945738],[116,236,74,-8.273538515875211],[116,236,75,-8.268380334258492],[116,236,76,-8.301623950492628],[116,236,77,-8.374775803458354],[116,236,78,-8.45794514673208],[116,236,79,-8.45110863881312],[116,237,64,-8.559431659452654],[116,237,65,-8.551866163014562],[116,237,66,-8.524376942134932],[116,237,67,-8.484384306201799],[116,237,68,-8.448067984499495],[116,237,69,-8.418184282951747],[116,237,70,-8.390073245545242],[116,237,71,-8.364793597506011],[116,237,72,-8.342809586070999],[116,237,73,-8.324497017111076],[116,237,74,-8.314885651297972],[116,237,75,-8.353651330748537],[116,237,76,-8.38052986137224],[116,237,77,-8.45557035093824],[116,237,78,-8.504840544379146],[116,237,79,-8.499053795027667],[116,238,64,-8.605290796711362],[116,238,65,-8.598346620703596],[116,238,66,-8.572281244667144],[116,238,67,-8.534024366477873],[116,238,68,-8.496640622069576],[116,238,69,-8.466399087391489],[116,238,70,-8.436850432349077],[116,238,71,-8.412520332657026],[116,238,72,-8.38940799225433],[116,238,73,-8.374564701771149],[116,238,74,-8.392645012437248],[116,238,75,-8.432149212227527],[116,238,76,-8.459004608807376],[116,238,77,-8.528567395229931],[116,238,78,-8.54863268918499],[116,238,79,-8.541732880681058],[116,239,64,-8.65779522390628],[116,239,65,-8.651453326297116],[116,239,66,-8.627458590117971],[116,239,67,-8.588532853414183],[116,239,68,-8.551115254865804],[116,239,69,-8.51872708570947],[116,239,70,-8.488504338249529],[116,239,71,-8.462243590068425],[116,239,72,-8.438555361565347],[116,239,73,-8.424721269069822],[116,239,74,-8.42573994138123],[116,239,75,-8.45478419747868],[116,239,76,-8.485057854844078],[116,239,77,-8.548431920754005],[116,239,78,-8.593990249080361],[116,239,79,-8.587248901417015],[116,240,64,-8.704270821198628],[116,240,65,-8.697434326197916],[116,240,66,-8.67396859556878],[116,240,67,-8.635698749583776],[116,240,68,-8.599072808537938],[116,240,69,-8.564986916047964],[116,240,70,-8.53620708591603],[116,240,71,-8.509535185742962],[116,240,72,-8.486105565713917],[116,240,73,-8.47466757915274],[116,240,74,-8.471430617270787],[116,240,75,-8.490939171698889],[116,240,76,-8.51802148961564],[116,240,77,-8.586646899581709],[116,240,78,-8.643321663982135],[116,240,79,-8.637068219001076],[116,241,64,-8.746299391131227],[116,241,65,-8.745420202805972],[116,241,66,-8.724117759975949],[116,241,67,-8.68836571376041],[116,241,68,-8.65477394189026],[116,241,69,-8.620263354632813],[116,241,70,-8.592835091955866],[116,241,71,-8.567776283249303],[116,241,72,-8.5436247011074],[116,241,73,-8.533019825045322],[116,241,74,-8.524551791880373],[116,241,75,-8.512558250357054],[116,241,76,-8.509090563521866],[116,241,77,-8.516644020291189],[116,241,78,-8.518689277719862],[116,241,79,-8.601446127598695],[116,242,64,-8.797207610227897],[116,242,65,-8.796553024976642],[116,242,66,-8.773183083861504],[116,242,67,-8.739890160321758],[116,242,68,-8.70610117077439],[116,242,69,-8.671729147045546],[116,242,70,-8.645337661795791],[116,242,71,-8.617846810937744],[116,242,72,-8.59410554804369],[116,242,73,-8.58467829838149],[116,242,74,-8.57401263574082],[116,242,75,-8.563813354957983],[116,242,76,-8.56262404607674],[116,242,77,-8.568298440074365],[116,242,78,-8.569924228255354],[116,242,79,-8.65621523398084],[116,243,64,-8.84355701198331],[116,243,65,-8.839236331803368],[116,243,66,-8.819965715374085],[116,243,67,-8.787044265694746],[116,243,68,-8.754589938607824],[116,243,69,-8.719625251087527],[116,243,70,-8.695182474620006],[116,243,71,-8.666592012905264],[116,243,72,-8.64155380609048],[116,243,73,-8.63099131011283],[116,243,74,-8.619027816401271],[116,243,75,-8.610799162876416],[116,243,76,-8.611573353763031],[116,243,77,-8.620660252804843],[116,243,78,-8.621500498585297],[116,243,79,-8.720361162623723],[116,244,64,-8.876498875880214],[116,244,65,-8.87501162130525],[116,244,66,-8.856975042999697],[116,244,67,-8.82793014968816],[116,244,68,-8.793982586836053],[116,244,69,-8.760345369835505],[116,244,70,-8.735348209309224],[116,244,71,-8.710297471159391],[116,244,72,-8.684055934329965],[116,244,73,-8.670290738544885],[116,244,74,-8.659422081195933],[116,244,75,-8.654497348606668],[116,244,76,-8.65535837758118],[116,244,77,-8.666923205934225],[116,244,78,-8.668682413113464],[116,244,79,-8.75383394432179],[116,245,64,-8.919009939648388],[116,245,65,-8.918609651453098],[116,245,66,-8.901690801607128],[116,245,67,-8.873273825742913],[116,245,68,-8.838095865162964],[116,245,69,-8.805302461089584],[116,245,70,-8.782427721554711],[116,245,71,-8.759697957738771],[116,245,72,-8.732760671150267],[116,245,73,-8.715608385502927],[116,245,74,-8.70664442709632],[116,245,75,-8.702668224261425],[116,245,76,-8.706154508919354],[116,245,77,-8.715349428405851],[116,245,78,-8.72005521419307],[116,245,79,-8.792913879705461],[116,246,64,-8.963147516827247],[116,246,65,-8.959463349032772],[116,246,66,-8.94488999531278],[116,246,67,-8.915536855874896],[116,246,68,-8.879878756543599],[116,246,69,-8.85055842485218],[116,246,70,-8.828829403740329],[116,246,71,-8.805264200541446],[116,246,72,-8.778993688403927],[116,246,73,-8.761869336047463],[116,246,74,-8.752352485238452],[116,246,75,-8.750014093473073],[116,246,76,-8.753468527693697],[116,246,77,-8.764246640470239],[116,246,78,-8.769531381208754],[116,246,79,-8.848527612362242],[116,247,64,-9.015192430410629],[116,247,65,-9.007991662349113],[116,247,66,-8.992023732781902],[116,247,67,-8.960929864308987],[116,247,68,-8.92816225577292],[116,247,69,-8.901779335199643],[116,247,70,-8.878184336688951],[116,247,71,-8.852099492851965],[116,247,72,-8.826941447236626],[116,247,73,-8.808788099903872],[116,247,74,-8.800244094657822],[116,247,75,-8.794969244023028],[116,247,76,-8.796595785942905],[116,247,77,-8.812109638909869],[116,247,78,-8.815806753058007],[116,247,79,-8.88103811001698],[116,248,64,-9.060404040704189],[116,248,65,-9.051597630515857],[116,248,66,-9.034634698591914],[116,248,67,-9.00368686059013],[116,248,68,-8.970050740195928],[116,248,69,-8.944300682662307],[116,248,70,-8.922592169754262],[116,248,71,-8.89610511860632],[116,248,72,-8.870762151461188],[116,248,73,-8.855064770288633],[116,248,74,-8.84882372518287],[116,248,75,-8.840679136282507],[116,248,76,-8.842867692506177],[116,248,77,-8.859845551635598],[116,248,78,-8.864907607610677],[116,248,79,-8.934288338498742],[116,249,64,-9.099049803463814],[116,249,65,-9.090983849363623],[116,249,66,-9.071046998889305],[116,249,67,-9.036888397321263],[116,249,68,-9.003670142049126],[116,249,69,-8.979883796341158],[116,249,70,-8.95807211792672],[116,249,71,-8.933204346930612],[116,249,72,-8.908392822785244],[116,249,73,-8.89278582859898],[116,249,74,-8.886815234413977],[116,249,75,-8.87859333474763],[116,249,76,-8.882218290901086],[116,249,77,-8.901421059237784],[116,249,78,-8.921703060410845],[116,249,79,-9.03062837551616],[116,250,64,-9.14923135465182],[116,250,65,-9.140666696531378],[116,250,66,-9.118863926985599],[116,250,67,-9.08594046775458],[116,250,68,-9.05478456156169],[116,250,69,-9.028694206740491],[116,250,70,-9.004804860375309],[116,250,71,-8.981581599431337],[116,250,72,-8.956723976156393],[116,250,73,-8.940469524301053],[116,250,74,-8.935315560911349],[116,250,75,-8.928561530304611],[116,250,76,-8.931526464729037],[116,250,77,-8.947069380263459],[116,250,78,-9.007398878497833],[116,250,79,-9.06339269466514],[116,251,64,-9.195162742529948],[116,251,65,-9.18621173854207],[116,251,66,-9.164486427404956],[116,251,67,-9.132986056852568],[116,251,68,-9.100638899993335],[116,251,69,-9.075891709754101],[116,251,70,-9.051718229023232],[116,251,71,-9.030204743191463],[116,251,72,-9.004143456617257],[116,251,73,-8.9877508071237],[116,251,74,-8.97907052796768],[116,251,75,-8.97515142554547],[116,251,76,-8.979980091437222],[116,251,77,-8.995095496944453],[116,251,78,-9.047897009447059],[116,251,79,-9.104075365479277],[116,252,64,-9.236356460112487],[116,252,65,-9.224901221917216],[116,252,66,-9.201373412687397],[116,252,67,-9.168522277798928],[116,252,68,-9.136342971308153],[116,252,69,-9.109752786089688],[116,252,70,-9.08637950105143],[116,252,71,-9.063981983338783],[116,252,72,-9.036741459437938],[116,252,73,-9.019907661922089],[116,252,74,-9.009029300844512],[116,252,75,-9.007547694412574],[116,252,76,-9.014627659927033],[116,252,77,-9.032392668459687],[116,252,78,-9.088913669087058],[116,252,79,-9.146515157738582],[116,253,64,-9.289132880117796],[116,253,65,-9.280456276721301],[116,253,66,-9.256364946565355],[116,253,67,-9.225457268263128],[116,253,68,-9.193966539784576],[116,253,69,-9.166627908425818],[116,253,70,-9.14577080339673],[116,253,71,-9.12352577854278],[116,253,72,-9.097518139022077],[116,253,73,-9.079034603298686],[116,253,74,-9.06689628604085],[116,253,75,-9.063437921097306],[116,253,76,-9.069161474182389],[116,253,77,-9.08302599179067],[116,253,78,-9.096839299042447],[116,253,79,-9.146181190760409],[116,254,64,-9.252942924000486],[116,254,65,-9.253311305545452],[116,254,66,-9.23568545811753],[116,254,67,-9.212462141867293],[116,254,68,-9.187633051185248],[116,254,69,-9.16839395723479],[116,254,70,-9.154928911699407],[116,254,71,-9.143054223539966],[116,254,72,-9.12810978474843],[116,254,73,-9.118109200939413],[116,254,74,-9.11620078717343],[116,254,75,-9.118506777013765],[116,254,76,-9.134715799184502],[116,254,77,-9.155516081386008],[116,254,78,-9.169841966520263],[116,254,79,-9.210502060240225],[116,255,64,-9.2988119008283],[116,255,65,-9.298383601296932],[116,255,66,-9.281282229840453],[116,255,67,-9.25608343152243],[116,255,68,-9.234859632159234],[116,255,69,-9.213729607906412],[116,255,70,-9.198204881188357],[116,255,71,-9.189531976599868],[116,255,72,-9.17648389912253],[116,255,73,-9.165634048916901],[116,255,74,-9.16507456456819],[116,255,75,-9.165983843143461],[116,255,76,-9.181858258690719],[116,255,77,-9.202423543690173],[116,255,78,-9.2143771722335],[116,255,79,-9.249638720868667],[116,256,64,-9.343670989738643],[116,256,65,-9.342231782525783],[116,256,66,-9.326710560897988],[116,256,67,-9.301929278843328],[116,256,68,-9.282466271419652],[116,256,69,-9.261418806492946],[116,256,70,-9.244429512457415],[116,256,71,-9.23619664703873],[116,256,72,-9.223907474464715],[116,256,73,-9.215243410903406],[116,256,74,-9.212436042936218],[116,256,75,-9.212301210934031],[116,256,76,-9.229345278954565],[116,256,77,-9.252012323477281],[116,256,78,-9.262644019282394],[116,256,79,-9.30661923361732],[116,257,64,-9.388749083927266],[116,257,65,-9.389126016975164],[116,257,66,-9.37403313001038],[116,257,67,-9.351194274616038],[116,257,68,-9.330087619372923],[116,257,69,-9.308388514202937],[116,257,70,-9.291264761749945],[116,257,71,-9.282613629143361],[116,257,72,-9.270551135846882],[116,257,73,-9.26183258945084],[116,257,74,-9.26070887902994],[116,257,75,-9.262821597258446],[116,257,76,-9.276018648167973],[116,257,77,-9.301288068109146],[116,257,78,-9.348525064745708],[116,257,79,-9.39230664033353],[116,258,64,-9.437674377945992],[116,258,65,-9.441441291927342],[116,258,66,-9.42635411779714],[116,258,67,-9.402635482086447],[116,258,68,-9.378560582007196],[116,258,69,-9.357955253654309],[116,258,70,-9.343454935979857],[116,258,71,-9.331418130981506],[116,258,72,-9.319298541991095],[116,258,73,-9.31045991572103],[116,258,74,-9.312602200141564],[116,258,75,-9.314196757550151],[116,258,76,-9.328799135814938],[116,258,77,-9.351434983797741],[116,258,78,-9.400528493825696],[116,258,79,-9.452163244907613],[116,259,64,-9.48376485821522],[116,259,65,-9.489385212848234],[116,259,66,-9.474618423339136],[116,259,67,-9.449898159120725],[116,259,68,-9.42336198374501],[116,259,69,-9.404098343406691],[116,259,70,-9.39005980407717],[116,259,71,-9.38055192769864],[116,259,72,-9.365358297047944],[116,259,73,-9.35764403563885],[116,259,74,-9.357343931769245],[116,259,75,-9.362348224540165],[116,259,76,-9.37680144068084],[116,259,77,-9.398367851438842],[116,259,78,-9.429403079377554],[116,259,79,-9.503519825016197],[116,260,64,-9.601279665236994],[116,260,65,-9.608714309377973],[116,260,66,-9.59631544183367],[116,260,67,-9.574474845106511],[116,260,68,-9.550154592444551],[116,260,69,-9.53601517995649],[116,260,70,-9.524234052636341],[116,260,71,-9.515085206353696],[116,260,72,-9.498444761276446],[116,260,73,-9.49157333704317],[116,260,74,-9.49482434976802],[116,260,75,-9.498308059967243],[116,260,76,-9.511532151051027],[116,260,77,-9.531937838098798],[116,260,78,-9.555288283870585],[116,260,79,-9.59313190609975],[116,261,64,-9.641542345174901],[116,261,65,-9.649410605574303],[116,261,66,-9.644193621325375],[116,261,67,-9.623552747228143],[116,261,68,-9.602806311868964],[116,261,69,-9.585813635906478],[116,261,70,-9.573722769831813],[116,261,71,-9.56021245161582],[116,261,72,-9.54030338195254],[116,261,73,-9.529288222206798],[116,261,74,-9.531384207237782],[116,261,75,-9.535482550586632],[116,261,76,-9.549089344750806],[116,261,77,-9.577343598581665],[116,261,78,-9.62187859500055],[116,261,79,-9.664889062035101],[116,262,64,-9.693521616777526],[116,262,65,-9.698744795280591],[116,262,66,-9.693817595220356],[116,262,67,-9.67355456025591],[116,262,68,-9.654215439199596],[116,262,69,-9.634835188075911],[116,262,70,-9.621034914838887],[116,262,71,-9.606521589575227],[116,262,72,-9.58691002476429],[116,262,73,-9.576342766054015],[116,262,74,-9.579759588206304],[116,262,75,-9.583915156500233],[116,262,76,-9.595505734045773],[116,262,77,-9.622626468625745],[116,262,78,-9.681659792973795],[116,262,79,-9.744625698424342],[116,263,64,-9.73750881794963],[116,263,65,-9.743179363844156],[116,263,66,-9.738466975097277],[116,263,67,-9.715415120070137],[116,263,68,-9.69632737446106],[116,263,69,-9.677744233935103],[116,263,70,-9.664371705627065],[116,263,71,-9.649257443040808],[116,263,72,-9.633234053350948],[116,263,73,-9.624447398586014],[116,263,74,-9.62853470668754],[116,263,75,-9.630607371857936],[116,263,76,-9.64082289445574],[116,263,77,-9.669516953726827],[116,263,78,-9.729744166568203],[116,263,79,-9.791688720214655],[116,264,64,-9.778847140170024],[116,264,65,-9.789623042910051],[116,264,66,-9.783016968320705],[116,264,67,-9.758918561825183],[116,264,68,-9.737354667502496],[116,264,69,-9.722441199890806],[116,264,70,-9.70923717191715],[116,264,71,-9.692334698840524],[116,264,72,-9.677327994210733],[116,264,73,-9.670767539611228],[116,264,74,-9.674695941336605],[116,264,75,-9.677719517849068],[116,264,76,-9.68685873485148],[116,264,77,-9.71578364510614],[116,264,78,-9.78210083386953],[116,264,79,-9.842379308610154],[116,265,64,-9.828188186532005],[116,265,65,-9.836037210416196],[116,265,66,-9.823997388279054],[116,265,67,-9.794607626999008],[116,265,68,-9.76940066090225],[116,265,69,-9.757255009047306],[116,265,70,-9.746361630322143],[116,265,71,-9.735549107830353],[116,265,72,-9.727903609432044],[116,265,73,-9.726393878702678],[116,265,74,-9.732520956052056],[116,265,75,-9.799816820458398],[116,265,76,-9.847157618076771],[116,265,77,-9.88019825314046],[116,265,78,-9.904561435862986],[116,265,79,-9.897237118104954],[116,266,64,-9.876171136153495],[116,266,65,-9.883533454856597],[116,266,66,-9.873128829705523],[116,266,67,-9.844007208778404],[116,266,68,-9.817734830297866],[116,266,69,-9.80412406147157],[116,266,70,-9.793091738840209],[116,266,71,-9.782903725873075],[116,266,72,-9.775561968983753],[116,266,73,-9.775981918668812],[116,266,74,-9.779614596206965],[116,266,75,-9.836369909732728],[116,266,76,-9.891817475335273],[116,266,77,-9.937675131323228],[116,266,78,-9.957332362898809],[116,266,79,-9.947062799970178],[116,267,64,-9.921465640315938],[116,267,65,-9.92897302751662],[116,267,66,-9.917229603604419],[116,267,67,-9.886165179318713],[116,267,68,-9.86156413219857],[116,267,69,-9.847568406155881],[116,267,70,-9.837254573761491],[116,267,71,-9.829628846198133],[116,267,72,-9.820871649603381],[116,267,73,-9.822560589887066],[116,267,74,-9.825759140744676],[116,267,75,-9.882551554183664],[116,267,76,-9.951673943863252],[116,267,77,-10.001605734498371],[116,267,78,-10.010855503704228],[116,267,79,-9.999652157499641],[116,268,64,-9.95941782858995],[116,268,65,-9.966092967489475],[116,268,66,-9.952798138526585],[116,268,67,-9.920356519168344],[116,268,68,-9.895269131126508],[116,268,69,-9.8768917273355],[116,268,70,-9.86584104900001],[116,268,71,-9.859325678794665],[116,268,72,-9.84930405033666],[116,268,73,-9.852107797382182],[116,268,74,-9.856183176640865],[116,268,75,-9.904812120359278],[116,268,76,-9.98532383865364],[116,268,77,-10.028063206114721],[116,268,78,-10.040956108341051],[116,268,79,-10.029871902513866],[116,269,64,-10.002953777294694],[116,269,65,-10.00839722562599],[116,269,66,-9.995758679767237],[116,269,67,-9.965310470946468],[116,269,68,-9.940493070580619],[116,269,69,-9.920639536560971],[116,269,70,-9.907954781820015],[116,269,71,-9.900713006444208],[116,269,72,-9.892188254791883],[116,269,73,-9.894226438707443],[116,269,74,-9.899392782219177],[116,269,75,-9.950766783861816],[116,269,76,-10.031343661449997],[116,269,77,-10.073878487978703],[116,269,78,-10.083673011799322],[116,269,79,-10.074724487657345],[116,270,64,-10.050320433236864],[116,270,65,-10.055470701768249],[116,270,66,-10.044765879556621],[116,270,67,-10.01602514531688],[116,270,68,-9.989238591742366],[116,270,69,-9.967945357813731],[116,270,70,-9.95376409638851],[116,270,71,-9.942527561744296],[116,270,72,-9.935524291928836],[116,270,73,-9.94109125289701],[116,270,74,-9.944297545333988],[116,270,75,-9.989680309192579],[116,270,76,-10.058105046386194],[116,270,77,-10.104562239826805],[116,270,78,-10.114988496237492],[116,270,79,-10.105909473703036],[116,271,64,-10.091447438643863],[116,271,65,-10.096008284845587],[116,271,66,-10.0846027249758],[116,271,67,-10.061007615702872],[116,271,68,-10.031500553626385],[116,271,69,-10.011592640803453],[116,271,70,-9.996025223044397],[116,271,71,-9.983125682266346],[116,271,72,-9.979166643876805],[116,271,73,-9.984421034032284],[116,271,74,-9.987126759244626],[116,271,75,-10.026834211074055],[116,271,76,-10.092639020399645],[116,271,77,-10.149414044128838],[116,271,78,-10.157639136461682],[116,271,79,-10.148108419994164],[116,272,64,-10.135843816011832],[116,272,65,-10.138449145289561],[116,272,66,-10.127364157291225],[116,272,67,-10.102821165281506],[116,272,68,-10.073831663559538],[116,272,69,-10.053963519880057],[116,272,70,-10.039251828622941],[116,272,71,-10.025687586985887],[116,272,72,-10.022923906128637],[116,272,73,-10.028870967700565],[116,272,74,-10.029635327039864],[116,272,75,-10.068538767407455],[116,272,76,-10.13552592786503],[116,272,77,-10.195932185475574],[116,272,78,-10.201930368339307],[116,272,79,-10.192260442010808],[116,273,64,-10.186012791124572],[116,273,65,-10.182634030012021],[116,273,66,-10.16925257214594],[116,273,67,-10.141851565393766],[116,273,68,-10.109685757004899],[116,273,69,-10.089052087508904],[116,273,70,-10.076392561962601],[116,273,71,-10.064405340108742],[116,273,72,-10.062814124809965],[116,273,73,-10.069458235560615],[116,273,74,-10.073810970614883],[116,273,75,-10.087408452545072],[116,273,76,-10.114350939655466],[116,273,77,-10.137156556698775],[116,273,78,-10.143809694427452],[116,273,79,-10.138650535686219],[116,274,64,-10.23129447710818],[116,274,65,-10.232074244187041],[116,274,66,-10.215610754376574],[116,274,67,-10.185836622167681],[116,274,68,-10.156100004058867],[116,274,69,-10.136162014116165],[116,274,70,-10.123120556818815],[116,274,71,-10.113300534496394],[116,274,72,-10.107611549140314],[116,274,73,-10.114257679411796],[116,274,74,-10.120474429055932],[116,274,75,-10.13523486577867],[116,274,76,-10.159624521109468],[116,274,77,-10.178335752987746],[116,274,78,-10.185960365625109],[116,274,79,-10.180521064369715],[116,275,64,-10.275957535903311],[116,275,65,-10.27861243879522],[116,275,66,-10.26115642177777],[116,275,67,-10.22941390496466],[116,275,68,-10.198863942377617],[116,275,69,-10.178987536928755],[116,275,70,-10.168265884574136],[116,275,71,-10.159274498705342],[116,275,72,-10.152868714991728],[116,275,73,-10.156945351566048],[116,275,74,-10.164143999387363],[116,275,75,-10.184766899896744],[116,275,76,-10.210209538272371],[116,275,77,-10.229282427354075],[116,275,78,-10.237948263276047],[116,275,79,-10.22792875081096],[116,276,64,-10.308125661338499],[116,276,65,-10.314085522744838],[116,276,66,-10.293251643981657],[116,276,67,-10.26025564552876],[116,276,68,-10.230813466866401],[116,276,69,-10.209775582394947],[116,276,70,-10.198033825143888],[116,276,71,-10.191040822487064],[116,276,72,-10.18325680033357],[116,276,73,-10.186059977046355],[116,276,74,-10.19195168403333],[116,276,75,-10.2268324571855],[116,276,76,-10.262627846735285],[116,276,77,-10.280714719519262],[116,276,78,-10.29016906779811],[116,276,79,-10.279743659374677],[116,277,64,-10.344621909481223],[116,277,65,-10.355667409338375],[116,277,66,-10.342376359353718],[116,277,67,-10.315825878831868],[116,277,68,-10.287449033422016],[116,277,69,-10.264760223482828],[116,277,70,-10.250730335012582],[116,277,71,-10.241373102071465],[116,277,72,-10.230032647090477],[116,277,73,-10.228960885330075],[116,277,74,-10.237064425708947],[116,277,75,-10.273064241439057],[116,277,76,-10.306540009525765],[116,277,77,-10.324654435000644],[116,277,78,-10.335315536506869],[116,277,79,-10.322972668325624],[116,278,64,-10.39325531168622],[116,278,65,-10.402804053810238],[116,278,66,-10.393504475033955],[116,278,67,-10.366576867783328],[116,278,68,-10.336609722371392],[116,278,69,-10.31240941388891],[116,278,70,-10.297414560396902],[116,278,71,-10.284618659885709],[116,278,72,-10.272419609430404],[116,278,73,-10.272270348068744],[116,278,74,-10.28096490065977],[116,278,75,-10.313462678776277],[116,278,76,-10.341245465953737],[116,278,77,-10.360090832656143],[116,278,78,-10.371216783006641],[116,278,79,-10.359773719641183],[116,279,64,-10.434396036369609],[116,279,65,-10.444903767531882],[116,279,66,-10.438058443700488],[116,279,67,-10.413642902967815],[116,279,68,-10.381269201337785],[116,279,69,-10.358460111345002],[116,279,70,-10.34186805685825],[116,279,71,-10.328523411301424],[116,279,72,-10.318585148036322],[116,279,73,-10.316225026128304],[116,279,74,-10.327336709049225],[116,279,75,-10.359175177168039],[116,279,76,-10.38702562146308],[116,279,77,-10.404562368030096],[116,279,78,-10.414349423333999],[116,279,79,-10.403871375263654],[116,280,64,-10.477694445258896],[116,280,65,-10.49072960208149],[116,280,66,-10.48183994961467],[116,280,67,-10.456907695632706],[116,280,68,-10.425269454140805],[116,280,69,-10.403462491913848],[116,280,70,-10.387545419464752],[116,280,71,-10.375335124212766],[116,280,72,-10.365216757722418],[116,280,73,-10.364806541426475],[116,280,74,-10.373767736025007],[116,280,75,-10.404800296330304],[116,280,76,-10.434060582317054],[116,280,77,-10.452980956162373],[116,280,78,-10.460336119315924],[116,280,79,-10.44885282478913],[116,281,64,-10.525146179653515],[116,281,65,-10.537341165793393],[116,281,66,-10.527302802395761],[116,281,67,-10.499411514128187],[116,281,68,-10.471464578699345],[116,281,69,-10.447769957417634],[116,281,70,-10.433978041592226],[116,281,71,-10.4232300563557],[116,281,72,-10.411510483884186],[116,281,73,-10.412000245484506],[116,281,74,-10.418483660160677],[116,281,75,-10.463695140127152],[116,281,76,-10.490506136215084],[116,281,77,-10.507733248706685],[116,281,78,-10.513873913721888],[116,281,79,-10.50355624766892],[116,282,64,-10.575713482637369],[116,282,65,-10.58796274613326],[116,282,66,-10.575278611833774],[116,282,67,-10.546800049969908],[116,282,68,-10.520457249378497],[116,282,69,-10.497060519474964],[116,282,70,-10.485639560144582],[116,282,71,-10.471314811661237],[116,282,72,-10.458362527904349],[116,282,73,-10.459856430399086],[116,282,74,-10.464658196913717],[116,282,75,-10.509716458126144],[116,282,76,-10.54196956091851],[116,282,77,-10.560502035582342],[116,282,78,-10.567465598359433],[116,282,79,-10.557517671268462],[116,283,64,-10.623517328926004],[116,283,65,-10.63440707148323],[116,283,66,-10.623248191473378],[116,283,67,-10.595213853341164],[116,283,68,-10.567504503237572],[116,283,69,-10.54505215267451],[116,283,70,-10.533415007739253],[116,283,71,-10.516616456738374],[116,283,72,-10.505303168233933],[116,283,73,-10.505135712656255],[116,283,74,-10.510805592730561],[116,283,75,-10.557249578715801],[116,283,76,-10.591841186895342],[116,283,77,-10.61056327197175],[116,283,78,-10.618713118722921],[116,283,79,-10.609566152212917],[116,284,64,-10.690682542653255],[116,284,65,-10.698637315321038],[116,284,66,-10.687483716164929],[116,284,67,-10.658757087718334],[116,284,68,-10.629699465155209],[116,284,69,-10.608526121626241],[116,284,70,-10.594835237581401],[116,284,71,-10.577774499873378],[116,284,72,-10.564755023947553],[116,284,73,-10.564986997636431],[116,284,74,-10.571399484079153],[116,284,75,-10.608963486638837],[116,284,76,-10.63871762261177],[116,284,77,-10.658611837473357],[116,284,78,-10.667179765151152],[116,284,79,-10.658592226111418],[116,285,64,-10.746175516164358],[116,285,65,-10.752186837130747],[116,285,66,-10.741764677160782],[116,285,67,-10.71277254810462],[116,285,68,-10.68021123664252],[116,285,69,-10.658553270759526],[116,285,70,-10.644200844448331],[116,285,71,-10.62916203341228],[116,285,72,-10.617817371026197],[116,285,73,-10.618278234068912],[116,285,74,-10.624505839381808],[116,285,75,-10.657562378605526],[116,285,76,-10.68319399368212],[116,285,77,-10.700075696410337],[116,285,78,-10.710021338671446],[116,285,79,-10.70269472585522],[116,286,64,-10.79370128281069],[116,286,65,-10.797949568163267],[116,286,66,-10.78862190783617],[116,286,67,-10.75924790466178],[116,286,68,-10.725367888465403],[116,286,69,-10.705816481708872],[116,286,70,-10.68970979246486],[116,286,71,-10.674457268495965],[116,286,72,-10.662661945407546],[116,286,73,-10.664882725380417],[116,286,74,-10.667859633881378],[116,286,75,-10.701790624753334],[116,286,76,-10.727254082980679],[116,286,77,-10.746281608949717],[116,286,78,-10.756017377024135],[116,286,79,-10.748002327216414],[116,287,64,-10.838835810155544],[116,287,65,-10.840756298013215],[116,287,66,-10.83238636056575],[116,287,67,-10.803803045944989],[116,287,68,-10.770508584805665],[116,287,69,-10.749709603413935],[116,287,70,-10.734843365195987],[116,287,71,-10.71978584417175],[116,287,72,-10.708577302144612],[116,287,73,-10.710209927253992],[116,287,74,-10.71267892528546],[116,287,75,-10.74288211242099],[116,287,76,-10.769564075194602],[116,287,77,-10.788336721988694],[116,287,78,-10.799031444436151],[116,287,79,-10.792104021909728],[116,288,64,-10.88212490200629],[116,288,65,-10.886758060774946],[116,288,66,-10.876729612047175],[116,288,67,-10.84609631071923],[116,288,68,-10.816985665983713],[116,288,69,-10.797354494349038],[116,288,70,-10.78086733079697],[116,288,71,-10.763339701454257],[116,288,72,-10.753135660859975],[116,288,73,-10.753587461140812],[116,288,74,-10.755970649303464],[116,288,75,-10.785332789321226],[116,288,76,-10.8126187013324],[116,288,77,-10.831792814196154],[116,288,78,-10.845175364651627],[116,288,79,-10.837611341171481],[116,289,64,-10.915841810879861],[116,289,65,-10.924734164545455],[116,289,66,-10.913083462440813],[116,289,67,-10.88170988909326],[116,289,68,-10.855623576033594],[116,289,69,-10.833895475704322],[116,289,70,-10.815841309689329],[116,289,71,-10.801029618200122],[116,289,72,-10.787927646841874],[116,289,73,-10.788303875243928],[116,289,74,-10.800220376895725],[116,289,75,-10.846977648069336],[116,289,76,-10.86317422441682],[116,289,77,-10.885157219212337],[116,289,78,-10.900278949934574],[116,289,79,-10.889092764386609],[116,290,64,-10.963976344722244],[116,290,65,-10.973191023826594],[116,290,66,-10.958573252700473],[116,290,67,-10.928096836320176],[116,290,68,-10.904083097293979],[116,290,69,-10.878386859019923],[116,290,70,-10.861433270480768],[116,290,71,-10.849296021770474],[116,290,72,-10.835228152286348],[116,290,73,-10.83521953198218],[116,290,74,-10.837973225815153],[116,290,75,-10.881391828943372],[116,290,76,-10.89967314679281],[116,290,77,-10.921123823257892],[116,290,78,-10.936044202783743],[116,290,79,-10.926565657037505],[116,291,64,-11.009265164560707],[116,291,65,-11.016614427047411],[116,291,66,-11.003528127808185],[116,291,67,-10.972743645050034],[116,291,68,-10.94419730397296],[116,291,69,-10.922709070347617],[116,291,70,-10.906279546806712],[116,291,71,-10.891224948796351],[116,291,72,-10.880892052880373],[116,291,73,-10.879198901270954],[116,291,74,-10.883622479344949],[116,291,75,-10.935783929701401],[116,291,76,-10.949020449014121],[116,291,77,-10.970133346762204],[116,291,78,-10.983856625553857],[116,291,79,-10.973806403788888],[116,292,64,-11.03794606420996],[116,292,65,-11.045775221482243],[116,292,66,-11.03493698186563],[116,292,67,-11.007864447939983],[116,292,68,-10.981032027067771],[116,292,69,-10.961610273685677],[116,292,70,-10.947918020465913],[116,292,71,-10.931635535306222],[116,292,72,-10.923741884701753],[116,292,73,-10.92383713646831],[116,292,74,-10.926138491689219],[116,292,75,-10.972540855097218],[116,292,76,-10.98877471382196],[116,292,77,-11.009025721881576],[116,292,78,-11.020663746033701],[116,292,79,-11.012626631387993],[116,293,64,-11.08061587275407],[116,293,65,-11.087647499333286],[116,293,66,-11.078579829240566],[116,293,67,-11.05170427828574],[116,293,68,-11.026963407295396],[116,293,69,-11.006389728445395],[116,293,70,-10.991360309343989],[116,293,71,-10.974211307854448],[116,293,72,-10.967102897408653],[116,293,73,-10.96934293247976],[116,293,74,-10.9727270829346],[116,293,75,-11.015198189099957],[116,293,76,-11.032766496076551],[116,293,77,-11.054349428625082],[116,293,78,-11.065523749266257],[116,293,79,-11.056692342131576],[116,294,64,-11.125182407000008],[116,294,65,-11.132713746213216],[116,294,66,-11.122890976520498],[116,294,67,-11.098564829357523],[116,294,68,-11.069371988881187],[116,294,69,-11.048118099726874],[116,294,70,-11.035087591333482],[116,294,71,-11.016767855202538],[116,294,72,-11.010850967741694],[116,294,73,-11.012420057588773],[116,294,74,-11.014040556958985],[116,294,75,-11.060710262217988],[116,294,76,-11.091507137844236],[116,294,77,-11.114628255480092],[116,294,78,-11.1261683240944],[116,294,79,-11.116452449533503],[116,295,64,-11.170130603666793],[116,295,65,-11.177402660636085],[116,295,66,-11.16914064004903],[116,295,67,-11.143737363194635],[116,295,68,-11.115015401161399],[116,295,69,-11.090499358598885],[116,295,70,-11.077728851549708],[116,295,71,-11.061389665306024],[116,295,72,-11.05322366737013],[116,295,73,-11.054750842882896],[116,295,74,-11.059734835680016],[116,295,75,-11.067782437994591],[116,295,76,-11.112211860148475],[116,295,77,-11.159937941586636],[116,295,78,-11.171884633724066],[116,295,79,-11.161736695135321],[116,296,64,-11.21663246511383],[116,296,65,-11.220770738165374],[116,296,66,-11.213635824198532],[116,296,67,-11.188981354554352],[116,296,68,-11.159962192922343],[116,296,69,-11.135861829649489],[116,296,70,-11.12300628987529],[116,296,71,-11.10853048218058],[116,296,72,-11.099454184131089],[116,296,73,-11.0990794515642],[116,296,74,-11.105462330860911],[116,296,75,-11.114457362554539],[116,296,76,-11.151546318562954],[116,296,77,-11.205249753670724],[116,296,78,-11.217243948198705],[116,296,79,-11.208353102478524],[116,297,64,-11.262989442842864],[116,297,65,-11.271940952101646],[116,297,66,-11.265048182826929],[116,297,67,-11.243089439345814],[116,297,68,-11.211098178474042],[116,297,69,-11.189872307540382],[116,297,70,-11.175454756132682],[116,297,71,-11.160639034924605],[116,297,72,-11.142808969647263],[116,297,73,-11.13866704762424],[116,297,74,-11.144891085389448],[116,297,75,-11.154720983227696],[116,297,76,-11.1996756170789],[116,297,77,-11.259740692848826],[116,297,78,-11.268455550147468],[116,297,79,-11.260201608803774],[116,298,64,-11.30882780110011],[116,298,65,-11.318698684461946],[116,298,66,-11.310430438012464],[116,298,67,-11.287274331871988],[116,298,68,-11.258208150646134],[116,298,69,-11.234448811812847],[116,298,70,-11.222880134632266],[116,298,71,-11.207960291225973],[116,298,72,-11.19097852364698],[116,298,73,-11.186794957995893],[116,298,74,-11.190908007903918],[116,298,75,-11.199275226409345],[116,298,76,-11.221210824405214],[116,298,77,-11.287876435514812],[116,298,78,-11.313345006445429],[116,298,79,-11.304774420498813],[116,299,64,-11.354864950530873],[116,299,65,-11.363391569329403],[116,299,66,-11.354778254626845],[116,299,67,-11.328581232211011],[116,299,68,-11.298672866166747],[116,299,69,-11.277126421932936],[116,299,70,-11.267114806957482],[116,299,71,-11.254025643621334],[116,299,72,-11.237372776712862],[116,299,73,-11.231336505443833],[116,299,74,-11.236772281095105],[116,299,75,-11.242093267832825],[116,299,76,-11.257435506811493],[116,299,77,-11.329398586334564],[116,299,78,-11.365528951237357],[116,299,79,-11.353533834116229],[116,300,64,-11.404720792012544],[116,300,65,-11.405093128285836],[116,300,66,-11.392120113093828],[116,300,67,-11.36104230689642],[116,300,68,-11.331397485119577],[116,300,69,-11.310128356980838],[116,300,70,-11.30251322974195],[116,300,71,-11.291213214322593],[116,300,72,-11.282487170594393],[116,300,73,-11.280500358108732],[116,300,74,-11.285075054136287],[116,300,75,-11.290839985344418],[116,300,76,-11.30291498236788],[116,300,77,-11.330427926629396],[116,300,78,-11.35129361638479],[116,300,79,-11.355272214895278],[116,301,64,-11.447544762864725],[116,301,65,-11.450481395484541],[116,301,66,-11.435383891142727],[116,301,67,-11.403691073074988],[116,301,68,-11.376637537125236],[116,301,69,-11.354973348071738],[116,301,70,-11.346589512815346],[116,301,71,-11.336676721168228],[116,301,72,-11.327707773472795],[116,301,73,-11.32720032254519],[116,301,74,-11.330665170739316],[116,301,75,-11.336393417353761],[116,301,76,-11.34878202416925],[116,301,77,-11.376547681598625],[116,301,78,-11.396981380880394],[116,301,79,-11.400547129514385],[116,302,64,-11.490449090461212],[116,302,65,-11.49497378172895],[116,302,66,-11.475764995068868],[116,302,67,-11.445196894534714],[116,302,68,-11.418002889366086],[116,302,69,-11.397593769177282],[116,302,70,-11.385479482560983],[116,302,71,-11.374180924766037],[116,302,72,-11.366497157534212],[116,302,73,-11.368201113209086],[116,302,74,-11.371875005715845],[116,302,75,-11.373994243510326],[116,302,76,-11.388005004115504],[116,302,77,-11.415288902041395],[116,302,78,-11.436764050955743],[116,302,79,-11.43908641691047],[116,303,64,-11.533678247489437],[116,303,65,-11.538724256948338],[116,303,66,-11.5211161367105],[116,303,67,-11.489530507129603],[116,303,68,-11.46581535493036],[116,303,69,-11.442052745417618],[116,303,70,-11.426677408642352],[116,303,71,-11.420072679641507],[116,303,72,-11.410639464830217],[116,303,73,-11.411361322984602],[116,303,74,-11.416752162384592],[116,303,75,-11.420360445634456],[116,303,76,-11.43248312933644],[116,303,77,-11.462514150691375],[116,303,78,-11.483664809227607],[116,303,79,-11.485811006428717],[116,304,64,-11.58005085748412],[116,304,65,-11.585449165412026],[116,304,66,-11.568844823953484],[116,304,67,-11.536771786714308],[116,304,68,-11.510532663025614],[116,304,69,-11.48646159498347],[116,304,70,-11.469332441709572],[116,304,71,-11.462736407068197],[116,304,72,-11.452792214758848],[116,304,73,-11.455094091544119],[116,304,74,-11.459061085779096],[116,304,75,-11.46495182608066],[116,304,76,-11.479563344060043],[116,304,77,-11.509170371643082],[116,304,78,-11.530967843714423],[116,304,79,-11.530038724220814],[116,305,64,-11.628866200676606],[116,305,65,-11.632238111264265],[116,305,66,-11.618492170893227],[116,305,67,-11.584588092608657],[116,305,68,-11.555533354107087],[116,305,69,-11.531142463376973],[116,305,70,-11.512303928475635],[116,305,71,-11.505060817111511],[116,305,72,-11.496682751913896],[116,305,73,-11.499298210820507],[116,305,74,-11.502953091793522],[116,305,75,-11.509178701451985],[116,305,76,-11.523659278874767],[116,305,77,-11.556536429063865],[116,305,78,-11.576136501383107],[116,305,79,-11.5750154254099],[116,306,64,-11.678210028817901],[116,306,65,-11.681804707449889],[116,306,66,-11.666424954932967],[116,306,67,-11.636081889878128],[116,306,68,-11.604292720853909],[116,306,69,-11.576550105709577],[116,306,70,-11.557756760951598],[116,306,71,-11.550450698033158],[116,306,72,-11.543341275293686],[116,306,73,-11.544170017372242],[116,306,74,-11.548873323546541],[116,306,75,-11.55117586845607],[116,306,76,-11.567606608757682],[116,306,77,-11.60215947168112],[116,306,78,-11.620807466418421],[116,306,79,-11.618826776709609],[116,307,64,-11.724693874503131],[116,307,65,-11.730740468351755],[116,307,66,-11.715285362473013],[116,307,67,-11.681939471089478],[116,307,68,-11.648902871432249],[116,307,69,-11.62149317082062],[116,307,70,-11.602870749921983],[116,307,71,-11.596033438326556],[116,307,72,-11.58884359214629],[116,307,73,-11.588218586943043],[116,307,74,-11.594667222940364],[116,307,75,-11.595387102722555],[116,307,76,-11.612026257203867],[116,307,77,-11.641896465742049],[116,307,78,-11.66438622154472],[116,307,79,-11.66429782775287],[116,308,64,-11.7614506196155],[116,308,65,-11.767927977055898],[116,308,66,-11.751653706535729],[116,308,67,-11.716724837975564],[116,308,68,-11.686538148441134],[116,308,69,-11.661459394885775],[116,308,70,-11.64547841700756],[116,308,71,-11.63911307242742],[116,308,72,-11.631882986833855],[116,308,73,-11.629688326820348],[116,308,74,-11.63463145371076],[116,308,75,-11.636519076837267],[116,308,76,-11.651971581198955],[116,308,77,-11.683658302451231],[116,308,78,-11.706682429569327],[116,308,79,-11.72045642495705],[116,309,64,-11.810904444781844],[116,309,65,-11.814711030705261],[116,309,66,-11.798214982526137],[116,309,67,-11.76264644522462],[116,309,68,-11.729970436239496],[116,309,69,-11.705575597377909],[116,309,70,-11.690725628790002],[116,309,71,-11.683797752546655],[116,309,72,-11.67619976069321],[116,309,73,-11.672710181360653],[116,309,74,-11.677450109340832],[116,309,75,-11.681660784395],[116,309,76,-11.697400449687423],[116,309,77,-11.730569345713391],[116,309,78,-11.752732495449692],[116,309,79,-11.75829480720153],[116,310,64,-11.852462616533181],[116,310,65,-11.858540143765664],[116,310,66,-11.839681434188778],[116,310,67,-11.80397016906161],[116,310,68,-11.768324477699649],[116,310,69,-11.743417503570319],[116,310,70,-11.729558198643783],[116,310,71,-11.72256281814547],[116,310,72,-11.714793704687509],[116,310,73,-11.710379870982889],[116,310,74,-11.715425748945924],[116,310,75,-11.7192205636807],[116,310,76,-11.736346224790985],[116,310,77,-11.768423645650586],[116,310,78,-11.79121555644767],[116,310,79,-11.798830683420695],[116,311,64,-11.897951843293223],[116,311,65,-11.902819833072236],[116,311,66,-11.885619190745704],[116,311,67,-11.847878417260485],[116,311,68,-11.81196954772032],[116,311,69,-11.786024247270184],[116,311,70,-11.77523383825514],[116,311,71,-11.769265608057696],[116,311,72,-11.759474659955481],[116,311,73,-11.754595964115767],[116,311,74,-11.758471227808487],[116,311,75,-11.765451035073871],[116,311,76,-11.783064031327118],[116,311,77,-11.815947745438713],[116,311,78,-11.838039395853652],[116,311,79,-11.847103592496492],[116,312,64,-11.93254852379655],[116,312,65,-11.942214937171462],[116,312,66,-11.92940217947996],[116,312,67,-11.893154831354158],[116,312,68,-11.85784505346795],[116,312,69,-11.832647596324609],[116,312,70,-11.822916870531692],[116,312,71,-11.813152179820179],[116,312,72,-11.804559680564104],[116,312,73,-11.797086501438196],[116,312,74,-11.801950455802062],[116,312,75,-11.811465088767815],[116,312,76,-11.829644137079717],[116,312,77,-11.867512162017299],[116,312,78,-11.892244047752218],[116,312,79,-11.897177511105461],[116,313,64,-11.978736108020295],[116,313,65,-11.989483294185495],[116,313,66,-11.974936996196872],[116,313,67,-11.939257650640599],[116,313,68,-11.906216585928405],[116,313,69,-11.878778948182488],[116,313,70,-11.86998696887168],[116,313,71,-11.859513638742232],[116,313,72,-11.849158017174478],[116,313,73,-11.843102430598826],[116,313,74,-11.844726588141832],[116,313,75,-11.85581097221356],[116,313,76,-11.874997090861719],[116,313,77,-11.91199059467886],[116,313,78,-11.938591872149463],[116,313,79,-11.942060536633129],[116,314,64,-12.029130977578227],[116,314,65,-12.040520567033674],[116,314,66,-12.02381012484387],[116,314,67,-11.99094996142084],[116,314,68,-11.95587774230352],[116,314,69,-11.926328196090363],[116,314,70,-11.916205909094785],[116,314,71,-11.906827038040662],[116,314,72,-11.898068385919846],[116,314,73,-11.892052910736048],[116,314,74,-11.892509662604647],[116,314,75,-11.90099419621817],[116,314,76,-11.922544762023287],[116,314,77,-11.958764292652793],[116,314,78,-11.983831201028432],[116,314,79,-11.9902614094896],[116,315,64,-12.078498444551105],[116,315,65,-12.086837861250284],[116,315,66,-12.072848989383195],[116,315,67,-12.037535745883577],[116,315,68,-12.001327814748613],[116,315,69,-11.974152823645559],[116,315,70,-11.960659917572984],[116,315,71,-11.953261432700211],[116,315,72,-11.944613714347973],[116,315,73,-11.936483497941603],[116,315,74,-11.94097178590222],[116,315,75,-11.946335609432088],[116,315,76,-11.969162925043555],[116,315,77,-12.004579792251938],[116,315,78,-12.028834267275636],[116,315,79,-12.037719765903326],[116,316,64,-12.136439471105756],[116,316,65,-12.140422186266148],[116,316,66,-12.125993072351017],[116,316,67,-12.085534209838546],[116,316,68,-12.049948878525065],[116,316,69,-12.021083700187772],[116,316,70,-12.003734921607416],[116,316,71,-11.996057868317713],[116,316,72,-11.987736686479288],[116,316,73,-11.979665971567199],[116,316,74,-11.982611844941166],[116,316,75,-11.989161921998605],[116,316,76,-12.00968921007656],[116,316,77,-12.044954471174796],[116,316,78,-12.07011311162541],[116,316,79,-12.076220596822447],[116,317,64,-12.184838595192428],[116,317,65,-12.186117186863843],[116,317,66,-12.17139723604492],[116,317,67,-12.132882124366882],[116,317,68,-12.09671352268443],[116,317,69,-12.067895485674425],[116,317,70,-12.051048319863503],[116,317,71,-12.041592113511676],[116,317,72,-12.034522123150127],[116,317,73,-12.027509864668023],[116,317,74,-12.029800422588433],[116,317,75,-12.036561785256312],[116,317,76,-12.054499741892492],[116,317,77,-12.08907001651547],[116,317,78,-12.117464154696137],[116,317,79,-12.124008522119192],[116,318,64,-12.22600336394014],[116,318,65,-12.225836605140227],[116,318,66,-12.209332909076089],[116,318,67,-12.171345852516376],[116,318,68,-12.13464367282157],[116,318,69,-12.10690749091363],[116,318,70,-12.089128044964948],[116,318,71,-12.076930684425347],[116,318,72,-12.072783378329657],[116,318,73,-12.070098681281216],[116,318,74,-12.068478964837768],[116,318,75,-12.074768858548465],[116,318,76,-12.09162795464835],[116,318,77,-12.12624816706162],[116,318,78,-12.15391366893023],[116,318,79,-12.160378325582167],[116,319,64,-12.274321037147637],[116,319,65,-12.273200473154308],[116,319,66,-12.25535388987251],[116,319,67,-12.216349332420597],[116,319,68,-12.179758840257058],[116,319,69,-12.153583630637401],[116,319,70,-12.135153410781337],[116,319,71,-12.121011307437286],[116,319,72,-12.116406281095086],[116,319,73,-12.116207038339276],[116,319,74,-12.115620149635513],[116,319,75,-12.12365701418513],[116,319,76,-12.140212156857201],[116,319,77,-12.173677949120504],[116,319,78,-12.20201280539383],[116,319,79,-12.202372739438113],[117,-64,64,22.860834932289812],[117,-64,65,22.930488982720384],[117,-64,66,22.981849305396384],[117,-64,67,23.017783986056003],[117,-64,68,23.037283177313668],[117,-64,69,23.04997976610653],[117,-64,70,23.069370375328145],[117,-64,71,23.092324776376554],[117,-64,72,23.12913059498853],[117,-64,73,23.192166090340997],[117,-64,74,23.256693603067944],[117,-64,75,23.321126813459024],[117,-64,76,23.38682594333896],[117,-64,77,23.464065596061854],[117,-64,78,23.54327898104505],[117,-64,79,23.606553611980914],[117,-63,64,22.668506090004954],[117,-63,65,22.739033370968926],[117,-63,66,22.79133291318583],[117,-63,67,22.828536986448416],[117,-63,68,22.84682085688814],[117,-63,69,22.862016715245563],[117,-63,70,22.880268145235107],[117,-63,71,22.902238016496746],[117,-63,72,22.942909804747412],[117,-63,73,23.004911127410026],[117,-63,74,23.071436810806784],[117,-63,75,23.130127598820742],[117,-63,76,23.19673317416329],[117,-63,77,23.276120656139607],[117,-63,78,23.354304825104244],[117,-63,79,23.416963801102067],[117,-62,64,22.479453167029217],[117,-62,65,22.549796494625298],[117,-62,66,22.60635283912706],[117,-62,67,22.639019194667792],[117,-62,68,22.66021851344546],[117,-62,69,22.674238580281486],[117,-62,70,22.694173053504144],[117,-62,71,22.716257227062677],[117,-62,72,22.757815113838234],[117,-62,73,22.81570047500944],[117,-62,74,22.883712305609027],[117,-62,75,22.94232403088841],[117,-62,76,23.009660419305888],[117,-62,77,23.089608115878242],[117,-62,78,23.163438493580745],[117,-62,79,23.225544035395323],[117,-61,64,22.287073111800623],[117,-61,65,22.35813986030791],[117,-61,66,22.415285622853535],[117,-61,67,22.448193398139317],[117,-61,68,22.46761378992582],[117,-61,69,22.480445320664757],[117,-61,70,22.501312449835343],[117,-61,71,22.525998799053486],[117,-61,72,22.567992834713387],[117,-61,73,22.62426188123194],[117,-61,74,22.68894334948476],[117,-61,75,22.74983253641331],[117,-61,76,22.81767784146158],[117,-61,77,22.89607651846736],[117,-61,78,22.972115793260627],[117,-61,79,23.03518471729635],[117,-60,64,22.09764001364899],[117,-60,65,22.169586683816014],[117,-60,66,22.224155409309386],[117,-60,67,22.256918871058176],[117,-60,68,22.27578947654184],[117,-60,69,22.291427063394384],[117,-60,70,22.31346330427878],[117,-60,71,22.338914477457983],[117,-60,72,22.37904764428659],[117,-60,73,22.437862679363242],[117,-60,74,22.50030090514075],[117,-60,75,22.560294988091236],[117,-60,76,22.630226038710322],[117,-60,77,22.704823399771264],[117,-60,78,22.78206979933861],[117,-60,79,22.846040508342842],[117,-59,64,21.92199347012936],[117,-59,65,21.991816843427777],[117,-59,66,22.043931716692132],[117,-59,67,22.075782116570824],[117,-59,68,22.093021655786917],[117,-59,69,22.108281615831622],[117,-59,70,22.13216723816121],[117,-59,71,22.157705801313178],[117,-59,72,22.193210048644197],[117,-59,73,22.250990032620468],[117,-59,74,22.315007619378086],[117,-59,75,22.373881054155408],[117,-59,76,22.44055552407491],[117,-59,77,22.514868899541227],[117,-59,78,22.591513882080648],[117,-59,79,22.65401340858475],[117,-58,64,21.737059606993327],[117,-58,65,21.803492668918654],[117,-58,66,21.8540767519909],[117,-58,67,21.88711009738897],[117,-58,68,21.904624788576985],[117,-58,69,21.92233991499723],[117,-58,70,21.947388960961927],[117,-58,71,21.971621187288328],[117,-58,72,22.005501011450065],[117,-58,73,22.06324896519309],[117,-58,74,22.126705557676214],[117,-58,75,22.186769859646656],[117,-58,76,22.25296341932188],[117,-58,77,22.325646733078266],[117,-58,78,22.40233917908587],[117,-58,79,22.463953369605882],[117,-57,64,21.54192411627249],[117,-57,65,21.61044717168012],[117,-57,66,21.659793481481497],[117,-57,67,21.691186772354992],[117,-57,68,21.711724531844077],[117,-57,69,21.73072952456601],[117,-57,70,21.75566132732811],[117,-57,71,21.778371063894394],[117,-57,72,21.812802874737464],[117,-57,73,21.871601087598563],[117,-57,74,21.93471064709892],[117,-57,75,21.996197450227644],[117,-57,76,22.060950053116876],[117,-57,77,22.136382452052008],[117,-57,78,22.211501145126253],[117,-57,79,22.272118462820803],[117,-56,64,21.354113003252607],[117,-56,65,21.418607289923337],[117,-56,66,21.471355616164637],[117,-56,67,21.502721555648147],[117,-56,68,21.521516991516656],[117,-56,69,21.543266987875846],[117,-56,70,21.56697858515384],[117,-56,71,21.590271177615357],[117,-56,72,21.62399555064837],[117,-56,73,21.681451368646503],[117,-56,74,21.746741915591507],[117,-56,75,21.808136641383193],[117,-56,76,21.8733752505785],[117,-56,77,21.946904233439106],[117,-56,78,22.02188142744676],[117,-56,79,22.08521136684288],[117,-55,64,21.16564333680699],[117,-55,65,21.228868865344655],[117,-55,66,21.279287267170794],[117,-55,67,21.311865978055906],[117,-55,68,21.331545929522367],[117,-55,69,21.352967209047343],[117,-55,70,21.374605231072092],[117,-55,71,21.40105274916867],[117,-55,72,21.436060620927176],[117,-55,73,21.492482428401292],[117,-55,74,21.55872655777823],[117,-55,75,21.618409998751584],[117,-55,76,21.68568108191896],[117,-55,77,21.759070616966255],[117,-55,78,21.834778700698582],[117,-55,79,21.898530641109115],[117,-54,64,20.98058092318552],[117,-54,65,21.039542489611787],[117,-54,66,21.090230111735895],[117,-54,67,21.1194276266841],[117,-54,68,21.142307543535694],[117,-54,69,21.15988901175646],[117,-54,70,21.184851856938476],[117,-54,71,21.212974394764178],[117,-54,72,21.247313897331956],[117,-54,73,21.304694405684135],[117,-54,74,21.36971551187751],[117,-54,75,21.431972462777182],[117,-54,76,21.49839609533517],[117,-54,77,21.573469082166987],[117,-54,78,21.64830790664067],[117,-54,79,21.709319131323877],[117,-53,64,20.787442578157144],[117,-53,65,20.846533451455315],[117,-53,66,20.896889535138175],[117,-53,67,20.924632526447777],[117,-53,68,20.9471760219029],[117,-53,69,20.96653569849171],[117,-53,70,20.99232637750775],[117,-53,71,21.018070065702265],[117,-53,72,21.053937787848586],[117,-53,73,21.11100573449297],[117,-53,74,21.177014181308138],[117,-53,75,21.240205329124446],[117,-53,76,21.30891226801019],[117,-53,77,21.38270189013506],[117,-53,78,21.454937592187427],[117,-53,79,21.514016592001553],[117,-52,64,20.635049561929776],[117,-52,65,20.65589431507459],[117,-52,66,20.702959003966317],[117,-52,67,20.73286301848441],[117,-52,68,20.756196508893556],[117,-52,69,20.775442086314325],[117,-52,70,20.800214063990513],[117,-52,71,20.82701187887309],[117,-52,72,20.866086252127257],[117,-52,73,20.923905253636768],[117,-52,74,20.9898269879626],[117,-52,75,21.0545912606816],[117,-52,76,21.121744109563146],[117,-52,77,21.19467839255891],[117,-52,78,21.265957314601085],[117,-52,79,21.323134341765538],[117,-51,64,20.416285445502833],[117,-51,65,20.450210850663044],[117,-51,66,20.489254976556587],[117,-51,67,20.514488469208747],[117,-51,68,20.537754608463167],[117,-51,69,20.556816587578798],[117,-51,70,20.58316485589874],[117,-51,71,20.611862888031265],[117,-51,72,20.653192725507587],[117,-51,73,20.714589936507046],[117,-51,74,20.780042643114548],[117,-51,75,20.84687326247822],[117,-51,76,20.916281025609244],[117,-51,77,20.99471099715508],[117,-51,78,21.07575517522845],[117,-51,79,21.142267693524907],[117,-50,64,20.25873053549998],[117,-50,65,20.2606039204094],[117,-50,66,20.29961217296025],[117,-50,67,20.32564851594399],[117,-50,68,20.3480477999433],[117,-50,69,20.367817733676702],[117,-50,70,20.392559097007354],[117,-50,71,20.42319798717477],[117,-50,72,20.464678597513664],[117,-50,73,20.525651167710812],[117,-50,74,20.594473304568545],[117,-50,75,20.66174141062687],[117,-50,76,20.725462483655292],[117,-50,77,20.80465914042364],[117,-50,78,20.88476181889507],[117,-50,79,20.954391740326162],[117,-49,64,20.074239910879463],[117,-49,65,20.06450628123578],[117,-49,66,20.105349022282322],[117,-49,67,20.132592364183957],[117,-49,68,20.154292618335187],[117,-49,69,20.174422052852325],[117,-49,70,20.197625579753698],[117,-49,71,20.228585239864163],[117,-49,72,20.27277071879126],[117,-49,73,20.33571501037792],[117,-49,74,20.403747105633286],[117,-49,75,20.46993429459513],[117,-49,76,20.53237692718951],[117,-49,77,20.613257051483885],[117,-49,78,20.69299179861298],[117,-49,79,20.76239407894342],[117,-48,64,19.90443816022753],[117,-48,65,19.913639780283845],[117,-48,66,19.91809267475733],[117,-48,67,19.94725951903244],[117,-48,68,19.9696330229551],[117,-48,69,19.98893872111178],[117,-48,70,20.01332251259416],[117,-48,71,20.041295711969443],[117,-48,72,20.08703015278718],[117,-48,73,20.15161009551121],[117,-48,74,20.216260530310958],[117,-48,75,20.28265570116715],[117,-48,76,20.344698640680942],[117,-48,77,20.425100239208174],[117,-48,78,20.502880939273947],[117,-48,79,20.572532139853262],[117,-47,64,19.74446763296839],[117,-47,65,19.755554165336022],[117,-47,66,19.738319868717504],[117,-47,67,19.770597397910613],[117,-47,68,19.796459821826193],[117,-47,69,19.815285587237096],[117,-47,70,19.83859817116881],[117,-47,71,19.865027662502623],[117,-47,72,19.9068488416635],[117,-47,73,19.97219924241812],[117,-47,74,20.038011329261945],[117,-47,75,20.09991152055025],[117,-47,76,20.164009525135697],[117,-47,77,20.240008190022245],[117,-47,78,20.316962054064398],[117,-47,79,20.382577587770605],[117,-46,64,19.52397738594511],[117,-46,65,19.524275850778558],[117,-46,66,19.55084743600938],[117,-46,67,19.582697756402073],[117,-46,68,19.609542837904907],[117,-46,69,19.629848089363687],[117,-46,70,19.652873937944655],[117,-46,71,19.678541347007805],[117,-46,72,19.71936100669234],[117,-46,73,19.782960468653517],[117,-46,74,19.847948299732533],[117,-46,75,19.911883317224085],[117,-46,76,19.97766012286832],[117,-46,77,20.051537271504227],[117,-46,78,20.130705295229593],[117,-46,79,20.19899206359091],[117,-45,64,19.357540729863732],[117,-45,65,19.33897662211006],[117,-45,66,19.359147438448037],[117,-45,67,19.392866888820635],[117,-45,68,19.420543163169903],[117,-45,69,19.440832629034748],[117,-45,70,19.46247474261507],[117,-45,71,19.489243722192352],[117,-45,72,19.526081098825767],[117,-45,73,19.58904469289644],[117,-45,74,19.656088440792335],[117,-45,75,19.719537252076858],[117,-45,76,19.783212845309997],[117,-45,77,19.859406262294026],[117,-45,78,19.940642474171273],[117,-45,79,20.0075195054346],[117,-44,64,19.268895144291548],[117,-44,65,19.213288694486646],[117,-44,66,19.187028859415236],[117,-44,67,19.220019760840717],[117,-44,68,19.24531228234037],[117,-44,69,19.26377420358173],[117,-44,70,19.282755796337945],[117,-44,71,19.30709053338723],[117,-44,72,19.345983278908967],[117,-44,73,19.402315236058104],[117,-44,74,19.46831261274591],[117,-44,75,19.530439527367335],[117,-44,76,19.59576449172704],[117,-44,77,19.672575822506502],[117,-44,78,19.753776149097536],[117,-44,79,19.820973172073646],[117,-43,64,19.04386306404866],[117,-43,65,18.995052587763002],[117,-43,66,19.011286171999654],[117,-43,67,19.045954215847846],[117,-43,68,19.072184517150333],[117,-43,69,19.086401556981343],[117,-43,70,19.10582198691],[117,-43,71,19.129766443643067],[117,-43,72,19.167702181802255],[117,-43,73,19.223345428403114],[117,-43,74,19.29137162697791],[117,-43,75,19.350661406536652],[117,-43,76,19.414286367892334],[117,-43,77,19.48706132684414],[117,-43,78,19.566188833539456],[117,-43,79,19.633015619305436],[117,-42,64,18.87726782580458],[117,-42,65,18.84173890241985],[117,-42,66,18.82605965242413],[117,-42,67,18.859877999887228],[117,-42,68,18.883790866508082],[117,-42,69,18.901822254968714],[117,-42,70,18.91802382314452],[117,-42,71,18.942789450661742],[117,-42,72,18.979981242995173],[117,-42,73,19.0361408950644],[117,-42,74,19.101000091195047],[117,-42,75,19.16185597456291],[117,-42,76,19.22373415910055],[117,-42,77,19.29773182320573],[117,-42,78,19.376219383119285],[117,-42,79,19.442056797826012],[117,-41,64,18.714252963134708],[117,-41,65,18.65697154475149],[117,-41,66,18.634061737404412],[117,-41,67,18.667223086876003],[117,-41,68,18.69193521605805],[117,-41,69,18.709100164794577],[117,-41,70,18.725805887627704],[117,-41,71,18.750527050085005],[117,-41,72,18.785767233276186],[117,-41,73,18.84505377682692],[117,-41,74,18.909507297988082],[117,-41,75,18.96688335190646],[117,-41,76,19.032440941068757],[117,-41,77,19.107274960958904],[117,-41,78,19.185923127331343],[117,-41,79,19.252428186456243],[117,-40,64,18.544110603138567],[117,-40,65,18.507613320776922],[117,-40,66,18.451413820043214],[117,-40,67,18.483950271409025],[117,-40,68,18.507428076994717],[117,-40,69,18.522765187623822],[117,-40,70,18.53902507501074],[117,-40,71,18.561365891437823],[117,-40,72,18.596818702700695],[117,-40,73,18.656950320945032],[117,-40,74,18.72055173346374],[117,-40,75,18.779077004679934],[117,-40,76,18.845445056896583],[117,-40,77,18.919408930977678],[117,-40,78,18.997098966594844],[117,-40,79,19.06218509763999],[117,-39,64,18.406528464777725],[117,-39,65,18.363701615399822],[117,-39,66,18.298667857801345],[117,-39,67,18.30452712934108],[117,-39,68,18.323787833497757],[117,-39,69,18.337874715183304],[117,-39,70,18.35272889517114],[117,-39,71,18.375436649985787],[117,-39,72,18.41393733832903],[117,-39,73,18.4750053848074],[117,-39,74,18.538497783122097],[117,-39,75,18.59769959500484],[117,-39,76,18.664933833988584],[117,-39,77,18.738615462661368],[117,-39,78,18.811941678213046],[117,-39,79,18.882195417533495],[117,-38,64,18.36627689142557],[117,-38,65,18.286976384688902],[117,-38,66,18.14084058015591],[117,-38,67,18.121644104925526],[117,-38,68,18.138406421311903],[117,-38,69,18.154444642976088],[117,-38,70,18.169067711576265],[117,-38,71,18.189740613981336],[117,-38,72,18.22971520653934],[117,-38,73,18.29002592616232],[117,-38,74,18.350901422601396],[117,-38,75,18.41106129400683],[117,-38,76,18.47376163639365],[117,-38,77,18.549560348072973],[117,-38,78,18.623622166487095],[117,-38,79,18.695586636823148],[117,-37,64,18.268076668176388],[117,-37,65,18.172900973423054],[117,-37,66,18.00467646645225],[117,-37,67,17.93193139397047],[117,-37,68,17.95076240944075],[117,-37,69,17.964297839097952],[117,-37,70,17.978257243693026],[117,-37,71,18.000045249732896],[117,-37,72,18.03926254768957],[117,-37,73,18.098367203335123],[117,-37,74,18.160985399001472],[117,-37,75,18.218134211758127],[117,-37,76,18.27883038791726],[117,-37,77,18.35483164320443],[117,-37,78,18.43046178416142],[117,-37,79,18.50304168680348],[117,-36,64,18.119410552745443],[117,-36,65,18.01290847205251],[117,-36,66,17.832617274944475],[117,-36,67,17.743415987954616],[117,-36,68,17.763287562186388],[117,-36,69,17.777158758078215],[117,-36,70,17.792228579927908],[117,-36,71,17.81743511660476],[117,-36,72,17.853191668830142],[117,-36,73,17.911931684285037],[117,-36,74,17.974466389898932],[117,-36,75,18.028572486182203],[117,-36,76,18.09021352702199],[117,-36,77,18.16554659974045],[117,-36,78,18.242857969436773],[117,-36,79,18.31427402220512],[117,-35,64,17.833334043138585],[117,-35,65,17.829399838171366],[117,-35,66,17.74890913415396],[117,-35,67,17.662752417526676],[117,-35,68,17.581656284315773],[117,-35,69,17.593405001988277],[117,-35,70,17.605765167053875],[117,-35,71,17.62912914235746],[117,-35,72,17.661956232182504],[117,-35,73,17.719894784996168],[117,-35,74,17.780718947550028],[117,-35,75,17.835965125421307],[117,-35,76,17.896481034097505],[117,-35,77,17.97323117748962],[117,-35,78,18.05221315895754],[117,-35,79,18.124354113333762],[117,-34,64,17.667498230144748],[117,-34,65,17.66782086449833],[117,-34,66,17.590942824091098],[117,-34,67,17.488391867184934],[117,-34,68,17.412390588500706],[117,-34,69,17.406665767572974],[117,-34,70,17.419226586716913],[117,-34,71,17.441902291417456],[117,-34,72,17.473616142966065],[117,-34,73,17.530305881240853],[117,-34,74,17.58878947736061],[117,-34,75,17.645335089374342],[117,-34,76,17.707836631911924],[117,-34,77,17.78372749292852],[117,-34,78,17.862980431523884],[117,-34,79,17.93251833801734],[117,-33,64,17.493721729034174],[117,-33,65,17.521320176267675],[117,-33,66,17.444010478891805],[117,-33,67,17.38892022510777],[117,-33,68,17.32034560840962],[117,-33,69,17.287660008202696],[117,-33,70,17.296389831333304],[117,-33,71,17.311793384731732],[117,-33,72,17.340200251829657],[117,-33,73,17.387847595356764],[117,-33,74,17.441551395542298],[117,-33,75,17.49375676347484],[117,-33,76,17.553942455586387],[117,-33,77,17.62458278698355],[117,-33,78,17.697316706657517],[117,-33,79,17.764880089678073],[117,-32,64,17.296250876907067],[117,-32,65,17.34434745048409],[117,-32,66,17.28169962223029],[117,-32,67,17.222696046817813],[117,-32,68,17.143614688996607],[117,-32,69,17.100348853387477],[117,-32,70,17.10913867074287],[117,-32,71,17.12593669795496],[117,-32,72,17.15707268150532],[117,-32,73,17.202557171790016],[117,-32,74,17.253681000209717],[117,-32,75,17.30463725487384],[117,-32,76,17.36431830494081],[117,-32,77,17.435168219345986],[117,-32,78,17.508826485270855],[117,-32,79,17.575184395626497],[117,-31,64,17.06338058503737],[117,-31,65,17.118241053008312],[117,-31,66,17.110148133452896],[117,-31,67,17.071285565728854],[117,-31,68,16.990882975027688],[117,-31,69,16.93548844260891],[117,-31,70,16.922470653333104],[117,-31,71,16.941651275388693],[117,-31,72,16.971433938424024],[117,-31,73,17.014167741542064],[117,-31,74,17.066785123971872],[117,-31,75,17.11727285336297],[117,-31,76,17.17803359805496],[117,-31,77,17.247687397176442],[117,-31,78,17.319687707394046],[117,-31,79,17.3856895177341],[117,-30,64,16.876285202337407],[117,-30,65,16.934726021624858],[117,-30,66,16.95730654520535],[117,-30,67,16.91597692263998],[117,-30,68,16.836569191947678],[117,-30,69,16.75281116909453],[117,-30,70,16.736251922142248],[117,-30,71,16.756320219093993],[117,-30,72,16.786665654478277],[117,-30,73,16.82926087189228],[117,-30,74,16.8791407626883],[117,-30,75,16.933515399112167],[117,-30,76,16.990546222951505],[117,-30,77,17.0579506381081],[117,-30,78,17.132175827947616],[117,-30,79,17.197394950996024],[117,-29,64,16.760979716757664],[117,-29,65,16.81121135490611],[117,-29,66,16.85627973250334],[117,-29,67,16.79074310247433],[117,-29,68,16.705497892356185],[117,-29,69,16.62305705335192],[117,-29,70,16.55001287975727],[117,-29,71,16.565850692346725],[117,-29,72,16.59656973799346],[117,-29,73,16.672265115822224],[117,-29,74,16.728960061806163],[117,-29,75,16.74484739774348],[117,-29,76,16.79857596956691],[117,-29,77,16.86532631224337],[117,-29,78,16.93915335992437],[117,-29,79,17.002232193201415],[117,-28,64,16.57909126418918],[117,-28,65,16.627880313899798],[117,-28,66,16.659729463005387],[117,-28,67,16.59897931128504],[117,-28,68,16.51084569810109],[117,-28,69,16.438222151047604],[117,-28,70,16.39516832920845],[117,-28,71,16.38834269894674],[117,-28,72,16.412165163917788],[117,-28,73,16.4907396447628],[117,-28,74,16.562434004760476],[117,-28,75,16.56035157379992],[117,-28,76,16.610301487793315],[117,-28,77,16.67514466266438],[117,-28,78,16.74719625083815],[117,-28,79,16.80954457193299],[117,-27,64,16.448998810823273],[117,-27,65,16.451541199523955],[117,-27,66,16.451545582894433],[117,-27,67,16.384060495659302],[117,-27,68,16.278405497878992],[117,-27,69,16.20873950496959],[117,-27,70,16.19480404372226],[117,-27,71,16.20244784663177],[117,-27,72,16.242053031433247],[117,-27,73,16.316484563592283],[117,-27,74,16.36410586216773],[117,-27,75,16.39032314081736],[117,-27,76,16.431182816101746],[117,-27,77,16.48995180751764],[117,-27,78,16.55251614221193],[117,-27,79,16.610329197431323],[117,-26,64,16.30731964794694],[117,-26,65,16.310545961191778],[117,-26,66,16.29838339233514],[117,-26,67,16.22363204654482],[117,-26,68,16.121947412794277],[117,-26,69,16.02155002825664],[117,-26,70,16.020911834148528],[117,-26,71,16.03479154180365],[117,-26,72,16.056732634304193],[117,-26,73,16.13927041058622],[117,-26,74,16.186407978993856],[117,-26,75,16.227062904355716],[117,-26,76,16.269952880268548],[117,-26,77,16.299872096941783],[117,-26,78,16.361647559393223],[117,-26,79,16.41982272753476],[117,-25,64,16.073230794491085],[117,-25,65,16.12667523033461],[117,-25,66,16.095222225574652],[117,-25,67,16.009653476755926],[117,-25,68,15.964787931795628],[117,-25,69,15.852507194079182],[117,-25,70,15.829998025244475],[117,-25,71,15.845015171122379],[117,-25,72,15.868447276437262],[117,-25,73,15.955144036631882],[117,-25,74,15.998584552945859],[117,-25,75,16.058665300119145],[117,-25,76,16.12843998711831],[117,-25,77,16.109293637813924],[117,-25,78,16.170429404746603],[117,-25,79,16.228854903124752],[117,-24,64,15.847564268351253],[117,-24,65,15.915710199520934],[117,-24,66,15.873199190793445],[117,-24,67,15.789264823484212],[117,-24,68,15.780090475108004],[117,-24,69,15.697386164970649],[117,-24,70,15.648764334205715],[117,-24,71,15.647814854326839],[117,-24,72,15.680462219871355],[117,-24,73,15.756548125337952],[117,-24,74,15.813682268556029],[117,-24,75,15.893043371664303],[117,-24,76,15.945684028351874],[117,-24,77,15.922186759647698],[117,-24,78,15.981496502634613],[117,-24,79,16.0395577760323],[117,-23,64,15.61878212020969],[117,-23,65,15.648957864277884],[117,-23,66,15.602839847697282],[117,-23,67,15.521869262206616],[117,-23,68,15.509196757387388],[117,-23,69,15.454810028265808],[117,-23,70,15.439123628416326],[117,-23,71,15.460803191585768],[117,-23,72,15.488688222726477],[117,-23,73,15.532572804897615],[117,-23,74,15.60188703815895],[117,-23,75,15.684760831265066],[117,-23,76,15.711027117516254],[117,-23,77,15.7276514224542],[117,-23,78,15.791021539320472],[117,-23,79,15.855034394132518],[117,-22,64,15.426015579062371],[117,-22,65,15.438544765719877],[117,-22,66,15.398732307886968],[117,-22,67,15.335501434503037],[117,-22,68,15.282724857768603],[117,-22,69,15.248511736912166],[117,-22,70,15.253272991840532],[117,-22,71,15.274272938972558],[117,-22,72,15.30216169823023],[117,-22,73,15.343942454589133],[117,-22,74,15.432792942999265],[117,-22,75,15.481008376135097],[117,-22,76,15.513919183763008],[117,-22,77,15.53778645617273],[117,-22,78,15.603167844763217],[117,-22,79,15.666876413351002],[117,-21,64,15.324784196867444],[117,-21,65,15.324257422845202],[117,-21,66,15.26284368299483],[117,-21,67,15.220178572165901],[117,-21,68,15.131822343879328],[117,-21,69,15.075798650161834],[117,-21,70,15.070011121151273],[117,-21,71,15.1036371756747],[117,-21,72,15.142876310893246],[117,-21,73,15.195987352179873],[117,-21,74,15.323791921315491],[117,-21,75,15.34391623438875],[117,-21,76,15.35981239271356],[117,-21,77,15.34546551595092],[117,-21,78,15.411084451369346],[117,-21,79,15.473952808226723],[117,-20,64,15.135984928742294],[117,-20,65,15.13732011116655],[117,-20,66,15.071166901843064],[117,-20,67,15.01744874861332],[117,-20,68,14.920285884673516],[117,-20,69,14.866280625813475],[117,-20,70,14.886548555979195],[117,-20,71,14.95280361927489],[117,-20,72,14.95969436707091],[117,-20,73,15.050114552222922],[117,-20,74,15.163324220389843],[117,-20,75,15.161930788694585],[117,-20,76,15.149012536946929],[117,-20,77,15.15529471596203],[117,-20,78,15.218785354187206],[117,-20,79,15.281288424069169],[117,-19,64,14.995014169039782],[117,-19,65,14.99628798105668],[117,-19,66,14.913260014621748],[117,-19,67,14.838161447653867],[117,-19,68,14.74755441025983],[117,-19,69,14.707788599907307],[117,-19,70,14.72930159951593],[117,-19,71,14.812859925167631],[117,-19,72,14.811410091060932],[117,-19,73,14.943085889016503],[117,-19,74,15.049678821069108],[117,-19,75,15.062308213388604],[117,-19,76,15.040909783297659],[117,-19,77,15.040638128912269],[117,-19,78,15.03979364756885],[117,-19,79,15.100498846525161],[117,-18,64,14.794183349365639],[117,-18,65,14.785874885643475],[117,-18,66,14.72154073039432],[117,-18,67,14.66216054901653],[117,-18,68,14.581978949800206],[117,-18,69,14.547330480785552],[117,-18,70,14.556168162745248],[117,-18,71,14.637434855214966],[117,-18,72,14.647063402910797],[117,-18,73,14.762411204015924],[117,-18,74,14.884990365901043],[117,-18,75,14.882816539929026],[117,-18,76,14.853449903183087],[117,-18,77,14.831907261652939],[117,-18,78,14.851581136466564],[117,-18,79,14.909099253221758],[117,-17,64,14.594070654113414],[117,-17,65,14.57037193772129],[117,-17,66,14.504297235254361],[117,-17,67,14.475795942651816],[117,-17,68,14.405134339914012],[117,-17,69,14.35945871179232],[117,-17,70,14.369802890131046],[117,-17,71,14.459026872460566],[117,-17,72,14.483403120699652],[117,-17,73,14.587244721583794],[117,-17,74,14.72557487072408],[117,-17,75,14.700742433110133],[117,-17,76,14.682876324253352],[117,-17,77,14.617925562348987],[117,-17,78,14.661380782999517],[117,-17,79,14.719507124531647],[117,-16,64,14.406128120285501],[117,-16,65,14.423482952370819],[117,-16,66,14.369226223674978],[117,-16,67,14.349261300260164],[117,-16,68,14.302491530086789],[117,-16,69,14.266424803421694],[117,-16,70,14.256325131699601],[117,-16,71,14.361425537477338],[117,-16,72,14.394315943451147],[117,-16,73,14.47058583441171],[117,-16,74,14.582281321750633],[117,-16,75,14.556497360820291],[117,-16,76,14.535210230474352],[117,-16,77,14.431746986074272],[117,-16,78,14.476831479371947],[117,-16,79,14.534290100078067],[117,-15,64,14.215127188394204],[117,-15,65,14.217929816063172],[117,-15,66,14.179780803344846],[117,-15,67,14.145210527207958],[117,-15,68,14.113523042685914],[117,-15,69,14.108520759106137],[117,-15,70,14.071097119523667],[117,-15,71,14.176566107409197],[117,-15,72,14.218308248292306],[117,-15,73,14.280557642344062],[117,-15,74,14.360183908506581],[117,-15,75,14.353614390933068],[117,-15,76,14.342418515555176],[117,-15,77,14.23952384170831],[117,-15,78,14.290160189075987],[117,-15,79,14.347510488602127],[117,-14,64,13.90813036048163],[117,-14,65,13.931508495395141],[117,-14,66,13.922048068340068],[117,-14,67,13.900202775553524],[117,-14,68,13.882615982650423],[117,-14,69,13.878525627365976],[117,-14,70,13.853803071118898],[117,-14,71,13.9297031203121],[117,-14,72,13.990555422050837],[117,-14,73,14.020960063398034],[117,-14,74,14.072554066485894],[117,-14,75,14.102402986789834],[117,-14,76,14.088034517860088],[117,-14,77,14.051798120781996],[117,-14,78,14.102444132747422],[117,-14,79,14.161278320729988],[117,-13,64,13.719385495597843],[117,-13,65,13.764712350106848],[117,-13,66,13.773391135197068],[117,-13,67,13.760097227538472],[117,-13,68,13.73155491632988],[117,-13,69,13.73283634614502],[117,-13,70,13.701593079876657],[117,-13,71,13.783009711154085],[117,-13,72,13.850343434840912],[117,-13,73,13.869371622933302],[117,-13,74,13.903613758033543],[117,-13,75,13.94040360756902],[117,-13,76,13.927440081567752],[117,-13,77,13.884124087756728],[117,-13,78,13.910301428993101],[117,-13,79,13.968316784153272],[117,-12,64,13.520526362953493],[117,-12,65,13.539537642252473],[117,-12,66,13.547911613232781],[117,-12,67,13.568615105149194],[117,-12,68,13.533383432008357],[117,-12,69,13.528610903750632],[117,-12,70,13.486815013788242],[117,-12,71,13.562818457571455],[117,-12,72,13.633055031379666],[117,-12,73,13.667225252568711],[117,-12,74,13.69656544105239],[117,-12,75,13.725592219616669],[117,-12,76,13.729366330681486],[117,-12,77,13.690903480573253],[117,-12,78,13.719594506052882],[117,-12,79,13.777072355963199],[117,-11,64,13.3375299787027],[117,-11,65,13.376813859891998],[117,-11,66,13.367102004266304],[117,-11,67,13.394316637374889],[117,-11,68,13.363364523785018],[117,-11,69,13.364064141148278],[117,-11,70,13.312899085782677],[117,-11,71,13.392635620209019],[117,-11,72,13.492464989745578],[117,-11,73,13.545356476260425],[117,-11,74,13.589323885044132],[117,-11,75,13.631084890643274],[117,-11,76,13.625694194805288],[117,-11,77,13.603021373121072],[117,-11,78,13.547346332166166],[117,-11,79,13.597910127814739],[117,-10,64,13.137441112957879],[117,-10,65,13.15045031232265],[117,-10,66,13.1535793371764],[117,-10,67,13.18018447691765],[117,-10,68,13.172462994500265],[117,-10,69,13.170143909555017],[117,-10,70,13.124307033776134],[117,-10,71,13.189690567951851],[117,-10,72,13.283532854948229],[117,-10,73,13.333081708434877],[117,-10,74,13.377357378626385],[117,-10,75,13.404710162132435],[117,-10,76,13.405351346470162],[117,-10,77,13.384274203114813],[117,-10,78,13.362024947067003],[117,-10,79,13.414078294235765],[117,-9,64,12.955479165007741],[117,-9,65,12.932495850490714],[117,-9,66,12.949784061935013],[117,-9,67,12.971286658253064],[117,-9,68,12.983818346861508],[117,-9,69,12.968583858624871],[117,-9,70,12.939699872346816],[117,-9,71,12.996247306636185],[117,-9,72,13.071159211156257],[117,-9,73,13.114187935902052],[117,-9,74,13.156987684186484],[117,-9,75,13.178454932411002],[117,-9,76,13.188198555194472],[117,-9,77,13.158843580074523],[117,-9,78,13.173895954418425],[117,-9,79,13.228798507473698],[117,-8,64,12.724421431072765],[117,-8,65,12.658001111530268],[117,-8,66,12.689392833221882],[117,-8,67,12.711326701359832],[117,-8,68,12.745252207854785],[117,-8,69,12.728570696920487],[117,-8,70,12.69848346435131],[117,-8,71,12.74484125728842],[117,-8,72,12.80765833520131],[117,-8,73,12.83560391650642],[117,-8,74,12.905794506872347],[117,-8,75,12.92845743997141],[117,-8,76,12.931952745193312],[117,-8,77,12.928651322160862],[117,-8,78,12.986814953515855],[117,-8,79,13.039763333473648],[117,-7,64,12.515606268490037],[117,-7,65,12.453294335865808],[117,-7,66,12.488625376436476],[117,-7,67,12.504785141697885],[117,-7,68,12.550695346397207],[117,-7,69,12.539898708715796],[117,-7,70,12.518466298337296],[117,-7,71,12.554421791237525],[117,-7,72,12.601905493301738],[117,-7,73,12.622501594784554],[117,-7,74,12.697010776653194],[117,-7,75,12.708866918244091],[117,-7,76,12.71603943431389],[117,-7,77,12.743202195310518],[117,-7,78,12.797544912407377],[117,-7,79,12.850879674857879],[117,-6,64,12.310166162357088],[117,-6,65,12.251122079992355],[117,-6,66,12.281640320620745],[117,-6,67,12.304632158636975],[117,-6,68,12.347707624983432],[117,-6,69,12.35008263060971],[117,-6,70,12.34306442184839],[117,-6,71,12.346456002517206],[117,-6,72,12.387318603475244],[117,-6,73,12.416774204422854],[117,-6,74,12.488020474278747],[117,-6,75,12.483541841572123],[117,-6,76,12.50709849731029],[117,-6,77,12.55682750876182],[117,-6,78,12.610794405961457],[117,-6,79,12.662166795690277],[117,-5,64,12.094215208587599],[117,-5,65,12.095931168404613],[117,-5,66,12.17196687365063],[117,-5,67,12.245451330112829],[117,-5,68,12.304270207602586],[117,-5,69,12.31913274421615],[117,-5,70,12.314928572953109],[117,-5,71,12.273197027683304],[117,-5,72,12.249744611236284],[117,-5,73,12.219648234485506],[117,-5,74,12.248591782505887],[117,-5,75,12.281482269056214],[117,-5,76,12.31546389606333],[117,-5,77,12.364858133492188],[117,-5,78,12.4166388010133],[117,-5,79,12.468371081697816],[117,-4,64,11.88422394400214],[117,-4,65,11.902297697283089],[117,-4,66,11.967682626360611],[117,-4,67,12.0306951597979],[117,-4,68,12.08700412693121],[117,-4,69,12.110933969742455],[117,-4,70,12.10491378214969],[117,-4,71,12.07436588984891],[117,-4,72,12.03786443199619],[117,-4,73,12.01827459536993],[117,-4,74,12.056610676298282],[117,-4,75,12.090925719084215],[117,-4,76,12.123307407763749],[117,-4,77,12.171062903568776],[117,-4,78,12.22464336005548],[117,-4,79,12.275599634102194],[117,-3,64,11.718829377226548],[117,-3,65,11.748589005726846],[117,-3,66,11.811933316273],[117,-3,67,11.875727846748841],[117,-3,68,11.938453148367447],[117,-3,69,11.967246584644574],[117,-3,70,11.960713214752936],[117,-3,71,11.93488917021377],[117,-3,72,11.886190883935429],[117,-3,73,11.848705928147295],[117,-3,74,11.858338608162653],[117,-3,75,11.893494430880427],[117,-3,76,11.929953484641924],[117,-3,77,11.978341190289019],[117,-3,78,12.035411820857105],[117,-3,79,12.091615223971889],[117,-2,64,11.509143389017716],[117,-2,65,11.55328061196214],[117,-2,66,11.620279814107993],[117,-2,67,11.677886890100563],[117,-2,68,11.739553393703149],[117,-2,69,11.76042031422425],[117,-2,70,11.758441765698853],[117,-2,71,11.727874877555255],[117,-2,72,11.68243887470189],[117,-2,73,11.654499022933782],[117,-2,74,11.67477053827442],[117,-2,75,11.708843383852882],[117,-2,76,11.743163890036467],[117,-2,77,11.79395671062991],[117,-2,78,11.848511845753341],[117,-2,79,11.904393744564004],[117,-1,64,11.348150566030876],[117,-1,65,11.389491411329296],[117,-1,66,11.45644032391449],[117,-1,67,11.510419036955794],[117,-1,68,11.558730942105472],[117,-1,69,11.602884728900758],[117,-1,70,11.583026004739533],[117,-1,71,11.5403721567042],[117,-1,72,11.50140855131927],[117,-1,73,11.493881392466808],[117,-1,74,11.487667838059108],[117,-1,75,11.52296012316954],[117,-1,76,11.557053160858969],[117,-1,77,11.606601684425486],[117,-1,78,11.662324656324397],[117,-1,79,11.718811322008404],[117,0,64,11.180949035152175],[117,0,65,11.221931627899737],[117,0,66,11.264702676588106],[117,0,67,11.295114955295636],[117,0,68,11.312622388771283],[117,0,69,11.323814801709297],[117,0,70,11.328313600536562],[117,0,71,11.336480596720804],[117,0,72,11.356676850541369],[117,0,73,11.392098236196361],[117,0,74,11.425331967425285],[117,0,75,11.456183151740118],[117,0,76,11.487256271255667],[117,0,77,11.529080127350863],[117,0,78,11.580857704480126],[117,0,79,11.63364167348221],[117,1,64,10.993419986376786],[117,1,65,11.0328099254532],[117,1,66,11.074251707206233],[117,1,67,11.107711522109618],[117,1,68,11.127973499175509],[117,1,69,11.136257107490003],[117,1,70,11.143807172637942],[117,1,71,11.150217172546553],[117,1,72,11.171252995666716],[117,1,73,11.205295771790887],[117,1,74,11.235637944248666],[117,1,75,11.265308104030902],[117,1,76,11.299412731673465],[117,1,77,11.339851653693],[117,1,78,11.39021289689919],[117,1,79,11.443755886967757],[117,2,64,10.80411708176923],[117,2,65,10.842382231901606],[117,2,66,10.88394419393713],[117,2,67,10.918559710634717],[117,2,68,10.939977201141359],[117,2,69,10.948683537135258],[117,2,70,10.957692250045426],[117,2,71,10.96566000473969],[117,2,72,10.98541244320953],[117,2,73,11.017482810673101],[117,2,74,11.04716904193961],[117,2,75,11.07522197631484],[117,2,76,11.109034787529245],[117,2,77,11.149274533300003],[117,2,78,11.199286207275184],[117,2,79,11.25422228827981],[117,3,64,10.614668126924842],[117,3,65,10.653429314932948],[117,3,66,10.694384792031883],[117,3,67,10.729280739069521],[117,3,68,10.751291888827103],[117,3,69,10.76150947320443],[117,3,70,10.768407135836222],[117,3,71,10.77923747093174],[117,3,72,10.799606479351928],[117,3,73,10.83001257681407],[117,3,74,10.858542398913226],[117,3,75,10.886171587981638],[117,3,76,10.920481959824121],[117,3,77,10.960104505085084],[117,3,78,11.011676684102028],[117,3,79,11.064466979322429],[117,4,64,10.42147097250357],[117,4,65,10.460643922580147],[117,4,66,10.503754900718631],[117,4,67,10.538745388294522],[117,4,68,10.560200613842381],[117,4,69,10.57547463147206],[117,4,70,10.58230476684662],[117,4,71,10.593062746496965],[117,4,72,10.612376263538403],[117,4,73,10.642534545610172],[117,4,74,10.671366660203134],[117,4,75,10.702243264118112],[117,4,76,10.734713015933512],[117,4,77,10.774995366892691],[117,4,78,10.825459415640454],[117,4,79,10.877501415580461],[117,5,64,10.229970284107555],[117,5,65,10.268784563526015],[117,5,66,10.31257565693475],[117,5,67,10.346302288555368],[117,5,68,10.371316840293812],[117,5,69,10.388738965704833],[117,5,70,10.39574903770874],[117,5,71,10.407190760177787],[117,5,72,10.427938277407089],[117,5,73,10.458889275317588],[117,5,74,10.486484126400622],[117,5,75,10.51567665392527],[117,5,76,10.547281804721576],[117,5,77,10.58977145824108],[117,5,78,10.63958751787611],[117,5,79,10.68790016579679],[117,6,64,10.038953046116273],[117,6,65,10.07957074098979],[117,6,66,10.121259058022462],[117,6,67,10.157835517870058],[117,6,68,10.181958752573493],[117,6,69,10.200582209090754],[117,6,70,10.210136574738943],[117,6,71,10.223255820752646],[117,6,72,10.242661881661094],[117,6,73,10.272990689018211],[117,6,74,10.301604311509719],[117,6,75,10.331418997833211],[117,6,76,10.362417149942681],[117,6,77,10.404197739516418],[117,6,78,10.452924663100571],[117,6,79,10.500264270443317],[117,7,64,9.848283369014284],[117,7,65,9.89004319682089],[117,7,66,9.928849727493795],[117,7,67,9.968220104840434],[117,7,68,9.994273689787173],[117,7,69,10.012886212557701],[117,7,70,10.024469784081033],[117,7,71,10.036908503161378],[117,7,72,10.057680592918922],[117,7,73,10.085591606862707],[117,7,74,10.117371608100784],[117,7,75,10.146311693534475],[117,7,76,10.178594227689953],[117,7,77,10.220110822701082],[117,7,78,10.265793144097795],[117,7,79,10.31543006916601],[117,8,64,9.657631101048008],[117,8,65,9.70158935700678],[117,8,66,9.741296123766196],[117,8,67,9.783358173473179],[117,8,68,9.811736843542553],[117,8,69,9.833760664912159],[117,8,70,9.845084955855063],[117,8,71,9.860032567575084],[117,8,72,9.881102362221892],[117,8,73,9.911162070103387],[117,8,74,9.943497708169625],[117,8,75,9.972587754558518],[117,8,76,10.003919332473453],[117,8,77,10.044383581855673],[117,8,78,10.088668410512843],[117,8,79,10.137098001009997],[117,9,64,9.469554440296006],[117,9,65,9.509823818548996],[117,9,66,9.553761267654599],[117,9,67,9.59730034040308],[117,9,68,9.628747125015284],[117,9,69,9.650262690090374],[117,9,70,9.660853188129279],[117,9,71,9.674335778742321],[117,9,72,9.694442337253115],[117,9,73,9.723786444502922],[117,9,74,9.756235483966915],[117,9,75,9.786046274615988],[117,9,76,9.816955501069463],[117,9,77,9.859324423640219],[117,9,78,9.902330679809019],[117,9,79,9.950313998831424],[117,10,64,9.278806109579172],[117,10,65,9.319142642258418],[117,10,66,9.362485448924941],[117,10,67,9.406365022067233],[117,10,68,9.440708642820711],[117,10,69,9.461353884231265],[117,10,70,9.47441865686116],[117,10,71,9.485462988898423],[117,10,72,9.507284905806584],[117,10,73,9.539935182023907],[117,10,74,9.569322448197006],[117,10,75,9.596242980742883],[117,10,76,9.629295923101493],[117,10,77,9.670856233975469],[117,10,78,9.71521878060865],[117,10,79,9.761270465482527],[117,11,64,9.089159991270876],[117,11,65,9.128014938936472],[117,11,66,9.17381762830687],[117,11,67,9.216848928385472],[117,11,68,9.25043276131447],[117,11,69,9.271904561890388],[117,11,70,9.284530989344722],[117,11,71,9.29600970000513],[117,11,72,9.318890708747938],[117,11,73,9.354181998274505],[117,11,74,9.383458461573092],[117,11,75,9.411095782966912],[117,11,76,9.441226303747232],[117,11,77,9.481865729259354],[117,11,78,9.527242715104231],[117,11,79,9.573723760940675],[117,12,64,8.900703717141342],[117,12,65,8.938653814395234],[117,12,66,8.983055445155976],[117,12,67,9.024949385342385],[117,12,68,9.056263700085669],[117,12,69,9.078758085760327],[117,12,70,9.092238203523372],[117,12,71,9.101961249477563],[117,12,72,9.12401150820919],[117,12,73,9.159727828625696],[117,12,74,9.191567345947078],[117,12,75,9.218664322642464],[117,12,76,9.246753344826198],[117,12,77,9.288163297628673],[117,12,78,9.333430846593286],[117,12,79,9.377976547896028],[117,13,64,8.707231450710013],[117,13,65,8.744340844660792],[117,13,66,8.791466928370081],[117,13,67,8.833737182330742],[117,13,68,8.864629392590581],[117,13,69,8.887079622223153],[117,13,70,8.900952017799323],[117,13,71,8.914331271435582],[117,13,72,8.938851496903958],[117,13,73,8.975397792603449],[117,13,74,9.004831272994684],[117,13,75,9.0318229486016],[117,13,76,9.060738334138168],[117,13,77,9.099757739063573],[117,13,78,9.142845910339506],[117,13,79,9.186733891878623],[117,14,64,8.517407127431845],[117,14,65,8.555454655418732],[117,14,66,8.604008962647322],[117,14,67,8.646580755591168],[117,14,68,8.676848661460202],[117,14,69,8.699913451165637],[117,14,70,8.713045259384616],[117,14,71,8.728714743199394],[117,14,72,8.753044921941159],[117,14,73,8.787292998454864],[117,14,74,8.81622172149894],[117,14,75,8.843731202876686],[117,14,76,8.870860515126225],[117,14,77,8.910625214910345],[117,14,78,8.954255045823416],[117,14,79,8.997917348283545],[117,15,64,8.328295869019307],[117,15,65,8.369881545104965],[117,15,66,8.41480729879878],[117,15,67,8.458606700335608],[117,15,68,8.488831147190517],[117,15,69,8.509248288209873],[117,15,70,8.52516790435475],[117,15,71,8.541155875441442],[117,15,72,8.566794449188368],[117,15,73,8.60271752686289],[117,15,74,8.62839573401668],[117,15,75,8.655115743207233],[117,15,76,8.683690631475994],[117,15,77,8.720249066946028],[117,15,78,8.766894646703264],[117,15,79,8.812306019031354],[117,16,64,8.136267822394837],[117,16,65,8.178396869375261],[117,16,66,8.225829941155888],[117,16,67,8.269650659926064],[117,16,68,8.301974637932465],[117,16,69,8.32737191249676],[117,16,70,8.34350118575739],[117,16,71,8.360096656414289],[117,16,72,8.38616170555121],[117,16,73,8.419312466611482],[117,16,74,8.447116801276747],[117,16,75,8.473887524417604],[117,16,76,8.50556137027717],[117,16,77,8.542614360348344],[117,16,78,8.587996940660908],[117,16,79,8.63548496712274],[117,17,64,7.950576815970819],[117,17,65,7.989574833985875],[117,17,66,8.037349151607241],[117,17,67,8.081843972534141],[117,17,68,8.115178353946103],[117,17,69,8.138510027416402],[117,17,70,8.15449790286993],[117,17,71,8.17105215248389],[117,17,72,8.196347088906247],[117,17,73,8.229479784817883],[117,17,74,8.25802330582246],[117,17,75,8.28364107964799],[117,17,76,8.315679432791484],[117,17,77,8.353539413044725],[117,17,78,8.398878846595593],[117,17,79,8.444641317702924],[117,18,64,7.764987228131073],[117,18,65,7.800379241202057],[117,18,66,7.848000449074367],[117,18,67,7.893241703923916],[117,18,68,7.929677349791836],[117,18,69,7.949810537985009],[117,18,70,7.964583324787634],[117,18,71,7.9816340890092645],[117,18,72,8.008506195078043],[117,18,73,8.039670291211637],[117,18,74,8.069747980576992],[117,18,75,8.093557117056015],[117,18,76,8.125808391211569],[117,18,77,8.16616575279019],[117,18,78,8.209521193729756],[117,18,79,8.252851345400094],[117,19,64,7.575950258380573],[117,19,65,7.612700828688663],[117,19,66,7.661417764801958],[117,19,67,7.703986011626824],[117,19,68,7.741825452830276],[117,19,69,7.763160491984532],[117,19,70,7.7790273334401325],[117,19,71,7.794623013937727],[117,19,72,7.819218692603248],[117,19,73,7.850664480671629],[117,19,74,7.880260721898644],[117,19,75,7.905252244174371],[117,19,76,7.9348357242359],[117,19,77,7.975015437854496],[117,19,78,8.0190354218797],[117,19,79,8.061572436306754],[117,20,64,7.38994706432931],[117,20,65,7.4243170089472805],[117,20,66,7.469947571776259],[117,20,67,7.513547550828308],[117,20,68,7.550723241081346],[117,20,69,7.571683826229324],[117,20,70,7.5858669485681265],[117,20,71,7.602842205122783],[117,20,72,7.625201613137976],[117,20,73,7.653084730088894],[117,20,74,7.680755352405847],[117,20,75,7.707477636733214],[117,20,76,7.737123476268336],[117,20,77,7.7762739042292885],[117,20,78,7.822735577981051],[117,20,79,7.8642348063802725],[117,21,64,7.21335437045157],[117,21,65,7.245385882415453],[117,21,66,7.289270423934043],[117,21,67,7.333376394744547],[117,21,68,7.367723001499863],[117,21,69,7.387149668103202],[117,21,70,7.397592354005385],[117,21,71,7.4112011015105415],[117,21,72,7.429915476536177],[117,21,73,7.45448722858465],[117,21,74,7.479120332273996],[117,21,75,7.505407574632438],[117,21,76,7.533086801517203],[117,21,77,7.573442862907836],[117,21,78,7.623406614990008],[117,21,79,7.668634392748363],[117,22,64,7.022576702076228],[117,22,65,7.055281679139067],[117,22,66,7.0995370114873],[117,22,67,7.145087638588629],[117,22,68,7.179931006688317],[117,22,69,7.200117490831564],[117,22,70,7.207028890206445],[117,22,71,7.221127360998972],[117,22,72,7.240942371621408],[117,22,73,7.264977413383463],[117,22,74,7.289233328742633],[117,22,75,7.313048043225099],[117,22,76,7.342601170029274],[117,22,77,7.381245839033125],[117,22,78,7.429664783715529],[117,22,79,7.477032615351152],[117,23,64,6.832883707220821],[117,23,65,6.865318445791754],[117,23,66,6.909802378102761],[117,23,67,6.955800321482321],[117,23,68,6.9901991969788915],[117,23,69,7.009564443689934],[117,23,70,7.015024071591142],[117,23,71,7.03084309519387],[117,23,72,7.0527268244594685],[117,23,73,7.076724231931583],[117,23,74,7.102226189931558],[117,23,75,7.1241084554007745],[117,23,76,7.1521715836437405],[117,23,77,7.188583461940617],[117,23,78,7.239186434299951],[117,23,79,7.286619623927084],[117,24,64,6.651596730892151],[117,24,65,6.6846968563614215],[117,24,66,6.728683700387439],[117,24,67,6.775795213386475],[117,24,68,6.8081928772546725],[117,24,69,6.8285661930142005],[117,24,70,6.835759935735153],[117,24,71,6.851073361021356],[117,24,72,6.874667464587667],[117,24,73,6.89919266002178],[117,24,74,6.924293914026511],[117,24,75,6.943246567074636],[117,24,76,6.967495948064409],[117,24,77,7.006814759979907],[117,24,78,7.056858186433618],[117,24,79,7.105591172607216],[117,25,64,6.473377556600635],[117,25,65,6.502921641541279],[117,25,66,6.545494756815425],[117,25,67,6.588696017132879],[117,25,68,6.621557013083872],[117,25,69,6.642767583619861],[117,25,70,6.653192292912539],[117,25,71,6.669521654092381],[117,25,72,6.690273564500396],[117,25,73,6.718404667667848],[117,25,74,6.742384104073856],[117,25,75,6.763396625663588],[117,25,76,6.783910548223753],[117,25,77,6.819894308687156],[117,25,78,6.861624310519278],[117,25,79,6.909559094544591],[117,26,64,6.2876860373001575],[117,26,65,6.314796698300454],[117,26,66,6.354765063134938],[117,26,67,6.398853905493366],[117,26,68,6.433318547321631],[117,26,69,6.456702150466986],[117,26,70,6.468705783586488],[117,26,71,6.480965292026947],[117,26,72,6.498625203860327],[117,26,73,6.5275111854501215],[117,26,74,6.552216864252875],[117,26,75,6.574706409349765],[117,26,76,6.593560130880624],[117,26,77,6.6266909104363165],[117,26,78,6.669040187937916],[117,26,79,6.717348669557442],[117,27,64,6.102257435232769],[117,27,65,6.1287073060867066],[117,27,66,6.167143529709772],[117,27,67,6.208533981591407],[117,27,68,6.2453081576596166],[117,27,69,6.268933568169429],[117,27,70,6.2809485027668375],[117,27,71,6.291922542137064],[117,27,72,6.308655462837573],[117,27,73,6.336582620061544],[117,27,74,6.361386857408393],[117,27,75,6.384140355502163],[117,27,76,6.402972814186651],[117,27,77,6.434893948732264],[117,27,78,6.478682455896739],[117,27,79,6.52409836532002],[117,28,64,5.915523240467109],[117,28,65,5.94021173978813],[117,28,66,5.975351660626612],[117,28,67,6.018818208620502],[117,28,68,6.053390590717154],[117,28,69,6.073825256340108],[117,28,70,6.086402209056262],[117,28,71,6.096614525990086],[117,28,72,6.114028754440114],[117,28,73,6.139194012819316],[117,28,74,6.162382277061903],[117,28,75,6.185238238848328],[117,28,76,6.20656823395541],[117,28,77,6.23770777100616],[117,28,78,6.279525964168949],[117,28,79,6.323524003352077],[117,29,64,5.721494363924307],[117,29,65,5.746686389833095],[117,29,66,5.784569576308316],[117,29,67,5.828849567995345],[117,29,68,5.8596362622906115],[117,29,69,5.878920658952377],[117,29,70,5.892391539076104],[117,29,71,5.902234707028623],[117,29,72,5.919497535600014],[117,29,73,5.945531380197149],[117,29,74,5.968898821716022],[117,29,75,5.992207774024092],[117,29,76,6.012246515901428],[117,29,77,6.043981561288775],[117,29,78,6.087894204331222],[117,29,79,6.1329894718283455],[117,30,64,5.532429524034442],[117,30,65,5.560541788749759],[117,30,66,5.600693770594791],[117,30,67,5.64272529561941],[117,30,68,5.671656864430377],[117,30,69,5.689338940727191],[117,30,70,5.6989493429479925],[117,30,71,5.710689694184169],[117,30,72,5.7277637122861895],[117,30,73,5.7508356182147535],[117,30,74,5.7782639598071945],[117,30,75,5.798143482403741],[117,30,76,5.815595503005473],[117,30,77,5.846942736265177],[117,30,78,5.894416474449721],[117,30,79,5.942388360920434],[117,31,64,5.346484896997562],[117,31,65,5.374371599805093],[117,31,66,5.413100145775056],[117,31,67,5.456550382823565],[117,31,68,5.4837163895975145],[117,31,69,5.499505513187073],[117,31,70,5.507582165247193],[117,31,71,5.519415432595128],[117,31,72,5.537480966737768],[117,31,73,5.558351771586319],[117,31,74,5.583823510691363],[117,31,75,5.600405042612371],[117,31,76,5.617798292119766],[117,31,77,5.650329886632303],[117,31,78,5.698341600045923],[117,31,79,5.746571966340407],[117,32,64,5.170482540665992],[117,32,65,5.198458250184742],[117,32,66,5.2369694921427525],[117,32,67,5.27826639212092],[117,32,68,5.306737435156212],[117,32,69,5.3185209712281925],[117,32,70,5.326647755686164],[117,32,71,5.340543940083057],[117,32,72,5.359909202453927],[117,32,73,5.378847524426668],[117,32,74,5.400404730353628],[117,32,75,5.417003854929368],[117,32,76,5.433487748576144],[117,32,77,5.463532163645638],[117,32,78,5.512733989903634],[117,32,79,5.563196438800641],[117,33,64,4.979550928473055],[117,33,65,5.009347015134462],[117,33,66,5.047465186402252],[117,33,67,5.090027655574713],[117,33,68,5.120126810624211],[117,33,69,5.130991128999507],[117,33,70,5.136361347240245],[117,33,71,5.147731087253618],[117,33,72,5.161189622337458],[117,33,73,5.176475482930486],[117,33,74,5.196372054778209],[117,33,75,5.2128223786980845],[117,33,76,5.230228576611329],[117,33,77,5.258034985921477],[117,33,78,5.309747781763345],[117,33,79,5.364337668880736],[117,34,64,4.790418521086007],[117,34,65,4.8212863298090065],[117,34,66,4.861498560285465],[117,34,67,4.899299523872671],[117,34,68,4.928640397856478],[117,34,69,4.939837892488514],[117,34,70,4.948521396602082],[117,34,71,4.955409208911129],[117,34,72,4.968548277059892],[117,34,73,4.986157833296771],[117,34,74,5.005955495680411],[117,34,75,5.019927654230702],[117,34,76,5.038040580475418],[117,34,77,5.064773907257156],[117,34,78,5.115097326459369],[117,34,79,5.172324169736254],[117,35,64,4.602712523826502],[117,35,65,4.6305545072274965],[117,35,66,4.672244464647089],[117,35,67,4.709737854792577],[117,35,68,4.738190964711924],[117,35,69,4.7502930426037535],[117,35,70,4.759323201639016],[117,35,71,4.764105595917169],[117,35,72,4.778285000627042],[117,35,73,4.79498658073066],[117,35,74,4.814110401444915],[117,35,75,4.826508294862629],[117,35,76,4.844989921106313],[117,35,77,4.874847777333625],[117,35,78,4.922592071234013],[117,35,79,4.97932968021211],[117,36,64,4.409283824470329],[117,36,65,4.435085272122476],[117,36,66,4.477897181278937],[117,36,67,4.516261294226225],[117,36,68,4.542602385828804],[117,36,69,4.555949979901771],[117,36,70,4.56332105256765],[117,36,71,4.570242850118043],[117,36,72,4.584168647423906],[117,36,73,4.5982776321798156],[117,36,74,4.6184301425348675],[117,36,75,4.631569194507575],[117,36,76,4.649911795403662],[117,36,77,4.681957461437838],[117,36,78,4.727438251514506],[117,36,79,4.782448397918452],[117,37,64,4.225375880452233],[117,37,65,4.250640626880796],[117,37,66,4.285996899963563],[117,37,67,4.317832891400307],[117,37,68,4.345801099555908],[117,37,69,4.357687008463886],[117,37,70,4.362520223191623],[117,37,71,4.373859619954145],[117,37,72,4.390649493847133],[117,37,73,4.410121798728176],[117,37,74,4.4305609875737755],[117,37,75,4.44683240158815],[117,37,76,4.462784305708128],[117,37,77,4.493793634096634],[117,37,78,4.5394758412661655],[117,37,79,4.593095922567716],[117,38,64,4.0380813601428045],[117,38,65,4.062525673723256],[117,38,66,4.096003153156942],[117,38,67,4.125357784622213],[117,38,68,4.154226180105842],[117,38,69,4.170263055272649],[117,38,70,4.174190393799967],[117,38,71,4.183901715992553],[117,38,72,4.201064947273266],[117,38,73,4.2205520140288515],[117,38,74,4.238521127407529],[117,38,75,4.256155632783911],[117,38,76,4.271897449597584],[117,38,77,4.302491523790722],[117,38,78,4.3483932641501335],[117,38,79,4.4026104022423675],[117,39,64,3.850748878199572],[117,39,65,3.874018655068448],[117,39,66,3.9048145559053014],[117,39,67,3.935305336113655],[117,39,68,3.9636021724805146],[117,39,69,3.9831324186965196],[117,39,70,3.984486958290458],[117,39,71,3.9935782276984506],[117,39,72,4.010760187303122],[117,39,73,4.033445541917285],[117,39,74,4.048971111300851],[117,39,75,4.0658465924370955],[117,39,76,4.083759112580804],[117,39,77,4.109479664875006],[117,39,78,4.157341490516915],[117,39,79,4.213508192773563],[117,40,64,3.6728944904322534],[117,40,65,3.695035342730325],[117,40,66,3.726045216642304],[117,40,67,3.7586899124497646],[117,40,68,3.787637162501924],[117,40,69,3.806281911511462],[117,40,70,3.8080702867909695],[117,40,71,3.816057421238167],[117,40,72,3.83655171421949],[117,40,73,3.858881500473907],[117,40,74,3.874397433117629],[117,40,75,3.8896391252705835],[117,40,76,3.907131507189024],[117,40,77,3.934074670026118],[117,40,78,3.978272467205138],[117,40,79,4.035727415085872],[117,41,64,3.482383283895439],[117,41,65,3.505512676013856],[117,41,66,3.536964204415284],[117,41,67,3.56969456987681],[117,41,68,3.5977420304280505],[117,41,69,3.614636778471967],[117,41,70,3.6160138414809433],[117,41,71,3.6262756991147334],[117,41,72,3.64761382259513],[117,41,73,3.6721005287880164],[117,41,74,3.6882921552241545],[117,41,75,3.699867374030036],[117,41,76,3.7170951135762054],[117,41,77,3.7426636338084815],[117,41,78,3.785732192803945],[117,41,79,3.8425016466609905],[117,42,64,3.2909347269970293],[117,42,65,3.3134324286650654],[117,42,66,3.3458489067715584],[117,42,67,3.379916781770005],[117,42,68,3.4071300960092237],[117,42,69,3.422747649500233],[117,42,70,3.425518650138288],[117,42,71,3.43559251844749],[117,42,72,3.45785047790734],[117,42,73,3.4848468569081215],[117,42,74,3.4993449854469203],[117,42,75,3.5125149329941747],[117,42,76,3.527074524003558],[117,42,77,3.5517472470647853],[117,42,78,3.5942227585805893],[117,42,79,3.6503243628933704],[117,43,64,3.099996588586405],[117,43,65,3.118889033900655],[117,43,66,3.1529852710402473],[117,43,67,3.189356451760052],[117,43,68,3.216121947603539],[117,43,69,3.23057058397644],[117,43,70,3.2363488321669323],[117,43,71,3.2473016411915356],[117,43,72,3.266440281297255],[117,43,73,3.292649054611641],[117,43,74,3.3083715446335726],[117,43,75,3.322662389879638],[117,43,76,3.336545334747008],[117,43,77,3.362202053265064],[117,43,78,3.4020296325251693],[117,43,79,3.460018656607399],[117,44,64,2.9035769891943146],[117,44,65,2.92240376268147],[117,44,66,2.957157081676297],[117,44,67,2.9952218678697977],[117,44,68,3.0214930774328703],[117,44,69,3.0366786604796983],[117,44,70,3.045029895270509],[117,44,71,3.0539922291032404],[117,44,72,3.0737256391589027],[117,44,73,3.0961733343068665],[117,44,74,3.1133188433900063],[117,44,75,3.127524528945694],[117,44,76,3.140402966706884],[117,44,77,3.1666183165355966],[117,44,78,3.206260514120707],[117,44,79,3.2639066199807156],[117,45,64,2.698923370666943],[117,45,65,2.7201324290558544],[117,45,66,2.7599547490334753],[117,45,67,2.8047657774403807],[117,45,68,2.839746787554525],[117,45,69,2.8603780526197644],[117,45,70,2.8733119494512405],[117,45,71,2.888178303664303],[117,45,72,2.9065718884571803],[117,45,73,2.9267516671165374],[117,45,74,2.943824271708716],[117,45,75,2.9571384446891247],[117,45,76,2.9679702157843555],[117,45,77,2.9921766212311582],[117,45,78,3.0316609321374837],[117,45,79,3.0811241930109015],[117,46,64,2.507081277734038],[117,46,65,2.527292996090166],[117,46,66,2.5655598666536594],[117,46,67,2.613685953662629],[117,46,68,2.6488328797445764],[117,46,69,2.6695055647168804],[117,46,70,2.6846706906316893],[117,46,71,2.6998397453055296],[117,46,72,2.719788358194739],[117,46,73,2.737312964518406],[117,46,74,2.753145106210186],[117,46,75,2.7684147010650926],[117,46,76,2.780889203448698],[117,46,77,2.803940249907989],[117,46,78,2.842040098294195],[117,46,79,2.890820684538616],[117,47,64,2.3140164865093937],[117,47,65,2.3365146262790693],[117,47,66,2.375119832744358],[117,47,67,2.4213907533759316],[117,47,68,2.4585639735325344],[117,47,69,2.480592201852054],[117,47,70,2.495413271492833],[117,47,71,2.509027843075343],[117,47,72,2.5301494263709445],[117,47,73,2.54716467804338],[117,47,74,2.5657942781390846],[117,47,75,2.5799108048464476],[117,47,76,2.591770591855375],[117,47,77,2.6141446097780734],[117,47,78,2.6511305900502564],[117,47,79,2.6980931940960926],[117,48,64,2.1375601914173057],[117,48,65,2.1627493727523066],[117,48,66,2.1995185374334905],[117,48,67,2.245504335678036],[117,48,68,2.2816557789807845],[117,48,69,2.3066530277713957],[117,48,70,2.3207834183293263],[117,48,71,2.3364290293658607],[117,48,72,2.356476146643062],[117,48,73,2.372929736201512],[117,48,74,2.390854498771478],[117,48,75,2.4030688756182688],[117,48,76,2.416528329664733],[117,48,77,2.4358478808340327],[117,48,78,2.4734225107915626],[117,48,79,2.522507107683041],[117,49,64,1.9452048972288163],[117,49,65,1.969613764532535],[117,49,66,2.006935684915967],[117,49,67,2.055853031836937],[117,49,68,2.093581066842734],[117,49,69,2.1220895413717633],[117,49,70,2.1365613762912425],[117,49,71,2.1498946917772246],[117,49,72,2.1676415605818784],[117,49,73,2.1816485024041614],[117,49,74,2.196420638134516],[117,49,75,2.2090520283865454],[117,49,76,2.2219077887198386],[117,49,77,2.2423489683355813],[117,49,78,2.2773534968494498],[117,49,79,2.3283575689741505],[117,50,64,1.7528749423928967],[117,50,65,1.7770248809110234],[117,50,66,1.8141596375854774],[117,50,67,1.862642500991113],[117,50,68,1.905567891044071],[117,50,69,1.9348994524874534],[117,50,70,1.9500570816847493],[117,50,71,1.9620978002671967],[117,50,72,1.97810100830481],[117,50,73,1.9904050699748264],[117,50,74,2.004220814586974],[117,50,75,2.0179318263458126],[117,50,76,2.0282422158165003],[117,50,77,2.0502320572976727],[117,50,78,2.0827094196242535],[117,50,79,2.134798803350975],[117,51,64,1.560249455223249],[117,51,65,1.5823732356630256],[117,51,66,1.6211278539534955],[117,51,67,1.668603237520045],[117,51,68,1.7159106821188461],[117,51,69,1.747206338735951],[117,51,70,1.7590474317646854],[117,51,71,1.7721799536824157],[117,51,72,1.785869232901182],[117,51,73,1.8021195931354685],[117,51,74,1.814027609387363],[117,51,75,1.8276159739207845],[117,51,76,1.8366801662852168],[117,51,77,1.8559438970432822],[117,51,78,1.8888314557422858],[117,51,79,1.940582338725034],[117,52,64,1.3920286696392041],[117,52,65,1.416130849646295],[117,52,66,1.4552344742251355],[117,52,67,1.5043516438679139],[117,52,68,1.549936618078728],[117,52,69,1.5806981093411536],[117,52,70,1.5922502198380402],[117,52,71,1.6060298953981271],[117,52,72,1.6200069730508337],[117,52,73,1.637116667611986],[117,52,74,1.649511051598054],[117,52,75,1.6589242619087599],[117,52,76,1.6669715748225173],[117,52,77,1.6866608717369256],[117,52,78,1.720667256124251],[117,52,79,1.7704084438185848],[117,53,64,1.2053333131676003],[117,53,65,1.2287517346190662],[117,53,66,1.2666552532694653],[117,53,67,1.3114048814497707],[117,53,68,1.3515710731947115],[117,53,69,1.3824183091898106],[117,53,70,1.3923772076366214],[117,53,71,1.402315872649456],[117,53,72,1.4178636805464415],[117,53,73,1.4358238083247095],[117,53,74,1.4476922715366307],[117,53,75,1.4559090328819257],[117,53,76,1.4645773350428672],[117,53,77,1.4864463255271196],[117,53,78,1.5216662291157002],[117,53,79,1.573406567707227],[117,54,64,1.0133334962919511],[117,54,65,1.034586236097048],[117,54,66,1.0747759274777402],[117,54,67,1.1210789575924112],[117,54,68,1.159075045399556],[117,54,69,1.1883913589952886],[117,54,70,1.1981922912203693],[117,54,71,1.2103197089247102],[117,54,72,1.2275918551708875],[117,54,73,1.245421938093747],[117,54,74,1.2547829535318715],[117,54,75,1.263840291321434],[117,54,76,1.2703484861657832],[117,54,77,1.2933731089987917],[117,54,78,1.3288505935932757],[117,54,79,1.3798655521056826],[117,55,64,0.8239893269096963],[117,55,65,0.8409034783082763],[117,55,66,0.8808639660639255],[117,55,67,0.925023584119032],[117,55,68,0.965761952388681],[117,55,69,0.9937756304676291],[117,55,70,1.007847650887048],[117,55,71,1.020178600717298],[117,55,72,1.0369792737542223],[117,55,73,1.0516523196784355],[117,55,74,1.0633367883147744],[117,55,75,1.0703799326046215],[117,55,76,1.0780187454900656],[117,55,77,1.1008233770130564],[117,55,78,1.1402460995286101],[117,55,79,1.189926798606589],[117,56,64,0.6465297182375074],[117,56,65,0.6648381766353808],[117,56,66,0.7016565062256075],[117,56,67,0.7457608626849789],[117,56,68,0.7837469830616735],[117,56,69,0.8147345125762715],[117,56,70,0.8314124125062907],[117,56,71,0.842839809880368],[117,56,72,0.8582400861483273],[117,56,73,0.873024383403383],[117,56,74,0.8866578788638144],[117,56,75,0.8918557919600648],[117,56,76,0.8994664487861361],[117,56,77,0.9238609614801976],[117,56,78,0.9647191051633035],[117,56,79,1.0158413370398878],[117,57,64,0.45368731860408495],[117,57,65,0.47056971206086284],[117,57,66,0.5099625042280782],[117,57,67,0.554771564837371],[117,57,68,0.5920878082167621],[117,57,69,0.6225932902247644],[117,57,70,0.6401143314111143],[117,57,71,0.6460531526470423],[117,57,72,0.6595705262566387],[117,57,73,0.6741294743235782],[117,57,74,0.6863463002684758],[117,57,75,0.6905520417906552],[117,57,76,0.6975615348989138],[117,57,77,0.7233194599115778],[117,57,78,0.7641491020342823],[117,57,79,0.8178356564143615],[117,58,64,0.30479885869894446],[117,58,65,0.3216415534719267],[117,58,66,0.3561198083641016],[117,58,67,0.4028151544381817],[117,58,68,0.4413084020633051],[117,58,69,0.47062367494331236],[117,58,70,0.4841264183557328],[117,58,71,0.4924400706044984],[117,58,72,0.5056279922090603],[117,58,73,0.5193991423054918],[117,58,74,0.5287852429413173],[117,58,75,0.531428994758253],[117,58,76,0.5433064268130452],[117,58,77,0.5655578688343202],[117,58,78,0.6061974615475013],[117,58,79,0.6583713534269475],[117,59,64,0.11322819151228554],[117,59,65,0.12960752345616156],[117,59,66,0.16165926314918055],[117,59,67,0.20944178856291729],[117,59,68,0.24835199796258894],[117,59,69,0.27618583758911613],[117,59,70,0.28991821927657807],[117,59,71,0.3002604737008168],[117,59,72,0.3129372721347634],[117,59,73,0.3260009187754153],[117,59,74,0.3357209388692009],[117,59,75,0.34009169793991284],[117,59,76,0.3532584537518694],[117,59,77,0.37472588242074306],[117,59,78,0.41294345549624023],[117,59,79,0.4653292584789597],[117,60,64,0.045979129952588446],[117,60,65,0.045588054297950306],[117,60,66,0.04473122451191387],[117,60,67,0.05115934025221136],[117,60,68,0.058549490281735145],[117,60,69,0.07644509921119334],[117,60,70,0.09068112761526573],[117,60,71,0.10550436163810648],[117,60,72,0.11678928591681914],[117,60,73,0.1305345257038171],[117,60,74,0.13972900309604788],[117,60,75,0.14475841401805045],[117,60,76,0.15915422453176492],[117,60,77,0.1784637435504331],[117,60,78,0.2149301493197716],[117,60,79,0.26682966799809293],[117,61,64,0.007016087495630069],[117,61,65,-7.886037750559627E-4],[117,61,66,-0.004827130183606643],[117,61,67,-0.002750493419691205],[117,61,68,4.848904732004111E-4],[117,61,69,0.005184784812982596],[117,61,70,0.007382139962968506],[117,61,71,0.010864412797350675],[117,61,72,0.015145104228417694],[117,61,73,0.02068192166673638],[117,61,74,0.023268162832031702],[117,61,75,0.02399300294559842],[117,61,76,0.030951231427055026],[117,61,77,0.03786763153263786],[117,61,78,0.04767583860031503],[117,61,79,0.08073347260765334],[117,62,64,-0.042880373574182326],[117,62,65,-0.05040326945669735],[117,62,66,-0.05677084218683502],[117,62,67,-0.05242865043802333],[117,62,68,-0.048818012543476244],[117,62,69,-0.044705130016414504],[117,62,70,-0.04225782257266675],[117,62,71,-0.03768854698327587],[117,62,72,-0.03341059709534873],[117,62,73,-0.029898796434741914],[117,62,74,-0.02660451801992099],[117,62,75,-0.02423681097914719],[117,62,76,-0.01656020693167458],[117,62,77,-0.010796529068658037],[117,62,78,3.611485098681255E-5],[117,62,79,0.01790504741475052],[117,63,64,-0.1634967978824311],[117,63,65,-0.17355947902054703],[117,63,66,-0.18021493234411579],[117,63,67,-0.17513413148977275],[117,63,68,-0.1698361837268543],[117,63,69,-0.16573909396906633],[117,63,70,-0.1633892675693881],[117,63,71,-0.15727997959995826],[117,63,72,-0.15203917894254249],[117,63,73,-0.1482891166197895],[117,63,74,-0.14441227026219988],[117,63,75,-0.14135027740016337],[117,63,76,-0.1334786334555207],[117,63,77,-0.12641613386714323],[117,63,78,-0.11547407983349708],[117,63,79,-0.09888906685291646],[117,64,64,-0.20225126772601154],[117,64,65,-0.21580391698227547],[117,64,66,-0.22022428688976953],[117,64,67,-0.21581841073161284],[117,64,68,-0.20839183795349067],[117,64,69,-0.20610188725696055],[117,64,70,-0.20255664511169408],[117,64,71,-0.19886259375267426],[117,64,72,-0.19224659547437867],[117,64,73,-0.1845629140407049],[117,64,74,-0.18106018224726567],[117,64,75,-0.1762532410071368],[117,64,76,-0.17161075899006295],[117,64,77,-0.16425910033684732],[117,64,78,-0.15324193072600506],[117,64,79,-0.13900071820253496],[117,65,64,-0.2531534243584584],[117,65,65,-0.26595351679278667],[117,65,66,-0.27034949789376667],[117,65,67,-0.2649087536685694],[117,65,68,-0.2581891771702748],[117,65,69,-0.2552119120792758],[117,65,70,-0.25255512884093356],[117,65,71,-0.24904585707881938],[117,65,72,-0.24035719918197826],[117,65,73,-0.23415697839291483],[117,65,74,-0.22976298071021092],[117,65,75,-0.2246428957054042],[117,65,76,-0.2196318315497945],[117,65,77,-0.21057419657677345],[117,65,78,-0.20332440673552163],[117,65,79,-0.19050662536674332],[117,66,64,-0.31007995170708835],[117,66,65,-0.3209017927079076],[117,66,66,-0.3234415045230659],[117,66,67,-0.3193058295258328],[117,66,68,-0.31280548959091775],[117,66,69,-0.3090015762583571],[117,66,70,-0.3059216201078782],[117,66,71,-0.30168122393071406],[117,66,72,-0.29445037957399944],[117,66,73,-0.2863445577322049],[117,66,74,-0.28402732812606357],[117,66,75,-0.2793547211491375],[117,66,76,-0.27252144627645025],[117,66,77,-0.265801268901789],[117,66,78,-0.25908602018014326],[117,66,79,-0.2486789160009787],[117,67,64,-0.36046829120176377],[117,67,65,-0.3709058806480687],[117,67,66,-0.3740251443249918],[117,67,67,-0.37067175561300586],[117,67,68,-0.3628211644681294],[117,67,69,-0.3583643650423784],[117,67,70,-0.35322911478261154],[117,67,71,-0.3475673621352061],[117,67,72,-0.33926564607685306],[117,67,73,-0.3339538792890877],[117,67,74,-0.33247159209308347],[117,67,75,-0.32697525861511256],[117,67,76,-0.3195613473204578],[117,67,77,-0.3143716461012137],[117,67,78,-0.3079736636083415],[117,67,79,-0.3012290802214045],[117,68,64,-0.5005089554020611],[117,68,65,-0.5092228443936294],[117,68,66,-0.5125958895342342],[117,68,67,-0.5116200797115324],[117,68,68,-0.5013034267066983],[117,68,69,-0.49584811175516125],[117,68,70,-0.4877400398346043],[117,68,71,-0.4814745707374614],[117,68,72,-0.4738688375366324],[117,68,73,-0.4711508867665636],[117,68,74,-0.4705901256094675],[117,68,75,-0.4655852114719519],[117,68,76,-0.4597512259103552],[117,68,77,-0.4534240634792289],[117,68,78,-0.44832634000086413],[117,68,79,-0.4408102593397917],[117,69,64,-0.5603873954371312],[117,69,65,-0.5648428214814203],[117,69,66,-0.5651099793596199],[117,69,67,-0.560148505182668],[117,69,68,-0.5443060222054633],[117,69,69,-0.5307102962116116],[117,69,70,-0.5195002572667561],[117,69,71,-0.5103529276676941],[117,69,72,-0.5022391630592595],[117,69,73,-0.4986768176417784],[117,69,74,-0.5000000770316204],[117,69,75,-0.4956215309301283],[117,69,76,-0.4937038761552111],[117,69,77,-0.49185747922847156],[117,69,78,-0.4865661256712869],[117,69,79,-0.4814965625878058],[117,70,64,-0.6133388514724338],[117,70,65,-0.6145450693623746],[117,70,66,-0.6142782336235088],[117,70,67,-0.607854561144735],[117,70,68,-0.5946893669996105],[117,70,69,-0.5804622522314751],[117,70,70,-0.5681922743975383],[117,70,71,-0.559029091823838],[117,70,72,-0.5517894515384048],[117,70,73,-0.5487151292084241],[117,70,74,-0.5491553279296769],[117,70,75,-0.5472734722732702],[117,70,76,-0.5442167677269821],[117,70,77,-0.5436930820837828],[117,70,78,-0.5371310622677435],[117,70,79,-0.5299088743046884],[117,71,64,-0.6537903750431804],[117,71,65,-0.6564108435422079],[117,71,66,-0.6540971898358937],[117,71,67,-0.6466818547910689],[117,71,68,-0.6321002272368976],[117,71,69,-0.6180173914078361],[117,71,70,-0.6073373282678797],[117,71,71,-0.5985776594064879],[117,71,72,-0.5909048962606442],[117,71,73,-0.588281221711251],[117,71,74,-0.587386297310457],[117,71,75,-0.5863043268928403],[117,71,76,-0.5856982037779332],[117,71,77,-0.5852806118582509],[117,71,78,-0.579967798748516],[117,71,79,-0.5724706328068359],[117,72,64,-0.7061289084737623],[117,72,65,-0.7103693841335734],[117,72,66,-0.7045964848414682],[117,72,67,-0.6950868550966972],[117,72,68,-0.6777188401783508],[117,72,69,-0.666402141323942],[117,72,70,-0.6579282153442271],[117,72,71,-0.6489230355700024],[117,72,72,-0.6410333790502809],[117,72,73,-0.6381883891443634],[117,72,74,-0.6386259028160856],[117,72,75,-0.6386111152076405],[117,72,76,-0.640063334971462],[117,72,77,-0.6354512430923013],[117,72,78,-0.6331443529270806],[117,72,79,-0.6217119112079215],[117,73,64,-0.7679918585964747],[117,73,65,-0.7667236845946975],[117,73,66,-0.7565180204852803],[117,73,67,-0.7434093072402741],[117,73,68,-0.7232780472760372],[117,73,69,-0.7127680851297999],[117,73,70,-0.7086932512113397],[117,73,71,-0.699048077008942],[117,73,72,-0.6918203467560708],[117,73,73,-0.6911823286903113],[117,73,74,-0.6936725029761862],[117,73,75,-0.695318689077977],[117,73,76,-0.695133835682438],[117,73,77,-0.6929396484029329],[117,73,78,-0.6881863464581996],[117,73,79,-0.6747202687274791],[117,74,64,-0.8236211104340011],[117,74,65,-0.8226511835264866],[117,74,66,-0.8130210856183073],[117,74,67,-0.7971197823010783],[117,74,68,-0.7793280874936082],[117,74,69,-0.7675841300524044],[117,74,70,-0.7625635064623904],[117,74,71,-0.7523491368652956],[117,74,72,-0.7461284000098986],[117,74,73,-0.7463716203620469],[117,74,74,-0.7476482142520862],[117,74,75,-0.7489243609368504],[117,74,76,-0.7505964070977391],[117,74,77,-0.7499327773225637],[117,74,78,-0.7464407066318132],[117,74,79,-0.7334051274913972],[117,75,64,-0.8726387960448497],[117,75,65,-0.8732032760617146],[117,75,66,-0.8651853867856816],[117,75,67,-0.8470204248484902],[117,75,68,-0.8292833301385424],[117,75,69,-0.8170331060065911],[117,75,70,-0.8097374595719788],[117,75,71,-0.8012011021949961],[117,75,72,-0.7959933735390308],[117,75,73,-0.7947236225266503],[117,75,74,-0.7986567288484424],[117,75,75,-0.8016255928021809],[117,75,76,-0.8013437347622587],[117,75,77,-0.7999566191767075],[117,75,78,-0.7974810053703307],[117,75,79,-0.7876261087395368],[117,76,64,-0.9203928271922341],[117,76,65,-0.9195303125853105],[117,76,66,-0.9093587254724331],[117,76,67,-0.8922821229635733],[117,76,68,-0.8743769827372786],[117,76,69,-0.8636805258572032],[117,76,70,-0.8557305387685692],[117,76,71,-0.8489207040262307],[117,76,72,-0.8437192008312489],[117,76,73,-0.8435977313576715],[117,76,74,-0.8476861436409956],[117,76,75,-0.848219602528248],[117,76,76,-0.848395775142546],[117,76,77,-0.846567577712665],[117,76,78,-0.8426305521946214],[117,76,79,-0.8399869989481412],[117,77,64,-0.9682775079583741],[117,77,65,-0.9685918091665451],[117,77,66,-0.9603244415836937],[117,77,67,-0.9426996217131728],[117,77,68,-0.9275964198474036],[117,77,69,-0.9184752516192198],[117,77,70,-0.9114328776247804],[117,77,71,-0.9086156276418073],[117,77,72,-0.9055498417731974],[117,77,73,-0.9062673266283692],[117,77,74,-0.9074695153727012],[117,77,75,-0.9088034320841132],[117,77,76,-0.9074925450964422],[117,77,77,-0.908320631535456],[117,77,78,-0.9039897351140578],[117,77,79,-0.8994088029414785],[117,78,64,-1.0195957501406547],[117,78,65,-1.0186834384488037],[117,78,66,-1.010700879400244],[117,78,67,-0.993058257809311],[117,78,68,-0.9772467013261985],[117,78,69,-0.9673713100027475],[117,78,70,-0.960719136299011],[117,78,71,-0.956784323973879],[117,78,72,-0.9542647948255171],[117,78,73,-0.9554188075020908],[117,78,74,-0.958309682823255],[117,78,75,-0.9613088203835447],[117,78,76,-0.9590350460401291],[117,78,77,-0.9625425405503507],[117,78,78,-0.9594044691751991],[117,78,79,-0.954012717909045],[117,79,64,-1.0573574564624184],[117,79,65,-1.0586584908033658],[117,79,66,-1.0496427469319423],[117,79,67,-1.0329026557490768],[117,79,68,-1.0188812670262286],[117,79,69,-1.008216199320207],[117,79,70,-0.9995209454685061],[117,79,71,-0.9953859068029486],[117,79,72,-0.9934848916602583],[117,79,73,-0.9984173871743987],[117,79,74,-1.0018627794749309],[117,79,75,-1.0067079331233266],[117,79,76,-1.0052037547329886],[117,79,77,-1.0068160403718855],[117,79,78,-1.0050863086419888],[117,79,79,-1.0000118172794779],[117,80,64,-1.106073070096925],[117,80,65,-1.1078571081719208],[117,80,66,-1.0966065588822862],[117,80,67,-1.0796363854108406],[117,80,68,-1.0671571829635966],[117,80,69,-1.0558534055486541],[117,80,70,-1.0469408736499348],[117,80,71,-1.0441433426405022],[117,80,72,-1.0436472762784565],[117,80,73,-1.049497586518719],[117,80,74,-1.0539234773023325],[117,80,75,-1.0592800283448214],[117,80,76,-1.0584366964388041],[117,80,77,-1.061848578749456],[117,80,78,-1.0597806495523003],[117,80,79,-1.050416037269335],[117,81,64,-1.1495350049605022],[117,81,65,-1.1491979769185763],[117,81,66,-1.138481997994903],[117,81,67,-1.120772605643048],[117,81,68,-1.1070823563138856],[117,81,69,-1.095905966015333],[117,81,70,-1.0874571220330609],[117,81,71,-1.0872835008281663],[117,81,72,-1.0875781040570627],[117,81,73,-1.095653969987636],[117,81,74,-1.0981178663737983],[117,81,75,-1.10428297297352],[117,81,76,-1.1058709321833977],[117,81,77,-1.1151233804112148],[117,81,78,-1.1149664812080027],[117,81,79,-1.1076050037804557],[117,82,64,-1.2052037632255719],[117,82,65,-1.2021853902486257],[117,82,66,-1.1932881499772696],[117,82,67,-1.176205425573983],[117,82,68,-1.1624842042716659],[117,82,69,-1.1525233601660518],[117,82,70,-1.1460054129950001],[117,82,71,-1.1456708054460427],[117,82,72,-1.1447128355178129],[117,82,73,-1.1519146068945028],[117,82,74,-1.1546453063418154],[117,82,75,-1.1623552752726525],[117,82,76,-1.1624031194381665],[117,82,77,-1.1711570677214573],[117,82,78,-1.1745362379858424],[117,82,79,-1.1644733861615375],[117,83,64,-1.2520543937001436],[117,83,65,-1.2496881851651513],[117,83,66,-1.240506145161552],[117,83,67,-1.224606423921326],[117,83,68,-1.2119548565589577],[117,83,69,-1.2024215542307397],[117,83,70,-1.1969568789323413],[117,83,71,-1.1987581471969235],[117,83,72,-1.1977838784569186],[117,83,73,-1.2035425147080163],[117,83,74,-1.2079035674656478],[117,83,75,-1.213288541080773],[117,83,76,-1.213944995101155],[117,83,77,-1.223437111913387],[117,83,78,-1.2261110246918063],[117,83,79,-1.217248956375121],[117,84,64,-1.2968365430930424],[117,84,65,-1.2957476887468269],[117,84,66,-1.2852288792283546],[117,84,67,-1.2723582728119833],[117,84,68,-1.2599575912318046],[117,84,69,-1.2505815433193266],[117,84,70,-1.2487189655603996],[117,84,71,-1.2519935928169188],[117,84,72,-1.2490303069863535],[117,84,73,-1.2524442673491556],[117,84,74,-1.2583825025223436],[117,84,75,-1.263474972175615],[117,84,76,-1.2672927187656255],[117,84,77,-1.274329002606711],[117,84,78,-1.278351789111702],[117,84,79,-1.2682264063054796],[117,85,64,-1.3583208620753329],[117,85,65,-1.3601680014674136],[117,85,66,-1.3539558218835555],[117,85,67,-1.3413433340943024],[117,85,68,-1.3287112926962],[117,85,69,-1.321312971341053],[117,85,70,-1.3216504064795211],[117,85,71,-1.3236051128844433],[117,85,72,-1.3195160836479403],[117,85,73,-1.3201250978248467],[117,85,74,-1.3273929967475173],[117,85,75,-1.3298149935560315],[117,85,76,-1.3330779736946907],[117,85,77,-1.3361801038207894],[117,85,78,-1.3317063538276173],[117,85,79,-1.3214590448103174],[117,86,64,-1.4090365225336072],[117,86,65,-1.4120524737048563],[117,86,66,-1.4049014110574691],[117,86,67,-1.3927918577384242],[117,86,68,-1.3793877626692146],[117,86,69,-1.3722473976490204],[117,86,70,-1.3737931587473446],[117,86,71,-1.3722159689074758],[117,86,72,-1.3706241991336765],[117,86,73,-1.3702828191603296],[117,86,74,-1.3765818037354747],[117,86,75,-1.3795503892364336],[117,86,76,-1.3842978689918233],[117,86,77,-1.387253826482487],[117,86,78,-1.3825294582948089],[117,86,79,-1.371532816661061],[117,87,64,-1.4479080284584729],[117,87,65,-1.4524862028668073],[117,87,66,-1.447981007966054],[117,87,67,-1.4338581499528595],[117,87,68,-1.4226511429853554],[117,87,69,-1.4132542664361825],[117,87,70,-1.4128051609027943],[117,87,71,-1.4107995566956633],[117,87,72,-1.410388849255853],[117,87,73,-1.4110950300833034],[117,87,74,-1.4152321686615512],[117,87,75,-1.4224256865703875],[117,87,76,-1.426731965328947],[117,87,77,-1.430440748082777],[117,87,78,-1.424630931757148],[117,87,79,-1.4112667711503724],[117,88,64,-1.4966120187719456],[117,88,65,-1.500974704020231],[117,88,66,-1.497790648726319],[117,88,67,-1.4842652460879717],[117,88,68,-1.4728925611198729],[117,88,69,-1.4646006736037456],[117,88,70,-1.4620763732598474],[117,88,71,-1.4586182160234469],[117,88,72,-1.4593656313010865],[117,88,73,-1.4591884328306937],[117,88,74,-1.464266436642685],[117,88,75,-1.4724036674092373],[117,88,76,-1.4745599567823764],[117,88,77,-1.477966096171038],[117,88,78,-1.475022609827088],[117,88,79,-1.4601368447768632],[117,89,64,-1.5457546315096562],[117,89,65,-1.5509662565729083],[117,89,66,-1.5473725840100596],[117,89,67,-1.5340098738346075],[117,89,68,-1.5216675835024323],[117,89,69,-1.5127462148544584],[117,89,70,-1.5113245786725098],[117,89,71,-1.5089439234347406],[117,89,72,-1.5077098676557352],[117,89,73,-1.5074836643711096],[117,89,74,-1.5131529468790454],[117,89,75,-1.521444755884031],[117,89,76,-1.5225377366935997],[117,89,77,-1.5252128162971055],[117,89,78,-1.5234063500683876],[117,89,79,-1.5103454020326021],[117,90,64,-1.6005435868016191],[117,90,65,-1.6043329369247412],[117,90,66,-1.5980660863942402],[117,90,67,-1.5866484171918829],[117,90,68,-1.5751272376819812],[117,90,69,-1.568833616925075],[117,90,70,-1.5640166570942233],[117,90,71,-1.5631985473058054],[117,90,72,-1.560143973719026],[117,90,73,-1.56165112523658],[117,90,74,-1.5670996783402968],[117,90,75,-1.5722157400311414],[117,90,76,-1.5730065918986855],[117,90,77,-1.5752292688680765],[117,90,78,-1.5759626465344794],[117,90,79,-1.5654843113452912],[117,91,64,-1.6475799023405],[117,91,65,-1.6511014392340004],[117,91,66,-1.6459942093787583],[117,91,67,-1.633119885226655],[117,91,68,-1.6217949452968157],[117,91,69,-1.6156324384028895],[117,91,70,-1.6119907466074488],[117,91,71,-1.6110370090912807],[117,91,72,-1.6073738067622905],[117,91,73,-1.6096993517258558],[117,91,74,-1.6146981023557994],[117,91,75,-1.618071147171854],[117,91,76,-1.61934431564166],[117,91,77,-1.621877777638207],[117,91,78,-1.623366597279085],[117,91,79,-1.6126875565898713],[117,92,64,-1.6719753357121745],[117,92,65,-1.6758382291586646],[117,92,66,-1.6687254538417786],[117,92,67,-1.6555924294470614],[117,92,68,-1.6446590422917668],[117,92,69,-1.6407618799867547],[117,92,70,-1.637019128753617],[117,92,71,-1.637138511156448],[117,92,72,-1.633949318855428],[117,92,73,-1.6350724255489775],[117,92,74,-1.6400611936770209],[117,92,75,-1.6429483074059783],[117,92,76,-1.6455862863828807],[117,92,77,-1.64681824948623],[117,92,78,-1.6488411344075917],[117,92,79,-1.6393218709731605],[117,93,64,-1.7224544510692374],[117,93,65,-1.725688581858284],[117,93,66,-1.7179355756547796],[117,93,67,-1.705560001183939],[117,93,68,-1.6970537824385261],[117,93,69,-1.6911627708756423],[117,93,70,-1.6860905967660762],[117,93,71,-1.6834878453591662],[117,93,72,-1.6786565984914992],[117,93,73,-1.677811804812316],[117,93,74,-1.6801926249191512],[117,93,75,-1.686252500563626],[117,93,76,-1.6904093702333978],[117,93,77,-1.693218714884746],[117,93,78,-1.6984549886502818],[117,93,79,-1.6922431102085744],[117,94,64,-1.768889623860669],[117,94,65,-1.7720825402134872],[117,94,66,-1.7644084549939167],[117,94,67,-1.754156440837448],[117,94,68,-1.745630509338565],[117,94,69,-1.7391389146691663],[117,94,70,-1.7348441657820335],[117,94,71,-1.7302140513641382],[117,94,72,-1.7242278862066136],[117,94,73,-1.723382686763597],[117,94,74,-1.7252416598643683],[117,94,75,-1.7314861230933016],[117,94,76,-1.7395360299248912],[117,94,77,-1.7434700005077612],[117,94,78,-1.7462459010029294],[117,94,79,-1.7414271041685012],[117,95,64,-1.8052968398861293],[117,95,65,-1.8089959763317645],[117,95,66,-1.8035777529859318],[117,95,67,-1.793173967536349],[117,95,68,-1.7834261897818309],[117,95,69,-1.7766676582137277],[117,95,70,-1.771281331137567],[117,95,71,-1.7713102386457333],[117,95,72,-1.7637551525049362],[117,95,73,-1.762038371391297],[117,95,74,-1.7656606298648447],[117,95,75,-1.7724719912173277],[117,95,76,-1.779123184832378],[117,95,77,-1.78582470489467],[117,95,78,-1.788393884813791],[117,95,79,-1.7827585536388146],[117,96,64,-1.8510634821282248],[117,96,65,-1.8534890808620483],[117,96,66,-1.8492576959682383],[117,96,67,-1.838396464176545],[117,96,68,-1.8263801728986704],[117,96,69,-1.8206008277817627],[117,96,70,-1.8166024259775364],[117,96,71,-1.8153340077086006],[117,96,72,-1.8100564385785327],[117,96,73,-1.8089247730630045],[117,96,74,-1.8118227505894815],[117,96,75,-1.8211186449554269],[117,96,76,-1.8303377009824533],[117,96,77,-1.8357394846341242],[117,96,78,-1.835882176288851],[117,96,79,-1.8303915229398477],[117,97,64,-1.8967462462027689],[117,97,65,-1.8970077149509537],[117,97,66,-1.8910696550885886],[117,97,67,-1.8768921285877562],[117,97,68,-1.8658859389042024],[117,97,69,-1.8600756846468287],[117,97,70,-1.8608979897602507],[117,97,71,-1.8586003516916763],[117,97,72,-1.8583648307586103],[117,97,73,-1.858188029240387],[117,97,74,-1.8630570559783306],[117,97,75,-1.8712141075057538],[117,97,76,-1.8819934389884851],[117,97,77,-1.8835584687875975],[117,97,78,-1.8831154510972667],[117,97,79,-1.876856228539832],[117,98,64,-1.9500081716277642],[117,98,65,-1.9509650219242403],[117,98,66,-1.9435968695777588],[117,98,67,-1.9280321581550068],[117,98,68,-1.9165705926613639],[117,98,69,-1.9113652932759326],[117,98,70,-1.9129562665997775],[117,98,71,-1.9111611075403285],[117,98,72,-1.9091695577309975],[117,98,73,-1.9104874994795444],[117,98,74,-1.917989137377678],[117,98,75,-1.9259411473735388],[117,98,76,-1.933431810084985],[117,98,77,-1.9363553350195335],[117,98,78,-1.9326008740221403],[117,98,79,-1.9279341475470253],[117,99,64,-1.9973771648521477],[117,99,65,-1.9975703357127899],[117,99,66,-1.9904529243189484],[117,99,67,-1.9765688851493575],[117,99,68,-1.9655490281505488],[117,99,69,-1.9578894564406548],[117,99,70,-1.9575779006641025],[117,99,71,-1.9573790508498652],[117,99,72,-1.957394567247291],[117,99,73,-1.9603569642534098],[117,99,74,-1.9679005871728408],[117,99,75,-1.9744067334875446],[117,99,76,-1.9823809520183264],[117,99,77,-1.9829176818325098],[117,99,78,-1.9804978348710245],[117,99,79,-1.9759206225054304],[117,100,64,-2.0132046496800378],[117,100,65,-2.0104695520913083],[117,100,66,-1.9977890162016667],[117,100,67,-1.9818393921935935],[117,100,68,-1.9666751675442635],[117,100,69,-1.9582649590837904],[117,100,70,-1.9548145607894511],[117,100,71,-1.954811125306388],[117,100,72,-1.9543081337786148],[117,100,73,-1.9537700824645428],[117,100,74,-1.9603687671396857],[117,100,75,-1.9674740813937501],[117,100,76,-1.9756146224544413],[117,100,77,-1.9771710668579814],[117,100,78,-1.9739575183829194],[117,100,79,-1.9706187494715122],[117,101,64,-2.058593490749376],[117,101,65,-2.056898865000141],[117,101,66,-2.0455519184506454],[117,101,67,-2.0294349503220253],[117,101,68,-2.013852171478638],[117,101,69,-2.004838572488325],[117,101,70,-2.002406287594137],[117,101,71,-2.0014821597367076],[117,101,72,-2.000126131041666],[117,101,73,-1.9997715258516],[117,101,74,-2.0082406494041622],[117,101,75,-2.0140064136357676],[117,101,76,-2.021198363840273],[117,101,77,-2.0240789652387083],[117,101,78,-2.0218048225181597],[117,101,79,-2.0180958630919266],[117,102,64,-2.1055431507772107],[117,102,65,-2.104802182438541],[117,102,66,-2.095763538274166],[117,102,67,-2.0786100586128025],[117,102,68,-2.0619963295915724],[117,102,69,-2.0528818117498098],[117,102,70,-2.0481402042794925],[117,102,71,-2.0483165757578643],[117,102,72,-2.045783789911545],[117,102,73,-2.0464041485605833],[117,102,74,-2.0545043212257674],[117,102,75,-2.0618259396894647],[117,102,76,-2.068114561287875],[117,102,77,-2.0714586822971337],[117,102,78,-2.070158155065083],[117,102,79,-2.068345365888072],[117,103,64,-2.1477483337198593],[117,103,65,-2.1467297219060884],[117,103,66,-2.137923306740449],[117,103,67,-2.118160854867387],[117,103,68,-2.103151476094528],[117,103,69,-2.091584635923106],[117,103,70,-2.0877237543139464],[117,103,71,-2.0855951706494533],[117,103,72,-2.08706990481325],[117,103,73,-2.0913975519458448],[117,103,74,-2.0950495199844714],[117,103,75,-2.103291983288218],[117,103,76,-2.107624175780996],[117,103,77,-2.1148101987315293],[117,103,78,-2.114022733649041],[117,103,79,-2.113901820222773],[117,104,64,-2.196474919475293],[117,104,65,-2.197589903527342],[117,104,66,-2.1886922545830103],[117,104,67,-2.1686203191593134],[117,104,68,-2.152518410535123],[117,104,69,-2.142027705656182],[117,104,70,-2.1362174721490863],[117,104,71,-2.133189443617434],[117,104,72,-2.134049024735008],[117,104,73,-2.1398430094397334],[117,104,74,-2.1431867247293237],[117,104,75,-2.1519091079433275],[117,104,76,-2.1581642079148455],[117,104,77,-2.1653809730482405],[117,104,78,-2.1640578196643405],[117,104,79,-2.1630502586585467],[117,105,64,-2.243370541479586],[117,105,65,-2.244282071671067],[117,105,66,-2.2330149316480066],[117,105,67,-2.2126692942813437],[117,105,68,-2.1937934685934204],[117,105,69,-2.182505440143971],[117,105,70,-2.1773401032416313],[117,105,71,-2.1740040086932306],[117,105,72,-2.1736890719373116],[117,105,73,-2.1796154407652737],[117,105,74,-2.181911667259222],[117,105,75,-2.1928486864567103],[117,105,76,-2.202290944673435],[117,105,77,-2.2150659245888566],[117,105,78,-2.217219869373734],[117,105,79,-2.2153865527993313],[117,106,64,-2.2999692155145715],[117,106,65,-2.2980626596613565],[117,106,66,-2.2873276330354697],[117,106,67,-2.2671892211282607],[117,106,68,-2.2488203236755595],[117,106,69,-2.2365679434020476],[117,106,70,-2.231183656801554],[117,106,71,-2.2270443445491437],[117,106,72,-2.2261546357015174],[117,106,73,-2.229592097097458],[117,106,74,-2.2347309328449674],[117,106,75,-2.243420029514568],[117,106,76,-2.2569453656302896],[117,106,77,-2.2684409622635546],[117,106,78,-2.273633819141666],[117,106,79,-2.2679949182051184],[117,107,64,-2.346274836291511],[117,107,65,-2.349286534767035],[117,107,66,-2.3361928307033253],[117,107,67,-2.3163426400176244],[117,107,68,-2.297260518960874],[117,107,69,-2.285192972718983],[117,107,70,-2.2794449500067615],[117,107,71,-2.2757859378979983],[117,107,72,-2.274549467330969],[117,107,73,-2.277326373852768],[117,107,74,-2.283613122545661],[117,107,75,-2.29295636466066],[117,107,76,-2.3064538681038607],[117,107,77,-2.3183310940453192],[117,107,78,-2.3206694865198636],[117,107,79,-2.3155173705521963],[117,108,64,-2.402262964781997],[117,108,65,-2.405538977987819],[117,108,66,-2.3902792847234253],[117,108,67,-2.3691781632756133],[117,108,68,-2.350862439456535],[117,108,69,-2.337199663209723],[117,108,70,-2.332271958169722],[117,108,71,-2.326821616434431],[117,108,72,-2.327115479687498],[117,108,73,-2.328788680038059],[117,108,74,-2.3359903577737073],[117,108,75,-2.3457033052278393],[117,108,76,-2.3587565235643475],[117,108,77,-2.3718253171339634],[117,108,78,-2.376107827682924],[117,108,79,-2.3724492019000025],[117,109,64,-2.4555874191598908],[117,109,65,-2.4589326910497573],[117,109,66,-2.4497117780794992],[117,109,67,-2.4288431082048456],[117,109,68,-2.412263256895945],[117,109,69,-2.399286114086832],[117,109,70,-2.3944734727774524],[117,109,71,-2.3895800346504887],[117,109,72,-2.389894027351725],[117,109,73,-2.389991407862164],[117,109,74,-2.395912619011329],[117,109,75,-2.406571032409458],[117,109,76,-2.4160223774309286],[117,109,77,-2.4233453166578562],[117,109,78,-2.424040748537105],[117,109,79,-2.4187736840527387],[117,110,64,-2.5038562768405317],[117,110,65,-2.509464664020448],[117,110,66,-2.499654465539699],[117,110,67,-2.4792576152772385],[117,110,68,-2.4643403803097517],[117,110,69,-2.4520144503954397],[117,110,70,-2.446812826744339],[117,110,71,-2.4400294526025594],[117,110,72,-2.440029558595188],[117,110,73,-2.4403009065763697],[117,110,74,-2.4486517898058784],[117,110,75,-2.4557890137958256],[117,110,76,-2.464727081944964],[117,110,77,-2.47244870335572],[117,110,78,-2.471723785299458],[117,110,79,-2.467230375011118],[117,111,64,-2.545972989888375],[117,111,65,-2.5507541874516777],[117,111,66,-2.5439210371037704],[117,111,67,-2.523996853676638],[117,111,68,-2.5094847917761625],[117,111,69,-2.4980135511234067],[117,111,70,-2.4926220536443817],[117,111,71,-2.4838536023664552],[117,111,72,-2.4833230673684827],[117,111,73,-2.4867688580365086],[117,111,74,-2.4934939908067872],[117,111,75,-2.5021749626999696],[117,111,76,-2.5127278940239943],[117,111,77,-2.5165910194041454],[117,111,78,-2.5181174623070044],[117,111,79,-2.5135991582017354],[117,112,64,-2.5970703610043557],[117,112,65,-2.6021171166928916],[117,112,66,-2.5951792707152115],[117,112,67,-2.575472930942432],[117,112,68,-2.5597152676573596],[117,112,69,-2.5468246423999723],[117,112,70,-2.5400068230542967],[117,112,71,-2.5331383417626703],[117,112,72,-2.534416198420152],[117,112,73,-2.5353611887117036],[117,112,74,-2.5429167254038],[117,112,75,-2.5548060289545758],[117,112,76,-2.5629586006447123],[117,112,77,-2.567097365320526],[117,112,78,-2.570198051855546],[117,112,79,-2.56297747412874],[117,113,64,-2.644210033942491],[117,113,65,-2.6514858090360556],[117,113,66,-2.6456842605546287],[117,113,67,-2.626732860960878],[117,113,68,-2.610871390523031],[117,113,69,-2.596366958515147],[117,113,70,-2.5879304873428377],[117,113,71,-2.5828169878402734],[117,113,72,-2.5837921269257844],[117,113,73,-2.5862200399747386],[117,113,74,-2.5954146467198624],[117,113,75,-2.6041955897616136],[117,113,76,-2.6114204856158194],[117,113,77,-2.617579438806613],[117,113,78,-2.6180681302724027],[117,113,79,-2.609998536558986],[117,114,64,-2.6962447666511022],[117,114,65,-2.7025010502372293],[117,114,66,-2.6993242970717093],[117,114,67,-2.680844217834153],[117,114,68,-2.6646091369107907],[117,114,69,-2.6511325335089584],[117,114,70,-2.6408449100653617],[117,114,71,-2.6388725267275275],[117,114,72,-2.640861554002399],[117,114,73,-2.6461058546589085],[117,114,74,-2.6509521265010774],[117,114,75,-2.6584012400100776],[117,114,76,-2.6667025430470748],[117,114,77,-2.6723790418125386],[117,114,78,-2.6728180038397444],[117,114,79,-2.6626615249283305],[117,115,64,-2.74397124252617],[117,115,65,-2.747382025340857],[117,115,66,-2.743718519369143],[117,115,67,-2.7275420853383796],[117,115,68,-2.715065791067052],[117,115,69,-2.700055501050092],[117,115,70,-2.687313821472722],[117,115,71,-2.6872847914627966],[117,115,72,-2.691542291712744],[117,115,73,-2.6979260098957156],[117,115,74,-2.7031182873154553],[117,115,75,-2.709820847873237],[117,115,76,-2.7141240287648123],[117,115,77,-2.7205692080088926],[117,115,78,-2.721432523368441],[117,115,79,-2.7115912044278296],[117,116,64,-2.7688037415910665],[117,116,65,-2.774403296731957],[117,116,66,-2.775310405385218],[117,116,67,-2.7641049890210883],[117,116,68,-2.7537961536004034],[117,116,69,-2.7445004289052943],[117,116,70,-2.7358157562825194],[117,116,71,-2.7348330558543856],[117,116,72,-2.7406321662550917],[117,116,73,-2.748875034027089],[117,116,74,-2.752529372488256],[117,116,75,-2.7552090345604765],[117,116,76,-2.758436110423945],[117,116,77,-2.762935419748335],[117,116,78,-2.7633702822034234],[117,116,79,-2.75107748165981],[117,117,64,-2.819998329670553],[117,117,65,-2.8265181724558093],[117,117,66,-2.8241846879885997],[117,117,67,-2.813932314426719],[117,117,68,-2.8029952223060137],[117,117,69,-2.793460423036341],[117,117,70,-2.7884976854181014],[117,117,71,-2.788640630080937],[117,117,72,-2.791051268537806],[117,117,73,-2.7991445854603794],[117,117,74,-2.802932109324481],[117,117,75,-2.803317898863688],[117,117,76,-2.8069484630123887],[117,117,77,-2.810392325985642],[117,117,78,-2.807312181781618],[117,117,79,-2.7951071458433914],[117,118,64,-2.8688439376209773],[117,118,65,-2.875606105039165],[117,118,66,-2.86993908278846],[117,118,67,-2.86262957946194],[117,118,68,-2.850596756696878],[117,118,69,-2.841004450976734],[117,118,70,-2.8391591834119443],[117,118,71,-2.8389472126221102],[117,118,72,-2.841881669315985],[117,118,73,-2.8465247834778395],[117,118,74,-2.8510296070163923],[117,118,75,-2.8545213153926334],[117,118,76,-2.860768832582887],[117,118,77,-2.860257527281527],[117,118,78,-2.8563859654618957],[117,118,79,-2.8456971067867474],[117,119,64,-2.9085033230063444],[117,119,65,-2.9176255285922714],[117,119,66,-2.9115721932465983],[117,119,67,-2.903058892919876],[117,119,68,-2.8937780371949513],[117,119,69,-2.8845704923011435],[117,119,70,-2.8818368473310403],[117,119,71,-2.8852144657198298],[117,119,72,-2.885760628675889],[117,119,73,-2.8908355363122316],[117,119,74,-2.897381850623181],[117,119,75,-2.9003238430115448],[117,119,76,-2.9081851598312927],[117,119,77,-2.9100382067280197],[117,119,78,-2.904751211579816],[117,119,79,-2.8930114263165154],[117,120,64,-2.9560589072364674],[117,120,65,-2.9636832300096474],[117,120,66,-2.9593610132789863],[117,120,67,-2.9498804472322093],[117,120,68,-2.942846814416898],[117,120,69,-2.9352860896743516],[117,120,70,-2.931742206565926],[117,120,71,-2.9352721778005506],[117,120,72,-2.9338820470334595],[117,120,73,-2.9385912477208262],[117,120,74,-2.942443804415564],[117,120,75,-2.9493744512088305],[117,120,76,-2.9552369952437187],[117,120,77,-2.960503149759796],[117,120,78,-2.95566466582267],[117,120,79,-2.9421287500976527],[117,121,64,-2.994824807996006],[117,121,65,-3.003554766328737],[117,121,66,-3.0026738838981966],[117,121,67,-2.9928698812256287],[117,121,68,-2.9884885067405023],[117,121,69,-2.9812318651765275],[117,121,70,-2.9773311173076804],[117,121,71,-2.9792594442587994],[117,121,72,-2.977556038806602],[117,121,73,-2.9814899934393235],[117,121,74,-2.9872406724944915],[117,121,75,-2.993979684158647],[117,121,76,-3.000564806673582],[117,121,77,-3.010374968378945],[117,121,78,-3.0136228755724064],[117,121,79,-2.9998505378444524],[117,122,64,-3.0437022327032275],[117,122,65,-3.05612545841566],[117,122,66,-3.05442859445119],[117,122,67,-3.0456640074188113],[117,122,68,-3.040431906571448],[117,122,69,-3.0341093938389108],[117,122,70,-3.03211911598558],[117,122,71,-3.033788276276657],[117,122,72,-3.0323434952197434],[117,122,73,-3.036976973413738],[117,122,74,-3.041652524369909],[117,122,75,-3.048877671847193],[117,122,76,-3.0551690985930766],[117,122,77,-3.065970346175335],[117,122,78,-3.0684248285269877],[117,122,79,-3.0575108165833984],[117,123,64,-3.0879185517018977],[117,123,65,-3.0985007979750328],[117,123,66,-3.0998939730465884],[117,123,67,-3.093811411387809],[117,123,68,-3.087744973720579],[117,123,69,-3.0825303877290207],[117,123,70,-3.0789612244765485],[117,123,71,-3.0834748900039934],[117,123,72,-3.082629676272528],[117,123,73,-3.086431495227164],[117,123,74,-3.092500539746452],[117,123,75,-3.0993486425202774],[117,123,76,-3.106139922233461],[117,123,77,-3.113728099710365],[117,123,78,-3.1174277948804887],[117,123,79,-3.1076500149417834],[117,124,64,-3.13266669178204],[117,124,65,-3.142890291307004],[117,124,66,-3.146372594849038],[117,124,67,-3.138329453978845],[117,124,68,-3.1335384389601653],[117,124,69,-3.1309306150194836],[117,124,70,-3.1256850529313263],[117,124,71,-3.1286140984803374],[117,124,72,-3.1286555852278615],[117,124,73,-3.1348564887247576],[117,124,74,-3.1387685356743593],[117,124,75,-3.1457567228278625],[117,124,76,-3.156139939470485],[117,124,77,-3.164386787421706],[117,124,78,-3.169288453790854],[117,124,79,-3.1606790013147723],[117,125,64,-3.1797637666603973],[117,125,65,-3.1903099274812265],[117,125,66,-3.190720052723175],[117,125,67,-3.1839788793028188],[117,125,68,-3.179594665066205],[117,125,69,-3.177681629665533],[117,125,70,-3.173667547408948],[117,125,71,-3.1746467109835734],[117,125,72,-3.1770119458433035],[117,125,73,-3.1819806181782813],[117,125,74,-3.1877615276038678],[117,125,75,-3.1944426244495547],[117,125,76,-3.2027694178482564],[117,125,77,-3.213609251456916],[117,125,78,-3.21547949991286],[117,125,79,-3.2073410038975845],[117,126,64,-3.2232307678453402],[117,126,65,-3.236958314185895],[117,126,66,-3.2359265210612436],[117,126,67,-3.2285819038573846],[117,126,68,-3.2244257450362586],[117,126,69,-3.2241855492182654],[117,126,70,-3.2215647126926283],[117,126,71,-3.2223198611553747],[117,126,72,-3.2256725164409294],[117,126,73,-3.2303431607913184],[117,126,74,-3.239176619604802],[117,126,75,-3.2448081801114],[117,126,76,-3.25109073163801],[117,126,77,-3.260311472599278],[117,126,78,-3.2629689823667007],[117,126,79,-3.2548864664148804],[117,127,64,-3.262343885515094],[117,127,65,-3.2741744086061426],[117,127,66,-3.2762291284844576],[117,127,67,-3.269214697375398],[117,127,68,-3.265651471812856],[117,127,69,-3.2667126297500406],[117,127,70,-3.264033058461086],[117,127,71,-3.2674523303779828],[117,127,72,-3.2709557540031913],[117,127,73,-3.2772279248301075],[117,127,74,-3.287338331184812],[117,127,75,-3.293703952418694],[117,127,76,-3.298356213432756],[117,127,77,-3.3058995886654934],[117,127,78,-3.309615280160913],[117,127,79,-3.3045238696022783],[117,128,64,-3.3103653606788925],[117,128,65,-3.318738643836337],[117,128,66,-3.324973454259588],[117,128,67,-3.3167867141965237],[117,128,68,-3.311993900171517],[117,128,69,-3.3103089825406613],[117,128,70,-3.3111959105030335],[117,128,71,-3.3145717466215507],[117,128,72,-3.3211378055455993],[117,128,73,-3.3270484639864724],[117,128,74,-3.334138617608278],[117,128,75,-3.3419790671198144],[117,128,76,-3.3473939233853063],[117,128,77,-3.352324938389909],[117,128,78,-3.3542436677708585],[117,128,79,-3.355927128951766],[117,129,64,-3.3516051898012678],[117,129,65,-3.3634143776736307],[117,129,66,-3.3731525668993965],[117,129,67,-3.3704601657013034],[117,129,68,-3.3657854531504534],[117,129,69,-3.362356710880736],[117,129,70,-3.363970448968917],[117,129,71,-3.3638111502334147],[117,129,72,-3.3655293820096324],[117,129,73,-3.3722357846066555],[117,129,74,-3.3759275733612006],[117,129,75,-3.3854859093556695],[117,129,76,-3.3903881987781523],[117,129,77,-3.3932252912694882],[117,129,78,-3.3904358897681597],[117,129,79,-3.3832888195423085],[117,130,64,-3.402741592364168],[117,130,65,-3.417722046354811],[117,130,66,-3.4240593197896674],[117,130,67,-3.423338240522295],[117,130,68,-3.417152888007911],[117,130,69,-3.4160481179632134],[117,130,70,-3.418169626632997],[117,130,71,-3.418098791208957],[117,130,72,-3.416678701649896],[117,130,73,-3.4243291131910154],[117,130,74,-3.4595955184239706],[117,130,75,-3.4883740663736464],[117,130,76,-3.5367694516938784],[117,130,77,-3.5816502688200234],[117,130,78,-3.596553584280729],[117,130,79,-3.5889763553693106],[117,131,64,-3.4517564710803863],[117,131,65,-3.4683196111095733],[117,131,66,-3.4733233042921534],[117,131,67,-3.4706441490695887],[117,131,68,-3.464610980824375],[117,131,69,-3.4640526037992485],[117,131,70,-3.467621102034124],[117,131,71,-3.4672528765924713],[117,131,72,-3.4631428727670333],[117,131,73,-3.4711819654258327],[117,131,74,-3.5392912333066118],[117,131,75,-3.5637780229617384],[117,131,76,-3.612815150094348],[117,131,77,-3.6452102450804076],[117,131,78,-3.647080030371337],[117,131,79,-3.637636285886954],[117,132,64,-3.4902291178114204],[117,132,65,-3.509223503065231],[117,132,66,-3.5139847827126576],[117,132,67,-3.5124834990792784],[117,132,68,-3.5072181819560146],[117,132,69,-3.507324312390835],[117,132,70,-3.510934393029862],[117,132,71,-3.512242424534555],[117,132,72,-3.5096024494016875],[117,132,73,-3.519235815653123],[117,132,74,-3.5891182146776774],[117,132,75,-3.612828600054887],[117,132,76,-3.662955735348089],[117,132,77,-3.6899485561860166],[117,132,78,-3.694345631225928],[117,132,79,-3.6844229548422454],[117,133,64,-3.5481334128339266],[117,133,65,-3.560135447305869],[117,133,66,-3.5583276123790424],[117,133,67,-3.553153235852885],[117,133,68,-3.547486114613254],[117,133,69,-3.5473568857832283],[117,133,70,-3.5506149935578835],[117,133,71,-3.557525049457429],[117,133,72,-3.5599788400684296],[117,133,73,-3.5960031898643745],[117,133,74,-3.641144188533889],[117,133,75,-3.6499981522758516],[117,133,76,-3.6997087457230178],[117,133,77,-3.7280597908129054],[117,133,78,-3.7342956143815536],[117,133,79,-3.726721173554168],[117,134,64,-3.596845046435386],[117,134,65,-3.606938437503337],[117,134,66,-3.6066593038629007],[117,134,67,-3.599836035565728],[117,134,68,-3.593462933462514],[117,134,69,-3.5951739788928982],[117,134,70,-3.5978553332911427],[117,134,71,-3.6050148149182895],[117,134,72,-3.610449817416141],[117,134,73,-3.645246165127768],[117,134,74,-3.684706321901906],[117,134,75,-3.706170140394239],[117,134,76,-3.7541159152903356],[117,134,77,-3.779266343610398],[117,134,78,-3.784906756795899],[117,134,79,-3.7797511334611453],[117,135,64,-3.636687319187296],[117,135,65,-3.6487396045379596],[117,135,66,-3.6489785628997824],[117,135,67,-3.641835910248305],[117,135,68,-3.636029331063195],[117,135,69,-3.6373303307336986],[117,135,70,-3.6407391630301147],[117,135,71,-3.6512469709993174],[117,135,72,-3.656695245805252],[117,135,73,-3.681824452895321],[117,135,74,-3.7153352137350626],[117,135,75,-3.7403047521243082],[117,135,76,-3.784605302319548],[117,135,77,-3.8194821703031128],[117,135,78,-3.8268295628752402],[117,135,79,-3.8207757006401466],[117,136,64,-3.684090050739194],[117,136,65,-3.697851291284235],[117,136,66,-3.697451719921296],[117,136,67,-3.6911917620123966],[117,136,68,-3.6849940631113944],[117,136,69,-3.6868326258878734],[117,136,70,-3.688520025637671],[117,136,71,-3.697653317388915],[117,136,72,-3.703486918309954],[117,136,73,-3.7376332758563384],[117,136,74,-3.76754662192249],[117,136,75,-3.794140326492781],[117,136,76,-3.8437086449471596],[117,136,77,-3.8753919059481396],[117,136,78,-3.8811841597336594],[117,136,79,-3.8738750610405517],[117,137,64,-3.7327819552198584],[117,137,65,-3.74636635089347],[117,137,66,-3.7463349171104383],[117,137,67,-3.7399319231852197],[117,137,68,-3.733514818030259],[117,137,69,-3.735169910235114],[117,137,70,-3.7381145825938487],[117,137,71,-3.744584798035359],[117,137,72,-3.7503646675827933],[117,137,73,-3.7800794204470303],[117,137,74,-3.8017837948820032],[117,137,75,-3.825168024685425],[117,137,76,-3.866020114442979],[117,137,77,-3.9074861362706543],[117,137,78,-3.9135431712844264],[117,137,79,-3.906830694259555],[117,138,64,-3.788344664372976],[117,138,65,-3.7992378150037376],[117,138,66,-3.80173379880208],[117,138,67,-3.7919103918745107],[117,138,68,-3.7858706428140936],[117,138,69,-3.7884219743641347],[117,138,70,-3.791562405510065],[117,138,71,-3.7985768245857536],[117,138,72,-3.801129541132824],[117,138,73,-3.8206877780671524],[117,138,74,-3.84393743883256],[117,138,75,-3.8652347487026764],[117,138,76,-3.8983111562352186],[117,138,77,-3.9296903517033437],[117,138,78,-3.933244409694952],[117,138,79,-3.9345382164829057],[117,139,64,-3.83524413350269],[117,139,65,-3.8493906503583726],[117,139,66,-3.851499044704732],[117,139,67,-3.8410800986402505],[117,139,68,-3.835516485484222],[117,139,69,-3.837448413264021],[117,139,70,-3.838659521128707],[117,139,71,-3.844926459326848],[117,139,72,-3.8497930757671877],[117,139,73,-3.8779743063994934],[117,139,74,-3.907991681771649],[117,139,75,-3.9310701755790753],[117,139,76,-3.9674777878769727],[117,139,77,-3.9877789063446683],[117,139,78,-3.9861786221233886],[117,139,79,-3.9805870858292804],[117,140,64,-3.8949286393295575],[117,140,65,-3.908139785559214],[117,140,66,-3.9088214133896457],[117,140,67,-3.895773672158548],[117,140,68,-3.8889794501262838],[117,140,69,-3.886381905626158],[117,140,70,-3.8861405542948924],[117,140,71,-3.888849253729659],[117,140,72,-3.8920357361416396],[117,140,73,-3.925920213061071],[117,140,74,-3.951713580451275],[117,140,75,-3.980377702186208],[117,140,76,-4.014999239847453],[117,140,77,-4.030517724595308],[117,140,78,-4.032708340128851],[117,140,79,-4.024213552432646],[117,141,64,-3.946520715419467],[117,141,65,-3.9627931307708453],[117,141,66,-3.963130117186907],[117,141,67,-3.951609257873875],[117,141,68,-3.943236651745948],[117,141,69,-3.9410573820357864],[117,141,70,-3.9383587607935477],[117,141,71,-3.9382589867692808],[117,141,72,-3.9441363690244633],[117,141,73,-3.974671247041093],[117,141,74,-3.9946091362414013],[117,141,75,-4.024707612029065],[117,141,76,-4.053300021070324],[117,141,77,-4.067469687384212],[117,141,78,-4.068772792772394],[117,141,79,-4.063506424548521],[117,142,64,-3.996016917378381],[117,142,65,-4.012293407970576],[117,142,66,-4.012319643466495],[117,142,67,-4.001797370435434],[117,142,68,-3.991603847163359],[117,142,69,-3.989526399384672],[117,142,70,-3.987486884403176],[117,142,71,-3.9859265485560513],[117,142,72,-3.9914476507397776],[117,142,73,-4.020206488603706],[117,142,74,-4.036860708955975],[117,142,75,-4.064505872378413],[117,142,76,-4.093653742022253],[117,142,77,-4.106417105998567],[117,142,78,-4.11380263032739],[117,142,79,-4.110031297241185],[117,143,64,-4.039104422622173],[117,143,65,-4.054974289748594],[117,143,66,-4.057998717580368],[117,143,67,-4.048185745031377],[117,143,68,-4.037114669351672],[117,143,69,-4.033667368263518],[117,143,70,-4.03286572241879],[117,143,71,-4.032265581556996],[117,143,72,-4.036903678841028],[117,143,73,-4.055031437866196],[117,143,74,-4.0710974436833105],[117,143,75,-4.09580207602645],[117,143,76,-4.122929450971714],[117,143,77,-4.142382827656006],[117,143,78,-4.146353090846194],[117,143,79,-4.151549783278329],[117,144,64,-4.089382100273111],[117,144,65,-4.10225630301173],[117,144,66,-4.105613333034717],[117,144,67,-4.09816584995822],[117,144,68,-4.086012615523417],[117,144,69,-4.079903412121621],[117,144,70,-4.080160354023075],[117,144,71,-4.082722582201015],[117,144,72,-4.084091864633255],[117,144,73,-4.101958299050873],[117,144,74,-4.118677013017852],[117,144,75,-4.145787942067136],[117,144,76,-4.176269144789586],[117,144,77,-4.196051908515457],[117,144,78,-4.196877277778394],[117,144,79,-4.207193402014436],[117,145,64,-4.132930750520385],[117,145,65,-4.147517672386354],[117,145,66,-4.150508513986052],[117,145,67,-4.144602631254569],[117,145,68,-4.1314833137517395],[117,145,69,-4.123365751088206],[117,145,70,-4.124526823000319],[117,145,71,-4.127043656034384],[117,145,72,-4.126700221500234],[117,145,73,-4.135120808147233],[117,145,74,-4.146310233946356],[117,145,75,-4.157915349322573],[117,145,76,-4.168569437002249],[117,145,77,-4.1897798977167096],[117,145,78,-4.190231855428441],[117,145,79,-4.200097489626607],[117,146,64,-4.187220204128483],[117,146,65,-4.202296422804354],[117,146,66,-4.2072712038685225],[117,146,67,-4.1979457416663015],[117,146,68,-4.183050009829936],[117,146,69,-4.176171811875565],[117,146,70,-4.177707469631351],[117,146,71,-4.181427045128638],[117,146,72,-4.180747181147041],[117,146,73,-4.186769641682758],[117,146,74,-4.195917603028761],[117,146,75,-4.212227698415686],[117,146,76,-4.22447955732023],[117,146,77,-4.237068631674786],[117,146,78,-4.240620542004479],[117,146,79,-4.246708880410992],[117,147,64,-4.232522561407272],[117,147,65,-4.249432216992951],[117,147,66,-4.255445867235255],[117,147,67,-4.24557305834958],[117,147,68,-4.230338329841008],[117,147,69,-4.225387237626533],[117,147,70,-4.226102861495283],[117,147,71,-4.226354869889989],[117,147,72,-4.2275411713829305],[117,147,73,-4.234554052561575],[117,147,74,-4.24606348815492],[117,147,75,-4.261190314574705],[117,147,76,-4.272949848634606],[117,147,77,-4.285072165207899],[117,147,78,-4.2830150451546745],[117,147,79,-4.244226729337324],[117,148,64,-4.254653235164315],[117,148,65,-4.268230013956171],[117,148,66,-4.273625463494795],[117,148,67,-4.2626447185136325],[117,148,68,-4.248709718094004],[117,148,69,-4.239480217352334],[117,148,70,-4.240567431734862],[117,148,71,-4.241866803281865],[117,148,72,-4.243441360200725],[117,148,73,-4.2527884337056765],[117,148,74,-4.26410904229784],[117,148,75,-4.2782629040909415],[117,148,76,-4.285466618959512],[117,148,77,-4.294184335617181],[117,148,78,-4.269700519523308],[117,148,79,-4.236909962123894],[117,149,64,-4.304443473545275],[117,149,65,-4.31926959131244],[117,149,66,-4.323797347196453],[117,149,67,-4.312153810635902],[117,149,68,-4.296756052008095],[117,149,69,-4.288039016082126],[117,149,70,-4.287002669368246],[117,149,71,-4.288928260259935],[117,149,72,-4.293626507024012],[117,149,73,-4.3037179608954075],[117,149,74,-4.313757278161069],[117,149,75,-4.326794020440427],[117,149,76,-4.336143834345748],[117,149,77,-4.345195503671927],[117,149,78,-4.315910203282144],[117,149,79,-4.289627439514471],[117,150,64,-4.355390313330236],[117,150,65,-4.367997037183026],[117,150,66,-4.371979070036221],[117,150,67,-4.359785776410604],[117,150,68,-4.343456087624521],[117,150,69,-4.33628419514029],[117,150,70,-4.334276021536582],[117,150,71,-4.335215329939108],[117,150,72,-4.341939704231972],[117,150,73,-4.354609462870962],[117,150,74,-4.365535540169756],[117,150,75,-4.376636268976993],[117,150,76,-4.388446288451107],[117,150,77,-4.393226056097364],[117,150,78,-4.3643826677372255],[117,150,79,-4.343075889748656],[117,151,64,-4.399259887888106],[117,151,65,-4.413173742587356],[117,151,66,-4.412974648992488],[117,151,67,-4.404843069740899],[117,151,68,-4.388817302239063],[117,151,69,-4.382052791033893],[117,151,70,-4.382419184310377],[117,151,71,-4.382253982866523],[117,151,72,-4.390373926225958],[117,151,73,-4.404568597756083],[117,151,74,-4.418871190206464],[117,151,75,-4.431434718970429],[117,151,76,-4.444791599433397],[117,151,77,-4.4553144079315175],[117,151,78,-4.425123645078015],[117,151,79,-4.401538576073093],[117,152,64,-4.450294768834585],[117,152,65,-4.465713509035835],[117,152,66,-4.461810588981838],[117,152,67,-4.452361427969098],[117,152,68,-4.439386546444266],[117,152,69,-4.430804452693079],[117,152,70,-4.42958557578697],[117,152,71,-4.4313008559168665],[117,152,72,-4.438771053256398],[117,152,73,-4.452325593202791],[117,152,74,-4.46849983866779],[117,152,75,-4.481960166096009],[117,152,76,-4.496744853489996],[117,152,77,-4.508995737403109],[117,152,78,-4.474786720867355],[117,152,79,-4.445135359891184],[117,153,64,-4.503854600440251],[117,153,65,-4.518460112539792],[117,153,66,-4.5110770876083714],[117,153,67,-4.498958244532458],[117,153,68,-4.485234916016502],[117,153,69,-4.478859514164038],[117,153,70,-4.477052200140188],[117,153,71,-4.480348930303022],[117,153,72,-4.486717713446134],[117,153,73,-4.500849528303687],[117,153,74,-4.517792808636448],[117,153,75,-4.53352446168777],[117,153,76,-4.548245992658859],[117,153,77,-4.556859733224139],[117,153,78,-4.516782234875095],[117,153,79,-4.486091279378669],[117,154,64,-4.56159279634523],[117,154,65,-4.573086134604942],[117,154,66,-4.5664059798115915],[117,154,67,-4.554046274873777],[117,154,68,-4.539972829032286],[117,154,69,-4.5322749590840985],[117,154,70,-4.529749644058971],[117,154,71,-4.531673063018408],[117,154,72,-4.538117337449654],[117,154,73,-4.551929676864055],[117,154,74,-4.568610417776021],[117,154,75,-4.588131096038635],[117,154,76,-4.604179434314323],[117,154,77,-4.610244032821035],[117,154,78,-4.5775475727724775],[117,154,79,-4.536996682056543],[117,155,64,-4.6114469851663396],[117,155,65,-4.622290126058692],[117,155,66,-4.616931516303206],[117,155,67,-4.604441097756903],[117,155,68,-4.590488598445341],[117,155,69,-4.581530575191494],[117,155,70,-4.575771701346827],[117,155,71,-4.5789280761669335],[117,155,72,-4.585255054287393],[117,155,73,-4.597222576672197],[117,155,74,-4.617070241596469],[117,155,75,-4.6386026171862635],[117,155,76,-4.65390057983481],[117,155,77,-4.655684685109553],[117,155,78,-4.6206255772766545],[117,155,79,-4.584817640476923],[117,156,64,-4.663434466252528],[117,156,65,-4.675997749421857],[117,156,66,-4.670876282121591],[117,156,67,-4.659172681768924],[117,156,68,-4.643316372110047],[117,156,69,-4.63298355983049],[117,156,70,-4.628832585980017],[117,156,71,-4.632322806665461],[117,156,72,-4.636929976508541],[117,156,73,-4.649869464397426],[117,156,74,-4.669782008115252],[117,156,75,-4.691308094709638],[117,156,76,-4.705005351650424],[117,156,77,-4.7001988219350705],[117,156,78,-4.663251296622065],[117,156,79,-4.628476163719067],[117,157,64,-4.710371945812346],[117,157,65,-4.726606749072264],[117,157,66,-4.721777906704064],[117,157,67,-4.711035025780612],[117,157,68,-4.695151120612228],[117,157,69,-4.685443619262071],[117,157,70,-4.67974918902212],[117,157,71,-4.6849943038290895],[117,157,72,-4.68729609176493],[117,157,73,-4.6986411788138565],[117,157,74,-4.71585945977456],[117,157,75,-4.736750453138818],[117,157,76,-4.752559847913069],[117,157,77,-4.741134829427074],[117,157,78,-4.705831739433556],[117,157,79,-4.663488359429404],[117,158,64,-4.757048454078744],[117,158,65,-4.772546070330674],[117,158,66,-4.769042409397419],[117,158,67,-4.758706330167272],[117,158,68,-4.742053912464058],[117,158,69,-4.733087900352292],[117,158,70,-4.729051304790992],[117,158,71,-4.731949868666109],[117,158,72,-4.73611487713469],[117,158,73,-4.746799138647784],[117,158,74,-4.762868588874365],[117,158,75,-4.7840169835839585],[117,158,76,-4.79750660645884],[117,158,77,-4.775474698503048],[117,158,78,-4.738441923819991],[117,158,79,-4.704134961353547],[117,159,64,-4.868976656302922],[117,159,65,-4.880770438735445],[117,159,66,-4.872631113082232],[117,159,67,-4.855592707494325],[117,159,68,-4.832137189562047],[117,159,69,-4.815677849473648],[117,159,70,-4.804737308602785],[117,159,71,-4.7983564520505695],[117,159,72,-4.792991673644087],[117,159,73,-4.796147892606594],[117,159,74,-4.803746541265767],[117,159,75,-4.815380004866255],[117,159,76,-4.821828808197506],[117,159,77,-4.80153543123958],[117,159,78,-4.771158825418609],[117,159,79,-4.746821880551021],[117,160,64,-4.914363321949772],[117,160,65,-4.925853777841438],[117,160,66,-4.91895319651044],[117,160,67,-4.901800568426936],[117,160,68,-4.880371643524842],[117,160,69,-4.8603925947048126],[117,160,70,-4.850963939608755],[117,160,71,-4.842858289501538],[117,160,72,-4.839688233234269],[117,160,73,-4.842107610268511],[117,160,74,-4.84933318197835],[117,160,75,-4.860159928929918],[117,160,76,-4.866863440968073],[117,160,77,-4.842574794660001],[117,160,78,-4.808376494074878],[117,160,79,-4.79187335391895],[117,161,64,-4.960830322962205],[117,161,65,-4.9704855833566945],[117,161,66,-4.96522843017225],[117,161,67,-4.948786510662238],[117,161,68,-4.927505690359717],[117,161,69,-4.906571124856155],[117,161,70,-4.895767329150215],[117,161,71,-4.8876563394851935],[117,161,72,-4.883917074936277],[117,161,73,-4.88826049808128],[117,161,74,-4.894982658780123],[117,161,75,-4.905125097274468],[117,161,76,-4.910106146170709],[117,161,77,-4.8882797084017],[117,161,78,-4.8458036501292545],[117,161,79,-4.83649924221917],[117,162,64,-5.011821305756685],[117,162,65,-5.019615122773215],[117,162,66,-5.016546987588398],[117,162,67,-5.0009944654801854],[117,162,68,-4.9784364588112595],[117,162,69,-4.959389864406861],[117,162,70,-4.946018207959474],[117,162,71,-4.938404721557476],[117,162,72,-4.932666263519964],[117,162,73,-4.936836840217213],[117,162,74,-4.945354860994815],[117,162,75,-4.952165621571991],[117,162,76,-4.958889230499823],[117,162,77,-4.947742421024811],[117,162,78,-4.8976566952787],[117,162,79,-4.892252980513408],[117,163,64,-5.057768483103831],[117,163,65,-5.063986738369692],[117,163,66,-5.059504527578853],[117,163,67,-5.0435000808369725],[117,163,68,-5.021366976534261],[117,163,69,-5.00514465297136],[117,163,70,-4.991463993992367],[117,163,71,-4.9852977594163175],[117,163,72,-4.977871777570123],[117,163,73,-4.981868392013203],[117,163,74,-4.988348478161437],[117,163,75,-4.995247378594934],[117,163,76,-5.003655558194175],[117,163,77,-4.992983958694553],[117,163,78,-4.954339115939433],[117,163,79,-4.947480666790467],[117,164,64,-5.077706520886746],[117,164,65,-5.085242488049969],[117,164,66,-5.078521470877703],[117,164,67,-5.062804924996848],[117,164,68,-5.039878772430604],[117,164,69,-5.024743943557539],[117,164,70,-5.01215917566426],[117,164,71,-5.007977627457896],[117,164,72,-5.001205918157007],[117,164,73,-5.0041189086735605],[117,164,74,-5.007074220446399],[117,164,75,-5.015321795762932],[117,164,76,-5.024757699239477],[117,164,77,-5.017762033821609],[117,164,78,-4.994805994596699],[117,164,79,-4.984722327319582],[117,165,64,-5.115510344177812],[117,165,65,-5.12523890506247],[117,165,66,-5.119143252176961],[117,165,67,-5.102921438572958],[117,165,68,-5.080588367568001],[117,165,69,-5.065978384592497],[117,165,70,-5.053481144869432],[117,165,71,-5.048398470406015],[117,165,72,-5.043745014382744],[117,165,73,-5.045902699914205],[117,165,74,-5.0455671084217855],[117,165,75,-5.0540581284881165],[117,165,76,-5.062465126697434],[117,165,77,-5.056069872241457],[117,165,78,-5.040694077570723],[117,165,79,-5.028559352669471],[117,166,64,-5.160680253118135],[117,166,65,-5.170613902617044],[117,166,66,-5.166202436225819],[117,166,67,-5.14611897741588],[117,166,68,-5.127517365342706],[117,166,69,-5.110779334386406],[117,166,70,-5.09865180560133],[117,166,71,-5.091437195556825],[117,166,72,-5.088967926530342],[117,166,73,-5.088406662954204],[117,166,74,-5.090873391251135],[117,166,75,-5.096357121054589],[117,166,76,-5.103530101491104],[117,166,77,-5.101393817553465],[117,166,78,-5.092806527455003],[117,166,79,-5.0773469805600095],[117,167,64,-5.201661153426633],[117,167,65,-5.2134654886172935],[117,167,66,-5.205504051171681],[117,167,67,-5.185880037142759],[117,167,68,-5.167983009288453],[117,167,69,-5.150186525135781],[117,167,70,-5.139180033491349],[117,167,71,-5.137100655616966],[117,167,72,-5.131745794790626],[117,167,73,-5.132094416778108],[117,167,74,-5.135981466501152],[117,167,75,-5.1429353469431085],[117,167,76,-5.147886935711538],[117,167,77,-5.1544331163849595],[117,167,78,-5.143704701276671],[117,167,79,-5.127658734832396],[117,168,64,-5.250541885840958],[117,168,65,-5.261262658658573],[117,168,66,-5.251293342248866],[117,168,67,-5.229864907911389],[117,168,68,-5.210272616022387],[117,168,69,-5.193029252909937],[117,168,70,-5.184572171072754],[117,168,71,-5.181687063380048],[117,168,72,-5.177153452523583],[117,168,73,-5.176860506351746],[117,168,74,-5.182151800533859],[117,168,75,-5.1878107110670095],[117,168,76,-5.193776473341961],[117,168,77,-5.200879560410696],[117,168,78,-5.189283751663834],[117,168,79,-5.176307852515656],[117,169,64,-5.308951271964863],[117,169,65,-5.315950309933634],[117,169,66,-5.304609069923852],[117,169,67,-5.279972149948578],[117,169,68,-5.259944110258711],[117,169,69,-5.2447420122561805],[117,169,70,-5.235039209240998],[117,169,71,-5.22895566666164],[117,169,72,-5.226358811462606],[117,169,73,-5.22611861416113],[117,169,74,-5.230902661217156],[117,169,75,-5.236993395654601],[117,169,76,-5.246046101958274],[117,169,77,-5.2517326039216154],[117,169,78,-5.239647043207175],[117,169,79,-5.2221750876128885],[117,170,64,-5.360324312206871],[117,170,65,-5.3669160542330365],[117,170,66,-5.356044776620685],[117,170,67,-5.332283137142134],[117,170,68,-5.311913941254398],[117,170,69,-5.297349526818939],[117,170,70,-5.288116810815945],[117,170,71,-5.279592104756268],[117,170,72,-5.277085337609274],[117,170,73,-5.275997391924417],[117,170,74,-5.283935708184479],[117,170,75,-5.2908997936489275],[117,170,76,-5.296296808481382],[117,170,77,-5.300327671073035],[117,170,78,-5.290118157704353],[117,170,79,-5.2736849796276895],[117,171,64,-5.406431116844517],[117,171,65,-5.413187956503589],[117,171,66,-5.402295494694875],[117,171,67,-5.381218484467537],[117,171,68,-5.361927494589564],[117,171,69,-5.346477193263657],[117,171,70,-5.337352773572555],[117,171,71,-5.329758848480306],[117,171,72,-5.32555205941588],[117,171,73,-5.325550964750237],[117,171,74,-5.330416796637593],[117,171,75,-5.337592287658381],[117,171,76,-5.341403072928187],[117,171,77,-5.344800042569551],[117,171,78,-5.3339569041147685],[117,171,79,-5.3189999410452415],[117,172,64,-5.452601624940654],[117,172,65,-5.4623372127261485],[117,172,66,-5.450213710903625],[117,172,67,-5.430304004513154],[117,172,68,-5.412057072452534],[117,172,69,-5.396794367628446],[117,172,70,-5.388234902889428],[117,172,71,-5.383559753680577],[117,172,72,-5.377024560462933],[117,172,73,-5.376192207234095],[117,172,74,-5.382288888704516],[117,172,75,-5.386752551599295],[117,172,76,-5.390999592488505],[117,172,77,-5.395406450328966],[117,172,78,-5.3790874377939355],[117,172,79,-5.3611251633422885],[117,173,64,-5.498708917033828],[117,173,65,-5.5057948368242],[117,173,66,-5.4956162990456665],[117,173,67,-5.4782062799837306],[117,173,68,-5.456985570518941],[117,173,69,-5.445093774647669],[117,173,70,-5.433383727326431],[117,173,71,-5.428486563645036],[117,173,72,-5.424164665100719],[117,173,73,-5.4224299472732955],[117,173,74,-5.428059853754814],[117,173,75,-5.435202613494203],[117,173,76,-5.439488118405936],[117,173,77,-5.444061876584235],[117,173,78,-5.428723130781502],[117,173,79,-5.407307725846341],[117,174,64,-5.542948596143142],[117,174,65,-5.550000141232532],[117,174,66,-5.541541075103429],[117,174,67,-5.521920537303091],[117,174,68,-5.504001897875792],[117,174,69,-5.492262829466366],[117,174,70,-5.481499959832876],[117,174,71,-5.476515346588421],[117,174,72,-5.468750395424483],[117,174,73,-5.467789342537323],[117,174,74,-5.475188544959441],[117,174,75,-5.481333181871634],[117,174,76,-5.4848005795061745],[117,174,77,-5.492352330200966],[117,174,78,-5.478741621106761],[117,174,79,-5.453968035033872],[117,175,64,-5.581888730466036],[117,175,65,-5.59089433145239],[117,175,66,-5.5818614893055445],[117,175,67,-5.562011781245132],[117,175,68,-5.545749621233322],[117,175,69,-5.535941787149904],[117,175,70,-5.527415896175293],[117,175,71,-5.5221578222945595],[117,175,72,-5.513491316419767],[117,175,73,-5.512431882721217],[117,175,74,-5.5214161327026074],[117,175,75,-5.528947339384472],[117,175,76,-5.532922553426098],[117,175,77,-5.544700801031481],[117,175,78,-5.54899050988346],[117,175,79,-5.533019028575627],[117,176,64,-5.626805286386285],[117,176,65,-5.635750371813183],[117,176,66,-5.626363995387455],[117,176,67,-5.6050782244407324],[117,176,68,-5.5882851636117445],[117,176,69,-5.580367935967786],[117,176,70,-5.574203171293728],[117,176,71,-5.566911413765678],[117,176,72,-5.559869391292231],[117,176,73,-5.558497777571444],[117,176,74,-5.565339357491068],[117,176,75,-5.576036236944791],[117,176,76,-5.583801632597094],[117,176,77,-5.593594730872622],[117,176,78,-5.596069951357889],[117,176,79,-5.578388226062822],[117,177,64,-5.679617175518696],[117,177,65,-5.68515127730551],[117,177,66,-5.674351493390876],[117,177,67,-5.655158627490328],[117,177,68,-5.638077837091915],[117,177,69,-5.63014957462493],[117,177,70,-5.623755776136631],[117,177,71,-5.619599747281792],[117,177,72,-5.60980061297618],[117,177,73,-5.606983893100567],[117,177,74,-5.613090712799798],[117,177,75,-5.625612155789932],[117,177,76,-5.636491923858802],[117,177,77,-5.6457826627894985],[117,177,78,-5.646197750061374],[117,177,79,-5.630242747382399],[117,178,64,-5.728326614083555],[117,178,65,-5.73490668374249],[117,178,66,-5.7219788536388885],[117,178,67,-5.703513279450755],[117,178,68,-5.68920794388242],[117,178,69,-5.680913156058267],[117,178,70,-5.67690999634177],[117,178,71,-5.671117903755833],[117,178,72,-5.660020926097084],[117,178,73,-5.655773018776333],[117,178,74,-5.6639503682014665],[117,178,75,-5.675152544495137],[117,178,76,-5.687644130772832],[117,178,77,-5.698394980968575],[117,178,78,-5.696138580788486],[117,178,79,-5.683000875148904],[117,179,64,-5.771815169165009],[117,179,65,-5.780401742369967],[117,179,66,-5.767276038443876],[117,179,67,-5.749237441250426],[117,179,68,-5.735764435403085],[117,179,69,-5.7276291506641535],[117,179,70,-5.725041124339261],[117,179,71,-5.717127277939906],[117,179,72,-5.703936431479738],[117,179,73,-5.6997524342697305],[117,179,74,-5.707382202785564],[117,179,75,-5.722256577485492],[117,179,76,-5.73533587330356],[117,179,77,-5.746594063157474],[117,179,78,-5.745616704177442],[117,179,79,-5.729476423494385],[117,180,64,-5.804988026293555],[117,180,65,-5.814342300479383],[117,180,66,-5.805139718644731],[117,180,67,-5.788337454375817],[117,180,68,-5.7790164630384595],[117,180,69,-5.771363980256151],[117,180,70,-5.768883553805722],[117,180,71,-5.763246672115085],[117,180,72,-5.749211952237188],[117,180,73,-5.743940861747962],[117,180,74,-5.751498431928146],[117,180,75,-5.7681759057787465],[117,180,76,-5.781267494012452],[117,180,77,-5.7920385699708214],[117,180,78,-5.791862325211587],[117,180,79,-5.778076206656025],[117,181,64,-5.841435073269389],[117,181,65,-5.848791514057713],[117,181,66,-5.843168465512228],[117,181,67,-5.829396550023963],[117,181,68,-5.816524525797842],[117,181,69,-5.8111212519788165],[117,181,70,-5.806478403726215],[117,181,71,-5.804165832854509],[117,181,72,-5.793079555672291],[117,181,73,-5.790067945806381],[117,181,74,-5.795607012475554],[117,181,75,-5.812890463149927],[117,181,76,-5.836753904702505],[117,181,77,-5.850864189458563],[117,181,78,-5.863988102174008],[117,181,79,-5.856062900733182],[117,182,64,-5.889803935979286],[117,182,65,-5.894349349531941],[117,182,66,-5.892437124712538],[117,182,67,-5.878419442709799],[117,182,68,-5.862869138625497],[117,182,69,-5.857298004041394],[117,182,70,-5.853422230635243],[117,182,71,-5.849095474552121],[117,182,72,-5.840703669782593],[117,182,73,-5.837634531193661],[117,182,74,-5.844097882662873],[117,182,75,-5.86076232206069],[117,182,76,-5.884132002116806],[117,182,77,-5.904029493035865],[117,182,78,-5.918573087957492],[117,182,79,-5.910854776941209],[117,183,64,-5.931726395332229],[117,183,65,-5.9391979678029685],[117,183,66,-5.936252066994471],[117,183,67,-5.922666827671883],[117,183,68,-5.908058605670239],[117,183,69,-5.90154358332398],[117,183,70,-5.897196036285523],[117,183,71,-5.8930545783056285],[117,183,72,-5.885085119703705],[117,183,73,-5.882742478615864],[117,183,74,-5.893109523181752],[117,183,75,-5.905380104900665],[117,183,76,-5.930109785989191],[117,183,77,-5.952455739673521],[117,183,78,-5.962893195633988],[117,183,79,-5.955914465136603],[117,184,64,-5.981247149251901],[117,184,65,-5.987989695710076],[117,184,66,-5.98540444376389],[117,184,67,-5.970222728861313],[117,184,68,-5.9548889978857416],[117,184,69,-5.94717428128917],[117,184,70,-5.944836899724652],[117,184,71,-5.940123499516268],[117,184,72,-5.930858865020081],[117,184,73,-5.931281105912851],[117,184,74,-5.939939673764719],[117,184,75,-5.951400702888772],[117,184,76,-5.978423568748859],[117,184,77,-6.001968422289015],[117,184,78,-6.009393155906968],[117,184,79,-6.003595989795704],[117,185,64,-6.029427986547022],[117,185,65,-6.036042183694203],[117,185,66,-6.032679695878218],[117,185,67,-6.017027413078157],[117,185,68,-6.002713273156514],[117,185,69,-5.995474059349854],[117,185,70,-5.990550784368238],[117,185,71,-5.98705937129269],[117,185,72,-5.98045502459128],[117,185,73,-5.978971833589562],[117,185,74,-5.98925855038084],[117,185,75,-5.997878320842125],[117,185,76,-6.021469316640738],[117,185,77,-6.044410697439345],[117,185,78,-6.050740323327563],[117,185,79,-6.045224616756937],[117,186,64,-6.0854659148123185],[117,186,65,-6.09128327027643],[117,186,66,-6.0850823573612844],[117,186,67,-6.071141772681434],[117,186,68,-6.054958981570563],[117,186,69,-6.048905707218334],[117,186,70,-6.044328089265136],[117,186,71,-6.04040679199727],[117,186,72,-6.0321288124573975],[117,186,73,-6.031279924763227],[117,186,74,-6.039501081047048],[117,186,75,-6.04856128366605],[117,186,76,-6.063985333544217],[117,186,77,-6.086229635342351],[117,186,78,-6.087520531635727],[117,186,79,-6.081799933523521],[117,187,64,-6.136777286537374],[117,187,65,-6.142623308448997],[117,187,66,-6.135158826255098],[117,187,67,-6.122176808789023],[117,187,68,-6.104271133685613],[117,187,69,-6.096881683779843],[117,187,70,-6.093755838651033],[117,187,71,-6.089451527332146],[117,187,72,-6.081739795738239],[117,187,73,-6.079342241938188],[117,187,74,-6.088570643234247],[117,187,75,-6.095618893297674],[117,187,76,-6.10975771072624],[117,187,77,-6.138155120532709],[117,187,78,-6.1421893462369646],[117,187,79,-6.135638975389639],[117,188,64,-6.199833790741505],[117,188,65,-6.20492482415198],[117,188,66,-6.194863838372004],[117,188,67,-6.177180461046254],[117,188,68,-6.1535911024845715],[117,188,69,-6.142960396320146],[117,188,70,-6.138103253018061],[117,188,71,-6.131018144955504],[117,188,72,-6.124679250026876],[117,188,73,-6.1258467733494895],[117,188,74,-6.133019953250741],[117,188,75,-6.139614133898846],[117,188,76,-6.149980631180574],[117,188,77,-6.17993933749327],[117,188,78,-6.190949355187076],[117,188,79,-6.18654875011114],[117,189,64,-6.250287981161058],[117,189,65,-6.2559676403160465],[117,189,66,-6.2505623436280136],[117,189,67,-6.233632628305499],[117,189,68,-6.211234035110701],[117,189,69,-6.198027982096517],[117,189,70,-6.193528456668122],[117,189,71,-6.183001845206834],[117,189,72,-6.172466807283313],[117,189,73,-6.172177303753367],[117,189,74,-6.179953733895732],[117,189,75,-6.187264168515044],[117,189,76,-6.195105200904905],[117,189,77,-6.2196269902804175],[117,189,78,-6.231781807129338],[117,189,79,-6.225786502599778],[117,190,64,-6.299667424453886],[117,190,65,-6.30767426657217],[117,190,66,-6.301098678937417],[117,190,67,-6.28517960887158],[117,190,68,-6.2633316546848015],[117,190,69,-6.247414307808053],[117,190,70,-6.240524413102779],[117,190,71,-6.2312046994706645],[117,190,72,-6.220494422379954],[117,190,73,-6.221866827178299],[117,190,74,-6.226824207379875],[117,190,75,-6.235620474281703],[117,190,76,-6.239877869135712],[117,190,77,-6.2700355175048985],[117,190,78,-6.279613377770654],[117,190,79,-6.276233803138434],[117,191,64,-6.347811282849795],[117,191,65,-6.356782675971985],[117,191,66,-6.34898070708877],[117,191,67,-6.331680847512291],[117,191,68,-6.310549351790283],[117,191,69,-6.291816671326538],[117,191,70,-6.287037512364489],[117,191,71,-6.2785531085433375],[117,191,72,-6.2676681112156745],[117,191,73,-6.269087657796354],[117,191,74,-6.273077196239493],[117,191,75,-6.282588703644547],[117,191,76,-6.288778005948991],[117,191,77,-6.315889222039636],[117,191,78,-6.323077883153201],[117,191,79,-6.32028936000573],[117,192,64,-6.398091148138878],[117,192,65,-6.406353982011135],[117,192,66,-6.396470277475365],[117,192,67,-6.377142666853965],[117,192,68,-6.355659300871011],[117,192,69,-6.341234441017722],[117,192,70,-6.331168491780289],[117,192,71,-6.32451935985353],[117,192,72,-6.317960007128639],[117,192,73,-6.315368966055217],[117,192,74,-6.321685730275257],[117,192,75,-6.328895988365786],[117,192,76,-6.336367958809768],[117,192,77,-6.365555998874526],[117,192,78,-6.372619217742722],[117,192,79,-6.370854084296084],[117,193,64,-6.448254188757865],[117,193,65,-6.452710091233845],[117,193,66,-6.4384289758222595],[117,193,67,-6.415882377226794],[117,193,68,-6.394894331716771],[117,193,69,-6.380413715410915],[117,193,70,-6.371947198359556],[117,193,71,-6.369164613094993],[117,193,72,-6.3654438787991285],[117,193,73,-6.364995340051708],[117,193,74,-6.372901643536258],[117,193,75,-6.378516512022113],[117,193,76,-6.389223317542338],[117,193,77,-6.408845363374],[117,193,78,-6.415830738977083],[117,193,79,-6.412931204298843],[117,194,64,-6.49994977622673],[117,194,65,-6.503791231324754],[117,194,66,-6.492784592227697],[117,194,67,-6.466886260943163],[117,194,68,-6.447130775849094],[117,194,69,-6.4343345264707885],[117,194,70,-6.4236089190821115],[117,194,71,-6.4193005167491854],[117,194,72,-6.415796612997013],[117,194,73,-6.41361759288532],[117,194,74,-6.421103726303956],[117,194,75,-6.429521570004645],[117,194,76,-6.43705049660364],[117,194,77,-6.459434183249763],[117,194,78,-6.46677520264405],[117,194,79,-6.464529327003408],[117,195,64,-6.55035626122454],[117,195,65,-6.5516574657851425],[117,195,66,-6.540566427076026],[117,195,67,-6.51434864453992],[117,195,68,-6.4929658830701396],[117,195,69,-6.478587948683562],[117,195,70,-6.469751363411548],[117,195,71,-6.463647664285061],[117,195,72,-6.460736293469745],[117,195,73,-6.460780566300948],[117,195,74,-6.46843891691034],[117,195,75,-6.476454128098455],[117,195,76,-6.482815578291131],[117,195,77,-6.511582690314292],[117,195,78,-6.51771931053459],[117,195,79,-6.515680990961817],[117,196,64,-6.5897534306015135],[117,196,65,-6.593264542774201],[117,196,66,-6.579404064973903],[117,196,67,-6.550909401506509],[117,196,68,-6.530269145895202],[117,196,69,-6.512759320906853],[117,196,70,-6.502689791211165],[117,196,71,-6.498877286980815],[117,196,72,-6.498493609043477],[117,196,73,-6.501138934744764],[117,196,74,-6.5077166327163045],[117,196,75,-6.514603307851421],[117,196,76,-6.520146837410762],[117,196,77,-6.553621605847724],[117,196,78,-6.555852301784197],[117,196,79,-6.554979789215273],[117,197,64,-6.637878183743265],[117,197,65,-6.641794375887927],[117,197,66,-6.626820284117222],[117,197,67,-6.599131805382133],[117,197,68,-6.576771399971827],[117,197,69,-6.557213470186324],[117,197,70,-6.544897137015503],[117,197,71,-6.540644995693642],[117,197,72,-6.539506340479672],[117,197,73,-6.545619186221346],[117,197,74,-6.555025506076658],[117,197,75,-6.559480498648569],[117,197,76,-6.564463458449042],[117,197,77,-6.593192022305515],[117,197,78,-6.594537653295834],[117,197,79,-6.592779082403674],[117,198,64,-6.685517976384041],[117,198,65,-6.687759987948924],[117,198,66,-6.672764284272977],[117,198,67,-6.644491002984142],[117,198,68,-6.623556725651063],[117,198,69,-6.599834452476533],[117,198,70,-6.586360154218291],[117,198,71,-6.586472745344561],[117,198,72,-6.584186594420404],[117,198,73,-6.590397164796275],[117,198,74,-6.598667271546307],[117,198,75,-6.604782005026113],[117,198,76,-6.61226996918793],[117,198,77,-6.634609373833638],[117,198,78,-6.637113375299033],[117,198,79,-6.636191380073447],[117,199,64,-6.731322938524116],[117,199,65,-6.731274595055532],[117,199,66,-6.718516051074785],[117,199,67,-6.691492428127371],[117,199,68,-6.666616392670266],[117,199,69,-6.645077048041583],[117,199,70,-6.633046113802232],[117,199,71,-6.631238183815152],[117,199,72,-6.630661041088029],[117,199,73,-6.637599557182815],[117,199,74,-6.643582756207741],[117,199,75,-6.649482005386936],[117,199,76,-6.658403519858273],[117,199,77,-6.6770622014044045],[117,199,78,-6.680513060911139],[117,199,79,-6.680057491781859],[117,200,64,-6.78084856288912],[117,200,65,-6.778151310343084],[117,200,66,-6.765484234066933],[117,200,67,-6.740313832658601],[117,200,68,-6.710331577956906],[117,200,69,-6.692464288543149],[117,200,70,-6.681587703483688],[117,200,71,-6.676653057322913],[117,200,72,-6.678886338590083],[117,200,73,-6.683857413998187],[117,200,74,-6.690174330420953],[117,200,75,-6.695276722556212],[117,200,76,-6.702738949778604],[117,200,77,-6.722917281990545],[117,200,78,-6.729481818372935],[117,200,79,-6.726561112202407],[117,201,64,-6.818823780012168],[117,201,65,-6.81812220686757],[117,201,66,-6.8065000604258055],[117,201,67,-6.780973195895044],[117,201,68,-6.7484199899669655],[117,201,69,-6.729660744126419],[117,201,70,-6.721190071743112],[117,201,71,-6.718029107368378],[117,201,72,-6.721180800807874],[117,201,73,-6.726110897205314],[117,201,74,-6.732753588720552],[117,201,75,-6.737747374087366],[117,201,76,-6.748156153442841],[117,201,77,-6.76776076405909],[117,201,78,-6.775356595390318],[117,201,79,-6.77007632138927],[117,202,64,-6.873681836725974],[117,202,65,-6.875059504376605],[117,202,66,-6.860192281398208],[117,202,67,-6.831480209844177],[117,202,68,-6.80308229115347],[117,202,69,-6.781447911173626],[117,202,70,-6.775285115353704],[117,202,71,-6.770091126766806],[117,202,72,-6.772871932408513],[117,202,73,-6.777044079904665],[117,202,74,-6.78350274298051],[117,202,75,-6.7892636920315725],[117,202,76,-6.79793976071904],[117,202,77,-6.818972380729588],[117,202,78,-6.823314300118024],[117,202,79,-6.817278510660436],[117,203,64,-6.924246756827623],[117,203,65,-6.925655304225987],[117,203,66,-6.908742675528177],[117,203,67,-6.879816191029788],[117,203,68,-6.853494080033759],[117,203,69,-6.829738823232676],[117,203,70,-6.8225632975898876],[117,203,71,-6.819119619148644],[117,203,72,-6.82183905618142],[117,203,73,-6.823127506241949],[117,203,74,-6.830729782205941],[117,203,75,-6.8372152885779],[117,203,76,-6.851410360958102],[117,203,77,-6.8743520192646095],[117,203,78,-6.876750277651442],[117,203,79,-6.872580013510814],[117,204,64,-6.97427687027611],[117,204,65,-6.975964070659657],[117,204,66,-6.9546572326488265],[117,204,67,-6.924827493602209],[117,204,68,-6.894708506672876],[117,204,69,-6.869305602938208],[117,204,70,-6.859013400475913],[117,204,71,-6.854183565849599],[117,204,72,-6.856253703761876],[117,204,73,-6.85852346848794],[117,204,74,-6.86221392819406],[117,204,75,-6.87146399557715],[117,204,76,-6.898058799959361],[117,204,77,-6.921595074877854],[117,204,78,-6.922702125348872],[117,204,79,-6.921586319215384],[117,205,64,-7.0334357511028065],[117,205,65,-7.035096861964918],[117,205,66,-7.015144185958964],[117,205,67,-6.985267809980953],[117,205,68,-6.953113676221824],[117,205,69,-6.930073618603904],[117,205,70,-6.917126660007634],[117,205,71,-6.910853556051523],[117,205,72,-6.9057466630816755],[117,205,73,-6.905658350322935],[117,205,74,-6.911997489854482],[117,205,75,-6.920752262890331],[117,205,76,-6.93784096341919],[117,205,77,-6.962584022688756],[117,205,78,-6.964239035956782],[117,205,79,-6.962167107538551],[117,206,64,-7.084333880961476],[117,206,65,-7.085557806825991],[117,206,66,-7.065517590790507],[117,206,67,-7.034193139563196],[117,206,68,-7.0007662445306105],[117,206,69,-6.9772204018017],[117,206,70,-6.964252111065698],[117,206,71,-6.958425128145109],[117,206,72,-6.9518608469797],[117,206,73,-6.949804391263536],[117,206,74,-6.960060308327163],[117,206,75,-6.9699315689288515],[117,206,76,-6.98843884926337],[117,206,77,-7.013095420664799],[117,206,78,-7.015713366444699],[117,206,79,-7.0135785513530475],[117,207,64,-7.137428125812554],[117,207,65,-7.13604984372081],[117,207,66,-7.115306760393802],[117,207,67,-7.082585330048804],[117,207,68,-7.0501475789296455],[117,207,69,-7.026868385947159],[117,207,70,-7.012301470339598],[117,207,71,-7.003837637952602],[117,207,72,-6.998394161443431],[117,207,73,-6.996968970131],[117,207,74,-7.00668610271669],[117,207,75,-7.014538771604436],[117,207,76,-7.025439043723683],[117,207,77,-7.047478050475396],[117,207,78,-7.053633901353953],[117,207,79,-7.05101864619437],[117,208,64,-7.190078184661296],[117,208,65,-7.187705642609154],[117,208,66,-7.165932945116831],[117,208,67,-7.131368424272961],[117,208,68,-7.097119697606446],[117,208,69,-7.073552849062536],[117,208,70,-7.0587851586092425],[117,208,71,-7.049729602313903],[117,208,72,-7.0438463785259735],[117,208,73,-7.043194814130331],[117,208,74,-7.052204185957323],[117,208,75,-7.0602936825824205],[117,208,76,-7.0715908221973836],[117,208,77,-7.090501952461339],[117,208,78,-7.096698130544895],[117,208,79,-7.10391548530897],[117,209,64,-7.240374741204236],[117,209,65,-7.2379157468612805],[117,209,66,-7.217158741267757],[117,209,67,-7.180739301322522],[117,209,68,-7.144083372469232],[117,209,69,-7.11821560323151],[117,209,70,-7.10092521822712],[117,209,71,-7.093055425603844],[117,209,72,-7.087988626686235],[117,209,73,-7.087827006517993],[117,209,74,-7.097727964024611],[117,209,75,-7.106611993593855],[117,209,76,-7.117054461159059],[117,209,77,-7.138856677511205],[117,209,78,-7.144496907495528],[117,209,79,-7.152901661607351],[117,210,64,-7.295196662832554],[117,210,65,-7.292568104315854],[117,210,66,-7.268674602602459],[117,210,67,-7.232700564606855],[117,210,68,-7.196623812591472],[117,210,69,-7.166727733439607],[117,210,70,-7.151272283898541],[117,210,71,-7.141429086098732],[117,210,72,-7.1341304291623135],[117,210,73,-7.1373727864892285],[117,210,74,-7.144674136510284],[117,210,75,-7.156209737942902],[117,210,76,-7.164978022089007],[117,210,77,-7.187613046703463],[117,210,78,-7.193937155935577],[117,210,79,-7.203290335224797],[117,211,64,-7.345376098464703],[117,211,65,-7.340793691225318],[117,211,66,-7.315266044137201],[117,211,67,-7.278815040954068],[117,211,68,-7.242750525256397],[117,211,69,-7.212598081226136],[117,211,70,-7.1975225244246825],[117,211,71,-7.187881986335764],[117,211,72,-7.179460944709872],[117,211,73,-7.183050337789922],[117,211,74,-7.189663793710949],[117,211,75,-7.200998024380162],[117,211,76,-7.210272081625018],[117,211,77,-7.240976766834995],[117,211,78,-7.248668234966534],[117,211,79,-7.258801219237187],[117,212,64,-7.372416059863381],[117,212,65,-7.373397551414723],[117,212,66,-7.351027962588995],[117,212,67,-7.321482724843749],[117,212,68,-7.2937937473109296],[117,212,69,-7.269585260882851],[117,212,70,-7.258080217664371],[117,212,71,-7.25031916362689],[117,212,72,-7.243332782528297],[117,212,73,-7.245665094505503],[117,212,74,-7.251103207827846],[117,212,75,-7.261158824069935],[117,212,76,-7.270334708464263],[117,212,77,-7.296724509088021],[117,212,78,-7.300273040983691],[117,212,79,-7.306660149558498],[117,213,64,-7.423798671974946],[117,213,65,-7.4189678299675235],[117,213,66,-7.393713134359077],[117,213,67,-7.358990961771826],[117,213,68,-7.332219027876094],[117,213,69,-7.308594917474957],[117,213,70,-7.2993438988276536],[117,213,71,-7.296849030879238],[117,213,72,-7.2905469748373735],[117,213,73,-7.293220270080544],[117,213,74,-7.299618213178569],[117,213,75,-7.311681883350981],[117,213,76,-7.327762899429706],[117,213,77,-7.352894867898224],[117,213,78,-7.358485674427662],[117,213,79,-7.364023323882756],[117,214,64,-7.469577196547435],[117,214,65,-7.46514025143346],[117,214,66,-7.442998462191571],[117,214,67,-7.407384388802163],[117,214,68,-7.380619751790733],[117,214,69,-7.35688546606667],[117,214,70,-7.34714929203269],[117,214,71,-7.34275527158558],[117,214,72,-7.337668477918226],[117,214,73,-7.341134296182325],[117,214,74,-7.346993967120155],[117,214,75,-7.359562644943462],[117,214,76,-7.378231115940658],[117,214,77,-7.402947869731895],[117,214,78,-7.408854724315647],[117,214,79,-7.417514128882251],[117,215,64,-7.517254070744766],[117,215,65,-7.514676681132275],[117,215,66,-7.491043150917677],[117,215,67,-7.45862121427987],[117,215,68,-7.431061985767595],[117,215,69,-7.408435082018251],[117,215,70,-7.396479455249682],[117,215,71,-7.389760049513089],[117,215,72,-7.384883775521574],[117,215,73,-7.387835919454874],[117,215,74,-7.39630932619782],[117,215,75,-7.407018611746346],[117,215,76,-7.422496462804168],[117,215,77,-7.444167444105212],[117,215,78,-7.454073319410578],[117,215,79,-7.461706433190714],[117,216,64,-7.563964622965328],[117,216,65,-7.560939537121095],[117,216,66,-7.5380572929787615],[117,216,67,-7.506101028402903],[117,216,68,-7.479473752586203],[117,216,69,-7.45752116963383],[117,216,70,-7.444686289004356],[117,216,71,-7.440555137998181],[117,216,72,-7.43362680294277],[117,216,73,-7.436169479536155],[117,216,74,-7.442921236431405],[117,216,75,-7.452855122245485],[117,216,76,-7.462393672911739],[117,216,77,-7.493686340065465],[117,216,78,-7.50496777423065],[117,216,79,-7.511339059039305],[117,217,64,-7.6062535371101925],[117,217,65,-7.607025989785346],[117,217,66,-7.587005645173101],[117,217,67,-7.557651337303834],[117,217,68,-7.531552798793621],[117,217,69,-7.512844640996823],[117,217,70,-7.498917083500596],[117,217,71,-7.491526675480493],[117,217,72,-7.481329001909026],[117,217,73,-7.4801095461925],[117,217,74,-7.48760849585009],[117,217,75,-7.495239921926212],[117,217,76,-7.503867836239681],[117,217,77,-7.545164540111546],[117,217,78,-7.556113608640643],[117,217,79,-7.556421441996445],[117,218,64,-7.6578819218302545],[117,218,65,-7.6607500514222675],[117,218,66,-7.6397750858737865],[117,218,67,-7.610575426527483],[117,218,68,-7.583842814047731],[117,218,69,-7.566557043637937],[117,218,70,-7.5504729834685795],[117,218,71,-7.540508732920921],[117,218,72,-7.529304665961107],[117,218,73,-7.530371228484834],[117,218,74,-7.537070815971454],[117,218,75,-7.544736563503722],[117,218,76,-7.549978994658767],[117,218,77,-7.591509899050576],[117,218,78,-7.606121041802384],[117,218,79,-7.600918540994078],[117,219,64,-7.702233841642443],[117,219,65,-7.707834772417902],[117,219,66,-7.688045050820529],[117,219,67,-7.660164085487381],[117,219,68,-7.634797581781945],[117,219,69,-7.612673495348129],[117,219,70,-7.598681206884394],[117,219,71,-7.584880215301493],[117,219,72,-7.575979025876122],[117,219,73,-7.577157758016856],[117,219,74,-7.583830490419612],[117,219,75,-7.590560337464721],[117,219,76,-7.604680396406212],[117,219,77,-7.6457168827742725],[117,219,78,-7.667065304556616],[117,219,79,-7.656586635097225],[117,220,64,-7.746873306745525],[117,220,65,-7.750955997504832],[117,220,66,-7.730603998818064],[117,220,67,-7.70154863014718],[117,220,68,-7.673558888027226],[117,220,69,-7.646977935425741],[117,220,70,-7.631721534790291],[117,220,71,-7.61589613141148],[117,220,72,-7.607982418297347],[117,220,73,-7.6102323285542015],[117,220,74,-7.615270792605099],[117,220,75,-7.621733972370007],[117,220,76,-7.649421513378545],[117,220,77,-7.692894407524675],[117,220,78,-7.7250352360458905],[117,220,79,-7.719960707078677],[117,221,64,-7.793854584130792],[117,221,65,-7.795500028289534],[117,221,66,-7.777306572034294],[117,221,67,-7.746617937931822],[117,221,68,-7.7191485258841475],[117,221,69,-7.69116704974201],[117,221,70,-7.674653584374931],[117,221,71,-7.66332095231147],[117,221,72,-7.652935938128018],[117,221,73,-7.655257421831714],[117,221,74,-7.660993394825679],[117,221,75,-7.6962792438318575],[117,221,76,-7.740388306162349],[117,221,77,-7.775466806422548],[117,221,78,-7.790378894884605],[117,221,79,-7.7706752286017755],[117,222,64,-7.835954899962775],[117,222,65,-7.841049136345006],[117,222,66,-7.823118153530517],[117,222,67,-7.793389167811037],[117,222,68,-7.762848579821052],[117,222,69,-7.73569375968938],[117,222,70,-7.719922093501192],[117,222,71,-7.709926822379381],[117,222,72,-7.698570462438793],[117,222,73,-7.700135983489381],[117,222,74,-7.7135724310195695],[117,222,75,-7.757577586461058],[117,222,76,-7.795108235092839],[117,222,77,-7.836396557665228],[117,222,78,-7.8373562952552005],[117,222,79,-7.820251817682192],[117,223,64,-7.885897238293437],[117,223,65,-7.8887315321488165],[117,223,66,-7.8731138661578886],[117,223,67,-7.844927558262062],[117,223,68,-7.813791117949001],[117,223,69,-7.782294990633815],[117,223,70,-7.768187141296487],[117,223,71,-7.755665601422878],[117,223,72,-7.744072258517124],[117,223,73,-7.7451449252821165],[117,223,74,-7.7769244426298805],[117,223,75,-7.831888746451882],[117,223,76,-7.871686793612054],[117,223,77,-7.89288203491801],[117,223,78,-7.88326119947229],[117,223,79,-7.865149833065129],[117,224,64,-7.930302059883276],[117,224,65,-7.934217755243478],[117,224,66,-7.923168083992113],[117,224,67,-7.891469183600618],[117,224,68,-7.8587256271320385],[117,224,69,-7.829917084948089],[117,224,70,-7.814041863645198],[117,224,71,-7.801696178860707],[117,224,72,-7.790127389945625],[117,224,73,-7.78851360699231],[117,224,74,-7.840376533630289],[117,224,75,-7.887019795991048],[117,224,76,-7.928515866298971],[117,224,77,-7.94177651552525],[117,224,78,-7.93535646807655],[117,224,79,-7.91589391894946],[117,225,64,-7.9871067352018805],[117,225,65,-7.986138135418441],[117,225,66,-7.970671860695824],[117,225,67,-7.936267241835066],[117,225,68,-7.898955616689487],[117,225,69,-7.871828850585509],[117,225,70,-7.85689727986973],[117,225,71,-7.8457416256774115],[117,225,72,-7.836331684492224],[117,225,73,-7.841841093976227],[117,225,74,-7.905038784777858],[117,225,75,-7.943853251947022],[117,225,76,-7.9842265928101215],[117,225,77,-7.993069732869206],[117,225,78,-7.988067622858125],[117,225,79,-7.967492324101463],[117,226,64,-8.039358579271935],[117,226,65,-8.04060898414152],[117,226,66,-8.02155323599498],[117,226,67,-7.985582053888652],[117,226,68,-7.950474632032978],[117,226,69,-7.921010367764229],[117,226,70,-7.904193480947022],[117,226,71,-7.892541588053068],[117,226,72,-7.885838650482539],[117,226,73,-7.887007719693841],[117,226,74,-7.9466823506723765],[117,226,75,-7.991423751922856],[117,226,76,-8.029090881651364],[117,226,77,-8.043349957705002],[117,226,78,-8.038349073209435],[117,226,79,-8.020516798140525],[117,227,64,-8.087527919230162],[117,227,65,-8.089507622790011],[117,227,66,-8.070186732358037],[117,227,67,-8.034445564743276],[117,227,68,-7.998943485681968],[117,227,69,-7.967330265113279],[117,227,70,-7.948041371774385],[117,227,71,-7.937542693000327],[117,227,72,-7.9293663874445794],[117,227,73,-7.932188462245901],[117,227,74,-8.001343480914962],[117,227,75,-8.053462339197464],[117,227,76,-8.090975213043777],[117,227,77,-8.103785784714319],[117,227,78,-8.097249564904317],[117,227,79,-8.080531107613051],[117,228,64,-8.122919466201507],[117,228,65,-8.124089363319516],[117,228,66,-8.108141108152031],[117,228,67,-8.072578424255928],[117,228,68,-8.035395569593051],[117,228,69,-8.002737316436466],[117,228,70,-7.981925517910768],[117,228,71,-7.968374433429723],[117,228,72,-7.961279145772559],[117,228,73,-7.963513477080897],[117,228,74,-8.043724166541088],[117,228,75,-8.097679249585848],[117,228,76,-8.132764373403594],[117,228,77,-8.152684708218844],[117,228,78,-8.144723469010023],[117,228,79,-8.128269412854257],[117,229,64,-8.159907101186816],[117,229,65,-8.166499678193613],[117,229,66,-8.153642451208055],[117,229,67,-8.12130838088781],[117,229,68,-8.085643116518119],[117,229,69,-8.053116363225085],[117,229,70,-8.032766052326398],[117,229,71,-8.017262117541595],[117,229,72,-8.007305734001914],[117,229,73,-8.051964684789848],[117,229,74,-8.154342716757155],[117,229,75,-8.188970267222905],[117,229,76,-8.1979548696163],[117,229,77,-8.201694255211008],[117,229,78,-8.195951736307274],[117,229,79,-8.178446712504078],[117,230,64,-8.206450747638275],[117,230,65,-8.213012355454996],[117,230,66,-8.20156323706524],[117,230,67,-8.169714414022408],[117,230,68,-8.131132056474708],[117,230,69,-8.1018061994562],[117,230,70,-8.082647095088614],[117,230,71,-8.067437343368539],[117,230,72,-8.056726503839151],[117,230,73,-8.098239785270652],[117,230,74,-8.20808782903544],[117,230,75,-8.243273143132118],[117,230,76,-8.2510875712729],[117,230,77,-8.25895074710573],[117,230,78,-8.251616745991441],[117,230,79,-8.233761269862875],[117,231,64,-8.260499365136841],[117,231,65,-8.267164229415384],[117,231,66,-8.253573800760382],[117,231,67,-8.221690446585928],[117,231,68,-8.182960868225546],[117,231,69,-8.152601457396733],[117,231,70,-8.132955490943182],[117,231,71,-8.11716431131808],[117,231,72,-8.107760951070096],[117,231,73,-8.119937612851121],[117,231,74,-8.204201902692592],[117,231,75,-8.257207187955935],[117,231,76,-8.293576706104696],[117,231,77,-8.305859161899653],[117,231,78,-8.297939163456263],[117,231,79,-8.278503477773922],[117,232,64,-8.308956020946416],[117,232,65,-8.314657193373357],[117,232,66,-8.300488467014343],[117,232,67,-8.268352773934923],[117,232,68,-8.229670965126749],[117,232,69,-8.198887899394993],[117,232,70,-8.179329797299445],[117,232,71,-8.16523018883369],[117,232,72,-8.15604274833307],[117,232,73,-8.162967285345779],[117,232,74,-8.239008033251917],[117,232,75,-8.297535350299649],[117,232,76,-8.340851238664753],[117,232,77,-8.355034817749578],[117,232,78,-8.344810636465173],[117,232,79,-8.32695875357913],[117,233,64,-8.360855482722421],[117,233,65,-8.3628635367595],[117,233,66,-8.348790985786426],[117,233,67,-8.314297060170928],[117,233,68,-8.278039756040654],[117,233,69,-8.247100712063595],[117,233,70,-8.227506791340502],[117,233,71,-8.212019569838487],[117,233,72,-8.203027586637107],[117,233,73,-8.214113156450992],[117,233,74,-8.275802344699509],[117,233,75,-8.333929149278498],[117,233,76,-8.396306338058315],[117,233,77,-8.404735593447244],[117,233,78,-8.39821542214664],[117,233,79,-8.379818274557552],[117,234,64,-8.41612823673282],[117,234,65,-8.418486111631301],[117,234,66,-8.399529309777728],[117,234,67,-8.364399678030434],[117,234,68,-8.327961901743176],[117,234,69,-8.3003864468887],[117,234,70,-8.278439537268088],[117,234,71,-8.262552415810331],[117,234,72,-8.25237137902224],[117,234,73,-8.244791286411713],[117,234,74,-8.296428972397305],[117,234,75,-8.352617612337674],[117,234,76,-8.424994375279518],[117,234,77,-8.443606627087659],[117,234,78,-8.438740055303517],[117,234,79,-8.422209820042356],[117,235,64,-8.467510383390472],[117,235,65,-8.470880812837645],[117,235,66,-8.44968887908156],[117,235,67,-8.413855590379512],[117,235,68,-8.377886240819059],[117,235,69,-8.351522645957445],[117,235,70,-8.327592270035483],[117,235,71,-8.311222060208909],[117,235,72,-8.299317025166618],[117,235,73,-8.291254070105776],[117,235,74,-8.296570031809765],[117,235,75,-8.305138021095766],[117,235,76,-8.36450720270145],[117,235,77,-8.457855965355403],[117,235,78,-8.494953827634008],[117,235,79,-8.480192300497992],[117,236,64,-8.535804217102847],[117,236,65,-8.539836662589265],[117,236,66,-8.515848377213066],[117,236,67,-8.480653395278134],[117,236,68,-8.443826374417283],[117,236,69,-8.417641230379928],[117,236,70,-8.394184289812895],[117,236,71,-8.378149896037847],[117,236,72,-8.36416560506485],[117,236,73,-8.35907744708615],[117,236,74,-8.362661083476288],[117,236,75,-8.371575338874237],[117,236,76,-8.426334176297747],[117,236,77,-8.509428008723596],[117,236,78,-8.551859591612134],[117,236,79,-8.534749621398824],[117,237,64,-8.587108367338256],[117,237,65,-8.587328238785929],[117,237,66,-8.560858712353953],[117,237,67,-8.524148646127765],[117,237,68,-8.485653335909463],[117,237,69,-8.45820217689487],[117,237,70,-8.436564279878128],[117,237,71,-8.419313062283864],[117,237,72,-8.408003908249961],[117,237,73,-8.404709638041107],[117,237,74,-8.409974700031455],[117,237,75,-8.451787010688557],[117,237,76,-8.504078006690238],[117,237,77,-8.58625292352191],[117,237,78,-8.597015939046434],[117,237,79,-8.582723762829845],[117,238,64,-8.634722501957931],[117,238,65,-8.633999877909632],[117,238,66,-8.608811281664941],[117,238,67,-8.57198289827684],[117,238,68,-8.534464238770834],[117,238,69,-8.506029157349731],[117,238,70,-8.48351383670316],[117,238,71,-8.467203398673384],[117,238,72,-8.456464309688418],[117,238,73,-8.453784638138288],[117,238,74,-8.473571568583242],[117,238,75,-8.525012076063334],[117,238,76,-8.582273899225594],[117,238,77,-8.6440048132088],[117,238,78,-8.640069097920197],[117,238,79,-8.626821886930317],[117,239,64,-8.685778971231075],[117,239,65,-8.686751064296134],[117,239,66,-8.663241502406633],[117,239,67,-8.626680498289428],[117,239,68,-8.589674459175638],[117,239,69,-8.557819156072282],[117,239,70,-8.53465174745329],[117,239,71,-8.518517050355133],[117,239,72,-8.506335546835546],[117,239,73,-8.505580225645758],[117,239,74,-8.513447576809048],[117,239,75,-8.555951761076804],[117,239,76,-8.610145197747824],[117,239,77,-8.667134141075909],[117,239,78,-8.683603485276524],[117,239,79,-8.668481488035765],[117,240,64,-8.733088958198561],[117,240,65,-8.73099437426939],[117,240,66,-8.711093448502778],[117,240,67,-8.672738196964035],[117,240,68,-8.637155001483642],[117,240,69,-8.6046928982953],[117,240,70,-8.58267295259823],[117,240,71,-8.567300384971363],[117,240,72,-8.553771162583665],[117,240,73,-8.555195827505191],[117,240,74,-8.560694721555231],[117,240,75,-8.594482603664096],[117,240,76,-8.648012555059127],[117,240,77,-8.708156451884802],[117,240,78,-8.731532842394081],[117,240,79,-8.717331040760643],[117,241,64,-8.778498160258017],[117,241,65,-8.780222280684175],[117,241,66,-8.762073068983225],[117,241,67,-8.725356870318462],[117,241,68,-8.688989740065747],[117,241,69,-8.656978881753373],[117,241,70,-8.637212158721601],[117,241,71,-8.620453083161545],[117,241,72,-8.606037606094093],[117,241,73,-8.607617439458998],[117,241,74,-8.611416715549208],[117,241,75,-8.614206692334914],[117,241,76,-8.615557146606912],[117,241,77,-8.618103538787809],[117,241,78,-8.60786958336476],[117,241,79,-8.6883851620315],[117,242,64,-8.831166815142696],[117,242,65,-8.831199851882175],[117,242,66,-8.812347840314539],[117,242,67,-8.772932859187899],[117,242,68,-8.736955278204919],[117,242,69,-8.70891270009106],[117,242,70,-8.690015747600096],[117,242,71,-8.66946455156849],[117,242,72,-8.658865890023936],[117,242,73,-8.659760455865461],[117,242,74,-8.661362146922151],[117,242,75,-8.665709273971533],[117,242,76,-8.667813913830226],[117,242,77,-8.671330795517587],[117,242,78,-8.660330023012174],[117,242,79,-8.73957885411882],[117,243,64,-8.878339196550833],[117,243,65,-8.877492653801673],[117,243,66,-8.854490018215888],[117,243,67,-8.820715562556058],[117,243,68,-8.785152754289987],[117,243,69,-8.754142740905102],[117,243,70,-8.737981360674757],[117,243,71,-8.717399741690311],[117,243,72,-8.707188802681197],[117,243,73,-8.706254847568175],[117,243,74,-8.708079586132172],[117,243,75,-8.712581329344276],[117,243,76,-8.718074913755403],[117,243,77,-8.722762019657196],[117,243,78,-8.709164233773578],[117,243,79,-8.801800690282105],[117,244,64,-8.911999990209413],[117,244,65,-8.910218213695527],[117,244,66,-8.88609541179127],[117,244,67,-8.855843786732231],[117,244,68,-8.817874855968213],[117,244,69,-8.786829125298858],[117,244,70,-8.771670586593833],[117,244,71,-8.754320362631967],[117,244,72,-8.740814591477765],[117,244,73,-8.737478069864055],[117,244,74,-8.74252929955297],[117,244,75,-8.745305446701414],[117,244,76,-8.753333444433363],[117,244,77,-8.756897255487143],[117,244,78,-8.747019644170871],[117,244,79,-8.82689468475643],[117,245,64,-8.956508980812101],[117,245,65,-8.955419720600448],[117,245,66,-8.932747258073405],[117,245,67,-8.899275726813599],[117,245,68,-8.862365422368526],[117,245,69,-8.83159132294641],[117,245,70,-8.816755833833243],[117,245,71,-8.801588932560584],[117,245,72,-8.788143085398941],[117,245,73,-8.784034588611382],[117,245,74,-8.78763793959837],[117,245,75,-8.795302014646358],[117,245,76,-8.802008889140199],[117,245,77,-8.805547811192508],[117,245,78,-8.796739476202223],[117,245,79,-8.864507502578377],[117,246,64,-9.00078021342888],[117,246,65,-9.000167316060509],[117,246,66,-8.977176539664177],[117,246,67,-8.942028075652917],[117,246,68,-8.90765352728581],[117,246,69,-8.876976602122502],[117,246,70,-8.86314585753726],[117,246,71,-8.845981473805171],[117,246,72,-8.832331879039813],[117,246,73,-8.82909448075633],[117,246,74,-8.836350217419369],[117,246,75,-8.844045205950668],[117,246,76,-8.850772102124392],[117,246,77,-8.854632873841354],[117,246,78,-8.852392087821634],[117,246,79,-8.935300293943113],[117,247,64,-9.050631750752318],[117,247,65,-9.049192323033957],[117,247,66,-9.027205843503747],[117,247,67,-8.98904626034952],[117,247,68,-8.955440873470565],[117,247,69,-8.924064008433735],[117,247,70,-8.908872753288092],[117,247,71,-8.89224689260379],[117,247,72,-8.879275549555313],[117,247,73,-8.877226144894358],[117,247,74,-8.884279623352779],[117,247,75,-8.891424529542935],[117,247,76,-8.89635427541297],[117,247,77,-8.901508137773261],[117,247,78,-8.893038347534667],[117,247,79,-8.969527001901048],[117,248,64,-9.093062288211321],[117,248,65,-9.089902261008072],[117,248,66,-9.070712811198982],[117,248,67,-9.034983111556409],[117,248,68,-8.999331436439906],[117,248,69,-8.969143223102131],[117,248,70,-8.952567152028633],[117,248,71,-8.93536884251311],[117,248,72,-8.9247246255909],[117,248,73,-8.92380367535011],[117,248,74,-8.93401307550958],[117,248,75,-8.939416694247695],[117,248,76,-8.943608505839498],[117,248,77,-8.949700079000438],[117,248,78,-8.941155565159674],[117,248,79,-9.020178077090371],[117,249,64,-9.134713864135698],[117,249,65,-9.130267920002415],[117,249,66,-9.108256029579827],[117,249,67,-9.071128758558737],[117,249,68,-9.035209791460009],[117,249,69,-9.005572395605508],[117,249,70,-8.988184921828243],[117,249,71,-8.971923999423941],[117,249,72,-8.961250790182548],[117,249,73,-8.964712384062357],[117,249,74,-8.972808665487028],[117,249,75,-8.977533067697774],[117,249,76,-8.984754990954036],[117,249,77,-8.995791816637094],[117,249,78,-9.010369644752663],[117,249,79,-9.1149427932704],[117,250,64,-9.183855606565526],[117,250,65,-9.180978600627935],[117,250,66,-9.156838019887623],[117,250,67,-9.119925287807755],[117,250,68,-9.085645245692504],[117,250,69,-9.054278537772674],[117,250,70,-9.038523153361695],[117,250,71,-9.020884140360307],[117,250,72,-9.008904054820437],[117,250,73,-9.012795714201593],[117,250,74,-9.020054007252527],[117,250,75,-9.027783229630428],[117,250,76,-9.034924881879235],[117,250,77,-9.047823969600705],[117,250,78,-9.095765289949448],[117,250,79,-9.143957067719958],[117,251,64,-9.230297729773472],[117,251,65,-9.225948087583516],[117,251,66,-9.2025007820031],[117,251,67,-9.163297398115452],[117,251,68,-9.130687981528084],[117,251,69,-9.102724242181866],[117,251,70,-9.083947016849814],[117,251,71,-9.068982098329338],[117,251,72,-9.056074482383401],[117,251,73,-9.055519045348738],[117,251,74,-9.063495256396052],[117,251,75,-9.074647817483125],[117,251,76,-9.085305863565718],[117,251,77,-9.093172222269763],[117,251,78,-9.142231614055538],[117,251,79,-9.195986648112607],[117,252,64,-9.268218944500138],[117,252,65,-9.262652424554414],[117,252,66,-9.23699732623598],[117,252,67,-9.200066629196282],[117,252,68,-9.165384783321521],[117,252,69,-9.136368863623469],[117,252,70,-9.119181421284354],[117,252,71,-9.104876656740222],[117,252,72,-9.090420154780844],[117,252,73,-9.088719105777601],[117,252,74,-9.095923411413752],[117,252,75,-9.108547189419614],[117,252,76,-9.12263407849105],[117,252,77,-9.1314452739881],[117,252,78,-9.187807005294522],[117,252,79,-9.242733140598592],[117,253,64,-9.31795096973531],[117,253,65,-9.311416156883425],[117,253,66,-9.29019390492387],[117,253,67,-9.25690390760508],[117,253,68,-9.22407051094143],[117,253,69,-9.19535934566104],[117,253,70,-9.174876986463158],[117,253,71,-9.162017576270607],[117,253,72,-9.148676464450038],[117,253,73,-9.14653766609988],[117,253,74,-9.15188768643906],[117,253,75,-9.16164853186257],[117,253,76,-9.176680410371715],[117,253,77,-9.179519750644506],[117,253,78,-9.201047907870553],[117,253,79,-9.233586977310864],[117,254,64,-9.280184789460176],[117,254,65,-9.283502088014103],[117,254,66,-9.268491532079667],[117,254,67,-9.243015844735982],[117,254,68,-9.218241363549426],[117,254,69,-9.195555229383329],[117,254,70,-9.186108974883723],[117,254,71,-9.180985873372789],[117,254,72,-9.179734075568184],[117,254,73,-9.185455573307769],[117,254,74,-9.19959126180465],[117,254,75,-9.218214592953846],[117,254,76,-9.240658098240447],[117,254,77,-9.252068980279047],[117,254,78,-9.267737894396701],[117,254,79,-9.288470820750355],[117,255,64,-9.325811156319459],[117,255,65,-9.330055720702502],[117,255,66,-9.315768727411067],[117,255,67,-9.289796667472407],[117,255,68,-9.264311864383677],[117,255,69,-9.243127022961497],[117,255,70,-9.23117124701105],[117,255,71,-9.227313714379644],[117,255,72,-9.229867616542531],[117,255,73,-9.235135724969554],[117,255,74,-9.24872551536501],[117,255,75,-9.266748819381775],[117,255,76,-9.287684495154519],[117,255,77,-9.298862909534103],[117,255,78,-9.306264577845448],[117,255,79,-9.327272629788952],[117,256,64,-9.371374887435758],[117,256,65,-9.37659482481604],[117,256,66,-9.361692569725296],[117,256,67,-9.335157351908661],[117,256,68,-9.311694895486621],[117,256,69,-9.29189161428264],[117,256,70,-9.277723896211803],[117,256,71,-9.27553218158292],[117,256,72,-9.2773290593749],[117,256,73,-9.282042040999642],[117,256,74,-9.296144140887678],[117,256,75,-9.315712847636759],[117,256,76,-9.335771494456628],[117,256,77,-9.348910690082981],[117,256,78,-9.357234929479358],[117,256,79,-9.379770424397563],[117,257,64,-9.41569609966008],[117,257,65,-9.423407884766975],[117,257,66,-9.41051982482642],[117,257,67,-9.383490867853437],[117,257,68,-9.358851278612615],[117,257,69,-9.336885261057766],[117,257,70,-9.325867248632798],[117,257,71,-9.322232806686323],[117,257,72,-9.322793970369679],[117,257,73,-9.32979377786839],[117,257,74,-9.342948968955339],[117,257,75,-9.362006354924283],[117,257,76,-9.382894464031175],[117,257,77,-9.399234889898741],[117,257,78,-9.433666897871625],[117,257,79,-9.465182730525905],[117,258,64,-9.468109720587305],[117,258,65,-9.47617264216838],[117,258,66,-9.462375913872137],[117,258,67,-9.435111122398748],[117,258,68,-9.408795678907907],[117,258,69,-9.385640254103354],[117,258,70,-9.374545329114152],[117,258,71,-9.371742299544316],[117,258,72,-9.370637115407245],[117,258,73,-9.37807243947688],[117,258,74,-9.394469751895313],[117,258,75,-9.412935861288442],[117,258,76,-9.43198115260004],[117,258,77,-9.448423062397827],[117,258,78,-9.483068074622956],[117,258,79,-9.522503069887838],[117,259,64,-9.516335404395566],[117,259,65,-9.521836199354658],[117,259,66,-9.509799360967],[117,259,67,-9.480842424678073],[117,259,68,-9.453659441010597],[117,259,69,-9.43042240815937],[117,259,70,-9.423962756475602],[117,259,71,-9.418468660463892],[117,259,72,-9.417449869367381],[117,259,73,-9.425619268098124],[117,259,74,-9.443252392026658],[117,259,75,-9.460204867952784],[117,259,76,-9.479357253559183],[117,259,77,-9.49568605143846],[117,259,78,-9.509257329559127],[117,259,79,-9.56943671001198],[117,260,64,-9.644830261407055],[117,260,65,-9.653031626651082],[117,260,66,-9.642918937216761],[117,260,67,-9.614208015004474],[117,260,68,-9.588568024579343],[117,260,69,-9.571295963767946],[117,260,70,-9.567153247653032],[117,260,71,-9.566114034536865],[117,260,72,-9.565403999885662],[117,260,73,-9.572142330984093],[117,260,74,-9.590391555856792],[117,260,75,-9.606993938489213],[117,260,76,-9.623936355621945],[117,260,77,-9.639946458843886],[117,260,78,-9.648464653990978],[117,260,79,-9.672523518695638],[117,261,64,-9.688443223340059],[117,261,65,-9.699855699063834],[117,261,66,-9.691582236555002],[117,261,67,-9.66497316761043],[117,261,68,-9.638272309108041],[117,261,69,-9.618551665671793],[117,261,70,-9.613172255512083],[117,261,71,-9.609137225032361],[117,261,72,-9.604883913387352],[117,261,73,-9.610228162263532],[117,261,74,-9.626111901844741],[117,261,75,-9.645930875764872],[117,261,76,-9.664497417757874],[117,261,77,-9.685244755218013],[117,261,78,-9.714478744007039],[117,261,79,-9.735915240912323],[117,262,64,-9.741609114327478],[117,262,65,-9.752437979213322],[117,262,66,-9.743015486229805],[117,262,67,-9.716274525470348],[117,262,68,-9.687424624726109],[117,262,69,-9.667249209369915],[117,262,70,-9.660952471931074],[117,262,71,-9.655612224735423],[117,262,72,-9.650986131363398],[117,262,73,-9.657350268219824],[117,262,74,-9.6742336098958],[117,262,75,-9.694510037905271],[117,262,76,-9.712137290353267],[117,262,77,-9.732368548893007],[117,262,78,-9.778031883808053],[117,262,79,-9.808188698884527],[117,263,64,-9.786886934188754],[117,263,65,-9.79670105853258],[117,263,66,-9.788353305429634],[117,263,67,-9.759485848932272],[117,263,68,-9.731551187057384],[117,263,69,-9.712213710988774],[117,263,70,-9.705772633589687],[117,263,71,-9.698542085503112],[117,263,72,-9.696191936436879],[117,263,73,-9.702320308865934],[117,263,74,-9.722306281064226],[117,263,75,-9.74275845903881],[117,263,76,-9.758127504646115],[117,263,77,-9.780714639522778],[117,263,78,-9.826529225002092],[117,263,79,-9.857602620007016],[117,264,64,-9.828577779313962],[117,264,65,-9.842393716020556],[117,264,66,-9.832332912544944],[117,264,67,-9.801822712048015],[117,264,68,-9.775572351462928],[117,264,69,-9.756783462193136],[117,264,70,-9.749633113989901],[117,264,71,-9.745127337873871],[117,264,72,-9.740715380735912],[117,264,73,-9.748234229259],[117,264,74,-9.771054313134568],[117,264,75,-9.79092740318356],[117,264,76,-9.806899288477604],[117,264,77,-9.82678133276902],[117,264,78,-9.877667252978833],[117,264,79,-9.912879612634661],[117,265,64,-9.874870158329443],[117,265,65,-9.885083705683236],[117,265,66,-9.871436231800132],[117,265,67,-9.838755607206423],[117,265,68,-9.81058244855582],[117,265,69,-9.794897003928371],[117,265,70,-9.789625113991272],[117,265,71,-9.789379529399636],[117,265,72,-9.792536814367159],[117,265,73,-9.806198970242669],[117,265,74,-9.839604056751314],[117,265,75,-9.920429611933448],[117,265,76,-9.961286147040745],[117,265,77,-9.981508246447392],[117,265,78,-9.998141898027388],[117,265,79,-9.980223297990428],[117,266,64,-9.920960832747886],[117,266,65,-9.930789166396108],[117,266,66,-9.920060492150515],[117,266,67,-9.885060922683968],[117,266,68,-9.85749792673319],[117,266,69,-9.844751224860305],[117,266,70,-9.839230095825803],[117,266,71,-9.835647364499582],[117,266,72,-9.84160247815504],[117,266,73,-9.855925023723056],[117,266,74,-9.879432029307118],[117,266,75,-9.965310736853505],[117,266,76,-10.009128718149702],[117,266,77,-10.036544912990891],[117,266,78,-10.053149946166306],[117,266,79,-10.033110196528154],[117,267,64,-9.963918091228008],[117,267,65,-9.974087752874855],[117,267,66,-9.963450558351356],[117,267,67,-9.92948362439894],[117,267,68,-9.90030923608011],[117,267,69,-9.888138941632437],[117,267,70,-9.883730313582943],[117,267,71,-9.882493016029434],[117,267,72,-9.886948514287534],[117,267,73,-9.902984545833434],[117,267,74,-9.930911103595157],[117,267,75,-10.0201712623189],[117,267,76,-10.063940813839022],[117,267,77,-10.098166959984688],[117,267,78,-10.106154087544757],[117,267,79,-10.08585715526868],[117,268,64,-10.00192443677053],[117,268,65,-10.010284754536693],[117,268,66,-9.999539783276301],[117,268,67,-9.963550264373435],[117,268,68,-9.932729098318951],[117,268,69,-9.91804301862845],[117,268,70,-9.913637546462644],[117,268,71,-9.912672501724177],[117,268,72,-9.915178026034727],[117,268,73,-9.933905090586764],[117,268,74,-9.964433485896173],[117,268,75,-10.028916639367232],[117,268,76,-10.085423828897397],[117,268,77,-10.126083485222368],[117,268,78,-10.137173946426985],[117,268,79,-10.11845866830784],[117,269,64,-10.045611931954532],[117,269,65,-10.055031771172091],[117,269,66,-10.041112978273345],[117,269,67,-10.007402760711111],[117,269,68,-9.979083888398877],[117,269,69,-9.961982084177816],[117,269,70,-9.954345367680626],[117,269,71,-9.953816373439125],[117,269,72,-9.958173127948815],[117,269,73,-9.977565656935536],[117,269,74,-10.015587084095857],[117,269,75,-10.068055309748589],[117,269,76,-10.137024975295637],[117,269,77,-10.173387512563622],[117,269,78,-10.182731936695408],[117,269,79,-10.165454079896817],[117,270,64,-10.094437990050492],[117,270,65,-10.104291116402567],[117,270,66,-10.089865271523534],[117,270,67,-10.05861535359256],[117,270,68,-10.02772670796777],[117,270,69,-10.009287482013102],[117,270,70,-9.999022372747408],[117,270,71,-9.998926031212255],[117,270,72,-10.00292252488053],[117,270,73,-10.025046903177223],[117,270,74,-10.057294460996387],[117,270,75,-10.104819617309264],[117,270,76,-10.17184075705617],[117,270,77,-10.212178699588636],[117,270,78,-10.211193440878597],[117,270,79,-10.196356290884516],[117,271,64,-10.137976231549453],[117,271,65,-10.145755133779174],[117,271,66,-10.131643084836158],[117,271,67,-10.103508225263669],[117,271,68,-10.073488301965636],[117,271,69,-10.054533117585478],[117,271,70,-10.04309126439493],[117,271,71,-10.04309875765853],[117,271,72,-10.04745140624049],[117,271,73,-10.070651646617751],[117,271,74,-10.093793784573705],[117,271,75,-10.141564977014001],[117,271,76,-10.209746118921355],[117,271,77,-10.257943186060059],[117,271,78,-10.25458765156501],[117,271,79,-10.23924797303019],[117,272,64,-10.184349867763006],[117,272,65,-10.18871493825894],[117,272,66,-10.175242611817987],[117,272,67,-10.147808321175752],[117,272,68,-10.11926245718663],[117,272,69,-10.09809956202309],[117,272,70,-10.087871137585145],[117,272,71,-10.084934805769437],[117,272,72,-10.089928503117802],[117,272,73,-10.113714955388511],[117,272,74,-10.138211700068224],[117,272,75,-10.190272372599257],[117,272,76,-10.256951370813535],[117,272,77,-10.304546101902957],[117,272,78,-10.301413603680867],[117,272,79,-10.282472795240016],[117,273,64,-10.229769738505285],[117,273,65,-10.232013796170074],[117,273,66,-10.217218176375022],[117,273,67,-10.1869407365227],[117,273,68,-10.157701796009883],[117,273,69,-10.137034626102988],[117,273,70,-10.128520498686305],[117,273,71,-10.122805992572449],[117,273,72,-10.132306096589378],[117,273,73,-10.155728740802381],[117,273,74,-10.181426014189329],[117,273,75,-10.209842015481332],[117,273,76,-10.23449939954744],[117,273,77,-10.247578957753198],[117,273,78,-10.244050863068587],[117,273,79,-10.228637696152514],[117,274,64,-10.274312233822316],[117,274,65,-10.282121743409144],[117,274,66,-10.266308438586536],[117,274,67,-10.23439589242127],[117,274,68,-10.203052837696209],[117,274,69,-10.181368771814782],[117,274,70,-10.17546728354874],[117,274,71,-10.17023673708125],[117,274,72,-10.178720464229261],[117,274,73,-10.202097483836623],[117,274,74,-10.227329389420152],[117,274,75,-10.25555292150434],[117,274,76,-10.278544453512938],[117,274,77,-10.288778709146515],[117,274,78,-10.286559151519995],[117,274,79,-10.271626842757213],[117,275,64,-10.319749599411052],[117,275,65,-10.327856934320732],[117,275,66,-10.310057311438014],[117,275,67,-10.27540946661809],[117,275,68,-10.245182547305657],[117,275,69,-10.226862796970025],[117,275,70,-10.21937288506339],[117,275,71,-10.216726240340389],[117,275,72,-10.225390120946678],[117,275,73,-10.244774172009581],[117,275,74,-10.270803102246195],[117,275,75,-10.3050863026111],[117,275,76,-10.329602969201243],[117,275,77,-10.339085569506468],[117,275,78,-10.336753449892988],[117,275,79,-10.31990196080973],[117,276,64,-10.354211959128548],[117,276,65,-10.360866676892046],[117,276,66,-10.3440358346439],[117,276,67,-10.309526991122148],[117,276,68,-10.277024116103119],[117,276,69,-10.257650377137926],[117,276,70,-10.25091443606802],[117,276,71,-10.248811754001045],[117,276,72,-10.255795319957501],[117,276,73,-10.274631139915499],[117,276,74,-10.299587843660193],[117,276,75,-10.351244767118994],[117,276,76,-10.380362393222908],[117,276,77,-10.394231813177676],[117,276,78,-10.38869078901963],[117,276,79,-10.370313283665698],[117,277,64,-10.393454900417694],[117,277,65,-10.404253082179546],[117,277,66,-10.391682986338095],[117,277,67,-10.36171579134959],[117,277,68,-10.330607288187078],[117,277,69,-10.309503873364052],[117,277,70,-10.301488494289579],[117,277,71,-10.296588049982297],[117,277,72,-10.300985884034509],[117,277,73,-10.316601092679091],[117,277,74,-10.345312815345066],[117,277,75,-10.398300946193203],[117,277,76,-10.426760739564845],[117,277,77,-10.440677404038803],[117,277,78,-10.434428773604871],[117,277,79,-10.414297400714853],[117,278,64,-10.440623609707954],[117,278,65,-10.45329541411217],[117,278,66,-10.442881701955981],[117,278,67,-10.411719626756502],[117,278,68,-10.378718382740448],[117,278,69,-10.35876384245955],[117,278,70,-10.349577423627485],[117,278,71,-10.34366409779359],[117,278,72,-10.34513960416822],[117,278,73,-10.359560760450837],[117,278,74,-10.39014441997461],[117,278,75,-10.436468208917201],[117,278,76,-10.464065925374314],[117,278,77,-10.476325698951612],[117,278,78,-10.469584220847203],[117,278,79,-10.450340411786739],[117,279,64,-10.483095035739892],[117,279,65,-10.497936000693947],[117,279,66,-10.487616039631938],[117,279,67,-10.456996305790726],[117,279,68,-10.424188202666066],[117,279,69,-10.403504886568989],[117,279,70,-10.392811207704494],[117,279,71,-10.387969957971215],[117,279,72,-10.387733057283942],[117,279,73,-10.401758240136616],[117,279,74,-10.431080684544447],[117,279,75,-10.480493163107022],[117,279,76,-10.509231686575077],[117,279,77,-10.520170476151575],[117,279,78,-10.51374148144025],[117,279,79,-10.492458432416404],[117,280,64,-10.530079330846378],[117,280,65,-10.544002531282173],[117,280,66,-10.533166593316242],[117,280,67,-10.499762907073059],[117,280,68,-10.469488206027238],[117,280,69,-10.44784015514942],[117,280,70,-10.437567555876482],[117,280,71,-10.43429644664266],[117,280,72,-10.433613563720233],[117,280,73,-10.44797761355583],[117,280,74,-10.478386535027576],[117,280,75,-10.52626988603164],[117,280,76,-10.55510247305004],[117,280,77,-10.566212990563209],[117,280,78,-10.55908874986459],[117,280,79,-10.537840276460969],[117,281,64,-10.578576562231303],[117,281,65,-10.591492814812222],[117,281,66,-10.577798056516942],[117,281,67,-10.544681562616107],[117,281,68,-10.512987646638932],[117,281,69,-10.491112544006855],[117,281,70,-10.483091014400467],[117,281,71,-10.479786236412082],[117,281,72,-10.481143521525583],[117,281,73,-10.496228705224036],[117,281,74,-10.53156739778676],[117,281,75,-10.583943103721294],[117,281,76,-10.6114407478767],[117,281,77,-10.62194199806565],[117,281,78,-10.615077172725924],[117,281,79,-10.594087044245015],[117,282,64,-10.631360411651407],[117,282,65,-10.643482939256703],[117,282,66,-10.627628752596085],[117,282,67,-10.591506068990428],[117,282,68,-10.55991884810922],[117,282,69,-10.53904067783326],[117,282,70,-10.53180852536372],[117,282,71,-10.52735410414746],[117,282,72,-10.52981021589873],[117,282,73,-10.545397090573951],[117,282,74,-10.569721467181889],[117,282,75,-10.633087360635628],[117,282,76,-10.66702532446132],[117,282,77,-10.676522936785604],[117,282,78,-10.671621711605182],[117,282,79,-10.650731079130871],[117,283,64,-10.680541598696506],[117,283,65,-10.690361810535276],[117,283,66,-10.675606073056406],[117,283,67,-10.639734498489274],[117,283,68,-10.60733781690925],[117,283,69,-10.586585254716105],[117,283,70,-10.579785175234964],[117,283,71,-10.57416541870087],[117,283,72,-10.576378010491675],[117,283,73,-10.593597852583821],[117,283,74,-10.613817070882472],[117,283,75,-10.677677323713501],[117,283,76,-10.717272255822389],[117,283,77,-10.728158312133013],[117,283,78,-10.721488954456106],[117,283,79,-10.702507306785094],[117,284,64,-10.746787348050052],[117,284,65,-10.755981158623172],[117,284,66,-10.740565945578687],[117,284,67,-10.705052441121143],[117,284,68,-10.672822199723688],[117,284,69,-10.651364492932258],[117,284,70,-10.644168328204357],[117,284,71,-10.638234288442389],[117,284,72,-10.639118994363544],[117,284,73,-10.655873258500273],[117,284,74,-10.678679177928128],[117,284,75,-10.730975186035803],[117,284,76,-10.76566937207458],[117,284,77,-10.775656648517584],[117,284,78,-10.769574862637452],[117,284,79,-10.75256855574378],[117,285,64,-10.799292352615405],[117,285,65,-10.809249080637894],[117,285,66,-10.791358744573188],[117,285,67,-10.754897372812346],[117,285,68,-10.722878408683776],[117,285,69,-10.699807543430603],[117,285,70,-10.688851893383937],[117,285,71,-10.685251723246886],[117,285,72,-10.688212063275449],[117,285,73,-10.704911647411915],[117,285,74,-10.72963874403122],[117,285,75,-10.777089900250434],[117,285,76,-10.81054806691947],[117,285,77,-10.819338374265094],[117,285,78,-10.814657803826234],[117,285,79,-10.795899243642488],[117,286,64,-10.849365190666429],[117,286,65,-10.85718859631111],[117,286,66,-10.839594395242928],[117,286,67,-10.802898435599257],[117,286,68,-10.768361948208701],[117,286,69,-10.746623479320448],[117,286,70,-10.734987209467256],[117,286,71,-10.729716455724908],[117,286,72,-10.734714096558626],[117,286,73,-10.751181890039707],[117,286,74,-10.772614206800345],[117,286,75,-10.820436520082666],[117,286,76,-10.856232205279587],[117,286,77,-10.866909212950613],[117,286,78,-10.861492568394542],[117,286,79,-10.84146168121182],[117,287,64,-10.89445392332514],[117,287,65,-10.899591007073722],[117,287,66,-10.885179157665014],[117,287,67,-10.847361783620983],[117,287,68,-10.814401093870432],[117,287,69,-10.793258992971806],[117,287,70,-10.780723631762804],[117,287,71,-10.776147428812845],[117,287,72,-10.782179593645735],[117,287,73,-10.799806900095401],[117,287,74,-10.819324820301691],[117,287,75,-10.862019338523982],[117,287,76,-10.8983702162953],[117,287,77,-10.90951182971297],[117,287,78,-10.90558393437709],[117,287,79,-10.884391756818363],[117,288,64,-10.94006195466317],[117,288,65,-10.94486886120055],[117,288,66,-10.929113794775834],[117,288,67,-10.894389707167996],[117,288,68,-10.860305052481959],[117,288,69,-10.838973371018227],[117,288,70,-10.826077336513753],[117,288,71,-10.821613132002318],[117,288,72,-10.825110582409186],[117,288,73,-10.845026999135275],[117,288,74,-10.865375701692988],[117,288,75,-10.904439342718772],[117,288,76,-10.9424323313033],[117,288,77,-10.95408341625198],[117,288,78,-10.952615042518616],[117,288,79,-10.930636684256323],[117,289,64,-10.974642372190035],[117,289,65,-10.984236397701654],[117,289,66,-10.970705037612541],[117,289,67,-10.935664713363911],[117,289,68,-10.90398000296445],[117,289,69,-10.880921102219613],[117,289,70,-10.86725141323841],[117,289,71,-10.864555998424335],[117,289,72,-10.866524491585043],[117,289,73,-10.885785311749983],[117,289,74,-10.910265065780477],[117,289,75,-10.966390380758376],[117,289,76,-10.995089403225798],[117,289,77,-11.005585995568802],[117,289,78,-11.00402688730182],[117,289,79,-10.982827339646114],[117,290,64,-11.019716138393601],[117,290,65,-11.031082248052966],[117,290,66,-11.016767637251695],[117,290,67,-10.98299942499188],[117,290,68,-10.95215884034932],[117,290,69,-10.928209784800783],[117,290,70,-10.915211686796118],[117,290,71,-10.911189248433889],[117,290,72,-10.9134550002278],[117,290,73,-10.932868157012935],[117,290,74,-10.955193065547029],[117,290,75,-11.004797331779208],[117,290,76,-11.028737071949957],[117,290,77,-11.041636527458882],[117,290,78,-11.037237690355393],[117,290,79,-11.020180180907133],[117,291,64,-11.063084149458744],[117,291,65,-11.076838300805493],[117,291,66,-11.060620473929028],[117,291,67,-11.028367173459163],[117,291,68,-10.99397070804228],[117,291,69,-10.972048257561388],[117,291,70,-10.961407349697893],[117,291,71,-10.955576356607333],[117,291,72,-10.959897159692005],[117,291,73,-10.97738320241118],[117,291,74,-10.999477919305594],[117,291,75,-11.05250545562406],[117,291,76,-11.078977642476634],[117,291,77,-11.091021951304535],[117,291,78,-11.08584134700511],[117,291,79,-11.069940049508556],[117,292,64,-11.086755884629433],[117,292,65,-11.100263608493119],[117,292,66,-11.087177020658546],[117,292,67,-11.05675450126959],[117,292,68,-11.023728227966512],[117,292,69,-11.002919802561028],[117,292,70,-10.995326934376548],[117,292,71,-10.990371209801761],[117,292,72,-10.994883874079097],[117,292,73,-11.012103597136923],[117,292,74,-11.035072083134141],[117,292,75,-11.08278202949616],[117,292,76,-11.114238699589814],[117,292,77,-11.126228856843603],[117,292,78,-11.1228538250725],[117,292,79,-11.105421368168505],[117,293,64,-11.13140726175065],[117,293,65,-11.143622510249298],[117,293,66,-11.131738091005982],[117,293,67,-11.10113033161388],[117,293,68,-11.068920594628002],[117,293,69,-11.048766264282941],[117,293,70,-11.040311119950792],[117,293,71,-11.03512201777879],[117,293,72,-11.038954389162111],[117,293,73,-11.057440233176326],[117,293,74,-11.079457734430685],[117,293,75,-11.124450305803583],[117,293,76,-11.158789181323872],[117,293,77,-11.170281726267767],[117,293,78,-11.167076426422772],[117,293,79,-11.150582186973747],[117,294,64,-11.176449472803471],[117,294,65,-11.188065192992434],[117,294,66,-11.176192146045095],[117,294,67,-11.146604641975108],[117,294,68,-11.112306028304628],[117,294,69,-11.089671759406524],[117,294,70,-11.082603694565663],[117,294,71,-11.077317193234755],[117,294,72,-11.082337855579391],[117,294,73,-11.099013589197654],[117,294,74,-11.123348116195176],[117,294,75,-11.171873084488215],[117,294,76,-11.218201814903058],[117,294,77,-11.231091136259174],[117,294,78,-11.229237934475513],[117,294,79,-11.212615635293707],[117,295,64,-11.223160672418961],[117,295,65,-11.233110964577245],[117,295,66,-11.221032370096964],[117,295,67,-11.192577271303275],[117,295,68,-11.157377360338],[117,295,69,-11.132439673063633],[117,295,70,-11.125478922213473],[117,295,71,-11.122244858075575],[117,295,72,-11.127020802392517],[117,295,73,-11.141386273991651],[117,295,74,-11.167316719590143],[117,295,75,-11.190903558755316],[117,295,76,-11.22924790410658],[117,295,77,-11.273543676760468],[117,295,78,-11.274695772842556],[117,295,79,-11.256147522024383],[117,296,64,-11.266949397445003],[117,296,65,-11.27588250476319],[117,296,66,-11.265467125210018],[117,296,67,-11.237834417069298],[117,296,68,-11.201921035521545],[117,296,69,-11.176171707922002],[117,296,70,-11.169012056095532],[117,296,71,-11.168304325155933],[117,296,72,-11.170437961492311],[117,296,73,-11.185738380867573],[117,296,74,-11.212863812078115],[117,296,75,-11.238709958175544],[117,296,76,-11.272251889602984],[117,296,77,-11.314047584678566],[117,296,78,-11.319470489092565],[117,296,79,-11.30194259362664],[117,297,64,-11.317689821201068],[117,297,65,-11.323711640125465],[117,297,66,-11.312365541156101],[117,297,67,-11.283533133956837],[117,297,68,-11.247966969854245],[117,297,69,-11.223716675773783],[117,297,70,-11.218083149924855],[117,297,71,-11.213016807540868],[117,297,72,-11.213243607862506],[117,297,73,-11.229345184333923],[117,297,74,-11.255340996987128],[117,297,75,-11.280610144821434],[117,297,76,-11.323396977333244],[117,297,77,-11.370501612543908],[117,297,78,-11.370950924320397],[117,297,79,-11.35358361955892],[117,298,64,-11.364119037803873],[117,298,65,-11.36958895127705],[117,298,66,-11.35787159502957],[117,298,67,-11.326914816976036],[117,298,68,-11.293278203820769],[117,298,69,-11.268945717430189],[117,298,70,-11.264115384063077],[117,298,71,-11.258767010662702],[117,298,72,-11.258245245431196],[117,298,73,-11.275222095468473],[117,298,74,-11.301187764984428],[117,298,75,-11.324483410542086],[117,298,76,-11.357377281416829],[117,298,77,-11.403944132281588],[117,298,78,-11.415747854601495],[117,298,79,-11.396471372190087],[117,299,64,-11.406626628536861],[117,299,65,-11.414250906877493],[117,299,66,-11.399829675272164],[117,299,67,-11.368173391275064],[117,299,68,-11.336909784657971],[117,299,69,-11.314474668373936],[117,299,70,-11.308688696857526],[117,299,71,-11.30489331433237],[117,299,72,-11.304927258547698],[117,299,73,-11.31866030845508],[117,299,74,-11.346891338383566],[117,299,75,-11.370088085501841],[117,299,76,-11.399515513047952],[117,299,77,-11.448364702457143],[117,299,78,-11.464242463623961],[117,299,79,-11.44489155084785],[117,300,64,-11.452207307050687],[117,300,65,-11.459319880236647],[117,300,66,-11.443868357526618],[117,300,67,-11.407487606959462],[117,300,68,-11.374952964399752],[117,300,69,-11.352643282719573],[117,300,70,-11.347916451146151],[117,300,71,-11.34604168023086],[117,300,72,-11.349141497220602],[117,300,73,-11.364879835728997],[117,300,74,-11.390943598608184],[117,300,75,-11.414056282243605],[117,300,76,-11.429694925416126],[117,300,77,-11.45169382174986],[117,300,78,-11.45622389759771],[117,300,79,-11.448039496177282],[117,301,64,-11.495246173266514],[117,301,65,-11.503546257671912],[117,301,66,-11.48571897124786],[117,301,67,-11.449362481379008],[117,301,68,-11.418907140362855],[117,301,69,-11.397083087042189],[117,301,70,-11.392076283607533],[117,301,71,-11.39164436587523],[117,301,72,-11.396619471218786],[117,301,73,-11.415012602899106],[117,301,74,-11.440567054015833],[117,301,75,-11.461443644700894],[117,301,76,-11.475767466535824],[117,301,77,-11.497747989370989],[117,301,78,-11.503565754549621],[117,301,79,-11.493990336917243],[117,302,64,-11.535397034353162],[117,302,65,-11.544295987904226],[117,302,66,-11.527917206700172],[117,302,67,-11.491759268162783],[117,302,68,-11.460563844473148],[117,302,69,-11.439666607929295],[117,302,70,-11.432615525073262],[117,302,71,-11.429280938377222],[117,302,72,-11.439516913067589],[117,302,73,-11.457594505782968],[117,302,74,-11.483846170927151],[117,302,75,-11.50048289483336],[117,302,76,-11.516367722790745],[117,302,77,-11.537612787258414],[117,302,78,-11.543359735162362],[117,302,79,-11.533399557123024],[117,303,64,-11.579063652643947],[117,303,65,-11.586174664844297],[117,303,66,-11.571640927168595],[117,303,67,-11.53663375917379],[117,303,68,-11.50672168600596],[117,303,69,-11.485944927590165],[117,303,70,-11.475974991717178],[117,303,71,-11.471370297977407],[117,303,72,-11.481330295182154],[117,303,73,-11.50343311256444],[117,303,74,-11.526584778351015],[117,303,75,-11.546720247050603],[117,303,76,-11.563317922211153],[117,303,77,-11.584303654775177],[117,303,78,-11.589163188831435],[117,303,79,-11.578005911917177],[117,304,64,-11.625886919411245],[117,304,65,-11.632898793508144],[117,304,66,-11.618416125726888],[117,304,67,-11.583378840900208],[117,304,68,-11.55263198960362],[117,304,69,-11.530320419968493],[117,304,70,-11.51933433102986],[117,304,71,-11.516074953505704],[117,304,72,-11.524348422622108],[117,304,73,-11.545770423414435],[117,304,74,-11.569050586532276],[117,304,75,-11.590852959834386],[117,304,76,-11.609978601445189],[117,304,77,-11.631392264556425],[117,304,78,-11.636205820795562],[117,304,79,-11.623735919373988],[117,305,64,-11.673911625712158],[117,305,65,-11.682278013995004],[117,305,66,-11.667102666344945],[117,305,67,-11.631421624996463],[117,305,68,-11.595740000007924],[117,305,69,-11.573268920258831],[117,305,70,-11.560584617781538],[117,305,71,-11.559619183937778],[117,305,72,-11.565337596425229],[117,305,73,-11.588444877241296],[117,305,74,-11.610427492070192],[117,305,75,-11.63428436741417],[117,305,76,-11.65504327063842],[117,305,77,-11.677251160972219],[117,305,78,-11.68280034947604],[117,305,79,-11.670996436194608],[117,306,64,-11.725838430905346],[117,306,65,-11.73156331081804],[117,306,66,-11.715703903186286],[117,306,67,-11.681674975377174],[117,306,68,-11.643535173194433],[117,306,69,-11.619154069275345],[117,306,70,-11.606549683123308],[117,306,71,-11.604881887752901],[117,306,72,-11.610845954213964],[117,306,73,-11.630334308759162],[117,306,74,-11.65611732285945],[117,306,75,-11.678264069673158],[117,306,76,-11.701023746087019],[117,306,77,-11.722436238065278],[117,306,78,-11.72893475205391],[117,306,79,-11.715667079171928],[117,307,64,-11.774912927045612],[117,307,65,-11.779866807646286],[117,307,66,-11.76199679362397],[117,307,67,-11.72654678913229],[117,307,68,-11.689071655308773],[117,307,69,-11.663879464230066],[117,307,70,-11.651253340187994],[117,307,71,-11.650809313350827],[117,307,72,-11.656922977997842],[117,307,73,-11.674944755599606],[117,307,74,-11.700321654135509],[117,307,75,-11.723989355090565],[117,307,76,-11.746098532320396],[117,307,77,-11.766028310236468],[117,307,78,-11.771390347374137],[117,307,79,-11.759526304986643],[117,308,64,-11.80679934465318],[117,308,65,-11.815483591315738],[117,308,66,-11.796780133184209],[117,308,67,-11.756451493925677],[117,308,68,-11.723607122751103],[117,308,69,-11.703586918871084],[117,308,70,-11.693594262460103],[117,308,71,-11.695471531671618],[117,308,72,-11.701040468248376],[117,308,73,-11.717656208590276],[117,308,74,-11.744169704237274],[117,308,75,-11.7700093580071],[117,308,76,-11.792775974671548],[117,308,77,-11.814190401050421],[117,308,78,-11.820873221690222],[117,308,79,-11.811545887708764],[117,309,64,-11.856121889475364],[117,309,65,-11.86464485022274],[117,309,66,-11.843308840655151],[117,309,67,-11.80171008993601],[117,309,68,-11.76820958881155],[117,309,69,-11.74649419305814],[117,309,70,-11.740058957295483],[117,309,71,-11.741368655043189],[117,309,72,-11.747061069415922],[117,309,73,-11.763481326685323],[117,309,74,-11.790806932019095],[117,309,75,-11.816440758004514],[117,309,76,-11.838133950438012],[117,309,77,-11.859495705874723],[117,309,78,-11.867000963073785],[117,309,79,-11.861798319741716],[117,310,64,-11.89715911097418],[117,310,65,-11.907370633175875],[117,310,66,-11.887305303542702],[117,310,67,-11.84297563693877],[117,310,68,-11.808812837260794],[117,310,69,-11.78519069497831],[117,310,70,-11.77815851535543],[117,310,71,-11.78047272144446],[117,310,72,-11.787393109965095],[117,310,73,-11.802294511878666],[117,310,74,-11.828916049274431],[117,310,75,-11.854507350233035],[117,310,76,-11.878012755318277],[117,310,77,-11.898405626407339],[117,310,78,-11.905507720114532],[117,310,79,-11.9025116255565],[117,311,64,-11.942469345677122],[117,311,65,-11.950499493497517],[117,311,66,-11.931715932412786],[117,311,67,-11.891175772013119],[117,311,68,-11.854039362322693],[117,311,69,-11.830478790164243],[117,311,70,-11.823469113768747],[117,311,71,-11.82527023288107],[117,311,72,-11.831795594901143],[117,311,73,-11.84687493765424],[117,311,74,-11.870791638846582],[117,311,75,-11.900685527608948],[117,311,76,-11.923442052940661],[117,311,77,-11.944474911651668],[117,311,78,-11.954451063194526],[117,311,79,-11.948776509722492],[117,312,64,-11.984709946969986],[117,312,65,-11.993992126567926],[117,312,66,-11.978211084451875],[117,312,67,-11.937967633721083],[117,312,68,-11.903067088149024],[117,312,69,-11.876921676952055],[117,312,70,-11.869842326182209],[117,312,71,-11.870775388439165],[117,312,72,-11.8748348160747],[117,312,73,-11.887788226576614],[117,312,74,-11.91299184737725],[117,312,75,-11.941074693928076],[117,312,76,-11.965057632417635],[117,312,77,-11.991535228748816],[117,312,78,-12.005062088862323],[117,312,79,-12.001003347109087],[117,313,64,-12.029330870888144],[117,313,65,-12.038294158966446],[117,313,66,-12.02409123451026],[117,313,67,-11.98543276540905],[117,313,68,-11.948843862889362],[117,313,69,-11.924020542533356],[117,313,70,-11.917496104857685],[117,313,71,-11.915046953880669],[117,313,72,-11.920463856838667],[117,313,73,-11.933958266048608],[117,313,74,-11.957734335007954],[117,313,75,-11.986556903735798],[117,313,76,-12.009911974609635],[117,313,77,-12.037234308666127],[117,313,78,-12.051411640943636],[117,313,79,-12.046009303066059],[117,314,64,-12.078778966292075],[117,314,65,-12.089036786324538],[117,314,66,-12.07336705325362],[117,314,67,-12.035203128536743],[117,314,68,-11.997644260545723],[117,314,69,-11.971602337962226],[117,314,70,-11.965163142885427],[117,314,71,-11.96282573937631],[117,314,72,-11.96742342457364],[117,314,73,-11.980610796814938],[117,314,74,-12.005775010385026],[117,314,75,-12.033022592201634],[117,314,76,-12.05612120170864],[117,314,77,-12.082617946105698],[117,314,78,-12.097748402353854],[117,314,79,-12.096580802687544],[117,315,64,-12.126597347114583],[117,315,65,-12.1365834792166],[117,315,66,-12.121607053312474],[117,315,67,-12.082735277906613],[117,315,68,-12.044996890456785],[117,315,69,-12.019831542051765],[117,315,70,-12.011088916597998],[117,315,71,-12.006664493512439],[117,315,72,-12.012367919131353],[117,315,73,-12.027285496600918],[117,315,74,-12.052946141706729],[117,315,75,-12.076774712395341],[117,315,76,-12.10273510126772],[117,315,77,-12.129607358764739],[117,315,78,-12.143110698631896],[117,315,79,-12.142583058106899],[117,316,64,-12.18460165961746],[117,316,65,-12.1903327194268],[117,316,66,-12.17345837028277],[117,316,67,-12.131155433301021],[117,316,68,-12.09177728713257],[117,316,69,-12.065837749841187],[117,316,70,-12.054463105607525],[117,316,71,-12.05086072541747],[117,316,72,-12.055197104885867],[117,316,73,-12.069910320937668],[117,316,74,-12.094479576565304],[117,316,75,-12.11623756498752],[117,316,76,-12.141119923164462],[117,316,77,-12.169347230038348],[117,316,78,-12.185515106329925],[117,316,79,-12.182978412009096],[117,317,64,-12.232918099461532],[117,317,65,-12.238102308519911],[117,317,66,-12.219023153782254],[117,317,67,-12.177656318722336],[117,317,68,-12.140030367985919],[117,317,69,-12.111922819160071],[117,317,70,-12.098592644284897],[117,317,71,-12.095950349785664],[117,317,72,-12.10222321457352],[117,317,73,-12.11785007796648],[117,317,74,-12.139032023893597],[117,317,75,-12.164161130531804],[117,317,76,-12.187442507961514],[117,317,77,-12.214441182502387],[117,317,78,-12.2302092706404],[117,317,79,-12.230995655674983],[117,318,64,-12.275456947022032],[117,318,65,-12.279249106102979],[117,318,66,-12.259565596535673],[117,318,67,-12.216273442316064],[117,318,68,-12.179538016840747],[117,318,69,-12.151198884713633],[117,318,70,-12.135323852313876],[117,318,71,-12.132662429024148],[117,318,72,-12.139765945654432],[117,318,73,-12.156805177594938],[117,318,74,-12.181112075066473],[117,318,75,-12.203739415481934],[117,318,76,-12.225992698556333],[117,318,77,-12.252101949652833],[117,318,78,-12.268995542361601],[117,318,79,-12.265745230437592],[117,319,64,-12.325741583679417],[117,319,65,-12.326824261722498],[117,319,66,-12.307177435159915],[117,319,67,-12.264596735502876],[117,319,68,-12.226290523903804],[117,319,69,-12.197956044581373],[117,319,70,-12.181974972318066],[117,319,71,-12.178054476112994],[117,319,72,-12.184965716976695],[117,319,73,-12.203455130853461],[117,319,74,-12.229607972351932],[117,319,75,-12.251592465529754],[117,319,76,-12.274267933937836],[117,319,77,-12.300767235509992],[117,319,78,-12.313586733571274],[117,319,79,-12.30556356221243],[118,-64,64,22.865773649420426],[118,-64,65,22.927562271139713],[118,-64,66,22.98188838584956],[118,-64,67,23.01957467578283],[118,-64,68,23.042757444172597],[118,-64,69,23.05546476562946],[118,-64,70,23.07459792781596],[118,-64,71,23.10091835104039],[118,-64,72,23.14974159339862],[118,-64,73,23.224278891551947],[118,-64,74,23.300123560359886],[118,-64,75,23.369225565286175],[118,-64,76,23.440344501651758],[118,-64,77,23.513426479800987],[118,-64,78,23.580353319455757],[118,-64,79,23.632407179014233],[118,-63,64,22.672701742840434],[118,-63,65,22.735552037161163],[118,-63,66,22.79149665560611],[118,-63,67,22.83035137460234],[118,-63,68,22.85320026316367],[118,-63,69,22.86639817734692],[118,-63,70,22.885862427615123],[118,-63,71,22.912595942048984],[118,-63,72,22.964060085937042],[118,-63,73,23.039276352692802],[118,-63,74,23.114736635001698],[118,-63,75,23.18139985538424],[118,-63,76,23.25089805362661],[118,-63,77,23.32667275216855],[118,-63,78,23.391220406826136],[118,-63,79,23.441699257547107],[118,-62,64,22.483757394200687],[118,-62,65,22.548723460142234],[118,-62,66,22.60512702374733],[118,-62,67,22.64202677401428],[118,-62,68,22.666072299514912],[118,-62,69,22.67943085970598],[118,-62,70,22.695529233817513],[118,-62,71,22.724124400422944],[118,-62,72,22.778373186089468],[118,-62,73,22.849122935020816],[118,-62,74,22.927747607241894],[118,-62,75,22.989669222384272],[118,-62,76,23.061892357187954],[118,-62,77,23.13531976178435],[118,-62,78,23.197659860433696],[118,-62,79,23.251658960081418],[118,-61,64,22.293978422867017],[118,-61,65,22.357528639889626],[118,-61,66,22.412386273853382],[118,-61,67,22.448704980724525],[118,-61,68,22.470354986081297],[118,-61,69,22.48621363600594],[118,-61,70,22.502294427739923],[118,-61,71,22.53566642873],[118,-61,72,22.58647036250985],[118,-61,73,22.65591375708669],[118,-61,74,22.732570916698332],[118,-61,75,22.79696901372006],[118,-61,76,22.868368707769644],[118,-61,77,22.938549458108707],[118,-61,78,23.00277674837466],[118,-61,79,23.057323171066738],[118,-60,64,22.106235232829874],[118,-60,65,22.166916929162294],[118,-60,66,22.221652314247905],[118,-60,67,22.259254024012233],[118,-60,68,22.27960598148553],[118,-60,69,22.297574252630472],[118,-60,70,22.31548009906854],[118,-60,71,22.348551816348486],[118,-60,72,22.398098504606512],[118,-60,73,22.466955762272917],[118,-60,74,22.54232702039476],[118,-60,75,22.608910690573143],[118,-60,76,22.678847691655594],[118,-60,77,22.7470020890399],[118,-60,78,22.813376467569118],[118,-60,79,22.868695187353463],[118,-59,64,21.932690589105455],[118,-59,65,21.992740639121973],[118,-59,66,22.042160686322973],[118,-59,67,22.079806106034592],[118,-59,68,22.098768669337506],[118,-59,69,22.11376903359025],[118,-59,70,22.13343279942459],[118,-59,71,22.164116719485406],[118,-59,72,22.206985135326136],[118,-59,73,22.276831478857357],[118,-59,74,22.3503675748592],[118,-59,75,22.41644405062115],[118,-59,76,22.485318155631596],[118,-59,77,22.554679004361738],[118,-59,78,22.6246999703122],[118,-59,79,22.68183390129564],[118,-58,64,21.746500498619366],[118,-58,65,21.80511115100708],[118,-58,66,21.854075082865062],[118,-58,67,21.891923591133047],[118,-58,68,21.910766313397783],[118,-58,69,21.927220901526677],[118,-58,70,21.94940385219366],[118,-58,71,21.977422155502666],[118,-58,72,22.018183146322226],[118,-58,73,22.087499999707187],[118,-58,74,22.16050343815597],[118,-58,75,22.226458986901815],[118,-58,76,22.293323579161402],[118,-58,77,22.363965921505475],[118,-58,78,22.435966578663365],[118,-58,79,22.4949174817997],[118,-57,64,21.55093467286402],[118,-57,65,21.610336123325922],[118,-57,66,21.658965624383203],[118,-57,67,21.696674614568398],[118,-57,68,21.716502165379335],[118,-57,69,21.735348086248997],[118,-57,70,21.75829640015014],[118,-57,71,21.784324734908573],[118,-57,72,21.82522942690615],[118,-57,73,21.895253897341167],[118,-57,74,21.967548421080494],[118,-57,75,22.03464982539202],[118,-57,76,22.100673088680775],[118,-57,77,22.17001253088431],[118,-57,78,22.246212500085942],[118,-57,79,22.30631956035181],[118,-56,64,21.36286422527856],[118,-56,65,21.41939567648492],[118,-56,66,21.470769415583327],[118,-56,67,21.507911768578612],[118,-56,68,21.527720546669727],[118,-56,69,21.546332406731906],[118,-56,70,21.569642685550996],[118,-56,71,21.592840118073955],[118,-56,72,21.63431159556557],[118,-56,73,21.704649724864485],[118,-56,74,21.779712899545732],[118,-56,75,21.84600078842682],[118,-56,76,21.91224653681407],[118,-56,77,21.982573485428304],[118,-56,78,22.056656548265526],[118,-56,79,22.117070356840053],[118,-55,64,21.175483116351064],[118,-55,65,21.232298777447838],[118,-55,66,21.279871601162892],[118,-55,67,21.31584655882465],[118,-55,68,21.335881587191327],[118,-55,69,21.35416986480857],[118,-55,70,21.37612989874996],[118,-55,71,21.401839032654415],[118,-55,72,21.44393964509414],[118,-55,73,21.51547892706009],[118,-55,74,21.590422021724986],[118,-55,75,21.657699546376875],[118,-55,76,21.72323938042408],[118,-55,77,21.794882710813408],[118,-55,78,21.866502159592144],[118,-55,79,21.92410728553795],[118,-54,64,20.98626647208367],[118,-54,65,21.04247248070595],[118,-54,66,21.089107305994233],[118,-54,67,21.122852547671933],[118,-54,68,21.14458045857291],[118,-54,69,21.163437996647588],[118,-54,70,21.18378303714286],[118,-54,71,21.211241812951833],[118,-54,72,21.2524673533806],[118,-54,73,21.323925234209593],[118,-54,74,21.402048478671965],[118,-54,75,21.467148871307568],[118,-54,76,21.534311193009533],[118,-54,77,21.607336093707044],[118,-54,78,21.675645570440427],[118,-54,79,21.732132041718458],[118,-53,64,20.793226173578176],[118,-53,65,20.84678857863913],[118,-53,66,20.894663453811678],[118,-53,67,20.926506503834393],[118,-53,68,20.948411323912705],[118,-53,69,20.96979453526734],[118,-53,70,20.986858614184836],[118,-53,71,21.013727881985755],[118,-53,72,21.057430617735257],[118,-53,73,21.127555890802245],[118,-53,74,21.207022445353452],[118,-53,75,21.27489510935886],[118,-53,76,21.340118469585285],[118,-53,77,21.413792865778404],[118,-53,78,21.483656398578677],[118,-53,79,21.536376640455064],[118,-52,64,20.601535882773888],[118,-52,65,20.655592535743395],[118,-52,66,20.70285181659374],[118,-52,67,20.733606690611815],[118,-52,68,20.757693656749684],[118,-52,69,20.77844808452956],[118,-52,70,20.796934437678132],[118,-52,71,20.823779525078898],[118,-52,72,20.869235943025437],[118,-52,73,20.939008578110077],[118,-52,74,21.01668266714401],[118,-52,75,21.087147746276266],[118,-52,76,21.151370009882402],[118,-52,77,21.22378555514063],[118,-52,78,21.29478028149858],[118,-52,79,21.346867264011813],[118,-51,64,20.398917639563425],[118,-51,65,20.445640293573856],[118,-51,66,20.487117114950625],[118,-51,67,20.513954035588974],[118,-51,68,20.538207976580335],[118,-51,69,20.560244647332045],[118,-51,70,20.57993825164789],[118,-51,71,20.609731289448916],[118,-51,72,20.657104642743413],[118,-51,73,20.728964334052062],[118,-51,74,20.807000553964464],[118,-51,75,20.878527610620832],[118,-51,76,20.945171696349743],[118,-51,77,21.02553076638073],[118,-51,78,21.102237945832954],[118,-51,79,21.164915175639926],[118,-50,64,20.210762762372198],[118,-50,65,20.256527778368906],[118,-50,66,20.29565444362649],[118,-50,67,20.32306075693386],[118,-50,68,20.348099728305172],[118,-50,69,20.369814575785696],[118,-50,70,20.392278505427026],[118,-50,71,20.423092834837952],[118,-50,72,20.466554236492225],[118,-50,73,20.53940548830781],[118,-50,74,20.61811847914716],[118,-50,75,20.68762515608173],[118,-50,76,20.75411585068701],[118,-50,77,20.834229758872365],[118,-50,78,20.909906452469876],[118,-50,79,20.973221168124233],[118,-49,64,20.015044454896866],[118,-49,65,20.060923935844734],[118,-49,66,20.09998656083782],[118,-49,67,20.129422722017736],[118,-49,68,20.153860706547547],[118,-49,69,20.175425830193294],[118,-49,70,20.199272648031602],[118,-49,71,20.22969722953006],[118,-49,72,20.271798989034078],[118,-49,73,20.348629181161385],[118,-49,74,20.426821525224405],[118,-49,75,20.495115229513175],[118,-49,76,20.561387359536997],[118,-49,77,20.63974383310695],[118,-49,78,20.718753740755933],[118,-49,79,20.781509344235662],[118,-48,64,19.84274280365507],[118,-48,65,19.873028221535602],[118,-48,66,19.91274705348994],[118,-48,67,19.940563130308202],[118,-48,68,19.96617067979811],[118,-48,69,19.987626486230194],[118,-48,70,20.011067241701216],[118,-48,71,20.04064191699751],[118,-48,72,20.08592802520852],[118,-48,73,20.160461381622618],[118,-48,74,20.234364212113793],[118,-48,75,20.305369280921155],[118,-48,76,20.372479906511366],[118,-48,77,20.450181185185492],[118,-48,78,20.529232549663202],[118,-48,79,20.59301261531699],[118,-47,64,19.676645488494348],[118,-47,65,19.689913810008825],[118,-47,66,19.72808426457337],[118,-47,67,19.76297544031479],[118,-47,68,19.790461480474637],[118,-47,69,19.811850970189532],[118,-47,70,19.835771490723783],[118,-47,71,19.86151968267625],[118,-47,72,19.904118762129066],[118,-47,73,19.974060361117555],[118,-47,74,20.048148596349993],[118,-47,75,20.115479571135676],[118,-47,76,20.18743042762666],[118,-47,77,20.260082494809108],[118,-47,78,20.336132332442144],[118,-47,79,20.39688503857221],[118,-46,64,19.444245468592097],[118,-46,65,19.494690103268848],[118,-46,66,19.540115284064957],[118,-46,67,19.578017403590504],[118,-46,68,19.605863833103648],[118,-46,69,19.62493155245641],[118,-46,70,19.646879362654808],[118,-46,71,19.677060292660627],[118,-46,72,19.717821625784126],[118,-46,73,19.7867255381807],[118,-46,74,19.859127500561765],[118,-46,75,19.92254340365502],[118,-46,76,19.995708134938774],[118,-46,77,20.069140769825466],[118,-46,78,20.145665961088273],[118,-46,79,20.208266116654833],[118,-45,64,19.26831490112264],[118,-45,65,19.3031904806822],[118,-45,66,19.348962914355827],[118,-45,67,19.387837751216804],[118,-45,68,19.417237963003988],[118,-45,69,19.43639931286407],[118,-45,70,19.456849265645182],[118,-45,71,19.486453635022517],[118,-45,72,19.527950555398146],[118,-45,73,19.593150428724964],[118,-45,74,19.664188276861985],[118,-45,75,19.728687558781413],[118,-45,76,19.800103844626555],[118,-45,77,19.874655653734116],[118,-45,78,19.95119237078379],[118,-45,79,20.013643438276254],[118,-44,64,19.135349595722957],[118,-44,65,19.16399441457182],[118,-44,66,19.173191307259074],[118,-44,67,19.206605986096644],[118,-44,68,19.233793870585473],[118,-44,69,19.25134292537178],[118,-44,70,19.267044678943147],[118,-44,71,19.294210310060315],[118,-44,72,19.3358091932817],[118,-44,73,19.399656181262213],[118,-44,74,19.468605764985956],[118,-44,75,19.532302411606512],[118,-44,76,19.600636318538974],[118,-44,77,19.676516182366818],[118,-44,78,19.75488899587679],[118,-44,79,19.818822188183624],[118,-43,64,18.93965109879937],[118,-43,65,18.975071881965174],[118,-43,66,18.99598245092276],[118,-43,67,19.03140387259287],[118,-43,68,19.059197649673514],[118,-43,69,19.07666932966565],[118,-43,70,19.091721826699526],[118,-43,71,19.11815552925752],[118,-43,72,19.159279003656717],[118,-43,73,19.222545147170468],[118,-43,74,19.289665827508724],[118,-43,75,19.352738744884814],[118,-43,76,19.417136095989072],[118,-43,77,19.489352136449867],[118,-43,78,19.56650773066553],[118,-43,79,19.63031469407644],[118,-42,64,18.81164519565324],[118,-42,65,18.848354685735185],[118,-42,66,18.828859331016755],[118,-42,67,18.846427382384217],[118,-42,68,18.8723358993247],[118,-42,69,18.89191766078803],[118,-42,70,18.906207614755896],[118,-42,71,18.93344253155648],[118,-42,72,18.97290168431692],[118,-42,73,19.03410135451452],[118,-42,74,19.101167537654725],[118,-42,75,19.16112457411877],[118,-42,76,19.223439746457196],[118,-42,77,19.297395068838266],[118,-42,78,19.37347597231959],[118,-42,79,19.43946001866053],[118,-41,64,18.68419038684886],[118,-41,65,18.718982446917195],[118,-41,66,18.69377980205714],[118,-41,67,18.6558980645146],[118,-41,68,18.680331415146053],[118,-41,69,18.69933321783336],[118,-41,70,18.71566175919682],[118,-41,71,18.74178956434455],[118,-41,72,18.77991409907535],[118,-41,73,18.839895451319578],[118,-41,74,18.90790770798224],[118,-41,75,18.967929254188583],[118,-41,76,19.029502617390875],[118,-41,77,19.105308797977386],[118,-41,78,19.180499025130008],[118,-41,79,19.248750236716614],[118,-40,64,18.56025228770279],[118,-40,65,18.56729453042658],[118,-40,66,18.53732838471347],[118,-40,67,18.471402020031437],[118,-40,68,18.495929528260632],[118,-40,69,18.5117224140159],[118,-40,70,18.52892323164188],[118,-40,71,18.552361249004647],[118,-40,72,18.592164077147345],[118,-40,73,18.651232847184534],[118,-40,74,18.71760621005282],[118,-40,75,18.780277166188945],[118,-40,76,18.840408397762072],[118,-40,77,18.91332925585223],[118,-40,78,18.98788053441591],[118,-40,79,19.05655890724067],[118,-39,64,18.445372244028462],[118,-39,65,18.402930905546594],[118,-39,66,18.375989892909338],[118,-39,67,18.289896906611556],[118,-39,68,18.314700201802378],[118,-39,69,18.329282631683625],[118,-39,70,18.345416690865182],[118,-39,71,18.369167475202797],[118,-39,72,18.41046921046201],[118,-39,73,18.4693832115183],[118,-39,74,18.534754528509044],[118,-39,75,18.598640361712864],[118,-39,76,18.658645730141025],[118,-39,77,18.730112114785637],[118,-39,78,18.80237495911711],[118,-39,79,18.870303426156433],[118,-38,64,18.397398527548347],[118,-38,65,18.34017198569061],[118,-38,66,18.22214998412415],[118,-38,67,18.107719900037875],[118,-38,68,18.13133886271763],[118,-38,69,18.14323350203435],[118,-38,70,18.1590110269235],[118,-38,71,18.18278573339103],[118,-38,72,18.221571213515993],[118,-38,73,18.282654477157923],[118,-38,74,18.34791611161726],[118,-38,75,18.408750323957022],[118,-38,76,18.469683016608506],[118,-38,77,18.542398555336],[118,-38,78,18.612001997037993],[118,-38,79,18.681659643900193],[118,-37,64,18.273907395209488],[118,-37,65,18.229194739291945],[118,-37,66,18.097377911400514],[118,-37,67,17.92155451715197],[118,-37,68,17.942012790164963],[118,-37,69,17.951847417784716],[118,-37,70,17.966807130980097],[118,-37,71,17.98980235407488],[118,-37,72,18.028640573019103],[118,-37,73,18.090058157245927],[118,-37,74,18.156425349943103],[118,-37,75,18.215882623416704],[118,-37,76,18.274714929680954],[118,-37,77,18.345930890688372],[118,-37,78,18.41984109592927],[118,-37,79,18.489640795980474],[118,-36,64,18.106237790920638],[118,-36,65,18.07538261235638],[118,-36,66,17.91759194588269],[118,-36,67,17.734154833604457],[118,-36,68,17.754244052111897],[118,-36,69,17.765322484670865],[118,-36,70,17.779714783758745],[118,-36,71,17.80037600434106],[118,-36,72,17.841055049381055],[118,-36,73,17.903531295430348],[118,-36,74,17.969074579061754],[118,-36,75,18.026583404895824],[118,-36,76,18.085249492760063],[118,-36,77,18.156607646589357],[118,-36,78,18.23150310640022],[118,-36,79,18.301879541234477],[118,-35,64,17.833493287721048],[118,-35,65,17.833743551542618],[118,-35,66,17.700101789119298],[118,-35,67,17.544917226523896],[118,-35,68,17.567000085733227],[118,-35,69,17.580288355248836],[118,-35,70,17.588346261614333],[118,-35,71,17.60917616966551],[118,-35,72,17.64602247554984],[118,-35,73,17.705514403966397],[118,-35,74,17.7719060017343],[118,-35,75,17.829882120099303],[118,-35,76,17.88837131292259],[118,-35,77,17.963942727500505],[118,-35,78,18.04228604585454],[118,-35,79,18.114451681134682],[118,-34,64,17.674372268107454],[118,-34,65,17.65863862384378],[118,-34,66,17.542214800447404],[118,-34,67,17.356768342335464],[118,-34,68,17.37983482808783],[118,-34,69,17.39229847408219],[118,-34,70,17.402052864043224],[118,-34,71,17.42334188922155],[118,-34,72,17.45837409522678],[118,-34,73,17.51652394046083],[118,-34,74,17.57572457126571],[118,-34,75,17.636570255475903],[118,-34,76,17.696242813837078],[118,-34,77,17.770450851482373],[118,-34,78,17.85160839939672],[118,-34,79,17.924511130612075],[118,-33,64,17.516493842634677],[118,-33,65,17.503347497964686],[118,-33,66,17.43313540661461],[118,-33,67,17.268446348875926],[118,-33,68,17.25937000477044],[118,-33,69,17.269202070729733],[118,-33,70,17.275428765602204],[118,-33,71,17.291881282807758],[118,-33,72,17.321201890591368],[118,-33,73,17.37301895305496],[118,-33,74,17.42467901946238],[118,-33,75,17.479533845382786],[118,-33,76,17.537681346648046],[118,-33,77,17.606669182533196],[118,-33,78,17.684560290894314],[118,-33,79,17.753946872649323],[118,-32,64,17.356884368971908],[118,-32,65,17.334430678183605],[118,-32,66,17.252655634440142],[118,-32,67,17.129512710555105],[118,-32,68,17.07183957917558],[118,-32,69,17.08583503696408],[118,-32,70,17.09267000244283],[118,-32,71,17.10660344494282],[118,-32,72,17.133985711718697],[118,-32,73,17.18513180228395],[118,-32,74,17.236864747543322],[118,-32,75,17.289075652111343],[118,-32,76,17.348984850370353],[118,-32,77,17.416368768466523],[118,-32,78,17.49444899686559],[118,-32,79,17.561979870477437],[118,-31,64,17.086873822414706],[118,-31,65,17.0924368777053],[118,-31,66,17.044374504086754],[118,-31,67,17.027710099733135],[118,-31,68,16.96490263949814],[118,-31,69,16.900239295023727],[118,-31,70,16.907025493147202],[118,-31,71,16.920934411215406],[118,-31,72,16.949026917973622],[118,-31,73,16.99603028523405],[118,-31,74,17.050641647809005],[118,-31,75,17.101881810405168],[118,-31,76,17.16153020101455],[118,-31,77,17.22847639269202],[118,-31,78,17.301944808194214],[118,-31,79,17.370036883302426],[118,-30,64,16.880135262692413],[118,-30,65,16.917760050365278],[118,-30,66,16.877266549059062],[118,-30,67,16.86041530593216],[118,-30,68,16.798106150136956],[118,-30,69,16.72388735752347],[118,-30,70,16.722611897924995],[118,-30,71,16.736346123980162],[118,-30,72,16.764837094049778],[118,-30,73,16.811202942873855],[118,-30,74,16.86621532335969],[118,-30,75,16.9143944542111],[118,-30,76,16.972017639074743],[118,-30,77,17.041764542594443],[118,-30,78,17.112213124816975],[118,-30,79,17.17397633868607],[118,-29,64,16.725604004833286],[118,-29,65,16.7822323623469],[118,-29,66,16.77209597851856],[118,-29,67,16.739082386338715],[118,-29,68,16.662840708692467],[118,-29,69,16.59476529142501],[118,-29,70,16.547059352637486],[118,-29,71,16.546158911334693],[118,-29,72,16.575042290804205],[118,-29,73,16.622818278337185],[118,-29,74,16.67523951192447],[118,-29,75,16.72403451698842],[118,-29,76,16.778790553223917],[118,-29,77,16.846852567848032],[118,-29,78,16.917715221171427],[118,-29,79,16.977309325368836],[118,-28,64,16.529350114758202],[118,-28,65,16.577305958727138],[118,-28,66,16.580137143985674],[118,-28,67,16.55934339180134],[118,-28,68,16.467836648230406],[118,-28,69,16.41235492036695],[118,-28,70,16.365856843471292],[118,-28,71,16.362704558918256],[118,-28,72,16.390213666873173],[118,-28,73,16.43778575187392],[118,-28,74,16.485825972198636],[118,-28,75,16.536037145890425],[118,-28,76,16.58810269999268],[118,-28,77,16.65483710571099],[118,-28,78,16.7268136589112],[118,-28,79,16.78626845551186],[118,-27,64,16.398431581755847],[118,-27,65,16.42410724707511],[118,-27,66,16.38817213037912],[118,-27,67,16.365195111030395],[118,-27,68,16.295452891684587],[118,-27,69,16.23422090095719],[118,-27,70,16.197552506632846],[118,-27,71,16.18727301702809],[118,-27,72,16.217036379577678],[118,-27,73,16.263357315918956],[118,-27,74,16.31280418337652],[118,-27,75,16.35878175914309],[118,-27,76,16.407160988277916],[118,-27,77,16.468001857420038],[118,-27,78,16.532105653864967],[118,-27,79,16.590390706974635],[118,-26,64,16.244767343891354],[118,-26,65,16.264184332476127],[118,-26,66,16.201199477074912],[118,-26,67,16.17126309763497],[118,-26,68,16.13099818157138],[118,-26,69,16.065750793365122],[118,-26,70,16.001779433777852],[118,-26,71,16.00203589483323],[118,-26,72,16.032147115218283],[118,-26,73,16.07724891155029],[118,-26,74,16.126441696427026],[118,-26,75,16.170482043710784],[118,-26,76,16.21883535084014],[118,-26,77,16.276339960315287],[118,-26,78,16.34144151690353],[118,-26,79,16.40012618446488],[118,-25,64,16.06085947375988],[118,-25,65,16.041706142998724],[118,-25,66,15.972540027186568],[118,-25,67,15.95533668598283],[118,-25,68,15.950090368625556],[118,-25,69,15.853427275319508],[118,-25,70,15.806012684436782],[118,-25,71,15.809074763586118],[118,-25,72,15.841498711704258],[118,-25,73,15.88859827410812],[118,-25,74,15.936385326101332],[118,-25,75,15.978453953907039],[118,-25,76,16.02586583918526],[118,-25,77,16.08332809963621],[118,-25,78,16.150033833888592],[118,-25,79,16.207751318578428],[118,-24,64,15.853723125144384],[118,-24,65,15.822700169951965],[118,-24,66,15.762807175957713],[118,-24,67,15.755061674982548],[118,-24,68,15.743867490669716],[118,-24,69,15.663547045808656],[118,-24,70,15.617744973331462],[118,-24,71,15.620911178248198],[118,-24,72,15.655918039388244],[118,-24,73,15.701188809269626],[118,-24,74,15.747690146435557],[118,-24,75,15.787757379269832],[118,-24,76,15.834321702292431],[118,-24,77,15.893428567666673],[118,-24,78,15.958736765520625],[118,-24,79,16.019600854719997],[118,-23,64,15.626410148519602],[118,-23,65,15.588947140908889],[118,-23,66,15.517143108637221],[118,-23,67,15.472881735037905],[118,-23,68,15.43599082927465],[118,-23,69,15.403094433753084],[118,-23,70,15.413835535338912],[118,-23,71,15.429641292490803],[118,-23,72,15.45771878826788],[118,-23,73,15.502152578728458],[118,-23,74,15.544141082896989],[118,-23,75,15.586010096362491],[118,-23,76,15.633563689196032],[118,-23,77,15.695936243385466],[118,-23,78,15.761040864262398],[118,-23,79,15.82768094512789],[118,-22,64,15.44766587646012],[118,-22,65,15.385277603650808],[118,-22,66,15.342915730294584],[118,-22,67,15.30115671920415],[118,-22,68,15.24628251531116],[118,-22,69,15.219947923118445],[118,-22,70,15.228703197207695],[118,-22,71,15.243878030651228],[118,-22,72,15.268331760524731],[118,-22,73,15.31116462142618],[118,-22,74,15.353864527442326],[118,-22,75,15.397436939395673],[118,-22,76,15.444219227365226],[118,-22,77,15.505348749049208],[118,-22,78,15.571655558500412],[118,-22,79,15.636218113322185],[118,-21,64,15.316785303076086],[118,-21,65,15.25223475340879],[118,-21,66,15.235738810934265],[118,-21,67,15.1999015375982],[118,-21,68,15.14476361280141],[118,-21,69,15.114217485958688],[118,-21,70,15.056642123500302],[118,-21,71,15.052919623817832],[118,-21,72,15.075423123630614],[118,-21,73,15.118068210011636],[118,-21,74,15.15898251252904],[118,-21,75,15.20266107505608],[118,-21,76,15.250425726673663],[118,-21,77,15.310734718406188],[118,-21,78,15.376910792732689],[118,-21,79,15.438034975013705],[118,-20,64,15.088644881117864],[118,-20,65,15.045427076716342],[118,-20,66,15.023720710857921],[118,-20,67,15.010802329496645],[118,-20,68,14.989776387367682],[118,-20,69,14.941661145177017],[118,-20,70,14.881949579944958],[118,-20,71,14.865721857400771],[118,-20,72,14.889846200326748],[118,-20,73,14.944558556484816],[118,-20,74,14.968422405260327],[118,-20,75,15.012258486812815],[118,-20,76,15.057554974698467],[118,-20,77,15.119567465196107],[118,-20,78,15.184470864380703],[118,-20,79,15.242228436038076],[118,-19,64,14.97951839095266],[118,-19,65,14.925662045142488],[118,-19,66,14.867877213863569],[118,-19,67,14.874671282350931],[118,-19,68,14.865118770305637],[118,-19,69,14.78248752346032],[118,-19,70,14.749429530542743],[118,-19,71,14.69411161620558],[118,-19,72,14.720864263917182],[118,-19,73,14.836380455763287],[118,-19,74,14.846322697564958],[118,-19,75,14.833403961286837],[118,-19,76,14.87711258836091],[118,-19,77,14.93733507279663],[118,-19,78,15.001609185977626],[118,-19,79,15.059319985443278],[118,-18,64,14.780337336728623],[118,-18,65,14.715359719135042],[118,-18,66,14.65591330706101],[118,-18,67,14.67890566771321],[118,-18,68,14.6620870174047],[118,-18,69,14.572725753715291],[118,-18,70,14.576735978152815],[118,-18,71,14.541938686476355],[118,-18,72,14.566034248539824],[118,-18,73,14.670325527788018],[118,-18,74,14.671899160944173],[118,-18,75,14.646815194448616],[118,-18,76,14.686958047265453],[118,-18,77,14.747689786890868],[118,-18,78,14.813088509438021],[118,-18,79,14.869167496379093],[118,-17,64,14.58081458074107],[118,-17,65,14.512120195613184],[118,-17,66,14.442994767723505],[118,-17,67,14.484590070551668],[118,-17,68,14.44654697722545],[118,-17,69,14.369154662904226],[118,-17,70,14.409381076512663],[118,-17,71,14.357341182844165],[118,-17,72,14.390141603356525],[118,-17,73,14.494984018149744],[118,-17,74,14.473272454698039],[118,-17,75,14.457028076622757],[118,-17,76,14.495238155459274],[118,-17,77,14.557709628791294],[118,-17,78,14.622162790162228],[118,-17,79,14.677999918234352],[118,-16,64,14.391570165312533],[118,-16,65,14.382728041358902],[118,-16,66,14.324503108633802],[118,-16,67,14.3686210685317],[118,-16,68,14.333636785415868],[118,-16,69,14.258259563241584],[118,-16,70,14.277553823184096],[118,-16,71,14.237170193284625],[118,-16,72,14.31499361484663],[118,-16,73,14.407731822023027],[118,-16,74,14.355463222592983],[118,-16,75,14.342961159515802],[118,-16,76,14.30821590884873],[118,-16,77,14.367537960630202],[118,-16,78,14.43164933290622],[118,-16,79,14.486616955572524],[118,-15,64,14.199174771140367],[118,-15,65,14.173714723626093],[118,-15,66,14.132089455418702],[118,-15,67,14.165987951399947],[118,-15,68,14.160121438989579],[118,-15,69,14.095103859321716],[118,-15,70,14.088347347868668],[118,-15,71,14.058202610063319],[118,-15,72,14.150005597981236],[118,-15,73,14.22339863659968],[118,-15,74,14.152317072392922],[118,-15,75,14.133528468165116],[118,-15,76,14.118193224928206],[118,-15,77,14.17381196614095],[118,-15,78,14.238681383283163],[118,-15,79,14.295032099468338],[118,-14,64,13.894795342032735],[118,-14,65,13.867863101237955],[118,-14,66,13.87094538510729],[118,-14,67,13.89226158595252],[118,-14,68,13.92072050060946],[118,-14,69,13.878273785689704],[118,-14,70,13.874011666706705],[118,-14,71,13.846994331473612],[118,-14,72,13.927305969196967],[118,-14,73,13.979921945591084],[118,-14,74,13.951402486592034],[118,-14,75,13.929531329117864],[118,-14,76,13.93183518507434],[118,-14,77,13.986112319852502],[118,-14,78,14.048385216712932],[118,-14,79,14.10756882646465],[118,-13,64,13.707728508205983],[118,-13,65,13.713729346532096],[118,-13,66,13.729219749002882],[118,-13,67,13.74514471556422],[118,-13,68,13.779783547887616],[118,-13,69,13.752388699303413],[118,-13,70,13.739434929330109],[118,-13,71,13.708023169027944],[118,-13,72,13.799383670111279],[118,-13,73,13.83126636175909],[118,-13,74,13.823838381895689],[118,-13,75,13.782838464038425],[118,-13,76,13.7370805094378],[118,-13,77,13.794749021661309],[118,-13,78,13.854674451573473],[118,-13,79,13.913616098625273],[118,-12,64,13.506917725823447],[118,-12,65,13.490353268954639],[118,-12,66,13.515738403376844],[118,-12,67,13.543305880419368],[118,-12,68,13.57307527347172],[118,-12,69,13.55749336867523],[118,-12,70,13.555069411315257],[118,-12,71,13.522737670590024],[118,-12,72,13.611673559765814],[118,-12,73,13.633744852339717],[118,-12,74,13.59939050830107],[118,-12,75,13.572004188821804],[118,-12,76,13.545737585500007],[118,-12,77,13.60442687819552],[118,-12,78,13.663192797705413],[118,-12,79,13.722525591379249],[118,-11,64,13.320469656138853],[118,-11,65,13.343194594724727],[118,-11,66,13.353610192623972],[118,-11,67,13.380783698439133],[118,-11,68,13.406862977515228],[118,-11,69,13.383184340035097],[118,-11,70,13.397236249486227],[118,-11,71,13.387721584074262],[118,-11,72,13.466987177550829],[118,-11,73,13.488761973310247],[118,-11,74,13.451297669564056],[118,-11,75,13.43282525576274],[118,-11,76,13.384844323091947],[118,-11,77,13.43609215242694],[118,-11,78,13.493044518507617],[118,-11,79,13.548863863720605],[118,-10,64,13.120206568927113],[118,-10,65,13.127592443258791],[118,-10,66,13.13817297369863],[118,-10,67,13.18872587882306],[118,-10,68,13.194222652108923],[118,-10,69,13.172750154714564],[118,-10,70,13.204937492074523],[118,-10,71,13.188987295127694],[118,-10,72,13.265624247192548],[118,-10,73,13.261201632360285],[118,-10,74,13.215734767236835],[118,-10,75,13.21144602069686],[118,-10,76,13.194860273435769],[118,-10,77,13.24566520598121],[118,-10,78,13.305167047243897],[118,-10,79,13.362323155850008],[118,-9,64,12.938432829167926],[118,-9,65,12.928315238974072],[118,-9,66,12.93861862437299],[118,-9,67,12.983204230797966],[118,-9,68,12.989744676946467],[118,-9,69,12.984631669117485],[118,-9,70,13.011518378128105],[118,-9,71,12.98657061849152],[118,-9,72,13.051469160613607],[118,-9,73,13.030508583574555],[118,-9,74,12.985201333929922],[118,-9,75,13.007091067854393],[118,-9,76,13.00677830246255],[118,-9,77,13.055530659181935],[118,-9,78,13.114577229224581],[118,-9,79,13.17713271877776],[118,-8,64,12.734181075510682],[118,-8,65,12.670909991870227],[118,-8,66,12.690214740348878],[118,-8,67,12.723396969906837],[118,-8,68,12.759094662208343],[118,-8,69,12.761251545666344],[118,-8,70,12.789608675566184],[118,-8,71,12.760145253562749],[118,-8,72,12.813827675623873],[118,-8,73,12.762366737084962],[118,-8,74,12.749982978923603],[118,-8,75,12.781614004471503],[118,-8,76,12.821758045727277],[118,-8,77,12.867249441618265],[118,-8,78,12.924027776541148],[118,-8,79,12.987222334085377],[118,-7,64,12.52411985275715],[118,-7,65,12.475463092332744],[118,-7,66,12.486253316355041],[118,-7,67,12.505359231269743],[118,-7,68,12.55392908397479],[118,-7,69,12.565555123278799],[118,-7,70,12.595688358204224],[118,-7,71,12.565370259137143],[118,-7,72,12.602661097185894],[118,-7,73,12.542791360410167],[118,-7,74,12.567282591872024],[118,-7,75,12.59606213218971],[118,-7,76,12.63334864142163],[118,-7,77,12.678676335610158],[118,-7,78,12.73484704628713],[118,-7,79,12.796949877212722],[118,-6,64,12.323989797582724],[118,-6,65,12.27206419088141],[118,-6,66,12.28621918103982],[118,-6,67,12.286108250181556],[118,-6,68,12.354044000520236],[118,-6,69,12.38838316068196],[118,-6,70,12.406946759086836],[118,-6,71,12.37787241405393],[118,-6,72,12.379336002165873],[118,-6,73,12.352951516959235],[118,-6,74,12.381282871234234],[118,-6,75,12.4090249432626],[118,-6,76,12.444943365203939],[118,-6,77,12.490792852996194],[118,-6,78,12.546460261673236],[118,-6,79,12.607095006933905],[118,-5,64,12.096651541595802],[118,-5,65,12.095953811370022],[118,-5,66,12.147931924122025],[118,-5,67,12.195322545192258],[118,-5,68,12.280114772848835],[118,-5,69,12.32534289174968],[118,-5,70,12.33261059728385],[118,-5,71,12.29599841947056],[118,-5,72,12.252448357442114],[118,-5,73,12.18755746014525],[118,-5,74,12.187417221989827],[118,-5,75,12.217807858234847],[118,-5,76,12.25104633913738],[118,-5,77,12.29788523004015],[118,-5,78,12.35357862287083],[118,-5,79,12.414341984704278],[118,-4,64,11.884864054847023],[118,-4,65,11.89479117076325],[118,-4,66,11.931454629274102],[118,-4,67,11.991237289616269],[118,-4,68,12.07727813819838],[118,-4,69,12.106379623513318],[118,-4,70,12.125599876716414],[118,-4,71,12.090411288798531],[118,-4,72,12.041352973283868],[118,-4,73,11.985977465723792],[118,-4,74,11.99641957834934],[118,-4,75,12.025563677471945],[118,-4,76,12.056514852585986],[118,-4,77,12.10262395664858],[118,-4,78,12.159076442898895],[118,-4,79,12.222131982914034],[118,-3,64,11.71370031047682],[118,-3,65,11.722096630141213],[118,-3,66,11.760409392862618],[118,-3,67,11.84536198310575],[118,-3,68,11.933321977451447],[118,-3,69,11.957666661517703],[118,-3,70,11.986066301264717],[118,-3,71,11.954979936521479],[118,-3,72,11.897740966721297],[118,-3,73,11.853251914301985],[118,-3,74,11.79992828983729],[118,-3,75,11.824447421844617],[118,-3,76,11.855531622678123],[118,-3,77,11.904468181691106],[118,-3,78,11.964882718457021],[118,-3,79,12.03107904048167],[118,-2,64,11.513786190128467],[118,-2,65,11.51587019764855],[118,-2,66,11.552906027406568],[118,-2,67,11.644396150755977],[118,-2,68,11.729620792784154],[118,-2,69,11.749342676529333],[118,-2,70,11.772833435969998],[118,-2,71,11.744666821048186],[118,-2,72,11.707987449085524],[118,-2,73,11.652393601803793],[118,-2,74,11.611136235113534],[118,-2,75,11.637007448822168],[118,-2,76,11.665840590376574],[118,-2,77,11.715957955692353],[118,-2,78,11.777025079464073],[118,-2,79,11.83863668584655],[118,-1,64,11.353745946847589],[118,-1,65,11.35070479935206],[118,-1,66,11.381308750730742],[118,-1,67,11.456724618307085],[118,-1,68,11.52730877018274],[118,-1,69,11.552589080854354],[118,-1,70,11.568326467783029],[118,-1,71,11.536872398853959],[118,-1,72,11.520571570138157],[118,-1,73,11.470437575116144],[118,-1,74,11.429662326740509],[118,-1,75,11.449391567752105],[118,-1,76,11.476970127605984],[118,-1,77,11.526614036886475],[118,-1,78,11.586049177211164],[118,-1,79,11.64886995292916],[118,0,64,11.147187496758376],[118,0,65,11.184129392445907],[118,0,66,11.226103650891288],[118,0,67,11.264565686266335],[118,0,68,11.285092854051973],[118,0,69,11.29239113074458],[118,0,70,11.293124588527109],[118,0,71,11.29568350981601],[118,0,72,11.308345112403709],[118,0,73,11.328569031846596],[118,0,74,11.355689558294307],[118,0,75,11.374909885194558],[118,0,76,11.398953722447606],[118,0,77,11.44329252535605],[118,0,78,11.500445697624327],[118,0,79,11.56100749858512],[118,1,64,10.95941349326019],[118,1,65,10.993951689448023],[118,1,66,11.034261499473857],[118,1,67,11.075042757389904],[118,1,68,11.09545377459299],[118,1,69,11.104574634711309],[118,1,70,11.107185126534281],[118,1,71,11.110624906023123],[118,1,72,11.122913013259229],[118,1,73,11.139924449580395],[118,1,74,11.16397923723221],[118,1,75,11.180815280487323],[118,1,76,11.206069801140236],[118,1,77,11.25022142544374],[118,1,78,11.309177012850542],[118,1,79,11.372239647480358],[118,2,64,10.770641335622978],[118,2,65,10.803317555816346],[118,2,66,10.844183170302433],[118,2,67,10.883001015101824],[118,2,68,10.906597396309667],[118,2,69,10.916510005138347],[118,2,70,10.920431125853325],[118,2,71,10.923731152112966],[118,2,72,10.933530325546743],[118,2,73,10.9485903768206],[118,2,74,10.971697317828408],[118,2,75,10.991160019799272],[118,2,76,11.015606138534453],[118,2,77,11.059150935593857],[118,2,78,11.11802729747853],[118,2,79,11.181750319991428],[118,3,64,10.579267971577393],[118,3,65,10.611750879764736],[118,3,66,10.652266752128845],[118,3,67,10.68955053061787],[118,3,68,10.718212379302537],[118,3,69,10.729587866735626],[118,3,70,10.731262825815621],[118,3,71,10.737418591793839],[118,3,72,10.744394395033764],[118,3,73,10.76197006795183],[118,3,74,10.78269227714331],[118,3,75,10.803416443483448],[118,3,76,10.82891821110097],[118,3,77,10.870216598437187],[118,3,78,10.927128685634688],[118,3,79,10.992393853040037],[118,4,64,10.390963964507025],[118,4,65,10.421323441538568],[118,4,66,10.461176692484399],[118,4,67,10.499415078614307],[118,4,68,10.525714965263536],[118,4,69,10.53789884597265],[118,4,70,10.540522409824332],[118,4,71,10.547177335146074],[118,4,72,10.556757762667488],[118,4,73,10.574982188460249],[118,4,74,10.594317770172855],[118,4,75,10.61409518949792],[118,4,76,10.638453627722773],[118,4,77,10.680819272622115],[118,4,78,10.739524160313744],[118,4,79,10.803161826748477],[118,5,64,10.198681504955513],[118,5,65,10.231217996548164],[118,5,66,10.27271294963201],[118,5,67,10.31098123630671],[118,5,68,10.335185962978226],[118,5,69,10.348232104844785],[118,5,70,10.351821596213824],[118,5,71,10.357637960883352],[118,5,72,10.368334994598946],[118,5,73,10.38861714712779],[118,5,74,10.40550948774953],[118,5,75,10.425096697254512],[118,5,76,10.449340646693447],[118,5,77,10.494378837008735],[118,5,78,10.551368945396508],[118,5,79,10.61242580105591],[118,6,64,10.00675095812309],[118,6,65,10.041305475960522],[118,6,66,10.083591068025338],[118,6,67,10.121630498075813],[118,6,68,10.145613672338182],[118,6,69,10.158914732342977],[118,6,70,10.161721151484581],[118,6,71,10.168972354305042],[118,6,72,10.183892755976068],[118,6,73,10.201482911960918],[118,6,74,10.21825197803327],[118,6,75,10.237638300575712],[118,6,76,10.26249861973076],[118,6,77,10.307778506004015],[118,6,78,10.363597999436475],[118,6,79,10.421208145954367],[118,7,64,9.816775928431374],[118,7,65,9.84890564220479],[118,7,66,9.893151118286472],[118,7,67,9.931988605648215],[118,7,68,9.95868798006401],[118,7,69,9.970139941358642],[118,7,70,9.975726608300903],[118,7,71,9.982970623039664],[118,7,72,9.997255857653922],[118,7,73,10.015701808149094],[118,7,74,10.031274566517409],[118,7,75,10.051468285050447],[118,7,76,10.075522807648241],[118,7,77,10.120000530670687],[118,7,78,10.176806972677312],[118,7,79,10.233014805196143],[118,8,64,9.626473250668944],[118,8,65,9.661523136041353],[118,8,66,9.70678406400319],[118,8,67,9.74369993012859],[118,8,68,9.77473431550646],[118,8,69,9.79052812629684],[118,8,70,9.799339168899815],[118,8,71,9.80534039324943],[118,8,72,9.819705400895716],[118,8,73,9.837436126191786],[118,8,74,9.856317379598462],[118,8,75,9.873737460690672],[118,8,76,9.897853607952758],[118,8,77,9.943230627631282],[118,8,78,10.001099596120477],[118,8,79,10.056809319188865],[118,9,64,9.438980581394855],[118,9,65,9.47236122976844],[118,9,66,9.514022653979477],[118,9,67,9.553814434027137],[118,9,68,9.583418953173204],[118,9,69,9.601782365130845],[118,9,70,9.610019427937086],[118,9,71,9.614842090971685],[118,9,72,9.627810841321663],[118,9,73,9.644743581904054],[118,9,74,9.665360962667936],[118,9,75,9.678937345387306],[118,9,76,9.707104830554837],[118,9,77,9.754942277373166],[118,9,78,9.81728692944411],[118,9,79,9.876291343989134],[118,10,64,9.248931424395293],[118,10,65,9.281209022638981],[118,10,66,9.319835024218524],[118,10,67,9.362924216227436],[118,10,68,9.394754151217334],[118,10,69,9.412655154463268],[118,10,70,9.419918119048663],[118,10,71,9.426649459556966],[118,10,72,9.436366289657855],[118,10,73,9.458163234323024],[118,10,74,9.475168759255997],[118,10,75,9.488457231815403],[118,10,76,9.519175424408727],[118,10,77,9.566770732282043],[118,10,78,9.626770644068833],[118,10,79,9.686101121302926],[118,11,64,9.057169490277682],[118,11,65,9.091600980343378],[118,11,66,9.129086416557081],[118,11,67,9.170729946458655],[118,11,68,9.202845040216861],[118,11,69,9.22203022372358],[118,11,70,9.228959686079888],[118,11,71,9.237718194153246],[118,11,72,9.247580384250782],[118,11,73,9.267849058723302],[118,11,74,9.284585121848313],[118,11,75,9.30011522383436],[118,11,76,9.332637745133958],[118,11,77,9.378082741179405],[118,11,78,9.434653565862716],[118,11,79,9.494787671426398],[118,12,64,8.867317820570035],[118,12,65,8.899632186760028],[118,12,66,8.937759174259412],[118,12,67,8.978543580095549],[118,12,68,9.007600257108797],[118,12,69,9.026141645452379],[118,12,70,9.034475738344495],[118,12,71,9.044636157555495],[118,12,72,9.05601304781814],[118,12,73,9.074581828994445],[118,12,74,9.092077951147527],[118,12,75,9.109167094777847],[118,12,76,9.13867236474614],[118,12,77,9.18344502093446],[118,12,78,9.238456827507651],[118,12,79,9.300190811386111],[118,13,64,8.671155385704946],[118,13,65,8.703133921593754],[118,13,66,8.746817898425933],[118,13,67,8.792549361730781],[118,13,68,8.821022890147354],[118,13,69,8.839762036592706],[118,13,70,8.850459819411055],[118,13,71,8.859067863976472],[118,13,72,8.874575732565221],[118,13,73,8.892392234529018],[118,13,74,8.911019871891526],[118,13,75,8.926045714551536],[118,13,76,8.952555900525944],[118,13,77,8.992854912684672],[118,13,78,9.044100460467249],[118,13,79,9.102888646241633],[118,14,64,8.480095964501043],[118,14,65,8.51391939633516],[118,14,66,8.558845026907058],[118,14,67,8.604571261119046],[118,14,68,8.635415228590404],[118,14,69,8.653139722912009],[118,14,70,8.662273431613995],[118,14,71,8.673184324713578],[118,14,72,8.684901624722238],[118,14,73,8.704171132748986],[118,14,74,8.722812500461291],[118,14,75,8.736367195968908],[118,14,76,8.76034134610101],[118,14,77,8.800465044850645],[118,14,78,8.853063593976428],[118,14,79,8.911847612963944],[118,15,64,8.291598081019703],[118,15,65,8.325577576155187],[118,15,66,8.371331653440679],[118,15,67,8.416062315860875],[118,15,68,8.448312084858648],[118,15,69,8.466121233718107],[118,15,70,8.476076029814427],[118,15,71,8.489184934223342],[118,15,72,8.498636400477613],[118,15,73,8.513765993227777],[118,15,74,8.530958136005781],[118,15,75,8.546675688214325],[118,15,76,8.569972523009406],[118,15,77,8.607875272188144],[118,15,78,8.662093312118275],[118,15,79,8.721135794846585],[118,16,64,8.101689484617212],[118,16,65,8.133030441379852],[118,16,66,8.18225502260039],[118,16,67,8.230113144902516],[118,16,68,8.26369020972776],[118,16,69,8.281012598118368],[118,16,70,8.293309027704582],[118,16,71,8.306381182194414],[118,16,72,8.317337791817364],[118,16,73,8.332052802041295],[118,16,74,8.348838508852609],[118,16,75,8.36503065560304],[118,16,76,8.387907465125407],[118,16,77,8.427668741282192],[118,16,78,8.480419010909683],[118,16,79,8.541707730426191],[118,17,64,7.912361088776464],[118,17,65,7.946005131478356],[118,17,66,7.994581063855883],[118,17,67,8.043644257116778],[118,17,68,8.075918823525145],[118,17,69,8.093387351597501],[118,17,70,8.106388923987796],[118,17,71,8.116714549356967],[118,17,72,8.12814961391843],[118,17,73,8.14213248047231],[118,17,74,8.157307466273217],[118,17,75,8.173007640405773],[118,17,76,8.197083372320245],[118,17,77,8.239458534851886],[118,17,78,8.289889859217443],[118,17,79,8.347538660697131],[118,18,64,7.723417946202903],[118,18,65,7.758916838617266],[118,18,66,7.807499392754968],[118,18,67,7.855597241342681],[118,18,68,7.88674605113412],[118,18,69,7.90803742922731],[118,18,70,7.918461543810577],[118,18,71,7.927999401885182],[118,18,72,7.937839223593773],[118,18,73,7.94889772106484],[118,18,74,7.966116132591327],[118,18,75,7.980860772066955],[118,18,76,8.00505817958161],[118,18,77,8.048221771330573],[118,18,78,8.100104924361979],[118,18,79,8.15322008566791],[118,19,64,7.534083588822014],[118,19,65,7.568129269871363],[118,19,66,7.618047218495072],[118,19,67,7.665536093277146],[118,19,68,7.69928025410784],[118,19,69,7.717818215803625],[118,19,70,7.7289448223524],[118,19,71,7.7393168573297935],[118,19,72,7.747334467662919],[118,19,73,7.7565234783812125],[118,19,74,7.775188392356173],[118,19,75,7.7890224716417436],[118,19,76,7.813083384773596],[118,19,77,7.854077656894228],[118,19,78,7.9071457334609825],[118,19,79,7.960702958224654],[118,20,64,7.345866520745225],[118,20,65,7.374186303826283],[118,20,66,7.423831872782203],[118,20,67,7.472952366684992],[118,20,68,7.50815227690796],[118,20,69,7.524589837895421],[118,20,70,7.5350427806232245],[118,20,71,7.54121063396727],[118,20,72,7.550794089592585],[118,20,73,7.561198258367504],[118,20,74,7.576939293587419],[118,20,75,7.592301677709983],[118,20,76,7.616681009232052],[118,20,77,7.655992368016418],[118,20,78,7.709218599343647],[118,20,79,7.7644708259925865],[118,21,64,7.167281322834371],[118,21,65,7.1963182341630665],[118,21,66,7.243410730365204],[118,21,67,7.292846643337784],[118,21,68,7.32653578709409],[118,21,69,7.338068441794127],[118,21,70,7.344101775263448],[118,21,71,7.348489922276446],[118,21,72,7.354279553135392],[118,21,73,7.362228529582032],[118,21,74,7.373730149201164],[118,21,75,7.387528233304498],[118,21,76,7.410688340223659],[118,21,77,7.450184621111667],[118,21,78,7.508165247550744],[118,21,79,7.566010237834757],[118,22,64,6.975373458654793],[118,22,65,7.006339335380002],[118,22,66,7.054418406982902],[118,22,67,7.103656439511166],[118,22,68,7.137419671175998],[118,22,69,7.148820576791551],[118,22,70,7.1526177459346405],[118,22,71,7.1578485450179485],[118,22,72,7.16300322018874],[118,22,73,7.171135900970374],[118,22,74,7.182728220785873],[118,22,75,7.196111043050144],[118,22,76,7.216172049119569],[118,22,77,7.255550498183657],[118,22,78,7.312972255751248],[118,22,79,7.374607660217428],[118,23,64,6.788349239058548],[118,23,65,6.8183139916113555],[118,23,66,6.867765992109041],[118,23,67,6.914352110572948],[118,23,68,6.9461849242871265],[118,23,69,6.959975492254965],[118,23,70,6.962879049344367],[118,23,71,6.969568197603393],[118,23,72,6.972672090115731],[118,23,73,6.9810264120010705],[118,23,74,6.992538472227927],[118,23,75,7.003328794004088],[118,23,76,7.021158092247516],[118,23,77,7.061315327125774],[118,23,78,7.120275958869255],[118,23,79,7.182720486256201],[118,24,64,6.6083927714470985],[118,24,65,6.636764612256436],[118,24,66,6.685751236565151],[118,24,67,6.733783674498419],[118,24,68,6.766208780555896],[118,24,69,6.779952263450572],[118,24,70,6.781591255680582],[118,24,71,6.787429207231482],[118,24,72,6.790915704085466],[118,24,73,6.7996249240374675],[118,24,74,6.810720122991476],[118,24,75,6.821645790690213],[118,24,76,6.838275596265857],[118,24,77,6.877925966393854],[118,24,78,6.935228635995683],[118,24,79,7.000523328441849],[118,25,64,6.428247812234431],[118,25,65,6.451521217321152],[118,25,66,6.494275122917222],[118,25,67,6.538777961226003],[118,25,68,6.573720992503317],[118,25,69,6.587255538798364],[118,25,70,6.591127716455522],[118,25,71,6.600139288678047],[118,25,72,6.609224799118313],[118,25,73,6.618406337064097],[118,25,74,6.630306583575128],[118,25,75,6.638214770544584],[118,25,76,6.651759838396207],[118,25,77,6.68829460795937],[118,25,78,6.743074739167762],[118,25,79,6.806880121857747],[118,26,64,6.2394525210455996],[118,26,65,6.262335303004891],[118,26,66,6.303261488268111],[118,26,67,6.347474134824368],[118,26,68,6.382285217685147],[118,26,69,6.39900508383807],[118,26,70,6.403155152113453],[118,26,71,6.4116554674614825],[118,26,72,6.4188091324591525],[118,26,73,6.427948911700783],[118,26,74,6.438997547424631],[118,26,75,6.446224500702703],[118,26,76,6.459679858620364],[118,26,77,6.491939162923844],[118,26,78,6.548378502357843],[118,26,79,6.613666804214195],[118,27,64,6.053094194413099],[118,27,65,6.076151434964517],[118,27,66,6.112978410060146],[118,27,67,6.156580808548432],[118,27,68,6.190594208222265],[118,27,69,6.208498400975575],[118,27,70,6.212382352157544],[118,27,71,6.22308557990036],[118,27,72,6.229177687143138],[118,27,73,6.236154353792069],[118,27,74,6.243383532568336],[118,27,75,6.253250265015344],[118,27,76,6.266320530779221],[118,27,77,6.3006127984618345],[118,27,78,6.355268624110863],[118,27,79,6.415647701250365],[118,28,64,5.863467515310002],[118,28,65,5.886286302216398],[118,28,66,5.920056116377923],[118,28,67,5.965126744458769],[118,28,68,5.996030465429319],[118,28,69,6.013090904622425],[118,28,70,6.015725034025357],[118,28,71,6.025436672828338],[118,28,72,6.030278037592564],[118,28,73,6.0368918922460075],[118,28,74,6.043770770828247],[118,28,75,6.050125629269466],[118,28,76,6.066071409456338],[118,28,77,6.101643931784835],[118,28,78,6.158309370331938],[118,28,79,6.215513454975135],[118,29,64,5.669313957088535],[118,29,65,5.69216174983118],[118,29,66,5.728620476976224],[118,29,67,5.773169834101919],[118,29,68,5.804420705844332],[118,29,69,5.821083665073057],[118,29,70,5.822895972773304],[118,29,71,5.828284213144081],[118,29,72,5.832762156505473],[118,29,73,5.839606391276225],[118,29,74,5.845953031316216],[118,29,75,5.854382844635786],[118,29,76,5.870051430734007],[118,29,77,5.906294266207025],[118,29,78,5.964276240652571],[118,29,79,6.020801355677006],[118,30,64,5.482194760495838],[118,30,65,5.504107782788629],[118,30,66,5.541019009863465],[118,30,67,5.58291660912847],[118,30,68,5.616303360169322],[118,30,69,5.6277016693818664],[118,30,70,5.629581537747856],[118,30,71,5.631897941123623],[118,30,72,5.638797013797932],[118,30,73,5.644002838181165],[118,30,74,5.650315659900118],[118,30,75,5.658343449908949],[118,30,76,5.673855215960815],[118,30,77,5.707898715537641],[118,30,78,5.767322442431297],[118,30,79,5.825627329899686],[118,31,64,5.296831695818786],[118,31,65,5.319034621159952],[118,31,66,5.349639360520236],[118,31,67,5.39187605812307],[118,31,68,5.424807354122635],[118,31,69,5.435996256097523],[118,31,70,5.436813852929145],[118,31,71,5.439354435351661],[118,31,72,5.445997647477323],[118,31,73,5.448898412267475],[118,31,74,5.453221781007138],[118,31,75,5.456805123959964],[118,31,76,5.476700683863945],[118,31,77,5.510622743041689],[118,31,78,5.568491307433122],[118,31,79,5.631526484062676],[118,32,64,5.119895342248583],[118,32,65,5.138607703807107],[118,32,66,5.172558508352369],[118,32,67,5.213913425003121],[118,32,68,5.245486656565117],[118,32,69,5.2564765752941645],[118,32,70,5.258041257306766],[118,32,71,5.260804158026471],[118,32,72,5.265671382681303],[118,32,73,5.264019991760506],[118,32,74,5.267176094661035],[118,32,75,5.270180223434192],[118,32,76,5.290018173273689],[118,32,77,5.324087524216618],[118,32,78,5.38434514026106],[118,32,79,5.448368858419175],[118,33,64,4.931919830857645],[118,33,65,4.950259525138078],[118,33,66,4.9850716922857155],[118,33,67,5.031498837176662],[118,33,68,5.063182805101342],[118,33,69,5.0736610898450945],[118,33,70,5.073680804035094],[118,33,71,5.07298056815191],[118,33,72,5.069806446688884],[118,33,73,5.061518721398706],[118,33,74,5.061104966906813],[118,33,75,5.0640822850484275],[118,33,76,5.084689659811583],[118,33,77,5.122533203331829],[118,33,78,5.183691679746476],[118,33,79,5.252875637109198],[118,34,64,4.740906382740538],[118,34,65,4.759917586052173],[118,34,66,4.79527871757038],[118,34,67,4.840324637820231],[118,34,68,4.872988776843955],[118,34,69,4.885061726677732],[118,34,70,4.884835864913325],[118,34,71,4.881849956708952],[118,34,72,4.879706021550532],[118,34,73,4.87134943432356],[118,34,74,4.8695314353088754],[118,34,75,4.870258456110443],[118,34,76,4.889408894671996],[118,34,77,4.927823751375894],[118,34,78,4.988947236226667],[118,34,79,5.058577729995714],[118,35,64,4.550460437200567],[118,35,65,4.5693039871469345],[118,35,66,4.60661682869622],[118,35,67,4.651120304443608],[118,35,68,4.682196428248323],[118,35,69,4.69556051262197],[118,35,70,4.6948052218144065],[118,35,71,4.690540323343111],[118,35,72,4.687586409891617],[118,35,73,4.678788394658319],[118,35,74,4.676878407219957],[118,35,75,4.676866406433477],[118,35,76,4.696118625121864],[118,35,77,4.732584661112379],[118,35,78,4.795031501424262],[118,35,79,4.8653818553985975],[118,36,64,4.3533180289513895],[118,36,65,4.372426924556338],[118,36,66,4.410988994585757],[118,36,67,4.4563796248110235],[118,36,68,4.485582897496261],[118,36,69,4.4991134777726005],[118,36,70,4.496683579470508],[118,36,71,4.491519172194635],[118,36,72,4.489190419392639],[118,36,73,4.4813919168412735],[118,36,74,4.479627049051416],[118,36,75,4.4794584941247475],[118,36,76,4.49751448534376],[118,36,77,4.5349298891237995],[118,36,78,4.594394365243089],[118,36,79,4.665999856350668],[118,37,64,4.161800889694662],[118,37,65,4.1809665975917945],[118,37,66,4.214773106096351],[118,37,67,4.254127181053622],[118,37,68,4.284316957146167],[118,37,69,4.29602630713249],[118,37,70,4.292401483714261],[118,37,71,4.2929109555812905],[118,37,72,4.296114975438477],[118,37,73,4.294007737946956],[118,37,74,4.28934514518981],[118,37,75,4.293266093445903],[118,37,76,4.307834949037939],[118,37,77,4.34575741264706],[118,37,78,4.404307894762246],[118,37,79,4.473227716695969],[118,38,64,3.9726681638128567],[118,38,65,3.9910197009477386],[118,38,66,4.023067832552405],[118,38,67,4.062912184433422],[118,38,68,4.093814328381936],[118,38,69,4.105383913826919],[118,38,70,4.100442215876879],[118,38,71,4.1030079486925],[118,38,72,4.10335487522154],[118,38,73,4.101257765788292],[118,38,74,4.0985008462146],[118,38,75,4.101027362637458],[118,38,76,4.115411506245882],[118,38,77,4.151371616036687],[118,38,78,4.211482447881293],[118,38,79,4.280167066021525],[118,39,64,3.783929191996437],[118,39,65,3.802409499181066],[118,39,66,3.8329403099344823],[118,39,67,3.8713055259673474],[118,39,68,3.902556532892209],[118,39,69,3.915893945525057],[118,39,70,3.9110707646719822],[118,39,71,3.9115202261127795],[118,39,72,3.912807477002577],[118,39,73,3.9109244538720227],[118,39,74,3.9084571755266073],[118,39,75,3.9099886153643686],[118,39,76,3.923293134556399],[118,39,77,3.958361806695984],[118,39,78,4.017174521536605],[118,39,79,4.087811707048488],[118,40,64,3.6080094163066905],[118,40,65,3.624701160064471],[118,40,66,3.6535417407993753],[118,40,67,3.693064519013013],[118,40,68,3.723461805121935],[118,40,69,3.738193196994799],[118,40,70,3.7348974410659808],[118,40,71,3.7349633107862057],[118,40,72,3.73611337460598],[118,40,73,3.736865819810221],[118,40,74,3.7300266357842617],[118,40,75,3.731283317497738],[118,40,76,3.7456588196200724],[118,40,77,3.777347777063924],[118,40,78,3.8362169187735784],[118,40,79,3.9103732096118327],[118,41,64,3.4185548817594555],[118,41,65,3.435254781952427],[118,41,66,3.4642212772907897],[118,41,67,3.5051993209621704],[118,41,68,3.5365883656312422],[118,41,69,3.5501707725047322],[118,41,70,3.5456547334704105],[118,41,71,3.5460707113394334],[118,41,72,3.546316271002077],[118,41,73,3.5480788862752517],[118,41,74,3.5397427011040565],[118,41,75,3.5387970264128086],[118,41,76,3.5520491853311467],[118,41,77,3.5870185615378705],[118,41,78,3.6441119399663804],[118,41,79,3.7189179957683254],[118,42,64,3.2282171076422963],[118,42,65,3.2436013812226934],[118,42,66,3.2773454715889505],[118,42,67,3.318311163562889],[118,42,68,3.3470216487335125],[118,42,69,3.3597145015504926],[118,42,70,3.356151223696114],[118,42,71,3.356429169431682],[118,42,72,3.358058637346376],[118,42,73,3.356842281760029],[118,42,74,3.350213044881013],[118,42,75,3.348123638417929],[118,42,76,3.3591283316011706],[118,42,77,3.392928880003384],[118,42,78,3.4507811121030274],[118,42,79,3.526066617501177],[118,43,64,3.0355034951769877],[118,43,65,3.053913397752086],[118,43,66,3.0871465139631313],[118,43,67,3.1275461845778985],[118,43,68,3.157359861592421],[118,43,69,3.1686471333940522],[118,43,70,3.167993492375569],[118,43,71,3.1681184828983135],[118,43,72,3.170420665389325],[118,43,73,3.1646608980855],[118,43,74,3.1592740949791294],[118,43,75,3.1584496168791327],[118,43,76,3.1671585289503397],[118,43,77,3.1993555101261206],[118,43,78,3.257645292457055],[118,43,79,3.3334777973304273],[118,44,64,2.837982654056886],[118,44,65,2.854808676875215],[118,44,66,2.891178042952718],[118,44,67,2.9301515186666167],[118,44,68,2.960452320120437],[118,44,69,2.9736207807163195],[118,44,70,2.9742314429292667],[118,44,71,2.9743026525678666],[118,44,72,2.9732729198971835],[118,44,73,2.9664030135088137],[118,44,74,2.961917433202737],[118,44,75,2.960804051741749],[118,44,76,2.9691047180182166],[118,44,77,3.0023183324922647],[118,44,78,3.060160480084858],[118,44,79,3.1343694172659817],[118,45,64,2.6369369046295383],[118,45,65,2.656363219188783],[118,45,66,2.6998754199581443],[118,45,67,2.7446928163118955],[118,45,68,2.781504099703388],[118,45,69,2.7997738391725475],[118,45,70,2.8049405928428692],[118,45,71,2.8062021183133834],[118,45,72,2.803020560685432],[118,45,73,2.7920220627419288],[118,45,74,2.7846865185670624],[118,45,75,2.7813829388956615],[118,45,76,2.789760573367132],[118,45,77,2.822533650921557],[118,45,78,2.8765738103176965],[118,45,79,2.9460686809842485],[118,46,64,2.444422991669431],[118,46,65,2.4648176878752768],[118,46,66,2.5085681171040464],[118,46,67,2.5532188417075043],[118,46,68,2.5905704113325925],[118,46,69,2.609490530846276],[118,46,70,2.6152080577107846],[118,46,71,2.6188551989493645],[118,46,72,2.6135107383320113],[118,46,73,2.6002508786046086],[118,46,74,2.592403251532019],[118,46,75,2.590226480419909],[118,46,76,2.598727088650026],[118,46,77,2.629516377446332],[118,46,78,2.683810691040853],[118,46,79,2.7507231322211463],[118,47,64,2.253977963452695],[118,47,65,2.274390459411702],[118,47,66,2.3145042738835757],[118,47,67,2.3593098015673064],[118,47,68,2.400851023579919],[118,47,69,2.4193398076577473],[118,47,70,2.4289948390682587],[118,47,71,2.4301252305464276],[118,47,72,2.424232911657063],[118,47,73,2.4095549397137406],[118,47,74,2.3987491124042974],[118,47,75,2.39916131861982],[118,47,76,2.4078122503407644],[118,47,77,2.4364323415503426],[118,47,78,2.491919205067674],[118,47,79,2.558976249929196],[118,48,64,2.076439188746083],[118,48,65,2.0990819806089744],[118,48,66,2.1339933103124786],[118,48,67,2.1810807537929673],[118,48,68,2.2258671172881117],[118,48,69,2.2452194923043103],[118,48,70,2.254048265274449],[118,48,71,2.2535206757617448],[118,48,72,2.246749811555291],[118,48,73,2.2319713886632297],[118,48,74,2.2237560870862705],[118,48,75,2.220992243278917],[118,48,76,2.228915458676046],[118,48,77,2.2566963907461477],[118,48,78,2.3118676602027746],[118,48,79,2.38048080271783],[118,49,64,1.877178719845737],[118,49,65,1.8990097653233386],[118,49,66,1.9365367716897162],[118,49,67,1.986809057434674],[118,49,68,2.0295329426377577],[118,49,69,2.0546942554285192],[118,49,70,2.060815201235213],[118,49,71,2.06230356342635],[118,49,72,2.056912353008152],[118,49,73,2.0447824337039733],[118,49,74,2.036080400335159],[118,49,75,2.0321379010544054],[118,49,76,2.0367756154182532],[118,49,77,2.0663680426074933],[118,49,78,2.122308088629068],[118,49,79,2.189183136537893],[118,50,64,1.6831340837620647],[118,50,65,1.7043675700343761],[118,50,66,1.7406701256271049],[118,50,67,1.7946981222353242],[118,50,68,1.8379924995857082],[118,50,69,1.8650558464335885],[118,50,70,1.8699827912047273],[118,50,71,1.8719860690657368],[118,50,72,1.8658606406162985],[118,50,73,1.8558078463795167],[118,50,74,1.8448196582252545],[118,50,75,1.839156280739374],[118,50,76,1.8437240820183356],[118,50,77,1.8754646825754568],[118,50,78,1.9315379314428782],[118,50,79,2.000332567415111],[118,51,64,1.4873795185597196],[118,51,65,1.510284192617589],[118,51,66,1.5455419473161858],[118,51,67,1.5990634938416135],[118,51,68,1.6446563975469073],[118,51,69,1.6725381484420627],[118,51,70,1.6798315951909608],[118,51,71,1.6809715688354687],[118,51,72,1.6748816537571891],[118,51,73,1.665871020056049],[118,51,74,1.6530399617887495],[118,51,75,1.6472849701077785],[118,51,76,1.6517102253400011],[118,51,77,1.6820762129932407],[118,51,78,1.73892410222415],[118,51,79,1.8062322565188693],[118,52,64,1.3256096846924434],[118,52,65,1.3454389646416562],[118,52,66,1.3834466439056468],[118,52,67,1.4346207890531621],[118,52,68,1.4821826396987863],[118,52,69,1.5093660916716973],[118,52,70,1.5175155451540063],[118,52,71,1.5194671628010337],[118,52,72,1.512842610745829],[118,52,73,1.5031092899464609],[118,52,74,1.4913498720942493],[118,52,75,1.4829268215864273],[118,52,76,1.4865101523061888],[118,52,77,1.5183638923305092],[118,52,78,1.5727549811691897],[118,52,79,1.6397893220131974],[118,53,64,1.1384675995676545],[118,53,65,1.1550847460461098],[118,53,66,1.191288290359025],[118,53,67,1.2407639082359547],[118,53,68,1.2831873426464413],[118,53,69,1.3071053874070915],[118,53,70,1.3154809432087489],[118,53,71,1.3161672024065383],[118,53,72,1.3108490702831879],[118,53,73,1.3013417101387001],[118,53,74,1.2891802770030085],[118,53,75,1.2817118954586308],[118,53,76,1.2846183978861747],[118,53,77,1.317171410455239],[118,53,78,1.3734996638388948],[118,53,79,1.4411525015190527],[118,54,64,0.9461547816565976],[118,54,65,0.9621980021983245],[118,54,66,0.9986412874149602],[118,54,67,1.048745016713054],[118,54,68,1.0901763740855361],[118,54,69,1.1148063106162707],[118,54,70,1.122558960109798],[118,54,71,1.122366652868532],[118,54,72,1.1203377477491547],[118,54,73,1.1074900208684673],[118,54,74,1.0955938717719675],[118,54,75,1.0880576802401247],[118,54,76,1.0926023440896513],[118,54,77,1.1222870548375905],[118,54,78,1.1803096559277977],[118,54,79,1.2443892888629002],[118,55,64,0.7556871793245226],[118,55,65,0.7688193721908086],[118,55,66,0.8034979087268556],[118,55,67,0.855143847066038],[118,55,68,0.8940996557500662],[118,55,69,0.9206256442470602],[118,55,70,0.9286324047085484],[118,55,71,0.931034899006443],[118,55,72,0.9265518930645136],[118,55,73,0.9123729285793083],[118,55,74,0.8998424914335654],[118,55,75,0.8899711502232158],[118,55,76,0.9002916922182624],[118,55,77,0.92986991050881],[118,55,78,0.9869064065789328],[118,55,79,1.0506673566302205],[118,56,64,0.5803201338861336],[118,56,65,0.5903485382592054],[118,56,66,0.6252713024233767],[118,56,67,0.6766333582507746],[118,56,68,0.7177295125185994],[118,56,69,0.7395479980251197],[118,56,70,0.7481400510020627],[118,56,71,0.7519385059100873],[118,56,72,0.7463880305014778],[118,56,73,0.7309133280606586],[118,56,74,0.7199204609817202],[118,56,75,0.7104134997596532],[118,56,76,0.7196802895932821],[118,56,77,0.750429230324965],[118,56,78,0.8087909972664279],[118,56,79,0.8724523149981177],[118,57,64,0.3856447999468161],[118,57,65,0.39591695095401835],[118,57,66,0.43291607970646606],[118,57,67,0.4805814927727212],[118,57,68,0.5233111428551548],[118,57,69,0.5421788833537192],[118,57,70,0.5491855682796368],[118,57,71,0.5525456766193596],[118,57,72,0.5432049525260857],[118,57,73,0.5286078251376793],[118,57,74,0.5172849832848697],[118,57,75,0.5068041263703793],[118,57,76,0.5141826041099071],[118,57,77,0.5435623741600173],[118,57,78,0.6022881549652254],[118,57,79,0.670800264886422],[118,58,64,0.2351800208234174],[118,58,65,0.24705161303564294],[118,58,66,0.2822303497841102],[118,58,67,0.32861011439018195],[118,58,68,0.3670471880762105],[118,58,69,0.38914139277286547],[118,58,70,0.3969347943276719],[118,58,71,0.3980874425034223],[118,58,72,0.38964654694159934],[118,58,73,0.3727978291700289],[118,58,74,0.3613375396596067],[118,58,75,0.3502224848423996],[118,58,76,0.35662444792348785],[118,58,77,0.38417606775879604],[118,58,78,0.44060141455761115],[118,58,79,0.510419434897454],[118,59,64,0.07351840856337337],[118,59,65,0.07118457112379868],[118,59,66,0.0902322692008624],[118,59,67,0.1335623922973458],[118,59,68,0.17249511592172884],[118,59,69,0.196305124341649],[118,59,70,0.20353082920074278],[118,59,71,0.20597223628934652],[118,59,72,0.1991975368249528],[118,59,73,0.18269074150663844],[118,59,74,0.16843988077211097],[118,59,75,0.15791533467510338],[118,59,76,0.16253711646415758],[118,59,77,0.1917615123425161],[118,59,78,0.247777373979244],[118,59,79,0.31676015777809624],[118,60,64,0.01902145589558328],[118,60,65,0.014514762983654741],[118,60,66,0.018795476041466044],[118,60,67,0.02321034014478536],[118,60,68,0.02797987729477415],[118,60,69,0.034423178522494685],[118,60,70,0.0372381265323698],[118,60,71,0.03750992155521417],[118,60,72,0.03128831082241325],[118,60,73,0.025965589665007602],[118,60,74,0.023594488182453965],[118,60,75,0.02145488411254129],[118,60,76,0.024110024445460065],[118,60,77,0.03436486489019512],[118,60,78,0.04795953371247426],[118,60,79,0.11602696173162014],[118,61,64,-0.015603727046851312],[118,61,65,-0.025700643200260886],[118,61,66,-0.02969642075014982],[118,61,67,-0.02854044379646735],[118,61,68,-0.023363910887088807],[118,61,69,-0.018368777663790747],[118,61,70,-0.017906649167238733],[118,61,71,-0.017723313016890424],[118,61,72,-0.021720551681814193],[118,61,73,-0.02241436797390707],[118,61,74,-0.02537052200432552],[118,61,75,-0.02342539409686714],[118,61,76,-0.020598189048752227],[118,61,77,-0.01165652459157801],[118,61,78,0.0037451222664036943],[118,61,79,0.02266428492068867],[118,62,64,-0.0655137857096537],[118,62,65,-0.07547620189715452],[118,62,66,-0.08143770867311813],[118,62,67,-0.07736409487411655],[118,62,68,-0.07112758442761],[118,62,69,-0.06806328519260967],[118,62,70,-0.06936554564845447],[118,62,71,-0.0694293914900637],[118,62,72,-0.07220997801640067],[118,62,73,-0.07179948910194894],[118,62,74,-0.07326974558956548],[118,62,75,-0.06985866708794948],[118,62,76,-0.06721663665398836],[118,62,77,-0.058994058043643646],[118,62,78,-0.04462408922938106],[118,62,79,-0.025850265563926486],[118,63,64,-0.18657300350916242],[118,63,65,-0.1975243458333804],[118,63,66,-0.20259224842162082],[118,63,67,-0.1956040553691915],[118,63,68,-0.19136382701635585],[118,63,69,-0.1884726272663268],[118,63,70,-0.19077198153554212],[118,63,71,-0.187440692338588],[118,63,72,-0.18980175659183307],[118,63,73,-0.18931292902724223],[118,63,74,-0.18783290229700927],[118,63,75,-0.1863621051599859],[118,63,76,-0.18108489058489813],[118,63,77,-0.17250868708940276],[118,63,78,-0.1588880744256599],[118,63,79,-0.13977507266191952],[118,64,64,-0.22421985306542752],[118,64,65,-0.23713326897117476],[118,64,66,-0.24271742581521216],[118,64,67,-0.23548879546379886],[118,64,68,-0.229820354551852],[118,64,69,-0.22540405126713994],[118,64,70,-0.22941918710217815],[118,64,71,-0.22690813910322222],[118,64,72,-0.2278649045444758],[118,64,73,-0.2280328411321711],[118,64,74,-0.22858614150885803],[118,64,75,-0.22669354789273263],[118,64,76,-0.22004615715768971],[118,64,77,-0.21154387908540329],[118,64,78,-0.19886539940687853],[118,64,79,-0.1799109481926794],[118,65,64,-0.2742965040798961],[118,65,65,-0.2857877174787675],[118,65,66,-0.2933247011423805],[118,65,67,-0.28568223112970026],[118,65,68,-0.27782876409042845],[118,65,69,-0.2731149667454141],[118,65,70,-0.27735720387256135],[118,65,71,-0.27777983277890406],[118,65,72,-0.27838847316983134],[118,65,73,-0.27684541554695113],[118,65,74,-0.27887138968497094],[118,65,75,-0.27533777097725337],[118,65,76,-0.2701751840158605],[118,65,77,-0.2636882577090901],[118,65,78,-0.24856869258544684],[118,65,79,-0.22935540068192872],[118,66,64,-0.32837835214114447],[118,66,65,-0.3407109579941646],[118,66,66,-0.3474733576123632],[118,66,67,-0.33957446683890413],[118,66,68,-0.33302928501847984],[118,66,69,-0.3275343478926781],[118,66,70,-0.3286999705831259],[118,66,71,-0.3315294611334191],[118,66,72,-0.3321873154171642],[118,66,73,-0.33277658601758636],[118,66,74,-0.33527594604832356],[118,66,75,-0.3305562369129242],[118,66,76,-0.3249818156099953],[118,66,77,-0.3187151524849815],[118,66,78,-0.3031629498282318],[118,66,79,-0.28493109379812376],[118,67,64,-0.3787224427250224],[118,67,65,-0.3888271793927498],[118,67,66,-0.39487947884975677],[118,67,67,-0.3885642746020599],[118,67,68,-0.3813980499908736],[118,67,69,-0.3790867687530316],[118,67,70,-0.3772531361960845],[118,67,71,-0.3767543146080157],[118,67,72,-0.3789647180040305],[118,67,73,-0.38328258275798854],[118,67,74,-0.3843946753431341],[118,67,75,-0.3799440045071968],[118,67,76,-0.3745637013838548],[118,67,77,-0.3673373741272815],[118,67,78,-0.352854635044872],[118,67,79,-0.33553254393240317],[118,68,64,-0.5201001156365269],[118,68,65,-0.5277770244341062],[118,68,66,-0.533620384019996],[118,68,67,-0.5264533594943318],[118,68,68,-0.5215572205281552],[118,68,69,-0.5188400270944458],[118,68,70,-0.5133017277502808],[118,68,71,-0.5111298377021888],[118,68,72,-0.5134331552865793],[118,68,73,-0.52085637133669],[118,68,74,-0.5235342990884622],[118,68,75,-0.5202036451893968],[118,68,76,-0.5152058890233453],[118,68,77,-0.5048059268337786],[118,68,78,-0.49192357730354586],[118,68,79,-0.4727838347890148],[118,69,64,-0.5800970802735363],[118,69,65,-0.5833719456113593],[118,69,66,-0.580903250671724],[118,69,67,-0.5731149620018077],[118,69,68,-0.5585071808691218],[118,69,69,-0.5496988203473632],[118,69,70,-0.5446644693197691],[118,69,71,-0.5381962352280503],[118,69,72,-0.5415281549236943],[118,69,73,-0.5533739965236107],[118,69,74,-0.5565900613565816],[118,69,75,-0.5545906835430319],[118,69,76,-0.5518486709650985],[118,69,77,-0.5424835365502865],[118,69,78,-0.5279483016828118],[118,69,79,-0.5129022849190168],[118,70,64,-0.6323323600731128],[118,70,65,-0.6341474153359745],[118,70,66,-0.6283033245251347],[118,70,67,-0.6218704208935198],[118,70,68,-0.6048864354572161],[118,70,69,-0.5954390101394391],[118,70,70,-0.5924054978232826],[118,70,71,-0.5864790780878553],[118,70,72,-0.5907249220687641],[118,70,73,-0.6034336070992342],[118,70,74,-0.6057810709274076],[118,70,75,-0.6030872266349047],[118,70,76,-0.6059235226764575],[118,70,77,-0.5961500151845531],[118,70,78,-0.5804770719801642],[118,70,79,-0.5639273601654528],[118,71,64,-0.6745232906687043],[118,71,65,-0.6758991029165563],[118,71,66,-0.6689371410849865],[118,71,67,-0.6603387433422464],[118,71,68,-0.6453466129066334],[118,71,69,-0.6327948218563811],[118,71,70,-0.6300544097464598],[118,71,71,-0.6269623898338921],[118,71,72,-0.6297840413581207],[118,71,73,-0.6403458536927825],[118,71,74,-0.6445027135644545],[118,71,75,-0.6453888488310477],[118,71,76,-0.6490368881016291],[118,71,77,-0.6389448810288512],[118,71,78,-0.6218081018041495],[118,71,79,-0.606249520483322],[118,72,64,-0.7275480031287426],[118,72,65,-0.7278787206278158],[118,72,66,-0.7195402491707499],[118,72,67,-0.7080416200876753],[118,72,68,-0.6952784573521726],[118,72,69,-0.6848587766611812],[118,72,70,-0.6790417938650866],[118,72,71,-0.676049777934648],[118,72,72,-0.678504516288312],[118,72,73,-0.6887118518047789],[118,72,74,-0.6918875943670356],[118,72,75,-0.6975989197490785],[118,72,76,-0.6986349628299874],[118,72,77,-0.691281218924772],[118,72,78,-0.6748327604091582],[118,72,79,-0.6577295911152239],[118,73,64,-0.7862434155983866],[118,73,65,-0.7850338871334354],[118,73,66,-0.7771929956970423],[118,73,67,-0.7605448063614467],[118,73,68,-0.7481312243092614],[118,73,69,-0.7367895147382303],[118,73,70,-0.7303007905697679],[118,73,71,-0.7272853597363395],[118,73,72,-0.7264170760664467],[118,73,73,-0.7354198213992229],[118,73,74,-0.7403749329117056],[118,73,75,-0.7471289384858393],[118,73,76,-0.7461907843495105],[118,73,77,-0.7424540407710032],[118,73,78,-0.7338139572926499],[118,73,79,-0.7173295036851093],[118,74,64,-0.8432947705720495],[118,74,65,-0.8419925370963597],[118,74,66,-0.8369474134537968],[118,74,67,-0.8178603183989354],[118,74,68,-0.8031423983805155],[118,74,69,-0.7919685495539658],[118,74,70,-0.7856137726814407],[118,74,71,-0.7845160523413197],[118,74,72,-0.7845506682705854],[118,74,73,-0.7933923784640401],[118,74,74,-0.7985730242861921],[118,74,75,-0.8049464069273572],[118,74,76,-0.8029555552277343],[118,74,77,-0.7994530780308012],[118,74,78,-0.7924070001239878],[118,74,79,-0.7762323456668978],[118,75,64,-0.8916205039266707],[118,75,65,-0.8922396678300485],[118,75,66,-0.8878431121496723],[118,75,67,-0.8700198748440324],[118,75,68,-0.8562286431826782],[118,75,69,-0.8418421480110031],[118,75,70,-0.8320730402196003],[118,75,71,-0.8354057160677213],[118,75,72,-0.8357334748693469],[118,75,73,-0.842363101967504],[118,75,74,-0.8512140790001133],[118,75,75,-0.8566796622897557],[118,75,76,-0.8534874556023726],[118,75,77,-0.8492775231519083],[118,75,78,-0.8452379918727453],[118,75,79,-0.8300234316604891],[118,76,64,-0.9375727296442475],[118,76,65,-0.9402923815351454],[118,76,66,-0.9322702543819694],[118,76,67,-0.914905935064622],[118,76,68,-0.9010648663679292],[118,76,69,-0.8897775490314445],[118,76,70,-0.8799918113821511],[118,76,71,-0.8802494869230902],[118,76,72,-0.8822122877543979],[118,76,73,-0.8874991202509203],[118,76,74,-0.8985464371248437],[118,76,75,-0.9036475990386228],[118,76,76,-0.9011208299664641],[118,76,77,-0.8986949493918281],[118,76,78,-0.8925352588810698],[118,76,79,-0.8808682678392716],[118,77,64,-0.9887667816175235],[118,77,65,-0.9925883738981992],[118,77,66,-0.9841115797144689],[118,77,67,-0.9666563529140002],[118,77,68,-0.9540580721455845],[118,77,69,-0.9470685062162565],[118,77,70,-0.9389897195126439],[118,77,71,-0.9386586815187484],[118,77,72,-0.9402433741618117],[118,77,73,-0.9470745249877545],[118,77,74,-0.958565755455344],[118,77,75,-0.9625677109473294],[118,77,76,-0.9607051151272239],[118,77,77,-0.9597701052198897],[118,77,78,-0.9525090463361223],[118,77,79,-0.9381940873733362],[118,78,64,-1.0414782337917636],[118,78,65,-1.0452260356977734],[118,78,66,-1.0332676276849853],[118,78,67,-1.0141152671306357],[118,78,68,-1.0021158320268104],[118,78,69,-0.9952068137965143],[118,78,70,-0.9881936880606971],[118,78,71,-0.9885906089893078],[118,78,72,-0.9913443582706948],[118,78,73,-0.9958947951622963],[118,78,74,-1.008211960678194],[118,78,75,-1.0130146458360383],[118,78,76,-1.0137633416995482],[118,78,77,-1.013072413165785],[118,78,78,-1.0074249700881848],[118,78,79,-0.9924224012988967],[118,79,64,-1.0821083223675307],[118,79,65,-1.0832031401918478],[118,79,66,-1.0740299814779957],[118,79,67,-1.0559088665664822],[118,79,68,-1.0429224252737619],[118,79,69,-1.0352162150651112],[118,79,70,-1.0273790241567118],[118,79,71,-1.0288494760656668],[118,79,72,-1.0344136383865716],[118,79,73,-1.0394448974184964],[118,79,74,-1.049134767688161],[118,79,75,-1.05787258095768],[118,79,76,-1.0603729591557294],[118,79,77,-1.0588691690242242],[118,79,78,-1.0535764894925512],[118,79,79,-1.0393490618437822],[118,80,64,-1.1313382342209068],[118,80,65,-1.1315195248490644],[118,80,66,-1.124082468593791],[118,80,67,-1.1061127234846495],[118,80,68,-1.094107128535354],[118,80,69,-1.0839567790310543],[118,80,70,-1.073775709877338],[118,80,71,-1.0777424699712048],[118,80,72,-1.0864259259840523],[118,80,73,-1.0926509856413373],[118,80,74,-1.1008967075680969],[118,80,75,-1.1099216889285064],[118,80,76,-1.1150311088566345],[118,80,77,-1.1142534072362589],[118,80,78,-1.106010099715951],[118,80,79,-1.0931341207440077],[118,81,64,-1.1709845481159094],[118,81,65,-1.1702962176086524],[118,81,66,-1.1620021586761786],[118,81,67,-1.1473560118642447],[118,81,68,-1.1363794565868703],[118,81,69,-1.1220131803455875],[118,81,70,-1.1159768213083217],[118,81,71,-1.1209842187019916],[118,81,72,-1.1332935086818656],[118,81,73,-1.1443935518021848],[118,81,74,-1.1507107687129263],[118,81,75,-1.1612379223480862],[118,81,76,-1.165368504638338],[118,81,77,-1.1701562289001914],[118,81,78,-1.1618597206100287],[118,81,79,-1.1513286585461562],[118,82,64,-1.2248392323322164],[118,82,65,-1.2255234917306113],[118,82,66,-1.2156191703394787],[118,82,67,-1.2028816201935955],[118,82,68,-1.191057626660124],[118,82,69,-1.1780356540892236],[118,82,70,-1.1730599111629076],[118,82,71,-1.179053160474047],[118,82,72,-1.1884199863101168],[118,82,73,-1.2039140069099392],[118,82,74,-1.210728677211357],[118,82,75,-1.2213612388816757],[118,82,76,-1.2232650977511825],[118,82,77,-1.2262290314030537],[118,82,78,-1.2202065061530292],[118,82,79,-1.2090607117881396],[118,83,64,-1.272729483266998],[118,83,65,-1.2754674719571335],[118,83,66,-1.2646121469716944],[118,83,67,-1.2525998678294665],[118,83,68,-1.237234148642761],[118,83,69,-1.2293474624906895],[118,83,70,-1.2276330435468163],[118,83,71,-1.2319597588228188],[118,83,72,-1.2401024277863544],[118,83,73,-1.2533857927122265],[118,83,74,-1.2650774386691785],[118,83,75,-1.2724327651926894],[118,83,76,-1.2735075250559642],[118,83,77,-1.2777692673688732],[118,83,78,-1.271663858995664],[118,83,79,-1.2624066587682126],[118,84,64,-1.3173246389574573],[118,84,65,-1.3235420931447555],[118,84,66,-1.3119208195896326],[118,84,67,-1.3007524860556547],[118,84,68,-1.2856129380806023],[118,84,69,-1.27886552836748],[118,84,70,-1.2773129564207135],[118,84,71,-1.2831183328870985],[118,84,72,-1.2911937623465304],[118,84,73,-1.3044393701326027],[118,84,74,-1.3170262917238307],[118,84,75,-1.3229301701439407],[118,84,76,-1.3251283872142798],[118,84,77,-1.3255026105304608],[118,84,78,-1.3204378045378264],[118,84,79,-1.3113200383253327],[118,85,64,-1.385531506818754],[118,85,65,-1.3884892843695265],[118,85,66,-1.3814814006792995],[118,85,67,-1.3693928291893802],[118,85,68,-1.355169530394232],[118,85,69,-1.3499371067590589],[118,85,70,-1.348619570977372],[118,85,71,-1.3535245943181335],[118,85,72,-1.3590800040650177],[118,85,73,-1.3693874777711996],[118,85,74,-1.3831134833173122],[118,85,75,-1.3889174268003508],[118,85,76,-1.3901093255390193],[118,85,77,-1.3869330874825236],[118,85,78,-1.3734168876009654],[118,85,79,-1.3622186119335045],[118,86,64,-1.436007536768682],[118,86,65,-1.4396126497389388],[118,86,66,-1.431189503427742],[118,86,67,-1.4194691721882746],[118,86,68,-1.4040645312557394],[118,86,69,-1.4009717446616916],[118,86,70,-1.4014299805094088],[118,86,71,-1.4033613843762882],[118,86,72,-1.409274676206162],[118,86,73,-1.4200000108411244],[118,86,74,-1.4339788010072239],[118,86,75,-1.4379875678960663],[118,86,76,-1.4415903300064064],[118,86,77,-1.4391213059438424],[118,86,78,-1.4261303179613887],[118,86,79,-1.4138777524818558],[118,87,64,-1.475772473524391],[118,87,65,-1.477547290688987],[118,87,66,-1.472112456187622],[118,87,67,-1.460395408209476],[118,87,68,-1.4474397621102464],[118,87,69,-1.4425680174472162],[118,87,70,-1.4397913332973782],[118,87,71,-1.4440795057022677],[118,87,72,-1.4497787851007211],[118,87,73,-1.4608468580614251],[118,87,74,-1.47531492107883],[118,87,75,-1.482119386224686],[118,87,76,-1.485896807611026],[118,87,77,-1.4833233039909628],[118,87,78,-1.4706124222305725],[118,87,79,-1.4560915839394684],[118,88,64,-1.5231348891473984],[118,88,65,-1.5265672321786627],[118,88,66,-1.5220202423068583],[118,88,67,-1.511109818518328],[118,88,68,-1.4985299394915121],[118,88,69,-1.4910034957994234],[118,88,70,-1.4879767247597504],[118,88,71,-1.491829726383638],[118,88,72,-1.498997208725806],[118,88,73,-1.5090615454385987],[118,88,74,-1.5234638002065974],[118,88,75,-1.5311926412124885],[118,88,76,-1.5337246385170715],[118,88,77,-1.5331141837611422],[118,88,78,-1.5205800600073058],[118,88,79,-1.5047143699202725],[118,89,64,-1.5723891398191798],[118,89,65,-1.574215833349141],[118,89,66,-1.569389587057928],[118,89,67,-1.561540414982014],[118,89,68,-1.5453360801665028],[118,89,69,-1.539496339892868],[118,89,70,-1.5356598598128242],[118,89,71,-1.5369888490113057],[118,89,72,-1.5461328415373723],[118,89,73,-1.5569907114297894],[118,89,74,-1.5708982652036456],[118,89,75,-1.5786767378560942],[118,89,76,-1.5817118480024255],[118,89,77,-1.581388184492377],[118,89,78,-1.568400416676658],[118,89,79,-1.5532790251026691],[118,90,64,-1.6249525985842057],[118,90,65,-1.6274484476126567],[118,90,66,-1.6235313477350994],[118,90,67,-1.6132177839345454],[118,90,68,-1.5972003045523269],[118,90,69,-1.5916700927768836],[118,90,70,-1.588037455867862],[118,90,71,-1.590003398326868],[118,90,72,-1.5984834189973356],[118,90,73,-1.6085442739411508],[118,90,74,-1.6238802056882196],[118,90,75,-1.6308434485354242],[118,90,76,-1.6352309616384275],[118,90,77,-1.6352464536255638],[118,90,78,-1.6244043438186222],[118,90,79,-1.608636052738781],[118,91,64,-1.671871829466047],[118,91,65,-1.6773313295823353],[118,91,66,-1.6718162759427107],[118,91,67,-1.6571826600841706],[118,91,68,-1.643968573606024],[118,91,69,-1.6386457488667512],[118,91,70,-1.6334181457497612],[118,91,71,-1.6372838558585483],[118,91,72,-1.6450385670415901],[118,91,73,-1.6580189011109003],[118,91,74,-1.671947087861404],[118,91,75,-1.680076225189354],[118,91,76,-1.68409173204508],[118,91,77,-1.6835463463070874],[118,91,78,-1.6766492819533232],[118,91,79,-1.6584166921038912],[118,92,64,-1.69342635006715],[118,92,65,-1.6991652446061851],[118,92,66,-1.6944604134039387],[118,92,67,-1.6766404913812076],[118,92,68,-1.6676140342563972],[118,92,69,-1.6619870375642276],[118,92,70,-1.6573362727111327],[118,92,71,-1.6624455642758547],[118,92,72,-1.6718335191804572],[118,92,73,-1.6854426719334183],[118,92,74,-1.7001631540187363],[118,92,75,-1.7088146519355145],[118,92,76,-1.712362774391028],[118,92,77,-1.7115710436702332],[118,92,78,-1.7045140070977485],[118,92,79,-1.6878538834743533],[118,93,64,-1.7384256777655036],[118,93,65,-1.7449955909651216],[118,93,66,-1.7373999700756118],[118,93,67,-1.7227569432596017],[118,93,68,-1.7144993539473021],[118,93,69,-1.7113706965224589],[118,93,70,-1.7053244839169013],[118,93,71,-1.7101574591700572],[118,93,72,-1.7215709553813086],[118,93,73,-1.7359735124077684],[118,93,74,-1.749066340289578],[118,93,75,-1.759071708360596],[118,93,76,-1.7638331402505658],[118,93,77,-1.7611516872327078],[118,93,78,-1.7528221519172298],[118,93,79,-1.7359564765088322],[118,94,64,-1.785506681742346],[118,94,65,-1.7897650719303342],[118,94,66,-1.7827887076515134],[118,94,67,-1.7703108040509639],[118,94,68,-1.763229505575966],[118,94,69,-1.7580719311674284],[118,94,70,-1.7543403380781886],[118,94,71,-1.759753129886957],[118,94,72,-1.76819894957276],[118,94,73,-1.7806712365662705],[118,94,74,-1.7960639663133162],[118,94,75,-1.807191280384215],[118,94,76,-1.8118970987018068],[118,94,77,-1.8101499480618033],[118,94,78,-1.800791451869969],[118,94,79,-1.7850908554077498],[118,95,64,-1.8236436663487643],[118,95,65,-1.8257717033782341],[118,95,66,-1.8209617749765767],[118,95,67,-1.8099154398680917],[118,95,68,-1.8037350598160447],[118,95,69,-1.7965465603194857],[118,95,70,-1.792966511229665],[118,95,71,-1.799808940888639],[118,95,72,-1.807011104997107],[118,95,73,-1.8181946088267764],[118,95,74,-1.8329939728895361],[118,95,75,-1.8454947743112706],[118,95,76,-1.8524941207928305],[118,95,77,-1.8512504502876825],[118,95,78,-1.8435504938541567],[118,95,79,-1.828005146784695],[118,96,64,-1.8693674816169816],[118,96,65,-1.8707428077045014],[118,96,66,-1.8667565603318954],[118,96,67,-1.8608043170158632],[118,96,68,-1.8502159085643972],[118,96,69,-1.841607903195833],[118,96,70,-1.8406357312677788],[118,96,71,-1.8461789592307716],[118,96,72,-1.8544256805772983],[118,96,73,-1.8642419786516546],[118,96,74,-1.8809113229275938],[118,96,75,-1.8927851393798325],[118,96,76,-1.8998060861407255],[118,96,77,-1.9006990451379695],[118,96,78,-1.894028367897402],[118,96,79,-1.878401003865731],[118,97,64,-1.9172473831826693],[118,97,65,-1.9178104790308996],[118,97,66,-1.9123453379295157],[118,97,67,-1.9053439545621698],[118,97,68,-1.8941853493140155],[118,97,69,-1.8833973528412074],[118,97,70,-1.8827459551211483],[118,97,71,-1.8875158860844317],[118,97,72,-1.8967802837276224],[118,97,73,-1.910587686071604],[118,97,74,-1.9252459479252677],[118,97,75,-1.938707930489096],[118,97,76,-1.946250108142493],[118,97,77,-1.948305938757414],[118,97,78,-1.9435733681581002],[118,97,79,-1.9298736460531123],[118,98,64,-1.9717811917231223],[118,98,65,-1.9722776011868117],[118,98,66,-1.9674099986309237],[118,98,67,-1.9573756460015532],[118,98,68,-1.943666608422943],[118,98,69,-1.9355901643594933],[118,98,70,-1.9350834613734285],[118,98,71,-1.9401866589123618],[118,98,72,-1.9490222153701444],[118,98,73,-1.963565121613794],[118,98,74,-1.9773445002156704],[118,98,75,-1.9924853626249601],[118,98,76,-1.9994614659216543],[118,98,77,-1.999789475576038],[118,98,78,-1.9950545273959772],[118,98,79,-1.9816337884257378],[118,99,64,-2.019435657052941],[118,99,65,-2.021075158730164],[118,99,66,-2.014281778558493],[118,99,67,-2.0019071715030377],[118,99,68,-1.9913536564673622],[118,99,69,-1.9837234836076196],[118,99,70,-1.9832032290299855],[118,99,71,-1.9869337624027916],[118,99,72,-1.9940056024510597],[118,99,73,-2.009148639596216],[118,99,74,-2.0244517814364547],[118,99,75,-2.04245727948808],[118,99,76,-2.047093844255614],[118,99,77,-2.0473501812434116],[118,99,78,-2.0444723814349928],[118,99,79,-2.0306394545932602],[118,100,64,-2.041824864574342],[118,100,65,-2.0402041061093112],[118,100,66,-2.026307518027014],[118,100,67,-2.006758571561378],[118,100,68,-1.9930280797887663],[118,100,69,-1.9833259176540803],[118,100,70,-1.9827249573038412],[118,100,71,-1.9836856953426025],[118,100,72,-1.9890014845326447],[118,100,73,-2.0021916472345116],[118,100,74,-2.0164310361242097],[118,100,75,-2.033291174538957],[118,100,76,-2.039874407756172],[118,100,77,-2.0417182305533466],[118,100,78,-2.0395350068756803],[118,100,79,-2.0272941213304616],[118,101,64,-2.0925804160006196],[118,101,65,-2.09066473597101],[118,101,66,-2.0763000950240444],[118,101,67,-2.0555312103118677],[118,101,68,-2.037806623821991],[118,101,69,-2.0281995294536275],[118,101,70,-2.027170619187513],[118,101,71,-2.031361189596289],[118,101,72,-2.0364236503530933],[118,101,73,-2.0482886706707517],[118,101,74,-2.061529808133816],[118,101,75,-2.078669939676732],[118,101,76,-2.0860751089926284],[118,101,77,-2.088290790472987],[118,101,78,-2.0861343482224526],[118,101,79,-2.0730028035368413],[118,102,64,-2.1431575522467554],[118,102,65,-2.139408099757306],[118,102,66,-2.125832482331262],[118,102,67,-2.10545167696303],[118,102,68,-2.08490334442519],[118,102,69,-2.07548386008521],[118,102,70,-2.075432280918154],[118,102,71,-2.077579472809535],[118,102,72,-2.08311590392454],[118,102,73,-2.0960752458968743],[118,102,74,-2.1073150239014597],[118,102,75,-2.123895864497724],[118,102,76,-2.1335243022769266],[118,102,77,-2.135879887778668],[118,102,78,-2.1322005698475763],[118,102,79,-2.121702092359567],[118,103,64,-2.1818431213402834],[118,103,65,-2.1798697195005707],[118,103,66,-2.1656871696652336],[118,103,67,-2.147666292741305],[118,103,68,-2.12825021520956],[118,103,69,-2.1183857734226677],[118,103,70,-2.115691020114362],[118,103,71,-2.1167558347494473],[118,103,72,-2.1244698149100847],[118,103,73,-2.138462745514218],[118,103,74,-2.1519103381584115],[118,103,75,-2.165754771368085],[118,103,76,-2.17882757655033],[118,103,77,-2.179302960006384],[118,103,78,-2.174772047332475],[118,103,79,-2.166069518761605],[118,104,64,-2.230490119750892],[118,104,65,-2.2306290259838275],[118,104,66,-2.217706513266129],[118,104,67,-2.1984655447427857],[118,104,68,-2.1797404539042846],[118,104,69,-2.168504970235938],[118,104,70,-2.1637844173960596],[118,104,71,-2.165334335734594],[118,104,72,-2.1719986549271004],[118,104,73,-2.186519365781165],[118,104,74,-2.2038600604870386],[118,104,75,-2.2158921036442614],[118,104,76,-2.2272318985493538],[118,104,77,-2.228722213150534],[118,104,78,-2.2244355074070232],[118,104,79,-2.214940108857426],[118,105,64,-2.278300870180143],[118,105,65,-2.2806379088800455],[118,105,66,-2.262435712812095],[118,105,67,-2.2403954460318025],[118,105,68,-2.2213355856332444],[118,105,69,-2.2119129270559927],[118,105,70,-2.2076242175825844],[118,105,71,-2.207773647004732],[118,105,72,-2.212878157216938],[118,105,73,-2.2286403259101366],[118,105,74,-2.2452491663673237],[118,105,75,-2.2579006072944487],[118,105,76,-2.2699483677068297],[118,105,77,-2.2751183317975894],[118,105,78,-2.2762897716887625],[118,105,79,-2.2662667721044816],[118,106,64,-2.3370167353882696],[118,106,65,-2.336472505624241],[118,106,66,-2.3201062805480084],[118,106,67,-2.295845673359817],[118,106,68,-2.274706344705573],[118,106,69,-2.26743649787671],[118,106,70,-2.2617114842402857],[118,106,71,-2.262868771878335],[118,106,72,-2.2679680844681416],[118,106,73,-2.280890560534756],[118,106,74,-2.2965806178232095],[118,106,75,-2.311671371898602],[118,106,76,-2.3236416450285],[118,106,77,-2.3309537265761295],[118,106,78,-2.3288252823522377],[118,106,79,-2.3198008826208767],[118,107,64,-2.387904399558037],[118,107,65,-2.386129276620204],[118,107,66,-2.3693283724774092],[118,107,67,-2.3452725246249404],[118,107,68,-2.324035981656764],[118,107,69,-2.315266607135449],[118,107,70,-2.3128782098123],[118,107,71,-2.3121042347035523],[118,107,72,-2.315995886164121],[118,107,73,-2.328790228357812],[118,107,74,-2.3454845986249686],[118,107,75,-2.362861659083834],[118,107,76,-2.3754056974076327],[118,107,77,-2.3806003785795427],[118,107,78,-2.3777201157392787],[118,107,79,-2.368100210933272],[118,108,64,-2.4408434525439797],[118,108,65,-2.4401205576898586],[118,108,66,-2.4227723320546635],[118,108,67,-2.4000132872763436],[118,108,68,-2.377267711541104],[118,108,69,-2.368012029821835],[118,108,70,-2.3651535027755055],[118,108,71,-2.363874364862125],[118,108,72,-2.367482195530333],[118,108,73,-2.3805028269890327],[118,108,74,-2.397144049994373],[118,108,75,-2.416751274698189],[118,108,76,-2.430493975202678],[118,108,77,-2.4348101785599914],[118,108,78,-2.432131814214542],[118,108,79,-2.4228587202700766],[118,109,64,-2.4850043762183907],[118,109,65,-2.488720800360036],[118,109,66,-2.4772232167294113],[118,109,67,-2.460312521817589],[118,109,68,-2.4359350383860447],[118,109,69,-2.4296403083038527],[118,109,70,-2.427803086578047],[118,109,71,-2.426260625101598],[118,109,72,-2.426619264343948],[118,109,73,-2.4403757108717214],[118,109,74,-2.458088701124641],[118,109,75,-2.4762869057713544],[118,109,76,-2.487762862616174],[118,109,77,-2.4891131533531095],[118,109,78,-2.4831009762623313],[118,109,79,-2.470142982196652],[118,110,64,-2.5327264471740314],[118,110,65,-2.535793041630669],[118,110,66,-2.524789712348067],[118,110,67,-2.510866959596691],[118,110,68,-2.4891140011855266],[118,110,69,-2.4795240436840476],[118,110,70,-2.4765827902921793],[118,110,71,-2.4770802317014464],[118,110,72,-2.479225892376242],[118,110,73,-2.490731586191239],[118,110,74,-2.50900538261259],[118,110,75,-2.5264683164720005],[118,110,76,-2.535795220376412],[118,110,77,-2.538091800322477],[118,110,78,-2.5307299601160493],[118,110,79,-2.5200139888737025],[118,111,64,-2.571521569002027],[118,111,65,-2.5765670151433824],[118,111,66,-2.568055071322419],[118,111,67,-2.5541033043379473],[118,111,68,-2.534732072328331],[118,111,69,-2.521933644899934],[118,111,70,-2.520964142189968],[118,111,71,-2.5204941152302665],[118,111,72,-2.524630177018015],[118,111,73,-2.538986565895574],[118,111,74,-2.555965033148972],[118,111,75,-2.575147972132624],[118,111,76,-2.5833321820662265],[118,111,77,-2.5852987590165797],[118,111,78,-2.579674887072906],[118,111,79,-2.568925815061295],[118,112,64,-2.620221288625705],[118,112,65,-2.625376998076829],[118,112,66,-2.617813900339718],[118,112,67,-2.604966903092241],[118,112,68,-2.585245084120178],[118,112,69,-2.5704643734093087],[118,112,70,-2.569257159894028],[118,112,71,-2.5696947502349072],[118,112,72,-2.5734858636533184],[118,112,73,-2.589658466677889],[118,112,74,-2.6089269438005527],[118,112,75,-2.627217760237943],[118,112,76,-2.6356902161888525],[118,112,77,-2.6350405586421397],[118,112,78,-2.6290383401107396],[118,112,79,-2.616563023924219],[118,113,64,-2.6701898422337047],[118,113,65,-2.6743544509068613],[118,113,66,-2.667033706386992],[118,113,67,-2.653870024436839],[118,113,68,-2.6353926242698726],[118,113,69,-2.6222033704563086],[118,113,70,-2.6185390004864733],[118,113,71,-2.6171767697012087],[118,113,72,-2.622398661061991],[118,113,73,-2.641626166794817],[118,113,74,-2.6619615958269467],[118,113,75,-2.677362387351166],[118,113,76,-2.6862902080623607],[118,113,77,-2.684217779444058],[118,113,78,-2.6783023363813756],[118,113,79,-2.664925406168949],[118,114,64,-2.7257521333759867],[118,114,65,-2.7271545766144336],[118,114,66,-2.721504193189566],[118,114,67,-2.7106872494854892],[118,114,68,-2.6919884409486725],[118,114,69,-2.678414394703022],[118,114,70,-2.6712334337688515],[118,114,71,-2.670901367568514],[118,114,72,-2.6779583947614793],[118,114,73,-2.6993774886522672],[118,114,74,-2.71979398486931],[118,114,75,-2.732982026985433],[118,114,76,-2.738624750886497],[118,114,77,-2.7397440659863435],[118,114,78,-2.732531052756155],[118,114,79,-2.720634488254177],[118,115,64,-2.7699262014910735],[118,115,65,-2.772525913163768],[118,115,66,-2.768256276886001],[118,115,67,-2.7558213595683263],[118,115,68,-2.741525531506199],[118,115,69,-2.726632835591823],[118,115,70,-2.7166438058273052],[118,115,71,-2.72012749661013],[118,115,72,-2.728195734056092],[118,115,73,-2.7506317165128986],[118,115,74,-2.7682054531030844],[118,115,75,-2.7812901923216646],[118,115,76,-2.7900067796239636],[118,115,77,-2.791638954525605],[118,115,78,-2.78203615518306],[118,115,79,-2.771308684049422],[118,116,64,-2.7920471701632996],[118,116,65,-2.7997734299206165],[118,116,66,-2.7971127077377846],[118,116,67,-2.7889021085725743],[118,116,68,-2.7791451229072615],[118,116,69,-2.769335774999487],[118,116,70,-2.764078936741694],[118,116,71,-2.7694595958429664],[118,116,72,-2.78014234227368],[118,116,73,-2.8001362549750075],[118,116,74,-2.815699673716507],[118,116,75,-2.828619717647841],[118,116,76,-2.8364340066264173],[118,116,77,-2.837448217961801],[118,116,78,-2.8231816182340093],[118,116,79,-2.807728588812748],[118,117,64,-2.8399054918719604],[118,117,65,-2.849601301801978],[118,117,66,-2.8482831695389104],[118,117,67,-2.839210804262746],[118,117,68,-2.825505478088305],[118,117,69,-2.8216776913453776],[118,117,70,-2.8165137981479105],[118,117,71,-2.8223183160529786],[118,117,72,-2.8345495767185893],[118,117,73,-2.852352683285611],[118,117,74,-2.8673153219944627],[118,117,75,-2.880969111495141],[118,117,76,-2.8883580011998564],[118,117,77,-2.887523694968661],[118,117,78,-2.870031451437472],[118,117,79,-2.8510192095844236],[118,118,64,-2.889107579865628],[118,118,65,-2.8960541203687735],[118,118,66,-2.89663062767861],[118,118,67,-2.887029532423969],[118,118,68,-2.8741106449217013],[118,118,69,-2.8681941527942976],[118,118,70,-2.8661662550188622],[118,118,71,-2.8708212137548355],[118,118,72,-2.882824363902885],[118,118,73,-2.8985788344899026],[118,118,74,-2.917212236403724],[118,118,75,-2.930948863473553],[118,118,76,-2.937094576325446],[118,118,77,-2.936190957546605],[118,118,78,-2.9201247653362405],[118,118,79,-2.8983927561092875],[118,119,64,-2.9293605604175093],[118,119,65,-2.9379656087249315],[118,119,66,-2.936595220179788],[118,119,67,-2.926407351417272],[118,119,68,-2.9162447619176706],[118,119,69,-2.908931520516629],[118,119,70,-2.9082777702962708],[118,119,71,-2.915211815186507],[118,119,72,-2.925622000090585],[118,119,73,-2.9428010852377584],[118,119,74,-2.963052603799138],[118,119,75,-2.977900382339287],[118,119,76,-2.9837261470495733],[118,119,77,-2.984517618389841],[118,119,78,-2.9703728851402493],[118,119,79,-2.9486118107841834],[118,120,64,-2.9770198515849704],[118,120,65,-2.9875845129550895],[118,120,66,-2.983001617523835],[118,120,67,-2.9701743528839764],[118,120,68,-2.9629057440768087],[118,120,69,-2.955488900558327],[118,120,70,-2.956188686355054],[118,120,71,-2.964517180242515],[118,120,72,-2.9729367268865086],[118,120,73,-2.989304024967336],[118,120,74,-3.01130159795375],[118,120,75,-3.025940877548228],[118,120,76,-3.0337585597468353],[118,120,77,-3.0338274283888578],[118,120,78,-3.022459926043996],[118,120,79,-2.9994196959584354],[118,121,64,-3.0203157382864463],[118,121,65,-3.027941028122112],[118,121,66,-3.022500937133174],[118,121,67,-3.008354979447323],[118,121,68,-3.0025898268363793],[118,121,69,-2.998032635482778],[118,121,70,-2.998339337215352],[118,121,71,-3.005538023491497],[118,121,72,-3.0135140570947523],[118,121,73,-3.0307145735194587],[118,121,74,-3.0507385165763625],[118,121,75,-3.0665127709164315],[118,121,76,-3.0797111338945817],[118,121,77,-3.0848751535893792],[118,121,78,-3.078214375291451],[118,121,79,-3.0570976099407177],[118,122,64,-3.071438028453559],[118,122,65,-3.0786802787487764],[118,122,66,-3.074576314128594],[118,122,67,-3.062448181089348],[118,122,68,-3.0570508846850677],[118,122,69,-3.0540389670499666],[118,122,70,-3.0537968791538264],[118,122,71,-3.0576895101435793],[118,122,72,-3.065455187404138],[118,122,73,-3.082956854916305],[118,122,74,-3.104814648606929],[118,122,75,-3.1223344446386574],[118,122,76,-3.1347543527615267],[118,122,77,-3.1397288416965976],[118,122,78,-3.132949795213133],[118,122,79,-3.1123811063606786],[118,123,64,-3.115031889723534],[118,123,65,-3.1221763983292203],[118,123,66,-3.1194962673744553],[118,123,67,-3.110312071550636],[118,123,68,-3.1065907151755514],[118,123,69,-3.1051315377677993],[118,123,70,-3.1026396158086404],[118,123,71,-3.105682678410548],[118,123,72,-3.113252057501663],[118,123,73,-3.1328451705556377],[118,123,74,-3.155975862464373],[118,123,75,-3.1708779680735186],[118,123,76,-3.1841680414997633],[118,123,77,-3.186938236235362],[118,123,78,-3.1824816410561607],[118,123,79,-3.163154596760232],[118,124,64,-3.1598981413260416],[118,124,65,-3.1669273395077946],[118,124,66,-3.164750176967581],[118,124,67,-3.157115777578319],[118,124,68,-3.1527112672476134],[118,124,69,-3.1511863226895485],[118,124,70,-3.1495904931354515],[118,124,71,-3.152588208172479],[118,124,72,-3.162067467483129],[118,124,73,-3.1816561681926165],[118,124,74,-3.2042875951712415],[118,124,75,-3.220607168027292],[118,124,76,-3.2316510484817407],[118,124,77,-3.237994067257057],[118,124,78,-3.2347167961281147],[118,124,79,-3.2155410028051987],[118,125,64,-3.2038640139565233],[118,125,65,-3.2106264536617535],[118,125,66,-3.210015689748273],[118,125,67,-3.2040362566433886],[118,125,68,-3.1998573987993133],[118,125,69,-3.197710961955373],[118,125,70,-3.1973240317821165],[118,125,71,-3.199367373970567],[118,125,72,-3.209858601818524],[118,125,73,-3.229715070597577],[118,125,74,-3.2526715950544074],[118,125,75,-3.2709491535080395],[118,125,76,-3.280764423137639],[118,125,77,-3.289314344588063],[118,125,78,-3.2839410103309783],[118,125,79,-3.2651467163334678],[118,126,64,-3.2458063995810296],[118,126,65,-3.2567564974847736],[118,126,66,-3.2561716261904743],[118,126,67,-3.249641449610196],[118,126,68,-3.244669677721612],[118,126,69,-3.244220971796514],[118,126,70,-3.243696261137525],[118,126,71,-3.2509273492035113],[118,126,72,-3.2594906970881143],[118,126,73,-3.2782728823556826],[118,126,74,-3.302930279718707],[118,126,75,-3.3199108964683988],[118,126,76,-3.330594510115443],[118,126,77,-3.3366052953061685],[118,126,78,-3.3324529037590094],[118,126,79,-3.314525774914355],[118,127,64,-3.2847419541515683],[118,127,65,-3.2978860496469045],[118,127,66,-3.2977035871798983],[118,127,67,-3.2884389181757894],[118,127,68,-3.2840419681644892],[118,127,69,-3.286504286485013],[118,127,70,-3.290618001410082],[118,127,71,-3.2982735098116214],[118,127,72,-3.306887485084592],[118,127,73,-3.327612133502899],[118,127,74,-3.351962801230104],[118,127,75,-3.3700635409986814],[118,127,76,-3.380313273480537],[118,127,77,-3.382943852621383],[118,127,78,-3.3786124881014468],[118,127,79,-3.3612507461812937],[118,128,64,-3.333222563918578],[118,128,65,-3.3462395746247116],[118,128,66,-3.346212902570811],[118,128,67,-3.335917259083268],[118,128,68,-3.3280146698024953],[118,128,69,-3.3336612697540917],[118,128,70,-3.339545247627275],[118,128,71,-3.3492354446551595],[118,128,72,-3.359788355092156],[118,128,73,-3.3763924922162256],[118,128,74,-3.399838870410683],[118,128,75,-3.420839558521005],[118,128,76,-3.4318184249874384],[118,128,77,-3.432634153016058],[118,128,78,-3.424973227624701],[118,128,79,-3.407917254949331],[118,129,64,-3.3753184908567198],[118,129,65,-3.39055434002097],[118,129,66,-3.3950898499183255],[118,129,67,-3.3881411279521014],[118,129,68,-3.3794085204562876],[118,129,69,-3.382717259360571],[118,129,70,-3.3908711561528575],[118,129,71,-3.400801011351212],[118,129,72,-3.409681628312815],[118,129,73,-3.426718189318045],[118,129,74,-3.4492834282732288],[118,129,75,-3.4707185152571998],[118,129,76,-3.478267210630826],[118,129,77,-3.473790745346407],[118,129,78,-3.461724895014217],[118,129,79,-3.443557727591854],[118,130,64,-3.427816769302208],[118,130,65,-3.442688253182605],[118,130,66,-3.4461807891931886],[118,130,67,-3.4417965786439684],[118,130,68,-3.4335178545511638],[118,130,69,-3.4350073728315937],[118,130,70,-3.4452205494481234],[118,130,71,-3.454354708176482],[118,130,72,-3.4629349072504914],[118,130,73,-3.4807870098438016],[118,130,74,-3.510301611564677],[118,130,75,-3.565526819924617],[118,130,76,-3.5941571953044558],[118,130,77,-3.6138070186072526],[118,130,78,-3.617835368153729],[118,130,79,-3.6476366075672724],[118,131,64,-3.475310759966484],[118,131,65,-3.4925871960795725],[118,131,66,-3.4940272694329644],[118,131,67,-3.490912690146058],[118,131,68,-3.482831264749432],[118,131,69,-3.4845629418111104],[118,131,70,-3.4933010075172355],[118,131,71,-3.500244770316649],[118,131,72,-3.5094446672667305],[118,131,73,-3.528865730413005],[118,131,74,-3.5824897941688985],[118,131,75,-3.64007223045774],[118,131,76,-3.6662157712277392],[118,131,77,-3.678640470879804],[118,131,78,-3.691140623150603],[118,131,79,-3.693736888083638],[118,132,64,-3.5120486757231344],[118,132,65,-3.531323855425951],[118,132,66,-3.533743096030235],[118,132,67,-3.5294655842414766],[118,132,68,-3.5267887260255137],[118,132,69,-3.5296152627357844],[118,132,70,-3.536807199582887],[118,132,71,-3.543974170857949],[118,132,72,-3.5547402112758113],[118,132,73,-3.575910448901587],[118,132,74,-3.6405907695438833],[118,132,75,-3.69175115715197],[118,132,76,-3.720397166694048],[118,132,77,-3.722563731315288],[118,132,78,-3.7409740205741717],[118,132,79,-3.7408632515049653],[118,133,64,-3.567353138315241],[118,133,65,-3.581411376039701],[118,133,66,-3.58198923639383],[118,133,67,-3.5735496678510756],[118,133,68,-3.5720444493236636],[118,133,69,-3.5745316196840435],[118,133,70,-3.580602003518023],[118,133,71,-3.590603841768016],[118,133,72,-3.6070567957837234],[118,133,73,-3.651620255406563],[118,133,74,-3.7014340521563582],[118,133,75,-3.735088711170009],[118,133,76,-3.7686140040246134],[118,133,77,-3.7723784549883312],[118,133,78,-3.7887472349854066],[118,133,79,-3.780811317909566],[118,134,64,-3.6170821914893576],[118,134,65,-3.6284588737446213],[118,134,66,-3.6296439983526128],[118,134,67,-3.6222598611306185],[118,134,68,-3.618043821681986],[118,134,69,-3.6223706702816316],[118,134,70,-3.6293518503847464],[118,134,71,-3.638053252788889],[118,134,72,-3.6563027593650443],[118,134,73,-3.705705606007189],[118,134,74,-3.7523791261345574],[118,134,75,-3.7867573775500447],[118,134,76,-3.822462502917824],[118,134,77,-3.8382779681594354],[118,134,78,-3.8544688378320897],[118,134,79,-3.837483505639515],[118,135,64,-3.6599815842113106],[118,135,65,-3.6702002074494358],[118,135,66,-3.6719307648639896],[118,135,67,-3.6637648527901967],[118,135,68,-3.6625450184754964],[118,135,69,-3.6672979230391687],[118,135,70,-3.673215735615235],[118,135,71,-3.6838569176368074],[118,135,72,-3.701631617562854],[118,135,73,-3.7457249495295954],[118,135,74,-3.7867537556634647],[118,135,75,-3.817411167893571],[118,135,76,-3.8502125081756224],[118,135,77,-3.8688490110440834],[118,135,78,-3.8880319094391487],[118,135,79,-3.8797671925182806],[118,136,64,-3.7092877183008133],[118,136,65,-3.721656933607474],[118,136,66,-3.719511402508166],[118,136,67,-3.71128861290489],[118,136,68,-3.709602250491518],[118,136,69,-3.714708786004761],[118,136,70,-3.7202291964234515],[118,136,71,-3.732532691962413],[118,136,72,-3.7501209419620656],[118,136,73,-3.8032074571450707],[118,136,74,-3.841621438498023],[118,136,75,-3.872676739124219],[118,136,76,-3.9035659245465566],[118,136,77,-3.927112889612891],[118,136,78,-3.949274401271763],[118,136,79,-3.9359238587603587],[118,137,64,-3.756776318875774],[118,137,65,-3.771367569923362],[118,137,66,-3.7690551909005654],[118,137,67,-3.760015959063434],[118,137,68,-3.7571189128474987],[118,137,69,-3.7636635457634395],[118,137,70,-3.768411445439056],[118,137,71,-3.779249727238981],[118,137,72,-3.8018481055545177],[118,137,73,-3.847470964321428],[118,137,74,-3.8761921144274822],[118,137,75,-3.902225108805048],[118,137,76,-3.931240387676337],[118,137,77,-3.9494928910323477],[118,137,78,-3.9646326084333627],[118,137,79,-3.9719314185568795],[118,138,64,-3.8116831958635906],[118,138,65,-3.8253090769695692],[118,138,66,-3.82368780475758],[118,138,67,-3.815191115183712],[118,138,68,-3.8117084215032646],[118,138,69,-3.8169809523563623],[118,138,70,-3.8217019804482106],[118,138,71,-3.8334099277383062],[118,138,72,-3.8484317506446106],[118,138,73,-3.8892373806675096],[118,138,74,-3.9126685874823455],[118,138,75,-3.933915433778685],[118,138,76,-3.9669343825187586],[118,138,77,-3.980512347976045],[118,138,78,-3.9915068821002504],[118,138,79,-3.999414046033968],[118,139,64,-3.8611689620508485],[118,139,65,-3.873566824195745],[118,139,66,-3.8710648464127235],[118,139,67,-3.8664460788527544],[118,139,68,-3.8633722050287282],[118,139,69,-3.8648323109454448],[118,139,70,-3.870954237934336],[118,139,71,-3.880672243611262],[118,139,72,-3.898578598488326],[118,139,73,-3.945480525926496],[118,139,74,-3.9714311500680544],[118,139,75,-3.9997491017536393],[118,139,76,-4.035602565199436],[118,139,77,-4.047947944558532],[118,139,78,-4.056438199846427],[118,139,79,-4.044248995183021],[118,140,64,-3.9215915990701733],[118,140,65,-3.9330313178469494],[118,140,66,-3.930702856245073],[118,140,67,-3.923082634489972],[118,140,68,-3.913406369728115],[118,140,69,-3.910514056801373],[118,140,70,-3.91715607139916],[118,140,71,-3.924506744512902],[118,140,72,-3.9456583336347237],[118,140,73,-3.9875251011815043],[118,140,74,-4.015618428121096],[118,140,75,-4.0475284347406575],[118,140,76,-4.082338985426498],[118,140,77,-4.098627492381581],[118,140,78,-4.099527433147538],[118,140,79,-4.086589932371959],[118,141,64,-3.970628472646813],[118,141,65,-3.9845819439983075],[118,141,66,-3.9859254741089942],[118,141,67,-3.98033896294286],[118,141,68,-3.9674283698558233],[118,141,69,-3.964912392410943],[118,141,70,-3.969809840855286],[118,141,71,-3.9743362423746706],[118,141,72,-3.9951718034482617],[118,141,73,-4.028006742655846],[118,141,74,-4.055970104449826],[118,141,75,-4.086778838598481],[118,141,76,-4.115588488983089],[118,141,77,-4.131879359292665],[118,141,78,-4.130822659970681],[118,141,79,-4.124219736580043],[118,142,64,-4.017854685144895],[118,142,65,-4.032793179393978],[118,142,66,-4.035701463663762],[118,142,67,-4.031735339690433],[118,142,68,-4.019517722041807],[118,142,69,-4.01170306768638],[118,142,70,-4.0175088811282045],[118,142,71,-4.0215285120827895],[118,142,72,-4.042863343965347],[118,142,73,-4.072250936684739],[118,142,74,-4.098082985257764],[118,142,75,-4.128063777907897],[118,142,76,-4.1572947029432905],[118,142,77,-4.1726266931680325],[118,142,78,-4.175442150070857],[118,142,79,-4.172473748682674],[118,143,64,-4.062912409942138],[118,143,65,-4.077665450542196],[118,143,66,-4.080825456074722],[118,143,67,-4.076834652272063],[118,143,68,-4.064772596407656],[118,143,69,-4.056734052081222],[118,143,70,-4.062267202925538],[118,143,71,-4.067087755013813],[118,143,72,-4.082714472170189],[118,143,73,-4.11307319324302],[118,143,74,-4.13900992210837],[118,143,75,-4.164318474416421],[118,143,76,-4.194162987151351],[118,143,77,-4.20483255136441],[118,143,78,-4.213141432094795],[118,143,79,-4.215424216917624],[118,144,64,-4.113407094721766],[118,144,65,-4.127571202888761],[118,144,66,-4.130445900006817],[118,144,67,-4.12345224703612],[118,144,68,-4.112987408824777],[118,144,69,-4.105162914824895],[118,144,70,-4.105948947500403],[118,144,71,-4.113486981523779],[118,144,72,-4.130088862730069],[118,144,73,-4.161139105234426],[118,144,74,-4.192569566216402],[118,144,75,-4.216003869315667],[118,144,76,-4.246323085830084],[118,144,77,-4.260416324693201],[118,144,78,-4.2678473094834235],[118,144,79,-4.272692049042163],[118,145,64,-4.1568639581562],[118,145,65,-4.171363218868732],[118,145,66,-4.172738990098026],[118,145,67,-4.161664718911316],[118,145,68,-4.152304939438748],[118,145,69,-4.146383132423217],[118,145,70,-4.14718622381417],[118,145,71,-4.155310792860939],[118,145,72,-4.171213975406918],[118,145,73,-4.191332254933016],[118,145,74,-4.219915219056911],[118,145,75,-4.241198202608069],[118,145,76,-4.260816395460408],[118,145,77,-4.268079403270953],[118,145,78,-4.266910504304154],[118,145,79,-4.272109371627901],[118,146,64,-4.208098224433314],[118,146,65,-4.224607324087515],[118,146,66,-4.226730515003105],[118,146,67,-4.216262730234588],[118,146,68,-4.204848750724966],[118,146,69,-4.200938560680646],[118,146,70,-4.201005010182854],[118,146,71,-4.208820284276619],[118,146,72,-4.222532047928604],[118,146,73,-4.241881029383422],[118,146,74,-4.271187164987228],[118,146,75,-4.296307044592913],[118,146,76,-4.314560230089378],[118,146,77,-4.3225083874219585],[118,146,78,-4.318795068888335],[118,146,79,-4.318326332878512],[118,147,64,-4.258127822758978],[118,147,65,-4.270392319865172],[118,147,66,-4.2750987567366625],[118,147,67,-4.264515972978509],[118,147,68,-4.252536420591133],[118,147,69,-4.247992649620125],[118,147,70,-4.249606803692911],[118,147,71,-4.257161697637578],[118,147,72,-4.271350399452],[118,147,73,-4.291473418620444],[118,147,74,-4.31828923601505],[118,147,75,-4.3438522733770375],[118,147,76,-4.360274071033798],[118,147,77,-4.3684872029927],[118,147,78,-4.34639771806731],[118,147,79,-4.3145718556189925],[118,148,64,-4.279006453324417],[118,148,65,-4.2925455164857365],[118,148,66,-4.294620645869511],[118,148,67,-4.281864974184591],[118,148,68,-4.272435705026373],[118,148,69,-4.268124873430278],[118,148,70,-4.268582897463195],[118,148,71,-4.278665155400806],[118,148,72,-4.291582971397272],[118,148,73,-4.311842111968286],[118,148,74,-4.339790520502385],[118,148,75,-4.362507014749569],[118,148,76,-4.3776505565378825],[118,148,77,-4.383231874912531],[118,148,78,-4.34393471065578],[118,148,79,-4.315686875168803],[118,149,64,-4.327496208412533],[118,149,65,-4.342887162530337],[118,149,66,-4.344494121271984],[118,149,67,-4.333154781736947],[118,149,68,-4.323266666728493],[118,149,69,-4.315685707519853],[118,149,70,-4.316411462835149],[118,149,71,-4.32644154069282],[118,149,72,-4.339513279695889],[118,149,73,-4.3626141440565736],[118,149,74,-4.393129927074078],[118,149,75,-4.41441576984516],[118,149,76,-4.428974580576923],[118,149,77,-4.434458573141721],[118,149,78,-4.398218414546952],[118,149,79,-4.3700976107949225],[118,150,64,-4.376224530468173],[118,150,65,-4.393903170786877],[118,150,66,-4.394983927779857],[118,150,67,-4.383064749677204],[118,150,68,-4.373043494265471],[118,150,69,-4.364986316764011],[118,150,70,-4.36495673403276],[118,150,71,-4.3756891953042105],[118,150,72,-4.387684334687107],[118,150,73,-4.41393284037659],[118,150,74,-4.4446284938650145],[118,150,75,-4.466692324858219],[118,150,76,-4.481978656833069],[118,150,77,-4.485577784895964],[118,150,78,-4.448184980174118],[118,150,79,-4.418774204685644],[118,151,64,-4.421113111174365],[118,151,65,-4.438355566516464],[118,151,66,-4.439505289105197],[118,151,67,-4.429690588313523],[118,151,68,-4.416927821973912],[118,151,69,-4.4111616034585595],[118,151,70,-4.4140607865396415],[118,151,71,-4.420755411213071],[118,151,72,-4.437873818664085],[118,151,73,-4.466429347991679],[118,151,74,-4.496296023920559],[118,151,75,-4.520110587810754],[118,151,76,-4.536758652124172],[118,151,77,-4.5452755315753075],[118,151,78,-4.507864663859191],[118,151,79,-4.477853123827195],[118,152,64,-4.473753819267785],[118,152,65,-4.488690745243694],[118,152,66,-4.490756876868015],[118,152,67,-4.479334177390679],[118,152,68,-4.464646745662149],[118,152,69,-4.461735677500346],[118,152,70,-4.463874882743898],[118,152,71,-4.469066067036438],[118,152,72,-4.487788413515619],[118,152,73,-4.516794452961541],[118,152,74,-4.5453887087596865],[118,152,75,-4.569173727917589],[118,152,76,-4.587432064887606],[118,152,77,-4.5954918584863895],[118,152,78,-4.555976413125774],[118,152,79,-4.521786463788004],[118,153,64,-4.521577874636728],[118,153,65,-4.539458356818087],[118,153,66,-4.544613231663151],[118,153,67,-4.532263600106945],[118,153,68,-4.517414576602277],[118,153,69,-4.512372332577875],[118,153,70,-4.517503419208368],[118,153,71,-4.520062816696804],[118,153,72,-4.537611124179774],[118,153,73,-4.565458329260097],[118,153,74,-4.594339423673555],[118,153,75,-4.62037192344673],[118,153,76,-4.6373762623864065],[118,153,77,-4.640442192020563],[118,153,78,-4.598161426668161],[118,153,79,-4.559287005046726],[118,154,64,-4.5764849077718175],[118,154,65,-4.594487229119273],[118,154,66,-4.599310603957609],[118,154,67,-4.586834588724358],[118,154,68,-4.574110009077332],[118,154,69,-4.567518804479719],[118,154,70,-4.572095027058542],[118,154,71,-4.575487231795949],[118,154,72,-4.59099458885186],[118,154,73,-4.617470901190244],[118,154,74,-4.647341602685902],[118,154,75,-4.6772689072352005],[118,154,76,-4.692467034573777],[118,154,77,-4.6956132604387255],[118,154,78,-4.66670012899289],[118,154,79,-4.614159187762899],[118,155,64,-4.627714071191753],[118,155,65,-4.644643367475472],[118,155,66,-4.646966124554446],[118,155,67,-4.635888667178772],[118,155,68,-4.623348272908379],[118,155,69,-4.6161499449345325],[118,155,70,-4.619838540408799],[118,155,71,-4.62479536419032],[118,155,72,-4.6409037894117455],[118,155,73,-4.663565547290527],[118,155,74,-4.693782993238158],[118,155,75,-4.723875615972169],[118,155,76,-4.740607240285149],[118,155,77,-4.744820824672037],[118,155,78,-4.712697261895262],[118,155,79,-4.661712516746152],[118,156,64,-4.679237668834655],[118,156,65,-4.69768443221042],[118,156,66,-4.7003698460197025],[118,156,67,-4.689264608672752],[118,156,68,-4.675498358127067],[118,156,69,-4.668843003832124],[118,156,70,-4.669926500884907],[118,156,71,-4.676525005860821],[118,156,72,-4.691509329225317],[118,156,73,-4.715828402020944],[118,156,74,-4.745098258410526],[118,156,75,-4.772756704459571],[118,156,76,-4.789782330588776],[118,156,77,-4.794042784036715],[118,156,78,-4.762504901351056],[118,156,79,-4.713449523840461],[118,157,64,-4.731345689823318],[118,157,65,-4.747254495365253],[118,157,66,-4.74685005066064],[118,157,67,-4.735912588039872],[118,157,68,-4.717710615917477],[118,157,69,-4.711819353456169],[118,157,70,-4.713622451906953],[118,157,71,-4.720842024942091],[118,157,72,-4.736158569503574],[118,157,73,-4.76265758203227],[118,157,74,-4.792760954228307],[118,157,75,-4.820654156905619],[118,157,76,-4.836645660236027],[118,157,77,-4.845346383403206],[118,157,78,-4.802652970653154],[118,157,79,-4.757978666786111],[118,158,64,-4.77877936887791],[118,158,65,-4.7939944031308555],[118,158,66,-4.7922128942159725],[118,158,67,-4.781400898645092],[118,158,68,-4.765076660046258],[118,158,69,-4.758823485805267],[118,158,70,-4.7609747476594295],[118,158,71,-4.76786427702994],[118,158,72,-4.781027812007261],[118,158,73,-4.807802219885664],[118,158,74,-4.843016276102322],[118,158,75,-4.870174047749756],[118,158,76,-4.884691701052873],[118,158,77,-4.892583987094466],[118,158,78,-4.838063568762628],[118,158,79,-4.791126617563175],[118,159,64,-4.894016439319818],[118,159,65,-4.901413638704337],[118,159,66,-4.892759433076089],[118,159,67,-4.875523158288896],[118,159,68,-4.852175282319047],[118,159,69,-4.840151094668694],[118,159,70,-4.831242622459854],[118,159,71,-4.830069662594126],[118,159,72,-4.838898847839557],[118,159,73,-4.857679294729733],[118,159,74,-4.882746683700169],[118,159,75,-4.89950770862099],[118,159,76,-4.908337980912222],[118,159,77,-4.906085870070594],[118,159,78,-4.86299760894979],[118,159,79,-4.821684750712008],[118,160,64,-4.937806188825424],[118,160,65,-4.946603459629146],[118,160,66,-4.93893549626882],[118,160,67,-4.921765207417272],[118,160,68,-4.8984974426073515],[118,160,69,-4.8837682454629645],[118,160,70,-4.876093040805993],[118,160,71,-4.8750730166514975],[118,160,72,-4.883902944446886],[118,160,73,-4.903098471077983],[118,160,74,-4.927664629933523],[118,160,75,-4.943089819751507],[118,160,76,-4.954886662348675],[118,160,77,-4.954559467271533],[118,160,78,-4.901184722375757],[118,160,79,-4.866657246729595],[118,161,64,-4.982809407161748],[118,161,65,-4.990652135191681],[118,161,66,-4.9865817831607036],[118,161,67,-4.968812478987541],[118,161,68,-4.942772949878892],[118,161,69,-4.929527216823145],[118,161,70,-4.919760836073022],[118,161,71,-4.918368786866454],[118,161,72,-4.926541760301349],[118,161,73,-4.948071679907758],[118,161,74,-4.971661238882024],[118,161,75,-4.989828723570094],[118,161,76,-5.001257720360382],[118,161,77,-5.001190607050873],[118,161,78,-4.9407059070149915],[118,161,79,-4.910115013813701],[118,162,64,-5.033678657980157],[118,162,65,-5.039812090951188],[118,162,66,-5.037107254247659],[118,162,67,-5.021459722270944],[118,162,68,-4.994858667447851],[118,162,69,-4.978502646029859],[118,162,70,-4.9725000885003325],[118,162,71,-4.967748175604401],[118,162,72,-4.974961089590548],[118,162,73,-4.998398153802507],[118,162,74,-5.021640786952467],[118,162,75,-5.040064206816979],[118,162,76,-5.049886644015468],[118,162,77,-5.050180880050591],[118,162,78,-4.995360869871621],[118,162,79,-4.965798234312224],[118,163,64,-5.0813287198642785],[118,163,65,-5.086842009417772],[118,163,66,-5.082728731765965],[118,163,67,-5.067627158550132],[118,163,68,-5.040796746941636],[118,163,69,-5.0230382682027],[118,163,70,-5.017538120860699],[118,163,71,-5.012815753217596],[118,163,72,-5.0202573401585155],[118,163,73,-5.044866453944933],[118,163,74,-5.067673321984358],[118,163,75,-5.083022277322084],[118,163,76,-5.0927330489400235],[118,163,77,-5.092110579427389],[118,163,78,-5.041079425969029],[118,163,79,-5.015936254589241],[118,164,64,-5.10097623047263],[118,164,65,-5.109110017915142],[118,164,66,-5.1020951916901405],[118,164,67,-5.085411816677309],[118,164,68,-5.0600793216830215],[118,164,69,-5.042825001464272],[118,164,70,-5.038597246776689],[118,164,71,-5.033995885019787],[118,164,72,-5.040534143098418],[118,164,73,-5.063789710585497],[118,164,74,-5.086496843079018],[118,164,75,-5.1016075410246975],[118,164,76,-5.111705844645709],[118,164,77,-5.116072893222441],[118,164,78,-5.079667793682051],[118,164,79,-5.056147928784831],[118,165,64,-5.13892524950016],[118,165,65,-5.149651055921945],[118,165,66,-5.145621375816693],[118,165,67,-5.129838944259302],[118,165,68,-5.107386307918632],[118,165,69,-5.091258087597386],[118,165,70,-5.086589667557641],[118,165,71,-5.080777818019153],[118,165,72,-5.081858113770155],[118,165,73,-5.101261197009725],[118,165,74,-5.122060491056923],[118,165,75,-5.136124021319077],[118,165,76,-5.148526095797667],[118,165,77,-5.152292712440828],[118,165,78,-5.127253679041293],[118,165,79,-5.104288439372937],[118,166,64,-5.181730289421202],[118,166,65,-5.193763720459606],[118,166,66,-5.193012965455411],[118,166,67,-5.1738740275822765],[118,166,68,-5.150397329198004],[118,166,69,-5.135866024383355],[118,166,70,-5.132042548740688],[118,166,71,-5.125219058344175],[118,166,72,-5.127178665818629],[118,166,73,-5.144857891508218],[118,166,74,-5.1661355424854785],[118,166,75,-5.180321818662301],[118,166,76,-5.1923121748159256],[118,166,77,-5.1951682056344195],[118,166,78,-5.178360863976872],[118,166,79,-5.1523836151364275],[118,167,64,-5.2229788777991155],[118,167,65,-5.234534668495173],[118,167,66,-5.232514256495932],[118,167,67,-5.215227631813925],[118,167,68,-5.19216174077067],[118,167,69,-5.178063671648044],[118,167,70,-5.17612597387368],[118,167,71,-5.169857586971417],[118,167,72,-5.171159510510252],[118,167,73,-5.188414861709833],[118,167,74,-5.210303019787988],[118,167,75,-5.225696132858211],[118,167,76,-5.238317732096183],[118,167,77,-5.245134685617566],[118,167,78,-5.2294646715249895],[118,167,79,-5.204333258793392],[118,168,64,-5.268517553753293],[118,168,65,-5.278473659338084],[118,168,66,-5.278322424974299],[118,168,67,-5.260502846408818],[118,168,68,-5.236963505559434],[118,168,69,-5.224519622216372],[118,168,70,-5.218803278694457],[118,168,71,-5.215372029791604],[118,168,72,-5.218765207541458],[118,168,73,-5.236509645909699],[118,168,74,-5.257415405351917],[118,168,75,-5.27200319075492],[118,168,76,-5.282770983571151],[118,168,77,-5.289419724805557],[118,168,78,-5.275740561519747],[118,168,79,-5.2509867033768876],[118,169,64,-5.324968251599369],[118,169,65,-5.332916732228707],[118,169,66,-5.324305098336455],[118,169,67,-5.300636628191995],[118,169,68,-5.27838654828263],[118,169,69,-5.2656844940043],[118,169,70,-5.26063345121555],[118,169,71,-5.261153606080411],[118,169,72,-5.268996737673576],[118,169,73,-5.28887995771375],[118,169,74,-5.310992003394158],[118,169,75,-5.328144945340572],[118,169,76,-5.334481673885219],[118,169,77,-5.33888054885193],[118,169,78,-5.327208467321876],[118,169,79,-5.29809403367941],[118,170,64,-5.378613076439664],[118,170,65,-5.387184613741878],[118,170,66,-5.3750398337565315],[118,170,67,-5.351715766382177],[118,170,68,-5.328709132753239],[118,170,69,-5.317481508856488],[118,170,70,-5.311651315969445],[118,170,71,-5.310494748760212],[118,170,72,-5.319188118624652],[118,170,73,-5.340590944308329],[118,170,74,-5.3631128247129745],[118,170,75,-5.3805483079056],[118,170,76,-5.388686039607769],[118,170,77,-5.39008797352082],[118,170,78,-5.378317655786081],[118,170,79,-5.350080576505453],[118,171,64,-5.4260798641868035],[118,171,65,-5.434960976530083],[118,171,66,-5.421075080470723],[118,171,67,-5.396980483924149],[118,171,68,-5.376922711416938],[118,171,69,-5.362836644923496],[118,171,70,-5.359248256152425],[118,171,71,-5.358154464190352],[118,171,72,-5.367782683478687],[118,171,73,-5.3882290798213734],[118,171,74,-5.4097022754723625],[118,171,75,-5.426640499693878],[118,171,76,-5.4357604157448876],[118,171,77,-5.435548567690567],[118,171,78,-5.423397423907547],[118,171,79,-5.396282297190158],[118,172,64,-5.474238773052978],[118,172,65,-5.482465691165008],[118,172,66,-5.468812141896355],[118,172,67,-5.445476442824202],[118,172,68,-5.42631861983311],[118,172,69,-5.412109485094268],[118,172,70,-5.410693752064654],[118,172,71,-5.410581813603225],[118,172,72,-5.416886964789654],[118,172,73,-5.436695394763324],[118,172,74,-5.458373607451452],[118,172,75,-5.4740374363100175],[118,172,76,-5.484012728344585],[118,172,77,-5.48436419969529],[118,172,78,-5.470283960891898],[118,172,79,-5.442236652664334],[118,173,64,-5.519831579768363],[118,173,65,-5.527532601911324],[118,173,66,-5.514266413946348],[118,173,67,-5.49138166112974],[118,173,68,-5.471777967403945],[118,173,69,-5.459021300426599],[118,173,70,-5.458306674069475],[118,173,71,-5.459544742175874],[118,173,72,-5.463859227638231],[118,173,73,-5.482446747885023],[118,173,74,-5.503380599110193],[118,173,75,-5.521133004089367],[118,173,76,-5.5293335709285145],[118,173,77,-5.531304567965259],[118,173,78,-5.51708275208598],[118,173,79,-5.487394309653347],[118,174,64,-5.565264553690125],[118,174,65,-5.572063300471709],[118,174,66,-5.558322226065606],[118,174,67,-5.534141070861933],[118,174,68,-5.516770014049868],[118,174,69,-5.505095514123694],[118,174,70,-5.505010689031743],[118,174,71,-5.5067120496767314],[118,174,72,-5.510780054193921],[118,174,73,-5.528372089242061],[118,174,74,-5.550060944685689],[118,174,75,-5.567803151681699],[118,174,76,-5.576116552806616],[118,174,77,-5.577955920484669],[118,174,78,-5.564733625941291],[118,174,79,-5.531047672823323],[118,175,64,-5.603523778587664],[118,175,65,-5.610695565623401],[118,175,66,-5.5987035132066785],[118,175,67,-5.576840674891369],[118,175,68,-5.559995693607914],[118,175,69,-5.549137057913153],[118,175,70,-5.548452295997357],[118,175,71,-5.549160809391551],[118,175,72,-5.554478348302838],[118,175,73,-5.5735970670054575],[118,175,74,-5.5968366913961765],[118,175,75,-5.616083199772307],[118,175,76,-5.628764680917136],[118,175,77,-5.627757390799395],[118,175,78,-5.619490111223451],[118,175,79,-5.591216010065636],[118,176,64,-5.646953537171826],[118,176,65,-5.652671051606499],[118,176,66,-5.643432066150254],[118,176,67,-5.621325554949943],[118,176,68,-5.606196503913764],[118,176,69,-5.596796166518381],[118,176,70,-5.594812718660797],[118,176,71,-5.5948552211354885],[118,176,72,-5.598937397109005],[118,176,73,-5.618064065040547],[118,176,74,-5.6428277601371635],[118,176,75,-5.66403636893977],[118,176,76,-5.678585813392939],[118,176,77,-5.679646885173127],[118,176,78,-5.668606269418713],[118,176,79,-5.638045917146621],[118,177,64,-5.697255361950551],[118,177,65,-5.701487122796664],[118,177,66,-5.691592147280632],[118,177,67,-5.668953870959369],[118,177,68,-5.650379223596279],[118,177,69,-5.647445153688782],[118,177,70,-5.646635326686114],[118,177,71,-5.645162133026654],[118,177,72,-5.649613655935566],[118,177,73,-5.669218257724969],[118,177,74,-5.692497392267959],[118,177,75,-5.715573268198755],[118,177,76,-5.728885647051354],[118,177,77,-5.729937607337428],[118,177,78,-5.7159225329199925],[118,177,79,-5.690149438745827],[118,178,64,-5.7469641672481515],[118,178,65,-5.752275158813867],[118,178,66,-5.740132383941309],[118,178,67,-5.716543948807436],[118,178,68,-5.700835627110197],[118,178,69,-5.698130538083892],[118,178,70,-5.696332587696272],[118,178,71,-5.69782860072487],[118,178,72,-5.700177235183295],[118,178,73,-5.719703398967596],[118,178,74,-5.7429290387657455],[118,178,75,-5.76695353978223],[118,178,76,-5.780093783965758],[118,178,77,-5.782344797176768],[118,178,78,-5.768317163754564],[118,178,79,-5.7415164169338535],[118,179,64,-5.792496826989554],[118,179,65,-5.797424689990716],[118,179,66,-5.783947495595004],[118,179,67,-5.7601559477948445],[118,179,68,-5.747665184824919],[118,179,69,-5.743138686466271],[118,179,70,-5.7426731126474415],[118,179,71,-5.742244526447428],[118,179,72,-5.745293666992436],[118,179,73,-5.765070634150903],[118,179,74,-5.7892751516622525],[118,179,75,-5.812713348981607],[118,179,76,-5.826164303721653],[118,179,77,-5.827433182748788],[118,179,78,-5.816480690424459],[118,179,79,-5.791370737833681],[118,180,64,-5.828431508387284],[118,180,65,-5.83348441629424],[118,180,66,-5.82167337280181],[118,180,67,-5.799422357411864],[118,180,68,-5.786526645157721],[118,180,69,-5.781575169718092],[118,180,70,-5.785071387288131],[118,180,71,-5.784907306054342],[118,180,72,-5.787953872200768],[118,180,73,-5.805333989137811],[118,180,74,-5.831041062189645],[118,180,75,-5.855384567149759],[118,180,76,-5.871004521954556],[118,180,77,-5.871727968679956],[118,180,78,-5.860122450127883],[118,180,79,-5.838056939555849],[118,181,64,-5.866527880983405],[118,181,65,-5.872889666359569],[118,181,66,-5.861321737312232],[118,181,67,-5.842357366437359],[118,181,68,-5.826373080789166],[118,181,69,-5.823436796990325],[118,181,70,-5.827636578385936],[118,181,71,-5.828098218459649],[118,181,72,-5.8302212530183875],[118,181,73,-5.844899081135047],[118,181,74,-5.870900462606086],[118,181,75,-5.894948185632802],[118,181,76,-5.912110012590795],[118,181,77,-5.929056983576719],[118,181,78,-5.944343148596304],[118,181,79,-5.930160056792246],[118,182,64,-5.914891255964244],[118,182,65,-5.920514628272741],[118,182,66,-5.910436710660497],[118,182,67,-5.889760523671687],[118,182,68,-5.872945639176073],[118,182,69,-5.868238426861553],[118,182,70,-5.873057629736137],[118,182,71,-5.876966529825158],[118,182,72,-5.87906149926108],[118,182,73,-5.894909322810755],[118,182,74,-5.919586938373595],[118,182,75,-5.943811819780177],[118,182,76,-5.959156412221331],[118,182,77,-5.977048875991856],[118,182,78,-5.999275448683317],[118,182,79,-5.987737548427793],[118,183,64,-5.956963690830444],[118,183,65,-5.9650382448704296],[118,183,66,-5.956176103406029],[118,183,67,-5.935971686730128],[118,183,68,-5.919205306689997],[118,183,69,-5.9123773351434865],[118,183,70,-5.917798268945153],[118,183,71,-5.922814968924386],[118,183,72,-5.92499152759923],[118,183,73,-5.942065787263196],[118,183,74,-5.9665716132648825],[118,183,75,-5.991851121995108],[118,183,76,-6.006871477589675],[118,183,77,-6.024415409878384],[118,183,78,-6.0413573037004475],[118,183,79,-6.030624823989803],[118,184,64,-6.005190782855613],[118,184,65,-6.011004580928992],[118,184,66,-6.003776819207208],[118,184,67,-5.986070050624085],[118,184,68,-5.969518745150327],[118,184,69,-5.961303822583212],[118,184,70,-5.965000366815704],[118,184,71,-5.96789677549984],[118,184,72,-5.973350233500993],[118,184,73,-5.988507839615723],[118,184,74,-6.015728004031536],[118,184,75,-6.038499697842358],[118,184,76,-6.0529696133046045],[118,184,77,-6.076659278301403],[118,184,78,-6.089296506045792],[118,184,79,-6.078454372919787],[118,185,64,-6.053076860290215],[118,185,65,-6.058002442552723],[118,185,66,-6.050998916806763],[118,185,67,-6.034912710186956],[118,185,68,-6.0194558503599],[118,185,69,-6.009183295913563],[118,185,70,-6.0109245560963185],[118,185,71,-6.011954690298117],[118,185,72,-6.019687673752866],[118,185,73,-6.035783291950371],[118,185,74,-6.066474661561682],[118,185,75,-6.087574752650464],[118,185,76,-6.101525958296832],[118,185,77,-6.125704131448386],[118,185,78,-6.132363566352279],[118,185,79,-6.117111686406084],[118,186,64,-6.109190079616732],[118,186,65,-6.112869866348992],[118,186,66,-6.104686046353394],[118,186,67,-6.0891588213057455],[118,186,68,-6.07358409079635],[118,186,69,-6.064332776400545],[118,186,70,-6.061600809190999],[118,186,71,-6.063427273329298],[118,186,72,-6.070760951583882],[118,186,73,-6.088529295163107],[118,186,74,-6.119796134344005],[118,186,75,-6.1406590981505795],[118,186,76,-6.153182196396083],[118,186,77,-6.169179219228604],[118,186,78,-6.174701134096279],[118,186,79,-6.155113037482957],[118,187,64,-6.157882544412688],[118,187,65,-6.1650026461385075],[118,187,66,-6.156774913651878],[118,187,67,-6.138610839359255],[118,187,68,-6.122040573071958],[118,187,69,-6.115286421824228],[118,187,70,-6.1110816725416806],[118,187,71,-6.112485334165368],[118,187,72,-6.121096174983173],[118,187,73,-6.138478151718397],[118,187,74,-6.16709847020497],[118,187,75,-6.188624025492087],[118,187,76,-6.199443605070222],[118,187,77,-6.222387957586868],[118,187,78,-6.232317333546615],[118,187,79,-6.211168193108672],[118,188,64,-6.222525119370727],[118,188,65,-6.228641968259627],[118,188,66,-6.216080002065616],[118,188,67,-6.193856376081461],[118,188,68,-6.171296989303442],[118,188,69,-6.163276948503988],[118,188,70,-6.15702238234316],[118,188,71,-6.156748764495907],[118,188,72,-6.164111278224752],[118,188,73,-6.180633072235666],[118,188,74,-6.205124364880421],[118,188,75,-6.225161985820677],[118,188,76,-6.2369808827362085],[118,188,77,-6.26342096333332],[118,188,78,-6.280966314917516],[118,188,79,-6.258833698167397],[118,189,64,-6.279673788584738],[118,189,65,-6.2843875813381525],[118,189,66,-6.269830139563936],[118,189,67,-6.248543647553011],[118,189,68,-6.224578947535601],[118,189,69,-6.215410159158865],[118,189,70,-6.210708450003253],[118,189,71,-6.206844346528013],[118,189,72,-6.209716189711651],[118,189,73,-6.224824109129192],[118,189,74,-6.246830229003678],[118,189,75,-6.268472853912159],[118,189,76,-6.281462083771455],[118,189,77,-6.307142694282223],[118,189,78,-6.324451762434924],[118,189,79,-6.306041857618111],[118,190,64,-6.329057005028039],[118,190,65,-6.333518392936164],[118,190,66,-6.320457462302882],[118,190,67,-6.298189919421413],[118,190,68,-6.2747152423094255],[118,190,69,-6.2633225467839875],[118,190,70,-6.259761242481259],[118,190,71,-6.255195650518768],[118,190,72,-6.256445908431357],[118,190,73,-6.271332620147855],[118,190,74,-6.292800016782877],[118,190,75,-6.316656108240495],[118,190,76,-6.329559237701028],[118,190,77,-6.3558953276354435],[118,190,78,-6.370206912799684],[118,190,79,-6.352300039168364],[118,191,64,-6.374377916778855],[118,191,65,-6.378268294109533],[118,191,66,-6.367946980223137],[118,191,67,-6.34588723641056],[118,191,68,-6.324561738448168],[118,191,69,-6.312608878629712],[118,191,70,-6.309256809161275],[118,191,71,-6.305512137580994],[118,191,72,-6.30570739432607],[118,191,73,-6.319018308863006],[118,191,74,-6.342186937577587],[118,191,75,-6.363794474950587],[118,191,76,-6.376546744425569],[118,191,77,-6.403823559194541],[118,191,78,-6.41605890009773],[118,191,79,-6.397072782016381],[118,192,64,-6.420550471057727],[118,192,65,-6.425395601235866],[118,192,66,-6.415816003223115],[118,192,67,-6.393550409187812],[118,192,68,-6.37335151566359],[118,192,69,-6.360365816936813],[118,192,70,-6.35605566285968],[118,192,71,-6.355192365385924],[118,192,72,-6.352183362352402],[118,192,73,-6.365454851330365],[118,192,74,-6.3906993176137705],[118,192,75,-6.410656593531137],[118,192,76,-6.423252641417239],[118,192,77,-6.453697401751419],[118,192,78,-6.466843092376548],[118,192,79,-6.446408354511478],[118,193,64,-6.466561573089194],[118,193,65,-6.471643044023803],[118,193,66,-6.461747381207778],[118,193,67,-6.435685616969354],[118,193,68,-6.415347710077585],[118,193,69,-6.402678309433759],[118,193,70,-6.399661153132616],[118,193,71,-6.401103856188239],[118,193,72,-6.402746224243278],[118,193,73,-6.419388430525358],[118,193,74,-6.443664929734484],[118,193,75,-6.464248315702121],[118,193,76,-6.477220526624364],[118,193,77,-6.5002408198706805],[118,193,78,-6.503655502794127],[118,193,79,-6.477011903256344],[118,194,64,-6.522530762869556],[118,194,65,-6.525554750587373],[118,194,66,-6.511819651043042],[118,194,67,-6.484187761020339],[118,194,68,-6.464376340640125],[118,194,69,-6.452170055019702],[118,194,70,-6.449499572061285],[118,194,71,-6.450535962033139],[118,194,72,-6.4555967178352045],[118,194,73,-6.473958821318048],[118,194,74,-6.495383450236974],[118,194,75,-6.515509138735678],[118,194,76,-6.527323366315478],[118,194,77,-6.551892343085233],[118,194,78,-6.553426185209803],[118,194,79,-6.531814098988714],[118,195,64,-6.571660045739237],[118,195,65,-6.572415733875573],[118,195,66,-6.557487457390671],[118,195,67,-6.5325393213368095],[118,195,68,-6.512285505273584],[118,195,69,-6.49740445302609],[118,195,70,-6.494335113812045],[118,195,71,-6.493406775919563],[118,195,72,-6.502695621178449],[118,195,73,-6.522486910477664],[118,195,74,-6.5443142325330586],[118,195,75,-6.562311133648461],[118,195,76,-6.575781331298093],[118,195,77,-6.607747449617884],[118,195,78,-6.6074817311935075],[118,195,79,-6.590629827079286],[118,196,64,-6.608368831025091],[118,196,65,-6.613029134859512],[118,196,66,-6.597640981937521],[118,196,67,-6.576482093454622],[118,196,68,-6.5555293999553035],[118,196,69,-6.538635083977259],[118,196,70,-6.5346690364440985],[118,196,71,-6.537891355458239],[118,196,72,-6.5460865941206805],[118,196,73,-6.566852481801772],[118,196,74,-6.592095285493086],[118,196,75,-6.610356877895223],[118,196,76,-6.626826785267845],[118,196,77,-6.654126160059928],[118,196,78,-6.655582489760249],[118,196,79,-6.641067879141423],[118,197,64,-6.658304457415333],[118,197,65,-6.662985283222396],[118,197,66,-6.646730005955728],[118,197,67,-6.622890119137639],[118,197,68,-6.599997108366238],[118,197,69,-6.582665469782485],[118,197,70,-6.577893332427604],[118,197,71,-6.5827555293477955],[118,197,72,-6.59094123909507],[118,197,73,-6.611987779258987],[118,197,74,-6.637384954777049],[118,197,75,-6.655910239969794],[118,197,76,-6.670009641736291],[118,197,77,-6.692620127742193],[118,197,78,-6.696288132140247],[118,197,79,-6.684683797470764],[118,198,64,-6.708799633722568],[118,198,65,-6.711714851894553],[118,198,66,-6.694345284945699],[118,198,67,-6.668211010026458],[118,198,68,-6.645114701995828],[118,198,69,-6.6278202991864665],[118,198,70,-6.622966559995141],[118,198,71,-6.6256107405920375],[118,198,72,-6.635096723610329],[118,198,73,-6.656883767313883],[118,198,74,-6.683130674229994],[118,198,75,-6.70368656833767],[118,198,76,-6.724843085366942],[118,198,77,-6.739019334620347],[118,198,78,-6.741509996703539],[118,198,79,-6.728654192399196],[118,199,64,-6.755465353866806],[118,199,65,-6.755730891154209],[118,199,66,-6.738649213301639],[118,199,67,-6.711471150556094],[118,199,68,-6.688928288871068],[118,199,69,-6.674207743533294],[118,199,70,-6.668950748556457],[118,199,71,-6.668273721115217],[118,199,72,-6.68166254767783],[118,199,73,-6.704181055418919],[118,199,74,-6.7307049818031],[118,199,75,-6.752280784485859],[118,199,76,-6.777128697941082],[118,199,77,-6.790235209120053],[118,199,78,-6.787653233535479],[118,199,79,-6.773618151161745],[118,200,64,-6.802955625197739],[118,200,65,-6.800854421392823],[118,200,66,-6.785941655906188],[118,200,67,-6.759437231018569],[118,200,68,-6.735479748820988],[118,200,69,-6.720328113882269],[118,200,70,-6.716038352441858],[118,200,71,-6.715772817701954],[118,200,72,-6.729919209293265],[118,200,73,-6.753483833808783],[118,200,74,-6.778140036156879],[118,200,75,-6.8025747233238745],[118,200,76,-6.828331223505569],[118,200,77,-6.840855239158147],[118,200,78,-6.835011613644041],[118,200,79,-6.823694166739133],[118,201,64,-6.843403591261043],[118,201,65,-6.842063512010569],[118,201,66,-6.825387075498568],[118,201,67,-6.797652246162881],[118,201,68,-6.77448564545048],[118,201,69,-6.758347898339857],[118,201,70,-6.7548245409455046],[118,201,71,-6.754536697519741],[118,201,72,-6.769935867447485],[118,201,73,-6.796157087979316],[118,201,74,-6.819960149039607],[118,201,75,-6.846476653920628],[118,201,76,-6.874899800966483],[118,201,77,-6.888527356080567],[118,201,78,-6.889225766209079],[118,201,79,-6.875391537338839],[118,202,64,-6.898022221432095],[118,202,65,-6.89664255396114],[118,202,66,-6.880046093589302],[118,202,67,-6.851361085547141],[118,202,68,-6.827274275447254],[118,202,69,-6.811489364546452],[118,202,70,-6.80883990120323],[118,202,71,-6.807026098777711],[118,202,72,-6.820606904168914],[118,202,73,-6.847750849096049],[118,202,74,-6.871963863454715],[118,202,75,-6.895590390251089],[118,202,76,-6.925754942323706],[118,202,77,-6.939068219443765],[118,202,78,-6.939542981482015],[118,202,79,-6.925966399868288],[118,203,64,-6.9496905639848725],[118,203,65,-6.947417314592098],[118,203,66,-6.928692913733147],[118,203,67,-6.900142208943019],[118,203,68,-6.872864995634713],[118,203,69,-6.860065880668928],[118,203,70,-6.858065939769779],[118,203,71,-6.858542625980546],[118,203,72,-6.869452411547629],[118,203,73,-6.894449101324177],[118,203,74,-6.918939053938977],[118,203,75,-6.951207973364269],[118,203,76,-6.983297332864034],[118,203,77,-6.994611675523037],[118,203,78,-7.002861660925434],[118,203,79,-6.986615792819226],[118,204,64,-6.9979496392737195],[118,204,65,-6.995642852059869],[118,204,66,-6.974177015133291],[118,204,67,-6.943348503379631],[118,204,68,-6.9138884447910005],[118,204,69,-6.89787782805661],[118,204,70,-6.894384312326587],[118,204,71,-6.89502061155228],[118,204,72,-6.9030580462223705],[118,204,73,-6.928208472546261],[118,204,74,-6.951204600381728],[118,204,75,-6.990585003876289],[118,204,76,-7.0307479544299],[118,204,77,-7.044581502411769],[118,204,78,-7.054085701779911],[118,204,79,-7.036747369728265],[118,205,64,-7.056486363221319],[118,205,65,-7.056381139470357],[118,205,66,-7.037372192293798],[118,205,67,-7.0062417735460985],[118,205,68,-6.9750638176612805],[118,205,69,-6.957124483748104],[118,205,70,-6.952667710405525],[118,205,71,-6.951469464725436],[118,205,72,-6.959097796528217],[118,205,73,-6.9835912030271565],[118,205,74,-7.007096857712583],[118,205,75,-7.0305546714890115],[118,205,76,-7.061409272461494],[118,205,77,-7.069085298420451],[118,205,78,-7.07826156714322],[118,205,79,-7.084610842628095],[118,206,64,-7.105924039562423],[118,206,65,-7.1066774259000525],[118,206,66,-7.089044303345365],[118,206,67,-7.0573945449013085],[118,206,68,-7.024853219478657],[118,206,69,-7.003208471030005],[118,206,70,-6.998284965769907],[118,206,71,-6.99723234298519],[118,206,72,-7.005764848330859],[118,206,73,-7.029041794795201],[118,206,74,-7.056881075055778],[118,206,75,-7.079420898473352],[118,206,76,-7.107613210981345],[118,206,77,-7.123845911898786],[118,206,78,-7.12874723841625],[118,206,79,-7.134794200886708],[118,207,64,-7.160464020241656],[118,207,65,-7.158623875705353],[118,207,66,-7.1419124768384],[118,207,67,-7.106532933531889],[118,207,68,-7.072532066831578],[118,207,69,-7.050917157439215],[118,207,70,-7.043794060823263],[118,207,71,-7.044472902096884],[118,207,72,-7.053221065177056],[118,207,73,-7.0749644043780595],[118,207,74,-7.10372790423212],[118,207,75,-7.125768405933553],[118,207,76,-7.150704437786329],[118,207,77,-7.1694539505659645],[118,207,78,-7.165177895019109],[118,207,79,-7.178855129701131],[118,208,64,-7.211591880071747],[118,208,65,-7.20998345198431],[118,208,66,-7.190829057552903],[118,208,67,-7.152862337825247],[118,208,68,-7.120152688619842],[118,208,69,-7.100194037153924],[118,208,70,-7.09182755378812],[118,208,71,-7.092263004015746],[118,208,72,-7.0990498382953895],[118,208,73,-7.119810230142779],[118,208,74,-7.148413029467976],[118,208,75,-7.171770550158642],[118,208,76,-7.188228264812596],[118,208,77,-7.2041527975653805],[118,208,78,-7.203311273321902],[118,208,79,-7.21633926622314],[118,209,64,-7.263196296500895],[118,209,65,-7.26169719356619],[118,209,66,-7.239569790304087],[118,209,67,-7.200427186596011],[118,209,68,-7.168920200838953],[118,209,69,-7.148743924579295],[118,209,70,-7.139664953314316],[118,209,71,-7.138423314004146],[118,209,72,-7.143179525744377],[118,209,73,-7.162380392682541],[118,209,74,-7.19292206712621],[118,209,75,-7.218377625457761],[118,209,76,-7.2339955851909234],[118,209,77,-7.250806167953896],[118,209,78,-7.252319429125897],[118,209,79,-7.259056588681371],[118,210,64,-7.319862790406496],[118,210,65,-7.318517958256234],[118,210,66,-7.295069361487099],[118,210,67,-7.25471747134937],[118,210,68,-7.2229612736005455],[118,210,69,-7.198023847886176],[118,210,70,-7.190193463185775],[118,210,71,-7.187760821818744],[118,210,72,-7.192439938068931],[118,210,73,-7.211789224571478],[118,210,74,-7.242328654341127],[118,210,75,-7.2670249751391935],[118,210,76,-7.2800592548038034],[118,210,77,-7.292879534619978],[118,210,78,-7.301168048439255],[118,210,79,-7.3071552614480115],[118,211,64,-7.367600021073432],[118,211,65,-7.366555901543338],[118,211,66,-7.342849804637947],[118,211,67,-7.302709407146329],[118,211,68,-7.269814973849216],[118,211,69,-7.246075477087881],[118,211,70,-7.236303308296829],[118,211,71,-7.234150509017288],[118,211,72,-7.239856897461408],[118,211,73,-7.258623748928382],[118,211,74,-7.288723364100517],[118,211,75,-7.312552927094579],[118,211,76,-7.323676586125982],[118,211,77,-7.34049369113822],[118,211,78,-7.355322438061118],[118,211,79,-7.362921594267139],[118,212,64,-7.394500541733375],[118,212,65,-7.396641094411913],[118,212,66,-7.3795691538838115],[118,212,67,-7.348139407171512],[118,212,68,-7.322930078402597],[118,212,69,-7.3027947661016155],[118,212,70,-7.297664519593351],[118,212,71,-7.298243283818058],[118,212,72,-7.302948036398929],[118,212,73,-7.321614133744771],[118,212,74,-7.3505928615142295],[118,212,75,-7.372242928943346],[118,212,76,-7.383411383198708],[118,212,77,-7.396924826733219],[118,212,78,-7.402326687938661],[118,212,79,-7.411970413823889],[118,213,64,-7.447575399449669],[118,213,65,-7.447122706066508],[118,213,66,-7.426076509453525],[118,213,67,-7.393466885675718],[118,213,68,-7.366393576990253],[118,213,69,-7.3456291807039795],[118,213,70,-7.340928886160325],[118,213,71,-7.341980258288423],[118,213,72,-7.347379403097322],[118,213,73,-7.36524060485947],[118,213,74,-7.393512102555959],[118,213,75,-7.4183221785063775],[118,213,76,-7.438191932969284],[118,213,77,-7.456841648913821],[118,213,78,-7.460296962081455],[118,213,79,-7.463903156209874],[118,214,64,-7.496112414378573],[118,214,65,-7.492945054874676],[118,214,66,-7.4715958358598185],[118,214,67,-7.4398572019285965],[118,214,68,-7.414724302997352],[118,214,69,-7.394794363234738],[118,214,70,-7.388362736092733],[118,214,71,-7.389053267680503],[118,214,72,-7.393972647102156],[118,214,73,-7.411693947828392],[118,214,74,-7.442441268223026],[118,214,75,-7.467770578712725],[118,214,76,-7.491083546382198],[118,214,77,-7.512423806466392],[118,214,78,-7.512589820485221],[118,214,79,-7.512573230663314],[118,215,64,-7.544034585416253],[118,215,65,-7.5420424057772575],[118,215,66,-7.520444618680355],[118,215,67,-7.4876600775986955],[118,215,68,-7.462543758744108],[118,215,69,-7.445563250543657],[118,215,70,-7.438480287595113],[118,215,71,-7.437453586792496],[118,215,72,-7.442440606274403],[118,215,73,-7.460491368089923],[118,215,74,-7.491749725025935],[118,215,75,-7.515875516026525],[118,215,76,-7.538444477383451],[118,215,77,-7.560673052226358],[118,215,78,-7.558491633129475],[118,215,79,-7.557849086081237],[118,216,64,-7.589880702483355],[118,216,65,-7.590832336835184],[118,216,66,-7.568801559112195],[118,216,67,-7.534879357979186],[118,216,68,-7.510185689965037],[118,216,69,-7.49350349306913],[118,216,70,-7.487704450438373],[118,216,71,-7.487672194690505],[118,216,72,-7.491409102193581],[118,216,73,-7.508212108169015],[118,216,74,-7.539147192897401],[118,216,75,-7.562618723833907],[118,216,76,-7.584912667210487],[118,216,77,-7.615558556523962],[118,216,78,-7.623570963785653],[118,216,79,-7.605728103520355],[118,217,64,-7.628550138653721],[118,217,65,-7.634001918141909],[118,217,66,-7.616617353869796],[118,217,67,-7.58580047068452],[118,217,68,-7.562414352129097],[118,217,69,-7.545791161897186],[118,217,70,-7.53996435499946],[118,217,71,-7.540305261749015],[118,217,72,-7.546827784290361],[118,217,73,-7.561423752617383],[118,217,74,-7.589739335508723],[118,217,75,-7.612017324982846],[118,217,76,-7.637375749871015],[118,217,77,-7.671742695816179],[118,217,78,-7.683703011575574],[118,217,79,-7.654203970143214],[118,218,64,-7.679682444462329],[118,218,65,-7.684286790772456],[118,218,66,-7.66858468765794],[118,218,67,-7.635795049183896],[118,218,68,-7.614115597152943],[118,218,69,-7.601226443573816],[118,218,70,-7.59276491719833],[118,218,71,-7.591421536665692],[118,218,72,-7.599520935300513],[118,218,73,-7.616408462424608],[118,218,74,-7.641127204552484],[118,218,75,-7.661396482550414],[118,218,76,-7.682668688059655],[118,218,77,-7.721649380518598],[118,218,78,-7.733740380222154],[118,218,79,-7.700823762210115],[118,219,64,-7.725037916080085],[118,219,65,-7.731231776618074],[118,219,66,-7.717015201243163],[118,219,67,-7.684787420319847],[118,219,68,-7.663770299104196],[118,219,69,-7.6476631638345225],[118,219,70,-7.640537088310156],[118,219,71,-7.636797997305898],[118,219,72,-7.646931398405305],[118,219,73,-7.666368368760816],[118,219,74,-7.689267720975269],[118,219,75,-7.706563584900445],[118,219,76,-7.742613287630726],[118,219,77,-7.784713613939142],[118,219,78,-7.791405289322121],[118,219,79,-7.755560941332941],[118,220,64,-7.771038311056952],[118,220,65,-7.774857162810257],[118,220,66,-7.760109290380236],[118,220,67,-7.727070395127145],[118,220,68,-7.702597339642919],[118,220,69,-7.680817717676894],[118,220,70,-7.670290464755201],[118,220,71,-7.6670650274786984],[118,220,72,-7.677599046796297],[118,220,73,-7.697109346733699],[118,220,74,-7.71974091906535],[118,220,75,-7.738055575608283],[118,220,76,-7.791454330132638],[118,220,77,-7.846344642573512],[118,220,78,-7.851490001121156],[118,220,79,-7.816203401071802],[118,221,64,-7.815108578140322],[118,221,65,-7.819097580474028],[118,221,66,-7.805583901343469],[118,221,67,-7.775405202606481],[118,221,68,-7.750455902034169],[118,221,69,-7.727592552427527],[118,221,70,-7.713061388614698],[118,221,71,-7.711378698714481],[118,221,72,-7.721022901575318],[118,221,73,-7.745301821665541],[118,221,74,-7.7801513887750655],[118,221,75,-7.82852434139021],[118,221,76,-7.883775658195502],[118,221,77,-7.922467029574514],[118,221,78,-7.901164325633631],[118,221,79,-7.866801465921499],[118,222,64,-7.8587522468148805],[118,222,65,-7.86365735993501],[118,222,66,-7.851363007128843],[118,222,67,-7.824913899892252],[118,222,68,-7.797525008921738],[118,222,69,-7.773309093525545],[118,222,70,-7.7585876940503224],[118,222,71,-7.755278279152621],[118,222,72,-7.76450010804273],[118,222,73,-7.802718597385201],[118,222,74,-7.839243423474347],[118,222,75,-7.887837809894361],[118,222,76,-7.939736107202331],[118,222,77,-7.9691920653673245],[118,222,78,-7.950370309912394],[118,222,79,-7.91707135354706],[118,223,64,-7.9102791929675105],[118,223,65,-7.913049503896551],[118,223,66,-7.898948762386526],[118,223,67,-7.875599753284266],[118,223,68,-7.846314310756343],[118,223,69,-7.822092570246607],[118,223,70,-7.808686127664267],[118,223,71,-7.804129512180607],[118,223,72,-7.8114584801487235],[118,223,73,-7.837798213966766],[118,223,74,-7.900418646845455],[118,223,75,-7.963195305170368],[118,223,76,-8.009336527584882],[118,223,77,-8.015743609569281],[118,223,78,-7.995454072116909],[118,223,79,-7.964080319104463],[118,224,64,-7.959370977820661],[118,224,65,-7.958702443216105],[118,224,66,-7.9453716424964025],[118,224,67,-7.920101793861111],[118,224,68,-7.893226228074509],[118,224,69,-7.8685204616339135],[118,224,70,-7.85474021029397],[118,224,71,-7.850279467531208],[118,224,72,-7.8572926202499564],[118,224,73,-7.8893849986382],[118,224,74,-7.953632674484506],[118,224,75,-8.015463828577973],[118,224,76,-8.06992462925332],[118,224,77,-8.065382483075103],[118,224,78,-8.046290645309309],[118,224,79,-8.014481225506232],[118,225,64,-8.01509578873763],[118,225,65,-8.01106355302898],[118,225,66,-7.993624946587934],[118,225,67,-7.962590626064667],[118,225,68,-7.932414137010696],[118,225,69,-7.906868762589369],[118,225,70,-7.89763703121619],[118,225,71,-7.8920928796302325],[118,225,72,-7.900415855262221],[118,225,73,-7.939024460923877],[118,225,74,-8.005680384603954],[118,225,75,-8.064229069949564],[118,225,76,-8.123289360679514],[118,225,77,-8.115207757293893],[118,225,78,-8.097886440272834],[118,225,79,-8.066419396370398],[118,226,64,-8.067435936175823],[118,226,65,-8.065025204668421],[118,226,66,-8.04770601173609],[118,226,67,-8.013471604209023],[118,226,68,-7.981553516029834],[118,226,69,-7.955194962832449],[118,226,70,-7.946751612947317],[118,226,71,-7.94468784086154],[118,226,72,-7.9513825069709725],[118,226,73,-7.977553337964285],[118,226,74,-8.040582476271627],[118,226,75,-8.104867117369828],[118,226,76,-8.171979802381065],[118,226,77,-8.167076385144556],[118,226,78,-8.149472503168413],[118,226,79,-8.11913390964597],[118,227,64,-8.115986454947432],[118,227,65,-8.114711041348377],[118,227,66,-8.094334927423471],[118,227,67,-8.058936866601238],[118,227,68,-8.027517170995367],[118,227,69,-8.002207326985154],[118,227,70,-7.994684308296353],[118,227,71,-7.992518855109998],[118,227,72,-7.997661548418048],[118,227,73,-8.027780801537837],[118,227,74,-8.095958388475918],[118,227,75,-8.16751297794834],[118,227,76,-8.231020135400458],[118,227,77,-8.22681959972039],[118,227,78,-8.207502641607986],[118,227,79,-8.17857880516558],[118,228,64,-8.15422854360804],[118,228,65,-8.154655756689877],[118,228,66,-8.131601596380339],[118,228,67,-8.095294865494825],[118,228,68,-8.060708951057064],[118,228,69,-8.036382610868605],[118,228,70,-8.028955954613009],[118,228,71,-8.026464432459287],[118,228,72,-8.033087960378488],[118,228,73,-8.064038201720125],[118,228,74,-8.141468289568047],[118,228,75,-8.215139894591921],[118,228,76,-8.277770710572977],[118,228,77,-8.274611826017189],[118,228,78,-8.257243597357013],[118,228,79,-8.227710171942674],[118,229,64,-8.194288907265461],[118,229,65,-8.196248256366411],[118,229,66,-8.181880395464155],[118,229,67,-8.149059439204386],[118,229,68,-8.116348789172877],[118,229,69,-8.0921483303206],[118,229,70,-8.083521535777171],[118,229,71,-8.079812402104583],[118,229,72,-8.082986871020774],[118,229,73,-8.16875392727249],[118,229,74,-8.266099518059494],[118,229,75,-8.319806139403223],[118,229,76,-8.330664500393285],[118,229,77,-8.328652457270865],[118,229,78,-8.308716400735108],[118,229,79,-8.278728639002804],[118,230,64,-8.23856733001155],[118,230,65,-8.243175212765587],[118,230,66,-8.229384124621554],[118,230,67,-8.199474270854761],[118,230,68,-8.166018340123474],[118,230,69,-8.140752982760898],[118,230,70,-8.130778457974618],[118,230,71,-8.12598029348995],[118,230,72,-8.131045847241792],[118,230,73,-8.218595330011285],[118,230,74,-8.327148347561103],[118,230,75,-8.37662801428297],[118,230,76,-8.387194510448362],[118,230,77,-8.386444945652686],[118,230,78,-8.364512398433098],[118,230,79,-8.333442926637012],[118,231,64,-8.288604878390997],[118,231,65,-8.295124676985209],[118,231,66,-8.28276335084299],[118,231,67,-8.25496164746993],[118,231,68,-8.220128198995269],[118,231,69,-8.192264231923334],[118,231,70,-8.181734085897073],[118,231,71,-8.177049516817348],[118,231,72,-8.182939956269843],[118,231,73,-8.265347815432202],[118,231,74,-8.333032877002319],[118,231,75,-8.393683961956128],[118,231,76,-8.434362966273156],[118,231,77,-8.432413081823087],[118,231,78,-8.413624667762639],[118,231,79,-8.381426579653038],[118,232,64,-8.33535405450921],[118,232,65,-8.341668989460741],[118,232,66,-8.330803209398553],[118,232,67,-8.303954831918933],[118,232,68,-8.267313168893628],[118,232,69,-8.24178063398218],[118,232,70,-8.22934665987165],[118,232,71,-8.224501350324344],[118,232,72,-8.228204993916613],[118,232,73,-8.306509638274683],[118,232,74,-8.376210508131079],[118,232,75,-8.428208436234653],[118,232,76,-8.484186829577872],[118,232,77,-8.484005002359142],[118,232,78,-8.465814112305248],[118,232,79,-8.431217446385782],[118,233,64,-8.386205665768527],[118,233,65,-8.391224146152615],[118,233,66,-8.37798243357751],[118,233,67,-8.349061691914752],[118,233,68,-8.315207464123231],[118,233,69,-8.28839161109403],[118,233,70,-8.276693286496904],[118,233,71,-8.272378952663079],[118,233,72,-8.278812386949312],[118,233,73,-8.348274068641146],[118,233,74,-8.418127889594546],[118,233,75,-8.47529323174195],[118,233,76,-8.535597822809425],[118,233,77,-8.537434810890439],[118,233,78,-8.518521020281334],[118,233,79,-8.482146297264189],[118,234,64,-8.440317778149911],[118,234,65,-8.446334841859708],[118,234,66,-8.428900625796171],[118,234,67,-8.39779939880643],[118,234,68,-8.366030571097758],[118,234,69,-8.341100911113784],[118,234,70,-8.329443799863537],[118,234,71,-8.322630768845853],[118,234,72,-8.326675468090091],[118,234,73,-8.370918425208256],[118,234,74,-8.426608138000061],[118,234,75,-8.495891476749483],[118,234,76,-8.570395120023665],[118,234,77,-8.57481580189124],[118,234,78,-8.556589275161603],[118,234,79,-8.524348564237776],[118,235,64,-8.490263052128153],[118,235,65,-8.49464514600569],[118,235,66,-8.476186420054855],[118,235,67,-8.44421214220563],[118,235,68,-8.414148587596301],[118,235,69,-8.39101110912047],[118,235,70,-8.37852948377532],[118,235,71,-8.370171762585375],[118,235,72,-8.37222175553727],[118,235,73,-8.393115440516292],[118,235,74,-8.415415733813683],[118,235,75,-8.437201016091647],[118,235,76,-8.533976566080861],[118,235,77,-8.610673544015404],[118,235,78,-8.611328988277426],[118,235,79,-8.580761675449256],[118,236,64,-8.558127995969986],[118,236,65,-8.561725415405249],[118,236,66,-8.54354144715959],[118,236,67,-8.512579940451522],[118,236,68,-8.481803115133175],[118,236,69,-8.458068186321515],[118,236,70,-8.445255651867404],[118,236,71,-8.437055970970855],[118,236,72,-8.438753797741342],[118,236,73,-8.461593751368335],[118,236,74,-8.485063795904844],[118,236,75,-8.504828063511397],[118,236,76,-8.590650418027485],[118,236,77,-8.662663822817477],[118,236,78,-8.667365437922067],[118,236,79,-8.635008373219126],[118,237,64,-8.607284183147243],[118,237,65,-8.608591585646819],[118,237,66,-8.589412845649594],[118,237,67,-8.556786100228162],[118,237,68,-8.525020273790876],[118,237,69,-8.503374845924707],[118,237,70,-8.488458729478623],[118,237,71,-8.484038117013553],[118,237,72,-8.488834843872736],[118,237,73,-8.51265373546349],[118,237,74,-8.537276528840557],[118,237,75,-8.575826433120067],[118,237,76,-8.666759857820391],[118,237,77,-8.728786516856701],[118,237,78,-8.715854902312],[118,237,79,-8.684113987866818],[118,238,64,-8.65525775194894],[118,238,65,-8.656858145998477],[118,238,66,-8.639134950234299],[118,238,67,-8.605326901219657],[118,238,68,-8.571692240128527],[118,238,69,-8.551755910103765],[118,238,70,-8.53786752855251],[118,238,71,-8.5313841765269],[118,238,72,-8.539470865146894],[118,238,73,-8.56157909622884],[118,238,74,-8.592156736139739],[118,238,75,-8.653103422736004],[118,238,76,-8.735454071178612],[118,238,77,-8.769289893324677],[118,238,78,-8.757706584450094],[118,238,79,-8.728124645807243],[118,239,64,-8.710780798339938],[118,239,65,-8.709126804217343],[118,239,66,-8.691878352629287],[118,239,67,-8.658702499008996],[118,239,68,-8.625488471844626],[118,239,69,-8.604678683751327],[118,239,70,-8.591150959071149],[118,239,71,-8.583944095216886],[118,239,72,-8.592132827577407],[118,239,73,-8.61223567878287],[118,239,74,-8.633399881589463],[118,239,75,-8.687082189466564],[118,239,76,-8.76188814421244],[118,239,77,-8.80595571058248],[118,239,78,-8.798892787125308],[118,239,79,-8.769291457531617],[118,240,64,-8.759230299664146],[118,240,65,-8.757337434094676],[118,240,66,-8.738118373478407],[118,240,67,-8.706736143956658],[118,240,68,-8.673306238154543],[118,240,69,-8.65264548787352],[118,240,70,-8.638882878889662],[118,240,71,-8.632172165297526],[118,240,72,-8.638293230917283],[118,240,73,-8.660418661575065],[118,240,74,-8.681823503916808],[118,240,75,-8.73428622016617],[118,240,76,-8.803963945805911],[118,240,77,-8.851935360274222],[118,240,78,-8.843504832411552],[118,240,79,-8.815931532757855],[118,241,64,-8.808283637607177],[118,241,65,-8.807241971815156],[118,241,66,-8.789233127843117],[118,241,67,-8.756654780110498],[118,241,68,-8.725665262188304],[118,241,69,-8.700621328273773],[118,241,70,-8.686975075065412],[118,241,71,-8.681487748125882],[118,241,72,-8.68341328954857],[118,241,73,-8.702879577924818],[118,241,74,-8.726177278646077],[118,241,75,-8.74418388034433],[118,241,76,-8.754126348950606],[118,241,77,-8.752017115492684],[118,241,78,-8.725012370213173],[118,241,79,-8.786622834533691],[118,242,64,-8.85880194578019],[118,242,65,-8.858830059044834],[118,242,66,-8.83809159662801],[118,242,67,-8.806658822784739],[118,242,68,-8.77421831897614],[118,242,69,-8.747587002335907],[118,242,70,-8.735250313496644],[118,242,71,-8.731357073087198],[118,242,72,-8.73397046540473],[118,242,73,-8.751985061247757],[118,242,74,-8.776455938476932],[118,242,75,-8.796979298604711],[118,242,76,-8.806480225981034],[118,242,77,-8.804414233166789],[118,242,78,-8.778296692380385],[118,242,79,-8.838955755757455],[118,243,64,-8.90620293105619],[118,243,65,-8.906267433593506],[118,243,66,-8.883952364319518],[118,243,67,-8.852228463035862],[118,243,68,-8.817657768083587],[118,243,69,-8.790774062698068],[118,243,70,-8.78082747133359],[118,243,71,-8.777912995558136],[118,243,72,-8.783274162833198],[118,243,73,-8.801522400606276],[118,243,74,-8.823855346848328],[118,243,75,-8.84413228485779],[118,243,76,-8.856704237259274],[118,243,77,-8.853381513894158],[118,243,78,-8.828347473308797],[118,243,79,-8.895968436090307],[118,244,64,-8.939749273589772],[118,244,65,-8.93680379245809],[118,244,66,-8.912618704426293],[118,244,67,-8.878556904680543],[118,244,68,-8.84239964743808],[118,244,69,-8.816721368990713],[118,244,70,-8.80696558871497],[118,244,71,-8.803061824660617],[118,244,72,-8.809589893224844],[118,244,73,-8.826632350931076],[118,244,74,-8.850139297587061],[118,244,75,-8.869334206773651],[118,244,76,-8.880107112548188],[118,244,77,-8.877922243363914],[118,244,78,-8.857551830900954],[118,244,79,-8.91993993448292],[118,245,64,-8.98718270610292],[118,245,65,-8.982260909416597],[118,245,66,-8.957203550846888],[118,245,67,-8.921850430457251],[118,245,68,-8.88594201753945],[118,245,69,-8.861017037213632],[118,245,70,-8.854614778537718],[118,245,71,-8.850207633712737],[118,245,72,-8.855334511558477],[118,245,73,-8.872773192517329],[118,245,74,-8.897386573946578],[118,245,75,-8.91650936648804],[118,245,76,-8.92683510642129],[118,245,77,-8.923363734362594],[118,245,78,-8.903011267061087],[118,245,79,-8.9674996229674],[118,246,64,-9.031300677468778],[118,246,65,-9.028316446703245],[118,246,66,-9.00169632724135],[118,246,67,-8.964549780074016],[118,246,68,-8.928430602996194],[118,246,69,-8.904867997212467],[118,246,70,-8.901295943945971],[118,246,71,-8.895232784717505],[118,246,72,-8.902602034544547],[118,246,73,-8.920417424357671],[118,246,74,-8.948350980778173],[118,246,75,-8.96481297659423],[118,246,76,-8.97333736826371],[118,246,77,-8.972251633758415],[118,246,78,-8.979381880471283],[118,246,79,-9.063704567183661],[118,247,64,-9.082527117997136],[118,247,65,-9.080348346979324],[118,247,66,-9.054686699623169],[118,247,67,-9.015868772612647],[118,247,68,-8.978628441043316],[118,247,69,-8.952787934778259],[118,247,70,-8.947794818901826],[118,247,71,-8.942495975347347],[118,247,72,-8.95020785428733],[118,247,73,-8.969966832468224],[118,247,74,-8.996856632784239],[118,247,75,-9.013493572485595],[118,247,76,-9.021213619340816],[118,247,77,-9.017991514006928],[118,247,78,-9.013447024987963],[118,247,79,-9.092470235539707],[118,248,64,-9.127858813927503],[118,248,65,-9.122996401938222],[118,248,66,-9.101288630188687],[118,248,67,-9.06351249124246],[118,248,68,-9.026043775442048],[118,248,69,-8.99863674697559],[118,248,70,-8.990969464387728],[118,248,71,-8.989255740710407],[118,248,72,-8.995325258558706],[118,248,73,-9.016806451648666],[118,248,74,-9.043174354160971],[118,248,75,-9.06301229748409],[118,248,76,-9.072806482845204],[118,248,77,-9.066136387637204],[118,248,78,-9.059005913829282],[118,248,79,-9.139574449670528],[118,249,64,-9.170336060366942],[118,249,65,-9.164444275952714],[118,249,66,-9.142827357670582],[118,249,67,-9.10160742425459],[118,249,68,-9.061014269564806],[118,249,69,-9.036115796744767],[118,249,70,-9.027299186389005],[118,249,71,-9.0254447791719],[118,249,72,-9.036005061141996],[118,249,73,-9.06125767932258],[118,249,74,-9.087968571981605],[118,249,75,-9.109323572801395],[118,249,76,-9.118637719586287],[118,249,77,-9.116536885684635],[118,249,78,-9.142837654773686],[118,249,79,-9.228291579551323],[118,250,64,-9.218424961616016],[118,250,65,-9.213449799738392],[118,250,66,-9.189354290888582],[118,250,67,-9.150815237361371],[118,250,68,-9.110381768326349],[118,250,69,-9.084229265712947],[118,250,70,-9.076132003294948],[118,250,71,-9.073745552119078],[118,250,72,-9.082774712327938],[118,250,73,-9.109456625447041],[118,250,74,-9.136053018154431],[118,250,75,-9.15887196131936],[118,250,76,-9.19443785994681],[118,250,77,-9.218469051451724],[118,250,78,-9.225331624982548],[118,250,79,-9.240805379538555],[118,251,64,-9.262745539471299],[118,251,65,-9.25708099142219],[118,251,66,-9.23409601307298],[118,251,67,-9.195658113214172],[118,251,68,-9.158616130872],[118,251,69,-9.131177177199527],[118,251,70,-9.12130258960252],[118,251,71,-9.12055689461087],[118,251,72,-9.129229605759269],[118,251,73,-9.15222836053974],[118,251,74,-9.180887310822182],[118,251,75,-9.204721627222685],[118,251,76,-9.229306497406695],[118,251,77,-9.259929408656852],[118,251,78,-9.262343009805484],[118,251,79,-9.278840239513023],[118,252,64,-9.3003840108481],[118,252,65,-9.292681848257288],[118,252,66,-9.26965071621825],[118,252,67,-9.231364213073805],[118,252,68,-9.195212400298646],[118,252,69,-9.168545031839527],[118,252,70,-9.157814011349753],[118,252,71,-9.156709801829626],[118,252,72,-9.164099080357406],[118,252,73,-9.18550389569218],[118,252,74,-9.211133806769402],[118,252,75,-9.240290943002723],[118,252,76,-9.256252502800638],[118,252,77,-9.293988894083219],[118,252,78,-9.294788308552715],[118,252,79,-9.323349730708694],[118,253,64,-9.342584991657606],[118,253,65,-9.339309927306104],[118,253,66,-9.320338074276318],[118,253,67,-9.284986665135099],[118,253,68,-9.252552458543361],[118,253,69,-9.228131253646215],[118,253,70,-9.216485432179521],[118,253,71,-9.21219493520258],[118,253,72,-9.219304542041208],[118,253,73,-9.23790290553227],[118,253,74,-9.263682291512868],[118,253,75,-9.291908842303796],[118,253,76,-9.30677289917469],[118,253,77,-9.305658147459779],[118,253,78,-9.29638380249827],[118,253,79,-9.326608033791212],[118,254,64,-9.305835682842813],[118,254,65,-9.309785324453001],[118,254,66,-9.296230826245804],[118,254,67,-9.26964862383366],[118,254,68,-9.245903683414676],[118,254,69,-9.229251527193098],[118,254,70,-9.22934852973002],[118,254,71,-9.232647211242456],[118,254,72,-9.249801936464687],[118,254,73,-9.277732985984967],[118,254,74,-9.313598201818694],[118,254,75,-9.346299102752408],[118,254,76,-9.370012426182365],[118,254,77,-9.37695096752122],[118,254,78,-9.374303976275403],[118,254,79,-9.391450304961088],[118,255,64,-9.35111386448917],[118,255,65,-9.356100861376433],[118,255,66,-9.34441900100655],[118,255,67,-9.31461120974079],[118,255,68,-9.29335245692828],[118,255,69,-9.27772749484647],[118,255,70,-9.274773496480462],[118,255,71,-9.280182936688858],[118,255,72,-9.29696361802834],[118,255,73,-9.326849817964181],[118,255,74,-9.362057536776557],[118,255,75,-9.393853202499328],[118,255,76,-9.416744928190258],[118,255,77,-9.424764378924198],[118,255,78,-9.416845984901098],[118,255,79,-9.425632818861194],[118,256,64,-9.399388472435593],[118,256,65,-9.405598202307987],[118,256,66,-9.393009472746813],[118,256,67,-9.363526412302969],[118,256,68,-9.339948032921075],[118,256,69,-9.32327655179607],[118,256,70,-9.319649769942192],[118,256,71,-9.326814196691924],[118,256,72,-9.342124940724617],[118,256,73,-9.374238086838876],[118,256,74,-9.409811490783035],[118,256,75,-9.442363816326099],[118,256,76,-9.464074443584346],[118,256,77,-9.474043601910337],[118,256,78,-9.460081124275192],[118,256,79,-9.47917587335708],[118,257,64,-9.44814963598275],[118,257,65,-9.4542821313755],[118,257,66,-9.442251684109143],[118,257,67,-9.41173789103727],[118,257,68,-9.38526005190477],[118,257,69,-9.368882152325805],[118,257,70,-9.363444936150401],[118,257,71,-9.370979147282583],[118,257,72,-9.387599030708571],[118,257,73,-9.419775276576885],[118,257,74,-9.457888886941696],[118,257,75,-9.488839060006153],[118,257,76,-9.511708532435021],[118,257,77,-9.522974808670998],[118,257,78,-9.539557349629819],[118,257,79,-9.567678120332308],[118,258,64,-9.500092816611057],[118,258,65,-9.507925757409861],[118,258,66,-9.492945286378847],[118,258,67,-9.463412885170248],[118,258,68,-9.434922131037952],[118,258,69,-9.417486823258404],[118,258,70,-9.409932669927175],[118,258,71,-9.417176947569017],[118,258,72,-9.436895897677706],[118,258,73,-9.47036598601483],[118,258,74,-9.509075782411085],[118,258,75,-9.539692768480746],[118,258,76,-9.559320151703357],[118,258,77,-9.572496310680522],[118,258,78,-9.592650689616075],[118,258,79,-9.62214282837964],[118,259,64,-9.547815014324646],[118,259,65,-9.554290942276943],[118,259,66,-9.53843807829354],[118,259,67,-9.510525972994241],[118,259,68,-9.47925673642178],[118,259,69,-9.461528502369434],[118,259,70,-9.45536680981646],[118,259,71,-9.463704406682039],[118,259,72,-9.483646149608008],[118,259,73,-9.51846690782591],[118,259,74,-9.557441922613648],[118,259,75,-9.588472884743151],[118,259,76,-9.608449314448709],[118,259,77,-9.620004531949558],[118,259,78,-9.618387983116808],[118,259,79,-9.663306101994396],[118,260,64,-9.685466653129726],[118,260,65,-9.694214920051667],[118,260,66,-9.682205996384027],[118,260,67,-9.654944608879367],[118,260,68,-9.628355471571533],[118,260,69,-9.613888382667099],[118,260,70,-9.610439789849938],[118,260,71,-9.61955199768696],[118,260,72,-9.641030571323222],[118,260,73,-9.674593208683591],[118,260,74,-9.714803021047913],[118,260,75,-9.74635017283672],[118,260,76,-9.768251484782574],[118,260,77,-9.774148698840131],[118,260,78,-9.768390374556223],[118,260,79,-9.772555036319199],[118,261,64,-9.736593043487986],[118,261,65,-9.742198447563828],[118,261,66,-9.729568130554783],[118,261,67,-9.701426921900007],[118,261,68,-9.67400084952018],[118,261,69,-9.659224784615157],[118,261,70,-9.656287925318184],[118,261,71,-9.662044686337552],[118,261,72,-9.67955126639138],[118,261,73,-9.709836663923376],[118,261,74,-9.753350812475308],[118,261,75,-9.78718051474158],[118,261,76,-9.81007188948743],[118,261,77,-9.824029484956402],[118,261,78,-9.826824414531677],[118,261,79,-9.827748737965761],[118,262,64,-9.790123487919239],[118,262,65,-9.797486062013835],[118,262,66,-9.785420223765653],[118,262,67,-9.75352523231951],[118,262,68,-9.725782221410013],[118,262,69,-9.707518683269718],[118,262,70,-9.705039542296792],[118,262,71,-9.71058863939082],[118,262,72,-9.72868252589705],[118,262,73,-9.757303704642986],[118,262,74,-9.797958854801571],[118,262,75,-9.835255830572153],[118,262,76,-9.859103398560633],[118,262,77,-9.870660880215885],[118,262,78,-9.877891295795887],[118,262,79,-9.88743876552717],[118,263,64,-9.834012773318484],[118,263,65,-9.843877962150838],[118,263,66,-9.831815139474255],[118,263,67,-9.799390613456913],[118,263,68,-9.77205871516019],[118,263,69,-9.75209271850525],[118,263,70,-9.750963634019223],[118,263,71,-9.758657017769817],[118,263,72,-9.775251949409963],[118,263,73,-9.80349214902454],[118,263,74,-9.844000679025896],[118,263,75,-9.882537206978418],[118,263,76,-9.908175904237478],[118,263,77,-9.919815240487447],[118,263,78,-9.920817246872575],[118,263,79,-9.932719071632114],[118,264,64,-9.879051758517075],[118,264,65,-9.88804137779397],[118,264,66,-9.875959901246684],[118,264,67,-9.843733322739793],[118,264,68,-9.814582912061445],[118,264,69,-9.797555055382245],[118,264,70,-9.79615143688726],[118,264,71,-9.804323236727658],[118,264,72,-9.820996530255789],[118,264,73,-9.850394612550808],[118,264,74,-9.890956712851086],[118,264,75,-9.929711175418591],[118,264,76,-9.954316582641747],[118,264,77,-9.968263064901109],[118,264,78,-9.972490647555503],[118,264,79,-9.980350084730043],[118,265,64,-9.918698285854871],[118,265,65,-9.929529171821697],[118,265,66,-9.915648604174981],[118,265,67,-9.881590370944698],[118,265,68,-9.854666582429232],[118,265,69,-9.840983625448361],[118,265,70,-9.842697396478737],[118,265,71,-9.85013507814537],[118,265,72,-9.872753390176323],[118,265,73,-9.908405121372672],[118,265,74,-10.003119084864432],[118,265,75,-10.082976692829263],[118,265,76,-10.113986918089568],[118,265,77,-10.124077371324908],[118,265,78,-10.10301431689802],[118,265,79,-10.084324181879584],[118,266,64,-9.963179831373688],[118,266,65,-9.977703639439781],[118,266,66,-9.962458293764229],[118,266,67,-9.928649611852412],[118,266,68,-9.90282914809865],[118,266,69,-9.89068850142176],[118,266,70,-9.89140730118706],[118,266,71,-9.898716846599367],[118,266,72,-9.920518554916793],[118,266,73,-9.959309063042404],[118,266,74,-10.045418079002808],[118,266,75,-10.119847990297355],[118,266,76,-10.161869154226824],[118,266,77,-10.177079778204876],[118,266,78,-10.149688950452536],[118,266,79,-10.142069838924751],[118,267,64,-10.005601871552141],[118,267,65,-10.020693576538301],[118,267,66,-10.00741581528654],[118,267,67,-9.972393208814113],[118,267,68,-9.946953192448941],[118,267,69,-9.937328948592386],[118,267,70,-9.935096722201807],[118,267,71,-9.94246568311521],[118,267,72,-9.965646636356377],[118,267,73,-10.006722087337954],[118,267,74,-10.1013037728697],[118,267,75,-10.16942601327744],[118,267,76,-10.213498937226145],[118,267,77,-10.237957507184353],[118,267,78,-10.206963334605055],[118,267,79,-10.194176110948689],[118,268,64,-10.04316606534732],[118,268,65,-10.054697634748893],[118,268,66,-10.041678795496333],[118,268,67,-10.00739883939027],[118,268,68,-9.981041445152606],[118,268,69,-9.968492381683014],[118,268,70,-9.96472499619428],[118,268,71,-9.975161588711844],[118,268,72,-9.998857589310902],[118,268,73,-10.041714937532186],[118,268,74,-10.121595619882315],[118,268,75,-10.17668709470615],[118,268,76,-10.220472336290728],[118,268,77,-10.26700254802853],[118,268,78,-10.261918019505531],[118,268,79,-10.229880009228129],[118,269,64,-10.08569466305888],[118,269,65,-10.09610811874042],[118,269,66,-10.08314836120253],[118,269,67,-10.049529902413347],[118,269,68,-10.026163890662389],[118,269,69,-10.012065504754602],[118,269,70,-10.008361278007047],[118,269,71,-10.018877193812274],[118,269,72,-10.043722642347694],[118,269,73,-10.088731054541299],[118,269,74,-10.164093642938893],[118,269,75,-10.22241124059771],[118,269,76,-10.26212498960913],[118,269,77,-10.31203388712493],[118,269,78,-10.308593741195402],[118,269,79,-10.27760196840407],[118,270,64,-10.135679137598945],[118,270,65,-10.145440133137274],[118,270,66,-10.130749036640582],[118,270,67,-10.099966697316166],[118,270,68,-10.07399681071307],[118,270,69,-10.060320738108746],[118,270,70,-10.053475565015392],[118,270,71,-10.062316963381846],[118,270,72,-10.090027185465932],[118,270,73,-10.133438244343438],[118,270,74,-10.201980676420517],[118,270,75,-10.263592996646238],[118,270,76,-10.303037073246799],[118,270,77,-10.34744571730903],[118,270,78,-10.337349771712878],[118,270,79,-10.306746351562497],[118,271,64,-10.182359592677368],[118,271,65,-10.189931741403951],[118,271,66,-10.177708290155119],[118,271,67,-10.14600983655916],[118,271,68,-10.11873764821411],[118,271,69,-10.105861830604521],[118,271,70,-10.098930740445159],[118,271,71,-10.106576569315276],[118,271,72,-10.131872782685646],[118,271,73,-10.177177704643707],[118,271,74,-10.241493123610113],[118,271,75,-10.304952241539409],[118,271,76,-10.353166520607983],[118,271,77,-10.392387616504855],[118,271,78,-10.382448047291087],[118,271,79,-10.350132516566212],[118,272,64,-10.22832724003827],[118,272,65,-10.235135614065594],[118,272,66,-10.221834733908091],[118,272,67,-10.19249390093724],[118,272,68,-10.162943641512513],[118,272,69,-10.151489858770438],[118,272,70,-10.143846752829832],[118,272,71,-10.15116929261623],[118,272,72,-10.17626205768614],[118,272,73,-10.220467309917971],[118,272,74,-10.289224099264404],[118,272,75,-10.35295511089031],[118,272,76,-10.404980442592285],[118,272,77,-10.444771727619798],[118,272,78,-10.424958615586403],[118,272,79,-10.394823374667443],[118,273,64,-10.270858566442019],[118,273,65,-10.27818801339521],[118,273,66,-10.265266840826262],[118,273,67,-10.234828860945417],[118,273,68,-10.204020045738783],[118,273,69,-10.190436112253984],[118,273,70,-10.185354527108899],[118,273,71,-10.192172984520159],[118,273,72,-10.21720262441787],[118,273,73,-10.264667623492349],[118,273,74,-10.317931112344672],[118,273,75,-10.362431859166602],[118,273,76,-10.386741050721215],[118,273,77,-10.388387827087348],[118,273,78,-10.370526347508346],[118,273,79,-10.34277780038922],[118,274,64,-10.318394912480898],[118,274,65,-10.325188924143069],[118,274,66,-10.30998661489743],[118,274,67,-10.280771030280324],[118,274,68,-10.252278045341448],[118,274,69,-10.235772876833282],[118,274,70,-10.232410997762283],[118,274,71,-10.238988160116307],[118,274,72,-10.264041218049458],[118,274,73,-10.311535672399465],[118,274,74,-10.366096677972653],[118,274,75,-10.409211818001587],[118,274,76,-10.433637907299213],[118,274,77,-10.436408471264514],[118,274,78,-10.417068217157494],[118,274,79,-10.387652757429624],[118,275,64,-10.363122252518615],[118,275,65,-10.368802363072616],[118,275,66,-10.354316098988475],[118,275,67,-10.324986136216491],[118,275,68,-10.298368472492069],[118,275,69,-10.279730943876974],[118,275,70,-10.277013690299855],[118,275,71,-10.283953140251374],[118,275,72,-10.307875370172136],[118,275,73,-10.355839042679767],[118,275,74,-10.414909944874346],[118,275,75,-10.461609559047748],[118,275,76,-10.486584286737571],[118,275,77,-10.488935041192317],[118,275,78,-10.471016200607536],[118,275,79,-10.436569729472733],[118,276,64,-10.393331896063312],[118,276,65,-10.40106837435849],[118,276,66,-10.389083463598759],[118,276,67,-10.35988519764616],[118,276,68,-10.332518313902673],[118,276,69,-10.315125938150079],[118,276,70,-10.30741243058568],[118,276,71,-10.315581596998987],[118,276,72,-10.341570462031967],[118,276,73,-10.385828760147817],[118,276,74,-10.461411255484801],[118,276,75,-10.518303039675608],[118,276,76,-10.542678466408937],[118,276,77,-10.54120175818087],[118,276,78,-10.522178121211466],[118,276,79,-10.484862319903838],[118,277,64,-10.439612339526324],[118,277,65,-10.451127684746233],[118,277,66,-10.43918997392364],[118,277,67,-10.411927776972597],[118,277,68,-10.38024874981708],[118,277,69,-10.362794437779996],[118,277,70,-10.357071043346254],[118,277,71,-10.363413725084323],[118,277,72,-10.387165875876333],[118,277,73,-10.429183433243395],[118,277,74,-10.506706855129277],[118,277,75,-10.566677901666223],[118,277,76,-10.587377772657923],[118,277,77,-10.588111272526515],[118,277,78,-10.566025397929966],[118,277,79,-10.529819168739587],[118,278,64,-10.489728976148566],[118,278,65,-10.503892747696696],[118,278,66,-10.491925161622547],[118,278,67,-10.46178913230737],[118,278,68,-10.425232522608784],[118,278,69,-10.408839711299334],[118,278,70,-10.403620158460914],[118,278,71,-10.411051137585522],[118,278,72,-10.431461299625624],[118,278,73,-10.471350015804727],[118,278,74,-10.546950408921969],[118,278,75,-10.600566859096887],[118,278,76,-10.61959841279568],[118,278,77,-10.623272169174305],[118,278,78,-10.60134802099601],[118,278,79,-10.56719689949002],[118,279,64,-10.537293681781634],[118,279,65,-10.549821940811622],[118,279,66,-10.537493664124007],[118,279,67,-10.506189863257752],[118,279,68,-10.47014057353561],[118,279,69,-10.452126013832904],[118,279,70,-10.448049857117683],[118,279,71,-10.454114254876005],[118,279,72,-10.474723607222366],[118,279,73,-10.518227486766753],[118,279,74,-10.5923519387288],[118,279,75,-10.642120468254685],[118,279,76,-10.663935548755008],[118,279,77,-10.667323654730355],[118,279,78,-10.64457464044747],[118,279,79,-10.60873526743925],[118,280,64,-10.584593541531554],[118,280,65,-10.594365461810657],[118,280,66,-10.582577090889657],[118,280,67,-10.546954980349248],[118,280,68,-10.51515102328792],[118,280,69,-10.497150430037387],[118,280,70,-10.493925065450982],[118,280,71,-10.499650233945196],[118,280,72,-10.519036628764427],[118,280,73,-10.5635028045281],[118,280,74,-10.638677275444074],[118,280,75,-10.688661793321213],[118,280,76,-10.70866211773844],[118,280,77,-10.713428558298084],[118,280,78,-10.689819078599937],[118,280,79,-10.654013454597662],[118,281,64,-10.631259681965558],[118,281,65,-10.642007864850411],[118,281,66,-10.6266545829521],[118,281,67,-10.591221187376323],[118,281,68,-10.561343467702562],[118,281,69,-10.543302736862794],[118,281,70,-10.539849729012106],[118,281,71,-10.545566510455593],[118,281,72,-10.565663321537588],[118,281,73,-10.610198490609049],[118,281,74,-10.69653968606276],[118,281,75,-10.748846404342647],[118,281,76,-10.76424100098007],[118,281,77,-10.767202461855813],[118,281,78,-10.743857438343847],[118,281,79,-10.707618407667606],[118,282,64,-10.683537405357589],[118,282,65,-10.693040315463533],[118,282,66,-10.67406229473996],[118,282,67,-10.637122985583384],[118,282,68,-10.606883125488022],[118,282,69,-10.589550425936698],[118,282,70,-10.587696533394714],[118,282,71,-10.593899159606918],[118,282,72,-10.616958459721872],[118,282,73,-10.659758982857536],[118,282,74,-10.738322122570514],[118,282,75,-10.804085566100518],[118,282,76,-10.821761950648737],[118,282,77,-10.824818320612827],[118,282,78,-10.800404236718801],[118,282,79,-10.764959995579897],[118,283,64,-10.732373525178431],[118,283,65,-10.74116127927816],[118,283,66,-10.720910243167824],[118,283,67,-10.682530693573108],[118,283,68,-10.651015031714609],[118,283,69,-10.633710195766596],[118,283,70,-10.632339934978258],[118,283,71,-10.640919962879169],[118,283,72,-10.66740716265888],[118,283,73,-10.705874458803034],[118,283,74,-10.769186852774817],[118,283,75,-10.844604649664088],[118,283,76,-10.877365577585035],[118,283,77,-10.877111643212492],[118,283,78,-10.854570502930162],[118,283,79,-10.817211173974558],[118,284,64,-10.79902558373621],[118,284,65,-10.806137717100409],[118,284,66,-10.784092246065883],[118,284,67,-10.748129106334742],[118,284,68,-10.71557346644243],[118,284,69,-10.696715182418018],[118,284,70,-10.697813254777188],[118,284,71,-10.70689487919646],[118,284,72,-10.731935955452022],[118,284,73,-10.771567345551032],[118,284,74,-10.833148579306377],[118,284,75,-10.898527562899806],[118,284,76,-10.927709059756783],[118,284,77,-10.92856450817859],[118,284,78,-10.905634891985965],[118,284,79,-10.86975655706904],[118,285,64,-10.849888662812777],[118,285,65,-10.85366521660558],[118,285,66,-10.82870925401876],[118,285,67,-10.792114199145146],[118,285,68,-10.762047104227562],[118,285,69,-10.742390488323867],[118,285,70,-10.740229280675514],[118,285,71,-10.750771777309225],[118,285,72,-10.776133837641824],[118,285,73,-10.816522984407744],[118,285,74,-10.879582482892719],[118,285,75,-10.942674348789966],[118,285,76,-10.972144736749055],[118,285,77,-10.974994850083496],[118,285,78,-10.951005562662084],[118,285,79,-10.91620387285195],[118,286,64,-10.899757444403951],[118,286,65,-10.90010021021592],[118,286,66,-10.878298972723675],[118,286,67,-10.842391298316503],[118,286,68,-10.810168849421423],[118,286,69,-10.791512780488535],[118,286,70,-10.788131504999992],[118,286,71,-10.796606350514963],[118,286,72,-10.820488467005534],[118,286,73,-10.862684335894498],[118,286,74,-10.92325986301],[118,286,75,-10.98714538943067],[118,286,76,-11.019700873336244],[118,286,77,-11.02269611677752],[118,286,78,-10.999209117062843],[118,286,79,-10.964566600479266],[118,287,64,-10.944000008356781],[118,287,65,-10.944631711524151],[118,287,66,-10.923769701450322],[118,287,67,-10.888989612647697],[118,287,68,-10.856490153779902],[118,287,69,-10.83689671202854],[118,287,70,-10.833370231366288],[118,287,71,-10.842223333457198],[118,287,72,-10.867973744984159],[118,287,73,-10.911092932830499],[118,287,74,-10.963114256309854],[118,287,75,-11.026422957861705],[118,287,76,-11.062510962250995],[118,287,77,-11.065245900929622],[118,287,78,-11.042517815176778],[118,287,79,-11.004238903435798],[118,288,64,-10.985803274002583],[118,288,65,-10.988937794585363],[118,288,66,-10.970710543015242],[118,288,67,-10.934216903763215],[118,288,68,-10.903305599053256],[118,288,69,-10.883220832141022],[118,288,70,-10.878355092806737],[118,288,71,-10.886990791500498],[118,288,72,-10.914615926543346],[118,288,73,-10.959770272402718],[118,288,74,-11.007719899219461],[118,288,75,-11.068643047886495],[118,288,76,-11.10255100597312],[118,288,77,-11.107062842384233],[118,288,78,-11.088442648509245],[118,288,79,-11.048095120907119],[118,289,64,-11.020243263466009],[118,289,65,-11.02842794089671],[118,289,66,-11.015878165423887],[118,289,67,-10.981448091477334],[118,289,68,-10.951634063128266],[118,289,69,-10.93156963824485],[118,289,70,-10.927021602678204],[118,289,71,-10.937239416425161],[118,289,72,-10.962514456195247],[118,289,73,-11.009594453980714],[118,289,74,-11.07072384470505],[118,289,75,-11.130465874613867],[118,289,76,-11.155762461928934],[118,289,77,-11.157959968959027],[118,289,78,-11.138304024955344],[118,289,79,-11.102669019183455],[118,290,64,-11.066741105203937],[118,290,65,-11.07713919059228],[118,290,66,-11.06549040079946],[118,290,67,-11.03081859358272],[118,290,68,-10.99887002398383],[118,290,69,-10.978860640556645],[118,290,70,-10.974369690227668],[118,290,71,-10.98590701037329],[118,290,72,-11.0103993867899],[118,290,73,-11.055182333612164],[118,290,74,-11.110160133001253],[118,290,75,-11.165370654670198],[118,290,76,-11.189985991699707],[118,290,77,-11.190988552155925],[118,290,78,-11.171694991491341],[118,290,79,-11.1411645077565],[118,291,64,-11.113479293842909],[118,291,65,-11.125126764989504],[118,291,66,-11.11097919065604],[118,291,67,-11.075985904875806],[118,291,68,-11.044681978527652],[118,291,69,-11.024818677997246],[118,291,70,-11.02137164269706],[118,291,71,-11.033084952396914],[118,291,72,-11.057779870230664],[118,291,73,-11.100075396552509],[118,291,74,-11.151562851158854],[118,291,75,-11.210360355125951],[118,291,76,-11.239411796256332],[118,291,77,-11.240981744504987],[118,291,78,-11.221013708817376],[118,291,79,-11.192377201148327],[118,292,64,-11.136972827540971],[118,292,65,-11.147426293276585],[118,292,66,-11.13366212766195],[118,292,67,-11.10081008935952],[118,292,68,-11.070703938518992],[118,292,69,-11.051175016531737],[118,292,70,-11.04727483835651],[118,292,71,-11.059597455052375],[118,292,72,-11.084822977107489],[118,292,73,-11.126525661074142],[118,292,74,-11.176897983958437],[118,292,75,-11.238511356544443],[118,292,76,-11.273426943834245],[118,292,77,-11.275608827554304],[118,292,78,-11.256072029964088],[118,292,79,-11.226430211523628],[118,293,64,-11.181208885014572],[118,293,65,-11.191034871536521],[118,293,66,-11.17886146712362],[118,293,67,-11.145865843876429],[118,293,68,-11.117957876579693],[118,293,69,-11.098378784267016],[118,293,70,-11.097051854210084],[118,293,71,-11.10607140447358],[118,293,72,-11.13023172133835],[118,293,73,-11.173922810030854],[118,293,74,-11.222540938579414],[118,293,75,-11.280928996723999],[118,293,76,-11.317159712465937],[118,293,77,-11.318371116366457],[118,293,78,-11.300292883290469],[118,293,79,-11.270184843698015],[118,294,64,-11.225512195765226],[118,294,65,-11.235477325729123],[118,294,66,-11.224876930033707],[118,294,67,-11.193741605211514],[118,294,68,-11.162359620673353],[118,294,69,-11.142495260804393],[118,294,70,-11.14162802896085],[118,294,71,-11.151747011902918],[118,294,72,-11.174621782799916],[118,294,73,-11.216491754546235],[118,294,74,-11.266811719731045],[118,294,75,-11.32303947444124],[118,294,76,-11.373577938815192],[118,294,77,-11.379727896901931],[118,294,78,-11.3619370184596],[118,294,79,-11.330550599251595],[118,295,64,-11.271062955411159],[118,295,65,-11.279964459458622],[118,295,66,-11.268163243600915],[118,295,67,-11.238182444931308],[118,295,68,-11.204759501812903],[118,295,69,-11.182223864233888],[118,295,70,-11.18238397085176],[118,295,71,-11.194083961770284],[118,295,72,-11.219394151807204],[118,295,73,-11.2628120657292],[118,295,74,-11.3140850938346],[118,295,75,-11.353132245090883],[118,295,76,-11.388695903046386],[118,295,77,-11.420094777368586],[118,295,78,-11.406314909278164],[118,295,79,-11.373755611225965],[118,296,64,-11.314045254625947],[118,296,65,-11.323959471017513],[118,296,66,-11.31181003122946],[118,296,67,-11.280168065409047],[118,296,68,-11.24731840171941],[118,296,69,-11.224057086320894],[118,296,70,-11.225406307615492],[118,296,71,-11.237588903081228],[118,296,72,-11.261519458477737],[118,296,73,-11.305407417322925],[118,296,74,-11.36059822642738],[118,296,75,-11.400029920552313],[118,296,76,-11.430111199789268],[118,296,77,-11.465200161764537],[118,296,78,-11.453375662127616],[118,296,79,-11.41977139484553],[118,297,64,-11.364589231116495],[118,297,65,-11.370966448620903],[118,297,66,-11.356631922251776],[118,297,67,-11.322173312683098],[118,297,68,-11.28689494260822],[118,297,69,-11.263518998061747],[118,297,70,-11.265025507118303],[118,297,71,-11.281187207977913],[118,297,72,-11.305917204440382],[118,297,73,-11.35107302854118],[118,297,74,-11.40761411664584],[118,297,75,-11.44643598889185],[118,297,76,-11.483631661530133],[118,297,77,-11.522204108464264],[118,297,78,-11.504644502965698],[118,297,79,-11.470862010026089],[118,298,64,-11.411440111705607],[118,298,65,-11.418625320829722],[118,298,66,-11.404077589117252],[118,298,67,-11.368479940530255],[118,298,68,-11.335336590506627],[118,298,69,-11.310596594087583],[118,298,70,-11.312261978293655],[118,298,71,-11.325430400217519],[118,298,72,-11.353418505422411],[118,298,73,-11.399195957353358],[118,298,74,-11.449702845635345],[118,298,75,-11.49290900008632],[118,298,76,-11.532878428227722],[118,298,77,-11.56107707717961],[118,298,78,-11.550724965500956],[118,298,79,-11.51425632979319],[118,299,64,-11.458456269177113],[118,299,65,-11.463272391554774],[118,299,66,-11.447189020952063],[118,299,67,-11.41248709527986],[118,299,68,-11.377701583122898],[118,299,69,-11.355917308048495],[118,299,70,-11.358452433636547],[118,299,71,-11.369016393817208],[118,299,72,-11.397806057011389],[118,299,73,-11.444525014067315],[118,299,74,-11.49425103709944],[118,299,75,-11.537820382190748],[118,299,76,-11.58400083074879],[118,299,77,-11.609895493425737],[118,299,78,-11.599810810985865],[118,299,79,-11.562736397113662],[118,300,64,-11.505061176608745],[118,300,65,-11.509519407540113],[118,300,66,-11.493189705794011],[118,300,67,-11.460038791018556],[118,300,68,-11.423392817756946],[118,300,69,-11.402307569542732],[118,300,70,-11.400341635026901],[118,300,71,-11.411152738495293],[118,300,72,-11.436767072391554],[118,300,73,-11.483355116584343],[118,300,74,-11.5358556927885],[118,300,75,-11.576122763514212],[118,300,76,-11.598122841128705],[118,300,77,-11.608026681755508],[118,300,78,-11.598407948001975],[118,300,79,-11.572834503257255],[118,301,64,-11.54976021519098],[118,301,65,-11.555273540511575],[118,301,66,-11.536104255885716],[118,301,67,-11.50387033982043],[118,301,68,-11.469310903820798],[118,301,69,-11.449842960044787],[118,301,70,-11.445558718605083],[118,301,71,-11.457108775925498],[118,301,72,-11.484903322172888],[118,301,73,-11.532170061925138],[118,301,74,-11.581410842471422],[118,301,75,-11.620466044916189],[118,301,76,-11.643537078734468],[118,301,77,-11.657606757880789],[118,301,78,-11.648120002387206],[118,301,79,-11.6147467057634],[118,302,64,-11.589939287788116],[118,302,65,-11.597912324555905],[118,302,66,-11.577033823300683],[118,302,67,-11.546931356838956],[118,302,68,-11.512809272601611],[118,302,69,-11.493008263941585],[118,302,70,-11.487883735141335],[118,302,71,-11.499356008684156],[118,302,72,-11.526153575682143],[118,302,73,-11.574169557912233],[118,302,74,-11.62181193427971],[118,302,75,-11.658345479700518],[118,302,76,-11.683543277056271],[118,302,77,-11.698544712398814],[118,302,78,-11.687867987028138],[118,302,79,-11.654491566508552],[118,303,64,-11.6344317694357],[118,303,65,-11.640994772121442],[118,303,66,-11.621116693986032],[118,303,67,-11.59077417703808],[118,303,68,-11.556811540389171],[118,303,69,-11.538026626526182],[118,303,70,-11.532834778918328],[118,303,71,-11.544096647198485],[118,303,72,-11.571224449869934],[118,303,73,-11.618282933965007],[118,303,74,-11.667017079617347],[118,303,75,-11.702321581956673],[118,303,76,-11.72885596444868],[118,303,77,-11.744422916758293],[118,303,78,-11.735538332034093],[118,303,79,-11.701602016793547],[118,304,64,-11.677313469937147],[118,304,65,-11.683033827619393],[118,304,66,-11.66687016135248],[118,304,67,-11.636548679022129],[118,304,68,-11.604498420911847],[118,304,69,-11.583680167712425],[118,304,70,-11.577550943925543],[118,304,71,-11.588427921572977],[118,304,72,-11.615373899400652],[118,304,73,-11.661093790453371],[118,304,74,-11.711117161361049],[118,304,75,-11.748110652358843],[118,304,76,-11.77475500980358],[118,304,77,-11.787274694473918],[118,304,78,-11.779508059027687],[118,304,79,-11.747591953687136],[118,305,64,-11.723246581428361],[118,305,65,-11.729038963784767],[118,305,66,-11.714241150891626],[118,305,67,-11.684083198374465],[118,305,68,-11.651485390464378],[118,305,69,-11.629670219385973],[118,305,70,-11.6245866112135],[118,305,71,-11.631765005773609],[118,305,72,-11.657494971706885],[118,305,73,-11.704161262482755],[118,305,74,-11.753494242765765],[118,305,75,-11.792811084508312],[118,305,76,-11.821012448524618],[118,305,77,-11.833930550251925],[118,305,78,-11.824058875142523],[118,305,79,-11.792939442745064],[118,306,64,-11.775665526496201],[118,306,65,-11.781536699879569],[118,306,66,-11.762055984479034],[118,306,67,-11.730527169113772],[118,306,68,-11.69722098454477],[118,306,69,-11.674636064708823],[118,306,70,-11.671279152332499],[118,306,71,-11.67794855779107],[118,306,72,-11.703299213630212],[118,306,73,-11.74787993591444],[118,306,74,-11.799794621415302],[118,306,75,-11.841432042488538],[118,306,76,-11.870776942907495],[118,306,77,-11.882714853005709],[118,306,78,-11.872417423979622],[118,306,79,-11.842785250608365],[118,307,64,-11.822300439016425],[118,307,65,-11.829096403621632],[118,307,66,-11.808709423384776],[118,307,67,-11.773527189699838],[118,307,68,-11.73836382105696],[118,307,69,-11.71841289519092],[118,307,70,-11.715031652730826],[118,307,71,-11.725822112597678],[118,307,72,-11.75136431537444],[118,307,73,-11.793069890799984],[118,307,74,-11.845823822048391],[118,307,75,-11.889400543616803],[118,307,76,-11.91783647231789],[118,307,77,-11.929991544742746],[118,307,78,-11.916772787484065],[118,307,79,-11.889757757393776],[118,308,64,-11.851323970228668],[118,308,65,-11.857557167568547],[118,308,66,-11.837036431441398],[118,308,67,-11.801998787340455],[118,308,68,-11.768742542549813],[118,308,69,-11.751038586827073],[118,308,70,-11.753557935585267],[118,308,71,-11.770056845581593],[118,308,72,-11.799173192321282],[118,308,73,-11.844131072549063],[118,308,74,-11.897596579250765],[118,308,75,-11.943186888136056],[118,308,76,-11.973442232835826],[118,308,77,-11.98509505116989],[118,308,78,-11.974183939829727],[118,308,79,-11.947817100310171],[118,309,64,-11.898019545554673],[118,309,65,-11.905074428464298],[118,309,66,-11.883184146014056],[118,309,67,-11.848410661859315],[118,309,68,-11.815726668319828],[118,309,69,-11.79960706797894],[118,309,70,-11.800443400738745],[118,309,71,-11.814312377907026],[118,309,72,-11.84191436398329],[118,309,73,-11.890753501656722],[118,309,74,-11.944346156978723],[118,309,75,-11.990671731318722],[118,309,76,-12.019567687468244],[118,309,77,-12.03205984628639],[118,309,78,-12.020316563930313],[118,309,79,-11.994878307707257],[118,310,64,-11.938592177345578],[118,310,65,-11.94724345955943],[118,310,66,-11.92624498870882],[118,310,67,-11.89317040389192],[118,310,68,-11.858726238750089],[118,310,69,-11.839784083087386],[118,310,70,-11.84000176924165],[118,310,71,-11.85446173893788],[118,310,72,-11.879945568660194],[118,310,73,-11.93156221548236],[118,310,74,-11.985078026485084],[118,310,75,-12.029329660202164],[118,310,76,-12.058078105144489],[118,310,77,-12.070294334844135],[118,310,78,-12.060389356619858],[118,310,79,-12.032792088766803],[118,311,64,-11.983818847588148],[118,311,65,-11.992256339245706],[118,311,66,-11.971624227091644],[118,311,67,-11.938530162728759],[118,311,68,-11.905080503893462],[118,311,69,-11.883637209587953],[118,311,70,-11.886469780909186],[118,311,71,-11.898623659225736],[118,311,72,-11.92655368871894],[118,311,73,-11.97706005208242],[118,311,74,-12.032069763470325],[118,311,75,-12.07417272487628],[118,311,76,-12.104060294855156],[118,311,77,-12.118150256252871],[118,311,78,-12.107067809576975],[118,311,79,-12.080702523958282],[118,312,64,-12.033543664917818],[118,312,65,-12.041118065677006],[118,312,66,-12.022348496993018],[118,312,67,-11.989360844079322],[118,312,68,-11.956075484101556],[118,312,69,-11.93652899144499],[118,312,70,-11.936720518747183],[118,312,71,-11.94631377175974],[118,312,72,-11.96718081774217],[118,312,73,-12.015573237803283],[118,312,74,-12.06956592470068],[118,312,75,-12.112695614932285],[118,312,76,-12.143432902935373],[118,312,77,-12.158085953873625],[118,312,78,-12.151440826308153],[118,312,79,-12.12610241374135],[118,313,64,-12.077901999306684],[118,313,65,-12.086404308477576],[118,313,66,-12.069517136252168],[118,313,67,-12.035887349348357],[118,313,68,-12.001881280696006],[118,313,69,-11.984213313703473],[118,313,70,-11.984222236916558],[118,313,71,-11.991161943558462],[118,313,72,-12.013639233730242],[118,313,73,-12.061114440273842],[118,313,74,-12.113561759403838],[118,313,75,-12.15684003540756],[118,313,76,-12.188385863519466],[118,313,77,-12.205888450191827],[118,313,78,-12.201240670777912],[118,313,79,-12.176445829234456],[118,314,64,-12.130027788542364],[118,314,65,-12.13665078386067],[118,314,66,-12.118446886199553],[118,314,67,-12.085032274274296],[118,314,68,-12.051091674037176],[118,314,69,-12.033263272809913],[118,314,70,-12.03363338666263],[118,314,71,-12.038026557615797],[118,314,72,-12.058405588716465],[118,314,73,-12.107557407043283],[118,314,74,-12.1603096808924],[118,314,75,-12.203471662963649],[118,314,76,-12.234074590157691],[118,314,77,-12.252417951296549],[118,314,78,-12.252623833606696],[118,314,79,-12.22700427152111],[118,315,64,-12.181160151574447],[118,315,65,-12.187785138785454],[118,315,66,-12.169498702628587],[118,315,67,-12.132809092661349],[118,315,68,-12.098433632427547],[118,315,69,-12.080177892014111],[118,315,70,-12.079114126787074],[118,315,71,-12.082672918967537],[118,315,72,-12.103271180779162],[118,315,73,-12.151700723277887],[118,315,74,-12.204567231356263],[118,315,75,-12.246943929427237],[118,315,76,-12.278710249232835],[118,315,77,-12.297202133793348],[118,315,78,-12.299818857920807],[118,315,79,-12.27326662803535],[118,316,64,-12.237633349756038],[118,316,65,-12.240904028718635],[118,316,66,-12.2210168704518],[118,316,67,-12.183980938044535],[118,316,68,-12.146635928809285],[118,316,69,-12.127191867123432],[118,316,70,-12.123530968871782],[118,316,71,-12.12702092768906],[118,316,72,-12.14499943816502],[118,316,73,-12.193069309617249],[118,316,74,-12.245917443698064],[118,316,75,-12.28707922159416],[118,316,76,-12.319581413651957],[118,316,77,-12.33938359189162],[118,316,78,-12.340139584725845],[118,316,79,-12.313450695324615],[118,317,64,-12.286660181185054],[118,317,65,-12.290632906268707],[118,317,66,-12.26797395572445],[118,317,67,-12.22991838761266],[118,317,68,-12.195295170558772],[118,317,69,-12.173748812714196],[118,317,70,-12.168794336629816],[118,317,71,-12.170336628399719],[118,317,72,-12.190322894930285],[118,317,73,-12.239333820147676],[118,317,74,-12.291667163222359],[118,317,75,-12.332387796050202],[118,317,76,-12.363295095122897],[118,317,77,-12.384559305958001],[118,317,78,-12.386021226506061],[118,317,79,-12.358916578729925],[118,318,64,-12.330333106133452],[118,318,65,-12.332915253117225],[118,318,66,-12.308725598966895],[118,318,67,-12.270462889576876],[118,318,68,-12.23353467497088],[118,318,69,-12.20965862343518],[118,318,70,-12.203502129507806],[118,318,71,-12.207210624364189],[118,318,72,-12.227490962234668],[118,318,73,-12.276294936120555],[118,318,74,-12.33033737380799],[118,318,75,-12.370374202037834],[118,318,76,-12.401109746704313],[118,318,77,-12.421074436194662],[118,318,78,-12.421350361427377],[118,318,79,-12.397754044301287],[118,319,64,-12.378678691568886],[118,319,65,-12.378141916076004],[118,319,66,-12.355047738279541],[118,319,67,-12.31819775296642],[118,319,68,-12.277081658738684],[118,319,69,-12.252606661663199],[118,319,70,-12.245915252779051],[118,319,71,-12.253229858299635],[118,319,72,-12.27536196137264],[118,319,73,-12.32251037422802],[118,319,74,-12.375333279410269],[118,319,75,-12.416387851464453],[118,319,76,-12.448196983381594],[118,319,77,-12.468522562007099],[118,319,78,-12.467405827662295],[118,319,79,-12.443165735900275],[119,-64,64,22.870519457184916],[119,-64,65,22.924659098510073],[119,-64,66,22.97492866603583],[119,-64,67,23.01704750649751],[119,-64,68,23.03911558830454],[119,-64,69,23.05373459072365],[119,-64,70,23.07492088127323],[119,-64,71,23.10978057231333],[119,-64,72,23.1709117812159],[119,-64,73,23.25837148892171],[119,-64,74,23.330962673245576],[119,-64,75,23.386596923241207],[119,-64,76,23.445038168623817],[119,-64,77,23.511071296376592],[119,-64,78,23.57516070382445],[119,-64,79,23.629204400281772],[119,-63,64,22.67852331227246],[119,-63,65,22.732729951218836],[119,-63,66,22.78432451340377],[119,-63,67,22.824037831830324],[119,-63,68,22.848264463689997],[119,-63,69,22.861329879689723],[119,-63,70,22.883176320272437],[119,-63,71,22.922165732778456],[119,-63,72,22.98568813631007],[119,-63,73,23.074251822431158],[119,-63,74,23.14500374422048],[119,-63,75,23.19786042605031],[119,-63,76,23.255866966502637],[119,-63,77,23.320965688792338],[119,-63,78,23.38306691490484],[119,-63,79,23.43703890782004],[119,-62,64,22.493018008328384],[119,-62,65,22.54698447388654],[119,-62,66,22.59820227632768],[119,-62,67,22.634618947287983],[119,-62,68,22.659155725106807],[119,-62,69,22.674574347153232],[119,-62,70,22.69402149687319],[119,-62,71,22.73464782964121],[119,-62,72,22.799070393567682],[119,-62,73,22.882309058308973],[119,-62,74,22.95727265863028],[119,-62,75,23.00808444998037],[119,-62,76,23.065735684045467],[119,-62,77,23.1291120760576],[119,-62,78,23.193999938874253],[119,-62,79,23.247445359740293],[119,-61,64,22.301466329645343],[119,-61,65,22.354414364110546],[119,-61,66,22.406523675554215],[119,-61,67,22.440202654252435],[119,-61,68,22.465254136636485],[119,-61,69,22.482419991002228],[119,-61,70,22.50173206911652],[119,-61,71,22.541204980682554],[119,-61,72,22.605650139739097],[119,-61,73,22.685415581886577],[119,-61,74,22.76033948342897],[119,-61,75,22.81239734051502],[119,-61,76,22.868541208641407],[119,-61,77,22.93168561385037],[119,-61,78,22.997101922581354],[119,-61,79,23.052438924055373],[119,-60,64,22.111713437237047],[119,-60,65,22.1620631821715],[119,-60,66,22.214319005313264],[119,-60,67,22.25129513545413],[119,-60,68,22.275044820901165],[119,-60,69,22.293038984773588],[119,-60,70,22.315779451078022],[119,-60,71,22.35513655601057],[119,-60,72,22.416058282331147],[119,-60,73,22.49621649827809],[119,-60,74,22.569664477067622],[119,-60,75,22.621366991740107],[119,-60,76,22.67760282068382],[119,-60,77,22.738920262285564],[119,-60,78,22.8056373774122],[119,-60,79,22.86345181159427],[119,-59,64,21.93940327085418],[119,-59,65,21.98605251604749],[119,-59,66,22.033272535170624],[119,-59,67,22.07004689048809],[119,-59,68,22.091630831090622],[119,-59,69,22.109967439694362],[119,-59,70,22.133616312185286],[119,-59,71,22.165982592030716],[119,-59,72,22.223771687272205],[119,-59,73,22.300705751878848],[119,-59,74,22.37314908669194],[119,-59,75,22.426824545504417],[119,-59,76,22.483476710311557],[119,-59,77,22.54855341787754],[119,-59,78,22.617414096813924],[119,-59,79,22.677935194353946],[119,-58,64,21.750643808566135],[119,-58,65,21.798097447667217],[119,-58,66,21.84369102204682],[119,-58,67,21.881644973628497],[119,-58,68,21.903810487110846],[119,-58,69,21.92220177066071],[119,-58,70,21.948077020881247],[119,-58,71,21.97582586866279],[119,-58,72,22.03197365896313],[119,-58,73,22.110230819291495],[119,-58,74,22.18238545720862],[119,-58,75,22.236031083090452],[119,-58,76,22.29193014953581],[119,-58,77,22.357004885081906],[119,-58,78,22.42872742317722],[119,-58,79,22.490567117845572],[119,-57,64,21.55662238453857],[119,-57,65,21.60121487335404],[119,-57,66,21.64914683833015],[119,-57,67,21.68718834187939],[119,-57,68,21.710758107192856],[119,-57,69,21.730626636319712],[119,-57,70,21.75162472741691],[119,-57,71,21.78053267262726],[119,-57,72,21.83574503390057],[119,-57,73,21.917593753165292],[119,-57,74,21.98984680451005],[119,-57,75,22.04357500083478],[119,-57,76,22.099292166625986],[119,-57,77,22.16493201978627],[119,-57,78,22.23771296703488],[119,-57,79,22.301930402470322],[119,-56,64,21.366795576096937],[119,-56,65,21.410853733770395],[119,-56,66,21.45900349011127],[119,-56,67,21.496522679098856],[119,-56,68,21.518783238092386],[119,-56,69,21.53924071821798],[119,-56,70,21.56032072193091],[119,-56,71,21.59045949880095],[119,-56,72,21.643365164171158],[119,-56,73,21.726389902698248],[119,-56,74,21.79674794740097],[119,-56,75,21.852687492057285],[119,-56,76,21.90897711812069],[119,-56,77,21.975720445424443],[119,-56,78,22.049482215597138],[119,-56,79,22.111233042473835],[119,-55,64,21.177956325465058],[119,-55,65,21.22152475169776],[119,-55,66,21.268193609013537],[119,-55,67,21.3054850281788],[119,-55,68,21.327745677526465],[119,-55,69,21.345668731205837],[119,-55,70,21.366360292264524],[119,-55,71,21.398704846456095],[119,-55,72,21.452386702550967],[119,-55,73,21.535833523139573],[119,-55,74,21.606667994115565],[119,-55,75,21.661585716090382],[119,-55,76,21.71924448670417],[119,-55,77,21.78444352306438],[119,-55,78,21.85976151194856],[119,-55,79,21.918351523777808],[119,-54,64,20.990805862101915],[119,-54,65,21.03282266556914],[119,-54,66,21.076243734479437],[119,-54,67,21.112435453611965],[119,-54,68,21.138217761185643],[119,-54,69,21.155551450143466],[119,-54,70,21.17287954082948],[119,-54,71,21.20515997591625],[119,-54,72,21.260666759372885],[119,-54,73,21.343389020032724],[119,-54,74,21.41711310791716],[119,-54,75,21.472174939445487],[119,-54,76,21.5283228163712],[119,-54,77,21.595781914049557],[119,-54,78,21.668014609273726],[119,-54,79,21.72652856667964],[119,-53,64,20.795342401635892],[119,-53,65,20.8347604012821],[119,-53,66,20.881474789642887],[119,-53,67,20.917479269782163],[119,-53,68,20.943296797408568],[119,-53,69,20.961459406619902],[119,-53,70,20.978465098913844],[119,-53,71,21.008457817097096],[119,-53,72,21.064645191511804],[119,-53,73,21.146583565800007],[119,-53,74,21.22252732849148],[119,-53,75,21.2770861173626],[119,-53,76,21.33210719145614],[119,-53,77,21.401818832239453],[119,-53,78,21.47378004503355],[119,-53,79,21.531265751360667],[119,-52,64,20.602704206041864],[119,-52,65,20.643867069639935],[119,-52,66,20.69104870591607],[119,-52,67,20.72837183997805],[119,-52,68,20.75232730327967],[119,-52,69,20.772423882759348],[119,-52,70,20.78955382702561],[119,-52,71,20.82142780594623],[119,-52,72,20.875096812623628],[119,-52,73,20.955681385177062],[119,-52,74,21.03111348248395],[119,-52,75,21.089345780655496],[119,-52,76,21.141827094370893],[119,-52,77,21.211424793495503],[119,-52,78,21.28430666188275],[119,-52,79,21.34231616951347],[119,-51,64,20.395502039236824],[119,-51,65,20.43219216445045],[119,-51,66,20.474965904252947],[119,-51,67,20.510223243805783],[119,-51,68,20.53343075096038],[119,-51,69,20.55360303130801],[119,-51,70,20.574383790545475],[119,-51,71,20.605756509129204],[119,-51,72,20.660483291261976],[119,-51,73,20.74335560715768],[119,-51,74,20.819697683983687],[119,-51,75,20.879013051741754],[119,-51,76,20.93776907789943],[119,-51,77,21.011754262337373],[119,-51,78,21.09339597942273],[119,-51,79,21.158658900003765],[119,-50,64,20.208849788717288],[119,-50,65,20.242118614319494],[119,-50,66,20.28478970989979],[119,-50,67,20.31789701702837],[119,-50,68,20.339794631679254],[119,-50,69,20.36453830207315],[119,-50,70,20.387020723125254],[119,-50,71,20.41663381064425],[119,-50,72,20.471416990528063],[119,-50,73,20.553520610450526],[119,-50,74,20.629015073989148],[119,-50,75,20.685218775719225],[119,-50,76,20.742654497534392],[119,-50,77,20.819916940557228],[119,-50,78,20.902862175428098],[119,-50,79,20.969017360893076],[119,-49,64,20.02469601255711],[119,-49,65,20.055310447896815],[119,-49,66,20.088056688073507],[119,-49,67,20.12058726177201],[119,-49,68,20.14457677798696],[119,-49,69,20.170373479344327],[119,-49,70,20.193035529616136],[119,-49,71,20.22375196620947],[119,-49,72,20.277851303877693],[119,-49,73,20.35895044693753],[119,-49,74,20.435389575666072],[119,-49,75,20.491001526678833],[119,-49,76,20.547863577352594],[119,-49,77,20.625255841588523],[119,-49,78,20.70790411488785],[119,-49,79,20.775176434649374],[119,-48,64,19.845743886461378],[119,-48,65,19.877546201691725],[119,-48,66,19.897477956097944],[119,-48,67,19.930652503014063],[119,-48,68,19.957570672530846],[119,-48,69,19.982099507413757],[119,-48,70,20.0048561333391],[119,-48,71,20.036565691945402],[119,-48,72,20.087067496813244],[119,-48,73,20.168350057859918],[119,-48,74,20.242637564469344],[119,-48,75,20.29760619267297],[119,-48,76,20.35731357069694],[119,-48,77,20.433033755850264],[119,-48,78,20.51617843133799],[119,-48,79,20.583799995984666],[119,-47,64,19.676844245956786],[119,-47,65,19.687203689873353],[119,-47,66,19.71171151938865],[119,-47,67,19.751695118901196],[119,-47,68,19.784092981581207],[119,-47,69,19.806675629453615],[119,-47,70,19.8262624460622],[119,-47,71,19.853043878599497],[119,-47,72,19.902962750567394],[119,-47,73,19.980513333862863],[119,-47,74,20.0468057944901],[119,-47,75,20.10364011356004],[119,-47,76,20.166500101531213],[119,-47,77,20.239066517993084],[119,-47,78,20.31680756381581],[119,-47,79,20.380225314941356],[119,-46,64,19.442794393018723],[119,-46,65,19.481111080057005],[119,-46,66,19.52490615755688],[119,-46,67,19.5664438944918],[119,-46,68,19.599710379470796],[119,-46,69,19.618931283774216],[119,-46,70,19.637077843895636],[119,-46,71,19.666492263401253],[119,-46,72,19.716570163786415],[119,-46,73,19.789654326964946],[119,-46,74,19.85527985207601],[119,-46,75,19.910895069282017],[119,-46,76,19.975207715129056],[119,-46,77,20.04733370675783],[119,-46,78,20.122502736637237],[119,-46,79,20.185959702239884],[119,-45,64,19.288533796774814],[119,-45,65,19.32191909702538],[119,-45,66,19.346508320862704],[119,-45,67,19.37635048572563],[119,-45,68,19.40909557750219],[119,-45,69,19.427321463960258],[119,-45,70,19.44459388997667],[119,-45,71,19.475715172820724],[119,-45,72,19.52559166789529],[119,-45,73,19.59665495131998],[119,-45,74,19.65992604340929],[119,-45,75,19.714320216809952],[119,-45,76,19.778983106988278],[119,-45,77,19.85093318761965],[119,-45,78,19.92764456685055],[119,-45,79,19.990402828856723],[119,-44,64,19.197033519228476],[119,-44,65,19.217852118960348],[119,-44,66,19.203644422016914],[119,-44,67,19.190617016130076],[119,-44,68,19.216983848384448],[119,-44,69,19.234086025777312],[119,-44,70,19.248411522571907],[119,-44,71,19.27698294916161],[119,-44,72,19.325334795448935],[119,-44,73,19.392287185028213],[119,-44,74,19.454759120454877],[119,-44,75,19.50925501041942],[119,-44,76,19.570845599991046],[119,-44,77,19.640938523182403],[119,-44,78,19.720529648402763],[119,-44,79,19.78716203194746],[119,-43,64,19.00197051934127],[119,-43,65,19.044676279009312],[119,-43,66,19.049459126389355],[119,-43,67,19.013235971098442],[119,-43,68,19.040981951883538],[119,-43,69,19.05917895137444],[119,-43,70,19.073129059632755],[119,-43,71,19.099200812733418],[119,-43,72,19.148257449079736],[119,-43,73,19.21354476219067],[119,-43,74,19.275081360376184],[119,-43,75,19.327684837735646],[119,-43,76,19.38506720858256],[119,-43,77,19.452238084754672],[119,-43,78,19.532767915325255],[119,-43,79,19.597456076743825],[119,-42,64,18.83657667235521],[119,-42,65,18.90872856116504],[119,-42,66,18.922060782391128],[119,-42,67,18.82711972544619],[119,-42,68,18.854338377350054],[119,-42,69,18.87302248471743],[119,-42,70,18.88910011396603],[119,-42,71,18.915055025391066],[119,-42,72,18.961135561719008],[119,-42,73,19.02494723062694],[119,-42,74,19.084193462865453],[119,-42,75,19.13471544193659],[119,-42,76,19.191340823589616],[119,-42,77,19.260038545323045],[119,-42,78,19.33806448644286],[119,-42,79,19.405210803797075],[119,-41,64,18.705242028029954],[119,-41,65,18.802960899973833],[119,-41,66,18.812410726574367],[119,-41,67,18.705182067701465],[119,-41,68,18.662686666485023],[119,-41,69,18.68065845790238],[119,-41,70,18.697296268304367],[119,-41,71,18.723266004945593],[119,-41,72,18.766814194102512],[119,-41,73,18.828290812679434],[119,-41,74,18.891121443629743],[119,-41,75,18.942128394079827],[119,-41,76,18.99455399461403],[119,-41,77,19.06744059224904],[119,-41,78,19.143180054532664],[119,-41,79,19.212690937007064],[119,-40,64,18.552274290657685],[119,-40,65,18.66803483341362],[119,-40,66,18.62747878700185],[119,-40,67,18.54617639562309],[119,-40,68,18.47575305250775],[119,-40,69,18.49325762390428],[119,-40,70,18.50915970600322],[119,-40,71,18.534116599480324],[119,-40,72,18.57575188275802],[119,-40,73,18.637422509406107],[119,-40,74,18.70106797818766],[119,-40,75,18.750942513699034],[119,-40,76,18.804216774025097],[119,-40,77,18.87578205931334],[119,-40,78,18.949948043332636],[119,-40,79,19.023230031511417],[119,-39,64,18.410608387488743],[119,-39,65,18.49255552433229],[119,-39,66,18.453197810931204],[119,-39,67,18.34823010385876],[119,-39,68,18.29640886440736],[119,-39,69,18.312520443002875],[119,-39,70,18.32574388589529],[119,-39,71,18.35183432857243],[119,-39,72,18.392858603737455],[119,-39,73,18.45481891513637],[119,-39,74,18.517951011437347],[119,-39,75,18.56833073909665],[119,-39,76,18.622528847400062],[119,-39,77,18.69001777285224],[119,-39,78,18.765173323317494],[119,-39,79,18.835483144822355],[119,-38,64,18.38392453708188],[119,-38,65,18.41429162967141],[119,-38,66,18.294863000926522],[119,-38,67,18.088388283288076],[119,-38,68,18.113208809965133],[119,-38,69,18.125162474733],[119,-38,70,18.13992016676919],[119,-38,71,18.164472927945923],[119,-38,72,18.20486790946325],[119,-38,73,18.26856714696723],[119,-38,74,18.326071237349698],[119,-38,75,18.378447951193817],[119,-38,76,18.432351399917177],[119,-38,77,18.501515756861927],[119,-38,78,18.574193784942263],[119,-38,79,18.64581787888968],[119,-37,64,18.288340277858392],[119,-37,65,18.27867233985701],[119,-37,66,18.13690348820002],[119,-37,67,17.914781704882074],[119,-37,68,17.92248984753976],[119,-37,69,17.933937346334577],[119,-37,70,17.94680541258067],[119,-37,71,17.970285494505436],[119,-37,72,18.010734684578537],[119,-37,73,18.074679540334913],[119,-37,74,18.132440016147537],[119,-37,75,18.183184106881424],[119,-37,76,18.237410013443487],[119,-37,77,18.306006646923205],[119,-37,78,18.37870559346472],[119,-37,79,18.45110135822787],[119,-36,64,18.10748134448901],[119,-36,65,18.099065604882632],[119,-36,66,17.960415088518072],[119,-36,67,17.722667372395673],[119,-36,68,17.73799800055312],[119,-36,69,17.748418162332076],[119,-36,70,17.761877287759845],[119,-36,71,17.780890765365875],[119,-36,72,17.823397947630593],[119,-36,73,17.886015028795317],[119,-36,74,17.94445883780607],[119,-36,75,17.993707331050384],[119,-36,76,18.04654925695793],[119,-36,77,18.11665427889754],[119,-36,78,18.190700730683222],[119,-36,79,18.264419626166042],[119,-35,64,17.839016756177863],[119,-35,65,17.806160729177446],[119,-35,66,17.651828647250507],[119,-35,67,17.525635937545015],[119,-35,68,17.549508940512574],[119,-35,69,17.560331787127613],[119,-35,70,17.56990215082254],[119,-35,71,17.58526422011892],[119,-35,72,17.62704448584153],[119,-35,73,17.687419337005384],[119,-35,74,17.745697467650697],[119,-35,75,17.793179949254252],[119,-35,76,17.850266672928043],[119,-35,77,17.920733837327113],[119,-35,78,18.000914955570217],[119,-35,79,18.078144321101156],[119,-34,64,17.66264847851498],[119,-34,65,17.61987303000221],[119,-34,66,17.468599424725284],[119,-34,67,17.338179409151916],[119,-34,68,17.362955837618852],[119,-34,69,17.373435578660136],[119,-34,70,17.38160308364459],[119,-34,71,17.4003537992571],[119,-34,72,17.438819150734698],[119,-34,73,17.49669908521044],[119,-34,74,17.550995209194248],[119,-34,75,17.599314325036048],[119,-34,76,17.65463408406013],[119,-34,77,17.727199776079573],[119,-34,78,17.80921852117332],[119,-34,79,17.887511882091918],[119,-33,64,17.48407752743042],[119,-33,65,17.443992269326454],[119,-33,66,17.34461088213774],[119,-33,67,17.217901487928277],[119,-33,68,17.239703397682725],[119,-33,69,17.24600729177222],[119,-33,70,17.25173365868254],[119,-33,71,17.263291178524725],[119,-33,72,17.297401721790976],[119,-33,73,17.349288127029013],[119,-33,74,17.396308415293817],[119,-33,75,17.439737541305796],[119,-33,76,17.490657870990493],[119,-33,77,17.556165950864806],[119,-33,78,17.636552357287556],[119,-33,79,17.710645173855255],[119,-32,64,17.284394047168234],[119,-32,65,17.264734460541785],[119,-32,66,17.18711245122203],[119,-32,67,17.038985399193102],[119,-32,68,17.052230844712497],[119,-32,69,17.061537554356416],[119,-32,70,17.067996123082732],[119,-32,71,17.07763489614713],[119,-32,72,17.111024477066717],[119,-32,73,17.16147249438855],[119,-32,74,17.209288518416262],[119,-32,75,17.248036507163082],[119,-32,76,17.297662311527258],[119,-32,77,17.363277341297135],[119,-32,78,17.44466539240807],[119,-32,79,17.517613290508912],[119,-31,64,17.001229756730382],[119,-31,65,17.01043479136298],[119,-31,66,16.99817603291033],[119,-31,67,16.967752261219484],[119,-31,68,16.883730178778848],[119,-31,69,16.876914505553664],[119,-31,70,16.882843330177884],[119,-31,71,16.892265062653678],[119,-31,72,16.922483250468904],[119,-31,73,16.974103702530044],[119,-31,74,17.020666692988158],[119,-31,75,17.057809344486017],[119,-31,76,17.108767363684077],[119,-31,77,17.17488318734466],[119,-31,78,17.251320875825314],[119,-31,79,17.323716934703405],[119,-30,64,16.805898977169864],[119,-30,65,16.83827598905327],[119,-30,66,16.79973325951518],[119,-30,67,16.802577358185168],[119,-30,68,16.7244470567157],[119,-30,69,16.692820711241843],[119,-30,70,16.696433579079248],[119,-30,71,16.707244212043967],[119,-30,72,16.736058692688626],[119,-30,73,16.78557667923605],[119,-30,74,16.832078012705313],[119,-30,75,16.86935043289987],[119,-30,76,16.9206863083449],[119,-30,77,16.9871064218555],[119,-30,78,17.061524402245794],[119,-30,79,17.12998296909924],[119,-29,64,16.666050694361864],[119,-29,65,16.71559462487962],[119,-29,66,16.668856817395774],[119,-29,67,16.662168647448585],[119,-29,68,16.583912777068946],[119,-29,69,16.52353740332458],[119,-29,70,16.506085104593883],[119,-29,71,16.51672382647948],[119,-29,72,16.5448481063566],[119,-29,73,16.591702817198854],[119,-29,74,16.63837128230069],[119,-29,75,16.676890341610633],[119,-29,76,16.72820026535879],[119,-29,77,16.794186406252688],[119,-29,78,16.86689131360853],[119,-29,79,16.933652685336366],[119,-28,64,16.45518767983813],[119,-28,65,16.512165984726572],[119,-28,66,16.48540029368613],[119,-28,67,16.46451687487408],[119,-28,68,16.37546391663154],[119,-28,69,16.342330810123332],[119,-28,70,16.319377054475186],[119,-28,71,16.33325079583984],[119,-28,72,16.360625727539535],[119,-28,73,16.405086610931345],[119,-28,74,16.450708505936564],[119,-28,75,16.487213136631244],[119,-28,76,16.53763192874842],[119,-28,77,16.605529956974465],[119,-28,78,16.67798068253793],[119,-28,79,16.743588102688058],[119,-27,64,16.336435336877507],[119,-27,65,16.34993564184497],[119,-27,66,16.341573954544383],[119,-27,67,16.327236734869693],[119,-27,68,16.25426374802079],[119,-27,69,16.21193706665015],[119,-27,70,16.154463087645826],[119,-27,71,16.16049406720815],[119,-27,72,16.18679563953275],[119,-27,73,16.229684531628756],[119,-27,74,16.272340346807933],[119,-27,75,16.308555906619382],[119,-27,76,16.35507813905377],[119,-27,77,16.417749931499095],[119,-27,78,16.48777492922833],[119,-27,79,16.550918316885788],[119,-26,64,16.205790126288203],[119,-26,65,16.173974427211235],[119,-26,66,16.147388304241925],[119,-26,67,16.14113834100439],[119,-26,68,16.069957725747642],[119,-26,69,16.02320442816459],[119,-26,70,15.95826710178113],[119,-26,71,15.973801074402179],[119,-26,72,15.999632732514302],[119,-26,73,16.040451048221158],[119,-26,74,16.082449133709037],[119,-26,75,16.116737429267687],[119,-26,76,16.164824424256828],[119,-26,77,16.224013909763702],[119,-26,78,16.296126623225955],[119,-26,79,16.360432315781296],[119,-25,64,16.037678851253812],[119,-25,65,15.967878228884375],[119,-25,66,15.933700436880503],[119,-25,67,15.94635387109842],[119,-25,68,15.88256087410369],[119,-25,69,15.819777415765012],[119,-25,70,15.765138296283741],[119,-25,71,15.781147941283713],[119,-25,72,15.808218133785612],[119,-25,73,15.849091956169937],[119,-25,74,15.890450947952205],[119,-25,75,15.923925511347937],[119,-25,76,15.970513263833345],[119,-25,77,16.02787893163035],[119,-25,78,16.10306692407554],[119,-25,79,16.168950555066523],[119,-24,64,15.853152456999936],[119,-24,65,15.765954208906882],[119,-24,66,15.723128824723375],[119,-24,67,15.733120627543071],[119,-24,68,15.686553370878144],[119,-24,69,15.616930129419497],[119,-24,70,15.577664589943687],[119,-24,71,15.590649751039406],[119,-24,72,15.619275475766152],[119,-24,73,15.660117003802482],[119,-24,74,15.698936022468157],[119,-24,75,15.733031747933833],[119,-24,76,15.7774237518462],[119,-24,77,15.835794622800796],[119,-24,78,15.91157665922225],[119,-24,79,15.978770772424035],[119,-23,64,15.63631125513576],[119,-23,65,15.552125629111208],[119,-23,66,15.459831973125754],[119,-23,67,15.40714063492482],[119,-23,68,15.370865307050142],[119,-23,69,15.377070811351345],[119,-23,70,15.38252707500833],[119,-23,71,15.3937515253901],[119,-23,72,15.419060010125316],[119,-23,73,15.460962469780831],[119,-23,74,15.498450209581037],[119,-23,75,15.530799563466703],[119,-23,76,15.571959404904808],[119,-23,77,15.634714498220514],[119,-23,78,15.707307581694],[119,-23,79,15.776952942537486],[119,-22,64,15.442521657327152],[119,-22,65,15.351543528797169],[119,-22,66,15.252203586922564],[119,-22,67,15.206032245304085],[119,-22,68,15.185267421937718],[119,-22,69,15.192287872862696],[119,-22,70,15.19774191181335],[119,-22,71,15.205315596290534],[119,-22,72,15.230156896778167],[119,-22,73,15.271155018888221],[119,-22,74,15.306671104917662],[119,-22,75,15.339688290070551],[119,-22,76,15.37931542439795],[119,-22,77,15.443101720443842],[119,-22,78,15.513670475438344],[119,-22,79,15.582901558598131],[119,-21,64,15.33994144407493],[119,-21,65,15.241220324539992],[119,-21,66,15.12873788393094],[119,-21,67,15.08395364725127],[119,-21,68,15.086000971278354],[119,-21,69,15.007983962797315],[119,-21,70,15.008399611812207],[119,-21,71,15.015332419680544],[119,-21,72,15.037650711070114],[119,-21,73,15.076080335373259],[119,-21,74,15.111781768647122],[119,-21,75,15.142820237068603],[119,-21,76,15.1830180909867],[119,-21,77,15.246245229095775],[119,-21,78,15.316202742180861],[119,-21,79,15.381906224695944],[119,-20,64,15.137024616650141],[119,-20,65,15.025650678522235],[119,-20,66,14.93177389237016],[119,-20,67,14.909577582614862],[119,-20,68,14.910880747555547],[119,-20,69,14.821796817495226],[119,-20,70,14.824907627998858],[119,-20,71,14.831003923126982],[119,-20,72,14.850232058641556],[119,-20,73,14.886957410536116],[119,-20,74,14.922165228360619],[119,-20,75,14.949419842157944],[119,-20,76,14.989677461122623],[119,-20,77,15.052479629309333],[119,-20,78,15.122420736098393],[119,-20,79,15.186954719606089],[119,-19,64,14.963782836363988],[119,-19,65,14.937941823549243],[119,-19,66,14.839875712141053],[119,-19,67,14.810321531108393],[119,-19,68,14.797449970786316],[119,-19,69,14.721372828339781],[119,-19,70,14.70720413217397],[119,-19,71,14.655284382855458],[119,-19,72,14.671479974891044],[119,-19,73,14.705099585926167],[119,-19,74,14.739018729050402],[119,-19,75,14.766341531486711],[119,-19,76,14.806305249357465],[119,-19,77,14.869060894460471],[119,-19,78,14.938527640704958],[119,-19,79,15.004061412669978],[119,-18,64,14.762575462102006],[119,-18,65,14.754827680833458],[119,-18,66,14.619188546285063],[119,-18,67,14.62784330745163],[119,-18,68,14.594764131602567],[119,-18,69,14.534323452921578],[119,-18,70,14.535077389027958],[119,-18,71,14.471324149452753],[119,-18,72,14.487921574877841],[119,-18,73,14.519097841944552],[119,-18,74,14.55250833684971],[119,-18,75,14.577702044552657],[119,-18,76,14.614116299570293],[119,-18,77,14.677090688631191],[119,-18,78,14.748459451009955],[119,-18,79,14.812530648069833],[119,-17,64,14.56073519286778],[119,-17,65,14.54383154725585],[119,-17,66,14.397889712885165],[119,-17,67,14.42976836246332],[119,-17,68,14.396410016703292],[119,-17,69,14.338981708613181],[119,-17,70,14.365139313228733],[119,-17,71,14.303751577902778],[119,-17,72,14.323775738293563],[119,-17,73,14.364191009400027],[119,-17,74,14.362118310281557],[119,-17,75,14.384102349377203],[119,-17,76,14.422111734713372],[119,-17,77,14.484731090152657],[119,-17,78,14.554788031459667],[119,-17,79,14.619073786177593],[119,-16,64,14.373132826992533],[119,-16,65,14.412707795786451],[119,-16,66,14.285748331350522],[119,-16,67,14.30947659250264],[119,-16,68,14.315709872501994],[119,-16,69,14.244676339588725],[119,-16,70,14.291973008735537],[119,-16,71,14.228809335563707],[119,-16,72,14.24147220932743],[119,-16,73,14.298486020552428],[119,-16,74,14.17389264066945],[119,-16,75,14.195559117656279],[119,-16,76,14.233921769042395],[119,-16,77,14.292586492379021],[119,-16,78,14.363793844184958],[119,-16,79,14.428343050880176],[119,-15,64,14.181233179506812],[119,-15,65,14.210317702174398],[119,-15,66,14.086609392621101],[119,-15,67,14.106492947677529],[119,-15,68,14.156317871485145],[119,-15,69,14.078567937781651],[119,-15,70,14.114183917118947],[119,-15,71,14.030301362184726],[119,-15,72,14.056653648044747],[119,-15,73,14.106307469240342],[119,-15,74,13.979388593196397],[119,-15,75,14.000608491632397],[119,-15,76,14.03918569777481],[119,-15,77,14.09606614740974],[119,-15,78,14.167113272128883],[119,-15,79,14.233856789184054],[119,-14,64,13.875066428266194],[119,-14,65,13.888179487681596],[119,-14,66,13.826691160282774],[119,-14,67,13.852391079567463],[119,-14,68,13.897898911327157],[119,-14,69,13.871789820567797],[119,-14,70,13.87889821314631],[119,-14,71,13.815837622606685],[119,-14,72,13.849211701710638],[119,-14,73,13.8748961843496],[119,-14,74,13.791649997486749],[119,-14,75,13.809169165521382],[119,-14,76,13.850165028017212],[119,-14,77,13.906072827975928],[119,-14,78,13.976490133443637],[119,-14,79,14.04436847050379],[119,-13,64,13.686176447379422],[119,-13,65,13.721831767051684],[119,-13,66,13.671559660679856],[119,-13,67,13.716917735462728],[119,-13,68,13.744406963530842],[119,-13,69,13.741446834993292],[119,-13,70,13.73190970508316],[119,-13,71,13.682430015600515],[119,-13,72,13.723747969451264],[119,-13,73,13.725037099443549],[119,-13,74,13.65609333699871],[119,-13,75,13.614632568617768],[119,-13,76,13.655341317647384],[119,-13,77,13.712055841453536],[119,-13,78,13.780691145958114],[119,-13,79,13.850082252669363],[119,-12,64,13.485891723008102],[119,-12,65,13.51481361189499],[119,-12,66,13.469862122235483],[119,-12,67,13.516823839256245],[119,-12,68,13.549274397889766],[119,-12,69,13.547624448694195],[119,-12,70,13.537649051756569],[119,-12,71,13.504532330050385],[119,-12,72,13.551365272215882],[119,-12,73,13.529049562223353],[119,-12,74,13.468058026211647],[119,-12,75,13.424030547508528],[119,-12,76,13.465614754372657],[119,-12,77,13.52069341546753],[119,-12,78,13.58838070818335],[119,-12,79,13.657789030398483],[119,-11,64,13.297584732324498],[119,-11,65,13.330139447315641],[119,-11,66,13.33357307378911],[119,-11,67,13.36527543494532],[119,-11,68,13.40448084296716],[119,-11,69,13.40169304906053],[119,-11,70,13.39172793732694],[119,-11,71,13.367051295008837],[119,-11,72,13.414108322568836],[119,-11,73,13.37478159188687],[119,-11,74,13.321516283007938],[119,-11,75,13.263605302489614],[119,-11,76,13.301469807066152],[119,-11,77,13.351228181962075],[119,-11,78,13.418328883525591],[119,-11,79,13.487281180303214],[119,-10,64,13.099435812830196],[119,-10,65,13.131114526213855],[119,-10,66,13.12035652626065],[119,-10,67,13.158893761936557],[119,-10,68,13.19396984130257],[119,-10,69,13.19615442054763],[119,-10,70,13.20134726624688],[119,-10,71,13.18630506939764],[119,-10,72,13.219439269718075],[119,-10,73,13.163799852383978],[119,-10,74,13.104945437950768],[119,-10,75,13.076132627979971],[119,-10,76,13.112521631156012],[119,-10,77,13.161587372473583],[119,-10,78,13.227351109605147],[119,-10,79,13.29829943930863],[119,-9,64,12.918191935100323],[119,-9,65,12.923490678823379],[119,-9,66,12.916032971165023],[119,-9,67,12.957743678318328],[119,-9,68,12.990416838942597],[119,-9,69,12.994077882484856],[119,-9,70,13.019680458404675],[119,-9,71,13.005550488891993],[119,-9,72,13.017741735036525],[119,-9,73,12.952936394720217],[119,-9,74,12.881222668011029],[119,-9,75,12.887673687355912],[119,-9,76,12.922091826145923],[119,-9,77,12.970237837095501],[119,-9,78,13.038461523328523],[119,-9,79,13.108518693629833],[119,-8,64,12.728017698085047],[119,-8,65,12.660998923060026],[119,-8,66,12.668282475364212],[119,-8,67,12.714041425715417],[119,-8,68,12.763093475326718],[119,-8,69,12.764141576347523],[119,-8,70,12.79965933106928],[119,-8,71,12.779763838156654],[119,-8,72,12.7900661617106],[119,-8,73,12.699225813058423],[119,-8,74,12.67856218722783],[119,-8,75,12.699149586038825],[119,-8,76,12.733724889690127],[119,-8,77,12.781532874097307],[119,-8,78,12.848755680417728],[119,-8,79,12.919139501166477],[119,-7,64,12.529182534846173],[119,-7,65,12.465391664742965],[119,-7,66,12.467650742182837],[119,-7,67,12.494074252854332],[119,-7,68,12.566872585029227],[119,-7,69,12.571300374099234],[119,-7,70,12.597274795682061],[119,-7,71,12.571491971485154],[119,-7,72,12.587063953064982],[119,-7,73,12.49623296227351],[119,-7,74,12.49148957441164],[119,-7,75,12.51068536314536],[119,-7,76,12.543711839889397],[119,-7,77,12.592239255425513],[119,-7,78,12.657884734213015],[119,-7,79,12.72860302768755],[119,-6,64,12.318011544012437],[119,-6,65,12.262063227191504],[119,-6,66,12.265097012234703],[119,-6,67,12.271073924968082],[119,-6,68,12.374726248750394],[119,-6,69,12.377699237660984],[119,-6,70,12.405287090233463],[119,-6,71,12.376199686402952],[119,-6,72,12.389994693432623],[119,-6,73,12.293265519463791],[119,-6,74,12.304772806918548],[119,-6,75,12.321956897546135],[119,-6,76,12.352910125308087],[119,-6,77,12.402291707364514],[119,-6,78,12.466400889693244],[119,-6,79,12.53800693019447],[119,-5,64,12.075313011805385],[119,-5,65,12.067653593250267],[119,-5,66,12.10162151705163],[119,-5,67,12.143256785167992],[119,-5,68,12.267444903206895],[119,-5,69,12.280048631004176],[119,-5,70,12.311744113404504],[119,-5,71,12.27978121569196],[119,-5,72,12.276129131829382],[119,-5,73,12.198802228673332],[119,-5,74,12.159003700772702],[119,-5,75,12.128025714819005],[119,-5,76,12.15757230182489],[119,-5,77,12.208174980616981],[119,-5,78,12.27106997654789],[119,-5,79,12.342844775453779],[119,-4,64,11.864955281792145],[119,-4,65,11.858965607821714],[119,-4,66,11.88049226627452],[119,-4,67,11.933944912958783],[119,-4,68,12.042080242817448],[119,-4,69,12.06899196807761],[119,-4,70,12.104872076583263],[119,-4,71,12.062565166700036],[119,-4,72,12.05053319649411],[119,-4,73,11.994215309151055],[119,-4,74,11.962821693497544],[119,-4,75,11.932828882514793],[119,-4,76,11.9621276533704],[119,-4,77,12.012220511056528],[119,-4,78,12.077394404413216],[119,-4,79,12.149470391878724],[119,-3,64,11.695825347626537],[119,-3,65,11.687462879504334],[119,-3,66,11.702858352906103],[119,-3,67,11.767695552480633],[119,-3,68,11.875423651106653],[119,-3,69,11.92407916713671],[119,-3,70,11.938951438518139],[119,-3,71,11.92501014904624],[119,-3,72,11.890457836975179],[119,-3,73,11.852639317332493],[119,-3,74,11.82697148480696],[119,-3,75,11.74555117375598],[119,-3,76,11.7614543409336],[119,-3,77,11.813130993675637],[119,-3,78,11.882216278742678],[119,-3,79,11.955002064106775],[119,-2,64,11.487211345652847],[119,-2,65,11.478731226292448],[119,-2,66,11.495509613019033],[119,-2,67,11.56177410805699],[119,-2,68,11.658444946923467],[119,-2,69,11.713457697154542],[119,-2,70,11.74443868306848],[119,-2,71,11.738017818067654],[119,-2,72,11.68565702698003],[119,-2,73,11.658017632599135],[119,-2,74,11.618679607406762],[119,-2,75,11.552502208747905],[119,-2,76,11.569021865102838],[119,-2,77,11.621453920141613],[119,-2,78,11.692613527822552],[119,-2,79,11.762253062224174],[119,-1,64,11.317347663260614],[119,-1,65,11.306195463051747],[119,-1,66,11.319548992098712],[119,-1,67,11.371778008383528],[119,-1,68,11.453869810247525],[119,-1,69,11.505397972294725],[119,-1,70,11.539235081150286],[119,-1,71,11.541575944219101],[119,-1,72,11.487281932688994],[119,-1,73,11.477169905411133],[119,-1,74,11.454485237029969],[119,-1,75,11.412097844141392],[119,-1,76,11.376905523117149],[119,-1,77,11.428827249347572],[119,-1,78,11.4998293689308],[119,-1,79,11.570969542032158],[119,0,64,11.111755410040905],[119,0,65,11.143895683654316],[119,0,66,11.18293489825798],[119,0,67,11.220912969633972],[119,0,68,11.245599344249099],[119,0,69,11.249510054159572],[119,0,70,11.241780042512227],[119,0,71,11.241410895208036],[119,0,72,11.242539716333566],[119,0,73,11.248854958221546],[119,0,74,11.261282445866122],[119,0,75,11.271954397888416],[119,0,76,11.294188234485667],[119,0,77,11.342367134828123],[119,0,78,11.412291360605229],[119,0,79,11.484047178803081],[119,1,64,10.922123745805056],[119,1,65,10.95232210436931],[119,1,66,10.993520613706151],[119,1,67,11.033563516767378],[119,1,68,11.055175198678699],[119,1,69,11.060270329761712],[119,1,70,11.053335308464346],[119,1,71,11.05381724282636],[119,1,72,11.053506480615763],[119,1,73,11.056161559891677],[119,1,74,11.066838647703172],[119,1,75,11.078547537732744],[119,1,76,11.102026818123635],[119,1,77,11.150253219474468],[119,1,78,11.22103664982141],[119,1,79,11.29583139015763],[119,2,64,10.732701937447546],[119,2,65,10.75920081347041],[119,2,66,10.802295127100114],[119,2,67,10.842801701254224],[119,2,68,10.864984111969882],[119,2,69,10.870271287906059],[119,2,70,10.864022050365108],[119,2,71,10.863954870495812],[119,2,72,10.860686840299099],[119,2,73,10.863575674638916],[119,2,74,10.876119478813134],[119,2,75,10.886831723381603],[119,2,76,10.91136427576137],[119,2,77,10.95987227041447],[119,2,78,11.030650037451148],[119,2,79,11.106830741218538],[119,3,64,10.541792032020536],[119,3,65,10.566678079315125],[119,3,66,10.609967695129326],[119,3,67,10.651409831604933],[119,3,68,10.673054007595406],[119,3,69,10.680820352526766],[119,3,70,10.674919001971242],[119,3,71,10.672125829023317],[119,3,72,10.67057273302248],[119,3,73,10.674346699831863],[119,3,74,10.684437572537796],[119,3,75,10.695076329550375],[119,3,76,10.72181635656256],[119,3,77,10.770015322475718],[119,3,78,10.839118270139583],[119,3,79,10.914628522404131],[119,4,64,10.350010294958732],[119,4,65,10.377896076391663],[119,4,66,10.418435781947107],[119,4,67,10.459406685896614],[119,4,68,10.481808501360899],[119,4,69,10.488407291119113],[119,4,70,10.483887401648744],[119,4,71,10.48026166714601],[119,4,72,10.478498825939388],[119,4,73,10.485362997474253],[119,4,74,10.49265983919773],[119,4,75,10.503160726836336],[119,4,76,10.529268852604938],[119,4,77,10.579991846108637],[119,4,78,10.647542493552438],[119,4,79,10.722589853703987],[119,5,64,10.159256141127042],[119,5,65,10.187110461011148],[119,5,66,10.228540894255186],[119,5,67,10.267475497704565],[119,5,68,10.292186871465692],[119,5,69,10.298179853861487],[119,5,70,10.291948225642056],[119,5,71,10.285933297871242],[119,5,72,10.288068291441654],[119,5,73,10.297258018153315],[119,5,74,10.302685994756912],[119,5,75,10.312662494196612],[119,5,76,10.339372375145663],[119,5,77,10.391480328413657],[119,5,78,10.457826514592604],[119,5,79,10.531717943752252],[119,6,64,9.96867997079359],[119,6,65,9.996517994966167],[119,6,66,10.038325738152729],[119,6,67,10.079310723183443],[119,6,68,10.101844592274546],[119,6,69,10.107402222420102],[119,6,70,10.10061724053844],[119,6,71,10.097286979207562],[119,6,72,10.099827774119118],[119,6,73,10.107374384243988],[119,6,74,10.114780045468258],[119,6,75,10.121976219070225],[119,6,76,10.148887007948153],[119,6,77,10.20166570159996],[119,6,78,10.269253701729664],[119,6,79,10.341422087494994],[119,7,64,9.777852331888896],[119,7,65,9.805357069530473],[119,7,66,9.846892065627475],[119,7,67,9.888399502641665],[119,7,68,9.912973188630508],[119,7,69,9.918478695616166],[119,7,70,9.913723099657874],[119,7,71,9.910116442739858],[119,7,72,9.912482937788283],[119,7,73,9.918266949131047],[119,7,74,9.924441151160574],[119,7,75,9.93331063940185],[119,7,76,9.959005677961358],[119,7,77,10.009933011224845],[119,7,78,10.079425279967761],[119,7,79,10.153136280552594],[119,8,64,9.588599042677126],[119,8,65,9.619197826208323],[119,8,66,9.660758840976177],[119,8,67,9.70128300398645],[119,8,68,9.72771320919851],[119,8,69,9.738168650852712],[119,8,70,9.735952828395426],[119,8,71,9.732177528881476],[119,8,72,9.73239471298999],[119,8,73,9.737909766855596],[119,8,74,9.743774807819271],[119,8,75,9.752646237028145],[119,8,76,9.77758310409685],[119,8,77,9.831640869184854],[119,8,78,9.900644355341976],[119,8,79,9.97320304169697],[119,9,64,9.407277357627855],[119,9,65,9.43142258902038],[119,9,66,9.467333067398986],[119,9,67,9.503705410255726],[119,9,68,9.528857665684296],[119,9,69,9.542179196641188],[119,9,70,9.539839985485218],[119,9,71,9.53699925541498],[119,9,72,9.537658216085658],[119,9,73,9.54168423427693],[119,9,74,9.547722693682463],[119,9,75,9.555311324432473],[119,9,76,9.583050693760354],[119,9,77,9.639335902223443],[119,9,78,9.714910316078797],[119,9,79,9.789216974899368],[119,10,64,9.215246807581506],[119,10,65,9.238400192396787],[119,10,66,9.275323253042876],[119,10,67,9.310983357312239],[119,10,68,9.33778379859496],[119,10,69,9.348675210260154],[119,10,70,9.34878205914591],[119,10,71,9.345162803952567],[119,10,72,9.345331757814288],[119,10,73,9.351186637431029],[119,10,74,9.354573825331341],[119,10,75,9.363875050889373],[119,10,76,9.391949192003906],[119,10,77,9.448153240222329],[119,10,78,9.52295418102802],[119,10,79,9.599118078563688],[119,11,64,9.024666046160624],[119,11,65,9.047335261701177],[119,11,66,9.081775568984721],[119,11,67,9.11874555368934],[119,11,68,9.14706159157162],[119,11,69,9.159219237647644],[119,11,70,9.158940044177388],[119,11,71,9.153995241921143],[119,11,72,9.153944054083896],[119,11,73,9.159629475744579],[119,11,74,9.161920517058816],[119,11,75,9.171547289102868],[119,11,76,9.202756242566302],[119,11,77,9.257309460648324],[119,11,78,9.332852421158279],[119,11,79,9.407726853848267],[119,12,64,8.834795851024639],[119,12,65,8.85769448128468],[119,12,66,8.889990921180345],[119,12,67,8.925063337974372],[119,12,68,8.954732595483943],[119,12,69,8.96726762773229],[119,12,70,8.965220801395462],[119,12,71,8.960856278582643],[119,12,72,8.961654477695607],[119,12,73,8.966861356091341],[119,12,74,8.9708541473961],[119,12,75,8.9781797590858],[119,12,76,9.009122452345752],[119,12,77,9.062733356038853],[119,12,78,9.13457682270341],[119,12,79,9.212186848903462],[119,13,64,8.633027555718064],[119,13,65,8.66284170251907],[119,13,66,8.701362882659208],[119,13,67,8.742324546437933],[119,13,68,8.773855932326024],[119,13,69,8.78428743877795],[119,13,70,8.782893955362706],[119,13,71,8.783106645442256],[119,13,72,8.78512337577008],[119,13,73,8.78709246766108],[119,13,74,8.793013170929656],[119,13,75,8.797959371676132],[119,13,76,8.823077309069784],[119,13,77,8.871903778303764],[119,13,78,8.93792687805631],[119,13,79,9.011659803555807],[119,14,64,8.442298791406444],[119,14,65,8.470602592329344],[119,14,66,8.512914729864928],[119,14,67,8.554888936361895],[119,14,68,8.583255386144138],[119,14,69,8.595722789366377],[119,14,70,8.593938858570274],[119,14,71,8.597501902302689],[119,14,72,8.598731298858882],[119,14,73,8.598518158833137],[119,14,74,8.60315941552087],[119,14,75,8.608740190115817],[119,14,76,8.633945623867493],[119,14,77,8.677475292781818],[119,14,78,8.745065038598407],[119,14,79,8.818776584256774],[119,15,64,8.253069688730358],[119,15,65,8.281624946535285],[119,15,66,8.323171032367947],[119,15,67,8.367039762365561],[119,15,68,8.39726624824985],[119,15,69,8.406965149769505],[119,15,70,8.405925132133854],[119,15,71,8.411026622031116],[119,15,72,8.409033893290061],[119,15,73,8.408674503987324],[119,15,74,8.41397403470264],[119,15,75,8.418803788455742],[119,15,76,8.44084799900952],[119,15,77,8.48527769823506],[119,15,78,8.552515135189866],[119,15,79,8.623543630865873],[119,16,64,8.062329198405273],[119,16,65,8.088335187044267],[119,16,66,8.134215442332343],[119,16,67,8.182318106430833],[119,16,68,8.213243847370727],[119,16,69,8.222059990617502],[119,16,70,8.224280828249935],[119,16,71,8.228687352893353],[119,16,72,8.224000429132202],[119,16,73,8.222462858732937],[119,16,74,8.228837983543077],[119,16,75,8.2350081730371],[119,16,76,8.257123231513184],[119,16,77,8.304071757207012],[119,16,78,8.370949094253314],[119,16,79,8.444424797942176],[119,17,64,7.870145097605069],[119,17,65,7.901214186703702],[119,17,66,7.944166259529095],[119,17,67,7.992967589721955],[119,17,68,8.025002573630479],[119,17,69,8.034087089719815],[119,17,70,8.036358731332225],[119,17,71,8.038282249414554],[119,17,72,8.033903017981334],[119,17,73,8.029183714691497],[119,17,74,8.035494023038007],[119,17,75,8.041133598837114],[119,17,76,8.064571148126598],[119,17,77,8.111937422784539],[119,17,78,8.179350682411526],[119,17,79,8.25177269688563],[119,18,64,7.679735367951506],[119,18,65,7.709968505134236],[119,18,66,7.75662071991167],[119,18,67,7.803384212968006],[119,18,68,7.836795978892312],[119,18,69,7.847053778831186],[119,18,70,7.849597939151068],[119,18,71,7.848525945387339],[119,18,72,7.843332476657439],[119,18,73,7.837707164147228],[119,18,74,7.839984837533079],[119,18,75,7.848819551517281],[119,18,76,7.872536622044353],[119,18,77,7.920024794583129],[119,18,78,7.986547794334284],[119,18,79,8.056627538671234],[119,19,64,7.488026833061414],[119,19,65,7.518395702706727],[119,19,66,7.566842319736122],[119,19,67,7.615344055256045],[119,19,68,7.647356051948445],[119,19,69,7.65770903129523],[119,19,70,7.660109917673845],[119,19,71,7.657325670243922],[119,19,72,7.651278386469179],[119,19,73,7.64726617863423],[119,19,74,7.646829507134846],[119,19,75,7.655972037202866],[119,19,76,7.683089595838372],[119,19,77,7.726509391859745],[119,19,78,7.790498567043646],[119,19,79,7.860402820608771],[119,20,64,7.298138536400025],[119,20,65,7.328406369104176],[119,20,66,7.371969981945174],[119,20,67,7.421307799262498],[119,20,68,7.453463730627522],[119,20,69,7.462126269172107],[119,20,70,7.462589151514255],[119,20,71,7.462780960082683],[119,20,72,7.454432342429684],[119,20,73,7.4488828443706225],[119,20,74,7.4480241312901825],[119,20,75,7.458685944030899],[119,20,76,7.4839334807842635],[119,20,77,7.528408858712106],[119,20,78,7.591669858916377],[119,20,79,7.6629049766218245],[119,21,64,7.119156636694077],[119,21,65,7.149122243077934],[119,21,66,7.194725482406536],[119,21,67,7.241365108821625],[119,21,68,7.267954999031316],[119,21,69,7.2769968383094055],[119,21,70,7.274036067510464],[119,21,71,7.269218578033821],[119,21,72,7.2565236303503475],[119,21,73,7.247465848265957],[119,21,74,7.244240637995732],[119,21,75,7.252085903358156],[119,21,76,7.2760226659885525],[119,21,77,7.322054278771745],[119,21,78,7.38804659219289],[119,21,79,7.460683309548121],[119,22,64,6.928929273852728],[119,22,65,6.958951287812301],[119,22,66,7.0076274372827],[119,22,67,7.049513220248936],[119,22,68,7.076484719368108],[119,22,69,7.088576481164055],[119,22,70,7.083402858016617],[119,22,71,7.075827061581967],[119,22,72,7.063959906457127],[119,22,73,7.0517831434803675],[119,22,74,7.050485367972288],[119,22,75,7.060142837324038],[119,22,76,7.080024902318991],[119,22,77,7.124806185669882],[119,22,78,7.193013140077275],[119,22,79,7.268083563114081],[119,23,64,6.74066195344576],[119,23,65,6.770616212130835],[119,23,66,6.81655710013724],[119,23,67,6.858608308017916],[119,23,68,6.886536812143894],[119,23,69,6.897219861830381],[119,23,70,6.89222948816446],[119,23,71,6.881888648744944],[119,23,72,6.871572253463262],[119,23,73,6.861657115099783],[119,23,74,6.856695304178915],[119,23,75,6.865348842532203],[119,23,76,6.884230858207778],[119,23,77,6.9288431619127175],[119,23,78,6.998597497101302],[119,23,79,7.074927933061362],[119,24,64,6.5606115854707046],[119,24,65,6.588309709980935],[119,24,66,6.632787822453461],[119,24,67,6.675290510882252],[119,24,68,6.705559723974842],[119,24,69,6.7148620907459815],[119,24,70,6.710127832761441],[119,24,71,6.70228192597876],[119,24,72,6.689932602398626],[119,24,73,6.679796153035115],[119,24,74,6.673163372318765],[119,24,75,6.681032774784323],[119,24,76,6.697802666493533],[119,24,77,6.742518019666535],[119,24,78,6.812918868351708],[119,24,79,6.891282114188189],[119,25,64,6.378656851801552],[119,25,65,6.399981020658121],[119,25,66,6.439009826980086],[119,25,67,6.478298957564069],[119,25,68,6.508646180657392],[119,25,69,6.515782277773754],[119,25,70,6.5127644177973405],[119,25,71,6.511147062441368],[119,25,72,6.503262051470586],[119,25,73,6.496893480275716],[119,25,74,6.492531207829267],[119,25,75,6.495978055706382],[119,25,76,6.511289283848207],[119,25,77,6.552214825484918],[119,25,78,6.6204330663798725],[119,25,79,6.698323552762997],[119,26,64,6.189071411907323],[119,26,65,6.211395940349284],[119,26,66,6.246434635629798],[119,26,67,6.285420946221453],[119,26,68,6.316774393932312],[119,26,69,6.324780909723133],[119,26,70,6.321355896061425],[119,26,71,6.318645870041042],[119,26,72,6.312564281863231],[119,26,73,6.304721206537534],[119,26,74,6.299258506379749],[119,26,75,6.302760120269312],[119,26,76,6.318394069269502],[119,26,77,6.357544028237755],[119,26,78,6.42785565044111],[119,26,79,6.504877775865296],[119,27,64,6.000193342656218],[119,27,65,6.021919788570401],[119,27,66,6.056775046488291],[119,27,67,6.095725272380923],[119,27,68,6.125434972898486],[119,27,69,6.134121246367096],[119,27,70,6.128908240905016],[119,27,71,6.126891440233152],[119,27,72,6.119026566369921],[119,27,73,6.109654727400675],[119,27,74,6.105751022859794],[119,27,75,6.108622703021085],[119,27,76,6.12334371623934],[119,27,77,6.167127834524118],[119,27,78,6.233762034975265],[119,27,79,6.307956202645378],[119,28,64,5.810381875872412],[119,28,65,5.828325814233731],[119,28,66,5.861544475827316],[119,28,67,5.900118938321967],[119,28,68,5.929673487306957],[119,28,69,5.939411464663203],[119,28,70,5.934393582736214],[119,28,71,5.9306952796731744],[119,28,72,5.9198567493902745],[119,28,73,5.908647722147597],[119,28,74,5.904217826100727],[119,28,75,5.905178715437708],[119,28,76,5.925344648955363],[119,28,77,5.967944803183627],[119,28,78,6.037519196651407],[119,28,79,6.108984971836963],[119,29,64,5.6178720151457915],[119,29,65,5.636349841349866],[119,29,66,5.6684318944050105],[119,29,67,5.706854401439368],[119,29,68,5.736937858497019],[119,29,69,5.744563509540463],[119,29,70,5.7401835010367215],[119,29,71,5.735444435855537],[119,29,72,5.720432032504119],[119,29,73,5.70802757479687],[119,29,74,5.706861271822837],[119,29,75,5.70676781326246],[119,29,76,5.727840417633826],[119,29,77,5.770059165495653],[119,29,78,5.842979083972762],[119,29,79,5.916282171058858],[119,30,64,5.430028898457713],[119,30,65,5.446497686139927],[119,30,66,5.4803262318427794],[119,30,67,5.517415396562127],[119,30,68,5.545472679737247],[119,30,69,5.552454536892795],[119,30,70,5.544552531702521],[119,30,71,5.539143330038168],[119,30,72,5.525184894937791],[119,30,73,5.511193534177396],[119,30,74,5.5063612528179116],[119,30,75,5.508018111888874],[119,30,76,5.528554107917405],[119,30,77,5.573045861182954],[119,30,78,5.64230036339659],[119,30,79,5.7162129315665],[119,31,64,5.240485362242595],[119,31,65,5.256752490537767],[119,31,66,5.289135425964691],[119,31,67,5.326469776433924],[119,31,68,5.355629687551825],[119,31,69,5.359645666044443],[119,31,70,5.3505984190329805],[119,31,71,5.34549043218409],[119,31,72,5.331554112697901],[119,31,73,5.313704942090163],[119,31,74,5.305890235024959],[119,31,75,5.3060583059744095],[119,31,76,5.328623723147212],[119,31,77,5.375018983244613],[119,31,78,5.444679666619653],[119,31,79,5.518401528881338],[119,32,64,5.060868168740301],[119,32,65,5.075952425133568],[119,32,66,5.108411569369628],[119,32,67,5.146444736839982],[119,32,68,5.175942314521135],[119,32,69,5.180175777697849],[119,32,70,5.1720259627460194],[119,32,71,5.1655918477615534],[119,32,72,5.150716517208907],[119,32,73,5.131398861411911],[119,32,74,5.119705029747601],[119,32,75,5.117799227899269],[119,32,76,5.141201851899456],[119,32,77,5.1877045982829815],[119,32,78,5.2589560397941995],[119,32,79,5.333225207319146],[119,33,64,4.8745169413804],[119,33,65,4.890099395058104],[119,33,66,4.923412873291304],[119,33,67,4.965488300258595],[119,33,68,4.995415059343938],[119,33,69,5.000600848147913],[119,33,70,4.989660284320704],[119,33,71,4.9761787823818615],[119,33,72,4.953434555775414],[119,33,73,4.92870761813286],[119,33,74,4.913984068803052],[119,33,75,4.90971790944383],[119,33,76,4.934734348138309],[119,33,77,4.98518720200226],[119,33,78,5.059239113741497],[119,33,79,5.141074179357863],[119,34,64,4.682192755601962],[119,34,65,4.69766671969658],[119,34,66,4.730934579011321],[119,34,67,4.775559637052348],[119,34,68,4.805695741884995],[119,34,69,4.811666189789208],[119,34,70,4.799825503309028],[119,34,71,4.783361534510401],[119,34,72,4.7629742695831565],[119,34,73,4.735713202885135],[119,34,74,4.71925838911483],[119,34,75,4.716433381051459],[119,34,76,4.739601248147741],[119,34,77,4.790916222717146],[119,34,78,4.86608074495848],[119,34,79,4.948130844117202],[119,35,64,4.490089218770863],[119,35,65,4.504766306437413],[119,35,66,4.538625513423691],[119,35,67,4.584900334137511],[119,35,68,4.615414126833669],[119,35,69,4.620966086548689],[119,35,70,4.609620023870461],[119,35,71,4.59168722533257],[119,35,72,4.571096857927503],[119,35,73,4.542309020428918],[119,35,74,4.526072430110612],[119,35,75,4.522703179607634],[119,35,76,4.544889316669426],[119,35,77,4.596121903146829],[119,35,78,4.670572428281838],[119,35,79,4.753992440954525],[119,36,64,4.2894768571648],[119,36,65,4.305183441461668],[119,36,66,4.3408627604896575],[119,36,67,4.387504820704509],[119,36,68,4.417488137730064],[119,36,69,4.424058643476016],[119,36,70,4.413457007388046],[119,36,71,4.394730590330489],[119,36,72,4.372592276926208],[119,36,73,4.344056768592694],[119,36,74,4.324104374834388],[119,36,75,4.321216127979308],[119,36,76,4.345228191605182],[119,36,77,4.396004655574577],[119,36,78,4.4689090658282185],[119,36,79,4.552048233001548],[119,37,64,4.091870413794306],[119,37,65,4.10548731142302],[119,37,66,4.141721404536301],[119,37,67,4.1821846028299685],[119,37,68,4.211097160034392],[119,37,69,4.216188902308631],[119,37,70,4.208221246335108],[119,37,71,4.192202260686661],[119,37,72,4.173548402546495],[119,37,73,4.150912062723952],[119,37,74,4.1299452859271675],[119,37,75,4.130463229105864],[119,37,76,4.1520866321091585],[119,37,77,4.201879052728323],[119,37,78,4.2736796067160725],[119,37,79,4.357269265144373],[119,38,64,3.9000528573427924],[119,38,65,3.9156467288780568],[119,38,66,3.949809545854189],[119,38,67,3.9897065608682123],[119,38,68,4.018566133892334],[119,38,69,4.025486553107292],[119,38,70,4.015500249187533],[119,38,71,4.000831687784516],[119,38,72,3.979603331633204],[119,38,73,3.9556192473121987],[119,38,74,3.9367179564471266],[119,38,75,3.937011394585515],[119,38,76,3.9585217483274358],[119,38,77,4.004847019953155],[119,38,78,4.079582119026521],[119,38,79,4.1626136097797755],[119,39,64,3.7127532113094976],[119,39,65,3.72599232242303],[119,39,66,3.758246984633784],[119,39,67,3.7998014491763796],[119,39,68,3.8289627409457907],[119,39,69,3.8368867994652205],[119,39,70,3.8242529763311452],[119,39,71,3.8090660521180366],[119,39,72,3.786328729753973],[119,39,73,3.763043711513816],[119,39,74,3.745178158582712],[119,39,75,3.7425812929008284],[119,39,76,3.7640550864540425],[119,39,77,3.80764633065565],[119,39,78,3.8823002651290826],[119,39,79,3.9696170434649325],[119,40,64,3.5359121428210343],[119,40,65,3.5476659698281607],[119,40,66,3.579328082592011],[119,40,67,3.6204113304899197],[119,40,68,3.651572395200499],[119,40,69,3.661300036807031],[119,40,70,3.6466496035738754],[119,40,71,3.6344056021207356],[119,40,72,3.610483175903598],[119,40,73,3.5862343044738267],[119,40,74,3.567055653092577],[119,40,75,3.562169329703674],[119,40,76,3.5806898247350154],[119,40,77,3.6264257808057034],[119,40,78,3.7011942676705862],[119,40,79,3.78851407890436],[119,41,64,3.3463095434907264],[119,41,65,3.3568613074875855],[119,41,66,3.3899627123185425],[119,41,67,3.4330432354631353],[119,41,68,3.4651207585703467],[119,41,69,3.472251366935091],[119,41,70,3.4587595678243073],[119,41,71,3.4466977172545494],[119,41,72,3.4211484166074277],[119,41,73,3.3944442874935],[119,41,74,3.375305940165921],[119,41,75,3.3692745874166987],[119,41,76,3.385963010261892],[119,41,77,3.4319331000663524],[119,41,78,3.508206745360339],[119,41,79,3.5960781866905234],[119,42,64,3.155241139966505],[119,42,65,3.168027480241438],[119,42,66,3.2029739176206125],[119,42,67,3.2448462982884485],[119,42,68,3.276945734754332],[119,42,69,3.2827546544625483],[119,42,70,3.269105508760857],[119,42,71,3.2565131333313073],[119,42,72,3.2332444295109863],[119,42,73,3.2055439087027415],[119,42,74,3.182439948282017],[119,42,75,3.1757058051570746],[119,42,76,3.1916926354831308],[119,42,77,3.237116554090295],[119,42,78,3.3148743968692513],[119,42,79,3.4044337154041426],[119,43,64,2.9633208266893902],[119,43,65,2.9790115556940746],[119,43,66,3.0138112646919293],[119,43,67,3.055454833096975],[119,43,68,3.0872230688446387],[119,43,69,3.091590405466],[119,43,70,3.0806431865672335],[119,43,71,3.0646475782182456],[119,43,72,3.041692737474609],[119,43,73,3.0112881616942384],[119,43,74,2.989698522019954],[119,43,75,2.9823324135274483],[119,43,76,2.9989057024404775],[119,43,77,3.0451745647220614],[119,43,78,3.121341521409111],[119,43,79,3.2110202211518186],[119,44,64,2.766662285537152],[119,44,65,2.780468624877802],[119,44,66,2.816800992539991],[119,44,67,2.8590121479225052],[119,44,68,2.8894393039262365],[119,44,69,2.8942780226954308],[119,44,70,2.8838215603800847],[119,44,71,2.869146321218047],[119,44,72,2.842593840930891],[119,44,73,2.8122535892607257],[119,44,74,2.789471657270208],[119,44,75,2.781531323987077],[119,44,76,2.7974873611476196],[119,44,77,2.845202971970519],[119,44,78,2.9184477209063364],[119,44,79,3.009111341504156],[119,45,64,2.5673996956237626],[119,45,65,2.585057457254878],[119,45,66,2.631023548088388],[119,45,67,2.678075719651917],[119,45,68,2.7147141200192246],[119,45,69,2.7248384299248003],[119,45,70,2.7170713545876963],[119,45,71,2.7000891780232803],[119,45,72,2.6696708077882487],[119,45,73,2.6323569484814326],[119,45,74,2.6090056859285116],[119,45,75,2.5995441157504753],[119,45,76,2.611698328543328],[119,45,77,2.659975279571939],[119,45,78,2.728936272176733],[119,45,79,2.814622319162821],[119,46,64,2.3742528901675044],[119,46,65,2.39400182897974],[119,46,66,2.4401894792973424],[119,46,67,2.486725690911786],[119,46,68,2.521168674763102],[119,46,69,2.533491062557852],[119,46,70,2.529595851618281],[119,46,71,2.512360621116801],[119,46,72,2.4783447841438146],[119,46,73,2.4390340618440485],[119,46,74,2.414699856641519],[119,46,75,2.4046761305375517],[119,46,76,2.4169432517327825],[119,46,77,2.4629440868020267],[119,46,78,2.534244610537469],[119,46,79,2.617882045314371],[119,47,64,2.183626614312839],[119,47,65,2.2036759289907297],[119,47,66,2.246875146875584],[119,47,67,2.293060858626314],[119,47,68,2.3280845680501523],[119,47,69,2.343601383060939],[119,47,70,2.340381618167115],[119,47,71,2.322175759811653],[119,47,72,2.287923348742328],[119,47,73,2.246111889468601],[119,47,74,2.2191607086824408],[119,47,75,2.2109314722187747],[119,47,76,2.2243155367434517],[119,47,77,2.2678516604469237],[119,47,78,2.340066526278095],[119,47,79,2.424904165147158],[119,48,64,2.0073140778551504],[119,48,65,2.0275455358763024],[119,48,66,2.0673520041060147],[119,48,67,2.1131447554740195],[119,48,68,2.1531120067211256],[119,48,69,2.1687885685262804],[119,48,70,2.161563969515243],[119,48,71,2.1448390427546093],[119,48,72,2.108181543083133],[119,48,73,2.0652705886332816],[119,48,74,2.03977480275738],[119,48,75,2.0298947408865873],[119,48,76,2.0435378820069836],[119,48,77,2.0887585093580987],[119,48,78,2.161007802924218],[119,48,79,2.245225893386713],[119,49,64,1.805737603928369],[119,49,65,1.8259652262853254],[119,49,66,1.8642835218064535],[119,49,67,1.9117555881217085],[119,49,68,1.9545438187321904],[119,49,69,1.9691491761931892],[119,49,70,1.9628587261723882],[119,49,71,1.9515445764478714],[119,49,72,1.9213436607408318],[119,49,73,1.8826074687988776],[119,49,74,1.8569691284500804],[119,49,75,1.844137857613384],[119,49,76,1.8576571239619981],[119,49,77,1.90581060935192],[119,49,78,1.9779560496966582],[119,49,79,2.061786078532589],[119,50,64,1.6130545587597849],[119,50,65,1.629281813465236],[119,50,66,1.6682681703150348],[119,50,67,1.7193571061606427],[119,50,68,1.7614800276379645],[119,50,69,1.7777016400313783],[119,50,70,1.7699712180578986],[119,50,71,1.7581344278444024],[119,50,72,1.729009204450256],[119,50,73,1.6923103531284616],[119,50,74,1.6647859715933302],[119,50,75,1.650040397535947],[119,50,76,1.6653814219321892],[119,50,77,1.713288362215585],[119,50,78,1.7881440718809931],[119,50,79,1.8708793546055174],[119,51,64,1.4167747491079496],[119,51,65,1.433452096009256],[119,51,66,1.4734392027988514],[119,51,67,1.5235687963114655],[119,51,68,1.5670652610487974],[119,51,69,1.583905559999614],[119,51,70,1.5771280796831713],[119,51,71,1.566340686455651],[119,51,72,1.5366127072692648],[119,51,73,1.5001633174045945],[119,51,74,1.4695782680194998],[119,51,75,1.4579410125180616],[119,51,76,1.4709506384461881],[119,51,77,1.5207575062687897],[119,51,78,1.5957891399150028],[119,51,79,1.6786970991770118],[119,52,64,1.2577394693247086],[119,52,65,1.273354915805844],[119,52,66,1.3131903065137787],[119,52,67,1.3618542905959514],[119,52,68,1.404149469115853],[119,52,69,1.425038691992146],[119,52,70,1.4205308219923987],[119,52,71,1.4056379344576193],[119,52,72,1.37584053897287],[119,52,73,1.3406870600794014],[119,52,74,1.3087733600692206],[119,52,75,1.2973162166035204],[119,52,76,1.3115369336650067],[119,52,77,1.3591728466892974],[119,52,78,1.433030913677324],[119,52,79,1.5159714117181693],[119,53,64,1.0700517101799703],[119,53,65,1.0808951135243008],[119,53,66,1.1177491164109257],[119,53,67,1.1659202413686531],[119,53,68,1.206271167055825],[119,53,69,1.2238091617643685],[119,53,70,1.216932492090581],[119,53,71,1.2025066795389763],[119,53,72,1.170992996625785],[119,53,73,1.1357064614168644],[119,53,74,1.1046879905314537],[119,53,75,1.0951202747457904],[119,53,76,1.109197871422211],[119,53,77,1.1566626189782174],[119,53,78,1.232256667889071],[119,53,79,1.3159014517021477],[119,54,64,0.8772892506176059],[119,54,65,0.8865321383765568],[119,54,66,0.9231439530394312],[119,54,67,0.9710467498643386],[119,54,68,1.0124833593463074],[119,54,69,1.0296458491110667],[119,54,70,1.0245583466318602],[119,54,71,1.0071555897061915],[119,54,72,0.9790815315110468],[119,54,73,0.9420699518136771],[119,54,74,0.9125800455752772],[119,54,75,0.9009397890215138],[119,54,76,0.9165060316948191],[119,54,77,0.9626438144460421],[119,54,78,1.0371110857850208],[119,54,79,1.1182027422460292],[119,55,64,0.6833634360666185],[119,55,65,0.6931719043027136],[119,55,66,0.7295249598597049],[119,55,67,0.781227277589247],[119,55,68,0.8198871702367946],[119,55,69,0.8331035385122141],[119,55,70,0.8296456735883595],[119,55,71,0.8115685823647325],[119,55,72,0.7847962397011663],[119,55,73,0.7463317302589022],[119,55,74,0.7179851081919506],[119,55,75,0.7075059127289257],[119,55,76,0.7249148368858286],[119,55,77,0.7686391890321025],[119,55,78,0.8409114791367007],[119,55,79,0.9208196758800049],[119,56,64,0.5041438351486662],[119,56,65,0.5135476987684469],[119,56,66,0.5529891755097947],[119,56,67,0.6044004110969003],[119,56,68,0.6403454176013956],[119,56,69,0.6522157638850239],[119,56,70,0.6463203418566735],[119,56,71,0.632578588292777],[119,56,72,0.6040595720140896],[119,56,73,0.5656385523829579],[119,56,74,0.5373777636711259],[119,56,75,0.5290219815024584],[119,56,76,0.5453210042481063],[119,56,77,0.5869762025886766],[119,56,78,0.660261257349174],[119,56,79,0.7416942758201527],[119,57,64,0.30719865461142426],[119,57,65,0.3182651758963291],[119,57,66,0.3573163830281879],[119,57,67,0.40645570944495313],[119,57,68,0.44043474216716605],[119,57,69,0.4507293950220392],[119,57,70,0.44580160146020176],[119,57,71,0.4313468721335741],[119,57,72,0.4006356773843568],[119,57,73,0.361092356263668],[119,57,74,0.33190940879944875],[119,57,75,0.32307995376042137],[119,57,76,0.3360595978873441],[119,57,77,0.3802642301723255],[119,57,78,0.4555917800932119],[119,57,79,0.5366319415109942],[119,58,64,0.15884267452964204],[119,58,65,0.16904145217806937],[119,58,66,0.2038972423165071],[119,58,67,0.2518573985247812],[119,58,68,0.2852717992627289],[119,58,69,0.29709555029113066],[119,58,70,0.2908911415267577],[119,58,71,0.2746301728337688],[119,58,72,0.24547186007864177],[119,58,73,0.20425087952648646],[119,58,74,0.1740534334063985],[119,58,75,0.1656021744689887],[119,58,76,0.17690352374178603],[119,58,77,0.22236500757799849],[119,58,78,0.29522416531577456],[119,58,79,0.3766971522013009],[119,59,64,0.04736107041925877],[119,59,65,0.04479095895868147],[119,59,66,0.045823202215689654],[119,59,67,0.05578853946189488],[119,59,68,0.09156426964431366],[119,59,69,0.10260152177013457],[119,59,70,0.09676121374423437],[119,59,71,0.08206161262692892],[119,59,72,0.05438904839067234],[119,59,73,0.03312122965132623],[119,59,74,0.028303322956028942],[119,59,75,0.030690245583207834],[119,59,76,0.03452942044447807],[119,59,77,0.046072933202358085],[119,59,78,0.09942019361532853],[119,59,79,0.18037340867056895],[119,60,64,-0.00731802900344411],[119,60,65,-0.011239173477790285],[119,60,66,-0.010874551145288153],[119,60,67,-0.005386601927492046],[119,60,68,0.0013853578020307372],[119,60,69,2.1174568669668492E-4],[119,60,70,-7.933681751358251E-4],[119,60,71,-0.0036291442555482084],[119,60,72,-0.01253063271072588],[119,60,73,-0.02287991897910112],[119,60,74,-0.028630270096611954],[119,60,75,-0.0255224207779238],[119,60,76,-0.020198707746250183],[119,60,77,-0.007964522518725897],[119,60,78,0.008196933631280434],[119,60,79,0.02823012275619055],[119,61,64,-0.038753172204364694],[119,61,65,-0.04807454343491788],[119,61,66,-0.04982013580170813],[119,61,67,-0.04726603947302939],[119,61,68,-0.044769208187425094],[119,61,69,-0.04620583149608261],[119,61,70,-0.049175011415192274],[119,61,71,-0.05220609677564744],[119,61,72,-0.06248342618199619],[119,61,73,-0.07267020227823011],[119,61,74,-0.07659024501126413],[119,61,75,-0.07284731523624198],[119,61,76,-0.06551426584893193],[119,61,77,-0.05217226473578959],[119,61,78,-0.036602382557506016],[119,61,79,-0.013430083301144521],[119,62,64,-0.08752527474478516],[119,62,65,-0.09841996712031967],[119,62,66,-0.09948874394840561],[119,62,67,-0.09470522802397367],[119,62,68,-0.09367884976159144],[119,62,69,-0.093793324908325],[119,62,70,-0.0986883653874224],[119,62,71,-0.09993484806481998],[119,62,72,-0.11293159230957213],[119,62,73,-0.11985415048871582],[119,62,74,-0.12532584798240146],[119,62,75,-0.12318894217361938],[119,62,76,-0.11413957914229916],[119,62,77,-0.09922063910335387],[119,62,78,-0.08478541467724779],[119,62,79,-0.06067784588914073],[119,63,64,-0.2094418117709939],[119,63,65,-0.21841731349383275],[119,63,66,-0.22134031668095733],[119,63,67,-0.21608891646726536],[119,63,68,-0.21052158923903874],[119,63,69,-0.21012162557543457],[119,63,70,-0.21533586142065853],[119,63,71,-0.2174701285623647],[119,63,72,-0.22873200917259476],[119,63,73,-0.23696963514967684],[119,63,74,-0.2402630319839978],[119,63,75,-0.2372220567808756],[119,63,76,-0.22815873043711754],[119,63,77,-0.2135386518692383],[119,63,78,-0.19777746542271085],[119,63,79,-0.17354047985477888],[119,64,64,-0.24742961572551198],[119,64,65,-0.2566661743891799],[119,64,66,-0.2609073636990429],[119,64,67,-0.2559924463027115],[119,64,68,-0.2475654644977199],[119,64,69,-0.2460608108387739],[119,64,70,-0.25424525771706913],[119,64,71,-0.2581005466601911],[119,64,72,-0.2671666089653838],[119,64,73,-0.27682906297209253],[119,64,74,-0.27853065872780813],[119,64,75,-0.2754742954215513],[119,64,76,-0.2683819466210199],[119,64,77,-0.25379765049467173],[119,64,78,-0.23751070819465436],[119,64,79,-0.21381419526460627],[119,65,64,-0.2953750153767085],[119,65,65,-0.305106599746919],[119,65,66,-0.3104420908195481],[119,65,67,-0.3050143824372509],[119,65,68,-0.29765165500985663],[119,65,69,-0.2933971529531496],[119,65,70,-0.30140391847510306],[119,65,71,-0.3075586214191147],[119,65,72,-0.3172461566031306],[119,65,73,-0.3251436301805067],[119,65,74,-0.33143917545045487],[119,65,75,-0.32614061438189884],[119,65,76,-0.3199124312989954],[119,65,77,-0.3048253144301291],[119,65,78,-0.28802156146351254],[119,65,79,-0.26073865613462616],[119,66,64,-0.3501798423068371],[119,66,65,-0.35827388184169773],[119,66,66,-0.364995099815423],[119,66,67,-0.3614653177639017],[119,66,68,-0.35291482075289693],[119,66,69,-0.34948329184917243],[119,66,70,-0.35470147419660075],[119,66,71,-0.3616946689721238],[119,66,72,-0.3728494560343117],[119,66,73,-0.3822794744327374],[119,66,74,-0.3884713919110552],[119,66,75,-0.3840592061210065],[119,66,76,-0.3757370722347822],[119,66,77,-0.36229834718939846],[119,66,78,-0.34160979202286196],[119,66,79,-0.31465673187570775],[119,67,64,-0.3993423475513987],[119,67,65,-0.40725805373328394],[119,67,66,-0.41291721322662456],[119,67,67,-0.4094979810666209],[119,67,68,-0.40488975154461115],[119,67,69,-0.4003209036497072],[119,67,70,-0.4041835461325518],[119,67,71,-0.4071987063051987],[119,67,72,-0.42167658641986383],[119,67,73,-0.43541332482542605],[119,67,74,-0.4380676852021416],[119,67,75,-0.43542099003124823],[119,67,76,-0.42679854898951064],[119,67,77,-0.41243621742072034],[119,67,78,-0.39179343454351145],[119,67,79,-0.3651728474980882],[119,68,64,-0.543839208501202],[119,68,65,-0.5472607613718321],[119,68,66,-0.5522357113931158],[119,68,67,-0.5503643814702944],[119,68,68,-0.5451875569692812],[119,68,69,-0.5424918316121292],[119,68,70,-0.5457874360265007],[119,68,71,-0.546922721955154],[119,68,72,-0.5604166882957866],[119,68,73,-0.5745773961184781],[119,68,74,-0.5792458596802377],[119,68,75,-0.576863528275347],[119,68,76,-0.5666796873927711],[119,68,77,-0.5511029576707915],[119,68,78,-0.5300101702357312],[119,68,79,-0.50674938882093],[119,69,64,-0.6037302320036462],[119,69,65,-0.6025255389601002],[119,69,66,-0.6006654591862264],[119,69,67,-0.591165954914411],[119,69,68,-0.5794850262245167],[119,69,69,-0.5733617479237925],[119,69,70,-0.5734758613726253],[119,69,71,-0.5781117596993548],[119,69,72,-0.5925692809914058],[119,69,73,-0.6112378756009728],[119,69,74,-0.616234223671542],[119,69,75,-0.6146222374306083],[119,69,76,-0.6071374954526427],[119,69,77,-0.5890685502766486],[119,69,78,-0.5674101092267713],[119,69,79,-0.5414905316780196],[119,70,64,-0.6540749460148294],[119,70,65,-0.6545790250131638],[119,70,66,-0.6483968801302472],[119,70,67,-0.639117250443164],[119,70,68,-0.625931997113177],[119,70,69,-0.6210048457729028],[119,70,70,-0.6228788747631264],[119,70,71,-0.6274987424760403],[119,70,72,-0.6416897859710122],[119,70,73,-0.6591990620590362],[119,70,74,-0.6656536639619997],[119,70,75,-0.6642931514293746],[119,70,76,-0.6600798254402358],[119,70,77,-0.6393386064934565],[119,70,78,-0.61505695768427],[119,70,79,-0.5910800985391513],[119,71,64,-0.6967692660147982],[119,71,65,-0.6974460425513694],[119,71,66,-0.6893530326756321],[119,71,67,-0.6789924884615476],[119,71,68,-0.6662105010733836],[119,71,69,-0.6588001222715717],[119,71,70,-0.661111388241242],[119,71,71,-0.6654884330866719],[119,71,72,-0.6798055266849712],[119,71,73,-0.6978266233649002],[119,71,74,-0.7049773780418215],[119,71,75,-0.7063992165037996],[119,71,76,-0.7033077860062307],[119,71,77,-0.684799156823281],[119,71,78,-0.6589421045805309],[119,71,79,-0.632659613939973],[119,72,64,-0.7467183581614998],[119,72,65,-0.7503170155278716],[119,72,66,-0.7402828657535017],[119,72,67,-0.7285693643594915],[119,72,68,-0.7183270834940287],[119,72,69,-0.7078617703205865],[119,72,70,-0.70847436816625],[119,72,71,-0.7131087253167526],[119,72,72,-0.7272442596147711],[119,72,73,-0.7454732762850784],[119,72,74,-0.7528549952131126],[119,72,75,-0.7576522570445793],[119,72,76,-0.755797260510713],[119,72,77,-0.7393350134352268],[119,72,78,-0.7124963115976533],[119,72,79,-0.6857790194211317],[119,73,64,-0.8089348638127528],[119,73,65,-0.8120029892822593],[119,73,66,-0.8014701164281929],[119,73,67,-0.7858613363226918],[119,73,68,-0.776544504355665],[119,73,69,-0.7686093848582616],[119,73,70,-0.764465521184115],[119,73,71,-0.7672026015835507],[119,73,72,-0.7743145914931304],[119,73,73,-0.7883280652824076],[119,73,74,-0.7966262211162699],[119,73,75,-0.8019802642413296],[119,73,76,-0.799951057771441],[119,73,77,-0.7894111488273458],[119,73,78,-0.7734272037201978],[119,73,79,-0.7505645702356152],[119,74,64,-0.8663232995697725],[119,74,65,-0.8692382652625354],[119,74,66,-0.8591680860536035],[119,74,67,-0.8447808320703591],[119,74,68,-0.8337861485888775],[119,74,69,-0.823247497067571],[119,74,70,-0.8192900126954532],[119,74,71,-0.8243946342765236],[119,74,72,-0.8316193712535175],[119,74,73,-0.8444463345455699],[119,74,74,-0.8538407264153127],[119,74,75,-0.8586052874749369],[119,74,76,-0.8546542984411469],[119,74,77,-0.8461561627423528],[119,74,78,-0.8337327286112656],[119,74,79,-0.8120231600455137],[119,75,64,-0.9174661965418156],[119,75,65,-0.9177296984389909],[119,75,66,-0.9110677722357028],[119,75,67,-0.8957353684241569],[119,75,68,-0.8855805137244636],[119,75,69,-0.8748183409430905],[119,75,70,-0.8705526453460202],[119,75,71,-0.8773571285495789],[119,75,72,-0.8825994001819025],[119,75,73,-0.8944514411162017],[119,75,74,-0.9036456028344382],[119,75,75,-0.9106121071468436],[119,75,76,-0.9063896869523852],[119,75,77,-0.8994030246417986],[119,75,78,-0.8868761892951744],[119,75,79,-0.8677980242530638],[119,76,64,-0.9653886832526649],[119,76,65,-0.9676693665345606],[119,76,66,-0.9587932416782091],[119,76,67,-0.9416611009648039],[119,76,68,-0.9322633306506884],[119,76,69,-0.9220659945656127],[119,76,70,-0.9179787221692263],[119,76,71,-0.9241417125702578],[119,76,72,-0.9309298887647569],[119,76,73,-0.9420143604897826],[119,76,74,-0.9510789242904542],[119,76,75,-0.9585973133116656],[119,76,76,-0.9567097002759003],[119,76,77,-0.9492646189574002],[119,76,78,-0.9379631957741723],[119,76,79,-0.9180153369942635],[119,77,64,-1.0144099860266225],[119,77,65,-1.0194809610185174],[119,77,66,-1.0126079065218274],[119,77,67,-0.9955387602021668],[119,77,68,-0.985795438186349],[119,77,69,-0.9784539080028904],[119,77,70,-0.9764387276353367],[119,77,71,-0.9838651135122438],[119,77,72,-0.9894257801245461],[119,77,73,-1.0019583061319843],[119,77,74,-1.0125323816199603],[119,77,75,-1.0197026161295957],[119,77,76,-1.0167408426978826],[119,77,77,-1.009063826560137],[119,77,78,-0.9970251451277997],[119,77,79,-0.9766454440048981],[119,78,64,-1.0662244118459172],[119,78,65,-1.073623524240596],[119,78,66,-1.0629424220605106],[119,78,67,-1.0456529164243127],[119,78,68,-1.0342850795544383],[119,78,69,-1.027222378775114],[119,78,70,-1.0246752492100162],[119,78,71,-1.0307394010732862],[119,78,72,-1.0385063200453502],[119,78,73,-1.0507647634137625],[119,78,74,-1.0635557528083996],[119,78,75,-1.0706930405740032],[119,78,76,-1.0678165553350152],[119,78,77,-1.0623972988287271],[119,78,78,-1.0498622277460545],[119,78,79,-1.0309759571115695],[119,79,64,-1.1080559937776173],[119,79,65,-1.1143286828725851],[119,79,66,-1.1035146959161544],[119,79,67,-1.0851177356255108],[119,79,68,-1.0730296689297378],[119,79,69,-1.0663804433539394],[119,79,70,-1.0636516217904668],[119,79,71,-1.0710141126041957],[119,79,72,-1.0794356122663626],[119,79,73,-1.0919125895865465],[119,79,74,-1.106780129312586],[119,79,75,-1.1142727497652682],[119,79,76,-1.1133324886629665],[119,79,77,-1.1065733146425878],[119,79,78,-1.0950888081324588],[119,79,79,-1.0746498075972308],[119,80,64,-1.1598662192224158],[119,80,65,-1.1624649746057019],[119,80,66,-1.1523468237440453],[119,80,67,-1.1353318787907054],[119,80,68,-1.123806267080302],[119,80,69,-1.1137665961827814],[119,80,70,-1.112606151720065],[119,80,71,-1.118692720821699],[119,80,72,-1.133183049875803],[119,80,73,-1.1454674139671521],[119,80,74,-1.1597548269872688],[119,80,75,-1.166741071780599],[119,80,76,-1.1688845425178094],[119,80,77,-1.1590312189992549],[119,80,78,-1.1468705544868851],[119,80,79,-1.1280335846891092],[119,81,64,-1.1980702734504145],[119,81,65,-1.1999813364159628],[119,81,66,-1.1880787626110534],[119,81,67,-1.1734412285920275],[119,81,68,-1.1633063082498836],[119,81,69,-1.1551647821905695],[119,81,70,-1.1553052294889445],[119,81,71,-1.1633190377070246],[119,81,72,-1.1823692484577424],[119,81,73,-1.2005761781140034],[119,81,74,-1.2157308897874646],[119,81,75,-1.2207779708303514],[119,81,76,-1.2210194536262717],[119,81,77,-1.2158411283290151],[119,81,78,-1.2039715879637674],[119,81,79,-1.1885435137523541],[119,82,64,-1.2527757801444224],[119,82,65,-1.2538585754098832],[119,82,66,-1.2426735127581305],[119,82,67,-1.228548774407484],[119,82,68,-1.2183479381530453],[119,82,69,-1.2120673185701116],[119,82,70,-1.2122330647969037],[119,82,71,-1.2203534907983504],[119,82,72,-1.237896582287258],[119,82,73,-1.2586129667341726],[119,82,74,-1.2748591525006194],[119,82,75,-1.2800227060289913],[119,82,76,-1.2773401510096392],[119,82,77,-1.2749395325756758],[119,82,78,-1.261898889175957],[119,82,79,-1.2452965387430517],[119,83,64,-1.3027248072350182],[119,83,65,-1.3049641167822823],[119,83,66,-1.2933062642760835],[119,83,67,-1.2784034655612722],[119,83,68,-1.2669268887241554],[119,83,69,-1.2614902643882222],[119,83,70,-1.2635192591610065],[119,83,71,-1.2731508254868065],[119,83,72,-1.2907401195753974],[119,83,73,-1.3116534448730612],[119,83,74,-1.328654778611509],[119,83,75,-1.333348879629241],[119,83,76,-1.3306153424751672],[119,83,77,-1.3256333475205202],[119,83,78,-1.3130772854870998],[119,83,79,-1.2980038170160355],[119,84,64,-1.3475830269938573],[119,84,65,-1.3517546433615806],[119,84,66,-1.339377805813684],[119,84,67,-1.3249885528748147],[119,84,68,-1.3137489927296708],[119,84,69,-1.3093480623898688],[119,84,70,-1.313209199984487],[119,84,71,-1.325008565038564],[119,84,72,-1.3430967583110343],[119,84,73,-1.3631136928624699],[119,84,74,-1.3799805510408596],[119,84,75,-1.3841043723287574],[119,84,76,-1.3824393487348858],[119,84,77,-1.3768428652276592],[119,84,78,-1.3626577104481121],[119,84,79,-1.3469445929325299],[119,85,64,-1.4160996833170485],[119,85,65,-1.421371331813258],[119,85,66,-1.4084973600785535],[119,85,67,-1.3931243547508791],[119,85,68,-1.38211055090286],[119,85,69,-1.3792065724545326],[119,85,70,-1.3839619145345274],[119,85,71,-1.3936835212186287],[119,85,72,-1.4082627316343932],[119,85,73,-1.4261655486816576],[119,85,74,-1.4435490061461913],[119,85,75,-1.4488005329926923],[119,85,76,-1.4430584294198572],[119,85,77,-1.4360701501015183],[119,85,78,-1.419304617546813],[119,85,79,-1.3974683133019665],[119,86,64,-1.468217642655093],[119,86,65,-1.471752578675229],[119,86,66,-1.4610042230118276],[119,86,67,-1.4455618417070983],[119,86,68,-1.4327907252246928],[119,86,69,-1.429223633591881],[119,86,70,-1.4339610346349574],[119,86,71,-1.4415775496035224],[119,86,72,-1.4597014434709172],[119,86,73,-1.477258670074016],[119,86,74,-1.494519166285873],[119,86,75,-1.4987882192721693],[119,86,76,-1.4962882562745023],[119,86,77,-1.4888015025103087],[119,86,78,-1.4715968372220403],[119,86,79,-1.4514197058963159],[119,87,64,-1.5049133846396956],[119,87,65,-1.510669255766426],[119,87,66,-1.5030078202994628],[119,87,67,-1.4862350482466269],[119,87,68,-1.4748960297745284],[119,87,69,-1.4705724480346185],[119,87,70,-1.4737058987266418],[119,87,71,-1.4831366182258328],[119,87,72,-1.500232006412044],[119,87,73,-1.5176677633267392],[119,87,74,-1.5352676798517404],[119,87,75,-1.541354000543678],[119,87,76,-1.5400040844081975],[119,87,77,-1.5315686485688091],[119,87,78,-1.5159474527457426],[119,87,79,-1.494433413255977],[119,88,64,-1.5524976102859047],[119,88,65,-1.5600297187278964],[119,88,66,-1.550173520902732],[119,88,67,-1.5352281539829105],[119,88,68,-1.52389684518653],[119,88,69,-1.5172392531195733],[119,88,70,-1.5191123264184214],[119,88,71,-1.5309351436978291],[119,88,72,-1.5465946809303253],[119,88,73,-1.5661109896801546],[119,88,74,-1.5848962336462435],[119,88,75,-1.593183249132705],[119,88,76,-1.5910830244208203],[119,88,77,-1.5827937026327683],[119,88,78,-1.5668678844823596],[119,88,79,-1.544240918579103],[119,89,64,-1.5985156670232281],[119,89,65,-1.6053824277927786],[119,89,66,-1.5977667103641378],[119,89,67,-1.58362532296135],[119,89,68,-1.5708809825088204],[119,89,69,-1.5652995033849464],[119,89,70,-1.5663689467940405],[119,89,71,-1.5773017050715943],[119,89,72,-1.5947904184297237],[119,89,73,-1.6151230971801764],[119,89,74,-1.6339897223675692],[119,89,75,-1.6424099333584774],[119,89,76,-1.6427545382037778],[119,89,77,-1.6355553020154554],[119,89,78,-1.6165407909423235],[119,89,79,-1.593059758610481],[119,90,64,-1.651447077156997],[119,90,65,-1.6559470551828186],[119,90,66,-1.6504467212105536],[119,90,67,-1.6357846978367934],[119,90,68,-1.6246784618808112],[119,90,69,-1.6179726194096247],[119,90,70,-1.6190469227780886],[119,90,71,-1.6275650026959407],[119,90,72,-1.6448540765020556],[119,90,73,-1.6699597651466145],[119,90,74,-1.6886414630777078],[119,90,75,-1.697939198462801],[119,90,76,-1.6981871734412217],[119,90,77,-1.6899609593326441],[119,90,78,-1.6729606139639068],[119,90,79,-1.6473260869516015],[119,91,64,-1.698696299406377],[119,91,65,-1.7014325182778915],[119,91,66,-1.6948064383386094],[119,91,67,-1.680392384554837],[119,91,68,-1.6726952770800296],[119,91,69,-1.664714633196682],[119,91,70,-1.6633126872239514],[119,91,71,-1.6741793364792201],[119,91,72,-1.6930505547461985],[119,91,73,-1.7173755817235608],[119,91,74,-1.7389368348855863],[119,91,75,-1.7458314730322764],[119,91,76,-1.746528440715992],[119,91,77,-1.738962998212273],[119,91,78,-1.7241819622500945],[119,91,79,-1.698331145573407],[119,92,64,-1.7191231389711894],[119,92,65,-1.7206161777413844],[119,92,66,-1.714108620689006],[119,92,67,-1.700530463797977],[119,92,68,-1.6965652295496092],[119,92,69,-1.6893282455453194],[119,92,70,-1.6870200187244728],[119,92,71,-1.70028877732343],[119,92,72,-1.719839151626334],[119,92,73,-1.74516710147151],[119,92,74,-1.768064782465342],[119,92,75,-1.7749763361134145],[119,92,76,-1.7755549005949631],[119,92,77,-1.7670741371389866],[119,92,78,-1.7522886681422385],[119,92,79,-1.72829245308953],[119,93,64,-1.756404104575498],[119,93,65,-1.761345612684091],[119,93,66,-1.75663984587172],[119,93,67,-1.7455418548608463],[119,93,68,-1.741499579047693],[119,93,69,-1.7349665329325645],[119,93,70,-1.734981488946157],[119,93,71,-1.7501828722125452],[119,93,72,-1.7739756279687426],[119,93,73,-1.798931251687626],[119,93,74,-1.8221005095899563],[119,93,75,-1.8327939282834198],[119,93,76,-1.8329389237244416],[119,93,77,-1.8198467151361377],[119,93,78,-1.8002162228708651],[119,93,79,-1.7735613972722828],[119,94,64,-1.802061950283655],[119,94,65,-1.8091233604613026],[119,94,66,-1.8047341382954185],[119,94,67,-1.7969414675918423],[119,94,68,-1.7893625481642914],[119,94,69,-1.784571004219312],[119,94,70,-1.7850465679534389],[119,94,71,-1.7986600379806683],[119,94,72,-1.8235679854357913],[119,94,73,-1.8471410525032028],[119,94,74,-1.8688361847798596],[119,94,75,-1.8812079083723083],[119,94,76,-1.8829755400450903],[119,94,77,-1.8723297306199642],[119,94,78,-1.850509527577536],[119,94,79,-1.8229967826116455],[119,95,64,-1.8377812267057188],[119,95,65,-1.846510320108252],[119,95,66,-1.8444183659215594],[119,95,67,-1.83735651663293],[119,95,68,-1.8280797276558922],[119,95,69,-1.824259537709399],[119,95,70,-1.826559209898158],[119,95,71,-1.839763870808273],[119,95,72,-1.8614549193143184],[119,95,73,-1.8860981334547091],[119,95,74,-1.9065770446323813],[119,95,75,-1.920757706560309],[119,95,76,-1.9235317729803798],[119,95,77,-1.9154966669162068],[119,95,78,-1.8942421494196462],[119,95,79,-1.8669306085793413],[119,96,64,-1.8868475383122294],[119,96,65,-1.8926691892733107],[119,96,66,-1.8924188527099137],[119,96,67,-1.8860941850275914],[119,96,68,-1.8759142729992129],[119,96,69,-1.8711609129085789],[119,96,70,-1.8729909392980715],[119,96,71,-1.8864560536021862],[119,96,72,-1.9073582150957336],[119,96,73,-1.9321254292193994],[119,96,74,-1.9542547559166867],[119,96,75,-1.969272418735564],[119,96,76,-1.9735267403971908],[119,96,77,-1.965085466667736],[119,96,78,-1.9427641348348905],[119,96,79,-1.9162036266471087],[119,97,64,-1.9426621425261392],[119,97,65,-1.9460633055990475],[119,97,66,-1.9420537226450105],[119,97,67,-1.9355700152598956],[119,97,68,-1.9222221539441562],[119,97,69,-1.9167841057145207],[119,97,70,-1.91818785444183],[119,97,71,-1.9290097076989414],[119,97,72,-1.9490319892533],[119,97,73,-1.9732643406639843],[119,97,74,-1.994091207333729],[119,97,75,-2.0105960651074657],[119,97,76,-2.0154056692928934],[119,97,77,-2.010512964161625],[119,97,78,-1.9940472398675284],[119,97,79,-1.9717045038078327],[119,98,64,-1.9981472745277715],[119,98,65,-2.002694722946647],[119,98,66,-1.996554171393494],[119,98,67,-1.9890687667547582],[119,98,68,-1.9746394868055053],[119,98,69,-1.9670284942182983],[119,98,70,-1.9690854286066746],[119,98,71,-1.9802476237530446],[119,98,72,-2.000149842326573],[119,98,73,-2.025366150310439],[119,98,74,-2.0460179549886015],[119,98,75,-2.062713730318997],[119,98,76,-2.067936935784867],[119,98,77,-2.0618288407550343],[119,98,78,-2.0471850731428187],[119,98,79,-2.0250727514411473],[119,99,64,-2.050488667944999],[119,99,65,-2.053343834389883],[119,99,66,-2.0462484449119587],[119,99,67,-2.0349243933303516],[119,99,68,-2.019365226181628],[119,99,69,-2.014640706846821],[119,99,70,-2.0166047639219897],[119,99,71,-2.0281800124600453],[119,99,72,-2.0486892655635005],[119,99,73,-2.071537218294233],[119,99,74,-2.0940426893222144],[119,99,75,-2.108609727527476],[119,99,76,-2.1135004440310396],[119,99,77,-2.106111041385602],[119,99,78,-2.09318215801],[119,99,79,-2.0743786068236414],[119,100,64,-2.0783033795365977],[119,100,65,-2.074637105003416],[119,100,66,-2.0621171187595055],[119,100,67,-2.0424156111946643],[119,100,68,-2.024038096139838],[119,100,69,-2.0144542687830906],[119,100,70,-2.015483859202532],[119,100,71,-2.023869439160131],[119,100,72,-2.0419227108913685],[119,100,73,-2.065468758334015],[119,100,74,-2.0870793273214034],[119,100,75,-2.100397939623077],[119,100,76,-2.10304664461268],[119,100,77,-2.099260614990912],[119,100,78,-2.0913014236024696],[119,100,79,-2.0715647875453915],[119,101,64,-2.1298785995480634],[119,101,65,-2.1243789267628177],[119,101,66,-2.1102659617046844],[119,101,67,-2.09112464343384],[119,101,68,-2.0705670829543408],[119,101,69,-2.060616414835057],[119,101,70,-2.0619764166151677],[119,101,71,-2.0712433180003202],[119,101,72,-2.089393755824752],[119,101,73,-2.1111114493435834],[119,101,74,-2.130853433091434],[119,101,75,-2.1438834989583855],[119,101,76,-2.1493697988028075],[119,101,77,-2.1471631609278896],[119,101,78,-2.1381600240287217],[119,101,79,-2.1200506347394557],[119,102,64,-2.178844927842864],[119,102,65,-2.1731674654404576],[119,102,66,-2.1599874647691615],[119,102,67,-2.140727299690001],[119,102,68,-2.1191413464406863],[119,102,69,-2.111418523017531],[119,102,70,-2.112630516546774],[119,102,71,-2.1176781597180403],[119,102,72,-2.13510815715454],[119,102,73,-2.1587226207244354],[119,102,74,-2.1776607988476466],[119,102,75,-2.1913977054656772],[119,102,76,-2.1979857535523646],[119,102,77,-2.193617402167464],[119,102,78,-2.18531987593505],[119,102,79,-2.1674230673940356],[119,103,64,-2.2183291833448924],[119,103,65,-2.214721358037205],[119,103,66,-2.2010388417406723],[119,103,67,-2.1812610524541185],[119,103,68,-2.161058495232491],[119,103,69,-2.155103194746694],[119,103,70,-2.1544652319991635],[119,103,71,-2.15901909359551],[119,103,72,-2.1766928762032456],[119,103,73,-2.2029611556868525],[119,103,74,-2.2243026452531884],[119,103,75,-2.235635500655767],[119,103,76,-2.241607926266526],[119,103,77,-2.236579864296271],[119,103,78,-2.2273665201829185],[119,103,79,-2.2131880864589175],[119,104,64,-2.265541374327304],[119,104,65,-2.2644735009606847],[119,104,66,-2.2494638068762893],[119,104,67,-2.2301590184336653],[119,104,68,-2.2122940837514564],[119,104,69,-2.2052039738626],[119,104,70,-2.203374043977237],[119,104,71,-2.2074798481676594],[119,104,72,-2.224934454163801],[119,104,73,-2.252678415509903],[119,104,74,-2.273372113237291],[119,104,75,-2.2848099258107752],[119,104,76,-2.289101222380101],[119,104,77,-2.2869542296638667],[119,104,78,-2.276110414818672],[119,104,79,-2.2627681707167615],[119,105,64,-2.3176545286579313],[119,105,65,-2.31247470651192],[119,105,66,-2.2943641912136514],[119,105,67,-2.271822511416542],[119,105,68,-2.253722600922484],[119,105,69,-2.2464203266828076],[119,105,70,-2.2461433272667697],[119,105,71,-2.2507851433310924],[119,105,72,-2.266769800538899],[119,105,73,-2.293725509293232],[119,105,74,-2.3139432413873773],[119,105,75,-2.3271212107446027],[119,105,76,-2.331295907043999],[119,105,77,-2.32959552428418],[119,105,78,-2.3217109469794894],[119,105,79,-2.3104862019239185],[119,106,64,-2.3742994966925273],[119,106,65,-2.366487930528089],[119,106,66,-2.349717570912169],[119,106,67,-2.3268164090210655],[119,106,68,-2.3074491120262506],[119,106,69,-2.3018438335903593],[119,106,70,-2.3000316984893763],[119,106,71,-2.306509326648064],[119,106,72,-2.3198736037997],[119,106,73,-2.3458628438824993],[119,106,74,-2.3667150990790913],[119,106,75,-2.3804733686652986],[119,106,76,-2.384236134121397],[119,106,77,-2.3829836986346336],[119,106,78,-2.374546681179011],[119,106,79,-2.3624133270162306],[119,107,64,-2.423248386280645],[119,107,65,-2.415734713987166],[119,107,66,-2.3994538426744794],[119,107,67,-2.376467809968894],[119,107,68,-2.355892255569214],[119,107,69,-2.3505109378492506],[119,107,70,-2.3504449986417364],[119,107,71,-2.3559720718645325],[119,107,72,-2.3690929627593085],[119,107,73,-2.3957865076033267],[119,107,74,-2.416953003750501],[119,107,75,-2.431470659890874],[119,107,76,-2.4364039348110484],[119,107,77,-2.433480362910708],[119,107,78,-2.423910005870997],[119,107,79,-2.4103002492016166],[119,108,64,-2.4741296119242913],[119,108,65,-2.4703320368166155],[119,108,66,-2.4526056348013543],[119,108,67,-2.427086280301789],[119,108,68,-2.4057317185384854],[119,108,69,-2.3993857442746993],[119,108,70,-2.4017474530474736],[119,108,71,-2.4077564840361503],[119,108,72,-2.420774404212454],[119,108,73,-2.446998169308026],[119,108,74,-2.467961551120934],[119,108,75,-2.4857847721711326],[119,108,76,-2.4905142482523703],[119,108,77,-2.4877506438659918],[119,108,78,-2.4797724789169817],[119,108,79,-2.465774549651513],[119,109,64,-2.514559739500332],[119,109,65,-2.5182706416954743],[119,109,66,-2.5052865057900267],[119,109,67,-2.4861584391507408],[119,109,68,-2.4659813039261542],[119,109,69,-2.4600768869309393],[119,109,70,-2.4620615484946655],[119,109,71,-2.4691520414187944],[119,109,72,-2.4817919484711917],[119,109,73,-2.5057733824015043],[119,109,74,-2.5267650505138537],[119,109,75,-2.545163829796812],[119,109,76,-2.549194204787246],[119,109,77,-2.544046237346422],[119,109,78,-2.534451596693265],[119,109,79,-2.5147177500838325],[119,110,64,-2.561658248034992],[119,110,65,-2.565811150730589],[119,110,66,-2.552530082973995],[119,110,67,-2.5359765175679736],[119,110,68,-2.5162370389383635],[119,110,69,-2.5096453379310133],[119,110,70,-2.513584569360847],[119,110,71,-2.519475336231884],[119,110,72,-2.532883767940655],[119,110,73,-2.5573150915182876],[119,110,74,-2.57789633575604],[119,110,75,-2.595328676359177],[119,110,76,-2.5987743640562533],[119,110,77,-2.5931688519071945],[119,110,78,-2.5826055866750903],[119,110,79,-2.564241819927974],[119,111,64,-2.6008165821016918],[119,111,65,-2.604365555136207],[119,111,66,-2.5939350505642267],[119,111,67,-2.5794109998108934],[119,111,68,-2.56262458594364],[119,111,69,-2.554491258519021],[119,111,70,-2.558140758285748],[119,111,71,-2.563080021539499],[119,111,72,-2.57749223680982],[119,111,73,-2.6038826464293283],[119,111,74,-2.6249480468858595],[119,111,75,-2.643571040061418],[119,111,76,-2.645600780792633],[119,111,77,-2.640347195765349],[119,111,78,-2.628562890901229],[119,111,79,-2.611784515580543],[119,112,64,-2.651289172011686],[119,112,65,-2.6543490791601956],[119,112,66,-2.6440739832703115],[119,112,67,-2.6293238269140384],[119,112,68,-2.6123767033224286],[119,112,69,-2.6052938499118063],[119,112,70,-2.6080424835077616],[119,112,71,-2.610836541808045],[119,112,72,-2.625868283248326],[119,112,73,-2.654487839934474],[119,112,74,-2.6788697515437003],[119,112,75,-2.693386163788713],[119,112,76,-2.6974889342135837],[119,112,77,-2.6884289833767685],[119,112,78,-2.677895152616034],[119,112,79,-2.661951264956037],[119,113,64,-2.697908180033066],[119,113,65,-2.7021771209464793],[119,113,66,-2.693036357453925],[119,113,67,-2.680058576695091],[119,113,68,-2.663096760465815],[119,113,69,-2.6545283255354186],[119,113,70,-2.656438443014191],[119,113,71,-2.657794382190666],[119,113,72,-2.676745649066397],[119,113,73,-2.7060658505838577],[119,113,74,-2.729690428184023],[119,113,75,-2.7455228875241446],[119,113,76,-2.7482223404109245],[119,113,77,-2.74093812017588],[119,113,78,-2.7275570530591793],[119,113,79,-2.7119684523719414],[119,114,64,-2.749639592023105],[119,114,65,-2.7523687310397396],[119,114,66,-2.7470169531365105],[119,114,67,-2.7349407083755315],[119,114,68,-2.7206466000207987],[119,114,69,-2.7101695261732375],[119,114,70,-2.710973242747923],[119,114,71,-2.711768925403378],[119,114,72,-2.731247363586109],[119,114,73,-2.762325612119547],[119,114,74,-2.7892901502711993],[119,114,75,-2.8001897518705734],[119,114,76,-2.800902811133609],[119,114,77,-2.796659660351386],[119,114,78,-2.7833678496226693],[119,114,79,-2.765927289706708],[119,115,64,-2.7941989057276397],[119,115,65,-2.7949310031249386],[119,115,66,-2.7929640246802845],[119,115,67,-2.7828497225317754],[119,115,68,-2.770380938355722],[119,115,69,-2.760086065183907],[119,115,70,-2.7590959545689895],[119,115,71,-2.764334944700063],[119,115,72,-2.7832056198120485],[119,115,73,-2.8117018580871864],[119,115,74,-2.839610856035675],[119,115,75,-2.851873617597976],[119,115,76,-2.851557759735176],[119,115,77,-2.8482588045787995],[119,115,78,-2.8353524094348557],[119,115,79,-2.8152638517289494],[119,116,64,-2.816351262650176],[119,116,65,-2.820066133770378],[119,116,66,-2.8209431852349263],[119,116,67,-2.814528057371594],[119,116,68,-2.8054310643497375],[119,116,69,-2.801011988504223],[119,116,70,-2.8034969401142327],[119,116,71,-2.8136140773695155],[119,116,72,-2.832773940889003],[119,116,73,-2.85828626553966],[119,116,74,-2.885434500470748],[119,116,75,-2.8976271546631094],[119,116,76,-2.898468821878055],[119,116,77,-2.8930948411362336],[119,116,78,-2.876151043583568],[119,116,79,-2.8513017977368094],[119,117,64,-2.863898107207946],[119,117,65,-2.86978407779086],[119,117,66,-2.8695777062912855],[119,117,67,-2.863752220953622],[119,117,68,-2.8551059628663076],[119,117,69,-2.852639567844287],[119,117,70,-2.8558789526683808],[119,117,71,-2.866826707867597],[119,117,72,-2.8874091594762463],[119,117,73,-2.9132801781774416],[119,117,74,-2.9352028215280077],[119,117,75,-2.9486293191193673],[119,117,76,-2.9528424343823283],[119,117,77,-2.9458900961363543],[119,117,78,-2.9230767355817986],[119,117,79,-2.8952894646914973],[119,118,64,-2.9100449607250334],[119,118,65,-2.919046294153125],[119,118,66,-2.9162028877407686],[119,118,67,-2.9087458080866107],[119,118,68,-2.9042728613437596],[119,118,69,-2.8986892300544964],[119,118,70,-2.9016238736294295],[119,118,71,-2.9139813912393775],[119,118,72,-2.934641443647474],[119,118,73,-2.9618464286674775],[119,118,74,-2.983089690676174],[119,118,75,-2.996914718339309],[119,118,76,-3.001411588843864],[119,118,77,-2.996992573632671],[119,118,78,-2.973942151625499],[119,118,79,-2.94439184265487],[119,119,64,-2.9501441720241157],[119,119,65,-2.961161654823735],[119,119,66,-2.9563019522239626],[119,119,67,-2.9494702245667432],[119,119,68,-2.944234643231682],[119,119,69,-2.9402931994940285],[119,119,70,-2.9462854765222635],[119,119,71,-2.959500154160529],[119,119,72,-2.978332710837026],[119,119,73,-3.0054362282621696],[119,119,74,-3.0272548092495057],[119,119,75,-3.044509275433253],[119,119,76,-3.0516662304993196],[119,119,77,-3.0437703891291035],[119,119,78,-3.0222782314637913],[119,119,79,-2.9941951556024358],[119,120,64,-3.000717944865616],[119,120,65,-3.0089357055521],[119,120,66,-3.0038104516019737],[119,120,67,-2.993123316972302],[119,120,68,-2.9879027016996282],[119,120,69,-2.988678419728439],[119,120,70,-2.993340255211387],[119,120,71,-3.0049150441584374],[119,120,72,-3.0239998887613817],[119,120,73,-3.051708372058645],[119,120,74,-3.0766761266149687],[119,120,75,-3.0938214006377303],[119,120,76,-3.10088996891967],[119,120,77,-3.0929940417532507],[119,120,78,-3.072867773739854],[119,120,79,-3.0430078942132663],[119,121,64,-3.0460581517689143],[119,121,65,-3.050987005639342],[119,121,66,-3.043974440493626],[119,121,67,-3.030906382120456],[119,121,68,-3.024428208996047],[119,121,69,-3.0291107272589333],[119,121,70,-3.034669163080543],[119,121,71,-3.042600047373589],[119,121,72,-3.0589046457875826],[119,121,73,-3.0886103783959165],[119,121,74,-3.117660226327739],[119,121,75,-3.1335803605421613],[119,121,76,-3.14168668725571],[119,121,77,-3.1405415719257688],[119,121,78,-3.1268983264859256],[119,121,79,-3.1019755530942064],[119,122,64,-3.0958472910121158],[119,122,65,-3.1004567285066855],[119,122,66,-3.095140332800076],[119,122,67,-3.085040058693385],[119,122,68,-3.076253903555621],[119,122,69,-3.083222825486633],[119,122,70,-3.088866406804078],[119,122,71,-3.095981797118823],[119,122,72,-3.1120510797879866],[119,122,73,-3.142721121161705],[119,122,74,-3.1736809905362335],[119,122,75,-3.1877962175494825],[119,122,76,-3.1972317404891974],[119,122,77,-3.1961931985800893],[119,122,78,-3.181730803642116],[119,122,79,-3.1564720651556897],[119,123,64,-3.1379220763418294],[119,123,65,-3.144977334113327],[119,123,66,-3.141780048209712],[119,123,67,-3.1330593841364442],[119,123,68,-3.1266262950466537],[119,123,69,-3.1306861064901277],[119,123,70,-3.137209560526658],[119,123,71,-3.14591240956005],[119,123,72,-3.163184529429855],[119,123,73,-3.193609854511879],[119,123,74,-3.224253324807491],[119,123,75,-3.2381227845002916],[119,123,76,-3.245853571771393],[119,123,77,-3.2463644966493117],[119,123,78,-3.2329647788298286],[119,123,79,-3.209236203763195],[119,124,64,-3.1820269526575786],[119,124,65,-3.188799783344921],[119,124,66,-3.187863154764394],[119,124,67,-3.17911827330462],[119,124,68,-3.1739287961055735],[119,124,69,-3.1773187300498056],[119,124,70,-3.181629286114601],[119,124,71,-3.192016761808247],[119,124,72,-3.2123637597871864],[119,124,73,-3.2447486626485937],[119,124,74,-3.2722173932684995],[119,124,75,-3.2881118151406312],[119,124,76,-3.2944081963857],[119,124,77,-3.2958479709678765],[119,124,78,-3.285595433942242],[119,124,79,-3.2627340846228203],[119,125,64,-3.2271978708062266],[119,125,65,-3.235210325622821],[119,125,66,-3.233798920633813],[119,125,67,-3.2273519246709172],[119,125,68,-3.222866488129626],[119,125,69,-3.2243313567127085],[119,125,70,-3.2299965700354827],[119,125,71,-3.241171682350141],[119,125,72,-3.2615388590598027],[119,125,73,-3.293761361462639],[119,125,74,-3.322508059367822],[119,125,75,-3.3379230518254945],[119,125,76,-3.3438080466396687],[119,125,77,-3.3471044363240465],[119,125,78,-3.335506115879536],[119,125,79,-3.3123759154635097],[119,126,64,-3.272538153627603],[119,126,65,-3.280561349654131],[119,126,66,-3.2805492384254107],[119,126,67,-3.2739056185235484],[119,126,68,-3.2709527652679338],[119,126,69,-3.2732199050011364],[119,126,70,-3.280709484446226],[119,126,71,-3.290510527140685],[119,126,72,-3.312473018430096],[119,126,73,-3.3425955237976614],[119,126,74,-3.3735290546600614],[119,126,75,-3.3888317069635066],[119,126,76,-3.3956893585854093],[119,126,77,-3.3960490967080794],[119,126,78,-3.384663676360977],[119,126,79,-3.3635366448506976],[119,127,64,-3.3116944448194197],[119,127,65,-3.3201625107451815],[119,127,66,-3.321344964191639],[119,127,67,-3.315941324038745],[119,127,68,-3.3115820030760004],[119,127,69,-3.3173371914414953],[119,127,70,-3.3266129200358567],[119,127,71,-3.33815083006076],[119,127,72,-3.359637040723891],[119,127,73,-3.389325292359923],[119,127,74,-3.4214205307095864],[119,127,75,-3.4412658258446966],[119,127,76,-3.4475740867666653],[119,127,77,-3.4468923112868777],[119,127,78,-3.434129091798839],[119,127,79,-3.412348243074516],[119,128,64,-3.3603291707945084],[119,128,65,-3.3678521955389034],[119,128,66,-3.3696342358921214],[119,128,67,-3.3620523082276006],[119,128,68,-3.3579496612033948],[119,128,69,-3.365692282590704],[119,128,70,-3.376418143548022],[119,128,71,-3.3898702823892077],[119,128,72,-3.410654305845224],[119,128,73,-3.43864941555575],[119,128,74,-3.470767537821845],[119,128,75,-3.4926664907394227],[119,128,76,-3.501995823255587],[119,128,77,-3.4972602259114463],[119,128,78,-3.4830393804445507],[119,128,79,-3.45947964349283],[119,129,64,-3.402019107730291],[119,129,65,-3.4143822905195593],[119,129,66,-3.4168318562068265],[119,129,67,-3.4116887900873976],[119,129,68,-3.409709481039304],[119,129,69,-3.4143013830297155],[119,129,70,-3.425210262473704],[119,129,71,-3.4429547264635842],[119,129,72,-3.4609440463201264],[119,129,73,-3.4912702551509884],[119,129,74,-3.522166174718391],[119,129,75,-3.5467315011399783],[119,129,76,-3.552853731723325],[119,129,77,-3.542442328184589],[119,129,78,-3.5221100422149303],[119,129,79,-3.496295171723313],[119,130,64,-3.4559836101397194],[119,130,65,-3.4674232458154988],[119,130,66,-3.4710290921728713],[119,130,67,-3.4653839163930362],[119,130,68,-3.463895023806206],[119,130,69,-3.4675503184344536],[119,130,70,-3.479185351173804],[119,130,71,-3.494990841599978],[119,130,72,-3.5153742915806183],[119,130,73,-3.5494451648434353],[119,130,74,-3.6020588383819123],[119,130,75,-3.6475274655668803],[119,130,76,-3.653242295636291],[119,130,77,-3.6570812242036435],[119,130,78,-3.6539619995825645],[119,130,79,-3.6891323014549022],[119,131,64,-3.502810016908526],[119,131,65,-3.5177444654019983],[119,131,66,-3.518620902248963],[119,131,67,-3.5139345300345104],[119,131,68,-3.5133023668044294],[119,131,69,-3.5182363127084866],[119,131,70,-3.526992488579373],[119,131,71,-3.542869897928544],[119,131,72,-3.5662692606913824],[119,131,73,-3.6005147661194887],[119,131,74,-3.670727202622784],[119,131,75,-3.7137863557069357],[119,131,76,-3.7290840969675845],[119,131,77,-3.719520224520272],[119,131,78,-3.7219411742023762],[119,131,79,-3.7412132122166493],[119,132,64,-3.5403660388525773],[119,132,65,-3.555361612403322],[119,132,66,-3.5588604824729178],[119,132,67,-3.5559926652507152],[119,132,68,-3.5571804704437286],[119,132,69,-3.562340371039706],[119,132,70,-3.5731505614415635],[119,132,71,-3.587065109507196],[119,132,72,-3.612617012934858],[119,132,73,-3.654264728143925],[119,132,74,-3.7331261824418034],[119,132,75,-3.7640842299651323],[119,132,76,-3.7873618293937836],[119,132,77,-3.771766237531561],[119,132,78,-3.778098230593127],[119,132,79,-3.78891054125524],[119,133,64,-3.5990113707458544],[119,133,65,-3.6091403102136543],[119,133,66,-3.6068510287103934],[119,133,67,-3.601301646912262],[119,133,68,-3.6051102145348786],[119,133,69,-3.6099370895132954],[119,133,70,-3.6201085721255426],[119,133,71,-3.6376851101844245],[119,133,72,-3.665738110905576],[119,133,73,-3.731752955564367],[119,133,74,-3.7941209791690094],[119,133,75,-3.813649378312613],[119,133,76,-3.8316695158543537],[119,133,77,-3.82612290207902],[119,133,78,-3.8375458987425985],[119,133,79,-3.831439482951988],[119,134,64,-3.6487409264106927],[119,134,65,-3.656932999769887],[119,134,66,-3.653235829422523],[119,134,67,-3.6477926428842022],[119,134,68,-3.65139685350911],[119,134,69,-3.6589617487414494],[119,134,70,-3.6705637093829786],[119,134,71,-3.685312131180993],[119,134,72,-3.7142991169974504],[119,134,73,-3.7864553858234333],[119,134,74,-3.841962722048563],[119,134,75,-3.867527416334517],[119,134,76,-3.887283512803163],[119,134,77,-3.892872192122817],[119,134,78,-3.9091009596251696],[119,134,79,-3.8887582586476284],[119,135,64,-3.689733420277643],[119,135,65,-3.7008404240638075],[119,135,66,-3.6986638064351447],[119,135,67,-3.6920558685177],[119,135,68,-3.694949175134787],[119,135,69,-3.702071646355158],[119,135,70,-3.7145851794081444],[119,135,71,-3.7310863370093252],[119,135,72,-3.7601370141134387],[119,135,73,-3.8244117935886752],[119,135,74,-3.8752911631559757],[119,135,75,-3.902021302754403],[119,135,76,-3.923814458326536],[119,135,77,-3.9311483806455065],[119,135,78,-3.946455778882466],[119,135,79,-3.929374074744313],[119,136,64,-3.738190600349679],[119,136,65,-3.747129890667593],[119,136,66,-3.7474754244449686],[119,136,67,-3.7411238071212956],[119,136,68,-3.7415869312264056],[119,136,69,-3.749160838250867],[119,136,70,-3.76160191250347],[119,136,71,-3.7787233314703585],[119,136,72,-3.8070415412615075],[119,136,73,-3.878581522661481],[119,136,74,-3.9284138032715754],[119,136,75,-3.9539498814386187],[119,136,76,-3.9795965311306762],[119,136,77,-3.9864498061982703],[119,136,78,-4.004978706177721],[119,136,79,-3.985239940557849],[119,137,64,-3.78541501234718],[119,137,65,-3.7944543380497353],[119,137,66,-3.796541494969555],[119,137,67,-3.789513487079103],[119,137,68,-3.7890096389505112],[119,137,69,-3.7969278698943048],[119,137,70,-3.8098341195132672],[119,137,71,-3.825408839035719],[119,137,72,-3.8588438758203885],[119,137,73,-3.921500297211043],[119,137,74,-3.966335733790398],[119,137,75,-3.9869581083317667],[119,137,76,-4.007779377799475],[119,137,77,-4.011454254812603],[119,137,78,-4.023068605107001],[119,137,79,-4.0200413785540166],[119,138,64,-3.8399711895243946],[119,138,65,-3.8497084207321777],[119,138,66,-3.848798428416577],[119,138,67,-3.842754655592781],[119,138,68,-3.841918622243687],[119,138,69,-3.851451854597689],[119,138,70,-3.864205402548087],[119,138,71,-3.880114027573313],[119,138,72,-3.905836250242577],[119,138,73,-3.9606862357654324],[119,138,74,-4.004318884474433],[119,138,75,-4.024168735163924],[119,138,76,-4.040000646864262],[119,138,77,-4.043847575034865],[119,138,78,-4.049059447753241],[119,138,79,-4.042692783593585],[119,139,64,-3.888292123873555],[119,139,65,-3.897590501336532],[119,139,66,-3.898372628826539],[119,139,67,-3.892298195642446],[119,139,68,-3.891106021803306],[119,139,69,-3.899455819307943],[119,139,70,-3.91414342310251],[119,139,71,-3.9288504025442075],[119,139,72,-3.958124792960793],[119,139,73,-4.013161336807624],[119,139,74,-4.061672244526252],[119,139,75,-4.086841390289927],[119,139,76,-4.10035114965077],[119,139,77,-4.106907247450285],[119,139,78,-4.109679753157431],[119,139,79,-4.096861036167144],[119,140,64,-3.946786978792134],[119,140,65,-3.95482529916035],[119,140,66,-3.954782238677254],[119,140,67,-3.9490464862230747],[119,140,68,-3.940526200838025],[119,140,69,-3.9445836118029862],[119,140,70,-3.957595775558461],[119,140,71,-3.9713360923537553],[119,140,72,-3.9993367380175266],[119,140,73,-4.05388646996551],[119,140,74,-4.1032425248057836],[119,140,75,-4.131815090864984],[119,140,76,-4.14833841715483],[119,140,77,-4.1523039605584495],[119,140,78,-4.15156032127588],[119,140,79,-4.140036757372636],[119,141,64,-3.9937829677840826],[119,141,65,-4.005334328114244],[119,141,66,-4.010684921496297],[119,141,67,-4.00515511191018],[119,141,68,-3.997661716440409],[119,141,69,-3.9992147969038534],[119,141,70,-4.010843764164725],[119,141,71,-4.022734279036357],[119,141,72,-4.0521263107374015],[119,141,73,-4.098370900474211],[119,141,74,-4.141043663911416],[119,141,75,-4.166605716808263],[119,141,76,-4.183712820675584],[119,141,77,-4.182951110196435],[119,141,78,-4.1780178003816415],[119,141,79,-4.176010709515914],[119,142,64,-4.0437892669330235],[119,142,65,-4.054782200201174],[119,142,66,-4.059803708404089],[119,142,67,-4.055937814339004],[119,142,68,-4.049984513864617],[119,142,69,-4.049045500905329],[119,142,70,-4.057103639510954],[119,142,71,-4.068793098845906],[119,142,72,-4.100010344706467],[119,142,73,-4.144202104748427],[119,142,74,-4.186803179755976],[119,142,75,-4.211168517108686],[119,142,76,-4.227278147642179],[119,142,77,-4.226600878744511],[119,142,78,-4.222572085121612],[119,142,79,-4.224859361393579],[119,143,64,-4.086969513808974],[119,143,65,-4.098176731080186],[119,143,66,-4.10412456765719],[119,143,67,-4.102244466669195],[119,143,68,-4.094848998811327],[119,143,69,-4.093965289557761],[119,143,70,-4.1006957250214375],[119,143,71,-4.111807416686847],[119,143,72,-4.138135113972689],[119,143,73,-4.183695233637057],[119,143,74,-4.224625025177031],[119,143,75,-4.248857757053564],[119,143,76,-4.263692019580394],[119,143,77,-4.260586616508953],[119,143,78,-4.257159405110341],[119,143,79,-4.260698032220094],[119,144,64,-4.136569581398702],[119,144,65,-4.147197464143978],[119,144,66,-4.152266968101815],[119,144,67,-4.149709173120707],[119,144,68,-4.140309796716833],[119,144,69,-4.1399116063328],[119,144,70,-4.147565381284828],[119,144,71,-4.15718801303013],[119,144,72,-4.1858808410832795],[119,144,73,-4.236287752672028],[119,144,74,-4.277758666069689],[119,144,75,-4.301846419164241],[119,144,76,-4.316865014684685],[119,144,77,-4.3168542326570565],[119,144,78,-4.314307624558559],[119,144,79,-4.318796420086625],[119,145,64,-4.18358302260261],[119,145,65,-4.1904914309864365],[119,145,66,-4.1932153772877125],[119,145,67,-4.188193373389849],[119,145,68,-4.176176521276345],[119,145,69,-4.175903390205151],[119,145,70,-4.185656798190645],[119,145,71,-4.197732565183907],[119,145,72,-4.226848279417418],[119,145,73,-4.267891465628508],[119,145,74,-4.303982347363799],[119,145,75,-4.3252956853827875],[119,145,76,-4.338730150496152],[119,145,77,-4.339326114143395],[119,145,78,-4.323810167266027],[119,145,79,-4.317228210765452],[119,146,64,-4.23687172783303],[119,146,65,-4.244985363914356],[119,146,66,-4.2476067336649574],[119,146,67,-4.24008196454349],[119,146,68,-4.22847785221898],[119,146,69,-4.228690368485353],[119,146,70,-4.238107938846195],[119,146,71,-4.250751655629585],[119,146,72,-4.279985969675596],[119,146,73,-4.319731665200752],[119,146,74,-4.356028541944654],[119,146,75,-4.378623565084316],[119,146,76,-4.392633714769287],[119,146,77,-4.392855815730981],[119,146,78,-4.3800558559951845],[119,146,79,-4.368532989268717],[119,147,64,-4.285295908331786],[119,147,65,-4.292758959581775],[119,147,66,-4.296280420795998],[119,147,67,-4.2871742891354545],[119,147,68,-4.276797199980833],[119,147,69,-4.277555472062842],[119,147,70,-4.2854180130075115],[119,147,71,-4.300066943021982],[119,147,72,-4.327161069747248],[119,147,73,-4.367039007064391],[119,147,74,-4.402741836622446],[119,147,75,-4.428191964928653],[119,147,76,-4.438705779682653],[119,147,77,-4.440331975951754],[119,147,78,-4.430273900307885],[119,147,79,-4.382064806202999],[119,148,64,-4.304325354877998],[119,148,65,-4.312803889306215],[119,148,66,-4.318220046449801],[119,148,67,-4.3091345857508285],[119,148,68,-4.30023017922763],[119,148,69,-4.30204892546976],[119,148,70,-4.310067108822443],[119,148,71,-4.325029536828407],[119,148,72,-4.349952928557294],[119,148,73,-4.390930371687144],[119,148,74,-4.427278745931859],[119,148,75,-4.451773322652478],[119,148,76,-4.458639113442698],[119,148,77,-4.460327972824428],[119,148,78,-4.422919689496619],[119,148,79,-4.37705536667985],[119,149,64,-4.351864073885276],[119,149,65,-4.363102811997888],[119,149,66,-4.369454446655192],[119,149,67,-4.359470530465139],[119,149,68,-4.350785178777927],[119,149,69,-4.349877399040564],[119,149,70,-4.35694721092912],[119,149,71,-4.3737197204231935],[119,149,72,-4.400340265623357],[119,149,73,-4.441403797416193],[119,149,74,-4.478665277494705],[119,149,75,-4.503970778501081],[119,149,76,-4.509062067506988],[119,149,77,-4.509962489754377],[119,149,78,-4.47805535701926],[119,149,79,-4.422576439693928],[119,150,64,-4.401413257456904],[119,150,65,-4.413164268604859],[119,150,66,-4.42093149104159],[119,150,67,-4.410281774318085],[119,150,68,-4.401198815966835],[119,150,69,-4.399876116641493],[119,150,70,-4.405491278755836],[119,150,71,-4.422844856564778],[119,150,72,-4.450752311976106],[119,150,73,-4.491234190789767],[119,150,74,-4.531381730368755],[119,150,75,-4.553163390867016],[119,150,76,-4.561192324187292],[119,150,77,-4.559107002292681],[119,150,78,-4.532678291521386],[119,150,79,-4.471804136438177],[119,151,64,-4.446149904492993],[119,151,65,-4.461619130389779],[119,151,66,-4.466443098009796],[119,151,67,-4.455699700391542],[119,151,68,-4.446337992976089],[119,151,69,-4.446441070582756],[119,151,70,-4.453610014264838],[119,151,71,-4.469821348867825],[119,151,72,-4.498655106292919],[119,151,73,-4.540976649030763],[119,151,74,-4.581117900865263],[119,151,75,-4.603865821386163],[119,151,76,-4.614321396247163],[119,151,77,-4.613263992202757],[119,151,78,-4.595532520287468],[119,151,79,-4.529745539506698],[119,152,64,-4.499982204816183],[119,152,65,-4.513554682932899],[119,152,66,-4.517928434148885],[119,152,67,-4.505048671800415],[119,152,68,-4.493857697088424],[119,152,69,-4.496874973949605],[119,152,70,-4.503733659165705],[119,152,71,-4.517179219761336],[119,152,72,-4.547150057702876],[119,152,73,-4.589336534358805],[119,152,74,-4.628424061987817],[119,152,75,-4.65302388429798],[119,152,76,-4.664777405470913],[119,152,77,-4.663714269665859],[119,152,78,-4.644052079097572],[119,152,79,-4.577783278634483],[119,153,64,-4.5463927917679685],[119,153,65,-4.565550040043758],[119,153,66,-4.571450768973856],[119,153,67,-4.560340143414294],[119,153,68,-4.550287808203665],[119,153,69,-4.553841176037964],[119,153,70,-4.561400970697013],[119,153,71,-4.5729444977523235],[119,153,72,-4.599540139119666],[119,153,73,-4.639361375931288],[119,153,74,-4.676750879130685],[119,153,75,-4.701213790493247],[119,153,76,-4.711781645561463],[119,153,77,-4.710715516960649],[119,153,78,-4.679986198671083],[119,153,79,-4.617383458893077],[119,154,64,-4.6018042643130075],[119,154,65,-4.619733259801369],[119,154,66,-4.627046994012893],[119,154,67,-4.614987553653703],[119,154,68,-4.606873806838735],[119,154,69,-4.607015399315637],[119,154,70,-4.6152336700697205],[119,154,71,-4.627327206775573],[119,154,72,-4.654599161620935],[119,154,73,-4.692402121061734],[119,154,74,-4.729615861806983],[119,154,75,-4.754814474577492],[119,154,76,-4.764668656611708],[119,154,77,-4.763706220541541],[119,154,78,-4.7420301172744805],[119,154,79,-4.678356636939748],[119,155,64,-4.652530411400596],[119,155,65,-4.668422804728529],[119,155,66,-4.67563025174026],[119,155,67,-4.665875840505896],[119,155,68,-4.655573088758424],[119,155,69,-4.655723317639688],[119,155,70,-4.661660472784937],[119,155,71,-4.675305432545838],[119,155,72,-4.703286672164109],[119,155,73,-4.739265833375956],[119,155,74,-4.776244544904563],[119,155,75,-4.800690010850011],[119,155,76,-4.812223627981322],[119,155,77,-4.810648937175403],[119,155,78,-4.787827859914214],[119,155,79,-4.729498100180118],[119,156,64,-4.70396212303935],[119,156,65,-4.72144526098634],[119,156,66,-4.723874155886118],[119,156,67,-4.715910883114214],[119,156,68,-4.704956981893352],[119,156,69,-4.703566029108378],[119,156,70,-4.7122763494176585],[119,156,71,-4.724976884903656],[119,156,72,-4.752302010083957],[119,156,73,-4.791297304813055],[119,156,74,-4.8238018594001035],[119,156,75,-4.851469608402074],[119,156,76,-4.861041350238237],[119,156,77,-4.859357190226534],[119,156,78,-4.83850759487976],[119,156,79,-4.781590533227203],[119,157,64,-4.7576574012167825],[119,157,65,-4.77407532817377],[119,157,66,-4.76946507778047],[119,157,67,-4.756631305858052],[119,157,68,-4.741281985810552],[119,157,69,-4.742179052675178],[119,157,70,-4.7507714657881195],[119,157,71,-4.766543312783078],[119,157,72,-4.794145401870571],[119,157,73,-4.837977112950028],[119,157,74,-4.872758203557312],[119,157,75,-4.899080485644433],[119,157,76,-4.909765739011997],[119,157,77,-4.9105506022417975],[119,157,78,-4.891708881991711],[119,157,79,-4.834529246061459],[119,158,64,-4.807179056811736],[119,158,65,-4.821115180700573],[119,158,66,-4.815161484391102],[119,158,67,-4.802168018075728],[119,158,68,-4.787326307963987],[119,158,69,-4.787485096813469],[119,158,70,-4.797780367827326],[119,158,71,-4.813449184543445],[119,158,72,-4.838543912011169],[119,158,73,-4.883064149968726],[119,158,74,-4.922849041149854],[119,158,75,-4.948014726395546],[119,158,76,-4.957371891085024],[119,158,77,-4.958449557782177],[119,158,78,-4.9301769040498105],[119,158,79,-4.876304646447603],[119,159,64,-4.919338061527861],[119,159,65,-4.9242040942738665],[119,159,66,-4.912811340106008],[119,159,67,-4.892802217928004],[119,159,68,-4.870343056251071],[119,159,69,-4.864223010585535],[119,159,70,-4.865683936432404],[119,159,71,-4.872684967185082],[119,159,72,-4.891616228792898],[119,159,73,-4.926982431439558],[119,159,74,-4.959611211861799],[119,159,75,-4.977556358706408],[119,159,76,-4.982548669974187],[119,159,77,-4.972156227546499],[119,159,78,-4.947194707278959],[119,159,79,-4.8918986230026675],[119,160,64,-4.96504949284247],[119,160,65,-4.967587390731702],[119,160,66,-4.958524463585587],[119,160,67,-4.939547694435885],[119,160,68,-4.91574900501006],[119,160,69,-4.910598216131492],[119,160,70,-4.910286545697281],[119,160,71,-4.915853227491288],[119,160,72,-4.937377808365036],[119,160,73,-4.972522603051801],[119,160,74,-5.005820666407657],[119,160,75,-5.022506996298205],[119,160,76,-5.029557969903768],[119,160,77,-5.020273852262523],[119,160,78,-4.988522896200005],[119,160,79,-4.935168548381276],[119,161,64,-5.009610412954893],[119,161,65,-5.011991861049975],[119,161,66,-5.004301654325553],[119,161,67,-4.9879333328178665],[119,161,68,-4.962614211613915],[119,161,69,-4.956500401323697],[119,161,70,-4.9555809566144635],[119,161,71,-4.9611779113011],[119,161,72,-4.981854659713745],[119,161,73,-5.020079090398639],[119,161,74,-5.053074915900767],[119,161,75,-5.067844698754717],[119,161,76,-5.0747050189102705],[119,161,77,-5.069416037183942],[119,161,78,-5.043953004097241],[119,161,79,-4.986650715944715],[119,162,64,-5.060177586139421],[119,162,65,-5.062060759381039],[119,162,66,-5.05654172389512],[119,162,67,-5.041131718743089],[119,162,68,-5.017501189446231],[119,162,69,-5.0068698367082884],[119,162,70,-5.0042374208339675],[119,162,71,-5.010980688382866],[119,162,72,-5.032236943188795],[119,162,73,-5.071686528380047],[119,162,74,-5.103595102602139],[119,162,75,-5.118614219047461],[119,162,76,-5.12410744955694],[119,162,77,-5.117885233948046],[119,162,78,-5.095620908880272],[119,162,79,-5.045565095565018],[119,163,64,-5.105560138824084],[119,163,65,-5.110131836348951],[119,163,66,-5.104662102889197],[119,163,67,-5.088099518699065],[119,163,68,-5.066095292195519],[119,163,69,-5.051979903544649],[119,163,70,-5.04994269620582],[119,163,71,-5.055584418565102],[119,163,72,-5.078431099959225],[119,163,73,-5.117718363558975],[119,163,74,-5.147944870117825],[119,163,75,-5.163405322434242],[119,163,76,-5.166559228945149],[119,163,77,-5.162360021407331],[119,163,78,-5.141497947170875],[119,163,79,-5.090774457107937],[119,164,64,-5.128369701389774],[119,164,65,-5.131986584114252],[119,164,66,-5.123613678135006],[119,164,67,-5.107522533495184],[119,164,68,-5.085256019907242],[119,164,69,-5.072020213723559],[119,164,70,-5.06935887737189],[119,164,71,-5.074499302166975],[119,164,72,-5.0983575390999345],[119,164,73,-5.1355258965081525],[119,164,74,-5.1663835166631005],[119,164,75,-5.180372061207817],[119,164,76,-5.184503130313079],[119,164,77,-5.183920973554046],[119,164,78,-5.164811056374565],[119,164,79,-5.1278053450341075],[119,165,64,-5.162840626606444],[119,165,65,-5.174448949104409],[119,165,66,-5.173696447594837],[119,165,67,-5.15720128043302],[119,165,68,-5.13717232934714],[119,165,69,-5.12537149236141],[119,165,70,-5.122284952479696],[119,165,71,-5.12570724634468],[119,165,72,-5.141220279673731],[119,165,73,-5.173726411935169],[119,165,74,-5.201193020068819],[119,165,75,-5.215344187273739],[119,165,76,-5.221279025778056],[119,165,77,-5.223172599911956],[119,165,78,-5.212356352806963],[119,165,79,-5.1776512112212245],[119,166,64,-5.205269927940123],[119,166,65,-5.217880895560739],[119,166,66,-5.218073345823837],[119,166,67,-5.20276528772222],[119,166,68,-5.181914025507644],[119,166,69,-5.170049704316836],[119,166,70,-5.169714031002595],[119,166,71,-5.172173405335984],[119,166,72,-5.185769861976459],[119,166,73,-5.217199784758761],[119,166,74,-5.244518223492236],[119,166,75,-5.260818885357302],[119,166,76,-5.267674692418285],[119,166,77,-5.267196307158614],[119,166,78,-5.258627566749189],[119,166,79,-5.223235641084009],[119,167,64,-5.244103104603953],[119,167,65,-5.258289633422172],[119,167,66,-5.258560853089516],[119,167,67,-5.241471575232581],[119,167,68,-5.223727863902776],[119,167,69,-5.213417687502666],[119,167,70,-5.211497796735016],[119,167,71,-5.2155654878226105],[119,167,72,-5.232215885221277],[119,167,73,-5.263443975474246],[119,167,74,-5.291978754058296],[119,167,75,-5.30888125529672],[119,167,76,-5.314871189485598],[119,167,77,-5.3143995051792565],[119,167,78,-5.306745944928736],[119,167,79,-5.277139980362487],[119,168,64,-5.2906803451382185],[119,168,65,-5.302474907048068],[119,168,66,-5.299298752406357],[119,168,67,-5.28443906663349],[119,168,68,-5.2668056945168775],[119,168,69,-5.256950056636246],[119,168,70,-5.254931880391096],[119,168,71,-5.260741610521228],[119,168,72,-5.278232247154834],[119,168,73,-5.311932624877083],[119,168,74,-5.339282793772565],[119,168,75,-5.356612408502402],[119,168,76,-5.362533439005724],[119,168,77,-5.360581439497409],[119,168,78,-5.350702442071442],[119,168,79,-5.319854272298708],[119,169,64,-5.346709748546994],[119,169,65,-5.351777296911798],[119,169,66,-5.341548403932853],[119,169,67,-5.319987684199233],[119,169,68,-5.3037024445518615],[119,169,69,-5.292951163640954],[119,169,70,-5.291483788277962],[119,169,71,-5.306055390193227],[119,169,72,-5.329424017689947],[119,169,73,-5.366921281623584],[119,169,74,-5.396720159046272],[119,169,75,-5.413289157627053],[119,169,76,-5.416616776797083],[119,169,77,-5.408255562625084],[119,169,78,-5.393067155279923],[119,169,79,-5.362592638057253],[119,170,64,-5.399212551798544],[119,170,65,-5.4042001412260054],[119,170,66,-5.391965208970414],[119,170,67,-5.369517454267994],[119,170,68,-5.353885601780897],[119,170,69,-5.343120804077311],[119,170,70,-5.340491157806379],[119,170,71,-5.35600198083815],[119,170,72,-5.37915052763032],[119,170,73,-5.417950762276874],[119,170,74,-5.449364563855866],[119,170,75,-5.466193690785301],[119,170,76,-5.469757177692872],[119,170,77,-5.46041548410969],[119,170,78,-5.441622418983547],[119,170,79,-5.41338125878734],[119,171,64,-5.4466903211204425],[119,171,65,-5.450331952607677],[119,171,66,-5.437897400345794],[119,171,67,-5.417029118719336],[119,171,68,-5.401308994888205],[119,171,69,-5.38827306842416],[119,171,70,-5.386345412812015],[119,171,71,-5.400183288571145],[119,171,72,-5.42661698735532],[119,171,73,-5.4671539374039595],[119,171,74,-5.496377282435594],[119,171,75,-5.514189242193275],[119,171,76,-5.51748364107703],[119,171,77,-5.507505445991159],[119,171,78,-5.4882379364786855],[119,171,79,-5.455956457457153],[119,172,64,-5.4941259534654305],[119,172,65,-5.496837019845826],[119,172,66,-5.485099033741852],[119,172,67,-5.464538610822161],[119,172,68,-5.447824573931453],[119,172,69,-5.437099518549607],[119,172,70,-5.438245669434643],[119,172,71,-5.4486185793059985],[119,172,72,-5.476539884851255],[119,172,73,-5.516479140788852],[119,172,74,-5.5447538692253],[119,172,75,-5.561836348351906],[119,172,76,-5.564238683195832],[119,172,77,-5.554514390585905],[119,172,78,-5.532706298931751],[119,172,79,-5.498184424411562],[119,173,64,-5.541018378646166],[119,173,65,-5.542396359453876],[119,173,66,-5.53046668407045],[119,173,67,-5.508999212263444],[119,173,68,-5.4931994583918575],[119,173,69,-5.483294862628957],[119,173,70,-5.48531446455317],[119,173,71,-5.496325017474222],[119,173,72,-5.523020590887872],[119,173,73,-5.560667988430846],[119,173,74,-5.591596014118495],[119,173,75,-5.608436527996452],[119,173,76,-5.611185528603745],[119,173,77,-5.600271914166853],[119,173,78,-5.578353689315643],[119,173,79,-5.542288876271042],[119,174,64,-5.585970703900369],[119,174,65,-5.588899773708562],[119,174,66,-5.574520408057082],[119,174,67,-5.553637025943202],[119,174,68,-5.53914278997574],[119,174,69,-5.530670670354052],[119,174,70,-5.533086044830029],[119,174,71,-5.5446859627659935],[119,174,72,-5.569710224213565],[119,174,73,-5.6068450043632545],[119,174,74,-5.638137065832472],[119,174,75,-5.656180844630967],[119,174,76,-5.658147791930304],[119,174,77,-5.6477672975948705],[119,174,78,-5.626943451440825],[119,174,79,-5.587442900383],[119,175,64,-5.628237464353983],[119,175,65,-5.6307202131691865],[119,175,66,-5.615009809389748],[119,175,67,-5.593544962992376],[119,175,68,-5.580347923397875],[119,175,69,-5.57449670131871],[119,175,70,-5.5783330538371185],[119,175,71,-5.588501832644809],[119,175,72,-5.6146347497721765],[119,175,73,-5.653773002351056],[119,175,74,-5.685545400921647],[119,175,75,-5.7047230813891145],[119,175,76,-5.708003171004191],[119,175,77,-5.69878505139345],[119,175,78,-5.677384750978657],[119,175,79,-5.639625001563811],[119,176,64,-5.672879531389247],[119,176,65,-5.674444888439718],[119,176,66,-5.659168661017699],[119,176,67,-5.638651487422784],[119,176,68,-5.624571847894485],[119,176,69,-5.619772287563958],[119,176,70,-5.624672127829768],[119,176,71,-5.634072225111812],[119,176,72,-5.6587663681767095],[119,176,73,-5.699233685832949],[119,176,74,-5.732310367128294],[119,176,75,-5.752002651935939],[119,176,76,-5.756691674557067],[119,176,77,-5.747731505033407],[119,176,78,-5.725098327999511],[119,176,79,-5.68907670858691],[119,177,64,-5.724063026687369],[119,177,65,-5.721467540743674],[119,177,66,-5.705819799787102],[119,177,67,-5.684265114900719],[119,177,68,-5.670552007483131],[119,177,69,-5.667298441172072],[119,177,70,-5.6725478868998875],[119,177,71,-5.681843293213131],[119,177,72,-5.708947470329809],[119,177,73,-5.751668026952571],[119,177,74,-5.781965868140871],[119,177,75,-5.803446027722973],[119,177,76,-5.809577932028387],[119,177,77,-5.798467958794636],[119,177,78,-5.77356389445655],[119,177,79,-5.738020450528429],[119,178,64,-5.774647411616637],[119,178,65,-5.771352854508488],[119,178,66,-5.7542241243496015],[119,178,67,-5.731206722118453],[119,178,68,-5.720860608908426],[119,178,69,-5.7176771938386555],[119,178,70,-5.722262474129858],[119,178,71,-5.733782502510942],[119,178,72,-5.759191589181404],[119,178,73,-5.800368071528323],[119,178,74,-5.831542806373525],[119,178,75,-5.8550190856264095],[119,178,76,-5.8628781993095975],[119,178,77,-5.849550292766649],[119,178,78,-5.827087073454418],[119,178,79,-5.792036982134678],[119,179,64,-5.818173621599657],[119,179,65,-5.818455460532473],[119,179,66,-5.799437094946155],[119,179,67,-5.776650300535621],[119,179,68,-5.7655190397332525],[119,179,69,-5.762838725612585],[119,179,70,-5.769052191965337],[119,179,71,-5.780695786044493],[119,179,72,-5.804617120961103],[119,179,73,-5.845566556629892],[119,179,74,-5.878988944080132],[119,179,75,-5.902326701619422],[119,179,76,-5.910816981981487],[119,179,77,-5.8966287838185085],[119,179,78,-5.87361967527164],[119,179,79,-5.8434494332881295],[119,180,64,-5.855402779326043],[119,180,65,-5.854680470695823],[119,180,66,-5.836135898915045],[119,180,67,-5.813599788540107],[119,180,68,-5.801851374272441],[119,180,69,-5.802138323095401],[119,180,70,-5.8110554317885335],[119,180,71,-5.82343953184928],[119,180,72,-5.846645182622691],[119,180,73,-5.885234679780807],[119,180,74,-5.91625437925973],[119,180,75,-5.9412637954081795],[119,180,76,-5.949122765833783],[119,180,77,-5.942530949724172],[119,180,78,-5.919251641442696],[119,180,79,-5.888493800150655],[119,181,64,-5.894223027657937],[119,181,65,-5.892433566104352],[119,181,66,-5.880330390606508],[119,181,67,-5.860335619702108],[119,181,68,-5.8459038771825975],[119,181,69,-5.845718585873687],[119,181,70,-5.856818319869281],[119,181,71,-5.867952497804053],[119,181,72,-5.8885651100398615],[119,181,73,-5.922208153653355],[119,181,74,-5.953820779045696],[119,181,75,-5.979267700361012],[119,181,76,-5.988305415871912],[119,181,77,-5.999256862400914],[119,181,78,-6.006808333543668],[119,181,79,-5.985407514906146],[119,182,64,-5.9412887909585885],[119,182,65,-5.940619716057289],[119,182,66,-5.929732166669777],[119,182,67,-5.909577913993675],[119,182,68,-5.893490894907446],[119,182,69,-5.891917591125451],[119,182,70,-5.902397829276059],[119,182,71,-5.914042091003991],[119,182,72,-5.934464821716588],[119,182,73,-5.9688987845735735],[119,182,74,-6.002720251538756],[119,182,75,-6.026318512526026],[119,182,76,-6.034962315971716],[119,182,77,-6.048411631432563],[119,182,78,-6.061256192219061],[119,182,79,-6.042164838076414],[119,183,64,-5.984184474396931],[119,183,65,-5.982453745791199],[119,183,66,-5.973809289652256],[119,183,67,-5.956410799566223],[119,183,68,-5.939834203886617],[119,183,69,-5.9369463065133115],[119,183,70,-5.946847224731178],[119,183,71,-5.959087413855078],[119,183,72,-5.979747801658115],[119,183,73,-6.015461787887692],[119,183,74,-6.051419598905373],[119,183,75,-6.074939080409594],[119,183,76,-6.084383770330764],[119,183,77,-6.086394721485988],[119,183,78,-6.099554896800047],[119,183,79,-6.084681482042162],[119,184,64,-6.0309534038545465],[119,184,65,-6.028542176060594],[119,184,66,-6.019700843568087],[119,184,67,-6.00509063677435],[119,184,68,-5.987912377007599],[119,184,69,-5.985362566037386],[119,184,70,-5.993880493962538],[119,184,71,-6.00520132925655],[119,184,72,-6.027343923795367],[119,184,73,-6.061599271970418],[119,184,74,-6.0998152392500185],[119,184,75,-6.122840305389663],[119,184,76,-6.130200749178745],[119,184,77,-6.138278602205273],[119,184,78,-6.149444981075762],[119,184,79,-6.13474916113478],[119,185,64,-6.079365741992195],[119,185,65,-6.076763511118585],[119,185,66,-6.0673568705798715],[119,185,67,-6.0538378305957306],[119,185,68,-6.038923121883094],[119,185,69,-6.034592935212056],[119,185,70,-6.041726775561967],[119,185,71,-6.051155229269886],[119,185,72,-6.074143475465825],[119,185,73,-6.111249047846922],[119,185,74,-6.149291508037172],[119,185,75,-6.168923674838317],[119,185,76,-6.1773682675513575],[119,185,77,-6.187313108048584],[119,185,78,-6.196629219221821],[119,185,79,-6.177042914367134],[119,186,64,-6.134473592561747],[119,186,65,-6.131479955180283],[119,186,66,-6.121968051549972],[119,186,67,-6.107065693907765],[119,186,68,-6.091505898191089],[119,186,69,-6.087789092106928],[119,186,70,-6.092274667185663],[119,186,71,-6.103624592877941],[119,186,72,-6.126153220238728],[119,186,73,-6.164808232855789],[119,186,74,-6.199777835725891],[119,186,75,-6.223091227865103],[119,186,76,-6.231204362106439],[119,186,77,-6.233418100557267],[119,186,78,-6.23949099446887],[119,186,79,-6.217707141621213],[119,187,64,-6.185516660906717],[119,187,65,-6.184150950096387],[119,187,66,-6.173610373990435],[119,187,67,-6.157246989832091],[119,187,68,-6.138429163450473],[119,187,69,-6.135151633320812],[119,187,70,-6.140905583801783],[119,187,71,-6.151554337422129],[119,187,72,-6.1739499033021845],[119,187,73,-6.213672137576227],[119,187,74,-6.248191131214494],[119,187,75,-6.272624823569819],[119,187,76,-6.27787886102714],[119,187,77,-6.2899524317946165],[119,187,78,-6.29717287507445],[119,187,79,-6.273908912808869],[119,188,64,-6.248293906534035],[119,188,65,-6.245865742279323],[119,188,66,-6.228661570526119],[119,188,67,-6.208252962461398],[119,188,68,-6.184280234754186],[119,188,69,-6.181401944958259],[119,188,70,-6.1849931427001845],[119,188,71,-6.192954252771202],[119,188,72,-6.214166816595408],[119,188,73,-6.254412708534863],[119,188,74,-6.286935073629138],[119,188,75,-6.308159533362868],[119,188,76,-6.314092933547843],[119,188,77,-6.332592419115025],[119,188,78,-6.3435450202665935],[119,188,79,-6.318162526106892],[119,189,64,-6.306967370183691],[119,189,65,-6.303060632737251],[119,189,66,-6.283333192642372],[119,189,67,-6.258738888719702],[119,189,68,-6.237234770490897],[119,189,69,-6.2313743205311685],[119,189,70,-6.23429228868258],[119,189,71,-6.240598738956513],[119,189,72,-6.258828366426833],[119,189,73,-6.295373845736542],[119,189,74,-6.327679093258136],[119,189,75,-6.348932089553821],[119,189,76,-6.354388124966891],[119,189,77,-6.376554302429021],[119,189,78,-6.385186764303012],[119,189,79,-6.366202518744575],[119,190,64,-6.354950254136262],[119,190,65,-6.351776771711728],[119,190,66,-6.332141760458372],[119,190,67,-6.308142533722572],[119,190,68,-6.286451869428775],[119,190,69,-6.2824616880446005],[119,190,70,-6.2842571909695275],[119,190,71,-6.289183830497793],[119,190,72,-6.307310332666288],[119,190,73,-6.340541649966036],[119,190,74,-6.374139482867786],[119,190,75,-6.396965961546774],[119,190,76,-6.403504858820848],[119,190,77,-6.429854839153119],[119,190,78,-6.438948022679056],[119,190,79,-6.414521040598795],[119,191,64,-6.398716045489203],[119,191,65,-6.397908946346891],[119,191,66,-6.379139673641927],[119,191,67,-6.355740903775608],[119,191,68,-6.335090485046014],[119,191,69,-6.3308698210116],[119,191,70,-6.332491242758882],[119,191,71,-6.339934695247424],[119,191,72,-6.355170362686498],[119,191,73,-6.389096144116311],[119,191,74,-6.422869735233681],[119,191,75,-6.443981736783522],[119,191,76,-6.451883958596136],[119,191,77,-6.478998320496826],[119,191,78,-6.488618520887525],[119,191,79,-6.459418045218888],[119,192,64,-6.447035719847533],[119,192,65,-6.444460776588282],[119,192,66,-6.430330371984154],[119,192,67,-6.4055891363581],[119,192,68,-6.382909913141336],[119,192,69,-6.379896534592411],[119,192,70,-6.38215793498765],[119,192,71,-6.3908881356036495],[119,192,72,-6.4044176222404126],[119,192,73,-6.438474540375157],[119,192,74,-6.469464102833764],[119,192,75,-6.491203882273348],[119,192,76,-6.498367419607316],[119,192,77,-6.531621333427931],[119,192,78,-6.541336802432503],[119,192,79,-6.510602558694334],[119,193,64,-6.490020283088311],[119,193,65,-6.488237005810514],[119,193,66,-6.4749951463570925],[119,193,67,-6.4503174497098215],[119,193,68,-6.431591968242916],[119,193,69,-6.426876480688791],[119,193,70,-6.429565393240021],[119,193,71,-6.440280592021086],[119,193,72,-6.459762550164014],[119,193,73,-6.493364937155209],[119,193,74,-6.527626267598418],[119,193,75,-6.5474597145782205],[119,193,76,-6.564425727716368],[119,193,77,-6.58319530300748],[119,193,78,-6.575560580315268],[119,193,79,-6.548360342938501],[119,194,64,-6.5450388812991225],[119,194,65,-6.543774484974198],[119,194,66,-6.525647992025879],[119,194,67,-6.499863480493956],[119,194,68,-6.482069570107504],[119,194,69,-6.475962299057909],[119,194,70,-6.479871416164381],[119,194,71,-6.491489341993904],[119,194,72,-6.51285297387743],[119,194,73,-6.547472728422593],[119,194,74,-6.581551732345479],[119,194,75,-6.599391788234955],[119,194,76,-6.617793322438807],[119,194,77,-6.635758239991781],[119,194,78,-6.631009374460298],[119,194,79,-6.605106832967526],[119,195,64,-6.594877787584612],[119,195,65,-6.591727431202731],[119,195,66,-6.572110454969268],[119,195,67,-6.547166887547816],[119,195,68,-6.529273719535211],[119,195,69,-6.519608467949063],[119,195,70,-6.525220362331163],[119,195,71,-6.538569445828343],[119,195,72,-6.562678094318895],[119,195,73,-6.597612096214393],[119,195,74,-6.63316554962729],[119,195,75,-6.64644249541166],[119,195,76,-6.6739827194889285],[119,195,77,-6.693596904923195],[119,195,78,-6.690230716098362],[119,195,79,-6.6669393054452115],[119,196,64,-6.6346573803483695],[119,196,65,-6.633672060406714],[119,196,66,-6.617461683931051],[119,196,67,-6.594823934395331],[119,196,68,-6.578606417478841],[119,196,69,-6.568587805545954],[119,196,70,-6.574154185784959],[119,196,71,-6.589354844482714],[119,196,72,-6.616906478944571],[119,196,73,-6.655065853496129],[119,196,74,-6.688927798892204],[119,196,75,-6.702745260637137],[119,196,76,-6.737355569402391],[119,196,77,-6.753590617079663],[119,196,78,-6.748330738224272],[119,196,79,-6.725465984951892],[119,197,64,-6.68430276521793],[119,197,65,-6.684957657492362],[119,197,66,-6.666741513157151],[119,197,67,-6.6426308938554435],[119,197,68,-6.625972843656547],[119,197,69,-6.614103452219643],[119,197,70,-6.617888243278695],[119,197,71,-6.632848067945358],[119,197,72,-6.662332477224295],[119,197,73,-6.70039870622258],[119,197,74,-6.735672087414749],[119,197,75,-6.751148611588641],[119,197,76,-6.781514431819007],[119,197,77,-6.797308856376393],[119,197,78,-6.790433649431422],[119,197,79,-6.773800964685555],[119,198,64,-6.732013492377226],[119,198,65,-6.731521034927497],[119,198,66,-6.713202333324561],[119,198,67,-6.68921391649515],[119,198,68,-6.673895433251321],[119,198,69,-6.662952420646247],[119,198,70,-6.664113141917312],[119,198,71,-6.677277128030985],[119,198,72,-6.704039872937725],[119,198,73,-6.7456127251052305],[119,198,74,-6.7811199198479795],[119,198,75,-6.8031765670386966],[119,198,76,-6.828372671492144],[119,198,77,-6.840673447336814],[119,198,78,-6.834463379249991],[119,198,79,-6.816709050485823],[119,199,64,-6.780895908138664],[119,199,65,-6.776666782100195],[119,199,66,-6.75821189267351],[119,199,67,-6.735428914630151],[119,199,68,-6.72004984823394],[119,199,69,-6.709941673887791],[119,199,70,-6.708491408029995],[119,199,71,-6.722531492214887],[119,199,72,-6.748355860987283],[119,199,73,-6.7908311668905705],[119,199,74,-6.8263747491511495],[119,199,75,-6.857485013549278],[119,199,76,-6.879380217412757],[119,199,77,-6.8899314836145225],[119,199,78,-6.8821991036152825],[119,199,79,-6.858538051317727],[119,200,64,-6.830881471013897],[119,200,65,-6.823624947731781],[119,200,66,-6.8071582885609665],[119,200,67,-6.784647680141178],[119,200,68,-6.767193983237656],[119,200,69,-6.756878081747468],[119,200,70,-6.756039059088306],[119,200,71,-6.768007371338659],[119,200,72,-6.793940607091488],[119,200,73,-6.836211860907523],[119,200,74,-6.871157427972383],[119,200,75,-6.908628955325766],[119,200,76,-6.931773902540413],[119,200,77,-6.937603201639475],[119,200,78,-6.931830634952053],[119,200,79,-6.905855960850261],[119,201,64,-6.871330560219081],[119,201,65,-6.864625075002734],[119,201,66,-6.848032470193155],[119,201,67,-6.8247855689691725],[119,201,68,-6.805754721991514],[119,201,69,-6.7958896733587055],[119,201,70,-6.79566976818271],[119,201,71,-6.805542293571454],[119,201,72,-6.832641071088816],[119,201,73,-6.874599953337667],[119,201,74,-6.91071143465455],[119,201,75,-6.948997206512367],[119,201,76,-6.9771530150234415],[119,201,77,-6.985047172873151],[119,201,78,-6.976360009189025],[119,201,79,-6.947340393347951],[119,202,64,-6.926454171347715],[119,202,65,-6.92152340105285],[119,202,66,-6.902416430634572],[119,202,67,-6.876490947432111],[119,202,68,-6.858244743910306],[119,202,69,-6.849626846082876],[119,202,70,-6.848374776452574],[119,202,71,-6.857589789601602],[119,202,72,-6.886556802038365],[119,202,73,-6.926733784941772],[119,202,74,-6.963796957640388],[119,202,75,-6.9972030165019525],[119,202,76,-7.026636979381474],[119,202,77,-7.032889577152548],[119,202,78,-7.027089333468179],[119,202,79,-6.997245028980459],[119,203,64,-6.977780684962055],[119,203,65,-6.973607654324307],[119,203,66,-6.9531472671078856],[119,203,67,-6.925850734448619],[119,203,68,-6.906843932355059],[119,203,69,-6.8988373323628265],[119,203,70,-6.899583267159064],[119,203,71,-6.908861495235053],[119,203,72,-6.936104475018564],[119,203,73,-6.9771291718498825],[119,203,74,-7.01199725539348],[119,203,75,-7.050071488956159],[119,203,76,-7.082355798870114],[119,203,77,-7.093749306341669],[119,203,78,-7.088121838165657],[119,203,79,-7.056497196412984],[119,204,64,-7.025608941283717],[119,204,65,-7.01859066750979],[119,204,66,-6.996706595831903],[119,204,67,-6.970668075651825],[119,204,68,-6.944359862133227],[119,204,69,-6.934178571357751],[119,204,70,-6.934942761785682],[119,204,71,-6.943034731939476],[119,204,72,-6.9696505038484196],[119,204,73,-7.012545797106153],[119,204,74,-7.047780327731794],[119,204,75,-7.090875273527476],[119,204,76,-7.123906916766391],[119,204,77,-7.138800928656245],[119,204,78,-7.134143719650517],[119,204,79,-7.103519197557114],[119,205,64,-7.083709693329899],[119,205,65,-7.078141541122417],[119,205,66,-7.058327681962422],[119,205,67,-7.0334355304314435],[119,205,68,-7.005994408820781],[119,205,69,-6.992620729853384],[119,205,70,-6.993081836216907],[119,205,71,-7.000822163704956],[119,205,72,-7.0253945921814465],[119,205,73,-7.068734163611938],[119,205,74,-7.107489365502558],[119,205,75,-7.126177629225611],[119,205,76,-7.138895851588869],[119,205,77,-7.152607190719254],[119,205,78,-7.169537982711491],[119,205,79,-7.152093683212858],[119,206,64,-7.133279694072306],[119,206,65,-7.129987530526096],[119,206,66,-7.110436077535164],[119,206,67,-7.08288138635341],[119,206,68,-7.054439719964329],[119,206,69,-7.041456982390965],[119,206,70,-7.039930858281934],[119,206,71,-7.048817188012881],[119,206,72,-7.07332867117772],[119,206,73,-7.114729228548508],[119,206,74,-7.15639724445884],[119,206,75,-7.176411653049497],[119,206,76,-7.1905125187148125],[119,206,77,-7.20638284492827],[119,206,78,-7.223993596055762],[119,206,79,-7.200893525534903],[119,207,64,-7.182687777355636],[119,207,65,-7.183071922043787],[119,207,66,-7.163362247447342],[119,207,67,-7.133018850927239],[119,207,68,-7.103577504157528],[119,207,69,-7.089634248413328],[119,207,70,-7.086370969151647],[119,207,71,-7.096637497123469],[119,207,72,-7.121199695529875],[119,207,73,-7.163762981223508],[119,207,74,-7.20408499889943],[119,207,75,-7.225988903008002],[119,207,76,-7.234946699777791],[119,207,77,-7.251534012239666],[119,207,78,-7.2645097485870185],[119,207,79,-7.2441156691618565],[119,208,64,-7.235580816117414],[119,208,65,-7.233644833170182],[119,208,66,-7.213975608189876],[119,208,67,-7.181883294573845],[119,208,68,-7.1513642232493355],[119,208,69,-7.1387705844880855],[119,208,70,-7.134565440126637],[119,208,71,-7.143511857614505],[119,208,72,-7.168769368079429],[119,208,73,-7.209761736933804],[119,208,74,-7.250914708833749],[119,208,75,-7.274405836865959],[119,208,76,-7.276692826242083],[119,208,77,-7.284255443682767],[119,208,78,-7.293563157814888],[119,208,79,-7.2896210204108955],[119,209,64,-7.287714683414974],[119,209,65,-7.285595408433892],[119,209,66,-7.262746377728402],[119,209,67,-7.229969384007684],[119,209,68,-7.201327647953824],[119,209,69,-7.186387046656893],[119,209,70,-7.1838282787011485],[119,209,71,-7.191707945977015],[119,209,72,-7.21489194858582],[119,209,73,-7.256969489819387],[119,209,74,-7.295807213587691],[119,209,75,-7.320369853065069],[119,209,76,-7.323442673530912],[119,209,77,-7.332671576224396],[119,209,78,-7.339522206381785],[119,209,79,-7.338321442968744],[119,210,64,-7.346866727426162],[119,210,65,-7.3409230799594525],[119,210,66,-7.316817286147835],[119,210,67,-7.281093436804478],[119,210,68,-7.2562363950338735],[119,210,69,-7.239829195853271],[119,210,70,-7.236941042365543],[119,210,71,-7.244646650840522],[119,210,72,-7.2662913753473175],[119,210,73,-7.306663524219097],[119,210,74,-7.344668656141741],[119,210,75,-7.369953028589294],[119,210,76,-7.3728511985292835],[119,210,77,-7.381263309593941],[119,210,78,-7.387183195266752],[119,210,79,-7.389204593219768],[119,211,64,-7.396290391529972],[119,211,65,-7.389655175955945],[119,211,66,-7.364663396397457],[119,211,67,-7.32974530232089],[119,211,68,-7.30490505680971],[119,211,69,-7.287771795334657],[119,211,70,-7.285618466633496],[119,211,71,-7.294096732655944],[119,211,72,-7.316551839076757],[119,211,73,-7.352941871497136],[119,211,74,-7.392812809123472],[119,211,75,-7.414097184361864],[119,211,76,-7.418103960522524],[119,211,77,-7.432602783501697],[119,211,78,-7.438277209858053],[119,211,79,-7.447462645627415],[119,212,64,-7.421860422955587],[119,212,65,-7.4195290043925715],[119,212,66,-7.401821431384851],[119,212,67,-7.374175756506203],[119,212,68,-7.35478988697421],[119,212,69,-7.345534090640285],[119,212,70,-7.346978352363382],[119,212,71,-7.356906573776889],[119,212,72,-7.379452104922284],[119,212,73,-7.417577349209857],[119,212,74,-7.455582571302087],[119,212,75,-7.475112543010789],[119,212,76,-7.4787836410610975],[119,212,77,-7.490171971458749],[119,212,78,-7.490695997659655],[119,212,79,-7.4932665692194265],[119,213,64,-7.473075007419451],[119,213,65,-7.468301829606755],[119,213,66,-7.4479144446866945],[119,213,67,-7.422286999838159],[119,213,68,-7.401036239166802],[119,213,69,-7.390983841791868],[119,213,70,-7.390223803691272],[119,213,71,-7.401339057188732],[119,213,72,-7.422504517193143],[119,213,73,-7.458167212916314],[119,213,74,-7.494902683290138],[119,213,75,-7.514995215114281],[119,213,76,-7.520327236201842],[119,213,77,-7.556671849860161],[119,213,78,-7.562827029181201],[119,213,79,-7.540818412521895],[119,214,64,-7.519505023760456],[119,214,65,-7.516951422516341],[119,214,66,-7.495491102220006],[119,214,67,-7.4712989309348465],[119,214,68,-7.449167805534409],[119,214,69,-7.436490739984109],[119,214,70,-7.437871432812262],[119,214,71,-7.447185896602313],[119,214,72,-7.469827290633279],[119,214,73,-7.505003010759128],[119,214,74,-7.54451382075684],[119,214,75,-7.565889603047728],[119,214,76,-7.58008430909958],[119,214,77,-7.612531576654524],[119,214,78,-7.62095355621218],[119,214,79,-7.589251737363055],[119,215,64,-7.568779562869613],[119,215,65,-7.566860466856816],[119,215,66,-7.545592297447867],[119,215,67,-7.520073289715001],[119,215,68,-7.497468788113632],[119,215,69,-7.486677832646973],[119,215,70,-7.4899204753149755],[119,215,71,-7.49729885417676],[119,215,72,-7.519906725535528],[119,215,73,-7.555577267075249],[119,215,74,-7.596078887567731],[119,215,75,-7.617152675340177],[119,215,76,-7.635754620069559],[119,215,77,-7.659563878507356],[119,215,78,-7.664233203842416],[119,215,79,-7.636043280656235],[119,216,64,-7.615201311309913],[119,216,65,-7.6139876448619255],[119,216,66,-7.594180985816763],[119,216,67,-7.56736643261724],[119,216,68,-7.543747182796691],[119,216,69,-7.535223808069575],[119,216,70,-7.540764710961123],[119,216,71,-7.547949369242347],[119,216,72,-7.570131820357773],[119,216,73,-7.6063101783453995],[119,216,74,-7.64675279012932],[119,216,75,-7.665977188567571],[119,216,76,-7.688550130574387],[119,216,77,-7.720826425494758],[119,216,78,-7.719835637289598],[119,216,79,-7.6856843396450065],[119,217,64,-7.654741139753094],[119,217,65,-7.656442030442554],[119,217,66,-7.640799762530104],[119,217,67,-7.6162550841489045],[119,217,68,-7.595881171551735],[119,217,69,-7.5863119036426125],[119,217,70,-7.591805958315189],[119,217,71,-7.60278540765456],[119,217,72,-7.6254437738545215],[119,217,73,-7.664270360262019],[119,217,74,-7.703597925191886],[119,217,75,-7.72096884150912],[119,217,76,-7.747343039469669],[119,217,77,-7.7799940681789685],[119,217,78,-7.768339849401743],[119,217,79,-7.732859754462074],[119,218,64,-7.707215109034525],[119,218,65,-7.708795439874566],[119,218,66,-7.695132972400534],[119,218,67,-7.669068992663239],[119,218,68,-7.6495762663664815],[119,218,69,-7.6397949490628045],[119,218,70,-7.642873759633387],[119,218,71,-7.654826859531855],[119,218,72,-7.679907691317148],[119,218,73,-7.718452999673094],[119,218,74,-7.7526603361641575],[119,218,75,-7.772406063630343],[119,218,76,-7.793711967772956],[119,218,77,-7.833609848356671],[119,218,78,-7.818642147007251],[119,218,79,-7.779529690311891],[119,219,64,-7.753468975074443],[119,219,65,-7.7569721742765605],[119,219,66,-7.742568818077272],[119,219,67,-7.7172784788286535],[119,219,68,-7.696523820729422],[119,219,69,-7.690385488448251],[119,219,70,-7.690402104048864],[119,219,71,-7.700654049957651],[119,219,72,-7.727994089788428],[119,219,73,-7.766414803428057],[119,219,74,-7.801807525366762],[119,219,75,-7.823080903640718],[119,219,76,-7.850499512602003],[119,219,77,-7.893124346934396],[119,219,78,-7.8798598458655995],[119,219,79,-7.835570743409652],[119,220,64,-7.7976623644288745],[119,220,65,-7.798729223765497],[119,220,66,-7.784648112685946],[119,220,67,-7.758003560918215],[119,220,68,-7.735451204244622],[119,220,69,-7.724172636330359],[119,220,70,-7.7216889752977345],[119,220,71,-7.732631039619634],[119,220,72,-7.758801867212823],[119,220,73,-7.7976943176947],[119,220,74,-7.833810319254875],[119,220,75,-7.866961234556877],[119,220,76,-7.905425988147182],[119,220,77,-7.955560056102348],[119,220,78,-7.937583448434653],[119,220,79,-7.892516445998349],[119,221,64,-7.842352512445991],[119,221,65,-7.842314709643562],[119,221,66,-7.831551960674835],[119,221,67,-7.805939573995428],[119,221,68,-7.785852621306573],[119,221,69,-7.772266118465354],[119,221,70,-7.7667295831531735],[119,221,71,-7.7780803096429585],[119,221,72,-7.803772630532169],[119,221,73,-7.841762130392573],[119,221,74,-7.920748316116282],[119,221,75,-7.969167083385069],[119,221,76,-8.015770015308947],[119,221,77,-8.020068734995135],[119,221,78,-7.986604862889713],[119,221,79,-7.943751739726977],[119,222,64,-7.888578366721253],[119,222,65,-7.889246191868892],[119,222,66,-7.87729379196165],[119,222,67,-7.851377421021949],[119,222,68,-7.830809298021423],[119,222,69,-7.815843925845891],[119,222,70,-7.81030040132492],[119,222,71,-7.822784878664503],[119,222,72,-7.849967665442456],[119,222,73,-7.9016554464693325],[119,222,74,-7.973430751301414],[119,222,75,-8.023177983158531],[119,222,76,-8.079885684337462],[119,222,77,-8.069109989223554],[119,222,78,-8.037819684438409],[119,222,79,-7.9942023811343885],[119,223,64,-7.942471728841039],[119,223,65,-7.942426277486683],[119,223,66,-7.925978542369495],[119,223,67,-7.9012247501215915],[119,223,68,-7.878702107907321],[119,223,69,-7.863433184483663],[119,223,70,-7.85949822598219],[119,223,71,-7.871446548036014],[119,223,72,-7.897567941791886],[119,223,73,-7.938664211676749],[119,223,74,-8.028082995930387],[119,223,75,-8.100611685925749],[119,223,76,-8.132371847899693],[119,223,77,-8.117214060056469],[119,223,78,-8.085590728383458],[119,223,79,-8.040741568704354],[119,224,64,-7.991931229059884],[119,224,65,-7.9911407220494635],[119,224,66,-7.972610073024981],[119,224,67,-7.946103783062042],[119,224,68,-7.926765864892457],[119,224,69,-7.909391267877885],[119,224,70,-7.907297982640308],[119,224,71,-7.918374544597012],[119,224,72,-7.9443924698055595],[119,224,73,-7.984424807716464],[119,224,74,-8.08308850460449],[119,224,75,-8.16273071314069],[119,224,76,-8.183032767969376],[119,224,77,-8.16746077154375],[119,224,78,-8.13587069838688],[119,224,79,-8.090468853548394],[119,225,64,-8.048414892634208],[119,225,65,-8.044806921804172],[119,225,66,-8.019281261070002],[119,225,67,-7.987412398326599],[119,225,68,-7.963473640489845],[119,225,69,-7.949150380479777],[119,225,70,-7.948007613843763],[119,225,71,-7.957361441166359],[119,225,72,-7.983602490864199],[119,225,73,-8.025269982757505],[119,225,74,-8.138136136921878],[119,225,75,-8.223409323415998],[119,225,76,-8.233999377317193],[119,225,77,-8.217397345192161],[119,225,78,-8.187902164936514],[119,225,79,-8.143820728818527],[119,226,64,-8.100690332389258],[119,226,65,-8.097004384390441],[119,226,66,-8.072952487725804],[119,226,67,-8.039100660977738],[119,226,68,-8.01379647116572],[119,226,69,-8.000304578058131],[119,226,70,-8.000703668401874],[119,226,71,-8.008189934726449],[119,226,72,-8.036715160043341],[119,226,73,-8.074470731957659],[119,226,74,-8.181425636918778],[119,226,75,-8.264208797662107],[119,226,76,-8.284784000368163],[119,226,77,-8.268161856858072],[119,226,78,-8.23897470267365],[119,226,79,-8.196257076852655],[119,227,64,-8.149763714928003],[119,227,65,-8.145257599141164],[119,227,66,-8.12074823118509],[119,227,67,-8.086928351934358],[119,227,68,-8.059148961797913],[119,227,69,-8.047910614795127],[119,227,70,-8.049320679730545],[119,227,71,-8.056648775128451],[119,227,72,-8.08469891475078],[119,227,73,-8.120891122786317],[119,227,74,-8.244444331741077],[119,227,75,-8.321858088892862],[119,227,76,-8.344062129419068],[119,227,77,-8.328218992368893],[119,227,78,-8.29743820092147],[119,227,79,-8.258151973944647],[119,228,64,-8.18831047491295],[119,228,65,-8.182508271581183],[119,228,66,-8.158558251573679],[119,228,67,-8.123515644254935],[119,228,68,-8.094033966248599],[119,228,69,-8.081385323740255],[119,228,70,-8.08466084600451],[119,228,71,-8.092211567528144],[119,228,72,-8.119237933776729],[119,228,73,-8.155272529033805],[119,228,74,-8.296446160698933],[119,228,75,-8.371599342095747],[119,228,76,-8.39229254854059],[119,228,77,-8.377184459838112],[119,228,78,-8.346921554462607],[119,228,79,-8.308484234116841],[119,229,64,-8.2287808140346],[119,229,65,-8.227800357489816],[119,229,66,-8.210386399752236],[119,229,67,-8.18149690793124],[119,229,68,-8.155323688637862],[119,229,69,-8.138692824862973],[119,229,70,-8.14051471701846],[119,229,71,-8.15034091297478],[119,229,72,-8.175797095076586],[119,229,73,-8.277033996819517],[119,229,74,-8.416240718640001],[119,229,75,-8.440024700421368],[119,229,76,-8.441980758268832],[119,229,77,-8.427940516421778],[119,229,78,-8.39578296662062],[119,229,79,-8.356160246118806],[119,230,64,-8.273949544835002],[119,230,65,-8.27251715924434],[119,230,66,-8.25824123255056],[119,230,67,-8.232158317376095],[119,230,68,-8.205653257673125],[119,230,69,-8.188763312146405],[119,230,70,-8.190831089054212],[119,230,71,-8.197406784334227],[119,230,72,-8.230126666925257],[119,230,73,-8.34002367532687],[119,230,74,-8.470760357649738],[119,230,75,-8.494987715782301],[119,230,76,-8.49933887572787],[119,230,77,-8.484588973389537],[119,230,78,-8.453816949592015],[119,230,79,-8.409633240962112],[119,231,64,-8.324005421790547],[119,231,65,-8.325280214469574],[119,231,66,-8.31208950955055],[119,231,67,-8.288740436094436],[119,231,68,-8.259739145751437],[119,231,69,-8.242536284889965],[119,231,70,-8.241235059644117],[119,231,71,-8.24791728325352],[119,231,72,-8.296707511702312],[119,231,73,-8.396636777367739],[119,231,74,-8.478967138943514],[119,231,75,-8.522572949539155],[119,231,76,-8.546621118223882],[119,231,77,-8.531316229363352],[119,231,78,-8.502964705911033],[119,231,79,-8.456133186762049],[119,232,64,-8.371290726989532],[119,232,65,-8.371570007055658],[119,232,66,-8.360130601614335],[119,232,67,-8.337786413416215],[119,232,68,-8.30959202791273],[119,232,69,-8.290954304798168],[119,232,70,-8.289331459691287],[119,232,71,-8.298333935552526],[119,232,72,-8.342788786655564],[119,232,73,-8.439039588752088],[119,232,74,-8.52338563203704],[119,232,75,-8.56040309451094],[119,232,76,-8.59596257092575],[119,232,77,-8.581600836126006],[119,232,78,-8.555092705565093],[119,232,79,-8.508043966195325],[119,233,64,-8.419186935077667],[119,233,65,-8.418318928809688],[119,233,66,-8.40686286264851],[119,233,67,-8.385392996623663],[119,233,68,-8.359062602612962],[119,233,69,-8.339496012001682],[119,233,70,-8.336622372510563],[119,233,71,-8.347914458855394],[119,233,72,-8.380686932832388],[119,233,73,-8.482752352268765],[119,233,74,-8.564164804002033],[119,233,75,-8.602310905271047],[119,233,76,-8.648047299153793],[119,233,77,-8.635416299242236],[119,233,78,-8.608592549111979],[119,233,79,-8.561024633638716],[119,234,64,-8.47235696191312],[119,234,65,-8.47240452107152],[119,234,66,-8.458711132571578],[119,234,67,-8.434541158775971],[119,234,68,-8.411637003673304],[119,234,69,-8.393220264332399],[119,234,70,-8.389481612176915],[119,234,71,-8.39921253187248],[119,234,72,-8.421535475898338],[119,234,73,-8.498947850827266],[119,234,74,-8.580832800927757],[119,234,75,-8.63109514099121],[119,234,76,-8.685807663254419],[119,234,77,-8.676158475344733],[119,234,78,-8.64635103592429],[119,234,79,-8.603028040109761],[119,235,64,-8.522518806826836],[119,235,65,-8.52334203658468],[119,235,66,-8.506001683447069],[119,235,67,-8.48187910586758],[119,235,68,-8.455830375955317],[119,235,69,-8.442585685510009],[119,235,70,-8.438080918323124],[119,235,71,-8.446480721170744],[119,235,72,-8.469817390489702],[119,235,73,-8.50964466334477],[119,235,74,-8.540673923700247],[119,235,75,-8.573140100536575],[119,235,76,-8.647739886599318],[119,235,77,-8.722157138340812],[119,235,78,-8.702131313397334],[119,235,79,-8.660704565239424],[119,236,64,-8.589445736205871],[119,236,65,-8.590012122705485],[119,236,66,-8.57204675822311],[119,236,67,-8.548269330984496],[119,236,68,-8.522251359611776],[119,236,69,-8.509464592844383],[119,236,70,-8.50450113355101],[119,236,71,-8.513535470786799],[119,236,72,-8.538520763846387],[119,236,73,-8.579139318174711],[119,236,74,-8.611383277174127],[119,236,75,-8.634703701366504],[119,236,76,-8.71060527166832],[119,236,77,-8.769576855460198],[119,236,78,-8.757093785391373],[119,236,79,-8.717943310554654],[119,237,64,-8.632772272182468],[119,237,65,-8.63365292932589],[119,237,66,-8.617003432508895],[119,237,67,-8.593203163146523],[119,237,68,-8.569488043749269],[119,237,69,-8.555974536941122],[119,237,70,-8.554774171147674],[119,237,71,-8.562509471662906],[119,237,72,-8.588847052380777],[119,237,73,-8.635224932091168],[119,237,74,-8.676928446250555],[119,237,75,-8.717031165398728],[119,237,76,-8.80016239661253],[119,237,77,-8.830170550057405],[119,237,78,-8.80641290384631],[119,237,79,-8.765179532728894],[119,238,64,-8.682759790362088],[119,238,65,-8.680604146049474],[119,238,66,-8.664830332079513],[119,238,67,-8.64039714808409],[119,238,68,-8.619439637846119],[119,238,69,-8.605752396533926],[119,238,70,-8.604455252725668],[119,238,71,-8.61207331769431],[119,238,72,-8.640584232825292],[119,238,73,-8.685963755783806],[119,238,74,-8.742538552147376],[119,238,75,-8.792841129095653],[119,238,76,-8.870523096078376],[119,238,77,-8.872657598764695],[119,238,78,-8.84702358414862],[119,238,79,-8.80728227342474],[119,239,64,-8.738049109826823],[119,239,65,-8.735626588795563],[119,239,66,-8.718800762554531],[119,239,67,-8.69426579014573],[119,239,68,-8.671054680109783],[119,239,69,-8.657530953840697],[119,239,70,-8.656765832757987],[119,239,71,-8.664550002130362],[119,239,72,-8.690911120953189],[119,239,73,-8.7369556704476],[119,239,74,-8.774364424592505],[119,239,75,-8.831544017460178],[119,239,76,-8.896281299394252],[119,239,77,-8.91390888678977],[119,239,78,-8.889071984313324],[119,239,79,-8.848842190589442],[119,240,64,-8.785712295296195],[119,240,65,-8.784993897823249],[119,240,66,-8.767827557990987],[119,240,67,-8.74412615195795],[119,240,68,-8.717952816875487],[119,240,69,-8.704083685538999],[119,240,70,-8.703216409373784],[119,240,71,-8.709610189147346],[119,240,72,-8.738598249796912],[119,240,73,-8.78331184107247],[119,240,74,-8.820202062056921],[119,240,75,-8.880772924471813],[119,240,76,-8.932911424164642],[119,240,77,-8.959960573958567],[119,240,78,-8.932795039738037],[119,240,79,-8.895755633298208],[119,241,64,-8.841510895937558],[119,241,65,-8.838814645397736],[119,241,66,-8.82097456346035],[119,241,67,-8.794559627949434],[119,241,68,-8.766926023279387],[119,241,69,-8.750521651152471],[119,241,70,-8.747231787153318],[119,241,71,-8.752947189232575],[119,241,72,-8.779182270587054],[119,241,73,-8.820877867330411],[119,241,74,-8.85435480306675],[119,241,75,-8.867115473505127],[119,241,76,-8.867012373954719],[119,241,77,-8.852213776132427],[119,241,78,-8.820775278348938],[119,241,79,-8.880693076328994],[119,242,64,-8.891875502071793],[119,242,65,-8.890722110841574],[119,242,66,-8.870679401394199],[119,242,67,-8.844204389824165],[119,242,68,-8.815692986469141],[119,242,69,-8.797184184112433],[119,242,70,-8.795426045175228],[119,242,71,-8.801302935774219],[119,242,72,-8.82916312671652],[119,242,73,-8.870200791738537],[119,242,74,-8.904159831993368],[119,242,75,-8.918357485307626],[119,242,76,-8.916996992228013],[119,242,77,-8.903526882231413],[119,242,78,-8.871009697378176],[119,242,79,-8.93230570697453],[119,243,64,-8.939941582587336],[119,243,65,-8.937546995674287],[119,243,66,-8.917407310371777],[119,243,67,-8.890923304845037],[119,243,68,-8.85981037832035],[119,243,69,-8.842465315785164],[119,243,70,-8.840074217515298],[119,243,71,-8.848264660531918],[119,243,72,-8.875454027367352],[119,243,73,-8.917664265576597],[119,243,74,-8.949900960330643],[119,243,75,-8.964334708601156],[119,243,76,-8.962740738309629],[119,243,77,-8.950434435970756],[119,243,78,-8.934915244906062],[119,243,79,-8.987797832051815],[119,244,64,-8.973861685531844],[119,244,65,-8.966916877952714],[119,244,66,-8.942051732293793],[119,244,67,-8.910733101965198],[119,244,68,-8.877637532678229],[119,244,69,-8.86064916686742],[119,244,70,-8.857758961821256],[119,244,71,-8.865955899931661],[119,244,72,-8.892072734882179],[119,244,73,-8.933459753415093],[119,244,74,-8.967937596894528],[119,244,75,-8.981589742094245],[119,244,76,-8.980533852241617],[119,244,77,-8.9687012105327],[119,244,78,-8.957779611368496],[119,244,79,-9.009082509933952],[119,245,64,-9.021683964017603],[119,245,65,-9.013055796402524],[119,245,66,-8.98625778460654],[119,245,67,-8.954041256981933],[119,245,68,-8.919573102536287],[119,245,69,-8.905085904015618],[119,245,70,-8.903074424548395],[119,245,71,-8.911261367822723],[119,245,72,-8.939583790465148],[119,245,73,-8.982501430271231],[119,245,74,-9.016146964540901],[119,245,75,-9.03059526124409],[119,245,76,-9.028704656237242],[119,245,77,-9.015375395969292],[119,245,78,-9.004998783623323],[119,245,79,-9.058087013567585],[119,246,64,-9.067102997790267],[119,246,65,-9.058831153184434],[119,246,66,-9.03304676756251],[119,246,67,-8.995633195897312],[119,246,68,-8.96237643090799],[119,246,69,-8.9479671465244],[119,246,70,-8.950112448124491],[119,246,71,-8.95863489321672],[119,246,72,-8.987694898736605],[119,246,73,-9.031107679364547],[119,246,74,-9.066743095890745],[119,246,75,-9.078149068047077],[119,246,76,-9.074872411013896],[119,246,77,-9.061815138913325],[119,246,78,-9.083958260105387],[119,246,79,-9.150083671605993],[119,247,64,-9.117760846513765],[119,247,65,-9.111136021661286],[119,247,66,-9.082910862532158],[119,247,67,-9.047076719542858],[119,247,68,-9.011981812854902],[119,247,69,-8.995761385129146],[119,247,70,-9.00138192384559],[119,247,71,-9.00979931156385],[119,247,72,-9.03621447695249],[119,247,73,-9.077329282421003],[119,247,74,-9.114521591950448],[119,247,75,-9.125997812521403],[119,247,76,-9.12216783602545],[119,247,77,-9.107822450632419],[119,247,78,-9.11572296976946],[119,247,79,-9.177540509119037],[119,248,64,-9.160225710180615],[119,248,65,-9.152472013223896],[119,248,66,-9.127325636012577],[119,248,67,-9.091983178016335],[119,248,68,-9.057257167897587],[119,248,69,-9.040124044355714],[119,248,70,-9.046919415006686],[119,248,71,-9.055627404801914],[119,248,72,-9.080947843633847],[119,248,73,-9.123397708750348],[119,248,74,-9.161270725505567],[119,248,75,-9.173376018927577],[119,248,76,-9.173759346614416],[119,248,77,-9.157499054440695],[119,248,78,-9.152739638162759],[119,248,79,-9.221734970181135],[119,249,64,-9.207934581298613],[119,249,65,-9.196453811719014],[119,249,66,-9.168184865320352],[119,249,67,-9.12989990196683],[119,249,68,-9.094807094632266],[119,249,69,-9.077979401887681],[119,249,70,-9.083257191923419],[119,249,71,-9.095353977862093],[119,249,72,-9.123819179000451],[119,249,73,-9.16849112975966],[119,249,74,-9.207381305415616],[119,249,75,-9.222358083908802],[119,249,76,-9.222228010905788],[119,249,77,-9.210231197001796],[119,249,78,-9.241395189402578],[119,249,79,-9.30629431899601],[119,250,64,-9.253124593244278],[119,250,65,-9.24267512157104],[119,250,66,-9.217182467150588],[119,250,67,-9.177532045741215],[119,250,68,-9.145584577925295],[119,250,69,-9.127278894096833],[119,250,70,-9.130970951227269],[119,250,71,-9.141148561578154],[119,250,72,-9.170780428815277],[119,250,73,-9.217769551625318],[119,250,74,-9.255692608172097],[119,250,75,-9.295631068771945],[119,250,76,-9.324635084640345],[119,250,77,-9.343590608688018],[119,250,78,-9.325528580888971],[119,250,79,-9.315195088422637],[119,251,64,-9.297351655115962],[119,251,65,-9.286539873530367],[119,251,66,-9.262923737977394],[119,251,67,-9.224600144663974],[119,251,68,-9.192934019829751],[119,251,69,-9.173278392742251],[119,251,70,-9.17674632884064],[119,251,71,-9.186594616852569],[119,251,72,-9.21511581230678],[119,251,73,-9.262255792194697],[119,251,74,-9.30005901085395],[119,251,75,-9.320999228109025],[119,251,76,-9.363234097257342],[119,251,77,-9.381546118201117],[119,251,78,-9.368491727941418],[119,251,79,-9.35852833430412],[119,252,64,-9.333200854585469],[119,252,65,-9.32221789687724],[119,252,66,-9.298664730855842],[119,252,67,-9.261715806872813],[119,252,68,-9.230381783055492],[119,252,69,-9.212191907895205],[119,252,70,-9.21363114819509],[119,252,71,-9.224709449423225],[119,252,72,-9.25190135202476],[119,252,73,-9.296398531956207],[119,252,74,-9.335145924517501],[119,252,75,-9.35784108720301],[119,252,76,-9.398797452180348],[119,252,77,-9.422509468087792],[119,252,78,-9.409758141475288],[119,252,79,-9.419743262161914],[119,253,64,-9.370120179196716],[119,253,65,-9.366321134726254],[119,253,66,-9.345286914218486],[119,253,67,-9.315247375319377],[119,253,68,-9.28591071785555],[119,253,69,-9.269956756900429],[119,253,70,-9.268931028484198],[119,253,71,-9.279340792607295],[119,253,72,-9.304976741805804],[119,253,73,-9.348159567541215],[119,253,74,-9.384587783216856],[119,253,75,-9.40617066481128],[119,253,76,-9.411133130491002],[119,253,77,-9.414729359443426],[119,253,78,-9.418165850833427],[119,253,79,-9.418485890090617],[119,254,64,-9.335164199721738],[119,254,65,-9.338322265223997],[119,254,66,-9.323381818722797],[119,254,67,-9.299340452868686],[119,254,68,-9.280169811851348],[119,254,69,-9.2709308335425],[119,254,70,-9.278518196751195],[119,254,71,-9.297831895427574],[119,254,72,-9.334478501287009],[119,254,73,-9.387152608103188],[119,254,74,-9.43442779697536],[119,254,75,-9.461425767091269],[119,254,76,-9.47316697469536],[119,254,77,-9.476214160425153],[119,254,78,-9.487939689528497],[119,254,79,-9.480724441774015],[119,255,64,-9.380368830745741],[119,255,65,-9.385944217239407],[119,255,66,-9.37046079591774],[119,255,67,-9.343843435290676],[119,255,68,-9.325946643619881],[119,255,69,-9.318359039189156],[119,255,70,-9.323760389713806],[119,255,71,-9.34233847409374],[119,255,72,-9.380656432273891],[119,255,73,-9.43581365421661],[119,255,74,-9.483175955786017],[119,255,75,-9.510444303317636],[119,255,76,-9.522782458655334],[119,255,77,-9.517507689011717],[119,255,78,-9.52658690090099],[119,255,79,-9.515989179246075],[119,256,64,-9.431391195034939],[119,256,65,-9.43462277412361],[119,256,66,-9.419264275752514],[119,256,67,-9.390957713401214],[119,256,68,-9.370419626441294],[119,256,69,-9.362588009685783],[119,256,70,-9.369877552120514],[119,256,71,-9.386872034768647],[119,256,72,-9.427439235262707],[119,256,73,-9.4857162297273],[119,256,74,-9.529946073679461],[119,256,75,-9.559022558796855],[119,256,76,-9.570385979466172],[119,256,77,-9.565001324065568],[119,256,78,-9.577420582200737],[119,256,79,-9.564812934995789],[119,257,64,-9.479793169224285],[119,257,65,-9.484834397895884],[119,257,66,-9.466117726270333],[119,257,67,-9.43827431945731],[119,257,68,-9.415700144366042],[119,257,69,-9.407856475979155],[119,257,70,-9.413618913157592],[119,257,71,-9.432543652350223],[119,257,72,-9.474669852563903],[119,257,73,-9.53242121347171],[119,257,74,-9.57850443074411],[119,257,75,-9.607456362638741],[119,257,76,-9.617562526844331],[119,257,77,-9.626823488915935],[119,257,78,-9.660361905444104],[119,257,79,-9.6537374927792],[119,258,64,-9.532495481254887],[119,258,65,-9.537251078292082],[119,258,66,-9.5184212688534],[119,258,67,-9.492184966087272],[119,258,68,-9.466166915715377],[119,258,69,-9.455898545574252],[119,258,70,-9.460666359794706],[119,258,71,-9.481789170705044],[119,258,72,-9.523562353883598],[119,258,73,-9.581046539114977],[119,258,74,-9.62935533954107],[119,258,75,-9.656409381353182],[119,258,76,-9.667017844944624],[119,258,77,-9.6719872715296],[119,258,78,-9.704778272294806],[119,258,79,-9.700487948941758],[119,259,64,-9.579780533847206],[119,259,65,-9.581705068068182],[119,259,66,-9.565670332237051],[119,259,67,-9.538500102909511],[119,259,68,-9.512795729058777],[119,259,69,-9.49943795305341],[119,259,70,-9.506703697114922],[119,259,71,-9.5275709235269],[119,259,72,-9.570396387386092],[119,259,73,-9.628399068869532],[119,259,74,-9.677893126592398],[119,259,75,-9.70568774903099],[119,259,76,-9.71720394985421],[119,259,77,-9.712569981376067],[119,259,78,-9.725586509716786],[119,259,79,-9.73293812003989],[119,260,64,-9.72584880223852],[119,260,65,-9.730236331476963],[119,260,66,-9.718956923891792],[119,260,67,-9.692882219140037],[119,260,68,-9.671398779451943],[119,260,69,-9.660323957450155],[119,260,70,-9.670738172772712],[119,260,71,-9.69384133411349],[119,260,72,-9.736099347285732],[119,260,73,-9.796303463023085],[119,260,74,-9.84766380124717],[119,260,75,-9.876639093291352],[119,260,76,-9.887712851420877],[119,260,77,-9.87928355085956],[119,260,78,-9.870110546146435],[119,260,79,-9.852729476506811],[119,261,64,-9.781658028784607],[119,261,65,-9.781562068075493],[119,261,66,-9.766113661714616],[119,261,67,-9.740330934898823],[119,261,68,-9.71725635608906],[119,261,69,-9.706196564357318],[119,261,70,-9.715361075894666],[119,261,71,-9.737746324535019],[119,261,72,-9.779011774172064],[119,261,73,-9.833239046380893],[119,261,74,-9.888331883729368],[119,261,75,-9.917935533133528],[119,261,76,-9.930899863126553],[119,261,77,-9.934563040671941],[119,261,78,-9.925909587993953],[119,261,79,-9.905478736755528],[119,262,64,-9.834295407805886],[119,262,65,-9.83910246202925],[119,262,66,-9.822391751148626],[119,262,67,-9.794497992001903],[119,262,68,-9.769530525972753],[119,262,69,-9.75811383011334],[119,262,70,-9.764518954199682],[119,262,71,-9.788142373122977],[119,262,72,-9.829238842008408],[119,262,73,-9.883624774887236],[119,262,74,-9.933827840486453],[119,262,75,-9.965261710175005],[119,262,76,-9.979112030103234],[119,262,77,-9.98899278765433],[119,262,78,-9.979879729361873],[119,262,79,-9.95737260955131],[119,263,64,-9.880493862632795],[119,263,65,-9.887507141296357],[119,263,66,-9.871220174813011],[119,263,67,-9.84054756823354],[119,263,68,-9.814931724485259],[119,263,69,-9.803956587886594],[119,263,70,-9.81239947983132],[119,263,71,-9.834619929853943],[119,263,72,-9.875269555917678],[119,263,73,-9.92923779720163],[119,263,74,-9.979686601553416],[119,263,75,-10.013724613262971],[119,263,76,-10.03566469679531],[119,263,77,-10.034914040034623],[119,263,78,-10.022111977167663],[119,263,79,-10.00490561441571],[119,264,64,-9.928475460832704],[119,264,65,-9.933403189099066],[119,264,66,-9.916953120969755],[119,264,67,-9.885850022474864],[119,264,68,-9.859332857875755],[119,264,69,-9.850839326363072],[119,264,70,-9.859223880312221],[119,264,71,-9.88119897369681],[119,264,72,-9.92132820453159],[119,264,73,-9.9758775303952],[119,264,74,-10.02652946729996],[119,264,75,-10.061638038349242],[119,264,76,-10.089525512166249],[119,264,77,-10.08507737748463],[119,264,78,-10.070137569826684],[119,264,79,-10.06053601980498],[119,265,64,-9.966113928084276],[119,265,65,-9.97310030259859],[119,265,66,-9.957438539202343],[119,265,67,-9.928915474978783],[119,265,68,-9.906025982803827],[119,265,69,-9.896953584750879],[119,265,70,-9.908055448293972],[119,265,71,-9.930270513617547],[119,265,72,-9.974216799382809],[119,265,73,-10.034785593749216],[119,265,74,-10.153620882596016],[119,265,75,-10.225733636183042],[119,265,76,-10.254534367196792],[119,265,77,-10.239886910662488],[119,265,78,-10.197755767262901],[119,265,79,-10.160045091648435],[119,266,64,-10.009137767526598],[119,266,65,-10.018456268269748],[119,266,66,-10.006574981088615],[119,266,67,-9.977547580902213],[119,266,68,-9.95681278703153],[119,266,69,-9.94943014192955],[119,266,70,-9.958261899726386],[119,266,71,-9.978638683817499],[119,266,72,-10.023277454329559],[119,266,73,-10.086217596582452],[119,266,74,-10.194529814283772],[119,266,75,-10.26471759446859],[119,266,76,-10.299352849915648],[119,266,77,-10.293455690196748],[119,266,78,-10.250456610693142],[119,266,79,-10.215155643713018],[119,267,64,-10.04860340110806],[119,267,65,-10.060222815537458],[119,267,66,-10.050098445780618],[119,267,67,-10.021781531587498],[119,267,68,-10.001394851177272],[119,267,69,-9.993395777984315],[119,267,70,-10.00379970143056],[119,267,71,-10.023231702653783],[119,267,72,-10.068036356385312],[119,267,73,-10.134138720962229],[119,267,74,-10.24926450962648],[119,267,75,-10.311398087977889],[119,267,76,-10.354132610266058],[119,267,77,-10.353934406922052],[119,267,78,-10.309741921419663],[119,267,79,-10.27664260155772],[119,268,64,-10.084850435097218],[119,268,65,-10.096587171157768],[119,268,66,-10.084904799822136],[119,268,67,-10.055503842452191],[119,268,68,-10.03497117402111],[119,268,69,-10.027542423788468],[119,268,70,-10.035234939011309],[119,268,71,-10.055990954855345],[119,268,72,-10.101698231472927],[119,268,73,-10.171375525132369],[119,268,74,-10.26971115580255],[119,268,75,-10.321263327142294],[119,268,76,-10.370611043666663],[119,268,77,-10.390353828876146],[119,268,78,-10.359848939880045],[119,268,79,-10.317000341443691],[119,269,64,-10.128815419841997],[119,269,65,-10.137431463884814],[119,269,66,-10.125306836464405],[119,269,67,-10.098717484678842],[119,269,68,-10.079401227055268],[119,269,69,-10.072776006759808],[119,269,70,-10.079951647118037],[119,269,71,-10.098658128994392],[119,269,72,-10.146335975569183],[119,269,73,-10.218096614988566],[119,269,74,-10.306041141191017],[119,269,75,-10.375189718558818],[119,269,76,-10.420213492856046],[119,269,77,-10.436495169167644],[119,269,78,-10.404932413308218],[119,269,79,-10.362703755992722],[119,270,64,-10.18027888095519],[119,270,65,-10.185846298405192],[119,270,66,-10.173368841927903],[119,270,67,-10.147419926330766],[119,270,68,-10.12983294940472],[119,270,69,-10.12118786414764],[119,270,70,-10.126103632249784],[119,270,71,-10.144163381933415],[119,270,72,-10.191941082692788],[119,270,73,-10.26082578729592],[119,270,74,-10.34649731576099],[119,270,75,-10.414341921011012],[119,270,76,-10.45350371388954],[119,270,77,-10.467464154322617],[119,270,78,-10.43498756014834],[119,270,79,-10.392543111554332],[119,271,64,-10.225478031574069],[119,271,65,-10.231343751125518],[119,271,66,-10.218695499832945],[119,271,67,-10.194751883571186],[119,271,68,-10.174322424665515],[119,271,69,-10.164043071962237],[119,271,70,-10.170396538917045],[119,271,71,-10.188579440688395],[119,271,72,-10.23174200788777],[119,271,73,-10.302513637181203],[119,271,74,-10.385363795098092],[119,271,75,-10.451666084028753],[119,271,76,-10.502191357979221],[119,271,77,-10.51267334089145],[119,271,78,-10.478875149033735],[119,271,79,-10.43522120303624],[119,272,64,-10.272070775332612],[119,272,65,-10.278935810612978],[119,272,66,-10.264381205294471],[119,272,67,-10.240213303202427],[119,272,68,-10.216702077228465],[119,272,69,-10.208340449083789],[119,272,70,-10.214274464450837],[119,272,71,-10.23201972694837],[119,272,72,-10.274876927342865],[119,272,73,-10.343770730042259],[119,272,74,-10.43750971054756],[119,272,75,-10.501849117396945],[119,272,76,-10.555868025786422],[119,272,77,-10.558570781065002],[119,272,78,-10.52411020761683],[119,272,79,-10.480034326979286],[119,273,64,-10.313191224159802],[119,273,65,-10.319243508182716],[119,273,66,-10.307929374857656],[119,273,67,-10.284113773230683],[119,273,68,-10.258757949164174],[119,273,69,-10.252497345238565],[119,273,70,-10.257549760737998],[119,273,71,-10.274170595368243],[119,273,72,-10.318586740033687],[119,273,73,-10.388427097794265],[119,273,74,-10.459069078495478],[119,273,75,-10.501778094583265],[119,273,76,-10.512259807533],[119,273,77,-10.501316913907024],[119,273,78,-10.47237627983499],[119,273,79,-10.431641268596913],[119,274,64,-10.363454775318425],[119,274,65,-10.366575162632794],[119,274,66,-10.355437496469271],[119,274,67,-10.329736792361997],[119,274,68,-10.307092800683733],[119,274,69,-10.298690786051235],[119,274,70,-10.30476823243976],[119,274,71,-10.319830889443955],[119,274,72,-10.366521203075653],[119,274,73,-10.438575236586148],[119,274,74,-10.507538959962053],[119,274,75,-10.549989065008537],[119,274,76,-10.56095780000789],[119,274,77,-10.549322780079185],[119,274,78,-10.519824192241229],[119,274,79,-10.478230300379725],[119,275,64,-10.405863024198204],[119,275,65,-10.40972957431203],[119,275,66,-10.399101579209765],[119,275,67,-10.374801432068185],[119,275,68,-10.353083575402714],[119,275,69,-10.34223859809524],[119,275,70,-10.34720094626973],[119,275,71,-10.364878128612698],[119,275,72,-10.414340922634905],[119,275,73,-10.484348351688597],[119,275,74,-10.56072720745556],[119,275,75,-10.60143259701621],[119,275,76,-10.613766221532252],[119,275,77,-10.605239502955815],[119,275,78,-10.573662019732158],[119,275,79,-10.530157913226635],[119,276,64,-10.437334287947763],[119,276,65,-10.444954654747367],[119,276,66,-10.435038315296861],[119,276,67,-10.410726291364313],[119,276,68,-10.38751428636654],[119,276,69,-10.376321134353228],[119,276,70,-10.380353801752124],[119,276,71,-10.398691652278213],[119,276,72,-10.447778449910704],[119,276,73,-10.51930175843802],[119,276,74,-10.612903914469145],[119,276,75,-10.655137630733853],[119,276,76,-10.66575584071322],[119,276,77,-10.655570683968968],[119,276,78,-10.62679527131337],[119,276,79,-10.580956063621478],[119,277,64,-10.49059763188101],[119,277,65,-10.49739874236234],[119,277,66,-10.485280820750127],[119,277,67,-10.458867481970284],[119,277,68,-10.434148469913382],[119,277,69,-10.422221313249329],[119,277,70,-10.426396394750684],[119,277,71,-10.446475307927656],[119,277,72,-10.492688030215067],[119,277,73,-10.561947223146097],[119,277,74,-10.659697128958797],[119,277,75,-10.704308169776716],[119,277,76,-10.711056326459275],[119,277,77,-10.700966890089886],[119,277,78,-10.671756118934603],[119,277,79,-10.625614852903702],[119,278,64,-10.544310656130287],[119,278,65,-10.550857132660497],[119,278,66,-10.538408209621267],[119,278,67,-10.508378419926453],[119,278,68,-10.479444407100353],[119,278,69,-10.467652382494967],[119,278,70,-10.473672234656636],[119,278,71,-10.49448787456219],[119,278,72,-10.538330742680348],[119,278,73,-10.606277056834159],[119,278,74,-10.69606589801469],[119,278,75,-10.741018353567966],[119,278,76,-10.748606339625425],[119,278,77,-10.739144671521087],[119,278,78,-10.70827264846478],[119,278,79,-10.662114919009339],[119,279,64,-10.592268433772665],[119,279,65,-10.597652827774523],[119,279,66,-10.584505353787295],[119,279,67,-10.554002913921742],[119,279,68,-10.523081038311446],[119,279,69,-10.511399587678813],[119,279,70,-10.518657778516816],[119,279,71,-10.539974409634413],[119,279,72,-10.583710380160577],[119,279,73,-10.655631586401404],[119,279,74,-10.739262993918054],[119,279,75,-10.784946848174252],[119,279,76,-10.792364072296124],[119,279,77,-10.783201458424518],[119,279,78,-10.751391457030858],[119,279,79,-10.704989759934811],[119,280,64,-10.639658920332366],[119,280,65,-10.64559426465308],[119,280,66,-10.629016359537212],[119,280,67,-10.5981307032393],[119,280,68,-10.568134759100099],[119,280,69,-10.556415864391187],[119,280,70,-10.56246241299685],[119,280,71,-10.584105182726413],[119,280,72,-10.628884939191488],[119,280,73,-10.704696787096507],[119,280,74,-10.785175270768427],[119,280,75,-10.831502175487552],[119,280,76,-10.836794884602662],[119,280,77,-10.829455534230046],[119,280,78,-10.797331699433032],[119,280,79,-10.749996783743248],[119,281,64,-10.687644979828068],[119,281,65,-10.691748596506091],[119,281,66,-10.67479437335615],[119,281,67,-10.641519213118306],[119,281,68,-10.613065736746538],[119,281,69,-10.599532750192118],[119,281,70,-10.605718904833425],[119,281,71,-10.628037200447418],[119,281,72,-10.676393067741348],[119,281,73,-10.75560297030751],[119,281,74,-10.843427895624297],[119,281,75,-10.888518480028761],[119,281,76,-10.893886752063468],[119,281,77,-10.884124203460738],[119,281,78,-10.85097462074253],[119,281,79,-10.803145708282717],[119,282,64,-10.740163516746822],[119,282,65,-10.740374266305821],[119,282,66,-10.723275167849343],[119,282,67,-10.688586198742211],[119,282,68,-10.659829925907966],[119,282,69,-10.647460803677115],[119,282,70,-10.65447293990745],[119,282,71,-10.676883480546381],[119,282,72,-10.725569121669139],[119,282,73,-10.79582845221984],[119,282,74,-10.887873859457699],[119,282,75,-10.946909108069393],[119,282,76,-10.952346432792808],[119,282,77,-10.942369628454188],[119,282,78,-10.906103633659157],[119,282,79,-10.859041335009538],[119,283,64,-10.788027968407185],[119,283,65,-10.78436322674945],[119,283,66,-10.767277417020534],[119,283,67,-10.732495190807446],[119,283,68,-10.704994402614462],[119,283,69,-10.692830931831553],[119,283,70,-10.70150389060551],[119,283,71,-10.727255540273969],[119,283,72,-10.774346171615639],[119,283,73,-10.84124635041882],[119,283,74,-10.92134453125062],[119,283,75,-10.994292243629888],[119,283,76,-11.008464974148406],[119,283,77,-10.996534091559777],[119,283,78,-10.959502638646876],[119,283,79,-10.91043077009856],[119,284,64,-10.852061477123566],[119,284,65,-10.849701154659858],[119,284,66,-10.829502651879032],[119,284,67,-10.798632239797193],[119,284,68,-10.773601696809283],[119,284,69,-10.760867378693785],[119,284,70,-10.770119783378545],[119,284,71,-10.79614399721649],[119,284,72,-10.84234608419221],[119,284,73,-10.907761597870472],[119,284,74,-10.985034471561992],[119,284,75,-11.047526362096978],[119,284,76,-11.062068461684204],[119,284,77,-11.04783988711062],[119,284,78,-11.014453688775168],[119,284,79,-10.963870849887495],[119,285,64,-10.9025088732351],[119,285,65,-10.897671100947449],[119,285,66,-10.873292307010168],[119,285,67,-10.839245336950304],[119,285,68,-10.814427817472929],[119,285,69,-10.799760794760232],[119,285,70,-10.808460497993483],[119,285,71,-10.835494508317455],[119,285,72,-10.88337013946951],[119,285,73,-10.950831668827375],[119,285,74,-11.02765089684805],[119,285,75,-11.091912043843077],[119,285,76,-11.105891006346482],[119,285,77,-11.094186726015343],[119,285,78,-11.061487123037535],[119,285,79,-11.011807467175302],[119,286,64,-10.9500129653566],[119,286,65,-10.945548442996278],[119,286,66,-10.923020852789666],[119,286,67,-10.88955787952605],[119,286,68,-10.861576675265706],[119,286,69,-10.84807097796382],[119,286,70,-10.855320612198305],[119,286,71,-10.879749693187005],[119,286,72,-10.931955821785808],[119,286,73,-10.999085779751622],[119,286,74,-11.074946381554046],[119,286,75,-11.133503953785151],[119,286,76,-11.15217256246288],[119,286,77,-11.142292746882973],[119,286,78,-11.107884596224821],[119,286,79,-11.059038599330412],[119,287,64,-10.992882117987678],[119,287,65,-10.989119604645952],[119,287,66,-10.966521379492574],[119,287,67,-10.936147595903936],[119,287,68,-10.907942822983479],[119,287,69,-10.89531845300037],[119,287,70,-10.902337826861043],[119,287,71,-10.925632007676942],[119,287,72,-10.978178366837652],[119,287,73,-11.04673300820263],[119,287,74,-11.119788127010992],[119,287,75,-11.174869113411637],[119,287,76,-11.195212375905411],[119,287,77,-11.184597069938587],[119,287,78,-11.151380506950458],[119,287,79,-11.102198582580275],[119,288,64,-11.037758057654063],[119,288,65,-11.03308875687949],[119,288,66,-11.012772938123803],[119,288,67,-10.982321283823111],[119,288,68,-10.957753180621209],[119,288,69,-10.943230158278618],[119,288,70,-10.94976296058099],[119,288,71,-10.97198408244722],[119,288,72,-11.02604552535629],[119,288,73,-11.096431209124518],[119,288,74,-11.164590082608644],[119,288,75,-11.21873729323335],[119,288,76,-11.23678319095528],[119,288,77,-11.226192269191452],[119,288,78,-11.195164219626273],[119,288,79,-11.147426759260266],[119,289,64,-11.073527980553695],[119,289,65,-11.075981985708456],[119,289,66,-11.061876055755516],[119,289,67,-11.03433622635478],[119,289,68,-11.011005747125552],[119,289,69,-10.99779745093648],[119,289,70,-11.00396327251476],[119,289,71,-11.027828939892707],[119,289,72,-11.082292826204878],[119,289,73,-11.150671753480916],[119,289,74,-11.228477199672687],[119,289,75,-11.279451940445728],[119,289,76,-11.28867728219491],[119,289,77,-11.277157748307825],[119,289,78,-11.246452363619095],[119,289,79,-11.201206291478176],[119,290,64,-11.120721713581023],[119,290,65,-11.127651467472951],[119,290,66,-11.112537495615179],[119,290,67,-11.08324151523358],[119,290,68,-11.059022767869951],[119,290,69,-11.048283621872805],[119,290,70,-11.05330095051899],[119,290,71,-11.07740074355713],[119,290,72,-11.129111922336302],[119,290,73,-11.19788489727148],[119,290,74,-11.269154176165488],[119,290,75,-11.316355939240834],[119,290,76,-11.323453333883375],[119,290,77,-11.311752417567622],[119,290,78,-11.281451886161115],[119,290,79,-11.238851510045466],[119,291,64,-11.167969200997797],[119,291,65,-11.17552512723454],[119,291,66,-11.158579705303486],[119,291,67,-11.129230564813717],[119,291,68,-11.10449159415579],[119,291,69,-11.09362229094587],[119,291,70,-11.099932480719271],[119,291,71,-11.126517806607838],[119,291,72,-11.175980399290912],[119,291,73,-11.24309598595313],[119,291,74,-11.308148013498705],[119,291,75,-11.364798611210658],[119,291,76,-11.371442982816932],[119,291,77,-11.359798783168632],[119,291,78,-11.32934441578421],[119,291,79,-11.289476851404366],[119,292,64,-11.188680333344255],[119,292,65,-11.194797637008888],[119,292,66,-11.179516921691338],[119,292,67,-11.149602033602854],[119,292,68,-11.124481617895452],[119,292,69,-11.113375386901431],[119,292,70,-11.120516467076342],[119,292,71,-11.145344133265757],[119,292,72,-11.196612684018106],[119,292,73,-11.264806610403967],[119,292,74,-11.325503263389589],[119,292,75,-11.387925714697843],[119,292,76,-11.403505938207813],[119,292,77,-11.391948720472872],[119,292,78,-11.360826121078803],[119,292,79,-11.32109959986739],[119,293,64,-11.235086196282287],[119,293,65,-11.239696219973338],[119,293,66,-11.226696890603433],[119,293,67,-11.19581636615483],[119,293,68,-11.170332998460562],[119,293,69,-11.158740375509757],[119,293,70,-11.167760331110864],[119,293,71,-11.193652767068247],[119,293,72,-11.243028748243207],[119,293,73,-11.311675178056298],[119,293,74,-11.371135713445202],[119,293,75,-11.430609972503449],[119,293,76,-11.4475523470606],[119,293,77,-11.43646337956248],[119,293,78,-11.406822882324668],[119,293,79,-11.365361330805175],[119,294,64,-11.28190387211713],[119,294,65,-11.287626143442697],[119,294,66,-11.271432323017898],[119,294,67,-11.240233745317555],[119,294,68,-11.213947798729217],[119,294,69,-11.20161583003762],[119,294,70,-11.211888118959994],[119,294,71,-11.238571791821755],[119,294,72,-11.288797086817837],[119,294,73,-11.356076066607525],[119,294,74,-11.415036760887016],[119,294,75,-11.473814575860663],[119,294,76,-11.507186170531229],[119,294,77,-11.497334196562697],[119,294,78,-11.47037517460171],[119,294,79,-11.425922667576062],[119,295,64,-11.328266505243688],[119,295,65,-11.331119650265197],[119,295,66,-11.315434432966036],[119,295,67,-11.284365948207775],[119,295,68,-11.258399573913925],[119,295,69,-11.243011175007583],[119,295,70,-11.253524140232374],[119,295,71,-11.283991676255502],[119,295,72,-11.332471955436947],[119,295,73,-11.400392661561916],[119,295,74,-11.462867542560167],[119,295,75,-11.499533865751939],[119,295,76,-11.527360707265363],[119,295,77,-11.539668934663132],[119,295,78,-11.515037188399813],[119,295,79,-11.469425204582635],[119,296,64,-11.37263242555639],[119,296,65,-11.376784381831092],[119,296,66,-11.360397451927847],[119,296,67,-11.328326484202613],[119,296,68,-11.300388931368893],[119,296,69,-11.28574741485186],[119,296,70,-11.294960837512],[119,296,71,-11.326432084020055],[119,296,72,-11.37598530609236],[119,296,73,-11.44540230007441],[119,296,74,-11.507433298256641],[119,296,75,-11.546816962211967],[119,296,76,-11.570144499710624],[119,296,77,-11.583738461057289],[119,296,78,-11.559228293654005],[119,296,79,-11.515023810152561],[119,297,64,-11.426201494220496],[119,297,65,-11.425337775494063],[119,297,66,-11.402632523246986],[119,297,67,-11.366200373941307],[119,297,68,-11.335458603627506],[119,297,69,-11.321014080079818],[119,297,70,-11.333713288216979],[119,297,71,-11.365859920331912],[119,297,72,-11.421208942760689],[119,297,73,-11.49639510055961],[119,297,74,-11.558617381525126],[119,297,75,-11.597329671748309],[119,297,76,-11.624725887654877],[119,297,77,-11.636499365426143],[119,297,78,-11.610459981609417],[119,297,79,-11.56640811174223],[119,298,64,-11.473790247920283],[119,298,65,-11.474333225267248],[119,298,66,-11.450354936773987],[119,298,67,-11.41348828177545],[119,298,68,-11.381805830839584],[119,298,69,-11.369466896103562],[119,298,70,-11.382476186376234],[119,298,71,-11.41058437919024],[119,298,72,-11.468520721416239],[119,298,73,-11.543177432295238],[119,298,74,-11.605614323906476],[119,298,75,-11.643985499382316],[119,298,76,-11.673152605569948],[119,298,77,-11.677807832528051],[119,298,78,-11.654345970021888],[119,298,79,-11.608006056480512],[119,299,64,-11.522145369392634],[119,299,65,-11.518852775413814],[119,299,66,-11.495038092078238],[119,299,67,-11.459272039153054],[119,299,68,-11.426362005049874],[119,299,69,-11.4136605612113],[119,299,70,-11.42805783366585],[119,299,71,-11.455664845040166],[119,299,72,-11.512185097292507],[119,299,73,-11.587970815518148],[119,299,74,-11.649690626832902],[119,299,75,-11.687763311771791],[119,299,76,-11.719130328136204],[119,299,77,-11.726346353514332],[119,299,78,-11.705162050203054],[119,299,79,-11.65453833212726],[119,300,64,-11.566183985174757],[119,300,65,-11.566182859825133],[119,300,66,-11.545122085075526],[119,300,67,-11.512257661592567],[119,300,68,-11.482297375720902],[119,300,69,-11.467756373009484],[119,300,70,-11.478393969457095],[119,300,71,-11.501903059820023],[119,300,72,-11.551883200734059],[119,300,73,-11.622325045732463],[119,300,74,-11.683969720828099],[119,300,75,-11.721958148522994],[119,300,76,-11.736235970452377],[119,300,77,-11.73280594669574],[119,300,78,-11.70826646552055],[119,300,79,-11.671949866314494],[119,301,64,-11.6109956608646],[119,301,65,-11.612063724250875],[119,301,66,-11.589777910765411],[119,301,67,-11.557130280954153],[119,301,68,-11.528344270363222],[119,301,69,-11.515067026306891],[119,301,70,-11.52526668288296],[119,301,71,-11.550071031874733],[119,301,72,-11.598333211738382],[119,301,73,-11.6679512121522],[119,301,74,-11.730038945497155],[119,301,75,-11.765528124915047],[119,301,76,-11.781559034662498],[119,301,77,-11.78055980270229],[119,301,78,-11.756845262070902],[119,301,79,-11.716796405146988],[119,302,64,-11.651511786851497],[119,302,65,-11.654274277421871],[119,302,66,-11.631836925339554],[119,302,67,-11.601066326306139],[119,302,68,-11.57137251605069],[119,302,69,-11.560507206093483],[119,302,70,-11.568883128354257],[119,302,71,-11.594066561268658],[119,302,72,-11.641200137421851],[119,302,73,-11.709898013088877],[119,302,74,-11.76884104866919],[119,302,75,-11.805834146407998],[119,302,76,-11.821082046695459],[119,302,77,-11.821093735180497],[119,302,78,-11.79797414263177],[119,302,79,-11.754874120575861],[119,303,64,-11.697166188481182],[119,303,65,-11.699308739951586],[119,303,66,-11.678246985713544],[119,303,67,-11.6454893254217],[119,303,68,-11.617642651680393],[119,303,69,-11.606316210351064],[119,303,70,-11.611573250162838],[119,303,71,-11.637735097441523],[119,303,72,-11.684057397046619],[119,303,73,-11.753462305882838],[119,303,74,-11.813163316997102],[119,303,75,-11.85005775518972],[119,303,76,-11.865314357410568],[119,303,77,-11.86556868037847],[119,303,78,-11.844767664606492],[119,303,79,-11.801650516946882],[119,304,64,-11.738997925101188],[119,304,65,-11.742474525281327],[119,304,66,-11.721507146810927],[119,304,67,-11.691874124455472],[119,304,68,-11.66404718458228],[119,304,69,-11.651086409983082],[119,304,70,-11.656564956382558],[119,304,71,-11.681659383233361],[119,304,72,-11.727557840238592],[119,304,73,-11.797072712385937],[119,304,74,-11.858558402691614],[119,304,75,-11.895115330382147],[119,304,76,-11.911304735693903],[119,304,77,-11.909448364988217],[119,304,78,-11.890333828401921],[119,304,79,-11.847279581234162],[119,305,64,-11.78356455232047],[119,305,65,-11.785186265626773],[119,305,66,-11.767910788187397],[119,305,67,-11.73820262513843],[119,305,68,-11.711251544056587],[119,305,69,-11.69835046457018],[119,305,70,-11.70440626133359],[119,305,71,-11.726117735795881],[119,305,72,-11.770723793045166],[119,305,73,-11.839962555531892],[119,305,74,-11.903936185712183],[119,305,75,-11.942307887577378],[119,305,76,-11.958904040348944],[119,305,77,-11.95692368279324],[119,305,78,-11.93756914910796],[119,305,79,-11.894754236818159],[119,306,64,-11.83285653051456],[119,306,65,-11.833503778362848],[119,306,66,-11.815907915793186],[119,306,67,-11.78463674896742],[119,306,68,-11.755571267061168],[119,306,69,-11.745243029397903],[119,306,70,-11.752321598142649],[119,306,71,-11.773076750887542],[119,306,72,-11.820720930175336],[119,306,73,-11.887850712869641],[119,306,74,-11.951649589126252],[119,306,75,-11.99061414494638],[119,306,76,-12.008079607610188],[119,306,77,-12.006142578520915],[119,306,78,-11.98315083886602],[119,306,79,-11.943445414288542],[119,307,64,-11.879359868247446],[119,307,65,-11.880572298465868],[119,307,66,-11.86129417910752],[119,307,67,-11.82740058695193],[119,307,68,-11.799106174077899],[119,307,69,-11.789512563480034],[119,307,70,-11.797792234688618],[119,307,71,-11.821553222272268],[119,307,72,-11.868371439446628],[119,307,73,-11.936642220481586],[119,307,74,-12.001575516006444],[119,307,75,-12.039931997376938],[119,307,76,-12.054124865620125],[119,307,77,-12.053528337163574],[119,307,78,-12.028842803732294],[119,307,79,-11.991106193103635],[119,308,64,-11.903361169905631],[119,308,65,-11.906311752870025],[119,308,66,-11.885663913225716],[119,308,67,-11.85380670829372],[119,308,68,-11.82800768718544],[119,308,69,-11.819681761890962],[119,308,70,-11.835015957362506],[119,308,71,-11.86699551625992],[119,308,72,-11.91820554233126],[119,308,73,-11.993644865364324],[119,308,74,-12.060768056812813],[119,308,75,-12.098517967618193],[119,308,76,-12.114517914614428],[119,308,77,-12.114207237619542],[119,308,78,-12.090044081820816],[119,308,79,-12.054389385304228],[119,309,64,-11.94842729054521],[119,309,65,-11.950973214038658],[119,309,66,-11.931142933719237],[119,309,67,-11.900318102364439],[119,309,68,-11.872456952956572],[119,309,69,-11.864811827928891],[119,309,70,-11.880622384595629],[119,309,71,-11.909513788002515],[119,309,72,-11.962272024090561],[119,309,73,-12.041533196067101],[119,309,74,-12.107658066913313],[119,309,75,-12.145852456340636],[119,309,76,-12.162000592987543],[119,309,77,-12.161488307917159],[119,309,78,-12.13950930134525],[119,309,79,-12.101543011280391],[119,310,64,-11.98815885072717],[119,310,65,-11.991811456161672],[119,310,66,-11.972017040397224],[119,310,67,-11.942690237823586],[119,310,68,-11.915698322204369],[119,310,69,-11.90729119479581],[119,310,70,-11.919831425200982],[119,310,71,-11.94987092143995],[119,310,72,-12.00196626631302],[119,310,73,-12.081435014398851],[119,310,74,-12.14862542101098],[119,310,75,-12.185949060569865],[119,310,76,-12.201166812182079],[119,310,77,-12.200314335121012],[119,310,78,-12.179346369451647],[119,310,79,-12.14010244057494],[119,311,64,-12.03376014861907],[119,311,65,-12.037180705342907],[119,311,66,-12.01923793002876],[119,311,67,-11.990473318865488],[119,311,68,-11.963122223064255],[119,311,69,-11.953979804585916],[119,311,70,-11.964563490794243],[119,311,71,-11.994148560562612],[119,311,72,-12.046090578651343],[119,311,73,-12.12784319946546],[119,311,74,-12.196834193190371],[119,311,75,-12.232850986691705],[119,311,76,-12.248253962057438],[119,311,77,-12.246453934544379],[119,311,78,-12.223922517183482],[119,311,79,-12.18678607017133],[119,312,64,-12.090392564779673],[119,312,65,-12.091211273609646],[119,312,66,-12.076245264471721],[119,312,67,-12.046223315315915],[119,312,68,-12.018676152209698],[119,312,69,-12.008616696889433],[119,312,70,-12.017093930421893],[119,312,71,-12.040524720819635],[119,312,72,-12.086834145910085],[119,312,73,-12.161670538119632],[119,312,74,-12.231520196467962],[119,312,75,-12.269338589900089],[119,312,76,-12.283640299604029],[119,312,77,-12.28440548350633],[119,312,78,-12.26543496497089],[119,312,79,-12.225742310026167],[119,313,64,-12.137520645536336],[119,313,65,-12.13797755950166],[119,313,66,-12.122046193123241],[119,313,67,-12.09263612787741],[119,313,68,-12.062916298734853],[119,313,69,-12.057134082239713],[119,313,70,-12.065236149662319],[119,313,71,-12.086476198649413],[119,313,72,-12.132895660994217],[119,313,73,-12.205652645646499],[119,313,74,-12.273914388552463],[119,313,75,-12.311855901677738],[119,313,76,-12.3292975631962],[119,313,77,-12.33122815720661],[119,313,78,-12.314824595807464],[119,313,79,-12.275440578120774],[119,314,64,-12.18987913505723],[119,314,65,-12.18942617816479],[119,314,66,-12.17292711297283],[119,314,67,-12.140195904039617],[119,314,68,-12.110693550738675],[119,314,69,-12.106294229077962],[119,314,70,-12.116261069430355],[119,314,71,-12.134418823780948],[119,314,72,-12.179109300880809],[119,314,73,-12.25240572117413],[119,314,74,-12.318624599530338],[119,314,75,-12.358460417752799],[119,314,76,-12.377674942484045],[119,314,77,-12.379318768745515],[119,314,78,-12.366669754706123],[119,314,79,-12.328242893872016],[119,315,64,-12.240009145848997],[119,315,65,-12.241056043476384],[119,315,66,-12.219453791447169],[119,315,67,-12.188599387363853],[119,315,68,-12.160286220953306],[119,315,69,-12.153176317872118],[119,315,70,-12.161976810353533],[119,315,71,-12.181237469420745],[119,315,72,-12.221572981071132],[119,315,73,-12.296889500070195],[119,315,74,-12.36234047062754],[119,315,75,-12.403186435104045],[119,315,76,-12.422337835974192],[119,315,77,-12.42737625765066],[119,315,78,-12.41326937578722],[119,315,79,-12.374740774830302],[119,316,64,-12.29696683385745],[119,316,65,-12.29678533255859],[119,316,66,-12.273391383500103],[119,316,67,-12.238341943687429],[119,316,68,-12.20957077166136],[119,316,69,-12.199248512968436],[119,316,70,-12.205269811164758],[119,316,71,-12.224681513088566],[119,316,72,-12.262993707677797],[119,316,73,-12.337507631688025],[119,316,74,-12.403168114983092],[119,316,75,-12.44352104117498],[119,316,76,-12.463409693554826],[119,316,77,-12.46997747030873],[119,316,78,-12.453860797127188],[119,316,79,-12.413877534210071],[119,317,64,-12.346792845084293],[119,317,65,-12.344729432102437],[119,317,66,-12.32208766190945],[119,317,67,-12.286024534614057],[119,317,68,-12.25951897724987],[119,317,69,-12.2453487140067],[119,317,70,-12.24996135426295],[119,317,71,-12.267893572696925],[119,317,72,-12.309728668352246],[119,317,73,-12.384611165497303],[119,317,74,-12.447779886989162],[119,317,75,-12.489999251921516],[119,317,76,-12.509765883159634],[119,317,77,-12.517612765263948],[119,317,78,-12.501490517246262],[119,317,79,-12.463039162007721],[119,318,64,-12.391391835303647],[119,318,65,-12.38408432735081],[119,318,66,-12.360425882589011],[119,318,67,-12.326931449748791],[119,318,68,-12.298956648265879],[119,318,69,-12.281267607122265],[119,318,70,-12.28633640083521],[119,318,71,-12.30225811122408],[119,318,72,-12.348993341493811],[119,318,73,-12.423845738385445],[119,318,74,-12.48762212516351],[119,318,75,-12.526873391666356],[119,318,76,-12.548815766477066],[119,318,77,-12.553986275900446],[119,318,78,-12.539316569301251],[119,318,79,-12.502648240095054],[119,319,64,-12.439355384053309],[119,319,65,-12.4282397195844],[119,319,66,-12.406484602680472],[119,319,67,-12.373747115597958],[119,319,68,-12.34009292073285],[119,319,69,-12.323437174273783],[119,319,70,-12.327415039010925],[119,319,71,-12.34713877073489],[119,319,72,-12.397217098076972],[119,319,73,-12.470212996637093],[119,319,74,-12.53304684130083],[119,319,75,-12.572500729151045],[119,319,76,-12.59573591794924],[119,319,77,-12.599469907053535],[119,319,78,-12.585059313731819],[119,319,79,-12.551996738920728],[120,-64,64,22.880499462433974],[120,-64,65,22.922006986730555],[120,-64,66,22.962637500797157],[120,-64,67,23.001502426299687],[120,-64,68,23.027259407011805],[120,-64,69,23.040462620940147],[120,-64,70,23.061621481281602],[120,-64,71,23.105948845393343],[120,-64,72,23.172695762305267],[120,-64,73,23.2505645366196],[120,-64,74,23.305727177695587],[120,-64,75,23.347188828662947],[120,-64,76,23.399411187104086],[120,-64,77,23.461927430620563],[120,-64,78,23.531375597782308],[120,-64,79,23.59457461400707],[120,-63,64,22.686316429695943],[120,-63,65,22.727014483705826],[120,-63,66,22.77088270054477],[120,-63,67,22.811120903227216],[120,-63,68,22.834727713122817],[120,-63,69,22.847264757133935],[120,-63,70,22.87023820236731],[120,-63,71,22.919394276334625],[120,-63,72,22.989858192637843],[120,-63,73,23.06852324085585],[120,-63,74,23.122972734922882],[120,-63,75,23.16041716120575],[120,-63,76,23.211887602311492],[120,-63,77,23.27031404659368],[120,-63,78,23.337226619938715],[120,-63,79,23.399854757599964],[120,-62,64,22.497902386569205],[120,-62,65,22.538513761244463],[120,-62,66,22.58540914506088],[120,-62,67,22.6214763133328],[120,-62,68,22.644207522634307],[120,-62,69,22.66083226455608],[120,-62,70,22.682205028326695],[120,-62,71,22.72933274924429],[120,-62,72,22.802707255779183],[120,-62,73,22.876808183487277],[120,-62,74,22.932701893231595],[120,-62,75,22.970706843946385],[120,-62,76,23.02056793914718],[120,-62,77,23.081071124098028],[120,-62,78,23.148080335117143],[120,-62,79,23.207285690498423],[120,-61,64,22.304574112240108],[120,-61,65,22.344799300427525],[120,-61,66,22.390508978245848],[120,-61,67,22.426075308941826],[120,-61,68,22.45102995390959],[120,-61,69,22.469426418932805],[120,-61,70,22.490766209760096],[120,-61,71,22.53670047922286],[120,-61,72,22.607056989769248],[120,-61,73,22.68052287987762],[120,-61,74,22.73536837319101],[120,-61,75,22.774012508549905],[120,-61,76,22.823695801449656],[120,-61,77,22.8842426745179],[120,-61,78,22.953470687558738],[120,-61,79,23.010989236261366],[120,-60,64,22.11173974322673],[120,-60,65,22.153032712625485],[120,-60,66,22.200243346713943],[120,-60,67,22.23489576641176],[120,-60,68,22.26335527500928],[120,-60,69,22.281832396570174],[120,-60,70,22.304788261967293],[120,-60,71,22.349665094542903],[120,-60,72,22.4185562979643],[120,-60,73,22.49036750473011],[120,-60,74,22.54493179965347],[120,-60,75,22.583907718489627],[120,-60,76,22.634863704998935],[120,-60,77,22.694129677207243],[120,-60,78,22.761659676024586],[120,-60,79,22.825955902303974],[120,-59,64,21.93838929178855],[120,-59,65,21.97681175536315],[120,-59,66,22.019583262958506],[120,-59,67,22.0543936249053],[120,-59,68,22.07769679814118],[120,-59,69,22.096035649961795],[120,-59,70,22.12143389470738],[120,-59,71,22.1595452099987],[120,-59,72,22.22442394483737],[120,-59,73,22.293432512941273],[120,-59,74,22.345066931057964],[120,-59,75,22.387278413088552],[120,-59,76,22.439553217882448],[120,-59,77,22.50369858526008],[120,-59,78,22.5753926609539],[120,-59,79,22.643185584897005],[120,-58,64,21.751050295901404],[120,-58,65,21.788596083776497],[120,-58,66,21.82981145728026],[120,-58,67,21.86398163105188],[120,-58,68,21.8899915917509],[120,-58,69,21.90514127496889],[120,-58,70,21.930309617610057],[120,-58,71,21.967555959407065],[120,-58,72,22.03128710145934],[120,-58,73,22.101848962695918],[120,-58,74,22.156821165712287],[120,-58,75,22.196931365453707],[120,-58,76,22.2481145648663],[120,-58,77,22.311645432772018],[120,-58,78,22.386803417909782],[120,-58,79,22.454728542929313],[120,-57,64,21.556300977326245],[120,-57,65,21.59284209564278],[120,-57,66,21.63479047065782],[120,-57,67,21.670610913544518],[120,-57,68,21.696977298144127],[120,-57,69,21.714299623368188],[120,-57,70,21.73594078821947],[120,-57,71,21.771592477451666],[120,-57,72,21.83493862750983],[120,-57,73,21.908416080629188],[120,-57,74,21.964871690342278],[120,-57,75,22.004676548833555],[120,-57,76,22.055321191709513],[120,-57,77,22.120452170687113],[120,-57,78,22.195487518587008],[120,-57,79,22.26356227008442],[120,-56,64,21.366661811150855],[120,-56,65,21.403944219233075],[120,-56,66,21.44563347657164],[120,-56,67,21.481517745773967],[120,-56,68,21.505053491311166],[120,-56,69,21.52462162835838],[120,-56,70,21.544638577895796],[120,-56,71,21.580920864732168],[120,-56,72,21.642181198437907],[120,-56,73,21.71728296897012],[120,-56,74,21.772733748793],[120,-56,75,21.813699429439406],[120,-56,76,21.86340288892831],[120,-56,77,21.929838476663456],[120,-56,78,22.005888998940986],[120,-56,79,22.07362341394451],[120,-55,64,21.17923644043192],[120,-55,65,21.21409771306648],[120,-55,66,21.255748430129],[120,-55,67,21.290032941691383],[120,-55,68,21.31512439800079],[120,-55,69,21.33399691498134],[120,-55,70,21.351610888444558],[120,-55,71,21.387344872368665],[120,-55,72,21.449696770852825],[120,-55,73,21.526992836722727],[120,-55,74,21.581071639928737],[120,-55,75,21.624343214039357],[120,-55,76,21.67443354203428],[120,-55,77,21.73974646822382],[120,-55,78,21.813907961989713],[120,-55,79,21.88107110349877],[120,-54,64,20.991296799952025],[120,-54,65,21.02390505976816],[120,-54,66,21.063831441897793],[120,-54,67,21.098519032671824],[120,-54,68,21.123835876271084],[120,-54,69,21.14165176017292],[120,-54,70,21.159663334580557],[120,-54,71,21.19490109602794],[120,-54,72,21.258853202714835],[120,-54,73,21.334600916300932],[120,-54,74,21.389314742402412],[120,-54,75,21.43153321277231],[120,-54,76,21.481266080278925],[120,-54,77,21.546537820565334],[120,-54,78,21.623976512094554],[120,-54,79,21.690538282481153],[120,-53,64,20.79478527039417],[120,-53,65,20.827638458236226],[120,-53,66,20.868157593146087],[120,-53,67,20.90364978348632],[120,-53,68,20.93003360753764],[120,-53,69,20.946395433206927],[120,-53,70,20.963994845628523],[120,-53,71,20.999617447425674],[120,-53,72,21.061491559148422],[120,-53,73,21.134838206180316],[120,-53,74,21.188875505036865],[120,-53,75,21.234613639529705],[120,-53,76,21.284583190091883],[120,-53,77,21.350609859698643],[120,-53,78,21.429150660072505],[120,-53,79,21.496101847346033],[120,-52,64,20.599884140205475],[120,-52,65,20.6369004421706],[120,-52,66,20.679777158338283],[120,-52,67,20.71494586678295],[120,-52,68,20.742606866700555],[120,-52,69,20.75954808386584],[120,-52,70,20.778620769174285],[120,-52,71,20.812789207900774],[120,-52,72,20.87043757193416],[120,-52,73,20.941297571489145],[120,-52,74,20.99706760938256],[120,-52,75,21.045549070685833],[120,-52,76,21.094595667729415],[120,-52,77,21.163526953793347],[120,-52,78,21.2412638083284],[120,-52,79,21.308022885621792],[120,-51,64,20.393744380185833],[120,-51,65,20.42692060321323],[120,-51,66,20.46439373090421],[120,-51,67,20.49828305985083],[120,-51,68,20.52162549830475],[120,-51,69,20.542197421288513],[120,-51,70,20.560387042567726],[120,-51,71,20.59508334716173],[120,-51,72,20.656052006816417],[120,-51,73,20.72782579029738],[120,-51,74,20.785398492423944],[120,-51,75,20.83498453997874],[120,-51,76,20.890928227661647],[120,-51,77,20.964772468346936],[120,-51,78,21.049540196468907],[120,-51,79,21.121839562504825],[120,-50,64,20.204615518585673],[120,-50,65,20.23460392430346],[120,-50,66,20.274857595743764],[120,-50,67,20.305692878340228],[120,-50,68,20.330884233095283],[120,-50,69,20.349910915621038],[120,-50,70,20.371423180338766],[120,-50,71,20.40545330822822],[120,-50,72,20.46464480304226],[120,-50,73,20.536296965425354],[120,-50,74,20.591158320112505],[120,-50,75,20.643141807045478],[120,-50,76,20.69858445921954],[120,-50,77,20.773312592237843],[120,-50,78,20.855847096987215],[120,-50,79,20.92858312651336],[120,-49,64,20.023145395863395],[120,-49,65,20.06279395869364],[120,-49,66,20.077245025937394],[120,-49,67,20.109807099527803],[120,-49,68,20.136355971898016],[120,-49,69,20.154999251513743],[120,-49,70,20.17698480095932],[120,-49,71,20.212762567103233],[120,-49,72,20.270219666545813],[120,-49,73,20.340957626940906],[120,-49,74,20.3966861373568],[120,-49,75,20.44655151655954],[120,-49,76,20.50355805226118],[120,-49,77,20.57882178652316],[120,-49,78,20.662830972857606],[120,-49,79,20.735486275545664],[120,-48,64,19.846758290788962],[120,-48,65,19.893714037627316],[120,-48,66,19.885859367305542],[120,-48,67,19.91923520778819],[120,-48,68,19.949107660662342],[120,-48,69,19.968429098774365],[120,-48,70,19.98929366165445],[120,-48,71,20.023243096498636],[120,-48,72,20.078544258940127],[120,-48,73,20.148445267847535],[120,-48,74,20.205324938910234],[120,-48,75,20.25196357402025],[120,-48,76,20.309540702265746],[120,-48,77,20.38388113165476],[120,-48,78,20.468707185112304],[120,-48,79,20.542583909870924],[120,-47,64,19.67326366840764],[120,-47,65,19.7158406099467],[120,-47,66,19.700330468070835],[120,-47,67,19.741977784434358],[120,-47,68,19.77314361019191],[120,-47,69,19.791826393673297],[120,-47,70,19.809151421963833],[120,-47,71,19.840957750141982],[120,-47,72,19.89132703015723],[120,-47,73,19.955933437613826],[120,-47,74,20.011520667054246],[120,-47,75,20.055579532887474],[120,-47,76,20.113360329476063],[120,-47,77,20.185025076816665],[120,-47,78,20.26944252877909],[120,-47,79,20.339987126345754],[120,-46,64,19.433556701505772],[120,-46,65,19.4869976884233],[120,-46,66,19.51259294655188],[120,-46,67,19.55714588260038],[120,-46,68,19.58562277915659],[120,-46,69,19.6057297026266],[120,-46,70,19.620567490963687],[120,-46,71,19.652198272785903],[120,-46,72,19.70310861959682],[120,-46,73,19.7665005829618],[120,-46,74,19.81868090687566],[120,-46,75,19.861487418999104],[120,-46,76,19.920832186856813],[120,-46,77,19.99138243125494],[120,-46,78,20.074225859581322],[120,-46,79,20.14553796715724],[120,-45,64,19.253308989114515],[120,-45,65,19.329277908192253],[120,-45,66,19.34182061636314],[120,-45,67,19.364627947057425],[120,-45,68,19.394957428024025],[120,-45,69,19.414935804355853],[120,-45,70,19.42723040494701],[120,-45,71,19.459761479100976],[120,-45,72,19.511053969801935],[120,-45,73,19.572445519883733],[120,-45,74,19.623430264434024],[120,-45,75,19.665381486124748],[120,-45,76,19.722217934376133],[120,-45,77,19.795995828098437],[120,-45,78,19.878059175461775],[120,-45,79,19.946394129313905],[120,-44,64,19.104891324352582],[120,-44,65,19.230361940012955],[120,-44,66,19.21286551565579],[120,-44,67,19.181341615522506],[120,-44,68,19.197266362240327],[120,-44,69,19.213806387107226],[120,-44,70,19.22545607656958],[120,-44,71,19.253469599677196],[120,-44,72,19.303312588387737],[120,-44,73,19.35846361067341],[120,-44,74,19.40936345520657],[120,-44,75,19.450144374685298],[120,-44,76,19.506217006515293],[120,-44,77,19.58053294391777],[120,-44,78,19.66274953737605],[120,-44,79,19.73490572122993],[120,-43,64,18.956204724758443],[120,-43,65,19.076955823001263],[120,-43,66,19.04330675635495],[120,-43,67,18.99715063029571],[120,-43,68,19.021461565707163],[120,-43,69,19.037599536685793],[120,-43,70,19.048297983119472],[120,-43,71,19.073717153820056],[120,-43,72,19.1232954462915],[120,-43,73,19.176123518138606],[120,-43,74,19.225580160105473],[120,-43,75,19.26519437611068],[120,-43,76,19.320545451592626],[120,-43,77,19.3910462137501],[120,-43,78,19.47132276842331],[120,-43,79,19.5443091191916],[120,-42,64,18.808400775226886],[120,-42,65,18.89391710172438],[120,-42,66,18.91388312203732],[120,-42,67,18.833552109281584],[120,-42,68,18.834375145653528],[120,-42,69,18.8492803049351],[120,-42,70,18.86331148732315],[120,-42,71,18.886383391072386],[120,-42,72,18.934419737582772],[120,-42,73,18.986752607616218],[120,-42,74,19.032414762783034],[120,-42,75,19.074333348981888],[120,-42,76,19.127142586418316],[120,-42,77,19.19839516285972],[120,-42,78,19.278435404144183],[120,-42,79,19.35101380013998],[120,-41,64,18.65710305348375],[120,-41,65,18.758473045968152],[120,-41,66,18.846893484835206],[120,-41,67,18.775382665537144],[120,-41,68,18.692527767116278],[120,-41,69,18.657568414783167],[120,-41,70,18.671215173289823],[120,-41,71,18.695821148134655],[120,-41,72,18.73996700300006],[120,-41,73,18.7909529014578],[120,-41,74,18.835081338675245],[120,-41,75,18.880927867657494],[120,-41,76,18.933496580212235],[120,-41,77,19.002777317853244],[120,-41,78,19.084335163527243],[120,-41,79,19.158791703827777],[120,-40,64,18.495500971328628],[120,-40,65,18.5882011952545],[120,-40,66,18.712520441484514],[120,-40,67,18.625622858348855],[120,-40,68,18.510460064585136],[120,-40,69,18.469828793238232],[120,-40,70,18.482193923109815],[120,-40,71,18.5069743963735],[120,-40,72,18.547066428615917],[120,-40,73,18.596551649056032],[120,-40,74,18.64178671327974],[120,-40,75,18.688273543776877],[120,-40,76,18.740650840865616],[120,-40,77,18.811553215881727],[120,-40,78,18.89440297917204],[120,-40,79,18.9690788803413],[120,-39,64,18.355033484337106],[120,-39,65,18.435502506576842],[120,-39,66,18.560938097193077],[120,-39,67,18.448436927030105],[120,-39,68,18.304073634477906],[120,-39,69,18.286029901265508],[120,-39,70,18.300022766472058],[120,-39,71,18.324242977251856],[120,-39,72,18.362163523616076],[120,-39,73,18.41281217619616],[120,-39,74,18.456310985268733],[120,-39,75,18.503312769459843],[120,-39,76,18.5572873110075],[120,-39,77,18.624508228932438],[120,-39,78,18.706758286332526],[120,-39,79,18.784201039785934],[120,-38,64,18.325301902989466],[120,-38,65,18.38040599599718],[120,-38,66,18.356396017490063],[120,-38,67,18.152418427567223],[120,-38,68,18.088508064517985],[120,-38,69,18.099964910192657],[120,-38,70,18.112735770121343],[120,-38,71,18.13516295213368],[120,-38,72,18.172091282837165],[120,-38,73,18.221915970256696],[120,-38,74,18.26613803604597],[120,-38,75,18.313390085951212],[120,-38,76,18.36607877961008],[120,-38,77,18.432142253444603],[120,-38,78,18.5149487228814],[120,-38,79,18.59438021822322],[120,-37,64,18.231008338747642],[120,-37,65,18.280193226438623],[120,-37,66,18.215691684456775],[120,-37,67,17.981984579255542],[120,-37,68,17.89715838630719],[120,-37,69,17.90592052935722],[120,-37,70,17.918545045786463],[120,-37,71,17.93939154293924],[120,-37,72,17.97728378764855],[120,-37,73,18.028378924222526],[120,-37,74,18.071562679568743],[120,-37,75,18.115220737544433],[120,-37,76,18.167872818983692],[120,-37,77,18.235559369310778],[120,-37,78,18.317281792468176],[120,-37,79,18.397168639794902],[120,-36,64,18.06824261191759],[120,-36,65,18.106720797878165],[120,-36,66,18.045482431264507],[120,-36,67,17.77281393983746],[120,-36,68,17.717371616643057],[120,-36,69,17.721714303532096],[120,-36,70,17.733682017946386],[120,-36,71,17.751596141523706],[120,-36,72,17.791675993402702],[120,-36,73,17.84132000181476],[120,-36,74,17.885431382511534],[120,-36,75,17.92645337998133],[120,-36,76,17.97859601784276],[120,-36,77,18.047678160137448],[120,-36,78,18.127525932519948],[120,-36,79,18.207703467779215],[120,-35,64,17.771646357275387],[120,-35,65,17.770598159612398],[120,-35,66,17.645245900024538],[120,-35,67,17.495946840489562],[120,-35,68,17.52057084706818],[120,-35,69,17.529713332937597],[120,-35,70,17.539215452039684],[120,-35,71,17.555897624889354],[120,-35,72,17.593463249695592],[120,-35,73,17.64131746705958],[120,-35,74,17.687100628879463],[120,-35,75,17.725200815054407],[120,-35,76,17.780439107694782],[120,-35,77,17.853157325724172],[120,-35,78,17.93660849605852],[120,-35,79,18.020422464076045],[120,-34,64,17.58260816008886],[120,-34,65,17.598520076822314],[120,-34,66,17.43790253691471],[120,-34,67,17.308596609570145],[120,-34,68,17.33298537806959],[120,-34,69,17.342102827663865],[120,-34,70,17.349122047550352],[120,-34,71,17.366692190100586],[120,-34,72,17.405100945606975],[120,-34,73,17.450357641205635],[120,-34,74,17.492126228106944],[120,-34,75,17.530328302036477],[120,-34,76,17.5868768331295],[120,-34,77,17.657542312966225],[120,-34,78,17.744409226296835],[120,-34,79,17.830025076841615],[120,-33,64,17.413621231599503],[120,-33,65,17.43196509710944],[120,-33,66,17.2815797957968],[120,-33,67,17.186767014889682],[120,-33,68,17.20696503752358],[120,-33,69,17.211134586946965],[120,-33,70,17.21348814892023],[120,-33,71,17.22824649080721],[120,-33,72,17.257323063313574],[120,-33,73,17.29798162456639],[120,-33,74,17.335285234966207],[120,-33,75,17.367234822100517],[120,-33,76,17.416511555213035],[120,-33,77,17.48504465228079],[120,-33,78,17.5684048060656],[120,-33,79,17.6486310716917],[120,-32,64,17.2259698065459],[120,-32,65,17.25018531300235],[120,-32,66,17.087199631105733],[120,-32,67,16.999374728386346],[120,-32,68,17.020704349432553],[120,-32,69,17.025169340900373],[120,-32,70,17.028009773611213],[120,-32,71,17.0410504774419],[120,-32,72,17.06807350428032],[120,-32,73,17.109686509745245],[120,-32,74,17.143024932920625],[120,-32,75,17.175640534470233],[120,-32,76,17.22616435453042],[120,-32,77,17.294298610688166],[120,-32,78,17.377829297340224],[120,-32,79,17.45685748234177],[120,-31,64,16.981703433431523],[120,-31,65,16.997119674709502],[120,-31,66,16.92123328258491],[120,-31,67,16.887422671136267],[120,-31,68,16.836751200317295],[120,-31,69,16.83979146517782],[120,-31,70,16.84239850203327],[120,-31,71,16.853883030875977],[120,-31,72,16.878821278961976],[120,-31,73,16.91966448758981],[120,-31,74,16.95378616984927],[120,-31,75,16.983846933927623],[120,-31,76,17.035760875180344],[120,-31,77,17.103066779634254],[120,-31,78,17.185303691576834],[120,-31,79,17.263346581070373],[120,-30,64,16.806032670119997],[120,-30,65,16.796246749393084],[120,-30,66,16.75112815180565],[120,-30,67,16.73184757537694],[120,-30,68,16.651742050792635],[120,-30,69,16.657065879441863],[120,-30,70,16.65683821050436],[120,-30,71,16.666518936185906],[120,-30,72,16.69133863636034],[120,-30,73,16.729645971301725],[120,-30,74,16.760933649927757],[120,-30,75,16.793642906190836],[120,-30,76,16.843843108471557],[120,-30,77,16.914614185097577],[120,-30,78,16.99202726413811],[120,-30,79,17.067883350199224],[120,-29,64,16.69187531915975],[120,-29,65,16.674389570548033],[120,-29,66,16.642509650958782],[120,-29,67,16.61395347829768],[120,-29,68,16.526767530722314],[120,-29,69,16.46678944278831],[120,-29,70,16.465025566296948],[120,-29,71,16.475709474154165],[120,-29,72,16.498117459251365],[120,-29,73,16.53330938962393],[120,-29,74,16.565004070640363],[120,-29,75,16.59751141711719],[120,-29,76,16.650534572052514],[120,-29,77,16.718999541733435],[120,-29,78,16.797399103783174],[120,-29,79,16.874146051915154],[120,-28,64,16.53010447851094],[120,-28,65,16.489830402746048],[120,-28,66,16.47576487132855],[120,-28,67,16.431596138903036],[120,-28,68,16.36142143097708],[120,-28,69,16.28276429521764],[120,-28,70,16.2809616866645],[120,-28,71,16.292393265861257],[120,-28,72,16.315592432317967],[120,-28,73,16.34695914931637],[120,-28,74,16.375488090023996],[120,-28,75,16.408335399486084],[120,-28,76,16.46256485761043],[120,-28,77,16.5301596465063],[120,-28,78,16.61106910028408],[120,-28,79,16.6861551561061],[120,-27,64,16.40903980490668],[120,-27,65,16.39597226765993],[120,-27,66,16.382125204242076],[120,-27,67,16.369522800559132],[120,-27,68,16.291883196856762],[120,-27,69,16.18579218891077],[120,-27,70,16.106067332973645],[120,-27,71,16.120353824898384],[120,-27,72,16.140920297682836],[120,-27,73,16.169468014097344],[120,-27,74,16.198863834124282],[120,-27,75,16.22736342915002],[120,-27,76,16.279492871461862],[120,-27,77,16.346478943377107],[120,-27,78,16.422805185923366],[120,-27,79,16.497315819545975],[120,-26,64,16.269970474774762],[120,-26,65,16.230418553292015],[120,-26,66,16.23330903185393],[120,-26,67,16.214285594506705],[120,-26,68,16.12852507904231],[120,-26,69,16.026473687973823],[120,-26,70,15.922075443936215],[120,-26,71,15.932074301760053],[120,-26,72,15.951464050633327],[120,-26,73,15.978504873169236],[120,-26,74,16.00742564746952],[120,-26,75,16.03714220482908],[120,-26,76,16.08662702493035],[120,-26,77,16.154074010151184],[120,-26,78,16.231563260037603],[120,-26,79,16.302758907161966],[120,-25,64,16.082680873720648],[120,-25,65,16.034577314038984],[120,-25,66,16.05542965566889],[120,-25,67,16.026004409551796],[120,-25,68,15.921281688169787],[120,-25,69,15.819659861588763],[120,-25,70,15.729499601509767],[120,-25,71,15.73787207579968],[120,-25,72,15.75830183643446],[120,-25,73,15.785619531157009],[120,-25,74,15.812566502928743],[120,-25,75,15.843111319638455],[120,-25,76,15.891738189595642],[120,-25,77,15.957048704144295],[120,-25,78,16.0373105491108],[120,-25,79,16.10832130332416],[120,-24,64,15.89780455850729],[120,-24,65,15.854730461522642],[120,-24,66,15.854136132394164],[120,-24,67,15.804126274047205],[120,-24,68,15.729247728676503],[120,-24,69,15.611041096224982],[120,-24,70,15.542264750593844],[120,-24,71,15.549203008965117],[120,-24,72,15.568847253991226],[120,-24,73,15.596359688913235],[120,-24,74,15.621751833123758],[120,-24,75,15.65030455756046],[120,-24,76,15.697189959613441],[120,-24,77,15.762053229679287],[120,-24,78,15.843488875662898],[120,-24,79,15.916834042748226],[120,-23,64,15.707708903876872],[120,-23,65,15.62547506405185],[120,-23,66,15.575315560764524],[120,-23,67,15.468397503735554],[120,-23,68,15.423851024910402],[120,-23,69,15.341486718357288],[120,-23,70,15.342223830780723],[120,-23,71,15.348910967536506],[120,-23,72,15.3672224675148],[120,-23,73,15.395893658326818],[120,-23,74,15.421031445610952],[120,-23,75,15.447896692007129],[120,-23,76,15.490297195278579],[120,-23,77,15.55709762053608],[120,-23,78,15.63755737678483],[120,-23,79,15.714351938272443],[120,-22,64,15.527221371905439],[120,-22,65,15.43940698325009],[120,-22,66,15.349394486048471],[120,-22,67,15.242136671949705],[120,-22,68,15.20820233041834],[120,-22,69,15.154921004858474],[120,-22,70,15.154401106151337],[120,-22,71,15.15966041150763],[120,-22,72,15.176749758912566],[120,-22,73,15.205476197569626],[120,-22,74,15.228357181947963],[120,-22,75,15.254738180300707],[120,-22,76,15.29646129476853],[120,-22,77,15.363162965540273],[120,-22,78,15.44255932980366],[120,-22,79,15.518509415919096],[120,-21,64,15.340138764757835],[120,-21,65,15.348061816492141],[120,-21,66,15.209893409165733],[120,-21,67,15.085731423597442],[120,-21,68,15.072533290148732],[120,-21,69,14.964489281470208],[120,-21,70,14.96466607326742],[120,-21,71,14.965545239713846],[120,-21,72,14.983788897203356],[120,-21,73,15.009787747051694],[120,-21,74,15.031496493682221],[120,-21,75,15.057238125440694],[120,-21,76,15.099045105200263],[120,-21,77,15.16519767737717],[120,-21,78,15.241184872437078],[120,-21,79,15.317722743491093],[120,-20,64,15.138817819381428],[120,-20,65,15.12695394096123],[120,-20,66,15.012792782551944],[120,-20,67,14.872796887080153],[120,-20,68,14.86362117471871],[120,-20,69,14.77856140878708],[120,-20,70,14.778831398615553],[120,-20,71,14.77990409656755],[120,-20,72,14.795149384078858],[120,-20,73,14.82256895643994],[120,-20,74,14.842589515391419],[120,-20,75,14.865498768353833],[120,-20,76,14.907274915559157],[120,-20,77,14.973392678018095],[120,-20,78,15.049708351586755],[120,-20,79,15.12398521221698],[120,-19,64,14.942898573997274],[120,-19,65,14.97670956257801],[120,-19,66,14.923706870656634],[120,-19,67,14.814126992240933],[120,-19,68,14.785219482605864],[120,-19,69,14.713490011081639],[120,-19,70,14.657854589908592],[120,-19,71,14.627023272591638],[120,-19,72,14.620460634328852],[120,-19,73,14.637635342865202],[120,-19,74,14.657723287236454],[120,-19,75,14.68061600082572],[120,-19,76,14.723287414025279],[120,-19,77,14.788892173967872],[120,-19,78,14.865121510774697],[120,-19,79,14.93976118626867],[120,-18,64,14.742441049704542],[120,-18,65,14.772096256690126],[120,-18,66,14.69951460921609],[120,-18,67,14.644562619887678],[120,-18,68,14.612088041281751],[120,-18,69,14.557060388587853],[120,-18,70,14.499244863147052],[120,-18,71,14.47757047293224],[120,-18,72,14.48868720511025],[120,-18,73,14.464355342028268],[120,-18,74,14.468736127450708],[120,-18,75,14.490107444021419],[120,-18,76,14.53154869752684],[120,-18,77,14.59466196662615],[120,-18,78,14.672716762269314],[120,-18,79,14.748664043226913],[120,-17,64,14.542211061146999],[120,-17,65,14.571779671506487],[120,-17,66,14.496020645364972],[120,-17,67,14.465976886736046],[120,-17,68,14.436695514189156],[120,-17,69,14.379564118279905],[120,-17,70,14.328446722239926],[120,-17,71,14.313119777360354],[120,-17,72,14.327902255877971],[120,-17,73,14.273554196121093],[120,-17,74,14.27731428696157],[120,-17,75,14.295937320112],[120,-17,76,14.336783226143814],[120,-17,77,14.40112525036212],[120,-17,78,14.479540411140704],[120,-17,79,14.554681097224375],[120,-16,64,14.35356800139296],[120,-16,65,14.383765911342921],[120,-16,66,14.37351017069777],[120,-16,67,14.342448947894743],[120,-16,68,14.303865614040241],[120,-16,69,14.290812506254255],[120,-16,70,14.244725212886687],[120,-16,71,14.247240680074192],[120,-16,72,14.246266142809759],[120,-16,73,14.176842699209724],[120,-16,74,14.08717935542369],[120,-16,75,14.105671827065317],[120,-16,76,14.145305208707718],[120,-16,77,14.208704495979347],[120,-16,78,14.286609292483535],[120,-16,79,14.362434938492477],[120,-15,64,14.16088914051833],[120,-15,65,14.190054405017436],[120,-15,66,14.143808717664655],[120,-15,67,14.139803105493343],[120,-15,68,14.113367658386831],[120,-15,69,14.106938682038729],[120,-15,70,14.067806519368656],[120,-15,71,14.081870625697897],[120,-15,72,14.054773785728193],[120,-15,73,13.991376510211001],[120,-15,74,13.888950597518162],[120,-15,75,13.907677627735799],[120,-15,76,13.949156260353185],[120,-15,77,14.010510770740705],[120,-15,78,14.089837619913839],[120,-15,79,14.16621366534139],[120,-14,64,13.856880159755478],[120,-14,65,13.886212320612481],[120,-14,66,13.8446014671427],[120,-14,67,13.84828926474281],[120,-14,68,13.856559993538328],[120,-14,69,13.850711210960554],[120,-14,70,13.826210668157396],[120,-14,71,13.8426143925191],[120,-14,72,13.821272398151596],[120,-14,73,13.772877154908734],[120,-14,74,13.6984713686696],[120,-14,75,13.71482747065946],[120,-14,76,13.7555495415033],[120,-14,77,13.818485658399727],[120,-14,78,13.898697182202946],[120,-14,79,13.975651283046874],[120,-13,64,13.665383802892313],[120,-13,65,13.693987502387328],[120,-13,66,13.686863052618047],[120,-13,67,13.706460132251342],[120,-13,68,13.71613135061878],[120,-13,69,13.702505633210846],[120,-13,70,13.713089738785492],[120,-13,71,13.703041428677615],[120,-13,72,13.695216567934533],[120,-13,73,13.629553887946617],[120,-13,74,13.52167615556524],[120,-13,75,13.518691257544592],[120,-13,76,13.563210187489789],[120,-13,77,13.625011729109376],[120,-13,78,13.703852960121408],[120,-13,79,13.780869170431789],[120,-12,64,13.462315443444524],[120,-12,65,13.490708017905417],[120,-12,66,13.4706861012618],[120,-12,67,13.50670255476706],[120,-12,68,13.50480046103868],[120,-12,69,13.50425568536833],[120,-12,70,13.521552585635561],[120,-12,71,13.498573128533426],[120,-12,72,13.50815244333099],[120,-12,73,13.408537357198295],[120,-12,74,13.328800214843737],[120,-12,75,13.329002892493866],[120,-12,76,13.37439785315559],[120,-12,77,13.436351464608084],[120,-12,78,13.512016110690778],[120,-12,79,13.590256827885453],[120,-11,64,13.270683049876235],[120,-11,65,13.298204990453208],[120,-11,66,13.3279676704095],[120,-11,67,13.370095588864704],[120,-11,68,13.369773092746856],[120,-11,69,13.377506170741704],[120,-11,70,13.392981442737586],[120,-11,71,13.362122090177257],[120,-11,72,13.35638664864133],[120,-11,73,13.25394595814437],[120,-11,74,13.152196745346341],[120,-11,75,13.164750985194434],[120,-11,76,13.207564340381598],[120,-11,77,13.26911525001176],[120,-11,78,13.342852755494373],[120,-11,79,13.423377279786592],[120,-10,64,13.069641658775781],[120,-10,65,13.097249479023132],[120,-10,66,13.105780387258],[120,-10,67,13.163695346097846],[120,-10,68,13.167410335031935],[120,-10,69,13.170158505291651],[120,-10,70,13.192651888026315],[120,-10,71,13.16455987023261],[120,-10,72,13.152904783994705],[120,-10,73,13.070484988272383],[120,-10,74,12.95460310396736],[120,-10,75,12.97553283730297],[120,-10,76,13.01851201908761],[120,-10,77,13.078870854249663],[120,-10,78,13.152037401074399],[120,-10,79,13.233444853275701],[120,-9,64,12.887260931401023],[120,-9,65,12.912501365427392],[120,-9,66,12.90376072709767],[120,-9,67,12.968569501413208],[120,-9,68,12.985750910030172],[120,-9,69,12.974866663521027],[120,-9,70,13.005818180073845],[120,-9,71,12.974596907241933],[120,-9,72,12.950699013666998],[120,-9,73,12.892681490848892],[120,-9,74,12.766812077524984],[120,-9,75,12.789482356089078],[120,-9,76,12.828386930608312],[120,-9,77,12.887865615345007],[120,-9,78,12.962328286599757],[120,-9,79,13.043975155613012],[120,-8,64,12.697934251335612],[120,-8,65,12.720118880912752],[120,-8,66,12.673815123742822],[120,-8,67,12.744111013168745],[120,-8,68,12.780447255947278],[120,-8,69,12.769843337043048],[120,-8,70,12.795993097958428],[120,-8,71,12.74785692144603],[120,-8,72,12.702144230124643],[120,-8,73,12.654058352594204],[120,-8,74,12.581479885760329],[120,-8,75,12.600264546292868],[120,-8,76,12.640636112821504],[120,-8,77,12.696900693347112],[120,-8,78,12.772320920914325],[120,-8,79,12.852684224333958],[120,-7,64,12.505135971921186],[120,-7,65,12.507412097876575],[120,-7,66,12.475621968773702],[120,-7,67,12.524398552665007],[120,-7,68,12.588566954716578],[120,-7,69,12.581908024302003],[120,-7,70,12.597103691484378],[120,-7,71,12.547037646305382],[120,-7,72,12.490710274385734],[120,-7,73,12.446651187148477],[120,-7,74,12.392866352476055],[120,-7,75,12.41168272850481],[120,-7,76,12.449418973953854],[120,-7,77,12.505760742442112],[120,-7,78,12.581447230646658],[120,-7,79,12.660159241421857],[120,-6,64,12.310788601059656],[120,-6,65,12.28300765468191],[120,-6,66,12.25935175362681],[120,-6,67,12.319404514325878],[120,-6,68,12.388533410691503],[120,-6,69,12.396987525271976],[120,-6,70,12.412300824764625],[120,-6,71,12.345912044565367],[120,-6,72,12.292946443241625],[120,-6,73,12.231533934423936],[120,-6,74,12.203388873519595],[120,-6,75,12.219544655291362],[120,-6,76,12.256707070462012],[120,-6,77,12.314970811947433],[120,-6,78,12.390027708690079],[120,-6,79,12.468414939466719],[120,-5,64,12.08930803795752],[120,-5,65,12.064829479705647],[120,-5,66,12.07570447787645],[120,-5,67,12.172525812967583],[120,-5,68,12.23760206333115],[120,-5,69,12.259772555209437],[120,-5,70,12.270058142042469],[120,-5,71,12.247603711169909],[120,-5,72,12.22783694462524],[120,-5,73,12.178930637882209],[120,-5,74,12.085369447467146],[120,-5,75,12.023201405742428],[120,-5,76,12.061658036310797],[120,-5,77,12.118952396688455],[120,-5,78,12.194002572974796],[120,-5,79,12.274518868974038],[120,-4,64,11.860627417840266],[120,-4,65,11.848110274418012],[120,-4,66,11.864350623411573],[120,-4,67,11.954139744546044],[120,-4,68,12.018259795570783],[120,-4,69,12.048383826658156],[120,-4,70,12.059913630431351],[120,-4,71,12.039543931185493],[120,-4,72,12.004556098436415],[120,-4,73,11.96774853945706],[120,-4,74,11.895190125980092],[120,-4,75,11.828437670511793],[120,-4,76,11.868333155268479],[120,-4,77,11.92569725452115],[120,-4,78,12.000964875341731],[120,-4,79,12.082022288910148],[120,-3,64,11.686880204707473],[120,-3,65,11.675228705052687],[120,-3,66,11.705972647687048],[120,-3,67,11.791076489125821],[120,-3,68,11.858765553423321],[120,-3,69,11.874197500868144],[120,-3,70,11.87837957531316],[120,-3,71,11.88648488374792],[120,-3,72,11.857888113999337],[120,-3,73,11.811501281413818],[120,-3,74,11.761938963475732],[120,-3,75,11.629133449815534],[120,-3,76,11.66753525900756],[120,-3,77,11.727388112080197],[120,-3,78,11.804653810920167],[120,-3,79,11.88356349305964],[120,-2,64,11.47634784012498],[120,-2,65,11.46400051873465],[120,-2,66,11.499519482842674],[120,-2,67,11.58860658928159],[120,-2,68,11.645748388321769],[120,-2,69,11.676180522494857],[120,-2,70,11.681862602433606],[120,-2,71,11.69034317595096],[120,-2,72,11.656165970150541],[120,-2,73,11.594014805796132],[120,-2,74,11.556240668342832],[120,-2,75,11.44017968424556],[120,-2,76,11.47378856625531],[120,-2,77,11.534366419934285],[120,-2,78,11.612668142204337],[120,-2,79,11.691382870530703],[120,-1,64,11.299480112770235],[120,-1,65,11.286614217825953],[120,-1,66,11.307826912015441],[120,-1,67,11.38240872857325],[120,-1,68,11.422717309190547],[120,-1,69,11.463483450577948],[120,-1,70,11.48890510702142],[120,-1,71,11.496004017226031],[120,-1,72,11.480196926391065],[120,-1,73,11.418202644847522],[120,-1,74,11.396734995645977],[120,-1,75,11.301765086636873],[120,-1,76,11.280097613460448],[120,-1,77,11.3418521522058],[120,-1,78,11.419455943939143],[120,-1,79,11.499832621740603],[120,0,64,11.075107729054983],[120,0,65,11.101680961825386],[120,0,66,11.137624786276499],[120,0,67,11.172890950777813],[120,0,68,11.193173846209117],[120,0,69,11.189962006925098],[120,0,70,11.172204373725785],[120,0,71,11.157877840128139],[120,0,72,11.151811380484217],[120,0,73,11.14746989936191],[120,0,74,11.14876471550585],[120,0,75,11.1617394459073],[120,0,76,11.192561924768537],[120,0,77,11.254149957143618],[120,0,78,11.329136277864668],[120,0,79,11.408572840656683],[120,1,64,10.88172229961684],[120,1,65,10.908216484919194],[120,1,66,10.946219419263468],[120,1,67,10.983811616168333],[120,1,68,11.002729250375863],[120,1,69,11.000280307365351],[120,1,70,10.982950223828551],[120,1,71,10.967996348729452],[120,1,72,10.961033990528929],[120,1,73,10.955208927818742],[120,1,74,10.954904403598405],[120,1,75,10.966422605462453],[120,1,76,10.999728344297761],[120,1,77,11.060402625783345],[120,1,78,11.136458908486112],[120,1,79,11.218081900799797],[120,2,64,10.690666130955243],[120,2,65,10.715677447820235],[120,2,66,10.756406878456236],[120,2,67,10.793639846341783],[120,2,68,10.810526924831985],[120,2,69,10.809961756604318],[120,2,70,10.790190931534708],[120,2,71,10.776607258460036],[120,2,72,10.767189816342674],[120,2,73,10.761706257998592],[120,2,74,10.762032895659223],[120,2,75,10.773405585362823],[120,2,76,10.808059712340823],[120,2,77,10.869068438422204],[120,2,78,10.947256891096542],[120,2,79,11.029737065765348],[120,3,64,10.4979348995821],[120,3,65,10.522619742435595],[120,3,66,10.563216373709649],[120,3,67,10.602631204477314],[120,3,68,10.61851222452984],[120,3,69,10.616799621613891],[120,3,70,10.599631513741285],[120,3,71,10.586128570202222],[120,3,72,10.573590084497464],[120,3,73,10.568310466430527],[120,3,74,10.56894152269503],[120,3,75,10.581294309234165],[120,3,76,10.617348111336554],[120,3,77,10.677309296201228],[120,3,78,10.75476509280497],[120,3,79,10.839719340907852],[120,4,64,10.307009130850957],[120,4,65,10.330596849073059],[120,4,66,10.372221082025844],[120,4,67,10.411403417146722],[120,4,68,10.428489483225103],[120,4,69,10.423585409469688],[120,4,70,10.40613250876211],[120,4,71,10.393211536517281],[120,4,72,10.379675970122682],[120,4,73,10.376348475379952],[120,4,74,10.375663109769405],[120,4,75,10.388388441235255],[120,4,76,10.42463219978935],[120,4,77,10.484179241874351],[120,4,78,10.563851957254453],[120,4,79,10.646354860575794],[120,5,64,10.116518270086205],[120,5,65,10.139386376745303],[120,5,66,10.181003645626241],[120,5,67,10.219995434748544],[120,5,68,10.237079626080282],[120,5,69,10.231457249869104],[120,5,70,10.213599285140022],[120,5,71,10.20037181244284],[120,5,72,10.187057205481802],[120,5,73,10.185538311772099],[120,5,74,10.183068298347553],[120,5,75,10.197711971974769],[120,5,76,10.233957458269929],[120,5,77,10.293711048358118],[120,5,78,10.372906946583136],[120,5,79,10.456791062797151],[120,6,64,9.925066392835639],[120,6,65,9.948768166729593],[120,6,66,9.988813044563248],[120,6,67,10.029981163134046],[120,6,68,10.04895699858695],[120,6,69,10.040115663004496],[120,6,70,10.021238670359118],[120,6,71,10.006080720383004],[120,6,72,9.996210805785953],[120,6,73,9.994001010271283],[120,6,74,9.99366214129104],[120,6,75,10.005606374927009],[120,6,76,10.042166850137567],[120,6,77,10.100763779266137],[120,6,78,10.18332242324023],[120,6,79,10.266915367967117],[120,7,64,9.735934705291779],[120,7,65,9.757641110363062],[120,7,66,9.797651451618622],[120,7,67,9.838855670793714],[120,7,68,9.85669050900081],[120,7,69,9.850920070864419],[120,7,70,9.833034158191087],[120,7,71,9.816905677852269],[120,7,72,9.807791971556828],[120,7,73,9.800550960451174],[120,7,74,9.803102098545118],[120,7,75,9.813596719754681],[120,7,76,9.84859307228368],[120,7,77,9.90995188453874],[120,7,78,9.990966851969223],[120,7,79,10.07552334900699],[120,8,64,9.548493283369307],[120,8,65,9.571916917847535],[120,8,66,9.609571525470944],[120,8,67,9.650716108276649],[120,8,68,9.669553472413488],[120,8,69,9.667211573997303],[120,8,70,9.652278648071391],[120,8,71,9.637056720731236],[120,8,72,9.626758056954074],[120,8,73,9.61726890452447],[120,8,74,9.61877142255541],[120,8,75,9.6303544673139],[120,8,76,9.665456166555646],[120,8,77,9.728721156688383],[120,8,78,9.81062060407021],[120,8,79,9.893924246223586],[120,9,64,9.365754029015418],[120,9,65,9.38548578653642],[120,9,66,9.416791975850256],[120,9,67,9.45090744221394],[120,9,68,9.468701612703214],[120,9,69,9.46753937954022],[120,9,70,9.454014480447226],[120,9,71,9.440462506097385],[120,9,72,9.429746738746825],[120,9,73,9.419307882736966],[120,9,74,9.420076628741196],[120,9,75,9.433088204162296],[120,9,76,9.470270583854886],[120,9,77,9.535563579300135],[120,9,78,9.620818824035126],[120,9,79,9.709644598247724],[120,10,64,9.173788153629083],[120,10,65,9.194941307387152],[120,10,66,9.227406363504238],[120,10,67,9.259226061995365],[120,10,68,9.279838971138577],[120,10,69,9.277336998815874],[120,10,70,9.261672573447099],[120,10,71,9.249110559268965],[120,10,72,9.235762000258774],[120,10,73,9.22990218693865],[120,10,74,9.228509282306876],[120,10,75,9.23796622465062],[120,10,76,9.275511424820792],[120,10,77,9.342115535118344],[120,10,78,9.431064795015176],[120,10,79,9.51908196503968],[120,11,64,8.981771978223268],[120,11,65,9.001656187723643],[120,11,66,9.03449078822009],[120,11,67,9.066016809748067],[120,11,68,9.089660605370026],[120,11,69,9.08654491269684],[120,11,70,9.071027187734396],[120,11,71,9.057501723032036],[120,11,72,9.044595686986698],[120,11,73,9.038462826194761],[120,11,74,9.03548283235415],[120,11,75,9.044859216388936],[120,11,76,9.082158693644168],[120,11,77,9.149286938532045],[120,11,78,9.239174401113097],[120,11,79,9.327825964048815],[120,12,64,8.794972784538846],[120,12,65,8.811008515555297],[120,12,66,8.84221159182058],[120,12,67,8.874299534716663],[120,12,68,8.89624714643315],[120,12,69,8.8961553091095],[120,12,70,8.87903394467337],[120,12,71,8.862716850438401],[120,12,72,8.850491217233495],[120,12,73,8.842798119991139],[120,12,74,8.84282651952666],[120,12,75,8.849680005858565],[120,12,76,8.886937845498354],[120,12,77,8.95357255731258],[120,12,78,9.043339106130576],[120,12,79,9.133373700899703],[120,13,64,8.594833670527514],[120,13,65,8.6186270664153],[120,13,66,8.655391524732345],[120,13,67,8.692899274190461],[120,13,68,8.716259484373595],[120,13,69,8.715653453717922],[120,13,70,8.696644106290618],[120,13,71,8.68203440922503],[120,13,72,8.672853447013795],[120,13,73,8.663663912215137],[120,13,74,8.663116392454597],[120,13,75,8.668936460261094],[120,13,76,8.703472100043372],[120,13,77,8.763573020198775],[120,13,78,8.84246525281997],[120,13,79,8.930735159010462],[120,14,64,8.404080391940088],[120,14,65,8.425971721122481],[120,14,66,8.464404591181056],[120,14,67,8.501102306273213],[120,14,68,8.523871382811256],[120,14,69,8.5252897859106],[120,14,70,8.50690162555946],[120,14,71,8.495069321772462],[120,14,72,8.484429177183378],[120,14,73,8.473350242783043],[120,14,74,8.471826853890448],[120,14,75,8.479108266452679],[120,14,76,8.51310918344959],[120,14,77,8.569503219894424],[120,14,78,8.647742881380879],[120,14,79,8.735033249034188],[120,15,64,8.214376203712943],[120,15,65,8.235525487199732],[120,15,66,8.272706506008062],[120,15,67,8.311752256570333],[120,15,68,8.333730384924973],[120,15,69,8.334894282768543],[120,15,70,8.317614292123197],[120,15,71,8.308117077615863],[120,15,72,8.294153808324399],[120,15,73,8.28240020434111],[120,15,74,8.278549570342427],[120,15,75,8.287828107355931],[120,15,76,8.321698745197537],[120,15,77,8.375892038356024],[120,15,78,8.454141175682288],[120,15,79,8.537493881843218],[120,16,64,8.018454843528614],[120,16,65,8.041275368263744],[120,16,66,8.08125525677825],[120,16,67,8.12622331672408],[120,16,68,8.149256499674081],[120,16,69,8.150898129884663],[120,16,70,8.137089813523845],[120,16,71,8.125072837671588],[120,16,72,8.107707747918843],[120,16,73,8.095085141062853],[120,16,74,8.093248741783523],[120,16,75,8.10352393832124],[120,16,76,8.138282467123421],[120,16,77,8.195244287347306],[120,16,78,8.270714234033818],[120,16,79,8.354243931382946],[120,17,64,7.82595093775766],[120,17,65,7.84998135417521],[120,17,66,7.89137436746241],[120,17,67,7.935375134356956],[120,17,68,7.959863513712426],[120,17,69,7.9619603363489135],[120,17,70,7.94977669433707],[120,17,71,7.933731616783676],[120,17,72,7.916049583702811],[120,17,73,7.902270235952046],[120,17,74,7.897106980115035],[120,17,75,7.907863365138359],[120,17,76,7.942872683858331],[120,17,77,8.001160724745011],[120,17,78,8.077048700835492],[120,17,79,8.159841097585478],[120,18,64,7.633845719468715],[120,18,65,7.658497189960937],[120,18,66,7.699972608644239],[120,18,67,7.745552776787119],[120,18,68,7.769584166322721],[120,18,69,7.772937047513296],[120,18,70,7.761038161158285],[120,18,71,7.742686593383837],[120,18,72,7.722680744808914],[120,18,73,7.706508621568503],[120,18,74,7.701226969446608],[120,18,75,7.713573371669147],[120,18,76,7.749835666784897],[120,18,77,7.805534215329527],[120,18,78,7.8833304406695515],[120,18,79,7.964976751056859],[120,19,64,7.442013785176116],[120,19,65,7.466950352116933],[120,19,66,7.509983041038865],[120,19,67,7.5539170337814445],[120,19,68,7.578745770065056],[120,19,69,7.5802830842694],[120,19,70,7.569932273154782],[120,19,71,7.550280535393962],[120,19,72,7.52776180039639],[120,19,73,7.50932059230299],[120,19,74,7.505155630811645],[120,19,75,7.51890345647667],[120,19,76,7.555780618899064],[120,19,77,7.610227825593017],[120,19,78,7.686691848127923],[120,19,79,7.7721762556241485],[120,20,64,7.251480239963718],[120,20,65,7.276534920727548],[120,20,66,7.316865398651725],[120,20,67,7.359470533666547],[120,20,68,7.381959516441637],[120,20,69,7.384256448224589],[120,20,70,7.372417453278709],[120,20,71,7.356261256094223],[120,20,72,7.3292200900767215],[120,20,73,7.309883409203458],[120,20,74,7.306462098732513],[120,20,75,7.320619501047548],[120,20,76,7.3565934171206795],[120,20,77,7.412429299583708],[120,20,78,7.488065826395841],[120,20,79,7.5733477079402025],[120,21,64,7.071755687871702],[120,21,65,7.097401388072834],[120,21,66,7.139364254249809],[120,21,67,7.180110918224301],[120,21,68,7.200594830679016],[120,21,69,7.200679870828174],[120,21,70,7.183413088655751],[120,21,71,7.163578470783408],[120,21,72,7.129054752029666],[120,21,73,7.10440866703768],[120,21,74,7.10136927125879],[120,21,75,7.114947682793795],[120,21,76,7.147870494193974],[120,21,77,7.206479667329422],[120,21,78,7.282683288159744],[120,21,79,7.367231963254504],[120,22,64,6.879028763336952],[120,22,65,6.905600980283001],[120,22,66,6.9491295875542525],[120,22,67,6.988172878824423],[120,22,68,7.011492176737824],[120,22,69,7.012441437390895],[120,22,70,6.99312020034821],[120,22,71,6.970402721447798],[120,22,72,6.93908087154584],[120,22,73,6.913057053370178],[120,22,74,6.908237410827709],[120,22,75,6.919860002011884],[120,22,76,6.951243030935166],[120,22,77,7.0083602887979195],[120,22,78,7.088754397532146],[120,22,79,7.1746653441961605],[120,23,64,6.688047010807264],[120,23,65,6.713376041870618],[120,23,66,6.758915883003645],[120,23,67,6.797551066932674],[120,23,68,6.819990071266128],[120,23,69,6.82009322624289],[120,23,70,6.799231204079868],[120,23,71,6.777679246112318],[120,23,72,6.745733145925694],[120,23,73,6.720320874546946],[120,23,74,6.713746704003388],[120,23,75,6.725042955160216],[120,23,76,6.754559794787008],[120,23,77,6.811865023573889],[120,23,78,6.893223691218508],[120,23,79,6.97932972599267],[120,24,64,6.506188504066745],[120,24,65,6.529027327313782],[120,24,66,6.573322191289347],[120,24,67,6.612256550446919],[120,24,68,6.636247839934387],[120,24,69,6.635419573961019],[120,24,70,6.616251429823713],[120,24,71,6.593659811278095],[120,24,72,6.561333284896106],[120,24,73,6.536866214894389],[120,24,74,6.5298643585596015],[120,24,75,6.540198305687517],[120,24,76,6.5685178189055415],[120,24,77,6.62487721589603],[120,24,78,6.707587346413541],[120,24,79,6.794526036508605],[120,25,64,6.323669653718758],[120,25,65,6.339970654217004],[120,25,66,6.377617005557344],[120,25,67,6.412298880977251],[120,25,68,6.4347928370768095],[120,25,69,6.432346840323895],[120,25,70,6.416077576216022],[120,25,71,6.398599340323777],[120,25,72,6.373897917293874],[120,25,73,6.355845800506204],[120,25,74,6.347158079647102],[120,25,75,6.356701088986656],[120,25,76,6.383873348234729],[120,25,77,6.438078821613361],[120,25,78,6.514846969515386],[120,25,79,6.602523330876475],[120,26,64,6.132582435501431],[120,26,65,6.14885061328937],[120,26,66,6.1860858244483055],[120,26,67,6.22062079080506],[120,26,68,6.2410843197453625],[120,26,69,6.239469630267535],[120,26,70,6.2214804314511385],[120,26,71,6.203950174921521],[120,26,72,6.17996014847272],[120,26,73,6.162477151232419],[120,26,74,6.153611041634155],[120,26,75,6.162802555004272],[120,26,76,6.188567281285919],[120,26,77,6.24463684167435],[120,26,78,6.321696321564275],[120,26,79,6.407221182559149],[120,27,64,5.9441190533163955],[120,27,65,5.960182871176598],[120,27,66,5.992504276725696],[120,27,67,6.029062362897701],[120,27,68,6.051448120517719],[120,27,69,6.045604748470945],[120,27,70,6.0284995000638935],[120,27,71,6.007384234102307],[120,27,72,5.98466236514839],[120,27,73,5.968344715078817],[120,27,74,5.9573383825359105],[120,27,75,5.967373475829817],[120,27,76,5.996276858120317],[120,27,77,6.052141859345319],[120,27,78,6.129355758888135],[120,27,79,6.212712180610809],[120,28,64,5.7536057310402535],[120,28,65,5.766035918617336],[120,28,66,5.797868066676628],[120,28,67,5.833423256330915],[120,28,68,5.856097034395016],[120,28,69,5.850968587394795],[120,28,70,5.833224066808216],[120,28,71,5.8098341233015205],[120,28,72,5.786095946398962],[120,28,73,5.765623856140907],[120,28,74,5.754387289842221],[120,28,75,5.76349405175458],[120,28,76,5.797090595093807],[120,28,77,5.851916224246643],[120,28,78,5.926331135647122],[120,28,79,6.010137761032506],[120,29,64,5.561599864506823],[120,29,65,5.572898790964723],[120,29,66,5.604711703275697],[120,29,67,5.638446346261845],[120,29,68,5.66199690496972],[120,29,69,5.654967835390219],[120,29,70,5.636407927421371],[120,29,71,5.6146749129852225],[120,29,72,5.587289109040274],[120,29,73,5.565695532339692],[120,29,74,5.554477221024039],[120,29,75,5.563593238427621],[120,29,76,5.598512000164419],[120,29,77,5.654228831126122],[120,29,78,5.732006943655089],[120,29,79,5.816630688386979],[120,30,64,5.3733700071402],[120,30,65,5.384626348942788],[120,30,66,5.414017808909671],[120,30,67,5.447001423776549],[120,30,68,5.470027483333787],[120,30,69,5.463120005010685],[120,30,70,5.441299151379554],[120,30,71,5.418990770304883],[120,30,72,5.39160582852053],[120,30,73,5.366132321115559],[120,30,74,5.355754107646433],[120,30,75,5.364216318224412],[120,30,76,5.39990252743891],[120,30,77,5.45858106561041],[120,30,78,5.536132470335735],[120,30,79,5.620957357049422],[120,31,64,5.179922762583746],[120,31,65,5.191772355947511],[120,31,66,5.223864698378938],[120,31,67,5.25525518585971],[120,31,68,5.277631470058661],[120,31,69,5.27350030527657],[120,31,70,5.250184432218157],[120,31,71,5.224294488878297],[120,31,72,5.194456292723509],[120,31,73,5.170464645033102],[120,31,74,5.158203263270316],[120,31,75,5.166776693240455],[120,31,76,5.200712805046628],[120,31,77,5.261138387158086],[120,31,78,5.3416734209262176],[120,31,79,5.427006639520744],[120,32,64,4.996829503453956],[120,32,65,5.008559675408698],[120,32,66,5.041328457081784],[120,32,67,5.075991534552142],[120,32,68,5.098010823779451],[120,32,69,5.093923666886923],[120,32,70,5.069044477634743],[120,32,71,5.0426504692007255],[120,32,72,5.01313039454581],[120,32,73,4.985943236836243],[120,32,74,4.97232049644304],[120,32,75,4.978884815381424],[120,32,76,5.013140336748037],[120,32,77,5.07463413357285],[120,32,78,5.157544206007409],[120,32,79,5.2421274993499045],[120,33,64,4.811009618136371],[120,33,65,4.824436378819694],[120,33,66,4.857820753505779],[120,33,67,4.897138891259514],[120,33,68,4.918163317397728],[120,33,69,4.913813376393919],[120,33,70,4.886761887297436],[120,33,71,4.8537063803793385],[120,33,72,4.816749797224343],[120,33,73,4.783252266083392],[120,33,74,4.764927718389267],[120,33,75,4.770410526740412],[120,33,76,4.804738850777226],[120,33,77,4.874441590154878],[120,33,78,4.9605793461648835],[120,33,79,5.05067000989788],[120,34,64,4.618677380578257],[120,34,65,4.632039445946616],[120,34,66,4.664632915863995],[120,34,67,4.707415499601874],[120,34,68,4.72832405550241],[120,34,69,4.7232002241234845],[120,34,70,4.695360032523868],[120,34,71,4.6628716216320365],[120,34,72,4.623196971270517],[120,34,73,4.586636260686193],[120,34,74,4.568276495304888],[120,34,75,4.574172837841894],[120,34,76,4.610533590331631],[120,34,77,4.680256965000835],[120,34,78,4.764598285785843],[120,34,79,4.858515611006646],[120,35,64,4.424429529282029],[120,35,65,4.438374567014767],[120,35,66,4.470822272392963],[120,35,67,4.5155885719189195],[120,35,68,4.53756666414412],[120,35,69,4.532240239524836],[120,35,70,4.504772832683826],[120,35,71,4.471608895887494],[120,35,72,4.430363665506182],[120,35,73,4.391783267220794],[120,35,74,4.374581009785479],[120,35,75,4.381779096041269],[120,35,76,4.417100475651914],[120,35,77,4.484986004595298],[120,35,78,4.570331344594105],[120,35,79,4.665366534285437],[120,36,64,4.22468634881095],[120,36,65,4.237666451847055],[120,36,66,4.271345868249215],[120,36,67,4.3171150068275095],[120,36,68,4.340449017111952],[120,36,69,4.335399323642635],[120,36,70,4.309035951508339],[120,36,71,4.273389261125848],[120,36,72,4.232116758474362],[120,36,73,4.192032326674282],[120,36,74,4.1739954699635815],[120,36,75,4.18038205305538],[120,36,76,4.215126753057394],[120,36,77,4.2834759822755855],[120,36,78,4.3677833041529865],[120,36,79,4.4605868561288675],[120,37,64,4.025916468043027],[120,37,65,4.035716701626858],[120,37,66,4.070763934032438],[120,37,67,4.110331882207257],[120,37,68,4.132851526914817],[120,37,69,4.125873337319228],[120,37,70,4.1021163335576745],[120,37,71,4.0704818557359825],[120,37,72,4.030935939411861],[120,37,73,3.996476265907705],[120,37,74,3.977415721334175],[120,37,75,3.9858942417235994],[120,37,76,4.021807353946796],[120,37,77,4.089169601759203],[120,37,78,4.172145231319407],[120,37,79,4.262376862950276],[120,38,64,3.835522711942272],[120,38,65,3.8453871778105313],[120,38,66,3.8797369829734785],[120,38,67,3.9184364852455458],[120,38,68,3.940983678023686],[120,38,69,3.933032165319552],[120,38,70,3.910292949149167],[120,38,71,3.8759944061733758],[120,38,72,3.8367859640114483],[120,38,73,3.8017321444307375],[120,38,74,3.7820291010552514],[120,38,75,3.791215734328302],[120,38,76,3.8257912060641677],[120,38,77,3.8905698499392205],[120,38,78,3.974863117767779],[120,38,79,4.0678936227542],[120,39,64,3.64410609260623],[120,39,65,3.65548162603787],[120,39,66,3.6905789963712023],[120,39,67,3.727271365880877],[120,39,68,3.7472042747149823],[120,39,69,3.742601922798384],[120,39,70,3.7177537314002786],[120,39,71,3.683798976234378],[120,39,72,3.641738751728337],[120,39,73,3.606871448169474],[120,39,74,3.5882732734493863],[120,39,75,3.5955553693221867],[120,39,76,3.629198139373367],[120,39,77,3.6932008851710654],[120,39,78,3.7798193766430477],[120,39,79,3.872889840205943],[120,40,64,3.4655144242667792],[120,40,65,3.476965791533813],[120,40,66,3.5097344313341097],[120,40,67,3.549762435066386],[120,40,68,3.571438633420425],[120,40,69,3.5677098812279655],[120,40,70,3.5408010233878175],[120,40,71,3.5076316558845075],[120,40,72,3.4631864713957827],[120,40,73,3.4245083547908735],[120,40,74,3.4052159175884187],[120,40,75,3.4118522833107003],[120,40,76,3.445585609792641],[120,40,77,3.5111958803149848],[120,40,78,3.5954254300970176],[120,40,79,3.6897980883258774],[120,41,64,3.2732497422679185],[120,41,65,3.285541391572516],[120,41,66,3.3203834371628687],[120,41,67,3.3611519476963627],[120,41,68,3.383178911694345],[120,41,69,3.3785359814573184],[120,41,70,3.3513041623801008],[120,41,71,3.3177727210436117],[120,41,72,3.272145910608393],[120,41,73,3.23372532890874],[120,41,74,3.2106433150732214],[120,41,75,3.21730503330715],[120,41,76,3.248371771925599],[120,41,77,3.314166084664908],[120,41,78,3.4003985792002878],[120,41,79,3.4967625524267256],[120,42,64,3.079878749173829],[120,42,65,3.0956121403479027],[120,42,66,3.1303978373993813],[120,42,67,3.1708891424689116],[120,42,68,3.194907904614647],[120,42,69,3.18929054136609],[120,42,70,3.1615944066438315],[120,42,71,3.1278592258149893],[120,42,72,3.0830448701763356],[120,42,73,3.0430866180312965],[120,42,74,3.0183091057224596],[120,42,75,3.0229613890159697],[120,42,76,3.0541909002073293],[120,42,77,3.116497093157204],[120,42,78,3.206272662644594],[120,42,79,3.3043139401112755],[120,43,64,2.887705445774583],[120,43,65,2.9030114430676437],[120,43,66,2.9385396982342247],[120,43,67,2.9798417613573944],[120,43,68,3.004906808449583],[120,43,69,2.9998121139375975],[120,43,70,2.9710148386092214],[120,43,71,2.935630324970906],[120,43,72,2.889757059469116],[120,43,73,2.8484894448303306],[120,43,74,2.825757586903474],[120,43,75,2.828765347561241],[120,43,76,2.8605785580230405],[120,43,77,2.9210609346840433],[120,43,78,3.0094079930091127],[120,43,79,3.1087314725381123],[120,44,64,2.6889906808685495],[120,44,65,2.7031559675525636],[120,44,66,2.740809761790782],[120,44,67,2.7823732186565233],[120,44,68,2.8069531033972464],[120,44,69,2.8003127672732524],[120,44,70,2.772034203987003],[120,44,71,2.73631788228255],[120,44,72,2.6887246109709606],[120,44,73,2.646256032179326],[120,44,74,2.625376732478856],[120,44,75,2.626443178810289],[120,44,76,2.658916782990388],[120,44,77,2.7200114773715858],[120,44,78,2.805969531834369],[120,44,79,2.903142539352044],[120,45,64,2.4910891903940815],[120,45,65,2.510307158939199],[120,45,66,2.554814344312585],[120,45,67,2.6042854266592625],[120,45,68,2.634769609667653],[120,45,69,2.6332617118791304],[120,45,70,2.6036301794240613],[120,45,71,2.567227095379703],[120,45,72,2.511199774433279],[120,45,73,2.4627264430527323],[120,45,74,2.4406698937347846],[120,45,75,2.4404753763749816],[120,45,76,2.4706489393273716],[120,45,77,2.5326694580816094],[120,45,78,2.6136292468592974],[120,45,79,2.7073445513928096],[120,46,64,2.2975479372382317],[120,46,65,2.318397199077473],[120,46,66,2.3624449814253663],[120,46,67,2.4090358199901494],[120,46,68,2.441009828205991],[120,46,69,2.440670152821542],[120,46,70,2.41672514522132],[120,46,71,2.3761668940203746],[120,46,72,2.319799875156205],[120,46,73,2.2701575098615336],[120,46,74,2.2453541614159596],[120,46,75,2.2477818594208956],[120,46,76,2.2768680817627076],[120,46,77,2.3366956997735686],[120,46,78,2.4199550391456643],[120,46,79,2.512042947487814],[120,47,64,2.106741597896761],[120,47,65,2.1273129641189814],[120,47,66,2.1704408208911223],[120,47,67,2.2146712530326815],[120,47,68,2.2470437091224604],[120,47,69,2.249171662446479],[120,47,70,2.227023653379794],[120,47,71,2.186327634272421],[120,47,72,2.127774138420794],[120,47,73,2.0741781426664807],[120,47,74,2.049233466126632],[120,47,75,2.052038897533895],[120,47,76,2.079827886407604],[120,47,77,2.141147239796344],[120,47,78,2.2264358504861583],[120,47,79,2.3171758900710273],[120,48,64,1.9301327442097835],[120,48,65,1.9487922388437373],[120,48,66,1.9910060913850651],[120,48,67,2.0370738634419263],[120,48,68,2.0699060771987163],[120,48,69,2.073289597388511],[120,48,70,2.0492769223795233],[120,48,71,2.009777880369734],[120,48,72,1.9498121565423576],[120,48,73,1.8930636790391844],[120,48,74,1.866455672174776],[120,48,75,1.869174983309429],[120,48,76,1.8997056878056113],[120,48,77,1.959818539258857],[120,48,78,2.045727888507873],[120,48,79,2.1392232832821536],[120,49,64,1.7261294612489713],[120,49,65,1.7459747987313152],[120,49,66,1.7875841083807573],[120,49,67,1.8337375494691992],[120,49,68,1.8690547010052179],[120,49,69,1.8717083442698694],[120,49,70,1.8479405559378763],[120,49,71,1.8127738250151706],[120,49,72,1.76072255425829],[120,49,73,1.7105790109501848],[120,49,74,1.6851234386825764],[120,49,75,1.6854590278699144],[120,49,76,1.717051324106372],[120,49,77,1.7766816605951403],[120,49,78,1.8620982830098172],[120,49,79,1.9564860615618616],[120,50,64,1.5332052526243816],[120,50,65,1.5516989457979247],[120,50,66,1.5928358342519213],[120,50,67,1.6399267796023898],[120,50,68,1.6752077636026603],[120,50,69,1.6791662248481551],[120,50,70,1.6523765306760216],[120,50,71,1.616799852827152],[120,50,72,1.568364884899627],[120,50,73,1.5188189180596898],[120,50,74,1.4922975765184816],[120,50,75,1.492881983277187],[120,50,76,1.524886611806472],[120,50,77,1.5858546781831635],[120,50,78,1.6717936995069358],[120,50,79,1.7662935731309781],[120,51,64,1.339022023929149],[120,51,65,1.358105082966354],[120,51,66,1.3994798381985973],[120,51,67,1.4461199407443608],[120,51,68,1.4810010176460189],[120,51,69,1.4845757862664624],[120,51,70,1.4545337360048352],[120,51,71,1.4211661357849485],[120,51,72,1.3726708401424017],[120,51,73,1.3272125404375115],[120,51,74,1.3001642608504114],[120,51,75,1.2993643195879092],[120,51,76,1.3307914556829625],[120,51,77,1.393159985723972],[120,51,78,1.478801270346701],[120,51,79,1.5746949007697082],[120,52,64,1.1817929887367427],[120,52,65,1.199462868193978],[120,52,66,1.2399843446100483],[120,52,67,1.2878742582276104],[120,52,68,1.3235647725086357],[120,52,69,1.3261096015893452],[120,52,70,1.299866744815553],[120,52,71,1.264202763070099],[120,52,72,1.215214365210856],[120,52,73,1.1695684208025825],[120,52,74,1.1414547237899642],[120,52,75,1.1429838424001257],[120,52,76,1.1723699730497747],[120,52,77,1.2390846597568432],[120,52,78,1.3196286623914715],[120,52,79,1.4165134272558928],[120,53,64,0.9959594318781454],[120,53,65,1.0082898444928623],[120,53,66,1.0455109413041948],[120,53,67,1.090883611053975],[120,53,68,1.123515935907879],[120,53,69,1.1244587537575303],[120,53,70,1.0972738487688387],[120,53,71,1.062071473096197],[120,53,72,1.0084541526321162],[120,53,73,0.9619271015760529],[120,53,74,0.9376421060910618],[120,53,75,0.9400601259216508],[120,53,76,0.9712208996716366],[120,53,77,1.0357358041204467],[120,53,78,1.1189340979807707],[120,53,79,1.2155617344805612],[120,54,64,0.8032186427003548],[120,54,65,0.8139405729089718],[120,54,66,0.8496562058372082],[120,54,67,0.8951241792407478],[120,54,68,0.9289036377676241],[120,54,69,0.9303460938087081],[120,54,70,0.9041350926157998],[120,54,71,0.865641574961442],[120,54,72,0.8127856989369926],[120,54,73,0.7668354484961996],[120,54,74,0.740540095531235],[120,54,75,0.7463758561002632],[120,54,76,0.7782785856732329],[120,54,77,0.8406317746013854],[120,54,78,0.9244452130466281],[120,54,79,1.0182614030049972],[120,55,64,0.6102050200800849],[120,55,65,0.6196685614690002],[120,55,66,0.6563176111505743],[120,55,67,0.7024012591926698],[120,55,68,0.7326899124395099],[120,55,69,0.7322715648109651],[120,55,70,0.7075062185094277],[120,55,71,0.6702986962172299],[120,55,72,0.6162994252358336],[120,55,73,0.569024273740089],[120,55,74,0.5433837330878798],[120,55,75,0.5493424051140163],[120,55,76,0.5827757229683618],[120,55,77,0.646506977516088],[120,55,78,0.7292913930030064],[120,55,79,0.8225665452725661],[120,56,64,0.4297215499153938],[120,56,65,0.44138499152059807],[120,56,66,0.4774796193605171],[120,56,67,0.5244401342928251],[120,56,68,0.5520503241013098],[120,56,69,0.5499027176648752],[120,56,70,0.5264326751487292],[120,56,71,0.48899259569492154],[120,56,72,0.43578464081832424],[120,56,73,0.3851152921990815],[120,56,74,0.3624370727099258],[120,56,75,0.36918356075286746],[120,56,76,0.4012912346054155],[120,56,77,0.46284183950988267],[120,56,78,0.5473876223381078],[120,56,79,0.6406528639122903],[120,57,64,0.2302468655068902],[120,57,65,0.2418801922818718],[120,57,66,0.2803572738175482],[120,57,67,0.32594946722533613],[120,57,68,0.35296036576372],[120,57,69,0.3483691712846581],[120,57,70,0.3211741882755662],[120,57,71,0.28438094341799136],[120,57,72,0.22873167903875669],[120,57,73,0.17771270297043854],[120,57,74,0.15835793556860472],[120,57,75,0.16277114564340495],[120,57,76,0.19292822128683354],[120,57,77,0.256050364485934],[120,57,78,0.34327408294630324],[120,57,79,0.43407933671360766],[120,58,64,0.08163136640178296],[120,58,65,0.0911243541620392],[120,58,66,0.1265350288064871],[120,58,67,0.17400222248399025],[120,58,68,0.19937699138117715],[120,58,69,0.19335649456157683],[120,58,70,0.16546266756462516],[120,58,71,0.12719949826160667],[120,58,72,0.07617088001149531],[120,58,73,0.03425992690696153],[120,58,74,0.03463841529622112],[120,58,75,0.038783109598257565],[120,58,76,0.046209609566689236],[120,58,77,0.09787240613611349],[120,58,78,0.18208857615313417],[120,58,79,0.27417857281601554],[120,59,64,0.02094639202410041],[120,59,65,0.016002838602840075],[120,59,66,0.020540326137224313],[120,59,67,0.029223385556921583],[120,59,68,0.03276535831852956],[120,59,69,0.025523005028477957],[120,59,70,0.016727906549543828],[120,59,71,0.008743206785317925],[120,59,72,-0.0014434484510336826],[120,59,73,-0.014767726174276699],[120,59,74,-0.0158204289904266],[120,59,75,-0.011440270276862341],[120,59,76,-0.0034863677192617237],[120,59,77,0.015766730178580268],[120,59,78,0.03703887757291513],[120,59,79,0.0769730870850063],[120,60,64,-0.033767517752317094],[120,60,65,-0.03858638632911719],[120,60,66,-0.03651514220937414],[120,60,67,-0.029773332477572717],[120,60,68,-0.024080116257113968],[120,60,69,-0.030702505196659124],[120,60,70,-0.0385216674990434],[120,60,71,-0.04748491400817949],[120,60,72,-0.0595190586167267],[120,60,73,-0.07139061609774115],[120,60,74,-0.07246749588477383],[120,60,75,-0.06726426379237992],[120,60,76,-0.056281683973720575],[120,60,77,-0.0422839947124754],[120,60,78,-0.020244808097854144],[120,60,79,0.0021235485679134414],[120,61,64,-0.06377273910532665],[120,61,65,-0.07054634283643965],[120,61,66,-0.07399416834505995],[120,61,67,-0.07151029055942708],[120,61,68,-0.06829969515396699],[120,61,69,-0.07409935524448709],[120,61,70,-0.08228011089167445],[120,61,71,-0.0944873736234277],[120,61,72,-0.10837555222731093],[120,61,73,-0.12002064346319338],[120,61,74,-0.12037647958456398],[120,61,75,-0.11558357685891314],[120,61,76,-0.10053022669124295],[120,61,77,-0.08482075656467793],[120,61,78,-0.06402960986022566],[120,61,79,-0.03708417938211428],[120,62,64,-0.11088005644072813],[120,62,65,-0.11941576529889036],[120,62,66,-0.12180950966431627],[120,62,67,-0.11893508667455022],[120,62,68,-0.11492978929985236],[120,62,69,-0.12025463894591736],[120,62,70,-0.12827758016945506],[120,62,71,-0.14142400841126496],[120,62,72,-0.15656569750881943],[120,62,73,-0.16876718877356126],[120,62,74,-0.16977438981049378],[120,62,75,-0.1644449246400448],[120,62,76,-0.15102540381778867],[120,62,77,-0.13240249915027247],[120,62,78,-0.11154670455037727],[120,62,79,-0.08282971698167804],[120,63,64,-0.23036518165048891],[120,63,65,-0.24089310535987868],[120,63,66,-0.240260726478562],[120,63,67,-0.23836527736099988],[120,63,68,-0.23240342098416567],[120,63,69,-0.23556980302835281],[120,63,70,-0.2446971314869115],[120,63,71,-0.2557215761707019],[120,63,72,-0.27326032802834593],[120,63,73,-0.28460307383816635],[120,63,74,-0.2850034174016328],[120,63,75,-0.2771930407889704],[120,63,76,-0.2646761525705332],[120,63,77,-0.2449225273903773],[120,63,78,-0.22417869849447208],[120,63,79,-0.19499583161914807],[120,64,64,-0.26903434362440726],[120,64,65,-0.2772699258125309],[120,64,66,-0.2785463433453577],[120,64,67,-0.2756779323606626],[120,64,68,-0.27004947849945904],[120,64,69,-0.27337077353681105],[120,64,70,-0.2841410162108232],[120,64,71,-0.2943069794023814],[120,64,72,-0.3113640611859343],[120,64,73,-0.3262025245911661],[120,64,74,-0.32720560619130445],[120,64,75,-0.3172712151351153],[120,64,76,-0.30604623792385205],[120,64,77,-0.2867096196740519],[120,64,78,-0.26380902619931457],[120,64,79,-0.23705210222064943],[120,65,64,-0.3167983521172283],[120,65,65,-0.3242650468189846],[120,65,66,-0.32663130320847916],[120,65,67,-0.32518740232618876],[120,65,68,-0.32070784468463737],[120,65,69,-0.3214449174196371],[120,65,70,-0.3314343628882742],[120,65,71,-0.3442264693388611],[120,65,72,-0.3603482117596141],[120,65,73,-0.3765910114617349],[120,65,74,-0.37868830627062494],[120,65,75,-0.3690070985856962],[120,65,76,-0.3593168654383459],[120,65,77,-0.33989286798760265],[120,65,78,-0.31432984773297284],[120,65,79,-0.28572187845191976],[120,66,64,-0.3693167258415181],[120,66,65,-0.3791337407203785],[120,66,66,-0.38220556554825325],[120,66,67,-0.3805456904254634],[120,66,68,-0.3777726452359782],[120,66,69,-0.3763897650582485],[120,66,70,-0.3874654256404228],[120,66,71,-0.3988578840949782],[120,66,72,-0.4166897633255402],[120,66,73,-0.4321924270882179],[120,66,74,-0.43707196918225566],[120,66,75,-0.42658777292174554],[120,66,76,-0.41516940782295025],[120,66,77,-0.3955789564305192],[120,66,78,-0.37068770460581735],[120,66,79,-0.34037718834234515],[120,67,64,-0.4203581381534753],[120,67,65,-0.42851592430487334],[120,67,66,-0.4312327422861296],[120,67,67,-0.4322362606331863],[120,67,68,-0.4272363210110786],[120,67,69,-0.42633211355229206],[120,67,70,-0.43680431856674656],[120,67,71,-0.4476625611456102],[120,67,72,-0.4662496302933419],[120,67,73,-0.4841163316546334],[120,67,74,-0.48728765534943397],[120,67,75,-0.4814217668328949],[120,67,76,-0.4630556039731597],[120,67,77,-0.4440993789186771],[120,67,78,-0.41905300096716624],[120,67,79,-0.3887219271803047],[120,68,64,-0.5645662943289422],[120,68,65,-0.5693997800892844],[120,68,66,-0.5722524888774223],[120,68,67,-0.5719260192103695],[120,68,68,-0.5690595291753461],[120,68,69,-0.5696640437602972],[120,68,70,-0.5803973381436585],[120,68,71,-0.5906077431670268],[120,68,72,-0.6078908281329627],[120,68,73,-0.6236912252040326],[120,68,74,-0.6284003621634652],[120,68,75,-0.6231836158160869],[120,68,76,-0.6064818023731456],[120,68,77,-0.584067634323813],[120,68,78,-0.5612252759586758],[120,68,79,-0.5300694778040315],[120,69,64,-0.6261814297827246],[120,69,65,-0.6265003002483678],[120,69,66,-0.6198289936647731],[120,69,67,-0.6125218530112454],[120,69,68,-0.6045782802478677],[120,69,69,-0.6019874435421234],[120,69,70,-0.6085484256039657],[120,69,71,-0.6246978944382234],[120,69,72,-0.6431140723942375],[120,69,73,-0.6619461930556454],[120,69,74,-0.6681973306785165],[120,69,75,-0.6632481178780024],[120,69,76,-0.6488853540041245],[120,69,77,-0.6241906211140898],[120,69,78,-0.5992160709815504],[120,69,79,-0.5677302468355906],[120,70,64,-0.6763448886889062],[120,70,65,-0.6768951670867815],[120,70,66,-0.6721882814791386],[120,70,67,-0.6634135671595089],[120,70,68,-0.6530022127975604],[120,70,69,-0.6504115693218809],[120,70,70,-0.6568985139005097],[120,70,71,-0.6717932811428972],[120,70,72,-0.6925542392534743],[120,70,73,-0.7126235957035774],[120,70,74,-0.7186513534725321],[120,70,75,-0.7132298173582863],[120,70,76,-0.7001780789966012],[120,70,77,-0.6757765485055498],[120,70,78,-0.6485312802118383],[120,70,79,-0.6175833173767922],[120,71,64,-0.7163632571616594],[120,71,65,-0.7187617596928731],[120,71,66,-0.711537139012671],[120,71,67,-0.7014391773017884],[120,71,68,-0.691498395720339],[120,71,69,-0.6893339957880316],[120,71,70,-0.6956670216676033],[120,71,71,-0.7110977180243813],[120,71,72,-0.7314373357949286],[120,71,73,-0.7507858314724217],[120,71,74,-0.7568405539666814],[120,71,75,-0.7536238641368891],[120,71,76,-0.743310719844729],[120,71,77,-0.7193584868489521],[120,71,78,-0.6926264962425406],[120,71,79,-0.6612913600506868],[120,72,64,-0.7669469340473377],[120,72,65,-0.770412190270942],[120,72,66,-0.7637993435307278],[120,72,67,-0.7531948492099937],[120,72,68,-0.7431890377344678],[120,72,69,-0.7387161382099706],[120,72,70,-0.7447623692031696],[120,72,71,-0.7581116233638365],[120,72,72,-0.7793561822797551],[120,72,73,-0.8003414924195044],[120,72,74,-0.8078585356597591],[120,72,75,-0.8059301866904869],[120,72,76,-0.7964416450129952],[120,72,77,-0.7739655814076709],[120,72,78,-0.7458439778456637],[120,72,79,-0.7145592491681673],[120,73,64,-0.8323267176521804],[120,73,65,-0.8348323924539112],[120,73,66,-0.8271099304374101],[120,73,67,-0.8141084384155703],[120,73,68,-0.8051021880219423],[120,73,69,-0.8005627150061865],[120,73,70,-0.8035752262721144],[120,73,71,-0.81353152044557],[120,73,72,-0.8271031858544954],[120,73,73,-0.8419318356346231],[120,73,74,-0.848763771567244],[120,73,75,-0.8457636898068666],[120,73,76,-0.838014683714268],[120,73,77,-0.8240641316986146],[120,73,78,-0.8027845763824315],[120,73,79,-0.7802762784569164],[120,74,64,-0.893342068573244],[120,74,65,-0.8913636770725849],[120,74,66,-0.8853401932066907],[120,74,67,-0.8721865232428633],[120,74,68,-0.8620566591271025],[120,74,69,-0.8589166156180081],[120,74,70,-0.8623798122908868],[120,74,71,-0.871668059492794],[120,74,72,-0.8838791079614146],[120,74,73,-0.8999523042695573],[120,74,74,-0.9051731439525219],[120,74,75,-0.9024403127887726],[120,74,76,-0.8948418126269451],[120,74,77,-0.8813648543150125],[120,74,78,-0.8628995832684261],[120,74,79,-0.8402179073845635],[120,75,64,-0.9440784626121033],[120,75,65,-0.9436492694075086],[120,75,66,-0.9372640684807019],[120,75,67,-0.923036434989063],[120,75,68,-0.9148472826373273],[120,75,69,-0.9106010622348698],[120,75,70,-0.913459558853065],[120,75,71,-0.9240654691953363],[120,75,72,-0.9343816203930777],[120,75,73,-0.948966927215529],[120,75,74,-0.9552651571613631],[120,75,75,-0.9542003070309251],[120,75,76,-0.9464720875649786],[120,75,77,-0.9333163585993834],[120,75,78,-0.9167105049971656],[120,75,79,-0.895079530192294],[120,76,64,-0.989734959486818],[120,76,65,-0.99223177208141],[120,76,66,-0.9845148931465705],[120,76,67,-0.9709008378273145],[120,76,68,-0.9622752366515146],[120,76,69,-0.9573452755109169],[120,76,70,-0.9594396934178385],[120,76,71,-0.971230252070756],[120,76,72,-0.983422105754439],[120,76,73,-0.9961693353575681],[120,76,74,-1.0040903612781438],[120,76,75,-1.0032879240903185],[120,76,76,-0.9958875724388438],[120,76,77,-0.9827105495978785],[120,76,78,-0.9665219428162691],[120,76,79,-0.943730848836354],[120,77,64,-1.0391362559037747],[120,77,65,-1.0442422153690565],[120,77,66,-1.0397110345762814],[120,77,67,-1.0257247033940111],[120,77,68,-1.0169040351427934],[120,77,69,-1.0129429788693505],[120,77,70,-1.0175894435984838],[120,77,71,-1.0297729462147442],[120,77,72,-1.0438386225923433],[120,77,73,-1.0585247734513852],[120,77,74,-1.0658906652756912],[120,77,75,-1.0639634378006],[120,77,76,-1.0545348833337629],[120,77,77,-1.0404670923242496],[120,77,78,-1.0270959625129392],[120,77,79,-1.0031010901124533],[120,78,64,-1.092006372750281],[120,78,65,-1.0992464744417707],[120,78,66,-1.0901169751164772],[120,78,67,-1.075563336506725],[120,78,68,-1.0638405520442875],[120,78,69,-1.060764916366652],[120,78,70,-1.0672589938138786],[120,78,71,-1.0779571291705365],[120,78,72,-1.0959070675909286],[120,78,73,-1.1084497946895955],[120,78,74,-1.1171853330163406],[120,78,75,-1.114953546932024],[120,78,76,-1.1065981408913428],[120,78,77,-1.0945286483701435],[120,78,78,-1.0805524966371325],[120,78,79,-1.0577248731500104],[120,79,64,-1.1339780982650227],[120,79,65,-1.1397073957910921],[120,79,66,-1.1303434268600483],[120,79,67,-1.1132694816412427],[120,79,68,-1.103518797823132],[120,79,69,-1.1005293919551837],[120,79,70,-1.1075594004349645],[120,79,71,-1.1197731189472666],[120,79,72,-1.1361874959870732],[120,79,73,-1.1494632664634368],[120,79,74,-1.15914322687255],[120,79,75,-1.1588690951785918],[120,79,76,-1.1518326443779312],[120,79,77,-1.1377150529073867],[120,79,78,-1.1235955047145956],[120,79,79,-1.101193257567176],[120,80,64,-1.1853951230110547],[120,80,65,-1.1877793476940743],[120,80,66,-1.1763501062988146],[120,80,67,-1.161680996870064],[120,80,68,-1.153853114428212],[120,80,69,-1.148028414029695],[120,80,70,-1.156671897153076],[120,80,71,-1.1699699766054312],[120,80,72,-1.1890568672466222],[120,80,73,-1.2036197289126411],[120,80,74,-1.212197509965481],[120,80,75,-1.214038226307804],[120,80,76,-1.2083100972982361],[120,80,77,-1.189543298118599],[120,80,78,-1.1754804869416864],[120,80,79,-1.1542145921952638],[120,81,64,-1.2231695114838748],[120,81,65,-1.2263965592546293],[120,81,66,-1.2132233673632904],[120,81,67,-1.1978968948092699],[120,81,68,-1.1903080131759138],[120,81,69,-1.1870985135083882],[120,81,70,-1.1979301545210128],[120,81,71,-1.2152099354856996],[120,81,72,-1.2384616784587532],[120,81,73,-1.2562261856191181],[120,81,74,-1.2691931274179984],[120,81,75,-1.269110806088492],[120,81,76,-1.2635971051861412],[120,81,77,-1.2475318789625385],[120,81,78,-1.2329171708282205],[120,81,79,-1.2137724219915609],[120,82,64,-1.2781244771562663],[120,82,65,-1.2833602283580137],[120,82,66,-1.269064528120078],[120,82,67,-1.2540447824074368],[120,82,68,-1.2444093734991746],[120,82,69,-1.245867662498125],[120,82,70,-1.2540918243540404],[120,82,71,-1.272392144315561],[120,82,72,-1.2949025377208971],[120,82,73,-1.3157284540182308],[120,82,74,-1.3277322344248534],[120,82,75,-1.3268866268803112],[120,82,76,-1.3199498427414165],[120,82,77,-1.3047266106551725],[120,82,78,-1.2898235678090406],[120,82,79,-1.27096867082497],[120,83,64,-1.3292156051962083],[120,83,65,-1.334156443123003],[120,83,66,-1.3195852132947363],[120,83,67,-1.3052606084859826],[120,83,68,-1.2942792589717005],[120,83,69,-1.2944104132635348],[120,83,70,-1.3045406249252225],[120,83,71,-1.3237109605178454],[120,83,72,-1.3476466777019491],[120,83,73,-1.3700148666357905],[120,83,74,-1.3788556158265706],[120,83,75,-1.3797197065616085],[120,83,76,-1.3736143649656989],[120,83,77,-1.3566430431804628],[120,83,78,-1.341052938847769],[120,83,79,-1.322483366328939],[120,84,64,-1.3739646942641395],[120,84,65,-1.3807123164032302],[120,84,66,-1.3675596868049766],[120,84,67,-1.3501581164277199],[120,84,68,-1.3399248120001268],[120,84,69,-1.3411405987529155],[120,84,70,-1.354317439027257],[120,84,71,-1.3752109797729446],[120,84,72,-1.400460990509063],[120,84,73,-1.4200590995979314],[120,84,74,-1.4308033067510963],[120,84,75,-1.4344988300191688],[120,84,76,-1.4276423434064311],[120,84,77,-1.4091087544444785],[120,84,78,-1.3937555876125596],[120,84,79,-1.3721936074887966],[120,85,64,-1.4445488263250295],[120,85,65,-1.448564434634535],[120,85,66,-1.43781733946559],[120,85,67,-1.4185739695339616],[120,85,68,-1.4079958203272003],[120,85,69,-1.410748138332774],[120,85,70,-1.4259314784478636],[120,85,71,-1.4427145077025785],[120,85,72,-1.463670636025009],[120,85,73,-1.4808886372436556],[120,85,74,-1.4954067078218822],[120,85,75,-1.498893900880952],[120,85,76,-1.4866334658926736],[120,85,77,-1.4702038254969667],[120,85,78,-1.449729904033978],[120,85,79,-1.4241323760837812],[120,86,64,-1.4962756166089148],[120,86,65,-1.4985870533022358],[120,86,66,-1.489885475293639],[120,86,67,-1.4695803411148383],[120,86,68,-1.4598853152152633],[120,86,69,-1.461951296834827],[120,86,70,-1.4757696027237395],[120,86,71,-1.4904785386799597],[120,86,72,-1.514592016755742],[120,86,73,-1.5337945560412187],[120,86,74,-1.5477632135317623],[120,86,75,-1.5499818951844362],[120,86,76,-1.538985087897581],[120,86,77,-1.5235659301141884],[120,86,78,-1.5032107522622549],[120,86,79,-1.4779451882883041],[120,87,64,-1.5354534459445974],[120,87,65,-1.538907870591621],[120,87,66,-1.532408827674322],[120,87,67,-1.5131110543927644],[120,87,68,-1.5013912660246485],[120,87,69,-1.5036118246753662],[120,87,70,-1.5156765670768684],[120,87,71,-1.5302701354293489],[120,87,72,-1.5551916976540239],[120,87,73,-1.574630021132787],[120,87,74,-1.590055381315278],[120,87,75,-1.5933923448205025],[120,87,76,-1.583055855374339],[120,87,77,-1.5672894812834652],[120,87,78,-1.5485171897726988],[120,87,79,-1.5207469479508564],[120,88,64,-1.583762743203568],[120,88,65,-1.5862583156274424],[120,88,66,-1.5791672471976834],[120,88,67,-1.5625747160053294],[120,88,68,-1.551004776348364],[120,88,69,-1.554040818088123],[120,88,70,-1.5641279451530155],[120,88,71,-1.5800116777950624],[120,88,72,-1.6010994865562809],[120,88,73,-1.624677911712975],[120,88,74,-1.6393444621363067],[120,88,75,-1.6440691200369213],[120,88,76,-1.6346518043280969],[120,88,77,-1.619162013381704],[120,88,78,-1.5976577016287223],[120,88,79,-1.5716131602012167],[120,89,64,-1.6294196931171194],[120,89,65,-1.630234509768768],[120,89,66,-1.6255500041585178],[120,89,67,-1.6097290413786727],[120,89,68,-1.5989922882017622],[120,89,69,-1.599517018972972],[120,89,70,-1.6092864542926129],[120,89,71,-1.6249750161033254],[120,89,72,-1.6505405279058727],[120,89,73,-1.675438223085699],[120,89,74,-1.690697686232986],[120,89,75,-1.6971671962586803],[120,89,76,-1.6885367698517098],[120,89,77,-1.6722529668389008],[120,89,78,-1.6489261061714817],[120,89,79,-1.61949518729459],[120,90,64,-1.679857987659756],[120,90,65,-1.682447687545964],[120,90,66,-1.679030304264494],[120,90,67,-1.6636456538845745],[120,90,68,-1.6521585961045688],[120,90,69,-1.6531287736439788],[120,90,70,-1.6615699786858127],[120,90,71,-1.6753976512031858],[120,90,72,-1.7053851538650755],[120,90,73,-1.7313955070994032],[120,90,74,-1.7477228398336486],[120,90,75,-1.7531733095498143],[120,90,76,-1.7457380103923033],[120,90,77,-1.7288206391110523],[120,90,78,-1.704300531366923],[120,90,79,-1.6740886840162046],[120,91,64,-1.7230892163349059],[120,91,65,-1.7299630066720644],[120,91,66,-1.7242288559618129],[120,91,67,-1.7117990294020415],[120,91,68,-1.7013248335946658],[120,91,69,-1.7019253227578663],[120,91,70,-1.7088622061165664],[120,91,71,-1.7251775508421756],[120,91,72,-1.7544060605922702],[120,91,73,-1.7812714177288973],[120,91,74,-1.7965593613772917],[120,91,75,-1.8017368474280164],[120,91,76,-1.7969287428183103],[120,91,77,-1.7779091219143335],[120,91,78,-1.75418037713285],[120,91,79,-1.7253680107955776],[120,92,64,-1.7434037718136253],[120,92,65,-1.7494305614881152],[120,92,66,-1.7444220550511498],[120,92,67,-1.7325163564380353],[120,92,68,-1.7258649523806497],[120,92,69,-1.7268017701321865],[120,92,70,-1.7346720153266668],[120,92,71,-1.7541648274201609],[120,92,72,-1.7814993144860027],[120,92,73,-1.8074004475601226],[120,92,74,-1.8242016438105069],[120,92,75,-1.830874898458351],[120,92,76,-1.8266632271934693],[120,92,77,-1.8073470302886478],[120,92,78,-1.785160744877522],[120,92,79,-1.7537753639797184],[120,93,64,-1.780042318977443],[120,93,65,-1.7863495876688342],[120,93,66,-1.78367456998608],[120,93,67,-1.7765520812940743],[120,93,68,-1.7730263175987446],[120,93,69,-1.773020432493045],[120,93,70,-1.7816283887586066],[120,93,71,-1.8055859746657368],[120,93,72,-1.8333823076757325],[120,93,73,-1.862781717428826],[120,93,74,-1.8788170509610995],[120,93,75,-1.8878395253527605],[120,93,76,-1.881633328911484],[120,93,77,-1.861840022909007],[120,93,78,-1.8329562488030398],[120,93,79,-1.8000792045851084],[120,94,64,-1.8261175541541947],[120,94,65,-1.832882364678281],[120,94,66,-1.8320242805842424],[120,94,67,-1.825973178165317],[120,94,68,-1.822508169686681],[120,94,69,-1.8233155507382954],[120,94,70,-1.8315462586963418],[120,94,71,-1.8538596021434137],[120,94,72,-1.8821202872591216],[120,94,73,-1.9095317110183285],[120,94,74,-1.9264027178652272],[120,94,75,-1.9372796715725236],[120,94,76,-1.9303815047190427],[120,94,77,-1.9119069848913837],[120,94,78,-1.8828827056033282],[120,94,79,-1.8504579643343042],[120,95,64,-1.864075644140692],[120,95,65,-1.8712567693211015],[120,95,66,-1.8713147091347075],[120,95,67,-1.867633986566747],[120,95,68,-1.8609512223237448],[120,95,69,-1.8627453605841267],[120,95,70,-1.8716324847993915],[120,95,71,-1.8945634496282353],[120,95,72,-1.921506892576537],[120,95,73,-1.9479915370208218],[120,95,74,-1.969341054711504],[120,95,75,-1.9771359875564758],[120,95,76,-1.971523475748877],[120,95,77,-1.9529681309444658],[120,95,78,-1.924811070637851],[120,95,79,-1.8935977543299658],[120,96,64,-1.9126438692557117],[120,96,65,-1.9194146365873286],[120,96,66,-1.9192698977237308],[120,96,67,-1.9184908435334203],[120,96,68,-1.9105397127695567],[120,96,69,-1.9105481860410103],[120,96,70,-1.9188499109974784],[120,96,71,-1.9428392605707794],[120,96,72,-1.9685430993515367],[120,96,73,-1.9944165081602772],[120,96,74,-2.016668107653359],[120,96,75,-2.025106764431595],[120,96,76,-2.0212095981853686],[120,96,77,-2.0023925760228813],[120,96,78,-1.973474850843763],[120,96,79,-1.9408289314026326],[120,97,64,-1.9703799171409155],[120,97,65,-1.9731633823794692],[120,97,66,-1.9717928624788374],[120,97,67,-1.9656677703849628],[120,97,68,-1.9600370078388718],[120,97,69,-1.9577209142864938],[120,97,70,-1.9635512117583966],[120,97,71,-1.9853279660994263],[120,97,72,-2.01058753593762],[120,97,73,-2.0350234563087937],[120,97,74,-2.0540818644420025],[120,97,75,-2.0624143385936455],[120,97,76,-2.0607453584791298],[120,97,77,-2.049274543084827],[120,97,78,-2.0252350196786004],[120,97,79,-1.9987711421975378],[120,98,64,-2.026089764364627],[120,98,65,-2.0301336344374024],[120,98,66,-2.025768255344925],[120,98,67,-2.018846856910527],[120,98,68,-2.011395650415813],[120,98,69,-2.0086167192617173],[120,98,70,-2.015680367283153],[120,98,71,-2.0371736814573396],[120,98,72,-2.0627916375432593],[120,98,73,-2.088322447315447],[120,98,74,-2.1074790254618927],[120,98,75,-2.1145948232619034],[120,98,76,-2.1115748425666405],[120,98,77,-2.09999692428119],[120,98,78,-2.0801462505588324],[120,98,79,-2.0537569427751423],[120,99,64,-2.0786576965966286],[120,99,65,-2.0815844238162593],[120,99,66,-2.075342861442253],[120,99,67,-2.064314202841296],[120,99,68,-2.0575897320946788],[120,99,69,-2.0544293126931863],[120,99,70,-2.062553117081614],[120,99,71,-2.0839398044390007],[120,99,72,-2.110527116986126],[120,99,73,-2.136404190858635],[120,99,74,-2.1538543941469817],[120,99,75,-2.162768276235013],[120,99,76,-2.1596791753988827],[120,99,77,-2.1470633406471418],[120,99,78,-2.1284917300752855],[120,99,79,-2.102079617090608],[120,100,64,-2.1097022959023355],[120,100,65,-2.105521724733079],[120,100,66,-2.0923585392287203],[120,100,67,-2.0760707261138216],[120,100,68,-2.0616704666374104],[120,100,69,-2.0560653326897196],[120,100,70,-2.0627703043730152],[120,100,71,-2.0787868563123677],[120,100,72,-2.103475261344211],[120,100,73,-2.1292632617030782],[120,100,74,-2.1460702488864505],[120,100,75,-2.15370839402633],[120,100,76,-2.151799570392858],[120,100,77,-2.140456913902311],[120,100,78,-2.1251446781578283],[120,100,79,-2.0969693500249384],[120,101,64,-2.1594103174822212],[120,101,65,-2.1562850643031672],[120,101,66,-2.140760380421192],[120,101,67,-2.1245457617303187],[120,101,68,-2.1102180337658734],[120,101,69,-2.102451534835638],[120,101,70,-2.1095635408219837],[120,101,71,-2.125643248981261],[120,101,72,-2.1490345111967066],[120,101,73,-2.1747371677191785],[120,101,74,-2.190882890329067],[120,101,75,-2.1986230406439033],[120,101,76,-2.197596230685846],[120,101,77,-2.18933274824511],[120,101,78,-2.1739086688336977],[120,101,79,-2.14864861961288],[120,102,64,-2.207909470188116],[120,102,65,-2.2036098631333365],[120,102,66,-2.1891997706800645],[120,102,67,-2.1723546100976754],[120,102,68,-2.15790943755214],[120,102,69,-2.1518622623940353],[120,102,70,-2.155095497672754],[120,102,71,-2.170043753922369],[120,102,72,-2.1957031251038646],[120,102,73,-2.221235256709255],[120,102,74,-2.2387310168497163],[120,102,75,-2.245351985202892],[120,102,76,-2.242888082797631],[120,102,77,-2.234877615474625],[120,102,78,-2.2203716371143845],[120,102,79,-2.20024720719182],[120,103,64,-2.2476861880536148],[120,103,65,-2.244733400061959],[120,103,66,-2.231778568864969],[120,103,67,-2.2112450186411636],[120,103,68,-2.1974372527093524],[120,103,69,-2.1915803272132344],[120,103,70,-2.196283452960771],[120,103,71,-2.2114114026513696],[120,103,72,-2.239056774733022],[120,103,73,-2.266488405677503],[120,103,74,-2.282658387574164],[120,103,75,-2.289320097309479],[120,103,76,-2.287046009806099],[120,103,77,-2.27793178715916],[120,103,78,-2.263152593410737],[120,103,79,-2.246534522646552],[120,104,64,-2.2976626785339094],[120,104,65,-2.2936391739765827],[120,104,66,-2.2775713618670923],[120,104,67,-2.2575935512707472],[120,104,68,-2.2442728623871493],[120,104,69,-2.240371966518077],[120,104,70,-2.2451955574301032],[120,104,71,-2.2609041143651516],[120,104,72,-2.2888164332999756],[120,104,73,-2.3177083008271087],[120,104,74,-2.331286998078674],[120,104,75,-2.3363479792094854],[120,104,76,-2.333468575049171],[120,104,77,-2.3262196400618267],[120,104,78,-2.3115347735863794],[120,104,79,-2.296068911240704],[120,105,64,-2.3515607469037456],[120,105,65,-2.3431693509772904],[120,105,66,-2.3234407460870807],[120,105,67,-2.2996919768416664],[120,105,68,-2.2864461284462454],[120,105,69,-2.2827112522343223],[120,105,70,-2.2875563233827796],[120,105,71,-2.303305491316863],[120,105,72,-2.3304253457471384],[120,105,73,-2.360287656658937],[120,105,74,-2.3733145639892954],[120,105,75,-2.3804406754873697],[120,105,76,-2.3751064888495486],[120,105,77,-2.370217757054243],[120,105,78,-2.358344548560326],[120,105,79,-2.3434585283480622],[120,106,64,-2.4058998375228358],[120,106,65,-2.3995833360543433],[120,106,66,-2.379055625405471],[120,106,67,-2.355744403403345],[120,106,68,-2.340639452121837],[120,106,69,-2.3377364304012795],[120,106,70,-2.3447898208409335],[120,106,71,-2.357479266889304],[120,106,72,-2.381966055839407],[120,106,73,-2.4127508277756258],[120,106,74,-2.428143054678727],[120,106,75,-2.435077696416972],[120,106,76,-2.4306946231367634],[120,106,77,-2.4245914081311706],[120,106,78,-2.4131336298270627],[120,106,79,-2.3976379295298047],[120,107,64,-2.4547309949972473],[120,107,65,-2.4500205573770324],[120,107,66,-2.4285803980244562],[120,107,67,-2.4028540755327024],[120,107,68,-2.388797139665017],[120,107,69,-2.386438669460095],[120,107,70,-2.3939383646424637],[120,107,71,-2.4081710943892247],[120,107,72,-2.4338359995247862],[120,107,73,-2.4629797889104865],[120,107,74,-2.4794219424664474],[120,107,75,-2.4850944011211835],[120,107,76,-2.48001139716864],[120,107,77,-2.4723146966973357],[120,107,78,-2.461935015621303],[120,107,79,-2.4474955706712747],[120,108,64,-2.5057861330601607],[120,108,65,-2.5007990087721557],[120,108,66,-2.480692213724052],[120,108,67,-2.4555701504390397],[120,108,68,-2.4373651471979425],[120,108,69,-2.4375561586713186],[120,108,70,-2.44669907663829],[120,108,71,-2.4605789328611234],[120,108,72,-2.484754528518008],[120,108,73,-2.514714303849217],[120,108,74,-2.5306428318688523],[120,108,75,-2.5382976930582264],[120,108,76,-2.5328259602713503],[120,108,77,-2.5260572612827064],[120,108,78,-2.516967134593555],[120,108,79,-2.4992374060582563],[120,109,64,-2.5472930175940482],[120,109,65,-2.5449262446541563],[120,109,66,-2.5351531887298107],[120,109,67,-2.51582051331539],[120,109,68,-2.4986901869516602],[120,109,69,-2.498774141154968],[120,109,70,-2.509412482383817],[120,109,71,-2.524861697428936],[120,109,72,-2.54696755773212],[120,109,73,-2.5736259432464266],[120,109,74,-2.587848711149163],[120,109,75,-2.5960956067661423],[120,109,76,-2.5907892932652854],[120,109,77,-2.581484837096435],[120,109,78,-2.5702533681549187],[120,109,79,-2.548900034874993],[120,110,64,-2.5930590141563203],[120,110,65,-2.5940596783700016],[120,110,66,-2.5830615491556377],[120,110,67,-2.565642746460584],[120,110,68,-2.54893527703661],[120,110,69,-2.548293508148398],[120,110,70,-2.5585525732494108],[120,110,71,-2.5758633691422137],[120,110,72,-2.5957558375733765],[120,110,73,-2.6228729988571544],[120,110,74,-2.6385583771581134],[120,110,75,-2.64807793631646],[120,110,76,-2.6414247333445293],[120,110,77,-2.6321039317489103],[120,110,78,-2.619058151749062],[120,110,79,-2.598168454848252],[120,111,64,-2.6327174970780516],[120,111,65,-2.6326991182446657],[120,111,66,-2.625029961931051],[120,111,67,-2.6089220418311387],[120,111,68,-2.595961342579747],[120,111,69,-2.591291829321729],[120,111,70,-2.6018216485212697],[120,111,71,-2.6193231075824692],[120,111,72,-2.640769506365962],[120,111,73,-2.669329041792036],[120,111,74,-2.686620701386858],[120,111,75,-2.6948591739050243],[120,111,76,-2.6893486435596192],[120,111,77,-2.67967428855764],[120,111,78,-2.667430298282728],[120,111,79,-2.6466841542923643],[120,112,64,-2.6817357076728396],[120,112,65,-2.6814661514744276],[120,112,66,-2.673030243223704],[120,112,67,-2.6580529335838583],[120,112,68,-2.6451289911215254],[120,112,69,-2.6403503813077567],[120,112,70,-2.651613743895281],[120,112,71,-2.6684479154372984],[120,112,72,-2.690955378330775],[120,112,73,-2.7187799707460947],[120,112,74,-2.7379992748060435],[120,112,75,-2.743527268474826],[120,112,76,-2.7392218982986964],[120,112,77,-2.7293995165545857],[120,112,78,-2.715152682445551],[120,112,79,-2.697282572421102],[120,113,64,-2.7279480718391795],[120,113,65,-2.7295595700158155],[120,113,66,-2.7210022509839518],[120,113,67,-2.7067541153106522],[120,113,68,-2.69351428050327],[120,113,69,-2.6882089365560287],[120,113,70,-2.7006273243012715],[120,113,71,-2.7152244678200703],[120,113,72,-2.7405819649011907],[120,113,73,-2.7699045590623634],[120,113,74,-2.7899829971087184],[120,113,75,-2.7953676671920564],[120,113,76,-2.7904609899272015],[120,113,77,-2.7791775598853463],[120,113,78,-2.764766810187562],[120,113,79,-2.7471116831887765],[120,114,64,-2.7781863671971307],[120,114,65,-2.7816783418727087],[120,114,66,-2.77557875494269],[120,114,67,-2.7615888370663484],[120,114,68,-2.7481773138984726],[120,114,69,-2.7441060840996565],[120,114,70,-2.7525753665593093],[120,114,71,-2.7674744240263904],[120,114,72,-2.7952622754675445],[120,114,73,-2.824389692118475],[120,114,74,-2.843358781240678],[120,114,75,-2.850394560834915],[120,114,76,-2.845326953341332],[120,114,77,-2.8342305406061374],[120,114,78,-2.8204161816316575],[120,114,79,-2.800017118138211],[120,115,64,-2.823559697226322],[120,115,65,-2.8260930550871266],[120,115,66,-2.820851298538323],[120,115,67,-2.807275245888966],[120,115,68,-2.7962248189725765],[120,115,69,-2.7911016336312366],[120,115,70,-2.8009239862810382],[120,115,71,-2.81543078630025],[120,115,72,-2.845911272243265],[120,115,73,-2.873253804235091],[120,115,74,-2.8910984130676844],[120,115,75,-2.899775724923682],[120,115,76,-2.8947158251512994],[120,115,77,-2.8848252999272135],[120,115,78,-2.8705481367276464],[120,115,79,-2.8481455986917226],[120,116,64,-2.8446728961884116],[120,116,65,-2.850314849471308],[120,116,66,-2.8484347281968834],[120,116,67,-2.8399402696572684],[120,116,68,-2.8337088585835435],[120,116,69,-2.8329012873030606],[120,116,70,-2.845588323235541],[120,116,71,-2.8636747449890536],[120,116,72,-2.892020923902904],[120,116,73,-2.9179237470104686],[120,116,74,-2.9372233442384568],[120,116,75,-2.946164010372745],[120,116,76,-2.940817249364053],[120,116,77,-2.9275360400275403],[120,116,78,-2.9113146344894187],[120,116,79,-2.8837047476271414],[120,117,64,-2.8919483473725953],[120,117,65,-2.899567441970418],[120,117,66,-2.8968137557903235],[120,117,67,-2.890880290254684],[120,117,68,-2.8859006944928485],[120,117,69,-2.8868000096363025],[120,117,70,-2.9001071208833684],[120,117,71,-2.9197296901195515],[120,117,72,-2.946109689519565],[120,117,73,-2.9724102383044464],[120,117,74,-2.9918839588582173],[120,117,75,-3.0008656429366116],[120,117,76,-2.995198460791212],[120,117,77,-2.9801017499294105],[120,117,78,-2.9566246306453317],[120,117,79,-2.9239869611855758],[120,118,64,-2.9393846816941998],[120,118,65,-2.944124878641333],[120,118,66,-2.943542627605683],[120,118,67,-2.93708189884325],[120,118,68,-2.93344055352509],[120,118,69,-2.936882552462525],[120,118,70,-2.9493931184259714],[120,118,71,-2.968205820874538],[120,118,72,-2.993499107012985],[120,118,73,-3.0203062580644433],[120,118,74,-3.040185771308791],[120,118,75,-3.048023459109875],[120,118,76,-3.0462422907849223],[120,118,77,-3.0303620397294484],[120,118,78,-3.0076042818420685],[120,118,79,-2.9733620971805004],[120,119,64,-2.9784172358342893],[120,119,65,-2.986370264445604],[120,119,66,-2.984296044989266],[120,119,67,-2.977962591323472],[120,119,68,-2.9732825330849577],[120,119,69,-2.978781550822223],[120,119,70,-2.9922572423875655],[120,119,71,-3.0114469724436677],[120,119,72,-3.038221179160788],[120,119,73,-3.0650813897644285],[120,119,74,-3.08674797878578],[120,119,75,-3.0967431175798583],[120,119,76,-3.096310828762864],[120,119,77,-3.079938753953191],[120,119,78,-3.055056052131505],[120,119,79,-3.0211322551425046],[120,120,64,-3.0276410511612424],[120,120,65,-3.0355744879945985],[120,120,66,-3.0287670574486807],[120,120,67,-3.022551524123779],[120,120,68,-3.0205275822527753],[120,120,69,-3.02591327046982],[120,120,70,-3.039854796489254],[120,120,71,-3.058941672360236],[120,120,72,-3.084643571937923],[120,120,73,-3.114214308009002],[120,120,74,-3.133540672178671],[120,120,75,-3.146154896810335],[120,120,76,-3.14545975000683],[120,120,77,-3.129394113437282],[120,120,78,-3.1048661979562415],[120,120,79,-3.0717003539058845],[120,121,64,-3.070459654717302],[120,121,65,-3.07560167379685],[120,121,66,-3.0675381309720473],[120,121,67,-3.0586475153875687],[120,121,68,-3.057647624641336],[120,121,69,-3.0644001654372826],[120,121,70,-3.0767122799094353],[120,121,71,-3.097028305421523],[120,121,72,-3.1243976582481023],[120,121,73,-3.1552519647924773],[120,121,74,-3.173078470382121],[120,121,75,-3.186209909015714],[120,121,76,-3.186055754681445],[120,121,77,-3.1779458995062613],[120,121,78,-3.158974605263719],[120,121,79,-3.1336547869963614],[120,122,64,-3.1204770505314094],[120,122,65,-3.125947281309812],[120,122,66,-3.120425014448701],[120,122,67,-3.1117908117529396],[120,122,68,-3.1099220305887956],[120,122,69,-3.1180741395925695],[120,122,70,-3.130912092998221],[120,122,71,-3.1518105617018066],[120,122,72,-3.1786805431754024],[120,122,73,-3.211025877491919],[120,122,74,-3.2314912667647153],[120,122,75,-3.2397510285631155],[120,122,76,-3.2395026245594107],[120,122,77,-3.2341116733948074],[120,122,78,-3.2144076156948245],[120,122,79,-3.187563631291468],[120,123,64,-3.1643401446091426],[120,123,65,-3.1688427143755997],[120,123,66,-3.167133491651991],[120,123,67,-3.1593377875831243],[120,123,68,-3.1570549546192237],[120,123,69,-3.166219838998241],[120,123,70,-3.1810080278125805],[120,123,71,-3.1997903697547896],[120,123,72,-3.228277518511269],[120,123,73,-3.2618979863716997],[120,123,74,-3.283287500815589],[120,123,75,-3.2907252775623843],[120,123,76,-3.29097875844842],[120,123,77,-3.283168203566667],[120,123,78,-3.264758672749279],[120,123,79,-3.239320428827989],[120,124,64,-3.2107803346802037],[120,124,65,-3.213776361836421],[120,124,66,-3.2112907016473256],[120,124,67,-3.203247893451013],[120,124,68,-3.202618874903024],[120,124,69,-3.210978741059884],[120,124,70,-3.22732706574362],[120,124,71,-3.244662713099844],[120,124,72,-3.275583223983923],[120,124,73,-3.3068635837020746],[120,124,74,-3.331029591326027],[120,124,75,-3.3408945298798405],[120,124,76,-3.3396339935138655],[120,124,77,-3.3311685756422635],[120,124,78,-3.3160147525165136],[120,124,79,-3.290940439468279],[120,125,64,-3.2567126032748157],[120,125,65,-3.260859640055017],[120,125,66,-3.2581986785056802],[120,125,67,-3.2518438595684582],[120,125,68,-3.2528766492795316],[120,125,69,-3.260586609171135],[120,125,70,-3.275802822247654],[120,125,71,-3.2930452634454186],[120,125,72,-3.3237157663679153],[120,125,73,-3.3573901662813412],[120,125,74,-3.383144665558288],[120,125,75,-3.3897327720321075],[120,125,76,-3.389916258069017],[120,125,77,-3.3818385091370047],[120,125,78,-3.3644572099209147],[120,125,79,-3.339491406177767],[120,126,64,-3.3015129281464466],[120,126,65,-3.305785839224826],[120,126,66,-3.3052047954908073],[120,126,67,-3.3010508603141533],[120,126,68,-3.3031804195853347],[120,126,69,-3.309549682995607],[120,126,70,-3.3236758892179563],[120,126,71,-3.3427768422951756],[120,126,72,-3.374284316887687],[120,126,73,-3.408431426627447],[120,126,74,-3.4341554725525167],[120,126,75,-3.4407867816612754],[120,126,76,-3.4420406153303453],[120,126,77,-3.4311917502592437],[120,126,78,-3.414631307487627],[120,126,79,-3.389640046577777],[120,127,64,-3.3399553460551443],[120,127,65,-3.345604385100971],[120,127,66,-3.3459129959363216],[120,127,67,-3.3451554408774573],[120,127,68,-3.346647173478399],[120,127,69,-3.353482724379567],[120,127,70,-3.366121044412455],[120,127,71,-3.391473545312881],[120,127,72,-3.423813489434838],[120,127,73,-3.456158463314037],[120,127,74,-3.4832347505412087],[120,127,75,-3.494496968984868],[120,127,76,-3.4940829766785972],[120,127,77,-3.482287467353898],[120,127,78,-3.4632492267758517],[120,127,79,-3.439261707178426],[120,128,64,-3.3854905865073204],[120,128,65,-3.3937737653701316],[120,128,66,-3.3937232602398453],[120,128,67,-3.3929939023985316],[120,128,68,-3.3929445524971427],[120,128,69,-3.402815806141523],[120,128,70,-3.417471465575208],[120,128,71,-3.442330944491785],[120,128,72,-3.4742269516744195],[120,128,73,-3.5063156734868155],[120,128,74,-3.5321334591187807],[120,128,75,-3.54381434070659],[120,128,76,-3.5456883018853724],[120,128,77,-3.5336131975129352],[120,128,78,-3.5127687859820482],[120,128,79,-3.4896770086947897],[120,129,64,-3.426148059660631],[120,129,65,-3.43662283798681],[120,129,66,-3.4419664465810453],[120,129,67,-3.440821456549977],[120,129,68,-3.443792712059618],[120,129,69,-3.452186569135945],[120,129,70,-3.468155904766648],[120,129,71,-3.495288736278494],[120,129,72,-3.524795322716753],[120,129,73,-3.558287395962315],[120,129,74,-3.583304520898745],[120,129,75,-3.5981213475685916],[120,129,76,-3.5958583827444417],[120,129,77,-3.581477665220368],[120,129,78,-3.5537076819423157],[120,129,79,-3.52876187950414],[120,130,64,-3.4816112673919615],[120,130,65,-3.490622541657966],[120,130,66,-3.496564256562707],[120,130,67,-3.494360410753944],[120,130,68,-3.495785479556048],[120,130,69,-3.504618736437217],[120,130,70,-3.522064854019641],[120,130,71,-3.548187617818387],[120,130,72,-3.5811713248678396],[120,130,73,-3.6143230826868074],[120,130,74,-3.6619704665388126],[120,130,75,-3.7044771383853106],[120,130,76,-3.6976032672914414],[120,130,77,-3.698563410704976],[120,130,78,-3.7137345484145947],[120,130,79,-3.7240962176472365],[120,131,64,-3.52898698303177],[120,131,65,-3.5410276176017232],[120,131,66,-3.5449575319566837],[120,131,67,-3.5415940714133463],[120,131,68,-3.5439585112795995],[120,131,69,-3.5542382500474297],[120,131,70,-3.572337224792151],[120,131,71,-3.5978749857804813],[120,131,72,-3.6316193326700406],[120,131,73,-3.6672420102708587],[120,131,74,-3.732331965695596],[120,131,75,-3.7688860108286018],[120,131,76,-3.7601790477200403],[120,131,77,-3.7635507327648803],[120,131,78,-3.779215161334377],[120,131,79,-3.7753072219319908],[120,132,64,-3.5690815576615633],[120,132,65,-3.579473474094444],[120,132,66,-3.5852530684185893],[120,132,67,-3.5837016429700057],[120,132,68,-3.5848425734691953],[120,132,69,-3.598024212710032],[120,132,70,-3.6176108680078953],[120,132,71,-3.6455324436467333],[120,132,72,-3.6791936230899163],[120,132,73,-3.7152360761992296],[120,132,74,-3.7832900219173804],[120,132,75,-3.8206725305768656],[120,132,76,-3.8226234048410648],[120,132,77,-3.825185901175052],[120,132,78,-3.8399827476426296],[120,132,79,-3.8226144577102152],[120,133,64,-3.6290291204619796],[120,133,65,-3.6362235212838745],[120,133,66,-3.634434707447079],[120,133,67,-3.631972891026071],[120,133,68,-3.6343668609627877],[120,133,69,-3.645763530216949],[120,133,70,-3.6675244095900115],[120,133,71,-3.6945815860567355],[120,133,72,-3.7295138687322438],[120,133,73,-3.776258093042717],[120,133,74,-3.839137428192831],[120,133,75,-3.8647550693890835],[120,133,76,-3.8761867679698976],[120,133,77,-3.8759003010781297],[120,133,78,-3.888735337755293],[120,133,79,-3.8637863645826784],[120,134,64,-3.677253666862474],[120,134,65,-3.6873120962556265],[120,134,66,-3.6819055575385256],[120,134,67,-3.6778038037051943],[120,134,68,-3.6807631681114343],[120,134,69,-3.693124662155357],[120,134,70,-3.7175851847064565],[120,134,71,-3.7447458176495805],[120,134,72,-3.7780174979631584],[120,134,73,-3.8343739018706624],[120,134,74,-3.8936141512880216],[120,134,75,-3.9192692987128503],[120,134,76,-3.9274038412200225],[120,134,77,-3.9293088015639595],[120,134,78,-3.941565785902185],[120,134,79,-3.918459267146618],[120,135,64,-3.7208854721804308],[120,135,65,-3.7300785572470345],[120,135,66,-3.725643228804306],[120,135,67,-3.7204842251498813],[120,135,68,-3.7243355857513714],[120,135,69,-3.7376265511001248],[120,135,70,-3.7634996352751338],[120,135,71,-3.7903602978233266],[120,135,72,-3.8265093501864245],[120,135,73,-3.875714735981201],[120,135,74,-3.934581226849905],[120,135,75,-3.9552740231823194],[120,135,76,-3.962291031793516],[120,135,77,-3.9638947478866693],[120,135,78,-3.978086871607254],[120,135,79,-3.960513155887674],[120,136,64,-3.7679339851194094],[120,136,65,-3.7766229561696534],[120,136,66,-3.7753935861716177],[120,136,67,-3.76973486486826],[120,136,68,-3.7726039090328425],[120,136,69,-3.787184979922668],[120,136,70,-3.811280596942567],[120,136,71,-3.8383219514259546],[120,136,72,-3.8758982668767947],[120,136,73,-3.940117978805937],[120,136,74,-3.99338114203662],[120,136,75,-4.0141878634387025],[120,136,76,-4.022149546784824],[120,136,77,-4.023362912439176],[120,136,78,-4.029857860711973],[120,136,79,-4.016427497821474],[120,137,64,-3.815699090958809],[120,137,65,-3.824909876077721],[120,137,66,-3.8217276928408346],[120,137,67,-3.8170782032975517],[120,137,68,-3.820238604403156],[120,137,69,-3.8350135178319267],[120,137,70,-3.86155237674653],[120,137,71,-3.886585269190415],[120,137,72,-3.9237663080359724],[120,137,73,-3.984428829836845],[120,137,74,-4.032422683590735],[120,137,75,-4.054684490596087],[120,137,76,-4.058749580192061],[120,137,77,-4.05621035692642],[120,137,78,-4.048537247496388],[120,137,79,-4.051350471317461],[120,138,64,-3.86954912031691],[120,138,65,-3.877656151711591],[120,138,66,-3.876448198215625],[120,138,67,-3.870088894696804],[120,138,68,-3.8750527798776893],[120,138,69,-3.8892561548956004],[120,138,70,-3.9138725661031035],[120,138,71,-3.9379768798358317],[120,138,72,-3.9750765548352223],[120,138,73,-4.021413834711047],[120,138,74,-4.067577523641043],[120,138,75,-4.091103346290178],[120,138,76,-4.095570925434113],[120,138,77,-4.083790854449384],[120,138,78,-4.077715324962928],[120,138,79,-4.074671214135345],[120,139,64,-3.9182712301558023],[120,139,65,-3.924442916627461],[120,139,66,-3.9243200294829546],[120,139,67,-3.918524137498638],[120,139,68,-3.9226415293351566],[120,139,69,-3.9372325519667886],[120,139,70,-3.9604408720266946],[120,139,71,-3.9842137156914115],[120,139,72,-4.019422432258807],[120,139,73,-4.076274066532757],[120,139,74,-4.123918406406761],[120,139,75,-4.14616024861411],[120,139,76,-4.154205308867559],[120,139,77,-4.141256666848894],[120,139,78,-4.138974787237252],[120,139,79,-4.132395212275495],[120,140,64,-3.9766636344435997],[120,140,65,-3.979985087275347],[120,140,66,-3.981102284774711],[120,140,67,-3.9727265673660654],[120,140,68,-3.970887002136159],[120,140,69,-3.980961455536663],[120,140,70,-4.002674499288462],[120,140,71,-4.026185318066881],[120,140,72,-4.062687631500046],[120,140,73,-4.120168434088764],[120,140,74,-4.16938937801245],[120,140,75,-4.188484558686227],[120,140,76,-4.19679988351979],[120,140,77,-4.185760272385688],[120,140,78,-4.1786975287957935],[120,140,79,-4.176919066199149],[120,141,64,-4.022491802239145],[120,141,65,-4.028820006266292],[120,141,66,-4.0345938219382225],[120,141,67,-4.030935329520119],[120,141,68,-4.027837295802811],[120,141,69,-4.036797496925124],[120,141,70,-4.055142901027084],[120,141,71,-4.079055814943359],[120,141,72,-4.113584881902665],[120,141,73,-4.166884891603397],[120,141,74,-4.2075341199611485],[120,141,75,-4.224904241542301],[120,141,76,-4.231538998939604],[120,141,77,-4.225463878119633],[120,141,78,-4.209479818435332],[120,141,79,-4.210445747683926],[120,142,64,-4.071633418122947],[120,142,65,-4.075867775956781],[120,142,66,-4.082358483341435],[120,142,67,-4.08036865653371],[120,142,68,-4.078130503525045],[120,142,69,-4.087603357164124],[120,142,70,-4.101941686420243],[120,142,71,-4.125570996182351],[120,142,72,-4.160261631071201],[120,142,73,-4.214871394070039],[120,142,74,-4.251103543982783],[120,142,75,-4.2719647457920935],[120,142,76,-4.278075661017124],[120,142,77,-4.272304729218843],[120,142,78,-4.260080863518018],[120,142,79,-4.253360187518672],[120,143,64,-4.114457761124262],[120,143,65,-4.120814143356818],[120,143,66,-4.127641365717703],[120,143,67,-4.125754533067308],[120,143,68,-4.125909097352233],[120,143,69,-4.13402031260946],[120,143,70,-4.147738913613521],[120,143,71,-4.1687127968739075],[120,143,72,-4.204641864202456],[120,143,73,-4.256667036675084],[120,143,74,-4.290874728317587],[120,143,75,-4.31247499564856],[120,143,76,-4.317513113867671],[120,143,77,-4.313288772850963],[120,143,78,-4.297356548171343],[120,143,79,-4.282166991927488],[120,144,64,-4.162954647580986],[120,144,65,-4.170988472913953],[120,144,66,-4.175098205023709],[120,144,67,-4.174909406986889],[120,144,68,-4.172144282509745],[120,144,69,-4.180266489504346],[120,144,70,-4.1964518302508615],[120,144,71,-4.21646388597822],[120,144,72,-4.251391095289834],[120,144,73,-4.307214962454935],[120,144,74,-4.345250903065568],[120,144,75,-4.365120966113179],[120,144,76,-4.371751995967789],[120,144,77,-4.369073123696232],[120,144,78,-4.351637931839582],[120,144,79,-4.3409883366989215],[120,145,64,-4.209142052369058],[120,145,65,-4.216501611022653],[120,145,66,-4.213610636219761],[120,145,67,-4.212871040219552],[120,145,68,-4.208734276034841],[120,145,69,-4.213569976325607],[120,145,70,-4.233156701266977],[120,145,71,-4.259482917032187],[120,145,72,-4.295371951896566],[120,145,73,-4.339510170317698],[120,145,74,-4.368402601020507],[120,145,75,-4.3823017057372455],[120,145,76,-4.390076217738711],[120,145,77,-4.380033448465588],[120,145,78,-4.361300009473902],[120,145,79,-4.342091834478907],[120,146,64,-4.264605502248785],[120,146,65,-4.272146685596294],[120,146,66,-4.268799172379924],[120,146,67,-4.2639825720179765],[120,146,68,-4.260501015218589],[120,146,69,-4.264578687544132],[120,146,70,-4.285085577578709],[120,146,71,-4.313570280338012],[120,146,72,-4.349043262960696],[120,146,73,-4.392289733588028],[120,146,74,-4.422281087917716],[120,146,75,-4.437902623970495],[120,146,76,-4.444547299641617],[120,146,77,-4.43520368640823],[120,146,78,-4.41635376084215],[120,146,79,-4.395738808063473],[120,147,64,-4.312901784248485],[120,147,65,-4.321461360756172],[120,147,66,-4.318785154892437],[120,147,67,-4.310846851153452],[120,147,68,-4.307880630555034],[120,147,69,-4.312539572331812],[120,147,70,-4.331811926563023],[120,147,71,-4.360546245842278],[120,147,72,-4.397004548035622],[120,147,73,-4.439525221673467],[120,147,74,-4.470515237786773],[120,147,75,-4.4868251163550905],[120,147,76,-4.490709401204141],[120,147,77,-4.4847676838223265],[120,147,78,-4.466168073340397],[120,147,79,-4.424981665368679],[120,148,64,-4.329002891428712],[120,148,65,-4.339753799138479],[120,148,66,-4.340871273185908],[120,148,67,-4.333662781964921],[120,148,68,-4.331997222537646],[120,148,69,-4.33892912806403],[120,148,70,-4.35794326146993],[120,148,71,-4.386617277438678],[120,148,72,-4.424248523712369],[120,148,73,-4.466531020940768],[120,148,74,-4.498748820185398],[120,148,75,-4.510177568416562],[120,148,76,-4.497427456822297],[120,148,77,-4.502661127514574],[120,148,78,-4.47958151020804],[120,148,79,-4.424575729823541],[120,149,64,-4.37805590165552],[120,149,65,-4.39049202761574],[120,149,66,-4.392035862733587],[120,149,67,-4.38519876823987],[120,149,68,-4.382010666568483],[120,149,69,-4.387378362499216],[120,149,70,-4.406364734153966],[120,149,71,-4.437400810554011],[120,149,72,-4.474170723828654],[120,149,73,-4.519112225386504],[120,149,74,-4.549594764382407],[120,149,75,-4.5629044884144125],[120,149,76,-4.542529067666374],[120,149,77,-4.55722120409577],[120,149,78,-4.530437905368222],[120,149,79,-4.467311710343988],[120,150,64,-4.429137782861842],[120,150,65,-4.4401507891266805],[120,150,66,-4.444651236652762],[120,150,67,-4.434294454167711],[120,150,68,-4.431234487264459],[120,150,69,-4.436004269065303],[120,150,70,-4.453756710942953],[120,150,71,-4.486968672535246],[120,150,72,-4.526323909858778],[120,150,73,-4.570438838811999],[120,150,74,-4.599071661827333],[120,150,75,-4.613419291977332],[120,150,76,-4.589864835785222],[120,150,77,-4.60427086623914],[120,150,78,-4.578068739893303],[120,150,79,-4.512551901766363],[120,151,64,-4.4751875355049],[120,151,65,-4.488798062171005],[120,151,66,-4.490520148598535],[120,151,67,-4.479000982486281],[120,151,68,-4.47471563142468],[120,151,69,-4.483170700204309],[120,151,70,-4.499655751229699],[120,151,71,-4.531874660525652],[120,151,72,-4.574185050969597],[120,151,73,-4.617738995629424],[120,151,74,-4.649642994974919],[120,151,75,-4.665118461946851],[120,151,76,-4.662808101119063],[120,151,77,-4.657389755934066],[120,151,78,-4.6395359345499685],[120,151,79,-4.570006547467498],[120,152,64,-4.528432112888677],[120,152,65,-4.54221545212595],[120,152,66,-4.541070671289259],[120,152,67,-4.528345452071475],[120,152,68,-4.522298285413],[120,152,69,-4.532642212387762],[120,152,70,-4.550153880330285],[120,152,71,-4.577259092744167],[120,152,72,-4.620084112294449],[120,152,73,-4.665951084173414],[120,152,74,-4.698012965188964],[120,152,75,-4.713097974127605],[120,152,76,-4.715376082964829],[120,152,77,-4.707950083132062],[120,152,78,-4.686038854163562],[120,152,79,-4.615117861572109],[120,153,64,-4.573801953489746],[120,153,65,-4.593665507810378],[120,153,66,-4.596562831951944],[120,153,67,-4.585471264958021],[120,153,68,-4.580790648903015],[120,153,69,-4.5928054841404755],[120,153,70,-4.607820501083391],[120,153,71,-4.631280894183605],[120,153,72,-4.669940049380355],[120,153,73,-4.714192277159604],[120,153,74,-4.746242776234747],[120,153,75,-4.761625108160951],[120,153,76,-4.762697095993975],[120,153,77,-4.751489471804019],[120,153,78,-4.714661356910894],[120,153,79,-4.6492294472506295],[120,154,64,-4.629796807590575],[120,154,65,-4.648001804255768],[120,154,66,-4.651376767078152],[120,154,67,-4.640900308549503],[120,154,68,-4.636070051206401],[120,154,69,-4.644982005043947],[120,154,70,-4.661130028344013],[120,154,71,-4.68284971698461],[120,154,72,-4.72453566963428],[120,154,73,-4.765193686915984],[120,154,74,-4.798110049919101],[120,154,75,-4.813776468340547],[120,154,76,-4.815926047446111],[120,154,77,-4.801948691004712],[120,154,78,-4.775737127213646],[120,154,79,-4.71607156537809],[120,155,64,-4.680434935197799],[120,155,65,-4.695872442567572],[120,155,66,-4.699872656008514],[120,155,67,-4.690248951227091],[120,155,68,-4.68585466743385],[120,155,69,-4.692095435954239],[120,155,70,-4.707777878213189],[120,155,71,-4.730122863512735],[120,155,72,-4.772240061602262],[120,155,73,-4.812095515472374],[120,155,74,-4.842840845939801],[120,155,75,-4.859731286515135],[120,155,76,-4.862799086410102],[120,155,77,-4.851038139784575],[120,155,78,-4.822312819873062],[120,155,79,-4.769963186997318],[120,156,64,-4.73076931321768],[120,156,65,-4.743696145437999],[120,156,66,-4.746921559067946],[120,156,67,-4.740226547621408],[120,156,68,-4.736624712055804],[120,156,69,-4.741404636821549],[120,156,70,-4.75732181255289],[120,156,71,-4.780394585997133],[120,156,72,-4.819400261149812],[120,156,73,-4.8618443925482655],[120,156,74,-4.890227198462971],[120,156,75,-4.909589968670805],[120,156,76,-4.910268175130353],[120,156,77,-4.899577752244524],[120,156,78,-4.875187796708148],[120,156,79,-4.823436630277147],[120,157,64,-4.7885564083475645],[120,157,65,-4.795747970614108],[120,157,66,-4.78966288429849],[120,157,67,-4.779664777839366],[120,157,68,-4.771368214443455],[120,157,69,-4.777730526190153],[120,157,70,-4.798396770835844],[120,157,71,-4.8230048302099915],[120,157,72,-4.86111946255871],[120,157,73,-4.906824490378398],[120,157,74,-4.937864296145956],[120,157,75,-4.954439244655925],[120,157,76,-4.959771490400746],[120,157,77,-4.952011240154373],[120,157,78,-4.9300592107471095],[120,157,79,-4.877281663263895],[120,158,64,-4.837534399750927],[120,158,65,-4.844138066031332],[120,158,66,-4.836467166918338],[120,158,67,-4.824241041184849],[120,158,68,-4.814103892579713],[120,158,69,-4.823519345212429],[120,158,70,-4.845143403655162],[120,158,71,-4.872175355474824],[120,158,72,-4.907135840151278],[120,158,73,-4.952426754815985],[120,158,74,-4.984065017835656],[120,158,75,-5.003143316251775],[120,158,76,-5.0070008470548695],[120,158,77,-4.999723804871074],[120,158,78,-4.977175934539062],[120,158,79,-4.922440496642913],[120,159,64,-4.944282183272891],[120,159,65,-4.9470988329439365],[120,159,66,-4.931765168454819],[120,159,67,-4.9123205015696785],[120,159,68,-4.894886977583442],[120,159,69,-4.898154603113463],[120,159,70,-4.910403913652472],[120,159,71,-4.929956802312151],[120,159,72,-4.958519025684448],[120,159,73,-4.99489389274653],[120,159,74,-5.020350007687022],[120,159,75,-5.029353011599131],[120,159,76,-5.027279404945503],[120,159,77,-5.010750872308407],[120,159,78,-4.983051908229687],[120,159,79,-4.940161080214312],[120,160,64,-4.9927620566698945],[120,160,65,-4.992619623602803],[120,160,66,-4.976781298042126],[120,160,67,-4.957810574646393],[120,160,68,-4.94219640857038],[120,160,69,-4.942168109636215],[120,160,70,-4.955333130718061],[120,160,71,-4.975637993604168],[120,160,72,-5.0063945437363335],[120,160,73,-5.044091455173009],[120,160,74,-5.06659287957526],[120,160,75,-5.075065858305992],[120,160,76,-5.073889349924586],[120,160,77,-5.05963518010128],[120,160,78,-5.029526736148217],[120,160,79,-4.989901001063633],[120,161,64,-5.037601370734291],[120,161,65,-5.036469759154414],[120,161,66,-5.0234204676695935],[120,161,67,-5.004280318522465],[120,161,68,-4.989728289660722],[120,161,69,-4.990613026168027],[120,161,70,-5.0005843197824165],[120,161,71,-5.0208743910765],[120,161,72,-5.053829119687545],[120,161,73,-5.090788286843174],[120,161,74,-5.1142114554250035],[120,161,75,-5.120913581584845],[120,161,76,-5.119506507633366],[120,161,77,-5.106802522786267],[120,161,78,-5.078147815734385],[120,161,79,-5.040697039162386],[120,162,64,-5.087116576288012],[120,162,65,-5.087964122494365],[120,162,66,-5.076946622013942],[120,162,67,-5.0571748122357825],[120,162,68,-5.042746937012737],[120,162,69,-5.039825111293714],[120,162,70,-5.047989417868659],[120,162,71,-5.070455102489631],[120,162,72,-5.105004147241063],[120,162,73,-5.141489972647048],[120,162,74,-5.166969644938024],[120,162,75,-5.1732188568046],[120,162,76,-5.169891700092638],[120,162,77,-5.15646173287827],[120,162,78,-5.1299173079464575],[120,162,79,-5.097664594875348],[120,163,64,-5.131658332771383],[120,163,65,-5.135136199121558],[120,163,66,-5.123903826577413],[120,163,67,-5.106403268325754],[120,163,68,-5.088026830541788],[120,163,69,-5.08555112314234],[120,163,70,-5.093339656967688],[120,163,71,-5.113443887337265],[120,163,72,-5.149398266133722],[120,163,73,-5.187016990584236],[120,163,74,-5.2120263097536155],[120,163,75,-5.219656144875321],[120,163,76,-5.213209059579481],[120,163,77,-5.198618503210223],[120,163,78,-5.173647394745277],[120,163,79,-5.140848568567722],[120,164,64,-5.153606246727031],[120,164,65,-5.155606126225435],[120,164,66,-5.145398056493611],[120,164,67,-5.12786305633431],[120,164,68,-5.109383092921583],[120,164,69,-5.10438256969807],[120,164,70,-5.111738830802203],[120,164,71,-5.130634962926611],[120,164,72,-5.166484088890426],[120,164,73,-5.204198476435421],[120,164,74,-5.227016982130579],[120,164,75,-5.235418472790436],[120,164,76,-5.230910641365918],[120,164,77,-5.220495239880706],[120,164,78,-5.199595713521989],[120,164,79,-5.168521839420608],[120,165,64,-5.190756257298992],[120,165,65,-5.199227145354367],[120,165,66,-5.196288073845969],[120,165,67,-5.181153803068468],[120,165,68,-5.162974419939326],[120,165,69,-5.160226121938023],[120,165,70,-5.164795588783648],[120,165,71,-5.179790615929287],[120,165,72,-5.20846131825741],[120,165,73,-5.241495521715263],[120,165,74,-5.264590632738187],[120,165,75,-5.270223879693062],[120,165,76,-5.2675070631935625],[120,165,77,-5.261081622562959],[120,165,78,-5.246201294274606],[120,165,79,-5.214468760846889],[120,166,64,-5.235750127784105],[120,166,65,-5.243738127223285],[120,166,66,-5.242305980988773],[120,166,67,-5.226093026681393],[120,166,68,-5.209235560414441],[120,166,69,-5.20453346944053],[120,166,70,-5.210991042353854],[120,166,71,-5.2258206582272235],[120,166,72,-5.252857103108923],[120,166,73,-5.285843760970812],[120,166,74,-5.308999122999747],[120,166,75,-5.315204148775626],[120,166,76,-5.312877149740642],[120,166,77,-5.305212083744257],[120,166,78,-5.2930679048155325],[120,166,79,-5.257163475518233],[120,167,64,-5.275468215147165],[120,167,65,-5.283061075290452],[120,167,66,-5.281748364404711],[120,167,67,-5.265837288429669],[120,167,68,-5.251208948665134],[120,167,69,-5.247567218989668],[120,167,70,-5.252579414978574],[120,167,71,-5.26925591211526],[120,167,72,-5.298855501059847],[120,167,73,-5.332445038607117],[120,167,74,-5.356109009115452],[120,167,75,-5.3638933510954905],[120,167,76,-5.362410824603444],[120,167,77,-5.353115802490061],[120,167,78,-5.3418919392363335],[120,167,79,-5.309159853660944],[120,168,64,-5.320460539497043],[120,168,65,-5.330551289630923],[120,168,66,-5.325077875874555],[120,168,67,-5.308135350797633],[120,168,68,-5.294519631137911],[120,168,69,-5.291356395917138],[120,168,70,-5.296625417915667],[120,168,71,-5.313291261646742],[120,168,72,-5.346470295475118],[120,168,73,-5.382076029396868],[120,168,74,-5.404206189497504],[120,168,75,-5.410662726134288],[120,168,76,-5.40859451664491],[120,168,77,-5.401495413813676],[120,168,78,-5.3867755059569555],[120,168,79,-5.355496308110657],[120,169,64,-5.374529884315794],[120,169,65,-5.377920758990631],[120,169,66,-5.363729674878245],[120,169,67,-5.3436011010602495],[120,169,68,-5.326971172883112],[120,169,69,-5.32588753093266],[120,169,70,-5.332387392710694],[120,169,71,-5.3564856317006],[120,169,72,-5.396526467645143],[120,169,73,-5.439104640287377],[120,169,74,-5.461967942824542],[120,169,75,-5.467416059668584],[120,169,76,-5.463399254032964],[120,169,77,-5.450034029458872],[120,169,78,-5.426765341530596],[120,169,79,-5.394540811449038],[120,170,64,-5.4256985643909985],[120,170,65,-5.425928531059142],[120,170,66,-5.413912801886441],[120,170,67,-5.393328152137741],[120,170,68,-5.376325355340609],[120,170,69,-5.375447693495083],[120,170,70,-5.382907524853593],[120,170,71,-5.40624849025301],[120,170,72,-5.447816859794766],[120,170,73,-5.4913829380268755],[120,170,74,-5.514496507222725],[120,170,75,-5.519728098067768],[120,170,76,-5.5132374233322885],[120,170,77,-5.500593531747473],[120,170,78,-5.476718584835737],[120,170,79,-5.445493811217114],[120,171,64,-5.471887083118332],[120,171,65,-5.46997272546895],[120,171,66,-5.45754781657969],[120,171,67,-5.437823963437746],[120,171,68,-5.420875674754394],[120,171,69,-5.419224245137667],[120,171,70,-5.428094034678579],[120,171,71,-5.453827364308265],[120,171,72,-5.494365648108155],[120,171,73,-5.5378908963096505],[120,171,74,-5.562348223025855],[120,171,75,-5.56792939248821],[120,171,76,-5.560626491288864],[120,171,77,-5.547046564068878],[120,171,78,-5.5223310156507335],[120,171,79,-5.488130134894444],[120,172,64,-5.518918871586766],[120,172,65,-5.516420915239508],[120,172,66,-5.501920068647751],[120,172,67,-5.48175960488613],[120,172,68,-5.467370018874524],[120,172,69,-5.462965534664039],[120,172,70,-5.474255719302866],[120,172,71,-5.501091463925746],[120,172,72,-5.543686894125771],[120,172,73,-5.586278364536405],[120,172,74,-5.609903256968887],[120,172,75,-5.616741996939336],[120,172,76,-5.60812612264136],[120,172,77,-5.593329567407607],[120,172,78,-5.564989422837804],[120,172,79,-5.527042806057517],[120,173,64,-5.566188650138665],[120,173,65,-5.561818952054105],[120,173,66,-5.5469063153560585],[120,173,67,-5.527040903676836],[120,173,68,-5.512884407107365],[120,173,69,-5.510941801068043],[120,173,70,-5.521441643787609],[120,173,71,-5.548609423650986],[120,173,72,-5.589394217868092],[120,173,73,-5.633683539338019],[120,173,74,-5.655882317332232],[120,173,75,-5.665895052716514],[120,173,76,-5.656493370245933],[120,173,77,-5.639527008580906],[120,173,78,-5.611092506699943],[120,173,79,-5.572133053528234],[120,174,64,-5.610553655243727],[120,174,65,-5.607357371402479],[120,174,66,-5.591617072649374],[120,174,67,-5.5719187074174545],[120,174,68,-5.5603459892684315],[120,174,69,-5.559666278686568],[120,174,70,-5.570573955082791],[120,174,71,-5.595331507213881],[120,174,72,-5.63603702519263],[120,174,73,-5.680304211734854],[120,174,74,-5.704407614433946],[120,174,75,-5.715718637579401],[120,174,76,-5.706123777688454],[120,174,77,-5.688204200047907],[120,174,78,-5.658282527548536],[120,174,79,-5.619135465550406],[120,175,64,-5.653081454428499],[120,175,65,-5.649489662301248],[120,175,66,-5.6326200374572855],[120,175,67,-5.61376807233029],[120,175,68,-5.602230819768499],[120,175,69,-5.603643643212387],[120,175,70,-5.616634480215654],[120,175,71,-5.64173905755249],[120,175,72,-5.682360922723351],[120,175,73,-5.72873486312376],[120,175,74,-5.753571240509372],[120,175,75,-5.764287229339926],[120,175,76,-5.7561938386754266],[120,175,77,-5.738454131547313],[120,175,78,-5.710603537887782],[120,175,79,-5.668862621150153],[120,176,64,-5.700210227583341],[120,176,65,-5.696524622023405],[120,176,66,-5.679356902315899],[120,176,67,-5.659495334486044],[120,176,68,-5.646678409001201],[120,176,69,-5.649451485340024],[120,176,70,-5.662192451785579],[120,176,71,-5.6887998038939624],[120,176,72,-5.730274509896031],[120,176,73,-5.7760422178375626],[120,176,74,-5.799123361587529],[120,176,75,-5.810143034364593],[120,176,76,-5.803161511833731],[120,176,77,-5.786486235997446],[120,176,78,-5.757609675812618],[120,176,79,-5.718547959713897],[120,177,64,-5.753770046505888],[120,177,65,-5.746393705799066],[120,177,66,-5.726044027228909],[120,177,67,-5.707061353861243],[120,177,68,-5.693116731727871],[120,177,69,-5.698561384269061],[120,177,70,-5.7136482466594645],[120,177,71,-5.738804027701903],[120,177,72,-5.782618001298517],[120,177,73,-5.830388500753195],[120,177,74,-5.852867931043097],[120,177,75,-5.862427990711617],[120,177,76,-5.8574118399220305],[120,177,77,-5.836591388817151],[120,177,78,-5.802234713255595],[120,177,79,-5.7678095564257905],[120,178,64,-5.802926238499616],[120,178,65,-5.795454003627454],[120,178,66,-5.775122189384495],[120,178,67,-5.755992150477731],[120,178,68,-5.74540072879584],[120,178,69,-5.7522983058608474],[120,178,70,-5.765936903061337],[120,178,71,-5.791438388553765],[120,178,72,-5.833594001518094],[120,178,73,-5.879141756097306],[120,178,74,-5.905783917941004],[120,178,75,-5.91327076117534],[120,178,76,-5.912641422861297],[120,178,77,-5.8910450426945005],[120,178,78,-5.85614392722884],[120,178,79,-5.818747122850159],[120,179,64,-5.847016641715764],[120,179,65,-5.842606693014507],[120,179,66,-5.820697502173416],[120,179,67,-5.800755753817934],[120,179,68,-5.791341198681184],[120,179,69,-5.796663539365452],[120,179,70,-5.812615973628122],[120,179,71,-5.840127944307277],[120,179,72,-5.8794871973105],[120,179,73,-5.925114426834836],[120,179,74,-5.951836466347897],[120,179,75,-5.960847395925821],[120,179,76,-5.956802431547516],[120,179,77,-5.938122266990662],[120,179,78,-5.905394518899338],[120,179,79,-5.87103535125398],[120,180,64,-5.880149349972265],[120,180,65,-5.876642681878287],[120,180,66,-5.8562192919279425],[120,180,67,-5.837179739672527],[120,180,68,-5.827025891636614],[120,180,69,-5.834577960146632],[120,180,70,-5.85267398218481],[120,180,71,-5.880132501323292],[120,180,72,-5.919111191792446],[120,180,73,-5.960912530312949],[120,180,74,-5.9890883430288975],[120,180,75,-6.000403143405623],[120,180,76,-5.9962913213100455],[120,180,77,-5.979146134751102],[120,180,78,-5.9485150394126],[120,180,79,-5.920558654935572],[120,181,64,-5.918126643265351],[120,181,65,-5.914400745690934],[120,181,66,-5.899540005904046],[120,181,67,-5.882813619572527],[120,181,68,-5.874534008842944],[120,181,69,-5.880390986371088],[120,181,70,-5.897071615389819],[120,181,71,-5.921833350233453],[120,181,72,-5.957477725727433],[120,181,73,-5.995255268421466],[120,181,74,-6.022227221047229],[120,181,75,-6.035987065451253],[120,181,76,-6.035993204243447],[120,181,77,-6.0308073090667795],[120,181,78,-6.0281974166144145],[120,181,79,-6.010526361992085],[120,182,64,-5.965611297459166],[120,182,65,-5.959735906090353],[120,182,66,-5.946129989332147],[120,182,67,-5.93109887687391],[120,182,68,-5.921105085485938],[120,182,69,-5.925064430312845],[120,182,70,-5.942387946473498],[120,182,71,-5.966562431572977],[120,182,72,-6.002375372508129],[120,182,73,-6.039804094886536],[120,182,74,-6.06968614576763],[120,182,75,-6.083423397298569],[120,182,76,-6.080913599113564],[120,182,77,-6.079543808002545],[120,182,78,-6.080200533207494],[120,182,79,-6.065927823488576],[120,183,64,-6.008507646132485],[120,183,65,-6.004068514364974],[120,183,66,-5.992590898181539],[120,183,67,-5.979547493137718],[120,183,68,-5.96716738668714],[120,183,69,-5.969471541889125],[120,183,70,-5.9873449655918165],[120,183,71,-6.012454592837188],[120,183,72,-6.048345817946277],[120,183,73,-6.087870283930484],[120,183,74,-6.115610568023629],[120,183,75,-6.131673942168656],[120,183,76,-6.129352218023962],[120,183,77,-6.115866549724553],[120,183,78,-6.116466408149537],[120,183,79,-6.104425724118293],[120,184,64,-6.054804981135098],[120,184,65,-6.053803036461263],[120,184,66,-6.040203312174924],[120,184,67,-6.026798328358518],[120,184,68,-6.014429312705953],[120,184,69,-6.016163931070492],[120,184,70,-6.033592398560365],[120,184,71,-6.0601967649883735],[120,184,72,-6.094494090441351],[120,184,73,-6.135276211156058],[120,184,74,-6.162367621685292],[120,184,75,-6.175783333555894],[120,184,76,-6.173128395448639],[120,184,77,-6.16996418772227],[120,184,78,-6.169486425863195],[120,184,79,-6.154261854564845],[120,185,64,-6.1051774034588195],[120,185,65,-6.1014464950605865],[120,185,66,-6.08689213919763],[120,185,67,-6.074993704610719],[120,185,68,-6.0621726060694],[120,185,69,-6.06521088986933],[120,185,70,-6.079372637399221],[120,185,71,-6.106448187655346],[120,185,72,-6.145368630794265],[120,185,73,-6.1860460722672315],[120,185,74,-6.210438859393482],[120,185,75,-6.223068376718563],[120,185,76,-6.220136246917683],[120,185,77,-6.221463334524828],[120,185,78,-6.218078825587261],[120,185,79,-6.200827484200203],[120,186,64,-6.1597575043705275],[120,186,65,-6.154649485377862],[120,186,66,-6.139931100874387],[120,186,67,-6.125635254221969],[120,186,68,-6.115126651872513],[120,186,69,-6.117361905459901],[120,186,70,-6.133869568607609],[120,186,71,-6.158791316300911],[120,186,72,-6.196724389446623],[120,186,73,-6.239984906958524],[120,186,74,-6.2626229302356915],[120,186,75,-6.274589928874609],[120,186,76,-6.270483576234711],[120,186,77,-6.270236431751874],[120,186,78,-6.268076344402826],[120,186,79,-6.248025585494683],[120,187,64,-6.211401980652546],[120,187,65,-6.2072207430589],[120,187,66,-6.189356939846554],[120,187,67,-6.172706585320656],[120,187,68,-6.161996082731094],[120,187,69,-6.165109591353566],[120,187,70,-6.183912645450751],[120,187,71,-6.206071289259215],[120,187,72,-6.244774475335103],[120,187,73,-6.287705083358486],[120,187,74,-6.311754618352387],[120,187,75,-6.322172311180435],[120,187,76,-6.317384853471309],[120,187,77,-6.328500965535106],[120,187,78,-6.330411112738151],[120,187,79,-6.307839908279159],[120,188,64,-6.273283439942709],[120,188,65,-6.26477803620391],[120,188,66,-6.2422654797154635],[120,188,67,-6.220079402444035],[120,188,68,-6.204532112559686],[120,188,69,-6.207412787311421],[120,188,70,-6.225582459674164],[120,188,71,-6.245599230957805],[120,188,72,-6.284302334908052],[120,188,73,-6.327436947846563],[120,188,74,-6.351075111938094],[120,188,75,-6.357225743854381],[120,188,76,-6.35772987817671],[120,188,77,-6.3728403628790575],[120,188,78,-6.377310300787135],[120,188,79,-6.349404976072067],[120,189,64,-6.334678618317855],[120,189,65,-6.320630343519741],[120,189,66,-6.29632302262877],[120,189,67,-6.270960089681927],[120,189,68,-6.253955907353804],[120,189,69,-6.258268793424008],[120,189,70,-6.2724971326441095],[120,189,71,-6.2933490212104015],[120,189,72,-6.3269971903942395],[120,189,73,-6.368968711707336],[120,189,74,-6.393828693856381],[120,189,75,-6.3983581749770195],[120,189,76,-6.4004619907298865],[120,189,77,-6.41906379353106],[120,189,78,-6.425405986849753],[120,189,79,-6.396884061337032],[120,190,64,-6.38218443762096],[120,190,65,-6.369005151202122],[120,190,66,-6.345205603303779],[120,190,67,-6.319344458532072],[120,190,68,-6.303827061951455],[120,190,69,-6.3084286405200185],[120,190,70,-6.32211226810402],[120,190,71,-6.341314726837957],[120,190,72,-6.375744808647978],[120,190,73,-6.415807438141215],[120,190,74,-6.440409906881612],[120,190,75,-6.447065630286814],[120,190,76,-6.4530665804861105],[120,190,77,-6.474160185718515],[120,190,78,-6.477876361195731],[120,190,79,-6.44603174176384],[120,191,64,-6.427092182774031],[120,191,65,-6.415319347026395],[120,191,66,-6.3927136397645405],[120,191,67,-6.367496323823076],[120,191,68,-6.351102643479822],[120,191,69,-6.355960036483682],[120,191,70,-6.369271760940723],[120,191,71,-6.3911760431058315],[120,191,72,-6.424995730301881],[120,191,73,-6.46590721916828],[120,191,74,-6.487450654358557],[120,191,75,-6.498225381875096],[120,191,76,-6.502832955838719],[120,191,77,-6.522759276487653],[120,191,78,-6.520151780498689],[120,191,79,-6.492783884615574],[120,192,64,-6.473714308012931],[120,192,65,-6.462277832151591],[120,192,66,-6.441915016419842],[120,192,67,-6.416542870509865],[120,192,68,-6.400674573765095],[120,192,69,-6.40411531589545],[120,192,70,-6.417960165613416],[120,192,71,-6.439516752691119],[120,192,72,-6.475705067965911],[120,192,73,-6.514276510506868],[120,192,74,-6.534335103657715],[120,192,75,-6.54522312346357],[120,192,76,-6.552933017542078],[120,192,77,-6.574097236027651],[120,192,78,-6.574600390348193],[120,192,79,-6.543943482653125],[120,193,64,-6.512762882226845],[120,193,65,-6.504725466373097],[120,193,66,-6.4868979654547525],[120,193,67,-6.464147223534906],[120,193,68,-6.450051146460738],[120,193,69,-6.4520196553122355],[120,193,70,-6.465118798688109],[120,193,71,-6.492207820424859],[120,193,72,-6.532461702668115],[120,193,73,-6.573799179184499],[120,193,74,-6.593647172397779],[120,193,75,-6.603883869224167],[120,193,76,-6.6151018452155625],[120,193,77,-6.621614811574112],[120,193,78,-6.61252466108847],[120,193,79,-6.582300915276964],[120,194,64,-6.5684551470287555],[120,194,65,-6.5613470599388215],[120,194,66,-6.540664549503319],[120,194,67,-6.516046478960259],[120,194,68,-6.503144804065752],[120,194,69,-6.50308453270923],[120,194,70,-6.515426018174001],[120,194,71,-6.546480546702753],[120,194,72,-6.586106506063501],[120,194,73,-6.625987001101515],[120,194,74,-6.650014871121613],[120,194,75,-6.655974534878108],[120,194,76,-6.667412633168157],[120,194,77,-6.674668250326286],[120,194,78,-6.667846187875709],[120,194,79,-6.636263055451419],[120,195,64,-6.6183166287105895],[120,195,65,-6.612687243406123],[120,195,66,-6.588911906680531],[120,195,67,-6.561630966033144],[120,195,68,-6.549318835563756],[120,195,69,-6.5481626139300895],[120,195,70,-6.562162414026303],[120,195,71,-6.5934473242696345],[120,195,72,-6.634241625365216],[120,195,73,-6.674108977724073],[120,195,74,-6.699863552800617],[120,195,75,-6.703041282994772],[120,195,76,-6.722463613810768],[120,195,77,-6.734197647568623],[120,195,78,-6.721719459337785],[120,195,79,-6.6943004261441255],[120,196,64,-6.662517294553011],[120,196,65,-6.6576103805103575],[120,196,66,-6.63946146033204],[120,196,67,-6.615237248398574],[120,196,68,-6.602281374928479],[120,196,69,-6.60426619533672],[120,196,70,-6.622417367864023],[120,196,71,-6.6505575446714245],[120,196,72,-6.693511833893226],[120,196,73,-6.737214450039327],[120,196,74,-6.76002832131232],[120,196,75,-6.766094883427849],[120,196,76,-6.791989685673704],[120,196,77,-6.800528604590653],[120,196,78,-6.787550572924569],[120,196,79,-6.761900601470596],[120,197,64,-6.71076308506672],[120,197,65,-6.705743860667906],[120,197,66,-6.68694175293408],[120,197,67,-6.6636622424353655],[120,197,68,-6.652349552472129],[120,197,69,-6.653004368264574],[120,197,70,-6.667583994403556],[120,197,71,-6.6946971674277505],[120,197,72,-6.739023990284163],[120,197,73,-6.782146628155055],[120,197,74,-6.8082965277372995],[120,197,75,-6.814373008535892],[120,197,76,-6.840963640335911],[120,197,77,-6.845251549617903],[120,197,78,-6.840065153982745],[120,197,79,-6.812790491155458],[120,198,64,-6.759244652751849],[120,198,65,-6.754752060981314],[120,198,66,-6.734275033373789],[120,198,67,-6.714170880301357],[120,198,68,-6.700725020535466],[120,198,69,-6.7020855033142555],[120,198,70,-6.714664366796188],[120,198,71,-6.74042823939672],[120,198,72,-6.784722272038619],[120,198,73,-6.829402603599121],[120,198,74,-6.85486230075242],[120,198,75,-6.861754016028347],[120,198,76,-6.884654483325083],[120,198,77,-6.891154483143499],[120,198,78,-6.887252970061847],[120,198,79,-6.855924478719389],[120,199,64,-6.806339974130403],[120,199,65,-6.80121977279672],[120,199,66,-6.782253213358856],[120,199,67,-6.763178787632488],[120,199,68,-6.74872873792837],[120,199,69,-6.7482403131111655],[120,199,70,-6.759483054908004],[120,199,71,-6.78735966619534],[120,199,72,-6.83239925690345],[120,199,73,-6.875431552046363],[120,199,74,-6.899477331662752],[120,199,75,-6.9170323071664415],[120,199,76,-6.936869718095186],[120,199,77,-6.9538214037010215],[120,199,78,-6.931662316844116],[120,199,79,-6.90050827499309],[120,200,64,-6.855067708025839],[120,200,65,-6.849054946495522],[120,200,66,-6.831744531206847],[120,200,67,-6.812947586477299],[120,200,68,-6.796872404337775],[120,200,69,-6.796021203424385],[120,200,70,-6.806643065473234],[120,200,71,-6.832732191592902],[120,200,72,-6.8753087033704725],[120,200,73,-6.920650773508944],[120,200,74,-6.944538178686981],[120,200,75,-6.967188712741735],[120,200,76,-6.988657207615709],[120,200,77,-7.005506775825311],[120,200,78,-6.978211895373384],[120,200,79,-6.946629477571681],[120,201,64,-6.899067065993635],[120,201,65,-6.888966483362071],[120,201,66,-6.872945163055974],[120,201,67,-6.8547497901961885],[120,201,68,-6.838945532183494],[120,201,69,-6.836822076474631],[120,201,70,-6.84745491937028],[120,201,71,-6.873311636088205],[120,201,72,-6.912940853639395],[120,201,73,-6.9556838781849475],[120,201,74,-6.982543554137931],[120,201,75,-7.009912881733308],[120,201,76,-7.040603780489416],[120,201,77,-7.048529561855163],[120,201,78,-7.020748991431771],[120,201,79,-6.98960562894872],[120,202,64,-6.954342106459983],[120,202,65,-6.945803134858307],[120,202,66,-6.927039023328064],[120,202,67,-6.908823189863444],[120,202,68,-6.894006953977194],[120,202,69,-6.891791193861118],[120,202,70,-6.900968057063388],[120,202,71,-6.927354405794582],[120,202,72,-6.9677764234456],[120,202,73,-7.0106511193743435],[120,202,74,-7.035493167236759],[120,202,75,-7.057575948206909],[120,202,76,-7.089996671615155],[120,202,77,-7.097366866004064],[120,202,78,-7.070773192149847],[120,202,79,-7.0378583902848435],[120,203,64,-7.005745858194488],[120,203,65,-6.998429110837859],[120,203,66,-6.980378880638885],[120,203,67,-6.95843189405508],[120,203,68,-6.941604029686444],[120,203,69,-6.9390182674292635],[120,203,70,-6.949822536725348],[120,203,71,-6.976324995806729],[120,203,72,-7.017536200662545],[120,203,73,-7.060875036449447],[120,203,74,-7.084898150388206],[120,203,75,-7.11122931850055],[120,203,76,-7.154627196932022],[120,203,77,-7.15870049728143],[120,203,78,-7.13000709800342],[120,203,79,-7.0958222452523865],[120,204,64,-7.055458473617422],[120,204,65,-7.044751167569896],[120,204,66,-7.022291184336691],[120,204,67,-6.998219009798059],[120,204,68,-6.977661634768315],[120,204,69,-6.972593882562768],[120,204,70,-6.9823699745111965],[120,204,71,-7.009234101804601],[120,204,72,-7.052206611724233],[120,204,73,-7.094057749786048],[120,204,74,-7.11869434112826],[120,204,75,-7.1512973312938755],[120,204,76,-7.2003638969282555],[120,204,77,-7.202746782183347],[120,204,78,-7.176103213563579],[120,204,79,-7.142779182736937],[120,205,64,-7.114987701352121],[120,205,65,-7.105240167123824],[120,205,66,-7.08020503916581],[120,205,67,-7.058352323711444],[120,205,68,-7.039535445258562],[120,205,69,-7.030250630170249],[120,205,70,-7.042413552230495],[120,205,71,-7.068670424622392],[120,205,72,-7.109018245079737],[120,205,73,-7.155466306624426],[120,205,74,-7.180795741328337],[120,205,75,-7.191155668316813],[120,205,76,-7.2027248046540695],[120,205,77,-7.2081198191777345],[120,205,78,-7.209575562463967],[120,205,79,-7.192471912134849],[120,206,64,-7.162151981538906],[120,206,65,-7.155755612385573],[120,206,66,-7.1323864196708655],[120,206,67,-7.107420698915784],[120,206,68,-7.089664011921908],[120,206,69,-7.082134578725016],[120,206,70,-7.091036118510179],[120,206,71,-7.115128818855819],[120,206,72,-7.157194266544185],[120,206,73,-7.202264020418234],[120,206,74,-7.228406014171902],[120,206,75,-7.239547832219101],[120,206,76,-7.248489357537236],[120,206,77,-7.2617734598527495],[120,206,78,-7.261914869677272],[120,206,79,-7.243086171269428],[120,207,64,-7.213415354127864],[120,207,65,-7.207735113011689],[120,207,66,-7.1835964340260965],[120,207,67,-7.157031603813437],[120,207,68,-7.140765080876799],[120,207,69,-7.132708915886909],[120,207,70,-7.140254978933788],[120,207,71,-7.165174121750338],[120,207,72,-7.2050361044857425],[120,207,73,-7.249915391998596],[120,207,74,-7.277874139540039],[120,207,75,-7.290656959727812],[120,207,76,-7.291145534141314],[120,207,77,-7.298080190216909],[120,207,78,-7.301813739075395],[120,207,79,-7.288473389683009],[120,208,64,-7.264618355141172],[120,208,65,-7.257301441578992],[120,208,66,-7.23490281973994],[120,208,67,-7.206126720877519],[120,208,68,-7.189373721181495],[120,208,69,-7.181485518267898],[120,208,70,-7.187149944663215],[120,208,71,-7.213417954172732],[120,208,72,-7.254680638072046],[120,208,73,-7.298967832061618],[120,208,74,-7.326475022066209],[120,208,75,-7.339205829372497],[120,208,76,-7.329005691729122],[120,208,77,-7.327289853364181],[120,208,78,-7.335343847869358],[120,208,79,-7.335113998311637],[120,209,64,-7.316501406587065],[120,209,65,-7.3067129518246645],[120,209,66,-7.284910559573066],[120,209,67,-7.256776898567892],[120,209,68,-7.236146492783921],[120,209,69,-7.231631585164739],[120,209,70,-7.237385185303785],[120,209,71,-7.2597297589564],[120,209,72,-7.301651558884573],[120,209,73,-7.347389851421565],[120,209,74,-7.374247544599349],[120,209,75,-7.385914041637449],[120,209,76,-7.375777564375992],[120,209,77,-7.3798999823456946],[120,209,78,-7.3845577635193935],[120,209,79,-7.381590264139102],[120,210,64,-7.371212656649903],[120,210,65,-7.359346663347019],[120,210,66,-7.3389825957857235],[120,210,67,-7.308934624933274],[120,210,68,-7.289811690845759],[120,210,69,-7.283329554039079],[120,210,70,-7.290223008939227],[120,210,71,-7.312989677898],[120,210,72,-7.352921802136304],[120,210,73,-7.3978532068246174],[120,210,74,-7.425475986611749],[120,210,75,-7.436390182273189],[120,210,76,-7.429569682512355],[120,210,77,-7.430371775174468],[120,210,78,-7.435600823078605],[120,210,79,-7.431960153513826],[120,211,64,-7.417819336588],[120,211,65,-7.40720546417034],[120,211,66,-7.386107992551374],[120,211,67,-7.355981870132877],[120,211,68,-7.336243882605069],[120,211,69,-7.331839446871152],[120,211,70,-7.33980615097356],[120,211,71,-7.363643503636118],[120,211,72,-7.4029882011542725],[120,211,73,-7.445457038451519],[120,211,74,-7.47593264468895],[120,211,75,-7.484228104677902],[120,211,76,-7.478733626045043],[120,211,77,-7.484048329390545],[120,211,78,-7.493972978909389],[120,211,79,-7.491604702588381],[120,212,64,-7.445615331474128],[120,212,65,-7.439047944955631],[120,212,66,-7.421256904138536],[120,212,67,-7.399273776689884],[120,212,68,-7.384219361647499],[120,212,69,-7.387207692311823],[120,212,70,-7.400939060403494],[120,212,71,-7.426768817277263],[120,212,72,-7.468100055731918],[120,212,73,-7.508599364137017],[120,212,74,-7.5399223252941034],[120,212,75,-7.546682505252788],[120,212,76,-7.53760832582668],[120,212,77,-7.544855518736368],[120,212,78,-7.552151739405803],[120,212,79,-7.5376188552499785],[120,213,64,-7.497476214092728],[120,213,65,-7.487320085815122],[120,213,66,-7.467630376463043],[120,213,67,-7.44664834062909],[120,213,68,-7.42974523027744],[120,213,69,-7.4340959178360855],[120,213,70,-7.447357890518658],[120,213,71,-7.474048364094215],[120,213,72,-7.5092437146171465],[120,213,73,-7.548648996070445],[120,213,74,-7.577501118272133],[120,213,75,-7.585097728286969],[120,213,76,-7.589663447219497],[120,213,77,-7.62573814811173],[120,213,78,-7.627879111951511],[120,213,79,-7.5877649663324425],[120,214,64,-7.544647271962018],[120,214,65,-7.536110800797123],[120,214,66,-7.515595713626563],[120,214,67,-7.496132524471192],[120,214,68,-7.479313576050002],[120,214,69,-7.483954108806721],[120,214,70,-7.498615003080256],[120,214,71,-7.522191122122856],[120,214,72,-7.557238179353257],[120,214,73,-7.599492574085744],[120,214,74,-7.628652498593539],[120,214,75,-7.6359839205995605],[120,214,76,-7.650543442183052],[120,214,77,-7.686072744765239],[120,214,78,-7.678284495369269],[120,214,79,-7.637434814099193],[120,215,64,-7.593433118229078],[120,215,65,-7.586342506077697],[120,215,66,-7.566008913460669],[120,215,67,-7.545374619042235],[120,215,68,-7.529540390852278],[120,215,69,-7.5330310175378195],[120,215,70,-7.5479027040507916],[120,215,71,-7.57158836744202],[120,215,72,-7.609830170139011],[120,215,73,-7.6506840854032845],[120,215,74,-7.681735322551122],[120,215,75,-7.688417805816839],[120,215,76,-7.701826836518481],[120,215,77,-7.738206939577646],[120,215,78,-7.727771292130179],[120,215,79,-7.684542021426345],[120,216,64,-7.6388761146841695],[120,216,65,-7.634573780825048],[120,216,66,-7.614136966955065],[120,216,67,-7.592607764139331],[120,216,68,-7.577612488036912],[120,216,69,-7.580385011182251],[120,216,70,-7.59894913642159],[120,216,71,-7.619166883655274],[120,216,72,-7.658519031283723],[120,216,73,-7.702483605898655],[120,216,74,-7.730554476359174],[120,216,75,-7.738566650812346],[120,216,76,-7.766787402880876],[120,216,77,-7.800037358321085],[120,216,78,-7.777146528603902],[120,216,79,-7.7349939822675156],[120,217,64,-7.67593112416612],[120,217,65,-7.676091260330949],[120,217,66,-7.660318787777651],[120,217,67,-7.641318300250629],[120,217,68,-7.628803430729234],[120,217,69,-7.63133008112821],[120,217,70,-7.650397931277207],[120,217,71,-7.675480693743615],[120,217,72,-7.71461487551893],[120,217,73,-7.761038630581276],[120,217,74,-7.788409577587281],[120,217,75,-7.800468445343141],[120,217,76,-7.835877218244703],[120,217,77,-7.863502816746068],[120,217,78,-7.827038783215518],[120,217,79,-7.782792855294437],[120,218,64,-7.730366564858961],[120,218,65,-7.732038354482848],[120,218,66,-7.71634293485596],[120,218,67,-7.696566653430125],[120,218,68,-7.68320997124095],[120,218,69,-7.683230014601228],[120,218,70,-7.702037486554148],[120,218,71,-7.728236569857754],[120,218,72,-7.769838894984176],[120,218,73,-7.815039816017856],[120,218,74,-7.83987932158079],[120,218,75,-7.855364115489544],[120,218,76,-7.887012591202201],[120,218,77,-7.919138004110051],[120,218,78,-7.881387175607474],[120,218,79,-7.833019565063606],[120,219,64,-7.7802093697660535],[120,219,65,-7.779122885519762],[120,219,66,-7.763940950911598],[120,219,67,-7.7438550599309375],[120,219,68,-7.731905824148644],[120,219,69,-7.7327707915860815],[120,219,70,-7.748054760633481],[120,219,71,-7.773610392284439],[120,219,72,-7.819465318608743],[120,219,73,-7.8632484883145395],[120,219,74,-7.888373747077782],[120,219,75,-7.917938445048788],[120,219,76,-7.947282764307452],[120,219,77,-7.9786084795552314],[120,219,78,-7.94234424210315],[120,219,79,-7.89213416519662],[120,220,64,-7.8261513564997065],[120,220,65,-7.822328572309408],[120,220,66,-7.804600602635999],[120,220,67,-7.783097854575026],[120,220,68,-7.7685478040690805],[120,220,69,-7.769132694820937],[120,220,70,-7.779861517889464],[120,220,71,-7.807169286392682],[120,220,72,-7.851882698188196],[120,220,73,-7.894546109221357],[120,220,74,-7.921486657041564],[120,220,75,-7.964611010233836],[120,220,76,-8.010044849102474],[120,220,77,-8.03133007258494],[120,220,78,-7.9954251548252415],[120,220,79,-7.945059079086164],[120,221,64,-7.872259727985419],[120,221,65,-7.867247764523254],[120,221,66,-7.853646037355214],[120,221,67,-7.833152342799778],[120,221,68,-7.818605802662281],[120,221,69,-7.816540448795162],[120,221,70,-7.826452848275593],[120,221,71,-7.853680747549178],[120,221,72,-7.899670328419827],[120,221,73,-7.946699361572596],[120,221,74,-8.023628087829309],[120,221,75,-8.074361573675336],[120,221,76,-8.109418662189164],[120,221,77,-8.081086979740109],[120,221,78,-8.042264153477857],[120,221,79,-7.9952512413375185],[120,222,64,-7.9211956334820925],[120,222,65,-7.914964293197344],[120,222,66,-7.901926786625029],[120,222,67,-7.880378598313112],[120,222,68,-7.865780819939264],[120,222,69,-7.863739284516318],[120,222,70,-7.87471055066189],[120,222,71,-7.899629201384765],[120,222,72,-7.94777882483224],[120,222,73,-8.001149532321124],[120,222,74,-8.082872971108937],[120,222,75,-8.131751192895532],[120,222,76,-8.157818287910894],[120,222,77,-8.130782406291862],[120,222,78,-8.089798882909546],[120,222,79,-8.0424099684472],[120,223,64,-7.975638025076176],[120,223,65,-7.968404598489673],[120,223,66,-7.955976066197272],[120,223,67,-7.93250527905193],[120,223,68,-7.914382032735022],[120,223,69,-7.911627846678491],[120,223,70,-7.922336510795729],[120,223,71,-7.948606802976043],[120,223,72,-7.9967527000431184],[120,223,73,-8.042112868162768],[120,223,74,-8.130968712420383],[120,223,75,-8.196562749075772],[120,223,76,-8.20655963155755],[120,223,77,-8.179519423063187],[120,223,78,-8.134731625022384],[120,223,79,-8.088561173725287],[120,224,64,-8.024760891363625],[120,224,65,-8.020288443530017],[120,224,66,-8.00366052481571],[120,224,67,-7.979634832287346],[120,224,68,-7.962586891836626],[120,224,69,-7.959174970036635],[120,224,70,-7.970589415272955],[120,224,71,-7.998382767000182],[120,224,72,-8.043965323086326],[120,224,73,-8.08757525612208],[120,224,74,-8.187350402574085],[120,224,75,-8.253128053432329],[120,224,76,-8.256832117081316],[120,224,77,-8.229488997431512],[120,224,78,-8.186676778400857],[120,224,79,-8.136483047529326],[120,225,64,-8.083086496297463],[120,225,65,-8.074045532605318],[120,225,66,-8.048839127730208],[120,225,67,-8.018833362864385],[120,225,68,-8.00085064285857],[120,225,69,-7.996383059467405],[120,225,70,-8.00954589811191],[120,225,71,-8.040779643638187],[120,225,72,-8.082256716988754],[120,225,73,-8.122435521443471],[120,225,74,-8.242505539562673],[120,225,75,-8.314215070788698],[120,225,76,-8.307099846868647],[120,225,77,-8.279946417954031],[120,225,78,-8.239066808051236],[120,225,79,-8.189615848405635],[120,226,64,-8.139991445817955],[120,226,65,-8.127539847619227],[120,226,66,-8.101911278176273],[120,226,67,-8.072295144900021],[120,226,68,-8.052648821208056],[120,226,69,-8.048806487031072],[120,226,70,-8.065163283109387],[120,226,71,-8.09339570122633],[120,226,72,-8.134731733962699],[120,226,73,-8.17468634773499],[120,226,74,-8.289934134406753],[120,226,75,-8.358552550192549],[120,226,76,-8.356637645169307],[120,226,77,-8.327726914498957],[120,226,78,-8.290142078399379],[120,226,79,-8.242617989307359],[120,227,64,-8.187625270606699],[120,227,65,-8.176599960832712],[120,227,66,-8.15119645122001],[120,227,67,-8.122497222664816],[120,227,68,-8.098849244636204],[120,227,69,-8.097653709469594],[120,227,70,-8.114041670208437],[120,227,71,-8.139601023407604],[120,227,72,-8.182217727979499],[120,227,73,-8.221269756701098],[120,227,74,-8.351794349251284],[120,227,75,-8.420145215348285],[120,227,76,-8.412875023579648],[120,227,77,-8.384785318744282],[120,227,78,-8.348483270790679],[120,227,79,-8.301308706588818],[120,228,64,-8.223629649119127],[120,228,65,-8.214671136705926],[120,228,66,-8.190366676005135],[120,228,67,-8.160523450807197],[120,228,68,-8.137005254956017],[120,228,69,-8.133428043659615],[120,228,70,-8.15068307170496],[120,228,71,-8.175186962086606],[120,228,72,-8.218844595613916],[120,228,73,-8.256047891279668],[120,228,74,-8.396194307491855],[120,228,75,-8.460725616601096],[120,228,76,-8.461184470172329],[120,228,77,-8.434110109421836],[120,228,78,-8.397701130082229],[120,228,79,-8.352832262393461],[120,229,64,-8.26291754599004],[120,229,65,-8.26093514254368],[120,229,66,-8.24322629427657],[120,229,67,-8.218747123153081],[120,229,68,-8.198575757954126],[120,229,69,-8.192371279443002],[120,229,70,-8.208625266540231],[120,229,71,-8.235367545051872],[120,229,72,-8.279389658418038],[120,229,73,-8.375511654427088],[120,229,74,-8.510041667358568],[120,229,75,-8.51965441905118],[120,229,76,-8.511620352579284],[120,229,77,-8.486753771933225],[120,229,78,-8.44633262806312],[120,229,79,-8.404120896174245],[120,230,64,-8.308803656611673],[120,230,65,-8.308410438483332],[120,230,66,-8.291273176400313],[120,230,67,-8.270457978902675],[120,230,68,-8.251235114757717],[120,230,69,-8.243826230947136],[120,230,70,-8.256948846761158],[120,230,71,-8.283606879938185],[120,230,72,-8.327336296212776],[120,230,73,-8.440486426107263],[120,230,74,-8.55625252055917],[120,230,75,-8.574069037569148],[120,230,76,-8.56685862687488],[120,230,77,-8.542835114902235],[120,230,78,-8.502924242159866],[120,230,79,-8.456680677946752],[120,231,64,-8.360057015325966],[120,231,65,-8.361210346212209],[120,231,66,-8.345303811068817],[120,231,67,-8.32670022915123],[120,231,68,-8.307778752947446],[120,231,69,-8.29751580387071],[120,231,70,-8.308655765727295],[120,231,71,-8.334172138612606],[120,231,72,-8.393508217254583],[120,231,73,-8.501305105059345],[120,231,74,-8.575712136091628],[120,231,75,-8.621159622730781],[120,231,76,-8.614343194883032],[120,231,77,-8.589290510352917],[120,231,78,-8.551687807584157],[120,231,79,-8.503882902046353],[120,232,64,-8.406758738776695],[120,232,65,-8.407763259894331],[120,232,66,-8.392556674945459],[120,232,67,-8.376917083434263],[120,232,68,-8.356795731510784],[120,232,69,-8.34782761559209],[120,232,70,-8.358263684488708],[120,232,71,-8.38324178107243],[120,232,72,-8.454327541325997],[120,232,73,-8.556170262920755],[120,232,74,-8.630467930532033],[120,232,75,-8.669468136779066],[120,232,76,-8.662712933645293],[120,232,77,-8.638015390166723],[120,232,78,-8.602921295768565],[120,232,79,-8.555700578470729],[120,233,64,-8.454570471686527],[120,233,65,-8.453477895027767],[120,233,66,-8.440007466185623],[120,233,67,-8.423167683165854],[120,233,68,-8.405091336606324],[120,233,69,-8.397646661584877],[120,233,70,-8.407033909849412],[120,233,71,-8.435966350208693],[120,233,72,-8.513426743223754],[120,233,73,-8.607228240106622],[120,233,74,-8.694131398252626],[120,233,75,-8.722482724402862],[120,233,76,-8.714463808993697],[120,233,77,-8.692311230926329],[120,233,78,-8.65888211473697],[120,233,79,-8.608581346943085],[120,234,64,-8.50695729553469],[120,234,65,-8.505128908070692],[120,234,66,-8.491337260597467],[120,234,67,-8.473983851155483],[120,234,68,-8.455409504811913],[120,234,69,-8.451967559811532],[120,234,70,-8.461199924222386],[120,234,71,-8.487726245131391],[120,234,72,-8.545868738222282],[120,234,73,-8.629466050239705],[120,234,74,-8.72154747823806],[120,234,75,-8.749136823566529],[120,234,76,-8.758647566146712],[120,234,77,-8.737965999642675],[120,234,78,-8.703020561956244],[120,234,79,-8.653037912319835],[120,235,64,-8.554885780599866],[120,235,65,-8.552337000824977],[120,235,66,-8.53862866809608],[120,235,67,-8.520473328819168],[120,235,68,-8.502304735639331],[120,235,69,-8.498500309113119],[120,235,70,-8.50871599978361],[120,235,71,-8.533962828389129],[120,235,72,-8.577954070013053],[120,235,73,-8.62106196590218],[120,235,74,-8.667546651950012],[120,235,75,-8.698001103667519],[120,235,76,-8.7545673864564],[120,235,77,-8.792162408904955],[120,235,78,-8.759643774072407],[120,235,79,-8.709103131447732],[120,236,64,-8.61834099197184],[120,236,65,-8.61838746155274],[120,236,66,-8.606336674908217],[120,236,67,-8.585908855514033],[120,236,68,-8.56703009401236],[120,236,69,-8.56641031604714],[120,236,70,-8.575954742757855],[120,236,71,-8.601151068268516],[120,236,72,-8.64751817615255],[120,236,73,-8.690166816350205],[120,236,74,-8.739377267784226],[120,236,75,-8.771483031823875],[120,236,76,-8.807978108797945],[120,236,77,-8.847233919127483],[120,236,78,-8.81341276620167],[120,236,79,-8.766653265399468],[120,237,64,-8.66282917014608],[120,237,65,-8.662647008146125],[120,237,66,-8.650534996104126],[120,237,67,-8.634165605525586],[120,237,68,-8.613569014038],[120,237,69,-8.61151716430757],[120,237,70,-8.626158199383596],[120,237,71,-8.652775539267896],[120,237,72,-8.699298364510422],[120,237,73,-8.747207779931223],[120,237,74,-8.822407854947661],[120,237,75,-8.851242394062886],[120,237,76,-8.88128104813036],[120,237,77,-8.894867104494285],[120,237,78,-8.862611922417596],[120,237,79,-8.814874189532029],[120,238,64,-8.713253533196687],[120,238,65,-8.71314323623089],[120,238,66,-8.698478316668496],[120,238,67,-8.681681320456414],[120,238,68,-8.66432865011685],[120,238,69,-8.660229774445744],[120,238,70,-8.676781498428628],[120,238,71,-8.702211206134995],[120,238,72,-8.749248385378364],[120,238,73,-8.799437981956602],[120,238,74,-8.876673387647786],[120,238,75,-8.91959442851529],[120,238,76,-8.950874734724884],[120,238,77,-8.938897874017982],[120,238,78,-8.903637578646396],[120,238,79,-8.859025537951464],[120,239,64,-8.769544042778335],[120,239,65,-8.769189871342071],[120,239,66,-8.752926227879195],[120,239,67,-8.735960766863844],[120,239,68,-8.717558040971287],[120,239,69,-8.711997316188414],[120,239,70,-8.72809050985878],[120,239,71,-8.755284138310202],[120,239,72,-8.800119889496413],[120,239,73,-8.848937248288674],[120,239,74,-8.906509872149583],[120,239,75,-8.94729910964599],[120,239,76,-8.989191927797487],[120,239,77,-8.983614323853137],[120,239,78,-8.943968501652497],[120,239,79,-8.900812022318735],[120,240,64,-8.816861785522361],[120,240,65,-8.815118116909277],[120,240,66,-8.801519837469547],[120,240,67,-8.782744425712114],[120,240,68,-8.765363341043612],[120,240,69,-8.760353869389633],[120,240,70,-8.775523717102459],[120,240,71,-8.803688405788495],[120,240,72,-8.848930388845254],[120,240,73,-8.896077303420395],[120,240,74,-8.947074962054527],[120,240,75,-8.990732049324397],[120,240,76,-9.039396350403822],[120,240,77,-9.027122623047479],[120,240,78,-8.990130280747469],[120,240,79,-8.948179578298276],[120,241,64,-8.873801413375883],[120,241,65,-8.868905012825655],[120,241,66,-8.85138528462758],[120,241,67,-8.829587652069135],[120,241,68,-8.812865271910663],[120,241,69,-8.805324707551055],[120,241,70,-8.818068480106785],[120,241,71,-8.845732614593452],[120,241,72,-8.887647681609593],[120,241,73,-8.931872605458429],[120,241,74,-8.951926140246057],[120,241,75,-8.952311028877288],[120,241,76,-8.941272975322557],[120,241,77,-8.913077210609902],[120,241,78,-8.8758013867561],[120,241,79,-8.906830424935029],[120,242,64,-8.926370287895343],[120,242,65,-8.91915428821531],[120,242,66,-8.903233618512925],[120,242,67,-8.881738547992361],[120,242,68,-8.862030221780387],[120,242,69,-8.854649302624583],[120,242,70,-8.86745983530682],[120,242,71,-8.894333253993787],[120,242,72,-8.938154042983964],[120,242,73,-8.982185876249286],[120,242,74,-9.001726809205651],[120,242,75,-9.004128450106471],[120,242,76,-8.98950760650548],[120,242,77,-8.962702015589974],[120,242,78,-8.925801983969432],[120,242,79,-8.95093048856257],[120,243,64,-8.976348416486053],[120,243,65,-8.967031131259017],[120,243,66,-8.947097539486684],[120,243,67,-8.925686094543703],[120,243,68,-8.907549490329995],[120,243,69,-8.899683915219274],[120,243,70,-8.909300349645703],[120,243,71,-8.940249951634074],[120,243,72,-8.984376700422073],[120,243,73,-9.029480993160597],[120,243,74,-9.049377615133663],[120,243,75,-9.049792756538697],[120,243,76,-9.032726442546226],[120,243,77,-9.008538556202723],[120,243,78,-8.97396612338038],[120,243,79,-9.00949660939161],[120,244,64,-9.010109171836795],[120,244,65,-8.99673433194964],[120,244,66,-8.968040368411568],[120,244,67,-8.940720744396055],[120,244,68,-8.919254527926466],[120,244,69,-8.910314520760746],[120,244,70,-8.919768966157603],[120,244,71,-8.950925483295723],[120,244,72,-8.993116997186249],[120,244,73,-9.037590646466342],[120,244,74,-9.05940504303992],[120,244,75,-9.059287671357778],[120,244,76,-9.0419101578601],[120,244,77,-9.01757423877532],[120,244,78,-8.991769293943857],[120,244,79,-9.02738884952291],[120,245,64,-9.058664311268215],[120,245,65,-9.042954928062555],[120,245,66,-9.014777953606783],[120,245,67,-8.98323728590626],[120,245,68,-8.961597478574742],[120,245,69,-8.95518318009962],[120,245,70,-8.966458741840192],[120,245,71,-8.994632751616608],[120,245,72,-9.037730578874388],[120,245,73,-9.084931049893017],[120,245,74,-9.10761048707684],[120,245,75,-9.108043244529574],[120,245,76,-9.090339388647347],[120,245,77,-9.066109294221043],[120,245,78,-9.046907396925125],[120,245,79,-9.074072181343354],[120,246,64,-9.100050395050852],[120,246,65,-9.086672158378905],[120,246,66,-9.058653236948581],[120,246,67,-9.028387532353596],[120,246,68,-9.005584639704677],[120,246,69,-8.998014067074902],[120,246,70,-9.01310190003537],[120,246,71,-9.039136195668537],[120,246,72,-9.085957853338135],[120,246,73,-9.132222219148083],[120,246,74,-9.153587448269247],[120,246,75,-9.154982299916272],[120,246,76,-9.139481424423634],[120,246,77,-9.112723301348746],[120,246,78,-9.113265420511482],[120,246,79,-9.153280744296518],[120,247,64,-9.14958967462336],[120,247,65,-9.136125090612962],[120,247,66,-9.110878734123247],[120,247,67,-9.07883492007613],[120,247,68,-9.054656580438483],[120,247,69,-9.046801707323056],[120,247,70,-9.062132454326848],[120,247,71,-9.088546656390093],[120,247,72,-9.134575011464866],[120,247,73,-9.180242126589295],[120,247,74,-9.201670773438915],[120,247,75,-9.200327842419027],[120,247,76,-9.184835310635908],[120,247,77,-9.158205778563183],[120,247,78,-9.146037895214269],[120,247,79,-9.190845043906368],[120,248,64,-9.19236702859118],[120,248,65,-9.179944440294445],[120,248,66,-9.154637913302034],[120,248,67,-9.123315981690762],[120,248,68,-9.098479971515879],[120,248,69,-9.090580402636817],[120,248,70,-9.108518593325957],[120,248,71,-9.137496870998655],[120,248,72,-9.179747792183871],[120,248,73,-9.227332740527942],[120,248,74,-9.250089885483664],[120,248,75,-9.247818160343888],[120,248,76,-9.233341982186982],[120,248,77,-9.208789285621236],[120,248,78,-9.194810090758216],[120,248,79,-9.240566424461957],[120,249,64,-9.2407057362177],[120,249,65,-9.225461404231813],[120,249,66,-9.196139993679113],[120,249,67,-9.161686954090182],[120,249,68,-9.134790898633874],[120,249,69,-9.127022312431322],[120,249,70,-9.145270198900695],[120,249,71,-9.177554775083008],[120,249,72,-9.224394164015061],[120,249,73,-9.27447150827869],[120,249,74,-9.298672766908215],[120,249,75,-9.295919808100251],[120,249,76,-9.282053101889742],[120,249,77,-9.257951415050922],[120,249,78,-9.281674354672578],[120,249,79,-9.330040282345001],[120,250,64,-9.290009933823288],[120,250,65,-9.273413394191463],[120,250,66,-9.245754815934031],[120,250,67,-9.211218287773004],[120,250,68,-9.183937036322723],[120,250,69,-9.176395337099164],[120,250,70,-9.193676266115592],[120,250,71,-9.224473773286379],[120,250,72,-9.272528430561312],[120,250,73,-9.323475614341897],[120,250,74,-9.347442802261144],[120,250,75,-9.396455417918236],[120,250,76,-9.396134587471966],[120,250,77,-9.37811446393052],[120,250,78,-9.366464367267868],[120,250,79,-9.344884476493913],[120,251,64,-9.33302739899638],[120,251,65,-9.316701024411005],[120,251,66,-9.291276019614658],[120,251,67,-9.258158206123188],[120,251,68,-9.232504285811844],[120,251,69,-9.22365356616889],[120,251,70,-9.239553284183485],[120,251,71,-9.26917522930229],[120,251,72,-9.316843896220078],[120,251,73,-9.369620388853388],[120,251,74,-9.3944078701307],[120,251,75,-9.422754609911468],[120,251,76,-9.436754415444636],[120,251,77,-9.423103395626521],[120,251,78,-9.407419507899396],[120,251,79,-9.382023265933796],[120,252,64,-9.369568129008009],[120,252,65,-9.352922512228105],[120,252,66,-9.327688781810231],[120,252,67,-9.294863778239897],[120,252,68,-9.269170724993677],[120,252,69,-9.262015220642194],[120,252,70,-9.274174606692483],[120,252,71,-9.304894580586422],[120,252,72,-9.35424038682112],[120,252,73,-9.405890863580522],[120,252,74,-9.43013048399212],[120,252,75,-9.441882636671128],[120,252,76,-9.47518376506338],[120,252,77,-9.46942029352602],[120,252,78,-9.458052997825783],[120,252,79,-9.422967498686079],[120,253,64,-9.405757031472469],[120,253,65,-9.397042474232839],[120,253,66,-9.374911120633845],[120,253,67,-9.348032395939198],[120,253,68,-9.325389501501988],[120,253,69,-9.317074263894966],[120,253,70,-9.327774018869233],[120,253,71,-9.35703420876553],[120,253,72,-9.405442096778373],[120,253,73,-9.456321613347729],[120,253,74,-9.479077218845989],[120,253,75,-9.482391809131103],[120,253,76,-9.489145688011229],[120,253,77,-9.487017592512586],[120,253,78,-9.482551846364048],[120,253,79,-9.430700396235315],[120,254,64,-9.371116639767557],[120,254,65,-9.368954961463757],[120,254,66,-9.353627861021877],[120,254,67,-9.32991829740967],[120,254,68,-9.318479347021956],[120,254,69,-9.318949652603743],[120,254,70,-9.337801780023627],[120,254,71,-9.373676340356647],[120,254,72,-9.43409588955418],[120,254,73,-9.496407961728835],[120,254,74,-9.527582936626994],[120,254,75,-9.537977869928108],[120,254,76,-9.54724227057922],[120,254,77,-9.562630519481484],[120,254,78,-9.547318809183135],[120,254,79,-9.505774456291336],[120,255,64,-9.416097276805253],[120,255,65,-9.415508551269678],[120,255,66,-9.401015226658679],[120,255,67,-9.378479468068837],[120,255,68,-9.365140834545356],[120,255,69,-9.365815538689994],[120,255,70,-9.385332918866489],[120,255,71,-9.42108308671415],[120,255,72,-9.480939579371935],[120,255,73,-9.54310199952992],[120,255,74,-9.574681126083595],[120,255,75,-9.584461705219967],[120,255,76,-9.58337062832574],[120,255,77,-9.601858752205752],[120,255,78,-9.583755946524436],[120,255,79,-9.543176998085205],[120,256,64,-9.464922395584399],[120,256,65,-9.464282867291374],[120,256,66,-9.448667850424124],[120,256,67,-9.42570265890703],[120,256,68,-9.410529847201806],[120,256,69,-9.412005946115967],[120,256,70,-9.432857966725448],[120,256,71,-9.468528931245842],[120,256,72,-9.528370407145427],[120,256,73,-9.590657909612363],[120,256,74,-9.623501281895502],[120,256,75,-9.631457260260031],[120,256,76,-9.631010470517378],[120,256,77,-9.645153698296639],[120,256,78,-9.62818294224776],[120,256,79,-9.591746790144256],[120,257,64,-9.514335537106406],[120,257,65,-9.514247865756493],[120,257,66,-9.498472769076479],[120,257,67,-9.47103436888085],[120,257,68,-9.456419550797555],[120,257,69,-9.458599814684538],[120,257,70,-9.485273086821133],[120,257,71,-9.549246336101954],[120,257,72,-9.577720902671231],[120,257,73,-9.640573712168678],[120,257,74,-9.670999858452594],[120,257,75,-9.685809226614618],[120,257,76,-9.70875157981413],[120,257,77,-9.73225348572945],[120,257,78,-9.714021851588653],[120,257,79,-9.671760228728804],[120,258,64,-9.565909697240308],[120,258,65,-9.566552385284812],[120,258,66,-9.549473975103815],[120,258,67,-9.523247137582835],[120,258,68,-9.506093511498795],[120,258,69,-9.508368272340144],[120,258,70,-9.530447397469645],[120,258,71,-9.57360715986597],[120,258,72,-9.629995993592928],[120,258,73,-9.69051538086486],[120,258,74,-9.724086741590504],[120,258,75,-9.732758562417523],[120,258,76,-9.755284342807387],[120,258,77,-9.777538928448056],[120,258,78,-9.758414444263607],[120,258,79,-9.716903492909662],[120,259,64,-9.61357954569397],[120,259,65,-9.61236704527906],[120,259,66,-9.596093180370625],[120,259,67,-9.57180222978859],[120,259,68,-9.552351764178725],[120,259,69,-9.552768856659972],[120,259,70,-9.574768103477636],[120,259,71,-9.613639130618663],[120,259,72,-9.677395895629196],[120,259,73,-9.738093289807985],[120,259,74,-9.774089786553896],[120,259,75,-9.783292028407848],[120,259,76,-9.781953460760512],[120,259,77,-9.794678744845953],[120,259,78,-9.775400730445567],[120,259,79,-9.744118026218166],[120,260,64,-9.76822227147904],[120,260,65,-9.768630487848496],[120,260,66,-9.757654798320686],[120,260,67,-9.736529524492282],[120,260,68,-9.720143681768633],[120,260,69,-9.724016927028295],[120,260,70,-9.74841857445718],[120,260,71,-9.788974618234976],[120,260,72,-9.853735610327258],[120,260,73,-9.912687721529338],[120,260,74,-9.954386070515689],[120,260,75,-9.96495954393656],[120,260,76,-9.96244253286643],[120,260,77,-9.95460407684439],[120,260,78,-9.929216800241385],[120,260,79,-9.89592182146368],[120,261,64,-9.825697741609732],[120,261,65,-9.823861605619822],[120,261,66,-9.80585752657939],[120,261,67,-9.782061097097527],[120,261,68,-9.764951551297434],[120,261,69,-9.768927324131297],[120,261,70,-9.791588119992706],[120,261,71,-9.832964686638803],[120,261,72,-9.894400081283832],[120,261,73,-9.95246926012575],[120,261,74,-9.992312108888786],[120,261,75,-10.010879316827593],[120,261,76,-10.01777156573391],[120,261,77,-10.010504644988359],[120,261,78,-9.983550620683861],[120,261,79,-9.949140964552472],[120,262,64,-9.879993836002928],[120,262,65,-9.88088801226233],[120,262,66,-9.86008465652168],[120,262,67,-9.836260525082848],[120,262,68,-9.816943108663622],[120,262,69,-9.820592911454726],[120,262,70,-9.844001895625597],[120,262,71,-9.883984687131612],[120,262,72,-9.944493537586098],[120,262,73,-10.002990455519512],[120,262,74,-10.039694829586939],[120,262,75,-10.062628735562992],[120,262,76,-10.068714467542703],[120,262,77,-10.065968056352506],[120,262,78,-10.035323590427698],[120,262,79,-10.002038866990846],[120,263,64,-9.926714244698221],[120,263,65,-9.928311545342934],[120,263,66,-9.909579967214542],[120,263,67,-9.882639326753326],[120,263,68,-9.863623363033634],[120,263,69,-9.868794183350996],[120,263,70,-9.891043625523784],[120,263,71,-9.93149601185682],[120,263,72,-9.993127831026571],[120,263,73,-10.050213544344816],[120,263,74,-10.08667829875601],[120,263,75,-10.107907734527513],[120,263,76,-10.114034056406744],[120,263,77,-10.11154962584857],[120,263,78,-10.08560830126245],[120,263,79,-10.050301410994148],[120,264,64,-9.971616311777467],[120,264,65,-9.974920072650743],[120,264,66,-9.95546267380121],[120,264,67,-9.92995647994036],[120,264,68,-9.91042263055906],[120,264,69,-9.913992360115264],[120,264,70,-9.93711506901877],[120,264,71,-9.97743766766689],[120,264,72,-10.03978949445861],[120,264,73,-10.098858215480202],[120,264,74,-10.137659889722576],[120,264,75,-10.163394568346712],[120,264,76,-10.164928944783671],[120,264,77,-10.160062880339781],[120,264,78,-10.137391868375003],[120,264,79,-10.105427098423958],[120,265,64,-10.006927655909482],[120,265,65,-10.011063845374728],[120,265,66,-9.997937429605564],[120,265,67,-9.975893778406084],[120,265,68,-9.958924372051161],[120,265,69,-9.961605311389054],[120,265,70,-9.98468763746908],[120,265,71,-10.027231394428693],[120,265,72,-10.092716748144648],[120,265,73,-10.19238540881269],[120,265,74,-10.276537852490842],[120,265,75,-10.322519199283018],[120,265,76,-10.319942153775182],[120,265,77,-10.304072893271794],[120,265,78,-10.258513273239975],[120,265,79,-10.211359379244346],[120,266,64,-10.051540973423188],[120,266,65,-10.057465332948565],[120,266,66,-10.046152223856083],[120,266,67,-10.024608005512183],[120,266,68,-10.010036285922329],[120,266,69,-10.011261848359462],[120,266,70,-10.036273062786337],[120,266,71,-10.076975910207011],[120,266,72,-10.140910484970412],[120,266,73,-10.220120406690807],[120,266,74,-10.310361950749906],[120,266,75,-10.359320203202273],[120,266,76,-10.367092020357639],[120,266,77,-10.34829110691098],[120,266,78,-10.30742889987435],[120,266,79,-10.26399280307378],[120,267,64,-10.094952661325586],[120,267,65,-10.101723771952367],[120,267,66,-10.09234501115963],[120,267,67,-10.069070452139485],[120,267,68,-10.055949119555944],[120,267,69,-10.05786822313174],[120,267,70,-10.08199564051791],[120,267,71,-10.12247160868882],[120,267,72,-10.18793479014665],[120,267,73,-10.271749674436915],[120,267,74,-10.362548300230994],[120,267,75,-10.412360662831492],[120,267,76,-10.425177387710121],[120,267,77,-10.406198191428599],[120,267,78,-10.36657913290837],[120,267,79,-10.323050290373358],[120,268,64,-10.133608985025722],[120,268,65,-10.140938503952922],[120,268,66,-10.129548173721945],[120,268,67,-10.103084702143402],[120,268,68,-10.090621741394953],[120,268,69,-10.09438592434131],[120,268,70,-10.117661922812085],[120,268,71,-10.157198764073808],[120,268,72,-10.248749556826434],[120,268,73,-10.337484864762903],[120,268,74,-10.402731419795911],[120,268,75,-10.43784724964901],[120,268,76,-10.452330675178803],[120,268,77,-10.444263073309244],[120,268,78,-10.412335137161719],[120,268,79,-10.362929862466473],[120,269,64,-10.176791998418524],[120,269,65,-10.184553244556648],[120,269,66,-10.172160439122173],[120,269,67,-10.147267907213676],[120,269,68,-10.132960623314762],[120,269,69,-10.139113812617806],[120,269,70,-10.163970934776325],[120,269,71,-10.200305685979334],[120,269,72,-10.298692273993408],[120,269,73,-10.391981010468745],[120,269,74,-10.45663695670402],[120,269,75,-10.486043381774875],[120,269,76,-10.506865067024897],[120,269,77,-10.494873261837165],[120,269,78,-10.458106004730526],[120,269,79,-10.408273365375372],[120,270,64,-10.229181950002944],[120,270,65,-10.233459295769183],[120,270,66,-10.217534084657508],[120,270,67,-10.197801621931308],[120,270,68,-10.18330253407115],[120,270,69,-10.187099322530095],[120,270,70,-10.21103431607169],[120,270,71,-10.246897932886721],[120,270,72,-10.33781580595469],[120,270,73,-10.43890376666527],[120,270,74,-10.504746241695818],[120,270,75,-10.526893480121592],[120,270,76,-10.554200635584921],[120,270,77,-10.531061976197016],[120,270,78,-10.491465265093343],[120,270,79,-10.442507584963618],[120,271,64,-10.273470624553566],[120,271,65,-10.27578545760589],[120,271,66,-10.260928891666678],[120,271,67,-10.244210924762303],[120,271,68,-10.22866927698209],[120,271,69,-10.22936629736176],[120,271,70,-10.254940003568278],[120,271,71,-10.291327056599908],[120,271,72,-10.374808210820582],[120,271,73,-10.477889786474368],[120,271,74,-10.551344883140393],[120,271,75,-10.57851224462522],[120,271,76,-10.602295519546477],[120,271,77,-10.575932563300706],[120,271,78,-10.534625954796654],[120,271,79,-10.484924947788873],[120,272,64,-10.321128568249522],[120,272,65,-10.32321776641609],[120,272,66,-10.306126098994492],[120,272,67,-10.28739228468888],[120,272,68,-10.270497274790632],[120,272,69,-10.272857444154447],[120,272,70,-10.296893119776513],[120,272,71,-10.336648020773739],[120,272,72,-10.41876769364144],[120,272,73,-10.520918362513454],[120,272,74,-10.604537818198976],[120,272,75,-10.636364962712964],[120,272,76,-10.650173803119804],[120,272,77,-10.623642324119027],[120,272,78,-10.582675229800692],[120,272,79,-10.532442217929624],[120,273,64,-10.359224221455225],[120,273,65,-10.364713382512257],[120,273,66,-10.350134276249161],[120,273,67,-10.329869373145732],[120,273,68,-10.317514633287212],[120,273,69,-10.318363881819316],[120,273,70,-10.341419013670254],[120,273,71,-10.380180269499068],[120,273,72,-10.444627103636062],[120,273,73,-10.526118279876284],[120,273,74,-10.582291767906979],[120,273,75,-10.602635449728705],[120,273,76,-10.593677637596523],[120,273,77,-10.570314107372049],[120,273,78,-10.532930614311061],[120,273,79,-10.485177389571271],[120,274,64,-10.407232030612619],[120,274,65,-10.411434527272847],[120,274,66,-10.39782346609998],[120,274,67,-10.3769662556217],[120,274,68,-10.364594833249075],[120,274,69,-10.365443237891288],[120,274,70,-10.389108291701803],[120,274,71,-10.42701612409441],[120,274,72,-10.489287288794499],[120,274,73,-10.567734744916013],[120,274,74,-10.626201553723009],[120,274,75,-10.648735858241317],[120,274,76,-10.641615905167859],[120,274,77,-10.617079313735829],[120,274,78,-10.581530900850916],[120,274,79,-10.531797315217272],[120,275,64,-10.453799733691973],[120,275,65,-10.455988413176126],[120,275,66,-10.445995456857139],[120,275,67,-10.423727785322178],[120,275,68,-10.409910320532667],[120,275,69,-10.410961676968462],[120,275,70,-10.434038095442352],[120,275,71,-10.471318225739127],[120,275,72,-10.53666757630357],[120,275,73,-10.614415735220236],[120,275,74,-10.67757152194008],[120,275,75,-10.701562490837194],[120,275,76,-10.695223164604785],[120,275,77,-10.672233793475161],[120,275,78,-10.635686987362245],[120,275,79,-10.587074513837223],[120,276,64,-10.489102687459418],[120,276,65,-10.493904025317843],[120,276,66,-10.483676813717514],[120,276,67,-10.462225972196004],[120,276,68,-10.447768525055114],[120,276,69,-10.446399911070715],[120,276,70,-10.46985808874489],[120,276,71,-10.506537869593316],[120,276,72,-10.57157009591689],[120,276,73,-10.654366006242679],[120,276,74,-10.727243231681825],[120,276,75,-10.755291425149306],[120,276,76,-10.744517585868898],[120,276,77,-10.723592435447623],[120,276,78,-10.687738724079177],[120,276,79,-10.637331280391694],[120,277,64,-10.545911232036959],[120,277,65,-10.548662892847862],[120,277,66,-10.534329402012371],[120,277,67,-10.509215012553007],[120,277,68,-10.49200857143471],[120,277,69,-10.492887280747496],[120,277,70,-10.516408992007133],[120,277,71,-10.55389930578152],[120,277,72,-10.616558230280267],[120,277,73,-10.701375250329747],[120,277,74,-10.773906424040256],[120,277,75,-10.799960279637945],[120,277,76,-10.792187987859748],[120,277,77,-10.769466796312946],[120,277,78,-10.734138437370476],[120,277,79,-10.684582330166782],[120,278,64,-10.598556183226961],[120,278,65,-10.600746625420603],[120,278,66,-10.585033225834696],[120,278,67,-10.558703581113418],[120,278,68,-10.540112517683843],[120,278,69,-10.542091615238736],[120,278,70,-10.564156200607652],[120,278,71,-10.60057317628318],[120,278,72,-10.662599654523854],[120,278,73,-10.740536197734079],[120,278,74,-10.81007046347007],[120,278,75,-10.841534689399909],[120,278,76,-10.833532104198495],[120,278,77,-10.811491344605923],[120,278,78,-10.77464718645179],[120,278,79,-10.72516411614336],[120,279,64,-10.646809409585739],[120,279,65,-10.647404968254252],[120,279,66,-10.62965864443045],[120,279,67,-10.602614214556965],[120,279,68,-10.584907212301616],[120,279,69,-10.585129663147749],[120,279,70,-10.605614948356738],[120,279,71,-10.645763624026076],[120,279,72,-10.70730723574576],[120,279,73,-10.784324868770666],[120,279,74,-10.855319458688388],[120,279,75,-10.886172476392984],[120,279,76,-10.87979270696594],[120,279,77,-10.857783076487577],[120,279,78,-10.819720654097413],[120,279,79,-10.77010255605344],[120,280,64,-10.693945493785689],[120,280,65,-10.693722846618106],[120,280,66,-10.676104305850469],[120,280,67,-10.649310611654114],[120,280,68,-10.630017901125205],[120,280,69,-10.628814497985218],[120,280,70,-10.649254283225295],[120,280,71,-10.689383565865448],[120,280,72,-10.752370219163133],[120,280,73,-10.831540713887408],[120,280,74,-10.903100556687964],[120,280,75,-10.932019838534297],[120,280,76,-10.927833794396532],[120,280,77,-10.90380183945839],[120,280,78,-10.867927641659021],[120,280,79,-10.815832597757893],[120,281,64,-10.742174351820141],[120,281,65,-10.742838649944007],[120,281,66,-10.721462064332519],[120,281,67,-10.693384199731947],[120,281,68,-10.675077970528195],[120,281,69,-10.673286259868037],[120,281,70,-10.691154961084512],[120,281,71,-10.732692302171358],[120,281,72,-10.800946713876494],[120,281,73,-10.88696418050706],[120,281,74,-10.963886945799239],[120,281,75,-10.989703667173663],[120,281,76,-10.982995861487083],[120,281,77,-10.958572032695518],[120,281,78,-10.923041970917435],[120,281,79,-10.87024584024561],[120,282,64,-10.791635457239584],[120,282,65,-10.7912775041687],[120,282,66,-10.770386264596423],[120,282,67,-10.741966290922782],[120,282,68,-10.72105899843433],[120,282,69,-10.720454084762467],[120,282,70,-10.740234460759217],[120,282,71,-10.783165049293773],[120,282,72,-10.853123830308936],[120,282,73,-10.93006586758281],[120,282,74,-11.010936973075985],[120,282,75,-11.045634914368646],[120,282,76,-11.035702215586392],[120,282,77,-11.011974907810373],[120,282,78,-10.975089427323715],[120,282,79,-10.921756935134772],[120,283,64,-10.836295818514223],[120,283,65,-10.834532236815654],[120,283,66,-10.814279592266022],[120,283,67,-10.787193995802241],[120,283,68,-10.76784898932156],[120,283,69,-10.767984628449739],[120,283,70,-10.78833930804189],[120,283,71,-10.834012381633322],[120,283,72,-10.903394550315134],[120,283,73,-10.974445377419308],[120,283,74,-11.053217089091492],[120,283,75,-11.096912477464492],[120,283,76,-11.087319324480703],[120,283,77,-11.065230648209793],[120,283,78,-11.02652727490985],[120,283,79,-10.973541919038635],[120,284,64,-10.90171321992195],[120,284,65,-10.89956805388208],[120,284,66,-10.879885132696739],[120,284,67,-10.853796335494966],[120,284,68,-10.837497189368369],[120,284,69,-10.834679420121358],[120,284,70,-10.857951235607402],[120,284,71,-10.902132287031971],[120,284,72,-10.970435196496092],[120,284,73,-11.041250567926896],[120,284,74,-11.114459446727142],[120,284,75,-11.149834704705226],[120,284,76,-11.142184800752505],[120,284,77,-11.118325977322685],[120,284,78,-11.079241525207143],[120,284,79,-11.02704765078179],[120,285,64,-10.952552150218878],[120,285,65,-10.944967763797804],[120,285,66,-10.922550678342501],[120,285,67,-10.894047291263874],[120,285,68,-10.876587160352189],[120,285,69,-10.872523158955822],[120,285,70,-10.895567490125462],[120,285,71,-10.939357246064697],[120,285,72,-11.009060502383159],[120,285,73,-11.079767788827757],[120,285,74,-11.156744125896791],[120,285,75,-11.194783816763128],[120,285,76,-11.187570605879047],[120,285,77,-11.16601720797143],[120,285,78,-11.125944633958207],[120,285,79,-11.071875894083945],[120,286,64,-11.000244771962],[120,286,65,-10.992958254851354],[120,286,66,-10.972388301251819],[120,286,67,-10.943700100684334],[120,286,68,-10.925077096026193],[120,286,69,-10.919737664531791],[120,286,70,-10.9435440849914],[120,286,71,-10.985629202260565],[120,286,72,-11.056478470780107],[120,286,73,-11.128309353727778],[120,286,74,-11.202392539309672],[120,286,75,-11.24006329982484],[120,286,76,-11.235005058357508],[120,286,77,-11.212771720909382],[120,286,78,-11.173427622899517],[120,286,79,-11.12037466939495],[120,287,64,-11.045178624262153],[120,287,65,-11.0373361441035],[120,287,66,-11.017677690980806],[120,287,67,-10.989104119608218],[120,287,68,-10.971158282214319],[120,287,69,-10.968649433041495],[120,287,70,-10.989208550610927],[120,287,71,-11.033067973765458],[120,287,72,-11.105597301233058],[120,287,73,-11.1774246449112],[120,287,74,-11.245290317896162],[120,287,75,-11.278850534386931],[120,287,76,-11.27894833852258],[120,287,77,-11.255253587612081],[120,287,78,-11.215584749107613],[120,287,79,-11.16359599178063],[120,288,64,-11.089925422835117],[120,288,65,-11.084000479413504],[120,288,66,-11.064836868337832],[120,288,67,-11.038106961386282],[120,288,68,-11.017452838870042],[120,288,69,-11.01346151503501],[120,288,70,-11.034675198772804],[120,288,71,-11.08000155964071],[120,288,72,-11.154002682879895],[120,288,73,-11.22587217207223],[120,288,74,-11.288626393996319],[120,288,75,-11.321353735375775],[120,288,76,-11.320879896361225],[120,288,77,-11.298612171751785],[120,288,78,-11.260588968689538],[120,288,79,-11.207956714243906],[120,289,64,-11.126530440226343],[120,289,65,-11.12885408587494],[120,289,66,-11.115001486707877],[120,289,67,-11.093261123559794],[120,289,68,-11.075478213277158],[120,289,69,-11.071799683872452],[120,289,70,-11.09307547690701],[120,289,71,-11.136051291560563],[120,289,72,-11.209942828757104],[120,289,73,-11.283307076085565],[120,289,74,-11.353087211043306],[120,289,75,-11.380577978949544],[120,289,76,-11.37262957681819],[120,289,77,-11.349634371813137],[120,289,78,-11.313057163634058],[120,289,79,-11.262293296236162],[120,290,64,-11.175535589132348],[120,290,65,-11.179119208043582],[120,290,66,-11.165793251457163],[120,290,67,-11.141352475109684],[120,290,68,-11.12311030124169],[120,290,69,-11.123021434377469],[120,290,70,-11.144983196648353],[120,290,71,-11.18984936595217],[120,290,72,-11.260779134066242],[120,290,73,-11.332206008790783],[120,290,74,-11.391995940923145],[120,290,75,-11.420414064787014],[120,290,76,-11.4123748439189],[120,290,77,-11.386336826854215],[120,290,78,-11.34944938825307],[120,290,79,-11.302369309585455],[120,291,64,-11.221748768325504],[120,291,65,-11.227470202428021],[120,291,66,-11.21138713636438],[120,291,67,-11.18695832326327],[120,291,68,-11.171566838064885],[120,291,69,-11.170335807815343],[120,291,70,-11.19333583914843],[120,291,71,-11.239463724875918],[120,291,72,-11.30804378694552],[120,291,73,-11.377946626641513],[120,291,74,-11.43539284412275],[120,291,75,-11.469397292015126],[120,291,76,-11.461160311052499],[120,291,77,-11.435560763970686],[120,291,78,-11.398843144507833],[120,291,79,-11.352491782121309],[120,292,64,-11.24074676376615],[120,292,65,-11.24243622228846],[120,292,66,-11.227948675080912],[120,292,67,-11.200970887143733],[120,292,68,-11.185749123468028],[120,292,69,-11.185495288962498],[120,292,70,-11.206409369899099],[120,292,71,-11.254515072583528],[120,292,72,-11.322418858856064],[120,292,73,-11.391812130142506],[120,292,74,-11.447752241960824],[120,292,75,-11.493585046210178],[120,292,76,-11.490428030913625],[120,292,77,-11.466497663712145],[120,292,78,-11.425922252890624],[120,292,79,-11.380022615003732],[120,293,64,-11.289157028874317],[120,293,65,-11.288175975997067],[120,293,66,-11.27306671439783],[120,293,67,-11.247667871090265],[120,293,68,-11.229064741249896],[120,293,69,-11.230764489060597],[120,293,70,-11.256063249226306],[120,293,71,-11.300607586903979],[120,293,72,-11.372149072812663],[120,293,73,-11.442012370030893],[120,293,74,-11.493286199546613],[120,293,75,-11.533901874158303],[120,293,76,-11.535657823267506],[120,293,77,-11.511769496939085],[120,293,78,-11.472268701133142],[120,293,79,-11.425618218337766],[120,294,64,-11.337217312685013],[120,294,65,-11.33483728800763],[120,294,66,-11.320859546466115],[120,294,67,-11.29131484736311],[120,294,68,-11.27005292816501],[120,294,69,-11.273510996469064],[120,294,70,-11.29957330552247],[120,294,71,-11.34523868262713],[120,294,72,-11.416618499606052],[120,294,73,-11.486632683167658],[120,294,74,-11.535599062132206],[120,294,75,-11.58014632396314],[120,294,76,-11.590182260722656],[120,294,77,-11.567598517187326],[120,294,78,-11.531902928433137],[120,294,79,-11.481086627385267],[120,295,64,-11.385748690211258],[120,295,65,-11.381636893931933],[120,295,66,-11.367046008014148],[120,295,67,-11.33551023322872],[120,295,68,-11.314447862036468],[120,295,69,-11.31553416734856],[120,295,70,-11.342019796074066],[120,295,71,-11.390511339034584],[120,295,72,-11.461331631101196],[120,295,73,-11.533103537828762],[120,295,74,-11.578695454236163],[120,295,75,-11.601422334988214],[120,295,76,-11.613043347331432],[120,295,77,-11.603514160975788],[120,295,78,-11.57620241167164],[120,295,79,-11.525670022390011],[120,296,64,-11.433032121139128],[120,296,65,-11.427958096664593],[120,296,66,-11.410873051742],[120,296,67,-11.37957373692076],[120,296,68,-11.358156010347145],[120,296,69,-11.356136209756876],[120,296,70,-11.384465668457862],[120,296,71,-11.434192890856242],[120,296,72,-11.503847114265346],[120,296,73,-11.576322110203806],[120,296,74,-11.624436559960674],[120,296,75,-11.647659246343197],[120,296,76,-11.657378776098577],[120,296,77,-11.648528864408982],[120,296,78,-11.619120778529302],[120,296,79,-11.570040091533688],[120,297,64,-11.486114991053844],[120,297,65,-11.478297532205659],[120,297,66,-11.452146915531754],[120,297,67,-11.417184679501087],[120,297,68,-11.391656487531224],[120,297,69,-11.389433108642857],[120,297,70,-11.419347386686143],[120,297,71,-11.475470851474814],[120,297,72,-11.550564174873108],[120,297,73,-11.628606747847408],[120,297,74,-11.677386508917865],[120,297,75,-11.69979786946432],[120,297,76,-11.710854110096577],[120,297,77,-11.702530944270777],[120,297,78,-11.674039874832552],[120,297,79,-11.619228666981043],[120,298,64,-11.536754330325568],[120,298,65,-11.526914430663936],[120,298,66,-11.497981251548355],[120,298,67,-11.465348699687892],[120,298,68,-11.43870995060937],[120,298,69,-11.438241857668046],[120,298,70,-11.468721668687985],[120,298,71,-11.522673280711908],[120,298,72,-11.597647874923243],[120,298,73,-11.677888923711725],[120,298,74,-11.725735685879123],[120,298,75,-11.745149918477672],[120,298,76,-11.75737913731516],[120,298,77,-11.744755425534084],[120,298,78,-11.708977929434035],[120,298,79,-11.65979651350048],[120,299,64,-11.582152172677304],[120,299,65,-11.571603925043426],[120,299,66,-11.545030296020128],[120,299,67,-11.509432017704178],[120,299,68,-11.486346540464778],[120,299,69,-11.48532242957611],[120,299,70,-11.516084316732641],[120,299,71,-11.569039543584106],[120,299,72,-11.644597573477103],[120,299,73,-11.724412988672158],[120,299,74,-11.772972836713523],[120,299,75,-11.789148275766316],[120,299,76,-11.80164993925211],[120,299,77,-11.791779737071348],[120,299,78,-11.755184096760486],[120,299,79,-11.70484042553434],[120,300,64,-11.625149679951651],[120,300,65,-11.619940332708758],[120,300,66,-11.598718928654737],[120,300,67,-11.566552710331027],[120,300,68,-11.546085575540937],[120,300,69,-11.542846843701101],[120,300,70,-11.569496108128863],[120,300,71,-11.61601225704789],[120,300,72,-11.6860991608392],[120,300,73,-11.758287264269388],[120,300,74,-11.806740601292523],[120,300,75,-11.822798828437067],[120,300,76,-11.817985829090098],[120,300,77,-11.803725460237994],[120,300,78,-11.771863090761412],[120,300,79,-11.726664256953287],[120,301,64,-11.670531174363463],[120,301,65,-11.667920608839387],[120,301,66,-11.645677942504584],[120,301,67,-11.612252761491382],[120,301,68,-11.591009460270246],[120,301,69,-11.59025085811524],[120,301,70,-11.61723913374976],[120,301,71,-11.663697005245591],[120,301,72,-11.733306459192772],[120,301,73,-11.802980555062256],[120,301,74,-11.849460067388542],[120,301,75,-11.868519660849374],[120,301,76,-11.863769637603305],[120,301,77,-11.849822747350505],[120,301,78,-11.820643095982948],[120,301,79,-11.774613407938173],[120,302,64,-11.712050368767207],[120,302,65,-11.710873284738415],[120,302,66,-11.687123058800378],[120,302,67,-11.655254055728465],[120,302,68,-11.634265253410819],[120,302,69,-11.634291575848353],[120,302,70,-11.66124095442108],[120,302,71,-11.704554829623575],[120,302,72,-11.774549041605342],[120,302,73,-11.84465989170806],[120,302,74,-11.888591910650243],[120,302,75,-11.905665192175993],[120,302,76,-11.90284351351869],[120,302,77,-11.889727151099029],[120,302,78,-11.860117035331188],[120,302,79,-11.815086515978477],[120,303,64,-11.75713534233708],[120,303,65,-11.754583707755875],[120,303,66,-11.732047648533367],[120,303,67,-11.700993042160775],[120,303,68,-11.680811967377718],[120,303,69,-11.680056218126216],[120,303,70,-11.705085169119156],[120,303,71,-11.749461977048812],[120,303,72,-11.819504913183065],[120,303,73,-11.890709469710488],[120,303,74,-11.934243586581106],[120,303,75,-11.950525500158376],[120,303,76,-11.947665454607376],[120,303,77,-11.934900336204835],[120,303,78,-11.90575047996873],[120,303,79,-11.860699539276393],[120,304,64,-11.80034475616123],[120,304,65,-11.79580186620695],[120,304,66,-11.776090267007365],[120,304,67,-11.746787997693808],[120,304,68,-11.727938793132694],[120,304,69,-11.726476449319945],[120,304,70,-11.750479856127285],[120,304,71,-11.79398543098246],[120,304,72,-11.864956937567737],[120,304,73,-11.935069228770296],[120,304,74,-11.980860276367702],[120,304,75,-11.995332737201425],[120,304,76,-11.993139940093132],[120,304,77,-11.980358657603192],[120,304,78,-11.95270638728157],[120,304,79,-11.906408850396005],[120,305,64,-11.842529738663135],[120,305,65,-11.83989755839405],[120,305,66,-11.821487904217358],[120,305,67,-11.794034756530124],[120,305,68,-11.775807236973737],[120,305,69,-11.774918322760984],[120,305,70,-11.797203355935313],[120,305,71,-11.838297233134163],[120,305,72,-11.9072905955612],[120,305,73,-11.979155793040087],[120,305,74,-12.025827021535875],[120,305,75,-12.043596742280977],[120,305,76,-12.042233070018378],[120,305,77,-12.02688550334546],[120,305,78,-11.998894516961261],[120,305,79,-11.953393870988636],[120,306,64,-11.890339082555885],[120,306,65,-11.887692280683241],[120,306,66,-11.870089015518596],[120,306,67,-11.842237203481535],[120,306,68,-11.822106926680906],[120,306,69,-11.82254973378041],[120,306,70,-11.84541069018634],[120,306,71,-11.886932574997418],[120,306,72,-11.955159285233158],[120,306,73,-12.025229316087263],[120,306,74,-12.073799474708318],[120,306,75,-12.093965352948963],[120,306,76,-12.0924757425043],[120,306,77,-12.076010679321199],[120,306,78,-12.046711033451661],[120,306,79,-12.001172296193202],[120,307,64,-11.937953613110173],[120,307,65,-11.936365938215456],[120,307,66,-11.914647973642552],[120,307,67,-11.88666854677299],[120,307,68,-11.865394318350795],[120,307,69,-11.866182911876303],[120,307,70,-11.890782371880888],[120,307,71,-11.935998907649719],[120,307,72,-12.003609505016996],[120,307,73,-12.072805581494881],[120,307,74,-12.122713509106205],[120,307,75,-12.143012280718118],[120,307,76,-12.13944837073701],[120,307,77,-12.124694604096018],[120,307,78,-12.094335349561305],[120,307,79,-12.04900309929328],[120,308,64,-11.960819201533536],[120,308,65,-11.960821374108104],[120,308,66,-11.938883978370969],[120,308,67,-11.91114204787244],[120,308,68,-11.894660860379645],[120,308,69,-11.897902988231547],[120,308,70,-11.927578678485544],[120,308,71,-11.981097523659495],[120,308,72,-12.05539643910944],[120,308,73,-12.132527825062473],[120,308,74,-12.184010577246058],[120,308,75,-12.203803374433086],[120,308,76,-12.201235688301605],[120,308,77,-12.187602652890265],[120,308,78,-12.158908504957537],[120,308,79,-12.116528468870841],[120,309,64,-12.006744818820696],[120,309,65,-12.006345972742237],[120,309,66,-11.984330701800737],[120,309,67,-11.954735130241158],[120,309,68,-11.937614627313742],[120,309,69,-11.942793139649774],[120,309,70,-11.974918064633599],[120,309,71,-12.026449170380612],[120,309,72,-12.100627376180812],[120,309,73,-12.18212307078334],[120,309,74,-12.231045868355102],[120,309,75,-12.25118971067768],[120,309,76,-12.250308524426881],[120,309,77,-12.23529932337294],[120,309,78,-12.20672953772128],[120,309,79,-12.164334461109691],[120,310,64,-12.047588618306659],[120,310,65,-12.04404838873918],[120,310,66,-12.025911853431369],[120,310,67,-11.997084852675595],[120,310,68,-11.979512077998432],[120,310,69,-11.984571881235864],[120,310,70,-12.017331551129221],[120,310,71,-12.065535546556747],[120,310,72,-12.139115125640647],[120,310,73,-12.223118766819526],[120,310,74,-12.272205916620479],[120,310,75,-12.291054569861773],[120,310,76,-12.29112662234342],[120,310,77,-12.273569151388134],[120,310,78,-12.246722703537632],[120,310,79,-12.202854229296173],[120,311,64,-12.091502365092667],[120,311,65,-12.089668252332473],[120,311,66,-12.070845943164867],[120,311,67,-12.043672276634082],[120,311,68,-12.027570289687645],[120,311,69,-12.032193731004924],[120,311,70,-12.061882739226265],[120,311,71,-12.111774745443673],[120,311,72,-12.185995755405648],[120,311,73,-12.267318706289686],[120,311,74,-12.321175393646662],[120,311,75,-12.339991178160192],[120,311,76,-12.33819159408231],[120,311,77,-12.320431671747482],[120,311,78,-12.293570490662262],[120,311,79,-12.24933967772329],[120,312,64,-12.148836134396348],[120,312,65,-12.147445690518316],[120,312,66,-12.128560365047068],[120,312,67,-12.099497832423745],[120,312,68,-12.084783882488333],[120,312,69,-12.08798329300853],[120,312,70,-12.113283660866054],[120,312,71,-12.157783718070407],[120,312,72,-12.226394281641056],[120,312,73,-12.301525400028396],[120,312,74,-12.354166038751572],[120,312,75,-12.375925558245711],[120,312,76,-12.373109201572069],[120,312,77,-12.359700392015132],[120,312,78,-12.329467599128096],[120,312,79,-12.286356255787144],[120,313,64,-12.197522171388576],[120,313,65,-12.195241476162456],[120,313,66,-12.174125281434415],[120,313,67,-12.14472212837257],[120,313,68,-12.128411354424221],[120,313,69,-12.134828965255453],[120,313,70,-12.15913188041233],[120,313,71,-12.204594030165014],[120,313,72,-12.272095735500283],[120,313,73,-12.34581440846891],[120,313,74,-12.396221549616902],[120,313,75,-12.420222276037803],[120,313,76,-12.419739276474498],[120,313,77,-12.407181320130944],[120,313,78,-12.374177990540101],[120,313,79,-12.329351985672494],[120,314,64,-12.25129872144834],[120,314,65,-12.245392928196623],[120,314,66,-12.226786986148056],[120,314,67,-12.195985840976036],[120,314,68,-12.17663489510901],[120,314,69,-12.183896676626215],[120,314,70,-12.209421321129396],[120,314,71,-12.251464638422208],[120,314,72,-12.319715092423085],[120,314,73,-12.391214995179784],[120,314,74,-12.440965334981268],[120,314,75,-12.464581009551914],[120,314,76,-12.465903648219257],[120,314,77,-12.454708043164786],[120,314,78,-12.427417700226599],[120,314,79,-12.381861331631008],[120,315,64,-12.300964644258162],[120,315,65,-12.295089351461392],[120,315,66,-12.275595763455861],[120,315,67,-12.245074197361138],[120,315,68,-12.22487277325005],[120,315,69,-12.231380849369359],[120,315,70,-12.25635030734873],[120,315,71,-12.295753719548046],[120,315,72,-12.360581070442944],[120,315,73,-12.435501923050944],[120,315,74,-12.484009425100403],[120,315,75,-12.507271121136009],[120,315,76,-12.509626637961688],[120,315,77,-12.500019623117295],[120,315,78,-12.475969931152632],[120,315,79,-12.426874075302186],[120,316,64,-12.358448211709222],[120,316,65,-12.351603985807845],[120,316,66,-12.328821916944728],[120,316,67,-12.296812922435704],[120,316,68,-12.276913441845329],[120,316,69,-12.276897338186279],[120,316,70,-12.299925656354528],[120,316,71,-12.34000551410151],[120,316,72,-12.402396270912922],[120,316,73,-12.478393579492737],[120,316,74,-12.527397850061208],[120,316,75,-12.549299627868383],[120,316,76,-12.551861352156857],[120,316,77,-12.542800612740761],[120,316,78,-12.516553148472271],[120,316,79,-12.465537309650196],[120,317,64,-12.404439563568834],[120,317,65,-12.40038827510546],[120,317,66,-12.376845302849663],[120,317,67,-12.345909624547605],[120,317,68,-12.3244256624168],[120,317,69,-12.322531929411912],[120,317,70,-12.343226923370002],[120,317,71,-12.383945927602435],[120,317,72,-12.447418855976153],[120,317,73,-12.525312806474695],[120,317,74,-12.573442422704773],[120,317,75,-12.596216107088415],[120,317,76,-12.598164118879941],[120,317,77,-12.59021777746064],[120,317,78,-12.566332754783234],[120,317,79,-12.51958094934719],[120,318,64,-12.445873999449764],[120,318,65,-12.438290168148155],[120,318,66,-12.414977686614122],[120,318,67,-12.38713827633006],[120,318,68,-12.362938844422908],[120,318,69,-12.36025184792362],[120,318,70,-12.381832858142952],[120,318,71,-12.419558878367624],[120,318,72,-12.487534551085302],[120,318,73,-12.562067925828567],[120,318,74,-12.613794173988175],[120,318,75,-12.633141164055223],[120,318,76,-12.635884666427927],[120,318,77,-12.629232001303409],[120,318,78,-12.606042799561143],[120,318,79,-12.562925766459742],[120,319,64,-12.49249859061392],[120,319,65,-12.482307072314335],[120,319,66,-12.459504916231593],[120,319,67,-12.433371851989296],[120,319,68,-12.407099099423151],[120,319,69,-12.40381618569207],[120,319,70,-12.425393166151936],[120,319,71,-12.464488213794233],[120,319,72,-12.534119738824298],[120,319,73,-12.60975296278503],[120,319,74,-12.660618051256655],[120,319,75,-12.679639222047747],[120,319,76,-12.684341824286241],[120,319,77,-12.678134560868731],[120,319,78,-12.652718370950964],[120,319,79,-12.61571896281239],[121,-64,64,22.886124685831437],[121,-64,65,22.915633134369244],[121,-64,66,22.949784294659935],[121,-64,67,22.983787538053075],[121,-64,68,23.008224716495548],[121,-64,69,23.020768074741696],[121,-64,70,23.04146280931142],[121,-64,71,23.088766019820024],[121,-64,72,23.148397282738276],[121,-64,73,23.202299534302327],[121,-64,74,23.24317173957547],[121,-64,75,23.284257774160594],[121,-64,76,23.33806591134367],[121,-64,77,23.40777562215401],[121,-64,78,23.487885467514126],[121,-64,79,23.551631015116417],[121,-63,64,22.6873388099569],[121,-63,65,22.718769436976064],[121,-63,66,22.755769272681086],[121,-63,67,22.794020468603893],[121,-63,68,22.81813744793535],[121,-63,69,22.83233116205988],[121,-63,70,22.8536222273968],[121,-63,71,22.90018983868081],[121,-63,72,22.966006138206588],[121,-63,73,23.01975246272552],[121,-63,74,23.057364160200247],[121,-63,75,23.097157674930113],[121,-63,76,23.15022289856171],[121,-63,77,23.215301582761686],[121,-63,78,23.292179180416316],[121,-63,79,23.35699631728479],[121,-62,64,22.497418864240018],[121,-62,65,22.527501372697444],[121,-62,66,22.565758404260418],[121,-62,67,22.604756293130933],[121,-62,68,22.62853914152421],[121,-62,69,22.644005054657566],[121,-62,70,22.66532058305612],[121,-62,71,22.711379242223092],[121,-62,72,22.777918250013844],[121,-62,73,22.831466716185737],[121,-62,74,22.868990619821602],[121,-62,75,22.908123571711783],[121,-62,76,22.959912198990818],[121,-62,77,23.024735349410385],[121,-62,78,23.101308071131296],[121,-62,79,23.168438410086036],[121,-61,64,22.302110433314475],[121,-61,65,22.332165948998362],[121,-61,66,22.36896108775716],[121,-61,67,22.41214393229228],[121,-61,68,22.433530591040032],[121,-61,69,22.450428239243696],[121,-61,70,22.470449418359053],[121,-61,71,22.518692476640393],[121,-61,72,22.582920194970722],[121,-61,73,22.635560872675914],[121,-61,74,22.67494651873511],[121,-61,75,22.713364063063892],[121,-61,76,22.76659411053313],[121,-61,77,22.8321225665667],[121,-61,78,22.90668987424923],[121,-61,79,22.97480274336454],[121,-60,64,22.110471233142878],[121,-60,65,22.140296586537787],[121,-60,66,22.181186122844352],[121,-60,67,22.222649127624653],[121,-60,68,22.24676630259372],[121,-60,69,22.26241494510312],[121,-60,70,22.283380081112437],[121,-60,71,22.331116578179856],[121,-60,72,22.393465010540762],[121,-60,73,22.445346718768445],[121,-60,74,22.48691997163326],[121,-60,75,22.525045737771194],[121,-60,76,22.577610968407637],[121,-60,77,22.645064346816337],[121,-60,78,22.717821126538173],[121,-60,79,22.788232299393524],[121,-59,64,21.93336495003517],[121,-59,65,21.96396197421301],[121,-59,66,22.001733121607348],[121,-59,67,22.036693899852505],[121,-59,68,22.06205705137914],[121,-59,69,22.075912915152568],[121,-59,70,22.097659763053024],[121,-59,71,22.139822059451884],[121,-59,72,22.199797561032007],[121,-59,73,22.248689310919268],[121,-59,74,22.28690038570072],[121,-59,75,22.32590375453396],[121,-59,76,22.38368548362218],[121,-59,77,22.45367254743217],[121,-59,78,22.5313948020087],[121,-59,79,22.60382481289986],[121,-58,64,21.745393301698318],[121,-58,65,21.775059664273545],[121,-58,66,21.81185010529475],[121,-58,67,21.844050857711032],[121,-58,68,21.870861883924885],[121,-58,69,21.886751018158108],[121,-58,70,21.908476118930466],[121,-58,71,21.946240127519783],[121,-58,72,22.005087248819486],[121,-58,73,22.055685199447588],[121,-58,74,22.095512787424337],[121,-58,75,22.135657613355768],[121,-58,76,22.19297158398605],[121,-58,77,22.26215812343414],[121,-58,78,22.341733941984756],[121,-58,79,22.41502308249422],[121,-57,64,21.55205034111783],[121,-57,65,21.580744217343497],[121,-57,66,21.61909573916554],[121,-57,67,21.64985804074456],[121,-57,68,21.67593331309049],[121,-57,69,21.6932959675958],[121,-57,70,21.712460579140537],[121,-57,71,21.74933028179011],[121,-57,72,21.80695572238604],[121,-57,73,21.8607797264693],[121,-57,74,21.90098904268444],[121,-57,75,21.942025500321652],[121,-57,76,21.999639976722626],[121,-57,77,22.06729302131346],[121,-57,78,22.14839073107607],[121,-57,79,22.223479920917168],[121,-56,64,21.366198933171123],[121,-56,65,21.39239780599711],[121,-56,66,21.430057094823233],[121,-56,67,21.46184548231116],[121,-56,68,21.48806830896482],[121,-56,69,21.5044840660294],[121,-56,70,21.52098893596403],[121,-56,71,21.55758805939934],[121,-56,72,21.614939294104992],[121,-56,73,21.667828030820456],[121,-56,74,21.708104308214224],[121,-56,75,21.75064166351252],[121,-56,76,21.805419860854958],[121,-56,77,21.875654407744804],[121,-56,78,21.956589344138347],[121,-56,79,22.03374198546358],[121,-55,64,21.17761104953703],[121,-55,65,21.20581865008045],[121,-55,66,21.23919047506512],[121,-55,67,21.270838488117104],[121,-55,68,21.2980652498711],[121,-55,69,21.312904708090134],[121,-55,70,21.330813032814635],[121,-55,71,21.367726731610933],[121,-55,72,21.424081235530323],[121,-55,73,21.476405000763535],[121,-55,74,21.516389580410134],[121,-55,75,21.55902359615882],[121,-55,76,21.61142890596026],[121,-55,77,21.686586290731785],[121,-55,78,21.767306743247484],[121,-55,79,21.845768560388663],[121,-54,64,20.98749287475717],[121,-54,65,21.015203743082267],[121,-54,66,21.048378783693355],[121,-54,67,21.078903416340196],[121,-54,68,21.106402801399533],[121,-54,69,21.12095578917794],[121,-54,70,21.13899933707989],[121,-54,71,21.177126000262657],[121,-54,72,21.232887680785804],[121,-54,73,21.2858986555654],[121,-54,74,21.326113725539862],[121,-54,75,21.36607548658357],[121,-54,76,21.42016616264677],[121,-54,77,21.494569732659023],[121,-54,78,21.578041538776457],[121,-54,79,21.656102150649993],[121,-53,64,20.790914334422972],[121,-53,65,20.818987607323034],[121,-53,66,20.854817458903025],[121,-53,67,20.886622073547006],[121,-53,68,20.912090254571066],[121,-53,69,20.9265829499236],[121,-53,70,20.94293321443251],[121,-53,71,20.980391931397573],[121,-53,72,21.034251085064103],[121,-53,73,21.088398513133352],[121,-53,74,21.129406738580016],[121,-53,75,21.16938247205192],[121,-53,76,21.224735039280425],[121,-53,77,21.296705627518207],[121,-53,78,21.380951325018167],[121,-53,79,21.458463365068553],[121,-52,64,20.597879144425228],[121,-52,65,20.62710438139999],[121,-52,66,20.66594372444092],[121,-52,67,20.69967040612958],[121,-52,68,20.7257347474908],[121,-52,69,20.740271050298997],[121,-52,70,20.757849394554327],[121,-52,71,20.792092022791774],[121,-52,72,20.842950117882268],[121,-52,73,20.89791773906484],[121,-52,74,20.938491418614984],[121,-52,75,20.982345010353498],[121,-52,76,21.038103605107334],[121,-52,77,21.11228771305689],[121,-52,78,21.195352465271476],[121,-52,79,21.271145732958626],[121,-51,64,20.389033458042384],[121,-51,65,20.41719533000528],[121,-51,66,20.45131100264769],[121,-51,67,20.482118119156432],[121,-51,68,20.50617656984991],[121,-51,69,20.519555900482587],[121,-51,70,20.54009488147784],[121,-51,71,20.576308792835544],[121,-51,72,20.62921859304215],[121,-51,73,20.682641698240783],[121,-51,74,20.726870166315198],[121,-51,75,20.774167767489264],[121,-51,76,20.835469663077],[121,-51,77,20.913882072071342],[121,-51,78,21.004256106865657],[121,-51,79,21.08600411772059],[121,-50,64,20.198233987649278],[121,-50,65,20.22480514065795],[121,-50,66,20.262300917306362],[121,-50,67,20.28994342429925],[121,-50,68,20.31360203423276],[121,-50,69,20.328967665469754],[121,-50,70,20.34839884471232],[121,-50,71,20.38620922865138],[121,-50,72,20.439042603604975],[121,-50,73,20.488204509244074],[121,-50,74,20.53394725189152],[121,-50,75,20.580729790872056],[121,-50,76,20.64093705931344],[121,-50,77,20.719750055045044],[121,-50,78,20.80853849509235],[121,-50,79,20.894105445129068],[121,-49,64,20.020471908369917],[121,-49,65,20.07298440870663],[121,-49,66,20.064615786279166],[121,-49,67,20.093183783758096],[121,-49,68,20.11728709572452],[121,-49,69,20.13307327533915],[121,-49,70,20.153969894913516],[121,-49,71,20.19063736217861],[121,-49,72,20.24409065059714],[121,-49,73,20.28966609139325],[121,-49,74,20.334938714095355],[121,-49,75,20.384132502816],[121,-49,76,20.44524460290223],[121,-49,77,20.526558590917446],[121,-49,78,20.613050897060596],[121,-49,79,20.700573593764595],[121,-48,64,19.87891530314397],[121,-48,65,19.91506599526864],[121,-48,66,19.8745714928038],[121,-48,67,19.90359460607341],[121,-48,68,19.92991108203622],[121,-48,69,19.947626475669892],[121,-48,70,19.965967047394468],[121,-48,71,20.000546847185948],[121,-48,72,20.05226590211749],[121,-48,73,20.095345764030963],[121,-48,74,20.139946897100906],[121,-48,75,20.189603827746883],[121,-48,76,20.250218160125378],[121,-48,77,20.330087740165794],[121,-48,78,20.4201794561974],[121,-48,79,20.505557530186298],[121,-47,64,19.715750996204758],[121,-47,65,19.738079599715448],[121,-47,66,19.687856179467865],[121,-47,67,19.724202055159733],[121,-47,68,19.75444543091265],[121,-47,69,19.77177192288153],[121,-47,70,19.785459856113008],[121,-47,71,19.816349634600975],[121,-47,72,19.861691614745013],[121,-47,73,19.905150690471963],[121,-47,74,19.947183916379252],[121,-47,75,19.99305986530439],[121,-47,76,20.05439700111156],[121,-47,77,20.131155096628287],[121,-47,78,20.21893190412134],[121,-47,79,20.30429733849003],[121,-46,64,19.470378758396482],[121,-46,65,19.525049497416962],[121,-46,66,19.5128188755548],[121,-46,67,19.537502625353394],[121,-46,68,19.567200717713167],[121,-46,69,19.584636404778742],[121,-46,70,19.595844075951085],[121,-46,71,19.62628189116398],[121,-46,72,19.66946547582997],[121,-46,73,19.71292625632965],[121,-46,74,19.75554786504406],[121,-46,75,19.79957592531895],[121,-46,76,19.857930384977657],[121,-46,77,19.939114452076897],[121,-46,78,20.02647651884864],[121,-46,79,20.109830257997203],[121,-45,64,19.292105258820726],[121,-45,65,19.363965603575398],[121,-45,66,19.34662825485998],[121,-45,67,19.342957674661395],[121,-45,68,19.375567583185408],[121,-45,69,19.391800233748874],[121,-45,70,19.40333476043366],[121,-45,71,19.43210343274781],[121,-45,72,19.473370867766203],[121,-45,73,19.517787310251634],[121,-45,74,19.557166253437096],[121,-45,75,19.60142590668293],[121,-45,76,19.659306028890626],[121,-45,77,19.741714917938353],[121,-45,78,19.827443815840976],[121,-45,79,19.91244653404404],[121,-44,64,19.175018583677275],[121,-44,65,19.29750303769829],[121,-44,66,19.240255623617955],[121,-44,67,19.144281784000075],[121,-44,68,19.173104819122745],[121,-44,69,19.18605120616619],[121,-44,70,19.19429662121543],[121,-44,71,19.21772840386168],[121,-44,72,19.257257432495834],[121,-44,73,19.29520863830438],[121,-44,74,19.335705616053747],[121,-44,75,19.380022487194765],[121,-44,76,19.437944799603237],[121,-44,77,19.520463464129794],[121,-44,78,19.605529009108253],[121,-44,79,19.691818050057694],[121,-43,64,19.015914091544555],[121,-43,65,19.138248060341404],[121,-43,66,19.089097695773518],[121,-43,67,18.98070854807883],[121,-43,68,18.99403587983234],[121,-43,69,19.006473550464325],[121,-43,70,19.014274727441357],[121,-43,71,19.036401642169242],[121,-43,72,19.07551475251229],[121,-43,73,19.110983188638205],[121,-43,74,19.151287685262673],[121,-43,75,19.19602075054329],[121,-43,76,19.252308174468745],[121,-43,77,19.332705603982298],[121,-43,78,19.416754538478976],[121,-43,79,19.499220999522766],[121,-42,64,18.84429179677903],[121,-42,65,18.951178990732235],[121,-42,66,18.92021560996104],[121,-42,67,18.83661799486594],[121,-42,68,18.804646371421303],[121,-42,69,18.81556756886827],[121,-42,70,18.824440839362712],[121,-42,71,18.84762523820494],[121,-42,72,18.885266511710462],[121,-42,73,18.91940967509081],[121,-42,74,18.958504826907475],[121,-42,75,19.002133757046046],[121,-42,76,19.059465315520978],[121,-42,77,19.13954424127549],[121,-42,78,19.224078994939504],[121,-42,79,19.30779316222013],[121,-41,64,18.710193382169575],[121,-41,65,18.83911804770323],[121,-41,66,18.85060195838221],[121,-41,67,18.78802853518405],[121,-41,68,18.680333404812785],[121,-41,69,18.622448205248368],[121,-41,70,18.631856280274953],[121,-41,71,18.655227208816004],[121,-41,72,18.690398178817908],[121,-41,73,18.72436334286611],[121,-41,74,18.760526193842423],[121,-41,75,18.8068808355929],[121,-41,76,18.867116968021875],[121,-41,77,18.94694518003772],[121,-41,78,19.030670678437858],[121,-41,79,19.115925771874796],[121,-40,64,18.53029370540667],[121,-40,65,18.673912886693934],[121,-40,66,18.714011288451605],[121,-40,67,18.64612256316503],[121,-40,68,18.490326005896716],[121,-40,69,18.434078584080762],[121,-40,70,18.442305342988913],[121,-40,71,18.46383289754744],[121,-40,72,18.496502189869584],[121,-40,73,18.529740531665073],[121,-40,74,18.566584943157846],[121,-40,75,18.612699831778425],[121,-40,76,18.67439038455668],[121,-40,77,18.753059582228982],[121,-40,78,18.838295690605076],[121,-40,79,18.925261034381133],[121,-39,64,18.38215848706065],[121,-39,65,18.516466705840013],[121,-39,66,18.583152840737682],[121,-39,67,18.514168466534382],[121,-39,68,18.32672073749908],[121,-39,69,18.2503584847972],[121,-39,70,18.25774362416469],[121,-39,71,18.277563977381345],[121,-39,72,18.30936024525828],[121,-39,73,18.342701181980118],[121,-39,74,18.38355251237701],[121,-39,75,18.42799303029804],[121,-39,76,18.487748844977098],[121,-39,77,18.564667824755062],[121,-39,78,18.64925511447577],[121,-39,79,18.736358618980788],[121,-38,64,18.302150153561527],[121,-38,65,18.397051237246345],[121,-38,66,18.419802213256578],[121,-38,67,18.23242130625416],[121,-38,68,18.056841882461413],[121,-38,69,18.062139353905525],[121,-38,70,18.068634959453973],[121,-38,71,18.08812059820106],[121,-38,72,18.120126455018404],[121,-38,73,18.150330982090843],[121,-38,74,18.190301946124364],[121,-38,75,18.232850670215186],[121,-38,76,18.292244283813197],[121,-38,77,18.368748566549723],[121,-38,78,18.457222463304248],[121,-38,79,18.543742602318176],[121,-37,64,18.193867839212686],[121,-37,65,18.252424463840768],[121,-37,66,18.30342516284999],[121,-37,67,18.067077366874116],[121,-37,68,17.908299424435832],[121,-37,69,17.870996920814854],[121,-37,70,17.875779366211276],[121,-37,71,17.894286579128668],[121,-37,72,17.92567683540025],[121,-37,73,17.954512406148822],[121,-37,74,17.990947643963388],[121,-37,75,18.03502278865259],[121,-37,76,18.093244570140634],[121,-37,77,18.169558662760974],[121,-37,78,18.259834636936162],[121,-37,79,18.346624441826258],[121,-36,64,18.013204598288116],[121,-36,65,18.093193822710308],[121,-36,66,18.12987198124633],[121,-36,67,17.875322738840957],[121,-36,68,17.739531505672705],[121,-36,69,17.68544859848839],[121,-36,70,17.69278683421329],[121,-36,71,17.71035595695156],[121,-36,72,17.73827626390973],[121,-36,73,17.7677540431424],[121,-36,74,17.803246039741545],[121,-36,75,17.846817702180523],[121,-36,76,17.905988822404655],[121,-36,77,17.980724324998718],[121,-36,78,18.07146144124243],[121,-36,79,18.158664781703813],[121,-35,64,17.74715587839992],[121,-35,65,17.762790603491975],[121,-35,66,17.68090394233936],[121,-35,67,17.462536601597474],[121,-35,68,17.48467574106975],[121,-35,69,17.491077987925465],[121,-35,70,17.49577663045949],[121,-35,71,17.510833052393156],[121,-35,72,17.53699096852606],[121,-35,73,17.56788704101564],[121,-35,74,17.60314228417682],[121,-35,75,17.648077697397344],[121,-35,76,17.707831353109206],[121,-35,77,17.78763123673319],[121,-35,78,17.87951080744607],[121,-35,79,17.968800622403826],[121,-34,64,17.565203658905727],[121,-34,65,17.56686646305739],[121,-34,66,17.474273818953627],[121,-34,67,17.274859537217587],[121,-34,68,17.29910073911216],[121,-34,69,17.30619416738112],[121,-34,70,17.30689666257674],[121,-34,71,17.320509363169215],[121,-34,72,17.34632422283798],[121,-34,73,17.376841923487195],[121,-34,74,17.40984741922021],[121,-34,75,17.452075489016],[121,-34,76,17.513210012809257],[121,-34,77,17.593747185150733],[121,-34,78,17.686737906676576],[121,-34,79,17.778162946403963],[121,-33,64,17.391011705217768],[121,-33,65,17.381035907577843],[121,-33,66,17.296850007967084],[121,-33,67,17.14597134034094],[121,-33,68,17.168722105332503],[121,-33,69,17.171006328570858],[121,-33,70,17.166120843597433],[121,-33,71,17.174342958131458],[121,-33,72,17.195591930962248],[121,-33,73,17.218680711869833],[121,-33,74,17.24590854139947],[121,-33,75,17.284622278966637],[121,-33,76,17.340688523649764],[121,-33,77,17.419041345796646],[121,-33,78,17.50691912717519],[121,-33,79,17.59622139381989],[121,-32,64,17.20863962456622],[121,-32,65,17.192044250997082],[121,-32,66,17.099457015588584],[121,-32,67,16.959552901823926],[121,-32,68,16.980917798467974],[121,-32,69,16.982515168477246],[121,-32,70,16.97713998137784],[121,-32,71,16.98288351092708],[121,-32,72,17.003784706444087],[121,-32,73,17.025601817387336],[121,-32,74,17.053674865762403],[121,-32,75,17.092106949038133],[121,-32,76,17.148632795969238],[121,-32,77,17.225311330862386],[121,-32,78,17.313016219605405],[121,-32,79,17.40125455958831],[121,-31,64,16.98547328878505],[121,-31,65,16.976134173959665],[121,-31,66,16.95710014462382],[121,-31,67,16.862967433274903],[121,-31,68,16.811317682770724],[121,-31,69,16.793048336327264],[121,-31,70,16.788257573447535],[121,-31,71,16.79438087197348],[121,-31,72,16.813514414828585],[121,-31,73,16.83491532465492],[121,-31,74,16.86188324195279],[121,-31,75,16.90008888108057],[121,-31,76,16.955802166725753],[121,-31,77,17.03130176822672],[121,-31,78,17.1194496775513],[121,-31,79,17.20846228642968],[121,-30,64,16.83104842702246],[121,-30,65,16.794416022060048],[121,-30,66,16.790587615346066],[121,-30,67,16.729200431456817],[121,-30,68,16.644200742213982],[121,-30,69,16.608041470744737],[121,-30,70,16.60157362047406],[121,-30,71,16.60549291889494],[121,-30,72,16.623801174192458],[121,-30,73,16.64475351773224],[121,-30,74,16.67107137171722],[121,-30,75,16.70735662588557],[121,-30,76,16.764266709026035],[121,-30,77,16.839547589773808],[121,-30,78,16.926354133980798],[121,-30,79,17.014229405538067],[121,-29,64,16.729524574412245],[121,-29,65,16.68322225518842],[121,-29,66,16.68743685643601],[121,-29,67,16.637941588849],[121,-29,68,16.51477771243445],[121,-29,69,16.41832796664157],[121,-29,70,16.41025918926119],[121,-29,71,16.415977235761886],[121,-29,72,16.430310854533563],[121,-29,73,16.449109835401114],[121,-29,74,16.474095813802585],[121,-29,75,16.512149735708995],[121,-29,76,16.569082378475528],[121,-29,77,16.646919464867395],[121,-29,78,16.73279755416332],[121,-29,79,16.81811896665077],[121,-28,64,16.560711915707166],[121,-28,65,16.51357105656099],[121,-28,66,16.51316163889166],[121,-28,67,16.4661261691811],[121,-28,68,16.34975108949334],[121,-28,69,16.235160724632678],[121,-28,70,16.225923858496284],[121,-28,71,16.23138665406125],[121,-28,72,16.24501389920063],[121,-28,73,16.262917294956058],[121,-28,74,16.28722632243544],[121,-28,75,16.32316292282651],[121,-28,76,16.38131961882167],[121,-28,77,16.459642778999342],[121,-28,78,16.549308039593118],[121,-28,79,16.632064254845094],[121,-27,64,16.38341126833166],[121,-27,65,16.402069307204624],[121,-27,66,16.432232465580665],[121,-27,67,16.403648573620956],[121,-27,68,16.318059497503043],[121,-27,69,16.15527367866139],[121,-27,70,16.05389928162648],[121,-27,71,16.057935569127046],[121,-27,72,16.07153195016619],[121,-27,73,16.087915907908663],[121,-27,74,16.109558008722065],[121,-27,75,16.14421647208195],[121,-27,76,16.201428311972407],[121,-27,77,16.27696778666082],[121,-27,78,16.3638385476593],[121,-27,79,16.442250494789132],[121,-26,64,16.243401648264133],[121,-26,65,16.26385994750209],[121,-26,66,16.29521327317388],[121,-26,67,16.26009137868065],[121,-26,68,16.180302436337165],[121,-26,69,15.985933877827032],[121,-26,70,15.868108263598886],[121,-26,71,15.870565827618002],[121,-26,72,15.881134672654602],[121,-26,73,15.898931051985604],[121,-26,74,15.918094701647933],[121,-26,75,15.951374421924255],[121,-26,76,16.007885537370566],[121,-26,77,16.085084770201735],[121,-26,78,16.1726373002583],[121,-26,79,16.247652289363206],[121,-25,64,16.057957814182696],[121,-25,65,16.075910488212664],[121,-25,66,16.1093087815356],[121,-25,67,16.050253266610213],[121,-25,68,15.985473336209264],[121,-25,69,15.775784896629684],[121,-25,70,15.677308327749987],[121,-25,71,15.680192886217368],[121,-25,72,15.688146115247974],[121,-25,73,15.703775617096932],[121,-25,74,15.724907299941286],[121,-25,75,15.756078936708082],[121,-25,76,15.81184665702798],[121,-25,77,15.887778218695514],[121,-25,78,15.976129023353812],[121,-25,79,16.053832714491282],[121,-24,64,15.87383914644502],[121,-24,65,15.890411140874988],[121,-24,66,15.926301925505294],[121,-24,67,15.84639191203325],[121,-24,68,15.758121283687926],[121,-24,69,15.587449157741412],[121,-24,70,15.48840790968592],[121,-24,71,15.488873765125472],[121,-24,72,15.496740287099492],[121,-24,73,15.51277351745032],[121,-24,74,15.5337356199787],[121,-24,75,15.561809575696275],[121,-24,76,15.616044905356993],[121,-24,77,15.693575712552878],[121,-24,78,15.779430199885203],[121,-24,79,15.860623400768514],[121,-23,64,15.682995069323933],[121,-23,65,15.700459968205797],[121,-23,66,15.706007063974145],[121,-23,67,15.584658209702711],[121,-23,68,15.46618586151522],[121,-23,69,15.33578858935159],[121,-23,70,15.287998616264922],[121,-23,71,15.286598120151465],[121,-23,72,15.29455692897066],[121,-23,73,15.311001038523111],[121,-23,74,15.330801281892693],[121,-23,75,15.356552411217388],[121,-23,76,15.408947843245482],[121,-23,77,15.489179444351915],[121,-23,78,15.572138984479414],[121,-23,79,15.654028255226198],[121,-22,64,15.499990086142917],[121,-22,65,15.521057852003654],[121,-22,66,15.49845611390077],[121,-22,67,15.385142854854049],[121,-22,68,15.245418919560032],[121,-22,69,15.134861125592542],[121,-22,70,15.099611236071484],[121,-22,71,15.096011919800588],[121,-22,72,15.104212594473426],[121,-22,73,15.120157195944058],[121,-22,74,15.136423834477279],[121,-22,75,15.16273544583803],[121,-22,76,15.21677339915933],[121,-22,77,15.294440647367056],[121,-22,78,15.377451328101971],[121,-22,79,15.459425126972773],[121,-21,64,15.312275122996885],[121,-21,65,15.33502322081556],[121,-21,66,15.372304796032978],[121,-21,67,15.257122901289495],[121,-21,68,15.128234755472509],[121,-21,69,15.016774574817802],[121,-21,70,14.932639963704629],[121,-21,71,14.901457134739296],[121,-21,72,14.909274966663101],[121,-21,73,14.922100788092218],[121,-21,74,14.93657466221823],[121,-21,75,14.967460026330766],[121,-21,76,15.022058039726812],[121,-21,77,15.094887190807043],[121,-21,78,15.180321602535583],[121,-21,79,15.260877667022408],[121,-20,64,15.112611106267467],[121,-20,65,15.135339521274943],[121,-20,66,15.16010215962652],[121,-20,67,15.037859128134528],[121,-20,68,14.94835622408549],[121,-20,69,14.807670216966903],[121,-20,70,14.75082611639369],[121,-20,71,14.715434663553456],[121,-20,72,14.720407773179064],[121,-20,73,14.731263380244586],[121,-20,74,14.745751392223147],[121,-20,75,14.777134265015013],[121,-20,76,14.830823010764906],[121,-20,77,14.904760889523942],[121,-20,78,14.989512472284432],[121,-20,79,15.06972356826127],[121,-19,64,14.917270904373021],[121,-19,65,14.941060817521121],[121,-19,66,14.97868487380013],[121,-19,67,14.946731468890137],[121,-19,68,14.87812793916299],[121,-19,69,14.745048798448106],[121,-19,70,14.690698156515666],[121,-19,71,14.609893422639463],[121,-19,72,14.563635525797292],[121,-19,73,14.545547873086786],[121,-19,74,14.560901697020551],[121,-19,75,14.590555139368233],[121,-19,76,14.643272980229128],[121,-19,77,14.719645974743507],[121,-19,78,14.803993591713418],[121,-19,79,14.885085052002253],[121,-18,64,14.714486562594896],[121,-18,65,14.737704822800053],[121,-18,66,14.77307692393948],[121,-18,67,14.75530757805706],[121,-18,68,14.683043305686265],[121,-18,69,14.5718723189048],[121,-18,70,14.520421957261298],[121,-18,71,14.452507345445506],[121,-18,72,14.420036704960808],[121,-18,73,14.354336510195344],[121,-18,74,14.36937741540094],[121,-18,75,14.399642277838248],[121,-18,76,14.450127803424438],[121,-18,77,14.527853272785125],[121,-18,78,14.611135847625448],[121,-18,79,14.692206311058518],[121,-17,64,14.518281355010231],[121,-17,65,14.538810830573569],[121,-17,66,14.574571790902867],[121,-17,67,14.573828155958513],[121,-17,68,14.479812326822513],[121,-17,69,14.405596517512876],[121,-17,70,14.338773438298311],[121,-17,71,14.299402150427563],[121,-17,72,14.267466095921643],[121,-17,73,14.17604698466063],[121,-17,74,14.175978023001175],[121,-17,75,14.204281695432687],[121,-17,76,14.255888871878001],[121,-17,77,14.33067487418939],[121,-17,78,14.416903371582434],[121,-17,79,14.500128550673356],[121,-16,64,14.329377609112383],[121,-16,65,14.352358380376794],[121,-16,66,14.38746819817662],[121,-16,67,14.414286730502614],[121,-16,68,14.320363434754688],[121,-16,69,14.279618241216955],[121,-16,70,14.240323041224496],[121,-16,71,14.228382262399288],[121,-16,72,14.203890655942276],[121,-16,73,14.092839582181062],[121,-16,74,13.985631314746266],[121,-16,75,14.012919901037034],[121,-16,76,14.06253825418914],[121,-16,77,14.137693403649527],[121,-16,78,14.222567903350768],[121,-16,79,14.307263915845365],[121,-15,64,14.13923356218725],[121,-15,65,14.16083376418693],[121,-15,66,14.197678873590066],[121,-15,67,14.204684459252478],[121,-15,68,14.13994848365267],[121,-15,69,14.110724615977997],[121,-15,70,14.08593402185774],[121,-15,71,14.05841969473004],[121,-15,72,14.031548446056455],[121,-15,73,13.8886469821222],[121,-15,74,13.789247034556434],[121,-15,75,13.814813502272624],[121,-15,76,13.862781668078293],[121,-15,77,13.938744161011249],[121,-15,78,14.025266255937668],[121,-15,79,14.111925988317966],[121,-14,64,13.838585273139861],[121,-14,65,13.858798531470311],[121,-14,66,13.89679445248998],[121,-14,67,13.888439428738216],[121,-14,68,13.870378418112255],[121,-14,69,13.838120948954405],[121,-14,70,13.828542511190431],[121,-14,71,13.797194821890374],[121,-14,72,13.779181810666655],[121,-14,73,13.669570076595651],[121,-14,74,13.59595255360972],[121,-14,75,13.620885212184902],[121,-14,76,13.67106982986455],[121,-14,77,13.74612829441637],[121,-14,78,13.834308857198742],[121,-14,79,13.921998065968276],[121,-13,64,13.644032186625743],[121,-13,65,13.664496677104376],[121,-13,66,13.705364437848406],[121,-13,67,13.740264645459913],[121,-13,68,13.735517370459487],[121,-13,69,13.691833204170836],[121,-13,70,13.684479516381446],[121,-13,71,13.665935563323176],[121,-13,72,13.636570699781098],[121,-13,73,13.534402431012902],[121,-13,74,13.401345672600614],[121,-13,75,13.424606957886263],[121,-13,76,13.477241900018154],[121,-13,77,13.550631783700762],[121,-13,78,13.639273595100331],[121,-13,79,13.7267132382597],[121,-12,64,13.439688720421408],[121,-12,65,13.45974139665037],[121,-12,66,13.497692405641843],[121,-12,67,13.538736356612125],[121,-12,68,13.529955773900108],[121,-12,69,13.50244849582058],[121,-12,70,13.490160625598172],[121,-12,71,13.473035586107233],[121,-12,72,13.444408000744827],[121,-12,73,13.343698676249241],[121,-12,74,13.20657346315306],[121,-12,75,13.2326236596616],[121,-12,76,13.284317036673913],[121,-12,77,13.361069066067184],[121,-12,78,13.449985944747082],[121,-12,79,13.536093118185129],[121,-11,64,13.24418925394869],[121,-11,65,13.265256301810306],[121,-11,66,13.300865418754135],[121,-11,67,13.342789779421432],[121,-11,68,13.364835540720133],[121,-11,69,13.361881635180339],[121,-11,70,13.352359097722726],[121,-11,71,13.335738962357851],[121,-11,72,13.277357239998567],[121,-11,73,13.17091601525917],[121,-11,74,13.037649557771726],[121,-11,75,13.06585594214938],[121,-11,76,13.117697811077411],[121,-11,77,13.192852320141563],[121,-11,78,13.280740752362716],[121,-11,79,13.369125906464662],[121,-10,64,13.041157952823994],[121,-10,65,13.06452184359001],[121,-10,66,13.097212220810182],[121,-10,67,13.139160638252195],[121,-10,68,13.160082342687218],[121,-10,69,13.158170271341174],[121,-10,70,13.149175171990393],[121,-10,71,13.12822807664028],[121,-10,72,13.073694623707375],[121,-10,73,12.960364659357245],[121,-10,74,12.850427373306989],[121,-10,75,12.879488709312783],[121,-10,76,12.931225889174],[121,-10,77,13.004144029143541],[121,-10,78,13.09415391544468],[121,-10,79,13.181139964919495],[121,-9,64,12.856908732546685],[121,-9,65,12.878637801404933],[121,-9,66,12.914618491588595],[121,-9,67,12.953224968765198],[121,-9,68,12.97224917284492],[121,-9,69,12.96601216899858],[121,-9,70,12.954809314367244],[121,-9,71,12.91766053484743],[121,-9,72,12.864778576140443],[121,-9,73,12.763142457563301],[121,-9,74,12.660806389966647],[121,-9,75,12.689196613337177],[121,-9,76,12.741363720797182],[121,-9,77,12.815627718893044],[121,-9,78,12.903671302306835],[121,-9,79,12.993421647743288],[121,-8,64,12.667308676371793],[121,-8,65,12.68777059377647],[121,-8,66,12.72662988972256],[121,-8,67,12.764349794944195],[121,-8,68,12.783047338747494],[121,-8,69,12.770886030796955],[121,-8,70,12.727202648209774],[121,-8,71,12.672778518929803],[121,-8,72,12.603644985858104],[121,-8,73,12.520484872515976],[121,-8,74,12.472280593712492],[121,-8,75,12.498962216975071],[121,-8,76,12.551612362241565],[121,-8,77,12.622313230092537],[121,-8,78,12.710952446300224],[121,-8,79,12.801732487681576],[121,-7,64,12.47516574170239],[121,-7,65,12.495544745994566],[121,-7,66,12.533704561599313],[121,-7,67,12.570249084003954],[121,-7,68,12.589858349615426],[121,-7,69,12.576277399458688],[121,-7,70,12.522398675105865],[121,-7,71,12.476166986063893],[121,-7,72,12.394064467632907],[121,-7,73,12.323351427911815],[121,-7,74,12.284165579114838],[121,-7,75,12.311430928055108],[121,-7,76,12.36163546189131],[121,-7,77,12.431343981885732],[121,-7,78,12.517634983525872],[121,-7,79,12.610822983034394],[121,-6,64,12.279576772747644],[121,-6,65,12.300472838311329],[121,-6,66,12.338383902340508],[121,-6,67,12.375706133146243],[121,-6,68,12.39746414187724],[121,-6,69,12.390051100405113],[121,-6,70,12.32299522129592],[121,-6,71,12.258497585282207],[121,-6,72,12.183239172085422],[121,-6,73,12.109320174225433],[121,-6,74,12.093629731916339],[121,-6,75,12.119641524036947],[121,-6,76,12.171229960115369],[121,-6,77,12.240488066831311],[121,-6,78,12.325692003365923],[121,-6,79,12.418248562522306],[121,-5,64,12.084507463202296],[121,-5,65,12.105386158475234],[121,-5,66,12.142890174082858],[121,-5,67,12.181308258112377],[121,-5,68,12.204474974802515],[121,-5,69,12.20752099422903],[121,-5,70,12.184259124189444],[121,-5,71,12.134751533041594],[121,-5,72,12.110140044333537],[121,-5,73,12.085878908668386],[121,-5,74,12.042665873361544],[121,-5,75,11.932444397368124],[121,-5,76,11.973056715775845],[121,-5,77,12.04256482627374],[121,-5,78,12.128894586672008],[121,-5,79,12.218146198031475],[121,-4,64,11.880166464925477],[121,-4,65,11.889077176895185],[121,-4,66,11.924844048821958],[121,-4,67,11.977398061696759],[121,-4,68,12.000969793818884],[121,-4,69,12.006096180904699],[121,-4,70,11.983180319527369],[121,-4,71,11.927002654895816],[121,-4,72,11.893528879981922],[121,-4,73,11.87034584019234],[121,-4,74,11.835417072511628],[121,-4,75,11.724678695173973],[121,-4,76,11.777053377539504],[121,-4,77,11.848631304480863],[121,-4,78,11.932659711565675],[121,-4,79,12.023051720054543],[121,-3,64,11.680073805819749],[121,-3,65,11.70069083581551],[121,-3,66,11.739204662372533],[121,-3,67,11.777267086323517],[121,-3,68,11.802946230458781],[121,-3,69,11.80840301862484],[121,-3,70,11.802890370511566],[121,-3,71,11.78333754078595],[121,-3,72,11.748783265773907],[121,-3,73,11.726134399989192],[121,-3,74,11.688029248009435],[121,-3,75,11.550849839324197],[121,-3,76,11.579056718636718],[121,-3,77,11.649112854879082],[121,-3,78,11.732898117291615],[121,-3,79,11.82572872272107],[121,-2,64,11.480115504183662],[121,-2,65,11.497390734086379],[121,-2,66,11.54193801331983],[121,-2,67,11.580037104371826],[121,-2,68,11.60574600523579],[121,-2,69,11.610346288607117],[121,-2,70,11.606744376917783],[121,-2,71,11.575139139734716],[121,-2,72,11.550657362261976],[121,-2,73,11.520538204077718],[121,-2,74,11.488800013511678],[121,-2,75,11.36452464376407],[121,-2,76,11.386744613226714],[121,-2,77,11.456942096793487],[121,-2,78,11.54114789520799],[121,-2,79,11.631952011485811],[121,-1,64,11.283311448167437],[121,-1,65,11.283551593332877],[121,-1,66,11.322651383118071],[121,-1,67,11.387997051947421],[121,-1,68,11.414592496163626],[121,-1,69,11.42045553366993],[121,-1,70,11.414058207291276],[121,-1,71,11.410377304262948],[121,-1,72,11.404198521919664],[121,-1,73,11.348235904770071],[121,-1,74,11.322763801902171],[121,-1,75,11.191537047901816],[121,-1,76,11.192852653832679],[121,-1,77,11.264201817163533],[121,-1,78,11.35030757454097],[121,-1,79,11.442330310782692],[121,0,64,11.031075486828547],[121,0,65,11.051395151913656],[121,0,66,11.088600062530022],[121,0,67,11.11835359180037],[121,0,68,11.12739213459607],[121,0,69,11.118562860540377],[121,0,70,11.091158962245837],[121,0,71,11.066305483366543],[121,0,72,11.049793371496492],[121,0,73,11.039220374815573],[121,0,74,11.042011983810072],[121,0,75,11.058339944978126],[121,0,76,11.103161439593816],[121,0,77,11.176142134996736],[121,0,78,11.262057336542957],[121,0,79,11.351671966333786],[121,1,64,10.84165682036813],[121,1,65,10.860403345659753],[121,1,66,10.896561344362718],[121,1,67,10.926873015138247],[121,1,68,10.93773570183118],[121,1,69,10.927339029259395],[121,1,70,10.900251253825793],[121,1,71,10.873670891374818],[121,1,72,10.854877994649218],[121,1,73,10.844955537042761],[121,1,74,10.846886307734145],[121,1,75,10.862618451270961],[121,1,76,10.90797930835755],[121,1,77,10.982147522382396],[121,1,78,11.06924592483788],[121,1,79,11.1588665941124],[121,2,64,10.650284572527113],[121,2,65,10.669482233385116],[121,2,66,10.704088944009902],[121,2,67,10.737295669077643],[121,2,68,10.748424750844084],[121,2,69,10.737973601794819],[121,2,70,10.708910719766857],[121,2,71,10.682574439040076],[121,2,72,10.662532383033701],[121,2,73,10.651320601535494],[121,2,74,10.65128609899038],[121,2,75,10.66944722229885],[121,2,76,10.715342676141956],[121,2,77,10.787866656625448],[121,2,78,10.876621664954286],[121,2,79,10.965408418711823],[121,3,64,10.457967813208288],[121,3,65,10.478486931151274],[121,3,66,10.514028170329409],[121,3,67,10.546783000388768],[121,3,68,10.558806611911109],[121,3,69,10.546234469057314],[121,3,70,10.515595950566283],[121,3,71,10.48958801745492],[121,3,72,10.471631148478092],[121,3,73,10.457986845012112],[121,3,74,10.457617446831872],[121,3,75,10.475497630679326],[121,3,76,10.523919722051303],[121,3,77,10.595896963580964],[121,3,78,10.681901226081427],[121,3,79,10.773822525344023],[121,4,64,10.265433249933992],[121,4,65,10.284615395298045],[121,4,66,10.318873594325982],[121,4,67,10.354192860150242],[121,4,68,10.367851550349148],[121,4,69,10.35218793521036],[121,4,70,10.324225972155842],[121,4,71,10.295027268925343],[121,4,72,10.275617280502534],[121,4,73,10.264337496748862],[121,4,74,10.263711518455423],[121,4,75,10.281935078365786],[121,4,76,10.329241401006744],[121,4,77,10.403213009029294],[121,4,78,10.490378859751472],[121,4,79,10.584262736502504],[121,5,64,10.073383387938495],[121,5,65,10.091877082712617],[121,5,66,10.12717972750068],[121,5,67,10.163339352103804],[121,5,68,10.177754124106784],[121,5,69,10.161928679655798],[121,5,70,10.130422461900988],[121,5,71,10.101579498248906],[121,5,72,10.080733461365979],[121,5,73,10.069626689791221],[121,5,74,10.069972584577073],[121,5,75,10.086322189832218],[121,5,76,10.1333477367091],[121,5,77,10.208670056530915],[121,5,78,10.29763044013044],[121,5,79,10.392260548646876],[121,6,64,9.881997234389555],[121,6,65,9.899565642843699],[121,6,66,9.935443324551898],[121,6,67,9.970676785563025],[121,6,68,9.986647680275084],[121,6,69,9.972275705912372],[121,6,70,9.940137451048605],[121,6,71,9.909514310807218],[121,6,72,9.886113815923569],[121,6,73,9.872805028111305],[121,6,74,9.87371574001615],[121,6,75,9.892930947871804],[121,6,76,9.941116019589739],[121,6,77,10.017848001642466],[121,6,78,10.106424181188885],[121,6,79,10.198620299012566],[121,7,64,9.693704126682574],[121,7,65,9.708427029667979],[121,7,66,9.742504649157851],[121,7,67,9.776993558684724],[121,7,68,9.793015138846146],[121,7,69,9.777708889272294],[121,7,70,9.74667695918058],[121,7,71,9.716829345572982],[121,7,72,9.694994186632744],[121,7,73,9.680225441576086],[121,7,74,9.680213899464977],[121,7,75,9.700012547112294],[121,7,76,9.749608884175368],[121,7,77,9.826272095712397],[121,7,78,9.914134039033176],[121,7,79,10.008332047680684],[121,8,64,9.506913489337398],[121,8,65,9.520828715238848],[121,8,66,9.553465358478004],[121,8,67,9.589449736085285],[121,8,68,9.604440079073957],[121,8,69,9.590594385900209],[121,8,70,9.563457749420406],[121,8,71,9.535708958233903],[121,8,72,9.512797200822114],[121,8,73,9.498399913626809],[121,8,74,9.498852132918229],[121,8,75,9.516877808417652],[121,8,76,9.564100587399096],[121,8,77,9.6438420491338],[121,8,78,9.734570189104494],[121,8,79,9.82615345632778],[121,9,64,9.325169232336007],[121,9,65,9.330232456130188],[121,9,66,9.359246809319623],[121,9,67,9.391015438091003],[121,9,68,9.403605104540931],[121,9,69,9.390404029142747],[121,9,70,9.362481010092933],[121,9,71,9.33791975162888],[121,9,72,9.315745199257156],[121,9,73,9.300498847830111],[121,9,74,9.300439912071326],[121,9,75,9.31787000323853],[121,9,76,9.36598682865234],[121,9,77,9.447920542295371],[121,9,78,9.544593119184128],[121,9,79,9.64227741159569],[121,10,64,9.132604671866037],[121,10,65,9.1395370624532],[121,10,66,9.168613135652073],[121,10,67,9.199361839494728],[121,10,68,9.212689869926484],[121,10,69,9.1997755245755],[121,10,70,9.168478992755206],[121,10,71,9.144460043155192],[121,10,72,9.124137564213349],[121,10,73,9.105761675426232],[121,10,74,9.105891806280244],[121,10,75,9.123164256364033],[121,10,76,9.173055335971638],[121,10,77,9.25433557413217],[121,10,78,9.35040042623179],[121,10,79,9.450479586248587],[121,11,64,8.93897723021729],[121,11,65,8.94774354182434],[121,11,66,8.977085855888573],[121,11,67,9.008752224565313],[121,11,68,9.020986491733742],[121,11,69,9.00752636075354],[121,11,70,8.975930879543467],[121,11,71,8.95058373749633],[121,11,72,8.931562561136158],[121,11,73,8.913232046341331],[121,11,74,8.913634014156367],[121,11,75,8.932963458486663],[121,11,76,8.979567225888454],[121,11,77,9.061782100322375],[121,11,78,9.156479987439882],[121,11,79,9.256888240907948],[121,12,64,8.746980451805195],[121,12,65,8.759335972914416],[121,12,66,8.787598713870603],[121,12,67,8.81685596568389],[121,12,68,8.830052409325127],[121,12,69,8.815439327035042],[121,12,70,8.781465771717043],[121,12,71,8.753750049591908],[121,12,72,8.73478549554671],[121,12,73,8.718517484605153],[121,12,74,8.716717905240698],[121,12,75,8.736813057290275],[121,12,76,8.78480702862315],[121,12,77,8.8645560756768],[121,12,78,8.959430724692742],[121,12,79,9.060605024052741],[121,13,64,8.548395675078876],[121,13,65,8.567323031774842],[121,13,66,8.600248801214054],[121,13,67,8.634385237319014],[121,13,68,8.65094523779545],[121,13,69,8.636877831811788],[121,13,70,8.602519317901235],[121,13,71,8.573160831165984],[121,13,72,8.55410668386816],[121,13,73,8.538395007300348],[121,13,74,8.537406027705337],[121,13,75,8.555565007688056],[121,13,76,8.59912723616772],[121,13,77,8.671561470434803],[121,13,78,8.762836144271262],[121,13,79,8.857192294122122],[121,14,64,8.358216407967522],[121,14,65,8.374257717576363],[121,14,66,8.407128385801274],[121,14,67,8.442502350768935],[121,14,68,8.45985222855451],[121,14,69,8.447006301213598],[121,14,70,8.413828223733612],[121,14,71,8.384129204514323],[121,14,72,8.363678499524674],[121,14,73,8.347152472267531],[121,14,74,8.345677561691392],[121,14,75,8.363317417620275],[121,14,76,8.406256364542458],[121,14,77,8.480625803505964],[121,14,78,8.567581746290644],[121,14,79,8.661482908855797],[121,15,64,8.166131294809581],[121,15,65,8.181669414272424],[121,15,66,8.215372787955294],[121,15,67,8.249649902923615],[121,15,68,8.268982068908812],[121,15,69,8.256019360172903],[121,15,70,8.22404257757638],[121,15,71,8.195176621943418],[121,15,72,8.170471918617308],[121,15,73,8.153563296615765],[121,15,74,8.148753613637533],[121,15,75,8.168566270436243],[121,15,76,8.214347542606983],[121,15,77,8.287327249273465],[121,15,78,8.373711662228416],[121,15,79,8.46674224078496],[121,16,64,7.969359775949889],[121,16,65,7.988480608595944],[121,16,66,8.024321440581037],[121,16,67,8.062214286957442],[121,16,68,8.081366058935068],[121,16,69,8.071039877730668],[121,16,70,8.04091517534304],[121,16,71,8.01173473400522],[121,16,72,7.983155866539735],[121,16,73,7.967143813691891],[121,16,74,7.961921529060631],[121,16,75,7.979075191716149],[121,16,76,8.029586134203086],[121,16,77,8.102191309193888],[121,16,78,8.190464208855012],[121,16,79,8.284863708117289],[121,17,64,7.775810044046264],[121,17,65,7.795765507239519],[121,17,66,7.8324033437488225],[121,17,67,7.870328496361465],[121,17,68,7.891763837001477],[121,17,69,7.882106927669017],[121,17,70,7.851116328116786],[121,17,71,7.8201761538610075],[121,17,72,7.788349277775039],[121,17,73,7.769529904359728],[121,17,74,7.766789748828304],[121,17,75,7.783672592938054],[121,17,76,7.834416373685476],[121,17,77,7.908278533636139],[121,17,78,7.992525537852695],[121,17,79,8.087899211674221],[121,18,64,7.585227593415928],[121,18,65,7.602125197377964],[121,18,66,7.639645595315413],[121,18,67,7.679756828865178],[121,18,68,7.6986051531213775],[121,18,69,7.690794396723206],[121,18,70,7.660670285350031],[121,18,71,7.627598042896188],[121,18,72,7.593908926760574],[121,18,73,7.572726708177675],[121,18,74,7.569049542301141],[121,18,75,7.588567417716843],[121,18,76,7.641109578192978],[121,18,77,7.714092731811549],[121,18,78,7.796743517503209],[121,18,79,7.889215013397214],[121,19,64,7.3920927365030265],[121,19,65,7.410587378769868],[121,19,66,7.451537012700724],[121,19,67,7.48776754228215],[121,19,68,7.505585454572516],[121,19,69,7.499069508854321],[121,19,70,7.467866907799136],[121,19,71,7.433985006645504],[121,19,72,7.398622336362885],[121,19,73,7.375951311547153],[121,19,74,7.373002674072087],[121,19,75,7.394598785245831],[121,19,76,7.4449010625548055],[121,19,77,7.517892131903451],[121,19,78,7.603365979864662],[121,19,79,7.694948396008293],[121,20,64,7.200904164678307],[121,20,65,7.219609076903139],[121,20,66,7.2594953171920436],[121,20,67,7.292696448425333],[121,20,68,7.31199141616185],[121,20,69,7.302665217974838],[121,20,70,7.271710585590038],[121,20,71,7.237473042715635],[121,20,72,7.197492223201402],[121,20,73,7.176222566007978],[121,20,74,7.1726272212005115],[121,20,75,7.195806370523552],[121,20,76,7.246010603246224],[121,20,77,7.315678571585831],[121,20,78,7.4049308078374],[121,20,79,7.497408098465366],[121,21,64,7.019075994970091],[121,21,65,7.040655586193478],[121,21,66,7.07999300964645],[121,21,67,7.1144869823084935],[121,21,68,7.131676829095216],[121,21,69,7.119208369853961],[121,21,70,7.082089050134428],[121,21,71,7.041002622023266],[121,21,72,6.994540190446288],[121,21,73,6.967338617457563],[121,21,74,6.964859461978092],[121,21,75,6.986812529659716],[121,21,76,7.035016681017614],[121,21,77,7.1072208190555966],[121,21,78,7.19885644630349],[121,21,79,7.291689321434841],[121,22,64,6.82684410852942],[121,22,65,6.847883565857814],[121,22,66,6.886509818227967],[121,22,67,6.925074568114628],[121,22,68,6.939765857294693],[121,22,69,6.9281841310508385],[121,22,70,6.888551238498865],[121,22,71,6.845406946870785],[121,22,72,6.800594809407045],[121,22,73,6.77326907595907],[121,22,74,6.770281129433278],[121,22,75,6.791201612426834],[121,22,76,6.83955731958957],[121,22,77,6.91111742205892],[121,22,78,7.00271810111873],[121,22,79,7.096925276279572],[121,23,64,6.6353903213594005],[121,23,65,6.654658462185028],[121,23,66,6.69386643249307],[121,23,67,6.732195421822816],[121,23,68,6.746730818938335],[121,23,69,6.736540706466069],[121,23,70,6.694707317578692],[121,23,71,6.652044349147489],[121,23,72,6.6062729036006695],[121,23,73,6.579881426415339],[121,23,74,6.577602797575608],[121,23,75,6.595995107946654],[121,23,76,6.646462158159997],[121,23,77,6.717289710205303],[121,23,78,6.805267513102453],[121,23,79,6.901269766075518],[121,24,64,6.450483465629907],[121,24,65,6.466182163692995],[121,24,66,6.507938174580018],[121,24,67,6.549260246412391],[121,24,68,6.563043884113807],[121,24,69,6.54965296751401],[121,24,70,6.510112977238135],[121,24,71,6.464719958286618],[121,24,72,6.42049079732028],[121,24,73,6.3955232973348055],[121,24,74,6.39328588963038],[121,24,75,6.41377740933794],[121,24,76,6.461035643516847],[121,24,77,6.53052859887889],[121,24,78,6.619472498631971],[121,24,79,6.714482513412646],[121,25,64,6.2654782955767825],[121,25,65,6.275932581406428],[121,25,66,6.312425829902974],[121,25,67,6.350576138672072],[121,25,68,6.3601893405419565],[121,25,69,6.342987808012791],[121,25,70,6.307056137410813],[121,25,71,6.2678143014160135],[121,25,72,6.233923047730193],[121,25,73,6.211695079497819],[121,25,74,6.208115852600799],[121,25,75,6.229625566653321],[121,25,76,6.272151592765621],[121,25,77,6.340540813193764],[121,25,78,6.428523847290088],[121,25,79,6.521372085087736],[121,26,64,6.075715901899847],[121,26,65,6.086664741003666],[121,26,66,6.12043556656984],[121,26,67,6.157987482680131],[121,26,68,6.1696368452370685],[121,26,69,6.148448198405553],[121,26,70,6.112282817976072],[121,26,71,6.074404416556961],[121,26,72,6.042209769305686],[121,26,73,6.0199353096265],[121,26,74,6.014681290595668],[121,26,75,6.035028141086692],[121,26,76,6.077677911360813],[121,26,77,6.14568918849799],[121,26,78,6.234787813295301],[121,26,79,6.327994193738559],[121,27,64,5.886301111307299],[121,27,65,5.896856664755473],[121,27,66,5.927679070823669],[121,27,67,5.961959658880527],[121,27,68,5.974696591511596],[121,27,69,5.953002776899083],[121,27,70,5.91877890509912],[121,27,71,5.8827169192553],[121,27,72,5.849105268626086],[121,27,73,5.824903937761573],[121,27,74,5.8191805639165235],[121,27,75,5.839508117105512],[121,27,76,5.882313498911728],[121,27,77,5.951825471694362],[121,27,78,6.038855565772746],[121,27,79,6.131893999178153],[121,28,64,5.693705134249257],[121,28,65,5.702536279502294],[121,28,66,5.73310847001953],[121,28,67,5.765205166250659],[121,28,68,5.776936798985675],[121,28,69,5.756940039453959],[121,28,70,5.719179787900214],[121,28,71,5.684481057160444],[121,28,72,5.647359353470505],[121,28,73,5.621251930138069],[121,28,74,5.61574118748187],[121,28,75,5.637084308130146],[121,28,76,5.681205786591792],[121,28,77,5.749965812146834],[121,28,78,5.839655923180083],[121,28,79,5.931439607914492],[121,29,64,5.500239047261707],[121,29,65,5.509182154995064],[121,29,66,5.539999086357006],[121,29,67,5.570743398277675],[121,29,68,5.5846405717112555],[121,29,69,5.564080277085812],[121,29,70,5.525484327107148],[121,29,71,5.486330063441806],[121,29,72,5.448987979129884],[121,29,73,5.421429754641087],[121,29,74,5.415467907036745],[121,29,75,5.43744988605256],[121,29,76,5.482530813637301],[121,29,77,5.555837725218488],[121,29,78,5.644828371145599],[121,29,79,5.740663729173702],[121,30,64,5.3099963480799],[121,30,65,5.318288283178923],[121,30,66,5.350674140363081],[121,30,67,5.38184130043141],[121,30,68,5.393748515724457],[121,30,69,5.3729561196747],[121,30,70,5.331366868745679],[121,30,71,5.28971234443869],[121,30,72,5.251720979121251],[121,30,73,5.221851060782799],[121,30,74,5.215535145530976],[121,30,75,5.236700930608538],[121,30,76,5.285510970074911],[121,30,77,5.36172019228258],[121,30,78,5.451553936141228],[121,30,79,5.544883726305245],[121,31,64,5.119652267515676],[121,31,65,5.124991357652372],[121,31,66,5.156798263793298],[121,31,67,5.190253977263938],[121,31,68,5.201595480640455],[121,31,69,5.181352520286922],[121,31,70,5.137955595916158],[121,31,71,5.096716011210872],[121,31,72,5.056136849114927],[121,31,73,5.027182273749152],[121,31,74,5.0198490049701],[121,31,75,5.0376372660237685],[121,31,76,5.0899120707852425],[121,31,77,5.163754645824422],[121,31,78,5.256912032978505],[121,31,79,5.350172073587284],[121,32,64,4.935512530730005],[121,32,65,4.940287064356213],[121,32,66,4.974481682644572],[121,32,67,5.010502781489359],[121,32,68,5.021973493788829],[121,32,69,5.003623374997789],[121,32,70,4.957250881613624],[121,32,71,4.91403146519106],[121,32,72,4.872022709941181],[121,32,73,4.843905842214719],[121,32,74,4.834475467380676],[121,32,75,4.84920982536178],[121,32,76,4.901751478646713],[121,32,77,4.9787536045494845],[121,32,78,5.073271175699854],[121,32,79,5.167418146334361],[121,33,64,4.747773293130167],[121,33,65,4.755970731644036],[121,33,66,4.790604193604452],[121,33,67,4.8286540462715815],[121,33,68,4.842746254001556],[121,33,69,4.82372729730966],[121,33,70,4.774514283010996],[121,33,71,4.723472349136164],[121,33,72,4.675495074057048],[121,33,73,4.639792980144417],[121,33,74,4.627374074168164],[121,33,75,4.641144159706448],[121,33,76,4.695388383606018],[121,33,77,4.778202479659785],[121,33,78,4.876383357099371],[121,33,79,4.97717068023323],[121,34,64,4.552492739545874],[121,34,65,4.562050101103701],[121,34,66,4.596635537509843],[121,34,67,4.635255134494464],[121,34,68,4.651569570813304],[121,34,69,4.632607679425803],[121,34,70,4.584079494354445],[121,34,71,4.531931259381737],[121,34,72,4.482022580859548],[121,34,73,4.442101720418491],[121,34,74,4.431028079454397],[121,34,75,4.447342520677371],[121,34,76,4.500651781683472],[121,34,77,4.585093595260462],[121,34,78,4.684767852457574],[121,34,79,4.785118610765152],[121,35,64,4.358918860591576],[121,35,65,4.366190851670247],[121,35,66,4.4035752177347165],[121,35,67,4.443166912837919],[121,35,68,4.459019930604533],[121,35,69,4.4397740853442125],[121,35,70,4.392782938662216],[121,35,71,4.339014281946094],[121,35,72,4.285869679495376],[121,35,73,4.245889435367447],[121,35,74,4.233374632378346],[121,35,75,4.251315034799379],[121,35,76,4.307256635552706],[121,35,77,4.392110097921567],[121,35,78,4.49033661461947],[121,35,79,4.592252514880098],[121,36,64,4.160031910356788],[121,36,65,4.166463323962631],[121,36,66,4.203147364660946],[121,36,67,4.244542621862245],[121,36,68,4.257059351140002],[121,36,69,4.240497714248985],[121,36,70,4.195763550808997],[121,36,71,4.13913247514202],[121,36,72,4.083232660609843],[121,36,73,4.041505377896114],[121,36,74,4.03014000324024],[121,36,75,4.051246026539923],[121,36,76,4.107352328319357],[121,36,77,4.192651071681869],[121,36,78,4.292119459969],[121,36,79,4.39195419190757],[121,37,64,3.959998991525679],[121,37,65,3.9672070886070454],[121,37,66,4.001437609895638],[121,37,67,4.037866881540902],[121,37,68,4.049099638071059],[121,37,69,4.029541464620424],[121,37,70,3.9881806065284104],[121,37,71,3.9377906799561693],[121,37,72,3.884684830088404],[121,37,73,3.8468428731655866],[121,37,74,3.839531596970339],[121,37,75,3.8600913849463967],[121,37,76,3.9140082729429584],[121,37,77,3.9987840642890933],[121,37,78,4.0961448512650955],[121,37,79,4.193744099605177],[121,38,64,3.767810697935758],[121,38,65,3.7747394363487774],[121,38,66,3.8089149119449903],[121,38,67,3.846292345922225],[121,38,68,3.8569213626629426],[121,38,69,3.8374782715737266],[121,38,70,3.7939476795036793],[121,38,71,3.742367167897202],[121,38,72,3.6899145461339327],[121,38,73,3.651571627416087],[121,38,74,3.6438511418158908],[121,38,75,3.6651822250777375],[121,38,76,3.718484634494101],[121,38,77,3.800818333297798],[121,38,78,3.899624416065459],[121,38,79,3.9968905102606844],[121,39,64,3.5749707440623233],[121,39,65,3.5817569522609682],[121,39,66,3.6163856334204323],[121,39,67,3.654693024273985],[121,39,68,3.666720625299347],[121,39,69,3.6449838336572773],[121,39,70,3.6010515325521473],[121,39,71,3.5478172079916215],[121,39,72,3.4938875686998183],[121,39,73,3.457162473611868],[121,39,74,3.4492016157710985],[121,39,75,3.4689720486663473],[121,39,76,3.5215438816117657],[121,39,77,3.6039629164943032],[121,39,78,3.70252009965353],[121,39,79,3.799901029498081],[121,40,64,3.3964797508635183],[121,40,65,3.401940953249504],[121,40,66,3.4376309100755837],[121,40,67,3.474160764847496],[121,40,68,3.488800877290279],[121,40,69,3.4685951918284226],[121,40,70,3.423056563260446],[121,40,71,3.369338630985523],[121,40,72,3.3139982584398795],[121,40,73,3.278254690802384],[121,40,74,3.2687009924788457],[121,40,75,3.2864627416126555],[121,40,76,3.336255572313529],[121,40,77,3.4190810546882195],[121,40,78,3.5189491083890823],[121,40,79,3.6185249163387203],[121,41,64,3.20139268692943],[121,41,65,3.209472087191858],[121,41,66,3.2447275445710226],[121,41,67,3.2824717020605916],[121,41,68,3.297898607929213],[121,41,69,3.2775107370682215],[121,41,70,3.2317024748585985],[121,41,71,3.1794356148810543],[121,41,72,3.123584929917399],[121,41,73,3.085228845819092],[121,41,74,3.0732545321073035],[121,41,75,3.089467200588384],[121,41,76,3.1400057944263677],[121,41,77,3.2219692603485286],[121,41,78,3.32339559887822],[121,41,79,3.4233053140836858],[121,42,64,3.008396379377145],[121,42,65,3.0171083313465266],[121,42,66,3.051360875515231],[121,42,67,3.0916979656105466],[121,42,68,3.1066051359618863],[121,42,69,3.0860916352747214],[121,42,70,3.042912703428909],[121,42,71,2.9887553978708428],[121,42,72,2.93169736874081],[121,42,73,2.8930866056294033],[121,42,74,2.8805183796222904],[121,42,75,2.895722910661238],[121,42,76,2.942936677528799],[121,42,77,3.025028257619393],[121,42,78,3.1249866897587615],[121,42,79,3.2263559175909147],[121,43,64,2.813041743826606],[121,43,65,2.825995359133853],[121,43,66,2.861302164911522],[121,43,67,2.902273630337908],[121,43,68,2.9167482022698508],[121,43,69,2.8964839712417434],[121,43,70,2.8513264474467532],[121,43,71,2.7939962911034546],[121,43,72,2.7364983486929826],[121,43,73,2.6997921041399655],[121,43,74,2.686214378187824],[121,43,75,2.7049793334078114],[121,43,76,2.747674725877799],[121,43,77,2.8288558254390415],[121,43,78,2.9269236171871027],[121,43,79,3.028909456041103],[121,44,64,2.6123865682976217],[121,44,65,2.6236730455821604],[121,44,66,2.661822252089824],[121,44,67,2.701502328048783],[121,44,68,2.7198492338689073],[121,44,69,2.6980051185478393],[121,44,70,2.6508068325084144],[121,44,71,2.5937831006997207],[121,44,72,2.5322380499272255],[121,44,73,2.4950822870294593],[121,44,74,2.482284008998969],[121,44,75,2.499984836847224],[121,44,76,2.5442585991904454],[121,44,77,2.6251523654868767],[121,44,78,2.7218944150389146],[121,44,79,2.824998599797539],[121,45,64,2.413405975429456],[121,45,65,2.4304045677320416],[121,45,66,2.4738995122113856],[121,45,67,2.520543385309868],[121,45,68,2.5449016766711776],[121,45,69,2.530181698180769],[121,45,70,2.4816083466218517],[121,45,71,2.4222666652274394],[121,45,72,2.3511585954087657],[121,45,73,2.3049235647651445],[121,45,74,2.292685885710415],[121,45,75,2.3093893173074727],[121,45,76,2.356608195332705],[121,45,77,2.4332196868430573],[121,45,78,2.5304367207818017],[121,45,79,2.6303370797350727],[121,46,64,2.220581708113936],[121,46,65,2.23667300783788],[121,46,66,2.279718516336437],[121,46,67,2.3271014513514725],[121,46,68,2.350744487137288],[121,46,69,2.340144226611293],[121,46,70,2.2901190176517234],[121,46,71,2.2297002866408717],[121,46,72,2.1574246256233485],[121,46,73,2.109446307805606],[121,46,74,2.0972613488666743],[121,46,75,2.1154581563118895],[121,46,76,2.16195306286092],[121,46,77,2.2380169705489736],[121,46,78,2.335473039588444],[121,46,79,2.4336160979129318],[121,47,64,2.0268810771070447],[121,47,65,2.0434588720020064],[121,47,66,2.084743751258811],[121,47,67,2.1321569301890264],[121,47,68,2.157028377994232],[121,47,69,2.1463494791110675],[121,47,70,2.098844794537601],[121,47,71,2.0375828876279556],[121,47,72,1.9664594312686878],[121,47,73,1.9156556360071235],[121,47,74,1.9009116418444396],[121,47,75,1.918774829757022],[121,47,76,1.967617778986643],[121,47,77,2.045800137661124],[121,47,78,2.140051257164608],[121,47,79,2.2394146208514125],[121,48,64,1.8463739735956666],[121,48,65,1.862359121470557],[121,48,66,1.9034284784890063],[121,48,67,1.953244697838632],[121,48,68,1.9793989601255777],[121,48,69,1.965965882962703],[121,48,70,1.9188183376066277],[121,48,71,1.858294624139178],[121,48,72,1.7897452476379612],[121,48,73,1.7358380348518814],[121,48,74,1.7217258019245119],[121,48,75,1.7360148152506947],[121,48,76,1.7848446914280816],[121,48,77,1.8630837517612877],[121,48,78,1.9583136246848665],[121,48,79,2.0599162896459786],[121,49,64,1.6434736386383202],[121,49,65,1.657287710670077],[121,49,66,1.6994375811873172],[121,49,67,1.750251041258994],[121,49,68,1.7756547934852724],[121,49,69,1.7639428507581165],[121,49,70,1.7200018887664088],[121,49,71,1.6631360114275415],[121,49,72,1.5999942350927765],[121,49,73,1.5515606321295419],[121,49,74,1.538202971273706],[121,49,75,1.551642974383247],[121,49,76,1.6004590454652519],[121,49,77,1.6786124553440316],[121,49,78,1.7741851568324256],[121,49,79,1.8777581789654398],[121,50,64,1.4513229509246621],[121,50,65,1.464070855673432],[121,50,66,1.5064628507967028],[121,50,67,1.5568671376080647],[121,50,68,1.5836773416014613],[121,50,69,1.5689706602013107],[121,50,70,1.5258159818275168],[121,50,71,1.4668170090845465],[121,50,72,1.4051827505477907],[121,50,73,1.3597856068670684],[121,50,74,1.3439138068566894],[121,50,75,1.359836229611608],[121,50,76,1.4088561858340778],[121,50,77,1.4830533295547894],[121,50,78,1.5790890123142838],[121,50,79,1.6849843254193413],[121,51,64,1.258088814603831],[121,51,65,1.2697976163177591],[121,51,66,1.3111171234701144],[121,51,67,1.3623282457425547],[121,51,68,1.3888936169177672],[121,51,69,1.374388994948551],[121,51,70,1.3299655770469205],[121,51,71,1.2710489814763257],[121,51,72,1.2079927226234433],[121,51,73,1.1651224539925973],[121,51,74,1.148369527520693],[121,51,75,1.1662938920038095],[121,51,76,1.216848623665453],[121,51,77,1.2927857581659],[121,51,78,1.3844483958588927],[121,51,79,1.490916537046659],[121,52,64,1.1061106258917548],[121,52,65,1.117866192649576],[121,52,66,1.1579213286840782],[121,52,67,1.2076000151638502],[121,52,68,1.2319486190748714],[121,52,69,1.2181108123381361],[121,52,70,1.1733343519602903],[121,52,71,1.1164092503856526],[121,52,72,1.0544092274255954],[121,52,73,1.010106582227351],[121,52,74,0.9937790270345501],[121,52,75,1.0105955639280624],[121,52,76,1.061976257806591],[121,52,77,1.137846725434512],[121,52,78,1.2307001194593596],[121,52,79,1.3385099628248274],[121,53,64,0.9216822366425491],[121,53,65,0.9291866124686531],[121,53,66,0.9663285571477125],[121,53,67,1.0115748075508944],[121,53,68,1.0339479076559333],[121,53,69,1.0170840510986818],[121,53,70,0.9713204389904135],[121,53,71,0.912811702338754],[121,53,72,0.8496428105514586],[121,53,73,0.8061219389072787],[121,53,74,0.7890089709303311],[121,53,75,0.8064276494247258],[121,53,76,0.8595907888897898],[121,53,77,0.937616411142236],[121,53,78,1.0313719817003277],[121,53,79,1.141326641665345],[121,54,64,0.7294211551145346],[121,54,65,0.7388004023538592],[121,54,66,0.7728949716083193],[121,54,67,0.8166327247745692],[121,54,68,0.838818475149752],[121,54,69,0.8231649429606565],[121,54,70,0.7760746111792882],[121,54,71,0.7156394184931927],[121,54,72,0.6530390206484649],[121,54,73,0.6093667412988629],[121,54,74,0.593710356010746],[121,54,75,0.6103632387946315],[121,54,76,0.6636166212512955],[121,54,77,0.739291626969941],[121,54,78,0.8362037567056607],[121,54,79,0.9462300830005669],[121,55,64,0.5362220398797894],[121,55,65,0.5440689111258521],[121,55,66,0.5773372056360715],[121,55,67,0.6218922142991138],[121,55,68,0.6452778694774275],[121,55,69,0.6298051495631654],[121,55,70,0.5787663387078561],[121,55,71,0.5188005418759469],[121,55,72,0.45345398307247453],[121,55,73,0.4084919712949818],[121,55,74,0.3927104370729862],[121,55,75,0.41385042350261547],[121,55,76,0.4665861157674145],[121,55,77,0.5438100279632275],[121,55,78,0.6390769302508268],[121,55,79,0.7474560146025944],[121,56,64,0.3590526251605452],[121,56,65,0.3634923712612539],[121,56,66,0.3991221070712846],[121,56,67,0.4442909550407058],[121,56,68,0.4654582886757196],[121,56,69,0.44850099079377037],[121,56,70,0.3949565337580686],[121,56,71,0.3367033786185794],[121,56,72,0.2698185792426985],[121,56,73,0.22310305135546643],[121,56,74,0.20812090537318184],[121,56,75,0.22994789304465837],[121,56,76,0.2809488488202124],[121,56,77,0.3601418685174929],[121,56,78,0.4588894147100907],[121,56,79,0.56503011733749],[121,57,64,0.1589979444755205],[121,57,65,0.1628253424422828],[121,57,66,0.19905924548641415],[121,57,67,0.24460453225859655],[121,57,68,0.264571436118118],[121,57,69,0.24568778151326282],[121,57,70,0.19241525274813695],[121,57,71,0.13347519282027986],[121,57,72,0.06267332385771421],[121,57,73,0.014321177507753802],[121,57,74,0.0023750427676275387],[121,57,75,0.020906046026938768],[121,57,76,0.07292222365543638],[121,57,77,0.15659456407986797],[121,57,78,0.2523545742232972],[121,57,79,0.35870019450720614],[121,58,64,0.048636675162902446],[121,58,65,0.04572699225055066],[121,58,66,0.04904512327946564],[121,58,67,0.08924654707090342],[121,58,68,0.11055662885171279],[121,58,69,0.08901594703006506],[121,58,70,0.037577564729298615],[121,58,71,0.021613909495026187],[121,58,72,0.005157866471738576],[121,58,73,-0.008825173366138389],[121,58,74,-0.007233609089750362],[121,58,75,-1.9868916045966134E-4],[121,58,76,0.013850984397344598],[121,58,77,0.040010384992860526],[121,58,78,0.09361539389902762],[121,58,79,0.19698386373935803],[121,59,64,-2.222020596941432E-4],[121,59,65,-0.0037977149861186804],[121,59,66,-0.001652022753072871],[121,59,67,0.004026955349031913],[121,59,68,0.008900479965546895],[121,59,69,-3.3768257568726756E-4],[121,59,70,-0.014168233752965678],[121,59,71,-0.03152954084962539],[121,59,72,-0.04541917969609957],[121,59,73,-0.05747606416207027],[121,59,74,-0.05633833648298406],[121,59,75,-0.04795177205128805],[121,59,76,-0.03194390125806727],[121,59,77,-0.008809777788973835],[121,59,78,0.016576554182015105],[121,59,79,0.040286826527476616],[121,60,64,-0.05614975041997161],[121,60,65,-0.06197861457468272],[121,60,66,-0.06057638592085063],[121,60,67,-0.054623957031629325],[121,60,68,-0.05291165540412218],[121,60,69,-0.06125953618896855],[121,60,70,-0.07450528586329334],[121,60,71,-0.08931039770853465],[121,60,72,-0.10345017704087306],[121,60,73,-0.1118314700748618],[121,60,74,-0.1122625599031783],[121,60,75,-0.10325330203902942],[121,60,76,-0.08551786412650546],[121,60,77,-0.06352817005171038],[121,60,78,-0.03803966581751231],[121,60,79,-0.014155416780756408],[121,61,64,-0.0880956792532717],[121,61,65,-0.09778002605618903],[121,61,66,-0.09791868014895244],[121,61,67,-0.0944921076823827],[121,61,68,-0.09431938049086565],[121,61,69,-0.10365086061369971],[121,61,70,-0.11905551274201188],[121,61,71,-0.13336329571565936],[121,61,72,-0.1528022796799563],[121,61,73,-0.15938587813606736],[121,61,74,-0.15882727431751573],[121,61,75,-0.1499925497364097],[121,61,76,-0.13093128200509452],[121,61,77,-0.10645693674698493],[121,61,78,-0.08070654619587407],[121,61,79,-0.054658707052009425],[121,62,64,-0.13782496445875947],[121,62,65,-0.1455318062501272],[121,62,66,-0.1455814779453788],[121,62,67,-0.14395766667721],[121,62,68,-0.1397662817947396],[121,62,69,-0.1498977234670253],[121,62,70,-0.16551934595019396],[121,62,71,-0.1808102470408739],[121,62,72,-0.20204128479489658],[121,62,73,-0.20984290603906408],[121,62,74,-0.2104642645974668],[121,62,75,-0.19855175867509411],[121,62,76,-0.1797247128114876],[121,62,77,-0.15690418861490218],[121,62,78,-0.12963835300895402],[121,62,79,-0.10330329428990656],[121,63,64,-0.25814316838381146],[121,63,65,-0.26185102947020555],[121,63,66,-0.2636797749442029],[121,63,67,-0.263954183835594],[121,63,68,-0.25948525576893133],[121,63,69,-0.2639151586623227],[121,63,70,-0.2797174440742355],[121,63,71,-0.29482724730708787],[121,63,72,-0.3146994614560714],[121,63,73,-0.3263188450530352],[121,63,74,-0.32480014573686145],[121,63,75,-0.3125891377645],[121,63,76,-0.2911158177391635],[121,63,77,-0.27035508089089405],[121,63,78,-0.2410339858868281],[121,63,79,-0.21184704900687493],[121,64,64,-0.2938406746664072],[121,64,65,-0.29899405537853657],[121,64,66,-0.3028519421969642],[121,64,67,-0.29958455407022533],[121,64,68,-0.296893669599542],[121,64,69,-0.3017181066379221],[121,64,70,-0.31904031786409154],[121,64,71,-0.3333536998736315],[121,64,72,-0.3543445661287934],[121,64,73,-0.368344179591225],[121,64,74,-0.36768412571691844],[121,64,75,-0.3549822539741238],[121,64,76,-0.33369626418002796],[121,64,77,-0.30899643370739077],[121,64,78,-0.28256318643351513],[121,64,79,-0.2501129736001195],[121,65,64,-0.3413027144411204],[121,65,65,-0.3465038168008748],[121,65,66,-0.35008794922564557],[121,65,67,-0.34757512636147725],[121,65,68,-0.3443358904321339],[121,65,69,-0.3514598310173379],[121,65,70,-0.36985150429140223],[121,65,71,-0.3843274169109968],[121,65,72,-0.4047669865959244],[121,65,73,-0.4188983594574085],[121,65,74,-0.4200575709543582],[121,65,75,-0.40777371504663795],[121,65,76,-0.38612155601031567],[121,65,77,-0.36213891018432376],[121,65,78,-0.33295604089203745],[121,65,79,-0.2991191158669368],[121,66,64,-0.39893684988875144],[121,66,65,-0.3999339083677456],[121,66,66,-0.4052107868697802],[121,66,67,-0.4027123794877088],[121,66,68,-0.3989296421094045],[121,66,69,-0.408449603513056],[121,66,70,-0.4236056248994257],[121,66,71,-0.44051874047063566],[121,66,72,-0.4609022220962285],[121,66,73,-0.47749578554041194],[121,66,74,-0.47805112249867954],[121,66,75,-0.4637294349827676],[121,66,76,-0.44454068925068513],[121,66,77,-0.42031969535303004],[121,66,78,-0.38842320593751184],[121,66,79,-0.3565331769387402],[121,67,64,-0.4471054173175545],[121,67,65,-0.45234790474657716],[121,67,66,-0.4568622937486703],[121,67,67,-0.45259972188297015],[121,67,68,-0.44980016149148766],[121,67,69,-0.4577357106890405],[121,67,70,-0.4693305100982409],[121,67,71,-0.48774406876644283],[121,67,72,-0.5099734881631891],[121,67,73,-0.527113344598277],[121,67,74,-0.528461809281187],[121,67,75,-0.5167153011603459],[121,67,76,-0.49754832099767965],[121,67,77,-0.47355409567675394],[121,67,78,-0.44249594398401],[121,67,79,-0.4086538723221195],[121,68,64,-0.58900420559155],[121,68,65,-0.596667727543351],[121,68,66,-0.6004382206289013],[121,68,67,-0.596929236700799],[121,68,68,-0.5936476697965687],[121,68,69,-0.5988731497579374],[121,68,70,-0.6107499523806154],[121,68,71,-0.6283356042215784],[121,68,72,-0.6499964649553305],[121,68,73,-0.6691769909001481],[121,68,74,-0.6721943539597066],[121,68,75,-0.6600862138346404],[121,68,76,-0.641480705451848],[121,68,77,-0.6144330951639183],[121,68,78,-0.585879312957215],[121,68,79,-0.5529846441535226],[121,69,64,-0.6479106472778093],[121,69,65,-0.6532186985988154],[121,69,66,-0.6507538674453512],[121,69,67,-0.641277600729489],[121,69,68,-0.6302215104192201],[121,69,69,-0.6296747536577643],[121,69,70,-0.6424353933626956],[121,69,71,-0.6640310859018291],[121,69,72,-0.6893860652050835],[121,69,73,-0.7105998516879583],[121,69,74,-0.7146526462993095],[121,69,75,-0.7034092482922724],[121,69,76,-0.6845130144846447],[121,69,77,-0.6545717051925644],[121,69,78,-0.6265501207775108],[121,69,79,-0.5933610998158667],[121,70,64,-0.6988819200385575],[121,70,65,-0.7018673222284589],[121,70,66,-0.6991660912889435],[121,70,67,-0.6892170784321988],[121,70,68,-0.6783138642252092],[121,70,69,-0.6800048789763191],[121,70,70,-0.694142270627373],[121,70,71,-0.7156988120038156],[121,70,72,-0.7391268721190221],[121,70,73,-0.7590880883180169],[121,70,74,-0.7622671782180843],[121,70,75,-0.7507215914791054],[121,70,76,-0.7337704846036849],[121,70,77,-0.7047811113229475],[121,70,78,-0.6770921368864642],[121,70,79,-0.6414669787485421],[121,71,64,-0.7357438122856227],[121,71,65,-0.741852739835081],[121,71,66,-0.7386312033433824],[121,71,67,-0.7280265165829468],[121,71,68,-0.7196168077159297],[121,71,69,-0.7214152118248363],[121,71,70,-0.7356536669541902],[121,71,71,-0.7561455717824342],[121,71,72,-0.7790228750130328],[121,71,73,-0.7990349403719792],[121,71,74,-0.8022250598247745],[121,71,75,-0.7921861443589818],[121,71,76,-0.774534469362625],[121,71,77,-0.7481347631471016],[121,71,78,-0.7199597994214221],[121,71,79,-0.6860109939943453],[121,72,64,-0.7890122157969629],[121,72,65,-0.792563422265321],[121,72,66,-0.7879734620706795],[121,72,67,-0.7753488545999522],[121,72,68,-0.7690090669258931],[121,72,69,-0.7731433373606701],[121,72,70,-0.7894841374153234],[121,72,71,-0.8058210499046675],[121,72,72,-0.830488128862777],[121,72,73,-0.8483518250823702],[121,72,74,-0.8528707743731327],[121,72,75,-0.8445215578907092],[121,72,76,-0.8245316879078198],[121,72,77,-0.8001425209225114],[121,72,78,-0.7727511362046462],[121,72,79,-0.7403205582746308],[121,73,64,-0.8543592818172923],[121,73,65,-0.8572474067482722],[121,73,66,-0.8495385224084918],[121,73,67,-0.8371659223607755],[121,73,68,-0.8299471603164483],[121,73,69,-0.8337926652618443],[121,73,70,-0.8456032067434143],[121,73,71,-0.8588902728043338],[121,73,72,-0.8790796998528083],[121,73,73,-0.8891358010272593],[121,73,74,-0.8921181588339928],[121,73,75,-0.8834197425611503],[121,73,76,-0.8682548237207239],[121,73,77,-0.848898124795427],[121,73,78,-0.8299172706036347],[121,73,79,-0.8024168828914731],[121,74,64,-0.9149613770708892],[121,74,65,-0.9179155449162829],[121,74,66,-0.9095447875924669],[121,74,67,-0.8963079903638584],[121,74,68,-0.8895066508460766],[121,74,69,-0.8910616676626919],[121,74,70,-0.9004984046270118],[121,74,71,-0.9164907547927527],[121,74,72,-0.9346534453334518],[121,74,73,-0.9460649142813654],[121,74,74,-0.9498499310486397],[121,74,75,-0.9386617645947649],[121,74,76,-0.9256904128448223],[121,74,77,-0.9084716294075951],[121,74,78,-0.8879505147304392],[121,74,79,-0.8609682055388352],[121,75,64,-0.9667697032276013],[121,75,65,-0.9709618997288696],[121,75,66,-0.9629042198068174],[121,75,67,-0.9472178470013193],[121,75,68,-0.9407777294547898],[121,75,69,-0.9429007172463705],[121,75,70,-0.9512094401337816],[121,75,71,-0.9696272461335916],[121,75,72,-0.987114810004827],[121,75,73,-0.9957075772346213],[121,75,74,-1.0016022337327735],[121,75,75,-0.9901164654835882],[121,75,76,-0.9759273191109845],[121,75,77,-0.9609867958670215],[121,75,78,-0.9408090120589124],[121,75,79,-0.9174182199240335],[121,76,64,-1.0133718370240572],[121,76,65,-1.0184771088015288],[121,76,66,-1.0099074926495564],[121,76,67,-0.9951570503953947],[121,76,68,-0.9891219800122102],[121,76,69,-0.9920595098677056],[121,76,70,-1.0031696025732737],[121,76,71,-1.0202780351857552],[121,76,72,-1.0367796509273146],[121,76,73,-1.044772702295969],[121,76,74,-1.0495878664941434],[121,76,75,-1.0425010903223448],[121,76,76,-1.0271428407266756],[121,76,77,-1.0107347107738633],[121,76,78,-0.9914833403972827],[121,76,79,-0.9683076568283497],[121,77,64,-1.062492999024556],[121,77,65,-1.0680678644147301],[121,77,66,-1.0613867822094545],[121,77,67,-1.0496934756995577],[121,77,68,-1.0450504075214124],[121,77,69,-1.049114691687454],[121,77,70,-1.060515806744482],[121,77,71,-1.077587850094305],[121,77,72,-1.097058457116285],[121,77,73,-1.106541800272365],[121,77,74,-1.1074183853349893],[121,77,75,-1.1020081271060842],[121,77,76,-1.0868156689661328],[121,77,77,-1.0689683421531657],[121,77,78,-1.0478639742297755],[121,77,79,-1.0247310230343318],[121,78,64,-1.1167818505978109],[121,78,65,-1.121939225470761],[121,78,66,-1.1133543270863633],[121,78,67,-1.100643093078687],[121,78,68,-1.095601800687718],[121,78,69,-1.0994060886539423],[121,78,70,-1.1116298787216716],[121,78,71,-1.1291180519438486],[121,78,72,-1.1491757802150682],[121,78,73,-1.1584560968425626],[121,78,74,-1.1593739434177075],[121,78,75,-1.1559809987670906],[121,78,76,-1.1409285454855105],[121,78,77,-1.1196045033958837],[121,78,78,-1.0998099782070725],[121,78,79,-1.0768518172625734],[121,79,64,-1.1558300237304444],[121,79,65,-1.1623369752932389],[121,79,66,-1.1527924508180156],[121,79,67,-1.1415622817480329],[121,79,68,-1.1351821048691118],[121,79,69,-1.140945611950683],[121,79,70,-1.1503443662643833],[121,79,71,-1.1701384141667948],[121,79,72,-1.190963543627984],[121,79,73,-1.203282904473066],[121,79,74,-1.2065524358385518],[121,79,75,-1.202198473979725],[121,79,76,-1.1860195388858477],[121,79,77,-1.1654150445976246],[121,79,78,-1.1441964854865923],[121,79,79,-1.1233055332410276],[121,80,64,-1.204591834416883],[121,80,65,-1.2105631911710844],[121,80,66,-1.203055320835998],[121,80,67,-1.1901071700017858],[121,80,68,-1.1848537802812589],[121,80,69,-1.1896639120579362],[121,80,70,-1.199329684019209],[121,80,71,-1.218587622894634],[121,80,72,-1.241007684485327],[121,80,73,-1.2559633856888264],[121,80,74,-1.2615316210297636],[121,80,75,-1.2569534501027653],[121,80,76,-1.240172429435378],[121,80,77,-1.2189428415589787],[121,80,78,-1.1977522077880054],[121,80,79,-1.1749192953967365],[121,81,64,-1.2425604448913203],[121,81,65,-1.249126022097939],[121,81,66,-1.243121727061113],[121,81,67,-1.2278681067433403],[121,81,68,-1.2229409588371076],[121,81,69,-1.2274711998310928],[121,81,70,-1.2416161566954758],[121,81,71,-1.2642521629734726],[121,81,72,-1.2889561211124192],[121,81,73,-1.3090091665437162],[121,81,74,-1.3164219076035173],[121,81,75,-1.3128370575428268],[121,81,76,-1.2962210289464693],[121,81,77,-1.277308808511549],[121,81,78,-1.2572416744759125],[121,81,79,-1.2336630647885753],[121,82,64,-1.2994824522276394],[121,82,65,-1.305281421632985],[121,82,66,-1.297717548825017],[121,82,67,-1.2811325831843219],[121,82,68,-1.2758398569942129],[121,82,69,-1.282569435652309],[121,82,70,-1.2986978052628007],[121,82,71,-1.3213358033800895],[121,82,72,-1.347008459416534],[121,82,73,-1.3680115520522582],[121,82,74,-1.3753206077791753],[121,82,75,-1.3714122918827918],[121,82,76,-1.354646578599993],[121,82,77,-1.3355602213298905],[121,82,78,-1.3165682232443556],[121,82,79,-1.2940030678885757],[121,83,64,-1.3486436050459676],[121,83,65,-1.3560720376032096],[121,83,66,-1.3448389015271132],[121,83,67,-1.3283338543789096],[121,83,68,-1.3229859330580167],[121,83,69,-1.3313525315632724],[121,83,70,-1.3482596319827833],[121,83,71,-1.3709433241290532],[121,83,72,-1.3980814885594592],[121,83,73,-1.4188424290873574],[121,83,74,-1.4284119560598023],[121,83,75,-1.425456199607364],[121,83,76,-1.4078981628874419],[121,83,77,-1.3881357925451177],[121,83,78,-1.3682611584356605],[121,83,79,-1.3460721681865933],[121,84,64,-1.396391284567509],[121,84,65,-1.4035290656069128],[121,84,66,-1.391693583221965],[121,84,67,-1.3757506663435661],[121,84,68,-1.36807492700818],[121,84,69,-1.3768239448819672],[121,84,70,-1.3985805669122848],[121,84,71,-1.4229363908346815],[121,84,72,-1.4509485645704676],[121,84,73,-1.4691442643464854],[121,84,74,-1.4785291835128826],[121,84,75,-1.4771879807687336],[121,84,76,-1.4621073780280112],[121,84,77,-1.4407396467971716],[121,84,78,-1.418166256348143],[121,84,79,-1.3969785960525691],[121,85,64,-1.4644495126093349],[121,85,65,-1.470570539110848],[121,85,66,-1.4606969638876994],[121,85,67,-1.4433951231652709],[121,85,68,-1.4368803447848535],[121,85,69,-1.4452486197913263],[121,85,70,-1.4663844637445194],[121,85,71,-1.4909768755818398],[121,85,72,-1.5149677500638061],[121,85,73,-1.529652031010496],[121,85,74,-1.539399157374846],[121,85,75,-1.5393465761596576],[121,85,76,-1.5231447672203937],[121,85,77,-1.498955351647896],[121,85,78,-1.4701706723395473],[121,85,79,-1.4463935541421955],[121,86,64,-1.5161623142122724],[121,86,65,-1.5231436962775258],[121,86,66,-1.513000999243861],[121,86,67,-1.4948612414871698],[121,86,68,-1.487536019837918],[121,86,69,-1.494685842959619],[121,86,70,-1.5165419409736989],[121,86,71,-1.5396145261190726],[121,86,72,-1.565850104991202],[121,86,73,-1.582030887462583],[121,86,74,-1.5927400085341905],[121,86,75,-1.5918002794829704],[121,86,76,-1.5756047518636014],[121,86,77,-1.548577294836503],[121,86,78,-1.5223513192543185],[121,86,79,-1.4963652707870303],[121,87,64,-1.5581289088101324],[121,87,65,-1.5645421476597468],[121,87,66,-1.553371758398156],[121,87,67,-1.5384691499872176],[121,87,68,-1.5311899337902628],[121,87,69,-1.5359171259080135],[121,87,70,-1.5586574351086842],[121,87,71,-1.582666858040728],[121,87,72,-1.6085512390682075],[121,87,73,-1.6271687505445942],[121,87,74,-1.6380117358555601],[121,87,75,-1.6331247107377216],[121,87,76,-1.6187851826436743],[121,87,77,-1.5931273469734675],[121,87,78,-1.565205284599558],[121,87,79,-1.539761220548061],[121,88,64,-1.6045017507056587],[121,88,65,-1.6120967645260016],[121,88,66,-1.6019695470695017],[121,88,67,-1.5907310993471586],[121,88,68,-1.5810404662011623],[121,88,69,-1.5850901216682496],[121,88,70,-1.6068887472958602],[121,88,71,-1.631988122085995],[121,88,72,-1.6573051508592909],[121,88,73,-1.678268749875349],[121,88,74,-1.6887004859086416],[121,88,75,-1.6869052410305057],[121,88,76,-1.67244015742616],[121,88,77,-1.6463399062644986],[121,88,78,-1.6144527959444221],[121,88,79,-1.5890545660559483],[121,89,64,-1.650175488662001],[121,89,65,-1.6566898848315763],[121,89,66,-1.6498636625747862],[121,89,67,-1.6396152628385434],[121,89,68,-1.6311208684649305],[121,89,69,-1.6331487276428387],[121,89,70,-1.6533946738067546],[121,89,71,-1.6774059688719989],[121,89,72,-1.7066074786200174],[121,89,73,-1.7302747765776891],[121,89,74,-1.7406607879514295],[121,89,75,-1.739832226065065],[121,89,76,-1.7256768218113074],[121,89,77,-1.6978740241644434],[121,89,78,-1.6646771082816914],[121,89,79,-1.6396982411216516],[121,90,64,-1.7020123872425013],[121,90,65,-1.7059514275720211],[121,90,66,-1.7037581471524694],[121,90,67,-1.6928818442547786],[121,90,68,-1.6857831033294612],[121,90,69,-1.687509433891672],[121,90,70,-1.7054512205699297],[121,90,71,-1.7317414065395746],[121,90,72,-1.7617205401032325],[121,90,73,-1.784564371390133],[121,90,74,-1.7978804378246334],[121,90,75,-1.7966268737115683],[121,90,76,-1.7812895908453614],[121,90,77,-1.7553606261707884],[121,90,78,-1.7230086749859628],[121,90,79,-1.6951575049258067],[121,91,64,-1.7491504250573753],[121,91,65,-1.7530693588222332],[121,91,66,-1.751393193045487],[121,91,67,-1.7393195355317894],[121,91,68,-1.7328551973198663],[121,91,69,-1.7359584527273213],[121,91,70,-1.753274664461774],[121,91,71,-1.7785694236302718],[121,91,72,-1.8107356230793354],[121,91,73,-1.8328988760802238],[121,91,74,-1.8474320149183416],[121,91,75,-1.8462306660703738],[121,91,76,-1.8304014996594629],[121,91,77,-1.8045022326815214],[121,91,78,-1.7761098791723298],[121,91,79,-1.7459124232883532],[121,92,64,-1.7701335148581665],[121,92,65,-1.7776233579780438],[121,92,66,-1.7757581568376823],[121,92,67,-1.7638111904266658],[121,92,68,-1.759627757104557],[121,92,69,-1.765966457650139],[121,92,70,-1.7836971974421654],[121,92,71,-1.807399063829871],[121,92,72,-1.84139424036736],[121,92,73,-1.8649924598539052],[121,92,74,-1.8775233511615421],[121,92,75,-1.8773346147235839],[121,92,76,-1.8637730958304697],[121,92,77,-1.8352675197641701],[121,92,78,-1.810547518660513],[121,92,79,-1.779221597120147],[121,93,64,-1.8079144274853096],[121,93,65,-1.8162017329688374],[121,93,66,-1.8169347571552907],[121,93,67,-1.8089955687822248],[121,93,68,-1.8066421748675756],[121,93,69,-1.8137605585949443],[121,93,70,-1.8341813017002095],[121,93,71,-1.8577801155993017],[121,93,72,-1.8944838448320196],[121,93,73,-1.9198015726024895],[121,93,74,-1.9322960894455656],[121,93,75,-1.9338751001648755],[121,93,76,-1.9185613486265505],[121,93,77,-1.8878560898693153],[121,93,78,-1.8580341128550295],[121,93,79,-1.8227288135402977],[121,94,64,-1.8537581064757747],[121,94,65,-1.8628231536849782],[121,94,66,-1.8641064115264518],[121,94,67,-1.8601099294982646],[121,94,68,-1.85620066992955],[121,94,69,-1.862856108734137],[121,94,70,-1.8811741266120392],[121,94,71,-1.9076662587736324],[121,94,72,-1.9401312958509895],[121,94,73,-1.966053896620031],[121,94,74,-1.9793111004857535],[121,94,75,-1.9839332995347745],[121,94,76,-1.9677580464250832],[121,94,77,-1.9385996038242517],[121,94,78,-1.9066611621602307],[121,94,79,-1.8699825264982686],[121,95,64,-1.894266652744374],[121,95,65,-1.9019412251230292],[121,95,66,-1.9029693279015023],[121,95,67,-1.8997316566292621],[121,95,68,-1.8957253928647237],[121,95,69,-1.9029822747949976],[121,95,70,-1.921678136640649],[121,95,71,-1.9486229445060226],[121,95,72,-1.9787999166229358],[121,95,73,-2.005441757144369],[121,95,74,-2.0205135964348666],[121,95,75,-2.0247001496547212],[121,95,76,-2.0096814100086986],[121,95,77,-1.9824014619411088],[121,95,78,-1.9496887577309128],[121,95,79,-1.9119738083356124],[121,96,64,-1.9426900859741665],[121,96,65,-1.9502506234980514],[121,96,66,-1.951300164597009],[121,96,67,-1.9471420088375542],[121,96,68,-1.9428246790533283],[121,96,69,-1.9515398388415173],[121,96,70,-1.970219250251841],[121,96,71,-1.9972646026573533],[121,96,72,-2.0254283526207852],[121,96,73,-2.0505659997659227],[121,96,74,-2.0664185016589003],[121,96,75,-2.0687876708178723],[121,96,76,-2.0568551462615057],[121,96,77,-2.033375433704724],[121,96,78,-1.9988158226092747],[121,96,79,-1.9591527998934335],[121,97,64,-1.9989254735458613],[121,97,65,-2.0042610478351874],[121,97,66,-2.0030126627857836],[121,97,67,-1.9954800726573083],[121,97,68,-1.9926871140790274],[121,97,69,-2.001445921367791],[121,97,70,-2.0175165714270076],[121,97,71,-2.041950117874358],[121,97,72,-2.0669470308632762],[121,97,73,-2.0894183374618764],[121,97,74,-2.1040009024902195],[121,97,75,-2.1039820694716393],[121,97,76,-2.0962015105657037],[121,97,77,-2.078382673336685],[121,97,78,-2.0509337516478228],[121,97,79,-2.016378882197502],[121,98,64,-2.0539709016926766],[121,98,65,-2.060660218863836],[121,98,66,-2.057880728482831],[121,98,67,-2.0470059034059953],[121,98,68,-2.0468607999013897],[121,98,69,-2.05482486611105],[121,98,70,-2.068673324791933],[121,98,71,-2.095443447116306],[121,98,72,-2.122781190636768],[121,98,73,-2.145046517101253],[121,98,74,-2.1550862787376444],[121,98,75,-2.1563123322555953],[121,98,76,-2.1477350214368514],[121,98,77,-2.131417096818395],[121,98,78,-2.1046019100826108],[121,98,79,-2.0728670526341713],[121,99,64,-2.104893500093618],[121,99,65,-2.1114392470310728],[121,99,66,-2.105597704750594],[121,99,67,-2.093810862727819],[121,99,68,-2.093967631954874],[121,99,69,-2.0981854668390407],[121,99,70,-2.1134655347000857],[121,99,71,-2.142498324849274],[121,99,72,-2.1722901661179073],[121,99,73,-2.194684855256338],[121,99,74,-2.203497910100891],[121,99,75,-2.204299563841317],[121,99,76,-2.193627076176578],[121,99,77,-2.1795675887820614],[121,99,78,-2.1556775465661833],[121,99,79,-2.123849945842811],[121,100,64,-2.13764104484677],[121,100,65,-2.136368841099366],[121,100,66,-2.1242510500808227],[121,100,67,-2.1070448385151144],[121,100,68,-2.0981237232905223],[121,100,69,-2.09729352613072],[121,100,70,-2.1105055158815382],[121,100,71,-2.135940456665861],[121,100,72,-2.1645918239254094],[121,100,73,-2.1860573525430618],[121,100,74,-2.1974564615195464],[121,100,75,-2.194404953498894],[121,100,76,-2.1855121534633977],[121,100,77,-2.173388103526909],[121,100,78,-2.148915974854479],[121,100,79,-2.1188879237542064],[121,101,64,-2.187881336571944],[121,101,65,-2.1867185934522264],[121,101,66,-2.1717901746929056],[121,101,67,-2.155812980521146],[121,101,68,-2.144293078776626],[121,101,69,-2.145624174858609],[121,101,70,-2.1585752438398225],[121,101,71,-2.179183184299953],[121,101,72,-2.209795000636391],[121,101,73,-2.231261853319943],[121,101,74,-2.2425066926771207],[121,101,75,-2.2401258398248816],[121,101,76,-2.2321521164347202],[121,101,77,-2.218331484382407],[121,101,78,-2.199347357391948],[121,101,79,-2.171525302547726],[121,102,64,-2.2360240941458547],[121,102,65,-2.2374731299648074],[121,102,66,-2.221638004680937],[121,102,67,-2.2030190241210303],[121,102,68,-2.191618227016485],[121,102,69,-2.1904448875686993],[121,102,70,-2.203728832257664],[121,102,71,-2.2237026958703394],[121,102,72,-2.254798989814777],[121,102,73,-2.2776684950654578],[121,102,74,-2.289081348680406],[121,102,75,-2.2886302764788202],[121,102,76,-2.279259967536579],[121,102,77,-2.2674571999125717],[121,102,78,-2.2486253613505816],[121,102,79,-2.222968259568988],[121,103,64,-2.2795885821342035],[121,103,65,-2.2775884276896305],[121,103,66,-2.2616858199584295],[121,103,67,-2.2417191538029124],[121,103,68,-2.230943697008347],[121,103,69,-2.2322832368995527],[121,103,70,-2.244269222726767],[121,103,71,-2.2648023854134394],[121,103,72,-2.2960991077799204],[121,103,73,-2.3220924930456164],[121,103,74,-2.330802081979872],[121,103,75,-2.33149026367897],[121,103,76,-2.323233171805046],[121,103,77,-2.311401714476415],[121,103,78,-2.293116351477487],[121,103,79,-2.269551482274657],[121,104,64,-2.329170070175841],[121,104,65,-2.3239821729560255],[121,104,66,-2.3072532850970617],[121,104,67,-2.288350801557158],[121,104,68,-2.2788108840049324],[121,104,69,-2.280790200454351],[121,104,70,-2.2946939788858796],[121,104,71,-2.3144256586659857],[121,104,72,-2.346173974843917],[121,104,73,-2.3720861708953214],[121,104,74,-2.379310625116048],[121,104,75,-2.379951271642422],[121,104,76,-2.3709015480464632],[121,104,77,-2.3574452174617893],[121,104,78,-2.339778682644084],[121,104,79,-2.3185868475119262],[121,105,64,-2.384304698167749],[121,105,65,-2.375074103566017],[121,105,66,-2.3525501626426886],[121,105,67,-2.327322584077725],[121,105,68,-2.317018625565069],[121,105,69,-2.3196060540852543],[121,105,70,-2.335774625685756],[121,105,71,-2.357857822029212],[121,105,72,-2.389268686999115],[121,105,73,-2.4143461434255875],[121,105,74,-2.419938968855809],[121,105,75,-2.4210211191963777],[121,105,76,-2.4135239010630087],[121,105,77,-2.3993433410396046],[121,105,78,-2.3851938623272475],[121,105,79,-2.366263345488681],[121,106,64,-2.439541821204293],[121,106,65,-2.4311386230886263],[121,106,66,-2.408141079421882],[121,106,67,-2.3833919027829475],[121,106,68,-2.3727341736366268],[121,106,69,-2.3749938955763956],[121,106,70,-2.3928533508752947],[121,106,71,-2.4143988337603752],[121,106,72,-2.444299311417842],[121,106,73,-2.4687298601076035],[121,106,74,-2.474560191970677],[121,106,75,-2.4730290047365555],[121,106,76,-2.466584290404357],[121,106,77,-2.454003804856675],[121,106,78,-2.4412501677294722],[121,106,79,-2.4210194677662575],[121,107,64,-2.4890113081886343],[121,107,65,-2.4809445026856256],[121,107,66,-2.4585234717664655],[121,107,67,-2.4330795714918465],[121,107,68,-2.4221217856806647],[121,107,69,-2.4267956529745196],[121,107,70,-2.443244646534155],[121,107,71,-2.4632278754319534],[121,107,72,-2.4952713557617057],[121,107,73,-2.5190836335726927],[121,107,74,-2.526471218292051],[121,107,75,-2.521913530110041],[121,107,76,-2.5161833022575184],[121,107,77,-2.502879411481509],[121,107,78,-2.48801754875856],[121,107,79,-2.4679892302741147],[121,108,64,-2.5381966371495643],[121,108,65,-2.532294326919971],[121,108,66,-2.5119875305746797],[121,108,67,-2.486346328676203],[121,108,68,-2.4746958604748848],[121,108,69,-2.4784794981029927],[121,108,70,-2.495912558062492],[121,108,71,-2.517311362477926],[121,108,72,-2.5502211921119833],[121,108,73,-2.5743919602470804],[121,108,74,-2.5798576794611296],[121,108,75,-2.5757772313972973],[121,108,76,-2.5687421839233715],[121,108,77,-2.5550858954616213],[121,108,78,-2.5425351183872524],[121,108,79,-2.522441590090221],[121,109,64,-2.5772087671907684],[121,109,65,-2.5774161448443844],[121,109,66,-2.565497839468208],[121,109,67,-2.545160260921806],[121,109,68,-2.533260307806858],[121,109,69,-2.5398424987586594],[121,109,70,-2.555142392573226],[121,109,71,-2.579581471594317],[121,109,72,-2.6092558384782016],[121,109,73,-2.632209453707166],[121,109,74,-2.641017033753515],[121,109,75,-2.636594934280615],[121,109,76,-2.627544663765515],[121,109,77,-2.612205304728733],[121,109,78,-2.596600432320332],[121,109,79,-2.5718032928931414],[121,110,64,-2.623810224872446],[121,110,65,-2.6239543376251833],[121,110,66,-2.6125808433924567],[121,110,67,-2.5945745340309325],[121,110,68,-2.583458504367809],[121,110,69,-2.588951809906801],[121,110,70,-2.6051969518257354],[121,110,71,-2.6301510750147465],[121,110,72,-2.6589469290437466],[121,110,73,-2.678794599529785],[121,110,74,-2.6913058607589977],[121,110,75,-2.6896632974788828],[121,110,76,-2.6795891250646715],[121,110,77,-2.663253434718796],[121,110,78,-2.648253821396404],[121,110,79,-2.62165901720449],[121,111,64,-2.66219228559767],[121,111,65,-2.663544708299826],[121,111,66,-2.655299608233102],[121,111,67,-2.6366828588898583],[121,111,68,-2.6261626857817295],[121,111,69,-2.631320323752276],[121,111,70,-2.6491392666924014],[121,111,71,-2.674313847777288],[121,111,72,-2.701716257944458],[121,111,73,-2.7242499741807653],[121,111,74,-2.7357319028204428],[121,111,75,-2.738587189187108],[121,111,76,-2.727872230101198],[121,111,77,-2.711301026046634],[121,111,78,-2.69493431523533],[121,111,79,-2.669834478371314],[121,112,64,-2.7081836029140858],[121,112,65,-2.7133915791938255],[121,112,66,-2.704747545029429],[121,112,67,-2.6849918328834805],[121,112,68,-2.67470115121],[121,112,69,-2.678955724780617],[121,112,70,-2.697029802188953],[121,112,71,-2.724105858557131],[121,112,72,-2.749159361826149],[121,112,73,-2.773704622447195],[121,112,74,-2.785305780055212],[121,112,75,-2.7877342740183355],[121,112,76,-2.7774878519411663],[121,112,77,-2.7606823757478556],[121,112,78,-2.740476284285377],[121,112,79,-2.720486038649367],[121,113,64,-2.7545890502100043],[121,113,65,-2.7609994819303987],[121,113,66,-2.754314215083453],[121,113,67,-2.7350926618409326],[121,113,68,-2.725002372014701],[121,113,69,-2.7300679055535753],[121,113,70,-2.7452106616865857],[121,113,71,-2.771408891179097],[121,113,72,-2.796336761305857],[121,113,73,-2.8224347931421274],[121,113,74,-2.8366029876405356],[121,113,75,-2.8370742895200767],[121,113,76,-2.826079039985645],[121,113,77,-2.808727208203958],[121,113,78,-2.791567512343346],[121,113,79,-2.771399105288908],[121,114,64,-2.8082437931377635],[121,114,65,-2.817379347136609],[121,114,66,-2.8089687644453325],[121,114,67,-2.789395515200928],[121,114,68,-2.7817297678590753],[121,114,69,-2.7841187777459915],[121,114,70,-2.8002425268483475],[121,114,71,-2.8233008605984353],[121,114,72,-2.851060883038231],[121,114,73,-2.8778016479264075],[121,114,74,-2.8890341135229995],[121,114,75,-2.889808706320216],[121,114,76,-2.879353077224781],[121,114,77,-2.8609393604467197],[121,114,78,-2.8474119719474142],[121,114,79,-2.8273530407107597],[121,115,64,-2.8570370684667585],[121,115,65,-2.863076171865957],[121,115,66,-2.853889666371706],[121,115,67,-2.8373721727589865],[121,115,68,-2.8312450124268445],[121,115,69,-2.8297657963892155],[121,115,70,-2.848387270703923],[121,115,71,-2.8708675642934574],[121,115,72,-2.901925993911368],[121,115,73,-2.9254569023828574],[121,115,74,-2.937865121346187],[121,115,75,-2.937032224127583],[121,115,76,-2.9292090621643836],[121,115,77,-2.913011257300736],[121,115,78,-2.8963045946715553],[121,115,79,-2.8754101298340307],[121,116,64,-2.8814826670606886],[121,116,65,-2.8868414879115947],[121,116,66,-2.8823534935570043],[121,116,67,-2.8724714667660134],[121,116,68,-2.8675840690458734],[121,116,69,-2.8698569513482424],[121,116,70,-2.890266249905708],[121,116,71,-2.917985660888963],[121,116,72,-2.9463771057478483],[121,116,73,-2.969866586543895],[121,116,74,-2.9847112781827487],[121,116,75,-2.9825818040645],[121,116,76,-2.9746597117614844],[121,116,77,-2.956340838313694],[121,116,78,-2.93482544857943],[121,116,79,-2.908425419326476],[121,117,64,-2.929670047223707],[121,117,65,-2.9344746373531074],[121,117,66,-2.9312726056132314],[121,117,67,-2.924830170863253],[121,117,68,-2.9201432658543007],[121,117,69,-2.925876554849885],[121,117,70,-2.945312171817648],[121,117,71,-2.973681872377968],[121,117,72,-3.00210278510049],[121,117,73,-3.025137294412632],[121,117,74,-3.0411675832579537],[121,117,75,-3.0411605592901356],[121,117,76,-3.0295191450279697],[121,117,77,-3.009099185631848],[121,117,78,-2.9798565010370663],[121,117,79,-2.9495451406540067],[121,118,64,-2.976095526159794],[121,118,65,-2.978914299875764],[121,118,66,-2.9767319222181308],[121,118,67,-2.970650296798421],[121,118,68,-2.96770494434336],[121,118,69,-2.974344850826977],[121,118,70,-2.994456070327819],[121,118,71,-3.020754350441651],[121,118,72,-3.050455531102725],[121,118,73,-3.073874592077014],[121,118,74,-3.088307930605229],[121,118,75,-3.0904448094177237],[121,118,76,-3.0808628769412025],[121,118,77,-3.060476312267176],[121,118,78,-3.030633212382229],[121,118,79,-2.997081801129781],[121,119,64,-3.0139601632912036],[121,119,65,-3.018820474321827],[121,119,66,-3.014235673935445],[121,119,67,-3.0104513469049894],[121,119,68,-3.0089731295347577],[121,119,69,-3.0165004250688057],[121,119,70,-3.0358265143135337],[121,119,71,-3.064793092156982],[121,119,72,-3.0955369065709815],[121,119,73,-3.1185979758742763],[121,119,74,-3.133888283186099],[121,119,75,-3.138338005451933],[121,119,76,-3.129599186542783],[121,119,77,-3.109973316540076],[121,119,78,-3.081558080055986],[121,119,79,-3.045748407080641],[121,120,64,-3.0577228920498962],[121,120,65,-3.0647326241432022],[121,120,66,-3.0624331252856702],[121,120,67,-3.0556826946592963],[121,120,68,-3.055456212277956],[121,120,69,-3.062238405012697],[121,120,70,-3.08349697505691],[121,120,71,-3.1111608300913236],[121,120,72,-3.143189467265478],[121,120,73,-3.1683081332888268],[121,120,74,-3.1840127670638543],[121,120,75,-3.1858588346756695],[121,120,76,-3.177840379963751],[121,120,77,-3.1604174754973298],[121,120,78,-3.131362933918603],[121,120,79,-3.0962678228750695],[121,121,64,-3.102878092731364],[121,121,65,-3.1073495447004227],[121,121,66,-3.1020582410698485],[121,121,67,-3.0895281169397935],[121,121,68,-3.089613452509279],[121,121,69,-3.100286629717785],[121,121,70,-3.122932996690479],[121,121,71,-3.1514860491870165],[121,121,72,-3.18340020620425],[121,121,73,-3.2099268662226335],[121,121,74,-3.222402470683547],[121,121,75,-3.224245943327286],[121,121,76,-3.219783773777225],[121,121,77,-3.2064950915539985],[121,121,78,-3.1845893328534434],[121,121,79,-3.1540053927965257],[121,122,64,-3.153958284381756],[121,122,65,-3.1577745548773093],[121,122,66,-3.1534757911140163],[121,122,67,-3.1422341547358177],[121,122,68,-3.142552864032965],[121,122,69,-3.1545402601767556],[121,122,70,-3.175974164507256],[121,122,71,-3.207158632502882],[121,122,72,-3.239567342549919],[121,122,73,-3.2659620230850765],[121,122,74,-3.277264553682936],[121,122,75,-3.2786012598759484],[121,122,76,-3.273873844477213],[121,122,77,-3.260205559261649],[121,122,78,-3.238392908693101],[121,122,79,-3.209898986965595],[121,123,64,-3.199442059152527],[121,123,65,-3.2028504941974543],[121,123,66,-3.1972466275176616],[121,123,67,-3.189005337588917],[121,123,68,-3.1902858771413936],[121,123,69,-3.2044032052380995],[121,123,70,-3.224909520004816],[121,123,71,-3.2535832874488233],[121,123,72,-3.28984934236351],[121,123,73,-3.317481794820986],[121,123,74,-3.3276065094797023],[121,123,75,-3.3270197885428683],[121,123,76,-3.3230861646793004],[121,123,77,-3.309786757010479],[121,123,78,-3.291090972683781],[121,123,79,-3.2609744297556844],[121,124,64,-3.2451953906731807],[121,124,65,-3.2489804760464627],[121,124,66,-3.241927586307148],[121,124,67,-3.233932470803403],[121,124,68,-3.2358855604755226],[121,124,69,-3.2487815749186257],[121,124,70,-3.2679967724750645],[121,124,71,-3.299017348850658],[121,124,72,-3.3382874662400392],[121,124,73,-3.3624110801578557],[121,124,74,-3.3774689607943027],[121,124,75,-3.377266280044093],[121,124,76,-3.3719888895584598],[121,124,77,-3.3597661876443667],[121,124,78,-3.341373194584317],[121,124,79,-3.311514448097148],[121,125,64,-3.2902393824557676],[121,125,65,-3.294097069315273],[121,125,66,-3.2884391165861984],[121,125,67,-3.2835241055198083],[121,125,68,-3.2863907098573057],[121,125,69,-3.298174938914213],[121,125,70,-3.3173427062201135],[121,125,71,-3.3487247148605825],[121,125,72,-3.3855184698593126],[121,125,73,-3.4106907790306136],[121,125,74,-3.4262133223437536],[121,125,75,-3.426680732492512],[121,125,76,-3.4239473550230017],[121,125,77,-3.411357297852516],[121,125,78,-3.392425746515753],[121,125,79,-3.359988786087361],[121,126,64,-3.3357199677030187],[121,126,65,-3.3397797295800347],[121,126,66,-3.3341127103569765],[121,126,67,-3.332330197780068],[121,126,68,-3.333999905708714],[121,126,69,-3.3464090563681923],[121,126,70,-3.367152581453096],[121,126,71,-3.39845675742476],[121,126,72,-3.4350019376652616],[121,126,73,-3.4597141591943914],[121,126,74,-3.476085459618962],[121,126,75,-3.4774737360695998],[121,126,76,-3.472757417715122],[121,126,77,-3.461949333657205],[121,126,78,-3.4395096231161513],[121,126,79,-3.409869540584812],[121,127,64,-3.3732727718099613],[121,127,65,-3.3772245868758],[121,127,66,-3.375154834523226],[121,127,67,-3.376051096262092],[121,127,68,-3.379070155710388],[121,127,69,-3.3909769665374303],[121,127,70,-3.4140359576316786],[121,127,71,-3.4461826453602438],[121,127,72,-3.4836777651970707],[121,127,73,-3.510834621532453],[121,127,74,-3.527132656030087],[121,127,75,-3.5317102561786244],[121,127,76,-3.5237906752444625],[121,127,77,-3.5112199499169368],[121,127,78,-3.4858312532567637],[121,127,79,-3.4596052122188223],[121,128,64,-3.418510017138306],[121,128,65,-3.4238152816316125],[121,128,66,-3.424918961288832],[121,128,67,-3.4251959110972523],[121,128,68,-3.4265433847881677],[121,128,69,-3.439805590477709],[121,128,70,-3.4624818139795877],[121,128,71,-3.496455748033708],[121,128,72,-3.5362045471606844],[121,128,73,-3.5627014947492293],[121,128,74,-3.5777357313633877],[121,128,75,-3.5823000024664746],[121,128,76,-3.5753734682462013],[121,128,77,-3.5600930233585655],[121,128,78,-3.5352835672716747],[121,128,79,-3.5072372895823243],[121,129,64,-3.4602908765248066],[121,129,65,-3.467556406374472],[121,129,66,-3.4696632789507342],[121,129,67,-3.47192577411859],[121,129,68,-3.477210798427777],[121,129,69,-3.4879323634928694],[121,129,70,-3.5139109614492394],[121,129,71,-3.550486505726675],[121,129,72,-3.5887785541968515],[121,129,73,-3.614582529672016],[121,129,74,-3.631642519700353],[121,129,75,-3.635371359727071],[121,129,76,-3.6265573134112183],[121,129,77,-3.6064614826524144],[121,129,78,-3.577272534605729],[121,129,79,-3.5468256551122765],[121,130,64,-3.5147358101231334],[121,130,65,-3.5217005637720757],[121,130,66,-3.5247737874816636],[121,130,67,-3.523340670137128],[121,130,68,-3.529341557359478],[121,130,69,-3.5443198372032865],[121,130,70,-3.571500606316508],[121,130,71,-3.606315361600226],[121,130,72,-3.6429544242975065],[121,130,73,-3.6705588117830166],[121,130,74,-3.7097114492656456],[121,130,75,-3.739934947559435],[121,130,76,-3.742461309206548],[121,130,77,-3.731450646685147],[121,130,78,-3.7200850065614475],[121,130,79,-3.725893266629644],[121,131,64,-3.5633738966795994],[121,131,65,-3.5715251479329106],[121,131,66,-3.573833823145578],[121,131,67,-3.570471385374089],[121,131,68,-3.5770952773259026],[121,131,69,-3.592906085494276],[121,131,70,-3.6234194202877164],[121,131,71,-3.656670615148824],[121,131,72,-3.6941419346084925],[121,131,73,-3.721168146946289],[121,131,74,-3.769805653246758],[121,131,75,-3.7996709940475917],[121,131,76,-3.794427083719718],[121,131,77,-3.7910710661006983],[121,131,78,-3.7926428562293055],[121,131,79,-3.7864745086021863],[121,132,64,-3.60429367119027],[121,132,65,-3.614058309536395],[121,132,66,-3.6145785165290665],[121,132,67,-3.610333882326085],[121,132,68,-3.614943819634656],[121,132,69,-3.634700567768009],[121,132,70,-3.6676612266946025],[121,132,71,-3.702410128774688],[121,132,72,-3.739865817071047],[121,132,73,-3.7661827888684143],[121,132,74,-3.8200820038493233],[121,132,75,-3.8484925090583966],[121,132,76,-3.8436027781474382],[121,132,77,-3.845216526182001],[121,132,78,-3.8569918137933534],[121,132,79,-3.833060766176157],[121,133,64,-3.6630933503017915],[121,133,65,-3.669407989032372],[121,133,66,-3.6628826354996],[121,133,67,-3.6561781534244884],[121,133,68,-3.659948751626742],[121,133,69,-3.681127731965445],[121,133,70,-3.7173089046366568],[121,133,71,-3.751678876361831],[121,133,72,-3.7886233742431052],[121,133,73,-3.815991509720014],[121,133,74,-3.8685904161040683],[121,133,75,-3.879321468133044],[121,133,76,-3.8808363814276654],[121,133,77,-3.886828749207877],[121,133,78,-3.9024717477970223],[121,133,79,-3.8814845311204182],[121,134,64,-3.710428257133121],[121,134,65,-3.71442908475277],[121,134,66,-3.7095884182121583],[121,134,67,-3.7046928674095256],[121,134,68,-3.7096356148901988],[121,134,69,-3.7297541170212263],[121,134,70,-3.766412675323672],[121,134,71,-3.8002970404503933],[121,134,72,-3.837310141026176],[121,134,73,-3.8670822267260587],[121,134,74,-3.9189019501701314],[121,134,75,-3.935047862279406],[121,134,76,-3.933897123375602],[121,134,77,-3.939146699743431],[121,134,78,-3.952858655484903],[121,134,79,-3.938868608710653],[121,135,64,-3.75182487411829],[121,135,65,-3.75700779874602],[121,135,66,-3.753261925464551],[121,135,67,-3.7512673658364184],[121,135,68,-3.755037948921678],[121,135,69,-3.7765124757297657],[121,135,70,-3.8133978571787086],[121,135,71,-3.8492520905571914],[121,135,72,-3.8847920106108345],[121,135,73,-3.914171491664313],[121,135,74,-3.9574516982372954],[121,135,75,-3.9730901284998263],[121,135,76,-3.9670282640796657],[121,135,77,-3.9704039809019256],[121,135,78,-3.9812421557152966],[121,135,79,-3.9730453821503726],[121,136,64,-3.798129900177136],[121,136,65,-3.80502180423172],[121,136,66,-3.802033799552817],[121,136,67,-3.801969776990698],[121,136,68,-3.8026842637793075],[121,136,69,-3.8254000392167096],[121,136,70,-3.8595992690496486],[121,136,71,-3.8972718258212384],[121,136,72,-3.9339536384111473],[121,136,73,-3.961967244272294],[121,136,74,-4.0165105530576755],[121,136,75,-4.029091865931279],[121,136,76,-4.028785013198503],[121,136,77,-4.027367765018699],[121,136,78,-4.0358473594859765],[121,136,79,-4.030828050610933],[121,137,64,-3.846615608124025],[121,137,65,-3.8507107006625305],[121,137,66,-3.8492489605306073],[121,137,67,-3.85035284579517],[121,137,68,-3.8546358791173585],[121,137,69,-3.8734448937951766],[121,137,70,-3.9068640966358408],[121,137,71,-3.9434071886611837],[121,137,72,-3.9823050165300504],[121,137,73,-4.009920539928494],[121,137,74,-4.0583436894932685],[121,137,75,-4.070331789019419],[121,137,76,-4.069933425748086],[121,137,77,-4.061187287158094],[121,137,78,-4.060620519377092],[121,137,79,-4.055108839868686],[121,138,64,-3.9008499569225],[121,138,65,-3.9058470896074806],[121,138,66,-3.902425855325642],[121,138,67,-3.9022908821339577],[121,138,68,-3.9098585231929497],[121,138,69,-3.9267891489271602],[121,138,70,-3.958873427865723],[121,138,71,-3.9939081683711084],[121,138,72,-4.0354905596758135],[121,138,73,-4.064873732353583],[121,138,74,-4.095662388978966],[121,138,75,-4.109845712429401],[121,138,76,-4.108651875349646],[121,138,77,-4.102384191520218],[121,138,78,-4.0944506657167],[121,138,79,-4.086982435314427],[121,139,64,-3.9490749860299865],[121,139,65,-3.953192070871546],[121,139,66,-3.950504281190275],[121,139,67,-3.9504371215271408],[121,139,68,-3.9579897392897023],[121,139,69,-3.976159741992249],[121,139,70,-4.006954317254148],[121,139,71,-4.039695989063636],[121,139,72,-4.080919653767093],[121,139,73,-4.112627273914369],[121,139,74,-4.155206896100028],[121,139,75,-4.1742198994841475],[121,139,76,-4.173263728126474],[121,139,77,-4.169103159778825],[121,139,78,-4.156618956446263],[121,139,79,-4.153660351193682],[121,140,64,-4.008914945099811],[121,140,65,-4.00936650460631],[121,140,66,-4.003567326143766],[121,140,67,-4.00067955831868],[121,140,68,-4.003579964946965],[121,140,69,-4.020107342295952],[121,140,70,-4.049076186118596],[121,140,71,-4.07921846681527],[121,140,72,-4.120531856543441],[121,140,73,-4.1623567670310955],[121,140,74,-4.203434947631586],[121,140,75,-4.222019954028539],[121,140,76,-4.222203366482407],[121,140,77,-4.216278735506463],[121,140,78,-4.200805257825273],[121,140,79,-4.199836039480562],[121,141,64,-4.05479084072856],[121,141,65,-4.060037218153024],[121,141,66,-4.0593459394180575],[121,141,67,-4.058890911399436],[121,141,68,-4.061568386467227],[121,141,69,-4.077410008318242],[121,141,70,-4.104137898244721],[121,141,71,-4.134245823713432],[121,141,72,-4.171084618099554],[121,141,73,-4.20730192461462],[121,141,74,-4.244548873038025],[121,141,75,-4.2664741146862575],[121,141,76,-4.267656241180795],[121,141,77,-4.2537004402682514],[121,141,78,-4.2285363059005086],[121,141,79,-4.226062192246503],[121,142,64,-4.103121604085536],[121,142,65,-4.1092205954766285],[121,142,66,-4.107039177172373],[121,142,67,-4.106780145807911],[121,142,68,-4.111478763260117],[121,142,69,-4.124833910877023],[121,142,70,-4.1514110594147],[121,142,71,-4.18217238803055],[121,142,72,-4.220745838458572],[121,142,73,-4.257727211099999],[121,142,74,-4.28961378264095],[121,142,75,-4.315843710311582],[121,142,76,-4.313987544707741],[121,142,77,-4.297880622632838],[121,142,78,-4.275711912109554],[121,142,79,-4.275036870386802],[121,143,64,-4.146844242519495],[121,143,65,-4.153299965225214],[121,143,66,-4.1506389441393186],[121,143,67,-4.151940636519967],[121,143,68,-4.15428538678633],[121,143,69,-4.170777467798069],[121,143,70,-4.198324387775722],[121,143,71,-4.228081632933131],[121,143,72,-4.267314810006997],[121,143,73,-4.30343997920744],[121,143,74,-4.333126067564193],[121,143,75,-4.354690056691688],[121,143,76,-4.352982713949389],[121,143,77,-4.336075153492654],[121,143,78,-4.314113526759856],[121,143,79,-4.313684006287839],[121,144,64,-4.195251711189262],[121,144,65,-4.200793863706385],[121,144,66,-4.198606387073019],[121,144,67,-4.199804290519055],[121,144,68,-4.200989944609348],[121,144,69,-4.218392186606098],[121,144,70,-4.245135633121879],[121,144,71,-4.274391851177919],[121,144,72,-4.315439267818177],[121,144,73,-4.350266374098765],[121,144,74,-4.386523376481692],[121,144,75,-4.407378352545046],[121,144,76,-4.406361587263824],[121,144,77,-4.391118867573257],[121,144,78,-4.368349911342549],[121,144,79,-4.371344017457919],[121,145,64,-4.240149194023201],[121,145,65,-4.244071563343399],[121,145,66,-4.238448972898719],[121,145,67,-4.238499474907865],[121,145,68,-4.238093597870176],[121,145,69,-4.255385233460794],[121,145,70,-4.279732433592135],[121,145,71,-4.317555712211213],[121,145,72,-4.363388974825975],[121,145,73,-4.396538303461465],[121,145,74,-4.417515280553558],[121,145,75,-4.424798063806704],[121,145,76,-4.425891477635145],[121,145,77,-4.410186846719242],[121,145,78,-4.385601454360946],[121,145,79,-4.363903624223843],[121,146,64,-4.296938972246007],[121,146,65,-4.2985617185971705],[121,146,66,-4.29099538986486],[121,146,67,-4.290416140387234],[121,146,68,-4.291325280910239],[121,146,69,-4.3059571906810294],[121,146,70,-4.32969272480084],[121,146,71,-4.372165218938107],[121,146,72,-4.416533436975787],[121,146,73,-4.449642435448115],[121,146,74,-4.469790478019302],[121,146,75,-4.479804895966095],[121,146,76,-4.480265955976521],[121,146,77,-4.464612812329949],[121,146,78,-4.441372887846893],[121,146,79,-4.415932076448147],[121,147,64,-4.343814647936519],[121,147,65,-4.347502358649139],[121,147,66,-4.339891959113151],[121,147,67,-4.3359600825789295],[121,147,68,-4.336303285582256],[121,147,69,-4.351435677744762],[121,147,70,-4.37776448460025],[121,147,71,-4.419127670323365],[121,147,72,-4.4637221646517515],[121,147,73,-4.4961859837335725],[121,147,74,-4.520583566913334],[121,147,75,-4.530592520840558],[121,147,76,-4.528934354855668],[121,147,77,-4.512127000730332],[121,147,78,-4.492049261896826],[121,147,79,-4.4645409337200785],[121,148,64,-4.359568604914694],[121,148,65,-4.367031495192681],[121,148,66,-4.361699961099754],[121,148,67,-4.3597294021992745],[121,148,68,-4.358396731740362],[121,148,69,-4.376952301962557],[121,148,70,-4.407786942928257],[121,148,71,-4.448200929220897],[121,148,72,-4.4928048722082226],[121,148,73,-4.528351718352632],[121,148,74,-4.550410767738244],[121,148,75,-4.547471944404128],[121,148,76,-4.524453281363409],[121,148,77,-4.528752269001449],[121,148,78,-4.503410619142864],[121,148,79,-4.466227673240784],[121,149,64,-4.411098122599776],[121,149,65,-4.416480350878132],[121,149,66,-4.41180021595905],[121,149,67,-4.408330346236701],[121,149,68,-4.40682360101365],[121,149,69,-4.423073029394853],[121,149,70,-4.455914256029597],[121,149,71,-4.497411755389213],[121,149,72,-4.542611190935392],[121,149,73,-4.579416836119771],[121,149,74,-4.600217997871121],[121,149,75,-4.5918088954963565],[121,149,76,-4.578998528030476],[121,149,77,-4.580642342332078],[121,149,78,-4.548298381368718],[121,149,79,-4.509611276318309],[121,150,64,-4.462178895857502],[121,150,65,-4.466968669527878],[121,150,66,-4.461210457541494],[121,150,67,-4.455483306181035],[121,150,68,-4.456713849299972],[121,150,69,-4.4718381524327375],[121,150,70,-4.505024440181868],[121,150,71,-4.544515723028805],[121,150,72,-4.5944649970044855],[121,150,73,-4.62989065025952],[121,150,74,-4.648665383491645],[121,150,75,-4.640901360291946],[121,150,76,-4.6318364825483975],[121,150,77,-4.623029739701951],[121,150,78,-4.586508811848701],[121,150,79,-4.552282170213054],[121,151,64,-4.507176639049758],[121,151,65,-4.515187471617802],[121,151,66,-4.5106505856352666],[121,151,67,-4.503405521810832],[121,151,68,-4.502846335645023],[121,151,69,-4.518203210346401],[121,151,70,-4.55256897059134],[121,151,71,-4.590874266926467],[121,151,72,-4.641584586439617],[121,151,73,-4.678444673458134],[121,151,74,-4.70030297005897],[121,151,75,-4.710987965235088],[121,151,76,-4.699163193681456],[121,151,77,-4.684233033146413],[121,151,78,-4.646046365989056],[121,151,79,-4.610978247058791],[121,152,64,-4.559121087906997],[121,152,65,-4.5682654137938155],[121,152,66,-4.562995827294556],[121,152,67,-4.556225784807187],[121,152,68,-4.550368969628229],[121,152,69,-4.565489261362747],[121,152,70,-4.6001659698871284],[121,152,71,-4.639775698811427],[121,152,72,-4.688203837213898],[121,152,73,-4.724390885137199],[121,152,74,-4.749744824644386],[121,152,75,-4.758397056677668],[121,152,76,-4.747886936726277],[121,152,77,-4.730013086355789],[121,152,78,-4.6929180174706016],[121,152,79,-4.65550353326908],[121,153,64,-4.602493232963734],[121,153,65,-4.61824472616647],[121,153,66,-4.621125231613664],[121,153,67,-4.614538448626075],[121,153,68,-4.608019561599102],[121,153,69,-4.6236577428730286],[121,153,70,-4.656425556409676],[121,153,71,-4.692399740072468],[121,153,72,-4.7355077762940585],[121,153,73,-4.773491129699272],[121,153,74,-4.796958467367118],[121,153,75,-4.804599281849985],[121,153,76,-4.782129372502094],[121,153,77,-4.76770924798318],[121,153,78,-4.718976181114942],[121,153,79,-4.674941944439152],[121,154,64,-4.657775400949816],[121,154,65,-4.672213061646258],[121,154,66,-4.675068723774107],[121,154,67,-4.668578431012699],[121,154,68,-4.664821078166764],[121,154,69,-4.677100423210468],[121,154,70,-4.707397103912629],[121,154,71,-4.7442195648308285],[121,154,72,-4.787669068160022],[121,154,73,-4.827878861422402],[121,154,74,-4.848471508140765],[121,154,75,-4.856261337149335],[121,154,76,-4.849519346715317],[121,154,77,-4.8339701868879885],[121,154,78,-4.7823119799645],[121,154,79,-4.7304097245537085],[121,155,64,-4.7074554563590905],[121,155,65,-4.719815124565574],[121,155,66,-4.7217526071907825],[121,155,67,-4.715489027046137],[121,155,68,-4.714662567745005],[121,155,69,-4.72483705884353],[121,155,70,-4.753403466084609],[121,155,71,-4.789906991501996],[121,155,72,-4.834078127949097],[121,155,73,-4.872414481897263],[121,155,74,-4.893441768282162],[121,155,75,-4.902392638963513],[121,155,76,-4.8987605330608766],[121,155,77,-4.8810904294992765],[121,155,78,-4.839103969767985],[121,155,79,-4.778390609607716],[121,156,64,-4.755785171554122],[121,156,65,-4.766422132178566],[121,156,66,-4.770426664104224],[121,156,67,-4.7647732758848],[121,156,68,-4.764473784720315],[121,156,69,-4.774628026370819],[121,156,70,-4.802356864212918],[121,156,71,-4.837599754808742],[121,156,72,-4.882890975193852],[121,156,73,-4.918964136472432],[121,156,74,-4.938837609144553],[121,156,75,-4.949974828118358],[121,156,76,-4.948241611196453],[121,156,77,-4.928383503029107],[121,156,78,-4.884110531537599],[121,156,79,-4.825975104009047],[121,157,64,-4.8101734093941175],[121,157,65,-4.817376515215153],[121,157,66,-4.811874462284278],[121,157,67,-4.802704897503765],[121,157,68,-4.7982399040535455],[121,157,69,-4.811108242181217],[121,157,70,-4.84225181569741],[121,157,71,-4.8804384923073965],[121,157,72,-4.926826018919761],[121,157,73,-4.963564986819549],[121,157,74,-4.985425050397553],[121,157,75,-4.995445113250314],[121,157,76,-4.998477853236878],[121,157,77,-4.978846515841905],[121,157,78,-4.92461750873203],[121,157,79,-4.878602054062546],[121,158,64,-4.8592119980200295],[121,158,65,-4.867454197205085],[121,158,66,-4.858517367306558],[121,158,67,-4.847369687632033],[121,158,68,-4.845606719726036],[121,158,69,-4.859634582149543],[121,158,70,-4.89142093450107],[121,158,71,-4.928768186845121],[121,158,72,-4.9743474838087645],[121,158,73,-5.009457954477994],[121,158,74,-5.033431072362814],[121,158,75,-5.042264711614214],[121,158,76,-5.046180726998485],[121,158,77,-5.020928267387732],[121,158,78,-4.957210427236678],[121,158,79,-4.923685991334287],[121,159,64,-4.962782495905121],[121,159,65,-4.967714993730507],[121,159,66,-4.950820320062356],[121,159,67,-4.932142657517485],[121,159,68,-4.922801319610818],[121,159,69,-4.93422095343496],[121,159,70,-4.953521321709643],[121,159,71,-4.983911909047394],[121,159,72,-5.023994588493897],[121,159,73,-5.0527636264068825],[121,159,74,-5.069073133012889],[121,159,75,-5.069871385544642],[121,159,76,-5.06239630538828],[121,159,77,-5.037694623104154],[121,159,78,-4.982293796646289],[121,159,79,-4.9424876324542915],[121,160,64,-5.0110957967900704],[121,160,65,-5.014139923182452],[121,160,66,-4.996781228196341],[121,160,67,-4.978743615460605],[121,160,68,-4.970147872010251],[121,160,69,-4.979489617419363],[121,160,70,-4.997447407788354],[121,160,71,-5.0294299118438905],[121,160,72,-5.071251133398444],[121,160,73,-5.100296976725665],[121,160,74,-5.113550125266934],[121,160,75,-5.1153780305317325],[121,160,76,-5.104305323212206],[121,160,77,-5.082078277324206],[121,160,78,-5.027015862554721],[121,160,79,-4.9893092652086],[121,161,64,-5.058160784176945],[121,161,65,-5.060259612544788],[121,161,66,-5.043950450243369],[121,161,67,-5.024863551922746],[121,161,68,-5.01954171290934],[121,161,69,-5.024791010379761],[121,161,70,-5.0441625457347214],[121,161,71,-5.0763916408293674],[121,161,72,-5.115571591754366],[121,161,73,-5.1457794369729255],[121,161,74,-5.159290653562456],[121,161,75,-5.158989678620682],[121,161,76,-5.147783158960162],[121,161,77,-5.127673067094582],[121,161,78,-5.071649844276353],[121,161,79,-5.03251481226011],[121,162,64,-5.109042301511843],[121,162,65,-5.111937360297517],[121,162,66,-5.099331767428865],[121,162,67,-5.079457529303055],[121,162,68,-5.072101206971146],[121,162,69,-5.0757116845042765],[121,162,70,-5.093883931232054],[121,162,71,-5.127256179553822],[121,162,72,-5.166184178407975],[121,162,73,-5.197806142299295],[121,162,74,-5.211005145338849],[121,162,75,-5.206902847964482],[121,162,76,-5.194359973167464],[121,162,77,-5.1765584246836225],[121,162,78,-5.131735933585281],[121,162,79,-5.0896810067439375],[121,163,64,-5.15455651509859],[121,163,65,-5.155788027620722],[121,163,66,-5.147071943779518],[121,163,67,-5.126788808649316],[121,163,68,-5.116687586545969],[121,163,69,-5.121576622631417],[121,163,70,-5.137615526574777],[121,163,71,-5.171126918261906],[121,163,72,-5.213148960952805],[121,163,73,-5.247188665221927],[121,163,74,-5.25710593273658],[121,163,75,-5.254879840956944],[121,163,76,-5.2408517142277775],[121,163,77,-5.218976195318911],[121,163,78,-5.190727551333218],[121,163,79,-5.149648371513323],[121,164,64,-5.177861834293607],[121,164,65,-5.176505093716277],[121,164,66,-5.167185347341885],[121,164,67,-5.1480476101978665],[121,164,68,-5.136277760731413],[121,164,69,-5.1374254677747855],[121,164,70,-5.15485783291231],[121,164,71,-5.1900910930769495],[121,164,72,-5.22906673071192],[121,164,73,-5.264161601702422],[121,164,74,-5.275276898425668],[121,164,75,-5.274614947286203],[121,164,76,-5.2608637443057304],[121,164,77,-5.242322292304268],[121,164,78,-5.214305271725575],[121,164,79,-5.173304019772759],[121,165,64,-5.217910525606475],[121,165,65,-5.222525903826731],[121,165,66,-5.21816683324871],[121,165,67,-5.204463015408366],[121,165,68,-5.190909753589267],[121,165,69,-5.193350263192613],[121,165,70,-5.208217009517977],[121,165,71,-5.238890036310029],[121,165,72,-5.2730127825794995],[121,165,73,-5.299002714694378],[121,165,74,-5.311690824496816],[121,165,75,-5.311660835789321],[121,165,76,-5.299520172939941],[121,165,77,-5.28513868888407],[121,165,78,-5.261551576420956],[121,165,79,-5.216660134896614],[121,166,64,-5.262488418477988],[121,166,65,-5.269035855565316],[121,166,66,-5.264578061171864],[121,166,67,-5.252723772761741],[121,166,68,-5.238418705201021],[121,166,69,-5.238292668344885],[121,166,70,-5.2539968993627415],[121,166,71,-5.285258247120031],[121,166,72,-5.319549089026156],[121,166,73,-5.343678277680909],[121,166,74,-5.354757022425647],[121,166,75,-5.355454829019344],[121,166,76,-5.344363177199623],[121,166,77,-5.330853004094031],[121,166,78,-5.3095575277566915],[121,166,79,-5.266280391675418],[121,167,64,-5.304589586792198],[121,167,65,-5.31093316651279],[121,167,66,-5.306191096502202],[121,167,67,-5.294272365956605],[121,167,68,-5.28183034753986],[121,167,69,-5.279996420610174],[121,167,70,-5.298139296388342],[121,167,71,-5.328522164955528],[121,167,72,-5.364395518756623],[121,167,73,-5.389224410373654],[121,167,74,-5.400733442309555],[121,167,75,-5.402631932922904],[121,167,76,-5.391663922329607],[121,167,77,-5.37991034049711],[121,167,78,-5.362958848354964],[121,167,79,-5.321391055772244],[121,168,64,-5.3519513203107785],[121,168,65,-5.357488861748024],[121,168,66,-5.348749457559386],[121,168,67,-5.336233673887006],[121,168,68,-5.323661900845968],[121,168,69,-5.326814769610618],[121,168,70,-5.344015389968354],[121,168,71,-5.37220120593155],[121,168,72,-5.408971057916936],[121,168,73,-5.434210922263807],[121,168,74,-5.446365408896777],[121,168,75,-5.446413111363295],[121,168,76,-5.438957210705019],[121,168,77,-5.423285747215036],[121,168,78,-5.407643719543183],[121,168,79,-5.368279099269071],[121,169,64,-5.408189431960719],[121,169,65,-5.406339544901262],[121,169,66,-5.390014471596236],[121,169,67,-5.370589196862687],[121,169,68,-5.357417907731374],[121,169,69,-5.360820745358492],[121,169,70,-5.382453462833774],[121,169,71,-5.415252679363315],[121,169,72,-5.456059935897629],[121,169,73,-5.489964406870933],[121,169,74,-5.503316704234977],[121,169,75,-5.502200232250068],[121,169,76,-5.493143883660382],[121,169,77,-5.471877272794472],[121,169,78,-5.44597140838832],[121,169,79,-5.40736758700292],[121,170,64,-5.457565861670936],[121,170,65,-5.456223093536479],[121,170,66,-5.4386542778852585],[121,170,67,-5.419780735453061],[121,170,68,-5.408022608074395],[121,170,69,-5.411906267068274],[121,170,70,-5.431650294359049],[121,170,71,-5.467484520818583],[121,170,72,-5.5091476499861125],[121,170,73,-5.544261903035195],[121,170,74,-5.554729207893193],[121,170,75,-5.552261575053917],[121,170,76,-5.543161045807245],[121,170,77,-5.522712152526992],[121,170,78,-5.495612478676968],[121,170,79,-5.459420615467995],[121,171,64,-5.5025233937010505],[121,171,65,-5.501110184288587],[121,171,66,-5.483228999706597],[121,171,67,-5.461907617374171],[121,171,68,-5.4516905014686765],[121,171,69,-5.4568715892552735],[121,171,70,-5.474713164096429],[121,171,71,-5.513909451378502],[121,171,72,-5.557824285031185],[121,171,73,-5.593569520673651],[121,171,74,-5.603450418144723],[121,171,75,-5.602166673194361],[121,171,76,-5.591730470072623],[121,171,77,-5.56954352313849],[121,171,78,-5.5429313584106215],[121,171,79,-5.505675061906778],[121,172,64,-5.5478029718718105],[121,172,65,-5.544192023492137],[121,172,66,-5.527769842196926],[121,172,67,-5.503747315622643],[121,172,68,-5.494122030698479],[121,172,69,-5.501696122946267],[121,172,70,-5.521721683420617],[121,172,71,-5.559502200596897],[121,172,72,-5.605635884420794],[121,172,73,-5.638721477965019],[121,172,74,-5.653352866807897],[121,172,75,-5.6507290066095015],[121,172,76,-5.636387057689467],[121,172,77,-5.613787358876147],[121,172,78,-5.5854477746630105],[121,172,79,-5.547129139159086],[121,173,64,-5.594392644470187],[121,173,65,-5.58864902857353],[121,173,66,-5.571740555203777],[121,173,67,-5.547834006222996],[121,173,68,-5.537654601651256],[121,173,69,-5.545804134702415],[121,173,70,-5.57099795723663],[121,173,71,-5.605320456916632],[121,173,72,-5.652317134082149],[121,173,73,-5.687192426691852],[121,173,74,-5.702630030002901],[121,173,75,-5.7002648001740095],[121,173,76,-5.685303636651922],[121,173,77,-5.661146837935225],[121,173,78,-5.630179044047965],[121,173,79,-5.590884591141052],[121,174,64,-5.640886297502143],[121,174,65,-5.631491737802608],[121,174,66,-5.6161428959458615],[121,174,67,-5.592141044628161],[121,174,68,-5.584552264586864],[121,174,69,-5.595346031528607],[121,174,70,-5.619284784429776],[121,174,71,-5.653614539257561],[121,174,72,-5.698290659083654],[121,174,73,-5.734899727016233],[121,174,74,-5.751177482489838],[121,174,75,-5.74846213736302],[121,174,76,-5.734328065675776],[121,174,77,-5.7075808692476615],[121,174,78,-5.673442938021033],[121,174,79,-5.635386036835673],[121,175,64,-5.682370839012925],[121,175,65,-5.674769716763475],[121,175,66,-5.654627873054462],[121,175,67,-5.63545924049464],[121,175,68,-5.630457371131678],[121,175,69,-5.640220823946505],[121,175,70,-5.664938099789465],[121,175,71,-5.699583281272499],[121,175,72,-5.745121849347099],[121,175,73,-5.783184363551559],[121,175,74,-5.797745317334725],[121,175,75,-5.799971613637026],[121,175,76,-5.7848539684378775],[121,175,77,-5.760623247920149],[121,175,78,-5.725531315504269],[121,175,79,-5.686394725984311],[121,176,64,-5.729745604036852],[121,176,65,-5.721709961144851],[121,176,66,-5.701982922109662],[121,176,67,-5.681792483316602],[121,176,68,-5.676757199903987],[121,176,69,-5.687287947204378],[121,176,70,-5.712805634106741],[121,176,71,-5.74692290564105],[121,176,72,-5.792961081653626],[121,176,73,-5.830058943685869],[121,176,74,-5.84249352004954],[121,176,75,-5.844395427188311],[121,176,76,-5.831456049854858],[121,176,77,-5.808047389553634],[121,176,78,-5.773135220024566],[121,176,79,-5.734923151348389],[121,177,64,-5.782349844179303],[121,177,65,-5.771750212447882],[121,177,66,-5.747562276538381],[121,177,67,-5.730417701485596],[121,177,68,-5.724339865692792],[121,177,69,-5.7387746630686305],[121,177,70,-5.763027484649848],[121,177,71,-5.7985989018787265],[121,177,72,-5.846482738058072],[121,177,73,-5.882257764258667],[121,177,74,-5.897192960071294],[121,177,75,-5.8974235282693765],[121,177,76,-5.884613102048211],[121,177,77,-5.858922341059546],[121,177,78,-5.824378327167189],[121,177,79,-5.792567175658853],[121,178,64,-5.833194141361735],[121,178,65,-5.822387787841373],[121,178,66,-5.801044718924233],[121,178,67,-5.778695075568382],[121,178,68,-5.774523998182739],[121,178,69,-5.790937029955462],[121,178,70,-5.814390901372345],[121,178,71,-5.852672002512585],[121,178,72,-5.897523696150971],[121,178,73,-5.935176770260775],[121,178,74,-5.949722383078604],[121,178,75,-5.949220057156398],[121,178,76,-5.939158212538792],[121,178,77,-5.9110931898387],[121,178,78,-5.882078282977165],[121,178,79,-5.850172032476042],[121,179,64,-5.87984368534787],[121,179,65,-5.8700606719508786],[121,179,66,-5.848874845955451],[121,179,67,-5.82726725892374],[121,179,68,-5.823899421971899],[121,179,69,-5.8375693773651935],[121,179,70,-5.8613422549514],[121,179,71,-5.90034761109063],[121,179,72,-5.945582690382732],[121,179,73,-5.983061865827993],[121,179,74,-5.997023482133943],[121,179,75,-5.998605303965713],[121,179,76,-5.986851076754694],[121,179,77,-5.957036309639733],[121,179,78,-5.933446544643382],[121,179,79,-5.901620288235442],[121,180,64,-5.913343593308221],[121,180,65,-5.905445651382917],[121,180,66,-5.885026005314507],[121,180,67,-5.865193080742004],[121,180,68,-5.862791553096839],[121,180,69,-5.875616336583594],[121,180,70,-5.900122427152433],[121,180,71,-5.939652219522075],[121,180,72,-5.984231438279028],[121,180,73,-6.019934551938898],[121,180,74,-6.034177167660211],[121,180,75,-6.036970698368833],[121,180,76,-6.0261644803711105],[121,180,77,-6.000006766590427],[121,180,78,-5.976707069202328],[121,180,79,-5.946470935402008],[121,181,64,-5.947394768397053],[121,181,65,-5.942833395919613],[121,181,66,-5.928469576438744],[121,181,67,-5.910833009538954],[121,181,68,-5.9071576893845466],[121,181,69,-5.919015103501424],[121,181,70,-5.94674412335329],[121,181,71,-5.983488802799693],[121,181,72,-6.022004615042576],[121,181,73,-6.051915527783558],[121,181,74,-6.06894764473976],[121,181,75,-6.071354310787949],[121,181,76,-6.0631599375746115],[121,181,77,-6.054468065332197],[121,181,78,-6.04399490427338],[121,181,79,-6.0157918219648545],[121,182,64,-5.993652385416906],[121,182,65,-5.987230619399285],[121,182,66,-5.9737420031265405],[121,182,67,-5.958721409135904],[121,182,68,-5.952610732472347],[121,182,69,-5.962749669120563],[121,182,70,-5.991537780438836],[121,182,71,-6.029751683444647],[121,182,72,-6.067694824399559],[121,182,73,-6.097664786477864],[121,182,74,-6.113192381279565],[121,182,75,-6.115011546437027],[121,182,76,-6.106495020348716],[121,182,77,-6.099424525709446],[121,182,78,-6.096255926928261],[121,182,79,-6.072469493930406],[121,183,64,-6.038110240602589],[121,183,65,-6.032456934920253],[121,183,66,-6.018419828671782],[121,183,67,-6.004458571816413],[121,183,68,-5.997230635272454],[121,183,69,-6.007362874906684],[121,183,70,-6.035354560119226],[121,183,71,-6.074272810709966],[121,183,72,-6.1135504499598925],[121,183,73,-6.145609266311372],[121,183,74,-6.159074803035681],[121,183,75,-6.163100268135076],[121,183,76,-6.151958500244434],[121,183,77,-6.134287131975478],[121,183,78,-6.131604985531002],[121,183,79,-6.114653489283402],[121,184,64,-6.0866763649991595],[121,184,65,-6.081706228328012],[121,184,66,-6.066589574001531],[121,184,67,-6.052260943678806],[121,184,68,-6.043772201827183],[121,184,69,-6.055458296166365],[121,184,70,-6.082640764691378],[121,184,71,-6.120053821115509],[121,184,72,-6.160105926883422],[121,184,73,-6.192100638684222],[121,184,74,-6.207322320843589],[121,184,75,-6.210415018238071],[121,184,76,-6.1981001712591155],[121,184,77,-6.187253963363241],[121,184,78,-6.18235973015963],[121,184,79,-6.167696682214012],[121,185,64,-6.137496899838761],[121,185,65,-6.131501864299287],[121,185,66,-6.113925586726886],[121,185,67,-6.097327227256313],[121,185,68,-6.088256516384491],[121,185,69,-6.100550289841404],[121,185,70,-6.130038258169394],[121,185,71,-6.165941323612587],[121,185,72,-6.207948251368887],[121,185,73,-6.240062169775578],[121,185,74,-6.255143056026818],[121,185,75,-6.254861561366604],[121,185,76,-6.241750790801198],[121,185,77,-6.237428912412643],[121,185,78,-6.2295658110555285],[121,185,79,-6.216632399859887],[121,186,64,-6.194343113531872],[121,186,65,-6.187605075162218],[121,186,66,-6.169830840108566],[121,186,67,-6.1484409808183775],[121,186,68,-6.138208751529604],[121,186,69,-6.152744284664849],[121,186,70,-6.183099495608558],[121,186,71,-6.219770867449819],[121,186,72,-6.260431528761497],[121,186,73,-6.293099068799548],[121,186,74,-6.3072730304766615],[121,186,75,-6.304668680165746],[121,186,76,-6.291233643637196],[121,186,77,-6.292232480507538],[121,186,78,-6.281091037124929],[121,186,79,-6.264909274192523],[121,187,64,-6.248148566207221],[121,187,65,-6.2357065024252245],[121,187,66,-6.217192241094798],[121,187,67,-6.193674688244715],[121,187,68,-6.186274565298173],[121,187,69,-6.198932205350485],[121,187,70,-6.231374254912738],[121,187,71,-6.268465916147763],[121,187,72,-6.310278224853797],[121,187,73,-6.341763759857474],[121,187,74,-6.355216578530332],[121,187,75,-6.350920626321323],[121,187,76,-6.348403708922242],[121,187,77,-6.354199243645796],[121,187,78,-6.343728034563701],[121,187,79,-6.3238234117921],[121,188,64,-6.304751993375941],[121,188,65,-6.288825285234815],[121,188,66,-6.267084235028605],[121,188,67,-6.239421163606585],[121,188,68,-6.230293504306204],[121,188,69,-6.2392200918511875],[121,188,70,-6.268498082339309],[121,188,71,-6.3046309558264975],[121,188,72,-6.348805046859324],[121,188,73,-6.379698707594057],[121,188,74,-6.390487134987137],[121,188,75,-6.386971912864604],[121,188,76,-6.389185434988895],[121,188,77,-6.40093809873181],[121,188,78,-6.387876681314347],[121,188,79,-6.362950294836963],[121,189,64,-6.362448070694223],[121,189,65,-6.3443518581890626],[121,189,66,-6.317550094518197],[121,189,67,-6.288323225672521],[121,189,68,-6.277112463573166],[121,189,69,-6.287488397794279],[121,189,70,-6.314997833336002],[121,189,71,-6.350361380827303],[121,189,72,-6.395154037256971],[121,189,73,-6.422815556969436],[121,189,74,-6.433565186190663],[121,189,75,-6.4280385588455955],[121,189,76,-6.440484023553465],[121,189,77,-6.459673541926272],[121,189,78,-6.444087976705927],[121,189,79,-6.414255394971743],[121,190,64,-6.4117482155462575],[121,190,65,-6.393825530519739],[121,190,66,-6.365540291331656],[121,190,67,-6.338294633862084],[121,190,68,-6.325650325696366],[121,190,69,-6.334955769479744],[121,190,70,-6.361857729305302],[121,190,71,-6.397451166102305],[121,190,72,-6.443925929642071],[121,190,73,-6.470590631430089],[121,190,74,-6.481449919300385],[121,190,75,-6.4804348504435385],[121,190,76,-6.4953066045023675],[121,190,77,-6.51227440167512],[121,190,78,-6.496189849876874],[121,190,79,-6.4679456283376915],[121,191,64,-6.456196174120014],[121,191,65,-6.43727263924524],[121,191,66,-6.411631378665199],[121,191,67,-6.386967995652868],[121,191,68,-6.375666956487121],[121,191,69,-6.381926454265189],[121,191,70,-6.4077735396455235],[121,191,71,-6.447552462558758],[121,191,72,-6.491666729865233],[121,191,73,-6.521507976391478],[121,191,74,-6.531057430963664],[121,191,75,-6.529317088097126],[121,191,76,-6.5477849438608136],[121,191,77,-6.555400372793469],[121,191,78,-6.545547022392069],[121,191,79,-6.514670797802243],[121,192,64,-6.501808426536216],[121,192,65,-6.4849657222795205],[121,192,66,-6.4619862096482565],[121,192,67,-6.435110907220868],[121,192,68,-6.423333757464111],[121,192,69,-6.4318018228298595],[121,192,70,-6.457034793598802],[121,192,71,-6.495509650125626],[121,192,72,-6.538825442750565],[121,192,73,-6.5715055420829644],[121,192,74,-6.582984640254363],[121,192,75,-6.585132862406927],[121,192,76,-6.6061109835079606],[121,192,77,-6.609681010441826],[121,192,78,-6.599678244606555],[121,192,79,-6.567855453150251],[121,193,64,-6.540119167789456],[121,193,65,-6.528839715361467],[121,193,66,-6.50699480910103],[121,193,67,-6.483159640402204],[121,193,68,-6.472612505456375],[121,193,69,-6.479687311136679],[121,193,70,-6.504463429546648],[121,193,71,-6.546175531334043],[121,193,72,-6.595524132239423],[121,193,73,-6.631755800148805],[121,193,74,-6.644352278824144],[121,193,75,-6.643938455741669],[121,193,76,-6.651716977329054],[121,193,77,-6.647276085028338],[121,193,78,-6.630659488156287],[121,193,79,-6.59019084890577],[121,194,64,-6.594755331835833],[121,194,65,-6.585691962978325],[121,194,66,-6.562726187560212],[121,194,67,-6.536702342105594],[121,194,68,-6.5270965129611085],[121,194,69,-6.533903492538686],[121,194,70,-6.557751522890635],[121,194,71,-6.598631286555312],[121,194,72,-6.647556290676204],[121,194,73,-6.684536510521013],[121,194,74,-6.698640981365956],[121,194,75,-6.691408643861591],[121,194,76,-6.700655059835115],[121,194,77,-6.701427472178202],[121,194,78,-6.68691445238726],[121,194,79,-6.63957141846638],[121,195,64,-6.643393666624574],[121,195,65,-6.633394153876472],[121,195,66,-6.6117629063401635],[121,195,67,-6.586179498763903],[121,195,68,-6.575370775419273],[121,195,69,-6.580296033445072],[121,195,70,-6.605827771984987],[121,195,71,-6.649369905157729],[121,195,72,-6.6961703277312195],[121,195,73,-6.732429691743046],[121,195,74,-6.746031366156804],[121,195,75,-6.738778278271432],[121,195,76,-6.755877376257952],[121,195,77,-6.762633247069883],[121,195,78,-6.746444414960962],[121,195,79,-6.69559889933498],[121,196,64,-6.685918396890278],[121,196,65,-6.682081382703848],[121,196,66,-6.663889834274171],[121,196,67,-6.641791251214913],[121,196,68,-6.635148703246569],[121,196,69,-6.642243703977251],[121,196,70,-6.6733787167939145],[121,196,71,-6.716127333826302],[121,196,72,-6.763832623764133],[121,196,73,-6.80010722868595],[121,196,74,-6.813210902216011],[121,196,75,-6.807469957581817],[121,196,76,-6.82425341693239],[121,196,77,-6.836002957025365],[121,196,78,-6.82038869050697],[121,196,79,-6.765800602212143],[121,197,64,-6.737377604339306],[121,197,65,-6.731967189440277],[121,197,66,-6.712076958734689],[121,197,67,-6.6913950079304625],[121,197,68,-6.684822787307855],[121,197,69,-6.692447532959043],[121,197,70,-6.723438315388563],[121,197,71,-6.762275421536955],[121,197,72,-6.8105191276659065],[121,197,73,-6.846653095133988],[121,197,74,-6.858996134213084],[121,197,75,-6.853914213425398],[121,197,76,-6.8714783494625875],[121,197,77,-6.889890343313263],[121,197,78,-6.874471351840595],[121,197,79,-6.825904627257761],[121,198,64,-6.788002115750026],[121,198,65,-6.782450568860196],[121,198,66,-6.760989868828771],[121,198,67,-6.741557720222347],[121,198,68,-6.734486663287808],[121,198,69,-6.73962150501085],[121,198,70,-6.771208743616008],[121,198,71,-6.811258347343457],[121,198,72,-6.858576851413702],[121,198,73,-6.891470740691453],[121,198,74,-6.905824651420044],[121,198,75,-6.900845505567659],[121,198,76,-6.920371940959667],[121,198,77,-6.928651634052013],[121,198,78,-6.919010759841367],[121,198,79,-6.873475012805715],[121,199,64,-6.834503408454451],[121,199,65,-6.82830655508794],[121,199,66,-6.808952776914984],[121,199,67,-6.792163541609025],[121,199,68,-6.7817115112906645],[121,199,69,-6.786312237404501],[121,199,70,-6.815896249728435],[121,199,71,-6.858743100049992],[121,199,72,-6.906615683585857],[121,199,73,-6.938490009458775],[121,199,74,-6.952497712466596],[121,199,75,-6.956729974321792],[121,199,76,-6.975462327417017],[121,199,77,-6.985420546708399],[121,199,78,-6.966947470689747],[121,199,79,-6.930122917727131],[121,200,64,-6.882985043885777],[121,200,65,-6.87680278389765],[121,200,66,-6.858611087282361],[121,200,67,-6.841595989068974],[121,200,68,-6.828169468551951],[121,200,69,-6.833327224487009],[121,200,70,-6.863098534364133],[121,200,71,-6.904733875982275],[121,200,72,-6.950568431330695],[121,200,73,-6.983180194842865],[121,200,74,-7.000675820522913],[121,200,75,-7.005928555205744],[121,200,76,-7.0247261230295175],[121,200,77,-7.033296239861503],[121,200,78,-7.012763843911301],[121,200,79,-6.975495406164097],[121,201,64,-6.928549952467763],[121,201,65,-6.919235585434252],[121,201,66,-6.901669131187846],[121,201,67,-6.881842336814154],[121,201,68,-6.868181376238593],[121,201,69,-6.87211001413916],[121,201,70,-6.901313375018528],[121,201,71,-6.9426355918138745],[121,201,72,-6.9876372545113155],[121,201,73,-7.021301918292127],[121,201,74,-7.037376266422365],[121,201,75,-7.058248199034916],[121,201,76,-7.0776835986435715],[121,201,77,-7.0861539091339125],[121,201,78,-7.053793928407827],[121,201,79,-7.017663248487107],[121,202,64,-6.983789194816711],[121,202,65,-6.975238399380648],[121,202,66,-6.957644592387384],[121,202,67,-6.93652145810821],[121,202,68,-6.9221547295299235],[121,202,69,-6.924652622022253],[121,202,70,-6.954865056206085],[121,202,71,-6.995214214981469],[121,202,72,-7.039782570111527],[121,202,73,-7.073094888478388],[121,202,74,-7.087447755355389],[121,202,75,-7.105961914703347],[121,202,76,-7.1218132581111],[121,202,77,-7.133549294577103],[121,202,78,-7.101884315203268],[121,202,79,-7.063887242871075],[121,203,64,-7.035636213955224],[121,203,65,-7.02502187980483],[121,203,66,-7.010173923077398],[121,203,67,-6.987029737392496],[121,203,68,-6.971173166905392],[121,203,69,-6.975513749147021],[121,203,70,-7.005737802194712],[121,203,71,-7.043039360557678],[121,203,72,-7.089120804821202],[121,203,73,-7.122998387306145],[121,203,74,-7.135216598980328],[121,203,75,-7.1599123835126095],[121,203,76,-7.179773331521881],[121,203,77,-7.196786568050383],[121,203,78,-7.162714374906737],[121,203,79,-7.123264509093148],[121,204,64,-7.0836548249597575],[121,204,65,-7.070593896227764],[121,204,66,-7.049988677218387],[121,204,67,-7.024419200581513],[121,204,68,-7.006008971579973],[121,204,69,-7.010765920208698],[121,204,70,-7.038934609493676],[121,204,71,-7.073042192055611],[121,204,72,-7.1192132949793665],[121,204,73,-7.155635660155677],[121,204,74,-7.1690572519419575],[121,204,75,-7.195258158414725],[121,204,76,-7.221389970054936],[121,204,77,-7.240635131143244],[121,204,78,-7.207673922351173],[121,204,79,-7.167736867811184],[121,205,64,-7.144034359267166],[121,205,65,-7.1334424616103105],[121,205,66,-7.107975629164756],[121,205,67,-7.081627812402299],[121,205,68,-7.067520388414246],[121,205,69,-7.073283970590052],[121,205,70,-7.097423435038737],[121,205,71,-7.134753548488756],[121,205,72,-7.181118740602825],[121,205,73,-7.216798777030707],[121,205,74,-7.2310428856111715],[121,205,75,-7.229234834183422],[121,205,76,-7.219388408810339],[121,205,77,-7.233495883295063],[121,205,78,-7.234907183696806],[121,205,79,-7.2209623556938975],[121,206,64,-7.194525138311197],[121,206,65,-7.184160142518992],[121,206,66,-7.156821531325685],[121,206,67,-7.130083432815715],[121,206,68,-7.1180179062728985],[121,206,69,-7.1229019428596265],[121,206,70,-7.1470469844864795],[121,206,71,-7.18567594278838],[121,206,72,-7.233761463918709],[121,206,73,-7.2692666585568535],[121,206,74,-7.281699603148076],[121,206,75,-7.2806134351351295],[121,206,76,-7.275548979628114],[121,206,77,-7.283840120139243],[121,206,78,-7.285094733038619],[121,206,79,-7.269641606459349],[121,207,64,-7.245244943461014],[121,207,65,-7.232697692608915],[121,207,66,-7.2049772211190275],[121,207,67,-7.182049011481264],[121,207,68,-7.169681318337055],[121,207,69,-7.175279724112251],[121,207,70,-7.198773736423579],[121,207,71,-7.237620370855628],[121,207,72,-7.283878628845672],[121,207,73,-7.318550304432982],[121,207,74,-7.333016168744263],[121,207,75,-7.330470374763058],[121,207,76,-7.3207643484458025],[121,207,77,-7.327750454933423],[121,207,78,-7.327171754497454],[121,207,79,-7.3188222070343905],[121,208,64,-7.293215198902533],[121,208,65,-7.283012970123991],[121,208,66,-7.256675769533455],[121,208,67,-7.235635038636224],[121,208,68,-7.220514219344687],[121,208,69,-7.226562781925923],[121,208,70,-7.248076696930824],[121,208,71,-7.285673968283864],[121,208,72,-7.332660910521181],[121,208,73,-7.367547464979284],[121,208,74,-7.380502904210311],[121,208,75,-7.3783187423301495],[121,208,76,-7.362205059648159],[121,208,77,-7.364741354002872],[121,208,78,-7.372228058252319],[121,208,79,-7.367815678063866],[121,209,64,-7.341763180802163],[121,209,65,-7.33263622225507],[121,209,66,-7.306918989864042],[121,209,67,-7.285309013301431],[121,209,68,-7.271795187214039],[121,209,69,-7.275030736321707],[121,209,70,-7.297442033831474],[121,209,71,-7.333065024839917],[121,209,72,-7.380708359025237],[121,209,73,-7.413959445416926],[121,209,74,-7.427350805296651],[121,209,75,-7.425415013427912],[121,209,76,-7.41171014070108],[121,209,77,-7.414938462717121],[121,209,78,-7.426203143805722],[121,209,79,-7.410636175046205],[121,210,64,-7.395593253122011],[121,210,65,-7.386920170873939],[121,210,66,-7.360716816950054],[121,210,67,-7.337653999848941],[121,210,68,-7.32301005423087],[121,210,69,-7.329590829662624],[121,210,70,-7.3531289000396365],[121,210,71,-7.386514777493634],[121,210,72,-7.43014255386436],[121,210,73,-7.464994199455145],[121,210,74,-7.479464538858569],[121,210,75,-7.479432503679128],[121,210,76,-7.466405830723281],[121,210,77,-7.465978758301954],[121,210,78,-7.482951519579462],[121,210,79,-7.463108671401688],[121,211,64,-7.441915575716219],[121,211,65,-7.433747399316541],[121,211,66,-7.408107240887771],[121,211,67,-7.383859287345415],[121,211,68,-7.369076463858163],[121,211,69,-7.3767397389133205],[121,211,70,-7.4031062583096165],[121,211,71,-7.438016195259082],[121,211,72,-7.479397977276729],[121,211,73,-7.513615879913919],[121,211,74,-7.529394059305619],[121,211,75,-7.532037934028879],[121,211,76,-7.517700153809263],[121,211,77,-7.529904038217981],[121,211,78,-7.549996428687711],[121,211,79,-7.520627300368772],[121,212,64,-7.472402342246241],[121,212,65,-7.465509218143045],[121,212,66,-7.444908475172571],[121,212,67,-7.426321538464044],[121,212,68,-7.419566663167263],[121,212,69,-7.4318293007962115],[121,212,70,-7.462500437395872],[121,212,71,-7.50114082283921],[121,212,72,-7.542782822649982],[121,212,73,-7.57800306635333],[121,212,74,-7.593972429030765],[121,212,75,-7.594211211016858],[121,212,76,-7.57617337121787],[121,212,77,-7.590337772453348],[121,212,78,-7.602341176487401],[121,212,79,-7.568595958883596],[121,213,64,-7.523810111959112],[121,213,65,-7.515938230118519],[121,213,66,-7.495680618591862],[121,213,67,-7.474515719035842],[121,213,68,-7.466940229379988],[121,213,69,-7.478316690402265],[121,213,70,-7.508308908558785],[121,213,71,-7.545120908732955],[121,213,72,-7.585994415163891],[121,213,73,-7.618580241077682],[121,213,74,-7.634320727563253],[121,213,75,-7.6338558794867435],[121,213,76,-7.633229164390828],[121,213,77,-7.6774233082752295],[121,213,78,-7.6691772340627145],[121,213,79,-7.620539564023243],[121,214,64,-7.568369474335397],[121,214,65,-7.563824457102886],[121,214,66,-7.545544596164294],[121,214,67,-7.523563479524725],[121,214,68,-7.515426502940469],[121,214,69,-7.529089299827562],[121,214,70,-7.557439408998975],[121,214,71,-7.593900648579481],[121,214,72,-7.636432320393609],[121,214,73,-7.667485988473848],[121,214,74,-7.68564596596569],[121,214,75,-7.685880141570179],[121,214,76,-7.693740847600058],[121,214,77,-7.732542581559298],[121,214,78,-7.7222883389353685],[121,214,79,-7.670558728472254],[121,215,64,-7.6187391785074],[121,215,65,-7.613795421181286],[121,215,66,-7.595007262029585],[121,215,67,-7.5740331727775025],[121,215,68,-7.568513422788265],[121,215,69,-7.578180803315632],[121,215,70,-7.606919372262192],[121,215,71,-7.645220387687925],[121,215,72,-7.686726815379051],[121,215,73,-7.720412307459041],[121,215,74,-7.738992878354637],[121,215,75,-7.737557987274952],[121,215,76,-7.7485852087144815],[121,215,77,-7.774567343273284],[121,215,78,-7.769393121476574],[121,215,79,-7.718585710689478],[121,216,64,-7.665349838151148],[121,216,65,-7.663028043525054],[121,216,66,-7.644499817233401],[121,216,67,-7.6234236133011475],[121,216,68,-7.6165607488695],[121,216,69,-7.627222404015424],[121,216,70,-7.6575936917601695],[121,216,71,-7.693920068729699],[121,216,72,-7.738354906115248],[121,216,73,-7.773612054749646],[121,216,74,-7.790765131177596],[121,216,75,-7.796625503193833],[121,216,76,-7.830736204353594],[121,216,77,-7.848197339064423],[121,216,78,-7.820915120510927],[121,216,79,-7.768145648277095],[121,217,64,-7.705838579375838],[121,217,65,-7.703063126753676],[121,217,66,-7.691015291365312],[121,217,67,-7.673005971993804],[121,217,68,-7.664323012833209],[121,217,69,-7.675920867181375],[121,217,70,-7.709825152490464],[121,217,71,-7.748384320104057],[121,217,72,-7.796035723809309],[121,217,73,-7.833770189952388],[121,217,74,-7.8525016237099585],[121,217,75,-7.871802306437851],[121,217,76,-7.8944492221477995],[121,217,77,-7.910158077836033],[121,217,78,-7.8684712449206895],[121,217,79,-7.815821903503375],[121,218,64,-7.7604237303316905],[121,218,65,-7.757351686305344],[121,218,66,-7.744865968635963],[121,218,67,-7.725786682642182],[121,218,68,-7.718520837332828],[121,218,69,-7.730753863078648],[121,218,70,-7.762642699018737],[121,218,71,-7.80135853629069],[121,218,72,-7.849027986157071],[121,218,73,-7.887416177991765],[121,218,74,-7.906380759223801],[121,218,75,-7.930805668482089],[121,218,76,-7.946513668884075],[121,218,77,-7.96395219147793],[121,218,78,-7.922766279514686],[121,218,79,-7.871367850153003],[121,219,64,-7.810493545459824],[121,219,65,-7.806779847386664],[121,219,66,-7.792869010212655],[121,219,67,-7.775332543073324],[121,219,68,-7.765824245174747],[121,219,69,-7.781202774099943],[121,219,70,-7.812301348735069],[121,219,71,-7.849930911996612],[121,219,72,-7.897571231517383],[121,219,73,-7.936605382177511],[121,219,74,-7.9546088589526365],[121,219,75,-7.995521103474606],[121,219,76,-8.007200864962902],[121,219,77,-8.024886423991047],[121,219,78,-7.984465023052095],[121,219,79,-7.9331614941661845],[121,220,64,-7.8553633732683785],[121,220,65,-7.852323055066441],[121,220,66,-7.835556351757377],[121,220,67,-7.814622772183999],[121,220,68,-7.804953883373822],[121,220,69,-7.817997007299018],[121,220,70,-7.845758273013507],[121,220,71,-7.883213112817388],[121,220,72,-7.931565588687776],[121,220,73,-7.971361327171598],[121,220,74,-8.001263746218259],[121,220,75,-8.042122895969563],[121,220,76,-8.06392176357367],[121,220,77,-8.07451115844892],[121,220,78,-8.036341592409702],[121,220,79,-7.983855453055785],[121,221,64,-7.903820408887987],[121,221,65,-7.902061611707727],[121,221,66,-7.883266194555215],[121,221,67,-7.86189198235565],[121,221,68,-7.855283520660912],[121,221,69,-7.864186824558181],[121,221,70,-7.891402318573783],[121,221,71,-7.931816142183399],[121,221,72,-7.980866417269041],[121,221,73,-8.036078221347786],[121,221,74,-8.1099425966303],[121,221,75,-8.150667826741634],[121,221,76,-8.155821186524108],[121,221,77,-8.122538643120912],[121,221,78,-8.083728138057538],[121,221,79,-8.031816580022426],[121,222,64,-7.954456253795061],[121,222,65,-7.952088057421392],[121,222,66,-7.9314295100860965],[121,222,67,-7.911021203643977],[121,222,68,-7.90318412932789],[121,222,69,-7.909960124313532],[121,222,70,-7.938674552733906],[121,222,71,-7.9820209382947835],[121,222,72,-8.032566150244891],[121,222,73,-8.097318289263475],[121,222,74,-8.163242207427704],[121,222,75,-8.203278638276114],[121,222,76,-8.19975362212965],[121,222,77,-8.167285390146745],[121,222,78,-8.124237353183014],[121,222,79,-8.074256261416377],[121,223,64,-8.010974825100112],[121,223,65,-8.004213561770964],[121,223,66,-7.985379851754407],[121,223,67,-7.9647358077094275],[121,223,68,-7.953948108637073],[121,223,69,-7.961310925302013],[121,223,70,-7.990874213590457],[121,223,71,-8.03211190917011],[121,223,72,-8.08597488834028],[121,223,73,-8.118055114123083],[121,223,74,-8.194739594228407],[121,223,75,-8.237354449423679],[121,223,76,-8.248784865068814],[121,223,77,-8.213184240958707],[121,223,78,-8.168311734319097],[121,223,79,-8.118958691516205],[121,224,64,-8.060070556812372],[121,224,65,-8.052674167768156],[121,224,66,-8.034392469333836],[121,224,67,-8.014331205194813],[121,224,68,-8.001291763472121],[121,224,69,-8.0097860157592],[121,224,70,-8.040250301819619],[121,224,71,-8.081911198653025],[121,224,72,-8.135904679342842],[121,224,73,-8.1712717594517],[121,224,74,-8.256106781765531],[121,224,75,-8.29511748081053],[121,224,76,-8.300298361171288],[121,224,77,-8.263270442087585],[121,224,78,-8.22011974749296],[121,224,79,-8.16898919135248],[121,225,64,-8.118370316445924],[121,225,65,-8.1054919029172],[121,225,66,-8.079687642900154],[121,225,67,-8.055873157051163],[121,225,68,-8.039522904673065],[121,225,69,-8.045877683247003],[121,225,70,-8.079909785424638],[121,225,71,-8.12324360943246],[121,225,72,-8.175224119104522],[121,225,73,-8.216823406942359],[121,225,74,-8.305529606369925],[121,225,75,-8.35263420990523],[121,225,76,-8.351937236403877],[121,225,77,-8.313567235660681],[121,225,78,-8.272552085104644],[121,225,79,-8.22096642169523],[121,226,64,-8.17472230108676],[121,226,65,-8.161165125256794],[121,226,66,-8.133022984692849],[121,226,67,-8.109666299901075],[121,226,68,-8.093986429957882],[121,226,69,-8.099983794753108],[121,226,70,-8.13400485687815],[121,226,71,-8.177354306029413],[121,226,72,-8.225996659857465],[121,226,73,-8.25553839394808],[121,226,74,-8.340192525354535],[121,226,75,-8.386137500267006],[121,226,76,-8.401178375074522],[121,226,77,-8.364476924152902],[121,226,78,-8.323906450060287],[121,226,79,-8.272297765208256],[121,227,64,-8.225848879919386],[121,227,65,-8.211669056210427],[121,227,66,-8.183967367354635],[121,227,67,-8.160694789907671],[121,227,68,-8.145090535723376],[121,227,69,-8.15047247035471],[121,227,70,-8.184290061399004],[121,227,71,-8.225172813968069],[121,227,72,-8.274793249045585],[121,227,73,-8.303519929579702],[121,227,74,-8.399086776509504],[121,227,75,-8.44129564614886],[121,227,76,-8.457963941819433],[121,227,77,-8.422968235498601],[121,227,78,-8.38182749707506],[121,227,79,-8.333397088351338],[121,228,64,-8.260576231679588],[121,228,65,-8.249335237425036],[121,228,66,-8.223835265054221],[121,228,67,-8.199740266949366],[121,228,68,-8.184263535993322],[121,228,69,-8.191565885914123],[121,228,70,-8.221026554240439],[121,228,71,-8.262505089857685],[121,228,72,-8.310368736520857],[121,228,73,-8.340168804829267],[121,228,74,-8.452554301466854],[121,228,75,-8.491560432486356],[121,228,76,-8.509140777158342],[121,228,77,-8.474209294390661],[121,228,78,-8.431430375816904],[121,228,79,-8.383041777798061],[121,229,64,-8.297494764070926],[121,229,65,-8.294728412916859],[121,229,66,-8.27620487568175],[121,229,67,-8.259890345024635],[121,229,68,-8.245831837530092],[121,229,69,-8.252993738570725],[121,229,70,-8.277978301297152],[121,229,71,-8.32149342020054],[121,229,72,-8.368977069566336],[121,229,73,-8.466633444299399],[121,229,74,-8.569510437771427],[121,229,75,-8.574944046731968],[121,229,76,-8.558441979462629],[121,229,77,-8.527267144419291],[121,229,78,-8.48431699452473],[121,229,79,-8.434075308796281],[121,230,64,-8.345746225991194],[121,230,65,-8.343033759296775],[121,230,66,-8.32420577645743],[121,230,67,-8.310376861894586],[121,230,68,-8.299020280780839],[121,230,69,-8.301625048488596],[121,230,70,-8.325166057571735],[121,230,71,-8.368245302807832],[121,230,72,-8.418823245253865],[121,230,73,-8.516870894161555],[121,230,74,-8.617079810355994],[121,230,75,-8.62500767405979],[121,230,76,-8.608318373599918],[121,230,77,-8.574435772545137],[121,230,78,-8.53343554145527],[121,230,79,-8.486743756800095],[121,231,64,-8.397909892144966],[121,231,65,-8.396320670028366],[121,231,66,-8.380089540567509],[121,231,67,-8.363484303472749],[121,231,68,-8.350830397839891],[121,231,69,-8.35452190717704],[121,231,70,-8.378940575183696],[121,231,71,-8.419420104131534],[121,231,72,-8.48521099546142],[121,231,73,-8.582056004935485],[121,231,74,-8.651847327166877],[121,231,75,-8.670268691229525],[121,231,76,-8.654312896893371],[121,231,77,-8.619671839007166],[121,231,78,-8.578987886426209],[121,231,79,-8.533309698274778],[121,232,64,-8.446092919888944],[121,232,65,-8.44433437456881],[121,232,66,-8.431436208837432],[121,232,67,-8.410807364455243],[121,232,68,-8.399114360632137],[121,232,69,-8.404187994813384],[121,232,70,-8.432143975783585],[121,232,71,-8.472167074805643],[121,232,72,-8.543782004480047],[121,232,73,-8.6321378369702],[121,232,74,-8.698627384658952],[121,232,75,-8.718751822178396],[121,232,76,-8.703206395222164],[121,232,77,-8.668581413399792],[121,232,78,-8.628420492885814],[121,232,79,-8.582497195634154],[121,233,64,-8.496234256755534],[121,233,65,-8.493563696680608],[121,233,66,-8.479286710073016],[121,233,67,-8.45945594991825],[121,233,68,-8.450063215014245],[121,233,69,-8.454035676633952],[121,233,70,-8.483181346943603],[121,233,71,-8.52460842254512],[121,233,72,-8.60275541961937],[121,233,73,-8.691232370557035],[121,233,74,-8.756079286850936],[121,233,75,-8.770297528504218],[121,233,76,-8.756070994042018],[121,233,77,-8.723136706267864],[121,233,78,-8.683394910851526],[121,233,79,-8.636699215383054],[121,234,64,-8.548190756453097],[121,234,65,-8.546495598916275],[121,234,66,-8.53184851055507],[121,234,67,-8.509857133830417],[121,234,68,-8.500403507940813],[121,234,69,-8.506696367480124],[121,234,70,-8.53531751824221],[121,234,71,-8.578133619240479],[121,234,72,-8.639317973564262],[121,234,73,-8.72417484270793],[121,234,74,-8.791859352704975],[121,234,75,-8.82074275841316],[121,234,76,-8.805135756548523],[121,234,77,-8.775730401090064],[121,234,78,-8.737226319901055],[121,234,79,-8.686800506297228],[121,235,64,-8.594319805346663],[121,235,65,-8.594941830327883],[121,235,66,-8.58213113828057],[121,235,67,-8.558288153502998],[121,235,68,-8.545152989054976],[121,235,69,-8.555211161084301],[121,235,70,-8.582687388533303],[121,235,71,-8.623301749813798],[121,235,72,-8.675841776969381],[121,235,73,-8.708466971570124],[121,235,74,-8.738265190380615],[121,235,75,-8.762392742457473],[121,235,76,-8.821628075400005],[121,235,77,-8.835035662378592],[121,235,78,-8.794810221740162],[121,235,79,-8.743251754208668],[121,236,64,-8.65575390660805],[121,236,65,-8.660336372231932],[121,236,66,-8.649159114340561],[121,236,67,-8.624882272486667],[121,236,68,-8.611196535797351],[121,236,69,-8.622388481904144],[121,236,70,-8.651161627701212],[121,236,71,-8.690354212882452],[121,236,72,-8.74549699531363],[121,236,73,-8.78067052695459],[121,236,74,-8.803934934864655],[121,236,75,-8.82538329339466],[121,236,76,-8.877661689049896],[121,236,77,-8.891732912810212],[121,236,78,-8.852522501585147],[121,236,79,-8.799610634295382],[121,237,64,-8.70027093325136],[121,237,65,-8.70402504657548],[121,237,66,-8.693552363138247],[121,237,67,-8.672139696570506],[121,237,68,-8.659103545571046],[121,237,69,-8.667697226789308],[121,237,70,-8.698372469288032],[121,237,71,-8.741466271008779],[121,237,72,-8.79687621379326],[121,237,73,-8.835691637559904],[121,237,74,-8.878627212598632],[121,237,75,-8.9045724515619],[121,237,76,-8.957360577811643],[121,237,77,-8.94122965388621],[121,237,78,-8.902020491818586],[121,237,79,-8.850949192268587],[121,238,64,-8.75032872761935],[121,238,65,-8.753825359318144],[121,238,66,-8.742766572321182],[121,238,67,-8.722549754441516],[121,238,68,-8.710108449713655],[121,238,69,-8.717418171165237],[121,238,70,-8.749969774749447],[121,238,71,-8.79294016526342],[121,238,72,-8.846199377468404],[121,238,73,-8.883910419021142],[121,238,74,-8.930961191854056],[121,238,75,-8.98347918730703],[121,238,76,-9.010080756454458],[121,238,77,-8.984186721209447],[121,238,78,-8.946229278474242],[121,238,79,-8.897464322474464],[121,239,64,-8.806602718613552],[121,239,65,-8.806935748649938],[121,239,66,-8.797453323371865],[121,239,67,-8.776914218915197],[121,239,68,-8.763408734702546],[121,239,69,-8.77006060240488],[121,239,70,-8.803748312558874],[121,239,71,-8.846764526322657],[121,239,72,-8.897206600342924],[121,239,73,-8.933058818270421],[121,239,74,-8.969569199984518],[121,239,75,-9.019266172347393],[121,239,76,-9.056874249574117],[121,239,77,-9.028295882106605],[121,239,78,-8.989564628887246],[121,239,79,-8.940805101169673],[121,240,64,-8.855353844163034],[121,240,65,-8.853517644562132],[121,240,66,-8.844392515457203],[121,240,67,-8.823655009275868],[121,240,68,-8.811617565765957],[121,240,69,-8.817255698457572],[121,240,70,-8.850115046805842],[121,240,71,-8.897203884388828],[121,240,72,-8.9451701570756],[121,240,73,-8.978391370548794],[121,240,74,-9.01375098228739],[121,240,75,-9.066828945765259],[121,240,76,-9.102434256477979],[121,240,77,-9.07488335545908],[121,240,78,-9.035152087648404],[121,240,79,-8.986253606152157],[121,241,64,-8.912168379700304],[121,241,65,-8.908442964673595],[121,241,66,-8.891550623039803],[121,241,67,-8.869683853580367],[121,241,68,-8.858059327694335],[121,241,69,-8.864605794893748],[121,241,70,-8.8947268915171],[121,241,71,-8.938275960765067],[121,241,72,-8.98596719707351],[121,241,73,-9.01631980906659],[121,241,74,-9.023755352771975],[121,241,75,-9.014679548789337],[121,241,76,-8.992704904737694],[121,241,77,-8.959037778327454],[121,241,78,-8.919837306108855],[121,241,79,-8.945329769027955],[121,242,64,-8.966382742434474],[121,242,65,-8.959163289025103],[121,242,66,-8.939217739924416],[121,242,67,-8.918604200347248],[121,242,68,-8.906107590081668],[121,242,69,-8.913622509730654],[121,242,70,-8.942703538070875],[121,242,71,-8.986688042252029],[121,242,72,-9.035135389537016],[121,242,73,-9.067798745147728],[121,242,74,-9.075184828833978],[121,242,75,-9.064057788376774],[121,242,76,-9.040835263494916],[121,242,77,-9.00684699466834],[121,242,78,-8.967784476580766],[121,242,79,-8.987221125100572],[121,243,64,-9.014464540162235],[121,243,65,-9.005227091436076],[121,243,66,-8.982245002588371],[121,243,67,-8.961563459951599],[121,243,68,-8.952115177467052],[121,243,69,-8.95889930698986],[121,243,70,-8.987205686198523],[121,243,71,-9.031566334455453],[121,243,72,-9.080016691698786],[121,243,73,-9.112952878405894],[121,243,74,-9.120916263374859],[121,243,75,-9.110776279600294],[121,243,76,-9.087241559398677],[121,243,77,-9.051885210682666],[121,243,78,-9.01665942984364],[121,243,79,-9.029444195901101],[121,244,64,-9.046521503724238],[121,244,65,-9.031329536090206],[121,244,66,-9.002009031848099],[121,244,67,-8.974721376543647],[121,244,68,-8.959649471276004],[121,244,69,-8.965541592893704],[121,244,70,-8.992134560194456],[121,244,71,-9.034862886345731],[121,244,72,-9.081691223811573],[121,244,73,-9.114320868768774],[121,244,74,-9.12115696779752],[121,244,75,-9.110726612110865],[121,244,76,-9.090558883026873],[121,244,77,-9.05520840555173],[121,244,78,-9.017745003178323],[121,244,79,-9.043887800088616],[121,245,64,-9.094125201881422],[121,245,65,-9.07889420780517],[121,245,66,-9.046119740858988],[121,245,67,-9.015690011990857],[121,245,68,-9.00218497589779],[121,245,69,-9.011430509122514],[121,245,70,-9.037441248315371],[121,245,71,-9.079339865876493],[121,245,72,-9.127731248971124],[121,245,73,-9.160775393757682],[121,245,74,-9.165619539044991],[121,245,75,-9.158540153719745],[121,245,76,-9.137207223024944],[121,245,77,-9.10093433633471],[121,245,78,-9.063276201716384],[121,245,79,-9.088533720882015],[121,246,64,-9.136964883437612],[121,246,65,-9.122557032428395],[121,246,66,-9.089147455010306],[121,246,67,-9.060679006454608],[121,246,68,-9.044638558522516],[121,246,69,-9.052908225752969],[121,246,70,-9.082765484494484],[121,246,71,-9.12452078353268],[121,246,72,-9.175136883159638],[121,246,73,-9.207381135485582],[121,246,74,-9.212847936769522],[121,246,75,-9.206113177881207],[121,246,76,-9.183922930589016],[121,246,77,-9.148339508079458],[121,246,78,-9.110410366369104],[121,246,79,-9.139972673624808],[121,247,64,-9.184453385585265],[121,247,65,-9.172311356983853],[121,247,66,-9.140814193211925],[121,247,67,-9.1140121964383],[121,247,68,-9.093997545461303],[121,247,69,-9.101020742235088],[121,247,70,-9.12914679254037],[121,247,71,-9.170908019839619],[121,247,72,-9.221749507511753],[121,247,73,-9.255893474744179],[121,247,74,-9.26362554052619],[121,247,75,-9.252451538387735],[121,247,76,-9.230372224164833],[121,247,77,-9.196715025454862],[121,247,78,-9.155439007329413],[121,247,79,-9.166853128601959],[121,248,64,-9.22633274172296],[121,248,65,-9.216360895575392],[121,248,66,-9.187011844427003],[121,248,67,-9.160004063045504],[121,248,68,-9.140638441699021],[121,248,69,-9.146802717116428],[121,248,70,-9.173736538540746],[121,248,71,-9.21584550455301],[121,248,72,-9.268616834269801],[121,248,73,-9.303982669557163],[121,248,74,-9.313152833110903],[121,248,75,-9.299820129254236],[121,248,76,-9.276713864657713],[121,248,77,-9.246430433158604],[121,248,78,-9.207380630887773],[121,248,79,-9.211720624434673],[121,249,64,-9.275470836323045],[121,249,65,-9.259996499883341],[121,249,66,-9.228446984696415],[121,249,67,-9.19701987859053],[121,249,68,-9.179385327628705],[121,249,69,-9.182324800053335],[121,249,70,-9.210302769970426],[121,249,71,-9.25689888903541],[121,249,72,-9.31399034132916],[121,249,73,-9.351826269277003],[121,249,74,-9.361522498057779],[121,249,75,-9.349164001913627],[121,249,76,-9.326347871426794],[121,249,77,-9.295104678535761],[121,249,78,-9.25852656660924],[121,249,79,-9.302583430818828],[121,250,64,-9.325126578732286],[121,250,65,-9.309297794943577],[121,250,66,-9.279293973373477],[121,250,67,-9.244107904887194],[121,250,68,-9.226881290526407],[121,250,69,-9.232408955863967],[121,250,70,-9.258982960772764],[121,250,71,-9.305578520840786],[121,250,72,-9.363976606429366],[121,250,73,-9.401766395359578],[121,250,74,-9.41283306620214],[121,250,75,-9.398013340908443],[121,250,76,-9.379812655907475],[121,250,77,-9.346858913557268],[121,250,78,-9.3407564540286],[121,250,79,-9.327122761282908],[121,251,64,-9.36836279632133],[121,251,65,-9.354471145318227],[121,251,66,-9.324360026027993],[121,251,67,-9.291515923356966],[121,251,68,-9.273978498041808],[121,251,69,-9.277744300769406],[121,251,70,-9.304521934157743],[121,251,71,-9.351507772999325],[121,251,72,-9.417851780156763],[121,251,73,-9.448880405644664],[121,251,74,-9.459931410069071],[121,251,75,-9.447095427913023],[121,251,76,-9.423956237178619],[121,251,77,-9.397337283905266],[121,251,78,-9.378195602420117],[121,251,79,-9.36657429600881],[121,252,64,-9.407850359589432],[121,252,65,-9.39131243173489],[121,252,66,-9.363117353433413],[121,252,67,-9.331822128123186],[121,252,68,-9.313732328081842],[121,252,69,-9.315019846379851],[121,252,70,-9.344533803690208],[121,252,71,-9.393565092343746],[121,252,72,-9.458724715521948],[121,252,73,-9.486984024254678],[121,252,74,-9.498077864988746],[121,252,75,-9.488109076247333],[121,252,76,-9.464253640814995],[121,252,77,-9.444257280184539],[121,252,78,-9.432678609184226],[121,252,79,-9.403578270264811],[121,253,64,-9.443060152900102],[121,253,65,-9.433346503593253],[121,253,66,-9.411154562620641],[121,253,67,-9.386702963228768],[121,253,68,-9.371040255895064],[121,253,69,-9.371890759977825],[121,253,70,-9.399790685629172],[121,253,71,-9.446393204786581],[121,253,72,-9.499803754949262],[121,253,73,-9.536191305964733],[121,253,74,-9.545842205351951],[121,253,75,-9.534889766562326],[121,253,76,-9.517357558537004],[121,253,77,-9.520906879711573],[121,253,78,-9.50088268896195],[121,253,79,-9.457300023351154],[121,254,64,-9.405138747570868],[121,254,65,-9.403400768524119],[121,254,66,-9.388334159219525],[121,254,67,-9.373115953186709],[121,254,68,-9.362799685905415],[121,254,69,-9.372420397118677],[121,254,70,-9.411190130994722],[121,254,71,-9.468066494503397],[121,254,72,-9.528004419960007],[121,254,73,-9.573814073484558],[121,254,74,-9.595412249111464],[121,254,75,-9.590489475901185],[121,254,76,-9.58714906788941],[121,254,77,-9.592717922271124],[121,254,78,-9.56884944129608],[121,254,79,-9.529796830899942],[121,255,64,-9.45409006221149],[121,255,65,-9.448978063808639],[121,255,66,-9.434363279332308],[121,255,67,-9.41781999151505],[121,255,68,-9.407017337166842],[121,255,69,-9.41993764457244],[121,255,70,-9.455708472901234],[121,255,71,-9.509563108977614],[121,255,72,-9.574557159356957],[121,255,73,-9.621852909055724],[121,255,74,-9.643124231493774],[121,255,75,-9.639009003630333],[121,255,76,-9.628364982114798],[121,255,77,-9.642800125626168],[121,255,78,-9.60892772854221],[121,255,79,-9.57401714139449],[121,256,64,-9.50244784061686],[121,256,65,-9.501361556375842],[121,256,66,-9.483665857828818],[121,256,67,-9.46328082591864],[121,256,68,-9.454503927939061],[121,256,69,-9.46881543078589],[121,256,70,-9.503259304694087],[121,256,71,-9.558892848375066],[121,256,72,-9.62410867913853],[121,256,73,-9.669498702390603],[121,256,74,-9.690028192047496],[121,256,75,-9.687099626913598],[121,256,76,-9.676040661254282],[121,256,77,-9.69603324997813],[121,256,78,-9.655282432621807],[121,256,79,-9.62451822904776],[121,257,64,-9.550660119969193],[121,257,65,-9.55159708198585],[121,257,66,-9.531887757789178],[121,257,67,-9.51049549500843],[121,257,68,-9.50009399260372],[121,257,69,-9.515872185927618],[121,257,70,-9.575760851629244],[121,257,71,-9.638033290377836],[121,257,72,-9.672747701507381],[121,257,73,-9.71881708263573],[121,257,74,-9.737143517020458],[121,257,75,-9.750819832589649],[121,257,76,-9.761936935100092],[121,257,77,-9.780493759033183],[121,257,78,-9.753069972662365],[121,257,79,-9.710444950174628],[121,258,64,-9.602993989017609],[121,258,65,-9.60268425966323],[121,258,66,-9.582576207529625],[121,258,67,-9.561552661888411],[121,258,68,-9.552253060846388],[121,258,69,-9.56780557759395],[121,258,70,-9.60383056082733],[121,258,71,-9.65602893606561],[121,258,72,-9.72204684129915],[121,258,73,-9.77068510122193],[121,258,74,-9.788586233453502],[121,258,75,-9.797142309435888],[121,258,76,-9.817822414899345],[121,258,77,-9.835148951203475],[121,258,78,-9.815897294612224],[121,258,79,-9.776192584974016],[121,259,64,-9.650179930977071],[121,259,65,-9.65102455286813],[121,259,66,-9.63133452610831],[121,259,67,-9.60893716697419],[121,259,68,-9.599001586066354],[121,259,69,-9.614273502566267],[121,259,70,-9.650657230019565],[121,259,71,-9.705782529760246],[121,259,72,-9.767720093777916],[121,259,73,-9.817279214948424],[121,259,74,-9.83825773123671],[121,259,75,-9.839186665249285],[121,259,76,-9.854044154368829],[121,259,77,-9.849933680860488],[121,259,78,-9.84391387359544],[121,259,79,-9.817069765041273],[121,260,64,-9.812547118396367],[121,260,65,-9.818514148611039],[121,260,66,-9.801727676090833],[121,260,67,-9.784109495748858],[121,260,68,-9.775556327969745],[121,260,69,-9.793054327221583],[121,260,70,-9.830248679335828],[121,260,71,-9.890484140244308],[121,260,72,-9.952903150426234],[121,260,73,-10.002511539353705],[121,260,74,-10.024598487712765],[121,260,75,-10.023846747346091],[121,260,76,-10.025740645551863],[121,260,77,-10.008488170694045],[121,260,78,-9.984485584088885],[121,260,79,-9.94679534391577],[121,261,64,-9.870641631060542],[121,261,65,-9.872609613416275],[121,261,66,-9.851578174976643],[121,261,67,-9.830166891941955],[121,261,68,-9.820205845947696],[121,261,69,-9.838290684908834],[121,261,70,-9.873026382096446],[121,261,71,-9.931190542000005],[121,261,72,-9.9960750671427],[121,261,73,-10.043891446975328],[121,261,74,-10.065613883657136],[121,261,75,-10.067782682890275],[121,261,76,-10.073965791940157],[121,261,77,-10.06206602393166],[121,261,78,-10.036844261778295],[121,261,79,-10.002935396569706],[121,262,64,-9.926194335936227],[121,262,65,-9.92633029545831],[121,262,66,-9.905442770251089],[121,262,67,-9.88269480337],[121,262,68,-9.8735860636584],[121,262,69,-9.889910590633749],[121,262,70,-9.925902910985256],[121,262,71,-9.980706819933866],[121,262,72,-10.046557525267854],[121,262,73,-10.096168391435626],[121,262,74,-10.116196626298484],[121,262,75,-10.125103280493446],[121,262,76,-10.128901426526175],[121,262,77,-10.125894281582527],[121,262,78,-10.102341354585986],[121,262,79,-10.069727874491996],[121,263,64,-9.971487177860716],[121,263,65,-9.974110606421538],[121,263,66,-9.955365382573497],[121,263,67,-9.931452306710872],[121,263,68,-9.921730489770022],[121,263,69,-9.938550315797336],[121,263,70,-9.974725892115659],[121,263,71,-10.027956231905325],[121,263,72,-10.094474221503202],[121,263,73,-10.146083996838616],[121,263,74,-10.166324797484252],[121,263,75,-10.170853869504981],[121,263,76,-10.177238349158372],[121,263,77,-10.174268172956152],[121,263,78,-10.148457301878825],[121,263,79,-10.116144968950287],[121,264,64,-10.015143070592217],[121,264,65,-10.018590349826393],[121,264,66,-10.00084464381991],[121,264,67,-9.979087497218176],[121,264,68,-9.969829030900868],[121,264,69,-9.98578383789882],[121,264,70,-10.02209231780677],[121,264,71,-10.07540635798321],[121,264,72,-10.14446176576268],[121,264,73,-10.195382346957047],[121,264,74,-10.21642996740287],[121,264,75,-10.22426429329654],[121,264,76,-10.232858477163747],[121,264,77,-10.228031003335365],[121,264,78,-10.196664502157766],[121,264,79,-10.168372464256777],[121,265,64,-10.051823898299448],[121,265,65,-10.056642244254876],[121,265,66,-10.042726460373217],[121,265,67,-10.021283933240388],[121,265,68,-10.014659664686686],[121,265,69,-10.030882652568412],[121,265,70,-10.069876199959763],[121,265,71,-10.126832289135674],[121,265,72,-10.221331111262339],[121,265,73,-10.301217372359945],[121,265,74,-10.343196420762467],[121,265,75,-10.372660097104582],[121,265,76,-10.366673400301803],[121,265,77,-10.339239678619657],[121,265,78,-10.299521385770174],[121,265,79,-10.249335905609929],[121,266,64,-10.099597598072462],[121,266,65,-10.103076332793233],[121,266,66,-10.08978515955043],[121,266,67,-10.069738617378945],[121,266,68,-10.062357443551821],[121,266,69,-10.077020704155867],[121,266,70,-10.116794232576073],[121,266,71,-10.17666746898889],[121,266,72,-10.259114433180281],[121,266,73,-10.335584204064226],[121,266,74,-10.383362527232395],[121,266,75,-10.412052203506727],[121,266,76,-10.408269382183434],[121,266,77,-10.384530219062388],[121,266,78,-10.345791412503567],[121,266,79,-10.294252378696168],[121,267,64,-10.143608714147296],[121,267,65,-10.147204670806454],[121,267,66,-10.137303651058735],[121,267,67,-10.113873377644586],[121,267,68,-10.107561056518609],[121,267,69,-10.123275148800307],[121,267,70,-10.16133969729713],[121,267,71,-10.223260412598618],[121,267,72,-10.307315498813411],[121,267,73,-10.389536974033684],[121,267,74,-10.443051361881535],[121,267,75,-10.465774882245807],[121,267,76,-10.462205992153047],[121,267,77,-10.437176430525962],[121,267,78,-10.401714305447252],[121,267,79,-10.347958306638334],[121,268,64,-10.185499505692633],[121,268,65,-10.189972312817702],[121,268,66,-10.178103636953626],[121,268,67,-10.152983183625915],[121,268,68,-10.146279613285328],[121,268,69,-10.16304910612629],[121,268,70,-10.201483764277068],[121,268,71,-10.275309589012881],[121,268,72,-10.381927797341293],[121,268,73,-10.456699245574276],[121,268,74,-10.495681361956835],[121,268,75,-10.503073167931722],[121,268,76,-10.505006458183384],[121,268,77,-10.482739087452957],[121,268,78,-10.446519769533351],[121,268,79,-10.391842867825112],[121,269,64,-10.227192534516496],[121,269,65,-10.235809309263923],[121,269,66,-10.220925259211402],[121,269,67,-10.197659235646903],[121,269,68,-10.192297288524273],[121,269,69,-10.210474804100341],[121,269,70,-10.248523177900713],[121,269,71,-10.322214591611957],[121,269,72,-10.433508042493683],[121,269,73,-10.508726656235607],[121,269,74,-10.555079880045778],[121,269,75,-10.559488885488767],[121,269,76,-10.55963890250438],[121,269,77,-10.529985443363879],[121,269,78,-10.49122359825169],[121,269,79,-10.438522038514705],[121,270,64,-10.276771224300527],[121,270,65,-10.282485286999815],[121,270,66,-10.268232348482188],[121,270,67,-10.249473254799645],[121,270,68,-10.242046271297435],[121,270,69,-10.258129709060954],[121,270,70,-10.298642529261999],[121,270,71,-10.371748190206269],[121,270,72,-10.478560207181786],[121,270,73,-10.553992214966721],[121,270,74,-10.602287486520838],[121,270,75,-10.610337103869117],[121,270,76,-10.60383565936174],[121,270,77,-10.569053237316698],[121,270,78,-10.528865820641194],[121,270,79,-10.479134027206385],[121,271,64,-10.32019482207999],[121,271,65,-10.326271890233159],[121,271,66,-10.311343456483437],[121,271,67,-10.297191670939789],[121,271,68,-10.286232532268896],[121,271,69,-10.301367017312003],[121,271,70,-10.342475872415333],[121,271,71,-10.405459492659535],[121,271,72,-10.52402548653631],[121,271,73,-10.591141358720186],[121,271,74,-10.647350286067295],[121,271,75,-10.656602457461045],[121,271,76,-10.651708622952674],[121,271,77,-10.61527572138046],[121,271,78,-10.575656591164286],[121,271,79,-10.523946856240412],[121,272,64,-10.369750532364494],[121,272,65,-10.372830003223099],[121,272,66,-10.357119652528034],[121,272,67,-10.34245766570476],[121,272,68,-10.331934769457057],[121,272,69,-10.345190984008784],[121,272,70,-10.385207861604727],[121,272,71,-10.450505788690066],[121,272,72,-10.569203258265084],[121,272,73,-10.636652378569677],[121,272,74,-10.702571015107878],[121,272,75,-10.708811185121261],[121,272,76,-10.701903856733278],[121,272,77,-10.6667740214477],[121,272,78,-10.626111197045939],[121,272,79,-10.573164846561372],[121,273,64,-10.408626023212708],[121,273,65,-10.4141918152249],[121,273,66,-10.400836629239626],[121,273,67,-10.385403187829176],[121,273,68,-10.378778794306253],[121,273,69,-10.392416653691118],[121,273,70,-10.428637721425542],[121,273,71,-10.487326151753303],[121,273,72,-10.571971488164191],[121,273,73,-10.630343243893355],[121,273,74,-10.664599808464404],[121,273,75,-10.666118757794662],[121,273,76,-10.647669350254878],[121,273,77,-10.617539617858913],[121,273,78,-10.577162334033876],[121,273,79,-10.528349045560233],[121,274,64,-10.458304130307138],[121,274,65,-10.46252482055496],[121,274,66,-10.449741833318779],[121,274,67,-10.434058759105271],[121,274,68,-10.424887384001247],[121,274,69,-10.441436519025478],[121,274,70,-10.477891821562794],[121,274,71,-10.537011179850913],[121,274,72,-10.611499408578606],[121,274,73,-10.67543164539725],[121,274,74,-10.710883942722903],[121,274,75,-10.714974767142106],[121,274,76,-10.695983757515119],[121,274,77,-10.664826992071195],[121,274,78,-10.62581923901394],[121,274,79,-10.575336290049803],[121,275,64,-10.506072294989456],[121,275,65,-10.509987090313983],[121,275,66,-10.49727432901725],[121,275,67,-10.480727568695718],[121,275,68,-10.468780446988092],[121,275,69,-10.485486136593902],[121,275,70,-10.525146719503136],[121,275,71,-10.583045546891048],[121,275,72,-10.659809320316903],[121,275,73,-10.726779818748271],[121,275,74,-10.765100624742683],[121,275,75,-10.769943452157426],[121,275,76,-10.752468375286899],[121,275,77,-10.719478103475335],[121,275,78,-10.679332581840637],[121,275,79,-10.629218771936078],[121,276,64,-10.546491102106097],[121,276,65,-10.550858324836513],[121,276,66,-10.535097522594423],[121,276,67,-10.517926789527147],[121,276,68,-10.50790418676896],[121,276,69,-10.522122590313861],[121,276,70,-10.564699828008498],[121,276,71,-10.621090750101203],[121,276,72,-10.698159601136256],[121,276,73,-10.76544917476076],[121,276,74,-10.810814760456529],[121,276,75,-10.819702387725123],[121,276,76,-10.804503622118228],[121,276,77,-10.770288161676664],[121,276,78,-10.72891985819951],[121,276,79,-10.679021361866571],[121,277,64,-10.601240540544252],[121,277,65,-10.60370050007083],[121,277,66,-10.586233137684356],[121,277,67,-10.566184928842627],[121,277,68,-10.5565642896014],[121,277,69,-10.569710342974624],[121,277,70,-10.612554877072315],[121,277,71,-10.667304318013663],[121,277,72,-10.742126848019208],[121,277,73,-10.810091508615843],[121,277,74,-10.853887308625684],[121,277,75,-10.864797703680184],[121,277,76,-10.849271097347327],[121,277,77,-10.82033765156214],[121,277,78,-10.77368771577609],[121,277,79,-10.724906655345164],[121,278,64,-10.65336616701585],[121,278,65,-10.654583114765602],[121,278,66,-10.637790332876847],[121,278,67,-10.618017822477695],[121,278,68,-10.60753538886838],[121,278,69,-10.620718255048361],[121,278,70,-10.65973079889078],[121,278,71,-10.714652856372217],[121,278,72,-10.785212278109817],[121,278,73,-10.853132078974475],[121,278,74,-10.89508148123748],[121,278,75,-10.911501024609038],[121,278,76,-10.89570020131907],[121,278,77,-10.865983044535735],[121,278,78,-10.820331070450358],[121,278,79,-10.770315336392626],[121,279,64,-10.699917951373042],[121,279,65,-10.700482283868068],[121,279,66,-10.682782630073245],[121,279,67,-10.664817262058804],[121,279,68,-10.653167009091696],[121,279,69,-10.66679269224246],[121,279,70,-10.703945425600267],[121,279,71,-10.758595389042217],[121,279,72,-10.826416729352678],[121,279,73,-10.899669104394148],[121,279,74,-10.939161353449364],[121,279,75,-10.959558361293254],[121,279,76,-10.945826643948555],[121,279,77,-10.915203241540622],[121,279,78,-10.869933896608234],[121,279,79,-10.815420094118364],[121,280,64,-10.747110401209765],[121,280,65,-10.746437045829248],[121,280,66,-10.726717464449342],[121,280,67,-10.709624310936293],[121,280,68,-10.698786123243007],[121,280,69,-10.710301877498873],[121,280,70,-10.747869771268126],[121,280,71,-10.803129319711298],[121,280,72,-10.873736588219726],[121,280,73,-10.947904605565586],[121,280,74,-10.988441338862804],[121,280,75,-11.006879131791155],[121,280,76,-10.996804139403565],[121,280,77,-10.963167703034765],[121,280,78,-10.919459390917662],[121,280,79,-10.863553411270676],[121,281,64,-10.792307982693647],[121,281,65,-10.790145291175147],[121,281,66,-10.771357293994452],[121,281,67,-10.751886373731924],[121,281,68,-10.742242670760193],[121,281,69,-10.754316124484058],[121,281,70,-10.793354618313797],[121,281,71,-10.852375323828065],[121,281,72,-10.922130825799282],[121,281,73,-11.001567294536365],[121,281,74,-11.047893674370028],[121,281,75,-11.06664368932597],[121,281,76,-11.052999402727547],[121,281,77,-11.017946827540959],[121,281,78,-10.974953963401143],[121,281,79,-10.920092676854143],[121,282,64,-10.840493646504585],[121,282,65,-10.838105844977498],[121,282,66,-10.818083503801413],[121,282,67,-10.799734734599037],[121,282,68,-10.79025415550334],[121,282,69,-10.802480058966294],[121,282,70,-10.84081304527504],[121,282,71,-10.901355551776787],[121,282,72,-10.971767560422023],[121,282,73,-11.041629282398445],[121,282,74,-11.09258124368964],[121,282,75,-11.113100544038325],[121,282,76,-11.096835235969051],[121,282,77,-11.063010232688084],[121,282,78,-11.02029939223296],[121,282,79,-10.966768313717079],[121,283,64,-10.886662504573458],[121,283,65,-10.885679067825563],[121,283,66,-10.864106576818047],[121,283,67,-10.847624042889468],[121,283,68,-10.835133591604452],[121,283,69,-10.848642112065034],[121,283,70,-10.889025267368712],[121,283,71,-10.946991181424487],[121,283,72,-11.0201190352419],[121,283,73,-11.088307281465264],[121,283,74,-11.149531568278176],[121,283,75,-11.165922691666136],[121,283,76,-11.145914785425967],[121,283,77,-11.112413963817062],[121,283,78,-11.073590237455324],[121,283,79,-11.018552728839946],[121,284,64,-10.953555699268957],[121,284,65,-10.950992707939658],[121,284,66,-10.932728454571006],[121,284,67,-10.91496165632003],[121,284,68,-10.898325029555712],[121,284,69,-10.911545762374569],[121,284,70,-10.956096346531305],[121,284,71,-11.01217148072288],[121,284,72,-11.08906409725133],[121,284,73,-11.152695572746525],[121,284,74,-11.211718673131761],[121,284,75,-11.222282248937184],[121,284,76,-11.198698782971595],[121,284,77,-11.167366908195124],[121,284,78,-11.125075450568083],[121,284,79,-11.071931739159266],[121,285,64,-11.004376110848987],[121,285,65,-10.99972140111092],[121,285,66,-10.976342633793609],[121,285,67,-10.952879437381936],[121,285,68,-10.936910733105963],[121,285,69,-10.949856813917876],[121,285,70,-10.993163031543947],[121,285,71,-11.051280244768195],[121,285,72,-11.127997362519565],[121,285,73,-11.192252523553737],[121,285,74,-11.260255828701778],[121,285,75,-11.270539922402913],[121,285,76,-11.247039807461475],[121,285,77,-11.21499716980823],[121,285,78,-11.169562031737783],[121,285,79,-11.114150228550345],[121,286,64,-11.055367497550376],[121,286,65,-11.049321405261292],[121,286,66,-11.025558743721826],[121,286,67,-11.001146318958627],[121,286,68,-10.98772749191143],[121,286,69,-10.998577460107446],[121,286,70,-11.038436874672277],[121,286,71,-11.097641639030572],[121,286,72,-11.17251018017903],[121,286,73,-11.236514419795412],[121,286,74,-11.30799719590772],[121,286,75,-11.316361122572758],[121,286,76,-11.292544410530528],[121,286,77,-11.260159060148103],[121,286,78,-11.216217724832024],[121,286,79,-11.163063552248614],[121,287,64,-11.10442760756108],[121,287,65,-11.09506316474628],[121,287,66,-11.07278585608463],[121,287,67,-11.047270038576855],[121,287,68,-11.036775426468935],[121,287,69,-11.04773911812126],[121,287,70,-11.086814209032857],[121,287,71,-11.141951873883764],[121,287,72,-11.217629142505928],[121,287,73,-11.282822609832333],[121,287,74,-11.350269422653962],[121,287,75,-11.35848797153098],[121,287,76,-11.33609621189999],[121,287,77,-11.302431723178817],[121,287,78,-11.259349477653432],[121,287,79,-11.208300595133514],[121,288,64,-11.1501205815184],[121,288,65,-11.141504331303409],[121,288,66,-11.120462758236183],[121,288,67,-11.095446016901883],[121,288,68,-11.085817301689762],[121,288,69,-11.096906266574974],[121,288,70,-11.13451679535871],[121,288,71,-11.190690633967368],[121,288,72,-11.265194961397246],[121,288,73,-11.330928978630283],[121,288,74,-11.393657900226192],[121,288,75,-11.402012642520184],[121,288,76,-11.380832542566258],[121,288,77,-11.348284224802386],[121,288,78,-11.307035931307873],[121,288,79,-11.253854734491023],[121,289,64,-11.184729060025997],[121,289,65,-11.186963714177862],[121,289,66,-11.172777108726716],[121,289,67,-11.15329093440303],[121,289,68,-11.14458392720211],[121,289,69,-11.154974861468999],[121,289,70,-11.192866925550229],[121,289,71,-11.250342180160086],[121,289,72,-11.325176287988938],[121,289,73,-11.396807837007016],[121,289,74,-11.455830157276495],[121,289,75,-11.455676216892783],[121,289,76,-11.435761519511303],[121,289,77,-11.402730808165929],[121,289,78,-11.36083210101982],[121,289,79,-11.309487419503219],[121,290,64,-11.232910558984603],[121,290,65,-11.236099500230575],[121,290,66,-11.222329383664366],[121,290,67,-11.201104137024755],[121,290,68,-11.19213818096044],[121,290,69,-11.204704837328777],[121,290,70,-11.244633963087374],[121,290,71,-11.304544277434166],[121,290,72,-11.378385722343355],[121,290,73,-11.439445125575546],[121,290,74,-11.496437470956385],[121,290,75,-11.501858981241229],[121,290,76,-11.482293516079482],[121,290,77,-11.447707595183449],[121,290,78,-11.405366499656903],[121,290,79,-11.355137411437916],[121,291,64,-11.27756613300162],[121,291,65,-11.280963652266808],[121,291,66,-11.265691856057483],[121,291,67,-11.246097518009899],[121,291,68,-11.237482732662954],[121,291,69,-11.253105924954962],[121,291,70,-11.293997550217679],[121,291,71,-11.354123141156057],[121,291,72,-11.42876296672052],[121,291,73,-11.487206333825565],[121,291,74,-11.545309012259498],[121,291,75,-11.553298854626775],[121,291,76,-11.53449256109205],[121,291,77,-11.49976344336899],[121,291,78,-11.456668053431494],[121,291,79,-11.403386636823512],[121,292,64,-11.29461403078865],[121,292,65,-11.292933929647454],[121,292,66,-11.276333222119225],[121,292,67,-11.25652858879075],[121,292,68,-11.243601936551755],[121,292,69,-11.257683142832896],[121,292,70,-11.301697267011868],[121,292,71,-11.3619793468136],[121,292,72,-11.439217395865128],[121,292,73,-11.496526109424611],[121,292,74,-11.560953090538547],[121,292,75,-11.575565277419994],[121,292,76,-11.560014396942655],[121,292,77,-11.526004706233117],[121,292,78,-11.481263184001923],[121,292,79,-11.427973280227267],[121,293,64,-11.343043391750884],[121,293,65,-11.341315963499504],[121,293,66,-11.322998867359505],[121,293,67,-11.300400520370237],[121,293,68,-11.28777518631765],[121,293,69,-11.302849883333591],[121,293,70,-11.34676860711123],[121,293,71,-11.40865731914323],[121,293,72,-11.487216277620249],[121,293,73,-11.545369666476946],[121,293,74,-11.602765162353556],[121,293,75,-11.616286347478095],[121,293,76,-11.601968587156817],[121,293,77,-11.568411343110727],[121,293,78,-11.526846603160743],[121,293,79,-11.469655290850543],[121,294,64,-11.392317533953607],[121,294,65,-11.391332498962084],[121,294,66,-11.372068552605153],[121,294,67,-11.342952175246294],[121,294,68,-11.331707007572804],[121,294,69,-11.346176070247365],[121,294,70,-11.388515538531456],[121,294,71,-11.452342996076634],[121,294,72,-11.532415248343248],[121,294,73,-11.588180519943679],[121,294,74,-11.649196128032854],[121,294,75,-11.66047911883473],[121,294,76,-11.649379578522378],[121,294,77,-11.61741774123757],[121,294,78,-11.578571387940197],[121,294,79,-11.519586940765457],[121,295,64,-11.44181756280444],[121,295,65,-11.437490126226525],[121,295,66,-11.418378853712419],[121,295,67,-11.388571151221159],[121,295,68,-11.375087690041255],[121,295,69,-11.390810608921468],[121,295,70,-11.432720895812777],[121,295,71,-11.497935643335127],[121,295,72,-11.57912481710315],[121,295,73,-11.634103164153533],[121,295,74,-11.661097470345977],[121,295,75,-11.673341689513716],[121,295,76,-11.669420211185674],[121,295,77,-11.645424371201054],[121,295,78,-11.612744137112438],[121,295,79,-11.562093171131743],[121,296,64,-11.491542327596278],[121,296,65,-11.483665174847815],[121,296,66,-11.464890820127307],[121,296,67,-11.436446568806584],[121,296,68,-11.420526656556039],[121,296,69,-11.432723138452458],[121,296,70,-11.476955251588663],[121,296,71,-11.544331940591109],[121,296,72,-11.625172913113934],[121,296,73,-11.679948650346496],[121,296,74,-11.706643962270226],[121,296,75,-11.719186390920353],[121,296,76,-11.712539927987825],[121,296,77,-11.688478689651877],[121,296,78,-11.65501524000684],[121,296,79,-11.607984682798858],[121,297,64,-11.544944057852657],[121,297,65,-11.5339284323877],[121,297,66,-11.505938859055458],[121,297,67,-11.474481650467736],[121,297,68,-11.456575876107246],[121,297,69,-11.468425012452636],[121,297,70,-11.513889433291267],[121,297,71,-11.587295705154641],[121,297,72,-11.672249887706872],[121,297,73,-11.734444116126562],[121,297,74,-11.760287990814012],[121,297,75,-11.77248425131549],[121,297,76,-11.764743914197162],[121,297,77,-11.742969330911667],[121,297,78,-11.70652387312219],[121,297,79,-11.657561199097854],[121,298,64,-11.592887349265542],[121,298,65,-11.581737618108066],[121,298,66,-11.555055813466279],[121,298,67,-11.523003587509796],[121,298,68,-11.505077584466868],[121,298,69,-11.519028237626285],[121,298,70,-11.563138810264864],[121,298,71,-11.635142648715908],[121,298,72,-11.719944933439917],[121,298,73,-11.78303360704764],[121,298,74,-11.809989815293047],[121,298,75,-11.818805413293674],[121,298,76,-11.80846440380313],[121,298,77,-11.786295628752038],[121,298,78,-11.750071518868795],[121,298,79,-11.697812218822392],[121,299,64,-11.639156769419312],[121,299,65,-11.626927983391962],[121,299,66,-11.599049410757095],[121,299,67,-11.567946479536339],[121,299,68,-11.553639489251216],[121,299,69,-11.565788025329852],[121,299,70,-11.610753607684257],[121,299,71,-11.681945094862721],[121,299,72,-11.76622647127903],[121,299,73,-11.830226720905111],[121,299,74,-11.857142580968674],[121,299,75,-11.862693904062231],[121,299,76,-11.85442403208908],[121,299,77,-11.83266994521643],[121,299,78,-11.795059278415234],[121,299,79,-11.742263266148823],[121,300,64,-11.681139481995746],[121,300,65,-11.675516374385012],[121,300,66,-11.654835360006427],[121,300,67,-11.625895322907459],[121,300,68,-11.612885139482305],[121,300,69,-11.623684445707523],[121,300,70,-11.665945550177812],[121,300,71,-11.730103635354903],[121,300,72,-11.808685744303064],[121,300,73,-11.865389457383506],[121,300,74,-11.891313771118337],[121,300,75,-11.896750224676982],[121,300,76,-11.878221392013803],[121,300,77,-11.852861920670492],[121,300,78,-11.813650668643293],[121,300,79,-11.770400888908492],[121,301,64,-11.726218538256369],[121,301,65,-11.724883593360012],[121,301,66,-11.704272695334481],[121,301,67,-11.673552755421479],[121,301,68,-11.657364820361062],[121,301,69,-11.669491027107595],[121,301,70,-11.710156520211994],[121,301,71,-11.778248589111767],[121,301,72,-11.856092298072804],[121,301,73,-11.910720551156132],[121,301,74,-11.937379017417749],[121,301,75,-11.943154836055413],[121,301,76,-11.924191708219244],[121,301,77,-11.897025239766945],[121,301,78,-11.864298693627862],[121,301,79,-11.817488378416334],[121,302,64,-11.769823955772493],[121,302,65,-11.768330792308905],[121,302,66,-11.748462345515485],[121,302,67,-11.716464519562113],[121,302,68,-11.700380113757227],[121,302,69,-11.71214264267162],[121,302,70,-11.751631478603052],[121,302,71,-11.819004807596736],[121,302,72,-11.895833581645698],[121,302,73,-11.951228684504981],[121,302,74,-11.980159807294017],[121,302,75,-11.98284102139226],[121,302,76,-11.961972753691256],[121,302,77,-11.936113504611628],[121,302,78,-11.904556179292362],[121,302,79,-11.862291349277044],[121,303,64,-11.815951260402345],[121,303,65,-11.811678403309386],[121,303,66,-11.7914355410257],[121,303,67,-11.761775914386062],[121,303,68,-11.746786523307659],[121,303,69,-11.755710067619992],[121,303,70,-11.799190897910673],[121,303,71,-11.86546895161766],[121,303,72,-11.939764947425427],[121,303,73,-11.99633162142268],[121,303,74,-12.024009837891068],[121,303,75,-12.027476600299279],[121,303,76,-12.006620285922237],[121,303,77,-11.985046647548591],[121,303,78,-11.957012271258904],[121,303,79,-11.906415867215557],[121,304,64,-11.858619456568183],[121,304,65,-11.855412353941084],[121,304,66,-11.834438627392021],[121,304,67,-11.809484003122583],[121,304,68,-11.794573122286184],[121,304,69,-11.801286829381304],[121,304,70,-11.846290050810401],[121,304,71,-11.909201543739924],[121,304,72,-11.984731254702256],[121,304,73,-12.041451812318238],[121,304,74,-12.069998459288225],[121,304,75,-12.07434470021745],[121,304,76,-12.054913375326343],[121,304,77,-12.033186273535765],[121,304,78,-12.002538955647902],[121,304,79,-11.950474596365247],[121,305,64,-11.901139067889561],[121,305,65,-11.898424344899434],[121,305,66,-11.878623377425013],[121,305,67,-11.854009511600305],[121,305,68,-11.839616431733937],[121,305,69,-11.8489151243363],[121,305,70,-11.893959348595812],[121,305,71,-11.953198927593487],[121,305,72,-12.030499911092178],[121,305,73,-12.087477194334411],[121,305,74,-12.116348445910663],[121,305,75,-12.12097302899017],[121,305,76,-12.10281145723971],[121,305,77,-12.07995420074629],[121,305,78,-12.048945413731266],[121,305,79,-11.998148266666995],[121,306,64,-11.948820283334324],[121,306,65,-11.948921430696531],[121,306,66,-11.927274158443558],[121,306,67,-11.902505480578613],[121,306,68,-11.886766948320485],[121,306,69,-11.89828504110059],[121,306,70,-11.940252859357184],[121,306,71,-12.001315951896984],[121,306,72,-12.079227924141344],[121,306,73,-12.135619833293761],[121,306,74,-12.163359113059837],[121,306,75,-12.16968238795533],[121,306,76,-12.150160679254205],[121,306,77,-12.123220266129158],[121,306,78,-12.093627940605582],[121,306,79,-12.042867456004567],[121,307,64,-11.998078955393193],[121,307,65,-11.993449171151761],[121,307,66,-11.97197207275622],[121,307,67,-11.946833328455464],[121,307,68,-11.93100072179721],[121,307,69,-11.945071744789125],[121,307,70,-11.985963982936893],[121,307,71,-12.049282957178548],[121,307,72,-12.124518180717665],[121,307,73,-12.180394629426136],[121,307,74,-12.210865330797597],[121,307,75,-12.216691735489698],[121,307,76,-12.199457514651652],[121,307,77,-12.175753039423448],[121,307,78,-12.141869821582516],[121,307,79,-12.089429753364952],[121,308,64,-12.021104304916447],[121,308,65,-12.016259827362479],[121,308,66,-11.99645721188669],[121,308,67,-11.973360543232014],[121,308,68,-11.958931940659477],[121,308,69,-11.97843909214082],[121,308,70,-12.025481435291779],[121,308,71,-12.094334140689599],[121,308,72,-12.175747751510375],[121,308,73,-12.23710428835287],[121,308,74,-12.272998825581034],[121,308,75,-12.275438198188818],[121,308,76,-12.262354677697264],[121,308,77,-12.243091994799707],[121,308,78,-12.204029594442224],[121,308,79,-12.151090855644146],[121,309,64,-12.063537872164277],[121,309,65,-12.058631177705513],[121,309,66,-12.04166155162562],[121,309,67,-12.01537362058476],[121,309,68,-12.00287265436758],[121,309,69,-12.02298928256667],[121,309,70,-12.072579748894096],[121,309,71,-12.14126217036475],[121,309,72,-12.221192605585545],[121,309,73,-12.285923548241266],[121,309,74,-12.320389396279058],[121,309,75,-12.323308294708962],[121,309,76,-12.312500529198557],[121,309,77,-12.283514797704255],[121,309,78,-12.233229020128727],[121,309,79,-12.18029628202383],[121,310,64,-12.104626357727552],[121,310,65,-12.100187889027941],[121,310,66,-12.080595554702018],[121,310,67,-12.05352010604827],[121,310,68,-12.041710405272662],[121,310,69,-12.060783353399938],[121,310,70,-12.111928279418883],[121,310,71,-12.181605552221566],[121,310,72,-12.26215980127205],[121,310,73,-12.326665220577572],[121,310,74,-12.361374838495404],[121,310,75,-12.365063415737508],[121,310,76,-12.353685863194588],[121,310,77,-12.324638273311814],[121,310,78,-12.279731585152486],[121,310,79,-12.22574431462818],[121,311,64,-12.153654942606064],[121,311,65,-12.147709581266898],[121,311,66,-12.123467257711082],[121,311,67,-12.097911715239464],[121,311,68,-12.08518327630952],[121,311,69,-12.107436852696077],[121,311,70,-12.156957192419108],[121,311,71,-12.228165508973495],[121,311,72,-12.307408848493475],[121,311,73,-12.371074551676548],[121,311,74,-12.407960044435093],[121,311,75,-12.411984723278298],[121,311,76,-12.402207863344321],[121,311,77,-12.36991152055321],[121,311,78,-12.329479081546813],[121,311,79,-12.276473414739964],[121,312,64,-12.210118316221584],[121,312,65,-12.203496574324522],[121,312,66,-12.1805665391256],[121,312,67,-12.153766160061231],[121,312,68,-12.141325564410495],[121,312,69,-12.163172308152582],[121,312,70,-12.210591612248926],[121,312,71,-12.276323919766943],[121,312,72,-12.35099110567937],[121,312,73,-12.405753590199254],[121,312,74,-12.439276235001035],[121,312,75,-12.448287266789201],[121,312,76,-12.43904343556201],[121,312,77,-12.407621626333015],[121,312,78,-12.367946459406877],[121,312,79,-12.315348137199317],[121,313,64,-12.25686910396167],[121,313,65,-12.252873807602304],[121,313,66,-12.229242841008706],[121,313,67,-12.201880517718601],[121,313,68,-12.188970686704659],[121,313,69,-12.210512756587256],[121,313,70,-12.25649683839444],[121,313,71,-12.320271995206868],[121,313,72,-12.397128036039682],[121,313,73,-12.450947927812596],[121,313,74,-12.48249056457759],[121,313,75,-12.492407739610854],[121,313,76,-12.482725308962458],[121,313,77,-12.456341078652663],[121,313,78,-12.415064392347109],[121,313,79,-12.365323295300099],[121,314,64,-12.308612669579874],[121,314,65,-12.306166551691096],[121,314,66,-12.282890179257604],[121,314,67,-12.252368242466265],[121,314,68,-12.241219853231152],[121,314,69,-12.261323174082834],[121,314,70,-12.305150340440855],[121,314,71,-12.366725075740765],[121,314,72,-12.443013914535962],[121,314,73,-12.498705391742313],[121,314,74,-12.528934652397542],[121,314,75,-12.538994061414524],[121,314,76,-12.528665094213782],[121,314,77,-12.506026417182218],[121,314,78,-12.465666029649169],[121,314,79,-12.415990316665653],[121,315,64,-12.356932842992407],[121,315,65,-12.353868930009362],[121,315,66,-12.331238034055469],[121,315,67,-12.300148682365343],[121,315,68,-12.290192384999969],[121,315,69,-12.30766664420922],[121,315,70,-12.350621988563967],[121,315,71,-12.413216628762997],[121,315,72,-12.484942185980152],[121,315,73,-12.543072388375009],[121,315,74,-12.573294137010652],[121,315,75,-12.582744458518123],[121,315,76,-12.574812912460875],[121,315,77,-12.550450352219794],[121,315,78,-12.513558308424255],[121,315,79,-12.467466025796273],[121,316,64,-12.412624280542799],[121,316,65,-12.405852500905988],[121,316,66,-12.383873640898912],[121,316,67,-12.353568566805622],[121,316,68,-12.34032901907362],[121,316,69,-12.3534573893293],[121,316,70,-12.394296308615086],[121,316,71,-12.45604063975608],[121,316,72,-12.527381212376133],[121,316,73,-12.58804464865927],[121,316,74,-12.617477835964573],[121,316,75,-12.626276258986255],[121,316,76,-12.616514612828757],[121,316,77,-12.593471173119159],[121,316,78,-12.557933254662606],[121,316,79,-12.508023927226944],[121,317,64,-12.459006675327979],[121,317,65,-12.453809462568874],[121,317,66,-12.43184138892253],[121,317,67,-12.402144583185208],[121,317,68,-12.388895355229472],[121,317,69,-12.402234456070342],[121,317,70,-12.440893325816594],[121,317,71,-12.50184343412375],[121,317,72,-12.574116102527784],[121,317,73,-12.635141125042647],[121,317,74,-12.665021954144386],[121,317,75,-12.671714219237339],[121,317,76,-12.661665649612933],[121,317,77,-12.642889051231357],[121,317,78,-12.609537032121061],[121,317,79,-12.559934807985778],[121,318,64,-12.499882076611947],[121,318,65,-12.493872739655547],[121,318,66,-12.471057413697556],[121,318,67,-12.44508335809659],[121,318,68,-12.42935308306306],[121,318,69,-12.44160054714914],[121,318,70,-12.479332276646094],[121,318,71,-12.539322265732881],[121,318,72,-12.613400154878269],[121,318,73,-12.670506339626314],[121,318,74,-12.703543404793788],[121,318,75,-12.711286900396656],[121,318,76,-12.699714049965824],[121,318,77,-12.683530035107543],[121,318,78,-12.650998691672761],[121,318,79,-12.604198626197766],[121,319,64,-12.545701645059337],[121,319,65,-12.539163227939204],[121,319,66,-12.515656661619555],[121,319,67,-12.489128325296644],[121,319,68,-12.474532136508419],[121,319,69,-12.487774148192564],[121,319,70,-12.52670035400341],[121,319,71,-12.584568944811952],[121,319,72,-12.661415124328967],[121,319,73,-12.719493682960003],[121,319,74,-12.753389236319489],[121,319,75,-12.760307979003255],[121,319,76,-12.747113809557257],[121,319,77,-12.732813598013703],[121,319,78,-12.700658023578127],[121,319,79,-12.659025189706298],[122,-64,64,22.892068834053877],[122,-64,65,22.909960450254523],[122,-64,66,22.935168980135458],[122,-64,67,22.964359428978955],[122,-64,68,22.984809116694084],[122,-64,69,22.995562615566687],[122,-64,70,23.015435357331327],[122,-64,71,23.054921819207543],[122,-64,72,23.108488550816524],[122,-64,73,23.146107134707442],[122,-64,74,23.17384008369862],[122,-64,75,23.213981236186736],[122,-64,76,23.272393551963614],[122,-64,77,23.35417176911387],[122,-64,78,23.442532862592895],[122,-64,79,23.51810342507513],[122,-63,64,22.69189713604677],[122,-63,65,22.710412573500854],[122,-63,66,22.740620606680594],[122,-63,67,22.77209461572037],[122,-63,68,22.79254572345371],[122,-63,69,22.804827383454654],[122,-63,70,22.824899443196323],[122,-63,71,22.86716801806954],[122,-63,72,22.921174398322357],[122,-63,73,22.959086789004633],[122,-63,74,22.988316766199066],[122,-63,75,23.02714291566559],[122,-63,76,23.084719577723185],[122,-63,77,23.16178586668865],[122,-63,78,23.247801697457067],[122,-63,79,23.32349447734225],[122,-62,64,22.50021429430945],[122,-62,65,22.518676148098162],[122,-62,66,22.548489733214975],[122,-62,67,22.582781077556035],[122,-62,68,22.60423196782663],[122,-62,69,22.61533216185694],[122,-62,70,22.636235295008767],[122,-62,71,22.677837251903238],[122,-62,72,22.73351595483928],[122,-62,73,22.77022468585985],[122,-62,74,22.798392205775087],[122,-62,75,22.83680368740174],[122,-62,76,22.895544267783265],[122,-62,77,22.971703220254636],[122,-62,78,23.058617634928957],[122,-62,79,23.135308373448694],[122,-61,64,22.30502639114874],[122,-61,65,22.32269179448391],[122,-61,66,22.352742582098372],[122,-61,67,22.389379849383843],[122,-61,68,22.411233014187637],[122,-61,69,22.422353174432],[122,-61,70,22.441463068555148],[122,-61,71,22.486093519771057],[122,-61,72,22.539479230230075],[122,-61,73,22.576241142385047],[122,-61,74,22.605390567491256],[122,-61,75,22.64210072149355],[122,-61,76,22.699380626610456],[122,-61,77,22.77873469165183],[122,-61,78,22.864993547795166],[122,-61,79,22.941108880332585],[122,-60,64,22.113981569645432],[122,-60,65,22.130609035451936],[122,-60,66,22.163195354957754],[122,-60,67,22.200939756706077],[122,-60,68,22.22352006199479],[122,-60,69,22.236001453244633],[122,-60,70,22.254665728808703],[122,-60,71,22.29960905706403],[122,-60,72,22.35190281767115],[122,-60,73,22.388853353402787],[122,-60,74,22.41650444984981],[122,-60,75,22.45394060655531],[122,-60,76,22.513139048899276],[122,-60,77,22.591222593630054],[122,-60,78,22.67615907435675],[122,-60,79,22.753316306231387],[122,-59,64,21.936632761848674],[122,-59,65,21.95261911507035],[122,-59,66,21.98205234393357],[122,-59,67,22.01615934045056],[122,-59,68,22.0384797075535],[122,-59,69,22.04966324247053],[122,-59,70,22.068063077429454],[122,-59,71,22.108286664988498],[122,-59,72,22.155238750004038],[122,-59,73,22.191248598926617],[122,-59,74,22.21681711035511],[122,-59,75,22.255116561453736],[122,-59,76,22.319105669246337],[122,-59,77,22.40002211450404],[122,-59,78,22.48745730147347],[122,-59,79,22.571402590107166],[122,-58,64,21.747496385591866],[122,-58,65,21.76281517474423],[122,-58,66,21.795371890128113],[122,-58,67,21.826290888135375],[122,-58,68,21.84597001706125],[122,-58,69,21.859116580804066],[122,-58,70,21.87779498362598],[122,-58,71,21.91582523996833],[122,-58,72,21.96332851081662],[122,-58,73,21.997354562846095],[122,-58,74,22.024552008540915],[122,-58,75,22.061758381685532],[122,-58,76,22.125561558198775],[122,-58,77,22.208240222392437],[122,-58,78,22.29718744755549],[122,-58,79,22.38110688032045],[122,-57,64,21.553038624724348],[122,-57,65,21.568581221492114],[122,-57,66,21.600986130989416],[122,-57,67,21.630012949334837],[122,-57,68,21.652210415300676],[122,-57,69,21.666418199491204],[122,-57,70,21.684052210079138],[122,-57,71,21.72105712762529],[122,-57,72,21.7667826338652],[122,-57,73,21.800732069638595],[122,-57,74,21.828803745080517],[122,-57,75,21.867710907444522],[122,-57,76,21.92995970824523],[122,-57,77,22.015036337846176],[122,-57,78,22.105189706949812],[122,-57,79,22.190983955926033],[122,-56,64,21.364244306197175],[122,-56,65,21.380347681114866],[122,-56,66,21.41041843217021],[122,-56,67,21.43868322850399],[122,-56,68,21.465040565393924],[122,-56,69,21.479082675690417],[122,-56,70,21.494242456685335],[122,-56,71,21.527727214591632],[122,-56,72,21.57487457910123],[122,-56,73,21.608938246110938],[122,-56,74,21.635691523844002],[122,-56,75,21.676513207439882],[122,-56,76,21.73858358755695],[122,-56,77,21.822696018905905],[122,-56,78,21.914983926743265],[122,-56,79,22.002376581717215],[122,-55,64,21.1770503063156],[122,-55,65,21.193195715689942],[122,-55,66,21.220060271046613],[122,-55,67,21.247820977935106],[122,-55,68,21.27470240207863],[122,-55,69,21.29033716948027],[122,-55,70,21.30498686940476],[122,-55,71,21.337690674902102],[122,-55,72,21.383950101011138],[122,-55,73,21.41756064308818],[122,-55,74,21.443567309199064],[122,-55,75,21.48421817460439],[122,-55,76,21.545690157788517],[122,-55,77,21.629189565703093],[122,-55,78,21.725164988224876],[122,-55,79,21.812411485349354],[122,-54,64,20.988304097429356],[122,-54,65,21.002775125978197],[122,-54,66,21.02880510381357],[122,-54,67,21.05830926988161],[122,-54,68,21.08493366781787],[122,-54,69,21.09912159704786],[122,-54,70,21.113310217352446],[122,-54,71,21.14699036276443],[122,-54,72,21.190158457668705],[122,-54,73,21.224201335096993],[122,-54,74,21.25061691061669],[122,-54,75,21.29248837818083],[122,-54,76,21.353510656962786],[122,-54,77,21.438223757098235],[122,-54,78,21.5340625931337],[122,-54,79,21.624223326069803],[122,-53,64,20.78927983757647],[122,-53,65,20.806749194311987],[122,-53,66,20.835713052280372],[122,-53,67,20.86532722191952],[122,-53,68,20.889554896954678],[122,-53,69,20.902099662926712],[122,-53,70,20.915486158786468],[122,-53,71,20.949238614054018],[122,-53,72,20.991606388781975],[122,-53,73,21.026362660955748],[122,-53,74,21.054523668135683],[122,-53,75,21.09728047541588],[122,-53,76,21.161351806867142],[122,-53,77,21.242831401539128],[122,-53,78,21.338269579858395],[122,-53,79,21.429246920079652],[122,-52,64,20.594990500234044],[122,-52,65,20.616413620252708],[122,-52,66,20.64901115259962],[122,-52,67,20.68091967925047],[122,-52,68,20.703150321372192],[122,-52,69,20.715370216992145],[122,-52,70,20.727127156463386],[122,-52,71,20.763074127896957],[122,-52,72,20.804174662195397],[122,-52,73,20.837786154928867],[122,-52,74,20.868412596679114],[122,-52,75,20.912231695574622],[122,-52,76,20.976300300820498],[122,-52,77,21.05855172631474],[122,-52,78,21.149827043942132],[122,-52,79,21.241858753595416],[122,-51,64,20.38368781338135],[122,-51,65,20.40353298115033],[122,-51,66,20.434431950947562],[122,-51,67,20.46567081720727],[122,-51,68,20.488037222136395],[122,-51,69,20.49759037447269],[122,-51,70,20.511511066010435],[122,-51,71,20.54801073058021],[122,-51,72,20.590069710966652],[122,-51,73,20.626139794717805],[122,-51,74,20.658172065768774],[122,-51,75,20.704056082117535],[122,-51,76,20.773112999444223],[122,-51,77,20.86028685715918],[122,-51,78,20.956390538913258],[122,-51,79,21.05602513072656],[122,-50,64,20.19280775436342],[122,-50,65,20.215275349424214],[122,-50,66,20.24288511324908],[122,-50,67,20.273217288947652],[122,-50,68,20.297470163468414],[122,-50,69,20.305014307998654],[122,-50,70,20.32089676544847],[122,-50,71,20.356850787812785],[122,-50,72,20.39594218383072],[122,-50,73,20.428903755026088],[122,-50,74,20.461841900862836],[122,-50,75,20.512548382312964],[122,-50,76,20.578848730809018],[122,-50,77,20.66957476953408],[122,-50,78,20.764529229397123],[122,-50,79,20.8617683947357],[122,-49,64,20.04983104088336],[122,-49,65,20.08423129751337],[122,-49,66,20.046356617688275],[122,-49,67,20.076052624849893],[122,-49,68,20.10057896809107],[122,-49,69,20.111390912160104],[122,-49,70,20.129884713520447],[122,-49,71,20.16282207304619],[122,-49,72,20.200303444335493],[122,-49,73,20.233464636760377],[122,-49,74,20.26588343249054],[122,-49,75,20.314437709862975],[122,-49,76,20.38350647664884],[122,-49,77,20.47422208368855],[122,-49,78,20.56961097530774],[122,-49,79,20.668732841525053],[122,-48,64,19.91968363175749],[122,-48,65,19.92931659113728],[122,-48,66,19.856575677643],[122,-48,67,19.88758063537069],[122,-48,68,19.911155034227384],[122,-48,69,19.924393501643124],[122,-48,70,19.94191168962467],[122,-48,71,19.971579315730075],[122,-48,72,20.00947852934683],[122,-48,73,20.039287599080662],[122,-48,74,20.072039658902707],[122,-48,75,20.12033192063648],[122,-48,76,20.187687686879546],[122,-48,77,20.278362556629546],[122,-48,78,20.376858340973147],[122,-48,79,20.475667141821905],[122,-47,64,19.741927373569766],[122,-47,65,19.763177653772413],[122,-47,66,19.7039624877264],[122,-47,67,19.705680031457057],[122,-47,68,19.729728245707946],[122,-47,69,19.744208496016437],[122,-47,70,19.758280416846915],[122,-47,71,19.7839772566541],[122,-47,72,19.819466811718314],[122,-47,73,19.84746544424389],[122,-47,74,19.87866447658068],[122,-47,75,19.926256639741293],[122,-47,76,19.992034898024247],[122,-47,77,20.080969107300575],[122,-47,78,20.17781838450807],[122,-47,79,20.271907541481813],[122,-46,64,19.49607395759881],[122,-46,65,19.53892661366649],[122,-46,66,19.548907626790715],[122,-46,67,19.51653691341899],[122,-46,68,19.542456474824494],[122,-46,69,19.55599748368083],[122,-46,70,19.565890192636324],[122,-46,71,19.59165661320777],[122,-46,72,19.626372275612614],[122,-46,73,19.653103562323086],[122,-46,74,19.684373319777166],[122,-46,75,19.731407007350914],[122,-46,76,19.79868956006581],[122,-46,77,19.88804099331755],[122,-46,78,19.98480962720266],[122,-46,79,20.077801890357886],[122,-45,64,19.33590170426939],[122,-45,65,19.370168941509423],[122,-45,66,19.39008587260776],[122,-45,67,19.336170888063034],[122,-45,68,19.352625192228558],[122,-45,69,19.364336263939116],[122,-45,70,19.37152754251269],[122,-45,71,19.393902060004777],[122,-45,72,19.428328104456725],[122,-45,73,19.457034487933303],[122,-45,74,19.488399011883974],[122,-45,75,19.533155717709434],[122,-45,76,19.59904399867233],[122,-45,77,19.691740064336408],[122,-45,78,19.78699398711557],[122,-45,79,19.880996813326092],[122,-44,64,19.25523461654258],[122,-44,65,19.279519453259393],[122,-44,66,19.30664600806488],[122,-44,67,19.16904941977039],[122,-44,68,19.142949727044975],[122,-44,69,19.150916620444058],[122,-44,70,19.153338739169904],[122,-44,71,19.170468948509573],[122,-44,72,19.202598996625074],[122,-44,73,19.228522514255282],[122,-44,74,19.2610030079435],[122,-44,75,19.302338448370836],[122,-44,76,19.36870880335575],[122,-44,77,19.461090383361967],[122,-44,78,19.557632677448286],[122,-44,79,19.65295446817655],[122,-43,64,19.124180985546687],[122,-43,65,19.139880989122634],[122,-43,66,19.184858194112884],[122,-43,67,19.03741231688416],[122,-43,68,18.98071375717098],[122,-43,69,18.97104742886252],[122,-43,70,18.971892722128086],[122,-43,71,18.988291887879324],[122,-43,72,19.018295508035038],[122,-43,73,19.04134751396732],[122,-43,74,19.071817563317342],[122,-43,75,19.115884219871685],[122,-43,76,19.182134430600627],[122,-43,77,19.271525284843033],[122,-43,78,19.366371922990446],[122,-43,79,19.459047371196455],[122,-42,64,18.939502239165407],[122,-42,65,18.9706532616056],[122,-42,66,19.005580510193433],[122,-42,67,18.871825267899986],[122,-42,68,18.83618975559784],[122,-42,69,18.78089428645265],[122,-42,70,18.782156809076408],[122,-42,71,18.79908572747347],[122,-42,72,18.826266152910645],[122,-42,73,18.847842866546422],[122,-42,74,18.878381046421975],[122,-42,75,18.921693804814055],[122,-42,76,18.989311262429634],[122,-42,77,19.077637790648435],[122,-42,78,19.17346486008872],[122,-42,79,19.268318682690964],[122,-41,64,18.824242690763818],[122,-41,65,18.85334877051874],[122,-41,66,18.926237507560053],[122,-41,67,18.824201044279782],[122,-41,68,18.756844615141745],[122,-41,69,18.639620873223958],[122,-41,70,18.58751356112039],[122,-41,71,18.605854298827293],[122,-41,72,18.629729819396207],[122,-41,73,18.654934794492082],[122,-41,74,18.683058707189097],[122,-41,75,18.727395391602606],[122,-41,76,18.795397629421174],[122,-41,77,18.884592185099205],[122,-41,78,18.98086749608256],[122,-41,79,19.07688257467947],[122,-40,64,18.69963203206279],[122,-40,65,18.689914880483535],[122,-40,66,18.767392265436552],[122,-40,67,18.70589922833059],[122,-40,68,18.574223587072368],[122,-40,69,18.451632129852467],[122,-40,70,18.394504402841168],[122,-40,71,18.411407287758912],[122,-40,72,18.43769300883571],[122,-40,73,18.461430718904197],[122,-40,74,18.489442103341414],[122,-40,75,18.533416122280414],[122,-40,76,18.601281257869477],[122,-40,77,18.68961462572464],[122,-40,78,18.787557352327838],[122,-40,79,18.885660429932194],[122,-39,64,18.55568827314013],[122,-39,65,18.52485540552532],[122,-39,66,18.625734677990334],[122,-39,67,18.527345546198347],[122,-39,68,18.370750690775115],[122,-39,69,18.248095095946713],[122,-39,70,18.20793746563891],[122,-39,71,18.224150170004012],[122,-39,72,18.2515004249339],[122,-39,73,18.27389768326968],[122,-39,74,18.300637495239734],[122,-39,75,18.346085448780997],[122,-39,76,18.411400426726637],[122,-39,77,18.49953516349299],[122,-39,78,18.596281395376128],[122,-39,79,18.691659408164742],[122,-38,64,18.43157072470294],[122,-38,65,18.444172439551416],[122,-38,66,18.4687896306691],[122,-38,67,18.266786373299162],[122,-38,68,18.07484382528376],[122,-38,69,18.017911118474665],[122,-38,70,18.017981631782952],[122,-38,71,18.034357859739238],[122,-38,72,18.06151044035243],[122,-38,73,18.08135813080964],[122,-38,74,18.1069690289649],[122,-38,75,18.150995994491215],[122,-38,76,18.23710122890896],[122,-38,77,18.30411309962513],[122,-38,78,18.401045217952177],[122,-38,79,18.49551225530333],[122,-37,64,18.28081729851894],[122,-37,65,18.288885130996405],[122,-37,66,18.319060439402815],[122,-37,67,18.173066440708407],[122,-37,68,17.93229779233966],[122,-37,69,17.825171271136494],[122,-37,70,17.861813778887278],[122,-37,71,17.840387850329254],[122,-37,72,17.863945444720343],[122,-37,73,17.88470474953489],[122,-37,74,17.908375761704523],[122,-37,75,17.95166072460745],[122,-37,76,18.050149841580172],[122,-37,77,18.122949682305386],[122,-37,78,18.202259615056644],[122,-37,79,18.29747025334981],[122,-36,64,18.07999489864901],[122,-36,65,18.088745162910083],[122,-36,66,18.11558628521608],[122,-36,67,17.99981859362929],[122,-36,68,17.780163031149332],[122,-36,69,17.6420277381586],[122,-36,70,17.692449970449143],[122,-36,71,17.656341594670124],[122,-36,72,17.6768582378338],[122,-36,73,17.696913254978202],[122,-36,74,17.722598429393994],[122,-36,75,17.764917166458012],[122,-36,76,17.874708537870365],[122,-36,77,17.923265331983043],[122,-36,78,18.01470137085101],[122,-36,79,18.11142299438376],[122,-35,64,17.88777033023924],[122,-35,65,17.84591645251649],[122,-35,66,17.775060537969548],[122,-35,67,17.523715175088565],[122,-35,68,17.44819081199207],[122,-35,69,17.451032563034214],[122,-35,70,17.449331187486127],[122,-35,71,17.4607354994087],[122,-35,72,17.47824994858087],[122,-35,73,17.49628504542082],[122,-35,74,17.52173405922356],[122,-35,75,17.565367710618453],[122,-35,76,17.632510226285163],[122,-35,77,17.720909300825625],[122,-35,78,17.822742797542414],[122,-35,79,17.925332395397625],[122,-34,64,17.686212860996456],[122,-34,65,17.68369318131379],[122,-34,66,17.57860532621183],[122,-34,67,17.336547823847905],[122,-34,68,17.260863545224975],[122,-34,69,17.264062498596036],[122,-34,70,17.26033455004257],[122,-34,71,17.2721000064007],[122,-34,72,17.284584242216518],[122,-34,73,17.303401548346788],[122,-34,74,17.32618853260903],[122,-34,75,17.371764725848706],[122,-34,76,17.440139787452907],[122,-34,77,17.528941857284337],[122,-34,78,17.628518889593433],[122,-34,79,17.7326250071695],[122,-33,64,17.48437410915471],[122,-33,65,17.490719931331714],[122,-33,66,17.403620237222164],[122,-33,67,17.191548565752935],[122,-33,68,17.127258385590295],[122,-33,69,17.126067516752133],[122,-33,70,17.116147330995883],[122,-33,71,17.12018919743673],[122,-33,72,17.128262448173654],[122,-33,73,17.140914153086754],[122,-33,74,17.158635180233148],[122,-33,75,17.199056149382763],[122,-33,76,17.26602575299689],[122,-33,77,17.349475990699812],[122,-33,78,17.445375081297968],[122,-33,79,17.545980592398525],[122,-32,64,17.296395035885393],[122,-32,65,17.30328096336324],[122,-32,66,17.230623962593075],[122,-32,67,17.0033275947734],[122,-32,68,16.940228228249083],[122,-32,69,16.937836530366372],[122,-32,70,16.927119913184104],[122,-32,71,16.925981534574806],[122,-32,72,16.93544962792804],[122,-32,73,16.947174977481865],[122,-32,74,16.968617497893533],[122,-32,75,17.00714220550415],[122,-32,76,17.071735573147965],[122,-32,77,17.156041612058207],[122,-32,78,17.25137912170767],[122,-32,79,17.35222000494357],[122,-31,64,17.109939323926604],[122,-31,65,17.114110470582524],[122,-31,66,17.10379192583974],[122,-31,67,16.939129398814156],[122,-31,68,16.86151393142053],[122,-31,69,16.750930760098818],[122,-31,70,16.739490618172848],[122,-31,71,16.73500683900458],[122,-31,72,16.74518503580038],[122,-31,73,16.75632907262831],[122,-31,74,16.775569860563152],[122,-31,75,16.813442234227537],[122,-31,76,16.87787203164037],[122,-31,77,16.961772250204774],[122,-31,78,17.058594493495576],[122,-31,79,17.15913652853746],[122,-30,64,16.93269004923617],[122,-30,65,16.937269983672444],[122,-30,66,16.95808693956867],[122,-30,67,16.795578651755296],[122,-30,68,16.699718305781474],[122,-30,69,16.56281764722694],[122,-30,70,16.55174118817731],[122,-30,71,16.5480406255099],[122,-30,72,16.555128827942873],[122,-30,73,16.564100892559793],[122,-30,74,16.5818682582058],[122,-30,75,16.618474269066716],[122,-30,76,16.68332093916545],[122,-30,77,16.769866818524346],[122,-30,78,16.86731777504993],[122,-30,79,16.967522341957185],[122,-29,64,16.75441280647421],[122,-29,65,16.75879730641941],[122,-29,66,16.784033652160648],[122,-29,67,16.710806441408263],[122,-29,68,16.58709336933236],[122,-29,69,16.36815478427089],[122,-29,70,16.356569737770922],[122,-29,71,16.354524527218274],[122,-29,72,16.358709782975154],[122,-29,73,16.368146472667576],[122,-29,74,16.38470521613384],[122,-29,75,16.421075221100565],[122,-29,76,16.486715345313648],[122,-29,77,16.576134403922975],[122,-29,78,16.673808569247498],[122,-29,79,16.771627976642794],[122,-28,64,16.55356165286106],[122,-28,65,16.560565731751296],[122,-28,66,16.58518897232822],[122,-28,67,16.548641234900586],[122,-28,68,16.410008040289455],[122,-28,69,16.19621046173896],[122,-28,70,16.17130386974478],[122,-28,71,16.17104080084874],[122,-28,72,16.17631791351091],[122,-28,73,16.18303668720091],[122,-28,74,16.19643997617898],[122,-28,75,16.23442939545916],[122,-28,76,16.299712808769417],[122,-28,77,16.391971386146682],[122,-28,78,16.491052887331435],[122,-28,79,16.587255219289798],[122,-27,64,16.365160922274484],[122,-27,65,16.372070491973403],[122,-27,66,16.394493431915077],[122,-27,67,16.431233251461876],[122,-27,68,16.353896832279194],[122,-27,69,16.151943738398916],[122,-27,70,16.000637247816957],[122,-27,71,15.997906936343295],[122,-27,72,16.002817923185898],[122,-27,73,16.008950653386037],[122,-27,74,16.02079865324662],[122,-27,75,16.054564784285496],[122,-27,76,16.118580972480284],[122,-27,77,16.208986728983145],[122,-27,78,16.305876016934445],[122,-27,79,16.395544275432073],[122,-26,64,16.22520989926925],[122,-26,65,16.233707271372204],[122,-26,66,16.256808538306217],[122,-26,67,16.29187614408405],[122,-26,68,16.20009548051437],[122,-26,69,15.979257937399069],[122,-26,70,15.827083064993616],[122,-26,71,15.810614953239455],[122,-26,72,15.811161337198806],[122,-26,73,15.817491237409593],[122,-26,74,15.831744509796495],[122,-26,75,15.862306852913013],[122,-26,76,15.92463861507501],[122,-26,77,16.013686132616925],[122,-26,78,16.115464871995382],[122,-26,79,16.204848909740548],[122,-25,64,16.035022760388845],[122,-25,65,16.042924050303554],[122,-25,66,16.06855994322892],[122,-25,67,16.098772423160405],[122,-25,68,15.998453238253205],[122,-25,69,15.77383846653193],[122,-25,70,15.6273742513339],[122,-25,71,15.618147289095777],[122,-25,72,15.61855736065947],[122,-25,73,15.622598124166299],[122,-25,74,15.638030998569752],[122,-25,75,15.66721524097054],[122,-25,76,15.72785497169707],[122,-25,77,15.818008588910667],[122,-25,78,15.921471443100227],[122,-25,79,16.00902127554504],[122,-24,64,15.84904692100786],[122,-24,65,15.858301779209505],[122,-24,66,15.885535439051875],[122,-24,67,15.911511308783151],[122,-24,68,15.796141475597356],[122,-24,69,15.605629583603264],[122,-24,70,15.444101944771582],[122,-24,71,15.427850711773564],[122,-24,72,15.42662948422516],[122,-24,73,15.430000595350823],[122,-24,74,15.444149868671726],[122,-24,75,15.472029478084925],[122,-24,76,15.532345060848291],[122,-24,77,15.62115301055935],[122,-24,78,15.725851294410505],[122,-24,79,15.815302280947456],[122,-23,64,15.659185178582186],[122,-23,65,15.671842275983364],[122,-23,66,15.697583813186258],[122,-23,67,15.697063233379977],[122,-23,68,15.553210093300672],[122,-23,69,15.401375204998988],[122,-23,70,15.229695755684375],[122,-23,71,15.227407282233722],[122,-23,72,15.22328509266645],[122,-23,73,15.228945317415654],[122,-23,74,15.241154098617434],[122,-23,75,15.26990667768467],[122,-23,76,15.330659623409385],[122,-23,77,15.417405942161318],[122,-23,78,15.516517297253307],[122,-23,79,15.608747710735269],[122,-22,64,15.481084254795265],[122,-22,65,15.491523921012616],[122,-22,66,15.51708057519537],[122,-22,67,15.515811966338948],[122,-22,68,15.374219639440595],[122,-22,69,15.238798709507321],[122,-22,70,15.042068032003879],[122,-22,71,15.036748736182382],[122,-22,72,15.033382688799529],[122,-22,73,15.035483780410933],[122,-22,74,15.04679598642778],[122,-22,75,15.076904815003731],[122,-22,76,15.137325842565817],[122,-22,77,15.22361630317279],[122,-22,78,15.321479383170066],[122,-22,79,15.413219758585596],[122,-21,64,15.290270143681436],[122,-21,65,15.299199401894144],[122,-21,66,15.327039523273843],[122,-21,67,15.3548721885971],[122,-21,68,15.264913304007731],[122,-21,69,15.119374723309354],[122,-21,70,14.91645947238294],[122,-21,71,14.841234008689144],[122,-21,72,14.836790204287077],[122,-21,73,14.838798334999503],[122,-21,74,14.84689787314923],[122,-21,75,14.87855520351026],[122,-21,76,14.94110520642725],[122,-21,77,15.025505898349333],[122,-21,78,15.12222591784845],[122,-21,79,15.215015601153485],[122,-20,64,15.087937875323796],[122,-20,65,15.096950582558303],[122,-20,66,15.127537071721564],[122,-20,67,15.155663158838953],[122,-20,68,15.083286330816213],[122,-20,69,14.913914241476048],[122,-20,70,14.78175710222482],[122,-20,71,14.67402218124942],[122,-20,72,14.648616681304762],[122,-20,73,14.648652491083318],[122,-20,74,14.657373616060225],[122,-20,75,14.688714009404022],[122,-20,76,14.751156686801203],[122,-20,77,14.835507124460083],[122,-20,78,14.930657198913948],[122,-20,79,15.024460073506953],[122,-19,64,14.892929245363101],[122,-19,65,14.904383094657298],[122,-19,66,14.934589145716432],[122,-19,67,14.96024405454903],[122,-19,68,14.971169886528694],[122,-19,69,14.862561887311491],[122,-19,70,14.745602548459791],[122,-19,71,14.626154355893915],[122,-19,72,14.542358046607449],[122,-19,73,14.488061770403686],[122,-19,74,14.469953047144879],[122,-19,75,14.501882796169657],[122,-19,76,14.56342976371216],[122,-19,77,14.648382124502612],[122,-19,78,14.745820058986522],[122,-19,79,14.841045302072692],[122,-18,64,14.690065685262992],[122,-18,65,14.702531495443074],[122,-18,66,14.731808159829647],[122,-18,67,14.756860087534744],[122,-18,68,14.767896928193478],[122,-18,69,14.68143003680092],[122,-18,70,14.555985069455641],[122,-18,71,14.453940687646254],[122,-18,72,14.394687687463389],[122,-18,73,14.325520149955128],[122,-18,74,14.278053250437438],[122,-18,75,14.310447812400678],[122,-18,76,14.36941130812698],[122,-18,77,14.456577287142043],[122,-18,78,14.553560971342867],[122,-18,79,14.647932593509838],[122,-17,64,14.49580028355253],[122,-17,65,14.507371050446993],[122,-17,66,14.536298489712742],[122,-17,67,14.563747729652661],[122,-17,68,14.579449303750808],[122,-17,69,14.496132437563569],[122,-17,70,14.383297553499537],[122,-17,71,14.299009871623113],[122,-17,72,14.232068846924914],[122,-17,73,14.172142372970086],[122,-17,74,14.086657894763457],[122,-17,75,14.113210584222331],[122,-17,76,14.17323524338952],[122,-17,77,14.262627896368494],[122,-17,78,14.359436439543735],[122,-17,79,14.454096725161852],[122,-16,64,14.308680444629468],[122,-16,65,14.319171733464254],[122,-16,66,14.3471780811393],[122,-16,67,14.376196249317113],[122,-16,68,14.393470321076943],[122,-16,69,14.319717475340441],[122,-16,70,14.262817097973798],[122,-16,71,14.210596147143788],[122,-16,72,14.17056107542544],[122,-16,73,14.106673508531511],[122,-16,74,13.894455759128805],[122,-16,75,13.922222853478724],[122,-16,76,13.98127224972398],[122,-16,77,14.067556638362623],[122,-16,78,14.16753545666351],[122,-16,79,14.262170585852445],[122,-15,64,14.117418949849652],[122,-15,65,14.127131586266792],[122,-15,66,14.156548809828834],[122,-15,67,14.18581106105549],[122,-15,68,14.20207039185702],[122,-15,69,14.138088581474527],[122,-15,70,14.076770817761187],[122,-15,71,14.04335876380049],[122,-15,72,13.97782458474811],[122,-15,73,13.912889380913695],[122,-15,74,13.700505343343627],[122,-15,75,13.727322233119148],[122,-15,76,13.784123651787949],[122,-15,77,13.872943268834454],[122,-15,78,13.970908367843084],[122,-15,79,14.067730520751772],[122,-14,64,13.81419568926807],[122,-14,65,13.824334409566218],[122,-14,66,13.856776441511176],[122,-14,67,13.88705818477261],[122,-14,68,13.902492492201041],[122,-14,69,13.85856361231824],[122,-14,70,13.82061600886399],[122,-14,71,13.797375190223798],[122,-14,72,13.728590983569694],[122,-14,73,13.665363466933208],[122,-14,74,13.506360097424631],[122,-14,75,13.534855957390063],[122,-14,76,13.596346521305149],[122,-14,77,13.682851491846812],[122,-14,78,13.782428381486485],[122,-14,79,13.87909339974869],[122,-13,64,13.622051906781545],[122,-13,65,13.631704148587522],[122,-13,66,13.66539424775212],[122,-13,67,13.699358505804959],[122,-13,68,13.713118534599996],[122,-13,69,13.704942456470572],[122,-13,70,13.688386816692725],[122,-13,71,13.682204631709244],[122,-13,72,13.597958454438608],[122,-13,73,13.53657300840111],[122,-13,74,13.371192706596462],[122,-13,75,13.33756780869269],[122,-13,76,13.400390364646498],[122,-13,77,13.48773086198419],[122,-13,78,13.588050667313896],[122,-13,79,13.684413609770663],[122,-12,64,13.418188676611665],[122,-12,65,13.427650856298026],[122,-12,66,13.458346474679399],[122,-12,67,13.495592754546438],[122,-12,68,13.509487222021495],[122,-12,69,13.50318824559424],[122,-12,70,13.48717588965331],[122,-12,71,13.47899576667494],[122,-12,72,13.3953610971699],[122,-12,73,13.336667386220546],[122,-12,74,13.17899765406272],[122,-12,75,13.146530124954909],[122,-12,76,13.210822370346085],[122,-12,77,13.297056511102108],[122,-12,78,13.397211470729525],[122,-12,79,13.4951095980186],[122,-11,64,13.221343678208102],[122,-11,65,13.231277450190586],[122,-11,66,13.259596147206318],[122,-11,67,13.297648346158589],[122,-11,68,13.315002191421748],[122,-11,69,13.309177167545373],[122,-11,70,13.2931161826982],[122,-11,71,13.286203545324733],[122,-11,72,13.206864130619357],[122,-11,73,13.139105977977145],[122,-11,74,12.991826339349881],[122,-11,75,12.973672332089423],[122,-11,76,13.038104393278859],[122,-11,77,13.123598439642862],[122,-11,78,13.222609514897087],[122,-11,79,13.321621108345003],[122,-10,64,13.019470284906305],[122,-10,65,13.029311325546],[122,-10,66,13.05717936527862],[122,-10,67,13.09295431704371],[122,-10,68,13.111650958920457],[122,-10,69,13.10581578042056],[122,-10,70,13.088306975650019],[122,-10,71,13.082204481426308],[122,-10,72,12.999233065064242],[122,-10,73,12.907657843780239],[122,-10,74,12.801087878409275],[122,-10,75,12.78325992652143],[122,-10,76,12.845929563848173],[122,-10,77,12.929662670443845],[122,-10,78,13.03023447357271],[122,-10,79,13.131745224144499],[122,-9,64,12.834372193678155],[122,-9,65,12.843132723290656],[122,-9,66,12.872472172134316],[122,-9,67,12.906482340587885],[122,-9,68,12.924717390463794],[122,-9,69,12.916095895977703],[122,-9,70,12.897352238102291],[122,-9,71,12.890007662598578],[122,-9,72,12.809949007939986],[122,-9,73,12.672536440781215],[122,-9,74,12.595296750772828],[122,-9,75,12.592381130562902],[122,-9,76,12.654289487736175],[122,-9,77,12.738445011719678],[122,-9,78,12.839206081825651],[122,-9,79,12.94030808181443],[122,-8,64,12.642059353537284],[122,-8,65,12.651996316522371],[122,-8,66,12.68077436423309],[122,-8,67,12.71422267343],[122,-8,68,12.732545336271414],[122,-8,69,12.727399425811575],[122,-8,70,12.709257164933668],[122,-8,71,12.658650210564648],[122,-8,72,12.532736137478455],[122,-8,73,12.38604829950666],[122,-8,74,12.374794759458744],[122,-8,75,12.40333848715061],[122,-8,76,12.460946865249054],[122,-8,77,12.549404001920648],[122,-8,78,12.647910155685967],[122,-8,79,12.75078818437781],[122,-7,64,12.445527880043288],[122,-7,65,12.455547786501917],[122,-7,66,12.487747228628674],[122,-7,67,12.521933572255111],[122,-7,68,12.53881965934332],[122,-7,69,12.534028734264178],[122,-7,70,12.513487054259182],[122,-7,71,12.442028861149648],[122,-7,72,12.327163415508686],[122,-7,73,12.19167330432486],[122,-7,74,12.18703251353246],[122,-7,75,12.213526752861815],[122,-7,76,12.271055312069757],[122,-7,77,12.358537772039718],[122,-7,78,12.456345369048826],[122,-7,79,12.559782600129145],[122,-6,64,12.249804478859652],[122,-6,65,12.25904985027545],[122,-6,66,12.29351257421967],[122,-6,67,12.329184194916568],[122,-6,68,12.347802651128742],[122,-6,69,12.341417810402271],[122,-6,70,12.318088570326596],[122,-6,71,12.242480706424168],[122,-6,72,12.126013352230137],[122,-6,73,11.997457838709686],[122,-6,74,11.996545390120055],[122,-6,75,12.023945153725634],[122,-6,76,12.081139742666814],[122,-6,77,12.165892912856712],[122,-6,78,12.266609687779152],[122,-6,79,12.367861104815296],[122,-5,64,12.053819948166991],[122,-5,65,12.063732728340115],[122,-5,66,12.09782286988529],[122,-5,67,12.134829971414229],[122,-5,68,12.156559552694018],[122,-5,69,12.147301379445114],[122,-5,70,12.12761686851924],[122,-5,71,12.116181352907157],[122,-5,72,12.072632744069509],[122,-5,73,11.992742002014593],[122,-5,74,11.96822937071435],[122,-5,75,11.85589812340782],[122,-5,76,11.885792113361045],[122,-5,77,11.968730053408345],[122,-5,78,12.067496322327884],[122,-5,79,12.170831131800735],[122,-4,64,11.848134510627851],[122,-4,65,11.859359709096061],[122,-4,66,11.890194617125628],[122,-4,67,11.929394484546133],[122,-4,68,11.952752826803534],[122,-4,69,11.94421971309532],[122,-4,70,11.92529879509337],[122,-4,71,11.91155454395321],[122,-4,72,11.861777755751378],[122,-4,73,11.790747797740764],[122,-4,74,11.753495656253413],[122,-4,75,11.651025229795158],[122,-4,76,11.690792888503973],[122,-4,77,11.775304858224416],[122,-4,78,11.872795844345028],[122,-4,79,11.97640017895067],[122,-3,64,11.645421024680552],[122,-3,65,11.657307968502783],[122,-3,66,11.689501606289552],[122,-3,67,11.726593306473333],[122,-3,68,11.749420622427857],[122,-3,69,11.745985469325657],[122,-3,70,11.730498674133301],[122,-3,71,11.718513422262662],[122,-3,72,11.699642820829684],[122,-3,73,11.63265269342922],[122,-3,74,11.593266258860845],[122,-3,75,11.48268653709021],[122,-3,76,11.494012768512432],[122,-3,77,11.577202978962683],[122,-3,78,11.676584735670088],[122,-3,79,11.781199727172286],[122,-2,64,11.445611534579058],[122,-2,65,11.455148383546991],[122,-2,66,11.489063030239153],[122,-2,67,11.528488310499593],[122,-2,68,11.551606661832107],[122,-2,69,11.548865693999414],[122,-2,70,11.535025713775376],[122,-2,71,11.522848995068669],[122,-2,72,11.48828679439773],[122,-2,73,11.433025766733929],[122,-2,74,11.394813527399954],[122,-2,75,11.26956504840799],[122,-2,76,11.29875958755058],[122,-2,77,11.381412793784593],[122,-2,78,11.482637659917177],[122,-2,79,11.589697102920837],[122,-1,64,11.250707754528417],[122,-1,65,11.261133688326193],[122,-1,66,11.29805711260093],[122,-1,67,11.337967797709902],[122,-1,68,11.358658466881609],[122,-1,69,11.355703790625105],[122,-1,70,11.342884281281044],[122,-1,71,11.330966146349553],[122,-1,72,11.326887253885618],[122,-1,73,11.293150941889847],[122,-1,74,11.242358163240283],[122,-1,75,11.061419215852485],[122,-1,76,11.10394420656195],[122,-1,77,11.190527539632692],[122,-1,78,11.29322817350541],[122,-1,79,11.399740535092114],[122,0,64,10.991152220802048],[122,0,65,11.004257146811693],[122,0,66,11.032949156459782],[122,0,67,11.061633676041794],[122,0,68,11.067670271493173],[122,0,69,11.051107645760291],[122,0,70,11.018397786557156],[122,0,71,10.987956566742527],[122,0,72,10.963202999669779],[122,0,73,10.947957890529894],[122,0,74,10.947585338315058],[122,0,75,10.963727576587013],[122,0,76,11.014171141835243],[122,0,77,11.102239753499555],[122,0,78,11.202755957381092],[122,0,79,11.30765578635085],[122,1,64,10.801272434072153],[122,1,65,10.81330024142796],[122,1,66,10.841093341294977],[122,1,67,10.868477885979013],[122,1,68,10.878648323300409],[122,1,69,10.858916529010752],[122,1,70,10.827047575884752],[122,1,71,10.796445005609677],[122,1,72,10.770505130876703],[122,1,73,10.7527083243218],[122,1,74,10.74963249400168],[122,1,75,10.768878008265993],[122,1,76,10.820924729571576],[122,1,77,10.909194117714323],[122,1,78,11.009070769241006],[122,1,79,11.113043810120471],[122,2,64,10.60944545302814],[122,2,65,10.621254916161947],[122,2,66,10.647826760040427],[122,2,67,10.677089300828133],[122,2,68,10.6879202796508],[122,2,69,10.669807150528326],[122,2,70,10.63616694422554],[122,2,71,10.603922494022454],[122,2,72,10.576204296803974],[122,2,73,10.55719911699449],[122,2,74,10.552482839102563],[122,2,75,10.573751640872127],[122,2,76,10.62869745200986],[122,2,77,10.713305926407548],[122,2,78,10.816790194505225],[122,2,79,10.919917903210578],[122,3,64,10.41599775816546],[122,3,65,10.42670541121061],[122,3,66,10.455982489897723],[122,3,67,10.485487902479406],[122,3,68,10.498665646577974],[122,3,69,10.479363804660863],[122,3,70,10.4427987359456],[122,3,71,10.408688543350582],[122,3,72,10.379614767648063],[122,3,73,10.360658127691158],[122,3,74,10.357116628818014],[122,3,75,10.378550960800233],[122,3,76,10.434067120475321],[122,3,77,10.51949125651729],[122,3,78,10.62221240704398],[122,3,79,10.726989686047785],[122,4,64,10.220842866579959],[122,4,65,10.232173030708198],[122,4,66,10.262002056656863],[122,4,67,10.294264430518723],[122,4,68,10.305549543424585],[122,4,69,10.287815677724247],[122,4,70,10.25061454640826],[122,4,71,10.213036564962627],[122,4,72,10.1829092554537],[122,4,73,10.164806006574347],[122,4,74,10.162359973005376],[122,4,75,10.185085034310566],[122,4,76,10.239749240029054],[122,4,77,10.326871420804734],[122,4,78,10.42844762638945],[122,4,79,10.533975394790938],[122,5,64,10.02947470669486],[122,5,65,10.03903190354382],[122,5,66,10.069107740119703],[122,5,67,10.101780784015357],[122,5,68,10.112575447474489],[122,5,69,10.094521976417738],[122,5,70,10.056583223704667],[122,5,71,10.01716122710999],[122,5,72,9.986942579699864],[122,5,73,9.969659603232955],[122,5,74,9.967154883429856],[122,5,75,9.99028088754273],[122,5,76,10.04370687744341],[122,5,77,10.132773568461216],[122,5,78,10.234965327821698],[122,5,79,10.340779331181599],[122,6,64,9.838322636185287],[122,6,65,9.847152371125372],[122,6,66,9.87511803443188],[122,6,67,9.909761856264657],[122,6,68,9.92120992300146],[122,6,69,9.901203370903533],[122,6,70,9.864289523434254],[122,6,71,9.823864568764638],[122,6,72,9.792533275159146],[122,6,73,9.774697575722092],[122,6,74,9.769912490303495],[122,6,75,9.795404699959503],[122,6,76,9.851253903395047],[122,6,77,9.940321240953178],[122,6,78,10.04361034610383],[122,6,79,10.145593247836292],[122,7,64,9.651650168855953],[122,7,65,9.658504791441718],[122,7,66,9.68605384778362],[122,7,67,9.715415910253135],[122,7,68,9.728141436717136],[122,7,69,9.705638442809054],[122,7,70,9.670602094201044],[122,7,71,9.633436825941155],[122,7,72,9.600968865681669],[122,7,73,9.580519722280687],[122,7,74,9.577862691115453],[122,7,75,9.601997311229212],[122,7,76,9.658257812029092],[122,7,77,9.746849126485184],[122,7,78,9.84937996103099],[122,7,79,9.952646570479837],[122,8,64,9.465844014147736],[122,8,65,9.472256362206116],[122,8,66,9.49852715222645],[122,8,67,9.528196302823124],[122,8,68,9.539395488482294],[122,8,69,9.5192098034848],[122,8,70,9.484423929213712],[122,8,71,9.45056371808301],[122,8,72,9.41836515713498],[122,8,73,9.397072720833485],[122,8,74,9.393995016672555],[122,8,75,9.418294792957822],[122,8,76,9.474275072320713],[122,8,77,9.564147588323367],[122,8,78,9.666854207931747],[122,8,79,9.770209784525523],[122,9,64,9.281317724349122],[122,9,65,9.282371064475912],[122,9,66,9.302710077603248],[122,9,67,9.327898695264045],[122,9,68,9.336459687644838],[122,9,69,9.317178416883852],[122,9,70,9.281776411631398],[122,9,71,9.249164879385406],[122,9,72,9.221065488102708],[122,9,73,9.196917255922354],[122,9,74,9.195326853172574],[122,9,75,9.216325598400946],[122,9,76,9.276539979190503],[122,9,77,9.36949539137679],[122,9,78,9.477472515755245],[122,9,79,9.581416397985638],[122,10,64,9.088362635760562],[122,10,65,9.086983800287127],[122,10,66,9.108401561813372],[122,10,67,9.134045462278802],[122,10,68,9.144141299082785],[122,10,69,9.124459598521229],[122,10,70,9.08837224501602],[122,10,71,9.055798712842545],[122,10,72,9.025489241214512],[122,10,73,9.001060303497809],[122,10,74,8.99833470937318],[122,10,75,9.021301985102928],[122,10,76,9.08293389004011],[122,10,77,9.176212797653312],[122,10,78,9.281671853602504],[122,10,79,9.387837371600831],[122,11,64,8.894218687238578],[122,11,65,8.89315575538091],[122,11,66,8.91397468968664],[122,11,67,8.94228510494995],[122,11,68,8.952100904551465],[122,11,69,8.931940018870165],[122,11,70,8.89353177950106],[122,11,71,8.861028666139767],[122,11,72,8.830747066211005],[122,11,73,8.80907287560482],[122,11,74,8.804645762073541],[122,11,75,8.82869827171947],[122,11,76,8.889374102415092],[122,11,77,8.981714303237142],[122,11,78,9.088094223073668],[122,11,79,9.192700041005661],[122,12,64,8.702945595245069],[122,12,65,8.703605130471816],[122,12,66,8.723858496783832],[122,12,67,8.752724619468689],[122,12,68,8.763260803710516],[122,12,69,8.738276203572246],[122,12,70,8.697834072941536],[122,12,71,8.665072654181245],[122,12,72,8.63546451661011],[122,12,73,8.612713446450472],[122,12,74,8.61218163073756],[122,12,75,8.633534240841307],[122,12,76,8.692359876944987],[122,12,77,8.784921550254303],[122,12,78,8.889246119786506],[122,12,79,8.997492692149665],[122,13,64,8.503787881204591],[122,13,65,8.511055993284323],[122,13,66,8.541087400524225],[122,13,67,8.573668350738062],[122,13,68,8.582193483396292],[122,13,69,8.558487838874733],[122,13,70,8.515484994901083],[122,13,71,8.483180626321408],[122,13,72,8.45207312716993],[122,13,73,8.433143222830036],[122,13,74,8.433522335965693],[122,13,75,8.449603907204835],[122,13,76,8.505928010107338],[122,13,77,8.594716788468311],[122,13,78,8.691210960379175],[122,13,79,8.794584411611316],[122,14,64,8.311757243998732],[122,14,65,8.318815278994693],[122,14,66,8.350981091514724],[122,14,67,8.38055519760125],[122,14,68,8.390182656846353],[122,14,69,8.368839973015435],[122,14,70,8.324389057309178],[122,14,71,8.294075911626006],[122,14,72,8.261227042320096],[122,14,73,8.241162856682761],[122,14,74,8.239536293944463],[122,14,75,8.25727726340833],[122,14,76,8.313286427504702],[122,14,77,8.401336105567934],[122,14,78,8.498313698394783],[122,14,79,8.600793436978389],[122,15,64,8.118369772828276],[122,15,65,8.126295958300885],[122,15,66,8.157943568364797],[122,15,67,8.187748927246318],[122,15,68,8.198770320855171],[122,15,69,8.179070284117762],[122,15,70,8.135104153055952],[122,15,71,8.102135406806676],[122,15,72,8.068623230067812],[122,15,73,8.048225516494883],[122,15,74,8.042677692386322],[122,15,75,8.063027997482747],[122,15,76,8.121267461676089],[122,15,77,8.207332464790804],[122,15,78,8.30416055930843],[122,15,79,8.40507597620021],[122,16,64,7.922159328026602],[122,16,65,7.934016772176959],[122,16,66,7.963666770702572],[122,16,67,7.997777153965917],[122,16,68,8.011188163488876],[122,16,69,7.993630207403359],[122,16,70,7.951947073867751],[122,16,71,7.917146156413454],[122,16,72,7.881286487802702],[122,16,73,7.861137463245368],[122,16,74,7.852579270724896],[122,16,75,7.879034465123884],[122,16,76,7.93821820214173],[122,16,77,8.022759790845708],[122,16,78,8.121696526648956],[122,16,79,8.223552885869495],[122,17,64,7.728011866730364],[122,17,65,7.7415593102642095],[122,17,66,7.771762327776625],[122,17,67,7.806850594023356],[122,17,68,7.820875541674104],[122,17,69,7.801991119943992],[122,17,70,7.762247557876333],[122,17,71,7.723824361699855],[122,17,72,7.68651646675443],[122,17,73,7.664356494719312],[122,17,74,7.65761345481569],[122,17,75,7.681627495603647],[122,17,76,7.74296756476838],[122,17,77,7.827449626592224],[122,17,78,7.924608749614339],[122,17,79,8.025858736469953],[122,18,64,7.5373196632782875],[122,18,65,7.5486509647458755],[122,18,66,7.579923992447687],[122,18,67,7.61521214891497],[122,18,68,7.629298018681418],[122,18,69,7.6100621219316515],[122,18,70,7.569718819069067],[122,18,71,7.530300217756599],[122,18,72,7.489568665532409],[122,18,73,7.465400459361904],[122,18,74,7.459464214031195],[122,18,75,7.484120111238738],[122,18,76,7.545368552193033],[122,18,77,7.631154271280993],[122,18,78,7.728132753890707],[122,18,79,7.829744403109526],[122,19,64,7.346760680302574],[122,19,65,7.356001741912586],[122,19,66,7.3892435630173985],[122,19,67,7.423089973883023],[122,19,68,7.4352342292201445],[122,19,69,7.419526986012574],[122,19,70,7.376296874436613],[122,19,71,7.3325000854414695],[122,19,72,7.292374883917954],[122,19,73,7.266690437384451],[122,19,74,7.261250283980736],[122,19,75,7.287620907449087],[122,19,76,7.349755257908607],[122,19,77,7.434463763141665],[122,19,78,7.533237096527438],[122,19,79,7.63646259399626],[122,20,64,7.156945950381021],[122,20,65,7.164626494948485],[122,20,66,7.194929873331857],[122,20,67,7.229406591210678],[122,20,68,7.2404403650495075],[122,20,69,7.225394506001403],[122,20,70,7.181064298242575],[122,20,71,7.1326751859947155],[122,20,72,7.090193530520363],[122,20,73,7.066606806873676],[122,20,74,7.0611306270590655],[122,20,75,7.08916408785562],[122,20,76,7.150175924509944],[122,20,77,7.232833107355124],[122,20,78,7.334440482772046],[122,20,79,7.439836267468296],[122,21,64,6.975289769949007],[122,21,65,6.982718797181619],[122,21,66,7.013974313326932],[122,21,67,7.050065868245715],[122,21,68,7.058364684728216],[122,21,69,7.037495816992102],[122,21,70,6.988884024436937],[122,21,71,6.930492843441243],[122,21,72,6.883532953190881],[122,21,73,6.858097305760892],[122,21,74,6.851621694248756],[122,21,75,6.8802757635758045],[122,21,76,6.938599822546052],[122,21,77,7.022607139512785],[122,21,78,7.125997794416488],[122,21,79,7.233799069429404],[122,22,64,6.780582752307392],[122,22,65,6.788226062557526],[122,22,66,6.822297666987549],[122,22,67,6.8591588152442275],[122,22,68,6.86864922834885],[122,22,69,6.84410113708911],[122,22,70,6.793998920267241],[122,22,71,6.736585700995894],[122,22,72,6.688185798354049],[122,22,73,6.66322113466282],[122,22,74,6.65624121540358],[122,22,75,6.68440500397077],[122,22,76,6.7435288291128614],[122,22,77,6.82743510267038],[122,22,78,6.929691259927811],[122,22,79,7.0361449772594575],[122,23,64,6.5848013946544866],[122,23,65,6.591638424111674],[122,23,66,6.62814685985931],[122,23,67,6.666057517920086],[122,23,68,6.675523775682946],[122,23,69,6.649666501130701],[122,23,70,6.597717416087178],[122,23,71,6.542190829914517],[122,23,72,6.495774722214938],[122,23,73,6.46852047200499],[122,23,74,6.462317232258786],[122,23,75,6.490163605535821],[122,23,76,6.549662988705051],[122,23,77,6.631129273044612],[122,23,78,6.7341917106421585],[122,23,79,6.840701803769568],[122,24,64,6.399251879021687],[122,24,65,6.405040740725444],[122,24,66,6.443052780000219],[122,24,67,6.482501949467449],[122,24,68,6.490929615314654],[122,24,69,6.463016544165306],[122,24,70,6.41117667327573],[122,24,71,6.357667531863298],[122,24,72,6.309095487545525],[122,24,73,6.281904799144627],[122,24,74,6.277573400382713],[122,24,75,6.306487733668488],[122,24,76,6.362959668730095],[122,24,77,6.445217968689516],[122,24,78,6.545958747568611],[122,24,79,6.652947050694957],[122,25,64,6.212486612900794],[122,25,65,6.215194063134301],[122,25,66,6.246639232464508],[122,25,67,6.2794969740772775],[122,25,68,6.287811490863521],[122,25,69,6.25878835389999],[122,25,70,6.208015511136],[122,25,71,6.162885006070733],[122,25,72,6.120379389652018],[122,25,73,6.0949294511394845],[122,25,74,6.094052355998517],[122,25,75,6.120263796050037],[122,25,76,6.173047207964131],[122,25,77,6.255588304567422],[122,25,78,6.353237561552986],[122,25,79,6.458715237379997],[122,26,64,6.021746188191983],[122,26,65,6.024441529261826],[122,26,66,6.0534264893753456],[122,26,67,6.085594105966007],[122,26,68,6.092915016337478],[122,26,69,6.0626862062894835],[122,26,70,6.014973570779614],[122,26,71,5.968662535320124],[122,26,72,5.926243806016675],[122,26,73,5.899544860612843],[122,26,74,5.897139032705328],[122,26,75,5.922247295788566],[122,26,76,5.9763948675336245],[122,26,77,6.0613948821787345],[122,26,78,6.159006945453918],[122,26,79,6.263887950068677],[122,27,64,5.8298813513356365],[122,27,65,5.833093721164122],[122,27,66,5.861309418892705],[122,27,67,5.892389959224992],[122,27,68,5.897270412649892],[122,27,69,5.867671914641636],[122,27,70,5.8197666797634655],[122,27,71,5.774888050345261],[122,27,72,5.733589832783303],[122,27,73,5.705601391875657],[122,27,74,5.7001128621330395],[122,27,75,5.726506195893802],[122,27,76,5.781738413179941],[122,27,77,5.865929859813304],[122,27,78,5.962840503430546],[122,27,79,6.069452208698112],[122,28,64,5.635509842559506],[122,28,65,5.637135605272033],[122,28,66,5.665939141739668],[122,28,67,5.6942013092095785],[122,28,68,5.698384136147701],[122,28,69,5.667931346144085],[122,28,70,5.622239985162364],[122,28,71,5.574565851225992],[122,28,72,5.5339800621049315],[122,28,73,5.5053208922800785],[122,28,74,5.497962087825265],[122,28,75,5.523000852117534],[122,28,76,5.582746684298074],[122,28,77,5.665621833114651],[122,28,78,5.763469437362663],[122,28,79,5.870529935132994],[122,29,64,5.44184076228599],[122,29,65,5.442819849651637],[122,29,66,5.469406721148658],[122,29,67,5.499305832025188],[122,29,68,5.504994174261892],[122,29,69,5.476618238051658],[122,29,70,5.429307855684506],[122,29,71,5.37959496192705],[122,29,72,5.337420210191099],[122,29,73,5.305804472685277],[122,29,74,5.298611168360999],[122,29,75,5.325347900184563],[122,29,76,5.386437950361393],[122,29,77,5.472449765050918],[122,29,78,5.570620666288952],[122,29,79,5.677380019342056],[122,30,64,5.25170081306945],[122,30,65,5.250629069571895],[122,30,66,5.2764205125141554],[122,30,67,5.306487874721279],[122,30,68,5.314746106658257],[122,30,69,5.28402727694109],[122,30,70,5.235052737919937],[122,30,71,5.183631819264347],[122,30,72,5.140074086190171],[122,30,73,5.10882905569296],[122,30,74,5.102248185007543],[122,30,75,5.125686477322008],[122,30,76,5.189209711019594],[122,30,77,5.278075989621828],[122,30,78,5.376918093747929],[122,30,79,5.482085707180767],[122,31,64,5.057904798558111],[122,31,65,5.055801565930275],[122,31,66,5.081143644545251],[122,31,67,5.115808980795051],[122,31,68,5.124845529973444],[122,31,69,5.093574964657428],[122,31,70,5.042856203497315],[122,31,71,4.991539570948047],[122,31,72,4.944346953092898],[122,31,73,4.914244144814696],[122,31,74,4.905263542135887],[122,31,75,4.929407241399881],[122,31,76,4.992143100763027],[122,31,77,5.0818824626729135],[122,31,78,5.182442936441629],[122,31,79,5.287988013656821],[122,32,64,4.872940636054872],[122,32,65,4.871391684016406],[122,32,66,4.898629094912744],[122,32,67,4.93370170443307],[122,32,68,4.944807889630981],[122,32,69,4.914725414145552],[122,32,70,4.8616768451491446],[122,32,71,4.809310753982381],[122,32,72,4.761643938580108],[122,32,73,4.7301038607393435],[122,32,74,4.721024404814799],[122,32,75,4.742682750772346],[122,32,76,4.806339241790078],[122,32,77,4.897065786245793],[122,32,78,5.001487826849572],[122,32,79,5.1070460481021644],[122,33,64,4.684598908918467],[122,33,65,4.683790926409223],[122,33,66,4.712640957961013],[122,33,67,4.753548996119848],[122,33,68,4.764354523366892],[122,33,69,4.73342684698692],[122,33,70,4.678501069724325],[122,33,71,4.620217186110245],[122,33,72,4.5643620305256665],[122,33,73,4.527144298372576],[122,33,74,4.514418385163932],[122,33,75,4.533979645388463],[122,33,76,4.600189075985826],[122,33,77,4.694329999960062],[122,33,78,4.803977411352421],[122,33,79,4.912150461340601],[122,34,64,4.490827579620289],[122,34,65,4.489979179182057],[122,34,66,4.520352852372205],[122,34,67,4.559926393026717],[122,34,68,4.571310163277458],[122,34,69,4.541907726214854],[122,34,70,4.486160211566499],[122,34,71,4.425392523674275],[122,34,72,4.368272054631111],[122,34,73,4.329631259863135],[122,34,74,4.3177850818857],[122,34,75,4.339177785774552],[122,34,76,4.403870735360214],[122,34,77,4.499647123998066],[122,34,78,4.609128101283329],[122,34,79,4.72063805244387],[122,35,64,4.29599977563661],[122,35,65,4.2961949297722155],[122,35,66,4.327357410536409],[122,35,67,4.364380119836084],[122,35,68,4.377773666535388],[122,35,69,4.34928686966025],[122,35,70,4.295472503738522],[122,35,71,4.232108734738267],[122,35,72,4.171789117220786],[122,35,73,4.132842168099181],[122,35,74,4.1212972558583445],[122,35,75,4.143824271784837],[122,35,76,4.212197815645929],[122,35,77,4.305913299978733],[122,35,78,4.417365289221146],[122,35,79,4.528069578368582],[122,36,64,4.093748081450666],[122,36,65,4.095240091877471],[122,36,66,4.125758510158312],[122,36,67,4.162882156970341],[122,36,68,4.173964685188541],[122,36,69,4.149977484372733],[122,36,70,4.097296688491088],[122,36,71,4.0323297873273445],[122,36,72,3.968596101545092],[122,36,73,3.9264410714731772],[122,36,74,3.9179886094087197],[122,36,75,3.9421300332581874],[122,36,76,4.010910282751663],[122,36,77,4.106588343432264],[122,36,78,4.219745625155828],[122,36,79,4.3279107888008665],[122,37,64,3.8939156233038137],[122,37,65,3.8940270932459096],[122,37,66,3.923441505771229],[122,37,67,3.959051892932461],[122,37,68,3.967219895222507],[122,37,69,3.9404465407025318],[122,37,70,3.88858793954682],[122,37,71,3.829495974929268],[122,37,72,3.77224431699407],[122,37,73,3.734273064227267],[122,37,74,3.728743031802649],[122,37,75,3.7536631704747436],[122,37,76,3.8201611994296054],[122,37,77,3.916660876583424],[122,37,78,4.026219084910167],[122,37,79,4.13177407495604],[122,38,64,3.697144036855313],[122,38,65,3.6973302023525005],[122,38,66,3.7291836369039415],[122,38,67,3.766366918592862],[122,38,68,3.7751630931004225],[122,38,69,3.746279398837681],[122,38,70,3.6920742147647654],[122,38,71,3.6317403560718287],[122,38,72,3.5759509245306456],[122,38,73,3.5394914168535836],[122,38,74,3.5343324299704255],[122,38,75,3.5602154216955166],[122,38,76,3.625209426500704],[122,38,77,3.720839983998759],[122,38,78,3.8294946968521413],[122,38,79,3.9345828309624493],[122,39,64,3.503599125655749],[122,39,65,3.5025633548413886],[122,39,66,3.537007784761668],[122,39,67,3.573597551678767],[122,39,68,3.5859731458127118],[122,39,69,3.5537913432989],[122,39,70,3.497915259948504],[122,39,71,3.4382136745884253],[122,39,72,3.382503550873439],[122,39,73,3.346568771498047],[122,39,74,3.340909293543384],[122,39,75,3.3651840677125686],[122,39,76,3.43023050489865],[122,39,77,3.524254740704324],[122,39,78,3.633726588925278],[122,39,79,3.7382734440204897],[122,40,64,3.32198436478674],[122,40,65,3.322703097826486],[122,40,66,3.3572822175132244],[122,40,67,3.394706943715261],[122,40,68,3.4056108248039707],[122,40,69,3.3730145368395448],[122,40,70,3.3173598711564596],[122,40,71,3.2594625063168814],[122,40,72,3.2007370664895496],[122,40,73,3.167027463403079],[122,40,74,3.160209353977696],[122,40,75,3.1833768203370387],[122,40,76,3.2431536780935524],[122,40,77,3.338274998180709],[122,40,78,3.4497625510826615],[122,40,79,3.5574172029701123],[122,41,64,3.1263333810821967],[122,41,65,3.1294007655758356],[122,41,66,3.1645607781456455],[122,41,67,3.2031635585022578],[122,41,68,3.216367823709107],[122,41,69,3.181803297720893],[122,41,70,3.1263000559415772],[122,41,71,3.0676356660811988],[122,41,72,3.007826091893646],[122,41,73,2.9729414594460226],[122,41,74,2.966044329232082],[122,41,75,2.9872874578438147],[122,41,76,3.0450783221066446],[122,41,77,3.1395282385906214],[122,41,78,3.2533124417854644],[122,41,79,3.3613327138808584],[122,42,64,2.932854474392503],[122,42,65,2.935962059680489],[122,42,66,2.971557892325646],[122,42,67,3.0106651842000556],[122,42,68,3.023927399055002],[122,42,69,2.991614437007833],[122,42,70,2.934424204976829],[122,42,71,2.8751900171889124],[122,42,72,2.812794291379672],[122,42,73,2.7771486101690437],[122,42,74,2.769865164999462],[122,42,75,2.7906605380338143],[122,42,76,2.8494783056207575],[122,42,77,2.942792924737304],[122,42,78,3.053250812925882],[122,42,79,3.1631954830819],[122,43,64,2.7396057161350535],[122,43,65,2.7424848591410704],[122,43,66,2.778277414097136],[122,43,67,2.8185397692791145],[122,43,68,2.831798078812524],[122,43,69,2.801900629117416],[122,43,70,2.743461072617957],[122,43,71,2.6800182437581186],[122,43,72,2.6169062800203484],[122,43,73,2.582464637237893],[122,43,74,2.573392309480661],[122,43,75,2.5974817304787714],[122,43,76,2.6537925224716106],[122,43,77,2.746033920004798],[122,43,78,2.8563025257926613],[122,43,79,2.9664081094122383],[122,44,64,2.5351548633662757],[122,44,65,2.541803240616826],[122,44,66,2.578266652093968],[122,44,67,2.6169196016346365],[122,44,68,2.6318750883961815],[122,44,69,2.6013043652528722],[122,44,70,2.5415391951137636],[122,44,71,2.4794328548065963],[122,44,72,2.4126154768683716],[122,44,73,2.3776559609490304],[122,44,74,2.3683837020882597],[122,44,75,2.3923569726194884],[122,44,76,2.4484631103509944],[122,44,77,2.5409675967073904],[122,44,78,2.650288461512614],[122,44,79,2.762353102488476],[122,45,64,2.33433019603462],[122,45,65,2.346305882172057],[122,45,66,2.385382101785633],[122,45,67,2.430096528228121],[122,45,68,2.452151900933747],[122,45,69,2.4251147892872376],[122,45,70,2.367569007867937],[122,45,71,2.2996699579266093],[122,45,72,2.2264079488342086],[122,45,73,2.184780426156388],[122,45,74,2.176608913622773],[122,45,75,2.1997193463605518],[122,45,76,2.257245296207806],[122,45,77,2.348514855783634],[122,45,78,2.455316256949724],[122,45,79,2.5656624860502357],[122,46,64,2.1429105933397623],[122,46,65,2.1521955304535334],[122,46,66,2.1892795763089548],[122,46,67,2.2358101685618395],[122,46,68,2.2564940671626332],[122,46,69,2.2336040862917983],[122,46,70,2.175010750832392],[122,46,71,2.105027380330586],[122,46,72,2.033671171531802],[122,46,73,1.9911550376517173],[122,46,74,1.9813625294937105],[122,46,75,2.004056440566073],[122,46,76,2.0622883097832387],[122,46,77,2.152774750362251],[122,46,78,2.2580297049008964],[122,46,79,2.3713082039493467],[122,47,64,1.9495642423530084],[122,47,65,1.9578543781078044],[122,47,66,1.9949442578772691],[122,47,67,2.040138960014489],[122,47,68,2.0616603468155335],[122,47,69,2.040289521756029],[122,47,70,1.9813318227301582],[122,47,71,1.9134175649032001],[122,47,72,1.8392237977875794],[122,47,73,1.794752185721425],[122,47,74,1.7857052284345813],[122,47,75,1.8073888093275505],[122,47,76,1.8651318764593123],[122,47,77,1.958871743965698],[122,47,78,2.0636064787126966],[122,47,79,2.1763868285750654],[122,48,64,1.7686486347049477],[122,48,65,1.7758357471470994],[122,48,66,1.8155036144686063],[122,48,67,1.8616984628619135],[122,48,68,1.8807463606225323],[122,48,69,1.8586750793351419],[122,48,70,1.8027224169420437],[122,48,71,1.7340331314356405],[122,48,72,1.6592226861533976],[122,48,73,1.6134038433630264],[122,48,74,1.602930597801905],[122,48,75,1.62448960444615],[122,48,76,1.6819346943968005],[122,48,77,1.7755278543807944],[122,48,78,1.8829333759261675],[122,48,79,1.9961826453957359],[122,49,64,1.5643355614717824],[122,49,65,1.5710689456437403],[122,49,66,1.6123717300327822],[122,49,67,1.6619905523767244],[122,49,68,1.6794515012466968],[122,49,69,1.6566910465818019],[122,49,70,1.6030351858257954],[122,49,71,1.5372960268683669],[122,49,72,1.4702126393780668],[122,49,73,1.4288269136044227],[122,49,74,1.4157125897260205],[122,49,75,1.4384890318555184],[122,49,76,1.4987175795215675],[122,49,77,1.5888355890913002],[122,49,78,1.6976352608522798],[122,49,79,1.8102180193566924],[122,50,64,1.3702517646797017],[122,50,65,1.3770087092038652],[122,50,66,1.4176806997260785],[122,50,67,1.4678467908264432],[122,50,68,1.4859400925212878],[122,50,69,1.4624948560851334],[122,50,70,1.4085146084627416],[122,50,71,1.3396670127267438],[122,50,72,1.2760664847759655],[122,50,73,1.234800882980881],[122,50,74,1.2220071359663303],[122,50,75,1.244798250956735],[122,50,76,1.3063580121572453],[122,50,77,1.395819486647585],[122,50,78,1.4991827940822389],[122,50,79,1.6146129808459715],[122,51,64,1.1760943301632394],[122,51,65,1.1823443777772191],[122,51,66,1.2214638143813983],[122,51,67,1.2709599787431238],[122,51,68,1.289589882561829],[122,51,69,1.2681778330536366],[122,51,70,1.2122425413177447],[122,51,71,1.144117511711275],[122,51,72,1.0811757361368746],[122,51,73,1.0391588805605507],[122,51,74,1.025346428394744],[122,51,75,1.0499123534173829],[122,51,76,1.1144537531747514],[122,51,77,1.2025447022304334],[122,51,78,1.3043448154803179],[122,51,79,1.4195796227949053],[122,52,64,1.0283690304521325],[122,52,65,1.0324060801795647],[122,52,66,1.0732395733837121],[122,52,67,1.1188113875201702],[122,52,68,1.1367567464030415],[122,52,69,1.116336978650832],[122,52,70,1.0603952261907499],[122,52,71,0.9927176219171691],[122,52,72,0.92714099862437],[122,52,73,0.8835643487739239],[122,52,74,0.8724100409617569],[122,52,75,0.8981673309672356],[122,52,76,0.9623478323052278],[122,52,77,1.0514475778558139],[122,52,78,1.1514449057938405],[122,52,79,1.2663503688591868],[122,53,64,0.8419361041832009],[122,53,65,0.843439991618862],[122,53,66,0.8807862367314212],[122,53,67,0.9235196644959703],[122,53,68,0.9391251054655239],[122,53,69,0.9173204567662997],[122,53,70,0.8586693293155225],[122,53,71,0.7898834690225385],[122,53,72,0.7228473381237153],[122,53,73,0.6799127932936118],[122,53,74,0.6704238460076485],[122,53,75,0.6947794370541103],[122,53,76,0.7613824223769351],[122,53,77,0.8506686464370212],[122,53,78,0.9546996370219882],[122,53,79,1.071388917825602],[122,54,64,0.6512816190092721],[122,54,65,0.651406976164535],[122,54,66,0.6861666874417163],[122,54,67,0.7290673057503279],[122,54,68,0.7442668281106622],[122,54,69,0.7195234136617006],[122,54,70,0.6619612427905247],[122,54,71,0.5923559700951786],[122,54,72,0.525455418064616],[122,54,73,0.483700352080633],[122,54,74,0.4722219060721766],[122,54,75,0.4976632959837998],[122,54,76,0.5638125821089595],[122,54,77,0.6539819463681669],[122,54,78,0.7596065830963955],[122,54,79,0.8776805702505919],[122,55,64,0.45749884470209307],[122,55,65,0.4574453205601105],[122,55,66,0.4920627140809378],[122,55,67,0.5362937247207069],[122,55,68,0.5522516842682478],[122,55,69,0.5262553887226107],[122,55,70,0.464482867981512],[122,55,71,0.3959459858328891],[122,55,72,0.3287256495124753],[122,55,73,0.2836039741473587],[122,55,74,0.27598769630890396],[122,55,75,0.2993488602745843],[122,55,76,0.36543102967812524],[122,55,77,0.458523520710726],[122,55,78,0.5662360030631718],[122,55,79,0.6843225130155178],[122,56,64,0.2782120451213984],[122,56,65,0.2765113749772906],[122,56,66,0.3132038922786756],[122,56,67,0.3579209150179463],[122,56,68,0.37462132860729713],[122,56,69,0.34728850360035607],[122,56,70,0.28165700235344615],[122,56,71,0.21337908578000578],[122,56,72,0.14219699657035245],[122,56,73,0.09910480048301673],[122,56,74,0.09210278379962694],[122,56,75,0.11712531756085881],[122,56,76,0.18378927486327756],[122,56,77,0.27637416352692684],[122,56,78,0.38230005434272196],[122,56,79,0.5019677806126384],[122,57,64,0.07813188950988159],[122,57,65,0.0776412998018893],[122,57,66,0.11356252219892007],[122,57,67,0.15647071449056138],[122,57,68,0.1746078270535032],[122,57,69,0.14457508847033498],[122,57,70,0.0804611369958329],[122,57,71,0.010664440789734275],[122,57,72,-0.017123243817434908],[122,57,73,-0.029355064359033484],[122,57,74,-0.024446279468453153],[122,57,75,-0.01606690845837752],[122,57,76,0.00434953080679687],[122,57,77,0.07115566378853083],[122,57,78,0.17666844433602807],[122,57,79,0.29431097347699786],[122,58,64,0.024942985281157126],[122,58,65,0.018954581618838312],[122,58,66,0.02452901207803114],[122,58,67,0.03161946069476258],[122,58,68,0.03664606481974668],[122,58,69,0.027321733831850367],[122,58,70,0.010097140863522466],[122,58,71,-0.00771976290614837],[122,58,72,-0.027267987166014238],[122,58,73,-0.038844710145561054],[122,58,74,-0.03308539045487749],[122,58,75,-0.023883773356704066],[122,58,76,-0.006378964729541886],[122,58,77,0.02120039215739658],[122,58,78,0.046637914858673135],[122,58,79,0.13115251137103942],[122,59,64,-0.021665114363941557],[122,59,65,-0.02954665908776384],[122,59,66,-0.027402650070671192],[122,59,67,-0.019096727245155057],[122,59,68,-0.015866663992147256],[122,59,69,-0.02390771005164989],[122,59,70,-0.041674640055157475],[122,59,71,-0.06036057736329212],[122,59,72,-0.07644162035485166],[122,59,73,-0.08866130910335318],[122,59,74,-0.08185349586204736],[122,59,75,-0.07192884574417922],[122,59,76,-0.05447633399985746],[122,59,77,-0.026861391558258743],[122,59,78,-0.002726278248388142],[122,59,79,0.023760878266683882],[122,60,64,-0.08064334185194331],[122,60,65,-0.08864861640832201],[122,60,66,-0.08567791215317389],[122,60,67,-0.07915397397897703],[122,60,68,-0.07581673717087627],[122,60,69,-0.08322813685666768],[122,60,70,-0.10196487791931522],[122,60,71,-0.12295239278995884],[122,60,72,-0.13663913763643554],[122,60,73,-0.143991919551606],[122,60,74,-0.1404119660609584],[122,60,75,-0.1282995745152454],[122,60,76,-0.11058295250147525],[122,60,77,-0.08485465140846438],[122,60,78,-0.05944643263281424],[122,60,79,-0.03274879021137597],[122,61,64,-0.11666009656780457],[122,61,65,-0.12428054258852145],[122,61,66,-0.12166533636875831],[122,61,67,-0.11944934259220115],[122,61,68,-0.11635920121011324],[122,61,69,-0.12702018874078788],[122,61,70,-0.14681595513365966],[122,61,71,-0.16858912326569334],[122,61,72,-0.1846476193245557],[122,61,73,-0.1891626796938255],[122,61,74,-0.18737252527339918],[122,61,75,-0.17399027177233473],[122,61,76,-0.1516852639222773],[122,61,77,-0.12708691882092327],[122,61,78,-0.09935363216853038],[122,61,79,-0.07023592959966403],[122,62,64,-0.16666346910810265],[122,62,65,-0.17257746309825367],[122,62,66,-0.1723246567983467],[122,62,67,-0.16822759317075542],[122,62,68,-0.16530219641200186],[122,62,69,-0.17420269948761335],[122,62,70,-0.1939190002634401],[122,62,71,-0.21543280970514622],[122,62,72,-0.23154002049587724],[122,62,73,-0.2394937142920432],[122,62,74,-0.23697969289459997],[122,62,75,-0.2236867057602222],[122,62,76,-0.20139915498374586],[122,62,77,-0.17693329623677534],[122,62,78,-0.14748546672679522],[122,62,79,-0.11790276499767982],[122,63,64,-0.28502590337802486],[122,63,65,-0.2903539088588728],[122,63,66,-0.2902744223570986],[122,63,67,-0.2839307444343403],[122,63,68,-0.28051829414531115],[122,63,69,-0.2906175388475185],[122,63,70,-0.30903421054395763],[122,63,71,-0.3273383578266395],[122,63,72,-0.34320421164718196],[122,63,73,-0.35145391531143233],[122,63,74,-0.35161856122921537],[122,63,75,-0.3372410285824872],[122,63,76,-0.31438248863350615],[122,63,77,-0.28851188238042336],[122,63,78,-0.2568567631878417],[122,63,79,-0.22545170154086855],[122,64,64,-0.32005683113951033],[122,64,65,-0.32683565099786127],[122,64,66,-0.326320954099799],[122,64,67,-0.3207200935503762],[122,64,68,-0.31920499472512803],[122,64,69,-0.32957685791152935],[122,64,70,-0.34918541204848313],[122,64,71,-0.3665451018924196],[122,64,72,-0.38124759862578245],[122,64,73,-0.3925762592040142],[122,64,74,-0.39283143494548545],[122,64,75,-0.3778316806122023],[122,64,76,-0.3559522959143997],[122,64,77,-0.3296974056428096],[122,64,78,-0.29932121767267816],[122,64,79,-0.26597922886927233],[122,65,64,-0.3681138370267165],[122,65,65,-0.3752183283508533],[122,65,66,-0.3743741017394866],[122,65,67,-0.36947881710643415],[122,65,68,-0.3698504955571089],[122,65,69,-0.37821653524451854],[122,65,70,-0.3989675040196314],[122,65,71,-0.41631865533018186],[122,65,72,-0.4329693299205558],[122,65,73,-0.44523043271680385],[122,65,74,-0.4445979769110684],[122,65,75,-0.42981175614646117],[122,65,76,-0.40553907981417053],[122,65,77,-0.3811097840528168],[122,65,78,-0.34985307761662665],[122,65,79,-0.3157201007405288],[122,66,64,-0.4229030535477033],[122,66,65,-0.4296124588309802],[122,66,66,-0.4315616427597203],[122,66,67,-0.4271391429148824],[122,66,68,-0.425170621485591],[122,66,69,-0.434730929301785],[122,66,70,-0.454677990832009],[122,66,71,-0.4720965985396581],[122,66,72,-0.48962912189798263],[122,66,73,-0.503722972205807],[122,66,74,-0.5040685705798609],[122,66,75,-0.4894523535279487],[122,66,76,-0.46689623398871116],[122,66,77,-0.4395884846800657],[122,66,78,-0.40651331888127623],[122,66,79,-0.3722877110630197],[122,67,64,-0.47335609944520457],[122,67,65,-0.4817448989214188],[122,67,66,-0.4839122891646239],[122,67,67,-0.47866909548338893],[122,67,68,-0.4765571628692147],[122,67,69,-0.4832645599051134],[122,67,70,-0.5029684715608829],[122,67,71,-0.521179936391738],[122,67,72,-0.5409400323873299],[122,67,73,-0.5562391848104675],[122,67,74,-0.5553130112394438],[122,67,75,-0.5426236516293511],[122,67,76,-0.5213845515008275],[122,67,77,-0.49241877224520614],[122,67,78,-0.46001551246517347],[122,67,79,-0.4266439478684472],[122,68,64,-0.6166947112160637],[122,68,65,-0.6261024315633283],[122,68,66,-0.6269229824295308],[122,68,67,-0.6242080215145251],[122,68,68,-0.6183683821284967],[122,68,69,-0.6260360613857094],[122,68,70,-0.6437198740302099],[122,68,71,-0.6622123533472067],[122,68,72,-0.6822764160032873],[122,68,73,-0.6992881484385466],[122,68,74,-0.6998065354269889],[122,68,75,-0.6878269828149434],[122,68,76,-0.6639517785590995],[122,68,77,-0.635374122641445],[122,68,78,-0.6035326308087161],[122,68,79,-0.5698345574604227],[122,69,64,-0.6754865590957522],[122,69,65,-0.6809837241464514],[122,69,66,-0.6776374345606702],[122,69,67,-0.6689730925010579],[122,69,68,-0.6612404576413399],[122,69,69,-0.664260858925441],[122,69,70,-0.6795026996593219],[122,69,71,-0.7012070588985773],[122,69,72,-0.7247389942693676],[122,69,73,-0.7440735233543546],[122,69,74,-0.7468329669493684],[122,69,75,-0.7333930002068486],[122,69,76,-0.7094478251834141],[122,69,77,-0.6801441401376396],[122,69,78,-0.6491448422727366],[122,69,79,-0.6126699989680399],[122,70,64,-0.7238473212504334],[122,70,65,-0.7298382036586354],[122,70,66,-0.7261993955935948],[122,70,67,-0.7171564429439881],[122,70,68,-0.7112978612172624],[122,70,69,-0.7152320542506957],[122,70,70,-0.7303525068734491],[122,70,71,-0.7514936603938223],[122,70,72,-0.7740293811849119],[122,70,73,-0.7922181711510308],[122,70,74,-0.7949675469698565],[122,70,75,-0.7810866544088569],[122,70,76,-0.7586277748214606],[122,70,77,-0.7313251929527822],[122,70,78,-0.6991756707597973],[122,70,79,-0.6649132025571274],[122,71,64,-0.7627921221020816],[122,71,65,-0.7705058431583272],[122,71,66,-0.765705818015066],[122,71,67,-0.7561568092612859],[122,71,68,-0.75081039940975],[122,71,69,-0.7559156580105902],[122,71,70,-0.7738421052030393],[122,71,71,-0.7931108208917265],[122,71,72,-0.8150033365577799],[122,71,73,-0.8330307295944418],[122,71,74,-0.8361154933063806],[122,71,75,-0.8228883266311385],[122,71,76,-0.7992597552701629],[122,71,77,-0.7738599816045612],[122,71,78,-0.7422145653594743],[122,71,79,-0.7091105737645778],[122,72,64,-0.8128467378719005],[122,72,65,-0.8187657351142128],[122,72,66,-0.8163990627395057],[122,72,67,-0.805927499044059],[122,72,68,-0.7963701264369767],[122,72,69,-0.8071541926792196],[122,72,70,-0.8242941480793767],[122,72,71,-0.8453265535877644],[122,72,72,-0.8666893612924879],[122,72,73,-0.8834405550946742],[122,72,74,-0.8854151665278222],[122,72,75,-0.8754026843097992],[122,72,76,-0.8531988440097806],[122,72,77,-0.8250919409836724],[122,72,78,-0.7941446651405984],[122,72,79,-0.7621252790438652],[122,73,64,-0.8755262764092806],[122,73,65,-0.8802921267862978],[122,73,66,-0.8785168563512342],[122,73,67,-0.8658613907031667],[122,73,68,-0.8567861066472059],[122,73,69,-0.8655099804124688],[122,73,70,-0.8794793985608904],[122,73,71,-0.8972977099305735],[122,73,72,-0.9142311445585952],[122,73,73,-0.9266865077159772],[122,73,74,-0.9268949078334636],[122,73,75,-0.9180579217203302],[122,73,76,-0.8986241998944106],[122,73,77,-0.8723850244464495],[122,73,78,-0.8496911969224487],[122,73,79,-0.8225994473360517],[122,74,64,-0.9355404537273179],[122,74,65,-0.9396278847262569],[122,74,66,-0.9344334635648225],[122,74,67,-0.9220025838937754],[122,74,68,-0.9163749715374913],[122,74,69,-0.9208921359785878],[122,74,70,-0.933680611309417],[122,74,71,-0.9543840587478891],[122,74,72,-0.9714135681983277],[122,74,73,-0.9825957368800025],[122,74,74,-0.9853356158859141],[122,74,75,-0.9763781156188429],[122,74,76,-0.9552476596523551],[122,74,77,-0.9318134633024944],[122,74,78,-0.9076070639620412],[122,74,79,-0.8800694681218691],[122,75,64,-0.9873540522685813],[122,75,65,-0.9929858778640748],[122,75,66,-0.9844274849621495],[122,75,67,-0.9720953712747714],[122,75,68,-0.9693984302039627],[122,75,69,-0.971032436958073],[122,75,70,-0.98261589037851],[122,75,71,-1.0059295209714079],[122,75,72,-1.0240320615361065],[122,75,73,-1.034780829316055],[122,75,74,-1.038417879670629],[122,75,75,-1.0263611981087113],[122,75,76,-1.0077812116847684],[122,75,77,-0.984409113893901],[122,75,78,-0.9623714975976845],[122,75,79,-0.9330989370378513],[122,76,64,-1.0327758691474256],[122,76,65,-1.0393509289219247],[122,76,66,-1.0327113644927848],[122,76,67,-1.0199756907629143],[122,76,68,-1.0196515308447065],[122,76,69,-1.0218961279572476],[122,76,70,-1.0338407434624854],[122,76,71,-1.0543544694925502],[122,76,72,-1.0757436283347048],[122,76,73,-1.086242593034201],[122,76,74,-1.087685965429285],[122,76,75,-1.0761962634390323],[122,76,76,-1.0571851454814893],[122,76,77,-1.0368448452253651],[122,76,78,-1.014749428825959],[122,76,79,-0.9861343614020285],[122,77,64,-1.082124084888342],[122,77,65,-1.088403940276241],[122,77,66,-1.0839276094335426],[122,77,67,-1.0751627928274294],[122,77,68,-1.0741417806814795],[122,77,69,-1.0772311462634345],[122,77,70,-1.0905508334847052],[122,77,71,-1.1108796306208801],[122,77,72,-1.133365224734225],[122,77,73,-1.1442000725766004],[122,77,74,-1.1455793440224804],[122,77,75,-1.1353277898619711],[122,77,76,-1.1153027012793406],[122,77,77,-1.0924185168877063],[122,77,78,-1.0693025181075917],[122,77,79,-1.0416492972003746],[122,78,64,-1.1347529441642847],[122,78,65,-1.1419070880659707],[122,78,66,-1.1374035227631834],[122,78,67,-1.1256902070672017],[122,78,68,-1.1247163217715936],[122,78,69,-1.1299381209559831],[122,78,70,-1.1425141330743367],[122,78,71,-1.1626315058278465],[122,78,72,-1.1846712976980938],[122,78,73,-1.1978210723710145],[122,78,74,-1.1994541986544398],[122,78,75,-1.1891830914763704],[122,78,76,-1.1692266010837966],[122,78,77,-1.144709608906328],[122,78,78,-1.1214833557389945],[122,78,79,-1.0929527751644947],[122,79,64,-1.1768547162796763],[122,79,65,-1.1842696215228117],[122,79,66,-1.1779556496070902],[122,79,67,-1.1669799793926752],[122,79,68,-1.1626792065910643],[122,79,69,-1.1714218951713777],[122,79,70,-1.1848206322119232],[122,79,71,-1.2055706324622237],[122,79,72,-1.227149693508101],[122,79,73,-1.2415521186186989],[122,79,74,-1.246158493748033],[122,79,75,-1.2355316641679341],[122,79,76,-1.2165216669851087],[122,79,77,-1.193467531823817],[122,79,78,-1.168321724315431],[122,79,79,-1.1385799788558253],[122,80,64,-1.2270462850547768],[122,80,65,-1.2347584553384223],[122,80,66,-1.2279751631766638],[122,80,67,-1.2155376900514405],[122,80,68,-1.2107264741321033],[122,80,69,-1.2190142941301307],[122,80,70,-1.2314720811708804],[122,80,71,-1.2548110851441836],[122,80,72,-1.2777538924226504],[122,80,73,-1.2939952006005149],[122,80,74,-1.3013956226980752],[122,80,75,-1.2917764083755148],[122,80,76,-1.2727689427353048],[122,80,77,-1.2483920158198771],[122,80,78,-1.222365083759483],[122,80,79,-1.1911829098646332],[122,81,64,-1.266901951178116],[122,81,65,-1.2739751246325195],[122,81,66,-1.2664497242472994],[122,81,67,-1.253043836938976],[122,81,68,-1.2490837978264624],[122,81,69,-1.2559512777927413],[122,81,70,-1.2712663588973379],[122,81,71,-1.2975557081417965],[122,81,72,-1.3277268763095542],[122,81,73,-1.3489110113602232],[122,81,74,-1.3539978037517373],[122,81,75,-1.3497020892589064],[122,81,76,-1.3292354756470357],[122,81,77,-1.306937677418493],[122,81,78,-1.280338552912673],[122,81,79,-1.2520744727809077],[122,82,64,-1.3227787570751135],[122,82,65,-1.3290728843643804],[122,82,66,-1.3210715292602904],[122,82,67,-1.3065706872915064],[122,82,68,-1.3021254719740498],[122,82,69,-1.3097307481971558],[122,82,70,-1.327423909075305],[122,82,71,-1.3539737543529482],[122,82,72,-1.3851775451086952],[122,82,73,-1.406488676193026],[122,82,74,-1.411068618117606],[122,82,75,-1.4076675894049213],[122,82,76,-1.3870353096323733],[122,82,77,-1.3639083035795083],[122,82,78,-1.3384850744134829],[122,82,79,-1.3104373181314584],[122,83,64,-1.374124991822953],[122,83,65,-1.3793610081879106],[122,83,66,-1.370749061410249],[122,83,67,-1.354480743331968],[122,83,68,-1.3485954316042743],[122,83,69,-1.3582735039154472],[122,83,70,-1.3782911351593354],[122,83,71,-1.4054756249527265],[122,83,72,-1.4374228803435718],[122,83,73,-1.4584605627390104],[122,83,74,-1.4630977339478775],[122,83,75,-1.4605272828405362],[122,83,76,-1.4414926908391053],[122,83,77,-1.4159140037237992],[122,83,78,-1.390891898984789],[122,83,79,-1.3624653690048554],[122,84,64,-1.4200230867694876],[122,84,65,-1.4243449936457386],[122,84,66,-1.4161416924469106],[122,84,67,-1.4004669986777738],[122,84,68,-1.3936233887946707],[122,84,69,-1.4054339246963434],[122,84,70,-1.4291554747737025],[122,84,71,-1.4587855391362536],[122,84,72,-1.4875899635674728],[122,84,73,-1.507806888994686],[122,84,74,-1.5121904830771702],[122,84,75,-1.5123232510053],[122,84,76,-1.495468287002474],[122,84,77,-1.4661727288029116],[122,84,78,-1.4412431811744104],[122,84,79,-1.4131870105279782],[122,85,64,-1.4857893005805696],[122,85,65,-1.4890110639652607],[122,85,66,-1.4832810316562548],[122,85,67,-1.4682785020305635],[122,85,68,-1.4590292206685875],[122,85,69,-1.4721714684895006],[122,85,70,-1.4978890518641976],[122,85,71,-1.523525990375284],[122,85,72,-1.5478073490559143],[122,85,73,-1.5639705648253037],[122,85,74,-1.571142436590255],[122,85,75,-1.568331946246505],[122,85,76,-1.5508396428785514],[122,85,77,-1.521077794553297],[122,85,78,-1.4897328199311484],[122,85,79,-1.4601578708637428],[122,86,64,-1.5349407670281945],[122,86,65,-1.5427076300904226],[122,86,66,-1.5336953322011855],[122,86,67,-1.521686708483309],[122,86,68,-1.5091271181739498],[122,86,69,-1.5229959744886086],[122,86,70,-1.5479679612355959],[122,86,71,-1.573322621316471],[122,86,72,-1.5991891303878283],[122,86,73,-1.6137226615096167],[122,86,74,-1.6250375623048396],[122,86,75,-1.6205754207835765],[122,86,76,-1.6022776558024696],[122,86,77,-1.5725044505292112],[122,86,78,-1.5411821826958045],[122,86,79,-1.5113344914651092],[122,87,64,-1.5745190008140355],[122,87,65,-1.581469186628226],[122,87,66,-1.573874703971874],[122,87,67,-1.5635403036926399],[122,87,68,-1.5540436257854555],[122,87,69,-1.5649325045216496],[122,87,70,-1.5888381508268177],[122,87,71,-1.6141475280937252],[122,87,72,-1.640105831116549],[122,87,73,-1.6580621361814198],[122,87,74,-1.6705462443207773],[122,87,75,-1.6662824931128382],[122,87,76,-1.6464700617651347],[122,87,77,-1.6194709410608061],[122,87,78,-1.5842110061614745],[122,87,79,-1.5548999082742871],[122,88,64,-1.6233128095235494],[122,88,65,-1.6278680720071306],[122,88,66,-1.6247311129132866],[122,88,67,-1.615299653331237],[122,88,68,-1.604054103096963],[122,88,69,-1.613346747429954],[122,88,70,-1.6366914046751022],[122,88,71,-1.6636375699726955],[122,88,72,-1.6922986909552702],[122,88,73,-1.7116402161983473],[122,88,74,-1.723780173374092],[122,88,75,-1.720114125910737],[122,88,76,-1.6990128538325784],[122,88,77,-1.6706503751073],[122,88,78,-1.6358462252982218],[122,88,79,-1.6029124566501796],[122,89,64,-1.669292723536928],[122,89,65,-1.6739027667023623],[122,89,66,-1.6739214716578419],[122,89,67,-1.665780731843491],[122,89,68,-1.6529543695402458],[122,89,69,-1.6638292589580597],[122,89,70,-1.6848856715809606],[122,89,71,-1.7119198156788218],[122,89,72,-1.742604243840974],[122,89,73,-1.7636569378512168],[122,89,74,-1.7773825653379254],[122,89,75,-1.7731185630264301],[122,89,76,-1.7521945802927938],[122,89,77,-1.7223513575854772],[122,89,78,-1.6857936482189688],[122,89,79,-1.6539990146337764],[122,90,64,-1.72293619407435],[122,90,65,-1.728333211961695],[122,90,66,-1.726865589096331],[122,90,67,-1.719461644118276],[122,90,68,-1.7109638242108274],[122,90,69,-1.7208116245979492],[122,90,70,-1.7396178512050104],[122,90,71,-1.7660128850198336],[122,90,72,-1.7970466064513415],[122,90,73,-1.8210953408867163],[122,90,74,-1.8341140586024032],[122,90,75,-1.8306125273513751],[122,90,76,-1.810469070039123],[122,90,77,-1.778154526037537],[122,90,78,-1.7428639236484422],[122,90,79,-1.709147291594091],[122,91,64,-1.769907337641246],[122,91,65,-1.777363530682442],[122,91,66,-1.7732640653726677],[122,91,67,-1.7627763143262878],[122,91,68,-1.760804838518731],[122,91,69,-1.7693566009458328],[122,91,70,-1.7896737225503485],[122,91,71,-1.8155659541777582],[122,91,72,-1.8489676431534867],[122,91,73,-1.8718621689036241],[122,91,74,-1.883694344882322],[122,91,75,-1.8797730440115812],[122,91,76,-1.8621117270629628],[122,91,77,-1.8290089736752144],[122,91,78,-1.7932823579705781],[122,91,79,-1.7598236329210355],[122,92,64,-1.7960743979467135],[122,92,65,-1.8071415609363448],[122,92,66,-1.803841033147255],[122,92,67,-1.792323034631632],[122,92,68,-1.7915917244917472],[122,92,69,-1.8031782439109634],[122,92,70,-1.8245713144119595],[122,92,71,-1.8514104182341038],[122,92,72,-1.884083126020114],[122,92,73,-1.9094007035232554],[122,92,74,-1.9176585387444338],[122,92,75,-1.9164684372004677],[122,92,76,-1.8989527143113358],[122,92,77,-1.8648653836231044],[122,92,78,-1.83156567720997],[122,92,79,-1.796323070593696],[122,93,64,-1.8321653372008873],[122,93,65,-1.846154137032913],[122,93,66,-1.8463631689912015],[122,93,67,-1.8385374900605516],[122,93,68,-1.8373282888051063],[122,93,69,-1.8501499203698069],[122,93,70,-1.8727858470887613],[122,93,71,-1.903314714738378],[122,93,72,-1.9385029090686035],[122,93,73,-1.9647964076315811],[122,93,74,-1.973742926953527],[122,93,75,-1.971092689154787],[122,93,76,-1.954094515521145],[122,93,77,-1.9178141494170795],[122,93,78,-1.8810309447382279],[122,93,79,-1.8419569186311053],[122,94,64,-1.8796731369506738],[122,94,65,-1.8917426410054468],[122,94,66,-1.892798189191629],[122,94,67,-1.8898673673475808],[122,94,68,-1.8888232121973818],[122,94,69,-1.8990132637546535],[122,94,70,-1.9216152747400215],[122,94,71,-1.9529027185389114],[122,94,72,-1.9856369695799416],[122,94,73,-2.012504031794514],[122,94,74,-2.0221748197005533],[122,94,75,-2.0210448619911676],[122,94,76,-2.002371546651502],[122,94,77,-1.9679846803523886],[122,94,78,-1.9299911827896272],[122,94,79,-1.8897898821334713],[122,95,64,-1.9193165319490122],[122,95,65,-1.9317652375053043],[122,95,66,-1.9338548024047915],[122,95,67,-1.9311065295765455],[122,95,68,-1.9293605521083341],[122,95,69,-1.9407146393419115],[122,95,70,-1.9620166587571588],[122,95,71,-1.994263431924187],[122,95,72,-2.026635543225531],[122,95,73,-2.051685732167273],[122,95,74,-2.0628073171295958],[122,95,75,-2.061396848357697],[122,95,76,-2.046438467641169],[122,95,77,-2.009711788549305],[122,95,78,-1.970136374273815],[122,95,79,-1.9303085178417094],[122,96,64,-1.9666427120113374],[122,96,65,-1.9812472464796793],[122,96,66,-1.983872290623352],[122,96,67,-1.9791396512631019],[122,96,68,-1.9760028609742775],[122,96,69,-1.9893382836153697],[122,96,70,-2.0111422929593163],[122,96,71,-2.042588801316663],[122,96,72,-2.073797269758055],[122,96,73,-2.0973093417068567],[122,96,74,-2.110087857350126],[122,96,75,-2.1088298110631913],[122,96,76,-2.0921829801829155],[122,96,77,-2.061529948981923],[122,96,78,-2.019868509274464],[122,96,79,-1.9794785726952908],[122,97,64,-2.0261359777622094],[122,97,65,-2.035395807358654],[122,97,66,-2.0341944299041184],[122,97,67,-2.0265901124477668],[122,97,68,-2.024012606373564],[122,97,69,-2.036318076562498],[122,97,70,-2.0581506461615815],[122,97,71,-2.086175271340387],[122,97,72,-2.114085763056079],[122,97,73,-2.1352022909261223],[122,97,74,-2.1454665555884604],[122,97,75,-2.14329795702238],[122,97,76,-2.129737253599132],[122,97,77,-2.106752828251604],[122,97,78,-2.0749258313090118],[122,97,79,-2.035668502744545],[122,98,64,-2.0828442807811625],[122,98,65,-2.092548307916997],[122,98,66,-2.088440751624911],[122,98,67,-2.0801582694846563],[122,98,68,-2.078715089050856],[122,98,69,-2.089163629339938],[122,98,70,-2.1114196376430185],[122,98,71,-2.140684155797871],[122,98,72,-2.1689614058337154],[122,98,73,-2.189427986435719],[122,98,74,-2.197822689480441],[122,98,75,-2.19473056651429],[122,98,76,-2.182834272002938],[122,98,77,-2.160274873260648],[122,98,78,-2.129692844317799],[122,98,79,-2.0929236443429353],[122,99,64,-2.1352714074952304],[122,99,65,-2.1455521696924547],[122,99,66,-2.1377370161476774],[122,99,67,-2.1275336234150966],[122,99,68,-2.126979614961828],[122,99,69,-2.1350709625891895],[122,99,70,-2.156737131409066],[122,99,71,-2.186736930399252],[122,99,72,-2.2198075969615725],[122,99,73,-2.23875654934029],[122,99,74,-2.244462436262136],[122,99,75,-2.2425721221796966],[122,99,76,-2.2296710956398407],[122,99,77,-2.2074104254205933],[122,99,78,-2.177817527749018],[122,99,79,-2.1439567505815136],[122,100,64,-2.169050644668154],[122,100,65,-2.171693588143753],[122,100,66,-2.155820799378054],[122,100,67,-2.137584186042426],[122,100,68,-2.132465638699468],[122,100,69,-2.1364315864120558],[122,100,70,-2.151332197925819],[122,100,71,-2.1781820684745234],[122,100,72,-2.2112243337119604],[122,100,73,-2.2279350377524505],[122,100,74,-2.2358584339964334],[122,100,75,-2.231217554469539],[122,100,76,-2.221472762871015],[122,100,77,-2.1990005098529513],[122,100,78,-2.1686489701314238],[122,100,79,-2.1380710130699727],[122,101,64,-2.2195495582568285],[122,101,65,-2.220565546799549],[122,101,66,-2.206595236086302],[122,101,67,-2.1873447964942043],[122,101,68,-2.1790155138600116],[122,101,69,-2.18367328850912],[122,101,70,-2.198646254612643],[122,101,71,-2.225137277292345],[122,101,72,-2.2576840362046933],[122,101,73,-2.275459578570536],[122,101,74,-2.2823277838085154],[122,101,75,-2.278028191729708],[122,101,76,-2.2673043105986936],[122,101,77,-2.245519594547467],[122,101,78,-2.2186828544518016],[122,101,79,-2.189392619520661],[122,102,64,-2.2714508681175833],[122,102,65,-2.2685851178328478],[122,102,66,-2.254545633769003],[122,102,67,-2.235584179072068],[122,102,68,-2.2254435878851004],[122,102,69,-2.2318030549838666],[122,102,70,-2.2451730912352668],[122,102,71,-2.271257033250469],[122,102,72,-2.3028667572643733],[122,102,73,-2.321640150941514],[122,102,74,-2.3266095302057033],[122,102,75,-2.326607947293337],[122,102,76,-2.3127553581551448],[122,102,77,-2.2920513595645433],[122,102,78,-2.2694302070545342],[122,102,79,-2.2402856605466277],[122,103,64,-2.3145202282657675],[122,103,65,-2.309289769822519],[122,103,66,-2.293048885505872],[122,103,67,-2.2729325403398852],[122,103,68,-2.2652552258793914],[122,103,69,-2.270399274555972],[122,103,70,-2.284567630749637],[122,103,71,-2.3140478514252125],[122,103,72,-2.3436403358321782],[122,103,73,-2.3633948819351223],[122,103,74,-2.368244982792375],[122,103,75,-2.3676534852608038],[122,103,76,-2.354815999617087],[122,103,77,-2.335624469594031],[122,103,78,-2.3146274539585026],[122,103,79,-2.2881501668606115],[122,104,64,-2.3641854122487542],[122,104,65,-2.3583979911105746],[122,104,66,-2.340968652078708],[122,104,67,-2.321260216717657],[122,104,68,-2.3148000563267734],[122,104,69,-2.3201303319044437],[122,104,70,-2.335385900098553],[122,104,71,-2.362404596988501],[122,104,72,-2.3909718549396364],[122,104,73,-2.4132080109358434],[122,104,74,-2.41717327558689],[122,104,75,-2.4154920620724987],[122,104,76,-2.4029298208277483],[122,104,77,-2.385451680935941],[122,104,78,-2.36414156296405],[122,104,79,-2.338409346001456],[122,105,64,-2.4181984576622675],[122,105,65,-2.4091342980357715],[122,105,66,-2.386148397880665],[122,105,67,-2.362693746825822],[122,105,68,-2.3560199927068197],[122,105,69,-2.3613343371560123],[122,105,70,-2.3778484221167324],[122,105,71,-2.40628194869104],[122,105,72,-2.435537087834383],[122,105,73,-2.4571421926208465],[122,105,74,-2.4606649114396615],[122,105,75,-2.4578629038007005],[122,105,76,-2.448247746350505],[122,105,77,-2.4288569080440565],[122,105,78,-2.409483067406748],[122,105,79,-2.3864363075757917],[122,106,64,-2.474201137742957],[122,106,65,-2.4651230170285054],[122,106,66,-2.4424955761418694],[122,106,67,-2.4185482158849934],[122,106,68,-2.410579345934052],[122,106,69,-2.4162505664949494],[122,106,70,-2.435133985648444],[122,106,71,-2.459348255727757],[122,106,72,-2.491559539824531],[122,106,73,-2.5135917144488436],[122,106,74,-2.5162827189632138],[122,106,75,-2.510364337106939],[122,106,76,-2.5013309370626913],[122,106,77,-2.482011828137853],[122,106,78,-2.4623509134496904],[122,106,79,-2.4407606450528427],[122,107,64,-2.522689047149233],[122,107,65,-2.515051766001188],[122,107,66,-2.492090780053762],[122,107,67,-2.4694480218661714],[122,107,68,-2.4601211951000357],[122,107,69,-2.4673011549723003],[122,107,70,-2.4862478376707497],[122,107,71,-2.5098616883324785],[122,107,72,-2.5430352399682707],[122,107,73,-2.5652716821657373],[122,107,74,-2.5678131736118686],[122,107,75,-2.5583336923767597],[122,107,76,-2.547472606526621],[122,107,77,-2.5302053733269037],[122,107,78,-2.509959221778651],[122,107,79,-2.487520411775928],[122,108,64,-2.568560535362816],[122,108,65,-2.56287768130944],[122,108,66,-2.5439799903357754],[122,108,67,-2.5227385413651637],[122,108,68,-2.5113686658412773],[122,108,69,-2.518920056664779],[122,108,70,-2.53883329647198],[122,108,71,-2.5636703235200398],[122,108,72,-2.596462101671289],[122,108,73,-2.617077881111686],[122,108,74,-2.62149065129354],[122,108,75,-2.612559939142495],[122,108,76,-2.6001046562278463],[122,108,77,-2.5832526796092727],[122,108,78,-2.5654085026664304],[122,108,79,-2.542530376575814],[122,109,64,-2.6088671938694015],[122,109,65,-2.6085939151328463],[122,109,66,-2.5965272917315527],[122,109,67,-2.579787086898301],[122,109,68,-2.5706692026476663],[122,109,69,-2.57698604259094],[122,109,70,-2.5966258623999425],[122,109,71,-2.623649289834188],[122,109,72,-2.653828768091959],[122,109,73,-2.672205777653887],[122,109,74,-2.677968443870226],[122,109,75,-2.6741025153258025],[122,109,76,-2.657913053917858],[122,109,77,-2.6381574208300353],[122,109,78,-2.621571915808162],[122,109,79,-2.5940512465264467],[122,110,64,-2.6553303784199356],[122,110,65,-2.65684001366931],[122,110,66,-2.6462771718379154],[122,110,67,-2.6279395703603923],[122,110,68,-2.621524279868421],[122,110,69,-2.626157251593261],[122,110,70,-2.645171086705125],[122,110,71,-2.6734477644307906],[122,110,72,-2.7019986046625073],[122,110,73,-2.720782572811294],[122,110,74,-2.727582315000635],[122,110,75,-2.725190822825529],[122,110,76,-2.710512775854685],[122,110,77,-2.6905586668428714],[122,110,78,-2.6703088338377134],[122,110,79,-2.644858288573411],[122,111,64,-2.6972764857825933],[122,111,65,-2.698132627435227],[122,111,66,-2.6879938689495813],[122,111,67,-2.6708961239206483],[122,111,68,-2.662903654291541],[122,111,69,-2.668298405195407],[122,111,70,-2.687204331780078],[122,111,71,-2.7158396082104326],[122,111,72,-2.745852999095628],[122,111,73,-2.764403055390745],[122,111,74,-2.7717893571227767],[122,111,75,-2.773145004966949],[122,111,76,-2.7576579438449564],[122,111,77,-2.740253559746371],[122,111,78,-2.717161117703694],[122,111,79,-2.6926315458424956],[122,112,64,-2.7444199749786837],[122,112,65,-2.74736461836485],[122,112,66,-2.738246794792363],[122,112,67,-2.720518073670274],[122,112,68,-2.71043011132433],[122,112,69,-2.714557708372178],[122,112,70,-2.733294978176472],[122,112,71,-2.76265608075431],[122,112,72,-2.7920597243795537],[122,112,73,-2.8121376235857913],[122,112,74,-2.820200874554591],[122,112,75,-2.822041828466086],[122,112,76,-2.807297517004022],[122,112,77,-2.7867084111055327],[122,112,78,-2.766006835467653],[122,112,79,-2.7410701780711024],[122,113,64,-2.791729848287954],[122,113,65,-2.795530731493482],[122,113,66,-2.7854584859997487],[122,113,67,-2.7678323550373065],[122,113,68,-2.7581237447156877],[122,113,69,-2.7646094387738223],[122,113,70,-2.782216766459401],[122,113,71,-2.810660442844589],[122,113,72,-2.8406376978624377],[122,113,73,-2.8606356295581783],[122,113,74,-2.8700242842189163],[122,113,75,-2.8709154965079224],[122,113,76,-2.856370171240847],[122,113,77,-2.8343796737189524],[122,113,78,-2.8151846886078884],[122,113,79,-2.79330714065431],[122,114,64,-2.8459827756208385],[122,114,65,-2.85108659484149],[122,114,66,-2.8392328332880927],[122,114,67,-2.8220232636365563],[122,114,68,-2.815199289104443],[122,114,69,-2.8204967699532224],[122,114,70,-2.8388087945861415],[122,114,71,-2.8659009897003456],[122,114,72,-2.8954074072212896],[122,114,73,-2.916305261145758],[122,114,74,-2.924761496734475],[122,114,75,-2.92398366085571],[122,114,76,-2.910460592425388],[122,114,77,-2.88684837705665],[122,114,78,-2.87047913779813],[122,114,79,-2.8485879851978986],[122,115,64,-2.8944449307741884],[122,115,65,-2.898516573397624],[122,115,66,-2.885947391693752],[122,115,67,-2.8710024081172194],[122,115,68,-2.8631793424202465],[122,115,69,-2.869389245054462],[122,115,70,-2.888104092191101],[122,115,71,-2.9158822223454197],[122,115,72,-2.9448123089295457],[122,115,73,-2.964404051062076],[122,115,74,-2.973246284208372],[122,115,75,-2.9699736183783747],[122,115,76,-2.95944031820766],[122,115,77,-2.9374528727007396],[122,115,78,-2.9189635756441152],[122,115,79,-2.8935900597238544],[122,116,64,-2.918186639346181],[122,116,65,-2.9231834773600696],[122,116,66,-2.9159035128320747],[122,116,67,-2.9035251255235814],[122,116,68,-2.8977669415523617],[122,116,69,-2.9065847450302384],[122,116,70,-2.9275890878561532],[122,116,71,-2.9592695351198532],[122,116,72,-2.9882150219279855],[122,116,73,-3.0078975041323868],[122,116,74,-3.0168294615549835],[122,116,75,-3.015108234130765],[122,116,76,-3.0028409658175135],[122,116,77,-2.979845438998189],[122,116,78,-2.957116858892416],[122,116,79,-2.9268566456245826],[122,117,64,-2.968873622461514],[122,117,65,-2.968800521517351],[122,117,66,-2.9645988160464625],[122,117,67,-2.9566940352098303],[122,117,68,-2.950138721499232],[122,117,69,-2.959513768562825],[122,117,70,-2.9837321332513382],[122,117,71,-3.0140025693495374],[122,117,72,-3.041340413132827],[122,117,73,-3.0624081683847377],[122,117,74,-3.0755049435434665],[122,117,75,-3.071803618700543],[122,117,76,-3.058839457609991],[122,117,77,-3.0327439739392217],[122,117,78,-3.0004575846978554],[122,117,79,-2.9631887883031895],[122,118,64,-3.015265829100722],[122,118,65,-3.013566252673972],[122,118,66,-3.0091579640591863],[122,118,67,-3.0020255287398814],[122,118,68,-2.9970674858716104],[122,118,69,-3.0059032842693285],[122,118,70,-3.032661294277571],[122,118,71,-3.063480305864466],[122,118,72,-3.089924720231366],[122,118,73,-3.113223815375184],[122,118,74,-3.1265744122011996],[122,118,75,-3.122416776295776],[122,118,76,-3.107190334869516],[122,118,77,-3.082926042166022],[122,118,78,-3.0486499158901825],[122,118,79,-3.0110719754782007],[122,119,64,-3.0537557615045374],[122,119,65,-3.052272744292456],[122,119,66,-3.0492195005168328],[122,119,67,-3.0414292052576135],[122,119,68,-3.0374560335788923],[122,119,69,-3.0491506167496834],[122,119,70,-3.076326508035669],[122,119,71,-3.105421617300222],[122,119,72,-3.1354802112830846],[122,119,73,-3.1579084954998056],[122,119,74,-3.1725476947127054],[122,119,75,-3.169267497003951],[122,119,76,-3.1564380349280707],[122,119,77,-3.1316968843570128],[122,119,78,-3.098439240841452],[122,119,79,-3.0603850428651667],[122,120,64,-3.0989678945379295],[122,120,65,-3.101492333337275],[122,120,66,-3.093847342428457],[122,120,67,-3.0840902562577432],[122,120,68,-3.081153648196791],[122,120,69,-3.0962469612045087],[122,120,70,-3.1238892978407318],[122,120,71,-3.1548611133968456],[122,120,72,-3.184403665860622],[122,120,73,-3.2056567594296737],[122,120,74,-3.220345976283362],[122,120,75,-3.2180563971315537],[122,120,76,-3.204471283250996],[122,120,77,-3.182040232849741],[122,120,78,-3.149442255822244],[122,120,79,-3.1100562564948033],[122,121,64,-3.1428146774539605],[122,121,65,-3.145280972867818],[122,121,66,-3.1316307987424494],[122,121,67,-3.1181166188582696],[122,121,68,-3.1177410753676766],[122,121,69,-3.132387631490849],[122,121,70,-3.1620317428403597],[122,121,71,-3.1925060369821106],[122,121,72,-3.223255325563357],[122,121,73,-3.245898139420028],[122,121,74,-3.2579263039985733],[122,121,75,-3.255530690099532],[122,121,76,-3.246952246761478],[122,121,77,-3.227942405816382],[122,121,78,-3.2054689691946825],[122,121,79,-3.1709029262673383],[122,122,64,-3.1952500237405728],[122,122,65,-3.1975419942241543],[122,122,66,-3.185487410113226],[122,122,67,-3.171070572424614],[122,122,68,-3.1709319007668197],[122,122,69,-3.1876812697531514],[122,122,70,-3.2143341902034677],[122,122,71,-3.2452743140585034],[122,122,72,-3.278191799279242],[122,122,73,-3.301139611857016],[122,122,74,-3.311342692796837],[122,122,75,-3.3067944257958457],[122,122,76,-3.3010481128916513],[122,122,77,-3.282586496087376],[122,122,78,-3.2612699165395793],[122,122,79,-3.2285910495934944],[122,123,64,-3.238138001413887],[122,123,65,-3.2424340168906074],[122,123,66,-3.2325691025096543],[122,123,67,-3.218770355294159],[122,123,68,-3.219690310090734],[122,123,69,-3.2367446335804484],[122,123,70,-3.262301259296307],[122,123,71,-3.293920155072808],[122,123,72,-3.32915549488884],[122,123,73,-3.349986932353878],[122,123,74,-3.3589315733275282],[122,123,75,-3.3562931763035806],[122,123,76,-3.3488903610759935],[122,123,77,-3.3319835426566606],[122,123,78,-3.312546942910818],[122,123,79,-3.27908935597299],[122,124,64,-3.2824589138274356],[122,124,65,-3.2853729933897142],[122,124,66,-3.2764155653090983],[122,124,67,-3.2661257156947103],[122,124,68,-3.2652933281538963],[122,124,69,-3.2822302905942884],[122,124,70,-3.3049333654196316],[122,124,71,-3.3398510375568295],[122,124,72,-3.375791516631934],[122,124,73,-3.398179159487409],[122,124,74,-3.4057593773220165],[122,124,75,-3.4029605097201983],[122,124,76,-3.3977399219438045],[122,124,77,-3.3816728706134582],[122,124,78,-3.362078155904946],[122,124,79,-3.3299993015204183],[122,125,64,-3.327009015590619],[122,125,65,-3.3303943200552104],[122,125,66,-3.322265751331141],[122,125,67,-3.312143611991922],[122,125,68,-3.3145128444588265],[122,125,69,-3.3299322968531064],[122,125,70,-3.35368466892217],[122,125,71,-3.386450540783669],[122,125,72,-3.423051613201065],[122,125,73,-3.445795311520631],[122,125,74,-3.4546155206782165],[122,125,75,-3.454636968708735],[122,125,76,-3.4483303038609483],[122,125,77,-3.433301272779651],[122,125,78,-3.4123090915878356],[122,125,79,-3.3779192216951057],[122,126,64,-3.3706199649210205],[122,126,65,-3.3754930350727506],[122,126,66,-3.3670928544027845],[122,126,67,-3.362612592722142],[122,126,68,-3.3643981058870494],[122,126,69,-3.377410942489372],[122,126,70,-3.4028139146832594],[122,126,71,-3.434664342545089],[122,126,72,-3.473311909074567],[122,126,73,-3.4963419289434525],[122,126,74,-3.5061247657350814],[122,126,75,-3.5070346037518605],[122,126,76,-3.500803906387982],[122,126,77,-3.484573448963884],[122,126,78,-3.459505814717823],[122,126,79,-3.4252703234358757],[122,127,64,-3.4105915396997295],[122,127,65,-3.415773358644124],[122,127,66,-3.406837592995981],[122,127,67,-3.403991902662518],[122,127,68,-3.409760489459321],[122,127,69,-3.423211917361664],[122,127,70,-3.449244817905206],[122,127,71,-3.4821491206054],[122,127,72,-3.5217330457584426],[122,127,73,-3.545923518337028],[122,127,74,-3.559351526220123],[122,127,75,-3.5596996024829792],[122,127,76,-3.5514015528649834],[122,127,77,-3.5359787004363796],[122,127,78,-3.506046070066268],[122,127,79,-3.47556891136094],[122,128,64,-3.458392594668316],[122,128,65,-3.461217775317647],[122,128,66,-3.455019577966469],[122,128,67,-3.451212080266818],[122,128,68,-3.4554287573539866],[122,128,69,-3.471118305657162],[122,128,70,-3.501022165211648],[122,128,71,-3.534253288469233],[122,128,72,-3.575246165192662],[122,128,73,-3.598364543535943],[122,128,74,-3.6083945310304895],[122,128,75,-3.6104575898551907],[122,128,76,-3.601822522354571],[122,128,77,-3.5858780027682933],[122,128,78,-3.554350143830572],[122,128,79,-3.5236515914623676],[122,129,64,-3.5000149645409677],[122,129,65,-3.507449400492792],[122,129,66,-3.503484682549997],[122,129,67,-3.498763812755336],[122,129,68,-3.5028289485039057],[122,129,69,-3.5195111127653713],[122,129,70,-3.552538319839481],[122,129,71,-3.59131044721858],[122,129,72,-3.628024473284114],[122,129,73,-3.6517453543446305],[122,129,74,-3.661612064327817],[122,129,75,-3.661830289702989],[122,129,76,-3.6522272871558665],[122,129,77,-3.629981995376615],[122,129,78,-3.598497363678766],[122,129,79,-3.564588076485493],[122,130,64,-3.5539633269380806],[122,130,65,-3.5609319716716055],[122,130,66,-3.5593545365326764],[122,130,67,-3.551203514952504],[122,130,68,-3.556126559092513],[122,130,69,-3.5757313935390482],[122,130,70,-3.6104364836144502],[122,130,71,-3.6470172113744153],[122,130,72,-3.684911008898829],[122,130,73,-3.7079572731136654],[122,130,74,-3.720234002238919],[122,130,75,-3.76635651987497],[122,130,76,-3.765793817057934],[122,130,77,-3.751017840131555],[122,130,78,-3.731650097589193],[122,130,79,-3.6928465816352634],[122,131,64,-3.6024468696649627],[122,131,65,-3.6097789412088304],[122,131,66,-3.607156127016002],[122,131,67,-3.598395120092324],[122,131,68,-3.604718078233814],[122,131,69,-3.6248663331395266],[122,131,70,-3.661327267323419],[122,131,71,-3.6975372099892487],[122,131,72,-3.7346166914164187],[122,131,73,-3.7575807999249657],[122,131,74,-3.7774433334738924],[122,131,75,-3.8276761231058454],[122,131,76,-3.8248445508831974],[122,131,77,-3.8093142788538126],[122,131,78,-3.794828547815766],[122,131,79,-3.769582643060143],[122,132,64,-3.6424767950825747],[122,132,65,-3.648650766046427],[122,132,66,-3.6456518716356516],[122,132,67,-3.638030808390828],[122,132,68,-3.643221442253657],[122,132,69,-3.6682040724205143],[122,132,70,-3.706591325104226],[122,132,71,-3.7439652773128715],[122,132,72,-3.7800723292837013],[122,132,73,-3.8010211209800624],[122,132,74,-3.8315208574913675],[122,132,75,-3.8843789834438125],[122,132,76,-3.877516592053218],[122,132,77,-3.865500234590371],[122,132,78,-3.8453254026718113],[122,132,79,-3.823477530589527],[122,133,64,-3.6962731982109873],[122,133,65,-3.699227978633978],[122,133,66,-3.691725225935363],[122,133,67,-3.685076055297873],[122,133,68,-3.688290282748258],[122,133,69,-3.713625746114438],[122,133,70,-3.7531779012152042],[122,133,71,-3.793150099651935],[122,133,72,-3.82662126400228],[122,133,73,-3.8507108059306505],[122,133,74,-3.8760254957227445],[122,133,75,-3.907194916387131],[122,133,76,-3.904464737589346],[122,133,77,-3.902451432554454],[122,133,78,-3.892149673308573],[122,133,79,-3.8734377897896857],[122,134,64,-3.7436032017327374],[122,134,65,-3.7452257313615145],[122,134,66,-3.7395970733621846],[122,134,67,-3.7333654001620893],[122,134,68,-3.7395995137485154],[122,134,69,-3.7621877984937435],[122,134,70,-3.801125923109774],[122,134,71,-3.8405703089592462],[122,134,72,-3.8752028188308523],[122,134,73,-3.911246765859875],[122,134,74,-3.931806262262572],[122,134,75,-3.9635298597965742],[122,134,76,-3.9576283347865013],[122,134,77,-3.959227114806123],[122,134,78,-3.950259855590498],[122,134,79,-3.9217845255216934],[122,135,64,-3.7843166165906954],[122,135,65,-3.787237499395649],[122,135,66,-3.782686028193772],[122,135,67,-3.779417078180876],[122,135,68,-3.7850810453952497],[122,135,69,-3.8076214022275017],[122,135,70,-3.8455741695398395],[122,135,71,-3.8840236177338956],[122,135,72,-3.9216055573471227],[122,135,73,-3.9517323874063046],[122,135,74,-3.9767195944576708],[122,135,75,-4.0001799757593055],[122,135,76,-3.9874324692640144],[122,135,77,-3.9962678753943157],[122,135,78,-3.9915027111519805],[122,135,79,-3.959437478989952],[122,136,64,-3.829470331289658],[122,136,65,-3.8340171232160927],[122,136,66,-3.8304696512090572],[122,136,67,-3.829092235551387],[122,136,68,-3.833824702578734],[122,136,69,-3.8555758495089596],[122,136,70,-3.893764754624709],[122,136,71,-3.9334577665012502],[122,136,72,-3.9715081435408397],[122,136,73,-4.002178466685457],[122,136,74,-4.032954825191093],[122,136,75,-4.055051203152626],[122,136,76,-4.040053460052574],[122,136,77,-4.055400539331433],[122,136,78,-4.053339902727991],[122,136,79,-4.020436227148292],[122,137,64,-3.8764336846497236],[122,137,65,-3.8813720723873995],[122,137,66,-3.8787469423376475],[122,137,67,-3.8782174225849597],[122,137,68,-3.882756839714],[122,137,69,-3.9039010376367695],[122,137,70,-3.9409840084119305],[122,137,71,-3.979656625076817],[122,137,72,-4.02139614717486],[122,137,73,-4.047098212375622],[122,137,74,-4.078626673882396],[122,137,75,-4.097666632941606],[122,137,76,-4.083344734593132],[122,137,77,-4.091770650167024],[122,137,78,-4.0912715133897875],[122,137,79,-4.061657744515134],[122,138,64,-3.9311531836776146],[122,138,65,-3.937589341446642],[122,138,66,-3.931991097206859],[122,138,67,-3.9312010854160966],[122,138,68,-3.9393210508545304],[122,138,69,-3.9593536250839736],[122,138,70,-3.992397247593503],[122,138,71,-4.034192123034311],[122,138,72,-4.073462702366636],[122,138,73,-4.09833987468881],[122,138,74,-4.113335937825049],[122,138,75,-4.133246842736443],[122,138,76,-4.1255556251551875],[122,138,77,-4.125927299024721],[122,138,78,-4.123740831946212],[122,138,79,-4.104532409523401],[122,139,64,-3.9794190966207355],[122,139,65,-3.985856382096964],[122,139,66,-3.9811239784254076],[122,139,67,-3.9802704966850095],[122,139,68,-3.9869974549819442],[122,139,69,-4.006296194450661],[122,139,70,-4.0400364682861],[122,139,71,-4.080915185366221],[122,139,72,-4.119762469768675],[122,139,73,-4.1456301225984875],[122,139,74,-4.169641049914221],[122,139,75,-4.1969880124731045],[122,139,76,-4.197831943288348],[122,139,77,-4.190930110414726],[122,139,78,-4.186465662582111],[122,139,79,-4.181418238473477],[122,140,64,-4.0378167740750035],[122,140,65,-4.040588207635197],[122,140,66,-4.03175289194808],[122,140,67,-4.026402327004039],[122,140,68,-4.032394571735743],[122,140,69,-4.050860693619294],[122,140,70,-4.081450054127413],[122,140,71,-4.120133270338078],[122,140,72,-4.161604453587858],[122,140,73,-4.1891529623282375],[122,140,74,-4.211809780542725],[122,140,75,-4.2425719776104724],[122,140,76,-4.246411399281053],[122,140,77,-4.233216140531559],[122,140,78,-4.228206743399461],[122,140,79,-4.228003374834029],[122,141,64,-4.083452781848471],[122,141,65,-4.089112852045116],[122,141,66,-4.082781167988829],[122,141,67,-4.081684621899248],[122,141,68,-4.087529752905218],[122,141,69,-4.107542044241747],[122,141,70,-4.136025530537102],[122,141,71,-4.170596086034031],[122,141,72,-4.2117480206285505],[122,141,73,-4.2403556997090215],[122,141,74,-4.265263493640334],[122,141,75,-4.291073677733636],[122,141,76,-4.290857605133305],[122,141,77,-4.274004365492476],[122,141,78,-4.256304812084162],[122,141,79,-4.25416930883338],[122,142,64,-4.129956287659167],[122,142,65,-4.136050222271887],[122,142,66,-4.1318404804019755],[122,142,67,-4.131278166712893],[122,142,68,-4.135927637822263],[122,142,69,-4.159047344429624],[122,142,70,-4.185325401682711],[122,142,71,-4.219557218625667],[122,142,72,-4.262083215155688],[122,142,73,-4.2922427915308266],[122,142,74,-4.3171589240240555],[122,142,75,-4.338400208797163],[122,142,76,-4.335069909382433],[122,142,77,-4.31712397737941],[122,142,78,-4.30460481129517],[122,142,79,-4.293990772835779],[122,143,64,-4.174305212914772],[122,143,65,-4.180429710003786],[122,143,66,-4.1771247236626206],[122,143,67,-4.176587656460715],[122,143,68,-4.182200056751075],[122,143,69,-4.20392297942566],[122,143,70,-4.233748546552888],[122,143,71,-4.268321437508692],[122,143,72,-4.31089201841647],[122,143,73,-4.340739285466542],[122,143,74,-4.361465470435363],[122,143,75,-4.3783565007956],[122,143,76,-4.373208771360542],[122,143,77,-4.356354779729935],[122,143,78,-4.341104242335455],[122,143,79,-4.324246303610313],[122,144,64,-4.223490910445156],[122,144,65,-4.228763199468307],[122,144,66,-4.224543335083147],[122,144,67,-4.225767255066626],[122,144,68,-4.228753155998604],[122,144,69,-4.250641766745457],[122,144,70,-4.2812848936074035],[122,144,71,-4.315571022014498],[122,144,72,-4.360720966707441],[122,144,73,-4.388841492253716],[122,144,74,-4.412626765378031],[122,144,75,-4.43125281057023],[122,144,76,-4.426588435493707],[122,144,77,-4.413300029653836],[122,144,78,-4.391927914704823],[122,144,79,-4.37717054373162],[122,145,64,-4.27165254491739],[122,145,65,-4.2736098147473],[122,145,66,-4.26732320985634],[122,145,67,-4.266345560790729],[122,145,68,-4.268135796951693],[122,145,69,-4.286768629039524],[122,145,70,-4.3181111804554995],[122,145,71,-4.358600478203711],[122,145,72,-4.4044227965777765],[122,145,73,-4.433951143898966],[122,145,74,-4.448816149176509],[122,145,75,-4.454878941360029],[122,145,76,-4.4482568282023776],[122,145,77,-4.430667968658534],[122,145,78,-4.405525623415305],[122,145,79,-4.381377077794975],[122,146,64,-4.326348530359612],[122,146,65,-4.326354920136103],[122,146,66,-4.319791305222701],[122,146,67,-4.317437091745389],[122,146,68,-4.320704239003097],[122,146,69,-4.336916854983567],[122,146,70,-4.368371338690007],[122,146,71,-4.412096637307202],[122,146,72,-4.45845021895765],[122,146,73,-4.486054770615079],[122,146,74,-4.5035419307806945],[122,146,75,-4.508555812313364],[122,146,76,-4.501736039901587],[122,146,77,-4.483382647405729],[122,146,78,-4.4612808951075476],[122,146,79,-4.435166900709314],[122,147,64,-4.374422854339266],[122,147,65,-4.377311574944501],[122,147,66,-4.370722504228348],[122,147,67,-4.363459790022683],[122,147,68,-4.366884721911969],[122,147,69,-4.381689901629702],[122,147,70,-4.414587590733515],[122,147,71,-4.459529994380286],[122,147,72,-4.503177359628925],[122,147,73,-4.534970635300594],[122,147,74,-4.552489597060706],[122,147,75,-4.558770985171029],[122,147,76,-4.54964912516312],[122,147,77,-4.531068694438226],[122,147,78,-4.50980398618382],[122,147,79,-4.483524130778282],[122,148,64,-4.3920192145291725],[122,148,65,-4.398462252851566],[122,148,66,-4.391656093342693],[122,148,67,-4.386791695863369],[122,148,68,-4.3909982994464904],[122,148,69,-4.408583854223057],[122,148,70,-4.444749197076562],[122,148,71,-4.487853693677479],[122,148,72,-4.534485379959288],[122,148,73,-4.569155902695946],[122,148,74,-4.586499897424128],[122,148,75,-4.592236857723522],[122,148,76,-4.574919834445386],[122,148,77,-4.561119345642689],[122,148,78,-4.527527168421734],[122,148,79,-4.494651563400824],[122,149,64,-4.444327107716914],[122,149,65,-4.449811137612433],[122,149,66,-4.442182733474269],[122,149,67,-4.4340642594437325],[122,149,68,-4.436778972307157],[122,149,69,-4.45773270340448],[122,149,70,-4.49468034192923],[122,149,71,-4.53587974955492],[122,149,72,-4.584935897875791],[122,149,73,-4.620119398325348],[122,149,74,-4.635879243066097],[122,149,75,-4.638606488594426],[122,149,76,-4.6183834010807985],[122,149,77,-4.608781765128347],[122,149,78,-4.571436605388737],[122,149,79,-4.5351898123222805],[122,150,64,-4.492905744694969],[122,150,65,-4.500570772007707],[122,150,66,-4.489987626023008],[122,150,67,-4.482510486521185],[122,150,68,-4.4851562076740565],[122,150,69,-4.505354633982084],[122,150,70,-4.543397060792775],[122,150,71,-4.585879364992828],[122,150,72,-4.634248433450293],[122,150,73,-4.66971934533314],[122,150,74,-4.683732907338427],[122,150,75,-4.6775463040032355],[122,150,76,-4.665628774113933],[122,150,77,-4.654514897592484],[122,150,78,-4.613342512584991],[122,150,79,-4.5788194779507165],[122,151,64,-4.5354813658731254],[122,151,65,-4.546650168240342],[122,151,66,-4.537146930557515],[122,151,67,-4.529778945964213],[122,151,68,-4.531092323519268],[122,151,69,-4.55118112378467],[122,151,70,-4.591520927073701],[122,151,71,-4.634775542601131],[122,151,72,-4.682225140394211],[122,151,73,-4.71558148697629],[122,151,74,-4.73279198836848],[122,151,75,-4.735059988151853],[122,151,76,-4.724564398173043],[122,151,77,-4.7057698734490545],[122,151,78,-4.672966468889984],[122,151,79,-4.628657535358398],[122,152,64,-4.584246514287825],[122,152,65,-4.596028992919557],[122,152,66,-4.589912831738436],[122,152,67,-4.580367312809456],[122,152,68,-4.579192259026294],[122,152,69,-4.59803617539359],[122,152,70,-4.640592855511089],[122,152,71,-4.684132604656481],[122,152,72,-4.729496025671294],[122,152,73,-4.760621629183209],[122,152,74,-4.777966513267811],[122,152,75,-4.775627897620882],[122,152,76,-4.7677920973064785],[122,152,77,-4.751894895331913],[122,152,78,-4.712807125189162],[122,152,79,-4.670240770951339],[122,153,64,-4.629140295001864],[122,153,65,-4.642923034854159],[122,153,66,-4.645290907719084],[122,153,67,-4.638644744591937],[122,153,68,-4.635846259393457],[122,153,69,-4.655232992008531],[122,153,70,-4.695224767220679],[122,153,71,-4.73516203527815],[122,153,72,-4.776152795106567],[122,153,73,-4.80466891882897],[122,153,74,-4.816239274669228],[122,153,75,-4.797498317848533],[122,153,76,-4.793832409876748],[122,153,77,-4.779322225416492],[122,153,78,-4.734063037265887],[122,153,79,-4.690567818105217],[122,154,64,-4.685494631628716],[122,154,65,-4.695664789810207],[122,154,66,-4.7002112666628335],[122,154,67,-4.691158137716096],[122,154,68,-4.689164218027958],[122,154,69,-4.709736089698307],[122,154,70,-4.746754701173508],[122,154,71,-4.784808898264143],[122,154,72,-4.827501776446058],[122,154,73,-4.857795766926397],[122,154,74,-4.873379152861018],[122,154,75,-4.870225608517745],[122,154,76,-4.8663465691670815],[122,154,77,-4.846378452152181],[122,154,78,-4.794145882825609],[122,154,79,-4.743137575268752],[122,155,64,-4.733662763108386],[122,155,65,-4.743357429957927],[122,155,66,-4.746861547360831],[122,155,67,-4.739432924826613],[122,155,68,-4.737596703627692],[122,155,69,-4.756514775043112],[122,155,70,-4.7937545259635295],[122,155,71,-4.830034953976668],[122,155,72,-4.872825827999151],[122,155,73,-4.90280230045201],[122,155,74,-4.920108754667289],[122,155,75,-4.927640085739183],[122,155,76,-4.916838479392129],[122,155,77,-4.892089503027944],[122,155,78,-4.8394533726457345],[122,155,79,-4.789951811892894],[122,156,64,-4.779605740031849],[122,156,65,-4.791516784407403],[122,156,66,-4.7940179097247455],[122,156,67,-4.786038692286906],[122,156,68,-4.78622901869113],[122,156,69,-4.804515962311012],[122,156,70,-4.838172212043532],[122,156,71,-4.8779726748492065],[122,156,72,-4.924396588934887],[122,156,73,-4.9529344854588375],[122,156,74,-4.967625154207515],[122,156,75,-4.974459809563859],[122,156,76,-4.96483814998527],[122,156,77,-4.932226059500548],[122,156,78,-4.876056000215535],[122,156,79,-4.823256770593718],[122,157,64,-4.834439776476473],[122,157,65,-4.842393407896087],[122,157,66,-4.836693973590501],[122,157,67,-4.825432651515073],[122,157,68,-4.824516807031704],[122,157,69,-4.842514284996244],[122,157,70,-4.877722079170958],[122,157,71,-4.920852945573461],[122,157,72,-4.969693924146657],[122,157,73,-5.001330343631655],[122,157,74,-5.015571701277637],[122,157,75,-5.022405778157122],[122,157,76,-5.00882519476581],[122,157,77,-4.96805944395435],[122,157,78,-4.9064428155673365],[122,157,79,-4.8645548841469095],[122,158,64,-4.884438335033002],[122,158,65,-4.891532108073668],[122,158,66,-4.883746774957561],[122,158,67,-4.86923388001697],[122,158,68,-4.870323480631767],[122,158,69,-4.890063485662823],[122,158,70,-4.925489838847484],[122,158,71,-4.969469155477672],[122,158,72,-5.016923150323974],[122,158,73,-5.048884419631044],[122,158,74,-5.062867050325122],[122,158,75,-5.070654860476138],[122,158,76,-5.052070954904576],[122,158,77,-5.000739668822118],[122,158,78,-4.9424962036712525],[122,158,79,-4.907827463787706],[122,159,64,-4.986051313777953],[122,159,65,-4.988903783424802],[122,159,66,-4.971958179822706],[122,159,67,-4.951888129850923],[122,159,68,-4.9444845397254555],[122,159,69,-4.960211423835323],[122,159,70,-4.988256843759658],[122,159,71,-5.024539711016447],[122,159,72,-5.0641649024293205],[122,159,73,-5.089747400355191],[122,159,74,-5.094839185135875],[122,159,75,-5.094376558672381],[122,159,76,-5.077689260225878],[122,159,77,-5.025818034006545],[122,159,78,-4.971434115472856],[122,159,79,-4.9413679705926326],[122,160,64,-5.034379211894444],[122,160,65,-5.037411088627716],[122,160,66,-5.020683047346595],[122,160,67,-4.999570438908413],[122,160,68,-4.992318502671027],[122,160,69,-5.008551075814889],[122,160,70,-5.032327303287987],[122,160,71,-5.068602830530759],[122,160,72,-5.110538563415323],[122,160,73,-5.1362494136215275],[122,160,74,-5.141625867253898],[122,160,75,-5.139367826480027],[122,160,76,-5.117906133044276],[122,160,77,-5.066082586064987],[122,160,78,-5.015337807037595],[122,160,79,-4.983865613047067],[122,161,64,-5.081677827464872],[122,161,65,-5.084071569494463],[122,161,66,-5.0690068848863685],[122,161,67,-5.048530142284084],[122,161,68,-5.04019753350202],[122,161,69,-5.053220302364904],[122,161,70,-5.077665915513676],[122,161,71,-5.113565227402335],[122,161,72,-5.156214525550583],[122,161,73,-5.184907562100809],[122,161,74,-5.189413273262907],[122,161,75,-5.182665467471203],[122,161,76,-5.1651424969197635],[122,161,77,-5.105354285914002],[122,161,78,-5.054803064459609],[122,161,79,-5.013270906667474],[122,162,64,-5.133293972048343],[122,162,65,-5.135321885936488],[122,162,66,-5.121444304415759],[122,162,67,-5.10324664064534],[122,162,68,-5.092580792424286],[122,162,69,-5.1041853032046305],[122,162,70,-5.12705754768762],[122,162,71,-5.164007159659137],[122,162,72,-5.207378623095747],[122,162,73,-5.235839932525928],[122,162,74,-5.2419305844898085],[122,162,75,-5.2337085120838065],[122,162,76,-5.214373916222274],[122,162,77,-5.164744411590108],[122,162,78,-5.105434461125481],[122,162,79,-5.059495498672794],[122,163,64,-5.179651261772882],[122,163,65,-5.179755433755752],[122,163,66,-5.169301889140098],[122,163,67,-5.148724273297294],[122,163,68,-5.138847569668204],[122,163,69,-5.148357101302852],[122,163,70,-5.1741587025606],[122,163,71,-5.213130123862529],[122,163,72,-5.255327018122515],[122,163,73,-5.281730157029389],[122,163,74,-5.287134185974472],[122,163,75,-5.278998091265559],[122,163,76,-5.257407504287613],[122,163,77,-5.234659275937399],[122,163,78,-5.177843375774443],[122,163,79,-5.128707475460671],[122,164,64,-5.20684778903249],[122,164,65,-5.204022798057194],[122,164,66,-5.19286811731285],[122,164,67,-5.172447593710441],[122,164,68,-5.160138064862177],[122,164,69,-5.167823656887374],[122,164,70,-5.194055069913277],[122,164,71,-5.230676036631047],[122,164,72,-5.272542665199708],[122,164,73,-5.297734552983888],[122,164,74,-5.304504812983538],[122,164,75,-5.297637783149385],[122,164,76,-5.280551630931154],[122,164,77,-5.255810500513593],[122,164,78,-5.210640011170087],[122,164,79,-5.171555740687517],[122,165,64,-5.24640186189937],[122,165,65,-5.24873346224911],[122,165,66,-5.241814412694975],[122,165,67,-5.22575229255031],[122,165,68,-5.2145191458519315],[122,165,69,-5.220532293877103],[122,165,70,-5.24543772945034],[122,165,71,-5.279775847245485],[122,165,72,-5.313465434136735],[122,165,73,-5.334061699679842],[122,165,74,-5.34101975956299],[122,165,75,-5.336766831014964],[122,165,76,-5.321609127063441],[122,165,77,-5.295932208366206],[122,165,78,-5.2569661777782715],[122,165,79,-5.217950705147455],[122,166,64,-5.293439446340877],[122,166,65,-5.297785664441447],[122,166,66,-5.289697186923998],[122,166,67,-5.272852371197922],[122,166,68,-5.2588344961507785],[122,166,69,-5.265631374457757],[122,166,70,-5.292043949628422],[122,166,71,-5.323882132663105],[122,166,72,-5.3619857852106785],[122,166,73,-5.3789474818726495],[122,166,74,-5.384926901092566],[122,166,75,-5.382991801248906],[122,166,76,-5.36630519232791],[122,166,77,-5.34412265284575],[122,166,78,-5.3092690246387875],[122,166,79,-5.269370498655347],[122,167,64,-5.334157221567196],[122,167,65,-5.341073571674862],[122,167,66,-5.332118568407207],[122,167,67,-5.31520453647205],[122,167,68,-5.302589882587173],[122,167,69,-5.3109102835390285],[122,167,70,-5.336118480736117],[122,167,71,-5.369518412516435],[122,167,72,-5.407701834381661],[122,167,73,-5.427063950430852],[122,167,74,-5.430074183782722],[122,167,75,-5.429479435833904],[122,167,76,-5.4151131119219755],[122,167,77,-5.3958499764803785],[122,167,78,-5.364147007312747],[122,167,79,-5.322751382678417],[122,168,64,-5.384322027482397],[122,168,65,-5.388548801132737],[122,168,66,-5.376822139390994],[122,168,67,-5.361187619359197],[122,168,68,-5.349099537588464],[122,168,69,-5.35601152483179],[122,168,70,-5.382875456489496],[122,168,71,-5.415330406796165],[122,168,72,-5.4522508475006],[122,168,73,-5.470589140172435],[122,168,74,-5.473996424635758],[122,168,75,-5.473630156985775],[122,168,76,-5.46036492888972],[122,168,77,-5.441029709356564],[122,168,78,-5.413464389948794],[122,168,79,-5.3651311501216785],[122,169,64,-5.440204123394568],[122,169,65,-5.437482848515766],[122,169,66,-5.42031416460923],[122,169,67,-5.398693254113277],[122,169,68,-5.388147896969342],[122,169,69,-5.396165747679294],[122,169,70,-5.423343160886536],[122,169,71,-5.4580399848339916],[122,169,72,-5.49914475422101],[122,169,73,-5.524897711156876],[122,169,74,-5.531760776142104],[122,169,75,-5.529061446352459],[122,169,76,-5.513416032629149],[122,169,77,-5.488935218329028],[122,169,78,-5.463703425828139],[122,169,79,-5.40297031046219],[122,170,64,-5.490851998212144],[122,170,65,-5.489346204549763],[122,170,66,-5.469028328489698],[122,170,67,-5.447398488287872],[122,170,68,-5.438848062575105],[122,170,69,-5.448345681774278],[122,170,70,-5.473526717676395],[122,170,71,-5.509564987961523],[122,170,72,-5.551676933487353],[122,170,73,-5.575925081184557],[122,170,74,-5.585721582479352],[122,170,75,-5.580234739108256],[122,170,76,-5.564761242587106],[122,170,77,-5.541629611849122],[122,170,78,-5.515539351235533],[122,170,79,-5.4573538714009135],[122,171,64,-5.534450785425398],[122,171,65,-5.5351370540784],[122,171,66,-5.514790569972502],[122,171,67,-5.489891602682022],[122,171,68,-5.484147624230999],[122,171,69,-5.493684165179083],[122,171,70,-5.519141073663992],[122,171,71,-5.554474932573331],[122,171,72,-5.599027080384534],[122,171,73,-5.625750705906828],[122,171,74,-5.632573789855866],[122,171,75,-5.628919993663049],[122,171,76,-5.610312520724791],[122,171,77,-5.588763180456689],[122,171,78,-5.560202246903621],[122,171,79,-5.509896024945553],[122,172,64,-5.5783929079254],[122,172,65,-5.577279933941456],[122,172,66,-5.558384534347833],[122,172,67,-5.531772010402471],[122,172,68,-5.526103773742489],[122,172,69,-5.536859552149525],[122,172,70,-5.562658474727095],[122,172,71,-5.600221396085726],[122,172,72,-5.645334398411484],[122,172,73,-5.672594580315026],[122,172,74,-5.677961679966476],[122,172,75,-5.6744183850646355],[122,172,76,-5.65575502037065],[122,172,77,-5.632650224676296],[122,172,78,-5.599224231001332],[122,172,79,-5.559925730206996],[122,173,64,-5.624186507346431],[122,173,65,-5.619723912737594],[122,173,66,-5.601404366459065],[122,173,67,-5.577667354770137],[122,173,68,-5.568946547619451],[122,173,69,-5.582289050939049],[122,173,70,-5.608977143625714],[122,173,71,-5.6461481918841105],[122,173,72,-5.693503444355072],[122,173,73,-5.720760359243755],[122,173,74,-5.728410658299586],[122,173,75,-5.721915463117857],[122,173,76,-5.7047216018937545],[122,173,77,-5.678962106980459],[122,173,78,-5.645280723818391],[122,173,79,-5.606458322229708],[122,174,64,-5.669433410322829],[122,174,65,-5.6633525761131445],[122,174,66,-5.6437075469816635],[122,174,67,-5.6214365820430405],[122,174,68,-5.614512332207042],[122,174,69,-5.627675673156318],[122,174,70,-5.655145258647648],[122,174,71,-5.692361682102865],[122,174,72,-5.739979712767382],[122,174,73,-5.768289551611963],[122,174,74,-5.77583170642292],[122,174,75,-5.770795437066829],[122,174,76,-5.752172941772856],[122,174,77,-5.727463546206129],[122,174,78,-5.690554705300774],[122,174,79,-5.6493356718739625],[122,175,64,-5.7118536386831344],[122,175,65,-5.705014582868161],[122,175,66,-5.683166181932031],[122,175,67,-5.661815498667688],[122,175,68,-5.658070790251381],[122,175,69,-5.670838454038377],[122,175,70,-5.700322556218151],[122,175,71,-5.738418453807694],[122,175,72,-5.784710916470024],[122,175,73,-5.813521707372085],[122,175,74,-5.8212774091899755],[122,175,75,-5.818307008010397],[122,175,76,-5.802600422211809],[122,175,77,-5.775338112527205],[122,175,78,-5.736282149569562],[122,175,79,-5.696323606675023],[122,176,64,-5.758750977514235],[122,176,65,-5.751946475209638],[122,176,66,-5.729401961774867],[122,176,67,-5.70768697290142],[122,176,68,-5.704085074845704],[122,176,69,-5.716849712032523],[122,176,70,-5.745467977630141],[122,176,71,-5.785182459292705],[122,176,72,-5.830105094442452],[122,176,73,-5.859786981529638],[122,176,74,-5.8653527846666345],[122,176,75,-5.864213325410613],[122,176,76,-5.849671394385095],[122,176,77,-5.8229900389213],[122,176,78,-5.781938960878259],[122,176,79,-5.743483399933967],[122,177,64,-5.809858342538357],[122,177,65,-5.800959379968453],[122,177,66,-5.777051852966757],[122,177,67,-5.7555832281926405],[122,177,68,-5.750516953436953],[122,177,69,-5.766409334335028],[122,177,70,-5.795244742435746],[122,177,71,-5.835517026011696],[122,177,72,-5.878601418025088],[122,177,73,-5.911330214076068],[122,177,74,-5.9174854701744275],[122,177,75,-5.914795932231701],[122,177,76,-5.901048480589259],[122,177,77,-5.878268509892401],[122,177,78,-5.859609179097634],[122,177,79,-5.822087362104071],[122,178,64,-5.8618980824298355],[122,178,65,-5.849776863800936],[122,178,66,-5.827614589427666],[122,178,67,-5.807568657275037],[122,178,68,-5.801933384324303],[122,178,69,-5.819649606195202],[122,178,70,-5.849307864333824],[122,178,71,-5.887743238577994],[122,178,72,-5.93278866432304],[122,178,73,-5.964775632797617],[122,178,74,-5.972126027405268],[122,178,75,-5.968385701257179],[122,178,76,-5.953783681119887],[122,178,77,-5.9295663174646585],[122,178,78,-5.9178308738460155],[122,178,79,-5.884028985027991],[122,179,64,-5.908028749815239],[122,179,65,-5.896992580797348],[122,179,66,-5.874115002314011],[122,179,67,-5.853585602014341],[122,179,68,-5.850360946690342],[122,179,69,-5.868626478220667],[122,179,70,-5.8974613890907674],[122,179,71,-5.935858226690098],[122,179,72,-5.980392860820391],[122,179,73,-6.011848701154359],[122,179,74,-6.019667519338928],[122,179,75,-6.0157714912579],[122,179,76,-6.00039740195637],[122,179,77,-5.984521941240686],[122,179,78,-5.973652675828431],[122,179,79,-5.944039911744608],[122,180,64,-5.944463858749779],[122,180,65,-5.9332632970283745],[122,180,66,-5.911964874354199],[122,180,67,-5.891164861353404],[122,180,68,-5.887530702510226],[122,180,69,-5.902890284980057],[122,180,70,-5.935667224188086],[122,180,71,-5.9735819753668045],[122,180,72,-6.016765999402652],[122,180,73,-6.047279619794406],[122,180,74,-6.056709347895775],[122,180,75,-6.053280518212937],[122,180,76,-6.038804547057687],[122,180,77,-6.02949683279474],[122,180,78,-6.013861441597166],[122,180,79,-5.993127315717138],[122,181,64,-5.981096552239422],[122,181,65,-5.975109491288584],[122,181,66,-5.958209999454432],[122,181,67,-5.939359868222134],[122,181,68,-5.934223659001539],[122,181,69,-5.948165518368665],[122,181,70,-5.981566015623433],[122,181,71,-6.019422280679112],[122,181,72,-6.059356654507232],[122,181,73,-6.083904550337942],[122,181,74,-6.093572956368391],[122,181,75,-6.090738695460095],[122,181,76,-6.07901657829911],[122,181,77,-6.069443601443818],[122,181,78,-6.055987554479838],[122,181,79,-6.032888057590156],[122,182,64,-6.027190388657246],[122,182,65,-6.022046007394227],[122,182,66,-6.005800897896433],[122,182,67,-5.98684403610348],[122,182,68,-5.978669629866761],[122,182,69,-5.993322897290918],[122,182,70,-6.026761218649699],[122,182,71,-6.066301151391739],[122,182,72,-6.105082837375377],[122,182,73,-6.128880484812166],[122,182,74,-6.1374270292550035],[122,182,75,-6.137072877952557],[122,182,76,-6.129033387921068],[122,182,77,-6.119444806168943],[122,182,78,-6.113161137385915],[122,182,79,-6.08241479777523],[122,183,64,-6.074120957586617],[122,183,65,-6.06966908431909],[122,183,66,-6.050565821560092],[122,183,67,-6.030055527085016],[122,183,68,-6.024102275247542],[122,183,69,-6.036916241493808],[122,183,70,-6.071429224089068],[122,183,71,-6.11297726015628],[122,183,72,-6.151310261517276],[122,183,73,-6.175962943347376],[122,183,74,-6.185450419383277],[122,183,75,-6.186818244731508],[122,183,76,-6.174670897934343],[122,183,77,-6.154476362561808],[122,183,78,-6.148782789747698],[122,183,79,-6.126461978926216],[122,184,64,-6.123606145648548],[122,184,65,-6.118277547160732],[122,184,66,-6.099833734064967],[122,184,67,-6.077502975239583],[122,184,68,-6.071902718108883],[122,184,69,-6.084948310518215],[122,184,70,-6.117966457825524],[122,184,71,-6.158639842286053],[122,184,72,-6.197302871226852],[122,184,73,-6.223135976282325],[122,184,74,-6.233990584322879],[122,184,75,-6.233744729010608],[122,184,76,-6.220106746979162],[122,184,77,-6.211394846967052],[122,184,78,-6.200291242613388],[122,184,79,-6.178409059703952],[122,185,64,-6.173072969280618],[122,185,65,-6.168881451939585],[122,185,66,-6.1464300691676215],[122,185,67,-6.1242698748763855],[122,185,68,-6.116164044232917],[122,185,69,-6.1302619194429555],[122,185,70,-6.165412577885634],[122,185,71,-6.20596145787795],[122,185,72,-6.244169523287809],[122,185,73,-6.269204708320696],[122,185,74,-6.280212595633354],[122,185,75,-6.278083488221238],[122,185,76,-6.266824736108911],[122,185,77,-6.261070150685091],[122,185,78,-6.252455363204185],[122,185,79,-6.224344955536064],[122,186,64,-6.229133623503373],[122,186,65,-6.222510303147884],[122,186,66,-6.200671155046169],[122,186,67,-6.174235207282042],[122,186,68,-6.16604849218518],[122,186,69,-6.182852785652884],[122,186,70,-6.216704347878281],[122,186,71,-6.257100746338118],[122,186,72,-6.297669752657209],[122,186,73,-6.321700807687957],[122,186,74,-6.331020928088081],[122,186,75,-6.326988730367149],[122,186,76,-6.324553434740547],[122,186,77,-6.314999482926466],[122,186,78,-6.303143942145475],[122,186,79,-6.271615505084046],[122,187,64,-6.281174376757321],[122,187,65,-6.271342549691435],[122,187,66,-6.246937435588663],[122,187,67,-6.221196012857118],[122,187,68,-6.2121267781458345],[122,187,69,-6.229279559645313],[122,187,70,-6.264399080101693],[122,187,71,-6.30683201560346],[122,187,72,-6.349235498523271],[122,187,73,-6.370733336395064],[122,187,74,-6.37885087356721],[122,187,75,-6.370913278230634],[122,187,76,-6.382100172495932],[122,187,77,-6.3772694189884405],[122,187,78,-6.36213116069887],[122,187,79,-6.33382773449659],[122,188,64,-6.334224148285859],[122,188,65,-6.321541690607806],[122,188,66,-6.292921232358553],[122,188,67,-6.266151046486839],[122,188,68,-6.2535982536144585],[122,188,69,-6.266426619688902],[122,188,70,-6.299542143167835],[122,188,71,-6.343025147452944],[122,188,72,-6.3859937515195],[122,188,73,-6.4078722997802435],[122,188,74,-6.412225462989694],[122,188,75,-6.404972002224101],[122,188,76,-6.423634535411153],[122,188,77,-6.421518237738611],[122,188,78,-6.40528946004527],[122,188,79,-6.375091754820616],[122,189,64,-6.3881177559721],[122,189,65,-6.3741446704532665],[122,189,66,-6.342220028502199],[122,189,67,-6.315603017108885],[122,189,68,-6.305583753519258],[122,189,69,-6.313970881890037],[122,189,70,-6.347235399723931],[122,189,71,-6.386898678138302],[122,189,72,-6.429525070161314],[122,189,73,-6.451563716593345],[122,189,74,-6.454375880503144],[122,189,75,-6.446531424932319],[122,189,76,-6.473942580017316],[122,189,77,-6.481377854568745],[122,189,78,-6.466460481373859],[122,189,79,-6.427002921727842],[122,190,64,-6.436203330156927],[122,190,65,-6.4207141980529485],[122,190,66,-6.39171711034012],[122,190,67,-6.365851645807982],[122,190,68,-6.355317448632735],[122,190,69,-6.363085466308675],[122,190,70,-6.393864000397799],[122,190,71,-6.434294844387997],[122,190,72,-6.4775042958673295],[122,190,73,-6.50037098442729],[122,190,74,-6.5052155605417115],[122,190,75,-6.496011173692189],[122,190,76,-6.526236920521269],[122,190,77,-6.537807741097029],[122,190,78,-6.518436740564284],[122,190,79,-6.475506247182906],[122,191,64,-6.480365628359604],[122,191,65,-6.4632910050726124],[122,191,66,-6.4394987940744794],[122,191,67,-6.414077582471579],[122,191,68,-6.406254614755232],[122,191,69,-6.411972854779213],[122,191,70,-6.440970519345434],[122,191,71,-6.483251029172431],[122,191,72,-6.526779228935352],[122,191,73,-6.550151016321466],[122,191,74,-6.556865460347067],[122,191,75,-6.550106131086007],[122,191,76,-6.575254340876367],[122,191,77,-6.587261114727424],[122,191,78,-6.561381090213161],[122,191,79,-6.5201680772008626],[122,192,64,-6.52517271417385],[122,192,65,-6.511014599720483],[122,192,66,-6.487191883659075],[122,192,67,-6.462222788503794],[122,192,68,-6.453295397628222],[122,192,69,-6.46058402743542],[122,192,70,-6.488025535294005],[122,192,71,-6.5316145129511405],[122,192,72,-6.575000501607474],[122,192,73,-6.601167264982075],[122,192,74,-6.606627026990223],[122,192,75,-6.604695857879546],[122,192,76,-6.624105336836414],[122,192,77,-6.640549722969322],[122,192,78,-6.611452060219799],[122,192,79,-6.569578433988355],[122,193,64,-6.5667354755492475],[122,193,65,-6.555582113340623],[122,193,66,-6.53131336108992],[122,193,67,-6.5065827683496495],[122,193,68,-6.4970701923062215],[122,193,69,-6.508445224116667],[122,193,70,-6.534759590534741],[122,193,71,-6.581050876949224],[122,193,72,-6.62999109547226],[122,193,73,-6.660660789518479],[122,193,74,-6.667575256522119],[122,193,75,-6.659732012430661],[122,193,76,-6.656534625023173],[122,193,77,-6.666097280736453],[122,193,78,-6.637198808822706],[122,193,79,-6.592296826544317],[122,194,64,-6.621026046425686],[122,194,65,-6.609536699928563],[122,194,66,-6.587426884505573],[122,194,67,-6.55983855944669],[122,194,68,-6.549511322691121],[122,194,69,-6.559917846991899],[122,194,70,-6.588804264822229],[122,194,71,-6.637158429872532],[122,194,72,-6.685003002594336],[122,194,73,-6.7129674449434535],[122,194,74,-6.719548031128112],[122,194,75,-6.712705673256159],[122,194,76,-6.70149623536028],[122,194,77,-6.715134882202445],[122,194,78,-6.689804242737769],[122,194,79,-6.641055836037795],[122,195,64,-6.6713007568714255],[122,195,65,-6.6610470901509204],[122,195,66,-6.6363863459747225],[122,195,67,-6.608678859560748],[122,195,68,-6.597619468754867],[122,195,69,-6.609630310362146],[122,195,70,-6.640262743172678],[122,195,71,-6.6862334001453],[122,195,72,-6.733287343868402],[122,195,73,-6.762110536891967],[122,195,74,-6.7661586466635875],[122,195,75,-6.7595419025459975],[122,195,76,-6.75809532125401],[122,195,77,-6.768623886161518],[122,195,78,-6.7511339695058865],[122,195,79,-6.6916318217058715],[122,196,64,-6.716776369502501],[122,196,65,-6.712816236986148],[122,196,66,-6.692646504477358],[122,196,67,-6.667327599172471],[122,196,68,-6.663356873956209],[122,196,69,-6.6778896487378985],[122,196,70,-6.711818436268655],[122,196,71,-6.759545219248308],[122,196,72,-6.806771483968785],[122,196,73,-6.836004726693241],[122,196,74,-6.840800353639875],[122,196,75,-6.835562538126795],[122,196,76,-6.839606561394128],[122,196,77,-6.845065900838789],[122,196,78,-6.821114089234744],[122,196,79,-6.767260195776907],[122,197,64,-6.767355857057672],[122,197,65,-6.762083581757672],[122,197,66,-6.740159436284447],[122,197,67,-6.718199998252093],[122,197,68,-6.713761709024044],[122,197,69,-6.725848806992069],[122,197,70,-6.7613545884185315],[122,197,71,-6.809006553016677],[122,197,72,-6.855009795152018],[122,197,73,-6.881814097690581],[122,197,74,-6.888038092653645],[122,197,75,-6.881319196179733],[122,197,76,-6.897469625048431],[122,197,77,-6.903521495281878],[122,197,78,-6.877970760678959],[122,197,79,-6.830173326148224],[122,198,64,-6.818351895366104],[122,198,65,-6.812679332004284],[122,198,66,-6.790081340868526],[122,198,67,-6.768491520200945],[122,198,68,-6.7624279529899916],[122,198,69,-6.773744427491387],[122,198,70,-6.809563025852499],[122,198,71,-6.856795166387574],[122,198,72,-6.904248576751756],[122,198,73,-6.929264986134351],[122,198,74,-6.935588398970513],[122,198,75,-6.930875142182832],[122,198,76,-6.943904177503678],[122,198,77,-6.948195707933612],[122,198,78,-6.924065350222884],[122,198,79,-6.883741978241018],[122,199,64,-6.869069527748929],[122,199,65,-6.860194098479544],[122,199,66,-6.838702076221197],[122,199,67,-6.818033418297412],[122,199,68,-6.808045124799181],[122,199,69,-6.8211515191450705],[122,199,70,-6.858600460941757],[122,199,71,-6.90567538799691],[122,199,72,-6.955000446203626],[122,199,73,-6.979164081344507],[122,199,74,-6.9839631530009],[122,199,75,-6.981557161073334],[122,199,76,-7.003186698859628],[122,199,77,-7.00707191010209],[122,199,78,-6.984964788511574],[122,199,79,-6.9421818909351956],[122,200,64,-6.919108762104656],[122,200,65,-6.907647424270865],[122,200,66,-6.888949432036419],[122,200,67,-6.867944436041622],[122,200,68,-6.855367413776223],[122,200,69,-6.868917398173406],[122,200,70,-6.905346973339691],[122,200,71,-6.952733096702112],[122,200,72,-6.999624287091032],[122,200,73,-7.024720779464652],[122,200,74,-7.031294953026007],[122,200,75,-7.035082385028944],[122,200,76,-7.055270279256978],[122,200,77,-7.053248962347942],[122,200,78,-7.033527656748157],[122,200,79,-6.9927269745124505],[122,201,64,-6.960923703578365],[122,201,65,-6.952954660891904],[122,201,66,-6.9294409022147105],[122,201,67,-6.907224724152258],[122,201,68,-6.894818111375445],[122,201,69,-6.90686801653818],[122,201,70,-6.945002834390354],[122,201,71,-6.990624501875616],[122,201,72,-7.036282410754634],[122,201,73,-7.061077178870163],[122,201,74,-7.073117313004047],[122,201,75,-7.09793431335708],[122,201,76,-7.1179277272839965],[122,201,77,-7.109295428226899],[122,201,78,-7.082033914348122],[122,201,79,-7.042606004948807],[122,202,64,-7.017099528360803],[122,202,65,-7.009012885694425],[122,202,66,-6.985731423210895],[122,202,67,-6.960805239146249],[122,202,68,-6.949966234207557],[122,202,69,-6.9582778688067],[122,202,70,-6.998131644078073],[122,202,71,-7.042713111997515],[122,202,72,-7.088690371827146],[122,202,73,-7.112866416271263],[122,202,74,-7.1243662586177265],[122,202,75,-7.143470301737711],[122,202,76,-7.162042469965669],[122,202,77,-7.154692707390953],[122,202,78,-7.128881948377453],[122,202,79,-7.0901931224713906],[122,203,64,-7.068410718515678],[122,203,65,-7.05963571429942],[122,203,66,-7.0379729124260315],[122,203,67,-7.011940095093172],[122,203,68,-7.001382423012576],[122,203,69,-7.010317509193933],[122,203,70,-7.047743917185052],[122,203,71,-7.090599697843233],[122,203,72,-7.137366014904878],[122,203,73,-7.161672391019167],[122,203,74,-7.172554625172095],[122,203,75,-7.19803485015208],[122,203,76,-7.218561270116114],[122,203,77,-7.217229424052771],[122,203,78,-7.1896144260577195],[122,203,79,-7.150966087627081],[122,204,64,-7.116292822486196],[122,204,65,-7.106099170534055],[122,204,66,-7.079892730661039],[122,204,67,-7.049942534984785],[122,204,68,-7.036034458262562],[122,204,69,-7.044468628221757],[122,204,70,-7.080470001703013],[122,204,71,-7.123742229718972],[122,204,72,-7.167916885906476],[122,204,73,-7.19414231682809],[122,204,74,-7.201659898941859],[122,204,75,-7.2344768706669464],[122,204,76,-7.256763074068166],[122,204,77,-7.2627613648911264],[122,204,78,-7.235081725209753],[122,204,79,-7.193483891681741],[122,205,64,-7.17696812213584],[122,205,65,-7.168445411364308],[122,205,66,-7.138893083332421],[122,205,67,-7.110309927922494],[122,205,68,-7.096431023723257],[122,205,69,-7.107942484904935],[122,205,70,-7.142625039180882],[122,205,71,-7.186433211280159],[122,205,72,-7.229715190680511],[122,205,73,-7.254695818815862],[122,205,74,-7.261601446407714],[122,205,75,-7.254877265540423],[122,205,76,-7.241026645159352],[122,205,77,-7.248018686741065],[122,205,78,-7.245653120879171],[122,205,79,-7.230105457274389],[122,206,64,-7.227264948826561],[122,206,65,-7.21608516742983],[122,206,66,-7.188576065890859],[122,206,67,-7.1603125751525925],[122,206,68,-7.147521619771544],[122,206,69,-7.159590737513208],[122,206,70,-7.194321820463167],[122,206,71,-7.239098690028266],[122,206,72,-7.279384449507891],[122,206,73,-7.304106992470544],[122,206,74,-7.311836459777922],[122,206,75,-7.304060103501342],[122,206,76,-7.296138171315465],[122,206,77,-7.299513891594621],[122,206,78,-7.298105699619981],[122,206,79,-7.286788164516562],[122,207,64,-7.276978601058896],[122,207,65,-7.2663888863507875],[122,207,66,-7.239126715302106],[122,207,67,-7.211014994781052],[122,207,68,-7.200522673691912],[122,207,69,-7.214166672136066],[122,207,70,-7.245990059315549],[122,207,71,-7.288885413554954],[122,207,72,-7.3319092330137625],[122,207,73,-7.353800553706337],[122,207,74,-7.361262563562884],[122,207,75,-7.354872862859999],[122,207,76,-7.346160389444513],[122,207,77,-7.33739076725844],[122,207,78,-7.335418495037008],[122,207,79,-7.3311335039193875],[122,208,64,-7.324204367794085],[122,208,65,-7.313789284183329],[122,208,66,-7.288794830519116],[122,208,67,-7.2629269222492985],[122,208,68,-7.25187498708619],[122,208,69,-7.264971537492401],[122,208,70,-7.29668000170635],[122,208,71,-7.337797885100081],[122,208,72,-7.380823455168173],[122,208,73,-7.403459894361097],[122,208,74,-7.411675973313937],[122,208,75,-7.40479518584999],[122,208,76,-7.383842224102013],[122,208,77,-7.3746105385829495],[122,208,78,-7.3833635129564765],[122,208,79,-7.383882262548147],[122,209,64,-7.371950030974451],[122,209,65,-7.363036456492656],[122,209,66,-7.3371887920637855],[122,209,67,-7.313545269666112],[122,209,68,-7.30365574986526],[122,209,69,-7.315050944145663],[122,209,70,-7.344540081831665],[122,209,71,-7.384966962863976],[122,209,72,-7.430609020259631],[122,209,73,-7.453717702374911],[122,209,74,-7.460665763493431],[122,209,75,-7.452450995440459],[122,209,76,-7.433819420063507],[122,209,77,-7.43076497083847],[122,209,78,-7.43325479178762],[122,209,79,-7.430027405760035],[122,210,64,-7.424292204836176],[122,210,65,-7.416857685523402],[122,210,66,-7.391243844415474],[122,210,67,-7.367005199107931],[122,210,68,-7.357325058296224],[122,210,69,-7.36890697177802],[122,210,70,-7.401122063211541],[122,210,71,-7.440134946799627],[122,210,72,-7.482422164577206],[122,210,73,-7.506670912560998],[122,210,74,-7.5138212843211765],[122,210,75,-7.509879614856919],[122,210,76,-7.489156597318034],[122,210,77,-7.484405483999116],[122,210,78,-7.493855393138857],[122,210,79,-7.4876361194485455],[122,211,64,-7.473682228447549],[122,211,65,-7.466016660377393],[122,211,66,-7.441302337091393],[122,211,67,-7.415757666298247],[122,211,68,-7.405320496138575],[122,211,69,-7.417618168627603],[122,211,70,-7.450132351872904],[122,211,71,-7.490437541238931],[122,211,72,-7.531117765390217],[122,211,73,-7.556928975984133],[122,211,74,-7.564389860829702],[122,211,75,-7.562214751701724],[122,211,76,-7.5410510534188075],[122,211,77,-7.54509114249363],[122,211,78,-7.557577976344171],[122,211,79,-7.550396495277378],[122,212,64,-7.507728208034652],[122,212,65,-7.503345592147875],[122,212,66,-7.482922942459225],[122,212,67,-7.46188570078911],[122,212,68,-7.455314941654695],[122,212,69,-7.471663556683618],[122,212,70,-7.508733884170952],[122,212,71,-7.553147190507477],[122,212,72,-7.5936690753090454],[122,212,73,-7.618190381306487],[122,212,74,-7.626729133684241],[122,212,75,-7.623938223541329],[122,212,76,-7.60121595520122],[122,212,77,-7.603432621027258],[122,212,78,-7.61057292033366],[122,212,79,-7.59791549012535],[122,213,64,-7.559405850618072],[122,213,65,-7.553773796227184],[122,213,66,-7.532825375116372],[122,213,67,-7.510634074313192],[122,213,68,-7.503280082421365],[122,213,69,-7.521965753592706],[122,213,70,-7.55742745382451],[122,213,71,-7.59713223341591],[122,213,72,-7.637742162721509],[122,213,73,-7.662294730852503],[122,213,74,-7.671293070884728],[122,213,75,-7.665157189655233],[122,213,76,-7.67243469177131],[122,213,77,-7.697703856837368],[122,213,78,-7.699775617016791],[122,213,79,-7.647205933752203],[122,214,64,-7.605897738567981],[122,214,65,-7.600252783091132],[122,214,66,-7.5811767770434795],[122,214,67,-7.561577576779972],[122,214,68,-7.553095863765783],[122,214,69,-7.574672582626515],[122,214,70,-7.606688627866868],[122,214,71,-7.64828387122356],[122,214,72,-7.6910730064777395],[122,214,73,-7.716082550598261],[122,214,74,-7.725343012052125],[122,214,75,-7.716548685395261],[122,214,76,-7.732225305785019],[122,214,77,-7.75602292126734],[122,214,78,-7.749888079164587],[122,214,79,-7.69723225662491],[122,215,64,-7.6533041207545995],[122,215,65,-7.650326523160744],[122,215,66,-7.630176313509459],[122,215,67,-7.612084711052334],[122,215,68,-7.6064342816473856],[122,215,69,-7.626414218072344],[122,215,70,-7.658780129992256],[122,215,71,-7.698858252098292],[122,215,72,-7.744177482548781],[122,215,73,-7.7701181654193325],[122,215,74,-7.778454895497909],[122,215,75,-7.7701068825909125],[122,215,76,-7.783894743609784],[122,215,77,-7.800505859497305],[122,215,78,-7.798586757837233],[122,215,79,-7.743522822747875],[122,216,64,-7.700522463319448],[122,216,65,-7.695551991358634],[122,216,66,-7.678674700218012],[122,216,67,-7.660326732825456],[122,216,68,-7.657652491031862],[122,216,69,-7.674762438845745],[122,216,70,-7.708315204348621],[122,216,71,-7.748167093493222],[122,216,72,-7.792962457623262],[122,216,73,-7.819176390603969],[122,216,74,-7.831501520794107],[122,216,75,-7.861635826881816],[122,216,76,-7.88080311584371],[122,216,77,-7.87308327115472],[122,216,78,-7.849473378501937],[122,216,79,-7.793041628359546],[122,217,64,-7.741735063726575],[122,217,65,-7.737153749985648],[122,217,66,-7.7228640574110194],[122,217,67,-7.706402771875828],[122,217,68,-7.705630678827993],[122,217,69,-7.722271605889089],[122,217,70,-7.7578571522468],[122,217,71,-7.800118924368211],[122,217,72,-7.847242905635214],[122,217,73,-7.877603226546868],[122,217,74,-7.902017830625751],[122,217,75,-7.926829896853665],[122,217,76,-7.94339295886535],[122,217,77,-7.924810584912345],[122,217,78,-7.896463438263659],[122,217,79,-7.841802076542721],[122,218,64,-7.794531191112921],[122,218,65,-7.792703205370307],[122,218,66,-7.779254005349998],[122,218,67,-7.760694701424053],[122,218,68,-7.759350811974137],[122,218,69,-7.776685214415394],[122,218,70,-7.811468324729265],[122,218,71,-7.855327767087858],[122,218,72,-7.9028431891805315],[122,218,73,-7.93105669663287],[122,218,74,-7.95244279348436],[122,218,75,-7.97957067099937],[122,218,76,-7.998076100777181],[122,218,77,-7.972768221534588],[122,218,78,-7.9512576712996905],[122,218,79,-7.897040579277879],[122,219,64,-7.846830872554844],[122,219,65,-7.843197581005535],[122,219,66,-7.829191997821675],[122,219,67,-7.810361877394153],[122,219,68,-7.806372721946198],[122,219,69,-7.82613510319492],[122,219,70,-7.862525036381888],[122,219,71,-7.90725800502692],[122,219,72,-7.952255699002304],[122,219,73,-7.981755671667452],[122,219,74,-8.010731493059081],[122,219,75,-8.038698447525482],[122,219,76,-8.061266872161772],[122,219,77,-8.03268355129774],[122,219,78,-8.011372075078231],[122,219,79,-7.958403739895772],[122,220,64,-7.892568006364128],[122,220,65,-7.889352799583728],[122,220,66,-7.871244014519387],[122,220,67,-7.851713280446002],[122,220,68,-7.845009788346784],[122,220,69,-7.863275258715806],[122,220,70,-7.898576757341093],[122,220,71,-7.9403869635216076],[122,220,72,-7.987420312700909],[122,220,73,-8.014753863547059],[122,220,74,-8.063242370482461],[122,220,75,-8.087890550142207],[122,220,76,-8.10579722624083],[122,220,77,-8.087161537882103],[122,220,78,-8.064306609978702],[122,220,79,-8.010876796982897],[122,221,64,-7.942996753242806],[122,221,65,-7.939808724232799],[122,221,66,-7.92163067443156],[122,221,67,-7.900921272711984],[122,221,68,-7.895657154759863],[122,221,69,-7.910946077583045],[122,221,70,-7.945568273843579],[122,221,71,-7.988121750130308],[122,221,72,-8.036901575741675],[122,221,73,-8.096671402357202],[122,221,74,-8.176838822287362],[122,221,75,-8.206170409728637],[122,221,76,-8.190873969324642],[122,221,77,-8.150477048947371],[122,221,78,-8.110687135054587],[122,221,79,-8.058060989307913],[122,222,64,-7.992013054277825],[122,222,65,-7.990887830991087],[122,222,66,-7.971215811665893],[122,222,67,-7.950667747188975],[122,222,68,-7.944822983174344],[122,222,69,-7.959527916593104],[122,222,70,-7.99396327939973],[122,222,71,-8.037958509134597],[122,222,72,-8.088154393885052],[122,222,73,-8.155889704652305],[122,222,74,-8.23063618190595],[122,222,75,-8.254323878439717],[122,222,76,-8.231287486874082],[122,222,77,-8.193055343779886],[122,222,78,-8.149169194686634],[122,222,79,-8.098356104650891],[122,223,64,-8.049123911537842],[122,223,65,-8.04342272453251],[122,223,66,-8.024236439944076],[122,223,67,-8.003170305779586],[122,223,68,-7.997223474898732],[122,223,69,-8.009821914887967],[122,223,70,-8.04500947362331],[122,223,71,-8.088974841417926],[122,223,72,-8.141219203371557],[122,223,73,-8.17418901401114],[122,223,74,-8.249349634723469],[122,223,75,-8.264587480974015],[122,223,76,-8.273963685320101],[122,223,77,-8.240803212012485],[122,223,78,-8.194838487494634],[122,223,79,-8.141858786302226],[122,224,64,-8.098059141220492],[122,224,65,-8.092233713560711],[122,224,66,-8.073240757206362],[122,224,67,-8.052471023156308],[122,224,68,-8.046318789727254],[122,224,69,-8.057240652135809],[122,224,70,-8.093019336010924],[122,224,71,-8.13988160763603],[122,224,72,-8.192815636238112],[122,224,73,-8.224299562999644],[122,224,74,-8.297385079764455],[122,224,75,-8.31593759520469],[122,224,76,-8.328514826178475],[122,224,77,-8.29033078196531],[122,224,78,-8.245215913660436],[122,224,79,-8.192824949568509],[122,225,64,-8.157920783663608],[122,225,65,-8.145170738466824],[122,225,66,-8.120631857113507],[122,225,67,-8.09504400877484],[122,225,68,-8.083817520023652],[122,225,69,-8.0970270060064],[122,225,70,-8.132033041351878],[122,225,71,-8.18110624216975],[122,225,72,-8.233444511988402],[122,225,73,-8.269301258790223],[122,225,74,-8.335431310363504],[122,225,75,-8.370935493866684],[122,225,76,-8.377874595362773],[122,225,77,-8.339546374183932],[122,225,78,-8.294271070671398],[122,225,79,-8.244047349943855],[122,226,64,-8.214642571466646],[122,226,65,-8.202244736426094],[122,226,66,-8.177319808261563],[122,226,67,-8.150985249044377],[122,226,68,-8.135923016772326],[122,226,69,-8.14999533507016],[122,226,70,-8.18619057440648],[122,226,71,-8.23356097679207],[122,226,72,-8.288171104397055],[122,226,73,-8.310811247707104],[122,226,74,-8.363885044007123],[122,226,75,-8.410512860856088],[122,226,76,-8.427428590348018],[122,226,77,-8.390683828176243],[122,226,78,-8.344689707576713],[122,226,79,-8.294695797731018],[122,227,64,-8.265090077680476],[122,227,65,-8.253119671017103],[122,227,66,-8.227509409342607],[122,227,67,-8.202990182115688],[122,227,68,-8.186624288012796],[122,227,69,-8.199696669236776],[122,227,70,-8.237612287825124],[122,227,71,-8.283691682502463],[122,227,72,-8.335753054663474],[122,227,73,-8.367132970672522],[122,227,74,-8.416181489090967],[122,227,75,-8.463833445719187],[122,227,76,-8.486257176434204],[122,227,77,-8.448660851110029],[122,227,78,-8.403499029319956],[122,227,79,-8.352522559243555],[122,228,64,-8.302237250493745],[122,228,65,-8.291981801138078],[122,228,66,-8.265996488713323],[122,228,67,-8.241683120708487],[122,228,68,-8.226928481088928],[122,228,69,-8.239115406867088],[122,228,70,-8.275668837828633],[122,228,71,-8.322993810997328],[122,228,72,-8.37106732825236],[122,228,73,-8.413398800675568],[122,228,74,-8.469108524484477],[122,228,75,-8.510773741318543],[122,228,76,-8.535834323584522],[122,228,77,-8.49806022082885],[122,228,78,-8.451751473462547],[122,228,79,-8.402708096212493],[122,229,64,-8.341264062332243],[122,229,65,-8.335302439589867],[122,229,66,-8.317089780267104],[122,229,67,-8.297856650938934],[122,229,68,-8.289022996109965],[122,229,69,-8.299164472131595],[122,229,70,-8.333593358715298],[122,229,71,-8.381670962171585],[122,229,72,-8.429786955394663],[122,229,73,-8.532128755829113],[122,229,74,-8.598177080735208],[122,229,75,-8.611026884247021],[122,229,76,-8.585944871531984],[122,229,77,-8.545490253488738],[122,229,78,-8.500755455986544],[122,229,79,-8.454420453708353],[122,230,64,-8.388589965210915],[122,230,65,-8.38318249026359],[122,230,66,-8.366135749247173],[122,230,67,-8.347119764055487],[122,230,68,-8.339667350986165],[122,230,69,-8.349389342732064],[122,230,70,-8.383321872562327],[122,230,71,-8.43216913091504],[122,230,72,-8.480289095299367],[122,230,73,-8.579472993269894],[122,230,74,-8.645721317020076],[122,230,75,-8.655920417252332],[122,230,76,-8.628949879517393],[122,230,77,-8.591108889057557],[122,230,78,-8.546287541963805],[122,230,79,-8.504075941723922],[122,231,64,-8.44191453188512],[122,231,65,-8.437777455413608],[122,231,66,-8.419051294072336],[122,231,67,-8.400594749422336],[122,231,68,-8.392443815741832],[122,231,69,-8.401744205433786],[122,231,70,-8.43539860162241],[122,231,71,-8.484695370790792],[122,231,72,-8.54066783396511],[122,231,73,-8.637099821478973],[122,231,74,-8.685041089493543],[122,231,75,-8.700550703819163],[122,231,76,-8.67498713942307],[122,231,77,-8.639192445725993],[122,231,78,-8.59609266639041],[122,231,79,-8.550572507128734],[122,232,64,-8.489205367704319],[122,232,65,-8.491094973853986],[122,232,66,-8.471087452940955],[122,232,67,-8.451014939042038],[122,232,68,-8.439764467267903],[122,232,69,-8.452984441224123],[122,232,70,-8.487337119022264],[122,232,71,-8.537234137272009],[122,232,72,-8.58719570599887],[122,232,73,-8.684591499820288],[122,232,74,-8.731819370114824],[122,232,75,-8.750117578376864],[122,232,76,-8.724537199281603],[122,232,77,-8.689622505483142],[122,232,78,-8.647561696769602],[122,232,79,-8.599721298282233],[122,233,64,-8.54056450107261],[122,233,65,-8.541597138235336],[122,233,66,-8.521885580984694],[122,233,67,-8.498847270107591],[122,233,68,-8.486492429352609],[122,233,69,-8.502326580288733],[122,233,70,-8.537454651146609],[122,233,71,-8.58690130898693],[122,233,72,-8.642271106871329],[122,233,73,-8.7300090446867],[122,233,74,-8.789038045981473],[122,233,75,-8.794876029711915],[122,233,76,-8.77908874220376],[122,233,77,-8.742756015934953],[122,233,78,-8.703333784248706],[122,233,79,-8.65256392079245],[122,234,64,-8.593380278139083],[122,234,65,-8.593614034792699],[122,234,66,-8.574809183308963],[122,234,67,-8.551202365595287],[122,234,68,-8.540020758606406],[122,234,69,-8.555305352089741],[122,234,70,-8.59147212187089],[122,234,71,-8.639188620179755],[122,234,72,-8.687075092685745],[122,234,73,-8.766556879115818],[122,234,74,-8.82264702657329],[122,234,75,-8.828766583707829],[122,234,76,-8.835499365424324],[122,234,77,-8.802319195880111],[122,234,78,-8.761559687579068],[122,234,79,-8.709857272826875],[122,235,64,-8.639824718197008],[122,235,65,-8.640941935881598],[122,235,66,-8.624139917790824],[122,235,67,-8.598719720354719],[122,235,68,-8.588006285499716],[122,235,69,-8.602740029469475],[122,235,70,-8.640740484072799],[122,235,71,-8.686558472473791],[122,235,72,-8.736560769675725],[122,235,73,-8.761357850707155],[122,235,74,-8.76518567119785],[122,235,75,-8.774816008149097],[122,235,76,-8.829755403687079],[122,235,77,-8.861245745837778],[122,235,78,-8.821567015015692],[122,235,79,-8.768388184962447],[122,236,64,-8.69585370967605],[122,236,65,-8.701531069310493],[122,236,66,-8.68831896634429],[122,236,67,-8.665432048770242],[122,236,68,-8.656617151674851],[122,236,69,-8.67152005292541],[122,236,70,-8.71111386113445],[122,236,71,-8.754402160268128],[122,236,72,-8.80502171811543],[122,236,73,-8.831540620943924],[122,236,74,-8.8343762370366],[122,236,75,-8.843185260378164],[122,236,76,-8.900261752406482],[122,236,77,-8.918834087185308],[122,236,78,-8.880203840963754],[122,236,79,-8.826996600458747],[122,237,64,-8.740285713156888],[122,237,65,-8.748840897569766],[122,237,66,-8.73535410614565],[122,237,67,-8.711617964623612],[122,237,68,-8.70348314783227],[122,237,69,-8.719766024022194],[122,237,70,-8.75844672113323],[122,237,71,-8.803813270137242],[122,237,72,-8.857119846382945],[122,237,73,-8.88604143221177],[122,237,74,-8.900307647227438],[122,237,75,-8.934185560756154],[122,237,76,-8.985975956561163],[122,237,77,-8.97044490124635],[122,237,78,-8.931549963260053],[122,237,79,-8.877675564555272],[122,238,64,-8.790973550344242],[122,238,65,-8.79893302345217],[122,238,66,-8.78699504013953],[122,238,67,-8.761221868170049],[122,238,68,-8.75242884604751],[122,238,69,-8.769669073442142],[122,238,70,-8.807412510084214],[122,238,71,-8.854051480878823],[122,238,72,-8.90727567844668],[122,238,73,-8.93467173932723],[122,238,74,-8.961761427219537],[122,238,75,-9.015377746650042],[122,238,76,-9.045628872182428],[122,238,77,-9.014568261322577],[122,238,78,-8.975909633509021],[122,238,79,-8.924590098103328],[122,239,64,-8.847843098742135],[122,239,65,-8.85456262690938],[122,239,66,-8.839570350658045],[122,239,67,-8.816988688061906],[122,239,68,-8.80547153061861],[122,239,69,-8.822272659367822],[122,239,70,-8.860077106581018],[122,239,71,-8.905124200149011],[122,239,72,-8.956826038710322],[122,239,73,-8.982484726206843],[122,239,74,-8.99913733800391],[122,239,75,-9.046368541543629],[122,239,76,-9.087449530181603],[122,239,77,-9.059919013990458],[122,239,78,-9.020821137886584],[122,239,79,-8.968453449460231],[122,240,64,-8.89568557293711],[122,240,65,-8.900662725597657],[122,240,66,-8.885245703763692],[122,240,67,-8.862765897727362],[122,240,68,-8.855126793898972],[122,240,69,-8.870580324730112],[122,240,70,-8.908472609120844],[122,240,71,-8.954862334032487],[122,240,72,-9.005107112455777],[122,240,73,-9.029655037658578],[122,240,74,-9.044327209297993],[122,240,75,-9.085600914475435],[122,240,76,-9.12771963849635],[122,240,77,-9.108776025806513],[122,240,78,-9.06779328923557],[122,240,79,-9.016409586599273],[122,241,64,-8.952947939194333],[122,241,65,-8.95092766242537],[122,241,66,-8.9320448025329],[122,241,67,-8.90964957386736],[122,241,68,-8.903639381764538],[122,241,69,-8.918572438940636],[122,241,70,-8.955499723052164],[122,241,71,-8.999634949735256],[122,241,72,-9.04706043982217],[122,241,73,-9.071527827507495],[122,241,74,-9.069090686804968],[122,241,75,-9.055834085610536],[122,241,76,-9.032747516733508],[122,241,77,-8.995074584763739],[122,241,78,-8.951550473393532],[122,241,79,-8.979344948787364],[122,242,64,-9.006301008667705],[122,242,65,-8.999849167044125],[122,242,66,-8.97957337638204],[122,242,67,-8.958940112933655],[122,242,68,-8.952401410541333],[122,242,69,-8.968432480441567],[122,242,70,-9.004107704511933],[122,242,71,-9.049302105846463],[122,242,72,-9.096938737882091],[122,242,73,-9.122129773042316],[122,242,74,-9.119502955364313],[122,242,75,-9.108118106022818],[122,242,76,-9.082951977305424],[122,242,77,-9.04407616568504],[122,242,78,-8.997501237451715],[122,242,79,-9.019789155713013],[122,243,64,-9.055632742348088],[122,243,65,-9.046862692528778],[122,243,66,-9.02448523976085],[122,243,67,-9.002444625095798],[122,243,68,-8.996421185605424],[122,243,69,-9.012451296390996],[122,243,70,-9.047624067742676],[122,243,71,-9.095470745476215],[122,243,72,-9.144044286661659],[122,243,73,-9.167713860207776],[122,243,74,-9.16587615885119],[122,243,75,-9.1527702060584],[122,243,76,-9.127013163518415],[122,243,77,-9.088967105780073],[122,243,78,-9.04557965930026],[122,243,79,-9.06791543970017],[122,244,64,-9.085942778379765],[122,244,65,-9.073066819507735],[122,244,66,-9.041802788149758],[122,244,67,-9.01271643001801],[122,244,68,-9.002488901589004],[122,244,69,-9.011823921085341],[122,244,70,-9.04471801479232],[122,244,71,-9.093890615960039],[122,244,72,-9.140049883021904],[122,244,73,-9.162122265657546],[122,244,74,-9.162079137310771],[122,244,75,-9.148057633236407],[122,244,76,-9.1203389099745],[122,244,77,-9.086497854911936],[122,244,78,-9.040754710133433],[122,244,79,-9.070272522323927],[122,245,64,-9.132544903623883],[122,245,65,-9.118278328122827],[122,245,66,-9.088083151253686],[122,245,67,-9.056197872157423],[122,245,68,-9.044740109388844],[122,245,69,-9.056107405014464],[122,245,70,-9.089291754041689],[122,245,71,-9.137800142050141],[122,245,72,-9.185120370689226],[122,245,73,-9.208313290151205],[122,245,74,-9.208750872913322],[122,245,75,-9.194858757618933],[122,245,76,-9.16768125374481],[122,245,77,-9.131718894334345],[122,245,78,-9.088892969220145],[122,245,79,-9.105746051714394],[122,246,64,-9.17742736193869],[122,246,65,-9.161695209025146],[122,246,66,-9.131209706895136],[122,246,67,-9.101471674674226],[122,246,68,-9.08735847378767],[122,246,69,-9.099784787592561],[122,246,70,-9.13532701170901],[122,246,71,-9.183326058511005],[122,246,72,-9.23033729945969],[122,246,73,-9.255114670891048],[122,246,74,-9.253878232002098],[122,246,75,-9.242147095642075],[122,246,76,-9.214829532765277],[122,246,77,-9.181480859436167],[122,246,78,-9.136831278856862],[122,246,79,-9.127567659906582],[122,247,64,-9.225992793795532],[122,247,65,-9.212272365218304],[122,247,66,-9.179356440635292],[122,247,67,-9.150190140950734],[122,247,68,-9.137762071135736],[122,247,69,-9.148438303854872],[122,247,70,-9.185223374816685],[122,247,71,-9.229913903291813],[122,247,72,-9.278691492361185],[122,247,73,-9.302310072081758],[122,247,74,-9.301142791143056],[122,247,75,-9.288094521825638],[122,247,76,-9.261300316444494],[122,247,77,-9.227400640691858],[122,247,78,-9.18335170161762],[122,247,79,-9.1497205257037],[122,248,64,-9.268555330801654],[122,248,65,-9.255715638720913],[122,248,66,-9.225516020329753],[122,248,67,-9.193788748623458],[122,248,68,-9.18231601385826],[122,248,69,-9.193734200510608],[122,248,70,-9.230543545802815],[122,248,71,-9.274931869609716],[122,248,72,-9.32492409031314],[122,248,73,-9.348728394279021],[122,248,74,-9.350078490534157],[122,248,75,-9.336416672928614],[122,248,76,-9.309991291800216],[122,248,77,-9.276927564569437],[122,248,78,-9.232835125462366],[122,248,79,-9.189680492397176],[122,249,64,-9.318186050235877],[122,249,65,-9.30145612953118],[122,249,66,-9.268800043613815],[122,249,67,-9.232819790667357],[122,249,68,-9.219024980768246],[122,249,69,-9.231656363218502],[122,249,70,-9.269719128912264],[122,249,71,-9.315689269412552],[122,249,72,-9.371661950584972],[122,249,73,-9.398433115267462],[122,249,74,-9.396766077789884],[122,249,75,-9.382699050009851],[122,249,76,-9.356705288215673],[122,249,77,-9.32381576177418],[122,249,78,-9.282424752573448],[122,249,79,-9.285734746413084],[122,250,64,-9.367877911979127],[122,250,65,-9.351826903569252],[122,250,66,-9.319222281145084],[122,250,67,-9.281996195928892],[122,250,68,-9.267879148521734],[122,250,69,-9.298143910260292],[122,250,70,-9.36566239811203],[122,250,71,-9.412292878313808],[122,250,72,-9.464130864889714],[122,250,73,-9.457376009046879],[122,250,74,-9.448903234042213],[122,250,75,-9.432228705368663],[122,250,76,-9.408397533880658],[122,250,77,-9.377423368599299],[122,250,78,-9.338079927229566],[122,250,79,-9.303473054930013],[122,251,64,-9.413435176747818],[122,251,65,-9.397371712100957],[122,251,66,-9.36591715580693],[122,251,67,-9.328738008756627],[122,251,68,-9.313620789293992],[122,251,69,-9.352825563960707],[122,251,70,-9.425491093265832],[122,251,71,-9.476105164193008],[122,251,72,-9.512582428023551],[122,251,73,-9.506822063845155],[122,251,74,-9.497438163654271],[122,251,75,-9.47982239418892],[122,251,76,-9.454222225990359],[122,251,77,-9.421368965751428],[122,251,78,-9.382379838822462],[122,251,79,-9.341798344536139],[122,252,64,-9.450915221260326],[122,252,65,-9.435167214804988],[122,252,66,-9.404827480386201],[122,252,67,-9.3695386237808],[122,252,68,-9.35535261670965],[122,252,69,-9.40002420942464],[122,252,70,-9.458456769713512],[122,252,71,-9.51984258840467],[122,252,72,-9.55526526293391],[122,252,73,-9.537641369513373],[122,252,74,-9.537739483636951],[122,252,75,-9.520665999274824],[122,252,76,-9.495018551151919],[122,252,77,-9.473380547485307],[122,252,78,-9.427050600736996],[122,252,79,-9.404337974975533],[122,253,64,-9.485413067222218],[122,253,65,-9.476028207184536],[122,253,66,-9.452399516655117],[122,253,67,-9.42399755767663],[122,253,68,-9.410145540729072],[122,253,69,-9.422719858000562],[122,253,70,-9.469749706798687],[122,253,71,-9.530207880462395],[122,253,72,-9.564509180650063],[122,253,73,-9.583464379261656],[122,253,74,-9.58718060176058],[122,253,75,-9.588925857987435],[122,253,76,-9.57606444700552],[122,253,77,-9.575960148320581],[122,253,78,-9.531142182125153],[122,253,79,-9.517340849558922],[122,254,64,-9.448465034583085],[122,254,65,-9.447681523381975],[122,254,66,-9.430814092361894],[122,254,67,-9.409307661121296],[122,254,68,-9.403830680920672],[122,254,69,-9.424050036615485],[122,254,70,-9.492473635985354],[122,254,71,-9.554743304793316],[122,254,72,-9.587090342532695],[122,254,73,-9.624103337678404],[122,254,74,-9.633345366561995],[122,254,75,-9.637343809542356],[122,254,76,-9.63638903948798],[122,254,77,-9.640202014721552],[122,254,78,-9.619843314787081],[122,254,79,-9.581961554159902],[122,255,64,-9.498204212904412],[122,255,65,-9.49427287810544],[122,255,66,-9.475330588866537],[122,255,67,-9.456705583723766],[122,255,68,-9.44972997330987],[122,255,69,-9.468437187814125],[122,255,70,-9.528648383390701],[122,255,71,-9.595307441169707],[122,255,72,-9.6352961338015],[122,255,73,-9.671939531380037],[122,255,74,-9.68202176482654],[122,255,75,-9.674969370342389],[122,255,76,-9.68437147381776],[122,255,77,-9.685541449930538],[122,255,78,-9.670118008532503],[122,255,79,-9.620735858433093],[122,256,64,-9.546692816272689],[122,256,65,-9.54445852611766],[122,256,66,-9.52335002794333],[122,256,67,-9.504352169081775],[122,256,68,-9.496277697854925],[122,256,69,-9.517120291176843],[122,256,70,-9.57253879993225],[122,256,71,-9.641522547823264],[122,256,72,-9.684311433296065],[122,256,73,-9.721116570014074],[122,256,74,-9.730673258662376],[122,256,75,-9.723734785323272],[122,256,76,-9.73200742599317],[122,256,77,-9.736548530768472],[122,256,78,-9.727122647745274],[122,256,79,-9.682525192104544],[122,257,64,-9.59421130413968],[122,257,65,-9.593678468671978],[122,257,66,-9.573007709759185],[122,257,67,-9.551402641795626],[122,257,68,-9.544244022728055],[122,257,69,-9.56337154727248],[122,257,70,-9.638432879017325],[122,257,71,-9.708346291567072],[122,257,72,-9.734293020574588],[122,257,73,-9.770296558851086],[122,257,74,-9.778883425879439],[122,257,75,-9.803292121025057],[122,257,76,-9.814061724450893],[122,257,77,-9.827510503205707],[122,257,78,-9.814606771572134],[122,257,79,-9.776296257417284],[122,258,64,-9.644894788534366],[122,258,65,-9.644918061571301],[122,258,66,-9.624178007887762],[122,258,67,-9.60109115159819],[122,258,68,-9.59398279488863],[122,258,69,-9.61572050873129],[122,258,70,-9.660991951271848],[122,258,71,-9.72080263081887],[122,258,72,-9.784992103207284],[122,258,73,-9.821924666709181],[122,258,74,-9.830350257688698],[122,258,75,-9.848473477210455],[122,258,76,-9.866259404548833],[122,258,77,-9.881919487301605],[122,258,78,-9.872697742025045],[122,258,79,-9.841609408293952],[122,259,64,-9.691771581081714],[122,259,65,-9.692824172815202],[122,259,66,-9.672653625713425],[122,259,67,-9.650166793262624],[122,259,68,-9.641371576929851],[122,259,69,-9.663041042042376],[122,259,70,-9.70797499186151],[122,259,71,-9.767825127558163],[122,259,72,-9.832386934711895],[122,259,73,-9.869519542563777],[122,259,74,-9.879947589044818],[122,259,75,-9.875977854041484],[122,259,76,-9.888163401659037],[122,259,77,-9.905023238697819],[122,259,78,-9.901421904896024],[122,259,79,-9.881528126778543],[122,260,64,-9.860494231044656],[122,260,65,-9.865069910535372],[122,260,66,-9.849154583250023],[122,260,67,-9.829470196351446],[122,260,68,-9.82519888511482],[122,260,69,-9.849302724853208],[122,260,70,-9.892943075437158],[122,260,71,-9.95514277308621],[122,260,72,-10.02028807371684],[122,260,73,-10.060855298796861],[122,260,74,-10.070955071946386],[122,260,75,-10.072158506917972],[122,260,76,-10.063283858150761],[122,260,77,-10.04980660910207],[122,260,78,-10.023657531280604],[122,260,79,-9.985413035051087],[122,261,64,-9.918160664703638],[122,261,65,-9.920848943110665],[122,261,66,-9.900699326305121],[122,261,67,-9.87809737460604],[122,261,68,-9.873261827154224],[122,261,69,-9.895913088191868],[122,261,70,-9.939733115284788],[122,261,71,-9.999966951928316],[122,261,72,-10.064289894957186],[122,261,73,-10.103679553926899],[122,261,74,-10.114575849680445],[122,261,75,-10.11711660301211],[122,261,76,-10.106975541664877],[122,261,77,-10.095968839557683],[122,261,78,-10.075394156937618],[122,261,79,-10.038874330780104],[122,262,64,-9.973921990599667],[122,262,65,-9.974642650044661],[122,262,66,-9.955663608519876],[122,262,67,-9.931118325061965],[122,262,68,-9.925407672960965],[122,262,69,-9.947425300409666],[122,262,70,-9.990155404948236],[122,262,71,-10.050894594488206],[122,262,72,-10.11816869005094],[122,262,73,-10.15629312809392],[122,262,74,-10.166058453698723],[122,262,75,-10.178603019196139],[122,262,76,-10.167859886996311],[122,262,77,-10.155868176814232],[122,262,78,-10.141159556946253],[122,262,79,-10.110764866130507],[122,263,64,-10.01995999664495],[122,263,65,-10.021963345103751],[122,263,66,-10.003004762097962],[122,263,67,-9.979794311459804],[122,263,68,-9.973704066650521],[122,263,69,-9.995839366586383],[122,263,70,-10.040511517052401],[122,263,71,-10.099991527648493],[122,263,72,-10.168894495446368],[122,263,73,-10.208407924287485],[122,263,74,-10.218016296383292],[122,263,75,-10.229836676652985],[122,263,76,-10.21668487074924],[122,263,77,-10.200492546973651],[122,263,78,-10.181446016019454],[122,263,79,-10.153438904344188],[122,264,64,-10.064744488132886],[122,264,65,-10.069214789609685],[122,264,66,-10.05019230078323],[122,264,67,-10.026905591034305],[122,264,68,-10.021691870693928],[122,264,69,-10.04545580925144],[122,264,70,-10.09119423508918],[122,264,71,-10.148247210676532],[122,264,72,-10.214494284559859],[122,264,73,-10.256686804944286],[122,264,74,-10.268616570801408],[122,264,75,-10.283703797136207],[122,264,76,-10.266510684844464],[122,264,77,-10.250444893108886],[122,264,78,-10.233005519806202],[122,264,79,-10.199440889212244],[122,265,64,-10.10261199665034],[122,265,65,-10.108637588924875],[122,265,66,-10.09485461711404],[122,265,67,-10.074403142651649],[122,265,68,-10.069261034725677],[122,265,69,-10.092892563363854],[122,265,70,-10.140581500947064],[122,265,71,-10.200681383250098],[122,265,72,-10.274328475708813],[122,265,73,-10.353273123000315],[122,265,74,-10.39334011609222],[122,265,75,-10.415466642323183],[122,265,76,-10.390759640967289],[122,265,77,-10.363391608523743],[122,265,78,-10.326290527557894],[122,265,79,-10.270608981596018],[122,266,64,-10.150128474489772],[122,266,65,-10.157378073585704],[122,266,66,-10.143191159827955],[122,266,67,-10.12492357010079],[122,266,68,-10.117700332700611],[122,266,69,-10.141314411897211],[122,266,70,-10.18882754234296],[122,266,71,-10.251492689975981],[122,266,72,-10.31882423021062],[122,266,73,-10.387178705434831],[122,266,74,-10.431466108346804],[122,266,75,-10.450938925775429],[122,266,76,-10.433536532457728],[122,266,77,-10.404780587846655],[122,266,78,-10.366789333538476],[122,266,79,-10.311981387391782],[122,267,64,-10.194482121798833],[122,267,65,-10.200801738707018],[122,267,66,-10.188319855776234],[122,267,67,-10.167934739642643],[122,267,68,-10.162360094108566],[122,267,69,-10.18582430114492],[122,267,70,-10.234781211951125],[122,267,71,-10.297946630575163],[122,267,72,-10.36593144321094],[122,267,73,-10.434926943869394],[122,267,74,-10.490511804946482],[122,267,75,-10.507557171236952],[122,267,76,-10.493265025859065],[122,267,77,-10.4602585231733],[122,267,78,-10.42138794924727],[122,267,79,-10.364089509540502],[122,268,64,-10.234042463195049],[122,268,65,-10.242823780345017],[122,268,66,-10.229218590192863],[122,268,67,-10.209628704911589],[122,268,68,-10.203188072335191],[122,268,69,-10.227567518556038],[122,268,70,-10.277943554168527],[122,268,71,-10.35245377919113],[122,268,72,-10.434968033830232],[122,268,73,-10.505775745090453],[122,268,74,-10.550364108545102],[122,268,75,-10.55577551055094],[122,268,76,-10.542136497657241],[122,268,77,-10.50798107330128],[122,268,78,-10.468292871530965],[122,268,79,-10.409616268286495],[122,269,64,-10.2782948250457],[122,269,65,-10.287115231939564],[122,269,66,-10.27503846707923],[122,269,67,-10.25532077468705],[122,269,68,-10.248920279933781],[122,269,69,-10.274631485205973],[122,269,70,-10.323575091637457],[122,269,71,-10.408113701889686],[122,269,72,-10.490028498805561],[122,269,73,-10.564325184997161],[122,269,74,-10.608714084252812],[122,269,75,-10.609630869845294],[122,269,76,-10.590352931417005],[122,269,77,-10.555058694171596],[122,269,78,-10.516148074759627],[122,269,79,-10.458996005880522],[122,270,64,-10.329809169183441],[122,270,65,-10.337629762642322],[122,270,66,-10.324431276231419],[122,270,67,-10.307126372690083],[122,270,68,-10.301305126243767],[122,270,69,-10.324076355222733],[122,270,70,-10.37107062838772],[122,270,71,-10.458663942371395],[122,270,72,-10.542976844248741],[122,270,73,-10.61644514038677],[122,270,74,-10.653909989546618],[122,270,75,-10.662094640672224],[122,270,76,-10.638810952309761],[122,270,77,-10.604355284710303],[122,270,78,-10.56110289950521],[122,270,79,-10.506835339352776],[122,271,64,-10.376718111759885],[122,271,65,-10.380854177171601],[122,271,66,-10.368060676278356],[122,271,67,-10.352542961153528],[122,271,68,-10.34921880220497],[122,271,69,-10.368481483901439],[122,271,70,-10.415266295674403],[122,271,71,-10.49160194262026],[122,271,72,-10.592089374162077],[122,271,73,-10.665815987095417],[122,271,74,-10.705158669120616],[122,271,75,-10.70795406592853],[122,271,76,-10.687679657050637],[122,271,77,-10.65086556487901],[122,271,78,-10.608564369727684],[122,271,79,-10.55332901459527],[122,272,64,-10.421727502638268],[122,272,65,-10.42618767141197],[122,272,66,-10.412873459270697],[122,272,67,-10.399696325205001],[122,272,68,-10.395206112770175],[122,272,69,-10.414904562558027],[122,272,70,-10.461994129116224],[122,272,71,-10.537545586979299],[122,272,72,-10.645093204146058],[122,272,73,-10.713188973036061],[122,272,74,-10.758358981325626],[122,272,75,-10.75906751665257],[122,272,76,-10.739603190965969],[122,272,77,-10.701223546609743],[122,272,78,-10.660758731889528],[122,272,79,-10.60479423976002],[122,273,64,-10.463936528522074],[122,273,65,-10.47046597805322],[122,273,66,-10.455851770202047],[122,273,67,-10.442902989875694],[122,273,68,-10.440530351000127],[122,273,69,-10.458725553932402],[122,273,70,-10.503774835226055],[122,273,71,-10.567966602302647],[122,273,72,-10.645962423996048],[122,273,73,-10.691498977611982],[122,273,74,-10.71063250792082],[122,273,75,-10.70825743780844],[122,273,76,-10.689220464665862],[122,273,77,-10.65359270597584],[122,273,78,-10.614450876709649],[122,273,79,-10.561257194169338],[122,274,64,-10.51432692465133],[122,274,65,-10.521399049347677],[122,274,66,-10.505392032086549],[122,274,67,-10.49121815303694],[122,274,68,-10.487790196057214],[122,274,69,-10.508329396967582],[122,274,70,-10.551779228540667],[122,274,71,-10.61554905361232],[122,274,72,-10.693069728489395],[122,274,73,-10.740916285704245],[122,274,74,-10.76016260644978],[122,274,75,-10.759601675822513],[122,274,76,-10.737988666085142],[122,274,77,-10.70292200695708],[122,274,78,-10.665539995666434],[122,274,79,-10.611290515060825],[122,275,64,-10.562195121604088],[122,275,65,-10.567665022624883],[122,275,66,-10.552154355885273],[122,275,67,-10.536125486489766],[122,275,68,-10.53115061723201],[122,275,69,-10.551923418460103],[122,275,70,-10.597300304326259],[122,275,71,-10.664727249352959],[122,275,72,-10.744305511134518],[122,275,73,-10.794054052848693],[122,275,74,-10.815339771639257],[122,275,75,-10.815490114771965],[122,275,76,-10.793249149731041],[122,275,77,-10.756886205616182],[122,275,78,-10.717889856679868],[122,275,79,-10.666686438270236],[122,276,64,-10.60023787431293],[122,276,65,-10.60833973233101],[122,276,66,-10.59243655794354],[122,276,67,-10.574354990008294],[122,276,68,-10.569520817098036],[122,276,69,-10.592192369173631],[122,276,70,-10.640673681342932],[122,276,71,-10.706088620639221],[122,276,72,-10.78412228357444],[122,276,73,-10.838184842767996],[122,276,74,-10.863316859976132],[122,276,75,-10.867883763540918],[122,276,76,-10.843624898681153],[122,276,77,-10.807018930378433],[122,276,78,-10.765616576826043],[122,276,79,-10.71627326940485],[122,277,64,-10.656458757095534],[122,277,65,-10.659491473057823],[122,277,66,-10.642392354920009],[122,277,67,-10.6238852221503],[122,277,68,-10.617991213753475],[122,277,69,-10.639290770549273],[122,277,70,-10.689428628534182],[122,277,71,-10.751910214049907],[122,277,72,-10.830436573873982],[122,277,73,-10.884524005714729],[122,277,74,-10.911219912711553],[122,277,75,-10.916351896402576],[122,277,76,-10.891705485140266],[122,277,77,-10.857104358574858],[122,277,78,-10.81115636965634],[122,277,79,-10.761279515338876],[122,278,64,-10.707296968611383],[122,278,65,-10.708885830328592],[122,278,66,-10.69425183932475],[122,278,67,-10.674528742702119],[122,278,68,-10.667982609286243],[122,278,69,-10.68867414793962],[122,278,70,-10.736985372428778],[122,278,71,-10.799005442675544],[122,278,72,-10.873043220501321],[122,278,73,-10.933259791957028],[122,278,74,-10.957101256593276],[122,278,75,-10.964879916751425],[122,278,76,-10.942546193803473],[122,278,77,-10.90974179433788],[122,278,78,-10.861610449439773],[122,278,79,-10.810810020450296],[122,279,64,-10.755848021689461],[122,279,65,-10.754923259693014],[122,279,66,-10.738913990548797],[122,279,67,-10.722056783902099],[122,279,68,-10.715074155470415],[122,279,69,-10.736059845776317],[122,279,70,-10.78356900583422],[122,279,71,-10.844344810590629],[122,279,72,-10.91522233693635],[122,279,73,-10.97882616672743],[122,279,74,-11.00372776596733],[122,279,75,-11.012708499113232],[122,279,76,-10.99271806759346],[122,279,77,-10.958769468066226],[122,279,78,-10.909930537001882],[122,279,79,-10.856647558099722],[122,280,64,-10.80255980101863],[122,280,65,-10.801398555828122],[122,280,66,-10.78449250531242],[122,280,67,-10.768593782559691],[122,280,68,-10.759593148265008],[122,280,69,-10.781042785601892],[122,280,70,-10.826919857627267],[122,280,71,-10.891109282062914],[122,280,72,-10.961308040167541],[122,280,73,-11.026152690044691],[122,280,74,-11.052503371052492],[122,280,75,-11.062461536316576],[122,280,76,-11.043109965676168],[122,280,77,-11.006233615443975],[122,280,78,-10.958674699707013],[122,280,79,-10.902886666160125],[122,281,64,-10.847455003545477],[122,281,65,-10.844423506118629],[122,281,66,-10.827638463974424],[122,281,67,-10.813570089789739],[122,281,68,-10.805380744548833],[122,281,69,-10.826116393413884],[122,281,70,-10.872472388992303],[122,281,71,-10.936635665270188],[122,281,72,-11.006066531669122],[122,281,73,-11.080736606658245],[122,281,74,-11.112671072352638],[122,281,75,-11.119483535429792],[122,281,76,-11.100784999452072],[122,281,77,-11.061746622912258],[122,281,78,-11.016179851669023],[122,281,79,-10.961106763988223],[122,282,64,-10.894703342409652],[122,282,65,-10.893516047845074],[122,282,66,-10.87672269483265],[122,282,67,-10.860428477476917],[122,282,68,-10.853707119543724],[122,282,69,-10.877662945795073],[122,282,70,-10.923525564899636],[122,282,71,-10.98689178273116],[122,282,72,-11.055112704096631],[122,282,73,-11.12225538772812],[122,282,74,-11.155512056495208],[122,282,75,-11.159045556218533],[122,282,76,-11.139066619604941],[122,282,77,-11.101566090491984],[122,282,78,-11.0565263217787],[122,282,79,-11.002282104481152],[122,283,64,-10.940965629395278],[122,283,65,-10.939399873076292],[122,283,66,-10.922598196297294],[122,283,67,-10.9065847454469],[122,283,68,-10.89975151274614],[122,283,69,-10.92542050455549],[122,283,70,-10.973960426341419],[122,283,71,-11.034992077388893],[122,283,72,-11.10300389925987],[122,283,73,-11.177207392094799],[122,283,74,-11.21645436308312],[122,283,75,-11.212899197005848],[122,283,76,-11.19062499511163],[122,283,77,-11.153649544060897],[122,283,78,-11.108480582247093],[122,283,79,-11.05448388447248],[122,284,64,-11.009581621591996],[122,284,65,-11.005699389054028],[122,284,66,-10.98766525495019],[122,284,67,-10.970694464461108],[122,284,68,-10.960392319238784],[122,284,69,-10.986004977514721],[122,284,70,-11.036492038873961],[122,284,71,-11.098377948795314],[122,284,72,-11.16573042207226],[122,284,73,-11.236148005015641],[122,284,74,-11.273530154741998],[122,284,75,-11.26982300820047],[122,284,76,-11.247646243789426],[122,284,77,-11.209104497718089],[122,284,78,-11.161581820697679],[122,284,79,-11.107263142623381],[122,285,64,-11.061520177122787],[122,285,65,-11.055306151431248],[122,285,66,-11.031928390481383],[122,285,67,-11.009156290391436],[122,285,68,-10.996545200345267],[122,285,69,-11.021122053294231],[122,285,70,-11.074517640922886],[122,285,71,-11.135966650741587],[122,285,72,-11.20539891278811],[122,285,73,-11.280648877897132],[122,285,74,-11.322183433312741],[122,285,75,-11.318471862094139],[122,285,76,-11.294501983079645],[122,285,77,-11.255989941454551],[122,285,78,-11.20740223425227],[122,285,79,-11.151611853525807],[122,286,64,-11.11172522313045],[122,286,65,-11.106417001200244],[122,286,66,-11.080163580611826],[122,286,67,-11.056505909642203],[122,286,68,-11.047089487260887],[122,286,69,-11.069500523939936],[122,286,70,-11.119661741971308],[122,286,71,-11.18245262096574],[122,286,72,-11.251595842306553],[122,286,73,-11.325785046453756],[122,286,74,-11.36867070860224],[122,286,75,-11.364684162562218],[122,286,76,-11.342298591402391],[122,286,77,-11.301843805733114],[122,286,78,-11.254823367873927],[122,286,79,-11.199628746550395],[122,287,64,-11.158521119378905],[122,287,65,-11.153420550813872],[122,287,66,-11.129315197631033],[122,287,67,-11.104564090252337],[122,287,68,-11.097859812964707],[122,287,69,-11.11768243836442],[122,287,70,-11.168153464771367],[122,287,71,-11.229022661273218],[122,287,72,-11.299325701189485],[122,287,73,-11.370554669965854],[122,287,74,-11.411626157475908],[122,287,75,-11.40712267572758],[122,287,76,-11.385004748454786],[122,287,77,-11.344680691553148],[122,287,78,-11.299430579175619],[122,287,79,-11.246283367416542],[122,288,64,-11.205605365771012],[122,288,65,-11.201210240563785],[122,288,66,-11.178161529563821],[122,288,67,-11.156117303240276],[122,288,68,-11.147932980811543],[122,288,69,-11.16668005413566],[122,288,70,-11.21238116837034],[122,288,71,-11.275609130187307],[122,288,72,-11.346512895851735],[122,288,73,-11.418341669232257],[122,288,74,-11.455008066214265],[122,288,75,-11.453502071221656],[122,288,76,-11.431192273752359],[122,288,77,-11.388185703441764],[122,288,78,-11.346908366176152],[122,288,79,-11.292782076370793],[122,289,64,-11.24565396876387],[122,289,65,-11.247673047613198],[122,289,66,-11.23182837584585],[122,289,67,-11.215026885434643],[122,289,68,-11.205132038966314],[122,289,69,-11.223497923407228],[122,289,70,-11.267293720710056],[122,289,71,-11.334024352233923],[122,289,72,-11.405041265760525],[122,289,73,-11.483783606731011],[122,289,74,-11.513759850563895],[122,289,75,-11.506723564769743],[122,289,76,-11.48486953667846],[122,289,77,-11.443973112089783],[122,289,78,-11.401953731472481],[122,289,79,-11.346601554429077],[122,290,64,-11.294787351230209],[122,290,65,-11.298042000548815],[122,290,66,-11.281206763606821],[122,290,67,-11.262645083272027],[122,290,68,-11.25344410065553],[122,290,69,-11.272947241694757],[122,290,70,-11.318209774763254],[122,290,71,-11.385633438872686],[122,290,72,-11.455978411425352],[122,290,73,-11.528759782816708],[122,290,74,-11.565062527825397],[122,290,75,-11.55758111113942],[122,290,76,-11.534362388295639],[122,290,77,-11.498032320335716],[122,290,78,-11.453793242611484],[122,290,79,-11.39655815588358],[122,291,64,-11.341361491693627],[122,291,65,-11.342591985149838],[122,291,66,-11.326349337358959],[122,291,67,-11.303926654258946],[122,291,68,-11.297613122352438],[122,291,69,-11.319346623969063],[122,291,70,-11.367116634117298],[122,291,71,-11.434886811492877],[122,291,72,-11.507391733967335],[122,291,73,-11.585614673144747],[122,291,74,-11.617289537995653],[122,291,75,-11.60867451183007],[122,291,76,-11.585366366678],[122,291,77,-11.548354091487575],[122,291,78,-11.502798613932594],[122,291,79,-11.445415280344054],[122,292,64,-11.355297858820226],[122,292,65,-11.353450455162257],[122,292,66,-11.333110014282598],[122,292,67,-11.31025271300325],[122,292,68,-11.301466606621275],[122,292,69,-11.323145375873642],[122,292,70,-11.37262812984781],[122,292,71,-11.439118979800973],[122,292,72,-11.509912302913234],[122,292,73,-11.604840471877212],[122,292,74,-11.640035905268775],[122,292,75,-11.630784251711296],[122,292,76,-11.609323998779287],[122,292,77,-11.570202809357037],[122,292,78,-11.524676338723046],[122,292,79,-11.468875900638057],[122,293,64,-11.404933579395118],[122,293,65,-11.402615677470314],[122,293,66,-11.37997913556571],[122,293,67,-11.354264652323264],[122,293,68,-11.34472217005662],[122,293,69,-11.367316540802635],[122,293,70,-11.42021446994284],[122,293,71,-11.485057123712673],[122,293,72,-11.560175896945092],[122,293,73,-11.649985833396247],[122,293,74,-11.6813716848934],[122,293,75,-11.673614344515906],[122,293,76,-11.650268419557683],[122,293,77,-11.612260438293802],[122,293,78,-11.568152247132543],[122,293,79,-11.510995361711121],[122,294,64,-11.456169843303055],[122,294,65,-11.451776517083905],[122,294,66,-11.428387301635393],[122,294,67,-11.400169112466797],[122,294,68,-11.388482702414006],[122,294,69,-11.41196624370774],[122,294,70,-11.463457963750914],[122,294,71,-11.530386693873263],[122,294,72,-11.605974466986543],[122,294,73,-11.691275670077514],[122,294,74,-11.72466858514477],[122,294,75,-11.718828046399318],[122,294,76,-11.693042940973086],[122,294,77,-11.655276712256452],[122,294,78,-11.612924617546625],[122,294,79,-11.557684866799297],[122,295,64,-11.505755422254447],[122,295,65,-11.501192827057181],[122,295,66,-11.476542847232174],[122,295,67,-11.445605537208065],[122,295,68,-11.433414829865331],[122,295,69,-11.454878338686335],[122,295,70,-11.506323534622457],[122,295,71,-11.576555455916175],[122,295,72,-11.654162198039515],[122,295,73,-11.700922626693188],[122,295,74,-11.730366444958156],[122,295,75,-11.73279461291286],[122,295,76,-11.720053531546014],[122,295,77,-11.68394412485944],[122,295,78,-11.644523144155716],[122,295,79,-11.594213533812693],[122,296,64,-11.552899831812041],[122,296,65,-11.54724781706429],[122,296,66,-11.52452682880727],[122,296,67,-11.494279838975926],[122,296,68,-11.482595991801112],[122,296,69,-11.500209694604113],[122,296,70,-11.550338785346748],[122,296,71,-11.621346338423512],[122,296,72,-11.70148471027814],[122,296,73,-11.745831707996485],[122,296,74,-11.77391072582663],[122,296,75,-11.776458047989316],[122,296,76,-11.765945257975313],[122,296,77,-11.726799537777802],[122,296,78,-11.689019547866812],[122,296,79,-11.638104092927385],[122,297,64,-11.606352799269848],[122,297,65,-11.597347567059456],[122,297,66,-11.568507690367783],[122,297,67,-11.534945148178311],[122,297,68,-11.521981765022495],[122,297,69,-11.537890839892952],[122,297,70,-11.59052464291105],[122,297,71,-11.664981453700317],[122,297,72,-11.749851518389045],[122,297,73,-11.800134911587813],[122,297,74,-11.826339489262953],[122,297,75,-11.829595274483086],[122,297,76,-11.8175226709336],[122,297,77,-11.778098594121511],[122,297,78,-11.74048449826394],[122,297,79,-11.689628167398823],[122,298,64,-11.656789916570899],[122,298,65,-11.64559833193207],[122,298,66,-11.617387062734624],[122,298,67,-11.58510270673965],[122,298,68,-11.57153893576516],[122,298,69,-11.588381482669059],[122,298,70,-11.641114338586851],[122,298,71,-11.7160259845976],[122,298,72,-11.79971185328583],[122,298,73,-11.848768177739775],[122,298,74,-11.865148426745916],[122,298,75,-11.871291467225367],[122,298,76,-11.85701050360814],[122,298,77,-11.822959074202998],[122,298,78,-11.785244368345202],[122,298,79,-11.734339112514006],[122,299,64,-11.704398245365715],[122,299,65,-11.692409509668632],[122,299,66,-11.662814007236202],[122,299,67,-11.632281008522144],[122,299,68,-11.616939178558333],[122,299,69,-11.635267946168653],[122,299,70,-11.687873529754393],[122,299,71,-11.763808212793043],[122,299,72,-11.846178675247486],[122,299,73,-11.896382819366234],[122,299,74,-11.912261413655296],[122,299,75,-11.916069895171493],[122,299,76,-11.90303769640346],[122,299,77,-11.868658100339253],[122,299,78,-11.830253318654838],[122,299,79,-11.779730413323444],[122,300,64,-11.746264584881978],[122,300,65,-11.7412804820756],[122,300,66,-11.717464937429794],[122,300,67,-11.688741818643722],[122,300,68,-11.673751325091105],[122,300,69,-11.693854243207811],[122,300,70,-11.744635342322871],[122,300,71,-11.813924844060777],[122,300,72,-11.889894611149929],[122,300,73,-11.935817597933802],[122,300,74,-11.950297146480136],[122,300,75,-11.946739150159942],[122,300,76,-11.92530450188616],[122,300,77,-11.891897472896341],[122,300,78,-11.854325830580866],[122,300,79,-11.810163813835503],[122,301,64,-11.79020665470609],[122,301,65,-11.789367637717021],[122,301,66,-11.764700649995246],[122,301,67,-11.734929225099394],[122,301,68,-11.719298932563207],[122,301,69,-11.739771877041534],[122,301,70,-11.791047015454906],[122,301,71,-11.86144221259205],[122,301,72,-11.935148339978966],[122,301,73,-11.979414020831133],[122,301,74,-11.996886749919167],[122,301,75,-11.993944802649333],[122,301,76,-11.971930219377398],[122,301,77,-11.937510792640246],[122,301,78,-11.902198636160554],[122,301,79,-11.85553417759949],[122,302,64,-11.834795345754246],[122,302,65,-11.832935469020873],[122,302,66,-11.809106775186303],[122,302,67,-11.779579356694077],[122,302,68,-11.761658763767333],[122,302,69,-11.782417521234866],[122,302,70,-11.834187706626505],[122,302,71,-11.903074636456594],[122,302,72,-11.975527044332708],[122,302,73,-12.018605961825768],[122,302,74,-12.036612487546002],[122,302,75,-12.035866443571823],[122,302,76,-12.013816017873177],[122,302,77,-11.978886649283925],[122,302,78,-11.949753584925467],[122,302,79,-11.906411517829593],[122,303,64,-11.877761443420958],[122,303,65,-11.87574437117503],[122,303,66,-11.855786217846605],[122,303,67,-11.82596332756198],[122,303,68,-11.809772736434448],[122,303,69,-11.8283703232671],[122,303,70,-11.879619742018805],[122,303,71,-11.946840945712879],[122,303,72,-12.019489688498581],[122,303,73,-12.06475800801017],[122,303,74,-12.083491543707083],[122,303,75,-12.082154283912109],[122,303,76,-12.059239903755213],[122,303,77,-12.03454958650012],[122,303,78,-12.004925920623172],[122,303,79,-11.949648286010031],[122,304,64,-11.921727492380775],[122,304,65,-11.919213139494481],[122,304,66,-11.89993803561714],[122,304,67,-11.871125221680357],[122,304,68,-11.856165685196766],[122,304,69,-11.873102412776207],[122,304,70,-11.926061785309358],[122,304,71,-11.992958671317533],[122,304,72,-12.063904683780889],[122,304,73,-12.110804549826417],[122,304,74,-12.130452976819319],[122,304,75,-12.12648449854352],[122,304,76,-12.105170602006202],[122,304,77,-12.079200577643537],[122,304,78,-12.048997821780217],[122,304,79,-11.993739949114085],[122,305,64,-11.96608515302914],[122,305,65,-11.964101779999751],[122,305,66,-11.943196955802316],[122,305,67,-11.916823848090806],[122,305,68,-11.899860146527097],[122,305,69,-11.91920375236102],[122,305,70,-11.972326949811867],[122,305,71,-12.039017906809644],[122,305,72,-12.110074949024149],[122,305,73,-12.154528385518562],[122,305,74,-12.174924277779398],[122,305,75,-12.171528942079812],[122,305,76,-12.15085941297103],[122,305,77,-12.128013127456507],[122,305,78,-12.095106070871768],[122,305,79,-12.037371630676788],[122,306,64,-12.014902242090875],[122,306,65,-12.01098688343534],[122,306,66,-11.991547822543774],[122,306,67,-11.963031745977405],[122,306,68,-11.948523850516576],[122,306,69,-11.968275905019699],[122,306,70,-12.018059372144712],[122,306,71,-12.087074025917298],[122,306,72,-12.158262822659676],[122,306,73,-12.202873189425182],[122,306,74,-12.22280323897933],[122,306,75,-12.219118229664721],[122,306,76,-12.19712097736127],[122,306,77,-12.169235085535135],[122,306,78,-12.135261623890388],[122,306,79,-12.078959967395512],[122,307,64,-12.061212829173638],[122,307,65,-12.05705039494796],[122,307,66,-12.035405816563385],[122,307,67,-12.00801668033467],[122,307,68,-11.994204267980022],[122,307,69,-12.012168603696],[122,307,70,-12.062230290157709],[122,307,71,-12.13221281805275],[122,307,72,-12.204492688933954],[122,307,73,-12.250113011541629],[122,307,74,-12.269976109506995],[122,307,75,-12.266977933543963],[122,307,76,-12.242983220299894],[122,307,77,-12.219979657352031],[122,307,78,-12.183753553994567],[122,307,79,-12.12611699291656],[122,308,64,-12.08609251411867],[122,308,65,-12.08245139657628],[122,308,66,-12.060997915791157],[122,308,67,-12.034426986008569],[122,308,68,-12.025172600839817],[122,308,69,-12.04679763005233],[122,308,70,-12.104682940394154],[122,308,71,-12.17965207138995],[122,308,72,-12.255905011881968],[122,308,73,-12.305216719584667],[122,308,74,-12.329398569121526],[122,308,75,-12.325895697649567],[122,308,76,-12.306329088534191],[122,308,77,-12.282603068735222],[122,308,78,-12.239810325006113],[122,308,79,-12.180696171490524],[122,309,64,-12.130889941292224],[122,309,65,-12.127661842463324],[122,309,66,-12.105346345866996],[122,309,67,-12.078594852534946],[122,309,68,-12.069288534335005],[122,309,69,-12.094161285381254],[122,309,70,-12.153027043928814],[122,309,71,-12.223569108206558],[122,309,72,-12.302204267699352],[122,309,73,-12.353744772377308],[122,309,74,-12.377073434909768],[122,309,75,-12.377139760001867],[122,309,76,-12.357674718472712],[122,309,77,-12.324569376572008],[122,309,78,-12.256201365225518],[122,309,79,-12.197389928735033],[122,310,64,-12.170855690502805],[122,310,65,-12.167768448002459],[122,310,66,-12.146167702697628],[122,310,67,-12.117504467963547],[122,310,68,-12.110076968535523],[122,310,69,-12.135422490099437],[122,310,70,-12.193888027213982],[122,310,71,-12.263942606723592],[122,310,72,-12.341742024340784],[122,310,73,-12.39275007149306],[122,310,74,-12.417849789221759],[122,310,75,-12.419522926785714],[122,310,76,-12.400750408236501],[122,310,77,-12.363537022163218],[122,310,78,-12.304365365487849],[122,310,79,-12.24231280255724],[122,311,64,-12.217062718392462],[122,311,65,-12.215431286384362],[122,311,66,-12.18988859978978],[122,311,67,-12.160854234357181],[122,311,68,-12.153501390293885],[122,311,69,-12.182210152368544],[122,311,70,-12.240151509497375],[122,311,71,-12.312588115257688],[122,311,72,-12.388968429100473],[122,311,73,-12.438805750891419],[122,311,74,-12.463727374132464],[122,311,75,-12.464313771694908],[122,311,76,-12.449259347483009],[122,311,77,-12.408441413199776],[122,311,78,-12.353173184177093],[122,311,79,-12.294932661611485],[122,312,64,-12.27248632424121],[122,312,65,-12.270241890875754],[122,312,66,-12.243730577788726],[122,312,67,-12.216318528034215],[122,312,68,-12.20498428427741],[122,312,69,-12.233364534899277],[122,312,70,-12.29102039302568],[122,312,71,-12.360495913751203],[122,312,72,-12.430555605875375],[122,312,73,-12.477508043210287],[122,312,74,-12.497965831614493],[122,312,75,-12.499440602574081],[122,312,76,-12.483700503112122],[122,312,77,-12.445065544914142],[122,312,78,-12.392300794454833],[122,312,79,-12.339597250928174],[122,313,64,-12.320831506080637],[122,313,65,-12.318061154056911],[122,313,66,-12.29034623269196],[122,313,67,-12.262084672389507],[122,313,68,-12.251219185406537],[122,313,69,-12.28039765626862],[122,313,70,-12.336993695189848],[122,313,71,-12.406906137786203],[122,313,72,-12.477834613173988],[122,313,73,-12.524057436400394],[122,313,74,-12.5409596247534],[122,313,75,-12.54314418937744],[122,313,76,-12.528067187622767],[122,313,77,-12.494237945331472],[122,313,78,-12.447750831010373],[122,313,79,-12.399548081262472],[122,314,64,-12.371693482459918],[122,314,65,-12.369168999298635],[122,314,66,-12.342377612609463],[122,314,67,-12.314170491927024],[122,314,68,-12.303578624963698],[122,314,69,-12.328498381123726],[122,314,70,-12.385209190363367],[122,314,71,-12.454730714172959],[122,314,72,-12.526784400255972],[122,314,73,-12.571681477826129],[122,314,74,-12.588545239236998],[122,314,75,-12.590937281322212],[122,314,76,-12.576644110604228],[122,314,77,-12.545231479298364],[122,314,78,-12.497540483948983],[122,314,79,-12.449804882576316],[122,315,64,-12.41907914000644],[122,315,65,-12.416478080354938],[122,315,66,-12.391162725218722],[122,315,67,-12.361378494334794],[122,315,68,-12.353823093466083],[122,315,69,-12.37589611889351],[122,315,70,-12.430716683001725],[122,315,71,-12.500839362707318],[122,315,72,-12.571994049493803],[122,315,73,-12.618130182249272],[122,315,74,-12.634854461162043],[122,315,75,-12.638368743571407],[122,315,76,-12.623610381334945],[122,315,77,-12.590624355925987],[122,315,78,-12.543849927404708],[122,315,79,-12.495155322370781],[122,316,64,-12.47296660484795],[122,316,65,-12.46889414569975],[122,316,66,-12.443961478291243],[122,316,67,-12.412194278998138],[122,316,68,-12.401517182593468],[122,316,69,-12.422775095747793],[122,316,70,-12.47622573668251],[122,316,71,-12.544778132622614],[122,316,72,-12.615688717438418],[122,316,73,-12.664691039008295],[122,316,74,-12.681886232277554],[122,316,75,-12.682355932217334],[122,316,76,-12.666053300629292],[122,316,77,-12.636116123095372],[122,316,78,-12.588858874899572],[122,316,79,-12.539132278570628],[122,317,64,-12.520410075364323],[122,317,65,-12.513259844979673],[122,317,66,-12.490550857470158],[122,317,67,-12.461817956329583],[122,317,68,-12.449484588588705],[122,317,69,-12.470957647958357],[122,317,70,-12.52297591545228],[122,317,71,-12.58917996562342],[122,317,72,-12.658883019672425],[122,317,73,-12.710910706905455],[122,317,74,-12.729358666096756],[122,317,75,-12.728816812921512],[122,317,76,-12.71217308287306],[122,317,77,-12.685518596824915],[122,317,78,-12.640191735785878],[122,317,79,-12.59227968718776],[122,318,64,-12.560313562707254],[122,318,65,-12.553926057547642],[122,318,66,-12.530944198461066],[122,318,67,-12.504138306001648],[122,318,68,-12.489606346196394],[122,318,69,-12.510650153482267],[122,318,70,-12.56042285774794],[122,318,71,-12.625778685772568],[122,318,72,-12.69735849191494],[122,318,73,-12.74765662915145],[122,318,74,-12.767170011612002],[122,318,75,-12.767055070490965],[122,318,76,-12.751185126514338],[122,318,77,-12.72755533499983],[122,318,78,-12.684916863526437],[122,318,79,-12.63908939100226],[122,319,64,-12.608350357600328],[122,319,65,-12.599602530592339],[122,319,66,-12.57613329127748],[122,319,67,-12.548330643272026],[122,319,68,-12.534165318543327],[122,319,69,-12.557442519095055],[122,319,70,-12.60689397262234],[122,319,71,-12.670951345523497],[122,319,72,-12.744470069082798],[122,319,73,-12.79413013211108],[122,319,74,-12.815181552279794],[122,319,75,-12.816815706267406],[122,319,76,-12.802710823728724],[122,319,77,-12.776213329514974],[122,319,78,-12.733866789782587],[122,319,79,-12.691168710637582],[123,-64,64,22.907244097270684],[123,-64,65,22.905784069032443],[123,-64,66,22.917599964139015],[123,-64,67,22.940605221879384],[123,-64,68,22.960236726997667],[123,-64,69,22.969162405681843],[123,-64,70,22.987036986110212],[123,-64,71,23.02331007468278],[123,-64,72,23.069069258774668],[123,-64,73,23.097488678585517],[123,-64,74,23.11305201904386],[123,-64,75,23.146437211381507],[123,-64,76,23.209073104027038],[123,-64,77,23.30090724514709],[123,-64,78,23.401339303981914],[123,-64,79,23.492966214696985],[123,-63,64,22.70575788039377],[123,-63,65,22.70811342744522],[123,-63,66,22.72287154410322],[123,-63,67,22.747613200802427],[123,-63,68,22.76451509166126],[123,-63,69,22.77399641579278],[123,-63,70,22.793154072323087],[123,-63,71,22.833239380489726],[123,-63,72,22.880830572110597],[123,-63,73,22.90870150868063],[123,-63,74,22.926529118304735],[123,-63,75,22.957336047542395],[123,-63,76,23.0182339118573],[123,-63,77,23.109741152212525],[123,-63,78,23.209504844355536],[123,-63,79,23.29841281187855],[123,-62,64,22.515225478173484],[123,-62,65,22.516314369713275],[123,-62,66,22.532199566020967],[123,-62,67,22.559189375484234],[123,-62,68,22.576598750043292],[123,-62,69,22.586350128437108],[123,-62,70,22.60495605204461],[123,-62,71,22.64319631416546],[123,-62,72,22.69306436021999],[123,-62,73,22.71912625324133],[123,-62,74,22.73637208716005],[123,-62,75,22.7674887391006],[123,-62,76,22.828631112493053],[123,-62,77,22.920383029558643],[123,-62,78,23.020531084078115],[123,-62,79,23.108907629863673],[123,-61,64,22.319416788116868],[123,-61,65,22.320679351745852],[123,-61,66,22.336932922303607],[123,-61,67,22.364742832163124],[123,-61,68,22.38394041549381],[123,-61,69,22.392356116204436],[123,-61,70,22.410410770331215],[123,-61,71,22.449272735885497],[123,-61,72,22.500390749070935],[123,-61,73,22.525698165812287],[123,-61,74,22.540475754398397],[123,-61,75,22.572870829011453],[123,-61,76,22.633636316740215],[123,-61,77,22.726206141108978],[123,-61,78,22.825549454448204],[123,-61,79,22.91387524513457],[123,-60,64,22.12650184554938],[123,-60,65,22.128299403017227],[123,-60,66,22.14516318682627],[123,-60,67,22.175051465977084],[123,-60,68,22.19896841448727],[123,-60,69,22.20525425302456],[123,-60,70,22.224498396889988],[123,-60,71,22.263095129491372],[123,-60,72,22.31104653957313],[123,-60,73,22.336455692380454],[123,-60,74,22.35337096523564],[123,-60,75,22.38634196720733],[123,-60,76,22.45062880355703],[123,-60,77,22.539293640451508],[123,-60,78,22.63883106834388],[123,-60,79,22.72817324558616],[123,-59,64,21.951610815823074],[123,-59,65,21.95127795361969],[123,-59,66,21.96661024988446],[123,-59,67,21.991215965833298],[123,-59,68,22.015305508079503],[123,-59,69,22.023836946480202],[123,-59,70,22.042090016083847],[123,-59,71,22.074446203130165],[123,-59,72,22.118073137455355],[123,-59,73,22.142803116993683],[123,-59,74,22.15927507132588],[123,-59,75,22.19165056437314],[123,-59,76,22.258949234096896],[123,-59,77,22.349543151178274],[123,-59,78,22.45123757787733],[123,-59,79,22.546373068918623],[123,-58,64,21.760555057891338],[123,-58,65,21.761289230122244],[123,-58,66,21.777540770553475],[123,-58,67,21.80136367448529],[123,-58,68,21.82483965949357],[123,-58,69,21.83576454553441],[123,-58,70,21.85179331108268],[123,-58,71,21.882432935661697],[123,-58,72,21.926136960400477],[123,-58,73,21.95050794970266],[123,-58,74,21.967004724331666],[123,-58,75,21.998616555623],[123,-58,76,22.06678622017806],[123,-58,77,22.157630496662733],[123,-58,78,22.26010069429426],[123,-58,79,22.356523406120328],[123,-57,64,21.56565926247046],[123,-57,65,21.566392703800457],[123,-57,66,21.584786935297625],[123,-57,67,21.60978159178233],[123,-57,68,21.63072193734036],[123,-57,69,21.642714477436286],[123,-57,70,21.65935101220334],[123,-57,71,21.69091364199618],[123,-57,72,21.73099121007899],[123,-57,73,21.754970352811604],[123,-57,74,21.772815343409505],[123,-57,75,21.803680402260554],[123,-57,76,21.871084985872606],[123,-57,77,21.96534974386768],[123,-57,78,22.068386673110815],[123,-57,79,22.165921312275877],[123,-56,64,21.375689468627417],[123,-56,65,21.376169968052444],[123,-56,66,21.394363092520393],[123,-56,67,21.419572905939162],[123,-56,68,21.44211465967334],[123,-56,69,21.453567999852236],[123,-56,70,21.46571447554923],[123,-56,71,21.499228286959823],[123,-56,72,21.538439613038463],[123,-56,73,21.562615920219944],[123,-56,74,21.57917031992935],[123,-56,75,21.615665983584744],[123,-56,76,21.681179759948478],[123,-56,77,21.77421833854668],[123,-56,78,21.87726329685624],[123,-56,79,21.973503122588784],[123,-55,64,21.185875623835347],[123,-55,65,21.188623008292605],[123,-55,66,21.205887584584477],[123,-55,67,21.230636038746873],[123,-55,68,21.25223035150807],[123,-55,69,21.265331654349154],[123,-55,70,21.275229968201494],[123,-55,71,21.307194956670834],[123,-55,72,21.347277032016994],[123,-55,73,21.370474879662606],[123,-55,74,21.387084211216],[123,-55,75,21.42237573769196],[123,-55,76,21.48788153288752],[123,-55,77,21.582559495092084],[123,-55,78,21.686928349966053],[123,-55,79,21.785466925301986],[123,-54,64,20.996029981817983],[123,-54,65,20.997202965886274],[123,-54,66,21.016253355468955],[123,-54,67,21.040390525809418],[123,-54,68,21.062060586854333],[123,-54,69,21.074745098311194],[123,-54,70,21.08609845321202],[123,-54,71,21.115806633759515],[123,-54,72,21.156163373194552],[123,-54,73,21.1796473137754],[123,-54,74,21.194644213822702],[123,-54,75,21.230318842338086],[123,-54,76,21.295523618970446],[123,-54,77,21.390388491202827],[123,-54,78,21.49612363758058],[123,-54,79,21.596662333825478],[123,-53,64,20.79947670505526],[123,-53,65,20.799308024008017],[123,-53,66,20.821648979505227],[123,-53,67,20.848486036434355],[123,-53,68,20.86935217281],[123,-53,69,20.88004757228001],[123,-53,70,20.88968646866883],[123,-53,71,20.918856209104067],[123,-53,72,20.956934635590247],[123,-53,73,20.982619181618503],[123,-53,74,20.998419152253582],[123,-53,75,21.03403501567784],[123,-53,76,21.1015684005924],[123,-53,77,21.19409457532562],[123,-53,78,21.299409242732242],[123,-53,79,21.402975064404757],[123,-52,64,20.60490266558096],[123,-52,65,20.60802853246807],[123,-52,66,20.634023621459626],[123,-52,67,20.662935628453795],[123,-52,68,20.685520968133293],[123,-52,69,20.69315486447564],[123,-52,70,20.70237488643511],[123,-52,71,20.73291415066793],[123,-52,72,20.772190468171424],[123,-52,73,20.798198082350787],[123,-52,74,20.814374317540658],[123,-52,75,20.849549168947632],[123,-52,76,20.916270207085137],[123,-52,77,21.009200225456034],[123,-52,78,21.112531526564176],[123,-52,79,21.21755073890416],[123,-51,64,20.402243432190424],[123,-51,65,20.39450492250752],[123,-51,66,20.420516532120256],[123,-51,67,20.451743647486744],[123,-51,68,20.473132582101726],[123,-51,69,20.481475501888205],[123,-51,70,20.49178309956191],[123,-51,71,20.520148584685984],[123,-51,72,20.560630915618184],[123,-51,73,20.58730287364451],[123,-51,74,20.605660442115752],[123,-51,75,20.640467028607713],[123,-51,76,20.711175569395255],[123,-51,77,20.80961914170803],[123,-51,78,20.91815450300603],[123,-51,79,21.02987077347051],[123,-50,64,20.24376518082424],[123,-50,65,20.249016741943194],[123,-50,66,20.22652944121504],[123,-50,67,20.25879949190677],[123,-50,68,20.27984683641175],[123,-50,69,20.28934992037192],[123,-50,70,20.302726398392377],[123,-50,71,20.330881680055075],[123,-50,72,20.367428320539506],[123,-50,73,20.39210037715262],[123,-50,74,20.409533156214607],[123,-50,75,20.448311661845377],[123,-50,76,20.518136135260946],[123,-50,77,20.617860958886205],[123,-50,78,20.72554046641874],[123,-50,79,20.83600490225213],[123,-49,64,20.104458031785512],[123,-49,65,20.112010053268776],[123,-49,66,20.046895721127683],[123,-49,67,20.06307384440218],[123,-49,68,20.084512227104057],[123,-49,69,20.095019860187968],[123,-49,70,20.11036462444706],[123,-49,71,20.138194165529747],[123,-49,72,20.17216824411984],[123,-49,73,20.19483621649976],[123,-49,74,20.214464671842787],[123,-49,75,20.25251695512594],[123,-49,76,20.322348608275945],[123,-49,77,20.422271206835497],[123,-49,78,20.53241735705538],[123,-49,79,20.64234871603695],[123,-48,64,19.965940155889612],[123,-48,65,19.97194364405942],[123,-48,66,19.902836167616396],[123,-48,67,19.87382516726447],[123,-48,68,19.893465943050938],[123,-48,69,19.90576938744511],[123,-48,70,19.922802094994474],[123,-48,71,19.9466312218562],[123,-48,72,19.979654635997107],[123,-48,73,20.00051798320563],[123,-48,74,20.017880845811646],[123,-48,75,20.057464068903162],[123,-48,76,20.128002492585917],[123,-48,77,20.227894628338525],[123,-48,78,20.337901582351098],[123,-48,79,20.44935652874541],[123,-47,64,19.79510238622055],[123,-47,65,19.808894739444582],[123,-47,66,19.737229886974777],[123,-47,67,19.68436039570132],[123,-47,68,19.708119829894144],[123,-47,69,19.7204973518547],[123,-47,70,19.732614105816843],[123,-47,71,19.757898485232932],[123,-47,72,19.79118216210518],[123,-47,73,19.808312802368352],[123,-47,74,19.82369347577939],[123,-47,75,19.86482102207122],[123,-47,76,19.935043236472122],[123,-47,77,20.031642136732078],[123,-47,78,20.140507194224416],[123,-47,79,20.24604242842046],[123,-46,64,19.55281573734905],[123,-46,65,19.56997133214774],[123,-46,66,19.584300089854032],[123,-46,67,19.54208704010542],[123,-46,68,19.52135259955898],[123,-46,69,19.530063828908357],[123,-46,70,19.540146751293516],[123,-46,71,19.563507217504874],[123,-46,72,19.59484740354264],[123,-46,73,19.612822676431815],[123,-46,74,19.629511597970314],[123,-46,75,19.671238490509403],[123,-46,76,19.74033783363623],[123,-46,77,19.837372742550475],[123,-46,78,19.946392217213074],[123,-46,79,20.05062018523071],[123,-45,64,19.380492580063905],[123,-45,65,19.395785219009614],[123,-45,66,19.429146865272813],[123,-45,67,19.36721286378463],[123,-45,68,19.328201005589086],[123,-45,69,19.336366423579097],[123,-45,70,19.342506498444312],[123,-45,71,19.363513481727303],[123,-45,72,19.395494149586188],[123,-45,73,19.413320807558236],[123,-45,74,19.433953631259744],[123,-45,75,19.47442009980789],[123,-45,76,19.541168680978167],[123,-45,77,19.639894826230616],[123,-45,78,19.746897637760384],[123,-45,79,19.852374762242068],[123,-44,64,19.336837404237276],[123,-44,65,19.340282394048415],[123,-44,66,19.381752324537196],[123,-44,67,19.2299886069821],[123,-44,68,19.111954884989572],[123,-44,69,19.11625160271397],[123,-44,70,19.11771706435137],[123,-44,71,19.135884130001596],[123,-44,72,19.164146514608603],[123,-44,73,19.179894280070705],[123,-44,74,19.199723987643548],[123,-44,75,19.236758648692273],[123,-44,76,19.305460266610893],[123,-44,77,19.40474981164516],[123,-44,78,19.51205963942672],[123,-44,79,19.619839463647462],[123,-43,64,19.25294553524955],[123,-43,65,19.238983828935382],[123,-43,66,19.275421684374283],[123,-43,67,19.128769454493888],[123,-43,68,18.98387899339363],[123,-43,69,18.93439381659502],[123,-43,70,18.935866374031207],[123,-43,71,18.95236257459777],[123,-43,72,18.97608295339213],[123,-43,73,18.99153975790331],[123,-43,74,19.00881965252005],[123,-43,75,19.0463810438461],[123,-43,76,19.115933334753212],[123,-43,77,19.21573013011775],[123,-43,78,19.318587055054373],[123,-43,79,19.424416835918727],[123,-42,64,19.07593344917997],[123,-42,65,19.070823774024213],[123,-42,66,19.09099161683375],[123,-42,67,18.95762699052233],[123,-42,68,18.827870660832737],[123,-42,69,18.74751200366766],[123,-42,70,18.747724457630227],[123,-42,71,18.76256042064403],[123,-42,72,18.784422010198806],[123,-42,73,18.797747424898105],[123,-42,74,18.816111500169725],[123,-42,75,18.85491537702924],[123,-42,76,18.9240838901239],[123,-42,77,19.020933581557102],[123,-42,78,19.124692274492457],[123,-42,79,19.229941008151915],[123,-41,64,18.95844484906573],[123,-41,65,18.94932505848023],[123,-41,66,19.00685054099608],[123,-41,67,18.878970999287507],[123,-41,68,18.750472003131396],[123,-41,69,18.645555404405858],[123,-41,70,18.551707288925428],[123,-41,71,18.568969826612232],[123,-41,72,18.588983731419276],[123,-41,73,18.604426435987353],[123,-41,74,18.62127768611721],[123,-41,75,18.658004792668482],[123,-41,76,18.726364249007805],[123,-41,77,18.826201348063655],[123,-41,78,18.931086648937086],[123,-41,79,19.03784333308156],[123,-40,64,18.845862711376654],[123,-40,65,18.808412195024765],[123,-40,66,18.852996489540544],[123,-40,67,18.717065001230647],[123,-40,68,18.61520615075662],[123,-40,69,18.48131542087875],[123,-40,70,18.35976603342808],[123,-40,71,18.374417692353788],[123,-40,72,18.395469573007656],[123,-40,73,18.411880742919436],[123,-40,74,18.426729398901884],[123,-40,75,18.462937461260154],[123,-40,76,18.53093981038984],[123,-40,77,18.63088750805057],[123,-40,78,18.738265264679413],[123,-40,79,18.844608351077543],[123,-39,64,18.65434451458581],[123,-39,65,18.649673501963402],[123,-39,66,18.66998294205621],[123,-39,67,18.538199647025756],[123,-39,68,18.455223390867047],[123,-39,69,18.280810632406556],[123,-39,70,18.168871347424275],[123,-39,71,18.18383839688859],[123,-39,72,18.20438093668682],[123,-39,73,18.21973744180161],[123,-39,74,18.23294958267567],[123,-39,75,18.27048967938112],[123,-39,76,18.33791743519752],[123,-39,77,18.437741469027678],[123,-39,78,18.546019535748318],[123,-39,79,18.651119072474525],[123,-38,64,18.47113829076574],[123,-38,65,18.466173576835004],[123,-38,66,18.487594614145973],[123,-38,67,18.268534772848213],[123,-38,68,18.15562533704051],[123,-38,69,18.003754800275033],[123,-38,70,17.979042503542733],[123,-38,71,17.99147682181231],[123,-38,72,18.013160275936634],[123,-38,73,18.02667624042905],[123,-38,74,18.038344995348798],[123,-38,75,18.076511829453786],[123,-38,76,18.142274005495374],[123,-38,77,18.242089094339747],[123,-38,78,18.352216631399024],[123,-38,79,18.458813192799184],[123,-37,64,18.278939724505427],[123,-37,65,18.274488588934176],[123,-37,66,18.293314948133098],[123,-37,67,18.147287896348637],[123,-37,68,18.00552945413841],[123,-37,69,17.855956344641452],[123,-37,70,17.801878030576276],[123,-37,71,17.833683492289843],[123,-37,72,17.836656616916166],[123,-37,73,17.82773284257589],[123,-37,74,17.841325798929702],[123,-37,75,17.876849978010267],[123,-37,76,17.943483327032194],[123,-37,77,18.044517466480514],[123,-37,78,18.15504160313817],[123,-37,79,18.262096405950032],[123,-36,64,18.075599752633437],[123,-36,65,18.070910578345412],[123,-36,66,18.08995536803826],[123,-36,67,17.97576144813628],[123,-36,68,17.837870991076947],[123,-36,69,17.69359377834113],[123,-36,70,17.626646085431016],[123,-36,71,17.65891304480441],[123,-36,72,17.664427327514886],[123,-36,73,17.641572285158723],[123,-36,74,17.656473513459574],[123,-36,75,17.68927259424725],[123,-36,76,17.754990580414358],[123,-36,77,17.858690903289858],[123,-36,78,17.96898510470947],[123,-36,79,18.077684190922113],[123,-35,64,17.884582036339292],[123,-35,65,17.879509655084124],[123,-35,66,17.852441629056944],[123,-35,67,17.563398643256047],[123,-35,68,17.415018000789583],[123,-35,69,17.416565698197367],[123,-35,70,17.411481248225822],[123,-35,71,17.41809611773483],[123,-35,72,17.43343572331516],[123,-35,73,17.44566514274162],[123,-35,74,17.45899279170061],[123,-35,75,17.492089933975308],[123,-35,76,17.56370313142012],[123,-35,77,17.6661162850043],[123,-35,78,17.778819002785138],[123,-35,79,17.891178821326402],[123,-34,64,17.68389496070266],[123,-34,65,17.679429949401662],[123,-34,66,17.685780671676437],[123,-34,67,17.401555519425056],[123,-34,68,17.254205458384693],[123,-34,69,17.228286815153275],[123,-34,70,17.22221724081343],[123,-34,71,17.228142468721973],[123,-34,72,17.240486096449356],[123,-34,73,17.25125778972525],[123,-34,74,17.263319182903853],[123,-34,75,17.299064345517227],[123,-34,76,17.37275507747797],[123,-34,77,17.47241761073119],[123,-34,78,17.582874805349945],[123,-34,79,17.69822777684618],[123,-33,64,17.48203518429059],[123,-33,65,17.47555640310596],[123,-33,66,17.49125732132412],[123,-33,67,17.25783097337834],[123,-33,68,17.127190249474737],[123,-33,69,17.08442070706127],[123,-33,70,17.07178732103851],[123,-33,71,17.074387124214038],[123,-33,72,17.079331670667585],[123,-33,73,17.086083618362956],[123,-33,74,17.09221032956368],[123,-33,75,17.125510407817384],[123,-33,76,17.193006687434114],[123,-33,77,17.289394700910453],[123,-33,78,17.395257343525046],[123,-33,79,17.505076298109223],[123,-32,64,17.29454179823069],[123,-32,65,17.287863522303034],[123,-32,66,17.305740753449253],[123,-32,67,17.076360721401493],[123,-32,68,16.95089445321464],[123,-32,69,16.895842655409805],[123,-32,70,16.883606489472225],[123,-32,71,16.885140658546007],[123,-32,72,16.89133342199157],[123,-32,73,16.894156058495582],[123,-32,74,16.901676994180114],[123,-32,75,16.932362561459737],[123,-32,76,16.99945034564168],[123,-32,77,17.09376319480052],[123,-32,78,17.200158048489744],[123,-32,79,17.31401232526674],[123,-31,64,17.10665579192606],[123,-31,65,17.099760409665183],[123,-31,66,17.11833961057728],[123,-31,67,16.997108139176927],[123,-31,68,16.86847016300137],[123,-31,69,16.709713382188152],[123,-31,70,16.69572570893202],[123,-31,71,16.69550800001113],[123,-31,72,16.700099958241033],[123,-31,73,16.70304893948757],[123,-31,74,16.710251571992735],[123,-31,75,16.73898786545043],[123,-31,76,16.803596574544322],[123,-31,77,16.89850577008788],[123,-31,78,17.008821103701713],[123,-31,79,17.123201833795143],[123,-30,64,16.92890531014801],[123,-30,65,16.919554986780163],[123,-30,66,16.939585053457602],[123,-30,67,16.84439343025785],[123,-30,68,16.697269499313347],[123,-30,69,16.51924247579789],[123,-30,70,16.50662113701172],[123,-30,71,16.506454710765432],[123,-30,72,16.50846995701318],[123,-30,73,16.509429045290116],[123,-30,74,16.5160129913771],[123,-30,75,16.544548731488874],[123,-30,76,16.60934941949021],[123,-30,77,16.706016936725067],[123,-30,78,16.81690372822732],[123,-30,79,16.933488978061114],[123,-29,64,16.74972396016661],[123,-29,65,16.742152524512683],[123,-29,66,16.76019062162148],[123,-29,67,16.752962725738783],[123,-29,68,16.567752351784847],[123,-29,69,16.3884539265569],[123,-29,70,16.310459111395254],[123,-29,71,16.310335859309554],[123,-29,72,16.31084578556815],[123,-29,73,16.3116346235537],[123,-29,74,16.31717137750799],[123,-29,75,16.34623567981331],[123,-29,76,16.411560814367835],[123,-29,77,16.509511547084667],[123,-29,78,16.622785033721026],[123,-29,79,16.737254103928205],[123,-28,64,16.550948672914267],[123,-28,65,16.542395922752025],[123,-28,66,16.558659456868007],[123,-28,67,16.579366887370757],[123,-28,68,16.398951958075205],[123,-28,69,16.21933907321256],[123,-28,70,16.1260177043912],[123,-28,71,16.12396947146562],[123,-28,72,16.126857506190042],[123,-28,73,16.12612084492397],[123,-28,74,16.13007265213421],[123,-28,75,16.15998562571247],[123,-28,76,16.22509244051934],[123,-28,77,16.325155051710507],[123,-28,78,16.439319919786893],[123,-28,79,16.551775627091278],[123,-27,64,16.361984893495563],[123,-27,65,16.350896299514922],[123,-27,66,16.367139929783832],[123,-27,67,16.397525868739972],[123,-27,68,16.386940658685603],[123,-27,69,16.204197890410693],[123,-27,70,16.03064443047418],[123,-27,71,15.94886243287595],[123,-27,72,15.949295312850648],[123,-27,73,15.947400802014082],[123,-27,74,15.949834679924534],[123,-27,75,15.977209306355297],[123,-27,76,16.04029626724306],[123,-27,77,16.141138423616564],[123,-27,78,16.251437636067802],[123,-27,79,16.35911497693656],[123,-26,64,16.221288675511886],[123,-26,65,16.21118680366046],[123,-26,66,16.227223026317205],[123,-26,67,16.255673537546816],[123,-26,68,16.25147866324314],[123,-26,69,16.045690756973826],[123,-26,70,15.857799753146276],[123,-26,71,15.759327132770421],[123,-26,72,15.760171373088916],[123,-26,73,15.756604475986785],[123,-26,74,15.758969504349531],[123,-26,75,15.784518415555077],[123,-26,76,15.848301381333926],[123,-26,77,15.94614316317348],[123,-26,78,16.06027117855758],[123,-26,79,16.16455865487472],[123,-25,64,16.029932210415783],[123,-25,65,16.01985379440019],[123,-25,66,16.03556262851525],[123,-25,67,16.061433770164435],[123,-25,68,16.076501458307074],[123,-25,69,15.866394667402838],[123,-25,70,15.688940343837043],[123,-25,71,15.566584615171513],[123,-25,72,15.567183228529863],[123,-25,73,15.564159953549172],[123,-25,74,15.564935503853837],[123,-25,75,15.589741081298945],[123,-25,76,15.654052853003359],[123,-25,77,15.75126894310317],[123,-25,78,15.866221349721906],[123,-25,79,15.971568735148947],[123,-24,64,15.842085699088578],[123,-24,65,15.836337630363934],[123,-24,66,15.851169331779259],[123,-24,67,15.87113663875953],[123,-24,68,15.886111717767259],[123,-24,69,15.719908886741626],[123,-24,70,15.518901852882856],[123,-24,71,15.375549603921165],[123,-24,72,15.377151878087684],[123,-24,73,15.372233562555365],[123,-24,74,15.370516232349612],[123,-24,75,15.396338123452416],[123,-24,76,15.459199300329836],[123,-24,77,15.55560698610691],[123,-24,78,15.67004641791175],[123,-24,79,15.777623904332469],[123,-23,64,15.652280852583578],[123,-23,65,15.647627740245834],[123,-23,66,15.661526950647415],[123,-23,67,15.681256790818315],[123,-23,68,15.683757211681197],[123,-23,69,15.527760416850176],[123,-23,70,15.31923817048988],[123,-23,71,15.18317803187364],[123,-23,72,15.180421248046454],[123,-23,73,15.17599278202838],[123,-23,74,15.175596950904191],[123,-23,75,15.19887089276983],[123,-23,76,15.259541871299644],[123,-23,77,15.355018116596888],[123,-23,78,15.465581298183654],[123,-23,79,15.57132338047276],[123,-22,64,15.469334817051454],[123,-22,65,15.465115377236824],[123,-22,66,15.479200924883285],[123,-22,67,15.498504756004241],[123,-22,68,15.509249329478084],[123,-22,69,15.383371594274216],[123,-22,70,15.150614399593898],[123,-22,71,14.992479027460972],[123,-22,72,14.988445977380588],[123,-22,73,14.985154638555205],[123,-22,74,14.983214547085245],[123,-22,75,15.006340933283262],[123,-22,76,15.067760488555951],[123,-22,77,15.161296145293452],[123,-22,78,15.269524608256294],[123,-22,79,15.373863958678008],[123,-21,64,15.274837691431243],[123,-21,65,15.270852473869382],[123,-21,66,15.286807861320643],[123,-21,67,15.30650329130323],[123,-21,68,15.312519572607181],[123,-21,69,15.281869882822264],[123,-21,70,15.059109910845095],[123,-21,71,14.880892526205981],[123,-21,72,14.793666956352453],[123,-21,73,14.78990219413718],[123,-21,74,14.786430878315064],[123,-21,75,14.808549567949752],[123,-21,76,14.870506916696547],[123,-21,77,14.963682597644295],[123,-21,78,15.068974663971286],[123,-21,79,15.17566600983646],[123,-20,64,15.071450762355557],[123,-20,65,15.067372835310557],[123,-20,66,15.084531434156649],[123,-20,67,15.104220990880444],[123,-20,68,15.111219899904201],[123,-20,69,15.080660436723425],[123,-20,70,14.883192907415763],[123,-20,71,14.717892312023526],[123,-20,72,14.604726382261385],[123,-20,73,14.60031949798664],[123,-20,74,14.597070285070107],[123,-20,75,14.617957301990552],[123,-20,76,14.678092359459795],[123,-20,77,14.773320777581336],[123,-20,78,14.877818758114122],[123,-20,79,14.98449682853467],[123,-19,64,14.876314843114361],[123,-19,65,14.873073269374176],[123,-19,66,14.889829253269147],[123,-19,67,14.91116548864872],[123,-19,68,14.920730417621417],[123,-19,69,14.911273150388073],[123,-19,70,14.804911080408123],[123,-19,71,14.66193180309012],[123,-19,72,14.540380045111997],[123,-19,73,14.42489772018262],[123,-19,74,14.40735611596566],[123,-19,75,14.430765458251576],[123,-19,76,14.490455960697151],[123,-19,77,14.584109475295026],[123,-19,78,14.69049213972036],[123,-19,79,14.79951079156905],[123,-18,64,14.67195816680568],[123,-18,65,14.670368337335193],[123,-18,66,14.686971303478504],[123,-18,67,14.708261550749635],[123,-18,68,14.719235668456703],[123,-18,69,14.709966603727517],[123,-18,70,14.613004563863248],[123,-18,71,14.493916499965804],[123,-18,72,14.379641003670558],[123,-18,73,14.241986096128041],[123,-18,74,14.217472718030288],[123,-18,75,14.238979022996629],[123,-18,76,14.298836973655161],[123,-18,77,14.391142285022191],[123,-18,78,14.496634942058858],[123,-18,79,14.606836744456698],[123,-17,64,14.480085696797943],[123,-17,65,14.477156908843059],[123,-17,66,14.493875109736454],[123,-17,67,14.518600770743342],[123,-17,68,14.53345551930905],[123,-17,69,14.525470853284054],[123,-17,70,14.440357439969938],[123,-17,71,14.331505453110918],[123,-17,72,14.18030065855995],[123,-17,73,14.070906375464691],[123,-17,74,14.026334120860568],[123,-17,75,14.046587777707646],[123,-17,76,14.105037362064857],[123,-17,77,14.199975733152783],[123,-17,78,14.308666368673327],[123,-17,79,14.415141707896801],[123,-16,64,14.2932617874574],[123,-16,65,14.287601564015688],[123,-16,66,14.307258257669893],[123,-16,67,14.332962441882636],[123,-16,68,14.34576359935047],[123,-16,69,14.33799823192888],[123,-16,70,14.325146831627551],[123,-16,71,14.261027421580335],[123,-16,72,14.09128970737216],[123,-16,73,14.003552752612123],[123,-16,74,13.835334661104053],[123,-16,75,13.856304918458877],[123,-16,76,13.9133825810531],[123,-16,77,14.007580364690353],[123,-16,78,14.118969475725255],[123,-16,79,14.225543705004792],[123,-15,64,14.102209742549125],[123,-15,65,14.095369386647766],[123,-15,66,14.116149196586088],[123,-15,67,14.142017448976173],[123,-15,68,14.156193461685891],[123,-15,69,14.146177029221395],[123,-15,70,14.13408088736936],[123,-15,71,14.097766778814906],[123,-15,72,13.927172883507605],[123,-15,73,13.840505199700866],[123,-15,74,13.641137674896994],[123,-15,75,13.661420980474677],[123,-15,76,13.720619689670034],[123,-15,77,13.814236513118331],[123,-15,78,13.925999818454736],[123,-15,79,14.03371161123086],[123,-14,64,13.80143005318705],[123,-14,65,13.796688042459987],[123,-14,66,13.818078251901998],[123,-14,67,13.846278708094838],[123,-14,68,13.859124507330229],[123,-14,69,13.849572093457681],[123,-14,70,13.835888731967355],[123,-14,71,13.809134634854109],[123,-14,72,13.69889660736265],[123,-14,73,13.635030203205678],[123,-14,74,13.445659632422618],[123,-14,75,13.46586701641829],[123,-14,76,13.52818095903197],[123,-14,77,13.621275977569198],[123,-14,78,13.732675164032115],[123,-14,79,13.84336618378897],[123,-13,64,13.608221529498813],[123,-13,65,13.602634251163206],[123,-13,66,13.625775510251772],[123,-13,67,13.656196012947296],[123,-13,68,13.669559730223442],[123,-13,69,13.658670237162955],[123,-13,70,13.642282237716614],[123,-13,71,13.634591218143527],[123,-13,72,13.591720370574391],[123,-13,73,13.495090266798176],[123,-13,74,13.311824062808805],[123,-13,75,13.266185223384063],[123,-13,76,13.330422989996984],[123,-13,77,13.425666948200677],[123,-13,78,13.536238516744413],[123,-13,79,13.647063662306625],[123,-12,64,13.404916631942804],[123,-12,65,13.397453534205997],[123,-12,66,13.421674310097629],[123,-12,67,13.4542676909481],[123,-12,68,13.467443927949892],[123,-12,69,13.457034680614893],[123,-12,70,13.44109782985941],[123,-12,71,13.432940038111644],[123,-12,72,13.387878252704432],[123,-12,73,13.279554011693586],[123,-12,74,13.131390302740062],[123,-12,75,13.075658607714038],[123,-12,76,13.141351417016176],[123,-12,77,13.23484313214834],[123,-12,78,13.344970222309504],[123,-12,79,13.457528410762931],[123,-11,64,13.207955110662084],[123,-11,65,13.200370034604342],[123,-11,66,13.223067548794464],[123,-11,67,13.256360564403172],[123,-11,68,13.271282965449826],[123,-11,69,13.263000147030779],[123,-11,70,13.245596149526923],[123,-11,71,13.238520842344405],[123,-11,72,13.21115878270673],[123,-11,73,13.07347719856934],[123,-11,74,12.941692103229236],[123,-11,75,12.895700515386778],[123,-11,76,12.961150271189634],[123,-11,77,13.055502870864503],[123,-11,78,13.165308813736521],[123,-11,79,13.279521667530483],[123,-10,64,13.005853699678642],[123,-10,65,13.000485940786719],[123,-10,66,13.021127606715378],[123,-10,67,13.052881246665786],[123,-10,68,13.068527382313356],[123,-10,69,13.05945566980785],[123,-10,70,13.042696371492967],[123,-10,71,13.035025543271402],[123,-10,72,13.002905579140595],[123,-10,73,12.865521798101218],[123,-10,74,12.748317967875744],[123,-10,75,12.70359294368014],[123,-10,76,12.766088010623424],[123,-10,77,12.862538383613815],[123,-10,78,12.97196707626561],[123,-10,79,13.087733770994603],[123,-9,64,12.819194610591111],[123,-9,65,12.813174929556268],[123,-9,66,12.835070293139648],[123,-9,67,12.863946233280517],[123,-9,68,12.881378919806009],[123,-9,69,12.872622881625476],[123,-9,70,12.855000649739775],[123,-9,71,12.846880202283028],[123,-9,72,12.811889428700539],[123,-9,73,12.659512203117941],[123,-9,74,12.557726970446437],[123,-9,75,12.5125090093955],[123,-9,76,12.572967244462777],[123,-9,77,12.668063887418144],[123,-9,78,12.778992914222055],[123,-9,79,12.89489977250871],[123,-8,64,12.626984157632924],[123,-8,65,12.620794796958426],[123,-8,66,12.643141971242173],[123,-8,67,12.670324592056371],[123,-8,68,12.688856773049984],[123,-8,69,12.68192492947867],[123,-8,70,12.664436067023455],[123,-8,71,12.657222268195598],[123,-8,72,12.545990048799055],[123,-8,73,12.396364633989567],[123,-8,74,12.310230523077145],[123,-8,75,12.324137492007393],[123,-8,76,12.380920783005017],[123,-8,77,12.476102147861173],[123,-8,78,12.589286739165422],[123,-8,79,12.703615744075897],[123,-7,64,12.432253356952621],[123,-7,65,12.425741985225823],[123,-7,66,12.4476201400199],[123,-7,67,12.475770151223568],[123,-7,68,12.493585858491754],[123,-7,69,12.487474291224975],[123,-7,70,12.47061199666855],[123,-7,71,12.461883688736215],[123,-7,72,12.347709618070779],[123,-7,73,12.194842410455644],[123,-7,74,12.116062303958387],[123,-7,75,12.134904820146394],[123,-7,76,12.189502256294553],[123,-7,77,12.284683059751208],[123,-7,78,12.39870472155636],[123,-7,79,12.513777903605062],[123,-6,64,12.236965524620649],[123,-6,65,12.227814712899647],[123,-6,66,12.249766884235342],[123,-6,67,12.280740584706031],[123,-6,68,12.29950952141998],[123,-6,69,12.293365899367714],[123,-6,70,12.274052869551081],[123,-6,71,12.265143222270162],[123,-6,72,12.16396831595262],[123,-6,73,12.004042034283565],[123,-6,74,11.925271901255885],[123,-6,75,11.943644582680768],[123,-6,76,11.99863429616578],[123,-6,77,12.093602070209267],[123,-6,78,12.20744656595698],[123,-6,79,12.323876561620395],[123,-5,64,12.038191627249688],[123,-5,65,12.03260014389522],[123,-5,66,12.053827340008663],[123,-5,67,12.08655824127366],[123,-5,68,12.10676696314178],[123,-5,69,12.098892958437162],[123,-5,70,12.079051005501041],[123,-5,71,12.069255405008548],[123,-5,72,12.06381032545055],[123,-5,73,12.010536653183454],[123,-5,74,11.921534413485709],[123,-5,75,11.799935209361971],[123,-5,76,11.80066548423826],[123,-5,77,11.896239007540249],[123,-5,78,12.009866702177298],[123,-5,79,12.12940313483787],[123,-4,64,11.830730370129858],[123,-4,65,11.827007102779586],[123,-4,66,11.849553024406118],[123,-4,67,11.882682048454152],[123,-4,68,11.903804560803833],[123,-4,69,11.894263006005279],[123,-4,70,11.874526702725671],[123,-4,71,11.866349074133062],[123,-4,72,11.86054048703693],[123,-4,73,11.792960239252546],[123,-4,74,11.7229072450807],[123,-4,75,11.61164473578792],[123,-4,76,11.60728776510358],[123,-4,77,11.704605996763751],[123,-4,78,11.816562149469043],[123,-4,79,11.93701447926152],[123,-3,64,11.62746992407406],[123,-3,65,11.621745949275326],[123,-3,66,11.64926439716121],[123,-3,67,11.681671620967183],[123,-3,68,11.70242384088616],[123,-3,69,11.695108941403598],[123,-3,70,11.679214682089277],[123,-3,71,11.671419558245827],[123,-3,72,11.667884691173029],[123,-3,73,11.635721874858826],[123,-3,74,11.560976526344895],[123,-3,75,11.431422632188111],[123,-3,76,11.415763807077095],[123,-3,77,11.512653469285697],[123,-3,78,11.623751406872486],[123,-3,79,11.745161228552535],[123,-2,64,11.426885731290657],[123,-2,65,11.421957858700098],[123,-2,66,11.449124264764295],[123,-2,67,11.482421448404736],[123,-2,68,11.503617613108528],[123,-2,69,11.499765597554834],[123,-2,70,11.481844877868301],[123,-2,71,11.475327704752663],[123,-2,72,11.470129091793982],[123,-2,73,11.441378979342883],[123,-2,74,11.350306666748764],[123,-2,75,11.224666690830512],[123,-2,76,11.22136853309659],[123,-2,77,11.319634519495487],[123,-2,78,11.433635120266368],[123,-2,79,11.554233388528681],[123,-1,64,11.233178618725884],[123,-1,65,11.226956042175402],[123,-1,66,11.255617987197061],[123,-1,67,11.291440083073853],[123,-1,68,11.311622197482384],[123,-1,69,11.308382122767718],[123,-1,70,11.292312557599201],[123,-1,71,11.282224120943914],[123,-1,72,11.275094047497788],[123,-1,73,11.274474932081146],[123,-1,74,11.174437912203363],[123,-1,75,11.023503648532232],[123,-1,76,11.028166134007295],[123,-1,77,11.128224139988452],[123,-1,78,11.242360760183045],[123,-1,79,11.365009167997421],[123,0,64,10.970076765790973],[123,0,65,10.964277027401087],[123,0,66,10.987970894013232],[123,0,67,11.013144419305247],[123,0,68,11.023892496689202],[123,0,69,11.001476523332915],[123,0,70,10.969375351727662],[123,0,71,10.93897671183136],[123,0,72,10.912799909797982],[123,0,73,10.88778749170249],[123,0,74,10.87462473707811],[123,0,75,10.884380482234562],[123,0,76,10.937502373084303],[123,0,77,11.037846518707408],[123,0,78,11.149851004678121],[123,0,79,11.266688265606273],[123,1,64,10.776656561514615],[123,1,65,10.772258267920371],[123,1,66,10.795219075778743],[123,1,67,10.821592927264819],[123,1,68,10.829465706775675],[123,1,69,10.808990963813542],[123,1,70,10.777158086865843],[123,1,71,10.746922764467119],[123,1,72,10.717790392718387],[123,1,73,10.691346027359602],[123,1,74,10.67961865255821],[123,1,75,10.688356028713848],[123,1,76,10.742785387246816],[123,1,77,10.84131213651812],[123,1,78,10.954807242235091],[123,1,79,11.070575758631508],[123,2,64,10.583228015478364],[123,2,65,10.579078330278058],[123,2,66,10.60099372334608],[123,2,67,10.62783711067628],[123,2,68,10.63673559718461],[123,2,69,10.61757232374955],[123,2,70,10.585322536023304],[123,2,71,10.5541789369807],[123,2,72,10.5221651073264],[123,2,73,10.494223103914344],[123,2,74,10.480790535409087],[123,2,75,10.492963184280011],[123,2,76,10.54894367873393],[123,2,77,10.647044720325676],[123,2,78,10.761632913436584],[123,2,79,10.87762761363263],[123,3,64,10.38992995604559],[123,3,65,10.385939962691992],[123,3,66,10.405891905948218],[123,3,67,10.43531574676891],[123,3,68,10.447280603480827],[123,3,69,10.426648617935284],[123,3,70,10.394799889529084],[123,3,71,10.357493459385113],[123,3,72,10.325682634839811],[123,3,73,10.297933369859416],[123,3,74,10.284184616781703],[123,3,75,10.298055010176844],[123,3,76,10.355876525591748],[123,3,77,10.451344122246162],[123,3,78,10.568325887091062],[123,3,79,10.684405157993115],[123,4,64,10.19569419951969],[123,4,65,10.1919698565207],[123,4,66,10.21209706153087],[123,4,67,10.244428790599853],[123,4,68,10.255225550070325],[123,4,69,10.235313474537667],[123,4,70,10.198601511052267],[123,4,71,10.164427983040445],[123,4,72,10.131013156641902],[123,4,73,10.101677547174324],[123,4,74,10.088120313849172],[123,4,75,10.100978341630496],[123,4,76,10.157914329914254],[123,4,77,10.257619963423826],[123,4,78,10.373650595594052],[123,4,79,10.490829517554817],[123,5,64,10.003349216274502],[123,5,65,9.997529960488269],[123,5,66,10.019079649237211],[123,5,67,10.052264606697861],[123,5,68,10.061028581657563],[123,5,69,10.0415349166411],[123,5,70,10.00385662513485],[123,5,71,9.970231504190401],[123,5,72,9.936226852625584],[123,5,73,9.908608994486857],[123,5,74,9.893096358109101],[123,5,75,9.90727871512127],[123,5,76,9.963887456306136],[123,5,77,10.06344805660628],[123,5,78,10.180675898806289],[123,5,79,10.298301651137248],[123,6,64,9.813138732848339],[123,6,65,9.805612782131478],[123,6,66,9.825960881057902],[123,6,67,9.855490227997326],[123,6,68,9.864923715819723],[123,6,69,9.846382040177351],[123,6,70,9.811717744413016],[123,6,71,9.776102249838749],[123,6,72,9.741084640964885],[123,6,73,9.713693117786477],[123,6,74,9.696739808643214],[123,6,75,9.713132110247964],[123,6,76,9.770715798755202],[123,6,77,9.87134367430796],[123,6,78,9.985828532411325],[123,6,79,10.103385135421549],[123,7,64,9.624677693210696],[123,7,65,9.616154087618872],[123,7,66,9.634865140077721],[123,7,67,9.660845727195804],[123,7,68,9.6722539806887],[123,7,69,9.65330435276502],[123,7,70,9.617832607111303],[123,7,71,9.582988934541952],[123,7,72,9.545615939958717],[123,7,73,9.519563977054284],[123,7,74,9.502440479892527],[123,7,75,9.521190153860251],[123,7,76,9.578785043926551],[123,7,77,9.678812489024443],[123,7,78,9.792549563239207],[123,7,79,9.907918347847264],[123,8,64,9.439138301521632],[123,8,65,9.428691381485407],[123,8,66,9.447736334012008],[123,8,67,9.474011855265012],[123,8,68,9.485622414898788],[123,8,69,9.466085192341616],[123,8,70,9.432124644768992],[123,8,71,9.397285268054967],[123,8,72,9.362387869308437],[123,8,73,9.335055743921577],[123,8,74,9.32076789890191],[123,8,75,9.338700571741846],[123,8,76,9.396712347127304],[123,8,77,9.495060621362695],[123,8,78,9.608970291507802],[123,8,79,9.72301729156345],[123,9,64,9.250893573566534],[123,9,65,9.236484935545361],[123,9,66,9.250596186768222],[123,9,67,9.275350217067645],[123,9,68,9.284592531946833],[123,9,69,9.264617642248687],[123,9,70,9.230670367103697],[123,9,71,9.196822359179725],[123,9,72,9.164076828403335],[123,9,73,9.135670261832853],[123,9,74,9.121134807591758],[123,9,75,9.139947338376516],[123,9,76,9.200186965735835],[123,9,77,9.30105183916294],[123,9,78,9.415216914118787],[123,9,79,9.529381975048627],[123,10,64,9.06040525354784],[123,10,65,9.045113605037784],[123,10,66,9.056833526766415],[123,10,67,9.082055492209076],[123,10,68,9.090903699578194],[123,10,69,9.072756068675867],[123,10,70,9.03898514399178],[123,10,71,9.00498552334615],[123,10,72,8.969992749114219],[123,10,73,8.93978960474662],[123,10,74,8.927312734077624],[123,10,75,8.945200500469355],[123,10,76,9.008724389643826],[123,10,77,9.104637199010794],[123,10,78,9.220881233789589],[123,10,79,9.331799424067926],[123,11,64,8.868235099575895],[123,11,65,8.851798191313849],[123,11,66,8.864184486751144],[123,11,67,8.891441005440115],[123,11,68,8.899514379348746],[123,11,69,8.88074223216168],[123,11,70,8.843988145655906],[123,11,71,8.81101917004054],[123,11,72,8.77446719776674],[123,11,73,8.745250218047715],[123,11,74,8.73342505753162],[123,11,75,8.751793891085951],[123,11,76,8.814537539648297],[123,11,77,8.911469672288437],[123,11,78,9.02692415566302],[123,11,79,9.138604404300425],[123,12,64,8.677942528932022],[123,12,65,8.663364680544486],[123,12,66,8.67518734720955],[123,12,67,8.699095581784466],[123,12,68,8.709498709591964],[123,12,69,8.6869194259734],[123,12,70,8.64864888988587],[123,12,71,8.613235212819168],[123,12,72,8.57780587504773],[123,12,73,8.549327509504847],[123,12,74,8.539691132067963],[123,12,75,8.555163256965182],[123,12,76,8.619270733206497],[123,12,77,8.715889705974423],[123,12,78,8.830384635312825],[123,12,79,8.945435838524375],[123,13,64,8.480981202367909],[123,13,65,8.473520172549405],[123,13,66,8.490618485712714],[123,13,67,8.515629510384786],[123,13,68,8.529128670161876],[123,13,69,8.50775751818688],[123,13,70,8.466342055319892],[123,13,71,8.42936788104315],[123,13,72,8.39512582539105],[123,13,73,8.36757151592801],[123,13,74,8.355192102147424],[123,13,75,8.372863514845251],[123,13,76,8.435063681260283],[123,13,77,8.528551872487705],[123,13,78,8.638426100603363],[123,13,79,8.749442592196973],[123,14,64,8.289343280734165],[123,14,65,8.279585070903723],[123,14,66,8.299589612595899],[123,14,67,8.324409566594305],[123,14,68,8.3384742926995],[123,14,69,8.315053321300251],[123,14,70,8.274091280212414],[123,14,71,8.236496289823425],[123,14,72,8.202754393254951],[123,14,73,8.176460904383344],[123,14,74,8.161074144386667],[123,14,75,8.179725850053313],[123,14,76,8.242153237356487],[123,14,77,8.336029920674171],[123,14,78,8.444279209128752],[123,14,79,8.557157344915622],[123,15,64,8.095733801992369],[123,15,65,8.083588597866976],[123,15,66,8.105717689308287],[123,15,67,8.13337985120295],[123,15,68,8.143640394887052],[123,15,69,8.1244902458227],[123,15,70,8.083604275336112],[123,15,71,8.04497219293479],[123,15,72,8.009655684951953],[123,15,73,7.981795613662521],[123,15,74,7.9655918996297705],[123,15,75,7.985196995972564],[123,15,76,8.04931179883816],[123,15,77,8.144181639056594],[123,15,78,8.251134163635866],[123,15,79,8.36241976574496],[123,16,64,7.89902486383108],[123,16,65,7.891898678505098],[123,16,66,7.915345755271163],[123,16,67,7.944033343618571],[123,16,68,7.956849673158686],[123,16,69,7.937963001593814],[123,16,70,7.897633930100863],[123,16,71,7.861183506611677],[123,16,72,7.822075444004022],[123,16,73,7.7941699393070545],[123,16,74,7.780317481704637],[123,16,75,7.798382896641281],[123,16,76,7.860568487131169],[123,16,77,7.959514633448547],[123,16,78,8.0672598146245],[123,16,79,8.178431793749384],[123,17,64,7.7054460851974484],[123,17,65,7.699978841915642],[123,17,66,7.722681437278502],[123,17,67,7.754088558702152],[123,17,68,7.7657254946613525],[123,17,69,7.746400138782022],[123,17,70,7.705063543135131],[123,17,71,7.6669158916310955],[123,17,72,7.625557965930362],[123,17,73,7.596329058586508],[123,17,74,7.581684644289743],[123,17,75,7.600872095574431],[123,17,76,7.664340874221451],[123,17,77,7.7620657837580005],[123,17,78,7.870842006152977],[123,17,79,7.983423612713417],[123,18,64,7.511197128341013],[123,18,65,7.507143842115816],[123,18,66,7.529370820832069],[123,18,67,7.5629861358238735],[123,18,68,7.5735143886878165],[123,18,69,7.552757064817794],[123,18,70,7.511957317224064],[123,18,71,7.472948449007426],[123,18,72,7.429165499735199],[123,18,73,7.399010289686152],[123,18,74,7.384087665495227],[123,18,75,7.403239460100034],[123,18,76,7.467697295481637],[123,18,77,7.566798121901983],[123,18,78,7.673885153964597],[123,18,79,7.785717176092239],[123,19,64,7.3184768420888995],[123,19,65,7.313756907958821],[123,19,66,7.3366698011714355],[123,19,67,7.369867688763094],[123,19,68,7.382304422902539],[123,19,69,7.361936230149218],[123,19,70,7.319239204489675],[123,19,71,7.277552469828178],[123,19,72,7.231026115132888],[123,19,73,7.201283279456967],[123,19,74,7.187424036535951],[123,19,75,7.206613804590568],[123,19,76,7.269958794498144],[123,19,77,7.369299079352793],[123,19,78,7.475234925673081],[123,19,79,7.590073089894896],[123,20,64,7.128067402603473],[123,20,65,7.12087878398534],[123,20,66,7.143204513165788],[123,20,67,7.176572602604278],[123,20,68,7.189176339300513],[123,20,69,7.168861497175072],[123,20,70,7.122700570263305],[123,20,71,7.077928706564161],[123,20,72,7.0298935029892515],[123,20,73,6.999891567290547],[123,20,74,6.985674113197885],[123,20,75,7.006927696969802],[123,20,76,7.0725974445415485],[123,20,77,7.1693859163725575],[123,20,78,7.277654132254815],[123,20,79,7.391542965753074],[123,21,64,6.9452113934956525],[123,21,65,6.937851892247007],[123,21,66,6.9585346146510325],[123,21,67,6.993749873905888],[123,21,68,7.003407289545254],[123,21,69,6.977976846170954],[123,21,70,6.929140072872498],[123,21,71,6.8742346201021345],[123,21,72,6.8199502103030145],[123,21,73,6.784568415454787],[123,21,74,6.770359267864953],[123,21,75,6.792270730946125],[123,21,76,6.855991496951585],[123,21,77,6.953137802461369],[123,21,78,7.0656344694570965],[123,21,79,7.182713118986927],[123,22,64,6.74876964968368],[123,22,65,6.74466128399139],[123,22,66,6.767059005815814],[123,22,67,6.8022409024658685],[123,22,68,6.80969560910879],[123,22,69,6.783844774158061],[123,22,70,6.73432245266752],[123,22,71,6.677171222195799],[123,22,72,6.624748394866047],[123,22,73,6.588398713003095],[123,22,74,6.5756873357009695],[123,22,75,6.597042117286099],[123,22,76,6.658935353947469],[123,22,77,6.755638201489654],[123,22,78,6.867143213611534],[123,22,79,6.986418720707557],[123,23,64,6.554290733669298],[123,23,65,6.548734983139142],[123,23,66,6.5721460348784015],[123,23,67,6.607624002498543],[123,23,68,6.614878559042797],[123,23,69,6.586649161688102],[123,23,70,6.537881656248747],[123,23,71,6.484789693232552],[123,23,72,6.429377323095633],[123,23,73,6.393296972733227],[123,23,74,6.381057569020706],[123,23,75,6.400948887417496],[123,23,76,6.462580868371032],[123,23,77,6.559708400042227],[123,23,78,6.671060195518915],[123,23,79,6.789579914075672],[123,24,64,6.368011927892674],[123,24,65,6.3620412363499605],[123,24,66,6.385401797513103],[123,24,67,6.418483101996438],[123,24,68,6.427271569539221],[123,24,69,6.39956899617239],[123,24,70,6.349126474085375],[123,24,71,6.297666592039569],[123,24,72,6.244733960927532],[123,24,73,6.207980733068199],[123,24,74,6.193973185225683],[123,24,75,6.21515113420224],[123,24,76,6.27799820445486],[123,24,77,6.373558359915463],[123,24,78,6.486085351787772],[123,24,79,6.605280256872409],[123,25,64,6.177441723533511],[123,25,65,6.165495647356009],[123,25,66,6.189357628541496],[123,25,67,6.214975966922259],[123,25,68,6.221355281835391],[123,25,69,6.1934415501376545],[123,25,70,6.143893988208361],[123,25,71,6.096843883499618],[123,25,72,6.053024728739196],[123,25,73,6.021218920282065],[123,25,74,6.009432012783801],[123,25,75,6.032150905555937],[123,25,76,6.088112699562772],[123,25,77,6.18323167767816],[123,25,78,6.292771641764346],[123,25,79,6.4100332120225865],[123,26,64,5.983392278175963],[123,26,65,5.9707965278819435],[123,26,66,5.995296598873918],[123,26,67,6.019443376444431],[123,26,68,6.024115787421446],[123,26,69,5.997374770165166],[123,26,70,5.949794365767927],[123,26,71,5.9007773332130995],[123,26,72,5.859382233528876],[123,26,73,5.824680320716498],[123,26,74,5.812839037442111],[123,26,75,5.835069949232145],[123,26,76,5.892193756158988],[123,26,77,5.98798854533048],[123,26,78,6.098914876809193],[123,26,79,6.2154963400935],[123,27,64,5.7892716029569415],[123,27,65,5.77746293314073],[123,27,66,5.799740784570728],[123,27,67,5.825817488601491],[123,27,68,5.830034551417537],[123,27,69,5.802086379911354],[123,27,70,5.753653330067333],[123,27,71,5.707659528065678],[123,27,72,5.665035700879477],[123,27,73,5.628550705900613],[123,27,74,5.617395517723773],[123,27,75,5.638246359093885],[123,27,76,5.698620347908484],[123,27,77,5.792239423797725],[123,27,78,5.902878720809026],[123,27,79,6.020315820394644],[123,28,64,5.595385634636927],[123,28,65,5.58016198978958],[123,28,66,5.600752464134696],[123,28,67,5.626925634965812],[123,28,68,5.631468021840156],[123,28,69,5.602863661535604],[123,28,70,5.556810238939599],[123,28,71,5.508795751687319],[123,28,72,5.463964616208078],[123,28,73,5.426809109076077],[123,28,74,5.414656334077224],[123,28,75,5.433715801728854],[123,28,76,5.5005889458497075],[123,28,77,5.592321790416815],[123,28,78,5.701162168077432],[123,28,79,5.820035935767723],[123,29,64,5.4012259729639],[123,29,65,5.385795684341153],[123,29,66,5.40481094005245],[123,29,67,5.433179243466568],[123,29,68,5.4387593252219935],[123,29,69,5.410796608284808],[123,29,70,5.3646976364447285],[123,29,71,5.317306597406817],[123,29,72,5.269388013358597],[123,29,73,5.230521857202183],[123,29,74,5.219445937182318],[123,29,75,5.238705802881012],[123,29,76,5.306359161129901],[123,29,77,5.399832042632],[123,29,78,5.507938236148384],[123,29,79,5.62829390706238],[123,30,64,5.2078508592005655],[123,30,65,5.192186668273996],[123,30,66,5.21112354402388],[123,30,67,5.240530398219085],[123,30,68,5.24704206582015],[123,30,69,5.220384043368762],[123,30,70,5.174771495370101],[123,30,71,5.121060588184712],[123,30,72,5.070743568452369],[123,30,73,5.03423992979534],[123,30,74,5.022979402600939],[123,30,75,5.041451308234677],[123,30,76,5.108183529661192],[123,30,77,5.205423535707284],[123,30,78,5.3123333443496525],[123,30,79,5.430977144095874],[123,31,64,5.012887784156286],[123,31,65,4.999746913212088],[123,31,66,5.018098782237443],[123,31,67,5.048990550688404],[123,31,68,5.055345535465226],[123,31,69,5.028095782118044],[123,31,70,4.981340123707616],[123,31,71,4.928528603154494],[123,31,72,4.877793380167181],[123,31,73,4.840307946364825],[123,31,74,4.828333581109289],[123,31,75,4.84429441416507],[123,31,76,4.908164897431583],[123,31,77,5.007355318061938],[123,31,78,5.11927806284411],[123,31,79,5.2360959562208675],[123,32,64,4.827077183153941],[123,32,65,4.813405193643932],[123,32,66,4.833326759362704],[123,32,67,4.867167381434723],[123,32,68,4.874922442332551],[123,32,69,4.846666956820271],[123,32,70,4.801838965594519],[123,32,71,4.748014273064188],[123,32,72,4.695751161698885],[123,32,73,4.65881990072676],[123,32,74,4.643527977417259],[123,32,75,4.659037073796093],[123,32,76,4.721617702395465],[123,32,77,4.82138498775289],[123,32,78,4.936231054639227],[123,32,79,5.053691663259779],[123,33,64,4.637750664461421],[123,33,65,4.625668874795116],[123,33,66,4.6496594737453485],[123,33,67,4.685921858375235],[123,33,68,4.695372911129501],[123,33,69,4.665412880671362],[123,33,70,4.616817230779316],[123,33,71,4.557623746661698],[123,33,72,4.497626045773607],[123,33,73,4.45620968252055],[123,33,74,4.4368136955946404],[123,33,75,4.451781813031936],[123,33,76,4.516337227606341],[123,33,77,4.619554968691477],[123,33,78,4.739121309851835],[123,33,79,4.859048227313464],[123,34,64,4.442692741532933],[123,34,65,4.430700569302618],[123,34,66,4.454672884236806],[123,34,67,4.490709350013214],[123,34,68,4.501957004951649],[123,34,69,4.473892707271911],[123,34,70,4.4248535457368785],[123,34,71,4.364725335124669],[123,34,72,4.301760545503892],[123,34,73,4.258692742676898],[123,34,74,4.239112437749544],[123,34,75,4.256674847733038],[123,34,76,4.322077627084218],[123,34,77,4.428063286817779],[123,34,78,4.54441712269694],[123,34,79,4.664072367929029],[123,35,64,4.247492073879309],[123,35,65,4.23563434901259],[123,35,66,4.259623493959228],[123,35,67,4.295128591233609],[123,35,68,4.305759330566089],[123,35,69,4.280311841528955],[123,35,70,4.232879813018687],[123,35,71,4.172232502885561],[123,35,72,4.106628770506495],[123,35,73,4.063483008624652],[123,35,74,4.042799754195398],[123,35,75,4.061289799446847],[123,35,76,4.129291454780721],[123,35,77,4.234615482877125],[123,35,78,4.352092888617753],[123,35,79,4.471858141428013],[123,36,64,4.043343943096584],[123,36,65,4.033613293705407],[123,36,66,4.05763592161755],[123,36,67,4.091686009956295],[123,36,68,4.101855085128466],[123,36,69,4.077524845140692],[123,36,70,4.031362670052419],[123,36,71,3.9716883546730695],[123,36,72,3.9036894589419044],[123,36,73,3.857232148978583],[123,36,74,3.842676848029505],[123,36,75,3.8607416434014294],[123,36,76,3.930016669095552],[123,36,77,4.034963596694631],[123,36,78,4.152995187490316],[123,36,79,4.271879624661923],[123,37,64,3.843463487701784],[123,37,65,3.8319116468444596],[123,37,66,3.857589460535869],[123,37,67,3.8869239165323575],[123,37,68,3.8953955215773757],[123,37,69,3.872009079077897],[123,37,70,3.824083054644658],[123,37,71,3.770685899666954],[123,37,72,3.7110887089611473],[123,37,73,3.6663164761184004],[123,37,74,3.653672100241842],[123,37,75,3.6729161291595402],[123,37,76,3.7428638884946714],[123,37,77,3.8455294158075457],[123,37,78,3.962337336036287],[123,37,79,4.0777623240059615],[123,38,64,3.646024731868922],[123,38,65,3.634739278337492],[123,38,66,3.6617503542190426],[123,38,67,3.6939430855079793],[123,38,68,3.70421299674526],[123,38,69,3.6761855202714386],[123,38,70,3.627045695860314],[123,38,71,3.573284583562346],[123,38,72,3.5157490202737236],[123,38,73,3.4722383223814908],[123,38,74,3.458342335674882],[123,38,75,3.4800027098979283],[123,38,76,3.5490520466324496],[123,38,77,3.6508485439055502],[123,38,78,3.766160474514105],[123,38,79,3.8825030893242967],[123,39,64,3.4498950608252623],[123,39,65,3.437194613853871],[123,39,66,3.4666026131825194],[123,39,67,3.5000282084808347],[123,39,68,3.510443108195075],[123,39,69,3.4817521158348024],[123,39,70,3.4331559857528475],[123,39,71,3.3779467198383535],[123,39,72,3.3210283131404936],[123,39,73,3.2794117330347548],[123,39,74,3.265518214803501],[123,39,75,3.2871094806928842],[123,39,76,3.3541058336678184],[123,39,77,3.455413618807333],[123,39,78,3.571439774907608],[123,39,79,3.6871835858317397],[123,40,64,3.266218405058928],[123,40,65,3.254561415719982],[123,40,66,3.284489003626248],[123,40,67,3.3191290611428546],[123,40,68,3.3298013445460986],[123,40,69,3.301742521753116],[123,40,70,3.2531978123197804],[123,40,71,3.19748425559856],[123,40,72,3.1372174053494883],[123,40,73,3.0970670986319253],[123,40,74,3.08474935894274],[123,40,75,3.1043763388504395],[123,40,76,3.166114155683555],[123,40,77,3.2701611419109717],[123,40,78,3.3880205748643966],[123,40,79,3.5041495205084554],[123,41,64,3.0711390575975477],[123,41,65,3.061285017205307],[123,41,66,3.091520285260912],[123,41,67,3.127151620776432],[123,41,68,3.1395978336475583],[123,41,69,3.1084737327522265],[123,41,70,3.058918071569598],[123,41,71,3.002479318470272],[123,41,72,2.9427579765915652],[123,41,73,2.9024257748998252],[123,41,74,2.889012142429967],[123,41,75,2.9087355153186665],[123,41,76,2.968031913130518],[123,41,77,3.071170982847616],[123,41,78,3.1899870292787953],[123,41,79,3.3080892200264893],[123,42,64,2.877604749058988],[123,42,65,2.8706846785850466],[123,42,66,2.899577551511435],[123,42,67,2.9338244845367503],[123,42,68,2.946922597654426],[123,42,69,2.9172143771776584],[123,42,70,2.865622948018064],[123,42,71,2.8079065604302493],[123,42,72,2.7474388349614904],[123,42,73,2.707549832278716],[123,42,74,2.6936458076643692],[123,42,75,2.7111819981822434],[123,42,76,2.7700927164378006],[123,42,77,2.8703993927699236],[123,42,78,2.991229544612682],[123,42,79,3.1112156134209283],[123,43,64,2.6860206005689604],[123,43,65,2.6762766503211584],[123,43,66,2.7057022294444435],[123,43,67,2.7426182107663446],[123,43,68,2.7573895874506964],[123,43,69,2.726139423058533],[123,43,70,2.6732270360351498],[123,43,71,2.6139343353305997],[123,43,72,2.5512660098893156],[123,43,73,2.5128753982580863],[123,43,74,2.4984494246406515],[123,43,75,2.514144170212963],[123,43,76,2.57253652560219],[123,43,77,2.6736034615727577],[123,43,78,2.792219940240527],[123,43,79,2.91541270491454],[123,44,64,2.4816048303257823],[123,44,65,2.473368071158121],[123,44,66,2.5040667830251584],[123,44,67,2.541197456222408],[123,44,68,2.5576017499941908],[123,44,69,2.526024876771416],[123,44,70,2.470958342388669],[123,44,71,2.4110822134031955],[123,44,72,2.347766751860864],[123,44,73,2.3089743949736548],[123,44,74,2.2939295871028142],[123,44,75,2.3091273083509734],[123,44,76,2.3675405353644923],[123,44,77,2.468872198165877],[123,44,78,2.5865152448022597],[123,44,79,2.7106521148576177],[123,45,64,2.2728846088691546],[123,45,65,2.2728473976772627],[123,45,66,2.305771310249018],[123,45,67,2.348238547575499],[123,45,68,2.3698881311684272],[123,45,69,2.3416062428293842],[123,45,70,2.2873104727485383],[123,45,71,2.226803244566165],[123,45,72,2.16102464487943],[123,45,73,2.1164452890753087],[123,45,74,2.1000424639907234],[123,45,75,2.1177052933164267],[123,45,76,2.1760627379836057],[123,45,77,2.277686392812298],[123,45,78,2.39535334490005],[123,45,79,2.517331812629944],[123,46,64,2.0788930552823106],[123,46,65,2.078641277417218],[123,46,66,2.1094161420898154],[123,46,67,2.1557351124830455],[123,46,68,2.175760653257585],[123,46,69,2.149962775437494],[123,46,70,2.097429697783899],[123,46,71,2.0345807762822385],[123,46,72,1.9663751887849892],[123,46,73,1.9204591882172026],[123,46,74,1.9028688923231811],[123,46,75,1.9203256974601022],[123,46,76,1.9807822503484172],[123,46,77,2.08014286087013],[123,46,78,2.1977243911246247],[123,46,79,2.3251304280708767],[123,47,64,1.8837221940281672],[123,47,65,1.883562554960915],[123,47,66,1.9152557255006917],[123,47,67,1.962691495752186],[123,47,68,1.981363372637718],[123,47,69,1.9563608304802664],[123,47,70,1.9043135055916973],[123,47,71,1.8432678905215454],[123,47,72,1.771434526491206],[123,47,73,1.723577222715472],[123,47,74,1.7057331994369875],[123,47,75,1.7246186151142724],[123,47,76,1.783747197526237],[123,47,77,1.8858122789526037],[123,47,78,2.0022196034773163],[123,47,79,2.129001785555923],[123,48,64,1.7040607464834274],[123,48,65,1.698914141257309],[123,48,66,1.734106549980125],[123,48,67,1.7811668963100762],[123,48,68,1.7997267193231148],[123,48,69,1.7763713580290623],[123,48,70,1.7248148201166147],[123,48,71,1.6630320008175778],[123,48,72,1.5887363374174934],[123,48,73,1.539794022683092],[123,48,74,1.5226842775699878],[123,48,75,1.5417082035303544],[123,48,76,1.6013845209995334],[123,48,77,1.7020928238458848],[123,48,78,1.8192448152954346],[123,48,79,1.9456467864039955],[123,49,64,1.5056287291669048],[123,49,65,1.5004784951064367],[123,49,66,1.5365151988797554],[123,49,67,1.583953177221473],[123,49,68,1.6040590019364354],[123,49,69,1.5787765404851137],[123,49,70,1.5258312569425263],[123,49,71,1.4650462563733584],[123,49,72,1.3959182083400759],[123,49,73,1.3481182731033312],[123,49,74,1.3313839194462211],[123,49,75,1.3507670863725472],[123,49,76,1.411592444920196],[123,49,77,1.507637707496093],[123,49,78,1.6249118040674018],[123,49,79,1.7510299870918458],[123,50,64,1.3126519356400632],[123,50,65,1.306295949561453],[123,50,66,1.3410157138824166],[123,50,67,1.387010967304179],[123,50,68,1.4085528600974246],[123,50,69,1.3830038271400802],[123,50,70,1.330396224379486],[123,50,71,1.2664020043421784],[123,50,72,1.2000625700802463],[123,50,73,1.1533417544162676],[123,50,74,1.1369774653454272],[123,50,75,1.1559004854031802],[123,50,76,1.2192415798834106],[123,50,77,1.3133903044456892],[123,50,78,1.427376378914276],[123,50,79,1.5524493469561704],[123,51,64,1.1174088571508147],[123,51,65,1.1141341463678716],[123,51,66,1.1457550528783265],[123,51,67,1.1915427846353517],[123,51,68,1.212203557455138],[123,51,69,1.189587510007001],[123,51,70,1.1344011199684405],[123,51,71,1.0687003848626628],[123,51,72,1.0039248293124863],[123,51,73,0.9584066218499175],[123,51,74,0.9397335002110816],[123,51,75,0.9597411967334282],[123,51,76,1.0255085761400256],[123,51,77,1.1179168227802936],[123,51,78,1.2303635425461217],[123,51,79,1.3550678383954613],[123,52,64,0.970576918953149],[123,52,65,0.9665240551405686],[123,52,66,0.9993584355670001],[123,52,67,1.0403689256990256],[123,52,68,1.063254316401256],[123,52,69,1.0419891113501802],[123,52,70,0.9872493286264912],[123,52,71,0.9195346531614842],[123,52,72,0.853847774375215],[123,52,73,0.8083779148158303],[123,52,74,0.7892940044581398],[123,52,75,0.8098811955654442],[123,52,76,0.8749104536872157],[123,52,77,0.9697620412372393],[123,52,78,1.0829870769020769],[123,52,79,1.2087992272718366],[123,53,64,0.7841614384400815],[123,53,65,0.7767915888236082],[123,53,66,0.8062113533671561],[123,53,67,0.8457832974879073],[123,53,68,0.8661766116308889],[123,53,69,0.8439626108023042],[123,53,70,0.787166931506171],[123,53,71,0.7196787062642256],[123,53,72,0.6537042353100548],[123,53,73,0.6070193016881967],[123,53,74,0.5901086325675142],[123,53,75,0.6078691905920681],[123,53,76,0.6745682396944268],[123,53,77,0.7711760490317462],[123,53,78,0.8854573382721393],[123,53,79,1.0137516686711256],[123,54,64,0.5937436289551613],[123,54,65,0.5825987144183111],[123,54,66,0.610130610890846],[123,54,67,0.6509364437070312],[123,54,68,0.6723337208501587],[123,54,69,0.6460724107896865],[123,54,70,0.5903304661977141],[123,54,71,0.5252950410198445],[123,54,72,0.456347958464758],[123,54,73,0.4081736475791577],[123,54,74,0.3905441544812088],[123,54,75,0.41059340007732903],[123,54,76,0.4780386244709547],[123,54,77,0.5769684946755638],[123,54,78,0.6917406227468759],[123,54,79,0.8176748642018825],[123,55,64,0.4006490419111286],[123,55,65,0.3901190304699087],[123,55,66,0.4172533298870863],[123,55,67,0.4596375020514045],[123,55,68,0.47846756140216673],[123,55,69,0.45196189080715793],[123,55,70,0.3946509608923392],[123,55,71,0.3293468290310364],[123,55,72,0.26022224067546884],[123,55,73,0.21095167356672073],[123,55,74,0.19400348202540707],[123,55,75,0.2134995815733341],[123,55,76,0.2816645929302153],[123,55,77,0.3807622914235823],[123,55,78,0.4951129880276896],[123,55,79,0.6243953203644778],[123,56,64,0.21947876873063624],[123,56,65,0.20778559127235294],[123,56,66,0.23675984753530657],[123,56,67,0.27989832156046446],[123,56,68,0.2996506539787047],[123,56,69,0.2724334848260393],[123,56,70,0.2145464120316689],[123,56,71,0.14875597880238944],[123,56,72,0.07610917862640312],[123,56,73,0.02655620331810185],[123,56,74,0.016030854651983673],[123,56,75,0.03301204336715388],[123,56,76,0.09970106124113068],[123,56,77,0.20069699586925235],[123,56,78,0.31531208262123056],[123,56,79,0.4437424503338379],[123,57,64,0.020973785424381636],[123,57,65,0.007995800532567932],[123,57,66,0.03525597573141187],[123,57,67,0.0780737589430843],[123,57,68,0.09950394067894971],[123,57,69,0.06965489098847483],[123,57,70,0.00937750307018867],[123,57,71,-0.015041848635982569],[123,57,72,-0.03385539454448552],[123,57,73,-0.044256003788593345],[123,57,74,-0.04045970843441163],[123,57,75,-0.03336783460389467],[123,57,76,-0.013896998670558908],[123,57,77,0.011920642442642404],[123,57,78,0.11280296809183513],[123,57,79,0.24002442207181976],[123,58,64,0.008576687862725432],[123,58,65,-0.002352016053726369],[123,58,66,0.0010443144873570759],[123,58,67,0.006812033541274604],[123,58,68,0.015414978683430294],[123,58,69,0.003494883123311726],[123,58,70,-0.013033588670633978],[123,58,71,-0.026575213360814032],[123,58,72,-0.042311910853149254],[123,58,73,-0.053876356044290113],[123,58,74,-0.051813015231193346],[123,58,75,-0.04112438307956319],[123,58,76,-0.02433203967768688],[123,58,77,5.397637979491499E-4],[123,58,78,0.02993180383452812],[123,58,79,0.07814036205148668],[123,59,64,-0.03975770295096458],[123,59,65,-0.05290059695972246],[123,59,66,-0.05016098607938252],[123,59,67,-0.04374060028026018],[123,59,68,-0.03783017220918866],[123,59,69,-0.04648217481026731],[123,59,70,-0.06184950905507014],[123,59,71,-0.0783266525551225],[123,59,72,-0.09240031148587984],[123,59,73,-0.10283834526717933],[123,59,74,-0.10237122185972275],[123,59,75,-0.09005947583640772],[123,59,76,-0.07306210302040206],[123,59,77,-0.04690055753770282],[123,59,78,-0.01911239161174197],[123,59,79,0.009337034137706077],[123,60,64,-0.097059909565601],[123,60,65,-0.1125697935953402],[123,60,66,-0.10890679943058137],[123,60,67,-0.09997403329340476],[123,60,68,-0.09617273501256893],[123,60,69,-0.10480872693861303],[123,60,70,-0.12084907150461467],[123,60,71,-0.13786717624380912],[123,60,72,-0.15095330290481307],[123,60,73,-0.15882373530709437],[123,60,74,-0.1589091447687372],[123,60,75,-0.14853300011113968],[123,60,76,-0.13080511050299248],[123,60,77,-0.10516249772981154],[123,60,78,-0.0789122067928122],[123,60,79,-0.04851303992548284],[123,61,64,-0.13922837261792004],[123,61,65,-0.14947044287659628],[123,61,66,-0.14397925114749366],[123,61,67,-0.13571803199169896],[123,61,68,-0.13416119375707136],[123,61,69,-0.14616962029845543],[123,61,70,-0.1615253126994893],[123,61,71,-0.17897447728515095],[123,61,72,-0.19358050333765325],[123,61,73,-0.20049954003446022],[123,61,74,-0.1998796503741413],[123,61,75,-0.19055414143513813],[123,61,76,-0.17106729624117498],[123,61,77,-0.14435202290039512],[123,61,78,-0.11625788475219805],[123,61,79,-0.08582489175997969],[123,62,64,-0.18903115242289098],[123,62,65,-0.1980402058505905],[123,62,66,-0.19374052784964957],[123,62,67,-0.18412742518710817],[123,62,68,-0.18317994337373594],[123,62,69,-0.19365515755655735],[123,62,70,-0.2091604931841881],[123,62,71,-0.2255487962291032],[123,62,72,-0.24095310111021256],[123,62,73,-0.24894821078409235],[123,62,74,-0.25033443632074315],[123,62,75,-0.24115754151940114],[123,62,76,-0.22246477646703183],[123,62,77,-0.19503957604669186],[123,62,78,-0.1638300495121345],[123,62,79,-0.13233960533879913],[123,63,64,-0.3084165052264568],[123,63,65,-0.3161802475084917],[123,63,66,-0.3111099048180669],[123,63,67,-0.3034953561943421],[123,63,68,-0.2983241947070098],[123,63,69,-0.3072730738361419],[123,63,70,-0.32420151728760316],[123,63,71,-0.3383841798328384],[123,63,72,-0.35266777415459316],[123,63,73,-0.36065081504733093],[123,63,74,-0.3628637868120885],[123,63,75,-0.3539991830687812],[123,63,76,-0.3348835617132862],[123,63,77,-0.3046707680662235],[123,63,78,-0.2709391586926948],[123,63,79,-0.2376364982822431],[123,64,64,-0.34356121983275095],[123,64,65,-0.35599508092085674],[123,64,66,-0.3501002439082437],[123,64,67,-0.3414258214457736],[123,64,68,-0.3358736054119502],[123,64,69,-0.34726210815588876],[123,64,70,-0.3630864159874468],[123,64,71,-0.3795302262685434],[123,64,72,-0.3947657426579087],[123,64,73,-0.4036483218657484],[123,64,74,-0.40380457984396106],[123,64,75,-0.395376684648978],[123,64,76,-0.37490548505314253],[123,64,77,-0.34705115309160667],[123,64,78,-0.3119427748733049],[123,64,79,-0.27836508066420634],[123,65,64,-0.3920205179848974],[123,65,65,-0.4042981279542084],[123,65,66,-0.3983057462510143],[123,65,67,-0.3920398979870581],[123,65,68,-0.3860820310767416],[123,65,69,-0.3967146698535688],[123,65,70,-0.4144511536092868],[123,65,71,-0.4310059115159182],[123,65,72,-0.4472925634384355],[123,65,73,-0.4574285148916699],[123,65,74,-0.4539925186286606],[123,65,75,-0.44638461433269777],[123,65,76,-0.4271825623460405],[123,65,77,-0.3992613759462277],[123,65,78,-0.36398450864856124],[123,65,79,-0.3288579700664317],[123,66,64,-0.4473822050196284],[123,66,65,-0.458942729105683],[123,66,66,-0.4550235109050463],[123,66,67,-0.4493168714805303],[123,66,68,-0.4461637311166763],[123,66,69,-0.4533639479159127],[123,66,70,-0.4707296940349498],[123,66,71,-0.4877938726066228],[123,66,72,-0.5056402204577323],[123,66,73,-0.5159728444250364],[123,66,74,-0.5128085709097392],[123,66,75,-0.5040641266244138],[123,66,76,-0.4849273257740567],[123,66,77,-0.45838609033417443],[123,66,78,-0.42345708308727076],[123,66,79,-0.38735617077408563],[123,67,64,-0.4953465279106798],[123,67,65,-0.5093821602009386],[123,67,66,-0.5069018013571714],[123,67,67,-0.501825190295606],[123,67,68,-0.4981007263138727],[123,67,69,-0.5054417794135665],[123,67,70,-0.5217110127957282],[123,67,71,-0.5361881734064226],[123,67,72,-0.5545211385581474],[123,67,73,-0.5684718945959042],[123,67,74,-0.5670032528927007],[123,67,75,-0.5584768783241474],[123,67,76,-0.5389674774857391],[123,67,77,-0.5115240711372354],[123,67,78,-0.4752089976421821],[123,67,79,-0.4388425388197603],[123,68,64,-0.6384393637642474],[123,68,65,-0.6518346735301709],[123,68,66,-0.6500162386269204],[123,68,67,-0.6448704142641926],[123,68,68,-0.6425895115730612],[123,68,69,-0.6478572656982995],[123,68,70,-0.6637132757553279],[123,68,71,-0.6784678503485364],[123,68,72,-0.6983254839187774],[123,68,73,-0.7140677039833693],[123,68,74,-0.7136774368799704],[123,68,75,-0.7034057890731028],[123,68,76,-0.6823502363150398],[123,68,77,-0.6540082946029234],[123,68,78,-0.6189377938489746],[123,68,79,-0.5821801492388162],[123,69,64,-0.6945463431253459],[123,69,65,-0.704871924591751],[123,69,66,-0.7032553236272986],[123,69,67,-0.6965575944464623],[123,69,68,-0.6911800762973961],[123,69,69,-0.6952204459700888],[123,69,70,-0.7099165089183757],[123,69,71,-0.7260776862104379],[123,69,72,-0.7465876557559645],[123,69,73,-0.766204752726313],[123,69,74,-0.7705276622525021],[123,69,75,-0.7577370109644745],[123,69,76,-0.7338821734102778],[123,69,77,-0.7044852817392366],[123,69,78,-0.6689394064408979],[123,69,79,-0.6337663088962526],[123,70,64,-0.744806018550437],[123,70,65,-0.7536577448749577],[123,70,66,-0.7544995628550912],[123,70,67,-0.7479725728958108],[123,70,68,-0.7406964551667158],[123,70,69,-0.7474631731191892],[123,70,70,-0.7596890704270495],[123,70,71,-0.7768366096062631],[123,70,72,-0.796418170738694],[123,70,73,-0.8148048161965827],[123,70,74,-0.8209683548143278],[123,70,75,-0.8097028266594792],[123,70,76,-0.7853488025778819],[123,70,77,-0.7543496110729979],[123,70,78,-0.7195791386437655],[123,70,79,-0.6864930463067607],[123,71,64,-0.7831426236568599],[123,71,65,-0.7935651868681899],[123,71,66,-0.7943232208717045],[123,71,67,-0.7869788114677907],[123,71,68,-0.7807379179947349],[123,71,69,-0.7886478886920307],[123,71,70,-0.8015060835103838],[123,71,71,-0.8197877462385376],[123,71,72,-0.8396079718305254],[123,71,73,-0.8586230797377684],[123,71,74,-0.8609798578690118],[123,71,75,-0.8516541383293279],[123,71,76,-0.829115621070674],[123,71,77,-0.7967922642746529],[123,71,78,-0.7624378052044286],[123,71,79,-0.7288790264966334],[123,72,64,-0.833512643907942],[123,72,65,-0.8439534076248427],[123,72,66,-0.8453242473577376],[123,72,67,-0.837550430311546],[123,72,68,-0.8303581952108849],[123,72,69,-0.8389052114313553],[123,72,70,-0.8524445516226722],[123,72,71,-0.8691053038669981],[123,72,72,-0.8926939357569501],[123,72,73,-0.9108347221388505],[123,72,74,-0.9094001912322337],[123,72,75,-0.9013867728770509],[123,72,76,-0.8785307529235546],[123,72,77,-0.8497245314305316],[123,72,78,-0.8150636489027451],[123,72,79,-0.7811770850764592],[123,73,64,-0.8925114650994347],[123,73,65,-0.903190987031455],[123,73,66,-0.9010211418347591],[123,73,67,-0.8920115140008256],[123,73,68,-0.887165280072973],[123,73,69,-0.8920940382727581],[123,73,70,-0.9027759356844925],[123,73,71,-0.9166088601487058],[123,73,72,-0.9365783073135789],[123,73,73,-0.9516523229297548],[123,73,74,-0.949713628575741],[123,73,75,-0.9432211547812965],[123,73,76,-0.9215393760475157],[123,73,77,-0.8985002261948688],[123,73,78,-0.8697193765059714],[123,73,79,-0.8386394196592399],[123,74,64,-0.9504003316142886],[123,74,65,-0.9628235269289612],[123,74,66,-0.9588687266157552],[123,74,67,-0.9475653790884457],[123,74,68,-0.9464289829341508],[123,74,69,-0.9497603470645843],[123,74,70,-0.9582185045174532],[123,74,71,-0.973881634458735],[123,74,72,-0.9942501646392619],[123,74,73,-1.008962501170615],[123,74,74,-1.0089768261667575],[123,74,75,-0.999983790728878],[123,74,76,-0.978806873311995],[123,74,77,-0.9548321579724476],[123,74,78,-0.9268715882584986],[123,74,79,-0.8941123194587809],[123,75,64,-1.0046634997029023],[123,75,65,-1.0149147169866186],[123,75,66,-1.0091197739121731],[123,75,67,-0.9965029154025165],[123,75,68,-0.9959858449595619],[123,75,69,-0.9983060831088417],[123,75,70,-1.0078810079480554],[123,75,71,-1.026550457064567],[123,75,72,-1.0456906358514735],[123,75,73,-1.0587007611798722],[123,75,74,-1.0602585761441385],[123,75,75,-1.0509924745802939],[123,75,76,-1.0320934387349618],[123,75,77,-1.0081775168930833],[123,75,78,-0.9807351525523423],[123,75,79,-0.9471572106340589],[123,76,64,-1.0531343953668535],[123,76,65,-1.0620456000637677],[123,76,66,-1.056301594646926],[123,76,67,-1.0449285007385376],[123,76,68,-1.041964190950509],[123,76,69,-1.0472023227448415],[123,76,70,-1.0591327526688128],[123,76,71,-1.0740830715927125],[123,76,72,-1.0960896066251646],[123,76,73,-1.1094316928464556],[123,76,74,-1.110730948850177],[123,76,75,-1.1028333671366333],[123,76,76,-1.0854960491118406],[123,76,77,-1.0615727368800287],[123,76,78,-1.032981926063601],[123,76,79,-0.998207891841006],[123,77,64,-1.1016639711222478],[123,77,65,-1.1103568826708676],[123,77,66,-1.105896305145281],[123,77,67,-1.09546127320442],[123,77,68,-1.0937982789996787],[123,77,69,-1.1001048140511787],[123,77,70,-1.1123975009323812],[123,77,71,-1.1282061874583922],[123,77,72,-1.1502610352621525],[123,77,73,-1.165092258185909],[123,77,74,-1.1659136349508583],[123,77,75,-1.1598378041184703],[123,77,76,-1.1418719875216667],[123,77,77,-1.1152122639777506],[123,77,78,-1.0868409726985693],[123,77,79,-1.0518640145524845],[123,78,64,-1.1525723448401057],[123,78,65,-1.1604167041883617],[123,78,66,-1.1544884381174902],[123,78,67,-1.1445300533106506],[123,78,68,-1.143946167204517],[123,78,69,-1.1503901718568192],[123,78,70,-1.1621047350030913],[123,78,71,-1.178643426100776],[123,78,72,-1.2029860493015765],[123,78,73,-1.2180628732806895],[123,78,74,-1.2203593238705428],[123,78,75,-1.2142624260544657],[123,78,76,-1.1941913750862985],[123,78,77,-1.1674511395808218],[123,78,78,-1.1390694085425228],[123,78,79,-1.1051951046227257],[123,79,64,-1.1921607741588005],[123,79,65,-1.2019292643250816],[123,79,66,-1.194672328317156],[123,79,67,-1.1834058383611823],[123,79,68,-1.1817532391119439],[123,79,69,-1.1903165441539865],[123,79,70,-1.2016097833183552],[123,79,71,-1.2203128790338849],[123,79,72,-1.2451867317002407],[123,79,73,-1.2629902267483228],[123,79,74,-1.2674392984237857],[123,79,75,-1.2573043360196035],[123,79,76,-1.239393637028941],[123,79,77,-1.2150879843417102],[123,79,78,-1.1855413205238143],[123,79,79,-1.1518203676927172],[123,80,64,-1.244062308377024],[123,80,65,-1.2516276108641446],[123,80,66,-1.242892773816605],[123,80,67,-1.2321982566382668],[123,80,68,-1.226148422599943],[123,80,69,-1.2358932692686535],[123,80,70,-1.2495147577457062],[123,80,71,-1.2688623186625538],[123,80,72,-1.2950515550629895],[123,80,73,-1.3148126239804099],[123,80,74,-1.31848162004535],[123,80,75,-1.3138115150491998],[123,80,76,-1.295781309619579],[123,80,77,-1.2689663902911672],[123,80,78,-1.2429983128068813],[123,80,79,-1.20894358407567],[123,81,64,-1.2872389212184618],[123,81,65,-1.2950936805772937],[123,81,66,-1.284344313162369],[123,81,67,-1.270376684844322],[123,81,68,-1.2653320915994337],[123,81,69,-1.2747803394132262],[123,81,70,-1.2902910461341426],[123,81,71,-1.3141740355987985],[123,81,72,-1.3448951101919788],[123,81,73,-1.3657011492881768],[123,81,74,-1.3754112593366388],[123,81,75,-1.3716261484481866],[123,81,76,-1.3525332106894536],[123,81,77,-1.3291657932390188],[123,81,78,-1.3026488178068212],[123,81,79,-1.2693580056687301],[123,82,64,-1.3436380326046673],[123,82,65,-1.3504876212955343],[123,82,66,-1.339917303812772],[123,82,67,-1.3252013095230897],[123,82,68,-1.3225386382556652],[123,82,69,-1.3317239850572986],[123,82,70,-1.347253532926724],[123,82,71,-1.371679783008659],[123,82,72,-1.4013785292446164],[123,82,73,-1.424901794754189],[123,82,74,-1.433374400127133],[123,82,75,-1.4289476269404329],[123,82,76,-1.4121540471766223],[123,82,77,-1.3877746496466434],[123,82,78,-1.3632572227849042],[123,82,79,-1.3287019108938423],[123,83,64,-1.3948062409993107],[123,83,65,-1.399237675372465],[123,83,66,-1.3902059721492184],[123,83,67,-1.3741819364892471],[123,83,68,-1.3700728727008902],[123,83,69,-1.379927778721237],[123,83,70,-1.3967436637292887],[123,83,71,-1.4232830547115645],[123,83,72,-1.4542236267671804],[123,83,73,-1.476870219319434],[123,83,74,-1.4851513400917256],[123,83,75,-1.482608228912232],[123,83,76,-1.4655016536376886],[123,83,77,-1.4400775699965658],[123,83,78,-1.41411903913894],[123,83,79,-1.3797100828870366],[123,84,64,-1.440596988465373],[123,84,65,-1.4438958571772376],[123,84,66,-1.4348804786374552],[123,84,67,-1.4213796605737659],[123,84,68,-1.415008415250924],[123,84,69,-1.424817175299606],[123,84,70,-1.444929831789604],[123,84,71,-1.4738125223098129],[123,84,72,-1.5051536780861658],[123,84,73,-1.5276397908358577],[123,84,74,-1.5364520312216332],[123,84,75,-1.5363577859874054],[123,84,76,-1.5193076753453485],[123,84,77,-1.492308645683785],[123,84,78,-1.4632702868379739],[123,84,79,-1.4292530576768738],[123,85,64,-1.4965469361891797],[123,85,65,-1.5025945456992966],[123,85,66,-1.4944388795470787],[123,85,67,-1.4836344924694422],[123,85,68,-1.4788137541208857],[123,85,69,-1.4868427443689287],[123,85,70,-1.5090101883918932],[123,85,71,-1.5363539535093085],[123,85,72,-1.5629623426277623],[123,85,73,-1.5837000177713956],[123,85,74,-1.5893604908176115],[123,85,75,-1.5897778727956706],[123,85,76,-1.5740960970405837],[123,85,77,-1.5448431220973446],[123,85,78,-1.5099388361046653],[123,85,79,-1.47457394286617],[123,86,64,-1.5477387454586746],[123,86,65,-1.5551224967307289],[123,86,66,-1.5466137436896419],[123,86,67,-1.5352434485295663],[123,86,68,-1.529043745354113],[123,86,69,-1.5363147996990076],[123,86,70,-1.55941011240301],[123,86,71,-1.5862629199733673],[123,86,72,-1.6131490433649016],[123,86,73,-1.632202081909397],[123,86,74,-1.6402527440668826],[123,86,75,-1.640887157388868],[123,86,76,-1.625536822254726],[123,86,77,-1.5965236147324706],[123,86,78,-1.560517899538179],[123,86,79,-1.5251798821318892],[123,87,64,-1.5857853570382543],[123,87,65,-1.596363216026111],[123,87,66,-1.589042696627152],[123,87,67,-1.5774091518372604],[123,87,68,-1.5709047973589725],[123,87,69,-1.5796462433716991],[123,87,70,-1.6007648598680224],[123,87,71,-1.6277543252098805],[123,87,72,-1.6559497886283356],[123,87,73,-1.674124383834565],[123,87,74,-1.6848853590138475],[123,87,75,-1.6868852485882133],[123,87,76,-1.669648041641076],[123,87,77,-1.6390810817494699],[123,87,78,-1.6055016801931785],[123,87,79,-1.569252778006655],[123,88,64,-1.6326850908006836],[123,88,65,-1.6434929777121776],[123,88,66,-1.639505846812205],[123,88,67,-1.6284252328217796],[123,88,68,-1.623745222301616],[123,88,69,-1.630406023670205],[123,88,70,-1.649406866602856],[123,88,71,-1.678851768619567],[123,88,72,-1.7068551282028865],[123,88,73,-1.7277688283189945],[123,88,74,-1.738872254874258],[123,88,75,-1.7407125125673462],[123,88,76,-1.7198843574673164],[123,88,77,-1.690367908053489],[123,88,78,-1.6546299392780568],[123,88,79,-1.6188006141606641],[123,89,64,-1.6820129512581932],[123,89,65,-1.6905771186980991],[123,89,66,-1.689381378818552],[123,89,67,-1.6802579614615045],[123,89,68,-1.6738392725088027],[123,89,69,-1.6814701137659194],[123,89,70,-1.7000913491057201],[123,89,71,-1.7285938073065725],[123,89,72,-1.7586090686391458],[123,89,73,-1.7823202068959192],[123,89,74,-1.7916324229007876],[123,89,75,-1.7936400507922947],[123,89,76,-1.772781319573632],[123,89,77,-1.7410029182808993],[123,89,78,-1.7046996269285584],[123,89,79,-1.666394476002278],[123,90,64,-1.7350975887769506],[123,90,65,-1.7447422463705586],[123,90,66,-1.7456230878114845],[123,90,67,-1.736287525473502],[123,90,68,-1.7314432084118958],[123,90,69,-1.7391421586168985],[123,90,70,-1.7548945538549603],[123,90,71,-1.780438216241922],[123,90,72,-1.814644138672691],[123,90,73,-1.8386820092468559],[123,90,74,-1.8497710431612013],[123,90,75,-1.8497852638193306],[123,90,76,-1.8292521910582296],[123,90,77,-1.799120494481665],[123,90,78,-1.7609420511461105],[123,90,79,-1.7211285766462119],[123,91,64,-1.7806994960004794],[123,91,65,-1.791715173939675],[123,91,66,-1.791097356846432],[123,91,67,-1.7818506928004223],[123,91,68,-1.779423260618852],[123,91,69,-1.7876118184989518],[123,91,70,-1.8045937722373169],[123,91,71,-1.8306789614789032],[123,91,72,-1.8640989726250503],[123,91,73,-1.8899304049259162],[123,91,74,-1.9020538140629495],[123,91,75,-1.8985468323221717],[123,91,76,-1.8818928064429012],[123,91,77,-1.8505227734135694],[123,91,78,-1.8104189562884239],[123,91,79,-1.7730346535551],[123,92,64,-1.8132385947178211],[123,92,65,-1.8240768302838997],[123,92,66,-1.8263145635671252],[123,92,67,-1.8180258996224006],[123,92,68,-1.8152116133262868],[123,92,69,-1.8273305684109142],[123,92,70,-1.8466886033126195],[123,92,71,-1.873067181291898],[123,92,72,-1.9073742531344047],[123,92,73,-1.932477598199609],[123,92,74,-1.9457213614420499],[123,92,75,-1.940739212334532],[123,92,76,-1.9246540473038736],[123,92,77,-1.892515657384412],[123,92,78,-1.8537596506189482],[123,92,79,-1.8141261332710807],[123,93,64,-1.8529095360658605],[123,93,65,-1.8667977625871175],[123,93,66,-1.8689272088361368],[123,93,67,-1.8635912133311292],[123,93,68,-1.862444792601987],[123,93,69,-1.875727772668746],[123,93,70,-1.896931524809868],[123,93,71,-1.9272146286510536],[123,93,72,-1.9624007564239774],[123,93,73,-1.9900650041621695],[123,93,74,-2.001401680377348],[123,93,75,-1.997701642658705],[123,93,76,-1.9816434322758198],[123,93,77,-1.9474346342870892],[123,93,78,-1.9055628918556244],[123,93,79,-1.8635175678645124],[123,94,64,-1.9029270002297258],[123,94,65,-1.9175873712144387],[123,94,66,-1.9179799729945488],[123,94,67,-1.9148726660851976],[123,94,68,-1.913003652689905],[123,94,69,-1.9254549046891687],[123,94,70,-1.9487835178445516],[123,94,71,-1.9768079094524602],[123,94,72,-2.01333517304142],[123,94,73,-2.0376992340329596],[123,94,74,-2.0499009010269624],[123,94,75,-2.0460214764036433],[123,94,76,-2.0310929037564494],[123,94,77,-1.997649746903673],[123,94,78,-1.9536909036257812],[123,94,79,-1.9110911686954315],[123,95,64,-1.9427615567634609],[123,95,65,-1.958616713582793],[123,95,66,-1.959345544457402],[123,95,67,-1.9553761195276058],[123,95,68,-1.9522692585695363],[123,95,69,-1.9680714270036523],[123,95,70,-1.9909211811083316],[123,95,71,-2.0191585988492995],[123,95,72,-2.054227927387206],[123,95,73,-2.0799165972604623],[123,95,74,-2.0923198955311797],[123,95,75,-2.0889495361629296],[123,95,76,-2.073485741987622],[123,95,77,-2.039084342792789],[123,95,78,-1.9964411908179942],[123,95,79,-1.9530160589782442],[123,96,64,-1.9913394680722412],[123,96,65,-2.006612091223882],[123,96,66,-2.0072173209476087],[123,96,67,-2.0035076761751673],[123,96,68,-2.0010864596453795],[123,96,69,-2.0157139036566165],[123,96,70,-2.0403609900727995],[123,96,71,-2.0675481805079343],[123,96,72,-2.100960019605022],[123,96,73,-2.127610962684857],[123,96,74,-2.1392981317090665],[123,96,75,-2.1381511565207862],[123,96,76,-2.120645076642512],[123,96,77,-2.0882329923982175],[123,96,78,-2.0448207433181085],[123,96,79,-2.002501596930577],[123,97,64,-2.0496400431489286],[123,97,65,-2.061314427860829],[123,97,66,-2.0607990712621533],[123,97,67,-2.053514208720078],[123,97,68,-2.0512063417106257],[123,97,69,-2.0627763292258323],[123,97,70,-2.088309525718877],[123,97,71,-2.1117551541145607],[123,97,72,-2.140912965530548],[123,97,73,-2.164054474204519],[123,97,74,-2.1731060638795148],[123,97,75,-2.174095366890953],[123,97,76,-2.1603441028016195],[123,97,77,-2.1319940821874694],[123,97,78,-2.0956196075486164],[123,97,79,-2.0544905237944078],[123,98,64,-2.1068656898422415],[123,98,65,-2.118234876075723],[123,98,66,-2.115469923218799],[123,98,67,-2.1085443200361214],[123,98,68,-2.106131743389281],[123,98,69,-2.117269919880644],[123,98,70,-2.140813997062528],[123,98,71,-2.166628335015382],[123,98,72,-2.195351523255222],[123,98,73,-2.217903723987649],[123,98,74,-2.2251787141508585],[123,98,75,-2.2268128284177098],[123,98,76,-2.212440371518839],[123,98,77,-2.1827158408028944],[123,98,78,-2.151146593351837],[123,98,79,-2.111333671028875],[123,99,64,-2.158611252475779],[123,99,65,-2.1692682871568785],[123,99,66,-2.1645436685688844],[123,99,67,-2.1550540454024767],[123,99,68,-2.1545960233532373],[123,99,69,-2.164589139153791],[123,99,70,-2.1846863205875544],[123,99,71,-2.211621189640821],[123,99,72,-2.2450583436697893],[123,99,73,-2.2653502610212595],[123,99,74,-2.2751428414248216],[123,99,75,-2.2734107439554383],[123,99,76,-2.2585614604763657],[123,99,77,-2.2319405494458127],[123,99,78,-2.1987257056444163],[123,99,79,-2.1621260648525924],[123,100,64,-2.1922206341676116],[123,100,65,-2.1937552202847987],[123,100,66,-2.1800654294662936],[123,100,67,-2.1630578762413366],[123,100,68,-2.1577792695477447],[123,100,69,-2.163551833642492],[123,100,70,-2.178858400411209],[123,100,71,-2.20341542113349],[123,100,72,-2.235066591437956],[123,100,73,-2.254102625202918],[123,100,74,-2.2649279137366327],[123,100,75,-2.2613184348769217],[123,100,76,-2.2480900861657767],[123,100,77,-2.2225989054557376],[123,100,78,-2.1886674643392756],[123,100,79,-2.1546689459459136],[123,101,64,-2.2435213306674817],[123,101,65,-2.2431805074633977],[123,101,66,-2.229866855361598],[123,101,67,-2.2131403132575205],[123,101,68,-2.2049100415174876],[123,101,69,-2.2117106255794976],[123,101,70,-2.2248525458897337],[123,101,71,-2.250377178270685],[123,101,72,-2.282490238467045],[123,101,73,-2.3013697162566187],[123,101,74,-2.312264198892943],[123,101,75,-2.3086448745039556],[123,101,76,-2.2949160412567817],[123,101,77,-2.268039724710232],[123,101,78,-2.2367651681096863],[123,101,79,-2.2049800612759056],[123,102,64,-2.2934156957511282],[123,102,65,-2.2906115772080233],[123,102,66,-2.278738667767951],[123,102,67,-2.2616377737360813],[123,102,68,-2.253168769798048],[123,102,69,-2.2601221810330876],[123,102,70,-2.2744949496265225],[123,102,71,-2.29634568623236],[123,102,72,-2.3285307641074944],[123,102,73,-2.350641711450183],[123,102,74,-2.3578289985250307],[123,102,75,-2.3558927139577515],[123,102,76,-2.3427694779340054],[123,102,77,-2.31582782332777],[123,102,78,-2.2862093485126733],[123,102,79,-2.2547709745577706],[123,103,64,-2.3371811735921186],[123,103,65,-2.33365453925082],[123,103,66,-2.321809203868355],[123,103,67,-2.301474983674263],[123,103,68,-2.293036731302708],[123,103,69,-2.3012976694375693],[123,103,70,-2.3140949444833954],[123,103,71,-2.3383255890848447],[123,103,72,-2.372059766500537],[123,103,73,-2.3948960085213655],[123,103,74,-2.401281298318972],[123,103,75,-2.4000377108464397],[123,103,76,-2.3856659281492822],[123,103,77,-2.3611480346295872],[123,103,78,-2.330526166559104],[123,103,79,-2.3013175470113425],[123,104,64,-2.385561615112544],[123,104,65,-2.3839409213154568],[123,104,66,-2.370303577977433],[123,104,67,-2.3514557260952085],[123,104,68,-2.3448650439900782],[123,104,69,-2.350824967906554],[123,104,70,-2.363698462702916],[123,104,71,-2.386900043233098],[123,104,72,-2.418625295948604],[123,104,73,-2.4418919927965717],[123,104,74,-2.4487316718737193],[123,104,75,-2.4469051562717556],[123,104,76,-2.4337637125490517],[123,104,77,-2.4119358170157956],[123,104,78,-2.382687813682223],[123,104,79,-2.3523116655683687],[123,105,64,-2.435971984357114],[123,105,65,-2.4335298459037245],[123,105,66,-2.4151445200366575],[123,105,67,-2.396005608159071],[123,105,68,-2.3902141379533393],[123,105,69,-2.3946206933685517],[123,105,70,-2.408337788458924],[123,105,71,-2.4345790570108377],[123,105,72,-2.4656203826309815],[123,105,73,-2.487518379236434],[123,105,74,-2.49550162375013],[123,105,75,-2.4945908695519288],[123,105,76,-2.48382820701187],[123,105,77,-2.4599819297669527],[123,105,78,-2.4289558021149737],[123,105,79,-2.3990991829663293],[123,106,64,-2.49428419110101],[123,106,65,-2.489184513864183],[123,106,66,-2.469884194387217],[123,106,67,-2.4533233155991265],[123,106,68,-2.4449218468585157],[123,106,69,-2.44920447707208],[123,106,70,-2.465121694780351],[123,106,71,-2.4921239515911098],[123,106,72,-2.5194108613352335],[123,106,73,-2.542291329263928],[123,106,74,-2.5472231198534305],[123,106,75,-2.5473205274965083],[123,106,76,-2.536179632740923],[123,106,77,-2.51190475658119],[123,106,78,-2.4807538414043537],[123,106,79,-2.452457875713278],[123,107,64,-2.5448342865814495],[123,107,65,-2.537967988089593],[123,107,66,-2.5199488489805426],[123,107,67,-2.5020528085604017],[123,107,68,-2.491987222824346],[123,107,69,-2.4993329471727774],[123,107,70,-2.515490027703435],[123,107,71,-2.5406093672760073],[123,107,72,-2.571032412946508],[123,107,73,-2.591974628682288],[123,107,74,-2.5968454066046847],[123,107,75,-2.5947482157568658],[123,107,76,-2.5821286705188933],[123,107,77,-2.5588089688868845],[123,107,78,-2.5300883371838436],[123,107,79,-2.500704810007504],[123,108,64,-2.5906171661905657],[123,108,65,-2.5875530100948465],[123,108,66,-2.571901114897589],[123,108,67,-2.5545901372734887],[123,108,68,-2.542564284414023],[123,108,69,-2.5484281498165084],[123,108,70,-2.566878823431151],[123,108,71,-2.592072354980068],[123,108,72,-2.624617492113762],[123,108,73,-2.64283921606826],[123,108,74,-2.6522435269734075],[123,108,75,-2.6482030183950105],[123,108,76,-2.63255844301819],[123,108,77,-2.611881172389101],[123,108,78,-2.58539025419246],[123,108,79,-2.5563936502683466],[123,109,64,-2.6347012970229935],[123,109,65,-2.637638654723546],[123,109,66,-2.624693255330659],[123,109,67,-2.6085691406504448],[123,109,68,-2.599230193797359],[123,109,69,-2.605212269800414],[123,109,70,-2.623598631119518],[123,109,71,-2.6469084968777614],[123,109,72,-2.6767672594975394],[123,109,73,-2.6960023317754818],[123,109,74,-2.7046393015397787],[123,109,75,-2.7027737122418496],[123,109,76,-2.6866118825202006],[123,109,77,-2.666489310727511],[123,109,78,-2.6398641993485663],[123,109,79,-2.608954816044171],[123,110,64,-2.6832889621215545],[123,110,65,-2.6861555644183444],[123,110,66,-2.6734940984006212],[123,110,67,-2.6571456842727605],[123,110,68,-2.649313968271256],[123,110,69,-2.6530427256781928],[123,110,70,-2.6734442269405623],[123,110,71,-2.696309842669329],[123,110,72,-2.726470927807042],[123,110,73,-2.7445181147164655],[123,110,74,-2.7533291361732513],[123,110,75,-2.7536611433343077],[123,110,76,-2.736392045139233],[123,110,77,-2.714930336775846],[123,110,78,-2.689703716477794],[123,110,79,-2.6591533639508937],[123,111,64,-2.7240915665695904],[123,111,65,-2.729716057820786],[123,111,66,-2.716729238908796],[123,111,67,-2.70058916840999],[123,111,68,-2.69271938443972],[123,111,69,-2.6966687878113262],[123,111,70,-2.714674658251786],[123,111,71,-2.7377310099108025],[123,111,72,-2.7700042056524743],[123,111,73,-2.7892460975146394],[123,111,74,-2.797734756073205],[123,111,75,-2.7983555422052797],[123,111,76,-2.7816002203179466],[123,111,77,-2.7640152690503355],[123,111,78,-2.7372185014649264],[123,111,79,-2.7067794843195183],[123,112,64,-2.7719413996924005],[123,112,65,-2.778610361420341],[123,112,66,-2.765133385060656],[123,112,67,-2.749811433485775],[123,112,68,-2.7400761056775624],[123,112,69,-2.7451542466491623],[123,112,70,-2.7618100755367982],[123,112,71,-2.7855574045333227],[123,112,72,-2.8171628941333915],[123,112,73,-2.8364924532711515],[123,112,74,-2.8468143835388235],[123,112,75,-2.847114539560603],[123,112,76,-2.830036048133782],[123,112,77,-2.810619214703637],[123,112,78,-2.7878283120932554],[123,112,79,-2.758713827621741],[123,113,64,-2.820405042971412],[123,113,65,-2.8263889637789488],[123,113,66,-2.8127144292971042],[123,113,67,-2.798205946431722],[123,113,68,-2.7881683166012396],[123,113,69,-2.7940621449571013],[123,113,70,-2.811340638848673],[123,113,71,-2.8348997098928526],[123,113,72,-2.8644387507971634],[123,113,73,-2.8848109068329606],[123,113,74,-2.895988163993003],[123,113,75,-2.8954757045220236],[123,113,76,-2.87873628792558],[123,113,77,-2.857180511688931],[123,113,78,-2.8349469709827],[123,113,79,-2.80782077866305],[123,114,64,-2.8774265622628934],[123,114,65,-2.8800871558182073],[123,114,66,-2.866071514322138],[123,114,67,-2.849787507653329],[123,114,68,-2.8419133575131497],[123,114,69,-2.849475446781745],[123,114,70,-2.8655918433392045],[123,114,71,-2.8914739987196327],[123,114,72,-2.9184768810515447],[123,114,73,-2.938149524009772],[123,114,74,-2.950819052191577],[123,114,75,-2.9486734262238063],[123,114,76,-2.9335429138030085],[123,114,77,-2.9089681013324964],[123,114,78,-2.8884629291209465],[123,114,79,-2.8592503894324155],[123,115,64,-2.9249768972746932],[123,115,65,-2.926572696723415],[123,115,66,-2.914368655572377],[123,115,67,-2.8957395875712524],[123,115,68,-2.8861594443494822],[123,115,69,-2.895665788533188],[123,115,70,-2.9119393530891506],[123,115,71,-2.9382703420520544],[123,115,72,-2.9676434091517567],[123,115,73,-2.9875115045359406],[123,115,74,-2.997754751961778],[123,115,75,-2.9966205782103152],[123,115,76,-2.984941964476815],[123,115,77,-2.960563328574482],[123,115,78,-2.935835423852398],[123,115,79,-2.9052852332420422],[123,116,64,-2.9500863918903284],[123,116,65,-2.953571547016514],[123,116,66,-2.941804827124821],[123,116,67,-2.9274054747794183],[123,116,68,-2.918495974867995],[123,116,69,-2.930749919100044],[123,116,70,-2.9499872622442216],[123,116,71,-2.976277625003978],[123,116,72,-3.008850993937291],[123,116,73,-3.02690244304574],[123,116,74,-3.038659213644088],[123,116,75,-3.03695041279432],[123,116,76,-3.023852880837324],[123,116,77,-2.9997548025325074],[123,116,78,-2.970799306237895],[123,116,79,-2.9359431026761422],[123,117,64,-3.000358982330544],[123,117,65,-3.003541282916591],[123,117,66,-2.9932166791315113],[123,117,67,-2.980861078754925],[123,117,68,-2.97242794207288],[123,117,69,-2.9813578564552325],[123,117,70,-3.004381850813136],[123,117,71,-3.030041659507659],[123,117,72,-3.0608003254851406],[123,117,73,-3.082577168734934],[123,117,74,-3.0926907585488657],[123,117,75,-3.0920688051143497],[123,117,76,-3.0772478775599534],[123,117,77,-3.0494035107817243],[123,117,78,-3.0145742089584253],[123,117,79,-2.976408596226939],[123,118,64,-3.0466390790456623],[123,118,65,-3.0484413655874145],[123,118,66,-3.0380604953674952],[123,118,67,-3.0254801561011453],[123,118,68,-3.021160765716006],[123,118,69,-3.0279972767873993],[123,118,70,-3.052601642881875],[123,118,71,-3.079815604792556],[123,118,72,-3.10871938447147],[123,118,73,-3.1318679385446053],[123,118,74,-3.1425819121850282],[123,118,75,-3.1397827786703365],[123,118,76,-3.126215369655043],[123,118,77,-3.0975006638226485],[123,118,78,-3.062898333873985],[123,118,79,-3.0235291322452094],[123,119,64,-3.084792752357735],[123,119,65,-3.089538251935912],[123,119,66,-3.0766910311843416],[123,119,67,-3.0647210954482453],[123,119,68,-3.0608959593518548],[123,119,69,-3.0688463806006956],[123,119,70,-3.095039356330069],[123,119,71,-3.122064762685245],[123,119,72,-3.1546573912678744],[123,119,73,-3.1790831155117867],[123,119,74,-3.189400959211965],[123,119,75,-3.1875632048410063],[123,119,76,-3.1730520961284094],[123,119,77,-3.1467304998116084],[123,119,78,-3.1122741650976717],[123,119,79,-3.0744042838227865],[123,120,64,-3.1317585226635347],[123,120,65,-3.1363779423134686],[123,120,66,-3.1232079514200204],[123,120,67,-3.109622165888003],[123,120,68,-3.1060160983632987],[123,120,69,-3.1166558222900353],[123,120,70,-3.1429423802560343],[123,120,71,-3.1711776983070554],[123,120,72,-3.202641837042546],[123,120,73,-3.2276968780166886],[123,120,74,-3.2364333827048872],[123,120,75,-3.235484176344934],[123,120,76,-3.223096626100857],[123,120,77,-3.198091803715743],[123,120,78,-3.161822349814246],[123,120,79,-3.123834509741922],[123,121,64,-3.171081012020864],[123,121,65,-3.1754982935052487],[123,121,66,-3.161303534680236],[123,121,67,-3.14566137004617],[123,121,68,-3.1438328666448725],[123,121,69,-3.1529847810125715],[123,121,70,-3.179070122817249],[123,121,71,-3.2096023443291513],[123,121,72,-3.243933704838584],[123,121,73,-3.2669362797624815],[123,121,74,-3.275659538694247],[123,121,75,-3.2768347471904637],[123,121,76,-3.2679801506050357],[123,121,77,-3.2474174654606416],[123,121,78,-3.2188463932875573],[123,121,79,-3.184026780645144],[123,122,64,-3.225044036682806],[123,122,65,-3.228965193597272],[123,122,66,-3.2167929279563303],[123,122,67,-3.201624459352645],[123,122,68,-3.197733636207438],[123,122,69,-3.2081214250952432],[123,122,70,-3.2326165048041826],[123,122,71,-3.261550847968546],[123,122,72,-3.295423384322813],[123,122,73,-3.3197065335217495],[123,122,74,-3.3291654611943797],[123,122,75,-3.330587599408776],[123,122,76,-3.3235442581441843],[123,122,77,-3.3025301431026652],[123,122,78,-3.27471748798736],[123,122,79,-3.2383650855460844],[123,123,64,-3.2703525241873597],[123,123,65,-3.2731293498190492],[123,123,66,-3.263063498002776],[123,123,67,-3.24908391371979],[123,123,68,-3.247675702259983],[123,123,69,-3.2562445920175027],[123,123,70,-3.2787469493400376],[123,123,71,-3.3092261420878386],[123,123,72,-3.343683667330453],[123,123,73,-3.3681531366536497],[123,123,74,-3.3777958114737903],[123,123,75,-3.37827343284307],[123,123,76,-3.3708750073642775],[123,123,77,-3.3519405645849267],[123,123,78,-3.3256040098705433],[123,123,79,-3.2915069932424954],[123,124,64,-3.313194474939597],[123,124,65,-3.315253129079892],[123,124,66,-3.3041476467379325],[123,124,67,-3.293123549902975],[123,124,68,-3.2922516163508053],[123,124,69,-3.3030650734053215],[123,124,70,-3.323332841814657],[123,124,71,-3.3567351706877187],[123,124,72,-3.390696572340589],[123,124,73,-3.415570157886382],[123,124,74,-3.4270694310119154],[123,124,75,-3.428079858240922],[123,124,76,-3.4187093012165],[123,124,77,-3.400585772728817],[123,124,78,-3.3788845245960353],[123,124,79,-3.345222185581709],[123,125,64,-3.3588356789278535],[123,125,65,-3.3617070784403915],[123,125,66,-3.3492406301599744],[123,125,67,-3.3396209773667804],[123,125,68,-3.3391772761692855],[123,125,69,-3.3508266559516002],[123,125,70,-3.3698820302895305],[123,125,71,-3.4039889276780397],[123,125,72,-3.4379784630243546],[123,125,73,-3.4656289560413436],[123,125,74,-3.476591518498889],[123,125,75,-3.479245082453282],[123,125,76,-3.4692482283968435],[123,125,77,-3.452061370511449],[123,125,78,-3.4261767115980204],[123,125,79,-3.393091411697522],[123,126,64,-3.4030263884806327],[123,126,65,-3.4071589782078497],[123,126,66,-3.39728983017425],[123,126,67,-3.3876615453251318],[123,126,68,-3.3880131578839516],[123,126,69,-3.3974668913592296],[123,126,70,-3.4181719349099464],[123,126,71,-3.4504664885219065],[123,126,72,-3.4893738397582363],[123,126,73,-3.51625465636452],[123,126,74,-3.527231340195147],[123,126,75,-3.53012929482487],[123,126,76,-3.5216139511983937],[123,126,77,-3.5004363358028456],[123,126,78,-3.4726327358232494],[123,126,79,-3.440852934675855],[123,127,64,-3.441415330032343],[123,127,65,-3.4463271014447017],[123,127,66,-3.4391301009719095],[123,127,67,-3.4315817368623076],[123,127,68,-3.4303830760671823],[123,127,69,-3.4429263249201805],[123,127,70,-3.468184010077582],[123,127,71,-3.499303987259842],[123,127,72,-3.5380113810995932],[123,127,73,-3.565896389915671],[123,127,74,-3.5759967529591035],[123,127,75,-3.581009736134635],[123,127,76,-3.5729771207239467],[123,127,77,-3.5514077190868245],[123,127,78,-3.5210812886258602],[123,127,79,-3.491918744603621],[123,128,64,-3.4903791667054715],[123,128,65,-3.4952015282209703],[123,128,66,-3.4864105277874318],[123,128,67,-3.477697196249437],[123,128,68,-3.4766771049665612],[123,128,69,-3.4900906552598143],[123,128,70,-3.519296713724274],[123,128,71,-3.5522387755422478],[123,128,72,-3.589914086419303],[123,128,73,-3.6161921593743473],[123,128,74,-3.628083825154742],[123,128,75,-3.6301554724839273],[123,128,76,-3.623401713830353],[123,128,77,-3.60093504743147],[123,128,78,-3.5703039138019546],[123,128,79,-3.540452212607873],[123,129,64,-3.537920763903433],[123,129,65,-3.5449040733280284],[123,129,66,-3.5369360530045837],[123,129,67,-3.526074200195346],[123,129,68,-3.5288117844711255],[123,129,69,-3.5442283174788023],[123,129,70,-3.5753970662558676],[123,129,71,-3.611554627898202],[123,129,72,-3.6469691475572152],[123,129,73,-3.6719800229581376],[123,129,74,-3.681788439267018],[123,129,75,-3.68387955178098],[123,129,76,-3.6746629394568346],[123,129,77,-3.6507250895805807],[123,129,78,-3.617243394127335],[123,129,79,-3.5823945330471143],[123,130,64,-3.5918290771063477],[123,130,65,-3.598823294997294],[123,130,66,-3.592048582107476],[123,130,67,-3.5792861691743414],[123,130,68,-3.5829956062240114],[123,130,69,-3.599653231346122],[123,130,70,-3.631837982265107],[123,130,71,-3.666484217970039],[123,130,72,-3.7016322169499856],[123,130,73,-3.727139734198721],[123,130,74,-3.762187224013969],[123,130,75,-3.812655696276077],[123,130,76,-3.8064185571277163],[123,130,77,-3.778598178042947],[123,130,78,-3.7377892631723153],[123,130,79,-3.695494037402785],[123,131,64,-3.6386316333504927],[123,131,65,-3.645971638258385],[123,131,66,-3.6382743619382456],[123,131,67,-3.6274901707863694],[123,131,68,-3.6320375721636218],[123,131,69,-3.648647650538676],[123,131,70,-3.6840218893521843],[123,131,71,-3.7167665809235615],[123,131,72,-3.751121823767172],[123,131,73,-3.7752315546818775],[123,131,74,-3.815889472646394],[123,131,75,-3.868549085067976],[123,131,76,-3.8702645055308333],[123,131,77,-3.845338637445405],[123,131,78,-3.810444660135403],[123,131,79,-3.757935424887378],[123,132,64,-3.6765823507155035],[123,132,65,-3.6834023272624945],[123,132,66,-3.677666907031884],[123,132,67,-3.6672080158672324],[123,132,68,-3.6696446232878706],[123,132,69,-3.6924722593153474],[123,132,70,-3.7256401559759795],[123,132,71,-3.7602631863425087],[123,132,72,-3.7940857793684017],[123,132,73,-3.8188571553968775],[123,132,74,-3.8638337627793127],[123,132,75,-3.911942495525469],[123,132,76,-3.9268049381192953],[123,132,77,-3.9014219096601006],[123,132,78,-3.8694465787477275],[123,132,79,-3.8026579343947398],[123,133,64,-3.725608331069211],[123,133,65,-3.7301941482257748],[123,133,66,-3.7214112984196293],[123,133,67,-3.7107546630315413],[123,133,68,-3.7127536881985495],[123,133,69,-3.734299077673291],[123,133,70,-3.76675154517408],[123,133,71,-3.803761227964202],[123,133,72,-3.8404836677998864],[123,133,73,-3.867641355709431],[123,133,74,-3.906310846728001],[123,133,75,-3.9293036231528657],[123,133,76,-3.948475610999729],[123,133,77,-3.933342298580493],[123,133,78,-3.9095129466739893],[123,133,79,-3.8582474462186225],[123,134,64,-3.769875961118528],[123,134,65,-3.7762535089174296],[123,134,66,-3.765399167324848],[123,134,67,-3.7564219860068526],[123,134,68,-3.761749966831268],[123,134,69,-3.7809157660000743],[123,134,70,-3.812515896859961],[123,134,71,-3.8489380398756783],[123,134,72,-3.887231952686953],[123,134,73,-3.922279651563627],[123,134,74,-3.9618671612216914],[123,134,75,-3.99043583104981],[123,134,76,-3.9988587564601557],[123,134,77,-3.988747659555242],[123,134,78,-3.9652599287620323],[123,134,79,-3.9120901234834413],[123,135,64,-3.810172094532009],[123,135,65,-3.8146772092291483],[123,135,66,-3.809099392009954],[123,135,67,-3.8012308919820854],[123,135,68,-3.808293237355271],[123,135,69,-3.8268747806840664],[123,135,70,-3.8586556197169215],[123,135,71,-3.893460921045524],[123,135,72,-3.9346407577929936],[123,135,73,-3.9617408558771143],[123,135,74,-3.996043124897913],[123,135,75,-4.030199069651595],[123,135,76,-4.035227536117138],[123,135,77,-4.02825680607969],[123,135,78,-4.006819413938068],[123,135,79,-3.9513147929101757],[123,136,64,-3.856255267656424],[123,136,65,-3.8614447237961618],[123,136,66,-3.856550193872799],[123,136,67,-3.8511592145222044],[123,136,68,-3.853329634621681],[123,136,69,-3.8733711179814923],[123,136,70,-3.908569499282147],[123,136,71,-3.9440066564437744],[123,136,72,-3.982449203947331],[123,136,73,-4.012080341762929],[123,136,74,-4.045018278961642],[123,136,75,-4.085008212452269],[123,136,76,-4.0872498421678545],[123,136,77,-4.088760116035427],[123,136,78,-4.063328457547444],[123,136,79,-4.0081673121383705],[123,137,64,-3.904451193238614],[123,137,65,-3.9105303092603614],[123,137,66,-3.9048745330534205],[123,137,67,-3.8980781116923495],[123,137,68,-3.9008915924977634],[123,137,69,-3.923150012252471],[123,137,70,-3.9579035049836238],[123,137,71,-3.9926192717309696],[123,137,72,-4.033719253877391],[123,137,73,-4.059371412164092],[123,137,74,-4.08977498033032],[123,137,75,-4.122126891813436],[123,137,76,-4.120978062224215],[123,137,77,-4.1246916101708715],[123,137,78,-4.100829597928424],[123,137,79,-4.055385223483929],[123,138,64,-3.9583267133866786],[123,138,65,-3.9646592572763804],[123,138,66,-3.9586815729536404],[123,138,67,-3.952448463678733],[123,138,68,-3.954990652916376],[123,138,69,-3.9774178039149275],[123,138,70,-4.010753655608001],[123,138,71,-4.047793074287072],[123,138,72,-4.08918848352785],[123,138,73,-4.113044362389728],[123,138,74,-4.12797874216759],[123,138,75,-4.154602419976094],[123,138,76,-4.158209556755186],[123,138,77,-4.159154292193719],[123,138,78,-4.143697162142025],[123,138,79,-4.1064610354716145],[123,139,64,-4.004641644041063],[123,139,65,-4.011362459754137],[123,139,66,-4.004423344753603],[123,139,67,-4.000658305609458],[123,139,68,-4.003171343640937],[123,139,69,-4.02584206568076],[123,139,70,-4.059196664811102],[123,139,71,-4.0933406441947],[123,139,72,-4.13813472586976],[123,139,73,-4.1632413572680065],[123,139,74,-4.1984869855435765],[123,139,75,-4.218623441010067],[123,139,76,-4.228801073866171],[123,139,77,-4.221850809785602],[123,139,78,-4.212692018806558],[123,139,79,-4.187627256117218],[123,140,64,-4.05986582344512],[123,140,65,-4.063066121491644],[123,140,66,-4.054671400990241],[123,140,67,-4.047959017125848],[123,140,68,-4.050340493596294],[123,140,69,-4.068758055570581],[123,140,70,-4.098754651305542],[123,140,71,-4.133525815083975],[123,140,72,-4.177631720569266],[123,140,73,-4.205546157660449],[123,140,74,-4.246053490891625],[123,140,75,-4.2654783752296],[123,140,76,-4.277864275316132],[123,140,77,-4.262337942459378],[123,140,78,-4.258292336257855],[123,140,79,-4.243091390774575],[123,141,64,-4.106558785048109],[123,141,65,-4.110455623948236],[123,141,66,-4.104242688217903],[123,141,67,-4.099952719281266],[123,141,68,-4.104669617288952],[123,141,69,-4.122826060411092],[123,141,70,-4.149176343492701],[123,141,71,-4.183578766408697],[123,141,72,-4.227940316540554],[123,141,73,-4.256292503287818],[123,141,74,-4.288163549301846],[123,141,75,-4.316283279908012],[123,141,76,-4.319792448770013],[123,141,77,-4.2987994317014255],[123,141,78,-4.2870404213674025],[123,141,79,-4.2736023661210885],[123,142,64,-4.153914542073906],[123,142,65,-4.158028235316671],[123,142,66,-4.152080056558778],[123,142,67,-4.149407163325235],[123,142,68,-4.152145077121621],[123,142,69,-4.173755727440997],[123,142,70,-4.197195061774539],[123,142,71,-4.232843764410368],[123,142,72,-4.277588106626935],[123,142,73,-4.307026480425769],[123,142,74,-4.333682766590049],[123,142,75,-4.362093360654872],[123,142,76,-4.363318974064513],[123,142,77,-4.341085990559748],[123,142,78,-4.329485892068783],[123,142,79,-4.3172674213240185],[123,143,64,-4.196838184211391],[123,143,65,-4.202970343653476],[123,143,66,-4.197549490386999],[123,143,67,-4.194365789755628],[123,143,68,-4.196532949540271],[123,143,69,-4.218565467103437],[123,143,70,-4.244821032419831],[123,143,71,-4.281956431261536],[123,143,72,-4.325846286045833],[123,143,73,-4.356118195814476],[123,143,74,-4.376916428982134],[123,143,75,-4.402898872186841],[123,143,76,-4.40028577969829],[123,143,77,-4.378298109401882],[123,143,78,-4.364352942681615],[123,143,79,-4.348406181486847],[123,144,64,-4.244983972767661],[123,144,65,-4.253072171761745],[123,144,66,-4.245475663242923],[123,144,67,-4.243474768576209],[123,144,68,-4.243912839857996],[123,144,69,-4.264359700332124],[123,144,70,-4.291948282950935],[123,144,71,-4.32777778839208],[123,144,72,-4.374459466588523],[123,144,73,-4.402910995575653],[123,144,74,-4.427242834651836],[123,144,75,-4.457515799367012],[123,144,76,-4.45123320122329],[123,144,77,-4.4315821450299175],[123,144,78,-4.4157047269380145],[123,144,79,-4.404053892588495],[123,145,64,-4.294539116385619],[123,145,65,-4.297211082901888],[123,145,66,-4.28916680400179],[123,145,67,-4.284853361493307],[123,145,68,-4.2848834736793835],[123,145,69,-4.301021440431283],[123,145,70,-4.331869631683406],[123,145,71,-4.371231333762795],[123,145,72,-4.4184074048285105],[123,145,73,-4.450933362257172],[123,145,74,-4.467325395758329],[123,145,75,-4.472170512164747],[123,145,76,-4.466201555725437],[123,145,77,-4.446808941325984],[123,145,78,-4.422721184019776],[123,145,79,-4.402948240949847],[123,146,64,-4.3491431166659344],[123,146,65,-4.351866514954197],[123,146,66,-4.345519445759113],[123,146,67,-4.339978058634644],[123,146,68,-4.338702653020757],[123,146,69,-4.353165944064251],[123,146,70,-4.385400400803804],[123,146,71,-4.425128214142362],[123,146,72,-4.472353676003194],[123,146,73,-4.5033102481108935],[123,146,74,-4.52209979547154],[123,146,75,-4.525132953016843],[123,146,76,-4.515922070159438],[123,146,77,-4.500160193051631],[123,146,78,-4.476763520196489],[123,146,79,-4.452280781835604],[123,147,64,-4.396118570739609],[123,147,65,-4.400309433342184],[123,147,66,-4.395110022806117],[123,147,67,-4.386099003606109],[123,147,68,-4.38542654159226],[123,147,69,-4.399717770762392],[123,147,70,-4.43242246307581],[123,147,71,-4.47308860871385],[123,147,72,-4.519187733380128],[123,147,73,-4.551576149443947],[123,147,74,-4.569862589421358],[123,147,75,-4.571750930644818],[123,147,76,-4.561293911634846],[123,147,77,-4.545934254956908],[123,147,78,-4.526252188914559],[123,147,79,-4.497619191067979],[123,148,64,-4.413785047530496],[123,148,65,-4.422209915901816],[123,148,66,-4.418428975915313],[123,148,67,-4.408676172248129],[123,148,68,-4.411917537689412],[123,148,69,-4.427892651728146],[123,148,70,-4.463444491782446],[123,148,71,-4.505427582118083],[123,148,72,-4.552135189812602],[123,148,73,-4.589099241398467],[123,148,74,-4.603851395708021],[123,148,75,-4.607949433116056],[123,148,76,-4.584302743202275],[123,148,77,-4.570441190066518],[123,148,78,-4.546824170633762],[123,148,79,-4.495716963809697],[123,149,64,-4.465636883793251],[123,149,65,-4.47176566322475],[123,149,66,-4.466215240489562],[123,149,67,-4.455925239434193],[123,149,68,-4.458343615188336],[123,149,69,-4.4775221227282405],[123,149,70,-4.512705956046318],[123,149,71,-4.552740183604106],[123,149,72,-4.602648686406966],[123,149,73,-4.6393992917895925],[123,149,74,-4.652905352662253],[123,149,75,-4.648287748890699],[123,149,76,-4.6281656703987455],[123,149,77,-4.613749688502234],[123,149,78,-4.585045681323045],[123,149,79,-4.541779467014288],[123,150,64,-4.51730518750084],[123,150,65,-4.5216425268932605],[123,150,66,-4.513612085715365],[123,150,67,-4.504127920898241],[123,150,68,-4.506093896092709],[123,150,69,-4.526293666256159],[123,150,70,-4.562748649514246],[123,150,71,-4.600844793858818],[123,150,72,-4.652008206285168],[123,150,73,-4.689574920144974],[123,150,74,-4.701807665078233],[123,150,75,-4.682113955968791],[123,150,76,-4.6693984633080845],[123,150,77,-4.661481420000431],[123,150,78,-4.626007609962804],[123,150,79,-4.588761556209433],[123,151,64,-4.56113156035119],[123,151,65,-4.567525595130332],[123,151,66,-4.560270424414522],[123,151,67,-4.553869880196314],[123,151,68,-4.552788202868563],[123,151,69,-4.571958078411236],[123,151,70,-4.611005158497682],[123,151,71,-4.652101654467845],[123,151,72,-4.700749686545766],[123,151,73,-4.734112766481537],[123,151,74,-4.751818439553485],[123,151,75,-4.732291815171977],[123,151,76,-4.721792647972276],[123,151,77,-4.715456769900344],[123,151,78,-4.681569507476321],[123,151,79,-4.6416507201682915],[123,152,64,-4.608307103575547],[123,152,65,-4.620336007826588],[123,152,66,-4.612659636350681],[123,152,67,-4.603021099123035],[123,152,68,-4.599966518602657],[123,152,69,-4.619498546951595],[123,152,70,-4.660807715592498],[123,152,71,-4.701622729749024],[123,152,72,-4.745237850494138],[123,152,73,-4.778443520567104],[123,152,74,-4.786799159623939],[123,152,75,-4.775188028240695],[123,152,76,-4.759834647008299],[123,152,77,-4.751092144337149],[123,152,78,-4.7232553411950375],[123,152,79,-4.678857900460531],[123,153,64,-4.655157830313905],[123,153,65,-4.6691428270302895],[123,153,66,-4.665318619626976],[123,153,67,-4.654688800071537],[123,153,68,-4.653238793499414],[123,153,69,-4.672715221880895],[123,153,70,-4.7122718767968985],[123,153,71,-4.750715989650746],[123,153,72,-4.790342009967188],[123,153,73,-4.819636399923938],[123,153,74,-4.799594827251519],[123,153,75,-4.788334567299953],[123,153,76,-4.777888695327166],[123,153,77,-4.7652162385384305],[123,153,78,-4.735312168761847],[123,153,79,-4.692994272222765],[123,154,64,-4.708310061061802],[123,154,65,-4.7225816605981805],[123,154,66,-4.7181741141664695],[123,154,67,-4.707128744742636],[123,154,68,-4.707891977303656],[123,154,69,-4.727262941384848],[123,154,70,-4.7628818063715705],[123,154,71,-4.801335183609195],[123,154,72,-4.8427440753459905],[123,154,73,-4.872092377351363],[123,154,74,-4.869126923640587],[123,154,75,-4.849699819316802],[123,154,76,-4.8499426617037855],[123,154,77,-4.823718796240408],[123,154,78,-4.791824030949859],[123,154,79,-4.752272398086202],[123,155,64,-4.754924020510222],[123,155,65,-4.770463040402772],[123,155,66,-4.767976052224675],[123,155,67,-4.7549636826858634],[123,155,68,-4.754375694590994],[123,155,69,-4.772084963911309],[123,155,70,-4.807454725581126],[123,155,71,-4.846357299333425],[123,155,72,-4.890323122935221],[123,155,73,-4.919847796064616],[123,155,74,-4.916913415527464],[123,155,75,-4.899956091878686],[123,155,76,-4.896238434621651],[123,155,77,-4.870832409528165],[123,155,78,-4.836486087177339],[123,155,79,-4.796159489369184],[123,156,64,-4.800487714672307],[123,156,65,-4.815047817252227],[123,156,66,-4.813977295249102],[123,156,67,-4.803243321442928],[123,156,68,-4.803145604136033],[123,156,69,-4.819613370529229],[123,156,70,-4.85392854183214],[123,156,71,-4.891011997805286],[123,156,72,-4.937560576930786],[123,156,73,-4.969049771094709],[123,156,74,-4.964788046305858],[123,156,75,-4.949085912502027],[123,156,76,-4.930895436606388],[123,156,77,-4.907564887572335],[123,156,78,-4.868728525800536],[123,156,79,-4.828060285702034],[123,157,64,-4.85305612706372],[123,157,65,-4.864379582288337],[123,157,66,-4.860789659127398],[123,157,67,-4.846094407043087],[123,157,68,-4.847162163481621],[123,157,69,-4.864309797769521],[123,157,70,-4.898971802079808],[123,157,71,-4.937087784966451],[123,157,72,-4.982971091174438],[123,157,73,-5.018544048307222],[123,157,74,-5.01432449807607],[123,157,75,-4.996052777187915],[123,157,76,-4.972724627133174],[123,157,77,-4.9434797297577875],[123,157,78,-4.902866807249644],[123,157,79,-4.8694460214636175],[123,158,64,-4.904348057955748],[123,158,65,-4.9135223477383],[123,158,66,-4.905604493064294],[123,158,67,-4.892265571361918],[123,158,68,-4.89379339713253],[123,158,69,-4.911152095273836],[123,158,70,-4.945258779042963],[123,158,71,-4.985002255860533],[123,158,72,-5.0306513400083],[123,158,73,-5.065752091437539],[123,158,74,-5.057498865536895],[123,158,75,-5.040669200021157],[123,158,76,-5.012591566869132],[123,158,77,-4.976618682384199],[123,158,78,-4.938368723867835],[123,158,79,-4.911912717518899],[123,159,64,-5.003919453718857],[123,159,65,-5.0075370065910105],[123,159,66,-4.991616262398948],[123,159,67,-4.97186071797007],[123,159,68,-4.966027327700065],[123,159,69,-4.977617744686819],[123,159,70,-5.00289702171454],[123,159,71,-5.037625644048883],[123,159,72,-5.076086991563362],[123,159,73,-5.105218394197026],[123,159,74,-5.0977732818726995],[123,159,75,-5.075180838254962],[123,159,76,-5.04624829141785],[123,159,77,-5.0102016536445175],[123,159,78,-4.977368516432015],[123,159,79,-4.948127948688104],[123,160,64,-5.051208624557173],[123,160,65,-5.056110911805439],[123,160,66,-5.039872398668761],[123,160,67,-5.01969040197168],[123,160,68,-5.012165181861219],[123,160,69,-5.023257427583285],[123,160,70,-5.046663170490879],[123,160,71,-5.080437474418577],[123,160,72,-5.1214276079418255],[123,160,73,-5.150813412338676],[123,160,74,-5.150786999235418],[123,160,75,-5.122780028449389],[123,160,76,-5.092132154799395],[123,160,77,-5.055563453664876],[123,160,78,-5.021740826632154],[123,160,79,-4.988385675712774],[123,161,64,-5.099035083772073],[123,161,65,-5.104608754498214],[123,161,66,-5.087199752716951],[123,161,67,-5.068375230143668],[123,161,68,-5.0598035110579955],[123,161,69,-5.0682236563717975],[123,161,70,-5.091476347020883],[123,161,71,-5.125514897459312],[123,161,72,-5.168222897962129],[123,161,73,-5.1988235606209505],[123,161,74,-5.20805293606952],[123,161,75,-5.1722364462106345],[123,161,76,-5.131120381159216],[123,161,77,-5.092240284516022],[123,161,78,-5.0550671265220455],[123,161,79,-5.017005764745494],[123,162,64,-5.152984930481684],[123,162,65,-5.157943251206068],[123,162,66,-5.141209252925528],[123,162,67,-5.121185860085278],[123,162,68,-5.111557486914182],[123,162,69,-5.118886549835347],[123,162,70,-5.142680364588199],[123,162,71,-5.176792265497208],[123,162,72,-5.221383442784761],[123,162,73,-5.25143473372799],[123,162,74,-5.259163044703811],[123,162,75,-5.250201076455852],[123,162,76,-5.187594019931936],[123,162,77,-5.143452117508706],[123,162,78,-5.098218145605577],[123,162,79,-5.05317709867682],[123,163,64,-5.199020608178705],[123,163,65,-5.2037250106782995],[123,163,66,-5.189572579689234],[123,163,67,-5.1678420215007],[123,163,68,-5.157833352934767],[123,163,69,-5.168217500876853],[123,163,70,-5.191953459225087],[123,163,71,-5.22468535387122],[123,163,72,-5.269152697701715],[123,163,73,-5.295557335899225],[123,163,74,-5.30312568375629],[123,163,75,-5.295750205077952],[123,163,76,-5.2610916457215495],[123,163,77,-5.214314403773659],[123,163,78,-5.166629290816589],[123,163,79,-5.123012209685925],[123,164,64,-5.231082506746296],[123,164,65,-5.23371191334545],[123,164,66,-5.215285305340724],[123,164,67,-5.191737331901913],[123,164,68,-5.181622362260425],[123,164,69,-5.1869444033],[123,164,70,-5.212358842417343],[123,164,71,-5.2456733083265705],[123,164,72,-5.285866217583336],[123,164,73,-5.309588553494141],[123,164,74,-5.317116518396047],[123,164,75,-5.311325439284876],[123,164,76,-5.2895013893819005],[123,164,77,-5.246333657367028],[123,164,78,-5.209372483822622],[123,164,79,-5.16420654481989],[123,165,64,-5.274450779997758],[123,165,65,-5.279659188389143],[123,165,66,-5.265529496469764],[123,165,67,-5.242793131908707],[123,165,68,-5.232253625025596],[123,165,69,-5.236019543121528],[123,165,70,-5.259301588696716],[123,165,71,-5.289848843414185],[123,165,72,-5.324311692048195],[123,165,73,-5.344564510421544],[123,165,74,-5.3510772608964166],[123,165,75,-5.3466465231800635],[123,165,76,-5.33153616022671],[123,165,77,-5.290542684608304],[123,165,78,-5.255732869701199],[123,165,79,-5.203415534820723],[123,166,64,-5.322781946442061],[123,166,65,-5.324185614899803],[123,166,66,-5.3111632413884555],[123,166,67,-5.289753599060116],[123,166,68,-5.278392921991449],[123,166,69,-5.281209549869315],[123,166,70,-5.305751072873526],[123,166,71,-5.334172149866756],[123,166,72,-5.36906836369082],[123,166,73,-5.38978256545743],[123,166,74,-5.395201785189491],[123,166,75,-5.3892594904349815],[123,166,76,-5.377350855076999],[123,166,77,-5.34487649195861],[123,166,78,-5.309965419398409],[123,166,79,-5.256830002662179],[123,167,64,-5.365012783915297],[123,167,65,-5.366523283535949],[123,167,66,-5.355454086903246],[123,167,67,-5.332369788025358],[123,167,68,-5.321810869670192],[123,167,69,-5.326040544078096],[123,167,70,-5.350315941673187],[123,167,71,-5.380038441195391],[123,167,72,-5.416001749774153],[123,167,73,-5.435643513217292],[123,167,74,-5.440464935464332],[123,167,75,-5.438024499505309],[123,167,76,-5.425777175071609],[123,167,77,-5.396521928110971],[123,167,78,-5.361643311340711],[123,167,79,-5.3049064142387445],[123,168,64,-5.413086266714172],[123,168,65,-5.415029829720723],[123,168,66,-5.402812373554914],[123,168,67,-5.381776303823729],[123,168,68,-5.367625820876029],[123,168,69,-5.37135850307613],[123,168,70,-5.39474119246887],[123,168,71,-5.426039694773643],[123,168,72,-5.461926870697473],[123,168,73,-5.481520117748877],[123,168,74,-5.485738186454359],[123,168,75,-5.48289295538796],[123,168,76,-5.470770449958427],[123,168,77,-5.441524609902104],[123,168,78,-5.409468569747275],[123,168,79,-5.3515567000087065],[123,169,64,-5.463629915381011],[123,169,65,-5.464294380322295],[123,169,66,-5.449488166854283],[123,169,67,-5.426469508659952],[123,169,68,-5.410426535359385],[123,169,69,-5.4159632896975625],[123,169,70,-5.4380345762339575],[123,169,71,-5.472320608161162],[123,169,72,-5.513896154318212],[123,169,73,-5.535712666831345],[123,169,74,-5.54348357919313],[123,169,75,-5.542248887635001],[123,169,76,-5.524121214689661],[123,169,77,-5.494568878010959],[123,169,78,-5.45296940346935],[123,169,79,-5.389899876472484],[123,170,64,-5.515004269172678],[123,170,65,-5.516227524164478],[123,170,66,-5.499679040998359],[123,170,67,-5.47748836654236],[123,170,68,-5.462381079432456],[123,170,69,-5.469121345713313],[123,170,70,-5.490888447701123],[123,170,71,-5.523522055542854],[123,170,72,-5.564505527659719],[123,170,73,-5.58920675837917],[123,170,74,-5.598325256849047],[123,170,75,-5.595517106061493],[123,170,76,-5.57782536661398],[123,170,77,-5.550949487852131],[123,170,78,-5.510750325537714],[123,170,79,-5.450955556044598],[123,171,64,-5.561086910258424],[123,171,65,-5.562674205230459],[123,171,66,-5.545998099118276],[123,171,67,-5.520964993460168],[123,171,68,-5.5089989549066996],[123,171,69,-5.514882819004517],[123,171,70,-5.536985186191696],[123,171,71,-5.570477133921006],[123,171,72,-5.61097414953737],[123,171,73,-5.636277498514783],[123,171,74,-5.64923784769504],[123,171,75,-5.6446898758031265],[123,171,76,-5.625320540232084],[123,171,77,-5.597058803214568],[123,171,78,-5.5605149700087155],[123,171,79,-5.5080611106621555],[123,172,64,-5.60464189837761],[123,172,65,-5.604255561740245],[123,172,66,-5.585701593140512],[123,172,67,-5.562836120934171],[123,172,68,-5.551729389658837],[123,172,69,-5.55677738794117],[123,172,70,-5.578815894471739],[123,172,71,-5.615282808171578],[123,172,72,-5.657246725595606],[123,172,73,-5.682616967517985],[123,172,74,-5.69406185861778],[123,172,75,-5.691264692219959],[123,172,76,-5.671805233412458],[123,172,77,-5.642500214513388],[123,172,78,-5.608424955721953],[123,172,79,-5.569108209524568],[123,173,64,-5.650443730584264],[123,173,65,-5.648113010021275],[123,173,66,-5.630319065792999],[123,173,67,-5.605608540470788],[123,173,68,-5.596293198248863],[123,173,69,-5.603854374937733],[123,173,70,-5.626324984138144],[123,173,71,-5.659588591070552],[123,173,72,-5.703604769857352],[123,173,73,-5.7309376273258765],[123,173,74,-5.7409414121226465],[123,173,75,-5.738378744198139],[123,173,76,-5.71795458041054],[123,173,77,-5.690786939995604],[123,173,78,-5.65553473256107],[123,173,79,-5.618052359741651],[123,174,64,-5.694998174870209],[123,174,65,-5.68995662472188],[123,174,66,-5.672651843293616],[123,174,67,-5.649679868898652],[123,174,68,-5.6385785123087455],[123,174,69,-5.649217016004803],[123,174,70,-5.672671961440586],[123,174,71,-5.706709028983986],[123,174,72,-5.749103984520774],[123,174,73,-5.776218462864369],[123,174,74,-5.787707053659116],[123,174,75,-5.783254611254316],[123,174,76,-5.765262687787559],[123,174,77,-5.736052460811601],[123,174,78,-5.699938787512738],[123,174,79,-5.659759842812646],[123,175,64,-5.736534780397152],[123,175,65,-5.731963341414544],[123,175,66,-5.714296781378402],[123,175,67,-5.690422225016594],[123,175,68,-5.68038669917676],[123,175,69,-5.691140464655626],[123,175,70,-5.71679931452913],[123,175,71,-5.751997352294708],[123,175,72,-5.794063555502548],[123,175,73,-5.82142622856078],[123,175,74,-5.831742425380698],[123,175,75,-5.829696246159732],[123,175,76,-5.810092043365355],[123,175,77,-5.77998540946879],[123,175,78,-5.745230694476337],[123,175,79,-5.705949539139535],[123,176,64,-5.785160612987062],[123,176,65,-5.776244212163533],[123,176,66,-5.7585434114080964],[123,176,67,-5.735661599600383],[123,176,68,-5.726137220143487],[123,176,69,-5.735935060122148],[123,176,70,-5.762514399695786],[123,176,71,-5.796782197783197],[123,176,72,-5.838082245909839],[123,176,73,-5.8661253165924006],[123,176,74,-5.87487276488199],[123,176,75,-5.875335451194872],[123,176,76,-5.8571200944763415],[123,176,77,-5.827405173472324],[123,176,78,-5.794253571212426],[123,176,79,-5.754744385922648],[123,177,64,-5.839489347225423],[123,177,65,-5.828872106268261],[123,177,66,-5.803619504941508],[123,177,67,-5.779649183514526],[123,177,68,-5.7691624889006405],[123,177,69,-5.7790975080185225],[123,177,70,-5.804876828110421],[123,177,71,-5.84324870204946],[123,177,72,-5.8831274542535485],[123,177,73,-5.912634558865888],[123,177,74,-5.926149707942604],[123,177,75,-5.939261279028161],[123,177,76,-5.951831626369752],[123,177,77,-5.93330163353292],[123,177,78,-5.903178567241811],[123,177,79,-5.875971045313628],[123,178,64,-5.891483286128923],[123,178,65,-5.879879592410882],[123,178,66,-5.8527583556444265],[123,178,67,-5.829064396663171],[123,178,68,-5.820554234173952],[123,178,69,-5.830849796241382],[123,178,70,-5.857614395358811],[123,178,71,-5.895943956127442],[123,178,72,-5.937215725604563],[123,178,73,-5.967742313745421],[123,178,74,-5.975506966972493],[123,178,75,-5.987694402512056],[123,178,76,-5.996916760289662],[123,178,77,-5.985163055040454],[123,178,78,-5.964658259819802],[123,178,79,-5.929404553459418],[123,179,64,-5.9381558937352],[123,179,65,-5.925675297674985],[123,179,66,-5.89947861868454],[123,179,67,-5.876324644832656],[123,179,68,-5.8671407882749795],[123,179,69,-5.878672723066489],[123,179,70,-5.90674319311354],[123,179,71,-5.94299561393322],[123,179,72,-5.983949797360366],[123,179,73,-6.015230618644072],[123,179,74,-6.025981412191707],[123,179,75,-6.043079335714636],[123,179,76,-6.049334877183036],[123,179,77,-6.043995803355556],[123,179,78,-6.0306400593881655],[123,179,79,-5.986693798965585],[123,180,64,-5.975348397734587],[123,180,65,-5.960088747818066],[123,180,66,-5.937048928800461],[123,180,67,-5.912749087753127],[123,180,68,-5.902154572774135],[123,180,69,-5.915103690792328],[123,180,70,-5.944083099797801],[123,180,71,-5.979178212624184],[123,180,72,-6.021725305062828],[123,180,73,-6.050614114889823],[123,180,74,-6.061343630994103],[123,180,75,-6.087147598794897],[123,180,76,-6.089448365425328],[123,180,77,-6.085528931013935],[123,180,78,-6.068208372689656],[123,180,79,-6.0276378456306485],[123,181,64,-6.009816757024817],[123,181,65,-6.002172185746167],[123,181,66,-5.982466489371351],[123,181,67,-5.962079782635321],[123,181,68,-5.951953205052093],[123,181,69,-5.963442332249111],[123,181,70,-5.9949431319706274],[123,181,71,-6.027721106252826],[123,181,72,-6.0679812107609745],[123,181,73,-6.092320063526067],[123,181,74,-6.103034349557553],[123,181,75,-6.116581028510034],[123,181,76,-6.101742531999702],[123,181,77,-6.094162907268699],[123,181,78,-6.087363878092497],[123,181,79,-6.054640508604915],[123,182,64,-6.056494528178884],[123,182,65,-6.051003462397813],[123,182,66,-6.030948954028332],[123,182,67,-6.006745663071098],[123,182,68,-5.997327031525289],[123,182,69,-6.009785803498912],[123,182,70,-6.041577623985279],[123,182,71,-6.07658319721232],[123,182,72,-6.115228821212436],[123,182,73,-6.139208364613177],[123,182,74,-6.147383336593606],[123,182,75,-6.1612952112585395],[123,182,76,-6.149693063484777],[123,182,77,-6.1459118024210255],[123,182,78,-6.137080170155293],[123,182,79,-6.1110532456635855],[123,183,64,-6.102213412034705],[123,183,65,-6.097155963995216],[123,183,66,-6.075721878313422],[123,183,67,-6.0515112021058535],[123,183,68,-6.041396166505686],[123,183,69,-6.054494716971675],[123,183,70,-6.086077515508648],[123,183,71,-6.12154028806675],[123,183,72,-6.163310578723156],[123,183,73,-6.1871489053412985],[123,183,74,-6.196350722434679],[123,183,75,-6.197232846780438],[123,183,76,-6.1852473422313805],[123,183,77,-6.1821300462329996],[123,183,78,-6.170957859898112],[123,183,79,-6.147088169299894],[123,184,64,-6.1514462332936475],[123,184,65,-6.145031653545127],[123,184,66,-6.122944645366206],[123,184,67,-6.099566843567181],[123,184,68,-6.089483353725246],[123,184,69,-6.103476702876851],[123,184,70,-6.132215758886353],[123,184,71,-6.166697812855378],[123,184,72,-6.208301204314734],[123,184,73,-6.2320072298393505],[123,184,74,-6.244837083643174],[123,184,75,-6.243464651665209],[123,184,76,-6.2353855909819105],[123,184,77,-6.233723544903991],[123,184,78,-6.219767621826695],[123,184,79,-6.197574792850453],[123,185,64,-6.202186032237844],[123,185,65,-6.19480612506034],[123,185,66,-6.173461382007327],[123,185,67,-6.146967292353144],[123,185,68,-6.137774576617465],[123,185,69,-6.150095459962686],[123,185,70,-6.180987074202108],[123,185,71,-6.214767569635311],[123,185,72,-6.256971091484268],[123,185,73,-6.280153795918786],[123,185,74,-6.290326737536911],[123,185,75,-6.290137993993314],[123,185,76,-6.280651312136087],[123,185,77,-6.277463949014369],[123,185,78,-6.262668149185715],[123,185,79,-6.240787075240057],[123,186,64,-6.256468409242748],[123,186,65,-6.248663506032164],[123,186,66,-6.227323482488797],[123,186,67,-6.2016598254261694],[123,186,68,-6.190201350710849],[123,186,69,-6.203652534697093],[123,186,70,-6.232909622596903],[123,186,71,-6.269182342416952],[123,186,72,-6.309177092835309],[123,186,73,-6.331293230641027],[123,186,74,-6.3420422273593715],[123,186,75,-6.34226043172007],[123,186,76,-6.337778178233479],[123,186,77,-6.330470294275581],[123,186,78,-6.3146952156818195],[123,186,79,-6.289227478110111],[123,187,64,-6.305856027083432],[123,187,65,-6.300206715641407],[123,187,66,-6.276030848896332],[123,187,67,-6.250597180392479],[123,187,68,-6.238509473523214],[123,187,69,-6.251188455141413],[123,187,70,-6.27916161505829],[123,187,71,-6.318180365995072],[123,187,72,-6.359679754644164],[123,187,73,-6.381759899720043],[123,187,74,-6.390111770910237],[123,187,75,-6.390268872690686],[123,187,76,-6.3954172400722715],[123,187,77,-6.388957758561472],[123,187,78,-6.3761637527816735],[123,187,79,-6.35073994497926],[123,188,64,-6.354976843931777],[123,188,65,-6.345036885742923],[123,188,66,-6.316423888234539],[123,188,67,-6.289380475080019],[123,188,68,-6.2783151194759625],[123,188,69,-6.284128835891246],[123,188,70,-6.313769947354079],[123,188,71,-6.35351793125979],[123,188,72,-6.3969952405033705],[123,188,73,-6.41815338620753],[123,188,74,-6.424694961473177],[123,188,75,-6.420936358214973],[123,188,76,-6.434313291062946],[123,188,77,-6.4258998819561635],[123,188,78,-6.418270938645041],[123,188,79,-6.389419046918875],[123,189,64,-6.408673288311385],[123,189,65,-6.396977136459476],[123,189,66,-6.366826787903517],[123,189,67,-6.340070901852764],[123,189,68,-6.327607036934601],[123,189,69,-6.333579616922925],[123,189,70,-6.360924440635549],[123,189,71,-6.398753597189171],[123,189,72,-6.439792460989844],[123,189,73,-6.461838037871376],[123,189,74,-6.463892548951696],[123,189,75,-6.458489225672564],[123,189,76,-6.489833749936617],[123,189,77,-6.48954719833019],[123,189,78,-6.480856840152031],[123,189,79,-6.454951476845345],[123,190,64,-6.4545192902045505],[123,190,65,-6.4429270550058995],[123,190,66,-6.416693651335171],[123,190,67,-6.390734065274577],[123,190,68,-6.37646784187532],[123,190,69,-6.382279948668087],[123,190,70,-6.409118934466563],[123,190,71,-6.446702048713057],[123,190,72,-6.486269754023181],[123,190,73,-6.511076908069095],[123,190,74,-6.5131104616208],[123,190,75,-6.507585752285345],[123,190,76,-6.540004835295568],[123,190,77,-6.5473321776658135],[123,190,78,-6.537582770988792],[123,190,79,-6.505158171729788],[123,191,64,-6.50014569642965],[123,191,65,-6.488016047026654],[123,191,66,-6.463040609485385],[123,191,67,-6.4387621498842105],[123,191,68,-6.426499892697572],[123,191,69,-6.431617665481075],[123,191,70,-6.4577396349719285],[123,191,71,-6.494473384532917],[123,191,72,-6.5351756729264725],[123,191,73,-6.562473107841711],[123,191,74,-6.566190773040916],[123,191,75,-6.560845141639747],[123,191,76,-6.584283288347447],[123,191,77,-6.598552495164676],[123,191,78,-6.580643832389384],[123,191,79,-6.5413507533737025],[123,192,64,-6.546839799901312],[123,192,65,-6.535722985165316],[123,192,66,-6.511931950988356],[123,192,67,-6.48592347794649],[123,192,68,-6.476912705751223],[123,192,69,-6.479135054993844],[123,192,70,-6.501676759776791],[123,192,71,-6.540306568422683],[123,192,72,-6.584480237215788],[123,192,73,-6.609091418723734],[123,192,74,-6.617089291110525],[123,192,75,-6.611804692891211],[123,192,76,-6.637490585553589],[123,192,77,-6.654373128789712],[123,192,78,-6.631833260234337],[123,192,79,-6.585649125612666],[123,193,64,-6.5906606367174465],[123,193,65,-6.582303264125962],[123,193,66,-6.556045511593384],[123,193,67,-6.52935113418312],[123,193,68,-6.51801316048335],[123,193,69,-6.525696740742562],[123,193,70,-6.547812060220737],[123,193,71,-6.591805230779395],[123,193,72,-6.641469055331522],[123,193,73,-6.667575008784958],[123,193,74,-6.675335880797206],[123,193,75,-6.672300235789041],[123,193,76,-6.676520820276508],[123,193,77,-6.680186559934723],[123,193,78,-6.6482719632555805],[123,193,79,-6.600577989805406],[123,194,64,-6.646870283511392],[123,194,65,-6.636064779700998],[123,194,66,-6.609451916644248],[123,194,67,-6.5797281918339285],[123,194,68,-6.569094704679688],[123,194,69,-6.578375649988415],[123,194,70,-6.603319040740898],[123,194,71,-6.645934876486475],[123,194,72,-6.69378034112341],[123,194,73,-6.721463132969554],[123,194,74,-6.727788063876907],[123,194,75,-6.723166916312611],[123,194,76,-6.721528291101924],[123,194,77,-6.731442993795082],[123,194,78,-6.702088666957245],[123,194,79,-6.652050110777772],[123,195,64,-6.698111013164081],[123,195,65,-6.6867154071427],[123,195,66,-6.657679545600616],[123,195,67,-6.628333614996013],[123,195,68,-6.615278028725249],[123,195,69,-6.627611621020716],[123,195,70,-6.654169881692157],[123,195,71,-6.693870105489014],[123,195,72,-6.741913850713867],[123,195,73,-6.7699809433308],[123,195,74,-6.77782725950442],[123,195,75,-6.770897198707169],[123,195,76,-6.77370381578923],[123,195,77,-6.7936630724318965],[123,195,78,-6.756687989372853],[123,195,79,-6.706923414904135],[123,196,64,-6.744940110994571],[123,196,65,-6.739177117949186],[123,196,66,-6.71637473424362],[123,196,67,-6.693402172978881],[123,196,68,-6.682368515693872],[123,196,69,-6.696600062215857],[123,196,70,-6.728313913790442],[123,196,71,-6.773278020223704],[123,196,72,-6.820344649042315],[123,196,73,-6.85094145364863],[123,196,74,-6.8577609645783735],[123,196,75,-6.852051718179442],[123,196,76,-6.85966839535955],[123,196,77,-6.871312886709598],[123,196,78,-6.833044316121562],[123,196,79,-6.781714082971672],[123,197,64,-6.792328416310968],[123,197,65,-6.7891845366485395],[123,197,66,-6.765393323275733],[123,197,67,-6.741057530393571],[123,197,68,-6.733452609606223],[123,197,69,-6.745618292854134],[123,197,70,-6.776358078531021],[123,197,71,-6.821525894390699],[123,197,72,-6.8680801826999875],[123,197,73,-6.898128223270669],[123,197,74,-6.905394432572276],[123,197,75,-6.899715501943795],[123,197,76,-6.923724540957356],[123,197,77,-6.929978345054021],[123,197,78,-6.89059382411841],[123,197,79,-6.844507966058619],[123,198,64,-6.843368766266068],[123,198,65,-6.839905563284937],[123,198,66,-6.814815028829717],[123,198,67,-6.790672126050949],[123,198,68,-6.779428801786889],[123,198,69,-6.792938607341446],[123,198,70,-6.826564292124632],[123,198,71,-6.869541223159825],[123,198,72,-6.918055248067818],[123,198,73,-6.9464150023399345],[123,198,74,-6.9535605711689845],[123,198,75,-6.948242805715505],[123,198,76,-6.9714170176831445],[123,198,77,-6.970236850957991],[123,198,78,-6.929932142870211],[123,198,79,-6.892866072741275],[123,199,64,-6.89338824864604],[123,199,65,-6.888391656853624],[123,199,66,-6.864159058841032],[123,199,67,-6.84145493827726],[123,199,68,-6.82710160987671],[123,199,69,-6.841583301478011],[123,199,70,-6.875502975460019],[123,199,71,-6.917991236707547],[123,199,72,-6.967251458648221],[123,199,73,-6.994480193871618],[123,199,74,-7.00248790837263],[123,199,75,-6.998326672902357],[123,199,76,-7.032602248525877],[123,199,77,-7.020952633557692],[123,199,78,-6.982273204487729],[123,199,79,-6.9430919248505205],[123,200,64,-6.945280471125505],[123,200,65,-6.939583615096769],[123,200,66,-6.914481428133213],[123,200,67,-6.889773812757953],[123,200,68,-6.8768500258765455],[123,200,69,-6.888773374012965],[123,200,70,-6.92184620090772],[123,200,71,-6.966408621944831],[123,200,72,-7.01381557821179],[123,200,73,-7.040504258240375],[123,200,74,-7.049240367120535],[123,200,75,-7.04367047997003],[123,200,76,-7.079848209621499],[123,200,77,-7.061952545243677],[123,200,78,-7.02259955869127],[123,200,79,-6.990710055026435],[123,201,64,-6.987755243928442],[123,201,65,-6.982886921932314],[123,201,66,-6.956390041114338],[123,201,67,-6.930394060775393],[123,201,68,-6.916532165568817],[123,201,69,-6.928179966495787],[123,201,70,-6.963927659699436],[123,201,71,-7.007592473115344],[123,201,72,-7.058198181124829],[123,201,73,-7.083976739504441],[123,201,74,-7.093992875120819],[123,201,75,-7.108142347287673],[123,201,76,-7.150667614845688],[123,201,77,-7.125637149387867],[123,201,78,-7.078449641491549],[123,201,79,-7.041161202864894],[123,202,64,-7.045556674783922],[123,202,65,-7.038306541774839],[123,202,66,-7.012783618341438],[123,202,67,-6.985270726434208],[123,202,68,-6.97290307676921],[123,202,69,-6.9822195603071195],[123,202,70,-7.017974684818016],[123,202,71,-7.061502822790668],[123,202,72,-7.111171934232066],[123,202,73,-7.13660294460015],[123,202,74,-7.146879836820959],[123,202,75,-7.150645237292129],[123,202,76,-7.190749299122413],[123,202,77,-7.166676373611906],[123,202,78,-7.1214341219018635],[123,202,79,-7.088145066373407],[123,203,64,-7.0962272153108135],[123,203,65,-7.087753484330789],[123,203,66,-7.063692198025026],[123,203,67,-7.037111090207612],[123,203,68,-7.02390092791536],[123,203,69,-7.031700282561521],[123,203,70,-7.067766126553869],[123,203,71,-7.111696331349688],[123,203,72,-7.160759165115905],[123,203,73,-7.185515014062782],[123,203,74,-7.196046999650992],[123,203,75,-7.209033401920368],[123,203,76,-7.2441978094612685],[123,203,77,-7.229074831916851],[123,203,78,-7.177285092324645],[123,203,79,-7.150625869953308],[123,204,64,-7.140674904986183],[123,204,65,-7.12814906436709],[123,204,66,-7.102715022794573],[123,204,67,-7.072777721172371],[123,204,68,-7.057446973585673],[123,204,69,-7.06679915683135],[123,204,70,-7.099515777577999],[123,204,71,-7.142211697187043],[123,204,72,-7.189722891024614],[123,204,73,-7.216118559012118],[123,204,74,-7.225504130143399],[123,204,75,-7.240401854409173],[123,204,76,-7.277270726790478],[123,204,77,-7.264156131361464],[123,204,78,-7.2215967218051595],[123,204,79,-7.200623391644558],[123,205,64,-7.199431355320153],[123,205,65,-7.189937064595387],[123,205,66,-7.162537983152201],[123,205,67,-7.133398994916469],[123,205,68,-7.119812149685323],[123,205,69,-7.130431166799929],[123,205,70,-7.1626960042696215],[123,205,71,-7.202522532928432],[123,205,72,-7.245337718417164],[123,205,73,-7.27191589440774],[123,205,74,-7.279422550353824],[123,205,75,-7.271040784366047],[123,205,76,-7.262237653853549],[123,205,77,-7.249340612830393],[123,205,78,-7.230351486515732],[123,205,79,-7.221528002435502],[123,206,64,-7.249843808492489],[123,206,65,-7.238598801024107],[123,206,66,-7.21209227177462],[123,206,67,-7.184376101113188],[123,206,68,-7.171750289012892],[123,206,69,-7.182148244554219],[123,206,70,-7.214444151466641],[123,206,71,-7.253428646842376],[123,206,72,-7.296581684596366],[123,206,73,-7.321921210988605],[123,206,74,-7.327182051736473],[123,206,75,-7.320721702004807],[123,206,76,-7.312875528276634],[123,206,77,-7.301439784746015],[123,206,78,-7.287740675382157],[123,206,79,-7.270166528800805],[123,207,64,-7.298541679217688],[123,207,65,-7.29107920738257],[123,207,66,-7.2644521807286395],[123,207,67,-7.23650676438899],[123,207,68,-7.225570377920308],[123,207,69,-7.236922261135329],[123,207,70,-7.268199461671244],[123,207,71,-7.307739082766901],[123,207,72,-7.349460143944716],[123,207,73,-7.370865110682493],[123,207,74,-7.376747250406311],[123,207,75,-7.371496300781064],[123,207,76,-7.362251777766828],[123,207,77,-7.34206151870742],[123,207,78,-7.330175176312166],[123,207,79,-7.318581222336413],[123,208,64,-7.345545061521007],[123,208,65,-7.339264055026943],[123,208,66,-7.314161180918614],[123,208,67,-7.288042455137288],[123,208,68,-7.277735295411514],[123,208,69,-7.288856373240656],[123,208,70,-7.318235048122767],[123,208,71,-7.35726986867991],[123,208,72,-7.400671666964527],[123,208,73,-7.423301487809157],[123,208,74,-7.4287298944283275],[123,208,75,-7.422663811831378],[123,208,76,-7.401288651590526],[123,208,77,-7.377902558637647],[123,208,78,-7.370635361112634],[123,208,79,-7.381205430964412],[123,209,64,-7.39195957957684],[123,209,65,-7.387497960349743],[123,209,66,-7.36386439268636],[123,209,67,-7.339044340043127],[123,209,68,-7.330715074877612],[123,209,69,-7.338820461730585],[123,209,70,-7.367886245371325],[123,209,71,-7.406024593400177],[123,209,72,-7.450936874793502],[123,209,73,-7.4731745201201],[123,209,74,-7.479566072471227],[123,209,75,-7.47247890500217],[123,209,76,-7.4513840062270456],[123,209,77,-7.4337334357856095],[123,209,78,-7.4242097153158015],[123,209,79,-7.430775306919645],[123,210,64,-7.443816094129453],[123,210,65,-7.440274463469458],[123,210,66,-7.417925515465635],[123,210,67,-7.393522644312311],[123,210,68,-7.384324774088428],[123,210,69,-7.394995620509093],[123,210,70,-7.423451304792766],[123,210,71,-7.460205285196498],[123,210,72,-7.505543010160929],[123,210,73,-7.528934235587858],[123,210,74,-7.535033305305576],[123,210,75,-7.528604550526825],[123,210,76,-7.506764175333785],[123,210,77,-7.484400910186189],[123,210,78,-7.480303113096588],[123,210,79,-7.489389897567422],[123,211,64,-7.491391583629672],[123,211,65,-7.488824777692778],[123,211,66,-7.470306610328798],[123,211,67,-7.442563341707664],[123,211,68,-7.432563821386591],[123,211,69,-7.444348128043853],[123,211,70,-7.474349458602613],[123,211,71,-7.510003495218833],[123,211,72,-7.555006089700384],[123,211,73,-7.579645583882984],[123,211,74,-7.584433549152488],[123,211,75,-7.582255462648884],[123,211,76,-7.560429861981387],[123,211,77,-7.544406564268608],[123,211,78,-7.545560560085283],[123,211,79,-7.550867173045858],[123,212,64,-7.531137403963171],[123,212,65,-7.531748593688461],[123,212,66,-7.514947881026899],[123,212,67,-7.494191613166283],[123,212,68,-7.485315384500837],[123,212,69,-7.4994384653665005],[123,212,70,-7.532674798788725],[123,212,71,-7.571211978380039],[123,212,72,-7.614607632543647],[123,212,73,-7.639016937693939],[123,212,74,-7.6451676668160635],[123,212,75,-7.64271562757045],[123,212,76,-7.618257348084985],[123,212,77,-7.606660174713807],[123,212,78,-7.604237489026793],[123,212,79,-7.611678249762952],[123,213,64,-7.581170930881907],[123,213,65,-7.5804100700658],[123,213,66,-7.5643006708939104],[123,213,67,-7.545759134528398],[123,213,68,-7.534618110309748],[123,213,69,-7.550675361838789],[123,213,70,-7.580555390160513],[123,213,71,-7.619754560819488],[123,213,72,-7.661627451641978],[123,213,73,-7.686154764949774],[123,213,74,-7.692949252744131],[123,213,75,-7.687391120656097],[123,213,76,-7.696883136164228],[123,213,77,-7.7077495099293225],[123,213,78,-7.705314130094014],[123,213,79,-7.669362812456412],[123,214,64,-7.629533203461106],[123,214,65,-7.626888831573566],[123,214,66,-7.611700949090748],[123,214,67,-7.595208585139791],[123,214,68,-7.58828751440801],[123,214,69,-7.603896413370299],[123,214,70,-7.633076571263432],[123,214,71,-7.670071586884318],[123,214,72,-7.714734587707723],[123,214,73,-7.740062506843295],[123,214,74,-7.746422612200635],[123,214,75,-7.740683234059402],[123,214,76,-7.76465158596689],[123,214,77,-7.766950077038008],[123,214,78,-7.7627220684224385],[123,214,79,-7.718008271861197],[123,215,64,-7.679542621887198],[123,215,65,-7.678579395951409],[123,215,66,-7.663420506168721],[123,215,67,-7.646232313514102],[123,215,68,-7.640953076435057],[123,215,69,-7.656515358395046],[123,215,70,-7.685989754658012],[123,215,71,-7.722991471365257],[123,215,72,-7.76718818779605],[123,215,73,-7.793775309685613],[123,215,74,-7.800906401068663],[123,215,75,-7.803654524305862],[123,215,76,-7.818681034627658],[123,215,77,-7.813313978140925],[123,215,78,-7.811176447603243],[123,215,79,-7.762966953492316],[123,216,64,-7.728636029234607],[123,216,65,-7.726796563680117],[123,216,66,-7.711880959169784],[123,216,67,-7.694054731262406],[123,216,68,-7.6885567372213135],[123,216,69,-7.706597376529566],[123,216,70,-7.737031796071154],[123,216,71,-7.772334961936954],[123,216,72,-7.817228209673131],[123,216,73,-7.842450843149513],[123,216,74,-7.85107280422908],[123,216,75,-7.895492908810303],[123,216,76,-7.913626182639777],[123,216,77,-7.890337043028313],[123,216,78,-7.870878015139739],[123,216,79,-7.811353554582374],[123,217,64,-7.774499684619271],[123,217,65,-7.775485253194602],[123,217,66,-7.759047434268063],[123,217,67,-7.739716552435219],[123,217,68,-7.733644052497431],[123,217,69,-7.751902428358963],[123,217,70,-7.784149844672974],[123,217,71,-7.824768512945399],[123,217,72,-7.871529215200821],[123,217,73,-7.896350063479349],[123,217,74,-7.912082302150969],[123,217,75,-7.9586139296519685],[123,217,76,-7.978895210497363],[123,217,77,-7.951618793452809],[123,217,78,-7.91592497769175],[123,217,79,-7.859581072553565],[123,218,64,-7.828464126808706],[123,218,65,-7.829616598893583],[123,218,66,-7.8130803701028375],[123,218,67,-7.794123339408504],[123,218,68,-7.7891848801553625],[123,218,69,-7.80349341743649],[123,218,70,-7.837947209601443],[123,218,71,-7.8790262464477445],[123,218,72,-7.926365553595666],[123,218,73,-7.952001628904011],[123,218,74,-7.959015145694767],[123,218,75,-8.002493454388684],[123,218,76,-8.030920032329675],[123,218,77,-8.00537948158353],[123,218,78,-7.968610342412563],[123,218,79,-7.913854801907175],[123,219,64,-7.880115856105001],[123,219,65,-7.878497162569915],[123,219,66,-7.863050737908642],[123,219,67,-7.844648086035269],[123,219,68,-7.837996614698701],[123,219,69,-7.851337872281325],[123,219,70,-7.885375226766327],[123,219,71,-7.9282492318477376],[123,219,72,-7.975571858998065],[123,219,73,-8.001208779486857],[123,219,74,-8.016710819505201],[123,219,75,-8.062800468201894],[123,219,76,-8.088486401158217],[123,219,77,-8.067341354768859],[123,219,78,-8.028480351237162],[123,219,79,-7.971904674949748],[123,220,64,-7.925344832105006],[123,220,65,-7.923617085193196],[123,220,66,-7.905820984564697],[123,220,67,-7.883842495863651],[123,220,68,-7.875886337848367],[123,220,69,-7.888729607775953],[123,220,70,-7.920648176407093],[123,220,71,-7.959854080857715],[123,220,72,-8.010016087690369],[123,220,73,-8.033809190585854],[123,220,74,-8.063999765342006],[123,220,75,-8.110093842729048],[123,220,76,-8.130907600772495],[123,220,77,-8.115807509475857],[123,220,78,-8.079413720338886],[123,220,79,-8.02395146222434],[123,221,64,-7.975897830421001],[123,221,65,-7.974880943544618],[123,221,66,-7.957654076192486],[123,221,67,-7.9359071874255855],[123,221,68,-7.926196695457495],[123,221,69,-7.938025473357273],[123,221,70,-7.969603691616499],[123,221,71,-8.009816128197999],[123,221,72,-8.060022107346756],[123,221,73,-8.087863932365597],[123,221,74,-8.179671150597368],[123,221,75,-8.21159710091361],[123,221,76,-8.212676925988061],[123,221,77,-8.171070686701867],[123,221,78,-8.127582826727236],[123,221,79,-8.073180781533384],[123,222,64,-8.024419831497317],[123,222,65,-8.024673650081406],[123,222,66,-8.007304201340835],[123,222,67,-7.9856188267602874],[123,222,68,-7.97518768289845],[123,222,69,-7.987572629855113],[123,222,70,-8.016947669603992],[123,222,71,-8.058396581501137],[123,222,72,-8.110721905478028],[123,222,73,-8.13910284390485],[123,222,74,-8.233434411075867],[123,222,75,-8.25926344894024],[123,222,76,-8.251167812377593],[123,222,77,-8.209213258272833],[123,222,78,-8.165365826157016],[123,222,79,-8.115026689333407],[123,223,64,-8.080320400596445],[123,223,65,-8.078234578882801],[123,223,66,-8.06026361981039],[123,223,67,-8.037846463236038],[123,223,68,-8.026877006695402],[123,223,69,-8.037771006392562],[123,223,70,-8.068537607266636],[123,223,71,-8.110682464663908],[123,223,72,-8.163617016903252],[123,223,73,-8.191628882445896],[123,223,74,-8.251470596600942],[123,223,75,-8.277469341864226],[123,223,76,-8.284429506614826],[123,223,77,-8.25592217825367],[123,223,78,-8.211240148538204],[123,223,79,-8.161211111277655],[123,224,64,-8.132820946504976],[123,224,65,-8.127892754665268],[123,224,66,-8.109690327602289],[123,224,67,-8.085448348098542],[123,224,68,-8.077153481085753],[123,224,69,-8.088158954728861],[123,224,70,-8.116768378424146],[123,224,71,-8.160860354916476],[123,224,72,-8.214706405957182],[123,224,73,-8.243058661574034],[123,224,74,-8.303366401317477],[123,224,75,-8.331558344603744],[123,224,76,-8.336389999796218],[123,224,77,-8.305372286947854],[123,224,78,-8.26410066007795],[123,224,79,-8.212275666670891],[123,225,64,-8.189853242448923],[123,225,65,-8.18166723036765],[123,225,66,-8.156896234123376],[123,225,67,-8.127549941720185],[123,225,68,-8.117944289707326],[123,225,69,-8.128482114446662],[123,225,70,-8.157488611314088],[123,225,71,-8.201925571111296],[123,225,72,-8.25545279112692],[123,225,73,-8.283390899490115],[123,225,74,-8.346761406217817],[123,225,75,-8.377322357329959],[123,225,76,-8.387632709694888],[123,225,77,-8.355142320690502],[123,225,78,-8.314472828566203],[123,225,79,-8.262109404178673],[123,226,64,-8.244770348879099],[123,226,65,-8.23841384306232],[123,226,66,-8.213890382568154],[123,226,67,-8.18367752166492],[123,226,68,-8.169945352321397],[123,226,69,-8.18192138890954],[123,226,70,-8.211722179500903],[123,226,71,-8.25674919909673],[123,226,72,-8.306896109532655],[123,226,73,-8.334853538591318],[123,226,74,-8.3825401561382],[123,226,75,-8.41312730482785],[123,226,76,-8.431622933671969],[123,226,77,-8.404952364123247],[123,226,78,-8.36251437223008],[123,226,79,-8.310268578426744],[123,227,64,-8.296274499804737],[123,227,65,-8.290973402788918],[123,227,66,-8.265272921428878],[123,227,67,-8.234379006200559],[123,227,68,-8.220568496310351],[123,227,69,-8.233359281282034],[123,227,70,-8.263360824404593],[123,227,71,-8.307456522149492],[123,227,72,-8.356321319396825],[123,227,73,-8.381382254340574],[123,227,74,-8.435138806568382],[123,227,75,-8.467590734634932],[123,227,76,-8.49007287573511],[123,227,77,-8.462436072214745],[123,227,78,-8.420306839282611],[123,227,79,-8.367723856331509],[123,228,64,-8.33530227544356],[123,228,65,-8.331080963045098],[123,228,66,-8.305938938258995],[123,228,67,-8.275319304969774],[123,228,68,-8.261063551138168],[123,228,69,-8.270385480074697],[123,228,70,-8.302466217802927],[123,228,71,-8.34422848912683],[123,228,72,-8.394607978922103],[123,228,73,-8.419212024843144],[123,228,74,-8.482300521865204],[123,228,75,-8.51441492056714],[123,228,76,-8.537614838900625],[123,228,77,-8.512194235611299],[123,228,78,-8.469138037178059],[123,228,79,-8.419318343231184],[123,229,64,-8.376197032276108],[123,229,65,-8.3761815529465],[123,229,66,-8.35791306745548],[123,229,67,-8.332567564867803],[123,229,68,-8.322218816089633],[123,229,69,-8.330525704201811],[123,229,70,-8.362147063780819],[123,229,71,-8.40475671747784],[123,229,72,-8.455281049394884],[123,229,73,-8.511698599926453],[123,229,74,-8.597719171856797],[123,229,75,-8.627667845748999],[123,229,76,-8.605169867956143],[123,229,77,-8.562218280645254],[123,229,78,-8.519161595308473],[123,229,79,-8.470304630674372],[123,230,64,-8.423601744873197],[123,230,65,-8.423432426133804],[123,230,66,-8.404836955532133],[123,230,67,-8.382124106540461],[123,230,68,-8.374660353418333],[123,230,69,-8.37927850055145],[123,230,70,-8.410961860987308],[123,230,71,-8.454944001118582],[123,230,72,-8.503041164025225],[123,230,73,-8.557420178148869],[123,230,74,-8.639343605783438],[123,230,75,-8.66867211797275],[123,230,76,-8.647232885436168],[123,230,77,-8.607285138123729],[123,230,78,-8.561106865439141],[123,230,79,-8.51379920645088],[123,231,64,-8.476907333190809],[123,231,65,-8.475702824452393],[123,231,66,-8.458165732750878],[123,231,67,-8.436323877295049],[123,231,68,-8.42679658614429],[123,231,69,-8.434202738543462],[123,231,70,-8.462723516183678],[123,231,71,-8.507981954083418],[123,231,72,-8.557210335712218],[123,231,73,-8.625484121693976],[123,231,74,-8.681636956021917],[123,231,75,-8.695720706676154],[123,231,76,-8.694149053912332],[123,231,77,-8.656807621607118],[123,231,78,-8.610919958648461],[123,231,79,-8.562641522947693],[123,232,64,-8.527072977081334],[123,232,65,-8.527160913109412],[123,232,66,-8.509104321740413],[123,232,67,-8.486144541802098],[123,232,68,-8.475202509228481],[123,232,69,-8.484050257360273],[123,232,70,-8.513460795020837],[123,232,71,-8.557451012529715],[123,232,72,-8.608271829542968],[123,232,73,-8.677423609732667],[123,232,74,-8.723973103061024],[123,232,75,-8.735753590740513],[123,232,76,-8.744626230175385],[123,232,77,-8.706422452876213],[123,232,78,-8.662025805893116],[123,232,79,-8.615442554301676],[123,233,64,-8.57679296086943],[123,233,65,-8.579470987302816],[123,233,66,-8.559878949409956],[123,233,67,-8.536098880679344],[123,233,68,-8.521906198887391],[123,233,69,-8.532845456391229],[123,233,70,-8.565039403811653],[123,233,71,-8.609980486665659],[123,233,72,-8.657651791091352],[123,233,73,-8.73241109209716],[123,233,74,-8.769893920957646],[123,233,75,-8.777907345976995],[123,233,76,-8.798459024994706],[123,233,77,-8.761801848062136],[123,233,78,-8.717799500989429],[123,233,79,-8.670801786221288],[123,234,64,-8.632436250337214],[123,234,65,-8.633551619155654],[123,234,66,-8.614172622630184],[123,234,67,-8.588145911189265],[123,234,68,-8.571840900971614],[123,234,69,-8.585147680341002],[123,234,70,-8.617984611666978],[123,234,71,-8.662300414232362],[123,234,72,-8.710620649002442],[123,234,73,-8.772352954173172],[123,234,74,-8.798035423535838],[123,234,75,-8.817095586785317],[123,234,76,-8.859558498002063],[123,234,77,-8.824862192700659],[123,234,78,-8.780695403801902],[123,234,79,-8.72984203464354],[123,235,64,-8.679871597207601],[123,235,65,-8.681979217866415],[123,235,66,-8.66326743544585],[123,235,67,-8.63712207961376],[123,235,68,-8.623605384132507],[123,235,69,-8.63534157495798],[123,235,70,-8.666007059744656],[123,235,71,-8.710219026342788],[123,235,72,-8.758173186412344],[123,235,73,-8.783593779982555],[123,235,74,-8.784232797031985],[123,235,75,-8.76933860847552],[123,235,76,-8.813914333659257],[123,235,77,-8.882730216556745],[123,235,78,-8.839528709139701],[123,235,79,-8.789344504095077],[123,236,64,-8.732954109881858],[123,236,65,-8.737008714243457],[123,236,66,-8.72388318941316],[123,236,67,-8.701136653771137],[123,236,68,-8.691363177374633],[123,236,69,-8.7043643150406],[123,236,70,-8.737504563628402],[123,236,71,-8.779787286919026],[123,236,72,-8.827695155882466],[123,236,73,-8.854223381091675],[123,236,74,-8.854454304809416],[123,236,75,-8.839244301329021],[123,236,76,-8.880033607936378],[123,236,77,-8.94088654264065],[123,236,78,-8.89803518613899],[123,236,79,-8.847722709297388],[123,237,64,-8.779978152280476],[123,237,65,-8.783715658568868],[123,237,66,-8.770105687679557],[123,237,67,-8.745456907470427],[123,237,68,-8.73706339246393],[123,237,69,-8.750546694572837],[123,237,70,-8.78297743839614],[123,237,71,-8.826704016349366],[123,237,72,-8.875934313592852],[123,237,73,-8.902907250211959],[123,237,74,-8.903946342628005],[123,237,75,-8.928760228602703],[123,237,76,-8.97134219701228],[123,237,77,-8.991457249816689],[123,237,78,-8.949037754223362],[123,237,79,-8.898951268884877],[123,238,64,-8.830602239302968],[123,238,65,-8.835592117356004],[123,238,66,-8.82123210525149],[123,238,67,-8.79481363270003],[123,238,68,-8.785280446658902],[123,238,69,-8.799097342475031],[123,238,70,-8.831124087637273],[123,238,71,-8.875184393288327],[123,238,72,-8.924999937327517],[123,238,73,-8.951179499294334],[123,238,74,-8.959698734512276],[123,238,75,-9.010327400379051],[123,238,76,-9.058148298455986],[123,238,77,-9.036132812841831],[123,238,78,-8.997047114068614],[123,238,79,-8.946510967008365],[123,239,64,-8.885968599080332],[123,239,65,-8.890635892652192],[123,239,66,-8.874175729198022],[123,239,67,-8.84968478865613],[123,239,68,-8.83810137020347],[123,239,69,-8.850934155713649],[123,239,70,-8.88291014656098],[123,239,71,-8.927707831335065],[123,239,72,-8.976319553887087],[123,239,73,-9.001275993573932],[123,239,74,-9.00288264707453],[123,239,75,-9.052811077135022],[123,239,76,-9.09755682907122],[123,239,77,-9.081975756135652],[123,239,78,-9.042297948934385],[123,239,79,-8.990950579913614],[123,240,64,-8.932949868492114],[123,240,65,-8.937975201615467],[123,240,66,-8.920046922522522],[123,240,67,-8.89640175356054],[123,240,68,-8.888167757748164],[123,240,69,-8.898874764950307],[123,240,70,-8.929997334809945],[123,240,71,-8.97639228923203],[123,240,72,-9.025224383921737],[123,240,73,-9.050039824057375],[123,240,74,-9.052989197814764],[123,240,75,-9.100409105997487],[123,240,76,-9.13542714797579],[123,240,77,-9.128782387973201],[123,240,78,-9.088527752713826],[123,240,79,-9.037560407713539],[123,241,64,-8.984695689205473],[123,241,65,-8.985340997600606],[123,241,66,-8.967721783164661],[123,241,67,-8.94471990084327],[123,241,68,-8.938556249988292],[123,241,69,-8.94996975774717],[123,241,70,-8.982012992092168],[123,241,71,-9.023245291195707],[123,241,72,-9.071158564959935],[123,241,73,-9.09655427809235],[123,241,74,-9.097361325109263],[123,241,75,-9.083962182022164],[123,241,76,-9.059468354815456],[123,241,77,-9.021271480845021],[123,241,78,-8.996763253925225],[123,241,79,-8.997407950523801],[123,242,64,-9.037369131159364],[123,242,65,-9.036064491657898],[123,242,66,-9.018047081822946],[123,242,67,-8.995914839203465],[123,242,68,-8.988101491207292],[123,242,69,-9.000791342778339],[123,242,70,-9.031220978939578],[123,242,71,-9.072473501105375],[123,242,72,-9.120254368288153],[123,242,73,-9.14649948177286],[123,242,74,-9.147932916556025],[123,242,75,-9.135427155792408],[123,242,76,-9.112575627814826],[123,242,77,-9.071196459688998],[123,242,78,-9.03303723045501],[123,242,79,-9.040443755494277],[123,243,64,-9.083756297491972],[123,243,65,-9.083388315858377],[123,243,66,-9.063818315923529],[123,243,67,-9.040448221887946],[123,243,68,-9.034949254472007],[123,243,69,-9.047556262889913],[123,243,70,-9.077454104601927],[123,243,71,-9.117193826640683],[123,243,72,-9.16978779442976],[123,243,73,-9.193808706756627],[123,243,74,-9.194552715303265],[123,243,75,-9.18494437533895],[123,243,76,-9.159741127661198],[123,243,77,-9.115978140161792],[123,243,78,-9.084392346793084],[123,243,79,-9.094868083555058],[123,244,64,-9.1153792463149],[123,244,65,-9.108786634146185],[123,244,66,-9.081351629664661],[123,244,67,-9.04918803968593],[123,244,68,-9.038708219775554],[123,244,69,-9.047172564656352],[123,244,70,-9.071911273215045],[123,244,71,-9.11065717905715],[123,244,72,-9.160639689554342],[123,244,73,-9.185640866977996],[123,244,74,-9.186922327946348],[123,244,75,-9.17687432605553],[123,244,76,-9.150500909825581],[123,244,77,-9.108011891575234],[123,244,78,-9.078287177394316],[123,244,79,-9.100640904959025],[123,245,64,-9.161372003900079],[123,245,65,-9.153947991495082],[123,245,66,-9.126510768721827],[123,245,67,-9.095513219665666],[123,245,68,-9.08091263165659],[123,245,69,-9.088771177685867],[123,245,70,-9.114604952283175],[123,245,71,-9.156009754150672],[123,245,72,-9.205984066969398],[123,245,73,-9.230082498212802],[123,245,74,-9.232804979080946],[123,245,75,-9.222835911264665],[123,245,76,-9.194333902212001],[123,245,77,-9.15590058977792],[123,245,78,-9.117098618892198],[123,245,79,-9.142885451460682],[123,246,64,-9.208644436767193],[123,246,65,-9.199556959529861],[123,246,66,-9.17185198370491],[123,246,67,-9.139485487412827],[123,246,68,-9.122535003116742],[123,246,69,-9.131375647753075],[123,246,70,-9.160727363957122],[123,246,71,-9.201716676773527],[123,246,72,-9.249989197323016],[123,246,73,-9.275986849271547],[123,246,74,-9.278561665600897],[123,246,75,-9.268387918760443],[123,246,76,-9.240639843157602],[123,246,77,-9.2040067167969],[123,246,78,-9.156279506729554],[123,246,79,-9.165747179304983],[123,247,64,-9.26132048972572],[123,247,65,-9.249860567165642],[123,247,66,-9.220220082954269],[123,247,67,-9.186815630333193],[123,247,68,-9.16904937490051],[123,247,69,-9.180055095800267],[123,247,70,-9.210112682555721],[123,247,71,-9.250467735749282],[123,247,72,-9.29731580752935],[123,247,73,-9.322693143882917],[123,247,74,-9.322755317158052],[123,247,75,-9.314570251072475],[123,247,76,-9.287440125794804],[123,247,77,-9.250148944386641],[123,247,78,-9.202338319193],[123,247,79,-9.180474369158416],[123,248,64,-9.303647856090503],[123,248,65,-9.292374026263241],[123,248,66,-9.260716741502183],[123,248,67,-9.227850326859208],[123,248,68,-9.213505878351889],[123,248,69,-9.225792913208394],[123,248,70,-9.256524563623168],[123,248,71,-9.294757282237049],[123,248,72,-9.340505631939612],[123,248,73,-9.367325323086982],[123,248,74,-9.368932994100861],[123,248,75,-9.361557078914823],[123,248,76,-9.337294614773526],[123,248,77,-9.298230538597078],[123,248,78,-9.249713971365619],[123,248,79,-9.223474010167836],[123,249,64,-9.355178443966262],[123,249,65,-9.337953051572162],[123,249,66,-9.304253834127776],[123,249,67,-9.268357864171278],[123,249,68,-9.254016463407568],[123,249,69,-9.265451555652541],[123,249,70,-9.299292876882753],[123,249,71,-9.33880042548773],[123,249,72,-9.385123385709491],[123,249,73,-9.411608673268516],[123,249,74,-9.41199246755868],[123,249,75,-9.403026844469863],[123,249,76,-9.381175650072121],[123,249,77,-9.34449288835389],[123,249,78,-9.297878494408213],[123,249,79,-9.324164087882142],[123,250,64,-9.404098374679466],[123,250,65,-9.387818802379574],[123,250,66,-9.35282302514325],[123,250,67,-9.319075803302027],[123,250,68,-9.315741203014213],[123,250,69,-9.35421884289179],[123,250,70,-9.407740526524755],[123,250,71,-9.444851561902373],[123,250,72,-9.488198808208656],[123,250,73,-9.484965383361947],[123,250,74,-9.476047009068868],[123,250,75,-9.475611556237476],[123,250,76,-9.460078650987045],[123,250,77,-9.42441476298204],[123,250,78,-9.376583282398306],[123,250,79,-9.342030770443841],[123,251,64,-9.450403827143957],[123,251,65,-9.433071843695652],[123,251,66,-9.398679083222845],[123,251,67,-9.36357864507304],[123,251,68,-9.371301796142765],[123,251,69,-9.41712183349043],[123,251,70,-9.465623714692656],[123,251,71,-9.506611347404188],[123,251,72,-9.537988162935198],[123,251,73,-9.534960175570939],[123,251,74,-9.521409455495098],[123,251,75,-9.511553765187807],[123,251,76,-9.5065840358994],[123,251,77,-9.46527594397814],[123,251,78,-9.406302835074216],[123,251,79,-9.379382553187453],[123,252,64,-9.489693341598194],[123,252,65,-9.473355741323344],[123,252,66,-9.440948056012402],[123,252,67,-9.40431910855646],[123,252,68,-9.412895349257578],[123,252,69,-9.464432478499624],[123,252,70,-9.50998461458712],[123,252,71,-9.553825855823955],[123,252,72,-9.593215148747738],[123,252,73,-9.586548729933503],[123,252,74,-9.557057774358192],[123,252,75,-9.559146797624841],[123,252,76,-9.55040190852703],[123,252,77,-9.513679186735468],[123,252,78,-9.452768571987146],[123,252,79,-9.432387559545809],[123,253,64,-9.523575046251896],[123,253,65,-9.514013181939271],[123,253,66,-9.486515427137965],[123,253,67,-9.453290218851068],[123,253,68,-9.43822977960453],[123,253,69,-9.471255222042421],[123,253,70,-9.509882952447708],[123,253,71,-9.556972123765016],[123,253,72,-9.604765407159686],[123,253,73,-9.61644851147894],[123,253,74,-9.618415327006893],[123,253,75,-9.64874308967721],[123,253,76,-9.631470543030764],[123,253,77,-9.602384661626022],[123,253,78,-9.556976767880592],[123,253,79,-9.53334860291673],[123,254,64,-9.486991805246657],[123,254,65,-9.485449580714711],[123,254,66,-9.464203513013326],[123,254,67,-9.440984009369348],[123,254,68,-9.432054237142093],[123,254,69,-9.466513998551989],[123,254,70,-9.520136317196918],[123,254,71,-9.569996176140604],[123,254,72,-9.61430657878666],[123,254,73,-9.646456133686716],[123,254,74,-9.659369285537858],[123,254,75,-9.689861242248272],[123,254,76,-9.679961008022863],[123,254,77,-9.665278461780229],[123,254,78,-9.63041431805342],[123,254,79,-9.609415658931706],[123,255,64,-9.535308137571857],[123,255,65,-9.53240116689418],[123,255,66,-9.510832871361764],[123,255,67,-9.48803634317202],[123,255,68,-9.477746481021036],[123,255,69,-9.498203820886152],[123,255,70,-9.550472931208526],[123,255,71,-9.61155756133547],[123,255,72,-9.657773639613794],[123,255,73,-9.695549164320207],[123,255,74,-9.706368235757619],[123,255,75,-9.72212268509008],[123,255,76,-9.719488416866355],[123,255,77,-9.716202968709512],[123,255,78,-9.679965937648571],[123,255,79,-9.661780291203183],[123,256,64,-9.581160690959344],[123,256,65,-9.580253722635202],[123,256,66,-9.558553937357209],[123,256,67,-9.53646082340791],[123,256,68,-9.527234326608147],[123,256,69,-9.547452940477218],[123,256,70,-9.591574450736786],[123,256,71,-9.661379700867842],[123,256,72,-9.707185545052429],[123,256,73,-9.745985534596672],[123,256,74,-9.7565941540634],[123,256,75,-9.772817233588059],[123,256,76,-9.768379073867859],[123,256,77,-9.772220998409484],[123,256,78,-9.739479219303186],[123,256,79,-9.709199004777513],[123,257,64,-9.629970089088143],[123,257,65,-9.630943438578527],[123,257,66,-9.606371029959053],[123,257,67,-9.583351523877408],[123,257,68,-9.57664948931778],[123,257,69,-9.5964838176145],[123,257,70,-9.656916514552112],[123,257,71,-9.727229827088566],[123,257,72,-9.759222598389972],[123,257,73,-9.795464164590326],[123,257,74,-9.825597928276887],[123,257,75,-9.855778791349694],[123,257,76,-9.859044913250957],[123,257,77,-9.858584497351924],[123,257,78,-9.828737528739957],[123,257,79,-9.800118617619574],[123,258,64,-9.681861969908596],[123,258,65,-9.684740421177993],[123,258,66,-9.659672656162439],[123,258,67,-9.635569191940059],[123,258,68,-9.62727280984551],[123,258,69,-9.646723296077537],[123,258,70,-9.68950540937235],[123,258,71,-9.74718485704182],[123,258,72,-9.80997473882528],[123,258,73,-9.847614372688874],[123,258,74,-9.859359277143804],[123,258,75,-9.89617353928199],[123,258,76,-9.907325319072221],[123,258,77,-9.901172500426425],[123,258,78,-9.886626473374697],[123,258,79,-9.874317993303178],[123,259,64,-9.728152240758869],[123,259,65,-9.732024110997724],[123,259,66,-9.708603649422711],[123,259,67,-9.687388612691842],[123,259,68,-9.677882147779062],[123,259,69,-9.696420241291424],[123,259,70,-9.736833385549756],[123,259,71,-9.792658975695614],[123,259,72,-9.855551475797762],[123,259,73,-9.895223866484104],[123,259,74,-9.908813656043119],[123,259,75,-9.922232330260655],[123,259,76,-9.930860979881514],[123,259,77,-9.92260013386177],[123,259,78,-9.9068978245008],[123,259,79,-9.922167264496434],[123,260,64,-9.901505081412212],[123,260,65,-9.908939202753107],[123,260,66,-9.89178069670772],[123,260,67,-9.871894256339148],[123,260,68,-9.864562669892283],[123,260,69,-9.886931246908247],[123,260,70,-9.929206353958012],[123,260,71,-9.983640662995839],[123,260,72,-10.049261975832586],[123,260,73,-10.089932262940797],[123,260,74,-10.102224584904818],[123,260,75,-10.1105664219553],[123,260,76,-10.099659358954266],[123,260,77,-10.078150947018557],[123,260,78,-10.044119447357113],[123,260,79,-10.00636734583961],[123,261,64,-9.957460061428518],[123,261,65,-9.961370793863152],[123,261,66,-9.942041627498512],[123,261,67,-9.920778117282541],[123,261,68,-9.915366314969628],[123,261,69,-9.934989625814731],[123,261,70,-9.976742799128145],[123,261,71,-10.030171613928026],[123,261,72,-10.09681737902652],[123,261,73,-10.13610676581779],[123,261,74,-10.15030488480167],[123,261,75,-10.15521971405572],[123,261,76,-10.14344253211614],[123,261,77,-10.124223531810344],[123,261,78,-10.095668758746028],[123,261,79,-10.05519101563422],[123,262,64,-10.012199951378243],[123,262,65,-10.015840232645187],[123,262,66,-9.994988610101107],[123,262,67,-9.97194332484053],[123,262,68,-9.966217375168595],[123,262,69,-9.990557872033733],[123,262,70,-10.027913271295507],[123,262,71,-10.082439927099788],[123,262,72,-10.150225006024101],[123,262,73,-10.189529856697055],[123,262,74,-10.201648594716156],[123,262,75,-10.210317603652925],[123,262,76,-10.200532663220164],[123,262,77,-10.180278037961946],[123,262,78,-10.165521584793183],[123,262,79,-10.124185891442858],[123,263,64,-10.058090925402858],[123,263,65,-10.061226139279949],[123,263,66,-10.042066272049711],[123,263,67,-10.019744376117343],[123,263,68,-10.011983083481233],[123,263,69,-10.032207042546688],[123,263,70,-10.075807971841037],[123,263,71,-10.131413910276862],[123,263,72,-10.200187931469017],[123,263,73,-10.23898016565979],[123,263,74,-10.252199056564193],[123,263,75,-10.258784430731946],[123,263,76,-10.244654048574617],[123,263,77,-10.223804091675401],[123,263,78,-10.210907539223442],[123,263,79,-10.168159658439114],[123,264,64,-10.102207026510705],[123,264,65,-10.107568801874127],[123,264,66,-10.087758022107487],[123,264,67,-10.068276902349929],[123,264,68,-10.059749650825283],[123,264,69,-10.080950726290572],[123,264,70,-10.124660360478984],[123,264,71,-10.179569311160304],[123,264,72,-10.2479212870066],[123,264,73,-10.289509159609842],[123,264,74,-10.301514422144114],[123,264,75,-10.305261781508728],[123,264,76,-10.293676806806237],[123,264,77,-10.27224135599526],[123,264,78,-10.25924601791779],[123,264,79,-10.217354290710512],[123,265,64,-10.140612172339413],[123,265,65,-10.149759931897535],[123,265,66,-10.134197067736],[123,265,67,-10.11757510962985],[123,265,68,-10.109033085524588],[123,265,69,-10.129300855881748],[123,265,70,-10.173768343619834],[123,265,71,-10.230608080807832],[123,265,72,-10.297830194743021],[123,265,73,-10.374308101422912],[123,265,74,-10.421844017634228],[123,265,75,-10.425847838277942],[123,265,76,-10.414795314274887],[123,265,77,-10.382539131834065],[123,265,78,-10.342467587905691],[123,265,79,-10.288678955615216],[123,266,64,-10.192047081699853],[123,266,65,-10.199652937100792],[123,266,66,-10.18777723109531],[123,266,67,-10.168855230992824],[123,266,68,-10.158775220259871],[123,266,69,-10.179280514064175],[123,266,70,-10.22579581428544],[123,266,71,-10.282130460300891],[123,266,72,-10.348016066026677],[123,266,73,-10.409838533900686],[123,266,74,-10.46215951630539],[123,266,75,-10.4680623201567],[123,266,76,-10.453409278722663],[123,266,77,-10.42147102206184],[123,266,78,-10.380893744895708],[123,266,79,-10.323765022392669],[123,267,64,-10.236760006003987],[123,267,65,-10.246006698272875],[123,267,66,-10.234452549131191],[123,267,67,-10.214797622508101],[123,267,68,-10.204886526291096],[123,267,69,-10.226458607381883],[123,267,70,-10.27461489721743],[123,267,71,-10.330585041102522],[123,267,72,-10.395206409884763],[123,267,73,-10.460293644624947],[123,267,74,-10.521972237657236],[123,267,75,-10.527963097460184],[123,267,76,-10.51225695527489],[123,267,77,-10.476314675412906],[123,267,78,-10.434592835813215],[123,267,79,-10.377841315577305],[123,268,64,-10.278669460638708],[123,268,65,-10.289676694245255],[123,268,66,-10.27724750742886],[123,268,67,-10.257775013424702],[123,268,68,-10.249798252165135],[123,268,69,-10.273601202099591],[123,268,70,-10.320850839555527],[123,268,71,-10.374857404242844],[123,268,72,-10.456506822908649],[123,268,73,-10.530907769842491],[123,268,74,-10.5824542946195],[123,268,75,-10.577967453262342],[123,268,76,-10.56072434272995],[123,268,77,-10.523584346060856],[123,268,78,-10.482532573539387],[123,268,79,-10.426139735428935],[123,269,64,-10.325445628503818],[123,269,65,-10.334526884415832],[123,269,66,-10.323076729559652],[123,269,67,-10.302074730414576],[123,269,68,-10.295940736696723],[123,269,69,-10.318877671666213],[123,269,70,-10.366878635695613],[123,269,71,-10.421722223188286],[123,269,72,-10.514865781799019],[123,269,73,-10.584898040672167],[123,269,74,-10.63605413800176],[123,269,75,-10.630720692299901],[123,269,76,-10.610622497342632],[123,269,77,-10.573618018511189],[123,269,78,-10.531412748257733],[123,269,79,-10.477118290267036],[123,270,64,-10.37737568582526],[123,270,65,-10.386387332324349],[123,270,66,-10.373351826872577],[123,270,67,-10.35219281339553],[123,270,68,-10.344193640156192],[123,270,69,-10.368431793395152],[123,270,70,-10.413695117663089],[123,270,71,-10.46965569342045],[123,270,72,-10.567407996977355],[123,270,73,-10.633277886693103],[123,270,74,-10.684207695454385],[123,270,75,-10.681511467084848],[123,270,76,-10.662746166575372],[123,270,77,-10.628373921005824],[123,270,78,-10.582270689916237],[123,270,79,-10.531718602321313],[123,271,64,-10.422906182430308],[123,271,65,-10.430915446141949],[123,271,66,-10.416976673151817],[123,271,67,-10.397754154642525],[123,271,68,-10.391826479722964],[123,271,69,-10.413739317124817],[123,271,70,-10.459012280834552],[123,271,71,-10.517801514551978],[123,271,72,-10.622946522158804],[123,271,73,-10.685215262131186],[123,271,74,-10.732818957325097],[123,271,75,-10.72719088461748],[123,271,76,-10.712380949501096],[123,271,77,-10.675481692192832],[123,271,78,-10.632277760276448],[123,271,79,-10.58057550152824],[123,272,64,-10.468271431648525],[123,272,65,-10.473882882211411],[123,272,66,-10.459173686289562],[123,272,67,-10.442673383868772],[123,272,68,-10.441160869913281],[123,272,69,-10.46180946677153],[123,272,70,-10.505088913053966],[123,272,71,-10.568805930462544],[123,272,72,-10.676483140792664],[123,272,73,-10.742904828220988],[123,272,74,-10.780840058710494],[123,272,75,-10.780356151981696],[123,272,76,-10.76532384437673],[123,272,77,-10.72565401920064],[123,272,78,-10.684675981297017],[123,272,79,-10.629397495281186],[123,273,64,-10.51409169524483],[123,273,65,-10.519378831276633],[123,273,66,-10.503333044157577],[123,273,67,-10.487041288016552],[123,273,68,-10.48456817522773],[123,273,69,-10.5053076144614],[123,273,70,-10.54911544142461],[123,273,71,-10.605062808423856],[123,273,72,-10.680184123771168],[123,273,73,-10.722858564502312],[123,273,74,-10.736813304710953],[123,273,75,-10.736388568866623],[123,273,76,-10.715546628104585],[123,273,77,-10.678081948895855],[123,273,78,-10.640554600969043],[123,273,79,-10.587404154656728],[123,274,64,-10.565303617250327],[123,274,65,-10.568469718146684],[123,274,66,-10.552309748503202],[123,274,67,-10.536923737338348],[123,274,68,-10.531485417112371],[123,274,69,-10.555377297548796],[123,274,70,-10.597195951996337],[123,274,71,-10.65454253682787],[123,274,72,-10.727404930818231],[123,274,73,-10.775135946949831],[123,274,74,-10.788130476371556],[123,274,75,-10.787845570616062],[123,274,76,-10.766010566272607],[123,274,77,-10.730461340774974],[123,274,78,-10.690650943559898],[123,274,79,-10.63731028407758],[123,275,64,-10.612594494163242],[123,275,65,-10.614385565730919],[123,275,66,-10.598980495134764],[123,275,67,-10.583628565400497],[123,275,68,-10.577051800759127],[123,275,69,-10.598335230032978],[123,275,70,-10.644566823153614],[123,275,71,-10.703232783348476],[123,275,72,-10.778961631491978],[123,275,73,-10.829379631125596],[123,275,74,-10.844098286634548],[123,275,75,-10.844147918072977],[123,275,76,-10.820896502682599],[123,275,77,-10.787743767308076],[123,275,78,-10.742939796756936],[123,275,79,-10.691771902829142],[123,276,64,-10.64915922792947],[123,276,65,-10.657235264818121],[123,276,66,-10.639441398335194],[123,276,67,-10.622149206807219],[123,276,68,-10.619702102074685],[123,276,69,-10.643691744609256],[123,276,70,-10.690247601688544],[123,276,71,-10.75015987147258],[123,276,72,-10.825418001832963],[123,276,73,-10.878494775093548],[123,276,74,-10.894942895041918],[123,276,75,-10.896243693196423],[123,276,76,-10.873287843486006],[123,276,77,-10.836892993793276],[123,276,78,-10.791015809787249],[123,276,79,-10.741229634972573],[123,277,64,-10.698259038553786],[123,277,65,-10.706659917949073],[123,277,66,-10.690784615111903],[123,277,67,-10.671588766617573],[123,277,68,-10.67024506546997],[123,277,69,-10.694322302157932],[123,277,70,-10.741196318467425],[123,277,71,-10.799971352571548],[123,277,72,-10.876922311255012],[123,277,73,-10.929908070264945],[123,277,74,-10.944014502259426],[123,277,75,-10.945663769214521],[123,277,76,-10.92160303068032],[123,277,77,-10.885819837432265],[123,277,78,-10.838959776185739],[123,277,79,-10.788520945585885],[123,278,64,-10.751156173662979],[123,278,65,-10.75673453167885],[123,278,66,-10.740525328795766],[123,278,67,-10.724828623397952],[123,278,68,-10.722393632658992],[123,278,69,-10.742533311032947],[123,278,70,-10.789502054301307],[123,278,71,-10.847773810667867],[123,278,72,-10.926416864887031],[123,278,73,-10.980348992903096],[123,278,74,-10.99633780594538],[123,278,75,-10.996560923273842],[123,278,76,-10.974409677077798],[123,278,77,-10.939510176560358],[123,278,78,-10.89352181868517],[123,278,79,-10.842180865376864],[123,279,64,-10.797031815330618],[123,279,65,-10.802004552181335],[123,279,66,-10.785535334479786],[123,279,67,-10.770119369448999],[123,279,68,-10.769814359420876],[123,279,69,-10.79102624040264],[123,279,70,-10.835262095745042],[123,279,71,-10.892779839118347],[123,279,72,-10.973335657228471],[123,279,73,-11.028410784825484],[123,279,74,-11.045581615853296],[123,279,75,-11.048395960230668],[123,279,76,-11.025111719903947],[123,279,77,-10.989956664604023],[123,279,78,-10.942085744642936],[123,279,79,-10.888747435946634],[123,280,64,-10.844506092174882],[123,280,65,-10.849991173362113],[123,280,66,-10.832780156212754],[123,280,67,-10.81721824415051],[123,280,68,-10.815757312960097],[123,280,69,-10.836534263437997],[123,280,70,-10.880150672050823],[123,280,71,-10.937461656755003],[123,280,72,-11.021940087310709],[123,280,73,-11.076830085687616],[123,280,74,-11.094784926048808],[123,280,75,-11.096742430894244],[123,280,76,-11.075503003602993],[123,280,77,-11.039165944066957],[123,280,78,-10.990348934034989],[123,280,79,-10.934331113811387],[123,281,64,-10.889267896392665],[123,281,65,-10.89399458173142],[123,281,66,-10.878982060404773],[123,281,67,-10.863517807468718],[123,281,68,-10.861289768081603],[123,281,69,-10.882489471300063],[123,281,70,-10.924057391635204],[123,281,71,-10.982491331389463],[123,281,72,-11.070758997309621],[123,281,73,-11.133130227039302],[123,281,74,-11.153686456997477],[123,281,75,-11.152095047409157],[123,281,76,-11.13274520371723],[123,281,77,-11.095532742797737],[123,281,78,-11.045638856178627],[123,281,79,-10.989374165873814],[123,282,64,-10.939024099892494],[123,282,65,-10.94344087775614],[123,282,66,-10.927362334308945],[123,282,67,-10.912550620625343],[123,282,68,-10.907313296861878],[123,282,69,-10.93109866961053],[123,282,70,-10.974839558938898],[123,282,71,-11.035197574993337],[123,282,72,-11.11255248852605],[123,282,73,-11.17177553846352],[123,282,74,-11.18989423760812],[123,282,75,-11.189026201508346],[123,282,76,-11.169789676916768],[123,282,77,-11.132746004072171],[123,282,78,-11.083785349872175],[123,282,79,-11.026977589730278],[123,283,64,-10.986732856824243],[123,283,65,-10.989658233234458],[123,283,66,-10.974336467285443],[123,283,67,-10.959311657500503],[123,283,68,-10.953945143518782],[123,283,69,-10.97746657148777],[123,283,70,-11.023443389611147],[123,283,71,-11.084654355638534],[123,283,72,-11.161541834238719],[123,283,73,-11.227191841974662],[123,283,74,-11.246523245693185],[123,283,75,-11.242481303083716],[123,283,76,-11.22402572976803],[123,283,77,-11.184492130723205],[123,283,78,-11.135560101378875],[123,283,79,-11.078788380458352],[123,284,64,-11.05360430363064],[123,284,65,-11.053141413951252],[123,284,66,-11.037450549051607],[123,284,67,-11.020700945132623],[123,284,68,-11.013999124203556],[123,284,69,-11.037062271707914],[123,284,70,-11.083866408214828],[123,284,71,-11.142662972885809],[123,284,72,-11.222107635312938],[123,284,73,-11.28691032356022],[123,284,74,-11.303327870669076],[123,284,75,-11.30068982515619],[123,284,76,-11.27977713267011],[123,284,77,-11.238412156979352],[123,284,78,-11.189503700079289],[123,284,79,-11.130973854675824],[123,285,64,-11.101999502977018],[123,285,65,-11.10009976137616],[123,285,66,-11.080113567273417],[123,285,67,-11.060445607988235],[123,285,68,-11.049780310759163],[123,285,69,-11.072354782206755],[123,285,70,-11.12245954397003],[123,285,71,-11.18373896549634],[123,285,72,-11.268206850516675],[123,285,73,-11.336251758090725],[123,285,74,-11.352703936224934],[123,285,75,-11.347294179146834],[123,285,76,-11.327042787174578],[123,285,77,-11.285567760861431],[123,285,78,-11.236813933477587],[123,285,79,-11.177146847563405],[123,286,64,-11.15243141314162],[123,286,65,-11.14992173992296],[123,286,66,-11.129016903248505],[123,286,67,-11.108533440594794],[123,286,68,-11.100818007346074],[123,286,69,-11.121041428389121],[123,286,70,-11.170908934612143],[123,286,71,-11.229881416093164],[123,286,72,-11.31611106270938],[123,286,73,-11.3882742263527],[123,286,74,-11.402528203239607],[123,286,75,-11.396394975906427],[123,286,76,-11.375190585398055],[123,286,77,-11.333113882827542],[123,286,78,-11.284668157632249],[123,286,79,-11.226760318119274],[123,287,64,-11.200533379053011],[123,287,65,-11.19783650253555],[123,287,66,-11.176338526942162],[123,287,67,-11.156172931211488],[123,287,68,-11.14895492731325],[123,287,69,-11.16942749639275],[123,287,70,-11.216502393728666],[123,287,71,-11.276791071721448],[123,287,72,-11.361536192897356],[123,287,73,-11.434472825003747],[123,287,74,-11.450502084906377],[123,287,75,-11.44049126448462],[123,287,76,-11.417661243802666],[123,287,77,-11.376256419761956],[123,287,78,-11.329144100372444],[123,287,79,-11.273550076371775],[123,288,64,-11.250087531303809],[123,288,65,-11.245513438535067],[123,288,66,-11.224579831094479],[123,288,67,-11.203568915600183],[123,288,68,-11.198316852593948],[123,288,69,-11.21760493894115],[123,288,70,-11.262271565650295],[123,288,71,-11.322092805339286],[123,288,72,-11.406635491759491],[123,288,73,-11.478628277583642],[123,288,74,-11.496312382048211],[123,288,75,-11.485078948812932],[123,288,76,-11.46319972712394],[123,288,77,-11.42149634930876],[123,288,78,-11.378331677298783],[123,288,79,-11.322815342433552],[123,289,64,-11.297097872716671],[123,289,65,-11.297678520785736],[123,289,66,-11.27950597620353],[123,289,67,-11.260081929142673],[123,289,68,-11.254477182113588],[123,289,69,-11.273716775714082],[123,289,70,-11.3165797028443],[123,289,71,-11.374663497419453],[123,289,72,-11.457051767210762],[123,289,73,-11.539152850558597],[123,289,74,-11.551573980810211],[123,289,75,-11.541997829715617],[123,289,76,-11.51779080342097],[123,289,77,-11.478623608755248],[123,289,78,-11.434109582468361],[123,289,79,-11.378169456589005],[123,290,64,-11.349701073743544],[123,290,65,-11.351425802865734],[123,290,66,-11.3292924711388],[123,290,67,-11.309284990733953],[123,290,68,-11.302153278402576],[123,290,69,-11.324164055467309],[123,290,70,-11.365205179633783],[123,290,71,-11.423864100082534],[123,290,72,-11.494721084675064],[123,290,73,-11.580455441114747],[123,290,74,-11.602987545409658],[123,290,75,-11.594916427749354],[123,290,76,-11.573491352983186],[123,290,77,-11.534369476678927],[123,290,78,-11.490533559539523],[123,290,79,-11.431026671219389],[123,291,64,-11.39553172493175],[123,291,65,-11.397574263689327],[123,291,66,-11.378265909087524],[123,291,67,-11.354005402218158],[123,291,68,-11.346405487001837],[123,291,69,-11.368891786727527],[123,291,70,-11.41398717061999],[123,291,71,-11.47304293734914],[123,291,72,-11.551021631518218],[123,291,73,-11.638553910291535],[123,291,74,-11.65419875525917],[123,291,75,-11.645930774738398],[123,291,76,-11.623079131961992],[123,291,77,-11.583961738381703],[123,291,78,-11.53966353224508],[123,291,79,-11.481231115948908],[123,292,64,-11.40800186723579],[123,292,65,-11.407798959522967],[123,292,66,-11.384283552163547],[123,292,67,-11.357307382197385],[123,292,68,-11.349440634481157],[123,292,69,-11.368786208768922],[123,292,70,-11.414845659705634],[123,292,71,-11.473175296883745],[123,292,72,-11.554357775631294],[123,292,73,-11.659484406617636],[123,292,74,-11.676510390865849],[123,292,75,-11.669579562365985],[123,292,76,-11.647447772156077],[123,292,77,-11.606605680470109],[123,292,78,-11.560419025191983],[123,292,79,-11.502157167017447],[123,293,64,-11.458296216536683],[123,293,65,-11.457637620805745],[123,293,66,-11.433079375113453],[123,293,67,-11.402849230102065],[123,293,68,-11.395248375525687],[123,293,69,-11.415730050503592],[123,293,70,-11.463017635474971],[123,293,71,-11.519059466696254],[123,293,72,-11.608742390667448],[123,293,73,-11.705741121110261],[123,293,74,-11.717465358389305],[123,293,75,-11.71287043096919],[123,293,76,-11.691219606718947],[123,293,77,-11.650283715356899],[123,293,78,-11.603216915350083],[123,293,79,-11.544405351870402],[123,294,64,-11.508837556510382],[123,294,65,-11.508116078356625],[123,294,66,-11.479046391743665],[123,294,67,-11.449914982078626],[123,294,68,-11.439578479942773],[123,294,69,-11.457262084134445],[123,294,70,-11.505283167235152],[123,294,71,-11.56600379715002],[123,294,72,-11.66042649871353],[123,294,73,-11.751562940737491],[123,294,74,-11.762371470908613],[123,294,75,-11.755710531544576],[123,294,76,-11.730300822536195],[123,294,77,-11.688402048727745],[123,294,78,-11.64354239396102],[123,294,79,-11.583217160501933],[123,295,64,-11.556802102287952],[123,295,65,-11.554542716173756],[123,295,66,-11.526274923033489],[123,295,67,-11.498543154697488],[123,295,68,-11.48441204461958],[123,295,69,-11.499963216248087],[123,295,70,-11.547565875150394],[123,295,71,-11.611571264660306],[123,295,72,-11.685408375084151],[123,295,73,-11.760820695246883],[123,295,74,-11.783986102194715],[123,295,75,-11.782999523886382],[123,295,76,-11.762065119633924],[123,295,77,-11.720724533273211],[123,295,78,-11.673083034243168],[123,295,79,-11.618157224275588],[123,296,64,-11.604154718205503],[123,296,65,-11.601644572981861],[123,296,66,-11.573397750574681],[123,296,67,-11.544317096937839],[123,296,68,-11.531913964215533],[123,296,69,-11.546005540268292],[123,296,70,-11.591504028545923],[123,296,71,-11.655962813999274],[123,296,72,-11.73469420956123],[123,296,73,-11.805210348568163],[123,296,74,-11.82601987562048],[123,296,75,-11.823373381909787],[123,296,76,-11.804675552024792],[123,296,77,-11.761758361393666],[123,296,78,-11.713375067838752],[123,296,79,-11.659169379298971],[123,297,64,-11.656499535553747],[123,297,65,-11.648911261158263],[123,297,66,-11.617928730886078],[123,297,67,-11.584313459365537],[123,297,68,-11.570333398445745],[123,297,69,-11.586097234258556],[123,297,70,-11.63439732877369],[123,297,71,-11.701061920678425],[123,297,72,-11.78450321984197],[123,297,73,-11.848638800973184],[123,297,74,-11.874740671327542],[123,297,75,-11.872501952885683],[123,297,76,-11.8532264740434],[123,297,77,-11.811107023144086],[123,297,78,-11.762944891071811],[123,297,79,-11.710488369884615],[123,298,64,-11.707023311568],[123,298,65,-11.700678259293923],[123,298,66,-11.669097480871473],[123,298,67,-11.634477668796011],[123,298,68,-11.619251335631045],[123,298,69,-11.635876626541407],[123,298,70,-11.68482781822394],[123,298,71,-11.751621224619123],[123,298,72,-11.834871095785317],[123,298,73,-11.883919098615035],[123,298,74,-11.910654913716725],[123,298,75,-11.912288935821188],[123,298,76,-11.891262253422322],[123,298,77,-11.853372011923103],[123,298,78,-11.809558026973962],[123,298,79,-11.758828920430465],[123,299,64,-11.755862977987086],[123,299,65,-11.7472223661477],[123,299,66,-11.71606714559586],[123,299,67,-11.680790283208598],[123,299,68,-11.664874256347245],[123,299,69,-11.681394853328209],[123,299,70,-11.731652629117157],[123,299,71,-11.801050808686425],[123,299,72,-11.880360050613929],[123,299,73,-11.928428077006581],[123,299,74,-11.954609192141747],[123,299,75,-11.959945795234082],[123,299,76,-11.934780970034872],[123,299,77,-11.899736785898767],[123,299,78,-11.856128060966721],[123,299,79,-11.806332918574],[123,300,64,-11.80237193450852],[123,300,65,-11.796173253486957],[123,300,66,-11.77048993891576],[123,300,67,-11.739699890892204],[123,300,68,-11.724342535119828],[123,300,69,-11.739936053758077],[123,300,70,-11.786412489329331],[123,300,71,-11.850629867782372],[123,300,72,-11.926024330581736],[123,300,73,-11.971019480581743],[123,300,74,-12.001818620067246],[123,300,75,-11.995628364954598],[123,300,76,-11.965579329550128],[123,300,77,-11.926155364092894],[123,300,78,-11.884462229941441],[123,300,79,-11.83618905924083],[123,301,64,-11.848370994332365],[123,301,65,-11.844103134076116],[123,301,66,-11.817684645198142],[123,301,67,-11.78684992796514],[123,301,68,-11.772298405206932],[123,301,69,-11.789007785206868],[123,301,70,-11.834259069303405],[123,301,71,-11.898010898982664],[123,301,72,-11.970517063776308],[123,301,73,-12.014116188368558],[123,301,74,-12.043653101967326],[123,301,75,-12.039289763398779],[123,301,76,-12.012509870145388],[123,301,77,-11.972111362616934],[123,301,78,-11.931938583075906],[123,301,79,-11.880457742938514],[123,302,64,-11.889337477581163],[123,302,65,-11.888830917475394],[123,302,66,-11.861712710086678],[123,302,67,-11.830805392793222],[123,302,68,-11.814041829520486],[123,302,69,-11.83013221165796],[123,302,70,-11.876768525128213],[123,302,71,-11.941450315786142],[123,302,72,-12.011216389889515],[123,302,73,-12.055708132046092],[123,302,74,-12.083948620255429],[123,302,75,-12.080078927146346],[123,302,76,-12.056049336190599],[123,302,77,-12.0164723471474],[123,302,78,-11.981826067599714],[123,302,79,-11.929906911226517],[123,303,64,-11.934438640458302],[123,303,65,-11.932386231955634],[123,303,66,-11.908583979385213],[123,303,67,-11.877052739849242],[123,303,68,-11.861066726621099],[123,303,69,-11.876878320976886],[123,303,70,-11.924938894079144],[123,303,71,-11.988546744448076],[123,303,72,-12.057004768255823],[123,303,73,-12.101685264492453],[123,303,74,-12.136770994438185],[123,303,75,-12.13633994269209],[123,303,76,-12.110682409287731],[123,303,77,-12.073473591844502],[123,303,78,-12.033708648077459],[123,303,79,-11.975630734607721],[123,304,64,-11.979334870593599],[123,304,65,-11.978152816947269],[123,304,66,-11.953627289681114],[123,304,67,-11.921995664867675],[123,304,68,-11.907460140321508],[123,304,69,-11.922638597762662],[123,304,70,-11.970747117188175],[123,304,71,-12.033660640422704],[123,304,72,-12.103140499130427],[123,304,73,-12.148276367021188],[123,304,74,-12.176941156538295],[123,304,75,-12.178282318323758],[123,304,76,-12.152329963964958],[123,304,77,-12.121671229986537],[123,304,78,-12.078603252847092],[123,304,79,-12.021561468693443],[123,305,64,-12.025086670216037],[123,305,65,-12.023375388927473],[123,305,66,-11.998319690743216],[123,305,67,-11.96779407771965],[123,305,68,-11.952883690078078],[123,305,69,-11.969435793321907],[123,305,70,-12.017873293465534],[123,305,71,-12.08011979701847],[123,305,72,-12.148252057433913],[123,305,73,-12.191845622489534],[123,305,74,-12.218776748733347],[123,305,75,-12.22547115064713],[123,305,76,-12.200001835809886],[123,305,77,-12.171548992171275],[123,305,78,-12.124821216653995],[123,305,79,-12.068393747922595],[123,306,64,-12.072170589048994],[123,306,65,-12.071781217606059],[123,306,66,-12.047808114991412],[123,306,67,-12.01687349883691],[123,306,68,-12.001735533050374],[123,306,69,-12.018937083534116],[123,306,70,-12.066128439789834],[123,306,71,-12.125135896888896],[123,306,72,-12.19500180653639],[123,306,73,-12.238547292841947],[123,306,74,-12.259150266312227],[123,306,75,-12.262283235816334],[123,306,76,-12.24069836372794],[123,306,77,-12.20986591828917],[123,306,78,-12.164788404708537],[123,306,79,-12.10671627756744],[123,307,64,-12.116902504654472],[123,307,65,-12.116681984639136],[123,307,66,-12.091846858937306],[123,307,67,-12.060733341516775],[123,307,68,-12.046580646794673],[123,307,69,-12.064173684386054],[123,307,70,-12.109511301055877],[123,307,71,-12.167467850862073],[123,307,72,-12.239748683624786],[123,307,73,-12.284794288371351],[123,307,74,-12.303920127768317],[123,307,75,-12.303056868003283],[123,307,76,-12.28764324594114],[123,307,77,-12.257431465073887],[123,307,78,-12.215332378377916],[123,307,79,-12.15470764588767],[123,308,64,-12.143102582115233],[123,308,65,-12.144503652274276],[123,308,66,-12.122912078506081],[123,308,67,-12.093440019206593],[123,308,68,-12.082373375058225],[123,308,69,-12.10223188409917],[123,308,70,-12.151698946772964],[123,308,71,-12.215440460532138],[123,308,72,-12.292029437188054],[123,308,73,-12.341744484869565],[123,308,74,-12.362536945621876],[123,308,75,-12.362082356165207],[123,308,76,-12.342865358100207],[123,308,77,-12.311834440022585],[123,308,78,-12.266217152900007],[123,308,79,-12.20342439900586],[123,309,64,-12.188108635487005],[123,309,65,-12.187791856032682],[123,309,66,-12.165415432134655],[123,309,67,-12.137509356157118],[123,309,68,-12.124563018405954],[123,309,69,-12.14748205725005],[123,309,70,-12.197663794100768],[123,309,71,-12.261958210431901],[123,309,72,-12.339379388083012],[123,309,73,-12.389995682248747],[123,309,74,-12.409139922669693],[123,309,75,-12.409372897514665],[123,309,76,-12.385538870715406],[123,309,77,-12.340175042608939],[123,309,78,-12.282491800835261],[123,309,79,-12.214936722959182],[123,310,64,-12.227708857750047],[123,310,65,-12.228436281028161],[123,310,66,-12.20600597708068],[123,310,67,-12.1785439853373],[123,310,68,-12.165186484540408],[123,310,69,-12.186427985408125],[123,310,70,-12.239246197569893],[123,310,71,-12.302366026805315],[123,310,72,-12.380003819565857],[123,310,73,-12.429183542362098],[123,310,74,-12.449612264218617],[123,310,75,-12.450126205282139],[123,310,76,-12.426571891268106],[123,310,77,-12.381833410169165],[123,310,78,-12.327629436434151],[123,310,79,-12.259721452783724],[123,311,64,-12.274237815043199],[123,311,65,-12.274795114116486],[123,311,66,-12.251468700956153],[123,311,67,-12.222994894333127],[123,311,68,-12.20961507455702],[123,311,69,-12.235377181531451],[123,311,70,-12.28792801140967],[123,311,71,-12.351970736981736],[123,311,72,-12.427410715768552],[123,311,73,-12.47689154337957],[123,311,74,-12.495777253879012],[123,311,75,-12.496880677130953],[123,311,76,-12.47134490239966],[123,311,77,-12.42763828827643],[123,311,78,-12.371702752733322],[123,311,79,-12.310779974058313],[123,312,64,-12.323638440451452],[123,312,65,-12.32428226560687],[123,312,66,-12.299452869583575],[123,312,67,-12.272177463782194],[123,312,68,-12.258339680169843],[123,312,69,-12.284461755438148],[123,312,70,-12.336940201071693],[123,312,71,-12.398294924744226],[123,312,72,-12.466946732348953],[123,312,73,-12.51412099981934],[123,312,74,-12.531864981625208],[123,312,75,-12.533465169026643],[123,312,76,-12.512182357790175],[123,312,77,-12.471965472941863],[123,312,78,-12.418436503264752],[123,312,79,-12.358102624715842],[123,313,64,-12.373124588463755],[123,313,65,-12.370897109768139],[123,313,66,-12.345137456311976],[123,313,67,-12.317675294052036],[123,313,68,-12.307357457336511],[123,313,69,-12.331066669153572],[123,313,70,-12.383898590626233],[123,313,71,-12.446214305360687],[123,313,72,-12.514683945097525],[123,313,73,-12.561083855675836],[123,313,74,-12.577203976772818],[123,313,75,-12.580392963296129],[123,313,76,-12.560174327304976],[123,313,77,-12.520859739725935],[123,313,78,-12.476342044775784],[123,313,79,-12.41958169247841],[123,314,64,-12.424589499249965],[123,314,65,-12.420370990910795],[123,314,66,-12.394221358650148],[123,314,67,-12.367649529694274],[123,314,68,-12.359200830466406],[123,314,69,-12.378472112685422],[123,314,70,-12.430613223362933],[123,314,71,-12.494014605220563],[123,314,72,-12.563059064892913],[123,314,73,-12.610623701602778],[123,314,74,-12.624649465470295],[123,314,75,-12.627495046183462],[123,314,76,-12.612851764311486],[123,314,77,-12.568346100330782],[123,314,78,-12.52614013004933],[123,314,79,-12.477582283545388],[123,315,64,-12.469269681921855],[123,315,65,-12.468015206345838],[123,315,66,-12.444302306160665],[123,315,67,-12.417411064636621],[123,315,68,-12.405900729847028],[123,315,69,-12.425184604929335],[123,315,70,-12.476719513455897],[123,315,71,-12.538181941774857],[123,315,72,-12.609750117601434],[123,315,73,-12.657928597303416],[123,315,74,-12.672416866421088],[123,315,75,-12.674042181772819],[123,315,76,-12.658667719144342],[123,315,77,-12.613327362396301],[123,315,78,-12.571286310176152],[123,315,79,-12.530785453469159],[123,316,64,-12.52286114372993],[123,316,65,-12.51939279182106],[123,316,66,-12.496580392397581],[123,316,67,-12.46650951723623],[123,316,68,-12.452723950888902],[123,316,69,-12.472245568617133],[123,316,70,-12.521320851275117],[123,316,71,-12.580721619818064],[123,316,72,-12.654311593560097],[123,316,73,-12.703536050975586],[123,316,74,-12.718166848016496],[123,316,75,-12.719783453864308],[123,316,76,-12.702012424842243],[123,316,77,-12.663614796533091],[123,316,78,-12.618278175006958],[123,316,79,-12.571684657163793],[123,317,64,-12.570734554580167],[123,317,65,-12.567111242186957],[123,317,66,-12.540368649681461],[123,317,67,-12.513275416431798],[123,317,68,-12.499291647666062],[123,317,69,-12.51923751491676],[123,317,70,-12.565908153838006],[123,317,71,-12.626841391982751],[123,317,72,-12.700244813543497],[123,317,73,-12.748047498377652],[123,317,74,-12.765189040157438],[123,317,75,-12.765660446017819],[123,317,76,-12.750511517748285],[123,317,77,-12.714194163016982],[123,317,78,-12.671645007515213],[123,317,79,-12.619932285230021],[123,318,64,-12.616119633425583],[123,318,65,-12.60920273158643],[123,318,66,-12.581041572581796],[123,318,67,-12.551396786832923],[123,318,68,-12.538648921451346],[123,318,69,-12.556695537361861],[123,318,70,-12.602788930171032],[123,318,71,-12.664542892281691],[123,318,72,-12.738720899715386],[123,318,73,-12.789404679505111],[123,318,74,-12.805525123844665],[123,318,75,-12.805534029809532],[123,318,76,-12.7915458708296],[123,318,77,-12.760086611721874],[123,318,78,-12.716502958467647],[123,318,79,-12.666168690499694],[123,319,64,-12.664591758278451],[123,319,65,-12.65800121612646],[123,319,66,-12.626924796962658],[123,319,67,-12.594552007810181],[123,319,68,-12.581025057266201],[123,319,69,-12.600874083354968],[123,319,70,-12.647514593821901],[123,319,71,-12.712082430537814],[123,319,72,-12.78723328906375],[123,319,73,-12.8373160841379],[123,319,74,-12.855963603774084],[123,319,75,-12.857400297152015],[123,319,76,-12.842530304204622],[123,319,77,-12.809063981731223],[123,319,78,-12.767190090736625],[123,319,79,-12.719904534554733],[124,-64,64,22.918440815022368],[124,-64,65,22.90530124480085],[124,-64,66,22.906674664308408],[124,-64,67,22.925995549273487],[124,-64,68,22.943775387142715],[124,-64,69,22.95164651105386],[124,-64,70,22.96574257190335],[124,-64,71,23.001782483737408],[124,-64,72,23.047964157874922],[124,-64,73,23.070800155704262],[124,-64,74,23.07271335930045],[124,-64,75,23.094339824307145],[124,-64,76,23.155856060448386],[124,-64,77,23.2573931222114],[124,-64,78,23.37232085233726],[124,-64,79,23.48473690817429],[124,-63,64,22.750477164691958],[124,-63,65,22.70987201491026],[124,-63,66,22.70982292909651],[124,-63,67,22.73120975299645],[124,-63,68,22.748453405157274],[124,-63,69,22.758851591837505],[124,-63,70,22.77406092864088],[124,-63,71,22.808017477034795],[124,-63,72,22.85569417319539],[124,-63,73,22.878395929863697],[124,-63,74,22.880867279008083],[124,-63,75,22.90324158715459],[124,-63,76,22.963660660554055],[124,-63,77,23.067643873704963],[124,-63,78,23.180391339546425],[124,-63,79,23.31864226014512],[124,-62,64,22.57144487344631],[124,-62,65,22.524575502099008],[124,-62,66,22.52050484428906],[124,-62,67,22.54059666660026],[124,-62,68,22.556738890280837],[124,-62,69,22.567016033176664],[124,-62,70,22.583568163185888],[124,-62,71,22.61771089148108],[124,-62,72,22.663536189977076],[124,-62,73,22.68715116689742],[124,-62,74,22.688024707904734],[124,-62,75,22.711697929845666],[124,-62,76,22.77414627022402],[124,-62,77,22.879678767190594],[124,-62,78,22.98947041615324],[124,-62,79,23.117343596809857],[124,-61,64,22.34664034896065],[124,-61,65,22.324211414041624],[124,-61,66,22.325406331788326],[124,-61,67,22.343334542289686],[124,-61,68,22.36336107692165],[124,-61,69,22.371704628390553],[124,-61,70,22.38885685775818],[124,-61,71,22.422871984241503],[124,-61,72,22.468505266690315],[124,-61,73,22.490184652220226],[124,-61,74,22.492901378000766],[124,-61,75,22.516855104513105],[124,-61,76,22.58081890716508],[124,-61,77,22.685125651559467],[124,-61,78,22.798188354130755],[124,-61,79,22.901450325616196],[124,-60,64,22.160258726652454],[124,-60,65,22.148753240780728],[124,-60,66,22.137167172581957],[124,-60,67,22.15603806464859],[124,-60,68,22.174474989914863],[124,-60,69,22.186362416494823],[124,-60,70,22.20175080675526],[124,-60,71,22.237590820903687],[124,-60,72,22.28211961642325],[124,-60,73,22.305263730154444],[124,-60,74,22.308834175213814],[124,-60,75,22.331499933834852],[124,-60,76,22.395605146481437],[124,-60,77,22.498610909186812],[124,-60,78,22.613664626570966],[124,-60,79,22.71699764913799],[124,-59,64,21.97253206824892],[124,-59,65,21.958712013792116],[124,-59,66,21.957525474811277],[124,-59,67,21.97474325681043],[124,-59,68,21.992889260911518],[124,-59,69,22.00527273706489],[124,-59,70,22.02114268907949],[124,-59,71,22.056210243774522],[124,-59,72,22.095244113281208],[124,-59,73,22.11670409454683],[124,-59,74,22.122489385765714],[124,-59,75,22.144611450732185],[124,-59,76,22.211673863755085],[124,-59,77,22.313565132973995],[124,-59,78,22.428145197970878],[124,-59,79,22.533728213497433],[124,-58,64,21.784135234585428],[124,-58,65,21.767768902559105],[124,-58,66,21.765498129083042],[124,-58,67,21.78572434601052],[124,-58,68,21.802510516791422],[124,-58,69,21.817450381348223],[124,-58,70,21.8339371155922],[124,-58,71,21.865181988972274],[124,-58,72,21.905442094260774],[124,-58,73,21.92788795811263],[124,-58,74,21.929543306140246],[124,-58,75,21.95377410036715],[124,-58,76,22.021930586900915],[124,-58,77,22.12375429234585],[124,-58,78,22.23710553037573],[124,-58,79,22.344628683957207],[124,-57,64,21.588440509072836],[124,-57,65,21.572531357966884],[124,-57,66,21.5731772673332],[124,-57,67,21.592965435286867],[124,-57,68,21.613774672037273],[124,-57,69,21.62582488467994],[124,-57,70,21.64328084576561],[124,-57,71,21.66986930279252],[124,-57,72,21.71211864321856],[124,-57,73,21.735976314306154],[124,-57,74,21.738517639866146],[124,-57,75,21.763484306736267],[124,-57,76,21.830349715609376],[124,-57,77,21.93194887246744],[124,-57,78,22.046902531453092],[124,-57,79,22.156496833065397],[124,-56,64,21.39643612572177],[124,-56,65,21.382091211047513],[124,-56,66,21.38444097503498],[124,-56,67,21.403370784891628],[124,-56,68,21.42522092978211],[124,-56,69,21.43716833720697],[124,-56,70,21.45052727006266],[124,-56,71,21.478640679258906],[124,-56,72,21.520399798119325],[124,-56,73,21.543553888567875],[124,-56,74,21.54737587420442],[124,-56,75,21.570541823843637],[124,-56,76,21.640274061675285],[124,-56,77,21.73927569852407],[124,-56,78,21.85635572381913],[124,-56,79,21.96496855963145],[124,-55,64,21.204681451736157],[124,-55,65,21.19248747672777],[124,-55,66,21.197113355737084],[124,-55,67,21.216256935427356],[124,-55,68,21.234841972960744],[124,-55,69,21.24611824453345],[124,-55,70,21.25828768776796],[124,-55,71,21.286836619550403],[124,-55,72,21.329226064675744],[124,-55,73,21.351559068257945],[124,-55,74,21.354979907208538],[124,-55,75,21.37802198574642],[124,-55,76,21.447726050158376],[124,-55,77,21.551308867120262],[124,-55,78,21.666715136376165],[124,-55,79,21.773301192810738],[124,-54,64,21.01300678561501],[124,-54,65,21.002150432346017],[124,-54,66,21.00631533037053],[124,-54,67,21.027722185604727],[124,-54,68,21.04483161791755],[124,-54,69,21.055179090548545],[124,-54,70,21.06480762025228],[124,-54,71,21.09558473119997],[124,-54,72,21.13552361020803],[124,-54,73,21.158860527427038],[124,-54,74,21.163282472314744],[124,-54,75,21.18527916013609],[124,-54,76,21.255678289967527],[124,-54,77,21.359747681138796],[124,-54,78,21.476594955357992],[124,-54,79,21.583163401600547],[124,-53,64,20.815937043926496],[124,-53,65,20.805952217306984],[124,-53,66,20.809458610746276],[124,-53,67,20.832884281903983],[124,-53,68,20.850751741955552],[124,-53,69,20.85953613510293],[124,-53,70,20.868931683306545],[124,-53,71,20.898867336251943],[124,-53,72,20.937405121684208],[124,-53,73,20.96008438746247],[124,-53,74,20.967811415020442],[124,-53,75,20.989912433293497],[124,-53,76,21.058413561425848],[124,-53,77,21.16235166944949],[124,-53,78,21.279491592285478],[124,-53,79,21.388517725852413],[124,-52,64,20.628252054590817],[124,-52,65,20.6118311780014],[124,-52,66,20.620142425414],[124,-52,67,20.646624190134208],[124,-52,68,20.668275971686583],[124,-52,69,20.677780656755832],[124,-52,70,20.687236925782983],[124,-52,71,20.714829542315723],[124,-52,72,20.75361292730563],[124,-52,73,20.775803844651744],[124,-52,74,20.780975933411327],[124,-52,75,20.804452089741307],[124,-52,76,20.870845802607384],[124,-52,77,20.974890409900315],[124,-52,78,21.092349964254346],[124,-52,79,21.2018902413493],[124,-51,64,20.470517211641226],[124,-51,65,20.430176989425814],[124,-51,66,20.40862288583441],[124,-51,67,20.43991989698059],[124,-51,68,20.462852111374055],[124,-51,69,20.474565849782685],[124,-51,70,20.483237462674985],[124,-51,71,20.51009635750349],[124,-51,72,20.547627498854958],[124,-51,73,20.564331115973637],[124,-51,74,20.566220722042235],[124,-51,75,20.593106132083772],[124,-51,76,20.662846779272993],[124,-51,77,20.771716626711118],[124,-51,78,20.89693463776756],[124,-51,79,21.01531713781334],[124,-50,64,20.299373424203573],[124,-50,65,20.269014396926686],[124,-50,66,20.217112192518126],[124,-50,67,20.247669433686816],[124,-50,68,20.270566115492404],[124,-50,69,20.28373563356513],[124,-50,70,20.294670864189317],[124,-50,71,20.318074826686264],[124,-50,72,20.354544031602394],[124,-50,73,20.37167369672394],[124,-50,74,20.373567642785336],[124,-50,75,20.40123490058471],[124,-50,76,20.47222866801078],[124,-50,77,20.578878263286818],[124,-50,78,20.70453505736802],[124,-50,79,20.822568054626593],[124,-49,64,20.14252983621102],[124,-49,65,20.113983616493563],[124,-49,66,20.043608006724952],[124,-49,67,20.05046235843586],[124,-49,68,20.074033469606636],[124,-49,69,20.08846330987934],[124,-49,70,20.100061588106847],[124,-49,71,20.12622413248713],[124,-49,72,20.15882799427875],[124,-49,73,20.17353002548124],[124,-49,74,20.17760809900049],[124,-49,75,20.205908240995086],[124,-49,76,20.279382985401675],[124,-49,77,20.388867968646313],[124,-49,78,20.51114745946825],[124,-49,79,20.630423322727346],[124,-48,64,19.98028789870696],[124,-48,65,19.966501667212086],[124,-48,66,19.91593968649177],[124,-48,67,19.85784327818577],[124,-48,68,19.88443491343389],[124,-48,69,19.896649185361156],[124,-48,70,19.907433277127662],[124,-48,71,19.935828530487314],[124,-48,72,19.964346607682398],[124,-48,73,19.979300048679747],[124,-48,74,19.983588629611784],[124,-48,75,20.011549006843374],[124,-48,76,20.086057069495872],[124,-48,77,20.196587185875384],[124,-48,78,20.31599343744876],[124,-48,79,20.435009983143452],[124,-47,64,19.80029302460273],[124,-47,65,19.806091149165013],[124,-47,66,19.759136021138076],[124,-47,67,19.665063462862264],[124,-47,68,19.69139288805227],[124,-47,69,19.702052156420443],[124,-47,70,19.715718958767013],[124,-47,71,19.742967747174],[124,-47,72,19.775477197660123],[124,-47,73,19.78979699858328],[124,-47,74,19.793612195332983],[124,-47,75,19.824431265807114],[124,-47,76,19.897969245694043],[124,-47,77,20.00221517554973],[124,-47,78,20.115690859841486],[124,-47,79,20.23133898257935],[124,-46,64,19.571202865986596],[124,-46,65,19.580281633713874],[124,-46,66,19.58924731586799],[124,-46,67,19.53546786409851],[124,-46,68,19.500510312797854],[124,-46,69,19.510684568702644],[124,-46,70,19.522905583316756],[124,-46,71,19.549917855684452],[124,-46,72,19.581320587670753],[124,-46,73,19.5951920452592],[124,-46,74,19.59990110444349],[124,-46,75,19.62912825769994],[124,-46,76,19.70216241084804],[124,-46,77,19.80653200781708],[124,-46,78,19.922052271285512],[124,-46,79,20.036318287576208],[124,-45,64,19.416361427120407],[124,-45,65,19.413480990568885],[124,-45,66,19.43470891369758],[124,-45,67,19.358563648347165],[124,-45,68,19.307244435346536],[124,-45,69,19.315827542069798],[124,-45,70,19.32722817174964],[124,-45,71,19.352243824514176],[124,-45,72,19.380934265887426],[124,-45,73,19.397215710466988],[124,-45,74,19.403428109691692],[124,-45,75,19.432282816161624],[124,-45,76,19.501456297624262],[124,-45,77,19.60287687266947],[124,-45,78,19.721969870524532],[124,-45,79,19.83681550945189],[124,-44,64,19.390590327451548],[124,-44,65,19.394487579367713],[124,-44,66,19.419714611215117],[124,-44,67,19.250385530396787],[124,-44,68,19.156157554258314],[124,-44,69,19.09153629727172],[124,-44,70,19.098073551522244],[124,-44,71,19.11924996815623],[124,-44,72,19.144857548073187],[124,-44,73,19.15998323418183],[124,-44,74,19.164851337542824],[124,-44,75,19.19344697936095],[124,-44,76,19.25919802949405],[124,-44,77,19.362383152022336],[124,-44,78,19.480532589448377],[124,-44,79,19.598873106053684],[124,-43,64,19.317658433162038],[124,-43,65,19.330847039997085],[124,-43,66,19.316773926982535],[124,-43,67,19.184485327010528],[124,-43,68,19.082447134600077],[124,-43,69,18.935396255719457],[124,-43,70,18.912072960141035],[124,-43,71,18.930745032415782],[124,-43,72,18.95817424454975],[124,-43,73,18.96998885592203],[124,-43,74,18.975108557573765],[124,-43,75,19.000659438974488],[124,-43,76,19.064565442333063],[124,-43,77,19.17054679648451],[124,-43,78,19.286787460369467],[124,-43,79,19.405437488710422],[124,-42,64,19.1505076158604],[124,-42,65,19.157715751971736],[124,-42,66,19.13635081362227],[124,-42,67,19.004910374709876],[124,-42,68,18.891015372846336],[124,-42,69,18.74313970989597],[124,-42,70,18.71933295682884],[124,-42,71,18.741372476011957],[124,-42,72,18.765903612241306],[124,-42,73,18.777232891550266],[124,-42,74,18.78278319573169],[124,-42,75,18.80479444795468],[124,-42,76,18.867122366665836],[124,-42,77,18.973647510942182],[124,-42,78,19.09285663841881],[124,-42,79,19.210090677192106],[124,-41,64,19.02977258198149],[124,-41,65,19.032076674130057],[124,-41,66,19.02396953994478],[124,-41,67,18.896073222094234],[124,-41,68,18.804308520775432],[124,-41,69,18.61828325393677],[124,-41,70,18.525968705821175],[124,-41,71,18.547107302980212],[124,-41,72,18.569713561660336],[124,-41,73,18.58424909238049],[124,-41,74,18.585895908362904],[124,-41,75,18.605949481332914],[124,-41,76,18.670794638311026],[124,-41,77,18.775679506497294],[124,-41,78,18.89821945343294],[124,-41,79,19.016512237148717],[124,-40,64,18.860100657943434],[124,-40,65,18.842993159171044],[124,-40,66,18.847263037311908],[124,-40,67,18.728925533479714],[124,-40,68,18.620861421808964],[124,-40,69,18.41481458718917],[124,-40,70,18.347299668908853],[124,-40,71,18.354395977723332],[124,-40,72,18.37422675755542],[124,-40,73,18.386252839064742],[124,-40,74,18.389054217585084],[124,-40,75,18.410340216690244],[124,-40,76,18.475598377730368],[124,-40,77,18.58222795081276],[124,-40,78,18.707281458167934],[124,-40,79,18.825299124002427],[124,-39,64,18.66600731928099],[124,-39,65,18.65250149046337],[124,-39,66,18.655531437099167],[124,-39,67,18.559147418109248],[124,-39,68,18.405612023068116],[124,-39,69,18.200482473363955],[124,-39,70,18.143313519253127],[124,-39,71,18.15842886760567],[124,-39,72,18.177303421263474],[124,-39,73,18.18693553754105],[124,-39,74,18.188767861917842],[124,-39,75,18.209442716078122],[124,-39,76,18.276090632745507],[124,-39,77,18.38533271986707],[124,-39,78,18.51231195482694],[124,-39,79,18.63130359858543],[124,-38,64,18.480856036000162],[124,-38,65,18.466264101780887],[124,-38,66,18.470075702491418],[124,-38,67,18.293531525071806],[124,-38,68,18.110340387685618],[124,-38,69,17.951928979716048],[124,-38,70,17.951593951025796],[124,-38,71,17.96725875083034],[124,-38,72,17.987760079241852],[124,-38,73,17.99240155508846],[124,-38,74,17.99389884557116],[124,-38,75,18.015846896158436],[124,-38,76,18.082377076827232],[124,-38,77,18.19248921397802],[124,-38,78,18.31806799850794],[124,-38,79,18.439731146340616],[124,-37,64,18.28742495147351],[124,-37,65,18.273396825505568],[124,-37,66,18.27792781501828],[124,-37,67,18.160762166355536],[124,-37,68,17.994289386986335],[124,-37,69,17.757445248554976],[124,-37,70,17.75808403891346],[124,-37,71,17.770692110743493],[124,-37,72,17.789631841379045],[124,-37,73,17.792306761880354],[124,-37,74,17.793380962392693],[124,-37,75,17.815719051121572],[124,-37,76,17.883139648118608],[124,-37,77,17.995289310946482],[124,-37,78,18.11992574506556],[124,-37,79,18.243103937944856],[124,-36,64,18.08546621230606],[124,-36,65,18.0680993230826],[124,-36,66,18.07255548231182],[124,-36,67,17.98905936262295],[124,-36,68,17.832533703006685],[124,-36,69,17.585109089952155],[124,-36,70,17.575969600845852],[124,-36,71,17.5865557721522],[124,-36,72,17.60424408124316],[124,-36,73,17.608435760274688],[124,-36,74,17.605985943542997],[124,-36,75,17.631225168273737],[124,-36,76,17.699633489841744],[124,-36,77,17.8102661755094],[124,-36,78,17.935620918456586],[124,-36,79,18.059193294531802],[124,-35,64,17.892810909093605],[124,-35,65,17.87523555846245],[124,-35,66,17.877904558644246],[124,-35,67,17.704582777297198],[124,-35,68,17.49730038486088],[124,-35,69,17.388806866773884],[124,-35,70,17.386444519079973],[124,-35,71,17.3971212440713],[124,-35,72,17.412060903513627],[124,-35,73,17.414763872958478],[124,-35,74,17.413275518708364],[124,-35,75,17.440873350927315],[124,-35,76,17.511857765801043],[124,-35,77,17.62356956938259],[124,-35,78,17.750588040964278],[124,-35,79,17.875888467375916],[124,-34,64,17.69377573110908],[124,-34,65,17.67485485433901],[124,-34,66,17.67824403850306],[124,-34,67,17.525910957640022],[124,-34,68,17.323119814517256],[124,-34,69,17.197910590596678],[124,-34,70,17.19738445739425],[124,-34,71,17.205297280235598],[124,-34,72,17.218135356803177],[124,-34,73,17.221851010260362],[124,-34,74,17.221833325005548],[124,-34,75,17.24940505792357],[124,-34,76,17.317635548132273],[124,-34,77,17.429855955414588],[124,-34,78,17.55703301733807],[124,-34,79,17.6818874992939],[124,-33,64,17.49642878749509],[124,-33,65,17.472881275684504],[124,-33,66,17.476780898321735],[124,-33,67,17.358308973482362],[124,-33,68,17.19121104561303],[124,-33,69,17.0509057216205],[124,-33,70,17.043111982049904],[124,-33,71,17.04737146614273],[124,-33,72,17.055137048899915],[124,-33,73,17.05267124703048],[124,-33,74,17.04793640210555],[124,-33,75,17.071748402542223],[124,-33,76,17.13316340002865],[124,-33,77,17.242184999184435],[124,-33,78,17.361738417068644],[124,-33,79,17.48446296384965],[124,-32,64,17.30868072214057],[124,-32,65,17.28482690842748],[124,-32,66,17.289665845747535],[124,-32,67,17.192627260093566],[124,-32,68,17.052330936603685],[124,-32,69,16.863662586196128],[124,-32,70,16.85711284430439],[124,-32,71,16.860576154769614],[124,-32,72,16.866591021501428],[124,-32,73,16.86091464272464],[124,-32,74,16.855984247305106],[124,-32,75,16.878247579368864],[124,-32,76,16.9398350368645],[124,-32,77,17.047130601123737],[124,-32,78,17.169082686407766],[124,-32,79,17.294041086019796],[124,-31,64,17.118538639080043],[124,-31,65,17.096152812698534],[124,-31,66,17.09964811864777],[124,-31,67,17.118108038446614],[124,-31,68,16.989183879755487],[124,-31,69,16.754984172270905],[124,-31,70,16.66837636089587],[124,-31,71,16.671623448865784],[124,-31,72,16.676599631855954],[124,-31,73,16.66945554270966],[124,-31,74,16.664874246311424],[124,-31,75,16.686593847517607],[124,-31,76,16.747664092367796],[124,-31,77,16.852571280084707],[124,-31,78,16.9773490860403],[124,-31,79,17.1027598174652],[124,-30,64,16.937923181638098],[124,-30,65,16.91586018341525],[124,-30,66,16.920612921663015],[124,-30,67,16.94393451807859],[124,-30,68,16.81340513702047],[124,-30,69,16.588875951426722],[124,-30,70,16.478674653477274],[124,-30,71,16.480252703127967],[124,-30,72,16.485028999860443],[124,-30,73,16.478296908276654],[124,-30,74,16.47250177612618],[124,-30,75,16.494094643208435],[124,-30,76,16.553374318912837],[124,-30,77,16.65842956456099],[124,-30,78,16.785140643925047],[124,-30,79,16.912326482109783],[124,-29,64,16.76114386372344],[124,-29,65,16.73751569371725],[124,-29,66,16.74221415327451],[124,-29,67,16.763908747266306],[124,-29,68,16.697872414734228],[124,-29,69,16.47359967686817],[124,-29,70,16.32218815823836],[124,-29,71,16.285065856547867],[124,-29,72,16.289083834839193],[124,-29,73,16.28113691767438],[124,-29,74,16.27252645942893],[124,-29,75,16.292834423800837],[124,-29,76,16.356232999681037],[124,-29,77,16.461999199760793],[124,-29,78,16.586806062715542],[124,-29,79,16.713122517504193],[124,-28,64,16.562277618927183],[124,-28,65,16.53880948262356],[124,-28,66,16.540704966507906],[124,-28,67,16.562423322578425],[124,-28,68,16.515126354427878],[124,-28,69,16.290833479890512],[124,-28,70,16.15054706039887],[124,-28,71,16.100970482929018],[124,-28,72,16.1049002326254],[124,-28,73,16.09454503006707],[124,-28,74,16.086255420892616],[124,-28,75,16.10748306613457],[124,-28,76,16.1716512985651],[124,-28,77,16.276186527483034],[124,-28,78,16.39824921756672],[124,-28,79,16.52616231422487],[124,-27,64,16.37219525545875],[124,-27,65,16.346356929415332],[124,-27,66,16.347468392400888],[124,-27,67,16.367930159391893],[124,-27,68,16.380294029804197],[124,-27,69,16.25763297269999],[124,-27,70,16.114152377342716],[124,-27,71,15.959083544535641],[124,-27,72,15.922586846208947],[124,-27,73,15.910956101689255],[124,-27,74,15.903832598016121],[124,-27,75,15.920723702640098],[124,-27,76,15.98376165049204],[124,-27,77,16.085418413845566],[124,-27,78,16.20641546441703],[124,-27,79,16.331748498594468],[124,-26,64,16.230503607346467],[124,-26,65,16.205625906750527],[124,-26,66,16.206657460627035],[124,-26,67,16.228094643388246],[124,-26,68,16.23852232395376],[124,-26,69,16.1473000500917],[124,-26,70,15.974758031332076],[124,-26,71,15.785281903227084],[124,-26,72,15.733239525859128],[124,-26,73,15.722202958736787],[124,-26,74,15.712687409393904],[124,-26,75,15.728991002277088],[124,-26,76,15.789472268305888],[124,-26,77,15.8906129419793],[124,-26,78,16.015431122997875],[124,-26,79,16.138762327276854],[124,-25,64,16.038454550707634],[124,-25,65,16.013888661203858],[124,-25,66,16.016959639530764],[124,-25,67,16.0353981964715],[124,-25,68,16.044948365868603],[124,-25,69,16.018836346700326],[124,-25,70,15.820748176320409],[124,-25,71,15.64673505996365],[124,-25,72,15.548304009718596],[124,-25,73,15.528892689209288],[124,-25,74,15.518769956896689],[124,-25,75,15.535099581964921],[124,-25,76,15.593985038832567],[124,-25,77,15.696051855696929],[124,-25,78,15.821731025722649],[124,-25,79,15.947272868814785],[124,-24,64,15.851407343656653],[124,-24,65,15.827872743134161],[124,-24,66,15.831398845941171],[124,-24,67,15.8472191884622],[124,-24,68,15.855870368278959],[124,-24,69,15.846397045613553],[124,-24,70,15.65272836945015],[124,-24,71,15.495637759765373],[124,-24,72,15.377597386205041],[124,-24,73,15.338507079855834],[124,-24,74,15.326791883723951],[124,-24,75,15.343256739373633],[124,-24,76,15.401193996431036],[124,-24,77,15.501998584828183],[124,-24,78,15.628488687122136],[124,-24,79,15.753463127026972],[124,-23,64,15.658807803403194],[124,-23,65,15.636585360252624],[124,-23,66,15.640667074234909],[124,-23,67,15.654809789946507],[124,-23,68,15.660505473037336],[124,-23,69,15.654299258333047],[124,-23,70,15.447163872964248],[124,-23,71,15.271205802657173],[124,-23,72,15.163189664336985],[124,-23,73,15.151665885385501],[124,-23,74,15.13924864378566],[124,-23,75,15.154008229744766],[124,-23,76,15.20902310025146],[124,-23,77,15.307480484793807],[124,-23,78,15.427611047341014],[124,-23,79,15.548341228253253],[124,-22,64,15.47365711576004],[124,-22,65,15.452144771065461],[124,-22,66,15.457012230979814],[124,-22,67,15.471015979270375],[124,-22,68,15.475154838117167],[124,-22,69,15.470720796010674],[124,-22,70,15.279861070486687],[124,-22,71,15.079449743553775],[124,-22,72,14.972933918461848],[124,-22,73,14.961707433461243],[124,-22,74,14.947221757391526],[124,-22,75,14.960649079395706],[124,-22,76,15.016615986033303],[124,-22,77,15.11550039015685],[124,-22,78,15.232803003743015],[124,-22,79,15.352957751207065],[124,-21,64,15.276488318316305],[124,-21,65,15.254972089200777],[124,-21,66,15.258689801433931],[124,-21,67,15.275710712842198],[124,-21,68,15.280304553169998],[124,-21,69,15.272536572715898],[124,-21,70,15.180394127225993],[124,-21,71,14.94688977154124],[124,-21,72,14.861790357898375],[124,-21,73,14.764042137340573],[124,-21,74,14.748736719022592],[124,-21,75,14.762588817966357],[124,-21,76,14.81940687103053],[124,-21,77,14.917247639396777],[124,-21,78,15.034013995938661],[124,-21,79,15.152806186690492],[124,-20,64,15.072134379266334],[124,-20,65,15.052789133149208],[124,-20,66,15.055229656461252],[124,-20,67,15.07076572591653],[124,-20,68,15.076657578308193],[124,-20,69,15.068666796146463],[124,-20,70,15.002099625855019],[124,-20,71,14.756635715652791],[124,-20,72,14.690247243490294],[124,-20,73,14.576728487900372],[124,-20,74,14.561444644129326],[124,-20,75,14.57574609992342],[124,-20,76,14.630990429337794],[124,-20,77,14.728200242599454],[124,-20,78,14.844976117516797],[124,-20,79,14.96196573750551],[124,-19,64,14.87884251904433],[124,-19,65,14.859681262943306],[124,-19,66,14.860385498290356],[124,-19,67,14.875119393198192],[124,-19,68,14.881458190110193],[124,-19,69,14.875501900360783],[124,-19,70,14.87138496594913],[124,-19,71,14.709774325286615],[124,-19,72,14.598404695353777],[124,-19,73,14.386878809059064],[124,-19,74,14.373436520067377],[124,-19,75,14.386443374867152],[124,-19,76,14.440539381570785],[124,-19,77,14.538501813183867],[124,-19,78,14.65415844765113],[124,-19,79,14.77576677747482],[124,-18,64,14.673737781523581],[124,-18,65,14.65506411374735],[124,-18,66,14.657742467490033],[124,-18,67,14.672824020021604],[124,-18,68,14.679788798813634],[124,-18,69,14.67500357028708],[124,-18,70,14.669011243942643],[124,-18,71,14.570749730012576],[124,-18,72,14.420647381879116],[124,-18,73,14.221289324516544],[124,-18,74,14.183904193058192],[124,-18,75,14.194736692671494],[124,-18,76,14.24856856927685],[124,-18,77,14.344106665886258],[124,-18,78,14.46115947755636],[124,-18,79,14.581206330518679],[124,-17,64,14.483228757506392],[124,-17,65,14.462428871319663],[124,-17,66,14.466886106716197],[124,-17,67,14.484119152011612],[124,-17,68,14.493498109429666],[124,-17,69,14.492509741052851],[124,-17,70,14.485721771543961],[124,-17,71,14.426367066396399],[124,-17,72,14.244395444117606],[124,-17,73,14.079883815834098],[124,-17,74,13.991795697194572],[124,-17,75,14.002701061764792],[124,-17,76,14.057205312443324],[124,-17,77,14.153852895407976],[124,-17,78,14.269873357110077],[124,-17,79,14.391439482422935],[124,-16,64,14.294797786497039],[124,-16,65,14.272481633614744],[124,-16,66,14.278973289271638],[124,-16,67,14.297358343258644],[124,-16,68,14.306419024464454],[124,-16,69,14.303202790332849],[124,-16,70,14.298384797743548],[124,-16,71,14.295709699444991],[124,-16,72,14.151086910518092],[124,-16,73,14.006809427078371],[124,-16,74,13.798526983653858],[124,-16,75,13.810393602476992],[124,-16,76,13.865360728372137],[124,-16,77,13.961260331793117],[124,-16,78,14.079548504139831],[124,-16,79,14.201369074446617],[124,-15,64,14.100973521216485],[124,-15,65,14.080302659320441],[124,-15,66,14.083918101326248],[124,-15,67,14.105354461125458],[124,-15,68,14.115510502645192],[124,-15,69,14.113511820561394],[124,-15,70,14.108781129722738],[124,-15,71,14.102360964659894],[124,-15,72,13.97941806161914],[124,-15,73,13.833019209146343],[124,-15,74,13.605692134269896],[124,-15,75,13.618538228831694],[124,-15,76,13.674632538240184],[124,-15,77,13.773952415392612],[124,-15,78,13.891944609993947],[124,-15,79,14.015111934957986],[124,-14,64,13.804676618605148],[124,-14,65,13.782778619471713],[124,-14,66,13.787744227185218],[124,-14,67,13.809157527559972],[124,-14,68,13.82247750292498],[124,-14,69,13.820535808030403],[124,-14,70,13.81190068525163],[124,-14,71,13.804795960143805],[124,-14,72,13.726075869574307],[124,-14,73,13.599256815510328],[124,-14,74,13.410802552892598],[124,-14,75,13.424691670326077],[124,-14,76,13.481993251571774],[124,-14,77,13.581207501988791],[124,-14,78,13.699889810251305],[124,-14,79,13.8216934862612],[124,-13,64,13.615310378231216],[124,-13,65,13.5902039374264],[124,-13,66,13.595239204740642],[124,-13,67,13.61736725537248],[124,-13,68,13.633156149723353],[124,-13,69,13.62953783854278],[124,-13,70,13.618655267883954],[124,-13,71,13.611417345938921],[124,-13,72,13.589241023051498],[124,-13,73,13.459700773453692],[124,-13,74,13.255259673992077],[124,-13,75,13.225840903659408],[124,-13,76,13.282692037115728],[124,-13,77,13.382274667791522],[124,-13,78,13.501510301132122],[124,-13,79,13.624296611227043],[124,-12,64,13.409735957171183],[124,-12,65,13.383624334842365],[124,-12,66,13.39003937000398],[124,-12,67,13.41527546153688],[124,-12,68,13.431151863031877],[124,-12,69,13.427783963095168],[124,-12,70,13.414159487364927],[124,-12,71,13.40785279266666],[124,-12,72,13.392510010558857],[124,-12,73,13.261391879842972],[124,-12,74,13.095595468030284],[124,-12,75,13.0308495733249],[124,-12,76,13.087785505387506],[124,-12,77,13.190629230792286],[124,-12,78,13.309091359638378],[124,-12,79,13.432723928336026],[124,-11,64,13.212243235214887],[124,-11,65,13.185837853893922],[124,-11,66,13.19551713691015],[124,-11,67,13.220120359828043],[124,-11,68,13.236971612254237],[124,-11,69,13.231274805166592],[124,-11,70,13.21961497992008],[124,-11,71,13.215718434367925],[124,-11,72,13.214276366139575],[124,-11,73,13.074989353430983],[124,-11,74,12.911024990224307],[124,-11,75,12.84307928561636],[124,-11,76,12.899950596730061],[124,-11,77,13.004215041805546],[124,-11,78,13.12234118467932],[124,-11,79,13.243523373021176],[124,-10,64,13.00853498608564],[124,-10,65,12.984769627731009],[124,-10,66,12.991858572518165],[124,-10,67,13.015919016138726],[124,-10,68,13.035912022439836],[124,-10,69,13.030300221437237],[124,-10,70,13.017910730442551],[124,-10,71,13.014418368297731],[124,-10,72,13.013460360436945],[124,-10,73,12.882595948791103],[124,-10,74,12.727185542493734],[124,-10,75,12.650423906791081],[124,-10,76,12.707498958409367],[124,-10,77,12.811403176394208],[124,-10,78,12.932883113551094],[124,-10,79,13.053584963072526],[124,-9,64,12.821269556287842],[124,-9,65,12.801061919260947],[124,-9,66,12.804967428631238],[124,-9,67,12.828741292162814],[124,-9,68,12.847245753221971],[124,-9,69,12.845395444385721],[124,-9,70,12.831057568768419],[124,-9,71,12.829336849784632],[124,-9,72,12.823730850849804],[124,-9,73,12.686707539640016],[124,-9,74,12.53712263233429],[124,-9,75,12.458836479882052],[124,-9,76,12.516288102135336],[124,-9,77,12.617969176485852],[124,-9,78,12.74349133598464],[124,-9,79,12.865319516104314],[124,-8,64,12.629798050255614],[124,-8,65,12.60876626753968],[124,-8,66,12.61313012650821],[124,-8,67,12.635755631462422],[124,-8,68,12.65493933875911],[124,-8,69,12.654734376616178],[124,-8,70,12.642782395308716],[124,-8,71,12.640476932353469],[124,-8,72,12.630111892374364],[124,-8,73,12.456598575381495],[124,-8,74,12.311986904457942],[124,-8,75,12.269307583123922],[124,-8,76,12.322448860788153],[124,-8,77,12.426839242425643],[124,-8,78,12.552386827962183],[124,-8,79,12.673880747969834],[124,-7,64,12.43593454212502],[124,-7,65,12.41239748078481],[124,-7,66,12.417088447886076],[124,-7,67,12.439945366980002],[124,-7,68,12.45910039425282],[124,-7,69,12.45764417319493],[124,-7,70,12.448716572928026],[124,-7,71,12.445983094027195],[124,-7,72,12.436704684298464],[124,-7,73,12.268449875276097],[124,-7,74,12.104145689154041],[124,-7,75,12.077867223415971],[124,-7,76,12.12977329880573],[124,-7,77,12.236116645474906],[124,-7,78,12.362302341912702],[124,-7,79,12.483585805753892],[124,-6,64,12.239823315610513],[124,-6,65,12.213849297859328],[124,-6,66,12.221426614496174],[124,-6,67,12.244466889667606],[124,-6,68,12.263694451570423],[124,-6,69,12.263156074704394],[124,-6,70,12.25369419871759],[124,-6,71,12.247623196808053],[124,-6,72,12.242463717468452],[124,-6,73,12.0751980231578],[124,-6,74,11.894358698283943],[124,-6,75,11.88553362999149],[124,-6,76,11.938124866526971],[124,-6,77,12.043021236560284],[124,-6,78,12.17184831273466],[124,-6,79,12.296326679915538],[124,-5,64,12.043069779530333],[124,-5,65,12.017221972648057],[124,-5,66,12.022726870073285],[124,-5,67,12.048229843786615],[124,-5,68,12.070809955443073],[124,-5,69,12.069391895532547],[124,-5,70,12.056930214161486],[124,-5,71,12.05147455513743],[124,-5,72,12.047452251681408],[124,-5,73,12.040237890364144],[124,-5,74,11.94752020363528],[124,-5,75,11.794940289666163],[124,-5,76,11.7422480842436],[124,-5,77,11.84595393123517],[124,-5,78,11.972807750591041],[124,-5,79,12.10108260614014],[124,-4,64,11.835725424229603],[124,-4,65,11.813558124642059],[124,-4,66,11.818529093355558],[124,-4,67,11.845424163251838],[124,-4,68,11.866569262482397],[124,-4,69,11.865857917050072],[124,-4,70,11.852074385057048],[124,-4,71,11.846904159416946],[124,-4,72,11.843796305228487],[124,-4,73,11.831432914509607],[124,-4,74,11.75001658150969],[124,-4,75,11.59987354298847],[124,-4,76,11.550340294744979],[124,-4,77,11.65435421772631],[124,-4,78,11.780652169405515],[124,-4,79,11.908789654943305],[124,-3,64,11.632762014240866],[124,-3,65,11.61129107987602],[124,-3,66,11.616493011262385],[124,-3,67,11.642631337976137],[124,-3,68,11.665902950394042],[124,-3,69,11.667063622217997],[124,-3,70,11.6543021830266],[124,-3,71,11.652675990584436],[124,-3,72,11.648507440465222],[124,-3,73,11.637570745094335],[124,-3,74,11.595195455349542],[124,-3,75,11.446049185301037],[124,-3,76,11.361359595224975],[124,-3,77,11.468379841174816],[124,-3,78,11.594804024399556],[124,-3,79,11.725186734759173],[124,-2,64,11.43434488962018],[124,-2,65,11.41184826508317],[124,-2,66,11.419667524676143],[124,-2,67,11.44620850456874],[124,-2,68,11.469572200812276],[124,-2,69,11.47021888302518],[124,-2,70,11.460638560137452],[124,-2,71,11.456619336928071],[124,-2,72,11.448642268355307],[124,-2,73,11.437105506849294],[124,-2,74,11.390350823102183],[124,-2,75,11.254059803912387],[124,-2,76,11.169033674387437],[124,-2,77,11.274887747902573],[124,-2,78,11.40444775572676],[124,-2,79,11.531247510278591],[124,-1,64,11.240108216782092],[124,-1,65,11.217849176438122],[124,-1,66,11.227881999744111],[124,-1,67,11.255264849894644],[124,-1,68,11.27591343333762],[124,-1,69,11.278324215150667],[124,-1,70,11.271520009476612],[124,-1,71,11.265403320810497],[124,-1,72,11.255980636476961],[124,-1,73,11.245288054449913],[124,-1,74,11.18357906946081],[124,-1,75,11.059039612416333],[124,-1,76,10.978333732740335],[124,-1,77,11.08433813847932],[124,-1,78,11.212516440605757],[124,-1,79,11.338134955953484],[124,0,64,10.967925608824682],[124,0,65,10.945930993200959],[124,0,66,10.953055679313778],[124,0,67,10.977500542820223],[124,0,68,10.990724928444783],[124,0,69,10.973178717581026],[124,0,70,10.945004273909396],[124,0,71,10.92220189069606],[124,0,72,10.896682414033155],[124,0,73,10.86123750801106],[124,0,74,10.83322176418553],[124,0,75,10.834000166842198],[124,0,76,10.8859539434125],[124,0,77,10.991319217692265],[124,0,78,11.11341638354724],[124,0,79,11.236274632410048],[124,1,64,10.774882825853442],[124,1,65,10.754981389952734],[124,1,66,10.760842783699092],[124,1,67,10.786341481184081],[124,1,68,10.797931558510927],[124,1,69,10.781661948540139],[124,1,70,10.753327257791431],[124,1,71,10.732073891079285],[124,1,72,10.703343148321748],[124,1,73,10.664929704229328],[124,1,74,10.636958155549742],[124,1,75,10.63935071721884],[124,1,76,10.693600667872683],[124,1,77,10.797783111746602],[124,1,78,10.91949442323987],[124,1,79,11.04334224323441],[124,2,64,10.57994391818528],[124,2,65,10.559020272809288],[124,2,66,10.568915791863132],[124,2,67,10.594117316478767],[124,2,68,10.606792436863662],[124,2,69,10.590823206319591],[124,2,70,10.560059520863069],[124,2,71,10.538362141762061],[124,2,72,10.50801192239496],[124,2,73,10.469962607283984],[124,2,74,10.442641613800971],[124,2,75,10.445120897128891],[124,2,76,10.49978248807376],[124,2,77,10.603472530600607],[124,2,78,10.726595725914933],[124,2,79,10.849905553357088],[124,3,64,10.386756859686447],[124,3,65,10.36603867079758],[124,3,66,10.376104377237565],[124,3,67,10.401099523656432],[124,3,68,10.41510476851882],[124,3,69,10.397220845524938],[124,3,70,10.367978995676129],[124,3,71,10.344318028226699],[124,3,72,10.313225890745253],[124,3,73,10.275094970093411],[124,3,74,10.245881198663204],[124,3,75,10.25041065023271],[124,3,76,10.305965938459508],[124,3,77,10.408416040780203],[124,3,78,10.532337753407996],[124,3,79,10.657649601993946],[124,4,64,10.195698846415132],[124,4,65,10.174698293693766],[124,4,66,10.180885333678198],[124,4,67,10.207132706991901],[124,4,68,10.220564343961836],[124,4,69,10.205317264088489],[124,4,70,10.175059671887478],[124,4,71,10.149710951629865],[124,4,72,10.11651893504657],[124,4,73,10.08002054597465],[124,4,74,10.049370589288879],[124,4,75,10.052017655390342],[124,4,76,10.109116145661732],[124,4,77,10.211494823993192],[124,4,78,10.334557197273236],[124,4,79,10.463761779813527],[124,5,64,10.005771225498275],[124,5,65,9.980000914183394],[124,5,66,9.98727700555334],[124,5,67,10.014995556885596],[124,5,68,10.025209445793207],[124,5,69,10.010643442463971],[124,5,70,9.983121356456369],[124,5,71,9.954687714954133],[124,5,72,9.92168475019938],[124,5,73,9.884885793220487],[124,5,74,9.855111813832396],[124,5,75,9.85836529922156],[124,5,76,9.914363946151566],[124,5,77,10.01500566217721],[124,5,78,10.138000913487478],[124,5,79,10.269345692727798],[124,6,64,9.814072916183445],[124,6,65,9.788246800526275],[124,6,66,9.79577123168019],[124,6,67,9.82024807696656],[124,6,68,9.83074995277065],[124,6,69,9.816350437942422],[124,6,70,9.78773897393582],[124,6,71,9.759423315228453],[124,6,72,9.725819666738998],[124,6,73,9.68957588352995],[124,6,74,9.660481804369143],[124,6,75,9.664729390325748],[124,6,76,9.722147927919098],[124,6,77,9.820360324206552],[124,6,78,9.94475187154844],[124,6,79,10.07388433357327],[124,7,64,9.622900487969023],[124,7,65,9.597236530390678],[124,7,66,9.603038431440607],[124,7,67,9.625106101538263],[124,7,68,9.638715807804878],[124,7,69,9.622262544785151],[124,7,70,9.592287474198601],[124,7,71,9.566447619979334],[124,7,72,9.533307164116593],[124,7,73,9.497046019385742],[124,7,74,9.466280799804036],[124,7,75,9.47218198425155],[124,7,76,9.527698686055725],[124,7,77,9.625574636381975],[124,7,78,9.751887706134445],[124,7,79,9.880483773062565],[124,8,64,9.432756000878669],[124,8,65,9.404945587970857],[124,8,66,9.41273253646495],[124,8,67,9.436596935342669],[124,8,68,9.450796204508128],[124,8,69,9.437624436916025],[124,8,70,9.40784337094712],[124,8,71,9.381327384603487],[124,8,72,9.347422062134347],[124,8,73,9.313892518226744],[124,8,74,9.285426222762911],[124,8,75,9.290229220512318],[124,8,76,9.347469244235349],[124,8,77,9.445267920189991],[124,8,78,9.567957819073781],[124,8,79,9.6927866560948],[124,9,64,9.23980882083859],[124,9,65,9.20679971473401],[124,9,66,9.211711664051602],[124,9,67,9.234406042927557],[124,9,68,9.249200002427406],[124,9,69,9.235973060842303],[124,9,70,9.206990782435156],[124,9,71,9.180347865646247],[124,9,72,9.146319726442083],[124,9,73,9.111781518308499],[124,9,74,9.085278937528308],[124,9,75,9.093933518993913],[124,9,76,9.150570998408275],[124,9,77,9.248941961785084],[124,9,78,9.371071637482292],[124,9,79,9.495730103421137],[124,10,64,9.048766383090777],[124,10,65,9.016407465853703],[124,10,66,9.019430573264229],[124,10,67,9.038854854443937],[124,10,68,9.057024222990835],[124,10,69,9.04419660157879],[124,10,70,9.014366228424905],[124,10,71,8.987035569530367],[124,10,72,8.951579257352579],[124,10,73,8.913994836494336],[124,10,74,8.890758130282553],[124,10,75,8.901393703278341],[124,10,76,8.957744503707783],[124,10,77,9.055732752201083],[124,10,78,9.176174806346282],[124,10,79,9.299371759785837],[124,11,64,8.856312144138792],[124,11,65,8.82607043015841],[124,11,66,8.830542643563582],[124,11,67,8.846879028463626],[124,11,68,8.863064891302795],[124,11,69,8.852228943658446],[124,11,70,8.822979351375544],[124,11,71,8.794765585602288],[124,11,72,8.757996368890035],[124,11,73,8.717604251675256],[124,11,74,8.695360692261499],[124,11,75,8.70639389194369],[124,11,76,8.76346253313119],[124,11,77,8.862019054263328],[124,11,78,8.982959830955828],[124,11,79,9.105473498361556],[124,12,64,8.669255169421785],[124,12,65,8.638903759445062],[124,12,66,8.64005681383511],[124,12,67,8.65735685328496],[124,12,68,8.668770413607637],[124,12,69,8.66072248896993],[124,12,70,8.630776352478277],[124,12,71,8.601220037955732],[124,12,72,8.563142693556964],[124,12,73,8.520740598541975],[124,12,74,8.4989972288345],[124,12,75,8.509325548930345],[124,12,76,8.566571532183993],[124,12,77,8.668541705467062],[124,12,78,8.790387436182206],[124,12,79,8.912076806655767],[124,13,64,8.481679220218506],[124,13,65,8.452655480395114],[124,13,66,8.457588628685013],[124,13,67,8.4773274364157],[124,13,68,8.48750105700581],[124,13,69,8.476545525642123],[124,13,70,8.445960854904797],[124,13,71,8.415592171601425],[124,13,72,8.378336416173235],[124,13,73,8.336672576103899],[124,13,74,8.314484517527777],[124,13,75,8.324401381140696],[124,13,76,8.383910714324212],[124,13,77,8.48353427085119],[124,13,78,8.602753201960194],[124,13,79,8.72333250182383],[124,14,64,8.288194694261286],[124,14,65,8.26245392612924],[124,14,66,8.26755347129389],[124,14,67,8.287060715348437],[124,14,68,8.296099627651843],[124,14,69,8.282365907459182],[124,14,70,8.25214645489531],[124,14,71,8.220229178631612],[124,14,72,8.184083862935893],[124,14,73,8.14425080045276],[124,14,74,8.119462706944526],[124,14,75,8.12950741507383],[124,14,76,8.191096008961113],[124,14,77,8.288622562206836],[124,14,78,8.408260473071948],[124,14,79,8.527440037051239],[124,15,64,8.092606176363134],[124,15,65,8.068817655603112],[124,15,66,8.074007246507696],[124,15,67,8.094200425878226],[124,15,68,8.10297400453926],[124,15,69,8.088438607743116],[124,15,70,8.058308913594571],[124,15,71,8.025595574798817],[124,15,72,7.990575042770475],[124,15,73,7.952662202883298],[124,15,74,7.926951004902609],[124,15,75,7.9367990991856505],[124,15,76,7.995229742259525],[124,15,77,8.094515329640904],[124,15,78,8.212739355905619],[124,15,79,8.332792713880423],[124,16,64,7.897568701133614],[124,16,65,7.876260077290585],[124,16,66,7.885228113259343],[124,16,67,7.906130559337278],[124,16,68,7.9177964651504],[124,16,69,7.902607257205799],[124,16,70,7.874793064600924],[124,16,71,7.842185403488795],[124,16,72,7.805378905781793],[124,16,73,7.766718254809774],[124,16,74,7.742222186055983],[124,16,75,7.752527383029569],[124,16,76,7.8097778847499795],[124,16,77,7.911653146959572],[124,16,78,8.031251774727929],[124,16,79,8.155183777817617],[124,17,64,7.70323063032821],[124,17,65,7.6815610255462525],[124,17,66,7.690051429650639],[124,17,67,7.71170524254718],[124,17,68,7.723641670423333],[124,17,69,7.711067325043505],[124,17,70,7.683166367909689],[124,17,71,7.649753202626084],[124,17,72,7.608555676756987],[124,17,73,7.56933636463455],[124,17,74,7.544103323168818],[124,17,75,7.553244060037703],[124,17,76,7.611091821535599],[124,17,77,7.712787061909682],[124,17,78,7.833756162221722],[124,17,79,7.959363817209115],[124,18,64,7.5084145340203134],[124,18,65,7.486825786772353],[124,18,66,7.4964132633757385],[124,18,67,7.520039728242573],[124,18,68,7.533765370433572],[124,18,69,7.519690982671865],[124,18,70,7.492011375577939],[124,18,71,7.454110077774324],[124,18,72,7.411347028852425],[124,18,73,7.370068200209363],[124,18,74,7.34465863422811],[124,18,75,7.353780287488059],[124,18,76,7.4128504038349226],[124,18,77,7.516422719215928],[124,18,78,7.636440607281452],[124,18,79,7.762049779989786],[124,19,64,7.31376786917053],[124,19,65,7.29119617978116],[124,19,66,7.300618300868336],[124,19,67,7.328922545101724],[124,19,68,7.340976354827983],[124,19,69,7.326209385220948],[124,19,70,7.297293440473137],[124,19,71,7.259219836909618],[124,19,72,7.214540311877383],[124,19,73,7.172693123128004],[124,19,74,7.146235740133443],[124,19,75,7.159044990908433],[124,19,76,7.217291715899025],[124,19,77,7.321916091333162],[124,19,78,7.439310172520846],[124,19,79,7.563080525822724],[124,20,64,7.123190011810215],[124,20,65,7.09605001003796],[124,20,66,7.106858641626638],[124,20,67,7.134404829859315],[124,20,68,7.1465196479459525],[124,20,69,7.130804435319494],[124,20,70,7.099361165940266],[124,20,71,7.060821961472885],[124,20,72,7.0153374563884086],[124,20,73,6.972980529231911],[124,20,74,6.944946939865803],[124,20,75,6.957002403720865],[124,20,76,7.015529817557775],[124,20,77,7.119885927424944],[124,20,78,7.239883272256958],[124,20,79,7.365636134485542],[124,21,64,6.936113933938424],[124,21,65,6.906808449069564],[124,21,66,6.918814700707467],[124,21,67,6.945615609639151],[124,21,68,6.955625655967361],[124,21,69,6.935638973281797],[124,21,70,6.899146491842601],[124,21,71,6.857038660431729],[124,21,72,6.803890584737575],[124,21,73,6.755056680678785],[124,21,74,6.7266423722443],[124,21,75,6.7352368533363025],[124,21,76,6.796350718577081],[124,21,77,6.90168965509374],[124,21,78,7.026638665347573],[124,21,79,7.151907190480731],[124,22,64,6.742232684075909],[124,22,65,6.7150776914832795],[124,22,66,6.725930416862319],[124,22,67,6.750582648681876],[124,22,68,6.7607921842535506],[124,22,69,6.742467551663253],[124,22,70,6.704567437367317],[124,22,71,6.660677212602374],[124,22,72,6.607120185288952],[124,22,73,6.554298941772566],[124,22,74,6.529041700327225],[124,22,75,6.537194136054318],[124,22,76,6.5990240692669815],[124,22,77,6.704586980231843],[124,22,78,6.829021622262764],[124,22,79,6.955853982196003],[124,23,64,6.54613539933632],[124,23,65,6.520342645345103],[124,23,66,6.5309904180819185],[124,23,67,6.555121281761572],[124,23,68,6.564432480524047],[124,23,69,6.5483764059021725],[124,23,70,6.508988469024872],[124,23,71,6.463431794443033],[124,23,72,6.409544242674395],[124,23,73,6.355748170007117],[124,23,74,6.329520618340922],[124,23,75,6.340135408408907],[124,23,76,6.4021123446459764],[124,23,77,6.506332095481791],[124,23,78,6.631370305895171],[124,23,79,6.760359317599363],[124,24,64,6.358697536765008],[124,24,65,6.335494639832933],[124,24,66,6.343241354907991],[124,24,67,6.364094296915706],[124,24,68,6.373736989104829],[124,24,69,6.3584420317523],[124,24,70,6.318298244079649],[124,24,71,6.272713376279657],[124,24,72,6.22079805127937],[124,24,73,6.166651504035588],[124,24,74,6.140208958281884],[124,24,75,6.153731385200676],[124,24,76,6.213648837144285],[124,24,77,6.31930305207678],[124,24,78,6.444134039681416],[124,24,79,6.573127964892944],[124,25,64,6.164886646620546],[124,25,65,6.139391681825387],[124,25,66,6.143212990487845],[124,25,67,6.158696570758967],[124,25,68,6.169148843556397],[124,25,69,6.151600890352284],[124,25,70,6.1159723697310655],[124,25,71,6.075002837117144],[124,25,72,6.027598482997784],[124,25,73,5.9822400295104305],[124,25,74,5.956355579727006],[124,25,75,5.9685949004156456],[124,25,76,6.025996067082667],[124,25,77,6.128493567831376],[124,25,78,6.249425886196729],[124,25,79,6.376023110992695],[124,26,64,5.97134466428423],[124,26,65,5.941259557513786],[124,26,66,5.945577993970506],[124,26,67,5.963562451509364],[124,26,68,5.971417632114362],[124,26,69,5.956531166504164],[124,26,70,5.921496380348141],[124,26,71,5.880779922540326],[124,26,72,5.8323744218375255],[124,26,73,5.786879348063518],[124,26,74,5.764042828094649],[124,26,75,5.77492184819999],[124,26,76,5.831269784823567],[124,26,77,5.9339539537544965],[124,26,78,6.054674412687132],[124,26,79,6.180769248633624],[124,27,64,5.774723805593426],[124,27,65,5.745535261376372],[124,27,66,5.749394835383598],[124,27,67,5.769184178468738],[124,27,68,5.777442985187482],[124,27,69,5.760486892451152],[124,27,70,5.726401266606183],[124,27,71,5.686955375749437],[124,27,72,5.635349596310316],[124,27,73,5.591258047956773],[124,27,74,5.569879341900505],[124,27,75,5.580414770696637],[124,27,76,5.636626422200534],[124,27,77,5.739710045681423],[124,27,78,5.859194466816671],[124,27,79,5.985803634566786],[124,28,64,5.575556075611667],[124,28,65,5.547629658865435],[124,28,66,5.5529320568774505],[124,28,67,5.573560735847102],[124,28,68,5.5799112267422],[124,28,69,5.5630427314331765],[124,28,70,5.528982565597132],[124,28,71,5.48765619975983],[124,28,72,5.432844986093041],[124,28,73,5.391999216080282],[124,28,74,5.367429432364439],[124,28,75,5.378319087450748],[124,28,76,5.439189766752419],[124,28,77,5.540362973351058],[124,28,78,5.659552542596306],[124,28,79,5.786824356900704],[124,29,64,5.380191457599057],[124,29,65,5.3507943742748525],[124,29,66,5.357907158721735],[124,29,67,5.38190267405861],[124,29,68,5.391002108353063],[124,29,69,5.37483998999574],[124,29,70,5.339746975619613],[124,29,71,5.296737934382672],[124,29,72,5.240776505561703],[124,29,73,5.199232829168542],[124,29,74,5.175741840900289],[124,29,75,5.186976116314608],[124,29,76,5.249232848756233],[124,29,77,5.3505096892523145],[124,29,78,5.468375882210979],[124,29,79,5.594496463873182],[124,30,64,5.18628462421185],[124,30,65,5.1547981287759335],[124,30,66,5.165692323814865],[124,30,67,5.190544303386629],[124,30,68,5.199726101306082],[124,30,69,5.183267047476611],[124,30,70,5.147377767396273],[124,30,71,5.1022086911257185],[124,30,72,5.047658744072837],[124,30,73,5.004162437320428],[124,30,74,4.980886740663212],[124,30,75,4.992582042773235],[124,30,76,5.052331542320938],[124,30,77,5.156061179892374],[124,30,78,5.273847664170296],[124,30,79,5.398354479483058],[124,31,64,4.988459549446245],[124,31,65,4.961517314485829],[124,31,66,4.974278939880472],[124,31,67,4.996924142137403],[124,31,68,5.008007050731649],[124,31,69,4.9907245714349395],[124,31,70,4.9525635377857045],[124,31,71,4.910325866767608],[124,31,72,4.85492231162556],[124,31,73,4.811211591863448],[124,31,74,4.784855672728087],[124,31,75,4.795625686373095],[124,31,76,4.85362670055477],[124,31,77,4.957834575173734],[124,31,78,5.079082557177178],[124,31,79,5.202803766871065],[124,32,64,4.802816856839367],[124,32,65,4.776678143943068],[124,32,66,4.789835507481122],[124,32,67,4.8145491026748095],[124,32,68,4.826751076896479],[124,32,69,4.80831011388811],[124,32,70,4.771481530966522],[124,32,71,4.728645786131868],[124,32,72,4.671300458949703],[124,32,73,4.6263335512741515],[124,32,74,4.599708390572837],[124,32,75,4.60869605700134],[124,32,76,4.665748807626874],[124,32,77,4.771715872458825],[124,32,78,4.894989751001424],[124,32,79,5.0195492565965],[124,33,64,4.616179135394937],[124,33,65,4.592852650508982],[124,33,66,4.605176901718735],[124,33,67,4.629743618662715],[124,33,68,4.643613858807256],[124,33,69,4.625369077491829],[124,33,70,4.585571048497023],[124,33,71,4.53646653510085],[124,33,72,4.4722723953062955],[124,33,73,4.421086519856688],[124,33,74,4.3933571662125415],[124,33,75,4.398601008434105],[124,33,76,4.45860162128714],[124,33,77,4.565005129995155],[124,33,78,4.694192496636156],[124,33,79,4.821223006186039],[124,34,64,4.421704976857569],[124,34,65,4.3980743439740575],[124,34,66,4.411881960287355],[124,34,67,4.435897537050616],[124,34,68,4.4477754052426235],[124,34,69,4.432958217197073],[124,34,70,4.390842954236525],[124,34,71,4.340725723846924],[124,34,72,4.278398687463776],[124,34,73,4.225072304633476],[124,34,74,4.19619928696676],[124,34,75,4.201678901481314],[124,34,76,4.26483721947826],[124,34,77,4.372770402621329],[124,34,78,4.501548873046583],[124,34,79,4.629583538846499],[124,35,64,4.22806328402169],[124,35,65,4.200161686002716],[124,35,66,4.212357517069087],[124,35,67,4.237744006666943],[124,35,68,4.251800895596805],[124,35,69,4.2378820714901515],[124,35,70,4.195848182553524],[124,35,71,4.145550204916012],[124,35,72,4.083755979470728],[124,35,73,4.0291802633146565],[124,35,74,4.0009636680699865],[124,35,75,4.008544207081785],[124,35,76,4.073976589722612],[124,35,77,4.181177446217618],[124,35,78,4.307049202221614],[124,35,79,4.434045659560439],[124,36,64,4.023542624378117],[124,36,65,3.9950881550747708],[124,36,66,4.008808979495364],[124,36,67,4.036578922282307],[124,36,68,4.049279163790394],[124,36,69,4.03344451452079],[124,36,70,3.9951269474514493],[124,36,71,3.943286547714953],[124,36,72,3.880202126706782],[124,36,73,3.8255406939306287],[124,36,74,3.795920876949954],[124,36,75,3.8076760996250916],[124,36,76,3.872299235245052],[124,36,77,3.980436351090112],[124,36,78,4.105197422505422],[124,36,79,4.229518217797237],[124,37,64,3.8227063426495276],[124,37,65,3.7946717905867207],[124,37,66,3.805631580673894],[124,37,67,3.835174987007978],[124,37,68,3.8460479679351485],[124,37,69,3.8269684255202883],[124,37,70,3.7945513315623747],[124,37,71,3.7477168479518714],[124,37,72,3.689636489509771],[124,37,73,3.63793833720099],[124,37,74,3.610214352651148],[124,37,75,3.625124234123107],[124,37,76,3.688022738685843],[124,37,77,3.794204282323626],[124,37,78,3.9157179385350314],[124,37,79,4.039986179011646],[124,38,64,3.6242997550169225],[124,38,65,3.5979013355444427],[124,38,66,3.609965237603718],[124,38,67,3.639799945349312],[124,38,68,3.652482462908586],[124,38,69,3.633934725855256],[124,38,70,3.59906912460133],[124,38,71,3.5555239556723603],[124,38,72,3.4965065713296353],[124,38,73,3.4449384957352622],[124,38,74,3.4171150889782784],[124,38,75,3.431273195962871],[124,38,76,3.4933100722415613],[124,38,77,3.5989176340578757],[124,38,78,3.721702018616933],[124,38,79,3.8457088318086377],[124,39,64,3.428190658061781],[124,39,65,3.402607874702637],[124,39,66,3.4146084144877764],[124,39,67,3.443717561278748],[124,39,68,3.457612785106226],[124,39,69,3.440005554620936],[124,39,70,3.4053239916540865],[124,39,71,3.362687668619127],[124,39,72,3.3022658044600295],[124,39,73,3.251064245449322],[124,39,74,3.225014914633851],[124,39,75,3.2392467990848743],[124,39,76,3.2988236954727967],[124,39,77,3.402958220832498],[124,39,78,3.5261080958674396],[124,39,79,3.651960879294185],[124,40,64,3.245258237240825],[124,40,65,3.2186562106184002],[124,40,66,3.233850037643823],[124,40,67,3.262156883171358],[124,40,68,3.2759951005062082],[124,40,69,3.2566298801857796],[124,40,70,3.2217392247045438],[124,40,71,3.1788894034461737],[124,40,72,3.120467551204249],[124,40,73,3.068558426288391],[124,40,74,3.04306098525924],[124,40,75,3.057657667652888],[124,40,76,3.1144409680418232],[124,40,77,3.217965992964994],[124,40,78,3.341860538173961],[124,40,79,3.468512958774797],[124,41,64,3.0520170476113613],[124,41,65,3.0263109259863787],[124,41,66,3.0397869480043616],[124,41,67,3.0691110920159854],[124,41,68,3.0821955446645073],[124,41,69,3.064059114320485],[124,41,70,3.0270422502392],[124,41,71,2.9822002730197186],[124,41,72,2.9228715048960354],[124,41,73,2.872782550660294],[124,41,74,2.848200665803546],[124,41,75,2.8610652169177695],[124,41,76,2.915902811003078],[124,41,77,3.0219291620904882],[124,41,78,3.145690199092597],[124,41,79,3.2739593961759916],[124,42,64,2.857491114993795],[124,42,65,2.8339926854929347],[124,42,66,2.84650750368412],[124,42,67,2.874785492809127],[124,42,68,2.889088796681341],[124,42,69,2.8710995456382995],[124,42,70,2.8311679450161233],[124,42,71,2.7847058949554135],[124,42,72,2.7261424459902712],[124,42,73,2.6764106837282275],[124,42,74,2.653709429161204],[124,42,75,2.6634786083181163],[124,42,76,2.7193612491441312],[124,42,77,2.824357390311499],[124,42,78,2.9502665692392114],[124,42,79,3.0815255715133416],[124,43,64,2.663488936514994],[124,43,65,2.6385010898556116],[124,43,66,2.6531697749570653],[124,43,67,2.6805723407586703],[124,43,68,2.695810842419135],[124,43,69,2.6764022450357925],[124,43,70,2.636574901331189],[124,43,71,2.588636662560627],[124,43,72,2.531398396137127],[124,43,73,2.481235682250253],[124,43,74,2.4561013583017095],[124,43,75,2.4635371306791343],[124,43,76,2.521622719726074],[124,43,77,2.6257149396940145],[124,43,78,2.750924503996176],[124,43,79,2.8850320617240084],[124,44,64,2.4592702445790615],[124,44,65,2.433517467787274],[124,44,66,2.4483084873703427],[124,44,67,2.4777526665556895],[124,44,68,2.494209951335554],[124,44,69,2.4768940910257773],[124,44,70,2.434727438176092],[124,44,71,2.3889751211054633],[124,44,72,2.329552300971672],[124,44,73,2.275651849614959],[124,44,74,2.2487290663565953],[124,44,75,2.255371621352187],[124,44,76,2.3148027713969954],[124,44,77,2.4168994673186033],[124,44,78,2.5447158857576957],[124,44,79,2.6770855831705815],[124,45,64,2.2435983026185697],[124,45,65,2.2232481450525152],[124,45,66,2.2414964329939706],[124,45,67,2.2773362137499067],[124,45,68,2.2984628611221187],[124,45,69,2.283363911967458],[124,45,70,2.242555637898718],[124,45,71,2.1976215160082124],[124,45,72,2.1379166414985975],[124,45,73,2.082446295682249],[124,45,74,2.05574409173798],[124,45,75,2.0607809173869978],[124,45,76,2.1194011280706104],[124,45,77,2.2250203355304],[124,45,78,2.354485761514863],[124,45,79,2.4888913098678582],[124,46,64,2.044972088296368],[124,46,65,2.0269623865795534],[124,46,66,2.0470020896287817],[124,46,67,2.084659584315134],[124,46,68,2.105740442628467],[124,46,69,2.091222276834221],[124,46,70,2.050751842513131],[124,46,71,2.0047402630482565],[124,46,72,1.9440762343896572],[124,46,73,1.8877103357555225],[124,46,74,1.8615988699370567],[124,46,75,1.8688097786459674],[124,46,76,1.9260256713559483],[124,46,77,2.031649476630518],[124,46,78,2.1604816755655296],[124,46,79,2.2945946515977282],[124,47,64,1.8487676057170108],[124,47,65,1.8301751786504172],[124,47,66,1.8538843823186024],[124,47,67,1.8928636228579765],[124,47,68,1.9130002710507965],[124,47,69,1.9005157232237158],[124,47,70,1.8582590435945854],[124,47,71,1.8104320640539129],[124,47,72,1.7484355172171444],[124,47,73,1.6898901809260172],[124,47,74,1.6657130146829888],[124,47,75,1.6745251016703941],[124,47,76,1.73304540809514],[124,47,77,1.837654273193568],[124,47,78,1.9648099094722038],[124,47,79,2.099054280398087],[124,48,64,1.6688232935616925],[124,48,65,1.6496718943034774],[124,48,66,1.6725286240749844],[124,48,67,1.7154329074473438],[124,48,68,1.734204771031386],[124,48,69,1.721498927035949],[124,48,70,1.6804482993706262],[124,48,71,1.6280392582352055],[124,48,72,1.5662456013119337],[124,48,73,1.5096767885424278],[124,48,74,1.4821122148702353],[124,48,75,1.493314623409336],[124,48,76,1.5509169222636758],[124,48,77,1.654767980258061],[124,48,78,1.782303007087523],[124,48,79,1.9135296918997906],[124,49,64,1.4789933737783847],[124,49,65,1.4609983984604873],[124,49,66,1.4830432966170355],[124,49,67,1.523820110717051],[124,49,68,1.5443020720784308],[124,49,69,1.529070077530318],[124,49,70,1.487270438661471],[124,49,71,1.4345662993921102],[124,49,72,1.3702097278990197],[124,49,73,1.3130827830875191],[124,49,74,1.2852382366917323],[124,49,75,1.2952876616094038],[124,49,76,1.3514889028695385],[124,49,77,1.4545583997559866],[124,49,78,1.5800354164732435],[124,49,79,1.7118353717485877],[124,50,64,1.2870022061459514],[124,50,65,1.2662756056136975],[124,50,66,1.2894682013061913],[124,50,67,1.3279361835296943],[124,50,68,1.3519840831533223],[124,50,69,1.333415720063261],[124,50,70,1.2908558551109273],[124,50,71,1.236656166136442],[124,50,72,1.1724842114210112],[124,50,73,1.1160884499257406],[124,50,74,1.0876623015076774],[124,50,75,1.098972011892658],[124,50,76,1.1544914396010708],[124,50,77,1.2565011009280636],[124,50,78,1.3819594219521962],[124,50,79,1.5118951967707228],[124,51,64,1.0956189906399638],[124,51,65,1.073946343126368],[124,51,66,1.0944575925716995],[124,51,67,1.1327544897767052],[124,51,68,1.154819744590979],[124,51,69,1.1387470395619892],[124,51,70,1.094079347034803],[124,51,71,1.0384538417023246],[124,51,72,0.9754979116971586],[124,51,73,0.9170161927177449],[124,51,74,0.8892381969026097],[124,51,75,0.9000649060692758],[124,51,76,0.9581533825447219],[124,51,77,1.0596514144847724],[124,51,78,1.1849793611956658],[124,51,79,1.3167008593298348],[124,52,64,0.9516223572439321],[124,52,65,0.9280386657082834],[124,52,66,0.9473699607298502],[124,52,67,0.983368377116947],[124,52,68,1.0069633897895984],[124,52,69,0.9934252916739632],[124,52,70,0.9495541799131776],[124,52,71,0.8949628127215271],[124,52,72,0.827736265475925],[124,52,73,0.7708093308498507],[124,52,74,0.7393446378220658],[124,52,75,0.7504182344403553],[124,52,76,0.8101451105054991],[124,52,77,0.9120589836375945],[124,52,78,1.0369971277694714],[124,52,79,1.1698935962014982],[124,53,64,0.7628030350754316],[124,53,65,0.7384474990902633],[124,53,66,0.7559715349453845],[124,53,67,0.7894923740718381],[124,53,68,0.8114756884606282],[124,53,69,0.7993851220679585],[124,53,70,0.753857708161328],[124,53,71,0.6988250532940775],[124,53,72,0.6314973715293485],[124,53,73,0.57313561757114],[124,53,74,0.5402251173509257],[124,53,75,0.5505382640532386],[124,53,76,0.6114894505839934],[124,53,77,0.7152921849409737],[124,53,78,0.8410781999693371],[124,53,79,0.97250079498208],[124,54,64,0.5698156759367118],[124,54,65,0.5448709588255771],[124,54,66,0.5595797007412668],[124,54,67,0.5927542174770007],[124,54,68,0.615785423729968],[124,54,69,0.6018165327800269],[124,54,70,0.5594313680095071],[124,54,71,0.5059008999475151],[124,54,72,0.4374691210372186],[124,54,73,0.376208922936886],[124,54,74,0.3437932334407513],[124,54,75,0.35526271145575095],[124,54,76,0.4153690007109928],[124,54,77,0.5200163491414569],[124,54,78,0.6447694024744297],[124,54,79,0.777573090801534],[124,55,64,0.3765159404379398],[124,55,65,0.35000575031782344],[124,55,66,0.36601208774678073],[124,55,67,0.39975409501464954],[124,55,68,0.42081120148051293],[124,55,69,0.4049652463906306],[124,55,70,0.3639069168714044],[124,55,71,0.31027601752081246],[124,55,72,0.23757364339598133],[124,55,73,0.18125369188565327],[124,55,74,0.14906648529079697],[124,55,75,0.16097401215571225],[124,55,76,0.21941600860209085],[124,55,77,0.3246722151943699],[124,55,78,0.44888607118028157],[124,55,79,0.5837527992944633],[124,56,64,0.19519792487738882],[124,56,65,0.16727726193974624],[124,56,66,0.18398333603240277],[124,56,67,0.22262173213826386],[124,56,68,0.24192387534880988],[124,56,69,0.22124950976480132],[124,56,70,0.17950528827870643],[124,56,71,0.12676806107389932],[124,56,72,0.05387392488490486],[124,56,73,0.008604982827490809],[124,56,74,0.0023760826112891043],[124,56,75,0.008898764497636269],[124,56,76,0.03562731624838825],[124,56,77,0.13983072529418894],[124,56,78,0.2656767452091378],[124,56,79,0.403895595278301],[124,57,64,0.008925805951295024],[124,57,65,-0.007233683649997047],[124,57,66,-0.006461884949964081],[124,57,67,0.02117802364078092],[124,57,68,0.038502699437549553],[124,57,69,0.018108347419802606],[124,57,70,-0.013564073192868065],[124,57,71,-0.023355616738672424],[124,57,72,-0.03985297347972663],[124,57,73,-0.04940919627638274],[124,57,74,-0.053379526200887456],[124,57,75,-0.0476251224557952],[124,57,76,-0.03067631449709457],[124,57,77,-0.006809042077152577],[124,57,78,0.06361406996187291],[124,57,79,0.19899030623176284],[124,58,64,0.0058747342144358505],[124,58,65,-0.013683148722617458],[124,58,66,-0.01593782200518154],[124,58,67,-0.00819209800779444],[124,58,68,-0.006489833127427153],[124,58,69,-0.009196952994522167],[124,58,70,-0.021011631848136744],[124,58,71,-0.031482639791590133],[124,58,72,-0.04671164193569008],[124,58,73,-0.058568640627428364],[124,58,74,-0.06341958607717858],[124,58,75,-0.0557233850462478],[124,58,76,-0.0380335387272796],[124,58,77,-0.015762844285299588],[124,58,78,0.014585150555451065],[124,58,79,0.04632225641423221],[124,59,64,-0.04629985625170471],[124,59,65,-0.0631504113820841],[124,59,66,-0.06664312436137043],[124,59,67,-0.05985087249679305],[124,59,68,-0.05624443378093104],[124,59,69,-0.059393474647740044],[124,59,70,-0.07119199413688694],[124,59,71,-0.08205593067118497],[124,59,72,-0.09576558964635427],[124,59,73,-0.10679462635037094],[124,59,74,-0.11168580809223462],[124,59,75,-0.10633929956374508],[124,59,76,-0.08941560286169495],[124,59,77,-0.06273041401765928],[124,59,78,-0.03398869864246776],[124,59,79,-0.004853490367951491],[124,60,64,-0.10544332964907377],[124,60,65,-0.12243762665782745],[124,60,66,-0.12703059569182779],[124,60,67,-0.11824101083064771],[124,60,68,-0.11444600723729287],[124,60,69,-0.1203546188836026],[124,60,70,-0.12841403486025704],[124,60,71,-0.13768620318150582],[124,60,72,-0.15235558900641916],[124,60,73,-0.16354051798636587],[124,60,74,-0.1683421471117929],[124,60,75,-0.1642269700724662],[124,60,76,-0.14787643844059778],[124,60,77,-0.11988203799109531],[124,60,78,-0.0928090711324383],[124,60,79,-0.06415095611158561],[124,61,64,-0.15088700841388736],[124,61,65,-0.1647314110814293],[124,61,66,-0.16308037444324047],[124,61,67,-0.15339580518317025],[124,61,68,-0.1507774166659267],[124,61,69,-0.15703804815272526],[124,61,70,-0.1638969029925897],[124,61,71,-0.1756525215047277],[124,61,72,-0.19236841114247713],[124,61,73,-0.20414060223624994],[124,61,74,-0.20791398993657373],[124,61,75,-0.2026011384863902],[124,61,76,-0.18547408946206984],[124,61,77,-0.16017220167706714],[124,61,78,-0.12919280666629177],[124,61,79,-0.10004491816777998],[124,62,64,-0.20036517164733086],[124,62,65,-0.2129514666962441],[124,62,66,-0.21053751132420484],[124,62,67,-0.20199935608495112],[124,62,68,-0.1983259664859623],[124,62,69,-0.20480041336893376],[124,62,70,-0.21432262797649532],[124,62,71,-0.22501826283270926],[124,62,72,-0.24342300321793622],[124,62,73,-0.25590376260378556],[124,62,74,-0.25732301937975977],[124,62,75,-0.25042400939615495],[124,62,76,-0.23468766121434928],[124,62,77,-0.20946869366987322],[124,62,78,-0.17685521029944512],[124,62,79,-0.14735297423462784],[124,63,64,-0.32058619008924094],[124,63,65,-0.3309680861215779],[124,63,66,-0.32909962741576315],[124,63,67,-0.31897994402174557],[124,63,68,-0.31420677105638073],[124,63,69,-0.31993205963895743],[124,63,70,-0.3284144116143179],[124,63,71,-0.3405435359788446],[124,63,72,-0.35708321499684686],[124,63,73,-0.3697012799647094],[124,63,74,-0.36981429200953647],[124,63,75,-0.3592146855842786],[124,63,76,-0.3431403614409315],[124,63,77,-0.3161525719859831],[124,63,78,-0.2838497394230135],[124,63,79,-0.24982144967030756],[124,64,64,-0.35808106204964496],[124,64,65,-0.371509664326155],[124,64,66,-0.36901716118258177],[124,64,67,-0.36003075248314964],[124,64,68,-0.3538219204750223],[124,64,69,-0.360114214004845],[124,64,70,-0.37052925702423767],[124,64,71,-0.3798334904441677],[124,64,72,-0.3975143894336211],[124,64,73,-0.40983453350970445],[124,64,74,-0.40978190543136483],[124,64,75,-0.40183523202814575],[124,64,76,-0.3823490482578391],[124,64,77,-0.3568554865747784],[124,64,78,-0.32316818290299465],[124,64,79,-0.2871010021571662],[124,65,64,-0.406126188801546],[124,65,65,-0.42003507067412715],[124,65,66,-0.4199720552299021],[124,65,67,-0.41064221875145523],[124,65,68,-0.4056447137352393],[124,65,69,-0.4109096783914828],[124,65,70,-0.42125017199821996],[124,65,71,-0.43213241469746133],[124,65,72,-0.4478386068573168],[124,65,73,-0.46052251046503123],[124,65,74,-0.4582961140558531],[124,65,75,-0.4532845980596833],[124,65,76,-0.436366858776258],[124,65,77,-0.410793726163042],[124,65,78,-0.3745215137280157],[124,65,79,-0.33616692259951075],[124,66,64,-0.4602413830324228],[124,66,65,-0.47518643728212306],[124,66,66,-0.4750602592692985],[124,66,67,-0.4673354411412411],[124,66,68,-0.46316949239623195],[124,66,69,-0.46703513673684843],[124,66,70,-0.4795748866786649],[124,66,71,-0.4908233191080248],[124,66,72,-0.504990408533374],[124,66,73,-0.5152734242793147],[124,66,74,-0.5159348735039941],[124,66,75,-0.5112155613233588],[124,66,76,-0.49538525525571486],[124,66,77,-0.46938452602808456],[124,66,78,-0.43167851932299356],[124,66,79,-0.3933526482596224],[124,67,64,-0.5083662871363678],[124,67,65,-0.5236655610547349],[124,67,66,-0.5256514423357689],[124,67,67,-0.519153986036671],[124,67,68,-0.5130765786535426],[124,67,69,-0.5172245924742312],[124,67,70,-0.533010706875763],[124,67,71,-0.542719326294211],[124,67,72,-0.5573033221276578],[124,67,73,-0.5669665938384564],[124,67,74,-0.569554157299879],[124,67,75,-0.5647395016685186],[124,67,76,-0.5490581219552508],[124,67,77,-0.5207925049342483],[124,67,78,-0.48550539689235406],[124,67,79,-0.4469821388124678],[124,68,64,-0.6487568641524211],[124,68,65,-0.6657869068194185],[124,68,66,-0.6665408126724005],[124,68,67,-0.661482539982337],[124,68,68,-0.6583845181396808],[124,68,69,-0.6615294499480155],[124,68,70,-0.6761410671035288],[124,68,71,-0.685747077187262],[124,68,72,-0.70194646411291],[124,68,73,-0.7141329114922292],[124,68,74,-0.7180728721856388],[124,68,75,-0.7117965112445572],[124,68,76,-0.6947947320848578],[124,68,77,-0.6638377971432544],[124,68,78,-0.6290072040671457],[124,68,79,-0.5924897044679164],[124,69,64,-0.7002798304576802],[124,69,65,-0.7194649320416141],[124,69,66,-0.7234806645235751],[124,69,67,-0.719341898467213],[124,69,68,-0.7166696747517183],[124,69,69,-0.7191264339291841],[124,69,70,-0.7292424032015016],[124,69,71,-0.7417417124815257],[124,69,72,-0.7599472206151414],[124,69,73,-0.7765759535415296],[124,69,74,-0.7812918500437473],[124,69,75,-0.7764205347985249],[124,69,76,-0.7558950878344443],[124,69,77,-0.7217171420732785],[124,69,78,-0.6865698073484527],[124,69,79,-0.6509292150754639],[124,70,64,-0.7521213274705718],[124,70,65,-0.7700298951646416],[124,70,66,-0.7746181233043353],[124,70,67,-0.7737114561466197],[124,70,68,-0.7671009154588323],[124,70,69,-0.7725224892629222],[124,70,70,-0.7776786294401334],[124,70,71,-0.7927338628494374],[124,70,72,-0.8095912637158872],[124,70,73,-0.8291121476189136],[124,70,74,-0.8318230213110255],[124,70,75,-0.8282519891087862],[124,70,76,-0.8081226336966302],[124,70,77,-0.7724199748347027],[124,70,78,-0.7361742112384225],[124,70,79,-0.7010125771130913],[124,71,64,-0.7912013983635169],[124,71,65,-0.8102026220481198],[124,71,66,-0.8169180094666733],[124,71,67,-0.8153873346702974],[124,71,68,-0.8096105377802103],[124,71,69,-0.8136911567695501],[124,71,70,-0.8197561636364464],[124,71,71,-0.8330179722153076],[124,71,72,-0.8527589997562169],[124,71,73,-0.871736379391814],[124,71,74,-0.8758583063309032],[124,71,75,-0.870186389470031],[124,71,76,-0.8462616939154092],[124,71,77,-0.8159416715655797],[124,71,78,-0.7793719574190167],[124,71,79,-0.7449478386190109],[124,72,64,-0.8438110891512444],[124,72,65,-0.8636895232680084],[124,72,66,-0.8675076973960956],[124,72,67,-0.868065180433836],[124,72,68,-0.8628735248232233],[124,72,69,-0.8653182609218659],[124,72,70,-0.8711941075055936],[124,72,71,-0.8840318301769247],[124,72,72,-0.9036670367805102],[124,72,73,-0.9206627440866368],[124,72,74,-0.9256471884584611],[124,72,75,-0.9210249163215812],[124,72,76,-0.8965369115922802],[124,72,77,-0.865545550801261],[124,72,78,-0.8266905525625003],[124,72,79,-0.7945127132332028],[124,73,64,-0.9057041312784528],[124,73,65,-0.9218799287817983],[124,73,66,-0.9197293174368214],[124,73,67,-0.914889967685059],[124,73,68,-0.9099340297812472],[124,73,69,-0.9101379054540594],[124,73,70,-0.9158393437476922],[124,73,71,-0.9277241421381044],[124,73,72,-0.9486431297277615],[124,73,73,-0.9598613686659901],[124,73,74,-0.9659308131853598],[124,73,75,-0.9602269505228167],[124,73,76,-0.938024623288541],[124,73,77,-0.9099523869939432],[124,73,78,-0.876562877465106],[124,73,79,-0.8490344367186958],[124,74,64,-0.9650344585208865],[124,74,65,-0.977861469003777],[124,74,66,-0.9764368376681506],[124,74,67,-0.9698089334533009],[124,74,68,-0.966278233556465],[124,74,69,-0.966302845996416],[124,74,70,-0.9716295235768849],[124,74,71,-0.9846589473540456],[124,74,72,-1.006457334772184],[124,74,73,-1.0188952163321408],[124,74,74,-1.0200952885209773],[124,74,75,-1.0171398218434295],[124,74,76,-0.9953421609479798],[124,74,77,-0.9677925537054972],[124,74,78,-0.9341394740985789],[124,74,79,-0.9074685668497057],[124,75,64,-1.0174225249757183],[124,75,65,-1.027148100664555],[124,75,66,-1.0270897598290085],[124,75,67,-1.0198893248660497],[124,75,68,-1.0147984037287971],[124,75,69,-1.0149214792491943],[124,75,70,-1.0216453398930483],[124,75,71,-1.034784230819076],[124,75,72,-1.056362411775496],[124,75,73,-1.0680529004697887],[124,75,74,-1.0713800586820947],[124,75,75,-1.068576622549037],[124,75,76,-1.0482841268606204],[124,75,77,-1.021792737679011],[124,75,78,-0.9892120868382971],[124,75,79,-0.9612159337013564],[124,76,64,-1.0638945895832865],[124,76,65,-1.0747517016199317],[124,76,66,-1.0717027354562103],[124,76,67,-1.0649318337601996],[124,76,68,-1.060638551833064],[124,76,69,-1.0612528153093912],[124,76,70,-1.0714942301519543],[124,76,71,-1.0856977963459329],[124,76,72,-1.1055552643845679],[124,76,73,-1.1199708344112445],[124,76,74,-1.1248460182223896],[124,76,75,-1.1218751939992504],[124,76,76,-1.1029679547689792],[124,76,77,-1.0733715896478968],[124,76,78,-1.0443499378537449],[124,76,79,-1.0110921116204419],[124,77,64,-1.1095441659935728],[124,77,65,-1.1195214578932207],[124,77,66,-1.1174885291175354],[124,77,67,-1.1086373014395563],[124,77,68,-1.105344502189764],[124,77,69,-1.1102620940745762],[124,77,70,-1.1215912955465346],[124,77,71,-1.1368869535137802],[124,77,72,-1.157470077783455],[124,77,73,-1.1745983625017153],[124,77,74,-1.1792117905301331],[124,77,75,-1.175501876075937],[124,77,76,-1.1572675751421477],[124,77,77,-1.129635211248222],[124,77,78,-1.096701145031184],[124,77,79,-1.0628781634353208],[124,78,64,-1.160742605831805],[124,78,65,-1.167757389280055],[124,78,66,-1.1628577013328663],[124,78,67,-1.1542716665113957],[124,78,68,-1.1505390794689707],[124,78,69,-1.1588617018282608],[124,78,70,-1.170056595420061],[124,78,71,-1.1881352440879338],[124,78,72,-1.2082186854231922],[124,78,73,-1.2254716825623841],[124,78,74,-1.230997111414371],[124,78,75,-1.2266163361302318],[124,78,76,-1.2104222053847382],[124,78,77,-1.18508527835599],[124,78,78,-1.1491495478218172],[124,78,79,-1.1173014138485928],[124,79,64,-1.1993176542731803],[124,79,65,-1.2071880969778674],[124,79,66,-1.2010187008745723],[124,79,67,-1.1909467295303948],[124,79,68,-1.1903549259121147],[124,79,69,-1.1985174585908878],[124,79,70,-1.2091736916671534],[124,79,71,-1.227846543346894],[124,79,72,-1.2477168453538956],[124,79,73,-1.2660402665103327],[124,79,74,-1.2752061726476907],[124,79,75,-1.2699864662713587],[124,79,76,-1.2570568692291373],[124,79,77,-1.231025471011538],[124,79,78,-1.1984126670808555],[124,79,79,-1.1662958789024447],[124,80,64,-1.249428783373143],[124,80,65,-1.2595919356959624],[124,80,66,-1.2507763705338084],[124,80,67,-1.2398601947203174],[124,80,68,-1.238489509708449],[124,80,69,-1.245884668816588],[124,80,70,-1.2572991454166422],[124,80,71,-1.2751759104400229],[124,80,72,-1.297689049800189],[124,80,73,-1.316759916487098],[124,80,74,-1.3267469196661912],[124,80,75,-1.3249354825799584],[124,80,76,-1.3099713752915887],[124,80,77,-1.2846707587704842],[124,80,78,-1.254800654210015],[124,80,79,-1.2207659542173948],[124,81,64,-1.2997748217023566],[124,81,65,-1.3077922179611203],[124,81,66,-1.2973310202292068],[124,81,67,-1.2831685192538562],[124,81,68,-1.2783721227812224],[124,81,69,-1.285308459307632],[124,81,70,-1.2990607718559866],[124,81,71,-1.3214834242327984],[124,81,72,-1.3471746456179439],[124,81,73,-1.3705210325781783],[124,81,74,-1.3826375256338315],[124,81,75,-1.380201948189305],[124,81,76,-1.3665978443349371],[124,81,77,-1.3418089023601818],[124,81,78,-1.3157843830882383],[124,81,79,-1.2816513783945571],[124,82,64,-1.3576979311328368],[124,82,65,-1.363114527827837],[124,82,66,-1.351149315834717],[124,82,67,-1.337488719826477],[124,82,68,-1.3333657196840272],[124,82,69,-1.34046217267829],[124,82,70,-1.3538640806632019],[124,82,71,-1.3762211868428695],[124,82,72,-1.4045706489304748],[124,82,73,-1.4277775613592047],[124,82,74,-1.4400846958559672],[124,82,75,-1.43749907562326],[124,82,76,-1.426998937071425],[124,82,77,-1.401348960337296],[124,82,78,-1.3738566969292565],[124,82,79,-1.335986744607716],[124,83,64,-1.4054403409803538],[124,83,65,-1.4113587830684227],[124,83,66,-1.3978627789992577],[124,83,67,-1.3864410001459329],[124,83,68,-1.3833657664466725],[124,83,69,-1.3921087457644274],[124,83,70,-1.4043563751388617],[124,83,71,-1.4241146979544714],[124,83,72,-1.4534163606692785],[124,83,73,-1.4789433725598005],[124,83,74,-1.4951400356936573],[124,83,75,-1.4919559290874354],[124,83,76,-1.4799541536353003],[124,83,77,-1.4569261006158625],[124,83,78,-1.4259084490464669],[124,83,79,-1.387720360136441],[124,84,64,-1.4469785794313106],[124,84,65,-1.4535446539310388],[124,84,66,-1.4437792461575891],[124,84,67,-1.4320681682904282],[124,84,68,-1.4303163272766117],[124,84,69,-1.4400508587369432],[124,84,70,-1.454777836010205],[124,84,71,-1.4727081709330998],[124,84,72,-1.5054275876450753],[124,84,73,-1.5308109591243007],[124,84,74,-1.544920517512471],[124,84,75,-1.5453166983454139],[124,84,76,-1.5336818814713438],[124,84,77,-1.5093257294694442],[124,84,78,-1.4781165059168586],[124,84,79,-1.4375352632840328],[124,85,64,-1.4957529081164178],[124,85,65,-1.5071264067530212],[124,85,66,-1.5040499696254375],[124,85,67,-1.4923183403097935],[124,85,68,-1.4896178986682753],[124,85,69,-1.497471090989884],[124,85,70,-1.514053420683799],[124,85,71,-1.5333617004049795],[124,85,72,-1.5608924449041843],[124,85,73,-1.5820170110459606],[124,85,74,-1.5957865144804895],[124,85,75,-1.5967293886207157],[124,85,76,-1.584210571160183],[124,85,77,-1.557210296391621],[124,85,78,-1.5224192913401802],[124,85,79,-1.479107141098087],[124,86,64,-1.546568979390529],[124,86,65,-1.5573038902571685],[124,86,66,-1.5557689612035697],[124,86,67,-1.5447508711217104],[124,86,68,-1.539419773873798],[124,86,69,-1.5454766082317817],[124,86,70,-1.56279466500751],[124,86,71,-1.5857625834708704],[124,86,72,-1.6125266341181006],[124,86,73,-1.632412451045593],[124,86,74,-1.6478218188810536],[124,86,75,-1.647429661770787],[124,86,76,-1.634372284549892],[124,86,77,-1.609141305677836],[124,86,78,-1.5746784252805837],[124,86,79,-1.5302337239033346],[124,87,64,-1.5856560450236217],[124,87,65,-1.598411171989523],[124,87,66,-1.59672234247406],[124,87,67,-1.585942884897207],[124,87,68,-1.5805697915465025],[124,87,69,-1.5872984745039251],[124,87,70,-1.6056936326815672],[124,87,71,-1.6305999850421533],[124,87,72,-1.6557127521973607],[124,87,73,-1.67593246914434],[124,87,74,-1.6921667489556744],[124,87,75,-1.6934596860229447],[124,87,76,-1.678500837454525],[124,87,77,-1.6537878084708475],[124,87,78,-1.618798087221057],[124,87,79,-1.574643764100868],[124,88,64,-1.6337466490659063],[124,88,65,-1.6477330572704285],[124,88,66,-1.6480871599435787],[124,88,67,-1.6387375558750201],[124,88,68,-1.6313192157059406],[124,88,69,-1.6377195107276032],[124,88,70,-1.6562266770455856],[124,88,71,-1.6808361263055671],[124,88,72,-1.705936520384499],[124,88,73,-1.7274524470204513],[124,88,74,-1.744555501458452],[124,88,75,-1.7470185201808193],[124,88,76,-1.729439720901332],[124,88,77,-1.7037016641014644],[124,88,78,-1.6682156413263773],[124,88,79,-1.6247097813084566],[124,89,64,-1.6844284202770532],[124,89,65,-1.6985700921088072],[124,89,66,-1.6999082740771765],[124,89,67,-1.6908624286532674],[124,89,68,-1.6840179693955375],[124,89,69,-1.6891541917062205],[124,89,70,-1.7052331402076764],[124,89,71,-1.7279377423716282],[124,89,72,-1.7580094934527979],[124,89,73,-1.7821627026096136],[124,89,74,-1.7965007249466411],[124,89,75,-1.7990897548916296],[124,89,76,-1.7798692027755427],[124,89,77,-1.7530493457535088],[124,89,78,-1.716136136828499],[124,89,79,-1.6733334967208124],[124,90,64,-1.7391482876079345],[124,90,65,-1.7521925643989347],[124,90,66,-1.7551824574900226],[124,90,67,-1.7485975689071522],[124,90,68,-1.7417930205935317],[124,90,69,-1.7457401687891667],[124,90,70,-1.7591078284061763],[124,90,71,-1.7836715052425955],[124,90,72,-1.8161815201494242],[124,90,73,-1.8425689076701663],[124,90,74,-1.8540722327322912],[124,90,75,-1.856110542464953],[124,90,76,-1.8393533684345076],[124,90,77,-1.80805438362167],[124,90,78,-1.7714277211167933],[124,90,79,-1.7271777665189205],[124,91,64,-1.784476443353265],[124,91,65,-1.8010430855877937],[124,91,66,-1.8035345207203377],[124,91,67,-1.7966831060375679],[124,91,68,-1.7934323844887259],[124,91,69,-1.7962566312100017],[124,91,70,-1.808612192411747],[124,91,71,-1.8322322796365866],[124,91,72,-1.8661647187193318],[124,91,73,-1.8922366920534113],[124,91,74,-1.9049939545385344],[124,91,75,-1.9071604375012456],[124,91,76,-1.889781607652905],[124,91,77,-1.8598064726300785],[124,91,78,-1.8213448830787347],[124,91,79,-1.7777164771011507],[124,92,64,-1.8212511899914525],[124,92,65,-1.8395131719150672],[124,92,66,-1.8455089108561868],[124,92,67,-1.8420543432782295],[124,92,68,-1.8390301961260052],[124,92,69,-1.842963125446061],[124,92,70,-1.855369544857689],[124,92,71,-1.8788882589028697],[124,92,72,-1.9139663885923266],[124,92,73,-1.9381569192462627],[124,92,74,-1.9524343399675146],[124,92,75,-1.9534556399447989],[124,92,76,-1.9384883082687423],[124,92,77,-1.9088917714573381],[124,92,78,-1.867427112231667],[124,92,79,-1.8243146437596787],[124,93,64,-1.8620290063015976],[124,93,65,-1.8812702876482539],[124,93,66,-1.8919205268405577],[124,93,67,-1.8881641681942203],[124,93,68,-1.886159665928132],[124,93,69,-1.8919952179082133],[124,93,70,-1.9077786679770063],[124,93,71,-1.9341709881414797],[124,93,72,-1.968864476496051],[124,93,73,-1.9955642784011203],[124,93,74,-2.0100013321303236],[124,93,75,-2.0109549363316224],[124,93,76,-1.9961073992640623],[124,93,77,-1.9682134551313384],[124,93,78,-1.9232139819680842],[124,93,79,-1.8777460677123845],[124,94,64,-1.9119660285232423],[124,94,65,-1.9316763253611708],[124,94,66,-1.9396039263049571],[124,94,67,-1.93626479749205],[124,94,68,-1.933315119992149],[124,94,69,-1.9418407582939428],[124,94,70,-1.9595424488934041],[124,94,71,-1.986210608889455],[124,94,72,-2.021385388052427],[124,94,73,-2.048941692924404],[124,94,74,-2.059506877123439],[124,94,75,-2.060380584622232],[124,94,76,-2.0458058624630353],[124,94,77,-2.0165215252924025],[124,94,78,-1.9748481002502176],[124,94,79,-1.9288150027975561],[124,95,64,-1.9540544834973164],[124,95,65,-1.974766371207188],[124,95,66,-1.9806664660224718],[124,95,67,-1.9750800850020005],[124,95,68,-1.9714255029344776],[124,95,69,-1.9818215528049785],[124,95,70,-2.0007022606858347],[124,95,71,-2.028884950043669],[124,95,72,-2.064730643237722],[124,95,73,-2.092901077498857],[124,95,74,-2.1047012446334734],[124,95,75,-2.1055137556873396],[124,95,76,-2.08853353300015],[124,95,77,-2.0569878065695972],[124,95,78,-2.0177566287988236],[124,95,79,-1.9708071033393133],[124,96,64,-2.0067347439089542],[124,96,65,-2.0270677666991253],[124,96,66,-2.0291847662336173],[124,96,67,-2.023101739900967],[124,96,68,-2.020893334126303],[124,96,69,-2.0307780937804276],[124,96,70,-2.0514302751395164],[124,96,71,-2.0774294692392936],[124,96,72,-2.1148304026846194],[124,96,73,-2.139889338976941],[124,96,74,-2.15317123094212],[124,96,75,-2.1546345361485186],[124,96,76,-2.1368630629716554],[124,96,77,-2.1075434382728626],[124,96,78,-2.0655381837435134],[124,96,79,-2.022843695669421],[124,97,64,-2.068515165318592],[124,97,65,-2.0821676205034803],[124,97,66,-2.0829144728263143],[124,97,67,-2.0733747952253507],[124,97,68,-2.0712253201776947],[124,97,69,-2.0801935977668347],[124,97,70,-2.1007831819890805],[124,97,71,-2.121152442412565],[124,97,72,-2.1522379115286627],[124,97,73,-2.1769309373921715],[124,97,74,-2.1891676649923957],[124,97,75,-2.1919020785650494],[124,97,76,-2.178240020653666],[124,97,77,-2.148206214312699],[124,97,78,-2.1088294635852654],[124,97,79,-2.070787034013881],[124,98,64,-2.1223583617674997],[124,98,65,-2.137907606868624],[124,98,66,-2.137083723180384],[124,98,67,-2.1272189246480737],[124,98,68,-2.1281774092122943],[124,98,69,-2.136948893572254],[124,98,70,-2.1536978035521717],[124,98,71,-2.174058540553249],[124,98,72,-2.204348576004404],[124,98,73,-2.227946643737436],[124,98,74,-2.243780672612668],[124,98,75,-2.245646657810984],[124,98,76,-2.231030713785633],[124,98,77,-2.2013185791797736],[124,98,78,-2.1642237206747885],[124,98,79,-2.126307485353101],[124,99,64,-2.1726066461255487],[124,99,65,-2.1891697008914517],[124,99,66,-2.1837666725668816],[124,99,67,-2.176990533166372],[124,99,68,-2.1777364814258493],[124,99,69,-2.186035206258949],[124,99,70,-2.202280386321075],[124,99,71,-2.2200777378790786],[124,99,72,-2.2499108839776296],[124,99,73,-2.275989680317766],[124,99,74,-2.291360902931694],[124,99,75,-2.292485695300528],[124,99,76,-2.2780297669890057],[124,99,77,-2.247405228237224],[124,99,78,-2.212809402602869],[124,99,79,-2.1741068365365672],[124,100,64,-2.20349742009011],[124,100,65,-2.211292657488145],[124,100,66,-2.200335604106993],[124,100,67,-2.187377626715765],[124,100,68,-2.181193684225111],[124,100,69,-2.1826384423770837],[124,100,70,-2.195302643873661],[124,100,71,-2.2116576218382176],[124,100,72,-2.2399649865601643],[124,100,73,-2.264282983371884],[124,100,74,-2.278047777495367],[124,100,75,-2.2784799256108332],[124,100,76,-2.264935900419965],[124,100,77,-2.23409662465274],[124,100,78,-2.197619289059961],[124,100,79,-2.1610608996413543],[124,101,64,-2.2525996378638227],[124,101,65,-2.2591803319959842],[124,101,66,-2.247674270046138],[124,101,67,-2.2372651795257648],[124,101,68,-2.2288836931723166],[124,101,69,-2.2300666552891992],[124,101,70,-2.2412649226564696],[124,101,71,-2.2575323035185733],[124,101,72,-2.2878899189750914],[124,101,73,-2.3129923773805903],[124,101,74,-2.3290484983192017],[124,101,75,-2.3285942340900387],[124,101,76,-2.312711595930784],[124,101,77,-2.2821878160607114],[124,101,78,-2.2463953148075673],[124,101,79,-2.2112481311032877],[124,102,64,-2.3044765094826123],[124,102,65,-2.304881804178593],[124,102,66,-2.2981070525493563],[124,102,67,-2.284238606154614],[124,102,68,-2.2758471347123925],[124,102,69,-2.2771352157926725],[124,102,70,-2.2883103449671376],[124,102,71,-2.307540104428082],[124,102,72,-2.334986151611957],[124,102,73,-2.361762423449797],[124,102,74,-2.378247243600377],[124,102,75,-2.376111686141615],[124,102,76,-2.361320615968021],[124,102,77,-2.330699830095234],[124,102,78,-2.2953744079334264],[124,102,79,-2.2596325572799723],[124,103,64,-2.3496462430472254],[124,103,65,-2.348204750409335],[124,103,66,-2.3409560640640734],[124,103,67,-2.3256560112856244],[124,103,68,-2.31803456407282],[124,103,69,-2.319250592597998],[124,103,70,-2.330099595738144],[124,103,71,-2.350678476950934],[124,103,72,-2.383041853581164],[124,103,73,-2.4075074453387937],[124,103,74,-2.4222722049670007],[124,103,75,-2.420565710595574],[124,103,76,-2.403715816380764],[124,103,77,-2.375301947264594],[124,103,78,-2.3435855769598537],[124,103,79,-2.305534068655246],[124,104,64,-2.3996579067579518],[124,104,65,-2.400662273239889],[124,104,66,-2.389755821684968],[124,104,67,-2.3727053745205176],[124,104,68,-2.364717128325744],[124,104,69,-2.3690722290235477],[124,104,70,-2.3814615452621224],[124,104,71,-2.3999559496510443],[124,104,72,-2.4335391113114384],[124,104,73,-2.4568182012080606],[124,104,74,-2.4698184105205283],[124,104,75,-2.4698975199152855],[124,104,76,-2.455823220759643],[124,104,77,-2.425753825146497],[124,104,78,-2.394683091920291],[124,104,79,-2.3597934796201314],[124,105,64,-2.4458554609929313],[124,105,65,-2.446230580274749],[124,105,66,-2.4352904310644505],[124,105,67,-2.421436615607038],[124,105,68,-2.412422734243249],[124,105,69,-2.416692321252864],[124,105,70,-2.4312178820199652],[124,105,71,-2.451264138502588],[124,105,72,-2.4856526431563912],[124,105,73,-2.5093122404796957],[124,105,74,-2.5209442529212627],[124,105,75,-2.5232813694286444],[124,105,76,-2.507894285692754],[124,105,77,-2.475095362676755],[124,105,78,-2.4428347218806343],[124,105,79,-2.4052225512219496],[124,106,64,-2.502707992470712],[124,106,65,-2.502929575400981],[124,106,66,-2.489270008945236],[124,106,67,-2.4794800638432557],[124,106,68,-2.4694233783628383],[124,106,69,-2.470749066744411],[124,106,70,-2.486567574048668],[124,106,71,-2.5082035976542394],[124,106,72,-2.5388268337732396],[124,106,73,-2.562909713055604],[124,106,74,-2.5734781103602744],[124,106,75,-2.5760857680819806],[124,106,76,-2.562068850225458],[124,106,77,-2.531542541693946],[124,106,78,-2.498316914714851],[124,106,79,-2.4602935700125435],[124,107,64,-2.552130623685213],[124,107,65,-2.5525091689019295],[124,107,66,-2.5401576651061863],[124,107,67,-2.5279360563354083],[124,107,68,-2.5174929123204515],[124,107,69,-2.5208251480267556],[124,107,70,-2.5343039435239287],[124,107,71,-2.556885911730972],[124,107,72,-2.5857109006631545],[124,107,73,-2.608620791212813],[124,107,74,-2.6213200937571584],[124,107,75,-2.6253093388738717],[124,107,76,-2.6100978911806365],[124,107,77,-2.5828995014418754],[124,107,78,-2.5476033548332335],[124,107,79,-2.5077307755411633],[124,108,64,-2.5994066950743373],[124,108,65,-2.5997693852307604],[124,108,66,-2.589129496855486],[124,108,67,-2.576822672218626],[124,108,68,-2.565130586915983],[124,108,69,-2.5721278063517587],[124,108,70,-2.5872323966167703],[124,108,71,-2.6089790800666903],[124,108,72,-2.6361868527700807],[124,108,73,-2.660959500142368],[124,108,74,-2.6746398709720722],[124,108,75,-2.6770135269788504],[124,108,76,-2.664300831150894],[124,108,77,-2.638493357377519],[124,108,78,-2.603160413823357],[124,108,79,-2.561746060533517],[124,109,64,-2.65076039768892],[124,109,65,-2.6514561476434295],[124,109,66,-2.6421161651037153],[124,109,67,-2.6273094846968412],[124,109,68,-2.618812108182913],[124,109,69,-2.6262879283207683],[124,109,70,-2.6398205250704914],[124,109,71,-2.661326230928555],[124,109,72,-2.684295014126705],[124,109,73,-2.709023307723116],[124,109,74,-2.72074036597866],[124,109,75,-2.720895335027328],[124,109,76,-2.709679644028014],[124,109,77,-2.686928067861447],[124,109,78,-2.6568472005523915],[124,109,79,-2.6183765920589877],[124,110,64,-2.6992929852311254],[124,110,65,-2.70140609274916],[124,110,66,-2.6922561868083537],[124,110,67,-2.6751600162638343],[124,110,68,-2.6675081838536965],[124,110,69,-2.67571779266487],[124,110,70,-2.6878066656444752],[124,110,71,-2.7080909272413454],[124,110,72,-2.732365724911979],[124,110,73,-2.7592823636701778],[124,110,74,-2.7689624374080655],[124,110,75,-2.7681683183390207],[124,110,76,-2.757508936919029],[124,110,77,-2.7342654518667544],[124,110,78,-2.7057815628687205],[124,110,79,-2.669169414613518],[124,111,64,-2.742950835661334],[124,111,65,-2.745176016031662],[124,111,66,-2.7337169548442857],[124,111,67,-2.7179687213886474],[124,111,68,-2.7100975809555803],[124,111,69,-2.7167105728934504],[124,111,70,-2.7311400440807625],[124,111,71,-2.752971107644418],[124,111,72,-2.777292282961791],[124,111,73,-2.8027270605452697],[124,111,74,-2.8131537113460143],[124,111,75,-2.8140099205157063],[124,111,76,-2.803100631859628],[124,111,77,-2.7799212080291054],[124,111,78,-2.7528424287121287],[124,111,79,-2.717016767789877],[124,112,64,-2.792302723237538],[124,112,65,-2.793834907471221],[124,112,66,-2.783461556678514],[124,112,67,-2.768629639901141],[124,112,68,-2.7584019465119027],[124,112,69,-2.76393081355413],[124,112,70,-2.779354541510893],[124,112,71,-2.7987214162081404],[124,112,72,-2.8244760093886603],[124,112,73,-2.84696811650729],[124,112,74,-2.8610320306820634],[124,112,75,-2.860964582104474],[124,112,76,-2.849427633442363],[124,112,77,-2.8283909348243537],[124,112,78,-2.800656803960069],[124,112,79,-2.767409385109873],[124,113,64,-2.8411039970136933],[124,113,65,-2.8447238341342804],[124,113,66,-2.831923710395386],[124,113,67,-2.818096996641774],[124,113,68,-2.806843388101587],[124,113,69,-2.81385685265715],[124,113,70,-2.8283788877369167],[124,113,71,-2.8446619062489216],[124,113,72,-2.871015514725494],[124,113,73,-2.8911781097409066],[124,113,74,-2.907825629486264],[124,113,75,-2.9076510410650673],[124,113,76,-2.896524140889023],[124,113,77,-2.876250235205799],[124,113,78,-2.8495767424720784],[124,113,79,-2.8164869595492634],[124,114,64,-2.8955644316092775],[124,114,65,-2.899527033758954],[124,114,66,-2.887701901576361],[124,114,67,-2.8713700593408746],[124,114,68,-2.859396617064909],[124,114,69,-2.8661518506240524],[124,114,70,-2.8809223106794066],[124,114,71,-2.8982222096396733],[124,114,72,-2.9244673242187877],[124,114,73,-2.9457454468515776],[124,114,74,-2.9601961438324875],[124,114,75,-2.9621353099415817],[124,114,76,-2.950859312985695],[124,114,77,-2.9302940411727665],[124,114,78,-2.903468965292496],[124,114,79,-2.8693742550937293],[124,115,64,-2.944295154901153],[124,115,65,-2.9490967954921934],[124,115,66,-2.9357079153926517],[124,115,67,-2.91654954595756],[124,115,68,-2.905906575498322],[124,115,69,-2.912332565430363],[124,115,70,-2.928135360292409],[124,115,71,-2.946136044263433],[124,115,72,-2.9726195594464966],[124,115,73,-2.997191323037894],[124,115,74,-3.0081179354689342],[124,115,75,-3.0109148730934723],[124,115,76,-3.00145053733277],[124,115,77,-2.9792808709962517],[124,115,78,-2.9492598931360923],[124,115,79,-2.915051339323617],[124,116,64,-2.972262738996421],[124,116,65,-2.9771725900474784],[124,116,66,-2.9646863528377856],[124,116,67,-2.9453008641105067],[124,116,68,-2.9372039682807585],[124,116,69,-2.9434518694517577],[124,116,70,-2.9602497988129213],[124,116,71,-2.9814041438586996],[124,116,72,-3.011615163211923],[124,116,73,-3.035057586352962],[124,116,74,-3.0470657483061765],[124,116,75,-3.04893316369883],[124,116,76,-3.038551548505693],[124,116,77,-3.0135788580136333],[124,116,78,-2.9806750365480217],[124,116,79,-2.9435951139004852],[124,117,64,-3.0256378750167485],[124,117,65,-3.030134384355864],[124,117,66,-3.0171070165233886],[124,117,67,-2.9978597224174277],[124,117,68,-2.9908498540490545],[124,117,69,-2.9949020156181105],[124,117,70,-3.01174443834602],[124,117,71,-3.0330017821020947],[124,117,72,-3.0636006089946],[124,117,73,-3.08717897560513],[124,117,74,-3.0969535111490947],[124,117,75,-3.099775814642633],[124,117,76,-3.0893921221560263],[124,117,77,-3.0600355317823436],[124,117,78,-3.0256489754934206],[124,117,79,-2.9838791652305052],[124,118,64,-3.0694027808938595],[124,118,65,-3.0742820579339],[124,118,66,-3.063254560744282],[124,118,67,-3.043649999016119],[124,118,68,-3.0389122529366412],[124,118,69,-3.040980807503174],[124,118,70,-3.0571837401608497],[124,118,71,-3.0789008691326343],[124,118,72,-3.1099043837534306],[124,118,73,-3.135561899076908],[124,118,74,-3.147880191089016],[124,118,75,-3.148691174232552],[124,118,76,-3.138590693721227],[124,118,77,-3.1087331071799884],[124,118,78,-3.0747817690273536],[124,118,79,-3.0328592623611663],[124,119,64,-3.106780317458809],[124,119,65,-3.112857110865965],[124,119,66,-3.102934955791668],[124,119,67,-3.085768343873575],[124,119,68,-3.0805464510618603],[124,119,69,-3.0837871737375857],[124,119,70,-3.0993487836860942],[124,119,71,-3.1207015100412816],[124,119,72,-3.154732846308255],[124,119,73,-3.1831817002436376],[124,119,74,-3.1971709833194115],[124,119,75,-3.1953923201634162],[124,119,76,-3.1861564797568094],[124,119,77,-3.1586759183074617],[124,119,78,-3.1240089044943797],[124,119,79,-3.081905355851832],[124,120,64,-3.1528911816626506],[124,120,65,-3.15871841979121],[124,120,66,-3.149983701641232],[124,120,67,-3.1341767170895065],[124,120,68,-3.1279444156525713],[124,120,69,-3.1317562664026037],[124,120,70,-3.144810171461209],[124,120,71,-3.166176144776056],[124,120,72,-3.203740444880785],[124,120,73,-3.232416687493153],[124,120,74,-3.2441517897962417],[124,120,75,-3.2443166252383686],[124,120,76,-3.233555933187728],[124,120,77,-3.2081970649457388],[124,120,78,-3.1724619407465475],[124,120,79,-3.1324892665185216],[124,121,64,-3.1948342377083936],[124,121,65,-3.196173490069321],[124,121,66,-3.185805472393039],[124,121,67,-3.1715577200945417],[124,121,68,-3.163565482409671],[124,121,69,-3.1693858377599256],[124,121,70,-3.182778118193212],[124,121,71,-3.206506958682076],[124,121,72,-3.243836729793065],[124,121,73,-3.272716184798504],[124,121,74,-3.288744861253616],[124,121,75,-3.2915573336770554],[124,121,76,-3.2831496384731738],[124,121,77,-3.2606453347739723],[124,121,78,-3.230244868266042],[124,121,79,-3.192906049002427],[124,122,64,-3.2480946419135095],[124,122,65,-3.2468413881876494],[124,122,66,-3.23796355888113],[124,122,67,-3.2233267809058117],[124,122,68,-3.216952527230199],[124,122,69,-3.222858333872228],[124,122,70,-3.235830136088166],[124,122,71,-3.2613483781666868],[124,122,72,-3.294803752431123],[124,122,73,-3.3244174565631712],[124,122,74,-3.3433979322716603],[124,122,75,-3.347650074016191],[124,122,76,-3.3400659932458874],[124,122,77,-3.317402585759923],[124,122,78,-3.285302549712461],[124,122,79,-3.248266033360959],[124,123,64,-3.2917235839103354],[124,123,65,-3.2908624331884053],[124,123,66,-3.282019225372093],[124,123,67,-3.267651741755329],[124,123,68,-3.262305631369155],[124,123,69,-3.2697487848309725],[124,123,70,-3.283217239202289],[124,123,71,-3.309896317758213],[124,123,72,-3.3426872092064497],[124,123,73,-3.373012636928094],[124,123,74,-3.3912494335716605],[124,123,75,-3.397587422869347],[124,123,76,-3.3907681700184704],[124,123,77,-3.368335113405301],[124,123,78,-3.3366238599541727],[124,123,79,-3.298868009964698],[124,124,64,-3.332573253798454],[124,124,65,-3.333975772364254],[124,124,66,-3.3271880598469843],[124,124,67,-3.313451601679668],[124,124,68,-3.306353024764808],[124,124,69,-3.3143729438688285],[124,124,70,-3.328622511564781],[124,124,71,-3.356366368251428],[124,124,72,-3.389400486988274],[124,124,73,-3.4221119417957984],[124,124,74,-3.440406927563144],[124,124,75,-3.446876060931516],[124,124,76,-3.437378066650966],[124,124,77,-3.415703704130961],[124,124,78,-3.3851179225665997],[124,124,79,-3.3508603044873806],[124,125,64,-3.3746087521414503],[124,125,65,-3.3801646839710315],[124,125,66,-3.37271548823355],[124,125,67,-3.35906903364808],[124,125,68,-3.354165525975887],[124,125,69,-3.3624045225600296],[124,125,70,-3.3759809074826004],[124,125,71,-3.402917253560256],[124,125,72,-3.437077163908066],[124,125,73,-3.471533386156015],[124,125,74,-3.4910424057171654],[124,125,75,-3.4942670061325156],[124,125,76,-3.4848840184112997],[124,125,77,-3.4620284560198815],[124,125,78,-3.4342185795280624],[124,125,79,-3.4029212471633024],[124,126,64,-3.4183856322427437],[124,126,65,-3.4264194721735004],[124,126,66,-3.418270426786885],[124,126,67,-3.404611443847132],[124,126,68,-3.4022551574873368],[124,126,69,-3.4078588820074103],[124,126,70,-3.4255959717960516],[124,126,71,-3.4514851543207308],[124,126,72,-3.4873934634989894],[124,126,73,-3.521730999381689],[124,126,74,-3.5390568773481497],[124,126,75,-3.5426400895228016],[124,126,76,-3.5311197043277867],[124,126,77,-3.507702737492527],[124,126,78,-3.4822631180664323],[124,126,79,-3.4536173111880366],[124,127,64,-3.460856215014737],[124,127,65,-3.4679154248791706],[124,127,66,-3.461495413243457],[124,127,67,-3.447359840847814],[124,127,68,-3.445126243198891],[124,127,69,-3.4526367346284856],[124,127,70,-3.4749698268080476],[124,127,71,-3.4998174470511922],[124,127,72,-3.536897711616609],[124,127,73,-3.5730925745915516],[124,127,74,-3.5889300900260306],[124,127,75,-3.591287902678904],[124,127,76,-3.5826461285096647],[124,127,77,-3.5596419752590327],[124,127,78,-3.531965976932423],[124,127,79,-3.502806419388233],[124,128,64,-3.5078926729046924],[124,128,65,-3.5161609176506188],[124,128,66,-3.5098534798705163],[124,128,67,-3.4954967208365044],[124,128,68,-3.4911161770682972],[124,128,69,-3.502086647824856],[124,128,70,-3.5253659908530386],[124,128,71,-3.551377881296592],[124,128,72,-3.586852003644405],[124,128,73,-3.6229433813308836],[124,128,74,-3.6414297705259226],[124,128,75,-3.6439181968323586],[124,128,76,-3.6356569797898555],[124,128,77,-3.6090981831600146],[124,128,78,-3.580887605774589],[124,128,79,-3.550395484257253],[124,129,64,-3.558123541697854],[124,129,65,-3.5677498633077285],[124,129,66,-3.5634975296353195],[124,129,67,-3.5528675362918896],[124,129,68,-3.547761173105806],[124,129,69,-3.5618549397897348],[124,129,70,-3.5843349143665035],[124,129,71,-3.611728008624897],[124,129,72,-3.6464647741219713],[124,129,73,-3.6789978890943353],[124,129,74,-3.697917898973767],[124,129,75,-3.7033027315388853],[124,129,76,-3.6921291064046],[124,129,77,-3.66317403051606],[124,129,78,-3.6308709717294034],[124,129,79,-3.5972318288840386],[124,130,64,-3.6117774427620772],[124,130,65,-3.6224354151236655],[124,130,66,-3.6163295987632766],[124,130,67,-3.6052574457446216],[124,130,68,-3.602541942072113],[124,130,69,-3.61814561665001],[124,130,70,-3.6411391741706907],[124,130,71,-3.668511865098549],[124,130,72,-3.7028000515552595],[124,130,73,-3.7339590798393427],[124,130,74,-3.7630233927721544],[124,130,75,-3.79779319522591],[124,130,76,-3.7914969152097626],[124,130,77,-3.764459641795652],[124,130,78,-3.698818028032426],[124,130,79,-3.6527740253455696],[124,131,64,-3.656891325752972],[124,131,65,-3.6676458966523326],[124,131,66,-3.6633122932700704],[124,131,67,-3.65357130567076],[124,131,68,-3.6528011369954507],[124,131,69,-3.668020634943715],[124,131,70,-3.688776890841913],[124,131,71,-3.7168671047335695],[124,131,72,-3.7505521594272926],[124,131,73,-3.783275979645187],[124,131,74,-3.823757891053375],[124,131,75,-3.8613100775301032],[124,131,76,-3.847901107156155],[124,131,77,-3.823635394067691],[124,131,78,-3.7683800818679063],[124,131,79,-3.7225576205048085],[124,132,64,-3.692761118339753],[124,132,65,-3.7060998296666288],[124,132,66,-3.7021900103070524],[124,132,67,-3.6936616460197254],[124,132,68,-3.6947878856210457],[124,132,69,-3.7075420544357334],[124,132,70,-3.7294695349833944],[124,132,71,-3.7575648422029326],[124,132,72,-3.793383384241269],[124,132,73,-3.8273430648052784],[124,132,74,-3.874482895475334],[124,132,75,-3.9125433646150385],[124,132,76,-3.898934209379678],[124,132,77,-3.8790680461897913],[124,132,78,-3.822519099270258],[124,132,79,-3.7752587126237542],[124,133,64,-3.7332314603403773],[124,133,65,-3.744112955233015],[124,133,66,-3.7411078611363853],[124,133,67,-3.732147308453085],[124,133,68,-3.7333585551261623],[124,133,69,-3.746516405279884],[124,133,70,-3.7707405104256426],[124,133,71,-3.7971119558846045],[124,133,72,-3.8362840681267554],[124,133,73,-3.8722439765976757],[124,133,74,-3.912731633293895],[124,133,75,-3.943367136662732],[124,133,76,-3.9390923513603098],[124,133,77,-3.9277724181474287],[124,133,78,-3.877672065489576],[124,133,79,-3.8383360413851033],[124,134,64,-3.779685591758172],[124,134,65,-3.786951437421302],[124,134,66,-3.78449705293093],[124,134,67,-3.776630223928902],[124,134,68,-3.7776415887772457],[124,134,69,-3.794268610015062],[124,134,70,-3.8174160216836737],[124,134,71,-3.846098769154947],[124,134,72,-3.885024230833125],[124,134,73,-3.924927073099522],[124,134,74,-3.9652017266024493],[124,134,75,-3.9981838477809664],[124,134,76,-4.003787609956644],[124,134,77,-3.9868368045762814],[124,134,78,-3.942832431030308],[124,134,79,-3.904667087056921],[124,135,64,-3.821582986359224],[124,135,65,-3.827821492909844],[124,135,66,-3.823986262294362],[124,135,67,-3.8174034305496836],[124,135,68,-3.818508176450475],[124,135,69,-3.838623949743212],[124,135,70,-3.863110773838906],[124,135,71,-3.8933677741680874],[124,135,72,-3.9341191771862225],[124,135,73,-3.9671164007032838],[124,135,74,-4.010920731692796],[124,135,75,-4.03603371942891],[124,135,76,-4.0509455828520275],[124,135,77,-4.033546929397407],[124,135,78,-3.9957784741901],[124,135,79,-3.953004261128852],[124,136,64,-3.8702286154659356],[124,136,65,-3.875731018388862],[124,136,66,-3.86899727405258],[124,136,67,-3.8637324445402945],[124,136,68,-3.865704460474005],[124,136,69,-3.8850119363692244],[124,136,70,-3.911640788304421],[124,136,71,-3.9420373358510243],[124,136,72,-3.9818154804381902],[124,136,73,-4.021499681097582],[124,136,74,-4.069406724266867],[124,136,75,-4.093125448941088],[124,136,76,-4.1051212206600605],[124,136,77,-4.09783076197282],[124,136,78,-4.059766799126698],[124,136,79,-4.020818085628582],[124,137,64,-3.919698796727511],[124,137,65,-3.9257900593878894],[124,137,66,-3.918403982166031],[124,137,67,-3.9110970943351666],[124,137,68,-3.9137718263891697],[124,137,69,-3.9325509976262616],[124,137,70,-3.9601297694128803],[124,137,71,-3.992270006177245],[124,137,72,-4.032684760173269],[124,137,73,-4.073832099533062],[124,137,74,-4.116826774342066],[124,137,75,-4.143221059051343],[124,137,76,-4.143114875977453],[124,137,77,-4.137870195403016],[124,137,78,-4.108596444302337],[124,137,79,-4.0698512198628745],[124,138,64,-3.9733766677280613],[124,138,65,-3.9820596378198116],[124,138,66,-3.972333627079507],[124,138,67,-3.965174759433465],[124,138,68,-3.965477625324299],[124,138,69,-3.986792096426295],[124,138,70,-4.016859348293916],[124,138,71,-4.049048849306725],[124,138,72,-4.086742217755858],[124,138,73,-4.114361778420829],[124,138,74,-4.158712499965651],[124,138,75,-4.183355011655881],[124,138,76,-4.180883755955353],[124,138,77,-4.172879016955363],[124,138,78,-4.150046480360744],[124,138,79,-4.114740164952787],[124,139,64,-4.019958167124241],[124,139,65,-4.028823892132949],[124,139,66,-4.020911383944656],[124,139,67,-4.013434921269206],[124,139,68,-4.0145416724921335],[124,139,69,-4.033827953077838],[124,139,70,-4.064048791832382],[124,139,71,-4.095884244390283],[124,139,72,-4.135127478562235],[124,139,73,-4.175705707466068],[124,139,74,-4.224390967386019],[124,139,75,-4.253180945687768],[124,139,76,-4.2521433149334795],[124,139,77,-4.238474421209612],[124,139,78,-4.224043857996976],[124,139,79,-4.190397600549345],[124,140,64,-4.07139278267876],[124,140,65,-4.0791007851417795],[124,140,66,-4.0710307427079595],[124,140,67,-4.06231591033925],[124,140,68,-4.06091904247254],[124,140,69,-4.07519705996221],[124,140,70,-4.10117476180351],[124,140,71,-4.134046664388462],[124,140,72,-4.174867296768466],[124,140,73,-4.2215940773178],[124,140,74,-4.2681548690167705],[124,140,75,-4.296142990775362],[124,140,76,-4.298348183723798],[124,140,77,-4.286274370186032],[124,140,78,-4.272357572842491],[124,140,79,-4.241401107431885],[124,141,64,-4.114495047986962],[124,141,65,-4.1219026384367154],[124,141,66,-4.120481402998191],[124,141,67,-4.1140789057138605],[124,141,68,-4.114148294801994],[124,141,69,-4.125625264953845],[124,141,70,-4.15091619749871],[124,141,71,-4.182831635174915],[124,141,72,-4.224609704338679],[124,141,73,-4.265350309492276],[124,141,74,-4.309588323919073],[124,141,75,-4.333298647422417],[124,141,76,-4.337738208700264],[124,141,77,-4.317993645716038],[124,141,78,-4.301098444222564],[124,141,79,-4.2818685707535815],[124,142,64,-4.161388048373973],[124,142,65,-4.170578849909365],[124,142,66,-4.167619020856506],[124,142,67,-4.157685577680753],[124,142,68,-4.160358159673225],[124,142,69,-4.174327724117108],[124,142,70,-4.197379625329035],[124,142,71,-4.229799335254041],[124,142,72,-4.269602089889271],[124,142,73,-4.313730763533067],[124,142,74,-4.351442289704362],[124,142,75,-4.373351424474442],[124,142,76,-4.381219921849526],[124,142,77,-4.35845068555463],[124,142,78,-4.346054263572303],[124,142,79,-4.334050414195081],[124,143,64,-4.2037878059963685],[124,143,65,-4.214714192758076],[124,143,66,-4.2121567757878],[124,143,67,-4.204033683006696],[124,143,68,-4.20490832241183],[124,143,69,-4.220643639908536],[124,143,70,-4.245894285101333],[124,143,71,-4.277678432749581],[124,143,72,-4.318560459948106],[124,143,73,-4.357368889503185],[124,143,74,-4.388564242540013],[124,143,75,-4.409199016908261],[124,143,76,-4.417110490186564],[124,143,77,-4.395605683779661],[124,143,78,-4.390341153083812],[124,143,79,-4.373976062629598],[124,144,64,-4.252073205610216],[124,144,65,-4.264486060659741],[124,144,66,-4.260818998879439],[124,144,67,-4.251219529474143],[124,144,68,-4.250097992434025],[124,144,69,-4.2655545288093855],[124,144,70,-4.29258566432807],[124,144,71,-4.324931289218202],[124,144,72,-4.367993005121066],[124,144,73,-4.40638612973169],[124,144,74,-4.435797931107375],[124,144,75,-4.4561119059686325],[124,144,76,-4.468955971694869],[124,144,77,-4.446074416321633],[124,144,78,-4.447221149964808],[124,144,79,-4.4319764051773936],[124,145,64,-4.306100371552415],[124,145,65,-4.3150319397161505],[124,145,66,-4.30711275716388],[124,145,67,-4.294590322376613],[124,145,68,-4.292469230963028],[124,145,69,-4.307923203663378],[124,145,70,-4.338142472599518],[124,145,71,-4.3725989012180415],[124,145,72,-4.414411962707673],[124,145,73,-4.450999133871064],[124,145,74,-4.467755236305275],[124,145,75,-4.4740447580877785],[124,145,76,-4.471661652720739],[124,145,77,-4.457213027043451],[124,145,78,-4.447550064111232],[124,145,79,-4.43074540461335],[124,146,64,-4.362496475407214],[124,146,65,-4.368125934404071],[124,146,66,-4.360844527396788],[124,146,67,-4.3477969392923645],[124,146,68,-4.347213257083326],[124,146,69,-4.363081474554847],[124,146,70,-4.394225625733954],[124,146,71,-4.426062554393506],[124,146,72,-4.4684934406630274],[124,146,73,-4.504930237002232],[124,146,74,-4.52087076409159],[124,146,75,-4.526078219242644],[124,146,76,-4.524359338065489],[124,146,77,-4.509479446715803],[124,146,78,-4.4931803540726305],[124,146,79,-4.473315089654865],[124,147,64,-4.40978287536892],[124,147,65,-4.417853421390159],[124,147,66,-4.408101511774358],[124,147,67,-4.39712926337577],[124,147,68,-4.3939191142218545],[124,147,69,-4.4115327367381605],[124,147,70,-4.441824516771453],[124,147,71,-4.474504768375464],[124,147,72,-4.516845745549254],[124,147,73,-4.551185589496773],[124,147,74,-4.5698016119054925],[124,147,75,-4.5738765506032015],[124,147,76,-4.571035427622781],[124,147,77,-4.557020057309146],[124,147,78,-4.520420180733447],[124,147,79,-4.477556382335936],[124,148,64,-4.425248736707983],[124,148,65,-4.4364872500300665],[124,148,66,-4.431307205451793],[124,148,67,-4.425409042519288],[124,148,68,-4.422934843883659],[124,148,69,-4.442661658652296],[124,148,70,-4.4722279752591305],[124,148,71,-4.5074368396030895],[124,148,72,-4.553224527493755],[124,148,73,-4.590265296037295],[124,148,74,-4.607018474720189],[124,148,75,-4.611578134849064],[124,148,76,-4.596429358074372],[124,148,77,-4.560063208178732],[124,148,78,-4.532777703302328],[124,148,79,-4.493448748211796],[124,149,64,-4.474575373083853],[124,149,65,-4.484995448459182],[124,149,66,-4.479261934786586],[124,149,67,-4.4732149547753295],[124,149,68,-4.472375598229077],[124,149,69,-4.489231638881395],[124,149,70,-4.518023007962668],[124,149,71,-4.553469696160387],[124,149,72,-4.601772639417933],[124,149,73,-4.641719855575116],[124,149,74,-4.656561405124723],[124,149,75,-4.657472558261823],[124,149,76,-4.634292364086701],[124,149,77,-4.595904279174958],[124,149,78,-4.574183334913663],[124,149,79,-4.540466384928988],[124,150,64,-4.525677791955461],[124,150,65,-4.535180792407053],[124,150,66,-4.529518742386527],[124,150,67,-4.521984726467669],[124,150,68,-4.52303366567548],[124,150,69,-4.537365231114757],[124,150,70,-4.566400050711462],[124,150,71,-4.600951695527298],[124,150,72,-4.65066897669577],[124,150,73,-4.689875087682348],[124,150,74,-4.705314861274173],[124,150,75,-4.6921928946750135],[124,150,76,-4.669590187939332],[124,150,77,-4.636461390885813],[124,150,78,-4.615345337210795],[124,150,79,-4.58942275545946],[124,151,64,-4.572429663999468],[124,151,65,-4.583575396653741],[124,151,66,-4.578901934787535],[124,151,67,-4.56980951849685],[124,151,68,-4.567675074730472],[124,151,69,-4.585125857242947],[124,151,70,-4.616127468644006],[124,151,71,-4.649245057374699],[124,151,72,-4.698893693249019],[124,151,73,-4.736480932811272],[124,151,74,-4.751107760690255],[124,151,75,-4.7369679767802655],[124,151,76,-4.716562127978292],[124,151,77,-4.67796168237112],[124,151,78,-4.661837387468568],[124,151,79,-4.641393584545923],[124,152,64,-4.620314781121698],[124,152,65,-4.634062359639148],[124,152,66,-4.6316401265410425],[124,152,67,-4.62039292618153],[124,152,68,-4.615875555389473],[124,152,69,-4.633004493166943],[124,152,70,-4.665614262947978],[124,152,71,-4.698374931812192],[124,152,72,-4.7446790242906705],[124,152,73,-4.782888006278425],[124,152,74,-4.789599800532922],[124,152,75,-4.775036352297008],[124,152,76,-4.756828827973594],[124,152,77,-4.715777240051387],[124,152,78,-4.698497312685599],[124,152,79,-4.68305580594848],[124,153,64,-4.668806225783036],[124,153,65,-4.681373721563645],[124,153,66,-4.679535973692686],[124,153,67,-4.667930508641571],[124,153,68,-4.6638815880086195],[124,153,69,-4.680255370721079],[124,153,70,-4.709025626317859],[124,153,71,-4.742983448068676],[124,153,72,-4.7868711538159605],[124,153,73,-4.812566336749269],[124,153,74,-4.808537284791949],[124,153,75,-4.7809998219244685],[124,153,76,-4.764374479131636],[124,153,77,-4.723417157999285],[124,153,78,-4.702070791653334],[124,153,79,-4.694733320006822],[124,154,64,-4.723204587953365],[124,154,65,-4.73716892485341],[124,154,66,-4.732979437640643],[124,154,67,-4.720276992477148],[124,154,68,-4.717576411944423],[124,154,69,-4.731305721468537],[124,154,70,-4.760912445340962],[124,154,71,-4.794662343581904],[124,154,72,-4.838211316190788],[124,154,73,-4.878324201919846],[124,154,74,-4.878771710776307],[124,154,75,-4.838763998186994],[124,154,76,-4.827955994164823],[124,154,77,-4.7849677912256094],[124,154,78,-4.751559603924673],[124,154,79,-4.741750450462212],[124,155,64,-4.771934465797028],[124,155,65,-4.78467603221678],[124,155,66,-4.780309623127208],[124,155,67,-4.766280693353483],[124,155,68,-4.762478419731696],[124,155,69,-4.777829349248342],[124,155,70,-4.807066667360037],[124,155,71,-4.838665439303356],[124,155,72,-4.885629166156863],[124,155,73,-4.9270266223799535],[124,155,74,-4.920145595377789],[124,155,75,-4.887816110720918],[124,155,76,-4.876746268440712],[124,155,77,-4.840967659018307],[124,155,78,-4.805496961762017],[124,155,79,-4.787372693907113],[124,156,64,-4.815229549259644],[124,156,65,-4.83025954195876],[124,156,66,-4.825894455615588],[124,156,67,-4.814156293576851],[124,156,68,-4.808433760346749],[124,156,69,-4.824877941776719],[124,156,70,-4.851772241523684],[124,156,71,-4.882715170918489],[124,156,72,-4.934124542705424],[124,156,73,-4.962946440661156],[124,156,74,-4.9585606281467784],[124,156,75,-4.929224971078602],[124,156,76,-4.9128356979373375],[124,156,77,-4.881520957494648],[124,156,78,-4.846687739902654],[124,156,79,-4.820671908244396],[124,157,64,-4.861998711494136],[124,157,65,-4.876599515812442],[124,157,66,-4.87386287030957],[124,157,67,-4.868837424429944],[124,157,68,-4.862859219740995],[124,157,69,-4.878478409245608],[124,157,70,-4.901588893610209],[124,157,71,-4.936141065726761],[124,157,72,-4.9873106492356385],[124,157,73,-5.011997435362402],[124,157,74,-5.006025899720513],[124,157,75,-4.965932481372604],[124,157,76,-4.952833157663105],[124,157,77,-4.915941784738868],[124,157,78,-4.880958559328307],[124,157,79,-4.8544519693390455],[124,158,64,-4.9122503680948855],[124,158,65,-4.923994479342832],[124,158,66,-4.921547308490644],[124,158,67,-4.915537929403216],[124,158,68,-4.91238163561258],[124,158,69,-4.924189256474029],[124,158,70,-4.948300607471871],[124,158,71,-4.985160999091544],[124,158,72,-5.033527256786666],[124,158,73,-5.054514824349202],[124,158,74,-5.044537406370021],[124,158,75,-5.005425642257437],[124,158,76,-4.990734806892779],[124,158,77,-4.962259539666437],[124,158,78,-4.930855686395804],[124,158,79,-4.904148434942686],[124,159,64,-5.00592885415867],[124,159,65,-5.01513077571593],[124,159,66,-5.005539088976732],[124,159,67,-4.993525486121414],[124,159,68,-4.982502800056253],[124,159,69,-4.990364131516295],[124,159,70,-5.007546320400398],[124,159,71,-5.034555520040167],[124,159,72,-5.076457091988917],[124,159,73,-5.097102180456423],[124,159,74,-5.076505587415473],[124,159,75,-5.049162221599328],[124,159,76,-5.027781419325467],[124,159,77,-5.001851867238031],[124,159,78,-4.974584545128696],[124,159,79,-4.946447905118658],[124,160,64,-5.0533063949753085],[124,160,65,-5.063816144152652],[124,160,66,-5.054277019669803],[124,160,67,-5.040405185118443],[124,160,68,-5.026851212322264],[124,160,69,-5.034377789138322],[124,160,70,-5.0550497729722546],[124,160,71,-5.081426870464264],[124,160,72,-5.119962637815537],[124,160,73,-5.144836689598037],[124,160,74,-5.115595677951278],[124,160,75,-5.090919533678508],[124,160,76,-5.07383513140804],[124,160,77,-5.045689574303655],[124,160,78,-5.020370764675736],[124,160,79,-4.990096760335585],[124,161,64,-5.101934017002398],[124,161,65,-5.108709626502754],[124,161,66,-5.099405845952184],[124,161,67,-5.085378944923484],[124,161,68,-5.0727718852255865],[124,161,69,-5.080125930861233],[124,161,70,-5.101621104266927],[124,161,71,-5.127503089708126],[124,161,72,-5.1664445088165625],[124,161,73,-5.188633453935521],[124,161,74,-5.149555098622502],[124,161,75,-5.119970107739935],[124,161,76,-5.106256427379884],[124,161,77,-5.08045171514563],[124,161,78,-5.059587127333887],[124,161,79,-5.027530795745466],[124,162,64,-5.158326841065498],[124,162,65,-5.16503242635771],[124,162,66,-5.1520493994803935],[124,162,67,-5.135470605078112],[124,162,68,-5.124135585072868],[124,162,69,-5.13120162717336],[124,162,70,-5.153643179038439],[124,162,71,-5.179612233221862],[124,162,72,-5.220037825093518],[124,162,73,-5.251235479090477],[124,162,74,-5.216926094352287],[124,162,75,-5.171307569074527],[124,162,76,-5.160569759669609],[124,162,77,-5.123640775326939],[124,162,78,-5.0931622354455195],[124,162,79,-5.064270475338009],[124,163,64,-5.2056776435715255],[124,163,65,-5.215124962022588],[124,163,66,-5.198531099605967],[124,163,67,-5.18191750028175],[124,163,68,-5.170937082407144],[124,163,69,-5.176061661304844],[124,163,70,-5.201496091337333],[124,163,71,-5.225202365238356],[124,163,72,-5.2659877903596914],[124,163,73,-5.294273263036905],[124,163,74,-5.28782219196126],[124,163,75,-5.242063269450174],[124,163,76,-5.226862887017366],[124,163,77,-5.1896885759309885],[124,163,78,-5.147189460845819],[124,163,79,-5.119923478805761],[124,164,64,-5.245996413887476],[124,164,65,-5.250519166358999],[124,164,66,-5.232248041073969],[124,164,67,-5.210437718443182],[124,164,68,-5.193720233684206],[124,164,69,-5.196586337035754],[124,164,70,-5.216967500372493],[124,164,71,-5.240780873231684],[124,164,72,-5.279846713690411],[124,164,73,-5.306651963475083],[124,164,74,-5.308705366284804],[124,164,75,-5.279804175403175],[124,164,76,-5.260856604241236],[124,164,77,-5.230802580244005],[124,164,78,-5.194840966359593],[124,164,79,-5.167519652336343],[124,165,64,-5.294693916107339],[124,165,65,-5.299937037632299],[124,165,66,-5.279444606730682],[124,165,67,-5.2561665250531755],[124,165,68,-5.236655435534288],[124,165,69,-5.2393440176047585],[124,165,70,-5.254734595858507],[124,165,71,-5.278063056972119],[124,165,72,-5.312872939767755],[124,165,73,-5.341479210091464],[124,165,74,-5.345827729518457],[124,165,75,-5.31912503704468],[124,165,76,-5.297790400553026],[124,165,77,-5.271650929156061],[124,165,78,-5.2343601545069545],[124,165,79,-5.208925142572183],[124,166,64,-5.341791200372258],[124,166,65,-5.34331042641074],[124,166,66,-5.3254719464946225],[124,166,67,-5.302344448245396],[124,166,68,-5.286268813589852],[124,166,69,-5.286337009816504],[124,166,70,-5.298700865574499],[124,166,71,-5.322456180264272],[124,166,72,-5.356887941904969],[124,166,73,-5.387943005792117],[124,166,74,-5.3938235279194995],[124,166,75,-5.37944238602311],[124,166,76,-5.363078229005974],[124,166,77,-5.335924084147555],[124,166,78,-5.298757582587692],[124,166,79,-5.263515622129266],[124,167,64,-5.385277842649955],[124,167,65,-5.386160145384389],[124,167,66,-5.367959214274],[124,167,67,-5.346482667451457],[124,167,68,-5.333963333436504],[124,167,69,-5.330581409000563],[124,167,70,-5.343460639647457],[124,167,71,-5.3667479511175324],[124,167,72,-5.402381096530114],[124,167,73,-5.434024784905937],[124,167,74,-5.44223367159158],[124,167,75,-5.427511701639653],[124,167,76,-5.413728470211772],[124,167,77,-5.383844437585942],[124,167,78,-5.343313915411424],[124,167,79,-5.305666243156107],[124,168,64,-5.4326014711035215],[124,168,65,-5.4310027611030245],[124,168,66,-5.417140934124547],[124,168,67,-5.395294773139866],[124,168,68,-5.380382697746846],[124,168,69,-5.375852753541468],[124,168,70,-5.3880629211460365],[124,168,71,-5.410964795829556],[124,168,72,-5.449156359710808],[124,168,73,-5.479600927262585],[124,168,74,-5.487470317346557],[124,168,75,-5.475598734240056],[124,168,76,-5.460984061002337],[124,168,77,-5.431077497305029],[124,168,78,-5.3921424164023],[124,168,79,-5.353088383748974],[124,169,64,-5.475190380671963],[124,169,65,-5.477656689361503],[124,169,66,-5.466741039784757],[124,169,67,-5.445905826105421],[124,169,68,-5.429725762377328],[124,169,69,-5.425544087121431],[124,169,70,-5.437183340428203],[124,169,71,-5.463324304437824],[124,169,72,-5.503560159056927],[124,169,73,-5.534037314923998],[124,169,74,-5.545459659955208],[124,169,75,-5.5318484942335004],[124,169,76,-5.509514134710897],[124,169,77,-5.472914744925674],[124,169,78,-5.434412879098024],[124,169,79,-5.395111517896031],[124,170,64,-5.524952540975251],[124,170,65,-5.53193703537124],[124,170,66,-5.5189961198600725],[124,170,67,-5.497910916203893],[124,170,68,-5.479914938254596],[124,170,69,-5.475813746288331],[124,170,70,-5.492261782119991],[124,170,71,-5.518616155702146],[124,170,72,-5.556926284541618],[124,170,73,-5.587940766116009],[124,170,74,-5.600905684080576],[124,170,75,-5.593690096814508],[124,170,76,-5.572338268467031],[124,170,77,-5.534109992072281],[124,170,78,-5.494029410625678],[124,170,79,-5.452059356847427],[124,171,64,-5.570792368889173],[124,171,65,-5.580045628363881],[124,171,66,-5.564028530505754],[124,171,67,-5.543415023553677],[124,171,68,-5.524149177929784],[124,171,69,-5.523231555574879],[124,171,70,-5.53540379147607],[124,171,71,-5.564361957878224],[124,171,72,-5.605313547379853],[124,171,73,-5.6353307108600985],[124,171,74,-5.650517425358702],[124,171,75,-5.646006560182434],[124,171,76,-5.624923826262694],[124,171,77,-5.590301606542577],[124,171,78,-5.5531750162262545],[124,171,79,-5.5104971822686],[124,172,64,-5.613314392411115],[124,172,65,-5.619543301450191],[124,172,66,-5.603488802664009],[124,172,67,-5.583240429009771],[124,172,68,-5.564856460879644],[124,172,69,-5.5648333030596575],[124,172,70,-5.577528603842474],[124,172,71,-5.606650042048239],[124,172,72,-5.647991074658301],[124,172,73,-5.678024233843162],[124,172,74,-5.691690024340703],[124,172,75,-5.69194854953948],[124,172,76,-5.677022717219219],[124,172,77,-5.6524361401083265],[124,172,78,-5.622199452101125],[124,172,79,-5.577249373890952],[124,173,64,-5.660933656215219],[124,173,65,-5.663150764015359],[124,173,66,-5.646741907603709],[124,173,67,-5.624461027638123],[124,173,68,-5.60918601256405],[124,173,69,-5.608717501287415],[124,173,70,-5.622345542372404],[124,173,71,-5.6548082042257235],[124,173,72,-5.693677944216009],[124,173,73,-5.721809461242299],[124,173,74,-5.737447142569285],[124,173,75,-5.737589410560853],[124,173,76,-5.723282516437902],[124,173,77,-5.701148751616705],[124,173,78,-5.66848881024473],[124,173,79,-5.625239355979279],[124,174,64,-5.706110026218707],[124,174,65,-5.7089981587297824],[124,174,66,-5.693497853783532],[124,174,67,-5.667674927591382],[124,174,68,-5.654023792458938],[124,174,69,-5.6533128654181155],[124,174,70,-5.668415477999944],[124,174,71,-5.701475073010334],[124,174,72,-5.737117328398293],[124,174,73,-5.768018665479056],[124,174,74,-5.780532542741317],[124,174,75,-5.781769953194919],[124,174,76,-5.765907344953258],[124,174,77,-5.740646752907077],[124,174,78,-5.706574977189433],[124,174,79,-5.667570255960118],[124,175,64,-5.749830368292273],[124,175,65,-5.750492001883183],[124,175,66,-5.735915328147676],[124,175,67,-5.709904893211281],[124,175,68,-5.6951961962409],[124,175,69,-5.696174223466479],[124,175,70,-5.712298661744678],[124,175,71,-5.744607251030692],[124,175,72,-5.782749628253833],[124,175,73,-5.8152400019533905],[124,175,74,-5.827420703611252],[124,175,75,-5.829491313287491],[124,175,76,-5.814723825567005],[124,175,77,-5.78771612943602],[124,175,78,-5.75457868070532],[124,175,79,-5.714488192293603],[124,176,64,-5.799849087635462],[124,176,65,-5.794836509116605],[124,176,66,-5.78087068700165],[124,176,67,-5.754389705591918],[124,176,68,-5.739456122171199],[124,176,69,-5.74097328366496],[124,176,70,-5.75779172840392],[124,176,71,-5.78896314661478],[124,176,72,-5.830745149869275],[124,176,73,-5.862300928825088],[124,176,74,-5.874964850016392],[124,176,75,-5.877658091323556],[124,176,76,-5.863907381582769],[124,176,77,-5.837725487153294],[124,176,78,-5.804071714228895],[124,176,79,-5.764877612122058],[124,177,64,-5.853345099928137],[124,177,65,-5.846421168089795],[124,177,66,-5.823601961389908],[124,177,67,-5.796329439469996],[124,177,68,-5.7790436388929365],[124,177,69,-5.78073201603445],[124,177,70,-5.798343862977094],[124,177,71,-5.830800555747145],[124,177,72,-5.8720113583430225],[124,177,73,-5.902885814755817],[124,177,74,-5.940118583093605],[124,177,75,-5.970982833341904],[124,177,76,-5.983947286497323],[124,177,77,-5.971751145066671],[124,177,78,-5.933852721955505],[124,177,79,-5.889565763464509],[124,178,64,-5.905247237100169],[124,178,65,-5.899726860963411],[124,178,66,-5.874476571442484],[124,178,67,-5.849407475916862],[124,178,68,-5.830671757527663],[124,178,69,-5.8327427431350936],[124,178,70,-5.850263186884839],[124,178,71,-5.8837166959633995],[124,178,72,-5.926362621858904],[124,178,73,-5.955733007220452],[124,178,74,-5.978067983524363],[124,178,75,-6.020592683354896],[124,178,76,-6.0297135889119176],[124,178,77,-6.018361231555873],[124,178,78,-5.981526825796219],[124,178,79,-5.938148970313597],[124,179,64,-5.952709342746862],[124,179,65,-5.944092952618099],[124,179,66,-5.9211443528872625],[124,179,67,-5.895707347019357],[124,179,68,-5.877422218612352],[124,179,69,-5.881294621106553],[124,179,70,-5.898194280345636],[124,179,71,-5.930830814243957],[124,179,72,-5.97439079523521],[124,179,73,-6.005457337677764],[124,179,74,-6.029447812065301],[124,179,75,-6.079251376888174],[124,179,76,-6.090909034789354],[124,179,77,-6.078425868781861],[124,179,78,-6.0392663572004555],[124,179,79,-5.997560264601475],[124,180,64,-5.992106555456935],[124,180,65,-5.9821119031236485],[124,180,66,-5.9560111558882065],[124,180,67,-5.928596194666547],[124,180,68,-5.912396978095744],[124,180,69,-5.91668631159342],[124,180,70,-5.934282527271883],[124,180,71,-5.965864806523673],[124,180,72,-6.00761379132766],[124,180,73,-6.040881848093754],[124,180,74,-6.073467046593521],[124,180,75,-6.120172581969386],[124,180,76,-6.13163530823055],[124,180,77,-6.114824793267948],[124,180,78,-6.075688434901026],[124,180,79,-6.03553543018555],[124,181,64,-6.031181841756022],[124,181,65,-6.023588885396469],[124,181,66,-6.00237125085814],[124,181,67,-5.980676136798592],[124,181,68,-5.964363645415582],[124,181,69,-5.967607947661753],[124,181,70,-5.988162793761827],[124,181,71,-6.017480377642677],[124,181,72,-6.055629598108141],[124,181,73,-6.091414919799379],[124,181,74,-6.103964105590911],[124,181,75,-6.123019255394708],[124,181,76,-6.1170160137559595],[124,181,77,-6.106443274550656],[124,181,78,-6.0814281849696945],[124,181,79,-6.05830779154142],[124,182,64,-6.0754355025930655],[124,182,65,-6.072952081486938],[124,182,66,-6.048234146735919],[124,182,67,-6.027613035926362],[124,182,68,-6.013475538701544],[124,182,69,-6.0163159007622955],[124,182,70,-6.03435880080798],[124,182,71,-6.065086809091085],[124,182,72,-6.103832347660638],[124,182,73,-6.137839559910474],[124,182,74,-6.148407009392012],[124,182,75,-6.174649174508138],[124,182,76,-6.16874442094362],[124,182,77,-6.155186870164409],[124,182,78,-6.137284183308301],[124,182,79,-6.109255806307313],[124,183,64,-6.118671333301411],[124,183,65,-6.11834513844905],[124,183,66,-6.096233708833953],[124,183,67,-6.073052696325107],[124,183,68,-6.060054751123074],[124,183,69,-6.062966792802727],[124,183,70,-6.082810848162059],[124,183,71,-6.113606440180482],[124,183,72,-6.15301848266479],[124,183,73,-6.1827871916247386],[124,183,74,-6.195363823353093],[124,183,75,-6.207471933606129],[124,183,76,-6.202016874776935],[124,183,77,-6.189913940232971],[124,183,78,-6.175983922057958],[124,183,79,-6.151597777616245],[124,184,64,-6.168111536074842],[124,184,65,-6.164191240294049],[124,184,66,-6.144946788155588],[124,184,67,-6.12194840758015],[124,184,68,-6.108185549160564],[124,184,69,-6.113482937749773],[124,184,70,-6.131594614644277],[124,184,71,-6.162458669075205],[124,184,72,-6.203395696126328],[124,184,73,-6.228867488204568],[124,184,74,-6.242334326499772],[124,184,75,-6.257203627434258],[124,184,76,-6.252727496440436],[124,184,77,-6.238707107356016],[124,184,78,-6.227572619776212],[124,184,79,-6.20010769272238],[124,185,64,-6.218436722561068],[124,185,65,-6.2125719096706975],[124,185,66,-6.194367983114466],[124,185,67,-6.17141532246476],[124,185,68,-6.1561917156411115],[124,185,69,-6.161800573415303],[124,185,70,-6.182228354476803],[124,185,71,-6.2127485444317045],[124,185,72,-6.250579370524426],[124,185,73,-6.274817453721978],[124,185,74,-6.290418716471583],[124,185,75,-6.3003851382288465],[124,185,76,-6.299204953185307],[124,185,77,-6.284633817775498],[124,185,78,-6.272142732458335],[124,185,79,-6.241963037418801],[124,186,64,-6.275560073813592],[124,186,65,-6.267113174203982],[124,186,66,-6.249035943066206],[124,186,67,-6.222168923304731],[124,186,68,-6.208374681949974],[124,186,69,-6.214415547417307],[124,186,70,-6.237737209859861],[124,186,71,-6.265732435990127],[124,186,72,-6.303405873939846],[124,186,73,-6.330788375377723],[124,186,74,-6.34365059650588],[124,186,75,-6.351087217460967],[124,186,76,-6.350471004649362],[124,186,77,-6.336581774347789],[124,186,78,-6.32323719046233],[124,186,79,-6.287747939920317],[124,187,64,-6.324133608501838],[124,187,65,-6.318627924856692],[124,187,66,-6.298441886812262],[124,187,67,-6.272292651245372],[124,187,68,-6.257491355270477],[124,187,69,-6.259640160185039],[124,187,70,-6.2832101831787845],[124,187,71,-6.314240305651429],[124,187,72,-6.351031045156066],[124,187,73,-6.380600794700527],[124,187,74,-6.391042966164219],[124,187,75,-6.400184173006492],[124,187,76,-6.4088171118426],[124,187,77,-6.392673574231579],[124,187,78,-6.378779072936113],[124,187,79,-6.344824282194698],[124,188,64,-6.3668785071007905],[124,188,65,-6.358418611077095],[124,188,66,-6.335812202175116],[124,188,67,-6.309054127428639],[124,188,68,-6.291016054447684],[124,188,69,-6.2913997169830145],[124,188,70,-6.313047415909538],[124,188,71,-6.345135462344633],[124,188,72,-6.386061897371129],[124,188,73,-6.414971326193767],[124,188,74,-6.424859519413796],[124,188,75,-6.427032473389622],[124,188,76,-6.444682549656401],[124,188,77,-6.428242846325198],[124,188,78,-6.412266530511041],[124,188,79,-6.378023132481738],[124,189,64,-6.413353346486447],[124,189,65,-6.406038093163122],[124,189,66,-6.386378558941422],[124,189,67,-6.359128367925352],[124,189,68,-6.3425230509842],[124,189,69,-6.344767104880046],[124,189,70,-6.362249045192272],[124,189,71,-6.391607255724418],[124,189,72,-6.428497723175802],[124,189,73,-6.454327584644056],[124,189,74,-6.463239079184356],[124,189,75,-6.47256978264956],[124,189,76,-6.498074357578873],[124,189,77,-6.496803512512394],[124,189,78,-6.480590413047775],[124,189,79,-6.445979003310819],[124,190,64,-6.458849822622362],[124,190,65,-6.452986668195499],[124,190,66,-6.4330522612418966],[124,190,67,-6.409268442657066],[124,190,68,-6.392882273077094],[124,190,69,-6.392719256712055],[124,190,70,-6.408091330099652],[124,190,71,-6.439075772541017],[124,190,72,-6.476225703123284],[124,190,73,-6.501578879958429],[124,190,74,-6.511309318779077],[124,190,75,-6.521266808174037],[124,190,76,-6.5458599825816455],[124,190,77,-6.552273438428517],[124,190,78,-6.535005246139028],[124,190,79,-6.497953615620245],[124,191,64,-6.504583346807875],[124,191,65,-6.500369152811163],[124,191,66,-6.482906182975742],[124,191,67,-6.458617255390438],[124,191,68,-6.441842778408126],[124,191,69,-6.440161236059648],[124,191,70,-6.454782927696686],[124,191,71,-6.485958436008952],[124,191,72,-6.524901634354082],[124,191,73,-6.553564308393118],[124,191,74,-6.560643200934263],[124,191,75,-6.563151271315367],[124,191,76,-6.586175242323341],[124,191,77,-6.600111724704787],[124,191,78,-6.586732335655352],[124,191,79,-6.542121296675595],[124,192,64,-6.553275961422589],[124,192,65,-6.549105354599655],[124,192,66,-6.531488120811828],[124,192,67,-6.5075784120744],[124,192,68,-6.493137082049039],[124,192,69,-6.490376106076099],[124,192,70,-6.50385060821197],[124,192,71,-6.533948297520891],[124,192,72,-6.57119220554274],[124,192,73,-6.601708007568873],[124,192,74,-6.609262058402223],[124,192,75,-6.6097959586433985],[124,192,76,-6.633189506374308],[124,192,77,-6.66016122108573],[124,192,78,-6.639667639860323],[124,192,79,-6.58804683047678],[124,193,64,-6.6035387586493295],[124,193,65,-6.596008426559563],[124,193,66,-6.574272709295891],[124,193,67,-6.547323024566562],[124,193,68,-6.533233543413332],[124,193,69,-6.532969283138118],[124,193,70,-6.548485713892828],[124,193,71,-6.58125582223993],[124,193,72,-6.623450488762668],[124,193,73,-6.657377371311207],[124,193,74,-6.671140237694829],[124,193,75,-6.6684545200422],[124,193,76,-6.661872258922057],[124,193,77,-6.679089167469643],[124,193,78,-6.651568467417137],[124,193,79,-6.607641198025664],[124,194,64,-6.658655487033711],[124,194,65,-6.649394041395059],[124,194,66,-6.625133462008926],[124,194,67,-6.598605792922379],[124,194,68,-6.583945395530123],[124,194,69,-6.585807175480564],[124,194,70,-6.60293181753279],[124,194,71,-6.634865180102413],[124,194,72,-6.677906694503599],[124,194,73,-6.712758197419156],[124,194,74,-6.724504385380228],[124,194,75,-6.720957339878021],[124,194,76,-6.709111882522311],[124,194,77,-6.723315497830862],[124,194,78,-6.692433035265348],[124,194,79,-6.658628206438197],[124,195,64,-6.7087159302018335],[124,195,65,-6.699924606317505],[124,195,66,-6.671018687599743],[124,195,67,-6.645884600612688],[124,195,68,-6.630145901464207],[124,195,69,-6.632856512787503],[124,195,70,-6.650968164459056],[124,195,71,-6.684926987686013],[124,195,72,-6.728370584392423],[124,195,73,-6.764001389967256],[124,195,74,-6.773859126428855],[124,195,75,-6.773163328578327],[124,195,76,-6.7645254221178215],[124,195,77,-6.775761034095121],[124,195,78,-6.737021208193811],[124,195,79,-6.714089541693251],[124,196,64,-6.754784441378082],[124,196,65,-6.75257055263151],[124,196,66,-6.729740200620118],[124,196,67,-6.709894828577606],[124,196,68,-6.69944991949375],[124,196,69,-6.70715899860741],[124,196,70,-6.729566205986828],[124,196,71,-6.7662208275362925],[124,196,72,-6.813273065587352],[124,196,73,-6.851158481495872],[124,196,74,-6.861713101715783],[124,196,75,-6.859165536707609],[124,196,76,-6.84862576177093],[124,196,77,-6.851770860806888],[124,196,78,-6.8142881851365695],[124,196,79,-6.787395171322456],[124,197,64,-6.801545246015669],[124,197,65,-6.799054726425138],[124,197,66,-6.776611545302326],[124,197,67,-6.756408516931351],[124,197,68,-6.74399440311502],[124,197,69,-6.755145038743928],[124,197,70,-6.779427304484185],[124,197,71,-6.813204539054933],[124,197,72,-6.861735912797579],[124,197,73,-6.899214225117485],[124,197,74,-6.91091457472969],[124,197,75,-6.906730355514821],[124,197,76,-6.910917216348445],[124,197,77,-6.916603640654617],[124,197,78,-6.877395732679503],[124,197,79,-6.843735349582529],[124,198,64,-6.852663616102976],[124,198,65,-6.850012485829872],[124,198,66,-6.826543307207447],[124,198,67,-6.804322792922017],[124,198,68,-6.79132996123384],[124,198,69,-6.802289723495975],[124,198,70,-6.828024094793712],[124,198,71,-6.862199050268778],[124,198,72,-6.909059465018673],[124,198,73,-6.947151114028707],[124,198,74,-6.958579738996323],[124,198,75,-6.953805719398459],[124,198,76,-6.961720020329177],[124,198,77,-6.954501446052916],[124,198,78,-6.916052262962952],[124,198,79,-6.880543683054494],[124,199,64,-6.904040095934474],[124,199,65,-6.900097172146091],[124,199,66,-6.878175397623411],[124,199,67,-6.855240790228348],[124,199,68,-6.841974728420288],[124,199,69,-6.849128769609291],[124,199,70,-6.874981047802628],[124,199,71,-6.9104932997803425],[124,199,72,-6.958927646804862],[124,199,73,-6.996816069752012],[124,199,74,-7.008238848502522],[124,199,75,-7.004688229404301],[124,199,76,-7.018036886279482],[124,199,77,-7.003963698545081],[124,199,78,-6.966214466219372],[124,199,79,-6.936488453757179],[124,200,64,-6.954250435991542],[124,200,65,-6.951425762353135],[124,200,66,-6.9306992616661445],[124,200,67,-6.905380661397688],[124,200,68,-6.894198131675221],[124,200,69,-6.898144831592775],[124,200,70,-6.9209309959314425],[124,200,71,-6.958290654497745],[124,200,72,-7.009291520252861],[124,200,73,-7.047204278948778],[124,200,74,-7.056541762170648],[124,200,75,-7.051901559230263],[124,200,76,-7.066153374945046],[124,200,77,-7.047229153572088],[124,200,78,-7.01246363370369],[124,200,79,-6.987982606523088],[124,201,64,-6.994235740866365],[124,201,65,-6.992864685618007],[124,201,66,-6.973616828468841],[124,201,67,-6.947803539269238],[124,201,68,-6.9366980385564485],[124,201,69,-6.9410467437997845],[124,201,70,-6.962999985352813],[124,201,71,-7.001427852173434],[124,201,72,-7.05764558867666],[124,201,73,-7.096599975968278],[124,201,74,-7.107955066464678],[124,201,75,-7.101585083084702],[124,201,76,-7.123447385849925],[124,201,77,-7.109547204854269],[124,201,78,-7.075377669975049],[124,201,79,-7.0419151729663945],[124,202,64,-7.049592354138113],[124,202,65,-7.048596648981402],[124,202,66,-7.025617667972305],[124,202,67,-7.0016443686725305],[124,202,68,-6.989738297247109],[124,202,69,-6.996487819001196],[124,202,70,-7.017833035046888],[124,202,71,-7.058599984945378],[124,202,72,-7.114060795590856],[124,202,73,-7.148807739340405],[124,202,74,-7.161172608110477],[124,202,75,-7.15459775443761],[124,202,76,-7.158649354547789],[124,202,77,-7.1539706065602955],[124,202,78,-7.121599721741678],[124,202,79,-7.0912483792627725],[124,203,64,-7.098078409351424],[124,203,65,-7.096302161140392],[124,203,66,-7.075183970423325],[124,203,67,-7.051874070277013],[124,203,68,-7.040251139393308],[124,203,69,-7.046061943519763],[124,203,70,-7.0692555571581925],[124,203,71,-7.110776574144142],[124,203,72,-7.163959334256131],[124,203,73,-7.199598995569872],[124,203,74,-7.209129416800621],[124,203,75,-7.202790619688764],[124,203,76,-7.2041204691283],[124,203,77,-7.20295823369071],[124,203,78,-7.172830179339114],[124,203,79,-7.149628779997056],[124,204,64,-7.138294936876253],[124,204,65,-7.134808984564247],[124,204,66,-7.112901110081691],[124,204,67,-7.087600486257161],[124,204,68,-7.07364861838626],[124,204,69,-7.077093247997411],[124,204,70,-7.1013240934212885],[124,204,71,-7.141391881176712],[124,204,72,-7.190939520418956],[124,204,73,-7.226841546835728],[124,204,74,-7.235646701843886],[124,204,75,-7.229657682424462],[124,204,76,-7.229776205447036],[124,204,77,-7.236587801898476],[124,204,78,-7.214946423695935],[124,204,79,-7.1928059405867675],[124,205,64,-7.1982961895343704],[124,205,65,-7.195885154706802],[124,205,66,-7.175943390456446],[124,205,67,-7.14898071407185],[124,205,68,-7.133464947946249],[124,205,69,-7.1387526717260545],[124,205,70,-7.160473279208796],[124,205,71,-7.197136860374904],[124,205,72,-7.244062214471158],[124,205,73,-7.275513996979718],[124,205,74,-7.282752103267903],[124,205,75,-7.276315790364881],[124,205,76,-7.251292686111646],[124,205,77,-7.245394284731162],[124,205,78,-7.235413447120194],[124,205,79,-7.225041766620497],[124,206,64,-7.250110819977546],[124,206,65,-7.247070247056371],[124,206,66,-7.22835497026719],[124,206,67,-7.201978707423296],[124,206,68,-7.187181113322119],[124,206,69,-7.189649039820671],[124,206,70,-7.210699168502952],[124,206,71,-7.246652492712223],[124,206,72,-7.292751991435844],[124,206,73,-7.325403568944651],[124,206,74,-7.332611444072091],[124,206,75,-7.32771098986321],[124,206,76,-7.304478624092636],[124,206,77,-7.304198963765747],[124,206,78,-7.295584528169338],[124,206,79,-7.272004026003678],[124,207,64,-7.299141777700039],[124,207,65,-7.297646234551584],[124,207,66,-7.280799156358754],[124,207,67,-7.2575161436925715],[124,207,68,-7.2394016116961835],[124,207,69,-7.239810005977964],[124,207,70,-7.265613970031999],[124,207,71,-7.299734365111184],[124,207,72,-7.345998370474481],[124,207,73,-7.378713022301164],[124,207,74,-7.381480217362158],[124,207,75,-7.376450724327619],[124,207,76,-7.359639616463301],[124,207,77,-7.356762429124129],[124,207,78,-7.341452628954418],[124,207,79,-7.312107746169798],[124,208,64,-7.348318490339836],[124,208,65,-7.347482260538042],[124,208,66,-7.330264639146708],[124,208,67,-7.309374999328858],[124,208,68,-7.290873916713913],[124,208,69,-7.292396214004011],[124,208,70,-7.318292657375677],[124,208,71,-7.350813892482975],[124,208,72,-7.395469426950988],[124,208,73,-7.4263698237554845],[124,208,74,-7.432516223175088],[124,208,75,-7.426496091650931],[124,208,76,-7.409010594230386],[124,208,77,-7.400170038006085],[124,208,78,-7.389149603969806],[124,208,79,-7.3658657408383315],[124,209,64,-7.396412662925255],[124,209,65,-7.397109018995023],[124,209,66,-7.379834535937998],[124,209,67,-7.360025263583622],[124,209,68,-7.345484740141088],[124,209,69,-7.345815414619568],[124,209,70,-7.369768891646904],[124,209,71,-7.400931724419011],[124,209,72,-7.445607215853604],[124,209,73,-7.47684373407277],[124,209,74,-7.485117478237778],[124,209,75,-7.478050175007727],[124,209,76,-7.459795184048893],[124,209,77,-7.455814224647083],[124,209,78,-7.433513355912843],[124,209,79,-7.416497428743454],[124,210,64,-7.448996195103939],[124,210,65,-7.4511695728439555],[124,210,66,-7.43403947258701],[124,210,67,-7.41586154765083],[124,210,68,-7.40362088984403],[124,210,69,-7.403297240147895],[124,210,70,-7.424126633594724],[124,210,71,-7.455943021530048],[124,210,72,-7.501977894529669],[124,210,73,-7.532913863183875],[124,210,74,-7.539995781043736],[124,210,75,-7.532835399611934],[124,210,76,-7.516263301951191],[124,210,77,-7.515451957861166],[124,210,78,-7.488727444567018],[124,210,79,-7.47482265083632],[124,211,64,-7.494969441710436],[124,211,65,-7.497870239421124],[124,211,66,-7.483716213547266],[124,211,67,-7.466088004122747],[124,211,68,-7.452792889180871],[124,211,69,-7.452727419264638],[124,211,70,-7.475341375745931],[124,211,71,-7.505346480109352],[124,211,72,-7.552603924690992],[124,211,73,-7.585119013300153],[124,211,74,-7.591157790263997],[124,211,75,-7.586308100677038],[124,211,76,-7.568404607538063],[124,211,77,-7.572730284409992],[124,211,78,-7.551741803830537],[124,211,79,-7.53580988132985],[124,212,64,-7.5354127905453305],[124,212,65,-7.5420676681919945],[124,212,66,-7.530016491568791],[124,212,67,-7.51764832051629],[124,212,68,-7.506260302246768],[124,212,69,-7.509346713459299],[124,212,70,-7.533652858544115],[124,212,71,-7.5664244161094665],[124,212,72,-7.613889407395617],[124,212,73,-7.644897936648228],[124,212,74,-7.65487437849875],[124,212,75,-7.6486260017757495],[124,212,76,-7.62692548773504],[124,212,77,-7.625387472925595],[124,212,78,-7.60517628708952],[124,212,79,-7.58657229164622],[124,213,64,-7.581724998545886],[124,213,65,-7.590681644387865],[124,213,66,-7.582743909250248],[124,213,67,-7.569802620959685],[124,213,68,-7.5603870600231495],[124,213,69,-7.563311750028849],[124,213,70,-7.587261755689833],[124,213,71,-7.619532032628546],[124,213,72,-7.663908901840402],[124,213,73,-7.694694466326613],[124,213,74,-7.704790304224312],[124,213,75,-7.700303866852311],[124,213,76,-7.715531377797754],[124,213,77,-7.721856996188155],[124,213,78,-7.702678196744319],[124,213,79,-7.678778161001111],[124,214,64,-7.632903010900207],[124,214,65,-7.640230224293625],[124,214,66,-7.63480259300234],[124,214,67,-7.6200117602501605],[124,214,68,-7.609539319835783],[124,214,69,-7.614978745672927],[124,214,70,-7.640494787784869],[124,214,71,-7.672679114476753],[124,214,72,-7.716671549946578],[124,214,73,-7.749262743358915],[124,214,74,-7.7541774049461],[124,214,75,-7.752415202054195],[124,214,76,-7.782769994354992],[124,214,77,-7.775646769198129],[124,214,78,-7.7592585614454705],[124,214,79,-7.728834524611419],[124,215,64,-7.685130998406933],[124,215,65,-7.6916715281749575],[124,215,66,-7.687811890491554],[124,215,67,-7.674004828090473],[124,215,68,-7.660290648301816],[124,215,69,-7.667961609230148],[124,215,70,-7.695533899028324],[124,215,71,-7.7236822868438875],[124,215,72,-7.769779330983926],[124,215,73,-7.800897965533113],[124,215,74,-7.806093081796075],[124,215,75,-7.805446858171755],[124,215,76,-7.833958264996654],[124,215,77,-7.821786941118993],[124,215,78,-7.8073153273445905],[124,215,79,-7.774524865318416],[124,216,64,-7.736309355096647],[124,216,65,-7.74345241270389],[124,216,66,-7.737009606852466],[124,216,67,-7.722365507753191],[124,216,68,-7.707934290527065],[124,216,69,-7.71654779224275],[124,216,70,-7.7453492318747355],[124,216,71,-7.774316523966684],[124,216,72,-7.8191510833651785],[124,216,73,-7.8510699773351655],[124,216,74,-7.856030684277571],[124,216,75,-7.864868354918808],[124,216,76,-7.8967553429835],[124,216,77,-7.882399007359842],[124,216,78,-7.877583433270145],[124,216,79,-7.824381500122316],[124,217,64,-7.790253052120567],[124,217,65,-7.794350422903484],[124,217,66,-7.780783495169767],[124,217,67,-7.7617263222837245],[124,217,68,-7.751570306797316],[124,217,69,-7.758963871045793],[124,217,70,-7.787373944967138],[124,217,71,-7.822541724826417],[124,217,72,-7.869454769784645],[124,217,73,-7.904047826445206],[124,217,74,-7.9101991164124374],[124,217,75,-7.923416794581929],[124,217,76,-7.95047164281639],[124,217,77,-7.933476642710566],[124,217,78,-7.92764522973316],[124,217,79,-7.8706871409483945],[124,218,64,-7.8448414310316],[124,218,65,-7.8501844160495295],[124,218,66,-7.83616804169976],[124,218,67,-7.815742290909395],[124,218,68,-7.807936076758789],[124,218,69,-7.813625805011929],[124,218,70,-7.838992686602928],[124,218,71,-7.876571619137921],[124,218,72,-7.924031226763425],[124,218,73,-7.958791650094583],[124,218,74,-7.965481343545917],[124,218,75,-7.973801620048663],[124,218,76,-7.998666206167151],[124,218,77,-7.981249530778883],[124,218,78,-7.981528279624962],[124,218,79,-7.923695445157285],[124,219,64,-7.895734978418344],[124,219,65,-7.898649070065918],[124,219,66,-7.882522259776494],[124,219,67,-7.866968288494862],[124,219,68,-7.857156412287738],[124,219,69,-7.862397430306928],[124,219,70,-7.8887289555152345],[124,219,71,-7.925215773684409],[124,219,72,-7.975942012127793],[124,219,73,-8.006827443685665],[124,219,74,-8.015968035234224],[124,219,75,-8.033146825395693],[124,219,76,-8.06201313865213],[124,219,77,-8.045348866426421],[124,219,78,-8.0387057041707],[124,219,79,-7.980173735277497],[124,220,64,-7.939441427550305],[124,220,65,-7.939111500081113],[124,220,66,-7.922558681003548],[124,220,67,-7.908415745479173],[124,220,68,-7.892856414674848],[124,220,69,-7.8956948246932015],[124,220,70,-7.920726924704934],[124,220,71,-7.956433534069079],[124,220,72,-8.008996070259895],[124,220,73,-8.041828614610411],[124,220,74,-8.05143438086253],[124,220,75,-8.076665710188601],[124,220,76,-8.106136079127936],[124,220,77,-8.103567051694867],[124,220,78,-8.087790318328421],[124,220,79,-8.029568124566525],[124,221,64,-7.988720702628564],[124,221,65,-7.991885074417885],[124,221,66,-7.97554269290961],[124,221,67,-7.960302142205997],[124,221,68,-7.943871296598962],[124,221,69,-7.946456904020471],[124,221,70,-7.970340064790541],[124,221,71,-8.005591629053818],[124,221,72,-8.05783745512488],[124,221,73,-8.092270416012251],[124,221,74,-8.128120753092492],[124,221,75,-8.173884452510958],[124,221,76,-8.197488110971701],[124,221,77,-8.18634977762498],[124,221,78,-8.138684174925192],[124,221,79,-8.080272785573868],[124,222,64,-8.037424852356192],[124,222,65,-8.043629541020932],[124,222,66,-8.028726418282575],[124,222,67,-8.009768860008192],[124,222,68,-7.993888758412121],[124,222,69,-7.99926177904452],[124,222,70,-8.022367548197135],[124,222,71,-8.054830189280809],[124,222,72,-8.10756898739394],[124,222,73,-8.144290582857613],[124,222,74,-8.188288878535364],[124,222,75,-8.221616789243695],[124,222,76,-8.237937643967113],[124,222,77,-8.22273345731045],[124,222,78,-8.17578935325957],[124,222,79,-8.123434711751608],[124,223,64,-8.093077603186723],[124,223,65,-8.099060002730345],[124,223,66,-8.08186876144083],[124,223,67,-8.061948523847727],[124,223,68,-8.047755361642961],[124,223,69,-8.052860621426786],[124,223,70,-8.077308159922826],[124,223,71,-8.109464160569033],[124,223,72,-8.158633816405917],[124,223,73,-8.197516173115526],[124,223,74,-8.217573059009926],[124,223,75,-8.249859966570277],[124,223,76,-8.271077672615451],[124,223,77,-8.266256845330608],[124,223,78,-8.219192596554167],[124,223,79,-8.171291338239815],[124,224,64,-8.145522269112021],[124,224,65,-8.149015896274893],[124,224,66,-8.131887450659681],[124,224,67,-8.111233468154655],[124,224,68,-8.097681998582738],[124,224,69,-8.102985917028116],[124,224,70,-8.127268123685731],[124,224,71,-8.15939119839737],[124,224,72,-8.208358176385659],[124,224,73,-8.24725736006531],[124,224,74,-8.268941054959338],[124,224,75,-8.304265674008295],[124,224,76,-8.328125065912696],[124,224,77,-8.3153437925389],[124,224,78,-8.269344028292787],[124,224,79,-8.218471683980125],[124,225,64,-8.201061621832563],[124,225,65,-8.203484706461621],[124,225,66,-8.182474077780443],[124,225,67,-8.152875940358133],[124,225,68,-8.138788493083224],[124,225,69,-8.145232169083954],[124,225,70,-8.16754434491711],[124,225,71,-8.19971641063103],[124,225,72,-8.248909061445733],[124,225,73,-8.28563893401512],[124,225,74,-8.315265185561932],[124,225,75,-8.356874493561595],[124,225,76,-8.38220088319765],[124,225,77,-8.366237972210861],[124,225,78,-8.318844913340197],[124,225,79,-8.268297146963999],[124,226,64,-8.255023636146225],[124,226,65,-8.258689565007781],[124,226,66,-8.238177395854462],[124,226,67,-8.206363139921494],[124,226,68,-8.189791603611386],[124,226,69,-8.198115513465414],[124,226,70,-8.21895468790814],[124,226,71,-8.251536416596396],[124,226,72,-8.300827719148172],[124,226,73,-8.336446938755081],[124,226,74,-8.360235830393195],[124,226,75,-8.398890539926336],[124,226,76,-8.424958619117119],[124,226,77,-8.41746910838206],[124,226,78,-8.368890321158405],[124,226,79,-8.312922557576396],[124,227,64,-8.305319264215166],[124,227,65,-8.308983760032651],[124,227,66,-8.287357326709447],[124,227,67,-8.254551719101368],[124,227,68,-8.238733836073676],[124,227,69,-8.244159581381474],[124,227,70,-8.267159645739051],[124,227,71,-8.302110348533104],[124,227,72,-8.34987343606453],[124,227,73,-8.384525262659427],[124,227,74,-8.416236348911294],[124,227,75,-8.452456802190328],[124,227,76,-8.483449823437871],[124,227,77,-8.474983975426868],[124,227,78,-8.427267966842308],[124,227,79,-8.36977755325192],[124,228,64,-8.347616570562423],[124,228,65,-8.350446533143936],[124,228,66,-8.328637446853154],[124,228,67,-8.298009388059068],[124,228,68,-8.281394886737205],[124,228,69,-8.283428301206738],[124,228,70,-8.307082891753593],[124,228,71,-8.33788260376232],[124,228,72,-8.388434581473232],[124,228,73,-8.42280800426697],[124,228,74,-8.457920543686456],[124,228,75,-8.50094451529619],[124,228,76,-8.531410796853443],[124,228,77,-8.528120976323851],[124,228,78,-8.478813633805729],[124,228,79,-8.423127166226893],[124,229,64,-8.38836964769941],[124,229,65,-8.395354893236268],[124,229,66,-8.383152853943797],[124,229,67,-8.357566321132271],[124,229,68,-8.34376939559747],[124,229,69,-8.343242558153799],[124,229,70,-8.366497158757808],[124,229,71,-8.39860988601557],[124,229,72,-8.452340732226503],[124,229,73,-8.48482187618256],[124,229,74,-8.572567158707532],[124,229,75,-8.609332098004808],[124,229,76,-8.615757362960926],[124,229,77,-8.579242012513356],[124,229,78,-8.53161760789197],[124,229,79,-8.478985155858897],[124,230,64,-8.43771237549909],[124,230,65,-8.446057303947262],[124,230,66,-8.433690365473728],[124,230,67,-8.408946015635053],[124,230,68,-8.392708814354972],[124,230,69,-8.392180473284824],[124,230,70,-8.41498555890801],[124,230,71,-8.450437439037236],[124,230,72,-8.503815484475423],[124,230,73,-8.535043305386527],[124,230,74,-8.623190444253115],[124,230,75,-8.651865786381286],[124,230,76,-8.658314049849796],[124,230,77,-8.622749399018302],[124,230,78,-8.57541656312827],[124,230,79,-8.525504309299686],[124,231,64,-8.49457256753424],[124,231,65,-8.501632827979757],[124,231,66,-8.48809019704208],[124,231,67,-8.463315019285577],[124,231,68,-8.445924920056568],[124,231,69,-8.447047069553317],[124,231,70,-8.46736954719441],[124,231,71,-8.504022788015227],[124,231,72,-8.555821555673354],[124,231,73,-8.586382823553723],[124,231,74,-8.663613744552785],[124,231,75,-8.68408767362395],[124,231,76,-8.70593741531322],[124,231,77,-8.66942297752848],[124,231,78,-8.62466631033893],[124,231,79,-8.574338030126347],[124,232,64,-8.543307776385692],[124,232,65,-8.551253757317776],[124,232,66,-8.536488030586693],[124,232,67,-8.512559585944558],[124,232,68,-8.495259411872658],[124,232,69,-8.497327627858105],[124,232,70,-8.51757733268786],[124,232,71,-8.554348937871378],[124,232,72,-8.604310637725575],[124,232,73,-8.637104023118463],[124,232,74,-8.701810944393216],[124,232,75,-8.718521124897826],[124,232,76,-8.754738385551532],[124,232,77,-8.72101714827062],[124,232,78,-8.67507202579858],[124,232,79,-8.62989450175417],[124,233,64,-8.591578939378975],[124,233,65,-8.602038524109947],[124,233,66,-8.586000573910908],[124,233,67,-8.558210597017112],[124,233,68,-8.545142184679806],[124,233,69,-8.545134743067928],[124,233,70,-8.566392334113601],[124,233,71,-8.603295746407674],[124,233,72,-8.652229998641955],[124,233,73,-8.687212748617872],[124,233,74,-8.741236239675036],[124,233,75,-8.765337754409636],[124,233,76,-8.800757093154248],[124,233,77,-8.776948626235777],[124,233,78,-8.730406170157522],[124,233,79,-8.683938695103954],[124,234,64,-8.648540672528613],[124,234,65,-8.658684908464702],[124,234,66,-8.638480081729256],[124,234,67,-8.61090182383374],[124,234,68,-8.596571399880206],[124,234,69,-8.597181568554497],[124,234,70,-8.618457626010883],[124,234,71,-8.655801096028116],[124,234,72,-8.706151927425536],[124,234,73,-8.735261209737137],[124,234,74,-8.773004117664682],[124,234,75,-8.808796848445276],[124,234,76,-8.849819446104995],[124,234,77,-8.836690925948286],[124,234,78,-8.78973987968525],[124,234,79,-8.742028075476316],[124,235,64,-8.698070445653178],[124,235,65,-8.707280653920144],[124,235,66,-8.686971210781127],[124,235,67,-8.660244914589969],[124,235,68,-8.643274580450763],[124,235,69,-8.649184003912625],[124,235,70,-8.669155838738813],[124,235,71,-8.703209412658902],[124,235,72,-8.75287464495193],[124,235,73,-8.782867643429901],[124,235,74,-8.788197956162735],[124,235,75,-8.784010951601779],[124,235,76,-8.835951839303469],[124,235,77,-8.897100862212003],[124,235,78,-8.849285682625666],[124,235,79,-8.800440165418209],[124,236,64,-8.745970086275207],[124,236,65,-8.756765600950274],[124,236,66,-8.745330412990516],[124,236,67,-8.72214263607513],[124,236,68,-8.708809269895774],[124,236,69,-8.717055299517883],[124,236,70,-8.739327191582477],[124,236,71,-8.774044659023875],[124,236,72,-8.823473399500754],[124,236,73,-8.853679592910066],[124,236,74,-8.859922578433014],[124,236,75,-8.852663544367408],[124,236,76,-8.900667444221694],[124,236,77,-8.955378359974835],[124,236,78,-8.908136708669177],[124,236,79,-8.8580254932573],[124,237,64,-8.796401072440544],[124,237,65,-8.80550188602688],[124,237,66,-8.788514426811755],[124,237,67,-8.764975388417081],[124,237,68,-8.75040616207377],[124,237,69,-8.757222239608497],[124,237,70,-8.781920136965484],[124,237,71,-8.81618605838749],[124,237,72,-8.867101149432159],[124,237,73,-8.898257039922733],[124,237,74,-8.905444194666126],[124,237,75,-8.936325765322323],[124,237,76,-8.98304247992613],[124,237,77,-9.002438816432168],[124,237,78,-8.959121171647851],[124,237,79,-8.909551965312899],[124,238,64,-8.84667509736478],[124,238,65,-8.85609883367809],[124,238,66,-8.837069543302382],[124,238,67,-8.812354010705002],[124,238,68,-8.801584896664847],[124,238,69,-8.806952037798764],[124,238,70,-8.83226230609474],[124,238,71,-8.865044225304818],[124,238,72,-8.91536885277771],[124,238,73,-8.94858149853027],[124,238,74,-8.955076834210299],[124,238,75,-9.00070323047306],[124,238,76,-9.041626175369448],[124,238,77,-9.049141625912368],[124,238,78,-9.00627587002826],[124,238,79,-8.955280493525734],[124,239,64,-8.90189859977282],[124,239,65,-8.909949325381712],[124,239,66,-8.890494541643081],[124,239,67,-8.866871192338962],[124,239,68,-8.854668541933943],[124,239,69,-8.86200577357857],[124,239,70,-8.886712743169099],[124,239,71,-8.918522895628094],[124,239,72,-8.966826821851766],[124,239,73,-8.99709018693367],[124,239,74,-9.003015770616404],[124,239,75,-9.039631564293366],[124,239,76,-9.073993337759266],[124,239,77,-9.093781658473125],[124,239,78,-9.050455605423181],[124,239,79,-8.999624327395813],[124,240,64,-8.947200677701995],[124,240,65,-8.9540395367389],[124,240,66,-8.937004748267583],[124,240,67,-8.914329415807055],[124,240,68,-8.900534819678327],[124,240,69,-8.910751433145508],[124,240,70,-8.934318830439256],[124,240,71,-8.968990273670554],[124,240,72,-9.014373229608678],[124,240,73,-9.047152199510798],[124,240,74,-9.052902442256276],[124,240,75,-9.082468340399984],[124,240,76,-9.118731027678654],[124,240,77,-9.134284120027948],[124,240,78,-9.097297805907882],[124,240,79,-9.045970179051745],[124,241,64,-8.991524665951278],[124,241,65,-9.001936903423385],[124,241,66,-8.985657219431841],[124,241,67,-8.96519362976303],[124,241,68,-8.953756450273021],[124,241,69,-8.964652092411345],[124,241,70,-8.98635725656565],[124,241,71,-9.022558136717823],[124,241,72,-9.067556912822026],[124,241,73,-9.098551803771702],[124,241,74,-9.103653842149848],[124,241,75,-9.098516803907355],[124,241,76,-9.073635354399146],[124,241,77,-9.035364747500966],[124,241,78,-8.98494784984621],[124,241,79,-9.029671462790594],[124,242,64,-9.042798641225877],[124,242,65,-9.05442081719676],[124,242,66,-9.036189288742749],[124,242,67,-9.017038619947732],[124,242,68,-9.006284962747955],[124,242,69,-9.01552905832022],[124,242,70,-9.03558172844123],[124,242,71,-9.069589626346147],[124,242,72,-9.118128621324768],[124,242,73,-9.149881353141708],[124,242,74,-9.154886830672403],[124,242,75,-9.152364115485106],[124,242,76,-9.128763171854262],[124,242,77,-9.086557908140376],[124,242,78,-9.03393215664346],[124,242,79,-9.068428558380365],[124,243,64,-9.088137547789827],[124,243,65,-9.099944344988552],[124,243,66,-9.085785849239421],[124,243,67,-9.062249108528968],[124,243,68,-9.052673937532019],[124,243,69,-9.060902679386842],[124,243,70,-9.081677784221808],[124,243,71,-9.114138276703958],[124,243,72,-9.164811619037922],[124,243,73,-9.198599853250984],[124,243,74,-9.20497038333048],[124,243,75,-9.20039308965789],[124,243,76,-9.177795922382671],[124,243,77,-9.134484551929244],[124,243,78,-9.08064458182046],[124,243,79,-9.110805579706982],[124,244,64,-9.123914255910064],[124,244,65,-9.125736868877254],[124,244,66,-9.105108507124932],[124,244,67,-9.07161294104091],[124,244,68,-9.05686520458498],[124,244,69,-9.057788064204832],[124,244,70,-9.076343156119115],[124,244,71,-9.10589071202148],[124,244,72,-9.152162464745064],[124,244,73,-9.186637568491394],[124,244,74,-9.193825079521098],[124,244,75,-9.188426589232414],[124,244,76,-9.166726290250242],[124,244,77,-9.12265525793105],[124,244,78,-9.071153939105223],[124,244,79,-9.110112389054478],[124,245,64,-9.17223133485943],[124,245,65,-9.17351761958765],[124,245,66,-9.151316617198235],[124,245,67,-9.119017815222184],[124,245,68,-9.104890028451264],[124,245,69,-9.10649236742596],[124,245,70,-9.121287451590774],[124,245,71,-9.15243916953741],[124,245,72,-9.198049383508119],[124,245,73,-9.232454184752813],[124,245,74,-9.240815520566889],[124,245,75,-9.235722570048893],[124,245,76,-9.213604955753546],[124,245,77,-9.170080244666762],[124,245,78,-9.118074803507474],[124,245,79,-9.143753988494234],[124,246,64,-9.222138676165297],[124,246,65,-9.220297082571019],[124,246,66,-9.196875505058555],[124,246,67,-9.163882527763253],[124,246,68,-9.149327049779211],[124,246,69,-9.151360161840206],[124,246,70,-9.164776432727678],[124,246,71,-9.19713544267964],[124,246,72,-9.244218494556348],[124,246,73,-9.276629082353416],[124,246,74,-9.287527535694615],[124,246,75,-9.281176212000224],[124,246,76,-9.258706294427112],[124,246,77,-9.218036528972684],[124,246,78,-9.166928529975147],[124,246,79,-9.175826213032188],[124,247,64,-9.274352993749245],[124,247,65,-9.272729130382539],[124,247,66,-9.245848482411677],[124,247,67,-9.211709038199446],[124,247,68,-9.196704543031313],[124,247,69,-9.199928948577867],[124,247,70,-9.212929255259047],[124,247,71,-9.242236821336876],[124,247,72,-9.290465626222973],[124,247,73,-9.32403847744846],[124,247,74,-9.334694306092228],[124,247,75,-9.3286979258455],[124,247,76,-9.30357541518167],[124,247,77,-9.262569908605172],[124,247,78,-9.212296701806805],[124,247,79,-9.20113813043354],[124,248,64,-9.318607928014176],[124,248,65,-9.314787689693112],[124,248,66,-9.289140046848445],[124,248,67,-9.254894141380214],[124,248,68,-9.236849629850454],[124,248,69,-9.242496232996878],[124,248,70,-9.257312164325517],[124,248,71,-9.28670154439483],[124,248,72,-9.334365094274315],[124,248,73,-9.37119380946345],[124,248,74,-9.382383184649612],[124,248,75,-9.374781509578913],[124,248,76,-9.350456734847016],[124,248,77,-9.30936499640695],[124,248,78,-9.260578407640187],[124,248,79,-9.248029262195477],[124,249,64,-9.372781457667047],[124,249,65,-9.364520852717018],[124,249,66,-9.332507315249595],[124,249,67,-9.29974940093247],[124,249,68,-9.281776496428606],[124,249,69,-9.285621789059318],[124,249,70,-9.302409202338453],[124,249,71,-9.330370376969952],[124,249,72,-9.376820517316553],[124,249,73,-9.41268863752161],[124,249,74,-9.421854651135375],[124,249,75,-9.413602222657945],[124,249,76,-9.390887845813845],[124,249,77,-9.352158580974816],[124,249,78,-9.32587488021224],[124,249,79,-9.341867470348227],[124,250,64,-9.421977302292808],[124,250,65,-9.411824815328773],[124,250,66,-9.384782339764607],[124,250,67,-9.389891269030127],[124,250,68,-9.365567983596591],[124,250,69,-9.390287638526633],[124,250,70,-9.414819591911208],[124,250,71,-9.43313406240809],[124,250,72,-9.463935633941343],[124,250,73,-9.484901959047962],[124,250,74,-9.516985198341764],[124,250,75,-9.52083722781506],[124,250,76,-9.4846897120708],[124,250,77,-9.451612732999394],[124,250,78,-9.414646975991605],[124,250,79,-9.338846277076097],[124,251,64,-9.465652474736775],[124,251,65,-9.45484446745949],[124,251,66,-9.438789343351536],[124,251,67,-9.448036877556897],[124,251,68,-9.427658212593022],[124,251,69,-9.454912999137099],[124,251,70,-9.482943481100612],[124,251,71,-9.49379121898692],[124,251,72,-9.511228502694841],[124,251,73,-9.532337561262219],[124,251,74,-9.561601962392402],[124,251,75,-9.556876075436302],[124,251,76,-9.521868559118406],[124,251,77,-9.496840963576377],[124,251,78,-9.449940836866466],[124,251,79,-9.378324880952672],[124,252,64,-9.508160813211607],[124,252,65,-9.497997841876067],[124,252,66,-9.474929008363803],[124,252,67,-9.482413025670422],[124,252,68,-9.472518387825698],[124,252,69,-9.502577907652432],[124,252,70,-9.532106579373771],[124,252,71,-9.545985175489129],[124,252,72,-9.558051965568307],[124,252,73,-9.584994755544411],[124,252,74,-9.609576800273498],[124,252,75,-9.599908000500914],[124,252,76,-9.563323719947203],[124,252,77,-9.55668268395193],[124,252,78,-9.49140026728064],[124,252,79,-9.43306359861886],[124,253,64,-9.547130399506102],[124,253,65,-9.537540332598267],[124,253,66,-9.51283273940065],[124,253,67,-9.482018083647555],[124,253,68,-9.471139434491482],[124,253,69,-9.501727579033727],[124,253,70,-9.545897251075694],[124,253,71,-9.57508679770425],[124,253,72,-9.59182963256304],[124,253,73,-9.632151657335632],[124,253,74,-9.67025516565874],[124,253,75,-9.670633477397825],[124,253,76,-9.63448561954469],[124,253,77,-9.635964605790198],[124,253,78,-9.588576432586583],[124,253,79,-9.549980191974914],[124,254,64,-9.512749396241617],[124,254,65,-9.510616809225795],[124,254,66,-9.49046232165349],[124,254,67,-9.467745888638373],[124,254,68,-9.469017009845707],[124,254,69,-9.514601587170416],[124,254,70,-9.562434387380595],[124,254,71,-9.601757777543687],[124,254,72,-9.620219719046945],[124,254,73,-9.671010819820445],[124,254,74,-9.712308607532671],[124,254,75,-9.726099546233483],[124,254,76,-9.703649620289283],[124,254,77,-9.694452984910757],[124,254,78,-9.665566571081216],[124,254,79,-9.628703207210243],[124,255,64,-9.557137804163235],[124,255,65,-9.555445285555681],[124,255,66,-9.537914329183463],[124,255,67,-9.516551812531889],[124,255,68,-9.50450969291299],[124,255,69,-9.557230620030191],[124,255,70,-9.596268908228167],[124,255,71,-9.643372575818407],[124,255,72,-9.659612456431065],[124,255,73,-9.70774663139577],[124,255,74,-9.75140100120333],[124,255,75,-9.767238404964722],[124,255,76,-9.753839359657338],[124,255,77,-9.74050083608629],[124,255,78,-9.717078270576266],[124,255,79,-9.67898411195573],[124,256,64,-9.601979398860541],[124,256,65,-9.601103675748837],[124,256,66,-9.585069744891264],[124,256,67,-9.563778708384724],[124,256,68,-9.550308819271638],[124,256,69,-9.603689272116144],[124,256,70,-9.632902346946784],[124,256,71,-9.684068615556233],[124,256,72,-9.70756379870709],[124,256,73,-9.757177369614384],[124,256,74,-9.793409236396368],[124,256,75,-9.814405747709232],[124,256,76,-9.801053690692736],[124,256,77,-9.790043673362243],[124,256,78,-9.764347667368142],[124,256,79,-9.74074464598722],[124,257,64,-9.647667963038739],[124,257,65,-9.649815208232981],[124,257,66,-9.63215970763905],[124,257,67,-9.610814452423359],[124,257,68,-9.5980046585116],[124,257,69,-9.655791839262019],[124,257,70,-9.68572425749747],[124,257,71,-9.742248831060161],[124,257,72,-9.781429720578583],[124,257,73,-9.835260461662573],[124,257,74,-9.861684964549225],[124,257,75,-9.886884118239108],[124,257,76,-9.868762720198674],[124,257,77,-9.868430023333575],[124,257,78,-9.85525802197303],[124,257,79,-9.837062035683296],[124,258,64,-9.701405235510139],[124,258,65,-9.703121928921615],[124,258,66,-9.683722676384548],[124,258,67,-9.664990565716733],[124,258,68,-9.652003740091283],[124,258,69,-9.665027143081991],[124,258,70,-9.700065115276225],[124,258,71,-9.747545210858464],[124,258,72,-9.811962025092374],[124,258,73,-9.866774791009142],[124,258,74,-9.890705878987621],[124,258,75,-9.916152117400516],[124,258,76,-9.901193924173633],[124,258,77,-9.912538844221684],[124,258,78,-9.907855733544158],[124,258,79,-9.908380149372201],[124,259,64,-9.747900573260225],[124,259,65,-9.752846606873048],[124,259,66,-9.732888310591644],[124,259,67,-9.715566556220558],[124,259,68,-9.70263590331387],[124,259,69,-9.713676213224321],[124,259,70,-9.756280273369752],[124,259,71,-9.797594651785296],[124,259,72,-9.860925310620647],[124,259,73,-9.910646471126372],[124,259,74,-9.93049842500419],[124,259,75,-9.934375218620543],[124,259,76,-9.92106894662796],[124,259,77,-9.928638831788268],[124,259,78,-9.934470485333192],[124,259,79,-9.957969436001065],[124,260,64,-9.924240059200153],[124,260,65,-9.935716581712372],[124,260,66,-9.921045897524149],[124,260,67,-9.905053251305054],[124,260,68,-9.89561785742284],[124,260,69,-9.912882857576896],[124,260,70,-9.943205106718805],[124,260,71,-9.989702000763137],[124,260,72,-10.055561773977928],[124,260,73,-10.10533897576007],[124,260,74,-10.127238385632552],[124,260,75,-10.12836366469523],[124,260,76,-10.113386664674156],[124,260,77,-10.090128088838435],[124,260,78,-10.05814895363818],[124,260,79,-10.025294848568674],[124,261,64,-9.974906613341094],[124,261,65,-9.985328175994379],[124,261,66,-9.97127904816007],[124,261,67,-9.9522608971048],[124,261,68,-9.944380372990034],[124,261,69,-9.978535818884586],[124,261,70,-9.999989344711592],[124,261,71,-10.038880402255234],[124,261,72,-10.1058891866655],[124,261,73,-10.154425613660138],[124,261,74,-10.175337450362466],[124,261,75,-10.178499090859242],[124,261,76,-10.1660137457318],[124,261,77,-10.138720554860871],[124,261,78,-10.108635838160943],[124,261,79,-10.072439913730335],[124,262,64,-10.027476698102102],[124,262,65,-10.037491370932555],[124,262,66,-10.023309851445667],[124,262,67,-10.004618436049281],[124,262,68,-9.994815922486051],[124,262,69,-10.039026998628621],[124,262,70,-10.064105453119861],[124,262,71,-10.092018538827755],[124,262,72,-10.157806165243638],[124,262,73,-10.20324039726515],[124,262,74,-10.225217094243666],[124,262,75,-10.233057543459696],[124,262,76,-10.223995152720038],[124,262,77,-10.19411217289859],[124,262,78,-10.181367584914334],[124,262,79,-10.145419059833898],[124,263,64,-10.073428763405369],[124,263,65,-10.083731098735944],[124,263,66,-10.07134558799752],[124,263,67,-10.050944154556946],[124,263,68,-10.040352895236412],[124,263,69,-10.079703067066328],[124,263,70,-10.114594615054962],[124,263,71,-10.139700816856228],[124,263,72,-10.204107747718428],[124,263,73,-10.251878045380307],[124,263,74,-10.273443236081087],[124,263,75,-10.283344775531482],[124,263,76,-10.273352741429774],[124,263,77,-10.244606609149006],[124,263,78,-10.229553641729622],[124,263,79,-10.189161617962334],[124,264,64,-10.118944389927675],[124,264,65,-10.130055489299908],[124,264,66,-10.117665840972286],[124,264,67,-10.098794934660903],[124,264,68,-10.087631531951564],[124,264,69,-10.122228169375699],[124,264,70,-10.166741327975386],[124,264,71,-10.189528737035218],[124,264,72,-10.25154483314897],[124,264,73,-10.299515158373032],[124,264,74,-10.326339921215808],[124,264,75,-10.337234900392422],[124,264,76,-10.324977135013073],[124,264,77,-10.296293665079547],[124,264,78,-10.278598390659818],[124,264,79,-10.23884445991237],[124,265,64,-10.16011936394722],[124,265,65,-10.17453769362984],[124,265,66,-10.164438528465338],[124,265,67,-10.14665798797583],[124,265,68,-10.13397555285789],[124,265,69,-10.153981818702443],[124,265,70,-10.20476215104121],[124,265,71,-10.246641287957976],[124,265,72,-10.32241171814751],[124,265,73,-10.38627473128302],[124,265,74,-10.440275193456756],[124,265,75,-10.44490530220708],[124,265,76,-10.433918365061604],[124,265,77,-10.397786722707457],[124,265,78,-10.351980797247904],[124,265,79,-10.298187921262844],[124,266,64,-10.208785634006144],[124,266,65,-10.22517785460024],[124,266,66,-10.21806745480854],[124,266,67,-10.199669092950039],[124,266,68,-10.184153036364314],[124,266,69,-10.198057196592698],[124,266,70,-10.237610922269134],[124,266,71,-10.284805813456893],[124,266,72,-10.357800447788664],[124,266,73,-10.427505780661324],[124,266,74,-10.48635220275255],[124,266,75,-10.483698093880724],[124,266,76,-10.470739141686154],[124,266,77,-10.433683700153953],[124,266,78,-10.387865317143206],[124,266,79,-10.333508697310064],[124,267,64,-10.25785893036803],[124,267,65,-10.271160772533655],[124,267,66,-10.263767310917764],[124,267,67,-10.244806766831575],[124,267,68,-10.230732617989375],[124,267,69,-10.246198566301645],[124,267,70,-10.283168931668838],[124,267,71,-10.332492323395003],[124,267,72,-10.406612307965116],[124,267,73,-10.479232640126622],[124,267,74,-10.543028075919372],[124,267,75,-10.540036943897213],[124,267,76,-10.525779439720614],[124,267,77,-10.487760910221661],[124,267,78,-10.442300360093682],[124,267,79,-10.387599733080073],[124,268,64,-10.303272772509962],[124,268,65,-10.320935466088168],[124,268,66,-10.3093730788352],[124,268,67,-10.289918036256612],[124,268,68,-10.277994110820071],[124,268,69,-10.29668428568622],[124,268,70,-10.333239201223718],[124,268,71,-10.390455023258566],[124,268,72,-10.468490730038543],[124,268,73,-10.533423453655496],[124,268,74,-10.584710419324027],[124,268,75,-10.583101832291016],[124,268,76,-10.566064044536498],[124,268,77,-10.536073067125796],[124,268,78,-10.489720890393468],[124,268,79,-10.43631711647584],[124,269,64,-10.348797957103539],[124,269,65,-10.367118354593241],[124,269,66,-10.354515014172094],[124,269,67,-10.33612292225282],[124,269,68,-10.32492907691616],[124,269,69,-10.34356213746194],[124,269,70,-10.382509841434631],[124,269,71,-10.444888582609664],[124,269,72,-10.523279117784641],[124,269,73,-10.583032005706679],[124,269,74,-10.630285709836851],[124,269,75,-10.633642793020734],[124,269,76,-10.615321182396277],[124,269,77,-10.58415509459485],[124,269,78,-10.539638214801236],[124,269,79,-10.486029489664164],[124,270,64,-10.403642059578038],[124,270,65,-10.417608224041988],[124,270,66,-10.404565341778605],[124,270,67,-10.385671253725699],[124,270,68,-10.375576994252713],[124,270,69,-10.395570107458367],[124,270,70,-10.433959231165499],[124,270,71,-10.500620071779663],[124,270,72,-10.573589986786448],[124,270,73,-10.63093337895188],[124,270,74,-10.676481212162477],[124,270,75,-10.684329667370399],[124,270,76,-10.669069466438302],[124,270,77,-10.637330759815462],[124,270,78,-10.594956102784533],[124,270,79,-10.542577866306889],[124,271,64,-10.449692102780487],[124,271,65,-10.463308579880678],[124,271,66,-10.447846318427814],[124,271,67,-10.430517501561829],[124,271,68,-10.424173344234589],[124,271,69,-10.44272325977522],[124,271,70,-10.47990783315291],[124,271,71,-10.556549807799541],[124,271,72,-10.617851557868628],[124,271,73,-10.679248482786603],[124,271,74,-10.727152935882453],[124,271,75,-10.739003217298759],[124,271,76,-10.721727537805272],[124,271,77,-10.68545482386687],[124,271,78,-10.64520541957276],[124,271,79,-10.590876730414486],[124,272,64,-10.494367738332285],[124,272,65,-10.50955038818642],[124,272,66,-10.493370100412301],[124,272,67,-10.475494362585536],[124,272,68,-10.470806554479406],[124,272,69,-10.489914779842644],[124,272,70,-10.527456147255858],[124,272,71,-10.610941616965752],[124,272,72,-10.671828058234892],[124,272,73,-10.73518615753469],[124,272,74,-10.775814203943083],[124,272,75,-10.792186097464555],[124,272,76,-10.774421900962812],[124,272,77,-10.738390206093866],[124,272,78,-10.695922887598021],[124,272,79,-10.639117840186247],[124,273,64,-10.54439345448234],[124,273,65,-10.553555578069538],[124,273,66,-10.534818570693238],[124,273,67,-10.51394833619541],[124,273,68,-10.510634877846678],[124,273,69,-10.531658359340861],[124,273,70,-10.565393566482618],[124,273,71,-10.622612147749843],[124,273,72,-10.68661694712594],[124,273,73,-10.734628591606306],[124,273,74,-10.753721915839648],[124,273,75,-10.752041944430339],[124,273,76,-10.735715876173012],[124,273,77,-10.695048844814703],[124,273,78,-10.654071762079088],[124,273,79,-10.597431521570542],[124,274,64,-10.593552093304943],[124,274,65,-10.602566158125764],[124,274,66,-10.583603516255064],[124,274,67,-10.567280219034851],[124,274,68,-10.562994532544892],[124,274,69,-10.58221292091484],[124,274,70,-10.616762961583003],[124,274,71,-10.667894422144595],[124,274,72,-10.736418357418053],[124,274,73,-10.78680039037769],[124,274,74,-10.805375354035737],[124,274,75,-10.804096334493826],[124,274,76,-10.78341720129933],[124,274,77,-10.745851228477601],[124,274,78,-10.702429786992207],[124,274,79,-10.648040810917287],[124,275,64,-10.637398653620865],[124,275,65,-10.647377623373808],[124,275,66,-10.632167638457867],[124,275,67,-10.61522514695961],[124,275,68,-10.610921718698231],[124,275,69,-10.630381940556779],[124,275,70,-10.663914099742447],[124,275,71,-10.715251605602413],[124,275,72,-10.788443977757122],[124,275,73,-10.840385299889101],[124,275,74,-10.858419316407497],[124,275,75,-10.857821238555477],[124,275,76,-10.83691345516136],[124,275,77,-10.801665059899484],[124,275,78,-10.755912042075845],[124,275,79,-10.702260173970062],[124,276,64,-10.675246553885879],[124,276,65,-10.68690106028427],[124,276,66,-10.673900530435468],[124,276,67,-10.66044756161558],[124,276,68,-10.659612294689511],[124,276,69,-10.677585194680347],[124,276,70,-10.71444961427721],[124,276,71,-10.76561093382469],[124,276,72,-10.84050814464528],[124,276,73,-10.892830431809584],[124,276,74,-10.909538408312695],[124,276,75,-10.910291820154939],[124,276,76,-10.889758142886908],[124,276,77,-10.85208520384763],[124,276,78,-10.806427788854638],[124,276,79,-10.750992363995548],[124,277,64,-10.721649170191434],[124,277,65,-10.732860486106892],[124,277,66,-10.723676379723514],[124,277,67,-10.71261312510032],[124,277,68,-10.713993691649215],[124,277,69,-10.731675770992963],[124,277,70,-10.768113432126864],[124,277,71,-10.822704030037771],[124,277,72,-10.898146945471398],[124,277,73,-10.946343634054665],[124,277,74,-10.959999007268337],[124,277,75,-10.96121762656684],[124,277,76,-10.938583762123272],[124,277,77,-10.901947760541487],[124,277,78,-10.853057125569531],[124,277,79,-10.799777815457382],[124,278,64,-10.77452252395296],[124,278,65,-10.782685991855814],[124,278,66,-10.774640082562474],[124,278,67,-10.76365798314336],[124,278,68,-10.764294483224312],[124,278,69,-10.779930790610209],[124,278,70,-10.81636690185268],[124,278,71,-10.872156352341927],[124,278,72,-10.951159217262251],[124,278,73,-10.99881834963815],[124,278,74,-11.012551675063786],[124,278,75,-11.013619161362172],[124,278,76,-10.993016972825899],[124,278,77,-10.954706588367522],[124,278,78,-10.907537899495754],[124,278,79,-10.85435986085253],[124,279,64,-10.822172526607924],[124,279,65,-10.829295529955163],[124,279,66,-10.822025811039415],[124,279,67,-10.809038224878831],[124,279,68,-10.810056398258228],[124,279,69,-10.827871930561944],[124,279,70,-10.862564244455399],[124,279,71,-10.92034301774785],[124,279,72,-10.999355396917649],[124,279,73,-11.050218734777784],[124,279,74,-11.064347498152381],[124,279,75,-11.063922494379757],[124,279,76,-11.042765909085622],[124,279,77,-11.003657836654854],[124,279,78,-10.956517266039564],[124,279,79,-10.9019734232223],[124,280,64,-10.86709664408839],[124,280,65,-10.877452057266098],[124,280,66,-10.869580670222673],[124,280,67,-10.856006212571376],[124,280,68,-10.85777478383206],[124,280,69,-10.874269290110389],[124,280,70,-10.907488595732568],[124,280,71,-10.965636846851833],[124,280,72,-11.046545844955267],[124,280,73,-11.09949314284262],[124,280,74,-11.114223377586693],[124,280,75,-11.11515833611008],[124,280,76,-11.092542009831439],[124,280,77,-11.054564714613818],[124,280,78,-11.004200932867851],[124,280,79,-10.94921965506522],[124,281,64,-10.912887542106166],[124,281,65,-10.92508745407669],[124,281,66,-10.91392990610327],[124,281,67,-10.902512504071487],[124,281,68,-10.902926227987088],[124,281,69,-10.921395427470914],[124,281,70,-10.954113797882428],[124,281,71,-11.008545386822439],[124,281,72,-11.097496776012527],[124,281,73,-11.155775889269021],[124,281,74,-11.17467945955899],[124,281,75,-11.172788470973064],[124,281,76,-11.1510372727717],[124,281,77,-11.109722459109792],[124,281,78,-11.059724335981947],[124,281,79,-11.0035815308055],[124,282,64,-10.964219632742102],[124,282,65,-10.974991435395525],[124,282,66,-10.962372052488767],[124,282,67,-10.951827573882817],[124,282,68,-10.951437565914617],[124,282,69,-10.968247651853169],[124,282,70,-11.003712280120265],[124,282,71,-11.054954168373877],[124,282,72,-11.136615470007037],[124,282,73,-11.190308119570174],[124,282,74,-11.20952800854889],[124,282,75,-11.210552217009871],[124,282,76,-11.189458290129442],[124,282,77,-11.147828634124856],[124,282,78,-11.095775693054007],[124,282,79,-11.038054895440933],[124,283,64,-11.012417110229144],[124,283,65,-11.023090846937423],[124,283,66,-11.00851557852764],[124,283,67,-10.999132884285038],[124,283,68,-10.996469193901847],[124,283,69,-11.012648045820022],[124,283,70,-11.050858877522217],[124,283,71,-11.104428883063878],[124,283,72,-11.18970668231729],[124,283,73,-11.244683383796028],[124,283,74,-11.26587043879351],[124,283,75,-11.265932524892289],[124,283,76,-11.243589113855883],[124,283,77,-11.201483116692001],[124,283,78,-11.146587801067579],[124,283,79,-11.088301019846643],[124,284,64,-11.076943530373583],[124,284,65,-11.085904876791144],[124,284,66,-11.070945569098539],[124,284,67,-11.058054923149221],[124,284,68,-11.04940291521445],[124,284,69,-11.065902145698354],[124,284,70,-11.102729055611348],[124,284,71,-11.156102338976714],[124,284,72,-11.24513710337081],[124,284,73,-11.29940617954065],[124,284,74,-11.321142569757264],[124,284,75,-11.319394896697784],[124,284,76,-11.297564878750682],[124,284,77,-11.25475854242957],[124,284,78,-11.203322826294217],[124,284,79,-11.142749942458506],[124,285,64,-11.120214104617352],[124,285,65,-11.127140586659774],[124,285,66,-11.1094422603532],[124,285,67,-11.093123042211472],[124,285,68,-11.087861149198373],[124,285,69,-11.104667666063524],[124,285,70,-11.14007298273658],[124,285,71,-11.196716379254488],[124,285,72,-11.291439133884662],[124,285,73,-11.3489522562239],[124,285,74,-11.368661898592674],[124,285,75,-11.366958191548424],[124,285,76,-11.3444921620884],[124,285,77,-11.301588003645588],[124,285,78,-11.251850664528934],[124,285,79,-11.191663086249779],[124,286,64,-11.167474157749824],[124,286,65,-11.17430193247856],[124,286,66,-11.158968830455066],[124,286,67,-11.141957206354512],[124,286,68,-11.135991381953096],[124,286,69,-11.153935909497806],[124,286,70,-11.188717232014792],[124,286,71,-11.246025372691557],[124,286,72,-11.34068959523452],[124,286,73,-11.401247587887882],[124,286,74,-11.420593222503221],[124,286,75,-11.415557839206516],[124,286,76,-11.393065006444035],[124,286,77,-11.347415945542679],[124,286,78,-11.30175200502111],[124,286,79,-11.243257468624893],[124,287,64,-11.214747513479159],[124,287,65,-11.220656469173434],[124,287,66,-11.20635404710175],[124,287,67,-11.189419993372361],[124,287,68,-11.182444750283409],[124,287,69,-11.200940081460795],[124,287,70,-11.236193048164369],[124,287,71,-11.293660331132406],[124,287,72,-11.389166473745574],[124,287,73,-11.45231987238647],[124,287,74,-11.467162554614383],[124,287,75,-11.46357236341329],[124,287,76,-11.437651725104201],[124,287,77,-11.39340999059101],[124,287,78,-11.346865036518956],[124,287,79,-11.29029239499859],[124,288,64,-11.266465797078984],[124,288,65,-11.270865076814731],[124,288,66,-11.253960418018416],[124,288,67,-11.235739764300357],[124,288,68,-11.230296998843224],[124,288,69,-11.246563510513589],[124,288,70,-11.283511447522688],[124,288,71,-11.338337971642716],[124,288,72,-11.437005278291739],[124,288,73,-11.501603573931325],[124,288,74,-11.51323230802197],[124,288,75,-11.509712352374457],[124,288,76,-11.484181197636286],[124,288,77,-11.441917232736696],[124,288,78,-11.396491677395655],[124,288,79,-11.339034167690054],[124,289,64,-11.320782305456811],[124,289,65,-11.326580045290106],[124,289,66,-11.309231386576233],[124,289,67,-11.294543666457011],[124,289,68,-11.288898412881842],[124,289,69,-11.30497981462207],[124,289,70,-11.338612134546079],[124,289,71,-11.386720599714565],[124,289,72,-11.486975267437224],[124,289,73,-11.557221285863793],[124,289,74,-11.568342201877613],[124,289,75,-11.56405686071016],[124,289,76,-11.540567246335169],[124,289,77,-11.496208326426412],[124,289,78,-11.450080299397271],[124,289,79,-11.392331210054406],[124,290,64,-11.374827393623153],[124,290,65,-11.37894398527783],[124,290,66,-11.363152133687528],[124,290,67,-11.347425391666983],[124,290,68,-11.33953754905494],[124,290,69,-11.355809913851363],[124,290,70,-11.388210225586953],[124,290,71,-11.437748634585946],[124,290,72,-11.52225843316627],[124,290,73,-11.6005867121968],[124,290,74,-11.619702672357889],[124,290,75,-11.616933557137981],[124,290,76,-11.595642863396236],[124,290,77,-11.552947797661888],[124,290,78,-11.50623442921553],[124,290,79,-11.447004699509053],[124,291,64,-11.423652946254112],[124,291,65,-11.43042609008512],[124,291,66,-11.41181646225713],[124,291,67,-11.394377205892283],[124,291,68,-11.385579211407936],[124,291,69,-11.402646710138594],[124,291,70,-11.43580261864509],[124,291,71,-11.483679762040659],[124,291,72,-11.573625992470635],[124,291,73,-11.65314492221976],[124,291,74,-11.670080090526122],[124,291,75,-11.667371698609802],[124,291,76,-11.64679302681203],[124,291,77,-11.6043526158539],[124,291,78,-11.558366398758112],[124,291,79,-11.498017505331953],[124,292,64,-11.435833683658048],[124,292,65,-11.43786886272951],[124,292,66,-11.41563487661898],[124,292,67,-11.395037191313337],[124,292,68,-11.386975906540542],[124,292,69,-11.40142612692701],[124,292,70,-11.433141128492975],[124,292,71,-11.48069178786898],[124,292,72,-11.583150184628524],[124,292,73,-11.67416863222535],[124,292,74,-11.692583876299706],[124,292,75,-11.689440791885854],[124,292,76,-11.669395809869632],[124,292,77,-11.628942314239104],[124,292,78,-11.578776239573209],[124,292,79,-11.51589761420762],[124,293,64,-11.485502709653495],[124,293,65,-11.4857527912614],[124,293,66,-11.462731253833304],[124,293,67,-11.440862545990798],[124,293,68,-11.43151300697208],[124,293,69,-11.444096347101205],[124,293,70,-11.47913227885781],[124,293,71,-11.529623531994147],[124,293,72,-11.631768746373304],[124,293,73,-11.718022104604055],[124,293,74,-11.734720882368043],[124,293,75,-11.733065023834932],[124,293,76,-11.710654674828403],[124,293,77,-11.673486203787444],[124,293,78,-11.618955260771349],[124,293,79,-11.557055501309163],[124,294,64,-11.535398100341752],[124,294,65,-11.535578438543187],[124,294,66,-11.509520398991016],[124,294,67,-11.486881860942464],[124,294,68,-11.475628868190324],[124,294,69,-11.487030729251572],[124,294,70,-11.521243367668921],[124,294,71,-11.573760603558695],[124,294,72,-11.68274936772127],[124,294,73,-11.766271042659206],[124,294,74,-11.782666878608195],[124,294,75,-11.774832569562035],[124,294,76,-11.749040201061153],[124,294,77,-11.710712827359341],[124,294,78,-11.657707792191077],[124,294,79,-11.593785825235768],[124,295,64,-11.583158343292737],[124,295,65,-11.58411505596814],[124,295,66,-11.55681857570204],[124,295,67,-11.534996713734593],[124,295,68,-11.51995698109311],[124,295,69,-11.532467816203082],[124,295,70,-11.566190933150068],[124,295,71,-11.617579719737826],[124,295,72,-11.710578613375239],[124,295,73,-11.782379295521272],[124,295,74,-11.811389852835045],[124,295,75,-11.810481119791936],[124,295,76,-11.790253359277216],[124,295,77,-11.745728724318848],[124,295,78,-11.689022468830212],[124,295,79,-11.631987060611914],[124,296,64,-11.629808299560178],[124,296,65,-11.634049172327604],[124,296,66,-11.607581394471591],[124,296,67,-11.582218034404283],[124,296,68,-11.565932833259685],[124,296,69,-11.577647270501153],[124,296,70,-11.6097592080245],[124,296,71,-11.661656893442004],[124,296,72,-11.752343421030716],[124,296,73,-11.825173288215785],[124,296,74,-11.853892931481012],[124,296,75,-11.853879463239993],[124,296,76,-11.83511955632801],[124,296,77,-11.787640818306286],[124,296,78,-11.731469796649172],[124,296,79,-11.674005657563596],[124,297,64,-11.679672880548482],[124,297,65,-11.681773877625952],[124,297,66,-11.6557500919672],[124,297,67,-11.624091568112958],[124,297,68,-11.6075231580306],[124,297,69,-11.61909350292974],[124,297,70,-11.652486458837961],[124,297,71,-11.707377702579688],[124,297,72,-11.789376506908685],[124,297,73,-11.868686762199117],[124,297,74,-11.901150153315099],[124,297,75,-11.901417214126186],[124,297,76,-11.881955967673914],[124,297,77,-11.836771793920262],[124,297,78,-11.783083493984623],[124,297,79,-11.725981231255501],[124,298,64,-11.733338511298644],[124,298,65,-11.732850760306524],[124,298,66,-11.70479866714005],[124,298,67,-11.674075770997867],[124,298,68,-11.658643084288675],[124,298,69,-11.67067860448505],[124,298,70,-11.703468944184605],[124,298,71,-11.757414624328076],[124,298,72,-11.836173556610595],[124,298,73,-11.895882366483045],[124,298,74,-11.933215857521672],[124,298,75,-11.934085747683627],[124,298,76,-11.912643580431396],[124,298,77,-11.876913031155038],[124,298,78,-11.829069921552113],[124,298,79,-11.774926907634741],[124,299,64,-11.782295408279957],[124,299,65,-11.77797285722071],[124,299,66,-11.750936603799452],[124,299,67,-11.719452991209886],[124,299,68,-11.706466033814262],[124,299,69,-11.718069555806418],[124,299,70,-11.753718960743504],[124,299,71,-11.80367146652868],[124,299,72,-11.88146635684893],[124,299,73,-11.936756062896913],[124,299,74,-11.975131726825865],[124,299,75,-11.979999597667433],[124,299,76,-11.960003760887759],[124,299,77,-11.92237252709428],[124,299,78,-11.876023253521863],[124,299,79,-11.82283406240703],[124,300,64,-11.832893757376427],[124,300,65,-11.830249792189733],[124,300,66,-11.804839724302107],[124,300,67,-11.774641031215607],[124,300,68,-11.761525145994703],[124,300,69,-11.772163452478456],[124,300,70,-11.807370621079556],[124,300,71,-11.85740510819535],[124,300,72,-11.946997569595375],[124,300,73,-12.009978292229096],[124,300,74,-12.031465028223865],[124,300,75,-12.025099559631341],[124,300,76,-12.001092603799952],[124,300,77,-11.95667747167331],[124,300,78,-11.910145095265824],[124,300,79,-11.858387150146925],[124,301,64,-11.877191382396612],[124,301,65,-11.8788059786624],[124,301,66,-11.853395624953354],[124,301,67,-11.823568245110259],[124,301,68,-11.806934392450515],[124,301,69,-11.817634458289852],[124,301,70,-11.853314032271955],[124,301,71,-11.903847625525549],[124,301,72,-11.991924421387852],[124,301,73,-12.052292684675454],[124,301,74,-12.0746730480334],[124,301,75,-12.069582254650731],[124,301,76,-12.047070700976366],[124,301,77,-12.005125297923687],[124,301,78,-11.95393195842983],[124,301,79,-11.901428338655698],[124,302,64,-11.921070040867969],[124,302,65,-11.923829161792336],[124,302,66,-11.898857871477519],[124,302,67,-11.868260190741234],[124,302,68,-11.84996759678475],[124,302,69,-11.86000327091681],[124,302,70,-11.895101331510046],[124,302,71,-11.947685378705302],[124,302,72,-12.03273973396371],[124,302,73,-12.09240715908905],[124,302,74,-12.11595615071244],[124,302,75,-12.116214806568108],[124,302,76,-12.095513543039967],[124,302,77,-12.054736149731896],[124,302,78,-12.003539884037137],[124,302,79,-11.950692932107952],[124,303,64,-11.966644954924405],[124,303,65,-11.968426630092809],[124,303,66,-11.943594385718564],[124,303,67,-11.915454307643975],[124,303,68,-11.897464805825743],[124,303,69,-11.907838479710726],[124,303,70,-11.941443991056412],[124,303,71,-11.9937719470663],[124,303,72,-12.081023352636594],[124,303,73,-12.13970014164225],[124,303,74,-12.162434677986043],[124,303,75,-12.163853837104403],[124,303,76,-12.146652274176132],[124,303,77,-12.105721192332883],[124,303,78,-12.053515288683103],[124,303,79,-11.994584489025767],[124,304,64,-12.01445772536058],[124,304,65,-12.013281925311512],[124,304,66,-11.989695591490227],[124,304,67,-11.962605678560333],[124,304,68,-11.945775061475723],[124,304,69,-11.955669660221199],[124,304,70,-11.987972101145651],[124,304,71,-12.04029811984943],[124,304,72,-12.123871470383389],[124,304,73,-12.182052312361828],[124,304,74,-12.204406676458674],[124,304,75,-12.206263341593282],[124,304,76,-12.187374041236064],[124,304,77,-12.150800862275695],[124,304,78,-12.100783246354888],[124,304,79,-12.038759350741794],[124,305,64,-12.059494200910402],[124,305,65,-12.06120575903061],[124,305,66,-12.037766158709655],[124,305,67,-12.009526496003529],[124,305,68,-11.991472673436446],[124,305,69,-12.00100573010278],[124,305,70,-12.035031374996251],[124,305,71,-12.08551070695329],[124,305,72,-12.164933683021053],[124,305,73,-12.226925254199163],[124,305,74,-12.248816483537414],[124,305,75,-12.252453182312161],[124,305,76,-12.235000302314134],[124,305,77,-12.203362190893039],[124,305,78,-12.149771972229741],[124,305,79,-12.08618210956663],[124,306,64,-12.104404118901872],[124,306,65,-12.109999645369477],[124,306,66,-12.089370076837836],[124,306,67,-12.05745963084834],[124,306,68,-12.039912361717493],[124,306,69,-12.050070748572361],[124,306,70,-12.081528240503713],[124,306,71,-12.131780031338618],[124,306,72,-12.205425221752146],[124,306,73,-12.263705066571864],[124,306,74,-12.287724599476718],[124,306,75,-12.292793384782692],[124,306,76,-12.273942054769716],[124,306,77,-12.241239853308203],[124,306,78,-12.187814621844593],[124,306,79,-12.125367342560699],[124,307,64,-12.15008647668561],[124,307,65,-12.153931358899888],[124,307,66,-12.134622909789275],[124,307,67,-12.102062152263548],[124,307,68,-12.084520707378347],[124,307,69,-12.096216177634567],[124,307,70,-12.127342223362675],[124,307,71,-12.178575752112401],[124,307,72,-12.250727897143157],[124,307,73,-12.302720072142664],[124,307,74,-12.327876687375603],[124,307,75,-12.338734409256123],[124,307,76,-12.323853290674197],[124,307,77,-12.289525725603877],[124,307,78,-12.23860368964096],[124,307,79,-12.174588806263982],[124,308,64,-12.180391446649796],[124,308,65,-12.186221409707453],[124,308,66,-12.169597467967995],[124,308,67,-12.141016959943066],[124,308,68,-12.126140976615796],[124,308,69,-12.141196614624201],[124,308,70,-12.17528513543054],[124,308,71,-12.232188067149018],[124,308,72,-12.30788706712906],[124,308,73,-12.360392931811333],[124,308,74,-12.379947868369056],[124,308,75,-12.39178713239674],[124,308,76,-12.375291324897107],[124,308,77,-12.337069285084501],[124,308,78,-12.284772193018805],[124,308,79,-12.224128694671885],[124,309,64,-12.224394226620623],[124,309,65,-12.232561353151803],[124,309,66,-12.215978999397963],[124,309,67,-12.187060086153602],[124,309,68,-12.171150464172959],[124,309,69,-12.187239073726708],[124,309,70,-12.222204130162115],[124,309,71,-12.27963539799071],[124,309,72,-12.353491376782374],[124,309,73,-12.409292804473202],[124,309,74,-12.429150350871627],[124,309,75,-12.426749819156555],[124,309,76,-12.395277181263253],[124,309,77,-12.347784204451875],[124,309,78,-12.297575777258038],[124,309,79,-12.236652926923416],[124,310,64,-12.266416109706638],[124,310,65,-12.274283837006998],[124,310,66,-12.25500719625026],[124,310,67,-12.226886641145768],[124,310,68,-12.21241221831136],[124,310,69,-12.228662091708687],[124,310,70,-12.265069151453059],[124,310,71,-12.320940120017587],[124,310,72,-12.39202642796956],[124,310,73,-12.450368246626203],[124,310,74,-12.471132357127072],[124,310,75,-12.467973740735522],[124,310,76,-12.436497494521433],[124,310,77,-12.389187594968185],[124,310,78,-12.339231843141663],[124,310,79,-12.275963960203448],[124,311,64,-12.311478843664018],[124,311,65,-12.317633221547588],[124,311,66,-12.299887376928787],[124,311,67,-12.270306275057226],[124,311,68,-12.258340835845068],[124,311,69,-12.276310303856745],[124,311,70,-12.312261142892396],[124,311,71,-12.367337824061877],[124,311,72,-12.439114223426518],[124,311,73,-12.49413032934021],[124,311,74,-12.516769670179965],[124,311,75,-12.513358463933926],[124,311,76,-12.483040225721773],[124,311,77,-12.436911650728453],[124,311,78,-12.38325265466177],[124,311,79,-12.325276010142915],[124,312,64,-12.352401159082113],[124,312,65,-12.359631372806643],[124,312,66,-12.340329946562203],[124,312,67,-12.311508304060144],[124,312,68,-12.300488253758914],[124,312,69,-12.318513637007896],[124,312,70,-12.355021582117088],[124,312,71,-12.408671924839007],[124,312,72,-12.478899552275074],[124,312,73,-12.529643374718543],[124,312,74,-12.55027889043632],[124,312,75,-12.553318468698615],[124,312,76,-12.52799713944006],[124,312,77,-12.484178745710446],[124,312,78,-12.431282927248633],[124,312,79,-12.377461734514412],[124,313,64,-12.398459565160294],[124,313,65,-12.405175289976548],[124,313,66,-12.385509287501174],[124,313,67,-12.35917652490003],[124,313,68,-12.345849941914881],[124,313,69,-12.364211814677336],[124,313,70,-12.39974978790556],[124,313,71,-12.454218491937],[124,313,72,-12.52794735135419],[124,313,73,-12.576433395949369],[124,313,74,-12.59600545566551],[124,313,75,-12.601654414082125],[124,313,76,-12.576433854626218],[124,313,77,-12.53284034323686],[124,313,78,-12.481348264224978],[124,313,79,-12.433253562374158],[124,314,64,-12.44816783806824],[124,314,65,-12.453434667174777],[124,314,66,-12.435578585612431],[124,314,67,-12.409707659098206],[124,314,68,-12.394947614417909],[124,314,69,-12.411820872244169],[124,314,70,-12.44735219299257],[124,314,71,-12.502041053075521],[124,314,72,-12.574898673760709],[124,314,73,-12.626539697228612],[124,314,74,-12.645559766968429],[124,314,75,-12.650758963304694],[124,314,76,-12.626185823935364],[124,314,77,-12.582074302411025],[124,314,78,-12.533097572013562],[124,314,79,-12.487555090086598],[124,315,64,-12.498199329545562],[124,315,65,-12.500370530599856],[124,315,66,-12.479775110937114],[124,315,67,-12.455123172668953],[124,315,68,-12.442459898420132],[124,315,69,-12.455147491878527],[124,315,70,-12.490252814965821],[124,315,71,-12.546337421278643],[124,315,72,-12.621209895885901],[124,315,73,-12.673126426178078],[124,315,74,-12.69170932012468],[124,315,75,-12.695932062097333],[124,315,76,-12.673310998638057],[124,315,77,-12.625595704036998],[124,315,78,-12.585512370891475],[124,315,79,-12.532854646182374],[124,316,64,-12.55165665414592],[124,316,65,-12.555196667675979],[124,316,66,-12.531050914433678],[124,316,67,-12.505163497900133],[124,316,68,-12.490725869747083],[124,316,69,-12.49971098437024],[124,316,70,-12.536650444319594],[124,316,71,-12.590038267412297],[124,316,72,-12.665920104111132],[124,316,73,-12.720854210720463],[124,316,74,-12.741273874183886],[124,316,75,-12.744552178036425],[124,316,76,-12.725190992424954],[124,316,77,-12.678810199029755],[124,316,78,-12.636870557720826],[124,316,79,-12.58180335865807],[124,317,64,-12.599897167064325],[124,317,65,-12.602444555083503],[124,317,66,-12.577644197302115],[124,317,67,-12.550683740191417],[124,317,68,-12.535060980778471],[124,317,69,-12.544204482405547],[124,317,70,-12.579540355973323],[124,317,71,-12.632470700441951],[124,317,72,-12.7100742567949],[124,317,73,-12.768595814322266],[124,317,74,-12.789814249902374],[124,317,75,-12.795500844584108],[124,317,76,-12.778081945441917],[124,317,77,-12.732132568592855],[124,317,78,-12.686794109654308],[124,317,79,-12.634583625496756],[124,318,64,-12.643840950260032],[124,318,65,-12.644143074172048],[124,318,66,-12.616520274868916],[124,318,67,-12.587683906744427],[124,318,68,-12.573252588609066],[124,318,69,-12.583968940071525],[124,318,70,-12.615187915496875],[124,318,71,-12.671412039544157],[124,318,72,-12.751026073490253],[124,318,73,-12.810250179362436],[124,318,74,-12.830022561456786],[124,318,75,-12.837158010578547],[124,318,76,-12.82325112996074],[124,318,77,-12.782381580714327],[124,318,78,-12.734556762188797],[124,318,79,-12.680162381089088],[124,319,64,-12.69453049926533],[124,319,65,-12.689790546405884],[124,319,66,-12.661317829711006],[124,319,67,-12.633928846404883],[124,319,68,-12.617449310003515],[124,319,69,-12.627520049109538],[124,319,70,-12.661581853142975],[124,319,71,-12.719763512887443],[124,319,72,-12.798899770723603],[124,319,73,-12.858620870448425],[124,319,74,-12.881852015472399],[124,319,75,-12.888023564377852],[124,319,76,-12.871382030299763],[124,319,77,-12.833962886550632],[124,319,78,-12.784177192073152],[124,319,79,-12.729571900072937],[125,-64,64,23.080762411908218],[125,-64,65,22.994846204898852],[125,-64,66,22.90211166534707],[125,-64,67,22.91072928671132],[125,-64,68,22.93027589677744],[125,-64,69,22.9435346947717],[125,-64,70,22.95947496785985],[125,-64,71,22.991183981103898],[125,-64,72,23.03485484836676],[125,-64,73,23.061424180862776],[125,-64,74,23.058447069439772],[125,-64,75,23.073449277027233],[125,-64,76,23.133401829212676],[125,-64,77,23.24017341687451],[125,-64,78,23.422557392657477],[125,-64,79,23.558258889155844],[125,-63,64,22.94300082470027],[125,-63,65,22.85478497426302],[125,-63,66,22.753875819511634],[125,-63,67,22.713161437560736],[125,-63,68,22.73181945709254],[125,-63,69,22.74561347599945],[125,-63,70,22.76363703035346],[125,-63,71,22.794671774758218],[125,-63,72,22.839612347898445],[125,-63,73,22.864939299949064],[125,-63,74,22.860949043451733],[125,-63,75,22.876837773492127],[125,-63,76,22.940831017838732],[125,-63,77,23.064754205314326],[125,-63,78,23.26801553506659],[125,-63,79,23.401151089271742],[125,-62,64,22.75504175706696],[125,-62,65,22.65420570103116],[125,-62,66,22.567405611380718],[125,-62,67,22.52145438305722],[125,-62,68,22.54051619973307],[125,-62,69,22.55572639567312],[125,-62,70,22.57305033918412],[125,-62,71,22.606755077757455],[125,-62,72,22.649554647323676],[125,-62,73,22.67109117148606],[125,-62,74,22.669042398306967],[125,-62,75,22.687024790635103],[125,-62,76,22.752103141176065],[125,-62,77,22.871413405834662],[125,-62,78,23.067103833515034],[125,-62,79,23.18584039105772],[125,-61,64,22.476638854619534],[125,-61,65,22.39433873190352],[125,-61,66,22.37209384007722],[125,-61,67,22.328045739461913],[125,-61,68,22.346543581929538],[125,-61,69,22.359547290855318],[125,-61,70,22.377264412760542],[125,-61,71,22.41186579423164],[125,-61,72,22.4544612853106],[125,-61,73,22.475088870876966],[125,-61,74,22.47318596647944],[125,-61,75,22.493644464238884],[125,-61,76,22.55974726594374],[125,-61,77,22.673305016106116],[125,-61,78,22.81549938229909],[125,-61,79,22.90618756726226],[125,-60,64,22.280904452687743],[125,-60,65,22.228401129663514],[125,-60,66,22.20395883363982],[125,-60,67,22.14739665689381],[125,-60,68,22.15782504555855],[125,-60,69,22.173340608698783],[125,-60,70,22.19169163109222],[125,-60,71,22.226399032901305],[125,-60,72,22.26909749741171],[125,-60,73,22.2896330429898],[125,-60,74,22.288202683599156],[125,-60,75,22.30808819363859],[125,-60,76,22.375287658878513],[125,-60,77,22.489048879776874],[125,-60,78,22.62617120434952],[125,-60,79,22.72108497103311],[125,-59,64,21.98792010255619],[125,-59,65,21.96332089764255],[125,-59,66,21.950449169500708],[125,-59,67,21.96075125298409],[125,-59,68,21.980951143228207],[125,-59,69,21.99557023049587],[125,-59,70,22.014047125309872],[125,-59,71,22.048780838025852],[125,-59,72,22.08695039316029],[125,-59,73,22.105840202239268],[125,-59,74,22.105871167637527],[125,-59,75,22.124046270099985],[125,-59,76,22.190573993365742],[125,-59,77,22.30276848783901],[125,-59,78,22.424247439100924],[125,-59,79,22.538008810891125],[125,-58,64,21.79631628646358],[125,-58,65,21.771776030411818],[125,-58,66,21.760278307322707],[125,-58,67,21.77086718627106],[125,-58,68,21.79241705107096],[125,-58,69,21.808779111678582],[125,-58,70,21.82831894370648],[125,-58,71,21.859117421449767],[125,-58,72,21.896743588879975],[125,-58,73,21.917833750974534],[125,-58,74,21.91575756233899],[125,-58,75,21.93340884515884],[125,-58,76,22.001725580712932],[125,-58,77,22.11293623090076],[125,-58,78,22.23423889301608],[125,-58,79,22.351314797449923],[125,-57,64,21.598560640592005],[125,-57,65,21.576394913175253],[125,-57,66,21.568849756985863],[125,-57,67,21.580201927216876],[125,-57,68,21.60297385554783],[125,-57,69,21.617337835936727],[125,-57,70,21.636222946580382],[125,-57,71,21.66743346318089],[125,-57,72,21.70721629064603],[125,-57,73,21.72583262050221],[125,-57,74,21.724771394047462],[125,-57,75,21.746237178157653],[125,-57,76,21.813658216507182],[125,-57,77,21.924761443565547],[125,-57,78,22.045771292889356],[125,-57,79,22.163795680282572],[125,-56,64,21.407944325200095],[125,-56,65,21.38476273010312],[125,-56,66,21.379608315774348],[125,-56,67,21.394067013649764],[125,-56,68,21.414359441328052],[125,-56,69,21.42937617547969],[125,-56,70,21.447523698306007],[125,-56,71,21.476043713257752],[125,-56,72,21.515103017473194],[125,-56,73,21.53401922360449],[125,-56,74,21.533991866738976],[125,-56,75,21.55519629047619],[125,-56,76,21.624583570484212],[125,-56,77,21.733423898009967],[125,-56,78,21.856540715527494],[125,-56,79,21.975165584012217],[125,-55,64,21.217112449598456],[125,-55,65,21.194383237561173],[125,-55,66,21.19010376816676],[125,-55,67,21.20727909201958],[125,-55,68,21.227323974940095],[125,-55,69,21.237754378888965],[125,-55,70,21.25441609892745],[125,-55,71,21.28516946732709],[125,-55,72,21.321690501357573],[125,-55,73,21.34182506201859],[125,-55,74,21.343040938789148],[125,-55,75,21.3632676693414],[125,-55,76,21.432226934054857],[125,-55,77,21.542278444678438],[125,-55,78,21.666318372398493],[125,-55,79,21.784891923394923],[125,-54,64,21.026545950547316],[125,-54,65,21.003118708993583],[125,-54,66,21.000292589668064],[125,-54,67,21.017497481430954],[125,-54,68,21.03798861650385],[125,-54,69,21.047483770443883],[125,-54,70,21.062284865605612],[125,-54,71,21.09080662047581],[125,-54,72,21.128596479856657],[125,-54,73,21.150261946737746],[125,-54,74,21.151251886188266],[125,-54,75,21.16992478613133],[125,-54,76,21.238271659541148],[125,-54,77,21.349559358340176],[125,-54,78,21.475256766184454],[125,-54,79,21.592698562041566],[125,-53,64,20.83127955505484],[125,-53,65,20.80620962396862],[125,-53,66,20.801849312433248],[125,-53,67,20.821992715675492],[125,-53,68,20.843677776759527],[125,-53,69,20.851272021455323],[125,-53,70,20.86476505219374],[125,-53,71,20.893090845610672],[125,-53,72,20.93166175476224],[125,-53,73,20.95675013667307],[125,-53,74,20.955276116945505],[125,-53,75,20.972070062344905],[125,-53,76,21.039716493641805],[125,-53,77,21.14981194533261],[125,-53,78,21.275950942798076],[125,-53,79,21.396883226187352],[125,-52,64,20.67494889798734],[125,-52,65,20.613579721525873],[125,-52,66,20.611603899033213],[125,-52,67,20.63448059022844],[125,-52,68,20.6562433212005],[125,-52,69,20.66759809405587],[125,-52,70,20.6822656945185],[125,-52,71,20.707152461028198],[125,-52,72,20.74918429302728],[125,-52,73,20.772516686503323],[125,-52,74,20.77081702437276],[125,-52,75,20.787144286596394],[125,-52,76,20.853468904060804],[125,-52,77,20.962500275891223],[125,-52,78,21.089984406020463],[125,-52,79,21.21147439855814],[125,-51,64,20.546807357151877],[125,-51,65,20.4787735659884],[125,-51,66,20.40160594613926],[125,-51,67,20.43108376425457],[125,-51,68,20.45277291435731],[125,-51,69,20.468981501497726],[125,-51,70,20.48367285328756],[125,-51,71,20.50549024774836],[125,-51,72,20.541727268107493],[125,-51,73,20.560910137346287],[125,-51,74,20.555423695322613],[125,-51,75,20.574188803245796],[125,-51,76,20.644980243133627],[125,-51,77,20.75846935792106],[125,-51,78,20.892632682672232],[125,-51,79,21.02095732831859],[125,-50,64,20.374426679550048],[125,-50,65,20.305589253103474],[125,-50,66,20.2102173178959],[125,-50,67,20.23809840804463],[125,-50,68,20.2611957013087],[125,-50,69,20.278261102674602],[125,-50,70,20.294910259231376],[125,-50,71,20.315327552245687],[125,-50,72,20.347695263803697],[125,-50,73,20.365007110927426],[125,-50,74,20.36035427479614],[125,-50,75,20.382298467854145],[125,-50,76,20.451744281207255],[125,-50,77,20.565158410190396],[125,-50,78,20.69890665075762],[125,-50,79,20.828607638378323],[125,-49,64,20.21031108729996],[125,-49,65,20.144220541349764],[125,-49,66,20.014143197294217],[125,-49,67,20.041606330448342],[125,-49,68,20.065347819741792],[125,-49,69,20.083823194790902],[125,-49,70,20.100104815113447],[125,-49,71,20.124105560006473],[125,-49,72,20.15422780875936],[125,-49,73,20.168325364418717],[125,-49,74,20.167111809509162],[125,-49,75,20.187159538269455],[125,-49,76,20.258357196291055],[125,-49,77,20.37420220344019],[125,-49,78,20.506465467677565],[125,-49,79,20.636265720673517],[125,-48,64,20.059148564439976],[125,-48,65,19.98536536408429],[125,-48,66,19.855430041321263],[125,-48,67,19.848614959616512],[125,-48,68,19.873293076164586],[125,-48,69,19.889641988191098],[125,-48,70,19.907307269264372],[125,-48,71,19.93261472811697],[125,-48,72,19.96120484223846],[125,-48,73,19.973797507438004],[125,-48,74,19.971335222000967],[125,-48,75,19.993165619167403],[125,-48,76,20.066499958994914],[125,-48,77,20.18265750269688],[125,-48,78,20.314758846486605],[125,-48,79,20.44205354510614],[125,-47,64,19.882349620646686],[125,-47,65,19.817821750948116],[125,-47,66,19.710515082947015],[125,-47,67,19.6505348543406],[125,-47,68,19.67355203765122],[125,-47,69,19.688527175211224],[125,-47,70,19.707540464701015],[125,-47,71,19.73728146685834],[125,-47,72,19.772217929358593],[125,-47,73,19.7892736988507],[125,-47,74,19.786712064828844],[125,-47,75,19.808884549105265],[125,-47,76,19.88035847990755],[125,-47,77,19.99131851702144],[125,-47,78,20.115697162314948],[125,-47,79,20.24077357162422],[125,-46,64,19.646801754796158],[125,-46,65,19.586722203210837],[125,-46,66,19.551691827789632],[125,-46,67,19.470137518276694],[125,-46,68,19.48245002706639],[125,-46,69,19.497244915161325],[125,-46,70,19.51641243966579],[125,-46,71,19.54403881538845],[125,-46,72,19.578041304722326],[125,-46,73,19.59719293926699],[125,-46,74,19.59767479228928],[125,-46,75,19.616414687584292],[125,-46,76,19.685432921828994],[125,-46,77,19.795500312426622],[125,-46,78,19.92134880914953],[125,-46,79,20.04735201558775],[125,-45,64,19.480229043363288],[125,-45,65,19.409625727891857],[125,-45,66,19.381005895664696],[125,-45,67,19.29586620344017],[125,-45,68,19.287786263678147],[125,-45,69,19.300874639815863],[125,-45,70,19.31991140961803],[125,-45,71,19.346816998212184],[125,-45,72,19.381427586321383],[125,-45,73,19.400566626126896],[125,-45,74,19.40126270250791],[125,-45,75,19.419621772041296],[125,-45,76,19.487691566662654],[125,-45,77,19.595326916154708],[125,-45,78,19.721063704858018],[125,-45,79,19.84803435308776],[125,-44,64,19.46522922354642],[125,-44,65,19.356035601391973],[125,-44,66,19.302757592893208],[125,-44,67,19.13192101978549],[125,-44,68,19.064758554943346],[125,-44,69,19.073331584994428],[125,-44,70,19.088333659901505],[125,-44,71,19.111516202039137],[125,-44,72,19.14459167687183],[125,-44,73,19.160078316268155],[125,-44,74,19.158131366607357],[125,-44,75,19.17856923930906],[125,-44,76,19.244549239732077],[125,-44,77,19.350677708446426],[125,-44,78,19.47733904975711],[125,-44,79,19.606119785531376],[125,-43,64,19.381899265244027],[125,-43,65,19.30156353373632],[125,-43,66,19.230966039425134],[125,-43,67,19.061352402991446],[125,-43,68,18.995503959448033],[125,-43,69,18.883066163489282],[125,-43,70,18.899481084020913],[125,-43,71,18.923569420297405],[125,-43,72,18.953701807683622],[125,-43,73,18.968503769285114],[125,-43,74,18.96661696389064],[125,-43,75,18.984115367482286],[125,-43,76,19.048552077577934],[125,-43,77,19.15747632695881],[125,-43,78,19.283471206046258],[125,-43,79,19.410121027646976],[125,-42,64,19.21724248475445],[125,-42,65,19.141438966057812],[125,-42,66,19.041770923178458],[125,-42,67,18.86591888883154],[125,-42,68,18.809518460361993],[125,-42,69,18.69443257671346],[125,-42,70,18.708416482225537],[125,-42,71,18.73237065749346],[125,-42,72,18.759052163161492],[125,-42,73,18.773312553622674],[125,-42,74,18.77141824988959],[125,-42,75,18.785786663334065],[125,-42,76,18.848304270573305],[125,-42,77,18.960399937376476],[125,-42,78,19.086806642411705],[125,-42,79,19.21554366209397],[125,-41,64,19.06286316200414],[125,-41,65,18.987782609337746],[125,-41,66,18.88196108414628],[125,-41,67,18.700438302013676],[125,-41,68,18.65445887955733],[125,-41,69,18.500781332906712],[125,-41,70,18.512246126891156],[125,-41,71,18.537275656436808],[125,-41,72,18.56288149514395],[125,-41,73,18.577187634269414],[125,-41,74,18.572397228435353],[125,-41,75,18.589163189162594],[125,-41,76,18.652325491325957],[125,-41,77,18.764818386870257],[125,-41,78,18.893840959091133],[125,-41,79,19.02216337544244],[125,-40,64,18.87432635113643],[125,-40,65,18.83408464277981],[125,-40,66,18.695401551144442],[125,-40,67,18.547216215000116],[125,-40,68,18.514755130117507],[125,-40,69,18.312458784669634],[125,-40,70,18.32158837075696],[125,-40,71,18.345272585137383],[125,-40,72,18.36939398025381],[125,-40,73,18.37949369337335],[125,-40,74,18.374973854158778],[125,-40,75,18.392933515085563],[125,-40,76,18.457885689531075],[125,-40,77,18.570235803256743],[125,-40,78,18.700301198974273],[125,-40,79,18.82816101190232],[125,-39,64,18.68201303637865],[125,-39,65,18.624817281147415],[125,-39,66,18.484346209419904],[125,-39,67,18.381082388057084],[125,-39,68,18.329329084661858],[125,-39,69,18.120211139042514],[125,-39,70,18.125739043507924],[125,-39,71,18.14844124208555],[125,-39,72,18.169112904600162],[125,-39,73,18.175919761600095],[125,-39,74,18.168577660922622],[125,-39,75,18.187948064004786],[125,-39,76,18.25327482129179],[125,-39,77,18.368675317748053],[125,-39,78,18.503625213650984],[125,-39,79,18.63202928860241],[125,-38,64,18.496581512778103],[125,-38,65,18.389942121973966],[125,-38,66,18.2280141410499],[125,-38,67,18.108587813992333],[125,-38,68,18.001394283705174],[125,-38,69,17.9293866728873],[125,-38,70,17.93748320966776],[125,-38,71,17.956868856247667],[125,-38,72,17.9755367835219],[125,-38,73,17.979918979799532],[125,-38,74,17.971954239571083],[125,-38,75,17.990862544346758],[125,-38,76,18.05915897952623],[125,-38,77,18.175740654455463],[125,-38,78,18.31045999921971],[125,-38,79,18.44038457536838],[125,-37,64,18.303268643003097],[125,-37,65,18.234698258045903],[125,-37,66,18.110746464538472],[125,-37,67,17.96694555274966],[125,-37,68,17.856838099138393],[125,-37,69,17.73575233874728],[125,-37,70,17.74375482190846],[125,-37,71,17.76251903861745],[125,-37,72,17.77801840358114],[125,-37,73,17.778966430463157],[125,-37,74,17.771755746528253],[125,-37,75,17.790667451172105],[125,-37,76,17.860957103337785],[125,-37,77,17.976271236401693],[125,-37,78,18.11497659565431],[125,-37,79,18.244923610844776],[125,-36,64,18.100950013678215],[125,-36,65,18.048971664991498],[125,-36,66,17.93291775446185],[125,-36,67,17.793429281005174],[125,-36,68,17.664208025494194],[125,-36,69,17.553088715074388],[125,-36,70,17.560894607173836],[125,-36,71,17.578759547717404],[125,-36,72,17.59370506035581],[125,-36,73,17.594324665710104],[125,-36,74,17.586780325657777],[125,-36,75,17.607989705287597],[125,-36,76,17.67789652808326],[125,-36,77,17.793292470818894],[125,-36,78,17.9314557071993],[125,-36,79,18.06141409161636],[125,-35,64,17.90989778486299],[125,-35,65,17.881261959092946],[125,-35,66,17.793561091105722],[125,-35,67,17.65373683150902],[125,-35,68,17.51178838261875],[125,-35,69,17.369880637134425],[125,-35,70,17.37732989196524],[125,-35,71,17.392709960151098],[125,-35,72,17.407053867562965],[125,-35,73,17.408738222382922],[125,-35,74,17.40026035393137],[125,-35,75,17.42095457565303],[125,-35,76,17.490782872085777],[125,-35,77,17.611095922634114],[125,-35,78,17.750913114504538],[125,-35,79,17.880450270417132],[125,-34,64,17.712305867004922],[125,-34,65,17.680792109738622],[125,-34,66,17.637293187430913],[125,-34,67,17.502933358768466],[125,-34,68,17.36665990729525],[125,-34,69,17.180953063690698],[125,-34,70,17.187529417327248],[125,-34,71,17.20214029115541],[125,-34,72,17.21462682956393],[125,-34,73,17.21519016219573],[125,-34,74,17.20861113361121],[125,-34,75,17.22942286296471],[125,-34,76,17.29856151953821],[125,-34,77,17.418948068309877],[125,-34,78,17.556333168749678],[125,-34,79,17.686106921356146],[125,-33,64,17.513006707473938],[125,-33,65,17.47978107227199],[125,-33,66,17.467943052689577],[125,-33,67,17.371805064356927],[125,-33,68,17.2639443665706],[125,-33,69,17.036528262571327],[125,-33,70,17.031934229862312],[125,-33,71,17.039878856409505],[125,-33,72,17.046156851621035],[125,-33,73,17.042340342813567],[125,-33,74,17.03181761149324],[125,-33,75,17.04822309730379],[125,-33,76,17.109700846997676],[125,-33,77,17.225136778958074],[125,-33,78,17.357883992985585],[125,-33,79,17.485370732553804],[125,-32,64,17.326965868888127],[125,-32,65,17.290321310110873],[125,-32,66,17.280381800551655],[125,-32,67,17.249531513085472],[125,-32,68,17.13948031684343],[125,-32,69,16.91584712212809],[125,-32,70,16.846426567919593],[125,-32,71,16.85259503290746],[125,-32,72,16.85840041428708],[125,-32,73,16.852383683756017],[125,-32,74,16.839902449763045],[125,-32,75,16.855756161322695],[125,-32,76,16.915636220409382],[125,-32,77,17.029666784267746],[125,-32,78,17.163599594967387],[125,-32,79,17.293288324222303],[125,-31,64,17.135226873210737],[125,-31,65,17.099949600466903],[125,-31,66,17.091204891776115],[125,-31,67,17.110390030734425],[125,-31,68,17.0732745275261],[125,-31,69,16.854870196183008],[125,-31,70,16.697252274364825],[125,-31,71,16.664015541309382],[125,-31,72,16.668179232568495],[125,-31,73,16.661862329608635],[125,-31,74,16.648631214293157],[125,-31,75,16.662020095250178],[125,-31,76,16.721007491858614],[125,-31,77,16.835121736187855],[125,-31,78,16.96917552545212],[125,-31,79,17.10243730206465],[125,-30,64,16.953012110596255],[125,-30,65,16.918742872999704],[125,-30,66,16.908199447081685],[125,-30,67,16.93026211763122],[125,-30,68,16.907587238676694],[125,-30,69,16.68131798519037],[125,-30,70,16.524274935845835],[125,-30,71,16.477749931603956],[125,-30,72,16.477859874701487],[125,-30,73,16.467961028909354],[125,-30,74,16.45508532635984],[125,-30,75,16.468789111540826],[125,-30,76,16.52646953102314],[125,-30,77,16.6410347127009],[125,-30,78,16.77761917857033],[125,-30,79,16.911730037285917],[125,-29,64,16.771801742551283],[125,-29,65,16.736973731640695],[125,-29,66,16.727026177549575],[125,-29,67,16.7454420098244],[125,-29,68,16.758761661539285],[125,-29,69,16.56442521826371],[125,-29,70,16.397692253550776],[125,-29,71,16.310151116249813],[125,-29,72,16.283657998308417],[125,-29,73,16.271298949601707],[125,-29,74,16.255943132724124],[125,-29,75,16.26827469803807],[125,-29,76,16.328930701638612],[125,-29,77,16.43967084380159],[125,-29,78,16.576118802890655],[125,-29,79,16.711558284690568],[125,-28,64,16.569808407809568],[125,-28,65,16.535879834294814],[125,-28,66,16.525940375821076],[125,-28,67,16.540501040736707],[125,-28,68,16.552166362725707],[125,-28,69,16.407106537966946],[125,-28,70,16.245720053881453],[125,-28,71,16.157222253543694],[125,-28,72,16.09742660566191],[125,-28,73,16.085902526621492],[125,-28,74,16.070563373105838],[125,-28,75,16.084037227344872],[125,-28,76,16.145808709508312],[125,-28,77,16.253743930194304],[125,-28,78,16.3871712075327],[125,-28,79,16.522657793073556],[125,-27,64,16.37953354427195],[125,-27,65,16.344329857219645],[125,-27,66,16.33264570488336],[125,-27,67,16.346398501069572],[125,-27,68,16.356712370611664],[125,-27,69,16.357451472777637],[125,-27,70,16.203163260441315],[125,-27,71,16.083919838450154],[125,-27,72,15.984837084026317],[125,-27,73,15.931468542892496],[125,-27,74,15.886661520190978],[125,-27,75,15.897194269490596],[125,-27,76,15.955650825782369],[125,-27,77,16.063155104020453],[125,-27,78,16.193583012108235],[125,-27,79,16.326687487512835],[125,-26,64,16.238808040485956],[125,-26,65,16.202070255384427],[125,-26,66,16.19352132875358],[125,-26,67,16.20544265122875],[125,-26,68,16.215948851745917],[125,-26,69,16.21491721177131],[125,-26,70,16.098448992405583],[125,-26,71,15.922841505136859],[125,-26,72,15.827528253782342],[125,-26,73,15.743256689766534],[125,-26,74,15.694535752671797],[125,-26,75,15.7029564865481],[125,-26,76,15.759821867753331],[125,-26,77,15.868703005823672],[125,-26,78,16.001981141435433],[125,-26,79,16.132464370287675],[125,-25,64,16.047550464421295],[125,-25,65,16.010534588960947],[125,-25,66,16.002209438685775],[125,-25,67,16.014591860168782],[125,-25,68,16.022694247404846],[125,-25,69,16.01930960838635],[125,-25,70,15.954698833249982],[125,-25,71,15.756988237260835],[125,-25,72,15.67424422005416],[125,-25,73,15.527443380399763],[125,-25,74,15.504018937879433],[125,-25,75,15.510134413868379],[125,-25,76,15.565853568328446],[125,-25,77,15.67419323220052],[125,-25,78,15.807580003176527],[125,-25,79,15.941048287798585],[125,-24,64,15.85962340309091],[125,-24,65,15.822203508255404],[125,-24,66,15.814027409845279],[125,-24,67,15.82549314306081],[125,-24,68,15.831338756744309],[125,-24,69,15.82847281833446],[125,-24,70,15.797635262280778],[125,-24,71,15.623190383604005],[125,-24,72,15.51981610699174],[125,-24,73,15.335203306785482],[125,-24,74,15.31227235818152],[125,-24,75,15.31828943703182],[125,-24,76,15.374549234657229],[125,-24,77,15.483060689699634],[125,-24,78,15.614923320034423],[125,-24,79,15.746095449304821],[125,-23,64,15.667078069375425],[125,-23,65,15.630372240873932],[125,-23,66,15.62147657580969],[125,-23,67,15.630325318074807],[125,-23,68,15.637568525837558],[125,-23,69,15.635472835807583],[125,-23,70,15.606892158712823],[125,-23,71,15.424788006009821],[125,-23,72,15.293675626127875],[125,-23,73,15.147366476895607],[125,-23,74,15.126986447917238],[125,-23,75,15.13695120745847],[125,-23,76,15.19076447395823],[125,-23,77,15.29020432604065],[125,-23,78,15.417087625709339],[125,-23,79,15.544870980767342],[125,-22,64,15.48179555966444],[125,-22,65,15.445196882716498],[125,-22,66,15.435502673150491],[125,-22,67,15.44394199784924],[125,-22,68,15.453279787819753],[125,-22,69,15.450686061233448],[125,-22,70,15.44951707806265],[125,-22,71,15.277839044005798],[125,-22,72,15.105883045164504],[125,-22,73,14.95483239071165],[125,-22,74,14.934464564995244],[125,-22,75,14.944183130803626],[125,-22,76,14.999414102362312],[125,-22,77,15.098900432988327],[125,-22,78,15.222774437630934],[125,-22,79,15.34974856016606],[125,-21,64,15.284987501650225],[125,-21,65,15.249044386655308],[125,-21,66,15.24060284612119],[125,-21,67,15.248260453321132],[125,-21,68,15.25749889268188],[125,-21,69,15.253308770936844],[125,-21,70,15.250509947270984],[125,-21,71,15.173771900868024],[125,-21,72,14.97995395406733],[125,-21,73,14.760572214833074],[125,-21,74,14.735790979731599],[125,-21,75,14.746416514242217],[125,-21,76,14.802492220457788],[125,-21,77,14.900498255146408],[125,-21,78,15.021903032624415],[125,-21,79,15.148471762394324],[125,-20,64,15.080411172707874],[125,-20,65,15.043328960009209],[125,-20,66,15.036414633943059],[125,-20,67,15.043884255799668],[125,-20,68,15.053488920467725],[125,-20,69,15.050704709888683],[125,-20,70,15.048350733993962],[125,-20,71,14.970927148304714],[125,-20,72,14.780816047537659],[125,-20,73,14.573502455974205],[125,-20,74,14.55134847064036],[125,-20,75,14.561575050549479],[125,-20,76,14.614943051030865],[125,-20,77,14.712299798437373],[125,-20,78,14.833057311676896],[125,-20,79,14.958096567794815],[125,-19,64,14.887954383124553],[125,-19,65,14.852181410552772],[125,-19,66,14.84320455487564],[125,-19,67,14.851155461621698],[125,-19,68,14.858196919979504],[125,-19,69,14.857714633444283],[125,-19,70,14.858523539647114],[125,-19,71,14.862996615293639],[125,-19,72,14.637871739497102],[125,-19,73,14.407808058378029],[125,-19,74,14.362748702610027],[125,-19,75,14.370584621221017],[125,-19,76,14.422796219321206],[125,-19,77,14.522948501771912],[125,-19,78,14.643521225514483],[125,-19,79,14.769943717348015],[125,-18,64,14.685531972243451],[125,-18,65,14.651166871821328],[125,-18,66,14.638534256859087],[125,-18,67,14.648897141300447],[125,-18,68,14.656047123356409],[125,-18,69,14.65757990027553],[125,-18,70,14.659201899267028],[125,-18,71,14.663802153336972],[125,-18,72,14.432357285305644],[125,-18,73,14.222808063628262],[125,-18,74,14.172653573937525],[125,-18,75,14.178577545070947],[125,-18,76,14.232279345643118],[125,-18,77,14.331458413476092],[125,-18,78,14.45161848320036],[125,-18,79,14.578388622224464],[125,-17,64,14.493435948441855],[125,-17,65,14.45526878623158],[125,-17,66,14.445417079453241],[125,-17,67,14.4571321652897],[125,-17,68,14.470708868595747],[125,-17,69,14.47377381758638],[125,-17,70,14.477179589749552],[125,-17,71,14.480775949677266],[125,-17,72,14.27699203943582],[125,-17,73,14.044898456585246],[125,-17,74,13.982644182754527],[125,-17,75,13.986734526896548],[125,-17,76,14.039583318164336],[125,-17,77,14.139797893391949],[125,-17,78,14.2589443273826],[125,-17,79,14.387483104654493],[125,-16,64,14.305257477513793],[125,-16,65,14.265233688692188],[125,-16,66,14.257753222449844],[125,-16,67,14.27155659989474],[125,-16,68,14.283250015824763],[125,-16,69,14.285151147341564],[125,-16,70,14.28981626083512],[125,-16,71,14.29017011977711],[125,-16,72,14.162239497041345],[125,-16,73,13.942911328329743],[125,-16,74,13.789723426036893],[125,-16,75,13.793146485765929],[125,-16,76,13.846916070009513],[125,-16,77,13.945974128118626],[125,-16,78,14.069539953037156],[125,-16,79,14.199635586515758],[125,-15,64,14.113148852390532],[125,-15,65,14.074686445142023],[125,-15,66,14.067552800455084],[125,-15,67,14.079108057566781],[125,-15,68,14.091527288622784],[125,-15,69,14.094912452034453],[125,-15,70,14.097168977025026],[125,-15,71,14.096748089103533],[125,-15,72,14.003356116541367],[125,-15,73,13.783628664883729],[125,-15,74,13.60207804921627],[125,-15,75,13.604428453816782],[125,-15,76,13.657788662237106],[125,-15,77,13.759229929792658],[125,-15,78,13.886762447279578],[125,-15,79,14.017461442749013],[125,-14,64,13.821053836157215],[125,-14,65,13.781783650283451],[125,-14,66,13.774925634658597],[125,-14,67,13.78852513497616],[125,-14,68,13.801788199304331],[125,-14,69,13.804609985954537],[125,-14,70,13.805857100149126],[125,-14,71,13.804026976655079],[125,-14,72,13.747125414437033],[125,-14,73,13.576870786512098],[125,-14,74,13.408138594373217],[125,-14,75,13.413297412465973],[125,-14,76,13.466841170442478],[125,-14,77,13.565548032998942],[125,-14,78,13.695770073970202],[125,-14,79,13.826701584432097],[125,-13,64,13.626342629877735],[125,-13,65,13.586736335216635],[125,-13,66,13.58227933116954],[125,-13,67,13.595682493290202],[125,-13,68,13.611707572828129],[125,-13,69,13.613018826122635],[125,-13,70,13.61147667950143],[125,-13,71,13.61079360795475],[125,-13,72,13.611179205677438],[125,-13,73,13.449208081832124],[125,-13,74,13.264054055382259],[125,-13,75,13.213254197170535],[125,-13,76,13.267614350987946],[125,-13,77,13.366401421833535],[125,-13,78,13.496533423786468],[125,-13,79,13.62668175997971],[125,-12,64,13.422159100458726],[125,-12,65,13.381922806222732],[125,-12,66,13.377176294837506],[125,-12,67,13.391841925437271],[125,-12,68,13.410939107306223],[125,-12,69,13.409513164238845],[125,-12,70,13.407462216177414],[125,-12,71,13.407562664071754],[125,-12,72,13.407558052871286],[125,-12,73,13.24950522872058],[125,-12,74,13.101015702126029],[125,-12,75,13.019484134245323],[125,-12,76,13.074123585159901],[125,-12,77,13.177644699497781],[125,-12,78,13.304181170729619],[125,-12,79,13.434897263269171],[125,-11,64,13.225969760512854],[125,-11,65,13.186574046033742],[125,-11,66,13.178913485601786],[125,-11,67,13.193962446187026],[125,-11,68,13.213786322596333],[125,-11,69,13.215592061153185],[125,-11,70,13.214850488947972],[125,-11,71,13.215867370977797],[125,-11,72,13.215220102690699],[125,-11,73,13.05792851688786],[125,-11,74,12.89130420010485],[125,-11,75,12.824204866562047],[125,-11,76,12.877492275256223],[125,-11,77,12.98313707700619],[125,-11,78,13.11168218666394],[125,-11,79,13.239507914732775],[125,-10,64,13.02371968432968],[125,-10,65,12.983779203256312],[125,-10,66,12.97556153757005],[125,-10,67,12.991318754858375],[125,-10,68,13.011556808638613],[125,-10,69,13.014841515554872],[125,-10,70,13.013344606815615],[125,-10,71,13.015147896314964],[125,-10,72,13.013920515865584],[125,-10,73,12.874371875678182],[125,-10,74,12.708807275076602],[125,-10,75,12.629097524230504],[125,-10,76,12.683867679824733],[125,-10,77,12.790953899580373],[125,-10,78,12.919956751542008],[125,-10,79,13.04796557622586],[125,-9,64,12.834785313099864],[125,-9,65,12.797999823674939],[125,-9,66,12.789977721208748],[125,-9,67,12.80556922629038],[125,-9,68,12.82468128952025],[125,-9,69,12.828057033038311],[125,-9,70,12.827802869697095],[125,-9,71,12.829131650702724],[125,-9,72,12.824960012265784],[125,-9,73,12.708480897168428],[125,-9,74,12.522118422096524],[125,-9,75,12.434992425489005],[125,-9,76,12.48967723790099],[125,-9,77,12.59864373901547],[125,-9,78,12.72883908127891],[125,-9,79,12.857388332927048],[125,-8,64,12.644052072402792],[125,-8,65,12.607056998388652],[125,-8,66,12.598227369090152],[125,-8,67,12.612928838622224],[125,-8,68,12.631277052356186],[125,-8,69,12.638322583526833],[125,-8,70,12.636261915521475],[125,-8,71,12.640059753043229],[125,-8,72,12.633516897195033],[125,-8,73,12.553090574289515],[125,-8,74,12.331387751547442],[125,-8,75,12.243769720783616],[125,-8,76,12.296697895281442],[125,-8,77,12.40436941732685],[125,-8,78,12.53960727564911],[125,-8,79,12.667450733645605],[125,-7,64,12.449964560960424],[125,-7,65,12.410978189241312],[125,-7,66,12.400622770579615],[125,-7,67,12.41749996694355],[125,-7,68,12.436372530204709],[125,-7,69,12.443517853849384],[125,-7,70,12.443038424137194],[125,-7,71,12.445288568020656],[125,-7,72,12.439063818296486],[125,-7,73,12.362381960075668],[125,-7,74,12.138837231686788],[125,-7,75,12.050092016029996],[125,-7,76,12.103443730472586],[125,-7,77,12.211839501777604],[125,-7,78,12.347253126002954],[125,-7,79,12.478841123874998],[125,-6,64,12.252545037307645],[125,-6,65,12.212341002498407],[125,-6,66,12.202302739270582],[125,-6,67,12.22137039116876],[125,-6,68,12.24113840850951],[125,-6,69,12.247765702847088],[125,-6,70,12.246792223338664],[125,-6,71,12.249086251571802],[125,-6,72,12.24285134466235],[125,-6,73,12.157236280827805],[125,-6,74,11.947866019719557],[125,-6,75,11.859679101200461],[125,-6,76,11.913160916805216],[125,-6,77,12.020343635159342],[125,-6,78,12.157140125184622],[125,-6,79,12.288212563588925],[125,-5,64,12.056202210184201],[125,-5,65,12.016160176676774],[125,-5,66,12.005344947857749],[125,-5,67,12.027770399738204],[125,-5,68,12.04685263995925],[125,-5,69,12.05247233890115],[125,-5,70,12.05031218012182],[125,-5,71,12.052018852792129],[125,-5,72,12.04664569308754],[125,-5,73,12.032584320507866],[125,-5,74,12.006179667639028],[125,-5,75,11.823016466641867],[125,-5,76,11.715931133592319],[125,-5,77,11.825593214557538],[125,-5,78,11.960152968348496],[125,-5,79,12.094653599435404],[125,-4,64,11.849543327806238],[125,-4,65,11.809527232542326],[125,-4,66,11.800649051172687],[125,-4,67,11.821683392092968],[125,-4,68,11.8446590649306],[125,-4,69,11.849960532924758],[125,-4,70,11.848015263768522],[125,-4,71,11.846894536954256],[125,-4,72,11.84225590331956],[125,-4,73,11.827300460894223],[125,-4,74,11.799502538569586],[125,-4,75,11.634420371909911],[125,-4,76,11.532171010476256],[125,-4,77,11.634845382366844],[125,-4,78,11.76911627871013],[125,-4,79,11.903503348385756],[125,-3,64,11.64689047139422],[125,-3,65,11.607984485141827],[125,-3,66,11.601117640688402],[125,-3,67,11.62016578305675],[125,-3,68,11.645068652624902],[125,-3,69,11.651489170389253],[125,-3,70,11.651596010229545],[125,-3,71,11.65578434109408],[125,-3,72,11.649401046103147],[125,-3,73,11.63501184162522],[125,-3,74,11.61979678266175],[125,-3,75,11.488997074546829],[125,-3,76,11.360395124792616],[125,-3,77,11.454338730314923],[125,-3,78,11.589260373235106],[125,-3,79,11.725190209492565],[125,-2,64,11.449289981365084],[125,-2,65,11.412032171246919],[125,-2,66,11.404885696970354],[125,-2,67,11.422169063298629],[125,-2,68,11.445763681380685],[125,-2,69,11.453410377682498],[125,-2,70,11.455863960986203],[125,-2,71,11.458268461224575],[125,-2,72,11.452164613924106],[125,-2,73,11.437191209290422],[125,-2,74,11.423772328630287],[125,-2,75,11.30636018752867],[125,-2,76,11.161666816590255],[125,-2,77,11.263162619738859],[125,-2,78,11.398241930557067],[125,-2,79,11.532775965291064],[125,-1,64,11.255093680557675],[125,-1,65,11.218239059537781],[125,-1,66,11.213619634159738],[125,-1,67,11.231788018095124],[125,-1,68,11.252072720959207],[125,-1,69,11.261470347974427],[125,-1,70,11.262816707677585],[125,-1,71,11.266688921407052],[125,-1,72,11.259880421186478],[125,-1,73,11.244542368288178],[125,-1,74,11.20117127414117],[125,-1,75,11.05085237293813],[125,-1,76,10.962817921078736],[125,-1,77,11.073940769168928],[125,-1,78,11.20770769409633],[125,-1,79,11.342357847788497],[125,0,64,10.972197775195841],[125,0,65,10.936129926254258],[125,0,66,10.929807744587832],[125,0,67,10.945711519359394],[125,0,68,10.964912500350005],[125,0,69,10.955943893040745],[125,0,70,10.941617547902993],[125,0,71,10.930640508277422],[125,0,72,10.905227665640883],[125,0,73,10.861820518425573],[125,0,74,10.8243883674352],[125,0,75,10.820152696689215],[125,0,76,10.873044564746998],[125,0,77,10.979975188889457],[125,0,78,11.10901048386096],[125,0,79,11.237092202204403],[125,1,64,10.782704167592804],[125,1,65,10.744209004009726],[125,1,66,10.741017985469073],[125,1,67,10.759944542951837],[125,1,68,10.77729438171452],[125,1,69,10.76763841462922],[125,1,70,10.749310061151284],[125,1,71,10.73534592223834],[125,1,72,10.70929943070144],[125,1,73,10.666300012966897],[125,1,74,10.626807872020116],[125,1,75,10.625808521673987],[125,1,76,10.67924590231558],[125,1,77,10.785241153900122],[125,1,78,10.91474067432989],[125,1,79,11.039574888017869],[125,2,64,10.592559974798085],[125,2,65,10.551977391653761],[125,2,66,10.550326183172809],[125,2,67,10.571337722732887],[125,2,68,10.586712775644626],[125,2,69,10.577309585707972],[125,2,70,10.558290274488842],[125,2,71,10.542006504312335],[125,2,72,10.515544711382757],[125,2,73,10.471385963509805],[125,2,74,10.431763329252433],[125,2,75,10.432781664681505],[125,2,76,10.486236259336556],[125,2,77,10.589519481818321],[125,2,78,10.718539134171806],[125,2,79,10.844297337834734],[125,3,64,10.401711659648903],[125,3,65,10.35942871014698],[125,3,66,10.358330912636223],[125,3,67,10.380403990900517],[125,3,68,10.395436066302478],[125,3,69,10.38534172040728],[125,3,70,10.36513134854791],[125,3,71,10.34935790518486],[125,3,72,10.321950410855676],[125,3,73,10.277191170881297],[125,3,74,10.237142557627815],[125,3,75,10.237243522690882],[125,3,76,10.290139452089939],[125,3,77,10.39341565688738],[125,3,78,10.523121349398014],[125,3,79,10.651032632089507],[125,4,64,10.211761655267885],[125,4,65,10.168513219115404],[125,4,66,10.164873450521739],[125,4,67,10.184439852297134],[125,4,68,10.19892462943077],[125,4,69,10.19187709401328],[125,4,70,10.17195977256253],[125,4,71,10.156945490906567],[125,4,72,10.127407819325605],[125,4,73,10.081370697887053],[125,4,74,10.04171423148674],[125,4,75,10.03910154978572],[125,4,76,10.091800762534252],[125,4,77,10.198878011252692],[125,4,78,10.325858233853644],[125,4,79,10.458514965894432],[125,5,64,10.020134981967445],[125,5,65,9.976857520782552],[125,5,66,9.970175203640768],[125,5,67,9.990643589184826],[125,5,68,10.003066997887656],[125,5,69,9.99747654405906],[125,5,70,9.97872373021885],[125,5,71,9.96325678665291],[125,5,72,9.931509939916497],[125,5,73,9.885193844215282],[125,5,74,9.847148106794041],[125,5,75,9.843077624226513],[125,5,76,9.896019280695572],[125,5,77,10.002796030372574],[125,5,78,10.12935649898683],[125,5,79,10.26284291473818],[125,6,64,9.829056065356921],[125,6,65,9.785053921949524],[125,6,66,9.776001454544211],[125,6,67,9.793448002123583],[125,6,68,9.808052435827125],[125,6,69,9.801903724087708],[125,6,70,9.784194106044033],[125,6,71,9.767478656730564],[125,6,72,9.735572243374918],[125,6,73,9.691618920359625],[125,6,74,9.65282597024783],[125,6,75,9.650069311889778],[125,6,76,9.702987302706802],[125,6,77,9.806106482454021],[125,6,78,9.934699382334486],[125,6,79,10.06910791948637],[125,7,64,9.636575239309169],[125,7,65,9.593998065257347],[125,7,66,9.581245550069493],[125,7,67,9.597773245971466],[125,7,68,9.61431848837978],[125,7,69,9.606376365553135],[125,7,70,9.588297014047301],[125,7,71,9.570815923188007],[125,7,72,9.540168046862124],[125,7,73,9.495864738054015],[125,7,74,9.459973867430001],[125,7,75,9.458160770421232],[125,7,76,9.51054854862637],[125,7,77,9.611007380304157],[125,7,78,9.740234343728394],[125,7,79,9.87558326609279],[125,8,64,9.444373143512658],[125,8,65,9.400939484377952],[125,8,66,9.389539829851078],[125,8,67,9.40710310893966],[125,8,68,9.424900233263271],[125,8,69,9.420028477541742],[125,8,70,9.403181958357797],[125,8,71,9.384610676184241],[125,8,72,9.352858582104489],[125,8,73,9.310177948120918],[125,8,74,9.276622368039474],[125,8,75,9.275885121047738],[125,8,76,9.328993472984822],[125,8,77,9.42877175377473],[125,8,78,9.556495565356625],[125,8,79,9.69038653403082],[125,9,64,9.244955853716078],[125,9,65,9.199516722111952],[125,9,66,9.188149705079145],[125,9,67,9.203943492898075],[125,9,68,9.220636281082664],[125,9,69,9.217869394254],[125,9,70,9.200818455658686],[125,9,71,9.182945969977373],[125,9,72,9.151530865798431],[125,9,73,9.11018912539948],[125,9,74,9.074357555466241],[125,9,75,9.077248225973507],[125,9,76,9.130632544753306],[125,9,77,9.230500319985865],[125,9,78,9.358050838479398],[125,9,79,9.490641216449065],[125,10,64,9.052929307904115],[125,10,65,9.007061490012775],[125,10,66,8.996053432998181],[125,10,67,9.011233968553254],[125,10,68,9.028224269442196],[125,10,69,9.02589111912531],[125,10,70,9.006875668441637],[125,10,71,8.989542128425807],[125,10,72,8.957362157125335],[125,10,73,8.913046808847762],[125,10,74,8.878160902873876],[125,10,75,8.8810870318991],[125,10,76,8.933263979908878],[125,10,77,9.03557364061704],[125,10,78,9.164410071615414],[125,10,79,9.294792720990479],[125,11,64,8.861719334299632],[125,11,65,8.817163263026634],[125,11,66,8.805152792799966],[125,11,67,8.818528358769443],[125,11,68,8.835732384770262],[125,11,69,8.833434961141585],[125,11,70,8.81461582517646],[125,11,71,8.796100493007998],[125,11,72,8.76266006181437],[125,11,73,8.71694830123212],[125,11,74,8.68216682859621],[125,11,75,8.687194568927685],[125,11,76,8.740114874515609],[125,11,77,8.842631729406099],[125,11,78,8.970994695220362],[125,11,79,9.100859919973812],[125,12,64,8.673809693092226],[125,12,65,8.628626255861501],[125,12,66,8.616309629839002],[125,12,67,8.628659498689077],[125,12,68,8.643151682607572],[125,12,69,8.641473075605116],[125,12,70,8.623813933044115],[125,12,71,8.602773553068717],[125,12,72,8.566985564628872],[125,12,73,8.521228195429579],[125,12,74,8.4866687619649],[125,12,75,8.492710949285431],[125,12,76,8.54656762046363],[125,12,77,8.650880705666033],[125,12,78,8.77844947399857],[125,12,79,8.908094945154211],[125,13,64,8.491562545519459],[125,13,65,8.447216575147586],[125,13,66,8.434498717666976],[125,13,67,8.448011970613436],[125,13,68,8.462614761311368],[125,13,69,8.458785217615734],[125,13,70,8.442497750813757],[125,13,71,8.42054898381115],[125,13,72,8.383136444244421],[125,13,73,8.33703267718556],[125,13,74,8.305475663577164],[125,13,75,8.309594405175366],[125,13,76,8.363649533663757],[125,13,77,8.467495922118877],[125,13,78,8.59580900045111],[125,13,79,8.722319062535359],[125,14,64,8.29748038906948],[125,14,65,8.255567400911866],[125,14,66,8.245618692225516],[125,14,67,8.257486752002647],[125,14,68,8.27003609228733],[125,14,69,8.266156753980855],[125,14,70,8.250168342027694],[125,14,71,8.229100490642796],[125,14,72,8.190096036475802],[125,14,73,8.144508309897974],[125,14,74,8.109573246037456],[125,14,75,8.114294011671712],[125,14,76,8.169878872773845],[125,14,77,8.273958993521411],[125,14,78,8.400108279293061],[125,14,79,8.527452931200708],[125,15,64,8.100913592321294],[125,15,65,8.062289701343055],[125,15,66,8.054113091264561],[125,15,67,8.065582480218882],[125,15,68,8.075605135458186],[125,15,69,8.072819652205478],[125,15,70,8.057292244576194],[125,15,71,8.034089014154752],[125,15,72,7.996412402572612],[125,15,73,7.950356597680111],[125,15,74,7.9150182402007605],[125,15,75,7.9181429420534375],[125,15,76,7.973995135296963],[125,15,77,8.077439612598415],[125,15,78,8.204771551780276],[125,15,79,8.33276041769486],[125,16,64,7.909041781339789],[125,16,65,7.871850207105826],[125,16,66,7.8657851133161],[125,16,67,7.878923187906736],[125,16,68,7.888722980459495],[125,16,69,7.886805655155466],[125,16,70,7.875483597028929],[125,16,71,7.850117647083232],[125,16,72,7.8120219090852],[125,16,73,7.768323442424622],[125,16,74,7.731379734708629],[125,16,75,7.735476150774002],[125,16,76,7.790206339064158],[125,16,77,7.894743777752996],[125,16,78,8.023816671291605],[125,16,79,8.155536241261473],[125,17,64,7.71483787205917],[125,17,65,7.67546351988725],[125,17,66,7.669643635658128],[125,17,67,7.684067780537441],[125,17,68,7.69657718769555],[125,17,69,7.69309091380118],[125,17,70,7.681694672603964],[125,17,71,7.65557711159401],[125,17,72,7.615749729797322],[125,17,73,7.571894751454974],[125,17,74,7.535145337755828],[125,17,75,7.538763492381356],[125,17,76,7.593414057905478],[125,17,77,7.698584691049526],[125,17,78,7.828839970195214],[125,17,79,7.96025000663604],[125,18,64,7.516742497995698],[125,18,65,7.478009215390463],[125,18,66,7.474566661048259],[125,18,67,7.4895788662265685],[125,18,68,7.505565866131693],[125,18,69,7.499881973765724],[125,18,70,7.486095125213592],[125,18,71,7.459400894286527],[125,18,72,7.418265618628605],[125,18,73,7.3738285246398485],[125,18,74,7.338657369712756],[125,18,75,7.33942872461984],[125,18,76,7.395643132943246],[125,18,77,7.499687989224196],[125,18,78,7.632551142015367],[125,18,79,7.762826358872559],[125,19,64,7.320646209342367],[125,19,65,7.281239782426683],[125,19,66,7.279531071602592],[125,19,67,7.297504961101878],[125,19,68,7.312196035326908],[125,19,69,7.308175702424506],[125,19,70,7.290011431361379],[125,19,71,7.262990843529855],[125,19,72,7.221036080366157],[125,19,73,7.1762934058546355],[125,19,74,7.143228739819389],[125,19,75,7.141263091816087],[125,19,76,7.197295369134762],[125,19,77,7.301897445448255],[125,19,78,7.434012099225873],[125,19,79,7.5626440810435165],[125,20,64,7.128295938916477],[125,20,65,7.086134263460075],[125,20,66,7.082158787861338],[125,20,67,7.101091150302965],[125,20,68,7.1165567365027425],[125,20,69,7.110276711669989],[125,20,70,7.091173057800144],[125,20,71,7.0640730334309785],[125,20,72,7.022091292906801],[125,20,73,6.974673999978864],[125,20,74,6.940031651327273],[125,20,75,6.9404630095701245],[125,20,76,6.996815770343263],[125,20,77,7.102861259490454],[125,20,78,7.235450268068309],[125,20,79,7.363445265841872],[125,21,64,6.938924791651339],[125,21,65,6.894290716772949],[125,21,66,6.88688130112471],[125,21,67,6.905533568744012],[125,21,68,6.9190828201057055],[125,21,69,6.911970534429223],[125,21,70,6.887202431666101],[125,21,71,6.85479416483304],[125,21,72,6.806573052883828],[125,21,73,6.75381313663654],[125,21,74,6.71654788770253],[125,21,75,6.717221461294212],[125,21,76,6.775493608287165],[125,21,77,6.884375819963069],[125,21,78,7.0176671905148345],[125,21,79,7.147764213724189],[125,22,64,6.74523453836739],[125,22,65,6.70031044717393],[125,22,66,6.690749376327083],[125,22,67,6.709806086587005],[125,22,68,6.72349620702116],[125,22,69,6.717521308315549],[125,22,70,6.693967137089865],[125,22,71,6.658474343335649],[125,22,72,6.610352863625704],[125,22,73,6.55453316271222],[125,22,74,6.515859918307245],[125,22,75,6.517878922211011],[125,22,76,6.576834950048787],[125,22,77,6.687777449082101],[125,22,78,6.818603690816239],[125,22,79,6.952419377000364],[125,23,64,6.54822101689732],[125,23,65,6.504295197716242],[125,23,66,6.495563223098035],[125,23,67,6.512770798184332],[125,23,68,6.526134169297512],[125,23,69,6.521521251171649],[125,23,70,6.497692007562462],[125,23,71,6.461642797641776],[125,23,72,6.412566270092582],[125,23,73,6.355915817496195],[125,23,74,6.317908195597377],[125,23,75,6.320308954390362],[125,23,76,6.379616687347957],[125,23,77,6.489079521591],[125,23,78,6.621869249211311],[125,23,79,6.75716023686919],[125,24,64,6.358152415749908],[125,24,65,6.3173254665185015],[125,24,66,6.309129020481108],[125,24,67,6.322658827885529],[125,24,68,6.334679038004073],[125,24,69,6.33079562533308],[125,24,70,6.307520660012514],[125,24,71,6.273156316720361],[125,24,72,6.223371498138148],[125,24,73,6.167307737849902],[125,24,74,6.130666497178694],[125,24,75,6.1332925151215],[125,24,76,6.188406995258845],[125,24,77,6.299610175715859],[125,24,78,6.435752319734128],[125,24,79,6.57134713362246],[125,25,64,6.164479467767386],[125,25,65,6.120322092003649],[125,25,66,6.109051310463343],[125,25,67,6.116864535297132],[125,25,68,6.126942336604311],[125,25,69,6.1231401220614865],[125,25,70,6.102355413811847],[125,25,71,6.076156204543884],[125,25,72,6.031561169485876],[125,25,73,5.981894219388855],[125,25,74,5.9486977611211325],[125,25,75,5.948565695800867],[125,25,76,6.000531592898736],[125,25,77,6.1090512898947935],[125,25,78,6.242050866688161],[125,25,79,6.374040514446339],[125,26,64,5.969744368972282],[125,26,65,5.922739416167858],[125,26,66,5.913725763890057],[125,26,67,5.9217284314023875],[125,26,68,5.934284153670685],[125,26,69,5.928374636406795],[125,26,70,5.907574436067058],[125,26,71,5.88080979018881],[125,26,72,5.834972532259664],[125,26,73,5.78731594946611],[125,26,74,5.75494794952415],[125,26,75,5.755571384195715],[125,26,76,5.8052081647117095],[125,26,77,5.916509706713917],[125,26,78,6.045031339644576],[125,26,79,6.1758688414885725],[125,27,64,5.7720863261429285],[125,27,65,5.7272626801970326],[125,27,66,5.717626370574198],[125,27,67,5.7284394987781635],[125,27,68,5.739557194374087],[125,27,69,5.734855750920463],[125,27,70,5.713446354408418],[125,27,71,5.686590633421475],[125,27,72,5.640153627295104],[125,27,73,5.591659222966693],[125,27,74,5.560148710528397],[125,27,75,5.562093576656968],[125,27,76,5.6131943337595525],[125,27,77,5.72209266088773],[125,27,78,5.84862487196463],[125,27,79,5.979838321652769],[125,28,64,5.570877131556377],[125,28,65,5.529887190531506],[125,28,66,5.517806036249913],[125,28,67,5.532155650882888],[125,28,68,5.54163112902133],[125,28,69,5.536684577797084],[125,28,70,5.515807051508146],[125,28,71,5.488932567326532],[125,28,72,5.439719629814309],[125,28,73,5.3898397206738515],[125,28,74,5.358004962147179],[125,28,75,5.360426478522569],[125,28,76,5.416567292768824],[125,28,77,5.521951576940756],[125,28,78,5.647640109682974],[125,28,79,5.77911086732413],[125,29,64,5.376451850544252],[125,29,65,5.334676655722145],[125,29,66,5.324586816953801],[125,29,67,5.343719178095826],[125,29,68,5.353805566037677],[125,29,69,5.348464185319187],[125,29,70,5.327605816125131],[125,29,71,5.299950739363288],[125,29,72,5.249155396218967],[125,29,73,5.199187336684785],[125,29,74,5.165913742971358],[125,29,75,5.17045831599252],[125,29,76,5.226302851479277],[125,29,77,5.331092287831973],[125,29,78,5.456497387049072],[125,29,79,5.588229467570724],[125,30,64,5.183085263447597],[125,30,65,5.137654014805238],[125,30,66,5.132488801028061],[125,30,67,5.1504843016381106],[125,30,68,5.163888810510009],[125,30,69,5.158126447785166],[125,30,70,5.1364678600252205],[125,30,71,5.105630709977007],[125,30,72,5.054492590725889],[125,30,73,5.002672230793267],[125,30,74,4.9689583729913664],[125,30,75,4.973079829465837],[125,30,76,5.031067417664189],[125,30,77,5.135655989646486],[125,30,78,5.261708306954652],[125,30,79,5.392685462080724],[125,31,64,4.988921865900825],[125,31,65,4.94195978991902],[125,31,66,4.939505600860633],[125,31,67,4.9567414897176345],[125,31,68,4.970158652927262],[125,31,69,4.966659612048949],[125,31,70,4.944938781930054],[125,31,71,4.910613298101221],[125,31,72,4.8589653931574075],[125,31,73,4.806671214596046],[125,31,74,4.771944335015872],[125,31,75,4.775013114477765],[125,31,76,4.833339380502265],[125,31,77,4.940507351576713],[125,31,78,5.07078363688325],[125,31,79,5.196494517432917],[125,32,64,4.803810666983868],[125,32,65,4.758609061503427],[125,32,66,4.755164414102251],[125,32,67,4.773471496921893],[125,32,68,4.787668372952174],[125,32,69,4.78342307598983],[125,32,70,4.759876662704109],[125,32,71,4.725654477353872],[125,32,72,4.675855950581595],[125,32,73,4.62171783857296],[125,32,74,4.586561316312442],[125,32,75,4.586094810572293],[125,32,76,4.643991273619927],[125,32,77,4.754925796522779],[125,32,78,4.8860573343938976],[125,32,79,5.012511058522844],[125,33,64,4.616996788786196],[125,33,65,4.574972923914529],[125,33,66,4.570410619383429],[125,33,67,4.590245408631483],[125,33,68,4.603686636597322],[125,33,69,4.597100674558893],[125,33,70,4.5707576488582],[125,33,71,4.531725424857139],[125,33,72,4.476508781020804],[125,33,73,4.418293114767495],[125,33,74,4.379786961905524],[125,33,75,4.380187601159988],[125,33,76,4.436836793328072],[125,33,77,4.548414116554416],[125,33,78,4.681778028006915],[125,33,79,4.808969609854921],[125,34,64,4.422882962884426],[125,34,65,4.380006930134175],[125,34,66,4.377078226536861],[125,34,67,4.393609004649456],[125,34,68,4.409194578033669],[125,34,69,4.40274993551687],[125,34,70,4.37522834881211],[125,34,71,4.334721928232504],[125,34,72,4.281593405549602],[125,34,73,4.2218161746631],[125,34,74,4.18412327887251],[125,34,75,4.185532205208175],[125,34,76,4.2461355963696334],[125,34,77,4.3547897924394405],[125,34,78,4.485878815897541],[125,34,79,4.613548467471015],[125,35,64,4.228243184994273],[125,35,65,4.182112009761977],[125,35,66,4.179314690353376],[125,35,67,4.19563489202725],[125,35,68,4.2127110987523215],[125,35,69,4.207079686438712],[125,35,70,4.179703434839834],[125,35,71,4.1427966907772635],[125,35,72,4.085234021816806],[125,35,73,4.025155503600669],[125,35,74,3.9870693750349937],[125,35,75,3.9918210671508665],[125,35,76,4.05361626127634],[125,35,77,4.16277459980878],[125,35,78,4.293215509062756],[125,35,79,4.419805815144231],[125,36,64,4.02059933107838],[125,36,65,3.975279549670676],[125,36,66,3.9730670565582247],[125,36,67,3.9921464520352443],[125,36,68,4.0082073843366866],[125,36,69,4.003295935887355],[125,36,70,3.9804373754815825],[125,36,71,3.942539091254045],[125,36,72,3.881090722458647],[125,36,73,3.820339592989846],[125,36,74,3.7832173713001382],[125,36,75,3.7915291687601553],[125,36,76,3.8520677969480235],[125,36,77,3.961801765612748],[125,36,78,4.091265974664509],[125,36,79,4.218955710513441],[125,37,64,3.818207822642253],[125,37,65,3.7749508097314703],[125,37,66,3.772649349667625],[125,37,67,3.7933326571394295],[125,37,68,3.809052195913565],[125,37,69,3.8041578632827995],[125,37,70,3.7842151434988183],[125,37,71,3.7511075077606453],[125,37,72,3.6944143639651643],[125,37,73,3.63720914667967],[125,37,74,3.601739256991559],[125,37,75,3.6098592725646954],[125,37,76,3.6707050471294815],[125,37,77,3.779270885072907],[125,37,78,3.9067911920106093],[125,37,79,4.030277716259804],[125,38,64,3.6219861404759635],[125,38,65,3.578065714922465],[125,38,66,3.575979152257872],[125,38,67,3.598226093862154],[125,38,68,3.61234444227874],[125,38,69,3.608040838148168],[125,38,70,3.5896373171625053],[125,38,71,3.556661531846582],[125,38,72,3.502269169488176],[125,38,73,3.444024876809931],[125,38,74,3.410104556344258],[125,38,75,3.4164718103646012],[125,38,76,3.4754401921996845],[125,38,77,3.5840532408939785],[125,38,78,3.707560348141725],[125,38,79,3.8350481741378744],[125,39,64,3.4247660079917006],[125,39,65,3.37984355115847],[125,39,66,3.3785530911976585],[125,39,67,3.4035088178391733],[125,39,68,3.417220057177909],[125,39,69,3.4143698496426413],[125,39,70,3.3926325833134947],[125,39,71,3.3628437594675304],[125,39,72,3.3106835890466377],[125,39,73,3.254258863362059],[125,39,74,3.217996424075521],[125,39,75,3.2233959854998537],[125,39,76,3.278988847925811],[125,39,77,3.3854070009111443],[125,39,78,3.512769199506206],[125,39,79,3.6416973097347567],[125,40,64,3.2398737696771764],[125,40,65,3.1951068508618445],[125,40,66,3.195850177109912],[125,40,67,3.21895405801348],[125,40,68,3.2357742850714715],[125,40,69,3.2300986836016983],[125,40,70,3.208804380282453],[125,40,71,3.1799628504545794],[125,40,72,3.1263331398269756],[125,40,73,3.071484903377129],[125,40,74,3.0351075878733407],[125,40,75,3.039320108039683],[125,40,76,3.093166442268655],[125,40,77,3.200058139607196],[125,40,78,3.327635677748548],[125,40,79,3.460241053914143],[125,41,64,3.0460810496707342],[125,41,65,3.0015049176453164],[125,41,66,3.0012215548014733],[125,41,67,3.026744796000269],[125,41,68,3.0421844127194246],[125,41,69,3.0355464386239994],[125,41,70,3.0126964122606457],[125,41,71,2.9806260270839107],[125,41,72,2.9302850952881725],[125,41,73,2.8755698912677023],[125,41,74,2.8386097991694768],[125,41,75,2.8443647038403204],[125,41,76,2.8982884497803045],[125,41,77,3.0050708709711818],[125,41,78,3.1333363945817365],[125,41,79,3.2671521719533376],[125,42,64,2.852036119383478],[125,42,65,2.8081142190197017],[125,42,66,2.8076905023087355],[125,42,67,2.8295376900507714],[125,42,68,2.847369166367458],[125,42,69,2.8397712068104632],[125,42,70,2.814554729137452],[125,42,71,2.7832397698723836],[125,42,72,2.7326650903549954],[125,42,73,2.6799949802440697],[125,42,74,2.6457037606786495],[125,42,75,2.6477822188847533],[125,42,76,2.701708183237376],[125,42,77,2.8074399715917644],[125,42,78,2.937445923391719],[125,42,79,3.0739720274128346],[125,43,64,2.6558193913010837],[125,43,65,2.6146957151222248],[125,43,66,2.612258914249977],[125,43,67,2.6322026861096743],[125,43,68,2.6515774646294075],[125,43,69,2.6448257132146473],[125,43,70,2.6182289383309825],[125,43,71,2.5885230154613574],[125,43,72,2.5365465769432425],[125,43,73,2.482561362763062],[125,43,74,2.449132177208231],[125,43,75,2.449194462099476],[125,43,76,2.502672166339573],[125,43,77,2.6111840704543416],[125,43,78,2.7415538723618447],[125,43,79,2.879125706343381],[125,44,64,2.4499615325355095],[125,44,65,2.409923882123056],[125,44,66,2.4078714143590414],[125,44,67,2.429536959747043],[125,44,68,2.4487384226292246],[125,44,69,2.440883470756679],[125,44,70,2.416074409775595],[125,44,71,2.3854648341237947],[125,44,72,2.3316530348267404],[125,44,73,2.2764014580786807],[125,44,74,2.239560983199754],[125,44,75,2.2402098791406475],[125,44,76,2.2970530549733046],[125,44,77,2.4015840808859283],[125,44,78,2.535191325056116],[125,44,79,2.67334670534799],[125,45,64,2.2335937013776856],[125,45,65,2.193639232976122],[125,45,66,2.194642189320734],[125,45,67,2.2212833446211215],[125,45,68,2.243372398654465],[125,45,69,2.2382002768070004],[125,45,70,2.2143848522433816],[125,45,71,2.1867699767736726],[125,45,72,2.1361010006563905],[125,45,73,2.0808885104437898],[125,45,74,2.0423148309663053],[125,45,75,2.044293687668659],[125,45,76,2.1040867166371493],[125,45,77,2.210808497983403],[125,45,78,2.3450102198570533],[125,45,79,2.4846843319390346],[125,46,64,2.0374264888076863],[125,46,65,1.997564600615756],[125,46,66,1.998999873224383],[125,46,67,2.0282878832497477],[125,46,68,2.0517291126021218],[125,46,69,2.0463472299347845],[125,46,70,2.0230328899780137],[125,46,71,1.992686098422291],[125,46,72,1.9425700289769388],[125,46,73,1.885290835142886],[125,46,74,1.849350362892192],[125,46,75,1.8497786919121817],[125,46,76,1.9087747366384282],[125,46,77,2.01662359433944],[125,46,78,2.1497194219481197],[125,46,79,2.289091385350128],[125,47,64,1.84252064935276],[125,47,65,1.8025910027741356],[125,47,66,1.806353165573253],[125,47,67,1.8357991753518317],[125,47,68,1.8584758487349557],[125,47,69,1.8536677295073414],[125,47,70,1.8300393975087788],[125,47,71,1.799659379192392],[125,47,72,1.7469049227692373],[125,47,73,1.6892822637037619],[125,47,74,1.6544042195314057],[125,47,75,1.6546546534343023],[125,47,76,1.7135471073893052],[125,47,77,1.8215281118352562],[125,47,78,1.9544872518461354],[125,47,79,2.091815649032151],[125,48,64,1.660097144756661],[125,48,65,1.6224680858297047],[125,48,66,1.62705922092594],[125,48,67,1.6573845264252725],[125,48,68,1.6805789964514861],[125,48,69,1.6747326766990154],[125,48,70,1.6509666140077455],[125,48,71,1.620150695065401],[125,48,72,1.5640091785929493],[125,48,73,1.5042947236665978],[125,48,74,1.4717426538429486],[125,48,75,1.4748938377247631],[125,48,76,1.5309494425308492],[125,48,77,1.6388201473153365],[125,48,78,1.7696944055618309],[125,48,79,1.9062986366589085],[125,49,64,1.4750359524252166],[125,49,65,1.4369247121760726],[125,49,66,1.4411493895335628],[125,49,67,1.4723427413779737],[125,49,68,1.4959730808949974],[125,49,69,1.492461571247901],[125,49,70,1.4645920328558222],[125,49,71,1.4260620910764938],[125,49,72,1.3645980863079143],[125,49,73,1.3029519458076082],[125,49,74,1.2669809083864236],[125,49,75,1.2707100387633221],[125,49,76,1.3271156728396525],[125,49,77,1.433610989644047],[125,49,78,1.5668658837941987],[125,49,79,1.7048712556914658],[125,50,64,1.282412109833998],[125,50,65,1.2442440859101362],[125,50,66,1.2480687153679517],[125,50,67,1.2786581359979816],[125,50,68,1.3017556193781512],[125,50,69,1.2985257956686858],[125,50,70,1.2715738994987655],[125,50,71,1.2312679629728547],[125,50,72,1.17132440970464],[125,50,73,1.1070012106148501],[125,50,74,1.0698965513714793],[125,50,75,1.0722589607151287],[125,50,76,1.1273122462065877],[125,50,77,1.2351882906167169],[125,50,78,1.367673737998164],[125,50,79,1.5076697465000168],[125,51,64,1.089789911124577],[125,51,65,1.050511933567486],[125,51,66,1.0544398389055807],[125,51,67,1.0822797155060457],[125,51,68,1.1084552554016218],[125,51,69,1.1058925959240993],[125,51,70,1.076492144679205],[125,51,71,1.037520186018417],[125,51,72,0.9756848857079273],[125,51,73,0.908203159095678],[125,51,74,0.8720614806012217],[125,51,75,0.8747344677760773],[125,51,76,0.9297154271514235],[125,51,77,1.0370472067027952],[125,51,78,1.171575255216594],[125,51,79,1.3105368311016823],[125,52,64,0.9487473502742418],[125,52,65,0.9083637300724575],[125,52,66,0.9115063341355432],[125,52,67,0.9373144615659805],[125,52,68,0.9624310776629388],[125,52,69,0.9597476300814437],[125,52,70,0.9320167993734103],[125,52,71,0.8939711015554838],[125,52,72,0.8296128111577206],[125,52,73,0.7620043035781642],[125,52,74,0.7236871062030638],[125,52,75,0.7260759044973248],[125,52,76,0.7842083709132067],[125,52,77,0.8902858341326726],[125,52,78,1.0233527585294397],[125,52,79,1.1621551506275642],[125,53,64,0.76062271588615],[125,53,65,0.7188390624884973],[125,53,66,0.7214325412998694],[125,53,67,0.7460319951507687],[125,53,68,0.7719667530041264],[125,53,69,0.7658586881891242],[125,53,70,0.7402761982794837],[125,53,71,0.7024500806671092],[125,53,72,0.6371629926590845],[125,53,73,0.5668991474207112],[125,53,74,0.5281839678883443],[125,53,75,0.5303905485040299],[125,53,76,0.5883855802371822],[125,53,77,0.694644878693962],[125,53,78,0.8286015583197257],[125,53,79,0.9666126220122705],[125,54,64,0.5657248531231591],[125,54,65,0.5244068003602957],[125,54,66,0.5235978580033328],[125,54,67,0.5500581273658867],[125,54,68,0.5748117085569052],[125,54,69,0.5715703877963134],[125,54,70,0.5444204058515569],[125,54,71,0.508206589249706],[125,54,72,0.4418965809464702],[125,54,73,0.37049393858594126],[125,54,74,0.3285975360838028],[125,54,75,0.33379170374447387],[125,54,76,0.39346094944058785],[125,54,77,0.5004561393370415],[125,54,78,0.6335092286446956],[125,54,79,0.7721781866508536],[125,55,64,0.37203733576068937],[125,55,65,0.3289100993138092],[125,55,66,0.32681616623409504],[125,55,67,0.35622627234686244],[125,55,68,0.3796253227810289],[125,55,69,0.37669909632491994],[125,55,70,0.35095131879341646],[125,55,71,0.3126095639349449],[125,55,72,0.24719217814456593],[125,55,73,0.17592028583776986],[125,55,74,0.13257013410722843],[125,55,75,0.1368990121729784],[125,55,76,0.19555693895314535],[125,55,77,0.3030605190126643],[125,55,78,0.43685034867834294],[125,55,79,0.5772584186701564],[125,56,64,0.1917956625801146],[125,56,65,0.14548193016479366],[125,56,66,0.14746744472792814],[125,56,67,0.1758928122536141],[125,56,68,0.19688103077275915],[125,56,69,0.19342507317150295],[125,56,70,0.1678059706644116],[125,56,71,0.1286594323130713],[125,56,72,0.06337497374909418],[125,56,73,0.00687942526416957],[125,56,74,-0.007148687423500305],[125,56,75,-0.0021451043313523432],[125,56,76,0.01556750081758837],[125,56,77,0.11950219103003307],[125,56,78,0.25247348750908627],[125,56,79,0.3948872024759072],[125,57,64,0.00551659803893792],[125,57,65,-0.01471528579998313],[125,57,66,-0.019160701143460412],[125,57,67,-0.015185928438894214],[125,57,68,-0.0084685062525853],[125,57,69,-0.01136518951539034],[125,57,70,-0.015072013353088276],[125,57,71,-0.02435435298749375],[125,57,72,-0.03763287427377893],[125,57,73,-0.05091426569622948],[125,57,74,-0.059187180870698214],[125,57,75,-0.05795060293258644],[125,57,76,-0.04000717044761273],[125,57,77,-0.013554098779552187],[125,57,78,0.05085555799486799],[125,57,79,0.19268487193822476],[125,58,64,0.002357379233781931],[125,58,65,-0.02007074919857879],[125,58,66,-0.028537377281477733],[125,58,67,-0.022882071055092656],[125,58,68,-0.0220197411422874],[125,58,69,-0.01847964288644298],[125,58,70,-0.022256248694108943],[125,58,71,-0.030957733831502673],[125,58,72,-0.041949250324747],[125,58,73,-0.057300866000878775],[125,58,74,-0.0686549998378499],[125,58,75,-0.06637080977358947],[125,58,76,-0.050670949618723704],[125,58,77,-0.02112472764502768],[125,58,78,0.009454727737799457],[125,58,79,0.042571853718801456],[125,59,64,-0.04810756118225529],[125,59,65,-0.06990976054536434],[125,59,66,-0.080342776283029],[125,59,67,-0.07456808145482878],[125,59,68,-0.07250853475311324],[125,59,69,-0.07090225207985168],[125,59,70,-0.07204768466004162],[125,59,71,-0.08003540842404373],[125,59,72,-0.08973498411771909],[125,59,73,-0.10634030778298635],[125,59,74,-0.1176298786107681],[125,59,75,-0.114580657705868],[125,59,76,-0.09833953107263421],[125,59,77,-0.06859296908574417],[125,59,78,-0.04001008396640762],[125,59,79,-0.008477387555844651],[125,60,64,-0.10709051287978717],[125,60,65,-0.1294607131663461],[125,60,66,-0.1383717381514239],[125,60,67,-0.1341631151821772],[125,60,68,-0.13215392016563277],[125,60,69,-0.12926807425127418],[125,60,70,-0.13025042430642467],[125,60,71,-0.13709028275198593],[125,60,72,-0.14681819919348502],[125,60,73,-0.16549735659211065],[125,60,74,-0.17592922931633947],[125,60,75,-0.17307946140037805],[125,60,76,-0.15609763508481647],[125,60,77,-0.12682299943354364],[125,60,78,-0.09902083990788094],[125,60,79,-0.06782509469090098],[125,61,64,-0.15611500342596363],[125,61,65,-0.17432703399984695],[125,61,66,-0.1786410205070049],[125,61,67,-0.17002289105484714],[125,61,68,-0.16534521060670587],[125,61,69,-0.16589115258716852],[125,61,70,-0.16600200890221778],[125,61,71,-0.1711526967045806],[125,61,72,-0.18488118793486286],[125,61,73,-0.20147496864177444],[125,61,74,-0.21079946705521857],[125,61,75,-0.20573169657077423],[125,61,76,-0.18736343405704975],[125,61,77,-0.16371915811307708],[125,61,78,-0.1313286319223675],[125,61,79,-0.09865334109524232],[125,62,64,-0.20635856721679763],[125,62,65,-0.22300861836894978],[125,62,66,-0.22644116144628945],[125,62,67,-0.2184468919897127],[125,62,68,-0.21286113373963206],[125,62,69,-0.2135209604119773],[125,62,70,-0.21617366457026324],[125,62,71,-0.2223605591226562],[125,62,72,-0.23722777132187892],[125,62,73,-0.2524531805291994],[125,62,74,-0.26310947907581733],[125,62,75,-0.253422926693748],[125,62,76,-0.23663251575430488],[125,62,77,-0.21024621079984201],[125,62,78,-0.1787893748328595],[125,62,79,-0.14762083358138678],[125,63,64,-0.32510816521094005],[125,63,65,-0.34229038599061845],[125,63,66,-0.34189637809343887],[125,63,67,-0.33286271587975286],[125,63,68,-0.3289582428118101],[125,63,69,-0.3263645028676312],[125,63,70,-0.3299408619821762],[125,63,71,-0.33687932341728555],[125,63,72,-0.3513189544148968],[125,63,73,-0.3662690444824854],[125,63,74,-0.37189250863678014],[125,63,75,-0.3610523473227224],[125,63,76,-0.3435539046519501],[125,63,77,-0.3184432522660534],[125,63,78,-0.28341831839378795],[125,63,79,-0.24986233079497572],[125,64,64,-0.3646900843353098],[125,64,65,-0.38210378153555524],[125,64,66,-0.3810015086649132],[125,64,67,-0.374166299364884],[125,64,68,-0.36897558541325925],[125,64,69,-0.36803974605220985],[125,64,70,-0.3716898912969948],[125,64,71,-0.37699438516438855],[125,64,72,-0.3900050737438755],[125,64,73,-0.40747806515228924],[125,64,74,-0.4119489836273744],[125,64,75,-0.40092631071626533],[125,64,76,-0.384674053846327],[125,64,77,-0.36194260703124936],[125,64,78,-0.32359326331230426],[125,64,79,-0.28816968922763875],[125,65,64,-0.41363950884228345],[125,65,65,-0.42972853463167704],[125,65,66,-0.43213387821915156],[125,65,67,-0.42561910535012926],[125,65,68,-0.42338963311459543],[125,65,69,-0.4208774989699958],[125,65,70,-0.42359831816896365],[125,65,71,-0.4314543170333711],[125,65,72,-0.44295625078370526],[125,65,73,-0.4571053640140135],[125,65,74,-0.46096853628638745],[125,65,75,-0.4545239758758276],[125,65,76,-0.4384986381050137],[125,65,77,-0.4123190261692703],[125,65,78,-0.37406976880932136],[125,65,79,-0.33486253917284503],[125,66,64,-0.46839559902346795],[125,66,65,-0.4847301048070498],[125,66,66,-0.49061484533689415],[125,66,67,-0.4854827169892408],[125,66,68,-0.48067497027942374],[125,66,69,-0.47821322636708663],[125,66,70,-0.4841210419192329],[125,66,71,-0.49058140837845804],[125,66,72,-0.5001702785499115],[125,66,73,-0.5123940491578729],[125,66,74,-0.5184309193453602],[125,66,75,-0.5123460525713847],[125,66,76,-0.4971479818031181],[125,66,77,-0.46821442015138837],[125,66,78,-0.42939459222849075],[125,66,79,-0.39310755469193304],[125,67,64,-0.5177911841954185],[125,67,65,-0.5343468676484094],[125,67,66,-0.5414087417252608],[125,67,67,-0.5365440770628959],[125,67,68,-0.5287344169706676],[125,67,69,-0.5310822713853345],[125,67,70,-0.5363419468453607],[125,67,71,-0.5423261751613497],[125,67,72,-0.5531461234462884],[125,67,73,-0.5619032184934684],[125,67,74,-0.5690035667873601],[125,67,75,-0.5662014880344595],[125,67,76,-0.5481687559937393],[125,67,77,-0.5182880869706445],[125,67,78,-0.481978296766024],[125,67,79,-0.4459048003713668],[125,68,64,-0.6571125735251531],[125,68,65,-0.6741537813635963],[125,68,66,-0.6844153852650141],[125,68,67,-0.6800020945612639],[125,68,68,-0.6715265165876947],[125,68,69,-0.676307106995013],[125,68,70,-0.6812287039032167],[125,68,71,-0.6894075851296932],[125,68,72,-0.6980443541134298],[125,68,73,-0.7084367577053341],[125,68,74,-0.7129229062771469],[125,68,75,-0.7132750409767056],[125,68,76,-0.695386704578522],[125,68,77,-0.6622274776290527],[125,68,78,-0.62713971018111],[125,68,79,-0.5922956929634016],[125,69,64,-0.709158187916717],[125,69,65,-0.7297847383392042],[125,69,66,-0.742356991107973],[125,69,67,-0.7422327705823862],[125,69,68,-0.7373908705972689],[125,69,69,-0.7408754714697053],[125,69,70,-0.7454026897410215],[125,69,71,-0.7519937604586105],[125,69,72,-0.7631178666718441],[125,69,73,-0.7784211583344298],[125,69,74,-0.7809297198457773],[125,69,75,-0.7800938258909322],[125,69,76,-0.7616685443909272],[125,69,77,-0.7275421112668623],[125,69,78,-0.691864196910031],[125,69,79,-0.6565489519936015],[125,70,64,-0.7577830500641817],[125,70,65,-0.7812831062939882],[125,70,66,-0.7918858769334396],[125,70,67,-0.7931072035647905],[125,70,68,-0.7904873733627504],[125,70,69,-0.7897754532966594],[125,70,70,-0.7918717863268494],[125,70,71,-0.7996639170281454],[125,70,72,-0.8137073032151507],[125,70,73,-0.8305626237798387],[125,70,74,-0.8352191933128835],[125,70,75,-0.8333722794670353],[125,70,76,-0.8129533495300691],[125,70,77,-0.7803880946300761],[125,70,78,-0.7424812332573102],[125,70,79,-0.7077911522328695],[125,71,64,-0.7975071646711657],[125,71,65,-0.824221114772609],[125,71,66,-0.8354401320736736],[125,71,67,-0.8352765567551955],[125,71,68,-0.8334477188653189],[125,71,69,-0.8324432211725272],[125,71,70,-0.8318278391673561],[125,71,71,-0.8408256539724923],[125,71,72,-0.8560341863275073],[125,71,73,-0.8755133151816343],[125,71,74,-0.8790956190130452],[125,71,75,-0.8753914045785561],[125,71,76,-0.8556017694201493],[125,71,77,-0.8240734920326526],[125,71,78,-0.7847244986993448],[125,71,79,-0.7495090526040873],[125,72,64,-0.8507409474205596],[125,72,65,-0.8749098382273013],[125,72,66,-0.885673430102295],[125,72,67,-0.8860133779754736],[125,72,68,-0.8851456807818939],[125,72,69,-0.8810305631462361],[125,72,70,-0.8823249961833298],[125,72,71,-0.8911307462765092],[125,72,72,-0.9076858650412698],[125,72,73,-0.9251027140889092],[125,72,74,-0.9313752353751106],[125,72,75,-0.9275892853969807],[125,72,76,-0.9052994020224633],[125,72,77,-0.8730483874151567],[125,72,78,-0.8362302682698861],[125,72,79,-0.8016025232813101],[125,73,64,-0.9125537788193399],[125,73,65,-0.9293151220828313],[125,73,66,-0.9321243282052138],[125,73,67,-0.9285685038351748],[125,73,68,-0.924531701037773],[125,73,69,-0.9199614659817033],[125,73,70,-0.9224109260276552],[125,73,71,-0.9322416934036626],[125,73,72,-0.9504138268634433],[125,73,73,-0.9650922363892962],[125,73,74,-0.9722272946380758],[125,73,75,-0.9685757207024351],[125,73,76,-0.9487195678646748],[125,73,77,-0.9163996838456347],[125,73,78,-0.8826471100460116],[125,73,79,-0.8541727173798628],[125,74,64,-0.9699819308207479],[125,74,65,-0.9833173650271412],[125,74,66,-0.9857440297470399],[125,74,67,-0.9822271547683187],[125,74,68,-0.978029153524589],[125,74,69,-0.9750848477354068],[125,74,70,-0.978301925936014],[125,74,71,-0.9884987364401557],[125,74,72,-1.006149811869423],[125,74,73,-1.0207876055824674],[125,74,74,-1.0275432601304872],[125,74,75,-1.0237995494713115],[125,74,76,-1.0056366659437732],[125,74,77,-0.9747857335502633],[125,74,78,-0.940228164746874],[125,74,79,-0.913228693112877],[125,75,64,-1.0189740124697424],[125,75,65,-1.0321156632124695],[125,75,66,-1.033443280249775],[125,75,67,-1.027411436488228],[125,75,68,-1.0252515012947558],[125,75,69,-1.0227401849864348],[125,75,70,-1.027872311995391],[125,75,71,-1.0383648604965294],[125,75,72,-1.0553969246571147],[125,75,73,-1.0696989098115366],[125,75,74,-1.0769621755142695],[125,75,75,-1.0747739397833591],[125,75,76,-1.0588786300839725],[125,75,77,-1.0285068580546],[125,75,78,-0.9955408573367337],[125,75,79,-0.9648274857227719],[125,76,64,-1.0624128053389859],[125,76,65,-1.0780190409452173],[125,76,66,-1.0787760712120706],[125,76,67,-1.0711960531679077],[125,76,68,-1.0705405568743873],[125,76,69,-1.0685396228327524],[125,76,70,-1.0749359839643557],[125,76,71,-1.0845497347508322],[125,76,72,-1.1050954867499547],[125,76,73,-1.1199636074152053],[125,76,74,-1.1284532989469434],[125,76,75,-1.1281396360325644],[125,76,76,-1.1122171540846357],[125,76,77,-1.0838993502241876],[125,76,78,-1.0494327632677702],[125,76,79,-1.0157869094528424],[125,77,64,-1.1092179741686934],[125,77,65,-1.122282704192254],[125,77,66,-1.1217929324120726],[125,77,67,-1.1163250520622083],[125,77,68,-1.114551402529943],[125,77,69,-1.1133789649348809],[125,77,70,-1.121315409486943],[125,77,71,-1.1312493003208792],[125,77,72,-1.1520846221616443],[125,77,73,-1.1689997572667883],[125,77,74,-1.1776124294320713],[125,77,75,-1.1794186837902914],[125,77,76,-1.1629436000905153],[125,77,77,-1.1362766483795586],[125,77,78,-1.1001919014879629],[125,77,79,-1.0670501220349977],[125,78,64,-1.1601737646168697],[125,78,65,-1.1704091570187387],[125,78,66,-1.1709277369849829],[125,78,67,-1.1633527309367286],[125,78,68,-1.1588725596187477],[125,78,69,-1.1613670477125013],[125,78,70,-1.171191942730124],[125,78,71,-1.183749396216942],[125,78,72,-1.2035754252429476],[125,78,73,-1.2220163715079635],[125,78,74,-1.2303989762604965],[125,78,75,-1.2332886916722656],[125,78,76,-1.2177273822297439],[125,78,77,-1.1889777994676847],[125,78,78,-1.1566128242970706],[125,78,79,-1.1202536842086634],[125,79,64,-1.1996971393783615],[125,79,65,-1.2126949063959285],[125,79,66,-1.2095789833471784],[125,79,67,-1.201548531124648],[125,79,68,-1.197871755954221],[125,79,69,-1.2022404888604847],[125,79,70,-1.2112186939235874],[125,79,71,-1.2252650049730325],[125,79,72,-1.2446040879767817],[125,79,73,-1.2645662995806566],[125,79,74,-1.2744825710299852],[125,79,75,-1.2771009027767788],[125,79,76,-1.2628061111864433],[125,79,77,-1.2329197003824905],[125,79,78,-1.203113660909766],[125,79,79,-1.1682681596387194],[125,80,64,-1.2520377460562053],[125,80,65,-1.2629968336357151],[125,80,66,-1.2586148991213948],[125,80,67,-1.2496659223409585],[125,80,68,-1.2469661801141283],[125,80,69,-1.2509823405048168],[125,80,70,-1.259267723690478],[125,80,71,-1.273396097994032],[125,80,72,-1.293163561805933],[125,80,73,-1.3147251120029728],[125,80,74,-1.3253881558935445],[125,80,75,-1.32873235745951],[125,80,76,-1.3154437741489353],[125,80,77,-1.287001513820011],[125,80,78,-1.257440281511695],[125,80,79,-1.2191604374751257],[125,81,64,-1.3064457417259194],[125,81,65,-1.312211342344332],[125,81,66,-1.3055026937674143],[125,81,67,-1.2944982306065305],[125,81,68,-1.2889124288875393],[125,81,69,-1.293389102780024],[125,81,70,-1.3031945013352784],[125,81,71,-1.3191197775719696],[125,81,72,-1.3425931290249284],[125,81,73,-1.3659034019684206],[125,81,74,-1.3804322066524843],[125,81,75,-1.3834176946451242],[125,81,76,-1.3702704765277949],[125,81,77,-1.346481132678578],[125,81,78,-1.3162699122469206],[125,81,79,-1.2788711121459042],[125,82,64,-1.3627064562485498],[125,82,65,-1.3669365793199386],[125,82,66,-1.358512870333553],[125,82,67,-1.3496388881646144],[125,82,68,-1.3428674955423199],[125,82,69,-1.3488111575967812],[125,82,70,-1.357474505464626],[125,82,71,-1.3707026688505097],[125,82,72,-1.39669717347149],[125,82,73,-1.4217224286639394],[125,82,74,-1.4402458551902497],[125,82,75,-1.4415940636069435],[125,82,76,-1.4296738027794684],[125,82,77,-1.4065591531704662],[125,82,78,-1.3753327808387152],[125,82,79,-1.3368222472030862],[125,83,64,-1.4111496517641877],[125,83,65,-1.4147037657571917],[125,83,66,-1.4082108420730641],[125,83,67,-1.3982086979492736],[125,83,68,-1.393107344779587],[125,83,69,-1.3980639787177263],[125,83,70,-1.4061448402367],[125,83,71,-1.4191177129086607],[125,83,72,-1.446495382433707],[125,83,73,-1.475639061971747],[125,83,74,-1.49354266814765],[125,83,75,-1.4938695289965886],[125,83,76,-1.4826771313211662],[125,83,77,-1.461570219469903],[125,83,78,-1.4269978209135394],[125,83,79,-1.3867130236611815],[125,84,64,-1.4512104891485362],[125,84,65,-1.4574314900533878],[125,84,66,-1.4521901894293356],[125,84,67,-1.4428136777041582],[125,84,68,-1.4403189401339975],[125,84,69,-1.444742351598447],[125,84,70,-1.4547810076351277],[125,84,71,-1.4704281294744783],[125,84,72,-1.4990126741628012],[125,84,73,-1.5263465250513963],[125,84,74,-1.5458053307143649],[125,84,75,-1.5472580031273286],[125,84,76,-1.5373462750496723],[125,84,77,-1.5122103236778957],[125,84,78,-1.4794448425763906],[125,84,79,-1.4358735751001634],[125,85,64,-1.488354263724705],[125,85,65,-1.5045760804943529],[125,85,66,-1.5067215847645388],[125,85,67,-1.4998639751584402],[125,85,68,-1.496873625005243],[125,85,69,-1.5018616959906403],[125,85,70,-1.5106829125025298],[125,85,71,-1.5287008239371893],[125,85,72,-1.5504019878425748],[125,85,73,-1.5755354246796005],[125,85,74,-1.5935705368522894],[125,85,75,-1.596958597945982],[125,85,76,-1.585049028717298],[125,85,77,-1.5570893538515567],[125,85,78,-1.5197838496219536],[125,85,79,-1.474941445346631],[125,86,64,-1.537308589665306],[125,86,65,-1.5546038702008997],[125,86,66,-1.5576768384229558],[125,86,67,-1.5498179422798355],[125,86,68,-1.5473192557259066],[125,86,69,-1.549377748237018],[125,86,70,-1.5605383496227228],[125,86,71,-1.5821922158429167],[125,86,72,-1.6027116850699632],[125,86,73,-1.6242226094416177],[125,86,74,-1.6449883891074417],[125,86,75,-1.647579966151356],[125,86,76,-1.6356873783304935],[125,86,77,-1.6094841396782709],[125,86,78,-1.5722378961672008],[125,86,79,-1.5246070435700312],[125,87,64,-1.578489516442478],[125,87,65,-1.5970146435270476],[125,87,66,-1.6009743657767517],[125,87,67,-1.5935012769925758],[125,87,68,-1.5886927499054582],[125,87,69,-1.589377804502555],[125,87,70,-1.602178797076431],[125,87,71,-1.6240534240360496],[125,87,72,-1.64577534492489],[125,87,73,-1.669271126252504],[125,87,74,-1.689249885778598],[125,87,75,-1.6901158552165652],[125,87,76,-1.67725030071538],[125,87,77,-1.6548862982505415],[125,87,78,-1.6183438312194731],[125,87,79,-1.5715807375652653],[125,88,64,-1.627685493635771],[125,88,65,-1.6467420138761866],[125,88,66,-1.651876434515568],[125,88,67,-1.6458298360786512],[125,88,68,-1.6396875981479793],[125,88,69,-1.6404833943713713],[125,88,70,-1.6524479175766302],[125,88,71,-1.6730436030990747],[125,88,72,-1.697937156930141],[125,88,73,-1.7240796406101713],[125,88,74,-1.7423693344950628],[125,88,75,-1.74287145197459],[125,88,76,-1.7280529475426656],[125,88,77,-1.702499770493235],[125,88,78,-1.6682518848093852],[125,88,79,-1.622467016406457],[125,89,64,-1.6748119810247837],[125,89,65,-1.6962915708865927],[125,89,66,-1.7019917444923214],[125,89,67,-1.6970685656312616],[125,89,68,-1.6925449019322425],[125,89,69,-1.6932851616970734],[125,89,70,-1.703802545461372],[125,89,71,-1.7223436714078244],[125,89,72,-1.7498919659997194],[125,89,73,-1.7768521919952351],[125,89,74,-1.796265309694771],[125,89,75,-1.7950115305129761],[125,89,76,-1.77899113068521],[125,89,77,-1.7532468520347486],[125,89,78,-1.7174738092956594],[125,89,79,-1.6717482562670314],[125,90,64,-1.7312003002634504],[125,90,65,-1.750206263236747],[125,90,66,-1.7586244556830133],[125,90,67,-1.7558221317428555],[125,90,68,-1.7514302821019674],[125,90,69,-1.7503520804784274],[125,90,70,-1.7589505263317387],[125,90,71,-1.776763408464592],[125,90,72,-1.805666022106309],[125,90,73,-1.8341851692219038],[125,90,74,-1.85432891153196],[125,90,75,-1.8522569502214152],[125,90,76,-1.8379682071918941],[125,90,77,-1.810277168968202],[125,90,78,-1.77162516109621],[125,90,79,-1.7263750471103219],[125,91,64,-1.7770537321960078],[125,91,65,-1.7992631207241694],[125,91,66,-1.8101670062253252],[125,91,67,-1.8064921283566675],[125,91,68,-1.8008166199425948],[125,91,69,-1.8035145711402716],[125,91,70,-1.8078543836989405],[125,91,71,-1.82645535133512],[125,91,72,-1.8564611269266043],[125,91,73,-1.8834541261030338],[125,91,74,-1.902667827459109],[125,91,75,-1.9024059302205465],[125,91,76,-1.8894001152956341],[125,91,77,-1.8637097961141493],[125,91,78,-1.8210883539785476],[125,91,79,-1.7756324200404274],[125,92,64,-1.8226853229940716],[125,92,65,-1.845922666378608],[125,92,66,-1.8585540710316186],[125,92,67,-1.8578128661439033],[125,92,68,-1.8540378328650544],[125,92,69,-1.854877625646641],[125,92,70,-1.8606798369594695],[125,92,71,-1.8817376427454329],[125,92,72,-1.911916548545021],[125,92,73,-1.9374997387561366],[125,92,74,-1.955943517609035],[125,92,75,-1.9569418893480999],[125,92,76,-1.9446514279865152],[125,92,77,-1.9203064670811243],[125,92,78,-1.8754853232996243],[125,92,79,-1.8294689242795614],[125,93,64,-1.866155377426562],[125,93,65,-1.8907526861444308],[125,93,66,-1.9032802707417686],[125,93,67,-1.9034755079378116],[125,93,68,-1.8994719989415203],[125,93,69,-1.9024419193827988],[125,93,70,-1.9124537508493937],[125,93,71,-1.933856494843234],[125,93,72,-1.969921311144319],[125,93,73,-1.9963636147972306],[125,93,74,-2.0136663178585668],[125,93,75,-2.0157553510061628],[125,93,76,-2.0056027693535188],[125,93,77,-1.979226621911081],[125,93,78,-1.934530496239113],[125,93,79,-1.8872778370864238],[125,94,64,-1.917758125003079],[125,94,65,-1.9402426047878596],[125,94,66,-1.9518628154718196],[125,94,67,-1.9517009803126057],[125,94,68,-1.9480040884868612],[125,94,69,-1.9495347414512956],[125,94,70,-1.963531220398158],[125,94,71,-1.9876513559785156],[125,94,72,-2.0212981271899464],[125,94,73,-2.048339685720225],[125,94,74,-2.063977462842915],[125,94,75,-2.067350595661209],[125,94,76,-2.054650350705474],[125,94,77,-2.030212217968874],[125,94,78,-1.9834156449507416],[125,94,79,-1.9381430412921843],[125,95,64,-1.9605438647046731],[125,95,65,-1.985052066615918],[125,95,66,-1.9953172637443242],[125,95,67,-1.9916858055574846],[125,95,68,-1.9889251139288515],[125,95,69,-1.9926747018518263],[125,95,70,-2.0070456936553174],[125,95,71,-2.029331931104351],[125,95,72,-2.065964192160018],[125,95,73,-2.093851726870685],[125,95,74,-2.1089569845515213],[125,95,75,-2.1127833582936595],[125,95,76,-2.098999037936063],[125,95,77,-2.0705465404516374],[125,95,78,-2.0261366372340164],[125,95,79,-1.9822715845409828],[125,96,64,-2.0137224320241227],[125,96,65,-2.0382707566152223],[125,96,66,-2.0464926260464305],[125,96,67,-2.0415730856867427],[125,96,68,-2.0383669856030564],[125,96,69,-2.044596756464256],[125,96,70,-2.058545050142931],[125,96,71,-2.0800325557753463],[125,96,72,-2.11389836064915],[125,96,73,-2.1414113168251836],[125,96,74,-2.1589661973067606],[125,96,75,-2.1607725282752916],[125,96,76,-2.1502230546381633],[125,96,77,-2.119940004161293],[125,96,78,-2.0748047059237504],[125,96,79,-2.032716920879861],[125,97,64,-2.0758993274784836],[125,97,65,-2.0956409931833293],[125,97,66,-2.101417207456837],[125,97,67,-2.0938246913382663],[125,97,68,-2.0876995314626123],[125,97,69,-2.0966598088887833],[125,97,70,-2.1095889790184175],[125,97,71,-2.12565906316432],[125,97,72,-2.152128365706377],[125,97,73,-2.176739340705992],[125,97,74,-2.194478922682773],[125,97,75,-2.1999760256370506],[125,97,76,-2.188784380161482],[125,97,77,-2.1597006786471895],[125,97,78,-2.117048397253141],[125,97,79,-2.074185009856603],[125,98,64,-2.133431804513196],[125,98,65,-2.152280693507717],[125,98,66,-2.155066739181839],[125,98,67,-2.1487347061735362],[125,98,68,-2.1461049464754938],[125,98,69,-2.153182771726333],[125,98,70,-2.1630322187299726],[125,98,71,-2.1793324860742174],[125,98,72,-2.2027713149713706],[125,98,73,-2.227622406928857],[125,98,74,-2.2472686919259783],[125,98,75,-2.253393773485499],[125,98,76,-2.241600320374357],[125,98,77,-2.211962884973964],[125,98,78,-2.1719478885980994],[125,98,79,-2.1286733085329455],[125,99,64,-2.1826012712543315],[125,99,65,-2.199349519567675],[125,99,66,-2.201748869089533],[125,99,67,-2.19685691618539],[125,99,68,-2.194722895345982],[125,99,69,-2.2012851026984657],[125,99,70,-2.209839866851457],[125,99,71,-2.2258532008112923],[125,99,72,-2.2512823155675665],[125,99,73,-2.277713007024169],[125,99,74,-2.296003546314707],[125,99,75,-2.301720242756494],[125,99,76,-2.28912224836976],[125,99,77,-2.258380980966249],[125,99,78,-2.21912468530385],[125,99,79,-2.175773545733201],[125,100,64,-2.211726941055584],[125,100,65,-2.218258641734028],[125,100,66,-2.216736208409807],[125,100,67,-2.2044434523446217],[125,100,68,-2.1957046226691435],[125,100,69,-2.1977655310765662],[125,100,70,-2.2011700557206244],[125,100,71,-2.212772881141538],[125,100,72,-2.237674796976117],[125,100,73,-2.2663767036323406],[125,100,74,-2.2826424585062726],[125,100,75,-2.2886445743478885],[125,100,76,-2.2746277777647013],[125,100,77,-2.244948147242733],[125,100,78,-2.204630259346824],[125,100,79,-2.1615348492438877],[125,101,64,-2.261442123375157],[125,101,65,-2.267548237449736],[125,101,66,-2.2665435975841346],[125,101,67,-2.2543840392321854],[125,101,68,-2.243700300164417],[125,101,69,-2.245956206741613],[125,101,70,-2.250941088914304],[125,101,71,-2.261902819090017],[125,101,72,-2.2874766308472525],[125,101,73,-2.3162813945356198],[125,101,74,-2.3342578075648865],[125,101,75,-2.337758130063811],[125,101,76,-2.3230499736613877],[125,101,77,-2.292284756976359],[125,101,78,-2.2514260332863136],[125,101,79,-2.2105107610658954],[125,102,64,-2.309993964691283],[125,102,65,-2.3168268797868574],[125,102,66,-2.316378691829848],[125,102,67,-2.3028975717727733],[125,102,68,-2.2922168174912176],[125,102,69,-2.292394559601696],[125,102,70,-2.2976589898719437],[125,102,71,-2.3118443816273575],[125,102,72,-2.3387614594336643],[125,102,73,-2.3679168451508694],[125,102,74,-2.385508420480497],[125,102,75,-2.38668255571266],[125,102,76,-2.369699710581446],[125,102,77,-2.3389425963586357],[125,102,78,-2.299915988488659],[125,102,79,-2.260242935695724],[125,103,64,-2.3525494466020023],[125,103,65,-2.3604948146477995],[125,103,66,-2.356177421201699],[125,103,67,-2.344305308130316],[125,103,68,-2.334903463564481],[125,103,69,-2.3326130838398718],[125,103,70,-2.341743263867481],[125,103,71,-2.3583104594028583],[125,103,72,-2.3845325669185504],[125,103,73,-2.4151614691806222],[125,103,74,-2.432669711885481],[125,103,75,-2.4313054204065],[125,103,76,-2.4141564384973524],[125,103,77,-2.3826953591317315],[125,103,78,-2.3453855168891344],[125,103,79,-2.306008567562637],[125,104,64,-2.404820266130347],[125,104,65,-2.409825553750495],[125,104,66,-2.4053471491462988],[125,104,67,-2.3924375388469215],[125,104,68,-2.38306017377107],[125,104,69,-2.382776618739084],[125,104,70,-2.3940329493218706],[125,104,71,-2.4088378641961676],[125,104,72,-2.4358331169684933],[125,104,73,-2.4646771293245253],[125,104,74,-2.4821346875043795],[125,104,75,-2.480055497930616],[125,104,76,-2.4621628430270475],[125,104,77,-2.4327138205916743],[125,104,78,-2.3968963737703284],[125,104,79,-2.3586036208882386],[125,105,64,-2.445955938627726],[125,105,65,-2.455408008969866],[125,105,66,-2.45063193628446],[125,105,67,-2.4405144122728686],[125,105,68,-2.4333496318874435],[125,105,69,-2.43436452637448],[125,105,70,-2.4431538192058393],[125,105,71,-2.4635735616589076],[125,105,72,-2.494624267530155],[125,105,73,-2.522601061952857],[125,105,74,-2.5389505038515736],[125,105,75,-2.5372948932667696],[125,105,76,-2.5177577303675864],[125,105,77,-2.485152238215096],[125,105,78,-2.4455134147896884],[125,105,79,-2.4035338226967333],[125,106,64,-2.502004000729627],[125,106,65,-2.512121195712133],[125,106,66,-2.5070517671068218],[125,106,67,-2.4986607163044985],[125,106,68,-2.490207516721429],[125,106,69,-2.4902417698284993],[125,106,70,-2.4989054167382045],[125,106,71,-2.519461143746455],[125,106,72,-2.5495804975934844],[125,106,73,-2.5770967843203656],[125,106,74,-2.591401674932491],[125,106,75,-2.5924661491124668],[125,106,76,-2.572324926757804],[125,106,77,-2.541230360581578],[125,106,78,-2.497468084606156],[125,106,79,-2.4562763110643457],[125,107,64,-2.553905833379387],[125,107,65,-2.5618843949523358],[125,107,66,-2.557312875344282],[125,107,67,-2.548679975150892],[125,107,68,-2.5385842236488663],[125,107,69,-2.539224079177373],[125,107,70,-2.5494601187180126],[125,107,71,-2.568561947877121],[125,107,72,-2.596880802494641],[125,107,73,-2.6214879972476473],[125,107,74,-2.636665070346462],[125,107,75,-2.641007766957607],[125,107,76,-2.6230640321335654],[125,107,77,-2.589723424705877],[125,107,78,-2.5465598444322395],[125,107,79,-2.5027945359734374],[125,108,64,-2.597781752796001],[125,108,65,-2.6078449577017904],[125,108,66,-2.603755021643375],[125,108,67,-2.5974549934819264],[125,108,68,-2.5860342537212153],[125,108,69,-2.590575682429125],[125,108,70,-2.6010640986395654],[125,108,71,-2.6202887413724176],[125,108,72,-2.6460162108125145],[125,108,73,-2.6723160344978005],[125,108,74,-2.689407722631128],[125,108,75,-2.692036621817275],[125,108,76,-2.6781782065205566],[125,108,77,-2.6463506229490417],[125,108,78,-2.602701306258939],[125,108,79,-2.5598237924630434],[125,109,64,-2.6543815065380616],[125,109,65,-2.661341607693637],[125,109,66,-2.6569257994066255],[125,109,67,-2.643729940732192],[125,109,68,-2.6346110936215457],[125,109,69,-2.6403271721185235],[125,109,70,-2.649863505634187],[125,109,71,-2.6618531470914055],[125,109,72,-2.686081991168322],[125,109,73,-2.7146012749261006],[125,109,74,-2.729057722396796],[125,109,75,-2.7305105301416397],[125,109,76,-2.7212291877982557],[125,109,77,-2.6957005197712545],[125,109,78,-2.659594178426845],[125,109,79,-2.6219181210396276],[125,110,64,-2.7033220153302278],[125,110,65,-2.711387173325475],[125,110,66,-2.703474133620951],[125,110,67,-2.692503999337111],[125,110,68,-2.685113755454119],[125,110,69,-2.688898195430039],[125,110,70,-2.69779986304095],[125,110,71,-2.7081633532254594],[125,110,72,-2.730761941364838],[125,110,73,-2.7597815667517955],[125,110,74,-2.775203850901306],[125,110,75,-2.777851296616823],[125,110,76,-2.76678536514321],[125,110,77,-2.7428668986677964],[125,110,78,-2.710059052090302],[125,110,79,-2.672710184481189],[125,111,64,-2.745920315393258],[125,111,65,-2.7547007343908962],[125,111,66,-2.7462669149444663],[125,111,67,-2.7341790962324124],[125,111,68,-2.7281718079582395],[125,111,69,-2.7322185255805094],[125,111,70,-2.7406181665441807],[125,111,71,-2.7506215731308066],[125,111,72,-2.774615700668248],[125,111,73,-2.803129071170547],[125,111,74,-2.818039679247543],[125,111,75,-2.822146207767197],[125,111,76,-2.811958731025742],[125,111,77,-2.786041535463791],[125,111,78,-2.757144440808869],[125,111,79,-2.7201569064112094],[125,112,64,-2.7984370124152402],[125,112,65,-2.806020983104183],[125,112,66,-2.797549016641226],[125,112,67,-2.7832006816359884],[125,112,68,-2.7774916685240245],[125,112,69,-2.780412808525981],[125,112,70,-2.7878730266659577],[125,112,71,-2.795904429446149],[125,112,72,-2.822627812777659],[125,112,73,-2.850393959233505],[125,112,74,-2.8638713865941923],[125,112,75,-2.8690936298135457],[125,112,76,-2.859021649110749],[125,112,77,-2.8332940125206205],[125,112,78,-2.806277332336195],[125,112,79,-2.769220866939412],[125,113,64,-2.849990112917388],[125,113,65,-2.857478292682652],[125,113,66,-2.848003790189266],[125,113,67,-2.833094065323604],[125,113,68,-2.826591091354722],[125,113,69,-2.8264577588614093],[125,113,70,-2.8348822450455238],[125,113,71,-2.842403029875826],[125,113,72,-2.867240739502333],[125,113,73,-2.8949294756291937],[125,113,74,-2.911499859707608],[125,113,75,-2.914843470326468],[125,113,76,-2.9050817360545342],[125,113,77,-2.8809297519431216],[125,113,78,-2.8559643055286106],[125,113,79,-2.818420551373922],[125,114,64,-2.9046460246617296],[125,114,65,-2.912847344812372],[125,114,66,-2.904610577569048],[125,114,67,-2.889105078569968],[125,114,68,-2.8789701817242714],[125,114,69,-2.8789822646355763],[125,114,70,-2.8854376233328476],[125,114,71,-2.8978833937933004],[125,114,72,-2.9208417502702355],[125,114,73,-2.946426073545073],[125,114,74,-2.962850895921349],[125,114,75,-2.9671641145212937],[125,114,76,-2.9589533875490837],[125,114,77,-2.9343687960750313],[125,114,78,-2.909637000076656],[125,114,79,-2.87427444349751],[125,115,64,-2.95166715979648],[125,115,65,-2.9585427914008084],[125,115,66,-2.9523906878684776],[125,115,67,-2.937367063900589],[125,115,68,-2.926949271089727],[125,115,69,-2.927564406275315],[125,115,70,-2.933298352023217],[125,115,71,-2.9471286323639223],[125,115,72,-2.9701868100617506],[125,115,73,-2.993868946488736],[125,115,74,-3.0114419810874886],[125,115,75,-3.01785851615542],[125,115,76,-3.0121311797144297],[125,115,77,-2.9853980052609046],[125,115,78,-2.956566483016599],[125,115,79,-2.920730048735732],[125,116,64,-2.981877820039448],[125,116,65,-2.9883717429327366],[125,116,66,-2.9814337772984096],[125,116,67,-2.966449976211984],[125,116,68,-2.9562204305636914],[125,116,69,-2.9563562803988126],[125,116,70,-2.9640488775567264],[125,116,71,-2.979701182111065],[125,116,72,-3.0039073483022745],[125,116,73,-3.0291396748539383],[125,116,74,-3.0428187907402826],[125,116,75,-3.0515349294732967],[125,116,76,-3.0456271156335166],[125,116,77,-3.0204856315884303],[125,116,78,-2.986036862809665],[125,116,79,-2.9469631793185456],[125,117,64,-3.0347841437795955],[125,117,65,-3.0413772134324537],[125,117,66,-3.0335511826752977],[125,117,67,-3.0187639835655333],[125,117,68,-3.009694706593344],[125,117,69,-3.008529855187319],[125,117,70,-3.0157221581384395],[125,117,71,-3.0313102838467096],[125,117,72,-3.0576008907990766],[125,117,73,-3.0835868946618787],[125,117,74,-3.09444896031703],[125,117,75,-3.1016535493075823],[125,117,76,-3.096167064936906],[125,117,77,-3.067604587380368],[125,117,78,-3.0290948340013157],[125,117,79,-2.9870717202425046],[125,118,64,-3.0783674314337253],[125,118,65,-3.087435860828884],[125,118,66,-3.080704284254342],[125,118,67,-3.063766748646713],[125,118,68,-3.056202312328139],[125,118,69,-3.0530103068989902],[125,118,70,-3.058397663758347],[125,118,71,-3.075331879587075],[125,118,72,-3.1046757004862613],[125,118,73,-3.1310352726514705],[125,118,74,-3.144578645971467],[125,118,75,-3.1489825280767834],[125,118,76,-3.144477315497507],[125,118,77,-3.116946246074689],[125,118,78,-3.078698699607046],[125,118,79,-3.038187911681454],[125,119,64,-3.1160655519024805],[125,119,65,-3.126279690742173],[125,119,66,-3.1212295373733716],[125,119,67,-3.1061487352969244],[125,119,68,-3.0966960284134353],[125,119,69,-3.0931641187289713],[125,119,70,-3.1000091868944377],[125,119,71,-3.1189308052026936],[125,119,72,-3.1480549439924754],[125,119,73,-3.17808998653498],[125,119,74,-3.1946960528243333],[125,119,75,-3.1975915408624993],[125,119,76,-3.1894324923851762],[125,119,77,-3.166829305959554],[125,119,78,-3.127769057962874],[125,119,79,-3.0878092514725584],[125,120,64,-3.162578952366196],[125,120,65,-3.1706799892792294],[125,120,66,-3.1669533691997294],[125,120,67,-3.1531910096858153],[125,120,68,-3.142933028721463],[125,120,69,-3.1406010639404656],[125,120,70,-3.1446622856043724],[125,120,71,-3.1647717910707893],[125,120,72,-3.195157682946337],[125,120,73,-3.225670913734424],[125,120,74,-3.244473473494753],[125,120,75,-3.2467346755132547],[125,120,76,-3.2376826609498903],[125,120,77,-3.215139925893851],[125,120,78,-3.1771028360176063],[125,120,79,-3.138219903398705],[125,121,64,-3.1992750406078314],[125,121,65,-3.2075045904104353],[125,121,66,-3.2001802496470177],[125,121,67,-3.186880944520166],[125,121,68,-3.1789611593665863],[125,121,69,-3.176210347472468],[125,121,70,-3.184812104012813],[125,121,71,-3.2054206763212485],[125,121,72,-3.2371777058150553],[125,121,73,-3.2701074650627535],[125,121,74,-3.290992147726136],[125,121,75,-3.2978168627621827],[125,121,76,-3.2896579973538405],[125,121,77,-3.2680494279078878],[125,121,78,-3.235128187527998],[125,121,79,-3.1965904772164926],[125,122,64,-3.25351219870703],[125,122,65,-3.259011085654914],[125,122,66,-3.2492198672356856],[125,122,67,-3.2381805733108964],[125,122,68,-3.2310255110059334],[125,122,69,-3.2299880031174886],[125,122,70,-3.238983009244322],[125,122,71,-3.257424155450282],[125,122,72,-3.2891361250616984],[125,122,73,-3.3224267312999642],[125,122,74,-3.3464254979938857],[125,122,75,-3.3556086489097994],[125,122,76,-3.3465711104822327],[125,122,77,-3.322289934306692],[125,122,78,-3.2894485855133766],[125,122,79,-3.250430555408549],[125,123,64,-3.2997645614740305],[125,123,65,-3.3025053736859618],[125,123,66,-3.2950905570763536],[125,123,67,-3.283532857214936],[125,123,68,-3.2764960635542733],[125,123,69,-3.2774165062621496],[125,123,70,-3.287366206641406],[125,123,71,-3.3057450861664623],[125,123,72,-3.3373754950048706],[125,123,73,-3.371917908332962],[125,123,74,-3.3949916539399303],[125,123,75,-3.4065261858665576],[125,123,76,-3.3969108130012637],[125,123,77,-3.373847156332793],[125,123,78,-3.3368724172719357],[125,123,79,-3.301982813944816],[125,124,64,-3.3388515474693325],[125,124,65,-3.345355198453025],[125,124,66,-3.3408689766116653],[125,124,67,-3.329305014604903],[125,124,68,-3.3190435305346817],[125,124,69,-3.321609153809676],[125,124,70,-3.3342588976398475],[125,124,71,-3.3519490380121293],[125,124,72,-3.388287654083852],[125,124,73,-3.424460306307],[125,124,74,-3.446522778249882],[125,124,75,-3.4556276294887294],[125,124,76,-3.4465133568417627],[125,124,77,-3.421714227361452],[125,124,78,-3.387394892033691],[125,124,79,-3.354743688857899],[125,125,64,-3.382854500094485],[125,125,65,-3.393006841131355],[125,125,66,-3.3873037803740695],[125,125,67,-3.374019335798265],[125,125,68,-3.3637189281756665],[125,125,69,-3.366879063680768],[125,125,70,-3.3795898806321643],[125,125,71,-3.400488496354654],[125,125,72,-3.4352211686094813],[125,125,73,-3.472401304078541],[125,125,74,-3.496266091011555],[125,125,75,-3.5050860856876382],[125,125,76,-3.494021287243679],[125,125,77,-3.468712524152364],[125,125,78,-3.4372193181655493],[125,125,79,-3.4070335187607887],[125,126,64,-3.425993573458616],[125,126,65,-3.4365857930778807],[125,126,66,-3.432589470073346],[125,126,67,-3.419359337193579],[125,126,68,-3.4126039574158984],[125,126,69,-3.4145426846299904],[125,126,70,-3.428161508554398],[125,126,71,-3.4478572407183363],[125,126,72,-3.483231433405841],[125,126,73,-3.5224154134482935],[125,126,74,-3.5477598856123445],[125,126,75,-3.5508639123747296],[125,126,76,-3.540268176030189],[125,126,77,-3.51568771660035],[125,126,78,-3.4872701216616258],[125,126,79,-3.4582750493811085],[125,127,64,-3.4674944123345965],[125,127,65,-3.4790974793652865],[125,127,66,-3.4770135218530194],[125,127,67,-3.4625104133729048],[125,127,68,-3.4556866051314965],[125,127,69,-3.460092224128166],[125,127,70,-3.4754957154576323],[125,127,71,-3.497711648536818],[125,127,72,-3.531785589749637],[125,127,73,-3.571282389608014],[125,127,74,-3.5960463808685454],[125,127,75,-3.5994594703429956],[125,127,76,-3.5874360255067796],[125,127,77,-3.5643809172855727],[125,127,78,-3.537274818637785],[125,127,79,-3.5092447361140673],[125,128,64,-3.512994598968351],[125,128,65,-3.5263143129790353],[125,128,66,-3.5242835288780263],[125,128,67,-3.512125776359067],[125,128,68,-3.504640115488809],[125,128,69,-3.5094979508552964],[125,128,70,-3.526706475592649],[125,128,71,-3.5472908374274765],[125,128,72,-3.5810933695483547],[125,128,73,-3.620603427810557],[125,128,74,-3.6454331872282384],[125,128,75,-3.651539149481824],[125,128,76,-3.6386792424493657],[125,128,77,-3.611335616794017],[125,128,78,-3.5853056113932547],[125,128,79,-3.556466534148214],[125,129,64,-3.568736611916664],[125,129,65,-3.5801702577327434],[125,129,66,-3.5815954475372185],[125,129,67,-3.5704997479504916],[125,129,68,-3.5619986871856977],[125,129,69,-3.5699832341117257],[125,129,70,-3.5860787945096497],[125,129,71,-3.6074680479828314],[125,129,72,-3.6390759150971337],[125,129,73,-3.6801610231194966],[125,129,74,-3.7032728220842177],[125,129,75,-3.708769534590886],[125,129,76,-3.6962726640410435],[125,129,77,-3.6668675483617736],[125,129,78,-3.6385054453748733],[125,129,79,-3.6079767359581103],[125,130,64,-3.622820861196494],[125,130,65,-3.632145115039353],[125,130,66,-3.632805802171342],[125,130,67,-3.625468564498555],[125,130,68,-3.617234173273736],[125,130,69,-3.625823552131217],[125,130,70,-3.6397871664244765],[125,130,71,-3.662224675430947],[125,130,72,-3.694813343633803],[125,130,73,-3.734271879553982],[125,130,74,-3.759207569802033],[125,130,75,-3.7643543256844234],[125,130,76,-3.7494017779163453],[125,130,77,-3.724316649034689],[125,130,78,-3.6927619259027153],[125,130,79,-3.6580246967621277],[125,131,64,-3.6661774479676623],[125,131,65,-3.6780515047706523],[125,131,66,-3.6782763375263254],[125,131,67,-3.6737382240209335],[125,131,68,-3.666731053619776],[125,131,69,-3.672798299597496],[125,131,70,-3.687714062243669],[125,131,71,-3.711858268860191],[125,131,72,-3.7460165706963005],[125,131,73,-3.7831596723079066],[125,131,74,-3.808655789303409],[125,131,75,-3.81361960172258],[125,131,76,-3.8071980455084633],[125,131,77,-3.7831653778379595],[125,131,78,-3.7424940742957453],[125,131,79,-3.7073356938896294],[125,132,64,-3.702413739009225],[125,132,65,-3.716358057772846],[125,132,66,-3.7160207340019684],[125,132,67,-3.712376197065084],[125,132,68,-3.7067418161590564],[125,132,69,-3.7141575626166166],[125,132,70,-3.7294485521648157],[125,132,71,-3.7542627122100947],[125,132,72,-3.7888522409386596],[125,132,73,-3.828248404857682],[125,132,74,-3.8501452100545737],[125,132,75,-3.8602017608276347],[125,132,76,-3.871853449341223],[125,132,77,-3.833195519665624],[125,132,78,-3.7899893707377696],[125,132,79,-3.7496119025389105],[125,133,64,-3.7369880740173174],[125,133,65,-3.7499943901778403],[125,133,66,-3.751616758818052],[125,133,67,-3.7474029431038245],[125,133,68,-3.7440569549476934],[125,133,69,-3.7532495578254945],[125,133,70,-3.7676133415528295],[125,133,71,-3.792382883871559],[125,133,72,-3.8284509824977433],[125,133,73,-3.866334105223681],[125,133,74,-3.901493472187405],[125,133,75,-3.924624548885229],[125,133,76,-3.943129602998508],[125,133,77,-3.908757367344426],[125,133,78,-3.861371987481446],[125,133,79,-3.8297306060270477],[125,134,64,-3.7827937060261685],[125,134,65,-3.793296864690184],[125,134,66,-3.7937775140524526],[125,134,67,-3.792317448401591],[125,134,68,-3.7904807912456198],[125,134,69,-3.800385409038623],[125,134,70,-3.8149035345813656],[125,134,71,-3.838904160351499],[125,134,72,-3.87552257919624],[125,134,73,-3.913160720760501],[125,134,74,-3.9602081026554914],[125,134,75,-3.9870594674870476],[125,134,76,-4.0016111802017456],[125,134,77,-3.9737617560395058],[125,134,78,-3.9223285348686265],[125,134,79,-3.8977690042334663],[125,135,64,-3.826756600543465],[125,135,65,-3.836415892530011],[125,135,66,-3.836917152543367],[125,135,67,-3.8341399738604296],[125,135,68,-3.830912452842945],[125,135,69,-3.8429724677696724],[125,135,70,-3.8610364338857823],[125,135,71,-3.8860438858750124],[125,135,72,-3.924225986824106],[125,135,73,-3.9607401033765],[125,135,74,-4.0082610988223255],[125,135,75,-4.035361584730856],[125,135,76,-4.047382507970428],[125,135,77,-4.028194236181328],[125,135,78,-3.974682686220126],[125,135,79,-3.952426640226653],[125,136,64,-3.8745085551898812],[125,136,65,-3.885803308766906],[125,136,66,-3.882352525116584],[125,136,67,-3.8781514910944255],[125,136,68,-3.8765555942393295],[125,136,69,-3.8877849773065023],[125,136,70,-3.9063034686413363],[125,136,71,-3.9328302844627414],[125,136,72,-3.9748261845901656],[125,136,73,-4.0090106390176885],[125,136,74,-4.06554107181665],[125,136,75,-4.094890741534866],[125,136,76,-4.109877972316841],[125,136,77,-4.08967486214721],[125,136,78,-4.038305656915265],[125,136,79,-4.022120383305397],[125,137,64,-3.920259351486855],[125,137,65,-3.9328250002187324],[125,137,66,-3.928542682462196],[125,137,67,-3.924554380795546],[125,137,68,-3.9222039880839965],[125,137,69,-3.9345043355687457],[125,137,70,-3.9552332434351434],[125,137,71,-3.98458926693752],[125,137,72,-4.023628010902174],[125,137,73,-4.064272265521312],[125,137,74,-4.116801792880831],[125,137,75,-4.143692320217023],[125,137,76,-4.160054374528721],[125,137,77,-4.13656344718395],[125,137,78,-4.0943075479755535],[125,137,79,-4.077107980263097],[125,138,64,-3.9741402733700135],[125,138,65,-3.9857135622122604],[125,138,66,-3.982760018395883],[125,138,67,-3.977493177323996],[125,138,68,-3.976889861954693],[125,138,69,-3.9908747974641106],[125,138,70,-4.012546301145781],[125,138,71,-4.0404883618332015],[125,138,72,-4.077284472031712],[125,138,73,-4.110854396195585],[125,138,74,-4.155485292400486],[125,138,75,-4.181147679921564],[125,138,76,-4.194650533354097],[125,138,77,-4.184694807228634],[125,138,78,-4.14625751908068],[125,138,79,-4.124512688569579],[125,139,64,-4.021164473290988],[125,139,65,-4.03367635228174],[125,139,66,-4.030834741524767],[125,139,67,-4.027138517535639],[125,139,68,-4.027171324943498],[125,139,69,-4.039134939762632],[125,139,70,-4.062832771875785],[125,139,71,-4.089268303297114],[125,139,72,-4.12435349484342],[125,139,73,-4.166799189143858],[125,139,74,-4.221580284260742],[125,139,75,-4.255502685860172],[125,139,76,-4.264067857471807],[125,139,77,-4.26303552090138],[125,139,78,-4.229164801455077],[125,139,79,-4.199209265399592],[125,140,64,-4.069073138151765],[125,140,65,-4.081333642991975],[125,140,66,-4.077544585995315],[125,140,67,-4.073273186576003],[125,140,68,-4.071143774959393],[125,140,69,-4.080071655468443],[125,140,70,-4.1015259319836685],[125,140,71,-4.128185796871099],[125,140,72,-4.164634982233134],[125,140,73,-4.21620889747357],[125,140,74,-4.268443329653223],[125,140,75,-4.304315105119002],[125,140,76,-4.311763120617437],[125,140,77,-4.3116195389513585],[125,140,78,-4.283091427632957],[125,140,79,-4.253375497743445],[125,141,64,-4.110118049049237],[125,141,65,-4.124626129061746],[125,141,66,-4.125403306399371],[125,141,67,-4.120082345186471],[125,141,68,-4.118634903806456],[125,141,69,-4.1277557650525685],[125,141,70,-4.150169970099887],[125,141,71,-4.1788475568742935],[125,141,72,-4.213512938171074],[125,141,73,-4.274817463421768],[125,141,74,-4.3101538893198725],[125,141,75,-4.332717311081291],[125,141,76,-4.343386262028815],[125,141,77,-4.340525011375968],[125,141,78,-4.326488803911282],[125,141,79,-4.2926668511673425],[125,142,64,-4.1566957028581335],[125,142,65,-4.17087120554158],[125,142,66,-4.171250691974316],[125,142,67,-4.16253156689981],[125,142,68,-4.1639095840482625],[125,142,69,-4.174641256089182],[125,142,70,-4.196236763986689],[125,142,71,-4.225172642611601],[125,142,72,-4.261887571091234],[125,142,73,-4.3225594836631736],[125,142,74,-4.360267777135953],[125,142,75,-4.378913699903574],[125,142,76,-4.389026755866311],[125,142,77,-4.3909399851871544],[125,142,78,-4.3724505447054085],[125,142,79,-4.341541706403179],[125,143,64,-4.197682124540262],[125,143,65,-4.214755599866273],[125,143,66,-4.215616419510622],[125,143,67,-4.209076812823185],[125,143,68,-4.207865570169468],[125,143,69,-4.21843218733394],[125,143,70,-4.242567283835746],[125,143,71,-4.271949733221293],[125,143,72,-4.310435161348692],[125,143,73,-4.365495688597559],[125,143,74,-4.3986065978639575],[125,143,75,-4.422545027891628],[125,143,76,-4.431096274720059],[125,143,77,-4.436704056568345],[125,143,78,-4.414579140925593],[125,143,79,-4.378110014934835],[125,144,64,-4.248466276913959],[125,144,65,-4.264202253214418],[125,144,66,-4.26445715334469],[125,144,67,-4.258552881535914],[125,144,68,-4.2558690316633],[125,144,69,-4.267711144331313],[125,144,70,-4.291498125316231],[125,144,71,-4.317573595552294],[125,144,72,-4.356733941436654],[125,144,73,-4.416075262917221],[125,144,74,-4.448832828875157],[125,144,75,-4.474569357899561],[125,144,76,-4.488880422893857],[125,144,77,-4.490918585620477],[125,144,78,-4.47205976824801],[125,144,79,-4.440210708136704],[125,145,64,-4.308554594178132],[125,145,65,-4.318020212779482],[125,145,66,-4.317180485406287],[125,145,67,-4.3086151644567305],[125,145,68,-4.302397219557231],[125,145,69,-4.315783632608502],[125,145,70,-4.340172276156306],[125,145,71,-4.368645706653528],[125,145,72,-4.405095893513326],[125,145,73,-4.445245804560305],[125,145,74,-4.463103854486454],[125,145,75,-4.466646102897684],[125,145,76,-4.479281172895666],[125,145,77,-4.482954738916009],[125,145,78,-4.481754107840776],[125,145,79,-4.449130577982813],[125,146,64,-4.363130548878504],[125,146,65,-4.374732828861689],[125,146,66,-4.369622291766669],[125,146,67,-4.36237107564522],[125,146,68,-4.359316832729437],[125,146,69,-4.371073544806856],[125,146,70,-4.394975761708722],[125,146,71,-4.422729891019474],[125,146,72,-4.458833514658382],[125,146,73,-4.499297764305645],[125,146,74,-4.515144717522734],[125,146,75,-4.5177936831079615],[125,146,76,-4.521982342560335],[125,146,77,-4.528169071363699],[125,146,78,-4.515939334529732],[125,146,79,-4.487254792758951],[125,147,64,-4.411790380951168],[125,147,65,-4.4257565123647655],[125,147,66,-4.420833501731684],[125,147,67,-4.409969025461625],[125,147,68,-4.409022635639297],[125,147,69,-4.4203663755252265],[125,147,70,-4.442246385856729],[125,147,71,-4.469047001653844],[125,147,72,-4.507215542378239],[125,147,73,-4.547039700561585],[125,147,74,-4.56519801576219],[125,147,75,-4.5656287616473294],[125,147,76,-4.554110505341288],[125,147,77,-4.49853482263422],[125,147,78,-4.464509321173976],[125,147,79,-4.434742403038743],[125,148,64,-4.426407411893721],[125,148,65,-4.444901125335123],[125,148,66,-4.444575705646313],[125,148,67,-4.438985465608525],[125,148,68,-4.43643298817462],[125,148,69,-4.4496469020347895],[125,148,70,-4.473986256168344],[125,148,71,-4.503139160351208],[125,148,72,-4.544555425946827],[125,148,73,-4.585945978930131],[125,148,74,-4.604084492886018],[125,148,75,-4.601938683248948],[125,148,76,-4.567611194924722],[125,148,77,-4.512921125920141],[125,148,78,-4.490842816809553],[125,148,79,-4.4660668984516505],[125,149,64,-4.476192424463817],[125,149,65,-4.492419086077099],[125,149,66,-4.49383294930083],[125,149,67,-4.487650713250865],[125,149,68,-4.485148248331185],[125,149,69,-4.496389960562538],[125,149,70,-4.519143544706897],[125,149,71,-4.548617439155723],[125,149,72,-4.593578493224419],[125,149,73,-4.634837897850621],[125,149,74,-4.652965383974852],[125,149,75,-4.642062597604573],[125,149,76,-4.609140416826183],[125,149,77,-4.554503663902667],[125,149,78,-4.531898588014368],[125,149,79,-4.5096848428923035],[125,150,64,-4.525336013596154],[125,150,65,-4.543612204026506],[125,150,66,-4.545457350514025],[125,150,67,-4.5387655380757925],[125,150,68,-4.536449613797943],[125,150,69,-4.545631019356202],[125,150,70,-4.567390605543154],[125,150,71,-4.596658778981865],[125,150,72,-4.642311066374761],[125,150,73,-4.684696001069143],[125,150,74,-4.692184635949724],[125,150,75,-4.679715959028263],[125,150,76,-4.64904020902577],[125,150,77,-4.601261913927425],[125,150,78,-4.5812342930364025],[125,150,79,-4.561390475922366],[125,151,64,-4.570480886729508],[125,151,65,-4.591384768445578],[125,151,66,-4.594427912911517],[125,151,67,-4.587066282476589],[125,151,68,-4.5858265718650335],[125,151,69,-4.593201082461998],[125,151,70,-4.615050769031059],[125,151,71,-4.644717489479859],[125,151,72,-4.690249588523271],[125,151,73,-4.73253721161896],[125,151,74,-4.741824958863937],[125,151,75,-4.724102444273193],[125,151,76,-4.694481901013095],[125,151,77,-4.648625462016784],[125,151,78,-4.630286108001005],[125,151,79,-4.608949179852296],[125,152,64,-4.619795916824675],[125,152,65,-4.640815930896507],[125,152,66,-4.645253700919993],[125,152,67,-4.637861798382345],[125,152,68,-4.63492811295443],[125,152,69,-4.641666986241036],[125,152,70,-4.661838507606851],[125,152,71,-4.692040552539422],[125,152,72,-4.738293480481889],[125,152,73,-4.776868182179217],[125,152,74,-4.7766996081303255],[125,152,75,-4.762125998364543],[125,152,76,-4.730732645012982],[125,152,77,-4.685480878645683],[125,152,78,-4.670234636511338],[125,152,79,-4.6508741362473955],[125,153,64,-4.673307245168286],[125,153,65,-4.691220565509957],[125,153,66,-4.691348547101054],[125,153,67,-4.680392126400702],[125,153,68,-4.674044139517268],[125,153,69,-4.68344106030575],[125,153,70,-4.703604411450082],[125,153,71,-4.732967901074453],[125,153,72,-4.778327928946522],[125,153,73,-4.792049736138546],[125,153,74,-4.785141919784371],[125,153,75,-4.766090109695347],[125,153,76,-4.7290452823942735],[125,153,77,-4.707933322607107],[125,153,78,-4.685472248696526],[125,153,79,-4.662296846931656],[125,154,64,-4.72660390022178],[125,154,65,-4.745412953500424],[125,154,66,-4.745537702490246],[125,154,67,-4.733248393287017],[125,154,68,-4.725992696744009],[125,154,69,-4.73683588010044],[125,154,70,-4.7565019039116105],[125,154,71,-4.786292617100329],[125,154,72,-4.82979288014494],[125,154,73,-4.8556523452172975],[125,154,74,-4.851314763870919],[125,154,75,-4.822184375128057],[125,154,76,-4.77888370273486],[125,154,77,-4.752495268201435],[125,154,78,-4.732651387135686],[125,154,79,-4.707283642726604],[125,155,64,-4.774459377837427],[125,155,65,-4.793221805465302],[125,155,66,-4.792108969828883],[125,155,67,-4.781088105009129],[125,155,68,-4.772894465717208],[125,155,69,-4.782614370498508],[125,155,70,-4.801407496112063],[125,155,71,-4.830332696852023],[125,155,72,-4.8757194864317785],[125,155,73,-4.900441027690179],[125,155,74,-4.9025780969770025],[125,155,75,-4.866330857643605],[125,155,76,-4.827412553382675],[125,155,77,-4.810570591360519],[125,155,78,-4.789445062823524],[125,155,79,-4.76368782979303],[125,156,64,-4.817232880604963],[125,156,65,-4.835545840149643],[125,156,66,-4.836830109151491],[125,156,67,-4.826430603294332],[125,156,68,-4.818956449553531],[125,156,69,-4.831045723900246],[125,156,70,-4.847674453837506],[125,156,71,-4.874745982304179],[125,156,72,-4.913646037616719],[125,156,73,-4.93379794065567],[125,156,74,-4.947058066439025],[125,156,75,-4.912730502492858],[125,156,76,-4.878006106384558],[125,156,77,-4.860815784366755],[125,156,78,-4.838547358625676],[125,156,79,-4.810896221042715],[125,157,64,-4.8584814260139675],[125,157,65,-4.88103480388595],[125,157,66,-4.88573243316698],[125,157,67,-4.883985366233935],[125,157,68,-4.878995638577648],[125,157,69,-4.889744418328875],[125,157,70,-4.904109405499004],[125,157,71,-4.93099880896778],[125,157,72,-4.955437687730289],[125,157,73,-4.979826892792405],[125,157,74,-4.984717720730652],[125,157,75,-4.949325151889484],[125,157,76,-4.91840079882095],[125,157,77,-4.90670523267251],[125,157,78,-4.884917362700997],[125,157,79,-4.8576480762791965],[125,158,64,-4.90879120342092],[125,158,65,-4.929342822778724],[125,158,66,-4.9348911783371046],[125,158,67,-4.933120922675536],[125,158,68,-4.927185818173972],[125,158,69,-4.936540073060984],[125,158,70,-4.952677739656741],[125,158,71,-4.979785410477933],[125,158,72,-4.996869278779324],[125,158,73,-5.01580559139089],[125,158,74,-5.016061731570236],[125,158,75,-4.983853522111595],[125,158,76,-4.967746923511459],[125,158,77,-4.956224666911001],[125,158,78,-4.935117267444793],[125,158,79,-4.907468851373643],[125,159,64,-5.002666651599158],[125,159,65,-5.017674600146501],[125,159,66,-5.01579517657376],[125,159,67,-5.006472235679553],[125,159,68,-4.994029075184307],[125,159,69,-4.995989399540768],[125,159,70,-5.008790378831018],[125,159,71,-5.028024593777538],[125,159,72,-5.045084849657797],[125,159,73,-5.051601440667002],[125,159,74,-5.049079264686642],[125,159,75,-5.026475872133083],[125,159,76,-5.0125693596038605],[125,159,77,-4.998893867905792],[125,159,78,-4.976383372830003],[125,159,79,-4.948552589761035],[125,160,64,-5.050324133869211],[125,160,65,-5.067386504653358],[125,160,66,-5.062853764010295],[125,160,67,-5.051712139192673],[125,160,68,-5.041175555503974],[125,160,69,-5.042769107905949],[125,160,70,-5.055993554261225],[125,160,71,-5.074011897479803],[125,160,72,-5.0960177519705],[125,160,73,-5.089668713367242],[125,160,74,-5.087759279524668],[125,160,75,-5.071388512125279],[125,160,76,-5.061154824025234],[125,160,77,-5.046059254865637],[125,160,78,-5.02243221644593],[125,160,79,-4.991883567117329],[125,161,64,-5.097499540135479],[125,161,65,-5.114169717011147],[125,161,66,-5.108839481462309],[125,161,67,-5.096171931088953],[125,161,68,-5.085642839473888],[125,161,69,-5.0882728972410725],[125,161,70,-5.103373306896627],[125,161,71,-5.121196290775689],[125,161,72,-5.140375022728528],[125,161,73,-5.12235488378957],[125,161,74,-5.111083174135072],[125,161,75,-5.1042470332968835],[125,161,76,-5.101623963497726],[125,161,77,-5.084828682263564],[125,161,78,-5.060080987470737],[125,161,79,-5.030370834486027],[125,162,64,-5.150813351304739],[125,162,65,-5.16856629235032],[125,162,66,-5.160334735716899],[125,162,67,-5.146911107324291],[125,162,68,-5.1365854653335825],[125,162,69,-5.1390416130526395],[125,162,70,-5.1531502273315795],[125,162,71,-5.173013326423958],[125,162,72,-5.208794879827221],[125,162,73,-5.193159979987328],[125,162,74,-5.167572850130009],[125,162,75,-5.149048367074809],[125,162,76,-5.139468230273968],[125,162,77,-5.119832439546107],[125,162,78,-5.094257940836118],[125,162,79,-5.065193935557423],[125,163,64,-5.197416746231243],[125,163,65,-5.216007414462765],[125,163,66,-5.2081467195828095],[125,163,67,-5.1945637567173994],[125,163,68,-5.183316676377496],[125,163,69,-5.1840208383108415],[125,163,70,-5.196000174049081],[125,163,71,-5.216850632763261],[125,163,72,-5.255085267707047],[125,163,73,-5.2650889485058805],[125,163,74,-5.233908838193915],[125,163,75,-5.211329365144891],[125,163,76,-5.195761589476739],[125,163,77,-5.175742957350758],[125,163,78,-5.149866049977754],[125,163,79,-5.119210092439777],[125,164,64,-5.243116561698215],[125,164,65,-5.256264164652024],[125,164,66,-5.2432846880827535],[125,164,67,-5.223853613001355],[125,164,68,-5.2054793717724195],[125,164,69,-5.203410149397971],[125,164,70,-5.211789078150425],[125,164,71,-5.229154511105909],[125,164,72,-5.267396360220033],[125,164,73,-5.283034792257258],[125,164,74,-5.270456340584732],[125,164,75,-5.255721827490764],[125,164,76,-5.241753888279751],[125,164,77,-5.22171164932352],[125,164,78,-5.197382545707876],[125,164,79,-5.167884547150348],[125,165,64,-5.2982501743390555],[125,165,65,-5.302673201152769],[125,165,66,-5.284758648980443],[125,165,67,-5.26211174393973],[125,165,68,-5.2440293900850055],[125,165,69,-5.240905984050163],[125,165,70,-5.247672003805993],[125,165,71,-5.263054719978033],[125,165,72,-5.298483808780942],[125,165,73,-5.314549685364935],[125,165,74,-5.309213609587048],[125,165,75,-5.292855944711093],[125,165,76,-5.279072590821997],[125,165,77,-5.258092314722418],[125,165,78,-5.23477283459795],[125,165,79,-5.206652527221056],[125,166,64,-5.345193495851437],[125,166,65,-5.347891750652612],[125,166,66,-5.330711109447487],[125,166,67,-5.30645859939091],[125,166,68,-5.291059291775553],[125,166,69,-5.288712350448466],[125,166,70,-5.293256788939824],[125,166,71,-5.306886028735724],[125,166,72,-5.340742679761896],[125,166,73,-5.368127779173738],[125,166,74,-5.376466050791486],[125,166,75,-5.368141680549241],[125,166,76,-5.354204049845922],[125,166,77,-5.326668126036759],[125,166,78,-5.296190054880716],[125,166,79,-5.261463630295835],[125,167,64,-5.389214378014366],[125,167,65,-5.391785460295836],[125,167,66,-5.375941730362951],[125,167,67,-5.3520377263975965],[125,167,68,-5.3371333162453025],[125,167,69,-5.333225857678965],[125,167,70,-5.337642259627505],[125,167,71,-5.3506794005518605],[125,167,72,-5.385585987691048],[125,167,73,-5.417125127783448],[125,167,74,-5.423519773008278],[125,167,75,-5.415785939870733],[125,167,76,-5.401730622634872],[125,167,77,-5.3737607173913045],[125,167,78,-5.343255904507069],[125,167,79,-5.308495807973388],[125,168,64,-5.435092964104315],[125,168,65,-5.439241904477714],[125,168,66,-5.422826689119921],[125,168,67,-5.402609965910169],[125,168,68,-5.3859553031196885],[125,168,69,-5.378812470999166],[125,168,70,-5.38166062573079],[125,168,71,-5.396686361598121],[125,168,72,-5.4318785867353245],[125,168,73,-5.463852916873144],[125,168,74,-5.471769342681952],[125,168,75,-5.466121753783762],[125,168,76,-5.451479667076842],[125,168,77,-5.424520563541917],[125,168,78,-5.394506410193384],[125,168,79,-5.356904089998022],[125,169,64,-5.4746707619595645],[125,169,65,-5.4848656045517155],[125,169,66,-5.476774581572346],[125,169,67,-5.459480700383218],[125,169,68,-5.439893688300865],[125,169,69,-5.43104866482708],[125,169,70,-5.43418207631594],[125,169,71,-5.451551660494793],[125,169,72,-5.491557179110352],[125,169,73,-5.516298488795298],[125,169,74,-5.523880623383733],[125,169,75,-5.511980804585934],[125,169,76,-5.495078166526227],[125,169,77,-5.468022662872291],[125,169,78,-5.437413423704343],[125,169,79,-5.397115629082052],[125,170,64,-5.52652450312932],[125,170,65,-5.537429439874779],[125,170,66,-5.5289232217820325],[125,170,67,-5.510037642686856],[125,170,68,-5.4922098534329615],[125,170,69,-5.4821155241323085],[125,170,70,-5.4856051911638],[125,170,71,-5.50285787648269],[125,170,72,-5.542928035437037],[125,170,73,-5.574561330716903],[125,170,74,-5.584276860726264],[125,170,75,-5.57584738792876],[125,170,76,-5.558050624358425],[125,170,77,-5.5291369032118824],[125,170,78,-5.495739831061238],[125,170,79,-5.45108344267705],[125,171,64,-5.573657158320147],[125,171,65,-5.586290123505833],[125,171,66,-5.576506025195514],[125,171,67,-5.555968907811796],[125,171,68,-5.536785785475686],[125,171,69,-5.525632720073314],[125,171,70,-5.532050176340715],[125,171,71,-5.550517148319996],[125,171,72,-5.5892312272358335],[125,171,73,-5.621965717131873],[125,171,74,-5.635782133888632],[125,171,75,-5.633873003152438],[125,171,76,-5.617820921026166],[125,171,77,-5.589188280562841],[125,171,78,-5.554135717679437],[125,171,79,-5.5098756039010635],[125,172,64,-5.614497564283381],[125,172,65,-5.626648719200375],[125,172,66,-5.616598826965915],[125,172,67,-5.593906490066255],[125,172,68,-5.5730838242815794],[125,172,69,-5.5661598439390065],[125,172,70,-5.5734918977255665],[125,172,71,-5.59215390201289],[125,172,72,-5.628629219692386],[125,172,73,-5.665558097009679],[125,172,74,-5.6859938758816995],[125,172,75,-5.688971666146429],[125,172,76,-5.680895378642943],[125,172,77,-5.657826087176544],[125,172,78,-5.621974241714067],[125,172,79,-5.577276243350866],[125,173,64,-5.663028398084184],[125,173,65,-5.671210129250148],[125,173,66,-5.660824689335633],[125,173,67,-5.637525905040561],[125,173,68,-5.617104724747127],[125,173,69,-5.609039659446844],[125,173,70,-5.617672755895446],[125,173,71,-5.63843733589842],[125,173,72,-5.672675432606243],[125,173,73,-5.708012084036267],[125,173,74,-5.732074318564988],[125,173,75,-5.7353959094868285],[125,173,76,-5.729459031682636],[125,173,77,-5.706990613425334],[125,173,78,-5.670219851042008],[125,173,79,-5.626311551128392],[125,174,64,-5.70898168061167],[125,174,65,-5.71697310766259],[125,174,66,-5.705511255559289],[125,174,67,-5.6792549596736865],[125,174,68,-5.659555703411793],[125,174,69,-5.654355752015872],[125,174,70,-5.6623596570700405],[125,174,71,-5.683312014502006],[125,174,72,-5.718135263787063],[125,174,73,-5.751960621030191],[125,174,74,-5.772916509669887],[125,174,75,-5.776756008828314],[125,174,76,-5.768080138205282],[125,174,77,-5.7441517489110785],[125,174,78,-5.708325889388276],[125,174,79,-5.6658549825589],[125,175,64,-5.751705755961707],[125,175,65,-5.7595152865457875],[125,175,66,-5.7469131797045625],[125,175,67,-5.7203937631087785],[125,175,68,-5.701218152276835],[125,175,69,-5.698697279902637],[125,175,70,-5.706289968891687],[125,175,71,-5.730170951744559],[125,175,72,-5.764825896178058],[125,175,73,-5.798868676081837],[125,175,74,-5.818253525800119],[125,175,75,-5.825785741718752],[125,175,76,-5.815815380566879],[125,175,77,-5.788323442845053],[125,175,78,-5.75425552682344],[125,175,79,-5.712172192014761],[125,176,64,-5.799418644337451],[125,176,65,-5.805210110643774],[125,176,66,-5.789223333309882],[125,176,67,-5.767046083554839],[125,176,68,-5.745864259302578],[125,176,69,-5.741153089729577],[125,176,70,-5.752580697335145],[125,176,71,-5.7762098340246695],[125,176,72,-5.811401322026925],[125,176,73,-5.845724643153187],[125,176,74,-5.863991838821595],[125,176,75,-5.872400802106838],[125,176,76,-5.863026863973065],[125,176,77,-5.837409236930969],[125,176,78,-5.805481859385449],[125,176,79,-5.761507878861914],[125,177,64,-5.855214425557661],[125,177,65,-5.852687240280528],[125,177,66,-5.834136871959406],[125,177,67,-5.806628485544312],[125,177,68,-5.782903037525194],[125,177,69,-5.778365384861206],[125,177,70,-5.788443933494779],[125,177,71,-5.810478676457098],[125,177,72,-5.849219583806321],[125,177,73,-5.883409390655141],[125,177,74,-5.934028959455857],[125,177,75,-5.969809591075258],[125,177,76,-5.989699858915324],[125,177,77,-5.972324053589848],[125,177,78,-5.933019204556497],[125,177,79,-5.8850309834154615],[125,178,64,-5.911425008655396],[125,178,65,-5.905161665317854],[125,178,66,-5.884882408590456],[125,178,67,-5.859234916447242],[125,178,68,-5.835742283651273],[125,178,69,-5.830301467216385],[125,178,70,-5.842816133798634],[125,178,71,-5.8614791422926915],[125,178,72,-5.901078324849483],[125,178,73,-5.93657138643326],[125,178,74,-5.980861955963617],[125,178,75,-6.026422182806549],[125,178,76,-6.049663071534017],[125,178,77,-6.022310276375838],[125,178,78,-5.9810716389374665],[125,178,79,-5.9351405600341725],[125,179,64,-5.959227032705589],[125,179,65,-5.952119765783717],[125,179,66,-5.931934139389302],[125,179,67,-5.904174364166112],[125,179,68,-5.883783956738912],[125,179,69,-5.878555008238513],[125,179,70,-5.888823594367187],[125,179,71,-5.9083977589270935],[125,179,72,-5.947084747779008],[125,179,73,-5.9853572388128065],[125,179,74,-6.034530540615918],[125,179,75,-6.090157323952642],[125,179,76,-6.112070852823017],[125,179,77,-6.082246867028612],[125,179,78,-6.038851496859452],[125,179,79,-5.993110752692892],[125,180,64,-6.000695566528964],[125,180,65,-5.991943956173591],[125,180,66,-5.969259440796358],[125,180,67,-5.94194367641041],[125,180,68,-5.917509446991429],[125,180,69,-5.9127872014373555],[125,180,70,-5.924189911605787],[125,180,71,-5.942254769859345],[125,180,72,-5.983613577812051],[125,180,73,-6.021793425962622],[125,180,74,-6.071871699807558],[125,180,75,-6.137264930020724],[125,180,76,-6.152818919884285],[125,180,77,-6.118591244195426],[125,180,78,-6.076116520563372],[125,180,79,-6.032397007117343],[125,181,64,-6.040120503870864],[125,181,65,-6.036144823670662],[125,181,66,-6.018653436687661],[125,181,67,-5.995479923196007],[125,181,68,-5.974894231142648],[125,181,69,-5.968826495892949],[125,181,70,-5.978916368021494],[125,181,71,-5.999828131362522],[125,181,72,-6.0383871715604585],[125,181,73,-6.076437191016884],[125,181,74,-6.092485653224551],[125,181,75,-6.109424844548489],[125,181,76,-6.101754173537044],[125,181,77,-6.099355149384926],[125,181,78,-6.080366481252205],[125,181,79,-6.04723187374614],[125,182,64,-6.085233108625321],[125,182,65,-6.082899143895414],[125,182,66,-6.066030708626592],[125,182,67,-6.043284051014405],[125,182,68,-6.025961691383207],[125,182,69,-6.0197773460604145],[125,182,70,-6.027157379282846],[125,182,71,-6.0475259306330535],[125,182,72,-6.086456620823414],[125,182,73,-6.1245110344126665],[125,182,74,-6.139999087956067],[125,182,75,-6.155660478333635],[125,182,76,-6.157210316342216],[125,182,77,-6.152706873197575],[125,182,78,-6.129723768044064],[125,182,79,-6.091713189442255],[125,183,64,-6.128927606348131],[125,183,65,-6.130166045387655],[125,183,66,-6.11109118695531],[125,183,67,-6.090218111383474],[125,183,68,-6.074411174542486],[125,183,69,-6.069834969241228],[125,183,70,-6.07819023905371],[125,183,71,-6.097700001246325],[125,183,72,-6.134756233083834],[125,183,73,-6.170574617299239],[125,183,74,-6.187950525141497],[125,183,75,-6.198773971898303],[125,183,76,-6.201064465900297],[125,183,77,-6.189407105709259],[125,183,78,-6.172155169014955],[125,183,79,-6.131545712716231],[125,184,64,-6.177499009510959],[125,184,65,-6.18051755572848],[125,184,66,-6.161463120047447],[125,184,67,-6.140679000619576],[125,184,68,-6.125273764617024],[125,184,69,-6.119557714985794],[125,184,70,-6.129264632796896],[125,184,71,-6.145303990271917],[125,184,72,-6.182855858179617],[125,184,73,-6.216746014586532],[125,184,74,-6.234035658587814],[125,184,75,-6.254206418500457],[125,184,76,-6.249802214580913],[125,184,77,-6.233704264540305],[125,184,78,-6.218887697553324],[125,184,79,-6.180627980805365],[125,185,64,-6.225626060359286],[125,185,65,-6.229875153707785],[125,185,66,-6.211804114542992],[125,185,67,-6.190414987506048],[125,185,68,-6.174214460980908],[125,185,69,-6.169501283752421],[125,185,70,-6.179602921140204],[125,185,71,-6.195888051154108],[125,185,72,-6.2320794200323135],[125,185,73,-6.26370553869215],[125,185,74,-6.282540346618881],[125,185,75,-6.299343533724567],[125,185,76,-6.295193023924036],[125,185,77,-6.276735057828213],[125,185,78,-6.257011887370625],[125,185,79,-6.218181042383533],[125,186,64,-6.28164483789632],[125,186,65,-6.283554686649445],[125,186,66,-6.266227622845995],[125,186,67,-6.2453384290032155],[125,186,68,-6.2264572680803525],[125,186,69,-6.221347634356746],[125,186,70,-6.23215994931716],[125,186,71,-6.251541694220838],[125,186,72,-6.287096899486185],[125,186,73,-6.3181116788043505],[125,186,74,-6.336057143091259],[125,186,75,-6.342515741436492],[125,186,76,-6.346478784393509],[125,186,77,-6.333900544501366],[125,186,78,-6.316405644026067],[125,186,79,-6.271434983757928],[125,187,64,-6.329709215264588],[125,187,65,-6.330103591848849],[125,187,66,-6.315224569516199],[125,187,67,-6.291789639851108],[125,187,68,-6.272923387194033],[125,187,69,-6.265697143932042],[125,187,70,-6.279171823596104],[125,187,71,-6.299892572551423],[125,187,72,-6.335042703779678],[125,187,73,-6.368560186755423],[125,187,74,-6.384117757725626],[125,187,75,-6.396896047856204],[125,187,76,-6.4008775071405895],[125,187,77,-6.39094118777098],[125,187,78,-6.3727011686509325],[125,187,79,-6.322708893314629],[125,188,64,-6.366616637747431],[125,188,65,-6.36475090202955],[125,188,66,-6.34634239614893],[125,188,67,-6.324977746986469],[125,188,68,-6.302495764245973],[125,188,69,-6.295868329498311],[125,188,70,-6.307768261556351],[125,188,71,-6.330861536580275],[125,188,72,-6.366996545071726],[125,188,73,-6.401000382967369],[125,188,74,-6.4152118305284676],[125,188,75,-6.430834418932664],[125,188,76,-6.437187431683014],[125,188,77,-6.426101923722435],[125,188,78,-6.407026416264354],[125,188,79,-6.349486983303903],[125,189,64,-6.407789311631701],[125,189,65,-6.41093878616723],[125,189,66,-6.396837587555085],[125,189,67,-6.375987543695745],[125,189,68,-6.356620050241429],[125,189,69,-6.348216240896887],[125,189,70,-6.358585902204967],[125,189,71,-6.379756001735259],[125,189,72,-6.410625513411368],[125,189,73,-6.441318570360041],[125,189,74,-6.4551521393760085],[125,189,75,-6.48160567435671],[125,189,76,-6.496818073713513],[125,189,77,-6.493205508349833],[125,189,78,-6.4754117360720675],[125,189,79,-6.416544072536126],[125,190,64,-6.454481066971459],[125,190,65,-6.458448772818639],[125,190,66,-6.445580561495518],[125,190,67,-6.42500693240133],[125,190,68,-6.406879029248403],[125,190,69,-6.396908272572912],[125,190,70,-6.4057661375634245],[125,190,71,-6.428578866007469],[125,190,72,-6.4574133192280945],[125,190,73,-6.487728971932624],[125,190,74,-6.501561152185163],[125,190,75,-6.529456262292404],[125,190,76,-6.538131518945749],[125,190,77,-6.53990818972893],[125,190,78,-6.5248027635449075],[125,190,79,-6.466064917029748],[125,191,64,-6.501549886093228],[125,191,65,-6.504747529810039],[125,191,66,-6.492724526298525],[125,191,67,-6.4722709679212835],[125,191,68,-6.454960108135088],[125,191,69,-6.446590209503268],[125,191,70,-6.453593084221644],[125,191,71,-6.473657226057611],[125,191,72,-6.505520004272592],[125,191,73,-6.537517055527418],[125,191,74,-6.5502088903892375],[125,191,75,-6.567469076378989],[125,191,76,-6.571431953514544],[125,191,77,-6.576334803863741],[125,191,78,-6.562862768120187],[125,191,79,-6.515683831123714],[125,192,64,-6.549927315166307],[125,192,65,-6.553141701873828],[125,192,66,-6.540647026291064],[125,192,67,-6.521531020965975],[125,192,68,-6.505459027062083],[125,192,69,-6.497029063916675],[125,192,70,-6.5023263202646335],[125,192,71,-6.520652253894796],[125,192,72,-6.5531000205829315],[125,192,73,-6.58524651013592],[125,192,74,-6.598073756161435],[125,192,75,-6.606562393360042],[125,192,76,-6.610035624305402],[125,192,77,-6.6211709008585515],[125,192,78,-6.599171160081917],[125,192,79,-6.564773157963363],[125,193,64,-6.606517989808021],[125,193,65,-6.603045976381736],[125,193,66,-6.584007722103232],[125,193,67,-6.562087294048404],[125,193,68,-6.542346412340897],[125,193,69,-6.536619073621458],[125,193,70,-6.545825750714919],[125,193,71,-6.56577242679518],[125,193,72,-6.604931203213942],[125,193,73,-6.643752993207323],[125,193,74,-6.657764189196738],[125,193,75,-6.656766945390543],[125,193,76,-6.640945654319687],[125,193,77,-6.638029582764235],[125,193,78,-6.606621519605753],[125,193,79,-6.577450081346867],[125,194,64,-6.661021557769019],[125,194,65,-6.657653074208918],[125,194,66,-6.63585403959885],[125,194,67,-6.611763249579333],[125,194,68,-6.593886018488241],[125,194,69,-6.591548232882752],[125,194,70,-6.598389985433558],[125,194,71,-6.619285354909736],[125,194,72,-6.660550289495031],[125,194,73,-6.700899798878331],[125,194,74,-6.71363941592189],[125,194,75,-6.7115071705367395],[125,194,76,-6.694877467811724],[125,194,77,-6.67454140870735],[125,194,78,-6.641431916816442],[125,194,79,-6.622508598208119],[125,195,64,-6.710817051974736],[125,195,65,-6.705820129238931],[125,195,66,-6.683697424644254],[125,195,67,-6.658180678174981],[125,195,68,-6.639705376826034],[125,195,69,-6.638770413827569],[125,195,70,-6.647348536811378],[125,195,71,-6.671468448269842],[125,195,72,-6.711125413489334],[125,195,73,-6.753031470429984],[125,195,74,-6.766945374105483],[125,195,75,-6.763640657484077],[125,195,76,-6.743763247741166],[125,195,77,-6.719100729614504],[125,195,78,-6.681101319440724],[125,195,79,-6.6743027290670565],[125,196,64,-6.756626965669435],[125,196,65,-6.761351649940829],[125,196,66,-6.743259112894433],[125,196,67,-6.724209791649618],[125,196,68,-6.712562291048396],[125,196,69,-6.71565387963921],[125,196,70,-6.728296454301602],[125,196,71,-6.755984552425043],[125,196,72,-6.797795343705325],[125,196,73,-6.840125680441391],[125,196,74,-6.859144712654452],[125,196,75,-6.8538001577151135],[125,196,76,-6.834005105965621],[125,196,77,-6.805501677565439],[125,196,78,-6.762014502362055],[125,196,79,-6.75502366297531],[125,197,64,-6.80341790749233],[125,197,65,-6.808751620475232],[125,197,66,-6.789288041523444],[125,197,67,-6.7690916711417755],[125,197,68,-6.757592708224961],[125,197,69,-6.7619234759277],[125,197,70,-6.7768214369161495],[125,197,71,-6.804098148431964],[125,197,72,-6.845450485336838],[125,197,73,-6.888425437371181],[125,197,74,-6.907855234389984],[125,197,75,-6.903901971607718],[125,197,76,-6.883732697813521],[125,197,77,-6.87578721601257],[125,197,78,-6.828925301696203],[125,197,79,-6.812985653735912],[125,198,64,-6.851342175649322],[125,198,65,-6.856155626830938],[125,198,66,-6.837606590764887],[125,198,67,-6.81360741295017],[125,198,68,-6.801909308880905],[125,198,69,-6.80699637008504],[125,198,70,-6.824055772689507],[125,198,71,-6.849694656234469],[125,198,72,-6.893965823130215],[125,198,73,-6.937279075438492],[125,198,74,-6.954361429102383],[125,198,75,-6.95220706465855],[125,198,76,-6.933648568066771],[125,198,77,-6.920685633090607],[125,198,78,-6.881919282525818],[125,198,79,-6.854253250489929],[125,199,64,-6.901425367159839],[125,199,65,-6.906520670306198],[125,199,66,-6.887011953958531],[125,199,67,-6.863004509651577],[125,199,68,-6.852042088659859],[125,199,69,-6.85512808371822],[125,199,70,-6.8703721434599645],[125,199,71,-6.89738685846311],[125,199,72,-6.943243895815706],[125,199,73,-6.986502849203847],[125,199,74,-7.003132235801349],[125,199,75,-7.001683260092548],[125,199,76,-6.984236020927129],[125,199,77,-6.965701771722264],[125,199,78,-6.939886651441373],[125,199,79,-6.903546235818754],[125,200,64,-6.951831254796453],[125,200,65,-6.955964269360292],[125,200,66,-6.936770768498486],[125,200,67,-6.914131433159716],[125,200,68,-6.903719257094497],[125,200,69,-6.90241601449953],[125,200,70,-6.917484328714191],[125,200,71,-6.947120324033818],[125,200,72,-6.992527751426873],[125,200,73,-7.035856936191695],[125,200,74,-7.0507236209592135],[125,200,75,-7.048109070622098],[125,200,76,-7.032383559752992],[125,200,77,-7.013436269851868],[125,200,78,-6.994520804533371],[125,200,79,-6.955863985303353],[125,201,64,-6.9891911887878955],[125,201,65,-6.994560355378815],[125,201,66,-6.979308203753984],[125,201,67,-6.960105167767124],[125,201,68,-6.946872649117719],[125,201,69,-6.9446727608057435],[125,201,70,-6.9608524533258365],[125,201,71,-6.995942015402886],[125,201,72,-7.045799928065834],[125,201,73,-7.087983024948995],[125,201,74,-7.1056348480743585],[125,201,75,-7.102204405921126],[125,201,76,-7.087473128335553],[125,201,77,-7.080836248162215],[125,201,78,-7.0599810800656675],[125,201,79,-7.027462592149047],[125,202,64,-7.041175059126984],[125,202,65,-7.047180621697606],[125,202,66,-7.03541682937049],[125,202,67,-7.015284403918349],[125,202,68,-7.001170341160358],[125,202,69,-6.999482487678598],[125,202,70,-7.01418152813833],[125,202,71,-7.0501852130090255],[125,202,72,-7.099587067958541],[125,202,73,-7.141362664437625],[125,202,74,-7.159667203700162],[125,202,75,-7.155270901048976],[125,202,76,-7.139036114225936],[125,202,77,-7.127153730386402],[125,202,78,-7.105854561326121],[125,202,79,-7.073036961527817],[125,203,64,-7.089609275941393],[125,203,65,-7.0970152534623345],[125,203,66,-7.085626790498934],[125,203,67,-7.065563647460603],[125,203,68,-7.052006121604319],[125,203,69,-7.050503550822989],[125,203,70,-7.065742514253127],[125,203,71,-7.101135919374092],[125,203,72,-7.150889604027225],[125,203,73,-7.191452584995709],[125,203,74,-7.207676702593784],[125,203,75,-7.204227824412562],[125,203,76,-7.185884203146689],[125,203,77,-7.180149492666169],[125,203,78,-7.162481534707657],[125,203,79,-7.124059547793359],[125,204,64,-7.126989258400354],[125,204,65,-7.134038881046599],[125,204,66,-7.121850197012928],[125,204,67,-7.100267067336473],[125,204,68,-7.083939971812128],[125,204,69,-7.081791829848385],[125,204,70,-7.094661666929523],[125,204,71,-7.130236885022521],[125,204,72,-7.178197924470307],[125,204,73,-7.217962255776235],[125,204,74,-7.232593371801677],[125,204,75,-7.229971531708004],[125,204,76,-7.209453045390138],[125,204,77,-7.212148374143033],[125,204,78,-7.198137281556276],[125,204,79,-7.16036221847824],[125,205,64,-7.187918653087356],[125,205,65,-7.196392760304228],[125,205,66,-7.182767634698862],[125,205,67,-7.160420449898731],[125,205,68,-7.143545601245343],[125,205,69,-7.14238420439844],[125,205,70,-7.154667256378241],[125,205,71,-7.182366329902498],[125,205,72,-7.226891858683523],[125,205,73,-7.262121589779029],[125,205,74,-7.271998492911184],[125,205,75,-7.2709437686947265],[125,205,76,-7.250883974088747],[125,205,77,-7.246689909852421],[125,205,78,-7.245166768580898],[125,205,79,-7.216955686210739],[125,206,64,-7.239284883848908],[125,206,65,-7.248600084121719],[125,206,66,-7.235813561018935],[125,206,67,-7.213948609116084],[125,206,68,-7.195769019432682],[125,206,69,-7.189879329689656],[125,206,70,-7.2039248061393115],[125,206,71,-7.2311572178111065],[125,206,72,-7.275767158571889],[125,206,73,-7.3112959478315585],[125,206,74,-7.32167619182253],[125,206,75,-7.320847136796745],[125,206,76,-7.2995664919227226],[125,206,77,-7.298686618536338],[125,206,78,-7.298658941654236],[125,206,79,-7.270092901354651],[125,207,64,-7.290925092284225],[125,207,65,-7.2996377459422055],[125,207,66,-7.28852514902734],[125,207,67,-7.268283111778855],[125,207,68,-7.247416185592844],[125,207,69,-7.243326315140422],[125,207,70,-7.256781202815956],[125,207,71,-7.2834287670995765],[125,207,72,-7.32909076450323],[125,207,73,-7.363300223158895],[125,207,74,-7.371170003470306],[125,207,75,-7.369004843244637],[125,207,76,-7.35121979912609],[125,207,77,-7.342870550790054],[125,207,78,-7.340514567891705],[125,207,79,-7.309610156685788],[125,208,64,-7.341391083066339],[125,208,65,-7.348846374981858],[125,208,66,-7.337139598769293],[125,208,67,-7.321229403351125],[125,208,68,-7.3004179172101065],[125,208,69,-7.296322787350252],[125,208,70,-7.312395461643966],[125,208,71,-7.333893349688802],[125,208,72,-7.37795903915554],[125,208,73,-7.412964498030655],[125,208,74,-7.422557330813883],[125,208,75,-7.4193635043080315],[125,208,76,-7.404140365309464],[125,208,77,-7.410789459405432],[125,208,78,-7.397396547218509],[125,208,79,-7.360863864517871],[125,209,64,-7.390811527143891],[125,209,65,-7.397453985296244],[125,209,66,-7.38906465668139],[125,209,67,-7.372811177622992],[125,209,68,-7.352690197081843],[125,209,69,-7.350548683811948],[125,209,70,-7.365951995779369],[125,209,71,-7.384986935553701],[125,209,72,-7.429844329194806],[125,209,73,-7.464576081258858],[125,209,74,-7.4735813241773235],[125,209,75,-7.471727392609774],[125,209,76,-7.4550987366110615],[125,209,77,-7.467920540569824],[125,209,78,-7.444051505632077],[125,209,79,-7.411187245259993],[125,210,64,-7.442391531040246],[125,210,65,-7.449222299201201],[125,210,66,-7.442598050204821],[125,210,67,-7.430184990679685],[125,210,68,-7.410684969284813],[125,210,69,-7.407541987064553],[125,210,70,-7.420340364859251],[125,210,71,-7.441261681528569],[125,210,72,-7.486535322949911],[125,210,73,-7.5210334374341015],[125,210,74,-7.530464353132218],[125,210,75,-7.52937628636245],[125,210,76,-7.5114727043485585],[125,210,77,-7.525287220799742],[125,210,78,-7.499307776418551],[125,210,79,-7.473076038633268],[125,211,64,-7.486883649617034],[125,211,65,-7.497129466452793],[125,211,66,-7.493804470933725],[125,211,67,-7.481316767719758],[125,211,68,-7.462948971239347],[125,211,69,-7.457730378144418],[125,211,70,-7.4705396014631305],[125,211,71,-7.492505218584979],[125,211,72,-7.5384034149647965],[125,211,73,-7.573795680437003],[125,211,74,-7.582034519574741],[125,211,75,-7.584169664329258],[125,211,76,-7.563250594346184],[125,211,77,-7.58768183925482],[125,211,78,-7.560818407342488],[125,211,79,-7.5345983133542695],[125,212,64,-7.534127949775677],[125,212,65,-7.547033588752348],[125,212,66,-7.544520267728373],[125,212,67,-7.536007402995075],[125,212,68,-7.51995348432354],[125,212,69,-7.515818815354744],[125,212,70,-7.5297719710903195],[125,212,71,-7.55445565761439],[125,212,72,-7.597596055045426],[125,212,73,-7.634617486161897],[125,212,74,-7.643925343408621],[125,212,75,-7.642144589681276],[125,212,76,-7.622418135266485],[125,212,77,-7.640792466507095],[125,212,78,-7.618971784946333],[125,212,79,-7.584703632292348],[125,213,64,-7.5763004374696274],[125,213,65,-7.595072803677211],[125,213,66,-7.596720321691503],[125,213,67,-7.5883998219484186],[125,213,68,-7.57652612246469],[125,213,69,-7.574773489880989],[125,213,70,-7.587624854420991],[125,213,71,-7.6131547426990736],[125,213,72,-7.651936197441668],[125,213,73,-7.68677615976125],[125,213,74,-7.699234316076694],[125,213,75,-7.694762554347772],[125,213,76,-7.713322403903031],[125,213,77,-7.736074325723529],[125,213,78,-7.720975260112123],[125,213,79,-7.675485913831573],[125,214,64,-7.627634437612805],[125,214,65,-7.646271974858079],[125,214,66,-7.647710928728541],[125,214,67,-7.6371093159151755],[125,214,68,-7.6273342465205936],[125,214,69,-7.627429459779431],[125,214,70,-7.64070417872011],[125,214,71,-7.6654089340024605],[125,214,72,-7.702316205119789],[125,214,73,-7.737033031048727],[125,214,74,-7.750870784836541],[125,214,75,-7.747510430578969],[125,214,76,-7.762869017646577],[125,214,77,-7.78659244737568],[125,214,78,-7.77990804475689],[125,214,79,-7.724396113249546],[125,215,64,-7.682819147686308],[125,215,65,-7.70034489954128],[125,215,66,-7.699532371473933],[125,215,67,-7.690700245916306],[125,215,68,-7.677764608438762],[125,215,69,-7.681135076700281],[125,215,70,-7.695195939212599],[125,215,71,-7.718812808291952],[125,215,72,-7.75513801161407],[125,215,73,-7.787215761225426],[125,215,74,-7.801751748933598],[125,215,75,-7.798834774276675],[125,215,76,-7.804233376267168],[125,215,77,-7.8321618091761565],[125,215,78,-7.8284568952969815],[125,215,79,-7.771867119819448],[125,216,64,-7.735962563175094],[125,216,65,-7.75001310307666],[125,216,66,-7.7522509250395295],[125,216,67,-7.7414273987914415],[125,216,68,-7.726705927218918],[125,216,69,-7.730171065548163],[125,216,70,-7.747060951600684],[125,216,71,-7.767960031895529],[125,216,72,-7.806164350666835],[125,216,73,-7.839939013671917],[125,216,74,-7.850894163446899],[125,216,75,-7.8487974180800135],[125,216,76,-7.84277691942028],[125,216,77,-7.884396909503281],[125,216,78,-7.876852340517078],[125,216,79,-7.822069516323328],[125,217,64,-7.793522553089912],[125,217,65,-7.8030877645634495],[125,217,66,-7.797210377543799],[125,217,67,-7.7811214181876105],[125,217,68,-7.76462647555686],[125,217,69,-7.767775473845376],[125,217,70,-7.786792473900983],[125,217,71,-7.813985596055056],[125,217,72,-7.855896214426694],[125,217,73,-7.892180258577279],[125,217,74,-7.904134968063343],[125,217,75,-7.900475261709692],[125,217,76,-7.895266113459796],[125,217,77,-7.933231058090226],[125,217,78,-7.924708873303629],[125,217,79,-7.869714629025459],[125,218,64,-7.847626195121342],[125,218,65,-7.857104534793787],[125,218,66,-7.850170995141642],[125,218,67,-7.836212168538557],[125,218,68,-7.819798919094523],[125,218,69,-7.821154193149617],[125,218,70,-7.840623665228705],[125,218,71,-7.868758950671185],[125,218,72,-7.9106345870984915],[125,218,73,-7.9468682815382],[125,218,74,-7.959950947558102],[125,218,75,-7.95608620297995],[125,218,76,-7.9445790037466155],[125,218,77,-7.975881040663127],[125,218,78,-7.9779067596648074],[125,218,79,-7.922515105464199],[125,219,64,-7.895422142606428],[125,219,65,-7.905594416493218],[125,219,66,-7.898105497001211],[125,219,67,-7.884374086397343],[125,219,68,-7.870479878877663],[125,219,69,-7.870074065772896],[125,219,70,-7.887421872539752],[125,219,71,-7.9173313646120045],[125,219,72,-7.960828402115093],[125,219,73,-7.998841994079428],[125,219,74,-8.01083186727154],[125,219,75,-8.007353607911252],[125,219,76,-7.993232508828345],[125,219,77,-8.026724591685989],[125,219,78,-8.035065923748999],[125,219,79,-7.977284776394061],[125,220,64,-7.935870230888786],[125,220,65,-7.945833747497402],[125,220,66,-7.936631814102912],[125,220,67,-7.92144576736595],[125,220,68,-7.9070430377175756],[125,220,69,-7.903775645625164],[125,220,70,-7.9184204779852205],[125,220,71,-7.948155269214191],[125,220,72,-7.99225571124963],[125,220,73,-8.030735897061918],[125,220,74,-8.044665114690588],[125,220,75,-8.043490514062944],[125,220,76,-8.033621630793357],[125,220,77,-8.078812776902298],[125,220,78,-8.08517713642261],[125,220,79,-8.026811123645484],[125,221,64,-7.988506848569389],[125,221,65,-7.997229519815139],[125,221,66,-7.989217589884236],[125,221,67,-7.9744622496767095],[125,221,68,-7.956836729411233],[125,221,69,-7.952665416831624],[125,221,70,-7.96683238469845],[125,221,71,-7.99660934955199],[125,221,72,-8.040745226886862],[125,221,73,-8.081751906407217],[125,221,74,-8.095467646540241],[125,221,75,-8.095089083662687],[125,221,76,-8.123967582721844],[125,221,77,-8.175821216011618],[125,221,78,-8.134356801860214],[125,221,79,-8.075841463281197],[125,222,64,-8.040916146470499],[125,222,65,-8.04919380164485],[125,222,66,-8.04041321159776],[125,222,67,-8.025692496545116],[125,222,68,-8.008441679002415],[125,222,69,-8.003549795419413],[125,222,70,-8.01718458273157],[125,222,71,-8.042484710592811],[125,222,72,-8.088716358557305],[125,222,73,-8.131987967291714],[125,222,74,-8.144250821350248],[125,222,75,-8.144051382853927],[125,222,76,-8.183434176991973],[125,222,77,-8.224261819335709],[125,222,78,-8.172653978203408],[125,222,79,-8.118198607103642],[125,223,64,-8.09753033891363],[125,223,65,-8.106233373994932],[125,223,66,-8.094271621418654],[125,223,67,-8.079508671920504],[125,223,68,-8.062941415411858],[125,223,69,-8.058534657707117],[125,223,70,-8.072426734630223],[125,223,71,-8.09647670144454],[125,223,72,-8.13892062911869],[125,223,73,-8.182719074320161],[125,223,74,-8.195906957513673],[125,223,75,-8.21259450737274],[125,223,76,-8.254450418564595],[125,223,77,-8.268386057062827],[125,223,78,-8.216944273577734],[125,223,79,-8.16292734707249],[125,224,64,-8.147635714637902],[125,224,65,-8.15826603211839],[125,224,66,-8.145730980079701],[125,224,67,-8.12596974816389],[125,224,68,-8.112952344398797],[125,224,69,-8.109855664909645],[125,224,70,-8.121365189793254],[125,224,71,-8.144857589969568],[125,224,72,-8.18886906129459],[125,224,73,-8.233737785876981],[125,224,74,-8.244489443701047],[125,224,75,-8.271988921284754],[125,224,76,-8.309096437302692],[125,224,77,-8.316505288091413],[125,224,78,-8.2660696604874],[125,224,79,-8.212674829067788],[125,225,64,-8.201947569392209],[125,225,65,-8.208913893667749],[125,225,66,-8.195212563502372],[125,225,67,-8.169098214609448],[125,225,68,-8.15340118407345],[125,225,69,-8.15183066944306],[125,225,70,-8.162318085007424],[125,225,71,-8.185069745211399],[125,225,72,-8.22815648866383],[125,225,73,-8.271490167660618],[125,225,74,-8.284889701159846],[125,225,75,-8.318731692387233],[125,225,76,-8.357864120164496],[125,225,77,-8.366808392711611],[125,225,78,-8.31750176164646],[125,225,79,-8.260874355844635],[125,226,64,-8.256095946741285],[125,226,65,-8.264005903480943],[125,226,66,-8.250956257643528],[125,226,67,-8.223052026902185],[125,226,68,-8.203647297278437],[125,226,69,-8.204466202046367],[125,226,70,-8.21619164518819],[125,226,71,-8.237474585111142],[125,226,72,-8.282263384970076],[125,226,73,-8.324335299957305],[125,226,74,-8.337197616884163],[125,226,75,-8.360617891142532],[125,226,76,-8.403360081529184],[125,226,77,-8.413672704354665],[125,226,78,-8.36564997425658],[125,226,79,-8.309082839915366],[125,227,64,-8.305781315206188],[125,227,65,-8.314991872959341],[125,227,66,-8.299727274225432],[125,227,67,-8.271907300545488],[125,227,68,-8.252863082121126],[125,227,69,-8.252339618137068],[125,227,70,-8.26282134937915],[125,227,71,-8.286488006434952],[125,227,72,-8.330388020009275],[125,227,73,-8.372639888421611],[125,227,74,-8.387183236310307],[125,227,75,-8.413617138696475],[125,227,76,-8.469274564168565],[125,227,77,-8.47693298262159],[125,227,78,-8.421870332082854],[125,227,79,-8.366201348737448],[125,228,64,-8.346104622469124],[125,228,65,-8.357731364160204],[125,228,66,-8.341083671869118],[125,228,67,-8.313432280783195],[125,228,68,-8.294568945450159],[125,228,69,-8.289642111291064],[125,228,70,-8.298461483234744],[125,228,71,-8.32354914802695],[125,228,72,-8.369436897513493],[125,228,73,-8.412119213350374],[125,228,74,-8.42767020531402],[125,228,75,-8.46086042011594],[125,228,76,-8.518230174179157],[125,228,77,-8.526161147337316],[125,228,78,-8.475186158985675],[125,228,79,-8.41977168379554],[125,229,64,-8.387680971033978],[125,229,65,-8.403268939686654],[125,229,66,-8.395282034646378],[125,229,67,-8.375557791196394],[125,229,68,-8.357443512625599],[125,229,69,-8.348925833232581],[125,229,70,-8.358263373831695],[125,229,71,-8.382994480053904],[125,229,72,-8.431148997384067],[125,229,73,-8.474830777543925],[125,229,74,-8.488942560792621],[125,229,75,-8.560283028004429],[125,229,76,-8.604941097247224],[125,229,77,-8.577511706293869],[125,229,78,-8.530043973025279],[125,229,79,-8.47524052193244],[125,230,64,-8.436745767207338],[125,230,65,-8.452120676899467],[125,230,66,-8.446010830913469],[125,230,67,-8.426517970383273],[125,230,68,-8.408520433489143],[125,230,69,-8.398327385927685],[125,230,70,-8.408285616039382],[125,230,71,-8.433901545951253],[125,230,72,-8.483915765162163],[125,230,73,-8.524950800805076],[125,230,74,-8.539820980541554],[125,230,75,-8.607162946110904],[125,230,76,-8.655880441139944],[125,230,77,-8.622575468115308],[125,230,78,-8.577354967396484],[125,230,79,-8.523332312915912],[125,231,64,-8.494712131271411],[125,231,65,-8.507361665193748],[125,231,66,-8.501859679445516],[125,231,67,-8.48107585038302],[125,231,68,-8.461457761683645],[125,231,69,-8.452330020975843],[125,231,70,-8.462143827746837],[125,231,71,-8.488168655950362],[125,231,72,-8.53759436211597],[125,231,73,-8.577181809515958],[125,231,74,-8.590504149276585],[125,231,75,-8.648309101915663],[125,231,76,-8.708618814084138],[125,231,77,-8.670457038399563],[125,231,78,-8.623984995391364],[125,231,79,-8.572247668356447],[125,232,64,-8.544294098988368],[125,232,65,-8.556657506482935],[125,232,66,-8.549367817430221],[125,232,67,-8.5291715233458],[125,232,68,-8.5081074380607],[125,232,69,-8.501589617276395],[125,232,70,-8.511425188637517],[125,232,71,-8.538505211990577],[125,232,72,-8.587230424524334],[125,232,73,-8.625704068817061],[125,232,74,-8.637318921500443],[125,232,75,-8.699570137196961],[125,232,76,-8.7615473895565],[125,232,77,-8.72264948840558],[125,232,78,-8.675349333797818],[125,232,79,-8.625173518350426],[125,233,64,-8.594734445733957],[125,233,65,-8.608055711908522],[125,233,66,-8.598362693567779],[125,233,67,-8.573856258053292],[125,233,68,-8.555175533597376],[125,233,69,-8.54975041132268],[125,233,70,-8.559108541728346],[125,233,71,-8.587926312897157],[125,233,72,-8.635646537197365],[125,233,73,-8.674748620276313],[125,233,74,-8.685157002814215],[125,233,75,-8.750676804257402],[125,233,76,-8.814768508035812],[125,233,77,-8.775864817072987],[125,233,78,-8.729829038913936],[125,233,79,-8.680633729554824],[125,234,64,-8.648974187756977],[125,234,65,-8.665113398008334],[125,234,66,-8.651179129322053],[125,234,67,-8.623389883667784],[125,234,68,-8.605292014662869],[125,234,69,-8.599092800761511],[125,234,70,-8.611712883347899],[125,234,71,-8.636551801572505],[125,234,72,-8.686809531195236],[125,234,73,-8.724856843043762],[125,234,74,-8.736080776095225],[125,234,75,-8.789634755631047],[125,234,76,-8.870608104415716],[125,234,77,-8.838009714403052],[125,234,78,-8.78832936956747],[125,234,79,-8.738364290268905],[125,235,64,-8.695801369282636],[125,235,65,-8.714096969138696],[125,235,66,-8.69958276062101],[125,235,67,-8.671094511944633],[125,235,68,-8.65379578132248],[125,235,69,-8.649010853592658],[125,235,70,-8.659382590159998],[125,235,71,-8.681201056605815],[125,235,72,-8.731175168716051],[125,235,73,-8.77006648196285],[125,235,74,-8.783630219699685],[125,235,75,-8.807923624701337],[125,235,76,-8.886831061539688],[125,235,77,-8.895229438116145],[125,235,78,-8.843073607634791],[125,235,79,-8.794510202064341],[125,236,64,-8.738677636588513],[125,236,65,-8.760352123626843],[125,236,66,-8.752110612760589],[125,236,67,-8.72872704755106],[125,236,68,-8.715756281311565],[125,236,69,-8.715085075130437],[125,236,70,-8.729122548657894],[125,236,71,-8.751888545949289],[125,236,72,-8.801586848155212],[125,236,73,-8.84116029621557],[125,236,74,-8.855036623015007],[125,236,75,-8.872710658609064],[125,236,76,-8.938354004179292],[125,236,77,-8.951719930429261],[125,236,78,-8.90274174528163],[125,236,79,-8.851649702302042],[125,237,64,-8.793788436359403],[125,237,65,-8.809796587676578],[125,237,66,-8.795782803426814],[125,237,67,-8.77030438023924],[125,237,68,-8.753955496994214],[125,237,69,-8.756214982586945],[125,237,70,-8.767009364489008],[125,237,71,-8.791704527294367],[125,237,72,-8.83912121670538],[125,237,73,-8.881775559767283],[125,237,74,-8.89496474715205],[125,237,75,-8.946637818970762],[125,237,76,-9.005889196621322],[125,237,77,-9.002677356014406],[125,237,78,-8.954977805789568],[125,237,79,-8.902326349387057],[125,238,64,-8.843451708566233],[125,238,65,-8.85767555109015],[125,238,66,-8.84373407382149],[125,238,67,-8.82056948074447],[125,238,68,-8.802624263183978],[125,238,69,-8.80506300249193],[125,238,70,-8.816972013005758],[125,238,71,-8.840579634429247],[125,238,72,-8.890782368854603],[125,238,73,-8.93339816696747],[125,238,74,-8.945192463899309],[125,238,75,-8.969433689534842],[125,238,76,-9.02111454104365],[125,238,77,-9.048434562127234],[125,238,78,-9.002816366388297],[125,238,79,-8.95013855428691],[125,239,64,-8.897001935351565],[125,239,65,-8.912428022894376],[125,239,66,-8.899218866617122],[125,239,67,-8.873124999655685],[125,239,68,-8.855913320097475],[125,239,69,-8.858169961987084],[125,239,70,-8.870168974761183],[125,239,71,-8.893910900948145],[125,239,72,-8.94284164625515],[125,239,73,-8.985224877153609],[125,239,74,-8.995517914601695],[125,239,75,-9.006363383959393],[125,239,76,-9.052798024092029],[125,239,77,-9.092931311351569],[125,239,78,-9.047446723741444],[125,239,79,-8.994521421341078],[125,240,64,-8.942554030812804],[125,240,65,-8.95791904383662],[125,240,66,-8.946244059523455],[125,240,67,-8.920723608492132],[125,240,68,-8.904074603848136],[125,240,69,-8.909212762021317],[125,240,70,-8.922674928951375],[125,240,71,-8.944141008113304],[125,240,72,-8.992800977702352],[125,240,73,-9.033705699859631],[125,240,74,-9.046467558224723],[125,240,75,-9.05718286723532],[125,240,76,-9.09795364877828],[125,240,77,-9.133620432515404],[125,240,78,-9.0935286339394],[125,240,79,-9.04181969877721],[125,241,64,-8.983437569790045],[125,241,65,-9.002151029369232],[125,241,66,-8.996477075297957],[125,241,67,-8.977482175234277],[125,241,68,-8.9620388109547],[125,241,69,-8.966968610509245],[125,241,70,-8.979102854890284],[125,241,71,-9.001155734038106],[125,241,72,-9.047606403718527],[125,241,73,-9.090858911863519],[125,241,74,-9.103109427220542],[125,241,75,-9.101555008308676],[125,241,76,-9.075782265646117],[125,241,77,-9.034968272582471],[125,241,78,-8.990076117677813],[125,241,79,-9.006768491381099],[125,242,64,-9.034493903389373],[125,242,65,-9.054292185230498],[125,242,66,-9.046087318777854],[125,242,67,-9.028670601298753],[125,242,68,-9.014732826746071],[125,242,69,-9.018805376998698],[125,242,70,-9.03009255708982],[125,242,71,-9.052775733846534],[125,242,72,-9.097982239861532],[125,242,73,-9.142173917899557],[125,242,74,-9.154157615581674],[125,242,75,-9.155681008447427],[125,242,76,-9.13016608465614],[125,242,77,-9.087388276312673],[125,242,78,-9.031849841090498],[125,242,79,-9.054298299433924],[125,243,64,-9.082431703798992],[125,243,65,-9.103255599239716],[125,243,66,-9.097695408234808],[125,243,67,-9.07656414168717],[125,243,68,-9.064508247808508],[125,243,69,-9.062700587702642],[125,243,70,-9.076318921944686],[125,243,71,-9.099819555683661],[125,243,72,-9.146910006478533],[125,243,73,-9.18766108984012],[125,243,74,-9.205392657169957],[125,243,75,-9.201403187881649],[125,243,76,-9.177639190060829],[125,243,77,-9.134971737516917],[125,243,78,-9.078486141813018],[125,243,79,-9.099466612806431],[125,244,64,-9.119545596908681],[125,244,65,-9.131880965570645],[125,244,66,-9.11853350200225],[125,244,67,-9.089032309793902],[125,244,68,-9.068972836726326],[125,244,69,-9.06042010910985],[125,244,70,-9.067772991941414],[125,244,71,-9.088785323874792],[125,244,72,-9.134442295766108],[125,244,73,-9.174341237474865],[125,244,74,-9.19371865677082],[125,244,75,-9.188831247064039],[125,244,76,-9.164298882441797],[125,244,77,-9.122751180207365],[125,244,78,-9.066105869550109],[125,244,79,-9.104272727694415],[125,245,64,-9.16803333666307],[125,245,65,-9.181019554059533],[125,245,66,-9.165030272163605],[125,245,67,-9.135515744566781],[125,245,68,-9.119405914056966],[125,245,69,-9.108420781954592],[125,245,70,-9.114020293913116],[125,245,71,-9.134997268240229],[125,245,72,-9.180868129355346],[125,245,73,-9.224328744759115],[125,245,74,-9.241487660653357],[125,245,75,-9.23763944364559],[125,245,76,-9.212648739629133],[125,245,77,-9.168825492408486],[125,245,78,-9.114303624190413],[125,245,79,-9.140282405052112],[125,246,64,-9.219962277003722],[125,246,65,-9.226621773619282],[125,246,66,-9.210641619219178],[125,246,67,-9.182413291418422],[125,246,68,-9.16576831450657],[125,246,69,-9.15796986078747],[125,246,70,-9.160240418053336],[125,246,71,-9.1831745692578],[125,246,72,-9.224926163805453],[125,246,73,-9.271781831012417],[125,246,74,-9.290628779566077],[125,246,75,-9.286432330749518],[125,246,76,-9.260875196879748],[125,246,77,-9.216255949931142],[125,246,78,-9.161860978986127],[125,246,79,-9.161886591923473],[125,247,64,-9.273335175359072],[125,247,65,-9.276870037323416],[125,247,66,-9.26089031388025],[125,247,67,-9.233477141422867],[125,247,68,-9.215608228579182],[125,247,69,-9.208646104875795],[125,247,70,-9.209925347269976],[125,247,71,-9.232397666236789],[125,247,72,-9.272101191331409],[125,247,73,-9.320251753121765],[125,247,74,-9.337399816226656],[125,247,75,-9.332455070970836],[125,247,76,-9.30495592313544],[125,247,77,-9.261189636916923],[125,247,78,-9.208685762134419],[125,247,79,-9.189279290244361],[125,248,64,-9.317527623630951],[125,248,65,-9.320881735472232],[125,248,66,-9.302066196493302],[125,248,67,-9.275894847294111],[125,248,68,-9.257940507825566],[125,248,69,-9.253424408623962],[125,248,70,-9.257250016517638],[125,248,71,-9.278978540965266],[125,248,72,-9.320109099082423],[125,248,73,-9.364388198571408],[125,248,74,-9.383630319457083],[125,248,75,-9.379433753889396],[125,248,76,-9.352719518238041],[125,248,77,-9.307777417828904],[125,248,78,-9.254681929039682],[125,248,79,-9.232772970129975],[125,249,64,-9.371478224795146],[125,249,65,-9.377219001804946],[125,249,66,-9.35204742843704],[125,249,67,-9.324682448017667],[125,249,68,-9.308542314781617],[125,249,69,-9.303498410163623],[125,249,70,-9.308343260494038],[125,249,71,-9.32273616588879],[125,249,72,-9.361776830663322],[125,249,73,-9.403572924180663],[125,249,74,-9.42144065366609],[125,249,75,-9.416053759095151],[125,249,76,-9.390519418184446],[125,249,77,-9.350014257678149],[125,249,78,-9.299895729550066],[125,249,79,-9.329187014134945],[125,250,64,-9.420552245387274],[125,250,65,-9.42768724074734],[125,250,66,-9.42138235015823],[125,250,67,-9.429766655161611],[125,250,68,-9.405143161050214],[125,250,69,-9.404677833307048],[125,250,70,-9.384449428321373],[125,250,71,-9.374014834750977],[125,250,72,-9.422347937489812],[125,250,73,-9.460423157755804],[125,250,74,-9.55571194846971],[125,250,75,-9.5573849819731],[125,250,76,-9.497339467310475],[125,250,77,-9.44238242067281],[125,250,78,-9.389107249996869],[125,250,79,-9.337022216378402],[125,251,64,-9.466801342984096],[125,251,65,-9.47654341191083],[125,251,66,-9.47503663833572],[125,251,67,-9.488697393632078],[125,251,68,-9.477895694463871],[125,251,69,-9.47071127720736],[125,251,70,-9.452294169987377],[125,251,71,-9.430872533011028],[125,251,72,-9.475065460149835],[125,251,73,-9.511936372024852],[125,251,74,-9.604136531140462],[125,251,75,-9.601412802518873],[125,251,76,-9.535534328911321],[125,251,77,-9.483935317772975],[125,251,78,-9.438971652093167],[125,251,79,-9.380322108745455],[125,252,64,-9.514094750830157],[125,252,65,-9.51773444026589],[125,252,66,-9.518535659409313],[125,252,67,-9.539510266644873],[125,252,68,-9.534034021609504],[125,252,69,-9.514550436640265],[125,252,70,-9.507634273765323],[125,252,71,-9.496366282726644],[125,252,72,-9.531180968797411],[125,252,73,-9.584906483087384],[125,252,74,-9.652319420105693],[125,252,75,-9.647963197763875],[125,252,76,-9.592805000987079],[125,252,77,-9.555505065155804],[125,252,78,-9.50097769321476],[125,252,79,-9.43813796066431],[125,253,64,-9.559139970694757],[125,253,65,-9.560265846911955],[125,253,66,-9.539466543373544],[125,253,67,-9.546605173686649],[125,253,68,-9.531064111952563],[125,253,69,-9.524118947580632],[125,253,70,-9.55487378586183],[125,253,71,-9.579216114134299],[125,253,72,-9.614635014070704],[125,253,73,-9.662212586412698],[125,253,74,-9.68639905185013],[125,253,75,-9.6768095885687],[125,253,76,-9.633697506600573],[125,253,77,-9.620020635316337],[125,253,78,-9.594495297536053],[125,253,79,-9.553959283161282],[125,254,64,-9.516353083760126],[125,254,65,-9.531186695266403],[125,254,66,-9.508946065222018],[125,254,67,-9.534027565956123],[125,254,68,-9.532463690921926],[125,254,69,-9.541401793163523],[125,254,70,-9.586007395617125],[125,254,71,-9.614826360849138],[125,254,72,-9.655041594826757],[125,254,73,-9.709259427564254],[125,254,74,-9.727356344131188],[125,254,75,-9.725920667002418],[125,254,76,-9.694980533730805],[125,254,77,-9.682151924661536],[125,254,78,-9.6643942987464],[125,254,79,-9.634677355912574],[125,255,64,-9.562535982400723],[125,255,65,-9.56718494343406],[125,255,66,-9.554381912382016],[125,255,67,-9.55774199264345],[125,255,68,-9.569084031386174],[125,255,69,-9.57798122285257],[125,255,70,-9.629800488645294],[125,255,71,-9.65952456880736],[125,255,72,-9.69272847198921],[125,255,73,-9.753936430959392],[125,255,74,-9.772501217017986],[125,255,75,-9.771413047715257],[125,255,76,-9.740352175795184],[125,255,77,-9.72824957620694],[125,255,78,-9.710915359683016],[125,255,79,-9.689600578377831],[125,256,64,-9.605792095230571],[125,256,65,-9.613982378010718],[125,256,66,-9.601640851844664],[125,256,67,-9.592114995710745],[125,256,68,-9.613103927964682],[125,256,69,-9.619924902035487],[125,256,70,-9.685212095131865],[125,256,71,-9.72075592289161],[125,256,72,-9.744859384131907],[125,256,73,-9.802646907733314],[125,256,74,-9.828155141245634],[125,256,75,-9.818059712928392],[125,256,76,-9.791250785474666],[125,256,77,-9.771850960958586],[125,256,78,-9.76683547858883],[125,256,79,-9.745361543587524],[125,257,64,-9.65148636018886],[125,257,65,-9.661516426888928],[125,257,66,-9.649959607593342],[125,257,67,-9.644360772741244],[125,257,68,-9.653787692304446],[125,257,69,-9.675600443538503],[125,257,70,-9.745982809927723],[125,257,71,-9.793101511651225],[125,257,72,-9.824072182315355],[125,257,73,-9.881321061978982],[125,257,74,-9.901364799215441],[125,257,75,-9.889942546072342],[125,257,76,-9.875898432775493],[125,257,77,-9.852266830835198],[125,257,78,-9.858814607191468],[125,257,79,-9.84608282460172],[125,258,64,-9.704960904230779],[125,258,65,-9.71449515563211],[125,258,66,-9.70474272624423],[125,258,67,-9.686457989502232],[125,258,68,-9.670165106219745],[125,258,69,-9.687329886312957],[125,258,70,-9.751357876397407],[125,258,71,-9.806872230863727],[125,258,72,-9.860890863897879],[125,258,73,-9.915184138785476],[125,258,74,-9.929346085406756],[125,258,75,-9.93198750876557],[125,258,76,-9.918599952433462],[125,258,77,-9.898811370980882],[125,258,78,-9.911725055605187],[125,258,79,-9.908039252883789],[125,259,64,-9.752007179946885],[125,259,65,-9.764201194543304],[125,259,66,-9.753556873707316],[125,259,67,-9.73612317435939],[125,259,68,-9.729345651758308],[125,259,69,-9.777796446192815],[125,259,70,-9.817576280451338],[125,259,71,-9.878072052765258],[125,259,72,-9.928887817364496],[125,259,73,-9.962011994354096],[125,259,74,-9.967764841490146],[125,259,75,-9.965237793230855],[125,259,76,-9.938863797815374],[125,259,77,-9.922453362907145],[125,259,78,-9.942608973045871],[125,259,79,-9.944977938836843],[125,260,64,-9.932635608623709],[125,260,65,-9.948414000708368],[125,260,66,-9.942007374670606],[125,260,67,-9.924941590582465],[125,260,68,-9.923775670002042],[125,260,69,-9.946397097929436],[125,260,70,-9.971981965425151],[125,260,71,-10.01420643209381],[125,260,72,-10.073678884374415],[125,260,73,-10.119617657414587],[125,260,74,-10.141999688592655],[125,260,75,-10.141463192732113],[125,260,76,-10.121801927745068],[125,260,77,-10.092480126485066],[125,260,78,-10.059526574328132],[125,260,79,-10.018871953169818],[125,261,64,-9.9819363399737],[125,261,65,-10.000194656035283],[125,261,66,-9.991311642327435],[125,261,67,-9.991237312925287],[125,261,68,-9.995602792551757],[125,261,69,-10.017197858325385],[125,261,70,-10.031806901816896],[125,261,71,-10.0659513814488],[125,261,72,-10.126683681927313],[125,261,73,-10.173593448021652],[125,261,74,-10.198028696708237],[125,261,75,-10.19649029566254],[125,261,76,-10.176386552214932],[125,261,77,-10.143983500948769],[125,261,78,-10.10890982332533],[125,261,79,-10.068537314987157],[125,262,64,-10.036655373526028],[125,262,65,-10.053018086420881],[125,262,66,-10.044317436864414],[125,262,67,-10.050582759914858],[125,262,68,-10.059043564376054],[125,262,69,-10.09593311105695],[125,262,70,-10.11388969269418],[125,262,71,-10.146504514944654],[125,262,72,-10.201611915458264],[125,262,73,-10.24247107809581],[125,262,74,-10.269070953334852],[125,262,75,-10.260578663630953],[125,262,76,-10.237555829297385],[125,262,77,-10.207357707634182],[125,262,78,-10.179192290517243],[125,262,79,-10.145938500193834],[125,263,64,-10.081656967268255],[125,263,65,-10.098324331632746],[125,263,66,-10.089258260748938],[125,263,67,-10.094841217945941],[125,263,68,-10.098292292411443],[125,263,69,-10.137396196929423],[125,263,70,-10.165048959596712],[125,263,71,-10.191480753800244],[125,263,72,-10.243631535478402],[125,263,73,-10.284847375328118],[125,263,74,-10.320045084956893],[125,263,75,-10.311497446043573],[125,263,76,-10.291177988101285],[125,263,77,-10.258706856776387],[125,263,78,-10.227263447629936],[125,263,79,-10.1904105323607],[125,264,64,-10.12473662620562],[125,264,65,-10.145137749685999],[125,264,66,-10.136737799714414],[125,264,67,-10.140511527865677],[125,264,68,-10.13935948577025],[125,264,69,-10.179355366020477],[125,264,70,-10.222689587126407],[125,264,71,-10.240684685235328],[125,264,72,-10.287445673047609],[125,264,73,-10.333109106125375],[125,264,74,-10.37086662454796],[125,264,75,-10.364469992607289],[125,264,76,-10.344866771963396],[125,264,77,-10.311230650908254],[125,264,78,-10.278816778422344],[125,264,79,-10.239353167009966],[125,265,64,-10.167944844954835],[125,265,65,-10.190823528807169],[125,265,66,-10.18572719441153],[125,265,67,-10.169389628410007],[125,265,68,-10.15322681500354],[125,265,69,-10.186933841173289],[125,265,70,-10.247490333268235],[125,265,71,-10.28630365744279],[125,265,72,-10.348384597709611],[125,265,73,-10.417167479216383],[125,265,74,-10.46044506290261],[125,265,75,-10.456399751207098],[125,265,76,-10.435436121673925],[125,265,77,-10.40370627305219],[125,265,78,-10.354858655266067],[125,265,79,-10.297309508197483],[125,266,64,-10.220876942110618],[125,266,65,-10.24291675198283],[125,266,66,-10.23817958840124],[125,266,67,-10.221834990123076],[125,266,68,-10.205488353665018],[125,266,69,-10.211120121748639],[125,266,70,-10.262610504221458],[125,266,71,-10.316806704804128],[125,266,72,-10.38268160436516],[125,266,73,-10.454858883438382],[125,266,74,-10.500919254784419],[125,266,75,-10.499370859923328],[125,266,76,-10.474106564556344],[125,266,77,-10.436892829602627],[125,266,78,-10.390696489868377],[125,266,79,-10.334082232888544],[125,267,64,-10.268131340454088],[125,267,65,-10.289876744885863],[125,267,66,-10.286097078037832],[125,267,67,-10.26860122726224],[125,267,68,-10.252582175617345],[125,267,69,-10.259486109534855],[125,267,70,-10.302726480197975],[125,267,71,-10.372927591791825],[125,267,72,-10.439545761274106],[125,267,73,-10.503526084728065],[125,267,74,-10.553774436499308],[125,267,75,-10.551823870577559],[125,267,76,-10.528670570889187],[125,267,77,-10.489874630537273],[125,267,78,-10.442489536254827],[125,267,79,-10.38609083758342],[125,268,64,-10.314899199618473],[125,268,65,-10.336236010027477],[125,268,66,-10.335174132357093],[125,268,67,-10.317940814038176],[125,268,68,-10.305617886801652],[125,268,69,-10.312070530839906],[125,268,70,-10.33608980099215],[125,268,71,-10.410510128899853],[125,268,72,-10.476804740740684],[125,268,73,-10.537974055249174],[125,268,74,-10.582543596685346],[125,268,75,-10.58587432799171],[125,268,76,-10.566989335718905],[125,268,77,-10.53002190196973],[125,268,78,-10.487932431034698],[125,268,79,-10.434986271188627],[125,269,64,-10.361935466571696],[125,269,65,-10.383124985611815],[125,269,66,-10.379275352840258],[125,269,67,-10.363612336891991],[125,269,68,-10.353074524566853],[125,269,69,-10.36017997913453],[125,269,70,-10.384675855041571],[125,269,71,-10.462699030440644],[125,269,72,-10.530371085430284],[125,269,73,-10.588596770503251],[125,269,74,-10.630124085187859],[125,269,75,-10.63615943728909],[125,269,76,-10.617083253711856],[125,269,77,-10.580253367516924],[125,269,78,-10.539667693047104],[125,269,79,-10.48681117830413],[125,270,64,-10.413260696496366],[125,270,65,-10.433949310658763],[125,270,66,-10.42945823017143],[125,270,67,-10.412840659419128],[125,270,68,-10.402249826817917],[125,270,69,-10.413596447942913],[125,270,70,-10.438028522160668],[125,270,71,-10.510851750834993],[125,270,72,-10.576274453420686],[125,270,73,-10.638653009105532],[125,270,74,-10.675230919393032],[125,270,75,-10.686958588326874],[125,270,76,-10.669324959723927],[125,270,77,-10.633207947940086],[125,270,78,-10.593416425990677],[125,270,79,-10.541473355788346],[125,271,64,-10.458857496368276],[125,271,65,-10.48097338972443],[125,271,66,-10.473068520314223],[125,271,67,-10.45641335505398],[125,271,68,-10.44733602506324],[125,271,69,-10.460320903100547],[125,271,70,-10.48523766226842],[125,271,71,-10.559013208838516],[125,271,72,-10.623460975776561],[125,271,73,-10.685118036485948],[125,271,74,-10.72405373107815],[125,271,75,-10.736669598041564],[125,271,76,-10.72106491166922],[125,271,77,-10.681848480208954],[125,271,78,-10.641027806411648],[125,271,79,-10.588180312540313],[125,272,64,-10.504805527062487],[125,272,65,-10.524279120945724],[125,272,66,-10.515775292286438],[125,272,67,-10.501305023132112],[125,272,68,-10.494206513374003],[125,272,69,-10.508404996805542],[125,272,70,-10.533982622108578],[125,272,71,-10.611342252569589],[125,272,72,-10.67442124647684],[125,272,73,-10.733664819931665],[125,272,74,-10.774738604471143],[125,272,75,-10.787799307979974],[125,272,76,-10.773621364610419],[125,272,77,-10.735997931473282],[125,272,78,-10.693700540103668],[125,272,79,-10.638116931333455],[125,273,64,-10.554644251987616],[125,273,65,-10.567698942030114],[125,273,66,-10.556653503078124],[125,273,67,-10.54110886731575],[125,273,68,-10.536149580388873],[125,273,69,-10.548195249202701],[125,273,70,-10.575195551080576],[125,273,71,-10.620674076335957],[125,273,72,-10.68152355049699],[125,273,73,-10.73519936033278],[125,273,74,-10.755742318342667],[125,273,75,-10.758310416015426],[125,273,76,-10.739116541288796],[125,273,77,-10.702256979553935],[125,273,78,-10.652212517046076],[125,273,79,-10.600609259980175],[125,274,64,-10.603584955123564],[125,274,65,-10.617313273225019],[125,274,66,-10.606279598447527],[125,274,67,-10.590842668852458],[125,274,68,-10.588834541419416],[125,274,69,-10.600123686884643],[125,274,70,-10.626313162815292],[125,274,71,-10.66816264142741],[125,274,72,-10.731446253114644],[125,274,73,-10.787350528609446],[125,274,74,-10.80769060145938],[125,274,75,-10.809644873381972],[125,274,76,-10.791157002326656],[125,274,77,-10.750867895723035],[125,274,78,-10.70233162807574],[125,274,79,-10.649698073504133],[125,275,64,-10.648455219423573],[125,275,65,-10.664648834395758],[125,275,66,-10.653004175047096],[125,275,67,-10.640373586770917],[125,275,68,-10.638463828562685],[125,275,69,-10.64988662776797],[125,275,70,-10.675376299326409],[125,275,71,-10.71651654459114],[125,275,72,-10.78339222088525],[125,275,73,-10.839962035010615],[125,275,74,-10.86255145908571],[125,275,75,-10.86173029011301],[125,275,76,-10.84466719755377],[125,275,77,-10.803764307810054],[125,275,78,-10.756640775890329],[125,275,79,-10.704647289441876],[125,276,64,-10.68809639681967],[125,276,65,-10.70876067580545],[125,276,66,-10.698255828579613],[125,276,67,-10.68917339276098],[125,276,68,-10.688664758082357],[125,276,69,-10.700974661504366],[125,276,70,-10.729732806558996],[125,276,71,-10.773176741353682],[125,276,72,-10.839460715940191],[125,276,73,-10.895283913023524],[125,276,74,-10.91709460387702],[125,276,75,-10.917110200717344],[125,276,76,-10.897242526008917],[125,276,77,-10.852682170459907],[125,276,78,-10.80564678739476],[125,276,79,-10.75442399695044],[125,277,64,-10.73038783833535],[125,277,65,-10.75396322902181],[125,277,66,-10.749640457225935],[125,277,67,-10.74357568270758],[125,277,68,-10.74362225723478],[125,277,69,-10.758936913752164],[125,277,70,-10.788461538899435],[125,277,71,-10.834521148353844],[125,277,72,-10.899080096390135],[125,277,73,-10.952808539254688],[125,277,74,-10.97098036454234],[125,277,75,-10.970309343661226],[125,277,76,-10.946204100943543],[125,277,77,-10.901209661550359],[125,277,78,-10.854999468441244],[125,277,79,-10.802257833631648],[125,278,64,-10.78310100321182],[125,278,65,-10.804858156985619],[125,278,66,-10.801831116633313],[125,278,67,-10.794443352791848],[125,278,68,-10.792783632778246],[125,278,69,-10.808191544400586],[125,278,70,-10.837385607815987],[125,278,71,-10.884143998616258],[125,278,72,-10.949626611003755],[125,278,73,-11.004748752665524],[125,278,74,-11.023587688656262],[125,278,75,-11.022070024129786],[125,278,76,-10.998453453244217],[125,278,77,-10.95538424759416],[125,278,78,-10.909168524361975],[125,278,79,-10.85504754944284],[125,279,64,-10.831529979225571],[125,279,65,-10.849414240459614],[125,279,66,-10.848015681186572],[125,279,67,-10.841091550868974],[125,279,68,-10.840144759332349],[125,279,69,-10.853951980624503],[125,279,70,-10.883889819015842],[125,279,71,-10.931622599135101],[125,279,72,-10.99922454813255],[125,279,73,-11.052185691997234],[125,279,74,-11.072482692561792],[125,279,75,-11.071329179254292],[125,279,76,-11.04778045375508],[125,279,77,-11.00750676311273],[125,279,78,-10.955701498295337],[125,279,79,-10.902160294366446],[125,280,64,-10.878346478602305],[125,280,65,-10.895432385182014],[125,280,66,-10.894825044241772],[125,280,67,-10.887178573995213],[125,280,68,-10.88538576407301],[125,280,69,-10.900544888283322],[125,280,70,-10.930835522437622],[125,280,71,-10.976494040582436],[125,280,72,-11.045303977279739],[125,280,73,-11.099732053156085],[125,280,74,-11.120562061524097],[125,280,75,-11.121904167650326],[125,280,76,-11.098193001825484],[125,280,77,-11.054421450631077],[125,280,78,-11.002365930252694],[125,280,79,-10.9500055757195],[125,281,64,-10.924139090458198],[125,281,65,-10.94337527952581],[125,281,66,-10.9411296954766],[125,281,67,-10.932738991461125],[125,281,68,-10.930948925179026],[125,281,69,-10.946943176704972],[125,281,70,-10.975531236337494],[125,281,71,-11.020176261417992],[125,281,72,-11.094761542086934],[125,281,73,-11.153617518543582],[125,281,74,-11.17448323987161],[125,281,75,-11.17759657720411],[125,281,76,-11.155051850362042],[125,281,77,-11.110993536945665],[125,281,78,-11.058443855109184],[125,281,79,-11.00398596148947],[125,282,64,-10.974907321332685],[125,282,65,-10.99426859063585],[125,282,66,-10.990194266555838],[125,282,67,-10.982766405437452],[125,282,68,-10.981739831378565],[125,282,69,-10.996403201476642],[125,282,70,-11.022802104713024],[125,282,71,-11.066047186781157],[125,282,72,-11.13720916019182],[125,282,73,-11.194671723009082],[125,282,74,-11.21508106666987],[125,282,75,-11.216500495264329],[125,282,76,-11.194065801887637],[125,282,77,-11.147985992649565],[125,282,78,-11.098045316374739],[125,282,79,-11.040250822563445],[125,283,64,-11.023069245101892],[125,283,65,-11.041665507868824],[125,283,66,-11.036283283435006],[125,283,67,-11.028653907846772],[125,283,68,-11.027730890583824],[125,283,69,-11.03946729210797],[125,283,70,-11.068659078381781],[125,283,71,-11.116151891955582],[125,283,72,-11.186357256986907],[125,283,73,-11.243524107768414],[125,283,74,-11.267475569141034],[125,283,75,-11.266160620983634],[125,283,76,-11.245811566734869],[125,283,77,-11.200675120358346],[125,283,78,-11.150177698970642],[125,283,79,-11.092930490080164],[125,284,64,-11.087993468279894],[125,284,65,-11.10412526183859],[125,284,66,-11.094286510487125],[125,284,67,-11.081881909624741],[125,284,68,-11.07667084998163],[125,284,69,-11.087668661583148],[125,284,70,-11.112464536160958],[125,284,71,-11.165684611697786],[125,284,72,-11.23789968753591],[125,284,73,-11.29515444474733],[125,284,74,-11.321695540027982],[125,284,75,-11.32236348168954],[125,284,76,-11.30063934187625],[125,284,77,-11.256198019327059],[125,284,78,-11.204886305603141],[125,284,79,-11.149911989098324],[125,285,64,-11.128392905240057],[125,285,65,-11.141433078144928],[125,285,66,-11.132254358232487],[125,285,67,-11.118343575110478],[125,285,68,-11.111866374968328],[125,285,69,-11.125122455540387],[125,285,70,-11.15075451662789],[125,285,71,-11.211376785621542],[125,285,72,-11.287034454919047],[125,285,73,-11.344857804075486],[125,285,74,-11.371950582924319],[125,285,75,-11.369942687346835],[125,285,76,-11.348431424960637],[125,285,77,-11.30372354361805],[125,285,78,-11.253035152234334],[125,285,79,-11.197648712853484],[125,286,64,-11.176004568390852],[125,286,65,-11.19056586304067],[125,286,66,-11.182649381421001],[125,286,67,-11.16475498182856],[125,286,68,-11.15975874293309],[125,286,69,-11.173800294260573],[125,286,70,-11.198754882252326],[125,286,71,-11.259546906250987],[125,286,72,-11.337598105653434],[125,286,73,-11.39611783899326],[125,286,74,-11.422485069177265],[125,286,75,-11.418410569820995],[125,286,76,-11.396236976539592],[125,286,77,-11.352612729891305],[125,286,78,-11.30288807159208],[125,286,79,-11.249069693279967],[125,287,64,-11.221744317075057],[125,287,65,-11.236906041674615],[125,287,66,-11.22802682331498],[125,287,67,-11.213021508201466],[125,287,68,-11.206434057234116],[125,287,69,-11.220901261517568],[125,287,70,-11.245800126689236],[125,287,71,-11.304624830388018],[125,287,72,-11.384715756473774],[125,287,73,-11.445611781725932],[125,287,74,-11.46898051665132],[125,287,75,-11.468052622024292],[125,287,76,-11.441629866554232],[125,287,77,-11.397583447498663],[125,287,78,-11.350382115190692],[125,287,79,-11.295826980564293],[125,288,64,-11.269708072837723],[125,288,65,-11.283847134216657],[125,288,66,-11.273658946798763],[125,288,67,-11.260653411676076],[125,288,68,-11.252168235729284],[125,288,69,-11.264168186564982],[125,288,70,-11.292120379853793],[125,288,71,-11.347894873333908],[125,288,72,-11.434669034673517],[125,288,73,-11.495896298451814],[125,288,74,-11.516605866248785],[125,288,75,-11.51534846718218],[125,288,76,-11.4892674846502],[125,288,77,-11.447383952154919],[125,288,78,-11.400219935373858],[125,288,79,-11.34443680761477],[125,289,64,-11.326435507160271],[125,289,65,-11.34134177202452],[125,289,66,-11.33122920894254],[125,289,67,-11.319062791686864],[125,289,68,-11.309862356080359],[125,289,69,-11.320172933372879],[125,289,70,-11.346908161102514],[125,289,71,-11.390313137343282],[125,289,72,-11.482874833467058],[125,289,73,-11.549874007202757],[125,289,74,-11.572181930796981],[125,289,75,-11.570356163482735],[125,289,76,-11.54561484849771],[125,289,77,-11.504152394349463],[125,289,78,-11.456038531476352],[125,289,79,-11.399051962490486],[125,290,64,-11.38099376512381],[125,290,65,-11.395015238070455],[125,290,66,-11.38414876054511],[125,290,67,-11.369846578119802],[125,290,68,-11.360152249517833],[125,290,69,-11.371246095003533],[125,290,70,-11.395905092893859],[125,290,71,-11.434664632330128],[125,290,72,-11.51796903724924],[125,290,73,-11.592424962980525],[125,290,74,-11.624206594726807],[125,290,75,-11.62342731277206],[125,290,76,-11.600705650471895],[125,290,77,-11.559229815068743],[125,290,78,-11.51175649625984],[125,290,79,-11.452486644155133],[125,291,64,-11.432157619448061],[125,291,65,-11.445809769304885],[125,291,66,-11.433509957085441],[125,291,67,-11.417993686296827],[125,291,68,-11.409293228433684],[125,291,69,-11.41912190349846],[125,291,70,-11.442193170367688],[125,291,71,-11.479576488960358],[125,291,72,-11.563373187608772],[125,291,73,-11.64432903434242],[125,291,74,-11.673430116214911],[125,291,75,-11.675730373759375],[125,291,76,-11.651555289095931],[125,291,77,-11.609950455625935],[125,291,78,-11.559539057059927],[125,291,79,-11.50057791056371],[125,292,64,-11.443170679417298],[125,292,65,-11.45348561308478],[125,292,66,-11.438547507358816],[125,292,67,-11.419305585019655],[125,292,68,-11.410031939758959],[125,292,69,-11.417299748741753],[125,292,70,-11.439756358863745],[125,292,71,-11.476547095552737],[125,292,72,-11.57046346325225],[125,292,73,-11.662466020808084],[125,292,74,-11.69514324996864],[125,292,75,-11.699549652180847],[125,292,76,-11.676583966974938],[125,292,77,-11.635663691125675],[125,292,78,-11.57506586490944],[125,292,79,-11.514760402644391],[125,293,64,-11.492988447387464],[125,293,65,-11.502709159713167],[125,293,66,-11.485431493986242],[125,293,67,-11.466023730584277],[125,293,68,-11.45563657925745],[125,293,69,-11.463390637112811],[125,293,70,-11.485313526889692],[125,293,71,-11.52385512713865],[125,293,72,-11.618727827441397],[125,293,73,-11.707401713809881],[125,293,74,-11.737153911735314],[125,293,75,-11.74108500310013],[125,293,76,-11.722083524236192],[125,293,77,-11.680022445961502],[125,293,78,-11.619074255296647],[125,293,79,-11.555759496248967],[125,294,64,-11.544067125450153],[125,294,65,-11.551817580488754],[125,294,66,-11.534840308317058],[125,294,67,-11.513771544277322],[125,294,68,-11.500538075502277],[125,294,69,-11.50645772706482],[125,294,70,-11.528748575518824],[125,294,71,-11.567739787191664],[125,294,72,-11.666723895380029],[125,294,73,-11.755098755497704],[125,294,74,-11.785856723205523],[125,294,75,-11.78286288745967],[125,294,76,-11.759137938218727],[125,294,77,-11.717821997053392],[125,294,78,-11.655924458134457],[125,294,79,-11.59380794155862],[125,295,64,-11.589987162178419],[125,295,65,-11.600370831147895],[125,295,66,-11.58294109051983],[125,295,67,-11.561766908657598],[125,295,68,-11.545712761212549],[125,295,69,-11.551595372252885],[125,295,70,-11.574618443698517],[125,295,71,-11.611139502044539],[125,295,72,-11.705631584956702],[125,295,73,-11.78805290301074],[125,295,74,-11.828153670281282],[125,295,75,-11.825176443222555],[125,295,76,-11.798921656077688],[125,295,77,-11.75169478525066],[125,295,78,-11.69227545731856],[125,295,79,-11.636200057584446],[125,296,64,-11.637850737124596],[125,296,65,-11.64997604086982],[125,296,66,-11.63293341273159],[125,296,67,-11.609125664389119],[125,296,68,-11.593301645971168],[125,296,69,-11.596881058888307],[125,296,70,-11.618802049130865],[125,296,71,-11.655526895201188],[125,296,72,-11.752713745365567],[125,296,73,-11.830810971072337],[125,296,74,-11.871464307541132],[125,296,75,-11.867413540237978],[125,296,76,-11.842053663236626],[125,296,77,-11.795234734808208],[125,296,78,-11.73567649818455],[125,296,79,-11.680222332341788],[125,297,64,-11.687599703191918],[125,297,65,-11.699912315676773],[125,297,66,-11.679563163814027],[125,297,67,-11.656288005691277],[125,297,68,-11.637064286104952],[125,297,69,-11.640982062383873],[125,297,70,-11.66297625393768],[125,297,71,-11.703149327395344],[125,297,72,-11.792446004457872],[125,297,73,-11.872950660991537],[125,297,74,-11.918104725840518],[125,297,75,-11.91714745361363],[125,297,76,-11.89198725294481],[125,297,77,-11.846618847564873],[125,297,78,-11.786042413854316],[125,297,79,-11.732011801717906],[125,298,64,-11.74275476919476],[125,298,65,-11.751348130229898],[125,298,66,-11.731658685938985],[125,298,67,-11.705120808417606],[125,298,68,-11.687065692681687],[125,298,69,-11.692650389865971],[125,298,70,-11.711919232910645],[125,298,71,-11.752867583447886],[125,298,72,-11.824583457311702],[125,298,73,-11.900540132732221],[125,298,74,-11.944252753723022],[125,298,75,-11.945095084990674],[125,298,76,-11.923087902182127],[125,298,77,-11.884445187315716],[125,298,78,-11.83408879721884],[125,298,79,-11.779344889182372],[125,299,64,-11.791059090158813],[125,299,65,-11.797979218673689],[125,299,66,-11.779138003563766],[125,299,67,-11.751854880089258],[125,299,68,-11.733680814560687],[125,299,69,-11.741494154298842],[125,299,70,-11.760496937849084],[125,299,71,-11.800637630998557],[125,299,72,-11.8686133887309],[125,299,73,-11.943873871497244],[125,299,74,-11.98869298251164],[125,299,75,-11.989113509165433],[125,299,76,-11.969664621261934],[125,299,77,-11.930340140765697],[125,299,78,-11.884478118965575],[125,299,79,-11.827101155365654],[125,300,64,-11.840420911599058],[125,300,65,-11.849274669280746],[125,300,66,-11.832459383737762],[125,300,67,-11.805363899043405],[125,300,68,-11.78858229741254],[125,300,69,-11.792807464103118],[125,300,70,-11.838033212065861],[125,300,71,-11.889312067512517],[125,300,72,-11.969630845434681],[125,300,73,-12.026141639299354],[125,300,74,-12.05297459816083],[125,300,75,-12.042738964846645],[125,300,76,-12.018383443798292],[125,300,77,-11.973090375889731],[125,300,78,-11.925672930850821],[125,300,79,-11.8693227195844],[125,301,64,-11.884944887758962],[125,301,65,-11.896550656699912],[125,301,66,-11.881025607236932],[125,301,67,-11.852763978232625],[125,301,68,-11.837666702594122],[125,301,69,-11.840456833376622],[125,301,70,-11.878093388314559],[125,301,71,-11.93758230646107],[125,301,72,-12.01220557014027],[125,301,73,-12.067302279226745],[125,301,74,-12.09032503454022],[125,301,75,-12.084601015263127],[125,301,76,-12.061331486065356],[125,301,77,-12.017309563123897],[125,301,78,-11.968416176352568],[125,301,79,-11.913972831438139],[125,302,64,-11.927556512687163],[125,302,65,-11.941860221358143],[125,302,66,-11.927008689026158],[125,302,67,-11.896893178742674],[125,302,68,-11.884338056239732],[125,302,69,-11.886820090693572],[125,302,70,-11.920858245182004],[125,302,71,-11.977339740293486],[125,302,72,-12.05496470532977],[125,302,73,-12.110161849976869],[125,302,74,-12.133427606179945],[125,302,75,-12.134435281468361],[125,302,76,-12.111342190021318],[125,302,77,-12.070058184645179],[125,302,78,-12.020775637968482],[125,302,79,-11.963670554611296],[125,303,64,-11.975405244858631],[125,303,65,-11.98720379297098],[125,303,66,-11.969888397532133],[125,303,67,-11.943591516041964],[125,303,68,-11.933576536474105],[125,303,69,-11.934607054109618],[125,303,70,-11.96704265793961],[125,303,71,-12.016361368468628],[125,303,72,-12.098476066785897],[125,303,73,-12.156590990929839],[125,303,74,-12.17655053154444],[125,303,75,-12.177626265659196],[125,303,76,-12.15489831465925],[125,303,77,-12.118022972183136],[125,303,78,-12.066671156617067],[125,303,79,-12.003905588541167],[125,304,64,-12.022471833157148],[125,304,65,-12.033948206892738],[125,304,66,-12.01828978550653],[125,304,67,-11.991403624432026],[125,304,68,-11.979527096357081],[125,304,69,-11.98375566131832],[125,304,70,-12.011190689721117],[125,304,71,-12.056739418157315],[125,304,72,-12.139530751544378],[125,304,73,-12.203392327160651],[125,304,74,-12.218094561965433],[125,304,75,-12.218477203467588],[125,304,76,-12.201318465667613],[125,304,77,-12.161799661534895],[125,304,78,-12.111795348942342],[125,304,79,-12.0487233344118],[125,305,64,-12.06948085054864],[125,305,65,-12.07999454003667],[125,305,66,-12.066450710263231],[125,305,67,-12.04157706751026],[125,305,68,-12.01959779836018],[125,305,69,-12.031992726139153],[125,305,70,-12.057210820736506],[125,305,71,-12.098131854654063],[125,305,72,-12.185587453442967],[125,305,73,-12.249520678574408],[125,305,74,-12.263198441831971],[125,305,75,-12.267911529081916],[125,305,76,-12.251328925154098],[125,305,77,-12.210780819666146],[125,305,78,-12.157304110003492],[125,305,79,-12.095664708962968],[125,306,64,-12.119811337601732],[125,306,65,-12.130560133243815],[125,306,66,-12.117705777508322],[125,306,67,-12.090579383821543],[125,306,68,-12.069993371804387],[125,306,69,-12.071063790065958],[125,306,70,-12.099890117419442],[125,306,71,-12.143942099840084],[125,306,72,-12.228995879525717],[125,306,73,-12.291334610503466],[125,306,74,-12.304732890619302],[125,306,75,-12.309301333467191],[125,306,76,-12.29097942631181],[125,306,77,-12.248478758082868],[125,306,78,-12.19357789094463],[125,306,79,-12.132288608921149],[125,307,64,-12.165716471327086],[125,307,65,-12.179307188594542],[125,307,66,-12.165136586857857],[125,307,67,-12.137430169097742],[125,307,68,-12.116824014421548],[125,307,69,-12.118101471286908],[125,307,70,-12.150813559490205],[125,307,71,-12.192931169995783],[125,307,72,-12.269778722361341],[125,307,73,-12.335821981552968],[125,307,74,-12.34840181788281],[125,307,75,-12.357013453354783],[125,307,76,-12.33717317991299],[125,307,77,-12.298175011402815],[125,307,78,-12.24356571436726],[125,307,79,-12.180664089693215],[125,308,64,-12.199472642740512],[125,308,65,-12.216280338142463],[125,308,66,-12.208025779321648],[125,308,67,-12.18292816283124],[125,308,68,-12.164136986589495],[125,308,69,-12.16876885936434],[125,308,70,-12.192207902018204],[125,308,71,-12.236195390905316],[125,308,72,-12.311166094156947],[125,308,73,-12.379370522161402],[125,308,74,-12.39768077790506],[125,308,75,-12.406141712672413],[125,308,76,-12.385312125175997],[125,308,77,-12.345355943044243],[125,308,78,-12.293318199638083],[125,308,79,-12.23184578223153],[125,309,64,-12.243909930474375],[125,309,65,-12.263920826689844],[125,309,66,-12.254770942332332],[125,309,67,-12.230325191822786],[125,309,68,-12.2124725402503],[125,309,69,-12.216062401373987],[125,309,70,-12.239781908594756],[125,309,71,-12.283896635831406],[125,309,72,-12.351826795947227],[125,309,73,-12.41249774581595],[125,309,74,-12.435639390541477],[125,309,75,-12.431071681115803],[125,309,76,-12.404525870504381],[125,309,77,-12.356163283686067],[125,309,78,-12.312829351022016],[125,309,79,-12.25450330845113],[125,310,64,-12.2841826619452],[125,310,65,-12.303410975494419],[125,310,66,-12.29623955815398],[125,310,67,-12.27185803636347],[125,310,68,-12.254499122157178],[125,310,69,-12.258375766167347],[125,310,70,-12.283263428291276],[125,310,71,-12.323829353867694],[125,310,72,-12.391535296320415],[125,310,73,-12.456003524186574],[125,310,74,-12.477469310958245],[125,310,75,-12.473626408492441],[125,310,76,-12.443693197203041],[125,310,77,-12.400291757061977],[125,310,78,-12.35649184604399],[125,310,79,-12.294145854485743],[125,311,64,-12.328896736456555],[125,311,65,-12.346076387467436],[125,311,66,-12.337606384366813],[125,311,67,-12.31347383875573],[125,311,68,-12.299236652485982],[125,311,69,-12.305357636644262],[125,311,70,-12.330383007469004],[125,311,71,-12.370706418120756],[125,311,72,-12.439930166375879],[125,311,73,-12.50106181349084],[125,311,74,-12.523032345571378],[125,311,75,-12.518481908212635],[125,311,76,-12.48776704869125],[125,311,77,-12.44636496919473],[125,311,78,-12.405242287250044],[125,311,79,-12.343969029071923],[125,312,64,-12.367135874919246],[125,312,65,-12.380497587454826],[125,312,66,-12.37142667318346],[125,312,67,-12.348071974832008],[125,312,68,-12.333309237866894],[125,312,69,-12.34348456546521],[125,312,70,-12.370483798862642],[125,312,71,-12.408327313267135],[125,312,72,-12.477501535832856],[125,312,73,-12.536376342316332],[125,312,74,-12.562001757207252],[125,312,75,-12.561152477675193],[125,312,76,-12.533194661328736],[125,312,77,-12.495709385097129],[125,312,78,-12.454087996510022],[125,312,79,-12.391625884672115],[125,313,64,-12.412068852150632],[125,313,65,-12.426177495711404],[125,313,66,-12.416057140218184],[125,313,67,-12.393706448952939],[125,313,68,-12.378125336729523],[125,313,69,-12.387851101510952],[125,313,70,-12.4135834792184],[125,313,71,-12.45374452479987],[125,313,72,-12.52171226119665],[125,313,73,-12.580123220191101],[125,313,74,-12.607884338356076],[125,313,75,-12.607150564511644],[125,313,76,-12.582538819847471],[125,313,77,-12.542256243714974],[125,313,78,-12.493126997990348],[125,313,79,-12.427452016415744],[125,314,64,-12.462715457718545],[125,314,65,-12.475714477057833],[125,314,66,-12.46309741754978],[125,314,67,-12.440774317556425],[125,314,68,-12.424311864820945],[125,314,69,-12.434521535333463],[125,314,70,-12.459219492438702],[125,314,71,-12.501680368431334],[125,314,72,-12.569609523404402],[125,314,73,-12.627648596748116],[125,314,74,-12.655014322623606],[125,314,75,-12.658862133281104],[125,314,76,-12.636773368562874],[125,314,77,-12.596285527020987],[125,314,78,-12.547871406199558],[125,314,79,-12.478046825298486],[125,315,64,-12.510680956534076],[125,315,65,-12.524374423796687],[125,315,66,-12.507556242706126],[125,315,67,-12.485524838485423],[125,315,68,-12.467080903587968],[125,315,69,-12.47646542073401],[125,315,70,-12.503638208275069],[125,315,71,-12.546175550597692],[125,315,72,-12.615818498509158],[125,315,73,-12.675892135671756],[125,315,74,-12.705156512834023],[125,315,75,-12.70987943636634],[125,315,76,-12.68633171514157],[125,315,77,-12.642403235304512],[125,315,78,-12.594854794717088],[125,315,79,-12.520293571569418],[125,316,64,-12.564157509616242],[125,316,65,-12.578077807894275],[125,316,66,-12.558887065644901],[125,316,67,-12.53438644605901],[125,316,68,-12.513492144925534],[125,316,69,-12.520931822735127],[125,316,70,-12.546136476836441],[125,316,71,-12.58886541361519],[125,316,72,-12.661995834548103],[125,316,73,-12.725277670926335],[125,316,74,-12.754380882158372],[125,316,75,-12.759065898742724],[125,316,76,-12.738125886960756],[125,316,77,-12.694094798554307],[125,316,78,-12.645782073923009],[125,316,79,-12.573238888941814],[125,317,64,-12.612107846759352],[125,317,65,-12.624181942665498],[125,317,66,-12.605806584857792],[125,317,67,-12.580304356083953],[125,317,68,-12.559553110045632],[125,317,69,-12.565127637371985],[125,317,70,-12.589040914461048],[125,317,71,-12.632260083087552],[125,317,72,-12.70756463609037],[125,317,73,-12.773368248332977],[125,317,74,-12.803519393162304],[125,317,75,-12.809622342404488],[125,317,76,-12.790895003070567],[125,317,77,-12.747647685390092],[125,317,78,-12.6948639239904],[125,317,79,-12.627424994190767],[125,318,64,-12.65350708909009],[125,318,65,-12.662315800121387],[125,318,66,-12.64347017252192],[125,318,67,-12.618107204151174],[125,318,68,-12.599938226812501],[125,318,69,-12.601001424324947],[125,318,70,-12.624726869732447],[125,318,71,-12.66989676132639],[125,318,72,-12.74439798427089],[125,318,73,-12.811334299982802],[125,318,74,-12.84320545509312],[125,318,75,-12.852054096778499],[125,318,76,-12.837915331915031],[125,318,77,-12.796710827681668],[125,318,78,-12.74191013313297],[125,318,79,-12.673422767629916],[125,319,64,-12.700780804985882],[125,319,65,-12.708763677206539],[125,319,66,-12.690463354487722],[125,319,67,-12.662691726255138],[125,319,68,-12.645986351027398],[125,319,69,-12.645548608816288],[125,319,70,-12.669098863505809],[125,319,71,-12.717754923875313],[125,319,72,-12.793238455136915],[125,319,73,-12.859287538636185],[125,319,74,-12.891698610174574],[125,319,75,-12.900191223049017],[125,319,76,-12.888675377661098],[125,319,77,-12.8474177459129],[125,319,78,-12.79143154827425],[125,319,79,-12.721243831240367],[126,-64,64,23.270385534720607],[126,-64,65,23.15018232450284],[126,-64,66,23.00769917963838],[126,-64,67,22.905008498237745],[126,-64,68,22.92430460148001],[126,-64,69,22.940210313139115],[126,-64,70,22.95924652455895],[126,-64,71,22.99335672146359],[126,-64,72,23.03481611104646],[126,-64,73,23.062500992726758],[126,-64,74,23.063608479080127],[126,-64,75,23.07604601018519],[126,-64,76,23.137778041868987],[126,-64,77,23.24866870955011],[126,-64,78,23.408973431997047],[126,-64,79,23.563752297378816],[126,-63,64,23.078279242094013],[126,-63,65,23.01515455143936],[126,-63,66,22.854351301641113],[126,-63,67,22.72486035437781],[126,-63,68,22.725397818080324],[126,-63,69,22.740417986672508],[126,-63,70,22.76317208989606],[126,-63,71,22.796261954450415],[126,-63,72,22.835901323949066],[126,-63,73,22.864230594866452],[126,-63,74,22.863647518950323],[126,-63,75,22.877646292414862],[126,-63,76,22.94041396932655],[126,-63,77,23.068310656519714],[126,-63,78,23.279039182115046],[126,-63,79,23.41317013179262],[126,-62,64,22.8862685017273],[126,-62,65,22.820049338801887],[126,-62,66,22.659361856611916],[126,-62,67,22.537212802268783],[126,-62,68,22.537199983006577],[126,-62,69,22.55083548507745],[126,-62,70,22.572012033328544],[126,-62,71,22.60358558453025],[126,-62,72,22.64424604851182],[126,-62,73,22.67117198704025],[126,-62,74,22.67403087609401],[126,-62,75,22.687147273688712],[126,-62,76,22.75320816519531],[126,-62,77,22.876062738165903],[126,-62,78,23.081686109445773],[126,-62,79,23.208264042351228],[126,-61,64,22.64610681992657],[126,-61,65,22.533349613745962],[126,-61,66,22.4563178140957],[126,-61,67,22.40656593582663],[126,-61,68,22.392364091757607],[126,-61,69,22.3567590662404],[126,-61,70,22.377234752547572],[126,-61,71,22.408469373730835],[126,-61,72,22.448102093766423],[126,-61,73,22.474076913308792],[126,-61,74,22.4781880018043],[126,-61,75,22.493215928652607],[126,-61,76,22.561597277191645],[126,-61,77,22.673356499684765],[126,-61,78,22.806064434676884],[126,-61,79,22.93309857837665],[126,-60,64,22.431546193512663],[126,-60,65,22.348157919825496],[126,-60,66,22.273251267393114],[126,-60,67,22.240068136848908],[126,-60,68,22.200367977498416],[126,-60,69,22.170014050662136],[126,-60,70,22.193011676660838],[126,-60,71,22.223299780373253],[126,-60,72,22.261751158898424],[126,-60,73,22.28619493917128],[126,-60,74,22.29453997712412],[126,-60,75,22.310576288607866],[126,-60,76,22.37801654843772],[126,-60,77,22.48877715098325],[126,-60,78,22.616790835306716],[126,-60,79,22.73943750837931],[126,-59,64,21.995513232461054],[126,-59,65,21.962952095230264],[126,-59,66,21.949499133820613],[126,-59,67,21.952618062265575],[126,-59,68,21.97042703748114],[126,-59,69,21.9916815753426],[126,-59,70,22.0163375070246],[126,-59,71,22.048598500170804],[126,-59,72,22.084645094657702],[126,-59,73,22.10630372329656],[126,-59,74,22.11377179173424],[126,-59,75,22.128792824496518],[126,-59,76,22.19499583496724],[126,-59,77,22.304685398103068],[126,-59,78,22.435561502180512],[126,-59,79,22.556516841396167],[126,-58,64,21.80339907349024],[126,-58,65,21.77191502493885],[126,-58,66,21.75829147807176],[126,-58,67,21.765047470768273],[126,-58,68,21.78340796016285],[126,-58,69,21.803855589934027],[126,-58,70,21.82907985609325],[126,-58,71,21.86226822740919],[126,-58,72,21.896722166460673],[126,-58,73,21.918869142017204],[126,-58,74,21.921392288462492],[126,-58,75,21.939417532419398],[126,-58,76,22.004601141411023],[126,-58,77,22.115975997259866],[126,-58,78,22.246337353238697],[126,-58,79,22.36931663365447],[126,-57,64,21.606950258723863],[126,-57,65,21.577384912609347],[126,-57,66,21.566404522584605],[126,-57,67,21.572480349449425],[126,-57,68,21.594440039570788],[126,-57,69,21.614383857244167],[126,-57,70,21.638905087900785],[126,-57,71,21.673794664047993],[126,-57,72,21.707544311884334],[126,-57,73,21.729170057797095],[126,-57,74,21.73154917916827],[126,-57,75,21.74967574119103],[126,-57,76,21.815770206953566],[126,-57,77,21.9270998662596],[126,-57,78,22.059739703428704],[126,-57,79,22.182645031662595],[126,-56,64,21.41351912548942],[126,-56,65,21.387075311834398],[126,-56,66,21.374612527027562],[126,-56,67,21.38579670698409],[126,-56,68,21.406540212265206],[126,-56,69,21.424681215834365],[126,-56,70,21.450793688377303],[126,-56,71,21.48317227170141],[126,-56,72,21.51790011452709],[126,-56,73,21.538679199612094],[126,-56,74,21.54033606251469],[126,-56,75,21.55833494908092],[126,-56,76,21.625581204270105],[126,-56,77,21.73615950441789],[126,-56,78,21.867691412559036],[126,-56,79,21.991123391101002],[126,-55,64,21.2229527670599],[126,-55,65,21.196410349121837],[126,-55,66,21.18531979545577],[126,-55,67,21.19760202072726],[126,-55,68,21.21806494860681],[126,-55,69,21.234026508530267],[126,-55,70,21.25936481027987],[126,-55,71,21.290147925597044],[126,-55,72,21.325186084617176],[126,-55,73,21.34578228389651],[126,-55,74,21.34973300461632],[126,-55,75,21.365251177533793],[126,-55,76,21.4310080957252],[126,-55,77,21.54486810448346],[126,-55,78,21.677646120391277],[126,-55,79,21.800408938064212],[126,-54,64,21.03231677379254],[126,-54,65,21.004115821363236],[126,-54,66,20.99498261600621],[126,-54,67,21.00961648720483],[126,-54,68,21.03027860672512],[126,-54,69,21.044402199328808],[126,-54,70,21.065813043101034],[126,-54,71,21.09569821437305],[126,-54,72,21.131181283465658],[126,-54,73,21.15366146552447],[126,-54,74,21.158583043872113],[126,-54,75,21.173060732620336],[126,-54,76,21.236557790692128],[126,-54,77,21.350537628908338],[126,-54,78,21.483738061095327],[126,-54,79,21.607922585419566],[126,-53,64,20.866900692831752],[126,-53,65,20.806895021309796],[126,-53,66,20.796445291872615],[126,-53,67,20.811272231694616],[126,-53,68,20.83361304663623],[126,-53,69,20.84820962677416],[126,-53,70,20.86785383860144],[126,-53,71,20.897780930870812],[126,-53,72,20.933345396571386],[126,-53,73,20.956458707593196],[126,-53,74,20.9618057377494],[126,-53,75,20.975550494963308],[126,-53,76,21.041243956106996],[126,-53,77,21.151455719389944],[126,-53,78,21.284059302115736],[126,-53,79,21.409283034669436],[126,-52,64,20.689246059616],[126,-52,65,20.614579354805716],[126,-52,66,20.606684401847705],[126,-52,67,20.622922889906047],[126,-52,68,20.646222019982318],[126,-52,69,20.662859467286548],[126,-52,70,20.682786465895067],[126,-52,71,20.712705202149742],[126,-52,72,20.749601463796907],[126,-52,73,20.773059335184836],[126,-52,74,20.77624337798181],[126,-52,75,20.791091139244987],[126,-52,76,20.85694439598099],[126,-52,77,20.96654327870464],[126,-52,78,21.09855821110105],[126,-52,79,21.223847115272708],[126,-51,64,20.541445590093627],[126,-51,65,20.472923439801765],[126,-51,66,20.396557348515646],[126,-51,67,20.421310438461653],[126,-51,68,20.44648277575424],[126,-51,69,20.4667407972402],[126,-51,70,20.486804557241857],[126,-51,71,20.51109385245942],[126,-51,72,20.544864063515934],[126,-51,73,20.562700732763986],[126,-51,74,20.563280662399492],[126,-51,75,20.582007911480563],[126,-51,76,20.651301418933336],[126,-51,77,20.765932095639986],[126,-51,78,20.902985053241085],[126,-51,79,21.03432609193243],[126,-50,64,20.36122047288326],[126,-50,65,20.2852028783],[126,-50,66,20.206468548821547],[126,-50,67,20.230484695172645],[126,-50,68,20.255272873654494],[126,-50,69,20.27533441952016],[126,-50,70,20.297107119998227],[126,-50,71,20.321232116730904],[126,-50,72,20.35232968690626],[126,-50,73,20.370885256321962],[126,-50,74,20.370427886002382],[126,-50,75,20.388539526509085],[126,-50,76,20.45715453212301],[126,-50,77,20.571836210289113],[126,-50,78,20.70829418555822],[126,-50,79,20.8424666939597],[126,-49,64,20.20427322649284],[126,-49,65,20.085147392393235],[126,-49,66,20.009558887196345],[126,-49,67,20.034067952076185],[126,-49,68,20.061378517161163],[126,-49,69,20.081087577707887],[126,-49,70,20.10262625689143],[126,-49,71,20.13007729910727],[126,-49,72,20.15907804795394],[126,-49,73,20.17770910377306],[126,-49,74,20.177189927721923],[126,-49,75,20.194487381912094],[126,-49,76,20.26290577794004],[126,-49,77,20.381377992341257],[126,-49,78,20.516989539174567],[126,-49,79,20.651221259180115],[126,-48,64,20.05458821499574],[126,-48,65,19.91604911328466],[126,-48,66,19.82388274525398],[126,-48,67,19.84114006869802],[126,-48,68,19.86732486913432],[126,-48,69,19.887499934783072],[126,-48,70,19.91041734844014],[126,-48,71,19.940797124579962],[126,-48,72,19.969158781474263],[126,-48,73,19.984792143071427],[126,-48,74,19.984112050295018],[126,-48,75,20.002515479011823],[126,-48,76,20.07161389002771],[126,-48,77,20.190950980314593],[126,-48,78,20.326806321760237],[126,-48,79,20.459083149238364],[126,-47,64,19.880867199718477],[126,-47,65,19.733338301646064],[126,-47,66,19.63414161143361],[126,-47,67,19.641406802335094],[126,-47,68,19.667179180811534],[126,-47,69,19.687145518872654],[126,-47,70,19.711136616182124],[126,-47,71,19.74571832228998],[126,-47,72,19.778772703938778],[126,-47,73,19.79993250351084],[126,-47,74,19.801888167681355],[126,-47,75,19.82197302135363],[126,-47,76,19.889179019573596],[126,-47,77,20.000386412177903],[126,-47,78,20.129320526004516],[126,-47,79,20.257790736089827],[126,-46,64,19.626219946098796],[126,-46,65,19.507646410983874],[126,-46,66,19.46424301501881],[126,-46,67,19.449954682702817],[126,-46,68,19.4766770098296],[126,-46,69,19.495827510036467],[126,-46,70,19.52115636300742],[126,-46,71,19.553692663919378],[126,-46,72,19.58767211405142],[126,-46,73,19.60800490491022],[126,-46,74,19.61108019517658],[126,-46,75,19.629739158356433],[126,-46,76,19.695359816914777],[126,-46,77,19.806233090813407],[126,-46,78,19.933594178876167],[126,-46,79,20.064301373809364],[126,-45,64,19.45433941613545],[126,-45,65,19.354666801779878],[126,-45,66,19.298384633549453],[126,-45,67,19.253121113662168],[126,-45,68,19.27885422807012],[126,-45,69,19.297915186860426],[126,-45,70,19.32444247409606],[126,-45,71,19.35703326477749],[126,-45,72,19.39230746331484],[126,-45,73,19.413181458782546],[126,-45,74,19.415009322184687],[126,-45,75,19.430549209397814],[126,-45,76,19.49396873414496],[126,-45,77,19.60465171194045],[126,-45,78,19.73369132415312],[126,-45,79,19.86536942465479],[126,-44,64,19.40236737783186],[126,-44,65,19.259787090103217],[126,-44,66,19.161576457709483],[126,-44,67,19.03223664766108],[126,-44,68,19.05092677782357],[126,-44,69,19.066659377338908],[126,-44,70,19.08628305143025],[126,-44,71,19.116303749893234],[126,-44,72,19.150791720112693],[126,-44,73,19.1712198064805],[126,-44,74,19.169364263196684],[126,-44,75,19.186047667351556],[126,-44,76,19.250188755076813],[126,-44,77,19.358652004499614],[126,-44,78,19.488099899412315],[126,-44,79,19.6205968605269],[126,-43,64,19.309507416758734],[126,-43,65,19.175729978182027],[126,-43,66,19.10335847483035],[126,-43,67,18.926613023014475],[126,-43,68,18.86144516798892],[126,-43,69,18.874938092997997],[126,-43,70,18.895737866461438],[126,-43,71,18.922964813419252],[126,-43,72,18.95514538042891],[126,-43,73,18.976292121911523],[126,-43,74,18.97533375444024],[126,-43,75,18.990405603949586],[126,-43,76,19.05392643536919],[126,-43,77,19.161678406016986],[126,-43,78,19.2918437496674],[126,-43,79,19.426411490454488],[126,-42,64,19.125657375400127],[126,-42,65,19.01207411035838],[126,-42,66,18.909609611055696],[126,-42,67,18.73070648779335],[126,-42,68,18.670556108156468],[126,-42,69,18.684387410515505],[126,-42,70,18.70425434022427],[126,-42,71,18.73008341231758],[126,-42,72,18.76000752883149],[126,-42,73,18.778483035450222],[126,-42,74,18.777906679868167],[126,-42,75,18.792220166282725],[126,-42,76,18.854924013277714],[126,-42,77,18.966291358417045],[126,-42,78,19.09893924920451],[126,-42,79,19.232038900605524],[126,-41,64,18.93995007801757],[126,-41,65,18.835034648881216],[126,-41,66,18.686502251359283],[126,-41,67,18.50730036947756],[126,-41,68,18.478541347313115],[126,-41,69,18.49283274886593],[126,-41,70,18.51031734530871],[126,-41,71,18.53624771952084],[126,-41,72,18.56442409157937],[126,-41,73,18.579358354224425],[126,-41,74,18.58060104240226],[126,-41,75,18.59321595539626],[126,-41,76,18.656158784224935],[126,-41,77,18.77192930594406],[126,-41,78,18.907472968546507],[126,-41,79,19.039097600375793],[126,-40,64,18.786999184473956],[126,-40,65,18.70835649629942],[126,-40,66,18.520723996902227],[126,-40,67,18.365736684147503],[126,-40,68,18.289211857402712],[126,-40,69,18.303563869829805],[126,-40,70,18.317691926495968],[126,-40,71,18.34506739977237],[126,-40,72,18.371815258382707],[126,-40,73,18.38333628061663],[126,-40,74,18.38302362984316],[126,-40,75,18.39730812001444],[126,-40,76,18.46136844844567],[126,-40,77,18.576453063298807],[126,-40,78,18.713310011363156],[126,-40,79,18.845443897148105],[126,-39,64,18.60959975445652],[126,-39,65,18.542324986282765],[126,-39,66,18.31950223336094],[126,-39,67,18.203665840857344],[126,-39,68,18.09383454855565],[126,-39,69,18.10635377185063],[126,-39,70,18.121485854392095],[126,-39,71,18.145318177119485],[126,-39,72,18.168603303352803],[126,-39,73,18.17866337309946],[126,-39,74,18.174044464032388],[126,-39,75,18.188175789151998],[126,-39,76,18.25652580836979],[126,-39,77,18.374079023898474],[126,-39,78,18.512877440942145],[126,-39,79,18.646140429813283],[126,-38,64,18.430188015762415],[126,-38,65,18.322389938085436],[126,-38,66,18.054582456759],[126,-38,67,17.93581387655186],[126,-38,68,17.902157843080484],[126,-38,69,17.91679884624927],[126,-38,70,17.931547400720195],[126,-38,71,17.954217738133288],[126,-38,72,17.97612700480597],[126,-38,73,17.98367834846689],[126,-38,74,17.978987252446817],[126,-38,75,17.992775209795514],[126,-38,76,18.063098394108103],[126,-38,77,18.18123099102076],[126,-38,78,18.32025297576966],[126,-38,79,18.452886005595083],[126,-37,64,18.285998718508072],[126,-37,65,18.16456920476362],[126,-37,66,17.92428860283773],[126,-37,67,17.798544234423737],[126,-37,68,17.708348379453472],[126,-37,69,17.720278310449967],[126,-37,70,17.737081065695495],[126,-37,71,17.75874588561655],[126,-37,72,17.778453182259344],[126,-37,73,17.783033555968487],[126,-37,74,17.779550529632292],[126,-37,75,17.79359003662632],[126,-37,76,17.864423915411425],[126,-37,77,17.984282801458168],[126,-37,78,18.123833503139327],[126,-37,79,18.257369678192198],[126,-36,64,18.081947289848493],[126,-36,65,17.956253862326612],[126,-36,66,17.76616985315024],[126,-36,67,17.635511016815283],[126,-36,68,17.52765428517361],[126,-36,69,17.539833728149446],[126,-36,70,17.55485070900056],[126,-36,71,17.580768805894106],[126,-36,72,17.59566499093417],[126,-36,73,17.600473577287637],[126,-36,74,17.595569152856193],[126,-36,75,17.610882433658663],[126,-36,76,17.68067479009707],[126,-36,77,17.798049431203097],[126,-36,78,17.94014298808612],[126,-36,79,18.074476732542063],[126,-35,64,17.919854493257414],[126,-35,65,17.88049304629061],[126,-35,66,17.78562262092033],[126,-35,67,17.698584370015674],[126,-35,68,17.548845850870393],[126,-35,69,17.359398176327595],[126,-35,70,17.37586254074819],[126,-35,71,17.397161914670903],[126,-35,72,17.41222306450656],[126,-35,73,17.415490966317538],[126,-35,74,17.40969414593438],[126,-35,75,17.427939252336863],[126,-35,76,17.494514684050337],[126,-35,77,17.612651245523555],[126,-35,78,17.757269454969546],[126,-35,79,17.895103480212033],[126,-34,64,17.72141356438847],[126,-34,65,17.68347270332402],[126,-34,66,17.629853186559075],[126,-34,67,17.55012305033145],[126,-34,68,17.3689529196868],[126,-34,69,17.173483865775818],[126,-34,70,17.18791970907784],[126,-34,71,17.207729705217066],[126,-34,72,17.221424359020155],[126,-34,73,17.224090725567898],[126,-34,74,17.216955426393607],[126,-34,75,17.237352565901674],[126,-34,76,17.301641755001828],[126,-34,77,17.41958918176623],[126,-34,78,17.564591771865217],[126,-34,79,17.702133860401958],[126,-33,64,17.521547806616987],[126,-33,65,17.483818754289562],[126,-33,66,17.463559304603546],[126,-33,67,17.397519527072763],[126,-33,68,17.198491773523575],[126,-33,69,17.02636410408644],[126,-33,70,17.027573673932963],[126,-33,71,17.041877680215755],[126,-33,72,17.05047573426879],[126,-33,73,17.04685912441174],[126,-33,74,17.036733649532962],[126,-33,75,17.05096646129238],[126,-33,76,17.108357886898048],[126,-33,77,17.221621550714715],[126,-33,78,17.361499116469567],[126,-33,79,17.49783466055398],[126,-32,64,17.33465057957566],[126,-32,65,17.29575872792755],[126,-32,66,17.27387239084154],[126,-32,67,17.25909046649653],[126,-32,68,17.067051828427104],[126,-32,69,16.90727965224803],[126,-32,70,16.83891289402753],[126,-32,71,16.852342324876375],[126,-32,72,16.86140964203323],[126,-32,73,16.858437170395685],[126,-32,74,16.845818859073955],[126,-32,75,16.859075349618546],[126,-32,76,16.914477930930765],[126,-32,77,17.02768750633268],[126,-32,78,17.169681268722016],[126,-32,79,17.306029993014803],[126,-31,64,17.14235858105045],[126,-31,65,17.102555482958714],[126,-31,66,17.082826245030123],[126,-31,67,17.09286308976077],[126,-31,68,17.02584163141553],[126,-31,69,16.876311152871455],[126,-31,70,16.737080331567444],[126,-31,71,16.693419270170985],[126,-31,72,16.670922399371367],[126,-31,73,16.66689855249453],[126,-31,74,16.653110475018252],[126,-31,75,16.66541647344754],[126,-31,76,16.718547835827465],[126,-31,77,16.83255254490642],[126,-31,78,16.976110557612024],[126,-31,79,17.11507597759848],[126,-30,64,16.956259828498798],[126,-30,65,16.915036126628813],[126,-30,66,16.898179349144808],[126,-30,67,16.90974486800855],[126,-30,68,16.891605665251806],[126,-30,69,16.75618875139813],[126,-30,70,16.567123730946932],[126,-30,71,16.513097356975123],[126,-30,72,16.504605399743237],[126,-30,73,16.475905515008055],[126,-30,74,16.460764212356107],[126,-30,75,16.46958998851721],[126,-30,76,16.525073539780173],[126,-30,77,16.63835509290055],[126,-30,78,16.781383179201836],[126,-30,79,16.922320506512982],[126,-29,64,16.773259630896426],[126,-29,65,16.7329559906819],[126,-29,66,16.714743772466132],[126,-29,67,16.724974247229678],[126,-29,68,16.73724694107515],[126,-29,69,16.682837228496574],[126,-29,70,16.439705395656222],[126,-29,71,16.389908724834577],[126,-29,72,16.387339459337355],[126,-29,73,16.30227216852465],[126,-29,74,16.262222673932815],[126,-29,75,16.270056092871926],[126,-29,76,16.327842363071042],[126,-29,77,16.440637971561735],[126,-29,78,16.58229746973155],[126,-29,79,16.722471503354445],[126,-28,64,16.573331923782266],[126,-28,65,16.5327868295943],[126,-28,66,16.514172622208513],[126,-28,67,16.521513361890545],[126,-28,68,16.53459595181017],[126,-28,69,16.518141834875404],[126,-28,70,16.29868643565731],[126,-28,71,16.22904077656858],[126,-28,72,16.214611476896525],[126,-28,73,16.110843090256605],[126,-28,74,16.084398612822298],[126,-28,75,16.084419303261452],[126,-28,76,16.143225007503464],[126,-28,77,16.254934990016146],[126,-28,78,16.39246830581611],[126,-28,79,16.53207251177142],[126,-27,64,16.384795499370203],[126,-27,65,16.3421293373299],[126,-27,66,16.322696885242316],[126,-27,67,16.32803304304127],[126,-27,68,16.340768850047976],[126,-27,69,16.347466354950253],[126,-27,70,16.228607736380045],[126,-27,71,16.14741660153364],[126,-27,72,16.108516674071858],[126,-27,73,16.01610968796216],[126,-27,74,15.985893890007947],[126,-27,75,15.896721877419386],[126,-27,76,15.954885890123263],[126,-27,77,16.06553473870532],[126,-27,78,16.20019872103273],[126,-27,79,16.33828849532653],[126,-26,64,16.245248031667927],[126,-26,65,16.201903614362756],[126,-26,66,16.18119772643618],[126,-26,67,16.18841288931944],[126,-26,68,16.201237000064364],[126,-26,69,16.206263650388966],[126,-26,70,16.123770547024346],[126,-26,71,16.00645781440657],[126,-26,72,15.938743227830596],[126,-26,73,15.856686150096495],[126,-26,74,15.788713119227362],[126,-26,75,15.705157505009469],[126,-26,76,15.761088932541472],[126,-26,77,15.870203571826984],[126,-26,78,16.009472219513164],[126,-26,79,16.144145475836293],[126,-25,64,16.056948743117644],[126,-25,65,16.01060920763951],[126,-25,66,15.99032031341288],[126,-25,67,15.997101309649128],[126,-25,68,16.008165735221503],[126,-25,69,16.01026428494176],[126,-25,70,15.990393525508402],[126,-25,71,15.855013353045539],[126,-25,72,15.76928650681766],[126,-25,73,15.682052163819561],[126,-25,74,15.59754757206662],[126,-25,75,15.512621282493793],[126,-25,76,15.566349716929393],[126,-25,77,15.67646532327288],[126,-25,78,15.815729792631696],[126,-25,79,15.950488409640828],[126,-24,64,15.86908028618923],[126,-24,65,15.822114581880731],[126,-24,66,15.801836904584452],[126,-24,67,15.80808743659116],[126,-24,68,15.818038934837457],[126,-24,69,15.820045191448372],[126,-24,70,15.825728525340487],[126,-24,71,15.706790154643988],[126,-24,72,15.621644714783404],[126,-24,73,15.536128797757053],[126,-24,74,15.402331694494158],[126,-24,75,15.320810829065664],[126,-24,76,15.37488942132977],[126,-24,77,15.48600394319947],[126,-24,78,15.621561408235536],[126,-24,79,15.755520402080643],[126,-23,64,15.674637186550433],[126,-23,65,15.628327174182132],[126,-23,66,15.608614227782535],[126,-23,67,15.614436378641834],[126,-23,68,15.623553676095721],[126,-23,69,15.626055636589907],[126,-23,70,15.631272389736962],[126,-23,71,15.516651070516374],[126,-23,72,15.398081718346472],[126,-23,73,15.286832918741847],[126,-23,74,15.135848837364708],[126,-23,75,15.138673032684386],[126,-23,76,15.191367308674876],[126,-23,77,15.294665966476343],[126,-23,78,15.424178648715326],[126,-23,79,15.555273780187825],[126,-22,64,15.488768953968869],[126,-22,65,15.445413861532433],[126,-22,66,15.425526892665685],[126,-22,67,15.428465726003918],[126,-22,68,15.438468698291874],[126,-22,69,15.442898994154787],[126,-22,70,15.447980638833007],[126,-22,71,15.372436365270945],[126,-22,72,15.211775416260434],[126,-22,73,15.090276416099428],[126,-22,74,14.943052611110737],[126,-22,75,14.94749084745953],[126,-22,76,15.001491611521846],[126,-22,77,15.102177620414277],[126,-22,78,15.229875375545959],[126,-22,79,15.35993865512487],[126,-21,64,15.293003782503632],[126,-21,65,15.250043649150852],[126,-21,66,15.232446624412797],[126,-21,67,15.23473977211973],[126,-21,68,15.243452773094145],[126,-21,69,15.245801395416139],[126,-21,70,15.251254035338807],[126,-21,71,15.264542863689126],[126,-21,72,15.070132680888829],[126,-21,73,14.956488587977185],[126,-21,74,14.74769292553376],[126,-21,75,14.74926598836426],[126,-21,76,14.803050750008104],[126,-21,77,14.903162801142955],[126,-21,78,15.031483044152058],[126,-21,79,15.159416971506316],[126,-20,64,15.088432273506152],[126,-20,65,15.04660474092732],[126,-20,66,15.026653165902381],[126,-20,67,15.02963997238864],[126,-20,68,15.03818403224171],[126,-20,69,15.042631206179857],[126,-20,70,15.051251252115673],[126,-20,71,15.0627657107291],[126,-20,72,14.877391653191365],[126,-20,73,14.748578453860361],[126,-20,74,14.562110603196304],[126,-20,75,14.565809255164044],[126,-20,76,14.616652605719807],[126,-20,77,14.715544124728368],[126,-20,78,14.842138699787654],[126,-20,79,14.970896289929605],[126,-19,64,14.895906827755107],[126,-19,65,14.853343084458317],[126,-19,66,14.832824309409144],[126,-19,67,14.83689352503648],[126,-19,68,14.846652074729592],[126,-19,69,14.852669195783887],[126,-19,70,14.859704943750284],[126,-19,71,14.86990645125994],[126,-19,72,14.75074007928599],[126,-19,73,14.551448130031098],[126,-19,74,14.369639832294611],[126,-19,75,14.374922083815393],[126,-19,76,14.425280899427047],[126,-19,77,14.526818450540416],[126,-19,78,14.654143441406116],[126,-19,79,14.782740796422583],[126,-18,64,14.695780029207464],[126,-18,65,14.650456999561548],[126,-18,66,14.629715756156404],[126,-18,67,14.63539479697126],[126,-18,68,14.644322383457935],[126,-18,69,14.650409114493463],[126,-18,70,14.659254064184768],[126,-18,71,14.667458387479957],[126,-18,72,14.552837917135516],[126,-18,73,14.311432031494688],[126,-18,74,14.180750384866021],[126,-18,75,14.18360283246683],[126,-18,76,14.236265624337154],[126,-18,77,14.337274754011194],[126,-18,78,14.461881672107284],[126,-18,79,14.588749820690909],[126,-17,64,14.502315988814175],[126,-17,65,14.45530389015181],[126,-17,66,14.436980841972536],[126,-17,67,14.443082089789671],[126,-17,68,14.455282288827657],[126,-17,69,14.46400111670651],[126,-17,70,14.473772310808107],[126,-17,71,14.482546029656605],[126,-17,72,14.369193584944194],[126,-17,73,14.104881731180358],[126,-17,74,13.987243064170421],[126,-17,75,13.992098245657868],[126,-17,76,14.04531663312349],[126,-17,77,14.147097091275253],[126,-17,78,14.269426329567167],[126,-17,79,14.39903065078807],[126,-16,64,14.313377448521626],[126,-16,65,14.265736204659026],[126,-16,66,14.246364346272362],[126,-16,67,14.255653534704862],[126,-16,68,14.26815705321617],[126,-16,69,14.276339566062466],[126,-16,70,14.286424011082202],[126,-16,71,14.292955497327151],[126,-16,72,14.228665023370374],[126,-16,73,13.95713731713773],[126,-16,74,13.794200699086666],[126,-16,75,13.79785282137117],[126,-16,76,13.851835856683415],[126,-16,77,13.95326829903045],[126,-16,78,14.079160267294164],[126,-16,79,14.209738463932215],[126,-15,64,14.119759358250539],[126,-15,65,14.072530026725136],[126,-15,66,14.051870789847268],[126,-15,67,14.063335042388296],[126,-15,68,14.076352594235173],[126,-15,69,14.085191070896435],[126,-15,70,14.094580607944916],[126,-15,71,14.100612411426878],[126,-15,72,14.071441227426458],[126,-15,73,13.784561127375968],[126,-15,74,13.60827606852182],[126,-15,75,13.61062285967554],[126,-15,76,13.666315108734743],[126,-15,77,13.765930312151964],[126,-15,78,13.89569875038763],[126,-15,79,14.028974425903085],[126,-14,64,13.829349385127378],[126,-14,65,13.783713773613313],[126,-14,66,13.764188254898901],[126,-14,67,13.775391563593647],[126,-14,68,13.787639395027641],[126,-14,69,13.798515880214142],[126,-14,70,13.80677288598406],[126,-14,71,13.811411261404178],[126,-14,72,13.815477479857279],[126,-14,73,13.595386810214462],[126,-14,74,13.435089284608182],[126,-14,75,13.418880509256821],[126,-14,76,13.472522806847287],[126,-14,77,13.573904024221164],[126,-14,78,13.702605017948558],[126,-14,79,13.836632660048794],[126,-13,64,13.634613129519632],[126,-13,65,13.587958644646855],[126,-13,66,13.571074351054236],[126,-13,67,13.580683902952188],[126,-13,68,13.597304129223028],[126,-13,69,13.607395597807162],[126,-13,70,13.614513742091159],[126,-13,71,13.6191393223088],[126,-13,72,13.620846669912238],[126,-13,73,13.471501853492475],[126,-13,74,13.315023775525297],[126,-13,75,13.21835326639057],[126,-13,76,13.274256217899271],[126,-13,77,13.375778959336095],[126,-13,78,13.502478756875888],[126,-13,79,13.635220798291272],[126,-12,64,13.431581997149502],[126,-12,65,13.38209221635437],[126,-12,66,13.364752323103504],[126,-12,67,13.374857966037354],[126,-12,68,13.394718453134036],[126,-12,69,13.405156245399542],[126,-12,70,13.411431472933506],[126,-12,71,13.414895405429434],[126,-12,72,13.41873770904747],[126,-12,73,13.283922550889686],[126,-12,74,13.13167109414183],[126,-12,75,13.027158549218166],[126,-12,76,13.080288041177496],[126,-12,77,13.185835417762346],[126,-12,78,13.31186456485936],[126,-12,79,13.443682409980038],[126,-11,64,13.235025691320587],[126,-11,65,13.18659028352867],[126,-11,66,13.165175060835024],[126,-11,67,13.177126539620458],[126,-11,68,13.197777050809313],[126,-11,69,13.210403979226596],[126,-11,70,13.216526321797094],[126,-11,71,13.222601220005712],[126,-11,72,13.224282157775853],[126,-11,73,13.099892467066242],[126,-11,74,12.917314329214829],[126,-11,75,12.827731520259814],[126,-11,76,12.880183159982616],[126,-11,77,12.987545612139371],[126,-11,78,13.115187434913965],[126,-11,79,13.247787633365533],[126,-10,64,13.033143305359578],[126,-10,65,12.983099310404373],[126,-10,66,12.961724353671217],[126,-10,67,12.974622291532746],[126,-10,68,12.995452554490264],[126,-10,69,13.007109061131166],[126,-10,70,13.014024267668688],[126,-10,71,13.022236169182628],[126,-10,72,13.023499968903577],[126,-10,73,12.91343712492095],[126,-10,74,12.734435068261982],[126,-10,75,12.633744260150594],[126,-10,76,12.686139223378824],[126,-10,77,12.793538571695096],[126,-10,78,12.922712457125142],[126,-10,79,13.054606502003226],[126,-9,64,12.844315157957361],[126,-9,65,12.795635024514299],[126,-9,66,12.774378837464909],[126,-9,67,12.785814732306356],[126,-9,68,12.806426546116125],[126,-9,69,12.819534162584326],[126,-9,70,12.826817863315842],[126,-9,71,12.835830654242868],[126,-9,72,12.834488134747337],[126,-9,73,12.744365056293438],[126,-9,74,12.552275323527217],[126,-9,75,12.439765892651318],[126,-9,76,12.49212127114776],[126,-9,77,12.602324125674226],[126,-9,78,12.733466854427418],[126,-9,79,12.864093333644426],[126,-8,64,12.65140571118488],[126,-8,65,12.605154405588879],[126,-8,66,12.582048067086177],[126,-8,67,12.593381006951772],[126,-8,68,12.61509627960177],[126,-8,69,12.627637599481599],[126,-8,70,12.635778603264928],[126,-8,71,12.645601249419213],[126,-8,72,12.644903361768842],[126,-8,73,12.600093684841394],[126,-8,74,12.397649573516002],[126,-8,75,12.246523690225159],[126,-8,76,12.301719011575745],[126,-8,77,12.409818851988275],[126,-8,78,12.541581729708806],[126,-8,79,12.672319264766232],[126,-7,64,12.455421146268876],[126,-7,65,12.408100394365153],[126,-7,66,12.388999830064312],[126,-7,67,12.399687599714103],[126,-7,68,12.421909979382914],[126,-7,69,12.435142952790617],[126,-7,70,12.443244532420506],[126,-7,71,12.452101910872313],[126,-7,72,12.451026026974379],[126,-7,73,12.407888430239291],[126,-7,74,12.20579820638951],[126,-7,75,12.056145470850156],[126,-7,76,12.108650202415019],[126,-7,77,12.217371259004855],[126,-7,78,12.350877380714097],[126,-7,79,12.481583843319788],[126,-6,64,12.261654381181103],[126,-6,65,12.212694892325308],[126,-6,66,12.195527317942332],[126,-6,67,12.206272129558819],[126,-6,68,12.227836247830234],[126,-6,69,12.23886413713752],[126,-6,70,12.248303997972561],[126,-6,71,12.257278909527152],[126,-6,72,12.256107554613937],[126,-6,73,12.220825463392348],[126,-6,74,12.011158695011538],[126,-6,75,11.864130680208879],[126,-6,76,11.917389628444107],[126,-6,77,12.024936858547687],[126,-6,78,12.159566697151234],[126,-6,79,12.292858052530883],[126,-5,64,12.063621162034716],[126,-5,65,12.016135203071851],[126,-5,66,12.000171437792506],[126,-5,67,12.0119937227015],[126,-5,68,12.033925917893828],[126,-5,69,12.044900682777229],[126,-5,70,12.05397281769742],[126,-5,71,12.06253975312934],[126,-5,72,12.060190247544114],[126,-5,73,12.043399532800537],[126,-5,74,12.027512191881096],[126,-5,75,11.930190531745573],[126,-5,76,11.824465882421311],[126,-5,77,11.829193816953326],[126,-5,78,11.963232152697922],[126,-5,79,12.098855251106205],[126,-4,64,11.857153801724772],[126,-4,65,11.808284569226238],[126,-4,66,11.794627768274829],[126,-4,67,11.809312413520747],[126,-4,68,11.830364050048129],[126,-4,69,11.840888623810372],[126,-4,70,11.847411201256241],[126,-4,71,11.857690701071407],[126,-4,72,11.854978272692442],[126,-4,73,11.83726670593878],[126,-4,74,11.8214312231794],[126,-4,75,11.731173388074346],[126,-4,76,11.619874000022921],[126,-4,77,11.638591437310053],[126,-4,78,11.773856536751959],[126,-4,79,11.909529907647995],[126,-3,64,11.654788083023442],[126,-3,65,11.6071997930137],[126,-3,66,11.592599573166218],[126,-3,67,11.607925683444575],[126,-3,68,11.631011225332498],[126,-3,69,11.641785721378412],[126,-3,70,11.65058192458232],[126,-3,71,11.664045780943757],[126,-3,72,11.661789361171236],[126,-3,73,11.645892859856927],[126,-3,74,11.631367128118244],[126,-3,75,11.54741744183859],[126,-3,76,11.428876976690507],[126,-3,77,11.460897747719173],[126,-3,78,11.595959628585822],[126,-3,79,11.730764559668172],[126,-2,64,11.457324309548705],[126,-2,65,11.408746442816277],[126,-2,66,11.396255556837204],[126,-2,67,11.411902294379987],[126,-2,68,11.433019187461772],[126,-2,69,11.44398030151143],[126,-2,70,11.45237056997692],[126,-2,71,11.466367353610178],[126,-2,72,11.463578739456384],[126,-2,73,11.448436829461807],[126,-2,74,11.433099998955248],[126,-2,75,11.343905286571802],[126,-2,76,11.218166925699771],[126,-2,77,11.268945305997327],[126,-2,78,11.40217059924001],[126,-2,79,11.536463642872809],[126,-1,64,11.26257431620988],[126,-1,65,11.216976240148691],[126,-1,66,11.203372951542985],[126,-1,67,11.218778063891609],[126,-1,68,11.24092459073094],[126,-1,69,11.251667868577767],[126,-1,70,11.259866284309986],[126,-1,71,11.27065672437802],[126,-1,72,11.269999668281564],[126,-1,73,11.254853562674205],[126,-1,74,11.202728301286285],[126,-1,75,11.08310275560327],[126,-1,76,10.968887886225913],[126,-1,77,11.076561569841815],[126,-1,78,11.212503764975077],[126,-1,79,11.34724046972602],[126,0,64,10.975494957051358],[126,0,65,10.928188701108567],[126,0,66,10.913658601621606],[126,0,67,10.924089128654483],[126,0,68,10.939665648669376],[126,0,69,10.943146671571752],[126,0,70,10.941407536966057],[126,0,71,10.939003131277534],[126,0,72,10.9161692893789],[126,0,73,10.872784401803264],[126,0,74,10.835976216524747],[126,0,75,10.82783638846779],[126,0,76,10.876422487003696],[126,0,77,10.984077626024979],[126,0,78,11.115418695863147],[126,0,79,11.243218301548984],[126,1,64,10.788030285440714],[126,1,65,10.73994370595565],[126,1,66,10.72335474589205],[126,1,67,10.734026008889582],[126,1,68,10.75057189264272],[126,1,69,10.754293494309374],[126,1,70,10.750062119908007],[126,1,71,10.746957852960382],[126,1,72,10.722386895017484],[126,1,73,10.677016814069965],[126,1,74,10.63963261036157],[126,1,75,10.632625254011723],[126,1,76,10.682272616093885],[126,1,77,10.789567181534629],[126,1,78,10.92178161097938],[126,1,79,11.048390445196565],[126,2,64,10.598495829739301],[126,2,65,10.550568313740067],[126,2,66,10.534132941669435],[126,2,67,10.546562435977926],[126,2,68,10.563202589277646],[126,2,69,10.563919929100722],[126,2,70,10.556868040600458],[126,2,71,10.552614516156241],[126,2,72,10.527405073024454],[126,2,73,10.482742575479488],[126,2,74,10.445908616170094],[126,2,75,10.438485870576754],[126,2,76,10.488212070263833],[126,2,77,10.591793115825622],[126,2,78,10.7246121450818],[126,2,79,10.852397390326798],[126,3,64,10.408375345239804],[126,3,65,10.35873086878753],[126,3,66,10.343972316626253],[126,3,67,10.35771811070564],[126,3,68,10.372421643783296],[126,3,69,10.374714122828848],[126,3,70,10.36541499265382],[126,3,71,10.35651126880146],[126,3,72,10.33266075430747],[126,3,73,10.288727022107086],[126,3,74,10.249185757140632],[126,3,75,10.245643807770687],[126,3,76,10.292695314967643],[126,3,77,10.397332918799],[126,3,78,10.527237459697387],[126,3,79,10.656825571603035],[126,4,64,10.216920341812889],[126,4,65,10.166767298991564],[126,4,66,10.150879441227678],[126,4,67,10.16489468776016],[126,4,68,10.179853962486],[126,4,69,10.179900145302607],[126,4,70,10.170996373508059],[126,4,71,10.162553585603483],[126,4,72,10.137686362271799],[126,4,73,10.092954736930194],[126,4,74,10.054287548292928],[126,4,75,10.04956083738521],[126,4,76,10.09862153158791],[126,4,77,10.20303131368395],[126,4,78,10.332876921172682],[126,4,79,10.466576019528196],[126,5,64,10.027677189854224],[126,5,65,9.977310913805985],[126,5,66,9.956738470921914],[126,5,67,9.969098612170184],[126,5,68,9.983795012959414],[126,5,69,9.98457487182748],[126,5,70,9.977227830724942],[126,5,71,9.969428345940727],[126,5,72,9.944648802704979],[126,5,73,9.899154772883119],[126,5,74,9.859353355250429],[126,5,75,9.85335809755924],[126,5,76,9.902772362632259],[126,5,77,10.005925070673715],[126,5,78,10.137484145623448],[126,5,79,10.272754213469716],[126,6,64,9.836038007855525],[126,6,65,9.78467173408359],[126,6,66,9.762442428160618],[126,6,67,9.773665737537085],[126,6,68,9.787029623318293],[126,6,69,9.788495764675737],[126,6,70,9.78116030262167],[126,6,71,9.773822543348928],[126,6,72,9.748973557328334],[126,6,73,9.704876005158422],[126,6,74,9.666362875529476],[126,6,75,9.65865316145919],[126,6,76,9.707651462347743],[126,6,77,9.810274587061679],[126,6,78,9.94145048424398],[126,6,79,10.080280416639798],[126,7,64,9.642986778548172],[126,7,65,9.590070624081713],[126,7,66,9.56919628923051],[126,7,67,9.577530447219146],[126,7,68,9.591570667210243],[126,7,69,9.59474866756526],[126,7,70,9.588244803549088],[126,7,71,9.578166485250897],[126,7,72,9.552571959843625],[126,7,73,9.507852282528022],[126,7,74,9.472295275064043],[126,7,75,9.467663082997866],[126,7,76,9.514731935268731],[126,7,77,9.615904455677407],[126,7,78,9.74895408632849],[126,7,79,9.884975142229614],[126,8,64,9.450452739523737],[126,8,65,9.397575267002583],[126,8,66,9.376423726786362],[126,8,67,9.385627468245422],[126,8,68,9.402404374157282],[126,8,69,9.408115443502684],[126,8,70,9.402303599922607],[126,8,71,9.392206728443135],[126,8,72,9.364898643458531],[126,8,73,9.321003063737649],[126,8,74,9.286553376138343],[126,8,75,9.2837413117129],[126,8,76,9.332798280228479],[126,8,77,9.43399140058759],[126,8,78,9.565030337523906],[126,8,79,9.698765661176086],[126,9,64,9.24940208823056],[126,9,65,9.195544873437894],[126,9,66,9.171778560810122],[126,9,67,9.181134982444997],[126,9,68,9.196819953179203],[126,9,69,9.204236668366242],[126,9,70,9.20060737984008],[126,9,71,9.191782339073262],[126,9,72,9.164218355179742],[126,9,73,9.121279179479009],[126,9,74,9.085885507397814],[126,9,75,9.085436381079344],[126,9,76,9.135689556757637],[126,9,77,9.235950330170489],[126,9,78,9.365750863335064],[126,9,79,9.498776624582423],[126,10,64,9.05978939479964],[126,10,65,9.004660315538818],[126,10,66,8.978315041327994],[126,10,67,8.985778719672739],[126,10,68,9.005065088762683],[126,10,69,9.011482171109034],[126,10,70,9.006399531228173],[126,10,71,8.997508640416676],[126,10,72,8.96854654091208],[126,10,73,8.926368300000918],[126,10,74,8.891489367798163],[126,10,75,8.89258882812636],[126,10,76,8.9410169036126],[126,10,77,9.039717464226063],[126,10,78,9.171151048319317],[126,10,79,9.304674478309813],[126,11,64,8.867178811464395],[126,11,65,8.813241351214582],[126,11,66,8.787003209449951],[126,11,67,8.793788012400277],[126,11,68,8.8132601103964],[126,11,69,8.819002824028221],[126,11,70,8.813821919211723],[126,11,71,8.804823596913138],[126,11,72,8.773781834801149],[126,11,73,8.729935582455626],[126,11,74,8.696828905169754],[126,11,75,8.697320622406004],[126,11,76,8.746691274545578],[126,11,77,8.844624410925707],[126,11,78,8.977867941671459],[126,11,79,9.110804131973255],[126,12,64,8.678482908909077],[126,12,65,8.622287503992919],[126,12,66,8.597275157047987],[126,12,67,8.605086809504042],[126,12,68,8.623898323599235],[126,12,69,8.628816484825272],[126,12,70,8.622935415858533],[126,12,71,8.611651650578228],[126,12,72,8.579447385134912],[126,12,73,8.533288385662095],[126,12,74,8.500586929750652],[126,12,75,8.501785334831832],[126,12,76,8.552495322974538],[126,12,77,8.651356583223437],[126,12,78,8.783957783635268],[126,12,79,8.918573487655875],[126,13,64,8.495475202511068],[126,13,65,8.441193651784355],[126,13,66,8.416079074125761],[126,13,67,8.421249585609912],[126,13,68,8.440760350892521],[126,13,69,8.445183638159142],[126,13,70,8.44100244016963],[126,13,71,8.431412865805154],[126,13,72,8.397037912645938],[126,13,73,8.352281823335982],[126,13,74,8.316248846821034],[126,13,75,8.31830839774706],[126,13,76,8.367149241705498],[126,13,77,8.469132871331436],[126,13,78,8.602399435704658],[126,13,79,8.73485512489967],[126,14,64,8.301870271146369],[126,14,65,8.248451933438606],[126,14,66,8.225954531028686],[126,14,67,8.23141721066469],[126,14,68,8.248297354989035],[126,14,69,8.254130583437606],[126,14,70,8.249661880186919],[126,14,71,8.240438071249681],[126,14,72,8.205027371157778],[126,14,73,8.158724721991524],[126,14,74,8.120052237357358],[126,14,75,8.121520680840813],[126,14,76,8.17358939369248],[126,14,77,8.27742775076413],[126,14,78,8.40821506975215],[126,14,79,8.5388346514636],[126,15,64,8.107280724219589],[126,15,65,8.055936161654461],[126,15,66,8.035340837897813],[126,15,67,8.0390757687847],[126,15,68,8.054241089961728],[126,15,69,8.060510346781767],[126,15,70,8.05869919020221],[126,15,71,8.047212579498778],[126,15,72,8.012884301177326],[126,15,73,7.9673630692144215],[126,15,74,7.9254436357444575],[126,15,75,7.924480961463027],[126,15,76,7.975270456183751],[126,15,77,8.083146137463684],[126,15,78,8.212532753351937],[126,15,79,8.343110488625019],[126,16,64,7.914865297497138],[126,16,65,7.864963747133527],[126,16,66,7.846911667304796],[126,16,67,7.854250918376955],[126,16,68,7.871686053259494],[126,16,69,7.8765555843772095],[126,16,70,7.878559187265842],[126,16,71,7.86530821094991],[126,16,72,7.831455205350062],[126,16,73,7.786407750416164],[126,16,74,7.746241042817828],[126,16,75,7.742682817397861],[126,16,76,7.794767819589747],[126,16,77,7.9034495113827195],[126,16,78,8.034429927730608],[126,16,79,8.164860893845477],[126,17,64,7.7207719607619385],[126,17,65,7.6688902043264155],[126,17,66,7.651388053992345],[126,17,67,7.65956894242788],[126,17,68,7.677101944174689],[126,17,69,7.681243003214153],[126,17,70,7.682819749108955],[126,17,71,7.670877867683543],[126,17,72,7.635096899845157],[126,17,73,7.589913461628526],[126,17,74,7.5516336317979755],[126,17,75,7.5462249506226895],[126,17,76,7.598444799336781],[126,17,77,7.706163435492513],[126,17,78,7.839586108511565],[126,17,79,7.971169715986323],[126,18,64,7.525021082563238],[126,18,65,7.471855962181368],[126,18,66,7.456271804377629],[126,18,67,7.462983341636595],[126,18,68,7.483838315380865],[126,18,69,7.4895135390756575],[126,18,70,7.486414960265577],[126,18,71,7.47274627260289],[126,18,72,7.438629908997617],[126,18,73,7.393435114109917],[126,18,74,7.355826876416122],[126,18,75,7.348649308284164],[126,18,76,7.400006576035417],[126,18,77,7.509087660084987],[126,18,78,7.643354135361789],[126,18,79,7.774980639262344],[126,19,64,7.329218746325785],[126,19,65,7.277326828815477],[126,19,66,7.260621751095003],[126,19,67,7.269008948380121],[126,19,68,7.287268000693924],[126,19,69,7.294223604439601],[126,19,70,7.291126542517104],[126,19,71,7.2775525374149375],[126,19,72,7.240782340453407],[126,19,73,7.1959273195999],[126,19,74,7.157466729289426],[126,19,75,7.149605136208512],[126,19,76,7.202181318064677],[126,19,77,7.310647016826289],[126,19,78,7.445593264341906],[126,19,79,7.576599875891951],[126,20,64,7.135522601786224],[126,20,65,7.082793861046596],[126,20,66,7.062306628072787],[126,20,67,7.069612590777964],[126,20,68,7.087594337610746],[126,20,69,7.0965273430108455],[126,20,70,7.090801916453219],[126,20,71,7.07691459036643],[126,20,72,7.041026509965564],[126,20,73,6.995553837428067],[126,20,74,6.952646825689601],[126,20,75,6.949637177433503],[126,20,76,7.005502883677361],[126,20,77,7.113493414635704],[126,20,78,7.2457968066527485],[126,20,79,7.375980614013431],[126,21,64,6.942758367257093],[126,21,65,6.888991171059223],[126,21,66,6.863546518248074],[126,21,67,6.870276636967947],[126,21,68,6.885591895274802],[126,21,69,6.892427503329415],[126,21,70,6.8812091675280636],[126,21,71,6.860983994166013],[126,21,72,6.821258316947449],[126,21,73,6.769444739552339],[126,21,74,6.727530112361395],[126,21,75,6.725145336073195],[126,21,76,6.783448521469941],[126,21,77,6.894114692899478],[126,21,78,7.026150841196007],[126,21,79,7.157716018598333],[126,22,64,6.745769582581484],[126,22,65,6.692133896891919],[126,22,66,6.666096024917538],[126,22,67,6.674956695614855],[126,22,68,6.689897159190294],[126,22,69,6.696154607461158],[126,22,70,6.686253484784974],[126,22,71,6.664838484559086],[126,22,72,6.626418395407126],[126,22,73,6.5711958865166125],[126,22,74,6.530779886216936],[126,22,75,6.5276748399644235],[126,22,76,6.584658756336982],[126,22,77,6.695733779030136],[126,22,78,6.829029447169695],[126,22,79,6.962955299505652],[126,23,64,6.548922012147226],[126,23,65,6.4930030286693015],[126,23,66,6.470540776235443],[126,23,67,6.480671802336859],[126,23,68,6.493640062634574],[126,23,69,6.498985912332969],[126,23,70,6.489655641012027],[126,23,71,6.47081326697964],[126,23,72,6.42917191037626],[126,23,73,6.370959168575502],[126,23,74,6.332445793686453],[126,23,75,6.329810274958739],[126,23,76,6.38726041001217],[126,23,77,6.495201849485691],[126,23,78,6.633194574030292],[126,23,79,6.767771665926731],[126,24,64,6.358441266190597],[126,24,65,6.305498508537771],[126,24,66,6.285054721667415],[126,24,67,6.290954809348646],[126,24,68,6.304998929011736],[126,24,69,6.3091308397040455],[126,24,70,6.301226295579057],[126,24,71,6.284661328519462],[126,24,72,6.239197957109944],[126,24,73,6.182359999571248],[126,24,74,6.143642194626722],[126,24,75,6.143516394493641],[126,24,76,6.1969712346545],[126,24,77,6.304922940810322],[126,24,78,6.44447421117463],[126,24,79,6.581153327196015],[126,25,64,6.1632012693869465],[126,25,65,6.108501041783468],[126,25,66,6.084124754715341],[126,25,67,6.082711484041194],[126,25,68,6.095741663536956],[126,25,69,6.103893745838405],[126,25,70,6.097338883758721],[126,25,71,6.084785685742189],[126,25,72,6.046958651037491],[126,25,73,5.997706020093606],[126,25,74,5.959575372942429],[126,25,75,5.959149036215667],[126,25,76,6.010224631202177],[126,25,77,6.1150364906521055],[126,25,78,6.2498593868513765],[126,25,79,6.383993879646838],[126,26,64,5.967313957158683],[126,26,65,5.911914091073817],[126,26,66,5.888100875385774],[126,26,67,5.8861192396850175],[126,26,68,5.901127016484114],[126,26,69,5.909019105877278],[126,26,70,5.902229729651757],[126,26,71,5.888041247705202],[126,26,72,5.851790858825995],[126,26,73,5.803719295830688],[126,26,74,5.766173259696533],[126,26,75,5.7660553136152215],[126,26,76,5.815960090661846],[126,26,77,5.921764148448103],[126,26,78,6.0527921433387935],[126,26,79,6.1849321415695755],[126,27,64,5.771780127379808],[126,27,65,5.714409038046209],[126,27,66,5.691468253897685],[126,27,67,5.691893103832108],[126,27,68,5.70745923138917],[126,27,69,5.714302555848042],[126,27,70,5.707826371804262],[126,27,71,5.693168377838447],[126,27,72,5.657588709406507],[126,27,73,5.609796881818508],[126,27,74,5.573966946814295],[126,27,75,5.570413416131239],[126,27,76,5.61935867109076],[126,27,77,5.728176328154968],[126,27,78,5.857259547076354],[126,27,79,5.987316528356683],[126,28,64,5.573607653230866],[126,28,65,5.51459587856759],[126,28,66,5.491048989868943],[126,28,67,5.496734577502277],[126,28,68,5.508386074121654],[126,28,69,5.513946403980773],[126,28,70,5.509504624075626],[126,28,71,5.493341907083054],[126,28,72,5.455903610190796],[126,28,73,5.40773031989664],[126,28,74,5.37196710253451],[126,28,75,5.369065720010379],[126,28,76,5.420185673175514],[126,28,77,5.527050617878152],[126,28,78,5.656118408993297],[126,28,79,5.788066806866678],[126,29,64,5.378764193244926],[126,29,65,5.3218413005951595],[126,29,66,5.299886422049419],[126,29,67,5.306794386570692],[126,29,68,5.320743686223673],[126,29,69,5.328881078780497],[126,29,70,5.32318759702411],[126,29,71,5.307738746120106],[126,29,72,5.266415826803612],[126,29,73,5.217892457897491],[126,29,74,5.179465460332588],[126,29,75,5.179038863741758],[126,29,76,5.232377320690747],[126,29,77,5.337300457217969],[126,29,78,5.466388768906286],[126,29,79,5.598085283210757],[126,30,64,5.18543925659836],[126,30,65,5.128195915898151],[126,30,66,5.1068629851438585],[126,30,67,5.113320276595678],[126,30,68,5.127774026873657],[126,30,69,5.135682343448296],[126,30,70,5.130686009531866],[126,30,71,5.115744995693348],[126,30,72,5.072412839712233],[126,30,73,5.020053632038371],[126,30,74,4.981429974270126],[126,30,75,4.982258177135487],[126,30,76,5.037659582087653],[126,30,77,5.1407330812277285],[126,30,78,5.2709692803779],[126,30,79,5.399713655049222],[126,31,64,4.98917439025765],[126,31,65,4.931644089371933],[126,31,66,4.911166455453407],[126,31,67,4.920433224604221],[126,31,68,4.934491511507603],[126,31,69,4.9424272024436045],[126,31,70,4.935114322616226],[126,31,71,4.921022002372795],[126,31,72,4.878136474203815],[126,31,73,4.8236572304553045],[126,31,74,4.784620322700469],[126,31,75,4.787143467043216],[126,31,76,4.841297208049397],[126,31,77,4.9472207359362494],[126,31,78,5.077432671613258],[126,31,79,5.20490588765405],[126,32,64,4.804280455895487],[126,32,65,4.746506045378018],[126,32,66,4.72712243734627],[126,32,67,4.738386598468392],[126,32,68,4.752735298762449],[126,32,69,4.758005199121235],[126,32,70,4.750303213496705],[126,32,71,4.733831556268836],[126,32,72,4.694197522304178],[126,32,73,4.639895300004294],[126,32,74,4.600461429322064],[126,32,75,4.5989966944757175],[126,32,76,4.653278720983261],[126,32,77,4.762287558306758],[126,32,78,4.892457022115949],[126,32,79,5.018798673538991],[126,33,64,4.616406913372025],[126,33,65,4.562483792512801],[126,33,66,4.544636914958434],[126,33,67,4.555655072649033],[126,33,68,4.57055936787144],[126,33,69,4.572809626203418],[126,33,70,4.5623677110352885],[126,33,71,4.5389072147898455],[126,33,72,4.494392251798755],[126,33,73,4.435748367556968],[126,33,74,4.394313341839756],[126,33,75,4.390607701379927],[126,33,76,4.44610392310244],[126,33,77,4.556658013742695],[126,33,78,4.687072810119618],[126,33,79,4.813872123742184],[126,34,64,4.421098883960461],[126,34,65,4.366429125894311],[126,34,66,4.350295873690048],[126,34,67,4.360652342397394],[126,34,68,4.37531551531214],[126,34,69,4.379061152497062],[126,34,70,4.3694083469969955],[126,34,71,4.344457710533623],[126,34,72,4.299278222129259],[126,34,73,4.237972317434034],[126,34,74,4.198160054565349],[126,34,75,4.197212202955331],[126,34,76,4.2517597213851825],[126,34,77,4.361329553121113],[126,34,78,4.492906912500793],[126,34,79,4.6193711035768],[126,35,64,4.224825196007307],[126,35,65,4.169305210727137],[126,35,66,4.153429333028013],[126,35,67,4.162907667552852],[126,35,68,4.177641032057379],[126,35,69,4.184311815275928],[126,35,70,4.1751463120507575],[126,35,71,4.152347730205693],[126,35,72,4.103869783038553],[126,35,73,4.042540118382654],[126,35,74,4.000784311142828],[126,35,75,4.002200380613847],[126,35,76,4.05916350373162],[126,35,77,4.169029776575112],[126,35,78,4.29954319407092],[126,35,79,4.427404117239028],[126,36,64,4.0170142765031756],[126,36,65,3.9634899046900274],[126,36,66,3.945080088568788],[126,36,67,3.9578577665702555],[126,36,68,3.9751435588847897],[126,36,69,3.9825623257831984],[126,36,70,3.9751550216223803],[126,36,71,3.950871731793686],[126,36,72,3.900112707417835],[126,36,73,3.8381585438028565],[126,36,74,3.7951457786391796],[126,36,75,3.7992914692942836],[126,36,76,3.8570346376281064],[126,36,77,3.966561916996261],[126,36,78,4.0967093331947915],[126,36,79,4.225263546987797],[126,37,64,3.8166323612376845],[126,37,65,3.7611385246792826],[126,37,66,3.7451947406453843],[126,37,67,3.758799022368947],[126,37,68,3.7770956488204357],[126,37,69,3.781452454102579],[126,37,70,3.7769042255468555],[126,37,71,3.759238001255497],[126,37,72,3.7137575982171773],[126,37,73,3.658030614899372],[126,37,74,3.618422378659443],[126,37,75,3.6207206847811224],[126,37,76,3.6763383097987603],[126,37,77,3.783695835593257],[126,37,78,3.912233824901251],[126,37,79,4.037149710474014],[126,38,64,3.61685499230617],[126,38,65,3.5613483092127938],[126,38,66,3.5487975611271367],[126,38,67,3.562985412846948],[126,38,68,3.5799815910127353],[126,38,69,3.585668130939331],[126,38,70,3.5817816046962],[126,38,71,3.5643069499235627],[126,38,72,3.5191967139796567],[126,38,73,3.465916918421805],[126,38,74,3.4253250014449073],[126,38,75,3.4269591165711932],[126,38,76,3.4804157529102335],[126,38,77,3.5873819388861614],[126,38,78,3.713389466924861],[126,38,79,3.84089607866706],[126,39,64,3.418338800752814],[126,39,65,3.3631568886116203],[126,39,66,3.348566310071917],[126,39,67,3.366441333163002],[126,39,68,3.3838829350829207],[126,39,69,3.3896083721352834],[126,39,70,3.3845885522953303],[126,39,71,3.367821279574688],[126,39,72,3.326136270587233],[126,39,73,3.2745822424105646],[126,39,74,3.2331657693634943],[126,39,75,3.2335736443403156],[126,39,76,3.2850847076898697],[126,39,77,3.3884732232962995],[126,39,78,3.518220035519004],[126,39,79,3.6472445970037097],[126,40,64,3.233692630427637],[126,40,65,3.17852090359803],[126,40,66,3.164488539655966],[126,40,67,3.182863834708317],[126,40,68,3.2003780784666795],[126,40,69,3.2074092962973015],[126,40,70,3.200229248583689],[126,40,71,3.184785676651998],[126,40,72,3.14414943320677],[126,40,73,3.09133989468841],[126,40,74,3.052550484519123],[126,40,75,3.0512072815936757],[126,40,76,3.101648078740262],[126,40,77,3.205207105503184],[126,40,78,3.333423694883163],[126,40,79,3.4659781462806194],[126,41,64,3.0376391512203895],[126,41,65,2.9838845213763037],[126,41,66,2.9695613593874226],[126,41,67,2.9878144198391974],[126,41,68,3.0054131099721286],[126,41,69,3.011257971194735],[126,41,70,3.0010848095512106],[126,41,71,2.9862901289380224],[126,41,72,2.946182143002009],[126,41,73,2.8965243445820437],[126,41,74,2.8574918488173027],[126,41,75,2.856580051293816],[126,41,76,2.9064496633151076],[126,41,77,3.0099931481781077],[126,41,78,3.138979581137075],[126,41,79,3.270189872464295],[126,42,64,2.8431318280543914],[126,42,65,2.7897091469777155],[126,42,66,2.77423715526729],[126,42,67,2.791154256853681],[126,42,68,2.811175167616474],[126,42,69,2.815534758687529],[126,42,70,2.8049477843685824],[126,42,71,2.7877760776958183],[126,42,72,2.750038518488305],[126,42,73,2.6990044582860873],[126,42,74,2.662430953356968],[126,42,75,2.66095844172221],[126,42,76,2.7116338299057134],[126,42,77,2.814778862094597],[126,42,78,2.942031097892454],[126,42,79,3.076615612704204],[126,43,64,2.649528372204107],[126,43,65,2.5954468319878634],[126,43,66,2.5802014439544805],[126,43,67,2.59398518680377],[126,43,68,2.617257073509276],[126,43,69,2.621940851146004],[126,43,70,2.6111252463023114],[126,43,71,2.594212371898937],[126,43,72,2.553290958445379],[126,43,73,2.504541840443555],[126,43,74,2.4646701543628855],[126,43,75,2.460088731636932],[126,43,76,2.513254947897561],[126,43,77,2.619043504191397],[126,43,78,2.748054858423924],[126,43,79,2.881550766048584],[126,44,64,2.4458456109229987],[126,44,65,2.3913510067796886],[126,44,66,2.375361312311929],[126,44,67,2.389250002760142],[126,44,68,2.4115256920197035],[126,44,69,2.416959815724215],[126,44,70,2.4074301282320034],[126,44,71,2.3916401805514615],[126,44,72,2.350014100577045],[126,44,73,2.297315707241117],[126,44,74,2.2548756615883656],[126,44,75,2.252957731481417],[126,44,76,2.3062927967144073],[126,44,77,2.410476504019284],[126,44,78,2.5406228316177333],[126,44,79,2.675190322572919],[126,45,64,2.226973802108673],[126,45,65,2.170849313992894],[126,45,66,2.1576715496640677],[126,45,67,2.1748311690703144],[126,45,68,2.195512838940741],[126,45,69,2.2039833577086183],[126,45,70,2.199201598120694],[126,45,71,2.1864322849877165],[126,45,72,2.1484293619154005],[126,45,73,2.0955751149803588],[126,45,74,2.05309616601423],[126,45,75,2.05180816167388],[126,45,76,2.1083458113784292],[126,45,77,2.2164583200937753],[126,45,78,2.352250123532852],[126,45,79,2.490157180552203],[126,46,64,2.029388311678779],[126,46,65,1.9756143011064673],[126,46,66,1.962646410558415],[126,46,67,1.9816866951776888],[126,46,68,2.002000657310216],[126,46,69,2.0090391643861887],[126,46,70,2.0056547804898206],[126,46,71,1.9911303176696016],[126,46,72,1.9537375057805864],[126,46,73,1.9009396253850939],[126,46,74,1.8573323278056686],[126,46,75,1.854354147677455],[126,46,76,1.9124289525217533],[126,46,77,2.0229507265499462],[126,46,78,2.159370734567174],[126,46,79,2.296148141408176],[126,47,64,1.8325255081808596],[126,47,65,1.7806663697711336],[126,47,66,1.7677751812992544],[126,47,67,1.7880055576695375],[126,47,68,1.8088091169102387],[126,47,69,1.8152498002523774],[126,47,70,1.8115772546444835],[126,47,71,1.7987949936624874],[126,47,72,1.7569629066168058],[126,47,73,1.7037206811211327],[126,47,74,1.6608746501856668],[126,47,75,1.6576568896427943],[126,47,76,1.715698671175449],[126,47,77,1.8252823720942197],[126,47,78,1.9625020547109016],[126,47,79,2.1000663628620595],[126,48,64,1.6524201383570836],[126,48,65,1.6027182004406828],[126,48,66,1.5883815654921813],[126,48,67,1.6091754002706748],[126,48,68,1.6314365412154137],[126,48,69,1.636179903137068],[126,48,70,1.629911978975684],[126,48,71,1.6168584376699164],[126,48,72,1.5749086989246712],[126,48,73,1.5187398341217595],[126,48,74,1.4752406924531822],[126,48,75,1.474640149772948],[126,48,76,1.5323631482111777],[126,48,77,1.640314158996114],[126,48,78,1.776516684877471],[126,48,79,1.914484878653765],[126,49,64,1.4700695904729908],[126,49,65,1.4192389994296548],[126,49,66,1.405228089417835],[126,49,67,1.4281741232165985],[126,49,68,1.450440655300822],[126,49,69,1.4554786904010728],[126,49,70,1.4452640241063506],[126,49,71,1.4247677337316358],[126,49,72,1.3754309644501912],[126,49,73,1.313666644017093],[126,49,74,1.268278816733681],[126,49,75,1.2693734281513638],[126,49,76,1.3251115510623843],[126,49,77,1.4349991698795497],[126,49,78,1.5671589630209821],[126,49,79,1.7082655740341013],[126,50,64,1.2774637769045798],[126,50,65,1.2271706873712545],[126,50,66,1.2135114125515132],[126,50,67,1.2344004105692996],[126,50,68,1.2584445767665648],[126,50,69,1.264423724076525],[126,50,70,1.2539068469093833],[126,50,71,1.230483428288563],[126,50,72,1.1814224637493422],[126,50,73,1.1184997218249757],[126,50,74,1.0714962304864513],[126,50,75,1.070708129685053],[126,50,76,1.1253474404841217],[126,50,77,1.2363114055315718],[126,50,78,1.3700308516869906],[126,50,79,1.5125150625670158],[126,51,64,1.0852603069110072],[126,51,65,1.0341755617763557],[126,51,66,1.0207298996751433],[126,51,67,1.040060849504527],[126,51,68,1.0634166414466162],[126,51,69,1.0724809707844936],[126,51,70,1.0631535575154951],[126,51,71,1.0387518811548877],[126,51,72,0.9874832524291078],[126,51,73,0.9208237202716467],[126,51,74,0.8761905396879152],[126,51,75,0.8741620077667156],[126,51,76,0.9269721536534458],[126,51,77,1.0373700218890638],[126,51,78,1.1745534067525838],[126,51,79,1.316230422048001],[126,52,64,0.9437845326623933],[126,52,65,0.891785420741444],[126,52,66,0.8789004084897775],[126,52,67,0.8962893613963381],[126,52,68,0.920879549381901],[126,52,69,0.9287052278327461],[126,52,70,0.9224132664158491],[126,52,71,0.8955527974177098],[126,52,72,0.843816968498903],[126,52,73,0.7728311517909658],[126,52,74,0.7285346318784225],[126,52,75,0.7277800779878537],[126,52,76,0.7806886515181937],[126,52,77,0.8901547958009104],[126,52,78,1.0300372010481633],[126,52,79,1.170527721363017],[126,53,64,0.7577937335713362],[126,53,65,0.7058465857973437],[126,53,66,0.6922580067618473],[126,53,67,0.7080336167405803],[126,53,68,0.7303344142555499],[126,53,69,0.7398106733948395],[126,53,70,0.7327429320406453],[126,53,71,0.7091439440875738],[126,53,72,0.6540168416970553],[126,53,73,0.5806527382631534],[126,53,74,0.5347180891490213],[126,53,75,0.5362733401499284],[126,53,76,0.5884797918399339],[126,53,77,0.6975110377970393],[126,53,78,0.8365213805712441],[126,53,79,0.9739117571024086],[126,54,64,0.563654995558745],[126,54,65,0.5095574877575271],[126,54,66,0.49590699122098847],[126,54,67,0.5119534103975745],[126,54,68,0.5342784996051911],[126,54,69,0.5438616942495214],[126,54,70,0.5358132730494214],[126,54,71,0.515578214310102],[126,54,72,0.4582145944041996],[126,54,73,0.3836757805482488],[126,54,74,0.33624304320155357],[126,54,75,0.34044516691861815],[126,54,76,0.3948721740731619],[126,54,77,0.5023613958133606],[126,54,78,0.6400028184340684],[126,54,79,0.7795007113181025],[126,55,64,0.37118061129538804],[126,55,65,0.31440787351687677],[126,55,66,0.2966107034145242],[126,55,67,0.3151744213464305],[126,55,68,0.33966600449064366],[126,55,69,0.3489684675849354],[126,55,70,0.3400423032266947],[126,55,71,0.31999777461288226],[126,55,72,0.2627567809737062],[126,55,73,0.1902548563755858],[126,55,74,0.14191220536304266],[126,55,75,0.14138529087129686],[126,55,76,0.19984561733303846],[126,55,77,0.30533794526190594],[126,55,78,0.44352632942612025],[126,55,79,0.5856112329521622],[126,56,64,0.19055517349620124],[126,56,65,0.12949745790900677],[126,56,66,0.11412031660703933],[126,56,67,0.13424447902144276],[126,56,68,0.15907958795579646],[126,56,69,0.166978393957949],[126,56,70,0.15684638692087338],[126,56,71,0.13569001917199514],[126,56,72,0.07969890003738611],[126,56,73,0.008508941645803125],[126,56,74,-0.005844523908749899],[126,56,75,-0.0051614761192997904],[126,56,76,0.014815444376820724],[126,56,77,0.12151563000994761],[126,56,78,0.25974711954976826],[126,56,79,0.40042918595969434],[126,57,64,9.274540837347633E-4],[126,57,65,-0.022910306521045837],[126,57,66,-0.032055431454250743],[126,57,67,-0.02935043843497434],[126,57,68,-0.023160030652840946],[126,57,69,-0.019890926791761576],[126,57,70,-0.01975197333767456],[126,57,71,-0.023469375206546683],[126,57,72,-0.03609861492525121],[126,57,73,-0.05153023124971873],[126,57,74,-0.06117447901973355],[126,57,75,-0.058800306446591566],[126,57,76,-0.043582838620902564],[126,57,77,-0.016914058188301856],[126,57,78,0.0579406129481195],[126,57,79,0.19870472457475066],[126,58,64,-0.0036538819089507873],[126,58,65,-0.025838939242928738],[126,58,66,-0.036930399177071846],[126,58,67,-0.0354415977131316],[126,58,68,-0.030541594834822383],[126,58,69,-0.026763064288177277],[126,58,70,-0.02597555854490853],[126,58,71,-0.028698372901784758],[126,58,72,-0.042605758064912264],[126,58,73,-0.05877258141467037],[126,58,74,-0.07193792354252954],[126,58,75,-0.0684309911855128],[126,58,76,-0.051852655999759856],[126,58,77,-0.026549193300341473],[126,58,78,0.007966788160394894],[126,58,79,0.04511349145323393],[126,59,64,-0.053183527993538315],[126,59,65,-0.07588244595585096],[126,59,66,-0.08810545295048043],[126,59,67,-0.08704684264815575],[126,59,68,-0.08240924590540719],[126,59,69,-0.07722177887213298],[126,59,70,-0.07447927415353826],[126,59,71,-0.0766564677305222],[126,59,72,-0.08948021522971655],[126,59,73,-0.1073623366621852],[126,59,74,-0.12031246838429327],[126,59,75,-0.11640953184922359],[126,59,76,-0.10024430819703767],[126,59,77,-0.07344784630618822],[126,59,78,-0.04109208509588566],[126,59,79,-0.005420190871176844],[126,60,64,-0.10852564946336977],[126,60,65,-0.13294048459211355],[126,60,66,-0.1479870478335209],[126,60,67,-0.14631042803461186],[126,60,68,-0.14286005151926578],[126,60,69,-0.13810669612181042],[126,60,70,-0.1339501067177662],[126,60,71,-0.1343722227292829],[126,60,72,-0.14819923085528805],[126,60,73,-0.16310819474787924],[126,60,74,-0.17718207747859419],[126,60,75,-0.17499339439626238],[126,60,76,-0.1591550508573734],[126,60,77,-0.13192667636993682],[126,60,78,-0.09904477400152209],[126,60,79,-0.06448519919796322],[126,61,64,-0.16023526145752404],[126,61,65,-0.17951075869050764],[126,61,66,-0.18475387774891722],[126,61,67,-0.18187802950865628],[126,61,68,-0.17532060684140577],[126,61,69,-0.16988879010942726],[126,61,70,-0.1663215124863872],[126,61,71,-0.16701268550373616],[126,61,72,-0.18061346242730134],[126,61,73,-0.19724808462368112],[126,61,74,-0.20723110537427986],[126,61,75,-0.20801405479665755],[126,61,76,-0.19135527474296246],[126,61,77,-0.16328118109857453],[126,61,78,-0.13226750715435331],[126,61,79,-0.09839792036895556],[126,62,64,-0.20868880676974877],[126,62,65,-0.22772954486256464],[126,62,66,-0.2328506897311071],[126,62,67,-0.23052062342982782],[126,62,68,-0.22401439236826876],[126,62,69,-0.22004043183397057],[126,62,70,-0.216087670561182],[126,62,71,-0.21933903944413524],[126,62,72,-0.232366501764262],[126,62,73,-0.24803326268490195],[126,62,74,-0.2573510757811305],[126,62,75,-0.25540435772211445],[126,62,76,-0.23847386688692168],[126,62,77,-0.21198759190638944],[126,62,78,-0.17840883748588696],[126,62,79,-0.1466396986545946],[126,63,64,-0.3276114642379614],[126,63,65,-0.3449771318497115],[126,63,66,-0.35018056821114363],[126,63,67,-0.34523174511483845],[126,63,68,-0.33835596790804384],[126,63,69,-0.3341397797580714],[126,63,70,-0.33102730843475997],[126,63,71,-0.33227068570113605],[126,63,72,-0.3429796567217079],[126,63,73,-0.35898778213422694],[126,63,74,-0.3640085523040904],[126,63,75,-0.3592417430218707],[126,63,76,-0.3436091723913295],[126,63,77,-0.31497574621377583],[126,63,78,-0.2797224067625478],[126,63,79,-0.24637864996682265],[126,64,64,-0.36809291190970467],[126,64,65,-0.38563104820021055],[126,64,66,-0.3899148371037936],[126,64,67,-0.3856221689091883],[126,64,68,-0.37895885867980217],[126,64,69,-0.37474179617450976],[126,64,70,-0.37249144633452624],[126,64,71,-0.37316352496174787],[126,64,72,-0.3834486035920689],[126,64,73,-0.3998110591902007],[126,64,74,-0.4039971802714104],[126,64,75,-0.3978972589748938],[126,64,76,-0.3834027671824772],[126,64,77,-0.3549842037620283],[126,64,78,-0.31981121680245334],[126,64,79,-0.2842808174851593],[126,65,64,-0.41811137319871167],[126,65,65,-0.43523772308641656],[126,65,66,-0.4417739660511965],[126,65,67,-0.43761470212251935],[126,65,68,-0.4326463276674777],[126,65,69,-0.4276427559745724],[126,65,70,-0.4272907774155267],[126,65,71,-0.4270789079285112],[126,65,72,-0.4357992617175434],[126,65,73,-0.4533107601630464],[126,65,74,-0.45820950287527756],[126,65,75,-0.4519732543375928],[126,65,76,-0.4362578461570588],[126,65,77,-0.40501762761915144],[126,65,78,-0.3692788615640265],[126,65,79,-0.33334905659581193],[126,66,64,-0.47323141792424467],[126,66,65,-0.493059915080073],[126,66,66,-0.5003297395719167],[126,66,67,-0.4944984005660971],[126,66,68,-0.49031256068710627],[126,66,69,-0.486241989480845],[126,66,70,-0.4848988790672163],[126,66,71,-0.4869426900299635],[126,66,72,-0.4940660197884198],[126,66,73,-0.5077726546214287],[126,66,74,-0.5169451250483432],[126,66,75,-0.5113534669251862],[126,66,76,-0.4956839972975596],[126,66,77,-0.4614477901958552],[126,66,78,-0.4246012617931667],[126,66,79,-0.3880307209039694],[126,67,64,-0.524661909858134],[126,67,65,-0.5451855081382945],[126,67,66,-0.5490321999295443],[126,67,67,-0.5444764638370637],[126,67,68,-0.5410418894639241],[126,67,69,-0.5379051330949034],[126,67,70,-0.5355622784008904],[126,67,71,-0.5390694003660207],[126,67,72,-0.5486948714070481],[126,67,73,-0.5585369563626026],[126,67,74,-0.5679717446916586],[126,67,75,-0.5654756772536428],[126,67,76,-0.5474736763983723],[126,67,77,-0.5153536442275424],[126,67,78,-0.4794644016749424],[126,67,79,-0.4411877954518797],[126,68,64,-0.6664642677786821],[126,68,65,-0.6863035372034446],[126,68,66,-0.6927060878751401],[126,68,67,-0.6884336721007785],[126,68,68,-0.6834127704127008],[126,68,69,-0.6820934158059908],[126,68,70,-0.6814728740341395],[126,68,71,-0.6856319526046579],[126,68,72,-0.6947771056697019],[126,68,73,-0.7050277202137223],[126,68,74,-0.7109258975443452],[126,68,75,-0.7096576605928041],[126,68,76,-0.6914092594657995],[126,68,77,-0.6608197195518936],[126,68,78,-0.6240764178813688],[126,68,79,-0.5871497486660543],[126,69,64,-0.7164418496810047],[126,69,65,-0.7406621484170698],[126,69,66,-0.756332652117357],[126,69,67,-0.7557718237129797],[126,69,68,-0.7529719032030231],[126,69,69,-0.7527825102613845],[126,69,70,-0.7536504989539894],[126,69,71,-0.75665030041734],[126,69,72,-0.7660506126482896],[126,69,73,-0.7787331148707166],[126,69,74,-0.7830325449468393],[126,69,75,-0.7812716495039629],[126,69,76,-0.7633543323313823],[126,69,77,-0.7299440699666906],[126,69,78,-0.6928696954878345],[126,69,79,-0.6574200653708089],[126,70,64,-0.7668962900237273],[126,70,65,-0.7935987433256101],[126,70,66,-0.807756644981763],[126,70,67,-0.8102633566717521],[126,70,68,-0.8054810276490154],[126,70,69,-0.8041092479099168],[126,70,70,-0.8042576919598577],[126,70,71,-0.8067269954749609],[126,70,72,-0.8166817327834233],[126,70,73,-0.8326224965246622],[126,70,74,-0.8394364896717044],[126,70,75,-0.8338193562022226],[126,70,76,-0.8127481261865582],[126,70,77,-0.7788684896668832],[126,70,78,-0.7419114920862858],[126,70,79,-0.7080483737985825],[126,71,64,-0.8063245429809063],[126,71,65,-0.83489014080457],[126,71,66,-0.8494075222513668],[126,71,67,-0.8514675424024079],[126,71,68,-0.8485928926923114],[126,71,69,-0.8453635532761834],[126,71,70,-0.8439535456523077],[126,71,71,-0.8487792337456197],[126,71,72,-0.8598325879734159],[126,71,73,-0.8754793618252182],[126,71,74,-0.8825001359212385],[126,71,75,-0.8778467339747555],[126,71,76,-0.8570232701893753],[126,71,77,-0.8232827623254999],[126,71,78,-0.7865578867292581],[126,71,79,-0.7514398334035497],[126,72,64,-0.8573079768379044],[126,72,65,-0.8842388766380143],[126,72,66,-0.897707903085932],[126,72,67,-0.9020861493880298],[126,72,68,-0.8992008805352896],[126,72,69,-0.8944484417271208],[126,72,70,-0.8934290303226159],[126,72,71,-0.8980496383358212],[126,72,72,-0.9110568591928955],[126,72,73,-0.9259208721967637],[126,72,74,-0.9345103658007015],[126,72,75,-0.9297556397363361],[126,72,76,-0.9094779365164081],[126,72,77,-0.8765791468436908],[126,72,78,-0.8379016169444351],[126,72,79,-0.8015228529531918],[126,73,64,-0.9141258041942406],[126,73,65,-0.9367688339215108],[126,73,66,-0.9428592874902024],[126,73,67,-0.9415643376176881],[126,73,68,-0.9350999204900966],[126,73,69,-0.9320505850825808],[126,73,70,-0.9316688126519042],[126,73,71,-0.9345232545308658],[126,73,72,-0.9490550456567501],[126,73,73,-0.9640583711698496],[126,73,74,-0.974165548559038],[126,73,75,-0.969530216387937],[126,73,76,-0.9501022331782082],[126,73,77,-0.9206908023980226],[126,73,78,-0.8858759460803578],[126,73,79,-0.8522284865570104],[126,74,64,-0.9708823381243509],[126,74,65,-0.9920693433481658],[126,74,66,-0.9948523581247102],[126,74,67,-0.994002941870965],[126,74,68,-0.9890653861642398],[126,74,69,-0.9860727050275759],[126,74,70,-0.9858871940343021],[126,74,71,-0.990422865425304],[126,74,72,-1.0042231449688321],[126,74,73,-1.016776991825885],[126,74,74,-1.027824314718023],[126,74,75,-1.0240572957330152],[126,74,76,-1.0090068212985897],[126,74,77,-0.978558754544562],[126,74,78,-0.9414033739090119],[126,74,79,-0.9096198251625089],[126,75,64,-1.0209155741073719],[126,75,65,-1.0402162761560487],[126,75,66,-1.0421507766743745],[126,75,67,-1.0392959750329076],[126,75,68,-1.0336815757893187],[126,75,69,-1.0330290704881624],[126,75,70,-1.0341848963631355],[126,75,71,-1.0391102454753094],[126,75,72,-1.053291335398836],[126,75,73,-1.0664403236537483],[126,75,74,-1.0771939520822622],[126,75,75,-1.0751647081330344],[126,75,76,-1.0612392589324635],[126,75,77,-1.0320037927017238],[126,75,78,-0.994574930569317],[126,75,79,-0.9607758372746722],[126,76,64,-1.066641436042598],[126,76,65,-1.0866909958534934],[126,76,66,-1.0874260459921938],[126,76,67,-1.0833416559936218],[126,76,68,-1.0786068135585414],[126,76,69,-1.076096846959103],[126,76,70,-1.0790928530870842],[126,76,71,-1.086226182233213],[126,76,72,-1.103908754917371],[126,76,73,-1.1189467428140845],[126,76,74,-1.1299232639657721],[126,76,75,-1.1284743860697493],[126,76,76,-1.1156771472885931],[126,76,77,-1.0847784917784962],[126,76,78,-1.050379558658558],[126,76,79,-1.0154517911661167],[126,77,64,-1.1132519552476323],[126,77,65,-1.1295761800369781],[126,77,66,-1.1305806175291684],[126,77,67,-1.126558120605614],[126,77,68,-1.1225645820538155],[126,77,69,-1.1187428730068811],[126,77,70,-1.1215250536801742],[126,77,71,-1.1303541128960553],[126,77,72,-1.1477526488824394],[126,77,73,-1.162455773564821],[126,77,74,-1.1750899241210055],[126,77,75,-1.176260083111446],[126,77,76,-1.163482605788203],[126,77,77,-1.1330324154866587],[126,77,78,-1.0994897024254946],[126,77,79,-1.0640996118292991],[126,78,64,-1.1632295866183597],[126,78,65,-1.1762962193089963],[126,78,66,-1.17883570162234],[126,78,67,-1.1733375017687266],[126,78,68,-1.1690041253927643],[126,78,69,-1.1666522523554261],[126,78,70,-1.172074796628887],[126,78,71,-1.1779515477949853],[126,78,72,-1.1965252095124101],[126,78,73,-1.2150490482089957],[126,78,74,-1.2282544684503116],[126,78,75,-1.2300817957682537],[126,78,76,-1.216257958995979],[126,78,77,-1.1854879230077293],[126,78,78,-1.1552966674231606],[126,78,79,-1.1199435338768478],[126,79,64,-1.2035559528289055],[126,79,65,-1.2154165658605656],[126,79,66,-1.2163165016109367],[126,79,67,-1.2110402279394095],[126,79,68,-1.2076665236418553],[126,79,69,-1.2085921031188118],[126,79,70,-1.2115706234035477],[126,79,71,-1.217701672930174],[126,79,72,-1.2364068719981782],[126,79,73,-1.2580369551305712],[126,79,74,-1.2744680443099599],[126,79,75,-1.2737284595602045],[126,79,76,-1.2595852247887298],[126,79,77,-1.2351084840044055],[126,79,78,-1.2010222695090718],[126,79,79,-1.1652476727304413],[126,80,64,-1.2524218772721312],[126,80,65,-1.2646110246637698],[126,80,66,-1.2648707047785406],[126,80,67,-1.2594005632924015],[126,80,68,-1.2579617515158474],[126,80,69,-1.2589065949521125],[126,80,70,-1.2609398476036175],[126,80,71,-1.2683679729082509],[126,80,72,-1.2839562413487462],[126,80,73,-1.3098676840934684],[126,80,74,-1.3268111081994811],[126,80,75,-1.3263002909833939],[126,80,76,-1.3127427696769534],[126,80,77,-1.2898690239514385],[126,80,78,-1.2549033575869681],[126,80,79,-1.2156711079894875],[126,81,64,-1.3053868136407503],[126,81,65,-1.316199094286036],[126,81,66,-1.31159189363438],[126,81,67,-1.3025498827725648],[126,81,68,-1.3014359051919386],[126,81,69,-1.3024754835208918],[126,81,70,-1.3063251689173143],[126,81,71,-1.3153765306276628],[126,81,72,-1.3327010198760116],[126,81,73,-1.3606229288125729],[126,81,74,-1.3803622583195838],[126,81,75,-1.3827452372216715],[126,81,76,-1.3694377258342032],[126,81,77,-1.3486175017294746],[126,81,78,-1.313251080494725],[126,81,79,-1.2738592612826176],[126,82,64,-1.3600700059181345],[126,82,65,-1.3712742482060027],[126,82,66,-1.3669993126798416],[126,82,67,-1.3594551587623098],[126,82,68,-1.3566859623881624],[126,82,69,-1.3584005469874214],[126,82,70,-1.3610908966031807],[126,82,71,-1.3709157085692005],[126,82,72,-1.3904954913160004],[126,82,73,-1.4167640853176562],[126,82,74,-1.4377307521399865],[126,82,75,-1.4429321688629886],[126,82,76,-1.4299847363563654],[126,82,77,-1.4082362721285637],[126,82,78,-1.3731453724146065],[126,82,79,-1.3327255580064374],[126,83,64,-1.406433354603913],[126,83,65,-1.4198324707924745],[126,83,66,-1.4164671322451736],[126,83,67,-1.408344520159503],[126,83,68,-1.406177172707568],[126,83,69,-1.4065284690775428],[126,83,70,-1.409116879349696],[126,83,71,-1.4187317334098035],[126,83,72,-1.4423484029815987],[126,83,73,-1.469306325112054],[126,83,74,-1.4922397186208427],[126,83,75,-1.4942847591504498],[126,83,76,-1.481982054815401],[126,83,77,-1.4594173040166651],[126,83,78,-1.423894697138652],[126,83,79,-1.3827301340017202],[126,84,64,-1.4448858515565965],[126,84,65,-1.460176416503234],[126,84,66,-1.4603215787360249],[126,84,67,-1.4546760164527375],[126,84,68,-1.4536021598901099],[126,84,69,-1.4548991997820364],[126,84,70,-1.4599070726853451],[126,84,71,-1.4693052563005067],[126,84,72,-1.4939113518237452],[126,84,73,-1.5218084783870047],[126,84,74,-1.5425853101844398],[126,84,75,-1.546431005203965],[126,84,76,-1.5334548767858422],[126,84,77,-1.5112762672198525],[126,84,78,-1.474069517006557],[126,84,79,-1.4319419357371221],[126,85,64,-1.4814308302927695],[126,85,65,-1.5033513956441606],[126,85,66,-1.5124024922552657],[126,85,67,-1.5080527781253925],[126,85,68,-1.5071008994019908],[126,85,69,-1.5092934152999373],[126,85,70,-1.5141431004531258],[126,85,71,-1.5217171877347744],[126,85,72,-1.5408476871298047],[126,85,73,-1.5670267798142279],[126,85,74,-1.586696737847104],[126,85,75,-1.5913451319934342],[126,85,76,-1.5796928396533274],[126,85,77,-1.5518680695668987],[126,85,78,-1.5115290848122065],[126,85,79,-1.467655930255222],[126,86,64,-1.5305198068533779],[126,86,65,-1.5540620611833305],[126,86,66,-1.564747878666437],[126,86,67,-1.5599851462226457],[126,86,68,-1.5557437657686584],[126,86,69,-1.5584417979751195],[126,86,70,-1.5644368713011716],[126,86,71,-1.5720042914528456],[126,86,72,-1.5908479767206336],[126,86,73,-1.6164610410813665],[126,86,74,-1.6353168884812335],[126,86,75,-1.6421655342060326],[126,86,76,-1.6290673664422275],[126,86,77,-1.603617305800274],[126,86,78,-1.5636935474605484],[126,86,79,-1.5198733236230721],[126,87,64,-1.5712001760162506],[126,87,65,-1.5959383429559713],[126,87,66,-1.6064970757676051],[126,87,67,-1.6027629909189478],[126,87,68,-1.5970406016353784],[126,87,69,-1.598904775487805],[126,87,70,-1.6049750801999738],[126,87,71,-1.613856633985184],[126,87,72,-1.6332428146496123],[126,87,73,-1.6576108667764742],[126,87,74,-1.6790210857197212],[126,87,75,-1.683461489590714],[126,87,76,-1.6723521909446737],[126,87,77,-1.6490185081735602],[126,87,78,-1.6087748594589124],[126,87,79,-1.5652622671111767],[126,88,64,-1.6204247636494102],[126,88,65,-1.6439896966203282],[126,88,66,-1.6545219007345031],[126,88,67,-1.654140630968186],[126,88,68,-1.649071258896244],[126,88,69,-1.652336949242671],[126,88,70,-1.6549575290438614],[126,88,71,-1.6650648189161803],[126,88,72,-1.6863358044991874],[126,88,73,-1.7119529851174422],[126,88,74,-1.7317884999898392],[126,88,75,-1.7357708344343],[126,88,76,-1.7242143575725177],[126,88,77,-1.6979758704828554],[126,88,78,-1.6589357568558252],[126,88,79,-1.6118080095042324],[126,89,64,-1.669075375092296],[126,89,65,-1.6919441640437158],[126,89,66,-1.7046013549444061],[126,89,67,-1.70486881457735],[126,89,68,-1.7009100203776755],[126,89,69,-1.7024885516903387],[126,89,70,-1.7043911313892384],[126,89,71,-1.7168293858305645],[126,89,72,-1.7386796193720842],[126,89,73,-1.766080469428518],[126,89,74,-1.784363847213278],[126,89,75,-1.7884464623050003],[126,89,76,-1.7769085786228997],[126,89,77,-1.7486055399805422],[126,89,78,-1.708588561570168],[126,89,79,-1.6610193270539464],[126,90,64,-1.7247823082196407],[126,90,65,-1.749108376021787],[126,90,66,-1.7603743565838503],[126,90,67,-1.7613095922554374],[126,90,68,-1.7564451945412136],[126,90,69,-1.759154967111219],[126,90,70,-1.761995076259725],[126,90,71,-1.7713857002137356],[126,90,72,-1.7964834141380774],[126,90,73,-1.8229839628612348],[126,90,74,-1.8419628744225571],[126,90,75,-1.8464693621482762],[126,90,76,-1.8352902907881121],[126,90,77,-1.80691152530365],[126,90,78,-1.7640771172806318],[126,90,79,-1.7184354094726655],[126,91,64,-1.7735912033699934],[126,91,65,-1.801326671261277],[126,91,66,-1.8133298339468438],[126,91,67,-1.8106429237826454],[126,91,68,-1.8069170411142905],[126,91,69,-1.8071787409629878],[126,91,70,-1.8104516464640381],[126,91,71,-1.8208191255712154],[126,91,72,-1.8457690792069679],[126,91,73,-1.8721265336071515],[126,91,74,-1.8938183001796123],[126,91,75,-1.8980449275943325],[126,91,76,-1.8869205986904345],[126,91,77,-1.8596437293293562],[126,91,78,-1.8166469750313454],[126,91,79,-1.7688136571807807],[126,92,64,-1.8260372170115262],[126,92,65,-1.8543294337022505],[126,92,66,-1.8675336639624949],[126,92,67,-1.8687414060487373],[126,92,68,-1.8659457844923937],[126,92,69,-1.8651267164729517],[126,92,70,-1.8691202859720515],[126,92,71,-1.8823101626171117],[126,92,72,-1.9083505986170768],[126,92,73,-1.9348493028741338],[126,92,74,-1.9521785669702187],[126,92,75,-1.9601590666355246],[126,92,76,-1.9504692612768442],[126,92,77,-1.9203743070546628],[126,92,78,-1.876968403795119],[126,92,79,-1.8314946817324476],[126,93,64,-1.870649662384336],[126,93,65,-1.8975885891404227],[126,93,66,-1.9135270322002702],[126,93,67,-1.9151665984848378],[126,93,68,-1.9127853103209955],[126,93,69,-1.9099902863316767],[126,93,70,-1.9167598734588083],[126,93,71,-1.933216047435169],[126,93,72,-1.9635687464349565],[126,93,73,-1.9919618396150112],[126,93,74,-2.0106491470940635],[126,93,75,-2.0188175004261413],[126,93,76,-2.0085368744511136],[126,93,77,-1.9814108107748136],[126,93,78,-1.9384110183616108],[126,93,79,-1.8925272226052197],[126,94,64,-1.921543410407628],[126,94,65,-1.947266005629468],[126,94,66,-1.965390981977456],[126,94,67,-1.965842490429387],[126,94,68,-1.9631141293415317],[126,94,69,-1.9609069900573501],[126,94,70,-1.968415528255713],[126,94,71,-1.9830304127802423],[126,94,72,-2.0129171431897426],[126,94,73,-2.0420087160733296],[126,94,74,-2.062635823395374],[126,94,75,-2.0685728275505797],[126,94,76,-2.0560889449398334],[126,94,77,-2.029736573205943],[126,94,78,-1.990447385458235],[126,94,79,-1.9451046627104307],[126,95,64,-1.963327914516708],[126,95,65,-1.9906232816707077],[126,95,66,-2.0066747193016714],[126,95,67,-2.007217207542555],[126,95,68,-2.0045875149915253],[126,95,69,-2.0044245570073036],[126,95,70,-2.0123806707190304],[126,95,71,-2.0268391602552702],[126,95,72,-2.0578752034571375],[126,95,73,-2.0865845995955343],[126,95,74,-2.1076744843637445],[126,95,75,-2.1131373757997394],[126,95,76,-2.1023839567373033],[126,95,77,-2.0724800485012023],[126,95,78,-2.0337659857130155],[126,95,79,-1.9904254292769379],[126,96,64,-2.0133432320825477],[126,96,65,-2.043244851846075],[126,96,66,-2.0573646280888864],[126,96,67,-2.0580746875624962],[126,96,68,-2.053406765056356],[126,96,69,-2.0552116054245926],[126,96,70,-2.062973250376976],[126,96,71,-2.076446843595664],[126,96,72,-2.107175941044403],[126,96,73,-2.134658591380413],[126,96,74,-2.1588832701944454],[126,96,75,-2.1631348681329823],[126,96,76,-2.1520010563575687],[126,96,77,-2.122719125865029],[126,96,78,-2.0813694146299646],[126,96,79,-2.038377893559086],[126,97,64,-2.0741482977540926],[126,97,65,-2.0988892436984],[126,97,66,-2.109638167263843],[126,97,67,-2.1067808537489805],[126,97,68,-2.102260889339355],[126,97,69,-2.106812106493797],[126,97,70,-2.1098305007969325],[126,97,71,-2.1224892108077924],[126,97,72,-2.147291948988306],[126,97,73,-2.174631328323923],[126,97,74,-2.1979461098454816],[126,97,75,-2.2021053605838614],[126,97,76,-2.1915075323746884],[126,97,77,-2.163194632568308],[126,97,78,-2.12103856886125],[126,97,79,-2.0783328617655785],[126,98,64,-2.133235465754116],[126,98,65,-2.1535400484766107],[126,98,66,-2.1641707172230786],[126,98,67,-2.162122008020956],[126,98,68,-2.161054095771923],[126,98,69,-2.162725596795016],[126,98,70,-2.164626875450431],[126,98,71,-2.178734202628639],[126,98,72,-2.202264021930301],[126,98,73,-2.2291726587015885],[126,98,74,-2.25097703994899],[126,98,75,-2.254497418613698],[126,98,76,-2.2451898252547737],[126,98,77,-2.216998928087935],[126,98,78,-2.1740452569642255],[126,98,79,-2.1311980064532383],[126,99,64,-2.182473954163287],[126,99,65,-2.203826143709596],[126,99,66,-2.2127458742365826],[126,99,67,-2.2090524006708905],[126,99,68,-2.210606541998084],[126,99,69,-2.2119611144389943],[126,99,70,-2.2149599945544436],[126,99,71,-2.2266807121797325],[126,99,72,-2.2514459594774685],[126,99,73,-2.2786587421811193],[126,99,74,-2.299890294543723],[126,99,75,-2.3046954078864275],[126,99,76,-2.2938187962523053],[126,99,77,-2.2636451450842374],[126,99,78,-2.2227189937130123],[126,99,79,-2.177224478225469],[126,100,64,-2.2105319559285754],[126,100,65,-2.224777150550415],[126,100,66,-2.226490669641319],[126,100,67,-2.217615940635018],[126,100,68,-2.2109263501719982],[126,100,69,-2.2081390897800564],[126,100,70,-2.2058648202036166],[126,100,71,-2.213988202943876],[126,100,72,-2.235731738270836],[126,100,73,-2.2646154074112044],[126,100,74,-2.2849930780109],[126,100,75,-2.2920944370596867],[126,100,76,-2.2758835778062076],[126,100,77,-2.246303851128183],[126,100,78,-2.203453154800796],[126,100,79,-2.15547766109972],[126,101,64,-2.2624713673035948],[126,101,65,-2.275538400947369],[126,101,66,-2.2778307908066786],[126,101,67,-2.266339084370391],[126,101,68,-2.26103082399191],[126,101,69,-2.258924442390493],[126,101,70,-2.258051278205906],[126,101,71,-2.265925132081272],[126,101,72,-2.2873416099168047],[126,101,73,-2.314562450956145],[126,101,74,-2.3356571930822096],[126,101,75,-2.3395739764603536],[126,101,76,-2.324105541918889],[126,101,77,-2.2951124795260243],[126,101,78,-2.2530783557220406],[126,101,79,-2.2063255357094196],[126,102,64,-2.313639554290229],[126,102,65,-2.3284582423722227],[126,102,66,-2.3267841267910554],[126,102,67,-2.316617722193324],[126,102,68,-2.31024225703616],[126,102,69,-2.3089566936157286],[126,102,70,-2.30813304742176],[126,102,71,-2.3174353579236024],[126,102,72,-2.3389039458850744],[126,102,73,-2.3665674096453846],[126,102,74,-2.3859017915157112],[126,102,75,-2.388000945984408],[126,102,76,-2.372785485578535],[126,102,77,-2.3415552442479095],[126,102,78,-2.3006087004135987],[126,102,79,-2.256064126163761],[126,103,64,-2.3559315669765333],[126,103,65,-2.369696263454872],[126,103,66,-2.3696955965720683],[126,103,67,-2.3596654525650678],[126,103,68,-2.3522467461551355],[126,103,69,-2.350326500853852],[126,103,70,-2.3552987067420275],[126,103,71,-2.362692611371555],[126,103,72,-2.385083319511112],[126,103,73,-2.4149510182962337],[126,103,74,-2.4321081073687556],[126,103,75,-2.4341592043883598],[126,103,76,-2.417374743442218],[126,103,77,-2.3849589379790204],[126,103,78,-2.3432624176724253],[126,103,79,-2.304968253436265],[126,104,64,-2.4072958728318943],[126,104,65,-2.419307725984068],[126,104,66,-2.4186879782531165],[126,104,67,-2.410155829991653],[126,104,68,-2.4042740591971192],[126,104,69,-2.4018179775057362],[126,104,70,-2.405812119843388],[126,104,71,-2.414953152299837],[126,104,72,-2.4352470710280585],[126,104,73,-2.464500926015128],[126,104,74,-2.4835598348377337],[126,104,75,-2.4831444078883504],[126,104,76,-2.4652829486076935],[126,104,77,-2.434868081140902],[126,104,78,-2.3935458377047434],[126,104,79,-2.3567970067737956],[126,105,64,-2.4471899557001686],[126,105,65,-2.460948292573079],[126,105,66,-2.463501968806646],[126,105,67,-2.459404812219795],[126,105,68,-2.4560818688645676],[126,105,69,-2.4528427153169305],[126,105,70,-2.457420049124992],[126,105,71,-2.46847114581775],[126,105,72,-2.494216448330127],[126,105,73,-2.523536444265839],[126,105,74,-2.5433266729979436],[126,105,75,-2.542662205657095],[126,105,76,-2.5217829577262876],[126,105,77,-2.490303450700806],[126,105,78,-2.4448251028589443],[126,105,79,-2.4020185070433473],[126,106,64,-2.502610171636348],[126,106,65,-2.518968328285578],[126,106,66,-2.5201408630455764],[126,106,67,-2.5157279147114213],[126,106,68,-2.5104677957771053],[126,106,69,-2.509077908891188],[126,106,70,-2.5125404847537633],[126,106,71,-2.5250084869861564],[126,106,72,-2.55144860103677],[126,106,73,-2.576648600744364],[126,106,74,-2.5945304909349862],[126,106,75,-2.5966757212823444],[126,106,76,-2.575736123318138],[126,106,77,-2.542966259427152],[126,106,78,-2.5001410579509074],[126,106,79,-2.456455550960197],[126,107,64,-2.555153553977019],[126,107,65,-2.5698762289808554],[126,107,66,-2.5706093617480335],[126,107,67,-2.5664056769326646],[126,107,68,-2.558134654831179],[126,107,69,-2.559058728556266],[126,107,70,-2.56275265375828],[126,107,71,-2.5744337101676007],[126,107,72,-2.5979042712677454],[126,107,73,-2.62419733057921],[126,107,74,-2.6418406399154883],[126,107,75,-2.6471722272077076],[126,107,76,-2.6272855783485523],[126,107,77,-2.5929132318451282],[126,107,78,-2.548914961393349],[126,107,79,-2.503651597166697],[126,108,64,-2.5992395436186366],[126,108,65,-2.6156389256111376],[126,108,66,-2.6189331925098083],[126,108,67,-2.615514408855031],[126,108,68,-2.6075485105239986],[126,108,69,-2.608028697127586],[126,108,70,-2.6133969259123258],[126,108,71,-2.6265652237859154],[126,108,72,-2.6487122856968526],[126,108,73,-2.676417231792361],[126,108,74,-2.6944197412127444],[126,108,75,-2.6991295695335857],[126,108,76,-2.682387581373435],[126,108,77,-2.646678535414366],[126,108,78,-2.605062076658573],[126,108,79,-2.5624193848150036],[126,109,64,-2.65809094687304],[126,109,65,-2.669152628292513],[126,109,66,-2.6701981078049823],[126,109,67,-2.6648519388706755],[126,109,68,-2.6565515014259824],[126,109,69,-2.6547947348017864],[126,109,70,-2.6571317223863358],[126,109,71,-2.667176430245964],[126,109,72,-2.687702211960979],[126,109,73,-2.7142426282702607],[126,109,74,-2.730902462741213],[126,109,75,-2.7343960241263616],[126,109,76,-2.7231728876349592],[126,109,77,-2.6946978244263593],[126,109,78,-2.659756097358853],[126,109,79,-2.6240784468645892],[126,110,64,-2.706534651150844],[126,110,65,-2.717282859975771],[126,110,66,-2.718647239613317],[126,110,67,-2.7121362592285356],[126,110,68,-2.7045031880006154],[126,110,69,-2.702120054744652],[126,110,70,-2.704205199880298],[126,110,71,-2.711953552515965],[126,110,72,-2.7308928670173436],[126,110,73,-2.7607731095056587],[126,110,74,-2.7759907003367728],[126,110,75,-2.778765096613695],[126,110,76,-2.769786685128656],[126,110,77,-2.7414588262960633],[126,110,78,-2.710607017559132],[126,110,79,-2.6761136733522215],[126,111,64,-2.748364355176717],[126,111,65,-2.7601094077171098],[126,111,66,-2.761602920978394],[126,111,67,-2.754494324965405],[126,111,68,-2.7481951986483404],[126,111,69,-2.745538757930141],[126,111,70,-2.746964970384891],[126,111,71,-2.753041006130769],[126,111,72,-2.774047214636276],[126,111,73,-2.801563513112065],[126,111,74,-2.8192286953900747],[126,111,75,-2.823601942996971],[126,111,76,-2.8149272047064846],[126,111,77,-2.7895569638750453],[126,111,78,-2.7599653675594777],[126,111,79,-2.724229690750888],[126,112,64,-2.799943528381554],[126,112,65,-2.811647071140915],[126,112,66,-2.813840449201022],[126,112,67,-2.804097283606183],[126,112,68,-2.7961713392018908],[126,112,69,-2.7925141339863044],[126,112,70,-2.7941442238219163],[126,112,71,-2.7996075579051087],[126,112,72,-2.8192366436114433],[126,112,73,-2.845968889168557],[126,112,74,-2.8661017912103763],[126,112,75,-2.8691513050392494],[126,112,76,-2.860751547428745],[126,112,77,-2.836821471549227],[126,112,78,-2.8078084927371787],[126,112,79,-2.7723490878309787],[126,113,64,-2.8502207596505054],[126,113,65,-2.8622299393853665],[126,113,66,-2.8628593484527767],[126,113,67,-2.8532217872075405],[126,113,68,-2.8444186518787387],[126,113,69,-2.839774923728646],[126,113,70,-2.839343839295426],[126,113,71,-2.8466613688260383],[126,113,72,-2.8644347677614146],[126,113,73,-2.891111111910364],[126,113,74,-2.9108775165954897],[126,113,75,-2.915849853853619],[126,113,76,-2.908699259073791],[126,113,77,-2.8846060304118923],[126,113,78,-2.857652434697182],[126,113,79,-2.8210210179345236],[126,114,64,-2.9054279097505167],[126,114,65,-2.918707705845338],[126,114,66,-2.9172627785410765],[126,114,67,-2.906583983401963],[126,114,68,-2.8990658722732854],[126,114,69,-2.8926172959170637],[126,114,70,-2.8924793559836974],[126,114,71,-2.9004069309657075],[126,114,72,-2.9186472852946705],[126,114,73,-2.9437905529639354],[126,114,74,-2.9636357863812095],[126,114,75,-2.967214053336583],[126,114,76,-2.962373520383841],[126,114,77,-2.938817933395938],[126,114,78,-2.9110207394313443],[126,114,79,-2.875976871501002],[126,115,64,-2.953570055199201],[126,115,65,-2.965568316228662],[126,115,66,-2.963726769035453],[126,115,67,-2.9543100108668243],[126,115,68,-2.947723183027508],[126,115,69,-2.9414476148850586],[126,115,70,-2.9399633403813032],[126,115,71,-2.9484393426818136],[126,115,72,-2.9673110064522823],[126,115,73,-2.9934834572879714],[126,115,74,-3.01094672483129],[126,115,75,-3.016361731818358],[126,115,76,-3.0109933712453643],[126,115,77,-2.9883167170025753],[126,115,78,-2.9575040730045896],[126,115,79,-2.92190254632852],[126,116,64,-2.9860060656093905],[126,116,65,-2.997096023806793],[126,116,66,-2.9965768882319406],[126,116,67,-2.9859698158710914],[126,116,68,-2.976738706480354],[126,116,69,-2.971070972678778],[126,116,70,-2.970212676483329],[126,116,71,-2.9759253480013332],[126,116,72,-2.997287601913752],[126,116,73,-3.023262284747297],[126,116,74,-3.040911716738232],[126,116,75,-3.0472013628041443],[126,116,76,-3.04357360877576],[126,116,77,-3.0195898426860364],[126,116,78,-2.9861901450828903],[126,116,79,-2.94770654979392],[126,117,64,-3.0382537708108073],[126,117,65,-3.0507318472456815],[126,117,66,-3.0504019538832248],[126,117,67,-3.040153090296888],[126,117,68,-3.030116756150878],[126,117,69,-3.025182802337865],[126,117,70,-3.023486477420327],[126,117,71,-3.0273831375051454],[126,117,72,-3.048680513369638],[126,117,73,-3.0734510954821253],[126,117,74,-3.0909801849948373],[126,117,75,-3.098347011762557],[126,117,76,-3.0936003767064792],[126,117,77,-3.0644689543294836],[126,117,78,-3.0269502896493763],[126,117,79,-2.9878475339275616],[126,118,64,-3.083927807463885],[126,118,65,-3.096835058261028],[126,118,66,-3.0967760809852583],[126,118,67,-3.086830622917119],[126,118,68,-3.0779133032924704],[126,118,69,-3.0714808126764304],[126,118,70,-3.068619314085188],[126,118,71,-3.0719052634965616],[126,118,72,-3.0952806691898984],[126,118,73,-3.1212694310125464],[126,118,74,-3.1408488747153944],[126,118,75,-3.1482204746284386],[126,118,76,-3.139352274149969],[126,118,77,-3.1128753005713805],[126,118,78,-3.0760632422654135],[126,118,79,-3.037782935285496],[126,119,64,-3.122425295884672],[126,119,65,-3.1361040217655303],[126,119,66,-3.1380778314855267],[126,119,67,-3.126797410296137],[126,119,68,-3.116643796811147],[126,119,69,-3.1103551785875756],[126,119,70,-3.1082071710930714],[126,119,71,-3.1139905699111172],[126,119,72,-3.138975225790427],[126,119,73,-3.167886624744224],[126,119,74,-3.1893410423062973],[126,119,75,-3.194544862938027],[126,119,76,-3.1863785270471148],[126,119,77,-3.1609306017745],[126,119,78,-3.1256705430522045],[126,119,79,-3.089691965079343],[126,120,64,-3.1693399124038097],[126,120,65,-3.1830190506906457],[126,120,66,-3.1844149322972077],[126,120,67,-3.1735471656549623],[126,120,68,-3.159080560017994],[126,120,69,-3.1531406254401615],[126,120,70,-3.1520310009243047],[126,120,71,-3.1619648857167353],[126,120,72,-3.1870573402415148],[126,120,73,-3.2155933873690126],[126,120,74,-3.2388139374769183],[126,120,75,-3.244547236116165],[126,120,76,-3.2351522856299706],[126,120,77,-3.211319177781097],[126,120,78,-3.1762899364291917],[126,120,79,-3.137613107532279],[126,121,64,-3.2087616546482898],[126,121,65,-3.218992899795116],[126,121,66,-3.2176713818110576],[126,121,67,-3.207768236072625],[126,121,68,-3.1941260118364925],[126,121,69,-3.188555396461371],[126,121,70,-3.1922139821911553],[126,121,71,-3.2033241460170974],[126,121,72,-3.229292308621225],[126,121,73,-3.2630341290156815],[126,121,74,-3.2862356918131557],[126,121,75,-3.295094202002594],[126,121,76,-3.2866365295965627],[126,121,77,-3.2654133531789538],[126,121,78,-3.229485962300989],[126,121,79,-3.1960050126675585],[126,122,64,-3.2597150247297564],[126,122,65,-3.2692290000939472],[126,122,66,-3.268076470017448],[126,122,67,-3.2576661238730695],[126,122,68,-3.2452869445603247],[126,122,69,-3.2410147434867125],[126,122,70,-3.2443041680023263],[126,122,71,-3.2549195433055473],[126,122,72,-3.28172925661322],[126,122,73,-3.3161258513413996],[126,122,74,-3.34144670933461],[126,122,75,-3.3528478894972045],[126,122,76,-3.3439015209684815],[126,122,77,-3.319465559110364],[126,122,78,-3.2846100669337925],[126,122,79,-3.247511428229031],[126,123,64,-3.3048723723171056],[126,123,65,-3.3128912498481045],[126,123,66,-3.3133425480696963],[126,123,67,-3.3020822294546646],[126,123,68,-3.2909787479125234],[126,123,69,-3.287503484454557],[126,123,70,-3.2922294697028276],[126,123,71,-3.3020867334253268],[126,123,72,-3.3305165542966644],[126,123,73,-3.3631030524642385],[126,123,74,-3.389164626239468],[126,123,75,-3.4004035616484893],[126,123,76,-3.3930704472515143],[126,123,77,-3.3682404101843098],[126,123,78,-3.332182225600359],[126,123,79,-3.297705041325197],[126,124,64,-3.3431614548470523],[126,124,65,-3.356003532887441],[126,124,66,-3.35540345532022],[126,124,67,-3.3460801744485384],[126,124,68,-3.3368025423670584],[126,124,69,-3.3323572627793814],[126,124,70,-3.3381587237551704],[126,124,71,-3.352116014239899],[126,124,72,-3.3802791338388265],[126,124,73,-3.414864460515297],[126,124,74,-3.4395304873862926],[126,124,75,-3.4497257256510645],[126,124,76,-3.4434169400222654],[126,124,77,-3.419081173907898],[126,124,78,-3.38395866354427],[126,124,79,-3.3518703047332914],[126,125,64,-3.3891342288662996],[126,125,65,-3.401665247794715],[126,125,66,-3.3998443402344973],[126,125,67,-3.389292017394786],[126,125,68,-3.3814609037683354],[126,125,69,-3.377651369969934],[126,125,70,-3.3842966416080347],[126,125,71,-3.3997811763302055],[126,125,72,-3.4268863224808714],[126,125,73,-3.462161583204577],[126,125,74,-3.4886675972879946],[126,125,75,-3.4986637913039527],[126,125,76,-3.491056526593568],[126,125,77,-3.4685186975490883],[126,125,78,-3.4340205778589032],[126,125,79,-3.4003290033898423],[126,126,64,-3.432350751453508],[126,126,65,-3.446865960783475],[126,126,66,-3.4461869844045125],[126,126,67,-3.434452398258756],[126,126,68,-3.428054821128589],[126,126,69,-3.42354522638643],[126,126,70,-3.430324054872314],[126,126,71,-3.4472362879156435],[126,126,72,-3.4743845882604654],[126,126,73,-3.513125491734595],[126,126,74,-3.5387225648487197],[126,126,75,-3.546754105375568],[126,126,76,-3.536905347583451],[126,126,77,-3.517457987927136],[126,126,78,-3.481017073303963],[126,126,79,-3.448999532128213],[126,127,64,-3.470613391800689],[126,127,65,-3.4872366822814533],[126,127,66,-3.490518420094932],[126,127,67,-3.4780604018139516],[126,127,68,-3.47258286066143],[126,127,69,-3.4704503911600826],[126,127,70,-3.479056085768155],[126,127,71,-3.493337022467801],[126,127,72,-3.523405998582353],[126,127,73,-3.5635463475164455],[126,127,74,-3.5887975330948145],[126,127,75,-3.5977056350535883],[126,127,76,-3.5838464767452307],[126,127,77,-3.5635531951887507],[126,127,78,-3.5320492214390686],[126,127,79,-3.4989387445950837],[126,128,64,-3.5155167640021534],[126,128,65,-3.5351757193405318],[126,128,66,-3.537088981777767],[126,128,67,-3.5263496398569916],[126,128,68,-3.5198303379804803],[126,128,69,-3.5195596347019475],[126,128,70,-3.529183120845816],[126,128,71,-3.541381140575032],[126,128,72,-3.573250719790766],[126,128,73,-3.6139684880835086],[126,128,74,-3.6377788429195292],[126,128,75,-3.6451695791087104],[126,128,76,-3.6330105599257636],[126,128,77,-3.6089600350246296],[126,128,78,-3.5778327802626944],[126,128,79,-3.547243099493808],[126,129,64,-3.5716870787081803],[126,129,65,-3.5913824743928817],[126,129,66,-3.5915729707683743],[126,129,67,-3.5848903926472753],[126,129,68,-3.576954890573063],[126,129,69,-3.5797925242862965],[126,129,70,-3.5878396592246977],[126,129,71,-3.5998691210559013],[126,129,72,-3.630041074876805],[126,129,73,-3.669999328782795],[126,129,74,-3.6941636907742597],[126,129,75,-3.703484275493168],[126,129,76,-3.691218356593043],[126,129,77,-3.6642783265607486],[126,129,78,-3.634352699831383],[126,129,79,-3.601247374385993],[126,130,64,-3.622124512740905],[126,130,65,-3.6420183867902054],[126,130,66,-3.643702219124394],[126,130,67,-3.638028800968749],[126,130,68,-3.6311188276721134],[126,130,69,-3.636346664276559],[126,130,70,-3.6423274244713824],[126,130,71,-3.656656924469603],[126,130,72,-3.6859992660919207],[126,130,73,-3.7252238546175005],[126,130,74,-3.74987458401401],[126,130,75,-3.758449991497579],[126,130,76,-3.746332171134694],[126,130,77,-3.721358483689735],[126,130,78,-3.6872945736112164],[126,130,79,-3.654598895815744],[126,131,64,-3.666749912475511],[126,131,65,-3.688355072677892],[126,131,66,-3.6886042340924488],[126,131,67,-3.684777508798455],[126,131,68,-3.6791144578530006],[126,131,69,-3.683476153129472],[126,131,70,-3.690855592924819],[126,131,71,-3.707316831603543],[126,131,72,-3.735348885233855],[126,131,73,-3.775278566281908],[126,131,74,-3.797536334263468],[126,131,75,-3.806966865418459],[126,131,76,-3.8063037882620843],[126,131,77,-3.7857678743851735],[126,131,78,-3.7416256122893903],[126,131,79,-3.70534448324998],[126,132,64,-3.7056402402477824],[126,132,65,-3.7267818184813195],[126,132,66,-3.728214702746729],[126,132,67,-3.724707807286427],[126,132,68,-3.721592811552978],[126,132,69,-3.723439262355455],[126,132,70,-3.7301916061739018],[126,132,71,-3.7471236161512804],[126,132,72,-3.778935617338506],[126,132,73,-3.817832329795933],[126,132,74,-3.838672646316521],[126,132,75,-3.8481210291903762],[126,132,76,-3.8712255333737478],[126,132,77,-3.8414884018391486],[126,132,78,-3.803341367956732],[126,132,79,-3.7564392896745984],[126,133,64,-3.7404157472337256],[126,133,65,-3.7600341341131616],[126,133,66,-3.762507290170031],[126,133,67,-3.7610338810247126],[126,133,68,-3.756091229456694],[126,133,69,-3.759411639535532],[126,133,70,-3.7659473951566467],[126,133,71,-3.7818443412784677],[126,133,72,-3.814609954426101],[126,133,73,-3.853432617812837],[126,133,74,-3.891588284280037],[126,133,75,-3.9249445455112264],[126,133,76,-3.9596503328686996],[126,133,77,-3.920780161676683],[126,133,78,-3.890285466012668],[126,133,79,-3.8405472633009783],[126,134,64,-3.7854373414297293],[126,134,65,-3.804468933791301],[126,134,66,-3.808075840336468],[126,134,67,-3.8093600971506842],[126,134,68,-3.8041671879822783],[126,134,69,-3.8061987203449705],[126,134,70,-3.8127903627304205],[126,134,71,-3.829087957297104],[126,134,72,-3.8617589235771748],[126,134,73,-3.9011367429873673],[126,134,74,-3.956558434207632],[126,134,75,-3.985492838073129],[126,134,76,-4.01843029316903],[126,134,77,-3.983102288622711],[126,134,78,-3.9550849096757994],[126,134,79,-3.91335105342014],[126,135,64,-3.828030841953897],[126,135,65,-3.845579566722295],[126,135,66,-3.850691086674379],[126,135,67,-3.852791811517411],[126,135,68,-3.8484917255386013],[126,135,69,-3.8518675346379343],[126,135,70,-3.858968699256075],[126,135,71,-3.8744638932446],[126,135,72,-3.9101144139610615],[126,135,73,-3.9491429710450134],[126,135,74,-4.0076507582603424],[126,135,75,-4.029983355720292],[126,135,76,-4.058663321863806],[126,135,77,-4.033248966948208],[126,135,78,-4.006917430221785],[126,135,79,-3.9681107468136956],[126,136,64,-3.87363107203722],[126,136,65,-3.891914324161123],[126,136,66,-3.8971136482675672],[126,136,67,-3.8957215709066793],[126,136,68,-3.8922430359503366],[126,136,69,-3.8966651895089055],[126,136,70,-3.906793868508529],[126,136,71,-3.924077625192341],[126,136,72,-3.9616311535865396],[126,136,73,-4.000897900283697],[126,136,74,-4.069927036997711],[126,136,75,-4.090861991649317],[126,136,76,-4.1167400607339095],[126,136,77,-4.102508209534673],[126,136,78,-4.072094415169723],[126,136,79,-4.034216953396347],[126,137,64,-3.9206315674419834],[126,137,65,-3.9373621409152517],[126,137,66,-3.9407546571799306],[126,137,67,-3.9389110521284993],[126,137,68,-3.937642070448467],[126,137,69,-3.9433392930810824],[126,137,70,-3.955332313927206],[126,137,71,-3.9745943520527978],[126,137,72,-4.011823546323548],[126,137,73,-4.060401196766979],[126,137,74,-4.122756633814347],[126,137,75,-4.146546287898147],[126,137,76,-4.166898062626868],[126,137,77,-4.1553835418693],[126,137,78,-4.128890951233639],[126,137,79,-4.081874526452095],[126,138,64,-3.9720681428425615],[126,138,65,-3.9890307927566058],[126,138,66,-3.992466947626296],[126,138,67,-3.9910513688986873],[126,138,68,-3.990261312270187],[126,138,69,-3.9969980758806063],[126,138,70,-4.010879391854105],[126,138,71,-4.029374005673919],[126,138,72,-4.065087449649737],[126,138,73,-4.101459521938103],[126,138,74,-4.1602550402368275],[126,138,75,-4.185468123285547],[126,138,76,-4.195888602373139],[126,138,77,-4.196295504353788],[126,138,78,-4.173400961635322],[126,138,79,-4.124200891908555],[126,139,64,-4.018714481322572],[126,139,65,-4.0362531397231365],[126,139,66,-4.039349923905451],[126,139,67,-4.041732616474909],[126,139,68,-4.037508668944184],[126,139,69,-4.044528057802493],[126,139,70,-4.061407966984125],[126,139,71,-4.079154298780386],[126,139,72,-4.110549169232104],[126,139,73,-4.16063400645502],[126,139,74,-4.2286030660360785],[126,139,75,-4.258882969639427],[126,139,76,-4.264864489641003],[126,139,77,-4.261983268497679],[126,139,78,-4.2351443971000196],[126,139,79,-4.191233737408206],[126,140,64,-4.064675960462535],[126,140,65,-4.082132578652139],[126,140,66,-4.08480508645043],[126,140,67,-4.083111507784797],[126,140,68,-4.079048314634593],[126,140,69,-4.084633005989868],[126,140,70,-4.099734802341455],[126,140,71,-4.121860994324745],[126,140,72,-4.151206564436103],[126,140,73,-4.205490698516916],[126,140,74,-4.276126661907022],[126,140,75,-4.305924094209252],[126,140,76,-4.317712926063578],[126,140,77,-4.307494420129665],[126,140,78,-4.2812510238254875],[126,140,79,-4.240785093570471],[126,141,64,-4.1060726626128865],[126,141,65,-4.125841020864976],[126,141,66,-4.130450966716903],[126,141,67,-4.132161935585258],[126,141,68,-4.126738106216923],[126,141,69,-4.132549016351992],[126,141,70,-4.148588275678639],[126,141,71,-4.171896325585894],[126,141,72,-4.199308154164337],[126,141,73,-4.269420243399005],[126,141,74,-4.3173377975660685],[126,141,75,-4.33170607457396],[126,141,76,-4.347971706191625],[126,141,77,-4.350596943291271],[126,141,78,-4.326144562640026],[126,141,79,-4.277561182390818],[126,142,64,-4.1535463651665046],[126,142,65,-4.171811532458617],[126,142,66,-4.178558587886692],[126,142,67,-4.179212347015904],[126,142,68,-4.175181936704722],[126,142,69,-4.181989688263565],[126,142,70,-4.198684461663506],[126,142,71,-4.219874983501065],[126,142,72,-4.248854038653449],[126,142,73,-4.316958914288376],[126,142,74,-4.36515930555713],[126,142,75,-4.379743621704994],[126,142,76,-4.401651421367366],[126,142,77,-4.397353674110431],[126,142,78,-4.372134903048248],[126,142,79,-4.328678891963418],[126,143,64,-4.194824065312024],[126,143,65,-4.215912880145979],[126,143,66,-4.222910973407738],[126,143,67,-4.223723480361666],[126,143,68,-4.221164829599945],[126,143,69,-4.228917529677494],[126,143,70,-4.246713524101093],[126,143,71,-4.2672980582537114],[126,143,72,-4.296790692748828],[126,143,73,-4.3610620800186695],[126,143,74,-4.407002701341857],[126,143,75,-4.420944861158867],[126,143,76,-4.449796455039988],[126,143,77,-4.4393619243629265],[126,143,78,-4.410089113438329],[126,143,79,-4.367871444832424],[126,144,64,-4.2451124647170175],[126,144,65,-4.265509359391241],[126,144,66,-4.271960178304236],[126,144,67,-4.271814720493968],[126,144,68,-4.26919400450274],[126,144,69,-4.276104254188688],[126,144,70,-4.293077166857548],[126,144,71,-4.314034032851595],[126,144,72,-4.344604134454184],[126,144,73,-4.4206645471577275],[126,144,74,-4.4630657029565945],[126,144,75,-4.47822251263583],[126,144,76,-4.510163930612377],[126,144,77,-4.49426915465302],[126,144,78,-4.467897420131263],[126,144,79,-4.426582358091471],[126,145,64,-4.3049608176722955],[126,145,65,-4.323101145671026],[126,145,66,-4.323684410777723],[126,145,67,-4.317649390606629],[126,145,68,-4.316478555801054],[126,145,69,-4.325133769739917],[126,145,70,-4.342576255070983],[126,145,71,-4.365051495203862],[126,145,72,-4.393929248439602],[126,145,73,-4.447141446361921],[126,145,74,-4.4583942922005715],[126,145,75,-4.466372113831511],[126,145,76,-4.4943199548235455],[126,145,77,-4.505086928864745],[126,145,78,-4.486272729077307],[126,145,79,-4.4459876811640555],[126,146,64,-4.360902339918582],[126,146,65,-4.378816156868106],[126,146,66,-4.37999252861881],[126,146,67,-4.37276691264934],[126,146,68,-4.372346761328246],[126,146,69,-4.379065406436042],[126,146,70,-4.396928854682331],[126,146,71,-4.418379455168155],[126,146,72,-4.448466394693663],[126,146,73,-4.4891090734707335],[126,146,74,-4.50462026219608],[126,146,75,-4.509855368827035],[126,146,76,-4.534935222004028],[126,146,77,-4.5489843622951724],[126,146,78,-4.526304973387512],[126,146,79,-4.491903488518483],[126,147,64,-4.411105758494499],[126,147,65,-4.428209195894169],[126,147,66,-4.4293037293722755],[126,147,67,-4.423227884969658],[126,147,68,-4.4212693626159725],[126,147,69,-4.429654940767264],[126,147,70,-4.444627558244615],[126,147,71,-4.464473167639719],[126,147,72,-4.496349480881293],[126,147,73,-4.524706877487397],[126,147,74,-4.552309053570619],[126,147,75,-4.546932886529309],[126,147,76,-4.520509043189024],[126,147,77,-4.464363926783156],[126,147,78,-4.4370558116313275],[126,147,79,-4.416863767529896],[126,148,64,-4.429581371826469],[126,148,65,-4.44755106404361],[126,148,66,-4.4536238522321465],[126,148,67,-4.452521949480425],[126,148,68,-4.450929729223272],[126,148,69,-4.461075540557356],[126,148,70,-4.478790113372359],[126,148,71,-4.499244774353111],[126,148,72,-4.535948422727214],[126,148,73,-4.573955004216458],[126,148,74,-4.578415414261258],[126,148,75,-4.559905910677696],[126,148,76,-4.539623514731267],[126,148,77,-4.488440978590444],[126,148,78,-4.474160571603094],[126,148,79,-4.455477370626671],[126,149,64,-4.477285149763446],[126,149,65,-4.496487198217485],[126,149,66,-4.502669299963353],[126,149,67,-4.502076832921156],[126,149,68,-4.499502446040676],[126,149,69,-4.507766387414203],[126,149,70,-4.52399373956482],[126,149,71,-4.546602467496085],[126,149,72,-4.583498799169011],[126,149,73,-4.623727701905683],[126,149,74,-4.621027933244178],[126,149,75,-4.603071645437448],[126,149,76,-4.581004564126245],[126,149,77,-4.525683612643741],[126,149,78,-4.512329238665946],[126,149,79,-4.496856452400933],[126,150,64,-4.524629064142164],[126,150,65,-4.548300839052514],[126,150,66,-4.553318613012664],[126,150,67,-4.550767251141813],[126,150,68,-4.547861339473888],[126,150,69,-4.555942982393237],[126,150,70,-4.570906851769319],[126,150,71,-4.594079318343406],[126,150,72,-4.631313618555722],[126,150,73,-4.668348916692112],[126,150,74,-4.662923385292377],[126,150,75,-4.643972691708645],[126,150,76,-4.6161915077807585],[126,150,77,-4.573473841366363],[126,150,78,-4.553398641690898],[126,150,79,-4.545287383801762],[126,151,64,-4.5709539818441085],[126,151,65,-4.59687575230724],[126,151,66,-4.603658081213387],[126,151,67,-4.598707967394941],[126,151,68,-4.598307771657747],[126,151,69,-4.60472410608021],[126,151,70,-4.619559054665506],[126,151,71,-4.64032014409967],[126,151,72,-4.676745198904081],[126,151,73,-4.716868728549464],[126,151,74,-4.714897615748638],[126,151,75,-4.693316245705398],[126,151,76,-4.658721457519992],[126,151,77,-4.612717654739866],[126,151,78,-4.600542979474436],[126,151,79,-4.587040899892497],[126,152,64,-4.619807625294215],[126,152,65,-4.646574494841788],[126,152,66,-4.653967450451829],[126,152,67,-4.6501869531464495],[126,152,68,-4.647443365827369],[126,152,69,-4.652571504947242],[126,152,70,-4.666869667250482],[126,152,71,-4.686327495424165],[126,152,72,-4.724607418464587],[126,152,73,-4.7562109726453095],[126,152,74,-4.7583746412054975],[126,152,75,-4.735127131724929],[126,152,76,-4.704738358145146],[126,152,77,-4.659454965661733],[126,152,78,-4.645094328624152],[126,152,79,-4.625030637731951],[126,153,64,-4.673812522081233],[126,153,65,-4.697032354210986],[126,153,66,-4.698923685724654],[126,153,67,-4.6917598051270355],[126,153,68,-4.6892918787519156],[126,153,69,-4.693854531330116],[126,153,70,-4.706254358827727],[126,153,71,-4.724511519787562],[126,153,72,-4.76498418617801],[126,153,73,-4.777651116424854],[126,153,74,-4.764119770094016],[126,153,75,-4.7381668288579295],[126,153,76,-4.717747503646504],[126,153,77,-4.700166549407638],[126,153,78,-4.677195891074099],[126,153,79,-4.6570213480180636],[126,154,64,-4.727186124617684],[126,154,65,-4.751708820475545],[126,154,66,-4.753590430490042],[126,154,67,-4.7453367954162555],[126,154,68,-4.743263787613471],[126,154,69,-4.746905172604807],[126,154,70,-4.757379810935032],[126,154,71,-4.7770819460345235],[126,154,72,-4.819197101378167],[126,154,73,-4.845813780829355],[126,154,74,-4.825131079846393],[126,154,75,-4.798828313169327],[126,154,76,-4.763276066464589],[126,154,77,-4.747635992528514],[126,154,78,-4.724842461331571],[126,154,79,-4.701775573914364],[126,155,64,-4.773870253543859],[126,155,65,-4.799622466101216],[126,155,66,-4.802533253375477],[126,155,67,-4.79423412097716],[126,155,68,-4.790160560680983],[126,155,69,-4.792913473590126],[126,155,70,-4.803576603625603],[126,155,71,-4.82318172902033],[126,155,72,-4.865296960104135],[126,155,73,-4.879513329932801],[126,155,74,-4.871830153954076],[126,155,75,-4.850886017949499],[126,155,76,-4.82289356493186],[126,155,77,-4.806875108830049],[126,155,78,-4.7837988101585776],[126,155,79,-4.757031486433834],[126,156,64,-4.812629606271817],[126,156,65,-4.83979800185324],[126,156,66,-4.845035758375168],[126,156,67,-4.839429634409226],[126,156,68,-4.834108567199658],[126,156,69,-4.838332180410278],[126,156,70,-4.849443972936298],[126,156,71,-4.870230730902906],[126,156,72,-4.900991164683899],[126,156,73,-4.893834471194007],[126,156,74,-4.912687678171374],[126,156,75,-4.89865984390986],[126,156,76,-4.872230490347108],[126,156,77,-4.856777885115545],[126,156,78,-4.833119392441764],[126,156,79,-4.804306657862329],[126,157,64,-4.853292945245186],[126,157,65,-4.885669724232876],[126,157,66,-4.896716312201138],[126,157,67,-4.89620990073754],[126,157,68,-4.891933391176041],[126,157,69,-4.89581626871419],[126,157,70,-4.906924396515308],[126,157,71,-4.930198772068992],[126,157,72,-4.9423331545419975],[126,157,73,-4.92652320616482],[126,157,74,-4.948416191565726],[126,157,75,-4.93132251107765],[126,157,76,-4.914669778184209],[126,157,77,-4.903865813709904],[126,157,78,-4.879473751938908],[126,157,79,-4.849602146913347],[126,158,64,-4.904229503630617],[126,158,65,-4.935657331556595],[126,158,66,-4.947448280978156],[126,158,67,-4.947709760123838],[126,158,68,-4.941327647117927],[126,158,69,-4.944132590677364],[126,158,70,-4.954238772291596],[126,158,71,-4.978651597237563],[126,158,72,-4.9827355360525525],[126,158,73,-4.964392272997595],[126,158,74,-4.9873597066020805],[126,158,75,-4.97038959716761],[126,158,76,-4.9625039901948],[126,158,77,-4.949454951043075],[126,158,78,-4.92629978490097],[126,158,79,-4.895504922937122],[126,159,64,-4.9939750863316625],[126,159,65,-5.017385343271754],[126,159,66,-5.025493811529086],[126,159,67,-5.019228856431486],[126,159,68,-5.005818578423743],[126,159,69,-5.00084353699935],[126,159,70,-5.007715465984428],[126,159,71,-5.022685057234335],[126,159,72,-5.025108249057383],[126,159,73,-5.009577419613805],[126,159,74,-5.024291360891704],[126,159,75,-5.01235855817315],[126,159,76,-5.006390758298897],[126,159,77,-4.990686413706234],[126,159,78,-4.968719047903869],[126,159,79,-4.939209563981242],[126,160,64,-5.042785159960442],[126,160,65,-5.064224004965153],[126,160,66,-5.071995705661027],[126,160,67,-5.0654608611379555],[126,160,68,-5.053336704033985],[126,160,69,-5.045817687761437],[126,160,70,-5.054239798194566],[126,160,71,-5.0692979870440205],[126,160,72,-5.069598952782682],[126,160,73,-5.057401826145077],[126,160,74,-5.060973760012089],[126,160,75,-5.059810063634722],[126,160,76,-5.05624467942673],[126,160,77,-5.038646560065387],[126,160,78,-5.016310990379518],[126,160,79,-4.985312190540482],[126,161,64,-5.090181365603594],[126,161,65,-5.112153287915504],[126,161,66,-5.1168765814257196],[126,161,67,-5.110676688485022],[126,161,68,-5.097679716330658],[126,161,69,-5.092855027256618],[126,161,70,-5.103162609377285],[126,161,71,-5.117036718580153],[126,161,72,-5.105088169094338],[126,161,73,-5.077820561530431],[126,161,74,-5.086632219889253],[126,161,75,-5.099712850588803],[126,161,76,-5.097796754122018],[126,161,77,-5.079753022197614],[126,161,78,-5.056815373280003],[126,161,79,-5.0240605619063015],[126,162,64,-5.144230239054556],[126,162,65,-5.164901925385274],[126,162,66,-5.168648878240185],[126,162,67,-5.160633487940495],[126,162,68,-5.1482309560620685],[126,162,69,-5.1459805037834245],[126,162,70,-5.1536142998108225],[126,162,71,-5.168381670994024],[126,162,72,-5.178939162878106],[126,162,73,-5.138468805584926],[126,162,74,-5.126517573266035],[126,162,75,-5.1399570120600035],[126,162,76,-5.140000034882808],[126,162,77,-5.119881580349982],[126,162,78,-5.094798691633344],[126,162,79,-5.0657185805790546],[126,163,64,-5.192534442765083],[126,163,65,-5.211388351267503],[126,163,66,-5.213407911464328],[126,163,67,-5.205801075764857],[126,163,68,-5.191951509718084],[126,163,69,-5.191495825836488],[126,163,70,-5.197015582288484],[126,163,71,-5.209991908649636],[126,163,72,-5.243439213564881],[126,163,73,-5.210285963764838],[126,163,74,-5.187242922970693],[126,163,75,-5.196816115214551],[126,163,76,-5.195956469581628],[126,163,77,-5.175953454872912],[126,163,78,-5.149383517357471],[126,163,79,-5.118662865203948],[126,164,64,-5.238354645608181],[126,164,65,-5.254570202712869],[126,164,66,-5.249565566078642],[126,164,67,-5.2354809416165855],[126,164,68,-5.217753057630318],[126,164,69,-5.21259281348206],[126,164,70,-5.21098526537435],[126,164,71,-5.221378462716997],[126,164,72,-5.2539859120880985],[126,164,73,-5.242519565669798],[126,164,74,-5.239275768978189],[126,164,75,-5.244869957678264],[126,164,76,-5.243676934529921],[126,164,77,-5.221503796219369],[126,164,78,-5.195035960647151],[126,164,79,-5.163662106982467],[126,165,64,-5.2911037061485295],[126,165,65,-5.300877028126048],[126,165,66,-5.291958969281156],[126,165,67,-5.2733541408438915],[126,165,68,-5.25349791898704],[126,165,69,-5.245279006219393],[126,165,70,-5.243105362743699],[126,165,71,-5.254988310756669],[126,165,72,-5.287086986437673],[126,165,73,-5.283699692412107],[126,165,74,-5.282861981531759],[126,165,75,-5.285418270480946],[126,165,76,-5.281642456586192],[126,165,77,-5.259626929971138],[126,165,78,-5.233367278561358],[126,165,79,-5.202785133175936],[126,166,64,-5.338538815213373],[126,166,65,-5.347156440734351],[126,166,66,-5.339186639044982],[126,166,67,-5.319427579581372],[126,166,68,-5.30197960840951],[126,166,69,-5.29069592021122],[126,166,70,-5.288038966405276],[126,166,71,-5.295943504633974],[126,166,72,-5.329759965906689],[126,166,73,-5.349095269994476],[126,166,74,-5.362607931158601],[126,166,75,-5.364601520665409],[126,166,76,-5.354660868521107],[126,166,77,-5.324194466866326],[126,166,78,-5.293851790816548],[126,166,79,-5.256552780151157],[126,167,64,-5.38163618291102],[126,167,65,-5.393196644097712],[126,167,66,-5.383578317344499],[126,167,67,-5.364340573817739],[126,167,68,-5.347485409564953],[126,167,69,-5.3365962036898775],[126,167,70,-5.33361104245106],[126,167,71,-5.3397639256579765],[126,167,72,-5.373639105080072],[126,167,73,-5.395798416283374],[126,167,74,-5.408199638391457],[126,167,75,-5.40991006249738],[126,167,76,-5.400452257317647],[126,167,77,-5.370014927618157],[126,167,78,-5.335197836478485],[126,167,79,-5.299284136937833],[126,168,64,-5.431419967103284],[126,168,65,-5.4426076423850684],[126,168,66,-5.430637163375275],[126,168,67,-5.412832981629192],[126,168,68,-5.3936128639930345],[126,168,69,-5.381677390904238],[126,168,70,-5.378666358897041],[126,168,71,-5.385941395766826],[126,168,72,-5.416365211298197],[126,168,73,-5.441647584153285],[126,168,74,-5.458071849434239],[126,168,75,-5.458988407281138],[126,168,76,-5.449724227253206],[126,168,77,-5.420440291817391],[126,168,78,-5.384967189625119],[126,168,79,-5.3458378104450395],[126,169,64,-5.470969809536659],[126,169,65,-5.489291982813345],[126,169,66,-5.484065373408588],[126,169,67,-5.470390215661409],[126,169,68,-5.4492130467633535],[126,169,69,-5.437081652196855],[126,169,70,-5.4308715577297955],[126,169,71,-5.442289877503609],[126,169,72,-5.471502148810938],[126,169,73,-5.488438567024637],[126,169,74,-5.496237415838328],[126,169,75,-5.502198838659982],[126,169,76,-5.492807484076806],[126,169,77,-5.463714274097171],[126,169,78,-5.427796358714633],[126,169,79,-5.387392366275285],[126,170,64,-5.527153988256908],[126,170,65,-5.545393406428547],[126,170,66,-5.5382900413131075],[126,170,67,-5.522297651294749],[126,170,68,-5.501946980858087],[126,170,69,-5.485966425997359],[126,170,70,-5.482319417057983],[126,170,71,-5.4922925380315775],[126,170,72,-5.5241253207932965],[126,170,73,-5.549649411596584],[126,170,74,-5.559702973333004],[126,170,75,-5.559439535526973],[126,170,76,-5.54859366957631],[126,170,77,-5.521509281332259],[126,170,78,-5.484515192078374],[126,170,79,-5.440563307612857],[126,171,64,-5.574212177598791],[126,171,65,-5.592983986331578],[126,171,66,-5.585622477688035],[126,171,67,-5.5658962101281455],[126,171,68,-5.547434566870964],[126,171,69,-5.532791825431844],[126,171,70,-5.529376023580152],[126,171,71,-5.538745293697844],[126,171,72,-5.570876740828299],[126,171,73,-5.601764665775869],[126,171,74,-5.619929712418228],[126,171,75,-5.6205434227528945],[126,171,76,-5.608123507553978],[126,171,77,-5.581567866263923],[126,171,78,-5.544334934395593],[126,171,79,-5.499488876236192],[126,172,64,-5.616216193699795],[126,172,65,-5.63113039446685],[126,172,66,-5.623327960531784],[126,172,67,-5.601308793288794],[126,172,68,-5.58468687064208],[126,172,69,-5.572725377129264],[126,172,70,-5.571956024202495],[126,172,71,-5.581126614268283],[126,172,72,-5.610900268343917],[126,172,73,-5.651377680636297],[126,172,74,-5.679774051549651],[126,172,75,-5.687015017620174],[126,172,76,-5.6789824721107545],[126,172,77,-5.6518457789730325],[126,172,78,-5.613692558412775],[126,172,79,-5.567512827311474],[126,173,64,-5.666585301725873],[126,173,65,-5.678151972474457],[126,173,66,-5.66978996021235],[126,173,67,-5.646254881641659],[126,173,68,-5.627419174951392],[126,173,69,-5.6150238745528425],[126,173,70,-5.615864086156276],[126,173,71,-5.6265931539890675],[126,173,72,-5.655887381357355],[126,173,73,-5.696260598775504],[126,173,74,-5.725335353582199],[126,173,75,-5.736304577981645],[126,173,76,-5.7307676841235695],[126,173,77,-5.699770308073498],[126,173,78,-5.663080385727278],[126,173,79,-5.617386354641687],[126,174,64,-5.713916871132882],[126,174,65,-5.722638040269183],[126,174,66,-5.713415205064594],[126,174,67,-5.692796192074663],[126,174,68,-5.673143894110265],[126,174,69,-5.660138165563875],[126,174,70,-5.659818815136863],[126,174,71,-5.671075158773433],[126,174,72,-5.699627059997093],[126,174,73,-5.735685241394687],[126,174,74,-5.763477873671683],[126,174,75,-5.7746270346066115],[126,174,76,-5.7692917803277215],[126,174,77,-5.741101132221671],[126,174,78,-5.703993890928214],[126,174,79,-5.6629366527649205],[126,175,64,-5.755383886653673],[126,175,65,-5.761779609653015],[126,175,66,-5.755034312970037],[126,175,67,-5.736002072235831],[126,175,68,-5.71580388167671],[126,175,69,-5.705264742590706],[126,175,70,-5.703031537399421],[126,175,71,-5.716240850835876],[126,175,72,-5.745914200429982],[126,175,73,-5.78023299574821],[126,175,74,-5.805708024907248],[126,175,75,-5.817054645645499],[126,175,76,-5.814921758843025],[126,175,77,-5.7866086336332065],[126,175,78,-5.750533942002353],[126,175,79,-5.7075666385055195],[126,176,64,-5.800924454230544],[126,176,65,-5.8078806542205115],[126,176,66,-5.7991292360423286],[126,176,67,-5.780713783966457],[126,176,68,-5.759770621590842],[126,176,69,-5.749859912152869],[126,176,70,-5.749605786088046],[126,176,71,-5.761962713395204],[126,176,72,-5.789871843897762],[126,176,73,-5.824273202337241],[126,176,74,-5.850013614169912],[126,176,75,-5.862809409509141],[126,176,76,-5.865486991264744],[126,176,77,-5.838858235518066],[126,176,78,-5.800171091516095],[126,176,79,-5.757333869274145],[126,177,64,-5.85656081977448],[126,177,65,-5.857198599237206],[126,177,66,-5.841553982916067],[126,177,67,-5.81707659454962],[126,177,68,-5.793101050055552],[126,177,69,-5.782544368459328],[126,177,70,-5.785466812865761],[126,177,71,-5.796781606545165],[126,177,72,-5.82694920881208],[126,177,73,-5.862382707875562],[126,177,74,-5.923952845802377],[126,177,75,-5.979238607773982],[126,177,76,-6.0005556246504845],[126,177,77,-5.970277640244607],[126,177,78,-5.926840671685856],[126,177,79,-5.8776039985781265],[126,178,64,-5.911863713105672],[126,178,65,-5.912361458341004],[126,178,66,-5.893063965716258],[126,178,67,-5.868197900298816],[126,178,68,-5.844116927086074],[126,178,69,-5.832508446378213],[126,178,70,-5.836445081671635],[126,178,71,-5.848122361996548],[126,178,72,-5.877488366097959],[126,178,73,-5.914633284062578],[126,178,74,-5.98247822232528],[126,178,75,-6.040767417818611],[126,178,76,-6.049130080367414],[126,178,77,-6.019447520119716],[126,178,78,-5.977901761235211],[126,178,79,-5.927326974527876],[126,179,64,-5.9617916847778485],[126,179,65,-5.962320355340303],[126,179,66,-5.940650931950651],[126,179,67,-5.912157408014325],[126,179,68,-5.88908112073577],[126,179,69,-5.8794818262648],[126,179,70,-5.883933259255],[126,179,71,-5.895954900548837],[126,179,72,-5.92573388748556],[126,179,73,-5.962292510448113],[126,179,74,-6.033152636447979],[126,179,75,-6.103292006290053],[126,179,76,-6.10787556099066],[126,179,77,-6.076896532622579],[126,179,78,-6.036922391216287],[126,179,79,-5.990180779585683],[126,180,64,-6.004770876497832],[126,180,65,-6.002984922862368],[126,180,66,-5.982068559011151],[126,180,67,-5.951294351709341],[126,180,68,-5.9263276730651855],[126,180,69,-5.916715846494926],[126,180,70,-5.91899350923684],[126,180,71,-5.928329785866819],[126,180,72,-5.9591792083558275],[126,180,73,-5.995853419194857],[126,180,74,-6.066218959162203],[126,180,75,-6.147548798089388],[126,180,76,-6.146297570973955],[126,180,77,-6.113335343212778],[126,180,78,-6.076507157358261],[126,180,79,-6.030770101878718],[126,181,64,-6.043415915218421],[126,181,65,-6.049233953511355],[126,181,66,-6.03431548532067],[126,181,67,-6.009905107078633],[126,181,68,-5.989157432879887],[126,181,69,-5.978495578944704],[126,181,70,-5.977065670936296],[126,181,71,-5.984164538702833],[126,181,72,-6.016713102343202],[126,181,73,-6.053323646417846],[126,181,74,-6.078406001594042],[126,181,75,-6.088099998915173],[126,181,76,-6.086671357276469],[126,181,77,-6.0804214657127105],[126,181,78,-6.053226589866398],[126,181,79,-6.010400092455328],[126,182,64,-6.090140191960773],[126,182,65,-6.0968711961741615],[126,182,66,-6.081522014958338],[126,182,67,-6.059805507768619],[126,182,68,-6.0413158264786375],[126,182,69,-6.027473480426315],[126,182,70,-6.026073897390692],[126,182,71,-6.03420941544948],[126,182,72,-6.063933376572338],[126,182,73,-6.102314430416761],[126,182,74,-6.126113251233533],[126,182,75,-6.132122732673184],[126,182,76,-6.136654831553728],[126,182,77,-6.129009810576725],[126,182,78,-6.094090962614599],[126,182,79,-6.060363153599258],[126,183,64,-6.135463402254083],[126,183,65,-6.1408640695519185],[126,183,66,-6.128808993682178],[126,183,67,-6.108077443790168],[126,183,68,-6.089383416382002],[126,183,69,-6.077042560541419],[126,183,70,-6.074402589337974],[126,183,71,-6.084239369130056],[126,183,72,-6.113400156408721],[126,183,73,-6.152735302626261],[126,183,74,-6.175211521417054],[126,183,75,-6.187185779476243],[126,183,76,-6.186156484103806],[126,183,77,-6.172164074282972],[126,183,78,-6.134781917995738],[126,183,79,-6.106718358543975],[126,184,64,-6.182709056335953],[126,184,65,-6.189989537639438],[126,184,66,-6.17712116107131],[126,184,67,-6.160201327703134],[126,184,68,-6.138984393905074],[126,184,69,-6.1258073411386675],[126,184,70,-6.122838180030641],[126,184,71,-6.131517611749818],[126,184,72,-6.164045937996711],[126,184,73,-6.199392256917084],[126,184,74,-6.224140813940378],[126,184,75,-6.240344783287282],[126,184,76,-6.227623604940299],[126,184,77,-6.207259423861264],[126,184,78,-6.175557905066481],[126,184,79,-6.14167756127934],[126,185,64,-6.229145632867158],[126,185,65,-6.2388206686755785],[126,185,66,-6.226411314956231],[126,185,67,-6.20941135480616],[126,185,68,-6.188770021715915],[126,185,69,-6.176332645152002],[126,185,70,-6.174662872637213],[126,185,71,-6.181958343727638],[126,185,72,-6.211656448345248],[126,185,73,-6.247994801512267],[126,185,74,-6.270106512474247],[126,185,75,-6.285498502101263],[126,185,76,-6.275187330416226],[126,185,77,-6.242943374853393],[126,185,78,-6.219778079277909],[126,185,79,-6.180866332191217],[126,186,64,-6.283734299193284],[126,186,65,-6.29326141691553],[126,186,66,-6.281054440342257],[126,186,67,-6.263522492692076],[126,186,68,-6.240662013072346],[126,186,69,-6.230396496618545],[126,186,70,-6.229697725415796],[126,186,71,-6.2394896584736115],[126,186,72,-6.266138150424664],[126,186,73,-6.303244857970406],[126,186,74,-6.32319942531512],[126,186,75,-6.328276523270457],[126,186,76,-6.3203290731027995],[126,186,77,-6.291538675815172],[126,186,78,-6.280167366382879],[126,186,79,-6.247902520611094],[126,187,64,-6.33259884439229],[126,187,65,-6.339031293117585],[126,187,66,-6.326140953577115],[126,187,67,-6.309190949751125],[126,187,68,-6.287064315555784],[126,187,69,-6.276586391103329],[126,187,70,-6.278261006274986],[126,187,71,-6.288832397493728],[126,187,72,-6.314887101369243],[126,187,73,-6.351918850121791],[126,187,74,-6.3722949995198634],[126,187,75,-6.375232893972061],[126,187,76,-6.366902242105739],[126,187,77,-6.336916979541598],[126,187,78,-6.321313072769807],[126,187,79,-6.294223559437663],[126,188,64,-6.361850229439961],[126,188,65,-6.367153823717569],[126,188,66,-6.3538689110733655],[126,188,67,-6.336771504806868],[126,188,68,-6.316627052166153],[126,188,69,-6.305051199435855],[126,188,70,-6.309535153015662],[126,188,71,-6.320069264111361],[126,188,72,-6.348075292072421],[126,188,73,-6.382848012221683],[126,188,74,-6.402451427779671],[126,188,75,-6.405001935278697],[126,188,76,-6.393011969711444],[126,188,77,-6.365466460288616],[126,188,78,-6.3394036611499605],[126,188,79,-6.317101608023071],[126,189,64,-6.402868150678248],[126,189,65,-6.4121384682293865],[126,189,66,-6.4054580043420515],[126,189,67,-6.390841591205935],[126,189,68,-6.371117003940707],[126,189,69,-6.358282104019088],[126,189,70,-6.3613568609685105],[126,189,71,-6.368449228191934],[126,189,72,-6.392100898575308],[126,189,73,-6.424185176733305],[126,189,74,-6.439678078892572],[126,189,75,-6.445068282241262],[126,189,76,-6.450479590108368],[126,189,77,-6.4267381458198845],[126,189,78,-6.4028943659047],[126,189,79,-6.382361933980864],[126,190,64,-6.449689284969595],[126,190,65,-6.4592909548329995],[126,190,66,-6.454551134514113],[126,190,67,-6.4401379803764165],[126,190,68,-6.418271140270074],[126,190,69,-6.4058494903039565],[126,190,70,-6.410853214964222],[126,190,71,-6.41805497544267],[126,190,72,-6.440664442098076],[126,190,73,-6.47142123884729],[126,190,74,-6.487714803225042],[126,190,75,-6.485881588214415],[126,190,76,-6.489029040243472],[126,190,77,-6.46908377884681],[126,190,78,-6.454927435652581],[126,190,79,-6.433590677798356],[126,191,64,-6.4964536507909045],[126,191,65,-6.5053794129293205],[126,191,66,-6.501238905871539],[126,191,67,-6.48614811384055],[126,191,68,-6.463562759017184],[126,191,69,-6.454258948054049],[126,191,70,-6.458128778334283],[126,191,71,-6.4662342831327],[126,191,72,-6.488409603318958],[126,191,73,-6.520221315612986],[126,191,74,-6.533958144252142],[126,191,75,-6.5349608906519405],[126,191,76,-6.527485378883912],[126,191,77,-6.512118347296945],[126,191,78,-6.496180304351973],[126,191,79,-6.480609104170583],[126,192,64,-6.546367915894325],[126,192,65,-6.55439243749061],[126,192,66,-6.547796414736984],[126,192,67,-6.533284479412931],[126,192,68,-6.513227070480043],[126,192,69,-6.505343814662833],[126,192,70,-6.505551801923273],[126,192,71,-6.512835665246992],[126,192,72,-6.534918543567137],[126,192,73,-6.566574360017155],[126,192,74,-6.583354937523966],[126,192,75,-6.58165995886228],[126,192,76,-6.568108147555895],[126,192,77,-6.55428461489564],[126,192,78,-6.538114919065791],[126,192,79,-6.532070240336878],[126,193,64,-6.605181518911432],[126,193,65,-6.6066398323961195],[126,193,66,-6.5902758669337205],[126,193,67,-6.571205226719272],[126,193,68,-6.551750320472126],[126,193,69,-6.54224217874727],[126,193,70,-6.544375941253548],[126,193,71,-6.558991209942455],[126,193,72,-6.5890372562664306],[126,193,73,-6.62705152852543],[126,193,74,-6.644958490073043],[126,193,75,-6.642571975796671],[126,193,76,-6.6218046672288375],[126,193,77,-6.59048981208699],[126,193,78,-6.552449124931309],[126,193,79,-6.540217708325254],[126,194,64,-6.658495731005133],[126,194,65,-6.659381778814556],[126,194,66,-6.643249160311241],[126,194,67,-6.621460989209397],[126,194,68,-6.603153068310316],[126,194,69,-6.595116387239179],[126,194,70,-6.59661651414426],[126,194,71,-6.6113039068471195],[126,194,72,-6.643331064100131],[126,194,73,-6.682960482830659],[126,194,74,-6.701842596551414],[126,194,75,-6.697492839234907],[126,194,76,-6.678482341357764],[126,194,77,-6.645248834415871],[126,194,78,-6.604146235116729],[126,194,79,-6.577627121745608],[126,195,64,-6.705404223068682],[126,195,65,-6.705254298693132],[126,195,66,-6.6891274653731765],[126,195,67,-6.666578866256039],[126,195,68,-6.648028681174179],[126,195,69,-6.642011325193689],[126,195,70,-6.643455959532329],[126,195,71,-6.659222220758536],[126,195,72,-6.692478293444109],[126,195,73,-6.732886801065684],[126,195,74,-6.753795927178616],[126,195,75,-6.7476960631339695],[126,195,76,-6.728890152183835],[126,195,77,-6.694677986446682],[126,195,78,-6.653573680595546],[126,195,79,-6.626415967419847],[126,196,64,-6.752485276329259],[126,196,65,-6.760706426151029],[126,196,66,-6.751548047977147],[126,196,67,-6.735192749935405],[126,196,68,-6.721246937922105],[126,196,69,-6.722128614978028],[126,196,70,-6.728028744665565],[126,196,71,-6.74534260937823],[126,196,72,-6.780049324176919],[126,196,73,-6.821889446018454],[126,196,74,-6.843838522307642],[126,196,75,-6.840718442062156],[126,196,76,-6.821609264427286],[126,196,77,-6.789637580249837],[126,196,78,-6.747619139092696],[126,196,79,-6.712856610600433],[126,197,64,-6.797483631868589],[126,197,65,-6.809223341040444],[126,197,66,-6.798384025843743],[126,197,67,-6.780649806451307],[126,197,68,-6.769584692252728],[126,197,69,-6.7687872608682245],[126,197,70,-6.7754111360796605],[126,197,71,-6.791514561240576],[126,197,72,-6.827122604444762],[126,197,73,-6.870479776723142],[126,197,74,-6.8906066817925975],[126,197,75,-6.890286952415294],[126,197,76,-6.872955997827345],[126,197,77,-6.842634250934864],[126,197,78,-6.808205009696912],[126,197,79,-6.788975570602534],[126,198,64,-6.8457775438601045],[126,198,65,-6.860309483113001],[126,198,66,-6.8463030033924275],[126,198,67,-6.828633301404093],[126,198,68,-6.8153822161266415],[126,198,69,-6.814300919574916],[126,198,70,-6.8223689027646],[126,198,71,-6.8379355985181585],[126,198,72,-6.875849768425956],[126,198,73,-6.9194978478539975],[126,198,74,-6.938896484943208],[126,198,75,-6.939677250979956],[126,198,76,-6.924345429633823],[126,198,77,-6.89366504926662],[126,198,78,-6.860728370258295],[126,198,79,-6.840545780855103],[126,199,64,-6.895629041636281],[126,199,65,-6.9093805022636685],[126,199,66,-6.897541231764837],[126,199,67,-6.878405162892525],[126,199,68,-6.863626126544556],[126,199,69,-6.861182982982843],[126,199,70,-6.8707104565666866],[126,199,71,-6.888092854032453],[126,199,72,-6.92569678065385],[126,199,73,-6.969490394715279],[126,199,74,-6.988360909484949],[126,199,75,-6.989380395087267],[126,199,76,-6.9747442236810855],[126,199,77,-6.9443391622379504],[126,199,78,-6.907325914599313],[126,199,79,-6.890234421000191],[126,200,64,-6.944937976870312],[126,200,65,-6.958282146367764],[126,200,66,-6.946776561533744],[126,200,67,-6.929638387729267],[126,200,68,-6.9156884503899],[126,200,69,-6.910984927554844],[126,200,70,-6.917683175921795],[126,200,71,-6.937846138398924],[126,200,72,-6.976043102803942],[126,200,73,-7.018550079719512],[126,200,74,-7.037173239421501],[126,200,75,-7.036135466011765],[126,200,76,-7.023245604161389],[126,200,77,-6.990386001561985],[126,200,78,-6.96005050254372],[126,200,79,-6.938939792893637],[126,201,64,-6.98387449306814],[126,201,65,-6.9977466781036854],[126,201,66,-6.988293228905545],[126,201,67,-6.971669525711249],[126,201,68,-6.960094855286887],[126,201,69,-6.9546764219628505],[126,201,70,-6.961668028067765],[126,201,71,-6.986446083548178],[126,201,72,-7.027888541311187],[126,201,73,-7.074327156467415],[126,201,74,-7.092308885574468],[126,201,75,-7.09116185570011],[126,201,76,-7.078612011261485],[126,201,77,-7.046551930591269],[126,201,78,-7.029657927581751],[126,201,79,-6.9989004214657555],[126,202,64,-7.036813263068706],[126,202,65,-7.052628345473088],[126,202,66,-7.042206188441605],[126,202,67,-7.0267373540270235],[126,202,68,-7.0157694336396315],[126,202,69,-7.009376738492314],[126,202,70,-7.015933008995102],[126,202,71,-7.038785755115324],[126,202,72,-7.081932417966215],[126,202,73,-7.127687331669775],[126,202,74,-7.145158931095896],[126,202,75,-7.1449526816302775],[126,202,76,-7.1330198695518865],[126,202,77,-7.0966017714358225],[126,202,78,-7.083089844439734],[126,202,79,-7.048166670309107],[126,203,64,-7.08282429143808],[126,203,65,-7.1005056053665],[126,203,66,-7.092483580934585],[126,203,67,-7.077903663842712],[126,203,68,-7.065527061244267],[126,203,69,-7.060793476037829],[126,203,70,-7.0673249402004865],[126,203,71,-7.087298231839252],[126,203,72,-7.131940381513486],[126,203,73,-7.176079633331562],[126,203,74,-7.192797523516137],[126,203,75,-7.193638181462813],[126,203,76,-7.1781643137546425],[126,203,77,-7.143660029384899],[126,203,78,-7.136013119632397],[126,203,79,-7.10184099051604],[126,204,64,-7.1191060976022165],[126,204,65,-7.13437885236291],[126,204,66,-7.127688042428155],[126,204,67,-7.11015335959627],[126,204,68,-7.096953026532455],[126,204,69,-7.090432126854087],[126,204,70,-7.096041744048291],[126,204,71,-7.11558608795245],[126,204,72,-7.157521516249841],[126,204,73,-7.197965750309996],[126,204,74,-7.219126890064967],[126,204,75,-7.218571968351566],[126,204,76,-7.200911753399889],[126,204,77,-7.167835379553784],[126,204,78,-7.165532353818136],[126,204,79,-7.133725776914503],[126,205,64,-7.180908066880563],[126,205,65,-7.194155791620446],[126,205,66,-7.1903292760764845],[126,205,67,-7.17151065276289],[126,205,68,-7.157993795250157],[126,205,69,-7.150591298547578],[126,205,70,-7.154841464130318],[126,205,71,-7.169763639716027],[126,205,72,-7.205582702485058],[126,205,73,-7.237541099912624],[126,205,74,-7.256518633510031],[126,205,75,-7.254857399656375],[126,205,76,-7.236767385195642],[126,205,77,-7.257270354547613],[126,205,78,-7.250881776977587],[126,205,79,-7.202361788391813],[126,206,64,-7.2307123341950525],[126,206,65,-7.247060196477508],[126,206,66,-7.242164239245468],[126,206,67,-7.223055987690312],[126,206,68,-7.209461347968946],[126,206,69,-7.200736349638605],[126,206,70,-7.204473880039332],[126,206,71,-7.220245086033618],[126,206,72,-7.2544978821206865],[126,206,73,-7.288391815963176],[126,206,74,-7.303678208475954],[126,206,75,-7.3044448183517865],[126,206,76,-7.284727031113644],[126,206,77,-7.307376196540138],[126,206,78,-7.303643646852316],[126,206,79,-7.255280999784705],[126,207,64,-7.281530308600107],[126,207,65,-7.301313588261818],[126,207,66,-7.295473485334898],[126,207,67,-7.277972838498793],[126,207,68,-7.264140223977153],[126,207,69,-7.253817036410042],[126,207,70,-7.258933775626983],[126,207,71,-7.2743326383729645],[126,207,72,-7.305987643648388],[126,207,73,-7.33723931093018],[126,207,74,-7.3548406591938145],[126,207,75,-7.353608075133934],[126,207,76,-7.336252961182182],[126,207,77,-7.361317815345195],[126,207,78,-7.354209139241879],[126,207,79,-7.305294672531514],[126,208,64,-7.332251615180752],[126,208,65,-7.351964978591799],[126,208,66,-7.345700887852714],[126,208,67,-7.331947314507417],[126,208,68,-7.314759428781107],[126,208,69,-7.305922550101731],[126,208,70,-7.312642582129912],[126,208,71,-7.326449228227935],[126,208,72,-7.355941907122517],[126,208,73,-7.388567314825353],[126,208,74,-7.405696509971163],[126,208,75,-7.404831788061703],[126,208,76,-7.410151416190201],[126,208,77,-7.447282069451139],[126,208,78,-7.419181964257096],[126,208,79,-7.363977165528211],[126,209,64,-7.379910260012479],[126,209,65,-7.399200831232137],[126,209,66,-7.3966806462033565],[126,209,67,-7.384564447161212],[126,209,68,-7.3677183233533245],[126,209,69,-7.358538471228105],[126,209,70,-7.362746879900036],[126,209,71,-7.376394951870649],[126,209,72,-7.408181956982541],[126,209,73,-7.4413137697640845],[126,209,74,-7.457819196840396],[126,209,75,-7.456959513965277],[126,209,76,-7.481088619056162],[126,209,77,-7.506737485297291],[126,209,78,-7.473300735891018],[126,209,79,-7.415972512671696],[126,210,64,-7.430716505144635],[126,210,65,-7.450171234726489],[126,210,66,-7.450321236345109],[126,210,67,-7.4418298614993565],[126,210,68,-7.426288540795706],[126,210,69,-7.414631875208909],[126,210,70,-7.418236097034815],[126,210,71,-7.431477027941006],[126,210,72,-7.4630840230282915],[126,210,73,-7.4978123121163955],[126,210,74,-7.51467131669965],[126,210,75,-7.515082120427327],[126,210,76,-7.541983440432481],[126,210,77,-7.5640710596297644],[126,210,78,-7.528818174303378],[126,210,79,-7.467063187943357],[126,211,64,-7.475441353907726],[126,211,65,-7.495464036479682],[126,211,66,-7.499940280621435],[126,211,67,-7.491440293051189],[126,211,68,-7.478410070671067],[126,211,69,-7.467169131190095],[126,211,70,-7.470187915690952],[126,211,71,-7.481687164699401],[126,211,72,-7.514052133458394],[126,211,73,-7.549005829304384],[126,211,74,-7.567629369926786],[126,211,75,-7.566638660153466],[126,211,76,-7.599233648334888],[126,211,77,-7.624808548281013],[126,211,78,-7.588719485654846],[126,211,79,-7.524117224808215],[126,212,64,-7.526229101524159],[126,212,65,-7.550674689366798],[126,212,66,-7.554745357635386],[126,212,67,-7.547948758607829],[126,212,68,-7.534454209176888],[126,212,69,-7.523628765143498],[126,212,70,-7.528756001173939],[126,212,71,-7.543387044463099],[126,212,72,-7.573952585602419],[126,212,73,-7.610814707944135],[126,212,74,-7.626899424243661],[126,212,75,-7.627105020595583],[126,212,76,-7.655089632611847],[126,212,77,-7.672111458318877],[126,212,78,-7.6421525004633315],[126,212,79,-7.578175133036763],[126,213,64,-7.568333415857657],[126,213,65,-7.597059779206728],[126,213,66,-7.60724400340492],[126,213,67,-7.6023652743316],[126,213,68,-7.590783993875829],[126,213,69,-7.582949666991038],[126,213,70,-7.587260512963792],[126,213,71,-7.599918959624311],[126,213,72,-7.632795459770123],[126,213,73,-7.6666036433443345],[126,213,74,-7.682792738671266],[126,213,75,-7.681476540277748],[126,213,76,-7.73751711677814],[126,213,77,-7.753863341892519],[126,213,78,-7.725716018888317],[126,213,79,-7.6652702893416285],[126,214,64,-7.620680322837236],[126,214,65,-7.646582160810373],[126,214,66,-7.6576339874420585],[126,214,67,-7.651358152586649],[126,214,68,-7.641682793262635],[126,214,69,-7.636562924986882],[126,214,70,-7.638939008324915],[126,214,71,-7.651230927417611],[126,214,72,-7.6850193984561805],[126,214,73,-7.718365728490966],[126,214,74,-7.733889389744207],[126,214,75,-7.734311107236482],[126,214,76,-7.79208635731809],[126,214,77,-7.80875586056679],[126,214,78,-7.772989918693625],[126,214,79,-7.713948419504973],[126,215,64,-7.676598115358578],[126,215,65,-7.701109495592022],[126,215,66,-7.71113706034488],[126,215,67,-7.704246993572254],[126,215,68,-7.691891617327501],[126,215,69,-7.6876097823321885],[126,215,70,-7.691986703914105],[126,215,71,-7.703273439531946],[126,215,72,-7.7360438586448135],[126,215,73,-7.769582529940607],[126,215,74,-7.786114182191501],[126,215,75,-7.786885276997385],[126,215,76,-7.826704475015445],[126,215,77,-7.849010146210537],[126,215,78,-7.813470761023043],[126,215,79,-7.7625527631712785],[126,216,64,-7.729272837291876],[126,216,65,-7.7556065128608065],[126,216,66,-7.761292458771752],[126,216,67,-7.7536001341519665],[126,216,68,-7.7429713325628375],[126,216,69,-7.737842273359621],[126,216,70,-7.743937023503564],[126,216,71,-7.753968712346084],[126,216,72,-7.786065330013759],[126,216,73,-7.819443145306902],[126,216,74,-7.836372492731307],[126,216,75,-7.836881391628237],[126,216,76,-7.839459207032908],[126,216,77,-7.879356658056398],[126,216,78,-7.867968960856489],[126,216,79,-7.812713275538903],[126,217,64,-7.789570094447638],[126,217,65,-7.809656169654857],[126,217,66,-7.805642342598021],[126,217,67,-7.791916788563031],[126,217,68,-7.7815223461572325],[126,217,69,-7.775396043469639],[126,217,70,-7.783452837508341],[126,217,71,-7.799286918759511],[126,217,72,-7.83296596613053],[126,217,73,-7.870066332218099],[126,217,74,-7.889316402582009],[126,217,75,-7.8865265209546855],[126,217,76,-7.892184986661485],[126,217,77,-7.921721255562051],[126,217,78,-7.914583088242819],[126,217,79,-7.862336742773176],[126,218,64,-7.845410572290622],[126,218,65,-7.862520382515047],[126,218,66,-7.858943142240768],[126,218,67,-7.846762965028155],[126,218,68,-7.833746063828415],[126,218,69,-7.829362715485056],[126,218,70,-7.835158139055725],[126,218,71,-7.853158992256477],[126,218,72,-7.889923491472886],[126,218,73,-7.927674377013737],[126,218,74,-7.945019827202507],[126,218,75,-7.943666226247671],[126,218,76,-7.934796590140971],[126,218,77,-7.9684542699402],[126,218,78,-7.968265345145076],[126,218,79,-7.913833411849784],[126,219,64,-7.8958460712038985],[126,219,65,-7.912191853436623],[126,219,66,-7.909594125829651],[126,219,67,-7.896697475199129],[126,219,68,-7.881946022406002],[126,219,69,-7.878197882902723],[126,219,70,-7.886013737079986],[126,219,71,-7.903168377011299],[126,219,72,-7.939169654877569],[126,219,73,-7.978093230718564],[126,219,74,-7.994268510571638],[126,219,75,-7.99473027602949],[126,219,76,-7.984686319195811],[126,219,77,-8.02793952099068],[126,219,78,-8.025777807391545],[126,219,79,-7.970953393552062],[126,220,64,-7.936312756326547],[126,220,65,-7.952964313743688],[126,220,66,-7.947603867249891],[126,220,67,-7.9340323336561775],[126,220,68,-7.916094684881769],[126,220,69,-7.910428685395937],[126,220,70,-7.918079273422121],[126,220,71,-7.93348599142821],[126,220,72,-7.969698679215189],[126,220,73,-8.00926685284054],[126,220,74,-8.027396456043993],[126,220,75,-8.02987332823953],[126,220,76,-8.025055335114464],[126,220,77,-8.070885960386617],[126,220,78,-8.074587836431425],[126,220,79,-8.01760166454156],[126,221,64,-7.986881642406086],[126,221,65,-8.002175576153169],[126,221,66,-7.9979239777581235],[126,221,67,-7.984778148287936],[126,221,68,-7.96573832611455],[126,221,69,-7.959288192370064],[126,221,70,-7.966831953785572],[126,221,71,-7.9809695246111785],[126,221,72,-8.018427238681888],[126,221,73,-8.059408479267663],[126,221,74,-8.07927179058189],[126,221,75,-8.080888590124708],[126,221,76,-8.099931492620078],[126,221,77,-8.138747061846576],[126,221,78,-8.124190071244193],[126,221,79,-8.064702472811485],[126,222,64,-8.038279974606931],[126,222,65,-8.051890401177754],[126,222,66,-8.049230263918966],[126,222,67,-8.037103966195145],[126,222,68,-8.01788482186678],[126,222,69,-8.011375112107542],[126,222,70,-8.016410828195925],[126,222,71,-8.030291276356225],[126,222,72,-8.066135963810533],[126,222,73,-8.108963008338982],[126,222,74,-8.12921545204592],[126,222,75,-8.131286179529527],[126,222,76,-8.149484838431459],[126,222,77,-8.17595837016109],[126,222,78,-8.163249244077704],[126,222,79,-8.10571457484972],[126,223,64,-8.092292233289536],[126,223,65,-8.10857501977837],[126,223,66,-8.105588069467961],[126,223,67,-8.092190814544086],[126,223,68,-8.073203368993385],[126,223,69,-8.0654820700243],[126,223,70,-8.069654931166278],[126,223,71,-8.081407378534676],[126,223,72,-8.11659176238079],[126,223,73,-8.159007500487167],[126,223,74,-8.180003195216479],[126,223,75,-8.185614372736211],[126,223,76,-8.221478525458531],[126,223,77,-8.220390616897697],[126,223,78,-8.206240089955346],[126,223,79,-8.150990278131909],[126,224,64,-8.142782782569247],[126,224,65,-8.161651151904344],[126,224,66,-8.158130062285348],[126,224,67,-8.142610619010094],[126,224,68,-8.124518249501051],[126,224,69,-8.114081963756844],[126,224,70,-8.116932608048995],[126,224,71,-8.130585742318312],[126,224,72,-8.163497203031145],[126,224,73,-8.20742506652307],[126,224,74,-8.227510302398285],[126,224,75,-8.242580795029776],[126,224,76,-8.270210443008834],[126,224,77,-8.271535761968853],[126,224,78,-8.251239917155603],[126,224,79,-8.199445701699593],[126,225,64,-8.198996175841213],[126,225,65,-8.212459884533049],[126,225,66,-8.206035452171589],[126,225,67,-8.186170939511342],[126,225,68,-8.167991279809122],[126,225,69,-8.156911862393303],[126,225,70,-8.156864345204701],[126,225,71,-8.170343474181418],[126,225,72,-8.203360902924564],[126,225,73,-8.246154223583696],[126,225,74,-8.265620589453354],[126,225,75,-8.281493666551597],[126,225,76,-8.321908892981655],[126,225,77,-8.327356501696045],[126,225,78,-8.292443661984672],[126,225,79,-8.24684343216099],[126,226,64,-8.254903047494091],[126,226,65,-8.266439116827078],[126,226,66,-8.260053009178392],[126,226,67,-8.240315949676402],[126,226,68,-8.21876201309451],[126,226,69,-8.210851297413422],[126,226,70,-8.208002067856832],[126,226,71,-8.222458183363148],[126,226,72,-8.255849539789216],[126,226,73,-8.30066962007609],[126,226,74,-8.315901536445608],[126,226,75,-8.323110180921233],[126,226,76,-8.372405679930434],[126,226,77,-8.375532406765817],[126,226,78,-8.343289949990242],[126,226,79,-8.297232576414],[126,227,64,-8.304605259460853],[126,227,65,-8.317141942684945],[126,227,66,-8.311061476252725],[126,227,67,-8.288676359773257],[126,227,68,-8.266587469435619],[126,227,69,-8.258511815970259],[126,227,70,-8.257507291789317],[126,227,71,-8.27270603900103],[126,227,72,-8.307314561579808],[126,227,73,-8.349857175416647],[126,227,74,-8.368012008545916],[126,227,75,-8.38572186550992],[126,227,76,-8.436074240868498],[126,227,77,-8.430283249927543],[126,227,78,-8.404359580981552],[126,227,79,-8.358537987195206],[126,228,64,-8.344571683628084],[126,228,65,-8.360522771572441],[126,228,66,-8.350753559952548],[126,228,67,-8.328311054307228],[126,228,68,-8.305954217299595],[126,228,69,-8.295602218700669],[126,228,70,-8.295550364425775],[126,228,71,-8.310403845856476],[126,228,72,-8.347047541262416],[126,228,73,-8.389082518915664],[126,228,74,-8.407997100310254],[126,228,75,-8.431686384038322],[126,228,76,-8.491295162187269],[126,228,77,-8.482992612291541],[126,228,78,-8.461022291920584],[126,228,79,-8.41419253079337],[126,229,64,-8.385636292722795],[126,229,65,-8.406311728835293],[126,229,66,-8.404026499631357],[126,229,67,-8.38663998475824],[126,229,68,-8.36608766915555],[126,229,69,-8.352806063247757],[126,229,70,-8.355784255625094],[126,229,71,-8.37000902515137],[126,229,72,-8.407405584140388],[126,229,73,-8.451663613132158],[126,229,74,-8.468754400457877],[126,229,75,-8.51449142106934],[126,229,76,-8.574963027068074],[126,229,77,-8.565405796963386],[126,229,78,-8.523830938849397],[126,229,79,-8.468392307526267],[126,230,64,-8.43383877579739],[126,230,65,-8.454566570290126],[126,230,66,-8.451787343332082],[126,230,67,-8.434802022314146],[126,230,68,-8.415142870438837],[126,230,69,-8.403237845050683],[126,230,70,-8.404681185909645],[126,230,71,-8.419257053799326],[126,230,72,-8.459684496971859],[126,230,73,-8.502563545731977],[126,230,74,-8.522691327987621],[126,230,75,-8.5597632735002],[126,230,76,-8.615703046278743],[126,230,77,-8.615899592435536],[126,230,78,-8.567718775562938],[126,230,79,-8.513978559905025],[126,231,64,-8.489925607330004],[126,231,65,-8.51034085430202],[126,231,66,-8.507578156955853],[126,231,67,-8.488962849033745],[126,231,68,-8.466726607441895],[126,231,69,-8.454875067487169],[126,231,70,-8.456277203418125],[126,231,71,-8.471672575796259],[126,231,72,-8.51239339761192],[126,231,73,-8.554364167932913],[126,231,74,-8.573985217721267],[126,231,75,-8.611214195422354],[126,231,76,-8.66693878346022],[126,231,77,-8.663764510817169],[126,231,78,-8.615789172466316],[126,231,79,-8.56113740329538],[126,232,64,-8.539808659624395],[126,232,65,-8.561226784117576],[126,232,66,-8.554536207266917],[126,232,67,-8.535297427010459],[126,232,68,-8.513737585513766],[126,232,69,-8.503289627950466],[126,232,70,-8.504070131639688],[126,232,71,-8.521240613114024],[126,232,72,-8.564157053117167],[126,232,73,-8.603464078405484],[126,232,74,-8.623415638569131],[126,232,75,-8.668436234874042],[126,232,76,-8.725777010615518],[126,232,77,-8.715736167596212],[126,232,78,-8.66532350407139],[126,232,79,-8.612581431773762],[126,233,64,-8.591120098455766],[126,233,65,-8.611793158060042],[126,233,66,-8.603507117395187],[126,233,67,-8.579806605480815],[126,233,68,-8.55924588634458],[126,233,69,-8.55163846637924],[126,233,70,-8.553732821833915],[126,233,71,-8.568530730291855],[126,233,72,-8.612250701573744],[126,233,73,-8.652687695489938],[126,233,74,-8.670935609923685],[126,233,75,-8.730514326418083],[126,233,76,-8.785861009521707],[126,233,77,-8.768515806666224],[126,233,78,-8.718989314287587],[126,233,79,-8.667454967575093],[126,234,64,-8.64553018115123],[126,234,65,-8.664051001558827],[126,234,66,-8.656505668384602],[126,234,67,-8.631817452368516],[126,234,68,-8.613092097900726],[126,234,69,-8.602088616320847],[126,234,70,-8.605462312503875],[126,234,71,-8.620122765253912],[126,234,72,-8.66129464165455],[126,234,73,-8.70297451970593],[126,234,74,-8.722489555470506],[126,234,75,-8.775746418302997],[126,234,76,-8.83653091236583],[126,234,77,-8.829324951944086],[126,234,78,-8.778780225228054],[126,234,79,-8.725765234061246],[126,235,64,-8.694971563377992],[126,235,65,-8.714026045499889],[126,235,66,-8.705744888053216],[126,235,67,-8.681818624092346],[126,235,68,-8.663121597069413],[126,235,69,-8.650293341396361],[126,235,70,-8.65145342003149],[126,235,71,-8.665795064302175],[126,235,72,-8.707113350098783],[126,235,73,-8.75059492523713],[126,235,74,-8.770427633503324],[126,235,75,-8.854565113399797],[126,235,76,-8.90873900439935],[126,235,77,-8.887592018369652],[126,235,78,-8.83535719392262],[126,235,79,-8.783337419331867],[126,236,64,-8.732237364371345],[126,236,65,-8.758253830047169],[126,236,66,-8.755890487546852],[126,236,67,-8.735473942878595],[126,236,68,-8.72354529343866],[126,236,69,-8.716425542739193],[126,236,70,-8.720604008287747],[126,236,71,-8.735014320304808],[126,236,72,-8.774594822864739],[126,236,73,-8.820164903920853],[126,236,74,-8.842210724871025],[126,236,75,-8.91733655258819],[126,236,76,-8.960809592149056],[126,236,77,-8.944873685534299],[126,236,78,-8.893170619970704],[126,236,79,-8.841020984325194],[126,237,64,-8.788345796550567],[126,237,65,-8.810207492814488],[126,237,66,-8.798323940497212],[126,237,67,-8.775484077051361],[126,237,68,-8.760661992641094],[126,237,69,-8.757589211129046],[126,237,70,-8.758253978730329],[126,237,71,-8.772690707141667],[126,237,72,-8.812261170985314],[126,237,73,-8.858795737281833],[126,237,74,-8.893664983197349],[126,237,75,-8.989419904949795],[126,237,76,-9.03317361788382],[126,237,77,-8.994918610576514],[126,237,78,-8.943261738914769],[126,237,79,-8.890961188141933],[126,238,64,-8.836445966622483],[126,238,65,-8.857563171491527],[126,238,66,-8.845465785096092],[126,238,67,-8.823157541984067],[126,238,68,-8.81053895412917],[126,238,69,-8.807142478234987],[126,238,70,-8.807150135262262],[126,238,71,-8.823068198626586],[126,238,72,-8.862420832777717],[126,238,73,-8.911523960955218],[126,238,74,-8.932277936962322],[126,238,75,-9.000838151527145],[126,238,76,-9.043251581785404],[126,238,77,-9.041258818419191],[126,238,78,-8.990262522853667],[126,238,79,-8.93725864637538],[126,239,64,-8.890542086291298],[126,239,65,-8.90979247660169],[126,239,66,-8.902105308758008],[126,239,67,-8.878414751053095],[126,239,68,-8.864483469258682],[126,239,69,-8.862160786477975],[126,239,70,-8.861481534058733],[126,239,71,-8.876432046084206],[126,239,72,-8.915898702131413],[126,239,73,-8.963245859353844],[126,239,74,-8.984391464320199],[126,239,75,-9.04382019562903],[126,239,76,-9.084336849345599],[126,239,77,-9.088597387904683],[126,239,78,-9.0360077201246],[126,239,79,-8.983122021878454],[126,240,64,-8.938435888464342],[126,240,65,-8.958612169876153],[126,240,66,-8.949335580061655],[126,240,67,-8.927909616491805],[126,240,68,-8.913149014410822],[126,240,69,-8.90955114293422],[126,240,70,-8.911708958963949],[126,240,71,-8.926888458291204],[126,240,72,-8.967944845900734],[126,240,73,-9.014493423622586],[126,240,74,-9.036719500059188],[126,240,75,-9.098699576953742],[126,240,76,-9.130526523243066],[126,240,77,-9.135157166063895],[126,240,78,-9.085640087538609],[126,240,79,-9.031223409166174],[126,241,64,-8.975571416954107],[126,241,65,-9.00389972225283],[126,241,66,-9.000522955253142],[126,241,67,-8.98326370201797],[126,241,68,-8.972110337070623],[126,241,69,-8.965770557824204],[126,241,70,-8.969394199290653],[126,241,71,-8.98756041638368],[126,241,72,-9.028318312854653],[126,241,73,-9.0750609466191],[126,241,74,-9.09624173207453],[126,241,75,-9.092237328440572],[126,241,76,-9.066329138942244],[126,241,77,-9.02636074869684],[126,241,78,-9.003192316174841],[126,241,79,-8.977732077630282],[126,242,64,-9.02863858496203],[126,242,65,-9.053955702844316],[126,242,66,-9.05148559125577],[126,242,67,-9.036294673388692],[126,242,68,-9.023494728632867],[126,242,69,-9.018632088594291],[126,242,70,-9.022209164443412],[126,242,71,-9.038894979592731],[126,242,72,-9.078688573792942],[126,242,73,-9.126583626786221],[126,242,74,-9.149081955307878],[126,242,75,-9.14481620065759],[126,242,76,-9.119603968947064],[126,242,77,-9.079836594081131],[126,242,78,-9.04428775118455],[126,242,79,-9.018412333815878],[126,243,64,-9.076266209456895],[126,243,65,-9.100802597296532],[126,243,66,-9.101634346735771],[126,243,67,-9.0851854287878],[126,243,68,-9.072795259103122],[126,243,69,-9.065272083757632],[126,243,70,-9.071162397990422],[126,243,71,-9.087883509061642],[126,243,72,-9.127090206632678],[126,243,73,-9.173349564509673],[126,243,74,-9.195740471084548],[126,243,75,-9.193931580643653],[126,243,76,-9.170010778855524],[126,243,77,-9.127313583791812],[126,243,78,-9.082776194765225],[126,243,79,-9.043779010764045],[126,244,64,-9.114266847695031],[126,244,65,-9.131033646999828],[126,244,66,-9.122981479533246],[126,244,67,-9.099097345360404],[126,244,68,-9.078219084626035],[126,244,69,-9.063481523149145],[126,244,70,-9.065873774662233],[126,244,71,-9.076488599062506],[126,244,72,-9.114403126250366],[126,244,73,-9.159868609324182],[126,244,74,-9.182231926232005],[126,244,75,-9.179223848942208],[126,244,76,-9.156445731984661],[126,244,77,-9.111991121408831],[126,244,78,-9.075910654660179],[126,244,79,-9.050197617041992],[126,245,64,-9.163619306080001],[126,245,65,-9.181741723694882],[126,245,66,-9.169929949095037],[126,245,67,-9.147576358284242],[126,245,68,-9.127588888736208],[126,245,69,-9.115066727747013],[126,245,70,-9.112873580499944],[126,245,71,-9.123683299303282],[126,245,72,-9.16370521508003],[126,245,73,-9.20876056256313],[126,245,74,-9.232402973294054],[126,245,75,-9.230777530915965],[126,245,76,-9.204331011622115],[126,245,77,-9.157357381177208],[126,245,78,-9.117581193919328],[126,245,79,-9.096459510651304],[126,246,64,-9.211513754449145],[126,246,65,-9.227614617498762],[126,246,66,-9.216753336904185],[126,246,67,-9.19686236201494],[126,246,68,-9.175274741111828],[126,246,69,-9.16463134717554],[126,246,70,-9.158990724116784],[126,246,71,-9.170094118351297],[126,246,72,-9.209383090737775],[126,246,73,-9.258138561121614],[126,246,74,-9.280026919441635],[126,246,75,-9.278135792828527],[126,246,76,-9.253539733298194],[126,246,77,-9.205420578147416],[126,246,78,-9.150916866321653],[126,246,79,-9.137466834045977],[126,247,64,-9.265709143019201],[126,247,65,-9.279667158949497],[126,247,66,-9.270511932786786],[126,247,67,-9.2489546434238],[126,247,68,-9.228223090042993],[126,247,69,-9.218561880535809],[126,247,70,-9.210008881035652],[126,247,71,-9.219745799918776],[126,247,72,-9.256567747666876],[126,247,73,-9.306797066438907],[126,247,74,-9.32630597155735],[126,247,75,-9.322822984793255],[126,247,76,-9.297101501602684],[126,247,77,-9.252060746874792],[126,247,78,-9.196358784722724],[126,247,79,-9.178398601759318],[126,248,64,-9.309323940372243],[126,248,65,-9.323585789048565],[126,248,66,-9.31343819316469],[126,248,67,-9.29426764709128],[126,248,68,-9.27558935851574],[126,248,69,-9.26427313015163],[126,248,70,-9.255994532548982],[126,248,71,-9.268009360765856],[126,248,72,-9.304117122711304],[126,248,73,-9.351470393073406],[126,248,74,-9.374973589050441],[126,248,75,-9.369960606303046],[126,248,76,-9.344350819286175],[126,248,77,-9.300361945493977],[126,248,78,-9.243817544093654],[126,248,79,-9.218950321262055],[126,249,64,-9.364686203525583],[126,249,65,-9.37849614586758],[126,249,66,-9.365078878762082],[126,249,67,-9.34609919781157],[126,249,68,-9.328211461789435],[126,249,69,-9.316681065067947],[126,249,70,-9.309337162796751],[126,249,71,-9.314676255648312],[126,249,72,-9.34644405563165],[126,249,73,-9.390109073557335],[126,249,74,-9.411870882389508],[126,249,75,-9.407587431678433],[126,249,76,-9.382643207357784],[126,249,77,-9.342271955517045],[126,249,78,-9.287425298100478],[126,249,79,-9.315655435577934],[126,250,64,-9.429813315571549],[126,250,65,-9.433312359148255],[126,250,66,-9.459035129907452],[126,250,67,-9.470428042468395],[126,250,68,-9.453825692767149],[126,250,69,-9.448081999518948],[126,250,70,-9.41641077445692],[126,250,71,-9.390143534561624],[126,250,72,-9.416328834929077],[126,250,73,-9.495395173971716],[126,250,74,-9.567015628857327],[126,250,75,-9.587533536863068],[126,250,76,-9.541630148136152],[126,250,77,-9.450867983308555],[126,250,78,-9.367102308646155],[126,250,79,-9.318600769222355],[126,251,64,-9.489022828546553],[126,251,65,-9.495475703336933],[126,251,66,-9.517940544317664],[126,251,67,-9.536028785649854],[126,251,68,-9.528534303179118],[126,251,69,-9.517487775504646],[126,251,70,-9.494369717950361],[126,251,71,-9.45990713475315],[126,251,72,-9.475747574285954],[126,251,73,-9.548761682259093],[126,251,74,-9.605590444080631],[126,251,75,-9.615648048564015],[126,251,76,-9.578101650977526],[126,251,77,-9.488266003175926],[126,251,78,-9.403645434768114],[126,251,79,-9.366117247173838],[126,252,64,-9.540404409606209],[126,252,65,-9.54810120503263],[126,252,66,-9.567169441502019],[126,252,67,-9.591484485225543],[126,252,68,-9.588676245841716],[126,252,69,-9.567078701542405],[126,252,70,-9.554831386422846],[126,252,71,-9.521898788969226],[126,252,72,-9.54341308126978],[126,252,73,-9.616738986128302],[126,252,74,-9.658130281953596],[126,252,75,-9.660302369064416],[126,252,76,-9.628284453536859],[126,252,77,-9.550710657197168],[126,252,78,-9.467633182970838],[126,252,79,-9.419143106710816],[126,253,64,-9.604581920448835],[126,253,65,-9.612330347406564],[126,253,66,-9.610155980699814],[126,253,67,-9.606128852079706],[126,253,68,-9.596539559480444],[126,253,69,-9.574126621322227],[126,253,70,-9.610114674753952],[126,253,71,-9.615571549455623],[126,253,72,-9.653354472462478],[126,253,73,-9.706399291810902],[126,253,74,-9.708349772436252],[126,253,75,-9.670083406729757],[126,253,76,-9.64028964373386],[126,253,77,-9.587039004811679],[126,253,78,-9.564643191412628],[126,253,79,-9.513446758502786],[126,254,64,-9.589363722029317],[126,254,65,-9.610126468469133],[126,254,66,-9.608742055674417],[126,254,67,-9.620188445159858],[126,254,68,-9.608547936190527],[126,254,69,-9.582509279109493],[126,254,70,-9.649593591800476],[126,254,71,-9.66078525891481],[126,254,72,-9.713133386496523],[126,254,73,-9.765723622279845],[126,254,74,-9.762258076630069],[126,254,75,-9.72150938372348],[126,254,76,-9.692268529253052],[126,254,77,-9.651359858440863],[126,254,78,-9.638231405304035],[126,254,79,-9.58696155762243],[126,255,64,-9.625126439250034],[126,255,65,-9.660910847333286],[126,255,66,-9.648858804425904],[126,255,67,-9.656336631723537],[126,255,68,-9.629419667568563],[126,255,69,-9.61588564139129],[126,255,70,-9.693125690960423],[126,255,71,-9.715674643048816],[126,255,72,-9.766281030150694],[126,255,73,-9.822277135666358],[126,255,74,-9.809991363576776],[126,255,75,-9.771660754830192],[126,255,76,-9.739113928902071],[126,255,77,-9.697939300780778],[126,255,78,-9.68394840482885],[126,255,79,-9.640882304945146],[126,256,64,-9.67339802777484],[126,256,65,-9.698851643547059],[126,256,66,-9.692173633909634],[126,256,67,-9.705081947813841],[126,256,68,-9.662897274310826],[126,256,69,-9.657858413781021],[126,256,70,-9.735027045579942],[126,256,71,-9.776983998401304],[126,256,72,-9.822506059959924],[126,256,73,-9.885926307025487],[126,256,74,-9.860325035848312],[126,256,75,-9.822771534788838],[126,256,76,-9.788635972637648],[126,256,77,-9.746546115330622],[126,256,78,-9.73228515333115],[126,256,79,-9.712049918891944],[126,257,64,-9.727677860312923],[126,257,65,-9.737696027649367],[126,257,66,-9.727196433847775],[126,257,67,-9.75287677940116],[126,257,68,-9.711112744218456],[126,257,69,-9.714183556017822],[126,257,70,-9.80088303426985],[126,257,71,-9.849748411385029],[126,257,72,-9.896126535983768],[126,257,73,-9.968912115443532],[126,257,74,-9.937885363851997],[126,257,75,-9.895435346809952],[126,257,76,-9.870027965257613],[126,257,77,-9.830873546672313],[126,257,78,-9.824871537515643],[126,257,79,-9.814979749258546],[126,258,64,-9.7378038147959],[126,258,65,-9.747807284790671],[126,258,66,-9.72542998629904],[126,258,67,-9.736229281771589],[126,258,68,-9.716023704843046],[126,258,69,-9.732065081775177],[126,258,70,-9.811637224570287],[126,258,71,-9.872695197255222],[126,258,72,-9.925987486408392],[126,258,73,-9.986773899931205],[126,258,74,-9.976053719859925],[126,258,75,-9.936953798752707],[126,258,76,-9.920488840893203],[126,258,77,-9.88054008560236],[126,258,78,-9.880367586146741],[126,258,79,-9.876615769028023],[126,259,64,-9.806868595027272],[126,259,65,-9.826041476927122],[126,259,66,-9.80370717784505],[126,259,67,-9.816096401209027],[126,259,68,-9.797026786296716],[126,259,69,-9.835170070143112],[126,259,70,-9.901194936831706],[126,259,71,-9.959051643544333],[126,259,72,-10.004209027946624],[126,259,73,-10.036836870464896],[126,259,74,-10.023733682782153],[126,259,75,-9.978034951326286],[126,259,76,-9.958351373757736],[126,259,77,-9.919528619248647],[126,259,78,-9.929258429995524],[126,259,79,-9.931115328662397],[126,260,64,-9.962183410475557],[126,260,65,-9.979414397103062],[126,260,66,-9.971503954550618],[126,260,67,-9.979844100453619],[126,260,68,-9.959609331587304],[126,260,69,-9.982576514962455],[126,260,70,-10.01505430812089],[126,260,71,-10.044469669854253],[126,260,72,-10.082770771499266],[126,260,73,-10.123379607469605],[126,260,74,-10.142778413870019],[126,260,75,-10.138839601106447],[126,260,76,-10.121787227985077],[126,260,77,-10.086569811874552],[126,260,78,-10.050600959537451],[126,260,79,-10.008517245571896],[126,261,64,-9.991336608680042],[126,261,65,-10.019074321641687],[126,261,66,-10.03138910570674],[126,261,67,-10.056441588053612],[126,261,68,-10.0360191430967],[126,261,69,-10.053452425735086],[126,261,70,-10.07913235605093],[126,261,71,-10.103654615295946],[126,261,72,-10.13685927432619],[126,261,73,-10.175296288002874],[126,261,74,-10.196405065670866],[126,261,75,-10.195810272154247],[126,261,76,-10.178208613084355],[126,261,77,-10.14031635952124],[126,261,78,-10.099992977950585],[126,261,79,-10.056267529768224],[126,262,64,-10.042985471663112],[126,262,65,-10.081033522214982],[126,262,66,-10.098497669809758],[126,262,67,-10.132451704698846],[126,262,68,-10.109629036651885],[126,262,69,-10.146882607087496],[126,262,70,-10.179564347203513],[126,262,71,-10.204545918417502],[126,262,72,-10.235692680931743],[126,262,73,-10.261391892258022],[126,262,74,-10.28233400421896],[126,262,75,-10.27723021254435],[126,262,76,-10.25134179111415],[126,262,77,-10.211028210654323],[126,262,78,-10.17610306646572],[126,262,79,-10.127721491857477],[126,263,64,-10.084302263448533],[126,263,65,-10.122745042019682],[126,263,66,-10.149447754881125],[126,263,67,-10.181749930134915],[126,263,68,-10.161271957254641],[126,263,69,-10.200681453198012],[126,263,70,-10.231871994010893],[126,263,71,-10.253656158992987],[126,263,72,-10.28020777481607],[126,263,73,-10.305939717371588],[126,263,74,-10.331686293863815],[126,263,75,-10.325609819389824],[126,263,76,-10.299028586733534],[126,263,77,-10.26331963522878],[126,263,78,-10.226813690204555],[126,263,79,-10.17527952384541],[126,264,64,-10.128861119571566],[126,264,65,-10.167222199927382],[126,264,66,-10.203498086929352],[126,264,67,-10.225850508964728],[126,264,68,-10.213607764809547],[126,264,69,-10.250887947621571],[126,264,70,-10.288419961269962],[126,264,71,-10.300097521850997],[126,264,72,-10.329693292024011],[126,264,73,-10.353015312839617],[126,264,74,-10.380933329917696],[126,264,75,-10.37679966060933],[126,264,76,-10.35146760458455],[126,264,77,-10.314117749158807],[126,264,78,-10.277968294620349],[126,264,79,-10.227521495336594],[126,265,64,-10.17463143156211],[126,265,65,-10.200135113272898],[126,265,66,-10.200154467878042],[126,265,67,-10.195116765134978],[126,265,68,-10.190236844802014],[126,265,69,-10.234396934388949],[126,265,70,-10.28942089803781],[126,265,71,-10.329209542246549],[126,265,72,-10.37567435253328],[126,265,73,-10.418869893684167],[126,265,74,-10.450187012830266],[126,265,75,-10.4487507891739],[126,265,76,-10.430385673620371],[126,265,77,-10.39284125291876],[126,265,78,-10.343831300224121],[126,265,79,-10.28878407023136],[126,266,64,-10.227342584775645],[126,266,65,-10.252990134654848],[126,266,66,-10.257243569914479],[126,266,67,-10.243568920147824],[126,266,68,-10.229615148481656],[126,266,69,-10.246712169181526],[126,266,70,-10.296479347171964],[126,266,71,-10.350941987422672],[126,266,72,-10.405007582802419],[126,266,73,-10.45120325289162],[126,266,74,-10.495025940166833],[126,266,75,-10.493016428592616],[126,266,76,-10.471701940498383],[126,266,77,-10.43540616139172],[126,266,78,-10.386042895502667],[126,266,79,-10.3293107580615],[126,267,64,-10.274313045387936],[126,267,65,-10.302505567454284],[126,267,66,-10.305127242068124],[126,267,67,-10.291729307353487],[126,267,68,-10.276153568388281],[126,267,69,-10.28998256552492],[126,267,70,-10.334107369501723],[126,267,71,-10.39927643380969],[126,267,72,-10.456678343484832],[126,267,73,-10.507000403492555],[126,267,74,-10.55057123822542],[126,267,75,-10.547978987826426],[126,267,76,-10.527241470837998],[126,267,77,-10.4905535206467],[126,267,78,-10.440358931604948],[126,267,79,-10.382444973291674],[126,268,64,-10.322087164882275],[126,268,65,-10.350942257798373],[126,268,66,-10.355036340284494],[126,268,67,-10.343392602850269],[126,268,68,-10.330187255231397],[126,268,69,-10.330876175925594],[126,268,70,-10.342820733841423],[126,268,71,-10.414018946150756],[126,268,72,-10.477090798031139],[126,268,73,-10.53579650156983],[126,268,74,-10.57870477996735],[126,268,75,-10.588638290211497],[126,268,76,-10.565945215355713],[126,268,77,-10.525015548201003],[126,268,78,-10.482748597170847],[126,268,79,-10.423415223588542],[126,269,64,-10.366864499501082],[126,269,65,-10.396686570447411],[126,269,66,-10.4014710569477],[126,269,67,-10.389047106159493],[126,269,68,-10.37755156807889],[126,269,69,-10.380549011094601],[126,269,70,-10.392575926992441],[126,269,71,-10.459390185172522],[126,269,72,-10.527197360156576],[126,269,73,-10.583507625986607],[126,269,74,-10.624301657673547],[126,269,75,-10.639010711851125],[126,269,76,-10.612293517096473],[126,269,77,-10.572889464340287],[126,269,78,-10.531113645394457],[126,269,79,-10.472869569997032],[126,270,64,-10.42280776193533],[126,270,65,-10.446980840617119],[126,270,66,-10.450771542367145],[126,270,67,-10.438589956801358],[126,270,68,-10.4293560448166],[126,270,69,-10.431479515950091],[126,270,70,-10.446232675778942],[126,270,71,-10.507343231671557],[126,270,72,-10.571570339887733],[126,270,73,-10.627138162496138],[126,270,74,-10.666789127271985],[126,270,75,-10.685502604590612],[126,270,76,-10.660850120939209],[126,270,77,-10.622310031645315],[126,270,78,-10.58053584782447],[126,270,79,-10.524595139703912],[126,271,64,-10.468512836560159],[126,271,65,-10.493031527434153],[126,271,66,-10.492851911626154],[126,271,67,-10.481746494765586],[126,271,68,-10.474915838085526],[126,271,69,-10.478814125175838],[126,271,70,-10.494588081728601],[126,271,71,-10.555665039774778],[126,271,72,-10.61865315446841],[126,271,73,-10.672399784835974],[126,271,74,-10.712199118974976],[126,271,75,-10.732714699887131],[126,271,76,-10.70671843278618],[126,271,77,-10.670423346503199],[126,271,78,-10.627545312948543],[126,271,79,-10.57185201487589],[126,272,64,-10.515151170886867],[126,272,65,-10.537642528092231],[126,272,66,-10.536830998935118],[126,272,67,-10.52857341422109],[126,272,68,-10.520930513392603],[126,272,69,-10.526720551676966],[126,272,70,-10.544023309448825],[126,272,71,-10.603174893997508],[126,272,72,-10.665737470442352],[126,272,73,-10.723296770807469],[126,272,74,-10.762036505485723],[126,272,75,-10.783089870401538],[126,272,76,-10.754269082610653],[126,272,77,-10.721949250966183],[126,272,78,-10.68022863105299],[126,272,79,-10.622230451692474],[126,273,64,-10.566295865700999],[126,273,65,-10.583502209311012],[126,273,66,-10.579463053290995],[126,273,67,-10.568589630669104],[126,273,68,-10.5597001615986],[126,273,69,-10.567557933188946],[126,273,70,-10.585901281471882],[126,273,71,-10.618770941595537],[126,273,72,-10.667841300647996],[126,273,73,-10.721203186198839],[126,273,74,-10.747776386618064],[126,273,75,-10.746568847081653],[126,273,76,-10.736715703895246],[126,273,77,-10.702308438190803],[126,273,78,-10.646982648689812],[126,273,79,-10.594446436336934],[126,274,64,-10.616877548261536],[126,274,65,-10.634640335385585],[126,274,66,-10.628551748629125],[126,274,67,-10.618636764185348],[126,274,68,-10.611867424249056],[126,274,69,-10.620540942410162],[126,274,70,-10.639973998380828],[126,274,71,-10.670181245298824],[126,274,72,-10.721717554655786],[126,274,73,-10.775299392197628],[126,274,74,-10.803075600504663],[126,274,75,-10.80033000604036],[126,274,76,-10.789088974261427],[126,274,77,-10.752117478671247],[126,274,78,-10.698232315460253],[126,274,79,-10.642916023187675],[126,275,64,-10.66089874106223],[126,275,65,-10.681034336998458],[126,275,66,-10.676027785003463],[126,275,67,-10.666935053582014],[126,275,68,-10.660333648856762],[126,275,69,-10.670174798843723],[126,275,70,-10.69090849426652],[126,275,71,-10.720718180400002],[126,275,72,-10.774010918623649],[126,275,73,-10.829197167536652],[126,275,74,-10.857459249568132],[126,275,75,-10.85820722393641],[126,275,76,-10.840664674573567],[126,275,77,-10.804217447110815],[126,275,78,-10.753123356818355],[126,275,79,-10.69643825403111],[126,276,64,-10.702645346147893],[126,276,65,-10.723859433232576],[126,276,66,-10.720926286987565],[126,276,67,-10.716026226442771],[126,276,68,-10.714433322486217],[126,276,69,-10.724277969137214],[126,276,70,-10.747331257859138],[126,276,71,-10.777693027733294],[126,276,72,-10.83336441826256],[126,276,73,-10.88844119245176],[126,276,74,-10.914157676810865],[126,276,75,-10.915845345780694],[126,276,76,-10.893153970090344],[126,276,77,-10.85151306205126],[126,276,78,-10.800177328128688],[126,276,79,-10.748941850827439],[126,277,64,-10.740982315856554],[126,277,65,-10.767959569509296],[126,277,66,-10.772512479671292],[126,277,67,-10.77242015409632],[126,277,68,-10.770411034380551],[126,277,69,-10.781563871855733],[126,277,70,-10.805216790827851],[126,277,71,-10.83877067341664],[126,277,72,-10.892411059381729],[126,277,73,-10.946299029722912],[126,277,74,-10.971542791513412],[126,277,75,-10.971669487351924],[126,277,76,-10.946493349232751],[126,277,77,-10.89604872552063],[126,277,78,-10.849874810257019],[126,277,79,-10.798597956128367],[126,278,64,-10.793451103885008],[126,278,65,-10.817617623044757],[126,278,66,-10.824372765981858],[126,278,67,-10.823262558703595],[126,278,68,-10.822419851966185],[126,278,69,-10.831251570345895],[126,278,70,-10.854611040110896],[126,278,71,-10.887222667794047],[126,278,72,-10.941628987223561],[126,278,73,-10.996197813717314],[126,278,74,-11.024544624890948],[126,278,75,-11.023687627749162],[126,278,76,-10.997774117642203],[126,278,77,-10.946513368483416],[126,278,78,-10.901819986789642],[126,278,79,-10.848248871620877],[126,279,64,-10.838956505002415],[126,279,65,-10.864509383657701],[126,279,66,-10.872576030690043],[126,279,67,-10.869895619836116],[126,279,68,-10.869937914890334],[126,279,69,-10.879097590603386],[126,279,70,-10.901618583661758],[126,279,71,-10.935914353566558],[126,279,72,-10.990974590138507],[126,279,73,-11.045118522248798],[126,279,74,-11.073017940097257],[126,279,75,-11.07366551969795],[126,279,76,-11.048318506611354],[126,279,77,-10.995851410660029],[126,279,78,-10.94969373368668],[126,279,79,-10.89614077045556],[126,280,64,-10.884596408609069],[126,280,65,-10.91130575362552],[126,280,66,-10.919429057387665],[126,280,67,-10.914661307702673],[126,280,68,-10.916694729825155],[126,280,69,-10.926614588874282],[126,280,70,-10.947182238725869],[126,280,71,-10.98089577519655],[126,280,72,-11.039321098810642],[126,280,73,-11.09388430623977],[126,280,74,-11.121312300770324],[126,280,75,-11.12243071815128],[126,280,76,-11.098965130556165],[126,280,77,-11.0462231267237],[126,280,78,-10.995794813904423],[126,280,79,-10.945145109412858],[126,281,64,-10.928885516645567],[126,281,65,-10.9584386652161],[126,281,66,-10.964365965734856],[126,281,67,-10.961824959609418],[126,281,68,-10.963008311622348],[126,281,69,-10.972325869953316],[126,281,70,-10.993275570587663],[126,281,71,-11.026878133569491],[126,281,72,-11.088469868062683],[126,281,73,-11.145418535691325],[126,281,74,-11.174137812333628],[126,281,75,-11.176906584948881],[126,281,76,-11.152559416717455],[126,281,77,-11.103880284735567],[126,281,78,-11.05341386292244],[126,281,79,-10.999068311087859],[126,282,64,-10.980219854199909],[126,282,65,-11.006326755290074],[126,282,66,-11.014964256298581],[126,282,67,-11.0147016026156],[126,282,68,-11.01237595047568],[126,282,69,-11.020705126854487],[126,282,70,-11.040979539351781],[126,282,71,-11.074492170338198],[126,282,72,-11.134340745087798],[126,282,73,-11.191975324659934],[126,282,74,-11.219054757011499],[126,282,75,-11.221088586835496],[126,282,76,-11.197951620714756],[126,282,77,-11.15086923716217],[126,282,78,-11.09491814508366],[126,282,79,-11.041002898273065],[126,283,64,-11.027163694436405],[126,283,65,-11.054527080260208],[126,283,66,-11.060061777707388],[126,283,67,-11.0590887754918],[126,283,68,-11.057333113876824],[126,283,69,-11.064995110921828],[126,283,70,-11.08409699254984],[126,283,71,-11.12175475821678],[126,283,72,-11.180336473857459],[126,283,73,-11.236638199224391],[126,283,74,-11.263896809490783],[126,283,75,-11.26601884560821],[126,283,76,-11.242626995795575],[126,283,77,-11.203366203766304],[126,283,78,-11.153205501838123],[126,283,79,-11.103601121489612],[126,284,64,-11.090344315465796],[126,284,65,-11.114403704223406],[126,284,66,-11.115994884436352],[126,284,67,-11.107963399242037],[126,284,68,-11.102625530641168],[126,284,69,-11.106354135810278],[126,284,70,-11.123169006398856],[126,284,71,-11.161471683553918],[126,284,72,-11.227461259313728],[126,284,73,-11.28553083863002],[126,284,74,-11.315313036470059],[126,284,75,-11.31927680611073],[126,284,76,-11.299367406952115],[126,284,77,-11.25862132685505],[126,284,78,-11.209114338720225],[126,284,79,-11.155706812825654],[126,285,64,-11.130525790004004],[126,285,65,-11.150565021866532],[126,285,66,-11.153500092769077],[126,285,67,-11.142726414750195],[126,285,68,-11.137176650995876],[126,285,69,-11.143622783711633],[126,285,70,-11.16107855516675],[126,285,71,-11.205967450854637],[126,285,72,-11.274401905799058],[126,285,73,-11.33634725252321],[126,285,74,-11.36618889979255],[126,285,75,-11.368982740780831],[126,285,76,-11.346790752512124],[126,285,77,-11.305873956937377],[126,285,78,-11.25566388893377],[126,285,79,-11.202224585727631],[126,286,64,-11.1786284018598],[126,286,65,-11.200352611886832],[126,286,66,-11.201218889485508],[126,286,67,-11.191332736384588],[126,286,68,-11.18610661413948],[126,286,69,-11.192224939844621],[126,286,70,-11.20864751458901],[126,286,71,-11.253793869412082],[126,286,72,-11.323011823822009],[126,286,73,-11.385464446208019],[126,286,74,-11.417616933136168],[126,286,75,-11.416718534142166],[126,286,76,-11.39670997550652],[126,286,77,-11.35516718345894],[126,286,78,-11.303996437131486],[126,286,79,-11.24942623150598],[126,287,64,-11.225075581000322],[126,287,65,-11.248065707133142],[126,287,66,-11.248545853927837],[126,287,67,-11.235644568813647],[126,287,68,-11.231782318803184],[126,287,69,-11.23916597386693],[126,287,70,-11.25615653258637],[126,287,71,-11.298234114329976],[126,287,72,-11.37053657883702],[126,287,73,-11.435870938985731],[126,287,74,-11.464133676249293],[126,287,75,-11.46329642071608],[126,287,76,-11.44197683042836],[126,287,77,-11.401740494963528],[126,287,78,-11.3511468163735],[126,287,79,-11.294956733273617],[126,288,64,-11.27354528484986],[126,288,65,-11.29534400513116],[126,288,66,-11.293067230926946],[126,288,67,-11.283975970640078],[126,288,68,-11.279480984037205],[126,288,69,-11.283601380343473],[126,288,70,-11.303692704315573],[126,288,71,-11.34469250042315],[126,288,72,-11.420599569039533],[126,288,73,-11.484480486007353],[126,288,74,-11.510439628642526],[126,288,75,-11.51139272538053],[126,288,76,-11.489882628041924],[126,288,77,-11.450377467240163],[126,288,78,-11.398402654904332],[126,288,79,-11.340826016877843],[126,289,64,-11.331748987367506],[126,289,65,-11.3530316001374],[126,289,66,-11.349206777069087],[126,289,67,-11.34150383301293],[126,289,68,-11.335701348674204],[126,289,69,-11.33971845798366],[126,289,70,-11.356836993747214],[126,289,71,-11.385700091172477],[126,289,72,-11.463732955227368],[126,289,73,-11.531340687056813],[126,289,74,-11.560727977217812],[126,289,75,-11.563829396057104],[126,289,76,-11.544162255475694],[126,289,77,-11.506575208795857],[126,289,78,-11.45257361716],[126,289,79,-11.394446607461884],[126,290,64,-11.384875170347401],[126,290,65,-11.405389821969877],[126,290,66,-11.402656742076756],[126,290,67,-11.392342740095545],[126,290,68,-11.386801890201028],[126,290,69,-11.390268518042921],[126,290,70,-11.406040796934604],[126,290,71,-11.430650707743002],[126,290,72,-11.501377890646697],[126,290,73,-11.571376468130975],[126,290,74,-11.60357857205615],[126,290,75,-11.613549971002634],[126,290,76,-11.594985060030172],[126,290,77,-11.55829896135031],[126,290,78,-11.50370403750778],[126,290,79,-11.445072865403041],[126,291,64,-11.43440831662135],[126,291,65,-11.454836109451938],[126,291,66,-11.45314807239207],[126,291,67,-11.4418089756814],[126,291,68,-11.435036042954478],[126,291,69,-11.436533379040759],[126,291,70,-11.451177901582154],[126,291,71,-11.477317404788726],[126,291,72,-11.54106571235409],[126,291,73,-11.617372176417492],[126,291,74,-11.653971622482521],[126,291,75,-11.666723381810646],[126,291,76,-11.64767067241739],[126,291,77,-11.60676599016075],[126,291,78,-11.5515721983963],[126,291,79,-11.493481367463826],[126,292,64,-11.445995145966082],[126,292,65,-11.46293513082647],[126,292,66,-11.459288427993108],[126,292,67,-11.445021615849026],[126,292,68,-11.434537203798406],[126,292,69,-11.434160265800477],[126,292,70,-11.446916656109947],[126,292,71,-11.4738121565081],[126,292,72,-11.542265114034624],[126,292,73,-11.625643015845267],[126,292,74,-11.67078240306312],[126,292,75,-11.692410713549753],[126,292,76,-11.672233069031524],[126,292,77,-11.62604783126943],[126,292,78,-11.563077444022218],[126,292,79,-11.50335959198964],[126,293,64,-11.49767572486432],[126,293,65,-11.513352765189039],[126,293,66,-11.510024478332328],[126,293,67,-11.493783011863526],[126,293,68,-11.48122863638475],[126,293,69,-11.481082647934592],[126,293,70,-11.493313190549872],[126,293,71,-11.520609281096668],[126,293,72,-11.588205559907882],[126,293,73,-11.673556349996952],[126,293,74,-11.716503345129787],[126,293,75,-11.734115755038786],[126,293,76,-11.716663478987128],[126,293,77,-11.668782337282689],[126,293,78,-11.606605327631176],[126,293,79,-11.546559099649029],[126,294,64,-11.549185991775692],[126,294,65,-11.56666988784038],[126,294,66,-11.559566218410946],[126,294,67,-11.541226866367307],[126,294,68,-11.527491337271675],[126,294,69,-11.523685994375638],[126,294,70,-11.53860899361919],[126,294,71,-11.565054306777428],[126,294,72,-11.632878053672279],[126,294,73,-11.72151312592198],[126,294,74,-11.7615263541895],[126,294,75,-11.776671749101382],[126,294,76,-11.757887806929302],[126,294,77,-11.707040483343398],[126,294,78,-11.64720197255892],[126,294,79,-11.588014982042385],[126,295,64,-11.598048173399965],[126,295,65,-11.616202284996154],[126,295,66,-11.609805673258164],[126,295,67,-11.58935795309231],[126,295,68,-11.57435604972892],[126,295,69,-11.569940117118472],[126,295,70,-11.584846396653747],[126,295,71,-11.610332027193241],[126,295,72,-11.68735899503352],[126,295,73,-11.775233779050518],[126,295,74,-11.814645705069497],[126,295,75,-11.821307257010575],[126,295,76,-11.79709288410974],[126,295,77,-11.75328248743114],[126,295,78,-11.6942392611509],[126,295,79,-11.636899912694991],[126,296,64,-11.64635837099146],[126,296,65,-11.665403167989382],[126,296,66,-11.659701529408368],[126,296,67,-11.636087053999772],[126,296,68,-11.6217207424703],[126,296,69,-11.618544159484403],[126,296,70,-11.629721061339366],[126,296,71,-11.654874462133755],[126,296,72,-11.736898185961861],[126,296,73,-11.82009650378761],[126,296,74,-11.86147099743381],[126,296,75,-11.866116838425752],[126,296,76,-11.840377165934427],[126,296,77,-11.796604209360854],[126,296,78,-11.736548800821891],[126,296,79,-11.68203616964652],[126,297,64,-11.694008196722201],[126,297,65,-11.715171709853108],[126,297,66,-11.706547143059245],[126,297,67,-11.685002577274306],[126,297,68,-11.667653938296553],[126,297,69,-11.663756572375892],[126,297,70,-11.67212730727966],[126,297,71,-11.70163559191926],[126,297,72,-11.778198065739822],[126,297,73,-11.863274610255823],[126,297,74,-11.909588391537639],[126,297,75,-11.91510553321744],[126,297,76,-11.890240097382911],[126,297,77,-11.844475056094431],[126,297,78,-11.787971480517344],[126,297,79,-11.733594474090264],[126,298,64,-11.748452374534978],[126,298,65,-11.765782253387357],[126,298,66,-11.75767326540594],[126,298,67,-11.736206279792322],[126,298,68,-11.718781655065614],[126,298,69,-11.715623364618542],[126,298,70,-11.720933744887388],[126,298,71,-11.751738346770718],[126,298,72,-11.811070512722784],[126,298,73,-11.891162233908108],[126,298,74,-11.936859407527503],[126,298,75,-11.940930496014078],[126,298,76,-11.921801037335886],[126,298,77,-11.883275140392758],[126,298,78,-11.834715769951602],[126,298,79,-11.779952666397334],[126,299,64,-11.796705744414387],[126,299,65,-11.812581049448934],[126,299,66,-11.803254957214165],[126,299,67,-11.780806238837018],[126,299,68,-11.765247991377347],[126,299,69,-11.761244574528522],[126,299,70,-11.769803431049231],[126,299,71,-11.798390007060185],[126,299,72,-11.855627802511801],[126,299,73,-11.93426676292504],[126,299,74,-11.982392906887386],[126,299,75,-11.987265403569285],[126,299,76,-11.969020008212157],[126,299,77,-11.929246182863237],[126,299,78,-11.8842827765629],[126,299,79,-11.829000507825794],[126,300,64,-11.84914469404787],[126,300,65,-11.866012757253154],[126,300,66,-11.857875023505297],[126,300,67,-11.833201859914553],[126,300,68,-11.815464707297409],[126,300,69,-11.811740841149172],[126,300,70,-11.846100521017748],[126,300,71,-11.904360430868449],[126,300,72,-11.96972894248578],[126,300,73,-12.022120426465753],[126,300,74,-12.05423382795174],[126,300,75,-12.04705791679414],[126,300,76,-12.022454996601027],[126,300,77,-11.97879208592791],[126,300,78,-11.932434976265007],[126,300,79,-11.874682376967257],[126,301,64,-11.895193716266348],[126,301,65,-11.913953632950047],[126,301,66,-11.905437010772479],[126,301,67,-11.88011699044129],[126,301,68,-11.861361705785619],[126,301,69,-11.857383201722971],[126,301,70,-11.892597652754294],[126,301,71,-11.94306436359053],[126,301,72,-12.013327528521097],[126,301,73,-12.063559948252356],[126,301,74,-12.091656431511588],[126,301,75,-12.085924524064824],[126,301,76,-12.064932430698736],[126,301,77,-12.022772827737013],[126,301,78,-11.976249922341694],[126,301,79,-11.91696339308273],[126,302,64,-11.936838020158445],[126,302,65,-11.95926451542626],[126,302,66,-11.95097558611651],[126,302,67,-11.926825127613016],[126,302,68,-11.905602060033194],[126,302,69,-11.905049771135099],[126,302,70,-11.937526737775022],[126,302,71,-11.985219705783335],[126,302,72,-12.057298060474702],[126,302,73,-12.107436775259735],[126,302,74,-12.135209595513118],[126,302,75,-12.134567240980685],[126,302,76,-12.118225472999676],[126,302,77,-12.078383174558708],[126,302,78,-12.031078485797186],[126,302,79,-11.969586067972015],[126,303,64,-11.982082603631525],[126,303,65,-12.005468574696051],[126,303,66,-11.996633783401414],[126,303,67,-11.97436109312777],[126,303,68,-11.953311317462878],[126,303,69,-11.959970237945356],[126,303,70,-11.980631286852578],[126,303,71,-12.026948148055244],[126,303,72,-12.09867054462551],[126,303,73,-12.151980635063635],[126,303,74,-12.174898694079188],[126,303,75,-12.177900692905247],[126,303,76,-12.157871334553198],[126,303,77,-12.119686964655992],[126,303,78,-12.069083539436118],[126,303,79,-12.00780871906333],[126,304,64,-12.029636343351228],[126,304,65,-12.048604364720596],[126,304,66,-12.043651461970141],[126,304,67,-12.02325553944544],[126,304,68,-12.00417665194728],[126,304,69,-12.013625491373768],[126,304,70,-12.02931612171682],[126,304,71,-12.071610725626417],[126,304,72,-12.142272676121003],[126,304,73,-12.199648749425764],[126,304,74,-12.22034073971635],[126,304,75,-12.220694609039203],[126,304,76,-12.201551115552785],[126,304,77,-12.161832167463167],[126,304,78,-12.11289630747353],[126,304,79,-12.049316255810808],[126,305,64,-12.07786910954246],[126,305,65,-12.0953170762564],[126,305,66,-12.091892351569761],[126,305,67,-12.070771931608178],[126,305,68,-12.049516672041227],[126,305,69,-12.065662556221273],[126,305,70,-12.077226887953834],[126,305,71,-12.125097323790516],[126,305,72,-12.188625161709167],[126,305,73,-12.249695500831658],[126,305,74,-12.270062026971093],[126,305,75,-12.266005119643467],[126,305,76,-12.24734663031914],[126,305,77,-12.209392611603796],[126,305,78,-12.156902855542391],[126,305,79,-12.094051585405134],[126,306,64,-12.128175294316105],[126,306,65,-12.146762901265554],[126,306,66,-12.14195790723627],[126,306,67,-12.123259081276524],[126,306,68,-12.101001230635008],[126,306,69,-12.104496111419515],[126,306,70,-12.119934035183745],[126,306,71,-12.17273585579903],[126,306,72,-12.233397836325688],[126,306,73,-12.297811972662235],[126,306,74,-12.315394297063467],[126,306,75,-12.30746359915905],[126,306,76,-12.287200626587362],[126,306,77,-12.245260383869143],[126,306,78,-12.189089536363673],[126,306,79,-12.130469690892692],[126,307,64,-12.175394125213453],[126,307,65,-12.193942100198168],[126,307,66,-12.188961735397827],[126,307,67,-12.170609070941266],[126,307,68,-12.149535977465918],[126,307,69,-12.151792469199922],[126,307,70,-12.169412831218832],[126,307,71,-12.222995359152502],[126,307,72,-12.283344577307494],[126,307,73,-12.348498611059583],[126,307,74,-12.365247466666943],[126,307,75,-12.354447502062621],[126,307,76,-12.334388069887591],[126,307,77,-12.292750948241377],[126,307,78,-12.237725000706245],[126,307,79,-12.1799218913529],[126,308,64,-12.212206607054814],[126,308,65,-12.23428188138428],[126,308,66,-12.234953615918569],[126,308,67,-12.217430825709807],[126,308,68,-12.201154776569345],[126,308,69,-12.197515580925819],[126,308,70,-12.212539739067035],[126,308,71,-12.262313446140428],[126,308,72,-12.320680859911374],[126,308,73,-12.388778626364546],[126,308,74,-12.407952471157639],[126,308,75,-12.40457171541303],[126,308,76,-12.380875990044883],[126,308,77,-12.342146378474958],[126,308,78,-12.289238741311186],[126,308,79,-12.231921326255254],[126,309,64,-12.256425042240648],[126,309,65,-12.281313675798097],[126,309,66,-12.28141017987701],[126,309,67,-12.261981938234717],[126,309,68,-12.24677884578771],[126,309,69,-12.24382741599975],[126,309,70,-12.258463638180798],[126,309,71,-12.29049586563141],[126,309,72,-12.34333505001598],[126,309,73,-12.398183482078908],[126,309,74,-12.433197707454228],[126,309,75,-12.431036765500906],[126,309,76,-12.397039280784139],[126,309,77,-12.3627155828833],[126,309,78,-12.311975548677726],[126,309,79,-12.265876472260878],[126,310,64,-12.297184644213969],[126,310,65,-12.320822742897667],[126,310,66,-12.320451705824203],[126,310,67,-12.300770106242057],[126,310,68,-12.28545029101782],[126,310,69,-12.285664405654869],[126,310,70,-12.300854499410406],[126,310,71,-12.332879546454645],[126,310,72,-12.385176157506491],[126,310,73,-12.443676242180418],[126,310,74,-12.475798152835749],[126,310,75,-12.471711721262587],[126,310,76,-12.439247154466036],[126,310,77,-12.403821084160171],[126,310,78,-12.354554985343308],[126,310,79,-12.305948894857801],[126,311,64,-12.339147910543435],[126,311,65,-12.36315352552331],[126,311,66,-12.363130506100532],[126,311,67,-12.344055849126956],[126,311,68,-12.328512931639791],[126,311,69,-12.332093017629347],[126,311,70,-12.348783132064998],[126,311,71,-12.377970650634586],[126,311,72,-12.432448142424983],[126,311,73,-12.489467076760128],[126,311,74,-12.522813878846758],[126,311,75,-12.5153974413684],[126,311,76,-12.485773014095647],[126,311,77,-12.44844907906859],[126,311,78,-12.407593536065939],[126,311,79,-12.359690252720105],[126,312,64,-12.373960957490107],[126,312,65,-12.396402728918835],[126,312,66,-12.392396666827812],[126,312,67,-12.37495825805547],[126,312,68,-12.360683274447036],[126,312,69,-12.365075258457972],[126,312,70,-12.383563329594663],[126,312,71,-12.414606804537117],[126,312,72,-12.471007410785846],[126,312,73,-12.528107036019122],[126,312,74,-12.562002874515096],[126,312,75,-12.55671358970159],[126,312,76,-12.529230747600613],[126,312,77,-12.49529908093055],[126,312,78,-12.456317934104188],[126,312,79,-12.409705388716917],[126,313,64,-12.419205157681212],[126,313,65,-12.44120662843425],[126,313,66,-12.436063473684639],[126,313,67,-12.418368628257225],[126,313,68,-12.403289915659052],[126,313,69,-12.408669822832426],[126,313,70,-12.427157214951542],[126,313,71,-12.460003800732444],[126,313,72,-12.516592849968509],[126,313,73,-12.575667613511666],[126,313,74,-12.608406736554757],[126,313,75,-12.60448585648148],[126,313,76,-12.578721556383359],[126,313,77,-12.537810877419249],[126,313,78,-12.486050043101857],[126,313,79,-12.431487535541777],[126,314,64,-12.469679512543118],[126,314,65,-12.49217954890893],[126,314,66,-12.4835504519784],[126,314,67,-12.464640799382611],[126,314,68,-12.451606329258281],[126,314,69,-12.456444988796465],[126,314,70,-12.472381011438824],[126,314,71,-12.506685252940017],[126,314,72,-12.563626234128606],[126,314,73,-12.622717128742483],[126,314,74,-12.658752452709939],[126,314,75,-12.658350160385549],[126,314,76,-12.635683300604702],[126,314,77,-12.59122122727622],[126,314,78,-12.542340015457293],[126,314,79,-12.481196571678002],[126,315,64,-12.51434333880627],[126,315,65,-12.53749556818234],[126,315,66,-12.528496527019966],[126,315,67,-12.511827259906543],[126,315,68,-12.496745841443845],[126,315,69,-12.50000126136815],[126,315,70,-12.516525263857789],[126,315,71,-12.54988677587799],[126,315,72,-12.610072173584843],[126,315,73,-12.671263344912036],[126,315,74,-12.70625609818828],[126,315,75,-12.709690484966911],[126,315,76,-12.687982597901474],[126,315,77,-12.642881867069748],[126,315,78,-12.585685393740828],[126,315,79,-12.522777166620918],[126,316,64,-12.565718497740196],[126,316,65,-12.586974070482132],[126,316,66,-12.579029232159645],[126,316,67,-12.561235325664883],[126,316,68,-12.54560081603148],[126,316,69,-12.54448466710464],[126,316,70,-12.559358390772344],[126,316,71,-12.592639776104466],[126,316,72,-12.656921567038005],[126,316,73,-12.720823216914575],[126,316,74,-12.75584030570124],[126,316,75,-12.763472844510718],[126,316,76,-12.7420292931373],[126,316,77,-12.70026643014044],[126,316,78,-12.638876868964056],[126,316,79,-12.580016163823506],[126,317,64,-12.61390491645567],[126,317,65,-12.632495096764783],[126,317,66,-12.62551638927084],[126,317,67,-12.607197707387552],[126,317,68,-12.59199858017209],[126,317,69,-12.587691642265522],[126,317,70,-12.6013257531725],[126,317,71,-12.635403660267063],[126,317,72,-12.701780528455258],[126,317,73,-12.768516198138876],[126,317,74,-12.804136202562379],[126,317,75,-12.813328334593479],[126,317,76,-12.795399921987348],[126,317,77,-12.755000983178709],[126,317,78,-12.686685496993112],[126,317,79,-12.632461482939394],[126,318,64,-12.657824861633667],[126,318,65,-12.672628525412147],[126,318,66,-12.666701942310258],[126,318,67,-12.644795863290977],[126,318,68,-12.629726357194976],[126,318,69,-12.625019514017048],[126,318,70,-12.637618357249595],[126,318,71,-12.671549619761084],[126,318,72,-12.737669054820532],[126,318,73,-12.808090192370157],[126,318,74,-12.845025396318817],[126,318,75,-12.852838536474513],[126,318,76,-12.840246581593961],[126,318,77,-12.801173561002914],[126,318,78,-12.732657899370164],[126,318,79,-12.676450609092582],[126,319,64,-12.704135087040186],[126,319,65,-12.721382767365675],[126,319,66,-12.714475079531356],[126,319,67,-12.692556960581292],[126,319,68,-12.677175675437486],[126,319,69,-12.670567466037442],[126,319,70,-12.683951284144065],[126,319,71,-12.71882888188426],[126,319,72,-12.784463724528866],[126,319,73,-12.855028703129793],[126,319,74,-12.891851538294093],[126,319,75,-12.900399453762903],[126,319,76,-12.888896067144103],[126,319,77,-12.846458474228193],[126,319,78,-12.781962353744197],[126,319,79,-12.721116178850272],[127,-64,64,23.275446057366583],[127,-64,65,23.23433277953858],[127,-64,66,23.111215068035072],[127,-64,67,22.945856569672273],[127,-64,68,22.91696500892499],[127,-64,69,22.936257370966185],[127,-64,70,22.971941211846378],[127,-64,71,23.060548705691286],[127,-64,72,23.104899684645375],[127,-64,73,23.083111580619406],[127,-64,74,23.073239869641725],[127,-64,75,23.091786474904588],[127,-64,76,23.150586404423763],[127,-64,77,23.255812851243185],[127,-64,78,23.382286412527286],[127,-64,79,23.544119909435125],[127,-63,64,23.083951597383223],[127,-63,65,23.043940684880177],[127,-63,66,22.97270413804087],[127,-63,67,22.81243984627979],[127,-63,68,22.78841974541353],[127,-63,69,22.794756262244736],[127,-63,70,22.831011214122242],[127,-63,71,22.908149656873682],[127,-63,72,22.94186309049823],[127,-63,73,22.912291933432712],[127,-63,74,22.874694003565143],[127,-63,75,22.892792515322732],[127,-63,76,22.953341543421804],[127,-63,77,23.062633101199065],[127,-63,78,23.243433881765203],[127,-63,79,23.414856002943356],[127,-62,64,22.893777320935786],[127,-62,65,22.852334402379675],[127,-62,66,22.79389776028689],[127,-62,67,22.6210199968403],[127,-62,68,22.61136310096723],[127,-62,69,22.60890961368418],[127,-62,70,22.645355100360927],[127,-62,71,22.686805683786126],[127,-62,72,22.725112295484262],[127,-62,73,22.698973429104825],[127,-62,74,22.681631742731394],[127,-62,75,22.701495752868496],[127,-62,76,22.762713113024855],[127,-62,77,22.87375413951806],[127,-62,78,23.051793492960947],[127,-62,79,23.20557942152258],[127,-61,64,22.702458529297925],[127,-61,65,22.664228025625032],[127,-61,66,22.585387851988276],[127,-61,67,22.46383766315658],[127,-61,68,22.471446604460315],[127,-61,69,22.439903993091132],[127,-61,70,22.40899390351438],[127,-61,71,22.407674261062795],[127,-61,72,22.44378790217114],[127,-61,73,22.47641978646651],[127,-61,74,22.4867187466551],[127,-61,75,22.506032525910182],[127,-61,76,22.570867306832668],[127,-61,77,22.67946228740959],[127,-61,78,22.80627955965607],[127,-61,79,22.928001207508093],[127,-60,64,22.4986241253818],[127,-60,65,22.460562819271473],[127,-60,66,22.39140170975121],[127,-60,67,22.292570611334906],[127,-60,68,22.291487075515644],[127,-60,69,22.248845137785167],[127,-60,70,22.219788129076896],[127,-60,71,22.223994469894915],[127,-60,72,22.2608621416319],[127,-60,73,22.292442240989885],[127,-60,74,22.302850765631348],[127,-60,75,22.32135390567408],[127,-60,76,22.386142332664605],[127,-60,77,22.494875296583754],[127,-60,78,22.62583118738703],[127,-60,79,22.74699577210276],[127,-59,64,21.99475580170897],[127,-59,65,21.965100349875204],[127,-59,66,21.94223548141317],[127,-59,67,21.943909331816002],[127,-59,68,21.96054147502038],[127,-59,69,21.98111531141706],[127,-59,70,22.0137471309219],[127,-59,71,22.04544528374391],[127,-59,72,22.082470201436863],[127,-59,73,22.10958051651352],[127,-59,74,22.120832491029063],[127,-59,75,22.139637732736745],[127,-59,76,22.203120582501636],[127,-59,77,22.313178826437284],[127,-59,78,22.444481808459805],[127,-59,79,22.567001494587814],[127,-58,64,21.804258975976765],[127,-58,65,21.77569707054288],[127,-58,66,21.751656971931354],[127,-58,67,21.752774510496547],[127,-58,68,21.768849667674818],[127,-58,69,21.793665622401132],[127,-58,70,21.827954979249927],[127,-58,71,21.860118635924596],[127,-58,72,21.896646185494216],[127,-58,73,21.920759463483655],[127,-58,74,21.93139619949652],[127,-58,75,21.94985619467034],[127,-58,76,22.01439198849256],[127,-58,77,22.125758773295647],[127,-58,78,22.253652876951527],[127,-58,79,22.376639680374147],[127,-57,64,21.611021790780946],[127,-57,65,21.58208378251364],[127,-57,66,21.56030196965616],[127,-57,67,21.56070928794349],[127,-57,68,21.576616527779223],[127,-57,69,21.603651162919537],[127,-57,70,21.639302585730245],[127,-57,71,21.671628750403173],[127,-57,72,21.708171515332324],[127,-57,73,21.73222984826251],[127,-57,74,21.741360021608877],[127,-57,75,21.761394771352162],[127,-57,76,21.82671531510039],[127,-57,77,21.936582385584956],[127,-57,78,22.065931051050576],[127,-57,79,22.188488748480562],[127,-56,64,21.417481570894196],[127,-56,65,21.3882572220594],[127,-56,66,21.37144048719474],[127,-56,67,21.37288521562937],[127,-56,68,21.390024509963425],[127,-56,69,21.414002440816862],[127,-56,70,21.44725656076241],[127,-56,71,21.48121911354872],[127,-56,72,21.51573556925151],[127,-56,73,21.544140765797113],[127,-56,74,21.552350934606338],[127,-56,75,21.570398600117315],[127,-56,76,21.635830167911173],[127,-56,77,21.74616106678636],[127,-56,78,21.87530781940068],[127,-56,79,21.997254672628355],[127,-55,64,21.224192105485265],[127,-55,65,21.194684946687122],[127,-55,66,21.18008573634367],[127,-55,67,21.1836687144794],[127,-55,68,21.20264810911685],[127,-55,69,21.225415707912106],[127,-55,70,21.255674439802316],[127,-55,71,21.287045035221993],[127,-55,72,21.324608427047664],[127,-55,73,21.353372968666612],[127,-55,74,21.35900304005679],[127,-55,75,21.377090440468862],[127,-55,76,21.442579899815687],[127,-55,77,21.553140053735802],[127,-55,78,21.685287496617246],[127,-55,79,21.80808858174117],[127,-54,64,21.03135125390576],[127,-54,65,21.00171849845478],[127,-54,66,20.98743341349604],[127,-54,67,20.993528425840378],[127,-54,68,21.01534307172622],[127,-54,69,21.03667696910553],[127,-54,70,21.062587949548835],[127,-54,71,21.093655594837898],[127,-54,72,21.130529092266713],[127,-54,73,21.15903554557618],[127,-54,74,21.16551428774903],[127,-54,75,21.182293914084667],[127,-54,76,21.247715508956944],[127,-54,77,21.361476355245024],[127,-54,78,21.49340507866075],[127,-54,79,21.617716090402464],[127,-53,64,20.85043852980772],[127,-53,65,20.804033839281367],[127,-53,66,20.788933490268274],[127,-53,67,20.796013813342363],[127,-53,68,20.81864539382971],[127,-53,69,20.84187490051378],[127,-53,70,20.864697788753464],[127,-53,71,20.89513918954995],[127,-53,72,20.93320454138292],[127,-53,73,20.95900903627388],[127,-53,74,20.96892349765582],[127,-53,75,20.983671109906467],[127,-53,76,21.05103082531843],[127,-53,77,21.164235529756493],[127,-53,78,21.294404860836686],[127,-53,79,21.419132038838804],[127,-52,64,20.67268211490296],[127,-52,65,20.612617629544005],[127,-52,66,20.59901605411079],[127,-52,67,20.608206155766865],[127,-52,68,20.630530737418454],[127,-52,69,20.656880419437783],[127,-52,70,20.679742572253666],[127,-52,71,20.71412415177997],[127,-52,72,20.75109132635396],[127,-52,73,20.773807311889755],[127,-52,74,20.782053607086752],[127,-52,75,20.800494396072196],[127,-52,76,20.868543048251894],[127,-52,77,20.97709106404532],[127,-52,78,21.10818821199007],[127,-52,79,21.234534456787134],[127,-51,64,20.54026197025728],[127,-51,65,20.455891191381735],[127,-51,66,20.38975714724657],[127,-51,67,20.405964311736998],[127,-51,68,20.433930670617976],[127,-51,69,20.46071608896471],[127,-51,70,20.484076356939546],[127,-51,71,20.51869045763029],[127,-51,72,20.549219105850923],[127,-51,73,20.56602326835598],[127,-51,74,20.57115565163819],[127,-51,75,20.594607743846307],[127,-51,76,20.66430740782223],[127,-51,77,20.77634906633905],[127,-51,78,20.913591567702912],[127,-51,79,21.045669276370653],[127,-50,64,20.359121642256035],[127,-50,65,20.282035944464653],[127,-50,66,20.20016163749442],[127,-50,67,20.21773511872414],[127,-50,68,20.247117334966486],[127,-50,69,20.271050792763933],[127,-50,70,20.29512332567274],[127,-50,71,20.32798447015516],[127,-50,72,20.35566995469985],[127,-50,73,20.37402797251252],[127,-50,74,20.380626139872483],[127,-50,75,20.401173641574456],[127,-50,76,20.47078406287258],[127,-50,77,20.58643802619234],[127,-50,78,20.722064168160014],[127,-50,79,20.85346574327372],[127,-49,64,20.204321951190636],[127,-49,65,20.09936917200684],[127,-49,66,20.005470827836522],[127,-49,67,20.024422757942254],[127,-49,68,20.05329637533989],[127,-49,69,20.079256652275113],[127,-49,70,20.1042203735233],[127,-49,71,20.135777413961424],[127,-49,72,20.16439150392047],[127,-49,73,20.182979138756906],[127,-49,74,20.18803620245523],[127,-49,75,20.208349232878767],[127,-49,76,20.27741810739567],[127,-49,77,20.393664067952898],[127,-49,78,20.531789740444392],[127,-49,79,20.66386378255075],[127,-48,64,20.04038526353157],[127,-48,65,19.92608499662256],[127,-48,66,19.815036527974485],[127,-48,67,19.83186487978795],[127,-48,68,19.85987159083088],[127,-48,69,19.887626385280864],[127,-48,70,19.915029319995217],[127,-48,71,19.94558519375382],[127,-48,72,19.974879920924646],[127,-48,73,19.99168857597425],[127,-48,74,19.995258963606997],[127,-48,75,20.01600720319155],[127,-48,76,20.083858551538825],[127,-48,77,20.198870164573535],[127,-48,78,20.338823782495645],[127,-48,79,20.47235279878609],[127,-47,64,19.845065286011216],[127,-47,65,19.730517342116233],[127,-47,66,19.6214257769863],[127,-47,67,19.632730381774536],[127,-47,68,19.657502563418554],[127,-47,69,19.68579755011511],[127,-47,70,19.717737735365915],[127,-47,71,19.752027893384042],[127,-47,72,19.78668570020093],[127,-47,73,19.80953513367557],[127,-47,74,19.813956570215243],[127,-47,75,19.835338919878186],[127,-47,76,19.90047810750156],[127,-47,77,20.008370483426177],[127,-47,78,20.142257452611073],[127,-47,79,20.27120547895686],[127,-46,64,19.58712916053555],[127,-46,65,19.474703581325773],[127,-46,66,19.429504267844827],[127,-46,67,19.440185047630273],[127,-46,68,19.46390543124943],[127,-46,69,19.49148508080059],[127,-46,70,19.524271509914644],[127,-46,71,19.561168619468532],[127,-46,72,19.594301779150054],[127,-46,73,19.617951568252266],[127,-46,74,19.622012316289062],[127,-46,75,19.640783323053807],[127,-46,76,19.70645445726057],[127,-46,77,19.813060098852038],[127,-46,78,19.946461836209203],[127,-46,79,20.076024609657683],[127,-45,64,19.412308495785286],[127,-45,65,19.299704059331855],[127,-45,66,19.234206747508402],[127,-45,67,19.241873967758806],[127,-45,68,19.265850984797805],[127,-45,69,19.29278238053085],[127,-45,70,19.32462671118903],[127,-45,71,19.362826568668726],[127,-45,72,19.397462484772653],[127,-45,73,19.419569457348604],[127,-45,74,19.42488289215147],[127,-45,75,19.44298207746437],[127,-45,76,19.50531754621874],[127,-45,77,19.614010711114],[127,-45,78,19.745131060388147],[127,-45,79,19.87615329085596],[127,-44,64,19.331048893248145],[127,-44,65,19.163078806273766],[127,-44,66,19.022368824866117],[127,-44,67,19.01927726520738],[127,-44,68,19.03875357622015],[127,-44,69,19.06014698617315],[127,-44,70,19.085565213623923],[127,-44,71,19.120343571400635],[127,-44,72,19.15341542547674],[127,-44,73,19.174552630071602],[127,-44,74,19.178746126603144],[127,-44,75,19.197648966555043],[127,-44,76,19.25744777353184],[127,-44,77,19.367492055642447],[127,-44,78,19.499377660029644],[127,-44,79,19.62935556556835],[127,-43,64,19.253022186584353],[127,-43,65,19.100514458366032],[127,-43,66,18.939879596205202],[127,-43,67,18.831197302272763],[127,-43,68,18.849310141127837],[127,-43,69,18.86978413056824],[127,-43,70,18.890238061567043],[127,-43,71,18.924655156215316],[127,-43,72,18.95836465477894],[127,-43,73,18.978509440672493],[127,-43,74,18.980520308445527],[127,-43,75,19.001406586317298],[127,-43,76,19.06086791823633],[127,-43,77,19.170991034766264],[127,-43,78,19.30314067362367],[127,-43,79,19.432674508925405],[127,-42,64,19.049370597085193],[127,-42,65,18.90664675109454],[127,-42,66,18.74717851841028],[127,-42,67,18.64102912495964],[127,-42,68,18.65800826526138],[127,-42,69,18.675794887941997],[127,-42,70,18.696838552043072],[127,-42,71,18.729949691842577],[127,-42,72,18.763932697755696],[127,-42,73,18.782669389127296],[127,-42,74,18.784210459869488],[127,-42,75,18.805390381884926],[127,-42,76,18.866318608770214],[127,-42,77,18.975291708185534],[127,-42,78,19.108326866269877],[127,-42,79,19.239417032288536],[127,-41,64,18.857781241600662],[127,-41,65,18.700998840010563],[127,-41,66,18.51185727352441],[127,-41,67,18.44656977467622],[127,-41,68,18.46533024387147],[127,-41,69,18.48281263330836],[127,-41,70,18.501904453983176],[127,-41,71,18.534917180543673],[127,-41,72,18.565246945115998],[127,-41,73,18.585741012432162],[127,-41,74,18.58711335888323],[127,-41,75,18.60824740024361],[127,-41,76,18.670902953935464],[127,-41,77,18.783977559814637],[127,-41,78,18.914916689789024],[127,-41,79,19.048703822424145],[127,-40,64,18.72027355851271],[127,-40,65,18.5649488532605],[127,-40,66,18.374998815358033],[127,-40,67,18.25557453351306],[127,-40,68,18.274655637286752],[127,-40,69,18.290520056385613],[127,-40,70,18.309633798885876],[127,-40,71,18.34268820411068],[127,-40,72,18.37145002737165],[127,-40,73,18.388990598079182],[127,-40,74,18.3899035148287],[127,-40,75,18.409602788887884],[127,-40,76,18.476955598905764],[127,-40,77,18.59082209127041],[127,-40,78,18.722933930474056],[127,-40,79,18.8568529084819],[127,-39,64,18.56957970422868],[127,-39,65,18.407026111640217],[127,-39,66,18.187330937977237],[127,-39,67,18.060018850092835],[127,-39,68,18.077443696030084],[127,-39,69,18.093276669626885],[127,-39,70,18.112420726659508],[127,-39,71,18.143573347594742],[127,-39,72,18.170442366731947],[127,-39,73,18.18355792287088],[127,-39,74,18.181433409613966],[127,-39,75,18.203801749473342],[127,-39,76,18.27163529991234],[127,-39,77,18.389009119120143],[127,-39,78,18.5254617983667],[127,-39,79,18.659151968904535],[127,-38,64,18.390394580499287],[127,-38,65,18.217500999782857],[127,-38,66,17.942780618370897],[127,-38,67,17.867503018871343],[127,-38,68,17.88481345882263],[127,-38,69,17.900615131483075],[127,-38,70,17.924910567134575],[127,-38,71,17.952963680160096],[127,-38,72,17.979341437682915],[127,-38,73,17.99079916327859],[127,-38,74,17.98883689811185],[127,-38,75,18.00804576974696],[127,-38,76,18.07757008339107],[127,-38,77,18.19430241906526],[127,-38,78,18.330492788117215],[127,-38,79,18.464754002131087],[127,-37,64,18.25145858916077],[127,-37,65,18.084731704490107],[127,-37,66,17.805676875131205],[127,-37,67,17.67244940795904],[127,-37,68,17.688042248529573],[127,-37,69,17.704669121081665],[127,-37,70,17.72985514465601],[127,-37,71,17.76031611809556],[127,-37,72,17.783615273362123],[127,-37,73,17.793503232014245],[127,-37,74,17.79405843104484],[127,-37,75,17.80847606436162],[127,-37,76,17.87665456868475],[127,-37,77,17.993795499861484],[127,-37,78,18.13137136559282],[127,-37,79,18.26590383302993],[127,-36,64,18.08056965087167],[127,-36,65,17.912121787480547],[127,-36,66,17.621638261602552],[127,-36,67,17.488756189698563],[127,-36,68,17.50508427768466],[127,-36,69,17.525002890742165],[127,-36,70,17.549692009184746],[127,-36,71,17.582249202630553],[127,-36,72,17.60173520306459],[127,-36,73,17.611436937889653],[127,-36,74,17.61140756611509],[127,-36,75,17.62698966366065],[127,-36,76,17.692410250862444],[127,-36,77,17.80876788198804],[127,-36,78,17.948193266000974],[127,-36,79,18.083053445318885],[127,-35,64,17.92065478661003],[127,-35,65,17.87827746133446],[127,-35,66,17.76352113348299],[127,-35,67,17.630350973419574],[127,-35,68,17.559487933635882],[127,-35,69,17.344859012174464],[127,-35,70,17.36607335100991],[127,-35,71,17.395536719402713],[127,-35,72,17.415536896686017],[127,-35,73,17.42267450548607],[127,-35,74,17.421730770503434],[127,-35,75,17.44236198555054],[127,-35,76,17.50617796244863],[127,-35,77,17.624067428131053],[127,-35,78,17.766620937094622],[127,-35,79,17.905468148481816],[127,-34,64,17.71778592934492],[127,-34,65,17.67596071334263],[127,-34,66,17.606337242467454],[127,-34,67,17.4595149722534],[127,-34,68,17.369116245833304],[127,-34,69,17.178590269730766],[127,-34,70,17.17709273594236],[127,-34,71,17.206329029236972],[127,-34,72,17.225716124932365],[127,-34,73,17.231714700313614],[127,-34,74,17.22978609469692],[127,-34,75,17.249789253636205],[127,-34,76,17.313178731021488],[127,-34,77,17.429287978024643],[127,-34,78,17.573156569617847],[127,-34,79,17.71342410100473],[127,-33,64,17.519995533633086],[127,-33,65,17.475406318772784],[127,-33,66,17.43487907161395],[127,-33,67,17.309785814429393],[127,-33,68,17.199858581207458],[127,-33,69,17.03017923064845],[127,-33,70,17.010562023555188],[127,-33,71,17.035631021933778],[127,-33,72,17.049203801334667],[127,-33,73,17.0503128393887],[127,-33,74,17.04487550291263],[127,-33,75,17.058659986270612],[127,-33,76,17.11556569486939],[127,-33,77,17.229338638783734],[127,-33,78,17.366724070598988],[127,-33,79,17.50679979832031],[127,-32,64,17.33175667876056],[127,-32,65,17.287357556865146],[127,-32,66,17.259388448356734],[127,-32,67,17.18996339878729],[127,-32,68,17.04176235180703],[127,-32,69,16.86422343297601],[127,-32,70,16.821704329923104],[127,-32,71,16.84302408252373],[127,-32,72,16.858561832909132],[127,-32,73,16.85850097473168],[127,-32,74,16.85124662273336],[127,-32,75,16.865550110490272],[127,-32,76,16.92165168871267],[127,-32,77,17.03611519404743],[127,-32,78,17.17328770312021],[127,-32,79,17.314776563166543],[127,-31,64,17.137380858884914],[127,-31,65,17.097089617256643],[127,-31,66,17.068221808792334],[127,-31,67,17.06870227334125],[127,-31,68,16.968689794452153],[127,-31,69,16.803199256241157],[127,-31,70,16.73622185780207],[127,-31,71,16.72320245021377],[127,-31,72,16.704595001513525],[127,-31,73,16.698282873766196],[127,-31,74,16.67439364604103],[127,-31,75,16.673196756405275],[127,-31,76,16.729841944864226],[127,-31,77,16.840427966813056],[127,-31,78,16.978055123120107],[127,-31,79,17.12053628594909],[127,-30,64,16.952220954282563],[127,-30,65,16.909388710818984],[127,-30,66,16.88295176250609],[127,-30,67,16.88482177610603],[127,-30,68,16.81029214146854],[127,-30,69,16.673727302541426],[127,-30,70,16.572797791049197],[127,-30,71,16.564202730313173],[127,-30,72,16.552741822238364],[127,-30,73,16.544202307814235],[127,-30,74,16.48338930053948],[127,-30,75,16.479308187087497],[127,-30,76,16.534122040648814],[127,-30,77,16.644382647989904],[127,-30,78,16.782613366007894],[127,-30,79,16.925624113007796],[127,-29,64,16.771075615393094],[127,-29,65,16.727101464262226],[127,-29,66,16.700225247933215],[127,-29,67,16.701016386499823],[127,-29,68,16.71553737216308],[127,-29,69,16.580200324434998],[127,-29,70,16.479779479883906],[127,-29,71,16.454916051742504],[127,-29,72,16.44645257564565],[127,-29,73,16.426572381852896],[127,-29,74,16.33814888212646],[127,-29,75,16.27862228455173],[127,-29,76,16.33386806884565],[127,-29,77,16.445780553036368],[127,-29,78,16.585356148980683],[127,-29,79,16.72557472329881],[127,-28,64,16.56897445712969],[127,-28,65,16.523923877249754],[127,-28,66,16.49908860920033],[127,-28,67,16.499435154042132],[127,-28,68,16.511737326124766],[127,-28,69,16.434041817724257],[127,-28,70,16.3414874758874],[127,-28,71,16.310907978684913],[127,-28,72,16.293329262270145],[127,-28,73,16.249012599730854],[127,-28,74,16.179458697508032],[127,-28,75,16.092398076946857],[127,-28,76,16.148071967254033],[127,-28,77,16.25881554933153],[127,-28,78,16.398005209157812],[127,-28,79,16.54024981819376],[127,-27,64,16.381826817119002],[127,-27,65,16.33550426087305],[127,-27,66,16.308705907796103],[127,-27,67,16.30713890978964],[127,-27,68,16.31793647896972],[127,-27,69,16.324657998622396],[127,-27,70,16.249408355565315],[127,-27,71,16.198602809267342],[127,-27,72,16.173813611264208],[127,-27,73,16.13518500073606],[127,-27,74,16.059244488368694],[127,-27,75,15.918915995942925],[127,-27,76,15.961948269243052],[127,-27,77,16.070507219439023],[127,-27,78,16.209759838947065],[127,-27,79,16.346924643995646],[127,-26,64,16.243083726434026],[127,-26,65,16.198362364174248],[127,-26,66,16.16841886809484],[127,-26,67,16.166686914037232],[127,-26,68,16.177395528107002],[127,-26,69,16.188902467508463],[127,-26,70,16.157595347700166],[127,-26,71,16.078568201922778],[127,-26,72,16.04226097157082],[127,-26,73,15.983963375095197],[127,-26,74,15.854880408974445],[127,-26,75,15.727746107383815],[127,-26,76,15.769753494582412],[127,-26,77,15.877136155446994],[127,-26,78,16.014120987910935],[127,-26,79,16.15242605139919],[127,-25,64,16.05527237530881],[127,-25,65,16.006291064299816],[127,-25,66,15.976488465664522],[127,-25,67,15.975424856570564],[127,-25,68,15.986392029441657],[127,-25,69,15.996438246142965],[127,-25,70,16.00839113766869],[127,-25,71,15.935950393579141],[127,-25,72,15.873441716254288],[127,-25,73,15.788352574259493],[127,-25,74,15.621380545534004],[127,-25,75,15.522737981363981],[127,-25,76,15.577072774953717],[127,-25,77,15.684607309952044],[127,-25,78,15.820803396125719],[127,-25,79,15.958211461795555],[127,-24,64,15.868261241582564],[127,-24,65,15.818315918193449],[127,-24,66,15.787308012987095],[127,-24,67,15.787371096874825],[127,-24,68,15.79548065727973],[127,-24,69,15.805190498316046],[127,-24,70,15.817039001214107],[127,-24,71,15.809547512450884],[127,-24,72,15.716287476859664],[127,-24,73,15.601880762836778],[127,-24,74,15.424159926069176],[127,-24,75,15.330707845097884],[127,-24,76,15.386020029682733],[127,-24,77,15.490876870521024],[127,-24,78,15.628363946871794],[127,-24,79,15.76404825377444],[127,-23,64,15.674230464215555],[127,-23,65,15.623925295965357],[127,-23,66,15.595857742577898],[127,-23,67,15.595722792829415],[127,-23,68,15.602831965916003],[127,-23,69,15.612663487232938],[127,-23,70,15.624805774387786],[127,-23,71,15.60250140661765],[127,-23,72,15.488268832201925],[127,-23,73,15.339231705802659],[127,-23,74,15.140400388202899],[127,-23,75,15.14874655363181],[127,-23,76,15.202810882119659],[127,-23,77,15.300814481454687],[127,-23,78,15.429929707763206],[127,-23,79,15.562532288991509],[127,-22,64,15.488492879197743],[127,-22,65,15.436285174153431],[127,-22,66,15.411600573013915],[127,-22,67,15.410232887275816],[127,-22,68,15.416730480772936],[127,-22,69,15.428917685517906],[127,-22,70,15.442615050807989],[127,-22,71,15.458790789985311],[127,-22,72,15.311793437250573],[127,-22,73,15.13240956750211],[127,-22,74,14.951471397140716],[127,-22,75,14.9550396884819],[127,-22,76,15.009069866653293],[127,-22,77,15.109787842863186],[127,-22,78,15.236896175264292],[127,-22,79,15.366413164066461],[127,-21,64,15.295066420588203],[127,-21,65,15.245679393093564],[127,-21,66,15.219717981254036],[127,-21,67,15.218084882183096],[127,-21,68,15.226073809464935],[127,-21,69,15.236584945616235],[127,-21,70,15.24970575038627],[127,-21,71,15.26440615323163],[127,-21,72,15.177608241429134],[127,-21,73,14.99004770623465],[127,-21,74,14.796110902983136],[127,-21,75,14.760843814161706],[127,-21,76,14.812600113421752],[127,-21,77,14.913829674506873],[127,-21,78,15.038225013996916],[127,-21,79,15.16587672665406],[127,-20,64,15.091601259614624],[127,-20,65,15.042173106830104],[127,-20,66,15.013819521508173],[127,-20,67,15.013827388387224],[127,-20,68,15.024791462380557],[127,-20,69,15.033155539770005],[127,-20,70,15.048345889310486],[127,-20,71,15.065747363145125],[127,-20,72,14.98980911576365],[127,-20,73,14.822525350026547],[127,-20,74,14.605813815070881],[127,-20,75,14.576592288320905],[127,-20,76,14.625776661402629],[127,-20,77,14.728280370964644],[127,-20,78,14.851820964240408],[127,-20,79,14.975965901099341],[127,-19,64,14.900015596025689],[127,-19,65,14.847252755137113],[127,-19,66,14.820788984710022],[127,-19,67,14.821005485793554],[127,-19,68,14.831322742161635],[127,-19,69,14.842047367800024],[127,-19,70,14.85864374012639],[127,-19,71,14.874974579632266],[127,-19,72,14.845075259378373],[127,-19,73,14.650586712935233],[127,-19,74,14.406748157560939],[127,-19,75,14.382173496031777],[127,-19,76,14.433273634639564],[127,-19,77,14.535028055885068],[127,-19,78,14.661309286472324],[127,-19,79,14.787712654000781],[127,-18,64,14.699696014657752],[127,-18,65,14.645867435126815],[127,-18,66,14.618145791133895],[127,-18,67,14.617864454074091],[127,-18,68,14.628200679438702],[127,-18,69,14.638992234401687],[127,-18,70,14.656362450187446],[127,-18,71,14.671632025686744],[127,-18,72,14.658139445057515],[127,-18,73,14.45359354492135],[127,-18,74,14.207282177584018],[127,-18,75,14.188788708248062],[127,-18,76,14.242205254509365],[127,-18,77,14.343273378592105],[127,-18,78,14.468868665390167],[127,-18,79,14.592887767372996],[127,-17,64,14.502213562075756],[127,-17,65,14.44744602140545],[127,-17,66,14.421732848907551],[127,-17,67,14.422606153090307],[127,-17,68,14.433938872211161],[127,-17,69,14.44714745474805],[127,-17,70,14.465450253017712],[127,-17,71,14.481697596823619],[127,-17,72,14.488584219227237],[127,-17,73,14.25769131620044],[127,-17,74,14.027152232990295],[127,-17,75,13.997440911630346],[127,-17,76,14.053398999783719],[127,-17,77,14.153888277306493],[127,-17,78,14.2778245312495],[127,-17,79,14.403119030143188],[127,-16,64,14.312459604527657],[127,-16,65,14.257784855389174],[127,-16,66,14.23225836648511],[127,-16,67,14.233521116274359],[127,-16,68,14.24632691060502],[127,-16,69,14.256766432265055],[127,-16,70,14.273920086050737],[127,-16,71,14.290030470210779],[127,-16,72,14.298411081050508],[127,-16,73,14.106438645363072],[127,-16,74,13.925361961708388],[127,-16,75,13.80610279014166],[127,-16,76,13.860912356798936],[127,-16,77,13.961923319505386],[127,-16,78,14.086202361050773],[127,-16,79,14.2123642537352],[127,-15,64,14.115910293302704],[127,-15,65,14.061798098363216],[127,-15,66,14.034119244807215],[127,-15,67,14.04116004514705],[127,-15,68,14.051899121123807],[127,-15,69,14.064984107710128],[127,-15,70,14.081924975465057],[127,-15,71,14.098402626210438],[127,-15,72,14.105146021670961],[127,-15,73,13.931788357625017],[127,-15,74,13.733482636484096],[127,-15,75,13.618392902253634],[127,-15,76,13.673092837939805],[127,-15,77,13.777553168182362],[127,-15,78,13.904351779297798],[127,-15,79,14.03287031289968],[127,-14,64,13.82921710536671],[127,-14,65,13.775203429126968],[127,-14,66,13.748363915347527],[127,-14,67,13.756157578119943],[127,-14,68,13.768658621046779],[127,-14,69,13.781334918099155],[127,-14,70,13.7985504068159],[127,-14,71,13.814913096690868],[127,-14,72,13.822176377867827],[127,-14,73,13.69080324088881],[127,-14,74,13.540146541297236],[127,-14,75,13.427932864568444],[127,-14,76,13.479954783192888],[127,-14,77,13.583166472698297],[127,-14,78,13.710833813340043],[127,-14,79,13.842199371087045],[127,-13,64,13.633149273540333],[127,-13,65,13.580122462758409],[127,-13,66,13.555628297961665],[127,-13,67,13.561011980875897],[127,-13,68,13.577780004635434],[127,-13,69,13.591457941573427],[127,-13,70,13.606926689997447],[127,-13,71,13.62363787727438],[127,-13,72,13.628662057059415],[127,-13,73,13.559711636178442],[127,-13,74,13.402053796303715],[127,-13,75,13.249212819843533],[127,-13,76,13.282154866197256],[127,-13,77,13.38262942497626],[127,-13,78,13.51037686498389],[127,-13,79,13.643595365766531],[127,-12,64,13.429196096025583],[127,-12,65,13.375622052387664],[127,-12,66,13.350259295852599],[127,-12,67,13.356593676484453],[127,-12,68,13.372631525650513],[127,-12,69,13.389176438236706],[127,-12,70,13.404060968132288],[127,-12,71,13.418110790539748],[127,-12,72,13.423393678995687],[127,-12,73,13.346500579704154],[127,-12,74,13.205875228865061],[127,-12,75,13.069855515048907],[127,-12,76,13.089641795618391],[127,-12,77,13.191499449988408],[127,-12,78,13.318590527709615],[127,-12,79,13.451899343893855],[127,-11,64,13.234553412516988],[127,-11,65,13.180421380901153],[127,-11,66,13.152249442121228],[127,-11,67,13.156526102705467],[127,-11,68,13.174924611334136],[127,-11,69,13.194200152086086],[127,-11,70,13.208817745934759],[127,-11,71,13.222990409274688],[127,-11,72,13.228181673559972],[127,-11,73,13.1362958517049],[127,-11,74,12.977175979869095],[127,-11,75,12.839642766517246],[127,-11,76,12.88933691859208],[127,-11,77,12.992770573711109],[127,-11,78,13.120418121505612],[127,-11,79,13.249838155184943],[127,-10,64,13.031249857363644],[127,-10,65,12.975442741983883],[127,-10,66,12.949122151028115],[127,-10,67,12.954517245552598],[127,-10,68,12.97261936381694],[127,-10,69,12.99260077759522],[127,-10,70,13.006464608479428],[127,-10,71,13.020828575478083],[127,-10,72,13.023091448128053],[127,-10,73,12.93994562859309],[127,-10,74,12.76275967232103],[127,-10,75,12.645997729170704],[127,-10,76,12.694454099870478],[127,-10,77,12.797457569189707],[127,-10,78,12.928327618711435],[127,-10,79,13.058089349368483],[127,-9,64,12.840013505129114],[127,-9,65,12.786438731838222],[127,-9,66,12.757752540391143],[127,-9,67,12.763697836865244],[127,-9,68,12.783677776036459],[127,-9,69,12.804092194893295],[127,-9,70,12.818272425830429],[127,-9,71,12.833807476275242],[127,-9,72,12.836062771125228],[127,-9,73,12.755488811487036],[127,-9,74,12.570891322329008],[127,-9,75,12.453787163753432],[127,-9,76,12.502569543687564],[127,-9,77,12.605312136193202],[127,-9,78,12.73877057891213],[127,-9,79,12.869992072810966],[127,-8,64,12.646926334244537],[127,-8,65,12.59583333340981],[127,-8,66,12.565261780820999],[127,-8,67,12.569731070670654],[127,-8,68,12.590774570585213],[127,-8,69,12.610325534139228],[127,-8,70,12.625598504674283],[127,-8,71,12.641501796762148],[127,-8,72,12.646988049453128],[127,-8,73,12.601975453054632],[127,-8,74,12.430470175948969],[127,-8,75,12.257844648255013],[127,-8,76,12.308287586088069],[127,-8,77,12.413582496899245],[127,-8,78,12.546946668468166],[127,-8,79,12.679846371407022],[127,-7,64,12.45140217025179],[127,-7,65,12.399604196816025],[127,-7,66,12.371256564621687],[127,-7,67,12.373336418608455],[127,-7,68,12.396652033622313],[127,-7,69,12.415253985254264],[127,-7,70,12.431774119615442],[127,-7,71,12.44782242469775],[127,-7,72,12.453668695733496],[127,-7,73,12.408852856214587],[127,-7,74,12.254773504615404],[127,-7,75,12.066010687105232],[127,-7,76,12.11737944051327],[127,-7,77,12.2200085877899],[127,-7,78,12.354481178652408],[127,-7,79,12.4881740534259],[127,-6,64,12.260448879672198],[127,-6,65,12.210109570584398],[127,-6,66,12.18403977273907],[127,-6,67,12.183435218799525],[127,-6,68,12.202868506914353],[127,-6,69,12.218639504883628],[127,-6,70,12.240223509145137],[127,-6,71,12.254014536447858],[127,-6,72,12.259615133880098],[127,-6,73,12.225389327810017],[127,-6,74,12.067436757621683],[127,-6,75,11.87712608387054],[127,-6,76,11.926416546962571],[127,-6,77,12.027884669122807],[127,-6,78,12.161052619579447],[127,-6,79,12.294465051494829],[127,-5,64,12.063648947091052],[127,-5,65,12.016921409832584],[127,-5,66,11.991568090576235],[127,-5,67,11.990769663582983],[127,-5,68,12.008470319890863],[127,-5,69,12.024317000073808],[127,-5,70,12.044595189186959],[127,-5,71,12.061647891146437],[127,-5,72,12.066038870334506],[127,-5,73,12.053383326907586],[127,-5,74,12.042926803815565],[127,-5,75,11.99409665680942],[127,-5,76,11.850599914528217],[127,-5,77,11.83332083277695],[127,-5,78,11.965263221339576],[127,-5,79,12.098490032282527],[127,-4,64,11.858539408233547],[127,-4,65,11.810300784414988],[127,-4,66,11.786605118912284],[127,-4,67,11.790520397222702],[127,-4,68,11.807349519220763],[127,-4,69,11.820003451854538],[127,-4,70,11.839207606074016],[127,-4,71,11.858948997580725],[127,-4,72,11.861042027758456],[127,-4,73,11.846150586830857],[127,-4,74,11.835396001623684],[127,-4,75,11.794880799457717],[127,-4,76,11.647291740315897],[127,-4,77,11.64318158390748],[127,-4,78,11.772861132533558],[127,-4,79,11.90528581197992],[127,-3,64,11.658126335345262],[127,-3,65,11.608467730738932],[127,-3,66,11.584398150833962],[127,-3,67,11.59208003100978],[127,-3,68,11.607321945425753],[127,-3,69,11.62152399899638],[127,-3,70,11.638949162588501],[127,-3,71,11.661160313535458],[127,-3,72,11.666206353452482],[127,-3,73,11.653377553769507],[127,-3,74,11.644377440182472],[127,-3,75,11.608463841901843],[127,-3,76,11.467422587576527],[127,-3,77,11.467119863553863],[127,-3,78,11.597149352803392],[127,-3,79,11.726939447762074],[127,-2,64,11.459959670399058],[127,-2,65,11.409216381014302],[127,-2,66,11.389220790404822],[127,-2,67,11.39496027911092],[127,-2,68,11.410817743150934],[127,-2,69,11.426075678878453],[127,-2,70,11.440966677061553],[127,-2,71,11.461355994674054],[127,-2,72,11.464867102265785],[127,-2,73,11.453783176436373],[127,-2,74,11.44597530433771],[127,-2,75,11.406155159769497],[127,-2,76,11.284378108847264],[127,-2,77,11.273307322299361],[127,-2,78,11.40498143061558],[127,-2,79,11.53518188638779],[127,-1,64,11.268774176516791],[127,-1,65,11.217157633266929],[127,-1,66,11.197068219113902],[127,-1,67,11.202488887789523],[127,-1,68,11.220550232500774],[127,-1,69,11.235615984895865],[127,-1,70,11.248303918944842],[127,-1,71,11.265495797459185],[127,-1,72,11.271958471083597],[127,-1,73,11.260351830719769],[127,-1,74,11.252008773843153],[127,-1,75,11.131238900413972],[127,-1,76,11.017309676327905],[127,-1,77,11.081299810132771],[127,-1,78,11.214464083024355],[127,-1,79,11.34653561048477],[127,0,64,10.976855721276065],[127,0,65,10.92316347185538],[127,0,66,10.894356958290436],[127,0,67,10.893768976971506],[127,0,68,10.904875004709657],[127,0,69,10.916793158160122],[127,0,70,10.925549576829656],[127,0,71,10.930865326251888],[127,0,72,10.915311034052458],[127,0,73,10.87803372329072],[127,0,74,10.843569559017148],[127,0,75,10.839002704743576],[127,0,76,10.884646153120821],[127,0,77,10.986555518114551],[127,0,78,11.117468096261673],[127,0,79,11.246227315441569],[127,1,64,10.786935614375068],[127,1,65,10.731021754468538],[127,1,66,10.704851714086582],[127,1,67,10.706177612784577],[127,1,68,10.717412442358365],[127,1,69,10.727961521483028],[127,1,70,10.732052141325918],[127,1,71,10.73895887683211],[127,1,72,10.720806463651654],[127,1,73,10.682658868073045],[127,1,74,10.647987321461382],[127,1,75,10.64337856835274],[127,1,76,10.69099447076397],[127,1,77,10.79139341221674],[127,1,78,10.919390643616506],[127,1,79,11.052210831146146],[127,2,64,10.596599495442566],[127,2,65,10.541659203270088],[127,2,66,10.515011777558627],[127,2,67,10.518335392381344],[127,2,68,10.528646507567853],[127,2,69,10.534926258056903],[127,2,70,10.53859267406959],[127,2,71,10.54414070833717],[127,2,72,10.525786484470808],[127,2,73,10.489163000732821],[127,2,74,10.455139471041802],[127,2,75,10.447950703977462],[127,2,76,10.495962522379493],[127,2,77,10.595456238418825],[127,2,78,10.722660616088405],[127,2,79,10.854186978824702],[127,3,64,10.403503456824113],[127,3,65,10.348974972228504],[127,3,66,10.32340441900669],[127,3,67,10.325751323986774],[127,3,68,10.337027539586725],[127,3,69,10.34222974357412],[127,3,70,10.346359893493627],[127,3,71,10.348101509454745],[127,3,72,10.33076890540991],[127,3,73,10.294410497129627],[127,3,74,10.259379109226755],[127,3,75,10.255616440719365],[127,3,76,10.302268533977552],[127,3,77,10.4028242287246],[127,3,78,10.528682085067606],[127,3,79,10.6582870686215],[127,4,64,10.213709687583124],[127,4,65,10.158394181798096],[127,4,66,10.130951922362998],[127,4,67,10.13252385711277],[127,4,68,10.142691214832428],[127,4,69,10.146160271045714],[127,4,70,10.153001977015606],[127,4,71,10.15494482660177],[127,4,72,10.135084051260435],[127,4,73,10.100663988847986],[127,4,74,10.064158911933971],[127,4,75,10.06332991940284],[127,4,76,10.107825604731207],[127,4,77,10.20916784728043],[127,4,78,10.334202666857806],[127,4,79,10.466476195581878],[127,5,64,10.02466150642476],[127,5,65,9.9671682679759],[127,5,66,9.937259717575582],[127,5,67,9.938170204470744],[127,5,68,9.947797099339668],[127,5,69,9.953177298506889],[127,5,70,9.961312943948762],[127,5,71,9.962821526980965],[127,5,72,9.942683217105117],[127,5,73,9.90770312470767],[127,5,74,9.872768902079475],[127,5,75,9.868005150490749],[127,5,76,9.9136968303317],[127,5,77,10.013229046460765],[127,5,78,10.141979094975119],[127,5,79,10.273194030567412],[127,6,64,9.83498742781088],[127,6,65,9.775266755117215],[127,6,66,9.744743489030306],[127,6,67,9.742802884349686],[127,6,68,9.75336915277471],[127,6,69,9.761785360315477],[127,6,70,9.767548437382908],[127,6,71,9.767491462314643],[127,6,72,9.75051131659054],[127,6,73,9.714568381207222],[127,6,74,9.679209014309892],[127,6,75,9.674354781517408],[127,6,76,9.720243110972206],[127,6,77,9.820925782204045],[127,6,78,9.948562671568071],[127,6,79,10.079680219610793],[127,7,64,9.642338438817365],[127,7,65,9.582257368006104],[127,7,66,9.548632509827703],[127,7,67,9.546796869239232],[127,7,68,9.557038964700766],[127,7,69,9.566426737467905],[127,7,70,9.573006100801834],[127,7,71,9.572665205792305],[127,7,72,9.555069599375873],[127,7,73,9.520272042982192],[127,7,74,9.48626968447769],[127,7,75,9.484749159600016],[127,7,76,9.528454103938314],[127,7,77,9.628397762173154],[127,7,78,9.756074340320982],[127,7,79,9.885305326166858],[127,8,64,9.448283380313143],[127,8,65,9.392551475490977],[127,8,66,9.358299578029063],[127,8,67,9.356105425324863],[127,8,68,9.369618890931854],[127,8,69,9.380017563704602],[127,8,70,9.387537244183948],[127,8,71,9.385459714213315],[127,8,72,9.368869236051871],[127,8,73,9.332917100510716],[127,8,74,9.302541500962834],[127,8,75,9.302569721820467],[127,8,76,9.346984479699588],[127,8,77,9.445826737179832],[127,8,78,9.572924261523633],[127,8,79,9.700187045410651],[127,9,64,9.245782432995396],[127,9,65,9.191167077498903],[127,9,66,9.156050521267995],[127,9,67,9.153731944497286],[127,9,68,9.16656331492157],[127,9,69,9.177612546436668],[127,9,70,9.183223470674942],[127,9,71,9.183141014028728],[127,9,72,9.166297673861003],[127,9,73,9.131357447146115],[127,9,74,9.103730858551064],[127,9,75,9.102630047138476],[127,9,76,9.147981718927706],[127,9,77,9.245809094510985],[127,9,78,9.372354494003861],[127,9,79,9.50162782466461],[127,10,64,9.055272857666104],[127,10,65,8.996755240884099],[127,10,66,8.96131042422336],[127,10,67,8.961328381490079],[127,10,68,8.97335762631924],[127,10,69,8.988030455192149],[127,10,70,8.991802726104458],[127,10,71,8.990592507415236],[127,10,72,8.97235098420652],[127,10,73,8.936307998326898],[127,10,74,8.908283156921199],[127,10,75,8.905995256301575],[127,10,76,8.952223636332915],[127,10,77,9.049540759179612],[127,10,78,9.177848551416067],[127,10,79,9.309959627690754],[127,11,64,8.861725029020434],[127,11,65,8.803104626716246],[127,11,66,8.766252088740899],[127,11,67,8.766778353023728],[127,11,68,8.782269203464873],[127,11,69,8.796822549219414],[127,11,70,8.801996221069734],[127,11,71,8.800327096860574],[127,11,72,8.778539775674675],[127,11,73,8.738741552599562],[127,11,74,8.709931426919521],[127,11,75,8.711687635972746],[127,11,76,8.758559542998961],[127,11,77,8.856969950310507],[127,11,78,8.983114563720578],[127,11,79,9.116636728190247],[127,12,64,8.671432575271819],[127,12,65,8.610758295236753],[127,12,66,8.57379314476268],[127,12,67,8.574518887420993],[127,12,68,8.592528722835812],[127,12,69,8.60448444290533],[127,12,70,8.611198074648348],[127,12,71,8.61129748602029],[127,12,72,8.584900312128225],[127,12,73,8.543339518897668],[127,12,74,8.51463499339845],[127,12,75,8.515854239219301],[127,12,76,8.564549242611637],[127,12,77,8.662736497520113],[127,12,78,8.790518972828387],[127,12,79,8.923069790486801],[127,13,64,8.488351720776722],[127,13,65,8.426524409258729],[127,13,66,8.392633419348465],[127,13,67,8.39132731857218],[127,13,68,8.408797458065452],[127,13,69,8.42279573255004],[127,13,70,8.426129020988098],[127,13,71,8.428530198599617],[127,13,72,8.405241177997247],[127,13,73,8.36368323194807],[127,13,74,8.33041138497905],[127,13,75,8.330909245706666],[127,13,76,8.380877727212386],[127,13,77,8.479996425198317],[127,13,78,8.608806421688644],[127,13,79,8.74221737407646],[127,14,64,8.293626129109816],[127,14,65,8.232111554095095],[127,14,66,8.199355831672339],[127,14,67,8.197489803367466],[127,14,68,8.212018588588682],[127,14,69,8.225974109659363],[127,14,70,8.233741372357507],[127,14,71,8.235221503051097],[127,14,72,8.211992731316933],[127,14,73,8.171771088171035],[127,14,74,8.133855912810064],[127,14,75,8.133118968951857],[127,14,76,8.18459446424544],[127,14,77,8.287788770924458],[127,14,78,8.417078375204385],[127,14,79,8.549446579681858],[127,15,64,8.09996783586658],[127,15,65,8.041752886276006],[127,15,66,8.008239142360011],[127,15,67,8.004714704474926],[127,15,68,8.018611582624926],[127,15,69,8.03125260598365],[127,15,70,8.038187667729455],[127,15,71,8.039564169263175],[127,15,72,8.018981657087181],[127,15,73,7.977356717424844],[127,15,74,7.937593921199186],[127,15,75,7.937506108635942],[127,15,76,7.988650735436662],[127,15,77,8.094454139856712],[127,15,78,8.222969894748399],[127,15,79,8.353990445321136],[127,16,64,7.912872718790902],[127,16,65,7.853783116823616],[127,16,66,7.82262512584718],[127,16,67,7.821876599061765],[127,16,68,7.837311499864766],[127,16,69,7.848509026656846],[127,16,70,7.857164156636551],[127,16,71,7.859321072197759],[127,16,72,7.839212046384633],[127,16,73,7.797538761506869],[127,16,74,7.7584189603259475],[127,16,75,7.758430154836491],[127,16,76,7.809292488465569],[127,16,77,7.914184788087232],[127,16,78,8.043988849533148],[127,16,79,8.174323860692393],[127,17,64,7.720290859221395],[127,17,65,7.660702554690727],[127,17,66,7.630969931663923],[127,17,67,7.626341183405239],[127,17,68,7.643776275060082],[127,17,69,7.655759026118222],[127,17,70,7.662749844633302],[127,17,71,7.663620426194404],[127,17,72,7.643563360302204],[127,17,73,7.603778534749239],[127,17,74,7.564275398123762],[127,17,75,7.561948569860951],[127,17,76,7.611913869735404],[127,17,77,7.718320974515685],[127,17,78,7.849284530647929],[127,17,79,7.978093452144264],[127,18,64,7.5244440807710165],[127,18,65,7.46616987760569],[127,18,66,7.434553385349974],[127,18,67,7.432794018286635],[127,18,68,7.448958523872028],[127,18,69,7.462481002456213],[127,18,70,7.46807178295322],[127,18,71,7.465526252396348],[127,18,72,7.4453990158017875],[127,18,73,7.407804815329944],[127,18,74,7.3706848024630975],[127,18,75,7.36317376579386],[127,18,76,7.413109047751297],[127,18,77,7.519586985460063],[127,18,78,7.653015973072914],[127,18,79,7.783240357947645],[127,19,64,7.3300483289147005],[127,19,65,7.27353907222483],[127,19,66,7.238799202369125],[127,19,67,7.238622571952025],[127,19,68,7.2530460506853975],[127,19,69,7.265585140227791],[127,19,70,7.270278067041539],[127,19,71,7.268142982675321],[127,19,72,7.247686296477994],[127,19,73,7.210594340896712],[127,19,74,7.174193134111302],[127,19,75,7.166350121219698],[127,19,76,7.215988311449534],[127,19,77,7.321687243054608],[127,19,78,7.452886538022117],[127,19,79,7.584187636330236],[127,20,64,7.134179521548479],[127,20,65,7.078837586826917],[127,20,66,7.040257247208012],[127,20,67,7.038847866339896],[127,20,68,7.055009789393794],[127,20,69,7.065710829051071],[127,20,70,7.071263004991283],[127,20,71,7.070313508274163],[127,20,72,7.046717078836138],[127,20,73,7.0074399522654796],[127,20,74,6.971915902275711],[127,20,75,6.9651732666289226],[127,20,76,7.018158911997197],[127,20,77,7.124023929068269],[127,20,78,7.252749995871282],[127,20,79,7.385359398272359],[127,21,64,6.934189560260578],[127,21,65,6.877215996069295],[127,21,66,6.8391797363833025],[127,21,67,6.835657202311195],[127,21,68,6.848168109475982],[127,21,69,6.857699507575212],[127,21,70,6.860093457229555],[127,21,71,6.855792555240721],[127,21,72,6.823540383526955],[127,21,73,6.780049381345392],[127,21,74,6.742283177609373],[127,21,75,6.741110269107889],[127,21,76,6.797468972067715],[127,21,77,6.902237436785207],[127,21,78,7.031534034790903],[127,21,79,7.165128774949074],[127,22,64,6.735639742996065],[127,22,65,6.677535693814931],[127,22,66,6.6423764959225275],[127,22,67,6.6390305484437535],[127,22,68,6.651237339011569],[127,22,69,6.663213877350654],[127,22,70,6.665528803524869],[127,22,71,6.660018566102572],[127,22,72,6.628959222627512],[127,22,73,6.57980627350834],[127,22,74,6.544566685204636],[127,22,75,6.5423816263861845],[127,22,76,6.598527331610485],[127,22,77,6.7064915035717885],[127,22,78,6.838161439633902],[127,22,79,6.971088870835233],[127,23,64,6.5377847110493725],[127,23,65,6.481501803376728],[127,23,66,6.444904290076359],[127,23,67,6.443311400075213],[127,23,68,6.4551471111409136],[127,23,69,6.4673972317506365],[127,23,70,6.472825434100224],[127,23,71,6.46480409552014],[127,23,72,6.431873972748419],[127,23,73,6.381962383062811],[127,23,74,6.344482751348257],[127,23,75,6.344614116820274],[127,23,76,6.4003619920262995],[127,23,77,6.510124811277957],[127,23,78,6.642940238144667],[127,23,79,6.776821499618307],[127,24,64,6.350085966944878],[127,24,65,6.291514662151947],[127,24,66,6.257144026620608],[127,24,67,6.2540217355476555],[127,24,68,6.2661854603957],[127,24,69,6.277644807799742],[127,24,70,6.282512423453817],[127,24,71,6.278426207039321],[127,24,72,6.243283594706741],[127,24,73,6.192683681339235],[127,24,74,6.15626230801023],[127,24,75,6.156076587241326],[127,24,76,6.212930899751573],[127,24,77,6.320445417781743],[127,24,78,6.454157883604363],[127,24,79,6.588971351304285],[127,25,64,6.155709889180129],[127,25,65,6.090213597079112],[127,25,66,6.05188761993643],[127,25,67,6.046534177153761],[127,25,68,6.058260358070149],[127,25,69,6.069766003959174],[127,25,70,6.07835023177197],[127,25,71,6.079777691039038],[127,25,72,6.0518954986154245],[127,25,73,6.007504865183542],[127,25,74,5.973924329537038],[127,25,75,5.97477399791901],[127,25,76,6.025576996042494],[127,25,77,6.132305424314641],[127,25,78,6.260495615570614],[127,25,79,6.390749663757016],[127,26,64,5.959251022580059],[127,26,65,5.8951853913321735],[127,26,66,5.858830430576151],[127,26,67,5.848585926327646],[127,26,68,5.8606494668397575],[127,26,69,5.873127148992349],[127,26,70,5.8817975904683175],[127,26,71,5.8824803459580295],[127,26,72,5.855867202993799],[127,26,73,5.8149660206991],[127,26,74,5.780454133733482],[127,26,75,5.780795821915756],[127,26,76,5.83086096052679],[127,26,77,5.935911670633121],[127,26,78,6.063109544145648],[127,26,79,6.19279209572743],[127,27,64,5.7633918290706],[127,27,65,5.703087532437911],[127,27,66,5.663445870963657],[127,27,67,5.654147902116288],[127,27,68,5.664214954522416],[127,27,69,5.677115908998677],[127,27,70,5.686182595973973],[127,27,71,5.685739034957578],[127,27,72,5.661752907689933],[127,27,73,5.619497917644183],[127,27,74,5.586952494815019],[127,27,75,5.585123662793693],[127,27,76,5.633381304086947],[127,27,77,5.740395330837419],[127,27,78,5.868035698171225],[127,27,79,5.994093892224865],[127,28,64,5.56517915125899],[127,28,65,5.502398056557125],[127,28,66,5.462763955276524],[127,28,67,5.451992038749621],[127,28,68,5.463408791211664],[127,28,69,5.476785372297249],[127,28,70,5.487961994744826],[127,28,71,5.4870915716804705],[127,28,72,5.459273482282195],[127,28,73,5.416625646636067],[127,28,74,5.383246080070047],[127,28,75,5.381611536946689],[127,28,76,5.433521532715743],[127,28,77,5.538793578728941],[127,28,78,5.668221869226821],[127,28,79,5.792761602565757],[127,29,64,5.370178734587485],[127,29,65,5.306602494147201],[127,29,66,5.269737455754379],[127,29,67,5.262542488576524],[127,29,68,5.27704251179183],[127,29,69,5.291031417421113],[127,29,70,5.302398261969098],[127,29,71,5.301646898635423],[127,29,72,5.2720455633350065],[127,29,73,5.227472558386051],[127,29,74,5.19283114303285],[127,29,75,5.193380459794159],[127,29,76,5.24741091857326],[127,29,77,5.350628154762148],[127,29,78,5.477997883726212],[127,29,79,5.602793959927189],[127,30,64,5.173515396966661],[127,30,65,5.109301098654106],[127,30,66,5.073530256482204],[127,30,67,5.067335031113276],[127,30,68,5.083367451401223],[127,30,69,5.097384924773955],[127,30,70,5.1071722577978695],[127,30,71,5.1063458423983725],[127,30,72,5.075875338747575],[127,30,73,5.029733775100246],[127,30,74,4.993586731647314],[127,30,75,4.995623583959339],[127,30,76,5.050649821285955],[127,30,77,5.154776955991899],[127,30,78,5.2836564119470415],[127,30,79,5.406069206698192],[127,31,64,4.977310919388188],[127,31,65,4.913532111025677],[127,31,66,4.880467475682922],[127,31,67,4.8741288399416876],[127,31,68,4.888701143687819],[127,31,69,4.90285863091995],[127,31,70,4.913176176450624],[127,31,71,4.91261017364226],[127,31,72,4.879708279722118],[127,31,73,4.83104132939609],[127,31,74,4.7947628371136775],[127,31,75,4.797703194286817],[127,31,76,4.85312019026181],[127,31,77,4.957807340796958],[127,31,78,5.084801504253967],[127,31,79,5.208637636101416],[127,32,64,4.792822397375347],[127,32,65,4.728296771038772],[127,32,66,4.696155208523059],[127,32,67,4.69321842422942],[127,32,68,4.705870562153798],[127,32,69,4.7173502930821],[127,32,70,4.729022169219457],[127,32,71,4.7281133840777825],[127,32,72,4.695826595079451],[127,32,73,4.647112055476564],[127,32,74,4.610225148197109],[127,32,75,4.610718108374615],[127,32,76,4.667759918408563],[127,32,77,4.771952470422986],[127,32,78,4.897767038378712],[127,32,79,5.020400871894191],[127,33,64,4.604927544873834],[127,33,65,4.540392931859701],[127,33,66,4.511598941144983],[127,33,67,4.5101146603102915],[127,33,68,4.524497329831234],[127,33,69,4.5320312504375995],[127,33,70,4.538312054630234],[127,33,71,4.532692614730339],[127,33,72,4.496538562783426],[127,33,73,4.444433981575138],[127,33,74,4.404764022721792],[127,33,75,4.404840926309585],[127,33,76,4.460547616953483],[127,33,77,4.566630344974965],[127,33,78,4.69261675224629],[127,33,79,4.8174926708661925],[127,34,64,4.407335746648849],[127,34,65,4.342956222395176],[127,34,66,4.316559887783894],[127,34,67,4.315706482230787],[127,34,68,4.330505504277798],[127,34,69,4.338758118901782],[127,34,70,4.341978439654062],[127,34,71,4.335218899652769],[127,34,72,4.300454190954142],[127,34,73,4.24665085632932],[127,34,74,4.209784028627224],[127,34,75,4.209893448153183],[127,34,76,4.262915036340858],[127,34,77,4.369090982481423],[127,34,78,4.494257323298899],[127,34,79,4.621823250201037],[127,35,64,4.2111790510196725],[127,35,65,4.148927718396718],[127,35,66,4.119538833585096],[127,35,67,4.11954328192706],[127,35,68,4.135530400952723],[127,35,69,4.1448795801613025],[127,35,70,4.148025319772875],[127,35,71,4.140462656887748],[127,35,72,4.107655865131422],[127,35,73,4.053257668069467],[127,35,74,4.015174626436963],[127,35,75,4.017181959256282],[127,35,76,4.067446303131346],[127,35,77,4.171124968063763],[127,35,78,4.297388700550088],[127,35,79,4.427789628283901],[127,36,64,4.006937622057924],[127,36,65,3.946138757156562],[127,36,66,3.9144984589945473],[127,36,67,3.9162854161444765],[127,36,68,3.929670099052417],[127,36,69,3.9416384596226437],[127,36,70,3.9454666722024703],[127,36,71,3.940093984640948],[127,36,72,3.90666327475458],[127,36,73,3.8530916294869217],[127,36,74,3.813167028740056],[127,36,75,3.8140467548669865],[127,36,76,3.8642811763323346],[127,36,77,3.9672150619829165],[127,36,78,4.095449102049276],[127,36,79,4.223926286434778],[127,37,64,3.8055758155719297],[127,37,65,3.7458710144581415],[127,37,66,3.712706218127468],[127,37,67,3.717090452526465],[127,37,68,3.7304139888058376],[127,37,69,3.7426927766352445],[127,37,70,3.7521042293502656],[127,37,71,3.75106333733817],[127,37,72,3.722236101619025],[127,37,73,3.675878487584706],[127,37,74,3.636413033175117],[127,37,75,3.6359487682351563],[127,37,76,3.683871732366937],[127,37,77,3.7872890485588315],[127,37,78,3.9152982346010234],[127,37,79,4.038546370646051],[127,38,64,3.605246684621534],[127,38,65,3.5453526252076104],[127,38,66,3.518111887075775],[127,38,67,3.5197938260123482],[127,38,68,3.5352396539968636],[127,38,69,3.549842094691361],[127,38,70,3.5592996672711976],[127,38,71,3.554310577242538],[127,38,72,3.523744218771927],[127,38,73,3.478643441601888],[127,38,74,3.442435088519434],[127,38,75,3.443509342360547],[127,38,76,3.490246061917604],[127,38,77,3.5915805473619202],[127,38,78,3.719033770923761],[127,38,79,3.842182490085325],[127,39,64,3.4041184623357625],[127,39,65,3.3462253081813222],[127,39,66,3.3188232894791585],[127,39,67,3.3213223369803972],[127,39,68,3.340065833026265],[127,39,69,3.3541758979658303],[127,39,70,3.363631428476113],[127,39,71,3.357312241891347],[127,39,72,3.327007607574782],[127,39,73,3.2830790047004643],[127,39,74,3.248729948673699],[127,39,75,3.2493157977157483],[127,39,76,3.297723935694794],[127,39,77,3.395085164622621],[127,39,78,3.5222243618640605],[127,39,79,3.647813068729703],[127,40,64,3.218502552627907],[127,40,65,3.1606976113424885],[127,40,66,3.1322954935962573],[127,40,67,3.1352943889987355],[127,40,68,3.154266672740373],[127,40,69,3.168092338828839],[127,40,70,3.1760847760074933],[127,40,71,3.1722250122235076],[127,40,72,3.1451298347974395],[127,40,73,3.0994850081339873],[127,40,74,3.065975838495191],[127,40,75,3.064414115193355],[127,40,76,3.1131689800835782],[127,40,77,3.2117656350906256],[127,40,78,3.338662455612167],[127,40,79,3.4652144246483334],[127,41,64,3.0227564653983254],[127,41,65,2.963497143687734],[127,41,66,2.936179836167213],[127,41,67,2.9414622613298778],[127,41,68,2.9595767826086874],[127,41,69,2.972244873058925],[127,41,70,2.978647983251611],[127,41,71,2.97687616651629],[127,41,72,2.9500675594236685],[127,41,73,2.9054348569000386],[127,41,74,2.8685863881266984],[127,41,75,2.8670236033659027],[127,41,76,2.9170810370069398],[127,41,77,3.017143840077268],[127,41,78,3.1438954470482874],[127,41,79,3.2709866732391784],[127,42,64,2.8266170271417215],[127,42,65,2.766762656873944],[127,42,66,2.74110698728856],[127,42,67,2.7465068397258765],[127,42,68,2.7655788338804457],[127,42,69,2.7772646938805807],[127,42,70,2.7825852500294754],[127,42,71,2.7824510613562294],[127,42,72,2.755432475416523],[127,42,73,2.7098722633346752],[127,42,74,2.67302552675628],[127,42,75,2.670997066320094],[127,42,76,2.7212698270086992],[127,42,77,2.8200867350615924],[127,42,78,2.946834097555015],[127,42,79,3.0759297226168987],[127,43,64,2.6326130999753268],[127,43,65,2.5712577855682],[127,43,66,2.544986902566471],[127,43,67,2.5522800166809265],[127,43,68,2.5690167773500385],[127,43,69,2.580434115980575],[127,43,70,2.585903061270553],[127,43,71,2.586027151988787],[127,43,72,2.5604783438667233],[127,43,73,2.514679587220626],[127,43,74,2.4770481882744337],[127,43,75,2.47340769163221],[127,43,76,2.5255970144799775],[127,43,77,2.624221398970674],[127,43,78,2.7508974477654147],[127,43,79,2.8804654623250014],[127,44,64,2.4325527207230158],[127,44,65,2.3676855571046014],[127,44,66,2.3416094360129285],[127,44,67,2.3476033350187926],[127,44,68,2.362536456604518],[127,44,69,2.3739970201058176],[127,44,70,2.383285486153215],[127,44,71,2.3801540804755144],[127,44,72,2.3555594549815497],[127,44,73,2.3079532765935107],[127,44,74,2.2673954028436696],[127,44,75,2.2631095979917335],[127,44,76,2.315547236481112],[127,44,77,2.4171652399440324],[127,44,78,2.543323649786061],[127,44,79,2.673572416226381],[127,45,64,2.2109475955900066],[127,45,65,2.1477678674088088],[127,45,66,2.122812164133308],[127,45,67,2.127216458199074],[127,45,68,2.142271867658507],[127,45,69,2.1562894740947995],[127,45,70,2.16666507946022],[127,45,71,2.1689488654411524],[127,45,72,2.146435408736878],[127,45,73,2.100783777947483],[127,45,74,2.060071717259947],[127,45,75,2.0561768993515788],[127,45,76,2.1124558389406913],[127,45,77,2.2193569051229045],[127,45,78,2.3519612319382555],[127,45,79,2.48618602946072],[127,46,64,2.0123065013597334],[127,46,65,1.9518674579711948],[127,46,66,1.9265776058046074],[127,46,67,1.9299171234288721],[127,46,68,1.9466096258838497],[127,46,69,1.960272949909728],[127,46,70,1.9705315678317215],[127,46,71,1.9754865345581758],[127,46,72,1.9510964497361536],[127,46,73,1.9039979571301175],[127,46,74,1.8630884026203078],[127,46,75,1.860120881261135],[127,46,76,1.9144402738322792],[127,46,77,2.0224097703587143],[127,46,78,2.157435040195232],[127,46,79,2.2926869884247654],[127,47,64,1.8161295975962335],[127,47,65,1.7547708802522377],[127,47,66,1.731448728836432],[127,47,67,1.7371950864501355],[127,47,68,1.7530902026937445],[127,47,69,1.768271941522079],[127,47,70,1.7766724203450583],[127,47,71,1.7827950762194278],[127,47,72,1.7558631360222339],[127,47,73,1.7070501249804362],[127,47,74,1.6651543435980687],[127,47,75,1.6637500772104408],[127,47,76,1.7173249862580364],[127,47,77,1.8262988244782328],[127,47,78,1.9630215863078082],[127,47,79,2.0988456430181923],[127,48,64,1.635480802730222],[127,48,65,1.5732727486445597],[127,48,66,1.549452854936621],[127,48,67,1.5564494322571427],[127,48,68,1.5716667787736853],[127,48,69,1.5872953529050178],[127,48,70,1.5970721597296837],[127,48,71,1.602060480303549],[127,48,72,1.5699679308590404],[127,48,73,1.5214399170009807],[127,48,74,1.481344685070882],[127,48,75,1.4792482512534901],[127,48,76,1.53277314690327],[127,48,77,1.6390167647389535],[127,48,78,1.7763921637879794],[127,48,79,1.916996677839251],[127,49,64,1.4525529313685512],[127,49,65,1.3917144731516038],[127,49,66,1.3645576518945508],[127,49,67,1.3740349163432293],[127,49,68,1.3888953272923092],[127,49,69,1.4035859460204776],[127,49,70,1.4106244948077915],[127,49,71,1.4075300693390829],[127,49,72,1.3708632748898737],[127,49,73,1.317746484362047],[127,49,74,1.273114079362993],[127,49,75,1.2717195760772182],[127,49,76,1.3254849609572328],[127,49,77,1.4315411351831242],[127,49,78,1.567704017879502],[127,49,79,1.7107648169944223],[127,50,64,1.260283671105472],[127,50,65,1.1997149687218251],[127,50,66,1.17335824833317],[127,50,67,1.1818879001682854],[127,50,68,1.1983763239878726],[127,50,69,1.2101890655108507],[127,50,70,1.2163526091886374],[127,50,71,1.2114536982722273],[127,50,72,1.1745182236154996],[127,50,73,1.1208952438486495],[127,50,74,1.0789573391078977],[127,50,75,1.0758788230964633],[127,50,76,1.127013104722546],[127,50,77,1.2358575911354095],[127,50,78,1.3714519804914602],[127,50,79,1.5130245170465335],[127,51,64,1.0705045049426458],[127,51,65,1.0078167839080467],[127,51,66,0.9844284922616522],[127,51,67,0.9909444387355589],[127,51,68,1.0056969967263387],[127,51,69,1.0180333615782153],[127,51,70,1.0233083166917176],[127,51,71,1.0162218655284685],[127,51,72,0.9781449736320258],[127,51,73,0.9240530186795294],[127,51,74,0.8821128823080929],[127,51,75,0.879873194139617],[127,51,76,0.9309216844692966],[127,51,77,1.039939760892013],[127,51,78,1.174885230167403],[127,51,79,1.3146429637154304],[127,52,64,0.9301718920778347],[127,52,65,0.8680030580196154],[127,52,66,0.8416095225523823],[127,52,67,0.8466331681135051],[127,52,68,0.862228585976428],[127,52,69,0.8752791294964932],[127,52,70,0.8828388422276539],[127,52,71,0.8756170764446304],[127,52,72,0.8361491860590867],[127,52,73,0.7776476281571784],[127,52,74,0.7375702136848528],[127,52,75,0.7370489686532227],[127,52,76,0.786695344338557],[127,52,77,0.8933259213380862],[127,52,78,1.0302655585563454],[127,52,79,1.1678843077542502],[127,53,64,0.7458512198024609],[127,53,65,0.6817225221196643],[127,53,66,0.6554033306957973],[127,53,67,0.6576287826731455],[127,53,68,0.6747741419046903],[127,53,69,0.6893333032539849],[127,53,70,0.6993380563635037],[127,53,71,0.6927140617647194],[127,53,72,0.6509906765249088],[127,53,73,0.588771041707337],[127,53,74,0.5480483113379844],[127,53,75,0.5455007678497469],[127,53,76,0.5931737767810283],[127,53,77,0.7036174086311936],[127,53,78,0.8369588357561001],[127,53,79,0.974354875565443],[127,54,64,0.5528139332568494],[127,54,65,0.4858864256064388],[127,54,66,0.458008854629805],[127,54,67,0.4605034243038747],[127,54,68,0.4765573623125849],[127,54,69,0.4930733663390848],[127,54,70,0.5058890722320911],[127,54,71,0.4999354719794976],[127,54,72,0.4568228847038279],[127,54,73,0.3951852062290998],[127,54,74,0.35326875121687284],[127,54,75,0.34678871894142266],[127,54,76,0.39800417755146666],[127,54,77,0.5082630745223828],[127,54,78,0.6432248458908326],[127,54,79,0.7801199717668479],[127,55,64,0.3571030896027424],[127,55,65,0.2899696716632457],[127,55,66,0.2608151032596824],[127,55,67,0.26296305846378454],[127,55,68,0.2821478287227646],[127,55,69,0.2999204049639099],[127,55,70,0.31127176332149886],[127,55,71,0.3040751486458481],[127,55,72,0.2614853113467413],[127,55,73,0.20093769268266481],[127,55,74,0.1582908737186868],[127,55,75,0.15157986597097062],[127,55,76,0.2035603197653804],[127,55,77,0.31359007553411733],[127,55,78,0.44859833698043144],[127,55,79,0.5853790967474357],[127,56,64,0.17624219378746034],[127,56,65,0.10774427702689077],[127,56,66,0.07615417621233869],[127,56,67,0.07920525849844268],[127,56,68,0.10323327690265532],[127,56,69,0.11932063877789079],[127,56,70,0.12983340798304957],[127,56,71,0.12035177598586375],[127,56,72,0.08136888251154431],[127,56,73,0.02003597158278486],[127,56,74,-0.005183073554805018],[127,56,75,-0.0048720631663279335],[127,56,76,0.02192385020537657],[127,56,77,0.12923158729829012],[127,56,78,0.2664953241926554],[127,56,79,0.4035047281424319],[127,57,64,-0.005272563269306557],[127,57,65,-0.030755245006909543],[127,57,66,-0.048822610169498376],[127,57,67,-0.0506644016737956],[127,57,68,-0.039143672690292036],[127,57,69,-0.0316080271840235],[127,57,70,-0.027963248914243344],[127,57,71,-0.03167836219199416],[127,57,72,-0.03740132458730186],[127,57,73,-0.05143882188003171],[127,57,74,-0.060440156438171994],[127,57,75,-0.05996067085103557],[127,57,76,-0.04302925342094879],[127,57,77,-0.016252509063050397],[127,57,78,0.06467999596216387],[127,57,79,0.20312476689291797],[127,58,64,-0.007496297294615997],[127,58,65,-0.0339163077965033],[127,58,66,-0.05219433888140999],[127,58,67,-0.052890402881388784],[127,58,68,-0.044507081263835055],[127,58,69,-0.03529746443320958],[127,58,70,-0.034966334995679804],[127,58,71,-0.03738535486289715],[127,58,72,-0.04710679338087359],[127,58,73,-0.05981879512645405],[127,58,74,-0.0696596010189249],[127,58,75,-0.06971090780002856],[127,58,76,-0.0545034174016093],[127,58,77,-0.025820396366907306],[127,58,78,0.010477783007725977],[127,58,79,0.046877574803650846],[127,59,64,-0.05743851191637295],[127,59,65,-0.08248985837572574],[127,59,66,-0.0991451674683904],[127,59,67,-0.10079328733054012],[127,59,68,-0.09421055096119543],[127,59,69,-0.08496488503173194],[127,59,70,-0.0851513458243921],[127,59,71,-0.0854805138490354],[127,59,72,-0.09377731474595005],[127,59,73,-0.10696099059014777],[127,59,74,-0.11978271028680432],[127,59,75,-0.11821346934032823],[127,59,76,-0.10334725686775362],[127,59,77,-0.07468404146509056],[127,59,78,-0.03757188781820228],[127,59,79,-0.0015181184855919405],[127,60,64,-0.11646828009877903],[127,60,65,-0.14038204475693977],[127,60,66,-0.15811787056765347],[127,60,67,-0.15994002887562875],[127,60,68,-0.15447320013455812],[127,60,69,-0.14538823683605656],[127,60,70,-0.1410058157214861],[127,60,71,-0.142072423403474],[127,60,72,-0.15155691646011005],[127,60,73,-0.16504324172878326],[127,60,74,-0.1785876066135769],[127,60,75,-0.17631342414461454],[127,60,76,-0.16172508919722886],[127,60,77,-0.13349129106904986],[127,60,78,-0.09533213654709552],[127,60,79,-0.06088888370060333],[127,61,64,-0.16680167375673363],[127,61,65,-0.1849134951226721],[127,61,66,-0.19422794686293055],[127,61,67,-0.1938563175665208],[127,61,68,-0.18757962552144997],[127,61,69,-0.18033827274813363],[127,61,70,-0.1716626494821251],[127,61,71,-0.16991180712222492],[127,61,72,-0.18018374881444524],[127,61,73,-0.19442867078432935],[127,61,74,-0.20701407449947848],[127,61,75,-0.20611008259439215],[127,61,76,-0.1930411664740332],[127,61,77,-0.1646553010418418],[127,61,78,-0.12725810259567336],[127,61,79,-0.09424217967720874],[127,62,64,-0.21517451240645175],[127,62,65,-0.23388248826214367],[127,62,66,-0.2416128093319803],[127,62,67,-0.24161735699190423],[127,62,68,-0.23627584862478623],[127,62,69,-0.23080914866980254],[127,62,70,-0.22259909885180584],[127,62,71,-0.21986182060956747],[127,62,72,-0.2286270094594706],[127,62,73,-0.24142216415390402],[127,62,74,-0.25161328662589527],[127,62,75,-0.2534598253569254],[127,62,76,-0.24218186802082245],[127,62,77,-0.2123934160287527],[127,62,78,-0.17502677805170977],[127,62,79,-0.14085696046586996],[127,63,64,-0.3315194567632521],[127,63,65,-0.35032602776874233],[127,63,66,-0.35757334929014095],[127,63,67,-0.35709368408829417],[127,63,68,-0.34970503828063415],[127,63,69,-0.34522221739582626],[127,63,70,-0.33644031247645023],[127,63,71,-0.33177637374769625],[127,63,72,-0.3372031022769341],[127,63,73,-0.34754970493418436],[127,63,74,-0.35820882443182445],[127,63,75,-0.35930139319211496],[127,63,76,-0.34544768526842096],[127,63,77,-0.3132942258248446],[127,63,78,-0.27313393886572135],[127,63,79,-0.240791791445438],[127,64,64,-0.3728830225313344],[127,64,65,-0.3912489546691483],[127,64,66,-0.4005533776487668],[127,64,67,-0.3955430486039774],[127,64,68,-0.3903559950706531],[127,64,69,-0.38432622090192003],[127,64,70,-0.37688359441663344],[127,64,71,-0.3719101281626931],[127,64,72,-0.37721274245930797],[127,64,73,-0.3908084345435392],[127,64,74,-0.4012652042651408],[127,64,75,-0.4017350344402749],[127,64,76,-0.3845829887404516],[127,64,77,-0.351312065085914],[127,64,78,-0.31277565347952563],[127,64,79,-0.27936425195980097],[127,65,64,-0.42408672916528956],[127,65,65,-0.4452402873863355],[127,65,66,-0.45239290374487207],[127,65,67,-0.4452167162137965],[127,65,68,-0.44021352227521304],[127,65,69,-0.4365623286860778],[127,65,70,-0.4298766523135553],[127,65,71,-0.42372181852470947],[127,65,72,-0.4310828280002289],[127,65,73,-0.4455199746605391],[127,65,74,-0.4538928377708436],[127,65,75,-0.4552103142672554],[127,65,76,-0.434987025535522],[127,65,77,-0.4029695655329232],[127,65,78,-0.3622042765658794],[127,65,79,-0.33023741454338296],[127,66,64,-0.48450935870866435],[127,66,65,-0.5021822709238226],[127,66,66,-0.509532175798476],[127,66,67,-0.5042127728156376],[127,66,68,-0.49562765969755607],[127,66,69,-0.49376597751266743],[127,66,70,-0.4900347301842988],[127,66,71,-0.48516825181317946],[127,66,72,-0.4926473355220897],[127,66,73,-0.5047149955176604],[127,66,74,-0.5119639257901564],[127,66,75,-0.5123114451519647],[127,66,76,-0.49269683096428457],[127,66,77,-0.46205812751841135],[127,66,78,-0.4214463814601269],[127,66,79,-0.3878683720196622],[127,67,64,-0.5369236770997652],[127,67,65,-0.5542596629009855],[127,67,66,-0.5580612463181425],[127,67,67,-0.5541015037312291],[127,67,68,-0.5483230362397871],[127,67,69,-0.5438698553930567],[127,67,70,-0.5399799987922463],[127,67,71,-0.5378567879522727],[127,67,72,-0.5462448240194102],[127,67,73,-0.5563892749667148],[127,67,74,-0.5631190168667792],[127,67,75,-0.5624635448528768],[127,67,76,-0.5467560641544511],[127,67,77,-0.5137967666784788],[127,67,78,-0.4754258769354813],[127,67,79,-0.4411874783115346],[127,68,64,-0.6789352865742709],[127,68,65,-0.6982063385922928],[127,68,66,-0.7008371071307915],[127,68,67,-0.6997106992886662],[127,68,68,-0.6931406874196191],[127,68,69,-0.6867565790198662],[127,68,70,-0.6855507400781888],[127,68,71,-0.6837970742461856],[127,68,72,-0.6913472769155049],[127,68,73,-0.7023116757254564],[127,68,74,-0.7081296549252719],[127,68,75,-0.7075847043423616],[127,68,76,-0.690044167002766],[127,68,77,-0.6574120275223554],[127,68,78,-0.621520965212581],[127,68,79,-0.5865756576807905],[127,69,64,-0.7236914683342719],[127,69,65,-0.7519064452858979],[127,69,66,-0.7657035756627302],[127,69,67,-0.771009020252832],[127,69,68,-0.7689093348753606],[127,69,69,-0.7608740594746869],[127,69,70,-0.7596080996594347],[127,69,71,-0.7589394956996123],[127,69,72,-0.7712947362405692],[127,69,73,-0.7803979160799746],[127,69,74,-0.7862927556358377],[127,69,75,-0.7843030032227232],[127,69,76,-0.7658687702523013],[127,69,77,-0.7330045452255878],[127,69,78,-0.694264134536288],[127,69,79,-0.6588739238293402],[127,70,64,-0.7734441998798515],[127,70,65,-0.8002687650330733],[127,70,66,-0.8165327442651515],[127,70,67,-0.822263498869613],[127,70,68,-0.8208298270731524],[127,70,69,-0.8120043123077969],[127,70,70,-0.8114427039627261],[127,70,71,-0.8130610245783348],[127,70,72,-0.8250519982509181],[127,70,73,-0.833023361451678],[127,70,74,-0.8397218675814747],[127,70,75,-0.8345453228176749],[127,70,76,-0.8179942514471278],[127,70,77,-0.7839604943460257],[127,70,78,-0.7442581639865214],[127,70,79,-0.7117829941229156],[127,71,64,-0.8125725610390826],[127,71,65,-0.8385775456950275],[127,71,66,-0.8561248548899221],[127,71,67,-0.8634123011353974],[127,71,68,-0.8621419213909955],[127,71,69,-0.856219756531149],[127,71,70,-0.8557824941130214],[127,71,71,-0.8569175877785558],[127,71,72,-0.8687623771691698],[127,71,73,-0.8765446948396158],[127,71,74,-0.88424303783905],[127,71,75,-0.8787824795484327],[127,71,76,-0.8621551711443143],[127,71,77,-0.8291083501131691],[127,71,78,-0.7880986693483599],[127,71,79,-0.7545216423356972],[127,72,64,-0.8620807832856456],[127,72,65,-0.887466036759012],[127,72,66,-0.9054410428539625],[127,72,67,-0.9121177517356392],[127,72,68,-0.9141750807457993],[127,72,69,-0.9101458827521596],[127,72,70,-0.9073437809892253],[127,72,71,-0.9074694182167657],[127,72,72,-0.9199844619481152],[127,72,73,-0.9275186216062499],[127,72,74,-0.9362306558286622],[127,72,75,-0.9318355038454221],[127,72,76,-0.9130166775618549],[127,72,77,-0.8793280148855642],[127,72,78,-0.8391788544975509],[127,72,79,-0.8040405025445383],[127,73,64,-0.9193784175432522],[127,73,65,-0.9402999464230051],[127,73,66,-0.9517976895026553],[127,73,67,-0.9538146555364089],[127,73,68,-0.9543312127972137],[127,73,69,-0.9488301802373281],[127,73,70,-0.9455588939685006],[127,73,71,-0.9457433152581256],[127,73,72,-0.9588994608161652],[127,73,73,-0.9670193663958568],[127,73,74,-0.975842075594471],[127,73,75,-0.9737367586892149],[127,73,76,-0.9558925705306281],[127,73,77,-0.9257485333783876],[127,73,78,-0.8885873079958593],[127,73,79,-0.8535563014458093],[127,74,64,-0.9765447568569702],[127,74,65,-0.9975248129889857],[127,74,66,-1.0079889367226547],[127,74,67,-1.0089211297518144],[127,74,68,-1.0079870371931205],[127,74,69,-1.0010129591157595],[127,74,70,-0.9990682872777494],[127,74,71,-1.0016171977100412],[127,74,72,-1.013914289978408],[127,74,73,-1.0231061708348088],[127,74,74,-1.032359140147958],[127,74,75,-1.0297048191497375],[127,74,76,-1.0128612187240527],[127,74,77,-0.9832480414565151],[127,74,78,-0.9462363643011764],[127,74,79,-0.9094593105986153],[127,75,64,-1.0272605888304658],[127,75,65,-1.0468495498849377],[127,75,66,-1.0553092652374771],[127,75,67,-1.0543934268988038],[127,75,68,-1.0526163946880893],[127,75,69,-1.0492473164681706],[127,75,70,-1.0452109678829231],[127,75,71,-1.0516962026967915],[127,75,72,-1.063122509739562],[127,75,73,-1.073640401446671],[127,75,74,-1.082867750509722],[127,75,75,-1.0790582690659893],[127,75,76,-1.065591355782666],[127,75,77,-1.0366220024231785],[127,75,78,-0.9982472903963707],[127,75,79,-0.9624768007943301],[127,76,64,-1.074899747802886],[127,76,65,-1.0921114395037674],[127,76,66,-1.1005694986172494],[127,76,67,-1.0982802648561187],[127,76,68,-1.096963387341314],[127,76,69,-1.0959997699188118],[127,76,70,-1.0908684805686373],[127,76,71,-1.0967620117191152],[127,76,72,-1.1109816712291356],[127,76,73,-1.1248369832402827],[127,76,74,-1.1329485325212392],[127,76,75,-1.1307965901229573],[127,76,76,-1.1159277676050554],[127,76,77,-1.0879887878499863],[127,76,78,-1.0537249152947945],[127,76,79,-1.017282632477074],[127,77,64,-1.1213587574959778],[127,77,65,-1.1380497151428648],[127,77,66,-1.1425546993839935],[127,77,67,-1.139905649158946],[127,77,68,-1.1384693628427809],[127,77,69,-1.1369321297259265],[127,77,70,-1.1307915736731884],[127,77,71,-1.136248270605286],[127,77,72,-1.148904602309426],[127,77,73,-1.1660167363671952],[127,77,74,-1.1761605660592873],[127,77,75,-1.1733499035502017],[127,77,76,-1.1587661722675366],[127,77,77,-1.1306555562824523],[127,77,78,-1.0991405573280648],[127,77,79,-1.063599069885776],[127,78,64,-1.1691462430334423],[127,78,65,-1.1857593738232106],[127,78,66,-1.1894494115434548],[127,78,67,-1.1880281781427353],[127,78,68,-1.1847391999441046],[127,78,69,-1.1847724971533502],[127,78,70,-1.180037259298826],[127,78,71,-1.1814947410692185],[127,78,72,-1.1967832036628152],[127,78,73,-1.2176483024949767],[127,78,74,-1.229758176638667],[127,78,75,-1.2244150935299187],[127,78,76,-1.2102597404376483],[127,78,77,-1.1837305982666584],[127,78,78,-1.151762740461266],[127,78,79,-1.1204756183974731],[127,79,64,-1.206031734097834],[127,79,65,-1.2231288246861305],[127,79,66,-1.2264210574865644],[127,79,67,-1.227177296142233],[127,79,68,-1.223651348380829],[127,79,69,-1.221731922223324],[127,79,70,-1.2213907084576867],[127,79,71,-1.2219902886229452],[127,79,72,-1.2355016994885701],[127,79,73,-1.2617738805975436],[127,79,74,-1.275098224513182],[127,79,75,-1.2704774225413131],[127,79,76,-1.2583513509864472],[127,79,77,-1.2312542667095188],[127,79,78,-1.1999744151521035],[127,79,79,-1.165578807400689],[127,80,64,-1.2537082081718933],[127,80,65,-1.271490554011774],[127,80,66,-1.2746756074746537],[127,80,67,-1.2760446185376892],[127,80,68,-1.2739016640066967],[127,80,69,-1.272408099709115],[127,80,70,-1.2728554908803573],[127,80,71,-1.271878898802622],[127,80,72,-1.2850869746421743],[127,80,73,-1.3130275954851593],[127,80,74,-1.3289991906433216],[127,80,75,-1.3263494906144202],[127,80,76,-1.3143538254429106],[127,80,77,-1.2865442865376515],[127,80,78,-1.2529228450128953],[127,80,79,-1.2165816748357148],[127,81,64,-1.3062245340697591],[127,81,65,-1.318875681790775],[127,81,66,-1.3221989788154915],[127,81,67,-1.3183465325525328],[127,81,68,-1.3181326702231615],[127,81,69,-1.3188696111361868],[127,81,70,-1.3187465559081395],[127,81,71,-1.3191247619693895],[127,81,72,-1.3348422111509488],[127,81,73,-1.3635054546151828],[127,81,74,-1.3795889515335744],[127,81,75,-1.382302549402604],[127,81,76,-1.3698333748173244],[127,81,77,-1.3461328077427046],[127,81,78,-1.3118151856092426],[127,81,79,-1.2732646027432424],[127,82,64,-1.3587579494274937],[127,82,65,-1.3735191130777253],[127,82,66,-1.377542966690373],[127,82,67,-1.3743068097554505],[127,82,68,-1.3737550319916612],[127,82,69,-1.3763664794171748],[127,82,70,-1.3747310300137525],[127,82,71,-1.3770065168987236],[127,82,72,-1.389211605107514],[127,82,73,-1.4169859613137958],[127,82,74,-1.4354010474430106],[127,82,75,-1.439885733240935],[127,82,76,-1.4262760742513014],[127,82,77,-1.4065894381572535],[127,82,78,-1.3711494664629114],[127,82,79,-1.3277549508853275],[127,83,64,-1.4047051952735738],[127,83,65,-1.4199635960888006],[127,83,66,-1.4273860354509673],[127,83,67,-1.4250377348693695],[127,83,68,-1.4242315191810824],[127,83,69,-1.4249581984899906],[127,83,70,-1.422611904906086],[127,83,71,-1.428473914641524],[127,83,72,-1.4410098443022392],[127,83,73,-1.4692045384933505],[127,83,74,-1.4870877744121114],[127,83,75,-1.493437208342807],[127,83,76,-1.479565214310617],[127,83,77,-1.458258308912558],[127,83,78,-1.4239639697282245],[127,83,79,-1.379732541775419],[127,84,64,-1.4435457900718915],[127,84,65,-1.4622807158986257],[127,84,66,-1.4744887646655538],[127,84,67,-1.4737800673927],[127,84,68,-1.4737153974464596],[127,84,69,-1.4743950046427556],[127,84,70,-1.4710775716155124],[127,84,71,-1.4783966226438519],[127,84,72,-1.4941122114888472],[127,84,73,-1.519456928618482],[127,84,74,-1.5374664801948823],[127,84,75,-1.5445427189468406],[127,84,76,-1.532941900059481],[127,84,77,-1.5089586903578438],[127,84,78,-1.4746974694630395],[127,84,79,-1.431334812470732],[127,85,64,-1.4771522472921044],[127,85,65,-1.5035717987103845],[127,85,66,-1.5219024158795076],[127,85,67,-1.5246083640406756],[127,85,68,-1.5257866280945378],[127,85,69,-1.5268070612129343],[127,85,70,-1.5219521188194898],[127,85,71,-1.5257174482430527],[127,85,72,-1.5393653504726657],[127,85,73,-1.561735676082168],[127,85,74,-1.5799753120688702],[127,85,75,-1.5844915578400647],[127,85,76,-1.5726617639972407],[127,85,77,-1.5457096620999144],[127,85,78,-1.5084711314294426],[127,85,79,-1.4653535358694967],[127,86,64,-1.526385422693224],[127,86,65,-1.554913507916526],[127,86,66,-1.5713438960236108],[127,86,67,-1.573640652601139],[127,86,68,-1.5748317604416706],[127,86,69,-1.5777619433116712],[127,86,70,-1.5734150656314467],[127,86,71,-1.5735889068591762],[127,86,72,-1.5886256280456488],[127,86,73,-1.6115481667438798],[127,86,74,-1.6296927160816634],[127,86,75,-1.6334284507573302],[127,86,76,-1.6218637491954067],[127,86,77,-1.595824875639766],[127,86,78,-1.5577197416230897],[127,86,79,-1.5148943995704207],[127,87,64,-1.5684997191203178],[127,87,65,-1.5971758535053826],[127,87,66,-1.6125001303788744],[127,87,67,-1.6118358295470048],[127,87,68,-1.6133451459592207],[127,87,69,-1.6190621636434595],[127,87,70,-1.6168121354519818],[127,87,71,-1.618551490260856],[127,87,72,-1.6340158703411762],[127,87,73,-1.6549682654957762],[127,87,74,-1.6754004338690196],[127,87,75,-1.678254689543246],[127,87,76,-1.6666541648887665],[127,87,77,-1.6421318284567556],[127,87,78,-1.6039619638643774],[127,87,79,-1.559056779572208],[127,88,64,-1.616271729067937],[127,88,65,-1.6461302341602395],[127,88,66,-1.661442947331466],[127,88,67,-1.6620502124014391],[127,88,68,-1.6639460007873668],[127,88,69,-1.6668580502491388],[127,88,70,-1.6680960786051935],[127,88,71,-1.6703657548371482],[127,88,72,-1.6879885372801975],[127,88,73,-1.7082571436219494],[127,88,74,-1.7264956517408843],[127,88,75,-1.729752814896836],[127,88,76,-1.7190664438238277],[127,88,77,-1.6932773112083188],[127,88,78,-1.655684731544912],[127,88,79,-1.6101091720277774],[127,89,64,-1.6671603139860758],[127,89,65,-1.6928097138910079],[127,89,66,-1.7115632677226431],[127,89,67,-1.7139354928620738],[127,89,68,-1.7134789271817232],[127,89,69,-1.7162873802151521],[127,89,70,-1.7165050212083817],[127,89,71,-1.7206002597708645],[127,89,72,-1.7399277103702226],[127,89,73,-1.760174795093486],[127,89,74,-1.7763765677928172],[127,89,75,-1.781537465784393],[127,89,76,-1.7721723113444359],[127,89,77,-1.7451095808087072],[127,89,78,-1.705017950410606],[127,89,79,-1.6597300707938083],[127,90,64,-1.72278711827826],[127,90,65,-1.7503281741534906],[127,90,66,-1.766152155335223],[127,90,67,-1.7688611321715981],[127,90,68,-1.7689339404157858],[127,90,69,-1.7705350208500712],[127,90,70,-1.769442254809805],[127,90,71,-1.7740386386154179],[127,90,72,-1.794824584854376],[127,90,73,-1.8195754192388995],[127,90,74,-1.834123910867763],[127,90,75,-1.840270633192692],[127,90,76,-1.829553182057692],[127,90,77,-1.8047115893449572],[127,90,78,-1.7602130440639774],[127,90,79,-1.7157654598839505],[127,91,64,-1.773293987455283],[127,91,65,-1.801165239043478],[127,91,66,-1.8144821353107576],[127,91,67,-1.8200542922476786],[127,91,68,-1.8160569747020265],[127,91,69,-1.816643077777276],[127,91,70,-1.8180265435229952],[127,91,71,-1.8244563132727631],[127,91,72,-1.8416871418400798],[127,91,73,-1.8717805156136333],[127,91,74,-1.8893380766412022],[127,91,75,-1.8924589792189332],[127,91,76,-1.8814411094543964],[127,91,77,-1.8560851758258605],[127,91,78,-1.8110553653215464],[127,91,79,-1.767030301342422],[127,92,64,-1.8306862216057471],[127,92,65,-1.8610782059964395],[127,92,66,-1.8751058834978402],[127,92,67,-1.8819471406616248],[127,92,68,-1.8779290641170137],[127,92,69,-1.8796679760888302],[127,92,70,-1.8826407149933104],[127,92,71,-1.8884816477534483],[127,92,72,-1.9051510209335072],[127,92,73,-1.9365349272671792],[127,92,74,-1.9549342858516359],[127,92,75,-1.9603699146666953],[127,92,76,-1.946650600361259],[127,92,77,-1.9217229325681837],[127,92,78,-1.879676411423098],[127,92,79,-1.8342529151232305],[127,93,64,-1.8763068406182604],[127,93,65,-1.9068941345457278],[127,93,66,-1.9236913878381439],[127,93,67,-1.9299054275952625],[127,93,68,-1.9264712166616667],[127,93,69,-1.9263453156840376],[127,93,70,-1.9311246983331387],[127,93,71,-1.9400653853863639],[127,93,72,-1.9594068271933902],[127,93,73,-1.9913503252582858],[127,93,74,-2.0122535530699843],[127,93,75,-2.0172035901563454],[127,93,76,-2.0066930802937453],[127,93,77,-1.9801507458684486],[127,93,78,-1.9395451042546532],[127,93,79,-1.8958085113771914],[127,94,64,-1.9265434609281185],[127,94,65,-1.955069287862698],[127,94,66,-1.9735635917154943],[127,94,67,-1.9808635716897114],[127,94,68,-1.9778754735292896],[127,94,69,-1.9784306318962068],[127,94,70,-1.9789326059302972],[127,94,71,-1.9885695115210773],[127,94,72,-2.0089447030340524],[127,94,73,-2.0397883072792165],[127,94,74,-2.0617476349447976],[127,94,75,-2.0675648107944307],[127,94,76,-2.06044300255299],[127,94,77,-2.032416625824681],[127,94,78,-1.9880257081086152],[127,94,79,-1.9485680212259733],[127,95,64,-1.9672221093329898],[127,95,65,-1.9954001245300381],[127,95,66,-2.014926653522049],[127,95,67,-2.024049609432227],[127,95,68,-2.0199289483693526],[127,95,69,-2.021931755974927],[127,95,70,-2.02439103921154],[127,95,71,-2.0337160015288664],[127,95,72,-2.0531523542835264],[127,95,73,-2.084626558336975],[127,95,74,-2.1047794991249877],[127,95,75,-2.110949247350413],[127,95,76,-2.105511066229049],[127,95,77,-2.077836525457381],[127,95,78,-2.036578389482604],[127,95,79,-1.9959544242443679],[127,96,64,-2.0163573259988126],[127,96,65,-2.043974297928556],[127,96,66,-2.0649282894095506],[127,96,67,-2.0769500422780762],[127,96,68,-2.071653686980468],[127,96,69,-2.0720591676222315],[127,96,70,-2.0723439484287516],[127,96,71,-2.0839239731492056],[127,96,72,-2.1057732957117423],[127,96,73,-2.1351399042607313],[127,96,74,-2.158242538806836],[127,96,75,-2.1606085573596907],[127,96,76,-2.154262728172476],[127,96,77,-2.1289910287053586],[127,96,78,-2.0866999430061086],[127,96,79,-2.046521995119786],[127,97,64,-2.076270730528445],[127,97,65,-2.1012811112137646],[127,97,66,-2.117943028623915],[127,97,67,-2.127274550625717],[127,97,68,-2.1229886172144146],[127,97,69,-2.122354192825236],[127,97,70,-2.1202741667557743],[127,97,71,-2.1280341874434567],[127,97,72,-2.1496665908075276],[127,97,73,-2.1744967813834184],[127,97,74,-2.197236392628853],[127,97,75,-2.2012119093792375],[127,97,76,-2.191972421338641],[127,97,77,-2.1679936821568644],[127,97,78,-2.1254053580516232],[127,97,79,-2.0826854020620913],[127,98,64,-2.1355302240189706],[127,98,65,-2.1586915443523527],[127,98,66,-2.1743623526813516],[127,98,67,-2.1817832730749744],[127,98,68,-2.1783054228358845],[127,98,69,-2.1763810557030046],[127,98,70,-2.176198911301615],[127,98,71,-2.1821349732444024],[127,98,72,-2.2051790520526118],[127,98,73,-2.2297754178825606],[127,98,74,-2.2529839220320778],[127,98,75,-2.2563025748117274],[127,98,76,-2.245781954066678],[127,98,77,-2.219240306536981],[127,98,78,-2.176794332535405],[127,98,79,-2.1347455665841513],[127,99,64,-2.186233591570936],[127,99,65,-2.2105020251624885],[127,99,66,-2.2259012064194175],[127,99,67,-2.227386540450684],[127,99,68,-2.225349054380601],[127,99,69,-2.2269382375198403],[127,99,70,-2.2258937958883784],[127,99,71,-2.233239321423413],[127,99,72,-2.254154465065792],[127,99,73,-2.2813619382866315],[127,99,74,-2.3015264337510306],[127,99,75,-2.3021502761554204],[127,99,76,-2.291502565459731],[127,99,77,-2.267442025343184],[127,99,78,-2.2260205429246476],[127,99,79,-2.1810465206770995],[127,100,64,-2.2119099718748614],[127,100,65,-2.2316002543802065],[127,100,66,-2.2378879466076635],[127,100,67,-2.2318491559496336],[127,100,68,-2.224674655818932],[127,100,69,-2.2203513424170924],[127,100,70,-2.2162215673248498],[127,100,71,-2.2220203013925452],[127,100,72,-2.2383514969895613],[127,100,73,-2.2641920888490423],[127,100,74,-2.2826041675777384],[127,100,75,-2.2852266459809387],[127,100,76,-2.2741806001492972],[127,100,77,-2.247502203233369],[127,100,78,-2.207841192971854],[127,100,79,-2.1619462961356235],[127,101,64,-2.2649074517781305],[127,101,65,-2.281942699096738],[127,101,66,-2.289839878412651],[127,101,67,-2.281794057941528],[127,101,68,-2.2744391762024585],[127,101,69,-2.2719797466924057],[127,101,70,-2.2680564210428282],[127,101,71,-2.27275021297818],[127,101,72,-2.291589693300482],[127,101,73,-2.3139642160164997],[127,101,74,-2.33205650642001],[127,101,75,-2.3349629126474594],[127,101,76,-2.322939981620692],[127,101,77,-2.2950997914633553],[127,101,78,-2.2552105518657783],[127,101,79,-2.2107761104563646],[127,102,64,-2.314217078580725],[127,102,65,-2.3337121415978155],[127,102,66,-2.3388356929707426],[127,102,67,-2.3305122971360035],[127,102,68,-2.3278659802453263],[127,102,69,-2.3244046773019233],[127,102,70,-2.3205465905819715],[127,102,71,-2.3245878831005378],[127,102,72,-2.342143706744169],[127,102,73,-2.364831761596275],[127,102,74,-2.3823188421441754],[127,102,75,-2.385807518137528],[127,102,76,-2.372917275928818],[127,102,77,-2.3427162623449065],[127,102,78,-2.302621287866741],[127,102,79,-2.2588729115943362],[127,103,64,-2.356823883234972],[127,103,65,-2.3750188781392247],[127,103,66,-2.380703796964884],[127,103,67,-2.375975258573452],[127,103,68,-2.3728832693316777],[127,103,69,-2.3705358378932324],[127,103,70,-2.367607685288979],[127,103,71,-2.3715456968587656],[127,103,72,-2.386550682233258],[127,103,73,-2.409078410955656],[127,103,74,-2.428163156785298],[127,103,75,-2.4319547968413464],[127,103,76,-2.417857188172344],[127,103,77,-2.3860656820007136],[127,103,78,-2.3480426054233945],[127,103,79,-2.3063864327889956],[127,104,64,-2.4077787684729324],[127,104,65,-2.4232629593282247],[127,104,66,-2.430371708259516],[127,104,67,-2.427100772888469],[127,104,68,-2.423290954681536],[127,104,69,-2.4240739590162317],[127,104,70,-2.419075077383066],[127,104,71,-2.4231158075357517],[127,104,72,-2.435484595882902],[127,104,73,-2.458529216715153],[127,104,74,-2.476995285293522],[127,104,75,-2.4819727442339836],[127,104,76,-2.4659651805487957],[127,104,77,-2.4352202417191853],[127,104,78,-2.3979398191778656],[127,104,79,-2.359396270749248],[127,105,64,-2.4485191579751233],[127,105,65,-2.4677109226440135],[127,105,66,-2.476508635373516],[127,105,67,-2.476666246278106],[127,105,68,-2.474338887439284],[127,105,69,-2.4724251706477167],[127,105,70,-2.4707479018257903],[127,105,71,-2.4782029440883244],[127,105,72,-2.493556304707712],[127,105,73,-2.5185142511055774],[127,105,74,-2.539358490369862],[127,105,75,-2.54190144845508],[127,105,76,-2.521637750258527],[127,105,77,-2.4895899096178145],[127,105,78,-2.4477478186230326],[127,105,79,-2.406303349063256],[127,106,64,-2.5076406162057308],[127,106,65,-2.5252175423608256],[127,106,66,-2.5331715140319293],[127,106,67,-2.5332989910734285],[127,106,68,-2.5289318427555987],[127,106,69,-2.5263597049674145],[127,106,70,-2.5267471920241023],[127,106,71,-2.5325893497646867],[127,106,72,-2.54838378708948],[127,106,73,-2.5751007729498885],[127,106,74,-2.5956884191434124],[127,106,75,-2.598624991343553],[127,106,76,-2.578734174180067],[127,106,77,-2.5453532694470336],[127,106,78,-2.503928617960967],[127,106,79,-2.460512517327157],[127,107,64,-2.5576562943010797],[127,107,65,-2.5775943661638268],[127,107,66,-2.5835640357117713],[127,107,67,-2.582365616927389],[127,107,68,-2.577716806332667],[127,107,69,-2.5770616135942377],[127,107,70,-2.575572586928221],[127,107,71,-2.5797322965034772],[127,107,72,-2.5962883719927983],[127,107,73,-2.6247948663366065],[127,107,74,-2.6433221941549303],[127,107,75,-2.64983073775026],[127,107,76,-2.628179293671788],[127,107,77,-2.592448138303356],[127,107,78,-2.5539479192597607],[127,107,79,-2.5105007009338896],[127,108,64,-2.5996859234801857],[127,108,65,-2.6241727245933264],[127,108,66,-2.632659977936159],[127,108,67,-2.6293474152553005],[127,108,68,-2.6267062090587863],[127,108,69,-2.6279676990532703],[127,108,70,-2.628398855267802],[127,108,71,-2.630941762181485],[127,108,72,-2.6477371358282156],[127,108,73,-2.677492961478594],[127,108,74,-2.696774609337722],[127,108,75,-2.7023827796087243],[127,108,76,-2.681504275065288],[127,108,77,-2.6471004196509735],[127,108,78,-2.609707491495863],[127,108,79,-2.569255846106802],[127,109,64,-2.658892647591763],[127,109,65,-2.6795737993354103],[127,109,66,-2.6854063163026956],[127,109,67,-2.6800131750786313],[127,109,68,-2.67626585407616],[127,109,69,-2.674471353921339],[127,109,70,-2.6724210937360535],[127,109,71,-2.6739097946935253],[127,109,72,-2.689726148627108],[127,109,73,-2.717138440081121],[127,109,74,-2.7327922843702415],[127,109,75,-2.7368687496738913],[127,109,76,-2.720586298806784],[127,109,77,-2.6948180107885755],[127,109,78,-2.6640635850660987],[127,109,79,-2.6288727604097923],[127,110,64,-2.7096605755594383],[127,110,65,-2.7296265401722333],[127,110,66,-2.7357980917279603],[127,110,67,-2.7316943003242997],[127,110,68,-2.7242637967135512],[127,110,69,-2.7200491465895293],[127,110,70,-2.7177104153725664],[127,110,71,-2.7221041661133953],[127,110,72,-2.73758812620921],[127,110,73,-2.7634253594534623],[127,110,74,-2.7765342621984894],[127,110,75,-2.7794509246224886],[127,110,76,-2.766806461224233],[127,110,77,-2.7424492357904473],[127,110,78,-2.7120510635477135],[127,110,79,-2.6775518794586235],[127,111,64,-2.753569610058457],[127,111,65,-2.771742865615209],[127,111,66,-2.779387391666412],[127,111,67,-2.774497155739037],[127,111,68,-2.7651667426917723],[127,111,69,-2.7619720677663993],[127,111,70,-2.7619806800422078],[127,111,71,-2.762198973682838],[127,111,72,-2.7796377349733286],[127,111,73,-2.8060074063714278],[127,111,74,-2.817605191117251],[127,111,75,-2.821629563064155],[127,111,76,-2.810939028725806],[127,111,77,-2.788468237308901],[127,111,78,-2.757681170834817],[127,111,79,-2.725146095313921],[127,112,64,-2.8013826812512272],[127,112,65,-2.819887453135019],[127,112,66,-2.827610118121561],[127,112,67,-2.8237771223055375],[127,112,68,-2.8148975650705603],[127,112,69,-2.810418908074291],[127,112,70,-2.8102904709521512],[127,112,71,-2.809731573079941],[127,112,72,-2.823865178266381],[127,112,73,-2.84992736374615],[127,112,74,-2.8634623202169225],[127,112,75,-2.86744277649858],[127,112,76,-2.862157596414566],[127,112,77,-2.837897363863651],[127,112,78,-2.807016955601813],[127,112,79,-2.773206811587643],[127,113,64,-2.8485689321159047],[127,113,65,-2.8693845378550815],[127,113,66,-2.875018297192237],[127,113,67,-2.872379126621797],[127,113,68,-2.863496144151946],[127,113,69,-2.8587739476855605],[127,113,70,-2.8583439651936495],[127,113,71,-2.859497483173156],[127,113,72,-2.8714790992554677],[127,113,73,-2.894463361235432],[127,113,74,-2.910593848958647],[127,113,75,-2.915946777716344],[127,113,76,-2.9116574672783333],[127,113,77,-2.8863672527510165],[127,113,78,-2.8551428838880417],[127,113,79,-2.820672591875547],[127,114,64,-2.9031874902001102],[127,114,65,-2.924844005205706],[127,114,66,-2.929682154453939],[127,114,67,-2.925549939514443],[127,114,68,-2.918697091905411],[127,114,69,-2.9147700952733717],[127,114,70,-2.914201331941555],[127,114,71,-2.9151365958448108],[127,114,72,-2.9254526596851536],[127,114,73,-2.9449599815893373],[127,114,74,-2.962511501656908],[127,114,75,-2.9677270259184527],[127,114,76,-2.9639947646526474],[127,114,77,-2.942702630141016],[127,114,78,-2.9111269343790553],[127,114,79,-2.8724656647046114],[127,115,64,-2.9528287505473974],[127,115,65,-2.9721816114247708],[127,115,66,-2.977069425646267],[127,115,67,-2.975371323328128],[127,115,68,-2.967448969483767],[127,115,69,-2.962808390783479],[127,115,70,-2.961011287686215],[127,115,71,-2.962121295673052],[127,115,72,-2.9728128574900308],[127,115,73,-2.9917418487664564],[127,115,74,-3.0093263807797275],[127,115,75,-3.017818251128628],[127,115,76,-3.0098107230054665],[127,115,77,-2.9910884903166814],[127,115,78,-2.9570891871038887],[127,115,79,-2.9184917516301154],[127,116,64,-2.988017040107141],[127,116,65,-3.0054156769098332],[127,116,66,-3.0109155388180366],[127,116,67,-3.009035324662944],[127,116,68,-2.9979934190191346],[127,116,69,-2.990920364144252],[127,116,70,-2.984015774731922],[127,116,71,-2.986572604847236],[127,116,72,-2.997199622148288],[127,116,73,-3.018748400561401],[127,116,74,-3.0405356275328512],[127,116,75,-3.0470402573064232],[127,116,76,-3.03734167122715],[127,116,77,-3.0168224386887963],[127,116,78,-2.981878222883689],[127,116,79,-2.9439904347822483],[127,117,64,-3.044011941949199],[127,117,65,-3.0620286137813855],[127,117,66,-3.0680632430092847],[127,117,67,-3.064677055426837],[127,117,68,-3.053594063252395],[127,117,69,-3.0455350789021782],[127,117,70,-3.036794948728951],[127,117,71,-3.035806661156183],[127,117,72,-3.04504880422139],[127,117,73,-3.0670445364682624],[127,117,74,-3.090017133540835],[127,117,75,-3.097940661753447],[127,117,76,-3.0863235107458227],[127,117,77,-3.0600255398823024],[127,117,78,-3.02320048076887],[127,117,79,-2.98367504599861],[127,118,64,-3.090824891375945],[127,118,65,-3.109605971349091],[127,118,66,-3.112275268059708],[127,118,67,-3.1094059145960986],[127,118,68,-3.0991328431002043],[127,118,69,-3.0915159007743167],[127,118,70,-3.0826773596184593],[127,118,71,-3.080827174957155],[127,118,72,-3.0900162179735053],[127,118,73,-3.1132202262022335],[127,118,74,-3.137658857573117],[127,118,75,-3.1450761401401457],[127,118,76,-3.1330069788056694],[127,118,77,-3.109169053699217],[127,118,78,-3.072035392343882],[127,118,79,-3.033061035098253],[127,119,64,-3.1319515419893227],[127,119,65,-3.150893187511256],[127,119,66,-3.1510074581456173],[127,119,67,-3.1491664600762617],[127,119,68,-3.1390782982001673],[127,119,69,-3.131686697530317],[127,119,70,-3.1251872992921923],[127,119,71,-3.1241829731661666],[127,119,72,-3.134660377648888],[127,119,73,-3.1597612402347237],[127,119,74,-3.183778809862657],[127,119,75,-3.191269524017631],[127,119,76,-3.1804130801655695],[127,119,77,-3.1575485483248293],[127,119,78,-3.121675447581657],[127,119,79,-3.0837639051018635],[127,120,64,-3.177839338147788],[127,120,65,-3.196069077837888],[127,120,66,-3.197451082540404],[127,120,67,-3.1932296785644194],[127,120,68,-3.1830134732729927],[127,120,69,-3.173521754591872],[127,120,70,-3.168089466153128],[127,120,71,-3.168674057454886],[127,120,72,-3.182419287476194],[127,120,73,-3.208952489677359],[127,120,74,-3.2301461968969796],[127,120,75,-3.2399222194142734],[127,120,76,-3.231519493931065],[127,120,77,-3.2082602914016456],[127,120,78,-3.1708164658756206],[127,120,79,-3.134042514813967],[127,121,64,-3.213856967115518],[127,121,65,-3.231571304189214],[127,121,66,-3.2333229349325867],[127,121,67,-3.2269164466546667],[127,121,68,-3.2159659995581764],[127,121,69,-3.2064294228988386],[127,121,70,-3.2037619898401135],[127,121,71,-3.206019699965269],[127,121,72,-3.2278766888377843],[127,121,73,-3.2570662417772143],[127,121,74,-3.2786017818012088],[127,121,75,-3.2901668112248346],[127,121,76,-3.2835214724755755],[127,121,77,-3.260985896168425],[127,121,78,-3.2280952981261897],[127,121,79,-3.1916532002206033],[127,122,64,-3.264781320435966],[127,122,65,-3.2831947292355856],[127,122,66,-3.284773880223962],[127,122,67,-3.277955670713538],[127,122,68,-3.2673438082992985],[127,122,69,-3.257976812960761],[127,122,70,-3.2544600849534957],[127,122,71,-3.2596929645745316],[127,122,72,-3.280859722776774],[127,122,73,-3.3112199694574054],[127,122,74,-3.332957468280732],[127,122,75,-3.343700267416105],[127,122,76,-3.337336381821536],[127,122,77,-3.31411385301775],[127,122,78,-3.2819361758226635],[127,122,79,-3.2452874231971185],[127,123,64,-3.310118011403587],[127,123,65,-3.3282189813253837],[127,123,66,-3.3300053704083385],[127,123,67,-3.324894672064254],[127,123,68,-3.313386448701102],[127,123,69,-3.3042092404517436],[127,123,70,-3.3009478536255377],[127,123,71,-3.306836977802815],[127,123,72,-3.326378312942805],[127,123,73,-3.357906994009227],[127,123,74,-3.3827729244697826],[127,123,75,-3.3915404992059037],[127,123,76,-3.385706026533109],[127,123,77,-3.3627384352684784],[127,123,78,-3.329234517736777],[127,123,79,-3.2954265572373247],[127,124,64,-3.348212300817711],[127,124,65,-3.3680454842280927],[127,124,66,-3.372590577752372],[127,124,67,-3.370321027716294],[127,124,68,-3.3613751099452225],[127,124,69,-3.3539526956058316],[127,124,70,-3.35014861025617],[127,124,71,-3.3565145816098925],[127,124,72,-3.3763230298459095],[127,124,73,-3.4084895743959627],[127,124,74,-3.4312190385213124],[127,124,75,-3.442049450084808],[127,124,76,-3.437865080138464],[127,124,77,-3.4155278128062916],[127,124,78,-3.380593305194833],[127,124,79,-3.348607334811363],[127,125,64,-3.3926113719627446],[127,125,65,-3.4126562307325887],[127,125,66,-3.4173262230358854],[127,125,67,-3.4150421863446825],[127,125,68,-3.4081276389637463],[127,125,69,-3.401939074697808],[127,125,70,-3.3982008061888993],[127,125,71,-3.406168303608752],[127,125,72,-3.425351992422052],[127,125,73,-3.45773089641536],[127,125,74,-3.4782386875811735],[127,125,75,-3.48983516175613],[127,125,76,-3.486332290478813],[127,125,77,-3.463868439633911],[127,125,78,-3.4278890076946817],[127,125,79,-3.395585250715257],[127,126,64,-3.4368498895826],[127,126,65,-3.4574781358052324],[127,126,66,-3.4659946585174306],[127,126,67,-3.4640854809870545],[127,126,68,-3.45558242263673],[127,126,69,-3.4508538690388524],[127,126,70,-3.446195215765161],[127,126,71,-3.4536281234428903],[127,126,72,-3.4755447404206197],[127,126,73,-3.507289192035109],[127,126,74,-3.52711775058603],[127,126,75,-3.5381347389861806],[127,126,76,-3.5319394141724896],[127,126,77,-3.510370007406412],[127,126,78,-3.4752015997486203],[127,126,79,-3.443015250087368],[127,127,64,-3.4790662730650226],[127,127,65,-3.500657559303],[127,127,66,-3.5096992229928814],[127,127,67,-3.5073917220412385],[127,127,68,-3.5001990586536476],[127,127,69,-3.4982854166794537],[127,127,70,-3.49286775111787],[127,127,71,-3.4998510267874368],[127,127,72,-3.52304846383534],[127,127,73,-3.5540918694256085],[127,127,74,-3.5773860400640105],[127,127,75,-3.587719379655664],[127,127,76,-3.5774367149562116],[127,127,77,-3.5555709375238735],[127,127,78,-3.5252503066866847],[127,127,79,-3.492399662113084],[127,128,64,-3.52319015755013],[127,128,65,-3.548174281380637],[127,128,66,-3.553770816901738],[127,128,67,-3.5513764062751365],[127,128,68,-3.5475813168511507],[127,128,69,-3.5453180938049087],[127,128,70,-3.540880866619131],[127,128,71,-3.5486113412285447],[127,128,72,-3.57043707677572],[127,128,73,-3.6040055802741833],[127,128,74,-3.627580015898083],[127,128,75,-3.6354513635657093],[127,128,76,-3.6234229054209317],[127,128,77,-3.6003222250618476],[127,128,78,-3.5700809754089127],[127,128,79,-3.5383797669328985],[127,129,64,-3.5805713685467198],[127,129,65,-3.604144517958868],[127,129,66,-3.6091989938924307],[127,129,67,-3.604233315340918],[127,129,68,-3.603916494926432],[127,129,69,-3.6017967547716805],[127,129,70,-3.5997505384962376],[127,129,71,-3.6075473687146067],[127,129,72,-3.627699511640362],[127,129,73,-3.6602195818054737],[127,129,74,-3.685046319281554],[127,129,75,-3.690637112340075],[127,129,76,-3.6802387581416562],[127,129,77,-3.656389906986174],[127,129,78,-3.6259666166020597],[127,129,79,-3.5935202694608472],[127,130,64,-3.6310016715441957],[127,130,65,-3.6539002138151373],[127,130,66,-3.6607370508721457],[127,130,67,-3.6556957416233775],[127,130,68,-3.653948577244474],[127,130,69,-3.654994387864097],[127,130,70,-3.656129390529085],[127,130,71,-3.6626121172178707],[127,130,72,-3.6831029868854834],[127,130,73,-3.7152191700549038],[127,130,74,-3.737330974377108],[127,130,75,-3.7433581589051093],[127,130,76,-3.756260079297881],[127,130,77,-3.742297614217666],[127,130,78,-3.6999444318064825],[127,130,79,-3.6731577868480434],[127,131,64,-3.6756498183711837],[127,131,65,-3.6969292340003825],[127,131,66,-3.706352775565949],[127,131,67,-3.702320457368092],[127,131,68,-3.702362748770637],[127,131,69,-3.7022667982231066],[127,131,70,-3.703135465131537],[127,131,71,-3.708031441261838],[127,131,72,-3.728991844760101],[127,131,73,-3.7608259266795816],[127,131,74,-3.7837763081811873],[127,131,75,-3.803064196161651],[127,131,76,-3.832421757038848],[127,131,77,-3.8059987691713815],[127,131,78,-3.7612051026852042],[127,131,79,-3.727514554381628],[127,132,64,-3.7134623464560037],[127,132,65,-3.736328164089907],[127,132,66,-3.7447271909244053],[127,132,67,-3.7419241882940764],[127,132,68,-3.7418978688106117],[127,132,69,-3.7431055559024062],[127,132,70,-3.7435252756551654],[127,132,71,-3.749738467600321],[127,132,72,-3.771887254361914],[127,132,73,-3.8053203129218574],[127,132,74,-3.8332863015953196],[127,132,75,-3.854014354133343],[127,132,76,-3.8913222943118084],[127,132,77,-3.86962569729849],[127,132,78,-3.8163299679798275],[127,132,79,-3.7791043373385538],[127,133,64,-3.7490970081476953],[127,133,65,-3.7694351354331324],[127,133,66,-3.7792088551037906],[127,133,67,-3.7789497669844856],[127,133,68,-3.7742783112389358],[127,133,69,-3.774705273988664],[127,133,70,-3.7765112338185665],[127,133,71,-3.784787065090612],[127,133,72,-3.808897871759211],[127,133,73,-3.8417542274853242],[127,133,74,-3.898034138778704],[127,133,75,-3.934440179377332],[127,133,76,-3.967606664381354],[127,133,77,-3.95577692608799],[127,133,78,-3.90423674637153],[127,133,79,-3.864826761120847],[127,134,64,-3.7936837823886767],[127,134,65,-3.8159912686490833],[127,134,66,-3.82641661885776],[127,134,67,-3.826170444730291],[127,134,68,-3.819359265550446],[127,134,69,-3.818710056859551],[127,134,70,-3.8201313271170387],[127,134,71,-3.8304760946383407],[127,134,72,-3.855717112474682],[127,134,73,-3.8889290561663885],[127,134,74,-3.964639571566651],[127,134,75,-3.9918068901299417],[127,134,76,-4.0234430748198],[127,134,77,-4.0203546788050835],[127,134,78,-3.971580984207388],[127,134,79,-3.9287922886535647],[127,135,64,-3.832373044805248],[127,135,65,-3.855801756950995],[127,135,66,-3.868773423139786],[127,135,67,-3.86858038669093],[127,135,68,-3.864939730261334],[127,135,69,-3.8645450223523206],[127,135,70,-3.8659321432284095],[127,135,71,-3.8772763967778374],[127,135,72,-3.904870125510955],[127,135,73,-3.9372552242958143],[127,135,74,-4.019974702971705],[127,135,75,-4.044873564111715],[127,135,76,-4.0654778320444365],[127,135,77,-4.07468245324524],[127,135,78,-4.022888732865844],[127,135,79,-3.976449574528145],[127,136,64,-3.8762711969206856],[127,136,65,-3.900832739978679],[127,136,66,-3.9153489678021],[127,136,67,-3.9137897145960694],[127,136,68,-3.9109975883502597],[127,136,69,-3.9118759049470238],[127,136,70,-3.915711355900293],[127,136,71,-3.926229623226873],[127,136,72,-3.9533869484406274],[127,136,73,-3.9953432570566614],[127,136,74,-4.07968323733805],[127,136,75,-4.10642177146752],[127,136,76,-4.128195120727754],[127,136,77,-4.137944198640634],[127,136,78,-4.089671281236419],[127,136,79,-4.035500722615625],[127,137,64,-3.9217916849089534],[127,137,65,-3.947123704471778],[127,137,66,-3.9614094702750418],[127,137,67,-3.9621017674693304],[127,137,68,-3.9576760604651415],[127,137,69,-3.959733810083013],[127,137,70,-3.965569101739705],[127,137,71,-3.977328247199763],[127,137,72,-4.00403770973766],[127,137,73,-4.051769567769514],[127,137,74,-4.127749182631122],[127,137,75,-4.155062056747169],[127,137,76,-4.182940520823105],[127,137,77,-4.175211796132033],[127,137,78,-4.139209063506478],[127,137,79,-4.083395632466039],[127,138,64,-3.9751506937279224],[127,138,65,-3.998765991214313],[127,138,66,-4.011707542435454],[127,138,67,-4.016337740519065],[127,138,68,-4.0110930413140435],[127,138,69,-4.011981464616314],[127,138,70,-4.0191951097551515],[127,138,71,-4.0319848855933955],[127,138,72,-4.058018549781098],[127,138,73,-4.0903220506977185],[127,138,74,-4.155750124847912],[127,138,75,-4.187712872421824],[127,138,76,-4.2182423972970975],[127,138,77,-4.2107301513598685],[127,138,78,-4.171156968995394],[127,138,79,-4.113946586570906],[127,139,64,-4.022609221615273],[127,139,65,-4.043676646056363],[127,139,66,-4.055290728374733],[127,139,67,-4.061544138699971],[127,139,68,-4.059001963201818],[127,139,69,-4.059388290734049],[127,139,70,-4.067650001367324],[127,139,71,-4.08171213702609],[127,139,72,-4.105871757917914],[127,139,73,-4.1502691660989885],[127,139,74,-4.220635446461469],[127,139,75,-4.265096572553545],[127,139,76,-4.281003505849342],[127,139,77,-4.260546022154656],[127,139,78,-4.232365607557165],[127,139,79,-4.170090616088843],[127,140,64,-4.067325418169548],[127,140,65,-4.088102930568211],[127,140,66,-4.097622275471153],[127,140,67,-4.101909653873346],[127,140,68,-4.098683697341105],[127,140,69,-4.101692176650277],[127,140,70,-4.109014504468871],[127,140,71,-4.121234564592313],[127,140,72,-4.145124579137443],[127,140,73,-4.192848567768781],[127,140,74,-4.262184934691471],[127,140,75,-4.312704881929333],[127,140,76,-4.324065418966876],[127,140,77,-4.308459563960702],[127,140,78,-4.280273660107085],[127,140,79,-4.221277887661195],[127,141,64,-4.11013935918009],[127,141,65,-4.133118184765596],[127,141,66,-4.14405965453209],[127,141,67,-4.150425337656677],[127,141,68,-4.149409937709848],[127,141,69,-4.150735655111461],[127,141,70,-4.1589246408427085],[127,141,71,-4.17317360910535],[127,141,72,-4.19564333371843],[127,141,73,-4.25899347365597],[127,141,74,-4.300625977319461],[127,141,75,-4.3344992192786975],[127,141,76,-4.357691653192524],[127,141,77,-4.354641461291156],[127,141,78,-4.325375125356136],[127,141,79,-4.263746903413418],[127,142,64,-4.158050816745193],[127,142,65,-4.178954415200234],[127,142,66,-4.190753116386223],[127,142,67,-4.197258650970326],[127,142,68,-4.197806233508405],[127,142,69,-4.2004127531829285],[127,142,70,-4.206305258152529],[127,142,71,-4.22302503160102],[127,142,72,-4.245337750066995],[127,142,73,-4.31124395527107],[127,142,74,-4.349088957237817],[127,142,75,-4.375459133596197],[127,142,76,-4.410240732463339],[127,142,77,-4.400370143093604],[127,142,78,-4.371326398192172],[127,142,79,-4.317845425990767],[127,143,64,-4.2036316082251135],[127,143,65,-4.224274358484072],[127,143,66,-4.2383157876703095],[127,143,67,-4.243585028720764],[127,143,68,-4.242864772994652],[127,143,69,-4.2483957208408],[127,143,70,-4.255813385615852],[127,143,71,-4.271156646704787],[127,143,72,-4.295706711757995],[127,143,73,-4.362186824256614],[127,143,74,-4.3921180221101945],[127,143,75,-4.418715570319341],[127,143,76,-4.455232454565519],[127,143,77,-4.4405493622900565],[127,143,78,-4.412101305286061],[127,143,79,-4.360155864393244],[127,144,64,-4.252423955381388],[127,144,65,-4.272219226428765],[127,144,66,-4.284447060902789],[127,144,67,-4.29028198336426],[127,144,68,-4.2910355187404745],[127,144,69,-4.298648927235871],[127,144,70,-4.305098715833032],[127,144,71,-4.319057933535855],[127,144,72,-4.345297834309923],[127,144,73,-4.417744762225595],[127,144,74,-4.446941487254721],[127,144,75,-4.471320642106161],[127,144,76,-4.511763702375645],[127,144,77,-4.494836455738343],[127,144,78,-4.468458096963198],[127,144,79,-4.420787622478972],[127,145,64,-4.310201329307574],[127,145,65,-4.32719232292989],[127,145,66,-4.335426126137141],[127,145,67,-4.337819936731976],[127,145,68,-4.33940168497595],[127,145,69,-4.345227589371384],[127,145,70,-4.353574288081765],[127,145,71,-4.3685902396939715],[127,145,72,-4.397506857836508],[127,145,73,-4.438144867377204],[127,145,74,-4.44492867579151],[127,145,75,-4.453359621815656],[127,145,76,-4.494939342430363],[127,145,77,-4.5030805520502355],[127,145,78,-4.485004624169412],[127,145,79,-4.447338093818492],[127,146,64,-4.365583199209129],[127,146,65,-4.383593931571457],[127,146,66,-4.388926335761937],[127,146,67,-4.390036615297759],[127,146,68,-4.391377484576064],[127,146,69,-4.398689416461275],[127,146,70,-4.406347168740878],[127,146,71,-4.422650620473159],[127,146,72,-4.447035281455253],[127,146,73,-4.479130872136923],[127,146,74,-4.4979745554312816],[127,146,75,-4.504275222430476],[127,146,76,-4.5337091644994265],[127,146,77,-4.551413879595854],[127,146,78,-4.531512665943447],[127,146,79,-4.4910486756448105],[127,147,64,-4.414067343607596],[127,147,65,-4.432448010211717],[127,147,66,-4.437648426235107],[127,147,67,-4.43740839626313],[127,147,68,-4.4392475966727964],[127,147,69,-4.446086906765014],[127,147,70,-4.451755737219183],[127,147,71,-4.469895010936929],[127,147,72,-4.494160511357983],[127,147,73,-4.513718722801375],[127,147,74,-4.539841983244656],[127,147,75,-4.5492344936896885],[127,147,76,-4.51748845529208],[127,147,77,-4.460000007305525],[127,147,78,-4.4323101595811485],[127,147,79,-4.42077984937303],[127,148,64,-4.42981422667545],[127,148,65,-4.453791455337602],[127,148,66,-4.46122252332608],[127,148,67,-4.466606967236233],[127,148,68,-4.4711466090962935],[127,148,69,-4.478159374282751],[127,148,70,-4.487345880015096],[127,148,71,-4.507235027964117],[127,148,72,-4.534261807134016],[127,148,73,-4.5641803126300164],[127,148,74,-4.566865391707587],[127,148,75,-4.570075300291193],[127,148,76,-4.536265187587279],[127,148,77,-4.493860186925006],[127,148,78,-4.471137520800499],[127,148,79,-4.455971222696871],[127,149,64,-4.479999812968229],[127,149,65,-4.504078633646305],[127,149,66,-4.5120723793961055],[127,149,67,-4.516471898893697],[127,149,68,-4.517666676667305],[127,149,69,-4.525380007660132],[127,149,70,-4.533760129376024],[127,149,71,-4.5501131242031985],[127,149,72,-4.581170698709343],[127,149,73,-4.612744742461885],[127,149,74,-4.612050139410844],[127,149,75,-4.60723816667962],[127,149,76,-4.56980320906608],[127,149,77,-4.532034938400078],[127,149,78,-4.5136040227492105],[127,149,79,-4.498161466840732],[127,150,64,-4.526622548746703],[127,150,65,-4.555220242646811],[127,150,66,-4.564567483974551],[127,150,67,-4.567093268628154],[127,150,68,-4.567139672152707],[127,150,69,-4.572639265634549],[127,150,70,-4.581261919971026],[127,150,71,-4.596118949482103],[127,150,72,-4.626613340984315],[127,150,73,-4.65845709491092],[127,150,74,-4.658737172286518],[127,150,75,-4.640636777851574],[127,150,76,-4.598437909582253],[127,150,77,-4.57371373613215],[127,150,78,-4.552294815869065],[127,150,79,-4.543822887264361],[127,151,64,-4.571141195451915],[127,151,65,-4.600807862136095],[127,151,66,-4.613936463130426],[127,151,67,-4.615580481611364],[127,151,68,-4.616007973113324],[127,151,69,-4.619672174330975],[127,151,70,-4.628418909667541],[127,151,71,-4.642649053611106],[127,151,72,-4.673481139349395],[127,151,73,-4.706100613843093],[127,151,74,-4.710337801470129],[127,151,75,-4.686568750673615],[127,151,76,-4.639302652953601],[127,151,77,-4.6145866411776435],[127,151,78,-4.5934268148036175],[127,151,79,-4.584790700669916],[127,152,64,-4.621250101646335],[127,152,65,-4.652162941501901],[127,152,66,-4.665500250433024],[127,152,67,-4.667599726511352],[127,152,68,-4.666231679038648],[127,152,69,-4.667556072224291],[127,152,70,-4.67564257292001],[127,152,71,-4.6906686064305],[127,152,72,-4.720031725888017],[127,152,73,-4.745086251163869],[127,152,74,-4.7537661159731766],[127,152,75,-4.728237472626324],[127,152,76,-4.677710847382028],[127,152,77,-4.663094855751594],[127,152,78,-4.638169130547012],[127,152,79,-4.621362493606766],[127,153,64,-4.675205177884185],[127,153,65,-4.703169439616922],[127,153,66,-4.711398378232632],[127,153,67,-4.708430580574881],[127,153,68,-4.706928228549519],[127,153,69,-4.7080807337033255],[127,153,70,-4.714176729252291],[127,153,71,-4.727391842958854],[127,153,72,-4.761274327121837],[127,153,73,-4.760600412606745],[127,153,74,-4.755232675142549],[127,153,75,-4.730088991906537],[127,153,76,-4.715318182045565],[127,153,77,-4.700699013066524],[127,153,78,-4.679561210255945],[127,153,79,-4.6555964610550715],[127,154,64,-4.727983406075515],[127,154,65,-4.756188332178198],[127,154,66,-4.765055299420589],[127,154,67,-4.760843017876619],[127,154,68,-4.759974210693128],[127,154,69,-4.763395660138711],[127,154,70,-4.767310966002293],[127,154,71,-4.780599427795523],[127,154,72,-4.815436388431334],[127,154,73,-4.8227924487799925],[127,154,74,-4.815026382538302],[127,154,75,-4.786407385415683],[127,154,76,-4.761281228963066],[127,154,77,-4.7467210892141605],[127,154,78,-4.72475143623688],[127,154,79,-4.698010527536103],[127,155,64,-4.773535816695064],[127,155,65,-4.804223699928518],[127,155,66,-4.81520822057235],[127,155,67,-4.809926427425444],[127,155,68,-4.808443594130508],[127,155,69,-4.812443634407048],[127,155,70,-4.816524310239285],[127,155,71,-4.829901383313762],[127,155,72,-4.862279728793408],[127,155,73,-4.8659384810650685],[127,155,74,-4.855172374256323],[127,155,75,-4.838646869577277],[127,155,76,-4.818696960644925],[127,155,77,-4.803943857965621],[127,155,78,-4.778876918396265],[127,155,79,-4.752546816551493],[127,156,64,-4.813121905001757],[127,156,65,-4.84168892716531],[127,156,66,-4.855804271850801],[127,156,67,-4.8532189835124555],[127,156,68,-4.851239579845243],[127,156,69,-4.857877284154346],[127,156,70,-4.864091491292864],[127,156,71,-4.878245271015945],[127,156,72,-4.910675699551072],[127,156,73,-4.888386993162725],[127,156,74,-4.884019507279102],[127,156,75,-4.887142181565579],[127,156,76,-4.865245145109526],[127,156,77,-4.853186172194646],[127,156,78,-4.825662020380426],[127,156,79,-4.799521936520805],[127,157,64,-4.853658870578562],[127,157,65,-4.887596915467617],[127,157,66,-4.908416058471358],[127,157,67,-4.911568187494928],[127,157,68,-4.909383117187864],[127,157,69,-4.913535547016158],[127,157,70,-4.9187551564000085],[127,157,71,-4.935558549192673],[127,157,72,-4.9633621415368765],[127,157,73,-4.925624396496901],[127,157,74,-4.920699149075918],[127,157,75,-4.922550657166632],[127,157,76,-4.910912618161054],[127,157,77,-4.898984588751598],[127,157,78,-4.871114996189352],[127,157,79,-4.843060929936755],[127,158,64,-4.899998290683155],[127,158,65,-4.936377493151357],[127,158,66,-4.957473347674998],[127,158,67,-4.960309511857019],[127,158,68,-4.96068069045847],[127,158,69,-4.95959952113215],[127,158,70,-4.965301327937436],[127,158,71,-4.983636603385645],[127,158,72,-5.002099009934525],[127,158,73,-4.97003380968557],[127,158,74,-4.960273990523726],[127,158,75,-4.959784332252019],[127,158,76,-4.956319358897275],[127,158,77,-4.942090447977921],[127,158,78,-4.915565385802559],[127,158,79,-4.885383341387334],[127,159,64,-4.9842278050312725],[127,159,65,-5.017381089441545],[127,159,66,-5.030294671565854],[127,159,67,-5.02861086467575],[127,159,68,-5.024051272727225],[127,159,69,-5.013127436915461],[127,159,70,-5.012722852225943],[127,159,71,-5.026841368941407],[127,159,72,-5.033247684845555],[127,159,73,-5.008757361964654],[127,159,74,-5.001193745166807],[127,159,75,-5.005299328007235],[127,159,76,-4.999489379106699],[127,159,77,-4.984241107087168],[127,159,78,-4.959990643539616],[127,159,79,-4.927535144260795],[127,160,64,-5.034937921022958],[127,160,65,-5.065720848452095],[127,160,66,-5.077140447373814],[127,160,67,-5.076987038347869],[127,160,68,-5.068358721883053],[127,160,69,-5.06177698888579],[127,160,70,-5.061242199785908],[127,160,71,-5.07292219313245],[127,160,72,-5.071132654688591],[127,160,73,-5.046991223809288],[127,160,74,-5.048775383710228],[127,160,75,-5.055059031232701],[127,160,76,-5.048541227803811],[127,160,77,-5.030336203657393],[127,160,78,-5.00665611785184],[127,160,79,-4.9753778397525625],[127,161,64,-5.084202852227177],[127,161,65,-5.112018483376792],[127,161,66,-5.1271493783181885],[127,161,67,-5.12464034691839],[127,161,68,-5.113518395222573],[127,161,69,-5.108514004802726],[127,161,70,-5.108759968429904],[127,161,71,-5.118234046711405],[127,161,72,-5.09819817593443],[127,161,73,-5.061954556952482],[127,161,74,-5.081340310824582],[127,161,75,-5.0914260297266365],[127,161,76,-5.088998601490068],[127,161,77,-5.070491339378235],[127,161,78,-5.043700611046641],[127,161,79,-5.014378660006809],[127,162,64,-5.137388728454515],[127,162,65,-5.166208273954023],[127,162,66,-5.1795134614227445],[127,162,67,-5.177521346520699],[127,162,68,-5.16503369174191],[127,162,69,-5.158615881725048],[127,162,70,-5.160404224541103],[127,162,71,-5.167837665137216],[127,162,72,-5.161754500846249],[127,162,73,-5.114206803717401],[127,162,74,-5.119025764088856],[127,162,75,-5.134901232419952],[127,162,76,-5.134698113431094],[127,162,77,-5.116671260639007],[127,162,78,-5.088247675122795],[127,162,79,-5.061781081107572],[127,163,64,-5.184025979217182],[127,163,65,-5.212927437219344],[127,163,66,-5.225824536944413],[127,163,67,-5.22079981797581],[127,163,68,-5.213235686432273],[127,163,69,-5.204088096390416],[127,163,70,-5.205512537085548],[127,163,71,-5.212318628109418],[127,163,72,-5.229668976610675],[127,163,73,-5.182614550337503],[127,163,74,-5.176252450458798],[127,163,75,-5.1932322396617305],[127,163,76,-5.193261524118268],[127,163,77,-5.172030829521615],[127,163,78,-5.142583310296325],[127,163,79,-5.116064109790808],[127,164,64,-5.2355246402187054],[127,164,65,-5.2571368777538074],[127,164,66,-5.262687012286588],[127,164,67,-5.252797216285411],[127,164,68,-5.240803499830267],[127,164,69,-5.225293645550886],[127,164,70,-5.22142369084],[127,164,71,-5.227037066575083],[127,164,72,-5.24303522453297],[127,164,73,-5.218800345784975],[127,164,74,-5.226379938741888],[127,164,75,-5.2410935989022995],[127,164,76,-5.240266333974131],[127,164,77,-5.2205033552933555],[127,164,78,-5.190419835398283],[127,164,79,-5.162659706042696],[127,165,64,-5.290467785643869],[127,165,65,-5.305352374684212],[127,165,66,-5.302860549716072],[127,165,67,-5.291928915606708],[127,165,68,-5.2755039018105085],[127,165,69,-5.2586224592507875],[127,165,70,-5.250951855767508],[127,165,71,-5.257726236230176],[127,165,72,-5.274139663680849],[127,165,73,-5.2595205767042765],[127,165,74,-5.269097861915341],[127,165,75,-5.283766082488172],[127,165,76,-5.280211703293104],[127,165,77,-5.259511139096329],[127,165,78,-5.23079873728791],[127,165,79,-5.200953827652589],[127,166,64,-5.336652167718098],[127,166,65,-5.352111424562106],[127,166,66,-5.348247042580207],[127,166,67,-5.336494887656016],[127,166,68,-5.31922008881248],[127,166,69,-5.303189864643583],[127,166,70,-5.29437573093628],[127,166,71,-5.301185936196008],[127,166,72,-5.321842079854233],[127,166,73,-5.3339108693816195],[127,166,74,-5.349224958518601],[127,166,75,-5.359555518804897],[127,166,76,-5.350013955026763],[127,166,77,-5.322323148653552],[127,166,78,-5.288764061113533],[127,166,79,-5.252061268385593],[127,167,64,-5.380678850569235],[127,167,65,-5.394270493396501],[127,167,66,-5.390456787066746],[127,167,67,-5.379600727254416],[127,167,68,-5.363350987406322],[127,167,69,-5.348941136392316],[127,167,70,-5.3398743198876595],[127,167,71,-5.344526565483513],[127,167,72,-5.367075186091392],[127,167,73,-5.3789220147205015],[127,167,74,-5.394947228680326],[127,167,75,-5.402798226837826],[127,167,76,-5.392603030510838],[127,167,77,-5.364177078595037],[127,167,78,-5.330019404724729],[127,167,79,-5.292025449526345],[127,168,64,-5.429595520234534],[127,168,65,-5.442150880066436],[127,168,66,-5.438568296306034],[127,168,67,-5.423997630661914],[127,168,68,-5.41013322332311],[127,168,69,-5.397413336814009],[127,168,70,-5.385792540611636],[127,168,71,-5.388927281537632],[127,168,72,-5.4116880781761925],[127,168,73,-5.4266625636214405],[127,168,74,-5.4461638507622325],[127,168,75,-5.452826179628101],[127,168,76,-5.442564610410739],[127,168,77,-5.412433190122301],[127,168,78,-5.376998235064317],[127,168,79,-5.338434255194148],[127,169,64,-5.472454119942598],[127,169,65,-5.4902164287064545],[127,169,66,-5.490398989961304],[127,169,67,-5.479472465703666],[127,169,68,-5.465602716718656],[127,169,69,-5.453243844818636],[127,169,70,-5.440578435550331],[127,169,71,-5.444739985402658],[127,169,72,-5.459205551084817],[127,169,73,-5.468715217723627],[127,169,74,-5.488947728318018],[127,169,75,-5.496811259982925],[127,169,76,-5.484904312482728],[127,169,77,-5.4549302261158354],[127,169,78,-5.416156243834226],[127,169,79,-5.3810141987946905],[127,170,64,-5.52714335970305],[127,170,65,-5.546138026354811],[127,170,66,-5.546153570511346],[127,170,67,-5.5356739820858],[127,170,68,-5.5177832752483456],[127,170,69,-5.505836549369725],[127,170,70,-5.493336066290738],[127,170,71,-5.495026552589051],[127,170,72,-5.516480820918082],[127,170,73,-5.527661473644755],[127,170,74,-5.543615271384576],[127,170,75,-5.549820916847631],[127,170,76,-5.5350915791899],[127,170,77,-5.504426902292918],[127,170,78,-5.466940955427081],[127,170,79,-5.4306095402378185],[127,171,64,-5.57751946330829],[127,171,65,-5.594740235805471],[127,171,66,-5.5936850163580605],[127,171,67,-5.583550555484807],[127,171,68,-5.56484628406433],[127,171,69,-5.5531624780812106],[127,171,70,-5.542663022715256],[127,171,71,-5.5417593737563],[127,171,72,-5.561499093330426],[127,171,73,-5.583123682949161],[127,171,74,-5.607307321448346],[127,171,75,-5.610500391947005],[127,171,76,-5.596432455082398],[127,171,77,-5.56749524393305],[127,171,78,-5.529215062401011],[127,171,79,-5.490700399744689],[127,172,64,-5.618183597177331],[127,172,65,-5.6337460596605675],[127,172,66,-5.631451072575604],[127,172,67,-5.621857618127236],[127,172,68,-5.606596860916825],[127,172,69,-5.592987469351129],[127,172,70,-5.585198365630348],[127,172,71,-5.584215068205406],[127,172,72,-5.602543097042053],[127,172,73,-5.643319969222596],[127,172,74,-5.675726093538925],[127,172,75,-5.681412877178407],[127,172,76,-5.6694881494333815],[127,172,77,-5.641058354382393],[127,172,78,-5.601091888794409],[127,172,79,-5.56128307604429],[127,173,64,-5.668135223327641],[127,173,65,-5.681992772744829],[127,173,66,-5.678210412385201],[127,173,67,-5.666786962740627],[127,173,68,-5.652337678482858],[127,173,69,-5.638672510874325],[127,173,70,-5.632998375858761],[127,173,71,-5.630628008945868],[127,173,72,-5.648337575706797],[127,173,73,-5.69183139507129],[127,173,74,-5.724816732166126],[127,173,75,-5.7323706428318175],[127,173,76,-5.722866292172216],[127,173,77,-5.693040398791911],[127,173,78,-5.650985071754785],[127,173,79,-5.609565022860053],[127,174,64,-5.71653352035562],[127,174,65,-5.728492279627842],[127,174,66,-5.722456964353923],[127,174,67,-5.71040094446958],[127,174,68,-5.696114195411259],[127,174,69,-5.6832195442035545],[127,174,70,-5.677382843329571],[127,174,71,-5.6760675212360745],[127,174,72,-5.6954884636735],[127,174,73,-5.732038222937244],[127,174,74,-5.762416331439527],[127,174,75,-5.77535797056344],[127,174,76,-5.768769692130251],[127,174,77,-5.740891980822591],[127,174,78,-5.7003457401280055],[127,174,79,-5.658636161890111],[127,175,64,-5.760337010461537],[127,175,65,-5.771925982413909],[127,175,66,-5.766875709671083],[127,175,67,-5.754333761997923],[127,175,68,-5.739223951245242],[127,175,69,-5.726592945237491],[127,175,70,-5.723727206200573],[127,175,71,-5.722457507587207],[127,175,72,-5.7410980015460735],[127,175,73,-5.774362885528108],[127,175,74,-5.800692496983426],[127,175,75,-5.814830424707283],[127,175,76,-5.814350461916762],[127,175,77,-5.786108036962727],[127,175,78,-5.74587427764154],[127,175,79,-5.705597739182052],[127,176,64,-5.8084994262208935],[127,176,65,-5.819458503506729],[127,176,66,-5.812837826876464],[127,176,67,-5.799567612486231],[127,176,68,-5.783042620370172],[127,176,69,-5.769816422561273],[127,176,70,-5.767262060949492],[127,176,71,-5.767023438627795],[127,176,72,-5.787188108405454],[127,176,73,-5.819068927339421],[127,176,74,-5.846999628251173],[127,176,75,-5.862874633930891],[127,176,76,-5.8633549579219935],[127,176,77,-5.834863526935145],[127,176,78,-5.794001118998265],[127,176,79,-5.755336849383454],[127,177,64,-5.866058494790868],[127,177,65,-5.8673869182100615],[127,177,66,-5.854975897502567],[127,177,67,-5.837173734168359],[127,177,68,-5.81656149382585],[127,177,69,-5.805988026037204],[127,177,70,-5.799300699731881],[127,177,71,-5.79931648880029],[127,177,72,-5.821933163590877],[127,177,73,-5.863886596422058],[127,177,74,-5.938648138180031],[127,177,75,-5.99810482403712],[127,177,76,-5.996145059926664],[127,177,77,-5.960898095642119],[127,177,78,-5.919472845411891],[127,177,79,-5.874608747516857],[127,178,64,-5.923451610895785],[127,178,65,-5.923108037942362],[127,178,66,-5.907421177127898],[127,178,67,-5.8877234231186755],[127,178,68,-5.866138040574769],[127,178,69,-5.856608741609603],[127,178,70,-5.848337975196246],[127,178,71,-5.850469596472936],[127,178,72,-5.871592418106945],[127,178,73,-5.905142232274778],[127,178,74,-5.9898496312652725],[127,178,75,-6.054575442830916],[127,178,76,-6.042743162839958],[127,178,77,-6.011195827821221],[127,178,78,-5.969313285736416],[127,178,79,-5.927575987059587],[127,179,64,-5.972874947166624],[127,179,65,-5.973747823683878],[127,179,66,-5.954533011359008],[127,179,67,-5.9314755172472715],[127,179,68,-5.911446884963912],[127,179,69,-5.903488936742426],[127,179,70,-5.895970536484924],[127,179,71,-5.895919574676424],[127,179,72,-5.916299824299333],[127,179,73,-5.950157403478745],[127,179,74,-6.045628132800797],[127,179,75,-6.108018004117995],[127,179,76,-6.097121929984707],[127,179,77,-6.070757575974192],[127,179,78,-6.029175077954213],[127,179,79,-5.988796028347385],[127,180,64,-6.015367276692794],[127,180,65,-6.016361751468254],[127,180,66,-5.996886385915651],[127,180,67,-5.9728930784660115],[127,180,68,-5.950404765832577],[127,180,69,-5.938899770390954],[127,180,70,-5.931610519928974],[127,180,71,-5.929211064731543],[127,180,72,-5.9497289859676386],[127,180,73,-5.981108751240461],[127,180,74,-6.07666049153355],[127,180,75,-6.139887735898186],[127,180,76,-6.136876140262087],[127,180,77,-6.110185170296053],[127,180,78,-6.070485460493705],[127,180,79,-6.0292884126826705],[127,181,64,-6.054427544284754],[127,181,65,-6.060309354505032],[127,181,66,-6.050512111043548],[127,181,67,-6.030968820231722],[127,181,68,-6.011423241095346],[127,181,69,-5.99824765390638],[127,181,70,-5.99193618364232],[127,181,71,-5.989071474913222],[127,181,72,-6.007878710468657],[127,181,73,-6.0382009731568225],[127,181,74,-6.060615452567807],[127,181,75,-6.066340460700844],[127,181,76,-6.071069205204152],[127,181,77,-6.06572968228625],[127,181,78,-6.030593658639834],[127,181,79,-5.995027884016153],[127,182,64,-6.099906055546785],[127,182,65,-6.109656111372063],[127,182,66,-6.098373827592302],[127,182,67,-6.078490612516986],[127,182,68,-6.060907671152687],[127,182,69,-6.048189904119131],[127,182,70,-6.041145841801162],[127,182,71,-6.038113903911447],[127,182,72,-6.054769346772015],[127,182,73,-6.086855502375507],[127,182,74,-6.109166187479003],[127,182,75,-6.115015161940473],[127,182,76,-6.120238882131629],[127,182,77,-6.112024409040167],[127,182,78,-6.077503720535883],[127,182,79,-6.030126526654342],[127,183,64,-6.144696107588194],[127,183,65,-6.155937114412662],[127,183,66,-6.144539245559517],[127,183,67,-6.124635252490611],[127,183,68,-6.110198601441577],[127,183,69,-6.096131101734019],[127,183,70,-6.089381051948749],[127,183,71,-6.088726653092896],[127,183,72,-6.104076354631745],[127,183,73,-6.139313645099561],[127,183,74,-6.160606648768488],[127,183,75,-6.171751477068138],[127,183,76,-6.1713149555133],[127,183,77,-6.161668117898464],[127,183,78,-6.127303708066775],[127,183,79,-6.081791664554452],[127,184,64,-6.189907249487572],[127,184,65,-6.202981434280809],[127,184,66,-6.193775600110775],[127,184,67,-6.174719478583837],[127,184,68,-6.159871106007407],[127,184,69,-6.143893082341259],[127,184,70,-6.137796462764248],[127,184,71,-6.135059627124307],[127,184,72,-6.152033994104659],[127,184,73,-6.188602934481157],[127,184,74,-6.208804116516247],[127,184,75,-6.214247982231945],[127,184,76,-6.213217948336649],[127,184,77,-6.198508787279367],[127,184,78,-6.169824554015992],[127,184,79,-6.128653665621085],[127,185,64,-6.235150241909819],[127,185,65,-6.247789529971063],[127,185,66,-6.242148985668554],[127,185,67,-6.226191850584766],[127,185,68,-6.208805559525991],[127,185,69,-6.194031926006163],[127,185,70,-6.186609125057798],[127,185,71,-6.182238569006064],[127,185,72,-6.199951642306746],[127,185,73,-6.236157113167596],[127,185,74,-6.25866340542205],[127,185,75,-6.263221786976786],[127,185,76,-6.25281529165209],[127,185,77,-6.230312342365901],[127,185,78,-6.209836298550609],[127,185,79,-6.171570239378132],[127,186,64,-6.28669377496036],[127,186,65,-6.29899084743308],[127,186,66,-6.296807869590587],[127,186,67,-6.280335237139209],[127,186,68,-6.260438962236254],[127,186,69,-6.248672763131055],[127,186,70,-6.2405862508873415],[127,186,71,-6.236619579151316],[127,186,72,-6.25526891386055],[127,186,73,-6.2920195695217185],[127,186,74,-6.31143610779316],[127,186,75,-6.315376452593754],[127,186,76,-6.304587764650114],[127,186,77,-6.280406423610463],[127,186,78,-6.266961162155329],[127,186,79,-6.245414391953181],[127,187,64,-6.332545884349451],[127,187,65,-6.34605726288179],[127,187,66,-6.342796150630658],[127,187,67,-6.3286826306845025],[127,187,68,-6.307328256465165],[127,187,69,-6.296146847173246],[127,187,70,-6.2867983395156],[127,187,71,-6.286753271186247],[127,187,72,-6.307439133046585],[127,187,73,-6.341706811238735],[127,187,74,-6.3609428373568075],[127,187,75,-6.363436044096583],[127,187,76,-6.34891051356535],[127,187,77,-6.3244107562188],[127,187,78,-6.306467000890916],[127,187,79,-6.293070878425806],[127,188,64,-6.359685737700539],[127,188,65,-6.371477733361046],[127,188,66,-6.3679221196783455],[127,188,67,-6.354281170889172],[127,188,68,-6.337098322262138],[127,188,69,-6.323821537173364],[127,188,70,-6.316655184700967],[127,188,71,-6.318206958541074],[127,188,72,-6.338233341760749],[127,188,73,-6.373119091049839],[127,188,74,-6.391461050902808],[127,188,75,-6.390070220662348],[127,188,76,-6.371901122060448],[127,188,77,-6.3438712161948185],[127,188,78,-6.318604044116249],[127,188,79,-6.314442685762174],[127,189,64,-6.402919010265465],[127,189,65,-6.417374582228582],[127,189,66,-6.418172448772922],[127,189,67,-6.407562630352538],[127,189,68,-6.391664843558527],[127,189,69,-6.3777344127164355],[127,189,70,-6.371208388723249],[127,189,71,-6.368496832315034],[127,189,72,-6.381776846261521],[127,189,73,-6.411387846983074],[127,189,74,-6.428679498558189],[127,189,75,-6.426236326667022],[127,189,76,-6.409180596638003],[127,189,77,-6.3849478513099545],[127,189,78,-6.373929431634688],[127,189,79,-6.392938123032845],[127,190,64,-6.452514712817157],[127,190,65,-6.4660035656841535],[127,190,66,-6.46616711187122],[127,190,67,-6.453882920633358],[127,190,68,-6.436865349745289],[127,190,69,-6.424941146367503],[127,190,70,-6.421872734824758],[127,190,71,-6.418472656981634],[127,190,72,-6.4323984441673785],[127,190,73,-6.458792045804001],[127,190,74,-6.475755118503392],[127,190,75,-6.473912985477297],[127,190,76,-6.456899117011358],[127,190,77,-6.42878756320827],[127,190,78,-6.420147568942469],[127,190,79,-6.433282202388495],[127,191,64,-6.499898345098255],[127,191,65,-6.516567857952849],[127,191,66,-6.513048063873255],[127,191,67,-6.499083782580607],[127,191,68,-6.482065770798764],[127,191,69,-6.473351143923624],[127,191,70,-6.470951276902784],[127,191,71,-6.470893586527905],[127,191,72,-6.484892513089976],[127,191,73,-6.510318170642782],[127,191,74,-6.526184273856511],[127,191,75,-6.5235901681478285],[127,191,76,-6.505639237027341],[127,191,77,-6.473153216915331],[127,191,78,-6.464592935111587],[127,191,79,-6.47619590328978],[127,192,64,-6.54828253806388],[127,192,65,-6.565271215363303],[127,192,66,-6.560436950648923],[127,192,67,-6.545693625209717],[127,192,68,-6.529603392772693],[127,192,69,-6.520910399706767],[127,192,70,-6.520010721259565],[127,192,71,-6.520623361940648],[127,192,72,-6.536105915434039],[127,192,73,-6.557577171325091],[127,192,74,-6.5737734534535495],[127,192,75,-6.571914362372644],[127,192,76,-6.55378477817777],[127,192,77,-6.520881430732183],[127,192,78,-6.5019363132951735],[127,192,79,-6.509602504588847],[127,193,64,-6.604689355007119],[127,193,65,-6.6143441110402],[127,193,66,-6.6022759053884785],[127,193,67,-6.583137831102225],[127,193,68,-6.567296065067145],[127,193,69,-6.559125368764913],[127,193,70,-6.558500754478933],[127,193,71,-6.565061130728789],[127,193,72,-6.587787036914812],[127,193,73,-6.615083229243951],[127,193,74,-6.6344106239264775],[127,193,75,-6.631308024346535],[127,193,76,-6.612154830747094],[127,193,77,-6.578916092923904],[127,193,78,-6.536894097556452],[127,193,79,-6.51954912193543],[127,194,64,-6.657443554081945],[127,194,65,-6.664228794615642],[127,194,66,-6.6519666992478435],[127,194,67,-6.635145355559867],[127,194,68,-6.620162830019489],[127,194,69,-6.610693059182383],[127,194,70,-6.609974103196599],[127,194,71,-6.614966628018758],[127,194,72,-6.638865201080093],[127,194,73,-6.669693876754881],[127,194,74,-6.69174911998883],[127,194,75,-6.690037411541944],[127,194,76,-6.669159962332422],[127,194,77,-6.631724051325964],[127,194,78,-6.590473857011001],[127,194,79,-6.565414563189079],[127,195,64,-6.704785810942846],[127,195,65,-6.7081242186976935],[127,195,66,-6.698520432481678],[127,195,67,-6.68482467086173],[127,195,68,-6.668368115352585],[127,195,69,-6.658918149580153],[127,195,70,-6.654761651314027],[127,195,71,-6.660559372478771],[127,195,72,-6.685623417977037],[127,195,73,-6.718920245503054],[127,195,74,-6.74336346524588],[127,195,75,-6.741275260276107],[127,195,76,-6.721284663103816],[127,195,77,-6.683671222088601],[127,195,78,-6.640945845305786],[127,195,79,-6.609847930466258],[127,196,64,-6.75314426800359],[127,196,65,-6.766744805856089],[127,196,66,-6.762329999775049],[127,196,67,-6.755011439656708],[127,196,68,-6.744064064906485],[127,196,69,-6.739742041819311],[127,196,70,-6.736760053347133],[127,196,71,-6.745651862544647],[127,196,72,-6.773675352442774],[127,196,73,-6.808232843984109],[127,196,74,-6.832350165161117],[127,196,75,-6.8327357568233875],[127,196,76,-6.814272684114582],[127,196,77,-6.780371446567881],[127,196,78,-6.736173083801144],[127,196,79,-6.696536210397979],[127,197,64,-6.798847276225859],[127,197,65,-6.81577099173579],[127,197,66,-6.812713211813341],[127,197,67,-6.804451693282664],[127,197,68,-6.791165650524099],[127,197,69,-6.787433021226394],[127,197,70,-6.7857859156667475],[127,197,71,-6.794159884808003],[127,197,72,-6.823227345048933],[127,197,73,-6.8575489832421495],[127,197,74,-6.878387623467664],[127,197,75,-6.879971888787811],[127,197,76,-6.861997811130942],[127,197,77,-6.830522837403744],[127,197,78,-6.789439938994995],[127,197,79,-6.7698497396430515],[127,198,64,-6.846541121336403],[127,198,65,-6.86477011000168],[127,198,66,-6.860215911390938],[127,198,67,-6.850638795461072],[127,198,68,-6.8379657004022265],[127,198,69,-6.832481676346444],[127,198,70,-6.832410383260752],[127,198,71,-6.841245515400554],[127,198,72,-6.870010928634036],[127,198,73,-6.9060998907056295],[127,198,74,-6.925946496348487],[127,198,75,-6.930588902855591],[127,198,76,-6.912659751178656],[127,198,77,-6.882010726626833],[127,198,78,-6.8401045450425215],[127,198,79,-6.828047834212677],[127,199,64,-6.895699964687782],[127,199,65,-6.914096255017676],[127,199,66,-6.910205280534811],[127,199,67,-6.900609190065925],[127,199,68,-6.889280264696576],[127,199,69,-6.881808554293841],[127,199,70,-6.882117729757379],[127,199,71,-6.891012218728004],[127,199,72,-6.920847209263498],[127,199,73,-6.955791717554311],[127,199,74,-6.975225820448559],[127,199,75,-6.979924943172852],[127,199,76,-6.963848948319289],[127,199,77,-6.932259902457256],[127,199,78,-6.889077680812844],[127,199,79,-6.881360220564984],[127,200,64,-6.9422204945622505],[127,200,65,-6.961640022598809],[127,200,66,-6.96039902838349],[127,200,67,-6.951347464524895],[127,200,68,-6.939618099452807],[127,200,69,-6.932649928616075],[127,200,70,-6.9322679504321085],[127,200,71,-6.941083060632767],[127,200,72,-6.9709965682060755],[127,200,73,-7.005164843440582],[127,200,74,-7.0241077232149625],[127,200,75,-7.024079429158609],[127,200,76,-7.008785518034614],[127,200,77,-6.978298596904496],[127,200,78,-6.938198670192724],[127,200,79,-6.935230289903003],[127,201,64,-6.976435158837223],[127,201,65,-6.999584254052291],[127,201,66,-7.003330477828988],[127,201,67,-6.992810089997196],[127,201,68,-6.983950571143952],[127,201,69,-6.975289056023319],[127,201,70,-6.975702349174762],[127,201,71,-6.989466046010012],[127,201,72,-7.019366180674311],[127,201,73,-7.059260167403418],[127,201,74,-7.078055030813699],[127,201,75,-7.077318800668993],[127,201,76,-7.061414765790427],[127,201,77,-7.03121509569131],[127,201,78,-6.998611721192646],[127,201,79,-6.994781836838218],[127,202,64,-7.029049593963388],[127,202,65,-7.053936463666191],[127,202,66,-7.057177892607829],[127,202,67,-7.046429159286303],[127,202,68,-7.038674919573281],[127,202,69,-7.030745359628009],[127,202,70,-7.029440931816557],[127,202,71,-7.0420006658067935],[127,202,72,-7.071993229397136],[127,202,73,-7.113099369123633],[127,202,74,-7.1296009122805435],[127,202,75,-7.130873372936352],[127,202,76,-7.113352077540658],[127,202,77,-7.084171017439398],[127,202,78,-7.052249605689175],[127,202,79,-7.041322405751657],[127,203,64,-7.078226784290696],[127,203,65,-7.1024319284018365],[127,203,66,-7.106911212781882],[127,203,67,-7.096347225350437],[127,203,68,-7.088988404276313],[127,203,69,-7.08240076750309],[127,203,70,-7.080035355254367],[127,203,71,-7.089264509410419],[127,203,72,-7.1197393099122115],[127,203,73,-7.161192370955074],[127,203,74,-7.177714561694622],[127,203,75,-7.177762661648636],[127,203,76,-7.162783716603638],[127,203,77,-7.13224643183091],[127,203,78,-7.105106524944925],[127,203,79,-7.094953367722645],[127,204,64,-7.115570568877258],[127,204,65,-7.136734176846928],[127,204,66,-7.136671775035],[127,204,67,-7.128153522937226],[127,204,68,-7.119075480638625],[127,204,69,-7.111243192979852],[127,204,70,-7.10983161132067],[127,204,71,-7.11555597915968],[127,204,72,-7.147094309121611],[127,204,73,-7.184450928512181],[127,204,74,-7.20110279412917],[127,204,75,-7.200860051200034],[127,204,76,-7.18856303399333],[127,204,77,-7.158261695029187],[127,204,78,-7.13971832733057],[127,204,79,-7.126159161080862],[127,205,64,-7.173462820318372],[127,205,65,-7.196792011127589],[127,205,66,-7.199437971437686],[127,205,67,-7.191816185640927],[127,205,68,-7.181699657412009],[127,205,69,-7.171592185324999],[127,205,70,-7.1690035190400225],[127,205,71,-7.17187337213264],[127,205,72,-7.191949342115219],[127,205,73,-7.22110101958844],[127,205,74,-7.2398512961433115],[127,205,75,-7.240003221246121],[127,205,76,-7.235954940249039],[127,205,77,-7.281065100020399],[127,205,78,-7.269827254543057],[127,205,79,-7.2182748859653865],[127,206,64,-7.22186483397869],[127,206,65,-7.250448586165469],[127,206,66,-7.25128011577242],[127,206,67,-7.244980889338542],[127,206,68,-7.231022666805567],[127,206,69,-7.222146880910215],[127,206,70,-7.2208942737389785],[127,206,71,-7.224148305340009],[127,206,72,-7.2401138342540605],[127,206,73,-7.268322338245323],[127,206,74,-7.288216808952042],[127,206,75,-7.290359951409427],[127,206,76,-7.301743952609131],[127,206,77,-7.343807325149056],[127,206,78,-7.32711009024397],[127,206,79,-7.272159406749425],[127,207,64,-7.275447753981479],[127,207,65,-7.302931089075067],[127,207,66,-7.307541486615984],[127,207,67,-7.297757106552639],[127,207,68,-7.285893600674948],[127,207,69,-7.277032742587],[127,207,70,-7.274980967546881],[127,207,71,-7.277083174553036],[127,207,72,-7.2916233155033465],[127,207,73,-7.31896064191794],[127,207,74,-7.339321889406238],[127,207,75,-7.3421744959459225],[127,207,76,-7.354188711137311],[127,207,77,-7.403475722551144],[127,207,78,-7.385110302155201],[127,207,79,-7.320229994790814],[127,208,64,-7.323938265023259],[127,208,65,-7.351160584912113],[127,208,66,-7.358748944095265],[127,208,67,-7.34922356194817],[127,208,68,-7.337591691307269],[127,208,69,-7.328734889311528],[127,208,70,-7.3266736786439175],[127,208,71,-7.326973203997327],[127,208,72,-7.343624288531337],[127,208,73,-7.370248332719868],[127,208,74,-7.390298216778387],[127,208,75,-7.410646705364657],[127,208,76,-7.448386735280356],[127,208,77,-7.486380778368737],[127,208,78,-7.453081999085943],[127,208,79,-7.382104725033423],[127,209,64,-7.370305628138461],[127,209,65,-7.397275072622667],[127,209,66,-7.409183421668418],[127,209,67,-7.401598943221427],[127,209,68,-7.3894502672558104],[127,209,69,-7.378759741394111],[127,209,70,-7.376197413311696],[127,209,71,-7.376767393673445],[127,209,72,-7.395301420051639],[127,209,73,-7.423535628249873],[127,209,74,-7.441420904308263],[127,209,75,-7.472354316099127],[127,209,76,-7.506368618585879],[127,209,77,-7.545600975915076],[127,209,78,-7.507601846854863],[127,209,79,-7.432987359304514],[127,210,64,-7.420833171236992],[127,210,65,-7.448941802809917],[127,210,66,-7.463162478146233],[127,210,67,-7.4572214976482805],[127,210,68,-7.447366327140519],[127,210,69,-7.4333803662979525],[127,210,70,-7.429468088028296],[127,210,71,-7.430206582167955],[127,210,72,-7.450684388186488],[127,210,73,-7.479569566293456],[127,210,74,-7.500204713962604],[127,210,75,-7.520838857752225],[127,210,76,-7.557688999740275],[127,210,77,-7.603184866693595],[127,210,78,-7.562299517227067],[127,210,79,-7.484957514688064],[127,211,64,-7.4674545263622685],[127,211,65,-7.497278353582786],[127,211,66,-7.5111179523786475],[127,211,67,-7.505242150611467],[127,211,68,-7.495938564329071],[127,211,69,-7.482724900638037],[127,211,70,-7.4802303401149866],[127,211,71,-7.4814151273347065],[127,211,72,-7.500171729149853],[127,211,73,-7.53251670767007],[127,211,74,-7.5526198279540235],[127,211,75,-7.574072257739283],[127,211,76,-7.622126425476191],[127,211,77,-7.661148205027483],[127,211,78,-7.622790280238588],[127,211,79,-7.541741801917283],[127,212,64,-7.525932963467289],[127,212,65,-7.554568859992276],[127,212,66,-7.566836876403305],[127,212,67,-7.561442902842261],[127,212,68,-7.552191505244287],[127,212,69,-7.541597081231073],[127,212,70,-7.538408229346084],[127,212,71,-7.541899236461494],[127,212,72,-7.561463036653658],[127,212,73,-7.5925838811837565],[127,212,74,-7.613037357231125],[127,212,75,-7.639118899151188],[127,212,76,-7.682611872285627],[127,212,77,-7.712996006394347],[127,212,78,-7.670030706041391],[127,212,79,-7.589860537509805],[127,213,64,-7.5676202195295454],[127,213,65,-7.599067333166857],[127,213,66,-7.616354192474892],[127,213,67,-7.61580717539647],[127,213,68,-7.605754782481666],[127,213,69,-7.599100313780426],[127,213,70,-7.598477487077641],[127,213,71,-7.600380798427044],[127,213,72,-7.618084277184991],[127,213,73,-7.647493055946575],[127,213,74,-7.666724485841784],[127,213,75,-7.6982172759114365],[127,213,76,-7.743383860935016],[127,213,77,-7.769896065697898],[127,213,78,-7.722251866347102],[127,213,79,-7.666685071199381],[127,214,64,-7.616912223353036],[127,214,65,-7.6511018051807635],[127,214,66,-7.667705707851579],[127,214,67,-7.668454268800219],[127,214,68,-7.658455724882727],[127,214,69,-7.651378378015577],[127,214,70,-7.648703831642674],[127,214,71,-7.651133626643029],[127,214,72,-7.670622170803713],[127,214,73,-7.701748034544944],[127,214,74,-7.720414549120029],[127,214,75,-7.752801254561206],[127,214,76,-7.7797453054208265],[127,214,77,-7.805209490122215],[127,214,78,-7.764692592594287],[127,214,79,-7.710378822645173],[127,215,64,-7.674502378632659],[127,215,65,-7.708558383048038],[127,215,66,-7.7243747955797195],[127,215,67,-7.723672424477962],[127,215,68,-7.7121412018450926],[127,215,69,-7.703823062160032],[127,215,70,-7.700839939926688],[127,215,71,-7.70294936015382],[127,215,72,-7.7235950632153925],[127,215,73,-7.754279016094841],[127,215,74,-7.775100869062842],[127,215,75,-7.7965877974291375],[127,215,76,-7.82182698872971],[127,215,77,-7.845997990297719],[127,215,78,-7.807475733758531],[127,215,79,-7.756829430517192],[127,216,64,-7.729658895628372],[127,216,65,-7.761017580316937],[127,216,66,-7.77471599492849],[127,216,67,-7.77225501633984],[127,216,68,-7.760817364040268],[127,216,69,-7.753753061473244],[127,216,70,-7.750225507960391],[127,216,71,-7.752367357478543],[127,216,72,-7.774516675192832],[127,216,73,-7.805510606155875],[127,216,74,-7.827895041820934],[127,216,75,-7.82578551755195],[127,216,76,-7.8418921866152465],[127,216,77,-7.878888395907177],[127,216,78,-7.859408510832886],[127,216,79,-7.808009147988319],[127,217,64,-7.78948040897397],[127,217,65,-7.813348654194855],[127,217,66,-7.818094944298164],[127,217,67,-7.809542359486122],[127,217,68,-7.802222945328503],[127,217,69,-7.7940711187014635],[127,217,70,-7.790130256254336],[127,217,71,-7.795735570318173],[127,217,72,-7.8220977238101375],[127,217,73,-7.8548393246197925],[127,217,74,-7.878012980404527],[127,217,75,-7.878187342462593],[127,217,76,-7.887423462367541],[127,217,77,-7.919736164812552],[127,217,78,-7.905121424384464],[127,217,79,-7.854060536763464],[127,218,64,-7.846291228080128],[127,218,65,-7.869504702231685],[127,218,66,-7.871709111356456],[127,218,67,-7.863544820505241],[127,218,68,-7.857502604011544],[127,218,69,-7.84904518064673],[127,218,70,-7.845162347913565],[127,218,71,-7.850832018050881],[127,218,72,-7.876404251259142],[127,218,73,-7.908266267535971],[127,218,74,-7.930041100869143],[127,218,75,-7.932081892158782],[127,218,76,-7.934557858791582],[127,218,77,-7.964093104259895],[127,218,78,-7.952613041561724],[127,218,79,-7.903127872139574],[127,219,64,-7.897433825393329],[127,219,65,-7.92008329427276],[127,219,66,-7.921638590234105],[127,219,67,-7.912219881275996],[127,219,68,-7.905155280348787],[127,219,69,-7.895508519693609],[127,219,70,-7.893111906643298],[127,219,71,-7.898089323141409],[127,219,72,-7.923205857141628],[127,219,73,-7.95602246393316],[127,219,74,-7.980404553832343],[127,219,75,-7.982115965637262],[127,219,76,-7.9905480526162735],[127,219,77,-8.01981825177488],[127,219,78,-8.0067616303636],[127,219,79,-7.961720807291205],[127,220,64,-7.936597422253667],[127,220,65,-7.9566570397220975],[127,220,66,-7.957081932165271],[127,220,67,-7.946188255519397],[127,220,68,-7.935611877237863],[127,220,69,-7.926761877330073],[127,220,70,-7.9265287598881775],[127,220,71,-7.930891692463284],[127,220,72,-7.956040801266772],[127,220,73,-7.987447572224166],[127,220,74,-8.012459470042],[127,220,75,-8.01392957763906],[127,220,76,-8.034700365457656],[127,220,77,-8.06617152904338],[127,220,78,-8.047879144040161],[127,220,79,-8.009638494505415],[127,221,64,-7.985823741366946],[127,221,65,-8.00692421429782],[127,221,66,-8.007773999406854],[127,221,67,-7.995686500492587],[127,221,68,-7.9854495872113205],[127,221,69,-7.975890896401014],[127,221,70,-7.975739403980566],[127,221,71,-7.980910114306694],[127,221,72,-8.00610457337632],[127,221,73,-8.039087081382899],[127,221,74,-8.06042037876623],[127,221,75,-8.061353150735687],[127,221,76,-8.090890166474386],[127,221,77,-8.118936290543246],[127,221,78,-8.11051861398919],[127,221,79,-8.05720853425848],[127,222,64,-8.036405456453833],[127,222,65,-8.05604385253164],[127,222,66,-8.059491436730218],[127,222,67,-8.047843514348124],[127,222,68,-8.03636291227612],[127,222,69,-8.024767392834983],[127,222,70,-8.023181468797127],[127,222,71,-8.029872268897858],[127,222,72,-8.055794320370202],[127,222,73,-8.088683462583896],[127,222,74,-8.110715358578105],[127,222,75,-8.111330588741959],[127,222,76,-8.137045096330803],[127,222,77,-8.163637328438531],[127,222,78,-8.160377551659058],[127,222,79,-8.10453621987548],[127,223,64,-8.094170426296724],[127,223,65,-8.113686586799401],[127,223,66,-8.116352997856872],[127,223,67,-8.104625148128111],[127,223,68,-8.089861366864696],[127,223,69,-8.079420598327104],[127,223,70,-8.073827726943522],[127,223,71,-8.078737619158149],[127,223,72,-8.103772623007469],[127,223,73,-8.138986690984266],[127,223,74,-8.161279361956096],[127,223,75,-8.16249781487788],[127,223,76,-8.211017914703698],[127,223,77,-8.215555239496178],[127,223,78,-8.190016771273308],[127,223,79,-8.148221656096847],[127,224,64,-8.14460603018355],[127,224,65,-8.165247667912839],[127,224,66,-8.16875857608405],[127,224,67,-8.15560554599578],[127,224,68,-8.141187878324468],[127,224,69,-8.12844636893771],[127,224,70,-8.123619328465358],[127,224,71,-8.125510846673393],[127,224,72,-8.151417083468452],[127,224,73,-8.186847976193242],[127,224,74,-8.211495189670606],[127,224,75,-8.212808231589888],[127,224,76,-8.257997463231312],[127,224,77,-8.268864206683848],[127,224,78,-8.236742701434768],[127,224,79,-8.197380080754865],[127,225,64,-8.199678367364996],[127,225,65,-8.220183857322677],[127,225,66,-8.217484620533357],[127,225,67,-8.200414498130856],[127,225,68,-8.183416505110927],[127,225,69,-8.171041722981837],[127,225,70,-8.166334977035058],[127,225,71,-8.167510519358288],[127,225,72,-8.191956418065688],[127,225,73,-8.226718500741258],[127,225,74,-8.252017914506176],[127,225,75,-8.253017159534961],[127,225,76,-8.304761801177964],[127,225,77,-8.322416988369595],[127,225,78,-8.280731574046388],[127,225,79,-8.241385906414017],[127,226,64,-8.256405867311013],[127,226,65,-8.276974156556776],[127,226,66,-8.273760050503077],[127,226,67,-8.255055087421194],[127,226,68,-8.235810898599377],[127,226,69,-8.22420619838201],[127,226,70,-8.21905566583772],[127,226,71,-8.221336171434507],[127,226,72,-8.246431255945732],[127,226,73,-8.28026911569074],[127,226,74,-8.302553785183598],[127,226,75,-8.306133761585867],[127,226,76,-8.349340941520614],[127,226,77,-8.369037508711699],[127,226,78,-8.331498024564587],[127,226,79,-8.286933186309955],[127,227,64,-8.306695933868863],[127,227,65,-8.324872638568067],[127,227,66,-8.323726349901833],[127,227,67,-8.304024319486723],[127,227,68,-8.285673011556149],[127,227,69,-8.273885989843192],[127,227,70,-8.267588479805136],[127,227,71,-8.269726847530615],[127,227,72,-8.296265546342902],[127,227,73,-8.329919348652595],[127,227,74,-8.351418646405921],[127,227,75,-8.356818639666741],[127,227,76,-8.406791406983377],[127,227,77,-8.42834536333753],[127,227,78,-8.395551066294553],[127,227,79,-8.349997323865159],[127,228,64,-8.351253580586791],[127,228,65,-8.369237227115681],[127,228,66,-8.36818413414178],[127,228,67,-8.346828610205483],[127,228,68,-8.324815934510529],[127,228,69,-8.312479436692188],[127,228,70,-8.305195433310349],[127,228,71,-8.307880907272523],[127,228,72,-8.335701835295923],[127,228,73,-8.373128598897766],[127,228,74,-8.39233893919875],[127,228,75,-8.395807997390248],[127,228,76,-8.464997104299144],[127,228,77,-8.477602838468433],[127,228,78,-8.456846876502151],[127,228,79,-8.410552654384523],[127,229,64,-8.391416062934285],[127,229,65,-8.415079789711305],[127,229,66,-8.41971383899993],[127,229,67,-8.403227130554592],[127,229,68,-8.385847879815309],[127,229,69,-8.370454938433923],[127,229,70,-8.362795912415784],[127,229,71,-8.368704149236446],[127,229,72,-8.39565389367243],[127,229,73,-8.43429195110871],[127,229,74,-8.454225192415349],[127,229,75,-8.475096680692847],[127,229,76,-8.536087260165278],[127,229,77,-8.545846746321205],[127,229,78,-8.517437815783268],[127,229,79,-8.462718824075337],[127,230,64,-8.439589895506352],[127,230,65,-8.464922366077596],[127,230,66,-8.467455681648449],[127,230,67,-8.451858850063706],[127,230,68,-8.43569764658199],[127,230,69,-8.417426760846542],[127,230,70,-8.411378912371939],[127,230,71,-8.415923508478102],[127,230,72,-8.446219450854613],[127,230,73,-8.484506380225927],[127,230,74,-8.504848648043598],[127,230,75,-8.532313480622038],[127,230,76,-8.58709157547614],[127,230,77,-8.603818573564931],[127,230,78,-8.560461291414018],[127,230,79,-8.507854889597112],[127,231,64,-8.492906784840068],[127,231,65,-8.520068515435216],[127,231,66,-8.521296630691419],[127,231,67,-8.505243923961668],[127,231,68,-8.486489536362928],[127,231,69,-8.468877744382878],[127,231,70,-8.462842834815824],[127,231,71,-8.469526248775928],[127,231,72,-8.49735278785834],[127,231,73,-8.535448490330912],[127,231,74,-8.554999665543093],[127,231,75,-8.586523310433348],[127,231,76,-8.645078929068573],[127,231,77,-8.655351940886755],[127,231,78,-8.606247681251402],[127,231,79,-8.554262133046354],[127,232,64,-8.543080633975961],[127,232,65,-8.568545546020623],[127,232,66,-8.56843318049338],[127,232,67,-8.552540787359545],[127,232,68,-8.532403827204869],[127,232,69,-8.51850891066964],[127,232,70,-8.514023190695562],[127,232,71,-8.519834195665394],[127,232,72,-8.545243920832231],[127,232,73,-8.584214148464765],[127,232,74,-8.604127559540416],[127,232,75,-8.644306961123018],[127,232,76,-8.70270040374948],[127,232,77,-8.705572481768742],[127,232,78,-8.656021902689266],[127,232,79,-8.602842354322085],[127,233,64,-8.593957921897513],[127,233,65,-8.615040117533328],[127,233,66,-8.614496460171544],[127,233,67,-8.598380132278098],[127,233,68,-8.579110067327212],[127,233,69,-8.567725794719014],[127,233,70,-8.562057815429519],[127,233,71,-8.567448172234101],[127,233,72,-8.594473370181298],[127,233,73,-8.632887372969439],[127,233,74,-8.653510188567418],[127,233,75,-8.703069295299434],[127,233,76,-8.75757954620224],[127,233,77,-8.758440254821714],[127,233,78,-8.709159844285102],[127,233,79,-8.657246375814012],[127,234,64,-8.649620559973945],[127,234,65,-8.668422033488957],[127,234,66,-8.66809083146487],[127,234,67,-8.649302378546503],[127,234,68,-8.6320525860921],[127,234,69,-8.619101677473754],[127,234,70,-8.614504531640094],[127,234,71,-8.617048013898195],[127,234,72,-8.646567988348465],[127,234,73,-8.683439082639199],[127,234,74,-8.707625267566524],[127,234,75,-8.748451613529218],[127,234,76,-8.80725495044032],[127,234,77,-8.822825723902357],[127,234,78,-8.771118837635075],[127,234,79,-8.717420431374244],[127,235,64,-8.698753607699933],[127,235,65,-8.719513136222057],[127,235,66,-8.714753257292779],[127,235,67,-8.69741960956015],[127,235,68,-8.680012977202308],[127,235,69,-8.665681087046922],[127,235,70,-8.662787247649456],[127,235,71,-8.663734413324926],[127,235,72,-8.692628445531362],[127,235,73,-8.73272857804377],[127,235,74,-8.756954178502921],[127,235,75,-8.878101294550603],[127,235,76,-8.915183115828986],[127,235,77,-8.880218672167041],[127,235,78,-8.831759045441752],[127,235,79,-8.777867810529925],[127,236,64,-8.7316192056745],[127,236,65,-8.75904373724187],[127,236,66,-8.760652108992238],[127,236,67,-8.74854948403794],[127,236,68,-8.737792908704025],[127,236,69,-8.731818578570783],[127,236,70,-8.729238136492379],[127,236,71,-8.73431354231356],[127,236,72,-8.76489577682512],[127,236,73,-8.805550167508315],[127,236,74,-8.827634692366379],[127,236,75,-8.934166688936404],[127,236,76,-8.972275539228153],[127,236,77,-8.938561583005052],[127,236,78,-8.8907763774576],[127,236,79,-8.83510346107197],[127,237,64,-8.790349806299233],[127,237,65,-8.810156889879744],[127,237,66,-8.803378576198192],[127,237,67,-8.787118794501463],[127,237,68,-8.776452687221193],[127,237,69,-8.770141398165359],[127,237,70,-8.767220671744827],[127,237,71,-8.77301465991119],[127,237,72,-8.803986562916187],[127,237,73,-8.845384981285589],[127,237,74,-8.889754859235959],[127,237,75,-9.019311463056406],[127,237,76,-9.022142624532767],[127,237,77,-8.987447229639255],[127,237,78,-8.94011601433016],[127,237,79,-8.884154261945332],[127,238,64,-8.838300796969405],[127,238,65,-8.858049696847765],[127,238,66,-8.851985801460632],[127,238,67,-8.837792424837184],[127,238,68,-8.827086183591335],[127,238,69,-8.82005149048419],[127,238,70,-8.815812966538687],[127,238,71,-8.820731372076821],[127,238,72,-8.85296323843182],[127,238,73,-8.895669768889],[127,238,74,-8.93139810316856],[127,238,75,-9.045245854957676],[127,238,76,-9.069253164728487],[127,238,77,-9.036278600561065],[127,238,78,-8.984464967597482],[127,238,79,-8.929378472763],[127,239,64,-8.889384462648835],[127,239,65,-8.911286965727522],[127,239,66,-8.907024420726437],[127,239,67,-8.894488462218039],[127,239,68,-8.882180248650789],[127,239,69,-8.87682104601461],[127,239,70,-8.871565953457328],[127,239,71,-8.87466060530244],[127,239,72,-8.903394464013997],[127,239,73,-8.94591753909417],[127,239,74,-8.98567570719949],[127,239,75,-9.087572922805823],[127,239,76,-9.116824463562102],[127,239,77,-9.081311104035391],[127,239,78,-9.030715544350278],[127,239,79,-8.974088104589274],[127,240,64,-8.934932938014166],[127,240,65,-8.956551800584917],[127,240,66,-8.956197996228724],[127,240,67,-8.945461962232805],[127,240,68,-8.931043538319392],[127,240,69,-8.925489619154037],[127,240,70,-8.919212244867062],[127,240,71,-8.923730994702524],[127,240,72,-8.954314954657375],[127,240,73,-8.995304827729981],[127,240,74,-9.036868740714027],[127,240,75,-9.132270495195742],[127,240,76,-9.165844848867843],[127,240,77,-9.127287437488249],[127,240,78,-9.079242951991565],[127,240,79,-9.022835397334342],[127,241,64,-8.973423024521544],[127,241,65,-9.00308460475577],[127,241,66,-9.010247278772773],[127,241,67,-9.002763869724507],[127,241,68,-8.989602321037397],[127,241,69,-8.980667808839039],[127,241,70,-8.976604299588526],[127,241,71,-8.983958462168953],[127,241,72,-9.017394807896927],[127,241,73,-9.057897291666517],[127,241,74,-9.080987172245994],[127,241,75,-9.077752997623904],[127,241,76,-9.053272623833859],[127,241,77,-9.030843066816049],[127,241,78,-9.000000058445961],[127,241,79,-8.970920798829331],[127,242,64,-9.02638576358351],[127,242,65,-9.05579141464343],[127,242,66,-9.062342892018878],[127,242,67,-9.053717762151805],[127,242,68,-9.040612887670456],[127,242,69,-9.030374028325342],[127,242,70,-9.028226122953583],[127,242,71,-9.038943285407854],[127,242,72,-9.070992336089587],[127,242,73,-9.112540328597298],[127,242,74,-9.137356547297207],[127,242,75,-9.1318163050274],[127,242,76,-9.106075842505774],[127,242,77,-9.077445097659005],[127,242,78,-9.04599901675743],[127,242,79,-9.022195030778809],[127,243,64,-9.073293925096587],[127,243,65,-9.104490948995197],[127,243,66,-9.109177229114993],[127,243,67,-9.09991402773551],[127,243,68,-9.089960952577007],[127,243,69,-9.079176167731767],[127,243,70,-9.078431655706462],[127,243,71,-9.088247318342106],[127,243,72,-9.118053665847551],[127,243,73,-9.16137010702156],[127,243,74,-9.185200216009793],[127,243,75,-9.178568569024351],[127,243,76,-9.157851238156955],[127,243,77,-9.115853325557223],[127,243,78,-9.07665644732376],[127,243,79,-9.051841496355243],[127,244,64,-9.113417713406394],[127,244,65,-9.133081802839701],[127,244,66,-9.130793919085054],[127,244,67,-9.114740378879326],[127,244,68,-9.095338895446046],[127,244,69,-9.079321754176302],[127,244,70,-9.074725020650613],[127,244,71,-9.077722240785189],[127,244,72,-9.103883251610114],[127,244,73,-9.145443229259351],[127,244,74,-9.169227681960209],[127,244,75,-9.163807600766736],[127,244,76,-9.14377604368762],[127,244,77,-9.103580394546618],[127,244,78,-9.067003908196899],[127,244,79,-9.054447581458644],[127,245,64,-9.159605327833034],[127,245,65,-9.17966758199345],[127,245,66,-9.18059148085328],[127,245,67,-9.164760080909593],[127,245,68,-9.147847781812578],[127,245,69,-9.130748668820688],[127,245,70,-9.124952752370694],[127,245,71,-9.129553728302442],[127,245,72,-9.152220771854045],[127,245,73,-9.193546430866718],[127,245,74,-9.217484256240526],[127,245,75,-9.214340301824796],[127,245,76,-9.194358308683093],[127,245,77,-9.151057991081984],[127,245,78,-9.10077040460555],[127,245,79,-9.098686611144707],[127,246,64,-9.205793674936617],[127,246,65,-9.227854044433734],[127,246,66,-9.229552559308246],[127,246,67,-9.214414152272287],[127,246,68,-9.197863109798904],[127,246,69,-9.183897631758413],[127,246,70,-9.17407213261826],[127,246,71,-9.178025920217598],[127,246,72,-9.203170577116724],[127,246,73,-9.240485490453773],[127,246,74,-9.265799038834805],[127,246,75,-9.264459785729308],[127,246,76,-9.243451216122054],[127,246,77,-9.200051378201506],[127,246,78,-9.144650567530556],[127,246,79,-9.130895128434124],[127,247,64,-9.259004005328098],[127,247,65,-9.282307399115478],[127,247,66,-9.282753003279808],[127,247,67,-9.266963398210553],[127,247,68,-9.249327545220044],[127,247,69,-9.238669449221636],[127,247,70,-9.224766386256297],[127,247,71,-9.228565130756197],[127,247,72,-9.255833703428433],[127,247,73,-9.291218792558542],[127,247,74,-9.31343276545314],[127,247,75,-9.311667251601024],[127,247,76,-9.289277249934987],[127,247,77,-9.245981633515964],[127,247,78,-9.18941337710934],[127,247,79,-9.15931549805003],[127,248,64,-9.305786203493266],[127,248,65,-9.326169226991437],[127,248,66,-9.328375642854487],[127,248,67,-9.313827788508329],[127,248,68,-9.297445647914643],[127,248,69,-9.28701322659701],[127,248,70,-9.273906453568626],[127,248,71,-9.274557624792148],[127,248,72,-9.302644040303507],[127,248,73,-9.339356195180315],[127,248,74,-9.359400064655214],[127,248,75,-9.359236873571023],[127,248,76,-9.33566650482309],[127,248,77,-9.29386990466604],[127,248,78,-9.236357565417258],[127,248,79,-9.209875181555507],[127,249,64,-9.362631468459266],[127,249,65,-9.381704635444198],[127,249,66,-9.381490586055342],[127,249,67,-9.368403627695562],[127,249,68,-9.351217495488036],[127,249,69,-9.339562429222859],[127,249,70,-9.326227582214187],[127,249,71,-9.32026860391179],[127,249,72,-9.342156862181232],[127,249,73,-9.379726400675313],[127,249,74,-9.398246544480902],[127,249,75,-9.396024472419906],[127,249,76,-9.374362435928122],[127,249,77,-9.33469175107538],[127,249,78,-9.30478530464102],[127,249,79,-9.31113686942012],[127,250,64,-9.424949255021536],[127,250,65,-9.46226631635021],[127,250,66,-9.490675707829986],[127,250,67,-9.513474655792491],[127,250,68,-9.519776312404899],[127,250,69,-9.499275737551026],[127,250,70,-9.468803173441733],[127,250,71,-9.443347736993626],[127,250,72,-9.491562459801681],[127,250,73,-9.537745035480633],[127,250,74,-9.589212843831845],[127,250,75,-9.618579357100675],[127,250,76,-9.57114788188601],[127,250,77,-9.461577608874089],[127,250,78,-9.370089502149396],[127,250,79,-9.298629374758645],[127,251,64,-9.487227275774012],[127,251,65,-9.52543585740689],[127,251,66,-9.559520910075177],[127,251,67,-9.592336922890192],[127,251,68,-9.591276423718407],[127,251,69,-9.57152005550991],[127,251,70,-9.534010770556915],[127,251,71,-9.50742596100854],[127,251,72,-9.555456631852001],[127,251,73,-9.591774409942365],[127,251,74,-9.636407821052456],[127,251,75,-9.656003849092247],[127,251,76,-9.609837358644242],[127,251,77,-9.50016287761403],[127,251,78,-9.408965425429205],[127,251,79,-9.337633392443061],[127,252,64,-9.55070835706095],[127,252,65,-9.578930907043475],[127,252,66,-9.619330959856583],[127,252,67,-9.65581403317794],[127,252,68,-9.643906104124094],[127,252,69,-9.631973313101225],[127,252,70,-9.598870972589626],[127,252,71,-9.572021850913181],[127,252,72,-9.62154204734956],[127,252,73,-9.664996656114567],[127,252,74,-9.704324574416194],[127,252,75,-9.698832667161426],[127,252,76,-9.667567518513774],[127,252,77,-9.559408407872757],[127,252,78,-9.467201238295607],[127,252,79,-9.395705026084094],[127,253,64,-9.638278669422466],[127,253,65,-9.641512595462915],[127,253,66,-9.671636656347674],[127,253,67,-9.67770486555071],[127,253,68,-9.653372388950107],[127,253,69,-9.654024623972214],[127,253,70,-9.674346306593884],[127,253,71,-9.675196943354248],[127,253,72,-9.721450863951041],[127,253,73,-9.756194781254385],[127,253,74,-9.757388405170506],[127,253,75,-9.704780553042575],[127,253,76,-9.679286065629926],[127,253,77,-9.603632726134485],[127,253,78,-9.561106881603061],[127,253,79,-9.501618337345601],[127,254,64,-9.649536619884291],[127,254,65,-9.65710982761451],[127,254,66,-9.689804887419932],[127,254,67,-9.707106350937265],[127,254,68,-9.677159278601502],[127,254,69,-9.682347916468961],[127,254,70,-9.719117660726324],[127,254,71,-9.723180712723492],[127,254,72,-9.770575271018608],[127,254,73,-9.802691242194966],[127,254,74,-9.807438968280808],[127,254,75,-9.752241995544217],[127,254,76,-9.723687182148248],[127,254,77,-9.655513428732256],[127,254,78,-9.626439503324796],[127,254,79,-9.578011816880844],[127,255,64,-9.694140086569792],[127,255,65,-9.710459121690983],[127,255,66,-9.721922460016778],[127,255,67,-9.743924896988112],[127,255,68,-9.712661112182722],[127,255,69,-9.725551214032196],[127,255,70,-9.775316374324238],[127,255,71,-9.776846820352416],[127,255,72,-9.820127314623743],[127,255,73,-9.85687862586992],[127,255,74,-9.853152743853109],[127,255,75,-9.799625639205352],[127,255,76,-9.764168465941523],[127,255,77,-9.701116338985361],[127,255,78,-9.67310355198625],[127,255,79,-9.634935098177857],[127,256,64,-9.757924254458066],[127,256,65,-9.75340365594014],[127,256,66,-9.768638046302762],[127,256,67,-9.782624687819887],[127,256,68,-9.760505998822993],[127,256,69,-9.769434458348838],[127,256,70,-9.830189868634923],[127,256,71,-9.844936124897252],[127,256,72,-9.869571558571927],[127,256,73,-9.906263435540922],[127,256,74,-9.894841310045013],[127,256,75,-9.84710398074295],[127,256,76,-9.8105611573286],[127,256,77,-9.754133114973142],[127,256,78,-9.730573564873719],[127,256,79,-9.69089362482162],[127,257,64,-9.816379309346994],[127,257,65,-9.803730810756862],[127,257,66,-9.826002468892117],[127,257,67,-9.829178275771513],[127,257,68,-9.8151092885712],[127,257,69,-9.822683152777245],[127,257,70,-9.898570442762722],[127,257,71,-9.903695172262683],[127,257,72,-9.927161691182748],[127,257,73,-9.96226383881196],[127,257,74,-9.96507130084245],[127,257,75,-9.925210870557178],[127,257,76,-9.886527341716384],[127,257,77,-9.839176266947394],[127,257,78,-9.81652479321507],[127,257,79,-9.788131292884799],[127,258,64,-9.812458535786122],[127,258,65,-9.813750755890913],[127,258,66,-9.83558450551408],[127,258,67,-9.82670874420596],[127,258,68,-9.812634589492276],[127,258,69,-9.82697259465471],[127,258,70,-9.91082651250258],[127,258,71,-9.951616666003787],[127,258,72,-9.97551807686341],[127,258,73,-10.011450013017294],[127,258,74,-10.00131175134288],[127,258,75,-9.966680309470668],[127,258,76,-9.93363095762156],[127,258,77,-9.898210895026708],[127,258,78,-9.878588909226751],[127,258,79,-9.848588124848678],[127,259,64,-9.887888422726855],[127,259,65,-9.916735649804652],[127,259,66,-9.932622912637814],[127,259,67,-9.923819680747485],[127,259,68,-9.913457536095004],[127,259,69,-9.932037844645656],[127,259,70,-10.006300240318229],[127,259,71,-10.004642316892891],[127,259,72,-10.030218778222745],[127,259,73,-10.06801899697643],[127,259,74,-10.055598925164766],[127,259,75,-10.013041664715253],[127,259,76,-9.97946673007284],[127,259,77,-9.952824975490852],[127,259,78,-9.936574177676205],[127,259,79,-9.919652964507769],[127,260,64,-10.010185146488448],[127,260,65,-10.043529010790053],[127,260,66,-10.048218227763805],[127,260,67,-10.048318395198734],[127,260,68,-10.031980708372366],[127,260,69,-10.032751246724873],[127,260,70,-10.059958189470404],[127,260,71,-10.059314770757277],[127,260,72,-10.083054548691196],[127,260,73,-10.121364326968077],[127,260,74,-10.135358374370833],[127,260,75,-10.135144864589076],[127,260,76,-10.117017348275526],[127,260,77,-10.082853086420572],[127,260,78,-10.043026242925682],[127,260,79,-9.99908570560516],[127,261,64,-10.041625131660105],[127,261,65,-10.081130430872616],[127,261,66,-10.10929814525833],[127,261,67,-10.127513992318892],[127,261,68,-10.106377317386235],[127,261,69,-10.108743213172941],[127,261,70,-10.108864672513445],[127,261,71,-10.108000327102248],[127,261,72,-10.1294803419544],[127,261,73,-10.168406861501142],[127,261,74,-10.187112879887193],[127,261,75,-10.189419621083989],[127,261,76,-10.170632283525457],[127,261,77,-10.135465097481164],[127,261,78,-10.091562202400052],[127,261,79,-10.049419211871543],[127,262,64,-10.106117384354159],[127,262,65,-10.153098297359621],[127,262,66,-10.193187362145073],[127,262,67,-10.22083878523547],[127,262,68,-10.193442360396496],[127,262,69,-10.206078606335366],[127,262,70,-10.208172024935001],[127,262,71,-10.20805166446408],[127,262,72,-10.230003844345097],[127,262,73,-10.26387368188522],[127,262,74,-10.281566900780248],[127,262,75,-10.278206152304946],[127,262,76,-10.246687606816385],[127,262,77,-10.211319943248116],[127,262,78,-10.17018543085129],[127,262,79,-10.126006565497457],[127,263,64,-10.137572428095936],[127,263,65,-10.191759498690956],[127,263,66,-10.230184632877402],[127,263,67,-10.264953216962072],[127,263,68,-10.249557973140687],[127,263,69,-10.254222087552115],[127,263,70,-10.2543464047215],[127,263,71,-10.255221478154123],[127,263,72,-10.279193162152797],[127,263,73,-10.311227742712584],[127,263,74,-10.328853154491243],[127,263,75,-10.324048372430317],[127,263,76,-10.296687739782048],[127,263,77,-10.258925899379003],[127,263,78,-10.22169472546117],[127,263,79,-10.170149212503045],[127,264,64,-10.180151732738183],[127,264,65,-10.235719750154779],[127,264,66,-10.265162591718791],[127,264,67,-10.306493028940313],[127,264,68,-10.295403160834201],[127,264,69,-10.299941755503214],[127,264,70,-10.304141850862889],[127,264,71,-10.303576709988624],[127,264,72,-10.328875994363235],[127,264,73,-10.359905687181335],[127,264,74,-10.37827083586669],[127,264,75,-10.37311650534622],[127,264,76,-10.348621302685064],[127,264,77,-10.309482766430339],[127,264,78,-10.270641808657446],[127,264,79,-10.21901244295049],[127,265,64,-10.183312368921008],[127,265,65,-10.21409447411039],[127,265,66,-10.224101906049382],[127,265,67,-10.24181646029069],[127,265,68,-10.23807597098323],[127,265,69,-10.260209831527817],[127,265,70,-10.323518516437355],[127,265,71,-10.358940630954145],[127,265,72,-10.386155282382278],[127,265,73,-10.418893919247301],[127,265,74,-10.436302567277767],[127,265,75,-10.435024552752287],[127,265,76,-10.41799878784847],[127,265,77,-10.378671904010455],[127,265,78,-10.3335722065894],[127,265,79,-10.276552351949105],[127,266,64,-10.23703515380209],[127,266,65,-10.269364740970461],[127,266,66,-10.278934526566285],[127,266,67,-10.271265792789746],[127,266,68,-10.258918587772511],[127,266,69,-10.276400865816374],[127,266,70,-10.332363554449472],[127,266,71,-10.377811777028963],[127,266,72,-10.417536777838285],[127,266,73,-10.46227483627102],[127,266,74,-10.480057629885952],[127,266,75,-10.483019615849154],[127,266,76,-10.461959092473927],[127,266,77,-10.426787344613825],[127,266,78,-10.37957713881497],[127,266,79,-10.326312254190515],[127,267,64,-10.283912905702886],[127,267,65,-10.318013779638822],[127,267,66,-10.326500833415427],[127,267,67,-10.319001990105646],[127,267,68,-10.30519684314501],[127,267,69,-10.327181020342335],[127,267,70,-10.373419842896736],[127,267,71,-10.429413680655838],[127,267,72,-10.472564611813278],[127,267,73,-10.517294864641412],[127,267,74,-10.53661923827393],[127,267,75,-10.539104812894688],[127,267,76,-10.513307220619785],[127,267,77,-10.480719393867092],[127,267,78,-10.431776075628157],[127,267,79,-10.38026575379306],[127,268,64,-10.33388155820546],[127,268,65,-10.367296450582366],[127,268,66,-10.376338782975672],[127,268,67,-10.370375183073316],[127,268,68,-10.36131976168509],[127,268,69,-10.3612058036023],[127,268,70,-10.382192824840738],[127,268,71,-10.442073891762488],[127,268,72,-10.489493734593118],[127,268,73,-10.543021032254634],[127,268,74,-10.581206163338498],[127,268,75,-10.584640441599063],[127,268,76,-10.552412515091575],[127,268,77,-10.517656132488225],[127,268,78,-10.474347601404956],[127,268,79,-10.420671601391483],[127,269,64,-10.380931844075215],[127,269,65,-10.412016649459337],[127,269,66,-10.418488747316616],[127,269,67,-10.4143277179782],[127,269,68,-10.408974470231795],[127,269,69,-10.41025210331352],[127,269,70,-10.428336330322345],[127,269,71,-10.485493870131418],[127,269,72,-10.537468383052738],[127,269,73,-10.58831653242548],[127,269,74,-10.629281601999605],[127,269,75,-10.632659824327272],[127,269,76,-10.604042286388545],[127,269,77,-10.566948017548007],[127,269,78,-10.523679516383543],[127,269,79,-10.469811897846938],[127,270,64,-10.43531257074432],[127,270,65,-10.463940007987219],[127,270,66,-10.468837650507355],[127,270,67,-10.462761645561772],[127,270,68,-10.459943780776744],[127,270,69,-10.460222962834182],[127,270,70,-10.479074164698524],[127,270,71,-10.53017219402373],[127,270,72,-10.583308668541253],[127,270,73,-10.629783546179116],[127,270,74,-10.669883273411426],[127,270,75,-10.6737731212931],[127,270,76,-10.646604424017104],[127,270,77,-10.612415575280403],[127,270,78,-10.570191663099914],[127,270,79,-10.515173268362904],[127,271,64,-10.481552549268722],[127,271,65,-10.508963994278309],[127,271,66,-10.51620701038507],[127,271,67,-10.50946595251107],[127,271,68,-10.505382515636146],[127,271,69,-10.508273044064895],[127,271,70,-10.523335676114629],[127,271,71,-10.570831919380195],[127,271,72,-10.625806513484905],[127,271,73,-10.670601263655858],[127,271,74,-10.715671121831736],[127,271,75,-10.71675561806688],[127,271,76,-10.694844735529104],[127,271,77,-10.660483669936012],[127,271,78,-10.61770387644829],[127,271,79,-10.563832707978905],[127,272,64,-10.526489099879244],[127,272,65,-10.552427294825872],[127,272,66,-10.561800600129537],[127,272,67,-10.558347909957],[127,272,68,-10.554335971097382],[127,272,69,-10.555900503977933],[127,272,70,-10.575940418931125],[127,272,71,-10.618789201033422],[127,272,72,-10.671155129288325],[127,272,73,-10.717311841736556],[127,272,74,-10.763634937226218],[127,272,75,-10.768818386972976],[127,272,76,-10.747196698868846],[127,272,77,-10.712637347669297],[127,272,78,-10.668042970919211],[127,272,79,-10.613493164741664],[127,273,64,-10.579118413857419],[127,273,65,-10.5996308202947],[127,273,66,-10.60277895055609],[127,273,67,-10.59857332781896],[127,273,68,-10.593411552321921],[127,273,69,-10.596332059421318],[127,273,70,-10.614359400813278],[127,273,71,-10.632865836369756],[127,273,72,-10.666771713969872],[127,273,73,-10.712161816370756],[127,273,74,-10.73706127356094],[127,273,75,-10.737605993222415],[127,273,76,-10.729334449059868],[127,273,77,-10.701664950714893],[127,273,78,-10.658712533658166],[127,273,79,-10.610771556005805],[127,274,64,-10.62812395763457],[127,274,65,-10.650283673441448],[127,274,66,-10.654703864724745],[127,274,67,-10.648568256745],[127,274,68,-10.646620927762962],[127,274,69,-10.651833174784013],[127,274,70,-10.665957053382934],[127,274,71,-10.686237359136836],[127,274,72,-10.721428441120565],[127,274,73,-10.766918967213773],[127,274,74,-10.79169808393298],[127,274,75,-10.792455231743082],[127,274,76,-10.78090910587562],[127,274,77,-10.75390830616617],[127,274,78,-10.714578782859617],[127,274,79,-10.660238409780746],[127,275,64,-10.674556692249348],[127,275,65,-10.699719440695754],[127,275,66,-10.702627444690089],[127,275,67,-10.696130785771869],[127,275,68,-10.696685227919549],[127,275,69,-10.702734390870015],[127,275,70,-10.719377073415703],[127,275,71,-10.739610585146933],[127,275,72,-10.775282131479772],[127,275,73,-10.82126103964378],[127,275,74,-10.84786127649462],[127,275,75,-10.84801520629795],[127,275,76,-10.833551205683149],[127,275,77,-10.804976507476347],[127,275,78,-10.767494617839626],[127,275,79,-10.714033574530093],[127,276,64,-10.712312672359108],[127,276,65,-10.744359949793147],[127,276,66,-10.750591093524886],[127,276,67,-10.749153590372966],[127,276,68,-10.748618864571613],[127,276,69,-10.761849495196183],[127,276,70,-10.776374751600855],[127,276,71,-10.798607256476036],[127,276,72,-10.834444801234348],[127,276,73,-10.880442525789618],[127,276,74,-10.905608839774791],[127,276,75,-10.907589625140309],[127,276,76,-10.893375979496442],[127,276,77,-10.85580626942921],[127,276,78,-10.809719503255641],[127,276,79,-10.750142294858726],[127,277,64,-10.752020019423949],[127,277,65,-10.78627653648632],[127,277,66,-10.802545991654332],[127,277,67,-10.806764661499615],[127,277,68,-10.809856338044437],[127,277,69,-10.819816688544249],[127,277,70,-10.834918308088213],[127,277,71,-10.854717224316737],[127,277,72,-10.889534135972506],[127,277,73,-10.937442254038054],[127,277,74,-10.960091718362813],[127,277,75,-10.964062120849723],[127,277,76,-10.947547742222449],[127,277,77,-10.906612056942826],[127,277,78,-10.860268190021708],[127,277,79,-10.797991019714315],[127,278,64,-10.803678609539157],[127,278,65,-10.835221662050316],[127,278,66,-10.852316998556335],[127,278,67,-10.856544412065704],[127,278,68,-10.862887686783015],[127,278,69,-10.871478931737057],[127,278,70,-10.88462929130248],[127,278,71,-10.904997076276581],[127,278,72,-10.94252776698405],[127,278,73,-10.989700484366509],[127,278,74,-11.013609748077993],[127,278,75,-11.013482075586104],[127,278,76,-10.99686709919197],[127,278,77,-10.951186244954624],[127,278,78,-10.903266599216515],[127,278,79,-10.844113966440066],[127,279,64,-10.846838791713674],[127,279,65,-10.87925223242349],[127,279,66,-10.898893449571341],[127,279,67,-10.902414949382894],[127,279,68,-10.910450065662843],[127,279,69,-10.918604158756542],[127,279,70,-10.930041633302029],[127,279,71,-10.952103237006408],[127,279,72,-10.99221056750815],[127,279,73,-11.04131922667019],[127,279,74,-11.068595402347654],[127,279,75,-11.065816867698077],[127,279,76,-11.04549340597737],[127,279,77,-10.999809603008625],[127,279,78,-10.949183853434814],[127,279,79,-10.8903985380948],[127,280,64,-10.890809700257815],[127,280,65,-10.925520645003916],[127,280,66,-10.947327605265004],[127,280,67,-10.952834196430944],[127,280,68,-10.955392392814929],[127,280,69,-10.965631554127826],[127,280,70,-10.977961189275247],[127,280,71,-10.99855992776502],[127,280,72,-11.03984548660266],[127,280,73,-11.0897929391487],[127,280,74,-11.119831211796035],[127,280,75,-11.119628887200571],[127,280,76,-11.092756419459802],[127,280,77,-11.050792388499648],[127,280,78,-10.99572983918115],[127,280,79,-10.939844378356538],[127,281,64,-10.936101444866217],[127,281,65,-10.97292158423048],[127,281,66,-10.994194483453963],[127,281,67,-11.002408442605129],[127,281,68,-11.003517704398623],[127,281,69,-11.01228820616561],[127,281,70,-11.024387663579246],[127,281,71,-11.045596808796246],[127,281,72,-11.090493153404486],[127,281,73,-11.14233581263312],[127,281,74,-11.173222861826922],[127,281,75,-11.175427802193552],[127,281,76,-11.149121934862718],[127,281,77,-11.107416175866552],[127,281,78,-11.055438058865043],[127,281,79,-10.997446717401013],[127,282,64,-10.987179282766412],[127,282,65,-11.023683838540938],[127,282,66,-11.043623088527205],[127,282,67,-11.051796346154994],[127,282,68,-11.052534980481743],[127,282,69,-11.060220730609483],[127,282,70,-11.072640411831467],[127,282,71,-11.094385422690918],[127,282,72,-11.139729136616198],[127,282,73,-11.191409891303742],[127,282,74,-11.221746241956575],[127,282,75,-11.223607815033418],[127,282,76,-11.203802943266272],[127,282,77,-11.16070898918933],[127,282,78,-11.108814948276448],[127,282,79,-11.04932102828142],[127,283,64,-11.034559299122165],[127,283,65,-11.069709121514254],[127,283,66,-11.088674263035971],[127,283,67,-11.095478349931941],[127,283,68,-11.10025013097732],[127,283,69,-11.103503479169843],[127,283,70,-11.117423894388258],[127,283,71,-11.14026150632529],[127,283,72,-11.18529608702212],[127,283,73,-11.236446455559312],[127,283,74,-11.263822112463723],[127,283,75,-11.26534842695216],[127,283,76,-11.248968221535234],[127,283,77,-11.212362975425496],[127,283,78,-11.168861294527472],[127,283,79,-11.115303908382696],[127,284,64,-11.09775628184815],[127,284,65,-11.125520744971414],[127,284,66,-11.139284154256586],[127,284,67,-11.140642947524197],[127,284,68,-11.143560135118733],[127,284,69,-11.14293558948293],[127,284,70,-11.153572760939063],[127,284,71,-11.17571763419489],[127,284,72,-11.223184803658816],[127,284,73,-11.278451413651144],[127,284,74,-11.311327163121948],[127,284,75,-11.316564826209857],[127,284,76,-11.297917966523823],[127,284,77,-11.262534577787155],[127,284,78,-11.215503082689766],[127,284,79,-11.161661385151346],[127,285,64,-11.13433914911066],[127,285,65,-11.16366995859016],[127,285,66,-11.172925408997108],[127,285,67,-11.176464814516509],[127,285,68,-11.17817898413117],[127,285,69,-11.180137647906376],[127,285,70,-11.188609700081017],[127,285,71,-11.217331894658887],[127,285,72,-11.273991577872666],[127,285,73,-11.329404374739521],[127,285,74,-11.364119245766897],[127,285,75,-11.36657120740453],[127,285,76,-11.34788337625798],[127,285,77,-11.309736486868287],[127,285,78,-11.261689472932217],[127,285,79,-11.205713558956328],[127,286,64,-11.184405797388294],[127,286,65,-11.212720785951264],[127,286,66,-11.224161268810855],[127,286,67,-11.225176035936965],[127,286,68,-11.222540415646995],[127,286,69,-11.22649500415468],[127,286,70,-11.235067924642122],[127,286,71,-11.264607057848961],[127,286,72,-11.32091665709893],[127,286,73,-11.377647228991806],[127,286,74,-11.411807342653479],[127,286,75,-11.4159715759101],[127,286,76,-11.396158570332698],[127,286,77,-11.35751792182624],[127,286,78,-11.30651742633118],[127,286,79,-11.250574115860243],[127,287,64,-11.233355108289555],[127,287,65,-11.262065629102407],[127,287,66,-11.27117181424706],[127,287,67,-11.272530277928775],[127,287,68,-11.26518704478216],[127,287,69,-11.271671481250257],[127,287,70,-11.284382416510393],[127,287,71,-11.314570576385957],[127,287,72,-11.367576114507992],[127,287,73,-11.424871430555015],[127,287,74,-11.457311447054899],[127,287,75,-11.460994783396961],[127,287,76,-11.44328663496639],[127,287,77,-11.404548755323146],[127,287,78,-11.354009843423029],[127,287,79,-11.297591454618454],[127,288,64,-11.28002806333294],[127,288,65,-11.310450063120328],[127,288,66,-11.31828754965572],[127,288,67,-11.316641415562334],[127,288,68,-11.31079180482244],[127,288,69,-11.315999924894667],[127,288,70,-11.332462943410325],[127,288,71,-11.361861831404969],[127,288,72,-11.4146405170295],[127,288,73,-11.471754814119308],[127,288,74,-11.50328334190364],[127,288,75,-11.506191309325454],[127,288,76,-11.488477945214616],[127,288,77,-11.452037181325997],[127,288,78,-11.400826847346996],[127,288,79,-11.344630378773848],[127,289,64,-11.338577882424891],[127,289,65,-11.369662606774797],[127,289,66,-11.377057666874958],[127,289,67,-11.374276366937467],[127,289,68,-11.368728355100577],[127,289,69,-11.374189985346868],[127,289,70,-11.385595185141776],[127,289,71,-11.405075513584658],[127,289,72,-11.4564269573873],[127,289,73,-11.514201943531093],[127,289,74,-11.547441897301576],[127,289,75,-11.55096393514386],[127,289,76,-11.535724473527466],[127,289,77,-11.501571473498121],[127,289,78,-11.452447772502065],[127,289,79,-11.397004963314576],[127,290,64,-11.390331205842816],[127,290,65,-11.42144490998876],[127,290,66,-11.428784213222812],[127,290,67,-11.425481216996989],[127,290,68,-11.422781259035489],[127,290,69,-11.424613238163472],[127,290,70,-11.434352877559668],[127,290,71,-11.449711780289654],[127,290,72,-11.498648611590973],[127,290,73,-11.55690329990341],[127,290,74,-11.593035012673237],[127,290,75,-11.598957554882809],[127,290,76,-11.582483842867338],[127,290,77,-11.548871116630188],[127,290,78,-11.500305432298605],[127,290,79,-11.445399545499397],[127,291,64,-11.441721491399836],[127,291,65,-11.4707342849604],[127,291,66,-11.48008403568083],[127,291,67,-11.47468906541892],[127,291,68,-11.471975257046042],[127,291,69,-11.47225959963643],[127,291,70,-11.479066645608158],[127,291,71,-11.493237128532492],[127,291,72,-11.540457083624254],[127,291,73,-11.603568091965052],[127,291,74,-11.640931215643512],[127,291,75,-11.650601178802308],[127,291,76,-11.632655043341916],[127,291,77,-11.597651498689661],[127,291,78,-11.548606640486982],[127,291,79,-11.493101241732019],[127,292,64,-11.453324480870624],[127,292,65,-11.480697028878206],[127,292,66,-11.488026538778977],[127,292,67,-11.478871254688507],[127,292,68,-11.472747165160394],[127,292,69,-11.470324285898066],[127,292,70,-11.474301149015899],[127,292,71,-11.4872667042867],[127,292,72,-11.535078763753386],[127,292,73,-11.606901304164019],[127,292,74,-11.650201435584677],[127,292,75,-11.669965180482917],[127,292,76,-11.6529340826226],[127,292,77,-11.61008141497773],[127,292,78,-11.559277214585894],[127,292,79,-11.501308149853084],[127,293,64,-11.506219934212838],[127,293,65,-11.534166384141471],[127,293,66,-11.53848655473716],[127,293,67,-11.52822117724841],[127,293,68,-11.519760999987772],[127,293,69,-11.515623197195103],[127,293,70,-11.516921402807364],[127,293,71,-11.53168614981751],[127,293,72,-11.582910819011348],[127,293,73,-11.65508004989263],[127,293,74,-11.694708784447727],[127,293,75,-11.716163002936932],[127,293,76,-11.700625345546264],[127,293,77,-11.654662181929769],[127,293,78,-11.603900595398535],[127,293,79,-11.548115024927045],[127,294,64,-11.558406571228796],[127,294,65,-11.586744064800381],[127,294,66,-11.589570995837251],[127,294,67,-11.57667301599298],[127,294,68,-11.5661398060155],[127,294,69,-11.560122999870421],[127,294,70,-11.563093555270608],[127,294,71,-11.577793321289567],[127,294,72,-11.63022760553853],[127,294,73,-11.70181971284579],[127,294,74,-11.741044086579995],[127,294,75,-11.762339404491893],[127,294,76,-11.747850791862001],[127,294,77,-11.700024604194398],[127,294,78,-11.646404290877262],[127,294,79,-11.592630236479362],[127,295,64,-11.608881904140972],[127,295,65,-11.63461849364767],[127,295,66,-11.637429568331664],[127,295,67,-11.62593623419951],[127,295,68,-11.613389119085518],[127,295,69,-11.607023035421163],[127,295,70,-11.609981024128409],[127,295,71,-11.626860193783939],[127,295,72,-11.691023721827682],[127,295,73,-11.76899193248654],[127,295,74,-11.811696616805543],[127,295,75,-11.816254745869857],[127,295,76,-11.792754615461526],[127,295,77,-11.75526044343342],[127,295,78,-11.704572992748496],[127,295,79,-11.64637935091837],[127,296,64,-11.65825980679593],[127,296,65,-11.684769564180513],[127,296,66,-11.68849031727862],[127,296,67,-11.672803880645832],[127,296,68,-11.657871805640807],[127,296,69,-11.653920845800545],[127,296,70,-11.657515516082604],[127,296,71,-11.67117648045676],[127,296,72,-11.737858681657661],[127,296,73,-11.81456258587934],[127,296,74,-11.860275150437355],[127,296,75,-11.859615654041436],[127,296,76,-11.834508541959751],[127,296,77,-11.797561098805229],[127,296,78,-11.748583194150807],[127,296,79,-11.689517268339015],[127,297,64,-11.70562822279004],[127,297,65,-11.733326289862932],[127,297,66,-11.735266840702973],[127,297,67,-11.718722021842902],[127,297,68,-11.704458333382826],[127,297,69,-11.698749767553618],[127,297,70,-11.701429112486089],[127,297,71,-11.716440252455358],[127,297,72,-11.782608722303568],[127,297,73,-11.861518005196324],[127,297,74,-11.91034229185783],[127,297,75,-11.91061507880281],[127,297,76,-11.88459201094237],[127,297,77,-11.846294140109032],[127,297,78,-11.793393946951069],[127,297,79,-11.738731543962954],[127,298,64,-11.756883025193455],[127,298,65,-11.785138821770946],[127,298,66,-11.789074541634914],[127,298,67,-11.772771781809187],[127,298,68,-11.755804188085333],[127,298,69,-11.748538101946055],[127,298,70,-11.74675365745723],[127,298,71,-11.763932177731139],[127,298,72,-11.820827638110238],[127,298,73,-11.894755016942092],[127,298,74,-11.938628372865523],[127,298,75,-11.952984364486673],[127,298,76,-11.927569850579504],[127,298,77,-11.888998016960867],[127,298,78,-11.835128094290646],[127,298,79,-11.782894726309799],[127,299,64,-11.80342901794483],[127,299,65,-11.832203685739302],[127,299,66,-11.838457374748716],[127,299,67,-11.82097515088846],[127,299,68,-11.801509053098352],[127,299,69,-11.792380354468186],[127,299,70,-11.791855821068477],[127,299,71,-11.810484229906336],[127,299,72,-11.863367575308306],[127,299,73,-11.940311966256195],[127,299,74,-11.987149502449936],[127,299,75,-11.998988206911378],[127,299,76,-11.974854632755815],[127,299,77,-11.934842458004209],[127,299,78,-11.883100790248243],[127,299,79,-11.830266185409211],[127,300,64,-11.857677793046829],[127,300,65,-11.88631719599735],[127,300,66,-11.891621587500088],[127,300,67,-11.873727427346404],[127,300,68,-11.853657261758942],[127,300,69,-11.843429777809835],[127,300,70,-11.878822326933324],[127,300,71,-11.915212661458018],[127,300,72,-11.974543426145374],[127,300,73,-12.029101887880163],[127,300,74,-12.056488990599165],[127,300,75,-12.053426322864052],[127,300,76,-12.026013514662267],[127,300,77,-11.983721341492918],[127,300,78,-11.9316695024304],[127,300,79,-11.876571306523466],[127,301,64,-11.906650941817894],[127,301,65,-11.934011988928374],[127,301,66,-11.935107014141417],[127,301,67,-11.919584671532727],[127,301,68,-11.90198679393348],[127,301,69,-11.890714634238197],[127,301,70,-11.926851133163485],[127,301,71,-11.960261916469351],[127,301,72,-12.017557860868294],[127,301,73,-12.073969954536599],[127,301,74,-12.09960962559572],[127,301,75,-12.095585502362564],[127,301,76,-12.068767805971266],[127,301,77,-12.027651357834154],[127,301,78,-11.971207473732528],[127,301,79,-11.91477406762421],[127,302,64,-11.951859164667647],[127,302,65,-11.977317958794607],[127,302,66,-11.977652060995439],[127,302,67,-11.963569162698574],[127,302,68,-11.948014929742145],[127,302,69,-11.944978537794771],[127,302,70,-11.97831135995073],[127,302,71,-12.011533356840147],[127,302,72,-12.066615686314453],[127,302,73,-12.126097727391592],[127,302,74,-12.153943236776135],[127,302,75,-12.153905429104835],[127,302,76,-12.127810520377537],[127,302,77,-12.082818209048547],[127,302,78,-12.02448366440693],[127,302,79,-11.966876972294472],[127,303,64,-11.995523628968268],[127,303,65,-12.022417484840757],[127,303,66,-12.02756186620663],[127,303,67,-12.012495079286143],[127,303,68,-11.995797177161194],[127,303,69,-12.003411176465216],[127,303,70,-12.028586738797166],[127,303,71,-12.0548735106767],[127,303,72,-12.108278961655285],[127,303,73,-12.16168955429003],[127,303,74,-12.185438487117974],[127,303,75,-12.19123118940873],[127,303,76,-12.165843386604283],[127,303,77,-12.115993885690566],[127,303,78,-12.059330983756844],[127,303,79,-12.003217083599024],[127,304,64,-12.042830328514762],[127,304,65,-12.068949029408728],[127,304,66,-12.073585302582323],[127,304,67,-12.05888398068845],[127,304,68,-12.042024358337224],[127,304,69,-12.054089232004845],[127,304,70,-12.074786755045954],[127,304,71,-12.098979853947764],[127,304,72,-12.156715536197135],[127,304,73,-12.205983692133314],[127,304,74,-12.226563160745265],[127,304,75,-12.231125124039231],[127,304,76,-12.207954574263969],[127,304,77,-12.15790108392834],[127,304,78,-12.103144838433527],[127,304,79,-12.046953643954819],[127,305,64,-12.088802890771],[127,305,65,-12.115090797099537],[127,305,66,-12.117980100161558],[127,305,67,-12.106698456239835],[127,305,68,-12.090595697078248],[127,305,69,-12.101900032682096],[127,305,70,-12.12112299811314],[127,305,71,-12.147925788172275],[127,305,72,-12.208346676616163],[127,305,73,-12.257450199963975],[127,305,74,-12.275951952703016],[127,305,75,-12.27420743574799],[127,305,76,-12.254491975383676],[127,305,77,-12.205138299342693],[127,305,78,-12.1489448792836],[127,305,79,-12.093490403863106],[127,306,64,-12.137876470392309],[127,306,65,-12.164551474286867],[127,306,66,-12.169597488595551],[127,306,67,-12.157771760505954],[127,306,68,-12.142993551178563],[127,306,69,-12.142033237939566],[127,306,70,-12.162898479347064],[127,306,71,-12.1929196488947],[127,306,72,-12.252208041754676],[127,306,73,-12.298381797352082],[127,306,74,-12.316708013438545],[127,306,75,-12.311510804987725],[127,306,76,-12.287500529495787],[127,306,77,-12.241722577863657],[127,306,78,-12.186690373778738],[127,306,79,-12.132156669292318],[127,307,64,-12.183657245708478],[127,307,65,-12.210969910933835],[127,307,66,-12.218311367807333],[127,307,67,-12.204278871495871],[127,307,68,-12.188494234492872],[127,307,69,-12.197867054761572],[127,307,70,-12.22001558309083],[127,307,71,-12.245473013512775],[127,307,72,-12.305438913769386],[127,307,73,-12.348068872418484],[127,307,74,-12.367619391664958],[127,307,75,-12.358103891402596],[127,307,76,-12.333013961699162],[127,307,77,-12.289389335449403],[127,307,78,-12.236308800360883],[127,307,79,-12.182412528684758],[127,308,64,-12.218929194846838],[127,308,65,-12.250349246560432],[127,308,66,-12.257637761901128],[127,308,67,-12.247277803388473],[127,308,68,-12.23898907431691],[127,308,69,-12.237900605212026],[127,308,70,-12.258972813492939],[127,308,71,-12.28130457601993],[127,308,72,-12.339621520057788],[127,308,73,-12.38401072016718],[127,308,74,-12.407349803108932],[127,308,75,-12.403377484157074],[127,308,76,-12.377039235088148],[127,308,77,-12.337514742566498],[127,308,78,-12.2880213752516],[127,308,79,-12.234362043292565],[127,309,64,-12.26537480510142],[127,309,65,-12.294077261508454],[127,309,66,-12.299096290404501],[127,309,67,-12.293278702298178],[127,309,68,-12.28307869794347],[127,309,69,-12.28142700838953],[127,309,70,-12.285740692002735],[127,309,71,-12.300889134207754],[127,309,72,-12.339210440574373],[127,309,73,-12.388607752115105],[127,309,74,-12.419735868256183],[127,309,75,-12.422270946846274],[127,309,76,-12.38686575090684],[127,309,77,-12.353637868238135],[127,309,78,-12.316562998024038],[127,309,79,-12.266580725597672],[127,310,64,-12.306408564400497],[127,310,65,-12.334699111357422],[127,310,66,-12.337401927966194],[127,310,67,-12.33320563166769],[127,310,68,-12.323539610197301],[127,310,69,-12.321538125720672],[127,310,70,-12.326176695589712],[127,310,71,-12.34222550483169],[127,310,72,-12.38307011089974],[127,310,73,-12.43196019883291],[127,310,74,-12.462144012973237],[127,310,75,-12.466554869983822],[127,310,76,-12.431418643371739],[127,310,77,-12.394059581949643],[127,310,78,-12.35826670884603],[127,310,79,-12.307682806346838],[127,311,64,-12.348676126252379],[127,311,65,-12.379487179609221],[127,311,66,-12.380800632232164],[127,311,67,-12.376980285125024],[127,311,68,-12.36798393799593],[127,311,69,-12.368237367979019],[127,311,70,-12.371047765684427],[127,311,71,-12.387945616214642],[127,311,72,-12.427152348012362],[127,311,73,-12.477151209725152],[127,311,74,-12.509921431015442],[127,311,75,-12.512822013853077],[127,311,76,-12.480458803567853],[127,311,77,-12.442842775471549],[127,311,78,-12.407946622355832],[127,311,79,-12.365097739118186],[127,312,64,-12.38109755750041],[127,312,65,-12.411767392463435],[127,312,66,-12.414439057873825],[127,312,67,-12.409041546318054],[127,312,68,-12.399003740162566],[127,312,69,-12.404683287126076],[127,312,70,-12.409009060642452],[127,312,71,-12.42761450144254],[127,312,72,-12.468011775590092],[127,312,73,-12.519516088521799],[127,312,74,-12.55134339526419],[127,312,75,-12.551411461833663],[127,312,76,-12.527359154124488],[127,312,77,-12.489292198402469],[127,312,78,-12.455753900435496],[127,312,79,-12.418763644682171],[127,313,64,-12.424566618884434],[127,313,65,-12.455769389087354],[127,313,66,-12.460058904389323],[127,313,67,-12.452126096637214],[127,313,68,-12.443542590029976],[127,313,69,-12.450207356802784],[127,313,70,-12.453696872091342],[127,313,71,-12.472838331139668],[127,313,72,-12.514006059466338],[127,313,73,-12.56720584460826],[127,313,74,-12.59980991003628],[127,313,75,-12.60007684895646],[127,313,76,-12.57876269380223],[127,313,77,-12.535738525503664],[127,313,78,-12.486314006265898],[127,313,79,-12.440305164464581],[127,314,64,-12.474336602692194],[127,314,65,-12.503907313608442],[127,314,66,-12.508836987071508],[127,314,67,-12.501905804117726],[127,314,68,-12.493820541650623],[127,314,69,-12.49614672987892],[127,314,70,-12.501132527086106],[127,314,71,-12.520593811857426],[127,314,72,-12.562854150439131],[127,314,73,-12.617450482454593],[127,314,74,-12.65306518719057],[127,314,75,-12.653811136428882],[127,314,76,-12.632723272665354],[127,314,77,-12.590283099669339],[127,314,78,-12.532528755942018],[127,314,79,-12.494447237119685],[127,315,64,-12.522284717210022],[127,315,65,-12.551504728272096],[127,315,66,-12.554413579030276],[127,315,67,-12.547296873786937],[127,315,68,-12.540690031865855],[127,315,69,-12.540390623235375],[127,315,70,-12.54554665591418],[127,315,71,-12.56224580638624],[127,315,72,-12.610603043331034],[127,315,73,-12.665348496153879],[127,315,74,-12.703543679921783],[127,315,75,-12.705446434864225],[127,315,76,-12.684409068541393],[127,315,77,-12.643476643871319],[127,315,78,-12.579009403270424],[127,315,79,-12.538436820457335],[127,316,64,-12.576567476581104],[127,316,65,-12.603094446846962],[127,316,66,-12.604752200176229],[127,316,67,-12.595875381949607],[127,316,68,-12.586849578484165],[127,316,69,-12.583124532564113],[127,316,70,-12.58866108083903],[127,316,71,-12.609163439252365],[127,316,72,-12.6591429033289],[127,316,73,-12.717231082834704],[127,316,74,-12.754829760471216],[127,316,75,-12.758299767377709],[127,316,76,-12.74135209343501],[127,316,77,-12.698226508395967],[127,316,78,-12.633661960487773],[127,316,79,-12.583808903898515],[127,317,64,-12.62107224032032],[127,317,65,-12.648728648057594],[127,317,66,-12.649748463797952],[127,317,67,-12.639438624795003],[127,317,68,-12.631797228666624],[127,317,69,-12.627552309949328],[127,317,70,-12.631735287526515],[127,317,71,-12.654851500101914],[127,317,72,-12.706664383449345],[127,317,73,-12.766068701999462],[127,317,74,-12.804063338527376],[127,317,75,-12.80997042128844],[127,317,76,-12.791993881881332],[127,317,77,-12.749360979378599],[127,317,78,-12.686333685299992],[127,317,79,-12.633048197855834],[127,318,64,-12.663950184060623],[127,318,65,-12.689118316902249],[127,318,66,-12.688594535598227],[127,318,67,-12.680073036557314],[127,318,68,-12.671847215239781],[127,318,69,-12.665849851143607],[127,318,70,-12.669605827758094],[127,318,71,-12.690533044475403],[127,318,72,-12.74308506514143],[127,318,73,-12.805203214928266],[127,318,74,-12.843291193787055],[127,318,75,-12.851502681139078],[127,318,76,-12.835955336592173],[127,318,77,-12.794570745805798],[127,318,78,-12.737201923854506],[127,318,79,-12.681451292428772],[127,319,64,-12.712119641435057],[127,319,65,-12.738129600285879],[127,319,66,-12.735794447743844],[127,319,67,-12.730452486581562],[127,319,68,-12.718783824353597],[127,319,69,-12.712204673461436],[127,319,70,-12.71678373332026],[127,319,71,-12.739776283136466],[127,319,72,-12.790096858080936],[127,319,73,-12.853260828188397],[127,319,74,-12.892170369579567],[127,319,75,-12.898997263917412],[127,319,76,-12.88414333029902],[127,319,77,-12.843769627394312],[127,319,78,-12.790910045979597],[127,319,79,-12.735232661910524]] diff --git a/pumpkin-world/assets/final_density_dump_7_4.json b/pumpkin-world/assets/final_density_dump_7_4.json new file mode 100644 index 000000000..a6e40679c --- /dev/null +++ b/pumpkin-world/assets/final_density_dump_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,0.037482421875],[112,-64,65,0.037482421875],[112,-64,66,0.037482421875],[112,-64,67,0.037482421875],[112,-64,68,0.037482421875],[112,-64,69,0.037482421875],[112,-64,70,0.037482421875],[112,-64,71,0.037482421875],[112,-64,72,0.037482421875],[112,-64,73,0.037482421875],[112,-64,74,0.037482421875],[112,-64,75,0.037482421875],[112,-64,76,0.037482421875],[112,-64,77,0.037482421875],[112,-64,78,0.037482421875],[112,-64,79,0.037482421875],[112,-63,64,0.04021756411889162],[112,-63,65,0.040293038269493035],[112,-63,66,0.04037009643550354],[112,-63,67,0.04044851349318062],[112,-63,68,0.040528364857250386],[112,-63,69,0.04060985734067375],[112,-63,70,0.04069309576587994],[112,-63,71,0.04077808550320994],[112,-63,72,0.0408647403309429],[112,-63,73,0.04095289060152746],[112,-63,74,0.04104229171091337],[112,-63,75,0.04113263286675896],[112,-63,76,0.041223546150228316],[112,-63,77,0.04131461586509668],[112,-63,78,0.0414053881669522],[112,-63,79,0.04149538096443013],[112,-62,64,0.042979296513781094],[112,-62,65,0.04313234372563915],[112,-62,66,0.0432885688962345],[112,-62,67,0.043447568604751255],[112,-62,68,0.04360948963260285],[112,-62,69,0.043774700514068336],[112,-62,70,0.04394336813017233],[112,-62,71,0.04411546431899815],[112,-62,72,0.04429078207738086],[112,-62,73,0.04446895231195117],[112,-62,74,0.044649461131289196],[112,-62,75,0.044831667668786414],[112,-62,76,0.04501482242379553],[112,-62,77,0.04519808610678464],[112,-62,78,0.04538054897250194],[112,-62,79,0.04556125062362597],[112,-61,64,0.04577491486173618],[112,-61,65,0.046007119496714544],[112,-61,66,0.04624405088965868],[112,-61,67,0.04648518354017114],[112,-61,68,0.04673072874473077],[112,-61,69,0.04698116397000542],[112,-61,70,0.047236673634452296],[112,-61,71,0.04749716057717567],[112,-61,72,0.0477622701328915],[112,-61,73,0.0480314149842214],[112,-61,74,0.04830380077791264],[112,-61,75,0.048578452488442406],[112,-61,76,0.048854241509563],[112,-61,77,0.049129913451697885],[112,-61,78,0.04940411662070638],[112,-61,79,0.04967543115142806],[112,-60,64,0.04861063447117113],[112,-60,65,0.0489231060167713],[112,-60,66,0.04924175767418443],[112,-60,67,0.049566004758545036],[112,-60,68,0.04989611436947345],[112,-60,69,0.0502326152938532],[112,-60,70,0.0505756649980066],[112,-60,71,0.05092506609542236],[112,-60,72,0.051280297037227154],[112,-60,73,0.05164054383203506],[112,-60,74,0.05200473277817172],[112,-60,75,0.052371564187205455],[112,-60,76,0.05273954707397951],[112,-60,77,0.05310703478495612],[112,-60,78,0.05347226153365121],[112,-60,79,0.053833379809303965],[112,-59,64,0.05149135001715404],[112,-59,65,0.05188479049387145],[112,-59,66,0.05228572610975615],[112,-59,67,0.052693579262806045],[112,-59,68,0.05310866273662407],[112,-59,69,0.05353149650353317],[112,-59,70,0.05396216763871209],[112,-59,71,0.054400351439961074],[112,-59,72,0.054845346904552936],[112,-59,73,0.05529611353737125],[112,-59,74,0.05575130947234501],[112,-59,75,0.05620933088424678],[112,-59,76,0.0566683526633758],[112,-59,77,0.05712637032154331],[112,-59,78,0.057581243094111015],[112,-59,79,0.058030738199666074],[112,-58,64,0.05442050387381201],[112,-58,65,0.05489530558308374],[112,-58,66,0.05537874610405361],[112,-58,67,0.05587032067608855],[112,-58,68,0.056370375956293864],[112,-58,69,0.05687936176467281],[112,-58,70,0.057397252300959135],[112,-58,71,0.05792357130547629],[112,-58,72,0.058457430196707086],[112,-58,73,0.05899756789881023],[112,-58,74,0.059542392343109776],[112,-58,75,0.0600900236218194],[112,-58,76,0.060638338766943634],[112,-58,77,0.06118501812247936],[112,-58,78,0.06172759327372968],[112,-58,79,0.06226349649381438],[112,-57,64,0.05740008412976347],[112,-57,65,0.05795646030776077],[112,-57,66,0.058522426572356845],[112,-57,67,0.05909761181906074],[112,-57,68,0.05968238178084729],[112,-57,69,0.060277053470633654],[112,-57,70,0.06088144509432651],[112,-57,71,0.06149490466943691],[112,-57,72,0.06211634873138614],[112,-57,73,0.06274430312700567],[112,-57,74,0.06337694588389021],[112,-57,75,0.0640121521377714],[112,-57,76,0.06464754109404756],[112,-57,77,0.06528052499410888],[112,-57,78,0.06590836005215288],[112,-57,79,0.0665281993238887],[112,-56,64,0.06043042973409597],[112,-56,65,0.06106852207231438],[112,-56,66,0.06171695619095662],[112,-56,67,0.06237554543301048],[112,-56,68,0.06304465464826824],[112,-56,69,0.06372440333835187],[112,-56,70,0.06441440808842722],[112,-56,71,0.0651138143185084],[112,-56,72,0.06582133377233397],[112,-56,73,0.06653528448999167],[112,-56,74,0.06725363325922741],[112,-56,75,0.06797404053330554],[112,-56,76,0.06869390779666959],[112,-56,77,0.06941042735357754],[112,-56,78,0.07012063450938474],[112,-56,79,0.07082146210933409],[112,-55,64,0.06350789962724222],[112,-55,65,0.06422746571071083],[112,-55,66,0.06495793369479598],[112,-55,67,0.06569933635190285],[112,-55,68,0.06645201285706011],[112,-55,69,0.06721582611132487],[112,-55,70,0.0679901518663171],[112,-55,71,0.06877391280303564],[112,-55,72,0.06956561277974942],[112,-55,73,0.07036337397727178],[112,-55,74,0.07116497694506714],[112,-55,75,0.07196790354412207],[112,-55,76,0.07276938277540164],[112,-55,77,0.07356643947611827],[112,-55,78,0.07435594586000972],[112,-55,79,0.07513467587249098],[112,-54,64,0.06662560758194165],[112,-54,65,0.06742577826493085],[112,-54,66,0.0682372402195247],[112,-54,67,0.0690602610299703],[112,-54,68,0.06989512540259016],[112,-54,69,0.07074139247630677],[112,-54,70,0.07159817155959071],[112,-54,71,0.07246415667636416],[112,-54,72,0.07333765488785872],[112,-54,73,0.0742166180073355],[112,-54,74,0.07509867772359625],[112,-54,75,0.0759811841412686],[112,-54,76,0.07686124773821253],[112,-54,77,0.0777357847332072],[112,-54,78,0.07860156585039782],[112,-54,79,0.07945526846096679],[112,-53,64,0.0697747951202611],[112,-53,65,0.0706540114174764],[112,-53,66,0.07154476881395641],[112,-53,67,0.07244756342840346],[112,-53,68,0.07336259285953949],[112,-53,69,0.0742890795586961],[112,-53,70,0.0752258566600991],[112,-53,71,0.07617139991587964],[112,-53,72,0.07712384664858318],[112,-53,73,0.07808101875437572],[112,-53,74,0.079040449791234],[112,-53,75,0.0799994161778926],[112,-53,76,0.08095497252096445],[112,-53,77,0.0819039910796113],[112,-53,78,0.08284320536950089],[112,-53,79,0.08376925790073318],[112,-52,64,0.07294537076763989],[112,-52,65,0.07390134926561863],[112,-52,66,0.07486901846927467],[112,-52,67,0.07584907415923024],[112,-52,68,0.07684159069854476],[112,-52,69,0.0778454366810858],[112,-52,70,0.07885917662241859],[112,-52,71,0.07988109589138569],[112,-52,72,0.08090920603507572],[112,-52,73,0.08194125506695837],[112,-52,74,0.08297474277863208],[112,-52,75,0.08400694112621862],[112,-52,76,0.08503491973296069],[112,-52,77,0.08605557654021803],[112,-52,78,0.08706567362992979],[112,-52,79,0.08806187823293252],[112,-51,64,0.07612650662468981],[112,-51,65,0.07715622768396191],[112,-51,66,0.07819773347291624],[112,-51,67,0.07925186810171064],[112,-51,68,0.08031854367202138],[112,-51,69,0.08139627437948758],[112,-51,70,0.0824833816864494],[112,-51,71,0.08357800649814995],[112,-51,72,0.08467809575969296],[112,-51,73,0.08578139528411788],[112,-51,74,0.08688544890781337],[112,-51,75,0.08798760405862344],[112,-51,76,0.08908502381077447],[112,-51,77,0.09017470548937832],[112,-51,78,0.09125350587588858],[112,-51,79,0.0923181730547696],[112,-50,64,0.07930731013249954],[112,-50,65,0.08040702389587025],[112,-50,66,0.08151860741634304],[112,-50,67,0.08264298047598888],[112,-50,68,0.08377985184062782],[112,-50,69,0.08492739774608339],[112,-50,70,0.08608374037412848],[112,-50,71,0.08724694015772295],[112,-50,72,0.08841495769944911],[112,-50,73,0.08958562365136301],[112,-50,74,0.09075661669946927],[112,-50,75,0.09192544978291854],[112,-50,76,0.09308946466420177],[112,-50,77,0.09424583495231344],[112,-50,78,0.09539157766623876],[112,-50,79,0.09652357341151206],[112,-49,64,0.08224836932546947],[112,-49,65,0.08350955836230464],[112,-49,66,0.08479941047816646],[112,-49,67,0.08600972735984395],[112,-49,68,0.08721238444978997],[112,-49,69,0.08842528542789237],[112,-49,70,0.08964641189170036],[112,-49,71,0.09087382191843689],[112,-49,72,0.09210558071682373],[112,-49,73,0.09333970152563648],[112,-49,74,0.0945740969612712],[112,-49,75,0.09580654100026902],[112,-49,76,0.09703464176529951],[112,-49,77,0.09825582526478147],[112,-49,78,0.09946733021730693],[112,-49,79,0.10066621407269115],[112,-48,64,0.0850429494067419],[112,-48,65,0.08639891236314119],[112,-48,66,0.08778673884486841],[112,-48,67,0.08920196246900503],[112,-48,68,0.09060296018758854],[112,-48,69,0.09187716306595055],[112,-48,70,0.09315914513830943],[112,-48,71,0.0944470380118474],[112,-48,72,0.09573909731192362],[112,-48,73,0.09703360885502611],[112,-48,74,0.0983288081954137],[112,-48,75,0.09962281379701125],[112,-48,76,0.10091357406002195],[112,-48,77,0.10219882840829737],[112,-48,78,0.10347608261893662],[112,-48,79,0.10474259855025185],[112,-47,64,0.08783606686506837],[112,-47,65,0.0892881135020234],[112,-47,66,0.09077499142161162],[112,-47,67,0.09229229328812942],[112,-47,68,0.09383686822145267],[112,-47,69,0.09527118727639594],[112,-47,70,0.09661091319863192],[112,-47,71,0.09795649060366464],[112,-47,72,0.09930643876914806],[112,-47,73,0.10065939092237632],[112,-47,74,0.10201397742569213],[112,-47,75,0.10336872614136229],[112,-47,76,0.10472198027313716],[112,-47,77,0.10607183395219824],[112,-47,78,0.10741608580398966],[112,-47,79,0.10875221069990361],[112,-46,64,0.09063413734115802],[112,-46,65,0.09218294947829148],[112,-46,66,0.09376918524293959],[112,-46,67,0.0953886365864712],[112,-46,68,0.09703835886947931],[112,-46,69,0.09859677246443381],[112,-46,70,0.09999200890193286],[112,-46,71,0.10139344891128471],[112,-46,72,0.10279993299717134],[112,-46,73,0.10421049871312534],[112,-46,74,0.10562422364113494],[112,-46,75,0.10704008962340236],[112,-46,76,0.10845686861598942],[112,-46,77,0.10987303049761975],[112,-46,78,0.11128667312808642],[112,-46,79,0.11269547490985368],[112,-45,64,0.09344228721521682],[112,-45,65,0.09508784352875717],[112,-45,66,0.096772911238658],[112,-45,67,0.09849362957617135],[112,-45,68,0.10024734043325884],[112,-45,69,0.10184484676457344],[112,-45,70,0.10329426061292248],[112,-45,71,0.10475072088785325],[112,-45,72,0.1062134287368279],[112,-45,73,0.10768186295862131],[112,-45,74,0.10915557973306121],[112,-45,75,0.11063403813097314],[112,-45,76,0.11211645184934935],[112,-45,77,0.11360166757261507],[112,-45,78,0.11508807031356381],[112,-45,79,0.11657351603726937],[112,-44,64,0.0962640341895182],[112,-44,65,0.09800555175314259],[112,-44,66,0.0997880532304281],[112,-44,67,0.10160817688674616],[112,-44,68,0.1034636388375273],[112,-44,69,0.10500806206888291],[112,-44,70,0.10651120618790713],[112,-44,71,0.10802278805797433],[112,-44,72,0.10954238881149193],[112,-44,73,0.1110699439919576],[112,-44,74,0.11260549784887275],[112,-44,75,0.11414898831742776],[112,-44,76,0.11570006320412476],[112,-44,77,0.11725792804707028],[112,-44,78,0.11882122606312104],[112,-44,79,0.12038795053337513],[112,-43,64,0.09910102208313169],[112,-43,65,0.10093691493708523],[112,-43,66,0.10281456086167365],[112,-43,67,0.1047312483051341],[112,-43,68,0.10653489564211341],[112,-43,69,0.10808095584221215],[112,-43,70,0.10963822258563395],[112,-43,71,0.11120590074530384],[112,-43,72,0.11278394937274001],[112,-43,73,0.11437275404577803],[112,-43,74,0.11597283443622922],[112,-43,75,0.11758458775093746],[112,-43,76,0.11920806864262201],[112,-43,77,0.12084280612567906],[112,-43,78,0.12248765796561162],[112,-43,79,0.12414070293868566],[112,-42,64,0.10195281187771382],[112,-42,65,0.10388066697494758],[112,-42,66,0.105850278624701],[112,-42,67,0.10785973135691641],[112,-42,68,0.10946105330816225],[112,-42,69,0.11106006231089352],[112,-42,70,0.11267260851790586],[112,-42,71,0.11429813083917634],[112,-42,72,0.11593694201582916],[112,-42,73,0.1175898485620624],[112,-42,74,0.11925781121482394],[112,-42,75,0.12094164662583576],[112,-42,76,0.1226417709650167],[112,-42,77,0.12435798603390893],[112,-42,78,0.12608930841062965],[112,-42,79,0.1278338420634966],[112,-41,64,0.10481673123638185],[112,-41,65,0.1068333021674585],[112,-41,66,0.10889083330823564],[112,-41,67,0.11065596142956607],[112,-41,68,0.11229080704943381],[112,-41,69,0.11394397046146618],[112,-41,70,0.11561361738488947],[112,-41,71,0.11729937912083857],[112,-41,72,0.11900187553068327],[112,-41,73,0.12072228299717971],[112,-41,74,0.12246194825275435],[112,-41,75,0.12422204888692315],[112,-41,76,0.12600330127047965],[112,-41,77,0.12780571655401118],[112,-41,78,0.1296284053100468],[112,-41,79,0.13146943129063046],[112,-40,64,0.10768778489063564],[112,-40,65,0.10978900383204451],[112,-40,66,0.11167582884587932],[112,-40,67,0.1133370488402098],[112,-40,68,0.1150242394949102],[112,-40,69,0.11673332609855977],[112,-40,70,0.11846243756482717],[112,-40,71,0.1202113340111321],[112,-40,72,0.12198087391634192],[112,-40,73,0.12377253149327297],[112,-40,74,0.12558796524209848],[112,-40,75,0.12742863856896763],[112,-40,76,0.1292954932705917],[112,-40,77,0.13118867659545194],[112,-40,78,0.1331073224923301],[112,-40,79,0.1314468707289039],[112,-39,64,0.10765333008727265],[112,-39,65,0.10955543857042258],[112,-39,66,0.11116278109539271],[112,-39,67,0.11280614529868987],[112,-39,68,0.1144788772035721],[112,-39,69,0.11617673432406476],[112,-39,70,0.11789781139874156],[112,-39,71,0.11964192297690882],[112,-39,72,0.12141004042764025],[112,-39,73,0.12320378198696319],[112,-39,74,0.12394200435616179],[112,-39,75,0.12467122373354393],[112,-39,76,0.12875544807393494],[112,-39,77,0.1294132799932148],[112,-39,78,0.1266399979379228],[112,-39,79,0.1241009269648661],[112,-38,64,0.10747700449031225],[112,-38,65,0.10901688443994548],[112,-38,66,0.11060444129669206],[112,-38,67,0.11223257806595685],[112,-38,68,0.11389384616271361],[112,-38,69,0.11558376571619774],[112,-38,70,0.11730030884335602],[112,-38,71,0.11589083897292814],[112,-38,72,0.11534940912223941],[112,-38,73,0.11885069282362883],[112,-38,74,0.11846836491201247],[112,-38,75,0.11857722143408513],[112,-38,76,0.12270258218470466],[112,-38,77,0.12325147959399432],[112,-38,78,0.12201119988543235],[112,-38,79,0.11853702978180718],[112,-37,64,0.10692401017520628],[112,-37,65,0.10844056097992279],[112,-37,66,0.11001062400039857],[112,-37,67,0.11162612801002442],[112,-37,68,0.11327880825216503],[112,-37,69,0.11496386819550741],[112,-37,70,0.11534356385366916],[112,-37,71,0.11283806903882114],[112,-37,72,0.11279449671181346],[112,-37,73,0.11425330904906389],[112,-37,74,0.11508157660870565],[112,-37,75,0.11607983683174468],[112,-37,76,0.11940895989419396],[112,-37,77,0.11860516620248034],[112,-37,78,0.11926698923663329],[112,-37,79,0.11419369867375723],[112,-36,64,0.10634117275813496],[112,-36,65,0.10783651618923937],[112,-36,66,0.10939134928555012],[112,-36,67,0.11099668753271565],[112,-36,68,0.11264343615037635],[112,-36,69,0.11432639498553106],[112,-36,70,0.1154502524962132],[112,-36,71,0.11303902827078192],[112,-36,72,0.11310390831497821],[112,-36,73,0.11320006126334627],[112,-36,74,0.11436805054609873],[112,-36,75,0.1156019631646063],[112,-36,76,0.11836662854636061],[112,-36,77,0.11645147742608142],[112,-36,78,0.11737216614748862],[112,-36,79,0.11195196324698087],[112,-35,64,0.10573854873230658],[112,-35,65,0.10721481910018028],[112,-35,66,0.1087565728377274],[112,-35,67,0.11035399451525356],[112,-35,68,0.11199715365122088],[112,-35,69,0.11368035403163464],[112,-35,70,0.11540060097920866],[112,-35,71,0.1148833946051751],[112,-35,72,0.11511679014252482],[112,-35,73,0.11470259428483588],[112,-35,74,0.11591872635242968],[112,-35,75,0.11721446018450792],[112,-35,76,0.1185339767759769],[112,-35,77,0.11656444148014353],[112,-35,78,0.11676547626185722],[112,-35,79,0.11269986153133381],[112,-34,64,0.10512601636461025],[112,-34,65,0.10658527592544054],[112,-34,66,0.1081159030025473],[112,-34,67,0.10970735300859415],[112,-34,68,0.11134886245014065],[112,-34,69,0.11303414357021213],[112,-34,70,0.11475966984139205],[112,-34,71,0.11652393820571896],[112,-34,72,0.11832683761307591],[112,-34,73,0.11864773835752361],[112,-34,74,0.11990479526782365],[112,-34,75,0.12153714592180147],[112,-34,76,0.12070025380091297],[112,-34,77,0.1187904872355992],[112,-34,78,0.11824017574983628],[112,-34,79,0.11541878011317074],[112,-33,64,0.10451298109155854],[112,-33,65,0.10595713259074241],[112,-33,66,0.10747830402437918],[112,-33,67,0.10906533990524168],[112,-33,68,0.11070665466945216],[112,-33,69,0.11239527315723194],[112,-33,70,0.11412703425432924],[112,-33,71,0.11589985183951354],[112,-33,72,0.11771308511084232],[112,-33,73,0.11956696754173494],[112,-33,74,0.12146209549517949],[112,-33,75,0.12339897740685273],[112,-33,76,0.12537764433240267],[112,-33,77,0.12384361367068661],[112,-33,78,0.12294168683974582],[112,-33,79,0.11955244461954695],[112,-32,64,0.10390806678372817],[112,-32,65,0.10533876287192567],[112,-32,66,0.1068517847068339],[112,-32,67,0.10843549685300963],[112,-32,68,0.11007751041226788],[112,-32,69,0.11177006947956396],[112,-32,70,0.11350828144941166],[112,-32,71,0.1152893838958178],[112,-32,72,0.11711212083886167],[112,-32,73,0.11897617655655701],[112,-32,74,0.1208816679472763],[112,-32,75,0.12282869632696179],[112,-32,76,0.1248169594274879],[112,-32,77,0.12684542424142076],[112,-32,78,0.12891206122946933],[112,-32,79,0.12523352660798054],[112,-31,64,0.10362818990957078],[112,-31,65,0.1047373413851306],[112,-31,66,0.10624307175882151],[112,-31,67,0.10782400669482227],[112,-31,68,0.10946697965345323],[112,-31,69,0.11116336628581971],[112,-31,70,0.11290745474920123],[112,-31,71,0.11469572509722159],[112,-31,72,0.11652623490419524],[112,-31,73,0.1183980608399666],[112,-31,74,0.12031079717331042],[112,-31,75,0.12226411205814518],[112,-31,76,0.12425736233750516],[112,-31,77,0.12628926747917762],[112,-31,78,0.12835764312963946],[112,-31,79,0.13045919463671451],[112,-30,64,0.10415869176827952],[112,-30,65,0.10415850070768373],[112,-30,66,0.10565726711577145],[112,-30,67,0.10723535374023506],[112,-30,68,0.10887884779243945],[112,-30,69,0.11057817778375448],[112,-30,70,0.11232673756245541],[112,-30,71,0.11412018386319403],[112,-30,72,0.11595583381481825],[112,-30,73,0.1178321163630928],[112,-30,74,0.11974807855706211],[112,-30,75,0.12170294752198708],[112,-30,76,0.12369574882192501],[112,-30,77,0.12572498179507968],[112,-30,78,0.12778835232064967],[112,-30,79,0.12988256334428602],[112,-29,64,0.10468553091024553],[112,-29,65,0.1039908498083251],[112,-29,66,0.10509748854734363],[112,-29,67,0.10667196719123656],[112,-29,68,0.10831478420387074],[112,-29,69,0.11001535485594462],[112,-29,70,0.11176611999787865],[112,-29,71,0.11356186618499912],[112,-29,72,0.11539913654291373],[112,-29,73,0.11727569316389932],[112,-29,74,0.11919003195386164],[112,-29,75,0.12114095072234941],[112,-29,76,0.12312717118846375],[112,-29,77,0.1251470154575381],[112,-29,78,0.12719813740289798],[112,-29,79,0.12927730926103168],[112,-28,64,0.10520821288621164],[112,-28,65,0.10454904032120103],[112,-28,66,0.1045644928778328],[112,-28,67,0.10613384705422145],[112,-28,68,0.10777397312508062],[112,-28,69,0.1094732234415312],[112,-28,70,0.11122304745531834],[112,-28,71,0.11301733727627208],[112,-28,72,0.11485185215464394],[112,-28,73,0.11672369187941968],[112,-28,74,0.1186308199855347],[112,-28,75,0.12057163753511975],[112,-28,76,0.1225446081190805],[112,-28,77,0.12454793460993938],[112,-28,78,0.12657928808078375],[112,-28,79,0.12863558918546975],[112,-27,64,0.10572387125726791],[112,-27,65,0.10509834199180007],[112,-27,66,0.10445313798137741],[112,-27,67,0.10561817186897875],[112,-27,68,0.10725272621136465],[112,-27,69,0.10894720441636256],[112,-27,70,0.11069205053004548],[112,-27,71,0.11248026434105578],[112,-27,72,0.114306838358308],[112,-27,73,0.11616824100187381],[112,-27,74,0.11806194687829381],[112,-27,75,0.11998601488331126],[112,-27,76,0.12193871475729502],[112,-27,77,0.12391820260611797],[112,-27,78,0.12592224578888397],[112,-27,79,0.1279479974606786],[112,-26,64,0.10622686719400148],[112,-26,65,0.10563212669025988],[112,-26,66,0.10501915426356899],[112,-26,67,0.10511888756938478],[112,-26,68,0.10674407606609808],[112,-26,69,0.10842941427196433],[112,-26,70,0.11016435552597023],[112,-26,71,0.11194103975388024],[112,-26,72,0.11375374026898846],[112,-26,73,0.11559835416665085],[112,-26,74,0.11747193716939543],[112,-26,75,0.11937228365055838],[112,-26,76,0.1212975524476494],[112,-26,77,0.12324593896686044],[112,-26,78,0.12521539397325498],[112,-26,79,0.12720338935410724],[112,-25,64,0.10670833329569],[112,-25,65,0.10614043886973808],[112,-25,66,0.10555517633619635],[112,-25,67,0.10494296738391393],[112,-25,68,0.10623738277202895],[112,-25,69,0.10790829567895982],[112,-25,70,0.10962754160252455],[112,-25,71,0.11138646715310828],[112,-25,72,0.11317870746597193],[112,-25,73,0.1149996797275433],[112,-25,74,0.11684611880727114],[112,-25,75,0.11871565571646028],[112,-25,76,0.12060643949913641],[112,-25,77,0.1225168030522917],[112,-25,78,0.12444497326977604],[112,-25,79,0.12638882580236455],[112,-24,64,0.107154659430559],[112,-24,65,0.10660934538979211],[112,-24,66,0.10604696993957147],[112,-24,67,0.10545813669415638],[112,-24,68,0.10572006379678361],[112,-24,69,0.10737114553172103],[112,-24,70,0.10906886185830293],[112,-24,71,0.11080385430394812],[112,-24,72,0.11256921685478095],[112,-24,73,0.11435998882192853],[112,-24,74,0.11617268778953639],[112,-24,75,0.11800488336666119],[112,-24,76,0.11985481234848595],[112,-24,77,0.12172103578596413],[112,-24,78,0.12360213836289571],[112,-24,79,0.12549647038213818],[112,-23,64,0.1075497773048246],[112,-23,65,0.10702361014702985],[112,-23,66,0.1064801005181644],[112,-23,67,0.10591006498011064],[112,-23,68,0.10529773796653674],[112,-23,69,0.10680819819603024],[112,-23,70,0.10847966213812782],[112,-23,71,0.1101857467894456],[112,-23,72,0.11191909065112982],[112,-23,73,0.11367443683474378],[112,-23,74,0.11544816238165428],[112,-23,75,0.11723784647307423],[112,-23,76,0.11904187813951743],[112,-23,77,0.12085910397314499],[112,-23,78,0.12268851624898179],[112,-23,79,0.12452898176765519],[112,-22,64,0.1078788513441393],[112,-22,65,0.10736926256835248],[112,-22,66,0.10684145852584921],[112,-22,67,0.1062865252894691],[112,-22,68,0.10568829527114754],[112,-22,69,0.10621108184148909],[112,-22,70,0.10785280851690354],[112,-22,71,0.10952634710860734],[112,-22,72,0.1112239533123536],[112,-22,73,0.11294013408661395],[112,-22,74,0.11467117484030478],[112,-22,75,0.11641470349574061],[112,-22,76,0.11816929203875584],[112,-22,77,0.11993409606392931],[112,-22,78,0.12170853272800684],[112,-22,79,0.12349199743523277],[112,-21,64,0.10812803308538661],[112,-21,65,0.1076332828867873],[112,-21,66,0.10711888255648858],[112,-21,67,0.10657626244996601],[112,-21,68,0.10598900345997742],[112,-21,69,0.10557226567310547],[112,-21,70,0.10718207650626672],[112,-21,71,0.10882084597036705],[112,-21,72,0.11048050616856249],[112,-21,73,0.11215536656845204],[112,-21,74,0.11384164275631296],[112,-21,75,0.11553701975992484],[112,-21,76,0.11724025055267862],[112,-21,77,0.1189507902496344],[112,-21,78,0.12066846641449563],[112,-21,79,0.12239318581134395],[112,-20,64,0.10797485850904144],[112,-20,65,0.10767484428169496],[112,-20,66,0.10725848123542484],[112,-20,67,0.10673413886995209],[112,-20,68,0.1061187765379769],[112,-20,69,0.10542921953917524],[112,-20,70,0.10630527141203541],[112,-20,71,0.10790162636064654],[112,-20,72,0.10955530075188523],[112,-20,73,0.11126509751962696],[112,-20,74,0.11296050502041746],[112,-20,75,0.11460751373082302],[112,-20,76,0.1162592421472509],[112,-20,77,0.11791540304207619],[112,-20,78,0.11957618865203726],[112,-20,79,0.1212419708476564],[112,-19,64,0.10759324253191783],[112,-19,65,0.10728615422872523],[112,-19,66,0.10686641588296315],[112,-19,67,0.10634187171890758],[112,-19,68,0.10572936717564668],[112,-19,69,0.10504608830310128],[112,-19,70,0.1050553358525457],[112,-19,71,0.10663091283308744],[112,-19,72,0.10826849951058758],[112,-19,73,0.10996717013000509],[112,-19,74,0.11172338748767396],[112,-19,75,0.11353146744163875],[112,-19,76,0.1152317845185588],[112,-19,77,0.11683532713256681],[112,-19,78,0.11844089559805493],[112,-19,79,0.12004925188361332],[112,-18,64,0.10717345966345622],[112,-18,65,0.1068552957138518],[112,-18,66,0.10642852453648989],[112,-18,67,0.10590037369516445],[112,-18,68,0.10528738071342385],[112,-18,69,0.10460690813848347],[112,-18,70,0.10387221430831352],[112,-18,71,0.10535245683749804],[112,-18,72,0.10697096836940433],[112,-18,73,0.1086552029783873],[112,-18,74,0.11040187445123206],[112,-18,75,0.1122054761857446],[112,-18,76,0.1140587006615861],[112,-18,77,0.11571675145571853],[112,-18,78,0.11727066514686943],[112,-18,79,0.11882489152021866],[112,-17,64,0.10672259026388733],[112,-17,65,0.1063887031285257],[112,-17,66,0.10595049492684804],[112,-17,67,0.10541449089654638],[112,-17,68,0.10479672576057855],[112,-17,69,0.10411455093935572],[112,-17,70,0.10338136950409507],[112,-17,71,0.10406222302416547],[112,-17,72,0.10565728398250555],[112,-17,73,0.10732232902086673],[112,-17,74,0.10905440601051293],[112,-17,75,0.11084829197973642],[112,-17,76,0.11269688831320052],[112,-17,77,0.11456062439806165],[112,-17,78,0.11606768262814424],[112,-17,79,0.11757224571879427],[112,-16,64,0.10622567260927414],[112,-16,65,0.1058717386296994],[112,-16,66,0.10541814138030847],[112,-16,67,0.10487063949836391],[112,-16,68,0.10424457281156328],[112,-16,69,0.1035570811862254],[112,-16,70,0.10282158341581919],[112,-16,71,0.10274556072053953],[112,-16,72,0.10431387326337103],[112,-16,73,0.10595609680694523],[112,-16,74,0.1076696681544877],[112,-16,75,0.10944972571972936],[112,-16,76,0.11128947267661166],[112,-16,77,0.11318052543230199],[112,-16,78,0.11482668560364097],[112,-16,79,0.11628502963834354],[112,-15,64,0.10566588783995054],[112,-15,65,0.10528813415303426],[112,-15,66,0.10481587555857236],[112,-15,67,0.10425406206259512],[112,-15,68,0.10361715222020047],[112,-15,69,0.10292186307180767],[112,-15,70,0.10218148138178562],[112,-15,71,0.10140607805803642],[112,-15,72,0.10292746430524566],[112,-15,73,0.10454460087147507],[112,-15,74,0.10623712682539899],[112,-15,75,0.10800058589386265],[112,-15,76,0.1098285430589317],[112,-15,77,0.11171290097236436],[112,-15,78,0.11354187301749016],[112,-15,79,0.11495632408147298],[112,-14,64,0.1050304479874164],[112,-14,65,0.10462562851320578],[112,-14,66,0.10413202886385466],[112,-14,67,0.10355376753977832],[112,-14,68,0.10290424448414304],[112,-14,69,0.10219953796279356],[112,-14,70,0.10145264271773677],[112,-14,71,0.10067360291747904],[112,-14,72,0.10148721899032367],[112,-14,73,0.10307793893971637],[112,-14,74,0.10474779948795777],[112,-14,75,0.10649276725226273],[112,-14,76,0.10830680364656327],[112,-14,77,0.11018214422231126],[112,-14,78,0.11210957659821498],[112,-14,79,0.11358092236094242],[112,-13,64,0.10430999125156694],[112,-13,65,0.10387536527025279],[112,-13,66,0.10335826265887255],[112,-13,67,0.10276196388165702],[112,-13,68,0.10209864536636416],[112,-13,69,0.10138353222690898],[112,-13,70,0.1006291613039125],[112,-13,71,0.09984542818017972],[112,-13,72,0.09998442055226418],[112,-13,73,0.10154797918479902],[112,-13,74,0.10319410931371732],[112,-13,75,0.10491919803009563],[112,-13,76,0.10671761862366888],[112,-13,77,0.10858196871240942],[112,-13,78,0.11050331456673958],[112,-13,79,0.11215494974839751],[112,-12,64,0.08090464981515466],[112,-12,65,0.09500378040412144],[112,-12,66,0.10248902673004612],[112,-12,67,0.10187353698272736],[112,-12,68,0.10119567472615212],[112,-12,69,0.10046960531796884],[112,-12,70,0.09970724206453832],[112,-12,71,0.09891820454327377],[112,-12,72,0.09841218468052412],[112,-12,73,0.09994814395443997],[112,-12,74,0.10156974794023363],[112,-12,75,0.10327378712106598],[112,-12,76,0.10505504800072302],[112,-12,77,0.1069065067255404],[112,-12,78,0.10881953676831714],[112,-12,79,0.11067552209623867],[112,-11,64,0.04288399305027676],[112,-11,65,0.05203256909680595],[112,-11,66,0.062214864393302226],[112,-11,67,0.07341055295588365],[112,-11,68,0.08559600551066894],[112,-11,69,0.0987409616784612],[112,-11,70,0.09868483322209125],[112,-11,71,0.09789013072242687],[112,-11,72,0.09707863481439306],[112,-11,73,0.09827320993738564],[112,-11,74,0.0998695467449168],[112,-11,75,0.1015513711180451],[112,-11,76,0.1033138740558931],[112,-11,77,0.10515041767261674],[112,-11,78,0.1070527038772734],[112,-11,79,0.10901096455473533],[112,-10,64,0.01973358885738449],[112,-10,65,0.02494158602695008],[112,-10,66,0.030998047564106505],[112,-10,67,0.03790867922159253],[112,-10,68,0.04567547178682883],[112,-10,69,0.05429445321549888],[112,-10,70,0.06375139073522165],[112,-10,71,0.07402241277969694],[112,-10,72,0.0850747828020059],[112,-10,73,0.09651912476614172],[112,-10,74,0.09808935658270529],[112,-10,75,0.09974766112525803],[112,-10,76,0.10148961825375905],[112,-10,77,0.10330897718430188],[112,-10,78,0.1051977844642232],[112,-10,79,0.10714654139800849],[112,-9,64,0.012625737621895115],[112,-9,65,0.013574419828889529],[112,-9,66,0.014498087345579409],[112,-9,67,0.0167122544192644],[112,-9,68,0.021010982704153486],[112,-9,69,0.02600739085096862],[112,-9,70,0.031709094209900916],[112,-9,71,0.03811433735569856],[112,-9,72,0.04521267482383058],[112,-9,73,0.05298568299489934],[112,-9,74,0.06140770449554699],[112,-9,75,0.0704466263893506],[112,-9,76,0.08006469280017733],[112,-9,77,0.09021935150904367],[112,-9,78,0.1008641326106883],[112,-9,79,0.10518606938139899],[112,-8,64,0.011098982027771633],[112,-8,65,0.01201598805215909],[112,-8,66,0.01291640073785621],[112,-8,67,0.013798529140287178],[112,-8,68,0.014665459100807427],[112,-8,69,0.015524171687178422],[112,-8,70,0.016381283967647275],[112,-8,71,0.01724266374584963],[112,-8,72,0.020594352297621864],[112,-8,73,0.02515396624773526],[112,-8,74,0.03027290392975612],[112,-8,75,0.035937531921090386],[112,-8,76,0.042128055073896685],[112,-8,77,0.04881926240344536],[112,-8,78,0.05598129898396236],[112,-8,79,0.06358046252455724],[112,-7,64,0.009548843917909533],[112,-7,65,0.01043464347065188],[112,-7,66,0.011312234966162819],[112,-7,67,0.012179258545101917],[112,-7,68,0.0130370048195315],[112,-7,69,0.013890655278392852],[112,-7,70,0.01474555057647615],[112,-7,71,0.015606725059520822],[112,-7,72,0.0164785763432339],[112,-7,73,0.017364587294731216],[112,-7,74,0.018267100583635204],[112,-7,75,0.019187145856721093],[112,-7,76,0.020124319475963097],[112,-7,77,0.022970391910679417],[112,-7,78,0.02733041224472307],[112,-7,79,0.03208418018248633],[112,-6,64,0.00797899351720959],[112,-6,65,0.008834363792102132],[112,-6,66,0.0096897369875496],[112,-6,67,0.010542131451063709],[112,-6,68,0.011391045955951161],[112,-6,69,0.01223981330812633],[112,-6,70,0.01309243882846297],[112,-6,71,0.013953060623909247],[112,-6,72,0.014825540526924929],[112,-6,73,0.015713113630461458],[112,-6,74,0.01661809665701033],[112,-6,75,0.017541655272342367],[112,-6,76,0.018483630326313283],[112,-6,77,0.019442422875354266],[112,-6,78,0.020414937713948558],[112,-6,79,0.021396585017150083],[112,-5,64,0.006393396681947565],[112,-5,65,0.007219388714320364],[112,-5,66,0.008053286508269943],[112,-5,67,0.00889153487903858],[112,-5,68,0.009731875191626447],[112,-5,69,0.010575781754325721],[112,-5,70,0.01142589583964288],[112,-5,71,0.01228541871410373],[112,-5,72,0.013157629678170113],[112,-5,73,0.014045468231595215],[112,-5,74,0.014951180669735373],[112,-5,75,0.015876031274816068],[112,-5,76,0.01682007812466506],[112,-5,77,0.01778201340078273],[112,-5,78,0.018759067937685406],[112,-5,79,0.019746979617772015],[112,-4,64,0.004796173748822761],[112,-4,65,0.0055940730575751154],[112,-4,66,0.0064073480591035625],[112,-4,67,0.007231918126512878],[112,-4,68,0.008063832218716722],[112,-4,69,0.00890273652393419],[112,-4,70,0.00974991095113112],[112,-4,71,0.010607602818294991],[112,-4,72,0.01147847890902687],[112,-4,73,0.012365146433552812],[112,-4,74,0.013269743261427495],[112,-4,75,0.014193597639360905],[112,-4,76,0.015136957454131185],[112,-4,77,0.01609878894830691],[112,-4,78,0.017076644645318943],[112,-4,79,0.018066600091766742],[112,-3,64,0.0031915155757568474],[112,-3,65,0.0039627959442571446],[112,-3,66,0.004756377350512674],[112,-3,67,0.005567700421518981],[112,-3,68,0.006391215838521466],[112,-3,69,0.007224811801430381],[112,-3,70,0.008068441081429846],[112,-3,71,0.008923403956500956],[112,-3,72,0.009791742210519153],[112,-3,73,0.01067570599693142],[112,-3,74,0.011577293989936356],[112,-3,75,0.012497867081543695],[112,-3,76,0.013437835718955264],[112,-3,77,0.014396420814369124],[112,-3,78,0.015371487998414647],[112,-3,79,0.016359454830403217],[112,-2,64,0.001583658006698087],[112,-2,65,0.0023299272281034388],[112,-2,66,0.003104783064044239],[112,-2,67,0.003903231548157509],[112,-2,68,0.004718245803359826],[112,-2,69,0.0055460639934714505],[112,-2,70,0.006385376510812882],[112,-2,71,0.007236567206734675],[112,-2,72,0.008101058057498828],[112,-2,73,0.008980729790982448],[112,-2,74,0.009877418945936328],[112,-2,75,0.010792491662148063],[112,-2,76,0.011726494327199346],[112,-2,77,0.012678881034738541],[112,-2,78,0.013647817640256773],[112,-2,79,0.01463006203467011],[112,-1,64,-2.308397318348512E-5],[112,-1,65,6.99852412761806E-4],[112,-1,66,0.0014569452760141827],[112,-1,67,0.0022428065794760574],[112,-1,68,0.00304907545960651],[112,-1,69,0.0038704822296854466],[112,-1,70,0.004704547939028901],[112,-1,71,0.005550793139744542],[112,-1,72,0.006410042480346353],[112,-1,73,0.007283807473300172],[112,-1,74,0.008173747949644332],[112,-1,75,0.009081212533659974],[112,-1,76,0.01000685829107217],[112,-1,77,0.010950349526876832],[112,-1,78,0.011910135533679264],[112,-1,79,0.012883306919848386],[112,0,64,-0.0016242211141160837],[112,0,65,-9.229426851992271E-4],[112,0,66,-1.8270827225992477E-4],[112,0,67,5.907358735260032E-4],[112,0,68,0.0013878562706830444],[112,0,69,0.0022020464008740753],[112,0,70,0.0030297756784707407],[112,0,71,0.0038697748835679565],[112,0,72,0.004722310162617811],[112,0,73,0.005588536542730131],[112,0,74,0.0064699315064971315],[112,0,75,0.007367808989366841],[112,0,76,0.008282913977240429],[112,0,77,0.00921509769983606],[112,0,78,0.010163073235686368],[112,0,79,0.011124251168934457],[112,1,64,-0.003214931398876095],[112,1,65,-0.0025337254396924215],[112,1,66,-0.0018095662467138513],[112,1,67,-0.001048528095759624],[112,1,68,-2.611444195486673E-4],[112,1,69,5.448339032456391E-4],[112,1,70,0.0013649619743334688],[112,1,71,0.002197271645700192],[112,1,72,0.003041524243214301],[112,1,73,0.00389854331220641],[112,1,74,0.004769627957925626],[112,1,75,0.005656047166367024],[112,1,76,0.0065586153037221545],[112,1,77,0.007477348807685863],[112,1,78,0.00841120390149193],[112,1,79,0.009357894983458832],[112,2,64,-0.004789836075916882],[112,2,65,-0.004127306769919367],[112,2,66,-0.003418637443203102],[112,2,67,-0.0026702068728458287],[112,2,68,-0.0018933725759159674],[112,2,69,-0.001096825425003137],[112,2,70,-2.857743272122649E-4],[112,2,71,5.372176955064361E-4],[112,2,72,0.0013714736518682124],[112,2,73,0.002217522503217202],[112,2,74,0.0030764994536883043],[112,2,75,0.003949627012245825],[112,2,76,0.004837777041981016],[112,2,77,0.0057411138258997955],[112,2,78,0.006658817995054653],[112,2,79,0.007588890986003427],[112,3,64,-0.0028242952332903294],[112,3,65,-0.005117149279997176],[112,3,66,-0.005004299670391366],[112,3,67,-0.0042689585817237054],[112,3,68,-0.003503765604088836],[112,3,69,-0.00271814718473432],[112,3,70,-0.0019179212361633015],[112,3,71,-0.001106133556452494],[112,3,72,-2.838227054414316E-4],[112,3,73,5.492940122533154E-4],[112,3,74,0.0013942140617537926],[112,3,75,0.002252123107237092],[112,3,76,0.0031239485855703735],[112,3,77,0.004009993468029309],[112,3,78,0.00490965007093299],[112,3,79,0.005821193597766003],[112,4,64,2.735380168866982E-4],[112,4,65,-5.033812134483812E-4],[112,4,66,-0.001512542413913854],[112,4,67,-0.002812648428094079],[112,4,68,-0.004456933502211411],[112,4,69,-0.004313634652284389],[112,4,70,-0.003526347434504503],[112,4,71,-0.0027280229427962648],[112,4,72,-0.0019199774114920171],[112,4,73,-0.001102115176828579],[112,4,74,-2.735370938326852E-4],[112,4,75,5.669296161841314E-4],[112,4,76,0.0014202803290124574],[112,4,77,0.0022869608491375257],[112,4,78,0.003166573985503459],[112,4,79,0.004057664570832437],[112,5,64,4.3127946332345443E-4],[112,5,65,1.1156951241368252E-4],[112,5,66,-1.6296054592148285E-4],[112,5,67,-4.732469042940704E-4],[112,5,68,-8.942371402027218E-4],[112,5,69,-0.00148749701530275],[112,5,70,-0.002300819080069021],[112,5,71,-0.0033698703872168502],[112,5,72,-0.003532063893973433],[112,5,73,-0.0027323664228101337],[112,5,74,-0.0019230104554957212],[112,5,75,-0.0011027937686857656],[112,5,76,-2.706208786545593E-4],[112,5,77,5.74120824232749E-4],[112,5,78,0.0014312620978094647],[112,5,79,0.0022996297445153344],[112,6,64,0.0013964645325550665],[112,6,65,4.744877756739155E-4],[112,6,66,-9.902393334706229E-5],[112,6,67,-4.272644509581166E-4],[112,6,68,-6.068597967395437E-4],[112,6,69,-7.203874182456401E-4],[112,6,70,-8.359269028680049E-4],[112,6,71,-0.001008667037713476],[112,6,72,-0.0012824481357599606],[112,6,73,-0.0016912245337677712],[112,6,74,-0.002260442412335581],[112,6,75,-0.002754176514783485],[112,6,76,-0.001946849456674955],[112,6,77,-0.0011275569838158754],[112,6,78,-2.961953585841965E-4],[112,6,79,5.46382283768684E-4],[112,7,64,0.006918557089483475],[112,7,65,0.004334281450245913],[112,7,66,0.0024276330453365954],[112,7,67,0.001073174388422246],[112,7,68,1.5259384306798347E-4],[112,7,69,-4.377257876408376E-4],[112,7,70,-7.862021633516782E-4],[112,7,71,-9.676200759809788E-4],[112,7,72,-0.001044639171884541],[112,7,73,-0.001069226359407503],[112,7,74,-0.001084007667861325],[112,7,75,-0.001123535096095556],[112,7,76,-0.00121546455323831],[112,7,77,-0.0013816414859267056],[112,7,78,-0.0016390912683611604],[112,7,79,-0.0012007565106922121],[112,8,64,0.02074256489031807],[112,8,65,0.015437912729338626],[112,8,66,0.011165119539748797],[112,8,67,0.00777698254198708],[112,8,68,0.005133741970124706],[112,8,69,0.0031108151326234962],[112,8,70,0.0015994303072374876],[112,8,71,5.05131007724797E-4],[112,8,72,-2.5368245405435117E-4],[112,8,73,-7.471492753376079E-4],[112,8,74,-0.0010352725132637293],[112,8,75,-0.0011691644891544356],[112,8,76,-0.0011922080423514287],[112,8,77,-0.0011411296041631176],[112,8,78,-0.001046980895507858],[112,8,79,-9.360267044206163E-4],[112,9,64,0.04658739239927714],[112,9,65,0.03751614888842761],[112,9,66,0.02985144565371883],[112,9,67,0.023426625732269023],[112,9,68,0.0180819168210145],[112,9,69,0.0136725848382239],[112,9,70,0.010069927061752939],[112,9,71,0.007159982644995361],[112,9,72,0.004842210483303787],[112,9,73,0.0030281837168867065],[112,9,74,0.0016403261115506566],[112,9,75,6.107074143515701E-4],[112,9,76,-1.2009061948380258E-4],[112,9,77,-6.040294181926544E-4],[112,9,78,-8.865842996805441E-4],[112,9,79,-0.0010076266394746089],[112,10,64,0.06452417026879792],[112,10,65,0.06338388086459733],[112,10,66,0.06217396897837261],[112,10,67,0.051731475352181505],[112,10,68,0.04272091823749225],[112,10,69,0.034980810029397055],[112,10,70,0.028364722171755324],[112,10,71,0.02274055890456187],[112,10,72,0.017989625504721322],[112,10,73,0.01400559263679252],[112,10,74,0.010693417904457063],[112,10,75,0.007968267158616671],[112,10,76,0.005754465147190556],[112,10,77,0.003984496051683245],[112,10,78,0.002598068165335088],[112,10,79,0.0015412525855724101],[112,11,64,0.06224957241452929],[112,11,65,0.061084995129119045],[112,11,66,0.05994068007642317],[112,11,67,0.05880975675863569],[112,11,68,0.05767984396057723],[112,11,69,0.05654116080000791],[112,11,70,0.05538807922994851],[112,11,71,0.050958424239948105],[112,11,72,0.042913377898315085],[112,11,73,0.03591899074480451],[112,11,74,0.029864191438923635],[112,11,75,0.024648081942867345],[112,11,76,0.020179140310448446],[112,11,77,0.016374398134836907],[112,11,78,0.013158627394280776],[112,11,79,0.010463561441438484],[112,12,64,0.05998296875237731],[112,12,65,0.058795886920977716],[112,12,66,0.05762691019571252],[112,12,67,0.056469546601968],[112,12,68,0.05531172730567489],[112,12,69,0.05414377719776798],[112,12,70,0.05296014323784529],[112,12,71,0.0517586240040389],[112,12,72,0.05053963892682945],[112,12,73,0.04930556029190764],[112,12,74,0.048060108744040105],[112,12,75,0.0468078128538866],[112,12,76,0.04555353315243241],[112,12,77,0.040296118726239026],[112,12,78,0.03453243104774461],[112,12,79,0.029501468303375977],[112,13,64,0.0577263478071409],[112,13,65,0.056518846718181276],[112,13,66,0.05532697151794599],[112,13,67,0.054144797597705296],[112,13,68,0.052960735399475836],[112,13,69,0.051765304035214635],[112,13,70,0.050553066544204925],[112,13,71,0.04932189134664863],[112,13,72,0.04807224497481644],[112,13,73,0.04680654445413075],[112,13,74,0.04552857005561899],[112,13,75,0.044242938978652044],[112,13,76,0.04295464037217972],[112,13,77,0.04166863195693294],[112,13,78,0.0403894983662727],[112,13,79,0.03912117117786047],[112,14,64,0.05548232366502071],[112,14,65,0.054256672950238796],[112,14,66,0.053043894333306724],[112,14,67,0.05183880356358733],[112,14,68,0.05063045099720978],[112,14,69,0.04940963807387946],[112,14,70,0.048171080959798156],[112,14,71,0.04691271389170751],[112,14,72,0.045635014140076445],[112,14,73,0.04434038283318514],[112,14,74,0.04303258234410273],[112,14,75,0.0417162307893697],[112,14,76,0.040396354045710396],[112,14,77,0.03907799555312338],[112,14,78,0.037765884035585],[112,14,79,0.03646415913284692],[112,15,64,0.053257718372540744],[112,15,65,0.05201625594476154],[112,15,66,0.05078464302127671],[112,15,67,0.04955858034621273],[112,15,68,0.048327904881832355],[112,15,69,0.047083786609555346],[112,15,70,0.045821130105122516],[112,15,71,0.044537929818510395],[112,15,72,0.043234636293914906],[112,15,73,0.04191357373768909],[112,15,74,0.04057840960747313],[112,15,75,0.039233676753908764],[112,15,76,0.03788434851391141],[112,15,77,0.03653546702606365],[112,15,78,0.03519182491109025],[112,15,79,0.03385770033223453],[112,16,64,0.05106825403998714],[112,16,65,0.0498133224683022],[112,16,66,0.04856487232338294],[112,16,67,0.047319598388458825],[112,16,68,0.046068257030096704],[112,16,69,0.04480247887765024],[112,16,70,0.04351740360815641],[112,16,71,0.042211095875727474],[112,16,72,0.04088396085239021],[112,16,73,0.039538205936954944],[112,16,74,0.03817734926777776],[112,16,75,0.036805775546715075],[112,16,76,0.03542833956106621],[112,16,77,0.03405001767326678],[112,16,78,0.0326756074317938],[112,16,79,0.031309475340014985],[112,17,64,0.04892471839654355],[112,17,65,0.04765863987825461],[112,17,66,0.04639527987829994],[112,17,67,0.04513240012371643],[112,17,68,0.04386179424653545],[112,17,69,0.04257565161052528],[112,17,70,0.041269405810467084],[112,17,71,0.03994121831162508],[112,17,72,0.03859145014462558],[112,17,73,0.03722217401695355],[112,17,74,0.03583672743186482],[112,17,75,0.03443930729198515],[112,17,76,0.03303460635799508],[112,17,77,0.03162749182881837],[112,17,78,0.03022272620637661],[112,17,79,0.028824730504252914],[112,18,64,0.04683055247794239],[112,18,65,0.04555560460638474],[112,18,66,0.04427921549196352],[112,18,67,0.04300025142587515],[112,18,68,0.04171164426899388],[112,18,69,0.040406243344929156],[112,18,70,0.03907984385374113],[112,18,71,0.03773074363197653],[112,18,72,0.036359276615149975],[112,18,73,0.03496738050066242],[112,18,74,0.03355819915012326],[112,18,75,0.03213572017303949],[112,18,76,0.030704448042093695],[112,18,77,0.0292691130007813],[112,18,78,0.027834415935187942],[112,18,79,0.0264048092923496],[112,19,64,0.04478303419201231],[112,19,65,0.04350142539836915],[112,19,66,0.04221385543766474],[112,19,67,0.040920298997457576],[112,19,68,0.039614908594497324],[112,19,69,0.03829129495302164],[112,19,70,0.036945688251765106],[112,19,71,0.03557657177923607],[112,19,72,0.03418428156410279],[112,19,73,0.03277063364049703],[112,19,74,0.03133857942952472],[112,19,75,0.029891889638956008],[112,19,76,0.028434867007678246],[112,19,77,0.026972088147786025],[112,19,78,0.025508174663723196],[112,19,79,0.02404759365403318],[112,20,64,0.042774410930765096],[112,20,65,0.04148825614492688],[112,20,66,0.040191327400772414],[112,20,67,0.03888467990208633],[112,20,68,0.0375637494138927],[112,20,69,0.03622300677982388],[112,20,70,0.03485919313914573],[112,20,71,0.03347103264312348],[112,20,72,0.032058901444915404],[112,20,73,0.03062451753110238],[112,20,74,0.029170651813548235],[112,20,75,0.02770086083944825],[112,20,76,0.026219241419289007],[112,20,77,0.02473020741538275],[112,20,78,0.02323828887658707],[112,20,79,0.02174795364723974],[112,21,64,0.04008604625078113],[112,21,65,0.03925327021732686],[112,21,66,0.03819978456882566],[112,21,67,0.036881581815445326],[112,21,68,0.03554642931591368],[112,21,69,0.034189751147909384],[112,21,70,0.032808875071414986],[112,21,71,0.03140282490413841],[112,21,72,0.02997206085971994],[112,21,73,0.028518233831672138],[112,21,74,0.027043953975174454],[112,21,75,0.025552573896890647],[112,21,76,0.02404798672264551],[112,21,77,0.022534439272975583],[112,21,78,0.021016360536475494],[112,21,79,0.01949820559006406],[112,22,64,0.03659410325377191],[112,22,65,0.03572570631057669],[112,22,66,0.03484146599338537],[112,22,67,0.0339405925788948],[112,22,68,0.03302726962051659],[112,22,69,0.03210737951467109],[112,22,70,0.030780449300166077],[112,22,71,0.029357916262702663],[112,22,72,0.02791003144602578],[112,22,73,0.026438414442198188],[112,22,74,0.024945539826084325],[112,22,75,0.023434571682794853],[112,22,76,0.021909205987552898],[112,22,77,0.020373521052768396],[112,22,78,0.018831836234207668],[112,22,79,0.0172885790643219],[112,23,64,0.03308240063653085],[112,23,65,0.03217855174669794],[112,23,66,0.0312666099321707],[112,23,67,0.0303450071777705],[112,23,68,0.029416634675669344],[112,23,69,0.028486310811952638],[112,23,70,0.027557759117110225],[112,23,71,0.026633655499957182],[112,23,72,0.025715738530723592],[112,23,73,0.02436990454278298],[112,23,74,0.022860717708862038],[112,23,75,0.021332689828926787],[112,23,76,0.019789328979517257],[112,23,77,0.018234544954610476],[112,23,78,0.016672538678772476],[112,23,79,0.015107693160195204],[112,24,64,0.02957565934898604],[112,24,65,0.028636830689241718],[112,24,66,0.027697485898927322],[112,24,67,0.026755401315253485],[112,24,68,0.025812195896993507],[112,24,69,0.024871561249643633],[112,24,70,0.023936476764542844],[112,24,71,0.02300918426749523],[112,24,72,0.022091228210427177],[112,24,73,0.021183501782536432],[112,24,74,0.020286298796671036],[112,24,75,0.019231728755853515],[112,24,76,0.017673739909287594],[112,24,77,0.016103539633788855],[112,24,78,0.014525200811076337],[112,24,79,0.01294304240855695],[112,25,64,0.0260988469121221],[112,25,65,0.025125823707352436],[112,25,66,0.024159566301252405],[112,25,67,0.023197332895605074],[112,25,68,0.02223951091493071],[112,25,69,0.021288617511775656],[112,25,70,0.020346836453600064],[112,25,71,0.019415925119503144],[112,25,72,0.01849718721231429],[112,25,73,0.01759145750316609],[112,25,74,0.016699098535646037],[112,25,75,0.015820009186504475],[112,25,76,0.014953644951258801],[112,25,77,0.01396604752632225],[112,25,78,0.012376002866052135],[112,25,79,0.01078149289302517],[112,26,64,0.022676365979878165],[112,26,65,0.021670251588224422],[112,26,66,0.020677775380415618],[112,26,67,0.0196958256474741],[112,26,68,0.018723618463873163],[112,26,69,0.01776246552284201],[112,26,70,0.016813714794697607],[112,26,71,0.015878595915768668],[112,26,72,0.014958129074520465],[112,26,73,0.014053051557493987],[112,26,74,0.013163761953395912],[112,26,75,0.012290281967721493],[112,26,76,0.011432235755842332],[112,26,77,0.010588846639971788],[112,26,78,0.00975895103521989],[112,26,79,0.00860978906326903],[112,27,64,0.019331303514661554],[112,27,65,0.01829351893275341],[112,27,66,0.017275731429453534],[112,27,67,0.0162746140622387],[112,27,68,0.015288289664071197],[112,27,69,0.014316851195228415],[112,27,70,0.013360783191303573],[112,27,71,0.012420752544421045],[112,27,72,0.011497458173574686],[112,27,73,0.010591503404823562],[112,27,74,0.009703291129569228],[112,27,75,0.008832941748485427],[112,27,76,0.007980233849674731],[112,27,77,0.007144567512762857],[112,27,78,0.006324950076400169],[112,27,79,0.00552000415550959],[112,28,64,0.016084742689498565],[112,28,65,0.015017019628334575],[112,28,66,0.013975049410434875],[112,28,67,0.012955446703233255],[112,28,68,0.011955335077158657],[112,28,69,0.010973593703903904],[112,28,70,0.01000982936543463],[112,28,71,0.009064120404035536],[112,28,72,0.008136812631854291],[112,28,73,0.00722834234649801],[112,28,74,0.006339086588226345],[112,28,75,0.005469240700428643],[112,28,76,0.004618723183086303],[112,28,77,0.003787107759298401],[112,28,78,0.002973582508229789],[112,28,79,0.002176935854597345],[112,29,64,0.012955139598839814],[112,29,65,0.011859506260443088],[112,29,66,0.010794705990987537],[112,29,67,0.009757449845308136],[112,29,68,0.008743969415553174],[112,29,69,0.007751953070102568],[112,29,70,0.006780129133936075],[112,29,71,0.005827971354533042],[112,29,72,0.00489544720819152],[112,29,73,0.003982796996020217],[112,29,74,0.0030903439287607508],[112,29,75,0.002218335314329888],[112,29,76,0.0013668148788076586],[112,29,77,5.355261710049031E-4],[112,29,78,-2.761530766978253E-4],[112,29,79,-0.0010692458322104329],[112,30,64,0.00995776678111742],[112,30,65,0.008836525443497816],[112,30,66,0.007750468938473027],[112,30,67,0.006696553323199624],[112,30,68,0.005670235706744766],[112,30,69,0.004668053759015574],[112,30,70,0.003687870025662686],[112,30,71,0.0027285475933958884],[112,30,72,0.0017896574766152243],[112,30,73,8.712197266444299E-4],[112,30,74,-2.65214783871926E-5],[112,30,75,-9.032885996162332E-4],[112,30,76,-0.0017589272884155026],[112,30,77,-0.0025935287408201395],[112,30,78,-0.003407517960244991],[112,30,79,-0.0042017081156016],[112,31,64,0.007104225452086766],[112,31,65,0.005959920944985484],[112,31,66,0.004854392702949324],[112,31,67,0.0037849803607118778],[112,31,68,0.0027464906089169016],[112,31,69,0.0017343658946974356],[112,31,70,7.456282312252588E-4],[112,31,71,-2.2146618095161466E-4],[112,31,72,-0.0011677534924028603],[112,31,73,-0.002093452853199425],[112,31,74,-0.002998420859805739],[112,31,75,-0.0038823695909431214],[112,31,76,-0.004745048122303365],[112,31,77,-0.005586387506576297],[112,31,78,-0.006406609298416111],[112,31,79,-0.007206297792985042],[112,32,64,0.004402028242295821],[112,32,65,0.0032374063691005257],[112,32,66,0.002114381911815869],[112,32,67,0.00103080304529795],[112,32,68,-1.904753122366505E-5],[112,32,69,-0.0010407544076744988],[112,32,70,-0.0020380997232305755],[112,32,71,-0.0030134210539421572],[112,32,72,-0.003967964828049251],[112,32,73,-0.004902202437678314],[112,32,74,-0.005816108688319136],[112,32,75,-0.006709402334295788],[112,32,76,-0.007581748552790019],[112,32,77,-0.007473644348612961],[112,32,78,-0.006643328603835144],[112,32,79,-0.005851206701670175],[112,33,64,0.00185425414568773],[112,33,65,6.72209078902214E-4],[112,33,66,-4.661755881188101E-4],[112,33,67,-0.001562434973457535],[112,33,68,-0.0026226863718653145],[112,33,69,-0.0036534641743288226],[112,33,70,-0.004659309266993649],[112,33,71,-0.005643131441664305],[112,33,72,-0.006606582889608049],[112,33,73,-0.006880637254666925],[112,33,74,-0.0058439783355712545],[112,33,75,-0.0048474527717464215],[112,33,76,-0.003891080904165818],[112,33,77,-0.0029747532917109233],[112,33,78,-0.002098377549897857],[112,33,79,-0.0012619864442892496],[112,34,64,-5.407226644683592E-4],[112,34,65,-0.0017372130140133205],[112,34,66,-0.0028887045542094324],[112,34,67,-0.003996027030120178],[112,34,68,-0.005065581559535532],[112,34,69,-0.006104770795971009],[112,34,70,-0.005961077983784223],[112,34,71,-0.004750345942193273],[112,34,72,-0.003578553900601573],[112,34,73,-0.0024477273469131703],[112,34,74,-0.0013589700119093187],[112,34,75,-3.127404482634776E-4],[112,34,76,6.909103021420517E-4],[112,34,77,0.0016521400791663563],[112,34,78,0.002571156034217547],[112,34,79,0.003448094038354251],[112,35,64,-0.002789428502775228],[112,35,65,-0.003997380167087864],[112,35,66,-0.0051596654513574695],[112,35,67,-0.005571193851516151],[112,35,68,-0.004210450080970901],[112,35,69,-0.002873895231269409],[112,35,70,-0.0015690910030872317],[112,35,71,-3.014783883800111E-4],[112,35,72,9.252225701189716E-4],[112,35,73,0.0021086503933007658],[112,35,74,0.003247477645459296],[112,35,75,0.004341124658372242],[112,35,76,0.0053895117665584465],[112,35,77,0.006392850210876705],[112,35,78,0.007351471761225148],[112,35,79,0.008265697007547656],[112,36,64,-0.004903408632771155],[112,36,65,-0.004119734787943813],[112,36,66,-0.0026807246281140024],[112,36,67,-0.0012468692060541861],[112,36,68,1.7305339493384252E-4],[112,36,69,0.0015682219449781247],[112,36,70,0.0029304020274919414],[112,36,71,0.004253603813427523],[112,36,72,0.005533677682481706],[112,36,73,0.0067679463336295185],[112,36,74,0.007954873904915883],[112,36,75,0.009093772510296803],[112,36,76,0.010184546489699341],[112,36,77,0.011227474559242981],[112,36,78,0.012223029942692597],[112,36,79,0.013171738464223967],[112,37,64,-0.0013315165239543882],[112,37,65,1.7090580300941605E-4],[112,37,66,0.0016688313995838362],[112,37,67,0.003161522573064238],[112,37,68,0.004640097075908155],[112,37,69,0.006093005383228894],[112,37,70,0.007511387355392758],[112,37,71,0.008888744562495266],[112,37,72,0.010220532961919947],[112,37,73,0.011503790973408142],[112,37,74,0.012736803499027675],[112,37,75,0.013918802323937588],[112,37,76,0.015049703222970138],[112,37,77,0.016129879989677662],[112,37,78,0.017159975499568277],[112,37,79,0.01814074981926999],[112,38,64,0.002953194214212696],[112,38,65,0.004515752941457831],[112,38,66,0.006072566385237107],[112,38,67,0.007623681500047414],[112,38,68,0.009160132856422943],[112,38,69,0.01066967110163054],[112,38,70,0.012142843948715287],[112,38,71,0.013572682215345619],[112,38,72,0.014954288706273031],[112,38,73,0.01628446141113084],[112,38,74,0.017561351594784246],[112,38,75,0.01878415724612201],[112,38,76,0.01995285224064002],[112,38,77,0.02106795146432461],[112,38,78,0.02213031204211308],[112,38,79,0.0231409707150402],[112,39,64,0.007268215345595225],[112,39,65,0.008891326833163238],[112,39,66,0.010507124744406586],[112,39,67,0.012116444046602533],[112,39,68,0.013710234340892927],[112,39,69,0.015275541678463017],[112,39,70,0.016802330493843942],[112,39,71,0.01828318166457175],[112,39,72,0.019712875559025924],[112,39,73,0.021088008411251375],[112,39,74,0.02240664263412145],[112,39,75,0.023667991570206215],[112,39,76,0.02487213906875453],[112,39,77,0.026019794169224467],[112,39,78,0.027112081067700546],[112,39,79,0.02815036444371053],[112,40,64,0.011596925999172775],[112,40,65,0.013281552232211126],[112,40,66,0.014957019593043965],[112,40,67,0.01662497512912239],[112,40,68,0.01827627643898028],[112,40,69,0.01989723482266827],[112,40,70,0.021477214738188897],[112,40,71,0.023008343252560428],[112,40,72,0.02448508577325224],[112,40,73,0.02590385414795173],[112,40,74,0.027262647782191486],[112,40,75,0.028560728310975395],[112,40,76,0.029798328248514583],[112,40,77,0.030976393931530493],[112,40,78,0.032096362967174656],[112,40,79,0.033159976297790175],[112,41,64,0.015921406663434393],[112,41,65,0.017668920046001048],[112,41,66,0.019405213999339515],[112,41,67,0.021132780903816623],[112,41,68,0.022842375805255666],[112,41,69,0.02451953061834842],[112,41,70,0.0261529764206351],[112,41,71,0.027734364612161815],[112,41,72,0.02925783454894174],[112,41,73,0.03071961255595608],[112,41,74,0.032117643010781245],[112,41,75,0.033451252073517714],[112,41,76,0.034720844525045334],[112,41,77,0.0359276340658423],[112,41,78,0.0370734073225512],[112,41,79,0.03816032171042858],[112,42,64,0.020223237587435938],[112,42,65,0.022035256292427436],[112,42,66,0.023833854260778803],[112,42,67,0.025622400802753898],[112,42,68,0.027391534957974892],[112,42,69,0.029125959170809877],[112,42,70,0.03081372882340452],[112,42,71,0.032445986171560574],[112,42,72,0.0340165198316953],[112,42,73,0.03552135457777088],[112,42,74,0.03695837218342179],[112,42,75,0.038326963926543334],[112,42,76,0.039627715257862364],[112,42,77,0.040862123023715564],[112,42,78,0.0420323455273066],[112,42,79,0.043140985613315364],[112,43,64,0.02448477407874364],[112,43,65,0.026362993729719574],[112,43,66,0.02822552931063831],[112,43,67,0.03007664784184017],[112,43,68,0.031906856193663194],[112,43,69,0.03369997897581287],[112,43,70,0.035443351092404346],[112,43,71,0.037127566085848884],[112,43,72,0.038698597836028956],[112,43,73,0.04014897183453654],[112,43,74,0.04156442481252604],[112,43,75,0.04294514526837416],[112,43,76,0.0442902378305233],[112,43,77,0.04559801546032836],[112,43,78,0.04686625955873475],[112,43,79,0.048090868722734936],[112,44,64,0.028194274673345104],[112,44,65,0.030184491402680255],[112,44,66,0.03209822423787399],[112,44,67,0.03392790278041203],[112,44,68,0.03568100125911246],[112,44,69,0.03737267768934878],[112,44,70,0.039014656896144605],[112,44,71,0.040615465228535465],[112,44,72,0.04218088357235002],[112,44,73,0.04371437218374813],[112,44,74,0.04521746661565189],[112,44,75,0.04669014409497113],[112,44,76,0.04813115979545702],[112,44,77,0.04953835253978161],[112,44,78,0.05090891955441797],[112,44,79,0.05223965999182304],[112,45,64,0.03114899304662684],[112,45,65,0.03319044877509402],[112,45,66,0.03515856517741426],[112,45,67,0.03704481920725594],[112,45,68,0.03885676791852483],[112,45,69,0.04061041236653484],[112,45,70,0.04231815382057932],[112,45,71,0.04398901085183887],[112,45,72,0.04562907747068301],[112,45,73,0.047241954628845124],[112,45,74,0.048829154333434446],[112,45,75,0.05039047569843933],[112,45,76,0.05192435234016434],[112,45,77,0.05342817060677273],[112,45,78,0.05489855821826177],[112,45,79,0.056331642981562874],[112,46,64,0.03409949971255308],[112,46,65,0.03618854666584711],[112,46,66,0.03820727386153508],[112,46,67,0.04014626042196647],[112,46,68,0.042013176239368066],[112,46,69,0.04382488523530891],[112,46,70,0.04559449324847473],[112,46,71,0.0473315452049077],[112,46,72,0.04904248588026252],[112,46,73,0.050731095806609436],[112,46,74,0.052398901550577644],[112,46,75,0.05404555965990126],[112,46,76,0.055669213648709776],[112,46,77,0.05726682346926412],[112,46,78,0.058834466998902796],[112,46,79,0.06036761315560219],[112,47,64,0.03704264773675286],[112,47,65,0.039175960135824035],[112,47,66,0.041241808341381726],[112,47,67,0.04322995917810252],[112,47,68,0.04514822947033135],[112,47,69,0.047014350789128946],[112,47,70,0.04884215006551232],[112,47,71,0.05064172460758103],[112,47,72,0.05241990254721799],[112,47,73,0.054180680471457174],[112,47,74,0.055925637451217085],[112,47,75,0.05765432474055691],[112,47,76,0.059364630483951616],[112,47,77,0.0610531188386173],[112,47,78,0.06271534299346415],[112,47,79,0.06434613164582373],[112,48,64,0.03999063702610866],[112,48,65,0.04216485456456628],[112,48,66,0.04427415646133456],[112,48,67,0.0463075979014908],[112,48,68,0.04827317012151889],[112,48,69,0.05018945585149393],[112,48,70,0.05207100598524984],[112,48,71,0.05392849008420251],[112,48,72,0.05576915290445389],[112,48,73,0.05759725039049508],[112,48,74,0.05941446434208356],[112,48,75,0.061220295010300164],[112,48,76,0.06301243093286066],[112,48,77,0.06478709537905032],[112,48,78,0.0665393688412121],[112,48,79,0.06826348708274728],[112,49,64,0.04295675457563669],[112,49,65,0.045168463897948194],[112,49,66,0.04731735574219264],[112,49,67,0.04939188562930156],[112,49,68,0.05140023784181765],[112,49,69,0.05336180728140684],[112,49,70,0.05529185665727069],[112,49,71,0.05720164009634023],[112,49,72,0.059098851599311955],[112,49,73,0.0609880554514222],[112,49,74,0.06287109779804503],[112,49,75,0.06474749863269029],[112,49,76,0.06661482348768157],[112,49,77,0.06846903416758714],[112,49,78,0.07030481792265851],[112,49,79,0.07211589452454421],[112,50,64,0.04595026670802349],[112,50,65,0.04819609507972786],[112,50,66,0.05038064418750933],[112,50,67,0.0524918926197829],[112,50,68,0.05453822821950999],[112,50,69,0.05653979776229626],[112,50,70,0.05851254818283255],[112,50,71,0.060468321061509095],[112,50,72,0.062415288526594476],[112,50,73,0.06435837376412425],[112,50,74,0.06629965535980677],[112,50,75,0.06823875472226232],[112,50,76,0.07017320586747738],[112,50,77,0.07209880688264354],[112,50,78,0.07400995243413368],[112,50,79,0.07589994673997136],[112,51,64,0.04897646673735055],[112,51,65,0.05125316132272621],[112,51,66,0.0534694778607774],[112,51,67,0.05561304977323566],[112,51,68,0.05769247154866524],[112,51,69,0.05972856222180021],[112,51,70,0.06173791029438057],[112,51,71,0.06373293715740305],[112,51,72,0.06572231583019464],[112,51,73,0.06771137707934989],[112,51,74,0.06970250216724905],[112,51,75,0.07169550149227631],[112,51,76,0.07368797840089625],[112,51,77,0.07567567747784744],[112,51,78,0.07765281665574916],[112,51,79,0.07961240253039839],[112,52,64,0.05203677239198496],[112,52,65,0.05434126546904279],[112,52,66,0.05658559862993338],[112,52,67,0.05875719825159338],[112,52,68,0.06086486178963725],[112,52,69,0.06292998428112606],[112,52,70,0.06496973913926378],[112,52,71,0.06699710896823319],[112,52,72,0.06902128259490746],[112,52,73,0.07104804232334139],[112,52,74,0.07308014069824306],[112,52,75,0.0751176660637438],[112,52,76,0.07715839620930687],[112,52,77,0.07919813940823771],[112,52,78,0.08123106217711955],[112,52,79,0.08325000311792417],[112,53,64,0.05512887424160623],[112,53,65,0.057458334711550756],[112,53,66,0.059727153370324804],[112,53,67,0.06192269060393284],[112,53,68,0.06405393704457521],[112,53,69,0.06614275406205145],[112,53,70,0.0682068309934978],[112,53,71,0.07025968228541489],[112,53,72,0.07231101851462746],[112,53,73,0.0743671104959767],[112,53,74,0.07643114580985548],[112,53,75,0.07850357707126218],[112,53,76,0.08058246125549418],[112,53,77,0.08266378939683021],[112,53,78,0.08474180598699428],[112,53,79,0.08680931742145215],[112,54,64,0.2833031532870787],[112,54,65,0.06059880786161785],[112,54,66,0.06288886583334358],[112,54,67,0.06510454462566233],[112,54,68,0.06725501279456121],[112,54,69,0.0693624786114555],[112,54,70,0.07144506816999878],[112,54,71,0.07351678832058635],[112,54,72,0.07558786777615191],[112,54,73,0.07766509414008199],[112,54,74,0.07975214624556023],[112,54,75,0.08184992117378793],[112,54,76,0.08395685530070536],[112,54,77,0.08606923871116715],[112,54,78,0.08818152231767241],[112,54,79,0.09028661702960977],[112,55,64,0.29762340483093447],[112,55,65,0.308361771362466],[112,55,66,0.3187282700389965],[112,55,67,0.32867196933060094],[112,55,68,0.3382394326769921],[112,55,69,0.3475332772733058],[112,55,70,0.3566359096532197],[112,55,71,0.36560984940515984],[112,55,72,0.37449968347800056],[112,55,73,0.3833339685597683],[112,55,74,0.39212709281467806],[112,55,75,0.08515174453684125],[112,55,76,0.08727691477966008],[112,55,77,0.0894100628935326],[112,55,78,0.09154596911497834],[112,55,79,0.09367778166368093],[112,56,64,0.31181852337662924],[112,56,65,0.322521862534703],[112,56,66,0.33284008531907894],[112,56,67,0.34272499818423413],[112,56,68,0.35222385851895593],[112,56,69,0.361438949278524],[112,56,70,0.37045309335014975],[112,56,71,0.379329851423021],[112,56,72,0.38811531867961974],[112,56,73,0.396839880745991],[112,56,74,0.4055199415874902],[112,56,75,0.41415963036097714],[112,56,76,0.4223513714689513],[112,56,77,0.4269731960683866],[112,56,78,0.42976947884230376],[112,56,79,0.43166218293879294],[112,57,64,0.30436112236195645],[112,57,65,0.3169831986937126],[112,57,66,0.3258911882952868],[112,57,67,0.3319571935000841],[112,57,68,0.3328188546426821],[112,57,69,0.33381897446425496],[112,57,70,0.3360007410558657],[112,57,71,0.3399709452196583],[112,57,72,0.34621390855877465],[112,57,73,0.35308676793064975],[112,57,74,0.36002355518559154],[112,57,75,0.36736782312136756],[112,57,76,0.3733195523061665],[112,57,77,0.3775325938336622],[112,57,78,0.38035188386296814],[112,57,79,0.38258438802686623],[112,58,64,0.26032878399014303],[112,58,65,0.2731974501617683],[112,58,66,0.2831054549418195],[112,58,67,0.28844256706227606],[112,58,68,0.2896282740451806],[112,58,69,0.2898162629983781],[112,58,70,0.2927340035252522],[112,58,71,0.296383209622341],[112,58,72,0.3019610639119434],[112,58,73,0.3096132209428049],[112,58,74,0.31713804173735266],[112,58,75,0.323508964844953],[112,58,76,0.33030267354212495],[112,58,77,0.33446089202567414],[112,58,78,0.33828800316402347],[112,58,79,0.3410093244550571],[112,59,64,0.20321323998491542],[112,59,65,0.21667434766102564],[112,59,66,0.22683648600056128],[112,59,67,0.23194232056296135],[112,59,68,0.23412192461469022],[112,59,69,0.23412777352914974],[112,59,70,0.23691283826311524],[112,59,71,0.23962666739321412],[112,59,72,0.24630550081359762],[112,59,73,0.2543759739564806],[112,59,74,0.26164493577003345],[112,59,75,0.26817048841898106],[112,59,76,0.2750999867383596],[112,59,77,0.28070342009557386],[112,59,78,0.2854648326859101],[112,59,79,0.2891385896323317],[112,60,64,0.14338446306313316],[112,60,65,0.1571043129203793],[112,60,66,0.16772904485726645],[112,60,67,0.17326758393193234],[112,60,68,0.1756309873589998],[112,60,69,0.17612930159770784],[112,60,70,0.1782686032102433],[112,60,71,0.1807875844107821],[112,60,72,0.18822148746793055],[112,60,73,0.19665001524868211],[112,60,74,0.20387997189913717],[112,60,75,0.21017699245239913],[112,60,76,0.2177749498444238],[112,60,77,0.22411974314396158],[112,60,78,0.2294034359822163],[112,60,79,0.2343540848782466],[112,61,64,0.0813923356443788],[112,61,65,0.09672405138187182],[112,61,66,0.1072636785865539],[112,61,67,0.11266317977174509],[112,61,68,0.11470241275659587],[112,61,69,0.11549696843327256],[112,61,70,0.11707040494624502],[112,61,71,0.12134510969114357],[112,61,72,0.1296558931544271],[112,61,73,0.1377949814991034],[112,61,74,0.14598332167739536],[112,61,75,0.15240734666849493],[112,61,76,0.1605268198045851],[112,61,77,0.16797139084409926],[112,61,78,0.17390599293388107],[112,61,79,0.1801078194544094],[112,62,64,0.028776775595016922],[112,62,65,0.035482828240011206],[112,62,66,0.04656152538668429],[112,62,67,0.05174439720122773],[112,62,68,0.05400874449586694],[112,62,69,0.05503303358226346],[112,62,70,0.05629302670332363],[112,62,71,0.06128452704164118],[112,62,72,0.07010836399623334],[112,62,73,0.07841016585011994],[112,62,74,0.08630393384608502],[112,62,75,0.09321018484633718],[112,62,76,0.10166160724609527],[112,62,77,0.10891786410722201],[112,62,78,0.11516093195639061],[112,62,79,0.12185320073894634],[112,63,64,-0.009799931733915393],[112,63,65,-0.007387552259151562],[112,63,66,-0.0043792895386548245],[112,63,67,-0.0029121110549054615],[112,63,68,-0.0031309319629916066],[112,63,69,-0.003385845026105469],[112,63,70,-0.0025323376131005616],[112,63,71,0.0010520331892462864],[112,63,72,0.0026843012829984763],[112,63,73,0.0040979241405651986],[112,63,74,0.004244224907878633],[112,63,75,0.010878555288449226],[112,63,76,0.01952907806461662],[112,63,77,0.026192199680699323],[112,63,78,0.03340069230792929],[112,63,79,0.03908212830238544],[112,64,64,-0.022574198660632448],[112,64,65,-0.01977387981322698],[112,64,66,-0.01687748890053379],[112,64,67,-0.015259954474029223],[112,64,68,-0.01565922584332634],[112,64,69,-0.01627075713022452],[112,64,70,-0.01499780127009322],[112,64,71,-0.011990708241487368],[112,64,72,-0.010156119867726621],[112,64,73,-0.008690766615929935],[112,64,74,-0.007758480192098198],[112,64,75,-0.007195195975251556],[112,64,76,-0.0047751228752174095],[112,64,77,-0.0026715075966849944],[112,64,78,-4.450187077607264E-4],[112,64,79,8.590502665385299E-4],[112,65,64,-0.038116708646466727],[112,65,65,-0.034381789536176634],[112,65,66,-0.0327598630030281],[112,65,67,-0.031459789215288775],[112,65,68,-0.03189983239252502],[112,65,69,-0.03219479860618168],[112,65,70,-0.03033168534489881],[112,65,71,-0.0280812622285265],[112,65,72,-0.02589419184762891],[112,65,73,-0.024076111970396382],[112,65,74,-0.02387182181315177],[112,65,75,-0.022840802047983173],[112,65,76,-0.02103060804315355],[112,65,77,-0.019099706746028604],[112,65,78,-0.0165483111456982],[112,65,79,-0.014947477810486222],[112,66,64,-0.05492898360280098],[112,66,65,-0.05173475994911051],[112,66,66,-0.050176201847685085],[112,66,67,-0.04905276149909425],[112,66,68,-0.049035872528999734],[112,66,69,-0.04962038668732812],[112,66,70,-0.047030262436868794],[112,66,71,-0.04576437667518438],[112,66,72,-0.043072098486346286],[112,66,73,-0.04149490701102413],[112,66,74,-0.040785719611155465],[112,66,75,-0.03993510086217898],[112,66,76,-0.03854297861192099],[112,66,77,-0.03668376230871284],[112,66,78,-0.0341926663277683],[112,66,79,-0.03233063258700909],[112,67,64,-0.06978781515457642],[112,67,65,-0.06672437099649195],[112,67,66,-0.06588776070911265],[112,67,67,-0.06463428754352836],[112,67,68,-0.06438201959416666],[112,67,69,-0.06499369065492074],[112,67,70,-0.06267802289585137],[112,67,71,-0.06179794652650496],[112,67,72,-0.05913456176748032],[112,67,73,-0.05645898476859524],[112,67,74,-0.05611337048588774],[112,67,75,-0.05529086292161665],[112,67,76,-0.053290119979641774],[112,67,77,-0.05227502398123537],[112,67,78,-0.050721587496182316],[112,67,79,-0.048226104222209784],[112,68,64,-0.11230601697679207],[112,68,65,-0.10993362665654353],[112,68,66,-0.10861335154266152],[112,68,67,-0.10787217132043915],[112,68,68,-0.10767917384585157],[112,68,69,-0.10742263448021236],[112,68,70,-0.1064023127191221],[112,68,71,-0.104240430703567],[112,68,72,-0.10200151742047797],[112,68,73,-0.09934110001203837],[112,68,74,-0.09877592984465249],[112,68,75,-0.09816080192399847],[112,68,76,-0.09642468112661333],[112,68,77,-0.09520663104817577],[112,68,78,-0.09427826720371785],[112,68,79,-0.0920401198825517],[112,69,64,-0.1260194131373418],[112,69,65,-0.12381291217234751],[112,69,66,-0.12438740131018793],[112,69,67,-0.12427419763606155],[112,69,68,-0.1237471089412133],[112,69,69,-0.1231958254011523],[112,69,70,-0.1223588801350217],[112,69,71,-0.11969862216889401],[112,69,72,-0.11621303911235195],[112,69,73,-0.11363097362175718],[112,69,74,-0.11226891578742595],[112,69,75,-0.1114533189665338],[112,69,76,-0.11154060135198644],[112,69,77,-0.11012722055885779],[112,69,78,-0.11153140480823642],[112,69,79,-0.11088319908429616],[112,70,64,-0.1417758231856984],[112,70,65,-0.13958587544020745],[112,70,66,-0.13917760507271554],[112,70,67,-0.13952807820387914],[112,70,68,-0.13899237245451915],[112,70,69,-0.13817733564389115],[112,70,70,-0.13746008768272636],[112,70,71,-0.1352850448443381],[112,70,72,-0.13198312936114212],[112,70,73,-0.1295828580444786],[112,70,74,-0.12872998374198938],[112,70,75,-0.12712164299949671],[112,70,76,-0.12670495874573773],[112,70,77,-0.12635281390186062],[112,70,78,-0.12708505936280917],[112,70,79,-0.12679081869479408],[112,71,64,-0.1536882263447351],[112,71,65,-0.15259551330837293],[112,71,66,-0.15156266787990927],[112,71,67,-0.15142365499437146],[112,71,68,-0.1504212585137385],[112,71,69,-0.1499628528131019],[112,71,70,-0.14982684198091445],[112,71,71,-0.1476219287260031],[112,71,72,-0.14405917738519808],[112,71,73,-0.1424419326912185],[112,71,74,-0.14153683736854838],[112,71,75,-0.1396716976977975],[112,71,76,-0.13885322057381477],[112,71,77,-0.13864650954894883],[112,71,78,-0.13923979207446202],[112,71,79,-0.1388597723557776],[112,72,64,-0.1696560489215335],[112,72,65,-0.1683383039595935],[112,72,66,-0.1664831018411587],[112,72,67,-0.16646571497862542],[112,72,68,-0.16505701024307248],[112,72,69,-0.16459772639443865],[112,72,70,-0.16492752736607508],[112,72,71,-0.16287817372365457],[112,72,72,-0.16049807638893981],[112,72,73,-0.15783105329100267],[112,72,74,-0.15749465556544007],[112,72,75,-0.15515118506096431],[112,72,76,-0.154361543688694],[112,72,77,-0.154112064105886],[112,72,78,-0.1551085778136666],[112,72,79,-0.15444679964298258],[112,73,64,-0.1876011238546457],[112,73,65,-0.1847263584795343],[112,73,66,-0.18153643674838688],[112,73,67,-0.1797929037550773],[112,73,68,-0.1786618733548887],[112,73,69,-0.1789221544270524],[112,73,70,-0.17951020496969783],[112,73,71,-0.17902256649763687],[112,73,72,-0.17877565081253904],[112,73,73,-0.17641786657880468],[112,73,74,-0.17586371333275383],[112,73,75,-0.17371760538025482],[112,73,76,-0.17271397871255484],[112,73,77,-0.17124032998477282],[112,73,78,-0.17058147900570628],[112,73,79,-0.16917007828315442],[112,74,64,-0.20552311564695963],[112,74,65,-0.20046951885979014],[112,74,66,-0.19756315849415107],[112,74,67,-0.19622249811295045],[112,74,68,-0.19552631646371105],[112,74,69,-0.19609446331093996],[112,74,70,-0.19658403833235516],[112,74,71,-0.19684314812114795],[112,74,72,-0.1963530059359573],[112,74,73,-0.19397225218807435],[112,74,74,-0.19339995535441334],[112,74,75,-0.19099606905674338],[112,74,76,-0.19015557659798996],[112,74,77,-0.18835311571676847],[112,74,78,-0.18709790022286157],[112,74,79,-0.18561266092414977],[112,75,64,-0.22051716713729308],[112,75,65,-0.2158366189472137],[112,75,66,-0.21229643900624595],[112,75,67,-0.21158193548006482],[112,75,68,-0.2107066955911927],[112,75,69,-0.21137416323683145],[112,75,70,-0.21101332043708948],[112,75,71,-0.21228213673338212],[112,75,72,-0.21220995942238854],[112,75,73,-0.20975926609925719],[112,75,74,-0.20874505179954914],[112,75,75,-0.20711387930192102],[112,75,76,-0.20534295918893564],[112,75,77,-0.20400465893514952],[112,75,78,-0.20263466159570837],[112,75,79,-0.200396952662803],[112,76,64,-0.23365481621507],[112,76,65,-0.22966499786954225],[112,76,66,-0.22628234958463642],[112,76,67,-0.22498327003971874],[112,76,68,-0.22450834344202197],[112,76,69,-0.22493711993971224],[112,76,70,-0.22421456353416713],[112,76,71,-0.22522509562990994],[112,76,72,-0.22568623156389833],[112,76,73,-0.22307146670674774],[112,76,74,-0.22224318518984834],[112,76,75,-0.22143847843433356],[112,76,76,-0.21983566061051799],[112,76,77,-0.21833499642096924],[112,76,78,-0.21684777279969356],[112,76,79,-0.21517496080547333],[112,77,64,-0.24814520718863886],[112,77,65,-0.24371431996853518],[112,77,66,-0.24021691430012423],[112,77,67,-0.23970476182967201],[112,77,68,-0.23949117306358503],[112,77,69,-0.239815798263766],[112,77,70,-0.23917527781604106],[112,77,71,-0.23927878909040104],[112,77,72,-0.24030611259860257],[112,77,73,-0.23804434307069855],[112,77,74,-0.2367313298183305],[112,77,75,-0.23644598043514464],[112,77,76,-0.23502852931213386],[112,77,77,-0.23359696702590194],[112,77,78,-0.23221394249585087],[112,77,79,-0.22961751586386608],[112,78,64,-0.262508671484761],[112,78,65,-0.25780964208405993],[112,78,66,-0.25444149231457985],[112,78,67,-0.25410007010420704],[112,78,68,-0.2544459332644987],[112,78,69,-0.2545225469901578],[112,78,70,-0.25385361208899276],[112,78,71,-0.25386415218938063],[112,78,72,-0.254968571202384],[112,78,73,-0.25351933890491496],[112,78,74,-0.25200849512660717],[112,78,75,-0.2515404529508571],[112,78,76,-0.24983200166215525],[112,78,77,-0.24831655803436084],[112,78,78,-0.24721807466884338],[112,78,79,-0.24503540800377374],[112,79,64,-0.2740269643731579],[112,79,65,-0.26964457860605134],[112,79,66,-0.2661112076158128],[112,79,67,-0.26575987827155917],[112,79,68,-0.26579700855523425],[112,79,69,-0.26638032023817293],[112,79,70,-0.2659216335163755],[112,79,71,-0.2657186509925355],[112,79,72,-0.2664266123051781],[112,79,73,-0.2650608965394719],[112,79,74,-0.2642449570079248],[112,79,75,-0.2626180496434493],[112,79,76,-0.2616761468679659],[112,79,77,-0.26006109140684824],[112,79,78,-0.2585901916977942],[112,79,79,-0.25671327204499356],[112,80,64,-0.28931054817132484],[112,80,65,-0.28452638201860075],[112,80,66,-0.2808098154769529],[112,80,67,-0.2801715908062618],[112,80,68,-0.2806908647477032],[112,80,69,-0.2809124311131052],[112,80,70,-0.28068300576359284],[112,80,71,-0.28075645943647964],[112,80,72,-0.2805878392398348],[112,80,73,-0.27888474149379006],[112,80,74,-0.27824504138444317],[112,80,75,-0.2771297192181425],[112,80,76,-0.27632069344185667],[112,80,77,-0.2745898115151113],[112,80,78,-0.27355146912431905],[112,80,79,-0.27168170330919666],[112,81,64,-0.3035601787599969],[112,81,65,-0.2991387179714347],[112,81,66,-0.29588100759388636],[112,81,67,-0.2937381940974742],[112,81,68,-0.2946977017332854],[112,81,69,-0.2949173471329469],[112,81,70,-0.29446460570092936],[112,81,71,-0.2941012961055041],[112,81,72,-0.2925269046467829],[112,81,73,-0.2903221625816688],[112,81,74,-0.2893229590182726],[112,81,75,-0.28822543874937334],[112,81,76,-0.28806464338983173],[112,81,77,-0.2881155249783325],[112,81,78,-0.28881928339503943],[112,81,79,-0.28793552826293606],[112,82,64,-0.3196462448627814],[112,82,65,-0.3148217851291269],[112,82,66,-0.3119628582026193],[112,82,67,-0.309542150938816],[112,82,68,-0.3102914223528178],[112,82,69,-0.31110988741840245],[112,82,70,-0.31080257069239886],[112,82,71,-0.3103141075579252],[112,82,72,-0.3080809730691209],[112,82,73,-0.30591013476012874],[112,82,74,-0.3049176832874948],[112,82,75,-0.30332780814694393],[112,82,76,-0.3032902832563867],[112,82,77,-0.3035670303603976],[112,82,78,-0.30426877373819583],[112,82,79,-0.3024609408915379],[112,83,64,-0.3339973819479214],[112,83,65,-0.32926369854387594],[112,83,66,-0.3264049916138645],[112,83,67,-0.32336535143348827],[112,83,68,-0.3246506506695187],[112,83,69,-0.3249417300007447],[112,83,70,-0.3250766994681221],[112,83,71,-0.3248674879158249],[112,83,72,-0.3220205164788719],[112,83,73,-0.31937104468659516],[112,83,74,-0.3183909211042068],[112,83,75,-0.3173458206834969],[112,83,76,-0.3174625815042873],[112,83,77,-0.3180139095433992],[112,83,78,-0.3185736137141015],[112,83,79,-0.3167040003557431],[112,84,64,-0.34691560944336175],[112,84,65,-0.3424382576672186],[112,84,66,-0.3392463060821709],[112,84,67,-0.33709333524040946],[112,84,68,-0.33739485847281225],[112,84,69,-0.3384564030554458],[112,84,70,-0.3381617700109115],[112,84,71,-0.3382161442767573],[112,84,72,-0.3355029243174694],[112,84,73,-0.332429163126393],[112,84,74,-0.3322558341496471],[112,84,75,-0.33106317487052417],[112,84,76,-0.3315792113708423],[112,84,77,-0.33168652982707225],[112,84,78,-0.3319460871303378],[112,84,79,-0.33066777701654065],[112,85,64,-0.3588781019553982],[112,85,65,-0.35484348817442934],[112,85,66,-0.3519699828757606],[112,85,67,-0.3513825811808917],[112,85,68,-0.35113570162842445],[112,85,69,-0.35255208121886294],[112,85,70,-0.35237799261966735],[112,85,71,-0.3533564530923019],[112,85,72,-0.3518596567388512],[112,85,73,-0.3488159077870258],[112,85,74,-0.3493825847948719],[112,85,75,-0.3484560266796547],[112,85,76,-0.347402271973438],[112,85,77,-0.3454486016485209],[112,85,78,-0.34372137370240885],[112,85,79,-0.34096582311478824],[112,86,64,-0.37111741687460553],[112,86,65,-0.3670950679141189],[112,86,66,-0.3646631200440128],[112,86,67,-0.36460137806703735],[112,86,68,-0.3647987537509656],[112,86,69,-0.3654999570534923],[112,86,70,-0.3659431888799271],[112,86,71,-0.3672072656158893],[112,86,72,-0.36529780936947126],[112,86,73,-0.36293515325569525],[112,86,74,-0.3626036563419769],[112,86,75,-0.3625510474507109],[112,86,76,-0.3616185461698207],[112,86,77,-0.35910147086652994],[112,86,78,-0.356847860000635],[112,86,79,-0.3545271177689368],[112,87,64,-0.3807455520430834],[112,87,65,-0.3770605243095957],[112,87,66,-0.37536926896086487],[112,87,67,-0.37483436248083907],[112,87,68,-0.3749906374003091],[112,87,69,-0.3756351022816809],[112,87,70,-0.37651482777828726],[112,87,71,-0.3776164733464228],[112,87,72,-0.3759344665988575],[112,87,73,-0.3739219526289207],[112,87,74,-0.3735450025947136],[112,87,75,-0.3735253092378349],[112,87,76,-0.37275358024549576],[112,87,77,-0.3700244529636091],[112,87,78,-0.3676240674009357],[112,87,79,-0.36550570189968906],[112,88,64,-0.3933587825995532],[112,88,65,-0.39013876636146394],[112,88,66,-0.3882725609960416],[112,88,67,-0.3879356698086547],[112,88,68,-0.3877519383054791],[112,88,69,-0.38767925433304296],[112,88,70,-0.38901186057299025],[112,88,71,-0.38998139540153537],[112,88,72,-0.38879534267359156],[112,88,73,-0.3862963302474312],[112,88,74,-0.3869268935096969],[112,88,75,-0.38719351102421473],[112,88,76,-0.3864936852847327],[112,88,77,-0.3833521220025832],[112,88,78,-0.38118111666986243],[112,88,79,-0.3790656522213808],[112,89,64,-0.4064737513282592],[112,89,65,-0.4030295177540098],[112,89,66,-0.4005830691691419],[112,89,67,-0.4001144681888472],[112,89,68,-0.40024185303499993],[112,89,69,-0.4003765656261593],[112,89,70,-0.40179284888434463],[112,89,71,-0.40166947902672395],[112,89,72,-0.40097404142814125],[112,89,73,-0.39908044578187224],[112,89,74,-0.39993019068365365],[112,89,75,-0.3998565270889106],[112,89,76,-0.3991750583388223],[112,89,77,-0.39714603289883127],[112,89,78,-0.39429985414600666],[112,89,79,-0.39216307138052786],[112,90,64,-0.42032419612380945],[112,90,65,-0.4164549753611788],[112,90,66,-0.4142685087269118],[112,90,67,-0.41339985587374367],[112,90,68,-0.41391736599465706],[112,90,69,-0.4141971778702092],[112,90,70,-0.41498228975631046],[112,90,71,-0.41548950376004573],[112,90,72,-0.41461343924623606],[112,90,73,-0.4127131490021934],[112,90,74,-0.41450196013197893],[112,90,75,-0.41397335634850124],[112,90,76,-0.4131468481111168],[112,90,77,-0.41205720793036305],[112,90,78,-0.40914941573637037],[112,90,79,-0.4069549890728752],[112,91,64,-0.4317902711875105],[112,91,65,-0.4286060164076344],[112,91,66,-0.4264069307301285],[112,91,67,-0.4251629633626663],[112,91,68,-0.4257127809364003],[112,91,69,-0.42600486728323794],[112,91,70,-0.4266658780623831],[112,91,71,-0.4278771919516803],[112,91,72,-0.4274696247308939],[112,91,73,-0.4263501322596332],[112,91,74,-0.42678573087930577],[112,91,75,-0.42691737315715267],[112,91,76,-0.42574922574327545],[112,91,77,-0.42503552717867404],[112,91,78,-0.42288301218482727],[112,91,79,-0.420918675089427],[112,92,64,-0.4432132194412392],[112,92,65,-0.44011845956197265],[112,92,66,-0.43748251594110665],[112,92,67,-0.43661575224365934],[112,92,68,-0.43742745406498695],[112,92,69,-0.4384250595987243],[112,92,70,-0.4395950769378054],[112,92,71,-0.4398259833100139],[112,92,72,-0.44021499200452796],[112,92,73,-0.4395649082444886],[112,92,74,-0.4388133629924499],[112,92,75,-0.439555797416235],[112,92,76,-0.4381094263937978],[112,92,77,-0.4382131437473283],[112,92,78,-0.4374044450018509],[112,92,79,-0.4352621501162264],[112,93,64,-0.4554046672927259],[112,93,65,-0.45221399323520295],[112,93,66,-0.449138798133732],[112,93,67,-0.4483623171786148],[112,93,68,-0.4492704218175652],[112,93,69,-0.4505775291272638],[112,93,70,-0.45134610979472],[112,93,71,-0.4510481086668956],[112,93,72,-0.4500208256569695],[112,93,73,-0.4486075690160409],[112,93,74,-0.44811439763633015],[112,93,75,-0.44861194403941723],[112,93,76,-0.44855336915268657],[112,93,77,-0.44950224424620105],[112,93,78,-0.4507108811244651],[112,93,79,-0.45020775524088513],[112,94,64,-0.4583333333333333],[112,94,65,-0.4583333333333333],[112,94,66,-0.4583333333333333],[112,94,67,-0.4583333333333333],[112,94,68,-0.4583333333333333],[112,94,69,-0.4583333333333333],[112,94,70,-0.4583333333333333],[112,94,71,-0.4583333333333333],[112,94,72,-0.4583333333333333],[112,94,73,-0.4583333333333333],[112,94,74,-0.4583333333333333],[112,94,75,-0.4583333333333333],[112,94,76,-0.4583333333333333],[112,94,77,-0.4583333333333333],[112,94,78,-0.4583333333333333],[112,94,79,-0.4583333333333333],[112,95,64,-0.4583333333333333],[112,95,65,-0.4583333333333333],[112,95,66,-0.4583333333333333],[112,95,67,-0.4583333333333333],[112,95,68,-0.4583333333333333],[112,95,69,-0.4583333333333333],[112,95,70,-0.4583333333333333],[112,95,71,-0.4583333333333333],[112,95,72,-0.4583333333333333],[112,95,73,-0.4583333333333333],[112,95,74,-0.4583333333333333],[112,95,75,-0.4583333333333333],[112,95,76,-0.4583333333333333],[112,95,77,-0.4583333333333333],[112,95,78,-0.4583333333333333],[112,95,79,-0.4583333333333333],[112,96,64,-0.4583333333333333],[112,96,65,-0.4583333333333333],[112,96,66,-0.4583333333333333],[112,96,67,-0.4583333333333333],[112,96,68,-0.4583333333333333],[112,96,69,-0.4583333333333333],[112,96,70,-0.4583333333333333],[112,96,71,-0.4583333333333333],[112,96,72,-0.4583333333333333],[112,96,73,-0.4583333333333333],[112,96,74,-0.4583333333333333],[112,96,75,-0.4583333333333333],[112,96,76,-0.4583333333333333],[112,96,77,-0.4583333333333333],[112,96,78,-0.4583333333333333],[112,96,79,-0.4583333333333333],[112,97,64,-0.4583333333333333],[112,97,65,-0.4583333333333333],[112,97,66,-0.4583333333333333],[112,97,67,-0.4583333333333333],[112,97,68,-0.4583333333333333],[112,97,69,-0.4583333333333333],[112,97,70,-0.4583333333333333],[112,97,71,-0.4583333333333333],[112,97,72,-0.4583333333333333],[112,97,73,-0.4583333333333333],[112,97,74,-0.4583333333333333],[112,97,75,-0.4583333333333333],[112,97,76,-0.4583333333333333],[112,97,77,-0.4583333333333333],[112,97,78,-0.4583333333333333],[112,97,79,-0.4583333333333333],[112,98,64,-0.4583333333333333],[112,98,65,-0.4583333333333333],[112,98,66,-0.4583333333333333],[112,98,67,-0.4583333333333333],[112,98,68,-0.4583333333333333],[112,98,69,-0.4583333333333333],[112,98,70,-0.4583333333333333],[112,98,71,-0.4583333333333333],[112,98,72,-0.4583333333333333],[112,98,73,-0.4583333333333333],[112,98,74,-0.4583333333333333],[112,98,75,-0.4583333333333333],[112,98,76,-0.4583333333333333],[112,98,77,-0.4583333333333333],[112,98,78,-0.4583333333333333],[112,98,79,-0.4583333333333333],[112,99,64,-0.4583333333333333],[112,99,65,-0.4583333333333333],[112,99,66,-0.4583333333333333],[112,99,67,-0.4583333333333333],[112,99,68,-0.4583333333333333],[112,99,69,-0.4583333333333333],[112,99,70,-0.4583333333333333],[112,99,71,-0.4583333333333333],[112,99,72,-0.4583333333333333],[112,99,73,-0.4583333333333333],[112,99,74,-0.4583333333333333],[112,99,75,-0.4583333333333333],[112,99,76,-0.4583333333333333],[112,99,77,-0.4583333333333333],[112,99,78,-0.4583333333333333],[112,99,79,-0.4583333333333333],[112,100,64,-0.4583333333333333],[112,100,65,-0.4583333333333333],[112,100,66,-0.4583333333333333],[112,100,67,-0.4583333333333333],[112,100,68,-0.4583333333333333],[112,100,69,-0.4583333333333333],[112,100,70,-0.4583333333333333],[112,100,71,-0.4583333333333333],[112,100,72,-0.4583333333333333],[112,100,73,-0.4583333333333333],[112,100,74,-0.4583333333333333],[112,100,75,-0.4583333333333333],[112,100,76,-0.4583333333333333],[112,100,77,-0.4583333333333333],[112,100,78,-0.4583333333333333],[112,100,79,-0.4583333333333333],[112,101,64,-0.4583333333333333],[112,101,65,-0.4583333333333333],[112,101,66,-0.4583333333333333],[112,101,67,-0.4583333333333333],[112,101,68,-0.4583333333333333],[112,101,69,-0.4583333333333333],[112,101,70,-0.4583333333333333],[112,101,71,-0.4583333333333333],[112,101,72,-0.4583333333333333],[112,101,73,-0.4583333333333333],[112,101,74,-0.4583333333333333],[112,101,75,-0.4583333333333333],[112,101,76,-0.4583333333333333],[112,101,77,-0.4583333333333333],[112,101,78,-0.4583333333333333],[112,101,79,-0.4583333333333333],[112,102,64,-0.4583333333333333],[112,102,65,-0.4583333333333333],[112,102,66,-0.4583333333333333],[112,102,67,-0.4583333333333333],[112,102,68,-0.4583333333333333],[112,102,69,-0.4583333333333333],[112,102,70,-0.4583333333333333],[112,102,71,-0.4583333333333333],[112,102,72,-0.4583333333333333],[112,102,73,-0.4583333333333333],[112,102,74,-0.4583333333333333],[112,102,75,-0.4583333333333333],[112,102,76,-0.4583333333333333],[112,102,77,-0.4583333333333333],[112,102,78,-0.4583333333333333],[112,102,79,-0.4583333333333333],[112,103,64,-0.4583333333333333],[112,103,65,-0.4583333333333333],[112,103,66,-0.4583333333333333],[112,103,67,-0.4583333333333333],[112,103,68,-0.4583333333333333],[112,103,69,-0.4583333333333333],[112,103,70,-0.4583333333333333],[112,103,71,-0.4583333333333333],[112,103,72,-0.4583333333333333],[112,103,73,-0.4583333333333333],[112,103,74,-0.4583333333333333],[112,103,75,-0.4583333333333333],[112,103,76,-0.4583333333333333],[112,103,77,-0.4583333333333333],[112,103,78,-0.4583333333333333],[112,103,79,-0.4583333333333333],[112,104,64,-0.4583333333333333],[112,104,65,-0.4583333333333333],[112,104,66,-0.4583333333333333],[112,104,67,-0.4583333333333333],[112,104,68,-0.4583333333333333],[112,104,69,-0.4583333333333333],[112,104,70,-0.4583333333333333],[112,104,71,-0.4583333333333333],[112,104,72,-0.4583333333333333],[112,104,73,-0.4583333333333333],[112,104,74,-0.4583333333333333],[112,104,75,-0.4583333333333333],[112,104,76,-0.4583333333333333],[112,104,77,-0.4583333333333333],[112,104,78,-0.4583333333333333],[112,104,79,-0.4583333333333333],[112,105,64,-0.4583333333333333],[112,105,65,-0.4583333333333333],[112,105,66,-0.4583333333333333],[112,105,67,-0.4583333333333333],[112,105,68,-0.4583333333333333],[112,105,69,-0.4583333333333333],[112,105,70,-0.4583333333333333],[112,105,71,-0.4583333333333333],[112,105,72,-0.4583333333333333],[112,105,73,-0.4583333333333333],[112,105,74,-0.4583333333333333],[112,105,75,-0.4583333333333333],[112,105,76,-0.4583333333333333],[112,105,77,-0.4583333333333333],[112,105,78,-0.4583333333333333],[112,105,79,-0.4583333333333333],[112,106,64,-0.4583333333333333],[112,106,65,-0.4583333333333333],[112,106,66,-0.4583333333333333],[112,106,67,-0.4583333333333333],[112,106,68,-0.4583333333333333],[112,106,69,-0.4583333333333333],[112,106,70,-0.4583333333333333],[112,106,71,-0.4583333333333333],[112,106,72,-0.4583333333333333],[112,106,73,-0.4583333333333333],[112,106,74,-0.4583333333333333],[112,106,75,-0.4583333333333333],[112,106,76,-0.4583333333333333],[112,106,77,-0.4583333333333333],[112,106,78,-0.4583333333333333],[112,106,79,-0.4583333333333333],[112,107,64,-0.4583333333333333],[112,107,65,-0.4583333333333333],[112,107,66,-0.4583333333333333],[112,107,67,-0.4583333333333333],[112,107,68,-0.4583333333333333],[112,107,69,-0.4583333333333333],[112,107,70,-0.4583333333333333],[112,107,71,-0.4583333333333333],[112,107,72,-0.4583333333333333],[112,107,73,-0.4583333333333333],[112,107,74,-0.4583333333333333],[112,107,75,-0.4583333333333333],[112,107,76,-0.4583333333333333],[112,107,77,-0.4583333333333333],[112,107,78,-0.4583333333333333],[112,107,79,-0.4583333333333333],[112,108,64,-0.4583333333333333],[112,108,65,-0.4583333333333333],[112,108,66,-0.4583333333333333],[112,108,67,-0.4583333333333333],[112,108,68,-0.4583333333333333],[112,108,69,-0.4583333333333333],[112,108,70,-0.4583333333333333],[112,108,71,-0.4583333333333333],[112,108,72,-0.4583333333333333],[112,108,73,-0.4583333333333333],[112,108,74,-0.4583333333333333],[112,108,75,-0.4583333333333333],[112,108,76,-0.4583333333333333],[112,108,77,-0.4583333333333333],[112,108,78,-0.4583333333333333],[112,108,79,-0.4583333333333333],[112,109,64,-0.4583333333333333],[112,109,65,-0.4583333333333333],[112,109,66,-0.4583333333333333],[112,109,67,-0.4583333333333333],[112,109,68,-0.4583333333333333],[112,109,69,-0.4583333333333333],[112,109,70,-0.4583333333333333],[112,109,71,-0.4583333333333333],[112,109,72,-0.4583333333333333],[112,109,73,-0.4583333333333333],[112,109,74,-0.4583333333333333],[112,109,75,-0.4583333333333333],[112,109,76,-0.4583333333333333],[112,109,77,-0.4583333333333333],[112,109,78,-0.4583333333333333],[112,109,79,-0.4583333333333333],[112,110,64,-0.4583333333333333],[112,110,65,-0.4583333333333333],[112,110,66,-0.4583333333333333],[112,110,67,-0.4583333333333333],[112,110,68,-0.4583333333333333],[112,110,69,-0.4583333333333333],[112,110,70,-0.4583333333333333],[112,110,71,-0.4583333333333333],[112,110,72,-0.4583333333333333],[112,110,73,-0.4583333333333333],[112,110,74,-0.4583333333333333],[112,110,75,-0.4583333333333333],[112,110,76,-0.4583333333333333],[112,110,77,-0.4583333333333333],[112,110,78,-0.4583333333333333],[112,110,79,-0.4583333333333333],[112,111,64,-0.4583333333333333],[112,111,65,-0.4583333333333333],[112,111,66,-0.4583333333333333],[112,111,67,-0.4583333333333333],[112,111,68,-0.4583333333333333],[112,111,69,-0.4583333333333333],[112,111,70,-0.4583333333333333],[112,111,71,-0.4583333333333333],[112,111,72,-0.4583333333333333],[112,111,73,-0.4583333333333333],[112,111,74,-0.4583333333333333],[112,111,75,-0.4583333333333333],[112,111,76,-0.4583333333333333],[112,111,77,-0.4583333333333333],[112,111,78,-0.4583333333333333],[112,111,79,-0.4583333333333333],[112,112,64,-0.4583333333333333],[112,112,65,-0.4583333333333333],[112,112,66,-0.4583333333333333],[112,112,67,-0.4583333333333333],[112,112,68,-0.4583333333333333],[112,112,69,-0.4583333333333333],[112,112,70,-0.4583333333333333],[112,112,71,-0.4583333333333333],[112,112,72,-0.4583333333333333],[112,112,73,-0.4583333333333333],[112,112,74,-0.4583333333333333],[112,112,75,-0.4583333333333333],[112,112,76,-0.4583333333333333],[112,112,77,-0.4583333333333333],[112,112,78,-0.4583333333333333],[112,112,79,-0.4583333333333333],[112,113,64,-0.4583333333333333],[112,113,65,-0.4583333333333333],[112,113,66,-0.4583333333333333],[112,113,67,-0.4583333333333333],[112,113,68,-0.4583333333333333],[112,113,69,-0.4583333333333333],[112,113,70,-0.4583333333333333],[112,113,71,-0.4583333333333333],[112,113,72,-0.4583333333333333],[112,113,73,-0.4583333333333333],[112,113,74,-0.4583333333333333],[112,113,75,-0.4583333333333333],[112,113,76,-0.4583333333333333],[112,113,77,-0.4583333333333333],[112,113,78,-0.4583333333333333],[112,113,79,-0.4583333333333333],[112,114,64,-0.4583333333333333],[112,114,65,-0.4583333333333333],[112,114,66,-0.4583333333333333],[112,114,67,-0.4583333333333333],[112,114,68,-0.4583333333333333],[112,114,69,-0.4583333333333333],[112,114,70,-0.4583333333333333],[112,114,71,-0.4583333333333333],[112,114,72,-0.4583333333333333],[112,114,73,-0.4583333333333333],[112,114,74,-0.4583333333333333],[112,114,75,-0.4583333333333333],[112,114,76,-0.4583333333333333],[112,114,77,-0.4583333333333333],[112,114,78,-0.4583333333333333],[112,114,79,-0.4583333333333333],[112,115,64,-0.4583333333333333],[112,115,65,-0.4583333333333333],[112,115,66,-0.4583333333333333],[112,115,67,-0.4583333333333333],[112,115,68,-0.4583333333333333],[112,115,69,-0.4583333333333333],[112,115,70,-0.4583333333333333],[112,115,71,-0.4583333333333333],[112,115,72,-0.4583333333333333],[112,115,73,-0.4583333333333333],[112,115,74,-0.4583333333333333],[112,115,75,-0.4583333333333333],[112,115,76,-0.4583333333333333],[112,115,77,-0.4583333333333333],[112,115,78,-0.4583333333333333],[112,115,79,-0.4583333333333333],[112,116,64,-0.4583333333333333],[112,116,65,-0.4583333333333333],[112,116,66,-0.4583333333333333],[112,116,67,-0.4583333333333333],[112,116,68,-0.4583333333333333],[112,116,69,-0.4583333333333333],[112,116,70,-0.4583333333333333],[112,116,71,-0.4583333333333333],[112,116,72,-0.4583333333333333],[112,116,73,-0.4583333333333333],[112,116,74,-0.4583333333333333],[112,116,75,-0.4583333333333333],[112,116,76,-0.4583333333333333],[112,116,77,-0.4583333333333333],[112,116,78,-0.4583333333333333],[112,116,79,-0.4583333333333333],[112,117,64,-0.4583333333333333],[112,117,65,-0.4583333333333333],[112,117,66,-0.4583333333333333],[112,117,67,-0.4583333333333333],[112,117,68,-0.4583333333333333],[112,117,69,-0.4583333333333333],[112,117,70,-0.4583333333333333],[112,117,71,-0.4583333333333333],[112,117,72,-0.4583333333333333],[112,117,73,-0.4583333333333333],[112,117,74,-0.4583333333333333],[112,117,75,-0.4583333333333333],[112,117,76,-0.4583333333333333],[112,117,77,-0.4583333333333333],[112,117,78,-0.4583333333333333],[112,117,79,-0.4583333333333333],[112,118,64,-0.4583333333333333],[112,118,65,-0.4583333333333333],[112,118,66,-0.4583333333333333],[112,118,67,-0.4583333333333333],[112,118,68,-0.4583333333333333],[112,118,69,-0.4583333333333333],[112,118,70,-0.4583333333333333],[112,118,71,-0.4583333333333333],[112,118,72,-0.4583333333333333],[112,118,73,-0.4583333333333333],[112,118,74,-0.4583333333333333],[112,118,75,-0.4583333333333333],[112,118,76,-0.4583333333333333],[112,118,77,-0.4583333333333333],[112,118,78,-0.4583333333333333],[112,118,79,-0.4583333333333333],[112,119,64,-0.4583333333333333],[112,119,65,-0.4583333333333333],[112,119,66,-0.4583333333333333],[112,119,67,-0.4583333333333333],[112,119,68,-0.4583333333333333],[112,119,69,-0.4583333333333333],[112,119,70,-0.4583333333333333],[112,119,71,-0.4583333333333333],[112,119,72,-0.4583333333333333],[112,119,73,-0.4583333333333333],[112,119,74,-0.4583333333333333],[112,119,75,-0.4583333333333333],[112,119,76,-0.4583333333333333],[112,119,77,-0.4583333333333333],[112,119,78,-0.4583333333333333],[112,119,79,-0.4583333333333333],[112,120,64,-0.4583333333333333],[112,120,65,-0.4583333333333333],[112,120,66,-0.4583333333333333],[112,120,67,-0.4583333333333333],[112,120,68,-0.4583333333333333],[112,120,69,-0.4583333333333333],[112,120,70,-0.4583333333333333],[112,120,71,-0.4583333333333333],[112,120,72,-0.4583333333333333],[112,120,73,-0.4583333333333333],[112,120,74,-0.4583333333333333],[112,120,75,-0.4583333333333333],[112,120,76,-0.4583333333333333],[112,120,77,-0.4583333333333333],[112,120,78,-0.4583333333333333],[112,120,79,-0.4583333333333333],[112,121,64,-0.4583333333333333],[112,121,65,-0.4583333333333333],[112,121,66,-0.4583333333333333],[112,121,67,-0.4583333333333333],[112,121,68,-0.4583333333333333],[112,121,69,-0.4583333333333333],[112,121,70,-0.4583333333333333],[112,121,71,-0.4583333333333333],[112,121,72,-0.4583333333333333],[112,121,73,-0.4583333333333333],[112,121,74,-0.4583333333333333],[112,121,75,-0.4583333333333333],[112,121,76,-0.4583333333333333],[112,121,77,-0.4583333333333333],[112,121,78,-0.4583333333333333],[112,121,79,-0.4583333333333333],[112,122,64,-0.4583333333333333],[112,122,65,-0.4583333333333333],[112,122,66,-0.4583333333333333],[112,122,67,-0.4583333333333333],[112,122,68,-0.4583333333333333],[112,122,69,-0.4583333333333333],[112,122,70,-0.4583333333333333],[112,122,71,-0.4583333333333333],[112,122,72,-0.4583333333333333],[112,122,73,-0.4583333333333333],[112,122,74,-0.4583333333333333],[112,122,75,-0.4583333333333333],[112,122,76,-0.4583333333333333],[112,122,77,-0.4583333333333333],[112,122,78,-0.4583333333333333],[112,122,79,-0.4583333333333333],[112,123,64,-0.4583333333333333],[112,123,65,-0.4583333333333333],[112,123,66,-0.4583333333333333],[112,123,67,-0.4583333333333333],[112,123,68,-0.4583333333333333],[112,123,69,-0.4583333333333333],[112,123,70,-0.4583333333333333],[112,123,71,-0.4583333333333333],[112,123,72,-0.4583333333333333],[112,123,73,-0.4583333333333333],[112,123,74,-0.4583333333333333],[112,123,75,-0.4583333333333333],[112,123,76,-0.4583333333333333],[112,123,77,-0.4583333333333333],[112,123,78,-0.4583333333333333],[112,123,79,-0.4583333333333333],[112,124,64,-0.4583333333333333],[112,124,65,-0.4583333333333333],[112,124,66,-0.4583333333333333],[112,124,67,-0.4583333333333333],[112,124,68,-0.4583333333333333],[112,124,69,-0.4583333333333333],[112,124,70,-0.4583333333333333],[112,124,71,-0.4583333333333333],[112,124,72,-0.4583333333333333],[112,124,73,-0.4583333333333333],[112,124,74,-0.4583333333333333],[112,124,75,-0.4583333333333333],[112,124,76,-0.4583333333333333],[112,124,77,-0.4583333333333333],[112,124,78,-0.4583333333333333],[112,124,79,-0.4583333333333333],[112,125,64,-0.4583333333333333],[112,125,65,-0.4583333333333333],[112,125,66,-0.4583333333333333],[112,125,67,-0.4583333333333333],[112,125,68,-0.4583333333333333],[112,125,69,-0.4583333333333333],[112,125,70,-0.4583333333333333],[112,125,71,-0.4583333333333333],[112,125,72,-0.4583333333333333],[112,125,73,-0.4583333333333333],[112,125,74,-0.4583333333333333],[112,125,75,-0.4583333333333333],[112,125,76,-0.4583333333333333],[112,125,77,-0.4583333333333333],[112,125,78,-0.4583333333333333],[112,125,79,-0.4583333333333333],[112,126,64,-0.4583333333333333],[112,126,65,-0.4583333333333333],[112,126,66,-0.4583333333333333],[112,126,67,-0.4583333333333333],[112,126,68,-0.4583333333333333],[112,126,69,-0.4583333333333333],[112,126,70,-0.4583333333333333],[112,126,71,-0.4583333333333333],[112,126,72,-0.4583333333333333],[112,126,73,-0.4583333333333333],[112,126,74,-0.4583333333333333],[112,126,75,-0.4583333333333333],[112,126,76,-0.4583333333333333],[112,126,77,-0.4583333333333333],[112,126,78,-0.4583333333333333],[112,126,79,-0.4583333333333333],[112,127,64,-0.4583333333333333],[112,127,65,-0.4583333333333333],[112,127,66,-0.4583333333333333],[112,127,67,-0.4583333333333333],[112,127,68,-0.4583333333333333],[112,127,69,-0.4583333333333333],[112,127,70,-0.4583333333333333],[112,127,71,-0.4583333333333333],[112,127,72,-0.4583333333333333],[112,127,73,-0.4583333333333333],[112,127,74,-0.4583333333333333],[112,127,75,-0.4583333333333333],[112,127,76,-0.4583333333333333],[112,127,77,-0.4583333333333333],[112,127,78,-0.4583333333333333],[112,127,79,-0.4583333333333333],[112,128,64,-0.4583333333333333],[112,128,65,-0.4583333333333333],[112,128,66,-0.4583333333333333],[112,128,67,-0.4583333333333333],[112,128,68,-0.4583333333333333],[112,128,69,-0.4583333333333333],[112,128,70,-0.4583333333333333],[112,128,71,-0.4583333333333333],[112,128,72,-0.4583333333333333],[112,128,73,-0.4583333333333333],[112,128,74,-0.4583333333333333],[112,128,75,-0.4583333333333333],[112,128,76,-0.4583333333333333],[112,128,77,-0.4583333333333333],[112,128,78,-0.4583333333333333],[112,128,79,-0.4583333333333333],[112,129,64,-0.4583333333333333],[112,129,65,-0.4583333333333333],[112,129,66,-0.4583333333333333],[112,129,67,-0.4583333333333333],[112,129,68,-0.4583333333333333],[112,129,69,-0.4583333333333333],[112,129,70,-0.4583333333333333],[112,129,71,-0.4583333333333333],[112,129,72,-0.4583333333333333],[112,129,73,-0.4583333333333333],[112,129,74,-0.4583333333333333],[112,129,75,-0.4583333333333333],[112,129,76,-0.4583333333333333],[112,129,77,-0.4583333333333333],[112,129,78,-0.4583333333333333],[112,129,79,-0.4583333333333333],[112,130,64,-0.4583333333333333],[112,130,65,-0.4583333333333333],[112,130,66,-0.4583333333333333],[112,130,67,-0.4583333333333333],[112,130,68,-0.4583333333333333],[112,130,69,-0.4583333333333333],[112,130,70,-0.4583333333333333],[112,130,71,-0.4583333333333333],[112,130,72,-0.4583333333333333],[112,130,73,-0.4583333333333333],[112,130,74,-0.4583333333333333],[112,130,75,-0.4583333333333333],[112,130,76,-0.4583333333333333],[112,130,77,-0.4583333333333333],[112,130,78,-0.4583333333333333],[112,130,79,-0.4583333333333333],[112,131,64,-0.4583333333333333],[112,131,65,-0.4583333333333333],[112,131,66,-0.4583333333333333],[112,131,67,-0.4583333333333333],[112,131,68,-0.4583333333333333],[112,131,69,-0.4583333333333333],[112,131,70,-0.4583333333333333],[112,131,71,-0.4583333333333333],[112,131,72,-0.4583333333333333],[112,131,73,-0.4583333333333333],[112,131,74,-0.4583333333333333],[112,131,75,-0.4583333333333333],[112,131,76,-0.4583333333333333],[112,131,77,-0.4583333333333333],[112,131,78,-0.4583333333333333],[112,131,79,-0.4583333333333333],[112,132,64,-0.4583333333333333],[112,132,65,-0.4583333333333333],[112,132,66,-0.4583333333333333],[112,132,67,-0.4583333333333333],[112,132,68,-0.4583333333333333],[112,132,69,-0.4583333333333333],[112,132,70,-0.4583333333333333],[112,132,71,-0.4583333333333333],[112,132,72,-0.4583333333333333],[112,132,73,-0.4583333333333333],[112,132,74,-0.4583333333333333],[112,132,75,-0.4583333333333333],[112,132,76,-0.4583333333333333],[112,132,77,-0.4583333333333333],[112,132,78,-0.4583333333333333],[112,132,79,-0.4583333333333333],[112,133,64,-0.4583333333333333],[112,133,65,-0.4583333333333333],[112,133,66,-0.4583333333333333],[112,133,67,-0.4583333333333333],[112,133,68,-0.4583333333333333],[112,133,69,-0.4583333333333333],[112,133,70,-0.4583333333333333],[112,133,71,-0.4583333333333333],[112,133,72,-0.4583333333333333],[112,133,73,-0.4583333333333333],[112,133,74,-0.4583333333333333],[112,133,75,-0.4583333333333333],[112,133,76,-0.4583333333333333],[112,133,77,-0.4583333333333333],[112,133,78,-0.4583333333333333],[112,133,79,-0.4583333333333333],[112,134,64,-0.4583333333333333],[112,134,65,-0.4583333333333333],[112,134,66,-0.4583333333333333],[112,134,67,-0.4583333333333333],[112,134,68,-0.4583333333333333],[112,134,69,-0.4583333333333333],[112,134,70,-0.4583333333333333],[112,134,71,-0.4583333333333333],[112,134,72,-0.4583333333333333],[112,134,73,-0.4583333333333333],[112,134,74,-0.4583333333333333],[112,134,75,-0.4583333333333333],[112,134,76,-0.4583333333333333],[112,134,77,-0.4583333333333333],[112,134,78,-0.4583333333333333],[112,134,79,-0.4583333333333333],[112,135,64,-0.4583333333333333],[112,135,65,-0.4583333333333333],[112,135,66,-0.4583333333333333],[112,135,67,-0.4583333333333333],[112,135,68,-0.4583333333333333],[112,135,69,-0.4583333333333333],[112,135,70,-0.4583333333333333],[112,135,71,-0.4583333333333333],[112,135,72,-0.4583333333333333],[112,135,73,-0.4583333333333333],[112,135,74,-0.4583333333333333],[112,135,75,-0.4583333333333333],[112,135,76,-0.4583333333333333],[112,135,77,-0.4583333333333333],[112,135,78,-0.4583333333333333],[112,135,79,-0.4583333333333333],[112,136,64,-0.4583333333333333],[112,136,65,-0.4583333333333333],[112,136,66,-0.4583333333333333],[112,136,67,-0.4583333333333333],[112,136,68,-0.4583333333333333],[112,136,69,-0.4583333333333333],[112,136,70,-0.4583333333333333],[112,136,71,-0.4583333333333333],[112,136,72,-0.4583333333333333],[112,136,73,-0.4583333333333333],[112,136,74,-0.4583333333333333],[112,136,75,-0.4583333333333333],[112,136,76,-0.4583333333333333],[112,136,77,-0.4583333333333333],[112,136,78,-0.4583333333333333],[112,136,79,-0.4583333333333333],[112,137,64,-0.4583333333333333],[112,137,65,-0.4583333333333333],[112,137,66,-0.4583333333333333],[112,137,67,-0.4583333333333333],[112,137,68,-0.4583333333333333],[112,137,69,-0.4583333333333333],[112,137,70,-0.4583333333333333],[112,137,71,-0.4583333333333333],[112,137,72,-0.4583333333333333],[112,137,73,-0.4583333333333333],[112,137,74,-0.4583333333333333],[112,137,75,-0.4583333333333333],[112,137,76,-0.4583333333333333],[112,137,77,-0.4583333333333333],[112,137,78,-0.4583333333333333],[112,137,79,-0.4583333333333333],[112,138,64,-0.4583333333333333],[112,138,65,-0.4583333333333333],[112,138,66,-0.4583333333333333],[112,138,67,-0.4583333333333333],[112,138,68,-0.4583333333333333],[112,138,69,-0.4583333333333333],[112,138,70,-0.4583333333333333],[112,138,71,-0.4583333333333333],[112,138,72,-0.4583333333333333],[112,138,73,-0.4583333333333333],[112,138,74,-0.4583333333333333],[112,138,75,-0.4583333333333333],[112,138,76,-0.4583333333333333],[112,138,77,-0.4583333333333333],[112,138,78,-0.4583333333333333],[112,138,79,-0.4583333333333333],[112,139,64,-0.4583333333333333],[112,139,65,-0.4583333333333333],[112,139,66,-0.4583333333333333],[112,139,67,-0.4583333333333333],[112,139,68,-0.4583333333333333],[112,139,69,-0.4583333333333333],[112,139,70,-0.4583333333333333],[112,139,71,-0.4583333333333333],[112,139,72,-0.4583333333333333],[112,139,73,-0.4583333333333333],[112,139,74,-0.4583333333333333],[112,139,75,-0.4583333333333333],[112,139,76,-0.4583333333333333],[112,139,77,-0.4583333333333333],[112,139,78,-0.4583333333333333],[112,139,79,-0.4583333333333333],[112,140,64,-0.4583333333333333],[112,140,65,-0.4583333333333333],[112,140,66,-0.4583333333333333],[112,140,67,-0.4583333333333333],[112,140,68,-0.4583333333333333],[112,140,69,-0.4583333333333333],[112,140,70,-0.4583333333333333],[112,140,71,-0.4583333333333333],[112,140,72,-0.4583333333333333],[112,140,73,-0.4583333333333333],[112,140,74,-0.4583333333333333],[112,140,75,-0.4583333333333333],[112,140,76,-0.4583333333333333],[112,140,77,-0.4583333333333333],[112,140,78,-0.4583333333333333],[112,140,79,-0.4583333333333333],[112,141,64,-0.4583333333333333],[112,141,65,-0.4583333333333333],[112,141,66,-0.4583333333333333],[112,141,67,-0.4583333333333333],[112,141,68,-0.4583333333333333],[112,141,69,-0.4583333333333333],[112,141,70,-0.4583333333333333],[112,141,71,-0.4583333333333333],[112,141,72,-0.4583333333333333],[112,141,73,-0.4583333333333333],[112,141,74,-0.4583333333333333],[112,141,75,-0.4583333333333333],[112,141,76,-0.4583333333333333],[112,141,77,-0.4583333333333333],[112,141,78,-0.4583333333333333],[112,141,79,-0.4583333333333333],[112,142,64,-0.4583333333333333],[112,142,65,-0.4583333333333333],[112,142,66,-0.4583333333333333],[112,142,67,-0.4583333333333333],[112,142,68,-0.4583333333333333],[112,142,69,-0.4583333333333333],[112,142,70,-0.4583333333333333],[112,142,71,-0.4583333333333333],[112,142,72,-0.4583333333333333],[112,142,73,-0.4583333333333333],[112,142,74,-0.4583333333333333],[112,142,75,-0.4583333333333333],[112,142,76,-0.4583333333333333],[112,142,77,-0.4583333333333333],[112,142,78,-0.4583333333333333],[112,142,79,-0.4583333333333333],[112,143,64,-0.4583333333333333],[112,143,65,-0.4583333333333333],[112,143,66,-0.4583333333333333],[112,143,67,-0.4583333333333333],[112,143,68,-0.4583333333333333],[112,143,69,-0.4583333333333333],[112,143,70,-0.4583333333333333],[112,143,71,-0.4583333333333333],[112,143,72,-0.4583333333333333],[112,143,73,-0.4583333333333333],[112,143,74,-0.4583333333333333],[112,143,75,-0.4583333333333333],[112,143,76,-0.4583333333333333],[112,143,77,-0.4583333333333333],[112,143,78,-0.4583333333333333],[112,143,79,-0.4583333333333333],[112,144,64,-0.4583333333333333],[112,144,65,-0.4583333333333333],[112,144,66,-0.4583333333333333],[112,144,67,-0.4583333333333333],[112,144,68,-0.4583333333333333],[112,144,69,-0.4583333333333333],[112,144,70,-0.4583333333333333],[112,144,71,-0.4583333333333333],[112,144,72,-0.4583333333333333],[112,144,73,-0.4583333333333333],[112,144,74,-0.4583333333333333],[112,144,75,-0.4583333333333333],[112,144,76,-0.4583333333333333],[112,144,77,-0.4583333333333333],[112,144,78,-0.4583333333333333],[112,144,79,-0.4583333333333333],[112,145,64,-0.4583333333333333],[112,145,65,-0.4583333333333333],[112,145,66,-0.4583333333333333],[112,145,67,-0.4583333333333333],[112,145,68,-0.4583333333333333],[112,145,69,-0.4583333333333333],[112,145,70,-0.4583333333333333],[112,145,71,-0.4583333333333333],[112,145,72,-0.4583333333333333],[112,145,73,-0.4583333333333333],[112,145,74,-0.4583333333333333],[112,145,75,-0.4583333333333333],[112,145,76,-0.4583333333333333],[112,145,77,-0.4583333333333333],[112,145,78,-0.4583333333333333],[112,145,79,-0.4583333333333333],[112,146,64,-0.4583333333333333],[112,146,65,-0.4583333333333333],[112,146,66,-0.4583333333333333],[112,146,67,-0.4583333333333333],[112,146,68,-0.4583333333333333],[112,146,69,-0.4583333333333333],[112,146,70,-0.4583333333333333],[112,146,71,-0.4583333333333333],[112,146,72,-0.4583333333333333],[112,146,73,-0.4583333333333333],[112,146,74,-0.4583333333333333],[112,146,75,-0.4583333333333333],[112,146,76,-0.4583333333333333],[112,146,77,-0.4583333333333333],[112,146,78,-0.4583333333333333],[112,146,79,-0.4583333333333333],[112,147,64,-0.4583333333333333],[112,147,65,-0.4583333333333333],[112,147,66,-0.4583333333333333],[112,147,67,-0.4583333333333333],[112,147,68,-0.4583333333333333],[112,147,69,-0.4583333333333333],[112,147,70,-0.4583333333333333],[112,147,71,-0.4583333333333333],[112,147,72,-0.4583333333333333],[112,147,73,-0.4583333333333333],[112,147,74,-0.4583333333333333],[112,147,75,-0.4583333333333333],[112,147,76,-0.4583333333333333],[112,147,77,-0.4583333333333333],[112,147,78,-0.4583333333333333],[112,147,79,-0.4583333333333333],[112,148,64,-0.4583333333333333],[112,148,65,-0.4583333333333333],[112,148,66,-0.4583333333333333],[112,148,67,-0.4583333333333333],[112,148,68,-0.4583333333333333],[112,148,69,-0.4583333333333333],[112,148,70,-0.4583333333333333],[112,148,71,-0.4583333333333333],[112,148,72,-0.4583333333333333],[112,148,73,-0.4583333333333333],[112,148,74,-0.4583333333333333],[112,148,75,-0.4583333333333333],[112,148,76,-0.4583333333333333],[112,148,77,-0.4583333333333333],[112,148,78,-0.4583333333333333],[112,148,79,-0.4583333333333333],[112,149,64,-0.4583333333333333],[112,149,65,-0.4583333333333333],[112,149,66,-0.4583333333333333],[112,149,67,-0.4583333333333333],[112,149,68,-0.4583333333333333],[112,149,69,-0.4583333333333333],[112,149,70,-0.4583333333333333],[112,149,71,-0.4583333333333333],[112,149,72,-0.4583333333333333],[112,149,73,-0.4583333333333333],[112,149,74,-0.4583333333333333],[112,149,75,-0.4583333333333333],[112,149,76,-0.4583333333333333],[112,149,77,-0.4583333333333333],[112,149,78,-0.4583333333333333],[112,149,79,-0.4583333333333333],[112,150,64,-0.4583333333333333],[112,150,65,-0.4583333333333333],[112,150,66,-0.4583333333333333],[112,150,67,-0.4583333333333333],[112,150,68,-0.4583333333333333],[112,150,69,-0.4583333333333333],[112,150,70,-0.4583333333333333],[112,150,71,-0.4583333333333333],[112,150,72,-0.4583333333333333],[112,150,73,-0.4583333333333333],[112,150,74,-0.4583333333333333],[112,150,75,-0.4583333333333333],[112,150,76,-0.4583333333333333],[112,150,77,-0.4583333333333333],[112,150,78,-0.4583333333333333],[112,150,79,-0.4583333333333333],[112,151,64,-0.4583333333333333],[112,151,65,-0.4583333333333333],[112,151,66,-0.4583333333333333],[112,151,67,-0.4583333333333333],[112,151,68,-0.4583333333333333],[112,151,69,-0.4583333333333333],[112,151,70,-0.4583333333333333],[112,151,71,-0.4583333333333333],[112,151,72,-0.4583333333333333],[112,151,73,-0.4583333333333333],[112,151,74,-0.4583333333333333],[112,151,75,-0.4583333333333333],[112,151,76,-0.4583333333333333],[112,151,77,-0.4583333333333333],[112,151,78,-0.4583333333333333],[112,151,79,-0.4583333333333333],[112,152,64,-0.4583333333333333],[112,152,65,-0.4583333333333333],[112,152,66,-0.4583333333333333],[112,152,67,-0.4583333333333333],[112,152,68,-0.4583333333333333],[112,152,69,-0.4583333333333333],[112,152,70,-0.4583333333333333],[112,152,71,-0.4583333333333333],[112,152,72,-0.4583333333333333],[112,152,73,-0.4583333333333333],[112,152,74,-0.4583333333333333],[112,152,75,-0.4583333333333333],[112,152,76,-0.4583333333333333],[112,152,77,-0.4583333333333333],[112,152,78,-0.4583333333333333],[112,152,79,-0.4583333333333333],[112,153,64,-0.4583333333333333],[112,153,65,-0.4583333333333333],[112,153,66,-0.4583333333333333],[112,153,67,-0.4583333333333333],[112,153,68,-0.4583333333333333],[112,153,69,-0.4583333333333333],[112,153,70,-0.4583333333333333],[112,153,71,-0.4583333333333333],[112,153,72,-0.4583333333333333],[112,153,73,-0.4583333333333333],[112,153,74,-0.4583333333333333],[112,153,75,-0.4583333333333333],[112,153,76,-0.4583333333333333],[112,153,77,-0.4583333333333333],[112,153,78,-0.4583333333333333],[112,153,79,-0.4583333333333333],[112,154,64,-0.4583333333333333],[112,154,65,-0.4583333333333333],[112,154,66,-0.4583333333333333],[112,154,67,-0.4583333333333333],[112,154,68,-0.4583333333333333],[112,154,69,-0.4583333333333333],[112,154,70,-0.4583333333333333],[112,154,71,-0.4583333333333333],[112,154,72,-0.4583333333333333],[112,154,73,-0.4583333333333333],[112,154,74,-0.4583333333333333],[112,154,75,-0.4583333333333333],[112,154,76,-0.4583333333333333],[112,154,77,-0.4583333333333333],[112,154,78,-0.4583333333333333],[112,154,79,-0.4583333333333333],[112,155,64,-0.4583333333333333],[112,155,65,-0.4583333333333333],[112,155,66,-0.4583333333333333],[112,155,67,-0.4583333333333333],[112,155,68,-0.4583333333333333],[112,155,69,-0.4583333333333333],[112,155,70,-0.4583333333333333],[112,155,71,-0.4583333333333333],[112,155,72,-0.4583333333333333],[112,155,73,-0.4583333333333333],[112,155,74,-0.4583333333333333],[112,155,75,-0.4583333333333333],[112,155,76,-0.4583333333333333],[112,155,77,-0.4583333333333333],[112,155,78,-0.4583333333333333],[112,155,79,-0.4583333333333333],[112,156,64,-0.4583333333333333],[112,156,65,-0.4583333333333333],[112,156,66,-0.4583333333333333],[112,156,67,-0.4583333333333333],[112,156,68,-0.4583333333333333],[112,156,69,-0.4583333333333333],[112,156,70,-0.4583333333333333],[112,156,71,-0.4583333333333333],[112,156,72,-0.4583333333333333],[112,156,73,-0.4583333333333333],[112,156,74,-0.4583333333333333],[112,156,75,-0.4583333333333333],[112,156,76,-0.4583333333333333],[112,156,77,-0.4583333333333333],[112,156,78,-0.4583333333333333],[112,156,79,-0.4583333333333333],[112,157,64,-0.4583333333333333],[112,157,65,-0.4583333333333333],[112,157,66,-0.4583333333333333],[112,157,67,-0.4583333333333333],[112,157,68,-0.4583333333333333],[112,157,69,-0.4583333333333333],[112,157,70,-0.4583333333333333],[112,157,71,-0.4583333333333333],[112,157,72,-0.4583333333333333],[112,157,73,-0.4583333333333333],[112,157,74,-0.4583333333333333],[112,157,75,-0.4583333333333333],[112,157,76,-0.4583333333333333],[112,157,77,-0.4583333333333333],[112,157,78,-0.4583333333333333],[112,157,79,-0.4583333333333333],[112,158,64,-0.4583333333333333],[112,158,65,-0.4583333333333333],[112,158,66,-0.4583333333333333],[112,158,67,-0.4583333333333333],[112,158,68,-0.4583333333333333],[112,158,69,-0.4583333333333333],[112,158,70,-0.4583333333333333],[112,158,71,-0.4583333333333333],[112,158,72,-0.4583333333333333],[112,158,73,-0.4583333333333333],[112,158,74,-0.4583333333333333],[112,158,75,-0.4583333333333333],[112,158,76,-0.4583333333333333],[112,158,77,-0.4583333333333333],[112,158,78,-0.4583333333333333],[112,158,79,-0.4583333333333333],[112,159,64,-0.4583333333333333],[112,159,65,-0.4583333333333333],[112,159,66,-0.4583333333333333],[112,159,67,-0.4583333333333333],[112,159,68,-0.4583333333333333],[112,159,69,-0.4583333333333333],[112,159,70,-0.4583333333333333],[112,159,71,-0.4583333333333333],[112,159,72,-0.4583333333333333],[112,159,73,-0.4583333333333333],[112,159,74,-0.4583333333333333],[112,159,75,-0.4583333333333333],[112,159,76,-0.4583333333333333],[112,159,77,-0.4583333333333333],[112,159,78,-0.4583333333333333],[112,159,79,-0.4583333333333333],[112,160,64,-0.4583333333333333],[112,160,65,-0.4583333333333333],[112,160,66,-0.4583333333333333],[112,160,67,-0.4583333333333333],[112,160,68,-0.4583333333333333],[112,160,69,-0.4583333333333333],[112,160,70,-0.4583333333333333],[112,160,71,-0.4583333333333333],[112,160,72,-0.4583333333333333],[112,160,73,-0.4583333333333333],[112,160,74,-0.4583333333333333],[112,160,75,-0.4583333333333333],[112,160,76,-0.4583333333333333],[112,160,77,-0.4583333333333333],[112,160,78,-0.4583333333333333],[112,160,79,-0.4583333333333333],[112,161,64,-0.4583333333333333],[112,161,65,-0.4583333333333333],[112,161,66,-0.4583333333333333],[112,161,67,-0.4583333333333333],[112,161,68,-0.4583333333333333],[112,161,69,-0.4583333333333333],[112,161,70,-0.4583333333333333],[112,161,71,-0.4583333333333333],[112,161,72,-0.4583333333333333],[112,161,73,-0.4583333333333333],[112,161,74,-0.4583333333333333],[112,161,75,-0.4583333333333333],[112,161,76,-0.4583333333333333],[112,161,77,-0.4583333333333333],[112,161,78,-0.4583333333333333],[112,161,79,-0.4583333333333333],[112,162,64,-0.4583333333333333],[112,162,65,-0.4583333333333333],[112,162,66,-0.4583333333333333],[112,162,67,-0.4583333333333333],[112,162,68,-0.4583333333333333],[112,162,69,-0.4583333333333333],[112,162,70,-0.4583333333333333],[112,162,71,-0.4583333333333333],[112,162,72,-0.4583333333333333],[112,162,73,-0.4583333333333333],[112,162,74,-0.4583333333333333],[112,162,75,-0.4583333333333333],[112,162,76,-0.4583333333333333],[112,162,77,-0.4583333333333333],[112,162,78,-0.4583333333333333],[112,162,79,-0.4583333333333333],[112,163,64,-0.4583333333333333],[112,163,65,-0.4583333333333333],[112,163,66,-0.4583333333333333],[112,163,67,-0.4583333333333333],[112,163,68,-0.4583333333333333],[112,163,69,-0.4583333333333333],[112,163,70,-0.4583333333333333],[112,163,71,-0.4583333333333333],[112,163,72,-0.4583333333333333],[112,163,73,-0.4583333333333333],[112,163,74,-0.4583333333333333],[112,163,75,-0.4583333333333333],[112,163,76,-0.4583333333333333],[112,163,77,-0.4583333333333333],[112,163,78,-0.4583333333333333],[112,163,79,-0.4583333333333333],[112,164,64,-0.4583333333333333],[112,164,65,-0.4583333333333333],[112,164,66,-0.4583333333333333],[112,164,67,-0.4583333333333333],[112,164,68,-0.4583333333333333],[112,164,69,-0.4583333333333333],[112,164,70,-0.4583333333333333],[112,164,71,-0.4583333333333333],[112,164,72,-0.4583333333333333],[112,164,73,-0.4583333333333333],[112,164,74,-0.4583333333333333],[112,164,75,-0.4583333333333333],[112,164,76,-0.4583333333333333],[112,164,77,-0.4583333333333333],[112,164,78,-0.4583333333333333],[112,164,79,-0.4583333333333333],[112,165,64,-0.4583333333333333],[112,165,65,-0.4583333333333333],[112,165,66,-0.4583333333333333],[112,165,67,-0.4583333333333333],[112,165,68,-0.4583333333333333],[112,165,69,-0.4583333333333333],[112,165,70,-0.4583333333333333],[112,165,71,-0.4583333333333333],[112,165,72,-0.4583333333333333],[112,165,73,-0.4583333333333333],[112,165,74,-0.4583333333333333],[112,165,75,-0.4583333333333333],[112,165,76,-0.4583333333333333],[112,165,77,-0.4583333333333333],[112,165,78,-0.4583333333333333],[112,165,79,-0.4583333333333333],[112,166,64,-0.4583333333333333],[112,166,65,-0.4583333333333333],[112,166,66,-0.4583333333333333],[112,166,67,-0.4583333333333333],[112,166,68,-0.4583333333333333],[112,166,69,-0.4583333333333333],[112,166,70,-0.4583333333333333],[112,166,71,-0.4583333333333333],[112,166,72,-0.4583333333333333],[112,166,73,-0.4583333333333333],[112,166,74,-0.4583333333333333],[112,166,75,-0.4583333333333333],[112,166,76,-0.4583333333333333],[112,166,77,-0.4583333333333333],[112,166,78,-0.4583333333333333],[112,166,79,-0.4583333333333333],[112,167,64,-0.4583333333333333],[112,167,65,-0.4583333333333333],[112,167,66,-0.4583333333333333],[112,167,67,-0.4583333333333333],[112,167,68,-0.4583333333333333],[112,167,69,-0.4583333333333333],[112,167,70,-0.4583333333333333],[112,167,71,-0.4583333333333333],[112,167,72,-0.4583333333333333],[112,167,73,-0.4583333333333333],[112,167,74,-0.4583333333333333],[112,167,75,-0.4583333333333333],[112,167,76,-0.4583333333333333],[112,167,77,-0.4583333333333333],[112,167,78,-0.4583333333333333],[112,167,79,-0.4583333333333333],[112,168,64,-0.4583333333333333],[112,168,65,-0.4583333333333333],[112,168,66,-0.4583333333333333],[112,168,67,-0.4583333333333333],[112,168,68,-0.4583333333333333],[112,168,69,-0.4583333333333333],[112,168,70,-0.4583333333333333],[112,168,71,-0.4583333333333333],[112,168,72,-0.4583333333333333],[112,168,73,-0.4583333333333333],[112,168,74,-0.4583333333333333],[112,168,75,-0.4583333333333333],[112,168,76,-0.4583333333333333],[112,168,77,-0.4583333333333333],[112,168,78,-0.4583333333333333],[112,168,79,-0.4583333333333333],[112,169,64,-0.4583333333333333],[112,169,65,-0.4583333333333333],[112,169,66,-0.4583333333333333],[112,169,67,-0.4583333333333333],[112,169,68,-0.4583333333333333],[112,169,69,-0.4583333333333333],[112,169,70,-0.4583333333333333],[112,169,71,-0.4583333333333333],[112,169,72,-0.4583333333333333],[112,169,73,-0.4583333333333333],[112,169,74,-0.4583333333333333],[112,169,75,-0.4583333333333333],[112,169,76,-0.4583333333333333],[112,169,77,-0.4583333333333333],[112,169,78,-0.4583333333333333],[112,169,79,-0.4583333333333333],[112,170,64,-0.4583333333333333],[112,170,65,-0.4583333333333333],[112,170,66,-0.4583333333333333],[112,170,67,-0.4583333333333333],[112,170,68,-0.4583333333333333],[112,170,69,-0.4583333333333333],[112,170,70,-0.4583333333333333],[112,170,71,-0.4583333333333333],[112,170,72,-0.4583333333333333],[112,170,73,-0.4583333333333333],[112,170,74,-0.4583333333333333],[112,170,75,-0.4583333333333333],[112,170,76,-0.4583333333333333],[112,170,77,-0.4583333333333333],[112,170,78,-0.4583333333333333],[112,170,79,-0.4583333333333333],[112,171,64,-0.4583333333333333],[112,171,65,-0.4583333333333333],[112,171,66,-0.4583333333333333],[112,171,67,-0.4583333333333333],[112,171,68,-0.4583333333333333],[112,171,69,-0.4583333333333333],[112,171,70,-0.4583333333333333],[112,171,71,-0.4583333333333333],[112,171,72,-0.4583333333333333],[112,171,73,-0.4583333333333333],[112,171,74,-0.4583333333333333],[112,171,75,-0.4583333333333333],[112,171,76,-0.4583333333333333],[112,171,77,-0.4583333333333333],[112,171,78,-0.4583333333333333],[112,171,79,-0.4583333333333333],[112,172,64,-0.4583333333333333],[112,172,65,-0.4583333333333333],[112,172,66,-0.4583333333333333],[112,172,67,-0.4583333333333333],[112,172,68,-0.4583333333333333],[112,172,69,-0.4583333333333333],[112,172,70,-0.4583333333333333],[112,172,71,-0.4583333333333333],[112,172,72,-0.4583333333333333],[112,172,73,-0.4583333333333333],[112,172,74,-0.4583333333333333],[112,172,75,-0.4583333333333333],[112,172,76,-0.4583333333333333],[112,172,77,-0.4583333333333333],[112,172,78,-0.4583333333333333],[112,172,79,-0.4583333333333333],[112,173,64,-0.4583333333333333],[112,173,65,-0.4583333333333333],[112,173,66,-0.4583333333333333],[112,173,67,-0.4583333333333333],[112,173,68,-0.4583333333333333],[112,173,69,-0.4583333333333333],[112,173,70,-0.4583333333333333],[112,173,71,-0.4583333333333333],[112,173,72,-0.4583333333333333],[112,173,73,-0.4583333333333333],[112,173,74,-0.4583333333333333],[112,173,75,-0.4583333333333333],[112,173,76,-0.4583333333333333],[112,173,77,-0.4583333333333333],[112,173,78,-0.4583333333333333],[112,173,79,-0.4583333333333333],[112,174,64,-0.4583333333333333],[112,174,65,-0.4583333333333333],[112,174,66,-0.4583333333333333],[112,174,67,-0.4583333333333333],[112,174,68,-0.4583333333333333],[112,174,69,-0.4583333333333333],[112,174,70,-0.4583333333333333],[112,174,71,-0.4583333333333333],[112,174,72,-0.4583333333333333],[112,174,73,-0.4583333333333333],[112,174,74,-0.4583333333333333],[112,174,75,-0.4583333333333333],[112,174,76,-0.4583333333333333],[112,174,77,-0.4583333333333333],[112,174,78,-0.4583333333333333],[112,174,79,-0.4583333333333333],[112,175,64,-0.4583333333333333],[112,175,65,-0.4583333333333333],[112,175,66,-0.4583333333333333],[112,175,67,-0.4583333333333333],[112,175,68,-0.4583333333333333],[112,175,69,-0.4583333333333333],[112,175,70,-0.4583333333333333],[112,175,71,-0.4583333333333333],[112,175,72,-0.4583333333333333],[112,175,73,-0.4583333333333333],[112,175,74,-0.4583333333333333],[112,175,75,-0.4583333333333333],[112,175,76,-0.4583333333333333],[112,175,77,-0.4583333333333333],[112,175,78,-0.4583333333333333],[112,175,79,-0.4583333333333333],[112,176,64,-0.4583333333333333],[112,176,65,-0.4583333333333333],[112,176,66,-0.4583333333333333],[112,176,67,-0.4583333333333333],[112,176,68,-0.4583333333333333],[112,176,69,-0.4583333333333333],[112,176,70,-0.4583333333333333],[112,176,71,-0.4583333333333333],[112,176,72,-0.4583333333333333],[112,176,73,-0.4583333333333333],[112,176,74,-0.4583333333333333],[112,176,75,-0.4583333333333333],[112,176,76,-0.4583333333333333],[112,176,77,-0.4583333333333333],[112,176,78,-0.4583333333333333],[112,176,79,-0.4583333333333333],[112,177,64,-0.4583333333333333],[112,177,65,-0.4583333333333333],[112,177,66,-0.4583333333333333],[112,177,67,-0.4583333333333333],[112,177,68,-0.4583333333333333],[112,177,69,-0.4583333333333333],[112,177,70,-0.4583333333333333],[112,177,71,-0.4583333333333333],[112,177,72,-0.4583333333333333],[112,177,73,-0.4583333333333333],[112,177,74,-0.4583333333333333],[112,177,75,-0.4583333333333333],[112,177,76,-0.4583333333333333],[112,177,77,-0.4583333333333333],[112,177,78,-0.4583333333333333],[112,177,79,-0.4583333333333333],[112,178,64,-0.4583333333333333],[112,178,65,-0.4583333333333333],[112,178,66,-0.4583333333333333],[112,178,67,-0.4583333333333333],[112,178,68,-0.4583333333333333],[112,178,69,-0.4583333333333333],[112,178,70,-0.4583333333333333],[112,178,71,-0.4583333333333333],[112,178,72,-0.4583333333333333],[112,178,73,-0.4583333333333333],[112,178,74,-0.4583333333333333],[112,178,75,-0.4583333333333333],[112,178,76,-0.4583333333333333],[112,178,77,-0.4583333333333333],[112,178,78,-0.4583333333333333],[112,178,79,-0.4583333333333333],[112,179,64,-0.4583333333333333],[112,179,65,-0.4583333333333333],[112,179,66,-0.4583333333333333],[112,179,67,-0.4583333333333333],[112,179,68,-0.4583333333333333],[112,179,69,-0.4583333333333333],[112,179,70,-0.4583333333333333],[112,179,71,-0.4583333333333333],[112,179,72,-0.4583333333333333],[112,179,73,-0.4583333333333333],[112,179,74,-0.4583333333333333],[112,179,75,-0.4583333333333333],[112,179,76,-0.4583333333333333],[112,179,77,-0.4583333333333333],[112,179,78,-0.4583333333333333],[112,179,79,-0.4583333333333333],[112,180,64,-0.4583333333333333],[112,180,65,-0.4583333333333333],[112,180,66,-0.4583333333333333],[112,180,67,-0.4583333333333333],[112,180,68,-0.4583333333333333],[112,180,69,-0.4583333333333333],[112,180,70,-0.4583333333333333],[112,180,71,-0.4583333333333333],[112,180,72,-0.4583333333333333],[112,180,73,-0.4583333333333333],[112,180,74,-0.4583333333333333],[112,180,75,-0.4583333333333333],[112,180,76,-0.4583333333333333],[112,180,77,-0.4583333333333333],[112,180,78,-0.4583333333333333],[112,180,79,-0.4583333333333333],[112,181,64,-0.4583333333333333],[112,181,65,-0.4583333333333333],[112,181,66,-0.4583333333333333],[112,181,67,-0.4583333333333333],[112,181,68,-0.4583333333333333],[112,181,69,-0.4583333333333333],[112,181,70,-0.4583333333333333],[112,181,71,-0.4583333333333333],[112,181,72,-0.4583333333333333],[112,181,73,-0.4583333333333333],[112,181,74,-0.4583333333333333],[112,181,75,-0.4583333333333333],[112,181,76,-0.4583333333333333],[112,181,77,-0.4583333333333333],[112,181,78,-0.4583333333333333],[112,181,79,-0.4583333333333333],[112,182,64,-0.4583333333333333],[112,182,65,-0.4583333333333333],[112,182,66,-0.4583333333333333],[112,182,67,-0.4583333333333333],[112,182,68,-0.4583333333333333],[112,182,69,-0.4583333333333333],[112,182,70,-0.4583333333333333],[112,182,71,-0.4583333333333333],[112,182,72,-0.4583333333333333],[112,182,73,-0.4583333333333333],[112,182,74,-0.4583333333333333],[112,182,75,-0.4583333333333333],[112,182,76,-0.4583333333333333],[112,182,77,-0.4583333333333333],[112,182,78,-0.4583333333333333],[112,182,79,-0.4583333333333333],[112,183,64,-0.4583333333333333],[112,183,65,-0.4583333333333333],[112,183,66,-0.4583333333333333],[112,183,67,-0.4583333333333333],[112,183,68,-0.4583333333333333],[112,183,69,-0.4583333333333333],[112,183,70,-0.4583333333333333],[112,183,71,-0.4583333333333333],[112,183,72,-0.4583333333333333],[112,183,73,-0.4583333333333333],[112,183,74,-0.4583333333333333],[112,183,75,-0.4583333333333333],[112,183,76,-0.4583333333333333],[112,183,77,-0.4583333333333333],[112,183,78,-0.4583333333333333],[112,183,79,-0.4583333333333333],[112,184,64,-0.4583333333333333],[112,184,65,-0.4583333333333333],[112,184,66,-0.4583333333333333],[112,184,67,-0.4583333333333333],[112,184,68,-0.4583333333333333],[112,184,69,-0.4583333333333333],[112,184,70,-0.4583333333333333],[112,184,71,-0.4583333333333333],[112,184,72,-0.4583333333333333],[112,184,73,-0.4583333333333333],[112,184,74,-0.4583333333333333],[112,184,75,-0.4583333333333333],[112,184,76,-0.4583333333333333],[112,184,77,-0.4583333333333333],[112,184,78,-0.4583333333333333],[112,184,79,-0.4583333333333333],[112,185,64,-0.4583333333333333],[112,185,65,-0.4583333333333333],[112,185,66,-0.4583333333333333],[112,185,67,-0.4583333333333333],[112,185,68,-0.4583333333333333],[112,185,69,-0.4583333333333333],[112,185,70,-0.4583333333333333],[112,185,71,-0.4583333333333333],[112,185,72,-0.4583333333333333],[112,185,73,-0.4583333333333333],[112,185,74,-0.4583333333333333],[112,185,75,-0.4583333333333333],[112,185,76,-0.4583333333333333],[112,185,77,-0.4583333333333333],[112,185,78,-0.4583333333333333],[112,185,79,-0.4583333333333333],[112,186,64,-0.4583333333333333],[112,186,65,-0.4583333333333333],[112,186,66,-0.4583333333333333],[112,186,67,-0.4583333333333333],[112,186,68,-0.4583333333333333],[112,186,69,-0.4583333333333333],[112,186,70,-0.4583333333333333],[112,186,71,-0.4583333333333333],[112,186,72,-0.4583333333333333],[112,186,73,-0.4583333333333333],[112,186,74,-0.4583333333333333],[112,186,75,-0.4583333333333333],[112,186,76,-0.4583333333333333],[112,186,77,-0.4583333333333333],[112,186,78,-0.4583333333333333],[112,186,79,-0.4583333333333333],[112,187,64,-0.4583333333333333],[112,187,65,-0.4583333333333333],[112,187,66,-0.4583333333333333],[112,187,67,-0.4583333333333333],[112,187,68,-0.4583333333333333],[112,187,69,-0.4583333333333333],[112,187,70,-0.4583333333333333],[112,187,71,-0.4583333333333333],[112,187,72,-0.4583333333333333],[112,187,73,-0.4583333333333333],[112,187,74,-0.4583333333333333],[112,187,75,-0.4583333333333333],[112,187,76,-0.4583333333333333],[112,187,77,-0.4583333333333333],[112,187,78,-0.4583333333333333],[112,187,79,-0.4583333333333333],[112,188,64,-0.4583333333333333],[112,188,65,-0.4583333333333333],[112,188,66,-0.4583333333333333],[112,188,67,-0.4583333333333333],[112,188,68,-0.4583333333333333],[112,188,69,-0.4583333333333333],[112,188,70,-0.4583333333333333],[112,188,71,-0.4583333333333333],[112,188,72,-0.4583333333333333],[112,188,73,-0.4583333333333333],[112,188,74,-0.4583333333333333],[112,188,75,-0.4583333333333333],[112,188,76,-0.4583333333333333],[112,188,77,-0.4583333333333333],[112,188,78,-0.4583333333333333],[112,188,79,-0.4583333333333333],[112,189,64,-0.4583333333333333],[112,189,65,-0.4583333333333333],[112,189,66,-0.4583333333333333],[112,189,67,-0.4583333333333333],[112,189,68,-0.4583333333333333],[112,189,69,-0.4583333333333333],[112,189,70,-0.4583333333333333],[112,189,71,-0.4583333333333333],[112,189,72,-0.4583333333333333],[112,189,73,-0.4583333333333333],[112,189,74,-0.4583333333333333],[112,189,75,-0.4583333333333333],[112,189,76,-0.4583333333333333],[112,189,77,-0.4583333333333333],[112,189,78,-0.4583333333333333],[112,189,79,-0.4583333333333333],[112,190,64,-0.4583333333333333],[112,190,65,-0.4583333333333333],[112,190,66,-0.4583333333333333],[112,190,67,-0.4583333333333333],[112,190,68,-0.4583333333333333],[112,190,69,-0.4583333333333333],[112,190,70,-0.4583333333333333],[112,190,71,-0.4583333333333333],[112,190,72,-0.4583333333333333],[112,190,73,-0.4583333333333333],[112,190,74,-0.4583333333333333],[112,190,75,-0.4583333333333333],[112,190,76,-0.4583333333333333],[112,190,77,-0.4583333333333333],[112,190,78,-0.4583333333333333],[112,190,79,-0.4583333333333333],[112,191,64,-0.4583333333333333],[112,191,65,-0.4583333333333333],[112,191,66,-0.4583333333333333],[112,191,67,-0.4583333333333333],[112,191,68,-0.4583333333333333],[112,191,69,-0.4583333333333333],[112,191,70,-0.4583333333333333],[112,191,71,-0.4583333333333333],[112,191,72,-0.4583333333333333],[112,191,73,-0.4583333333333333],[112,191,74,-0.4583333333333333],[112,191,75,-0.4583333333333333],[112,191,76,-0.4583333333333333],[112,191,77,-0.4583333333333333],[112,191,78,-0.4583333333333333],[112,191,79,-0.4583333333333333],[112,192,64,-0.4583333333333333],[112,192,65,-0.4583333333333333],[112,192,66,-0.4583333333333333],[112,192,67,-0.4583333333333333],[112,192,68,-0.4583333333333333],[112,192,69,-0.4583333333333333],[112,192,70,-0.4583333333333333],[112,192,71,-0.4583333333333333],[112,192,72,-0.4583333333333333],[112,192,73,-0.4583333333333333],[112,192,74,-0.4583333333333333],[112,192,75,-0.4583333333333333],[112,192,76,-0.4583333333333333],[112,192,77,-0.4583333333333333],[112,192,78,-0.4583333333333333],[112,192,79,-0.4583333333333333],[112,193,64,-0.4583333333333333],[112,193,65,-0.4583333333333333],[112,193,66,-0.4583333333333333],[112,193,67,-0.4583333333333333],[112,193,68,-0.4583333333333333],[112,193,69,-0.4583333333333333],[112,193,70,-0.4583333333333333],[112,193,71,-0.4583333333333333],[112,193,72,-0.4583333333333333],[112,193,73,-0.4583333333333333],[112,193,74,-0.4583333333333333],[112,193,75,-0.4583333333333333],[112,193,76,-0.4583333333333333],[112,193,77,-0.4583333333333333],[112,193,78,-0.4583333333333333],[112,193,79,-0.4583333333333333],[112,194,64,-0.4583333333333333],[112,194,65,-0.4583333333333333],[112,194,66,-0.4583333333333333],[112,194,67,-0.4583333333333333],[112,194,68,-0.4583333333333333],[112,194,69,-0.4583333333333333],[112,194,70,-0.4583333333333333],[112,194,71,-0.4583333333333333],[112,194,72,-0.4583333333333333],[112,194,73,-0.4583333333333333],[112,194,74,-0.4583333333333333],[112,194,75,-0.4583333333333333],[112,194,76,-0.4583333333333333],[112,194,77,-0.4583333333333333],[112,194,78,-0.4583333333333333],[112,194,79,-0.4583333333333333],[112,195,64,-0.4583333333333333],[112,195,65,-0.4583333333333333],[112,195,66,-0.4583333333333333],[112,195,67,-0.4583333333333333],[112,195,68,-0.4583333333333333],[112,195,69,-0.4583333333333333],[112,195,70,-0.4583333333333333],[112,195,71,-0.4583333333333333],[112,195,72,-0.4583333333333333],[112,195,73,-0.4583333333333333],[112,195,74,-0.4583333333333333],[112,195,75,-0.4583333333333333],[112,195,76,-0.4583333333333333],[112,195,77,-0.4583333333333333],[112,195,78,-0.4583333333333333],[112,195,79,-0.4583333333333333],[112,196,64,-0.4583333333333333],[112,196,65,-0.4583333333333333],[112,196,66,-0.4583333333333333],[112,196,67,-0.4583333333333333],[112,196,68,-0.4583333333333333],[112,196,69,-0.4583333333333333],[112,196,70,-0.4583333333333333],[112,196,71,-0.4583333333333333],[112,196,72,-0.4583333333333333],[112,196,73,-0.4583333333333333],[112,196,74,-0.4583333333333333],[112,196,75,-0.4583333333333333],[112,196,76,-0.4583333333333333],[112,196,77,-0.4583333333333333],[112,196,78,-0.4583333333333333],[112,196,79,-0.4583333333333333],[112,197,64,-0.4583333333333333],[112,197,65,-0.4583333333333333],[112,197,66,-0.4583333333333333],[112,197,67,-0.4583333333333333],[112,197,68,-0.4583333333333333],[112,197,69,-0.4583333333333333],[112,197,70,-0.4583333333333333],[112,197,71,-0.4583333333333333],[112,197,72,-0.4583333333333333],[112,197,73,-0.4583333333333333],[112,197,74,-0.4583333333333333],[112,197,75,-0.4583333333333333],[112,197,76,-0.4583333333333333],[112,197,77,-0.4583333333333333],[112,197,78,-0.4583333333333333],[112,197,79,-0.4583333333333333],[112,198,64,-0.4583333333333333],[112,198,65,-0.4583333333333333],[112,198,66,-0.4583333333333333],[112,198,67,-0.4583333333333333],[112,198,68,-0.4583333333333333],[112,198,69,-0.4583333333333333],[112,198,70,-0.4583333333333333],[112,198,71,-0.4583333333333333],[112,198,72,-0.4583333333333333],[112,198,73,-0.4583333333333333],[112,198,74,-0.4583333333333333],[112,198,75,-0.4583333333333333],[112,198,76,-0.4583333333333333],[112,198,77,-0.4583333333333333],[112,198,78,-0.4583333333333333],[112,198,79,-0.4583333333333333],[112,199,64,-0.4583333333333333],[112,199,65,-0.4583333333333333],[112,199,66,-0.4583333333333333],[112,199,67,-0.4583333333333333],[112,199,68,-0.4583333333333333],[112,199,69,-0.4583333333333333],[112,199,70,-0.4583333333333333],[112,199,71,-0.4583333333333333],[112,199,72,-0.4583333333333333],[112,199,73,-0.4583333333333333],[112,199,74,-0.4583333333333333],[112,199,75,-0.4583333333333333],[112,199,76,-0.4583333333333333],[112,199,77,-0.4583333333333333],[112,199,78,-0.4583333333333333],[112,199,79,-0.4583333333333333],[112,200,64,-0.4583333333333333],[112,200,65,-0.4583333333333333],[112,200,66,-0.4583333333333333],[112,200,67,-0.4583333333333333],[112,200,68,-0.4583333333333333],[112,200,69,-0.4583333333333333],[112,200,70,-0.4583333333333333],[112,200,71,-0.4583333333333333],[112,200,72,-0.4583333333333333],[112,200,73,-0.4583333333333333],[112,200,74,-0.4583333333333333],[112,200,75,-0.4583333333333333],[112,200,76,-0.4583333333333333],[112,200,77,-0.4583333333333333],[112,200,78,-0.4583333333333333],[112,200,79,-0.4583333333333333],[112,201,64,-0.4583333333333333],[112,201,65,-0.4583333333333333],[112,201,66,-0.4583333333333333],[112,201,67,-0.4583333333333333],[112,201,68,-0.4583333333333333],[112,201,69,-0.4583333333333333],[112,201,70,-0.4583333333333333],[112,201,71,-0.4583333333333333],[112,201,72,-0.4583333333333333],[112,201,73,-0.4583333333333333],[112,201,74,-0.4583333333333333],[112,201,75,-0.4583333333333333],[112,201,76,-0.4583333333333333],[112,201,77,-0.4583333333333333],[112,201,78,-0.4583333333333333],[112,201,79,-0.4583333333333333],[112,202,64,-0.4583333333333333],[112,202,65,-0.4583333333333333],[112,202,66,-0.4583333333333333],[112,202,67,-0.4583333333333333],[112,202,68,-0.4583333333333333],[112,202,69,-0.4583333333333333],[112,202,70,-0.4583333333333333],[112,202,71,-0.4583333333333333],[112,202,72,-0.4583333333333333],[112,202,73,-0.4583333333333333],[112,202,74,-0.4583333333333333],[112,202,75,-0.4583333333333333],[112,202,76,-0.4583333333333333],[112,202,77,-0.4583333333333333],[112,202,78,-0.4583333333333333],[112,202,79,-0.4583333333333333],[112,203,64,-0.4583333333333333],[112,203,65,-0.4583333333333333],[112,203,66,-0.4583333333333333],[112,203,67,-0.4583333333333333],[112,203,68,-0.4583333333333333],[112,203,69,-0.4583333333333333],[112,203,70,-0.4583333333333333],[112,203,71,-0.4583333333333333],[112,203,72,-0.4583333333333333],[112,203,73,-0.4583333333333333],[112,203,74,-0.4583333333333333],[112,203,75,-0.4583333333333333],[112,203,76,-0.4583333333333333],[112,203,77,-0.4583333333333333],[112,203,78,-0.4583333333333333],[112,203,79,-0.4583333333333333],[112,204,64,-0.4583333333333333],[112,204,65,-0.4583333333333333],[112,204,66,-0.4583333333333333],[112,204,67,-0.4583333333333333],[112,204,68,-0.4583333333333333],[112,204,69,-0.4583333333333333],[112,204,70,-0.4583333333333333],[112,204,71,-0.4583333333333333],[112,204,72,-0.4583333333333333],[112,204,73,-0.4583333333333333],[112,204,74,-0.4583333333333333],[112,204,75,-0.4583333333333333],[112,204,76,-0.4583333333333333],[112,204,77,-0.4583333333333333],[112,204,78,-0.4583333333333333],[112,204,79,-0.4583333333333333],[112,205,64,-0.4583333333333333],[112,205,65,-0.4583333333333333],[112,205,66,-0.4583333333333333],[112,205,67,-0.4583333333333333],[112,205,68,-0.4583333333333333],[112,205,69,-0.4583333333333333],[112,205,70,-0.4583333333333333],[112,205,71,-0.4583333333333333],[112,205,72,-0.4583333333333333],[112,205,73,-0.4583333333333333],[112,205,74,-0.4583333333333333],[112,205,75,-0.4583333333333333],[112,205,76,-0.4583333333333333],[112,205,77,-0.4583333333333333],[112,205,78,-0.4583333333333333],[112,205,79,-0.4583333333333333],[112,206,64,-0.4583333333333333],[112,206,65,-0.4583333333333333],[112,206,66,-0.4583333333333333],[112,206,67,-0.4583333333333333],[112,206,68,-0.4583333333333333],[112,206,69,-0.4583333333333333],[112,206,70,-0.4583333333333333],[112,206,71,-0.4583333333333333],[112,206,72,-0.4583333333333333],[112,206,73,-0.4583333333333333],[112,206,74,-0.4583333333333333],[112,206,75,-0.4583333333333333],[112,206,76,-0.4583333333333333],[112,206,77,-0.4583333333333333],[112,206,78,-0.4583333333333333],[112,206,79,-0.4583333333333333],[112,207,64,-0.4583333333333333],[112,207,65,-0.4583333333333333],[112,207,66,-0.4583333333333333],[112,207,67,-0.4583333333333333],[112,207,68,-0.4583333333333333],[112,207,69,-0.4583333333333333],[112,207,70,-0.4583333333333333],[112,207,71,-0.4583333333333333],[112,207,72,-0.4583333333333333],[112,207,73,-0.4583333333333333],[112,207,74,-0.4583333333333333],[112,207,75,-0.4583333333333333],[112,207,76,-0.4583333333333333],[112,207,77,-0.4583333333333333],[112,207,78,-0.4583333333333333],[112,207,79,-0.4583333333333333],[112,208,64,-0.4583333333333333],[112,208,65,-0.4583333333333333],[112,208,66,-0.4583333333333333],[112,208,67,-0.4583333333333333],[112,208,68,-0.4583333333333333],[112,208,69,-0.4583333333333333],[112,208,70,-0.4583333333333333],[112,208,71,-0.4583333333333333],[112,208,72,-0.4583333333333333],[112,208,73,-0.4583333333333333],[112,208,74,-0.4583333333333333],[112,208,75,-0.4583333333333333],[112,208,76,-0.4583333333333333],[112,208,77,-0.4583333333333333],[112,208,78,-0.4583333333333333],[112,208,79,-0.4583333333333333],[112,209,64,-0.4583333333333333],[112,209,65,-0.4583333333333333],[112,209,66,-0.4583333333333333],[112,209,67,-0.4583333333333333],[112,209,68,-0.4583333333333333],[112,209,69,-0.4583333333333333],[112,209,70,-0.4583333333333333],[112,209,71,-0.4583333333333333],[112,209,72,-0.4583333333333333],[112,209,73,-0.4583333333333333],[112,209,74,-0.4583333333333333],[112,209,75,-0.4583333333333333],[112,209,76,-0.4583333333333333],[112,209,77,-0.4583333333333333],[112,209,78,-0.4583333333333333],[112,209,79,-0.4583333333333333],[112,210,64,-0.4583333333333333],[112,210,65,-0.4583333333333333],[112,210,66,-0.4583333333333333],[112,210,67,-0.4583333333333333],[112,210,68,-0.4583333333333333],[112,210,69,-0.4583333333333333],[112,210,70,-0.4583333333333333],[112,210,71,-0.4583333333333333],[112,210,72,-0.4583333333333333],[112,210,73,-0.4583333333333333],[112,210,74,-0.4583333333333333],[112,210,75,-0.4583333333333333],[112,210,76,-0.4583333333333333],[112,210,77,-0.4583333333333333],[112,210,78,-0.4583333333333333],[112,210,79,-0.4583333333333333],[112,211,64,-0.4583333333333333],[112,211,65,-0.4583333333333333],[112,211,66,-0.4583333333333333],[112,211,67,-0.4583333333333333],[112,211,68,-0.4583333333333333],[112,211,69,-0.4583333333333333],[112,211,70,-0.4583333333333333],[112,211,71,-0.4583333333333333],[112,211,72,-0.4583333333333333],[112,211,73,-0.4583333333333333],[112,211,74,-0.4583333333333333],[112,211,75,-0.4583333333333333],[112,211,76,-0.4583333333333333],[112,211,77,-0.4583333333333333],[112,211,78,-0.4583333333333333],[112,211,79,-0.4583333333333333],[112,212,64,-0.4583333333333333],[112,212,65,-0.4583333333333333],[112,212,66,-0.4583333333333333],[112,212,67,-0.4583333333333333],[112,212,68,-0.4583333333333333],[112,212,69,-0.4583333333333333],[112,212,70,-0.4583333333333333],[112,212,71,-0.4583333333333333],[112,212,72,-0.4583333333333333],[112,212,73,-0.4583333333333333],[112,212,74,-0.4583333333333333],[112,212,75,-0.4583333333333333],[112,212,76,-0.4583333333333333],[112,212,77,-0.4583333333333333],[112,212,78,-0.4583333333333333],[112,212,79,-0.4583333333333333],[112,213,64,-0.4583333333333333],[112,213,65,-0.4583333333333333],[112,213,66,-0.4583333333333333],[112,213,67,-0.4583333333333333],[112,213,68,-0.4583333333333333],[112,213,69,-0.4583333333333333],[112,213,70,-0.4583333333333333],[112,213,71,-0.4583333333333333],[112,213,72,-0.4583333333333333],[112,213,73,-0.4583333333333333],[112,213,74,-0.4583333333333333],[112,213,75,-0.4583333333333333],[112,213,76,-0.4583333333333333],[112,213,77,-0.4583333333333333],[112,213,78,-0.4583333333333333],[112,213,79,-0.4583333333333333],[112,214,64,-0.4583333333333333],[112,214,65,-0.4583333333333333],[112,214,66,-0.4583333333333333],[112,214,67,-0.4583333333333333],[112,214,68,-0.4583333333333333],[112,214,69,-0.4583333333333333],[112,214,70,-0.4583333333333333],[112,214,71,-0.4583333333333333],[112,214,72,-0.4583333333333333],[112,214,73,-0.4583333333333333],[112,214,74,-0.4583333333333333],[112,214,75,-0.4583333333333333],[112,214,76,-0.4583333333333333],[112,214,77,-0.4583333333333333],[112,214,78,-0.4583333333333333],[112,214,79,-0.4583333333333333],[112,215,64,-0.4583333333333333],[112,215,65,-0.4583333333333333],[112,215,66,-0.4583333333333333],[112,215,67,-0.4583333333333333],[112,215,68,-0.4583333333333333],[112,215,69,-0.4583333333333333],[112,215,70,-0.4583333333333333],[112,215,71,-0.4583333333333333],[112,215,72,-0.4583333333333333],[112,215,73,-0.4583333333333333],[112,215,74,-0.4583333333333333],[112,215,75,-0.4583333333333333],[112,215,76,-0.4583333333333333],[112,215,77,-0.4583333333333333],[112,215,78,-0.4583333333333333],[112,215,79,-0.4583333333333333],[112,216,64,-0.4583333333333333],[112,216,65,-0.4583333333333333],[112,216,66,-0.4583333333333333],[112,216,67,-0.4583333333333333],[112,216,68,-0.4583333333333333],[112,216,69,-0.4583333333333333],[112,216,70,-0.4583333333333333],[112,216,71,-0.4583333333333333],[112,216,72,-0.4583333333333333],[112,216,73,-0.4583333333333333],[112,216,74,-0.4583333333333333],[112,216,75,-0.4583333333333333],[112,216,76,-0.4583333333333333],[112,216,77,-0.4583333333333333],[112,216,78,-0.4583333333333333],[112,216,79,-0.4583333333333333],[112,217,64,-0.4583333333333333],[112,217,65,-0.4583333333333333],[112,217,66,-0.4583333333333333],[112,217,67,-0.4583333333333333],[112,217,68,-0.4583333333333333],[112,217,69,-0.4583333333333333],[112,217,70,-0.4583333333333333],[112,217,71,-0.4583333333333333],[112,217,72,-0.4583333333333333],[112,217,73,-0.4583333333333333],[112,217,74,-0.4583333333333333],[112,217,75,-0.4583333333333333],[112,217,76,-0.4583333333333333],[112,217,77,-0.4583333333333333],[112,217,78,-0.4583333333333333],[112,217,79,-0.4583333333333333],[112,218,64,-0.4583333333333333],[112,218,65,-0.4583333333333333],[112,218,66,-0.4583333333333333],[112,218,67,-0.4583333333333333],[112,218,68,-0.4583333333333333],[112,218,69,-0.4583333333333333],[112,218,70,-0.4583333333333333],[112,218,71,-0.4583333333333333],[112,218,72,-0.4583333333333333],[112,218,73,-0.4583333333333333],[112,218,74,-0.4583333333333333],[112,218,75,-0.4583333333333333],[112,218,76,-0.4583333333333333],[112,218,77,-0.4583333333333333],[112,218,78,-0.4583333333333333],[112,218,79,-0.4583333333333333],[112,219,64,-0.4583333333333333],[112,219,65,-0.4583333333333333],[112,219,66,-0.4583333333333333],[112,219,67,-0.4583333333333333],[112,219,68,-0.4583333333333333],[112,219,69,-0.4583333333333333],[112,219,70,-0.4583333333333333],[112,219,71,-0.4583333333333333],[112,219,72,-0.4583333333333333],[112,219,73,-0.4583333333333333],[112,219,74,-0.4583333333333333],[112,219,75,-0.4583333333333333],[112,219,76,-0.4583333333333333],[112,219,77,-0.4583333333333333],[112,219,78,-0.4583333333333333],[112,219,79,-0.4583333333333333],[112,220,64,-0.4583333333333333],[112,220,65,-0.4583333333333333],[112,220,66,-0.4583333333333333],[112,220,67,-0.4583333333333333],[112,220,68,-0.4583333333333333],[112,220,69,-0.4583333333333333],[112,220,70,-0.4583333333333333],[112,220,71,-0.4583333333333333],[112,220,72,-0.4583333333333333],[112,220,73,-0.4583333333333333],[112,220,74,-0.4583333333333333],[112,220,75,-0.4583333333333333],[112,220,76,-0.4583333333333333],[112,220,77,-0.4583333333333333],[112,220,78,-0.4583333333333333],[112,220,79,-0.4583333333333333],[112,221,64,-0.4583333333333333],[112,221,65,-0.4583333333333333],[112,221,66,-0.4583333333333333],[112,221,67,-0.4583333333333333],[112,221,68,-0.4583333333333333],[112,221,69,-0.4583333333333333],[112,221,70,-0.4583333333333333],[112,221,71,-0.4583333333333333],[112,221,72,-0.4583333333333333],[112,221,73,-0.4583333333333333],[112,221,74,-0.4583333333333333],[112,221,75,-0.4583333333333333],[112,221,76,-0.4583333333333333],[112,221,77,-0.4583333333333333],[112,221,78,-0.4583333333333333],[112,221,79,-0.4583333333333333],[112,222,64,-0.4583333333333333],[112,222,65,-0.4583333333333333],[112,222,66,-0.4583333333333333],[112,222,67,-0.4583333333333333],[112,222,68,-0.4583333333333333],[112,222,69,-0.4583333333333333],[112,222,70,-0.4583333333333333],[112,222,71,-0.4583333333333333],[112,222,72,-0.4583333333333333],[112,222,73,-0.4583333333333333],[112,222,74,-0.4583333333333333],[112,222,75,-0.4583333333333333],[112,222,76,-0.4583333333333333],[112,222,77,-0.4583333333333333],[112,222,78,-0.4583333333333333],[112,222,79,-0.4583333333333333],[112,223,64,-0.4583333333333333],[112,223,65,-0.4583333333333333],[112,223,66,-0.4583333333333333],[112,223,67,-0.4583333333333333],[112,223,68,-0.4583333333333333],[112,223,69,-0.4583333333333333],[112,223,70,-0.4583333333333333],[112,223,71,-0.4583333333333333],[112,223,72,-0.4583333333333333],[112,223,73,-0.4583333333333333],[112,223,74,-0.4583333333333333],[112,223,75,-0.4583333333333333],[112,223,76,-0.4583333333333333],[112,223,77,-0.4583333333333333],[112,223,78,-0.4583333333333333],[112,223,79,-0.4583333333333333],[112,224,64,-0.4583333333333333],[112,224,65,-0.4583333333333333],[112,224,66,-0.4583333333333333],[112,224,67,-0.4583333333333333],[112,224,68,-0.4583333333333333],[112,224,69,-0.4583333333333333],[112,224,70,-0.4583333333333333],[112,224,71,-0.4583333333333333],[112,224,72,-0.4583333333333333],[112,224,73,-0.4583333333333333],[112,224,74,-0.4583333333333333],[112,224,75,-0.4583333333333333],[112,224,76,-0.4583333333333333],[112,224,77,-0.4583333333333333],[112,224,78,-0.4583333333333333],[112,224,79,-0.4583333333333333],[112,225,64,-0.4583333333333333],[112,225,65,-0.4583333333333333],[112,225,66,-0.4583333333333333],[112,225,67,-0.4583333333333333],[112,225,68,-0.4583333333333333],[112,225,69,-0.4583333333333333],[112,225,70,-0.4583333333333333],[112,225,71,-0.4583333333333333],[112,225,72,-0.4583333333333333],[112,225,73,-0.4583333333333333],[112,225,74,-0.4583333333333333],[112,225,75,-0.4583333333333333],[112,225,76,-0.4583333333333333],[112,225,77,-0.4583333333333333],[112,225,78,-0.4583333333333333],[112,225,79,-0.4583333333333333],[112,226,64,-0.4583333333333333],[112,226,65,-0.4583333333333333],[112,226,66,-0.4583333333333333],[112,226,67,-0.4583333333333333],[112,226,68,-0.4583333333333333],[112,226,69,-0.4583333333333333],[112,226,70,-0.4583333333333333],[112,226,71,-0.4583333333333333],[112,226,72,-0.4583333333333333],[112,226,73,-0.4583333333333333],[112,226,74,-0.4583333333333333],[112,226,75,-0.4583333333333333],[112,226,76,-0.4583333333333333],[112,226,77,-0.4583333333333333],[112,226,78,-0.4583333333333333],[112,226,79,-0.4583333333333333],[112,227,64,-0.4583333333333333],[112,227,65,-0.4583333333333333],[112,227,66,-0.4583333333333333],[112,227,67,-0.4583333333333333],[112,227,68,-0.4583333333333333],[112,227,69,-0.4583333333333333],[112,227,70,-0.4583333333333333],[112,227,71,-0.4583333333333333],[112,227,72,-0.4583333333333333],[112,227,73,-0.4583333333333333],[112,227,74,-0.4583333333333333],[112,227,75,-0.4583333333333333],[112,227,76,-0.4583333333333333],[112,227,77,-0.4583333333333333],[112,227,78,-0.4583333333333333],[112,227,79,-0.4583333333333333],[112,228,64,-0.4583333333333333],[112,228,65,-0.4583333333333333],[112,228,66,-0.4583333333333333],[112,228,67,-0.4583333333333333],[112,228,68,-0.4583333333333333],[112,228,69,-0.4583333333333333],[112,228,70,-0.4583333333333333],[112,228,71,-0.4583333333333333],[112,228,72,-0.4583333333333333],[112,228,73,-0.4583333333333333],[112,228,74,-0.4583333333333333],[112,228,75,-0.4583333333333333],[112,228,76,-0.4583333333333333],[112,228,77,-0.4583333333333333],[112,228,78,-0.4583333333333333],[112,228,79,-0.4583333333333333],[112,229,64,-0.4583333333333333],[112,229,65,-0.4583333333333333],[112,229,66,-0.4583333333333333],[112,229,67,-0.4583333333333333],[112,229,68,-0.4583333333333333],[112,229,69,-0.4583333333333333],[112,229,70,-0.4583333333333333],[112,229,71,-0.4583333333333333],[112,229,72,-0.4583333333333333],[112,229,73,-0.4583333333333333],[112,229,74,-0.4583333333333333],[112,229,75,-0.4583333333333333],[112,229,76,-0.4583333333333333],[112,229,77,-0.4583333333333333],[112,229,78,-0.4583333333333333],[112,229,79,-0.4583333333333333],[112,230,64,-0.4583333333333333],[112,230,65,-0.4583333333333333],[112,230,66,-0.4583333333333333],[112,230,67,-0.4583333333333333],[112,230,68,-0.4583333333333333],[112,230,69,-0.4583333333333333],[112,230,70,-0.4583333333333333],[112,230,71,-0.4583333333333333],[112,230,72,-0.4583333333333333],[112,230,73,-0.4583333333333333],[112,230,74,-0.4583333333333333],[112,230,75,-0.4583333333333333],[112,230,76,-0.4583333333333333],[112,230,77,-0.4583333333333333],[112,230,78,-0.4583333333333333],[112,230,79,-0.4583333333333333],[112,231,64,-0.4583333333333333],[112,231,65,-0.4583333333333333],[112,231,66,-0.4583333333333333],[112,231,67,-0.4583333333333333],[112,231,68,-0.4583333333333333],[112,231,69,-0.4583333333333333],[112,231,70,-0.4583333333333333],[112,231,71,-0.4583333333333333],[112,231,72,-0.4583333333333333],[112,231,73,-0.4583333333333333],[112,231,74,-0.4583333333333333],[112,231,75,-0.4583333333333333],[112,231,76,-0.4583333333333333],[112,231,77,-0.4583333333333333],[112,231,78,-0.4583333333333333],[112,231,79,-0.4583333333333333],[112,232,64,-0.4583333333333333],[112,232,65,-0.4583333333333333],[112,232,66,-0.4583333333333333],[112,232,67,-0.4583333333333333],[112,232,68,-0.4583333333333333],[112,232,69,-0.4583333333333333],[112,232,70,-0.4583333333333333],[112,232,71,-0.4583333333333333],[112,232,72,-0.4583333333333333],[112,232,73,-0.4583333333333333],[112,232,74,-0.4583333333333333],[112,232,75,-0.4583333333333333],[112,232,76,-0.4583333333333333],[112,232,77,-0.4583333333333333],[112,232,78,-0.4583333333333333],[112,232,79,-0.4583333333333333],[112,233,64,-0.4583333333333333],[112,233,65,-0.4583333333333333],[112,233,66,-0.4583333333333333],[112,233,67,-0.4583333333333333],[112,233,68,-0.4583333333333333],[112,233,69,-0.4583333333333333],[112,233,70,-0.4583333333333333],[112,233,71,-0.4583333333333333],[112,233,72,-0.4583333333333333],[112,233,73,-0.4583333333333333],[112,233,74,-0.4583333333333333],[112,233,75,-0.4583333333333333],[112,233,76,-0.4583333333333333],[112,233,77,-0.4583333333333333],[112,233,78,-0.4583333333333333],[112,233,79,-0.4583333333333333],[112,234,64,-0.4583333333333333],[112,234,65,-0.4583333333333333],[112,234,66,-0.4583333333333333],[112,234,67,-0.4583333333333333],[112,234,68,-0.4583333333333333],[112,234,69,-0.4583333333333333],[112,234,70,-0.4583333333333333],[112,234,71,-0.4583333333333333],[112,234,72,-0.4583333333333333],[112,234,73,-0.4583333333333333],[112,234,74,-0.4583333333333333],[112,234,75,-0.4583333333333333],[112,234,76,-0.4583333333333333],[112,234,77,-0.4583333333333333],[112,234,78,-0.4583333333333333],[112,234,79,-0.4583333333333333],[112,235,64,-0.4583333333333333],[112,235,65,-0.4583333333333333],[112,235,66,-0.4583333333333333],[112,235,67,-0.4583333333333333],[112,235,68,-0.4583333333333333],[112,235,69,-0.4583333333333333],[112,235,70,-0.4583333333333333],[112,235,71,-0.4583333333333333],[112,235,72,-0.4583333333333333],[112,235,73,-0.4583333333333333],[112,235,74,-0.4583333333333333],[112,235,75,-0.4583333333333333],[112,235,76,-0.4583333333333333],[112,235,77,-0.4583333333333333],[112,235,78,-0.4583333333333333],[112,235,79,-0.4583333333333333],[112,236,64,-0.4583333333333333],[112,236,65,-0.4583333333333333],[112,236,66,-0.4583333333333333],[112,236,67,-0.4583333333333333],[112,236,68,-0.4583333333333333],[112,236,69,-0.4583333333333333],[112,236,70,-0.4583333333333333],[112,236,71,-0.4583333333333333],[112,236,72,-0.4583333333333333],[112,236,73,-0.4583333333333333],[112,236,74,-0.4583333333333333],[112,236,75,-0.4583333333333333],[112,236,76,-0.4583333333333333],[112,236,77,-0.4583333333333333],[112,236,78,-0.4583333333333333],[112,236,79,-0.4583333333333333],[112,237,64,-0.4583333333333333],[112,237,65,-0.4583333333333333],[112,237,66,-0.4583333333333333],[112,237,67,-0.4583333333333333],[112,237,68,-0.4583333333333333],[112,237,69,-0.4583333333333333],[112,237,70,-0.4583333333333333],[112,237,71,-0.4583333333333333],[112,237,72,-0.4583333333333333],[112,237,73,-0.4583333333333333],[112,237,74,-0.4583333333333333],[112,237,75,-0.4583333333333333],[112,237,76,-0.4583333333333333],[112,237,77,-0.4583333333333333],[112,237,78,-0.4583333333333333],[112,237,79,-0.4583333333333333],[112,238,64,-0.4583333333333333],[112,238,65,-0.4583333333333333],[112,238,66,-0.4583333333333333],[112,238,67,-0.4583333333333333],[112,238,68,-0.4583333333333333],[112,238,69,-0.4583333333333333],[112,238,70,-0.4583333333333333],[112,238,71,-0.4583333333333333],[112,238,72,-0.4583333333333333],[112,238,73,-0.4583333333333333],[112,238,74,-0.4583333333333333],[112,238,75,-0.4583333333333333],[112,238,76,-0.4583333333333333],[112,238,77,-0.4583333333333333],[112,238,78,-0.4583333333333333],[112,238,79,-0.4583333333333333],[112,239,64,-0.4583333333333333],[112,239,65,-0.4583333333333333],[112,239,66,-0.4583333333333333],[112,239,67,-0.4583333333333333],[112,239,68,-0.4583333333333333],[112,239,69,-0.4583333333333333],[112,239,70,-0.4583333333333333],[112,239,71,-0.4583333333333333],[112,239,72,-0.4583333333333333],[112,239,73,-0.4583333333333333],[112,239,74,-0.4583333333333333],[112,239,75,-0.4583333333333333],[112,239,76,-0.4583333333333333],[112,239,77,-0.4583333333333333],[112,239,78,-0.4583333333333333],[112,239,79,-0.4583333333333333],[112,240,64,-0.4583333333333333],[112,240,65,-0.4583333333333333],[112,240,66,-0.4583333333333333],[112,240,67,-0.4583333333333333],[112,240,68,-0.4583333333333333],[112,240,69,-0.4583333333333333],[112,240,70,-0.4583333333333333],[112,240,71,-0.4583333333333333],[112,240,72,-0.4583333333333333],[112,240,73,-0.4583333333333333],[112,240,74,-0.4583333333333333],[112,240,75,-0.4583333333333333],[112,240,76,-0.4583333333333333],[112,240,77,-0.4583333333333333],[112,240,78,-0.4583333333333333],[112,240,79,-0.4583333333333333],[112,241,64,-0.4583333333333333],[112,241,65,-0.4583333333333333],[112,241,66,-0.4583333333333333],[112,241,67,-0.4583333333333333],[112,241,68,-0.4583333333333333],[112,241,69,-0.4583333333333333],[112,241,70,-0.4583333333333333],[112,241,71,-0.4583333333333333],[112,241,72,-0.4583333333333333],[112,241,73,-0.4583333333333333],[112,241,74,-0.4583333333333333],[112,241,75,-0.4583333333333333],[112,241,76,-0.4583333333333333],[112,241,77,-0.4583333333333333],[112,241,78,-0.4583333333333333],[112,241,79,-0.4583333333333333],[112,242,64,-0.4583333333333333],[112,242,65,-0.4583333333333333],[112,242,66,-0.4583333333333333],[112,242,67,-0.4583333333333333],[112,242,68,-0.4583333333333333],[112,242,69,-0.4583333333333333],[112,242,70,-0.4583333333333333],[112,242,71,-0.4583333333333333],[112,242,72,-0.4583333333333333],[112,242,73,-0.4583333333333333],[112,242,74,-0.4583333333333333],[112,242,75,-0.4583333333333333],[112,242,76,-0.4583333333333333],[112,242,77,-0.4583333333333333],[112,242,78,-0.4583333333333333],[112,242,79,-0.4583333333333333],[112,243,64,-0.4583333333333333],[112,243,65,-0.4583333333333333],[112,243,66,-0.4583333333333333],[112,243,67,-0.4583333333333333],[112,243,68,-0.4583333333333333],[112,243,69,-0.4583333333333333],[112,243,70,-0.4583333333333333],[112,243,71,-0.4583333333333333],[112,243,72,-0.4583333333333333],[112,243,73,-0.4583333333333333],[112,243,74,-0.4583333333333333],[112,243,75,-0.4583333333333333],[112,243,76,-0.4583333333333333],[112,243,77,-0.4583333333333333],[112,243,78,-0.4583333333333333],[112,243,79,-0.4583333333333333],[112,244,64,-0.4583333333333333],[112,244,65,-0.4583333333333333],[112,244,66,-0.4583333333333333],[112,244,67,-0.4583333333333333],[112,244,68,-0.4583333333333333],[112,244,69,-0.4583333333333333],[112,244,70,-0.4583333333333333],[112,244,71,-0.4583333333333333],[112,244,72,-0.4583333333333333],[112,244,73,-0.4583333333333333],[112,244,74,-0.4583333333333333],[112,244,75,-0.4583333333333333],[112,244,76,-0.4583333333333333],[112,244,77,-0.4583333333333333],[112,244,78,-0.4583333333333333],[112,244,79,-0.4583333333333333],[112,245,64,-0.4583333333333333],[112,245,65,-0.4583333333333333],[112,245,66,-0.4583333333333333],[112,245,67,-0.4583333333333333],[112,245,68,-0.4583333333333333],[112,245,69,-0.4583333333333333],[112,245,70,-0.4583333333333333],[112,245,71,-0.4583333333333333],[112,245,72,-0.4583333333333333],[112,245,73,-0.4583333333333333],[112,245,74,-0.4583333333333333],[112,245,75,-0.4583333333333333],[112,245,76,-0.4583333333333333],[112,245,77,-0.4583333333333333],[112,245,78,-0.4583333333333333],[112,245,79,-0.4583333333333333],[112,246,64,-0.4583333333333333],[112,246,65,-0.4583333333333333],[112,246,66,-0.4583333333333333],[112,246,67,-0.4583333333333333],[112,246,68,-0.4583333333333333],[112,246,69,-0.4583333333333333],[112,246,70,-0.4583333333333333],[112,246,71,-0.4583333333333333],[112,246,72,-0.4583333333333333],[112,246,73,-0.4583333333333333],[112,246,74,-0.4583333333333333],[112,246,75,-0.4583333333333333],[112,246,76,-0.4583333333333333],[112,246,77,-0.4583333333333333],[112,246,78,-0.4583333333333333],[112,246,79,-0.4583333333333333],[112,247,64,-0.4583333333333333],[112,247,65,-0.4583333333333333],[112,247,66,-0.4583333333333333],[112,247,67,-0.4583333333333333],[112,247,68,-0.4583333333333333],[112,247,69,-0.4583333333333333],[112,247,70,-0.4583333333333333],[112,247,71,-0.4583333333333333],[112,247,72,-0.4583333333333333],[112,247,73,-0.4583333333333333],[112,247,74,-0.4583333333333333],[112,247,75,-0.4583333333333333],[112,247,76,-0.4583333333333333],[112,247,77,-0.4583333333333333],[112,247,78,-0.4583333333333333],[112,247,79,-0.4583333333333333],[112,248,64,-0.4583333333333333],[112,248,65,-0.4583333333333333],[112,248,66,-0.4583333333333333],[112,248,67,-0.4583333333333333],[112,248,68,-0.4583333333333333],[112,248,69,-0.4583333333333333],[112,248,70,-0.4583333333333333],[112,248,71,-0.4583333333333333],[112,248,72,-0.4583333333333333],[112,248,73,-0.4583333333333333],[112,248,74,-0.4583333333333333],[112,248,75,-0.4583333333333333],[112,248,76,-0.4583333333333333],[112,248,77,-0.4583333333333333],[112,248,78,-0.4583333333333333],[112,248,79,-0.4583333333333333],[112,249,64,-0.4583333333333333],[112,249,65,-0.4583333333333333],[112,249,66,-0.4583333333333333],[112,249,67,-0.4583333333333333],[112,249,68,-0.4583333333333333],[112,249,69,-0.4583333333333333],[112,249,70,-0.4583333333333333],[112,249,71,-0.4583333333333333],[112,249,72,-0.4583333333333333],[112,249,73,-0.4583333333333333],[112,249,74,-0.4583333333333333],[112,249,75,-0.4583333333333333],[112,249,76,-0.4583333333333333],[112,249,77,-0.4583333333333333],[112,249,78,-0.4583333333333333],[112,249,79,-0.4583333333333333],[112,250,64,-0.4583333333333333],[112,250,65,-0.4583333333333333],[112,250,66,-0.4583333333333333],[112,250,67,-0.4583333333333333],[112,250,68,-0.4583333333333333],[112,250,69,-0.4583333333333333],[112,250,70,-0.4583333333333333],[112,250,71,-0.4583333333333333],[112,250,72,-0.4583333333333333],[112,250,73,-0.4583333333333333],[112,250,74,-0.4583333333333333],[112,250,75,-0.4583333333333333],[112,250,76,-0.4583333333333333],[112,250,77,-0.4583333333333333],[112,250,78,-0.4583333333333333],[112,250,79,-0.4583333333333333],[112,251,64,-0.4583333333333333],[112,251,65,-0.4583333333333333],[112,251,66,-0.4583333333333333],[112,251,67,-0.4583333333333333],[112,251,68,-0.4583333333333333],[112,251,69,-0.4583333333333333],[112,251,70,-0.4583333333333333],[112,251,71,-0.4583333333333333],[112,251,72,-0.4583333333333333],[112,251,73,-0.4583333333333333],[112,251,74,-0.4583333333333333],[112,251,75,-0.4583333333333333],[112,251,76,-0.4583333333333333],[112,251,77,-0.4583333333333333],[112,251,78,-0.4583333333333333],[112,251,79,-0.4583333333333333],[112,252,64,-0.4583333333333333],[112,252,65,-0.4583333333333333],[112,252,66,-0.4583333333333333],[112,252,67,-0.4583333333333333],[112,252,68,-0.4583333333333333],[112,252,69,-0.4583333333333333],[112,252,70,-0.4583333333333333],[112,252,71,-0.4583333333333333],[112,252,72,-0.4583333333333333],[112,252,73,-0.4583333333333333],[112,252,74,-0.4583333333333333],[112,252,75,-0.4583333333333333],[112,252,76,-0.4583333333333333],[112,252,77,-0.4583333333333333],[112,252,78,-0.4583333333333333],[112,252,79,-0.4583333333333333],[112,253,64,-0.4583333333333333],[112,253,65,-0.4583333333333333],[112,253,66,-0.4583333333333333],[112,253,67,-0.4583333333333333],[112,253,68,-0.4583333333333333],[112,253,69,-0.4583333333333333],[112,253,70,-0.4583333333333333],[112,253,71,-0.4583333333333333],[112,253,72,-0.4583333333333333],[112,253,73,-0.4583333333333333],[112,253,74,-0.4583333333333333],[112,253,75,-0.4583333333333333],[112,253,76,-0.4583333333333333],[112,253,77,-0.4583333333333333],[112,253,78,-0.4583333333333333],[112,253,79,-0.4583333333333333],[112,254,64,-0.3638212261718634],[112,254,65,-0.3625710504120021],[112,254,66,-0.361454793168734],[112,254,67,-0.3608790882273948],[112,254,68,-0.3605747112908721],[112,254,69,-0.360705979826962],[112,254,70,-0.36108878767878716],[112,254,71,-0.3613639707920959],[112,254,72,-0.36125591671968166],[112,254,73,-0.3609364570795125],[112,254,74,-0.36123798980007943],[112,254,75,-0.36105875515755975],[112,254,76,-0.36031813292967146],[112,254,77,-0.3593856645786469],[112,254,78,-0.35927416198310963],[112,254,79,-0.3581407688461536],[112,255,64,-0.20175132138563573],[112,255,65,-0.20104566444295188],[112,255,66,-0.20043514942521248],[112,255,67,-0.20007354081960899],[112,255,68,-0.19994379817710825],[112,255,69,-0.20002262100875148],[112,255,70,-0.2002385353947688],[112,255,71,-0.20043848682770732],[112,255,72,-0.2003573547786449],[112,255,73,-0.200180917883407],[112,255,74,-0.20032266736814508],[112,255,75,-0.20029817301965422],[112,255,76,-0.19986351218137263],[112,255,77,-0.199285119517217],[112,255,78,-0.19920669317979786],[112,255,79,-0.19861501320607103],[112,256,64,-0.02499479166666667],[112,256,65,-0.02499479166666667],[112,256,66,-0.02499479166666667],[112,256,67,-0.02499479166666667],[112,256,68,-0.02499479166666667],[112,256,69,-0.02499479166666667],[112,256,70,-0.02499479166666667],[112,256,71,-0.02499479166666667],[112,256,72,-0.02499479166666667],[112,256,73,-0.02499479166666667],[112,256,74,-0.02499479166666667],[112,256,75,-0.02499479166666667],[112,256,76,-0.02499479166666667],[112,256,77,-0.02499479166666667],[112,256,78,-0.02499479166666667],[112,256,79,-0.02499479166666667],[112,257,64,-0.02499479166666667],[112,257,65,-0.02499479166666667],[112,257,66,-0.02499479166666667],[112,257,67,-0.02499479166666667],[112,257,68,-0.02499479166666667],[112,257,69,-0.02499479166666667],[112,257,70,-0.02499479166666667],[112,257,71,-0.02499479166666667],[112,257,72,-0.02499479166666667],[112,257,73,-0.02499479166666667],[112,257,74,-0.02499479166666667],[112,257,75,-0.02499479166666667],[112,257,76,-0.02499479166666667],[112,257,77,-0.02499479166666667],[112,257,78,-0.02499479166666667],[112,257,79,-0.02499479166666667],[112,258,64,-0.02499479166666667],[112,258,65,-0.02499479166666667],[112,258,66,-0.02499479166666667],[112,258,67,-0.02499479166666667],[112,258,68,-0.02499479166666667],[112,258,69,-0.02499479166666667],[112,258,70,-0.02499479166666667],[112,258,71,-0.02499479166666667],[112,258,72,-0.02499479166666667],[112,258,73,-0.02499479166666667],[112,258,74,-0.02499479166666667],[112,258,75,-0.02499479166666667],[112,258,76,-0.02499479166666667],[112,258,77,-0.02499479166666667],[112,258,78,-0.02499479166666667],[112,258,79,-0.02499479166666667],[112,259,64,-0.02499479166666667],[112,259,65,-0.02499479166666667],[112,259,66,-0.02499479166666667],[112,259,67,-0.02499479166666667],[112,259,68,-0.02499479166666667],[112,259,69,-0.02499479166666667],[112,259,70,-0.02499479166666667],[112,259,71,-0.02499479166666667],[112,259,72,-0.02499479166666667],[112,259,73,-0.02499479166666667],[112,259,74,-0.02499479166666667],[112,259,75,-0.02499479166666667],[112,259,76,-0.02499479166666667],[112,259,77,-0.02499479166666667],[112,259,78,-0.02499479166666667],[112,259,79,-0.02499479166666667],[112,260,64,-0.02499479166666667],[112,260,65,-0.02499479166666667],[112,260,66,-0.02499479166666667],[112,260,67,-0.02499479166666667],[112,260,68,-0.02499479166666667],[112,260,69,-0.02499479166666667],[112,260,70,-0.02499479166666667],[112,260,71,-0.02499479166666667],[112,260,72,-0.02499479166666667],[112,260,73,-0.02499479166666667],[112,260,74,-0.02499479166666667],[112,260,75,-0.02499479166666667],[112,260,76,-0.02499479166666667],[112,260,77,-0.02499479166666667],[112,260,78,-0.02499479166666667],[112,260,79,-0.02499479166666667],[112,261,64,-0.02499479166666667],[112,261,65,-0.02499479166666667],[112,261,66,-0.02499479166666667],[112,261,67,-0.02499479166666667],[112,261,68,-0.02499479166666667],[112,261,69,-0.02499479166666667],[112,261,70,-0.02499479166666667],[112,261,71,-0.02499479166666667],[112,261,72,-0.02499479166666667],[112,261,73,-0.02499479166666667],[112,261,74,-0.02499479166666667],[112,261,75,-0.02499479166666667],[112,261,76,-0.02499479166666667],[112,261,77,-0.02499479166666667],[112,261,78,-0.02499479166666667],[112,261,79,-0.02499479166666667],[112,262,64,-0.02499479166666667],[112,262,65,-0.02499479166666667],[112,262,66,-0.02499479166666667],[112,262,67,-0.02499479166666667],[112,262,68,-0.02499479166666667],[112,262,69,-0.02499479166666667],[112,262,70,-0.02499479166666667],[112,262,71,-0.02499479166666667],[112,262,72,-0.02499479166666667],[112,262,73,-0.02499479166666667],[112,262,74,-0.02499479166666667],[112,262,75,-0.02499479166666667],[112,262,76,-0.02499479166666667],[112,262,77,-0.02499479166666667],[112,262,78,-0.02499479166666667],[112,262,79,-0.02499479166666667],[112,263,64,-0.02499479166666667],[112,263,65,-0.02499479166666667],[112,263,66,-0.02499479166666667],[112,263,67,-0.02499479166666667],[112,263,68,-0.02499479166666667],[112,263,69,-0.02499479166666667],[112,263,70,-0.02499479166666667],[112,263,71,-0.02499479166666667],[112,263,72,-0.02499479166666667],[112,263,73,-0.02499479166666667],[112,263,74,-0.02499479166666667],[112,263,75,-0.02499479166666667],[112,263,76,-0.02499479166666667],[112,263,77,-0.02499479166666667],[112,263,78,-0.02499479166666667],[112,263,79,-0.02499479166666667],[112,264,64,-0.02499479166666667],[112,264,65,-0.02499479166666667],[112,264,66,-0.02499479166666667],[112,264,67,-0.02499479166666667],[112,264,68,-0.02499479166666667],[112,264,69,-0.02499479166666667],[112,264,70,-0.02499479166666667],[112,264,71,-0.02499479166666667],[112,264,72,-0.02499479166666667],[112,264,73,-0.02499479166666667],[112,264,74,-0.02499479166666667],[112,264,75,-0.02499479166666667],[112,264,76,-0.02499479166666667],[112,264,77,-0.02499479166666667],[112,264,78,-0.02499479166666667],[112,264,79,-0.02499479166666667],[112,265,64,-0.02499479166666667],[112,265,65,-0.02499479166666667],[112,265,66,-0.02499479166666667],[112,265,67,-0.02499479166666667],[112,265,68,-0.02499479166666667],[112,265,69,-0.02499479166666667],[112,265,70,-0.02499479166666667],[112,265,71,-0.02499479166666667],[112,265,72,-0.02499479166666667],[112,265,73,-0.02499479166666667],[112,265,74,-0.02499479166666667],[112,265,75,-0.02499479166666667],[112,265,76,-0.02499479166666667],[112,265,77,-0.02499479166666667],[112,265,78,-0.02499479166666667],[112,265,79,-0.02499479166666667],[112,266,64,-0.02499479166666667],[112,266,65,-0.02499479166666667],[112,266,66,-0.02499479166666667],[112,266,67,-0.02499479166666667],[112,266,68,-0.02499479166666667],[112,266,69,-0.02499479166666667],[112,266,70,-0.02499479166666667],[112,266,71,-0.02499479166666667],[112,266,72,-0.02499479166666667],[112,266,73,-0.02499479166666667],[112,266,74,-0.02499479166666667],[112,266,75,-0.02499479166666667],[112,266,76,-0.02499479166666667],[112,266,77,-0.02499479166666667],[112,266,78,-0.02499479166666667],[112,266,79,-0.02499479166666667],[112,267,64,-0.02499479166666667],[112,267,65,-0.02499479166666667],[112,267,66,-0.02499479166666667],[112,267,67,-0.02499479166666667],[112,267,68,-0.02499479166666667],[112,267,69,-0.02499479166666667],[112,267,70,-0.02499479166666667],[112,267,71,-0.02499479166666667],[112,267,72,-0.02499479166666667],[112,267,73,-0.02499479166666667],[112,267,74,-0.02499479166666667],[112,267,75,-0.02499479166666667],[112,267,76,-0.02499479166666667],[112,267,77,-0.02499479166666667],[112,267,78,-0.02499479166666667],[112,267,79,-0.02499479166666667],[112,268,64,-0.02499479166666667],[112,268,65,-0.02499479166666667],[112,268,66,-0.02499479166666667],[112,268,67,-0.02499479166666667],[112,268,68,-0.02499479166666667],[112,268,69,-0.02499479166666667],[112,268,70,-0.02499479166666667],[112,268,71,-0.02499479166666667],[112,268,72,-0.02499479166666667],[112,268,73,-0.02499479166666667],[112,268,74,-0.02499479166666667],[112,268,75,-0.02499479166666667],[112,268,76,-0.02499479166666667],[112,268,77,-0.02499479166666667],[112,268,78,-0.02499479166666667],[112,268,79,-0.02499479166666667],[112,269,64,-0.02499479166666667],[112,269,65,-0.02499479166666667],[112,269,66,-0.02499479166666667],[112,269,67,-0.02499479166666667],[112,269,68,-0.02499479166666667],[112,269,69,-0.02499479166666667],[112,269,70,-0.02499479166666667],[112,269,71,-0.02499479166666667],[112,269,72,-0.02499479166666667],[112,269,73,-0.02499479166666667],[112,269,74,-0.02499479166666667],[112,269,75,-0.02499479166666667],[112,269,76,-0.02499479166666667],[112,269,77,-0.02499479166666667],[112,269,78,-0.02499479166666667],[112,269,79,-0.02499479166666667],[112,270,64,-0.02499479166666667],[112,270,65,-0.02499479166666667],[112,270,66,-0.02499479166666667],[112,270,67,-0.02499479166666667],[112,270,68,-0.02499479166666667],[112,270,69,-0.02499479166666667],[112,270,70,-0.02499479166666667],[112,270,71,-0.02499479166666667],[112,270,72,-0.02499479166666667],[112,270,73,-0.02499479166666667],[112,270,74,-0.02499479166666667],[112,270,75,-0.02499479166666667],[112,270,76,-0.02499479166666667],[112,270,77,-0.02499479166666667],[112,270,78,-0.02499479166666667],[112,270,79,-0.02499479166666667],[112,271,64,-0.02499479166666667],[112,271,65,-0.02499479166666667],[112,271,66,-0.02499479166666667],[112,271,67,-0.02499479166666667],[112,271,68,-0.02499479166666667],[112,271,69,-0.02499479166666667],[112,271,70,-0.02499479166666667],[112,271,71,-0.02499479166666667],[112,271,72,-0.02499479166666667],[112,271,73,-0.02499479166666667],[112,271,74,-0.02499479166666667],[112,271,75,-0.02499479166666667],[112,271,76,-0.02499479166666667],[112,271,77,-0.02499479166666667],[112,271,78,-0.02499479166666667],[112,271,79,-0.02499479166666667],[112,272,64,-0.02499479166666667],[112,272,65,-0.02499479166666667],[112,272,66,-0.02499479166666667],[112,272,67,-0.02499479166666667],[112,272,68,-0.02499479166666667],[112,272,69,-0.02499479166666667],[112,272,70,-0.02499479166666667],[112,272,71,-0.02499479166666667],[112,272,72,-0.02499479166666667],[112,272,73,-0.02499479166666667],[112,272,74,-0.02499479166666667],[112,272,75,-0.02499479166666667],[112,272,76,-0.02499479166666667],[112,272,77,-0.02499479166666667],[112,272,78,-0.02499479166666667],[112,272,79,-0.02499479166666667],[112,273,64,-0.02499479166666667],[112,273,65,-0.02499479166666667],[112,273,66,-0.02499479166666667],[112,273,67,-0.02499479166666667],[112,273,68,-0.02499479166666667],[112,273,69,-0.02499479166666667],[112,273,70,-0.02499479166666667],[112,273,71,-0.02499479166666667],[112,273,72,-0.02499479166666667],[112,273,73,-0.02499479166666667],[112,273,74,-0.02499479166666667],[112,273,75,-0.02499479166666667],[112,273,76,-0.02499479166666667],[112,273,77,-0.02499479166666667],[112,273,78,-0.02499479166666667],[112,273,79,-0.02499479166666667],[112,274,64,-0.02499479166666667],[112,274,65,-0.02499479166666667],[112,274,66,-0.02499479166666667],[112,274,67,-0.02499479166666667],[112,274,68,-0.02499479166666667],[112,274,69,-0.02499479166666667],[112,274,70,-0.02499479166666667],[112,274,71,-0.02499479166666667],[112,274,72,-0.02499479166666667],[112,274,73,-0.02499479166666667],[112,274,74,-0.02499479166666667],[112,274,75,-0.02499479166666667],[112,274,76,-0.02499479166666667],[112,274,77,-0.02499479166666667],[112,274,78,-0.02499479166666667],[112,274,79,-0.02499479166666667],[112,275,64,-0.02499479166666667],[112,275,65,-0.02499479166666667],[112,275,66,-0.02499479166666667],[112,275,67,-0.02499479166666667],[112,275,68,-0.02499479166666667],[112,275,69,-0.02499479166666667],[112,275,70,-0.02499479166666667],[112,275,71,-0.02499479166666667],[112,275,72,-0.02499479166666667],[112,275,73,-0.02499479166666667],[112,275,74,-0.02499479166666667],[112,275,75,-0.02499479166666667],[112,275,76,-0.02499479166666667],[112,275,77,-0.02499479166666667],[112,275,78,-0.02499479166666667],[112,275,79,-0.02499479166666667],[112,276,64,-0.02499479166666667],[112,276,65,-0.02499479166666667],[112,276,66,-0.02499479166666667],[112,276,67,-0.02499479166666667],[112,276,68,-0.02499479166666667],[112,276,69,-0.02499479166666667],[112,276,70,-0.02499479166666667],[112,276,71,-0.02499479166666667],[112,276,72,-0.02499479166666667],[112,276,73,-0.02499479166666667],[112,276,74,-0.02499479166666667],[112,276,75,-0.02499479166666667],[112,276,76,-0.02499479166666667],[112,276,77,-0.02499479166666667],[112,276,78,-0.02499479166666667],[112,276,79,-0.02499479166666667],[112,277,64,-0.02499479166666667],[112,277,65,-0.02499479166666667],[112,277,66,-0.02499479166666667],[112,277,67,-0.02499479166666667],[112,277,68,-0.02499479166666667],[112,277,69,-0.02499479166666667],[112,277,70,-0.02499479166666667],[112,277,71,-0.02499479166666667],[112,277,72,-0.02499479166666667],[112,277,73,-0.02499479166666667],[112,277,74,-0.02499479166666667],[112,277,75,-0.02499479166666667],[112,277,76,-0.02499479166666667],[112,277,77,-0.02499479166666667],[112,277,78,-0.02499479166666667],[112,277,79,-0.02499479166666667],[112,278,64,-0.02499479166666667],[112,278,65,-0.02499479166666667],[112,278,66,-0.02499479166666667],[112,278,67,-0.02499479166666667],[112,278,68,-0.02499479166666667],[112,278,69,-0.02499479166666667],[112,278,70,-0.02499479166666667],[112,278,71,-0.02499479166666667],[112,278,72,-0.02499479166666667],[112,278,73,-0.02499479166666667],[112,278,74,-0.02499479166666667],[112,278,75,-0.02499479166666667],[112,278,76,-0.02499479166666667],[112,278,77,-0.02499479166666667],[112,278,78,-0.02499479166666667],[112,278,79,-0.02499479166666667],[112,279,64,-0.02499479166666667],[112,279,65,-0.02499479166666667],[112,279,66,-0.02499479166666667],[112,279,67,-0.02499479166666667],[112,279,68,-0.02499479166666667],[112,279,69,-0.02499479166666667],[112,279,70,-0.02499479166666667],[112,279,71,-0.02499479166666667],[112,279,72,-0.02499479166666667],[112,279,73,-0.02499479166666667],[112,279,74,-0.02499479166666667],[112,279,75,-0.02499479166666667],[112,279,76,-0.02499479166666667],[112,279,77,-0.02499479166666667],[112,279,78,-0.02499479166666667],[112,279,79,-0.02499479166666667],[112,280,64,-0.02499479166666667],[112,280,65,-0.02499479166666667],[112,280,66,-0.02499479166666667],[112,280,67,-0.02499479166666667],[112,280,68,-0.02499479166666667],[112,280,69,-0.02499479166666667],[112,280,70,-0.02499479166666667],[112,280,71,-0.02499479166666667],[112,280,72,-0.02499479166666667],[112,280,73,-0.02499479166666667],[112,280,74,-0.02499479166666667],[112,280,75,-0.02499479166666667],[112,280,76,-0.02499479166666667],[112,280,77,-0.02499479166666667],[112,280,78,-0.02499479166666667],[112,280,79,-0.02499479166666667],[112,281,64,-0.02499479166666667],[112,281,65,-0.02499479166666667],[112,281,66,-0.02499479166666667],[112,281,67,-0.02499479166666667],[112,281,68,-0.02499479166666667],[112,281,69,-0.02499479166666667],[112,281,70,-0.02499479166666667],[112,281,71,-0.02499479166666667],[112,281,72,-0.02499479166666667],[112,281,73,-0.02499479166666667],[112,281,74,-0.02499479166666667],[112,281,75,-0.02499479166666667],[112,281,76,-0.02499479166666667],[112,281,77,-0.02499479166666667],[112,281,78,-0.02499479166666667],[112,281,79,-0.02499479166666667],[112,282,64,-0.02499479166666667],[112,282,65,-0.02499479166666667],[112,282,66,-0.02499479166666667],[112,282,67,-0.02499479166666667],[112,282,68,-0.02499479166666667],[112,282,69,-0.02499479166666667],[112,282,70,-0.02499479166666667],[112,282,71,-0.02499479166666667],[112,282,72,-0.02499479166666667],[112,282,73,-0.02499479166666667],[112,282,74,-0.02499479166666667],[112,282,75,-0.02499479166666667],[112,282,76,-0.02499479166666667],[112,282,77,-0.02499479166666667],[112,282,78,-0.02499479166666667],[112,282,79,-0.02499479166666667],[112,283,64,-0.02499479166666667],[112,283,65,-0.02499479166666667],[112,283,66,-0.02499479166666667],[112,283,67,-0.02499479166666667],[112,283,68,-0.02499479166666667],[112,283,69,-0.02499479166666667],[112,283,70,-0.02499479166666667],[112,283,71,-0.02499479166666667],[112,283,72,-0.02499479166666667],[112,283,73,-0.02499479166666667],[112,283,74,-0.02499479166666667],[112,283,75,-0.02499479166666667],[112,283,76,-0.02499479166666667],[112,283,77,-0.02499479166666667],[112,283,78,-0.02499479166666667],[112,283,79,-0.02499479166666667],[112,284,64,-0.02499479166666667],[112,284,65,-0.02499479166666667],[112,284,66,-0.02499479166666667],[112,284,67,-0.02499479166666667],[112,284,68,-0.02499479166666667],[112,284,69,-0.02499479166666667],[112,284,70,-0.02499479166666667],[112,284,71,-0.02499479166666667],[112,284,72,-0.02499479166666667],[112,284,73,-0.02499479166666667],[112,284,74,-0.02499479166666667],[112,284,75,-0.02499479166666667],[112,284,76,-0.02499479166666667],[112,284,77,-0.02499479166666667],[112,284,78,-0.02499479166666667],[112,284,79,-0.02499479166666667],[112,285,64,-0.02499479166666667],[112,285,65,-0.02499479166666667],[112,285,66,-0.02499479166666667],[112,285,67,-0.02499479166666667],[112,285,68,-0.02499479166666667],[112,285,69,-0.02499479166666667],[112,285,70,-0.02499479166666667],[112,285,71,-0.02499479166666667],[112,285,72,-0.02499479166666667],[112,285,73,-0.02499479166666667],[112,285,74,-0.02499479166666667],[112,285,75,-0.02499479166666667],[112,285,76,-0.02499479166666667],[112,285,77,-0.02499479166666667],[112,285,78,-0.02499479166666667],[112,285,79,-0.02499479166666667],[112,286,64,-0.02499479166666667],[112,286,65,-0.02499479166666667],[112,286,66,-0.02499479166666667],[112,286,67,-0.02499479166666667],[112,286,68,-0.02499479166666667],[112,286,69,-0.02499479166666667],[112,286,70,-0.02499479166666667],[112,286,71,-0.02499479166666667],[112,286,72,-0.02499479166666667],[112,286,73,-0.02499479166666667],[112,286,74,-0.02499479166666667],[112,286,75,-0.02499479166666667],[112,286,76,-0.02499479166666667],[112,286,77,-0.02499479166666667],[112,286,78,-0.02499479166666667],[112,286,79,-0.02499479166666667],[112,287,64,-0.02499479166666667],[112,287,65,-0.02499479166666667],[112,287,66,-0.02499479166666667],[112,287,67,-0.02499479166666667],[112,287,68,-0.02499479166666667],[112,287,69,-0.02499479166666667],[112,287,70,-0.02499479166666667],[112,287,71,-0.02499479166666667],[112,287,72,-0.02499479166666667],[112,287,73,-0.02499479166666667],[112,287,74,-0.02499479166666667],[112,287,75,-0.02499479166666667],[112,287,76,-0.02499479166666667],[112,287,77,-0.02499479166666667],[112,287,78,-0.02499479166666667],[112,287,79,-0.02499479166666667],[112,288,64,-0.02499479166666667],[112,288,65,-0.02499479166666667],[112,288,66,-0.02499479166666667],[112,288,67,-0.02499479166666667],[112,288,68,-0.02499479166666667],[112,288,69,-0.02499479166666667],[112,288,70,-0.02499479166666667],[112,288,71,-0.02499479166666667],[112,288,72,-0.02499479166666667],[112,288,73,-0.02499479166666667],[112,288,74,-0.02499479166666667],[112,288,75,-0.02499479166666667],[112,288,76,-0.02499479166666667],[112,288,77,-0.02499479166666667],[112,288,78,-0.02499479166666667],[112,288,79,-0.02499479166666667],[112,289,64,-0.02499479166666667],[112,289,65,-0.02499479166666667],[112,289,66,-0.02499479166666667],[112,289,67,-0.02499479166666667],[112,289,68,-0.02499479166666667],[112,289,69,-0.02499479166666667],[112,289,70,-0.02499479166666667],[112,289,71,-0.02499479166666667],[112,289,72,-0.02499479166666667],[112,289,73,-0.02499479166666667],[112,289,74,-0.02499479166666667],[112,289,75,-0.02499479166666667],[112,289,76,-0.02499479166666667],[112,289,77,-0.02499479166666667],[112,289,78,-0.02499479166666667],[112,289,79,-0.02499479166666667],[112,290,64,-0.02499479166666667],[112,290,65,-0.02499479166666667],[112,290,66,-0.02499479166666667],[112,290,67,-0.02499479166666667],[112,290,68,-0.02499479166666667],[112,290,69,-0.02499479166666667],[112,290,70,-0.02499479166666667],[112,290,71,-0.02499479166666667],[112,290,72,-0.02499479166666667],[112,290,73,-0.02499479166666667],[112,290,74,-0.02499479166666667],[112,290,75,-0.02499479166666667],[112,290,76,-0.02499479166666667],[112,290,77,-0.02499479166666667],[112,290,78,-0.02499479166666667],[112,290,79,-0.02499479166666667],[112,291,64,-0.02499479166666667],[112,291,65,-0.02499479166666667],[112,291,66,-0.02499479166666667],[112,291,67,-0.02499479166666667],[112,291,68,-0.02499479166666667],[112,291,69,-0.02499479166666667],[112,291,70,-0.02499479166666667],[112,291,71,-0.02499479166666667],[112,291,72,-0.02499479166666667],[112,291,73,-0.02499479166666667],[112,291,74,-0.02499479166666667],[112,291,75,-0.02499479166666667],[112,291,76,-0.02499479166666667],[112,291,77,-0.02499479166666667],[112,291,78,-0.02499479166666667],[112,291,79,-0.02499479166666667],[112,292,64,-0.02499479166666667],[112,292,65,-0.02499479166666667],[112,292,66,-0.02499479166666667],[112,292,67,-0.02499479166666667],[112,292,68,-0.02499479166666667],[112,292,69,-0.02499479166666667],[112,292,70,-0.02499479166666667],[112,292,71,-0.02499479166666667],[112,292,72,-0.02499479166666667],[112,292,73,-0.02499479166666667],[112,292,74,-0.02499479166666667],[112,292,75,-0.02499479166666667],[112,292,76,-0.02499479166666667],[112,292,77,-0.02499479166666667],[112,292,78,-0.02499479166666667],[112,292,79,-0.02499479166666667],[112,293,64,-0.02499479166666667],[112,293,65,-0.02499479166666667],[112,293,66,-0.02499479166666667],[112,293,67,-0.02499479166666667],[112,293,68,-0.02499479166666667],[112,293,69,-0.02499479166666667],[112,293,70,-0.02499479166666667],[112,293,71,-0.02499479166666667],[112,293,72,-0.02499479166666667],[112,293,73,-0.02499479166666667],[112,293,74,-0.02499479166666667],[112,293,75,-0.02499479166666667],[112,293,76,-0.02499479166666667],[112,293,77,-0.02499479166666667],[112,293,78,-0.02499479166666667],[112,293,79,-0.02499479166666667],[112,294,64,-0.02499479166666667],[112,294,65,-0.02499479166666667],[112,294,66,-0.02499479166666667],[112,294,67,-0.02499479166666667],[112,294,68,-0.02499479166666667],[112,294,69,-0.02499479166666667],[112,294,70,-0.02499479166666667],[112,294,71,-0.02499479166666667],[112,294,72,-0.02499479166666667],[112,294,73,-0.02499479166666667],[112,294,74,-0.02499479166666667],[112,294,75,-0.02499479166666667],[112,294,76,-0.02499479166666667],[112,294,77,-0.02499479166666667],[112,294,78,-0.02499479166666667],[112,294,79,-0.02499479166666667],[112,295,64,-0.02499479166666667],[112,295,65,-0.02499479166666667],[112,295,66,-0.02499479166666667],[112,295,67,-0.02499479166666667],[112,295,68,-0.02499479166666667],[112,295,69,-0.02499479166666667],[112,295,70,-0.02499479166666667],[112,295,71,-0.02499479166666667],[112,295,72,-0.02499479166666667],[112,295,73,-0.02499479166666667],[112,295,74,-0.02499479166666667],[112,295,75,-0.02499479166666667],[112,295,76,-0.02499479166666667],[112,295,77,-0.02499479166666667],[112,295,78,-0.02499479166666667],[112,295,79,-0.02499479166666667],[112,296,64,-0.02499479166666667],[112,296,65,-0.02499479166666667],[112,296,66,-0.02499479166666667],[112,296,67,-0.02499479166666667],[112,296,68,-0.02499479166666667],[112,296,69,-0.02499479166666667],[112,296,70,-0.02499479166666667],[112,296,71,-0.02499479166666667],[112,296,72,-0.02499479166666667],[112,296,73,-0.02499479166666667],[112,296,74,-0.02499479166666667],[112,296,75,-0.02499479166666667],[112,296,76,-0.02499479166666667],[112,296,77,-0.02499479166666667],[112,296,78,-0.02499479166666667],[112,296,79,-0.02499479166666667],[112,297,64,-0.02499479166666667],[112,297,65,-0.02499479166666667],[112,297,66,-0.02499479166666667],[112,297,67,-0.02499479166666667],[112,297,68,-0.02499479166666667],[112,297,69,-0.02499479166666667],[112,297,70,-0.02499479166666667],[112,297,71,-0.02499479166666667],[112,297,72,-0.02499479166666667],[112,297,73,-0.02499479166666667],[112,297,74,-0.02499479166666667],[112,297,75,-0.02499479166666667],[112,297,76,-0.02499479166666667],[112,297,77,-0.02499479166666667],[112,297,78,-0.02499479166666667],[112,297,79,-0.02499479166666667],[112,298,64,-0.02499479166666667],[112,298,65,-0.02499479166666667],[112,298,66,-0.02499479166666667],[112,298,67,-0.02499479166666667],[112,298,68,-0.02499479166666667],[112,298,69,-0.02499479166666667],[112,298,70,-0.02499479166666667],[112,298,71,-0.02499479166666667],[112,298,72,-0.02499479166666667],[112,298,73,-0.02499479166666667],[112,298,74,-0.02499479166666667],[112,298,75,-0.02499479166666667],[112,298,76,-0.02499479166666667],[112,298,77,-0.02499479166666667],[112,298,78,-0.02499479166666667],[112,298,79,-0.02499479166666667],[112,299,64,-0.02499479166666667],[112,299,65,-0.02499479166666667],[112,299,66,-0.02499479166666667],[112,299,67,-0.02499479166666667],[112,299,68,-0.02499479166666667],[112,299,69,-0.02499479166666667],[112,299,70,-0.02499479166666667],[112,299,71,-0.02499479166666667],[112,299,72,-0.02499479166666667],[112,299,73,-0.02499479166666667],[112,299,74,-0.02499479166666667],[112,299,75,-0.02499479166666667],[112,299,76,-0.02499479166666667],[112,299,77,-0.02499479166666667],[112,299,78,-0.02499479166666667],[112,299,79,-0.02499479166666667],[112,300,64,-0.02499479166666667],[112,300,65,-0.02499479166666667],[112,300,66,-0.02499479166666667],[112,300,67,-0.02499479166666667],[112,300,68,-0.02499479166666667],[112,300,69,-0.02499479166666667],[112,300,70,-0.02499479166666667],[112,300,71,-0.02499479166666667],[112,300,72,-0.02499479166666667],[112,300,73,-0.02499479166666667],[112,300,74,-0.02499479166666667],[112,300,75,-0.02499479166666667],[112,300,76,-0.02499479166666667],[112,300,77,-0.02499479166666667],[112,300,78,-0.02499479166666667],[112,300,79,-0.02499479166666667],[112,301,64,-0.02499479166666667],[112,301,65,-0.02499479166666667],[112,301,66,-0.02499479166666667],[112,301,67,-0.02499479166666667],[112,301,68,-0.02499479166666667],[112,301,69,-0.02499479166666667],[112,301,70,-0.02499479166666667],[112,301,71,-0.02499479166666667],[112,301,72,-0.02499479166666667],[112,301,73,-0.02499479166666667],[112,301,74,-0.02499479166666667],[112,301,75,-0.02499479166666667],[112,301,76,-0.02499479166666667],[112,301,77,-0.02499479166666667],[112,301,78,-0.02499479166666667],[112,301,79,-0.02499479166666667],[112,302,64,-0.02499479166666667],[112,302,65,-0.02499479166666667],[112,302,66,-0.02499479166666667],[112,302,67,-0.02499479166666667],[112,302,68,-0.02499479166666667],[112,302,69,-0.02499479166666667],[112,302,70,-0.02499479166666667],[112,302,71,-0.02499479166666667],[112,302,72,-0.02499479166666667],[112,302,73,-0.02499479166666667],[112,302,74,-0.02499479166666667],[112,302,75,-0.02499479166666667],[112,302,76,-0.02499479166666667],[112,302,77,-0.02499479166666667],[112,302,78,-0.02499479166666667],[112,302,79,-0.02499479166666667],[112,303,64,-0.02499479166666667],[112,303,65,-0.02499479166666667],[112,303,66,-0.02499479166666667],[112,303,67,-0.02499479166666667],[112,303,68,-0.02499479166666667],[112,303,69,-0.02499479166666667],[112,303,70,-0.02499479166666667],[112,303,71,-0.02499479166666667],[112,303,72,-0.02499479166666667],[112,303,73,-0.02499479166666667],[112,303,74,-0.02499479166666667],[112,303,75,-0.02499479166666667],[112,303,76,-0.02499479166666667],[112,303,77,-0.02499479166666667],[112,303,78,-0.02499479166666667],[112,303,79,-0.02499479166666667],[112,304,64,-0.02499479166666667],[112,304,65,-0.02499479166666667],[112,304,66,-0.02499479166666667],[112,304,67,-0.02499479166666667],[112,304,68,-0.02499479166666667],[112,304,69,-0.02499479166666667],[112,304,70,-0.02499479166666667],[112,304,71,-0.02499479166666667],[112,304,72,-0.02499479166666667],[112,304,73,-0.02499479166666667],[112,304,74,-0.02499479166666667],[112,304,75,-0.02499479166666667],[112,304,76,-0.02499479166666667],[112,304,77,-0.02499479166666667],[112,304,78,-0.02499479166666667],[112,304,79,-0.02499479166666667],[112,305,64,-0.02499479166666667],[112,305,65,-0.02499479166666667],[112,305,66,-0.02499479166666667],[112,305,67,-0.02499479166666667],[112,305,68,-0.02499479166666667],[112,305,69,-0.02499479166666667],[112,305,70,-0.02499479166666667],[112,305,71,-0.02499479166666667],[112,305,72,-0.02499479166666667],[112,305,73,-0.02499479166666667],[112,305,74,-0.02499479166666667],[112,305,75,-0.02499479166666667],[112,305,76,-0.02499479166666667],[112,305,77,-0.02499479166666667],[112,305,78,-0.02499479166666667],[112,305,79,-0.02499479166666667],[112,306,64,-0.02499479166666667],[112,306,65,-0.02499479166666667],[112,306,66,-0.02499479166666667],[112,306,67,-0.02499479166666667],[112,306,68,-0.02499479166666667],[112,306,69,-0.02499479166666667],[112,306,70,-0.02499479166666667],[112,306,71,-0.02499479166666667],[112,306,72,-0.02499479166666667],[112,306,73,-0.02499479166666667],[112,306,74,-0.02499479166666667],[112,306,75,-0.02499479166666667],[112,306,76,-0.02499479166666667],[112,306,77,-0.02499479166666667],[112,306,78,-0.02499479166666667],[112,306,79,-0.02499479166666667],[112,307,64,-0.02499479166666667],[112,307,65,-0.02499479166666667],[112,307,66,-0.02499479166666667],[112,307,67,-0.02499479166666667],[112,307,68,-0.02499479166666667],[112,307,69,-0.02499479166666667],[112,307,70,-0.02499479166666667],[112,307,71,-0.02499479166666667],[112,307,72,-0.02499479166666667],[112,307,73,-0.02499479166666667],[112,307,74,-0.02499479166666667],[112,307,75,-0.02499479166666667],[112,307,76,-0.02499479166666667],[112,307,77,-0.02499479166666667],[112,307,78,-0.02499479166666667],[112,307,79,-0.02499479166666667],[112,308,64,-0.02499479166666667],[112,308,65,-0.02499479166666667],[112,308,66,-0.02499479166666667],[112,308,67,-0.02499479166666667],[112,308,68,-0.02499479166666667],[112,308,69,-0.02499479166666667],[112,308,70,-0.02499479166666667],[112,308,71,-0.02499479166666667],[112,308,72,-0.02499479166666667],[112,308,73,-0.02499479166666667],[112,308,74,-0.02499479166666667],[112,308,75,-0.02499479166666667],[112,308,76,-0.02499479166666667],[112,308,77,-0.02499479166666667],[112,308,78,-0.02499479166666667],[112,308,79,-0.02499479166666667],[112,309,64,-0.02499479166666667],[112,309,65,-0.02499479166666667],[112,309,66,-0.02499479166666667],[112,309,67,-0.02499479166666667],[112,309,68,-0.02499479166666667],[112,309,69,-0.02499479166666667],[112,309,70,-0.02499479166666667],[112,309,71,-0.02499479166666667],[112,309,72,-0.02499479166666667],[112,309,73,-0.02499479166666667],[112,309,74,-0.02499479166666667],[112,309,75,-0.02499479166666667],[112,309,76,-0.02499479166666667],[112,309,77,-0.02499479166666667],[112,309,78,-0.02499479166666667],[112,309,79,-0.02499479166666667],[112,310,64,-0.02499479166666667],[112,310,65,-0.02499479166666667],[112,310,66,-0.02499479166666667],[112,310,67,-0.02499479166666667],[112,310,68,-0.02499479166666667],[112,310,69,-0.02499479166666667],[112,310,70,-0.02499479166666667],[112,310,71,-0.02499479166666667],[112,310,72,-0.02499479166666667],[112,310,73,-0.02499479166666667],[112,310,74,-0.02499479166666667],[112,310,75,-0.02499479166666667],[112,310,76,-0.02499479166666667],[112,310,77,-0.02499479166666667],[112,310,78,-0.02499479166666667],[112,310,79,-0.02499479166666667],[112,311,64,-0.02499479166666667],[112,311,65,-0.02499479166666667],[112,311,66,-0.02499479166666667],[112,311,67,-0.02499479166666667],[112,311,68,-0.02499479166666667],[112,311,69,-0.02499479166666667],[112,311,70,-0.02499479166666667],[112,311,71,-0.02499479166666667],[112,311,72,-0.02499479166666667],[112,311,73,-0.02499479166666667],[112,311,74,-0.02499479166666667],[112,311,75,-0.02499479166666667],[112,311,76,-0.02499479166666667],[112,311,77,-0.02499479166666667],[112,311,78,-0.02499479166666667],[112,311,79,-0.02499479166666667],[112,312,64,-0.02499479166666667],[112,312,65,-0.02499479166666667],[112,312,66,-0.02499479166666667],[112,312,67,-0.02499479166666667],[112,312,68,-0.02499479166666667],[112,312,69,-0.02499479166666667],[112,312,70,-0.02499479166666667],[112,312,71,-0.02499479166666667],[112,312,72,-0.02499479166666667],[112,312,73,-0.02499479166666667],[112,312,74,-0.02499479166666667],[112,312,75,-0.02499479166666667],[112,312,76,-0.02499479166666667],[112,312,77,-0.02499479166666667],[112,312,78,-0.02499479166666667],[112,312,79,-0.02499479166666667],[112,313,64,-0.02499479166666667],[112,313,65,-0.02499479166666667],[112,313,66,-0.02499479166666667],[112,313,67,-0.02499479166666667],[112,313,68,-0.02499479166666667],[112,313,69,-0.02499479166666667],[112,313,70,-0.02499479166666667],[112,313,71,-0.02499479166666667],[112,313,72,-0.02499479166666667],[112,313,73,-0.02499479166666667],[112,313,74,-0.02499479166666667],[112,313,75,-0.02499479166666667],[112,313,76,-0.02499479166666667],[112,313,77,-0.02499479166666667],[112,313,78,-0.02499479166666667],[112,313,79,-0.02499479166666667],[112,314,64,-0.02499479166666667],[112,314,65,-0.02499479166666667],[112,314,66,-0.02499479166666667],[112,314,67,-0.02499479166666667],[112,314,68,-0.02499479166666667],[112,314,69,-0.02499479166666667],[112,314,70,-0.02499479166666667],[112,314,71,-0.02499479166666667],[112,314,72,-0.02499479166666667],[112,314,73,-0.02499479166666667],[112,314,74,-0.02499479166666667],[112,314,75,-0.02499479166666667],[112,314,76,-0.02499479166666667],[112,314,77,-0.02499479166666667],[112,314,78,-0.02499479166666667],[112,314,79,-0.02499479166666667],[112,315,64,-0.02499479166666667],[112,315,65,-0.02499479166666667],[112,315,66,-0.02499479166666667],[112,315,67,-0.02499479166666667],[112,315,68,-0.02499479166666667],[112,315,69,-0.02499479166666667],[112,315,70,-0.02499479166666667],[112,315,71,-0.02499479166666667],[112,315,72,-0.02499479166666667],[112,315,73,-0.02499479166666667],[112,315,74,-0.02499479166666667],[112,315,75,-0.02499479166666667],[112,315,76,-0.02499479166666667],[112,315,77,-0.02499479166666667],[112,315,78,-0.02499479166666667],[112,315,79,-0.02499479166666667],[112,316,64,-0.02499479166666667],[112,316,65,-0.02499479166666667],[112,316,66,-0.02499479166666667],[112,316,67,-0.02499479166666667],[112,316,68,-0.02499479166666667],[112,316,69,-0.02499479166666667],[112,316,70,-0.02499479166666667],[112,316,71,-0.02499479166666667],[112,316,72,-0.02499479166666667],[112,316,73,-0.02499479166666667],[112,316,74,-0.02499479166666667],[112,316,75,-0.02499479166666667],[112,316,76,-0.02499479166666667],[112,316,77,-0.02499479166666667],[112,316,78,-0.02499479166666667],[112,316,79,-0.02499479166666667],[112,317,64,-0.02499479166666667],[112,317,65,-0.02499479166666667],[112,317,66,-0.02499479166666667],[112,317,67,-0.02499479166666667],[112,317,68,-0.02499479166666667],[112,317,69,-0.02499479166666667],[112,317,70,-0.02499479166666667],[112,317,71,-0.02499479166666667],[112,317,72,-0.02499479166666667],[112,317,73,-0.02499479166666667],[112,317,74,-0.02499479166666667],[112,317,75,-0.02499479166666667],[112,317,76,-0.02499479166666667],[112,317,77,-0.02499479166666667],[112,317,78,-0.02499479166666667],[112,317,79,-0.02499479166666667],[112,318,64,-0.02499479166666667],[112,318,65,-0.02499479166666667],[112,318,66,-0.02499479166666667],[112,318,67,-0.02499479166666667],[112,318,68,-0.02499479166666667],[112,318,69,-0.02499479166666667],[112,318,70,-0.02499479166666667],[112,318,71,-0.02499479166666667],[112,318,72,-0.02499479166666667],[112,318,73,-0.02499479166666667],[112,318,74,-0.02499479166666667],[112,318,75,-0.02499479166666667],[112,318,76,-0.02499479166666667],[112,318,77,-0.02499479166666667],[112,318,78,-0.02499479166666667],[112,318,79,-0.02499479166666667],[112,319,64,-0.02499479166666667],[112,319,65,-0.02499479166666667],[112,319,66,-0.02499479166666667],[112,319,67,-0.02499479166666667],[112,319,68,-0.02499479166666667],[112,319,69,-0.02499479166666667],[112,319,70,-0.02499479166666667],[112,319,71,-0.02499479166666667],[112,319,72,-0.02499479166666667],[112,319,73,-0.02499479166666667],[112,319,74,-0.02499479166666667],[112,319,75,-0.02499479166666667],[112,319,76,-0.02499479166666667],[112,319,77,-0.02499479166666667],[112,319,78,-0.02499479166666667],[112,319,79,-0.02499479166666667],[113,-64,64,0.037482421875],[113,-64,65,0.037482421875],[113,-64,66,0.037482421875],[113,-64,67,0.037482421875],[113,-64,68,0.037482421875],[113,-64,69,0.037482421875],[113,-64,70,0.037482421875],[113,-64,71,0.037482421875],[113,-64,72,0.037482421875],[113,-64,73,0.037482421875],[113,-64,74,0.037482421875],[113,-64,75,0.037482421875],[113,-64,76,0.037482421875],[113,-64,77,0.037482421875],[113,-64,78,0.037482421875],[113,-64,79,0.037482421875],[113,-63,64,0.04027650566088122],[113,-63,65,0.04035279202033757],[113,-63,66,0.04043063761800365],[113,-63,67,0.04050980883773592],[113,-63,68,0.04059038404397163],[113,-63,69,0.0406725822007874],[113,-63,70,0.04075651785615525],[113,-63,71,0.0408422034017473],[113,-63,72,0.04092955695360778],[113,-63,73,0.041018410568924496],[113,-63,74,0.04110851879652806],[113,-63,75,0.04119956755756239],[113,-63,76,0.04129118335164205],[113,-63,77,0.04138294278274758],[113,-63,78,0.04147438239810977],[113,-63,79,0.041565008832412244],[113,-62,64,0.04310089067762648],[113,-62,65,0.043255671116223235],[113,-62,66,0.043413598789639664],[113,-62,67,0.043574251758959376],[113,-62,68,0.04373778069298825],[113,-62,69,0.04390457619061285],[113,-62,70,0.04407482161504719],[113,-62,71,0.04424849934689403],[113,-62,72,0.04442540722831091],[113,-62,73,0.04460517559899133],[113,-62,74,0.044787284916590134],[113,-62,75,0.044971083951944345],[113,-62,76,0.045155808547304783],[113,-62,77,0.045340600923814325],[113,-62,78,0.045524529522645206],[113,-62,79,0.04570660936256363],[113,-61,64,0.045962633278176575],[113,-61,65,0.0461975896470159],[113,-61,66,0.04643725248368711],[113,-61,67,0.046681066431447614],[113,-61,68,0.04692924586909316],[113,-61,69,0.047182298225868356],[113,-61,70,0.04744042844293739],[113,-61,71,0.04770355020011979],[113,-61,72,0.04797131064801929],[113,-61,73,0.04824311595568319],[113,-61,74,0.048518157660837315],[113,-61,75,0.04879543980644872],[113,-61,76,0.04907380684431902],[113,-61,77,0.049351972283626845],[113,-61,78,0.04962854805981395],[113,-61,79,0.049902074596983835],[113,-60,64,0.0488677478177439],[113,-60,65,0.04918407176584529],[113,-60,66,0.04950657902199772],[113,-60,67,0.04983464255737384],[113,-60,68,0.050168530259456175],[113,-60,69,0.05050880701737361],[113,-60,70,0.05085565248374892],[113,-60,71,0.051208877592671356],[113,-60,72,0.05156795649677817],[113,-60,73,0.051932059551939386],[113,-60,74,0.05230008733206923],[113,-60,75,0.05267070565235001],[113,-60,76,0.05304238157526047],[113,-60,77,0.053413420370283286],[113,-60,78,0.053782003395018485],[113,-60,79,0.05414622686270044],[113,-59,64,0.05182098552436835],[113,-59,65,0.05221944188981991],[113,-59,66,0.05262542908331599],[113,-59,67,0.053038313607460065],[113,-59,68,0.053458405479721534],[113,-59,69,0.053886265454728834],[113,-59,70,0.05432200250932011],[113,-59,71,0.05476529545514959],[113,-59,72,0.055215430398624636],[113,-59,73,0.05567133951644911],[113,-59,74,0.05613164112696806],[113,-59,75,0.056594681032393034],[113,-59,76,0.0570585751023045],[113,-59,77,0.05752125306461934],[113,-59,78,0.05798050346647685],[113,-59,79,0.058434019764293896],[113,-58,64,0.05482571976669535],[113,-58,65,0.055306740370733506],[113,-58,66,0.05579647242003792],[113,-58,67,0.056294340629520406],[113,-58,68,0.056800684277084144],[113,-58,69,0.05731599753606718],[113,-58,70,0.057840274797675735],[113,-58,71,0.05837303687991606],[113,-58,72,0.05891337199491157],[113,-58,73,0.05945997834511951],[113,-58,74,0.06001120832899838],[113,-58,75,0.06056511433076126],[113,-58,76,0.06111949606343244],[113,-58,77,0.061671949429560884],[113,-58,78,0.062219916859640186],[113,-58,79,0.06276073908461234],[113,-57,64,0.057883958244106415],[113,-57,65,0.05844776872465522],[113,-57,66,0.059021278524180536],[113,-57,67,0.059604030170282686],[113,-57,68,0.060196376512093835],[113,-57,69,0.06079868179551763],[113,-57,70,0.061410781905343256],[113,-57,71,0.062032014651764715],[113,-57,72,0.06266126221814718],[113,-57,73,0.06329699558128919],[113,-57,74,0.06393732088750373],[113,-57,75,0.06458002776123618],[113,-57,76,0.0652226395168699],[113,-57,77,0.06586246523891012],[113,-57,78,0.06649665369090113],[113,-57,79,0.06712224900930727],[113,-56,64,0.06099614796674256],[113,-56,65,0.06164287287641108],[113,-56,66,0.0623000802708097],[113,-56,67,0.06296747982026316],[113,-56,68,0.06364541722592817],[113,-56,69,0.06433406187342328],[113,-56,70,0.06503304539803811],[113,-56,71,0.06574149573349006],[113,-56,72,0.06645807926894504],[113,-56,73,0.06718104531679862],[113,-56,74,0.06790827287887806],[113,-56,75,0.06863731969160176],[113,-56,76,0.06936547352405907],[113,-56,77,0.07008980569703428],[113,-56,78,0.07080722678572424],[113,-56,79,0.07151454446439377],[113,-55,64,0.06415876010136715],[113,-55,65,0.0648881176291518],[113,-55,66,0.06562853923632847],[113,-55,67,0.06637993518337088],[113,-55,68,0.067142618555313],[113,-55,69,0.06791650475711285],[113,-55,70,0.06870098224194368],[113,-55,71,0.06949494949105903],[113,-55,72,0.0702968548348525],[113,-55,73,0.0711047389375385],[113,-55,74,0.0719162799397031],[113,-55,75,0.07272884124547992],[113,-55,76,0.07353952193413221],[113,-55,77,0.07434520976948274],[113,-55,78,0.07514263677496033],[113,-55,79,0.07592843733715576],[113,-54,64,0.06736501399275399],[113,-54,65,0.06817608073329691],[113,-54,66,0.06899860785373929],[113,-54,67,0.0698327201432982],[113,-54,68,0.07067866864966332],[113,-54,69,0.07153606757483932],[113,-54,70,0.07240403699060384],[113,-54,71,0.07328124084651597],[113,-54,72,0.07416592172600939],[113,-54,73,0.07505593869907004],[113,-54,74,0.07594880827637522],[113,-54,75,0.0768417484619426],[113,-54,76,0.07773172589395777],[113,-54,77,0.07861550605664128],[113,-54,78,0.07948970653984107],[113,-54,79,0.08035085331763435],[113,-53,64,0.07060626030882658],[113,-53,65,0.07149741349594223],[113,-53,66,0.0724002656469811],[113,-53,67,0.07331514852477769],[113,-53,68,0.0742422178989145],[113,-53,69,0.07518075363723681],[113,-53,70,0.07612959807609211],[113,-53,71,0.07708719193249901],[113,-53,72,0.07805160049720822],[113,-53,73,0.0790205435177775],[113,-53,74,0.07999142879314405],[113,-53,75,0.08096138949290477],[113,-53,76,0.08192732520654589],[113,-53,77,0.08288594672035043],[113,-53,78,0.08383382451272965],[113,-53,79,0.08476744095244895],[113,-52,64,0.07387250036555673],[113,-52,65,0.0748413897530361],[113,-52,66,0.07582209609588733],[113,-52,67,0.07681512822869203],[113,-52,68,0.0778205099150835],[113,-52,69,0.07883716905018422],[113,-52,70,0.07986367794842135],[113,-52,71,0.08089828273369831],[113,-52,72,0.08193891666026065],[113,-52,73,0.0829832179685675],[113,-52,74,0.08402855232216254],[113,-52,75,0.08507203986251473],[113,-52,76,0.08611058690986231],[113,-52,77,0.08714092232941859],[113,-52,78,0.08815963857399285],[113,-52,79,0.08916323740635107],[113,-51,64,0.07715295667438811],[113,-51,65,0.07819650060257834],[113,-51,66,0.07925190332612118],[113,-51,67,0.08031979873213461],[113,-51,68,0.08140003892969795],[113,-51,69,0.08249119843985615],[113,-51,70,0.0835916048400932],[113,-51,71,0.08469935587862004],[113,-51,72,0.08581231479363444],[113,-51,73,0.08692811136258352],[113,-51,74,0.08804414876160632],[113,-51,75,0.08915761630503588],[113,-51,76,0.09026550812432813],[113,-51,77,0.09136464783527434],[113,-51,78,0.09245171923197354],[113,-51,79,0.09352330303605423],[113,-50,64,0.08043671213299916],[113,-50,65,0.08155111305638377],[113,-50,66,0.08267738748622869],[113,-50,67,0.08381622147080213],[113,-50,68,0.08496725371497743],[113,-50,69,0.0861287204038991],[113,-50,70,0.08729874716906423],[113,-50,71,0.08847534686433652],[113,-50,72,0.08965639094871883],[113,-50,73,0.09083958824711898],[113,-50,74,0.09202247121465423],[113,-50,75,0.09320238981770904],[113,-50,76,0.09437651313205139],[113,-50,77,0.09554183874506378],[113,-50,78,0.096695210035723],[113,-50,79,0.09783334139268067],[113,-49,64,0.0834733653988122],[113,-49,65,0.08474993483503462],[113,-49,66,0.08605247426906137],[113,-49,67,0.08729167267681534],[113,-49,68,0.08850902038609164],[113,-49,69,0.08973625078218328],[113,-49,70,0.09097134435898278],[113,-49,71,0.09221230561914226],[113,-49,72,0.0934571040086545],[113,-49,73,0.0947036244178497],[113,-49,74,0.09594962743165585],[113,-49,75,0.09719271949665673],[113,-49,76,0.09843033315617825],[113,-49,77,0.09965971748758652],[113,-49,78,0.10087793885838231],[113,-49,79,0.10208189209988523],[113,-48,64,0.0863807951251975],[113,-48,65,0.08775266286937475],[113,-48,66,0.08915359609411223],[113,-48,67,0.09057937757640053],[113,-48,68,0.0920121071902165],[113,-48,69,0.09330098683144274],[113,-48,70,0.09459713667747793],[113,-48,71,0.09589862652072527],[113,-48,72,0.0972036077949217],[113,-48,73,0.0985102301650638],[113,-48,74,0.09981657067292299],[113,-48,75,0.10112057566956392],[113,-48,76,0.10242001574558257],[113,-48,77,0.10371245384788697],[113,-48,78,0.10499522674894328],[113,-48,79,0.10626544001089953],[113,-47,64,0.08929050076172192],[113,-47,65,0.09075878323148637],[113,-47,66,0.09225900785824243],[113,-47,67,0.09378703904253193],[113,-47,68,0.09533980764537525],[113,-47,69,0.09681107912685481],[113,-47,70,0.09816510369024656],[113,-47,71,0.09952422675202324],[113,-47,72,0.1008868527529925],[113,-47,73,0.10225146937724927],[113,-47,74,0.1036165411232717],[113,-47,75,0.10498041907170048],[113,-47,76,0.10634126712654723],[113,-47,77,0.10769700497888686],[113,-47,78,0.10904526801286044],[113,-47,79,0.11038338434344118],[113,-46,64,0.09220874977589419],[113,-46,65,0.09377389902804385],[113,-46,66,0.09537350703667234],[113,-46,67,0.09700366068412228],[113,-46,68,0.09866151263649993],[113,-46,69,0.10025597932871035],[113,-46,70,0.10166558880258138],[113,-46,71,0.10308043605875643],[113,-46,72,0.10449923355902749],[113,-46,73,0.10592086207204486],[113,-46,74,0.10734422493189917],[113,-46,75,0.1087681223929723],[113,-46,76,0.11019114642828441],[113,-46,77,0.11161159628426487],[113,-46,78,0.11302741506840558],[113,-46,79,0.11443614760795957],[113,-45,64,0.09514044377935924],[113,-45,65,0.09680217522321875],[113,-45,66,0.09850039385119734],[113,-45,67,0.10023155791328328],[113,-45,68,0.10199312464543499],[113,-45,69,0.10362669290458244],[113,-45,70,0.10509051114567707],[113,-45,71,0.10656016399049277],[113,-45,72,0.10803470850821703],[113,-45,73,0.10951345341562425],[113,-45,74,0.11099577109931104],[113,-45,75,0.11248093405704933],[113,-45,76,0.11396797617836213],[113,-45,77,0.11545557924285332],[113,-45,78,0.11694198497032532],[113,-45,79,0.11842493290952862],[113,-44,64,0.09808880301081643],[113,-44,65,0.09984604094616194],[113,-44,66,0.10164119628529177],[113,-44,67,0.10347125156377093],[113,-44,68,0.10533405898965266],[113,-44,69,0.10691598271171487],[113,-44,70,0.108433532394475],[113,-44,71,0.10995802700937668],[113,-44,72,0.1114888845645086],[113,-44,73,0.113025855028007],[113,-44,74,0.11456878806033076],[113,-44,75,0.11611742983009514],[113,-44,76,0.11767124940689164],[113,-44,77,0.1192292951751431],[113,-44,78,0.12079008165984499],[113,-44,79,0.12235150709806657],[113,-43,64,0.10105510841058406],[113,-43,65,0.10290594952163343],[113,-43,66,0.10479545212460616],[113,-43,67,0.10672127561464026],[113,-43,68,0.1085564144536553],[113,-43,69,0.11011852174395316],[113,-43,70,0.11169017663131449],[113,-43,71,0.1132704333549673],[113,-43,72,0.11485906569985538],[113,-43,73,0.11645625590987913],[113,-43,74,0.11806231697712605],[113,-43,75,0.1196774489262337],[113,-43,76,0.12130152965927271],[113,-43,77,0.12293394086893118],[113,-43,78,0.12457342946530273],[113,-43,79,0.1262180048940009],[113,-42,64,0.10403850279005444],[113,-42,65,0.10598019778334994],[113,-42,66,0.10796054963488082],[113,-42,67,0.10997804217261063],[113,-42,68,0.11161563977161483],[113,-42,69,0.11323099322210183],[113,-42,70,0.1148579012515367],[113,-42,71,0.11649562344574008],[113,-42,72,0.11814426205685798],[113,-42,73,0.11980440024964724],[113,-42,74,0.12147677870073235],[113,-42,75,0.1231620112468666],[113,-42,76,0.12486034021653405],[113,-42,77,0.1265714320130413],[113,-42,78,0.12829421344498604],[113,-42,79,0.13002674922106425],[113,-41,64,0.10703585278788072],[113,-41,65,0.10906480640716174],[113,-41,66,0.11113162865281892],[113,-41,67,0.11292860954948386],[113,-41,68,0.11458230161186396],[113,-41,69,0.1162521360457715],[113,-41,70,0.1179361167555448],[113,-41,71,0.11963366345892427],[113,-41,72,0.12134515734651284],[113,-41,73,0.12307152926819695],[113,-41,74,0.12481389128340376],[113,-41,75,0.12657321234389635],[113,-41,76,0.1283500388078805],[113,-41,77,0.13014426040912702],[113,-41,78,0.13195492222232183],[113,-41,79,0.13378008307493705],[113,-40,64,0.1100416734796145],[113,-40,65,0.11215346316540788],[113,-40,66,0.11406671321327906],[113,-40,67,0.11574987622347674],[113,-40,68,0.11745661760385782],[113,-40,69,0.11918273342914276],[113,-40,70,0.12092615308797543],[113,-40,71,0.12268638956237506],[113,-40,72,0.12446403174498899],[113,-40,73,0.1262602841355402],[113,-40,74,0.12807655482946345],[113,-40,75,0.1299140926345596],[113,-40,76,0.13177367407302862],[113,-40,77,0.13365534094200146],[113,-40,78,0.1355581890125928],[113,-40,79,0.13617355572154763],[113,-39,64,0.110044843819317],[113,-39,65,0.11196534689947713],[113,-39,66,0.11359720433740159],[113,-39,67,0.11526276141044858],[113,-39,68,0.11695507497333192],[113,-39,69,0.11866973954399944],[113,-39,70,0.12040461863456035],[113,-39,71,0.1221592522006216],[113,-39,72,0.1239343203755611],[113,-39,73,0.12573115712278574],[113,-39,74,0.12755131475285525],[113,-39,75,0.1290315921715478],[113,-39,76,0.13126664362997018],[113,-39,77,0.13202067273656656],[113,-39,78,0.12890123803135958],[113,-39,79,0.12832757465564001],[113,-38,64,0.1099035512735953],[113,-38,65,0.11147044005963233],[113,-38,66,0.11308300644008708],[113,-38,67,0.1147336342313082],[113,-38,68,0.1164145633919205],[113,-38,69,0.11812111732020716],[113,-38,70,0.11985100509867118],[113,-38,71,0.12021727596058007],[113,-38,72,0.11901681755639267],[113,-38,73,0.12281606012825924],[113,-38,74,0.12289623173643328],[113,-38,75,0.12119741003530599],[113,-38,76,0.12480123234424995],[113,-38,77,0.1245549874243711],[113,-38,78,0.12293722999974818],[113,-38,79,0.12079323154666655],[113,-37,64,0.10939407060236353],[113,-37,65,0.11093832975875087],[113,-37,66,0.11253392344757945],[113,-37,67,0.11417224575076784],[113,-37,68,0.11584469790434851],[113,-37,69,0.1175462535612697],[113,-37,70,0.11927437135723354],[113,-37,71,0.11752529614319969],[113,-37,72,0.11621374460117007],[113,-37,73,0.11725942978719274],[113,-37,74,0.11852864738201224],[113,-37,75,0.11685916346774622],[113,-37,76,0.11943885574435209],[113,-37,77,0.11780472140807972],[113,-37,78,0.1183915926985188],[113,-37,79,0.11502341377008506],[113,-36,64,0.10885528642125634],[113,-36,65,0.11037903596105075],[113,-36,66,0.11195992474569826],[113,-36,67,0.11358841680552637],[113,-36,68,0.11525506082884121],[113,-36,69,0.11695439499821161],[113,-36,70,0.11868352643034492],[113,-36,71,0.11722228182893597],[113,-36,72,0.11592994178476533],[113,-36,73,0.11562736718404304],[113,-36,74,0.11708664698670354],[113,-36,75,0.1151431060014246],[113,-36,76,0.11707649568946599],[113,-36,77,0.11422116091349423],[113,-36,78,0.1154900755103174],[113,-36,79,0.11282006851683875],[113,-35,64,0.10829721210260214],[113,-35,65,0.1098025593116512],[113,-35,66,0.11137087399694615],[113,-35,67,0.11299177127333498],[113,-35,68,0.11465494191649762],[113,-35,69,0.1163543979889793],[113,-35,70,0.1180867915299619],[113,-35,71,0.11756901966874904],[113,-35,72,0.11648989946977752],[113,-35,73,0.1176003796849502],[113,-35,74,0.11845366271826292],[113,-35,75,0.11554499997993181],[113,-35,76,0.11653854013241333],[113,-35,77,0.11509507486456917],[113,-35,78,0.11548672669985312],[113,-35,79,0.11333012693098246],[113,-34,64,0.10772964240362402],[113,-34,65,0.10921859714980542],[113,-34,66,0.1107762467314917],[113,-34,67,0.1123914579214703],[113,-34,68,0.11405306685934159],[113,-34,69,0.11575446630142767],[113,-34,70,0.11749174989627101],[113,-34,71,0.119263009973574],[113,-34,72,0.11892865018579979],[113,-34,73,0.12081040764405618],[113,-34,74,0.1215990916281176],[113,-34,75,0.12001203686782295],[113,-34,76,0.11912729616989305],[113,-34,77,0.11817902474112782],[113,-34,78,0.11739135651918638],[113,-34,79,0.11511104569595344],[113,-33,64,0.10716185976144106],[113,-33,65,0.10863624768900144],[113,-33,66,0.11018483593501156],[113,-33,67,0.11179586008593602],[113,-33,68,0.11345731343281812],[113,-33,69,0.11516187630604839],[113,-33,70,0.11690498379390642],[113,-33,71,0.11868412410293792],[113,-33,72,0.12049824517863308],[113,-33,73,0.12234721510200719],[113,-33,74,0.12423133722033111],[113,-33,75,0.12615092086075272],[113,-33,76,0.1250045585632693],[113,-33,77,0.12182668618329821],[113,-33,78,0.12074331226212451],[113,-33,79,0.11822556197910755],[113,-32,64,0.10660232822963779],[113,-32,65,0.10806370160063213],[113,-32,66,0.1096044448890892],[113,-32,67,0.11121229246228702],[113,-32,68,0.1128744145838513],[113,-32,69,0.11458268892467371],[113,-32,70,0.11633179805403437],[113,-32,71,0.11811853543323654],[113,-32,72,0.11994121936555523],[113,-32,73,0.1217991593809518],[113,-32,74,0.12369217599044209],[113,-32,75,0.12562017463257177],[113,-32,76,0.12758277452634467],[113,-32,77,0.12733059346689796],[113,-32,78,0.1265804234411949],[113,-32,79,0.12256869200320585],[113,-31,64,0.10605837431942147],[113,-31,65,0.10750792027318183],[113,-31,66,0.10904156655239516],[113,-31,67,0.11064668431770859],[113,-31,68,0.11230964779951834],[113,-31,69,0.11402144769957076],[113,-31,70,0.1157759295599171],[113,-31,71,0.11756911378258507],[113,-31,72,0.11939862020995112],[113,-31,73,0.12126314330684576],[113,-31,74,0.12316197885245851],[113,-31,75,0.1250946029354908],[113,-31,76,0.12706030393698747],[113,-31,77,0.1290578680761445],[113,-31,78,0.1310853189809401],[113,-31,79,0.1289054326727201],[113,-30,64,0.1055358540444769],[113,-30,65,0.1069743000526332],[113,-30,66,0.10850104880123529],[113,-30,67,0.110103248459952],[113,-30,68,0.11176651011204178],[113,-30,69,0.1134808623618286],[113,-30,70,0.11523924208119712],[113,-30,71,0.11703683390407357],[113,-30,72,0.11887050783274289],[113,-30,73,0.12073830519280586],[113,-30,74,0.1226389738166064],[113,-30,75,0.1245715532189185],[113,-30,76,0.12653501041957743],[113,-30,77,0.1285279269601069],[113,-30,78,0.13054823755115544],[113,-30,79,0.1325930206719643],[113,-29,64,0.10503880550149784],[113,-29,65,0.10646632179949829],[113,-29,66,0.10798574487364106],[113,-29,67,0.10958413531931151],[113,-29,68,0.11124637811054819],[113,-29,69,0.11296147728612321],[113,-29,70,0.11472140586322767],[113,-29,71,0.11652046901571957],[113,-29,72,0.11835475604183329],[113,-29,73,0.12022163810152756],[113,-29,74,0.1221193125758906],[113,-29,75,0.12404639478423786],[113,-29,76,0.12600155768605723],[113,-29,77,0.12798322008958543],[113,-29,78,0.12998928378257976],[113,-29,79,0.13201691989100084],[113,-28,64,0.10456908634545543],[113,-28,65,0.10598518512084747],[113,-28,66,0.10749614837924745],[113,-28,67,0.10908907151221849],[113,-28,68,0.11074815233602923],[113,-28,69,0.11246132421796812],[113,-28,70,0.11421956136947503],[113,-28,71,0.11601626835970183],[113,-28,72,0.11784674656350115],[113,-28,73,0.11970770359208643],[113,-28,74,0.12159680653452475],[113,-28,75,0.12351227972119283],[113,-28,76,0.1254525476129686],[113,-28,77,0.12741592331731508],[113,-28,78,0.12940034313070112],[113,-28,79,0.13140314740316486],[113,-27,64,0.10419510936984804],[113,-27,65,0.10552942664936953],[113,-27,66,0.1070300122450743],[113,-27,67,0.10861498225647653],[113,-27,68,0.11026788543037945],[113,-27,69,0.11197555864659832],[113,-27,70,0.11372796655454756],[113,-27,71,0.115517618175883],[113,-27,72,0.11733904657655392],[113,-27,73,0.1191883286697622],[113,-27,74,0.12106264595919046],[113,-27,75,0.12295988691476827],[113,-27,76,0.12487829156718686],[113,-27,77,0.12681613880765352],[113,-27,78,0.12877147678226045],[113,-27,79,0.13074189667293537],[113,-26,64,0.10472432771693903],[113,-26,65,0.10509452174153096],[113,-26,66,0.10658195096051393],[113,-26,67,0.10815559699404657],[113,-26,68,0.10979839338855302],[113,-26,69,0.11149607916694125],[113,-26,70,0.11323762700803752],[113,-26,71,0.11501468543014866],[113,-26,72,0.11682106889519071],[113,-26,73,0.11865228529693077],[113,-26,74,0.1205051016314984],[113,-26,75,0.12237714853091815],[113,-26,76,0.12426656423541181],[113,-26,77,0.12617167848311336],[113,-26,78,0.12809073670295687],[113,-26,79,0.13002166480487093],[113,-25,64,0.10523238208728915],[113,-25,65,0.10468446864814333],[113,-25,66,0.10614302516388967],[113,-25,67,0.10770105382314558],[113,-25,68,0.10932888215613717],[113,-25,69,0.1110111787906091],[113,-25,70,0.11273597452591981],[113,-25,71,0.11449412599457026],[113,-25,72,0.11627881175155182],[113,-25,73,0.11808506329962147],[113,-25,74,0.11990933184680698],[113,-25,75,0.12174909147393798],[113,-25,76,0.12360247928532354],[113,-25,77,0.12546797302045673],[113,-25,78,0.12734410651517195],[113,-25,79,0.1292292233139285],[113,-24,64,0.10570553384646308],[113,-24,65,0.10518085300423434],[113,-24,66,0.10570094205921873],[113,-24,67,0.10723887341823542],[113,-24,68,0.10884670029333329],[113,-24,69,0.11050808084685741],[113,-24,70,0.11221018115234074],[113,-24,71,0.11394315587771248],[113,-24,72,0.11569964614902181],[113,-24,73,0.11747431023377117],[113,-24,74,0.11926338784641684],[113,-24,75,0.12106429875809349],[113,-24,76,0.12287527628743387],[113,-24,77,0.12469503615514359],[113,-24,78,0.1265224810980827],[113,-24,79,0.12835644155577497],[113,-23,64,0.1061277006255114],[113,-23,65,0.10562266763465153],[113,-23,66,0.10524308795135877],[113,-23,67,0.1067573375183501],[113,-23,68,0.10834106309210594],[113,-23,69,0.10997700421283305],[113,-23,70,0.11165155400412823],[113,-23,71,0.11335425538587157],[113,-23,72,0.11507729938815092],[113,-23,73,0.11681505429449557],[113,-23,74,0.11856362642660466],[113,-23,75,0.12032045326002729],[113,-23,76,0.12208392945425058],[113,-23,77,0.12385306628709347],[113,-23,78,0.12562718489849786],[113,-23,79,0.12740564366939794],[113,-22,64,0.10648405910015359],[113,-22,65,0.10599594692824997],[113,-22,66,0.10548926685707205],[113,-22,67,0.1062459693740768],[113,-22,68,0.10780253304595272],[113,-22,69,0.10940963547173385],[113,-22,70,0.11105300057643322],[113,-22,71,0.11272164790680532],[113,-22,72,0.11440739287207104],[113,-22,73,0.1161043757483399],[113,-22,74,0.11780862026754103],[113,-22,75,0.11951762248728359],[113,-22,76,0.12122997053158367],[113,-22,77,0.1229449956996371],[113,-22,78,0.12466245535712721],[113,-22,79,0.12638224794849207],[113,-21,64,0.1064890031707126],[113,-21,65,0.10615529793249234],[113,-21,66,0.1057040214173332],[113,-21,67,0.105568041841908],[113,-21,68,0.10701511541141752],[113,-21,69,0.10849975811009417],[113,-21,70,0.11003151211310615],[113,-21,71,0.11161587184478874],[113,-21,72,0.11325482256316612],[113,-21,73,0.11494735195792391],[113,-21,74,0.11668993411768833],[113,-21,75,0.11847698519614239],[113,-21,76,0.120301290114351],[113,-21,77,0.121975607279032],[113,-21,78,0.12363454700616211],[113,-21,79,0.12529387015300694],[113,-20,64,0.10615655785132525],[113,-20,65,0.1058190860589742],[113,-20,66,0.10536730313458503],[113,-20,67,0.10481045478684788],[113,-20,68,0.10582770140787497],[113,-20,69,0.1072827913386371],[113,-20,70,0.1087891598645872],[113,-20,71,0.11035275651398622],[113,-20,72,0.11197592661323781],[113,-20,73,0.11365791316411718],[113,-20,74,0.11539533390779605],[113,-20,75,0.117182632912471],[113,-20,76,0.11901250601872056],[113,-20,77,0.12087629950247201],[113,-20,78,0.12255151405615623],[113,-20,79,0.12415009215455047],[113,-19,64,0.10577480053713471],[113,-19,65,0.10543053336757667],[113,-19,66,0.10497569429329423],[113,-19,67,0.10441901489893698],[113,-19,68,0.10463246298246837],[113,-19,69,0.10605751120617472],[113,-19,70,0.10753786308718583],[113,-19,71,0.1090798537329842],[113,-19,72,0.1106861601650774],[113,-19,73,0.11235628560833975],[113,-19,74,0.1140870223666243],[113,-19,75,0.11587289263791958],[113,-19,76,0.1177065666088455],[113,-19,77,0.11957925718253488],[113,-19,78,0.1214229885720396],[113,-19,79,0.12296222934351306],[113,-18,64,0.10535518137390525],[113,-18,65,0.10500021275580876],[113,-18,66,0.10453875699389709],[113,-18,67,0.10397893889751668],[113,-18,68,0.1034359942928438],[113,-18,69,0.10482911834983415],[113,-18,70,0.10628128539129374],[113,-18,71,0.10779916074700725],[113,-18,72,0.10938574605818077],[113,-18,73,0.11104083626891487],[113,-18,74,0.11276145933088545],[113,-18,75,0.1145422980028589],[113,-18,76,0.11637609310193574],[113,-18,77,0.11825402756482564],[113,-18,78,0.1201660907016353],[113,-18,79,0.12174089005804119],[113,-17,64,0.10490449534349928],[113,-17,65,0.10453425064855121],[113,-17,66,0.10406184821196848],[113,-17,67,0.10349471904401673],[113,-17,68,0.10284952206675639],[113,-17,69,0.10359592719420856],[113,-17,70,0.10501649679125646],[113,-17,71,0.10650641716161231],[113,-17,72,0.10806902187579565],[113,-17,73,0.10970444676283564],[113,-17,74,0.11141003636353233],[113,-17,75,0.11318073747460422],[113,-17,76,0.11500947917052158],[113,-17,77,0.11688753867691828],[113,-17,78,0.11880489247774025],[113,-17,79,0.12049019958444013],[113,-16,64,0.10440831662054109],[113,-16,65,0.10401859193005922],[113,-16,66,0.10353141100506535],[113,-16,67,0.10295344408024526],[113,-16,68,0.10230066947133062],[113,-16,69,0.1023423313653361],[113,-16,70,0.10372883278712668],[113,-16,71,0.10518798978416297],[113,-16,72,0.10672344884256035],[113,-16,73,0.10833570781484386],[113,-16,74,0.11002248002268027],[113,-16,75,0.11177905120731974],[113,-16,76,0.11359862875493704],[113,-16,77,0.11547268259579724],[113,-16,78,0.11739127716679026],[113,-16,79,0.11920345007773153],[113,-15,64,0.1038505427202801],[113,-15,65,0.10343773802956285],[113,-15,66,0.10293267865678579],[113,-15,67,0.10234122790069525],[113,-15,68,0.10167849659453145],[113,-15,69,0.1010524724086341],[113,-15,70,0.10240362765961868],[113,-15,71,0.1038304974997152],[113,-15,72,0.1053369919235468],[113,-15,73,0.10692395896517735],[113,-15,74,0.108589498775704],[113,-15,75,0.11032927693318763],[113,-15,76,0.11213683646017876],[113,-15,77,0.11400390797990236],[113,-15,78,0.11592071741405136],[113,-15,79,0.11787308352414498],[113,-14,64,0.10321904396662966],[113,-14,65,0.10278012553052362],[113,-14,66,0.10225471879008072],[113,-14,67,0.1016478519564504],[113,-14,68,0.10097358923240554],[113,-14,69,0.10024851382146974],[113,-14,70,0.10102926580698346],[113,-14,71,0.10242323323759521],[113,-14,72,0.10389987981910977],[113,-14,73,0.10546036647302966],[113,-14,74,0.1071031717075779],[113,-14,75,0.1088243554557903],[113,-14,76,0.11061782854714883],[113,-14,77,0.1124756272811146],[113,-14,78,0.11438819252353881],[113,-14,79,0.11634465271301671],[113,-13,64,0.10250504960598425],[113,-13,65,0.10203751592424858],[113,-13,66,0.1014898365583467],[113,-13,67,0.1008661919502367],[113,-13,68,0.10017943186032532],[113,-13,69,0.09944529731884999],[113,-13,70,0.0995967335602334],[113,-13,71,0.10095777927636626],[113,-13,72,0.10240429265533019],[113,-13,73,0.1039376914764161],[113,-13,74,0.10555680424756507],[113,-13,75,0.1072580799005537],[113,-13,76,0.10903581039249319],[113,-13,77,0.11088236572282914],[113,-13,78,0.11278844080833422],[113,-13,79,0.11474331360284615],[113,-12,64,0.07567004400456896],[113,-12,65,0.08922946754076012],[113,-12,66,0.10063302721945076],[113,-12,67,0.09999169198519721],[113,-12,68,0.0992919127805575],[113,-12,69,0.0985483794413699],[113,-12,70,0.09809920702269723],[113,-12,71,0.0994276532972535],[113,-12,72,0.10084407422536405],[113,-12,73,0.10235007562055343],[113,-12,74,0.10394479346395244],[113,-12,75,0.10562504590726564],[113,-12,76,0.10738550565327981],[113,-12,77,0.10921889226612255],[113,-12,78,0.11111618387783909],[113,-12,79,0.11306684768050414],[113,-11,64,0.03939384832332293],[113,-11,65,0.04808768917788693],[113,-11,66,0.05780879295240393],[113,-11,67,0.06854148117876935],[113,-11,68,0.08026655105913315],[113,-11,69,0.09295797308383998],[113,-11,70,0.09677453017299613],[113,-11,71,0.09782798524633353],[113,-11,72,0.09921446880688699],[113,-11,73,0.10069284414823573],[113,-11,74,0.10226250289390613],[113,-11,75,0.10392060271256366],[113,-11,76,0.10566218707424221],[113,-11,77,0.10748033250206097],[113,-11,78,0.10936632281188288],[113,-11,79,0.11130984973410352],[113,-10,64,0.01761210538331675],[113,-10,65,0.022464506600343995],[113,-10,66,0.028152121814048348],[113,-10,67,0.034684842856318655],[113,-10,68,0.04206859121261634],[113,-10,69,0.05030308335632894],[113,-10,70,0.05937761285212685],[113,-10,71,0.06927164434870346],[113,-10,72,0.07995555816492844],[113,-10,73,0.09139144604057846],[113,-10,74,0.10050614689362768],[113,-10,75,0.10214080506545938],[113,-10,76,0.10386169884297458],[113,-10,77,0.10566226334423506],[113,-10,78,0.10753410607266195],[113,-10,79,0.10946717591722241],[113,-9,64,0.011842459239400017],[113,-9,65,0.012768110713613372],[113,-9,66,0.01367083816214665],[113,-9,67,0.01476623954596059],[113,-9,68,0.018770901424000935],[113,-9,69,0.023465732113770423],[113,-9,70,0.028861632447633765],[113,-9,71,0.03495990293716443],[113,-9,72,0.04175290781539117],[113,-9,73,0.04922477303056111],[113,-9,74,0.057352119485871614],[113,-9,75,0.06610483291401952],[113,-9,76,0.07544687131573566],[113,-9,77,0.08533710992505732],[113,-9,78,0.09573022229427285],[113,-9,79,0.10657759444694985],[113,-8,64,0.010337925586782929],[113,-8,65,0.011233738696503393],[113,-8,66,0.01211505572698197],[113,-8,67,0.012980970911946658],[113,-8,68,0.013835257078261411],[113,-8,69,0.014685452029535606],[113,-8,70,0.015538632576964825],[113,-8,71,0.0164010157729717],[113,-8,72,0.018454458918310154],[113,-8,73,0.02278108265943652],[113,-8,74,0.027667763284123223],[113,-8,75,0.033102738637096826],[113,-8,76,0.039067807968941826],[113,-8,77,0.04553908406916415],[113,-8,78,0.052487774742527096],[113,-8,79,0.059880992453876104],[113,-7,64,0.008813373394803104],[113,-7,65,0.009680007961466727],[113,-7,66,0.010540531891617258],[113,-7,67,0.011393319336611224],[113,-7,68,0.012240327484918597],[113,-7,69,0.013087283239966323],[113,-7,70,0.013939959059743387],[113,-7,71,0.01480369890766007],[113,-7,72,0.01568308166054835],[113,-7,73,0.016581639964572896],[113,-7,74,0.017501634692135785],[113,-7,75,0.01844388503382865],[113,-7,76,0.019407654139667548],[113,-7,77,0.020975289166021257],[113,-7,78,0.02517136486014906],[113,-7,79,0.029763554637659798],[113,-6,64,0.007272420602289312],[113,-6,65,0.008110811586885917],[113,-6,66,0.008951296434424896],[113,-6,67,0.009791570815345508],[113,-6,68,0.010631774103348866],[113,-6,69,0.011475768240971997],[113,-6,70,0.01232795802193138],[113,-6,71,0.01319274788225665],[113,-6,72,0.014074131818492463],[113,-6,73,0.0149753443464543],[113,-6,74,0.015898572719033294],[113,-6,75,0.016844730489356707],[113,-6,76,0.017813292373009285],[113,-6,77,0.018802190230849093],[113,-6,78,0.01980776986220176],[113,-6,79,0.020824808168575154],[113,-5,64,0.0057188833760830945],[113,-5,65,0.006530203051892381],[113,-5,66,0.007351506282868521],[113,-5,67,0.008179853887849758],[113,-5,68,0.009013596533658392],[113,-5,69,0.009854716427090241],[113,-5,70,0.010706217861320304],[113,-5,71,0.011571521955155645],[113,-5,72,0.012453988885698004],[113,-5,73,0.01335650606482621],[113,-5,74,0.014281142539422588],[113,-5,75,0.015228869750926693],[113,-5,76,0.01619934864544209],[113,-5,77,0.017190782982051997],[113,-5,78,0.01819983854412772],[113,-5,79,0.019221627817826683],[113,-4,64,0.004156637246368932],[113,-4,65,0.004942252762915934],[113,-4,66,0.00574530209815011],[113,-4,67,0.006562255693989919],[113,-4,68,0.007389735567176144],[113,-4,69,0.008227869718032514],[113,-4,70,0.009078260866975697],[113,-4,71,0.009943327062419984],[113,-4,72,0.01082576313020631],[113,-4,73,0.011728072202161663],[113,-4,74,0.012652167660311391],[113,-4,75,0.013599045678115805],[113,-4,76,0.014568528385273206],[113,-4,77,0.015559077528983832],[113,-4,78,0.016567678351962198],[113,-4,79,0.01758979325743823],[113,-3,64,0.002589536890778162],[113,-3,65,0.0033509620950770073],[113,-3,66,0.004136720615649921],[113,-3,67,0.004942736712161802],[113,-3,68,0.005763993436947444],[113,-3,69,0.006598830097326035],[113,-3,70,0.007447478764121671],[113,-3,71,0.008311359283128504],[113,-3,72,0.009192487775726394],[113,-3,73,0.010092958527611197],[113,-3,74,0.011014499653142605],[113,-3,75,0.011958102758486808],[113,-3,76,0.01292372666296334],[113,-3,77,0.013910075075780329],[113,-3,78,0.01491444796454038],[113,-3,79,0.015932666193988608],[113,-2,64,0.0010213958429008928],[113,-2,65,0.0017602361940081016],[113,-2,66,0.0025296639409040167],[113,-2,67,0.003325099992201716],[113,-2,68,0.004140005333710766],[113,-2,69,0.0049710342661352476],[113,-2,70,0.005817110206637379],[113,-2,71,0.006678684025078761],[113,-2,72,0.00755709815412318],[113,-2,73,0.008454026534712585],[113,-2,74,0.00937099082910747],[113,-2,75,0.010308953162045826],[113,-2,76,0.01126798547960199],[113,-2,77,0.012247015446185713],[113,-2,78,0.013243648632773795],[113,-2,79,0.014254066585371932],[113,-1,64,-5.439725651689439E-4],[113,-1,65,1.7391682082907843E-4],[113,-1,66,9.279270398869094E-4],[113,-1,67,0.001713016061187414],[113,-1,68,0.002521263287676608],[113,-1,69,0.003347776414814618],[113,-1,70,0.004190261101032981],[113,-1,71,0.005048251674858486],[113,-1,72,0.005922439880299605],[113,-1,73,0.0068140810335170976],[113,-1,74,0.007724478060852234],[113,-1,75,0.008654543711358712],[113,-1,76,0.009604441060670052],[113,-1,77,0.010573302248752817],[113,-1,78,0.011559025221928965],[113,-1,79,0.012558148080990393],[113,0,64,-0.0021026517059747505],[113,0,65,-0.0014041234626274127],[113,0,66,-6.647153205477741E-4],[113,0,67,1.1010469918834522E-4],[113,0,68,9.111935358535507E-4],[113,0,69,0.0017322801341937745],[113,0,70,0.0025699686646840237],[113,0,71,0.0034229504741655984],[113,0,72,0.004291306649358219],[113,0,73,0.0051758887152026705],[113,0,74,0.0060777779689045325],[113,0,75,0.0069978237704012075],[113,0,76,0.007936260930249314],[113,0,77,0.008892406158326887],[113,0,78,0.009864433361508924],[113,0,79,0.010849227407162206],[113,1,64,-0.0036504533438663574],[113,1,65,-0.002969823825294053],[113,1,66,-0.002244360510821534],[113,1,67,-0.0014799249737891859],[113,1,68,-6.867113826164497E-4],[113,1,69,1.2782053290063975E-4],[113,1,70,9.593101264778974E-4],[113,1,71,0.0018056973888934131],[113,1,72,0.0026665082983006938],[113,1,73,0.0035422182270672302],[113,1,74,0.004433693929746951],[113,1,75,0.005341714455442987],[113,1,76,0.006266571146572161],[113,1,77,0.007207746706912739],[113,1,78,0.008163673145219562],[113,1,79,0.009131568228273193],[113,2,64,-0.005182682569972666],[113,2,65,-0.0045187132164159005],[113,2,66,-0.003806768241159531],[113,2,67,-0.0030530759328401677],[113,2,68,-0.002268705978674187],[113,2,69,-0.0014621038793209663],[113,2,70,-6.384445740771944E-4],[113,2,71,1.9956617423133642E-4],[113,2,72,0.0010509682303666333],[113,2,73,0.0019159007993975452],[113,2,74,0.0027950339427333247],[113,2,75,0.0036890782584676606],[113,2,76,0.004598372906019475],[113,2,77,0.005522551976064209],[113,2,78,0.006460289030374659],[113,2,79,0.007409119464182523],[113,3,64,-0.002373181035882664],[113,3,65,-0.004450727352838223],[113,3,66,-0.005347092461176286],[113,3,67,-0.004604807707388419],[113,3,68,-0.0038305507965936355],[113,3,69,-0.0030335489342313607],[113,3,70,-0.0022196351698623956],[113,3,71,-0.0013920465946044088],[113,3,72,-5.521496395699976E-4],[113,3,73,2.999104982032655E-4],[113,3,74,0.0011646368554374406],[113,3,75,0.002042684502472772],[113,3,76,0.002934441338590695],[113,3,77,0.0038396859006679736],[113,3,78,0.004757322028236096],[113,3,79,0.005685190057711057],[113,4,64,2.6577017923352247E-4],[113,4,65,-3.994456726387684E-4],[113,4,66,-0.0012696468879234023],[113,4,67,-0.002406666970973603],[113,4,68,-0.003866581150160315],[113,4,69,-0.00458184619500478],[113,4,70,-0.003779963108327614],[113,4,71,-0.002965212251118925],[113,4,72,-0.002139278865994261],[113,4,73,-0.0013025296160480955],[113,4,74,-4.5458557007558507E-4],[113,4,75,4.05179809109156E-4],[113,4,76,0.0012772178819085939],[113,4,77,0.0021614572886097675],[113,4,78,0.0030570315071749097],[113,4,79,0.003962081206191026],[113,5,64,3.564465639020902E-4],[113,5,65,4.0657603655450984E-5],[113,5,66,-1.9771735979344767E-4],[113,5,67,-4.428432274459192E-4],[113,5,68,-7.726088780052164E-4],[113,5,69,-0.001251413339585637],[113,5,70,-0.0019299557934333883],[113,5,71,-0.002846836703434517],[113,5,72,-0.003706255013370432],[113,5,73,-0.0028878172894620927],[113,5,74,-0.0020595929069734094],[113,5,75,-0.0012209389263454981],[113,5,76,-3.7130667200914057E-4],[113,5,77,4.894072034855274E-4],[113,5,78,0.001360582770468064],[113,5,79,0.002240671704512441],[113,6,64,0.001645633954564053],[113,6,65,6.15622961463032E-4],[113,6,66,-2.875106606411704E-5],[113,6,67,-3.9400275662509245E-4],[113,6,68,-5.797969504861125E-4],[113,6,69,-6.71645953809216E-4],[113,6,70,-7.406436367573449E-4],[113,6,71,-8.450230270416825E-4],[113,6,72,-0.0010316492784459381],[113,6,73,-0.0013374377454950905],[113,6,74,-0.0017906923715675148],[113,6,75,-0.0024123600001151042],[113,6,76,-0.002009720580796793],[113,6,77,-0.0011759282097164717],[113,6,78,-3.3230340787393563E-4],[113,6,79,5.199515959906376E-4],[113,7,64,0.007882135265717299],[113,7,65,0.005073730274222348],[113,7,66,0.0029850021224320377],[113,7,67,0.0014871218062058873],[113,7,68,4.58654365417279E-4],[113,7,69,-2.0704489618589433E-4],[113,7,70,-6.015084958349429E-4],[113,7,71,-8.026707330428522E-4],[113,7,72,-8.76323651564097E-4],[113,7,73,-8.775031634981344E-4],[113,7,74,-8.51799956332638E-4],[113,7,75,-8.365906746818586E-4],[113,7,76,-8.62185471647731E-4],[113,7,77,-9.52888521751787E-4],[113,7,78,-0.0011279685583294918],[113,7,79,-0.0011989337235390734],[113,8,64,0.022810097854259886],[113,8,65,0.017161486011007785],[113,8,66,0.012591405087627424],[113,8,67,0.008949296320779973],[113,8,68,0.006092256655449702],[113,8,69,0.003892621410827546],[113,8,70,0.0022384264825447927],[113,8,71,0.0010319749252162122],[113,8,72,1.8843643958623416E-4],[113,8,73,-3.654987701728027E-4],[113,8,74,-6.929009629536027E-4],[113,8,75,-8.47809073659626E-4],[113,8,76,-8.763606280477966E-4],[113,8,77,-8.178391353695122E-4],[113,8,78,-7.056356472840715E-4],[113,8,79,-5.681218615998476E-4],[113,9,64,0.050143049333696295],[113,9,65,0.04060643703803724],[113,9,66,0.032526627950350696],[113,9,67,0.025734003479983995],[113,9,68,0.020065871694236473],[113,9,69,0.015374523569061129],[113,9,70,0.011528092739658687],[113,9,71,0.00840935561759269],[113,9,72,0.005914485884620296],[113,9,73,0.003951811731363081],[113,9,74,0.002440603900324599],[113,9,75,0.001309913555432328],[113,9,76,4.974729675799461E-4],[113,9,77,-5.133201686297046E-5],[113,9,78,-3.844114569018001E-4],[113,9,79,-5.438383212919547E-4],[113,10,64,0.06364596063152432],[113,10,65,0.06252453534363958],[113,10,66,0.06142702745550992],[113,10,67,0.0555438306201321],[113,10,68,0.04609898951950039],[113,10,69,0.037969250093100794],[113,10,70,0.031005390204398513],[113,10,71,0.025072270586815444],[113,10,72,0.020048025335351004],[113,10,73,0.015823121886754516],[113,10,74,0.012299357631725773],[113,10,75,0.00938884014161677],[113,10,76,0.007012983793841385],[113,10,77,0.00510154562877902],[113,10,78,0.0035917163149263107],[113,10,79,0.0024272772388309756],[113,11,64,0.06141008188394742],[113,11,65,0.06026495505514753],[113,11,66,0.05914194877552914],[113,11,67,0.05803399633312215],[113,11,68,0.05692865170105926],[113,11,69,0.05581603437593431],[113,11,70,0.05469020424801527],[113,11,71,0.05354842078080742],[113,11,72,0.04630970230286784],[113,11,73,0.03897967702089361],[113,11,74,0.032621909832611824],[113,11,75,0.027132588022123375],[113,11,76,0.02241734980779907],[113,11,77,0.018390518253765437],[113,11,78,0.014974329648094257],[113,11,79,0.012098183753309358],[113,12,64,0.05918089270768817],[113,12,65,0.058013646555155333],[113,12,66,0.05686634608414907],[113,12,67,0.055732303144494046],[113,12,68,0.05459936653381165],[113,12,69,0.05345773574731685],[113,12,70,0.052301524699764214],[113,12,71,0.05112804363321662],[113,12,72,0.04993712009945007],[113,12,73,0.04873047757551742],[113,12,74,0.04751117239114489],[113,12,75,0.046283089487914854],[113,12,76,0.045050497383649135],[113,12,77,0.04354262614012453],[113,12,78,0.03749846496783389],[113,12,79,0.032209523388984126],[113,13,64,0.05696117376581297],[113,13,65,0.055773735994099474],[113,13,66,0.05460374627464869],[113,13,67,0.05344509081310164],[113,13,68,0.052286080078369906],[113,13,69,0.05111707822491361],[113,13,70,0.049932292370799256],[113,13,71,0.04872908617675103],[113,13,72,0.04750732369671161],[113,13,73,0.04626876775295],[113,13,74,0.04501653350499096],[113,13,75,0.043754597730432276],[113,13,76,0.04248736419585356],[113,13,77,0.04121928536148463],[113,13,78,0.04076865393336676],[113,13,79,0.041423230681394314],[113,14,64,0.05475457858902816],[113,14,65,0.05354911948171296],[113,14,66,0.05235833262958053],[113,14,67,0.05117685750430156],[113,14,68,0.04999362521674989],[113,14,69,0.04879924695675899],[113,14,70,0.047588056408783906],[113,14,71,0.046357464764303184],[113,14,72,0.045107335837210584],[113,14,73,0.04383941195155533],[113,14,74,0.04255679125302365],[113,14,75,0.04126345695365994],[113,14,76,0.03996385888775391],[113,14,77,0.038662547630137906],[113,14,78,0.03736386130302036],[113,14,79,0.03778087238744212],[113,15,64,0.05256896459407807],[113,15,65,0.051347782462153435],[113,15,66,0.05013821927658274],[113,15,67,0.04893581697868309],[113,15,68,0.047730270762218655],[113,15,69,0.046512517652009755],[113,15,70,0.04527704799516907],[113,15,71,0.04402131180034693],[113,15,72,0.04274513385996679],[113,15,73,0.04145017518227021],[113,15,74,0.04013944135784682],[113,15,75,0.03881683835472854],[113,15,76,0.03748677611469135],[113,15,77,0.03615382020635716],[113,15,78,0.0348223916750881],[113,15,79,0.03415547733718878],[113,16,64,0.05042011900771468],[113,16,65,0.04918553134523087],[113,16,66,0.0479591443998802],[113,16,67,0.04673751526209761],[113,16,68,0.045511232334416826],[113,16,69,0.0442716431446599],[113,16,70,0.043013436557303504],[113,16,71,0.04173410896414914],[113,16,72,0.04043342715594892],[113,16,73,0.0391129323869589],[113,16,74,0.037775486222326245],[113,16,75,0.0364248586408464],[113,16,76,0.03506535875615085],[113,16,77,0.03370150841374151],[113,16,78,0.03233775881696236],[113,16,79,0.030978250230779394],[113,17,64,0.04831862589146111],[113,17,65,0.04707293290982036],[113,17,66,0.04583159828059725],[113,17,67,0.04459227007787919],[113,17,68,0.04334654414432934],[113,17,69,0.04208626971055284],[113,17,70,0.040806388978153287],[113,17,71,0.039504469982699034],[113,17,72,0.038180223680554876],[113,17,73,0.036835056554536186],[113,17,74,0.03547165928646736],[113,17,75,0.03409363194231141],[113,17,76,0.03270514601969156],[113,17,77,0.03131064361502643],[113,17,78,0.02991457387602523],[113,17,79,0.028521166813893738],[113,18,64,0.04626772110004249],[113,18,65,0.045013182764685106],[113,18,66,0.04375872688831591],[113,18,67,0.04250313244720696],[113,18,68,0.041239100255867835],[113,18,69,0.039959076296323455],[113,18,70,0.03865832064584182],[113,18,71,0.03733451215000095],[113,18,72,0.03598732494582972],[113,18,73,0.0346180343799756],[113,18,74,0.03322915282206518],[113,18,75,0.0318240957874061],[113,18,76,0.03040687870242001],[113,18,77,0.02898184456805186],[113,18,78,0.027553422699138422],[113,18,79,0.026125918640450413],[113,19,64,0.04426447352580509],[113,19,65,0.04300328599444098],[113,19,66,0.041737503134015],[113,19,67,0.04046704037583018],[113,19,68,0.03918578283348697],[113,19,69,0.03788686935627123],[113,19,70,0.03656594897380283],[113,19,71,0.035220860864249616],[113,19,72,0.03385127431541725],[113,19,73,0.032458351622886066],[113,19,74,0.031044434372277937],[113,19,75,0.029612753484237843],[113,19,76,0.028167163336206297],[113,19,77,0.026711900212515176],[113,19,78,0.02525136527238772],[113,19,79,0.023789932163309727],[113,20,64,0.04230091608081247],[113,20,65,0.0410351880967894],[113,20,66,0.03975984947337954],[113,20,67,0.03847592539795482],[113,20,68,0.037178545219872634],[113,20,69,0.03586163502502352],[113,20,70,0.03452130733329261],[113,20,71,0.03315561823545649],[113,20,72,0.031764273595915694],[113,20,73,0.030348351521307628],[113,20,74,0.02891004148473602],[113,20,75,0.027452400445133838],[113,20,76,0.025979126253852493],[113,20,77,0.024494348594469435],[113,20,78,0.02300243765596853],[113,20,79,0.021507830693222558],[113,21,64,0.039289895177696925],[113,21,65,0.038432499189521574],[113,21,66,0.037550306819161924],[113,21,67,0.03651777059510358],[113,21,68,0.03520544854905779],[113,21,69,0.03387154743247717],[113,21,70,0.032512718319387846],[113,21,71,0.03112729481209322],[113,21,72,0.029715067112181606],[113,21,73,0.02827706559704013],[113,21,74,0.026815354230903334],[113,21,75,0.025332834107884943],[113,21,76,0.02383305739459157],[113,21,77,0.02232005191077614],[113,21,78,0.020798156557247607],[113,21,79,0.019271867770368684],[113,22,64,0.03580603948359328],[113,22,65,0.034913390262531686],[113,22,66,0.0340039810532072],[113,22,67,0.033076998714789224],[113,22,68,0.03213702433872847],[113,22,69,0.031190647474249315],[113,22,70,0.030243007562524744],[113,22,71,0.02912170352908634],[113,22,72,0.027689792509746812],[113,22,73,0.026231016246058975],[113,22,74,0.024747345062980812],[113,22,75,0.02324154716773306],[113,22,76,0.021717043727653824],[113,22,77,0.020177767716637717],[113,22,78,0.01862802674642293],[113,22,79,0.017072370085578853],[113,23,64,0.03230187865321526],[113,23,65,0.031374135269825305],[113,23,66,0.03043766022411622],[113,23,67,0.02949083255203258],[113,23,68,0.028536984833546032],[113,23,69,0.027581722205335397],[113,23,70,0.026629548442263968],[113,23,71,0.02568387602116708],[113,23,72,0.024747110536578774],[113,23,73,0.02382073868886804],[113,23,74,0.022691305622635542],[113,23,75,0.0211644038958339],[113,23,76,0.019617592233677043],[113,23,77,0.01805471640003543],[113,23,78,0.016480051580090388],[113,23,79,0.014898190373022415],[113,24,64,0.02880231808915598],[113,24,65,0.027839936087290997],[113,24,66,0.02687671608087623],[113,24,67,0.02591035269673369],[113,24,68,0.024942950289315126],[113,24,69,0.02397906643422697],[113,24,70,0.023022506203735058],[113,24,71,0.02207626251756291],[113,24,72,0.02114253476920868],[113,24,73,0.02022275735385153],[113,24,74,0.01931763795445202],[113,24,75,0.018427205418229876],[113,24,76,0.017520242433788722],[113,24,77,0.01593714507740374],[113,24,78,0.0143412469499067],[113,24,79,0.012737170750300812],[113,25,64,0.025332512281788094],[113,25,65,0.024336253892259584],[113,25,66,0.02334679042623013],[113,25,67,0.022361270848867295],[113,25,68,0.021380611450104572],[113,25,69,0.020408272937230635],[113,25,70,0.01944730759473008],[113,25,71,0.01850023500944419],[113,25,72,0.01756899767152963],[113,25,73,0.016654932419326984],[113,25,74,0.01575875764795054],[113,25,75,0.014880576161037714],[113,25,76,0.01401989350661374],[113,25,77,0.01317565160184992],[113,25,78,0.012198159011659309],[113,25,79,0.010576617024450912],[113,26,64,0.021917049934983522],[113,26,65,0.02088798973196081],[113,26,66,0.019872976138708524],[113,26,67,0.018868762366367236],[113,26,68,0.017875135601707788],[113,26,69,0.016894425815502264],[113,26,70,0.015928889052001502],[113,26,71,0.014980524678919076],[113,26,72,0.014050971698546365],[113,26,73,0.01314142635690915],[113,26,74,0.012252581033729597],[113,26,75,0.011384584340406007],[113,26,76,0.010537022299607096],[113,26,77,0.009708920428918364],[113,26,78,0.008898766502791713],[113,26,79,0.008104553722287152],[113,27,64,0.018579198714026683],[113,27,65,0.017518723870844664],[113,27,66,0.016479055528440874],[113,27,67,0.015456707923621662],[113,27,68,0.014450415372478532],[113,27,69,0.013461359810331064],[113,27,70,0.012490969523182197],[113,27,71,0.011540684978532851],[113,27,72,0.010611800465948925],[113,27,73,0.009705331912704084],[113,27,74,0.008821910918877532],[113,27,75,0.007961704986712118],[113,27,76,0.007124363851547358],[113,27,77,0.0063089917568433795],[113,27,78,0.00551414545430853],[113,27,79,0.004737857652496685],[113,28,64,0.015340211693848655],[113,28,65,0.014250015974307507],[113,28,66,0.013186798041223097],[113,28,67,0.012146992479960704],[113,28,68,0.01112837223680943],[113,28,69,0.010130971066868017],[113,28,70,0.009155370793349563],[113,28,71,0.008202423499927041],[113,28,72,0.007273043891822641],[113,28,73,0.006368032058077425],[113,28,74,0.005487926738608903],[113,28,75,0.004632889117546278],[113,28,76,0.003802617084522512],[113,28,77,0.0029962898287373457],[113,28,78,0.002212542557353209],[113,28,79,0.0014494710607928965],[113,29,64,0.012218697555427606],[113,29,65,0.011100768154729415],[113,29,66,0.010015319293449815],[113,29,67,0.008958863478096685],[113,29,68,0.007928316559754782],[113,29,69,0.00692258108378747],[113,29,70,0.005941386932995942],[113,29,71,0.0049849781811666955],[113,29,72,0.004053862197373982],[113,29,73,0.0031485926705658506],[113,29,74,0.002269586713891097],[113,29,75,0.0014169761153304157],[113,29,76,5.904927108460031E-4],[113,29,77,-2.1061223088741658E-4],[113,29,78,-9.87614806372354E-4],[113,29,79,-0.0017423317306567477],[113,30,64,0.009230056499908924],[113,30,65,0.008086652825197955],[113,30,66,0.006980503339394699],[113,30,67,0.0059083501120590996],[113,30,68,0.004866365942578861],[113,30,69,0.003852355510152343],[113,30,70,0.0028652044111192308],[113,30,71,0.001904539260152561],[113,30,72,9.704400199120113E-4],[113,30,73,6.3189027456514E-5],[113,30,74,-8.169430715344343E-4],[113,30,75,-0.0016698743713669726],[113,30,76,-0.002495851727324633],[113,30,77,-0.0032955538341329954],[113,30,78,-0.004070157538395727],[113,30,79,-0.004821367648047279],[113,31,64,0.006385983746668676],[113,31,65,0.0052196072004960185],[113,31,66,0.004094489965828677],[113,31,67,0.0030077453985020717],[113,31,68,0.001954923525348735],[113,31,69,9.327793499953791E-4],[113,31,70,-6.062568004948211E-5],[113,31,71,-0.001026281711643249],[113,31,72,-0.001964548197541911],[113,31,73,-0.0028754328898254627],[113,31,74,-0.003758831857539139],[113,31,75,-0.004614730379225646],[113,31,76,-0.005443364666462248],[113,31,77,-0.006245344476424764],[113,31,78,-0.007021736769150291],[113,31,79,-0.0077741106577788694],[113,32,64,0.0036940423769537367],[113,32,65,0.0025073961783014494],[113,32,66,0.001365228701871372],[113,32,67,2.6515267911619763E-4],[113,32,68,-7.977822014205144E-4],[113,32,69,-0.0018278099662206498],[113,32,70,-0.0028276619403210398],[113,32,71,-0.0037989345756451456],[113,32,72,-0.0047424304670048685],[113,32,73,-0.005658459370470492],[113,32,74,-0.006547098925228773],[113,32,75,-0.007408414892917121],[113,32,76,-0.008242640838296402],[113,32,77,-0.009050317281420233],[113,32,78,-0.009832390453442336],[113,32,79,-0.010068652688755394],[113,33,64,0.0011573072001516882],[113,33,65,-4.67547519493934E-5],[113,33,66,-0.0012038988533584491],[113,33,67,-0.0023159019022388335],[113,33,68,-0.0033880946062121806],[113,33,69,-0.004425630263906033],[113,33,70,-0.005431992245861614],[113,33,71,-0.00640936384855593],[113,33,72,-0.007358986166993595],[113,33,73,-0.008281475390177024],[113,33,74,-0.009177099184953252],[113,33,75,-0.009486549780410617],[113,33,76,-0.008440578423087835],[113,33,77,-0.0074265631528993145],[113,33,78,-0.006445514820404868],[113,33,79,-0.005498712057035065],[113,34,64,-0.0012259187283843065],[113,34,65,-0.002444454972394229],[113,34,66,-0.0036143868287658787],[113,34,67,-0.004736789448342862],[113,34,68,-0.005817261719417682],[113,34,69,-0.006861801721306159],[113,34,70,-0.007874597370234713],[113,34,71,-0.008858391474049043],[113,34,72,-0.00846509044890651],[113,34,73,-0.007272011835028984],[113,34,74,-0.006110503252569879],[113,34,75,-0.004981576336091078],[113,34,76,-0.0038860736197064436],[113,34,77,-0.0028248369848655067],[113,34,78,-0.001798834963048409],[113,34,79,-8.092490579489313E-4],[113,35,64,-0.0034623133118686683],[113,35,65,-0.004692370972046551],[113,35,66,-0.005872841445651674],[113,35,67,-0.0070040293786259485],[113,35,68,-0.008091703194316818],[113,35,69,-0.007918920622239693],[113,35,70,-0.006583564649480749],[113,35,71,-0.005274588105847441],[113,35,72,-0.003995419426998381],[113,35,73,-0.0027484552335436045],[113,35,74,-0.0015353591229355578],[113,35,75,-3.5731999410210406E-4],[113,35,76,7.847302827002395E-4],[113,35,77,0.0018899399262075117],[113,35,78,0.002957401001419014],[113,35,79,0.0039860537371031],[113,36,64,-0.005563668668113813],[113,36,65,-0.006802373703803855],[113,36,66,-0.007793358503116348],[113,36,67,-0.006356922667116823],[113,36,68,-0.004926331712769057],[113,36,69,-0.0035110129338912716],[113,36,70,-0.002118190065881748],[113,36,71,-7.532269059680089E-4],[113,36,72,5.799914657917117E-4],[113,36,73,0.0018787162509450888],[113,36,74,0.0031410317244134176],[113,36,75,0.0043655915810962755],[113,36,76,0.005551395051244802],[113,36,77,0.006697602887489963],[113,36,78,0.007803393218821773],[113,36,79,0.008867857164302134],[113,37,64,-0.00645493620304212],[113,37,65,-0.004966303619136889],[113,37,66,-0.003474326443502069],[113,37,67,-0.001980021386522469],[113,37,68,-4.914759319799999E-4],[113,37,69,9.811639298538885E-4],[113,37,70,0.0024300457159545466],[113,37,71,0.0038492828116923716],[113,37,72,0.005234572072190786],[113,37,73,0.006582849052333745],[113,37,74,0.007891981330797902],[113,37,75,0.009160500280613375],[113,37,76,0.010387371526671976],[113,37,77,0.011571804221032954],[113,37,78,0.012713099160733932],[113,37,79,0.013810535671707268],[113,38,64,-0.0021963271894120426],[113,38,65,-6.490606361133952E-4],[113,38,66,9.005255350907536E-4],[113,38,67,0.002452195989318592],[113,38,68,0.003997784862789042],[113,38,69,0.005526455117180253],[113,38,70,0.007029760282839081],[113,38,71,0.008501331701779441],[113,38,72,0.009936493815976563],[113,38,73,0.011331915947204813],[113,38,74,0.012685301060011672],[113,38,75,0.01399511188765609],[113,38,76,0.015260334689895823],[113,38,77,0.016480280803123665],[113,38,78,0.017654426038417013],[113,38,79,0.01878228788315994],[113,39,64,0.002094649078307906],[113,39,65,0.003700957093037093],[113,39,66,0.005308198267934605],[113,39,67,0.006916919520491767],[113,39,68,0.008518873301334388],[113,39,69,0.010102526444401363],[113,39,70,0.011658849004751807],[113,39,71,0.013181014422092229],[113,39,72,0.014664010175430552],[113,39,73,0.016104283895774323],[113,39,74,0.017499425459373323],[113,39,75,0.018847885472609887],[113,39,76,0.020148730449155945],[113,39,77,0.021401434872198786],[113,39,78,0.022605710230261793],[113,39,79,0.023761371015951046],[113,40,64,0.006402464862522109],[113,40,65,0.008068759999890816],[113,40,66,0.009734280173702405],[113,40,67,0.011400377492298592],[113,40,68,0.013058713661539219],[113,40,69,0.01469702731145296],[113,40,70,0.016305688801053143],[113,40,71,0.01787741238780349],[113,40,72,0.01940686043508483],[113,40,73,0.020890282085419463],[113,40,74,0.022325186957336884],[113,40,75,0.02371005431211073],[113,40,76,0.025044078025996817],[113,40,77,0.0263269475958509],[113,40,78,0.02755866530195436],[113,40,79,0.02873939955302855],[113,41,64,0.010710160264813823],[113,41,65,0.012437793170117424],[113,41,66,0.014162681626966787],[113,41,67,0.015887016465280047],[113,41,68,0.017602355637174678],[113,41,69,0.01929566146111543],[113,41,70,0.020956670476087413],[113,41,71,0.022577617643759377],[113,41,72,0.024152832958145284],[113,41,73,0.0256783715112508],[113,41,74,0.027151677611859815],[113,41,75,0.02857128344217966],[113,41,76,0.0299365426258786],[113,41,77,0.031247398972960836],[113,41,78,0.032504190562784925],[113,41,79,0.03370748922778876],[113,42,64,0.015000098834777533],[113,42,65,0.016790662530977874],[113,42,66,0.01857632576511228],[113,42,67,0.020360151330856845],[113,42,68,0.022133577195856912],[113,42,69,0.023882734428139218],[113,42,70,0.02559668156299046],[113,42,71,0.02726714162334937],[113,42,72,0.02888809069401164],[113,42,73,0.030455378874395724],[113,42,74,0.031966384249388954],[113,42,75,0.03341970040414399],[113,42,76,0.034814857896527815],[113,42,77,0.036152079992187024],[113,42,78,0.0374320728627348],[113,42,79,0.038655850348791314],[113,43,64,0.019255238868540595],[113,43,65,0.02111040203635912],[113,43,66,0.022958403149770046],[113,43,67,0.024803200707464453],[113,43,68,0.026636093550942472],[113,43,69,0.028442327083681176],[113,43,70,0.030210234091924304],[113,43,71,0.03193098595521474],[113,43,72,0.03359817347437865],[113,43,73,0.03520741888928963],[113,43,74,0.03675601977049372],[113,43,75,0.038242625353556756],[113,43,76,0.0396669457715319],[113,43,77,0.04102949453129989],[113,43,78,0.04233136447460182],[113,43,79,0.04357403736572463],[113,44,64,0.023460466089500323],[113,44,65,0.025381801028983363],[113,44,66,0.02729368499585437],[113,44,67,0.02920097866671063],[113,44,68,0.0310948195512749],[113,44,69,0.03295951909358867],[113,44,70,0.03478263826494424],[113,44,71,0.03639166607949051],[113,44,72,0.037950935477061375],[113,44,73,0.03947146041980613],[113,44,74,0.040955174454335073],[113,44,75,0.042402736234389046],[113,44,76,0.043813829878410045],[113,44,77,0.04518743299439363],[113,44,78,0.046522052090615634],[113,44,79,0.04781592518289782],[113,45,64,0.026793991351456676],[113,45,65,0.028861920389665383],[113,45,66,0.030853687532348916],[113,45,67,0.0327610241510663],[113,45,68,0.03459066624352376],[113,45,69,0.03635717164545768],[113,45,70,0.038071900217400215],[113,45,71,0.039743229256019245],[113,45,72,0.041376984636237735],[113,45,73,0.04297684319256438],[113,45,74,0.04454470565103675],[113,45,75,0.046081039513031614],[113,45,76,0.04758519138191527],[113,45,77,0.049055668313759085],[113,45,78,0.05049038786356059],[113,45,79,0.05188689658844474],[113,46,64,0.02972327308788404],[113,46,65,0.0318380773947849],[113,46,66,0.03387982047363004],[113,46,67,0.03583932272783353],[113,46,68,0.037723449680184235],[113,46,69,0.03954765385064433],[113,46,70,0.041324020661259175],[113,46,71,0.04306146469599725],[113,46,72,0.04476616477948361],[113,46,73,0.04644197202667731],[113,46,74,0.04809079015026219],[113,46,75,0.049712927395172635],[113,46,76,0.05130741955299985],[113,46,77,0.05287232359389688],[113,46,78,0.05440498153956119],[113,46,79,0.05590225428784059],[113,47,64,0.032642217455099515],[113,47,65,0.034800609752002026],[113,47,66,0.03688889374706083],[113,47,67,0.03889705710543187],[113,47,68,0.04083213167260422],[113,47,69,0.04271047822370041],[113,47,70,0.04454493079029635],[113,47,71,0.04634497158390445],[113,47,72,0.04811716730541712],[113,47,73,0.04986558041247354],[113,47,74,0.05159215461235315],[113,47,75,0.05329707392207182],[113,47,76,0.054979094712895],[113,47,77,0.056635850234584145],[113,47,78,0.05826412719507043],[113,47,79,0.059860114053909806],[113,48,64,0.03556311246635399],[113,48,65,0.03776178102451919],[113,48,66,0.03989300812694862],[113,48,67,0.04194604267991406],[113,48,68,0.04392811332960648],[113,48,69,0.0458564814540118],[113,48,70,0.04774473898721991],[113,48,71,0.0496029597071843],[113,48,72,0.05143813341660356],[113,48,73,0.053254577306967865],[113,48,74,0.05505432376157198],[113,48,75,0.05683748391753226],[113,48,76,0.05860258637325624],[113,48,77,0.060346890497760354],[113,48,78,0.06206667387161492],[113,48,79,0.06375749346628584],[113,49,64,0.038499437202458124],[113,49,65,0.040735024204463476],[113,49,66,0.04290541258015813],[113,49,67,0.044999218676320805],[113,49,68,0.047023889797665835],[113,49,69,0.04899755752955147],[113,49,70,0.05093456559374417],[113,49,71,0.052845595199696706],[113,49,72,0.05473809320331342],[113,49,73,0.05661667987805577],[113,49,74,0.05848353555143502],[113,49,75,0.060338765413317556],[113,49,76,0.062180741858598246],[113,49,77,0.06400642378731239],[113,49,78,0.06581165235028624],[113,49,79,0.06759142269832989],[113,50,64,0.041460778078369544],[113,50,65,0.043729968501752],[113,50,66,0.0459356723664872],[113,50,67,0.048065991272159984],[113,50,68,0.050128604948377765],[113,50,69,0.052142462977490145],[113,50,70,0.05412263881231731],[113,50,71,0.05608042704825558],[113,50,72,0.05802376133215971],[113,50,73,0.059957614476593195],[113,50,74,0.06188438003992266],[113,50,75,0.06380423467454632],[113,50,76,0.06571548059051653],[113,50,77,0.06761486753183099],[113,50,78,0.06949789371811402],[113,50,79,0.071359085265881],[113,51,64,0.04445286285499264],[113,51,65,0.046752459736589466],[113,51,66,0.048989674850236205],[113,51,67,0.05115222272925443],[113,51,68,0.05324802171923337],[113,51,69,0.055296767126502076],[113,51,70,0.05731422440108923],[113,51,71,0.05931229647463357],[113,51,72,0.06129942704832445],[113,51,73,0.06328098879869085],[113,51,74,0.06525965577989677],[113,51,75,0.06723575933112663],[113,51,76,0.06920762683089692],[113,51,77,0.0711719026788683],[113,51,78,0.07312385093059648],[113,51,79,0.07505763906249692],[113,52,64,0.04747764306753126],[113,52,65,0.04980462944373107],[113,52,66,0.05206968405894446],[113,52,67,0.05426026924726913],[113,52,68,0.05638454110097029],[113,52,69,0.05846285077068653],[113,52,70,0.06051160325861445],[113,52,71,0.06254329335600016],[113,52,72,0.06456688997541082],[113,52,73,0.066588208185512],[113,52,74,0.06861026825596929],[113,52,75,0.07063364103819443],[113,52,76,0.07265677902901653],[113,52,77,0.0746763324913804],[113,52,78,0.07668745003974455],[113,52,79,0.07868406313909601],[113,53,64,0.05053342611290722],[113,53,65,0.052885013957054326],[113,53,66,0.05517444527524373],[113,53,67,0.05738906883919101],[113,53,68,0.05953727108311747],[113,53,69,0.06163995455132681],[113,53,70,0.06371409820943791],[113,53,71,0.06577276097818574],[113,53,72,0.06782544297777517],[113,53,73,0.06987843728286133],[113,53,74,0.07193517153501372],[113,53,75,0.07399653876626348],[113,53,76,0.07606121679701253],[113,53,77,0.07812597558680835],[113,53,78,0.08018597193840625],[113,53,79,0.08223503098551958],[113,54,64,0.2618926822904042],[113,54,65,0.27290112610347733],[113,54,66,0.2835437002268071],[113,54,67,0.2937658582837498],[113,54,68,0.30361107358629125],[113,54,69,0.31317919598136035],[113,54,70,0.3225502740662651],[113,54,71,0.3317849563986771],[113,54,72,0.07107190331122251],[113,54,73,0.07314860824952701],[113,54,74,0.07523135426941875],[113,54,75,0.07732143379836638],[113,54,76,0.07941784651875863],[113,54,77,0.08151759414314526],[113,54,78,0.08361596545827855],[113,54,79,0.0857068110605329],[113,55,64,0.2762503892499875],[113,55,65,0.2872491405389471],[113,55,66,0.29787221659176594],[113,55,67,0.30806685152445124],[113,55,68,0.31787750150532695],[113,55,69,0.3274047571057122],[113,55,70,0.33672984256227345],[113,55,71,0.34591489608177534],[113,55,72,0.3550048598733749],[113,55,73,0.3640293113729431],[113,55,74,0.3730042443198236],[113,55,75,0.3819338040321708],[113,55,76,0.3908119768440641],[113,55,77,0.39962422960948774],[113,55,78,0.08697319264060202],[113,55,79,0.08909519530278],[113,56,64,0.29050404225201937],[113,56,65,0.3014766473117646],[113,56,66,0.31206138938122685],[113,56,67,0.3222079474563399],[113,56,68,0.3319616876616327],[113,56,69,0.3414233753066014],[113,56,70,0.35067501104240506],[113,56,71,0.35977999066861904],[113,56,72,0.36878485267462674],[113,56,73,0.37772097810093896],[113,56,74,0.38660625280799654],[113,56,75,0.39544669790005915],[113,56,76,0.40423806951393476],[113,56,77,0.4112477361573442],[113,56,78,0.41690466294215967],[113,56,79,0.4208698850757493],[113,57,64,0.26513766349060003],[113,57,65,0.2775581225516523],[113,57,66,0.28813893410518543],[113,57,67,0.2946770795025527],[113,57,68,0.29741601140205515],[113,57,69,0.30056664266010935],[113,57,70,0.30580060559541666],[113,57,71,0.31107976704454376],[113,57,72,0.31865843703302205],[113,57,73,0.32923347421615534],[113,57,74,0.33954575799341585],[113,57,75,0.3472779799727699],[113,57,76,0.353584997558236],[113,57,77,0.35943975520636395],[113,57,78,0.365453794123792],[113,57,79,0.3702901861404691],[113,58,64,0.22024835008275379],[113,58,65,0.23316296552526355],[113,58,66,0.24341734151670502],[113,58,67,0.24957695424103749],[113,58,68,0.2529710367446898],[113,58,69,0.2560617661607825],[113,58,70,0.26100443561728354],[113,58,71,0.2669451171860196],[113,58,72,0.2743641268426624],[113,58,73,0.2852461615802692],[113,58,74,0.29588174408858997],[113,58,75,0.3026516229114452],[113,58,76,0.30992524156018947],[113,58,77,0.3158446960602313],[113,58,78,0.32230122376630266],[113,58,79,0.3280347950145964],[113,59,64,0.16169020034370932],[113,59,65,0.17468513122945004],[113,59,66,0.1851254475549909],[113,59,67,0.19163206884861736],[113,59,68,0.1954245230127403],[113,59,69,0.19810250700460671],[113,59,70,0.20328850039106983],[113,59,71,0.20903084168279526],[113,59,72,0.2174621772625299],[113,59,73,0.22885153685096693],[113,59,74,0.2398416313640331],[113,59,75,0.24684146637889495],[113,59,76,0.2540450553749896],[113,59,77,0.2607613199644922],[113,59,78,0.2679356531135834],[113,59,79,0.27474613549963417],[113,60,64,0.10135714891301162],[113,60,65,0.11496508419701373],[113,60,66,0.12578667258194734],[113,60,67,0.13197785726777875],[113,60,68,0.13484212273408283],[113,60,69,0.13824715436133814],[113,60,70,0.14340688704478555],[113,60,71,0.1491851122175647],[113,60,72,0.15877884860408137],[113,60,73,0.17013911149938077],[113,60,74,0.18132911860671969],[113,60,75,0.18847839058679777],[113,60,76,0.19536855543851578],[113,60,77,0.20315404907095783],[113,60,78,0.21123619881504851],[113,60,79,0.2194361701694738],[113,61,64,0.04047999373531017],[113,61,65,0.053865813842413096],[113,61,66,0.06440153447539869],[113,61,67,0.06932010046122897],[113,61,68,0.07091365890471168],[113,61,69,0.07477135889916706],[113,61,70,0.08066401930825665],[113,61,71,0.08785986759445848],[113,61,72,0.09908912344608298],[113,61,73,0.11249335439126511],[113,61,74,0.12366070398099066],[113,61,75,0.13126463829212584],[113,61,76,0.13845728587634468],[113,61,77,0.14612520060338058],[113,61,78,0.1552558799204146],[113,61,79,0.16509070605366655],[113,62,64,0.01998391808132682],[113,62,65,0.022236897371207782],[113,62,66,0.024075943713401146],[113,62,67,0.023927419543047376],[113,62,68,0.022741524270270475],[113,62,69,0.02343486557332757],[113,62,70,0.02574746809375457],[113,62,71,0.02844644830674294],[113,62,72,0.039294881543943685],[113,62,73,0.0527681930131989],[113,62,74,0.06413698963503597],[113,62,75,0.07254027673876469],[113,62,76,0.07940529131316285],[113,62,77,0.08685161373384402],[113,62,78,0.09685986673943259],[113,62,79,0.10671344333413577],[113,63,64,-0.018841860182118676],[113,63,65,-0.017596539808012606],[113,63,66,-0.015592299756739918],[113,63,67,-0.01574944695721399],[113,63,68,-0.01616446370742819],[113,63,69,-0.016129378897911065],[113,63,70,-0.013323096250747112],[113,63,71,-0.010374084877234634],[113,63,72,-0.00711053521585916],[113,63,73,-0.004479112798819291],[113,63,74,-0.002643403790876086],[113,63,75,-0.001644620172124915],[113,63,76,5.2711240726676986E-5],[113,63,77,0.004655963567614951],[113,63,78,0.014276492095304093],[113,63,79,0.02300232863194401],[113,64,64,-0.031729622125410806],[113,64,65,-0.030350187571535542],[113,64,66,-0.02876329058660718],[113,64,67,-0.02841240595615769],[113,64,68,-0.028684189453119686],[113,64,69,-0.02950654433065976],[113,64,70,-0.02654100304120058],[113,64,71,-0.023611800724745533],[113,64,72,-0.02012851822373087],[113,64,73,-0.01699458625399115],[113,64,74,-0.015034515242117711],[113,64,75,-0.013609232729759285],[113,64,76,-0.011841965741373243],[113,64,77,-0.00935788924010526],[113,64,78,-0.006179375351547406],[113,64,79,-0.0049970762673986245],[113,65,64,-0.04838207117065463],[113,65,65,-0.04660270916899126],[113,65,66,-0.04523230157728907],[113,65,67,-0.04483338429657269],[113,65,68,-0.04541321020180698],[113,65,69,-0.045737911462127114],[113,65,70,-0.04253263849159261],[113,65,71,-0.03938629190941379],[113,65,72,-0.03564163559219167],[113,65,73,-0.03280570355927973],[113,65,74,-0.030768883997075693],[113,65,75,-0.029123791334262506],[113,65,76,-0.027520851525185915],[113,65,77,-0.025334533217029793],[113,65,78,-0.021865159289904366],[113,65,79,-0.02055435869950692],[113,66,64,-0.06584490664675122],[113,66,65,-0.0639014705255228],[113,66,66,-0.06288053689145913],[113,66,67,-0.0627425647543914],[113,66,68,-0.0638775617865514],[113,66,69,-0.06359647469595299],[113,66,70,-0.0604145867331857],[113,66,71,-0.057343170952468506],[113,66,72,-0.053067337244738055],[113,66,73,-0.05000634928485974],[113,66,74,-0.04779544229487526],[113,66,75,-0.04666723230708878],[113,66,76,-0.04545721099866945],[113,66,77,-0.04327918170724234],[113,66,78,-0.03983949541816708],[113,66,79,-0.038097209008278246],[113,67,64,-0.080664885818266],[113,67,65,-0.07948423441813479],[113,67,66,-0.07968974731794834],[113,67,67,-0.07902708273378177],[113,67,68,-0.07943603059936823],[113,67,69,-0.07883540649066585],[113,67,70,-0.07612664589383104],[113,67,71,-0.07340202546976711],[113,67,72,-0.06881341296914915],[113,67,73,-0.06545823499138154],[113,67,74,-0.06315827729708484],[113,67,75,-0.06276506789802813],[113,67,76,-0.061426652464869544],[113,67,77,-0.059308526912178396],[113,67,78,-0.05697721126525898],[113,67,79,-0.054997850977121204],[113,68,64,-0.12300137698435529],[113,68,65,-0.1235633702206366],[113,68,66,-0.12353279587761318],[113,68,67,-0.12238454050721723],[113,68,68,-0.12228762770474257],[113,68,69,-0.12185891937080046],[113,68,70,-0.11909823713342432],[113,68,71,-0.11613930545541891],[113,68,72,-0.11169709483164209],[113,68,73,-0.1085214548377935],[113,68,74,-0.10666988979955536],[113,68,75,-0.10603494148259307],[113,68,76,-0.10485506721866453],[113,68,77,-0.10331006047639163],[113,68,78,-0.10109287218693658],[113,68,79,-0.09842047203737507],[113,69,64,-0.13844321414989208],[113,69,65,-0.1395877662536428],[113,69,66,-0.1396904604654346],[113,69,67,-0.13958110488252964],[113,69,68,-0.1382092099786039],[113,69,69,-0.1368467693062041],[113,69,70,-0.13393705968493153],[113,69,71,-0.12971658244478376],[113,69,72,-0.12477958834608222],[113,69,73,-0.12052070659853592],[113,69,74,-0.11882926899916689],[113,69,75,-0.11820530130331898],[113,69,76,-0.11761450913543085],[113,69,77,-0.11796750086708044],[113,69,78,-0.11769485264643104],[113,69,79,-0.11561566816815694],[113,70,64,-0.15554070935229192],[113,70,65,-0.15569157171344272],[113,70,66,-0.1548131093932225],[113,70,67,-0.1543577056435386],[113,70,68,-0.1532824430355596],[113,70,69,-0.1518125874980226],[113,70,70,-0.14910081596516508],[113,70,71,-0.14420822205925043],[113,70,72,-0.13957018726052595],[113,70,73,-0.13600029994949958],[113,70,74,-0.13407529622400916],[113,70,75,-0.13410709621109404],[113,70,76,-0.13300485283151892],[113,70,77,-0.1326937861839388],[113,70,78,-0.13298139251230384],[113,70,79,-0.13081151481300335],[113,71,64,-0.1679373160529794],[113,71,65,-0.16845999295844524],[113,71,66,-0.16688712044314472],[113,71,67,-0.1659051197861918],[113,71,68,-0.16535041035022885],[113,71,69,-0.16353507439426085],[113,71,70,-0.160734252056164],[113,71,71,-0.15610491688259745],[113,71,72,-0.15194616576888603],[113,71,73,-0.14794719914370522],[113,71,74,-0.1474567167538679],[113,71,75,-0.14666423430311873],[113,71,76,-0.14551564695816482],[113,71,77,-0.1448651692886163],[113,71,78,-0.14531951401435447],[113,71,79,-0.1429587036379888],[113,72,64,-0.18397272842631546],[113,72,65,-0.18462856882201054],[113,72,66,-0.18241047834439283],[113,72,67,-0.18078668355102712],[113,72,68,-0.18002683880513085],[113,72,69,-0.17852057244061353],[113,72,70,-0.1763038442504562],[113,72,71,-0.17158703140715056],[113,72,72,-0.16818520636199358],[113,72,73,-0.1640972757044605],[113,72,74,-0.16276882127272543],[113,72,75,-0.16193559140732955],[113,72,76,-0.16066310952045784],[113,72,77,-0.16009200820046582],[113,72,78,-0.1609627817466791],[113,72,79,-0.15829318090013209],[113,73,64,-0.20282872756471515],[113,73,65,-0.20040843510899772],[113,73,66,-0.19686201042801435],[113,73,67,-0.19362518255744268],[113,73,68,-0.1920818620097648],[113,73,69,-0.18998718583014962],[113,73,70,-0.18918273403877964],[113,73,71,-0.18789207120063897],[113,73,72,-0.18587030646049532],[113,73,73,-0.1830247333201918],[113,73,74,-0.18089610459580424],[113,73,75,-0.17972095147693007],[113,73,76,-0.17908675929029513],[113,73,77,-0.17772655100909782],[113,73,78,-0.1767901216378338],[113,73,79,-0.1736891346195803],[113,74,64,-0.21987103707574193],[113,74,65,-0.21675737819127933],[113,74,66,-0.2130700364695689],[113,74,67,-0.2107835918896197],[113,74,68,-0.2090992426996509],[113,74,69,-0.2066847042312019],[113,74,70,-0.2056278458228204],[113,74,71,-0.20552494676351948],[113,74,72,-0.20357134313145486],[113,74,73,-0.19983130227527696],[113,74,74,-0.19829842959892946],[113,74,75,-0.19648765372007865],[113,74,76,-0.1973627809287942],[113,74,77,-0.19527614096582463],[113,74,78,-0.1940018735457832],[113,74,79,-0.19076564214493177],[113,75,64,-0.2344508474052045],[113,75,65,-0.2311102800736995],[113,75,66,-0.22795107480976312],[113,75,67,-0.22598264703106635],[113,75,68,-0.22419980882812482],[113,75,69,-0.22145250570044192],[113,75,70,-0.2204927372044174],[113,75,71,-0.22033692241758052],[113,75,72,-0.2191977027643933],[113,75,73,-0.21549426918505946],[113,75,74,-0.214394101535642],[113,75,75,-0.21274740900999312],[113,75,76,-0.2127393201597695],[113,75,77,-0.21213856476540172],[113,75,78,-0.20993319086092754],[113,75,79,-0.20679392338231262],[113,76,64,-0.24744984058003042],[113,76,65,-0.24411258896639063],[113,76,66,-0.24103349956860742],[113,76,67,-0.23925086239474533],[113,76,68,-0.2377273230105859],[113,76,69,-0.2356099395836708],[113,76,70,-0.23360328286462517],[113,76,71,-0.23324577353739126],[113,76,72,-0.23316710870110235],[113,76,73,-0.2300444501638104],[113,76,74,-0.22859862575125983],[113,76,75,-0.22700983443433043],[113,76,76,-0.2269611810405773],[113,76,77,-0.22718480476717362],[113,76,78,-0.22552400963121497],[113,76,79,-0.2216332666684055],[113,77,64,-0.26166560771006847],[113,77,65,-0.2583292470803447],[113,77,66,-0.25564297015052295],[113,77,67,-0.2543710360707706],[113,77,68,-0.2524451152947166],[113,77,69,-0.250512175523056],[113,77,70,-0.2491873876703274],[113,77,71,-0.24878462547437552],[113,77,72,-0.24854493824378374],[113,77,73,-0.24610288964698357],[113,77,74,-0.2441272123698693],[113,77,75,-0.2434886675874259],[113,77,76,-0.24286723001337804],[113,77,77,-0.24332649700427705],[113,77,78,-0.24148029141597385],[113,77,79,-0.2376711445643221],[113,78,64,-0.27587203317289094],[113,78,65,-0.27201896460877034],[113,78,66,-0.2693456308665611],[113,78,67,-0.2683524411340331],[113,78,68,-0.26677382082386236],[113,78,69,-0.2654589348295425],[113,78,70,-0.26365625496026557],[113,78,71,-0.2631870465896139],[113,78,72,-0.26301607000006777],[113,78,73,-0.2615228534307739],[113,78,74,-0.2596161723002774],[113,78,75,-0.25812173676328287],[113,78,76,-0.25854344976532007],[113,78,77,-0.2582573551426063],[113,78,78,-0.2570468102366993],[113,78,79,-0.25294339249610137],[113,79,64,-0.2875568081985996],[113,79,65,-0.28302569520760895],[113,79,66,-0.28081740859986765],[113,79,67,-0.28002005421110504],[113,79,68,-0.27831733212523524],[113,79,69,-0.27681012606320454],[113,79,70,-0.27516843755970083],[113,79,71,-0.27474445444503703],[113,79,72,-0.2746793559134136],[113,79,73,-0.2727612090923086],[113,79,74,-0.27160634351091617],[113,79,75,-0.2696297702387916],[113,79,76,-0.2702189909482477],[113,79,77,-0.26954270089287824],[113,79,78,-0.268129613291983],[113,79,79,-0.2643959670007474],[113,80,64,-0.3014387180065338],[113,80,65,-0.297523112471324],[113,80,66,-0.29502424720531817],[113,80,67,-0.29326483628643807],[113,80,68,-0.2929336986842763],[113,80,69,-0.2918458801878698],[113,80,70,-0.289964110588712],[113,80,71,-0.2890426750324389],[113,80,72,-0.2887610900505045],[113,80,73,-0.2864448498026624],[113,80,74,-0.28543481101085016],[113,80,75,-0.2842362701290012],[113,80,76,-0.28478245294519644],[113,80,77,-0.28481470441423723],[113,80,78,-0.2831683143523385],[113,80,79,-0.27964971307486336],[113,81,64,-0.31489472185591455],[113,81,65,-0.31158372615273916],[113,81,66,-0.3083037888715467],[113,81,67,-0.30580640201980963],[113,81,68,-0.3059024277168261],[113,81,69,-0.3047296503334425],[113,81,70,-0.30311493326702216],[113,81,71,-0.30164489658341626],[113,81,72,-0.29988301722858296],[113,81,73,-0.29704975067539274],[113,81,74,-0.2958147019145242],[113,81,75,-0.2952068638488425],[113,81,76,-0.29725067519555226],[113,81,77,-0.2985552418479767],[113,81,78,-0.29836920666813094],[113,81,79,-0.2963859101596162],[113,82,64,-0.3308967334634863],[113,82,65,-0.3277161507585039],[113,82,66,-0.3240817364867611],[113,82,67,-0.32138515875528145],[113,82,68,-0.3221590191145438],[113,82,69,-0.320800060744543],[113,82,70,-0.31950084265413853],[113,82,71,-0.31808090717829457],[113,82,72,-0.3160888586891708],[113,82,73,-0.3132295557025778],[113,82,74,-0.3109436038617933],[113,82,75,-0.3104228626436864],[113,82,76,-0.3127295452774714],[113,82,77,-0.31359379031875795],[113,82,78,-0.3140468300258875],[113,82,79,-0.31237872234788727],[113,83,64,-0.34502181989829417],[113,83,65,-0.34140235513046324],[113,83,66,-0.33859403969986185],[113,83,67,-0.3358763867862378],[113,83,68,-0.33573485098056655],[113,83,69,-0.33546360470656067],[113,83,70,-0.3339131661460164],[113,83,71,-0.33287216891477656],[113,83,72,-0.3302186292339227],[113,83,73,-0.32714556496865477],[113,83,74,-0.324674080982077],[113,83,75,-0.3244297449603186],[113,83,76,-0.32660437311219126],[113,83,77,-0.3283033941627296],[113,83,78,-0.3288314829089829],[113,83,79,-0.32652853466961995],[113,84,64,-0.35792180607879504],[113,84,65,-0.3543144020988493],[113,84,66,-0.3510051390465428],[113,84,67,-0.3492075530046858],[113,84,68,-0.34887537082910575],[113,84,69,-0.34877053428404636],[113,84,70,-0.3480662488993696],[113,84,71,-0.3469085200250815],[113,84,72,-0.3438035121300729],[113,84,73,-0.3404777049980245],[113,84,74,-0.3382218337122228],[113,84,75,-0.33915603896422897],[113,84,76,-0.3411404031911926],[113,84,77,-0.34231188119562056],[113,84,78,-0.34266301095363194],[113,84,79,-0.34017617027567487],[113,85,64,-0.3708840946273448],[113,85,65,-0.36856707141878403],[113,85,66,-0.3665069175564743],[113,85,67,-0.36522296683135497],[113,85,68,-0.3652753904543794],[113,85,69,-0.36518574031935136],[113,85,70,-0.36453111084315065],[113,85,71,-0.36391135947661507],[113,85,72,-0.3611236489067424],[113,85,73,-0.35788215304963905],[113,85,74,-0.35677600158310896],[113,85,75,-0.35769731150792144],[113,85,76,-0.35859977164231316],[113,85,77,-0.35756193439798506],[113,85,78,-0.355556233883811],[113,85,79,-0.35224897443782544],[113,86,64,-0.3838309303469874],[113,86,65,-0.38150164932902836],[113,86,66,-0.3797006416078199],[113,86,67,-0.3788745116612823],[113,86,68,-0.37772480903392874],[113,86,69,-0.3775516271646708],[113,86,70,-0.3777177107111873],[113,86,71,-0.3774239760128146],[113,86,72,-0.3749919044081124],[113,86,73,-0.372075766614707],[113,86,74,-0.3704339781675841],[113,86,75,-0.3719241671033436],[113,86,76,-0.3723266147219022],[113,86,77,-0.3712046434808924],[113,86,78,-0.36947794521748767],[113,86,79,-0.36626364673959577],[113,87,64,-0.3937270179744018],[113,87,65,-0.3917223950571192],[113,87,66,-0.39035324181153647],[113,87,67,-0.3891055894837959],[113,87,68,-0.3881897951432699],[113,87,69,-0.38709174368733473],[113,87,70,-0.38763362307485155],[113,87,71,-0.3875719994937164],[113,87,72,-0.3855672021405476],[113,87,73,-0.38250430443659544],[113,87,74,-0.38183544456870394],[113,87,75,-0.38322143978255957],[113,87,76,-0.38340138146172054],[113,87,77,-0.3824647579304945],[113,87,78,-0.3803996503980964],[113,87,79,-0.3776022017460139],[113,88,64,-0.4065886449195447],[113,88,65,-0.40430436635479744],[113,88,66,-0.4027269576474474],[113,88,67,-0.4017930620311853],[113,88,68,-0.4011835410228154],[113,88,69,-0.4000160447622646],[113,88,70,-0.40081310007523024],[113,88,71,-0.4000913403943078],[113,88,72,-0.39851641659313575],[113,88,73,-0.3952071357344424],[113,88,74,-0.3952137936469636],[113,88,75,-0.3962647140539364],[113,88,76,-0.39681154713560823],[113,88,77,-0.39554049919379897],[113,88,78,-0.3933044646723588],[113,88,79,-0.39053795991447016],[113,89,64,-0.4193362121779092],[113,89,65,-0.41721721444770304],[113,89,66,-0.4150312182726728],[113,89,67,-0.4142220529014802],[113,89,68,-0.41345468897104054],[113,89,69,-0.4126365819986085],[113,89,70,-0.4132654486790071],[113,89,71,-0.4129049232112054],[113,89,72,-0.4107294051033257],[113,89,73,-0.4073513024334883],[113,89,74,-0.4080396509713834],[113,89,75,-0.40915829634489487],[113,89,76,-0.40961082793464065],[113,89,77,-0.4081364478994086],[113,89,78,-0.40651225182890016],[113,89,79,-0.4033136349255962],[113,90,64,-0.4333414583300337],[113,90,65,-0.43070736172309343],[113,90,66,-0.42810167964244605],[113,90,67,-0.427325034675572],[113,90,68,-0.42715475319655066],[113,90,69,-0.42645187287897873],[113,90,70,-0.4275658041305089],[113,90,71,-0.42645305753328316],[113,90,72,-0.4243410907956512],[113,90,73,-0.42130085455759064],[113,90,74,-0.422052391324459],[113,90,75,-0.42275729170398507],[113,90,76,-0.42324393129506394],[113,90,77,-0.42295137684684037],[113,90,78,-0.4208724960087909],[113,90,79,-0.4177883293165333],[113,91,64,-0.4453560039203738],[113,91,65,-0.44251308063600014],[113,91,66,-0.43998109234164623],[113,91,67,-0.43887392402012665],[113,91,68,-0.438749054404119],[113,91,69,-0.43902073609193065],[113,91,70,-0.4393012068501019],[113,91,71,-0.4384024807926684],[113,91,72,-0.4363396754057473],[113,91,73,-0.4338319145394116],[113,91,74,-0.43445586703902705],[113,91,75,-0.43419880883796425],[113,91,76,-0.4347577378773744],[113,91,77,-0.43575837003464807],[113,91,78,-0.43461182173517815],[113,91,79,-0.43106274637534725],[113,92,64,-0.4550829023254964],[113,92,65,-0.4519409732769445],[113,92,66,-0.44962773222631086],[113,92,67,-0.4483683833469641],[113,92,68,-0.4491463263614034],[113,92,69,-0.44986127315002433],[113,92,70,-0.45002229401470006],[113,92,71,-0.44930022869223857],[113,92,72,-0.4475472644166677],[113,92,73,-0.4448969441604312],[113,92,74,-0.44480153873093303],[113,92,75,-0.4447350695973977],[113,92,76,-0.4457198689209649],[113,92,77,-0.4464188231679928],[113,92,78,-0.4461670855888879],[113,92,79,-0.4428061242526126],[113,93,64,-0.4583333333333333],[113,93,65,-0.4583333333333333],[113,93,66,-0.4583333333333333],[113,93,67,-0.4583333333333333],[113,93,68,-0.4583333333333333],[113,93,69,-0.4583333333333333],[113,93,70,-0.4583333333333333],[113,93,71,-0.4583333333333333],[113,93,72,-0.45772308741284023],[113,93,73,-0.454293193637376],[113,93,74,-0.45310910194075815],[113,93,75,-0.45372149793402106],[113,93,76,-0.4555016374892983],[113,93,77,-0.45743304562950704],[113,93,78,-0.4583333333333333],[113,93,79,-0.45732758152607667],[113,94,64,-0.4583333333333333],[113,94,65,-0.4583333333333333],[113,94,66,-0.4583333333333333],[113,94,67,-0.4583333333333333],[113,94,68,-0.4583333333333333],[113,94,69,-0.4583333333333333],[113,94,70,-0.4583333333333333],[113,94,71,-0.4583333333333333],[113,94,72,-0.4583333333333333],[113,94,73,-0.4583333333333333],[113,94,74,-0.4583333333333333],[113,94,75,-0.4583333333333333],[113,94,76,-0.4583333333333333],[113,94,77,-0.4583333333333333],[113,94,78,-0.4583333333333333],[113,94,79,-0.4583333333333333],[113,95,64,-0.4583333333333333],[113,95,65,-0.4583333333333333],[113,95,66,-0.4583333333333333],[113,95,67,-0.4583333333333333],[113,95,68,-0.4583333333333333],[113,95,69,-0.4583333333333333],[113,95,70,-0.4583333333333333],[113,95,71,-0.4583333333333333],[113,95,72,-0.4583333333333333],[113,95,73,-0.4583333333333333],[113,95,74,-0.4583333333333333],[113,95,75,-0.4583333333333333],[113,95,76,-0.4583333333333333],[113,95,77,-0.4583333333333333],[113,95,78,-0.4583333333333333],[113,95,79,-0.4583333333333333],[113,96,64,-0.4583333333333333],[113,96,65,-0.4583333333333333],[113,96,66,-0.4583333333333333],[113,96,67,-0.4583333333333333],[113,96,68,-0.4583333333333333],[113,96,69,-0.4583333333333333],[113,96,70,-0.4583333333333333],[113,96,71,-0.4583333333333333],[113,96,72,-0.4583333333333333],[113,96,73,-0.4583333333333333],[113,96,74,-0.4583333333333333],[113,96,75,-0.4583333333333333],[113,96,76,-0.4583333333333333],[113,96,77,-0.4583333333333333],[113,96,78,-0.4583333333333333],[113,96,79,-0.4583333333333333],[113,97,64,-0.4583333333333333],[113,97,65,-0.4583333333333333],[113,97,66,-0.4583333333333333],[113,97,67,-0.4583333333333333],[113,97,68,-0.4583333333333333],[113,97,69,-0.4583333333333333],[113,97,70,-0.4583333333333333],[113,97,71,-0.4583333333333333],[113,97,72,-0.4583333333333333],[113,97,73,-0.4583333333333333],[113,97,74,-0.4583333333333333],[113,97,75,-0.4583333333333333],[113,97,76,-0.4583333333333333],[113,97,77,-0.4583333333333333],[113,97,78,-0.4583333333333333],[113,97,79,-0.4583333333333333],[113,98,64,-0.4583333333333333],[113,98,65,-0.4583333333333333],[113,98,66,-0.4583333333333333],[113,98,67,-0.4583333333333333],[113,98,68,-0.4583333333333333],[113,98,69,-0.4583333333333333],[113,98,70,-0.4583333333333333],[113,98,71,-0.4583333333333333],[113,98,72,-0.4583333333333333],[113,98,73,-0.4583333333333333],[113,98,74,-0.4583333333333333],[113,98,75,-0.4583333333333333],[113,98,76,-0.4583333333333333],[113,98,77,-0.4583333333333333],[113,98,78,-0.4583333333333333],[113,98,79,-0.4583333333333333],[113,99,64,-0.4583333333333333],[113,99,65,-0.4583333333333333],[113,99,66,-0.4583333333333333],[113,99,67,-0.4583333333333333],[113,99,68,-0.4583333333333333],[113,99,69,-0.4583333333333333],[113,99,70,-0.4583333333333333],[113,99,71,-0.4583333333333333],[113,99,72,-0.4583333333333333],[113,99,73,-0.4583333333333333],[113,99,74,-0.4583333333333333],[113,99,75,-0.4583333333333333],[113,99,76,-0.4583333333333333],[113,99,77,-0.4583333333333333],[113,99,78,-0.4583333333333333],[113,99,79,-0.4583333333333333],[113,100,64,-0.4583333333333333],[113,100,65,-0.4583333333333333],[113,100,66,-0.4583333333333333],[113,100,67,-0.4583333333333333],[113,100,68,-0.4583333333333333],[113,100,69,-0.4583333333333333],[113,100,70,-0.4583333333333333],[113,100,71,-0.4583333333333333],[113,100,72,-0.4583333333333333],[113,100,73,-0.4583333333333333],[113,100,74,-0.4583333333333333],[113,100,75,-0.4583333333333333],[113,100,76,-0.4583333333333333],[113,100,77,-0.4583333333333333],[113,100,78,-0.4583333333333333],[113,100,79,-0.4583333333333333],[113,101,64,-0.4583333333333333],[113,101,65,-0.4583333333333333],[113,101,66,-0.4583333333333333],[113,101,67,-0.4583333333333333],[113,101,68,-0.4583333333333333],[113,101,69,-0.4583333333333333],[113,101,70,-0.4583333333333333],[113,101,71,-0.4583333333333333],[113,101,72,-0.4583333333333333],[113,101,73,-0.4583333333333333],[113,101,74,-0.4583333333333333],[113,101,75,-0.4583333333333333],[113,101,76,-0.4583333333333333],[113,101,77,-0.4583333333333333],[113,101,78,-0.4583333333333333],[113,101,79,-0.4583333333333333],[113,102,64,-0.4583333333333333],[113,102,65,-0.4583333333333333],[113,102,66,-0.4583333333333333],[113,102,67,-0.4583333333333333],[113,102,68,-0.4583333333333333],[113,102,69,-0.4583333333333333],[113,102,70,-0.4583333333333333],[113,102,71,-0.4583333333333333],[113,102,72,-0.4583333333333333],[113,102,73,-0.4583333333333333],[113,102,74,-0.4583333333333333],[113,102,75,-0.4583333333333333],[113,102,76,-0.4583333333333333],[113,102,77,-0.4583333333333333],[113,102,78,-0.4583333333333333],[113,102,79,-0.4583333333333333],[113,103,64,-0.4583333333333333],[113,103,65,-0.4583333333333333],[113,103,66,-0.4583333333333333],[113,103,67,-0.4583333333333333],[113,103,68,-0.4583333333333333],[113,103,69,-0.4583333333333333],[113,103,70,-0.4583333333333333],[113,103,71,-0.4583333333333333],[113,103,72,-0.4583333333333333],[113,103,73,-0.4583333333333333],[113,103,74,-0.4583333333333333],[113,103,75,-0.4583333333333333],[113,103,76,-0.4583333333333333],[113,103,77,-0.4583333333333333],[113,103,78,-0.4583333333333333],[113,103,79,-0.4583333333333333],[113,104,64,-0.4583333333333333],[113,104,65,-0.4583333333333333],[113,104,66,-0.4583333333333333],[113,104,67,-0.4583333333333333],[113,104,68,-0.4583333333333333],[113,104,69,-0.4583333333333333],[113,104,70,-0.4583333333333333],[113,104,71,-0.4583333333333333],[113,104,72,-0.4583333333333333],[113,104,73,-0.4583333333333333],[113,104,74,-0.4583333333333333],[113,104,75,-0.4583333333333333],[113,104,76,-0.4583333333333333],[113,104,77,-0.4583333333333333],[113,104,78,-0.4583333333333333],[113,104,79,-0.4583333333333333],[113,105,64,-0.4583333333333333],[113,105,65,-0.4583333333333333],[113,105,66,-0.4583333333333333],[113,105,67,-0.4583333333333333],[113,105,68,-0.4583333333333333],[113,105,69,-0.4583333333333333],[113,105,70,-0.4583333333333333],[113,105,71,-0.4583333333333333],[113,105,72,-0.4583333333333333],[113,105,73,-0.4583333333333333],[113,105,74,-0.4583333333333333],[113,105,75,-0.4583333333333333],[113,105,76,-0.4583333333333333],[113,105,77,-0.4583333333333333],[113,105,78,-0.4583333333333333],[113,105,79,-0.4583333333333333],[113,106,64,-0.4583333333333333],[113,106,65,-0.4583333333333333],[113,106,66,-0.4583333333333333],[113,106,67,-0.4583333333333333],[113,106,68,-0.4583333333333333],[113,106,69,-0.4583333333333333],[113,106,70,-0.4583333333333333],[113,106,71,-0.4583333333333333],[113,106,72,-0.4583333333333333],[113,106,73,-0.4583333333333333],[113,106,74,-0.4583333333333333],[113,106,75,-0.4583333333333333],[113,106,76,-0.4583333333333333],[113,106,77,-0.4583333333333333],[113,106,78,-0.4583333333333333],[113,106,79,-0.4583333333333333],[113,107,64,-0.4583333333333333],[113,107,65,-0.4583333333333333],[113,107,66,-0.4583333333333333],[113,107,67,-0.4583333333333333],[113,107,68,-0.4583333333333333],[113,107,69,-0.4583333333333333],[113,107,70,-0.4583333333333333],[113,107,71,-0.4583333333333333],[113,107,72,-0.4583333333333333],[113,107,73,-0.4583333333333333],[113,107,74,-0.4583333333333333],[113,107,75,-0.4583333333333333],[113,107,76,-0.4583333333333333],[113,107,77,-0.4583333333333333],[113,107,78,-0.4583333333333333],[113,107,79,-0.4583333333333333],[113,108,64,-0.4583333333333333],[113,108,65,-0.4583333333333333],[113,108,66,-0.4583333333333333],[113,108,67,-0.4583333333333333],[113,108,68,-0.4583333333333333],[113,108,69,-0.4583333333333333],[113,108,70,-0.4583333333333333],[113,108,71,-0.4583333333333333],[113,108,72,-0.4583333333333333],[113,108,73,-0.4583333333333333],[113,108,74,-0.4583333333333333],[113,108,75,-0.4583333333333333],[113,108,76,-0.4583333333333333],[113,108,77,-0.4583333333333333],[113,108,78,-0.4583333333333333],[113,108,79,-0.4583333333333333],[113,109,64,-0.4583333333333333],[113,109,65,-0.4583333333333333],[113,109,66,-0.4583333333333333],[113,109,67,-0.4583333333333333],[113,109,68,-0.4583333333333333],[113,109,69,-0.4583333333333333],[113,109,70,-0.4583333333333333],[113,109,71,-0.4583333333333333],[113,109,72,-0.4583333333333333],[113,109,73,-0.4583333333333333],[113,109,74,-0.4583333333333333],[113,109,75,-0.4583333333333333],[113,109,76,-0.4583333333333333],[113,109,77,-0.4583333333333333],[113,109,78,-0.4583333333333333],[113,109,79,-0.4583333333333333],[113,110,64,-0.4583333333333333],[113,110,65,-0.4583333333333333],[113,110,66,-0.4583333333333333],[113,110,67,-0.4583333333333333],[113,110,68,-0.4583333333333333],[113,110,69,-0.4583333333333333],[113,110,70,-0.4583333333333333],[113,110,71,-0.4583333333333333],[113,110,72,-0.4583333333333333],[113,110,73,-0.4583333333333333],[113,110,74,-0.4583333333333333],[113,110,75,-0.4583333333333333],[113,110,76,-0.4583333333333333],[113,110,77,-0.4583333333333333],[113,110,78,-0.4583333333333333],[113,110,79,-0.4583333333333333],[113,111,64,-0.4583333333333333],[113,111,65,-0.4583333333333333],[113,111,66,-0.4583333333333333],[113,111,67,-0.4583333333333333],[113,111,68,-0.4583333333333333],[113,111,69,-0.4583333333333333],[113,111,70,-0.4583333333333333],[113,111,71,-0.4583333333333333],[113,111,72,-0.4583333333333333],[113,111,73,-0.4583333333333333],[113,111,74,-0.4583333333333333],[113,111,75,-0.4583333333333333],[113,111,76,-0.4583333333333333],[113,111,77,-0.4583333333333333],[113,111,78,-0.4583333333333333],[113,111,79,-0.4583333333333333],[113,112,64,-0.4583333333333333],[113,112,65,-0.4583333333333333],[113,112,66,-0.4583333333333333],[113,112,67,-0.4583333333333333],[113,112,68,-0.4583333333333333],[113,112,69,-0.4583333333333333],[113,112,70,-0.4583333333333333],[113,112,71,-0.4583333333333333],[113,112,72,-0.4583333333333333],[113,112,73,-0.4583333333333333],[113,112,74,-0.4583333333333333],[113,112,75,-0.4583333333333333],[113,112,76,-0.4583333333333333],[113,112,77,-0.4583333333333333],[113,112,78,-0.4583333333333333],[113,112,79,-0.4583333333333333],[113,113,64,-0.4583333333333333],[113,113,65,-0.4583333333333333],[113,113,66,-0.4583333333333333],[113,113,67,-0.4583333333333333],[113,113,68,-0.4583333333333333],[113,113,69,-0.4583333333333333],[113,113,70,-0.4583333333333333],[113,113,71,-0.4583333333333333],[113,113,72,-0.4583333333333333],[113,113,73,-0.4583333333333333],[113,113,74,-0.4583333333333333],[113,113,75,-0.4583333333333333],[113,113,76,-0.4583333333333333],[113,113,77,-0.4583333333333333],[113,113,78,-0.4583333333333333],[113,113,79,-0.4583333333333333],[113,114,64,-0.4583333333333333],[113,114,65,-0.4583333333333333],[113,114,66,-0.4583333333333333],[113,114,67,-0.4583333333333333],[113,114,68,-0.4583333333333333],[113,114,69,-0.4583333333333333],[113,114,70,-0.4583333333333333],[113,114,71,-0.4583333333333333],[113,114,72,-0.4583333333333333],[113,114,73,-0.4583333333333333],[113,114,74,-0.4583333333333333],[113,114,75,-0.4583333333333333],[113,114,76,-0.4583333333333333],[113,114,77,-0.4583333333333333],[113,114,78,-0.4583333333333333],[113,114,79,-0.4583333333333333],[113,115,64,-0.4583333333333333],[113,115,65,-0.4583333333333333],[113,115,66,-0.4583333333333333],[113,115,67,-0.4583333333333333],[113,115,68,-0.4583333333333333],[113,115,69,-0.4583333333333333],[113,115,70,-0.4583333333333333],[113,115,71,-0.4583333333333333],[113,115,72,-0.4583333333333333],[113,115,73,-0.4583333333333333],[113,115,74,-0.4583333333333333],[113,115,75,-0.4583333333333333],[113,115,76,-0.4583333333333333],[113,115,77,-0.4583333333333333],[113,115,78,-0.4583333333333333],[113,115,79,-0.4583333333333333],[113,116,64,-0.4583333333333333],[113,116,65,-0.4583333333333333],[113,116,66,-0.4583333333333333],[113,116,67,-0.4583333333333333],[113,116,68,-0.4583333333333333],[113,116,69,-0.4583333333333333],[113,116,70,-0.4583333333333333],[113,116,71,-0.4583333333333333],[113,116,72,-0.4583333333333333],[113,116,73,-0.4583333333333333],[113,116,74,-0.4583333333333333],[113,116,75,-0.4583333333333333],[113,116,76,-0.4583333333333333],[113,116,77,-0.4583333333333333],[113,116,78,-0.4583333333333333],[113,116,79,-0.4583333333333333],[113,117,64,-0.4583333333333333],[113,117,65,-0.4583333333333333],[113,117,66,-0.4583333333333333],[113,117,67,-0.4583333333333333],[113,117,68,-0.4583333333333333],[113,117,69,-0.4583333333333333],[113,117,70,-0.4583333333333333],[113,117,71,-0.4583333333333333],[113,117,72,-0.4583333333333333],[113,117,73,-0.4583333333333333],[113,117,74,-0.4583333333333333],[113,117,75,-0.4583333333333333],[113,117,76,-0.4583333333333333],[113,117,77,-0.4583333333333333],[113,117,78,-0.4583333333333333],[113,117,79,-0.4583333333333333],[113,118,64,-0.4583333333333333],[113,118,65,-0.4583333333333333],[113,118,66,-0.4583333333333333],[113,118,67,-0.4583333333333333],[113,118,68,-0.4583333333333333],[113,118,69,-0.4583333333333333],[113,118,70,-0.4583333333333333],[113,118,71,-0.4583333333333333],[113,118,72,-0.4583333333333333],[113,118,73,-0.4583333333333333],[113,118,74,-0.4583333333333333],[113,118,75,-0.4583333333333333],[113,118,76,-0.4583333333333333],[113,118,77,-0.4583333333333333],[113,118,78,-0.4583333333333333],[113,118,79,-0.4583333333333333],[113,119,64,-0.4583333333333333],[113,119,65,-0.4583333333333333],[113,119,66,-0.4583333333333333],[113,119,67,-0.4583333333333333],[113,119,68,-0.4583333333333333],[113,119,69,-0.4583333333333333],[113,119,70,-0.4583333333333333],[113,119,71,-0.4583333333333333],[113,119,72,-0.4583333333333333],[113,119,73,-0.4583333333333333],[113,119,74,-0.4583333333333333],[113,119,75,-0.4583333333333333],[113,119,76,-0.4583333333333333],[113,119,77,-0.4583333333333333],[113,119,78,-0.4583333333333333],[113,119,79,-0.4583333333333333],[113,120,64,-0.4583333333333333],[113,120,65,-0.4583333333333333],[113,120,66,-0.4583333333333333],[113,120,67,-0.4583333333333333],[113,120,68,-0.4583333333333333],[113,120,69,-0.4583333333333333],[113,120,70,-0.4583333333333333],[113,120,71,-0.4583333333333333],[113,120,72,-0.4583333333333333],[113,120,73,-0.4583333333333333],[113,120,74,-0.4583333333333333],[113,120,75,-0.4583333333333333],[113,120,76,-0.4583333333333333],[113,120,77,-0.4583333333333333],[113,120,78,-0.4583333333333333],[113,120,79,-0.4583333333333333],[113,121,64,-0.4583333333333333],[113,121,65,-0.4583333333333333],[113,121,66,-0.4583333333333333],[113,121,67,-0.4583333333333333],[113,121,68,-0.4583333333333333],[113,121,69,-0.4583333333333333],[113,121,70,-0.4583333333333333],[113,121,71,-0.4583333333333333],[113,121,72,-0.4583333333333333],[113,121,73,-0.4583333333333333],[113,121,74,-0.4583333333333333],[113,121,75,-0.4583333333333333],[113,121,76,-0.4583333333333333],[113,121,77,-0.4583333333333333],[113,121,78,-0.4583333333333333],[113,121,79,-0.4583333333333333],[113,122,64,-0.4583333333333333],[113,122,65,-0.4583333333333333],[113,122,66,-0.4583333333333333],[113,122,67,-0.4583333333333333],[113,122,68,-0.4583333333333333],[113,122,69,-0.4583333333333333],[113,122,70,-0.4583333333333333],[113,122,71,-0.4583333333333333],[113,122,72,-0.4583333333333333],[113,122,73,-0.4583333333333333],[113,122,74,-0.4583333333333333],[113,122,75,-0.4583333333333333],[113,122,76,-0.4583333333333333],[113,122,77,-0.4583333333333333],[113,122,78,-0.4583333333333333],[113,122,79,-0.4583333333333333],[113,123,64,-0.4583333333333333],[113,123,65,-0.4583333333333333],[113,123,66,-0.4583333333333333],[113,123,67,-0.4583333333333333],[113,123,68,-0.4583333333333333],[113,123,69,-0.4583333333333333],[113,123,70,-0.4583333333333333],[113,123,71,-0.4583333333333333],[113,123,72,-0.4583333333333333],[113,123,73,-0.4583333333333333],[113,123,74,-0.4583333333333333],[113,123,75,-0.4583333333333333],[113,123,76,-0.4583333333333333],[113,123,77,-0.4583333333333333],[113,123,78,-0.4583333333333333],[113,123,79,-0.4583333333333333],[113,124,64,-0.4583333333333333],[113,124,65,-0.4583333333333333],[113,124,66,-0.4583333333333333],[113,124,67,-0.4583333333333333],[113,124,68,-0.4583333333333333],[113,124,69,-0.4583333333333333],[113,124,70,-0.4583333333333333],[113,124,71,-0.4583333333333333],[113,124,72,-0.4583333333333333],[113,124,73,-0.4583333333333333],[113,124,74,-0.4583333333333333],[113,124,75,-0.4583333333333333],[113,124,76,-0.4583333333333333],[113,124,77,-0.4583333333333333],[113,124,78,-0.4583333333333333],[113,124,79,-0.4583333333333333],[113,125,64,-0.4583333333333333],[113,125,65,-0.4583333333333333],[113,125,66,-0.4583333333333333],[113,125,67,-0.4583333333333333],[113,125,68,-0.4583333333333333],[113,125,69,-0.4583333333333333],[113,125,70,-0.4583333333333333],[113,125,71,-0.4583333333333333],[113,125,72,-0.4583333333333333],[113,125,73,-0.4583333333333333],[113,125,74,-0.4583333333333333],[113,125,75,-0.4583333333333333],[113,125,76,-0.4583333333333333],[113,125,77,-0.4583333333333333],[113,125,78,-0.4583333333333333],[113,125,79,-0.4583333333333333],[113,126,64,-0.4583333333333333],[113,126,65,-0.4583333333333333],[113,126,66,-0.4583333333333333],[113,126,67,-0.4583333333333333],[113,126,68,-0.4583333333333333],[113,126,69,-0.4583333333333333],[113,126,70,-0.4583333333333333],[113,126,71,-0.4583333333333333],[113,126,72,-0.4583333333333333],[113,126,73,-0.4583333333333333],[113,126,74,-0.4583333333333333],[113,126,75,-0.4583333333333333],[113,126,76,-0.4583333333333333],[113,126,77,-0.4583333333333333],[113,126,78,-0.4583333333333333],[113,126,79,-0.4583333333333333],[113,127,64,-0.4583333333333333],[113,127,65,-0.4583333333333333],[113,127,66,-0.4583333333333333],[113,127,67,-0.4583333333333333],[113,127,68,-0.4583333333333333],[113,127,69,-0.4583333333333333],[113,127,70,-0.4583333333333333],[113,127,71,-0.4583333333333333],[113,127,72,-0.4583333333333333],[113,127,73,-0.4583333333333333],[113,127,74,-0.4583333333333333],[113,127,75,-0.4583333333333333],[113,127,76,-0.4583333333333333],[113,127,77,-0.4583333333333333],[113,127,78,-0.4583333333333333],[113,127,79,-0.4583333333333333],[113,128,64,-0.4583333333333333],[113,128,65,-0.4583333333333333],[113,128,66,-0.4583333333333333],[113,128,67,-0.4583333333333333],[113,128,68,-0.4583333333333333],[113,128,69,-0.4583333333333333],[113,128,70,-0.4583333333333333],[113,128,71,-0.4583333333333333],[113,128,72,-0.4583333333333333],[113,128,73,-0.4583333333333333],[113,128,74,-0.4583333333333333],[113,128,75,-0.4583333333333333],[113,128,76,-0.4583333333333333],[113,128,77,-0.4583333333333333],[113,128,78,-0.4583333333333333],[113,128,79,-0.4583333333333333],[113,129,64,-0.4583333333333333],[113,129,65,-0.4583333333333333],[113,129,66,-0.4583333333333333],[113,129,67,-0.4583333333333333],[113,129,68,-0.4583333333333333],[113,129,69,-0.4583333333333333],[113,129,70,-0.4583333333333333],[113,129,71,-0.4583333333333333],[113,129,72,-0.4583333333333333],[113,129,73,-0.4583333333333333],[113,129,74,-0.4583333333333333],[113,129,75,-0.4583333333333333],[113,129,76,-0.4583333333333333],[113,129,77,-0.4583333333333333],[113,129,78,-0.4583333333333333],[113,129,79,-0.4583333333333333],[113,130,64,-0.4583333333333333],[113,130,65,-0.4583333333333333],[113,130,66,-0.4583333333333333],[113,130,67,-0.4583333333333333],[113,130,68,-0.4583333333333333],[113,130,69,-0.4583333333333333],[113,130,70,-0.4583333333333333],[113,130,71,-0.4583333333333333],[113,130,72,-0.4583333333333333],[113,130,73,-0.4583333333333333],[113,130,74,-0.4583333333333333],[113,130,75,-0.4583333333333333],[113,130,76,-0.4583333333333333],[113,130,77,-0.4583333333333333],[113,130,78,-0.4583333333333333],[113,130,79,-0.4583333333333333],[113,131,64,-0.4583333333333333],[113,131,65,-0.4583333333333333],[113,131,66,-0.4583333333333333],[113,131,67,-0.4583333333333333],[113,131,68,-0.4583333333333333],[113,131,69,-0.4583333333333333],[113,131,70,-0.4583333333333333],[113,131,71,-0.4583333333333333],[113,131,72,-0.4583333333333333],[113,131,73,-0.4583333333333333],[113,131,74,-0.4583333333333333],[113,131,75,-0.4583333333333333],[113,131,76,-0.4583333333333333],[113,131,77,-0.4583333333333333],[113,131,78,-0.4583333333333333],[113,131,79,-0.4583333333333333],[113,132,64,-0.4583333333333333],[113,132,65,-0.4583333333333333],[113,132,66,-0.4583333333333333],[113,132,67,-0.4583333333333333],[113,132,68,-0.4583333333333333],[113,132,69,-0.4583333333333333],[113,132,70,-0.4583333333333333],[113,132,71,-0.4583333333333333],[113,132,72,-0.4583333333333333],[113,132,73,-0.4583333333333333],[113,132,74,-0.4583333333333333],[113,132,75,-0.4583333333333333],[113,132,76,-0.4583333333333333],[113,132,77,-0.4583333333333333],[113,132,78,-0.4583333333333333],[113,132,79,-0.4583333333333333],[113,133,64,-0.4583333333333333],[113,133,65,-0.4583333333333333],[113,133,66,-0.4583333333333333],[113,133,67,-0.4583333333333333],[113,133,68,-0.4583333333333333],[113,133,69,-0.4583333333333333],[113,133,70,-0.4583333333333333],[113,133,71,-0.4583333333333333],[113,133,72,-0.4583333333333333],[113,133,73,-0.4583333333333333],[113,133,74,-0.4583333333333333],[113,133,75,-0.4583333333333333],[113,133,76,-0.4583333333333333],[113,133,77,-0.4583333333333333],[113,133,78,-0.4583333333333333],[113,133,79,-0.4583333333333333],[113,134,64,-0.4583333333333333],[113,134,65,-0.4583333333333333],[113,134,66,-0.4583333333333333],[113,134,67,-0.4583333333333333],[113,134,68,-0.4583333333333333],[113,134,69,-0.4583333333333333],[113,134,70,-0.4583333333333333],[113,134,71,-0.4583333333333333],[113,134,72,-0.4583333333333333],[113,134,73,-0.4583333333333333],[113,134,74,-0.4583333333333333],[113,134,75,-0.4583333333333333],[113,134,76,-0.4583333333333333],[113,134,77,-0.4583333333333333],[113,134,78,-0.4583333333333333],[113,134,79,-0.4583333333333333],[113,135,64,-0.4583333333333333],[113,135,65,-0.4583333333333333],[113,135,66,-0.4583333333333333],[113,135,67,-0.4583333333333333],[113,135,68,-0.4583333333333333],[113,135,69,-0.4583333333333333],[113,135,70,-0.4583333333333333],[113,135,71,-0.4583333333333333],[113,135,72,-0.4583333333333333],[113,135,73,-0.4583333333333333],[113,135,74,-0.4583333333333333],[113,135,75,-0.4583333333333333],[113,135,76,-0.4583333333333333],[113,135,77,-0.4583333333333333],[113,135,78,-0.4583333333333333],[113,135,79,-0.4583333333333333],[113,136,64,-0.4583333333333333],[113,136,65,-0.4583333333333333],[113,136,66,-0.4583333333333333],[113,136,67,-0.4583333333333333],[113,136,68,-0.4583333333333333],[113,136,69,-0.4583333333333333],[113,136,70,-0.4583333333333333],[113,136,71,-0.4583333333333333],[113,136,72,-0.4583333333333333],[113,136,73,-0.4583333333333333],[113,136,74,-0.4583333333333333],[113,136,75,-0.4583333333333333],[113,136,76,-0.4583333333333333],[113,136,77,-0.4583333333333333],[113,136,78,-0.4583333333333333],[113,136,79,-0.4583333333333333],[113,137,64,-0.4583333333333333],[113,137,65,-0.4583333333333333],[113,137,66,-0.4583333333333333],[113,137,67,-0.4583333333333333],[113,137,68,-0.4583333333333333],[113,137,69,-0.4583333333333333],[113,137,70,-0.4583333333333333],[113,137,71,-0.4583333333333333],[113,137,72,-0.4583333333333333],[113,137,73,-0.4583333333333333],[113,137,74,-0.4583333333333333],[113,137,75,-0.4583333333333333],[113,137,76,-0.4583333333333333],[113,137,77,-0.4583333333333333],[113,137,78,-0.4583333333333333],[113,137,79,-0.4583333333333333],[113,138,64,-0.4583333333333333],[113,138,65,-0.4583333333333333],[113,138,66,-0.4583333333333333],[113,138,67,-0.4583333333333333],[113,138,68,-0.4583333333333333],[113,138,69,-0.4583333333333333],[113,138,70,-0.4583333333333333],[113,138,71,-0.4583333333333333],[113,138,72,-0.4583333333333333],[113,138,73,-0.4583333333333333],[113,138,74,-0.4583333333333333],[113,138,75,-0.4583333333333333],[113,138,76,-0.4583333333333333],[113,138,77,-0.4583333333333333],[113,138,78,-0.4583333333333333],[113,138,79,-0.4583333333333333],[113,139,64,-0.4583333333333333],[113,139,65,-0.4583333333333333],[113,139,66,-0.4583333333333333],[113,139,67,-0.4583333333333333],[113,139,68,-0.4583333333333333],[113,139,69,-0.4583333333333333],[113,139,70,-0.4583333333333333],[113,139,71,-0.4583333333333333],[113,139,72,-0.4583333333333333],[113,139,73,-0.4583333333333333],[113,139,74,-0.4583333333333333],[113,139,75,-0.4583333333333333],[113,139,76,-0.4583333333333333],[113,139,77,-0.4583333333333333],[113,139,78,-0.4583333333333333],[113,139,79,-0.4583333333333333],[113,140,64,-0.4583333333333333],[113,140,65,-0.4583333333333333],[113,140,66,-0.4583333333333333],[113,140,67,-0.4583333333333333],[113,140,68,-0.4583333333333333],[113,140,69,-0.4583333333333333],[113,140,70,-0.4583333333333333],[113,140,71,-0.4583333333333333],[113,140,72,-0.4583333333333333],[113,140,73,-0.4583333333333333],[113,140,74,-0.4583333333333333],[113,140,75,-0.4583333333333333],[113,140,76,-0.4583333333333333],[113,140,77,-0.4583333333333333],[113,140,78,-0.4583333333333333],[113,140,79,-0.4583333333333333],[113,141,64,-0.4583333333333333],[113,141,65,-0.4583333333333333],[113,141,66,-0.4583333333333333],[113,141,67,-0.4583333333333333],[113,141,68,-0.4583333333333333],[113,141,69,-0.4583333333333333],[113,141,70,-0.4583333333333333],[113,141,71,-0.4583333333333333],[113,141,72,-0.4583333333333333],[113,141,73,-0.4583333333333333],[113,141,74,-0.4583333333333333],[113,141,75,-0.4583333333333333],[113,141,76,-0.4583333333333333],[113,141,77,-0.4583333333333333],[113,141,78,-0.4583333333333333],[113,141,79,-0.4583333333333333],[113,142,64,-0.4583333333333333],[113,142,65,-0.4583333333333333],[113,142,66,-0.4583333333333333],[113,142,67,-0.4583333333333333],[113,142,68,-0.4583333333333333],[113,142,69,-0.4583333333333333],[113,142,70,-0.4583333333333333],[113,142,71,-0.4583333333333333],[113,142,72,-0.4583333333333333],[113,142,73,-0.4583333333333333],[113,142,74,-0.4583333333333333],[113,142,75,-0.4583333333333333],[113,142,76,-0.4583333333333333],[113,142,77,-0.4583333333333333],[113,142,78,-0.4583333333333333],[113,142,79,-0.4583333333333333],[113,143,64,-0.4583333333333333],[113,143,65,-0.4583333333333333],[113,143,66,-0.4583333333333333],[113,143,67,-0.4583333333333333],[113,143,68,-0.4583333333333333],[113,143,69,-0.4583333333333333],[113,143,70,-0.4583333333333333],[113,143,71,-0.4583333333333333],[113,143,72,-0.4583333333333333],[113,143,73,-0.4583333333333333],[113,143,74,-0.4583333333333333],[113,143,75,-0.4583333333333333],[113,143,76,-0.4583333333333333],[113,143,77,-0.4583333333333333],[113,143,78,-0.4583333333333333],[113,143,79,-0.4583333333333333],[113,144,64,-0.4583333333333333],[113,144,65,-0.4583333333333333],[113,144,66,-0.4583333333333333],[113,144,67,-0.4583333333333333],[113,144,68,-0.4583333333333333],[113,144,69,-0.4583333333333333],[113,144,70,-0.4583333333333333],[113,144,71,-0.4583333333333333],[113,144,72,-0.4583333333333333],[113,144,73,-0.4583333333333333],[113,144,74,-0.4583333333333333],[113,144,75,-0.4583333333333333],[113,144,76,-0.4583333333333333],[113,144,77,-0.4583333333333333],[113,144,78,-0.4583333333333333],[113,144,79,-0.4583333333333333],[113,145,64,-0.4583333333333333],[113,145,65,-0.4583333333333333],[113,145,66,-0.4583333333333333],[113,145,67,-0.4583333333333333],[113,145,68,-0.4583333333333333],[113,145,69,-0.4583333333333333],[113,145,70,-0.4583333333333333],[113,145,71,-0.4583333333333333],[113,145,72,-0.4583333333333333],[113,145,73,-0.4583333333333333],[113,145,74,-0.4583333333333333],[113,145,75,-0.4583333333333333],[113,145,76,-0.4583333333333333],[113,145,77,-0.4583333333333333],[113,145,78,-0.4583333333333333],[113,145,79,-0.4583333333333333],[113,146,64,-0.4583333333333333],[113,146,65,-0.4583333333333333],[113,146,66,-0.4583333333333333],[113,146,67,-0.4583333333333333],[113,146,68,-0.4583333333333333],[113,146,69,-0.4583333333333333],[113,146,70,-0.4583333333333333],[113,146,71,-0.4583333333333333],[113,146,72,-0.4583333333333333],[113,146,73,-0.4583333333333333],[113,146,74,-0.4583333333333333],[113,146,75,-0.4583333333333333],[113,146,76,-0.4583333333333333],[113,146,77,-0.4583333333333333],[113,146,78,-0.4583333333333333],[113,146,79,-0.4583333333333333],[113,147,64,-0.4583333333333333],[113,147,65,-0.4583333333333333],[113,147,66,-0.4583333333333333],[113,147,67,-0.4583333333333333],[113,147,68,-0.4583333333333333],[113,147,69,-0.4583333333333333],[113,147,70,-0.4583333333333333],[113,147,71,-0.4583333333333333],[113,147,72,-0.4583333333333333],[113,147,73,-0.4583333333333333],[113,147,74,-0.4583333333333333],[113,147,75,-0.4583333333333333],[113,147,76,-0.4583333333333333],[113,147,77,-0.4583333333333333],[113,147,78,-0.4583333333333333],[113,147,79,-0.4583333333333333],[113,148,64,-0.4583333333333333],[113,148,65,-0.4583333333333333],[113,148,66,-0.4583333333333333],[113,148,67,-0.4583333333333333],[113,148,68,-0.4583333333333333],[113,148,69,-0.4583333333333333],[113,148,70,-0.4583333333333333],[113,148,71,-0.4583333333333333],[113,148,72,-0.4583333333333333],[113,148,73,-0.4583333333333333],[113,148,74,-0.4583333333333333],[113,148,75,-0.4583333333333333],[113,148,76,-0.4583333333333333],[113,148,77,-0.4583333333333333],[113,148,78,-0.4583333333333333],[113,148,79,-0.4583333333333333],[113,149,64,-0.4583333333333333],[113,149,65,-0.4583333333333333],[113,149,66,-0.4583333333333333],[113,149,67,-0.4583333333333333],[113,149,68,-0.4583333333333333],[113,149,69,-0.4583333333333333],[113,149,70,-0.4583333333333333],[113,149,71,-0.4583333333333333],[113,149,72,-0.4583333333333333],[113,149,73,-0.4583333333333333],[113,149,74,-0.4583333333333333],[113,149,75,-0.4583333333333333],[113,149,76,-0.4583333333333333],[113,149,77,-0.4583333333333333],[113,149,78,-0.4583333333333333],[113,149,79,-0.4583333333333333],[113,150,64,-0.4583333333333333],[113,150,65,-0.4583333333333333],[113,150,66,-0.4583333333333333],[113,150,67,-0.4583333333333333],[113,150,68,-0.4583333333333333],[113,150,69,-0.4583333333333333],[113,150,70,-0.4583333333333333],[113,150,71,-0.4583333333333333],[113,150,72,-0.4583333333333333],[113,150,73,-0.4583333333333333],[113,150,74,-0.4583333333333333],[113,150,75,-0.4583333333333333],[113,150,76,-0.4583333333333333],[113,150,77,-0.4583333333333333],[113,150,78,-0.4583333333333333],[113,150,79,-0.4583333333333333],[113,151,64,-0.4583333333333333],[113,151,65,-0.4583333333333333],[113,151,66,-0.4583333333333333],[113,151,67,-0.4583333333333333],[113,151,68,-0.4583333333333333],[113,151,69,-0.4583333333333333],[113,151,70,-0.4583333333333333],[113,151,71,-0.4583333333333333],[113,151,72,-0.4583333333333333],[113,151,73,-0.4583333333333333],[113,151,74,-0.4583333333333333],[113,151,75,-0.4583333333333333],[113,151,76,-0.4583333333333333],[113,151,77,-0.4583333333333333],[113,151,78,-0.4583333333333333],[113,151,79,-0.4583333333333333],[113,152,64,-0.4583333333333333],[113,152,65,-0.4583333333333333],[113,152,66,-0.4583333333333333],[113,152,67,-0.4583333333333333],[113,152,68,-0.4583333333333333],[113,152,69,-0.4583333333333333],[113,152,70,-0.4583333333333333],[113,152,71,-0.4583333333333333],[113,152,72,-0.4583333333333333],[113,152,73,-0.4583333333333333],[113,152,74,-0.4583333333333333],[113,152,75,-0.4583333333333333],[113,152,76,-0.4583333333333333],[113,152,77,-0.4583333333333333],[113,152,78,-0.4583333333333333],[113,152,79,-0.4583333333333333],[113,153,64,-0.4583333333333333],[113,153,65,-0.4583333333333333],[113,153,66,-0.4583333333333333],[113,153,67,-0.4583333333333333],[113,153,68,-0.4583333333333333],[113,153,69,-0.4583333333333333],[113,153,70,-0.4583333333333333],[113,153,71,-0.4583333333333333],[113,153,72,-0.4583333333333333],[113,153,73,-0.4583333333333333],[113,153,74,-0.4583333333333333],[113,153,75,-0.4583333333333333],[113,153,76,-0.4583333333333333],[113,153,77,-0.4583333333333333],[113,153,78,-0.4583333333333333],[113,153,79,-0.4583333333333333],[113,154,64,-0.4583333333333333],[113,154,65,-0.4583333333333333],[113,154,66,-0.4583333333333333],[113,154,67,-0.4583333333333333],[113,154,68,-0.4583333333333333],[113,154,69,-0.4583333333333333],[113,154,70,-0.4583333333333333],[113,154,71,-0.4583333333333333],[113,154,72,-0.4583333333333333],[113,154,73,-0.4583333333333333],[113,154,74,-0.4583333333333333],[113,154,75,-0.4583333333333333],[113,154,76,-0.4583333333333333],[113,154,77,-0.4583333333333333],[113,154,78,-0.4583333333333333],[113,154,79,-0.4583333333333333],[113,155,64,-0.4583333333333333],[113,155,65,-0.4583333333333333],[113,155,66,-0.4583333333333333],[113,155,67,-0.4583333333333333],[113,155,68,-0.4583333333333333],[113,155,69,-0.4583333333333333],[113,155,70,-0.4583333333333333],[113,155,71,-0.4583333333333333],[113,155,72,-0.4583333333333333],[113,155,73,-0.4583333333333333],[113,155,74,-0.4583333333333333],[113,155,75,-0.4583333333333333],[113,155,76,-0.4583333333333333],[113,155,77,-0.4583333333333333],[113,155,78,-0.4583333333333333],[113,155,79,-0.4583333333333333],[113,156,64,-0.4583333333333333],[113,156,65,-0.4583333333333333],[113,156,66,-0.4583333333333333],[113,156,67,-0.4583333333333333],[113,156,68,-0.4583333333333333],[113,156,69,-0.4583333333333333],[113,156,70,-0.4583333333333333],[113,156,71,-0.4583333333333333],[113,156,72,-0.4583333333333333],[113,156,73,-0.4583333333333333],[113,156,74,-0.4583333333333333],[113,156,75,-0.4583333333333333],[113,156,76,-0.4583333333333333],[113,156,77,-0.4583333333333333],[113,156,78,-0.4583333333333333],[113,156,79,-0.4583333333333333],[113,157,64,-0.4583333333333333],[113,157,65,-0.4583333333333333],[113,157,66,-0.4583333333333333],[113,157,67,-0.4583333333333333],[113,157,68,-0.4583333333333333],[113,157,69,-0.4583333333333333],[113,157,70,-0.4583333333333333],[113,157,71,-0.4583333333333333],[113,157,72,-0.4583333333333333],[113,157,73,-0.4583333333333333],[113,157,74,-0.4583333333333333],[113,157,75,-0.4583333333333333],[113,157,76,-0.4583333333333333],[113,157,77,-0.4583333333333333],[113,157,78,-0.4583333333333333],[113,157,79,-0.4583333333333333],[113,158,64,-0.4583333333333333],[113,158,65,-0.4583333333333333],[113,158,66,-0.4583333333333333],[113,158,67,-0.4583333333333333],[113,158,68,-0.4583333333333333],[113,158,69,-0.4583333333333333],[113,158,70,-0.4583333333333333],[113,158,71,-0.4583333333333333],[113,158,72,-0.4583333333333333],[113,158,73,-0.4583333333333333],[113,158,74,-0.4583333333333333],[113,158,75,-0.4583333333333333],[113,158,76,-0.4583333333333333],[113,158,77,-0.4583333333333333],[113,158,78,-0.4583333333333333],[113,158,79,-0.4583333333333333],[113,159,64,-0.4583333333333333],[113,159,65,-0.4583333333333333],[113,159,66,-0.4583333333333333],[113,159,67,-0.4583333333333333],[113,159,68,-0.4583333333333333],[113,159,69,-0.4583333333333333],[113,159,70,-0.4583333333333333],[113,159,71,-0.4583333333333333],[113,159,72,-0.4583333333333333],[113,159,73,-0.4583333333333333],[113,159,74,-0.4583333333333333],[113,159,75,-0.4583333333333333],[113,159,76,-0.4583333333333333],[113,159,77,-0.4583333333333333],[113,159,78,-0.4583333333333333],[113,159,79,-0.4583333333333333],[113,160,64,-0.4583333333333333],[113,160,65,-0.4583333333333333],[113,160,66,-0.4583333333333333],[113,160,67,-0.4583333333333333],[113,160,68,-0.4583333333333333],[113,160,69,-0.4583333333333333],[113,160,70,-0.4583333333333333],[113,160,71,-0.4583333333333333],[113,160,72,-0.4583333333333333],[113,160,73,-0.4583333333333333],[113,160,74,-0.4583333333333333],[113,160,75,-0.4583333333333333],[113,160,76,-0.4583333333333333],[113,160,77,-0.4583333333333333],[113,160,78,-0.4583333333333333],[113,160,79,-0.4583333333333333],[113,161,64,-0.4583333333333333],[113,161,65,-0.4583333333333333],[113,161,66,-0.4583333333333333],[113,161,67,-0.4583333333333333],[113,161,68,-0.4583333333333333],[113,161,69,-0.4583333333333333],[113,161,70,-0.4583333333333333],[113,161,71,-0.4583333333333333],[113,161,72,-0.4583333333333333],[113,161,73,-0.4583333333333333],[113,161,74,-0.4583333333333333],[113,161,75,-0.4583333333333333],[113,161,76,-0.4583333333333333],[113,161,77,-0.4583333333333333],[113,161,78,-0.4583333333333333],[113,161,79,-0.4583333333333333],[113,162,64,-0.4583333333333333],[113,162,65,-0.4583333333333333],[113,162,66,-0.4583333333333333],[113,162,67,-0.4583333333333333],[113,162,68,-0.4583333333333333],[113,162,69,-0.4583333333333333],[113,162,70,-0.4583333333333333],[113,162,71,-0.4583333333333333],[113,162,72,-0.4583333333333333],[113,162,73,-0.4583333333333333],[113,162,74,-0.4583333333333333],[113,162,75,-0.4583333333333333],[113,162,76,-0.4583333333333333],[113,162,77,-0.4583333333333333],[113,162,78,-0.4583333333333333],[113,162,79,-0.4583333333333333],[113,163,64,-0.4583333333333333],[113,163,65,-0.4583333333333333],[113,163,66,-0.4583333333333333],[113,163,67,-0.4583333333333333],[113,163,68,-0.4583333333333333],[113,163,69,-0.4583333333333333],[113,163,70,-0.4583333333333333],[113,163,71,-0.4583333333333333],[113,163,72,-0.4583333333333333],[113,163,73,-0.4583333333333333],[113,163,74,-0.4583333333333333],[113,163,75,-0.4583333333333333],[113,163,76,-0.4583333333333333],[113,163,77,-0.4583333333333333],[113,163,78,-0.4583333333333333],[113,163,79,-0.4583333333333333],[113,164,64,-0.4583333333333333],[113,164,65,-0.4583333333333333],[113,164,66,-0.4583333333333333],[113,164,67,-0.4583333333333333],[113,164,68,-0.4583333333333333],[113,164,69,-0.4583333333333333],[113,164,70,-0.4583333333333333],[113,164,71,-0.4583333333333333],[113,164,72,-0.4583333333333333],[113,164,73,-0.4583333333333333],[113,164,74,-0.4583333333333333],[113,164,75,-0.4583333333333333],[113,164,76,-0.4583333333333333],[113,164,77,-0.4583333333333333],[113,164,78,-0.4583333333333333],[113,164,79,-0.4583333333333333],[113,165,64,-0.4583333333333333],[113,165,65,-0.4583333333333333],[113,165,66,-0.4583333333333333],[113,165,67,-0.4583333333333333],[113,165,68,-0.4583333333333333],[113,165,69,-0.4583333333333333],[113,165,70,-0.4583333333333333],[113,165,71,-0.4583333333333333],[113,165,72,-0.4583333333333333],[113,165,73,-0.4583333333333333],[113,165,74,-0.4583333333333333],[113,165,75,-0.4583333333333333],[113,165,76,-0.4583333333333333],[113,165,77,-0.4583333333333333],[113,165,78,-0.4583333333333333],[113,165,79,-0.4583333333333333],[113,166,64,-0.4583333333333333],[113,166,65,-0.4583333333333333],[113,166,66,-0.4583333333333333],[113,166,67,-0.4583333333333333],[113,166,68,-0.4583333333333333],[113,166,69,-0.4583333333333333],[113,166,70,-0.4583333333333333],[113,166,71,-0.4583333333333333],[113,166,72,-0.4583333333333333],[113,166,73,-0.4583333333333333],[113,166,74,-0.4583333333333333],[113,166,75,-0.4583333333333333],[113,166,76,-0.4583333333333333],[113,166,77,-0.4583333333333333],[113,166,78,-0.4583333333333333],[113,166,79,-0.4583333333333333],[113,167,64,-0.4583333333333333],[113,167,65,-0.4583333333333333],[113,167,66,-0.4583333333333333],[113,167,67,-0.4583333333333333],[113,167,68,-0.4583333333333333],[113,167,69,-0.4583333333333333],[113,167,70,-0.4583333333333333],[113,167,71,-0.4583333333333333],[113,167,72,-0.4583333333333333],[113,167,73,-0.4583333333333333],[113,167,74,-0.4583333333333333],[113,167,75,-0.4583333333333333],[113,167,76,-0.4583333333333333],[113,167,77,-0.4583333333333333],[113,167,78,-0.4583333333333333],[113,167,79,-0.4583333333333333],[113,168,64,-0.4583333333333333],[113,168,65,-0.4583333333333333],[113,168,66,-0.4583333333333333],[113,168,67,-0.4583333333333333],[113,168,68,-0.4583333333333333],[113,168,69,-0.4583333333333333],[113,168,70,-0.4583333333333333],[113,168,71,-0.4583333333333333],[113,168,72,-0.4583333333333333],[113,168,73,-0.4583333333333333],[113,168,74,-0.4583333333333333],[113,168,75,-0.4583333333333333],[113,168,76,-0.4583333333333333],[113,168,77,-0.4583333333333333],[113,168,78,-0.4583333333333333],[113,168,79,-0.4583333333333333],[113,169,64,-0.4583333333333333],[113,169,65,-0.4583333333333333],[113,169,66,-0.4583333333333333],[113,169,67,-0.4583333333333333],[113,169,68,-0.4583333333333333],[113,169,69,-0.4583333333333333],[113,169,70,-0.4583333333333333],[113,169,71,-0.4583333333333333],[113,169,72,-0.4583333333333333],[113,169,73,-0.4583333333333333],[113,169,74,-0.4583333333333333],[113,169,75,-0.4583333333333333],[113,169,76,-0.4583333333333333],[113,169,77,-0.4583333333333333],[113,169,78,-0.4583333333333333],[113,169,79,-0.4583333333333333],[113,170,64,-0.4583333333333333],[113,170,65,-0.4583333333333333],[113,170,66,-0.4583333333333333],[113,170,67,-0.4583333333333333],[113,170,68,-0.4583333333333333],[113,170,69,-0.4583333333333333],[113,170,70,-0.4583333333333333],[113,170,71,-0.4583333333333333],[113,170,72,-0.4583333333333333],[113,170,73,-0.4583333333333333],[113,170,74,-0.4583333333333333],[113,170,75,-0.4583333333333333],[113,170,76,-0.4583333333333333],[113,170,77,-0.4583333333333333],[113,170,78,-0.4583333333333333],[113,170,79,-0.4583333333333333],[113,171,64,-0.4583333333333333],[113,171,65,-0.4583333333333333],[113,171,66,-0.4583333333333333],[113,171,67,-0.4583333333333333],[113,171,68,-0.4583333333333333],[113,171,69,-0.4583333333333333],[113,171,70,-0.4583333333333333],[113,171,71,-0.4583333333333333],[113,171,72,-0.4583333333333333],[113,171,73,-0.4583333333333333],[113,171,74,-0.4583333333333333],[113,171,75,-0.4583333333333333],[113,171,76,-0.4583333333333333],[113,171,77,-0.4583333333333333],[113,171,78,-0.4583333333333333],[113,171,79,-0.4583333333333333],[113,172,64,-0.4583333333333333],[113,172,65,-0.4583333333333333],[113,172,66,-0.4583333333333333],[113,172,67,-0.4583333333333333],[113,172,68,-0.4583333333333333],[113,172,69,-0.4583333333333333],[113,172,70,-0.4583333333333333],[113,172,71,-0.4583333333333333],[113,172,72,-0.4583333333333333],[113,172,73,-0.4583333333333333],[113,172,74,-0.4583333333333333],[113,172,75,-0.4583333333333333],[113,172,76,-0.4583333333333333],[113,172,77,-0.4583333333333333],[113,172,78,-0.4583333333333333],[113,172,79,-0.4583333333333333],[113,173,64,-0.4583333333333333],[113,173,65,-0.4583333333333333],[113,173,66,-0.4583333333333333],[113,173,67,-0.4583333333333333],[113,173,68,-0.4583333333333333],[113,173,69,-0.4583333333333333],[113,173,70,-0.4583333333333333],[113,173,71,-0.4583333333333333],[113,173,72,-0.4583333333333333],[113,173,73,-0.4583333333333333],[113,173,74,-0.4583333333333333],[113,173,75,-0.4583333333333333],[113,173,76,-0.4583333333333333],[113,173,77,-0.4583333333333333],[113,173,78,-0.4583333333333333],[113,173,79,-0.4583333333333333],[113,174,64,-0.4583333333333333],[113,174,65,-0.4583333333333333],[113,174,66,-0.4583333333333333],[113,174,67,-0.4583333333333333],[113,174,68,-0.4583333333333333],[113,174,69,-0.4583333333333333],[113,174,70,-0.4583333333333333],[113,174,71,-0.4583333333333333],[113,174,72,-0.4583333333333333],[113,174,73,-0.4583333333333333],[113,174,74,-0.4583333333333333],[113,174,75,-0.4583333333333333],[113,174,76,-0.4583333333333333],[113,174,77,-0.4583333333333333],[113,174,78,-0.4583333333333333],[113,174,79,-0.4583333333333333],[113,175,64,-0.4583333333333333],[113,175,65,-0.4583333333333333],[113,175,66,-0.4583333333333333],[113,175,67,-0.4583333333333333],[113,175,68,-0.4583333333333333],[113,175,69,-0.4583333333333333],[113,175,70,-0.4583333333333333],[113,175,71,-0.4583333333333333],[113,175,72,-0.4583333333333333],[113,175,73,-0.4583333333333333],[113,175,74,-0.4583333333333333],[113,175,75,-0.4583333333333333],[113,175,76,-0.4583333333333333],[113,175,77,-0.4583333333333333],[113,175,78,-0.4583333333333333],[113,175,79,-0.4583333333333333],[113,176,64,-0.4583333333333333],[113,176,65,-0.4583333333333333],[113,176,66,-0.4583333333333333],[113,176,67,-0.4583333333333333],[113,176,68,-0.4583333333333333],[113,176,69,-0.4583333333333333],[113,176,70,-0.4583333333333333],[113,176,71,-0.4583333333333333],[113,176,72,-0.4583333333333333],[113,176,73,-0.4583333333333333],[113,176,74,-0.4583333333333333],[113,176,75,-0.4583333333333333],[113,176,76,-0.4583333333333333],[113,176,77,-0.4583333333333333],[113,176,78,-0.4583333333333333],[113,176,79,-0.4583333333333333],[113,177,64,-0.4583333333333333],[113,177,65,-0.4583333333333333],[113,177,66,-0.4583333333333333],[113,177,67,-0.4583333333333333],[113,177,68,-0.4583333333333333],[113,177,69,-0.4583333333333333],[113,177,70,-0.4583333333333333],[113,177,71,-0.4583333333333333],[113,177,72,-0.4583333333333333],[113,177,73,-0.4583333333333333],[113,177,74,-0.4583333333333333],[113,177,75,-0.4583333333333333],[113,177,76,-0.4583333333333333],[113,177,77,-0.4583333333333333],[113,177,78,-0.4583333333333333],[113,177,79,-0.4583333333333333],[113,178,64,-0.4583333333333333],[113,178,65,-0.4583333333333333],[113,178,66,-0.4583333333333333],[113,178,67,-0.4583333333333333],[113,178,68,-0.4583333333333333],[113,178,69,-0.4583333333333333],[113,178,70,-0.4583333333333333],[113,178,71,-0.4583333333333333],[113,178,72,-0.4583333333333333],[113,178,73,-0.4583333333333333],[113,178,74,-0.4583333333333333],[113,178,75,-0.4583333333333333],[113,178,76,-0.4583333333333333],[113,178,77,-0.4583333333333333],[113,178,78,-0.4583333333333333],[113,178,79,-0.4583333333333333],[113,179,64,-0.4583333333333333],[113,179,65,-0.4583333333333333],[113,179,66,-0.4583333333333333],[113,179,67,-0.4583333333333333],[113,179,68,-0.4583333333333333],[113,179,69,-0.4583333333333333],[113,179,70,-0.4583333333333333],[113,179,71,-0.4583333333333333],[113,179,72,-0.4583333333333333],[113,179,73,-0.4583333333333333],[113,179,74,-0.4583333333333333],[113,179,75,-0.4583333333333333],[113,179,76,-0.4583333333333333],[113,179,77,-0.4583333333333333],[113,179,78,-0.4583333333333333],[113,179,79,-0.4583333333333333],[113,180,64,-0.4583333333333333],[113,180,65,-0.4583333333333333],[113,180,66,-0.4583333333333333],[113,180,67,-0.4583333333333333],[113,180,68,-0.4583333333333333],[113,180,69,-0.4583333333333333],[113,180,70,-0.4583333333333333],[113,180,71,-0.4583333333333333],[113,180,72,-0.4583333333333333],[113,180,73,-0.4583333333333333],[113,180,74,-0.4583333333333333],[113,180,75,-0.4583333333333333],[113,180,76,-0.4583333333333333],[113,180,77,-0.4583333333333333],[113,180,78,-0.4583333333333333],[113,180,79,-0.4583333333333333],[113,181,64,-0.4583333333333333],[113,181,65,-0.4583333333333333],[113,181,66,-0.4583333333333333],[113,181,67,-0.4583333333333333],[113,181,68,-0.4583333333333333],[113,181,69,-0.4583333333333333],[113,181,70,-0.4583333333333333],[113,181,71,-0.4583333333333333],[113,181,72,-0.4583333333333333],[113,181,73,-0.4583333333333333],[113,181,74,-0.4583333333333333],[113,181,75,-0.4583333333333333],[113,181,76,-0.4583333333333333],[113,181,77,-0.4583333333333333],[113,181,78,-0.4583333333333333],[113,181,79,-0.4583333333333333],[113,182,64,-0.4583333333333333],[113,182,65,-0.4583333333333333],[113,182,66,-0.4583333333333333],[113,182,67,-0.4583333333333333],[113,182,68,-0.4583333333333333],[113,182,69,-0.4583333333333333],[113,182,70,-0.4583333333333333],[113,182,71,-0.4583333333333333],[113,182,72,-0.4583333333333333],[113,182,73,-0.4583333333333333],[113,182,74,-0.4583333333333333],[113,182,75,-0.4583333333333333],[113,182,76,-0.4583333333333333],[113,182,77,-0.4583333333333333],[113,182,78,-0.4583333333333333],[113,182,79,-0.4583333333333333],[113,183,64,-0.4583333333333333],[113,183,65,-0.4583333333333333],[113,183,66,-0.4583333333333333],[113,183,67,-0.4583333333333333],[113,183,68,-0.4583333333333333],[113,183,69,-0.4583333333333333],[113,183,70,-0.4583333333333333],[113,183,71,-0.4583333333333333],[113,183,72,-0.4583333333333333],[113,183,73,-0.4583333333333333],[113,183,74,-0.4583333333333333],[113,183,75,-0.4583333333333333],[113,183,76,-0.4583333333333333],[113,183,77,-0.4583333333333333],[113,183,78,-0.4583333333333333],[113,183,79,-0.4583333333333333],[113,184,64,-0.4583333333333333],[113,184,65,-0.4583333333333333],[113,184,66,-0.4583333333333333],[113,184,67,-0.4583333333333333],[113,184,68,-0.4583333333333333],[113,184,69,-0.4583333333333333],[113,184,70,-0.4583333333333333],[113,184,71,-0.4583333333333333],[113,184,72,-0.4583333333333333],[113,184,73,-0.4583333333333333],[113,184,74,-0.4583333333333333],[113,184,75,-0.4583333333333333],[113,184,76,-0.4583333333333333],[113,184,77,-0.4583333333333333],[113,184,78,-0.4583333333333333],[113,184,79,-0.4583333333333333],[113,185,64,-0.4583333333333333],[113,185,65,-0.4583333333333333],[113,185,66,-0.4583333333333333],[113,185,67,-0.4583333333333333],[113,185,68,-0.4583333333333333],[113,185,69,-0.4583333333333333],[113,185,70,-0.4583333333333333],[113,185,71,-0.4583333333333333],[113,185,72,-0.4583333333333333],[113,185,73,-0.4583333333333333],[113,185,74,-0.4583333333333333],[113,185,75,-0.4583333333333333],[113,185,76,-0.4583333333333333],[113,185,77,-0.4583333333333333],[113,185,78,-0.4583333333333333],[113,185,79,-0.4583333333333333],[113,186,64,-0.4583333333333333],[113,186,65,-0.4583333333333333],[113,186,66,-0.4583333333333333],[113,186,67,-0.4583333333333333],[113,186,68,-0.4583333333333333],[113,186,69,-0.4583333333333333],[113,186,70,-0.4583333333333333],[113,186,71,-0.4583333333333333],[113,186,72,-0.4583333333333333],[113,186,73,-0.4583333333333333],[113,186,74,-0.4583333333333333],[113,186,75,-0.4583333333333333],[113,186,76,-0.4583333333333333],[113,186,77,-0.4583333333333333],[113,186,78,-0.4583333333333333],[113,186,79,-0.4583333333333333],[113,187,64,-0.4583333333333333],[113,187,65,-0.4583333333333333],[113,187,66,-0.4583333333333333],[113,187,67,-0.4583333333333333],[113,187,68,-0.4583333333333333],[113,187,69,-0.4583333333333333],[113,187,70,-0.4583333333333333],[113,187,71,-0.4583333333333333],[113,187,72,-0.4583333333333333],[113,187,73,-0.4583333333333333],[113,187,74,-0.4583333333333333],[113,187,75,-0.4583333333333333],[113,187,76,-0.4583333333333333],[113,187,77,-0.4583333333333333],[113,187,78,-0.4583333333333333],[113,187,79,-0.4583333333333333],[113,188,64,-0.4583333333333333],[113,188,65,-0.4583333333333333],[113,188,66,-0.4583333333333333],[113,188,67,-0.4583333333333333],[113,188,68,-0.4583333333333333],[113,188,69,-0.4583333333333333],[113,188,70,-0.4583333333333333],[113,188,71,-0.4583333333333333],[113,188,72,-0.4583333333333333],[113,188,73,-0.4583333333333333],[113,188,74,-0.4583333333333333],[113,188,75,-0.4583333333333333],[113,188,76,-0.4583333333333333],[113,188,77,-0.4583333333333333],[113,188,78,-0.4583333333333333],[113,188,79,-0.4583333333333333],[113,189,64,-0.4583333333333333],[113,189,65,-0.4583333333333333],[113,189,66,-0.4583333333333333],[113,189,67,-0.4583333333333333],[113,189,68,-0.4583333333333333],[113,189,69,-0.4583333333333333],[113,189,70,-0.4583333333333333],[113,189,71,-0.4583333333333333],[113,189,72,-0.4583333333333333],[113,189,73,-0.4583333333333333],[113,189,74,-0.4583333333333333],[113,189,75,-0.4583333333333333],[113,189,76,-0.4583333333333333],[113,189,77,-0.4583333333333333],[113,189,78,-0.4583333333333333],[113,189,79,-0.4583333333333333],[113,190,64,-0.4583333333333333],[113,190,65,-0.4583333333333333],[113,190,66,-0.4583333333333333],[113,190,67,-0.4583333333333333],[113,190,68,-0.4583333333333333],[113,190,69,-0.4583333333333333],[113,190,70,-0.4583333333333333],[113,190,71,-0.4583333333333333],[113,190,72,-0.4583333333333333],[113,190,73,-0.4583333333333333],[113,190,74,-0.4583333333333333],[113,190,75,-0.4583333333333333],[113,190,76,-0.4583333333333333],[113,190,77,-0.4583333333333333],[113,190,78,-0.4583333333333333],[113,190,79,-0.4583333333333333],[113,191,64,-0.4583333333333333],[113,191,65,-0.4583333333333333],[113,191,66,-0.4583333333333333],[113,191,67,-0.4583333333333333],[113,191,68,-0.4583333333333333],[113,191,69,-0.4583333333333333],[113,191,70,-0.4583333333333333],[113,191,71,-0.4583333333333333],[113,191,72,-0.4583333333333333],[113,191,73,-0.4583333333333333],[113,191,74,-0.4583333333333333],[113,191,75,-0.4583333333333333],[113,191,76,-0.4583333333333333],[113,191,77,-0.4583333333333333],[113,191,78,-0.4583333333333333],[113,191,79,-0.4583333333333333],[113,192,64,-0.4583333333333333],[113,192,65,-0.4583333333333333],[113,192,66,-0.4583333333333333],[113,192,67,-0.4583333333333333],[113,192,68,-0.4583333333333333],[113,192,69,-0.4583333333333333],[113,192,70,-0.4583333333333333],[113,192,71,-0.4583333333333333],[113,192,72,-0.4583333333333333],[113,192,73,-0.4583333333333333],[113,192,74,-0.4583333333333333],[113,192,75,-0.4583333333333333],[113,192,76,-0.4583333333333333],[113,192,77,-0.4583333333333333],[113,192,78,-0.4583333333333333],[113,192,79,-0.4583333333333333],[113,193,64,-0.4583333333333333],[113,193,65,-0.4583333333333333],[113,193,66,-0.4583333333333333],[113,193,67,-0.4583333333333333],[113,193,68,-0.4583333333333333],[113,193,69,-0.4583333333333333],[113,193,70,-0.4583333333333333],[113,193,71,-0.4583333333333333],[113,193,72,-0.4583333333333333],[113,193,73,-0.4583333333333333],[113,193,74,-0.4583333333333333],[113,193,75,-0.4583333333333333],[113,193,76,-0.4583333333333333],[113,193,77,-0.4583333333333333],[113,193,78,-0.4583333333333333],[113,193,79,-0.4583333333333333],[113,194,64,-0.4583333333333333],[113,194,65,-0.4583333333333333],[113,194,66,-0.4583333333333333],[113,194,67,-0.4583333333333333],[113,194,68,-0.4583333333333333],[113,194,69,-0.4583333333333333],[113,194,70,-0.4583333333333333],[113,194,71,-0.4583333333333333],[113,194,72,-0.4583333333333333],[113,194,73,-0.4583333333333333],[113,194,74,-0.4583333333333333],[113,194,75,-0.4583333333333333],[113,194,76,-0.4583333333333333],[113,194,77,-0.4583333333333333],[113,194,78,-0.4583333333333333],[113,194,79,-0.4583333333333333],[113,195,64,-0.4583333333333333],[113,195,65,-0.4583333333333333],[113,195,66,-0.4583333333333333],[113,195,67,-0.4583333333333333],[113,195,68,-0.4583333333333333],[113,195,69,-0.4583333333333333],[113,195,70,-0.4583333333333333],[113,195,71,-0.4583333333333333],[113,195,72,-0.4583333333333333],[113,195,73,-0.4583333333333333],[113,195,74,-0.4583333333333333],[113,195,75,-0.4583333333333333],[113,195,76,-0.4583333333333333],[113,195,77,-0.4583333333333333],[113,195,78,-0.4583333333333333],[113,195,79,-0.4583333333333333],[113,196,64,-0.4583333333333333],[113,196,65,-0.4583333333333333],[113,196,66,-0.4583333333333333],[113,196,67,-0.4583333333333333],[113,196,68,-0.4583333333333333],[113,196,69,-0.4583333333333333],[113,196,70,-0.4583333333333333],[113,196,71,-0.4583333333333333],[113,196,72,-0.4583333333333333],[113,196,73,-0.4583333333333333],[113,196,74,-0.4583333333333333],[113,196,75,-0.4583333333333333],[113,196,76,-0.4583333333333333],[113,196,77,-0.4583333333333333],[113,196,78,-0.4583333333333333],[113,196,79,-0.4583333333333333],[113,197,64,-0.4583333333333333],[113,197,65,-0.4583333333333333],[113,197,66,-0.4583333333333333],[113,197,67,-0.4583333333333333],[113,197,68,-0.4583333333333333],[113,197,69,-0.4583333333333333],[113,197,70,-0.4583333333333333],[113,197,71,-0.4583333333333333],[113,197,72,-0.4583333333333333],[113,197,73,-0.4583333333333333],[113,197,74,-0.4583333333333333],[113,197,75,-0.4583333333333333],[113,197,76,-0.4583333333333333],[113,197,77,-0.4583333333333333],[113,197,78,-0.4583333333333333],[113,197,79,-0.4583333333333333],[113,198,64,-0.4583333333333333],[113,198,65,-0.4583333333333333],[113,198,66,-0.4583333333333333],[113,198,67,-0.4583333333333333],[113,198,68,-0.4583333333333333],[113,198,69,-0.4583333333333333],[113,198,70,-0.4583333333333333],[113,198,71,-0.4583333333333333],[113,198,72,-0.4583333333333333],[113,198,73,-0.4583333333333333],[113,198,74,-0.4583333333333333],[113,198,75,-0.4583333333333333],[113,198,76,-0.4583333333333333],[113,198,77,-0.4583333333333333],[113,198,78,-0.4583333333333333],[113,198,79,-0.4583333333333333],[113,199,64,-0.4583333333333333],[113,199,65,-0.4583333333333333],[113,199,66,-0.4583333333333333],[113,199,67,-0.4583333333333333],[113,199,68,-0.4583333333333333],[113,199,69,-0.4583333333333333],[113,199,70,-0.4583333333333333],[113,199,71,-0.4583333333333333],[113,199,72,-0.4583333333333333],[113,199,73,-0.4583333333333333],[113,199,74,-0.4583333333333333],[113,199,75,-0.4583333333333333],[113,199,76,-0.4583333333333333],[113,199,77,-0.4583333333333333],[113,199,78,-0.4583333333333333],[113,199,79,-0.4583333333333333],[113,200,64,-0.4583333333333333],[113,200,65,-0.4583333333333333],[113,200,66,-0.4583333333333333],[113,200,67,-0.4583333333333333],[113,200,68,-0.4583333333333333],[113,200,69,-0.4583333333333333],[113,200,70,-0.4583333333333333],[113,200,71,-0.4583333333333333],[113,200,72,-0.4583333333333333],[113,200,73,-0.4583333333333333],[113,200,74,-0.4583333333333333],[113,200,75,-0.4583333333333333],[113,200,76,-0.4583333333333333],[113,200,77,-0.4583333333333333],[113,200,78,-0.4583333333333333],[113,200,79,-0.4583333333333333],[113,201,64,-0.4583333333333333],[113,201,65,-0.4583333333333333],[113,201,66,-0.4583333333333333],[113,201,67,-0.4583333333333333],[113,201,68,-0.4583333333333333],[113,201,69,-0.4583333333333333],[113,201,70,-0.4583333333333333],[113,201,71,-0.4583333333333333],[113,201,72,-0.4583333333333333],[113,201,73,-0.4583333333333333],[113,201,74,-0.4583333333333333],[113,201,75,-0.4583333333333333],[113,201,76,-0.4583333333333333],[113,201,77,-0.4583333333333333],[113,201,78,-0.4583333333333333],[113,201,79,-0.4583333333333333],[113,202,64,-0.4583333333333333],[113,202,65,-0.4583333333333333],[113,202,66,-0.4583333333333333],[113,202,67,-0.4583333333333333],[113,202,68,-0.4583333333333333],[113,202,69,-0.4583333333333333],[113,202,70,-0.4583333333333333],[113,202,71,-0.4583333333333333],[113,202,72,-0.4583333333333333],[113,202,73,-0.4583333333333333],[113,202,74,-0.4583333333333333],[113,202,75,-0.4583333333333333],[113,202,76,-0.4583333333333333],[113,202,77,-0.4583333333333333],[113,202,78,-0.4583333333333333],[113,202,79,-0.4583333333333333],[113,203,64,-0.4583333333333333],[113,203,65,-0.4583333333333333],[113,203,66,-0.4583333333333333],[113,203,67,-0.4583333333333333],[113,203,68,-0.4583333333333333],[113,203,69,-0.4583333333333333],[113,203,70,-0.4583333333333333],[113,203,71,-0.4583333333333333],[113,203,72,-0.4583333333333333],[113,203,73,-0.4583333333333333],[113,203,74,-0.4583333333333333],[113,203,75,-0.4583333333333333],[113,203,76,-0.4583333333333333],[113,203,77,-0.4583333333333333],[113,203,78,-0.4583333333333333],[113,203,79,-0.4583333333333333],[113,204,64,-0.4583333333333333],[113,204,65,-0.4583333333333333],[113,204,66,-0.4583333333333333],[113,204,67,-0.4583333333333333],[113,204,68,-0.4583333333333333],[113,204,69,-0.4583333333333333],[113,204,70,-0.4583333333333333],[113,204,71,-0.4583333333333333],[113,204,72,-0.4583333333333333],[113,204,73,-0.4583333333333333],[113,204,74,-0.4583333333333333],[113,204,75,-0.4583333333333333],[113,204,76,-0.4583333333333333],[113,204,77,-0.4583333333333333],[113,204,78,-0.4583333333333333],[113,204,79,-0.4583333333333333],[113,205,64,-0.4583333333333333],[113,205,65,-0.4583333333333333],[113,205,66,-0.4583333333333333],[113,205,67,-0.4583333333333333],[113,205,68,-0.4583333333333333],[113,205,69,-0.4583333333333333],[113,205,70,-0.4583333333333333],[113,205,71,-0.4583333333333333],[113,205,72,-0.4583333333333333],[113,205,73,-0.4583333333333333],[113,205,74,-0.4583333333333333],[113,205,75,-0.4583333333333333],[113,205,76,-0.4583333333333333],[113,205,77,-0.4583333333333333],[113,205,78,-0.4583333333333333],[113,205,79,-0.4583333333333333],[113,206,64,-0.4583333333333333],[113,206,65,-0.4583333333333333],[113,206,66,-0.4583333333333333],[113,206,67,-0.4583333333333333],[113,206,68,-0.4583333333333333],[113,206,69,-0.4583333333333333],[113,206,70,-0.4583333333333333],[113,206,71,-0.4583333333333333],[113,206,72,-0.4583333333333333],[113,206,73,-0.4583333333333333],[113,206,74,-0.4583333333333333],[113,206,75,-0.4583333333333333],[113,206,76,-0.4583333333333333],[113,206,77,-0.4583333333333333],[113,206,78,-0.4583333333333333],[113,206,79,-0.4583333333333333],[113,207,64,-0.4583333333333333],[113,207,65,-0.4583333333333333],[113,207,66,-0.4583333333333333],[113,207,67,-0.4583333333333333],[113,207,68,-0.4583333333333333],[113,207,69,-0.4583333333333333],[113,207,70,-0.4583333333333333],[113,207,71,-0.4583333333333333],[113,207,72,-0.4583333333333333],[113,207,73,-0.4583333333333333],[113,207,74,-0.4583333333333333],[113,207,75,-0.4583333333333333],[113,207,76,-0.4583333333333333],[113,207,77,-0.4583333333333333],[113,207,78,-0.4583333333333333],[113,207,79,-0.4583333333333333],[113,208,64,-0.4583333333333333],[113,208,65,-0.4583333333333333],[113,208,66,-0.4583333333333333],[113,208,67,-0.4583333333333333],[113,208,68,-0.4583333333333333],[113,208,69,-0.4583333333333333],[113,208,70,-0.4583333333333333],[113,208,71,-0.4583333333333333],[113,208,72,-0.4583333333333333],[113,208,73,-0.4583333333333333],[113,208,74,-0.4583333333333333],[113,208,75,-0.4583333333333333],[113,208,76,-0.4583333333333333],[113,208,77,-0.4583333333333333],[113,208,78,-0.4583333333333333],[113,208,79,-0.4583333333333333],[113,209,64,-0.4583333333333333],[113,209,65,-0.4583333333333333],[113,209,66,-0.4583333333333333],[113,209,67,-0.4583333333333333],[113,209,68,-0.4583333333333333],[113,209,69,-0.4583333333333333],[113,209,70,-0.4583333333333333],[113,209,71,-0.4583333333333333],[113,209,72,-0.4583333333333333],[113,209,73,-0.4583333333333333],[113,209,74,-0.4583333333333333],[113,209,75,-0.4583333333333333],[113,209,76,-0.4583333333333333],[113,209,77,-0.4583333333333333],[113,209,78,-0.4583333333333333],[113,209,79,-0.4583333333333333],[113,210,64,-0.4583333333333333],[113,210,65,-0.4583333333333333],[113,210,66,-0.4583333333333333],[113,210,67,-0.4583333333333333],[113,210,68,-0.4583333333333333],[113,210,69,-0.4583333333333333],[113,210,70,-0.4583333333333333],[113,210,71,-0.4583333333333333],[113,210,72,-0.4583333333333333],[113,210,73,-0.4583333333333333],[113,210,74,-0.4583333333333333],[113,210,75,-0.4583333333333333],[113,210,76,-0.4583333333333333],[113,210,77,-0.4583333333333333],[113,210,78,-0.4583333333333333],[113,210,79,-0.4583333333333333],[113,211,64,-0.4583333333333333],[113,211,65,-0.4583333333333333],[113,211,66,-0.4583333333333333],[113,211,67,-0.4583333333333333],[113,211,68,-0.4583333333333333],[113,211,69,-0.4583333333333333],[113,211,70,-0.4583333333333333],[113,211,71,-0.4583333333333333],[113,211,72,-0.4583333333333333],[113,211,73,-0.4583333333333333],[113,211,74,-0.4583333333333333],[113,211,75,-0.4583333333333333],[113,211,76,-0.4583333333333333],[113,211,77,-0.4583333333333333],[113,211,78,-0.4583333333333333],[113,211,79,-0.4583333333333333],[113,212,64,-0.4583333333333333],[113,212,65,-0.4583333333333333],[113,212,66,-0.4583333333333333],[113,212,67,-0.4583333333333333],[113,212,68,-0.4583333333333333],[113,212,69,-0.4583333333333333],[113,212,70,-0.4583333333333333],[113,212,71,-0.4583333333333333],[113,212,72,-0.4583333333333333],[113,212,73,-0.4583333333333333],[113,212,74,-0.4583333333333333],[113,212,75,-0.4583333333333333],[113,212,76,-0.4583333333333333],[113,212,77,-0.4583333333333333],[113,212,78,-0.4583333333333333],[113,212,79,-0.4583333333333333],[113,213,64,-0.4583333333333333],[113,213,65,-0.4583333333333333],[113,213,66,-0.4583333333333333],[113,213,67,-0.4583333333333333],[113,213,68,-0.4583333333333333],[113,213,69,-0.4583333333333333],[113,213,70,-0.4583333333333333],[113,213,71,-0.4583333333333333],[113,213,72,-0.4583333333333333],[113,213,73,-0.4583333333333333],[113,213,74,-0.4583333333333333],[113,213,75,-0.4583333333333333],[113,213,76,-0.4583333333333333],[113,213,77,-0.4583333333333333],[113,213,78,-0.4583333333333333],[113,213,79,-0.4583333333333333],[113,214,64,-0.4583333333333333],[113,214,65,-0.4583333333333333],[113,214,66,-0.4583333333333333],[113,214,67,-0.4583333333333333],[113,214,68,-0.4583333333333333],[113,214,69,-0.4583333333333333],[113,214,70,-0.4583333333333333],[113,214,71,-0.4583333333333333],[113,214,72,-0.4583333333333333],[113,214,73,-0.4583333333333333],[113,214,74,-0.4583333333333333],[113,214,75,-0.4583333333333333],[113,214,76,-0.4583333333333333],[113,214,77,-0.4583333333333333],[113,214,78,-0.4583333333333333],[113,214,79,-0.4583333333333333],[113,215,64,-0.4583333333333333],[113,215,65,-0.4583333333333333],[113,215,66,-0.4583333333333333],[113,215,67,-0.4583333333333333],[113,215,68,-0.4583333333333333],[113,215,69,-0.4583333333333333],[113,215,70,-0.4583333333333333],[113,215,71,-0.4583333333333333],[113,215,72,-0.4583333333333333],[113,215,73,-0.4583333333333333],[113,215,74,-0.4583333333333333],[113,215,75,-0.4583333333333333],[113,215,76,-0.4583333333333333],[113,215,77,-0.4583333333333333],[113,215,78,-0.4583333333333333],[113,215,79,-0.4583333333333333],[113,216,64,-0.4583333333333333],[113,216,65,-0.4583333333333333],[113,216,66,-0.4583333333333333],[113,216,67,-0.4583333333333333],[113,216,68,-0.4583333333333333],[113,216,69,-0.4583333333333333],[113,216,70,-0.4583333333333333],[113,216,71,-0.4583333333333333],[113,216,72,-0.4583333333333333],[113,216,73,-0.4583333333333333],[113,216,74,-0.4583333333333333],[113,216,75,-0.4583333333333333],[113,216,76,-0.4583333333333333],[113,216,77,-0.4583333333333333],[113,216,78,-0.4583333333333333],[113,216,79,-0.4583333333333333],[113,217,64,-0.4583333333333333],[113,217,65,-0.4583333333333333],[113,217,66,-0.4583333333333333],[113,217,67,-0.4583333333333333],[113,217,68,-0.4583333333333333],[113,217,69,-0.4583333333333333],[113,217,70,-0.4583333333333333],[113,217,71,-0.4583333333333333],[113,217,72,-0.4583333333333333],[113,217,73,-0.4583333333333333],[113,217,74,-0.4583333333333333],[113,217,75,-0.4583333333333333],[113,217,76,-0.4583333333333333],[113,217,77,-0.4583333333333333],[113,217,78,-0.4583333333333333],[113,217,79,-0.4583333333333333],[113,218,64,-0.4583333333333333],[113,218,65,-0.4583333333333333],[113,218,66,-0.4583333333333333],[113,218,67,-0.4583333333333333],[113,218,68,-0.4583333333333333],[113,218,69,-0.4583333333333333],[113,218,70,-0.4583333333333333],[113,218,71,-0.4583333333333333],[113,218,72,-0.4583333333333333],[113,218,73,-0.4583333333333333],[113,218,74,-0.4583333333333333],[113,218,75,-0.4583333333333333],[113,218,76,-0.4583333333333333],[113,218,77,-0.4583333333333333],[113,218,78,-0.4583333333333333],[113,218,79,-0.4583333333333333],[113,219,64,-0.4583333333333333],[113,219,65,-0.4583333333333333],[113,219,66,-0.4583333333333333],[113,219,67,-0.4583333333333333],[113,219,68,-0.4583333333333333],[113,219,69,-0.4583333333333333],[113,219,70,-0.4583333333333333],[113,219,71,-0.4583333333333333],[113,219,72,-0.4583333333333333],[113,219,73,-0.4583333333333333],[113,219,74,-0.4583333333333333],[113,219,75,-0.4583333333333333],[113,219,76,-0.4583333333333333],[113,219,77,-0.4583333333333333],[113,219,78,-0.4583333333333333],[113,219,79,-0.4583333333333333],[113,220,64,-0.4583333333333333],[113,220,65,-0.4583333333333333],[113,220,66,-0.4583333333333333],[113,220,67,-0.4583333333333333],[113,220,68,-0.4583333333333333],[113,220,69,-0.4583333333333333],[113,220,70,-0.4583333333333333],[113,220,71,-0.4583333333333333],[113,220,72,-0.4583333333333333],[113,220,73,-0.4583333333333333],[113,220,74,-0.4583333333333333],[113,220,75,-0.4583333333333333],[113,220,76,-0.4583333333333333],[113,220,77,-0.4583333333333333],[113,220,78,-0.4583333333333333],[113,220,79,-0.4583333333333333],[113,221,64,-0.4583333333333333],[113,221,65,-0.4583333333333333],[113,221,66,-0.4583333333333333],[113,221,67,-0.4583333333333333],[113,221,68,-0.4583333333333333],[113,221,69,-0.4583333333333333],[113,221,70,-0.4583333333333333],[113,221,71,-0.4583333333333333],[113,221,72,-0.4583333333333333],[113,221,73,-0.4583333333333333],[113,221,74,-0.4583333333333333],[113,221,75,-0.4583333333333333],[113,221,76,-0.4583333333333333],[113,221,77,-0.4583333333333333],[113,221,78,-0.4583333333333333],[113,221,79,-0.4583333333333333],[113,222,64,-0.4583333333333333],[113,222,65,-0.4583333333333333],[113,222,66,-0.4583333333333333],[113,222,67,-0.4583333333333333],[113,222,68,-0.4583333333333333],[113,222,69,-0.4583333333333333],[113,222,70,-0.4583333333333333],[113,222,71,-0.4583333333333333],[113,222,72,-0.4583333333333333],[113,222,73,-0.4583333333333333],[113,222,74,-0.4583333333333333],[113,222,75,-0.4583333333333333],[113,222,76,-0.4583333333333333],[113,222,77,-0.4583333333333333],[113,222,78,-0.4583333333333333],[113,222,79,-0.4583333333333333],[113,223,64,-0.4583333333333333],[113,223,65,-0.4583333333333333],[113,223,66,-0.4583333333333333],[113,223,67,-0.4583333333333333],[113,223,68,-0.4583333333333333],[113,223,69,-0.4583333333333333],[113,223,70,-0.4583333333333333],[113,223,71,-0.4583333333333333],[113,223,72,-0.4583333333333333],[113,223,73,-0.4583333333333333],[113,223,74,-0.4583333333333333],[113,223,75,-0.4583333333333333],[113,223,76,-0.4583333333333333],[113,223,77,-0.4583333333333333],[113,223,78,-0.4583333333333333],[113,223,79,-0.4583333333333333],[113,224,64,-0.4583333333333333],[113,224,65,-0.4583333333333333],[113,224,66,-0.4583333333333333],[113,224,67,-0.4583333333333333],[113,224,68,-0.4583333333333333],[113,224,69,-0.4583333333333333],[113,224,70,-0.4583333333333333],[113,224,71,-0.4583333333333333],[113,224,72,-0.4583333333333333],[113,224,73,-0.4583333333333333],[113,224,74,-0.4583333333333333],[113,224,75,-0.4583333333333333],[113,224,76,-0.4583333333333333],[113,224,77,-0.4583333333333333],[113,224,78,-0.4583333333333333],[113,224,79,-0.4583333333333333],[113,225,64,-0.4583333333333333],[113,225,65,-0.4583333333333333],[113,225,66,-0.4583333333333333],[113,225,67,-0.4583333333333333],[113,225,68,-0.4583333333333333],[113,225,69,-0.4583333333333333],[113,225,70,-0.4583333333333333],[113,225,71,-0.4583333333333333],[113,225,72,-0.4583333333333333],[113,225,73,-0.4583333333333333],[113,225,74,-0.4583333333333333],[113,225,75,-0.4583333333333333],[113,225,76,-0.4583333333333333],[113,225,77,-0.4583333333333333],[113,225,78,-0.4583333333333333],[113,225,79,-0.4583333333333333],[113,226,64,-0.4583333333333333],[113,226,65,-0.4583333333333333],[113,226,66,-0.4583333333333333],[113,226,67,-0.4583333333333333],[113,226,68,-0.4583333333333333],[113,226,69,-0.4583333333333333],[113,226,70,-0.4583333333333333],[113,226,71,-0.4583333333333333],[113,226,72,-0.4583333333333333],[113,226,73,-0.4583333333333333],[113,226,74,-0.4583333333333333],[113,226,75,-0.4583333333333333],[113,226,76,-0.4583333333333333],[113,226,77,-0.4583333333333333],[113,226,78,-0.4583333333333333],[113,226,79,-0.4583333333333333],[113,227,64,-0.4583333333333333],[113,227,65,-0.4583333333333333],[113,227,66,-0.4583333333333333],[113,227,67,-0.4583333333333333],[113,227,68,-0.4583333333333333],[113,227,69,-0.4583333333333333],[113,227,70,-0.4583333333333333],[113,227,71,-0.4583333333333333],[113,227,72,-0.4583333333333333],[113,227,73,-0.4583333333333333],[113,227,74,-0.4583333333333333],[113,227,75,-0.4583333333333333],[113,227,76,-0.4583333333333333],[113,227,77,-0.4583333333333333],[113,227,78,-0.4583333333333333],[113,227,79,-0.4583333333333333],[113,228,64,-0.4583333333333333],[113,228,65,-0.4583333333333333],[113,228,66,-0.4583333333333333],[113,228,67,-0.4583333333333333],[113,228,68,-0.4583333333333333],[113,228,69,-0.4583333333333333],[113,228,70,-0.4583333333333333],[113,228,71,-0.4583333333333333],[113,228,72,-0.4583333333333333],[113,228,73,-0.4583333333333333],[113,228,74,-0.4583333333333333],[113,228,75,-0.4583333333333333],[113,228,76,-0.4583333333333333],[113,228,77,-0.4583333333333333],[113,228,78,-0.4583333333333333],[113,228,79,-0.4583333333333333],[113,229,64,-0.4583333333333333],[113,229,65,-0.4583333333333333],[113,229,66,-0.4583333333333333],[113,229,67,-0.4583333333333333],[113,229,68,-0.4583333333333333],[113,229,69,-0.4583333333333333],[113,229,70,-0.4583333333333333],[113,229,71,-0.4583333333333333],[113,229,72,-0.4583333333333333],[113,229,73,-0.4583333333333333],[113,229,74,-0.4583333333333333],[113,229,75,-0.4583333333333333],[113,229,76,-0.4583333333333333],[113,229,77,-0.4583333333333333],[113,229,78,-0.4583333333333333],[113,229,79,-0.4583333333333333],[113,230,64,-0.4583333333333333],[113,230,65,-0.4583333333333333],[113,230,66,-0.4583333333333333],[113,230,67,-0.4583333333333333],[113,230,68,-0.4583333333333333],[113,230,69,-0.4583333333333333],[113,230,70,-0.4583333333333333],[113,230,71,-0.4583333333333333],[113,230,72,-0.4583333333333333],[113,230,73,-0.4583333333333333],[113,230,74,-0.4583333333333333],[113,230,75,-0.4583333333333333],[113,230,76,-0.4583333333333333],[113,230,77,-0.4583333333333333],[113,230,78,-0.4583333333333333],[113,230,79,-0.4583333333333333],[113,231,64,-0.4583333333333333],[113,231,65,-0.4583333333333333],[113,231,66,-0.4583333333333333],[113,231,67,-0.4583333333333333],[113,231,68,-0.4583333333333333],[113,231,69,-0.4583333333333333],[113,231,70,-0.4583333333333333],[113,231,71,-0.4583333333333333],[113,231,72,-0.4583333333333333],[113,231,73,-0.4583333333333333],[113,231,74,-0.4583333333333333],[113,231,75,-0.4583333333333333],[113,231,76,-0.4583333333333333],[113,231,77,-0.4583333333333333],[113,231,78,-0.4583333333333333],[113,231,79,-0.4583333333333333],[113,232,64,-0.4583333333333333],[113,232,65,-0.4583333333333333],[113,232,66,-0.4583333333333333],[113,232,67,-0.4583333333333333],[113,232,68,-0.4583333333333333],[113,232,69,-0.4583333333333333],[113,232,70,-0.4583333333333333],[113,232,71,-0.4583333333333333],[113,232,72,-0.4583333333333333],[113,232,73,-0.4583333333333333],[113,232,74,-0.4583333333333333],[113,232,75,-0.4583333333333333],[113,232,76,-0.4583333333333333],[113,232,77,-0.4583333333333333],[113,232,78,-0.4583333333333333],[113,232,79,-0.4583333333333333],[113,233,64,-0.4583333333333333],[113,233,65,-0.4583333333333333],[113,233,66,-0.4583333333333333],[113,233,67,-0.4583333333333333],[113,233,68,-0.4583333333333333],[113,233,69,-0.4583333333333333],[113,233,70,-0.4583333333333333],[113,233,71,-0.4583333333333333],[113,233,72,-0.4583333333333333],[113,233,73,-0.4583333333333333],[113,233,74,-0.4583333333333333],[113,233,75,-0.4583333333333333],[113,233,76,-0.4583333333333333],[113,233,77,-0.4583333333333333],[113,233,78,-0.4583333333333333],[113,233,79,-0.4583333333333333],[113,234,64,-0.4583333333333333],[113,234,65,-0.4583333333333333],[113,234,66,-0.4583333333333333],[113,234,67,-0.4583333333333333],[113,234,68,-0.4583333333333333],[113,234,69,-0.4583333333333333],[113,234,70,-0.4583333333333333],[113,234,71,-0.4583333333333333],[113,234,72,-0.4583333333333333],[113,234,73,-0.4583333333333333],[113,234,74,-0.4583333333333333],[113,234,75,-0.4583333333333333],[113,234,76,-0.4583333333333333],[113,234,77,-0.4583333333333333],[113,234,78,-0.4583333333333333],[113,234,79,-0.4583333333333333],[113,235,64,-0.4583333333333333],[113,235,65,-0.4583333333333333],[113,235,66,-0.4583333333333333],[113,235,67,-0.4583333333333333],[113,235,68,-0.4583333333333333],[113,235,69,-0.4583333333333333],[113,235,70,-0.4583333333333333],[113,235,71,-0.4583333333333333],[113,235,72,-0.4583333333333333],[113,235,73,-0.4583333333333333],[113,235,74,-0.4583333333333333],[113,235,75,-0.4583333333333333],[113,235,76,-0.4583333333333333],[113,235,77,-0.4583333333333333],[113,235,78,-0.4583333333333333],[113,235,79,-0.4583333333333333],[113,236,64,-0.4583333333333333],[113,236,65,-0.4583333333333333],[113,236,66,-0.4583333333333333],[113,236,67,-0.4583333333333333],[113,236,68,-0.4583333333333333],[113,236,69,-0.4583333333333333],[113,236,70,-0.4583333333333333],[113,236,71,-0.4583333333333333],[113,236,72,-0.4583333333333333],[113,236,73,-0.4583333333333333],[113,236,74,-0.4583333333333333],[113,236,75,-0.4583333333333333],[113,236,76,-0.4583333333333333],[113,236,77,-0.4583333333333333],[113,236,78,-0.4583333333333333],[113,236,79,-0.4583333333333333],[113,237,64,-0.4583333333333333],[113,237,65,-0.4583333333333333],[113,237,66,-0.4583333333333333],[113,237,67,-0.4583333333333333],[113,237,68,-0.4583333333333333],[113,237,69,-0.4583333333333333],[113,237,70,-0.4583333333333333],[113,237,71,-0.4583333333333333],[113,237,72,-0.4583333333333333],[113,237,73,-0.4583333333333333],[113,237,74,-0.4583333333333333],[113,237,75,-0.4583333333333333],[113,237,76,-0.4583333333333333],[113,237,77,-0.4583333333333333],[113,237,78,-0.4583333333333333],[113,237,79,-0.4583333333333333],[113,238,64,-0.4583333333333333],[113,238,65,-0.4583333333333333],[113,238,66,-0.4583333333333333],[113,238,67,-0.4583333333333333],[113,238,68,-0.4583333333333333],[113,238,69,-0.4583333333333333],[113,238,70,-0.4583333333333333],[113,238,71,-0.4583333333333333],[113,238,72,-0.4583333333333333],[113,238,73,-0.4583333333333333],[113,238,74,-0.4583333333333333],[113,238,75,-0.4583333333333333],[113,238,76,-0.4583333333333333],[113,238,77,-0.4583333333333333],[113,238,78,-0.4583333333333333],[113,238,79,-0.4583333333333333],[113,239,64,-0.4583333333333333],[113,239,65,-0.4583333333333333],[113,239,66,-0.4583333333333333],[113,239,67,-0.4583333333333333],[113,239,68,-0.4583333333333333],[113,239,69,-0.4583333333333333],[113,239,70,-0.4583333333333333],[113,239,71,-0.4583333333333333],[113,239,72,-0.4583333333333333],[113,239,73,-0.4583333333333333],[113,239,74,-0.4583333333333333],[113,239,75,-0.4583333333333333],[113,239,76,-0.4583333333333333],[113,239,77,-0.4583333333333333],[113,239,78,-0.4583333333333333],[113,239,79,-0.4583333333333333],[113,240,64,-0.4583333333333333],[113,240,65,-0.4583333333333333],[113,240,66,-0.4583333333333333],[113,240,67,-0.4583333333333333],[113,240,68,-0.4583333333333333],[113,240,69,-0.4583333333333333],[113,240,70,-0.4583333333333333],[113,240,71,-0.4583333333333333],[113,240,72,-0.4583333333333333],[113,240,73,-0.4583333333333333],[113,240,74,-0.4583333333333333],[113,240,75,-0.4583333333333333],[113,240,76,-0.4583333333333333],[113,240,77,-0.4583333333333333],[113,240,78,-0.4583333333333333],[113,240,79,-0.4583333333333333],[113,241,64,-0.4583333333333333],[113,241,65,-0.4583333333333333],[113,241,66,-0.4583333333333333],[113,241,67,-0.4583333333333333],[113,241,68,-0.4583333333333333],[113,241,69,-0.4583333333333333],[113,241,70,-0.4583333333333333],[113,241,71,-0.4583333333333333],[113,241,72,-0.4583333333333333],[113,241,73,-0.4583333333333333],[113,241,74,-0.4583333333333333],[113,241,75,-0.4583333333333333],[113,241,76,-0.4583333333333333],[113,241,77,-0.4583333333333333],[113,241,78,-0.4583333333333333],[113,241,79,-0.4583333333333333],[113,242,64,-0.4583333333333333],[113,242,65,-0.4583333333333333],[113,242,66,-0.4583333333333333],[113,242,67,-0.4583333333333333],[113,242,68,-0.4583333333333333],[113,242,69,-0.4583333333333333],[113,242,70,-0.4583333333333333],[113,242,71,-0.4583333333333333],[113,242,72,-0.4583333333333333],[113,242,73,-0.4583333333333333],[113,242,74,-0.4583333333333333],[113,242,75,-0.4583333333333333],[113,242,76,-0.4583333333333333],[113,242,77,-0.4583333333333333],[113,242,78,-0.4583333333333333],[113,242,79,-0.4583333333333333],[113,243,64,-0.4583333333333333],[113,243,65,-0.4583333333333333],[113,243,66,-0.4583333333333333],[113,243,67,-0.4583333333333333],[113,243,68,-0.4583333333333333],[113,243,69,-0.4583333333333333],[113,243,70,-0.4583333333333333],[113,243,71,-0.4583333333333333],[113,243,72,-0.4583333333333333],[113,243,73,-0.4583333333333333],[113,243,74,-0.4583333333333333],[113,243,75,-0.4583333333333333],[113,243,76,-0.4583333333333333],[113,243,77,-0.4583333333333333],[113,243,78,-0.4583333333333333],[113,243,79,-0.4583333333333333],[113,244,64,-0.4583333333333333],[113,244,65,-0.4583333333333333],[113,244,66,-0.4583333333333333],[113,244,67,-0.4583333333333333],[113,244,68,-0.4583333333333333],[113,244,69,-0.4583333333333333],[113,244,70,-0.4583333333333333],[113,244,71,-0.4583333333333333],[113,244,72,-0.4583333333333333],[113,244,73,-0.4583333333333333],[113,244,74,-0.4583333333333333],[113,244,75,-0.4583333333333333],[113,244,76,-0.4583333333333333],[113,244,77,-0.4583333333333333],[113,244,78,-0.4583333333333333],[113,244,79,-0.4583333333333333],[113,245,64,-0.4583333333333333],[113,245,65,-0.4583333333333333],[113,245,66,-0.4583333333333333],[113,245,67,-0.4583333333333333],[113,245,68,-0.4583333333333333],[113,245,69,-0.4583333333333333],[113,245,70,-0.4583333333333333],[113,245,71,-0.4583333333333333],[113,245,72,-0.4583333333333333],[113,245,73,-0.4583333333333333],[113,245,74,-0.4583333333333333],[113,245,75,-0.4583333333333333],[113,245,76,-0.4583333333333333],[113,245,77,-0.4583333333333333],[113,245,78,-0.4583333333333333],[113,245,79,-0.4583333333333333],[113,246,64,-0.4583333333333333],[113,246,65,-0.4583333333333333],[113,246,66,-0.4583333333333333],[113,246,67,-0.4583333333333333],[113,246,68,-0.4583333333333333],[113,246,69,-0.4583333333333333],[113,246,70,-0.4583333333333333],[113,246,71,-0.4583333333333333],[113,246,72,-0.4583333333333333],[113,246,73,-0.4583333333333333],[113,246,74,-0.4583333333333333],[113,246,75,-0.4583333333333333],[113,246,76,-0.4583333333333333],[113,246,77,-0.4583333333333333],[113,246,78,-0.4583333333333333],[113,246,79,-0.4583333333333333],[113,247,64,-0.4583333333333333],[113,247,65,-0.4583333333333333],[113,247,66,-0.4583333333333333],[113,247,67,-0.4583333333333333],[113,247,68,-0.4583333333333333],[113,247,69,-0.4583333333333333],[113,247,70,-0.4583333333333333],[113,247,71,-0.4583333333333333],[113,247,72,-0.4583333333333333],[113,247,73,-0.4583333333333333],[113,247,74,-0.4583333333333333],[113,247,75,-0.4583333333333333],[113,247,76,-0.4583333333333333],[113,247,77,-0.4583333333333333],[113,247,78,-0.4583333333333333],[113,247,79,-0.4583333333333333],[113,248,64,-0.4583333333333333],[113,248,65,-0.4583333333333333],[113,248,66,-0.4583333333333333],[113,248,67,-0.4583333333333333],[113,248,68,-0.4583333333333333],[113,248,69,-0.4583333333333333],[113,248,70,-0.4583333333333333],[113,248,71,-0.4583333333333333],[113,248,72,-0.4583333333333333],[113,248,73,-0.4583333333333333],[113,248,74,-0.4583333333333333],[113,248,75,-0.4583333333333333],[113,248,76,-0.4583333333333333],[113,248,77,-0.4583333333333333],[113,248,78,-0.4583333333333333],[113,248,79,-0.4583333333333333],[113,249,64,-0.4583333333333333],[113,249,65,-0.4583333333333333],[113,249,66,-0.4583333333333333],[113,249,67,-0.4583333333333333],[113,249,68,-0.4583333333333333],[113,249,69,-0.4583333333333333],[113,249,70,-0.4583333333333333],[113,249,71,-0.4583333333333333],[113,249,72,-0.4583333333333333],[113,249,73,-0.4583333333333333],[113,249,74,-0.4583333333333333],[113,249,75,-0.4583333333333333],[113,249,76,-0.4583333333333333],[113,249,77,-0.4583333333333333],[113,249,78,-0.4583333333333333],[113,249,79,-0.4583333333333333],[113,250,64,-0.4583333333333333],[113,250,65,-0.4583333333333333],[113,250,66,-0.4583333333333333],[113,250,67,-0.4583333333333333],[113,250,68,-0.4583333333333333],[113,250,69,-0.4583333333333333],[113,250,70,-0.4583333333333333],[113,250,71,-0.4583333333333333],[113,250,72,-0.4583333333333333],[113,250,73,-0.4583333333333333],[113,250,74,-0.4583333333333333],[113,250,75,-0.4583333333333333],[113,250,76,-0.4583333333333333],[113,250,77,-0.4583333333333333],[113,250,78,-0.4583333333333333],[113,250,79,-0.4583333333333333],[113,251,64,-0.4583333333333333],[113,251,65,-0.4583333333333333],[113,251,66,-0.4583333333333333],[113,251,67,-0.4583333333333333],[113,251,68,-0.4583333333333333],[113,251,69,-0.4583333333333333],[113,251,70,-0.4583333333333333],[113,251,71,-0.4583333333333333],[113,251,72,-0.4583333333333333],[113,251,73,-0.4583333333333333],[113,251,74,-0.4583333333333333],[113,251,75,-0.4583333333333333],[113,251,76,-0.4583333333333333],[113,251,77,-0.4583333333333333],[113,251,78,-0.4583333333333333],[113,251,79,-0.4583333333333333],[113,252,64,-0.4583333333333333],[113,252,65,-0.4583333333333333],[113,252,66,-0.4583333333333333],[113,252,67,-0.4583333333333333],[113,252,68,-0.4583333333333333],[113,252,69,-0.4583333333333333],[113,252,70,-0.4583333333333333],[113,252,71,-0.4583333333333333],[113,252,72,-0.4583333333333333],[113,252,73,-0.4583333333333333],[113,252,74,-0.4583333333333333],[113,252,75,-0.4583333333333333],[113,252,76,-0.4583333333333333],[113,252,77,-0.4583333333333333],[113,252,78,-0.4583333333333333],[113,252,79,-0.4583333333333333],[113,253,64,-0.4583333333333333],[113,253,65,-0.4583333333333333],[113,253,66,-0.4583333333333333],[113,253,67,-0.4583333333333333],[113,253,68,-0.4583333333333333],[113,253,69,-0.4583333333333333],[113,253,70,-0.4583333333333333],[113,253,71,-0.4583333333333333],[113,253,72,-0.4583333333333333],[113,253,73,-0.4583333333333333],[113,253,74,-0.4583333333333333],[113,253,75,-0.4583333333333333],[113,253,76,-0.4583333333333333],[113,253,77,-0.4583333333333333],[113,253,78,-0.4583333333333333],[113,253,79,-0.4583333333333333],[113,254,64,-0.36622151305832645],[113,254,65,-0.36528361779638824],[113,254,66,-0.3642948492715865],[113,254,67,-0.3637031683913279],[113,254,68,-0.3634039097610392],[113,254,69,-0.3631686908299782],[113,254,70,-0.3629642650303733],[113,254,71,-0.3628973305421445],[113,254,72,-0.36270442473512976],[113,254,73,-0.3622225359749671],[113,254,74,-0.36195256690404176],[113,254,75,-0.3623665632070797],[113,254,76,-0.3627235402988435],[113,254,77,-0.36269301011879107],[113,254,78,-0.36232257148903807],[113,254,79,-0.3619198640867879],[113,255,64,-0.2031198614834754],[113,255,65,-0.20259940575886215],[113,255,66,-0.20201862250386513],[113,255,67,-0.20168566533551152],[113,255,68,-0.2015598458504251],[113,255,69,-0.2014220990668334],[113,255,70,-0.2013196208897885],[113,255,71,-0.2013021454616908],[113,255,72,-0.20121109978680757],[113,255,73,-0.20088854615211618],[113,255,74,-0.20074418990645668],[113,255,75,-0.20098288629692512],[113,255,76,-0.20119525426028276],[113,255,77,-0.2011409035202606],[113,255,78,-0.20085374997551433],[113,255,79,-0.2007494610477413],[113,256,64,-0.02499479166666667],[113,256,65,-0.02499479166666667],[113,256,66,-0.02499479166666667],[113,256,67,-0.02499479166666667],[113,256,68,-0.02499479166666667],[113,256,69,-0.02499479166666667],[113,256,70,-0.02499479166666667],[113,256,71,-0.02499479166666667],[113,256,72,-0.02499479166666667],[113,256,73,-0.02499479166666667],[113,256,74,-0.02499479166666667],[113,256,75,-0.02499479166666667],[113,256,76,-0.02499479166666667],[113,256,77,-0.02499479166666667],[113,256,78,-0.02499479166666667],[113,256,79,-0.02499479166666667],[113,257,64,-0.02499479166666667],[113,257,65,-0.02499479166666667],[113,257,66,-0.02499479166666667],[113,257,67,-0.02499479166666667],[113,257,68,-0.02499479166666667],[113,257,69,-0.02499479166666667],[113,257,70,-0.02499479166666667],[113,257,71,-0.02499479166666667],[113,257,72,-0.02499479166666667],[113,257,73,-0.02499479166666667],[113,257,74,-0.02499479166666667],[113,257,75,-0.02499479166666667],[113,257,76,-0.02499479166666667],[113,257,77,-0.02499479166666667],[113,257,78,-0.02499479166666667],[113,257,79,-0.02499479166666667],[113,258,64,-0.02499479166666667],[113,258,65,-0.02499479166666667],[113,258,66,-0.02499479166666667],[113,258,67,-0.02499479166666667],[113,258,68,-0.02499479166666667],[113,258,69,-0.02499479166666667],[113,258,70,-0.02499479166666667],[113,258,71,-0.02499479166666667],[113,258,72,-0.02499479166666667],[113,258,73,-0.02499479166666667],[113,258,74,-0.02499479166666667],[113,258,75,-0.02499479166666667],[113,258,76,-0.02499479166666667],[113,258,77,-0.02499479166666667],[113,258,78,-0.02499479166666667],[113,258,79,-0.02499479166666667],[113,259,64,-0.02499479166666667],[113,259,65,-0.02499479166666667],[113,259,66,-0.02499479166666667],[113,259,67,-0.02499479166666667],[113,259,68,-0.02499479166666667],[113,259,69,-0.02499479166666667],[113,259,70,-0.02499479166666667],[113,259,71,-0.02499479166666667],[113,259,72,-0.02499479166666667],[113,259,73,-0.02499479166666667],[113,259,74,-0.02499479166666667],[113,259,75,-0.02499479166666667],[113,259,76,-0.02499479166666667],[113,259,77,-0.02499479166666667],[113,259,78,-0.02499479166666667],[113,259,79,-0.02499479166666667],[113,260,64,-0.02499479166666667],[113,260,65,-0.02499479166666667],[113,260,66,-0.02499479166666667],[113,260,67,-0.02499479166666667],[113,260,68,-0.02499479166666667],[113,260,69,-0.02499479166666667],[113,260,70,-0.02499479166666667],[113,260,71,-0.02499479166666667],[113,260,72,-0.02499479166666667],[113,260,73,-0.02499479166666667],[113,260,74,-0.02499479166666667],[113,260,75,-0.02499479166666667],[113,260,76,-0.02499479166666667],[113,260,77,-0.02499479166666667],[113,260,78,-0.02499479166666667],[113,260,79,-0.02499479166666667],[113,261,64,-0.02499479166666667],[113,261,65,-0.02499479166666667],[113,261,66,-0.02499479166666667],[113,261,67,-0.02499479166666667],[113,261,68,-0.02499479166666667],[113,261,69,-0.02499479166666667],[113,261,70,-0.02499479166666667],[113,261,71,-0.02499479166666667],[113,261,72,-0.02499479166666667],[113,261,73,-0.02499479166666667],[113,261,74,-0.02499479166666667],[113,261,75,-0.02499479166666667],[113,261,76,-0.02499479166666667],[113,261,77,-0.02499479166666667],[113,261,78,-0.02499479166666667],[113,261,79,-0.02499479166666667],[113,262,64,-0.02499479166666667],[113,262,65,-0.02499479166666667],[113,262,66,-0.02499479166666667],[113,262,67,-0.02499479166666667],[113,262,68,-0.02499479166666667],[113,262,69,-0.02499479166666667],[113,262,70,-0.02499479166666667],[113,262,71,-0.02499479166666667],[113,262,72,-0.02499479166666667],[113,262,73,-0.02499479166666667],[113,262,74,-0.02499479166666667],[113,262,75,-0.02499479166666667],[113,262,76,-0.02499479166666667],[113,262,77,-0.02499479166666667],[113,262,78,-0.02499479166666667],[113,262,79,-0.02499479166666667],[113,263,64,-0.02499479166666667],[113,263,65,-0.02499479166666667],[113,263,66,-0.02499479166666667],[113,263,67,-0.02499479166666667],[113,263,68,-0.02499479166666667],[113,263,69,-0.02499479166666667],[113,263,70,-0.02499479166666667],[113,263,71,-0.02499479166666667],[113,263,72,-0.02499479166666667],[113,263,73,-0.02499479166666667],[113,263,74,-0.02499479166666667],[113,263,75,-0.02499479166666667],[113,263,76,-0.02499479166666667],[113,263,77,-0.02499479166666667],[113,263,78,-0.02499479166666667],[113,263,79,-0.02499479166666667],[113,264,64,-0.02499479166666667],[113,264,65,-0.02499479166666667],[113,264,66,-0.02499479166666667],[113,264,67,-0.02499479166666667],[113,264,68,-0.02499479166666667],[113,264,69,-0.02499479166666667],[113,264,70,-0.02499479166666667],[113,264,71,-0.02499479166666667],[113,264,72,-0.02499479166666667],[113,264,73,-0.02499479166666667],[113,264,74,-0.02499479166666667],[113,264,75,-0.02499479166666667],[113,264,76,-0.02499479166666667],[113,264,77,-0.02499479166666667],[113,264,78,-0.02499479166666667],[113,264,79,-0.02499479166666667],[113,265,64,-0.02499479166666667],[113,265,65,-0.02499479166666667],[113,265,66,-0.02499479166666667],[113,265,67,-0.02499479166666667],[113,265,68,-0.02499479166666667],[113,265,69,-0.02499479166666667],[113,265,70,-0.02499479166666667],[113,265,71,-0.02499479166666667],[113,265,72,-0.02499479166666667],[113,265,73,-0.02499479166666667],[113,265,74,-0.02499479166666667],[113,265,75,-0.02499479166666667],[113,265,76,-0.02499479166666667],[113,265,77,-0.02499479166666667],[113,265,78,-0.02499479166666667],[113,265,79,-0.02499479166666667],[113,266,64,-0.02499479166666667],[113,266,65,-0.02499479166666667],[113,266,66,-0.02499479166666667],[113,266,67,-0.02499479166666667],[113,266,68,-0.02499479166666667],[113,266,69,-0.02499479166666667],[113,266,70,-0.02499479166666667],[113,266,71,-0.02499479166666667],[113,266,72,-0.02499479166666667],[113,266,73,-0.02499479166666667],[113,266,74,-0.02499479166666667],[113,266,75,-0.02499479166666667],[113,266,76,-0.02499479166666667],[113,266,77,-0.02499479166666667],[113,266,78,-0.02499479166666667],[113,266,79,-0.02499479166666667],[113,267,64,-0.02499479166666667],[113,267,65,-0.02499479166666667],[113,267,66,-0.02499479166666667],[113,267,67,-0.02499479166666667],[113,267,68,-0.02499479166666667],[113,267,69,-0.02499479166666667],[113,267,70,-0.02499479166666667],[113,267,71,-0.02499479166666667],[113,267,72,-0.02499479166666667],[113,267,73,-0.02499479166666667],[113,267,74,-0.02499479166666667],[113,267,75,-0.02499479166666667],[113,267,76,-0.02499479166666667],[113,267,77,-0.02499479166666667],[113,267,78,-0.02499479166666667],[113,267,79,-0.02499479166666667],[113,268,64,-0.02499479166666667],[113,268,65,-0.02499479166666667],[113,268,66,-0.02499479166666667],[113,268,67,-0.02499479166666667],[113,268,68,-0.02499479166666667],[113,268,69,-0.02499479166666667],[113,268,70,-0.02499479166666667],[113,268,71,-0.02499479166666667],[113,268,72,-0.02499479166666667],[113,268,73,-0.02499479166666667],[113,268,74,-0.02499479166666667],[113,268,75,-0.02499479166666667],[113,268,76,-0.02499479166666667],[113,268,77,-0.02499479166666667],[113,268,78,-0.02499479166666667],[113,268,79,-0.02499479166666667],[113,269,64,-0.02499479166666667],[113,269,65,-0.02499479166666667],[113,269,66,-0.02499479166666667],[113,269,67,-0.02499479166666667],[113,269,68,-0.02499479166666667],[113,269,69,-0.02499479166666667],[113,269,70,-0.02499479166666667],[113,269,71,-0.02499479166666667],[113,269,72,-0.02499479166666667],[113,269,73,-0.02499479166666667],[113,269,74,-0.02499479166666667],[113,269,75,-0.02499479166666667],[113,269,76,-0.02499479166666667],[113,269,77,-0.02499479166666667],[113,269,78,-0.02499479166666667],[113,269,79,-0.02499479166666667],[113,270,64,-0.02499479166666667],[113,270,65,-0.02499479166666667],[113,270,66,-0.02499479166666667],[113,270,67,-0.02499479166666667],[113,270,68,-0.02499479166666667],[113,270,69,-0.02499479166666667],[113,270,70,-0.02499479166666667],[113,270,71,-0.02499479166666667],[113,270,72,-0.02499479166666667],[113,270,73,-0.02499479166666667],[113,270,74,-0.02499479166666667],[113,270,75,-0.02499479166666667],[113,270,76,-0.02499479166666667],[113,270,77,-0.02499479166666667],[113,270,78,-0.02499479166666667],[113,270,79,-0.02499479166666667],[113,271,64,-0.02499479166666667],[113,271,65,-0.02499479166666667],[113,271,66,-0.02499479166666667],[113,271,67,-0.02499479166666667],[113,271,68,-0.02499479166666667],[113,271,69,-0.02499479166666667],[113,271,70,-0.02499479166666667],[113,271,71,-0.02499479166666667],[113,271,72,-0.02499479166666667],[113,271,73,-0.02499479166666667],[113,271,74,-0.02499479166666667],[113,271,75,-0.02499479166666667],[113,271,76,-0.02499479166666667],[113,271,77,-0.02499479166666667],[113,271,78,-0.02499479166666667],[113,271,79,-0.02499479166666667],[113,272,64,-0.02499479166666667],[113,272,65,-0.02499479166666667],[113,272,66,-0.02499479166666667],[113,272,67,-0.02499479166666667],[113,272,68,-0.02499479166666667],[113,272,69,-0.02499479166666667],[113,272,70,-0.02499479166666667],[113,272,71,-0.02499479166666667],[113,272,72,-0.02499479166666667],[113,272,73,-0.02499479166666667],[113,272,74,-0.02499479166666667],[113,272,75,-0.02499479166666667],[113,272,76,-0.02499479166666667],[113,272,77,-0.02499479166666667],[113,272,78,-0.02499479166666667],[113,272,79,-0.02499479166666667],[113,273,64,-0.02499479166666667],[113,273,65,-0.02499479166666667],[113,273,66,-0.02499479166666667],[113,273,67,-0.02499479166666667],[113,273,68,-0.02499479166666667],[113,273,69,-0.02499479166666667],[113,273,70,-0.02499479166666667],[113,273,71,-0.02499479166666667],[113,273,72,-0.02499479166666667],[113,273,73,-0.02499479166666667],[113,273,74,-0.02499479166666667],[113,273,75,-0.02499479166666667],[113,273,76,-0.02499479166666667],[113,273,77,-0.02499479166666667],[113,273,78,-0.02499479166666667],[113,273,79,-0.02499479166666667],[113,274,64,-0.02499479166666667],[113,274,65,-0.02499479166666667],[113,274,66,-0.02499479166666667],[113,274,67,-0.02499479166666667],[113,274,68,-0.02499479166666667],[113,274,69,-0.02499479166666667],[113,274,70,-0.02499479166666667],[113,274,71,-0.02499479166666667],[113,274,72,-0.02499479166666667],[113,274,73,-0.02499479166666667],[113,274,74,-0.02499479166666667],[113,274,75,-0.02499479166666667],[113,274,76,-0.02499479166666667],[113,274,77,-0.02499479166666667],[113,274,78,-0.02499479166666667],[113,274,79,-0.02499479166666667],[113,275,64,-0.02499479166666667],[113,275,65,-0.02499479166666667],[113,275,66,-0.02499479166666667],[113,275,67,-0.02499479166666667],[113,275,68,-0.02499479166666667],[113,275,69,-0.02499479166666667],[113,275,70,-0.02499479166666667],[113,275,71,-0.02499479166666667],[113,275,72,-0.02499479166666667],[113,275,73,-0.02499479166666667],[113,275,74,-0.02499479166666667],[113,275,75,-0.02499479166666667],[113,275,76,-0.02499479166666667],[113,275,77,-0.02499479166666667],[113,275,78,-0.02499479166666667],[113,275,79,-0.02499479166666667],[113,276,64,-0.02499479166666667],[113,276,65,-0.02499479166666667],[113,276,66,-0.02499479166666667],[113,276,67,-0.02499479166666667],[113,276,68,-0.02499479166666667],[113,276,69,-0.02499479166666667],[113,276,70,-0.02499479166666667],[113,276,71,-0.02499479166666667],[113,276,72,-0.02499479166666667],[113,276,73,-0.02499479166666667],[113,276,74,-0.02499479166666667],[113,276,75,-0.02499479166666667],[113,276,76,-0.02499479166666667],[113,276,77,-0.02499479166666667],[113,276,78,-0.02499479166666667],[113,276,79,-0.02499479166666667],[113,277,64,-0.02499479166666667],[113,277,65,-0.02499479166666667],[113,277,66,-0.02499479166666667],[113,277,67,-0.02499479166666667],[113,277,68,-0.02499479166666667],[113,277,69,-0.02499479166666667],[113,277,70,-0.02499479166666667],[113,277,71,-0.02499479166666667],[113,277,72,-0.02499479166666667],[113,277,73,-0.02499479166666667],[113,277,74,-0.02499479166666667],[113,277,75,-0.02499479166666667],[113,277,76,-0.02499479166666667],[113,277,77,-0.02499479166666667],[113,277,78,-0.02499479166666667],[113,277,79,-0.02499479166666667],[113,278,64,-0.02499479166666667],[113,278,65,-0.02499479166666667],[113,278,66,-0.02499479166666667],[113,278,67,-0.02499479166666667],[113,278,68,-0.02499479166666667],[113,278,69,-0.02499479166666667],[113,278,70,-0.02499479166666667],[113,278,71,-0.02499479166666667],[113,278,72,-0.02499479166666667],[113,278,73,-0.02499479166666667],[113,278,74,-0.02499479166666667],[113,278,75,-0.02499479166666667],[113,278,76,-0.02499479166666667],[113,278,77,-0.02499479166666667],[113,278,78,-0.02499479166666667],[113,278,79,-0.02499479166666667],[113,279,64,-0.02499479166666667],[113,279,65,-0.02499479166666667],[113,279,66,-0.02499479166666667],[113,279,67,-0.02499479166666667],[113,279,68,-0.02499479166666667],[113,279,69,-0.02499479166666667],[113,279,70,-0.02499479166666667],[113,279,71,-0.02499479166666667],[113,279,72,-0.02499479166666667],[113,279,73,-0.02499479166666667],[113,279,74,-0.02499479166666667],[113,279,75,-0.02499479166666667],[113,279,76,-0.02499479166666667],[113,279,77,-0.02499479166666667],[113,279,78,-0.02499479166666667],[113,279,79,-0.02499479166666667],[113,280,64,-0.02499479166666667],[113,280,65,-0.02499479166666667],[113,280,66,-0.02499479166666667],[113,280,67,-0.02499479166666667],[113,280,68,-0.02499479166666667],[113,280,69,-0.02499479166666667],[113,280,70,-0.02499479166666667],[113,280,71,-0.02499479166666667],[113,280,72,-0.02499479166666667],[113,280,73,-0.02499479166666667],[113,280,74,-0.02499479166666667],[113,280,75,-0.02499479166666667],[113,280,76,-0.02499479166666667],[113,280,77,-0.02499479166666667],[113,280,78,-0.02499479166666667],[113,280,79,-0.02499479166666667],[113,281,64,-0.02499479166666667],[113,281,65,-0.02499479166666667],[113,281,66,-0.02499479166666667],[113,281,67,-0.02499479166666667],[113,281,68,-0.02499479166666667],[113,281,69,-0.02499479166666667],[113,281,70,-0.02499479166666667],[113,281,71,-0.02499479166666667],[113,281,72,-0.02499479166666667],[113,281,73,-0.02499479166666667],[113,281,74,-0.02499479166666667],[113,281,75,-0.02499479166666667],[113,281,76,-0.02499479166666667],[113,281,77,-0.02499479166666667],[113,281,78,-0.02499479166666667],[113,281,79,-0.02499479166666667],[113,282,64,-0.02499479166666667],[113,282,65,-0.02499479166666667],[113,282,66,-0.02499479166666667],[113,282,67,-0.02499479166666667],[113,282,68,-0.02499479166666667],[113,282,69,-0.02499479166666667],[113,282,70,-0.02499479166666667],[113,282,71,-0.02499479166666667],[113,282,72,-0.02499479166666667],[113,282,73,-0.02499479166666667],[113,282,74,-0.02499479166666667],[113,282,75,-0.02499479166666667],[113,282,76,-0.02499479166666667],[113,282,77,-0.02499479166666667],[113,282,78,-0.02499479166666667],[113,282,79,-0.02499479166666667],[113,283,64,-0.02499479166666667],[113,283,65,-0.02499479166666667],[113,283,66,-0.02499479166666667],[113,283,67,-0.02499479166666667],[113,283,68,-0.02499479166666667],[113,283,69,-0.02499479166666667],[113,283,70,-0.02499479166666667],[113,283,71,-0.02499479166666667],[113,283,72,-0.02499479166666667],[113,283,73,-0.02499479166666667],[113,283,74,-0.02499479166666667],[113,283,75,-0.02499479166666667],[113,283,76,-0.02499479166666667],[113,283,77,-0.02499479166666667],[113,283,78,-0.02499479166666667],[113,283,79,-0.02499479166666667],[113,284,64,-0.02499479166666667],[113,284,65,-0.02499479166666667],[113,284,66,-0.02499479166666667],[113,284,67,-0.02499479166666667],[113,284,68,-0.02499479166666667],[113,284,69,-0.02499479166666667],[113,284,70,-0.02499479166666667],[113,284,71,-0.02499479166666667],[113,284,72,-0.02499479166666667],[113,284,73,-0.02499479166666667],[113,284,74,-0.02499479166666667],[113,284,75,-0.02499479166666667],[113,284,76,-0.02499479166666667],[113,284,77,-0.02499479166666667],[113,284,78,-0.02499479166666667],[113,284,79,-0.02499479166666667],[113,285,64,-0.02499479166666667],[113,285,65,-0.02499479166666667],[113,285,66,-0.02499479166666667],[113,285,67,-0.02499479166666667],[113,285,68,-0.02499479166666667],[113,285,69,-0.02499479166666667],[113,285,70,-0.02499479166666667],[113,285,71,-0.02499479166666667],[113,285,72,-0.02499479166666667],[113,285,73,-0.02499479166666667],[113,285,74,-0.02499479166666667],[113,285,75,-0.02499479166666667],[113,285,76,-0.02499479166666667],[113,285,77,-0.02499479166666667],[113,285,78,-0.02499479166666667],[113,285,79,-0.02499479166666667],[113,286,64,-0.02499479166666667],[113,286,65,-0.02499479166666667],[113,286,66,-0.02499479166666667],[113,286,67,-0.02499479166666667],[113,286,68,-0.02499479166666667],[113,286,69,-0.02499479166666667],[113,286,70,-0.02499479166666667],[113,286,71,-0.02499479166666667],[113,286,72,-0.02499479166666667],[113,286,73,-0.02499479166666667],[113,286,74,-0.02499479166666667],[113,286,75,-0.02499479166666667],[113,286,76,-0.02499479166666667],[113,286,77,-0.02499479166666667],[113,286,78,-0.02499479166666667],[113,286,79,-0.02499479166666667],[113,287,64,-0.02499479166666667],[113,287,65,-0.02499479166666667],[113,287,66,-0.02499479166666667],[113,287,67,-0.02499479166666667],[113,287,68,-0.02499479166666667],[113,287,69,-0.02499479166666667],[113,287,70,-0.02499479166666667],[113,287,71,-0.02499479166666667],[113,287,72,-0.02499479166666667],[113,287,73,-0.02499479166666667],[113,287,74,-0.02499479166666667],[113,287,75,-0.02499479166666667],[113,287,76,-0.02499479166666667],[113,287,77,-0.02499479166666667],[113,287,78,-0.02499479166666667],[113,287,79,-0.02499479166666667],[113,288,64,-0.02499479166666667],[113,288,65,-0.02499479166666667],[113,288,66,-0.02499479166666667],[113,288,67,-0.02499479166666667],[113,288,68,-0.02499479166666667],[113,288,69,-0.02499479166666667],[113,288,70,-0.02499479166666667],[113,288,71,-0.02499479166666667],[113,288,72,-0.02499479166666667],[113,288,73,-0.02499479166666667],[113,288,74,-0.02499479166666667],[113,288,75,-0.02499479166666667],[113,288,76,-0.02499479166666667],[113,288,77,-0.02499479166666667],[113,288,78,-0.02499479166666667],[113,288,79,-0.02499479166666667],[113,289,64,-0.02499479166666667],[113,289,65,-0.02499479166666667],[113,289,66,-0.02499479166666667],[113,289,67,-0.02499479166666667],[113,289,68,-0.02499479166666667],[113,289,69,-0.02499479166666667],[113,289,70,-0.02499479166666667],[113,289,71,-0.02499479166666667],[113,289,72,-0.02499479166666667],[113,289,73,-0.02499479166666667],[113,289,74,-0.02499479166666667],[113,289,75,-0.02499479166666667],[113,289,76,-0.02499479166666667],[113,289,77,-0.02499479166666667],[113,289,78,-0.02499479166666667],[113,289,79,-0.02499479166666667],[113,290,64,-0.02499479166666667],[113,290,65,-0.02499479166666667],[113,290,66,-0.02499479166666667],[113,290,67,-0.02499479166666667],[113,290,68,-0.02499479166666667],[113,290,69,-0.02499479166666667],[113,290,70,-0.02499479166666667],[113,290,71,-0.02499479166666667],[113,290,72,-0.02499479166666667],[113,290,73,-0.02499479166666667],[113,290,74,-0.02499479166666667],[113,290,75,-0.02499479166666667],[113,290,76,-0.02499479166666667],[113,290,77,-0.02499479166666667],[113,290,78,-0.02499479166666667],[113,290,79,-0.02499479166666667],[113,291,64,-0.02499479166666667],[113,291,65,-0.02499479166666667],[113,291,66,-0.02499479166666667],[113,291,67,-0.02499479166666667],[113,291,68,-0.02499479166666667],[113,291,69,-0.02499479166666667],[113,291,70,-0.02499479166666667],[113,291,71,-0.02499479166666667],[113,291,72,-0.02499479166666667],[113,291,73,-0.02499479166666667],[113,291,74,-0.02499479166666667],[113,291,75,-0.02499479166666667],[113,291,76,-0.02499479166666667],[113,291,77,-0.02499479166666667],[113,291,78,-0.02499479166666667],[113,291,79,-0.02499479166666667],[113,292,64,-0.02499479166666667],[113,292,65,-0.02499479166666667],[113,292,66,-0.02499479166666667],[113,292,67,-0.02499479166666667],[113,292,68,-0.02499479166666667],[113,292,69,-0.02499479166666667],[113,292,70,-0.02499479166666667],[113,292,71,-0.02499479166666667],[113,292,72,-0.02499479166666667],[113,292,73,-0.02499479166666667],[113,292,74,-0.02499479166666667],[113,292,75,-0.02499479166666667],[113,292,76,-0.02499479166666667],[113,292,77,-0.02499479166666667],[113,292,78,-0.02499479166666667],[113,292,79,-0.02499479166666667],[113,293,64,-0.02499479166666667],[113,293,65,-0.02499479166666667],[113,293,66,-0.02499479166666667],[113,293,67,-0.02499479166666667],[113,293,68,-0.02499479166666667],[113,293,69,-0.02499479166666667],[113,293,70,-0.02499479166666667],[113,293,71,-0.02499479166666667],[113,293,72,-0.02499479166666667],[113,293,73,-0.02499479166666667],[113,293,74,-0.02499479166666667],[113,293,75,-0.02499479166666667],[113,293,76,-0.02499479166666667],[113,293,77,-0.02499479166666667],[113,293,78,-0.02499479166666667],[113,293,79,-0.02499479166666667],[113,294,64,-0.02499479166666667],[113,294,65,-0.02499479166666667],[113,294,66,-0.02499479166666667],[113,294,67,-0.02499479166666667],[113,294,68,-0.02499479166666667],[113,294,69,-0.02499479166666667],[113,294,70,-0.02499479166666667],[113,294,71,-0.02499479166666667],[113,294,72,-0.02499479166666667],[113,294,73,-0.02499479166666667],[113,294,74,-0.02499479166666667],[113,294,75,-0.02499479166666667],[113,294,76,-0.02499479166666667],[113,294,77,-0.02499479166666667],[113,294,78,-0.02499479166666667],[113,294,79,-0.02499479166666667],[113,295,64,-0.02499479166666667],[113,295,65,-0.02499479166666667],[113,295,66,-0.02499479166666667],[113,295,67,-0.02499479166666667],[113,295,68,-0.02499479166666667],[113,295,69,-0.02499479166666667],[113,295,70,-0.02499479166666667],[113,295,71,-0.02499479166666667],[113,295,72,-0.02499479166666667],[113,295,73,-0.02499479166666667],[113,295,74,-0.02499479166666667],[113,295,75,-0.02499479166666667],[113,295,76,-0.02499479166666667],[113,295,77,-0.02499479166666667],[113,295,78,-0.02499479166666667],[113,295,79,-0.02499479166666667],[113,296,64,-0.02499479166666667],[113,296,65,-0.02499479166666667],[113,296,66,-0.02499479166666667],[113,296,67,-0.02499479166666667],[113,296,68,-0.02499479166666667],[113,296,69,-0.02499479166666667],[113,296,70,-0.02499479166666667],[113,296,71,-0.02499479166666667],[113,296,72,-0.02499479166666667],[113,296,73,-0.02499479166666667],[113,296,74,-0.02499479166666667],[113,296,75,-0.02499479166666667],[113,296,76,-0.02499479166666667],[113,296,77,-0.02499479166666667],[113,296,78,-0.02499479166666667],[113,296,79,-0.02499479166666667],[113,297,64,-0.02499479166666667],[113,297,65,-0.02499479166666667],[113,297,66,-0.02499479166666667],[113,297,67,-0.02499479166666667],[113,297,68,-0.02499479166666667],[113,297,69,-0.02499479166666667],[113,297,70,-0.02499479166666667],[113,297,71,-0.02499479166666667],[113,297,72,-0.02499479166666667],[113,297,73,-0.02499479166666667],[113,297,74,-0.02499479166666667],[113,297,75,-0.02499479166666667],[113,297,76,-0.02499479166666667],[113,297,77,-0.02499479166666667],[113,297,78,-0.02499479166666667],[113,297,79,-0.02499479166666667],[113,298,64,-0.02499479166666667],[113,298,65,-0.02499479166666667],[113,298,66,-0.02499479166666667],[113,298,67,-0.02499479166666667],[113,298,68,-0.02499479166666667],[113,298,69,-0.02499479166666667],[113,298,70,-0.02499479166666667],[113,298,71,-0.02499479166666667],[113,298,72,-0.02499479166666667],[113,298,73,-0.02499479166666667],[113,298,74,-0.02499479166666667],[113,298,75,-0.02499479166666667],[113,298,76,-0.02499479166666667],[113,298,77,-0.02499479166666667],[113,298,78,-0.02499479166666667],[113,298,79,-0.02499479166666667],[113,299,64,-0.02499479166666667],[113,299,65,-0.02499479166666667],[113,299,66,-0.02499479166666667],[113,299,67,-0.02499479166666667],[113,299,68,-0.02499479166666667],[113,299,69,-0.02499479166666667],[113,299,70,-0.02499479166666667],[113,299,71,-0.02499479166666667],[113,299,72,-0.02499479166666667],[113,299,73,-0.02499479166666667],[113,299,74,-0.02499479166666667],[113,299,75,-0.02499479166666667],[113,299,76,-0.02499479166666667],[113,299,77,-0.02499479166666667],[113,299,78,-0.02499479166666667],[113,299,79,-0.02499479166666667],[113,300,64,-0.02499479166666667],[113,300,65,-0.02499479166666667],[113,300,66,-0.02499479166666667],[113,300,67,-0.02499479166666667],[113,300,68,-0.02499479166666667],[113,300,69,-0.02499479166666667],[113,300,70,-0.02499479166666667],[113,300,71,-0.02499479166666667],[113,300,72,-0.02499479166666667],[113,300,73,-0.02499479166666667],[113,300,74,-0.02499479166666667],[113,300,75,-0.02499479166666667],[113,300,76,-0.02499479166666667],[113,300,77,-0.02499479166666667],[113,300,78,-0.02499479166666667],[113,300,79,-0.02499479166666667],[113,301,64,-0.02499479166666667],[113,301,65,-0.02499479166666667],[113,301,66,-0.02499479166666667],[113,301,67,-0.02499479166666667],[113,301,68,-0.02499479166666667],[113,301,69,-0.02499479166666667],[113,301,70,-0.02499479166666667],[113,301,71,-0.02499479166666667],[113,301,72,-0.02499479166666667],[113,301,73,-0.02499479166666667],[113,301,74,-0.02499479166666667],[113,301,75,-0.02499479166666667],[113,301,76,-0.02499479166666667],[113,301,77,-0.02499479166666667],[113,301,78,-0.02499479166666667],[113,301,79,-0.02499479166666667],[113,302,64,-0.02499479166666667],[113,302,65,-0.02499479166666667],[113,302,66,-0.02499479166666667],[113,302,67,-0.02499479166666667],[113,302,68,-0.02499479166666667],[113,302,69,-0.02499479166666667],[113,302,70,-0.02499479166666667],[113,302,71,-0.02499479166666667],[113,302,72,-0.02499479166666667],[113,302,73,-0.02499479166666667],[113,302,74,-0.02499479166666667],[113,302,75,-0.02499479166666667],[113,302,76,-0.02499479166666667],[113,302,77,-0.02499479166666667],[113,302,78,-0.02499479166666667],[113,302,79,-0.02499479166666667],[113,303,64,-0.02499479166666667],[113,303,65,-0.02499479166666667],[113,303,66,-0.02499479166666667],[113,303,67,-0.02499479166666667],[113,303,68,-0.02499479166666667],[113,303,69,-0.02499479166666667],[113,303,70,-0.02499479166666667],[113,303,71,-0.02499479166666667],[113,303,72,-0.02499479166666667],[113,303,73,-0.02499479166666667],[113,303,74,-0.02499479166666667],[113,303,75,-0.02499479166666667],[113,303,76,-0.02499479166666667],[113,303,77,-0.02499479166666667],[113,303,78,-0.02499479166666667],[113,303,79,-0.02499479166666667],[113,304,64,-0.02499479166666667],[113,304,65,-0.02499479166666667],[113,304,66,-0.02499479166666667],[113,304,67,-0.02499479166666667],[113,304,68,-0.02499479166666667],[113,304,69,-0.02499479166666667],[113,304,70,-0.02499479166666667],[113,304,71,-0.02499479166666667],[113,304,72,-0.02499479166666667],[113,304,73,-0.02499479166666667],[113,304,74,-0.02499479166666667],[113,304,75,-0.02499479166666667],[113,304,76,-0.02499479166666667],[113,304,77,-0.02499479166666667],[113,304,78,-0.02499479166666667],[113,304,79,-0.02499479166666667],[113,305,64,-0.02499479166666667],[113,305,65,-0.02499479166666667],[113,305,66,-0.02499479166666667],[113,305,67,-0.02499479166666667],[113,305,68,-0.02499479166666667],[113,305,69,-0.02499479166666667],[113,305,70,-0.02499479166666667],[113,305,71,-0.02499479166666667],[113,305,72,-0.02499479166666667],[113,305,73,-0.02499479166666667],[113,305,74,-0.02499479166666667],[113,305,75,-0.02499479166666667],[113,305,76,-0.02499479166666667],[113,305,77,-0.02499479166666667],[113,305,78,-0.02499479166666667],[113,305,79,-0.02499479166666667],[113,306,64,-0.02499479166666667],[113,306,65,-0.02499479166666667],[113,306,66,-0.02499479166666667],[113,306,67,-0.02499479166666667],[113,306,68,-0.02499479166666667],[113,306,69,-0.02499479166666667],[113,306,70,-0.02499479166666667],[113,306,71,-0.02499479166666667],[113,306,72,-0.02499479166666667],[113,306,73,-0.02499479166666667],[113,306,74,-0.02499479166666667],[113,306,75,-0.02499479166666667],[113,306,76,-0.02499479166666667],[113,306,77,-0.02499479166666667],[113,306,78,-0.02499479166666667],[113,306,79,-0.02499479166666667],[113,307,64,-0.02499479166666667],[113,307,65,-0.02499479166666667],[113,307,66,-0.02499479166666667],[113,307,67,-0.02499479166666667],[113,307,68,-0.02499479166666667],[113,307,69,-0.02499479166666667],[113,307,70,-0.02499479166666667],[113,307,71,-0.02499479166666667],[113,307,72,-0.02499479166666667],[113,307,73,-0.02499479166666667],[113,307,74,-0.02499479166666667],[113,307,75,-0.02499479166666667],[113,307,76,-0.02499479166666667],[113,307,77,-0.02499479166666667],[113,307,78,-0.02499479166666667],[113,307,79,-0.02499479166666667],[113,308,64,-0.02499479166666667],[113,308,65,-0.02499479166666667],[113,308,66,-0.02499479166666667],[113,308,67,-0.02499479166666667],[113,308,68,-0.02499479166666667],[113,308,69,-0.02499479166666667],[113,308,70,-0.02499479166666667],[113,308,71,-0.02499479166666667],[113,308,72,-0.02499479166666667],[113,308,73,-0.02499479166666667],[113,308,74,-0.02499479166666667],[113,308,75,-0.02499479166666667],[113,308,76,-0.02499479166666667],[113,308,77,-0.02499479166666667],[113,308,78,-0.02499479166666667],[113,308,79,-0.02499479166666667],[113,309,64,-0.02499479166666667],[113,309,65,-0.02499479166666667],[113,309,66,-0.02499479166666667],[113,309,67,-0.02499479166666667],[113,309,68,-0.02499479166666667],[113,309,69,-0.02499479166666667],[113,309,70,-0.02499479166666667],[113,309,71,-0.02499479166666667],[113,309,72,-0.02499479166666667],[113,309,73,-0.02499479166666667],[113,309,74,-0.02499479166666667],[113,309,75,-0.02499479166666667],[113,309,76,-0.02499479166666667],[113,309,77,-0.02499479166666667],[113,309,78,-0.02499479166666667],[113,309,79,-0.02499479166666667],[113,310,64,-0.02499479166666667],[113,310,65,-0.02499479166666667],[113,310,66,-0.02499479166666667],[113,310,67,-0.02499479166666667],[113,310,68,-0.02499479166666667],[113,310,69,-0.02499479166666667],[113,310,70,-0.02499479166666667],[113,310,71,-0.02499479166666667],[113,310,72,-0.02499479166666667],[113,310,73,-0.02499479166666667],[113,310,74,-0.02499479166666667],[113,310,75,-0.02499479166666667],[113,310,76,-0.02499479166666667],[113,310,77,-0.02499479166666667],[113,310,78,-0.02499479166666667],[113,310,79,-0.02499479166666667],[113,311,64,-0.02499479166666667],[113,311,65,-0.02499479166666667],[113,311,66,-0.02499479166666667],[113,311,67,-0.02499479166666667],[113,311,68,-0.02499479166666667],[113,311,69,-0.02499479166666667],[113,311,70,-0.02499479166666667],[113,311,71,-0.02499479166666667],[113,311,72,-0.02499479166666667],[113,311,73,-0.02499479166666667],[113,311,74,-0.02499479166666667],[113,311,75,-0.02499479166666667],[113,311,76,-0.02499479166666667],[113,311,77,-0.02499479166666667],[113,311,78,-0.02499479166666667],[113,311,79,-0.02499479166666667],[113,312,64,-0.02499479166666667],[113,312,65,-0.02499479166666667],[113,312,66,-0.02499479166666667],[113,312,67,-0.02499479166666667],[113,312,68,-0.02499479166666667],[113,312,69,-0.02499479166666667],[113,312,70,-0.02499479166666667],[113,312,71,-0.02499479166666667],[113,312,72,-0.02499479166666667],[113,312,73,-0.02499479166666667],[113,312,74,-0.02499479166666667],[113,312,75,-0.02499479166666667],[113,312,76,-0.02499479166666667],[113,312,77,-0.02499479166666667],[113,312,78,-0.02499479166666667],[113,312,79,-0.02499479166666667],[113,313,64,-0.02499479166666667],[113,313,65,-0.02499479166666667],[113,313,66,-0.02499479166666667],[113,313,67,-0.02499479166666667],[113,313,68,-0.02499479166666667],[113,313,69,-0.02499479166666667],[113,313,70,-0.02499479166666667],[113,313,71,-0.02499479166666667],[113,313,72,-0.02499479166666667],[113,313,73,-0.02499479166666667],[113,313,74,-0.02499479166666667],[113,313,75,-0.02499479166666667],[113,313,76,-0.02499479166666667],[113,313,77,-0.02499479166666667],[113,313,78,-0.02499479166666667],[113,313,79,-0.02499479166666667],[113,314,64,-0.02499479166666667],[113,314,65,-0.02499479166666667],[113,314,66,-0.02499479166666667],[113,314,67,-0.02499479166666667],[113,314,68,-0.02499479166666667],[113,314,69,-0.02499479166666667],[113,314,70,-0.02499479166666667],[113,314,71,-0.02499479166666667],[113,314,72,-0.02499479166666667],[113,314,73,-0.02499479166666667],[113,314,74,-0.02499479166666667],[113,314,75,-0.02499479166666667],[113,314,76,-0.02499479166666667],[113,314,77,-0.02499479166666667],[113,314,78,-0.02499479166666667],[113,314,79,-0.02499479166666667],[113,315,64,-0.02499479166666667],[113,315,65,-0.02499479166666667],[113,315,66,-0.02499479166666667],[113,315,67,-0.02499479166666667],[113,315,68,-0.02499479166666667],[113,315,69,-0.02499479166666667],[113,315,70,-0.02499479166666667],[113,315,71,-0.02499479166666667],[113,315,72,-0.02499479166666667],[113,315,73,-0.02499479166666667],[113,315,74,-0.02499479166666667],[113,315,75,-0.02499479166666667],[113,315,76,-0.02499479166666667],[113,315,77,-0.02499479166666667],[113,315,78,-0.02499479166666667],[113,315,79,-0.02499479166666667],[113,316,64,-0.02499479166666667],[113,316,65,-0.02499479166666667],[113,316,66,-0.02499479166666667],[113,316,67,-0.02499479166666667],[113,316,68,-0.02499479166666667],[113,316,69,-0.02499479166666667],[113,316,70,-0.02499479166666667],[113,316,71,-0.02499479166666667],[113,316,72,-0.02499479166666667],[113,316,73,-0.02499479166666667],[113,316,74,-0.02499479166666667],[113,316,75,-0.02499479166666667],[113,316,76,-0.02499479166666667],[113,316,77,-0.02499479166666667],[113,316,78,-0.02499479166666667],[113,316,79,-0.02499479166666667],[113,317,64,-0.02499479166666667],[113,317,65,-0.02499479166666667],[113,317,66,-0.02499479166666667],[113,317,67,-0.02499479166666667],[113,317,68,-0.02499479166666667],[113,317,69,-0.02499479166666667],[113,317,70,-0.02499479166666667],[113,317,71,-0.02499479166666667],[113,317,72,-0.02499479166666667],[113,317,73,-0.02499479166666667],[113,317,74,-0.02499479166666667],[113,317,75,-0.02499479166666667],[113,317,76,-0.02499479166666667],[113,317,77,-0.02499479166666667],[113,317,78,-0.02499479166666667],[113,317,79,-0.02499479166666667],[113,318,64,-0.02499479166666667],[113,318,65,-0.02499479166666667],[113,318,66,-0.02499479166666667],[113,318,67,-0.02499479166666667],[113,318,68,-0.02499479166666667],[113,318,69,-0.02499479166666667],[113,318,70,-0.02499479166666667],[113,318,71,-0.02499479166666667],[113,318,72,-0.02499479166666667],[113,318,73,-0.02499479166666667],[113,318,74,-0.02499479166666667],[113,318,75,-0.02499479166666667],[113,318,76,-0.02499479166666667],[113,318,77,-0.02499479166666667],[113,318,78,-0.02499479166666667],[113,318,79,-0.02499479166666667],[113,319,64,-0.02499479166666667],[113,319,65,-0.02499479166666667],[113,319,66,-0.02499479166666667],[113,319,67,-0.02499479166666667],[113,319,68,-0.02499479166666667],[113,319,69,-0.02499479166666667],[113,319,70,-0.02499479166666667],[113,319,71,-0.02499479166666667],[113,319,72,-0.02499479166666667],[113,319,73,-0.02499479166666667],[113,319,74,-0.02499479166666667],[113,319,75,-0.02499479166666667],[113,319,76,-0.02499479166666667],[113,319,77,-0.02499479166666667],[113,319,78,-0.02499479166666667],[113,319,79,-0.02499479166666667],[114,-64,64,0.037482421875],[114,-64,65,0.037482421875],[114,-64,66,0.037482421875],[114,-64,67,0.037482421875],[114,-64,68,0.037482421875],[114,-64,69,0.037482421875],[114,-64,70,0.037482421875],[114,-64,71,0.037482421875],[114,-64,72,0.037482421875],[114,-64,73,0.037482421875],[114,-64,74,0.037482421875],[114,-64,75,0.037482421875],[114,-64,76,0.037482421875],[114,-64,77,0.037482421875],[114,-64,78,0.037482421875],[114,-64,79,0.037482421875],[114,-63,64,0.04032970929432972],[114,-63,65,0.0404067704124793],[114,-63,66,0.04048537215334673],[114,-63,67,0.04056527490389631],[114,-63,68,0.04064655917968334],[114,-63,69,0.040729454110133394],[114,-63,70,0.04081408294754125],[114,-63,71,0.0409004648873319],[114,-63,72,0.040988522776643936],[114,-63,73,0.04107809120431241],[114,-63,74,0.04116892497114161],[114,-63,75,0.041260707938097836],[114,-63,76,0.041353062248842866],[114,-63,77,0.04144555792187802],[114,-63,78,0.041537722806478335],[114,-63,79,0.04162905289558112],[114,-62,64,0.04321124932209225],[114,-62,65,0.043367671869723116],[114,-62,66,0.043527220740803514],[114,-62,67,0.04368946013464652],[114,-62,68,0.04385454303532052],[114,-62,69,0.04402287851863202],[114,-62,70,0.04419466493093295],[114,-62,71,0.044369895417008295],[114,-62,72,0.04454837418211332],[114,-62,73,0.044729733422236885],[114,-62,74,0.044913450917233165],[114,-62,75,0.045098868279042505],[114,-62,76,0.045285209844934705],[114,-62,77,0.04547160220357094],[114,-62,78,0.04565709433969425],[114,-62,79,0.04584067838144987],[114,-61,64,0.0461338709310343],[114,-61,65,0.04637142246870196],[114,-61,66,0.0466136714380726],[114,-61,67,0.04686003914162105],[114,-61,68,0.04711074070384972],[114,-61,69,0.0473663086269716],[114,-61,70,0.04762696682423538],[114,-61,71,0.04789264099386097],[114,-61,72,0.048162983321697383],[114,-61,73,0.04843739809252046],[114,-61,74,0.048715068199278705],[114,-61,75,0.04899498253610212],[114,-61,76,0.04927596425763253],[114,-61,77,0.04955669988423823],[114,-61,78,0.04983576922994099],[114,-61,79,0.05011167612744619],[114,-60,64,0.0491033911468506],[114,-60,65,0.04942333805544072],[114,-60,66,0.04974948234981454],[114,-60,67,0.05008116277586148],[114,-60,68,0.05041864489941496],[114,-60,69,0.05076252372880176],[114,-60,70,0.051112999802414315],[114,-60,71,0.0514698948780756],[114,-60,72,0.051832684146704056],[114,-60,73,0.052200529589402654],[114,-60,74,0.05257231446254198],[114,-60,75,0.05294667889092403],[114,-60,76,0.053322056544977056],[114,-60,77,0.05369671237417065],[114,-60,78,0.05406878136545834],[114,-60,79,0.05443630829259624],[114,-59,64,0.0521244112634736],[114,-59,65,0.05252757771255357],[114,-59,66,0.05293831985233097],[114,-59,67,0.05335595780840447],[114,-59,68,0.053780794925238795],[114,-59,69,0.054213425783292565],[114,-59,70,0.05465398039224032],[114,-59,71,0.05510214513347899],[114,-59,72,0.0555572009364607],[114,-59,73,0.05601806285634104],[114,-59,74,0.05648332103455718],[114,-59,75,0.05695128301856213],[114,-59,76,0.05742001741199707],[114,-59,77,0.057887398822126096],[114,-59,78,0.05835115406738964],[114,-59,79,0.05880890960451459],[114,-58,64,0.05520021727373353],[114,-58,65,0.05568707429470905],[114,-58,66,0.05618272207423311],[114,-58,67,0.05668652557060116],[114,-58,68,0.05719881194292645],[114,-58,69,0.05772011183591073],[114,-58,70,0.05825043947583365],[114,-58,71,0.058789318472437985],[114,-58,72,0.059335824046106274],[114,-58,73,0.05988862694870234],[114,-58,74,0.06044603905909307],[114,-58,75,0.06100606062816837],[114,-58,76,0.06156642914249985],[114,-58,77,0.06212466977068276],[114,-58,78,0.06267814735189628],[114,-58,79,0.06322411988237045],[114,-57,64,0.058332804352733386],[114,-57,65,0.05890359168261305],[114,-57,66,0.05948419156628813],[114,-57,67,0.060074072075442],[114,-57,68,0.06067356756649216],[114,-57,69,0.06128308071924989],[114,-57,70,0.06190246526969727],[114,-57,71,0.06253105621418027],[114,-57,72,0.06316771412373108],[114,-57,73,0.06381087146678384],[114,-57,74,0.0644585809228951],[114,-57,75,0.06510856566319972],[114,-57,76,0.0657582715670285],[114,-57,77,0.06640492133845663],[114,-57,78,0.0670455704815633],[114,-57,79,0.06767716508894621],[114,-56,64,0.06152268118935819],[114,-56,65,0.06217750885762387],[114,-56,66,0.06284296148120595],[114,-56,67,0.0635186580451795],[114,-56,68,0.06420491860477937],[114,-56,69,0.06490195272628284],[114,-56,70,0.06560940779305484],[114,-56,71,0.06632640330626788],[114,-56,72,0.06705157553139772],[114,-56,73,0.06778312445815624],[114,-56,74,0.0685188630595314],[114,-56,75,0.0692562688282274],[114,-56,76,0.0699925375620208],[114,-56,77,0.07072463936346728],[114,-56,78,0.07144937681402959],[114,-56,79,0.07216344527816329],[114,-55,64,0.06476638285116193],[114,-55,65,0.06550493574155591],[114,-55,66,0.066254715369047],[114,-55,67,0.06701552357289568],[114,-55,68,0.06778764000817188],[114,-55,69,0.0685710219922523],[114,-55,70,0.06936507185281898],[114,-55,71,0.07016867447785001],[114,-55,72,0.07098024023787727],[114,-55,73,0.07179775053854252],[114,-55,74,0.07261880599440129],[114,-55,75,0.07344067720721044],[114,-55,76,0.07426035812481198],[114,-55,77,0.0750746219503079],[114,-55,78,0.07588007956553984],[114,-55,79,0.07667324042807479],[114,-54,64,0.06805719006465337],[114,-54,65,0.06887850189451833],[114,-54,66,0.06971144371921377],[114,-54,67,0.07055601289339898],[114,-54,68,0.07141241876897032],[114,-54,69,0.07228031915128617],[114,-54,70,0.07315884640757649],[114,-54,71,0.0740466463455795],[114,-54,72,0.07494191666257709],[114,-54,73,0.07584244841869646],[114,-54,74,0.07674567053473816],[114,-54,75,0.07764869730680105],[114,-54,76,0.07854837892251162],[114,-54,77,0.07944135495686339],[114,-54,78,0.08032411081958137],[114,-54,79,0.08119303712069255],[114,-53,64,0.07138652467277708],[114,-53,65,0.07228892562014444],[114,-53,66,0.07320318546741308],[114,-53,67,0.07412948856122065],[114,-53,68,0.07506794037100942],[114,-53,69,0.07601786589683351],[114,-53,70,0.07697811840516701],[114,-53,71,0.07794711650650832],[114,-53,72,0.0789228746162366],[114,-53,73,0.0799030369900061],[114,-53,74,0.08088491534922455],[114,-53,75,0.08186553010380578],[114,-53,76,0.0828416551714284],[114,-53,77,0.08380986638512264],[114,-53,78,0.08476659347421783],[114,-53,79,0.08570817559769284],[114,-52,64,0.07474445454128013],[114,-52,65,0.07572554920098541],[114,-52,66,0.0767185922699768],[114,-52,67,0.07772392460121026],[114,-52,68,0.07874151084700051],[114,-52,69,0.0797703251843962],[114,-52,70,0.08080894946502197],[114,-52,71,0.08185560408673362],[114,-52,72,0.08290816615716866],[114,-52,73,0.0839641920273309],[114,-52,74,0.08502094423391046],[114,-52,75,0.08607542288004817],[114,-52,76,0.08712440147543858],[114,-52,77,0.0881644672482167],[114,-52,78,0.08919206593308619],[114,-52,79,0.09020355103283596],[114,-51,64,0.07812024430269364],[114,-51,65,0.07917691479697904],[114,-51,66,0.0802455278438982],[114,-51,67,0.08132652866064526],[114,-51,68,0.08241970133884934],[114,-51,69,0.08352366712949638],[114,-51,70,0.08463676129837613],[114,-51,71,0.08575705210332456],[114,-51,72,0.086882341564473],[114,-51,73,0.08801017174038407],[114,-51,74,0.08913783658151515],[114,-51,75,0.0902623994223242],[114,-51,76,0.09138071616309099],[114,-51,77,0.0924894641823835],[114,-51,78,0.09358517701118801],[114,-51,79,0.09466428479030073],[114,-50,64,0.081502968940808],[114,-50,65,0.08263139872909772],[114,-50,66,0.08377172078566421],[114,-50,67,0.0849244122210211],[114,-50,68,0.08608903480327287],[114,-50,69,0.0872638707477849],[114,-50,70,0.08844705041700775],[114,-50,71,0.0896365524707725],[114,-50,72,0.09083018139482937],[114,-50,73,0.09202555210985715],[114,-50,74,0.09322008177611688],[114,-50,75,0.09441098889694496],[114,-50,76,0.09559529981182291],[114,-50,77,0.09676986265705444],[114,-50,78,0.09793136885930567],[114,-50,79,0.09907638221472594],[114,-49,64,0.08462582030596497],[114,-49,65,0.08591933918852653],[114,-49,66,0.0872361357683992],[114,-49,67,0.08850485394043611],[114,-49,68,0.08973641575352284],[114,-49,69,0.09097752939796003],[114,-49,70,0.09222617521229684],[114,-49,71,0.0934803168601544],[114,-49,72,0.09473784925796351],[114,-49,73,0.09599655567816705],[114,-49,74,0.0972540741984074],[114,-49,75,0.09850787365248893],[114,-49,76,0.09975523922327059],[114,-49,77,0.10099326780135505],[114,-49,78,0.10221887321670366],[114,-49,79,0.10342880143348292],[114,-48,64,0.08764226029157499],[114,-48,65,0.0890315991883035],[114,-48,66,0.09044720277585024],[114,-48,67,0.09188507160560903],[114,-48,68,0.0933420614995171],[114,-48,69,0.09465183801158018],[114,-48,70,0.09596189166781713],[114,-48,71,0.09727677037626459],[114,-48,72,0.09859454109632355],[114,-48,73,0.09991324210237214],[114,-48,74,0.10123081912938277],[114,-48,75,0.10254507376736637],[114,-48,76,0.10385362430246485],[114,-48,77,0.10515387918163828],[114,-48,78,0.10644302325612054],[114,-48,79,0.10771801693654984],[114,-47,64,0.09066484223801329],[114,-47,65,0.09215089878658743],[114,-47,66,0.09366600302158488],[114,-47,67,0.09520625421647637],[114,-47,68,0.09676866517476651],[114,-47,69,0.09827495559659084],[114,-47,70,0.09964319801301658],[114,-47,71,0.1010158551391653],[114,-47,72,0.10239123425365303],[114,-47,73,0.10376769954525558],[114,-47,74,0.10514357364812536],[114,-47,75,0.10651705468153794],[114,-47,76,0.10788614905582389],[114,-47,77,0.10924862027978476],[114,-47,78,0.11060195397711339],[114,-47,79,0.11194333929055195],[114,-46,64,0.09369966622179306],[114,-46,65,0.09528263907378788],[114,-46,66,0.0968970992327746],[114,-46,67,0.09853938529290686],[114,-46,68,0.10020674245992042],[114,-46,69,0.10183637739161557],[114,-46,70,0.10326049128770678],[114,-46,71,0.10468896123223348],[114,-46,72,0.10612038682255322],[114,-46,73,0.10755351069309603],[114,-46,74,0.10898708188188574],[114,-46,75,0.11041973841219731],[114,-46,76,0.11184990941886852],[114,-46,77,0.11327573711618763],[114,-46,78,0.1146950188696565],[114,-46,79,0.11610516959764913],[114,-45,64,0.09675139356881632],[114,-45,65,0.09843071384023318],[114,-45,66,0.10014349105055001],[114,-45,67,0.10188645200934024],[114,-45,68,0.10365715833062937],[114,-45,69,0.10532718384853576],[114,-45,70,0.1068057749066343],[114,-45,71,0.10828908918449792],[114,-45,72,0.10977605199343585],[114,-45,73,0.11126581661958816],[114,-45,74,0.11275758679070383],[114,-45,75,0.11425046245351356],[114,-45,76,0.11574330926100891],[114,-45,77,0.11723465212950072],[114,-45,78,0.11872259318315982],[114,-45,79,0.12020475435910354],[114,-44,64,0.09982293584990232],[114,-44,65,0.10159721740756002],[114,-44,66,0.1034063465198161],[114,-44,67,0.10524759142990203],[114,-44,68,0.10711892198951244],[114,-44,69,0.10874023768577136],[114,-44,70,0.11027281837377688],[114,-44,71,0.11181096950223221],[114,-44,72,0.11335395516251577],[114,-44,73,0.11490134990008517],[114,-44,74,0.11645281842911887],[114,-44,75,0.11800792305388252],[114,-44,76,0.11956595926587553],[114,-44,77,0.1211258199390761],[114,-44,78,0.12268588849530596],[114,-44,79,0.1242439613579684],[114,-43,64,0.10291520453084033],[114,-43,65,0.10478221307661711],[114,-43,66,0.1066847933502708],[114,-43,67,0.10862090821213348],[114,-43,68,0.11049140878304274],[114,-43,69,0.112070327872634],[114,-43,70,0.1136572678353427],[114,-43,71,0.11525113773575618],[114,-43,72,0.11685153205146447],[114,-43,73,0.11845843496729695],[114,-43,74,0.12007195638938],[114,-43,75,0.12169210026674382],[114,-43,76,0.12331856575741923],[114,-43,77,0.12495058172157567],[114,-43,78,0.12658677496536003],[114,-43,79,0.12822507259553156],[114,-42,64,0.10602692228669183],[114,-42,65,0.10798356325132079],[114,-42,66,0.1099757710518921],[114,-42,67,0.11200235167132346],[114,-42,68,0.11368153827551923],[114,-42,69,0.11531425926814146],[114,-42,70,0.1169567060301276],[114,-42,71,0.11860796344644288],[114,-42,72,0.12026792598293168],[114,-42,73,0.12193695360725224],[114,-42,74,0.12361556405809719],[114,-42,75,0.1253041621222025],[114,-42,76,0.1270028065204669],[114,-42,77,0.1287110149422035],[114,-42,78,0.13042760769867262],[114,-42,79,0.13215059039310073],[114,-41,64,0.10915449718319187],[114,-41,65,0.11119682247924306],[114,-41,66,0.11327394521496344],[114,-41,67,0.11510944465463731],[114,-41,68,0.11678309826480204],[114,-41,69,0.1184708864674572],[114,-41,70,0.1201706600343546],[114,-41,71,0.1218816312894655],[114,-41,72,0.12360394232248971],[114,-41,73,0.12533827338043746],[114,-41,74,0.12708549222810916],[114,-41,75,0.12884634520403043],[114,-41,76,0.13062119063259342],[114,-41,77,0.13240977518272107],[114,-41,78,0.134211053686212],[114,-41,79,0.13602305284412336],[114,-40,64,0.1122919611041932],[114,-40,65,0.11441519481467333],[114,-40,66,0.11636247433302638],[114,-40,67,0.11806876535437379],[114,-40,68,0.11979640774332366],[114,-40,69,0.12154109020666444],[114,-40,70,0.12330055500715384],[114,-40,71,0.12507407225222003],[114,-40,72,0.1268619579414046],[114,-40,73,0.12866513662041693],[114,-40,74,0.13048474950215],[114,-40,75,0.13232180884229633],[114,-40,76,0.1341768992835237],[114,-40,77,0.1360499268034023],[114,-40,78,0.1379399158145907],[114,-40,79,0.13984485486979323],[114,-39,64,0.11233400744833391],[114,-39,65,0.11428055365233483],[114,-39,66,0.11593817784797938],[114,-39,67,0.1176272733615796],[114,-39,68,0.11934068235245349],[114,-39,69,0.12107386619793103],[114,-39,70,0.12282447346480259],[114,-39,71,0.12459177423284089],[114,-39,72,0.1263761518068855],[114,-39,73,0.12817864124319403],[114,-39,74,0.13000051557996434],[114,-39,75,0.13184292058458982],[114,-39,76,0.13277927536629883],[114,-39,77,0.1323836952730368],[114,-39,78,0.1338735224902141],[114,-39,79,0.13324188690478758],[114,-38,64,0.1122354498501673],[114,-38,65,0.11383077456210147],[114,-38,66,0.11546974706071071],[114,-38,67,0.11714434672700101],[114,-38,68,0.11884658711389273],[114,-38,69,0.12057163312839698],[114,-38,70,0.12231695148034824],[114,-38,71,0.12408171138539449],[114,-38,72,0.12509198904188482],[114,-38,73,0.1255500357359427],[114,-38,74,0.1265583381207078],[114,-38,75,0.12538280299977925],[114,-38,76,0.1243100132735269],[114,-38,77,0.12349016616672503],[114,-38,78,0.12480111623747003],[114,-38,79,0.12224452060919572],[114,-37,64,0.11177078295297435],[114,-37,65,0.11334431399924837],[114,-37,66,0.11496695419743114],[114,-37,67,0.11662968382303748],[114,-37,68,0.1183236655927088],[114,-37,69,0.12004369022673654],[114,-37,70,0.1217869474840542],[114,-37,71,0.12170024970322456],[114,-37,72,0.12063588469106126],[114,-37,73,0.11987478123040192],[114,-37,74,0.12074122328674972],[114,-37,75,0.12086654151259434],[114,-37,76,0.12132738900671004],[114,-37,77,0.11880147970729896],[114,-37,78,0.11908457825930217],[114,-37,79,0.11538758694696978],[114,-36,64,0.11127731683124484],[114,-36,65,0.1128311463733543],[114,-36,66,0.11443969902950794],[114,-36,67,0.11609301386012523],[114,-36,68,0.11778138864834649],[114,-36,69,0.1194991555740167],[114,-36,70,0.12110168612864985],[114,-36,71,0.118684899827085],[114,-36,72,0.11760549810400048],[114,-36,73,0.11748005299475629],[114,-36,74,0.11881407636323925],[114,-36,75,0.11988722068182006],[114,-36,76,0.12058681875176247],[114,-36,77,0.11728909593092025],[114,-36,78,0.1172224232095821],[114,-36,79,0.11408278524019436],[114,-35,64,0.11076500741922231],[114,-35,65,0.11230118851255272],[114,-35,66,0.11389773704283904],[114,-35,67,0.11554383013301839],[114,-35,68,0.11722889512938416],[114,-35,69,0.1189467168180761],[114,-35,70,0.12069363011239798],[114,-35,71,0.1179640339534147],[114,-35,72,0.11660814237895208],[114,-35,73,0.11958517694159905],[114,-35,74,0.12082103276468907],[114,-35,75,0.12013601928738707],[114,-35,76,0.12162354235882283],[114,-35,77,0.11920051898897563],[114,-35,78,0.11749590793817151],[114,-35,79,0.11368871842863504],[114,-34,64,0.11024355345369753],[114,-34,65,0.11176401597005428],[114,-34,66,0.11335039803916794],[114,-34,67,0.11499111353899999],[114,-34,68,0.11667472265199651],[114,-34,69,0.11839437175827199],[114,-34,70,0.12014581652394303],[114,-34,71,0.12192675996475694],[114,-34,72,0.12006701417413317],[114,-34,73,0.12317532738992495],[114,-34,74,0.12374284889698801],[114,-34,75,0.12044080061331472],[114,-34,76,0.12221599378613872],[114,-34,77,0.12009810962746306],[114,-34,78,0.11734116760083523],[114,-34,79,0.11301161541148282],[114,-33,64,0.1097221038988768],[114,-33,65,0.11122856913836436],[114,-33,66,0.11280629440458194],[114,-33,67,0.11444304563302497],[114,-33,68,0.11612652776288337],[114,-33,69,0.11784915814291627],[114,-33,70,0.11960601569838604],[114,-33,71,0.1213941817609081],[114,-33,72,0.12321218732981455],[114,-33,73,0.12505950907097535],[114,-33,74,0.1269361149368042],[114,-33,75,0.12334090490817363],[114,-33,76,0.12417951858693392],[114,-33,77,0.12098877881472167],[114,-33,78,0.11849245596959926],[114,-33,79,0.1146963818843297],[114,-32,64,0.10920895464404452],[114,-32,65,0.1107028484243226],[114,-32,66,0.11227301831861052],[114,-32,67,0.11390671051964682],[114,-32,68,0.1155907948179197],[114,-32,69,0.11731687204686397],[114,-32,70,0.11907925339267196],[114,-32,71,0.12087431080995174],[114,-32,72,0.12269993329022219],[114,-32,73,0.12455503025407158],[114,-32,74,0.12643908292670933],[114,-32,75,0.12835174445341815],[114,-32,76,0.12802381703271143],[114,-32,77,0.12504301772786472],[114,-32,78,0.12407749216176384],[114,-32,79,0.1193977950360724],[114,-31,64,0.10871123375735704],[114,-31,65,0.11019359777833479],[114,-31,66,0.1117568272146518],[114,-31,67,0.11338778491492413],[114,-31,68,0.11507253293618634],[114,-31,69,0.11680177421928975],[114,-31,70,0.11856897086455591],[114,-31,71,0.12036971026301409],[114,-31,72,0.12220117348601905],[114,-31,73,0.12406164871662538],[114,-31,74,0.1259500905557736],[114,-31,75,0.12786572593165343],[114,-31,76,0.12980770724209656],[114,-31,77,0.13177481326247967],[114,-31,78,0.13179343481406983],[114,-31,79,0.12556345575056865],[114,-30,64,0.10823457461974971],[114,-30,65,0.1097059759092436],[114,-30,66,0.11126231683693162],[114,-30,67,0.1128902157414232],[114,-30,68,0.11457496041352483],[114,-30,69,0.11630628380993915],[114,-30,70,0.11807673057070693],[114,-30,71,0.1198810440407095],[114,-30,72,0.12171564897818389],[114,-30,73,0.12357817682892125],[114,-30,74,0.1254670343719063],[114,-30,75,0.12738101643673141],[114,-30,76,0.12931896329508322],[114,-30,77,0.13127946323316614],[114,-30,78,0.13326060071544304],[114,-30,79,0.13001057561632043],[114,-29,64,0.10778277629968139],[114,-29,65,0.10924321454964285],[114,-29,66,0.11079208126826666],[114,-29,67,0.11241588464335309],[114,-29,68,0.11409917599774146],[114,-29,69,0.11583065889353468],[114,-29,70,0.11760190859814985],[114,-29,71,0.11940678393131113],[114,-29,72,0.12124092542814464],[114,-29,73,0.12310129329303397],[114,-29,74,0.12498574592426213],[114,-29,75,0.12689265968395555],[114,-29,76,0.12882059049091538],[114,-29,77,0.13076797772107446],[114,-29,78,0.13273289080803688],[114,-29,79,0.1316311131579892],[114,-28,64,0.1073574505597217],[114,-28,65,0.10880626316242757],[114,-28,66,0.11034635932384865],[114,-28,67,0.11196425882403285],[114,-28,68,0.11364381643630003],[114,-28,69,0.1153726632137669],[114,-28,70,0.11714137326347922],[114,-28,71,0.11894290281029081],[114,-28,72,0.12077210374170746],[114,-28,73,0.12262527398769393],[114,-28,74,0.12449974549355862],[114,-28,75,0.12639351043886082],[114,-28,76,0.12830488625986344],[114,-28,77,0.1302322199431547],[114,-28,78,0.13217363197031146],[114,-28,79,0.1341268002052282],[114,-27,64,0.10695765490740135],[114,-27,65,0.10839341949545084],[114,-27,66,0.10992266671646592],[114,-27,67,0.11153202761162577],[114,-27,68,0.11320469970407998],[114,-27,69,0.11492721855773597],[114,-27,70,0.11668914929636931],[114,-27,71,0.11848255340671596],[114,-27,72,0.12030151623680826],[114,-27,73,0.12214170833450629],[114,-27,74,0.12399998136842413],[114,-27,75,0.12587399926872392],[114,-27,76,0.12776190513138927],[114,-27,77,0.12966202434264887],[114,-27,78,0.13157260429692602],[114,-27,79,0.1334915909993883],[114,-26,64,0.10657951111124644],[114,-26,65,0.10799994539307262],[114,-26,66,0.10951541339363512],[114,-26,67,0.11111272414687934],[114,-26,68,0.1127744532989813],[114,-26,69,0.11448604214424302],[114,-26,70,0.11623606698905867],[114,-26,71,0.11801573200042446],[114,-26,72,0.11981840772670059],[114,-26,73,0.1216392005918436],[114,-26,74,0.12347455409736317],[114,-26,75,0.12532188236160074],[114,-26,76,0.12717923653326946],[114,-26,77,0.12904500453177523],[114,-26,78,0.13091764448751267],[114,-26,79,0.1327954521783852],[114,-25,64,0.10621577520444697],[114,-25,65,0.10761765173373432],[114,-25,66,0.10911550646199968],[114,-25,67,0.11069634870498185],[114,-25,68,0.11234216028779799],[114,-25,69,0.11403731794199633],[114,-25,70,0.11576946132794012],[114,-25,71,0.11752900770351293],[114,-25,72,0.11930869692788819],[114,-25,73,0.12110316488940752],[114,-25,74,0.1229085460933874],[114,-25,75,0.12472210604017224],[114,-25,76,0.1265419039314241],[114,-25,77,0.12836648615988258],[114,-25,78,0.1301946109615477],[114,-25,79,0.13202500453666402],[114,-24,64,0.10585451087370545],[114,-24,65,0.10723440030944556],[114,-24,66,0.10871062344038829],[114,-24,67,0.110270394824082],[114,-24,68,0.11189514321904877],[114,-24,69,0.11356824225035653],[114,-24,70,0.11527647358483425],[114,-24,71,0.11700955885003055],[114,-24,72,0.11875970681179551],[114,-24,73,0.12052118677659732],[114,-24,74,0.12228992896412835],[114,-24,75,0.12406315248837572],[114,-24,76,0.1258390214923782],[114,-24,77,0.12761632989984803],[114,-24,78,0.1293942151726469],[114,-24,79,0.13117190139390061],[114,-23,64,0.10548140722284466],[114,-23,65,0.10683679534755548],[114,-23,66,0.10828824939269234],[114,-23,67,0.10982322311872962],[114,-23,68,0.11142267422994916],[114,-23,69,0.11306906546279345],[114,-23,70,0.11474841316443057],[114,-23,71,0.11644983477880297],[114,-23,72,0.1181366162389618],[114,-23,73,0.11982790921038158],[114,-23,74,0.12156068959658817],[114,-23,75,0.12332964493083554],[114,-23,76,0.12506932416228253],[114,-23,77,0.12679445123200048],[114,-23,78,0.12851745684671376],[114,-23,79,0.13023810326664842],[114,-22,64,0.10495919280086527],[114,-22,65,0.10637378972880558],[114,-22,66,0.10779628499776678],[114,-22,67,0.10922408836123408],[114,-22,68,0.11067263995824063],[114,-22,69,0.11215560174425838],[114,-22,70,0.11368228748518362],[114,-22,71,0.1152581441575385],[114,-22,72,0.11688524679793312],[114,-22,73,0.11856277069052512],[114,-22,74,0.1202874403063235],[114,-22,75,0.12205395437351751],[114,-22,76,0.1238553864551334],[114,-22,77,0.1256835604342547],[114,-22,78,0.1275294003532469],[114,-22,79,0.12922876220781268],[114,-21,64,0.10468571575602968],[114,-21,65,0.10531784368203091],[114,-21,66,0.1067000242203938],[114,-21,67,0.10809001972869285],[114,-21,68,0.1095035850607293],[114,-21,69,0.11095513748896023],[114,-21,70,0.11245464287004937],[114,-21,71,0.11400807648639778],[114,-21,72,0.11561791201785432],[114,-21,73,0.11728359023321203],[114,-21,74,0.11900196682567006],[114,-21,75,0.12076773877081126],[114,-21,76,0.12257384857218899],[114,-21,77,0.12441186577362887],[114,-21,78,0.1262723451546436],[114,-21,79,0.12814516108181753],[114,-20,64,0.10435296791344484],[114,-20,65,0.10424484523446817],[114,-20,66,0.10558672714675042],[114,-20,67,0.10693937208175146],[114,-20,68,0.10831868013423275],[114,-20,69,0.10973966306150633],[114,-20,70,0.11121282163190734],[114,-20,71,0.11274458012476771],[114,-20,72,0.11433776346079558],[114,-20,73,0.11599205682689999],[114,-20,74,0.11770444723497474],[114,-20,75,0.1194696463982939],[114,-20,76,0.12128049428511024],[114,-20,77,0.12312834271251559],[114,-20,78,0.1250034183708663],[114,-20,79,0.12689516471644074],[114,-19,64,0.1039713630383579],[114,-19,65,0.10358883302728769],[114,-19,66,0.10446617878029428],[114,-19,67,0.10578098470489919],[114,-19,68,0.10712570235621985],[114,-19,69,0.10851576510336877],[114,-19,70,0.10996209139682686],[114,-19,71,0.11147148513077978],[114,-19,72,0.11304709286748583],[114,-19,73,0.11468884687409353],[114,-19,74,0.11639389343460431],[114,-19,75,0.11815700583432814],[114,-19,76,0.11997098137936135],[114,-19,77,0.12182702180560691],[114,-19,78,0.12371509644749917],[114,-19,79,0.12562428757281863],[114,-18,64,0.10355198229715507],[114,-18,65,0.10315923393288479],[114,-18,66,0.10334705671241767],[114,-18,67,0.10462241184674481],[114,-18,68,0.10593094205741103],[114,-18,69,0.10728832446839717],[114,-18,70,0.1087057838180392],[114,-18,71,0.11019044899778815],[114,-18,72,0.11174578032097415],[114,-18,73,0.1133719866104889],[114,-18,74,0.1150664316018601],[114,-18,75,0.11682402908407719],[114,-18,76,0.11863762615461942],[114,-18,77,0.12049837394444624],[114,-18,78,0.12239608517079921],[114,-18,79,0.124319577898218],[114,-17,64,0.10310134526373708],[114,-17,65,0.10269389676686509],[114,-17,66,0.10223070646206883],[114,-17,67,0.103464033623206],[114,-17,68,0.10473371740595674],[114,-17,69,0.1060554985281481],[114,-17,70,0.107440801178174],[114,-17,71,0.10889703487563163],[114,-17,72,0.11042798043787083],[114,-17,73,0.11203417055980953],[114,-17,74,0.11371326454945857],[114,-17,75,0.11546041667935525],[114,-17,76,0.11726863755668512],[114,-17,77,0.11912914788015715],[114,-17,78,0.12103172393812334],[114,-17,79,0.12296503420853373],[114,-16,64,0.10260560431661858],[114,-16,65,0.10217938589879373],[114,-16,66,0.10165811855287002],[114,-16,67,0.10228962537354624],[114,-16,68,0.10351853757837592],[114,-16,69,0.10480265809967042],[114,-16,70,0.10615348304598721],[114,-16,71,0.10757863370583613],[114,-16,72,0.10908219104878052],[114,-16,73,0.11066503033795497],[114,-16,74,0.11232515545201177],[114,-16,75,0.11405803242480415],[114,-16,76,0.11585692164202858],[114,-16,77,0.11771320808440303],[114,-16,78,0.11961672897613408],[114,-16,79,0.12155609818488179],[114,-15,64,0.10204941534065762],[114,-15,65,0.10160100711617404],[114,-15,66,0.10106277893776934],[114,-15,67,0.10108240431424056],[114,-15,68,0.1022695966924381],[114,-15,69,0.10351510702395303],[114,-15,70,0.1048303541490718],[114,-15,71,0.10622307495503865],[114,-15,72,0.10769759897354762],[114,-15,73,0.10925512915531724],[114,-15,74,0.1108940284818684],[114,-15,75,0.11261011197813056],[114,-15,76,0.11439694360886778],[114,-15,77,0.11624613747693252],[114,-15,78,0.11814766269234309],[114,-15,79,0.12009015124854723],[114,-14,64,0.10142134159573198],[114,-14,65,0.10094792294029648],[114,-14,66,0.10039047533146744],[114,-14,67,0.09982936659618631],[114,-14,68,0.1009746258849216],[114,-14,69,0.10218138936017435],[114,-14,70,0.10346083479286262],[114,-14,71,0.10482069854699247],[114,-14,72,0.10626548348428386],[114,-14,73,0.10779667953748494],[114,-14,74,0.10941299667876497],[114,-14,75,0.11111060990684589],[114,-14,76,0.11288341578465357],[114,-14,77,0.11472329997894343],[114,-14,78,0.11662041518579519],[114,-14,79,0.11856346877238541],[114,-13,64,0.10071323185935328],[114,-13,65,0.10021253546168173],[114,-13,66,0.09963417359556737],[114,-13,67,0.09898313628679882],[114,-13,68,0.09962434437188178],[114,-13,69,0.10079278551412112],[114,-13,70,0.10203679194055938],[114,-13,71,0.10336397034513475],[114,-13,72,0.1047789049983738],[114,-13,73,0.10628331319985473],[114,-13,74,0.10787621996732254],[114,-13,75,0.10955415164889158],[114,-13,76,0.1113113480420468],[114,-13,77,0.1131399925078034],[114,-13,78,0.11503045948240798],[114,-13,79,0.11697157871448009],[114,-12,64,0.07072421354168679],[114,-12,65,0.08376143245039376],[114,-12,66,0.0979675378439051],[114,-12,67,0.09812230422559301],[114,-12,68,0.09821195529983473],[114,-12,69,0.09934284968428393],[114,-12,70,0.10055212725075371],[114,-12,71,0.10184712931247049],[114,-12,72,0.10323241925207462],[114,-12,73,0.10470986932754836],[114,-12,74,0.1062787736933752],[114,-12,75,0.10793598738734748],[114,-12,76,0.10967609092029469],[114,-12,77,0.11149157999618688],[114,-12,78,0.1133730797862254],[114,-12,79,0.11530958308545898],[114,-11,64,0.03612306296194202],[114,-11,65,0.044380147255967194],[114,-11,66,0.05365757471947036],[114,-11,67,0.06394414885026867],[114,-11,68,0.07522491870857455],[114,-11,69,0.08747792384473715],[114,-11,70,0.09900240218140056],[114,-11,71,0.10026586642467643],[114,-11,72,0.10162181700001127],[114,-11,73,0.10307220127894184],[114,-11,74,0.10461652767577008],[114,-11,75,0.10625194782127881],[114,-11,76,0.10797337142816035],[114,-11,77,0.10977361341587634],[114,-11,78,0.1116435727418555],[114,-11,79,0.11357244227116173],[114,-10,64,0.015644362414868433],[114,-10,65,0.020158363622232778],[114,-10,66,0.025494071996142294],[114,-10,67,0.03166545328074552],[114,-10,68,0.03868225074608127],[114,-10,69,0.046547774608922045],[114,-10,70,0.05525475221467329],[114,-10,71,0.06478589644579746],[114,-10,72,0.07511462376600068],[114,-10,73,0.0862058246908887],[114,-10,74,0.09801669145534393],[114,-10,75,0.10449840181652423],[114,-10,76,0.10619932147731798],[114,-10,77,0.10798193072620463],[114,-10,78,0.10983742160682365],[114,-10,79,0.11175522209736809],[114,-9,64,0.010991549085962],[114,-9,65,0.011894572881787982],[114,-9,66,0.012776810944054995],[114,-9,67,0.013638879862822582],[114,-9,68,0.01668775658943366],[114,-9,69,0.021095784953337113],[114,-9,70,0.026200206784704902],[114,-9,71,0.03200532597016968],[114,-9,72,0.03850626560747045],[114,-9,73,0.04568965438717335],[114,-9,74,0.05353435073584712],[114,-9,75,0.06201220616181197],[114,-9,76,0.0710888689558374],[114,-9,77,0.08072462857340562],[114,-9,78,0.09087529975143911],[114,-9,79,0.1014931438109735],[114,-8,64,0.009511947967654382],[114,-8,65,0.01038701656996046],[114,-8,66,0.011249711603753362],[114,-8,67,0.012099852271596578],[114,-8,68,0.012941869422813657],[114,-8,69,0.01378385030366509],[114,-8,70,0.014633317011046166],[114,-8,71,0.015496816609843464],[114,-8,72,0.016466657607061782],[114,-8,73,0.020572362532280793],[114,-8,74,0.025238384152304633],[114,-8,75,0.030454806027669482],[114,-8,76,0.03620500218700143],[114,-8,77,0.04246639677614793],[114,-8,78,0.04921125602449088],[114,-8,79,0.05640751148079996],[114,-7,64,0.00801577670386871],[114,-7,65,0.008863714419660848],[114,-7,66,0.009707642125801188],[114,-7,67,0.010546613246743186],[114,-7,68,0.011383240993325433],[114,-7,69,0.012223811508540959],[114,-7,70,0.013074529683137354],[114,-7,71,0.013941039491219328],[114,-7,72,0.014828084699221264],[114,-7,73,0.015739227676403893],[114,-7,74,0.016676626442976343],[114,-7,75,0.017640869968178093],[114,-7,76,0.01863087160601428],[114,-7,77,0.019643820431764655],[114,-7,78,0.023171163198628286],[114,-7,79,0.02761045363820051],[114,-6,64,0.006506606473281079],[114,-6,65,0.007328479381205092],[114,-6,66,0.008154518875521577],[114,-6,67,0.008983048147191473],[114,-6,68,0.009814854911890753],[114,-6,69,0.010654365584535122],[114,-6,70,0.011506400698720583],[114,-6,71,0.012375631686062776],[114,-6,72,0.01326617391613956],[114,-6,73,0.014181242803303507],[114,-6,74,0.015122873175276946],[114,-6,75,0.016091701962961398],[114,-6,76,0.01708681413493406],[114,-6,77,0.018105651664509396],[114,-6,78,0.019143985182025303],[114,-6,79,0.020195947831917204],[114,-5,64,0.004988108084886713],[114,-5,65,0.005785182724434689],[114,-5,66,0.006594279957845431],[114,-5,67,0.0074130311379243365],[114,-5,68,0.008240421854512393],[114,-5,69,0.009078999084809103],[114,-5,70,0.00993216233330792],[114,-5,71,0.010803563984045136],[114,-5,72,0.01169664047652356],[114,-5,73,0.01261421080471304],[114,-5,74,0.013558142589230746],[114,-5,75,0.014529085826677779],[114,-5,76,0.015526274273904121],[114,-5,77,0.01654739427950563],[114,-5,78,0.017588520730045],[114,-5,79,0.018644119635976914],[114,-4,64,0.0034639154185547283],[114,-4,65,0.004237613980236107],[114,-4,66,0.005030746325885374],[114,-4,67,0.005840292179117098],[114,-4,68,0.006663489405763383],[114,-4,69,0.007501025880278732],[114,-4,70,0.008354875260211878],[114,-4,71,0.009227648771622734],[114,-4,72,0.010122071335451559],[114,-4,73,0.011040528494952344],[114,-4,74,0.011984684445113084],[114,-4,75,0.01295517130959157],[114,-4,76,0.0139513496555641],[114,-4,77,0.014971140082875983],[114,-4,78,0.016010925570881268],[114,-4,79,0.017065524115924175],[114,-3,64,0.0019375488256068406],[114,-3,65,0.0026893997180559904],[114,-3,66,0.0034675399758884954],[114,-3,67,0.004268338707276641],[114,-3,68,0.0050873703120132155],[114,-3,69,0.005923523746873062],[114,-3,70,0.006777374178305418],[114,-3,71,0.007650494595943945],[114,-3,72,0.00854488454985192],[114,-3,73,0.009462472339963574],[114,-3,74,0.010404691004401346],[114,-3,75,0.011372128290324076],[114,-3,76,0.012364250628440578],[114,-3,77,0.013379200971280071],[114,-3,78,0.014413670195647309],[114,-3,79,0.015462841612914282],[114,-2,64,4.1239980521699105E-4],[114,-2,65,0.0011439824449982225],[114,-2,66,0.0019080604682892102],[114,-2,67,0.0027004331871860795],[114,-2,68,0.0035151233790796893],[114,-2,69,0.004349319449811826],[114,-2,70,0.0052022567749093135],[114,-2,71,0.006074497847005106],[114,-2,72,0.006967321927333454],[114,-2,73,0.007882189948009339],[114,-2,74,0.008820285051857852],[114,-2,75,0.009782128987750195],[114,-2,76,0.010767274411205154],[114,-2,77,0.01177407297357702],[114,-2,78,0.012799518918446768],[114,-2,79,0.01383916774236087],[114,-1,64,-0.0011082216936070081],[114,-1,65,-3.9533905102263797E-4],[114,-1,66,3.5552105313864135E-4],[114,-1,67,0.0011396277523607243],[114,-1,68,0.0019495881539342802],[114,-1,69,0.0027810233668542424],[114,-1,70,0.003631916947345943],[114,-1,71,0.004501872342213691],[114,-1,72,0.00539147215258294],[114,-1,73,0.006301713594246618],[114,-1,74,0.0072335205753347965],[114,-1,75,0.008187332639404288],[114,-1,76,0.00916277084999582],[114,-1,77,0.010158380522604179],[114,-1,78,0.01117145054194002],[114,-1,79,0.01219790883785585],[114,0,64,-0.0026209759846139574],[114,0,65,-0.001925306577985078],[114,0,66,-0.0011869543056835608],[114,0,67,-4.111428307138989E-4],[114,0,68,3.9347454816496854E-4],[114,0,69,0.0012211147103455841],[114,0,70,0.002068623223791626],[114,0,71,0.002934717613308748],[114,0,72,0.0038193250297024243],[114,0,73,0.004722996236373026],[114,0,74,0.005646396361630968],[114,0,75,0.006589872690584899],[114,0,76,0.00755309959641659],[114,0,77,0.008534800538847722],[114,0,78,0.009532546887858092],[114,0,79,0.010542633164814928],[114,1,64,-0.004122316267529476],[114,1,65,-0.0034425348465777967],[114,1,66,-0.0027161714822993128],[114,1,67,-0.0019489085693131449],[114,1,68,-0.001150491477135742],[114,1,69,-3.2792169173587253E-4],[114,1,70,5.146432057923634E-4],[114,1,71,0.001375126600257647],[114,1,72,0.002252857448109316],[114,1,73,0.0031479705548753236],[114,1,74,0.004060882993783405],[114,1,75,0.004991846960736751],[114,1,76,0.0059405791866006105],[114,1,77,0.006905966855548639],[114,1,78,0.007885849808418053],[114,1,79,0.008876878644287448],[114,2,64,-0.005608243378659504],[114,2,65,-0.0049432781284014],[114,2,66,-0.004228643782996766],[114,2,67,-0.003470451890679243],[114,2,68,-0.0026793663248643614],[114,2,69,-0.0018634074227007638],[114,2,70,-0.0010275864750701456],[114,2,71,-1.746678394379569E-4],[114,2,72,6.941504484099757E-4],[114,2,73,0.0015786304139530699],[114,2,74,0.0024789627195578],[114,2,75,0.003395310388389513],[114,2,76,0.004327427816134263],[114,2,77,0.005274355039214785],[114,2,78,0.006234187059813396],[114,2,79,0.00720391786385775],[114,3,64,-0.001999828856160374],[114,3,65,-0.0038755945777558605],[114,3,66,-0.005720307898605912],[114,3,67,-0.004972035039725674],[114,3,68,-0.004189729628567884],[114,3,69,-0.003382229075417267],[114,3,70,-0.0025552423784458824],[114,3,71,-0.0017121057269076302],[114,3,72,-8.544616589202634E-4],[114,3,73,1.713426469294809E-5],[114,3,74,9.026797653277845E-4],[114,3,75,0.0018022654559380208],[114,3,76,0.0027156879105757477],[114,3,77,0.003642136181781958],[114,3,78,0.004579951587784439],[114,3,79,0.0055264604300565056],[114,4,64,2.298201378810021E-4],[114,4,65,-3.3607540535388996E-4],[114,4,66,-0.001079674229262894],[114,4,67,-0.002065966251479629],[114,4,68,-0.003353728976299506],[114,4,69,-0.00488053995365159],[114,4,70,-0.004064845586074259],[114,4,71,-0.0032340689450908095],[114,4,72,-0.0023902064862721495],[114,4,73,-0.0015340648674393254],[114,4,74,-6.65792746248927E-4],[114,4,75,2.1465849503269426E-4],[114,4,76,0.0011071452679437303],[114,4,77,0.002011013545334537],[114,4,78,0.0029248517217689094],[114,4,79,0.0038463142528148775],[114,5,64,2.957282719533342E-4],[114,5,65,-2.7426515453907586E-5],[114,5,66,-2.409290741678147E-4],[114,5,67,-4.321995844956439E-4],[114,5,68,-6.81925409942265E-4],[114,5,69,-0.001057124555272303],[114,5,70,-0.0016112424979941396],[114,5,71,-0.0023857026942670436],[114,5,72,-0.0034113850279501854],[114,5,73,-0.003072064048352552],[114,5,74,-0.0022240707921046127],[114,5,75,-0.0013656199872604366],[114,5,76,-4.96759487885396E-4],[114,5,77,3.8203934464241127E-4],[114,5,78,0.0012696290648725873],[114,5,79,0.0021640020163847255],[114,6,64,0.001943892652701287],[114,6,65,7.956127258657286E-4],[114,6,66,7.01234163311604E-5],[114,6,67,-3.42437676966982E-4],[114,6,68,-5.44627234813068E-4],[114,6,69,-6.246708568018969E-4],[114,6,70,-6.565095054717646E-4],[114,6,71,-7.013039268902256E-4],[114,6,72,-8.088720376421486E-4],[114,6,73,-0.0010190566313475595],[114,6,74,-0.0013630186772555977],[114,6,75,-0.0018644518648205726],[114,6,76,-0.002095029162797728],[114,6,77,-0.0012445912154962434],[114,6,78,-3.862597678537114E-4],[114,6,79,4.7832793407097754E-4],[114,7,64,0.008922401794127094],[114,7,65,0.0058806588045083675],[114,7,66,0.003600593629056932],[114,7,67,0.0019499617431990627],[114,7,68,8.04357413239924E-4],[114,7,69,5.433760503820244E-5],[114,7,70,-3.945711036147941E-4],[114,7,71,-6.233299902089565E-4],[114,7,72,-7.007861547928011E-4],[114,7,73,-6.850064798476362E-4],[114,7,74,-6.245420165073111E-4],[114,7,75,-5.59618221792013E-4],[114,7,76,-5.23247127367581E-4],[114,7,77,-5.422580305354557E-4],[114,7,78,-6.382437615209395E-4],[114,7,79,-8.284200433190266E-4],[114,8,64,0.02497437844226862],[114,8,65,0.018973680598516122],[114,8,66,0.014098065777434145],[114,8,67,0.01019361288575971],[114,8,68,0.0071144431675397675],[114,8,69,0.004730052562041417],[114,8,70,0.002925468639091027],[114,8,71,0.0015998842323687705],[114,8,72,6.653217623294949E-4],[114,8,73,4.534355705326699E-5],[114,8,74,-3.261799221185761E-4],[114,8,75,-5.062356999306525E-4],[114,8,76,-5.43761809397019E-4],[114,8,77,-4.8066426293486936E-4],[114,8,78,-3.5275402608733167E-4],[114,8,79,-1.9060128512154843E-4],[114,9,64,0.053807138164823964],[114,9,65,0.043798456538061005],[114,9,66,0.03529652364016152],[114,9,67,0.02812880685738411],[114,9,68,0.02212990370810634],[114,9,69,0.01714940541113476],[114,9,70,0.01305248968361571],[114,9,71,0.009718817480841168],[114,9,72,0.007041372825543412],[114,9,73,0.0049252904071538555],[114,9,74,0.003286702042793441],[114,9,75,0.0020516231215514033],[114,9,76,0.0011548934492446171],[114,9,77,5.391824168605953E-4],[114,9,78,1.540653945066004E-4],[114,9,79,-4.482380230553668E-5],[114,10,64,0.0627730244637321],[114,10,65,0.061668812425038445],[114,10,66,0.06059027216438256],[114,10,67,0.05945035810434893],[114,10,68,0.04956522800696248],[114,10,69,0.04103987185297307],[114,10,70,0.03372253773445124],[114,10,71,0.027475231817236427],[114,10,72,0.022173043177969892],[114,10,73,0.017703309737053415],[114,10,74,0.01396469878599075],[114,10,75,0.010866253790871151],[114,10,76,0.008326443686944962],[114,10,77,0.00627223997293892],[114,10,78,0.00463823925116547],[114,10,79,0.0033658434857367792],[114,11,64,0.060575749137759066],[114,11,65,0.05944834249358324],[114,11,66,0.05834479715389914],[114,11,67,0.05725779312738035],[114,11,68,0.056174959360555235],[114,11,69,0.05508654812929274],[114,11,70,0.053986486826826545],[114,11,71,0.05287169194006882],[114,11,72,0.049776132283727986],[114,11,73,0.042107478481579544],[114,11,74,0.035444353348234266],[114,11,75,0.02968005312680509],[114,11,76,0.024717362860687046],[114,11,77,0.020467854527303285],[114,11,78,0.016851163652389253],[114,11,79,0.01379427467079714],[114,12,64,0.05838400760723248],[114,12,65,0.0572347892535956],[114,12,66,0.0561072466740001],[114,12,67,0.05499443263387814],[114,12,68,0.05388425093635199],[114,12,69,0.052767009211757344],[114,12,70,0.051636669624755625],[114,12,71,0.05049018540043559],[114,12,72,0.04932687888301147],[114,12,73,0.04814787192481546],[114,12,74,0.046955569224628464],[114,12,75,0.04617296257946335],[114,12,76,0.04669590126124086],[114,12,77,0.04684906230804885],[114,12,78,0.04052510156950202],[114,12,79,0.03497921418989289],[114,13,64,0.05620141068816432],[114,13,65,0.0550321474338164],[114,13,66,0.053882051895757364],[114,13,67,0.05274475186823736],[114,13,68,0.05160859174765261],[114,13,69,0.05046401428161946],[114,13,70,0.04930505292424753],[114,13,71,0.04812869951298678],[114,13,72,0.04693430435753236],[114,13,73,0.045723025580834104],[114,13,74,0.044497328323181755],[114,13,75,0.04326053428179481],[114,13,76,0.04334068129088631],[114,13,77,0.04383859581382931],[114,13,78,0.044391550608756374],[114,13,79,0.04499857016318867],[114,14,64,0.05403267812571235],[114,14,65,0.0528454318051535],[114,14,66,0.05167456379809327],[114,14,67,0.050514461524576545],[114,14,68,0.04935406632761805],[114,14,69,0.04818403163153221],[114,14,70,0.04699849115418626],[114,14,71,0.045794467227377296],[114,14,72,0.04457130092196772],[114,14,73,0.04333012773278429],[114,14,74,0.0420733994181766],[114,14,75,0.040804452459768055],[114,14,76,0.039998180426433314],[114,14,77,0.040414250221132715],[114,14,78,0.040883426894547645],[114,14,79,0.04140504505982247],[114,15,64,0.05188670582242074],[114,15,65,0.05068372089952334],[114,15,66,0.049494038838900994],[114,15,67,0.04831296051722662],[114,15,68,0.047130163617373905],[114,15,69,0.04593658258428355],[114,15,70,0.044726475664296945],[114,15,71,0.04349688356076329],[114,15,72,0.04224709799474961],[114,15,73,0.04097817144047664],[114,15,74,0.03969246860600496],[114,15,75,0.038393260111467896],[114,15,76,0.03708435870735833],[114,15,77,0.037008760047618175],[114,15,78,0.03739368558711493],[114,15,79,0.03782895954138505],[114,16,64,0.049779302580086324],[114,16,65,0.04856285754924099],[114,16,66,0.047356256563168546],[114,16,67,0.04615583064624569],[114,16,68,0.044952118596436774],[114,16,69,0.043736412016549694],[114,16,70,0.04250312995986648],[114,16,71,0.041249336215831454],[114,16,72,0.03997425367361973],[114,16,73,0.038678814837567764],[114,16,74,0.03736524903320016],[114,16,75,0.03603670673737587],[114,16,76,0.03469692136817321],[114,16,77,0.033628243580276204],[114,16,78,0.03392756193238065],[114,16,79,0.0342747516963086],[114,17,64,0.04772079944721059],[114,17,65,0.0464931605835474],[114,17,66,0.045271455345414824],[114,17,67,0.044053124341258285],[114,17,68,0.042829677520323475],[114,17,69,0.04159284680860482],[114,17,70,0.04033726203944292],[114,17,71,0.03906003342235507],[114,17,72,0.03776031776378213],[114,17,73,0.036438915277199946],[114,17,74,0.0350978974831738],[114,17,75,0.03374026660941917],[114,17,76,0.03236964681652941],[114,17,77,0.0309900074939163],[114,17,78,0.030487000311977958],[114,17,79,0.030743979321886442],[114,18,64,0.04571418249988361],[114,18,65,0.04447758236506988],[114,18,66,0.04324253765962735],[114,18,67,0.0420076417265811],[114,18,68,0.04076546932243438],[114,18,69,0.03950828039697718],[114,18,70,0.03823097602457362],[114,18,71,0.03693075090545047],[114,18,72,0.035606716237835095],[114,18,73,0.03425954718505425],[114,18,74,0.03289115539463813],[114,18,75,0.031504386952045715],[114,18,76,0.0301027460821146],[114,18,77,0.028690144844488192],[114,18,78,0.027270679003543633],[114,18,79,0.027234730601436555],[114,19,64,0.043756270973464996],[114,19,65,0.042512885999419936],[114,19,66,0.04126623742520896],[114,19,67,0.04001607975791269],[114,19,68,0.0387561284717798],[114,19,69,0.037479261169380024],[114,19,70,0.03618071797176979],[114,19,71,0.03485782724362951],[114,19,72,0.03350968869507024],[114,19,73,0.032136874767005164],[114,19,74,0.030741150709134562],[114,19,75,0.029325213702321284],[114,19,76,0.02789245132359919],[114,19,77,0.026446719600545177],[114,19,78,0.024992140851006782],[114,19,79,0.023742001597499826],[114,20,64,0.04183884597405475],[114,20,65,0.04059077368712095],[114,20,66,0.039334239558802865],[114,20,67,0.03807013507632503],[114,20,68,0.0367933735261107],[114,20,69,0.0354975390639272],[114,20,70,0.03417828296442246],[114,20,71,0.03283312415845862],[114,20,72,0.03146119496538579],[114,20,73,0.03006299860020062],[114,20,74,0.028640178813057193],[114,20,75,0.02719530197917593],[114,20,76,0.025731651920415946],[114,20,77,0.0242530377043635],[114,20,78,0.02276361463177128],[114,20,79,0.021267718587875604],[114,21,64,0.038476592820315285],[114,21,65,0.037595725636755166],[114,21,66,0.03668896921480768],[114,21,67,0.03575653493177401],[114,21,68,0.034804525655165765],[114,21,69,0.03355106922797074],[114,21,70,0.03221178245516653],[114,21,71,0.03084495083395092],[114,21,72,0.0294497900946861],[114,21,73,0.028026775492479974],[114,21,74,0.02657746211419476],[114,21,75,0.025104310961496637],[114,21,76,0.023610521072219247],[114,21,77,0.022099867923452556],[114,21,78,0.020576548340888134],[114,21,79,0.01904503211946042],[114,22,64,0.03499868480531401],[114,22,65,0.03408309656844971],[114,22,66,0.03314986538256526],[114,22,67,0.03219825986815503],[114,22,68,0.031233184968021698],[114,22,69,0.030261754883235948],[114,22,70,0.029289688798659744],[114,22,71,0.02832135657865899],[114,22,72,0.027359899410664433],[114,22,73,0.02601461105428431],[114,22,74,0.02453988785294684],[114,22,75,0.023039682935441425],[114,22,76,0.02151713282819334],[114,22,77,0.019975994426971306],[114,22,78,0.018420514234281513],[114,22,79,0.01685529769137938],[114,23,64,0.031500001873226414],[114,23,65,0.030549838239609425],[114,23,66,0.02959030991517938],[114,23,67,0.028619845575695354],[114,23,68,0.027642152658064852],[114,23,69,0.02666345109247592],[114,23,70,0.025688879237115162],[114,23,71,0.024722469030832785],[114,23,72,0.02376720368696994],[114,23,73,0.022825082899957758],[114,23,74,0.02189719537035088],[114,23,75,0.020983798435009714],[114,23,76,0.019438069528089064],[114,23,77,0.017868766424741108],[114,23,78,0.016283699231370633],[114,23,79,0.014687606601843895],[114,24,64,0.028005662550274816],[114,24,65,0.02702135654741492],[114,24,66,0.026035866128722683],[114,24,67,0.025046902655095783],[114,24,68,0.024056996184127502],[114,24,69,0.02307140949513271],[114,24,70,0.022094635954264894],[114,24,71,0.021130308167017855],[114,24,72,0.020181194644026287],[114,24,73,0.01924921010564471],[114,24,74,0.018335439285038748],[114,24,75,0.017440174054838564],[114,24,76,0.01656296367008442],[114,24,77,0.015702677890559565],[114,24,78,0.014153399503933033],[114,24,79,0.012530147476110445],[114,25,64,0.024541034475779638],[114,25,65,0.023523317245338248],[114,25,66,0.022512367359732704],[114,25,67,0.02150531736388914],[114,25,68,0.020503559130616668],[114,25,69,0.019511347810224917],[114,25,70,0.018532475692301285],[114,25,71,0.017570119550673953],[114,25,72,0.01662677916779177],[114,25,73,0.015704235234041512],[114,25,74,0.014803526536304573],[114,25,75,0.01392494630009648],[114,25,76,0.013068057501957789],[114,25,77,0.012231726923885192],[114,25,78,0.011414177679961366],[114,25,79,0.010370659611890645],[114,26,64,0.021130915719306],[114,26,65,0.020080822945024557],[114,26,66,0.019045094846765212],[114,26,67,0.01802043537653289],[114,26,68,0.01700715543289562],[114,26,69,0.016008466071268636],[114,26,70,0.015027412223671039],[114,26,71,0.014066664939520173],[114,26,72,0.013128405548903857],[114,26,73,0.012214234448975085],[114,26,74,0.011325104481941468],[114,26,75,0.01046127880871662],[114,26,76,0.009622313120249321],[114,26,77,0.008807061969502948],[114,26,78,0.008013708951600673],[114,26,79,0.007239820408316479],[114,27,64,0.01779877454901375],[114,27,65,0.016717647712688837],[114,27,66,0.015658011754860205],[114,27,67,0.014616299707183871],[114,27,68,0.013591815236468323],[114,27,69,0.012586704032211637],[114,27,70,0.011603228555565663],[114,27,71,0.010643512231052765],[114,27,72,0.00970937383342026],[114,27,73,0.008802191172136334],[114,27,74,0.007922794094874251],[114,27,75,0.007071386753648158],[114,27,76,0.0062474990021206345],[114,27,77,0.005449966720735065],[114,27,78,0.004676940798407782],[114,27,79,0.003925924436178992],[114,28,64,0.014566049690648945],[114,28,65,0.013455531277235137],[114,28,66,0.012373055315366742],[114,28,67,0.01131494470261697],[114,28,68,0.010279584212968406],[114,28,69,0.009268048774297322],[114,28,70,0.008281795396859542],[114,28,71,0.007322367042094913],[114,28,72,0.006391182510956277],[114,28,73,0.005489359660054456],[114,28,74,0.00461757201766195],[114,28,75,0.0037759387821382677],[114,28,76,0.002963948098656456],[114,28,77,0.002180413426985896],[114,28,78,0.0014234627342748988],[114,28,79,6.905601729630897E-4],[114,29,64,0.011451513086479539],[114,29,65,0.010313534835785398],[114,29,66,0.0092094890217513],[114,29,67,0.008135747981322704],[114,29,68,0.007089878125401369],[114,29,69,0.006071894203027027],[114,29,70,0.005082437453636269],[114,29,71,0.0041224473462867],[114,29,72,0.003192912803794146],[114,29,73,0.0022946600874202555],[114,29,74,0.0014281774618467036],[114,29,75,5.934766606434324E-4],[114,29,76,-2.100089240259384E-4],[114,29,77,-9.834894963417786E-4],[114,29,78,-0.001728847813282854],[114,29,79,-0.0024486321821045455],[114,30,64,0.00847069708519287],[114,30,65,0.007307460361783626],[114,30,66,0.006183316740893219],[114,30,67,0.005094842114402505],[114,30,68,0.004038894356363517],[114,30,69,0.003014454048192678],[114,30,70,0.0020213490464503],[114,30,71,0.0010599025241831378],[114,30,72,1.3065175546749E-4],[114,30,73,-7.658938371317188E-4],[114,30,74,-0.0016294552084840904],[114,30,75,-0.0024601467341321503],[114,30,76,-0.003258599819102965],[114,30,77,-0.004026047220797576],[114,30,78,-0.004764368329825491],[114,30,79,-0.005476095742361238],[114,31,64,0.005635387890573891],[114,31,65,0.004449335215173576],[114,31,66,0.0033067604930595938],[114,31,67,0.002204587738477309],[114,31,68,0.0011390820096913396],[114,31,69,1.0822987975294998E-4],[114,31,70,-8.889395539391823E-4],[114,31,71,-0.0018527219114916292],[114,31,72,-0.002783044770181477],[114,31,73,-0.003679733779395189],[114,31,74,-0.004542737447476259],[114,31,75,-0.005372310510796566],[114,31,76,-0.006169155905551644],[114,31,77,-0.006934525468714853],[114,31,78,-0.007670279595461854],[114,31,79,-0.008378906175404837],[114,32,64,0.002953186992767428],[114,32,65,0.0017469637481065386],[114,32,66,5.878035473094529E-4],[114,32,67,-5.268903145371542E-4],[114,32,68,-0.001601327907147946],[114,32,69,-0.0026384644477852348],[114,32,70,-0.003640043772201841],[114,32,71,-0.004606972745666968],[114,32,72,-0.005539648157405317],[114,32,73,-0.00643824135392301],[114,32,74,-0.007302940372857823],[114,32,75,-0.008134149456633698],[114,32,76,-0.008932645939242789],[114,32,77,-0.009699694609182151],[114,32,78,-0.010437119756133184],[114,32,79,-0.011147335207597406],[114,33,64,4.271422227280997E-4],[114,33,65,-7.964524844823696E-4],[114,33,66,-0.001970199604796196],[114,33,67,-0.0030961023684616573],[114,33,68,-0.004178730792964565],[114,33,69,-0.005221920587539518],[114,33,70,-0.006228153130229271],[114,33,71,-0.007198929548372249],[114,33,72,-0.008135111222362365],[114,33,73,-0.009037217574320237],[114,33,74,-0.009905680873059132],[114,33,75,-0.010741057906341429],[114,33,76,-0.01154419848740339],[114,33,77,-0.011921360211761687],[114,33,78,-0.010840593039671798],[114,33,79,-0.009788684006128952],[114,34,64,-0.0019445499751634767],[114,34,65,-0.003182624344885484],[114,34,66,-0.004368844877767147],[114,34,67,-0.005504527273948346],[114,34,68,-0.006594493867456799],[114,34,69,-0.007643394431188108],[114,34,70,-0.008654405215134352],[114,34,71,-0.009629596156288634],[114,34,72,-0.010570279593670065],[114,34,73,-0.011477316423251964],[114,34,74,-0.010895436805389812],[114,34,75,-0.009687491479271552],[114,34,76,-0.008504333185736186],[114,34,77,-0.007347753798290545],[114,34,78,-0.006219834069134105],[114,34,79,-0.005122996980824826],[114,35,64,-0.004168769456301698],[114,35,65,-0.00541841299469921],[114,35,66,-0.006614930296887893],[114,35,67,-0.0077588783294802195],[114,35,68,-0.008855237291033064],[114,35,69,-0.009909404466995746],[114,35,70,-0.01092520400838747],[114,35,71,-0.010275362460814074],[114,35,72,-0.008945870786464012],[114,35,73,-0.007638095542204464],[114,35,74,-0.006354026079647429],[114,35,75,-0.005095435385729697],[114,35,76,-0.0038640677474630195],[114,35,77,-0.002661784043516694],[114,35,78,-0.0014906647758650392],[114,35,79,-3.53071059471595E-4],[114,36,64,-0.006257622828711821],[114,36,65,-0.007515994414982604],[114,36,66,-0.008720636192911998],[114,36,67,-0.009871300218266366],[114,36,68,-0.010051808631010694],[114,36,69,-0.008616937059622852],[114,36,70,-0.007194617174118077],[114,36,71,-0.0057896110173325495],[114,36,72,-0.004405551075056185],[114,36,73,-0.003045256151234245],[114,36,74,-0.0017110062180188989],[114,36,75,-4.047759912826338E-4],[114,36,76,8.715729025922488E-4],[114,36,77,0.0021161411904162463],[114,36,78,0.003326882559398109],[114,36,79,0.0045015354174425416],[114,37,64,-0.008228517705254795],[114,37,65,-0.009492948838764321],[114,37,66,-0.00864528003783066],[114,37,67,-0.0071490325220321645],[114,37,68,-0.005650684233036065],[114,37,69,-0.004159015855689923],[114,37,70,-0.002680901999852265],[114,37,71,-0.0012216364608401537],[114,37,72,2.1471174484167138E-4],[114,37,73,0.0016249817891610518],[114,37,74,0.0030066442731716127],[114,37,75,0.004357564569824108],[114,37,76,0.0056758064270281934],[114,37,77,0.006959475878517866],[114,37,78,0.008206605403145195],[114,37,79,0.009415078171551705],[114,38,64,-0.0073772186893304404],[114,38,65,-0.00584401179317113],[114,38,66,-0.004300881541015943],[114,38,67,-0.002748376020395387],[114,38,68,-0.0011938884294517647],[114,38,69,3.5312313184763757E-4],[114,38,70,0.0018851931690814666],[114,38,71,0.0033965393816679716],[114,38,72,0.004882705721853386],[114,38,73,0.006340243714998583],[114,38,74,0.007766432449506604],[114,38,75,0.009159037532181698],[114,38,76,0.010516109193329378],[114,38,77,0.011835819617070618],[114,38,78,0.013116339467023347],[114,38,79,0.014355753477365145],[114,39,64,-0.003112076459095392],[114,39,65,-0.001521356713529084],[114,39,66,7.807356393673026E-5],[114,39,67,0.0016864349484051564],[114,39,68,0.0032962555029104217],[114,39,69,0.004897394509064597],[114,39,70,0.006481807710239994],[114,39,71,0.008043251541000425],[114,39,72,0.009576922704147306],[114,39,73,0.01107913493836757],[114,39,74,0.012547033412574538],[114,39,75,0.013978347071598556],[114,39,76,0.015371179147501494],[114,39,77,0.016723835943050377],[114,39,78,0.018034693889640584],[114,39,79,0.01930210478286629],[114,40,64,0.0011727557986376189],[114,40,65,0.002821908394461169],[114,40,66,0.004478197250912497],[114,40,67,0.006142633792534763],[114,40,68,0.007807656734373648],[114,40,69,0.00946240925315686],[114,40,70,0.0110982528501824],[114,40,71,0.012708484034731326],[114,40,72,0.014287968294347897],[114,40,73,0.015832810238662287],[114,40,74,0.017340060385442255],[114,40,75,0.018807458946712673],[114,40,76,0.02023321686299793],[114,40,77,0.021615834226641022],[114,40,78,0.02295395613157435],[114,40,79,0.024246265888485094],[114,41,64,0.005461274416877577],[114,41,65,0.007170173940147753],[114,41,66,0.008884332677613462],[114,41,67,0.010605587146071157],[114,41,68,0.012326271848265465],[114,41,69,0.014034762975573106],[114,41,70,0.015721793397155542],[114,41,71,0.017380181538160448],[114,41,72,0.019004458237975048],[114,41,73,0.020590528761810747],[114,41,74,0.022135370471224457],[114,41,75,0.0236367665484953],[114,41,76,0.02509307606019251],[114,41,77,0.026503040538457683],[114,41,78,0.02786562715530798],[114,41,79,0.02917990846724281],[114,42,64,0.009736653453819162],[114,42,65,0.011506848834440154],[114,42,66,0.013280198324544353],[114,42,67,0.015059398935431961],[114,42,68,0.016836662621970387],[114,42,69,0.01859953957502569],[114,42,70,0.02033808853346859],[114,42,71,0.022044618357988027],[114,42,72,0.023713306957993684],[114,42,73,0.025339854299364143],[114,42,74,0.02692117003913509],[114,42,75,0.028455096222350044],[114,42,76,0.029940165366602],[114,42,77,0.03137539415300073],[114,42,78,0.032760112839243],[114,42,79,0.03409383041269446],[114,43,64,0.013982508685066616],[114,43,65,0.015815619834681098],[114,43,66,0.017649634436648284],[114,43,67,0.019488137305960666],[114,43,68,0.021323196418797975],[114,43,69,0.023141476263203502],[114,43,70,0.024932311320800385],[114,43,71,0.02668746143935643],[114,43,72,0.02840072272604412],[114,43,73,0.03006757135328556],[114,43,74,0.03168484086643635],[114,43,75,0.03325043347124274],[114,43,76,0.0347630656689468],[114,43,77,0.03622204849994941],[114,43,78,0.037627102553908165],[114,43,79,0.0389782078065783],[114,44,64,0.01818422434801814],[114,44,65,0.02008177242596937],[114,44,66,0.02197790936460118],[114,44,67,0.023877119170850575],[114,44,68,0.025771301236091594],[114,44,69,0.027646179669374743],[114,44,70,0.029490315180665284],[114,44,71,0.03129487580660733],[114,44,72,0.03305324037971969],[114,44,73,0.03476063360614949],[114,44,74,0.03641379338612719],[114,44,75,0.03801067089930104],[114,44,76,0.03947219853735561],[114,44,77,0.04081272110833888],[114,44,78,0.04211213925858436],[114,44,79,0.043370054189923866],[114,45,64,0.022330342459807945],[114,45,65,0.024293573042607545],[114,45,66,0.026253085593465734],[114,45,67,0.028214252148631765],[114,45,68,0.030168775148129507],[114,45,69,0.03208792307163555],[114,45,70,0.03380701512958303],[114,45,71,0.03547671348178413],[114,45,72,0.03710255082104398],[114,45,73,0.03868824830556416],[114,45,74,0.04023605670074557],[114,45,75,0.04174706583239084],[114,45,76,0.04322148192450947],[114,45,77,0.04465887248964887],[114,45,78,0.04605837853237078],[114,45,79,0.0474188939171222],[114,46,64,0.02535227478650659],[114,46,65,0.027487663120108075],[114,46,66,0.029547706448730816],[114,46,67,0.031523547918792034],[114,46,68,0.033421265126392125],[114,46,69,0.03525487806439539],[114,46,70,0.037035428499110915],[114,46,71,0.0387711745346658],[114,46,72,0.04046799876889639],[114,46,73,0.042129787566374824],[114,46,74,0.043758780798684685],[114,46,75,0.04535589149409082],[114,46,76,0.04692099492957389],[114,46,77,0.04845318678851031],[114,46,78,0.04995101009654328],[114,46,79,0.051412650736396566],[114,47,64,0.028246815777059984],[114,47,65,0.03042527012416054],[114,47,66,0.03253141864259049],[114,47,67,0.03455555412466753],[114,47,68,0.036503935785665576],[114,47,69,0.03839152318102796],[114,47,70,0.04023012592989378],[114,47,71,0.042028578016125674],[114,47,72,0.04379314881185046],[114,47,73,0.045527927126442276],[114,47,74,0.047235177606894226],[114,47,75,0.04891566890022633],[114,47,76,0.05056897307278749],[114,47,77,0.05219373586591615],[114,47,78,0.05378791745203947],[114,47,79,0.05534900343996465],[114,48,64,0.031140228194177718],[114,48,65,0.0333585074760325],[114,48,66,0.035507256120908125],[114,48,67,0.03757600285781519],[114,48,68,0.03957122170271964],[114,48,69,0.0415088130560365],[114,48,70,0.0434013700453347],[114,48,71,0.04525833035219416],[114,48,72,0.04708638702595388],[114,48,73,0.04888987446252429],[114,48,74,0.05067112885669847],[114,48,75,0.05243082251251472],[114,48,76,0.05416827147250403],[114,48,77,0.05588171600423166],[114,48,78,0.05756857356119303],[114,48,79,0.059225663915010274],[114,49,64,0.03404613926595003],[114,49,65,0.0363009605380374],[114,49,66,0.03848862994843205],[114,49,67,0.04059801146632234],[114,49,68,0.04263581879814009],[114,49,69,0.04461887172879546],[114,49,70,0.04656054696786362],[114,49,71,0.04847090530427536],[114,49,72,0.05035709861143778],[114,49,73,0.05222375435565878],[114,49,74,0.0540733369071519],[114,49,75,0.05590648501934828],[114,49,76,0.057722324909420385],[114,49,77,0.05951875844221055],[114,49,78,0.06129272599113555],[114,49,79,0.06304044362342466],[114,50,64,0.03697441835953937],[114,50,65,0.039262540576758834],[114,50,66,0.04148538949499561],[114,50,67,0.04363127602754219],[114,50,68,0.04570717051249162],[114,50,69,0.04773076857997341],[114,50,70,0.04971621436438432],[114,50,71,0.05167420094993224],[114,50,72,0.053612369630387194],[114,50,73,0.05553568917066562],[114,50,74,0.05744681436990801],[114,50,75,0.0593464232816762],[114,50,76,0.06123353250401194],[114,50,77,0.06310579001200771],[114,50,78,0.0649597450684406],[114,50,79,0.06679109481441842],[114,51,64,0.03993119913971878],[114,51,65,0.04224949413997229],[114,51,66,0.04450381838003319],[114,51,67,0.04668205209709638],[114,51,68,0.048791431602062785],[114,51,69,0.05085046424776203],[114,51,70,0.052874029347646845],[114,51,71,0.05487345015647509],[114,51,72,0.0568568812863791],[114,51,73,0.05882967874097642],[114,51,74,0.06079475187778262],[114,51,75,0.06275289665416707],[114,51,76,0.06470310955847725],[114,51,77,0.06664288167763223],[114,51,78,0.0685684724058876],[114,51,79,0.07047516235731802],[114,52,64,0.04291894841620923],[114,52,65,0.045264459385821],[114,52,66,0.047546677368011714],[114,52,67,0.04975318233493966],[114,52,68,0.05189147867711273],[114,52,69,0.053980802976478434],[114,52,70,0.05603672223200853],[114,52,71,0.05807117599467775],[114,52,72,0.06009284784704105],[114,52,73,0.0621075221892257],[114,52,74,0.06411842566257249],[114,52,75,0.06612655257600791],[114,52,76,0.06813097373554178],[114,52,77,0.07012912811617511],[114,52,78,0.07211709685863475],[114,52,79,0.07408985912167358],[114,53,64,0.22579735022680164],[114,53,65,0.23701331524331906],[114,53,66,0.24786689153226946],[114,53,67,0.25830160857321566],[114,53,68,0.05500696877117073],[114,53,69,0.057121552688530676],[114,53,70,0.059204117427238356],[114,53,71,0.06126719335718648],[114,53,72,0.06331999944213342],[114,53,73,0.06536878287105247],[114,53,74,0.06741714607163297],[114,53,75,0.06946636049110907],[114,53,76,0.07151566655384543],[114,53,77,0.0735625592329907],[114,53,78,0.07560305870590893],[114,53,79,0.077631965601192],[114,54,64,0.24018676872879033],[114,54,65,0.251420824432942],[114,54,66,0.2622865562010451],[114,54,67,0.27272821710406087],[114,54,68,0.2827866760766938],[114,54,69,0.29255856126395435],[114,54,70,0.3021217456616924],[114,54,71,0.3115357119346936],[114,54,72,0.32084349276146346],[114,54,73,0.33007353412784485],[114,54,74,0.07068824812968762],[114,54,75,0.07276958513791487],[114,54,76,0.07485431116304704],[114,54,77,0.07694008448796374],[114,54,78,0.07902298284252857],[114,54,79,0.08109775446839565],[114,55,64,0.25454956124551054],[114,55,65,0.2657837595371316],[114,55,66,0.2766409770385181],[114,55,67,0.28706690796049833],[114,55,68,0.29710361247456074],[114,55,69,0.30684898352856715],[114,55,70,0.31638243846618963],[114,55,71,0.32576516948656853],[114,55,72,0.3350419733133835],[114,55,73,0.3442430151835131],[114,55,74,0.3533855332889494],[114,55,75,0.36247548675770935],[114,55,76,0.3715091470460824],[114,55,77,0.38047462959597533],[114,55,78,0.38935336001741405],[114,55,79,0.3981214670383873],[114,56,64,0.26882784646675767],[114,56,65,0.28004590206280605],[114,56,66,0.2908759012110418],[114,56,67,0.3012656471412289],[114,56,68,0.3112583152347255],[114,56,69,0.3190645712450908],[114,56,70,0.32571160892835804],[114,56,71,0.3334742969159031],[114,56,72,0.3438121593472976],[114,56,73,0.3570797968946321],[114,56,74,0.3671744448980113],[114,56,75,0.376201562395161],[114,56,76,0.38293147802325167],[114,56,77,0.3887699978135323],[114,56,78,0.3951684144198634],[114,56,79,0.4010664316978838],[114,57,64,0.22495045511233894],[114,57,65,0.23616859973619306],[114,57,66,0.2456546510204596],[114,57,67,0.25280705520221214],[114,57,68,0.25855955298377387],[114,57,69,0.2650907477156512],[114,57,70,0.27181342015400595],[114,57,71,0.27941238867350165],[114,57,72,0.2888482747472994],[114,57,73,0.3013690253345941],[114,57,74,0.31384462115660805],[114,57,75,0.32328820167518096],[114,57,76,0.32940003709743326],[114,57,77,0.33483636906241726],[114,57,78,0.341542240774187],[114,57,79,0.34804843142651193],[114,58,64,0.1791773057306436],[114,58,65,0.18998985165488208],[114,58,66,0.19964417110758373],[114,58,67,0.2067485115353271],[114,58,68,0.21294064066208743],[114,58,69,0.21939205242840026],[114,58,70,0.22569303546105343],[114,58,71,0.23392890306484307],[114,58,72,0.24434397165554433],[114,58,73,0.25629652305657474],[114,58,74,0.268845657568743],[114,58,75,0.2779587937268963],[114,58,76,0.28502873231875264],[114,58,77,0.2899783127714653],[114,58,78,0.2974598659535637],[114,58,79,0.30456477353800143],[114,59,64,0.11882455241073997],[114,59,65,0.1299347819897917],[114,59,66,0.14006630890854244],[114,59,67,0.14761994256650635],[114,59,68,0.15290863715788164],[114,59,69,0.16009617077983804],[114,59,70,0.16690448858231252],[114,59,71,0.17510882315282672],[114,59,72,0.18612825092142873],[114,59,73,0.19905578877966632],[114,59,74,0.21223637949786886],[114,59,75,0.2214753393063416],[114,59,76,0.2285261136242657],[114,59,77,0.2339321191762149],[114,59,78,0.24172167330655905],[114,59,79,0.2496178909259665],[114,60,64,0.057307692379898946],[114,60,65,0.06910567766242258],[114,60,66,0.07909878599088975],[114,60,67,0.08623576047616284],[114,60,68,0.09103769264897049],[114,60,69,0.09804235777628904],[114,60,70,0.10529675531043547],[114,60,71,0.1139547775887015],[114,60,72,0.1261191394093652],[114,60,73,0.14010740375816022],[114,60,74,0.15323465023530602],[114,60,75,0.16265382757228355],[114,60,76,0.16925623904299336],[114,60,77,0.17549061436473037],[114,60,78,0.18332554140165572],[114,60,79,0.19240970036581923],[114,61,64,0.02547222144992851],[114,61,65,0.026916264724319648],[114,61,66,0.026863210815282264],[114,61,67,0.025673475136274715],[114,61,68,0.02584896726904438],[114,61,69,0.032796253199395914],[114,61,70,0.041209454410166366],[114,61,71,0.05183385295515656],[114,61,72,0.06555593383573002],[114,61,73,0.0823459934576761],[114,61,74,0.09586753914503798],[114,61,75,0.10544228638437866],[114,61,76,0.11131873081498952],[114,61,77,0.118582533847099],[114,61,78,0.12691001704006374],[114,61,79,0.13710986999113572],[114,62,64,0.010030044580679288],[114,62,65,0.010244953302805317],[114,62,66,0.010289173030895672],[114,62,67,0.008767218981570948],[114,62,68,0.009235127658718171],[114,62,69,0.010378670323687634],[114,62,70,0.01340761477432035],[114,62,71,0.016217256261495283],[114,62,72,0.019709469107478457],[114,62,73,0.023850838260956693],[114,62,74,0.03699492377620314],[114,62,75,0.046339798137737184],[114,62,76,0.05174374011691514],[114,62,77,0.05860262443124707],[114,62,78,0.06710365407566764],[114,62,79,0.07769190357206693],[114,63,64,-0.029358110348100618],[114,63,65,-0.029090226207562724],[114,63,66,-0.030134427378896204],[114,63,67,-0.030976289304818144],[114,63,68,-0.029955644996792142],[114,63,69,-0.028941144542856158],[114,63,70,-0.025424825949538477],[114,63,71,-0.02204367865553782],[114,63,72,-0.018806505310631414],[114,63,73,-0.014624888232571956],[114,63,74,-0.01126791470954864],[114,63,75,-0.009566362504062367],[114,63,76,-0.008784883174993216],[114,63,77,-0.00573185782072773],[114,63,78,-0.0028234688248284364],[114,63,79,7.196920450343453E-5],[114,64,64,-0.041644044373640984],[114,64,65,-0.041867705316724686],[114,64,66,-0.04293059369486903],[114,64,67,-0.043835806319529665],[114,64,68,-0.043882571982307175],[114,64,69,-0.04229342803267981],[114,64,70,-0.037988118866690145],[114,64,71,-0.034768879853366685],[114,64,72,-0.030629822619213088],[114,64,73,-0.026846943426478365],[114,64,74,-0.02368270250411387],[114,64,75,-0.0221813801723989],[114,64,76,-0.020902215678277797],[114,64,77,-0.018032608433823094],[114,64,78,-0.014886073351524838],[114,64,79,-0.012966204047667322],[114,65,64,-0.05825331364738822],[114,65,65,-0.0584332090136819],[114,65,66,-0.05931222297294543],[114,65,67,-0.05983649607816968],[114,65,68,-0.06033918551514528],[114,65,69,-0.05901567911789603],[114,65,70,-0.054659950381337225],[114,65,71,-0.050719654518229365],[114,65,72,-0.04669026003169019],[114,65,73,-0.04275407053227621],[114,65,74,-0.03904605855945941],[114,65,75,-0.03715760040798078],[114,65,76,-0.03591597160216838],[114,65,77,-0.03364031543731076],[114,65,78,-0.03092260003779808],[114,65,79,-0.028698026757907426],[114,66,64,-0.0770119163607557],[114,66,65,-0.0768529904218137],[114,66,66,-0.07720867150859917],[114,66,67,-0.07702940416172556],[114,66,68,-0.07848230972155763],[114,66,69,-0.07675979907027855],[114,66,70,-0.07306267334289591],[114,66,71,-0.06850211078450114],[114,66,72,-0.06378128259085254],[114,66,73,-0.0598840220892317],[114,66,74,-0.05533049653356268],[114,66,75,-0.05394238191388469],[114,66,76,-0.05344114119577867],[114,66,77,-0.0516647656484756],[114,66,78,-0.04857910936907491],[114,66,79,-0.04651675406212835],[114,67,64,-0.09327897788737302],[114,67,65,-0.09318581351347825],[114,67,66,-0.09361448051171575],[114,67,67,-0.09303372482501142],[114,67,68,-0.09334121838520147],[114,67,69,-0.092247584509908],[114,67,70,-0.08912875672992271],[114,67,71,-0.08415413009917745],[114,67,72,-0.07882764966963166],[114,67,73,-0.07495725631714611],[114,67,74,-0.07157499999338272],[114,67,75,-0.07024004858480634],[114,67,76,-0.06993931779592237],[114,67,77,-0.06811813726551905],[114,67,78,-0.06530358681539532],[114,67,79,-0.0631542284157173],[114,68,64,-0.13681461106053136],[114,68,65,-0.13750183661045726],[114,68,66,-0.13799238962760044],[114,68,67,-0.13660032699000563],[114,68,68,-0.1356379747234399],[114,68,69,-0.1346195828652319],[114,68,70,-0.1319584222479236],[114,68,71,-0.1274789235081368],[114,68,72,-0.12160928908092969],[114,68,73,-0.11835927223994291],[114,68,74,-0.11487710543151347],[114,68,75,-0.11370377049402662],[114,68,76,-0.11314427588480674],[114,68,77,-0.1124111736093517],[114,68,78,-0.11006021100486083],[114,68,79,-0.10736101781037452],[114,69,64,-0.15330536007108725],[114,69,65,-0.15427414779238588],[114,69,66,-0.15500638659026103],[114,69,67,-0.1535230842939657],[114,69,68,-0.1508559274935057],[114,69,69,-0.14891973746400827],[114,69,70,-0.14530677547624224],[114,69,71,-0.1399074829215091],[114,69,72,-0.1335149010145779],[114,69,73,-0.12875290967780598],[114,69,74,-0.1257422574460844],[114,69,75,-0.1245341038472062],[114,69,76,-0.12420552833510783],[114,69,77,-0.1265157619852288],[114,69,78,-0.12570486544789625],[114,69,79,-0.12314179223770828],[114,70,64,-0.16895341841444494],[114,70,65,-0.17025941328637503],[114,70,66,-0.1706434222255286],[114,70,67,-0.16882944515857998],[114,70,68,-0.1665047863173534],[114,70,69,-0.1642120542177683],[114,70,70,-0.1602740484875114],[114,70,71,-0.15549835226342723],[114,70,72,-0.14933109050258625],[114,70,73,-0.1447090108403013],[114,70,74,-0.1413493466843981],[114,70,75,-0.13999448875247142],[114,70,76,-0.1396791418066702],[114,70,77,-0.142017843213966],[114,70,78,-0.14107925432577467],[114,70,79,-0.13760892832191868],[114,71,64,-0.18176457322476514],[114,71,65,-0.1831335673262591],[114,71,66,-0.18252156904812467],[114,71,67,-0.1809468249108289],[114,71,68,-0.17825439498972848],[114,71,69,-0.17574529000399275],[114,71,70,-0.1718007978559939],[114,71,71,-0.1671091709081537],[114,71,72,-0.16153990960482176],[114,71,73,-0.15691727389105195],[114,71,74,-0.15395025341628898],[114,71,75,-0.15335491870473417],[114,71,76,-0.15298865882169152],[114,71,77,-0.15381333318209597],[114,71,78,-0.15360854286137293],[114,71,79,-0.15031996902163644],[114,72,64,-0.19802672399837754],[114,72,65,-0.19975577975277514],[114,72,66,-0.19774801747324633],[114,72,67,-0.19539050016626835],[114,72,68,-0.1928600150181907],[114,72,69,-0.1908709459116195],[114,72,70,-0.1873293724847908],[114,72,71,-0.18218629833872002],[114,72,72,-0.1772808176360265],[114,72,73,-0.1724820325147162],[114,72,74,-0.16937437165450925],[114,72,75,-0.16851940534009735],[114,72,76,-0.16836509082177895],[114,72,77,-0.1694028785828746],[114,72,78,-0.16929869314630402],[114,72,79,-0.16632058460747107],[114,73,64,-0.21666920547484717],[114,73,65,-0.21547741043754048],[114,73,66,-0.21160276018454505],[114,73,67,-0.2082662037323866],[114,73,68,-0.2049878730224499],[114,73,69,-0.2026940943222927],[114,73,70,-0.20046129979068872],[114,73,71,-0.19668937062168318],[114,73,72,-0.19381146041070102],[114,73,73,-0.19141789055116717],[114,73,74,-0.18799809141350685],[114,73,75,-0.18621121405025579],[114,73,76,-0.18724023047461127],[114,73,77,-0.18724960747404534],[114,73,78,-0.1863311148558666],[114,73,79,-0.1828495624136628],[114,74,64,-0.23349024827614726],[114,74,65,-0.23142739245931623],[114,74,66,-0.22780551643040722],[114,74,67,-0.22514612918096757],[114,74,68,-0.2225194486191344],[114,74,69,-0.2188459229924663],[114,74,70,-0.21684802588287344],[114,74,71,-0.21356636620111738],[114,74,72,-0.21063746962766586],[114,74,73,-0.20820571499575885],[114,74,74,-0.2051866090756428],[114,74,75,-0.20372055919766682],[114,74,76,-0.2049768905553389],[114,74,77,-0.20487875501858357],[114,74,78,-0.20348116401856195],[114,74,79,-0.19987784951381057],[114,75,64,-0.24788438310735394],[114,75,65,-0.24577956305185275],[114,75,66,-0.24278100830758423],[114,75,67,-0.24054207190938903],[114,75,68,-0.23769876920881838],[114,75,69,-0.23322059425112657],[114,75,70,-0.23028082510808748],[114,75,71,-0.22804089458198373],[114,75,72,-0.225990508939983],[114,75,73,-0.22334908820636085],[114,75,74,-0.2213644199390962],[114,75,75,-0.21974734245483615],[114,75,76,-0.22033895040543913],[114,75,77,-0.22081074871409345],[114,75,78,-0.21899868262198025],[114,75,79,-0.21553751432061166],[114,76,64,-0.2606644931567211],[114,76,65,-0.2585072553378282],[114,76,66,-0.2554913907637336],[114,76,67,-0.2537373197243832],[114,76,68,-0.2507441529443895],[114,76,69,-0.24679481512126797],[114,76,70,-0.24418304949206956],[114,76,71,-0.24177498646990397],[114,76,72,-0.23984347172833836],[114,76,73,-0.2376726484198782],[114,76,74,-0.23490982915132036],[114,76,75,-0.23409130318177923],[114,76,76,-0.23434943262384744],[114,76,77,-0.23527805619610298],[114,76,78,-0.23427413130235855],[114,76,79,-0.2307867869219806],[114,77,64,-0.2750844137116231],[114,77,65,-0.2722687608097218],[114,77,66,-0.26990723435722985],[114,77,67,-0.268505584099812],[114,77,68,-0.2660086961370146],[114,77,69,-0.26258192913194695],[114,77,70,-0.2603636715852536],[114,77,71,-0.2583574524706762],[114,77,72,-0.25649351992402514],[114,77,73,-0.25406793742901407],[114,77,74,-0.25136187183276554],[114,77,75,-0.25129646975818853],[114,77,76,-0.25148311121630673],[114,77,77,-0.25179332430431844],[114,77,78,-0.25133921202696213],[114,77,79,-0.24773972656614573],[114,78,64,-0.2894658216622486],[114,78,65,-0.28657594683817683],[114,78,66,-0.2840776067461806],[114,78,67,-0.28284477912562767],[114,78,68,-0.2801361312348908],[114,78,69,-0.27749920874165823],[114,78,70,-0.2746982581676959],[114,78,71,-0.2729143666249896],[114,78,72,-0.27128550138146923],[114,78,73,-0.26890919107903305],[114,78,74,-0.2665603537655133],[114,78,75,-0.2664432312616636],[114,78,76,-0.26690850206149747],[114,78,77,-0.2670004712862338],[114,78,78,-0.26731706745869666],[114,78,79,-0.2639756758992023],[114,79,64,-0.29961546013662343],[114,79,65,-0.2977700002501237],[114,79,66,-0.2953934094979485],[114,79,67,-0.2935962366777648],[114,79,68,-0.2919195622470048],[114,79,69,-0.2894305296803073],[114,79,70,-0.2860783800665166],[114,79,71,-0.28446350096191697],[114,79,72,-0.2828880179930872],[114,79,73,-0.2805230752070601],[114,79,74,-0.2785116560867893],[114,79,75,-0.27739522006762696],[114,79,76,-0.2786428138555169],[114,79,77,-0.2797167413525312],[114,79,78,-0.279798060240225],[114,79,79,-0.2765792300009578],[114,80,64,-0.3135251519473628],[114,80,65,-0.31126404739078034],[114,80,66,-0.3092766951165722],[114,80,67,-0.3074881064115674],[114,80,68,-0.3063751991759311],[114,80,69,-0.30401269086752386],[114,80,70,-0.3004342091280733],[114,80,71,-0.2990921262491211],[114,80,72,-0.29703745590700253],[114,80,73,-0.29427240769790974],[114,80,74,-0.2920638815250855],[114,80,75,-0.29178741554738963],[114,80,76,-0.293428420521053],[114,80,77,-0.29463129455966625],[114,80,78,-0.2949507274155682],[114,80,79,-0.2917256794776732],[114,81,64,-0.32650777904033274],[114,81,65,-0.32465461831927167],[114,81,66,-0.32201532090701945],[114,81,67,-0.3196803549143027],[114,81,68,-0.3193584938884625],[114,81,69,-0.316624155225067],[114,81,70,-0.31313252380733736],[114,81,71,-0.3114129730475417],[114,81,72,-0.3083991431493324],[114,81,73,-0.3049216199692768],[114,81,74,-0.30337814625933723],[114,81,75,-0.3033499562859308],[114,81,76,-0.30580813599127477],[114,81,77,-0.3084705861588275],[114,81,78,-0.3102292767964578],[114,81,79,-0.3083428930243377],[114,82,64,-0.34264130761649797],[114,82,65,-0.34034775431409847],[114,82,66,-0.33751274681129506],[114,82,67,-0.33508783814470744],[114,82,68,-0.33420832795383965],[114,82,69,-0.33226547346720753],[114,82,70,-0.3297465349475185],[114,82,71,-0.32779796991615345],[114,82,72,-0.3240725990009546],[114,82,73,-0.32096924932374193],[114,82,74,-0.3192856044654242],[114,82,75,-0.31874403369077003],[114,82,76,-0.32159042463953075],[114,82,77,-0.32464454318183367],[114,82,78,-0.32543248597197005],[114,82,79,-0.3250046281605348],[114,83,64,-0.3562578975183947],[114,83,65,-0.3531810573682496],[114,83,66,-0.35137552478548184],[114,83,67,-0.349041331772997],[114,83,68,-0.3476883125262776],[114,83,69,-0.3463860668495516],[114,83,70,-0.3446260505395995],[114,83,71,-0.342791567703023],[114,83,72,-0.3388482953531459],[114,83,73,-0.33519227266446977],[114,83,74,-0.3333602721513298],[114,83,75,-0.3329399415095926],[114,83,76,-0.3360443740768717],[114,83,77,-0.339127680745834],[114,83,78,-0.34022638185819204],[114,83,79,-0.3393896777361405],[114,84,64,-0.3685150620967091],[114,84,65,-0.365346203091187],[114,84,66,-0.3636992052355686],[114,84,67,-0.36141612709760274],[114,84,68,-0.3605443470827883],[114,84,69,-0.35964685344478414],[114,84,70,-0.35827480527506606],[114,84,71,-0.3568753318496889],[114,84,72,-0.35251015151298565],[114,84,73,-0.3492614134418043],[114,84,74,-0.3469014842865745],[114,84,75,-0.34729227509704463],[114,84,76,-0.3499745643666134],[114,84,77,-0.35280910977979535],[114,84,78,-0.3542004516908605],[114,84,79,-0.35300143606831447],[114,85,64,-0.38294582282382905],[114,85,65,-0.3814067419036913],[114,85,66,-0.38020588304271424],[114,85,67,-0.378707307476297],[114,85,68,-0.37796457630638675],[114,85,69,-0.3761743258424068],[114,85,70,-0.37581791271453413],[114,85,71,-0.37419717349318204],[114,85,72,-0.3708793849020895],[114,85,73,-0.3674668855392917],[114,85,74,-0.365839200057654],[114,85,75,-0.36620809567728296],[114,85,76,-0.3675510675670281],[114,85,77,-0.36888892443880833],[114,85,78,-0.367854225361221],[114,85,79,-0.36493391198280073],[114,86,64,-0.39596560300508504],[114,86,65,-0.39466262611908964],[114,86,66,-0.3935798348956373],[114,86,67,-0.391608666941129],[114,86,68,-0.39032798237316657],[114,86,69,-0.3888369599643075],[114,86,70,-0.388301885096681],[114,86,71,-0.3870070439529278],[114,86,72,-0.38401576806502596],[114,86,73,-0.38177123876400776],[114,86,74,-0.38051885825835785],[114,86,75,-0.3806344804206177],[114,86,76,-0.3810992952936347],[114,86,77,-0.38193050718053795],[114,86,78,-0.3816608080804683],[114,86,79,-0.3787905775119917],[114,87,64,-0.4064715193955128],[114,87,65,-0.4052735117656433],[114,87,66,-0.4042159430429569],[114,87,67,-0.40210685096884874],[114,87,68,-0.40045690575909704],[114,87,69,-0.3988155747087951],[114,87,70,-0.3981304823838775],[114,87,71,-0.396791557924679],[114,87,72,-0.3948436041700663],[114,87,73,-0.39292818548813196],[114,87,74,-0.39130497600935515],[114,87,75,-0.39159549916988756],[114,87,76,-0.3922514200136201],[114,87,77,-0.39316009993340134],[114,87,78,-0.39269727345537786],[114,87,79,-0.3904155235150755],[114,88,64,-0.4197934753346061],[114,88,65,-0.4176628322862733],[114,88,66,-0.4170841268405525],[114,88,67,-0.4151219785692245],[114,88,68,-0.4135323021974853],[114,88,69,-0.41129039828308905],[114,88,70,-0.4114244130004921],[114,88,71,-0.40948055306673325],[114,88,72,-0.4077588286380856],[114,88,73,-0.4050836700108287],[114,88,74,-0.40348778729107565],[114,88,75,-0.40441388380423127],[114,88,76,-0.4060005379914979],[114,88,77,-0.4059934801603683],[114,88,78,-0.40578227803845446],[114,88,79,-0.4028532742771916],[114,89,64,-0.4322362390253306],[114,89,65,-0.4301965993413815],[114,89,66,-0.4288079493363882],[114,89,67,-0.42718507993459376],[114,89,68,-0.426256622741562],[114,89,69,-0.4241425328683665],[114,89,70,-0.42385342627258776],[114,89,71,-0.42271865743093545],[114,89,72,-0.4203065170527141],[114,89,73,-0.4174020047183913],[114,89,74,-0.41662559046523],[114,89,75,-0.41723452724944315],[114,89,76,-0.41874196021575805],[114,89,77,-0.4182956071240293],[114,89,78,-0.4185124003252089],[114,89,79,-0.4159715042168029],[114,90,64,-0.44586586088297003],[114,90,65,-0.44382928403249056],[114,90,66,-0.4421271544167634],[114,90,67,-0.44019515363737344],[114,90,68,-0.43964027057761507],[114,90,69,-0.4383882700206476],[114,90,70,-0.437732866814749],[114,90,71,-0.43646488007093287],[114,90,72,-0.4339634395811363],[114,90,73,-0.43095652488643466],[114,90,74,-0.43044731730773356],[114,90,75,-0.430453246125355],[114,90,76,-0.4315751985398254],[114,90,77,-0.4321235158376459],[114,90,78,-0.4323517830458285],[114,90,79,-0.4301886650577452],[114,91,64,-0.457639894336722],[114,91,65,-0.4563681808346632],[114,91,66,-0.4534714213540788],[114,91,67,-0.4518131561001387],[114,91,68,-0.4511442595378953],[114,91,69,-0.4507403581218138],[114,91,70,-0.4501401534425338],[114,91,71,-0.4488410127871133],[114,91,72,-0.445848840235501],[114,91,73,-0.44339422584089555],[114,91,74,-0.4417101786835877],[114,91,75,-0.4414721337547556],[114,91,76,-0.44338511195625646],[114,91,77,-0.4446434078156647],[114,91,78,-0.4447696007434858],[114,91,79,-0.4428353836220921],[114,92,64,-0.4583333333333333],[114,92,65,-0.4583333333333333],[114,92,66,-0.4583333333333333],[114,92,67,-0.4583333333333333],[114,92,68,-0.4583333333333333],[114,92,69,-0.4583333333333333],[114,92,70,-0.4583333333333333],[114,92,71,-0.45801689686347574],[114,92,72,-0.45531600552496004],[114,92,73,-0.4525484302998049],[114,92,74,-0.4500641036889845],[114,92,75,-0.4502866501960197],[114,92,76,-0.4521196151298553],[114,92,77,-0.45331233892674094],[114,92,78,-0.4541149417776581],[114,92,79,-0.4521432824850405],[114,93,64,-0.4583333333333333],[114,93,65,-0.4583333333333333],[114,93,66,-0.4583333333333333],[114,93,67,-0.4583333333333333],[114,93,68,-0.4583333333333333],[114,93,69,-0.4583333333333333],[114,93,70,-0.4583333333333333],[114,93,71,-0.4583333333333333],[114,93,72,-0.4583333333333333],[114,93,73,-0.4583333333333333],[114,93,74,-0.4583333333333333],[114,93,75,-0.4583333333333333],[114,93,76,-0.4583333333333333],[114,93,77,-0.4583333333333333],[114,93,78,-0.4583333333333333],[114,93,79,-0.4583333333333333],[114,94,64,-0.4583333333333333],[114,94,65,-0.4583333333333333],[114,94,66,-0.4583333333333333],[114,94,67,-0.4583333333333333],[114,94,68,-0.4583333333333333],[114,94,69,-0.4583333333333333],[114,94,70,-0.4583333333333333],[114,94,71,-0.4583333333333333],[114,94,72,-0.4583333333333333],[114,94,73,-0.4583333333333333],[114,94,74,-0.4583333333333333],[114,94,75,-0.4583333333333333],[114,94,76,-0.4583333333333333],[114,94,77,-0.4583333333333333],[114,94,78,-0.4583333333333333],[114,94,79,-0.4583333333333333],[114,95,64,-0.4583333333333333],[114,95,65,-0.4583333333333333],[114,95,66,-0.4583333333333333],[114,95,67,-0.4583333333333333],[114,95,68,-0.4583333333333333],[114,95,69,-0.4583333333333333],[114,95,70,-0.4583333333333333],[114,95,71,-0.4583333333333333],[114,95,72,-0.4583333333333333],[114,95,73,-0.4583333333333333],[114,95,74,-0.4583333333333333],[114,95,75,-0.4583333333333333],[114,95,76,-0.4583333333333333],[114,95,77,-0.4583333333333333],[114,95,78,-0.4583333333333333],[114,95,79,-0.4583333333333333],[114,96,64,-0.4583333333333333],[114,96,65,-0.4583333333333333],[114,96,66,-0.4583333333333333],[114,96,67,-0.4583333333333333],[114,96,68,-0.4583333333333333],[114,96,69,-0.4583333333333333],[114,96,70,-0.4583333333333333],[114,96,71,-0.4583333333333333],[114,96,72,-0.4583333333333333],[114,96,73,-0.4583333333333333],[114,96,74,-0.4583333333333333],[114,96,75,-0.4583333333333333],[114,96,76,-0.4583333333333333],[114,96,77,-0.4583333333333333],[114,96,78,-0.4583333333333333],[114,96,79,-0.4583333333333333],[114,97,64,-0.4583333333333333],[114,97,65,-0.4583333333333333],[114,97,66,-0.4583333333333333],[114,97,67,-0.4583333333333333],[114,97,68,-0.4583333333333333],[114,97,69,-0.4583333333333333],[114,97,70,-0.4583333333333333],[114,97,71,-0.4583333333333333],[114,97,72,-0.4583333333333333],[114,97,73,-0.4583333333333333],[114,97,74,-0.4583333333333333],[114,97,75,-0.4583333333333333],[114,97,76,-0.4583333333333333],[114,97,77,-0.4583333333333333],[114,97,78,-0.4583333333333333],[114,97,79,-0.4583333333333333],[114,98,64,-0.4583333333333333],[114,98,65,-0.4583333333333333],[114,98,66,-0.4583333333333333],[114,98,67,-0.4583333333333333],[114,98,68,-0.4583333333333333],[114,98,69,-0.4583333333333333],[114,98,70,-0.4583333333333333],[114,98,71,-0.4583333333333333],[114,98,72,-0.4583333333333333],[114,98,73,-0.4583333333333333],[114,98,74,-0.4583333333333333],[114,98,75,-0.4583333333333333],[114,98,76,-0.4583333333333333],[114,98,77,-0.4583333333333333],[114,98,78,-0.4583333333333333],[114,98,79,-0.4583333333333333],[114,99,64,-0.4583333333333333],[114,99,65,-0.4583333333333333],[114,99,66,-0.4583333333333333],[114,99,67,-0.4583333333333333],[114,99,68,-0.4583333333333333],[114,99,69,-0.4583333333333333],[114,99,70,-0.4583333333333333],[114,99,71,-0.4583333333333333],[114,99,72,-0.4583333333333333],[114,99,73,-0.4583333333333333],[114,99,74,-0.4583333333333333],[114,99,75,-0.4583333333333333],[114,99,76,-0.4583333333333333],[114,99,77,-0.4583333333333333],[114,99,78,-0.4583333333333333],[114,99,79,-0.4583333333333333],[114,100,64,-0.4583333333333333],[114,100,65,-0.4583333333333333],[114,100,66,-0.4583333333333333],[114,100,67,-0.4583333333333333],[114,100,68,-0.4583333333333333],[114,100,69,-0.4583333333333333],[114,100,70,-0.4583333333333333],[114,100,71,-0.4583333333333333],[114,100,72,-0.4583333333333333],[114,100,73,-0.4583333333333333],[114,100,74,-0.4583333333333333],[114,100,75,-0.4583333333333333],[114,100,76,-0.4583333333333333],[114,100,77,-0.4583333333333333],[114,100,78,-0.4583333333333333],[114,100,79,-0.4583333333333333],[114,101,64,-0.4583333333333333],[114,101,65,-0.4583333333333333],[114,101,66,-0.4583333333333333],[114,101,67,-0.4583333333333333],[114,101,68,-0.4583333333333333],[114,101,69,-0.4583333333333333],[114,101,70,-0.4583333333333333],[114,101,71,-0.4583333333333333],[114,101,72,-0.4583333333333333],[114,101,73,-0.4583333333333333],[114,101,74,-0.4583333333333333],[114,101,75,-0.4583333333333333],[114,101,76,-0.4583333333333333],[114,101,77,-0.4583333333333333],[114,101,78,-0.4583333333333333],[114,101,79,-0.4583333333333333],[114,102,64,-0.4583333333333333],[114,102,65,-0.4583333333333333],[114,102,66,-0.4583333333333333],[114,102,67,-0.4583333333333333],[114,102,68,-0.4583333333333333],[114,102,69,-0.4583333333333333],[114,102,70,-0.4583333333333333],[114,102,71,-0.4583333333333333],[114,102,72,-0.4583333333333333],[114,102,73,-0.4583333333333333],[114,102,74,-0.4583333333333333],[114,102,75,-0.4583333333333333],[114,102,76,-0.4583333333333333],[114,102,77,-0.4583333333333333],[114,102,78,-0.4583333333333333],[114,102,79,-0.4583333333333333],[114,103,64,-0.4583333333333333],[114,103,65,-0.4583333333333333],[114,103,66,-0.4583333333333333],[114,103,67,-0.4583333333333333],[114,103,68,-0.4583333333333333],[114,103,69,-0.4583333333333333],[114,103,70,-0.4583333333333333],[114,103,71,-0.4583333333333333],[114,103,72,-0.4583333333333333],[114,103,73,-0.4583333333333333],[114,103,74,-0.4583333333333333],[114,103,75,-0.4583333333333333],[114,103,76,-0.4583333333333333],[114,103,77,-0.4583333333333333],[114,103,78,-0.4583333333333333],[114,103,79,-0.4583333333333333],[114,104,64,-0.4583333333333333],[114,104,65,-0.4583333333333333],[114,104,66,-0.4583333333333333],[114,104,67,-0.4583333333333333],[114,104,68,-0.4583333333333333],[114,104,69,-0.4583333333333333],[114,104,70,-0.4583333333333333],[114,104,71,-0.4583333333333333],[114,104,72,-0.4583333333333333],[114,104,73,-0.4583333333333333],[114,104,74,-0.4583333333333333],[114,104,75,-0.4583333333333333],[114,104,76,-0.4583333333333333],[114,104,77,-0.4583333333333333],[114,104,78,-0.4583333333333333],[114,104,79,-0.4583333333333333],[114,105,64,-0.4583333333333333],[114,105,65,-0.4583333333333333],[114,105,66,-0.4583333333333333],[114,105,67,-0.4583333333333333],[114,105,68,-0.4583333333333333],[114,105,69,-0.4583333333333333],[114,105,70,-0.4583333333333333],[114,105,71,-0.4583333333333333],[114,105,72,-0.4583333333333333],[114,105,73,-0.4583333333333333],[114,105,74,-0.4583333333333333],[114,105,75,-0.4583333333333333],[114,105,76,-0.4583333333333333],[114,105,77,-0.4583333333333333],[114,105,78,-0.4583333333333333],[114,105,79,-0.4583333333333333],[114,106,64,-0.4583333333333333],[114,106,65,-0.4583333333333333],[114,106,66,-0.4583333333333333],[114,106,67,-0.4583333333333333],[114,106,68,-0.4583333333333333],[114,106,69,-0.4583333333333333],[114,106,70,-0.4583333333333333],[114,106,71,-0.4583333333333333],[114,106,72,-0.4583333333333333],[114,106,73,-0.4583333333333333],[114,106,74,-0.4583333333333333],[114,106,75,-0.4583333333333333],[114,106,76,-0.4583333333333333],[114,106,77,-0.4583333333333333],[114,106,78,-0.4583333333333333],[114,106,79,-0.4583333333333333],[114,107,64,-0.4583333333333333],[114,107,65,-0.4583333333333333],[114,107,66,-0.4583333333333333],[114,107,67,-0.4583333333333333],[114,107,68,-0.4583333333333333],[114,107,69,-0.4583333333333333],[114,107,70,-0.4583333333333333],[114,107,71,-0.4583333333333333],[114,107,72,-0.4583333333333333],[114,107,73,-0.4583333333333333],[114,107,74,-0.4583333333333333],[114,107,75,-0.4583333333333333],[114,107,76,-0.4583333333333333],[114,107,77,-0.4583333333333333],[114,107,78,-0.4583333333333333],[114,107,79,-0.4583333333333333],[114,108,64,-0.4583333333333333],[114,108,65,-0.4583333333333333],[114,108,66,-0.4583333333333333],[114,108,67,-0.4583333333333333],[114,108,68,-0.4583333333333333],[114,108,69,-0.4583333333333333],[114,108,70,-0.4583333333333333],[114,108,71,-0.4583333333333333],[114,108,72,-0.4583333333333333],[114,108,73,-0.4583333333333333],[114,108,74,-0.4583333333333333],[114,108,75,-0.4583333333333333],[114,108,76,-0.4583333333333333],[114,108,77,-0.4583333333333333],[114,108,78,-0.4583333333333333],[114,108,79,-0.4583333333333333],[114,109,64,-0.4583333333333333],[114,109,65,-0.4583333333333333],[114,109,66,-0.4583333333333333],[114,109,67,-0.4583333333333333],[114,109,68,-0.4583333333333333],[114,109,69,-0.4583333333333333],[114,109,70,-0.4583333333333333],[114,109,71,-0.4583333333333333],[114,109,72,-0.4583333333333333],[114,109,73,-0.4583333333333333],[114,109,74,-0.4583333333333333],[114,109,75,-0.4583333333333333],[114,109,76,-0.4583333333333333],[114,109,77,-0.4583333333333333],[114,109,78,-0.4583333333333333],[114,109,79,-0.4583333333333333],[114,110,64,-0.4583333333333333],[114,110,65,-0.4583333333333333],[114,110,66,-0.4583333333333333],[114,110,67,-0.4583333333333333],[114,110,68,-0.4583333333333333],[114,110,69,-0.4583333333333333],[114,110,70,-0.4583333333333333],[114,110,71,-0.4583333333333333],[114,110,72,-0.4583333333333333],[114,110,73,-0.4583333333333333],[114,110,74,-0.4583333333333333],[114,110,75,-0.4583333333333333],[114,110,76,-0.4583333333333333],[114,110,77,-0.4583333333333333],[114,110,78,-0.4583333333333333],[114,110,79,-0.4583333333333333],[114,111,64,-0.4583333333333333],[114,111,65,-0.4583333333333333],[114,111,66,-0.4583333333333333],[114,111,67,-0.4583333333333333],[114,111,68,-0.4583333333333333],[114,111,69,-0.4583333333333333],[114,111,70,-0.4583333333333333],[114,111,71,-0.4583333333333333],[114,111,72,-0.4583333333333333],[114,111,73,-0.4583333333333333],[114,111,74,-0.4583333333333333],[114,111,75,-0.4583333333333333],[114,111,76,-0.4583333333333333],[114,111,77,-0.4583333333333333],[114,111,78,-0.4583333333333333],[114,111,79,-0.4583333333333333],[114,112,64,-0.4583333333333333],[114,112,65,-0.4583333333333333],[114,112,66,-0.4583333333333333],[114,112,67,-0.4583333333333333],[114,112,68,-0.4583333333333333],[114,112,69,-0.4583333333333333],[114,112,70,-0.4583333333333333],[114,112,71,-0.4583333333333333],[114,112,72,-0.4583333333333333],[114,112,73,-0.4583333333333333],[114,112,74,-0.4583333333333333],[114,112,75,-0.4583333333333333],[114,112,76,-0.4583333333333333],[114,112,77,-0.4583333333333333],[114,112,78,-0.4583333333333333],[114,112,79,-0.4583333333333333],[114,113,64,-0.4583333333333333],[114,113,65,-0.4583333333333333],[114,113,66,-0.4583333333333333],[114,113,67,-0.4583333333333333],[114,113,68,-0.4583333333333333],[114,113,69,-0.4583333333333333],[114,113,70,-0.4583333333333333],[114,113,71,-0.4583333333333333],[114,113,72,-0.4583333333333333],[114,113,73,-0.4583333333333333],[114,113,74,-0.4583333333333333],[114,113,75,-0.4583333333333333],[114,113,76,-0.4583333333333333],[114,113,77,-0.4583333333333333],[114,113,78,-0.4583333333333333],[114,113,79,-0.4583333333333333],[114,114,64,-0.4583333333333333],[114,114,65,-0.4583333333333333],[114,114,66,-0.4583333333333333],[114,114,67,-0.4583333333333333],[114,114,68,-0.4583333333333333],[114,114,69,-0.4583333333333333],[114,114,70,-0.4583333333333333],[114,114,71,-0.4583333333333333],[114,114,72,-0.4583333333333333],[114,114,73,-0.4583333333333333],[114,114,74,-0.4583333333333333],[114,114,75,-0.4583333333333333],[114,114,76,-0.4583333333333333],[114,114,77,-0.4583333333333333],[114,114,78,-0.4583333333333333],[114,114,79,-0.4583333333333333],[114,115,64,-0.4583333333333333],[114,115,65,-0.4583333333333333],[114,115,66,-0.4583333333333333],[114,115,67,-0.4583333333333333],[114,115,68,-0.4583333333333333],[114,115,69,-0.4583333333333333],[114,115,70,-0.4583333333333333],[114,115,71,-0.4583333333333333],[114,115,72,-0.4583333333333333],[114,115,73,-0.4583333333333333],[114,115,74,-0.4583333333333333],[114,115,75,-0.4583333333333333],[114,115,76,-0.4583333333333333],[114,115,77,-0.4583333333333333],[114,115,78,-0.4583333333333333],[114,115,79,-0.4583333333333333],[114,116,64,-0.4583333333333333],[114,116,65,-0.4583333333333333],[114,116,66,-0.4583333333333333],[114,116,67,-0.4583333333333333],[114,116,68,-0.4583333333333333],[114,116,69,-0.4583333333333333],[114,116,70,-0.4583333333333333],[114,116,71,-0.4583333333333333],[114,116,72,-0.4583333333333333],[114,116,73,-0.4583333333333333],[114,116,74,-0.4583333333333333],[114,116,75,-0.4583333333333333],[114,116,76,-0.4583333333333333],[114,116,77,-0.4583333333333333],[114,116,78,-0.4583333333333333],[114,116,79,-0.4583333333333333],[114,117,64,-0.4583333333333333],[114,117,65,-0.4583333333333333],[114,117,66,-0.4583333333333333],[114,117,67,-0.4583333333333333],[114,117,68,-0.4583333333333333],[114,117,69,-0.4583333333333333],[114,117,70,-0.4583333333333333],[114,117,71,-0.4583333333333333],[114,117,72,-0.4583333333333333],[114,117,73,-0.4583333333333333],[114,117,74,-0.4583333333333333],[114,117,75,-0.4583333333333333],[114,117,76,-0.4583333333333333],[114,117,77,-0.4583333333333333],[114,117,78,-0.4583333333333333],[114,117,79,-0.4583333333333333],[114,118,64,-0.4583333333333333],[114,118,65,-0.4583333333333333],[114,118,66,-0.4583333333333333],[114,118,67,-0.4583333333333333],[114,118,68,-0.4583333333333333],[114,118,69,-0.4583333333333333],[114,118,70,-0.4583333333333333],[114,118,71,-0.4583333333333333],[114,118,72,-0.4583333333333333],[114,118,73,-0.4583333333333333],[114,118,74,-0.4583333333333333],[114,118,75,-0.4583333333333333],[114,118,76,-0.4583333333333333],[114,118,77,-0.4583333333333333],[114,118,78,-0.4583333333333333],[114,118,79,-0.4583333333333333],[114,119,64,-0.4583333333333333],[114,119,65,-0.4583333333333333],[114,119,66,-0.4583333333333333],[114,119,67,-0.4583333333333333],[114,119,68,-0.4583333333333333],[114,119,69,-0.4583333333333333],[114,119,70,-0.4583333333333333],[114,119,71,-0.4583333333333333],[114,119,72,-0.4583333333333333],[114,119,73,-0.4583333333333333],[114,119,74,-0.4583333333333333],[114,119,75,-0.4583333333333333],[114,119,76,-0.4583333333333333],[114,119,77,-0.4583333333333333],[114,119,78,-0.4583333333333333],[114,119,79,-0.4583333333333333],[114,120,64,-0.4583333333333333],[114,120,65,-0.4583333333333333],[114,120,66,-0.4583333333333333],[114,120,67,-0.4583333333333333],[114,120,68,-0.4583333333333333],[114,120,69,-0.4583333333333333],[114,120,70,-0.4583333333333333],[114,120,71,-0.4583333333333333],[114,120,72,-0.4583333333333333],[114,120,73,-0.4583333333333333],[114,120,74,-0.4583333333333333],[114,120,75,-0.4583333333333333],[114,120,76,-0.4583333333333333],[114,120,77,-0.4583333333333333],[114,120,78,-0.4583333333333333],[114,120,79,-0.4583333333333333],[114,121,64,-0.4583333333333333],[114,121,65,-0.4583333333333333],[114,121,66,-0.4583333333333333],[114,121,67,-0.4583333333333333],[114,121,68,-0.4583333333333333],[114,121,69,-0.4583333333333333],[114,121,70,-0.4583333333333333],[114,121,71,-0.4583333333333333],[114,121,72,-0.4583333333333333],[114,121,73,-0.4583333333333333],[114,121,74,-0.4583333333333333],[114,121,75,-0.4583333333333333],[114,121,76,-0.4583333333333333],[114,121,77,-0.4583333333333333],[114,121,78,-0.4583333333333333],[114,121,79,-0.4583333333333333],[114,122,64,-0.4583333333333333],[114,122,65,-0.4583333333333333],[114,122,66,-0.4583333333333333],[114,122,67,-0.4583333333333333],[114,122,68,-0.4583333333333333],[114,122,69,-0.4583333333333333],[114,122,70,-0.4583333333333333],[114,122,71,-0.4583333333333333],[114,122,72,-0.4583333333333333],[114,122,73,-0.4583333333333333],[114,122,74,-0.4583333333333333],[114,122,75,-0.4583333333333333],[114,122,76,-0.4583333333333333],[114,122,77,-0.4583333333333333],[114,122,78,-0.4583333333333333],[114,122,79,-0.4583333333333333],[114,123,64,-0.4583333333333333],[114,123,65,-0.4583333333333333],[114,123,66,-0.4583333333333333],[114,123,67,-0.4583333333333333],[114,123,68,-0.4583333333333333],[114,123,69,-0.4583333333333333],[114,123,70,-0.4583333333333333],[114,123,71,-0.4583333333333333],[114,123,72,-0.4583333333333333],[114,123,73,-0.4583333333333333],[114,123,74,-0.4583333333333333],[114,123,75,-0.4583333333333333],[114,123,76,-0.4583333333333333],[114,123,77,-0.4583333333333333],[114,123,78,-0.4583333333333333],[114,123,79,-0.4583333333333333],[114,124,64,-0.4583333333333333],[114,124,65,-0.4583333333333333],[114,124,66,-0.4583333333333333],[114,124,67,-0.4583333333333333],[114,124,68,-0.4583333333333333],[114,124,69,-0.4583333333333333],[114,124,70,-0.4583333333333333],[114,124,71,-0.4583333333333333],[114,124,72,-0.4583333333333333],[114,124,73,-0.4583333333333333],[114,124,74,-0.4583333333333333],[114,124,75,-0.4583333333333333],[114,124,76,-0.4583333333333333],[114,124,77,-0.4583333333333333],[114,124,78,-0.4583333333333333],[114,124,79,-0.4583333333333333],[114,125,64,-0.4583333333333333],[114,125,65,-0.4583333333333333],[114,125,66,-0.4583333333333333],[114,125,67,-0.4583333333333333],[114,125,68,-0.4583333333333333],[114,125,69,-0.4583333333333333],[114,125,70,-0.4583333333333333],[114,125,71,-0.4583333333333333],[114,125,72,-0.4583333333333333],[114,125,73,-0.4583333333333333],[114,125,74,-0.4583333333333333],[114,125,75,-0.4583333333333333],[114,125,76,-0.4583333333333333],[114,125,77,-0.4583333333333333],[114,125,78,-0.4583333333333333],[114,125,79,-0.4583333333333333],[114,126,64,-0.4583333333333333],[114,126,65,-0.4583333333333333],[114,126,66,-0.4583333333333333],[114,126,67,-0.4583333333333333],[114,126,68,-0.4583333333333333],[114,126,69,-0.4583333333333333],[114,126,70,-0.4583333333333333],[114,126,71,-0.4583333333333333],[114,126,72,-0.4583333333333333],[114,126,73,-0.4583333333333333],[114,126,74,-0.4583333333333333],[114,126,75,-0.4583333333333333],[114,126,76,-0.4583333333333333],[114,126,77,-0.4583333333333333],[114,126,78,-0.4583333333333333],[114,126,79,-0.4583333333333333],[114,127,64,-0.4583333333333333],[114,127,65,-0.4583333333333333],[114,127,66,-0.4583333333333333],[114,127,67,-0.4583333333333333],[114,127,68,-0.4583333333333333],[114,127,69,-0.4583333333333333],[114,127,70,-0.4583333333333333],[114,127,71,-0.4583333333333333],[114,127,72,-0.4583333333333333],[114,127,73,-0.4583333333333333],[114,127,74,-0.4583333333333333],[114,127,75,-0.4583333333333333],[114,127,76,-0.4583333333333333],[114,127,77,-0.4583333333333333],[114,127,78,-0.4583333333333333],[114,127,79,-0.4583333333333333],[114,128,64,-0.4583333333333333],[114,128,65,-0.4583333333333333],[114,128,66,-0.4583333333333333],[114,128,67,-0.4583333333333333],[114,128,68,-0.4583333333333333],[114,128,69,-0.4583333333333333],[114,128,70,-0.4583333333333333],[114,128,71,-0.4583333333333333],[114,128,72,-0.4583333333333333],[114,128,73,-0.4583333333333333],[114,128,74,-0.4583333333333333],[114,128,75,-0.4583333333333333],[114,128,76,-0.4583333333333333],[114,128,77,-0.4583333333333333],[114,128,78,-0.4583333333333333],[114,128,79,-0.4583333333333333],[114,129,64,-0.4583333333333333],[114,129,65,-0.4583333333333333],[114,129,66,-0.4583333333333333],[114,129,67,-0.4583333333333333],[114,129,68,-0.4583333333333333],[114,129,69,-0.4583333333333333],[114,129,70,-0.4583333333333333],[114,129,71,-0.4583333333333333],[114,129,72,-0.4583333333333333],[114,129,73,-0.4583333333333333],[114,129,74,-0.4583333333333333],[114,129,75,-0.4583333333333333],[114,129,76,-0.4583333333333333],[114,129,77,-0.4583333333333333],[114,129,78,-0.4583333333333333],[114,129,79,-0.4583333333333333],[114,130,64,-0.4583333333333333],[114,130,65,-0.4583333333333333],[114,130,66,-0.4583333333333333],[114,130,67,-0.4583333333333333],[114,130,68,-0.4583333333333333],[114,130,69,-0.4583333333333333],[114,130,70,-0.4583333333333333],[114,130,71,-0.4583333333333333],[114,130,72,-0.4583333333333333],[114,130,73,-0.4583333333333333],[114,130,74,-0.4583333333333333],[114,130,75,-0.4583333333333333],[114,130,76,-0.4583333333333333],[114,130,77,-0.4583333333333333],[114,130,78,-0.4583333333333333],[114,130,79,-0.4583333333333333],[114,131,64,-0.4583333333333333],[114,131,65,-0.4583333333333333],[114,131,66,-0.4583333333333333],[114,131,67,-0.4583333333333333],[114,131,68,-0.4583333333333333],[114,131,69,-0.4583333333333333],[114,131,70,-0.4583333333333333],[114,131,71,-0.4583333333333333],[114,131,72,-0.4583333333333333],[114,131,73,-0.4583333333333333],[114,131,74,-0.4583333333333333],[114,131,75,-0.4583333333333333],[114,131,76,-0.4583333333333333],[114,131,77,-0.4583333333333333],[114,131,78,-0.4583333333333333],[114,131,79,-0.4583333333333333],[114,132,64,-0.4583333333333333],[114,132,65,-0.4583333333333333],[114,132,66,-0.4583333333333333],[114,132,67,-0.4583333333333333],[114,132,68,-0.4583333333333333],[114,132,69,-0.4583333333333333],[114,132,70,-0.4583333333333333],[114,132,71,-0.4583333333333333],[114,132,72,-0.4583333333333333],[114,132,73,-0.4583333333333333],[114,132,74,-0.4583333333333333],[114,132,75,-0.4583333333333333],[114,132,76,-0.4583333333333333],[114,132,77,-0.4583333333333333],[114,132,78,-0.4583333333333333],[114,132,79,-0.4583333333333333],[114,133,64,-0.4583333333333333],[114,133,65,-0.4583333333333333],[114,133,66,-0.4583333333333333],[114,133,67,-0.4583333333333333],[114,133,68,-0.4583333333333333],[114,133,69,-0.4583333333333333],[114,133,70,-0.4583333333333333],[114,133,71,-0.4583333333333333],[114,133,72,-0.4583333333333333],[114,133,73,-0.4583333333333333],[114,133,74,-0.4583333333333333],[114,133,75,-0.4583333333333333],[114,133,76,-0.4583333333333333],[114,133,77,-0.4583333333333333],[114,133,78,-0.4583333333333333],[114,133,79,-0.4583333333333333],[114,134,64,-0.4583333333333333],[114,134,65,-0.4583333333333333],[114,134,66,-0.4583333333333333],[114,134,67,-0.4583333333333333],[114,134,68,-0.4583333333333333],[114,134,69,-0.4583333333333333],[114,134,70,-0.4583333333333333],[114,134,71,-0.4583333333333333],[114,134,72,-0.4583333333333333],[114,134,73,-0.4583333333333333],[114,134,74,-0.4583333333333333],[114,134,75,-0.4583333333333333],[114,134,76,-0.4583333333333333],[114,134,77,-0.4583333333333333],[114,134,78,-0.4583333333333333],[114,134,79,-0.4583333333333333],[114,135,64,-0.4583333333333333],[114,135,65,-0.4583333333333333],[114,135,66,-0.4583333333333333],[114,135,67,-0.4583333333333333],[114,135,68,-0.4583333333333333],[114,135,69,-0.4583333333333333],[114,135,70,-0.4583333333333333],[114,135,71,-0.4583333333333333],[114,135,72,-0.4583333333333333],[114,135,73,-0.4583333333333333],[114,135,74,-0.4583333333333333],[114,135,75,-0.4583333333333333],[114,135,76,-0.4583333333333333],[114,135,77,-0.4583333333333333],[114,135,78,-0.4583333333333333],[114,135,79,-0.4583333333333333],[114,136,64,-0.4583333333333333],[114,136,65,-0.4583333333333333],[114,136,66,-0.4583333333333333],[114,136,67,-0.4583333333333333],[114,136,68,-0.4583333333333333],[114,136,69,-0.4583333333333333],[114,136,70,-0.4583333333333333],[114,136,71,-0.4583333333333333],[114,136,72,-0.4583333333333333],[114,136,73,-0.4583333333333333],[114,136,74,-0.4583333333333333],[114,136,75,-0.4583333333333333],[114,136,76,-0.4583333333333333],[114,136,77,-0.4583333333333333],[114,136,78,-0.4583333333333333],[114,136,79,-0.4583333333333333],[114,137,64,-0.4583333333333333],[114,137,65,-0.4583333333333333],[114,137,66,-0.4583333333333333],[114,137,67,-0.4583333333333333],[114,137,68,-0.4583333333333333],[114,137,69,-0.4583333333333333],[114,137,70,-0.4583333333333333],[114,137,71,-0.4583333333333333],[114,137,72,-0.4583333333333333],[114,137,73,-0.4583333333333333],[114,137,74,-0.4583333333333333],[114,137,75,-0.4583333333333333],[114,137,76,-0.4583333333333333],[114,137,77,-0.4583333333333333],[114,137,78,-0.4583333333333333],[114,137,79,-0.4583333333333333],[114,138,64,-0.4583333333333333],[114,138,65,-0.4583333333333333],[114,138,66,-0.4583333333333333],[114,138,67,-0.4583333333333333],[114,138,68,-0.4583333333333333],[114,138,69,-0.4583333333333333],[114,138,70,-0.4583333333333333],[114,138,71,-0.4583333333333333],[114,138,72,-0.4583333333333333],[114,138,73,-0.4583333333333333],[114,138,74,-0.4583333333333333],[114,138,75,-0.4583333333333333],[114,138,76,-0.4583333333333333],[114,138,77,-0.4583333333333333],[114,138,78,-0.4583333333333333],[114,138,79,-0.4583333333333333],[114,139,64,-0.4583333333333333],[114,139,65,-0.4583333333333333],[114,139,66,-0.4583333333333333],[114,139,67,-0.4583333333333333],[114,139,68,-0.4583333333333333],[114,139,69,-0.4583333333333333],[114,139,70,-0.4583333333333333],[114,139,71,-0.4583333333333333],[114,139,72,-0.4583333333333333],[114,139,73,-0.4583333333333333],[114,139,74,-0.4583333333333333],[114,139,75,-0.4583333333333333],[114,139,76,-0.4583333333333333],[114,139,77,-0.4583333333333333],[114,139,78,-0.4583333333333333],[114,139,79,-0.4583333333333333],[114,140,64,-0.4583333333333333],[114,140,65,-0.4583333333333333],[114,140,66,-0.4583333333333333],[114,140,67,-0.4583333333333333],[114,140,68,-0.4583333333333333],[114,140,69,-0.4583333333333333],[114,140,70,-0.4583333333333333],[114,140,71,-0.4583333333333333],[114,140,72,-0.4583333333333333],[114,140,73,-0.4583333333333333],[114,140,74,-0.4583333333333333],[114,140,75,-0.4583333333333333],[114,140,76,-0.4583333333333333],[114,140,77,-0.4583333333333333],[114,140,78,-0.4583333333333333],[114,140,79,-0.4583333333333333],[114,141,64,-0.4583333333333333],[114,141,65,-0.4583333333333333],[114,141,66,-0.4583333333333333],[114,141,67,-0.4583333333333333],[114,141,68,-0.4583333333333333],[114,141,69,-0.4583333333333333],[114,141,70,-0.4583333333333333],[114,141,71,-0.4583333333333333],[114,141,72,-0.4583333333333333],[114,141,73,-0.4583333333333333],[114,141,74,-0.4583333333333333],[114,141,75,-0.4583333333333333],[114,141,76,-0.4583333333333333],[114,141,77,-0.4583333333333333],[114,141,78,-0.4583333333333333],[114,141,79,-0.4583333333333333],[114,142,64,-0.4583333333333333],[114,142,65,-0.4583333333333333],[114,142,66,-0.4583333333333333],[114,142,67,-0.4583333333333333],[114,142,68,-0.4583333333333333],[114,142,69,-0.4583333333333333],[114,142,70,-0.4583333333333333],[114,142,71,-0.4583333333333333],[114,142,72,-0.4583333333333333],[114,142,73,-0.4583333333333333],[114,142,74,-0.4583333333333333],[114,142,75,-0.4583333333333333],[114,142,76,-0.4583333333333333],[114,142,77,-0.4583333333333333],[114,142,78,-0.4583333333333333],[114,142,79,-0.4583333333333333],[114,143,64,-0.4583333333333333],[114,143,65,-0.4583333333333333],[114,143,66,-0.4583333333333333],[114,143,67,-0.4583333333333333],[114,143,68,-0.4583333333333333],[114,143,69,-0.4583333333333333],[114,143,70,-0.4583333333333333],[114,143,71,-0.4583333333333333],[114,143,72,-0.4583333333333333],[114,143,73,-0.4583333333333333],[114,143,74,-0.4583333333333333],[114,143,75,-0.4583333333333333],[114,143,76,-0.4583333333333333],[114,143,77,-0.4583333333333333],[114,143,78,-0.4583333333333333],[114,143,79,-0.4583333333333333],[114,144,64,-0.4583333333333333],[114,144,65,-0.4583333333333333],[114,144,66,-0.4583333333333333],[114,144,67,-0.4583333333333333],[114,144,68,-0.4583333333333333],[114,144,69,-0.4583333333333333],[114,144,70,-0.4583333333333333],[114,144,71,-0.4583333333333333],[114,144,72,-0.4583333333333333],[114,144,73,-0.4583333333333333],[114,144,74,-0.4583333333333333],[114,144,75,-0.4583333333333333],[114,144,76,-0.4583333333333333],[114,144,77,-0.4583333333333333],[114,144,78,-0.4583333333333333],[114,144,79,-0.4583333333333333],[114,145,64,-0.4583333333333333],[114,145,65,-0.4583333333333333],[114,145,66,-0.4583333333333333],[114,145,67,-0.4583333333333333],[114,145,68,-0.4583333333333333],[114,145,69,-0.4583333333333333],[114,145,70,-0.4583333333333333],[114,145,71,-0.4583333333333333],[114,145,72,-0.4583333333333333],[114,145,73,-0.4583333333333333],[114,145,74,-0.4583333333333333],[114,145,75,-0.4583333333333333],[114,145,76,-0.4583333333333333],[114,145,77,-0.4583333333333333],[114,145,78,-0.4583333333333333],[114,145,79,-0.4583333333333333],[114,146,64,-0.4583333333333333],[114,146,65,-0.4583333333333333],[114,146,66,-0.4583333333333333],[114,146,67,-0.4583333333333333],[114,146,68,-0.4583333333333333],[114,146,69,-0.4583333333333333],[114,146,70,-0.4583333333333333],[114,146,71,-0.4583333333333333],[114,146,72,-0.4583333333333333],[114,146,73,-0.4583333333333333],[114,146,74,-0.4583333333333333],[114,146,75,-0.4583333333333333],[114,146,76,-0.4583333333333333],[114,146,77,-0.4583333333333333],[114,146,78,-0.4583333333333333],[114,146,79,-0.4583333333333333],[114,147,64,-0.4583333333333333],[114,147,65,-0.4583333333333333],[114,147,66,-0.4583333333333333],[114,147,67,-0.4583333333333333],[114,147,68,-0.4583333333333333],[114,147,69,-0.4583333333333333],[114,147,70,-0.4583333333333333],[114,147,71,-0.4583333333333333],[114,147,72,-0.4583333333333333],[114,147,73,-0.4583333333333333],[114,147,74,-0.4583333333333333],[114,147,75,-0.4583333333333333],[114,147,76,-0.4583333333333333],[114,147,77,-0.4583333333333333],[114,147,78,-0.4583333333333333],[114,147,79,-0.4583333333333333],[114,148,64,-0.4583333333333333],[114,148,65,-0.4583333333333333],[114,148,66,-0.4583333333333333],[114,148,67,-0.4583333333333333],[114,148,68,-0.4583333333333333],[114,148,69,-0.4583333333333333],[114,148,70,-0.4583333333333333],[114,148,71,-0.4583333333333333],[114,148,72,-0.4583333333333333],[114,148,73,-0.4583333333333333],[114,148,74,-0.4583333333333333],[114,148,75,-0.4583333333333333],[114,148,76,-0.4583333333333333],[114,148,77,-0.4583333333333333],[114,148,78,-0.4583333333333333],[114,148,79,-0.4583333333333333],[114,149,64,-0.4583333333333333],[114,149,65,-0.4583333333333333],[114,149,66,-0.4583333333333333],[114,149,67,-0.4583333333333333],[114,149,68,-0.4583333333333333],[114,149,69,-0.4583333333333333],[114,149,70,-0.4583333333333333],[114,149,71,-0.4583333333333333],[114,149,72,-0.4583333333333333],[114,149,73,-0.4583333333333333],[114,149,74,-0.4583333333333333],[114,149,75,-0.4583333333333333],[114,149,76,-0.4583333333333333],[114,149,77,-0.4583333333333333],[114,149,78,-0.4583333333333333],[114,149,79,-0.4583333333333333],[114,150,64,-0.4583333333333333],[114,150,65,-0.4583333333333333],[114,150,66,-0.4583333333333333],[114,150,67,-0.4583333333333333],[114,150,68,-0.4583333333333333],[114,150,69,-0.4583333333333333],[114,150,70,-0.4583333333333333],[114,150,71,-0.4583333333333333],[114,150,72,-0.4583333333333333],[114,150,73,-0.4583333333333333],[114,150,74,-0.4583333333333333],[114,150,75,-0.4583333333333333],[114,150,76,-0.4583333333333333],[114,150,77,-0.4583333333333333],[114,150,78,-0.4583333333333333],[114,150,79,-0.4583333333333333],[114,151,64,-0.4583333333333333],[114,151,65,-0.4583333333333333],[114,151,66,-0.4583333333333333],[114,151,67,-0.4583333333333333],[114,151,68,-0.4583333333333333],[114,151,69,-0.4583333333333333],[114,151,70,-0.4583333333333333],[114,151,71,-0.4583333333333333],[114,151,72,-0.4583333333333333],[114,151,73,-0.4583333333333333],[114,151,74,-0.4583333333333333],[114,151,75,-0.4583333333333333],[114,151,76,-0.4583333333333333],[114,151,77,-0.4583333333333333],[114,151,78,-0.4583333333333333],[114,151,79,-0.4583333333333333],[114,152,64,-0.4583333333333333],[114,152,65,-0.4583333333333333],[114,152,66,-0.4583333333333333],[114,152,67,-0.4583333333333333],[114,152,68,-0.4583333333333333],[114,152,69,-0.4583333333333333],[114,152,70,-0.4583333333333333],[114,152,71,-0.4583333333333333],[114,152,72,-0.4583333333333333],[114,152,73,-0.4583333333333333],[114,152,74,-0.4583333333333333],[114,152,75,-0.4583333333333333],[114,152,76,-0.4583333333333333],[114,152,77,-0.4583333333333333],[114,152,78,-0.4583333333333333],[114,152,79,-0.4583333333333333],[114,153,64,-0.4583333333333333],[114,153,65,-0.4583333333333333],[114,153,66,-0.4583333333333333],[114,153,67,-0.4583333333333333],[114,153,68,-0.4583333333333333],[114,153,69,-0.4583333333333333],[114,153,70,-0.4583333333333333],[114,153,71,-0.4583333333333333],[114,153,72,-0.4583333333333333],[114,153,73,-0.4583333333333333],[114,153,74,-0.4583333333333333],[114,153,75,-0.4583333333333333],[114,153,76,-0.4583333333333333],[114,153,77,-0.4583333333333333],[114,153,78,-0.4583333333333333],[114,153,79,-0.4583333333333333],[114,154,64,-0.4583333333333333],[114,154,65,-0.4583333333333333],[114,154,66,-0.4583333333333333],[114,154,67,-0.4583333333333333],[114,154,68,-0.4583333333333333],[114,154,69,-0.4583333333333333],[114,154,70,-0.4583333333333333],[114,154,71,-0.4583333333333333],[114,154,72,-0.4583333333333333],[114,154,73,-0.4583333333333333],[114,154,74,-0.4583333333333333],[114,154,75,-0.4583333333333333],[114,154,76,-0.4583333333333333],[114,154,77,-0.4583333333333333],[114,154,78,-0.4583333333333333],[114,154,79,-0.4583333333333333],[114,155,64,-0.4583333333333333],[114,155,65,-0.4583333333333333],[114,155,66,-0.4583333333333333],[114,155,67,-0.4583333333333333],[114,155,68,-0.4583333333333333],[114,155,69,-0.4583333333333333],[114,155,70,-0.4583333333333333],[114,155,71,-0.4583333333333333],[114,155,72,-0.4583333333333333],[114,155,73,-0.4583333333333333],[114,155,74,-0.4583333333333333],[114,155,75,-0.4583333333333333],[114,155,76,-0.4583333333333333],[114,155,77,-0.4583333333333333],[114,155,78,-0.4583333333333333],[114,155,79,-0.4583333333333333],[114,156,64,-0.4583333333333333],[114,156,65,-0.4583333333333333],[114,156,66,-0.4583333333333333],[114,156,67,-0.4583333333333333],[114,156,68,-0.4583333333333333],[114,156,69,-0.4583333333333333],[114,156,70,-0.4583333333333333],[114,156,71,-0.4583333333333333],[114,156,72,-0.4583333333333333],[114,156,73,-0.4583333333333333],[114,156,74,-0.4583333333333333],[114,156,75,-0.4583333333333333],[114,156,76,-0.4583333333333333],[114,156,77,-0.4583333333333333],[114,156,78,-0.4583333333333333],[114,156,79,-0.4583333333333333],[114,157,64,-0.4583333333333333],[114,157,65,-0.4583333333333333],[114,157,66,-0.4583333333333333],[114,157,67,-0.4583333333333333],[114,157,68,-0.4583333333333333],[114,157,69,-0.4583333333333333],[114,157,70,-0.4583333333333333],[114,157,71,-0.4583333333333333],[114,157,72,-0.4583333333333333],[114,157,73,-0.4583333333333333],[114,157,74,-0.4583333333333333],[114,157,75,-0.4583333333333333],[114,157,76,-0.4583333333333333],[114,157,77,-0.4583333333333333],[114,157,78,-0.4583333333333333],[114,157,79,-0.4583333333333333],[114,158,64,-0.4583333333333333],[114,158,65,-0.4583333333333333],[114,158,66,-0.4583333333333333],[114,158,67,-0.4583333333333333],[114,158,68,-0.4583333333333333],[114,158,69,-0.4583333333333333],[114,158,70,-0.4583333333333333],[114,158,71,-0.4583333333333333],[114,158,72,-0.4583333333333333],[114,158,73,-0.4583333333333333],[114,158,74,-0.4583333333333333],[114,158,75,-0.4583333333333333],[114,158,76,-0.4583333333333333],[114,158,77,-0.4583333333333333],[114,158,78,-0.4583333333333333],[114,158,79,-0.4583333333333333],[114,159,64,-0.4583333333333333],[114,159,65,-0.4583333333333333],[114,159,66,-0.4583333333333333],[114,159,67,-0.4583333333333333],[114,159,68,-0.4583333333333333],[114,159,69,-0.4583333333333333],[114,159,70,-0.4583333333333333],[114,159,71,-0.4583333333333333],[114,159,72,-0.4583333333333333],[114,159,73,-0.4583333333333333],[114,159,74,-0.4583333333333333],[114,159,75,-0.4583333333333333],[114,159,76,-0.4583333333333333],[114,159,77,-0.4583333333333333],[114,159,78,-0.4583333333333333],[114,159,79,-0.4583333333333333],[114,160,64,-0.4583333333333333],[114,160,65,-0.4583333333333333],[114,160,66,-0.4583333333333333],[114,160,67,-0.4583333333333333],[114,160,68,-0.4583333333333333],[114,160,69,-0.4583333333333333],[114,160,70,-0.4583333333333333],[114,160,71,-0.4583333333333333],[114,160,72,-0.4583333333333333],[114,160,73,-0.4583333333333333],[114,160,74,-0.4583333333333333],[114,160,75,-0.4583333333333333],[114,160,76,-0.4583333333333333],[114,160,77,-0.4583333333333333],[114,160,78,-0.4583333333333333],[114,160,79,-0.4583333333333333],[114,161,64,-0.4583333333333333],[114,161,65,-0.4583333333333333],[114,161,66,-0.4583333333333333],[114,161,67,-0.4583333333333333],[114,161,68,-0.4583333333333333],[114,161,69,-0.4583333333333333],[114,161,70,-0.4583333333333333],[114,161,71,-0.4583333333333333],[114,161,72,-0.4583333333333333],[114,161,73,-0.4583333333333333],[114,161,74,-0.4583333333333333],[114,161,75,-0.4583333333333333],[114,161,76,-0.4583333333333333],[114,161,77,-0.4583333333333333],[114,161,78,-0.4583333333333333],[114,161,79,-0.4583333333333333],[114,162,64,-0.4583333333333333],[114,162,65,-0.4583333333333333],[114,162,66,-0.4583333333333333],[114,162,67,-0.4583333333333333],[114,162,68,-0.4583333333333333],[114,162,69,-0.4583333333333333],[114,162,70,-0.4583333333333333],[114,162,71,-0.4583333333333333],[114,162,72,-0.4583333333333333],[114,162,73,-0.4583333333333333],[114,162,74,-0.4583333333333333],[114,162,75,-0.4583333333333333],[114,162,76,-0.4583333333333333],[114,162,77,-0.4583333333333333],[114,162,78,-0.4583333333333333],[114,162,79,-0.4583333333333333],[114,163,64,-0.4583333333333333],[114,163,65,-0.4583333333333333],[114,163,66,-0.4583333333333333],[114,163,67,-0.4583333333333333],[114,163,68,-0.4583333333333333],[114,163,69,-0.4583333333333333],[114,163,70,-0.4583333333333333],[114,163,71,-0.4583333333333333],[114,163,72,-0.4583333333333333],[114,163,73,-0.4583333333333333],[114,163,74,-0.4583333333333333],[114,163,75,-0.4583333333333333],[114,163,76,-0.4583333333333333],[114,163,77,-0.4583333333333333],[114,163,78,-0.4583333333333333],[114,163,79,-0.4583333333333333],[114,164,64,-0.4583333333333333],[114,164,65,-0.4583333333333333],[114,164,66,-0.4583333333333333],[114,164,67,-0.4583333333333333],[114,164,68,-0.4583333333333333],[114,164,69,-0.4583333333333333],[114,164,70,-0.4583333333333333],[114,164,71,-0.4583333333333333],[114,164,72,-0.4583333333333333],[114,164,73,-0.4583333333333333],[114,164,74,-0.4583333333333333],[114,164,75,-0.4583333333333333],[114,164,76,-0.4583333333333333],[114,164,77,-0.4583333333333333],[114,164,78,-0.4583333333333333],[114,164,79,-0.4583333333333333],[114,165,64,-0.4583333333333333],[114,165,65,-0.4583333333333333],[114,165,66,-0.4583333333333333],[114,165,67,-0.4583333333333333],[114,165,68,-0.4583333333333333],[114,165,69,-0.4583333333333333],[114,165,70,-0.4583333333333333],[114,165,71,-0.4583333333333333],[114,165,72,-0.4583333333333333],[114,165,73,-0.4583333333333333],[114,165,74,-0.4583333333333333],[114,165,75,-0.4583333333333333],[114,165,76,-0.4583333333333333],[114,165,77,-0.4583333333333333],[114,165,78,-0.4583333333333333],[114,165,79,-0.4583333333333333],[114,166,64,-0.4583333333333333],[114,166,65,-0.4583333333333333],[114,166,66,-0.4583333333333333],[114,166,67,-0.4583333333333333],[114,166,68,-0.4583333333333333],[114,166,69,-0.4583333333333333],[114,166,70,-0.4583333333333333],[114,166,71,-0.4583333333333333],[114,166,72,-0.4583333333333333],[114,166,73,-0.4583333333333333],[114,166,74,-0.4583333333333333],[114,166,75,-0.4583333333333333],[114,166,76,-0.4583333333333333],[114,166,77,-0.4583333333333333],[114,166,78,-0.4583333333333333],[114,166,79,-0.4583333333333333],[114,167,64,-0.4583333333333333],[114,167,65,-0.4583333333333333],[114,167,66,-0.4583333333333333],[114,167,67,-0.4583333333333333],[114,167,68,-0.4583333333333333],[114,167,69,-0.4583333333333333],[114,167,70,-0.4583333333333333],[114,167,71,-0.4583333333333333],[114,167,72,-0.4583333333333333],[114,167,73,-0.4583333333333333],[114,167,74,-0.4583333333333333],[114,167,75,-0.4583333333333333],[114,167,76,-0.4583333333333333],[114,167,77,-0.4583333333333333],[114,167,78,-0.4583333333333333],[114,167,79,-0.4583333333333333],[114,168,64,-0.4583333333333333],[114,168,65,-0.4583333333333333],[114,168,66,-0.4583333333333333],[114,168,67,-0.4583333333333333],[114,168,68,-0.4583333333333333],[114,168,69,-0.4583333333333333],[114,168,70,-0.4583333333333333],[114,168,71,-0.4583333333333333],[114,168,72,-0.4583333333333333],[114,168,73,-0.4583333333333333],[114,168,74,-0.4583333333333333],[114,168,75,-0.4583333333333333],[114,168,76,-0.4583333333333333],[114,168,77,-0.4583333333333333],[114,168,78,-0.4583333333333333],[114,168,79,-0.4583333333333333],[114,169,64,-0.4583333333333333],[114,169,65,-0.4583333333333333],[114,169,66,-0.4583333333333333],[114,169,67,-0.4583333333333333],[114,169,68,-0.4583333333333333],[114,169,69,-0.4583333333333333],[114,169,70,-0.4583333333333333],[114,169,71,-0.4583333333333333],[114,169,72,-0.4583333333333333],[114,169,73,-0.4583333333333333],[114,169,74,-0.4583333333333333],[114,169,75,-0.4583333333333333],[114,169,76,-0.4583333333333333],[114,169,77,-0.4583333333333333],[114,169,78,-0.4583333333333333],[114,169,79,-0.4583333333333333],[114,170,64,-0.4583333333333333],[114,170,65,-0.4583333333333333],[114,170,66,-0.4583333333333333],[114,170,67,-0.4583333333333333],[114,170,68,-0.4583333333333333],[114,170,69,-0.4583333333333333],[114,170,70,-0.4583333333333333],[114,170,71,-0.4583333333333333],[114,170,72,-0.4583333333333333],[114,170,73,-0.4583333333333333],[114,170,74,-0.4583333333333333],[114,170,75,-0.4583333333333333],[114,170,76,-0.4583333333333333],[114,170,77,-0.4583333333333333],[114,170,78,-0.4583333333333333],[114,170,79,-0.4583333333333333],[114,171,64,-0.4583333333333333],[114,171,65,-0.4583333333333333],[114,171,66,-0.4583333333333333],[114,171,67,-0.4583333333333333],[114,171,68,-0.4583333333333333],[114,171,69,-0.4583333333333333],[114,171,70,-0.4583333333333333],[114,171,71,-0.4583333333333333],[114,171,72,-0.4583333333333333],[114,171,73,-0.4583333333333333],[114,171,74,-0.4583333333333333],[114,171,75,-0.4583333333333333],[114,171,76,-0.4583333333333333],[114,171,77,-0.4583333333333333],[114,171,78,-0.4583333333333333],[114,171,79,-0.4583333333333333],[114,172,64,-0.4583333333333333],[114,172,65,-0.4583333333333333],[114,172,66,-0.4583333333333333],[114,172,67,-0.4583333333333333],[114,172,68,-0.4583333333333333],[114,172,69,-0.4583333333333333],[114,172,70,-0.4583333333333333],[114,172,71,-0.4583333333333333],[114,172,72,-0.4583333333333333],[114,172,73,-0.4583333333333333],[114,172,74,-0.4583333333333333],[114,172,75,-0.4583333333333333],[114,172,76,-0.4583333333333333],[114,172,77,-0.4583333333333333],[114,172,78,-0.4583333333333333],[114,172,79,-0.4583333333333333],[114,173,64,-0.4583333333333333],[114,173,65,-0.4583333333333333],[114,173,66,-0.4583333333333333],[114,173,67,-0.4583333333333333],[114,173,68,-0.4583333333333333],[114,173,69,-0.4583333333333333],[114,173,70,-0.4583333333333333],[114,173,71,-0.4583333333333333],[114,173,72,-0.4583333333333333],[114,173,73,-0.4583333333333333],[114,173,74,-0.4583333333333333],[114,173,75,-0.4583333333333333],[114,173,76,-0.4583333333333333],[114,173,77,-0.4583333333333333],[114,173,78,-0.4583333333333333],[114,173,79,-0.4583333333333333],[114,174,64,-0.4583333333333333],[114,174,65,-0.4583333333333333],[114,174,66,-0.4583333333333333],[114,174,67,-0.4583333333333333],[114,174,68,-0.4583333333333333],[114,174,69,-0.4583333333333333],[114,174,70,-0.4583333333333333],[114,174,71,-0.4583333333333333],[114,174,72,-0.4583333333333333],[114,174,73,-0.4583333333333333],[114,174,74,-0.4583333333333333],[114,174,75,-0.4583333333333333],[114,174,76,-0.4583333333333333],[114,174,77,-0.4583333333333333],[114,174,78,-0.4583333333333333],[114,174,79,-0.4583333333333333],[114,175,64,-0.4583333333333333],[114,175,65,-0.4583333333333333],[114,175,66,-0.4583333333333333],[114,175,67,-0.4583333333333333],[114,175,68,-0.4583333333333333],[114,175,69,-0.4583333333333333],[114,175,70,-0.4583333333333333],[114,175,71,-0.4583333333333333],[114,175,72,-0.4583333333333333],[114,175,73,-0.4583333333333333],[114,175,74,-0.4583333333333333],[114,175,75,-0.4583333333333333],[114,175,76,-0.4583333333333333],[114,175,77,-0.4583333333333333],[114,175,78,-0.4583333333333333],[114,175,79,-0.4583333333333333],[114,176,64,-0.4583333333333333],[114,176,65,-0.4583333333333333],[114,176,66,-0.4583333333333333],[114,176,67,-0.4583333333333333],[114,176,68,-0.4583333333333333],[114,176,69,-0.4583333333333333],[114,176,70,-0.4583333333333333],[114,176,71,-0.4583333333333333],[114,176,72,-0.4583333333333333],[114,176,73,-0.4583333333333333],[114,176,74,-0.4583333333333333],[114,176,75,-0.4583333333333333],[114,176,76,-0.4583333333333333],[114,176,77,-0.4583333333333333],[114,176,78,-0.4583333333333333],[114,176,79,-0.4583333333333333],[114,177,64,-0.4583333333333333],[114,177,65,-0.4583333333333333],[114,177,66,-0.4583333333333333],[114,177,67,-0.4583333333333333],[114,177,68,-0.4583333333333333],[114,177,69,-0.4583333333333333],[114,177,70,-0.4583333333333333],[114,177,71,-0.4583333333333333],[114,177,72,-0.4583333333333333],[114,177,73,-0.4583333333333333],[114,177,74,-0.4583333333333333],[114,177,75,-0.4583333333333333],[114,177,76,-0.4583333333333333],[114,177,77,-0.4583333333333333],[114,177,78,-0.4583333333333333],[114,177,79,-0.4583333333333333],[114,178,64,-0.4583333333333333],[114,178,65,-0.4583333333333333],[114,178,66,-0.4583333333333333],[114,178,67,-0.4583333333333333],[114,178,68,-0.4583333333333333],[114,178,69,-0.4583333333333333],[114,178,70,-0.4583333333333333],[114,178,71,-0.4583333333333333],[114,178,72,-0.4583333333333333],[114,178,73,-0.4583333333333333],[114,178,74,-0.4583333333333333],[114,178,75,-0.4583333333333333],[114,178,76,-0.4583333333333333],[114,178,77,-0.4583333333333333],[114,178,78,-0.4583333333333333],[114,178,79,-0.4583333333333333],[114,179,64,-0.4583333333333333],[114,179,65,-0.4583333333333333],[114,179,66,-0.4583333333333333],[114,179,67,-0.4583333333333333],[114,179,68,-0.4583333333333333],[114,179,69,-0.4583333333333333],[114,179,70,-0.4583333333333333],[114,179,71,-0.4583333333333333],[114,179,72,-0.4583333333333333],[114,179,73,-0.4583333333333333],[114,179,74,-0.4583333333333333],[114,179,75,-0.4583333333333333],[114,179,76,-0.4583333333333333],[114,179,77,-0.4583333333333333],[114,179,78,-0.4583333333333333],[114,179,79,-0.4583333333333333],[114,180,64,-0.4583333333333333],[114,180,65,-0.4583333333333333],[114,180,66,-0.4583333333333333],[114,180,67,-0.4583333333333333],[114,180,68,-0.4583333333333333],[114,180,69,-0.4583333333333333],[114,180,70,-0.4583333333333333],[114,180,71,-0.4583333333333333],[114,180,72,-0.4583333333333333],[114,180,73,-0.4583333333333333],[114,180,74,-0.4583333333333333],[114,180,75,-0.4583333333333333],[114,180,76,-0.4583333333333333],[114,180,77,-0.4583333333333333],[114,180,78,-0.4583333333333333],[114,180,79,-0.4583333333333333],[114,181,64,-0.4583333333333333],[114,181,65,-0.4583333333333333],[114,181,66,-0.4583333333333333],[114,181,67,-0.4583333333333333],[114,181,68,-0.4583333333333333],[114,181,69,-0.4583333333333333],[114,181,70,-0.4583333333333333],[114,181,71,-0.4583333333333333],[114,181,72,-0.4583333333333333],[114,181,73,-0.4583333333333333],[114,181,74,-0.4583333333333333],[114,181,75,-0.4583333333333333],[114,181,76,-0.4583333333333333],[114,181,77,-0.4583333333333333],[114,181,78,-0.4583333333333333],[114,181,79,-0.4583333333333333],[114,182,64,-0.4583333333333333],[114,182,65,-0.4583333333333333],[114,182,66,-0.4583333333333333],[114,182,67,-0.4583333333333333],[114,182,68,-0.4583333333333333],[114,182,69,-0.4583333333333333],[114,182,70,-0.4583333333333333],[114,182,71,-0.4583333333333333],[114,182,72,-0.4583333333333333],[114,182,73,-0.4583333333333333],[114,182,74,-0.4583333333333333],[114,182,75,-0.4583333333333333],[114,182,76,-0.4583333333333333],[114,182,77,-0.4583333333333333],[114,182,78,-0.4583333333333333],[114,182,79,-0.4583333333333333],[114,183,64,-0.4583333333333333],[114,183,65,-0.4583333333333333],[114,183,66,-0.4583333333333333],[114,183,67,-0.4583333333333333],[114,183,68,-0.4583333333333333],[114,183,69,-0.4583333333333333],[114,183,70,-0.4583333333333333],[114,183,71,-0.4583333333333333],[114,183,72,-0.4583333333333333],[114,183,73,-0.4583333333333333],[114,183,74,-0.4583333333333333],[114,183,75,-0.4583333333333333],[114,183,76,-0.4583333333333333],[114,183,77,-0.4583333333333333],[114,183,78,-0.4583333333333333],[114,183,79,-0.4583333333333333],[114,184,64,-0.4583333333333333],[114,184,65,-0.4583333333333333],[114,184,66,-0.4583333333333333],[114,184,67,-0.4583333333333333],[114,184,68,-0.4583333333333333],[114,184,69,-0.4583333333333333],[114,184,70,-0.4583333333333333],[114,184,71,-0.4583333333333333],[114,184,72,-0.4583333333333333],[114,184,73,-0.4583333333333333],[114,184,74,-0.4583333333333333],[114,184,75,-0.4583333333333333],[114,184,76,-0.4583333333333333],[114,184,77,-0.4583333333333333],[114,184,78,-0.4583333333333333],[114,184,79,-0.4583333333333333],[114,185,64,-0.4583333333333333],[114,185,65,-0.4583333333333333],[114,185,66,-0.4583333333333333],[114,185,67,-0.4583333333333333],[114,185,68,-0.4583333333333333],[114,185,69,-0.4583333333333333],[114,185,70,-0.4583333333333333],[114,185,71,-0.4583333333333333],[114,185,72,-0.4583333333333333],[114,185,73,-0.4583333333333333],[114,185,74,-0.4583333333333333],[114,185,75,-0.4583333333333333],[114,185,76,-0.4583333333333333],[114,185,77,-0.4583333333333333],[114,185,78,-0.4583333333333333],[114,185,79,-0.4583333333333333],[114,186,64,-0.4583333333333333],[114,186,65,-0.4583333333333333],[114,186,66,-0.4583333333333333],[114,186,67,-0.4583333333333333],[114,186,68,-0.4583333333333333],[114,186,69,-0.4583333333333333],[114,186,70,-0.4583333333333333],[114,186,71,-0.4583333333333333],[114,186,72,-0.4583333333333333],[114,186,73,-0.4583333333333333],[114,186,74,-0.4583333333333333],[114,186,75,-0.4583333333333333],[114,186,76,-0.4583333333333333],[114,186,77,-0.4583333333333333],[114,186,78,-0.4583333333333333],[114,186,79,-0.4583333333333333],[114,187,64,-0.4583333333333333],[114,187,65,-0.4583333333333333],[114,187,66,-0.4583333333333333],[114,187,67,-0.4583333333333333],[114,187,68,-0.4583333333333333],[114,187,69,-0.4583333333333333],[114,187,70,-0.4583333333333333],[114,187,71,-0.4583333333333333],[114,187,72,-0.4583333333333333],[114,187,73,-0.4583333333333333],[114,187,74,-0.4583333333333333],[114,187,75,-0.4583333333333333],[114,187,76,-0.4583333333333333],[114,187,77,-0.4583333333333333],[114,187,78,-0.4583333333333333],[114,187,79,-0.4583333333333333],[114,188,64,-0.4583333333333333],[114,188,65,-0.4583333333333333],[114,188,66,-0.4583333333333333],[114,188,67,-0.4583333333333333],[114,188,68,-0.4583333333333333],[114,188,69,-0.4583333333333333],[114,188,70,-0.4583333333333333],[114,188,71,-0.4583333333333333],[114,188,72,-0.4583333333333333],[114,188,73,-0.4583333333333333],[114,188,74,-0.4583333333333333],[114,188,75,-0.4583333333333333],[114,188,76,-0.4583333333333333],[114,188,77,-0.4583333333333333],[114,188,78,-0.4583333333333333],[114,188,79,-0.4583333333333333],[114,189,64,-0.4583333333333333],[114,189,65,-0.4583333333333333],[114,189,66,-0.4583333333333333],[114,189,67,-0.4583333333333333],[114,189,68,-0.4583333333333333],[114,189,69,-0.4583333333333333],[114,189,70,-0.4583333333333333],[114,189,71,-0.4583333333333333],[114,189,72,-0.4583333333333333],[114,189,73,-0.4583333333333333],[114,189,74,-0.4583333333333333],[114,189,75,-0.4583333333333333],[114,189,76,-0.4583333333333333],[114,189,77,-0.4583333333333333],[114,189,78,-0.4583333333333333],[114,189,79,-0.4583333333333333],[114,190,64,-0.4583333333333333],[114,190,65,-0.4583333333333333],[114,190,66,-0.4583333333333333],[114,190,67,-0.4583333333333333],[114,190,68,-0.4583333333333333],[114,190,69,-0.4583333333333333],[114,190,70,-0.4583333333333333],[114,190,71,-0.4583333333333333],[114,190,72,-0.4583333333333333],[114,190,73,-0.4583333333333333],[114,190,74,-0.4583333333333333],[114,190,75,-0.4583333333333333],[114,190,76,-0.4583333333333333],[114,190,77,-0.4583333333333333],[114,190,78,-0.4583333333333333],[114,190,79,-0.4583333333333333],[114,191,64,-0.4583333333333333],[114,191,65,-0.4583333333333333],[114,191,66,-0.4583333333333333],[114,191,67,-0.4583333333333333],[114,191,68,-0.4583333333333333],[114,191,69,-0.4583333333333333],[114,191,70,-0.4583333333333333],[114,191,71,-0.4583333333333333],[114,191,72,-0.4583333333333333],[114,191,73,-0.4583333333333333],[114,191,74,-0.4583333333333333],[114,191,75,-0.4583333333333333],[114,191,76,-0.4583333333333333],[114,191,77,-0.4583333333333333],[114,191,78,-0.4583333333333333],[114,191,79,-0.4583333333333333],[114,192,64,-0.4583333333333333],[114,192,65,-0.4583333333333333],[114,192,66,-0.4583333333333333],[114,192,67,-0.4583333333333333],[114,192,68,-0.4583333333333333],[114,192,69,-0.4583333333333333],[114,192,70,-0.4583333333333333],[114,192,71,-0.4583333333333333],[114,192,72,-0.4583333333333333],[114,192,73,-0.4583333333333333],[114,192,74,-0.4583333333333333],[114,192,75,-0.4583333333333333],[114,192,76,-0.4583333333333333],[114,192,77,-0.4583333333333333],[114,192,78,-0.4583333333333333],[114,192,79,-0.4583333333333333],[114,193,64,-0.4583333333333333],[114,193,65,-0.4583333333333333],[114,193,66,-0.4583333333333333],[114,193,67,-0.4583333333333333],[114,193,68,-0.4583333333333333],[114,193,69,-0.4583333333333333],[114,193,70,-0.4583333333333333],[114,193,71,-0.4583333333333333],[114,193,72,-0.4583333333333333],[114,193,73,-0.4583333333333333],[114,193,74,-0.4583333333333333],[114,193,75,-0.4583333333333333],[114,193,76,-0.4583333333333333],[114,193,77,-0.4583333333333333],[114,193,78,-0.4583333333333333],[114,193,79,-0.4583333333333333],[114,194,64,-0.4583333333333333],[114,194,65,-0.4583333333333333],[114,194,66,-0.4583333333333333],[114,194,67,-0.4583333333333333],[114,194,68,-0.4583333333333333],[114,194,69,-0.4583333333333333],[114,194,70,-0.4583333333333333],[114,194,71,-0.4583333333333333],[114,194,72,-0.4583333333333333],[114,194,73,-0.4583333333333333],[114,194,74,-0.4583333333333333],[114,194,75,-0.4583333333333333],[114,194,76,-0.4583333333333333],[114,194,77,-0.4583333333333333],[114,194,78,-0.4583333333333333],[114,194,79,-0.4583333333333333],[114,195,64,-0.4583333333333333],[114,195,65,-0.4583333333333333],[114,195,66,-0.4583333333333333],[114,195,67,-0.4583333333333333],[114,195,68,-0.4583333333333333],[114,195,69,-0.4583333333333333],[114,195,70,-0.4583333333333333],[114,195,71,-0.4583333333333333],[114,195,72,-0.4583333333333333],[114,195,73,-0.4583333333333333],[114,195,74,-0.4583333333333333],[114,195,75,-0.4583333333333333],[114,195,76,-0.4583333333333333],[114,195,77,-0.4583333333333333],[114,195,78,-0.4583333333333333],[114,195,79,-0.4583333333333333],[114,196,64,-0.4583333333333333],[114,196,65,-0.4583333333333333],[114,196,66,-0.4583333333333333],[114,196,67,-0.4583333333333333],[114,196,68,-0.4583333333333333],[114,196,69,-0.4583333333333333],[114,196,70,-0.4583333333333333],[114,196,71,-0.4583333333333333],[114,196,72,-0.4583333333333333],[114,196,73,-0.4583333333333333],[114,196,74,-0.4583333333333333],[114,196,75,-0.4583333333333333],[114,196,76,-0.4583333333333333],[114,196,77,-0.4583333333333333],[114,196,78,-0.4583333333333333],[114,196,79,-0.4583333333333333],[114,197,64,-0.4583333333333333],[114,197,65,-0.4583333333333333],[114,197,66,-0.4583333333333333],[114,197,67,-0.4583333333333333],[114,197,68,-0.4583333333333333],[114,197,69,-0.4583333333333333],[114,197,70,-0.4583333333333333],[114,197,71,-0.4583333333333333],[114,197,72,-0.4583333333333333],[114,197,73,-0.4583333333333333],[114,197,74,-0.4583333333333333],[114,197,75,-0.4583333333333333],[114,197,76,-0.4583333333333333],[114,197,77,-0.4583333333333333],[114,197,78,-0.4583333333333333],[114,197,79,-0.4583333333333333],[114,198,64,-0.4583333333333333],[114,198,65,-0.4583333333333333],[114,198,66,-0.4583333333333333],[114,198,67,-0.4583333333333333],[114,198,68,-0.4583333333333333],[114,198,69,-0.4583333333333333],[114,198,70,-0.4583333333333333],[114,198,71,-0.4583333333333333],[114,198,72,-0.4583333333333333],[114,198,73,-0.4583333333333333],[114,198,74,-0.4583333333333333],[114,198,75,-0.4583333333333333],[114,198,76,-0.4583333333333333],[114,198,77,-0.4583333333333333],[114,198,78,-0.4583333333333333],[114,198,79,-0.4583333333333333],[114,199,64,-0.4583333333333333],[114,199,65,-0.4583333333333333],[114,199,66,-0.4583333333333333],[114,199,67,-0.4583333333333333],[114,199,68,-0.4583333333333333],[114,199,69,-0.4583333333333333],[114,199,70,-0.4583333333333333],[114,199,71,-0.4583333333333333],[114,199,72,-0.4583333333333333],[114,199,73,-0.4583333333333333],[114,199,74,-0.4583333333333333],[114,199,75,-0.4583333333333333],[114,199,76,-0.4583333333333333],[114,199,77,-0.4583333333333333],[114,199,78,-0.4583333333333333],[114,199,79,-0.4583333333333333],[114,200,64,-0.4583333333333333],[114,200,65,-0.4583333333333333],[114,200,66,-0.4583333333333333],[114,200,67,-0.4583333333333333],[114,200,68,-0.4583333333333333],[114,200,69,-0.4583333333333333],[114,200,70,-0.4583333333333333],[114,200,71,-0.4583333333333333],[114,200,72,-0.4583333333333333],[114,200,73,-0.4583333333333333],[114,200,74,-0.4583333333333333],[114,200,75,-0.4583333333333333],[114,200,76,-0.4583333333333333],[114,200,77,-0.4583333333333333],[114,200,78,-0.4583333333333333],[114,200,79,-0.4583333333333333],[114,201,64,-0.4583333333333333],[114,201,65,-0.4583333333333333],[114,201,66,-0.4583333333333333],[114,201,67,-0.4583333333333333],[114,201,68,-0.4583333333333333],[114,201,69,-0.4583333333333333],[114,201,70,-0.4583333333333333],[114,201,71,-0.4583333333333333],[114,201,72,-0.4583333333333333],[114,201,73,-0.4583333333333333],[114,201,74,-0.4583333333333333],[114,201,75,-0.4583333333333333],[114,201,76,-0.4583333333333333],[114,201,77,-0.4583333333333333],[114,201,78,-0.4583333333333333],[114,201,79,-0.4583333333333333],[114,202,64,-0.4583333333333333],[114,202,65,-0.4583333333333333],[114,202,66,-0.4583333333333333],[114,202,67,-0.4583333333333333],[114,202,68,-0.4583333333333333],[114,202,69,-0.4583333333333333],[114,202,70,-0.4583333333333333],[114,202,71,-0.4583333333333333],[114,202,72,-0.4583333333333333],[114,202,73,-0.4583333333333333],[114,202,74,-0.4583333333333333],[114,202,75,-0.4583333333333333],[114,202,76,-0.4583333333333333],[114,202,77,-0.4583333333333333],[114,202,78,-0.4583333333333333],[114,202,79,-0.4583333333333333],[114,203,64,-0.4583333333333333],[114,203,65,-0.4583333333333333],[114,203,66,-0.4583333333333333],[114,203,67,-0.4583333333333333],[114,203,68,-0.4583333333333333],[114,203,69,-0.4583333333333333],[114,203,70,-0.4583333333333333],[114,203,71,-0.4583333333333333],[114,203,72,-0.4583333333333333],[114,203,73,-0.4583333333333333],[114,203,74,-0.4583333333333333],[114,203,75,-0.4583333333333333],[114,203,76,-0.4583333333333333],[114,203,77,-0.4583333333333333],[114,203,78,-0.4583333333333333],[114,203,79,-0.4583333333333333],[114,204,64,-0.4583333333333333],[114,204,65,-0.4583333333333333],[114,204,66,-0.4583333333333333],[114,204,67,-0.4583333333333333],[114,204,68,-0.4583333333333333],[114,204,69,-0.4583333333333333],[114,204,70,-0.4583333333333333],[114,204,71,-0.4583333333333333],[114,204,72,-0.4583333333333333],[114,204,73,-0.4583333333333333],[114,204,74,-0.4583333333333333],[114,204,75,-0.4583333333333333],[114,204,76,-0.4583333333333333],[114,204,77,-0.4583333333333333],[114,204,78,-0.4583333333333333],[114,204,79,-0.4583333333333333],[114,205,64,-0.4583333333333333],[114,205,65,-0.4583333333333333],[114,205,66,-0.4583333333333333],[114,205,67,-0.4583333333333333],[114,205,68,-0.4583333333333333],[114,205,69,-0.4583333333333333],[114,205,70,-0.4583333333333333],[114,205,71,-0.4583333333333333],[114,205,72,-0.4583333333333333],[114,205,73,-0.4583333333333333],[114,205,74,-0.4583333333333333],[114,205,75,-0.4583333333333333],[114,205,76,-0.4583333333333333],[114,205,77,-0.4583333333333333],[114,205,78,-0.4583333333333333],[114,205,79,-0.4583333333333333],[114,206,64,-0.4583333333333333],[114,206,65,-0.4583333333333333],[114,206,66,-0.4583333333333333],[114,206,67,-0.4583333333333333],[114,206,68,-0.4583333333333333],[114,206,69,-0.4583333333333333],[114,206,70,-0.4583333333333333],[114,206,71,-0.4583333333333333],[114,206,72,-0.4583333333333333],[114,206,73,-0.4583333333333333],[114,206,74,-0.4583333333333333],[114,206,75,-0.4583333333333333],[114,206,76,-0.4583333333333333],[114,206,77,-0.4583333333333333],[114,206,78,-0.4583333333333333],[114,206,79,-0.4583333333333333],[114,207,64,-0.4583333333333333],[114,207,65,-0.4583333333333333],[114,207,66,-0.4583333333333333],[114,207,67,-0.4583333333333333],[114,207,68,-0.4583333333333333],[114,207,69,-0.4583333333333333],[114,207,70,-0.4583333333333333],[114,207,71,-0.4583333333333333],[114,207,72,-0.4583333333333333],[114,207,73,-0.4583333333333333],[114,207,74,-0.4583333333333333],[114,207,75,-0.4583333333333333],[114,207,76,-0.4583333333333333],[114,207,77,-0.4583333333333333],[114,207,78,-0.4583333333333333],[114,207,79,-0.4583333333333333],[114,208,64,-0.4583333333333333],[114,208,65,-0.4583333333333333],[114,208,66,-0.4583333333333333],[114,208,67,-0.4583333333333333],[114,208,68,-0.4583333333333333],[114,208,69,-0.4583333333333333],[114,208,70,-0.4583333333333333],[114,208,71,-0.4583333333333333],[114,208,72,-0.4583333333333333],[114,208,73,-0.4583333333333333],[114,208,74,-0.4583333333333333],[114,208,75,-0.4583333333333333],[114,208,76,-0.4583333333333333],[114,208,77,-0.4583333333333333],[114,208,78,-0.4583333333333333],[114,208,79,-0.4583333333333333],[114,209,64,-0.4583333333333333],[114,209,65,-0.4583333333333333],[114,209,66,-0.4583333333333333],[114,209,67,-0.4583333333333333],[114,209,68,-0.4583333333333333],[114,209,69,-0.4583333333333333],[114,209,70,-0.4583333333333333],[114,209,71,-0.4583333333333333],[114,209,72,-0.4583333333333333],[114,209,73,-0.4583333333333333],[114,209,74,-0.4583333333333333],[114,209,75,-0.4583333333333333],[114,209,76,-0.4583333333333333],[114,209,77,-0.4583333333333333],[114,209,78,-0.4583333333333333],[114,209,79,-0.4583333333333333],[114,210,64,-0.4583333333333333],[114,210,65,-0.4583333333333333],[114,210,66,-0.4583333333333333],[114,210,67,-0.4583333333333333],[114,210,68,-0.4583333333333333],[114,210,69,-0.4583333333333333],[114,210,70,-0.4583333333333333],[114,210,71,-0.4583333333333333],[114,210,72,-0.4583333333333333],[114,210,73,-0.4583333333333333],[114,210,74,-0.4583333333333333],[114,210,75,-0.4583333333333333],[114,210,76,-0.4583333333333333],[114,210,77,-0.4583333333333333],[114,210,78,-0.4583333333333333],[114,210,79,-0.4583333333333333],[114,211,64,-0.4583333333333333],[114,211,65,-0.4583333333333333],[114,211,66,-0.4583333333333333],[114,211,67,-0.4583333333333333],[114,211,68,-0.4583333333333333],[114,211,69,-0.4583333333333333],[114,211,70,-0.4583333333333333],[114,211,71,-0.4583333333333333],[114,211,72,-0.4583333333333333],[114,211,73,-0.4583333333333333],[114,211,74,-0.4583333333333333],[114,211,75,-0.4583333333333333],[114,211,76,-0.4583333333333333],[114,211,77,-0.4583333333333333],[114,211,78,-0.4583333333333333],[114,211,79,-0.4583333333333333],[114,212,64,-0.4583333333333333],[114,212,65,-0.4583333333333333],[114,212,66,-0.4583333333333333],[114,212,67,-0.4583333333333333],[114,212,68,-0.4583333333333333],[114,212,69,-0.4583333333333333],[114,212,70,-0.4583333333333333],[114,212,71,-0.4583333333333333],[114,212,72,-0.4583333333333333],[114,212,73,-0.4583333333333333],[114,212,74,-0.4583333333333333],[114,212,75,-0.4583333333333333],[114,212,76,-0.4583333333333333],[114,212,77,-0.4583333333333333],[114,212,78,-0.4583333333333333],[114,212,79,-0.4583333333333333],[114,213,64,-0.4583333333333333],[114,213,65,-0.4583333333333333],[114,213,66,-0.4583333333333333],[114,213,67,-0.4583333333333333],[114,213,68,-0.4583333333333333],[114,213,69,-0.4583333333333333],[114,213,70,-0.4583333333333333],[114,213,71,-0.4583333333333333],[114,213,72,-0.4583333333333333],[114,213,73,-0.4583333333333333],[114,213,74,-0.4583333333333333],[114,213,75,-0.4583333333333333],[114,213,76,-0.4583333333333333],[114,213,77,-0.4583333333333333],[114,213,78,-0.4583333333333333],[114,213,79,-0.4583333333333333],[114,214,64,-0.4583333333333333],[114,214,65,-0.4583333333333333],[114,214,66,-0.4583333333333333],[114,214,67,-0.4583333333333333],[114,214,68,-0.4583333333333333],[114,214,69,-0.4583333333333333],[114,214,70,-0.4583333333333333],[114,214,71,-0.4583333333333333],[114,214,72,-0.4583333333333333],[114,214,73,-0.4583333333333333],[114,214,74,-0.4583333333333333],[114,214,75,-0.4583333333333333],[114,214,76,-0.4583333333333333],[114,214,77,-0.4583333333333333],[114,214,78,-0.4583333333333333],[114,214,79,-0.4583333333333333],[114,215,64,-0.4583333333333333],[114,215,65,-0.4583333333333333],[114,215,66,-0.4583333333333333],[114,215,67,-0.4583333333333333],[114,215,68,-0.4583333333333333],[114,215,69,-0.4583333333333333],[114,215,70,-0.4583333333333333],[114,215,71,-0.4583333333333333],[114,215,72,-0.4583333333333333],[114,215,73,-0.4583333333333333],[114,215,74,-0.4583333333333333],[114,215,75,-0.4583333333333333],[114,215,76,-0.4583333333333333],[114,215,77,-0.4583333333333333],[114,215,78,-0.4583333333333333],[114,215,79,-0.4583333333333333],[114,216,64,-0.4583333333333333],[114,216,65,-0.4583333333333333],[114,216,66,-0.4583333333333333],[114,216,67,-0.4583333333333333],[114,216,68,-0.4583333333333333],[114,216,69,-0.4583333333333333],[114,216,70,-0.4583333333333333],[114,216,71,-0.4583333333333333],[114,216,72,-0.4583333333333333],[114,216,73,-0.4583333333333333],[114,216,74,-0.4583333333333333],[114,216,75,-0.4583333333333333],[114,216,76,-0.4583333333333333],[114,216,77,-0.4583333333333333],[114,216,78,-0.4583333333333333],[114,216,79,-0.4583333333333333],[114,217,64,-0.4583333333333333],[114,217,65,-0.4583333333333333],[114,217,66,-0.4583333333333333],[114,217,67,-0.4583333333333333],[114,217,68,-0.4583333333333333],[114,217,69,-0.4583333333333333],[114,217,70,-0.4583333333333333],[114,217,71,-0.4583333333333333],[114,217,72,-0.4583333333333333],[114,217,73,-0.4583333333333333],[114,217,74,-0.4583333333333333],[114,217,75,-0.4583333333333333],[114,217,76,-0.4583333333333333],[114,217,77,-0.4583333333333333],[114,217,78,-0.4583333333333333],[114,217,79,-0.4583333333333333],[114,218,64,-0.4583333333333333],[114,218,65,-0.4583333333333333],[114,218,66,-0.4583333333333333],[114,218,67,-0.4583333333333333],[114,218,68,-0.4583333333333333],[114,218,69,-0.4583333333333333],[114,218,70,-0.4583333333333333],[114,218,71,-0.4583333333333333],[114,218,72,-0.4583333333333333],[114,218,73,-0.4583333333333333],[114,218,74,-0.4583333333333333],[114,218,75,-0.4583333333333333],[114,218,76,-0.4583333333333333],[114,218,77,-0.4583333333333333],[114,218,78,-0.4583333333333333],[114,218,79,-0.4583333333333333],[114,219,64,-0.4583333333333333],[114,219,65,-0.4583333333333333],[114,219,66,-0.4583333333333333],[114,219,67,-0.4583333333333333],[114,219,68,-0.4583333333333333],[114,219,69,-0.4583333333333333],[114,219,70,-0.4583333333333333],[114,219,71,-0.4583333333333333],[114,219,72,-0.4583333333333333],[114,219,73,-0.4583333333333333],[114,219,74,-0.4583333333333333],[114,219,75,-0.4583333333333333],[114,219,76,-0.4583333333333333],[114,219,77,-0.4583333333333333],[114,219,78,-0.4583333333333333],[114,219,79,-0.4583333333333333],[114,220,64,-0.4583333333333333],[114,220,65,-0.4583333333333333],[114,220,66,-0.4583333333333333],[114,220,67,-0.4583333333333333],[114,220,68,-0.4583333333333333],[114,220,69,-0.4583333333333333],[114,220,70,-0.4583333333333333],[114,220,71,-0.4583333333333333],[114,220,72,-0.4583333333333333],[114,220,73,-0.4583333333333333],[114,220,74,-0.4583333333333333],[114,220,75,-0.4583333333333333],[114,220,76,-0.4583333333333333],[114,220,77,-0.4583333333333333],[114,220,78,-0.4583333333333333],[114,220,79,-0.4583333333333333],[114,221,64,-0.4583333333333333],[114,221,65,-0.4583333333333333],[114,221,66,-0.4583333333333333],[114,221,67,-0.4583333333333333],[114,221,68,-0.4583333333333333],[114,221,69,-0.4583333333333333],[114,221,70,-0.4583333333333333],[114,221,71,-0.4583333333333333],[114,221,72,-0.4583333333333333],[114,221,73,-0.4583333333333333],[114,221,74,-0.4583333333333333],[114,221,75,-0.4583333333333333],[114,221,76,-0.4583333333333333],[114,221,77,-0.4583333333333333],[114,221,78,-0.4583333333333333],[114,221,79,-0.4583333333333333],[114,222,64,-0.4583333333333333],[114,222,65,-0.4583333333333333],[114,222,66,-0.4583333333333333],[114,222,67,-0.4583333333333333],[114,222,68,-0.4583333333333333],[114,222,69,-0.4583333333333333],[114,222,70,-0.4583333333333333],[114,222,71,-0.4583333333333333],[114,222,72,-0.4583333333333333],[114,222,73,-0.4583333333333333],[114,222,74,-0.4583333333333333],[114,222,75,-0.4583333333333333],[114,222,76,-0.4583333333333333],[114,222,77,-0.4583333333333333],[114,222,78,-0.4583333333333333],[114,222,79,-0.4583333333333333],[114,223,64,-0.4583333333333333],[114,223,65,-0.4583333333333333],[114,223,66,-0.4583333333333333],[114,223,67,-0.4583333333333333],[114,223,68,-0.4583333333333333],[114,223,69,-0.4583333333333333],[114,223,70,-0.4583333333333333],[114,223,71,-0.4583333333333333],[114,223,72,-0.4583333333333333],[114,223,73,-0.4583333333333333],[114,223,74,-0.4583333333333333],[114,223,75,-0.4583333333333333],[114,223,76,-0.4583333333333333],[114,223,77,-0.4583333333333333],[114,223,78,-0.4583333333333333],[114,223,79,-0.4583333333333333],[114,224,64,-0.4583333333333333],[114,224,65,-0.4583333333333333],[114,224,66,-0.4583333333333333],[114,224,67,-0.4583333333333333],[114,224,68,-0.4583333333333333],[114,224,69,-0.4583333333333333],[114,224,70,-0.4583333333333333],[114,224,71,-0.4583333333333333],[114,224,72,-0.4583333333333333],[114,224,73,-0.4583333333333333],[114,224,74,-0.4583333333333333],[114,224,75,-0.4583333333333333],[114,224,76,-0.4583333333333333],[114,224,77,-0.4583333333333333],[114,224,78,-0.4583333333333333],[114,224,79,-0.4583333333333333],[114,225,64,-0.4583333333333333],[114,225,65,-0.4583333333333333],[114,225,66,-0.4583333333333333],[114,225,67,-0.4583333333333333],[114,225,68,-0.4583333333333333],[114,225,69,-0.4583333333333333],[114,225,70,-0.4583333333333333],[114,225,71,-0.4583333333333333],[114,225,72,-0.4583333333333333],[114,225,73,-0.4583333333333333],[114,225,74,-0.4583333333333333],[114,225,75,-0.4583333333333333],[114,225,76,-0.4583333333333333],[114,225,77,-0.4583333333333333],[114,225,78,-0.4583333333333333],[114,225,79,-0.4583333333333333],[114,226,64,-0.4583333333333333],[114,226,65,-0.4583333333333333],[114,226,66,-0.4583333333333333],[114,226,67,-0.4583333333333333],[114,226,68,-0.4583333333333333],[114,226,69,-0.4583333333333333],[114,226,70,-0.4583333333333333],[114,226,71,-0.4583333333333333],[114,226,72,-0.4583333333333333],[114,226,73,-0.4583333333333333],[114,226,74,-0.4583333333333333],[114,226,75,-0.4583333333333333],[114,226,76,-0.4583333333333333],[114,226,77,-0.4583333333333333],[114,226,78,-0.4583333333333333],[114,226,79,-0.4583333333333333],[114,227,64,-0.4583333333333333],[114,227,65,-0.4583333333333333],[114,227,66,-0.4583333333333333],[114,227,67,-0.4583333333333333],[114,227,68,-0.4583333333333333],[114,227,69,-0.4583333333333333],[114,227,70,-0.4583333333333333],[114,227,71,-0.4583333333333333],[114,227,72,-0.4583333333333333],[114,227,73,-0.4583333333333333],[114,227,74,-0.4583333333333333],[114,227,75,-0.4583333333333333],[114,227,76,-0.4583333333333333],[114,227,77,-0.4583333333333333],[114,227,78,-0.4583333333333333],[114,227,79,-0.4583333333333333],[114,228,64,-0.4583333333333333],[114,228,65,-0.4583333333333333],[114,228,66,-0.4583333333333333],[114,228,67,-0.4583333333333333],[114,228,68,-0.4583333333333333],[114,228,69,-0.4583333333333333],[114,228,70,-0.4583333333333333],[114,228,71,-0.4583333333333333],[114,228,72,-0.4583333333333333],[114,228,73,-0.4583333333333333],[114,228,74,-0.4583333333333333],[114,228,75,-0.4583333333333333],[114,228,76,-0.4583333333333333],[114,228,77,-0.4583333333333333],[114,228,78,-0.4583333333333333],[114,228,79,-0.4583333333333333],[114,229,64,-0.4583333333333333],[114,229,65,-0.4583333333333333],[114,229,66,-0.4583333333333333],[114,229,67,-0.4583333333333333],[114,229,68,-0.4583333333333333],[114,229,69,-0.4583333333333333],[114,229,70,-0.4583333333333333],[114,229,71,-0.4583333333333333],[114,229,72,-0.4583333333333333],[114,229,73,-0.4583333333333333],[114,229,74,-0.4583333333333333],[114,229,75,-0.4583333333333333],[114,229,76,-0.4583333333333333],[114,229,77,-0.4583333333333333],[114,229,78,-0.4583333333333333],[114,229,79,-0.4583333333333333],[114,230,64,-0.4583333333333333],[114,230,65,-0.4583333333333333],[114,230,66,-0.4583333333333333],[114,230,67,-0.4583333333333333],[114,230,68,-0.4583333333333333],[114,230,69,-0.4583333333333333],[114,230,70,-0.4583333333333333],[114,230,71,-0.4583333333333333],[114,230,72,-0.4583333333333333],[114,230,73,-0.4583333333333333],[114,230,74,-0.4583333333333333],[114,230,75,-0.4583333333333333],[114,230,76,-0.4583333333333333],[114,230,77,-0.4583333333333333],[114,230,78,-0.4583333333333333],[114,230,79,-0.4583333333333333],[114,231,64,-0.4583333333333333],[114,231,65,-0.4583333333333333],[114,231,66,-0.4583333333333333],[114,231,67,-0.4583333333333333],[114,231,68,-0.4583333333333333],[114,231,69,-0.4583333333333333],[114,231,70,-0.4583333333333333],[114,231,71,-0.4583333333333333],[114,231,72,-0.4583333333333333],[114,231,73,-0.4583333333333333],[114,231,74,-0.4583333333333333],[114,231,75,-0.4583333333333333],[114,231,76,-0.4583333333333333],[114,231,77,-0.4583333333333333],[114,231,78,-0.4583333333333333],[114,231,79,-0.4583333333333333],[114,232,64,-0.4583333333333333],[114,232,65,-0.4583333333333333],[114,232,66,-0.4583333333333333],[114,232,67,-0.4583333333333333],[114,232,68,-0.4583333333333333],[114,232,69,-0.4583333333333333],[114,232,70,-0.4583333333333333],[114,232,71,-0.4583333333333333],[114,232,72,-0.4583333333333333],[114,232,73,-0.4583333333333333],[114,232,74,-0.4583333333333333],[114,232,75,-0.4583333333333333],[114,232,76,-0.4583333333333333],[114,232,77,-0.4583333333333333],[114,232,78,-0.4583333333333333],[114,232,79,-0.4583333333333333],[114,233,64,-0.4583333333333333],[114,233,65,-0.4583333333333333],[114,233,66,-0.4583333333333333],[114,233,67,-0.4583333333333333],[114,233,68,-0.4583333333333333],[114,233,69,-0.4583333333333333],[114,233,70,-0.4583333333333333],[114,233,71,-0.4583333333333333],[114,233,72,-0.4583333333333333],[114,233,73,-0.4583333333333333],[114,233,74,-0.4583333333333333],[114,233,75,-0.4583333333333333],[114,233,76,-0.4583333333333333],[114,233,77,-0.4583333333333333],[114,233,78,-0.4583333333333333],[114,233,79,-0.4583333333333333],[114,234,64,-0.4583333333333333],[114,234,65,-0.4583333333333333],[114,234,66,-0.4583333333333333],[114,234,67,-0.4583333333333333],[114,234,68,-0.4583333333333333],[114,234,69,-0.4583333333333333],[114,234,70,-0.4583333333333333],[114,234,71,-0.4583333333333333],[114,234,72,-0.4583333333333333],[114,234,73,-0.4583333333333333],[114,234,74,-0.4583333333333333],[114,234,75,-0.4583333333333333],[114,234,76,-0.4583333333333333],[114,234,77,-0.4583333333333333],[114,234,78,-0.4583333333333333],[114,234,79,-0.4583333333333333],[114,235,64,-0.4583333333333333],[114,235,65,-0.4583333333333333],[114,235,66,-0.4583333333333333],[114,235,67,-0.4583333333333333],[114,235,68,-0.4583333333333333],[114,235,69,-0.4583333333333333],[114,235,70,-0.4583333333333333],[114,235,71,-0.4583333333333333],[114,235,72,-0.4583333333333333],[114,235,73,-0.4583333333333333],[114,235,74,-0.4583333333333333],[114,235,75,-0.4583333333333333],[114,235,76,-0.4583333333333333],[114,235,77,-0.4583333333333333],[114,235,78,-0.4583333333333333],[114,235,79,-0.4583333333333333],[114,236,64,-0.4583333333333333],[114,236,65,-0.4583333333333333],[114,236,66,-0.4583333333333333],[114,236,67,-0.4583333333333333],[114,236,68,-0.4583333333333333],[114,236,69,-0.4583333333333333],[114,236,70,-0.4583333333333333],[114,236,71,-0.4583333333333333],[114,236,72,-0.4583333333333333],[114,236,73,-0.4583333333333333],[114,236,74,-0.4583333333333333],[114,236,75,-0.4583333333333333],[114,236,76,-0.4583333333333333],[114,236,77,-0.4583333333333333],[114,236,78,-0.4583333333333333],[114,236,79,-0.4583333333333333],[114,237,64,-0.4583333333333333],[114,237,65,-0.4583333333333333],[114,237,66,-0.4583333333333333],[114,237,67,-0.4583333333333333],[114,237,68,-0.4583333333333333],[114,237,69,-0.4583333333333333],[114,237,70,-0.4583333333333333],[114,237,71,-0.4583333333333333],[114,237,72,-0.4583333333333333],[114,237,73,-0.4583333333333333],[114,237,74,-0.4583333333333333],[114,237,75,-0.4583333333333333],[114,237,76,-0.4583333333333333],[114,237,77,-0.4583333333333333],[114,237,78,-0.4583333333333333],[114,237,79,-0.4583333333333333],[114,238,64,-0.4583333333333333],[114,238,65,-0.4583333333333333],[114,238,66,-0.4583333333333333],[114,238,67,-0.4583333333333333],[114,238,68,-0.4583333333333333],[114,238,69,-0.4583333333333333],[114,238,70,-0.4583333333333333],[114,238,71,-0.4583333333333333],[114,238,72,-0.4583333333333333],[114,238,73,-0.4583333333333333],[114,238,74,-0.4583333333333333],[114,238,75,-0.4583333333333333],[114,238,76,-0.4583333333333333],[114,238,77,-0.4583333333333333],[114,238,78,-0.4583333333333333],[114,238,79,-0.4583333333333333],[114,239,64,-0.4583333333333333],[114,239,65,-0.4583333333333333],[114,239,66,-0.4583333333333333],[114,239,67,-0.4583333333333333],[114,239,68,-0.4583333333333333],[114,239,69,-0.4583333333333333],[114,239,70,-0.4583333333333333],[114,239,71,-0.4583333333333333],[114,239,72,-0.4583333333333333],[114,239,73,-0.4583333333333333],[114,239,74,-0.4583333333333333],[114,239,75,-0.4583333333333333],[114,239,76,-0.4583333333333333],[114,239,77,-0.4583333333333333],[114,239,78,-0.4583333333333333],[114,239,79,-0.4583333333333333],[114,240,64,-0.4583333333333333],[114,240,65,-0.4583333333333333],[114,240,66,-0.4583333333333333],[114,240,67,-0.4583333333333333],[114,240,68,-0.4583333333333333],[114,240,69,-0.4583333333333333],[114,240,70,-0.4583333333333333],[114,240,71,-0.4583333333333333],[114,240,72,-0.4583333333333333],[114,240,73,-0.4583333333333333],[114,240,74,-0.4583333333333333],[114,240,75,-0.4583333333333333],[114,240,76,-0.4583333333333333],[114,240,77,-0.4583333333333333],[114,240,78,-0.4583333333333333],[114,240,79,-0.4583333333333333],[114,241,64,-0.4583333333333333],[114,241,65,-0.4583333333333333],[114,241,66,-0.4583333333333333],[114,241,67,-0.4583333333333333],[114,241,68,-0.4583333333333333],[114,241,69,-0.4583333333333333],[114,241,70,-0.4583333333333333],[114,241,71,-0.4583333333333333],[114,241,72,-0.4583333333333333],[114,241,73,-0.4583333333333333],[114,241,74,-0.4583333333333333],[114,241,75,-0.4583333333333333],[114,241,76,-0.4583333333333333],[114,241,77,-0.4583333333333333],[114,241,78,-0.4583333333333333],[114,241,79,-0.4583333333333333],[114,242,64,-0.4583333333333333],[114,242,65,-0.4583333333333333],[114,242,66,-0.4583333333333333],[114,242,67,-0.4583333333333333],[114,242,68,-0.4583333333333333],[114,242,69,-0.4583333333333333],[114,242,70,-0.4583333333333333],[114,242,71,-0.4583333333333333],[114,242,72,-0.4583333333333333],[114,242,73,-0.4583333333333333],[114,242,74,-0.4583333333333333],[114,242,75,-0.4583333333333333],[114,242,76,-0.4583333333333333],[114,242,77,-0.4583333333333333],[114,242,78,-0.4583333333333333],[114,242,79,-0.4583333333333333],[114,243,64,-0.4583333333333333],[114,243,65,-0.4583333333333333],[114,243,66,-0.4583333333333333],[114,243,67,-0.4583333333333333],[114,243,68,-0.4583333333333333],[114,243,69,-0.4583333333333333],[114,243,70,-0.4583333333333333],[114,243,71,-0.4583333333333333],[114,243,72,-0.4583333333333333],[114,243,73,-0.4583333333333333],[114,243,74,-0.4583333333333333],[114,243,75,-0.4583333333333333],[114,243,76,-0.4583333333333333],[114,243,77,-0.4583333333333333],[114,243,78,-0.4583333333333333],[114,243,79,-0.4583333333333333],[114,244,64,-0.4583333333333333],[114,244,65,-0.4583333333333333],[114,244,66,-0.4583333333333333],[114,244,67,-0.4583333333333333],[114,244,68,-0.4583333333333333],[114,244,69,-0.4583333333333333],[114,244,70,-0.4583333333333333],[114,244,71,-0.4583333333333333],[114,244,72,-0.4583333333333333],[114,244,73,-0.4583333333333333],[114,244,74,-0.4583333333333333],[114,244,75,-0.4583333333333333],[114,244,76,-0.4583333333333333],[114,244,77,-0.4583333333333333],[114,244,78,-0.4583333333333333],[114,244,79,-0.4583333333333333],[114,245,64,-0.4583333333333333],[114,245,65,-0.4583333333333333],[114,245,66,-0.4583333333333333],[114,245,67,-0.4583333333333333],[114,245,68,-0.4583333333333333],[114,245,69,-0.4583333333333333],[114,245,70,-0.4583333333333333],[114,245,71,-0.4583333333333333],[114,245,72,-0.4583333333333333],[114,245,73,-0.4583333333333333],[114,245,74,-0.4583333333333333],[114,245,75,-0.4583333333333333],[114,245,76,-0.4583333333333333],[114,245,77,-0.4583333333333333],[114,245,78,-0.4583333333333333],[114,245,79,-0.4583333333333333],[114,246,64,-0.4583333333333333],[114,246,65,-0.4583333333333333],[114,246,66,-0.4583333333333333],[114,246,67,-0.4583333333333333],[114,246,68,-0.4583333333333333],[114,246,69,-0.4583333333333333],[114,246,70,-0.4583333333333333],[114,246,71,-0.4583333333333333],[114,246,72,-0.4583333333333333],[114,246,73,-0.4583333333333333],[114,246,74,-0.4583333333333333],[114,246,75,-0.4583333333333333],[114,246,76,-0.4583333333333333],[114,246,77,-0.4583333333333333],[114,246,78,-0.4583333333333333],[114,246,79,-0.4583333333333333],[114,247,64,-0.4583333333333333],[114,247,65,-0.4583333333333333],[114,247,66,-0.4583333333333333],[114,247,67,-0.4583333333333333],[114,247,68,-0.4583333333333333],[114,247,69,-0.4583333333333333],[114,247,70,-0.4583333333333333],[114,247,71,-0.4583333333333333],[114,247,72,-0.4583333333333333],[114,247,73,-0.4583333333333333],[114,247,74,-0.4583333333333333],[114,247,75,-0.4583333333333333],[114,247,76,-0.4583333333333333],[114,247,77,-0.4583333333333333],[114,247,78,-0.4583333333333333],[114,247,79,-0.4583333333333333],[114,248,64,-0.4583333333333333],[114,248,65,-0.4583333333333333],[114,248,66,-0.4583333333333333],[114,248,67,-0.4583333333333333],[114,248,68,-0.4583333333333333],[114,248,69,-0.4583333333333333],[114,248,70,-0.4583333333333333],[114,248,71,-0.4583333333333333],[114,248,72,-0.4583333333333333],[114,248,73,-0.4583333333333333],[114,248,74,-0.4583333333333333],[114,248,75,-0.4583333333333333],[114,248,76,-0.4583333333333333],[114,248,77,-0.4583333333333333],[114,248,78,-0.4583333333333333],[114,248,79,-0.4583333333333333],[114,249,64,-0.4583333333333333],[114,249,65,-0.4583333333333333],[114,249,66,-0.4583333333333333],[114,249,67,-0.4583333333333333],[114,249,68,-0.4583333333333333],[114,249,69,-0.4583333333333333],[114,249,70,-0.4583333333333333],[114,249,71,-0.4583333333333333],[114,249,72,-0.4583333333333333],[114,249,73,-0.4583333333333333],[114,249,74,-0.4583333333333333],[114,249,75,-0.4583333333333333],[114,249,76,-0.4583333333333333],[114,249,77,-0.4583333333333333],[114,249,78,-0.4583333333333333],[114,249,79,-0.4583333333333333],[114,250,64,-0.4583333333333333],[114,250,65,-0.4583333333333333],[114,250,66,-0.4583333333333333],[114,250,67,-0.4583333333333333],[114,250,68,-0.4583333333333333],[114,250,69,-0.4583333333333333],[114,250,70,-0.4583333333333333],[114,250,71,-0.4583333333333333],[114,250,72,-0.4583333333333333],[114,250,73,-0.4583333333333333],[114,250,74,-0.4583333333333333],[114,250,75,-0.4583333333333333],[114,250,76,-0.4583333333333333],[114,250,77,-0.4583333333333333],[114,250,78,-0.4583333333333333],[114,250,79,-0.4583333333333333],[114,251,64,-0.4583333333333333],[114,251,65,-0.4583333333333333],[114,251,66,-0.4583333333333333],[114,251,67,-0.4583333333333333],[114,251,68,-0.4583333333333333],[114,251,69,-0.4583333333333333],[114,251,70,-0.4583333333333333],[114,251,71,-0.4583333333333333],[114,251,72,-0.4583333333333333],[114,251,73,-0.4583333333333333],[114,251,74,-0.4583333333333333],[114,251,75,-0.4583333333333333],[114,251,76,-0.4583333333333333],[114,251,77,-0.4583333333333333],[114,251,78,-0.4583333333333333],[114,251,79,-0.4583333333333333],[114,252,64,-0.4583333333333333],[114,252,65,-0.4583333333333333],[114,252,66,-0.4583333333333333],[114,252,67,-0.4583333333333333],[114,252,68,-0.4583333333333333],[114,252,69,-0.4583333333333333],[114,252,70,-0.4583333333333333],[114,252,71,-0.4583333333333333],[114,252,72,-0.4583333333333333],[114,252,73,-0.4583333333333333],[114,252,74,-0.4583333333333333],[114,252,75,-0.4583333333333333],[114,252,76,-0.4583333333333333],[114,252,77,-0.4583333333333333],[114,252,78,-0.4583333333333333],[114,252,79,-0.4583333333333333],[114,253,64,-0.4583333333333333],[114,253,65,-0.4583333333333333],[114,253,66,-0.4583333333333333],[114,253,67,-0.4583333333333333],[114,253,68,-0.4583333333333333],[114,253,69,-0.4583333333333333],[114,253,70,-0.4583333333333333],[114,253,71,-0.4583333333333333],[114,253,72,-0.4583333333333333],[114,253,73,-0.4583333333333333],[114,253,74,-0.4583333333333333],[114,253,75,-0.4583333333333333],[114,253,76,-0.4583333333333333],[114,253,77,-0.4583333333333333],[114,253,78,-0.4583333333333333],[114,253,79,-0.4583333333333333],[114,254,64,-0.3688363398495172],[114,254,65,-0.3682058296350543],[114,254,66,-0.36753182911442034],[114,254,67,-0.3669099688208888],[114,254,68,-0.36644021613072],[114,254,69,-0.36587150482886494],[114,254,70,-0.36529425516937003],[114,254,71,-0.36483496146909067],[114,254,72,-0.3643218601695764],[114,254,73,-0.36379078182256985],[114,254,74,-0.3632338762805932],[114,254,75,-0.36346158885670926],[114,254,76,-0.36426115793892344],[114,254,77,-0.36514714743819887],[114,254,78,-0.3656129338780099],[114,254,79,-0.36623097536458277],[114,255,64,-0.2045511596852744],[114,255,65,-0.20427193612760067],[114,255,66,-0.20389029296094216],[114,255,67,-0.20356421084688178],[114,255,68,-0.2032831590345982],[114,255,69,-0.20295803699921358],[114,255,70,-0.20263180522567326],[114,255,71,-0.20236127596707054],[114,255,72,-0.20210265135449582],[114,255,73,-0.20181174359627657],[114,255,74,-0.20146695168890852],[114,255,75,-0.201603861629478],[114,255,76,-0.20208255158603275],[114,255,77,-0.2025699854609412],[114,255,78,-0.20265159105324781],[114,255,79,-0.20306544852534306],[114,256,64,-0.02499479166666667],[114,256,65,-0.02499479166666667],[114,256,66,-0.02499479166666667],[114,256,67,-0.02499479166666667],[114,256,68,-0.02499479166666667],[114,256,69,-0.02499479166666667],[114,256,70,-0.02499479166666667],[114,256,71,-0.02499479166666667],[114,256,72,-0.02499479166666667],[114,256,73,-0.02499479166666667],[114,256,74,-0.02499479166666667],[114,256,75,-0.02499479166666667],[114,256,76,-0.02499479166666667],[114,256,77,-0.02499479166666667],[114,256,78,-0.02499479166666667],[114,256,79,-0.02499479166666667],[114,257,64,-0.02499479166666667],[114,257,65,-0.02499479166666667],[114,257,66,-0.02499479166666667],[114,257,67,-0.02499479166666667],[114,257,68,-0.02499479166666667],[114,257,69,-0.02499479166666667],[114,257,70,-0.02499479166666667],[114,257,71,-0.02499479166666667],[114,257,72,-0.02499479166666667],[114,257,73,-0.02499479166666667],[114,257,74,-0.02499479166666667],[114,257,75,-0.02499479166666667],[114,257,76,-0.02499479166666667],[114,257,77,-0.02499479166666667],[114,257,78,-0.02499479166666667],[114,257,79,-0.02499479166666667],[114,258,64,-0.02499479166666667],[114,258,65,-0.02499479166666667],[114,258,66,-0.02499479166666667],[114,258,67,-0.02499479166666667],[114,258,68,-0.02499479166666667],[114,258,69,-0.02499479166666667],[114,258,70,-0.02499479166666667],[114,258,71,-0.02499479166666667],[114,258,72,-0.02499479166666667],[114,258,73,-0.02499479166666667],[114,258,74,-0.02499479166666667],[114,258,75,-0.02499479166666667],[114,258,76,-0.02499479166666667],[114,258,77,-0.02499479166666667],[114,258,78,-0.02499479166666667],[114,258,79,-0.02499479166666667],[114,259,64,-0.02499479166666667],[114,259,65,-0.02499479166666667],[114,259,66,-0.02499479166666667],[114,259,67,-0.02499479166666667],[114,259,68,-0.02499479166666667],[114,259,69,-0.02499479166666667],[114,259,70,-0.02499479166666667],[114,259,71,-0.02499479166666667],[114,259,72,-0.02499479166666667],[114,259,73,-0.02499479166666667],[114,259,74,-0.02499479166666667],[114,259,75,-0.02499479166666667],[114,259,76,-0.02499479166666667],[114,259,77,-0.02499479166666667],[114,259,78,-0.02499479166666667],[114,259,79,-0.02499479166666667],[114,260,64,-0.02499479166666667],[114,260,65,-0.02499479166666667],[114,260,66,-0.02499479166666667],[114,260,67,-0.02499479166666667],[114,260,68,-0.02499479166666667],[114,260,69,-0.02499479166666667],[114,260,70,-0.02499479166666667],[114,260,71,-0.02499479166666667],[114,260,72,-0.02499479166666667],[114,260,73,-0.02499479166666667],[114,260,74,-0.02499479166666667],[114,260,75,-0.02499479166666667],[114,260,76,-0.02499479166666667],[114,260,77,-0.02499479166666667],[114,260,78,-0.02499479166666667],[114,260,79,-0.02499479166666667],[114,261,64,-0.02499479166666667],[114,261,65,-0.02499479166666667],[114,261,66,-0.02499479166666667],[114,261,67,-0.02499479166666667],[114,261,68,-0.02499479166666667],[114,261,69,-0.02499479166666667],[114,261,70,-0.02499479166666667],[114,261,71,-0.02499479166666667],[114,261,72,-0.02499479166666667],[114,261,73,-0.02499479166666667],[114,261,74,-0.02499479166666667],[114,261,75,-0.02499479166666667],[114,261,76,-0.02499479166666667],[114,261,77,-0.02499479166666667],[114,261,78,-0.02499479166666667],[114,261,79,-0.02499479166666667],[114,262,64,-0.02499479166666667],[114,262,65,-0.02499479166666667],[114,262,66,-0.02499479166666667],[114,262,67,-0.02499479166666667],[114,262,68,-0.02499479166666667],[114,262,69,-0.02499479166666667],[114,262,70,-0.02499479166666667],[114,262,71,-0.02499479166666667],[114,262,72,-0.02499479166666667],[114,262,73,-0.02499479166666667],[114,262,74,-0.02499479166666667],[114,262,75,-0.02499479166666667],[114,262,76,-0.02499479166666667],[114,262,77,-0.02499479166666667],[114,262,78,-0.02499479166666667],[114,262,79,-0.02499479166666667],[114,263,64,-0.02499479166666667],[114,263,65,-0.02499479166666667],[114,263,66,-0.02499479166666667],[114,263,67,-0.02499479166666667],[114,263,68,-0.02499479166666667],[114,263,69,-0.02499479166666667],[114,263,70,-0.02499479166666667],[114,263,71,-0.02499479166666667],[114,263,72,-0.02499479166666667],[114,263,73,-0.02499479166666667],[114,263,74,-0.02499479166666667],[114,263,75,-0.02499479166666667],[114,263,76,-0.02499479166666667],[114,263,77,-0.02499479166666667],[114,263,78,-0.02499479166666667],[114,263,79,-0.02499479166666667],[114,264,64,-0.02499479166666667],[114,264,65,-0.02499479166666667],[114,264,66,-0.02499479166666667],[114,264,67,-0.02499479166666667],[114,264,68,-0.02499479166666667],[114,264,69,-0.02499479166666667],[114,264,70,-0.02499479166666667],[114,264,71,-0.02499479166666667],[114,264,72,-0.02499479166666667],[114,264,73,-0.02499479166666667],[114,264,74,-0.02499479166666667],[114,264,75,-0.02499479166666667],[114,264,76,-0.02499479166666667],[114,264,77,-0.02499479166666667],[114,264,78,-0.02499479166666667],[114,264,79,-0.02499479166666667],[114,265,64,-0.02499479166666667],[114,265,65,-0.02499479166666667],[114,265,66,-0.02499479166666667],[114,265,67,-0.02499479166666667],[114,265,68,-0.02499479166666667],[114,265,69,-0.02499479166666667],[114,265,70,-0.02499479166666667],[114,265,71,-0.02499479166666667],[114,265,72,-0.02499479166666667],[114,265,73,-0.02499479166666667],[114,265,74,-0.02499479166666667],[114,265,75,-0.02499479166666667],[114,265,76,-0.02499479166666667],[114,265,77,-0.02499479166666667],[114,265,78,-0.02499479166666667],[114,265,79,-0.02499479166666667],[114,266,64,-0.02499479166666667],[114,266,65,-0.02499479166666667],[114,266,66,-0.02499479166666667],[114,266,67,-0.02499479166666667],[114,266,68,-0.02499479166666667],[114,266,69,-0.02499479166666667],[114,266,70,-0.02499479166666667],[114,266,71,-0.02499479166666667],[114,266,72,-0.02499479166666667],[114,266,73,-0.02499479166666667],[114,266,74,-0.02499479166666667],[114,266,75,-0.02499479166666667],[114,266,76,-0.02499479166666667],[114,266,77,-0.02499479166666667],[114,266,78,-0.02499479166666667],[114,266,79,-0.02499479166666667],[114,267,64,-0.02499479166666667],[114,267,65,-0.02499479166666667],[114,267,66,-0.02499479166666667],[114,267,67,-0.02499479166666667],[114,267,68,-0.02499479166666667],[114,267,69,-0.02499479166666667],[114,267,70,-0.02499479166666667],[114,267,71,-0.02499479166666667],[114,267,72,-0.02499479166666667],[114,267,73,-0.02499479166666667],[114,267,74,-0.02499479166666667],[114,267,75,-0.02499479166666667],[114,267,76,-0.02499479166666667],[114,267,77,-0.02499479166666667],[114,267,78,-0.02499479166666667],[114,267,79,-0.02499479166666667],[114,268,64,-0.02499479166666667],[114,268,65,-0.02499479166666667],[114,268,66,-0.02499479166666667],[114,268,67,-0.02499479166666667],[114,268,68,-0.02499479166666667],[114,268,69,-0.02499479166666667],[114,268,70,-0.02499479166666667],[114,268,71,-0.02499479166666667],[114,268,72,-0.02499479166666667],[114,268,73,-0.02499479166666667],[114,268,74,-0.02499479166666667],[114,268,75,-0.02499479166666667],[114,268,76,-0.02499479166666667],[114,268,77,-0.02499479166666667],[114,268,78,-0.02499479166666667],[114,268,79,-0.02499479166666667],[114,269,64,-0.02499479166666667],[114,269,65,-0.02499479166666667],[114,269,66,-0.02499479166666667],[114,269,67,-0.02499479166666667],[114,269,68,-0.02499479166666667],[114,269,69,-0.02499479166666667],[114,269,70,-0.02499479166666667],[114,269,71,-0.02499479166666667],[114,269,72,-0.02499479166666667],[114,269,73,-0.02499479166666667],[114,269,74,-0.02499479166666667],[114,269,75,-0.02499479166666667],[114,269,76,-0.02499479166666667],[114,269,77,-0.02499479166666667],[114,269,78,-0.02499479166666667],[114,269,79,-0.02499479166666667],[114,270,64,-0.02499479166666667],[114,270,65,-0.02499479166666667],[114,270,66,-0.02499479166666667],[114,270,67,-0.02499479166666667],[114,270,68,-0.02499479166666667],[114,270,69,-0.02499479166666667],[114,270,70,-0.02499479166666667],[114,270,71,-0.02499479166666667],[114,270,72,-0.02499479166666667],[114,270,73,-0.02499479166666667],[114,270,74,-0.02499479166666667],[114,270,75,-0.02499479166666667],[114,270,76,-0.02499479166666667],[114,270,77,-0.02499479166666667],[114,270,78,-0.02499479166666667],[114,270,79,-0.02499479166666667],[114,271,64,-0.02499479166666667],[114,271,65,-0.02499479166666667],[114,271,66,-0.02499479166666667],[114,271,67,-0.02499479166666667],[114,271,68,-0.02499479166666667],[114,271,69,-0.02499479166666667],[114,271,70,-0.02499479166666667],[114,271,71,-0.02499479166666667],[114,271,72,-0.02499479166666667],[114,271,73,-0.02499479166666667],[114,271,74,-0.02499479166666667],[114,271,75,-0.02499479166666667],[114,271,76,-0.02499479166666667],[114,271,77,-0.02499479166666667],[114,271,78,-0.02499479166666667],[114,271,79,-0.02499479166666667],[114,272,64,-0.02499479166666667],[114,272,65,-0.02499479166666667],[114,272,66,-0.02499479166666667],[114,272,67,-0.02499479166666667],[114,272,68,-0.02499479166666667],[114,272,69,-0.02499479166666667],[114,272,70,-0.02499479166666667],[114,272,71,-0.02499479166666667],[114,272,72,-0.02499479166666667],[114,272,73,-0.02499479166666667],[114,272,74,-0.02499479166666667],[114,272,75,-0.02499479166666667],[114,272,76,-0.02499479166666667],[114,272,77,-0.02499479166666667],[114,272,78,-0.02499479166666667],[114,272,79,-0.02499479166666667],[114,273,64,-0.02499479166666667],[114,273,65,-0.02499479166666667],[114,273,66,-0.02499479166666667],[114,273,67,-0.02499479166666667],[114,273,68,-0.02499479166666667],[114,273,69,-0.02499479166666667],[114,273,70,-0.02499479166666667],[114,273,71,-0.02499479166666667],[114,273,72,-0.02499479166666667],[114,273,73,-0.02499479166666667],[114,273,74,-0.02499479166666667],[114,273,75,-0.02499479166666667],[114,273,76,-0.02499479166666667],[114,273,77,-0.02499479166666667],[114,273,78,-0.02499479166666667],[114,273,79,-0.02499479166666667],[114,274,64,-0.02499479166666667],[114,274,65,-0.02499479166666667],[114,274,66,-0.02499479166666667],[114,274,67,-0.02499479166666667],[114,274,68,-0.02499479166666667],[114,274,69,-0.02499479166666667],[114,274,70,-0.02499479166666667],[114,274,71,-0.02499479166666667],[114,274,72,-0.02499479166666667],[114,274,73,-0.02499479166666667],[114,274,74,-0.02499479166666667],[114,274,75,-0.02499479166666667],[114,274,76,-0.02499479166666667],[114,274,77,-0.02499479166666667],[114,274,78,-0.02499479166666667],[114,274,79,-0.02499479166666667],[114,275,64,-0.02499479166666667],[114,275,65,-0.02499479166666667],[114,275,66,-0.02499479166666667],[114,275,67,-0.02499479166666667],[114,275,68,-0.02499479166666667],[114,275,69,-0.02499479166666667],[114,275,70,-0.02499479166666667],[114,275,71,-0.02499479166666667],[114,275,72,-0.02499479166666667],[114,275,73,-0.02499479166666667],[114,275,74,-0.02499479166666667],[114,275,75,-0.02499479166666667],[114,275,76,-0.02499479166666667],[114,275,77,-0.02499479166666667],[114,275,78,-0.02499479166666667],[114,275,79,-0.02499479166666667],[114,276,64,-0.02499479166666667],[114,276,65,-0.02499479166666667],[114,276,66,-0.02499479166666667],[114,276,67,-0.02499479166666667],[114,276,68,-0.02499479166666667],[114,276,69,-0.02499479166666667],[114,276,70,-0.02499479166666667],[114,276,71,-0.02499479166666667],[114,276,72,-0.02499479166666667],[114,276,73,-0.02499479166666667],[114,276,74,-0.02499479166666667],[114,276,75,-0.02499479166666667],[114,276,76,-0.02499479166666667],[114,276,77,-0.02499479166666667],[114,276,78,-0.02499479166666667],[114,276,79,-0.02499479166666667],[114,277,64,-0.02499479166666667],[114,277,65,-0.02499479166666667],[114,277,66,-0.02499479166666667],[114,277,67,-0.02499479166666667],[114,277,68,-0.02499479166666667],[114,277,69,-0.02499479166666667],[114,277,70,-0.02499479166666667],[114,277,71,-0.02499479166666667],[114,277,72,-0.02499479166666667],[114,277,73,-0.02499479166666667],[114,277,74,-0.02499479166666667],[114,277,75,-0.02499479166666667],[114,277,76,-0.02499479166666667],[114,277,77,-0.02499479166666667],[114,277,78,-0.02499479166666667],[114,277,79,-0.02499479166666667],[114,278,64,-0.02499479166666667],[114,278,65,-0.02499479166666667],[114,278,66,-0.02499479166666667],[114,278,67,-0.02499479166666667],[114,278,68,-0.02499479166666667],[114,278,69,-0.02499479166666667],[114,278,70,-0.02499479166666667],[114,278,71,-0.02499479166666667],[114,278,72,-0.02499479166666667],[114,278,73,-0.02499479166666667],[114,278,74,-0.02499479166666667],[114,278,75,-0.02499479166666667],[114,278,76,-0.02499479166666667],[114,278,77,-0.02499479166666667],[114,278,78,-0.02499479166666667],[114,278,79,-0.02499479166666667],[114,279,64,-0.02499479166666667],[114,279,65,-0.02499479166666667],[114,279,66,-0.02499479166666667],[114,279,67,-0.02499479166666667],[114,279,68,-0.02499479166666667],[114,279,69,-0.02499479166666667],[114,279,70,-0.02499479166666667],[114,279,71,-0.02499479166666667],[114,279,72,-0.02499479166666667],[114,279,73,-0.02499479166666667],[114,279,74,-0.02499479166666667],[114,279,75,-0.02499479166666667],[114,279,76,-0.02499479166666667],[114,279,77,-0.02499479166666667],[114,279,78,-0.02499479166666667],[114,279,79,-0.02499479166666667],[114,280,64,-0.02499479166666667],[114,280,65,-0.02499479166666667],[114,280,66,-0.02499479166666667],[114,280,67,-0.02499479166666667],[114,280,68,-0.02499479166666667],[114,280,69,-0.02499479166666667],[114,280,70,-0.02499479166666667],[114,280,71,-0.02499479166666667],[114,280,72,-0.02499479166666667],[114,280,73,-0.02499479166666667],[114,280,74,-0.02499479166666667],[114,280,75,-0.02499479166666667],[114,280,76,-0.02499479166666667],[114,280,77,-0.02499479166666667],[114,280,78,-0.02499479166666667],[114,280,79,-0.02499479166666667],[114,281,64,-0.02499479166666667],[114,281,65,-0.02499479166666667],[114,281,66,-0.02499479166666667],[114,281,67,-0.02499479166666667],[114,281,68,-0.02499479166666667],[114,281,69,-0.02499479166666667],[114,281,70,-0.02499479166666667],[114,281,71,-0.02499479166666667],[114,281,72,-0.02499479166666667],[114,281,73,-0.02499479166666667],[114,281,74,-0.02499479166666667],[114,281,75,-0.02499479166666667],[114,281,76,-0.02499479166666667],[114,281,77,-0.02499479166666667],[114,281,78,-0.02499479166666667],[114,281,79,-0.02499479166666667],[114,282,64,-0.02499479166666667],[114,282,65,-0.02499479166666667],[114,282,66,-0.02499479166666667],[114,282,67,-0.02499479166666667],[114,282,68,-0.02499479166666667],[114,282,69,-0.02499479166666667],[114,282,70,-0.02499479166666667],[114,282,71,-0.02499479166666667],[114,282,72,-0.02499479166666667],[114,282,73,-0.02499479166666667],[114,282,74,-0.02499479166666667],[114,282,75,-0.02499479166666667],[114,282,76,-0.02499479166666667],[114,282,77,-0.02499479166666667],[114,282,78,-0.02499479166666667],[114,282,79,-0.02499479166666667],[114,283,64,-0.02499479166666667],[114,283,65,-0.02499479166666667],[114,283,66,-0.02499479166666667],[114,283,67,-0.02499479166666667],[114,283,68,-0.02499479166666667],[114,283,69,-0.02499479166666667],[114,283,70,-0.02499479166666667],[114,283,71,-0.02499479166666667],[114,283,72,-0.02499479166666667],[114,283,73,-0.02499479166666667],[114,283,74,-0.02499479166666667],[114,283,75,-0.02499479166666667],[114,283,76,-0.02499479166666667],[114,283,77,-0.02499479166666667],[114,283,78,-0.02499479166666667],[114,283,79,-0.02499479166666667],[114,284,64,-0.02499479166666667],[114,284,65,-0.02499479166666667],[114,284,66,-0.02499479166666667],[114,284,67,-0.02499479166666667],[114,284,68,-0.02499479166666667],[114,284,69,-0.02499479166666667],[114,284,70,-0.02499479166666667],[114,284,71,-0.02499479166666667],[114,284,72,-0.02499479166666667],[114,284,73,-0.02499479166666667],[114,284,74,-0.02499479166666667],[114,284,75,-0.02499479166666667],[114,284,76,-0.02499479166666667],[114,284,77,-0.02499479166666667],[114,284,78,-0.02499479166666667],[114,284,79,-0.02499479166666667],[114,285,64,-0.02499479166666667],[114,285,65,-0.02499479166666667],[114,285,66,-0.02499479166666667],[114,285,67,-0.02499479166666667],[114,285,68,-0.02499479166666667],[114,285,69,-0.02499479166666667],[114,285,70,-0.02499479166666667],[114,285,71,-0.02499479166666667],[114,285,72,-0.02499479166666667],[114,285,73,-0.02499479166666667],[114,285,74,-0.02499479166666667],[114,285,75,-0.02499479166666667],[114,285,76,-0.02499479166666667],[114,285,77,-0.02499479166666667],[114,285,78,-0.02499479166666667],[114,285,79,-0.02499479166666667],[114,286,64,-0.02499479166666667],[114,286,65,-0.02499479166666667],[114,286,66,-0.02499479166666667],[114,286,67,-0.02499479166666667],[114,286,68,-0.02499479166666667],[114,286,69,-0.02499479166666667],[114,286,70,-0.02499479166666667],[114,286,71,-0.02499479166666667],[114,286,72,-0.02499479166666667],[114,286,73,-0.02499479166666667],[114,286,74,-0.02499479166666667],[114,286,75,-0.02499479166666667],[114,286,76,-0.02499479166666667],[114,286,77,-0.02499479166666667],[114,286,78,-0.02499479166666667],[114,286,79,-0.02499479166666667],[114,287,64,-0.02499479166666667],[114,287,65,-0.02499479166666667],[114,287,66,-0.02499479166666667],[114,287,67,-0.02499479166666667],[114,287,68,-0.02499479166666667],[114,287,69,-0.02499479166666667],[114,287,70,-0.02499479166666667],[114,287,71,-0.02499479166666667],[114,287,72,-0.02499479166666667],[114,287,73,-0.02499479166666667],[114,287,74,-0.02499479166666667],[114,287,75,-0.02499479166666667],[114,287,76,-0.02499479166666667],[114,287,77,-0.02499479166666667],[114,287,78,-0.02499479166666667],[114,287,79,-0.02499479166666667],[114,288,64,-0.02499479166666667],[114,288,65,-0.02499479166666667],[114,288,66,-0.02499479166666667],[114,288,67,-0.02499479166666667],[114,288,68,-0.02499479166666667],[114,288,69,-0.02499479166666667],[114,288,70,-0.02499479166666667],[114,288,71,-0.02499479166666667],[114,288,72,-0.02499479166666667],[114,288,73,-0.02499479166666667],[114,288,74,-0.02499479166666667],[114,288,75,-0.02499479166666667],[114,288,76,-0.02499479166666667],[114,288,77,-0.02499479166666667],[114,288,78,-0.02499479166666667],[114,288,79,-0.02499479166666667],[114,289,64,-0.02499479166666667],[114,289,65,-0.02499479166666667],[114,289,66,-0.02499479166666667],[114,289,67,-0.02499479166666667],[114,289,68,-0.02499479166666667],[114,289,69,-0.02499479166666667],[114,289,70,-0.02499479166666667],[114,289,71,-0.02499479166666667],[114,289,72,-0.02499479166666667],[114,289,73,-0.02499479166666667],[114,289,74,-0.02499479166666667],[114,289,75,-0.02499479166666667],[114,289,76,-0.02499479166666667],[114,289,77,-0.02499479166666667],[114,289,78,-0.02499479166666667],[114,289,79,-0.02499479166666667],[114,290,64,-0.02499479166666667],[114,290,65,-0.02499479166666667],[114,290,66,-0.02499479166666667],[114,290,67,-0.02499479166666667],[114,290,68,-0.02499479166666667],[114,290,69,-0.02499479166666667],[114,290,70,-0.02499479166666667],[114,290,71,-0.02499479166666667],[114,290,72,-0.02499479166666667],[114,290,73,-0.02499479166666667],[114,290,74,-0.02499479166666667],[114,290,75,-0.02499479166666667],[114,290,76,-0.02499479166666667],[114,290,77,-0.02499479166666667],[114,290,78,-0.02499479166666667],[114,290,79,-0.02499479166666667],[114,291,64,-0.02499479166666667],[114,291,65,-0.02499479166666667],[114,291,66,-0.02499479166666667],[114,291,67,-0.02499479166666667],[114,291,68,-0.02499479166666667],[114,291,69,-0.02499479166666667],[114,291,70,-0.02499479166666667],[114,291,71,-0.02499479166666667],[114,291,72,-0.02499479166666667],[114,291,73,-0.02499479166666667],[114,291,74,-0.02499479166666667],[114,291,75,-0.02499479166666667],[114,291,76,-0.02499479166666667],[114,291,77,-0.02499479166666667],[114,291,78,-0.02499479166666667],[114,291,79,-0.02499479166666667],[114,292,64,-0.02499479166666667],[114,292,65,-0.02499479166666667],[114,292,66,-0.02499479166666667],[114,292,67,-0.02499479166666667],[114,292,68,-0.02499479166666667],[114,292,69,-0.02499479166666667],[114,292,70,-0.02499479166666667],[114,292,71,-0.02499479166666667],[114,292,72,-0.02499479166666667],[114,292,73,-0.02499479166666667],[114,292,74,-0.02499479166666667],[114,292,75,-0.02499479166666667],[114,292,76,-0.02499479166666667],[114,292,77,-0.02499479166666667],[114,292,78,-0.02499479166666667],[114,292,79,-0.02499479166666667],[114,293,64,-0.02499479166666667],[114,293,65,-0.02499479166666667],[114,293,66,-0.02499479166666667],[114,293,67,-0.02499479166666667],[114,293,68,-0.02499479166666667],[114,293,69,-0.02499479166666667],[114,293,70,-0.02499479166666667],[114,293,71,-0.02499479166666667],[114,293,72,-0.02499479166666667],[114,293,73,-0.02499479166666667],[114,293,74,-0.02499479166666667],[114,293,75,-0.02499479166666667],[114,293,76,-0.02499479166666667],[114,293,77,-0.02499479166666667],[114,293,78,-0.02499479166666667],[114,293,79,-0.02499479166666667],[114,294,64,-0.02499479166666667],[114,294,65,-0.02499479166666667],[114,294,66,-0.02499479166666667],[114,294,67,-0.02499479166666667],[114,294,68,-0.02499479166666667],[114,294,69,-0.02499479166666667],[114,294,70,-0.02499479166666667],[114,294,71,-0.02499479166666667],[114,294,72,-0.02499479166666667],[114,294,73,-0.02499479166666667],[114,294,74,-0.02499479166666667],[114,294,75,-0.02499479166666667],[114,294,76,-0.02499479166666667],[114,294,77,-0.02499479166666667],[114,294,78,-0.02499479166666667],[114,294,79,-0.02499479166666667],[114,295,64,-0.02499479166666667],[114,295,65,-0.02499479166666667],[114,295,66,-0.02499479166666667],[114,295,67,-0.02499479166666667],[114,295,68,-0.02499479166666667],[114,295,69,-0.02499479166666667],[114,295,70,-0.02499479166666667],[114,295,71,-0.02499479166666667],[114,295,72,-0.02499479166666667],[114,295,73,-0.02499479166666667],[114,295,74,-0.02499479166666667],[114,295,75,-0.02499479166666667],[114,295,76,-0.02499479166666667],[114,295,77,-0.02499479166666667],[114,295,78,-0.02499479166666667],[114,295,79,-0.02499479166666667],[114,296,64,-0.02499479166666667],[114,296,65,-0.02499479166666667],[114,296,66,-0.02499479166666667],[114,296,67,-0.02499479166666667],[114,296,68,-0.02499479166666667],[114,296,69,-0.02499479166666667],[114,296,70,-0.02499479166666667],[114,296,71,-0.02499479166666667],[114,296,72,-0.02499479166666667],[114,296,73,-0.02499479166666667],[114,296,74,-0.02499479166666667],[114,296,75,-0.02499479166666667],[114,296,76,-0.02499479166666667],[114,296,77,-0.02499479166666667],[114,296,78,-0.02499479166666667],[114,296,79,-0.02499479166666667],[114,297,64,-0.02499479166666667],[114,297,65,-0.02499479166666667],[114,297,66,-0.02499479166666667],[114,297,67,-0.02499479166666667],[114,297,68,-0.02499479166666667],[114,297,69,-0.02499479166666667],[114,297,70,-0.02499479166666667],[114,297,71,-0.02499479166666667],[114,297,72,-0.02499479166666667],[114,297,73,-0.02499479166666667],[114,297,74,-0.02499479166666667],[114,297,75,-0.02499479166666667],[114,297,76,-0.02499479166666667],[114,297,77,-0.02499479166666667],[114,297,78,-0.02499479166666667],[114,297,79,-0.02499479166666667],[114,298,64,-0.02499479166666667],[114,298,65,-0.02499479166666667],[114,298,66,-0.02499479166666667],[114,298,67,-0.02499479166666667],[114,298,68,-0.02499479166666667],[114,298,69,-0.02499479166666667],[114,298,70,-0.02499479166666667],[114,298,71,-0.02499479166666667],[114,298,72,-0.02499479166666667],[114,298,73,-0.02499479166666667],[114,298,74,-0.02499479166666667],[114,298,75,-0.02499479166666667],[114,298,76,-0.02499479166666667],[114,298,77,-0.02499479166666667],[114,298,78,-0.02499479166666667],[114,298,79,-0.02499479166666667],[114,299,64,-0.02499479166666667],[114,299,65,-0.02499479166666667],[114,299,66,-0.02499479166666667],[114,299,67,-0.02499479166666667],[114,299,68,-0.02499479166666667],[114,299,69,-0.02499479166666667],[114,299,70,-0.02499479166666667],[114,299,71,-0.02499479166666667],[114,299,72,-0.02499479166666667],[114,299,73,-0.02499479166666667],[114,299,74,-0.02499479166666667],[114,299,75,-0.02499479166666667],[114,299,76,-0.02499479166666667],[114,299,77,-0.02499479166666667],[114,299,78,-0.02499479166666667],[114,299,79,-0.02499479166666667],[114,300,64,-0.02499479166666667],[114,300,65,-0.02499479166666667],[114,300,66,-0.02499479166666667],[114,300,67,-0.02499479166666667],[114,300,68,-0.02499479166666667],[114,300,69,-0.02499479166666667],[114,300,70,-0.02499479166666667],[114,300,71,-0.02499479166666667],[114,300,72,-0.02499479166666667],[114,300,73,-0.02499479166666667],[114,300,74,-0.02499479166666667],[114,300,75,-0.02499479166666667],[114,300,76,-0.02499479166666667],[114,300,77,-0.02499479166666667],[114,300,78,-0.02499479166666667],[114,300,79,-0.02499479166666667],[114,301,64,-0.02499479166666667],[114,301,65,-0.02499479166666667],[114,301,66,-0.02499479166666667],[114,301,67,-0.02499479166666667],[114,301,68,-0.02499479166666667],[114,301,69,-0.02499479166666667],[114,301,70,-0.02499479166666667],[114,301,71,-0.02499479166666667],[114,301,72,-0.02499479166666667],[114,301,73,-0.02499479166666667],[114,301,74,-0.02499479166666667],[114,301,75,-0.02499479166666667],[114,301,76,-0.02499479166666667],[114,301,77,-0.02499479166666667],[114,301,78,-0.02499479166666667],[114,301,79,-0.02499479166666667],[114,302,64,-0.02499479166666667],[114,302,65,-0.02499479166666667],[114,302,66,-0.02499479166666667],[114,302,67,-0.02499479166666667],[114,302,68,-0.02499479166666667],[114,302,69,-0.02499479166666667],[114,302,70,-0.02499479166666667],[114,302,71,-0.02499479166666667],[114,302,72,-0.02499479166666667],[114,302,73,-0.02499479166666667],[114,302,74,-0.02499479166666667],[114,302,75,-0.02499479166666667],[114,302,76,-0.02499479166666667],[114,302,77,-0.02499479166666667],[114,302,78,-0.02499479166666667],[114,302,79,-0.02499479166666667],[114,303,64,-0.02499479166666667],[114,303,65,-0.02499479166666667],[114,303,66,-0.02499479166666667],[114,303,67,-0.02499479166666667],[114,303,68,-0.02499479166666667],[114,303,69,-0.02499479166666667],[114,303,70,-0.02499479166666667],[114,303,71,-0.02499479166666667],[114,303,72,-0.02499479166666667],[114,303,73,-0.02499479166666667],[114,303,74,-0.02499479166666667],[114,303,75,-0.02499479166666667],[114,303,76,-0.02499479166666667],[114,303,77,-0.02499479166666667],[114,303,78,-0.02499479166666667],[114,303,79,-0.02499479166666667],[114,304,64,-0.02499479166666667],[114,304,65,-0.02499479166666667],[114,304,66,-0.02499479166666667],[114,304,67,-0.02499479166666667],[114,304,68,-0.02499479166666667],[114,304,69,-0.02499479166666667],[114,304,70,-0.02499479166666667],[114,304,71,-0.02499479166666667],[114,304,72,-0.02499479166666667],[114,304,73,-0.02499479166666667],[114,304,74,-0.02499479166666667],[114,304,75,-0.02499479166666667],[114,304,76,-0.02499479166666667],[114,304,77,-0.02499479166666667],[114,304,78,-0.02499479166666667],[114,304,79,-0.02499479166666667],[114,305,64,-0.02499479166666667],[114,305,65,-0.02499479166666667],[114,305,66,-0.02499479166666667],[114,305,67,-0.02499479166666667],[114,305,68,-0.02499479166666667],[114,305,69,-0.02499479166666667],[114,305,70,-0.02499479166666667],[114,305,71,-0.02499479166666667],[114,305,72,-0.02499479166666667],[114,305,73,-0.02499479166666667],[114,305,74,-0.02499479166666667],[114,305,75,-0.02499479166666667],[114,305,76,-0.02499479166666667],[114,305,77,-0.02499479166666667],[114,305,78,-0.02499479166666667],[114,305,79,-0.02499479166666667],[114,306,64,-0.02499479166666667],[114,306,65,-0.02499479166666667],[114,306,66,-0.02499479166666667],[114,306,67,-0.02499479166666667],[114,306,68,-0.02499479166666667],[114,306,69,-0.02499479166666667],[114,306,70,-0.02499479166666667],[114,306,71,-0.02499479166666667],[114,306,72,-0.02499479166666667],[114,306,73,-0.02499479166666667],[114,306,74,-0.02499479166666667],[114,306,75,-0.02499479166666667],[114,306,76,-0.02499479166666667],[114,306,77,-0.02499479166666667],[114,306,78,-0.02499479166666667],[114,306,79,-0.02499479166666667],[114,307,64,-0.02499479166666667],[114,307,65,-0.02499479166666667],[114,307,66,-0.02499479166666667],[114,307,67,-0.02499479166666667],[114,307,68,-0.02499479166666667],[114,307,69,-0.02499479166666667],[114,307,70,-0.02499479166666667],[114,307,71,-0.02499479166666667],[114,307,72,-0.02499479166666667],[114,307,73,-0.02499479166666667],[114,307,74,-0.02499479166666667],[114,307,75,-0.02499479166666667],[114,307,76,-0.02499479166666667],[114,307,77,-0.02499479166666667],[114,307,78,-0.02499479166666667],[114,307,79,-0.02499479166666667],[114,308,64,-0.02499479166666667],[114,308,65,-0.02499479166666667],[114,308,66,-0.02499479166666667],[114,308,67,-0.02499479166666667],[114,308,68,-0.02499479166666667],[114,308,69,-0.02499479166666667],[114,308,70,-0.02499479166666667],[114,308,71,-0.02499479166666667],[114,308,72,-0.02499479166666667],[114,308,73,-0.02499479166666667],[114,308,74,-0.02499479166666667],[114,308,75,-0.02499479166666667],[114,308,76,-0.02499479166666667],[114,308,77,-0.02499479166666667],[114,308,78,-0.02499479166666667],[114,308,79,-0.02499479166666667],[114,309,64,-0.02499479166666667],[114,309,65,-0.02499479166666667],[114,309,66,-0.02499479166666667],[114,309,67,-0.02499479166666667],[114,309,68,-0.02499479166666667],[114,309,69,-0.02499479166666667],[114,309,70,-0.02499479166666667],[114,309,71,-0.02499479166666667],[114,309,72,-0.02499479166666667],[114,309,73,-0.02499479166666667],[114,309,74,-0.02499479166666667],[114,309,75,-0.02499479166666667],[114,309,76,-0.02499479166666667],[114,309,77,-0.02499479166666667],[114,309,78,-0.02499479166666667],[114,309,79,-0.02499479166666667],[114,310,64,-0.02499479166666667],[114,310,65,-0.02499479166666667],[114,310,66,-0.02499479166666667],[114,310,67,-0.02499479166666667],[114,310,68,-0.02499479166666667],[114,310,69,-0.02499479166666667],[114,310,70,-0.02499479166666667],[114,310,71,-0.02499479166666667],[114,310,72,-0.02499479166666667],[114,310,73,-0.02499479166666667],[114,310,74,-0.02499479166666667],[114,310,75,-0.02499479166666667],[114,310,76,-0.02499479166666667],[114,310,77,-0.02499479166666667],[114,310,78,-0.02499479166666667],[114,310,79,-0.02499479166666667],[114,311,64,-0.02499479166666667],[114,311,65,-0.02499479166666667],[114,311,66,-0.02499479166666667],[114,311,67,-0.02499479166666667],[114,311,68,-0.02499479166666667],[114,311,69,-0.02499479166666667],[114,311,70,-0.02499479166666667],[114,311,71,-0.02499479166666667],[114,311,72,-0.02499479166666667],[114,311,73,-0.02499479166666667],[114,311,74,-0.02499479166666667],[114,311,75,-0.02499479166666667],[114,311,76,-0.02499479166666667],[114,311,77,-0.02499479166666667],[114,311,78,-0.02499479166666667],[114,311,79,-0.02499479166666667],[114,312,64,-0.02499479166666667],[114,312,65,-0.02499479166666667],[114,312,66,-0.02499479166666667],[114,312,67,-0.02499479166666667],[114,312,68,-0.02499479166666667],[114,312,69,-0.02499479166666667],[114,312,70,-0.02499479166666667],[114,312,71,-0.02499479166666667],[114,312,72,-0.02499479166666667],[114,312,73,-0.02499479166666667],[114,312,74,-0.02499479166666667],[114,312,75,-0.02499479166666667],[114,312,76,-0.02499479166666667],[114,312,77,-0.02499479166666667],[114,312,78,-0.02499479166666667],[114,312,79,-0.02499479166666667],[114,313,64,-0.02499479166666667],[114,313,65,-0.02499479166666667],[114,313,66,-0.02499479166666667],[114,313,67,-0.02499479166666667],[114,313,68,-0.02499479166666667],[114,313,69,-0.02499479166666667],[114,313,70,-0.02499479166666667],[114,313,71,-0.02499479166666667],[114,313,72,-0.02499479166666667],[114,313,73,-0.02499479166666667],[114,313,74,-0.02499479166666667],[114,313,75,-0.02499479166666667],[114,313,76,-0.02499479166666667],[114,313,77,-0.02499479166666667],[114,313,78,-0.02499479166666667],[114,313,79,-0.02499479166666667],[114,314,64,-0.02499479166666667],[114,314,65,-0.02499479166666667],[114,314,66,-0.02499479166666667],[114,314,67,-0.02499479166666667],[114,314,68,-0.02499479166666667],[114,314,69,-0.02499479166666667],[114,314,70,-0.02499479166666667],[114,314,71,-0.02499479166666667],[114,314,72,-0.02499479166666667],[114,314,73,-0.02499479166666667],[114,314,74,-0.02499479166666667],[114,314,75,-0.02499479166666667],[114,314,76,-0.02499479166666667],[114,314,77,-0.02499479166666667],[114,314,78,-0.02499479166666667],[114,314,79,-0.02499479166666667],[114,315,64,-0.02499479166666667],[114,315,65,-0.02499479166666667],[114,315,66,-0.02499479166666667],[114,315,67,-0.02499479166666667],[114,315,68,-0.02499479166666667],[114,315,69,-0.02499479166666667],[114,315,70,-0.02499479166666667],[114,315,71,-0.02499479166666667],[114,315,72,-0.02499479166666667],[114,315,73,-0.02499479166666667],[114,315,74,-0.02499479166666667],[114,315,75,-0.02499479166666667],[114,315,76,-0.02499479166666667],[114,315,77,-0.02499479166666667],[114,315,78,-0.02499479166666667],[114,315,79,-0.02499479166666667],[114,316,64,-0.02499479166666667],[114,316,65,-0.02499479166666667],[114,316,66,-0.02499479166666667],[114,316,67,-0.02499479166666667],[114,316,68,-0.02499479166666667],[114,316,69,-0.02499479166666667],[114,316,70,-0.02499479166666667],[114,316,71,-0.02499479166666667],[114,316,72,-0.02499479166666667],[114,316,73,-0.02499479166666667],[114,316,74,-0.02499479166666667],[114,316,75,-0.02499479166666667],[114,316,76,-0.02499479166666667],[114,316,77,-0.02499479166666667],[114,316,78,-0.02499479166666667],[114,316,79,-0.02499479166666667],[114,317,64,-0.02499479166666667],[114,317,65,-0.02499479166666667],[114,317,66,-0.02499479166666667],[114,317,67,-0.02499479166666667],[114,317,68,-0.02499479166666667],[114,317,69,-0.02499479166666667],[114,317,70,-0.02499479166666667],[114,317,71,-0.02499479166666667],[114,317,72,-0.02499479166666667],[114,317,73,-0.02499479166666667],[114,317,74,-0.02499479166666667],[114,317,75,-0.02499479166666667],[114,317,76,-0.02499479166666667],[114,317,77,-0.02499479166666667],[114,317,78,-0.02499479166666667],[114,317,79,-0.02499479166666667],[114,318,64,-0.02499479166666667],[114,318,65,-0.02499479166666667],[114,318,66,-0.02499479166666667],[114,318,67,-0.02499479166666667],[114,318,68,-0.02499479166666667],[114,318,69,-0.02499479166666667],[114,318,70,-0.02499479166666667],[114,318,71,-0.02499479166666667],[114,318,72,-0.02499479166666667],[114,318,73,-0.02499479166666667],[114,318,74,-0.02499479166666667],[114,318,75,-0.02499479166666667],[114,318,76,-0.02499479166666667],[114,318,77,-0.02499479166666667],[114,318,78,-0.02499479166666667],[114,318,79,-0.02499479166666667],[114,319,64,-0.02499479166666667],[114,319,65,-0.02499479166666667],[114,319,66,-0.02499479166666667],[114,319,67,-0.02499479166666667],[114,319,68,-0.02499479166666667],[114,319,69,-0.02499479166666667],[114,319,70,-0.02499479166666667],[114,319,71,-0.02499479166666667],[114,319,72,-0.02499479166666667],[114,319,73,-0.02499479166666667],[114,319,74,-0.02499479166666667],[114,319,75,-0.02499479166666667],[114,319,76,-0.02499479166666667],[114,319,77,-0.02499479166666667],[114,319,78,-0.02499479166666667],[114,319,79,-0.02499479166666667],[115,-64,64,0.037482421875],[115,-64,65,0.037482421875],[115,-64,66,0.037482421875],[115,-64,67,0.037482421875],[115,-64,68,0.037482421875],[115,-64,69,0.037482421875],[115,-64,70,0.037482421875],[115,-64,71,0.037482421875],[115,-64,72,0.037482421875],[115,-64,73,0.037482421875],[115,-64,74,0.037482421875],[115,-64,75,0.037482421875],[115,-64,76,0.037482421875],[115,-64,77,0.037482421875],[115,-64,78,0.037482421875],[115,-64,79,0.037482421875],[115,-63,64,0.04037721331535765],[115,-63,65,0.04045500073627618],[115,-63,66,0.04053431490378387],[115,-63,67,0.04061491270783507],[115,-63,68,0.040696875608258305],[115,-63,69,0.040780440416883064],[115,-63,70,0.040865737827736275],[115,-63,71,0.04095279360619349],[115,-63,72,0.041041535896049634],[115,-63,73,0.0411318029703735],[115,-63,74,0.041223351426906904],[115,-63,75,0.04131586482742415],[115,-63,76,0.041408962779163165],[115,-63,77,0.04150221045518599],[115,-63,78,0.04159512854932447],[115,-63,79,0.041687203660233936],[115,-62,64,0.04331040702578606],[115,-62,65,0.043468356491962436],[115,-62,66,0.04362941830480543],[115,-62,67,0.04379314746369182],[115,-62,68,0.043959696902433815],[115,-62,69,0.04412948964438722],[115,-62,70,0.04430273709960557],[115,-62,71,0.044479443433521476],[115,-62,72,0.04465942114489902],[115,-62,73,0.04484230742614891],[115,-62,74,0.045027581303975266],[115,-62,75,0.04521458155573356],[115,-62,76,0.045402525394408436],[115,-62,77,0.045590527912783854],[115,-62,78,0.04577762227518045],[115,-62,79,0.04596278064310588],[115,-61,64,0.04628862537291459],[115,-61,65,0.046528576899668404],[115,-61,66,0.0467732237260545],[115,-61,67,0.047021970330576784],[115,-61,68,0.047275029088144634],[115,-61,69,0.04753295134233863],[115,-61,70,0.04779597787829464],[115,-61,71,0.04806404772806657],[115,-61,72,0.048336822036325944],[115,-61,73,0.04861370898892715],[115,-61,74,0.04889388979799275],[115,-61,75,0.04917634573343738],[115,-61,76,0.04945988618732788],[115,-61,77,0.049743177754200195],[115,-61,78,0.05002477430742238],[115,-61,79,0.05030314804895001],[115,-60,64,0.04931750058030072],[115,-60,65,0.04964078693542014],[115,-60,66,0.04997028981828976],[115,-60,67,0.05030532185888488],[115,-60,68,0.050646141683712426],[115,-60,69,0.05099336672914414],[115,-60,70,0.051347216476264584],[115,-60,71,0.05170752628637046],[115,-60,72,0.052073778755084565],[115,-60,73,0.052445136392185066],[115,-60,74,0.052820475616655066],[115,-60,75,0.05319842205166583],[115,-60,76,0.05357738709973849],[115,-60,77,0.053955605774219526],[115,-60,78,0.05433117575946111],[115,-60,79,0.05470209766877067],[115,-59,64,0.05240148596018965],[115,-59,65,0.05280898673415346],[115,-59,66,0.05322410998005315],[115,-59,67,0.05364613893870941],[115,-59,68,0.05407536452856331],[115,-59,69,0.05451240614909348],[115,-59,70,0.05495741326138544],[115,-59,71,0.055410084308625304],[115,-59,72,0.05586970412994855],[115,-59,73,0.056335182974400606],[115,-59,74,0.05680509710174995],[115,-59,75,0.057277730951142095],[115,-59,76,0.057751120853255435],[115,-59,77,0.05822310025676519],[115,-59,78,0.05869134643554709],[115,-59,79,0.059153428639228095],[115,-58,64,0.055543768978288145],[115,-58,65,0.05603599405420669],[115,-58,66,0.05653708724581559],[115,-58,67,0.0570463644737922],[115,-58,68,0.05756413386212051],[115,-58,69,0.0580909522671164],[115,-58,70,0.058626852622683835],[115,-58,71,0.0591713676480616],[115,-58,72,0.05972357150658672],[115,-58,73,0.060282123363313934],[115,-58,74,0.06084531282748633],[115,-58,75,0.061411107259250315],[115,-58,76,0.061977200913912574],[115,-58,77,0.06254106589151352],[115,-58,78,0.0631000048545536],[115,-58,79,0.06365120547244114],[115,-57,64,0.05874630529844924],[115,-57,65,0.05932351037033102],[115,-57,66,0.05991063530456331],[115,-57,67,0.060507085551843844],[115,-57,68,0.06111316886377427],[115,-57,69,0.0617293148585512],[115,-57,70,0.062355394470464134],[115,-57,71,0.06299074804658872],[115,-57,72,0.06363422934847184],[115,-57,73,0.06428425176629199],[115,-57,74,0.06493883673269621],[115,-57,75,0.06559566431620231],[115,-57,76,0.06625212596731225],[115,-57,77,0.06690537938438572],[115,-57,78,0.06755240546090056],[115,-57,79,0.06819006727107685],[115,-56,64,0.0620096213918358],[115,-56,65,0.06267190480155349],[115,-56,66,0.06334494630054788],[115,-56,67,0.06402828706590907],[115,-56,68,0.06472221218328529],[115,-56,69,0.06542695868872005],[115,-56,70,0.06614218953443719],[115,-56,71,0.0668670257783053],[115,-56,72,0.06760009119140141],[115,-56,73,0.0683395593779673],[115,-56,74,0.06908320339749838],[115,-56,75,0.0698284478708786],[115,-56,76,0.07057242354525049],[115,-56,77,0.07131202428578681],[115,-56,78,0.07204396645674413],[115,-56,79,0.07276485064924626],[115,-55,64,0.06533026988199156],[115,-55,65,0.06607728992662268],[115,-55,66,0.06683568770251741],[115,-55,67,0.06760517058116905],[115,-55,68,0.06838597430958998],[115,-55,69,0.06917808421589992],[115,-55,70,0.06998091674410141],[115,-55,71,0.07079335488407733],[115,-55,72,0.07161379132936763],[115,-55,73,0.07244017445597652],[115,-55,74,0.07327005711662499],[115,-55,75,0.07410064823669464],[115,-55,76,0.07492886719054158],[115,-55,77,0.07575140093001062],[115,-55,78,0.07656476383089932],[115,-55,79,0.07736536021793877],[115,-54,64,0.0687015503180119],[115,-54,65,0.06953231050764333],[115,-54,66,0.07037485776837966],[115,-54,67,0.07122907724052494],[115,-54,68,0.07209512511929789],[115,-54,69,0.07297268775213082],[115,-54,70,0.0738609103414182],[115,-54,71,0.07475843370482245],[115,-54,72,0.07566343324139671],[115,-54,73,0.07657366110008322],[115,-54,74,0.0774864915536151],[115,-54,75,0.07839896957241477],[115,-54,76,0.07930786258519575],[115,-54,77,0.08020971540577065],[115,-54,78,0.08110090829911133],[115,-54,79,0.08197771815415117],[115,-53,64,0.07211491821674494],[115,-53,65,0.0730277203645525],[115,-53,66,0.07395252960024219],[115,-53,67,0.07488939969508804],[115,-53,68,0.07583837368234157],[115,-53,69,0.0767988055342178],[115,-53,70,0.07776956011131315],[115,-53,71,0.07874904816327691],[115,-53,72,0.07973525761414334],[115,-53,73,0.08072578858097959],[115,-53,74,0.08171789214333572],[115,-53,75,0.0827085128722215],[115,-53,76,0.08369433511899342],[115,-53,77,0.08467183305677219],[115,-53,78,0.08563732445991333],[115,-53,79,0.08658702820080119],[115,-52,64,0.07556048097654841],[115,-52,65,0.07655290880160341],[115,-52,66,0.07755740721002485],[115,-52,67,0.0785741680456479],[115,-52,68,0.0796030844960548],[115,-52,69,0.08064315987716507],[115,-52,70,0.08169298617031184],[115,-52,71,0.08275077294148572],[115,-52,72,0.08381436669434482],[115,-52,73,0.08488127472269476],[115,-52,74,0.08594869350207027],[115,-52,75,0.08701354165071926],[115,-52,76,0.08807249748116355],[115,-52,77,0.0891220411547873],[115,-52,78,0.09015850144368712],[115,-52,79,0.09117810709653286],[115,-51,64,0.07902753496837564],[115,-51,65,0.08009646334680026],[115,-51,66,0.08117741265403336],[115,-51,67,0.08227066119158513],[115,-51,68,0.08337591307781661],[115,-51,69,0.08449181836488233],[115,-51,70,0.08561672034582485],[115,-51,71,0.08674867284544283],[115,-51,72,0.08788544264884561],[115,-51,73,0.08902451752165225],[115,-51,74,0.09016311989292673],[115,-51,75,0.09129822626158567],[115,-51,76,0.09242659237656935],[115,-51,77,0.09354478423076214],[115,-51,78,0.09464921489862158],[115,-51,79,0.09573618723799897],[115,-50,64,0.0825051604251281],[115,-50,65,0.08364678611630398],[115,-50,66,0.08480032221513409],[115,-50,67,0.08596606218976095],[115,-50,68,0.0871434800852834],[115,-50,69,0.08833088573900827],[115,-50,70,0.08952641420419696],[115,-50,71,0.09072802469665806],[115,-50,72,0.09193348041711455],[115,-50,73,0.09314033547633242],[115,-50,74,0.09434592903617975],[115,-50,75,0.09554738676772868],[115,-50,76,0.0967416297150083],[115,-50,77,0.09792539064030148],[115,-50,78,0.09909523791414919],[115,-50,79,0.10024760700078955],[115,-49,64,0.08570406703883009],[115,-49,65,0.08701628183308678],[115,-49,66,0.08834910166316605],[115,-49,67,0.08964769053660636],[115,-49,68,0.09089276629178304],[115,-49,69,0.09214706974210995],[115,-49,70,0.09340858062324991],[115,-49,71,0.09467523579913642],[115,-49,72,0.09594488035827085],[115,-49,73,0.09721522781815801],[115,-49,74,0.09848382960423445],[115,-49,75,0.09974805395504202],[115,-49,76,0.10100507438992658],[115,-49,77,0.10225186785945196],[115,-49,78,0.10348522268224139],[115,-49,79,0.10470175635545255],[115,-48,64,0.08882560595839596],[115,-48,65,0.09023415490858491],[115,-48,66,0.09166618463783242],[115,-48,67,0.09311788058303849],[115,-48,68,0.0945861783621212],[115,-48,69,0.09592758591833765],[115,-48,70,0.09725101303920915],[115,-48,71,0.09857878257288027],[115,-48,72,0.09990890006461589],[115,-48,73,0.10123932214283295],[115,-48,74,0.10256789660962298],[115,-48,75,0.10389231457786295],[115,-48,76,0.10521007484664038],[115,-48,77,0.10651846068631426],[115,-48,78,0.10781452918329329],[115,-48,79,0.10909511327294902],[115,-47,64,0.09195729788642429],[115,-47,65,0.09346283041858594],[115,-47,66,0.09499453116279064],[115,-47,67,0.09654869515574248],[115,-47,68,0.09812242026192432],[115,-47,69,0.09966061245761249],[115,-47,70,0.10104273731422196],[115,-47,71,0.10242863941926492],[115,-47,72,0.10381654970242957],[115,-47,73,0.105204735622496],[115,-47,74,0.10659140780849286],[115,-47,75,0.10797464183841463],[115,-47,76,0.10935231540832048],[115,-47,77,0.11072206111907937],[115,-47,78,0.1120812350811299],[115,-47,79,0.11342690150980306],[115,-46,64,0.09510506153643375],[115,-46,65,0.09670749531337798],[115,-46,66,0.09833845933324384],[115,-46,67,0.09999449750585215],[115,-46,68,0.10167294501689211],[115,-46,69,0.10333568979568598],[115,-46,70,0.10477420285436173],[115,-46,71,0.10621625274169695],[115,-46,72,0.10766034422439498],[115,-46,73,0.10910510478165145],[115,-46,74,0.11054915450320603],[115,-46,75,0.11199099462857122],[115,-46,76,0.11342891504482282],[115,-46,77,0.11486092102894194],[115,-46,78,0.11628467948738254],[115,-46,79,0.11769748491068624],[115,-45,64,0.09827330789489928],[115,-45,65,0.09997176493885317],[115,-45,66,0.10170066408506993],[115,-45,67,0.10345694593596658],[115,-45,68,0.10523826679056726],[115,-45,69,0.10694396549159461],[115,-45,70,0.10843748557477917],[115,-45,71,0.10993469847142157],[115,-45,72,0.11143441255058355],[115,-45,73,0.11293564413380938],[115,-45,74,0.11443744819613742],[115,-45,75,0.11593877155122914],[115,-45,76,0.11743832890391641],[115,-45,77,0.1189345021157011],[115,-45,78,0.12042526298838788],[115,-45,79,0.12190811982838899],[115,-44,64,0.10146463414873075],[115,-44,65,0.1032573967373112],[115,-44,66,0.10508195541733673],[115,-44,67,0.10693579993230383],[115,-44,68,0.10881699943518555],[115,-44,69,0.11047838485326257],[115,-44,70,0.11202644071914121],[115,-44,71,0.11357879433064359],[115,-44,72,0.11513456713286657],[115,-44,73,0.11669317157937355],[115,-44,74,0.11825410106668512],[115,-44,75,0.11981674644880204],[115,-44,76,0.1213802395803511],[115,-44,77,0.12294332429241162],[115,-44,78,0.12450425515721002],[115,-44,79,0.12606072434679397],[115,-43,64,0.10467958100858336],[115,-43,65,0.10656406711822046],[115,-43,66,0.10848105877486493],[115,-43,67,0.11042874763289245],[115,-43,68,0.11233746186128259],[115,-43,69,0.11393382667203386],[115,-43,70,0.11553680474029311],[115,-43,71,0.11714516585886019],[115,-43,72,0.1187583327218865],[115,-43,73,0.12037609915354872],[115,-43,74,0.12199837860905896],[115,-43,75,0.12362498350765268],[115,-43,76,0.12525543590900481],[115,-43,77,0.12688880999295607],[115,-43,78,0.1285236067466754],[115,-43,79,0.13015766120333996],[115,-42,64,0.10791645399172933],[115,-42,65,0.10988921210626171],[115,-42,66,0.1118944782340955],[115,-42,67,0.1139312944343089],[115,-42,68,0.11565616392404336],[115,-42,69,0.11730718328013219],[115,-42,70,0.11896624530848848],[115,-42,71,0.12063226509638891],[115,-42,72,0.12230493303541641],[115,-42,73,0.12398438760763121],[115,-42,74,0.12567092268140267],[115,-42,75,0.12736472994218756],[115,-42,76,0.1290656770285429],[115,-42,77,0.13077312188486412],[115,-42,78,0.13248576377842686],[115,-42,79,0.134201531358871],[115,-41,64,0.11117120942487535],[115,-41,65,0.11322793255813592],[115,-41,66,0.11531642330463167],[115,-41,67,0.11719572520103863],[115,-41,68,0.11889040827947413],[115,-41,69,0.12059738396714989],[115,-41,70,0.12231435834400929],[115,-41,71,0.12404034066108548],[115,-41,72,0.12577523388397688],[115,-41,73,0.12751946318280577],[115,-41,74,0.1292736431149737],[115,-41,75,0.13103828418642],[115,-41,76,0.13281353941510327],[115,-41,77,0.13459899145425405],[115,-41,78,0.13639348076069013],[115,-41,79,0.13819497521433974],[115,-40,64,0.11443740610390016],[115,-40,65,0.11657296490459747],[115,-40,66,0.11856009465964808],[115,-40,67,0.12029068833792175],[115,-40,68,0.12204057570167953],[115,-40,69,0.12380536058403527],[115,-40,70,0.12558261077470434],[115,-40,71,0.1273713577729451],[115,-40,72,0.12917164114710064],[115,-40,73,0.13098409479573167],[115,-40,74,0.13280957591850995],[115,-40,75,0.13464883743662806],[115,-40,76,0.13650224453329565],[115,-40,77,0.1383695359112396],[115,-40,78,0.14024963028340412],[115,-40,79,0.14214047852403358],[115,-39,64,0.11451987638363646],[115,-39,65,0.1164977673079741],[115,-39,66,0.11818243499414938],[115,-39,67,0.11989644035498169],[115,-39,68,0.12163249406802794],[115,-39,69,0.12338595619663616],[115,-39,70,0.1251542774573804],[115,-39,71,0.12693646269004022],[115,-39,72,0.12873259192274078],[115,-39,73,0.13054338516263606],[115,-39,74,0.13236981174444132],[115,-39,75,0.13421274499661287],[115,-39,76,0.1360726629121622],[115,-39,77,0.1360370487343339],[115,-39,78,0.13668828609025413],[115,-39,79,0.1343639405190565],[115,-38,64,0.11446902978865912],[115,-38,65,0.1160942843671071],[115,-38,66,0.117761115057572],[115,-38,67,0.11946122782740057],[115,-38,68,0.12118650554897994],[115,-38,69,0.12293199621426111],[115,-38,70,0.12469494624080994],[115,-38,71,0.12647423395919116],[115,-38,72,0.12826987286699615],[115,-38,73,0.12987036714439512],[115,-38,74,0.13023416176518468],[115,-38,75,0.12918464558187492],[115,-38,76,0.12670622830617873],[115,-38,77,0.1261743101956832],[115,-38,78,0.12707309509193648],[115,-38,79,0.12342332674160819],[115,-37,64,0.11405011063698516],[115,-37,65,0.1156545697668716],[115,-37,66,0.11730585609139797],[115,-37,67,0.11899467486300117],[115,-37,68,0.12071205835923135],[115,-37,69,0.12245266597595582],[115,-37,70,0.12421344613775775],[115,-37,71,0.12599304659514163],[115,-37,72,0.12577598725745706],[115,-37,73,0.12352544841171452],[115,-37,74,0.1225658740346065],[115,-37,75,0.1219001998500341],[115,-37,76,0.12210150714004775],[115,-37,77,0.12248347761443802],[115,-37,78,0.12259647122573332],[115,-37,79,0.1171560705879268],[115,-36,64,0.1136028387789606],[115,-36,65,0.1151885378132111],[115,-36,66,0.11682647192496703],[115,-36,67,0.1185064011576407],[115,-36,68,0.12021849248041168],[115,-36,69,0.12195693384907307],[115,-36,70,0.12371827787974557],[115,-36,71,0.12270138466149758],[115,-36,72,0.12115429572432403],[115,-36,73,0.12012237650478037],[115,-36,74,0.1197453379177353],[115,-36,75,0.12046161176226364],[115,-36,76,0.12118210647697909],[115,-36,77,0.12148787125884099],[115,-36,78,0.12105975885880654],[115,-36,79,0.11544450488380738],[115,-35,64,0.11313710233463417],[115,-35,65,0.11470600974154078],[115,-35,66,0.1163325970592147],[115,-35,67,0.11800575583348064],[115,-35,68,0.11971478155937305],[115,-35,69,0.12145330368538965],[115,-35,70,0.1232173795647626],[115,-35,71,0.12068901719420215],[115,-35,72,0.11845764374899223],[115,-35,73,0.11998494150845103],[115,-35,74,0.12059739320701064],[115,-35,75,0.12157721897117414],[115,-35,76,0.12320958484592659],[115,-35,77,0.12217604139653782],[115,-35,78,0.11978907041773398],[115,-35,79,0.11426101266417002],[115,-34,64,0.11266249597056731],[115,-34,65,0.11421643066382943],[115,-34,66,0.11583340668234333],[115,-34,67,0.11750154308182423],[115,-34,68,0.11920926646298918],[115,-34,69,0.12094955876984768],[115,-34,70,0.12271788362319853],[115,-34,71,0.12402144727283095],[115,-34,72,0.12055509747213732],[115,-34,73,0.12113952080908351],[115,-34,74,0.12179117432700624],[115,-34,75,0.12137171011019723],[115,-34,76,0.12352068082048585],[115,-34,77,0.12053134678836219],[115,-34,78,0.11715645832534849],[115,-34,79,0.1131488754350934],[115,-33,64,0.11218802957692696],[115,-33,65,0.11372857780579286],[115,-33,66,0.11533732786371265],[115,-33,67,0.11700173888798018],[115,-33,68,0.11870937980398696],[115,-33,69,0.12045249661918073],[115,-33,70,0.12222586450727578],[115,-33,71,0.12402617698639397],[115,-33,72,0.12585153885408468],[115,-33,73,0.12396536878657588],[115,-33,74,0.12417063316117755],[115,-33,75,0.12273440762162675],[115,-33,76,0.12410498773350599],[115,-33,77,0.12037168360625748],[115,-33,78,0.11751150850964838],[115,-33,79,0.11480095536390486],[115,-32,64,0.11172182768825456],[115,-32,65,0.11325025930192605],[115,-32,66,0.11485174121526559],[115,-32,67,0.11651319815513114],[115,-32,68,0.11822136078735068],[115,-32,69,0.1199676540172678],[115,-32,70,0.12174607653258024],[115,-32,71,0.12355260183247817],[115,-32,72,0.1253846822019731],[115,-32,73,0.12724079426862886],[115,-32,74,0.1291200269205647],[115,-32,75,0.1287576146000777],[115,-32,76,0.12709483724763723],[115,-32,77,0.12360561739731082],[115,-32,78,0.12248775332858346],[115,-32,79,0.11832956613080654],[115,-31,64,0.11127081894918665],[115,-31,65,0.11278800286081245],[115,-31,66,0.11438267235136701],[115,-31,67,0.1160413515815956],[115,-31,68,0.11774995975918445],[115,-31,69,0.11949902170049824],[115,-31,70,0.12128168132013412],[115,-31,71,0.12309312028881017],[115,-31,72,0.12493007589297504],[115,-31,73,0.126790398133972],[115,-31,74,0.12867264681876034],[115,-31,75,0.13057572930039238],[115,-31,76,0.13249857943884827],[115,-31,77,0.12954872386118424],[115,-31,78,0.1291254558229849],[115,-31,79,0.12163182395236513],[115,-30,64,0.11084041497114124],[115,-30,65,0.11234673365508048],[115,-30,66,0.11393447251605988],[115,-30,67,0.11558989167929007],[115,-30,68,0.11729813186778794],[115,-30,69,0.11904874812802427],[115,-30,70,0.12083396430221371],[115,-30,71,0.12264811413091808],[115,-30,72,0.12448717492044234],[115,-30,73,0.12634833774447576],[115,-30,74,0.1282296149053564],[115,-30,75,0.13012948528665766],[115,-30,76,0.1320465781423499],[115,-30,77,0.13365462616432505],[115,-30,78,0.1325756826441051],[115,-30,79,0.12470752645672319],[115,-29,64,0.11043417796618434],[115,-29,65,0.11192944082698691],[115,-29,66,0.11350948777889971],[115,-29,67,0.11516044734807954],[115,-29,68,0.11686671926757403],[115,-29,69,0.11861683178605123],[115,-29,70,0.12040203976239866],[115,-29,71,0.12221579179803675],[115,-29,72,0.1240532805774143],[115,-29,73,0.12591102677089425],[115,-29,74,0.12778649720117086],[115,-29,75,0.1296777578814037],[115,-29,76,0.13158316244851312],[115,-29,77,0.1335010764348723],[115,-29,78,0.13497390884201696],[115,-29,79,0.12755777362129472],[115,-28,64,0.11005347657740445],[115,-28,65,0.11153683202926183],[115,-28,66,0.11310771622401926],[115,-28,67,0.1147522464383458],[115,-28,68,0.11645412130763345],[115,-28,69,0.11820080147958777],[115,-28,70,0.11998254387751452],[115,-28,71,0.12179189692938891],[115,-28,72,0.12362326725718872],[115,-28,73,0.12547251680737637],[115,-28,74,0.12733659110397372],[115,-28,75,0.1292131792138045],[115,-28,76,0.13110040593073932],[115,-28,77,0.1329965566087718],[115,-28,78,0.13489983499968292],[115,-28,79,0.13255721820136226],[115,-27,64,0.10969712934876107],[115,-27,65,0.11116697543905382],[115,-27,66,0.11272645256935207],[115,-27,67,0.11436176573991658],[115,-27,68,0.11605595214563559],[115,-27,69,0.11779538405680046],[115,-27,70,0.11956931521374958],[115,-27,71,0.12136940439621266],[115,-27,72,0.12318929681677301],[115,-27,73,0.12502423282429714],[115,-27,74,0.12687068458566278],[115,-27,75,0.12872602132332675],[115,-27,76,0.1305882036054757],[115,-27,77,0.132455507111557],[115,-27,78,0.13432627622625418],[115,-27,79,0.13619870774713605],[115,-26,64,0.10936103528752811],[115,-26,65,0.11081492868636543],[115,-26,66,0.11235991964968131],[115,-26,67,0.1139823678250966],[115,-26,68,0.11566468520993642],[115,-26,69,0.11739215898590565],[115,-26,70,0.1191530620970035],[115,-26,71,0.12093820325412015],[115,-26,72,0.12274051993821088],[115,-26,73,0.12455469573502735],[115,-26,74,0.12637680266498147],[115,-26,75,0.12820396908152484],[115,-26,76,0.13003407363206182],[115,-26,77,0.1318654657039637],[115,-26,78,0.13369671271221553],[115,-26,79,0.1355263745222991],[115,-25,64,0.10903776067212319],[115,-25,65,0.11047234105205603],[115,-25,66,0.11199888904820574],[115,-25,67,0.11360394251997968],[115,-25,68,0.11526931783441048],[115,-25,69,0.11697924869819033],[115,-25,70,0.11872108120039478],[115,-25,71,0.12048484590581392],[115,-25,72,0.12226285783648838],[115,-25,73,0.12404933814225419],[115,-25,74,0.125840058128783],[115,-25,75,0.12763200622095594],[115,-25,76,0.12942307836047334],[115,-25,77,0.1312117922666523],[115,-25,78,0.13299702592599794],[115,-25,79,0.1347777806170389],[115,-24,64,0.10871536309039352],[115,-24,65,0.11012707694529086],[115,-24,66,0.11163104814962325],[115,-24,67,0.11321399945385172],[115,-24,68,0.11485719363293306],[115,-24,69,0.11654387355393783],[115,-24,70,0.11826053825796916],[115,-24,71,0.11999653246571444],[115,-24,72,0.12167101462028396],[115,-24,73,0.12335500429881226],[115,-24,74,0.12507691675833915],[115,-24,75,0.1268317588949533],[115,-24,76,0.12861309648143696],[115,-24,77,0.13041339050003775],[115,-24,78,0.132217828872609],[115,-24,79,0.13394445051373557],[115,-23,64,0.10837974348144817],[115,-23,65,0.10976592836381682],[115,-23,66,0.11124404546496856],[115,-23,67,0.11278022072389057],[115,-23,68,0.11423582612151299],[115,-23,69,0.11572249004296666],[115,-23,70,0.11724909007908964],[115,-23,71,0.11882089350488133],[115,-23,72,0.12043999830574273],[115,-23,73,0.12210575625215234],[115,-23,74,0.12381517750743234],[115,-23,75,0.1255633162130932],[115,-23,76,0.12734363648413927],[115,-23,77,0.1291483582587604],[115,-23,78,0.13096878247940652],[115,-23,79,0.13279559513172928],[115,-22,64,0.10749248894981135],[115,-22,65,0.10888912174774235],[115,-22,66,0.11028114220767833],[115,-22,67,0.11167815828852339],[115,-22,68,0.11309581623194633],[115,-22,69,0.11454793564884991],[115,-22,70,0.11604415113232937],[115,-22,71,0.11759033601954391],[115,-22,72,0.11918904130317722],[115,-22,73,0.1208399187643084],[115,-22,74,0.12254012781857843],[115,-22,75,0.12428472551567893],[115,-22,76,0.1260670391091899],[115,-22,77,0.12787902061594236],[115,-22,78,0.12971158280802328],[115,-22,79,0.13155491612290995],[115,-21,64,0.1064894026469696],[115,-21,65,0.10784168750805448],[115,-21,66,0.10919215234053334],[115,-21,67,0.1105501633622965],[115,-21,68,0.11193169029795906],[115,-21,69,0.11335130462097986],[115,-21,70,0.11481928697756087],[115,-21,71,0.11634203106329914],[115,-21,72,0.11792247710006647],[115,-21,73,0.11956053190549858],[115,-21,74,0.12125347505563497],[115,-21,75,0.12299635057836572],[115,-21,76,0.12478234358165102],[115,-21,77,0.12660314121254107],[115,-21,78,0.12844927735780112],[115,-21,79,0.1303104605314116],[115,-20,64,0.10546890979150685],[115,-20,65,0.10677648900541027],[115,-20,66,0.10808556517520548],[115,-20,67,0.10940517434761896],[115,-20,68,0.1107514442424779],[115,-20,69,0.11213954182718729],[115,-20,70,0.11358027872652106],[115,-20,71,0.11508048983926843],[115,-20,72,0.1166434558519294],[115,-20,73,0.11826931507317705],[115,-20,74,0.1199554641025689],[115,-20,75,0.12169694677383909],[115,-20,76,0.12348683076879442],[115,-20,77,0.1253165712793147],[115,-20,78,0.1271763610996025],[115,-20,79,0.12905546655604666],[115,-19,64,0.10444223736792892],[115,-19,65,0.10570399724792898],[115,-19,66,0.10697100125723455],[115,-19,67,0.10825186096915035],[115,-19,68,0.10956268327704576],[115,-19,69,0.11091906340664925],[115,-19,70,0.11233222966377528],[115,-19,71,0.11380938942318697],[115,-19,72,0.11535413308267763],[115,-19,73,0.11696683057323268],[115,-19,74,0.11864501995877529],[115,-19,75,0.12038378757637187],[115,-19,76,0.12217613911279637],[115,-19,77,0.12401336098345477],[115,-19,78,0.12588537137279868],[115,-19,79,0.12778106030946576],[115,-18,64,0.10341968987144066],[115,-18,65,0.10463364187449906],[115,-18,66,0.10585688431706422],[115,-18,67,0.10709750885562022],[115,-18,68,0.1083714169831115],[115,-18,69,0.109694461028035],[115,-18,70,0.11107817833630873],[115,-18,71,0.11253009537296045],[115,-18,72,0.11405410354683862],[115,-18,73,0.11565083148065101],[115,-18,74,0.11731801328968278],[115,-18,75,0.11905085234121446],[115,-18,76,0.12084237990078443],[115,-18,77,0.12268380802910595],[115,-18,78,0.12456487607327131],[115,-18,79,0.12647419009651178],[115,-17,64,0.10240418321572554],[115,-17,65,0.10356755946873981],[115,-17,66,0.10474447087610504],[115,-17,67,0.1059423991355663],[115,-17,68,0.10717685577393525],[115,-17,69,0.10846377735839186],[115,-17,70,0.10981490766661195],[115,-17,71,0.11123804946760053],[115,-17,72,0.11273740135500165],[115,-17,73,0.11431389566912858],[115,-17,74,0.1159655371123741],[115,-17,75,0.1176877415633204],[115,-17,76,0.11947367451777585],[115,-17,77,0.12131458852898952],[115,-17,78,0.12320015898384074],[115,-17,79,0.12511881753634188],[115,-16,64,0.10137894296735915],[115,-16,65,0.1024893368129217],[115,-16,66,0.10361783270015626],[115,-16,67,0.10477122929139544],[115,-16,68,0.10596446230831483],[115,-16,69,0.10721336337988036],[115,-16,70,0.10852975858308543],[115,-16,71,0.10992165897875113],[115,-16,72,0.11139354881533589],[115,-16,73,0.11294668012695898],[115,-16,74,0.1145793733804769],[115,-16,75,0.11628732371986358],[115,-16,76,0.11806391226779234],[115,-16,77,0.1199005218739216],[115,-16,78,0.12178685664722486],[115,-16,79,0.12371126457611807],[115,-15,64,0.10032608403976341],[115,-15,65,0.10138169074243567],[115,-15,66,0.10246041240416463],[115,-15,67,0.1035683090947722],[115,-15,68,0.10471955582486414],[115,-15,69,0.10592967492909176],[115,-15,70,0.10721042794612527],[115,-15,71,0.10856993804806918],[115,-15,72,0.11001292173205658],[115,-15,73,0.11154093272949471],[115,-15,74,0.11315261784381792],[115,-15,75,0.11484398431453915],[115,-15,76,0.11660867820601852],[115,-15,77,0.11843827323428897],[115,-15,78,0.12032256937562527],[115,-15,79,0.12224990054755266],[115,-14,64,0.09965253262262222],[115,-14,65,0.10023131196147407],[115,-14,66,0.10125949942806199],[115,-14,67,0.10232160329908023],[115,-14,68,0.10343085780646451],[115,-14,69,0.10460226312268205],[115,-14,70,0.10584735387000625],[115,-14,71,0.10717424851086273],[115,-14,72,0.10858781830015593],[115,-14,73,0.11008987464997323],[115,-14,74,0.11167937467703401],[115,-14,75,0.11335264458438667],[115,-14,76,0.11510362041890858],[115,-14,77,0.11692410564654324],[115,-14,78,0.11880404489986779],[115,-14,79,0.1207318131796014],[115,-13,64,0.09894971219869104],[115,-13,65,0.09902823664335718],[115,-13,66,0.10000561755799527],[115,-13,67,0.10102214508462068],[115,-13,68,0.10208994139430977],[115,-13,69,0.1032232698026586],[115,-13,70,0.10443326703896356],[115,-13,71,0.10572791646852864],[115,-13,72,0.10711214965228355],[115,-13,73,0.10858797273765737],[115,-13,74,0.11015461751235024],[115,-13,75,0.11180871682848895],[115,-13,76,0.1135445039846748],[115,-13,77,0.11535403553974366],[115,-13,78,0.11722743692732274],[115,-13,79,0.11915317014733263],[115,-12,64,0.06606119283198766],[115,-12,65,0.07859358927605066],[115,-12,66,0.09229652384219403],[115,-12,67,0.09966349778515991],[115,-12,68,0.10069072641421879],[115,-12,69,0.10178696511605188],[115,-12,70,0.10296277979822613],[115,-12,71,0.10422588136339893],[115,-12,72,0.1055811567279837],[115,-12,73,0.10703073116952755],[115,-12,74,0.10857406189625908],[115,-12,75,0.1102080626031003],[115,-12,76,0.1119272586490138],[115,-12,77,0.11372397236351202],[115,-12,78,0.11558853786874654],[115,-12,79,0.11750954469128654],[115,-11,64,0.03306700491247757],[115,-11,65,0.04090496457280801],[115,-11,66,0.04975588176957225],[115,-11,67,0.059612868651842454],[115,-11,68,0.07046504307969827],[115,-11,69,0.0822943464408523],[115,-11,70,0.09507118989319834],[115,-11,71,0.10266437764783756],[115,-11,72,0.10399115353163517],[115,-11,73,0.10541450242019265],[115,-11,74,0.10693404919843502],[115,-11,75,0.1085469538021127],[115,-11,76,0.11024802023386329],[115,-11,77,0.1120298423435263],[115,-11,78,0.11388298577873023],[115,-11,79,0.11579620538116026],[115,-10,64,0.013827481285326959],[115,-10,65,0.018019856830222083],[115,-10,66,0.02302014509421901],[115,-10,67,0.028846263586156346],[115,-10,68,0.03551165835437308],[115,-10,69,0.043023131184039096],[115,-10,70,0.05137674767942328],[115,-10,71,0.06055838216151669],[115,-10,72,0.07054441150791575],[115,-10,73,0.08130246247937492],[115,-10,74,0.09279221763106939],[115,-10,75,0.10496628353507904],[115,-10,76,0.10850316577399625],[115,-10,77,0.11026769633337959],[115,-10,78,0.11210644545977577],[115,-10,79,0.1140083699636816],[115,-9,64,0.01008164602099978],[115,-9,65,0.010962486149211782],[115,-9,66,0.011824661483510133],[115,-9,67,0.012669474704552966],[115,-9,68,0.014758466283502117],[115,-9,69,0.01889379951634479],[115,-9,70,0.023720323239338318],[115,-9,71,0.029245291535251454],[115,-9,72,0.03546653837531562],[115,-9,73,0.04237315443397743],[115,-9,74,0.04994620392929482],[115,-9,75,0.0581594829221049],[115,-9,76,0.06698032038753797],[115,-9,77,0.07637042269206958],[115,-9,78,0.08628676094192844],[115,-9,79,0.09668249912518574],[115,-8,64,0.008629246625124813],[115,-8,65,0.009484072801002837],[115,-8,66,0.010328606713386281],[115,-8,67,0.011163322496825858],[115,-8,68,0.011993270863398853],[115,-8,69,0.01282707346660761],[115,-8,70,0.01367267822819393],[115,-8,71,0.014536940778093317],[115,-8,72,0.015425351797557867],[115,-8,73,0.01852237152966835],[115,-8,74,0.02297828177781585],[115,-8,75,0.0279861415060957],[115,-8,76,0.03353089151057077],[115,-8,77,0.03959126844038534],[115,-8,78,0.046140607838842995],[115,-8,79,0.05314768112644849],[115,-7,64,0.007163739861446357],[115,-7,65,0.007993512562922746],[115,-7,66,0.008821311569278106],[115,-7,67,0.009646806872357024],[115,-7,68,0.010473250514223197],[115,-7,69,0.011307496150364145],[115,-7,70,0.0121561781254315],[115,-7,71,0.013025229303260683],[115,-7,72,0.013919542628972378],[115,-7,73,0.014842693002278579],[115,-7,74,0.015796719578579033],[115,-7,75,0.016781968486985037],[115,-7,76,0.017796995826023256],[115,-7,77,0.01883853066936116],[115,-7,78,0.021320648827574083],[115,-7,79,0.025614517434386076],[115,-6,64,0.00568866152866871],[115,-6,65,0.006494548375578299],[115,-6,66,0.00730658817106704],[115,-6,67,0.00812367564496404],[115,-6,68,0.008947250517114721],[115,-6,69,0.009782335719323132],[115,-6,70,0.010634181653733737],[115,-6,71,0.011507726668991728],[115,-6,72,0.012407197540162361],[115,-6,73,0.013335774567238936],[115,-6,74,0.014295321460255164],[115,-6,75,0.015286180041348707],[115,-6,76,0.016307029655917418],[115,-6,77,0.017354811047099083],[115,-6,78,0.01842471431020354],[115,-6,79,0.01951023040822231],[115,-5,64,0.0042075489208925855],[115,-5,65,0.004990880657050306],[115,-5,66,0.005788166952436733],[115,-5,67,0.006597559737948874],[115,-5,68,0.007418703582396744],[115,-5,69,0.008254766106275005],[115,-5,70,0.009109573596535022],[115,-5,71,0.00998702119699722],[115,-5,72,0.01089061804200522],[115,-5,73,0.011823100594368753],[115,-5,74,0.012786114403825129],[115,-5,75,0.01377996435548108],[115,-5,76,0.014803433330796374],[115,-5,77,0.0158536690574342],[115,-5,78,0.016926138778670562],[115,-5,79,0.018014651229702437],[115,-4,64,0.002723806394220845],[115,-4,65,0.003486030485735182],[115,-4,66,0.0042695621169183805],[115,-4,67,0.00507184559416322],[115,-4,68,0.005890778288155538],[115,-4,69,0.00672768729330702],[115,-4,70,0.0075849662505308455],[115,-4,71,0.008465442961019727],[115,-4,72,0.009371875818408181],[115,-4,73,0.010306521250088733],[115,-4,74,0.01127077242827672],[115,-4,75,0.012264869356948463],[115,-4,76,0.013287680286519644],[115,-4,77,0.014336554254922827],[115,-4,78,0.015407244401482636],[115,-4,79,0.016493901550275688],[115,-3,64,0.001240632035072069],[115,-3,65,0.0019832627702620503],[115,-3,66,0.002753995342240501],[115,-3,67,0.003549603448243816],[115,-3,68,0.004366314983102515],[115,-3,69,0.005203670611572686],[115,-3,70,0.00606265484525471],[115,-3,71,0.006945029237673372],[115,-3,72,0.00785278750960129],[115,-3,73,0.008787683668909804],[115,-3,74,0.009750833425459094],[115,-3,75,0.01074238904100139],[115,-3,76,0.011761287593984024],[115,-3,77,0.012805072480457426],[115,-3,78,0.01386978781491666],[115,-3,79,0.014949945240395777],[115,-2,64,-2.389932177181607E-4],[115,-2,65,4.855707280895033E-4],[115,-2,66,0.001244379008657633],[115,-2,67,0.0020335726758349496],[115,-2,68,0.002847815547013432],[115,-2,69,0.0036849537612545042],[115,-2,70,0.00454461753745842],[115,-2,71,0.005427528340683967],[115,-2,72,0.006334920649865347],[115,-2,73,0.007268037869980494],[115,-2,74,0.00822770272412514],[115,-2,75,0.009213962296148112],[115,-2,76,0.01022580773027219],[115,-2,77,0.011260968431573143],[115,-2,78,0.012315780450285935],[115,-2,79,0.013385128575195696],[115,-1,64,-0.0017122526108309891],[115,-1,65,-0.0010042769688085853],[115,-1,66,-2.56639734805878E-4],[115,-1,67,5.262054730195872E-4],[115,-1,68,0.0013374881838750705],[115,-1,69,0.002173486629353736],[115,-1,70,0.003032560939952518],[115,-1,71,0.003914442659541684],[115,-1,72,0.004819631422017379],[115,-1,73,0.005748866095834854],[115,-1,74,0.00670267076144133],[115,-1,75,0.00768097571947539],[115,-1,76,0.008682813560991336],[115,-1,77,0.009706090166223053],[115,-1,78,0.010747430335591694],[115,-1,79,0.011802097597345936],[115,0,64,-0.003176375378510581],[115,0,65,-0.0024836250096703385],[115,0,66,-0.0017465727368509518],[115,0,67,-9.702298641784533E-4],[115,0,68,-1.6265156018752043E-4],[115,0,69,6.710289994596081E-4],[115,0,70,0.001528012160037397],[115,0,71,0.002407111737450075],[115,0,72,0.0033081349026972988],[115,0,73,0.004231336067261909],[115,0,74,0.005176945158400429],[115,0,75,0.006144770505726407],[115,0,76,0.007133876393277714],[115,0,77,0.008142335166002079],[115,0,78,0.009167053616484238],[115,0,79,0.01020367321837803],[115,1,64,-0.004628451369975516],[115,1,65,-0.0039497545921657155],[115,1,66,-0.003222921069689755],[115,1,67,-0.0024534848959059594],[115,1,68,-0.0016506225615735236],[115,1,69,-8.206989957626454E-4],[115,1,70,3.245808198421813E-5],[115,1,71,9.068360308620467E-4],[115,1,72,0.0018016083731748312],[115,1,73,0.0027165786878536407],[115,1,74,0.0036516977204876237],[115,1,75,0.004606653951024094],[115,1,76,0.005580537694218025],[115,1,77,0.006571578643758837],[115,1,78,0.007576956609116711],[115,1,79,0.008592685036207057],[115,2,64,-0.006065176881238285],[115,2,65,-0.0053996399504787854],[115,2,66,-0.004682941268392199],[115,2,67,-0.003921106141262954],[115,2,68,-0.0031242628175703795],[115,2,69,-0.0022998139796287964],[115,2,70,-0.0014524684822360447],[115,2,71,-5.849590376122007E-4],[115,2,72,3.013273528681921E-4],[115,2,73,0.0012057899570841336],[115,2,74,0.002128126281248162],[115,2,75,0.0030679157069789438],[115,2,76,0.0040242748902787236],[115,2,77,0.0049955848547390365],[115,2,78,0.005979289552016179],[115,2,79,0.006971765507387398],[115,3,64,-0.0016967925283336296],[115,3,65,-0.003383764597871807],[115,3,66,-0.005487803077087772],[115,3,67,-0.005370146832394661],[115,3,68,-0.00458095359544403],[115,3,69,-0.003764010129728871],[115,3,70,-0.002924752091751147],[115,3,71,-0.002066515776160901],[115,3,72,-0.0011911639514515394],[115,3,73,-2.9964302028568924E-4],[115,3,74,6.075289248028239E-4],[115,3,75,0.0015298434206832206],[115,3,76,0.002466452438761637],[115,3,77,0.003415888629037598],[115,3,78,0.004375854800601744],[115,3,79,0.005343082284634524],[115,4,64,1.7026556028661478E-4],[115,4,65,-3.0816202937857575E-4],[115,4,66,-9.370547939650044E-4],[115,4,67,-0.001784580583808214],[115,4,68,-0.002912066679730697],[115,4,69,-0.004367577685772959],[115,4,70,-0.0043817066909772944],[115,4,71,-0.0035354926708596364],[115,4,72,-0.0026738460037798576],[115,4,73,-0.001797988843388851],[115,4,74,-9.08604471728311E-4],[115,4,75,-6.2548842899784765E-6],[115,4,76,9.082684995838958E-4],[115,4,77,0.0018336609742538382],[115,4,78,0.0027678873555610013],[115,4,79,0.0037080311341355643],[115,5,64,2.508826688489181E-4],[115,5,65,-9.040380799300884E-5],[115,5,66,-2.898632448144867E-4],[115,5,67,-4.381930623132586E-4],[115,5,68,-6.187215388006995E-4],[115,5,69,-9.008550728958169E-4],[115,5,70,-0.0013406131581444793],[115,5,71,-0.0019821236933427345],[115,5,72,-0.0028590413284740063],[115,5,73,-0.0032869920562244768],[115,5,74,-0.0024184842542171758],[115,5,75,-0.0015390228969530185],[115,5,76,-6.493044004418817E-4],[115,5,77,2.4955668583260843E-4],[115,5,78,0.0011558051580197026],[115,5,79,0.0020668863208536],[115,6,64,0.0022902353832501636],[115,6,65,0.0010139650882537749],[115,6,66,1.9755479603713287E-4],[115,6,67,-2.722278374043357E-4],[115,6,68,-5.006689852860567E-4],[115,6,69,-5.784687996046854E-4],[115,6,70,-5.822354162152311E-4],[115,6,71,-5.759319667958403E-4],[115,6,72,-6.122515539245227E-4],[115,6,73,-7.339280814318314E-4],[115,6,74,-9.749782830521508E-4],[115,6,75,-0.00136187065961249],[115,6,76,-0.0019146174250155412],[115,6,77,-0.0013364589103863728],[115,6,78,-4.610747601388571E-4],[115,6,79,4.1840342353042126E-4],[115,7,64,0.010035642192728766],[115,7,65,0.0067518636966221925],[115,7,66,0.004271649317371262],[115,7,67,0.0024593205496897057],[115,7,68,0.001187669698898389],[115,7,69,3.447027285298568E-4],[115,7,70,-1.668072407775289E-4],[115,7,71,-4.3071655579048177E-4],[115,7,72,-5.188441304804563E-4],[115,7,73,-4.922467770231938E-4],[115,7,74,-4.024309677761746E-4],[115,7,75,-2.9249636071579203E-4],[115,7,76,-1.9820714454520295E-4],[115,7,77,-1.489877922855038E-4],[115,7,78,-1.6884027248936133E-4],[115,7,79,-2.771802141473459E-4],[115,8,64,0.02722900253412549],[115,8,65,0.02086861641313122],[115,8,66,0.015679675166870462],[115,8,67,0.011504896292094627],[115,8,68,0.008195610885619597],[115,8,69,0.005618737945120162],[115,8,70,0.0036564955204961393],[115,8,71,0.0022051067446605494],[115,8,72,0.0011735366007791697],[115,8,73,4.8226564179981366E-4],[115,8,74,6.21137924850964E-5],[115,8,75,-1.4687675257866588E-4],[115,8,76,-1.9649313325771116E-4],[115,8,77,-1.313332072904068E-4],[115,8,78,1.02868913215883E-5],[115,8,79,1.9550182677699617E-4],[115,9,64,0.05757050108186041],[115,9,65,0.04708361945306789],[115,9,66,0.03815303210298095],[115,9,67,0.030603350363204867],[115,9,68,0.02426669112889239],[115,9,69,0.01899024361179725],[115,9,70,0.014636454281518082],[115,9,71,0.0110820278854076],[115,9,72,0.008216862081470672],[115,9,73,0.005942953729400202],[115,9,74,0.004173311168567113],[115,9,75,0.00283089587752532],[115,9,76,0.0018476094981509197],[115,9,77,0.001163337208388454],[115,9,78,7.250550551423382E-4],[115,9,79,4.8600656745925486E-4],[115,10,64,0.06190948335370541],[115,10,65,0.06082081890677412],[115,10,66,0.05975941560088162],[115,10,67,0.05871749681936058],[115,10,68,0.053109641829363625],[115,10,69,0.04418305494525396],[115,10,70,0.036506897148484305],[115,10,71,0.02994052376167279],[115,10,72,0.02435611496048512],[115,10,73,0.019637958750958508],[115,10,74,0.015681624986405813],[115,10,75,0.012393087062900356],[115,10,76,0.009687831166868574],[115,10,77,0.007489981049507709],[115,10,78,0.005731457895511861],[115,10,79,0.004351188931592909],[115,11,64,0.05975045113890644],[115,11,65,0.05863900347568636],[115,11,66,0.05755300048021941],[115,11,67,0.056484813915741956],[115,11,68,0.055422303277311215],[115,11,69,0.05435610589655902],[115,11,70,0.05328021128185237],[115,11,71,0.05219133281877184],[115,11,72,0.051670209797682866],[115,11,73,0.04529164267794989],[115,11,74,0.03832118438254734],[115,11,75,0.032280567998001566],[115,11,76,0.02706971094019517],[115,11,77,0.022597388472614433],[115,11,78,0.018780565798066598],[115,11,79,0.015543724851927202],[115,12,64,0.05759596699996956],[115,12,65,0.056462920852034776],[115,12,66,0.0553531321661544],[115,12,67,0.054259332769959104],[115,12,68,0.053169634488529544],[115,12,69,0.05207470708870347],[115,12,70,0.050968557892314824],[115,12,71,0.049847925563220964],[115,12,72,0.04871172112989925],[115,12,73,0.049006373080312665],[115,12,74,0.04939396318711219],[115,12,75,0.04983603066855142],[115,12,76,0.0503319280315922],[115,12,77,0.05020394781696067],[115,12,78,0.04360135878676821],[115,12,79,0.03780005604580198],[115,13,64,0.055450496250414795],[115,13,65,0.05429745307540423],[115,13,66,0.053165158848609985],[115,13,67,0.0520469135425344],[115,13,68,0.05093124477300886],[115,13,69,0.049808928497332663],[115,13,70,0.048674022966823924],[115,13,71,0.047523292816870885],[115,13,72,0.04635567105607859],[115,13,73,0.04593872737788857],[115,13,74,0.04625010170819364],[115,13,75,0.046613539483606393],[115,13,76,0.04702860421090203],[115,13,77,0.0474947886213386],[115,13,78,0.048011265124166605],[115,13,79,0.048576681825440685],[115,14,64,0.05331983402659861],[115,14,65,0.05214873643838561],[115,14,66,0.050995595297652706],[115,14,67,0.04985446861729985],[115,14,68,0.04871445250623405],[115,14,69,0.04756649677566184],[115,14,70,0.04640473451893387],[115,14,71,0.045225945676316104],[115,14,72,0.044029047548234716],[115,14,73,0.0428815357966932],[115,14,74,0.043117640686440736],[115,14,75,0.04340326490902338],[115,14,76,0.04373810224348645],[115,14,77,0.044121836616576704],[115,14,78,0.04455389885847985],[115,14,79,0.045033265432447955],[115,15,64,0.051213901070176086],[115,15,65,0.05002692334171117],[115,15,66,0.04885481533168373],[115,15,67,0.04769255150463171],[115,15,68,0.0465299309518139],[115,15,69,0.0453581381956061],[115,15,70,0.04417139899270381],[115,15,71,0.04296649280631161],[115,15,72,0.041742279834569615],[115,15,73,0.04049926396590382],[115,15,74,0.04000472134857357],[115,15,75,0.04021288497221089],[115,15,76,0.040467564050958325],[115,15,77,0.04076856185580134],[115,15,78,0.041115503990088134],[115,15,79,0.041507643026824206],[115,16,64,0.049148486939248566],[115,16,65,0.047947852661789796],[115,16,66,0.046758600858481277],[115,16,67,0.045576743466443886],[115,16,68,0.04439290226006488],[115,16,69,0.04319856298331429],[115,16,70,0.04198807403362025],[115,16,71,0.04075821585993065],[115,16,72,0.03950777143975474],[115,16,73,0.038237127789471526],[115,16,74,0.036947908989214184],[115,16,75,0.0370500302887514],[115,16,76,0.037223563693036366],[115,16,77,0.037440517419047074],[115,16,78,0.03770067448896022],[115,16,79,0.0380035357748754],[115,17,64,0.04713362859160058],[115,17,65,0.04592155646540416],[115,17,66,0.04471690274425294],[115,17,67,0.04351680053695714],[115,17,68,0.04231279954246279],[115,17,69,0.04109676068751796],[115,17,70,0.03986319927762437],[115,17,71,0.038608917573903834],[115,17,72,0.03733262431372781],[115,17,73,0.03603457985268907],[115,17,74,0.03471626737517614],[115,17,75,0.033917724445660165],[115,17,76,0.03400840566444886],[115,17,77,0.03413936048937001],[115,17,78,0.034310514984859264],[115,17,79,0.034521610640292126],[115,18,64,0.04517202604030711],[115,18,65,0.04395071007862538],[115,18,66,0.04273234931997087],[115,18,67,0.041515245395490424],[115,18,68,0.04029196524183877],[115,18,69,0.03905482411016563],[115,18,70,0.037798559637615546],[115,18,71,0.03652003214546579],[115,18,72,0.035217897533559216],[115,18,73,0.03389229997310225],[115,18,74,0.03254458480642258],[115,18,75,0.03117703200012532],[115,18,76,0.03081984735764174],[115,18,77,0.03086263656154042],[115,18,78,0.030942455015948726],[115,18,79,0.031059290245177004],[115,19,64,0.04326021636436405],[115,19,65,0.04203180479335472],[115,19,66,0.04080140873468358],[115,19,67,0.039568510880900645],[115,19,68,0.038326767571180004],[115,19,69,0.03706903030506058],[115,19,70,0.03579032256029695],[115,19,71,0.03448761070505385],[115,19,72,0.033159533394674534],[115,19,73,0.03180614464634587],[115,19,74,0.030428670957866655],[115,19,75,0.029029282791149608],[115,19,76,0.02765171327082335],[115,19,77,0.027604308297047908],[115,19,78,0.027590690673252902],[115,19,79,0.02761110670570212],[115,20,64,0.04108822070108261],[115,20,65,0.040156272738773736],[115,20,66,0.03891550453989895],[115,20,67,0.03766803825034025],[115,20,68,0.036408673676274456],[115,20,69,0.035130880806752585],[115,20,70,0.033830037579842404],[115,20,71,0.03250327271978834],[115,20,72,0.0311492536182869],[115,20,73,0.029767981593324406],[115,20,74,0.028360594846495276],[115,20,75,0.026929179411354174],[115,20,76,0.025476588359245936],[115,20,77,0.024355282530072717],[115,20,78,0.0242466305977843],[115,20,79,0.02416906603156661],[115,21,64,0.03765974418926198],[115,21,65,0.0367567797698536],[115,21,66,0.03582689709713756],[115,21,67,0.034870538197648744],[115,21,68,0.033893986732880146],[115,21,69,0.032905396599238586],[115,21,70,0.03190559719144082],[115,21,71,0.030555122478171964],[115,21,72,0.029175424963449305],[115,21,73,0.027766498559332678],[115,21,74,0.02632943154319725],[115,21,75,0.02486625766970254],[115,21,76,0.023379809088689318],[115,21,77,0.021873571313179015],[115,21,78,0.020899346478704083],[115,21,79,0.020723023397779327],[115,22,64,0.03418583490326754],[115,22,65,0.03324886320455925],[115,22,66,0.032293398785092686],[115,22,67,0.031318910092824115],[115,22,68,0.030330541073175666],[115,22,69,0.029335722633258166],[115,22,70,0.028340579291440383],[115,22,71,0.027349938987969977],[115,22,72,0.026367420886814503],[115,22,73,0.02539552823146218],[115,22,74,0.0243219881015183],[115,22,75,0.022827917901886745],[115,22,76,0.021308615705141833],[115,22,77,0.019767627155243956],[115,22,78,0.01820908135079343],[115,22,79,0.017261069661522424],[115,23,64,0.03069072282936932],[115,23,65,0.029719872230400624],[115,23,66,0.0287390234742651],[115,23,67,0.027746771183771272],[115,23,68,0.026747120429466253],[115,23,69,0.025746708403319985],[115,23,70,0.024751140970606093],[115,23,71,0.023764935435534148],[115,23,72,0.022791550477630693],[115,23,73,0.02183342730798003],[115,23,74,0.020892041865760148],[115,23,75,0.019967967846402073],[115,23,76,0.019060950326381686],[115,23,77,0.017675921898363305],[115,23,78,0.01608310355766116],[115,23,79,0.01447602723201986],[115,24,64,0.02719976356666635],[115,24,65,0.026195438021569845],[115,24,66,0.0251895449996471],[115,24,67,0.024179925372409514],[115,24,68,0.02316946494967067],[115,24,69,0.02216394534705355],[115,24,70,0.021168389325064173],[115,24,71,0.020186940658833537],[115,24,72,0.019222838302930225],[115,24,73,0.018278407655777554],[115,24,74,0.017355068789416794],[115,24,75,0.016453361466181395],[115,24,76,0.015572986722288868],[115,24,77,0.014712864759862599],[115,24,78,0.013871208853836362],[115,24,79,0.012322006059086392],[115,25,64,0.023738560417848137],[115,25,65,0.022701450899586736],[115,25,66,0.02167100616446177],[115,25,67,0.020644449871844103],[115,25,68,0.019623586327900358],[115,25,69,0.01861329049051414],[115,25,70,0.017617944645636464],[115,25,71,0.01664126062372554],[115,25,72,0.015686201169244473],[115,25,73,0.014754923899154764],[115,25,74,0.01384874776163447],[115,25,75,0.012968141847542873],[115,25,76,0.012112736351065183],[115,25,77,0.011281355423132779],[115,25,78,0.010472071612161994],[115,25,79,0.009682281541838061],[115,26,64,0.020332141596409267],[115,26,65,0.019263233524256594],[115,26,66,0.018208893272400325],[115,26,67,0.017165876228912427],[115,26,68,0.01613496007948559],[115,26,69,0.015120074425393612],[115,26,70,0.01412491253074412],[115,26,71,0.013152702081062097],[115,26,72,0.012206077541590601],[115,26,73,0.011286980109353086],[115,26,74,0.01039658521516537],[115,26,75,0.009535257459425888],[115,26,76,0.008702532795917378],[115,26,77,0.007897127711776322],[115,26,78,0.007116975089880985],[115,26,79,0.006359286382751892],[115,27,64,0.01700419451042736],[115,27,65,0.01590477029065651],[115,27,66,0.014827365410048912],[115,27,67,0.013768424115003597],[115,27,68,0.012727768055975355],[115,27,69,0.011708356382149706],[115,27,70,0.010713155019332255],[115,27,71,0.009744862960114576],[115,27,72,0.00880574011293706],[115,27,73,0.007897467183168068],[115,27,74,0.007021037586101928],[115,27,75,0.006176681306974245],[115,27,76,0.005363820541294018],[115,27,77,0.004581056870829664],[115,27,78,0.0038261896571982934],[115,27,79,0.0030962652668493117],[115,28,64,0.013776359119201552],[115,28,65,0.012647994904431971],[115,28,66,0.011548540405298959],[115,28,67,0.010474289744173861],[115,28,68,0.009424192972806198],[115,28,69,0.008400228065289034],[115,28,70,0.007404606563033045],[115,28,71,0.006439463001204037],[115,28,72,0.005506643359206267],[115,28,73,0.004607529347876857],[115,28,74,0.0037428985750747427],[115,28,75,0.0029128205355898385],[115,28,76,0.0021165882788454346],[115,28,77,0.0013526855195813258],[115,28,78,6.187888733840395E-4],[115,28,79,-8.819517872354069E-5],[115,29,64,0.010667582328576987],[115,29,65,0.009512138075826333],[115,29,66,0.008391839355327283],[115,29,67,0.007302990745690167],[115,29,68,0.00624376669121046],[115,29,69,0.005215167887091725],[115,29,70,0.004218636348893468],[115,29,71,0.0032557159949016807],[115,29,72,0.002327807285451859],[115,29,73,0.00143596082035121],[115,29,74,5.807099752861362E-4],[115,29,75,-2.380574468788225E-4],[115,29,76,-0.0010211886753741094],[115,29,77,-0.0017703167637152367],[115,29,78,-0.0024878730287305395],[115,29,79,-0.0031770615358835495],[115,30,64,0.007693535311957669],[115,30,65,0.0065131371918235835],[115,30,66,0.0053733915361238735],[115,30,67,0.004270769237260211],[115,30,68,0.0032027739167919257],[115,30,69,0.0021694471595067573],[115,30,70,0.0011714584107334835],[115,30,71,2.0974492576724698E-4],[115,30,72,-7.147614962617506E-4],[115,30,73,-0.0016013664123280204],[115,30,74,-0.0024498031523088985],[115,30,75,-0.0032603817479935587],[115,30,76,-0.004034096478065542],[115,30,77,-0.004772692236478717],[115,30,78,-0.005478690029717108],[115,30,79,-0.006155372000169365],[115,31,64,0.0048660955403685745],[115,31,65,0.0036631097197089434],[115,31,66,0.0025055013988922376],[115,31,67,0.001390054739569264],[115,31,68,3.1371287383991987E-4],[115,31,69,-7.244102961318702E-4],[115,31,70,-0.0017244091288347637],[115,31,71,-0.0026859587728402558],[115,31,72,-0.003608610303223864],[115,31,73,-0.004492042804776915],[115,31,74,-0.005336272252568805],[115,31,75,-0.006141817158048508],[115,31,76,-0.006909821062394708],[115,31,77,-0.007642132067392419],[115,31,78,-0.008341339696902511],[115,31,79,-0.009010769478255694],[115,32,64,0.0021928952009652716],[115,32,65,9.698919893798529E-4],[115,32,66,-2.0382074763538222E-4],[115,32,67,-0.0013310115323212596],[115,32,68,-0.002415185588195032],[115,32,69,-0.0034581137612620205],[115,32,70,-0.004460634439152766],[115,32,71,-0.005423030737589582],[115,32,72,-0.006345341565560797],[115,32,73,-0.007227628654459132],[115,32,74,-0.00807019937308318],[115,32,75,-0.008873785271359234],[115,32,76,-0.009639676412356633],[115,32,77,-0.010369811663819457],[115,32,78,-0.011066825226212829],[115,32,79,-0.011734049773438516],[115,33,64,-3.230623988526774E-4],[115,33,65,-0.0015633550814060269],[115,33,66,-0.002751262852755988],[115,33,67,-0.003888989546505592],[115,33,68,-0.004980379078613177],[115,33,69,-0.006028035169889419],[115,33,70,-0.007033510811408492],[115,33,71,-0.007997682922252999],[115,33,72,-0.008921073756846398],[115,33,73,-0.009804127953626432],[115,33,74,-0.010647445022141126],[115,33,75,-0.011451967188037584],[115,33,76,-0.012219122633508253],[115,33,77,-0.012950924283775794],[115,33,78,-0.013650024397336218],[115,33,79,-0.01412591175640212],[115,34,64,-0.002683716887938952],[115,34,65,-0.003938471797201269],[115,34,66,-0.005138548562172209],[115,34,67,-0.006285489085667591],[115,34,68,-0.0073833735991268865],[115,34,69,-0.008435581346179697],[115,34,70,-0.009444342796290346],[115,34,71,-0.010411105558241176],[115,34,72,-0.011336861201547851],[115,34,73,-0.012222427983279029],[115,34,74,-0.013068689256083878],[115,34,75,-0.013876787455348514],[115,34,76,-0.013155459327941167],[115,34,77,-0.011909079341264195],[115,34,78,-0.010685285356366248],[115,34,79,-0.009487648689966136],[115,35,64,-0.004896193789838331],[115,35,65,-0.006162555500982094],[115,35,66,-0.007372706493515041],[115,35,67,-0.008527452704048982],[115,35,68,-0.009631020970744916],[115,35,69,-0.010687507662035958],[115,35,70,-0.011699778488706455],[115,35,71,-0.012669820794118615],[115,35,72,-0.013599071870096008],[115,35,73,-0.012550262429172617],[115,35,74,-0.011199055260307515],[115,35,75,-0.009864425135429962],[115,35,76,-0.008548880293668376],[115,35,77,-0.007255224648044979],[115,35,78,-0.005986628915007122],[115,35,79,-0.00474665868172035],[115,36,64,-0.006972974768747385],[115,36,65,-0.008248144805638284],[115,36,66,-0.009466269797717721],[115,36,67,-0.010627371512103178],[115,36,68,-0.011735752324726841],[115,36,69,-0.012796171771983285],[115,36,70,-0.012288327028961205],[115,36,71,-0.010845149284613656],[115,36,72,-0.009412839570455933],[115,36,73,-0.00799428797935539],[115,36,74,-0.00659212159633664],[115,36,75,-0.005208907959892971],[115,36,76,-0.0038473159475377623],[115,36,77,-0.002510234139932049],[115,36,78,-0.0012008468271033968],[115,36,79,7.733207611138213E-5],[115,37,64,-0.008931993447042359],[115,37,65,-0.010213330541060774],[115,37,66,-0.01143740433931248],[115,37,67,-0.012335441601737312],[115,37,68,-0.010827274389189746],[115,37,69,-0.009317200183863398],[115,37,70,-0.007811161368501044],[115,37,71,-0.00631388911381103],[115,37,72,-0.004829231675891784],[115,37,73,-0.0033604419070852472],[115,37,74,-0.001910423671406949],[115,37,75,-4.819369709848564E-4],[115,37,76,9.222382962927906E-4],[115,37,77,0.002299179916888405],[115,37,78,0.0036457421413653456],[115,37,79,0.004958515424059464],[115,38,64,-0.010796063467092842],[115,38,65,-0.011059855783456515],[115,38,66,-0.009522068042612257],[115,38,67,-0.007968183130667028],[115,38,68,-0.0064048580934948285],[115,38,69,-0.004840225135938499],[115,38,70,-0.00328080892043392],[115,38,71,-0.001731830177909771],[115,38,72,-1.975335873434843E-4],[115,38,73,0.0013185239082732884],[115,38,74,0.0028132246779681925],[115,38,75,0.004283682086128548],[115,38,76,0.005727072386763328],[115,38,77,0.007140506823451212],[115,38,78,0.008520943824550884],[115,38,79,0.009865141083467114],[115,39,64,-0.008343363135341],[115,39,65,-0.006766590176963596],[115,39,66,-0.005173882622095271],[115,39,67,-0.003565380610325861],[115,39,68,-0.0019478174242142368],[115,39,69,-3.2998877102480533E-4],[115,39,70,0.0012810121210773534],[115,39,71,0.00287950505309807],[115,39,72,0.00446089258936939],[115,39,73,0.006021368255489999],[115,39,74,0.007557663553171706],[115,39,75,0.009066834033624998],[115,39,76,0.010546084560949933],[115,39,77,0.011992633789613074],[115,39,78,0.013403617776298973],[115,39,79,0.014776032547970087],[115,40,64,-0.004083850041155138],[115,40,65,-0.0024502246164462924],[115,40,66,-8.021091519529581E-4],[115,40,67,8.61124239949741E-4],[115,40,68,0.00253265443531131],[115,40,69,0.0042029879568813554],[115,40,70,0.005864448610338646],[115,40,71,0.007510900749697665],[115,40,72,0.009137414213123073],[115,40,73,0.01073996668984592],[115,40,74,0.012315183901147213],[115,40,75,0.013860117868046348],[115,40,76,0.015372063429258748],[115,40,77,0.016848413066649415],[115,40,78,0.018286549992620915],[115,40,79,0.019683779356359073],[115,41,64,1.8281437640321825E-4],[115,41,65,0.0018745529228970995],[115,41,66,0.00357899817236851],[115,41,67,0.005297581426870736],[115,41,68,0.007023377709341761],[115,41,69,0.008746142990033928],[115,41,70,0.010457584027236289],[115,41,71,0.012151093807631118],[115,41,72,0.01382140984147673],[115,41,73,0.01546430886934731],[115,41,74,0.017076338397928888],[115,41,75,0.018654585372861344],[115,41,76,0.020196482188302386],[115,41,77,0.02169965012729328],[115,41,78,0.023161780224932888],[115,41,79,0.02458055144952123],[115,42,64,0.004440633000451067],[115,42,65,0.006191967918861189],[115,42,66,0.007953961561322316],[115,42,67,0.009728886715787624],[115,42,68,0.01150969490489711],[115,42,69,0.013285329434143464],[115,42,70,0.015046833906865177],[115,42,71,0.016787100052291826],[115,42,72,0.018500518189174437],[115,42,73,0.020182663047171916],[115,42,74,0.02183001540201964],[115,42,75,0.023439719871552724],[115,42,76,0.025009379111853594],[115,42,77,0.02653688454771353],[115,42,78,0.028020283670048027],[115,42,79,0.029457683836562804],[115,43,64,0.008673929097793796],[115,43,65,0.010486406625445612],[115,43,66,0.012307313583109806],[115,43,67,0.014139795724574005],[115,43,68,0.015976658170435257],[115,43,69,0.017805967547824833],[115,43,70,0.019618052544570188],[115,43,71,0.021405264948689866],[115,43,72,0.023161621788238322],[115,43,73,0.024882481698048246],[115,43,74,0.026564256011049104],[115,43,75,0.028204154963249628],[115,43,76,0.029799969293997672],[115,43,77,0.03134988741841722],[115,43,78,0.03285234824778133],[115,43,79,0.0343059296376663],[115,44,64,0.012868663374944234],[115,44,65,0.014743726622100016],[115,44,66,0.01662489267640613],[115,44,67,0.018516197260847342],[115,44,68,0.02041027287780755],[115,44,69,0.022294249303992736],[115,44,70,0.024157688070616502],[115,44,71,0.025992358013494303],[115,44,72,0.02779186930746193],[115,44,73,0.029551340479492542],[115,44,74,0.03126709894201999],[115,44,75,0.032936415479624705],[115,44,76,0.03455727301497727],[115,44,77,0.03612816987549598],[115,44,78,0.03764795768140266],[115,44,79,0.03890587119321459],[115,45,64,0.017013815407977584],[115,45,65,0.018952630495196243],[115,45,66,0.020895200116398758],[115,45,67,0.02284644577481038],[115,45,68,0.024798797272365627],[115,45,69,0.02673839533708861],[115,45,70,0.02865398567698434],[115,45,71,0.0305367106824334],[115,45,72,0.03237973625950503],[115,45,73,0.034177910236537955],[115,45,74,0.035903904656615596],[115,45,75,0.03738978818359407],[115,45,76,0.03883508018187032],[115,45,77,0.04024033544017023],[115,45,78,0.041605836998246326],[115,45,79,0.0429317378326551],[115,46,64,0.020987975598155035],[115,46,65,0.02310610247261096],[115,46,66,0.025110818237985055],[115,46,67,0.027122752708784913],[115,46,68,0.029106910437326133],[115,46,69,0.03094675674331147],[115,46,70,0.03272892526177675],[115,46,71,0.03446099542123869],[115,46,72,0.03614852410437159],[115,46,73,0.037795395336898185],[115,46,74,0.039404139017441255],[115,46,75,0.04097621820317424],[115,46,76,0.04251228456199054],[115,46,77,0.04401240169565036],[115,46,78,0.045476236129374376],[115,46,79,0.046903215851704184],[115,47,64,0.023858496441493644],[115,47,65,0.026051612012490663],[115,47,66,0.028170738701827094],[115,47,67,0.030206563064029496],[115,47,68,0.03216459076985013],[115,47,69,0.034058358021886885],[115,47,70,0.03589862397899989],[115,47,71,0.03769354383454291],[115,47,72,0.039449053474488786],[115,47,73,0.04116922556087216],[115,47,74,0.04285659642785995],[115,47,75,0.044512463270220945],[115,47,76,0.04613715119440247],[115,47,77,0.04773024979152108],[115,47,78,0.0492908189788663],[115,47,79,0.05081756394210296],[115,48,64,0.02672464761920873],[115,48,65,0.028957339671022903],[115,48,66,0.031118913913726946],[115,48,67,0.0331992702584956],[115,48,68,0.03520414192575135],[115,48,69,0.03714803490332948],[115,48,70,0.039042507331037236],[115,48,71,0.040896321589874274],[115,48,72,0.04271583079792162],[115,48,73,0.04450533875273264],[115,48,74,0.04626743268439508],[115,48,75,0.04800328826860394],[115,48,76,0.04971294643282982],[115,48,77,0.05139556157189208],[115,48,78,0.05304962087161761],[115,48,79,0.0546731345209692],[115,49,64,0.02960014871992389],[115,49,65,0.03186923066430193],[115,49,66,0.034069698067499314],[115,49,67,0.03619075538584443],[115,49,68,0.03823839104361076],[115,49,69,0.04022806856699614],[115,49,70,0.04217215143696747],[115,49,71,0.04408003211978227],[115,49,72,0.04595851713538414],[115,49,73,0.047812187783352715],[115,49,74,0.049643735874978695],[115,49,75,0.05145427389682314],[115,49,76,0.053243619107016],[115,49,77,0.05501055114169292],[115,49,78,0.056753042785202414],[115,49,79,0.05846846363433645],[115,50,64,0.03249510258798885],[115,50,65,0.03479742518425738],[115,50,66,0.03703316793032243],[115,50,67,0.039190944105105076],[115,50,68,0.041277017313799264],[115,50,69,0.043307774316144375],[115,50,70,0.045296374026130876],[115,50,71,0.0472528515722809],[115,50,72,0.04918449833061698],[115,50,73,0.05109621998004031],[115,50,74,0.052990871921877694],[115,50,75,0.05486957147287319],[115,50,76,0.056731986307955895],[115,50,77,0.058576598697096256],[115,50,78,0.06040094514950004],[115,50,79,0.06220183114873042],[115,51,64,0.03541600788493669],[115,51,65,0.037748525676407886],[115,51,66,0.04001595476785277],[115,51,67,0.0422064329704473],[115,51,68,0.044326511560702594],[115,51,69,0.04639344539276738],[115,51,70,0.04842116264352643],[115,51,71,0.050420342260063054],[115,51,72,0.05239878516775436],[115,51,73,0.054361765979224916],[115,51,74,0.05631236454866165],[115,51,75,0.05825177677361354],[115,51,76,0.06017960410386117],[115,51,77,0.062094121275868885],[115,51,78,0.06399252185195789],[115,51,79,0.06587114120629368],[115,52,64,0.18956686864489244],[115,52,65,0.04072564229731981],[115,52,66,0.043021277522977366],[115,52,67,0.045240508789371595],[115,52,68,0.047390180268047824],[115,52,69,0.04948834087701343],[115,52,70,0.051549646318146146],[115,52,71,0.053585408624300786],[115,52,72,0.055603954725406794],[115,52,73,0.057610968064398936],[115,52,74,0.059609812620074615],[115,52,75,0.0616018387413748],[115,52,76,0.063586670244986],[115,52,77,0.06556247227739845],[115,52,78,0.06752619949406771],[115,52,79,0.0694738241629409],[115,53,64,0.20388850832306785],[115,53,65,0.2152913398940487],[115,53,66,0.22633090288770974],[115,53,67,0.23695028518032119],[115,53,68,0.2471860575952855],[115,53,69,0.25712859413211586],[115,53,70,0.2668506527723519],[115,53,71,0.2764078234171125],[115,53,72,0.05880013411564633],[115,53,73,0.06084374913119812],[115,53,74,0.06288284593763074],[115,53,75,0.06491900406965538],[115,53,76,0.06695195978761334],[115,53,77,0.06897987059218683],[115,53,78,0.07099956264118482],[115,53,79,0.07300676064874151],[115,54,64,0.21823892018865718],[115,54,65,0.22967061316383985],[115,54,66,0.2407342529029181],[115,54,67,0.2513732836773424],[115,54,68,0.26162570689689757],[115,54,69,0.27158423455275715],[115,54,70,0.2813239113299341],[115,54,71,0.29090245716531055],[115,54,72,0.30036213388442956],[115,54,73,0.3097315283718698],[115,54,74,0.31902725458715275],[115,54,75,0.32825557506331243],[115,54,76,0.33741394066847247],[115,54,77,0.34649244568966797],[115,54,78,0.0744093057973047],[115,54,79,0.07646622838100423],[115,55,64,0.23257662940539442],[115,55,65,0.24401953167415716],[115,55,66,0.2550868886403777],[115,55,67,0.2657232081890071],[115,55,68,0.2759678706108492],[115,55,69,0.28591536296884107],[115,55,70,0.29564262636088323],[115,55,71,0.3052092923908124],[115,55,72,0.31465945773932336],[115,55,73,0.3240233860349026],[115,55,74,0.3333191407729138],[115,55,75,0.34255415107442605],[115,55,76,0.3517267098835174],[115,55,77,0.36082740210149766],[115,55,78,0.36984045835345764],[115,55,79,0.3787450287048421],[115,56,64,0.24684740629574672],[115,56,65,0.2582853835619666],[115,56,66,0.26864035605346365],[115,56,67,0.2773428696935846],[115,56,68,0.28538698616995295],[115,56,69,0.2935414014424093],[115,56,70,0.29994075057766295],[115,56,71,0.30711764375048156],[115,56,72,0.3175474015743033],[115,56,73,0.32993757368849175],[115,56,74,0.3429441491944003],[115,56,75,0.35172294587937186],[115,56,76,0.35659355487423755],[115,56,77,0.36138961275661935],[115,56,78,0.3680453920769092],[115,56,79,0.3758817561401834],[115,57,64,0.19135673212409945],[115,57,65,0.20164081077383952],[115,57,66,0.2115239606183959],[115,57,67,0.2213766676460936],[115,57,68,0.22967152741516114],[115,57,69,0.2382112165868423],[115,57,70,0.24493495033396942],[115,57,71,0.2518971898891215],[115,57,72,0.26083399986676786],[115,57,73,0.2733288834295079],[115,57,74,0.2857606288704372],[115,57,75,0.29563965228957567],[115,57,76,0.3017997538572311],[115,57,77,0.30665801911589385],[115,57,78,0.3134926935999996],[115,57,79,0.3216089534633515],[115,58,64,0.14539018189092864],[115,58,65,0.1550578626247965],[115,58,66,0.1648211404192654],[115,58,67,0.1748628817200035],[115,58,68,0.1831877425717442],[115,58,69,0.19098743588376532],[115,58,70,0.19865739876965008],[115,58,71,0.2054334773720418],[115,58,72,0.21438331097111396],[115,58,73,0.22799563636245945],[115,58,74,0.23963060803521888],[115,58,75,0.25002545503732754],[115,58,76,0.2565562343352711],[115,58,77,0.2617601476475116],[115,58,78,0.2680133708576056],[115,58,79,0.2767042372787584],[115,59,64,0.08531942171092988],[115,59,65,0.09489738189990196],[115,59,66,0.104438575158394],[115,59,67,0.11466498569397163],[115,59,68,0.1226339861913852],[115,59,69,0.1310010267449668],[115,59,70,0.13870136369283562],[115,59,71,0.14573487467128943],[115,59,72,0.15547894432562911],[115,59,73,0.16939235535263383],[115,59,74,0.18211689803801345],[115,59,75,0.1920469409026357],[115,59,76,0.19817850284216634],[115,59,77,0.20384427515402237],[115,59,78,0.2105371678545321],[115,59,79,0.21935254190502768],[115,60,64,0.03197983965567669],[115,60,65,0.03328731415684064],[115,60,66,0.04132119805604964],[115,60,67,0.051586810860032674],[115,60,68,0.06073370430015171],[115,60,69,0.06820402678568296],[115,60,70,0.07664329632176033],[115,60,71,0.08338220901276709],[115,60,72,0.09430898307535479],[115,60,73,0.10850079620230829],[115,60,74,0.12206041270174617],[115,60,75,0.1319615555104201],[115,60,76,0.1384249408298805],[115,60,77,0.143708641112318],[115,60,78,0.1504861347780554],[115,60,79,0.15958170422997944],[115,61,64,0.017487106029581628],[115,61,65,0.016713997164820957],[115,61,66,0.01578742173565099],[115,61,67,0.015231700664997046],[115,61,68,0.015577587227516407],[115,61,69,0.016648007457204496],[115,61,70,0.019417222661327147],[115,61,71,0.02029905986152715],[115,61,72,0.03374037543118786],[115,61,73,0.048853101679100445],[115,61,74,0.06329018373780909],[115,61,75,0.0727701630333856],[115,61,76,0.07960422127850823],[115,61,77,0.08455034322047289],[115,61,78,0.09244476831126498],[115,61,79,0.10343448082814465],[115,62,64,0.0015967602921035642],[115,62,65,5.453728218709082E-4],[115,62,66,-0.0011625992675809668],[115,62,67,-0.001628995835775347],[115,62,68,-0.0019173832996701927],[115,62,69,-9.903193413792915E-5],[115,62,70,0.0033409521097699266],[115,62,71,0.005623974617638325],[115,62,72,0.00978144934559782],[115,62,73,0.012154527231124548],[115,62,74,0.014978299814570618],[115,62,75,0.01651885548254572],[115,62,76,0.019475939636590098],[115,62,77,0.023521885544585536],[115,62,78,0.03201786264754895],[115,62,79,0.04385850779396237],[115,63,64,-0.03782787269554787],[115,63,65,-0.03942585290202153],[115,63,66,-0.04080175000209624],[115,63,67,-0.041192388385161226],[115,63,68,-0.041675025676791475],[115,63,69,-0.03950464295578965],[115,63,70,-0.03597731594383205],[115,63,71,-0.032774236220749126],[115,63,72,-0.028512339858334363],[115,63,73,-0.024479040212421328],[115,63,74,-0.022073073947640718],[115,63,75,-0.02130624182135969],[115,63,76,-0.01904770571373598],[115,63,77,-0.017498167286697796],[115,63,78,-0.013204880848976655],[115,63,79,-0.008689754643414788],[115,64,64,-0.050512968131512126],[115,64,65,-0.0531835896236932],[115,64,66,-0.05439612638827583],[115,64,67,-0.05481031297290704],[115,64,68,-0.05461011768914497],[115,64,69,-0.05285034686595748],[115,64,70,-0.04867759718266878],[115,64,71,-0.04594239545179853],[115,64,72,-0.04192603684676271],[115,64,73,-0.03653097269774363],[115,64,74,-0.03416684307180369],[115,64,75,-0.032934711408028],[115,64,76,-0.030459755626430905],[115,64,77,-0.02903776170812584],[115,64,78,-0.025802660081023786],[115,64,79,-0.02247453016187767],[115,65,64,-0.067218682061562],[115,65,65,-0.0697736913689886],[115,65,66,-0.07132604920222566],[115,65,67,-0.07111618879777667],[115,65,68,-0.07022248786560693],[115,65,69,-0.06855483957637515],[115,65,70,-0.06475948359397227],[115,65,71,-0.062307194470658654],[115,65,72,-0.05781514581739363],[115,65,73,-0.052384890909428376],[115,65,74,-0.04979440866205689],[115,65,75,-0.04815046619391781],[115,65,76,-0.04525959427219867],[115,65,77,-0.04414750377460048],[115,65,78,-0.04185519748126784],[115,65,79,-0.03894698950516917],[115,66,64,-0.08590793658198036],[115,66,65,-0.08847769688379588],[115,66,66,-0.08970585255828217],[115,66,67,-0.08856582554042973],[115,66,68,-0.08782605434508683],[115,66,69,-0.08547371683685465],[115,66,70,-0.08238282580619258],[115,66,71,-0.08007713383401174],[115,66,72,-0.0748001750371382],[115,66,73,-0.06977357009892622],[115,66,74,-0.06701105472630606],[115,66,75,-0.06500956543823971],[115,66,76,-0.06164192141677244],[115,66,77,-0.060709357338503564],[115,66,78,-0.060031206975297],[115,66,79,-0.05713590723838841],[115,67,64,-0.10298157538525628],[115,67,65,-0.1045816113252712],[115,67,66,-0.10517787561308382],[115,67,67,-0.1041333691147022],[115,67,68,-0.10370854445724252],[115,67,69,-0.1008834688062382],[115,67,70,-0.09872457609854282],[115,67,71,-0.09540401986636787],[115,67,72,-0.08971760355865703],[115,67,73,-0.08518999040865391],[115,67,74,-0.0818313429475394],[115,67,75,-0.07981211121519777],[115,67,76,-0.07702416350067676],[115,67,77,-0.0765806344600824],[115,67,78,-0.0761254638578226],[115,67,79,-0.0732578854461831],[115,68,64,-0.14664017074609706],[115,68,65,-0.14795929573017425],[115,68,66,-0.14833631762762056],[115,68,67,-0.14770854657351476],[115,68,68,-0.14611105986118803],[115,68,69,-0.14379679247455973],[115,68,70,-0.14238654836815862],[115,68,71,-0.13736968057544427],[115,68,72,-0.1322397541921691],[115,68,73,-0.12765630946299317],[115,68,74,-0.12533795783647717],[115,68,75,-0.12368455902119448],[115,68,76,-0.1209378014733902],[115,68,77,-0.12136479345001973],[115,68,78,-0.12010508772236857],[115,68,79,-0.11681660098108669],[115,69,64,-0.16441368716492705],[115,69,65,-0.16577251412061916],[115,69,66,-0.1652347482457568],[115,69,67,-0.16439036854582342],[115,69,68,-0.16078248845242182],[115,69,69,-0.1578500809073483],[115,69,70,-0.15490112524849312],[115,69,71,-0.1484230331801797],[115,69,72,-0.14192460732002166],[115,69,73,-0.1365388277784075],[115,69,74,-0.13371533000798694],[115,69,75,-0.13268742207907194],[115,69,76,-0.13164927690276376],[115,69,77,-0.13336851594118385],[115,69,78,-0.13375557611625205],[115,69,79,-0.13179858593864288],[115,70,64,-0.1802789701059433],[115,70,65,-0.18193053412822233],[115,70,66,-0.18115915305912797],[115,70,67,-0.17975241507810502],[115,70,68,-0.1763497681773727],[115,70,69,-0.17340794230184225],[115,70,70,-0.16953052270794075],[115,70,71,-0.16404256242754003],[115,70,72,-0.15806890512463098],[115,70,73,-0.15245136401737178],[115,70,74,-0.14955335334698094],[115,70,75,-0.14823876900131855],[115,70,76,-0.14735422587432526],[115,70,77,-0.1495369213229224],[115,70,78,-0.14944736431591954],[115,70,79,-0.14771359808072035],[115,71,64,-0.19348635342690074],[115,71,65,-0.19409485020418377],[115,71,66,-0.1935911433442219],[115,71,67,-0.1923398732189772],[115,71,68,-0.18838868460586009],[115,71,69,-0.18528803906681388],[115,71,70,-0.18138987052341007],[115,71,71,-0.17658978289624466],[115,71,72,-0.17012672235029191],[115,71,73,-0.165308429515636],[115,71,74,-0.16217488368215316],[115,71,75,-0.16072115687679567],[115,71,76,-0.16013399491842692],[115,71,77,-0.1624295793976569],[115,71,78,-0.16267605470316787],[115,71,79,-0.15973789992882081],[115,72,64,-0.20935907027352318],[115,72,65,-0.20939999380519655],[115,72,66,-0.2091573181920112],[115,72,67,-0.207665520738895],[115,72,68,-0.20329293290609882],[115,72,69,-0.2001670218486157],[115,72,70,-0.19673169076266545],[115,72,71,-0.19193957594466127],[115,72,72,-0.18577969003283323],[115,72,73,-0.18061017061186516],[115,72,74,-0.17787654131524477],[115,72,75,-0.1759976786110722],[115,72,76,-0.17646618945879544],[115,72,77,-0.17939007461046796],[115,72,78,-0.178591648235563],[115,72,79,-0.17504632063035622],[115,73,64,-0.22650645730580887],[115,73,65,-0.22570746112824183],[115,73,66,-0.2230500180847344],[115,73,67,-0.2195751140257479],[115,73,68,-0.21471048487406957],[115,73,69,-0.21162330391784848],[115,73,70,-0.2090742464484524],[115,73,71,-0.20566765049030203],[115,73,72,-0.20158074806062154],[115,73,73,-0.19872296083399227],[115,73,74,-0.19633898035895458],[115,73,75,-0.19497396775572762],[115,73,76,-0.19618419428350334],[115,73,77,-0.19696831383205243],[115,73,78,-0.19556719171615447],[115,73,79,-0.19108195782165005],[115,74,64,-0.2440223485392086],[115,74,65,-0.24287326331974873],[115,74,66,-0.24000795854010368],[115,74,67,-0.23566840368015465],[115,74,68,-0.23168088038907703],[115,74,69,-0.22779576704579252],[115,74,70,-0.22489412372165832],[115,74,71,-0.22178668693964076],[115,74,72,-0.2179459944152978],[115,74,73,-0.21557741432612457],[115,74,74,-0.21341322087526507],[115,74,75,-0.21222624509030139],[115,74,76,-0.21390877032551242],[115,74,77,-0.21389941296495799],[115,74,78,-0.21290887274957723],[115,74,79,-0.20928690980326764],[115,75,64,-0.2588393960749613],[115,75,65,-0.25721028821518005],[115,75,66,-0.2537978209407305],[115,75,67,-0.24971266252089422],[115,75,68,-0.24585689048833267],[115,75,69,-0.24282679502762008],[115,75,70,-0.23902060770627995],[115,75,71,-0.23680713728655806],[115,75,72,-0.23279113230476456],[115,75,73,-0.23007204678664728],[115,75,74,-0.22917186543140383],[115,75,75,-0.22830740961913956],[115,75,76,-0.2290121885850417],[115,75,77,-0.2290905619986583],[115,75,78,-0.22910160774626237],[115,75,79,-0.22625393808344704],[115,76,64,-0.2714600725537048],[115,76,65,-0.2699165914658281],[115,76,66,-0.26692308878474313],[115,76,67,-0.2638016867964869],[115,76,68,-0.25927081934384777],[115,76,69,-0.25619445100848476],[115,76,70,-0.25209937724387854],[115,76,71,-0.24971669142413458],[115,76,72,-0.2467949588772001],[115,76,73,-0.24430919329392525],[115,76,74,-0.24353466525156012],[115,76,75,-0.24312536903364554],[115,76,76,-0.24342763590121946],[115,76,77,-0.24334640647706712],[115,76,78,-0.2436843929565461],[115,76,79,-0.24159415463959705],[115,77,64,-0.285037651764759],[115,77,65,-0.28405406361685737],[115,77,66,-0.28167452377876084],[115,77,67,-0.2792827386702267],[115,77,68,-0.2755830404452457],[115,77,69,-0.27288525968716515],[115,77,70,-0.26886895835946645],[115,77,71,-0.2664799753272669],[115,77,72,-0.26449355473658864],[115,77,73,-0.2623187658251686],[115,77,74,-0.26107252653820867],[115,77,75,-0.26028597552324423],[115,77,76,-0.2603572594960624],[115,77,77,-0.260450790361522],[115,77,78,-0.26014064325294894],[115,77,79,-0.25849024648418106],[115,78,64,-0.29942297865344014],[115,78,65,-0.2981529306664824],[115,78,66,-0.2964650061017329],[115,78,67,-0.29352057787005226],[115,78,68,-0.29077281057622045],[115,78,69,-0.28756238366599707],[115,78,70,-0.28363031033471453],[115,78,71,-0.28087996176269453],[115,78,72,-0.2786755902761349],[115,78,73,-0.27759633317022714],[115,78,74,-0.27602536767809704],[115,78,75,-0.27523261742017796],[115,78,76,-0.27515279471809273],[115,78,77,-0.27569749576339514],[115,78,78,-0.27581736499848847],[115,78,79,-0.2743153470502625],[115,79,64,-0.31053298031570453],[115,79,65,-0.3092581473904078],[115,79,66,-0.3073373875606516],[115,79,67,-0.3043673702166451],[115,79,68,-0.3024702980629151],[115,79,69,-0.2988966227773603],[115,79,70,-0.29493476182052414],[115,79,71,-0.2928631081824271],[115,79,72,-0.2896692159271394],[115,79,73,-0.2888671426476231],[115,79,74,-0.28733035671927354],[115,79,75,-0.28746049153289965],[115,79,76,-0.2875586336844354],[115,79,77,-0.28832611623586124],[115,79,78,-0.28880463430729153],[115,79,79,-0.2875976247242161],[115,80,64,-0.32459781938351834],[115,80,65,-0.32300826177042574],[115,80,66,-0.32130393179601086],[115,80,67,-0.3184528945204686],[115,80,68,-0.3167535462275401],[115,80,69,-0.31409285333921416],[115,80,70,-0.31029545651421736],[115,80,71,-0.3077163735574006],[115,80,72,-0.30460863356543394],[115,80,73,-0.3034654832353492],[115,80,74,-0.30192155692445866],[115,80,75,-0.30173254226920054],[115,80,76,-0.3019036969088309],[115,80,77,-0.30326867936234403],[115,80,78,-0.30426065666327157],[115,80,79,-0.30325399164888894],[115,81,64,-0.3375135864810341],[115,81,65,-0.33550069781980907],[115,81,66,-0.33326809128322693],[115,81,67,-0.33068183970355886],[115,81,68,-0.32892465495301754],[115,81,69,-0.3261434631849122],[115,81,70,-0.3230399520154274],[115,81,71,-0.32024507976085514],[115,81,72,-0.3168506979793556],[115,81,73,-0.3139362009464496],[115,81,74,-0.3126956749928651],[115,81,75,-0.3127921204613761],[115,81,76,-0.31417389118825784],[115,81,77,-0.31787650757430075],[115,81,78,-0.3203843029233978],[115,81,79,-0.3201211710717412],[115,82,64,-0.35238238989259213],[115,82,65,-0.3508587415234102],[115,82,66,-0.3478476794767526],[115,82,67,-0.345526177041289],[115,82,68,-0.3437392794515321],[115,82,69,-0.34130999538199447],[115,82,70,-0.3390914243587907],[115,82,71,-0.3361655850500958],[115,82,72,-0.33309401259977006],[115,82,73,-0.32918091408544053],[115,82,74,-0.32870390882874806],[115,82,75,-0.32904338799602056],[115,82,76,-0.3298002062711782],[115,82,77,-0.3338179378740866],[115,82,78,-0.33600437693213364],[115,82,79,-0.3362961814065154],[115,83,64,-0.36530847626950275],[115,83,65,-0.3635856543211877],[115,83,66,-0.36089175986944033],[115,83,67,-0.35875301985270214],[115,83,68,-0.35676328525017087],[115,83,69,-0.3550217760506237],[115,83,70,-0.35350606298420867],[115,83,71,-0.35125882035028155],[115,83,72,-0.34758775659518204],[115,83,73,-0.3440501415427437],[115,83,74,-0.3430862550325512],[115,83,75,-0.34321713084010314],[115,83,76,-0.343528499008415],[115,83,77,-0.34753967477438413],[115,83,78,-0.35018524543860596],[115,83,79,-0.3510953296566781],[115,84,64,-0.37764204093054426],[115,84,65,-0.3758247079806964],[115,84,66,-0.37277233777307056],[115,84,67,-0.37034639258436824],[115,84,68,-0.36883573864715163],[115,84,69,-0.3677819020488632],[115,84,70,-0.3665300499302313],[115,84,71,-0.36516447308339],[115,84,72,-0.3611856886411963],[115,84,73,-0.3579366990143309],[115,84,74,-0.35721327383152124],[115,84,75,-0.35699352047445837],[115,84,76,-0.35715523693094464],[115,84,77,-0.36157552094072887],[115,84,78,-0.3646035099653431],[115,84,79,-0.3645467748710988],[115,85,64,-0.3926269915753],[115,85,65,-0.39199164567649425],[115,85,66,-0.3900901572877772],[115,85,67,-0.3879640559976047],[115,85,68,-0.38649096945848127],[115,85,69,-0.38581361692205296],[115,85,70,-0.3847546160620995],[115,85,71,-0.3831646777272458],[115,85,72,-0.3793268374025673],[115,85,73,-0.37651046793803966],[115,85,74,-0.3761604320559215],[115,85,75,-0.3753553478914213],[115,85,76,-0.3762738893720495],[115,85,77,-0.3786037180063359],[115,85,78,-0.37910888760549327],[115,85,79,-0.37683019003100887],[115,86,64,-0.40561350097823584],[115,86,65,-0.40467157379055574],[115,86,66,-0.4033138209031458],[115,86,67,-0.40151419202178723],[115,86,68,-0.39946729034971],[115,86,69,-0.39881617338082503],[115,86,70,-0.39779357815957095],[115,86,71,-0.3953179779623278],[115,86,72,-0.3928438820868162],[115,86,73,-0.3902549678965016],[115,86,74,-0.3894135501033664],[115,86,75,-0.38978336657917473],[115,86,76,-0.3906559187656276],[115,86,77,-0.392310487418332],[115,86,78,-0.39290601253866775],[115,86,79,-0.39031899125660524],[115,87,64,-0.41552757376501914],[115,87,65,-0.4153217764661487],[115,87,66,-0.41435186691091114],[115,87,67,-0.4124657811249754],[115,87,68,-0.41037770145596625],[115,87,69,-0.4090302395541405],[115,87,70,-0.4081196922292766],[115,87,71,-0.4053557080511359],[115,87,72,-0.40365602172712495],[115,87,73,-0.40108498855141883],[115,87,74,-0.4000731654388142],[115,87,75,-0.4010567653751722],[115,87,76,-0.401880297526295],[115,87,77,-0.4032061380832203],[115,87,78,-0.40320487207478595],[115,87,79,-0.40082123189204594],[115,88,64,-0.428538774256366],[115,88,65,-0.42827999254065463],[115,88,66,-0.42741296100988063],[115,88,67,-0.4256739790286219],[115,88,68,-0.4238026408031121],[115,88,69,-0.4216770679198979],[115,88,70,-0.4206573739307468],[115,88,71,-0.4180589839834422],[115,88,72,-0.4160876833664071],[115,88,73,-0.41439138550848553],[115,88,74,-0.4132558666950539],[115,88,75,-0.4135157876720659],[115,88,76,-0.4146223021222007],[115,88,77,-0.41580035865777004],[115,88,78,-0.4157783666351948],[115,88,79,-0.41402688530901754],[115,89,64,-0.4410164066517501],[115,89,65,-0.4403638863638198],[115,89,66,-0.43921997671766744],[115,89,67,-0.43761422937680894],[115,89,68,-0.4360493449124666],[115,89,69,-0.4336725031056585],[115,89,70,-0.43288853077499406],[115,89,71,-0.4307987058318516],[115,89,72,-0.4292334672514307],[115,89,73,-0.4269567269293615],[115,89,74,-0.42626787739658906],[115,89,75,-0.42617060772406384],[115,89,76,-0.4265119916644024],[115,89,77,-0.4276998385352245],[115,89,78,-0.42814867473142904],[115,89,79,-0.42680436299758834],[115,90,64,-0.45441181750561915],[115,90,65,-0.4539768137708378],[115,90,66,-0.45309437934491037],[115,90,67,-0.45093135558332065],[115,90,68,-0.44940564896845175],[115,90,69,-0.446930768248165],[115,90,70,-0.4458780623268144],[115,90,71,-0.44459271336218115],[115,90,72,-0.4425653520115948],[115,90,73,-0.4406859735592106],[115,90,74,-0.4397094147214993],[115,90,75,-0.4392757405520426],[115,90,76,-0.43907967446203167],[115,90,77,-0.4409276400362638],[115,90,78,-0.44192985911688065],[115,90,79,-0.44084155961096],[115,91,64,-0.4583333333333333],[115,91,65,-0.4583333333333333],[115,91,66,-0.4583333333333333],[115,91,67,-0.4583333333333333],[115,91,68,-0.4583333333333333],[115,91,69,-0.4583333333333333],[115,91,70,-0.4583333333333333],[115,91,71,-0.45664739737143434],[115,91,72,-0.45415136915096316],[115,91,73,-0.45259245458221864],[115,91,74,-0.4510558206936669],[115,91,75,-0.4503140989524894],[115,91,76,-0.4502938806921571],[115,91,77,-0.45281092370714476],[115,91,78,-0.45414183423651244],[115,91,79,-0.4530040633057853],[115,92,64,-0.4583333333333333],[115,92,65,-0.4583333333333333],[115,92,66,-0.4583333333333333],[115,92,67,-0.4583333333333333],[115,92,68,-0.4583333333333333],[115,92,69,-0.4583333333333333],[115,92,70,-0.4583333333333333],[115,92,71,-0.4583333333333333],[115,92,72,-0.4583333333333333],[115,92,73,-0.4583333333333333],[115,92,74,-0.4583333333333333],[115,92,75,-0.4576661024489577],[115,92,76,-0.4581273862258077],[115,92,77,-0.4583333333333333],[115,92,78,-0.4583333333333333],[115,92,79,-0.4583333333333333],[115,93,64,-0.4583333333333333],[115,93,65,-0.4583333333333333],[115,93,66,-0.4583333333333333],[115,93,67,-0.4583333333333333],[115,93,68,-0.4583333333333333],[115,93,69,-0.4583333333333333],[115,93,70,-0.4583333333333333],[115,93,71,-0.4583333333333333],[115,93,72,-0.4583333333333333],[115,93,73,-0.4583333333333333],[115,93,74,-0.4583333333333333],[115,93,75,-0.4583333333333333],[115,93,76,-0.4583333333333333],[115,93,77,-0.4583333333333333],[115,93,78,-0.4583333333333333],[115,93,79,-0.4583333333333333],[115,94,64,-0.4583333333333333],[115,94,65,-0.4583333333333333],[115,94,66,-0.4583333333333333],[115,94,67,-0.4583333333333333],[115,94,68,-0.4583333333333333],[115,94,69,-0.4583333333333333],[115,94,70,-0.4583333333333333],[115,94,71,-0.4583333333333333],[115,94,72,-0.4583333333333333],[115,94,73,-0.4583333333333333],[115,94,74,-0.4583333333333333],[115,94,75,-0.4583333333333333],[115,94,76,-0.4583333333333333],[115,94,77,-0.4583333333333333],[115,94,78,-0.4583333333333333],[115,94,79,-0.4583333333333333],[115,95,64,-0.4583333333333333],[115,95,65,-0.4583333333333333],[115,95,66,-0.4583333333333333],[115,95,67,-0.4583333333333333],[115,95,68,-0.4583333333333333],[115,95,69,-0.4583333333333333],[115,95,70,-0.4583333333333333],[115,95,71,-0.4583333333333333],[115,95,72,-0.4583333333333333],[115,95,73,-0.4583333333333333],[115,95,74,-0.4583333333333333],[115,95,75,-0.4583333333333333],[115,95,76,-0.4583333333333333],[115,95,77,-0.4583333333333333],[115,95,78,-0.4583333333333333],[115,95,79,-0.4583333333333333],[115,96,64,-0.4583333333333333],[115,96,65,-0.4583333333333333],[115,96,66,-0.4583333333333333],[115,96,67,-0.4583333333333333],[115,96,68,-0.4583333333333333],[115,96,69,-0.4583333333333333],[115,96,70,-0.4583333333333333],[115,96,71,-0.4583333333333333],[115,96,72,-0.4583333333333333],[115,96,73,-0.4583333333333333],[115,96,74,-0.4583333333333333],[115,96,75,-0.4583333333333333],[115,96,76,-0.4583333333333333],[115,96,77,-0.4583333333333333],[115,96,78,-0.4583333333333333],[115,96,79,-0.4583333333333333],[115,97,64,-0.4583333333333333],[115,97,65,-0.4583333333333333],[115,97,66,-0.4583333333333333],[115,97,67,-0.4583333333333333],[115,97,68,-0.4583333333333333],[115,97,69,-0.4583333333333333],[115,97,70,-0.4583333333333333],[115,97,71,-0.4583333333333333],[115,97,72,-0.4583333333333333],[115,97,73,-0.4583333333333333],[115,97,74,-0.4583333333333333],[115,97,75,-0.4583333333333333],[115,97,76,-0.4583333333333333],[115,97,77,-0.4583333333333333],[115,97,78,-0.4583333333333333],[115,97,79,-0.4583333333333333],[115,98,64,-0.4583333333333333],[115,98,65,-0.4583333333333333],[115,98,66,-0.4583333333333333],[115,98,67,-0.4583333333333333],[115,98,68,-0.4583333333333333],[115,98,69,-0.4583333333333333],[115,98,70,-0.4583333333333333],[115,98,71,-0.4583333333333333],[115,98,72,-0.4583333333333333],[115,98,73,-0.4583333333333333],[115,98,74,-0.4583333333333333],[115,98,75,-0.4583333333333333],[115,98,76,-0.4583333333333333],[115,98,77,-0.4583333333333333],[115,98,78,-0.4583333333333333],[115,98,79,-0.4583333333333333],[115,99,64,-0.4583333333333333],[115,99,65,-0.4583333333333333],[115,99,66,-0.4583333333333333],[115,99,67,-0.4583333333333333],[115,99,68,-0.4583333333333333],[115,99,69,-0.4583333333333333],[115,99,70,-0.4583333333333333],[115,99,71,-0.4583333333333333],[115,99,72,-0.4583333333333333],[115,99,73,-0.4583333333333333],[115,99,74,-0.4583333333333333],[115,99,75,-0.4583333333333333],[115,99,76,-0.4583333333333333],[115,99,77,-0.4583333333333333],[115,99,78,-0.4583333333333333],[115,99,79,-0.4583333333333333],[115,100,64,-0.4583333333333333],[115,100,65,-0.4583333333333333],[115,100,66,-0.4583333333333333],[115,100,67,-0.4583333333333333],[115,100,68,-0.4583333333333333],[115,100,69,-0.4583333333333333],[115,100,70,-0.4583333333333333],[115,100,71,-0.4583333333333333],[115,100,72,-0.4583333333333333],[115,100,73,-0.4583333333333333],[115,100,74,-0.4583333333333333],[115,100,75,-0.4583333333333333],[115,100,76,-0.4583333333333333],[115,100,77,-0.4583333333333333],[115,100,78,-0.4583333333333333],[115,100,79,-0.4583333333333333],[115,101,64,-0.4583333333333333],[115,101,65,-0.4583333333333333],[115,101,66,-0.4583333333333333],[115,101,67,-0.4583333333333333],[115,101,68,-0.4583333333333333],[115,101,69,-0.4583333333333333],[115,101,70,-0.4583333333333333],[115,101,71,-0.4583333333333333],[115,101,72,-0.4583333333333333],[115,101,73,-0.4583333333333333],[115,101,74,-0.4583333333333333],[115,101,75,-0.4583333333333333],[115,101,76,-0.4583333333333333],[115,101,77,-0.4583333333333333],[115,101,78,-0.4583333333333333],[115,101,79,-0.4583333333333333],[115,102,64,-0.4583333333333333],[115,102,65,-0.4583333333333333],[115,102,66,-0.4583333333333333],[115,102,67,-0.4583333333333333],[115,102,68,-0.4583333333333333],[115,102,69,-0.4583333333333333],[115,102,70,-0.4583333333333333],[115,102,71,-0.4583333333333333],[115,102,72,-0.4583333333333333],[115,102,73,-0.4583333333333333],[115,102,74,-0.4583333333333333],[115,102,75,-0.4583333333333333],[115,102,76,-0.4583333333333333],[115,102,77,-0.4583333333333333],[115,102,78,-0.4583333333333333],[115,102,79,-0.4583333333333333],[115,103,64,-0.4583333333333333],[115,103,65,-0.4583333333333333],[115,103,66,-0.4583333333333333],[115,103,67,-0.4583333333333333],[115,103,68,-0.4583333333333333],[115,103,69,-0.4583333333333333],[115,103,70,-0.4583333333333333],[115,103,71,-0.4583333333333333],[115,103,72,-0.4583333333333333],[115,103,73,-0.4583333333333333],[115,103,74,-0.4583333333333333],[115,103,75,-0.4583333333333333],[115,103,76,-0.4583333333333333],[115,103,77,-0.4583333333333333],[115,103,78,-0.4583333333333333],[115,103,79,-0.4583333333333333],[115,104,64,-0.4583333333333333],[115,104,65,-0.4583333333333333],[115,104,66,-0.4583333333333333],[115,104,67,-0.4583333333333333],[115,104,68,-0.4583333333333333],[115,104,69,-0.4583333333333333],[115,104,70,-0.4583333333333333],[115,104,71,-0.4583333333333333],[115,104,72,-0.4583333333333333],[115,104,73,-0.4583333333333333],[115,104,74,-0.4583333333333333],[115,104,75,-0.4583333333333333],[115,104,76,-0.4583333333333333],[115,104,77,-0.4583333333333333],[115,104,78,-0.4583333333333333],[115,104,79,-0.4583333333333333],[115,105,64,-0.4583333333333333],[115,105,65,-0.4583333333333333],[115,105,66,-0.4583333333333333],[115,105,67,-0.4583333333333333],[115,105,68,-0.4583333333333333],[115,105,69,-0.4583333333333333],[115,105,70,-0.4583333333333333],[115,105,71,-0.4583333333333333],[115,105,72,-0.4583333333333333],[115,105,73,-0.4583333333333333],[115,105,74,-0.4583333333333333],[115,105,75,-0.4583333333333333],[115,105,76,-0.4583333333333333],[115,105,77,-0.4583333333333333],[115,105,78,-0.4583333333333333],[115,105,79,-0.4583333333333333],[115,106,64,-0.4583333333333333],[115,106,65,-0.4583333333333333],[115,106,66,-0.4583333333333333],[115,106,67,-0.4583333333333333],[115,106,68,-0.4583333333333333],[115,106,69,-0.4583333333333333],[115,106,70,-0.4583333333333333],[115,106,71,-0.4583333333333333],[115,106,72,-0.4583333333333333],[115,106,73,-0.4583333333333333],[115,106,74,-0.4583333333333333],[115,106,75,-0.4583333333333333],[115,106,76,-0.4583333333333333],[115,106,77,-0.4583333333333333],[115,106,78,-0.4583333333333333],[115,106,79,-0.4583333333333333],[115,107,64,-0.4583333333333333],[115,107,65,-0.4583333333333333],[115,107,66,-0.4583333333333333],[115,107,67,-0.4583333333333333],[115,107,68,-0.4583333333333333],[115,107,69,-0.4583333333333333],[115,107,70,-0.4583333333333333],[115,107,71,-0.4583333333333333],[115,107,72,-0.4583333333333333],[115,107,73,-0.4583333333333333],[115,107,74,-0.4583333333333333],[115,107,75,-0.4583333333333333],[115,107,76,-0.4583333333333333],[115,107,77,-0.4583333333333333],[115,107,78,-0.4583333333333333],[115,107,79,-0.4583333333333333],[115,108,64,-0.4583333333333333],[115,108,65,-0.4583333333333333],[115,108,66,-0.4583333333333333],[115,108,67,-0.4583333333333333],[115,108,68,-0.4583333333333333],[115,108,69,-0.4583333333333333],[115,108,70,-0.4583333333333333],[115,108,71,-0.4583333333333333],[115,108,72,-0.4583333333333333],[115,108,73,-0.4583333333333333],[115,108,74,-0.4583333333333333],[115,108,75,-0.4583333333333333],[115,108,76,-0.4583333333333333],[115,108,77,-0.4583333333333333],[115,108,78,-0.4583333333333333],[115,108,79,-0.4583333333333333],[115,109,64,-0.4583333333333333],[115,109,65,-0.4583333333333333],[115,109,66,-0.4583333333333333],[115,109,67,-0.4583333333333333],[115,109,68,-0.4583333333333333],[115,109,69,-0.4583333333333333],[115,109,70,-0.4583333333333333],[115,109,71,-0.4583333333333333],[115,109,72,-0.4583333333333333],[115,109,73,-0.4583333333333333],[115,109,74,-0.4583333333333333],[115,109,75,-0.4583333333333333],[115,109,76,-0.4583333333333333],[115,109,77,-0.4583333333333333],[115,109,78,-0.4583333333333333],[115,109,79,-0.4583333333333333],[115,110,64,-0.4583333333333333],[115,110,65,-0.4583333333333333],[115,110,66,-0.4583333333333333],[115,110,67,-0.4583333333333333],[115,110,68,-0.4583333333333333],[115,110,69,-0.4583333333333333],[115,110,70,-0.4583333333333333],[115,110,71,-0.4583333333333333],[115,110,72,-0.4583333333333333],[115,110,73,-0.4583333333333333],[115,110,74,-0.4583333333333333],[115,110,75,-0.4583333333333333],[115,110,76,-0.4583333333333333],[115,110,77,-0.4583333333333333],[115,110,78,-0.4583333333333333],[115,110,79,-0.4583333333333333],[115,111,64,-0.4583333333333333],[115,111,65,-0.4583333333333333],[115,111,66,-0.4583333333333333],[115,111,67,-0.4583333333333333],[115,111,68,-0.4583333333333333],[115,111,69,-0.4583333333333333],[115,111,70,-0.4583333333333333],[115,111,71,-0.4583333333333333],[115,111,72,-0.4583333333333333],[115,111,73,-0.4583333333333333],[115,111,74,-0.4583333333333333],[115,111,75,-0.4583333333333333],[115,111,76,-0.4583333333333333],[115,111,77,-0.4583333333333333],[115,111,78,-0.4583333333333333],[115,111,79,-0.4583333333333333],[115,112,64,-0.4583333333333333],[115,112,65,-0.4583333333333333],[115,112,66,-0.4583333333333333],[115,112,67,-0.4583333333333333],[115,112,68,-0.4583333333333333],[115,112,69,-0.4583333333333333],[115,112,70,-0.4583333333333333],[115,112,71,-0.4583333333333333],[115,112,72,-0.4583333333333333],[115,112,73,-0.4583333333333333],[115,112,74,-0.4583333333333333],[115,112,75,-0.4583333333333333],[115,112,76,-0.4583333333333333],[115,112,77,-0.4583333333333333],[115,112,78,-0.4583333333333333],[115,112,79,-0.4583333333333333],[115,113,64,-0.4583333333333333],[115,113,65,-0.4583333333333333],[115,113,66,-0.4583333333333333],[115,113,67,-0.4583333333333333],[115,113,68,-0.4583333333333333],[115,113,69,-0.4583333333333333],[115,113,70,-0.4583333333333333],[115,113,71,-0.4583333333333333],[115,113,72,-0.4583333333333333],[115,113,73,-0.4583333333333333],[115,113,74,-0.4583333333333333],[115,113,75,-0.4583333333333333],[115,113,76,-0.4583333333333333],[115,113,77,-0.4583333333333333],[115,113,78,-0.4583333333333333],[115,113,79,-0.4583333333333333],[115,114,64,-0.4583333333333333],[115,114,65,-0.4583333333333333],[115,114,66,-0.4583333333333333],[115,114,67,-0.4583333333333333],[115,114,68,-0.4583333333333333],[115,114,69,-0.4583333333333333],[115,114,70,-0.4583333333333333],[115,114,71,-0.4583333333333333],[115,114,72,-0.4583333333333333],[115,114,73,-0.4583333333333333],[115,114,74,-0.4583333333333333],[115,114,75,-0.4583333333333333],[115,114,76,-0.4583333333333333],[115,114,77,-0.4583333333333333],[115,114,78,-0.4583333333333333],[115,114,79,-0.4583333333333333],[115,115,64,-0.4583333333333333],[115,115,65,-0.4583333333333333],[115,115,66,-0.4583333333333333],[115,115,67,-0.4583333333333333],[115,115,68,-0.4583333333333333],[115,115,69,-0.4583333333333333],[115,115,70,-0.4583333333333333],[115,115,71,-0.4583333333333333],[115,115,72,-0.4583333333333333],[115,115,73,-0.4583333333333333],[115,115,74,-0.4583333333333333],[115,115,75,-0.4583333333333333],[115,115,76,-0.4583333333333333],[115,115,77,-0.4583333333333333],[115,115,78,-0.4583333333333333],[115,115,79,-0.4583333333333333],[115,116,64,-0.4583333333333333],[115,116,65,-0.4583333333333333],[115,116,66,-0.4583333333333333],[115,116,67,-0.4583333333333333],[115,116,68,-0.4583333333333333],[115,116,69,-0.4583333333333333],[115,116,70,-0.4583333333333333],[115,116,71,-0.4583333333333333],[115,116,72,-0.4583333333333333],[115,116,73,-0.4583333333333333],[115,116,74,-0.4583333333333333],[115,116,75,-0.4583333333333333],[115,116,76,-0.4583333333333333],[115,116,77,-0.4583333333333333],[115,116,78,-0.4583333333333333],[115,116,79,-0.4583333333333333],[115,117,64,-0.4583333333333333],[115,117,65,-0.4583333333333333],[115,117,66,-0.4583333333333333],[115,117,67,-0.4583333333333333],[115,117,68,-0.4583333333333333],[115,117,69,-0.4583333333333333],[115,117,70,-0.4583333333333333],[115,117,71,-0.4583333333333333],[115,117,72,-0.4583333333333333],[115,117,73,-0.4583333333333333],[115,117,74,-0.4583333333333333],[115,117,75,-0.4583333333333333],[115,117,76,-0.4583333333333333],[115,117,77,-0.4583333333333333],[115,117,78,-0.4583333333333333],[115,117,79,-0.4583333333333333],[115,118,64,-0.4583333333333333],[115,118,65,-0.4583333333333333],[115,118,66,-0.4583333333333333],[115,118,67,-0.4583333333333333],[115,118,68,-0.4583333333333333],[115,118,69,-0.4583333333333333],[115,118,70,-0.4583333333333333],[115,118,71,-0.4583333333333333],[115,118,72,-0.4583333333333333],[115,118,73,-0.4583333333333333],[115,118,74,-0.4583333333333333],[115,118,75,-0.4583333333333333],[115,118,76,-0.4583333333333333],[115,118,77,-0.4583333333333333],[115,118,78,-0.4583333333333333],[115,118,79,-0.4583333333333333],[115,119,64,-0.4583333333333333],[115,119,65,-0.4583333333333333],[115,119,66,-0.4583333333333333],[115,119,67,-0.4583333333333333],[115,119,68,-0.4583333333333333],[115,119,69,-0.4583333333333333],[115,119,70,-0.4583333333333333],[115,119,71,-0.4583333333333333],[115,119,72,-0.4583333333333333],[115,119,73,-0.4583333333333333],[115,119,74,-0.4583333333333333],[115,119,75,-0.4583333333333333],[115,119,76,-0.4583333333333333],[115,119,77,-0.4583333333333333],[115,119,78,-0.4583333333333333],[115,119,79,-0.4583333333333333],[115,120,64,-0.4583333333333333],[115,120,65,-0.4583333333333333],[115,120,66,-0.4583333333333333],[115,120,67,-0.4583333333333333],[115,120,68,-0.4583333333333333],[115,120,69,-0.4583333333333333],[115,120,70,-0.4583333333333333],[115,120,71,-0.4583333333333333],[115,120,72,-0.4583333333333333],[115,120,73,-0.4583333333333333],[115,120,74,-0.4583333333333333],[115,120,75,-0.4583333333333333],[115,120,76,-0.4583333333333333],[115,120,77,-0.4583333333333333],[115,120,78,-0.4583333333333333],[115,120,79,-0.4583333333333333],[115,121,64,-0.4583333333333333],[115,121,65,-0.4583333333333333],[115,121,66,-0.4583333333333333],[115,121,67,-0.4583333333333333],[115,121,68,-0.4583333333333333],[115,121,69,-0.4583333333333333],[115,121,70,-0.4583333333333333],[115,121,71,-0.4583333333333333],[115,121,72,-0.4583333333333333],[115,121,73,-0.4583333333333333],[115,121,74,-0.4583333333333333],[115,121,75,-0.4583333333333333],[115,121,76,-0.4583333333333333],[115,121,77,-0.4583333333333333],[115,121,78,-0.4583333333333333],[115,121,79,-0.4583333333333333],[115,122,64,-0.4583333333333333],[115,122,65,-0.4583333333333333],[115,122,66,-0.4583333333333333],[115,122,67,-0.4583333333333333],[115,122,68,-0.4583333333333333],[115,122,69,-0.4583333333333333],[115,122,70,-0.4583333333333333],[115,122,71,-0.4583333333333333],[115,122,72,-0.4583333333333333],[115,122,73,-0.4583333333333333],[115,122,74,-0.4583333333333333],[115,122,75,-0.4583333333333333],[115,122,76,-0.4583333333333333],[115,122,77,-0.4583333333333333],[115,122,78,-0.4583333333333333],[115,122,79,-0.4583333333333333],[115,123,64,-0.4583333333333333],[115,123,65,-0.4583333333333333],[115,123,66,-0.4583333333333333],[115,123,67,-0.4583333333333333],[115,123,68,-0.4583333333333333],[115,123,69,-0.4583333333333333],[115,123,70,-0.4583333333333333],[115,123,71,-0.4583333333333333],[115,123,72,-0.4583333333333333],[115,123,73,-0.4583333333333333],[115,123,74,-0.4583333333333333],[115,123,75,-0.4583333333333333],[115,123,76,-0.4583333333333333],[115,123,77,-0.4583333333333333],[115,123,78,-0.4583333333333333],[115,123,79,-0.4583333333333333],[115,124,64,-0.4583333333333333],[115,124,65,-0.4583333333333333],[115,124,66,-0.4583333333333333],[115,124,67,-0.4583333333333333],[115,124,68,-0.4583333333333333],[115,124,69,-0.4583333333333333],[115,124,70,-0.4583333333333333],[115,124,71,-0.4583333333333333],[115,124,72,-0.4583333333333333],[115,124,73,-0.4583333333333333],[115,124,74,-0.4583333333333333],[115,124,75,-0.4583333333333333],[115,124,76,-0.4583333333333333],[115,124,77,-0.4583333333333333],[115,124,78,-0.4583333333333333],[115,124,79,-0.4583333333333333],[115,125,64,-0.4583333333333333],[115,125,65,-0.4583333333333333],[115,125,66,-0.4583333333333333],[115,125,67,-0.4583333333333333],[115,125,68,-0.4583333333333333],[115,125,69,-0.4583333333333333],[115,125,70,-0.4583333333333333],[115,125,71,-0.4583333333333333],[115,125,72,-0.4583333333333333],[115,125,73,-0.4583333333333333],[115,125,74,-0.4583333333333333],[115,125,75,-0.4583333333333333],[115,125,76,-0.4583333333333333],[115,125,77,-0.4583333333333333],[115,125,78,-0.4583333333333333],[115,125,79,-0.4583333333333333],[115,126,64,-0.4583333333333333],[115,126,65,-0.4583333333333333],[115,126,66,-0.4583333333333333],[115,126,67,-0.4583333333333333],[115,126,68,-0.4583333333333333],[115,126,69,-0.4583333333333333],[115,126,70,-0.4583333333333333],[115,126,71,-0.4583333333333333],[115,126,72,-0.4583333333333333],[115,126,73,-0.4583333333333333],[115,126,74,-0.4583333333333333],[115,126,75,-0.4583333333333333],[115,126,76,-0.4583333333333333],[115,126,77,-0.4583333333333333],[115,126,78,-0.4583333333333333],[115,126,79,-0.4583333333333333],[115,127,64,-0.4583333333333333],[115,127,65,-0.4583333333333333],[115,127,66,-0.4583333333333333],[115,127,67,-0.4583333333333333],[115,127,68,-0.4583333333333333],[115,127,69,-0.4583333333333333],[115,127,70,-0.4583333333333333],[115,127,71,-0.4583333333333333],[115,127,72,-0.4583333333333333],[115,127,73,-0.4583333333333333],[115,127,74,-0.4583333333333333],[115,127,75,-0.4583333333333333],[115,127,76,-0.4583333333333333],[115,127,77,-0.4583333333333333],[115,127,78,-0.4583333333333333],[115,127,79,-0.4583333333333333],[115,128,64,-0.4583333333333333],[115,128,65,-0.4583333333333333],[115,128,66,-0.4583333333333333],[115,128,67,-0.4583333333333333],[115,128,68,-0.4583333333333333],[115,128,69,-0.4583333333333333],[115,128,70,-0.4583333333333333],[115,128,71,-0.4583333333333333],[115,128,72,-0.4583333333333333],[115,128,73,-0.4583333333333333],[115,128,74,-0.4583333333333333],[115,128,75,-0.4583333333333333],[115,128,76,-0.4583333333333333],[115,128,77,-0.4583333333333333],[115,128,78,-0.4583333333333333],[115,128,79,-0.4583333333333333],[115,129,64,-0.4583333333333333],[115,129,65,-0.4583333333333333],[115,129,66,-0.4583333333333333],[115,129,67,-0.4583333333333333],[115,129,68,-0.4583333333333333],[115,129,69,-0.4583333333333333],[115,129,70,-0.4583333333333333],[115,129,71,-0.4583333333333333],[115,129,72,-0.4583333333333333],[115,129,73,-0.4583333333333333],[115,129,74,-0.4583333333333333],[115,129,75,-0.4583333333333333],[115,129,76,-0.4583333333333333],[115,129,77,-0.4583333333333333],[115,129,78,-0.4583333333333333],[115,129,79,-0.4583333333333333],[115,130,64,-0.4583333333333333],[115,130,65,-0.4583333333333333],[115,130,66,-0.4583333333333333],[115,130,67,-0.4583333333333333],[115,130,68,-0.4583333333333333],[115,130,69,-0.4583333333333333],[115,130,70,-0.4583333333333333],[115,130,71,-0.4583333333333333],[115,130,72,-0.4583333333333333],[115,130,73,-0.4583333333333333],[115,130,74,-0.4583333333333333],[115,130,75,-0.4583333333333333],[115,130,76,-0.4583333333333333],[115,130,77,-0.4583333333333333],[115,130,78,-0.4583333333333333],[115,130,79,-0.4583333333333333],[115,131,64,-0.4583333333333333],[115,131,65,-0.4583333333333333],[115,131,66,-0.4583333333333333],[115,131,67,-0.4583333333333333],[115,131,68,-0.4583333333333333],[115,131,69,-0.4583333333333333],[115,131,70,-0.4583333333333333],[115,131,71,-0.4583333333333333],[115,131,72,-0.4583333333333333],[115,131,73,-0.4583333333333333],[115,131,74,-0.4583333333333333],[115,131,75,-0.4583333333333333],[115,131,76,-0.4583333333333333],[115,131,77,-0.4583333333333333],[115,131,78,-0.4583333333333333],[115,131,79,-0.4583333333333333],[115,132,64,-0.4583333333333333],[115,132,65,-0.4583333333333333],[115,132,66,-0.4583333333333333],[115,132,67,-0.4583333333333333],[115,132,68,-0.4583333333333333],[115,132,69,-0.4583333333333333],[115,132,70,-0.4583333333333333],[115,132,71,-0.4583333333333333],[115,132,72,-0.4583333333333333],[115,132,73,-0.4583333333333333],[115,132,74,-0.4583333333333333],[115,132,75,-0.4583333333333333],[115,132,76,-0.4583333333333333],[115,132,77,-0.4583333333333333],[115,132,78,-0.4583333333333333],[115,132,79,-0.4583333333333333],[115,133,64,-0.4583333333333333],[115,133,65,-0.4583333333333333],[115,133,66,-0.4583333333333333],[115,133,67,-0.4583333333333333],[115,133,68,-0.4583333333333333],[115,133,69,-0.4583333333333333],[115,133,70,-0.4583333333333333],[115,133,71,-0.4583333333333333],[115,133,72,-0.4583333333333333],[115,133,73,-0.4583333333333333],[115,133,74,-0.4583333333333333],[115,133,75,-0.4583333333333333],[115,133,76,-0.4583333333333333],[115,133,77,-0.4583333333333333],[115,133,78,-0.4583333333333333],[115,133,79,-0.4583333333333333],[115,134,64,-0.4583333333333333],[115,134,65,-0.4583333333333333],[115,134,66,-0.4583333333333333],[115,134,67,-0.4583333333333333],[115,134,68,-0.4583333333333333],[115,134,69,-0.4583333333333333],[115,134,70,-0.4583333333333333],[115,134,71,-0.4583333333333333],[115,134,72,-0.4583333333333333],[115,134,73,-0.4583333333333333],[115,134,74,-0.4583333333333333],[115,134,75,-0.4583333333333333],[115,134,76,-0.4583333333333333],[115,134,77,-0.4583333333333333],[115,134,78,-0.4583333333333333],[115,134,79,-0.4583333333333333],[115,135,64,-0.4583333333333333],[115,135,65,-0.4583333333333333],[115,135,66,-0.4583333333333333],[115,135,67,-0.4583333333333333],[115,135,68,-0.4583333333333333],[115,135,69,-0.4583333333333333],[115,135,70,-0.4583333333333333],[115,135,71,-0.4583333333333333],[115,135,72,-0.4583333333333333],[115,135,73,-0.4583333333333333],[115,135,74,-0.4583333333333333],[115,135,75,-0.4583333333333333],[115,135,76,-0.4583333333333333],[115,135,77,-0.4583333333333333],[115,135,78,-0.4583333333333333],[115,135,79,-0.4583333333333333],[115,136,64,-0.4583333333333333],[115,136,65,-0.4583333333333333],[115,136,66,-0.4583333333333333],[115,136,67,-0.4583333333333333],[115,136,68,-0.4583333333333333],[115,136,69,-0.4583333333333333],[115,136,70,-0.4583333333333333],[115,136,71,-0.4583333333333333],[115,136,72,-0.4583333333333333],[115,136,73,-0.4583333333333333],[115,136,74,-0.4583333333333333],[115,136,75,-0.4583333333333333],[115,136,76,-0.4583333333333333],[115,136,77,-0.4583333333333333],[115,136,78,-0.4583333333333333],[115,136,79,-0.4583333333333333],[115,137,64,-0.4583333333333333],[115,137,65,-0.4583333333333333],[115,137,66,-0.4583333333333333],[115,137,67,-0.4583333333333333],[115,137,68,-0.4583333333333333],[115,137,69,-0.4583333333333333],[115,137,70,-0.4583333333333333],[115,137,71,-0.4583333333333333],[115,137,72,-0.4583333333333333],[115,137,73,-0.4583333333333333],[115,137,74,-0.4583333333333333],[115,137,75,-0.4583333333333333],[115,137,76,-0.4583333333333333],[115,137,77,-0.4583333333333333],[115,137,78,-0.4583333333333333],[115,137,79,-0.4583333333333333],[115,138,64,-0.4583333333333333],[115,138,65,-0.4583333333333333],[115,138,66,-0.4583333333333333],[115,138,67,-0.4583333333333333],[115,138,68,-0.4583333333333333],[115,138,69,-0.4583333333333333],[115,138,70,-0.4583333333333333],[115,138,71,-0.4583333333333333],[115,138,72,-0.4583333333333333],[115,138,73,-0.4583333333333333],[115,138,74,-0.4583333333333333],[115,138,75,-0.4583333333333333],[115,138,76,-0.4583333333333333],[115,138,77,-0.4583333333333333],[115,138,78,-0.4583333333333333],[115,138,79,-0.4583333333333333],[115,139,64,-0.4583333333333333],[115,139,65,-0.4583333333333333],[115,139,66,-0.4583333333333333],[115,139,67,-0.4583333333333333],[115,139,68,-0.4583333333333333],[115,139,69,-0.4583333333333333],[115,139,70,-0.4583333333333333],[115,139,71,-0.4583333333333333],[115,139,72,-0.4583333333333333],[115,139,73,-0.4583333333333333],[115,139,74,-0.4583333333333333],[115,139,75,-0.4583333333333333],[115,139,76,-0.4583333333333333],[115,139,77,-0.4583333333333333],[115,139,78,-0.4583333333333333],[115,139,79,-0.4583333333333333],[115,140,64,-0.4583333333333333],[115,140,65,-0.4583333333333333],[115,140,66,-0.4583333333333333],[115,140,67,-0.4583333333333333],[115,140,68,-0.4583333333333333],[115,140,69,-0.4583333333333333],[115,140,70,-0.4583333333333333],[115,140,71,-0.4583333333333333],[115,140,72,-0.4583333333333333],[115,140,73,-0.4583333333333333],[115,140,74,-0.4583333333333333],[115,140,75,-0.4583333333333333],[115,140,76,-0.4583333333333333],[115,140,77,-0.4583333333333333],[115,140,78,-0.4583333333333333],[115,140,79,-0.4583333333333333],[115,141,64,-0.4583333333333333],[115,141,65,-0.4583333333333333],[115,141,66,-0.4583333333333333],[115,141,67,-0.4583333333333333],[115,141,68,-0.4583333333333333],[115,141,69,-0.4583333333333333],[115,141,70,-0.4583333333333333],[115,141,71,-0.4583333333333333],[115,141,72,-0.4583333333333333],[115,141,73,-0.4583333333333333],[115,141,74,-0.4583333333333333],[115,141,75,-0.4583333333333333],[115,141,76,-0.4583333333333333],[115,141,77,-0.4583333333333333],[115,141,78,-0.4583333333333333],[115,141,79,-0.4583333333333333],[115,142,64,-0.4583333333333333],[115,142,65,-0.4583333333333333],[115,142,66,-0.4583333333333333],[115,142,67,-0.4583333333333333],[115,142,68,-0.4583333333333333],[115,142,69,-0.4583333333333333],[115,142,70,-0.4583333333333333],[115,142,71,-0.4583333333333333],[115,142,72,-0.4583333333333333],[115,142,73,-0.4583333333333333],[115,142,74,-0.4583333333333333],[115,142,75,-0.4583333333333333],[115,142,76,-0.4583333333333333],[115,142,77,-0.4583333333333333],[115,142,78,-0.4583333333333333],[115,142,79,-0.4583333333333333],[115,143,64,-0.4583333333333333],[115,143,65,-0.4583333333333333],[115,143,66,-0.4583333333333333],[115,143,67,-0.4583333333333333],[115,143,68,-0.4583333333333333],[115,143,69,-0.4583333333333333],[115,143,70,-0.4583333333333333],[115,143,71,-0.4583333333333333],[115,143,72,-0.4583333333333333],[115,143,73,-0.4583333333333333],[115,143,74,-0.4583333333333333],[115,143,75,-0.4583333333333333],[115,143,76,-0.4583333333333333],[115,143,77,-0.4583333333333333],[115,143,78,-0.4583333333333333],[115,143,79,-0.4583333333333333],[115,144,64,-0.4583333333333333],[115,144,65,-0.4583333333333333],[115,144,66,-0.4583333333333333],[115,144,67,-0.4583333333333333],[115,144,68,-0.4583333333333333],[115,144,69,-0.4583333333333333],[115,144,70,-0.4583333333333333],[115,144,71,-0.4583333333333333],[115,144,72,-0.4583333333333333],[115,144,73,-0.4583333333333333],[115,144,74,-0.4583333333333333],[115,144,75,-0.4583333333333333],[115,144,76,-0.4583333333333333],[115,144,77,-0.4583333333333333],[115,144,78,-0.4583333333333333],[115,144,79,-0.4583333333333333],[115,145,64,-0.4583333333333333],[115,145,65,-0.4583333333333333],[115,145,66,-0.4583333333333333],[115,145,67,-0.4583333333333333],[115,145,68,-0.4583333333333333],[115,145,69,-0.4583333333333333],[115,145,70,-0.4583333333333333],[115,145,71,-0.4583333333333333],[115,145,72,-0.4583333333333333],[115,145,73,-0.4583333333333333],[115,145,74,-0.4583333333333333],[115,145,75,-0.4583333333333333],[115,145,76,-0.4583333333333333],[115,145,77,-0.4583333333333333],[115,145,78,-0.4583333333333333],[115,145,79,-0.4583333333333333],[115,146,64,-0.4583333333333333],[115,146,65,-0.4583333333333333],[115,146,66,-0.4583333333333333],[115,146,67,-0.4583333333333333],[115,146,68,-0.4583333333333333],[115,146,69,-0.4583333333333333],[115,146,70,-0.4583333333333333],[115,146,71,-0.4583333333333333],[115,146,72,-0.4583333333333333],[115,146,73,-0.4583333333333333],[115,146,74,-0.4583333333333333],[115,146,75,-0.4583333333333333],[115,146,76,-0.4583333333333333],[115,146,77,-0.4583333333333333],[115,146,78,-0.4583333333333333],[115,146,79,-0.4583333333333333],[115,147,64,-0.4583333333333333],[115,147,65,-0.4583333333333333],[115,147,66,-0.4583333333333333],[115,147,67,-0.4583333333333333],[115,147,68,-0.4583333333333333],[115,147,69,-0.4583333333333333],[115,147,70,-0.4583333333333333],[115,147,71,-0.4583333333333333],[115,147,72,-0.4583333333333333],[115,147,73,-0.4583333333333333],[115,147,74,-0.4583333333333333],[115,147,75,-0.4583333333333333],[115,147,76,-0.4583333333333333],[115,147,77,-0.4583333333333333],[115,147,78,-0.4583333333333333],[115,147,79,-0.4583333333333333],[115,148,64,-0.4583333333333333],[115,148,65,-0.4583333333333333],[115,148,66,-0.4583333333333333],[115,148,67,-0.4583333333333333],[115,148,68,-0.4583333333333333],[115,148,69,-0.4583333333333333],[115,148,70,-0.4583333333333333],[115,148,71,-0.4583333333333333],[115,148,72,-0.4583333333333333],[115,148,73,-0.4583333333333333],[115,148,74,-0.4583333333333333],[115,148,75,-0.4583333333333333],[115,148,76,-0.4583333333333333],[115,148,77,-0.4583333333333333],[115,148,78,-0.4583333333333333],[115,148,79,-0.4583333333333333],[115,149,64,-0.4583333333333333],[115,149,65,-0.4583333333333333],[115,149,66,-0.4583333333333333],[115,149,67,-0.4583333333333333],[115,149,68,-0.4583333333333333],[115,149,69,-0.4583333333333333],[115,149,70,-0.4583333333333333],[115,149,71,-0.4583333333333333],[115,149,72,-0.4583333333333333],[115,149,73,-0.4583333333333333],[115,149,74,-0.4583333333333333],[115,149,75,-0.4583333333333333],[115,149,76,-0.4583333333333333],[115,149,77,-0.4583333333333333],[115,149,78,-0.4583333333333333],[115,149,79,-0.4583333333333333],[115,150,64,-0.4583333333333333],[115,150,65,-0.4583333333333333],[115,150,66,-0.4583333333333333],[115,150,67,-0.4583333333333333],[115,150,68,-0.4583333333333333],[115,150,69,-0.4583333333333333],[115,150,70,-0.4583333333333333],[115,150,71,-0.4583333333333333],[115,150,72,-0.4583333333333333],[115,150,73,-0.4583333333333333],[115,150,74,-0.4583333333333333],[115,150,75,-0.4583333333333333],[115,150,76,-0.4583333333333333],[115,150,77,-0.4583333333333333],[115,150,78,-0.4583333333333333],[115,150,79,-0.4583333333333333],[115,151,64,-0.4583333333333333],[115,151,65,-0.4583333333333333],[115,151,66,-0.4583333333333333],[115,151,67,-0.4583333333333333],[115,151,68,-0.4583333333333333],[115,151,69,-0.4583333333333333],[115,151,70,-0.4583333333333333],[115,151,71,-0.4583333333333333],[115,151,72,-0.4583333333333333],[115,151,73,-0.4583333333333333],[115,151,74,-0.4583333333333333],[115,151,75,-0.4583333333333333],[115,151,76,-0.4583333333333333],[115,151,77,-0.4583333333333333],[115,151,78,-0.4583333333333333],[115,151,79,-0.4583333333333333],[115,152,64,-0.4583333333333333],[115,152,65,-0.4583333333333333],[115,152,66,-0.4583333333333333],[115,152,67,-0.4583333333333333],[115,152,68,-0.4583333333333333],[115,152,69,-0.4583333333333333],[115,152,70,-0.4583333333333333],[115,152,71,-0.4583333333333333],[115,152,72,-0.4583333333333333],[115,152,73,-0.4583333333333333],[115,152,74,-0.4583333333333333],[115,152,75,-0.4583333333333333],[115,152,76,-0.4583333333333333],[115,152,77,-0.4583333333333333],[115,152,78,-0.4583333333333333],[115,152,79,-0.4583333333333333],[115,153,64,-0.4583333333333333],[115,153,65,-0.4583333333333333],[115,153,66,-0.4583333333333333],[115,153,67,-0.4583333333333333],[115,153,68,-0.4583333333333333],[115,153,69,-0.4583333333333333],[115,153,70,-0.4583333333333333],[115,153,71,-0.4583333333333333],[115,153,72,-0.4583333333333333],[115,153,73,-0.4583333333333333],[115,153,74,-0.4583333333333333],[115,153,75,-0.4583333333333333],[115,153,76,-0.4583333333333333],[115,153,77,-0.4583333333333333],[115,153,78,-0.4583333333333333],[115,153,79,-0.4583333333333333],[115,154,64,-0.4583333333333333],[115,154,65,-0.4583333333333333],[115,154,66,-0.4583333333333333],[115,154,67,-0.4583333333333333],[115,154,68,-0.4583333333333333],[115,154,69,-0.4583333333333333],[115,154,70,-0.4583333333333333],[115,154,71,-0.4583333333333333],[115,154,72,-0.4583333333333333],[115,154,73,-0.4583333333333333],[115,154,74,-0.4583333333333333],[115,154,75,-0.4583333333333333],[115,154,76,-0.4583333333333333],[115,154,77,-0.4583333333333333],[115,154,78,-0.4583333333333333],[115,154,79,-0.4583333333333333],[115,155,64,-0.4583333333333333],[115,155,65,-0.4583333333333333],[115,155,66,-0.4583333333333333],[115,155,67,-0.4583333333333333],[115,155,68,-0.4583333333333333],[115,155,69,-0.4583333333333333],[115,155,70,-0.4583333333333333],[115,155,71,-0.4583333333333333],[115,155,72,-0.4583333333333333],[115,155,73,-0.4583333333333333],[115,155,74,-0.4583333333333333],[115,155,75,-0.4583333333333333],[115,155,76,-0.4583333333333333],[115,155,77,-0.4583333333333333],[115,155,78,-0.4583333333333333],[115,155,79,-0.4583333333333333],[115,156,64,-0.4583333333333333],[115,156,65,-0.4583333333333333],[115,156,66,-0.4583333333333333],[115,156,67,-0.4583333333333333],[115,156,68,-0.4583333333333333],[115,156,69,-0.4583333333333333],[115,156,70,-0.4583333333333333],[115,156,71,-0.4583333333333333],[115,156,72,-0.4583333333333333],[115,156,73,-0.4583333333333333],[115,156,74,-0.4583333333333333],[115,156,75,-0.4583333333333333],[115,156,76,-0.4583333333333333],[115,156,77,-0.4583333333333333],[115,156,78,-0.4583333333333333],[115,156,79,-0.4583333333333333],[115,157,64,-0.4583333333333333],[115,157,65,-0.4583333333333333],[115,157,66,-0.4583333333333333],[115,157,67,-0.4583333333333333],[115,157,68,-0.4583333333333333],[115,157,69,-0.4583333333333333],[115,157,70,-0.4583333333333333],[115,157,71,-0.4583333333333333],[115,157,72,-0.4583333333333333],[115,157,73,-0.4583333333333333],[115,157,74,-0.4583333333333333],[115,157,75,-0.4583333333333333],[115,157,76,-0.4583333333333333],[115,157,77,-0.4583333333333333],[115,157,78,-0.4583333333333333],[115,157,79,-0.4583333333333333],[115,158,64,-0.4583333333333333],[115,158,65,-0.4583333333333333],[115,158,66,-0.4583333333333333],[115,158,67,-0.4583333333333333],[115,158,68,-0.4583333333333333],[115,158,69,-0.4583333333333333],[115,158,70,-0.4583333333333333],[115,158,71,-0.4583333333333333],[115,158,72,-0.4583333333333333],[115,158,73,-0.4583333333333333],[115,158,74,-0.4583333333333333],[115,158,75,-0.4583333333333333],[115,158,76,-0.4583333333333333],[115,158,77,-0.4583333333333333],[115,158,78,-0.4583333333333333],[115,158,79,-0.4583333333333333],[115,159,64,-0.4583333333333333],[115,159,65,-0.4583333333333333],[115,159,66,-0.4583333333333333],[115,159,67,-0.4583333333333333],[115,159,68,-0.4583333333333333],[115,159,69,-0.4583333333333333],[115,159,70,-0.4583333333333333],[115,159,71,-0.4583333333333333],[115,159,72,-0.4583333333333333],[115,159,73,-0.4583333333333333],[115,159,74,-0.4583333333333333],[115,159,75,-0.4583333333333333],[115,159,76,-0.4583333333333333],[115,159,77,-0.4583333333333333],[115,159,78,-0.4583333333333333],[115,159,79,-0.4583333333333333],[115,160,64,-0.4583333333333333],[115,160,65,-0.4583333333333333],[115,160,66,-0.4583333333333333],[115,160,67,-0.4583333333333333],[115,160,68,-0.4583333333333333],[115,160,69,-0.4583333333333333],[115,160,70,-0.4583333333333333],[115,160,71,-0.4583333333333333],[115,160,72,-0.4583333333333333],[115,160,73,-0.4583333333333333],[115,160,74,-0.4583333333333333],[115,160,75,-0.4583333333333333],[115,160,76,-0.4583333333333333],[115,160,77,-0.4583333333333333],[115,160,78,-0.4583333333333333],[115,160,79,-0.4583333333333333],[115,161,64,-0.4583333333333333],[115,161,65,-0.4583333333333333],[115,161,66,-0.4583333333333333],[115,161,67,-0.4583333333333333],[115,161,68,-0.4583333333333333],[115,161,69,-0.4583333333333333],[115,161,70,-0.4583333333333333],[115,161,71,-0.4583333333333333],[115,161,72,-0.4583333333333333],[115,161,73,-0.4583333333333333],[115,161,74,-0.4583333333333333],[115,161,75,-0.4583333333333333],[115,161,76,-0.4583333333333333],[115,161,77,-0.4583333333333333],[115,161,78,-0.4583333333333333],[115,161,79,-0.4583333333333333],[115,162,64,-0.4583333333333333],[115,162,65,-0.4583333333333333],[115,162,66,-0.4583333333333333],[115,162,67,-0.4583333333333333],[115,162,68,-0.4583333333333333],[115,162,69,-0.4583333333333333],[115,162,70,-0.4583333333333333],[115,162,71,-0.4583333333333333],[115,162,72,-0.4583333333333333],[115,162,73,-0.4583333333333333],[115,162,74,-0.4583333333333333],[115,162,75,-0.4583333333333333],[115,162,76,-0.4583333333333333],[115,162,77,-0.4583333333333333],[115,162,78,-0.4583333333333333],[115,162,79,-0.4583333333333333],[115,163,64,-0.4583333333333333],[115,163,65,-0.4583333333333333],[115,163,66,-0.4583333333333333],[115,163,67,-0.4583333333333333],[115,163,68,-0.4583333333333333],[115,163,69,-0.4583333333333333],[115,163,70,-0.4583333333333333],[115,163,71,-0.4583333333333333],[115,163,72,-0.4583333333333333],[115,163,73,-0.4583333333333333],[115,163,74,-0.4583333333333333],[115,163,75,-0.4583333333333333],[115,163,76,-0.4583333333333333],[115,163,77,-0.4583333333333333],[115,163,78,-0.4583333333333333],[115,163,79,-0.4583333333333333],[115,164,64,-0.4583333333333333],[115,164,65,-0.4583333333333333],[115,164,66,-0.4583333333333333],[115,164,67,-0.4583333333333333],[115,164,68,-0.4583333333333333],[115,164,69,-0.4583333333333333],[115,164,70,-0.4583333333333333],[115,164,71,-0.4583333333333333],[115,164,72,-0.4583333333333333],[115,164,73,-0.4583333333333333],[115,164,74,-0.4583333333333333],[115,164,75,-0.4583333333333333],[115,164,76,-0.4583333333333333],[115,164,77,-0.4583333333333333],[115,164,78,-0.4583333333333333],[115,164,79,-0.4583333333333333],[115,165,64,-0.4583333333333333],[115,165,65,-0.4583333333333333],[115,165,66,-0.4583333333333333],[115,165,67,-0.4583333333333333],[115,165,68,-0.4583333333333333],[115,165,69,-0.4583333333333333],[115,165,70,-0.4583333333333333],[115,165,71,-0.4583333333333333],[115,165,72,-0.4583333333333333],[115,165,73,-0.4583333333333333],[115,165,74,-0.4583333333333333],[115,165,75,-0.4583333333333333],[115,165,76,-0.4583333333333333],[115,165,77,-0.4583333333333333],[115,165,78,-0.4583333333333333],[115,165,79,-0.4583333333333333],[115,166,64,-0.4583333333333333],[115,166,65,-0.4583333333333333],[115,166,66,-0.4583333333333333],[115,166,67,-0.4583333333333333],[115,166,68,-0.4583333333333333],[115,166,69,-0.4583333333333333],[115,166,70,-0.4583333333333333],[115,166,71,-0.4583333333333333],[115,166,72,-0.4583333333333333],[115,166,73,-0.4583333333333333],[115,166,74,-0.4583333333333333],[115,166,75,-0.4583333333333333],[115,166,76,-0.4583333333333333],[115,166,77,-0.4583333333333333],[115,166,78,-0.4583333333333333],[115,166,79,-0.4583333333333333],[115,167,64,-0.4583333333333333],[115,167,65,-0.4583333333333333],[115,167,66,-0.4583333333333333],[115,167,67,-0.4583333333333333],[115,167,68,-0.4583333333333333],[115,167,69,-0.4583333333333333],[115,167,70,-0.4583333333333333],[115,167,71,-0.4583333333333333],[115,167,72,-0.4583333333333333],[115,167,73,-0.4583333333333333],[115,167,74,-0.4583333333333333],[115,167,75,-0.4583333333333333],[115,167,76,-0.4583333333333333],[115,167,77,-0.4583333333333333],[115,167,78,-0.4583333333333333],[115,167,79,-0.4583333333333333],[115,168,64,-0.4583333333333333],[115,168,65,-0.4583333333333333],[115,168,66,-0.4583333333333333],[115,168,67,-0.4583333333333333],[115,168,68,-0.4583333333333333],[115,168,69,-0.4583333333333333],[115,168,70,-0.4583333333333333],[115,168,71,-0.4583333333333333],[115,168,72,-0.4583333333333333],[115,168,73,-0.4583333333333333],[115,168,74,-0.4583333333333333],[115,168,75,-0.4583333333333333],[115,168,76,-0.4583333333333333],[115,168,77,-0.4583333333333333],[115,168,78,-0.4583333333333333],[115,168,79,-0.4583333333333333],[115,169,64,-0.4583333333333333],[115,169,65,-0.4583333333333333],[115,169,66,-0.4583333333333333],[115,169,67,-0.4583333333333333],[115,169,68,-0.4583333333333333],[115,169,69,-0.4583333333333333],[115,169,70,-0.4583333333333333],[115,169,71,-0.4583333333333333],[115,169,72,-0.4583333333333333],[115,169,73,-0.4583333333333333],[115,169,74,-0.4583333333333333],[115,169,75,-0.4583333333333333],[115,169,76,-0.4583333333333333],[115,169,77,-0.4583333333333333],[115,169,78,-0.4583333333333333],[115,169,79,-0.4583333333333333],[115,170,64,-0.4583333333333333],[115,170,65,-0.4583333333333333],[115,170,66,-0.4583333333333333],[115,170,67,-0.4583333333333333],[115,170,68,-0.4583333333333333],[115,170,69,-0.4583333333333333],[115,170,70,-0.4583333333333333],[115,170,71,-0.4583333333333333],[115,170,72,-0.4583333333333333],[115,170,73,-0.4583333333333333],[115,170,74,-0.4583333333333333],[115,170,75,-0.4583333333333333],[115,170,76,-0.4583333333333333],[115,170,77,-0.4583333333333333],[115,170,78,-0.4583333333333333],[115,170,79,-0.4583333333333333],[115,171,64,-0.4583333333333333],[115,171,65,-0.4583333333333333],[115,171,66,-0.4583333333333333],[115,171,67,-0.4583333333333333],[115,171,68,-0.4583333333333333],[115,171,69,-0.4583333333333333],[115,171,70,-0.4583333333333333],[115,171,71,-0.4583333333333333],[115,171,72,-0.4583333333333333],[115,171,73,-0.4583333333333333],[115,171,74,-0.4583333333333333],[115,171,75,-0.4583333333333333],[115,171,76,-0.4583333333333333],[115,171,77,-0.4583333333333333],[115,171,78,-0.4583333333333333],[115,171,79,-0.4583333333333333],[115,172,64,-0.4583333333333333],[115,172,65,-0.4583333333333333],[115,172,66,-0.4583333333333333],[115,172,67,-0.4583333333333333],[115,172,68,-0.4583333333333333],[115,172,69,-0.4583333333333333],[115,172,70,-0.4583333333333333],[115,172,71,-0.4583333333333333],[115,172,72,-0.4583333333333333],[115,172,73,-0.4583333333333333],[115,172,74,-0.4583333333333333],[115,172,75,-0.4583333333333333],[115,172,76,-0.4583333333333333],[115,172,77,-0.4583333333333333],[115,172,78,-0.4583333333333333],[115,172,79,-0.4583333333333333],[115,173,64,-0.4583333333333333],[115,173,65,-0.4583333333333333],[115,173,66,-0.4583333333333333],[115,173,67,-0.4583333333333333],[115,173,68,-0.4583333333333333],[115,173,69,-0.4583333333333333],[115,173,70,-0.4583333333333333],[115,173,71,-0.4583333333333333],[115,173,72,-0.4583333333333333],[115,173,73,-0.4583333333333333],[115,173,74,-0.4583333333333333],[115,173,75,-0.4583333333333333],[115,173,76,-0.4583333333333333],[115,173,77,-0.4583333333333333],[115,173,78,-0.4583333333333333],[115,173,79,-0.4583333333333333],[115,174,64,-0.4583333333333333],[115,174,65,-0.4583333333333333],[115,174,66,-0.4583333333333333],[115,174,67,-0.4583333333333333],[115,174,68,-0.4583333333333333],[115,174,69,-0.4583333333333333],[115,174,70,-0.4583333333333333],[115,174,71,-0.4583333333333333],[115,174,72,-0.4583333333333333],[115,174,73,-0.4583333333333333],[115,174,74,-0.4583333333333333],[115,174,75,-0.4583333333333333],[115,174,76,-0.4583333333333333],[115,174,77,-0.4583333333333333],[115,174,78,-0.4583333333333333],[115,174,79,-0.4583333333333333],[115,175,64,-0.4583333333333333],[115,175,65,-0.4583333333333333],[115,175,66,-0.4583333333333333],[115,175,67,-0.4583333333333333],[115,175,68,-0.4583333333333333],[115,175,69,-0.4583333333333333],[115,175,70,-0.4583333333333333],[115,175,71,-0.4583333333333333],[115,175,72,-0.4583333333333333],[115,175,73,-0.4583333333333333],[115,175,74,-0.4583333333333333],[115,175,75,-0.4583333333333333],[115,175,76,-0.4583333333333333],[115,175,77,-0.4583333333333333],[115,175,78,-0.4583333333333333],[115,175,79,-0.4583333333333333],[115,176,64,-0.4583333333333333],[115,176,65,-0.4583333333333333],[115,176,66,-0.4583333333333333],[115,176,67,-0.4583333333333333],[115,176,68,-0.4583333333333333],[115,176,69,-0.4583333333333333],[115,176,70,-0.4583333333333333],[115,176,71,-0.4583333333333333],[115,176,72,-0.4583333333333333],[115,176,73,-0.4583333333333333],[115,176,74,-0.4583333333333333],[115,176,75,-0.4583333333333333],[115,176,76,-0.4583333333333333],[115,176,77,-0.4583333333333333],[115,176,78,-0.4583333333333333],[115,176,79,-0.4583333333333333],[115,177,64,-0.4583333333333333],[115,177,65,-0.4583333333333333],[115,177,66,-0.4583333333333333],[115,177,67,-0.4583333333333333],[115,177,68,-0.4583333333333333],[115,177,69,-0.4583333333333333],[115,177,70,-0.4583333333333333],[115,177,71,-0.4583333333333333],[115,177,72,-0.4583333333333333],[115,177,73,-0.4583333333333333],[115,177,74,-0.4583333333333333],[115,177,75,-0.4583333333333333],[115,177,76,-0.4583333333333333],[115,177,77,-0.4583333333333333],[115,177,78,-0.4583333333333333],[115,177,79,-0.4583333333333333],[115,178,64,-0.4583333333333333],[115,178,65,-0.4583333333333333],[115,178,66,-0.4583333333333333],[115,178,67,-0.4583333333333333],[115,178,68,-0.4583333333333333],[115,178,69,-0.4583333333333333],[115,178,70,-0.4583333333333333],[115,178,71,-0.4583333333333333],[115,178,72,-0.4583333333333333],[115,178,73,-0.4583333333333333],[115,178,74,-0.4583333333333333],[115,178,75,-0.4583333333333333],[115,178,76,-0.4583333333333333],[115,178,77,-0.4583333333333333],[115,178,78,-0.4583333333333333],[115,178,79,-0.4583333333333333],[115,179,64,-0.4583333333333333],[115,179,65,-0.4583333333333333],[115,179,66,-0.4583333333333333],[115,179,67,-0.4583333333333333],[115,179,68,-0.4583333333333333],[115,179,69,-0.4583333333333333],[115,179,70,-0.4583333333333333],[115,179,71,-0.4583333333333333],[115,179,72,-0.4583333333333333],[115,179,73,-0.4583333333333333],[115,179,74,-0.4583333333333333],[115,179,75,-0.4583333333333333],[115,179,76,-0.4583333333333333],[115,179,77,-0.4583333333333333],[115,179,78,-0.4583333333333333],[115,179,79,-0.4583333333333333],[115,180,64,-0.4583333333333333],[115,180,65,-0.4583333333333333],[115,180,66,-0.4583333333333333],[115,180,67,-0.4583333333333333],[115,180,68,-0.4583333333333333],[115,180,69,-0.4583333333333333],[115,180,70,-0.4583333333333333],[115,180,71,-0.4583333333333333],[115,180,72,-0.4583333333333333],[115,180,73,-0.4583333333333333],[115,180,74,-0.4583333333333333],[115,180,75,-0.4583333333333333],[115,180,76,-0.4583333333333333],[115,180,77,-0.4583333333333333],[115,180,78,-0.4583333333333333],[115,180,79,-0.4583333333333333],[115,181,64,-0.4583333333333333],[115,181,65,-0.4583333333333333],[115,181,66,-0.4583333333333333],[115,181,67,-0.4583333333333333],[115,181,68,-0.4583333333333333],[115,181,69,-0.4583333333333333],[115,181,70,-0.4583333333333333],[115,181,71,-0.4583333333333333],[115,181,72,-0.4583333333333333],[115,181,73,-0.4583333333333333],[115,181,74,-0.4583333333333333],[115,181,75,-0.4583333333333333],[115,181,76,-0.4583333333333333],[115,181,77,-0.4583333333333333],[115,181,78,-0.4583333333333333],[115,181,79,-0.4583333333333333],[115,182,64,-0.4583333333333333],[115,182,65,-0.4583333333333333],[115,182,66,-0.4583333333333333],[115,182,67,-0.4583333333333333],[115,182,68,-0.4583333333333333],[115,182,69,-0.4583333333333333],[115,182,70,-0.4583333333333333],[115,182,71,-0.4583333333333333],[115,182,72,-0.4583333333333333],[115,182,73,-0.4583333333333333],[115,182,74,-0.4583333333333333],[115,182,75,-0.4583333333333333],[115,182,76,-0.4583333333333333],[115,182,77,-0.4583333333333333],[115,182,78,-0.4583333333333333],[115,182,79,-0.4583333333333333],[115,183,64,-0.4583333333333333],[115,183,65,-0.4583333333333333],[115,183,66,-0.4583333333333333],[115,183,67,-0.4583333333333333],[115,183,68,-0.4583333333333333],[115,183,69,-0.4583333333333333],[115,183,70,-0.4583333333333333],[115,183,71,-0.4583333333333333],[115,183,72,-0.4583333333333333],[115,183,73,-0.4583333333333333],[115,183,74,-0.4583333333333333],[115,183,75,-0.4583333333333333],[115,183,76,-0.4583333333333333],[115,183,77,-0.4583333333333333],[115,183,78,-0.4583333333333333],[115,183,79,-0.4583333333333333],[115,184,64,-0.4583333333333333],[115,184,65,-0.4583333333333333],[115,184,66,-0.4583333333333333],[115,184,67,-0.4583333333333333],[115,184,68,-0.4583333333333333],[115,184,69,-0.4583333333333333],[115,184,70,-0.4583333333333333],[115,184,71,-0.4583333333333333],[115,184,72,-0.4583333333333333],[115,184,73,-0.4583333333333333],[115,184,74,-0.4583333333333333],[115,184,75,-0.4583333333333333],[115,184,76,-0.4583333333333333],[115,184,77,-0.4583333333333333],[115,184,78,-0.4583333333333333],[115,184,79,-0.4583333333333333],[115,185,64,-0.4583333333333333],[115,185,65,-0.4583333333333333],[115,185,66,-0.4583333333333333],[115,185,67,-0.4583333333333333],[115,185,68,-0.4583333333333333],[115,185,69,-0.4583333333333333],[115,185,70,-0.4583333333333333],[115,185,71,-0.4583333333333333],[115,185,72,-0.4583333333333333],[115,185,73,-0.4583333333333333],[115,185,74,-0.4583333333333333],[115,185,75,-0.4583333333333333],[115,185,76,-0.4583333333333333],[115,185,77,-0.4583333333333333],[115,185,78,-0.4583333333333333],[115,185,79,-0.4583333333333333],[115,186,64,-0.4583333333333333],[115,186,65,-0.4583333333333333],[115,186,66,-0.4583333333333333],[115,186,67,-0.4583333333333333],[115,186,68,-0.4583333333333333],[115,186,69,-0.4583333333333333],[115,186,70,-0.4583333333333333],[115,186,71,-0.4583333333333333],[115,186,72,-0.4583333333333333],[115,186,73,-0.4583333333333333],[115,186,74,-0.4583333333333333],[115,186,75,-0.4583333333333333],[115,186,76,-0.4583333333333333],[115,186,77,-0.4583333333333333],[115,186,78,-0.4583333333333333],[115,186,79,-0.4583333333333333],[115,187,64,-0.4583333333333333],[115,187,65,-0.4583333333333333],[115,187,66,-0.4583333333333333],[115,187,67,-0.4583333333333333],[115,187,68,-0.4583333333333333],[115,187,69,-0.4583333333333333],[115,187,70,-0.4583333333333333],[115,187,71,-0.4583333333333333],[115,187,72,-0.4583333333333333],[115,187,73,-0.4583333333333333],[115,187,74,-0.4583333333333333],[115,187,75,-0.4583333333333333],[115,187,76,-0.4583333333333333],[115,187,77,-0.4583333333333333],[115,187,78,-0.4583333333333333],[115,187,79,-0.4583333333333333],[115,188,64,-0.4583333333333333],[115,188,65,-0.4583333333333333],[115,188,66,-0.4583333333333333],[115,188,67,-0.4583333333333333],[115,188,68,-0.4583333333333333],[115,188,69,-0.4583333333333333],[115,188,70,-0.4583333333333333],[115,188,71,-0.4583333333333333],[115,188,72,-0.4583333333333333],[115,188,73,-0.4583333333333333],[115,188,74,-0.4583333333333333],[115,188,75,-0.4583333333333333],[115,188,76,-0.4583333333333333],[115,188,77,-0.4583333333333333],[115,188,78,-0.4583333333333333],[115,188,79,-0.4583333333333333],[115,189,64,-0.4583333333333333],[115,189,65,-0.4583333333333333],[115,189,66,-0.4583333333333333],[115,189,67,-0.4583333333333333],[115,189,68,-0.4583333333333333],[115,189,69,-0.4583333333333333],[115,189,70,-0.4583333333333333],[115,189,71,-0.4583333333333333],[115,189,72,-0.4583333333333333],[115,189,73,-0.4583333333333333],[115,189,74,-0.4583333333333333],[115,189,75,-0.4583333333333333],[115,189,76,-0.4583333333333333],[115,189,77,-0.4583333333333333],[115,189,78,-0.4583333333333333],[115,189,79,-0.4583333333333333],[115,190,64,-0.4583333333333333],[115,190,65,-0.4583333333333333],[115,190,66,-0.4583333333333333],[115,190,67,-0.4583333333333333],[115,190,68,-0.4583333333333333],[115,190,69,-0.4583333333333333],[115,190,70,-0.4583333333333333],[115,190,71,-0.4583333333333333],[115,190,72,-0.4583333333333333],[115,190,73,-0.4583333333333333],[115,190,74,-0.4583333333333333],[115,190,75,-0.4583333333333333],[115,190,76,-0.4583333333333333],[115,190,77,-0.4583333333333333],[115,190,78,-0.4583333333333333],[115,190,79,-0.4583333333333333],[115,191,64,-0.4583333333333333],[115,191,65,-0.4583333333333333],[115,191,66,-0.4583333333333333],[115,191,67,-0.4583333333333333],[115,191,68,-0.4583333333333333],[115,191,69,-0.4583333333333333],[115,191,70,-0.4583333333333333],[115,191,71,-0.4583333333333333],[115,191,72,-0.4583333333333333],[115,191,73,-0.4583333333333333],[115,191,74,-0.4583333333333333],[115,191,75,-0.4583333333333333],[115,191,76,-0.4583333333333333],[115,191,77,-0.4583333333333333],[115,191,78,-0.4583333333333333],[115,191,79,-0.4583333333333333],[115,192,64,-0.4583333333333333],[115,192,65,-0.4583333333333333],[115,192,66,-0.4583333333333333],[115,192,67,-0.4583333333333333],[115,192,68,-0.4583333333333333],[115,192,69,-0.4583333333333333],[115,192,70,-0.4583333333333333],[115,192,71,-0.4583333333333333],[115,192,72,-0.4583333333333333],[115,192,73,-0.4583333333333333],[115,192,74,-0.4583333333333333],[115,192,75,-0.4583333333333333],[115,192,76,-0.4583333333333333],[115,192,77,-0.4583333333333333],[115,192,78,-0.4583333333333333],[115,192,79,-0.4583333333333333],[115,193,64,-0.4583333333333333],[115,193,65,-0.4583333333333333],[115,193,66,-0.4583333333333333],[115,193,67,-0.4583333333333333],[115,193,68,-0.4583333333333333],[115,193,69,-0.4583333333333333],[115,193,70,-0.4583333333333333],[115,193,71,-0.4583333333333333],[115,193,72,-0.4583333333333333],[115,193,73,-0.4583333333333333],[115,193,74,-0.4583333333333333],[115,193,75,-0.4583333333333333],[115,193,76,-0.4583333333333333],[115,193,77,-0.4583333333333333],[115,193,78,-0.4583333333333333],[115,193,79,-0.4583333333333333],[115,194,64,-0.4583333333333333],[115,194,65,-0.4583333333333333],[115,194,66,-0.4583333333333333],[115,194,67,-0.4583333333333333],[115,194,68,-0.4583333333333333],[115,194,69,-0.4583333333333333],[115,194,70,-0.4583333333333333],[115,194,71,-0.4583333333333333],[115,194,72,-0.4583333333333333],[115,194,73,-0.4583333333333333],[115,194,74,-0.4583333333333333],[115,194,75,-0.4583333333333333],[115,194,76,-0.4583333333333333],[115,194,77,-0.4583333333333333],[115,194,78,-0.4583333333333333],[115,194,79,-0.4583333333333333],[115,195,64,-0.4583333333333333],[115,195,65,-0.4583333333333333],[115,195,66,-0.4583333333333333],[115,195,67,-0.4583333333333333],[115,195,68,-0.4583333333333333],[115,195,69,-0.4583333333333333],[115,195,70,-0.4583333333333333],[115,195,71,-0.4583333333333333],[115,195,72,-0.4583333333333333],[115,195,73,-0.4583333333333333],[115,195,74,-0.4583333333333333],[115,195,75,-0.4583333333333333],[115,195,76,-0.4583333333333333],[115,195,77,-0.4583333333333333],[115,195,78,-0.4583333333333333],[115,195,79,-0.4583333333333333],[115,196,64,-0.4583333333333333],[115,196,65,-0.4583333333333333],[115,196,66,-0.4583333333333333],[115,196,67,-0.4583333333333333],[115,196,68,-0.4583333333333333],[115,196,69,-0.4583333333333333],[115,196,70,-0.4583333333333333],[115,196,71,-0.4583333333333333],[115,196,72,-0.4583333333333333],[115,196,73,-0.4583333333333333],[115,196,74,-0.4583333333333333],[115,196,75,-0.4583333333333333],[115,196,76,-0.4583333333333333],[115,196,77,-0.4583333333333333],[115,196,78,-0.4583333333333333],[115,196,79,-0.4583333333333333],[115,197,64,-0.4583333333333333],[115,197,65,-0.4583333333333333],[115,197,66,-0.4583333333333333],[115,197,67,-0.4583333333333333],[115,197,68,-0.4583333333333333],[115,197,69,-0.4583333333333333],[115,197,70,-0.4583333333333333],[115,197,71,-0.4583333333333333],[115,197,72,-0.4583333333333333],[115,197,73,-0.4583333333333333],[115,197,74,-0.4583333333333333],[115,197,75,-0.4583333333333333],[115,197,76,-0.4583333333333333],[115,197,77,-0.4583333333333333],[115,197,78,-0.4583333333333333],[115,197,79,-0.4583333333333333],[115,198,64,-0.4583333333333333],[115,198,65,-0.4583333333333333],[115,198,66,-0.4583333333333333],[115,198,67,-0.4583333333333333],[115,198,68,-0.4583333333333333],[115,198,69,-0.4583333333333333],[115,198,70,-0.4583333333333333],[115,198,71,-0.4583333333333333],[115,198,72,-0.4583333333333333],[115,198,73,-0.4583333333333333],[115,198,74,-0.4583333333333333],[115,198,75,-0.4583333333333333],[115,198,76,-0.4583333333333333],[115,198,77,-0.4583333333333333],[115,198,78,-0.4583333333333333],[115,198,79,-0.4583333333333333],[115,199,64,-0.4583333333333333],[115,199,65,-0.4583333333333333],[115,199,66,-0.4583333333333333],[115,199,67,-0.4583333333333333],[115,199,68,-0.4583333333333333],[115,199,69,-0.4583333333333333],[115,199,70,-0.4583333333333333],[115,199,71,-0.4583333333333333],[115,199,72,-0.4583333333333333],[115,199,73,-0.4583333333333333],[115,199,74,-0.4583333333333333],[115,199,75,-0.4583333333333333],[115,199,76,-0.4583333333333333],[115,199,77,-0.4583333333333333],[115,199,78,-0.4583333333333333],[115,199,79,-0.4583333333333333],[115,200,64,-0.4583333333333333],[115,200,65,-0.4583333333333333],[115,200,66,-0.4583333333333333],[115,200,67,-0.4583333333333333],[115,200,68,-0.4583333333333333],[115,200,69,-0.4583333333333333],[115,200,70,-0.4583333333333333],[115,200,71,-0.4583333333333333],[115,200,72,-0.4583333333333333],[115,200,73,-0.4583333333333333],[115,200,74,-0.4583333333333333],[115,200,75,-0.4583333333333333],[115,200,76,-0.4583333333333333],[115,200,77,-0.4583333333333333],[115,200,78,-0.4583333333333333],[115,200,79,-0.4583333333333333],[115,201,64,-0.4583333333333333],[115,201,65,-0.4583333333333333],[115,201,66,-0.4583333333333333],[115,201,67,-0.4583333333333333],[115,201,68,-0.4583333333333333],[115,201,69,-0.4583333333333333],[115,201,70,-0.4583333333333333],[115,201,71,-0.4583333333333333],[115,201,72,-0.4583333333333333],[115,201,73,-0.4583333333333333],[115,201,74,-0.4583333333333333],[115,201,75,-0.4583333333333333],[115,201,76,-0.4583333333333333],[115,201,77,-0.4583333333333333],[115,201,78,-0.4583333333333333],[115,201,79,-0.4583333333333333],[115,202,64,-0.4583333333333333],[115,202,65,-0.4583333333333333],[115,202,66,-0.4583333333333333],[115,202,67,-0.4583333333333333],[115,202,68,-0.4583333333333333],[115,202,69,-0.4583333333333333],[115,202,70,-0.4583333333333333],[115,202,71,-0.4583333333333333],[115,202,72,-0.4583333333333333],[115,202,73,-0.4583333333333333],[115,202,74,-0.4583333333333333],[115,202,75,-0.4583333333333333],[115,202,76,-0.4583333333333333],[115,202,77,-0.4583333333333333],[115,202,78,-0.4583333333333333],[115,202,79,-0.4583333333333333],[115,203,64,-0.4583333333333333],[115,203,65,-0.4583333333333333],[115,203,66,-0.4583333333333333],[115,203,67,-0.4583333333333333],[115,203,68,-0.4583333333333333],[115,203,69,-0.4583333333333333],[115,203,70,-0.4583333333333333],[115,203,71,-0.4583333333333333],[115,203,72,-0.4583333333333333],[115,203,73,-0.4583333333333333],[115,203,74,-0.4583333333333333],[115,203,75,-0.4583333333333333],[115,203,76,-0.4583333333333333],[115,203,77,-0.4583333333333333],[115,203,78,-0.4583333333333333],[115,203,79,-0.4583333333333333],[115,204,64,-0.4583333333333333],[115,204,65,-0.4583333333333333],[115,204,66,-0.4583333333333333],[115,204,67,-0.4583333333333333],[115,204,68,-0.4583333333333333],[115,204,69,-0.4583333333333333],[115,204,70,-0.4583333333333333],[115,204,71,-0.4583333333333333],[115,204,72,-0.4583333333333333],[115,204,73,-0.4583333333333333],[115,204,74,-0.4583333333333333],[115,204,75,-0.4583333333333333],[115,204,76,-0.4583333333333333],[115,204,77,-0.4583333333333333],[115,204,78,-0.4583333333333333],[115,204,79,-0.4583333333333333],[115,205,64,-0.4583333333333333],[115,205,65,-0.4583333333333333],[115,205,66,-0.4583333333333333],[115,205,67,-0.4583333333333333],[115,205,68,-0.4583333333333333],[115,205,69,-0.4583333333333333],[115,205,70,-0.4583333333333333],[115,205,71,-0.4583333333333333],[115,205,72,-0.4583333333333333],[115,205,73,-0.4583333333333333],[115,205,74,-0.4583333333333333],[115,205,75,-0.4583333333333333],[115,205,76,-0.4583333333333333],[115,205,77,-0.4583333333333333],[115,205,78,-0.4583333333333333],[115,205,79,-0.4583333333333333],[115,206,64,-0.4583333333333333],[115,206,65,-0.4583333333333333],[115,206,66,-0.4583333333333333],[115,206,67,-0.4583333333333333],[115,206,68,-0.4583333333333333],[115,206,69,-0.4583333333333333],[115,206,70,-0.4583333333333333],[115,206,71,-0.4583333333333333],[115,206,72,-0.4583333333333333],[115,206,73,-0.4583333333333333],[115,206,74,-0.4583333333333333],[115,206,75,-0.4583333333333333],[115,206,76,-0.4583333333333333],[115,206,77,-0.4583333333333333],[115,206,78,-0.4583333333333333],[115,206,79,-0.4583333333333333],[115,207,64,-0.4583333333333333],[115,207,65,-0.4583333333333333],[115,207,66,-0.4583333333333333],[115,207,67,-0.4583333333333333],[115,207,68,-0.4583333333333333],[115,207,69,-0.4583333333333333],[115,207,70,-0.4583333333333333],[115,207,71,-0.4583333333333333],[115,207,72,-0.4583333333333333],[115,207,73,-0.4583333333333333],[115,207,74,-0.4583333333333333],[115,207,75,-0.4583333333333333],[115,207,76,-0.4583333333333333],[115,207,77,-0.4583333333333333],[115,207,78,-0.4583333333333333],[115,207,79,-0.4583333333333333],[115,208,64,-0.4583333333333333],[115,208,65,-0.4583333333333333],[115,208,66,-0.4583333333333333],[115,208,67,-0.4583333333333333],[115,208,68,-0.4583333333333333],[115,208,69,-0.4583333333333333],[115,208,70,-0.4583333333333333],[115,208,71,-0.4583333333333333],[115,208,72,-0.4583333333333333],[115,208,73,-0.4583333333333333],[115,208,74,-0.4583333333333333],[115,208,75,-0.4583333333333333],[115,208,76,-0.4583333333333333],[115,208,77,-0.4583333333333333],[115,208,78,-0.4583333333333333],[115,208,79,-0.4583333333333333],[115,209,64,-0.4583333333333333],[115,209,65,-0.4583333333333333],[115,209,66,-0.4583333333333333],[115,209,67,-0.4583333333333333],[115,209,68,-0.4583333333333333],[115,209,69,-0.4583333333333333],[115,209,70,-0.4583333333333333],[115,209,71,-0.4583333333333333],[115,209,72,-0.4583333333333333],[115,209,73,-0.4583333333333333],[115,209,74,-0.4583333333333333],[115,209,75,-0.4583333333333333],[115,209,76,-0.4583333333333333],[115,209,77,-0.4583333333333333],[115,209,78,-0.4583333333333333],[115,209,79,-0.4583333333333333],[115,210,64,-0.4583333333333333],[115,210,65,-0.4583333333333333],[115,210,66,-0.4583333333333333],[115,210,67,-0.4583333333333333],[115,210,68,-0.4583333333333333],[115,210,69,-0.4583333333333333],[115,210,70,-0.4583333333333333],[115,210,71,-0.4583333333333333],[115,210,72,-0.4583333333333333],[115,210,73,-0.4583333333333333],[115,210,74,-0.4583333333333333],[115,210,75,-0.4583333333333333],[115,210,76,-0.4583333333333333],[115,210,77,-0.4583333333333333],[115,210,78,-0.4583333333333333],[115,210,79,-0.4583333333333333],[115,211,64,-0.4583333333333333],[115,211,65,-0.4583333333333333],[115,211,66,-0.4583333333333333],[115,211,67,-0.4583333333333333],[115,211,68,-0.4583333333333333],[115,211,69,-0.4583333333333333],[115,211,70,-0.4583333333333333],[115,211,71,-0.4583333333333333],[115,211,72,-0.4583333333333333],[115,211,73,-0.4583333333333333],[115,211,74,-0.4583333333333333],[115,211,75,-0.4583333333333333],[115,211,76,-0.4583333333333333],[115,211,77,-0.4583333333333333],[115,211,78,-0.4583333333333333],[115,211,79,-0.4583333333333333],[115,212,64,-0.4583333333333333],[115,212,65,-0.4583333333333333],[115,212,66,-0.4583333333333333],[115,212,67,-0.4583333333333333],[115,212,68,-0.4583333333333333],[115,212,69,-0.4583333333333333],[115,212,70,-0.4583333333333333],[115,212,71,-0.4583333333333333],[115,212,72,-0.4583333333333333],[115,212,73,-0.4583333333333333],[115,212,74,-0.4583333333333333],[115,212,75,-0.4583333333333333],[115,212,76,-0.4583333333333333],[115,212,77,-0.4583333333333333],[115,212,78,-0.4583333333333333],[115,212,79,-0.4583333333333333],[115,213,64,-0.4583333333333333],[115,213,65,-0.4583333333333333],[115,213,66,-0.4583333333333333],[115,213,67,-0.4583333333333333],[115,213,68,-0.4583333333333333],[115,213,69,-0.4583333333333333],[115,213,70,-0.4583333333333333],[115,213,71,-0.4583333333333333],[115,213,72,-0.4583333333333333],[115,213,73,-0.4583333333333333],[115,213,74,-0.4583333333333333],[115,213,75,-0.4583333333333333],[115,213,76,-0.4583333333333333],[115,213,77,-0.4583333333333333],[115,213,78,-0.4583333333333333],[115,213,79,-0.4583333333333333],[115,214,64,-0.4583333333333333],[115,214,65,-0.4583333333333333],[115,214,66,-0.4583333333333333],[115,214,67,-0.4583333333333333],[115,214,68,-0.4583333333333333],[115,214,69,-0.4583333333333333],[115,214,70,-0.4583333333333333],[115,214,71,-0.4583333333333333],[115,214,72,-0.4583333333333333],[115,214,73,-0.4583333333333333],[115,214,74,-0.4583333333333333],[115,214,75,-0.4583333333333333],[115,214,76,-0.4583333333333333],[115,214,77,-0.4583333333333333],[115,214,78,-0.4583333333333333],[115,214,79,-0.4583333333333333],[115,215,64,-0.4583333333333333],[115,215,65,-0.4583333333333333],[115,215,66,-0.4583333333333333],[115,215,67,-0.4583333333333333],[115,215,68,-0.4583333333333333],[115,215,69,-0.4583333333333333],[115,215,70,-0.4583333333333333],[115,215,71,-0.4583333333333333],[115,215,72,-0.4583333333333333],[115,215,73,-0.4583333333333333],[115,215,74,-0.4583333333333333],[115,215,75,-0.4583333333333333],[115,215,76,-0.4583333333333333],[115,215,77,-0.4583333333333333],[115,215,78,-0.4583333333333333],[115,215,79,-0.4583333333333333],[115,216,64,-0.4583333333333333],[115,216,65,-0.4583333333333333],[115,216,66,-0.4583333333333333],[115,216,67,-0.4583333333333333],[115,216,68,-0.4583333333333333],[115,216,69,-0.4583333333333333],[115,216,70,-0.4583333333333333],[115,216,71,-0.4583333333333333],[115,216,72,-0.4583333333333333],[115,216,73,-0.4583333333333333],[115,216,74,-0.4583333333333333],[115,216,75,-0.4583333333333333],[115,216,76,-0.4583333333333333],[115,216,77,-0.4583333333333333],[115,216,78,-0.4583333333333333],[115,216,79,-0.4583333333333333],[115,217,64,-0.4583333333333333],[115,217,65,-0.4583333333333333],[115,217,66,-0.4583333333333333],[115,217,67,-0.4583333333333333],[115,217,68,-0.4583333333333333],[115,217,69,-0.4583333333333333],[115,217,70,-0.4583333333333333],[115,217,71,-0.4583333333333333],[115,217,72,-0.4583333333333333],[115,217,73,-0.4583333333333333],[115,217,74,-0.4583333333333333],[115,217,75,-0.4583333333333333],[115,217,76,-0.4583333333333333],[115,217,77,-0.4583333333333333],[115,217,78,-0.4583333333333333],[115,217,79,-0.4583333333333333],[115,218,64,-0.4583333333333333],[115,218,65,-0.4583333333333333],[115,218,66,-0.4583333333333333],[115,218,67,-0.4583333333333333],[115,218,68,-0.4583333333333333],[115,218,69,-0.4583333333333333],[115,218,70,-0.4583333333333333],[115,218,71,-0.4583333333333333],[115,218,72,-0.4583333333333333],[115,218,73,-0.4583333333333333],[115,218,74,-0.4583333333333333],[115,218,75,-0.4583333333333333],[115,218,76,-0.4583333333333333],[115,218,77,-0.4583333333333333],[115,218,78,-0.4583333333333333],[115,218,79,-0.4583333333333333],[115,219,64,-0.4583333333333333],[115,219,65,-0.4583333333333333],[115,219,66,-0.4583333333333333],[115,219,67,-0.4583333333333333],[115,219,68,-0.4583333333333333],[115,219,69,-0.4583333333333333],[115,219,70,-0.4583333333333333],[115,219,71,-0.4583333333333333],[115,219,72,-0.4583333333333333],[115,219,73,-0.4583333333333333],[115,219,74,-0.4583333333333333],[115,219,75,-0.4583333333333333],[115,219,76,-0.4583333333333333],[115,219,77,-0.4583333333333333],[115,219,78,-0.4583333333333333],[115,219,79,-0.4583333333333333],[115,220,64,-0.4583333333333333],[115,220,65,-0.4583333333333333],[115,220,66,-0.4583333333333333],[115,220,67,-0.4583333333333333],[115,220,68,-0.4583333333333333],[115,220,69,-0.4583333333333333],[115,220,70,-0.4583333333333333],[115,220,71,-0.4583333333333333],[115,220,72,-0.4583333333333333],[115,220,73,-0.4583333333333333],[115,220,74,-0.4583333333333333],[115,220,75,-0.4583333333333333],[115,220,76,-0.4583333333333333],[115,220,77,-0.4583333333333333],[115,220,78,-0.4583333333333333],[115,220,79,-0.4583333333333333],[115,221,64,-0.4583333333333333],[115,221,65,-0.4583333333333333],[115,221,66,-0.4583333333333333],[115,221,67,-0.4583333333333333],[115,221,68,-0.4583333333333333],[115,221,69,-0.4583333333333333],[115,221,70,-0.4583333333333333],[115,221,71,-0.4583333333333333],[115,221,72,-0.4583333333333333],[115,221,73,-0.4583333333333333],[115,221,74,-0.4583333333333333],[115,221,75,-0.4583333333333333],[115,221,76,-0.4583333333333333],[115,221,77,-0.4583333333333333],[115,221,78,-0.4583333333333333],[115,221,79,-0.4583333333333333],[115,222,64,-0.4583333333333333],[115,222,65,-0.4583333333333333],[115,222,66,-0.4583333333333333],[115,222,67,-0.4583333333333333],[115,222,68,-0.4583333333333333],[115,222,69,-0.4583333333333333],[115,222,70,-0.4583333333333333],[115,222,71,-0.4583333333333333],[115,222,72,-0.4583333333333333],[115,222,73,-0.4583333333333333],[115,222,74,-0.4583333333333333],[115,222,75,-0.4583333333333333],[115,222,76,-0.4583333333333333],[115,222,77,-0.4583333333333333],[115,222,78,-0.4583333333333333],[115,222,79,-0.4583333333333333],[115,223,64,-0.4583333333333333],[115,223,65,-0.4583333333333333],[115,223,66,-0.4583333333333333],[115,223,67,-0.4583333333333333],[115,223,68,-0.4583333333333333],[115,223,69,-0.4583333333333333],[115,223,70,-0.4583333333333333],[115,223,71,-0.4583333333333333],[115,223,72,-0.4583333333333333],[115,223,73,-0.4583333333333333],[115,223,74,-0.4583333333333333],[115,223,75,-0.4583333333333333],[115,223,76,-0.4583333333333333],[115,223,77,-0.4583333333333333],[115,223,78,-0.4583333333333333],[115,223,79,-0.4583333333333333],[115,224,64,-0.4583333333333333],[115,224,65,-0.4583333333333333],[115,224,66,-0.4583333333333333],[115,224,67,-0.4583333333333333],[115,224,68,-0.4583333333333333],[115,224,69,-0.4583333333333333],[115,224,70,-0.4583333333333333],[115,224,71,-0.4583333333333333],[115,224,72,-0.4583333333333333],[115,224,73,-0.4583333333333333],[115,224,74,-0.4583333333333333],[115,224,75,-0.4583333333333333],[115,224,76,-0.4583333333333333],[115,224,77,-0.4583333333333333],[115,224,78,-0.4583333333333333],[115,224,79,-0.4583333333333333],[115,225,64,-0.4583333333333333],[115,225,65,-0.4583333333333333],[115,225,66,-0.4583333333333333],[115,225,67,-0.4583333333333333],[115,225,68,-0.4583333333333333],[115,225,69,-0.4583333333333333],[115,225,70,-0.4583333333333333],[115,225,71,-0.4583333333333333],[115,225,72,-0.4583333333333333],[115,225,73,-0.4583333333333333],[115,225,74,-0.4583333333333333],[115,225,75,-0.4583333333333333],[115,225,76,-0.4583333333333333],[115,225,77,-0.4583333333333333],[115,225,78,-0.4583333333333333],[115,225,79,-0.4583333333333333],[115,226,64,-0.4583333333333333],[115,226,65,-0.4583333333333333],[115,226,66,-0.4583333333333333],[115,226,67,-0.4583333333333333],[115,226,68,-0.4583333333333333],[115,226,69,-0.4583333333333333],[115,226,70,-0.4583333333333333],[115,226,71,-0.4583333333333333],[115,226,72,-0.4583333333333333],[115,226,73,-0.4583333333333333],[115,226,74,-0.4583333333333333],[115,226,75,-0.4583333333333333],[115,226,76,-0.4583333333333333],[115,226,77,-0.4583333333333333],[115,226,78,-0.4583333333333333],[115,226,79,-0.4583333333333333],[115,227,64,-0.4583333333333333],[115,227,65,-0.4583333333333333],[115,227,66,-0.4583333333333333],[115,227,67,-0.4583333333333333],[115,227,68,-0.4583333333333333],[115,227,69,-0.4583333333333333],[115,227,70,-0.4583333333333333],[115,227,71,-0.4583333333333333],[115,227,72,-0.4583333333333333],[115,227,73,-0.4583333333333333],[115,227,74,-0.4583333333333333],[115,227,75,-0.4583333333333333],[115,227,76,-0.4583333333333333],[115,227,77,-0.4583333333333333],[115,227,78,-0.4583333333333333],[115,227,79,-0.4583333333333333],[115,228,64,-0.4583333333333333],[115,228,65,-0.4583333333333333],[115,228,66,-0.4583333333333333],[115,228,67,-0.4583333333333333],[115,228,68,-0.4583333333333333],[115,228,69,-0.4583333333333333],[115,228,70,-0.4583333333333333],[115,228,71,-0.4583333333333333],[115,228,72,-0.4583333333333333],[115,228,73,-0.4583333333333333],[115,228,74,-0.4583333333333333],[115,228,75,-0.4583333333333333],[115,228,76,-0.4583333333333333],[115,228,77,-0.4583333333333333],[115,228,78,-0.4583333333333333],[115,228,79,-0.4583333333333333],[115,229,64,-0.4583333333333333],[115,229,65,-0.4583333333333333],[115,229,66,-0.4583333333333333],[115,229,67,-0.4583333333333333],[115,229,68,-0.4583333333333333],[115,229,69,-0.4583333333333333],[115,229,70,-0.4583333333333333],[115,229,71,-0.4583333333333333],[115,229,72,-0.4583333333333333],[115,229,73,-0.4583333333333333],[115,229,74,-0.4583333333333333],[115,229,75,-0.4583333333333333],[115,229,76,-0.4583333333333333],[115,229,77,-0.4583333333333333],[115,229,78,-0.4583333333333333],[115,229,79,-0.4583333333333333],[115,230,64,-0.4583333333333333],[115,230,65,-0.4583333333333333],[115,230,66,-0.4583333333333333],[115,230,67,-0.4583333333333333],[115,230,68,-0.4583333333333333],[115,230,69,-0.4583333333333333],[115,230,70,-0.4583333333333333],[115,230,71,-0.4583333333333333],[115,230,72,-0.4583333333333333],[115,230,73,-0.4583333333333333],[115,230,74,-0.4583333333333333],[115,230,75,-0.4583333333333333],[115,230,76,-0.4583333333333333],[115,230,77,-0.4583333333333333],[115,230,78,-0.4583333333333333],[115,230,79,-0.4583333333333333],[115,231,64,-0.4583333333333333],[115,231,65,-0.4583333333333333],[115,231,66,-0.4583333333333333],[115,231,67,-0.4583333333333333],[115,231,68,-0.4583333333333333],[115,231,69,-0.4583333333333333],[115,231,70,-0.4583333333333333],[115,231,71,-0.4583333333333333],[115,231,72,-0.4583333333333333],[115,231,73,-0.4583333333333333],[115,231,74,-0.4583333333333333],[115,231,75,-0.4583333333333333],[115,231,76,-0.4583333333333333],[115,231,77,-0.4583333333333333],[115,231,78,-0.4583333333333333],[115,231,79,-0.4583333333333333],[115,232,64,-0.4583333333333333],[115,232,65,-0.4583333333333333],[115,232,66,-0.4583333333333333],[115,232,67,-0.4583333333333333],[115,232,68,-0.4583333333333333],[115,232,69,-0.4583333333333333],[115,232,70,-0.4583333333333333],[115,232,71,-0.4583333333333333],[115,232,72,-0.4583333333333333],[115,232,73,-0.4583333333333333],[115,232,74,-0.4583333333333333],[115,232,75,-0.4583333333333333],[115,232,76,-0.4583333333333333],[115,232,77,-0.4583333333333333],[115,232,78,-0.4583333333333333],[115,232,79,-0.4583333333333333],[115,233,64,-0.4583333333333333],[115,233,65,-0.4583333333333333],[115,233,66,-0.4583333333333333],[115,233,67,-0.4583333333333333],[115,233,68,-0.4583333333333333],[115,233,69,-0.4583333333333333],[115,233,70,-0.4583333333333333],[115,233,71,-0.4583333333333333],[115,233,72,-0.4583333333333333],[115,233,73,-0.4583333333333333],[115,233,74,-0.4583333333333333],[115,233,75,-0.4583333333333333],[115,233,76,-0.4583333333333333],[115,233,77,-0.4583333333333333],[115,233,78,-0.4583333333333333],[115,233,79,-0.4583333333333333],[115,234,64,-0.4583333333333333],[115,234,65,-0.4583333333333333],[115,234,66,-0.4583333333333333],[115,234,67,-0.4583333333333333],[115,234,68,-0.4583333333333333],[115,234,69,-0.4583333333333333],[115,234,70,-0.4583333333333333],[115,234,71,-0.4583333333333333],[115,234,72,-0.4583333333333333],[115,234,73,-0.4583333333333333],[115,234,74,-0.4583333333333333],[115,234,75,-0.4583333333333333],[115,234,76,-0.4583333333333333],[115,234,77,-0.4583333333333333],[115,234,78,-0.4583333333333333],[115,234,79,-0.4583333333333333],[115,235,64,-0.4583333333333333],[115,235,65,-0.4583333333333333],[115,235,66,-0.4583333333333333],[115,235,67,-0.4583333333333333],[115,235,68,-0.4583333333333333],[115,235,69,-0.4583333333333333],[115,235,70,-0.4583333333333333],[115,235,71,-0.4583333333333333],[115,235,72,-0.4583333333333333],[115,235,73,-0.4583333333333333],[115,235,74,-0.4583333333333333],[115,235,75,-0.4583333333333333],[115,235,76,-0.4583333333333333],[115,235,77,-0.4583333333333333],[115,235,78,-0.4583333333333333],[115,235,79,-0.4583333333333333],[115,236,64,-0.4583333333333333],[115,236,65,-0.4583333333333333],[115,236,66,-0.4583333333333333],[115,236,67,-0.4583333333333333],[115,236,68,-0.4583333333333333],[115,236,69,-0.4583333333333333],[115,236,70,-0.4583333333333333],[115,236,71,-0.4583333333333333],[115,236,72,-0.4583333333333333],[115,236,73,-0.4583333333333333],[115,236,74,-0.4583333333333333],[115,236,75,-0.4583333333333333],[115,236,76,-0.4583333333333333],[115,236,77,-0.4583333333333333],[115,236,78,-0.4583333333333333],[115,236,79,-0.4583333333333333],[115,237,64,-0.4583333333333333],[115,237,65,-0.4583333333333333],[115,237,66,-0.4583333333333333],[115,237,67,-0.4583333333333333],[115,237,68,-0.4583333333333333],[115,237,69,-0.4583333333333333],[115,237,70,-0.4583333333333333],[115,237,71,-0.4583333333333333],[115,237,72,-0.4583333333333333],[115,237,73,-0.4583333333333333],[115,237,74,-0.4583333333333333],[115,237,75,-0.4583333333333333],[115,237,76,-0.4583333333333333],[115,237,77,-0.4583333333333333],[115,237,78,-0.4583333333333333],[115,237,79,-0.4583333333333333],[115,238,64,-0.4583333333333333],[115,238,65,-0.4583333333333333],[115,238,66,-0.4583333333333333],[115,238,67,-0.4583333333333333],[115,238,68,-0.4583333333333333],[115,238,69,-0.4583333333333333],[115,238,70,-0.4583333333333333],[115,238,71,-0.4583333333333333],[115,238,72,-0.4583333333333333],[115,238,73,-0.4583333333333333],[115,238,74,-0.4583333333333333],[115,238,75,-0.4583333333333333],[115,238,76,-0.4583333333333333],[115,238,77,-0.4583333333333333],[115,238,78,-0.4583333333333333],[115,238,79,-0.4583333333333333],[115,239,64,-0.4583333333333333],[115,239,65,-0.4583333333333333],[115,239,66,-0.4583333333333333],[115,239,67,-0.4583333333333333],[115,239,68,-0.4583333333333333],[115,239,69,-0.4583333333333333],[115,239,70,-0.4583333333333333],[115,239,71,-0.4583333333333333],[115,239,72,-0.4583333333333333],[115,239,73,-0.4583333333333333],[115,239,74,-0.4583333333333333],[115,239,75,-0.4583333333333333],[115,239,76,-0.4583333333333333],[115,239,77,-0.4583333333333333],[115,239,78,-0.4583333333333333],[115,239,79,-0.4583333333333333],[115,240,64,-0.4583333333333333],[115,240,65,-0.4583333333333333],[115,240,66,-0.4583333333333333],[115,240,67,-0.4583333333333333],[115,240,68,-0.4583333333333333],[115,240,69,-0.4583333333333333],[115,240,70,-0.4583333333333333],[115,240,71,-0.4583333333333333],[115,240,72,-0.4583333333333333],[115,240,73,-0.4583333333333333],[115,240,74,-0.4583333333333333],[115,240,75,-0.4583333333333333],[115,240,76,-0.4583333333333333],[115,240,77,-0.4583333333333333],[115,240,78,-0.4583333333333333],[115,240,79,-0.4583333333333333],[115,241,64,-0.4583333333333333],[115,241,65,-0.4583333333333333],[115,241,66,-0.4583333333333333],[115,241,67,-0.4583333333333333],[115,241,68,-0.4583333333333333],[115,241,69,-0.4583333333333333],[115,241,70,-0.4583333333333333],[115,241,71,-0.4583333333333333],[115,241,72,-0.4583333333333333],[115,241,73,-0.4583333333333333],[115,241,74,-0.4583333333333333],[115,241,75,-0.4583333333333333],[115,241,76,-0.4583333333333333],[115,241,77,-0.4583333333333333],[115,241,78,-0.4583333333333333],[115,241,79,-0.4583333333333333],[115,242,64,-0.4583333333333333],[115,242,65,-0.4583333333333333],[115,242,66,-0.4583333333333333],[115,242,67,-0.4583333333333333],[115,242,68,-0.4583333333333333],[115,242,69,-0.4583333333333333],[115,242,70,-0.4583333333333333],[115,242,71,-0.4583333333333333],[115,242,72,-0.4583333333333333],[115,242,73,-0.4583333333333333],[115,242,74,-0.4583333333333333],[115,242,75,-0.4583333333333333],[115,242,76,-0.4583333333333333],[115,242,77,-0.4583333333333333],[115,242,78,-0.4583333333333333],[115,242,79,-0.4583333333333333],[115,243,64,-0.4583333333333333],[115,243,65,-0.4583333333333333],[115,243,66,-0.4583333333333333],[115,243,67,-0.4583333333333333],[115,243,68,-0.4583333333333333],[115,243,69,-0.4583333333333333],[115,243,70,-0.4583333333333333],[115,243,71,-0.4583333333333333],[115,243,72,-0.4583333333333333],[115,243,73,-0.4583333333333333],[115,243,74,-0.4583333333333333],[115,243,75,-0.4583333333333333],[115,243,76,-0.4583333333333333],[115,243,77,-0.4583333333333333],[115,243,78,-0.4583333333333333],[115,243,79,-0.4583333333333333],[115,244,64,-0.4583333333333333],[115,244,65,-0.4583333333333333],[115,244,66,-0.4583333333333333],[115,244,67,-0.4583333333333333],[115,244,68,-0.4583333333333333],[115,244,69,-0.4583333333333333],[115,244,70,-0.4583333333333333],[115,244,71,-0.4583333333333333],[115,244,72,-0.4583333333333333],[115,244,73,-0.4583333333333333],[115,244,74,-0.4583333333333333],[115,244,75,-0.4583333333333333],[115,244,76,-0.4583333333333333],[115,244,77,-0.4583333333333333],[115,244,78,-0.4583333333333333],[115,244,79,-0.4583333333333333],[115,245,64,-0.4583333333333333],[115,245,65,-0.4583333333333333],[115,245,66,-0.4583333333333333],[115,245,67,-0.4583333333333333],[115,245,68,-0.4583333333333333],[115,245,69,-0.4583333333333333],[115,245,70,-0.4583333333333333],[115,245,71,-0.4583333333333333],[115,245,72,-0.4583333333333333],[115,245,73,-0.4583333333333333],[115,245,74,-0.4583333333333333],[115,245,75,-0.4583333333333333],[115,245,76,-0.4583333333333333],[115,245,77,-0.4583333333333333],[115,245,78,-0.4583333333333333],[115,245,79,-0.4583333333333333],[115,246,64,-0.4583333333333333],[115,246,65,-0.4583333333333333],[115,246,66,-0.4583333333333333],[115,246,67,-0.4583333333333333],[115,246,68,-0.4583333333333333],[115,246,69,-0.4583333333333333],[115,246,70,-0.4583333333333333],[115,246,71,-0.4583333333333333],[115,246,72,-0.4583333333333333],[115,246,73,-0.4583333333333333],[115,246,74,-0.4583333333333333],[115,246,75,-0.4583333333333333],[115,246,76,-0.4583333333333333],[115,246,77,-0.4583333333333333],[115,246,78,-0.4583333333333333],[115,246,79,-0.4583333333333333],[115,247,64,-0.4583333333333333],[115,247,65,-0.4583333333333333],[115,247,66,-0.4583333333333333],[115,247,67,-0.4583333333333333],[115,247,68,-0.4583333333333333],[115,247,69,-0.4583333333333333],[115,247,70,-0.4583333333333333],[115,247,71,-0.4583333333333333],[115,247,72,-0.4583333333333333],[115,247,73,-0.4583333333333333],[115,247,74,-0.4583333333333333],[115,247,75,-0.4583333333333333],[115,247,76,-0.4583333333333333],[115,247,77,-0.4583333333333333],[115,247,78,-0.4583333333333333],[115,247,79,-0.4583333333333333],[115,248,64,-0.4583333333333333],[115,248,65,-0.4583333333333333],[115,248,66,-0.4583333333333333],[115,248,67,-0.4583333333333333],[115,248,68,-0.4583333333333333],[115,248,69,-0.4583333333333333],[115,248,70,-0.4583333333333333],[115,248,71,-0.4583333333333333],[115,248,72,-0.4583333333333333],[115,248,73,-0.4583333333333333],[115,248,74,-0.4583333333333333],[115,248,75,-0.4583333333333333],[115,248,76,-0.4583333333333333],[115,248,77,-0.4583333333333333],[115,248,78,-0.4583333333333333],[115,248,79,-0.4583333333333333],[115,249,64,-0.4583333333333333],[115,249,65,-0.4583333333333333],[115,249,66,-0.4583333333333333],[115,249,67,-0.4583333333333333],[115,249,68,-0.4583333333333333],[115,249,69,-0.4583333333333333],[115,249,70,-0.4583333333333333],[115,249,71,-0.4583333333333333],[115,249,72,-0.4583333333333333],[115,249,73,-0.4583333333333333],[115,249,74,-0.4583333333333333],[115,249,75,-0.4583333333333333],[115,249,76,-0.4583333333333333],[115,249,77,-0.4583333333333333],[115,249,78,-0.4583333333333333],[115,249,79,-0.4583333333333333],[115,250,64,-0.4583333333333333],[115,250,65,-0.4583333333333333],[115,250,66,-0.4583333333333333],[115,250,67,-0.4583333333333333],[115,250,68,-0.4583333333333333],[115,250,69,-0.4583333333333333],[115,250,70,-0.4583333333333333],[115,250,71,-0.4583333333333333],[115,250,72,-0.4583333333333333],[115,250,73,-0.4583333333333333],[115,250,74,-0.4583333333333333],[115,250,75,-0.4583333333333333],[115,250,76,-0.4583333333333333],[115,250,77,-0.4583333333333333],[115,250,78,-0.4583333333333333],[115,250,79,-0.4583333333333333],[115,251,64,-0.4583333333333333],[115,251,65,-0.4583333333333333],[115,251,66,-0.4583333333333333],[115,251,67,-0.4583333333333333],[115,251,68,-0.4583333333333333],[115,251,69,-0.4583333333333333],[115,251,70,-0.4583333333333333],[115,251,71,-0.4583333333333333],[115,251,72,-0.4583333333333333],[115,251,73,-0.4583333333333333],[115,251,74,-0.4583333333333333],[115,251,75,-0.4583333333333333],[115,251,76,-0.4583333333333333],[115,251,77,-0.4583333333333333],[115,251,78,-0.4583333333333333],[115,251,79,-0.4583333333333333],[115,252,64,-0.4583333333333333],[115,252,65,-0.4583333333333333],[115,252,66,-0.4583333333333333],[115,252,67,-0.4583333333333333],[115,252,68,-0.4583333333333333],[115,252,69,-0.4583333333333333],[115,252,70,-0.4583333333333333],[115,252,71,-0.4583333333333333],[115,252,72,-0.4583333333333333],[115,252,73,-0.4583333333333333],[115,252,74,-0.4583333333333333],[115,252,75,-0.4583333333333333],[115,252,76,-0.4583333333333333],[115,252,77,-0.4583333333333333],[115,252,78,-0.4583333333333333],[115,252,79,-0.4583333333333333],[115,253,64,-0.4583333333333333],[115,253,65,-0.4583333333333333],[115,253,66,-0.4583333333333333],[115,253,67,-0.4583333333333333],[115,253,68,-0.4583333333333333],[115,253,69,-0.4583333333333333],[115,253,70,-0.4583333333333333],[115,253,71,-0.4583333333333333],[115,253,72,-0.4583333333333333],[115,253,73,-0.4583333333333333],[115,253,74,-0.4583333333333333],[115,253,75,-0.4583333333333333],[115,253,76,-0.4583333333333333],[115,253,77,-0.4583333333333333],[115,253,78,-0.4583333333333333],[115,253,79,-0.4583333333333333],[115,254,64,-0.37062617773732603],[115,254,65,-0.3704730096071128],[115,254,66,-0.36981197759157586],[115,254,67,-0.3691143586122432],[115,254,68,-0.3684204516060972],[115,254,69,-0.36785253869810064],[115,254,70,-0.36726123488427065],[115,254,71,-0.3667217384917432],[115,254,72,-0.3659877055132401],[115,254,73,-0.3654685485947964],[115,254,74,-0.36497391878084395],[115,254,75,-0.364964611124003],[115,254,76,-0.3656950756686308],[115,254,77,-0.36679042702566717],[115,254,78,-0.3677748281075728],[115,254,79,-0.36899596809741547],[115,255,64,-0.20560870539463125],[115,255,65,-0.20550005460255916],[115,255,66,-0.2051609689686909],[115,255,67,-0.20478250403579812],[115,255,68,-0.20440109262824283],[115,255,69,-0.20406009965991084],[115,255,70,-0.20370944937849741],[115,255,71,-0.20342225641408196],[115,255,72,-0.20306512175543848],[115,255,73,-0.20275404024240593],[115,255,74,-0.20250516770870577],[115,255,75,-0.20246468863504827],[115,255,76,-0.2028913023920435],[115,255,77,-0.20348017567988289],[115,255,78,-0.20384210209833753],[115,255,79,-0.2047045814551895],[115,256,64,-0.02499479166666667],[115,256,65,-0.02499479166666667],[115,256,66,-0.02499479166666667],[115,256,67,-0.02499479166666667],[115,256,68,-0.02499479166666667],[115,256,69,-0.02499479166666667],[115,256,70,-0.02499479166666667],[115,256,71,-0.02499479166666667],[115,256,72,-0.02499479166666667],[115,256,73,-0.02499479166666667],[115,256,74,-0.02499479166666667],[115,256,75,-0.02499479166666667],[115,256,76,-0.02499479166666667],[115,256,77,-0.02499479166666667],[115,256,78,-0.02499479166666667],[115,256,79,-0.02499479166666667],[115,257,64,-0.02499479166666667],[115,257,65,-0.02499479166666667],[115,257,66,-0.02499479166666667],[115,257,67,-0.02499479166666667],[115,257,68,-0.02499479166666667],[115,257,69,-0.02499479166666667],[115,257,70,-0.02499479166666667],[115,257,71,-0.02499479166666667],[115,257,72,-0.02499479166666667],[115,257,73,-0.02499479166666667],[115,257,74,-0.02499479166666667],[115,257,75,-0.02499479166666667],[115,257,76,-0.02499479166666667],[115,257,77,-0.02499479166666667],[115,257,78,-0.02499479166666667],[115,257,79,-0.02499479166666667],[115,258,64,-0.02499479166666667],[115,258,65,-0.02499479166666667],[115,258,66,-0.02499479166666667],[115,258,67,-0.02499479166666667],[115,258,68,-0.02499479166666667],[115,258,69,-0.02499479166666667],[115,258,70,-0.02499479166666667],[115,258,71,-0.02499479166666667],[115,258,72,-0.02499479166666667],[115,258,73,-0.02499479166666667],[115,258,74,-0.02499479166666667],[115,258,75,-0.02499479166666667],[115,258,76,-0.02499479166666667],[115,258,77,-0.02499479166666667],[115,258,78,-0.02499479166666667],[115,258,79,-0.02499479166666667],[115,259,64,-0.02499479166666667],[115,259,65,-0.02499479166666667],[115,259,66,-0.02499479166666667],[115,259,67,-0.02499479166666667],[115,259,68,-0.02499479166666667],[115,259,69,-0.02499479166666667],[115,259,70,-0.02499479166666667],[115,259,71,-0.02499479166666667],[115,259,72,-0.02499479166666667],[115,259,73,-0.02499479166666667],[115,259,74,-0.02499479166666667],[115,259,75,-0.02499479166666667],[115,259,76,-0.02499479166666667],[115,259,77,-0.02499479166666667],[115,259,78,-0.02499479166666667],[115,259,79,-0.02499479166666667],[115,260,64,-0.02499479166666667],[115,260,65,-0.02499479166666667],[115,260,66,-0.02499479166666667],[115,260,67,-0.02499479166666667],[115,260,68,-0.02499479166666667],[115,260,69,-0.02499479166666667],[115,260,70,-0.02499479166666667],[115,260,71,-0.02499479166666667],[115,260,72,-0.02499479166666667],[115,260,73,-0.02499479166666667],[115,260,74,-0.02499479166666667],[115,260,75,-0.02499479166666667],[115,260,76,-0.02499479166666667],[115,260,77,-0.02499479166666667],[115,260,78,-0.02499479166666667],[115,260,79,-0.02499479166666667],[115,261,64,-0.02499479166666667],[115,261,65,-0.02499479166666667],[115,261,66,-0.02499479166666667],[115,261,67,-0.02499479166666667],[115,261,68,-0.02499479166666667],[115,261,69,-0.02499479166666667],[115,261,70,-0.02499479166666667],[115,261,71,-0.02499479166666667],[115,261,72,-0.02499479166666667],[115,261,73,-0.02499479166666667],[115,261,74,-0.02499479166666667],[115,261,75,-0.02499479166666667],[115,261,76,-0.02499479166666667],[115,261,77,-0.02499479166666667],[115,261,78,-0.02499479166666667],[115,261,79,-0.02499479166666667],[115,262,64,-0.02499479166666667],[115,262,65,-0.02499479166666667],[115,262,66,-0.02499479166666667],[115,262,67,-0.02499479166666667],[115,262,68,-0.02499479166666667],[115,262,69,-0.02499479166666667],[115,262,70,-0.02499479166666667],[115,262,71,-0.02499479166666667],[115,262,72,-0.02499479166666667],[115,262,73,-0.02499479166666667],[115,262,74,-0.02499479166666667],[115,262,75,-0.02499479166666667],[115,262,76,-0.02499479166666667],[115,262,77,-0.02499479166666667],[115,262,78,-0.02499479166666667],[115,262,79,-0.02499479166666667],[115,263,64,-0.02499479166666667],[115,263,65,-0.02499479166666667],[115,263,66,-0.02499479166666667],[115,263,67,-0.02499479166666667],[115,263,68,-0.02499479166666667],[115,263,69,-0.02499479166666667],[115,263,70,-0.02499479166666667],[115,263,71,-0.02499479166666667],[115,263,72,-0.02499479166666667],[115,263,73,-0.02499479166666667],[115,263,74,-0.02499479166666667],[115,263,75,-0.02499479166666667],[115,263,76,-0.02499479166666667],[115,263,77,-0.02499479166666667],[115,263,78,-0.02499479166666667],[115,263,79,-0.02499479166666667],[115,264,64,-0.02499479166666667],[115,264,65,-0.02499479166666667],[115,264,66,-0.02499479166666667],[115,264,67,-0.02499479166666667],[115,264,68,-0.02499479166666667],[115,264,69,-0.02499479166666667],[115,264,70,-0.02499479166666667],[115,264,71,-0.02499479166666667],[115,264,72,-0.02499479166666667],[115,264,73,-0.02499479166666667],[115,264,74,-0.02499479166666667],[115,264,75,-0.02499479166666667],[115,264,76,-0.02499479166666667],[115,264,77,-0.02499479166666667],[115,264,78,-0.02499479166666667],[115,264,79,-0.02499479166666667],[115,265,64,-0.02499479166666667],[115,265,65,-0.02499479166666667],[115,265,66,-0.02499479166666667],[115,265,67,-0.02499479166666667],[115,265,68,-0.02499479166666667],[115,265,69,-0.02499479166666667],[115,265,70,-0.02499479166666667],[115,265,71,-0.02499479166666667],[115,265,72,-0.02499479166666667],[115,265,73,-0.02499479166666667],[115,265,74,-0.02499479166666667],[115,265,75,-0.02499479166666667],[115,265,76,-0.02499479166666667],[115,265,77,-0.02499479166666667],[115,265,78,-0.02499479166666667],[115,265,79,-0.02499479166666667],[115,266,64,-0.02499479166666667],[115,266,65,-0.02499479166666667],[115,266,66,-0.02499479166666667],[115,266,67,-0.02499479166666667],[115,266,68,-0.02499479166666667],[115,266,69,-0.02499479166666667],[115,266,70,-0.02499479166666667],[115,266,71,-0.02499479166666667],[115,266,72,-0.02499479166666667],[115,266,73,-0.02499479166666667],[115,266,74,-0.02499479166666667],[115,266,75,-0.02499479166666667],[115,266,76,-0.02499479166666667],[115,266,77,-0.02499479166666667],[115,266,78,-0.02499479166666667],[115,266,79,-0.02499479166666667],[115,267,64,-0.02499479166666667],[115,267,65,-0.02499479166666667],[115,267,66,-0.02499479166666667],[115,267,67,-0.02499479166666667],[115,267,68,-0.02499479166666667],[115,267,69,-0.02499479166666667],[115,267,70,-0.02499479166666667],[115,267,71,-0.02499479166666667],[115,267,72,-0.02499479166666667],[115,267,73,-0.02499479166666667],[115,267,74,-0.02499479166666667],[115,267,75,-0.02499479166666667],[115,267,76,-0.02499479166666667],[115,267,77,-0.02499479166666667],[115,267,78,-0.02499479166666667],[115,267,79,-0.02499479166666667],[115,268,64,-0.02499479166666667],[115,268,65,-0.02499479166666667],[115,268,66,-0.02499479166666667],[115,268,67,-0.02499479166666667],[115,268,68,-0.02499479166666667],[115,268,69,-0.02499479166666667],[115,268,70,-0.02499479166666667],[115,268,71,-0.02499479166666667],[115,268,72,-0.02499479166666667],[115,268,73,-0.02499479166666667],[115,268,74,-0.02499479166666667],[115,268,75,-0.02499479166666667],[115,268,76,-0.02499479166666667],[115,268,77,-0.02499479166666667],[115,268,78,-0.02499479166666667],[115,268,79,-0.02499479166666667],[115,269,64,-0.02499479166666667],[115,269,65,-0.02499479166666667],[115,269,66,-0.02499479166666667],[115,269,67,-0.02499479166666667],[115,269,68,-0.02499479166666667],[115,269,69,-0.02499479166666667],[115,269,70,-0.02499479166666667],[115,269,71,-0.02499479166666667],[115,269,72,-0.02499479166666667],[115,269,73,-0.02499479166666667],[115,269,74,-0.02499479166666667],[115,269,75,-0.02499479166666667],[115,269,76,-0.02499479166666667],[115,269,77,-0.02499479166666667],[115,269,78,-0.02499479166666667],[115,269,79,-0.02499479166666667],[115,270,64,-0.02499479166666667],[115,270,65,-0.02499479166666667],[115,270,66,-0.02499479166666667],[115,270,67,-0.02499479166666667],[115,270,68,-0.02499479166666667],[115,270,69,-0.02499479166666667],[115,270,70,-0.02499479166666667],[115,270,71,-0.02499479166666667],[115,270,72,-0.02499479166666667],[115,270,73,-0.02499479166666667],[115,270,74,-0.02499479166666667],[115,270,75,-0.02499479166666667],[115,270,76,-0.02499479166666667],[115,270,77,-0.02499479166666667],[115,270,78,-0.02499479166666667],[115,270,79,-0.02499479166666667],[115,271,64,-0.02499479166666667],[115,271,65,-0.02499479166666667],[115,271,66,-0.02499479166666667],[115,271,67,-0.02499479166666667],[115,271,68,-0.02499479166666667],[115,271,69,-0.02499479166666667],[115,271,70,-0.02499479166666667],[115,271,71,-0.02499479166666667],[115,271,72,-0.02499479166666667],[115,271,73,-0.02499479166666667],[115,271,74,-0.02499479166666667],[115,271,75,-0.02499479166666667],[115,271,76,-0.02499479166666667],[115,271,77,-0.02499479166666667],[115,271,78,-0.02499479166666667],[115,271,79,-0.02499479166666667],[115,272,64,-0.02499479166666667],[115,272,65,-0.02499479166666667],[115,272,66,-0.02499479166666667],[115,272,67,-0.02499479166666667],[115,272,68,-0.02499479166666667],[115,272,69,-0.02499479166666667],[115,272,70,-0.02499479166666667],[115,272,71,-0.02499479166666667],[115,272,72,-0.02499479166666667],[115,272,73,-0.02499479166666667],[115,272,74,-0.02499479166666667],[115,272,75,-0.02499479166666667],[115,272,76,-0.02499479166666667],[115,272,77,-0.02499479166666667],[115,272,78,-0.02499479166666667],[115,272,79,-0.02499479166666667],[115,273,64,-0.02499479166666667],[115,273,65,-0.02499479166666667],[115,273,66,-0.02499479166666667],[115,273,67,-0.02499479166666667],[115,273,68,-0.02499479166666667],[115,273,69,-0.02499479166666667],[115,273,70,-0.02499479166666667],[115,273,71,-0.02499479166666667],[115,273,72,-0.02499479166666667],[115,273,73,-0.02499479166666667],[115,273,74,-0.02499479166666667],[115,273,75,-0.02499479166666667],[115,273,76,-0.02499479166666667],[115,273,77,-0.02499479166666667],[115,273,78,-0.02499479166666667],[115,273,79,-0.02499479166666667],[115,274,64,-0.02499479166666667],[115,274,65,-0.02499479166666667],[115,274,66,-0.02499479166666667],[115,274,67,-0.02499479166666667],[115,274,68,-0.02499479166666667],[115,274,69,-0.02499479166666667],[115,274,70,-0.02499479166666667],[115,274,71,-0.02499479166666667],[115,274,72,-0.02499479166666667],[115,274,73,-0.02499479166666667],[115,274,74,-0.02499479166666667],[115,274,75,-0.02499479166666667],[115,274,76,-0.02499479166666667],[115,274,77,-0.02499479166666667],[115,274,78,-0.02499479166666667],[115,274,79,-0.02499479166666667],[115,275,64,-0.02499479166666667],[115,275,65,-0.02499479166666667],[115,275,66,-0.02499479166666667],[115,275,67,-0.02499479166666667],[115,275,68,-0.02499479166666667],[115,275,69,-0.02499479166666667],[115,275,70,-0.02499479166666667],[115,275,71,-0.02499479166666667],[115,275,72,-0.02499479166666667],[115,275,73,-0.02499479166666667],[115,275,74,-0.02499479166666667],[115,275,75,-0.02499479166666667],[115,275,76,-0.02499479166666667],[115,275,77,-0.02499479166666667],[115,275,78,-0.02499479166666667],[115,275,79,-0.02499479166666667],[115,276,64,-0.02499479166666667],[115,276,65,-0.02499479166666667],[115,276,66,-0.02499479166666667],[115,276,67,-0.02499479166666667],[115,276,68,-0.02499479166666667],[115,276,69,-0.02499479166666667],[115,276,70,-0.02499479166666667],[115,276,71,-0.02499479166666667],[115,276,72,-0.02499479166666667],[115,276,73,-0.02499479166666667],[115,276,74,-0.02499479166666667],[115,276,75,-0.02499479166666667],[115,276,76,-0.02499479166666667],[115,276,77,-0.02499479166666667],[115,276,78,-0.02499479166666667],[115,276,79,-0.02499479166666667],[115,277,64,-0.02499479166666667],[115,277,65,-0.02499479166666667],[115,277,66,-0.02499479166666667],[115,277,67,-0.02499479166666667],[115,277,68,-0.02499479166666667],[115,277,69,-0.02499479166666667],[115,277,70,-0.02499479166666667],[115,277,71,-0.02499479166666667],[115,277,72,-0.02499479166666667],[115,277,73,-0.02499479166666667],[115,277,74,-0.02499479166666667],[115,277,75,-0.02499479166666667],[115,277,76,-0.02499479166666667],[115,277,77,-0.02499479166666667],[115,277,78,-0.02499479166666667],[115,277,79,-0.02499479166666667],[115,278,64,-0.02499479166666667],[115,278,65,-0.02499479166666667],[115,278,66,-0.02499479166666667],[115,278,67,-0.02499479166666667],[115,278,68,-0.02499479166666667],[115,278,69,-0.02499479166666667],[115,278,70,-0.02499479166666667],[115,278,71,-0.02499479166666667],[115,278,72,-0.02499479166666667],[115,278,73,-0.02499479166666667],[115,278,74,-0.02499479166666667],[115,278,75,-0.02499479166666667],[115,278,76,-0.02499479166666667],[115,278,77,-0.02499479166666667],[115,278,78,-0.02499479166666667],[115,278,79,-0.02499479166666667],[115,279,64,-0.02499479166666667],[115,279,65,-0.02499479166666667],[115,279,66,-0.02499479166666667],[115,279,67,-0.02499479166666667],[115,279,68,-0.02499479166666667],[115,279,69,-0.02499479166666667],[115,279,70,-0.02499479166666667],[115,279,71,-0.02499479166666667],[115,279,72,-0.02499479166666667],[115,279,73,-0.02499479166666667],[115,279,74,-0.02499479166666667],[115,279,75,-0.02499479166666667],[115,279,76,-0.02499479166666667],[115,279,77,-0.02499479166666667],[115,279,78,-0.02499479166666667],[115,279,79,-0.02499479166666667],[115,280,64,-0.02499479166666667],[115,280,65,-0.02499479166666667],[115,280,66,-0.02499479166666667],[115,280,67,-0.02499479166666667],[115,280,68,-0.02499479166666667],[115,280,69,-0.02499479166666667],[115,280,70,-0.02499479166666667],[115,280,71,-0.02499479166666667],[115,280,72,-0.02499479166666667],[115,280,73,-0.02499479166666667],[115,280,74,-0.02499479166666667],[115,280,75,-0.02499479166666667],[115,280,76,-0.02499479166666667],[115,280,77,-0.02499479166666667],[115,280,78,-0.02499479166666667],[115,280,79,-0.02499479166666667],[115,281,64,-0.02499479166666667],[115,281,65,-0.02499479166666667],[115,281,66,-0.02499479166666667],[115,281,67,-0.02499479166666667],[115,281,68,-0.02499479166666667],[115,281,69,-0.02499479166666667],[115,281,70,-0.02499479166666667],[115,281,71,-0.02499479166666667],[115,281,72,-0.02499479166666667],[115,281,73,-0.02499479166666667],[115,281,74,-0.02499479166666667],[115,281,75,-0.02499479166666667],[115,281,76,-0.02499479166666667],[115,281,77,-0.02499479166666667],[115,281,78,-0.02499479166666667],[115,281,79,-0.02499479166666667],[115,282,64,-0.02499479166666667],[115,282,65,-0.02499479166666667],[115,282,66,-0.02499479166666667],[115,282,67,-0.02499479166666667],[115,282,68,-0.02499479166666667],[115,282,69,-0.02499479166666667],[115,282,70,-0.02499479166666667],[115,282,71,-0.02499479166666667],[115,282,72,-0.02499479166666667],[115,282,73,-0.02499479166666667],[115,282,74,-0.02499479166666667],[115,282,75,-0.02499479166666667],[115,282,76,-0.02499479166666667],[115,282,77,-0.02499479166666667],[115,282,78,-0.02499479166666667],[115,282,79,-0.02499479166666667],[115,283,64,-0.02499479166666667],[115,283,65,-0.02499479166666667],[115,283,66,-0.02499479166666667],[115,283,67,-0.02499479166666667],[115,283,68,-0.02499479166666667],[115,283,69,-0.02499479166666667],[115,283,70,-0.02499479166666667],[115,283,71,-0.02499479166666667],[115,283,72,-0.02499479166666667],[115,283,73,-0.02499479166666667],[115,283,74,-0.02499479166666667],[115,283,75,-0.02499479166666667],[115,283,76,-0.02499479166666667],[115,283,77,-0.02499479166666667],[115,283,78,-0.02499479166666667],[115,283,79,-0.02499479166666667],[115,284,64,-0.02499479166666667],[115,284,65,-0.02499479166666667],[115,284,66,-0.02499479166666667],[115,284,67,-0.02499479166666667],[115,284,68,-0.02499479166666667],[115,284,69,-0.02499479166666667],[115,284,70,-0.02499479166666667],[115,284,71,-0.02499479166666667],[115,284,72,-0.02499479166666667],[115,284,73,-0.02499479166666667],[115,284,74,-0.02499479166666667],[115,284,75,-0.02499479166666667],[115,284,76,-0.02499479166666667],[115,284,77,-0.02499479166666667],[115,284,78,-0.02499479166666667],[115,284,79,-0.02499479166666667],[115,285,64,-0.02499479166666667],[115,285,65,-0.02499479166666667],[115,285,66,-0.02499479166666667],[115,285,67,-0.02499479166666667],[115,285,68,-0.02499479166666667],[115,285,69,-0.02499479166666667],[115,285,70,-0.02499479166666667],[115,285,71,-0.02499479166666667],[115,285,72,-0.02499479166666667],[115,285,73,-0.02499479166666667],[115,285,74,-0.02499479166666667],[115,285,75,-0.02499479166666667],[115,285,76,-0.02499479166666667],[115,285,77,-0.02499479166666667],[115,285,78,-0.02499479166666667],[115,285,79,-0.02499479166666667],[115,286,64,-0.02499479166666667],[115,286,65,-0.02499479166666667],[115,286,66,-0.02499479166666667],[115,286,67,-0.02499479166666667],[115,286,68,-0.02499479166666667],[115,286,69,-0.02499479166666667],[115,286,70,-0.02499479166666667],[115,286,71,-0.02499479166666667],[115,286,72,-0.02499479166666667],[115,286,73,-0.02499479166666667],[115,286,74,-0.02499479166666667],[115,286,75,-0.02499479166666667],[115,286,76,-0.02499479166666667],[115,286,77,-0.02499479166666667],[115,286,78,-0.02499479166666667],[115,286,79,-0.02499479166666667],[115,287,64,-0.02499479166666667],[115,287,65,-0.02499479166666667],[115,287,66,-0.02499479166666667],[115,287,67,-0.02499479166666667],[115,287,68,-0.02499479166666667],[115,287,69,-0.02499479166666667],[115,287,70,-0.02499479166666667],[115,287,71,-0.02499479166666667],[115,287,72,-0.02499479166666667],[115,287,73,-0.02499479166666667],[115,287,74,-0.02499479166666667],[115,287,75,-0.02499479166666667],[115,287,76,-0.02499479166666667],[115,287,77,-0.02499479166666667],[115,287,78,-0.02499479166666667],[115,287,79,-0.02499479166666667],[115,288,64,-0.02499479166666667],[115,288,65,-0.02499479166666667],[115,288,66,-0.02499479166666667],[115,288,67,-0.02499479166666667],[115,288,68,-0.02499479166666667],[115,288,69,-0.02499479166666667],[115,288,70,-0.02499479166666667],[115,288,71,-0.02499479166666667],[115,288,72,-0.02499479166666667],[115,288,73,-0.02499479166666667],[115,288,74,-0.02499479166666667],[115,288,75,-0.02499479166666667],[115,288,76,-0.02499479166666667],[115,288,77,-0.02499479166666667],[115,288,78,-0.02499479166666667],[115,288,79,-0.02499479166666667],[115,289,64,-0.02499479166666667],[115,289,65,-0.02499479166666667],[115,289,66,-0.02499479166666667],[115,289,67,-0.02499479166666667],[115,289,68,-0.02499479166666667],[115,289,69,-0.02499479166666667],[115,289,70,-0.02499479166666667],[115,289,71,-0.02499479166666667],[115,289,72,-0.02499479166666667],[115,289,73,-0.02499479166666667],[115,289,74,-0.02499479166666667],[115,289,75,-0.02499479166666667],[115,289,76,-0.02499479166666667],[115,289,77,-0.02499479166666667],[115,289,78,-0.02499479166666667],[115,289,79,-0.02499479166666667],[115,290,64,-0.02499479166666667],[115,290,65,-0.02499479166666667],[115,290,66,-0.02499479166666667],[115,290,67,-0.02499479166666667],[115,290,68,-0.02499479166666667],[115,290,69,-0.02499479166666667],[115,290,70,-0.02499479166666667],[115,290,71,-0.02499479166666667],[115,290,72,-0.02499479166666667],[115,290,73,-0.02499479166666667],[115,290,74,-0.02499479166666667],[115,290,75,-0.02499479166666667],[115,290,76,-0.02499479166666667],[115,290,77,-0.02499479166666667],[115,290,78,-0.02499479166666667],[115,290,79,-0.02499479166666667],[115,291,64,-0.02499479166666667],[115,291,65,-0.02499479166666667],[115,291,66,-0.02499479166666667],[115,291,67,-0.02499479166666667],[115,291,68,-0.02499479166666667],[115,291,69,-0.02499479166666667],[115,291,70,-0.02499479166666667],[115,291,71,-0.02499479166666667],[115,291,72,-0.02499479166666667],[115,291,73,-0.02499479166666667],[115,291,74,-0.02499479166666667],[115,291,75,-0.02499479166666667],[115,291,76,-0.02499479166666667],[115,291,77,-0.02499479166666667],[115,291,78,-0.02499479166666667],[115,291,79,-0.02499479166666667],[115,292,64,-0.02499479166666667],[115,292,65,-0.02499479166666667],[115,292,66,-0.02499479166666667],[115,292,67,-0.02499479166666667],[115,292,68,-0.02499479166666667],[115,292,69,-0.02499479166666667],[115,292,70,-0.02499479166666667],[115,292,71,-0.02499479166666667],[115,292,72,-0.02499479166666667],[115,292,73,-0.02499479166666667],[115,292,74,-0.02499479166666667],[115,292,75,-0.02499479166666667],[115,292,76,-0.02499479166666667],[115,292,77,-0.02499479166666667],[115,292,78,-0.02499479166666667],[115,292,79,-0.02499479166666667],[115,293,64,-0.02499479166666667],[115,293,65,-0.02499479166666667],[115,293,66,-0.02499479166666667],[115,293,67,-0.02499479166666667],[115,293,68,-0.02499479166666667],[115,293,69,-0.02499479166666667],[115,293,70,-0.02499479166666667],[115,293,71,-0.02499479166666667],[115,293,72,-0.02499479166666667],[115,293,73,-0.02499479166666667],[115,293,74,-0.02499479166666667],[115,293,75,-0.02499479166666667],[115,293,76,-0.02499479166666667],[115,293,77,-0.02499479166666667],[115,293,78,-0.02499479166666667],[115,293,79,-0.02499479166666667],[115,294,64,-0.02499479166666667],[115,294,65,-0.02499479166666667],[115,294,66,-0.02499479166666667],[115,294,67,-0.02499479166666667],[115,294,68,-0.02499479166666667],[115,294,69,-0.02499479166666667],[115,294,70,-0.02499479166666667],[115,294,71,-0.02499479166666667],[115,294,72,-0.02499479166666667],[115,294,73,-0.02499479166666667],[115,294,74,-0.02499479166666667],[115,294,75,-0.02499479166666667],[115,294,76,-0.02499479166666667],[115,294,77,-0.02499479166666667],[115,294,78,-0.02499479166666667],[115,294,79,-0.02499479166666667],[115,295,64,-0.02499479166666667],[115,295,65,-0.02499479166666667],[115,295,66,-0.02499479166666667],[115,295,67,-0.02499479166666667],[115,295,68,-0.02499479166666667],[115,295,69,-0.02499479166666667],[115,295,70,-0.02499479166666667],[115,295,71,-0.02499479166666667],[115,295,72,-0.02499479166666667],[115,295,73,-0.02499479166666667],[115,295,74,-0.02499479166666667],[115,295,75,-0.02499479166666667],[115,295,76,-0.02499479166666667],[115,295,77,-0.02499479166666667],[115,295,78,-0.02499479166666667],[115,295,79,-0.02499479166666667],[115,296,64,-0.02499479166666667],[115,296,65,-0.02499479166666667],[115,296,66,-0.02499479166666667],[115,296,67,-0.02499479166666667],[115,296,68,-0.02499479166666667],[115,296,69,-0.02499479166666667],[115,296,70,-0.02499479166666667],[115,296,71,-0.02499479166666667],[115,296,72,-0.02499479166666667],[115,296,73,-0.02499479166666667],[115,296,74,-0.02499479166666667],[115,296,75,-0.02499479166666667],[115,296,76,-0.02499479166666667],[115,296,77,-0.02499479166666667],[115,296,78,-0.02499479166666667],[115,296,79,-0.02499479166666667],[115,297,64,-0.02499479166666667],[115,297,65,-0.02499479166666667],[115,297,66,-0.02499479166666667],[115,297,67,-0.02499479166666667],[115,297,68,-0.02499479166666667],[115,297,69,-0.02499479166666667],[115,297,70,-0.02499479166666667],[115,297,71,-0.02499479166666667],[115,297,72,-0.02499479166666667],[115,297,73,-0.02499479166666667],[115,297,74,-0.02499479166666667],[115,297,75,-0.02499479166666667],[115,297,76,-0.02499479166666667],[115,297,77,-0.02499479166666667],[115,297,78,-0.02499479166666667],[115,297,79,-0.02499479166666667],[115,298,64,-0.02499479166666667],[115,298,65,-0.02499479166666667],[115,298,66,-0.02499479166666667],[115,298,67,-0.02499479166666667],[115,298,68,-0.02499479166666667],[115,298,69,-0.02499479166666667],[115,298,70,-0.02499479166666667],[115,298,71,-0.02499479166666667],[115,298,72,-0.02499479166666667],[115,298,73,-0.02499479166666667],[115,298,74,-0.02499479166666667],[115,298,75,-0.02499479166666667],[115,298,76,-0.02499479166666667],[115,298,77,-0.02499479166666667],[115,298,78,-0.02499479166666667],[115,298,79,-0.02499479166666667],[115,299,64,-0.02499479166666667],[115,299,65,-0.02499479166666667],[115,299,66,-0.02499479166666667],[115,299,67,-0.02499479166666667],[115,299,68,-0.02499479166666667],[115,299,69,-0.02499479166666667],[115,299,70,-0.02499479166666667],[115,299,71,-0.02499479166666667],[115,299,72,-0.02499479166666667],[115,299,73,-0.02499479166666667],[115,299,74,-0.02499479166666667],[115,299,75,-0.02499479166666667],[115,299,76,-0.02499479166666667],[115,299,77,-0.02499479166666667],[115,299,78,-0.02499479166666667],[115,299,79,-0.02499479166666667],[115,300,64,-0.02499479166666667],[115,300,65,-0.02499479166666667],[115,300,66,-0.02499479166666667],[115,300,67,-0.02499479166666667],[115,300,68,-0.02499479166666667],[115,300,69,-0.02499479166666667],[115,300,70,-0.02499479166666667],[115,300,71,-0.02499479166666667],[115,300,72,-0.02499479166666667],[115,300,73,-0.02499479166666667],[115,300,74,-0.02499479166666667],[115,300,75,-0.02499479166666667],[115,300,76,-0.02499479166666667],[115,300,77,-0.02499479166666667],[115,300,78,-0.02499479166666667],[115,300,79,-0.02499479166666667],[115,301,64,-0.02499479166666667],[115,301,65,-0.02499479166666667],[115,301,66,-0.02499479166666667],[115,301,67,-0.02499479166666667],[115,301,68,-0.02499479166666667],[115,301,69,-0.02499479166666667],[115,301,70,-0.02499479166666667],[115,301,71,-0.02499479166666667],[115,301,72,-0.02499479166666667],[115,301,73,-0.02499479166666667],[115,301,74,-0.02499479166666667],[115,301,75,-0.02499479166666667],[115,301,76,-0.02499479166666667],[115,301,77,-0.02499479166666667],[115,301,78,-0.02499479166666667],[115,301,79,-0.02499479166666667],[115,302,64,-0.02499479166666667],[115,302,65,-0.02499479166666667],[115,302,66,-0.02499479166666667],[115,302,67,-0.02499479166666667],[115,302,68,-0.02499479166666667],[115,302,69,-0.02499479166666667],[115,302,70,-0.02499479166666667],[115,302,71,-0.02499479166666667],[115,302,72,-0.02499479166666667],[115,302,73,-0.02499479166666667],[115,302,74,-0.02499479166666667],[115,302,75,-0.02499479166666667],[115,302,76,-0.02499479166666667],[115,302,77,-0.02499479166666667],[115,302,78,-0.02499479166666667],[115,302,79,-0.02499479166666667],[115,303,64,-0.02499479166666667],[115,303,65,-0.02499479166666667],[115,303,66,-0.02499479166666667],[115,303,67,-0.02499479166666667],[115,303,68,-0.02499479166666667],[115,303,69,-0.02499479166666667],[115,303,70,-0.02499479166666667],[115,303,71,-0.02499479166666667],[115,303,72,-0.02499479166666667],[115,303,73,-0.02499479166666667],[115,303,74,-0.02499479166666667],[115,303,75,-0.02499479166666667],[115,303,76,-0.02499479166666667],[115,303,77,-0.02499479166666667],[115,303,78,-0.02499479166666667],[115,303,79,-0.02499479166666667],[115,304,64,-0.02499479166666667],[115,304,65,-0.02499479166666667],[115,304,66,-0.02499479166666667],[115,304,67,-0.02499479166666667],[115,304,68,-0.02499479166666667],[115,304,69,-0.02499479166666667],[115,304,70,-0.02499479166666667],[115,304,71,-0.02499479166666667],[115,304,72,-0.02499479166666667],[115,304,73,-0.02499479166666667],[115,304,74,-0.02499479166666667],[115,304,75,-0.02499479166666667],[115,304,76,-0.02499479166666667],[115,304,77,-0.02499479166666667],[115,304,78,-0.02499479166666667],[115,304,79,-0.02499479166666667],[115,305,64,-0.02499479166666667],[115,305,65,-0.02499479166666667],[115,305,66,-0.02499479166666667],[115,305,67,-0.02499479166666667],[115,305,68,-0.02499479166666667],[115,305,69,-0.02499479166666667],[115,305,70,-0.02499479166666667],[115,305,71,-0.02499479166666667],[115,305,72,-0.02499479166666667],[115,305,73,-0.02499479166666667],[115,305,74,-0.02499479166666667],[115,305,75,-0.02499479166666667],[115,305,76,-0.02499479166666667],[115,305,77,-0.02499479166666667],[115,305,78,-0.02499479166666667],[115,305,79,-0.02499479166666667],[115,306,64,-0.02499479166666667],[115,306,65,-0.02499479166666667],[115,306,66,-0.02499479166666667],[115,306,67,-0.02499479166666667],[115,306,68,-0.02499479166666667],[115,306,69,-0.02499479166666667],[115,306,70,-0.02499479166666667],[115,306,71,-0.02499479166666667],[115,306,72,-0.02499479166666667],[115,306,73,-0.02499479166666667],[115,306,74,-0.02499479166666667],[115,306,75,-0.02499479166666667],[115,306,76,-0.02499479166666667],[115,306,77,-0.02499479166666667],[115,306,78,-0.02499479166666667],[115,306,79,-0.02499479166666667],[115,307,64,-0.02499479166666667],[115,307,65,-0.02499479166666667],[115,307,66,-0.02499479166666667],[115,307,67,-0.02499479166666667],[115,307,68,-0.02499479166666667],[115,307,69,-0.02499479166666667],[115,307,70,-0.02499479166666667],[115,307,71,-0.02499479166666667],[115,307,72,-0.02499479166666667],[115,307,73,-0.02499479166666667],[115,307,74,-0.02499479166666667],[115,307,75,-0.02499479166666667],[115,307,76,-0.02499479166666667],[115,307,77,-0.02499479166666667],[115,307,78,-0.02499479166666667],[115,307,79,-0.02499479166666667],[115,308,64,-0.02499479166666667],[115,308,65,-0.02499479166666667],[115,308,66,-0.02499479166666667],[115,308,67,-0.02499479166666667],[115,308,68,-0.02499479166666667],[115,308,69,-0.02499479166666667],[115,308,70,-0.02499479166666667],[115,308,71,-0.02499479166666667],[115,308,72,-0.02499479166666667],[115,308,73,-0.02499479166666667],[115,308,74,-0.02499479166666667],[115,308,75,-0.02499479166666667],[115,308,76,-0.02499479166666667],[115,308,77,-0.02499479166666667],[115,308,78,-0.02499479166666667],[115,308,79,-0.02499479166666667],[115,309,64,-0.02499479166666667],[115,309,65,-0.02499479166666667],[115,309,66,-0.02499479166666667],[115,309,67,-0.02499479166666667],[115,309,68,-0.02499479166666667],[115,309,69,-0.02499479166666667],[115,309,70,-0.02499479166666667],[115,309,71,-0.02499479166666667],[115,309,72,-0.02499479166666667],[115,309,73,-0.02499479166666667],[115,309,74,-0.02499479166666667],[115,309,75,-0.02499479166666667],[115,309,76,-0.02499479166666667],[115,309,77,-0.02499479166666667],[115,309,78,-0.02499479166666667],[115,309,79,-0.02499479166666667],[115,310,64,-0.02499479166666667],[115,310,65,-0.02499479166666667],[115,310,66,-0.02499479166666667],[115,310,67,-0.02499479166666667],[115,310,68,-0.02499479166666667],[115,310,69,-0.02499479166666667],[115,310,70,-0.02499479166666667],[115,310,71,-0.02499479166666667],[115,310,72,-0.02499479166666667],[115,310,73,-0.02499479166666667],[115,310,74,-0.02499479166666667],[115,310,75,-0.02499479166666667],[115,310,76,-0.02499479166666667],[115,310,77,-0.02499479166666667],[115,310,78,-0.02499479166666667],[115,310,79,-0.02499479166666667],[115,311,64,-0.02499479166666667],[115,311,65,-0.02499479166666667],[115,311,66,-0.02499479166666667],[115,311,67,-0.02499479166666667],[115,311,68,-0.02499479166666667],[115,311,69,-0.02499479166666667],[115,311,70,-0.02499479166666667],[115,311,71,-0.02499479166666667],[115,311,72,-0.02499479166666667],[115,311,73,-0.02499479166666667],[115,311,74,-0.02499479166666667],[115,311,75,-0.02499479166666667],[115,311,76,-0.02499479166666667],[115,311,77,-0.02499479166666667],[115,311,78,-0.02499479166666667],[115,311,79,-0.02499479166666667],[115,312,64,-0.02499479166666667],[115,312,65,-0.02499479166666667],[115,312,66,-0.02499479166666667],[115,312,67,-0.02499479166666667],[115,312,68,-0.02499479166666667],[115,312,69,-0.02499479166666667],[115,312,70,-0.02499479166666667],[115,312,71,-0.02499479166666667],[115,312,72,-0.02499479166666667],[115,312,73,-0.02499479166666667],[115,312,74,-0.02499479166666667],[115,312,75,-0.02499479166666667],[115,312,76,-0.02499479166666667],[115,312,77,-0.02499479166666667],[115,312,78,-0.02499479166666667],[115,312,79,-0.02499479166666667],[115,313,64,-0.02499479166666667],[115,313,65,-0.02499479166666667],[115,313,66,-0.02499479166666667],[115,313,67,-0.02499479166666667],[115,313,68,-0.02499479166666667],[115,313,69,-0.02499479166666667],[115,313,70,-0.02499479166666667],[115,313,71,-0.02499479166666667],[115,313,72,-0.02499479166666667],[115,313,73,-0.02499479166666667],[115,313,74,-0.02499479166666667],[115,313,75,-0.02499479166666667],[115,313,76,-0.02499479166666667],[115,313,77,-0.02499479166666667],[115,313,78,-0.02499479166666667],[115,313,79,-0.02499479166666667],[115,314,64,-0.02499479166666667],[115,314,65,-0.02499479166666667],[115,314,66,-0.02499479166666667],[115,314,67,-0.02499479166666667],[115,314,68,-0.02499479166666667],[115,314,69,-0.02499479166666667],[115,314,70,-0.02499479166666667],[115,314,71,-0.02499479166666667],[115,314,72,-0.02499479166666667],[115,314,73,-0.02499479166666667],[115,314,74,-0.02499479166666667],[115,314,75,-0.02499479166666667],[115,314,76,-0.02499479166666667],[115,314,77,-0.02499479166666667],[115,314,78,-0.02499479166666667],[115,314,79,-0.02499479166666667],[115,315,64,-0.02499479166666667],[115,315,65,-0.02499479166666667],[115,315,66,-0.02499479166666667],[115,315,67,-0.02499479166666667],[115,315,68,-0.02499479166666667],[115,315,69,-0.02499479166666667],[115,315,70,-0.02499479166666667],[115,315,71,-0.02499479166666667],[115,315,72,-0.02499479166666667],[115,315,73,-0.02499479166666667],[115,315,74,-0.02499479166666667],[115,315,75,-0.02499479166666667],[115,315,76,-0.02499479166666667],[115,315,77,-0.02499479166666667],[115,315,78,-0.02499479166666667],[115,315,79,-0.02499479166666667],[115,316,64,-0.02499479166666667],[115,316,65,-0.02499479166666667],[115,316,66,-0.02499479166666667],[115,316,67,-0.02499479166666667],[115,316,68,-0.02499479166666667],[115,316,69,-0.02499479166666667],[115,316,70,-0.02499479166666667],[115,316,71,-0.02499479166666667],[115,316,72,-0.02499479166666667],[115,316,73,-0.02499479166666667],[115,316,74,-0.02499479166666667],[115,316,75,-0.02499479166666667],[115,316,76,-0.02499479166666667],[115,316,77,-0.02499479166666667],[115,316,78,-0.02499479166666667],[115,316,79,-0.02499479166666667],[115,317,64,-0.02499479166666667],[115,317,65,-0.02499479166666667],[115,317,66,-0.02499479166666667],[115,317,67,-0.02499479166666667],[115,317,68,-0.02499479166666667],[115,317,69,-0.02499479166666667],[115,317,70,-0.02499479166666667],[115,317,71,-0.02499479166666667],[115,317,72,-0.02499479166666667],[115,317,73,-0.02499479166666667],[115,317,74,-0.02499479166666667],[115,317,75,-0.02499479166666667],[115,317,76,-0.02499479166666667],[115,317,77,-0.02499479166666667],[115,317,78,-0.02499479166666667],[115,317,79,-0.02499479166666667],[115,318,64,-0.02499479166666667],[115,318,65,-0.02499479166666667],[115,318,66,-0.02499479166666667],[115,318,67,-0.02499479166666667],[115,318,68,-0.02499479166666667],[115,318,69,-0.02499479166666667],[115,318,70,-0.02499479166666667],[115,318,71,-0.02499479166666667],[115,318,72,-0.02499479166666667],[115,318,73,-0.02499479166666667],[115,318,74,-0.02499479166666667],[115,318,75,-0.02499479166666667],[115,318,76,-0.02499479166666667],[115,318,77,-0.02499479166666667],[115,318,78,-0.02499479166666667],[115,318,79,-0.02499479166666667],[115,319,64,-0.02499479166666667],[115,319,65,-0.02499479166666667],[115,319,66,-0.02499479166666667],[115,319,67,-0.02499479166666667],[115,319,68,-0.02499479166666667],[115,319,69,-0.02499479166666667],[115,319,70,-0.02499479166666667],[115,319,71,-0.02499479166666667],[115,319,72,-0.02499479166666667],[115,319,73,-0.02499479166666667],[115,319,74,-0.02499479166666667],[115,319,75,-0.02499479166666667],[115,319,76,-0.02499479166666667],[115,319,77,-0.02499479166666667],[115,319,78,-0.02499479166666667],[115,319,79,-0.02499479166666667],[116,-64,64,0.037482421875],[116,-64,65,0.037482421875],[116,-64,66,0.037482421875],[116,-64,67,0.037482421875],[116,-64,68,0.037482421875],[116,-64,69,0.037482421875],[116,-64,70,0.037482421875],[116,-64,71,0.037482421875],[116,-64,72,0.037482421875],[116,-64,73,0.037482421875],[116,-64,74,0.037482421875],[116,-64,75,0.037482421875],[116,-64,76,0.037482421875],[116,-64,77,0.037482421875],[116,-64,78,0.037482421875],[116,-64,79,0.037482421875],[116,-63,64,0.04041906601091125],[116,-63,65,0.04049752473737519],[116,-63,66,0.040577499636296505],[116,-63,67,0.040658746501097194],[116,-63,68,0.04074134616485934],[116,-63,69,0.04082554022289908],[116,-63,70,0.04091146532534366],[116,-63,71,0.04099915352420982],[116,-63,72,0.041088538925390654],[116,-63,73,0.041179464864628514],[116,-63,74,0.04127169161075918],[116,-63,75,0.0413649045980771],[116,-63,76,0.04145872318826137],[116,-63,77,0.04155270996092989],[116,-63,78,0.04164638053055717],[116,-63,79,0.04173921388621791],[116,-62,64,0.04339841506669652],[116,-62,65,0.04355776189961883],[116,-62,66,0.043720211177243715],[116,-62,67,0.043885313176499074],[116,-62,68,0.04405321770930697],[116,-62,69,0.0442243564182621],[116,-62,70,0.04439895144909973],[116,-62,71,0.04457701818456239],[116,-62,72,0.04475837958561288],[116,-62,73,0.04494268146861635],[116,-62,74,0.04512940872119953],[116,-62,75,0.045317902456722424],[116,-62,76,0.04550737810461483],[116,-62,77,0.04569694443125842],[116,-62,78,0.04588562348363974],[116,-62,79,0.04607237144569517],[116,-61,64,0.046426914039892596],[116,-61,65,0.04666904726436389],[116,-61,66,0.046915876303859926],[116,-61,67,0.047166795070626516],[116,-61,68,0.04742200866663939],[116,-61,69,0.04768207989312186],[116,-61,70,0.04794726374446909],[116,-61,71,0.048217513863418014],[116,-61,72,0.04849250468332633],[116,-61,73,0.04877165485163545],[116,-61,74,0.04905415193476222],[116,-61,75,0.049338978400651975],[116,-61,76,0.04962493887139093],[116,-61,77,0.04991068863465121],[116,-61,78,0.05019476339933376],[116,-61,79,0.05047561027763249],[116,-60,64,0.049510031628008565],[116,-60,65,0.049836341460417904],[116,-60,66,0.0501688864114582],[116,-60,67,0.050506960777436424],[116,-60,68,0.05085081029508635],[116,-60,69,0.051201065657674516],[116,-60,70,0.051557962654552196],[116,-60,71,0.051921353035998166],[116,-60,72,0.05229073376331405],[116,-60,73,0.05266527785777691],[116,-60,74,0.05304386684600273],[116,-60,75,0.05342512479412134],[116,-60,76,0.05380745391828556],[116,-60,77,0.0541890717544785],[116,-60,78,0.05456804986635554],[116,-60,79,0.054942354066022686],[116,-59,64,0.052652083570389106],[116,-59,65,0.053063500819941316],[116,-59,66,0.05348258231924643],[116,-59,67,0.05390858352554314],[116,-59,68,0.05434177555473766],[116,-59,69,0.05478279183075059],[116,-59,70,0.055231798882234305],[116,-59,71,0.05568851177112034],[116,-59,72,0.05615222912690171],[116,-59,73,0.05662187009881869],[116,-59,74,0.05709601322180931],[116,-59,75,0.057572937185894894],[116,-59,76,0.058050663492849944],[116,-59,77,0.058527000978612125],[116,-59,78,0.058999592174940316],[116,-59,79,0.059465961479404604],[116,-58,64,0.05585615516673551],[116,-58,65,0.05635322815844205],[116,-58,66,0.05685923650496675],[116,-58,67,0.057373457355757815],[116,-58,68,0.05789617097984142],[116,-58,69,0.058427948104690305],[116,-58,70,0.05896883834213429],[116,-58,71,0.0595183899700594],[116,-58,72,0.0600756890263501],[116,-58,73,0.06063940065482092],[116,-58,74,0.06120781269898078],[116,-58,75,0.061778881532363446],[116,-58,76,0.062350280107496346],[116,-58,77,0.06291944819944373],[116,-58,78,0.06348364481427363],[116,-58,79,0.06404000272786026],[116,-57,64,0.05912414142714883],[116,-57,65,0.05970714376895053],[116,-57,66,0.06030015803550487],[116,-57,67,0.06090253837853131],[116,-57,68,0.06151455565693562],[116,-57,69,0.06213665256846768],[116,-57,70,0.06276871559682667],[116,-57,71,0.06341009880406877],[116,-57,72,0.06405966514260396],[116,-57,73,0.06471583036111499],[116,-57,74,0.06537660950190821],[116,-57,75,0.06603966597932778],[116,-57,76,0.06670236322149274],[116,-57,77,0.06736181885084579],[116,-57,78,0.06801496137287173],[116,-57,79,0.06865858933696709],[116,-56,64,0.06245654639847965],[116,-56,65,0.06312556774747731],[116,-56,66,0.06380546060073412],[116,-56,67,0.0644957006328836],[116,-56,68,0.06519652619430143],[116,-56,69,0.06590818644169963],[116,-56,70,0.06663035863027952],[116,-56,71,0.06736217563047156],[116,-56,72,0.06810226774092415],[116,-56,73,0.0688488074200064],[116,-56,74,0.06959955693617437],[116,-56,75,0.07035191892910306],[116,-56,76,0.07110298986558027],[116,-56,77,0.0718496163669055],[116,-56,78,0.07258845437799286],[116,-56,79,0.07331603114267243],[116,-55,64,0.06584989730014494],[116,-55,65,0.06660457650708557],[116,-55,66,0.0673707614313688],[116,-55,67,0.06814807830803109],[116,-55,68,0.06893670580065757],[116,-55,69,0.06973664044148711],[116,-55,70,0.07054731185593635],[116,-55,71,0.07136761315844362],[116,-55,72,0.07219594122442335],[116,-55,73,0.07303024021062965],[116,-55,74,0.07386804832911198],[116,-55,75,0.07470654787111251],[116,-55,76,0.0755426184689566],[116,-55,77,0.07637289357636876],[116,-55,78,0.0771938201407611],[116,-55,79,0.07800172143505622],[116,-54,64,0.06929747295473061],[116,-54,65,0.07013679679865208],[116,-54,66,0.07098804004166186],[116,-54,67,0.07185099017739295],[116,-54,68,0.07272573585184867],[116,-54,69,0.07361197373274692],[116,-54,70,0.07450886112937259],[116,-54,71,0.07541504739766673],[116,-54,72,0.0763287099653912],[116,-54,73,0.07724759400243329],[116,-54,74,0.07816905575001624],[116,-54,75,0.07909010951345208],[116,-54,76,0.08000747831442621],[116,-54,77,0.08091764819079676],[116,-54,78,0.08181692612460983],[116,-54,79,0.08270150157264944],[116,-53,64,0.07279072680545876],[116,-53,65,0.07371298861697437],[116,-53,66,0.07464738096999261],[116,-53,67,0.07559384325160164],[116,-53,68,0.0765523407899057],[116,-53,69,0.07752223696957183],[116,-53,70,0.07850240754878311],[116,-53,71,0.07949127007180362],[116,-53,72,0.08048681222963111],[116,-53,73,0.08148662440271615],[116,-53,74,0.0824879364136853],[116,-53,75,0.08348765850853916],[116,-53,76,0.0844824265756876],[116,-53,77,0.08546865160361625],[116,-53,78,0.0864425733700529],[116,-53,79,0.08740031834842939],[116,-52,64,0.07631977903025973],[116,-52,65,0.0773225674822408],[116,-52,66,0.07833752572211175],[116,-52,67,0.07936471495752447],[116,-52,68,0.08040394127083882],[116,-52,69,0.08145421635872978],[116,-52,70,0.08251414147239604],[116,-52,71,0.08358193066486902],[116,-52,72,0.08465542735460387],[116,-52,73,0.0857321258293903],[116,-52,74,0.0868091977400307],[116,-52,75,0.08788352362321805],[116,-52,76,0.08895172948318274],[116,-52,77,0.09001022845217521],[116,-52,78,0.09105526754084489],[116,-52,79,0.09208297948130327],[116,-51,64,0.07987394589754813],[116,-51,65,0.08095415943452362],[116,-51,66,0.08204645255346363],[116,-51,67,0.08315095790615543],[116,-51,68,0.084267284302803],[116,-51,69,0.08539408887064479],[116,-51,70,0.08652972172981259],[116,-51,71,0.08767223775101711],[116,-51,72,0.0888193965089183],[116,-51,73,0.0899686682407971],[116,-51,74,0.09111724589034388],[116,-51,75,0.09226206330540489],[116,-51,76,0.09339981964741739],[116,-51,77,0.09452701005925711],[116,-51,78,0.09563996262748352],[116,-51,79,0.09673488166478819],[116,-50,64,0.0834423226368286],[116,-50,65,0.08459620566605534],[116,-50,66,0.08576200164622977],[116,-50,67,0.08693984539603178],[116,-50,68,0.08812910905815093],[116,-50,69,0.08932810774851246],[116,-50,70,0.0905349795572005],[116,-50,71,0.09174767940972446],[116,-50,72,0.09296395698063613],[116,-50,73,0.09418134207075292],[116,-50,74,0.09539713756820375],[116,-50,75,0.09660842010096352],[116,-50,76,0.09781204847549459],[116,-50,77,0.09900467998283605],[116,-50,78,0.10018279464017228],[116,-50,79,0.10134272742291678],[116,-49,64,0.08670673434214501],[116,-49,65,0.08803949907820702],[116,-49,66,0.08939023402283114],[116,-49,67,0.09071877137099287],[116,-49,68,0.09197650571555283],[116,-49,69,0.09324312737352516],[116,-49,70,0.09451661336264863],[116,-49,71,0.0957948881629596],[116,-49,72,0.09707577380239824],[116,-49,73,0.09835694932597273],[116,-49,74,0.09963591981950219],[116,-49,75,0.10090999514404239],[116,-49,76,0.10217627852127888],[116,-49,77,0.10343166509372055],[116,-49,78,0.10467285056667629],[116,-49,79,0.10589635002214405],[116,-48,64,0.0899293917469333],[116,-48,65,0.09135899495910953],[116,-48,66,0.09280933088955418],[116,-48,67,0.09427673660424556],[116,-48,68,0.09575823805046856],[116,-48,69,0.09712640297255214],[116,-48,70,0.09846247233293473],[116,-48,71,0.09980240942546371],[116,-48,72,0.1011441834661327],[116,-48,73,0.10248570255593155],[116,-48,74,0.10382475434782679],[116,-48,75,0.10515895891447163],[116,-48,76,0.10648573400972475],[116,-48,77,0.10780227289656329],[116,-48,78,0.10910553489265486],[116,-48,79,0.11039224876313107],[116,-47,64,0.09316637204517547],[116,-47,65,0.09469318338720183],[116,-47,66,0.0962433181207667],[116,-47,67,0.09781322705810758],[116,-47,68,0.09940009901022413],[116,-47,69,0.10096613856078063],[116,-47,70,0.10236161529068356],[116,-47,71,0.10376025416489859],[116,-47,72,0.10516023252201963],[116,-47,73,0.10655975111786561],[116,-47,74,0.10795694270995891],[116,-47,75,0.10934979575780926],[116,-47,76,0.11073609348983955],[116,-47,77,0.11211336856250076],[116,-47,78,0.11347887351051172],[116,-47,79,0.1148295671596763],[116,-46,64,0.096423404015082],[116,-46,65,0.09804703050550741],[116,-46,66,0.099696264749547],[116,-46,67,0.10136780804740432],[116,-46,68,0.10305908529458788],[116,-46,69,0.10475191660154913],[116,-46,70,0.10620453833632913],[116,-46,71,0.107659917179229],[116,-46,72,0.10911648292373669],[116,-46,73,0.11057277395027304],[116,-46,74,0.1120273107904969],[116,-46,75,0.1134784880852358],[116,-46,76,0.1149244852474035],[116,-46,77,0.11636319611056854],[116,-46,78,0.11779217781126645],[116,-46,79,0.11920861911912295],[116,-45,64,0.09970464381973888],[116,-45,65,0.10142387163153839],[116,-45,66,0.10317056262639103],[116,-45,67,0.10494181410077243],[116,-45,68,0.10673536899922369],[116,-45,69,0.10847493858206646],[116,-45,70,0.10998337308926608],[116,-45,71,0.11149452960089705],[116,-45,72,0.11300711602065308],[116,-45,73,0.114520032988946],[116,-45,74,0.11603221034156273],[116,-45,75,0.117542465526078],[116,-45,76,0.11904938434856528],[116,-45,77,0.12055122438657839],[116,-45,78,0.12204584136532204],[116,-45,79,0.12353063875271901],[116,-44,64,0.10301237408897922],[116,-44,65,0.10482513097307021],[116,-44,66,0.10666667143138271],[116,-44,67,0.1085346392067144],[116,-44,68,0.11042718526286484],[116,-44,69,0.11212820949657289],[116,-44,70,0.11369203299355803],[116,-44,71,0.11525896435735518],[116,-44,72,0.11682799511496805],[116,-44,73,0.11839839143858079],[116,-44,74,0.11996949230079937],[116,-44,75,0.12154053334994287],[116,-44,76,0.12311049693780374],[116,-44,77,0.12467798868953471],[116,-44,78,0.12624114095939576],[116,-44,79,0.12779754346717775],[116,-43,64,0.10634676881797532],[116,-43,65,0.10825010672714197],[116,-43,66,0.11018292787634446],[116,-43,67,0.11214357362685075],[116,-43,68,0.11409233357561394],[116,-43,69,0.1157066660376057],[116,-43,70,0.1173263073512074],[116,-43,71,0.118949894090831],[116,-43,72,0.1205766859057732],[116,-43,73,0.12220629602248598],[116,-43,74,0.1238384507948093],[116,-43,75,0.125472778837365],[116,-43,76,0.12710863023135133],[116,-43,77,0.12874492624282055],[116,-43,78,0.13038003994045444],[116,-43,79,0.13201170804283613],[116,-42,64,0.10970572425198996],[116,-42,65,0.11169582176979281],[116,-42,66,0.11371541933336926],[116,-42,67,0.11576370330218506],[116,-42,68,0.11753708721307385],[116,-42,69,0.11920724814142822],[116,-42,70,0.12088390259730662],[116,-42,71,0.1225658008996949],[116,-42,72,0.12425243401237533],[116,-42,73,0.1259437222171311],[116,-42,74,0.12763973663645758],[116,-42,75,0.129340454199403],[116,-42,76,0.1310455465920176],[116,-42,77,0.13275420367821125],[116,-42,78,0.13446499181644475],[116,-42,79,0.13617574743227656],[116,-41,64,0.1130847561259113],[116,-41,65,0.11515694033001903],[116,-41,66,0.11725792229657554],[116,-41,67,0.11918484901095722],[116,-41,68,0.12090157607050613],[116,-41,69,0.12262891335004379],[116,-41,70,0.12436443015599948],[116,-41,71,0.12610693709958548],[116,-41,72,0.12785609861940977],[116,-41,73,0.1296120813462703],[116,-41,74,0.13137523901364026],[116,-41,75,0.1331458345601667],[116,-41,76,0.13492380001203386],[116,-41,77,0.1367085346707732],[116,-41,78,0.13849874206433394],[116,-41,79,0.14029230604527598],[116,-40,64,0.11647696380354154],[116,-40,65,0.11862575120571583],[116,-40,66,0.12065670598690036],[116,-40,67,0.12241274971633972],[116,-40,68,0.124186198423662],[116,-40,69,0.12597259324121007],[116,-40,70,0.12776934001653206],[116,-40,71,0.12957523601756735],[116,-40,72,0.1313900411197126],[116,-40,73,0.13321408826465417],[116,-40,74,0.13504793394752057],[116,-40,75,0.13689204942462163],[116,-40,76,0.13874655326909793],[116,-40,77,0.14061098583290055],[116,-40,78,0.14248412609835656],[116,-40,79,0.14436385132006815],[116,-39,64,0.11660166798041377],[116,-39,65,0.11861387792559397],[116,-39,66,0.1203268615921702],[116,-39,67,0.12206714352853129],[116,-39,68,0.12382739144568262],[116,-39,69,0.12560289655416673],[116,-39,70,0.12739092914338868],[116,-39,71,0.12919023356991516],[116,-39,72,0.13100058004983184],[116,-39,73,0.13282235710792029],[116,-39,74,0.13465620545775853],[116,-39,75,0.1365026940191104],[116,-39,76,0.138362038711049],[116,-39,77,0.1402338645874853],[116,-39,78,0.1397852083419814],[116,-39,79,0.13650821170979008],[116,-38,64,0.11660086636848428],[116,-38,65,0.11825756590367145],[116,-38,66,0.11995372040900232],[116,-38,67,0.12168090471297534],[116,-38,68,0.12343097341369567],[116,-38,69,0.12519890077457677],[116,-38,70,0.12698173579717625],[116,-38,71,0.12877807170286107],[116,-38,72,0.13058758375967114],[116,-38,73,0.13241060865582086],[116,-38,74,0.13424776620276535],[116,-38,75,0.1351020551038079],[116,-38,76,0.1325850252028114],[116,-38,77,0.1328183665752798],[116,-38,78,0.1295874085277495],[116,-38,79,0.12495596077183366],[116,-37,64,0.11622829515941116],[116,-37,65,0.11786537333430717],[116,-37,66,0.11954693556884408],[116,-37,67,0.12126356342003393],[116,-37,68,0.12300627485513266],[116,-37,69,0.12476965214569494],[116,-37,70,0.1265504311990496],[116,-37,71,0.12834695216323794],[116,-37,72,0.12836564722383634],[116,-37,73,0.1275296426662824],[116,-37,74,0.12685435802932918],[116,-37,75,0.126148998910512],[116,-37,76,0.12645994673539976],[116,-37,77,0.12772493622753858],[116,-37,78,0.12381557603984367],[116,-37,79,0.11917517557828945],[116,-36,64,0.11582773812221785],[116,-36,65,0.11744714295634513],[116,-36,66,0.1191162215117923],[116,-36,67,0.12082461456810203],[116,-36,68,0.12256248775517918],[116,-36,69,0.12432395014833741],[116,-36,70,0.12610532897217572],[116,-36,71,0.1260752426548363],[116,-36,72,0.12373967322388639],[116,-36,73,0.12330538973302976],[116,-36,74,0.12278946397712565],[116,-36,75,0.12225022325120531],[116,-36,76,0.12271921861731312],[116,-36,77,0.12354341324336438],[116,-36,78,0.11989481516000838],[116,-36,79,0.11702891104658021],[116,-35,64,0.11540900902927495],[116,-35,65,0.11701259234439769],[116,-35,66,0.11867108248367532],[116,-35,67,0.1203732528327496],[116,-35,68,0.1221084092800375],[116,-35,69,0.1238701023903688],[116,-35,70,0.1256541537577841],[116,-35,71,0.12388269906315644],[116,-35,72,0.12223609457565064],[116,-35,73,0.12168581051309814],[116,-35,74,0.12249623300304054],[116,-35,75,0.12132799388612756],[116,-35,76,0.12115063987330937],[116,-35,77,0.12164553585664928],[116,-35,78,0.11740308197267288],[116,-35,79,0.11637539713238008],[116,-34,64,0.11498159476421316],[116,-34,65,0.11657103176131085],[116,-34,66,0.11822053429344798],[116,-34,67,0.11991810079949895],[116,-34,68,0.12165217855340699],[116,-34,69,0.12341567243246132],[116,-34,70,0.12520380265090697],[116,-34,71,0.12506675312146603],[116,-34,72,0.12443670120915797],[116,-34,73,0.12205976899798295],[116,-34,74,0.12368718412607758],[116,-34,75,0.12172592478782236],[116,-34,76,0.12060862008363496],[116,-34,77,0.12049420349889607],[116,-34,78,0.11549861784748959],[116,-34,79,0.11494891739757095],[116,-33,64,0.11455436527231241],[116,-33,65,0.11613107461095704],[116,-33,66,0.11777281858670995],[116,-33,67,0.11946692956866181],[116,-33,68,0.12120100581299942],[116,-33,69,0.12296721992090691],[116,-33,70,0.1247600988757121],[116,-33,71,0.12657596788236886],[116,-33,72,0.1280642511945025],[116,-33,73,0.1241509538507298],[116,-33,74,0.12553899643103344],[116,-33,75,0.12433210698727774],[116,-33,76,0.12261227228707887],[116,-33,77,0.12101363352824465],[116,-33,78,0.11589638019859018],[116,-33,79,0.11500573385591013],[116,-32,64,0.11413527555093424],[116,-32,65,0.11570033977149946],[116,-32,66,0.11733510893841227],[116,-32,67,0.11902637114420121],[116,-32,68,0.12076089331279691],[116,-32,69,0.12253003243163547],[116,-32,70,0.12432753714743999],[116,-32,71,0.1261490060728392],[116,-32,72,0.12799144523343642],[116,-32,73,0.1298528613198725],[116,-32,74,0.13129726580300477],[116,-32,75,0.13116491124386623],[116,-32,76,0.12749580442743602],[116,-32,77,0.12407041990999625],[116,-32,78,0.11948171426055633],[116,-32,79,0.11599368083117295],[116,-31,64,0.11373105899644581],[116,-31,65,0.11528514513791197],[116,-31,66,0.1169132081130725],[116,-31,67,0.1186016219795094],[116,-31,68,0.12033634737249384],[116,-31,69,0.12210784845935459],[116,-31,70,0.12390902019113062],[116,-31,71,0.1257346664069884],[116,-31,72,0.12758107323977635],[116,-31,73,0.12944561571046212],[116,-31,74,0.131326398175798],[116,-31,75,0.13322192921178455],[116,-31,76,0.1324052497352119],[116,-31,77,0.12987631880857187],[116,-31,78,0.1256894517476372],[116,-31,79,0.11953556150110746],[116,-30,64,0.1133469114724401],[116,-30,65,0.11489019174784397],[116,-30,66,0.11651123588213047],[116,-30,67,0.11819613708944167],[116,-30,68,0.11993008100636735],[116,-30,69,0.12170257101022794],[116,-30,70,0.12350558590504408],[116,-30,71,0.12533308219032224],[116,-30,72,0.12718058498919424],[116,-30,73,0.12904480922468436],[116,-30,74,0.13092331168214855],[116,-30,75,0.13281417451532876],[116,-30,76,0.13471572067935905],[116,-30,77,0.13513108898322992],[116,-30,78,0.13072432710176393],[116,-30,79,0.1243041343079847],[116,-29,64,0.11298616550729951],[116,-29,65,0.11451823790437482],[116,-29,66,0.11613130682291922],[116,-29,67,0.11781131416741178],[116,-29,68,0.11954270658723283],[116,-29,69,0.12131397127333679],[116,-29,70,0.12311612466661928],[116,-29,71,0.1249422420435856],[116,-29,72,0.12678706648598922],[116,-29,73,0.12864664492911815],[116,-29,74,0.1305179919037525],[116,-29,75,0.13239878150793916],[116,-29,76,0.13428706807306823],[116,-29,77,0.13618103592149425],[116,-29,78,0.13429131825540275],[116,-29,79,0.12930492177192754],[116,-28,64,0.11264995406471985],[116,-28,65,0.11416976274017338],[116,-28,66,0.11577319754944387],[116,-28,67,0.11744616716618142],[116,-28,68,0.11917241801452162],[116,-28,69,0.12093938185274858],[116,-28,70,0.12273708627848406],[116,-28,71,0.12455771330453719],[116,-28,72,0.1263952257296822],[116,-28,73,0.12824501730530216],[116,-28,74,0.13010358729522803],[116,-28,75,0.1319682399492299],[116,-28,76,0.13383680934159112],[116,-28,77,0.1357074099625024],[116,-28,78,0.13707747583037144],[116,-28,79,0.13259543045434302],[116,-27,64,0.11233686335634323],[116,-27,65,0.11384261868760835],[116,-27,66,0.11543400283925477],[116,-27,67,0.1170969888086592],[116,-27,68,0.11881466185639238],[116,-27,69,0.1205733790359278],[116,-27,70,0.12236217603913674],[116,-27,71,0.12417235467534937],[116,-27,72,0.12599712473350716],[116,-27,73,0.1278312663798288],[116,-27,74,0.1296708136778325],[116,-27,75,0.13151275974258336],[116,-27,76,0.1333547839744515],[116,-27,77,0.13519500175722945],[116,-27,78,0.13703173694921625],[116,-27,79,0.133777857910034],[116,-26,64,0.11204257417715328],[116,-26,65,0.11353167232429803],[116,-26,66,0.11510778011893719],[116,-26,67,0.11675700148629031],[116,-26,68,0.11846179691989014],[116,-26,69,0.1202074535512827],[116,-26,70,0.1219820393934209],[116,-26,71,0.12377601757800456],[116,-26,72,0.12558190042388218],[116,-26,73,0.1273939209597941],[116,-26,74,0.1292077224865893],[116,-26,75,0.13102006669035954],[116,-26,76,0.13282856075314756],[116,-26,77,0.13463140384998554],[116,-26,78,0.13642715336824468],[116,-26,79,0.1330566285866645],[116,-25,64,0.11175946483634318],[116,-25,65,0.11322842305856463],[116,-25,66,0.11478518692940304],[116,-25,67,0.11641601589532222],[116,-25,68,0.11810277637133901],[116,-25,69,0.11982971871179578],[116,-25,70,0.12158399863465005],[116,-25,71,0.12335531374872281],[116,-25,72,0.12511181593909243],[116,-25,73,0.1267940340881727],[116,-25,74,0.12851006564241865],[116,-25,75,0.13025525620810355],[116,-25,76,0.1320235806759804],[116,-25,77,0.13380794439431548],[116,-25,78,0.13560046653916943],[116,-25,79,0.13362083089490034],[116,-24,64,0.1114756202911576],[116,-24,65,0.11292077495132084],[116,-24,66,0.11445396125388102],[116,-24,67,0.11606160233895738],[116,-24,68,0.11769177400052903],[116,-24,69,0.11918837065669906],[116,-24,70,0.12072075464556528],[116,-24,71,0.12229388308103498],[116,-24,72,0.12390980245060566],[116,-24,73,0.1255680153796589],[116,-24,74,0.12726583387050758],[116,-24,75,0.12899871853760933],[116,-24,76,0.13076060334097997],[116,-24,77,0.1325442053210964],[116,-24,78,0.13434131885787484],[116,-24,79,0.13512414329438074],[116,-23,64,0.11093520864193404],[116,-23,65,0.11234952406086635],[116,-23,66,0.11375630952884584],[116,-23,67,0.11516568084784395],[116,-23,68,0.11659279766360288],[116,-23,69,0.11805058491411156],[116,-23,70,0.11954813839057206],[116,-23,71,0.12109110037767895],[116,-23,72,0.12268203808819388],[116,-23,73,0.1243208111974591],[116,-23,74,0.1260049280501601],[116,-23,75,0.1277298900566542],[116,-23,76,0.12948952376544695],[116,-23,77,0.13127630008935373],[116,-23,78,0.13308164017319782],[116,-23,79,0.1348962074180908],[116,-22,64,0.10997379042669958],[116,-22,65,0.11134206749673978],[116,-22,66,0.11270504425597533],[116,-22,67,0.11407269581412005],[116,-22,68,0.11546065472087892],[116,-22,69,0.11688272697606975],[116,-22,70,0.11834875481312594],[116,-22,71,0.11986497610746281],[116,-22,72,0.12143440081421457],[116,-22,73,0.12305717868907652],[116,-22,74,0.12473095787058246],[116,-22,75,0.1264512338355037],[116,-22,76,0.12821168819734063],[116,-22,77,0.1300045167987537],[116,-22,78,0.13182074655015097],[116,-22,79,0.13365054048632505],[116,-21,64,0.10898270142359243],[116,-21,65,0.11030546119308086],[116,-21,66,0.11162572534321763],[116,-21,67,0.11295325186604385],[116,-21,68,0.11430400596629986],[116,-21,69,0.1156925397932716],[116,-21,70,0.11712933320197405],[116,-21,71,0.11862113414552534],[116,-21,72,0.12017133024238193],[116,-21,73,0.12178031397017383],[116,-21,74,0.12344584107125373],[116,-21,75,0.1251633816774207],[116,-21,76,0.12692646360885335],[116,-21,77,0.12872700727298655],[116,-21,78,0.13055565158111485],[116,-21,79,0.13240207031203488],[116,-20,64,0.10797310440989095],[116,-20,65,0.10925015449156843],[116,-20,66,0.11052803071968675],[116,-20,67,0.11181618647859924],[116,-20,68,0.11313075983384659],[116,-20,69,0.11448689871648016],[116,-20,70,0.11589560860382501],[116,-20,71,0.11736406901061561],[116,-20,72,0.11889599517563405],[116,-20,73,0.12049199603406308],[116,-20,74,0.12214992807094607],[116,-20,75,0.12386524456324335],[116,-20,76,0.12563133965497644],[116,-20,77,0.1274398866701166],[116,-20,78,0.12928117004979942],[116,-20,79,0.1311444103026909],[116,-19,64,0.10695606338612186],[116,-19,65,0.1081864521824652],[116,-19,66,0.10942141339172684],[116,-19,67,0.1106700025784823],[116,-19,68,0.11194835858379978],[116,-19,69,0.11327206522726202],[116,-19,70,0.11465254329547964],[116,-19,71,0.11609733628623856],[116,-19,72,0.11761045518388301],[116,-19,73,0.11919272264410052],[116,-19,74,0.12084211619999999],[116,-19,75,0.12255411000400837],[116,-19,76,0.1243220145465764],[116,-19,77,0.12613731374166773],[116,-19,78,0.1279899987396031],[116,-19,79,0.129868897819138],[116,-18,64,0.10594167172865734],[116,-18,65,0.10712355976385315],[116,-18,66,0.10831406217641851],[116,-18,67,0.10952174241403272],[116,-18,68,0.11076256308065228],[116,-18,69,0.1120523812411138],[116,-18,70,0.11340293019590653],[116,-18,71,0.11482206574848416],[116,-18,72,0.1163140850881356],[116,-18,73,0.11788004881818166],[116,-18,74,0.11951810576682825],[116,-18,75,0.12122382011196381],[116,-18,76,0.122990500266978],[116,-18,77,0.12480952891155161],[116,-18,78,0.1266706935090388],[116,-18,79,0.1285625166302611],[116,-17,64,0.10493280680687375],[116,-17,65,0.10606356626327797],[116,-17,66,0.1072071787407953],[116,-17,67,0.1083716263645278],[116,-17,68,0.10957251880224654],[116,-17,69,0.11082582269562806],[116,-17,70,0.11214348661971339],[116,-17,71,0.1135336379667211],[116,-17,72,0.11500086567302248],[116,-17,73,0.11654651054037912],[116,-17,74,0.11816896282480978],[116,-17,75,0.11986396665245694],[116,-17,76,0.12162493072670294],[116,-17,77,0.12344324471447303],[116,-17,78,0.12530860064260116],[116,-17,79,0.1272093185977861],[116,-16,64,0.1039135260499079],[116,-16,65,0.10499092249238041],[116,-16,66,0.10608572998399979],[116,-16,67,0.10720527556026035],[116,-16,68,0.10836463687514825],[116,-16,69,0.10957970948090873],[116,-16,70,0.11086253784248291],[116,-16,71,0.11222145446874886],[116,-16,72,0.11366131747506351],[116,-16,73,0.11518376080335968],[116,-16,74,0.11678745681725479],[116,-16,75,0.11846839086847737],[116,-16,76,0.12022014732492532],[116,-16,77,0.12203420646053163],[116,-16,78,0.12390025153403014],[116,-16,79,0.12580648532897507],[116,-15,64,0.10286693290531915],[116,-15,65,0.103889366844636],[116,-15,66,0.10493421170800214],[116,-15,67,0.1060080815155381],[116,-15,68,0.10712534232153172],[116,-15,69,0.10830162170526113],[116,-15,70,0.10954891708345703],[116,-15,71,0.11087567079860643],[116,-15,72,0.11228695528007436],[116,-15,73,0.1137846763901237],[116,-15,74,0.11536779472144126],[116,-15,75,0.11703256448530566],[116,-15,76,0.11877278951301405],[116,-15,77,0.12058009578907511],[116,-15,78,0.12244421984495038],[116,-15,79,0.12435331226888985],[116,-14,64,0.10178007814236077],[116,-14,65,0.10274650910485442],[116,-14,66,0.1037408529956596],[116,-14,67,0.10476896672567301],[116,-14,68,0.1058443285698119],[116,-14,69,0.10698209166246314],[116,-14,70,0.10819404709661182],[116,-14,71,0.1094886305994127],[116,-14,72,0.11087104970221705],[116,-14,73,0.1123434349368066],[116,-14,74,0.11390501487636567],[116,-14,75,0.11555231470669738],[116,-14,76,0.117279377886699],[116,-14,77,0.11907801033930195],[116,-14,78,0.12093804650766993],[116,-14,79,0.1228476365193012],[116,-13,64,0.10064332074221764],[116,-13,65,0.10155319856093216],[116,-13,66,0.10249700124324328],[116,-13,67,0.10347979658937877],[116,-13,68,0.10451400628669394],[116,-13,69,0.10561409960344316],[116,-13,70,0.10679149267390996],[116,-13,71,0.10805448416572208],[116,-13,72,0.10940832041205331],[116,-13,73,0.11085529057723682],[116,-13,74,0.11239485172734447],[116,-13,75,0.11402378353934446],[116,-13,76,0.1157363722466589],[116,-13,77,0.11752462328804127],[116,-13,78,0.11937850200403853],[116,-13,79,0.12128620161445702],[116,-12,64,0.06167560063300135],[116,-12,65,0.07372040694799878],[116,-12,66,0.08693650993649969],[116,-12,67,0.10129052801587611],[116,-12,68,0.10312899850090869],[116,-12,69,0.10419261232404978],[116,-12,70,0.1053365516157012],[116,-12,71,0.10656884021173738],[116,-12,72,0.10789465643418233],[116,-12,73,0.10931636965563032],[116,-12,74,0.11083361285045507],[116,-12,75,0.1124433909149279],[116,-12,76,0.11414022439399629],[116,-12,77,0.11591632810933905],[116,-12,78,0.11776182404527774],[116,-12,79,0.11966498772033127],[116,-11,64,0.030221841028390088],[116,-11,65,0.03765795053647341],[116,-11,66,0.0460991571301345],[116,-11,67,0.05554270375068535],[116,-11,68,0.0659815879840975],[116,-11,69,0.07740148121729304],[116,-11,70,0.08977645857750388],[116,-11,71,0.10306957439364113],[116,-11,72,0.10632686360244162],[116,-11,73,0.10772348657959913],[116,-11,74,0.109218068318559],[116,-11,75,0.11080780166777747],[116,-11,76,0.11248742572279159],[116,-11,77,0.11424936863106566],[116,-11,78,0.11608393075047872],[116,-11,79,0.11797950738723957],[116,-10,64,0.012159534959553442],[116,-10,65,0.016046629369175062],[116,-10,66,0.020727520318742965],[116,-10,67,0.026223948326419035],[116,-10,68,0.032552934885105744],[116,-10,69,0.0397246637474057],[116,-10,70,0.04773844000896851],[116,-10,71,0.056583213327873666],[116,-10,72,0.06623824956105537],[116,-10,73,0.07667385672909585],[116,-10,74,0.08785217062149368],[116,-10,75,0.0997280042628362],[116,-10,76,0.1107745496523186],[116,-10,77,0.11251995440871966],[116,-10,78,0.11434060932817024],[116,-10,79,0.11622506685248245],[116,-9,64,0.00912197248969887],[116,-9,65,0.009981098979398022],[116,-9,66,0.010823598751400761],[116,-9,67,0.011651374634702935],[116,-9,68,0.012980980767034668],[116,-9,69,0.016857051797519],[116,-9,70,0.021418508825222022],[116,-9,71,0.026675501646028117],[116,-9,72,0.0326285293778512],[116,-9,73,0.03926910947625493],[116,-9,74,0.04658048876031373],[116,-9,75,0.054538397816454386],[116,-9,76,0.06311185019440664],[116,-9,77,0.072263987277892],[116,-9,78,0.08195296866113133],[116,-9,79,0.09213290639095165],[116,-8,64,0.007698746081824113],[116,-8,65,0.008533861991927493],[116,-8,66,0.009360659174679539],[116,-8,67,0.010180190355907375],[116,-8,68,0.01099807890176754],[116,-8,69,0.011823456038774036],[116,-8,70,0.012664669618039045],[116,-8,71,0.01352885930809957],[116,-8,72,0.014421680830381983],[116,-8,73,0.01662672513473651],[116,-8,74,0.020882000385109508],[116,-8,75,0.02569015869904804],[116,-8,76,0.031037711505543065],[116,-8,77,0.036904722976284575],[116,-8,78,0.043265624359004405],[116,-8,79,0.05009006446666558],[116,-7,64,0.006265818223300807],[116,-7,65,0.0070779901254637975],[116,-7,66,0.007890093081172202],[116,-7,67,0.008702346403188394],[116,-7,68,0.009518616234592362],[116,-7,69,0.010346323093130591],[116,-7,70,0.0111925218780802],[116,-7,71,0.012063420346353057],[116,-7,72,0.012964044984907691],[116,-7,73,0.013897968922645713],[116,-7,74,0.014867101976788834],[116,-7,75,0.015871542798743924],[116,-7,76,0.016909492953480494],[116,-7,77,0.0179772326353506],[116,-7,78,0.01961147876953578],[116,-7,79,0.023766149653878507],[116,-6,64,0.004826704210375046],[116,-6,65,0.005617169835168082],[116,-6,66,0.006415620844300362],[116,-6,67,0.007221464710908171],[116,-6,68,0.008036790808481175],[116,-6,69,0.008867242647515825],[116,-6,70,0.009718509280642303],[116,-6,71,0.010595793272796873],[116,-6,72,0.011503422883834075],[116,-6,73,0.01244452990849053],[116,-6,74,0.013420793311975198],[116,-6,75,0.014432248660780394],[116,-6,76,0.015477163209046454],[116,-6,77,0.0165519763617616],[116,-6,78,0.017651305097252625],[116,-6,79,0.018768013794644028],[116,-5,64,0.003384824892437002],[116,-5,65,0.004154947227441917],[116,-5,66,0.004940781522423885],[116,-5,67,0.005740949182065726],[116,-5,68,0.006555773315811044],[116,-5,69,0.007389091066308645],[116,-5,70,0.0082451823502087],[116,-5,71,0.00912819424224898],[116,-5,72,0.010041705062020725],[116,-5,73,0.010988357009455416],[116,-5,74,0.01196955752781978],[116,-5,75,0.012985249426805111],[116,-5,76,0.014033749651910957],[116,-5,77,0.015111656440526556],[116,-5,78,0.01621382445983257],[116,-5,79,0.01733340737860974],[116,-4,64,0.0019433740455030199],[116,-4,65,0.0026945941709908394],[116,-4,66,0.0034688023468047446],[116,-4,67,0.004263863195405295],[116,-4,68,0.005078374240093455],[116,-4,69,0.005914375165897909],[116,-4,70,0.006774724579664073],[116,-4,71,0.00766248826966142],[116,-4,72,0.008580461586065088],[116,-4,73,0.009530762486265032],[116,-4,74,0.010514495461022743],[116,-4,75,0.0115314864051837],[116,-4,76,0.012580088344494462],[116,-4,77,0.013657057778883559],[116,-4,78,0.014757501252239201],[116,-4,79,0.015874891610897612],[116,-3,64,5.05247801491308E-4],[116,-3,65,0.0012390353580602207],[116,-3,66,0.002002527433515503],[116,-3,67,0.0027928639616060427],[116,-3,68,0.0036069869025151077],[116,-3,69,0.004445185742514945],[116,-3,70,0.005308917209094654],[116,-3,71,0.006200165224014956],[116,-3,72,0.007120928610370427],[116,-3,73,0.008072780776882641],[116,-3,74,0.009056501628908439],[116,-3,75,0.010071781798831855],[116,-3,76,0.011116999132092303],[116,-3,77,0.012189067209997944],[116,-3,78,0.013283355536587231],[116,-3,79,0.014393680865730821],[116,-2,64,-9.269624827994444E-4],[116,-2,65,-2.0916233108422345E-4],[116,-2,66,5.444070263357944E-4],[116,-2,67,0.0013301949748024894],[116,-2,68,0.002143585396242103],[116,-2,69,0.0029832018683907274],[116,-2,70,0.003849149655905784],[116,-2,71,0.0047423553240469],[116,-2,72,0.005664027263538503],[116,-2,73,0.0066151886951384565],[116,-2,74,0.007596283432655013],[116,-2,75,0.008606854523587535],[116,-2,76,0.009645295727528674],[116,-2,77,0.010708675635015744],[116,-2,78,0.01179263407361449],[116,-2,79,0.012891350295242411],[116,-1,64,-0.0023509124986820836],[116,-1,65,-0.0016477367704460066],[116,-1,66,-9.034513841579771E-4],[116,-1,67,-1.2226215621855964E-4],[116,-1,68,6.897786147672734E-4],[116,-1,69,0.0015297470653075904],[116,-1,70,0.002396476587966146],[116,-1,71,0.0032898849898821076],[116,-1,72,0.004210415561905233],[116,-1,73,0.005158550337873988],[116,-1,74,0.006134395847490494],[116,-1,75,0.0071373415057531],[116,-1,76,0.008165790621946167],[116,-1,77,0.009216963852999985],[116,-1,78,0.01028677476966417],[116,-1,79,0.011369777050983814],[116,0,64,-0.003764380972543319],[116,0,65,-0.0030746124345523533],[116,0,66,-0.002339168705169207],[116,0,67,-0.0015628751968357908],[116,0,68,-7.530784033722614E-4],[116,0,69,8.589847998601083E-5],[116,0,70,9.517226455286942E-4],[116,0,71,0.0018433739167495345],[116,0,72,0.0027605740566328273],[116,0,73,0.0037032872283917803],[116,0,74,0.0046712919320928475],[116,0,75,0.0056638245809866716],[116,0,76,0.006679294722173124],[116,0,77,0.007715071748898559],[116,0,78,0.008767342796468293],[116,0,79,0.009831041362089874],[116,1,64,-0.005165077598114504],[116,1,65,-0.004487715682459618],[116,1,66,-0.0037609154312520494],[116,1,67,-0.0029900870744806658],[116,1,68,-0.002183714949807373],[116,1,69,-0.0013473501986130056],[116,1,70,-4.84364541715206E-4],[116,1,71,4.033739519626287E-4],[116,1,72,0.0013149257592623635],[116,1,73,0.0022497742352107827],[116,1,74,0.00320738972269663],[116,1,75,0.004186863621079109],[116,1,76,0.005186612438578682],[116,1,77,0.006204151698335667],[116,1,78,0.007235939415184964],[116,1,79,0.008277288711167249],[116,2,64,-0.006550381464571138],[116,2,65,-0.005884722665157577],[116,2,66,-0.005166668028815183],[116,2,67,-0.004402179927018749],[116,2,68,-0.003600717092012937],[116,2,69,-0.002768872321579359],[116,2,70,-0.0019109132933941332],[116,2,71,-0.0010294504142358807],[116,2,72,-1.2600971712050345E-4],[116,2,73,7.984613921095703E-4],[116,2,74,0.0017431558883429295],[116,2,75,0.0027070365775327394],[116,2,76,0.0036885332874030774],[116,2,77,0.0046853076908624286],[116,2,78,0.005694085505357332],[116,2,79,0.006710555666186669],[116,3,64,-0.0014552569442040793],[116,3,65,-0.002965931461344778],[116,3,66,-0.004871518072013562],[116,3,67,-0.005796972926080969],[116,3,68,-0.0050022367924703855],[116,3,69,-0.004177132901505926],[116,3,70,-0.0033266737587541034],[116,3,71,-0.0024540959663851324],[116,3,72,-0.0015614254437080874],[116,3,73,-6.499782254242217E-4],[116,3,74,2.792035192109625E-4],[116,3,75,0.0012249804553926848],[116,3,76,0.0021858101009129345],[116,3,77,0.0031595058079406085],[116,3,78,0.004143060478569039],[116,3,79,0.005132534643796265],[116,4,64,9.312313288527036E-5],[116,4,65,-3.092033008648871E-4],[116,4,66,-8.348696118314234E-4],[116,4,67,-0.0015552345575052646],[116,4,68,-0.0025340170966115126],[116,4,69,-0.003821360814600798],[116,4,70,-0.004729712272045825],[116,4,71,-0.0038689501282422813],[116,4,72,-0.0029899998730708467],[116,4,73,-0.00209447292279443],[116,4,74,-0.0011835920912316733],[116,4,75,-2.5856011386350404E-4],[116,4,76,6.791339077104905E-4],[116,4,77,0.001627470077354491],[116,4,78,0.0025837150894448785],[116,4,79,0.0035443010896846795],[116,5,64,2.2517173950699048E-4],[116,5,65,-1.4453169267444654E-4],[116,5,66,-3.4036384842015655E-4],[116,5,67,-4.563122912361065E-4],[116,5,68,-5.781822759916329E-4],[116,5,69,-7.775359670319415E-4],[116,5,70,-0.0011127928493644581],[116,5,71,-0.00163066505590277],[116,5,72,-0.0023675084377707202],[116,5,73,-0.003350609680159644],[116,5,74,-0.0026439599186864607],[116,5,75,-0.0017426772668565434],[116,5,76,-8.308954697252286E-4],[116,5,77,8.956230202758477E-5],[116,5,78,0.001016256238109058],[116,5,79,0.0019460006211266462],[116,6,64,0.0026852238616878778],[116,6,65,0.0012717193905526837],[116,6,66,3.549941710547935E-4],[116,6,67,-1.815667666928109E-4],[116,6,68,-4.458098411001909E-4],[116,6,69,-5.306683695475218E-4],[116,6,70,-5.152354759631814E-4],[116,6,71,-4.661492348960796E-4],[116,6,72,-4.388983035213263E-4],[116,6,73,-4.7906928625323313E-4],[116,6,74,-6.235312464686857E-4],[116,6,75,-9.01553141550254E-4],[116,6,76,-0.0013358503216257909],[116,6,77,-0.001454357035675635],[116,6,78,-5.600002450424966E-4],[116,6,79,3.364909223065884E-4],[116,7,64,0.011219772269545356],[116,7,65,0.007685740931736052],[116,7,66,0.004996978989656958],[116,7,67,0.003014365952864098],[116,7,68,0.0016080687516219952],[116,7,69,6.637931144920703E-4],[116,7,70,8.174899028945511E-5],[116,7,71,-2.2468062037644018E-4],[116,7,72,-3.3020088816484224E-4],[116,7,73,-2.988152863630186E-4],[116,7,74,-1.8497854399494068E-4],[116,7,75,-3.4687630766231166E-5],[116,7,76,1.1349320807780761E-4],[116,7,77,2.2747678330208338E-4],[116,7,78,2.8076961293548166E-4],[116,7,79,2.5166341270474994E-4],[116,8,64,0.029569253685233166],[116,8,65,0.022842075139986245],[116,8,66,0.01733244176494843],[116,8,67,0.012879723009076327],[116,8,68,0.009332654864519061],[116,8,69,0.00655584674627244],[116,8,70,0.004428909936719942],[116,8,71,0.0028452416764166016],[116,8,72,0.0017108421799257101],[116,8,73,9.431588488765354E-4],[116,8,74,4.699721598544717E-4],[116,8,75,2.2833309873377332E-4],[116,8,76,1.6355907010691276E-4],[116,8,77,2.2829331850676284E-4],[116,8,78,3.816316502044018E-4],[116,8,79,5.883193770911188E-4],[116,9,64,0.061425712960416795],[116,9,65,0.05045504987545121],[116,9,66,0.04108974267743385],[116,9,67,0.033151620354749015],[116,9,68,0.026470561478307002],[116,9,69,0.02089165851037735],[116,9,70,0.016274857363897475],[116,9,71,0.012494070698380228],[116,9,72,0.009436217078328996],[116,9,73,0.007000214515126684],[116,9,74,0.005095966152786503],[116,9,75,0.0036433639373400937],[116,9,76,0.0025713279603101795],[116,9,77,0.0018168936305544918],[116,9,78,0.0013243550765450014],[116,9,79,0.00104447062953179],[116,10,64,0.06106129883013777],[116,10,65,0.05998649945700396],[116,10,66,0.05894034245179295],[116,10,67,0.057914721113065046],[116,10,68,0.05672393753067088],[116,10,69,0.04739083906987256],[116,10,70,0.039350791744236745],[116,10,71,0.032460711334190456],[116,10,72,0.026590011331610732],[116,10,73,0.021620014337677802],[116,10,74,0.017443229408522005],[116,10,75,0.01396255718761214],[116,10,76,0.011090466580329623],[116,10,77,0.00874817380317727],[116,10,78,0.006864845452998871],[116,10,79,0.005376840737601654],[116,11,64,0.05893986514564595],[116,11,65,0.05784258582252544],[116,11,66,0.05677213549205737],[116,11,67,0.055720530587969275],[116,11,68,0.05467602416707466],[116,11,69,0.05449100071938531],[116,11,70,0.05469856082328315],[116,11,71,0.05497102604166829],[116,11,72,0.055304449814904996],[116,11,73,0.048522613357204404],[116,11,74,0.04124303067587123],[116,11,75,0.03492491947965361],[116,11,76,0.029465318930957444],[116,11,77,0.024770165053391472],[116,11,78,0.020753685731796888],[116,11,79,0.017337775411895073],[116,12,64,0.05682215916226005],[116,12,65,0.05570338740375849],[116,12,66,0.05460926626481917],[116,12,67,0.05353215190130722],[116,12,68,0.052460524670815065],[116,12,69,0.051755882895244784],[116,12,70,0.05189765279008502],[116,12,71,0.05210132021755661],[116,12,72,0.052363018824807296],[116,12,73,0.05268006759511131],[116,12,74,0.05305058289700885],[116,12,75,0.0534731327556513],[116,12,76,0.0539464335997403],[116,12,77,0.05359592832981972],[116,12,78,0.046716031516295546],[116,12,79,0.04066098012627979],[116,13,64,0.05471350903248788],[116,13,65,0.05357467593827749],[116,13,66,0.05245799608231516],[116,13,67,0.051356378360788914],[116,13,68,0.050258690417712026],[116,13,69,0.04915630209578773],[116,13,70,0.0490974180192528],[116,13,71,0.0492327607717535],[116,13,72,0.04942330203726197],[116,13,73,0.04966644143922015],[116,13,74,0.04996041417334411],[116,13,75,0.05030395562680003],[116,13,76,0.05069600550537815],[116,13,77,0.05113545162350308],[116,13,78,0.05162091340790731],[116,13,79,0.052150565064509935],[116,14,64,0.05262077573853742],[116,14,65,0.051463693009895305],[116,14,66,0.05032598019895195],[116,14,67,0.049201293572988906],[116,14,68,0.048079036063786405],[116,14,69,0.04695071495155745],[116,14,70,0.046305704183361274],[116,14,71,0.046373524266362126],[116,14,72,0.04649376614235291],[116,14,73,0.04666385438434927],[116,14,74,0.04688207529494274],[116,14,75,0.04714725727231396],[116,14,76,0.047458487155098115],[116,14,77,0.04781486271497424],[116,14,78,0.04821528137022303],[116,14,79,0.048658265100411956],[116,15,64,0.050554874649669325],[116,15,65,0.04938162879729533],[116,15,66,0.04822466772268291],[116,15,67,0.04707855786925774],[116,15,68,0.04593336618760012],[116,15,69,0.04478078784797915],[116,15,70,0.04361522249670688],[116,15,71,0.043533747343379586],[116,15,72,0.043584304406846845],[116,15,73,0.043681864286081076],[116,15,74,0.043824696786567946],[116,15,75,0.04401165158569533],[116,15,76,0.04424189170035942],[116,15,77,0.044514658926138824],[116,15,78,0.044829071343760386],[116,15,79,0.04518395290519183],[116,16,64,0.04853153938613454],[116,16,65,0.047344282036814955],[116,16,66,0.04616980829324131],[116,16,67,0.045003720338562564],[116,16,68,0.043836863055027486],[116,16,69,0.04266117539155656],[116,16,70,0.0414711419724437],[116,16,71,0.0407249043940864],[116,16,72,0.0407054283569999],[116,16,73,0.040729939110869424],[116,16,74,0.04079664963883004],[116,16,75,0.0409043877407211],[116,16,76,0.041052350664635404],[116,16,77,0.04123988692978855],[116,16,78,0.04146630545975642],[116,16,79,0.04173071207283227],[116,17,64,0.0465604820062919],[116,17,65,0.04536136966975731],[116,17,66,0.04417104037580115],[116,17,67,0.04298622059858798],[116,17,68,0.041798633013934834],[116,17,69,0.040600524019449725],[116,17,70,0.03938650098613429],[116,17,71,0.038153215426680896],[116,17,72,0.03786198915078905],[116,17,73,0.03781211558950682],[116,17,74,0.037801145761305645],[116,17,75,0.03782787055493681],[116,17,76,0.03789150700585687],[116,17,77,0.037991499088926454],[116,17,78,0.03812734056432934],[116,17,79,0.03829841996017188],[116,18,64,0.04464409097019183],[116,18,65,0.043435267182956386],[116,18,66,0.04223069873787778],[116,18,67,0.04102828888200752],[116,18,68,0.0398207226060983],[116,18,69,0.03860062319021457],[116,18,70,0.037362770222971665],[116,18,71,0.036103847609166066],[116,18,72,0.03505277573483228],[116,18,73,0.03492674638584226],[116,18,74,0.03483612080709476],[116,18,75,0.03477965936406976],[116,18,76,0.034756604852502676],[116,18,77,0.03476650412652495],[116,18,78,0.03480904613154605],[116,18,79,0.034883916464011774],[116,19,64,0.04277859978199468],[116,19,65,0.04156217550328305],[116,19,66,0.04034497048265331],[116,19,67,0.039126082618516585],[116,19,68,0.037899227327140135],[116,19,69,0.036657477811938885],[116,19,70,0.03539584408822959],[116,19,71,0.034111088419450236],[116,19,72,0.032801504222998504],[116,19,73,0.03206733332327909],[116,19,74,0.03189499320364788],[116,19,75,0.03175314758978812],[116,19,76,0.03164108541425596],[116,19,77,0.031558476355575966],[116,19,78,0.031505225032154006],[116,19,79,0.03148133583624851],[116,20,64,0.04027812111674997],[116,20,65,0.03938757116250842],[116,20,66,0.03846080745866824],[116,20,67,0.03727077896316408],[116,20,68,0.03602535830962611],[116,20,69,0.034762341091396316],[116,20,70,0.033477031827460015],[116,20,71,0.03216632592733451],[116,20,72,0.03082854239914883],[116,20,73,0.02946325964632596],[116,20,74,0.028967404819271153],[116,20,75,0.02873822942795256],[116,20,76,0.028535175780656157],[116,20,77,0.028358063757909918],[116,20,78,0.028207039210162696],[116,20,79,0.028082449466466864],[116,21,64,0.036852848065475126],[116,21,65,0.03592933219017052],[116,21,66,0.03497794212825321],[116,21,67,0.033999473634711994],[116,21,68,0.033000290597813106],[116,21,69,0.03198853301217183],[116,21,70,0.030970924587761194],[116,21,71,0.02995281508316245],[116,21,72,0.028891476305482063],[116,21,73,0.027495628515524166],[116,21,74,0.026070592510646938],[116,21,75,0.02572195335500021],[116,21,76,0.025426470465451056],[116,21,77,0.025153494930787404],[116,21,78,0.02490344044629732],[116,21,79,0.024677019967294742],[116,22,64,0.03338147649086263],[116,22,65,0.03242485597882646],[116,22,66,0.031448930408837006],[116,22,67,0.03045349248570824],[116,22,68,0.029443832319375335],[116,22,69,0.028427473149196688],[116,22,70,0.027410756370050762],[116,22,71,0.026398817739596465],[116,22,72,0.025395640725003606],[116,22,73,0.024404118643454795],[116,22,74,0.023426125399457695],[116,22,75,0.022546650506340592],[116,22,76,0.022300505628621087],[116,22,77,0.021931084991119777],[116,22,78,0.021581606454445935],[116,22,79,0.021253166961072316],[116,23,64,0.029888487349906324],[116,23,65,0.028898869263354814],[116,23,66,0.027898618028628478],[116,23,67,0.02688661810488288],[116,23,68,0.02586708684203327],[116,23,69,0.024846863547743354],[116,23,70,0.023831839516447444],[116,23,71,0.022826871158054284],[116,23,72,0.021835781078725556],[116,23,73,0.02086137383143453],[116,23,74,0.0199054661751749],[116,23,75,0.018968931643259558],[116,23,76,0.018142118254456486],[116,23,77,0.01835392533116684],[116,23,78,0.018227382622811886],[116,23,79,0.017797745028555606],[116,24,64,0.0263994880379019],[116,24,65,0.02537724034161192],[116,24,66,0.024352998772514966],[116,24,67,0.023324855154838245],[116,24,68,0.022295972809146383],[116,24,69,0.021272447089438856],[116,24,70,0.020259655371226294],[116,24,71,0.01926211130483533],[116,24,72,0.018283415870332637],[116,24,73,0.017326228689667197],[116,24,74,0.016392259471121006],[116,24,75,0.015482279408380317],[116,24,76,0.014596152306542532],[116,24,77,0.013732885160735175],[116,24,78,0.01395300970846055],[116,24,79,0.014251885756908817],[116,25,64,0.022940331791512697],[116,25,65,0.021886095680143536],[116,25,66,0.02083833433652201],[116,25,67,0.019794479665340058],[116,25,68,0.01875667679092986],[116,25,69,0.017730226084696547],[116,25,70,0.01671993315358702],[116,25,71,0.015729909450899377],[116,25,72,0.014763476336429254],[116,25,73,0.013823094593091206],[116,25,74,0.012910319311187772],[116,25,75,0.012025779984997426],[116,25,76,0.011169185602749048],[116,25,77,0.010339354451075585],[116,25,78,0.009534268299313302],[116,25,79,0.009532005092719205],[116,26,64,0.01953629066796818],[116,26,65,0.01845098923697527],[116,26,66,0.017380325489887334],[116,26,67,0.016321217306767367],[116,26,68,0.015274843582257372],[116,26,69,0.014245669241511251],[116,26,70,0.01323787797489268],[116,26,71,0.012255125328289746],[116,26,72,0.011300399513554],[116,26,73,0.010375912396784518],[116,26,74,0.00948302061105531],[116,26,75,0.008622176660906639],[116,26,76,0.007792909809775718],[116,26,77,0.00699383646937068],[116,26,78,0.006222699742501816],[116,26,79,0.005476437708692527],[116,27,64,0.01621128401257524],[116,27,65,0.01509612638788132],[116,27,66,0.014003336383029764],[116,27,67,0.012929472829596627],[116,27,68,0.011874815143759878],[116,27,69,0.010842964148106963],[116,27,70,0.009837440601366907],[116,27,71,0.008861397622353868],[116,27,72,0.007917442620065242],[116,27,73,0.007007493567645473],[116,27,74,0.006132669601068231],[116,27,75,0.005293215832585338],[116,27,76,0.004488462181635012],[116,27,77,0.003716815942894838],[116,27,78,0.002975787733282363],[116,27,79,0.002262050387619364],[116,28,64,0.012987164362707746],[116,28,65,0.011843644378362907],[116,28,66,0.010729673875406747],[116,28,67,0.009641612475412818],[116,28,68,0.008578919903655086],[116,28,69,0.0075443168787667604],[116,28,70,0.006540630443623864],[116,28,71,0.005570473134176899],[116,28,72,0.004636030916987193],[116,28,73,0.0037388890184031987],[116,28,74,0.002879895658823161],[116,28,75,0.002059063604669348],[116,28,76,0.0012755093536796509],[116,28,77,5.27429676830779E-4],[116,28,78,-1.878848465428889E-4],[116,28,79,-8.739997443869835E-4],[116,29,64,0.009883062705281623],[116,29,65,0.008712951191045029],[116,29,66,0.00757892372437439],[116,29,67,0.00647730113234167],[116,29,68,0.005406814105845651],[116,29,69,0.004369300301384008],[116,29,70,0.003366873225092249],[116,29,71,0.002401575920148796],[116,29,72,0.001475140192307378],[116,29,73,5.887866105922355E-4],[116,29,74,-2.569346729143104E-4],[116,29,75,-0.0010622623493862463],[116,29,76,-0.0018283017958325546],[116,29,77,-0.002557062603993958],[116,29,78,-0.003251456159599429],[116,29,79,-0.003915253723411046],[116,30,64,0.0069147949249377845],[116,30,65,0.0057201246362522835],[116,30,66,0.004567345393711674],[116,30,67,0.0034528959261458715],[116,30,68,0.002374876809989419],[116,30,69,0.0013342525881278734],[116,30,70,3.32414707681002E-4],[116,30,71,-6.291823541031005E-4],[116,30,72,-0.00154928505200701],[116,30,73,-0.0024270617673651223],[116,30,74,-0.003262280763031511],[116,30,75,-0.004055445142448665],[116,30,76,-0.004807884967570692],[116,30,77,-0.005521806796125425],[116,30,78,-0.006200300998238584],[116,30,79,-0.006847307305107532],[116,31,64,0.00409433117561214],[116,31,65,0.0028773733666023252],[116,31,66,0.0017073271330741455],[116,31,67,5.808978319797783E-4],[116,31,68,-5.043399545566444E-4],[116,31,69,-0.0015482726696774917],[116,31,70,-0.002550228242924231],[116,31,71,-0.003509349699195913],[116,31,72,-0.004424876716676552],[116,31,73,-0.0052963827209715235],[116,31,74,-0.006123967418339534],[116,31,75,-0.0069084047909968044],[116,31,76,-0.007651246692851252],[116,31,77,-0.00835488229381485],[116,31,78,-0.009022553724254784],[116,31,79,-0.009658328367496251],[116,32,64,0.001429329803796424],[116,32,65,1.925614101161247E-4],[116,32,66,-9.930971269075893E-4],[116,32,67,-0.0021305372133847613],[116,32,68,-0.0032226044815688356],[116,32,69,-0.004270003440334293],[116,32,70,-0.005272768064675177],[116,32,71,-0.006230637670759843],[116,32,72,-0.007143350617164083],[116,32,73,-0.008010892723931932],[116,32,74,-0.008833700290084148],[116,32,75,-0.009612817712906193],[116,32,76,-0.01035000983019414],[116,32,77,-0.011047829218765206],[116,32,78,-0.011709638788201138],[116,32,79,-0.012339590107318305],[116,33,64,-0.0010772626298957168],[116,33,65,-0.0023312022662345822],[116,33,66,-0.0035306676013497867],[116,33,67,-0.004678026299617867],[116,33,68,-0.005776440806230005],[116,33,69,-0.0068273920969399195],[116,33,70,-0.007831597263033492],[116,33,71,-0.008789380833316953],[116,33,72,-0.009700975547546873],[116,33,73,-0.010566777662396823],[116,33,74,-0.011387556651198151],[116,33,75,-0.0121646192822375],[116,33,76,-0.012899928179004339],[116,33,77,-0.013596175078656134],[116,33,78,-0.014256809111373163],[116,33,79,-0.014886020522583027],[116,34,64,-0.0034275437256484284],[116,34,65,-0.0046959076912053924],[116,34,66,-0.0059072537762837034],[116,34,67,-0.007063325269036728],[116,34,68,-0.008167504962122886],[116,34,69,-0.009222002933697052],[116,34,70,-0.010228188444691354],[116,34,71,-0.011186950858827588],[116,34,72,-0.012099003079155122],[116,34,73,-0.012965139891828688],[116,34,74,-0.013786451061548811],[116,34,75,-0.014564489145886452],[116,34,76,-0.015301392113593546],[116,34,77,-0.015999960964221658],[116,34,78,-0.01518686160429744],[116,34,79,-0.013895967628160142],[116,35,64,-0.0056289185020223535],[116,35,65,-0.006908919839299465],[116,35,66,-0.00813014339456438],[116,35,67,-0.009293630801752113],[116,35,68,-0.010402900770588525],[116,35,69,-0.011460843136363735],[116,35,70,-0.0124694425113763],[116,35,71,-0.013430124275858633],[116,35,72,-0.01434405725401332],[116,35,73,-0.015212412128197654],[116,35,74,-0.01603657542077562],[116,35,75,-0.014653473388827413],[116,35,76,-0.013259745379493877],[116,35,77,-0.011881378449265232],[116,35,78,-0.010522535879990637],[116,35,79,-0.009187873113258367],[116,36,64,-0.007694291960900921],[116,36,65,-0.008983185046443248],[116,36,66,-0.010212263793507337],[116,36,67,-0.01138181740544196],[116,36,68,-0.012495433777913635],[116,36,69,-0.013556635909526936],[116,36,70,-0.014567983822666634],[116,36,71,-0.015531402804358567],[116,36,72,-0.014429446642798301],[116,36,73,-0.012956453782750597],[116,36,74,-0.011491023614949797],[116,36,75,-0.010036275153614292],[116,36,76,-0.008595621350164312],[116,36,77,-0.007172856419395769],[116,36,78,-0.005772200289703913],[116,36,79,-0.004398300512659548],[116,37,64,-0.009642189275197433],[116,37,65,-0.010937366224608329],[116,37,66,-0.012172333961839213],[116,37,67,-0.013346607726872517],[116,37,68,-0.014463801823235457],[116,37,69,-0.014480417667141084],[116,37,70,-0.012947886395415933],[116,37,71,-0.011414880386985347],[116,37,72,-0.009885047971585873],[116,37,73,-0.008361732212024056],[116,37,74,-0.006848186876901988],[116,37,75,-0.0053477504461163],[116,37,76,-0.0038639781417144914],[116,37,77,-0.0024007320870210983],[116,37,78,-9.622298034021165E-4],[116,37,79,4.469486451580627E-4],[116,38,64,-0.011496166920345599],[116,38,65,-0.012795244639603956],[116,38,66,-0.014034262072158542],[116,38,67,-0.013194476737238192],[116,38,68,-0.011622297710200782],[116,38,69,-0.010040783077518097],[116,38,70,-0.008455574652369702],[116,38,71,-0.006871368717899463],[116,38,72,-0.005292213810476403],[116,38,73,-0.0037217681467067174],[116,38,74,-0.0021635164413825953],[116,38,75,-6.209459765010724E-4],[116,38,76,9.023181073133276E-4],[116,38,77,0.002402418217484169],[116,38,78,0.0038752102303942553],[116,38,79,0.005316249643898159],[116,39,64,-0.01327102075445845],[116,39,65,-0.012022513900475366],[116,39,66,-0.010435224349360306],[116,39,67,-0.008825930223835696],[116,39,68,-0.007200674268554959],[116,39,69,-0.005566977520849083],[116,39,70,-0.003931034378705445],[116,39,71,-0.00229799330969109],[116,39,72,-6.722559883322458E-4],[116,39,73,9.422628018045707E-4],[116,39,74,0.002541914775981711],[116,39,75,0.0041231374297037325],[116,39,76,0.005682313047843825],[116,39,77,0.007215667389183965],[116,39,78,0.00871920789132437],[116,39,79,0.01018870114371313],[116,40,64,-0.009355588931802767],[116,40,65,-0.007735584040562804],[116,40,66,-0.006094366713842806],[116,40,67,-0.004431728660759898],[116,40,68,-0.0027537988904787606],[116,40,69,-0.001068771278888894],[116,40,70,6.165942717199293E-4],[116,40,71,0.0022967039009775545],[116,40,72,0.00396682662711753],[116,40,73,0.00562282937973275],[116,40,74,0.007260950530417173],[116,40,75,0.008877612113556225],[116,40,76,0.01046927082149356],[116,40,77,0.01203230775315189],[116,40,78,0.013562956793689754],[116,40,79,0.015057271406743749],[116,41,64,-0.005113672483905987],[116,41,65,-0.0034372305629827957],[116,41,66,-0.001741264953467045],[116,41,67,-2.4794307261761346E-5],[116,41,68,0.0017059497302718643],[116,41,69,0.0034420467790858998],[116,41,70,0.005176138338626601],[116,41,71,0.0069021718173884385],[116,41,72,0.008615091185502629],[116,41,73,0.010310564815689973],[116,41,74,0.011984750846540508],[116,41,75,0.013634100293747366],[116,41,76,0.015255198028003993],[116,41,77,0.01684464163415915],[116,41,78,0.01839895806570051],[116,41,79,0.01991455791349272],[116,42,64,-8.766847570772278E-4],[116,42,65,8.575887227122947E-4],[116,42,66,0.002609401466823347],[116,42,67,0.0043805490829569305],[116,42,68,0.006164677217353696],[116,42,69,0.007952074936578634],[116,42,70,0.009734739262416863],[116,42,71,0.011506131084066734],[116,42,72,0.01326085807762768],[116,42,73,0.014994393792859726],[116,42,74,0.016702833277682218],[116,42,75,0.018382685503567926],[116,42,76,0.02003070274897981],[116,42,77,0.021643746994730463],[116,42,78,0.023218693285398728],[116,42,79,0.02475236991649248],[116,43,64,0.003340445952053094],[116,43,65,0.005133996927390235],[116,43,66,0.006942890445784969],[116,43,67,0.008769772572104352],[116,43,68,0.010608142790855106],[116,43,69,0.01244743246752059],[116,43,70,0.01427894165128254],[116,43,71,0.0160956074030951],[116,43,72,0.017891678104583295],[116,43,73,0.019662422858192877],[116,43,74,0.021403876389106232],[116,43,75,0.02311261975301945],[116,43,76,0.02478559704864852],[116,43,77,0.02641996823128343],[116,43,78,0.028012998024639163],[116,43,79,0.0295619808344016],[116,44,64,0.007524329156121755],[116,44,65,0.009378493875501678],[116,44,66,0.011245677412723152],[116,44,67,0.013129399548092679],[116,44,68,0.015022986671946579],[116,44,69,0.016914947873895105],[116,44,70,0.018795832145587946],[116,44,71,0.02065801015011922],[116,44,72,0.022495339742295183],[116,44,73,0.02430286540901749],[116,44,74,0.026076552082959205],[116,44,75,0.02781305367712086],[116,44,76,0.02950951658333521],[116,44,77,0.03116341827590781],[116,44,78,0.03277244106314439],[116,44,79,0.034334380936251734],[116,45,64,0.011664481754919796],[116,45,65,0.0135803171789552],[116,45,66,0.015506799068679288],[116,45,67,0.017448324431424845],[116,45,68,0.01939801558321013],[116,45,69,0.02134340146061871],[116,45,70,0.023274228281757004],[116,45,71,0.0251822561573049],[116,45,72,0.027060916335766346],[116,45,73,0.02890500106167129],[116,45,74,0.030710386544242102],[116,45,75,0.032473789429286054],[116,45,76,0.03419255706326561],[116,45,77,0.035800277353235765],[116,45,78,0.03713386510228261],[116,45,79,0.038427459552829266],[116,46,64,0.01575476407928108],[116,46,65,0.017732868511263728],[116,46,66,0.01971926060703373],[116,46,67,0.021719192463346134],[116,46,68,0.023725546200604315],[116,46,69,0.025724822071738773],[116,46,70,0.02770591714729534],[116,46,71,0.029659938424446797],[116,46,72,0.03157985295768685],[116,46,73,0.033436835216786524],[116,46,74,0.03502541609331951],[116,46,75,0.03657306816489973],[116,46,76,0.03808114616580127],[116,46,77,0.03955059800900568],[116,46,78,0.04098212122429103],[116,46,79,0.04237628628814412],[116,47,64,0.019475764676082117],[116,47,65,0.02167785963614445],[116,47,66,0.023804856822662274],[116,47,67,0.025847924035712806],[116,47,68,0.02781184142018708],[116,47,69,0.029708714648451075],[116,47,70,0.031548237232320225],[116,47,71,0.03333786174564813],[116,47,72,0.03508315726307373],[116,47,73,0.03678813698388664],[116,47,74,0.03845555549190625],[116,47,75,0.04008717519980217],[116,47,76,0.041684001620649475],[116,47,77,0.04324648720120872],[116,47,78,0.04477470353990535],[116,47,79,0.04626848189791435],[116,48,64,0.022315556021776404],[116,48,65,0.024557195507565386],[116,48,66,0.02672668933819118],[116,48,67,0.028814399789820005],[116,48,68,0.03082534136345051],[116,48,69,0.03277260535149986],[116,48,70,0.03466668809356989],[116,48,71,0.036515643040801626],[116,48,72,0.03832544219640429],[116,48,73,0.04010030960909477],[116,48,74,0.0418430263417724],[116,48,75,0.04355520642931944],[116,48,76,0.04523754342834686],[116,48,77,0.04689002724869202],[116,48,78,0.048512131041089306],[116,48,79,0.0501029679978924],[116,49,64,0.025161377601676794],[116,49,65,0.027439493932824917],[116,49,66,0.029648078213095085],[116,49,67,0.031776769041042256],[116,49,68,0.03383084535045336],[116,49,69,0.03582438118215802],[116,49,70,0.037768688356471604],[116,49,71,0.03967244746454502],[116,49,72,0.04154207041716917],[116,49,73,0.04338203709173303],[116,49,74,0.0451952054777254],[116,49,75,0.04698309480570144],[116,49,76,0.048746141227028646],[116,49,77,0.05048392569288347],[116,49,78,0.052195373760610425],[116,49,79,0.05387892713397071],[116,50,64,0.02802350424275651],[116,50,65,0.030335058488656565],[116,50,66,0.03257925804302448],[116,50,67,0.03474511332325174],[116,50,68,0.03683819050389377],[116,50,69,0.03887352178358795],[116,50,70,0.040863231092949426],[116,50,71,0.04281664224683541],[116,50,72,0.044740639359255215],[116,50,73,0.046640003545877516],[116,50,74,0.048517725300501184],[116,50,75,0.050375292008444185],[116,50,76,0.05221295013467512],[116,50,77,0.05402994169880182],[116,50,78,0.05582471472261548],[116,50,79,0.057595107409181424],[116,51,64,0.030908745750837952],[116,51,65,0.033250789372694566],[116,51,66,0.03552714541823429],[116,51,67,0.03772630373282034],[116,51,68,0.03985413331588125],[116,51,69,0.041926579153211574],[116,51,70,0.04395655775004278],[116,51,71,0.04595404092822835],[116,51,72,0.047926410661952794],[116,51,73,0.04987879249751504],[116,51,74,0.051814366938298745],[116,51,75,0.05373465824398076],[116,51,76,0.055639800159585986],[116,51,77,0.05752877815651902],[116,51,78,0.059399647834260584],[116,51,79,0.0612497291985517],[116,52,64,0.16755330954340428],[116,52,65,0.17905263425485723],[116,52,66,0.19019159489504026],[116,52,67,0.04072401437136373],[116,52,68,0.04288234947796536],[116,52,69,0.04498716332329582],[116,52,70,0.047052129812630294],[116,52,71,0.04908786173973701],[116,52,72,0.0511022565349507],[116,52,73,0.053100822960930036],[116,52,74,0.055086988141147555],[116,52,75,0.057062384365003674],[116,52,76,0.059027115171134244],[116,52,77,0.06098000026855703],[116,52,78,0.06291879891401948],[116,52,79,0.064840411423977],[116,53,64,0.18180463467646718],[116,53,65,0.19336339988676887],[116,53,66,0.204560965423611],[116,53,67,0.21534044242402145],[116,53,68,0.22573514844471088],[116,53,69,0.23583039671451522],[116,53,70,0.24569515061550054],[116,53,71,0.2553824556246167],[116,53,72,0.2649312932787932],[116,53,73,0.27436833499938806],[116,53,74,0.05833548693475269],[116,53,75,0.06035794726596303],[116,53,76,0.06237386230668591],[116,53,77,0.06438198140932853],[116,53,78,0.06637987054551313],[116,53,79,0.06836411797490471],[116,54,64,0.196092230514034],[116,54,65,0.2076918948309982],[116,54,66,0.21892670489630184],[116,54,67,0.22973973341963644],[116,54,68,0.24016588116616386],[116,54,69,0.25029326166929755],[116,54,70,0.2601934364199023],[116,54,71,0.2699217510155691],[116,54,72,0.2795191331044858],[116,54,73,0.28901380043646596],[116,54,74,0.2984228792632458],[116,54,75,0.3077539325949178],[116,54,76,0.3170063968337896],[116,54,77,0.32617292435902817],[116,54,78,0.3352406288943106],[116,54,79,0.34419223005129207],[116,55,64,0.21037850383191498],[116,55,65,0.22200170611851475],[116,55,66,0.23325372193915142],[116,55,67,0.2440782751137425],[116,55,68,0.2545118062059687],[116,55,69,0.26464468838446026],[116,55,70,0.27455070540744325],[116,55,71,0.28428729172952333],[116,55,72,0.2938972586052037],[116,55,73,0.30341044020271846],[116,55,74,0.31284526127656026],[116,55,75,0.32221022691483536],[116,55,76,0.3315053335604216],[116,55,77,0.3407233992021939],[116,55,78,0.3498513095259468],[116,55,79,0.3588711760128],[116,56,64,0.22461308595623355],[116,56,65,0.23332987695363536],[116,56,66,0.2434386749915162],[116,56,67,0.25372903725783535],[116,56,68,0.26493156626340947],[116,56,69,0.27384379882229376],[116,56,70,0.2795585826473326],[116,56,71,0.28526703183494523],[116,56,72,0.2943383549338208],[116,56,73,0.30421035173541816],[116,56,74,0.3120919914231404],[116,56,75,0.31947017498810465],[116,56,76,0.3235925057745198],[116,56,77,0.32839540938022416],[116,56,78,0.33650330574735177],[116,56,79,0.3470466299827562],[116,57,64,0.1660770939487669],[116,57,65,0.17490558176290683],[116,57,66,0.18532722739088459],[116,57,67,0.1969904749946812],[116,57,68,0.20833371603229983],[116,57,69,0.21744957982956137],[116,57,70,0.22342970831237136],[116,57,71,0.2287303450484782],[116,57,72,0.23676316346681664],[116,57,73,0.24571833451215955],[116,57,74,0.25451685108965905],[116,57,75,0.26145170198082723],[116,57,76,0.2661844581846346],[116,57,77,0.27209538669897915],[116,57,78,0.28066594828311303],[116,57,79,0.291430152933348],[116,58,64,0.11943041190950619],[116,58,65,0.12731563474080845],[116,58,66,0.13770859948659872],[116,58,67,0.15093751679842904],[116,58,68,0.16173976445552363],[116,58,69,0.1709590314741246],[116,58,70,0.1764792264158444],[116,58,71,0.18142645094160778],[116,58,72,0.18937738082791364],[116,58,73,0.1993319095267971],[116,58,74,0.20804518858062748],[116,58,75,0.21417154910879663],[116,58,76,0.22039280311790443],[116,58,77,0.2255226295869071],[116,58,78,0.23366596696123512],[116,58,79,0.24537271062354635],[116,59,64,0.0580768178433882],[116,59,65,0.0665274603827044],[116,59,66,0.07639414623240826],[116,59,67,0.09009106277291581],[116,59,68,0.10139558965645014],[116,59,69,0.10946882801403074],[116,59,70,0.11559086738272074],[116,59,71,0.12148198250861184],[116,59,72,0.12884078815123434],[116,59,73,0.13986563883454803],[116,59,74,0.1481703930620033],[116,59,75,0.15522280492931903],[116,59,76,0.1616036491745639],[116,59,77,0.1670574064983593],[116,59,78,0.17501596504635822],[116,59,79,0.18665721140889244],[116,60,64,0.022624582978071506],[116,60,65,0.02369284876294078],[116,60,66,0.023942871216082746],[116,60,67,0.02624341359713316],[116,60,68,0.037192323513527165],[116,60,69,0.04651259278396074],[116,60,70,0.053305618429865455],[116,60,71,0.05855535824588536],[116,60,72,0.06694547220363958],[116,60,73,0.0779539246156413],[116,60,74,0.08711813973093903],[116,60,75,0.09391794763523298],[116,60,76,0.10049560577320578],[116,60,77,0.10626516357096567],[116,60,78,0.11353394381444114],[116,60,79,0.1255678330122091],[116,61,64,0.009218872705624149],[116,61,65,0.007923321997586696],[116,61,66,0.0061476538928400045],[116,61,67,0.006826261330469398],[116,61,68,0.007159916740911487],[116,61,69,0.009161404194655883],[116,61,70,0.011193916936886572],[116,61,71,0.011833694539280765],[116,61,72,0.014614654612972117],[116,61,73,0.017251413764275306],[116,61,74,0.02730010093873561],[116,61,75,0.03401095739180394],[116,61,76,0.040626083772403176],[116,61,77,0.04663966292246032],[116,61,78,0.05462205331174542],[116,61,79,0.06792867865898289],[116,62,64,-0.006390106854560127],[116,62,65,-0.00846981877030784],[116,62,66,-0.009821207464957162],[116,62,67,-0.009983303244053046],[116,62,68,-0.009824405476560905],[116,62,69,-0.007338177532370552],[116,62,70,-0.004430793344637375],[116,62,71,-0.003917902519137208],[116,62,72,-9.159927739875902E-4],[116,62,73,0.0020134069172852635],[116,62,74,0.004007516980931347],[116,62,75,0.004722222606496408],[116,62,76,0.007603041902164477],[116,62,77,0.009450667952465939],[116,62,78,0.012877596101052286],[116,62,79,0.01751419091139134],[116,63,64,-0.04561563923990403],[116,63,65,-0.04757230596584228],[116,63,66,-0.04983909433973032],[116,63,67,-0.04916052041356793],[116,63,68,-0.04898349418046274],[116,63,69,-0.0465930686961538],[116,63,70,-0.04352001633653779],[116,63,71,-0.04130846962311841],[116,63,72,-0.03832576848887848],[116,63,73,-0.035389102892994156],[116,63,74,-0.03381995323687246],[116,63,75,-0.03227622802890334],[116,63,76,-0.02931670353900134],[116,63,77,-0.028060334182278143],[116,63,78,-0.02437244025856625],[116,63,79,-0.019843935672647268],[116,64,64,-0.05774613659150184],[116,64,65,-0.06057995941410805],[116,64,66,-0.06291127566195835],[116,64,67,-0.06243592502915321],[116,64,68,-0.06137601431932856],[116,64,69,-0.05979128474664526],[116,64,70,-0.05635924304551679],[116,64,71,-0.05413887798340302],[116,64,72,-0.050829327607491426],[116,64,73,-0.046785338624676355],[116,64,74,-0.04591404396539985],[116,64,75,-0.04330407231087659],[116,64,76,-0.04072789810389351],[116,64,77,-0.03863183829296083],[116,64,78,-0.036341998975240125],[116,64,79,-0.032924128151851355],[116,65,64,-0.07418574432914746],[116,65,65,-0.07722258202349329],[116,65,66,-0.07918115233021962],[116,65,67,-0.07790351750344089],[116,65,68,-0.07680150875279926],[116,65,69,-0.07542243172062073],[116,65,70,-0.07264514101670072],[116,65,71,-0.07035620294803861],[116,65,72,-0.06611267335878182],[116,65,73,-0.062101788247528024],[116,65,74,-0.06133043794859669],[116,65,75,-0.05901618209180488],[116,65,76,-0.05558030174359483],[116,65,77,-0.053377321481003985],[116,65,78,-0.052035696096121235],[116,65,79,-0.04951707322557918],[116,66,64,-0.09235714889158761],[116,66,65,-0.09584151662565601],[116,66,66,-0.0968918406376936],[116,66,67,-0.09592534680275674],[116,66,68,-0.09418535811596702],[116,66,69,-0.09235074767884484],[116,66,70,-0.08991318697803487],[116,66,71,-0.08738993668370905],[116,66,72,-0.08337393647133515],[116,66,73,-0.07975977531057088],[116,66,74,-0.07861888911105112],[116,66,75,-0.07564436039240575],[116,66,76,-0.0722482466036611],[116,66,77,-0.07117569746016275],[116,66,78,-0.06976773295640988],[116,66,79,-0.06782219671787895],[116,67,64,-0.10887598882401985],[116,67,65,-0.11230145242753939],[116,67,66,-0.11271663666693746],[116,67,67,-0.11213972188942245],[116,67,68,-0.11000851256814523],[116,67,69,-0.10740723771638747],[116,67,70,-0.10562996304962537],[116,67,71,-0.10246341664795881],[116,67,72,-0.09822266258834039],[116,67,73,-0.09501908884239604],[116,67,74,-0.09323149123249544],[116,67,75,-0.09140799316198485],[116,67,76,-0.08837051122935949],[116,67,77,-0.08812782700071951],[116,67,78,-0.08654219764309293],[116,67,79,-0.08409308505387646],[116,68,64,-0.15293090082955815],[116,68,65,-0.15590863014628803],[116,68,66,-0.15707459840030857],[116,68,67,-0.1562980173605542],[116,68,68,-0.15305148606735813],[116,68,69,-0.15080487086151184],[116,68,70,-0.14814065141669883],[116,68,71,-0.14494563465268082],[116,68,72,-0.14099119115442874],[116,68,73,-0.1379388613250976],[116,68,74,-0.13619393990975756],[116,68,75,-0.13462852039001894],[116,68,76,-0.13244560838282055],[116,68,77,-0.13212022992902658],[116,68,78,-0.13023035816853828],[116,68,79,-0.1279480253325293],[116,69,64,-0.171239241235215],[116,69,65,-0.17354587804796592],[116,69,66,-0.17397148515469563],[116,69,67,-0.17247612631402004],[116,69,68,-0.1673175512588622],[116,69,69,-0.16381840754378685],[116,69,70,-0.1599918293667269],[116,69,71,-0.15489782914456338],[116,69,72,-0.14958318068805251],[116,69,73,-0.14627608584887314],[116,69,74,-0.14469221412351163],[116,69,75,-0.14361547993125695],[116,69,76,-0.1422886097341013],[116,69,77,-0.14377042952442712],[116,69,78,-0.14336845641142898],[116,69,79,-0.1413867564738107],[116,70,64,-0.1872645579351444],[116,70,65,-0.18928969436396503],[116,70,66,-0.18903635546778846],[116,70,67,-0.18807079689588588],[116,70,68,-0.1828379825425329],[116,70,69,-0.17937249359340157],[116,70,70,-0.17523327671198127],[116,70,71,-0.1704959285497919],[116,70,72,-0.16543793397965362],[116,70,73,-0.16186929975610018],[116,70,74,-0.16020003290571225],[116,70,75,-0.15860575268774216],[116,70,76,-0.15809939342127333],[116,70,77,-0.15993937640695519],[116,70,78,-0.15955393003058524],[116,70,79,-0.15771294438493094],[116,71,64,-0.20021388495220122],[116,71,65,-0.20140967903254967],[116,71,66,-0.20146601443762413],[116,71,67,-0.19999960274107986],[116,71,68,-0.19466055891259532],[116,71,69,-0.19108795985060126],[116,71,70,-0.18733374565424193],[116,71,71,-0.18277152240441322],[116,71,72,-0.17782921965703966],[116,71,73,-0.17442677474526436],[116,71,74,-0.17290804070031973],[116,71,75,-0.17148433612087746],[116,71,76,-0.17124388509819596],[116,71,77,-0.17282551184972866],[116,71,78,-0.17266528995055652],[116,71,79,-0.17034545907642978],[116,72,64,-0.2163127556948538],[116,72,65,-0.21775786994502055],[116,72,66,-0.21743864813744704],[116,72,67,-0.214874282969912],[116,72,68,-0.20939174440433017],[116,72,69,-0.20616646916407116],[116,72,70,-0.20282828356015972],[116,72,71,-0.1983614346428396],[116,72,72,-0.19337328371771045],[116,72,73,-0.18963972587018557],[116,72,74,-0.18855358022428215],[116,72,75,-0.18763096905534443],[116,72,76,-0.1877624989391832],[116,72,77,-0.1890881709616095],[116,72,78,-0.1883995061762372],[116,72,79,-0.18534748491525868],[116,73,64,-0.23517631394510538],[116,73,65,-0.23477088764908435],[116,73,66,-0.23187516722312992],[116,73,67,-0.22773728861080264],[116,73,68,-0.22209661693901572],[116,73,69,-0.21910970693197018],[116,73,70,-0.21664385021552754],[116,73,71,-0.21303495763977232],[116,73,72,-0.20986771249409014],[116,73,73,-0.20774485580801805],[116,73,74,-0.2063933936213685],[116,73,75,-0.20542553795579438],[116,73,76,-0.20587394513699522],[116,73,77,-0.20632882397510038],[116,73,78,-0.20515963933539877],[116,73,79,-0.20105066289149398],[116,74,64,-0.25200211639616804],[116,74,65,-0.25211766041715167],[116,74,66,-0.24901678518351397],[116,74,67,-0.24400252738168035],[116,74,68,-0.23867071393903624],[116,74,69,-0.23494565234444076],[116,74,70,-0.2327225395219086],[116,74,71,-0.2293573559321628],[116,74,72,-0.2256813082024612],[116,74,73,-0.2241611270418436],[116,74,74,-0.22332350394115483],[116,74,75,-0.22266524200720428],[116,74,76,-0.2230521208694439],[116,74,77,-0.22373894667490618],[116,74,78,-0.22274535934035744],[116,74,79,-0.21921293218641377],[116,75,64,-0.2668541117960461],[116,75,65,-0.2665425992901467],[116,75,66,-0.2632911257139109],[116,75,67,-0.2585020035702277],[116,75,68,-0.25345147701843623],[116,75,69,-0.24962788702951133],[116,75,70,-0.24707720756288776],[116,75,71,-0.24358247388631896],[116,75,72,-0.24022008990370738],[116,75,73,-0.23849021310305668],[116,75,74,-0.23889746043598784],[116,75,75,-0.23827164084149333],[116,75,76,-0.23880457736278363],[116,75,77,-0.23853550831106293],[116,75,78,-0.23823338584247156],[116,75,79,-0.2357823747061774],[116,76,64,-0.27961650349633577],[116,76,65,-0.2791230537928089],[116,76,66,-0.27599112910875756],[116,76,67,-0.27129222285529575],[116,76,68,-0.26663003248745537],[116,76,69,-0.263029126786228],[116,76,70,-0.2601422076074635],[116,76,71,-0.25726557335857264],[116,76,72,-0.2545404692766647],[116,76,73,-0.2530439201998771],[116,76,74,-0.25386447553691877],[116,76,75,-0.2536075819903698],[116,76,76,-0.25306560796796634],[116,76,77,-0.2527750995066554],[116,76,78,-0.25270990392661385],[116,76,79,-0.2515871948135177],[116,77,64,-0.29347706282256075],[116,77,65,-0.2929925727406012],[116,77,66,-0.2904183347658444],[116,77,67,-0.2868999862073095],[116,77,68,-0.28260778549156373],[116,77,69,-0.28002494600679373],[116,77,70,-0.27742421711075116],[116,77,71,-0.2746177301190841],[116,77,72,-0.272668171923982],[116,77,73,-0.27147175146276775],[116,77,74,-0.27159156161433656],[116,77,75,-0.27105527630635046],[116,77,76,-0.2703251088297144],[116,77,77,-0.2704389271247083],[116,77,78,-0.2700457795564614],[116,77,79,-0.26932128919475745],[116,78,64,-0.3079893557604453],[116,78,65,-0.3071137869929413],[116,78,66,-0.3053223253933793],[116,78,67,-0.30143408955983647],[116,78,68,-0.2971886781478651],[116,78,69,-0.2943029792769808],[116,78,70,-0.2913698380090625],[116,78,71,-0.2897689445322093],[116,78,72,-0.28722689163859394],[116,78,73,-0.28644616852282323],[116,78,74,-0.2860891283454798],[116,78,75,-0.28586875517876015],[116,78,76,-0.28511622107886697],[116,78,77,-0.2857768856936065],[116,78,78,-0.2859843917880446],[116,78,79,-0.2852487686808869],[116,79,64,-0.3187411328450877],[116,79,65,-0.3179267284004939],[116,79,66,-0.3162620616644029],[116,79,67,-0.31241687289494297],[116,79,68,-0.3085481217874313],[116,79,69,-0.30578005003263614],[116,79,70,-0.3025540181417638],[116,79,71,-0.3009909446819794],[116,79,72,-0.2983593100797676],[116,79,73,-0.2981008276530354],[116,79,74,-0.2980003510268925],[116,79,75,-0.29814813395694795],[116,79,76,-0.29737302284508926],[116,79,77,-0.2986245467331685],[116,79,78,-0.2987303674867299],[116,79,79,-0.29790498104177393],[116,80,64,-0.3326652310213258],[116,80,65,-0.3315240363306432],[116,80,66,-0.32962834810938174],[116,80,67,-0.32618090080083056],[116,80,68,-0.32236370014057947],[116,80,69,-0.3198908660239885],[116,80,70,-0.31670491006554574],[116,80,71,-0.3155567819443613],[116,80,72,-0.3130639601887072],[116,80,73,-0.312823530703073],[116,80,74,-0.3124769234268471],[116,80,75,-0.3124469469987077],[116,80,76,-0.31200797834892036],[116,80,77,-0.31375364646024895],[116,80,78,-0.3142802103910818],[116,80,79,-0.31294995919190466],[116,81,64,-0.34540620296413227],[116,81,65,-0.3435760242716732],[116,81,66,-0.3415713565709707],[116,81,67,-0.33726146466746787],[116,81,68,-0.3339517953820789],[116,81,69,-0.33128595636702274],[116,81,70,-0.32890049566689183],[116,81,71,-0.3270110076449848],[116,81,72,-0.3247034831230682],[116,81,73,-0.32443838317324786],[116,81,74,-0.3245731256425506],[116,81,75,-0.3243015601673363],[116,81,76,-0.3249691162361814],[116,81,77,-0.32799405339053966],[116,81,78,-0.3298873391344683],[116,81,79,-0.3294434211214281],[116,82,64,-0.36018702926993856],[116,82,65,-0.35885614199947785],[116,82,66,-0.3565600444894293],[116,82,67,-0.3525029029821379],[116,82,68,-0.34871338789409656],[116,82,69,-0.3457603190627716],[116,82,70,-0.34408114489381725],[116,82,71,-0.3421492170511982],[116,82,72,-0.3402892556775799],[116,82,73,-0.33954298290435325],[116,82,74,-0.340496263810487],[116,82,75,-0.34073236894239173],[116,82,76,-0.34074174281947417],[116,82,77,-0.34376088818968076],[116,82,78,-0.3458909134273543],[116,82,79,-0.34556887618906046],[116,83,64,-0.372703755160493],[116,83,65,-0.37188104464590144],[116,83,66,-0.36878699208624793],[116,83,67,-0.3651497406834591],[116,83,68,-0.36203140757201197],[116,83,69,-0.35997832817749026],[116,83,70,-0.3581928669143446],[116,83,71,-0.35675465629620956],[116,83,72,-0.35539445611988396],[116,83,73,-0.35397624238483644],[116,83,74,-0.35443059758837153],[116,83,75,-0.3549693847206189],[116,83,76,-0.3550280890645227],[116,83,77,-0.35763269129727926],[116,83,78,-0.36093385911676884],[116,83,79,-0.36001827438188694],[116,84,64,-0.3854347412797228],[116,84,65,-0.3837302105779144],[116,84,66,-0.380968652915491],[116,84,67,-0.37757998119382824],[116,84,68,-0.3745814982494193],[116,84,69,-0.37304087563343946],[116,84,70,-0.372588069479795],[116,84,71,-0.3712196896146128],[116,84,72,-0.3692660265210886],[116,84,73,-0.36766591274774413],[116,84,74,-0.36816094999407684],[116,84,75,-0.36833954434173916],[116,84,76,-0.369108174373375],[116,84,77,-0.3715199412031798],[116,84,78,-0.37460671414519914],[116,84,79,-0.37391602221192516],[116,85,64,-0.4007870377300717],[116,85,65,-0.4001380666148761],[116,85,66,-0.39814393401187964],[116,85,67,-0.3956767763442464],[116,85,68,-0.39312095707825967],[116,85,69,-0.39173394831725405],[116,85,70,-0.39158066613020825],[116,85,71,-0.39024553770010134],[116,85,72,-0.38756115490852916],[116,85,73,-0.38592794832623695],[116,85,74,-0.386618329222117],[116,85,75,-0.38734904412588095],[116,85,76,-0.3882050844084679],[116,85,77,-0.3883113562157632],[116,85,78,-0.3892123305103886],[116,85,79,-0.38714556942373335],[116,86,64,-0.41342344145363197],[116,86,65,-0.41344332900002645],[116,86,66,-0.4119004447999655],[116,86,67,-0.4086289752285927],[116,86,68,-0.4064178248919065],[116,86,69,-0.40498200675775464],[116,86,70,-0.40502723161785703],[116,86,71,-0.4030404253427364],[116,86,72,-0.4010931782600363],[116,86,73,-0.3992009182775226],[116,86,74,-0.3997019470539608],[116,86,75,-0.40053784092394956],[116,86,76,-0.4019483133663418],[116,86,77,-0.4019903788686432],[116,86,78,-0.4026205975865861],[116,86,79,-0.40022601969714283],[116,87,64,-0.4238116806220014],[116,87,65,-0.42355464895868383],[116,87,66,-0.42265085690928467],[116,87,67,-0.41993496053260104],[116,87,68,-0.4174938203001828],[116,87,69,-0.41581077662266946],[116,87,70,-0.4152318186382183],[116,87,71,-0.4130833494372065],[116,87,72,-0.4113345066236945],[116,87,73,-0.409886075793101],[116,87,74,-0.41003685122364253],[116,87,75,-0.4110648655318003],[116,87,76,-0.4122740931569736],[116,87,77,-0.41317966239585613],[116,87,78,-0.41339276503350725],[116,87,79,-0.41098896013798747],[116,88,64,-0.43633782302123714],[116,88,65,-0.4360537085219727],[116,88,66,-0.43543227220333897],[116,88,67,-0.4326925423626625],[116,88,68,-0.4304488726721929],[116,88,69,-0.42854334789058485],[116,88,70,-0.42792385878709205],[116,88,71,-0.4256422835997815],[116,88,72,-0.4241025153323859],[116,88,73,-0.4225831309728281],[116,88,74,-0.42330479091611833],[116,88,75,-0.4236238318778444],[116,88,76,-0.42432677292632925],[116,88,77,-0.42562235961968126],[116,88,78,-0.42579563572679413],[116,88,79,-0.4236620303328731],[116,89,64,-0.4487942195113797],[116,89,65,-0.4483743490291901],[116,89,66,-0.44740869587477383],[116,89,67,-0.44481502721277455],[116,89,68,-0.4427278735246055],[116,89,69,-0.44052379911617123],[116,89,70,-0.43989571913438125],[116,89,71,-0.4384553422649802],[116,89,72,-0.43651125572831273],[116,89,73,-0.4351745235374931],[116,89,74,-0.43565966272606027],[116,89,75,-0.4359739519963748],[116,89,76,-0.4360222494640056],[116,89,77,-0.4372884430601709],[116,89,78,-0.4381956399143014],[116,89,79,-0.43601751883430045],[116,90,64,-0.4583333333333333],[116,90,65,-0.4583333333333333],[116,90,66,-0.4583333333333333],[116,90,67,-0.45769077332536773],[116,90,68,-0.4561866459546752],[116,90,69,-0.4537592991993056],[116,90,70,-0.45280698922957496],[116,90,71,-0.4514865395852304],[116,90,72,-0.450085926170966],[116,90,73,-0.44872931322346554],[116,90,74,-0.4487771742448937],[116,90,75,-0.4489449456555393],[116,90,76,-0.44857001827029647],[116,90,77,-0.4499052805390936],[116,90,78,-0.4510330285624714],[116,90,79,-0.4494566996697137],[116,91,64,-0.4583333333333333],[116,91,65,-0.4583333333333333],[116,91,66,-0.4583333333333333],[116,91,67,-0.4583333333333333],[116,91,68,-0.4583333333333333],[116,91,69,-0.4583333333333333],[116,91,70,-0.4583333333333333],[116,91,71,-0.4583333333333333],[116,91,72,-0.4583333333333333],[116,91,73,-0.4583333333333333],[116,91,74,-0.4583333333333333],[116,91,75,-0.4583333333333333],[116,91,76,-0.4583333333333333],[116,91,77,-0.4583333333333333],[116,91,78,-0.4583333333333333],[116,91,79,-0.4583333333333333],[116,92,64,-0.4583333333333333],[116,92,65,-0.4583333333333333],[116,92,66,-0.4583333333333333],[116,92,67,-0.4583333333333333],[116,92,68,-0.4583333333333333],[116,92,69,-0.4583333333333333],[116,92,70,-0.4583333333333333],[116,92,71,-0.4583333333333333],[116,92,72,-0.4583333333333333],[116,92,73,-0.4583333333333333],[116,92,74,-0.4583333333333333],[116,92,75,-0.4583333333333333],[116,92,76,-0.4583333333333333],[116,92,77,-0.4583333333333333],[116,92,78,-0.4583333333333333],[116,92,79,-0.4583333333333333],[116,93,64,-0.4583333333333333],[116,93,65,-0.4583333333333333],[116,93,66,-0.4583333333333333],[116,93,67,-0.4583333333333333],[116,93,68,-0.4583333333333333],[116,93,69,-0.4583333333333333],[116,93,70,-0.4583333333333333],[116,93,71,-0.4583333333333333],[116,93,72,-0.4583333333333333],[116,93,73,-0.4583333333333333],[116,93,74,-0.4583333333333333],[116,93,75,-0.4583333333333333],[116,93,76,-0.4583333333333333],[116,93,77,-0.4583333333333333],[116,93,78,-0.4583333333333333],[116,93,79,-0.4583333333333333],[116,94,64,-0.4583333333333333],[116,94,65,-0.4583333333333333],[116,94,66,-0.4583333333333333],[116,94,67,-0.4583333333333333],[116,94,68,-0.4583333333333333],[116,94,69,-0.4583333333333333],[116,94,70,-0.4583333333333333],[116,94,71,-0.4583333333333333],[116,94,72,-0.4583333333333333],[116,94,73,-0.4583333333333333],[116,94,74,-0.4583333333333333],[116,94,75,-0.4583333333333333],[116,94,76,-0.4583333333333333],[116,94,77,-0.4583333333333333],[116,94,78,-0.4583333333333333],[116,94,79,-0.4583333333333333],[116,95,64,-0.4583333333333333],[116,95,65,-0.4583333333333333],[116,95,66,-0.4583333333333333],[116,95,67,-0.4583333333333333],[116,95,68,-0.4583333333333333],[116,95,69,-0.4583333333333333],[116,95,70,-0.4583333333333333],[116,95,71,-0.4583333333333333],[116,95,72,-0.4583333333333333],[116,95,73,-0.4583333333333333],[116,95,74,-0.4583333333333333],[116,95,75,-0.4583333333333333],[116,95,76,-0.4583333333333333],[116,95,77,-0.4583333333333333],[116,95,78,-0.4583333333333333],[116,95,79,-0.4583333333333333],[116,96,64,-0.4583333333333333],[116,96,65,-0.4583333333333333],[116,96,66,-0.4583333333333333],[116,96,67,-0.4583333333333333],[116,96,68,-0.4583333333333333],[116,96,69,-0.4583333333333333],[116,96,70,-0.4583333333333333],[116,96,71,-0.4583333333333333],[116,96,72,-0.4583333333333333],[116,96,73,-0.4583333333333333],[116,96,74,-0.4583333333333333],[116,96,75,-0.4583333333333333],[116,96,76,-0.4583333333333333],[116,96,77,-0.4583333333333333],[116,96,78,-0.4583333333333333],[116,96,79,-0.4583333333333333],[116,97,64,-0.4583333333333333],[116,97,65,-0.4583333333333333],[116,97,66,-0.4583333333333333],[116,97,67,-0.4583333333333333],[116,97,68,-0.4583333333333333],[116,97,69,-0.4583333333333333],[116,97,70,-0.4583333333333333],[116,97,71,-0.4583333333333333],[116,97,72,-0.4583333333333333],[116,97,73,-0.4583333333333333],[116,97,74,-0.4583333333333333],[116,97,75,-0.4583333333333333],[116,97,76,-0.4583333333333333],[116,97,77,-0.4583333333333333],[116,97,78,-0.4583333333333333],[116,97,79,-0.4583333333333333],[116,98,64,-0.4583333333333333],[116,98,65,-0.4583333333333333],[116,98,66,-0.4583333333333333],[116,98,67,-0.4583333333333333],[116,98,68,-0.4583333333333333],[116,98,69,-0.4583333333333333],[116,98,70,-0.4583333333333333],[116,98,71,-0.4583333333333333],[116,98,72,-0.4583333333333333],[116,98,73,-0.4583333333333333],[116,98,74,-0.4583333333333333],[116,98,75,-0.4583333333333333],[116,98,76,-0.4583333333333333],[116,98,77,-0.4583333333333333],[116,98,78,-0.4583333333333333],[116,98,79,-0.4583333333333333],[116,99,64,-0.4583333333333333],[116,99,65,-0.4583333333333333],[116,99,66,-0.4583333333333333],[116,99,67,-0.4583333333333333],[116,99,68,-0.4583333333333333],[116,99,69,-0.4583333333333333],[116,99,70,-0.4583333333333333],[116,99,71,-0.4583333333333333],[116,99,72,-0.4583333333333333],[116,99,73,-0.4583333333333333],[116,99,74,-0.4583333333333333],[116,99,75,-0.4583333333333333],[116,99,76,-0.4583333333333333],[116,99,77,-0.4583333333333333],[116,99,78,-0.4583333333333333],[116,99,79,-0.4583333333333333],[116,100,64,-0.4583333333333333],[116,100,65,-0.4583333333333333],[116,100,66,-0.4583333333333333],[116,100,67,-0.4583333333333333],[116,100,68,-0.4583333333333333],[116,100,69,-0.4583333333333333],[116,100,70,-0.4583333333333333],[116,100,71,-0.4583333333333333],[116,100,72,-0.4583333333333333],[116,100,73,-0.4583333333333333],[116,100,74,-0.4583333333333333],[116,100,75,-0.4583333333333333],[116,100,76,-0.4583333333333333],[116,100,77,-0.4583333333333333],[116,100,78,-0.4583333333333333],[116,100,79,-0.4583333333333333],[116,101,64,-0.4583333333333333],[116,101,65,-0.4583333333333333],[116,101,66,-0.4583333333333333],[116,101,67,-0.4583333333333333],[116,101,68,-0.4583333333333333],[116,101,69,-0.4583333333333333],[116,101,70,-0.4583333333333333],[116,101,71,-0.4583333333333333],[116,101,72,-0.4583333333333333],[116,101,73,-0.4583333333333333],[116,101,74,-0.4583333333333333],[116,101,75,-0.4583333333333333],[116,101,76,-0.4583333333333333],[116,101,77,-0.4583333333333333],[116,101,78,-0.4583333333333333],[116,101,79,-0.4583333333333333],[116,102,64,-0.4583333333333333],[116,102,65,-0.4583333333333333],[116,102,66,-0.4583333333333333],[116,102,67,-0.4583333333333333],[116,102,68,-0.4583333333333333],[116,102,69,-0.4583333333333333],[116,102,70,-0.4583333333333333],[116,102,71,-0.4583333333333333],[116,102,72,-0.4583333333333333],[116,102,73,-0.4583333333333333],[116,102,74,-0.4583333333333333],[116,102,75,-0.4583333333333333],[116,102,76,-0.4583333333333333],[116,102,77,-0.4583333333333333],[116,102,78,-0.4583333333333333],[116,102,79,-0.4583333333333333],[116,103,64,-0.4583333333333333],[116,103,65,-0.4583333333333333],[116,103,66,-0.4583333333333333],[116,103,67,-0.4583333333333333],[116,103,68,-0.4583333333333333],[116,103,69,-0.4583333333333333],[116,103,70,-0.4583333333333333],[116,103,71,-0.4583333333333333],[116,103,72,-0.4583333333333333],[116,103,73,-0.4583333333333333],[116,103,74,-0.4583333333333333],[116,103,75,-0.4583333333333333],[116,103,76,-0.4583333333333333],[116,103,77,-0.4583333333333333],[116,103,78,-0.4583333333333333],[116,103,79,-0.4583333333333333],[116,104,64,-0.4583333333333333],[116,104,65,-0.4583333333333333],[116,104,66,-0.4583333333333333],[116,104,67,-0.4583333333333333],[116,104,68,-0.4583333333333333],[116,104,69,-0.4583333333333333],[116,104,70,-0.4583333333333333],[116,104,71,-0.4583333333333333],[116,104,72,-0.4583333333333333],[116,104,73,-0.4583333333333333],[116,104,74,-0.4583333333333333],[116,104,75,-0.4583333333333333],[116,104,76,-0.4583333333333333],[116,104,77,-0.4583333333333333],[116,104,78,-0.4583333333333333],[116,104,79,-0.4583333333333333],[116,105,64,-0.4583333333333333],[116,105,65,-0.4583333333333333],[116,105,66,-0.4583333333333333],[116,105,67,-0.4583333333333333],[116,105,68,-0.4583333333333333],[116,105,69,-0.4583333333333333],[116,105,70,-0.4583333333333333],[116,105,71,-0.4583333333333333],[116,105,72,-0.4583333333333333],[116,105,73,-0.4583333333333333],[116,105,74,-0.4583333333333333],[116,105,75,-0.4583333333333333],[116,105,76,-0.4583333333333333],[116,105,77,-0.4583333333333333],[116,105,78,-0.4583333333333333],[116,105,79,-0.4583333333333333],[116,106,64,-0.4583333333333333],[116,106,65,-0.4583333333333333],[116,106,66,-0.4583333333333333],[116,106,67,-0.4583333333333333],[116,106,68,-0.4583333333333333],[116,106,69,-0.4583333333333333],[116,106,70,-0.4583333333333333],[116,106,71,-0.4583333333333333],[116,106,72,-0.4583333333333333],[116,106,73,-0.4583333333333333],[116,106,74,-0.4583333333333333],[116,106,75,-0.4583333333333333],[116,106,76,-0.4583333333333333],[116,106,77,-0.4583333333333333],[116,106,78,-0.4583333333333333],[116,106,79,-0.4583333333333333],[116,107,64,-0.4583333333333333],[116,107,65,-0.4583333333333333],[116,107,66,-0.4583333333333333],[116,107,67,-0.4583333333333333],[116,107,68,-0.4583333333333333],[116,107,69,-0.4583333333333333],[116,107,70,-0.4583333333333333],[116,107,71,-0.4583333333333333],[116,107,72,-0.4583333333333333],[116,107,73,-0.4583333333333333],[116,107,74,-0.4583333333333333],[116,107,75,-0.4583333333333333],[116,107,76,-0.4583333333333333],[116,107,77,-0.4583333333333333],[116,107,78,-0.4583333333333333],[116,107,79,-0.4583333333333333],[116,108,64,-0.4583333333333333],[116,108,65,-0.4583333333333333],[116,108,66,-0.4583333333333333],[116,108,67,-0.4583333333333333],[116,108,68,-0.4583333333333333],[116,108,69,-0.4583333333333333],[116,108,70,-0.4583333333333333],[116,108,71,-0.4583333333333333],[116,108,72,-0.4583333333333333],[116,108,73,-0.4583333333333333],[116,108,74,-0.4583333333333333],[116,108,75,-0.4583333333333333],[116,108,76,-0.4583333333333333],[116,108,77,-0.4583333333333333],[116,108,78,-0.4583333333333333],[116,108,79,-0.4583333333333333],[116,109,64,-0.4583333333333333],[116,109,65,-0.4583333333333333],[116,109,66,-0.4583333333333333],[116,109,67,-0.4583333333333333],[116,109,68,-0.4583333333333333],[116,109,69,-0.4583333333333333],[116,109,70,-0.4583333333333333],[116,109,71,-0.4583333333333333],[116,109,72,-0.4583333333333333],[116,109,73,-0.4583333333333333],[116,109,74,-0.4583333333333333],[116,109,75,-0.4583333333333333],[116,109,76,-0.4583333333333333],[116,109,77,-0.4583333333333333],[116,109,78,-0.4583333333333333],[116,109,79,-0.4583333333333333],[116,110,64,-0.4583333333333333],[116,110,65,-0.4583333333333333],[116,110,66,-0.4583333333333333],[116,110,67,-0.4583333333333333],[116,110,68,-0.4583333333333333],[116,110,69,-0.4583333333333333],[116,110,70,-0.4583333333333333],[116,110,71,-0.4583333333333333],[116,110,72,-0.4583333333333333],[116,110,73,-0.4583333333333333],[116,110,74,-0.4583333333333333],[116,110,75,-0.4583333333333333],[116,110,76,-0.4583333333333333],[116,110,77,-0.4583333333333333],[116,110,78,-0.4583333333333333],[116,110,79,-0.4583333333333333],[116,111,64,-0.4583333333333333],[116,111,65,-0.4583333333333333],[116,111,66,-0.4583333333333333],[116,111,67,-0.4583333333333333],[116,111,68,-0.4583333333333333],[116,111,69,-0.4583333333333333],[116,111,70,-0.4583333333333333],[116,111,71,-0.4583333333333333],[116,111,72,-0.4583333333333333],[116,111,73,-0.4583333333333333],[116,111,74,-0.4583333333333333],[116,111,75,-0.4583333333333333],[116,111,76,-0.4583333333333333],[116,111,77,-0.4583333333333333],[116,111,78,-0.4583333333333333],[116,111,79,-0.4583333333333333],[116,112,64,-0.4583333333333333],[116,112,65,-0.4583333333333333],[116,112,66,-0.4583333333333333],[116,112,67,-0.4583333333333333],[116,112,68,-0.4583333333333333],[116,112,69,-0.4583333333333333],[116,112,70,-0.4583333333333333],[116,112,71,-0.4583333333333333],[116,112,72,-0.4583333333333333],[116,112,73,-0.4583333333333333],[116,112,74,-0.4583333333333333],[116,112,75,-0.4583333333333333],[116,112,76,-0.4583333333333333],[116,112,77,-0.4583333333333333],[116,112,78,-0.4583333333333333],[116,112,79,-0.4583333333333333],[116,113,64,-0.4583333333333333],[116,113,65,-0.4583333333333333],[116,113,66,-0.4583333333333333],[116,113,67,-0.4583333333333333],[116,113,68,-0.4583333333333333],[116,113,69,-0.4583333333333333],[116,113,70,-0.4583333333333333],[116,113,71,-0.4583333333333333],[116,113,72,-0.4583333333333333],[116,113,73,-0.4583333333333333],[116,113,74,-0.4583333333333333],[116,113,75,-0.4583333333333333],[116,113,76,-0.4583333333333333],[116,113,77,-0.4583333333333333],[116,113,78,-0.4583333333333333],[116,113,79,-0.4583333333333333],[116,114,64,-0.4583333333333333],[116,114,65,-0.4583333333333333],[116,114,66,-0.4583333333333333],[116,114,67,-0.4583333333333333],[116,114,68,-0.4583333333333333],[116,114,69,-0.4583333333333333],[116,114,70,-0.4583333333333333],[116,114,71,-0.4583333333333333],[116,114,72,-0.4583333333333333],[116,114,73,-0.4583333333333333],[116,114,74,-0.4583333333333333],[116,114,75,-0.4583333333333333],[116,114,76,-0.4583333333333333],[116,114,77,-0.4583333333333333],[116,114,78,-0.4583333333333333],[116,114,79,-0.4583333333333333],[116,115,64,-0.4583333333333333],[116,115,65,-0.4583333333333333],[116,115,66,-0.4583333333333333],[116,115,67,-0.4583333333333333],[116,115,68,-0.4583333333333333],[116,115,69,-0.4583333333333333],[116,115,70,-0.4583333333333333],[116,115,71,-0.4583333333333333],[116,115,72,-0.4583333333333333],[116,115,73,-0.4583333333333333],[116,115,74,-0.4583333333333333],[116,115,75,-0.4583333333333333],[116,115,76,-0.4583333333333333],[116,115,77,-0.4583333333333333],[116,115,78,-0.4583333333333333],[116,115,79,-0.4583333333333333],[116,116,64,-0.4583333333333333],[116,116,65,-0.4583333333333333],[116,116,66,-0.4583333333333333],[116,116,67,-0.4583333333333333],[116,116,68,-0.4583333333333333],[116,116,69,-0.4583333333333333],[116,116,70,-0.4583333333333333],[116,116,71,-0.4583333333333333],[116,116,72,-0.4583333333333333],[116,116,73,-0.4583333333333333],[116,116,74,-0.4583333333333333],[116,116,75,-0.4583333333333333],[116,116,76,-0.4583333333333333],[116,116,77,-0.4583333333333333],[116,116,78,-0.4583333333333333],[116,116,79,-0.4583333333333333],[116,117,64,-0.4583333333333333],[116,117,65,-0.4583333333333333],[116,117,66,-0.4583333333333333],[116,117,67,-0.4583333333333333],[116,117,68,-0.4583333333333333],[116,117,69,-0.4583333333333333],[116,117,70,-0.4583333333333333],[116,117,71,-0.4583333333333333],[116,117,72,-0.4583333333333333],[116,117,73,-0.4583333333333333],[116,117,74,-0.4583333333333333],[116,117,75,-0.4583333333333333],[116,117,76,-0.4583333333333333],[116,117,77,-0.4583333333333333],[116,117,78,-0.4583333333333333],[116,117,79,-0.4583333333333333],[116,118,64,-0.4583333333333333],[116,118,65,-0.4583333333333333],[116,118,66,-0.4583333333333333],[116,118,67,-0.4583333333333333],[116,118,68,-0.4583333333333333],[116,118,69,-0.4583333333333333],[116,118,70,-0.4583333333333333],[116,118,71,-0.4583333333333333],[116,118,72,-0.4583333333333333],[116,118,73,-0.4583333333333333],[116,118,74,-0.4583333333333333],[116,118,75,-0.4583333333333333],[116,118,76,-0.4583333333333333],[116,118,77,-0.4583333333333333],[116,118,78,-0.4583333333333333],[116,118,79,-0.4583333333333333],[116,119,64,-0.4583333333333333],[116,119,65,-0.4583333333333333],[116,119,66,-0.4583333333333333],[116,119,67,-0.4583333333333333],[116,119,68,-0.4583333333333333],[116,119,69,-0.4583333333333333],[116,119,70,-0.4583333333333333],[116,119,71,-0.4583333333333333],[116,119,72,-0.4583333333333333],[116,119,73,-0.4583333333333333],[116,119,74,-0.4583333333333333],[116,119,75,-0.4583333333333333],[116,119,76,-0.4583333333333333],[116,119,77,-0.4583333333333333],[116,119,78,-0.4583333333333333],[116,119,79,-0.4583333333333333],[116,120,64,-0.4583333333333333],[116,120,65,-0.4583333333333333],[116,120,66,-0.4583333333333333],[116,120,67,-0.4583333333333333],[116,120,68,-0.4583333333333333],[116,120,69,-0.4583333333333333],[116,120,70,-0.4583333333333333],[116,120,71,-0.4583333333333333],[116,120,72,-0.4583333333333333],[116,120,73,-0.4583333333333333],[116,120,74,-0.4583333333333333],[116,120,75,-0.4583333333333333],[116,120,76,-0.4583333333333333],[116,120,77,-0.4583333333333333],[116,120,78,-0.4583333333333333],[116,120,79,-0.4583333333333333],[116,121,64,-0.4583333333333333],[116,121,65,-0.4583333333333333],[116,121,66,-0.4583333333333333],[116,121,67,-0.4583333333333333],[116,121,68,-0.4583333333333333],[116,121,69,-0.4583333333333333],[116,121,70,-0.4583333333333333],[116,121,71,-0.4583333333333333],[116,121,72,-0.4583333333333333],[116,121,73,-0.4583333333333333],[116,121,74,-0.4583333333333333],[116,121,75,-0.4583333333333333],[116,121,76,-0.4583333333333333],[116,121,77,-0.4583333333333333],[116,121,78,-0.4583333333333333],[116,121,79,-0.4583333333333333],[116,122,64,-0.4583333333333333],[116,122,65,-0.4583333333333333],[116,122,66,-0.4583333333333333],[116,122,67,-0.4583333333333333],[116,122,68,-0.4583333333333333],[116,122,69,-0.4583333333333333],[116,122,70,-0.4583333333333333],[116,122,71,-0.4583333333333333],[116,122,72,-0.4583333333333333],[116,122,73,-0.4583333333333333],[116,122,74,-0.4583333333333333],[116,122,75,-0.4583333333333333],[116,122,76,-0.4583333333333333],[116,122,77,-0.4583333333333333],[116,122,78,-0.4583333333333333],[116,122,79,-0.4583333333333333],[116,123,64,-0.4583333333333333],[116,123,65,-0.4583333333333333],[116,123,66,-0.4583333333333333],[116,123,67,-0.4583333333333333],[116,123,68,-0.4583333333333333],[116,123,69,-0.4583333333333333],[116,123,70,-0.4583333333333333],[116,123,71,-0.4583333333333333],[116,123,72,-0.4583333333333333],[116,123,73,-0.4583333333333333],[116,123,74,-0.4583333333333333],[116,123,75,-0.4583333333333333],[116,123,76,-0.4583333333333333],[116,123,77,-0.4583333333333333],[116,123,78,-0.4583333333333333],[116,123,79,-0.4583333333333333],[116,124,64,-0.4583333333333333],[116,124,65,-0.4583333333333333],[116,124,66,-0.4583333333333333],[116,124,67,-0.4583333333333333],[116,124,68,-0.4583333333333333],[116,124,69,-0.4583333333333333],[116,124,70,-0.4583333333333333],[116,124,71,-0.4583333333333333],[116,124,72,-0.4583333333333333],[116,124,73,-0.4583333333333333],[116,124,74,-0.4583333333333333],[116,124,75,-0.4583333333333333],[116,124,76,-0.4583333333333333],[116,124,77,-0.4583333333333333],[116,124,78,-0.4583333333333333],[116,124,79,-0.4583333333333333],[116,125,64,-0.4583333333333333],[116,125,65,-0.4583333333333333],[116,125,66,-0.4583333333333333],[116,125,67,-0.4583333333333333],[116,125,68,-0.4583333333333333],[116,125,69,-0.4583333333333333],[116,125,70,-0.4583333333333333],[116,125,71,-0.4583333333333333],[116,125,72,-0.4583333333333333],[116,125,73,-0.4583333333333333],[116,125,74,-0.4583333333333333],[116,125,75,-0.4583333333333333],[116,125,76,-0.4583333333333333],[116,125,77,-0.4583333333333333],[116,125,78,-0.4583333333333333],[116,125,79,-0.4583333333333333],[116,126,64,-0.4583333333333333],[116,126,65,-0.4583333333333333],[116,126,66,-0.4583333333333333],[116,126,67,-0.4583333333333333],[116,126,68,-0.4583333333333333],[116,126,69,-0.4583333333333333],[116,126,70,-0.4583333333333333],[116,126,71,-0.4583333333333333],[116,126,72,-0.4583333333333333],[116,126,73,-0.4583333333333333],[116,126,74,-0.4583333333333333],[116,126,75,-0.4583333333333333],[116,126,76,-0.4583333333333333],[116,126,77,-0.4583333333333333],[116,126,78,-0.4583333333333333],[116,126,79,-0.4583333333333333],[116,127,64,-0.4583333333333333],[116,127,65,-0.4583333333333333],[116,127,66,-0.4583333333333333],[116,127,67,-0.4583333333333333],[116,127,68,-0.4583333333333333],[116,127,69,-0.4583333333333333],[116,127,70,-0.4583333333333333],[116,127,71,-0.4583333333333333],[116,127,72,-0.4583333333333333],[116,127,73,-0.4583333333333333],[116,127,74,-0.4583333333333333],[116,127,75,-0.4583333333333333],[116,127,76,-0.4583333333333333],[116,127,77,-0.4583333333333333],[116,127,78,-0.4583333333333333],[116,127,79,-0.4583333333333333],[116,128,64,-0.4583333333333333],[116,128,65,-0.4583333333333333],[116,128,66,-0.4583333333333333],[116,128,67,-0.4583333333333333],[116,128,68,-0.4583333333333333],[116,128,69,-0.4583333333333333],[116,128,70,-0.4583333333333333],[116,128,71,-0.4583333333333333],[116,128,72,-0.4583333333333333],[116,128,73,-0.4583333333333333],[116,128,74,-0.4583333333333333],[116,128,75,-0.4583333333333333],[116,128,76,-0.4583333333333333],[116,128,77,-0.4583333333333333],[116,128,78,-0.4583333333333333],[116,128,79,-0.4583333333333333],[116,129,64,-0.4583333333333333],[116,129,65,-0.4583333333333333],[116,129,66,-0.4583333333333333],[116,129,67,-0.4583333333333333],[116,129,68,-0.4583333333333333],[116,129,69,-0.4583333333333333],[116,129,70,-0.4583333333333333],[116,129,71,-0.4583333333333333],[116,129,72,-0.4583333333333333],[116,129,73,-0.4583333333333333],[116,129,74,-0.4583333333333333],[116,129,75,-0.4583333333333333],[116,129,76,-0.4583333333333333],[116,129,77,-0.4583333333333333],[116,129,78,-0.4583333333333333],[116,129,79,-0.4583333333333333],[116,130,64,-0.4583333333333333],[116,130,65,-0.4583333333333333],[116,130,66,-0.4583333333333333],[116,130,67,-0.4583333333333333],[116,130,68,-0.4583333333333333],[116,130,69,-0.4583333333333333],[116,130,70,-0.4583333333333333],[116,130,71,-0.4583333333333333],[116,130,72,-0.4583333333333333],[116,130,73,-0.4583333333333333],[116,130,74,-0.4583333333333333],[116,130,75,-0.4583333333333333],[116,130,76,-0.4583333333333333],[116,130,77,-0.4583333333333333],[116,130,78,-0.4583333333333333],[116,130,79,-0.4583333333333333],[116,131,64,-0.4583333333333333],[116,131,65,-0.4583333333333333],[116,131,66,-0.4583333333333333],[116,131,67,-0.4583333333333333],[116,131,68,-0.4583333333333333],[116,131,69,-0.4583333333333333],[116,131,70,-0.4583333333333333],[116,131,71,-0.4583333333333333],[116,131,72,-0.4583333333333333],[116,131,73,-0.4583333333333333],[116,131,74,-0.4583333333333333],[116,131,75,-0.4583333333333333],[116,131,76,-0.4583333333333333],[116,131,77,-0.4583333333333333],[116,131,78,-0.4583333333333333],[116,131,79,-0.4583333333333333],[116,132,64,-0.4583333333333333],[116,132,65,-0.4583333333333333],[116,132,66,-0.4583333333333333],[116,132,67,-0.4583333333333333],[116,132,68,-0.4583333333333333],[116,132,69,-0.4583333333333333],[116,132,70,-0.4583333333333333],[116,132,71,-0.4583333333333333],[116,132,72,-0.4583333333333333],[116,132,73,-0.4583333333333333],[116,132,74,-0.4583333333333333],[116,132,75,-0.4583333333333333],[116,132,76,-0.4583333333333333],[116,132,77,-0.4583333333333333],[116,132,78,-0.4583333333333333],[116,132,79,-0.4583333333333333],[116,133,64,-0.4583333333333333],[116,133,65,-0.4583333333333333],[116,133,66,-0.4583333333333333],[116,133,67,-0.4583333333333333],[116,133,68,-0.4583333333333333],[116,133,69,-0.4583333333333333],[116,133,70,-0.4583333333333333],[116,133,71,-0.4583333333333333],[116,133,72,-0.4583333333333333],[116,133,73,-0.4583333333333333],[116,133,74,-0.4583333333333333],[116,133,75,-0.4583333333333333],[116,133,76,-0.4583333333333333],[116,133,77,-0.4583333333333333],[116,133,78,-0.4583333333333333],[116,133,79,-0.4583333333333333],[116,134,64,-0.4583333333333333],[116,134,65,-0.4583333333333333],[116,134,66,-0.4583333333333333],[116,134,67,-0.4583333333333333],[116,134,68,-0.4583333333333333],[116,134,69,-0.4583333333333333],[116,134,70,-0.4583333333333333],[116,134,71,-0.4583333333333333],[116,134,72,-0.4583333333333333],[116,134,73,-0.4583333333333333],[116,134,74,-0.4583333333333333],[116,134,75,-0.4583333333333333],[116,134,76,-0.4583333333333333],[116,134,77,-0.4583333333333333],[116,134,78,-0.4583333333333333],[116,134,79,-0.4583333333333333],[116,135,64,-0.4583333333333333],[116,135,65,-0.4583333333333333],[116,135,66,-0.4583333333333333],[116,135,67,-0.4583333333333333],[116,135,68,-0.4583333333333333],[116,135,69,-0.4583333333333333],[116,135,70,-0.4583333333333333],[116,135,71,-0.4583333333333333],[116,135,72,-0.4583333333333333],[116,135,73,-0.4583333333333333],[116,135,74,-0.4583333333333333],[116,135,75,-0.4583333333333333],[116,135,76,-0.4583333333333333],[116,135,77,-0.4583333333333333],[116,135,78,-0.4583333333333333],[116,135,79,-0.4583333333333333],[116,136,64,-0.4583333333333333],[116,136,65,-0.4583333333333333],[116,136,66,-0.4583333333333333],[116,136,67,-0.4583333333333333],[116,136,68,-0.4583333333333333],[116,136,69,-0.4583333333333333],[116,136,70,-0.4583333333333333],[116,136,71,-0.4583333333333333],[116,136,72,-0.4583333333333333],[116,136,73,-0.4583333333333333],[116,136,74,-0.4583333333333333],[116,136,75,-0.4583333333333333],[116,136,76,-0.4583333333333333],[116,136,77,-0.4583333333333333],[116,136,78,-0.4583333333333333],[116,136,79,-0.4583333333333333],[116,137,64,-0.4583333333333333],[116,137,65,-0.4583333333333333],[116,137,66,-0.4583333333333333],[116,137,67,-0.4583333333333333],[116,137,68,-0.4583333333333333],[116,137,69,-0.4583333333333333],[116,137,70,-0.4583333333333333],[116,137,71,-0.4583333333333333],[116,137,72,-0.4583333333333333],[116,137,73,-0.4583333333333333],[116,137,74,-0.4583333333333333],[116,137,75,-0.4583333333333333],[116,137,76,-0.4583333333333333],[116,137,77,-0.4583333333333333],[116,137,78,-0.4583333333333333],[116,137,79,-0.4583333333333333],[116,138,64,-0.4583333333333333],[116,138,65,-0.4583333333333333],[116,138,66,-0.4583333333333333],[116,138,67,-0.4583333333333333],[116,138,68,-0.4583333333333333],[116,138,69,-0.4583333333333333],[116,138,70,-0.4583333333333333],[116,138,71,-0.4583333333333333],[116,138,72,-0.4583333333333333],[116,138,73,-0.4583333333333333],[116,138,74,-0.4583333333333333],[116,138,75,-0.4583333333333333],[116,138,76,-0.4583333333333333],[116,138,77,-0.4583333333333333],[116,138,78,-0.4583333333333333],[116,138,79,-0.4583333333333333],[116,139,64,-0.4583333333333333],[116,139,65,-0.4583333333333333],[116,139,66,-0.4583333333333333],[116,139,67,-0.4583333333333333],[116,139,68,-0.4583333333333333],[116,139,69,-0.4583333333333333],[116,139,70,-0.4583333333333333],[116,139,71,-0.4583333333333333],[116,139,72,-0.4583333333333333],[116,139,73,-0.4583333333333333],[116,139,74,-0.4583333333333333],[116,139,75,-0.4583333333333333],[116,139,76,-0.4583333333333333],[116,139,77,-0.4583333333333333],[116,139,78,-0.4583333333333333],[116,139,79,-0.4583333333333333],[116,140,64,-0.4583333333333333],[116,140,65,-0.4583333333333333],[116,140,66,-0.4583333333333333],[116,140,67,-0.4583333333333333],[116,140,68,-0.4583333333333333],[116,140,69,-0.4583333333333333],[116,140,70,-0.4583333333333333],[116,140,71,-0.4583333333333333],[116,140,72,-0.4583333333333333],[116,140,73,-0.4583333333333333],[116,140,74,-0.4583333333333333],[116,140,75,-0.4583333333333333],[116,140,76,-0.4583333333333333],[116,140,77,-0.4583333333333333],[116,140,78,-0.4583333333333333],[116,140,79,-0.4583333333333333],[116,141,64,-0.4583333333333333],[116,141,65,-0.4583333333333333],[116,141,66,-0.4583333333333333],[116,141,67,-0.4583333333333333],[116,141,68,-0.4583333333333333],[116,141,69,-0.4583333333333333],[116,141,70,-0.4583333333333333],[116,141,71,-0.4583333333333333],[116,141,72,-0.4583333333333333],[116,141,73,-0.4583333333333333],[116,141,74,-0.4583333333333333],[116,141,75,-0.4583333333333333],[116,141,76,-0.4583333333333333],[116,141,77,-0.4583333333333333],[116,141,78,-0.4583333333333333],[116,141,79,-0.4583333333333333],[116,142,64,-0.4583333333333333],[116,142,65,-0.4583333333333333],[116,142,66,-0.4583333333333333],[116,142,67,-0.4583333333333333],[116,142,68,-0.4583333333333333],[116,142,69,-0.4583333333333333],[116,142,70,-0.4583333333333333],[116,142,71,-0.4583333333333333],[116,142,72,-0.4583333333333333],[116,142,73,-0.4583333333333333],[116,142,74,-0.4583333333333333],[116,142,75,-0.4583333333333333],[116,142,76,-0.4583333333333333],[116,142,77,-0.4583333333333333],[116,142,78,-0.4583333333333333],[116,142,79,-0.4583333333333333],[116,143,64,-0.4583333333333333],[116,143,65,-0.4583333333333333],[116,143,66,-0.4583333333333333],[116,143,67,-0.4583333333333333],[116,143,68,-0.4583333333333333],[116,143,69,-0.4583333333333333],[116,143,70,-0.4583333333333333],[116,143,71,-0.4583333333333333],[116,143,72,-0.4583333333333333],[116,143,73,-0.4583333333333333],[116,143,74,-0.4583333333333333],[116,143,75,-0.4583333333333333],[116,143,76,-0.4583333333333333],[116,143,77,-0.4583333333333333],[116,143,78,-0.4583333333333333],[116,143,79,-0.4583333333333333],[116,144,64,-0.4583333333333333],[116,144,65,-0.4583333333333333],[116,144,66,-0.4583333333333333],[116,144,67,-0.4583333333333333],[116,144,68,-0.4583333333333333],[116,144,69,-0.4583333333333333],[116,144,70,-0.4583333333333333],[116,144,71,-0.4583333333333333],[116,144,72,-0.4583333333333333],[116,144,73,-0.4583333333333333],[116,144,74,-0.4583333333333333],[116,144,75,-0.4583333333333333],[116,144,76,-0.4583333333333333],[116,144,77,-0.4583333333333333],[116,144,78,-0.4583333333333333],[116,144,79,-0.4583333333333333],[116,145,64,-0.4583333333333333],[116,145,65,-0.4583333333333333],[116,145,66,-0.4583333333333333],[116,145,67,-0.4583333333333333],[116,145,68,-0.4583333333333333],[116,145,69,-0.4583333333333333],[116,145,70,-0.4583333333333333],[116,145,71,-0.4583333333333333],[116,145,72,-0.4583333333333333],[116,145,73,-0.4583333333333333],[116,145,74,-0.4583333333333333],[116,145,75,-0.4583333333333333],[116,145,76,-0.4583333333333333],[116,145,77,-0.4583333333333333],[116,145,78,-0.4583333333333333],[116,145,79,-0.4583333333333333],[116,146,64,-0.4583333333333333],[116,146,65,-0.4583333333333333],[116,146,66,-0.4583333333333333],[116,146,67,-0.4583333333333333],[116,146,68,-0.4583333333333333],[116,146,69,-0.4583333333333333],[116,146,70,-0.4583333333333333],[116,146,71,-0.4583333333333333],[116,146,72,-0.4583333333333333],[116,146,73,-0.4583333333333333],[116,146,74,-0.4583333333333333],[116,146,75,-0.4583333333333333],[116,146,76,-0.4583333333333333],[116,146,77,-0.4583333333333333],[116,146,78,-0.4583333333333333],[116,146,79,-0.4583333333333333],[116,147,64,-0.4583333333333333],[116,147,65,-0.4583333333333333],[116,147,66,-0.4583333333333333],[116,147,67,-0.4583333333333333],[116,147,68,-0.4583333333333333],[116,147,69,-0.4583333333333333],[116,147,70,-0.4583333333333333],[116,147,71,-0.4583333333333333],[116,147,72,-0.4583333333333333],[116,147,73,-0.4583333333333333],[116,147,74,-0.4583333333333333],[116,147,75,-0.4583333333333333],[116,147,76,-0.4583333333333333],[116,147,77,-0.4583333333333333],[116,147,78,-0.4583333333333333],[116,147,79,-0.4583333333333333],[116,148,64,-0.4583333333333333],[116,148,65,-0.4583333333333333],[116,148,66,-0.4583333333333333],[116,148,67,-0.4583333333333333],[116,148,68,-0.4583333333333333],[116,148,69,-0.4583333333333333],[116,148,70,-0.4583333333333333],[116,148,71,-0.4583333333333333],[116,148,72,-0.4583333333333333],[116,148,73,-0.4583333333333333],[116,148,74,-0.4583333333333333],[116,148,75,-0.4583333333333333],[116,148,76,-0.4583333333333333],[116,148,77,-0.4583333333333333],[116,148,78,-0.4583333333333333],[116,148,79,-0.4583333333333333],[116,149,64,-0.4583333333333333],[116,149,65,-0.4583333333333333],[116,149,66,-0.4583333333333333],[116,149,67,-0.4583333333333333],[116,149,68,-0.4583333333333333],[116,149,69,-0.4583333333333333],[116,149,70,-0.4583333333333333],[116,149,71,-0.4583333333333333],[116,149,72,-0.4583333333333333],[116,149,73,-0.4583333333333333],[116,149,74,-0.4583333333333333],[116,149,75,-0.4583333333333333],[116,149,76,-0.4583333333333333],[116,149,77,-0.4583333333333333],[116,149,78,-0.4583333333333333],[116,149,79,-0.4583333333333333],[116,150,64,-0.4583333333333333],[116,150,65,-0.4583333333333333],[116,150,66,-0.4583333333333333],[116,150,67,-0.4583333333333333],[116,150,68,-0.4583333333333333],[116,150,69,-0.4583333333333333],[116,150,70,-0.4583333333333333],[116,150,71,-0.4583333333333333],[116,150,72,-0.4583333333333333],[116,150,73,-0.4583333333333333],[116,150,74,-0.4583333333333333],[116,150,75,-0.4583333333333333],[116,150,76,-0.4583333333333333],[116,150,77,-0.4583333333333333],[116,150,78,-0.4583333333333333],[116,150,79,-0.4583333333333333],[116,151,64,-0.4583333333333333],[116,151,65,-0.4583333333333333],[116,151,66,-0.4583333333333333],[116,151,67,-0.4583333333333333],[116,151,68,-0.4583333333333333],[116,151,69,-0.4583333333333333],[116,151,70,-0.4583333333333333],[116,151,71,-0.4583333333333333],[116,151,72,-0.4583333333333333],[116,151,73,-0.4583333333333333],[116,151,74,-0.4583333333333333],[116,151,75,-0.4583333333333333],[116,151,76,-0.4583333333333333],[116,151,77,-0.4583333333333333],[116,151,78,-0.4583333333333333],[116,151,79,-0.4583333333333333],[116,152,64,-0.4583333333333333],[116,152,65,-0.4583333333333333],[116,152,66,-0.4583333333333333],[116,152,67,-0.4583333333333333],[116,152,68,-0.4583333333333333],[116,152,69,-0.4583333333333333],[116,152,70,-0.4583333333333333],[116,152,71,-0.4583333333333333],[116,152,72,-0.4583333333333333],[116,152,73,-0.4583333333333333],[116,152,74,-0.4583333333333333],[116,152,75,-0.4583333333333333],[116,152,76,-0.4583333333333333],[116,152,77,-0.4583333333333333],[116,152,78,-0.4583333333333333],[116,152,79,-0.4583333333333333],[116,153,64,-0.4583333333333333],[116,153,65,-0.4583333333333333],[116,153,66,-0.4583333333333333],[116,153,67,-0.4583333333333333],[116,153,68,-0.4583333333333333],[116,153,69,-0.4583333333333333],[116,153,70,-0.4583333333333333],[116,153,71,-0.4583333333333333],[116,153,72,-0.4583333333333333],[116,153,73,-0.4583333333333333],[116,153,74,-0.4583333333333333],[116,153,75,-0.4583333333333333],[116,153,76,-0.4583333333333333],[116,153,77,-0.4583333333333333],[116,153,78,-0.4583333333333333],[116,153,79,-0.4583333333333333],[116,154,64,-0.4583333333333333],[116,154,65,-0.4583333333333333],[116,154,66,-0.4583333333333333],[116,154,67,-0.4583333333333333],[116,154,68,-0.4583333333333333],[116,154,69,-0.4583333333333333],[116,154,70,-0.4583333333333333],[116,154,71,-0.4583333333333333],[116,154,72,-0.4583333333333333],[116,154,73,-0.4583333333333333],[116,154,74,-0.4583333333333333],[116,154,75,-0.4583333333333333],[116,154,76,-0.4583333333333333],[116,154,77,-0.4583333333333333],[116,154,78,-0.4583333333333333],[116,154,79,-0.4583333333333333],[116,155,64,-0.4583333333333333],[116,155,65,-0.4583333333333333],[116,155,66,-0.4583333333333333],[116,155,67,-0.4583333333333333],[116,155,68,-0.4583333333333333],[116,155,69,-0.4583333333333333],[116,155,70,-0.4583333333333333],[116,155,71,-0.4583333333333333],[116,155,72,-0.4583333333333333],[116,155,73,-0.4583333333333333],[116,155,74,-0.4583333333333333],[116,155,75,-0.4583333333333333],[116,155,76,-0.4583333333333333],[116,155,77,-0.4583333333333333],[116,155,78,-0.4583333333333333],[116,155,79,-0.4583333333333333],[116,156,64,-0.4583333333333333],[116,156,65,-0.4583333333333333],[116,156,66,-0.4583333333333333],[116,156,67,-0.4583333333333333],[116,156,68,-0.4583333333333333],[116,156,69,-0.4583333333333333],[116,156,70,-0.4583333333333333],[116,156,71,-0.4583333333333333],[116,156,72,-0.4583333333333333],[116,156,73,-0.4583333333333333],[116,156,74,-0.4583333333333333],[116,156,75,-0.4583333333333333],[116,156,76,-0.4583333333333333],[116,156,77,-0.4583333333333333],[116,156,78,-0.4583333333333333],[116,156,79,-0.4583333333333333],[116,157,64,-0.4583333333333333],[116,157,65,-0.4583333333333333],[116,157,66,-0.4583333333333333],[116,157,67,-0.4583333333333333],[116,157,68,-0.4583333333333333],[116,157,69,-0.4583333333333333],[116,157,70,-0.4583333333333333],[116,157,71,-0.4583333333333333],[116,157,72,-0.4583333333333333],[116,157,73,-0.4583333333333333],[116,157,74,-0.4583333333333333],[116,157,75,-0.4583333333333333],[116,157,76,-0.4583333333333333],[116,157,77,-0.4583333333333333],[116,157,78,-0.4583333333333333],[116,157,79,-0.4583333333333333],[116,158,64,-0.4583333333333333],[116,158,65,-0.4583333333333333],[116,158,66,-0.4583333333333333],[116,158,67,-0.4583333333333333],[116,158,68,-0.4583333333333333],[116,158,69,-0.4583333333333333],[116,158,70,-0.4583333333333333],[116,158,71,-0.4583333333333333],[116,158,72,-0.4583333333333333],[116,158,73,-0.4583333333333333],[116,158,74,-0.4583333333333333],[116,158,75,-0.4583333333333333],[116,158,76,-0.4583333333333333],[116,158,77,-0.4583333333333333],[116,158,78,-0.4583333333333333],[116,158,79,-0.4583333333333333],[116,159,64,-0.4583333333333333],[116,159,65,-0.4583333333333333],[116,159,66,-0.4583333333333333],[116,159,67,-0.4583333333333333],[116,159,68,-0.4583333333333333],[116,159,69,-0.4583333333333333],[116,159,70,-0.4583333333333333],[116,159,71,-0.4583333333333333],[116,159,72,-0.4583333333333333],[116,159,73,-0.4583333333333333],[116,159,74,-0.4583333333333333],[116,159,75,-0.4583333333333333],[116,159,76,-0.4583333333333333],[116,159,77,-0.4583333333333333],[116,159,78,-0.4583333333333333],[116,159,79,-0.4583333333333333],[116,160,64,-0.4583333333333333],[116,160,65,-0.4583333333333333],[116,160,66,-0.4583333333333333],[116,160,67,-0.4583333333333333],[116,160,68,-0.4583333333333333],[116,160,69,-0.4583333333333333],[116,160,70,-0.4583333333333333],[116,160,71,-0.4583333333333333],[116,160,72,-0.4583333333333333],[116,160,73,-0.4583333333333333],[116,160,74,-0.4583333333333333],[116,160,75,-0.4583333333333333],[116,160,76,-0.4583333333333333],[116,160,77,-0.4583333333333333],[116,160,78,-0.4583333333333333],[116,160,79,-0.4583333333333333],[116,161,64,-0.4583333333333333],[116,161,65,-0.4583333333333333],[116,161,66,-0.4583333333333333],[116,161,67,-0.4583333333333333],[116,161,68,-0.4583333333333333],[116,161,69,-0.4583333333333333],[116,161,70,-0.4583333333333333],[116,161,71,-0.4583333333333333],[116,161,72,-0.4583333333333333],[116,161,73,-0.4583333333333333],[116,161,74,-0.4583333333333333],[116,161,75,-0.4583333333333333],[116,161,76,-0.4583333333333333],[116,161,77,-0.4583333333333333],[116,161,78,-0.4583333333333333],[116,161,79,-0.4583333333333333],[116,162,64,-0.4583333333333333],[116,162,65,-0.4583333333333333],[116,162,66,-0.4583333333333333],[116,162,67,-0.4583333333333333],[116,162,68,-0.4583333333333333],[116,162,69,-0.4583333333333333],[116,162,70,-0.4583333333333333],[116,162,71,-0.4583333333333333],[116,162,72,-0.4583333333333333],[116,162,73,-0.4583333333333333],[116,162,74,-0.4583333333333333],[116,162,75,-0.4583333333333333],[116,162,76,-0.4583333333333333],[116,162,77,-0.4583333333333333],[116,162,78,-0.4583333333333333],[116,162,79,-0.4583333333333333],[116,163,64,-0.4583333333333333],[116,163,65,-0.4583333333333333],[116,163,66,-0.4583333333333333],[116,163,67,-0.4583333333333333],[116,163,68,-0.4583333333333333],[116,163,69,-0.4583333333333333],[116,163,70,-0.4583333333333333],[116,163,71,-0.4583333333333333],[116,163,72,-0.4583333333333333],[116,163,73,-0.4583333333333333],[116,163,74,-0.4583333333333333],[116,163,75,-0.4583333333333333],[116,163,76,-0.4583333333333333],[116,163,77,-0.4583333333333333],[116,163,78,-0.4583333333333333],[116,163,79,-0.4583333333333333],[116,164,64,-0.4583333333333333],[116,164,65,-0.4583333333333333],[116,164,66,-0.4583333333333333],[116,164,67,-0.4583333333333333],[116,164,68,-0.4583333333333333],[116,164,69,-0.4583333333333333],[116,164,70,-0.4583333333333333],[116,164,71,-0.4583333333333333],[116,164,72,-0.4583333333333333],[116,164,73,-0.4583333333333333],[116,164,74,-0.4583333333333333],[116,164,75,-0.4583333333333333],[116,164,76,-0.4583333333333333],[116,164,77,-0.4583333333333333],[116,164,78,-0.4583333333333333],[116,164,79,-0.4583333333333333],[116,165,64,-0.4583333333333333],[116,165,65,-0.4583333333333333],[116,165,66,-0.4583333333333333],[116,165,67,-0.4583333333333333],[116,165,68,-0.4583333333333333],[116,165,69,-0.4583333333333333],[116,165,70,-0.4583333333333333],[116,165,71,-0.4583333333333333],[116,165,72,-0.4583333333333333],[116,165,73,-0.4583333333333333],[116,165,74,-0.4583333333333333],[116,165,75,-0.4583333333333333],[116,165,76,-0.4583333333333333],[116,165,77,-0.4583333333333333],[116,165,78,-0.4583333333333333],[116,165,79,-0.4583333333333333],[116,166,64,-0.4583333333333333],[116,166,65,-0.4583333333333333],[116,166,66,-0.4583333333333333],[116,166,67,-0.4583333333333333],[116,166,68,-0.4583333333333333],[116,166,69,-0.4583333333333333],[116,166,70,-0.4583333333333333],[116,166,71,-0.4583333333333333],[116,166,72,-0.4583333333333333],[116,166,73,-0.4583333333333333],[116,166,74,-0.4583333333333333],[116,166,75,-0.4583333333333333],[116,166,76,-0.4583333333333333],[116,166,77,-0.4583333333333333],[116,166,78,-0.4583333333333333],[116,166,79,-0.4583333333333333],[116,167,64,-0.4583333333333333],[116,167,65,-0.4583333333333333],[116,167,66,-0.4583333333333333],[116,167,67,-0.4583333333333333],[116,167,68,-0.4583333333333333],[116,167,69,-0.4583333333333333],[116,167,70,-0.4583333333333333],[116,167,71,-0.4583333333333333],[116,167,72,-0.4583333333333333],[116,167,73,-0.4583333333333333],[116,167,74,-0.4583333333333333],[116,167,75,-0.4583333333333333],[116,167,76,-0.4583333333333333],[116,167,77,-0.4583333333333333],[116,167,78,-0.4583333333333333],[116,167,79,-0.4583333333333333],[116,168,64,-0.4583333333333333],[116,168,65,-0.4583333333333333],[116,168,66,-0.4583333333333333],[116,168,67,-0.4583333333333333],[116,168,68,-0.4583333333333333],[116,168,69,-0.4583333333333333],[116,168,70,-0.4583333333333333],[116,168,71,-0.4583333333333333],[116,168,72,-0.4583333333333333],[116,168,73,-0.4583333333333333],[116,168,74,-0.4583333333333333],[116,168,75,-0.4583333333333333],[116,168,76,-0.4583333333333333],[116,168,77,-0.4583333333333333],[116,168,78,-0.4583333333333333],[116,168,79,-0.4583333333333333],[116,169,64,-0.4583333333333333],[116,169,65,-0.4583333333333333],[116,169,66,-0.4583333333333333],[116,169,67,-0.4583333333333333],[116,169,68,-0.4583333333333333],[116,169,69,-0.4583333333333333],[116,169,70,-0.4583333333333333],[116,169,71,-0.4583333333333333],[116,169,72,-0.4583333333333333],[116,169,73,-0.4583333333333333],[116,169,74,-0.4583333333333333],[116,169,75,-0.4583333333333333],[116,169,76,-0.4583333333333333],[116,169,77,-0.4583333333333333],[116,169,78,-0.4583333333333333],[116,169,79,-0.4583333333333333],[116,170,64,-0.4583333333333333],[116,170,65,-0.4583333333333333],[116,170,66,-0.4583333333333333],[116,170,67,-0.4583333333333333],[116,170,68,-0.4583333333333333],[116,170,69,-0.4583333333333333],[116,170,70,-0.4583333333333333],[116,170,71,-0.4583333333333333],[116,170,72,-0.4583333333333333],[116,170,73,-0.4583333333333333],[116,170,74,-0.4583333333333333],[116,170,75,-0.4583333333333333],[116,170,76,-0.4583333333333333],[116,170,77,-0.4583333333333333],[116,170,78,-0.4583333333333333],[116,170,79,-0.4583333333333333],[116,171,64,-0.4583333333333333],[116,171,65,-0.4583333333333333],[116,171,66,-0.4583333333333333],[116,171,67,-0.4583333333333333],[116,171,68,-0.4583333333333333],[116,171,69,-0.4583333333333333],[116,171,70,-0.4583333333333333],[116,171,71,-0.4583333333333333],[116,171,72,-0.4583333333333333],[116,171,73,-0.4583333333333333],[116,171,74,-0.4583333333333333],[116,171,75,-0.4583333333333333],[116,171,76,-0.4583333333333333],[116,171,77,-0.4583333333333333],[116,171,78,-0.4583333333333333],[116,171,79,-0.4583333333333333],[116,172,64,-0.4583333333333333],[116,172,65,-0.4583333333333333],[116,172,66,-0.4583333333333333],[116,172,67,-0.4583333333333333],[116,172,68,-0.4583333333333333],[116,172,69,-0.4583333333333333],[116,172,70,-0.4583333333333333],[116,172,71,-0.4583333333333333],[116,172,72,-0.4583333333333333],[116,172,73,-0.4583333333333333],[116,172,74,-0.4583333333333333],[116,172,75,-0.4583333333333333],[116,172,76,-0.4583333333333333],[116,172,77,-0.4583333333333333],[116,172,78,-0.4583333333333333],[116,172,79,-0.4583333333333333],[116,173,64,-0.4583333333333333],[116,173,65,-0.4583333333333333],[116,173,66,-0.4583333333333333],[116,173,67,-0.4583333333333333],[116,173,68,-0.4583333333333333],[116,173,69,-0.4583333333333333],[116,173,70,-0.4583333333333333],[116,173,71,-0.4583333333333333],[116,173,72,-0.4583333333333333],[116,173,73,-0.4583333333333333],[116,173,74,-0.4583333333333333],[116,173,75,-0.4583333333333333],[116,173,76,-0.4583333333333333],[116,173,77,-0.4583333333333333],[116,173,78,-0.4583333333333333],[116,173,79,-0.4583333333333333],[116,174,64,-0.4583333333333333],[116,174,65,-0.4583333333333333],[116,174,66,-0.4583333333333333],[116,174,67,-0.4583333333333333],[116,174,68,-0.4583333333333333],[116,174,69,-0.4583333333333333],[116,174,70,-0.4583333333333333],[116,174,71,-0.4583333333333333],[116,174,72,-0.4583333333333333],[116,174,73,-0.4583333333333333],[116,174,74,-0.4583333333333333],[116,174,75,-0.4583333333333333],[116,174,76,-0.4583333333333333],[116,174,77,-0.4583333333333333],[116,174,78,-0.4583333333333333],[116,174,79,-0.4583333333333333],[116,175,64,-0.4583333333333333],[116,175,65,-0.4583333333333333],[116,175,66,-0.4583333333333333],[116,175,67,-0.4583333333333333],[116,175,68,-0.4583333333333333],[116,175,69,-0.4583333333333333],[116,175,70,-0.4583333333333333],[116,175,71,-0.4583333333333333],[116,175,72,-0.4583333333333333],[116,175,73,-0.4583333333333333],[116,175,74,-0.4583333333333333],[116,175,75,-0.4583333333333333],[116,175,76,-0.4583333333333333],[116,175,77,-0.4583333333333333],[116,175,78,-0.4583333333333333],[116,175,79,-0.4583333333333333],[116,176,64,-0.4583333333333333],[116,176,65,-0.4583333333333333],[116,176,66,-0.4583333333333333],[116,176,67,-0.4583333333333333],[116,176,68,-0.4583333333333333],[116,176,69,-0.4583333333333333],[116,176,70,-0.4583333333333333],[116,176,71,-0.4583333333333333],[116,176,72,-0.4583333333333333],[116,176,73,-0.4583333333333333],[116,176,74,-0.4583333333333333],[116,176,75,-0.4583333333333333],[116,176,76,-0.4583333333333333],[116,176,77,-0.4583333333333333],[116,176,78,-0.4583333333333333],[116,176,79,-0.4583333333333333],[116,177,64,-0.4583333333333333],[116,177,65,-0.4583333333333333],[116,177,66,-0.4583333333333333],[116,177,67,-0.4583333333333333],[116,177,68,-0.4583333333333333],[116,177,69,-0.4583333333333333],[116,177,70,-0.4583333333333333],[116,177,71,-0.4583333333333333],[116,177,72,-0.4583333333333333],[116,177,73,-0.4583333333333333],[116,177,74,-0.4583333333333333],[116,177,75,-0.4583333333333333],[116,177,76,-0.4583333333333333],[116,177,77,-0.4583333333333333],[116,177,78,-0.4583333333333333],[116,177,79,-0.4583333333333333],[116,178,64,-0.4583333333333333],[116,178,65,-0.4583333333333333],[116,178,66,-0.4583333333333333],[116,178,67,-0.4583333333333333],[116,178,68,-0.4583333333333333],[116,178,69,-0.4583333333333333],[116,178,70,-0.4583333333333333],[116,178,71,-0.4583333333333333],[116,178,72,-0.4583333333333333],[116,178,73,-0.4583333333333333],[116,178,74,-0.4583333333333333],[116,178,75,-0.4583333333333333],[116,178,76,-0.4583333333333333],[116,178,77,-0.4583333333333333],[116,178,78,-0.4583333333333333],[116,178,79,-0.4583333333333333],[116,179,64,-0.4583333333333333],[116,179,65,-0.4583333333333333],[116,179,66,-0.4583333333333333],[116,179,67,-0.4583333333333333],[116,179,68,-0.4583333333333333],[116,179,69,-0.4583333333333333],[116,179,70,-0.4583333333333333],[116,179,71,-0.4583333333333333],[116,179,72,-0.4583333333333333],[116,179,73,-0.4583333333333333],[116,179,74,-0.4583333333333333],[116,179,75,-0.4583333333333333],[116,179,76,-0.4583333333333333],[116,179,77,-0.4583333333333333],[116,179,78,-0.4583333333333333],[116,179,79,-0.4583333333333333],[116,180,64,-0.4583333333333333],[116,180,65,-0.4583333333333333],[116,180,66,-0.4583333333333333],[116,180,67,-0.4583333333333333],[116,180,68,-0.4583333333333333],[116,180,69,-0.4583333333333333],[116,180,70,-0.4583333333333333],[116,180,71,-0.4583333333333333],[116,180,72,-0.4583333333333333],[116,180,73,-0.4583333333333333],[116,180,74,-0.4583333333333333],[116,180,75,-0.4583333333333333],[116,180,76,-0.4583333333333333],[116,180,77,-0.4583333333333333],[116,180,78,-0.4583333333333333],[116,180,79,-0.4583333333333333],[116,181,64,-0.4583333333333333],[116,181,65,-0.4583333333333333],[116,181,66,-0.4583333333333333],[116,181,67,-0.4583333333333333],[116,181,68,-0.4583333333333333],[116,181,69,-0.4583333333333333],[116,181,70,-0.4583333333333333],[116,181,71,-0.4583333333333333],[116,181,72,-0.4583333333333333],[116,181,73,-0.4583333333333333],[116,181,74,-0.4583333333333333],[116,181,75,-0.4583333333333333],[116,181,76,-0.4583333333333333],[116,181,77,-0.4583333333333333],[116,181,78,-0.4583333333333333],[116,181,79,-0.4583333333333333],[116,182,64,-0.4583333333333333],[116,182,65,-0.4583333333333333],[116,182,66,-0.4583333333333333],[116,182,67,-0.4583333333333333],[116,182,68,-0.4583333333333333],[116,182,69,-0.4583333333333333],[116,182,70,-0.4583333333333333],[116,182,71,-0.4583333333333333],[116,182,72,-0.4583333333333333],[116,182,73,-0.4583333333333333],[116,182,74,-0.4583333333333333],[116,182,75,-0.4583333333333333],[116,182,76,-0.4583333333333333],[116,182,77,-0.4583333333333333],[116,182,78,-0.4583333333333333],[116,182,79,-0.4583333333333333],[116,183,64,-0.4583333333333333],[116,183,65,-0.4583333333333333],[116,183,66,-0.4583333333333333],[116,183,67,-0.4583333333333333],[116,183,68,-0.4583333333333333],[116,183,69,-0.4583333333333333],[116,183,70,-0.4583333333333333],[116,183,71,-0.4583333333333333],[116,183,72,-0.4583333333333333],[116,183,73,-0.4583333333333333],[116,183,74,-0.4583333333333333],[116,183,75,-0.4583333333333333],[116,183,76,-0.4583333333333333],[116,183,77,-0.4583333333333333],[116,183,78,-0.4583333333333333],[116,183,79,-0.4583333333333333],[116,184,64,-0.4583333333333333],[116,184,65,-0.4583333333333333],[116,184,66,-0.4583333333333333],[116,184,67,-0.4583333333333333],[116,184,68,-0.4583333333333333],[116,184,69,-0.4583333333333333],[116,184,70,-0.4583333333333333],[116,184,71,-0.4583333333333333],[116,184,72,-0.4583333333333333],[116,184,73,-0.4583333333333333],[116,184,74,-0.4583333333333333],[116,184,75,-0.4583333333333333],[116,184,76,-0.4583333333333333],[116,184,77,-0.4583333333333333],[116,184,78,-0.4583333333333333],[116,184,79,-0.4583333333333333],[116,185,64,-0.4583333333333333],[116,185,65,-0.4583333333333333],[116,185,66,-0.4583333333333333],[116,185,67,-0.4583333333333333],[116,185,68,-0.4583333333333333],[116,185,69,-0.4583333333333333],[116,185,70,-0.4583333333333333],[116,185,71,-0.4583333333333333],[116,185,72,-0.4583333333333333],[116,185,73,-0.4583333333333333],[116,185,74,-0.4583333333333333],[116,185,75,-0.4583333333333333],[116,185,76,-0.4583333333333333],[116,185,77,-0.4583333333333333],[116,185,78,-0.4583333333333333],[116,185,79,-0.4583333333333333],[116,186,64,-0.4583333333333333],[116,186,65,-0.4583333333333333],[116,186,66,-0.4583333333333333],[116,186,67,-0.4583333333333333],[116,186,68,-0.4583333333333333],[116,186,69,-0.4583333333333333],[116,186,70,-0.4583333333333333],[116,186,71,-0.4583333333333333],[116,186,72,-0.4583333333333333],[116,186,73,-0.4583333333333333],[116,186,74,-0.4583333333333333],[116,186,75,-0.4583333333333333],[116,186,76,-0.4583333333333333],[116,186,77,-0.4583333333333333],[116,186,78,-0.4583333333333333],[116,186,79,-0.4583333333333333],[116,187,64,-0.4583333333333333],[116,187,65,-0.4583333333333333],[116,187,66,-0.4583333333333333],[116,187,67,-0.4583333333333333],[116,187,68,-0.4583333333333333],[116,187,69,-0.4583333333333333],[116,187,70,-0.4583333333333333],[116,187,71,-0.4583333333333333],[116,187,72,-0.4583333333333333],[116,187,73,-0.4583333333333333],[116,187,74,-0.4583333333333333],[116,187,75,-0.4583333333333333],[116,187,76,-0.4583333333333333],[116,187,77,-0.4583333333333333],[116,187,78,-0.4583333333333333],[116,187,79,-0.4583333333333333],[116,188,64,-0.4583333333333333],[116,188,65,-0.4583333333333333],[116,188,66,-0.4583333333333333],[116,188,67,-0.4583333333333333],[116,188,68,-0.4583333333333333],[116,188,69,-0.4583333333333333],[116,188,70,-0.4583333333333333],[116,188,71,-0.4583333333333333],[116,188,72,-0.4583333333333333],[116,188,73,-0.4583333333333333],[116,188,74,-0.4583333333333333],[116,188,75,-0.4583333333333333],[116,188,76,-0.4583333333333333],[116,188,77,-0.4583333333333333],[116,188,78,-0.4583333333333333],[116,188,79,-0.4583333333333333],[116,189,64,-0.4583333333333333],[116,189,65,-0.4583333333333333],[116,189,66,-0.4583333333333333],[116,189,67,-0.4583333333333333],[116,189,68,-0.4583333333333333],[116,189,69,-0.4583333333333333],[116,189,70,-0.4583333333333333],[116,189,71,-0.4583333333333333],[116,189,72,-0.4583333333333333],[116,189,73,-0.4583333333333333],[116,189,74,-0.4583333333333333],[116,189,75,-0.4583333333333333],[116,189,76,-0.4583333333333333],[116,189,77,-0.4583333333333333],[116,189,78,-0.4583333333333333],[116,189,79,-0.4583333333333333],[116,190,64,-0.4583333333333333],[116,190,65,-0.4583333333333333],[116,190,66,-0.4583333333333333],[116,190,67,-0.4583333333333333],[116,190,68,-0.4583333333333333],[116,190,69,-0.4583333333333333],[116,190,70,-0.4583333333333333],[116,190,71,-0.4583333333333333],[116,190,72,-0.4583333333333333],[116,190,73,-0.4583333333333333],[116,190,74,-0.4583333333333333],[116,190,75,-0.4583333333333333],[116,190,76,-0.4583333333333333],[116,190,77,-0.4583333333333333],[116,190,78,-0.4583333333333333],[116,190,79,-0.4583333333333333],[116,191,64,-0.4583333333333333],[116,191,65,-0.4583333333333333],[116,191,66,-0.4583333333333333],[116,191,67,-0.4583333333333333],[116,191,68,-0.4583333333333333],[116,191,69,-0.4583333333333333],[116,191,70,-0.4583333333333333],[116,191,71,-0.4583333333333333],[116,191,72,-0.4583333333333333],[116,191,73,-0.4583333333333333],[116,191,74,-0.4583333333333333],[116,191,75,-0.4583333333333333],[116,191,76,-0.4583333333333333],[116,191,77,-0.4583333333333333],[116,191,78,-0.4583333333333333],[116,191,79,-0.4583333333333333],[116,192,64,-0.4583333333333333],[116,192,65,-0.4583333333333333],[116,192,66,-0.4583333333333333],[116,192,67,-0.4583333333333333],[116,192,68,-0.4583333333333333],[116,192,69,-0.4583333333333333],[116,192,70,-0.4583333333333333],[116,192,71,-0.4583333333333333],[116,192,72,-0.4583333333333333],[116,192,73,-0.4583333333333333],[116,192,74,-0.4583333333333333],[116,192,75,-0.4583333333333333],[116,192,76,-0.4583333333333333],[116,192,77,-0.4583333333333333],[116,192,78,-0.4583333333333333],[116,192,79,-0.4583333333333333],[116,193,64,-0.4583333333333333],[116,193,65,-0.4583333333333333],[116,193,66,-0.4583333333333333],[116,193,67,-0.4583333333333333],[116,193,68,-0.4583333333333333],[116,193,69,-0.4583333333333333],[116,193,70,-0.4583333333333333],[116,193,71,-0.4583333333333333],[116,193,72,-0.4583333333333333],[116,193,73,-0.4583333333333333],[116,193,74,-0.4583333333333333],[116,193,75,-0.4583333333333333],[116,193,76,-0.4583333333333333],[116,193,77,-0.4583333333333333],[116,193,78,-0.4583333333333333],[116,193,79,-0.4583333333333333],[116,194,64,-0.4583333333333333],[116,194,65,-0.4583333333333333],[116,194,66,-0.4583333333333333],[116,194,67,-0.4583333333333333],[116,194,68,-0.4583333333333333],[116,194,69,-0.4583333333333333],[116,194,70,-0.4583333333333333],[116,194,71,-0.4583333333333333],[116,194,72,-0.4583333333333333],[116,194,73,-0.4583333333333333],[116,194,74,-0.4583333333333333],[116,194,75,-0.4583333333333333],[116,194,76,-0.4583333333333333],[116,194,77,-0.4583333333333333],[116,194,78,-0.4583333333333333],[116,194,79,-0.4583333333333333],[116,195,64,-0.4583333333333333],[116,195,65,-0.4583333333333333],[116,195,66,-0.4583333333333333],[116,195,67,-0.4583333333333333],[116,195,68,-0.4583333333333333],[116,195,69,-0.4583333333333333],[116,195,70,-0.4583333333333333],[116,195,71,-0.4583333333333333],[116,195,72,-0.4583333333333333],[116,195,73,-0.4583333333333333],[116,195,74,-0.4583333333333333],[116,195,75,-0.4583333333333333],[116,195,76,-0.4583333333333333],[116,195,77,-0.4583333333333333],[116,195,78,-0.4583333333333333],[116,195,79,-0.4583333333333333],[116,196,64,-0.4583333333333333],[116,196,65,-0.4583333333333333],[116,196,66,-0.4583333333333333],[116,196,67,-0.4583333333333333],[116,196,68,-0.4583333333333333],[116,196,69,-0.4583333333333333],[116,196,70,-0.4583333333333333],[116,196,71,-0.4583333333333333],[116,196,72,-0.4583333333333333],[116,196,73,-0.4583333333333333],[116,196,74,-0.4583333333333333],[116,196,75,-0.4583333333333333],[116,196,76,-0.4583333333333333],[116,196,77,-0.4583333333333333],[116,196,78,-0.4583333333333333],[116,196,79,-0.4583333333333333],[116,197,64,-0.4583333333333333],[116,197,65,-0.4583333333333333],[116,197,66,-0.4583333333333333],[116,197,67,-0.4583333333333333],[116,197,68,-0.4583333333333333],[116,197,69,-0.4583333333333333],[116,197,70,-0.4583333333333333],[116,197,71,-0.4583333333333333],[116,197,72,-0.4583333333333333],[116,197,73,-0.4583333333333333],[116,197,74,-0.4583333333333333],[116,197,75,-0.4583333333333333],[116,197,76,-0.4583333333333333],[116,197,77,-0.4583333333333333],[116,197,78,-0.4583333333333333],[116,197,79,-0.4583333333333333],[116,198,64,-0.4583333333333333],[116,198,65,-0.4583333333333333],[116,198,66,-0.4583333333333333],[116,198,67,-0.4583333333333333],[116,198,68,-0.4583333333333333],[116,198,69,-0.4583333333333333],[116,198,70,-0.4583333333333333],[116,198,71,-0.4583333333333333],[116,198,72,-0.4583333333333333],[116,198,73,-0.4583333333333333],[116,198,74,-0.4583333333333333],[116,198,75,-0.4583333333333333],[116,198,76,-0.4583333333333333],[116,198,77,-0.4583333333333333],[116,198,78,-0.4583333333333333],[116,198,79,-0.4583333333333333],[116,199,64,-0.4583333333333333],[116,199,65,-0.4583333333333333],[116,199,66,-0.4583333333333333],[116,199,67,-0.4583333333333333],[116,199,68,-0.4583333333333333],[116,199,69,-0.4583333333333333],[116,199,70,-0.4583333333333333],[116,199,71,-0.4583333333333333],[116,199,72,-0.4583333333333333],[116,199,73,-0.4583333333333333],[116,199,74,-0.4583333333333333],[116,199,75,-0.4583333333333333],[116,199,76,-0.4583333333333333],[116,199,77,-0.4583333333333333],[116,199,78,-0.4583333333333333],[116,199,79,-0.4583333333333333],[116,200,64,-0.4583333333333333],[116,200,65,-0.4583333333333333],[116,200,66,-0.4583333333333333],[116,200,67,-0.4583333333333333],[116,200,68,-0.4583333333333333],[116,200,69,-0.4583333333333333],[116,200,70,-0.4583333333333333],[116,200,71,-0.4583333333333333],[116,200,72,-0.4583333333333333],[116,200,73,-0.4583333333333333],[116,200,74,-0.4583333333333333],[116,200,75,-0.4583333333333333],[116,200,76,-0.4583333333333333],[116,200,77,-0.4583333333333333],[116,200,78,-0.4583333333333333],[116,200,79,-0.4583333333333333],[116,201,64,-0.4583333333333333],[116,201,65,-0.4583333333333333],[116,201,66,-0.4583333333333333],[116,201,67,-0.4583333333333333],[116,201,68,-0.4583333333333333],[116,201,69,-0.4583333333333333],[116,201,70,-0.4583333333333333],[116,201,71,-0.4583333333333333],[116,201,72,-0.4583333333333333],[116,201,73,-0.4583333333333333],[116,201,74,-0.4583333333333333],[116,201,75,-0.4583333333333333],[116,201,76,-0.4583333333333333],[116,201,77,-0.4583333333333333],[116,201,78,-0.4583333333333333],[116,201,79,-0.4583333333333333],[116,202,64,-0.4583333333333333],[116,202,65,-0.4583333333333333],[116,202,66,-0.4583333333333333],[116,202,67,-0.4583333333333333],[116,202,68,-0.4583333333333333],[116,202,69,-0.4583333333333333],[116,202,70,-0.4583333333333333],[116,202,71,-0.4583333333333333],[116,202,72,-0.4583333333333333],[116,202,73,-0.4583333333333333],[116,202,74,-0.4583333333333333],[116,202,75,-0.4583333333333333],[116,202,76,-0.4583333333333333],[116,202,77,-0.4583333333333333],[116,202,78,-0.4583333333333333],[116,202,79,-0.4583333333333333],[116,203,64,-0.4583333333333333],[116,203,65,-0.4583333333333333],[116,203,66,-0.4583333333333333],[116,203,67,-0.4583333333333333],[116,203,68,-0.4583333333333333],[116,203,69,-0.4583333333333333],[116,203,70,-0.4583333333333333],[116,203,71,-0.4583333333333333],[116,203,72,-0.4583333333333333],[116,203,73,-0.4583333333333333],[116,203,74,-0.4583333333333333],[116,203,75,-0.4583333333333333],[116,203,76,-0.4583333333333333],[116,203,77,-0.4583333333333333],[116,203,78,-0.4583333333333333],[116,203,79,-0.4583333333333333],[116,204,64,-0.4583333333333333],[116,204,65,-0.4583333333333333],[116,204,66,-0.4583333333333333],[116,204,67,-0.4583333333333333],[116,204,68,-0.4583333333333333],[116,204,69,-0.4583333333333333],[116,204,70,-0.4583333333333333],[116,204,71,-0.4583333333333333],[116,204,72,-0.4583333333333333],[116,204,73,-0.4583333333333333],[116,204,74,-0.4583333333333333],[116,204,75,-0.4583333333333333],[116,204,76,-0.4583333333333333],[116,204,77,-0.4583333333333333],[116,204,78,-0.4583333333333333],[116,204,79,-0.4583333333333333],[116,205,64,-0.4583333333333333],[116,205,65,-0.4583333333333333],[116,205,66,-0.4583333333333333],[116,205,67,-0.4583333333333333],[116,205,68,-0.4583333333333333],[116,205,69,-0.4583333333333333],[116,205,70,-0.4583333333333333],[116,205,71,-0.4583333333333333],[116,205,72,-0.4583333333333333],[116,205,73,-0.4583333333333333],[116,205,74,-0.4583333333333333],[116,205,75,-0.4583333333333333],[116,205,76,-0.4583333333333333],[116,205,77,-0.4583333333333333],[116,205,78,-0.4583333333333333],[116,205,79,-0.4583333333333333],[116,206,64,-0.4583333333333333],[116,206,65,-0.4583333333333333],[116,206,66,-0.4583333333333333],[116,206,67,-0.4583333333333333],[116,206,68,-0.4583333333333333],[116,206,69,-0.4583333333333333],[116,206,70,-0.4583333333333333],[116,206,71,-0.4583333333333333],[116,206,72,-0.4583333333333333],[116,206,73,-0.4583333333333333],[116,206,74,-0.4583333333333333],[116,206,75,-0.4583333333333333],[116,206,76,-0.4583333333333333],[116,206,77,-0.4583333333333333],[116,206,78,-0.4583333333333333],[116,206,79,-0.4583333333333333],[116,207,64,-0.4583333333333333],[116,207,65,-0.4583333333333333],[116,207,66,-0.4583333333333333],[116,207,67,-0.4583333333333333],[116,207,68,-0.4583333333333333],[116,207,69,-0.4583333333333333],[116,207,70,-0.4583333333333333],[116,207,71,-0.4583333333333333],[116,207,72,-0.4583333333333333],[116,207,73,-0.4583333333333333],[116,207,74,-0.4583333333333333],[116,207,75,-0.4583333333333333],[116,207,76,-0.4583333333333333],[116,207,77,-0.4583333333333333],[116,207,78,-0.4583333333333333],[116,207,79,-0.4583333333333333],[116,208,64,-0.4583333333333333],[116,208,65,-0.4583333333333333],[116,208,66,-0.4583333333333333],[116,208,67,-0.4583333333333333],[116,208,68,-0.4583333333333333],[116,208,69,-0.4583333333333333],[116,208,70,-0.4583333333333333],[116,208,71,-0.4583333333333333],[116,208,72,-0.4583333333333333],[116,208,73,-0.4583333333333333],[116,208,74,-0.4583333333333333],[116,208,75,-0.4583333333333333],[116,208,76,-0.4583333333333333],[116,208,77,-0.4583333333333333],[116,208,78,-0.4583333333333333],[116,208,79,-0.4583333333333333],[116,209,64,-0.4583333333333333],[116,209,65,-0.4583333333333333],[116,209,66,-0.4583333333333333],[116,209,67,-0.4583333333333333],[116,209,68,-0.4583333333333333],[116,209,69,-0.4583333333333333],[116,209,70,-0.4583333333333333],[116,209,71,-0.4583333333333333],[116,209,72,-0.4583333333333333],[116,209,73,-0.4583333333333333],[116,209,74,-0.4583333333333333],[116,209,75,-0.4583333333333333],[116,209,76,-0.4583333333333333],[116,209,77,-0.4583333333333333],[116,209,78,-0.4583333333333333],[116,209,79,-0.4583333333333333],[116,210,64,-0.4583333333333333],[116,210,65,-0.4583333333333333],[116,210,66,-0.4583333333333333],[116,210,67,-0.4583333333333333],[116,210,68,-0.4583333333333333],[116,210,69,-0.4583333333333333],[116,210,70,-0.4583333333333333],[116,210,71,-0.4583333333333333],[116,210,72,-0.4583333333333333],[116,210,73,-0.4583333333333333],[116,210,74,-0.4583333333333333],[116,210,75,-0.4583333333333333],[116,210,76,-0.4583333333333333],[116,210,77,-0.4583333333333333],[116,210,78,-0.4583333333333333],[116,210,79,-0.4583333333333333],[116,211,64,-0.4583333333333333],[116,211,65,-0.4583333333333333],[116,211,66,-0.4583333333333333],[116,211,67,-0.4583333333333333],[116,211,68,-0.4583333333333333],[116,211,69,-0.4583333333333333],[116,211,70,-0.4583333333333333],[116,211,71,-0.4583333333333333],[116,211,72,-0.4583333333333333],[116,211,73,-0.4583333333333333],[116,211,74,-0.4583333333333333],[116,211,75,-0.4583333333333333],[116,211,76,-0.4583333333333333],[116,211,77,-0.4583333333333333],[116,211,78,-0.4583333333333333],[116,211,79,-0.4583333333333333],[116,212,64,-0.4583333333333333],[116,212,65,-0.4583333333333333],[116,212,66,-0.4583333333333333],[116,212,67,-0.4583333333333333],[116,212,68,-0.4583333333333333],[116,212,69,-0.4583333333333333],[116,212,70,-0.4583333333333333],[116,212,71,-0.4583333333333333],[116,212,72,-0.4583333333333333],[116,212,73,-0.4583333333333333],[116,212,74,-0.4583333333333333],[116,212,75,-0.4583333333333333],[116,212,76,-0.4583333333333333],[116,212,77,-0.4583333333333333],[116,212,78,-0.4583333333333333],[116,212,79,-0.4583333333333333],[116,213,64,-0.4583333333333333],[116,213,65,-0.4583333333333333],[116,213,66,-0.4583333333333333],[116,213,67,-0.4583333333333333],[116,213,68,-0.4583333333333333],[116,213,69,-0.4583333333333333],[116,213,70,-0.4583333333333333],[116,213,71,-0.4583333333333333],[116,213,72,-0.4583333333333333],[116,213,73,-0.4583333333333333],[116,213,74,-0.4583333333333333],[116,213,75,-0.4583333333333333],[116,213,76,-0.4583333333333333],[116,213,77,-0.4583333333333333],[116,213,78,-0.4583333333333333],[116,213,79,-0.4583333333333333],[116,214,64,-0.4583333333333333],[116,214,65,-0.4583333333333333],[116,214,66,-0.4583333333333333],[116,214,67,-0.4583333333333333],[116,214,68,-0.4583333333333333],[116,214,69,-0.4583333333333333],[116,214,70,-0.4583333333333333],[116,214,71,-0.4583333333333333],[116,214,72,-0.4583333333333333],[116,214,73,-0.4583333333333333],[116,214,74,-0.4583333333333333],[116,214,75,-0.4583333333333333],[116,214,76,-0.4583333333333333],[116,214,77,-0.4583333333333333],[116,214,78,-0.4583333333333333],[116,214,79,-0.4583333333333333],[116,215,64,-0.4583333333333333],[116,215,65,-0.4583333333333333],[116,215,66,-0.4583333333333333],[116,215,67,-0.4583333333333333],[116,215,68,-0.4583333333333333],[116,215,69,-0.4583333333333333],[116,215,70,-0.4583333333333333],[116,215,71,-0.4583333333333333],[116,215,72,-0.4583333333333333],[116,215,73,-0.4583333333333333],[116,215,74,-0.4583333333333333],[116,215,75,-0.4583333333333333],[116,215,76,-0.4583333333333333],[116,215,77,-0.4583333333333333],[116,215,78,-0.4583333333333333],[116,215,79,-0.4583333333333333],[116,216,64,-0.4583333333333333],[116,216,65,-0.4583333333333333],[116,216,66,-0.4583333333333333],[116,216,67,-0.4583333333333333],[116,216,68,-0.4583333333333333],[116,216,69,-0.4583333333333333],[116,216,70,-0.4583333333333333],[116,216,71,-0.4583333333333333],[116,216,72,-0.4583333333333333],[116,216,73,-0.4583333333333333],[116,216,74,-0.4583333333333333],[116,216,75,-0.4583333333333333],[116,216,76,-0.4583333333333333],[116,216,77,-0.4583333333333333],[116,216,78,-0.4583333333333333],[116,216,79,-0.4583333333333333],[116,217,64,-0.4583333333333333],[116,217,65,-0.4583333333333333],[116,217,66,-0.4583333333333333],[116,217,67,-0.4583333333333333],[116,217,68,-0.4583333333333333],[116,217,69,-0.4583333333333333],[116,217,70,-0.4583333333333333],[116,217,71,-0.4583333333333333],[116,217,72,-0.4583333333333333],[116,217,73,-0.4583333333333333],[116,217,74,-0.4583333333333333],[116,217,75,-0.4583333333333333],[116,217,76,-0.4583333333333333],[116,217,77,-0.4583333333333333],[116,217,78,-0.4583333333333333],[116,217,79,-0.4583333333333333],[116,218,64,-0.4583333333333333],[116,218,65,-0.4583333333333333],[116,218,66,-0.4583333333333333],[116,218,67,-0.4583333333333333],[116,218,68,-0.4583333333333333],[116,218,69,-0.4583333333333333],[116,218,70,-0.4583333333333333],[116,218,71,-0.4583333333333333],[116,218,72,-0.4583333333333333],[116,218,73,-0.4583333333333333],[116,218,74,-0.4583333333333333],[116,218,75,-0.4583333333333333],[116,218,76,-0.4583333333333333],[116,218,77,-0.4583333333333333],[116,218,78,-0.4583333333333333],[116,218,79,-0.4583333333333333],[116,219,64,-0.4583333333333333],[116,219,65,-0.4583333333333333],[116,219,66,-0.4583333333333333],[116,219,67,-0.4583333333333333],[116,219,68,-0.4583333333333333],[116,219,69,-0.4583333333333333],[116,219,70,-0.4583333333333333],[116,219,71,-0.4583333333333333],[116,219,72,-0.4583333333333333],[116,219,73,-0.4583333333333333],[116,219,74,-0.4583333333333333],[116,219,75,-0.4583333333333333],[116,219,76,-0.4583333333333333],[116,219,77,-0.4583333333333333],[116,219,78,-0.4583333333333333],[116,219,79,-0.4583333333333333],[116,220,64,-0.4583333333333333],[116,220,65,-0.4583333333333333],[116,220,66,-0.4583333333333333],[116,220,67,-0.4583333333333333],[116,220,68,-0.4583333333333333],[116,220,69,-0.4583333333333333],[116,220,70,-0.4583333333333333],[116,220,71,-0.4583333333333333],[116,220,72,-0.4583333333333333],[116,220,73,-0.4583333333333333],[116,220,74,-0.4583333333333333],[116,220,75,-0.4583333333333333],[116,220,76,-0.4583333333333333],[116,220,77,-0.4583333333333333],[116,220,78,-0.4583333333333333],[116,220,79,-0.4583333333333333],[116,221,64,-0.4583333333333333],[116,221,65,-0.4583333333333333],[116,221,66,-0.4583333333333333],[116,221,67,-0.4583333333333333],[116,221,68,-0.4583333333333333],[116,221,69,-0.4583333333333333],[116,221,70,-0.4583333333333333],[116,221,71,-0.4583333333333333],[116,221,72,-0.4583333333333333],[116,221,73,-0.4583333333333333],[116,221,74,-0.4583333333333333],[116,221,75,-0.4583333333333333],[116,221,76,-0.4583333333333333],[116,221,77,-0.4583333333333333],[116,221,78,-0.4583333333333333],[116,221,79,-0.4583333333333333],[116,222,64,-0.4583333333333333],[116,222,65,-0.4583333333333333],[116,222,66,-0.4583333333333333],[116,222,67,-0.4583333333333333],[116,222,68,-0.4583333333333333],[116,222,69,-0.4583333333333333],[116,222,70,-0.4583333333333333],[116,222,71,-0.4583333333333333],[116,222,72,-0.4583333333333333],[116,222,73,-0.4583333333333333],[116,222,74,-0.4583333333333333],[116,222,75,-0.4583333333333333],[116,222,76,-0.4583333333333333],[116,222,77,-0.4583333333333333],[116,222,78,-0.4583333333333333],[116,222,79,-0.4583333333333333],[116,223,64,-0.4583333333333333],[116,223,65,-0.4583333333333333],[116,223,66,-0.4583333333333333],[116,223,67,-0.4583333333333333],[116,223,68,-0.4583333333333333],[116,223,69,-0.4583333333333333],[116,223,70,-0.4583333333333333],[116,223,71,-0.4583333333333333],[116,223,72,-0.4583333333333333],[116,223,73,-0.4583333333333333],[116,223,74,-0.4583333333333333],[116,223,75,-0.4583333333333333],[116,223,76,-0.4583333333333333],[116,223,77,-0.4583333333333333],[116,223,78,-0.4583333333333333],[116,223,79,-0.4583333333333333],[116,224,64,-0.4583333333333333],[116,224,65,-0.4583333333333333],[116,224,66,-0.4583333333333333],[116,224,67,-0.4583333333333333],[116,224,68,-0.4583333333333333],[116,224,69,-0.4583333333333333],[116,224,70,-0.4583333333333333],[116,224,71,-0.4583333333333333],[116,224,72,-0.4583333333333333],[116,224,73,-0.4583333333333333],[116,224,74,-0.4583333333333333],[116,224,75,-0.4583333333333333],[116,224,76,-0.4583333333333333],[116,224,77,-0.4583333333333333],[116,224,78,-0.4583333333333333],[116,224,79,-0.4583333333333333],[116,225,64,-0.4583333333333333],[116,225,65,-0.4583333333333333],[116,225,66,-0.4583333333333333],[116,225,67,-0.4583333333333333],[116,225,68,-0.4583333333333333],[116,225,69,-0.4583333333333333],[116,225,70,-0.4583333333333333],[116,225,71,-0.4583333333333333],[116,225,72,-0.4583333333333333],[116,225,73,-0.4583333333333333],[116,225,74,-0.4583333333333333],[116,225,75,-0.4583333333333333],[116,225,76,-0.4583333333333333],[116,225,77,-0.4583333333333333],[116,225,78,-0.4583333333333333],[116,225,79,-0.4583333333333333],[116,226,64,-0.4583333333333333],[116,226,65,-0.4583333333333333],[116,226,66,-0.4583333333333333],[116,226,67,-0.4583333333333333],[116,226,68,-0.4583333333333333],[116,226,69,-0.4583333333333333],[116,226,70,-0.4583333333333333],[116,226,71,-0.4583333333333333],[116,226,72,-0.4583333333333333],[116,226,73,-0.4583333333333333],[116,226,74,-0.4583333333333333],[116,226,75,-0.4583333333333333],[116,226,76,-0.4583333333333333],[116,226,77,-0.4583333333333333],[116,226,78,-0.4583333333333333],[116,226,79,-0.4583333333333333],[116,227,64,-0.4583333333333333],[116,227,65,-0.4583333333333333],[116,227,66,-0.4583333333333333],[116,227,67,-0.4583333333333333],[116,227,68,-0.4583333333333333],[116,227,69,-0.4583333333333333],[116,227,70,-0.4583333333333333],[116,227,71,-0.4583333333333333],[116,227,72,-0.4583333333333333],[116,227,73,-0.4583333333333333],[116,227,74,-0.4583333333333333],[116,227,75,-0.4583333333333333],[116,227,76,-0.4583333333333333],[116,227,77,-0.4583333333333333],[116,227,78,-0.4583333333333333],[116,227,79,-0.4583333333333333],[116,228,64,-0.4583333333333333],[116,228,65,-0.4583333333333333],[116,228,66,-0.4583333333333333],[116,228,67,-0.4583333333333333],[116,228,68,-0.4583333333333333],[116,228,69,-0.4583333333333333],[116,228,70,-0.4583333333333333],[116,228,71,-0.4583333333333333],[116,228,72,-0.4583333333333333],[116,228,73,-0.4583333333333333],[116,228,74,-0.4583333333333333],[116,228,75,-0.4583333333333333],[116,228,76,-0.4583333333333333],[116,228,77,-0.4583333333333333],[116,228,78,-0.4583333333333333],[116,228,79,-0.4583333333333333],[116,229,64,-0.4583333333333333],[116,229,65,-0.4583333333333333],[116,229,66,-0.4583333333333333],[116,229,67,-0.4583333333333333],[116,229,68,-0.4583333333333333],[116,229,69,-0.4583333333333333],[116,229,70,-0.4583333333333333],[116,229,71,-0.4583333333333333],[116,229,72,-0.4583333333333333],[116,229,73,-0.4583333333333333],[116,229,74,-0.4583333333333333],[116,229,75,-0.4583333333333333],[116,229,76,-0.4583333333333333],[116,229,77,-0.4583333333333333],[116,229,78,-0.4583333333333333],[116,229,79,-0.4583333333333333],[116,230,64,-0.4583333333333333],[116,230,65,-0.4583333333333333],[116,230,66,-0.4583333333333333],[116,230,67,-0.4583333333333333],[116,230,68,-0.4583333333333333],[116,230,69,-0.4583333333333333],[116,230,70,-0.4583333333333333],[116,230,71,-0.4583333333333333],[116,230,72,-0.4583333333333333],[116,230,73,-0.4583333333333333],[116,230,74,-0.4583333333333333],[116,230,75,-0.4583333333333333],[116,230,76,-0.4583333333333333],[116,230,77,-0.4583333333333333],[116,230,78,-0.4583333333333333],[116,230,79,-0.4583333333333333],[116,231,64,-0.4583333333333333],[116,231,65,-0.4583333333333333],[116,231,66,-0.4583333333333333],[116,231,67,-0.4583333333333333],[116,231,68,-0.4583333333333333],[116,231,69,-0.4583333333333333],[116,231,70,-0.4583333333333333],[116,231,71,-0.4583333333333333],[116,231,72,-0.4583333333333333],[116,231,73,-0.4583333333333333],[116,231,74,-0.4583333333333333],[116,231,75,-0.4583333333333333],[116,231,76,-0.4583333333333333],[116,231,77,-0.4583333333333333],[116,231,78,-0.4583333333333333],[116,231,79,-0.4583333333333333],[116,232,64,-0.4583333333333333],[116,232,65,-0.4583333333333333],[116,232,66,-0.4583333333333333],[116,232,67,-0.4583333333333333],[116,232,68,-0.4583333333333333],[116,232,69,-0.4583333333333333],[116,232,70,-0.4583333333333333],[116,232,71,-0.4583333333333333],[116,232,72,-0.4583333333333333],[116,232,73,-0.4583333333333333],[116,232,74,-0.4583333333333333],[116,232,75,-0.4583333333333333],[116,232,76,-0.4583333333333333],[116,232,77,-0.4583333333333333],[116,232,78,-0.4583333333333333],[116,232,79,-0.4583333333333333],[116,233,64,-0.4583333333333333],[116,233,65,-0.4583333333333333],[116,233,66,-0.4583333333333333],[116,233,67,-0.4583333333333333],[116,233,68,-0.4583333333333333],[116,233,69,-0.4583333333333333],[116,233,70,-0.4583333333333333],[116,233,71,-0.4583333333333333],[116,233,72,-0.4583333333333333],[116,233,73,-0.4583333333333333],[116,233,74,-0.4583333333333333],[116,233,75,-0.4583333333333333],[116,233,76,-0.4583333333333333],[116,233,77,-0.4583333333333333],[116,233,78,-0.4583333333333333],[116,233,79,-0.4583333333333333],[116,234,64,-0.4583333333333333],[116,234,65,-0.4583333333333333],[116,234,66,-0.4583333333333333],[116,234,67,-0.4583333333333333],[116,234,68,-0.4583333333333333],[116,234,69,-0.4583333333333333],[116,234,70,-0.4583333333333333],[116,234,71,-0.4583333333333333],[116,234,72,-0.4583333333333333],[116,234,73,-0.4583333333333333],[116,234,74,-0.4583333333333333],[116,234,75,-0.4583333333333333],[116,234,76,-0.4583333333333333],[116,234,77,-0.4583333333333333],[116,234,78,-0.4583333333333333],[116,234,79,-0.4583333333333333],[116,235,64,-0.4583333333333333],[116,235,65,-0.4583333333333333],[116,235,66,-0.4583333333333333],[116,235,67,-0.4583333333333333],[116,235,68,-0.4583333333333333],[116,235,69,-0.4583333333333333],[116,235,70,-0.4583333333333333],[116,235,71,-0.4583333333333333],[116,235,72,-0.4583333333333333],[116,235,73,-0.4583333333333333],[116,235,74,-0.4583333333333333],[116,235,75,-0.4583333333333333],[116,235,76,-0.4583333333333333],[116,235,77,-0.4583333333333333],[116,235,78,-0.4583333333333333],[116,235,79,-0.4583333333333333],[116,236,64,-0.4583333333333333],[116,236,65,-0.4583333333333333],[116,236,66,-0.4583333333333333],[116,236,67,-0.4583333333333333],[116,236,68,-0.4583333333333333],[116,236,69,-0.4583333333333333],[116,236,70,-0.4583333333333333],[116,236,71,-0.4583333333333333],[116,236,72,-0.4583333333333333],[116,236,73,-0.4583333333333333],[116,236,74,-0.4583333333333333],[116,236,75,-0.4583333333333333],[116,236,76,-0.4583333333333333],[116,236,77,-0.4583333333333333],[116,236,78,-0.4583333333333333],[116,236,79,-0.4583333333333333],[116,237,64,-0.4583333333333333],[116,237,65,-0.4583333333333333],[116,237,66,-0.4583333333333333],[116,237,67,-0.4583333333333333],[116,237,68,-0.4583333333333333],[116,237,69,-0.4583333333333333],[116,237,70,-0.4583333333333333],[116,237,71,-0.4583333333333333],[116,237,72,-0.4583333333333333],[116,237,73,-0.4583333333333333],[116,237,74,-0.4583333333333333],[116,237,75,-0.4583333333333333],[116,237,76,-0.4583333333333333],[116,237,77,-0.4583333333333333],[116,237,78,-0.4583333333333333],[116,237,79,-0.4583333333333333],[116,238,64,-0.4583333333333333],[116,238,65,-0.4583333333333333],[116,238,66,-0.4583333333333333],[116,238,67,-0.4583333333333333],[116,238,68,-0.4583333333333333],[116,238,69,-0.4583333333333333],[116,238,70,-0.4583333333333333],[116,238,71,-0.4583333333333333],[116,238,72,-0.4583333333333333],[116,238,73,-0.4583333333333333],[116,238,74,-0.4583333333333333],[116,238,75,-0.4583333333333333],[116,238,76,-0.4583333333333333],[116,238,77,-0.4583333333333333],[116,238,78,-0.4583333333333333],[116,238,79,-0.4583333333333333],[116,239,64,-0.4583333333333333],[116,239,65,-0.4583333333333333],[116,239,66,-0.4583333333333333],[116,239,67,-0.4583333333333333],[116,239,68,-0.4583333333333333],[116,239,69,-0.4583333333333333],[116,239,70,-0.4583333333333333],[116,239,71,-0.4583333333333333],[116,239,72,-0.4583333333333333],[116,239,73,-0.4583333333333333],[116,239,74,-0.4583333333333333],[116,239,75,-0.4583333333333333],[116,239,76,-0.4583333333333333],[116,239,77,-0.4583333333333333],[116,239,78,-0.4583333333333333],[116,239,79,-0.4583333333333333],[116,240,64,-0.4583333333333333],[116,240,65,-0.4583333333333333],[116,240,66,-0.4583333333333333],[116,240,67,-0.4583333333333333],[116,240,68,-0.4583333333333333],[116,240,69,-0.4583333333333333],[116,240,70,-0.4583333333333333],[116,240,71,-0.4583333333333333],[116,240,72,-0.4583333333333333],[116,240,73,-0.4583333333333333],[116,240,74,-0.4583333333333333],[116,240,75,-0.4583333333333333],[116,240,76,-0.4583333333333333],[116,240,77,-0.4583333333333333],[116,240,78,-0.4583333333333333],[116,240,79,-0.4583333333333333],[116,241,64,-0.4583333333333333],[116,241,65,-0.4583333333333333],[116,241,66,-0.4583333333333333],[116,241,67,-0.4583333333333333],[116,241,68,-0.4583333333333333],[116,241,69,-0.4583333333333333],[116,241,70,-0.4583333333333333],[116,241,71,-0.4583333333333333],[116,241,72,-0.4583333333333333],[116,241,73,-0.4583333333333333],[116,241,74,-0.4583333333333333],[116,241,75,-0.4583333333333333],[116,241,76,-0.4583333333333333],[116,241,77,-0.4583333333333333],[116,241,78,-0.4583333333333333],[116,241,79,-0.4583333333333333],[116,242,64,-0.4583333333333333],[116,242,65,-0.4583333333333333],[116,242,66,-0.4583333333333333],[116,242,67,-0.4583333333333333],[116,242,68,-0.4583333333333333],[116,242,69,-0.4583333333333333],[116,242,70,-0.4583333333333333],[116,242,71,-0.4583333333333333],[116,242,72,-0.4583333333333333],[116,242,73,-0.4583333333333333],[116,242,74,-0.4583333333333333],[116,242,75,-0.4583333333333333],[116,242,76,-0.4583333333333333],[116,242,77,-0.4583333333333333],[116,242,78,-0.4583333333333333],[116,242,79,-0.4583333333333333],[116,243,64,-0.4583333333333333],[116,243,65,-0.4583333333333333],[116,243,66,-0.4583333333333333],[116,243,67,-0.4583333333333333],[116,243,68,-0.4583333333333333],[116,243,69,-0.4583333333333333],[116,243,70,-0.4583333333333333],[116,243,71,-0.4583333333333333],[116,243,72,-0.4583333333333333],[116,243,73,-0.4583333333333333],[116,243,74,-0.4583333333333333],[116,243,75,-0.4583333333333333],[116,243,76,-0.4583333333333333],[116,243,77,-0.4583333333333333],[116,243,78,-0.4583333333333333],[116,243,79,-0.4583333333333333],[116,244,64,-0.4583333333333333],[116,244,65,-0.4583333333333333],[116,244,66,-0.4583333333333333],[116,244,67,-0.4583333333333333],[116,244,68,-0.4583333333333333],[116,244,69,-0.4583333333333333],[116,244,70,-0.4583333333333333],[116,244,71,-0.4583333333333333],[116,244,72,-0.4583333333333333],[116,244,73,-0.4583333333333333],[116,244,74,-0.4583333333333333],[116,244,75,-0.4583333333333333],[116,244,76,-0.4583333333333333],[116,244,77,-0.4583333333333333],[116,244,78,-0.4583333333333333],[116,244,79,-0.4583333333333333],[116,245,64,-0.4583333333333333],[116,245,65,-0.4583333333333333],[116,245,66,-0.4583333333333333],[116,245,67,-0.4583333333333333],[116,245,68,-0.4583333333333333],[116,245,69,-0.4583333333333333],[116,245,70,-0.4583333333333333],[116,245,71,-0.4583333333333333],[116,245,72,-0.4583333333333333],[116,245,73,-0.4583333333333333],[116,245,74,-0.4583333333333333],[116,245,75,-0.4583333333333333],[116,245,76,-0.4583333333333333],[116,245,77,-0.4583333333333333],[116,245,78,-0.4583333333333333],[116,245,79,-0.4583333333333333],[116,246,64,-0.4583333333333333],[116,246,65,-0.4583333333333333],[116,246,66,-0.4583333333333333],[116,246,67,-0.4583333333333333],[116,246,68,-0.4583333333333333],[116,246,69,-0.4583333333333333],[116,246,70,-0.4583333333333333],[116,246,71,-0.4583333333333333],[116,246,72,-0.4583333333333333],[116,246,73,-0.4583333333333333],[116,246,74,-0.4583333333333333],[116,246,75,-0.4583333333333333],[116,246,76,-0.4583333333333333],[116,246,77,-0.4583333333333333],[116,246,78,-0.4583333333333333],[116,246,79,-0.4583333333333333],[116,247,64,-0.4583333333333333],[116,247,65,-0.4583333333333333],[116,247,66,-0.4583333333333333],[116,247,67,-0.4583333333333333],[116,247,68,-0.4583333333333333],[116,247,69,-0.4583333333333333],[116,247,70,-0.4583333333333333],[116,247,71,-0.4583333333333333],[116,247,72,-0.4583333333333333],[116,247,73,-0.4583333333333333],[116,247,74,-0.4583333333333333],[116,247,75,-0.4583333333333333],[116,247,76,-0.4583333333333333],[116,247,77,-0.4583333333333333],[116,247,78,-0.4583333333333333],[116,247,79,-0.4583333333333333],[116,248,64,-0.4583333333333333],[116,248,65,-0.4583333333333333],[116,248,66,-0.4583333333333333],[116,248,67,-0.4583333333333333],[116,248,68,-0.4583333333333333],[116,248,69,-0.4583333333333333],[116,248,70,-0.4583333333333333],[116,248,71,-0.4583333333333333],[116,248,72,-0.4583333333333333],[116,248,73,-0.4583333333333333],[116,248,74,-0.4583333333333333],[116,248,75,-0.4583333333333333],[116,248,76,-0.4583333333333333],[116,248,77,-0.4583333333333333],[116,248,78,-0.4583333333333333],[116,248,79,-0.4583333333333333],[116,249,64,-0.4583333333333333],[116,249,65,-0.4583333333333333],[116,249,66,-0.4583333333333333],[116,249,67,-0.4583333333333333],[116,249,68,-0.4583333333333333],[116,249,69,-0.4583333333333333],[116,249,70,-0.4583333333333333],[116,249,71,-0.4583333333333333],[116,249,72,-0.4583333333333333],[116,249,73,-0.4583333333333333],[116,249,74,-0.4583333333333333],[116,249,75,-0.4583333333333333],[116,249,76,-0.4583333333333333],[116,249,77,-0.4583333333333333],[116,249,78,-0.4583333333333333],[116,249,79,-0.4583333333333333],[116,250,64,-0.4583333333333333],[116,250,65,-0.4583333333333333],[116,250,66,-0.4583333333333333],[116,250,67,-0.4583333333333333],[116,250,68,-0.4583333333333333],[116,250,69,-0.4583333333333333],[116,250,70,-0.4583333333333333],[116,250,71,-0.4583333333333333],[116,250,72,-0.4583333333333333],[116,250,73,-0.4583333333333333],[116,250,74,-0.4583333333333333],[116,250,75,-0.4583333333333333],[116,250,76,-0.4583333333333333],[116,250,77,-0.4583333333333333],[116,250,78,-0.4583333333333333],[116,250,79,-0.4583333333333333],[116,251,64,-0.4583333333333333],[116,251,65,-0.4583333333333333],[116,251,66,-0.4583333333333333],[116,251,67,-0.4583333333333333],[116,251,68,-0.4583333333333333],[116,251,69,-0.4583333333333333],[116,251,70,-0.4583333333333333],[116,251,71,-0.4583333333333333],[116,251,72,-0.4583333333333333],[116,251,73,-0.4583333333333333],[116,251,74,-0.4583333333333333],[116,251,75,-0.4583333333333333],[116,251,76,-0.4583333333333333],[116,251,77,-0.4583333333333333],[116,251,78,-0.4583333333333333],[116,251,79,-0.4583333333333333],[116,252,64,-0.4583333333333333],[116,252,65,-0.4583333333333333],[116,252,66,-0.4583333333333333],[116,252,67,-0.4583333333333333],[116,252,68,-0.4583333333333333],[116,252,69,-0.4583333333333333],[116,252,70,-0.4583333333333333],[116,252,71,-0.4583333333333333],[116,252,72,-0.4583333333333333],[116,252,73,-0.4583333333333333],[116,252,74,-0.4583333333333333],[116,252,75,-0.4583333333333333],[116,252,76,-0.4583333333333333],[116,252,77,-0.4583333333333333],[116,252,78,-0.4583333333333333],[116,252,79,-0.4583333333333333],[116,253,64,-0.4583333333333333],[116,253,65,-0.4583333333333333],[116,253,66,-0.4583333333333333],[116,253,67,-0.4583333333333333],[116,253,68,-0.4583333333333333],[116,253,69,-0.4583333333333333],[116,253,70,-0.4583333333333333],[116,253,71,-0.4583333333333333],[116,253,72,-0.4583333333333333],[116,253,73,-0.4583333333333333],[116,253,74,-0.4583333333333333],[116,253,75,-0.4583333333333333],[116,253,76,-0.4583333333333333],[116,253,77,-0.4583333333333333],[116,253,78,-0.4583333333333333],[116,253,79,-0.4583333333333333],[116,254,64,-0.3719150734136158],[116,254,65,-0.3719275443951679],[116,254,66,-0.37133065820662414],[116,254,67,-0.3705436240845009],[116,254,68,-0.3697014253830195],[116,254,69,-0.36904831015023026],[116,254,70,-0.36859093439105906],[116,254,71,-0.3681873924670405],[116,254,72,-0.3676792815407144],[116,254,73,-0.36733910719158125],[116,254,74,-0.36727417757824155],[116,254,75,-0.36735263328274553],[116,254,76,-0.36790392016794776],[116,254,77,-0.36861088385428703],[116,254,78,-0.369097482180615],[116,254,79,-0.37047716640782774],[116,255,64,-0.20635252005954835],[116,255,65,-0.2063443297074819],[116,255,66,-0.20601727587759208],[116,255,67,-0.20553527433194133],[116,255,68,-0.2051292241929636],[116,255,69,-0.20472489363630816],[116,255,70,-0.20442777516050153],[116,255,71,-0.20426177220337005],[116,255,72,-0.20401200315009443],[116,255,73,-0.20380429156001872],[116,255,74,-0.20379358015745927],[116,255,75,-0.20381098839088796],[116,255,76,-0.204114883691641],[116,255,77,-0.20450851758286312],[116,255,78,-0.20473728611364514],[116,255,79,-0.20541198315679024],[116,256,64,-0.02499479166666667],[116,256,65,-0.02499479166666667],[116,256,66,-0.02499479166666667],[116,256,67,-0.02499479166666667],[116,256,68,-0.02499479166666667],[116,256,69,-0.02499479166666667],[116,256,70,-0.02499479166666667],[116,256,71,-0.02499479166666667],[116,256,72,-0.02499479166666667],[116,256,73,-0.02499479166666667],[116,256,74,-0.02499479166666667],[116,256,75,-0.02499479166666667],[116,256,76,-0.02499479166666667],[116,256,77,-0.02499479166666667],[116,256,78,-0.02499479166666667],[116,256,79,-0.02499479166666667],[116,257,64,-0.02499479166666667],[116,257,65,-0.02499479166666667],[116,257,66,-0.02499479166666667],[116,257,67,-0.02499479166666667],[116,257,68,-0.02499479166666667],[116,257,69,-0.02499479166666667],[116,257,70,-0.02499479166666667],[116,257,71,-0.02499479166666667],[116,257,72,-0.02499479166666667],[116,257,73,-0.02499479166666667],[116,257,74,-0.02499479166666667],[116,257,75,-0.02499479166666667],[116,257,76,-0.02499479166666667],[116,257,77,-0.02499479166666667],[116,257,78,-0.02499479166666667],[116,257,79,-0.02499479166666667],[116,258,64,-0.02499479166666667],[116,258,65,-0.02499479166666667],[116,258,66,-0.02499479166666667],[116,258,67,-0.02499479166666667],[116,258,68,-0.02499479166666667],[116,258,69,-0.02499479166666667],[116,258,70,-0.02499479166666667],[116,258,71,-0.02499479166666667],[116,258,72,-0.02499479166666667],[116,258,73,-0.02499479166666667],[116,258,74,-0.02499479166666667],[116,258,75,-0.02499479166666667],[116,258,76,-0.02499479166666667],[116,258,77,-0.02499479166666667],[116,258,78,-0.02499479166666667],[116,258,79,-0.02499479166666667],[116,259,64,-0.02499479166666667],[116,259,65,-0.02499479166666667],[116,259,66,-0.02499479166666667],[116,259,67,-0.02499479166666667],[116,259,68,-0.02499479166666667],[116,259,69,-0.02499479166666667],[116,259,70,-0.02499479166666667],[116,259,71,-0.02499479166666667],[116,259,72,-0.02499479166666667],[116,259,73,-0.02499479166666667],[116,259,74,-0.02499479166666667],[116,259,75,-0.02499479166666667],[116,259,76,-0.02499479166666667],[116,259,77,-0.02499479166666667],[116,259,78,-0.02499479166666667],[116,259,79,-0.02499479166666667],[116,260,64,-0.02499479166666667],[116,260,65,-0.02499479166666667],[116,260,66,-0.02499479166666667],[116,260,67,-0.02499479166666667],[116,260,68,-0.02499479166666667],[116,260,69,-0.02499479166666667],[116,260,70,-0.02499479166666667],[116,260,71,-0.02499479166666667],[116,260,72,-0.02499479166666667],[116,260,73,-0.02499479166666667],[116,260,74,-0.02499479166666667],[116,260,75,-0.02499479166666667],[116,260,76,-0.02499479166666667],[116,260,77,-0.02499479166666667],[116,260,78,-0.02499479166666667],[116,260,79,-0.02499479166666667],[116,261,64,-0.02499479166666667],[116,261,65,-0.02499479166666667],[116,261,66,-0.02499479166666667],[116,261,67,-0.02499479166666667],[116,261,68,-0.02499479166666667],[116,261,69,-0.02499479166666667],[116,261,70,-0.02499479166666667],[116,261,71,-0.02499479166666667],[116,261,72,-0.02499479166666667],[116,261,73,-0.02499479166666667],[116,261,74,-0.02499479166666667],[116,261,75,-0.02499479166666667],[116,261,76,-0.02499479166666667],[116,261,77,-0.02499479166666667],[116,261,78,-0.02499479166666667],[116,261,79,-0.02499479166666667],[116,262,64,-0.02499479166666667],[116,262,65,-0.02499479166666667],[116,262,66,-0.02499479166666667],[116,262,67,-0.02499479166666667],[116,262,68,-0.02499479166666667],[116,262,69,-0.02499479166666667],[116,262,70,-0.02499479166666667],[116,262,71,-0.02499479166666667],[116,262,72,-0.02499479166666667],[116,262,73,-0.02499479166666667],[116,262,74,-0.02499479166666667],[116,262,75,-0.02499479166666667],[116,262,76,-0.02499479166666667],[116,262,77,-0.02499479166666667],[116,262,78,-0.02499479166666667],[116,262,79,-0.02499479166666667],[116,263,64,-0.02499479166666667],[116,263,65,-0.02499479166666667],[116,263,66,-0.02499479166666667],[116,263,67,-0.02499479166666667],[116,263,68,-0.02499479166666667],[116,263,69,-0.02499479166666667],[116,263,70,-0.02499479166666667],[116,263,71,-0.02499479166666667],[116,263,72,-0.02499479166666667],[116,263,73,-0.02499479166666667],[116,263,74,-0.02499479166666667],[116,263,75,-0.02499479166666667],[116,263,76,-0.02499479166666667],[116,263,77,-0.02499479166666667],[116,263,78,-0.02499479166666667],[116,263,79,-0.02499479166666667],[116,264,64,-0.02499479166666667],[116,264,65,-0.02499479166666667],[116,264,66,-0.02499479166666667],[116,264,67,-0.02499479166666667],[116,264,68,-0.02499479166666667],[116,264,69,-0.02499479166666667],[116,264,70,-0.02499479166666667],[116,264,71,-0.02499479166666667],[116,264,72,-0.02499479166666667],[116,264,73,-0.02499479166666667],[116,264,74,-0.02499479166666667],[116,264,75,-0.02499479166666667],[116,264,76,-0.02499479166666667],[116,264,77,-0.02499479166666667],[116,264,78,-0.02499479166666667],[116,264,79,-0.02499479166666667],[116,265,64,-0.02499479166666667],[116,265,65,-0.02499479166666667],[116,265,66,-0.02499479166666667],[116,265,67,-0.02499479166666667],[116,265,68,-0.02499479166666667],[116,265,69,-0.02499479166666667],[116,265,70,-0.02499479166666667],[116,265,71,-0.02499479166666667],[116,265,72,-0.02499479166666667],[116,265,73,-0.02499479166666667],[116,265,74,-0.02499479166666667],[116,265,75,-0.02499479166666667],[116,265,76,-0.02499479166666667],[116,265,77,-0.02499479166666667],[116,265,78,-0.02499479166666667],[116,265,79,-0.02499479166666667],[116,266,64,-0.02499479166666667],[116,266,65,-0.02499479166666667],[116,266,66,-0.02499479166666667],[116,266,67,-0.02499479166666667],[116,266,68,-0.02499479166666667],[116,266,69,-0.02499479166666667],[116,266,70,-0.02499479166666667],[116,266,71,-0.02499479166666667],[116,266,72,-0.02499479166666667],[116,266,73,-0.02499479166666667],[116,266,74,-0.02499479166666667],[116,266,75,-0.02499479166666667],[116,266,76,-0.02499479166666667],[116,266,77,-0.02499479166666667],[116,266,78,-0.02499479166666667],[116,266,79,-0.02499479166666667],[116,267,64,-0.02499479166666667],[116,267,65,-0.02499479166666667],[116,267,66,-0.02499479166666667],[116,267,67,-0.02499479166666667],[116,267,68,-0.02499479166666667],[116,267,69,-0.02499479166666667],[116,267,70,-0.02499479166666667],[116,267,71,-0.02499479166666667],[116,267,72,-0.02499479166666667],[116,267,73,-0.02499479166666667],[116,267,74,-0.02499479166666667],[116,267,75,-0.02499479166666667],[116,267,76,-0.02499479166666667],[116,267,77,-0.02499479166666667],[116,267,78,-0.02499479166666667],[116,267,79,-0.02499479166666667],[116,268,64,-0.02499479166666667],[116,268,65,-0.02499479166666667],[116,268,66,-0.02499479166666667],[116,268,67,-0.02499479166666667],[116,268,68,-0.02499479166666667],[116,268,69,-0.02499479166666667],[116,268,70,-0.02499479166666667],[116,268,71,-0.02499479166666667],[116,268,72,-0.02499479166666667],[116,268,73,-0.02499479166666667],[116,268,74,-0.02499479166666667],[116,268,75,-0.02499479166666667],[116,268,76,-0.02499479166666667],[116,268,77,-0.02499479166666667],[116,268,78,-0.02499479166666667],[116,268,79,-0.02499479166666667],[116,269,64,-0.02499479166666667],[116,269,65,-0.02499479166666667],[116,269,66,-0.02499479166666667],[116,269,67,-0.02499479166666667],[116,269,68,-0.02499479166666667],[116,269,69,-0.02499479166666667],[116,269,70,-0.02499479166666667],[116,269,71,-0.02499479166666667],[116,269,72,-0.02499479166666667],[116,269,73,-0.02499479166666667],[116,269,74,-0.02499479166666667],[116,269,75,-0.02499479166666667],[116,269,76,-0.02499479166666667],[116,269,77,-0.02499479166666667],[116,269,78,-0.02499479166666667],[116,269,79,-0.02499479166666667],[116,270,64,-0.02499479166666667],[116,270,65,-0.02499479166666667],[116,270,66,-0.02499479166666667],[116,270,67,-0.02499479166666667],[116,270,68,-0.02499479166666667],[116,270,69,-0.02499479166666667],[116,270,70,-0.02499479166666667],[116,270,71,-0.02499479166666667],[116,270,72,-0.02499479166666667],[116,270,73,-0.02499479166666667],[116,270,74,-0.02499479166666667],[116,270,75,-0.02499479166666667],[116,270,76,-0.02499479166666667],[116,270,77,-0.02499479166666667],[116,270,78,-0.02499479166666667],[116,270,79,-0.02499479166666667],[116,271,64,-0.02499479166666667],[116,271,65,-0.02499479166666667],[116,271,66,-0.02499479166666667],[116,271,67,-0.02499479166666667],[116,271,68,-0.02499479166666667],[116,271,69,-0.02499479166666667],[116,271,70,-0.02499479166666667],[116,271,71,-0.02499479166666667],[116,271,72,-0.02499479166666667],[116,271,73,-0.02499479166666667],[116,271,74,-0.02499479166666667],[116,271,75,-0.02499479166666667],[116,271,76,-0.02499479166666667],[116,271,77,-0.02499479166666667],[116,271,78,-0.02499479166666667],[116,271,79,-0.02499479166666667],[116,272,64,-0.02499479166666667],[116,272,65,-0.02499479166666667],[116,272,66,-0.02499479166666667],[116,272,67,-0.02499479166666667],[116,272,68,-0.02499479166666667],[116,272,69,-0.02499479166666667],[116,272,70,-0.02499479166666667],[116,272,71,-0.02499479166666667],[116,272,72,-0.02499479166666667],[116,272,73,-0.02499479166666667],[116,272,74,-0.02499479166666667],[116,272,75,-0.02499479166666667],[116,272,76,-0.02499479166666667],[116,272,77,-0.02499479166666667],[116,272,78,-0.02499479166666667],[116,272,79,-0.02499479166666667],[116,273,64,-0.02499479166666667],[116,273,65,-0.02499479166666667],[116,273,66,-0.02499479166666667],[116,273,67,-0.02499479166666667],[116,273,68,-0.02499479166666667],[116,273,69,-0.02499479166666667],[116,273,70,-0.02499479166666667],[116,273,71,-0.02499479166666667],[116,273,72,-0.02499479166666667],[116,273,73,-0.02499479166666667],[116,273,74,-0.02499479166666667],[116,273,75,-0.02499479166666667],[116,273,76,-0.02499479166666667],[116,273,77,-0.02499479166666667],[116,273,78,-0.02499479166666667],[116,273,79,-0.02499479166666667],[116,274,64,-0.02499479166666667],[116,274,65,-0.02499479166666667],[116,274,66,-0.02499479166666667],[116,274,67,-0.02499479166666667],[116,274,68,-0.02499479166666667],[116,274,69,-0.02499479166666667],[116,274,70,-0.02499479166666667],[116,274,71,-0.02499479166666667],[116,274,72,-0.02499479166666667],[116,274,73,-0.02499479166666667],[116,274,74,-0.02499479166666667],[116,274,75,-0.02499479166666667],[116,274,76,-0.02499479166666667],[116,274,77,-0.02499479166666667],[116,274,78,-0.02499479166666667],[116,274,79,-0.02499479166666667],[116,275,64,-0.02499479166666667],[116,275,65,-0.02499479166666667],[116,275,66,-0.02499479166666667],[116,275,67,-0.02499479166666667],[116,275,68,-0.02499479166666667],[116,275,69,-0.02499479166666667],[116,275,70,-0.02499479166666667],[116,275,71,-0.02499479166666667],[116,275,72,-0.02499479166666667],[116,275,73,-0.02499479166666667],[116,275,74,-0.02499479166666667],[116,275,75,-0.02499479166666667],[116,275,76,-0.02499479166666667],[116,275,77,-0.02499479166666667],[116,275,78,-0.02499479166666667],[116,275,79,-0.02499479166666667],[116,276,64,-0.02499479166666667],[116,276,65,-0.02499479166666667],[116,276,66,-0.02499479166666667],[116,276,67,-0.02499479166666667],[116,276,68,-0.02499479166666667],[116,276,69,-0.02499479166666667],[116,276,70,-0.02499479166666667],[116,276,71,-0.02499479166666667],[116,276,72,-0.02499479166666667],[116,276,73,-0.02499479166666667],[116,276,74,-0.02499479166666667],[116,276,75,-0.02499479166666667],[116,276,76,-0.02499479166666667],[116,276,77,-0.02499479166666667],[116,276,78,-0.02499479166666667],[116,276,79,-0.02499479166666667],[116,277,64,-0.02499479166666667],[116,277,65,-0.02499479166666667],[116,277,66,-0.02499479166666667],[116,277,67,-0.02499479166666667],[116,277,68,-0.02499479166666667],[116,277,69,-0.02499479166666667],[116,277,70,-0.02499479166666667],[116,277,71,-0.02499479166666667],[116,277,72,-0.02499479166666667],[116,277,73,-0.02499479166666667],[116,277,74,-0.02499479166666667],[116,277,75,-0.02499479166666667],[116,277,76,-0.02499479166666667],[116,277,77,-0.02499479166666667],[116,277,78,-0.02499479166666667],[116,277,79,-0.02499479166666667],[116,278,64,-0.02499479166666667],[116,278,65,-0.02499479166666667],[116,278,66,-0.02499479166666667],[116,278,67,-0.02499479166666667],[116,278,68,-0.02499479166666667],[116,278,69,-0.02499479166666667],[116,278,70,-0.02499479166666667],[116,278,71,-0.02499479166666667],[116,278,72,-0.02499479166666667],[116,278,73,-0.02499479166666667],[116,278,74,-0.02499479166666667],[116,278,75,-0.02499479166666667],[116,278,76,-0.02499479166666667],[116,278,77,-0.02499479166666667],[116,278,78,-0.02499479166666667],[116,278,79,-0.02499479166666667],[116,279,64,-0.02499479166666667],[116,279,65,-0.02499479166666667],[116,279,66,-0.02499479166666667],[116,279,67,-0.02499479166666667],[116,279,68,-0.02499479166666667],[116,279,69,-0.02499479166666667],[116,279,70,-0.02499479166666667],[116,279,71,-0.02499479166666667],[116,279,72,-0.02499479166666667],[116,279,73,-0.02499479166666667],[116,279,74,-0.02499479166666667],[116,279,75,-0.02499479166666667],[116,279,76,-0.02499479166666667],[116,279,77,-0.02499479166666667],[116,279,78,-0.02499479166666667],[116,279,79,-0.02499479166666667],[116,280,64,-0.02499479166666667],[116,280,65,-0.02499479166666667],[116,280,66,-0.02499479166666667],[116,280,67,-0.02499479166666667],[116,280,68,-0.02499479166666667],[116,280,69,-0.02499479166666667],[116,280,70,-0.02499479166666667],[116,280,71,-0.02499479166666667],[116,280,72,-0.02499479166666667],[116,280,73,-0.02499479166666667],[116,280,74,-0.02499479166666667],[116,280,75,-0.02499479166666667],[116,280,76,-0.02499479166666667],[116,280,77,-0.02499479166666667],[116,280,78,-0.02499479166666667],[116,280,79,-0.02499479166666667],[116,281,64,-0.02499479166666667],[116,281,65,-0.02499479166666667],[116,281,66,-0.02499479166666667],[116,281,67,-0.02499479166666667],[116,281,68,-0.02499479166666667],[116,281,69,-0.02499479166666667],[116,281,70,-0.02499479166666667],[116,281,71,-0.02499479166666667],[116,281,72,-0.02499479166666667],[116,281,73,-0.02499479166666667],[116,281,74,-0.02499479166666667],[116,281,75,-0.02499479166666667],[116,281,76,-0.02499479166666667],[116,281,77,-0.02499479166666667],[116,281,78,-0.02499479166666667],[116,281,79,-0.02499479166666667],[116,282,64,-0.02499479166666667],[116,282,65,-0.02499479166666667],[116,282,66,-0.02499479166666667],[116,282,67,-0.02499479166666667],[116,282,68,-0.02499479166666667],[116,282,69,-0.02499479166666667],[116,282,70,-0.02499479166666667],[116,282,71,-0.02499479166666667],[116,282,72,-0.02499479166666667],[116,282,73,-0.02499479166666667],[116,282,74,-0.02499479166666667],[116,282,75,-0.02499479166666667],[116,282,76,-0.02499479166666667],[116,282,77,-0.02499479166666667],[116,282,78,-0.02499479166666667],[116,282,79,-0.02499479166666667],[116,283,64,-0.02499479166666667],[116,283,65,-0.02499479166666667],[116,283,66,-0.02499479166666667],[116,283,67,-0.02499479166666667],[116,283,68,-0.02499479166666667],[116,283,69,-0.02499479166666667],[116,283,70,-0.02499479166666667],[116,283,71,-0.02499479166666667],[116,283,72,-0.02499479166666667],[116,283,73,-0.02499479166666667],[116,283,74,-0.02499479166666667],[116,283,75,-0.02499479166666667],[116,283,76,-0.02499479166666667],[116,283,77,-0.02499479166666667],[116,283,78,-0.02499479166666667],[116,283,79,-0.02499479166666667],[116,284,64,-0.02499479166666667],[116,284,65,-0.02499479166666667],[116,284,66,-0.02499479166666667],[116,284,67,-0.02499479166666667],[116,284,68,-0.02499479166666667],[116,284,69,-0.02499479166666667],[116,284,70,-0.02499479166666667],[116,284,71,-0.02499479166666667],[116,284,72,-0.02499479166666667],[116,284,73,-0.02499479166666667],[116,284,74,-0.02499479166666667],[116,284,75,-0.02499479166666667],[116,284,76,-0.02499479166666667],[116,284,77,-0.02499479166666667],[116,284,78,-0.02499479166666667],[116,284,79,-0.02499479166666667],[116,285,64,-0.02499479166666667],[116,285,65,-0.02499479166666667],[116,285,66,-0.02499479166666667],[116,285,67,-0.02499479166666667],[116,285,68,-0.02499479166666667],[116,285,69,-0.02499479166666667],[116,285,70,-0.02499479166666667],[116,285,71,-0.02499479166666667],[116,285,72,-0.02499479166666667],[116,285,73,-0.02499479166666667],[116,285,74,-0.02499479166666667],[116,285,75,-0.02499479166666667],[116,285,76,-0.02499479166666667],[116,285,77,-0.02499479166666667],[116,285,78,-0.02499479166666667],[116,285,79,-0.02499479166666667],[116,286,64,-0.02499479166666667],[116,286,65,-0.02499479166666667],[116,286,66,-0.02499479166666667],[116,286,67,-0.02499479166666667],[116,286,68,-0.02499479166666667],[116,286,69,-0.02499479166666667],[116,286,70,-0.02499479166666667],[116,286,71,-0.02499479166666667],[116,286,72,-0.02499479166666667],[116,286,73,-0.02499479166666667],[116,286,74,-0.02499479166666667],[116,286,75,-0.02499479166666667],[116,286,76,-0.02499479166666667],[116,286,77,-0.02499479166666667],[116,286,78,-0.02499479166666667],[116,286,79,-0.02499479166666667],[116,287,64,-0.02499479166666667],[116,287,65,-0.02499479166666667],[116,287,66,-0.02499479166666667],[116,287,67,-0.02499479166666667],[116,287,68,-0.02499479166666667],[116,287,69,-0.02499479166666667],[116,287,70,-0.02499479166666667],[116,287,71,-0.02499479166666667],[116,287,72,-0.02499479166666667],[116,287,73,-0.02499479166666667],[116,287,74,-0.02499479166666667],[116,287,75,-0.02499479166666667],[116,287,76,-0.02499479166666667],[116,287,77,-0.02499479166666667],[116,287,78,-0.02499479166666667],[116,287,79,-0.02499479166666667],[116,288,64,-0.02499479166666667],[116,288,65,-0.02499479166666667],[116,288,66,-0.02499479166666667],[116,288,67,-0.02499479166666667],[116,288,68,-0.02499479166666667],[116,288,69,-0.02499479166666667],[116,288,70,-0.02499479166666667],[116,288,71,-0.02499479166666667],[116,288,72,-0.02499479166666667],[116,288,73,-0.02499479166666667],[116,288,74,-0.02499479166666667],[116,288,75,-0.02499479166666667],[116,288,76,-0.02499479166666667],[116,288,77,-0.02499479166666667],[116,288,78,-0.02499479166666667],[116,288,79,-0.02499479166666667],[116,289,64,-0.02499479166666667],[116,289,65,-0.02499479166666667],[116,289,66,-0.02499479166666667],[116,289,67,-0.02499479166666667],[116,289,68,-0.02499479166666667],[116,289,69,-0.02499479166666667],[116,289,70,-0.02499479166666667],[116,289,71,-0.02499479166666667],[116,289,72,-0.02499479166666667],[116,289,73,-0.02499479166666667],[116,289,74,-0.02499479166666667],[116,289,75,-0.02499479166666667],[116,289,76,-0.02499479166666667],[116,289,77,-0.02499479166666667],[116,289,78,-0.02499479166666667],[116,289,79,-0.02499479166666667],[116,290,64,-0.02499479166666667],[116,290,65,-0.02499479166666667],[116,290,66,-0.02499479166666667],[116,290,67,-0.02499479166666667],[116,290,68,-0.02499479166666667],[116,290,69,-0.02499479166666667],[116,290,70,-0.02499479166666667],[116,290,71,-0.02499479166666667],[116,290,72,-0.02499479166666667],[116,290,73,-0.02499479166666667],[116,290,74,-0.02499479166666667],[116,290,75,-0.02499479166666667],[116,290,76,-0.02499479166666667],[116,290,77,-0.02499479166666667],[116,290,78,-0.02499479166666667],[116,290,79,-0.02499479166666667],[116,291,64,-0.02499479166666667],[116,291,65,-0.02499479166666667],[116,291,66,-0.02499479166666667],[116,291,67,-0.02499479166666667],[116,291,68,-0.02499479166666667],[116,291,69,-0.02499479166666667],[116,291,70,-0.02499479166666667],[116,291,71,-0.02499479166666667],[116,291,72,-0.02499479166666667],[116,291,73,-0.02499479166666667],[116,291,74,-0.02499479166666667],[116,291,75,-0.02499479166666667],[116,291,76,-0.02499479166666667],[116,291,77,-0.02499479166666667],[116,291,78,-0.02499479166666667],[116,291,79,-0.02499479166666667],[116,292,64,-0.02499479166666667],[116,292,65,-0.02499479166666667],[116,292,66,-0.02499479166666667],[116,292,67,-0.02499479166666667],[116,292,68,-0.02499479166666667],[116,292,69,-0.02499479166666667],[116,292,70,-0.02499479166666667],[116,292,71,-0.02499479166666667],[116,292,72,-0.02499479166666667],[116,292,73,-0.02499479166666667],[116,292,74,-0.02499479166666667],[116,292,75,-0.02499479166666667],[116,292,76,-0.02499479166666667],[116,292,77,-0.02499479166666667],[116,292,78,-0.02499479166666667],[116,292,79,-0.02499479166666667],[116,293,64,-0.02499479166666667],[116,293,65,-0.02499479166666667],[116,293,66,-0.02499479166666667],[116,293,67,-0.02499479166666667],[116,293,68,-0.02499479166666667],[116,293,69,-0.02499479166666667],[116,293,70,-0.02499479166666667],[116,293,71,-0.02499479166666667],[116,293,72,-0.02499479166666667],[116,293,73,-0.02499479166666667],[116,293,74,-0.02499479166666667],[116,293,75,-0.02499479166666667],[116,293,76,-0.02499479166666667],[116,293,77,-0.02499479166666667],[116,293,78,-0.02499479166666667],[116,293,79,-0.02499479166666667],[116,294,64,-0.02499479166666667],[116,294,65,-0.02499479166666667],[116,294,66,-0.02499479166666667],[116,294,67,-0.02499479166666667],[116,294,68,-0.02499479166666667],[116,294,69,-0.02499479166666667],[116,294,70,-0.02499479166666667],[116,294,71,-0.02499479166666667],[116,294,72,-0.02499479166666667],[116,294,73,-0.02499479166666667],[116,294,74,-0.02499479166666667],[116,294,75,-0.02499479166666667],[116,294,76,-0.02499479166666667],[116,294,77,-0.02499479166666667],[116,294,78,-0.02499479166666667],[116,294,79,-0.02499479166666667],[116,295,64,-0.02499479166666667],[116,295,65,-0.02499479166666667],[116,295,66,-0.02499479166666667],[116,295,67,-0.02499479166666667],[116,295,68,-0.02499479166666667],[116,295,69,-0.02499479166666667],[116,295,70,-0.02499479166666667],[116,295,71,-0.02499479166666667],[116,295,72,-0.02499479166666667],[116,295,73,-0.02499479166666667],[116,295,74,-0.02499479166666667],[116,295,75,-0.02499479166666667],[116,295,76,-0.02499479166666667],[116,295,77,-0.02499479166666667],[116,295,78,-0.02499479166666667],[116,295,79,-0.02499479166666667],[116,296,64,-0.02499479166666667],[116,296,65,-0.02499479166666667],[116,296,66,-0.02499479166666667],[116,296,67,-0.02499479166666667],[116,296,68,-0.02499479166666667],[116,296,69,-0.02499479166666667],[116,296,70,-0.02499479166666667],[116,296,71,-0.02499479166666667],[116,296,72,-0.02499479166666667],[116,296,73,-0.02499479166666667],[116,296,74,-0.02499479166666667],[116,296,75,-0.02499479166666667],[116,296,76,-0.02499479166666667],[116,296,77,-0.02499479166666667],[116,296,78,-0.02499479166666667],[116,296,79,-0.02499479166666667],[116,297,64,-0.02499479166666667],[116,297,65,-0.02499479166666667],[116,297,66,-0.02499479166666667],[116,297,67,-0.02499479166666667],[116,297,68,-0.02499479166666667],[116,297,69,-0.02499479166666667],[116,297,70,-0.02499479166666667],[116,297,71,-0.02499479166666667],[116,297,72,-0.02499479166666667],[116,297,73,-0.02499479166666667],[116,297,74,-0.02499479166666667],[116,297,75,-0.02499479166666667],[116,297,76,-0.02499479166666667],[116,297,77,-0.02499479166666667],[116,297,78,-0.02499479166666667],[116,297,79,-0.02499479166666667],[116,298,64,-0.02499479166666667],[116,298,65,-0.02499479166666667],[116,298,66,-0.02499479166666667],[116,298,67,-0.02499479166666667],[116,298,68,-0.02499479166666667],[116,298,69,-0.02499479166666667],[116,298,70,-0.02499479166666667],[116,298,71,-0.02499479166666667],[116,298,72,-0.02499479166666667],[116,298,73,-0.02499479166666667],[116,298,74,-0.02499479166666667],[116,298,75,-0.02499479166666667],[116,298,76,-0.02499479166666667],[116,298,77,-0.02499479166666667],[116,298,78,-0.02499479166666667],[116,298,79,-0.02499479166666667],[116,299,64,-0.02499479166666667],[116,299,65,-0.02499479166666667],[116,299,66,-0.02499479166666667],[116,299,67,-0.02499479166666667],[116,299,68,-0.02499479166666667],[116,299,69,-0.02499479166666667],[116,299,70,-0.02499479166666667],[116,299,71,-0.02499479166666667],[116,299,72,-0.02499479166666667],[116,299,73,-0.02499479166666667],[116,299,74,-0.02499479166666667],[116,299,75,-0.02499479166666667],[116,299,76,-0.02499479166666667],[116,299,77,-0.02499479166666667],[116,299,78,-0.02499479166666667],[116,299,79,-0.02499479166666667],[116,300,64,-0.02499479166666667],[116,300,65,-0.02499479166666667],[116,300,66,-0.02499479166666667],[116,300,67,-0.02499479166666667],[116,300,68,-0.02499479166666667],[116,300,69,-0.02499479166666667],[116,300,70,-0.02499479166666667],[116,300,71,-0.02499479166666667],[116,300,72,-0.02499479166666667],[116,300,73,-0.02499479166666667],[116,300,74,-0.02499479166666667],[116,300,75,-0.02499479166666667],[116,300,76,-0.02499479166666667],[116,300,77,-0.02499479166666667],[116,300,78,-0.02499479166666667],[116,300,79,-0.02499479166666667],[116,301,64,-0.02499479166666667],[116,301,65,-0.02499479166666667],[116,301,66,-0.02499479166666667],[116,301,67,-0.02499479166666667],[116,301,68,-0.02499479166666667],[116,301,69,-0.02499479166666667],[116,301,70,-0.02499479166666667],[116,301,71,-0.02499479166666667],[116,301,72,-0.02499479166666667],[116,301,73,-0.02499479166666667],[116,301,74,-0.02499479166666667],[116,301,75,-0.02499479166666667],[116,301,76,-0.02499479166666667],[116,301,77,-0.02499479166666667],[116,301,78,-0.02499479166666667],[116,301,79,-0.02499479166666667],[116,302,64,-0.02499479166666667],[116,302,65,-0.02499479166666667],[116,302,66,-0.02499479166666667],[116,302,67,-0.02499479166666667],[116,302,68,-0.02499479166666667],[116,302,69,-0.02499479166666667],[116,302,70,-0.02499479166666667],[116,302,71,-0.02499479166666667],[116,302,72,-0.02499479166666667],[116,302,73,-0.02499479166666667],[116,302,74,-0.02499479166666667],[116,302,75,-0.02499479166666667],[116,302,76,-0.02499479166666667],[116,302,77,-0.02499479166666667],[116,302,78,-0.02499479166666667],[116,302,79,-0.02499479166666667],[116,303,64,-0.02499479166666667],[116,303,65,-0.02499479166666667],[116,303,66,-0.02499479166666667],[116,303,67,-0.02499479166666667],[116,303,68,-0.02499479166666667],[116,303,69,-0.02499479166666667],[116,303,70,-0.02499479166666667],[116,303,71,-0.02499479166666667],[116,303,72,-0.02499479166666667],[116,303,73,-0.02499479166666667],[116,303,74,-0.02499479166666667],[116,303,75,-0.02499479166666667],[116,303,76,-0.02499479166666667],[116,303,77,-0.02499479166666667],[116,303,78,-0.02499479166666667],[116,303,79,-0.02499479166666667],[116,304,64,-0.02499479166666667],[116,304,65,-0.02499479166666667],[116,304,66,-0.02499479166666667],[116,304,67,-0.02499479166666667],[116,304,68,-0.02499479166666667],[116,304,69,-0.02499479166666667],[116,304,70,-0.02499479166666667],[116,304,71,-0.02499479166666667],[116,304,72,-0.02499479166666667],[116,304,73,-0.02499479166666667],[116,304,74,-0.02499479166666667],[116,304,75,-0.02499479166666667],[116,304,76,-0.02499479166666667],[116,304,77,-0.02499479166666667],[116,304,78,-0.02499479166666667],[116,304,79,-0.02499479166666667],[116,305,64,-0.02499479166666667],[116,305,65,-0.02499479166666667],[116,305,66,-0.02499479166666667],[116,305,67,-0.02499479166666667],[116,305,68,-0.02499479166666667],[116,305,69,-0.02499479166666667],[116,305,70,-0.02499479166666667],[116,305,71,-0.02499479166666667],[116,305,72,-0.02499479166666667],[116,305,73,-0.02499479166666667],[116,305,74,-0.02499479166666667],[116,305,75,-0.02499479166666667],[116,305,76,-0.02499479166666667],[116,305,77,-0.02499479166666667],[116,305,78,-0.02499479166666667],[116,305,79,-0.02499479166666667],[116,306,64,-0.02499479166666667],[116,306,65,-0.02499479166666667],[116,306,66,-0.02499479166666667],[116,306,67,-0.02499479166666667],[116,306,68,-0.02499479166666667],[116,306,69,-0.02499479166666667],[116,306,70,-0.02499479166666667],[116,306,71,-0.02499479166666667],[116,306,72,-0.02499479166666667],[116,306,73,-0.02499479166666667],[116,306,74,-0.02499479166666667],[116,306,75,-0.02499479166666667],[116,306,76,-0.02499479166666667],[116,306,77,-0.02499479166666667],[116,306,78,-0.02499479166666667],[116,306,79,-0.02499479166666667],[116,307,64,-0.02499479166666667],[116,307,65,-0.02499479166666667],[116,307,66,-0.02499479166666667],[116,307,67,-0.02499479166666667],[116,307,68,-0.02499479166666667],[116,307,69,-0.02499479166666667],[116,307,70,-0.02499479166666667],[116,307,71,-0.02499479166666667],[116,307,72,-0.02499479166666667],[116,307,73,-0.02499479166666667],[116,307,74,-0.02499479166666667],[116,307,75,-0.02499479166666667],[116,307,76,-0.02499479166666667],[116,307,77,-0.02499479166666667],[116,307,78,-0.02499479166666667],[116,307,79,-0.02499479166666667],[116,308,64,-0.02499479166666667],[116,308,65,-0.02499479166666667],[116,308,66,-0.02499479166666667],[116,308,67,-0.02499479166666667],[116,308,68,-0.02499479166666667],[116,308,69,-0.02499479166666667],[116,308,70,-0.02499479166666667],[116,308,71,-0.02499479166666667],[116,308,72,-0.02499479166666667],[116,308,73,-0.02499479166666667],[116,308,74,-0.02499479166666667],[116,308,75,-0.02499479166666667],[116,308,76,-0.02499479166666667],[116,308,77,-0.02499479166666667],[116,308,78,-0.02499479166666667],[116,308,79,-0.02499479166666667],[116,309,64,-0.02499479166666667],[116,309,65,-0.02499479166666667],[116,309,66,-0.02499479166666667],[116,309,67,-0.02499479166666667],[116,309,68,-0.02499479166666667],[116,309,69,-0.02499479166666667],[116,309,70,-0.02499479166666667],[116,309,71,-0.02499479166666667],[116,309,72,-0.02499479166666667],[116,309,73,-0.02499479166666667],[116,309,74,-0.02499479166666667],[116,309,75,-0.02499479166666667],[116,309,76,-0.02499479166666667],[116,309,77,-0.02499479166666667],[116,309,78,-0.02499479166666667],[116,309,79,-0.02499479166666667],[116,310,64,-0.02499479166666667],[116,310,65,-0.02499479166666667],[116,310,66,-0.02499479166666667],[116,310,67,-0.02499479166666667],[116,310,68,-0.02499479166666667],[116,310,69,-0.02499479166666667],[116,310,70,-0.02499479166666667],[116,310,71,-0.02499479166666667],[116,310,72,-0.02499479166666667],[116,310,73,-0.02499479166666667],[116,310,74,-0.02499479166666667],[116,310,75,-0.02499479166666667],[116,310,76,-0.02499479166666667],[116,310,77,-0.02499479166666667],[116,310,78,-0.02499479166666667],[116,310,79,-0.02499479166666667],[116,311,64,-0.02499479166666667],[116,311,65,-0.02499479166666667],[116,311,66,-0.02499479166666667],[116,311,67,-0.02499479166666667],[116,311,68,-0.02499479166666667],[116,311,69,-0.02499479166666667],[116,311,70,-0.02499479166666667],[116,311,71,-0.02499479166666667],[116,311,72,-0.02499479166666667],[116,311,73,-0.02499479166666667],[116,311,74,-0.02499479166666667],[116,311,75,-0.02499479166666667],[116,311,76,-0.02499479166666667],[116,311,77,-0.02499479166666667],[116,311,78,-0.02499479166666667],[116,311,79,-0.02499479166666667],[116,312,64,-0.02499479166666667],[116,312,65,-0.02499479166666667],[116,312,66,-0.02499479166666667],[116,312,67,-0.02499479166666667],[116,312,68,-0.02499479166666667],[116,312,69,-0.02499479166666667],[116,312,70,-0.02499479166666667],[116,312,71,-0.02499479166666667],[116,312,72,-0.02499479166666667],[116,312,73,-0.02499479166666667],[116,312,74,-0.02499479166666667],[116,312,75,-0.02499479166666667],[116,312,76,-0.02499479166666667],[116,312,77,-0.02499479166666667],[116,312,78,-0.02499479166666667],[116,312,79,-0.02499479166666667],[116,313,64,-0.02499479166666667],[116,313,65,-0.02499479166666667],[116,313,66,-0.02499479166666667],[116,313,67,-0.02499479166666667],[116,313,68,-0.02499479166666667],[116,313,69,-0.02499479166666667],[116,313,70,-0.02499479166666667],[116,313,71,-0.02499479166666667],[116,313,72,-0.02499479166666667],[116,313,73,-0.02499479166666667],[116,313,74,-0.02499479166666667],[116,313,75,-0.02499479166666667],[116,313,76,-0.02499479166666667],[116,313,77,-0.02499479166666667],[116,313,78,-0.02499479166666667],[116,313,79,-0.02499479166666667],[116,314,64,-0.02499479166666667],[116,314,65,-0.02499479166666667],[116,314,66,-0.02499479166666667],[116,314,67,-0.02499479166666667],[116,314,68,-0.02499479166666667],[116,314,69,-0.02499479166666667],[116,314,70,-0.02499479166666667],[116,314,71,-0.02499479166666667],[116,314,72,-0.02499479166666667],[116,314,73,-0.02499479166666667],[116,314,74,-0.02499479166666667],[116,314,75,-0.02499479166666667],[116,314,76,-0.02499479166666667],[116,314,77,-0.02499479166666667],[116,314,78,-0.02499479166666667],[116,314,79,-0.02499479166666667],[116,315,64,-0.02499479166666667],[116,315,65,-0.02499479166666667],[116,315,66,-0.02499479166666667],[116,315,67,-0.02499479166666667],[116,315,68,-0.02499479166666667],[116,315,69,-0.02499479166666667],[116,315,70,-0.02499479166666667],[116,315,71,-0.02499479166666667],[116,315,72,-0.02499479166666667],[116,315,73,-0.02499479166666667],[116,315,74,-0.02499479166666667],[116,315,75,-0.02499479166666667],[116,315,76,-0.02499479166666667],[116,315,77,-0.02499479166666667],[116,315,78,-0.02499479166666667],[116,315,79,-0.02499479166666667],[116,316,64,-0.02499479166666667],[116,316,65,-0.02499479166666667],[116,316,66,-0.02499479166666667],[116,316,67,-0.02499479166666667],[116,316,68,-0.02499479166666667],[116,316,69,-0.02499479166666667],[116,316,70,-0.02499479166666667],[116,316,71,-0.02499479166666667],[116,316,72,-0.02499479166666667],[116,316,73,-0.02499479166666667],[116,316,74,-0.02499479166666667],[116,316,75,-0.02499479166666667],[116,316,76,-0.02499479166666667],[116,316,77,-0.02499479166666667],[116,316,78,-0.02499479166666667],[116,316,79,-0.02499479166666667],[116,317,64,-0.02499479166666667],[116,317,65,-0.02499479166666667],[116,317,66,-0.02499479166666667],[116,317,67,-0.02499479166666667],[116,317,68,-0.02499479166666667],[116,317,69,-0.02499479166666667],[116,317,70,-0.02499479166666667],[116,317,71,-0.02499479166666667],[116,317,72,-0.02499479166666667],[116,317,73,-0.02499479166666667],[116,317,74,-0.02499479166666667],[116,317,75,-0.02499479166666667],[116,317,76,-0.02499479166666667],[116,317,77,-0.02499479166666667],[116,317,78,-0.02499479166666667],[116,317,79,-0.02499479166666667],[116,318,64,-0.02499479166666667],[116,318,65,-0.02499479166666667],[116,318,66,-0.02499479166666667],[116,318,67,-0.02499479166666667],[116,318,68,-0.02499479166666667],[116,318,69,-0.02499479166666667],[116,318,70,-0.02499479166666667],[116,318,71,-0.02499479166666667],[116,318,72,-0.02499479166666667],[116,318,73,-0.02499479166666667],[116,318,74,-0.02499479166666667],[116,318,75,-0.02499479166666667],[116,318,76,-0.02499479166666667],[116,318,77,-0.02499479166666667],[116,318,78,-0.02499479166666667],[116,318,79,-0.02499479166666667],[116,319,64,-0.02499479166666667],[116,319,65,-0.02499479166666667],[116,319,66,-0.02499479166666667],[116,319,67,-0.02499479166666667],[116,319,68,-0.02499479166666667],[116,319,69,-0.02499479166666667],[116,319,70,-0.02499479166666667],[116,319,71,-0.02499479166666667],[116,319,72,-0.02499479166666667],[116,319,73,-0.02499479166666667],[116,319,74,-0.02499479166666667],[116,319,75,-0.02499479166666667],[116,319,76,-0.02499479166666667],[116,319,77,-0.02499479166666667],[116,319,78,-0.02499479166666667],[116,319,79,-0.02499479166666667],[117,-64,64,0.037482421875],[117,-64,65,0.037482421875],[117,-64,66,0.037482421875],[117,-64,67,0.037482421875],[117,-64,68,0.037482421875],[117,-64,69,0.037482421875],[117,-64,70,0.037482421875],[117,-64,71,0.037482421875],[117,-64,72,0.037482421875],[117,-64,73,0.037482421875],[117,-64,74,0.037482421875],[117,-64,75,0.037482421875],[117,-64,76,0.037482421875],[117,-64,77,0.037482421875],[117,-64,78,0.037482421875],[117,-64,79,0.037482421875],[117,-63,64,0.040455322701771226],[117,-63,65,0.040534395102178884],[117,-63,66,0.04061497499275547],[117,-63,67,0.040696819286277025],[117,-63,68,0.040780006307831844],[117,-63,69,0.04086477921113514],[117,-63,70,0.04095127892278884],[117,-63,71,0.0410395434270791],[117,-63,72,0.04112951349663976],[117,-63,73,0.041221039045033894],[117,-63,74,0.04131388610773517],[117,-63,75,0.04140774445646127],[117,-63,76,0.04150223585028894],[117,-63,77,0.041596922925477155],[117,-63,78,0.04169131872444634],[117,-63,79,0.04178489686292842],[117,-62,64,0.043475337390501446],[117,-62,65,0.0436359462347782],[117,-62,66,0.04379964894196981],[117,-62,67,0.043965995203717245],[117,-62,68,0.04413512803828551],[117,-62,69,0.04430748174139694],[117,-62,70,0.0444832864924816],[117,-62,71,0.04466256895874266],[117,-62,72,0.044845164820746644],[117,-62,73,0.04503073242701996],[117,-62,74,0.045218767586551196],[117,-62,75,0.04540861950513227],[117,-62,76,0.04559950786855658],[117,-62,77,0.045790541072853505],[117,-62,78,0.04598073559898626],[117,-62,79,0.046169036526811445],[117,-61,64,0.04654877066902763],[117,-61,65,0.04679285792298307],[117,-61,66,0.047041640124878596],[117,-61,67,0.04729450640535842],[117,-61,68,0.04755164919916446],[117,-61,69,0.04781363444785218],[117,-61,70,0.04808072815266087],[117,-61,71,0.04835289966765215],[117,-61,72,0.048629841191673476],[117,-61,73,0.04891098882404986],[117,-61,74,0.04919554519314406],[117,-61,75,0.049482503662618596],[117,-61,76,0.04977067411604475],[117,-61,77,0.050058710316474866],[117,-61,78,0.050345138833739256],[117,-61,79,0.0506283895286011],[117,-60,64,0.04968095723085428],[117,-60,65,0.050009961348583605],[117,-60,66,0.050345213391791585],[117,-60,67,0.05068599651711865],[117,-60,68,0.051032536496665885],[117,-60,69,0.05138546689627787],[117,-60,70,0.051745036487042456],[117,-60,71,0.05211111598110704],[117,-60,72,0.05248322387825709],[117,-60,73,0.05286055427574925],[117,-60,74,0.0532420066502053],[117,-60,75,0.05362621761482167],[117,-60,76,0.05401159464980102],[117,-60,77,0.054396351798815044],[117,-60,78,0.054778547319488106],[117,-60,79,0.05515612327141928],[117,-59,64,0.05287609380056519],[117,-59,65,0.053290992459951746],[117,-59,66,0.053713585782062215],[117,-59,67,0.05414310985111325],[117,-59,68,0.054579807241362334],[117,-59,69,0.055024313129381205],[117,-59,70,0.05547680789518693],[117,-59,71,0.055937027535642565],[117,-59,72,0.05640429463229103],[117,-59,73,0.05687755167463948],[117,-59,74,0.05735539674799099],[117,-59,75,0.057836121588234944],[117,-59,76,0.05831775199960142],[117,-59,77,0.05879809062532849],[117,-59,78,0.05927476205551467],[117,-59,79,0.059745260251227165],[117,-58,64,0.05613716739068797],[117,-58,65,0.05663854691108585],[117,-58,66,0.057148911492933524],[117,-58,67,0.05766750899691186],[117,-58,68,0.05819458142928636],[117,-58,69,0.05873069932074014],[117,-58,70,0.05927592596857489],[117,-58,71,0.059829831395349795],[117,-58,72,0.060391526797042586],[117,-58,73,0.06095970174545878],[117,-58,74,0.0615326641555972],[117,-58,75,0.06210838302098405],[117,-58,76,0.0626845339126362],[117,-58,77,0.06325854723039794],[117,-58,78,0.06382765918895608],[117,-58,79,0.06438896551499587],[117,-57,64,0.05946599751360247],[117,-57,65,0.060054151423321434],[117,-57,66,0.06065238568092763],[117,-57,67,0.061260013590760956],[117,-57,68,0.06187725702793153],[117,-57,69,0.06250455594399904],[117,-57,70,0.06314180963693357],[117,-57,71,0.06378839396551209],[117,-57,72,0.064443197495423],[117,-57,73,0.06510466079975846],[117,-57,74,0.06577081892760882],[117,-57,75,0.06643934704592347],[117,-57,76,0.06710760925164098],[117,-57,77,0.06777271054343044],[117,-57,78,0.06843155193528894],[117,-57,79,0.06908088868784194],[117,-56,64,0.06286303027986802],[117,-56,65,0.0635380426691063],[117,-56,66,0.06422401095770677],[117,-56,67,0.06492035667297615],[117,-56,68,0.06562725765367917],[117,-56,69,0.06634495762907694],[117,-56,70,0.0670731456853763],[117,-56,71,0.06781097645963152],[117,-56,72,0.06855710628899706],[117,-56,73,0.06930973289393919],[117,-56,74,0.07006663861311045],[117,-56,75,0.07082523719838615],[117,-56,76,0.07158262416976757],[117,-56,77,0.07233563072161134],[117,-56,78,0.07308088116402103],[117,-56,79,0.07381485387640303],[117,-55,64,0.06632472910605743],[117,-55,65,0.06708622674289279],[117,-55,66,0.06785932493010222],[117,-55,67,0.06864358107680343],[117,-55,68,0.06943910137955762],[117,-55,69,0.0702458743443801],[117,-55,70,0.07106334052006294],[117,-55,71,0.07189041484574554],[117,-55,72,0.07272552078827858],[117,-55,73,0.07356662839469692],[117,-55,74,0.07441129628329078],[117,-55,75,0.07525671758708785],[117,-55,76,0.07609976985428459],[117,-55,77,0.07693706890144907],[117,-55,78,0.07776502660725675],[117,-55,79,0.07857991262729871],[117,-54,64,0.06984431670030865],[117,-54,65,0.07069128346435549],[117,-54,66,0.07155026627260504],[117,-54,67,0.07242096846358585],[117,-54,68,0.07330339435091256],[117,-54,69,0.07419723006288982],[117,-54,70,0.07510164285133694],[117,-54,71,0.07601530379403035],[117,-54,72,0.07693641728029348],[117,-54,73,0.07786275485233284],[117,-54,74,0.07879169343505792],[117,-54,75,0.07972025797707831],[117,-54,76,0.08064516851586634],[117,-54,77,0.08156289167089067],[117,-54,78,0.08246969655997916],[117,-54,79,0.08336171512646909],[117,-53,64,0.07341321153912321],[117,-53,65,0.07434395263613408],[117,-53,66,0.07528691131371834],[117,-53,67,0.07624192765608417],[117,-53,68,0.07720887146604855],[117,-53,69,0.07818709314383872],[117,-53,70,0.07917547710617252],[117,-53,71,0.0801724619794746],[117,-53,72,0.08117606213404245],[117,-53,73,0.08218389414268588],[117,-53,74,0.08319320821101929],[117,-53,75,0.08420092461615375],[117,-53,76,0.08520367518031366],[117,-53,77,0.08619784979610247],[117,-53,78,0.08717964801089328],[117,-53,79,0.08814513566937526],[117,-52,64,0.07702152101090219],[117,-52,65,0.07803365646959307],[117,-52,66,0.07905802555813632],[117,-52,67,0.08009457610621852],[117,-52,68,0.08114300876832252],[117,-52,69,0.0822023198477718],[117,-52,70,0.0832711173668759],[117,-52,71,0.08434763479453593],[117,-52,72,0.08542974067814066],[117,-52,73,0.08651495397219254],[117,-52,74,0.08760046513210605],[117,-52,75,0.08868316303061959],[117,-52,76,0.08975966774326807],[117,-52,77,0.09082636923861308],[117,-52,78,0.09187947199858212],[117,-52,79,0.09291504558461428],[117,-51,64,0.08065856857554651],[117,-51,65,0.0817490518599739],[117,-51,66,0.08285164057175495],[117,-51,67,0.08396634189600101],[117,-51,68,0.08509265122471243],[117,-51,69,0.08622920786632707],[117,-51,70,0.08737436584724853],[117,-51,71,0.08852619615469241],[117,-51,72,0.0896824799087842],[117,-51,73,0.09084070828608608],[117,-51,74,0.09199808929246647],[117,-51,75,0.09315156147128809],[117,-51,76,0.09429781462068505],[117,-51,77,0.09543331758148313],[117,-51,78,0.09655435314528239],[117,-51,79,0.09765706012070567],[117,-50,64,0.08431347089695204],[117,-50,65,0.0854786290684693],[117,-50,66,0.08665567337064024],[117,-50,67,0.08784460395906657],[117,-50,68,0.08904467407337259],[117,-50,69,0.09025417847960232],[117,-50,70,0.09147125486866636],[117,-50,71,0.09269386861090503],[117,-50,72,0.09391978437825013],[117,-50,73,0.09514654593434811],[117,-50,74,0.09637146422927075],[117,-50,75,0.09759161392201172],[117,-50,76,0.09880383843992388],[117,-50,77,0.10000476366987163],[117,-50,78,0.10119082036138816],[117,-50,79,0.10235827530790861],[117,-49,64,0.0876327284387347],[117,-49,65,0.08898794185927386],[117,-49,66,0.09035854546562204],[117,-49,67,0.09171685878521131],[117,-49,68,0.09298630454454862],[117,-49,69,0.09426425950212013],[117,-49,70,0.09554869402610593],[117,-49,71,0.09683753421220637],[117,-49,72,0.0981286065934085],[117,-49,73,0.09941959285679454],[117,-49,74,0.10070799475221626],[117,-49,75,0.10199110936202195],[117,-49,76,0.1032660148843811],[117,-49,77,0.1045295670653938],[117,-49,78,0.10577840639734434],[117,-49,79,0.10700897618259139],[117,-48,64,0.09095245803272038],[117,-48,65,0.09240500450877974],[117,-48,66,0.09387558925041359],[117,-48,67,0.09536066835725993],[117,-48,68,0.0968573713473543],[117,-48,69,0.09824676054686028],[117,-48,70,0.09959460254909602],[117,-48,71,0.10094582149551204],[117,-48,72,0.10229837618793038],[117,-48,73,0.10365016119477907],[117,-48,74,0.10499894454806326],[117,-48,75,0.10634231815788191],[117,-48,76,0.107677661146728],[117,-48,77,0.10900211628469081],[117,-48,78,0.11031257968467444],[117,-48,79,0.11160570389432069],[117,-47,64,0.09429084961464348],[117,-47,65,0.09584078696776782],[117,-47,66,0.0974112559624053],[117,-47,67,0.09899882357606894],[117,-47,68,0.10060077799589913],[117,-47,69,0.10218991384471585],[117,-47,70,0.10359807372016293],[117,-47,71,0.10500877897975405],[117,-47,72,0.10642017698629636],[117,-47,73,0.10783043371888432],[117,-47,74,0.1092376409593044],[117,-47,75,0.11063973892431525],[117,-47,76,0.11203445459984504],[117,-47,77,0.11341925600759899],[117,-47,78,0.11479132260767565],[117,-47,79,0.11614753201300519],[117,-46,64,0.09765343881978834],[117,-46,65,0.09930003331298155],[117,-46,66,0.10096936652610908],[117,-46,67,0.10265824922415989],[117,-46,68,0.10436419803260369],[117,-46,69,0.10608333608418287],[117,-46,70,0.10754964042208207],[117,-46,71,0.10901793818208991],[117,-46,72,0.11048660491855578],[117,-46,73,0.11195411786434178],[117,-46,74,0.11341893011913948],[117,-46,75,0.11487936331719946],[117,-46,76,0.1163335190862349],[117,-46,77,0.11777920957876138],[117,-46,78,0.11921390732476835],[117,-46,79,0.12063471462082079],[117,-45,64,0.10104412796571056],[117,-45,65,0.10278580276801948],[117,-45,66,0.10455201683583878],[117,-45,67,0.10633996657912671],[117,-45,68,0.10814747548812971],[117,-45,69,0.10991826466166489],[117,-45,70,0.11144146868809],[117,-45,71,0.11296646117371328],[117,-45,72,0.11449186691813701],[117,-45,73,0.1160164940215603],[117,-45,74,0.11753917345211887],[117,-45,75,0.119058620352002],[117,-45,76,0.12057331744966038],[117,-45,77,0.12208142090958339],[117,-45,78,0.12358068891286357],[117,-45,79,0.1250684332214271],[117,-44,64,0.10446489031719032],[117,-44,65,0.10629919538377622],[117,-44,66,0.10815932941877675],[117,-44,67,0.11004302158961045],[117,-44,68,0.11194848866850073],[117,-44,69,0.11368773648163945],[117,-44,70,0.11526749803714169],[117,-44,71,0.11684923985052059],[117,-44,72,0.118431837136371],[117,-44,73,0.1200144273783971],[117,-44,74,0.12159621454144239],[117,-44,75,0.1231762984179194],[117,-44,76,0.12475352952943071],[117,-44,77,0.1263263899629552],[117,-44,78,0.12789290047652568],[117,-44,79,0.12945055416205017],[117,-43,64,0.10791554227606229],[117,-43,65,0.10983914498262225],[117,-43,66,0.11178927096586816],[117,-43,67,0.11376433042705916],[117,-43,68,0.11575398005083055],[117,-43,69,0.11738670948343413],[117,-43,70,0.11902352864790089],[117,-43,71,0.12066294683175761],[117,-43,72,0.122304070230848],[117,-43,73,0.12394634290220133],[117,-43,74,0.12558931577139032],[117,-43,75,0.12723244420900184],[117,-43,76,0.1288749146467422],[117,-43,77,0.1305155006565595],[117,-43,78,0.1321524488653539],[117,-43,79,0.13378339502336886],[117,-42,64,0.1113935833256134],[117,-42,65,0.11340227922923814],[117,-42,66,0.11543753561627065],[117,-42,67,0.11749858877044093],[117,-42,68,0.11932206213152273],[117,-42,69,0.12101212691105771],[117,-42,70,0.12270725527070599],[117,-42,71,0.12440603775322139],[117,-42,72,0.12610777134848372],[117,-42,73,0.12781216292641795],[117,-42,74,0.12951906404597086],[117,-42,75,0.13122823770485906],[117,-42,76,0.13293915754517088],[117,-42,77,0.1346508399769845],[117,-42,78,0.13636170962491406],[117,-42,79,0.13806949844066962],[117,-41,64,0.11489410375997104],[117,-41,65,0.11698284687782073],[117,-41,66,0.11909749405186552],[117,-41,67,0.12107438877069439],[117,-41,68,0.12281411777046336],[117,-41,69,0.124562924155212],[117,-41,70,0.12631824759775215],[117,-41,71,0.12807870455359316],[117,-41,72,0.12984372227012675],[117,-41,73,0.13161320666952214],[117,-41,74,0.1333872447679164],[117,-41,75,0.135165842239473],[117,-41,76,0.13694869667863596],[117,-41,77,0.13873500705519476],[117,-41,78,0.14052331979309973],[117,-41,79,0.1423114118347702],[117,-40,64,0.11840976040425609],[117,-40,65,0.12057271240823438],[117,-40,66,0.1226496310855718],[117,-40,67,0.12443223271005145],[117,-40,68,0.12623051513316336],[117,-40,69,0.12803997778413048],[117,-40,70,0.12985787661079254],[117,-40,71,0.13168277916624582],[117,-40,72,0.13351416301526364],[117,-40,73,0.1353520508669254],[117,-40,74,0.13719668313910158],[117,-40,75,0.13904822860012597],[117,-40,76,0.140906533672039],[117,-40,77,0.14277091091530789],[117,-40,78,0.14463996714493038],[117,-40,79,0.1465114715513866],[117,-39,64,0.11857873080114988],[117,-39,65,0.12062600109244484],[117,-39,66,0.12236854634739015],[117,-39,67,0.12413644279087915],[117,-39,68,0.1259224057584232],[117,-39,69,0.12772168948833326],[117,-39,70,0.1295314011026608],[117,-39,71,0.1313500294509102],[117,-39,72,0.13317702890480113],[117,-39,73,0.13501244077042507],[117,-39,74,0.13685655303321828],[117,-39,75,0.1387095990881507],[117,-39,76,0.14057149604432187],[117,-39,77,0.14244162312658842],[117,-39,78,0.1443186406247046],[117,-39,79,0.14093015801756872],[117,-38,64,0.11862782381704363],[117,-38,65,0.12031746768002086],[117,-38,66,0.12204439165528463],[117,-38,67,0.12380018807947692],[117,-38,68,0.12557678860220767],[117,-38,69,0.1273691369587171],[117,-38,70,0.12917410776729785],[117,-38,71,0.1309900152044591],[117,-38,72,0.13281618752656388],[117,-38,73,0.13465257960901714],[117,-38,74,0.13649942421995948],[117,-38,75,0.13835692267991803],[117,-38,76,0.1365832294044954],[117,-38,77,0.13767646951505083],[117,-38,78,0.13372086615904738],[117,-38,79,0.1287730157371815],[117,-37,64,0.11830190670161284],[117,-37,65,0.11997328262024627],[117,-37,66,0.12168673735599177],[117,-37,67,0.12343288741177859],[117,-37,68,0.125202856328629],[117,-37,69,0.12699120405302508],[117,-37,70,0.12879448325753315],[117,-37,71,0.1306107342557205],[117,-37,72,0.13243905549762866],[117,-37,73,0.13124971211863762],[117,-37,74,0.13091986503804257],[117,-37,75,0.13075971600795502],[117,-37,76,0.13060527209121578],[117,-37,77,0.13016246514170526],[117,-37,78,0.12503388284460182],[117,-37,79,0.12198205991417613],[117,-36,64,0.1179482709894828],[117,-36,65,0.11960320874365801],[117,-36,66,0.12130518811307724],[117,-36,67,0.1230438986100203],[117,-36,68,0.12480963857070944],[117,-36,69,0.1265965047000798],[117,-36,70,0.12840063474781252],[117,-36,71,0.13021969524643937],[117,-36,72,0.12917639194120575],[117,-36,73,0.12651504141519768],[117,-36,74,0.12617639603363037],[117,-36,75,0.12572655858785556],[117,-36,76,0.12542372096888005],[117,-36,77,0.12380084981065428],[117,-36,78,0.11916294520853936],[117,-36,79,0.11874425662757762],[117,-35,64,0.11725141629134508],[117,-35,65,0.11921685554892907],[117,-35,66,0.12090911224364717],[117,-35,67,0.12264225511193795],[117,-35,68,0.12440574803514122],[117,-35,69,0.126193140856176],[117,-35,70,0.12800006224175764],[117,-35,71,0.1283735056641584],[117,-35,72,0.12752404381344218],[117,-35,73,0.12507068674686067],[117,-35,74,0.12604292610341203],[117,-35,75,0.1242524313878465],[117,-35,76,0.12282126108452043],[117,-35,77,0.12160239020989969],[117,-35,78,0.11662933731223839],[117,-35,79,0.11690821317884299],[117,-34,64,0.11719643293403254],[117,-34,65,0.11882339814243809],[117,-34,66,0.12050736546319389],[117,-34,67,0.12223639694001953],[117,-34,68,0.12399912087161429],[117,-34,69,0.12578845465329938],[117,-34,70,0.12759942501049817],[117,-34,71,0.12797757580497238],[117,-34,72,0.12838564686886653],[117,-34,73,0.12549273384424878],[117,-34,74,0.1274961059081972],[117,-34,75,0.12473564534609992],[117,-34,76,0.12219287435885734],[117,-34,77,0.12219895794779723],[117,-34,78,0.11639590166905293],[117,-34,79,0.11505678471574624],[117,-33,64,0.11681634365658294],[117,-33,65,0.11843128990706514],[117,-33,66,0.12010800830214598],[117,-33,67,0.1218338953084851],[117,-33,68,0.12359675064416963],[117,-33,69,0.12538877412191204],[117,-33,70,0.12720430159488538],[117,-33,71,0.12903930987112341],[117,-33,72,0.1308811996955951],[117,-33,73,0.12703104491326284],[117,-33,74,0.12874944522247855],[117,-33,75,0.1267864871139336],[117,-33,76,0.12373653481687376],[117,-33,77,0.12269504956242648],[117,-33,78,0.116685132053613],[117,-33,79,0.11468294975360012],[117,-32,64,0.11644417737101499],[117,-32,65,0.11804796819031668],[117,-32,66,0.1197180165085226],[117,-32,67,0.12144117021257578],[117,-32,68,0.1232044152841371],[117,-32,69,0.12499915190754284],[117,-32,70,0.12681894283492784],[117,-32,71,0.12865903575338108],[117,-32,72,0.13051598003368253],[117,-32,73,0.1307932153800126],[117,-32,74,0.13183856573908745],[117,-32,75,0.13229911077631146],[117,-32,76,0.1279080757464305],[117,-32,77,0.12410170064692012],[117,-32,78,0.11874292430333841],[117,-32,79,0.11613050968779053],[117,-31,64,0.11608648122006954],[117,-31,65,0.11767955235389829],[117,-31,66,0.11934298379949036],[117,-31,67,0.12106320038861589],[117,-31,68,0.12282639644278023],[117,-31,69,0.12462309643295151],[117,-31,70,0.1264460174157556],[117,-31,71,0.1282896136401872],[117,-31,72,0.13014971165523925],[117,-31,73,0.1320231723205714],[117,-31,74,0.13390758029007543],[117,-31,75,0.1358009614697202],[117,-31,76,0.13169692783101514],[117,-31,77,0.12803996009683674],[117,-31,78,0.1233382381905606],[117,-31,79,0.12105082283666468],[117,-30,64,0.1157482461697591],[117,-30,65,0.11733053357506473],[117,-30,66,0.11898681636864383],[117,-30,67,0.12070322507232864],[117,-30,68,0.12246519069505658],[117,-30,69,0.12426229498460832],[117,-30,70,0.1260863494396766],[117,-30,71,0.1279309659808318],[117,-30,72,0.12979121153781475],[117,-30,73,0.13166328635813682],[117,-30,74,0.13354422658045068],[117,-30,75,0.13543163155010157],[117,-30,76,0.13453037902318107],[117,-30,77,0.1331317653526502],[117,-30,78,0.12829334921917732],[117,-30,79,0.12640300244094238],[117,-29,64,0.11543258694338941],[117,-29,65,0.11700345583196646],[117,-29,66,0.11865141859296745],[117,-29,67,0.12036243701456216],[117,-29,68,0.12212121207149787],[117,-29,69,0.1239163282212903],[117,-29,70,0.12573864754619868],[117,-29,71,0.12758090912439313],[117,-29,72,0.12943740319154914],[117,-29,73,0.13130366565662605],[117,-29,74,0.13317619349313733],[117,-29,75,0.13505218146409106],[117,-29,76,0.13692928058132306],[117,-29,77,0.1369846553776179],[117,-29,78,0.13188125182433208],[117,-29,79,0.1304828282253493],[117,-28,64,0.11514041270625443],[117,-28,65,0.11669858753815782],[117,-28,66,0.11833636941106866],[117,-28,67,0.12003966623530962],[117,-28,68,0.12179248541055235],[117,-28,69,0.12358237561126631],[117,-28,70,0.12539922510387852],[117,-28,71,0.12723489102650998],[117,-28,72,0.12908289210191073],[117,-28,73,0.13093811826481408],[117,-28,74,0.13279655770903248],[117,-28,75,0.13465504179961338],[117,-28,76,0.13651100824134377],[117,-28,77,0.13836228284521296],[117,-28,78,0.13342610719660478],[117,-28,79,0.1310847717409896],[117,-27,64,0.11487008799168572],[117,-27,65,0.11641358331299868],[117,-27,66,0.11803858885992996],[117,-27,67,0.11973105400625354],[117,-27,68,0.1214743300264374],[117,-27,69,0.12325491130054511],[117,-27,70,0.125061710987417],[117,-27,71,0.1268857197421743],[117,-27,72,0.12871971475534105],[117,-27,73,0.13055798232469984],[117,-27,74,0.13239605445710173],[117,-27,75,0.13423045994034763],[117,-27,76,0.13605849027433262],[117,-27,77,0.1378779808045204],[117,-27,78,0.13573585372046967],[117,-27,79,0.13096185354820025],[117,-26,64,0.11461708337168597],[117,-26,65,0.11614313538076146],[117,-26,66,0.11775199425697118],[117,-26,67,0.11942971654486895],[117,-26,68,0.12115903317350872],[117,-26,69,0.12292538989399172],[117,-26,70,0.12471675042671966],[117,-26,71,0.1265232822017095],[117,-26,72,0.12833707821917698],[117,-26,73,0.13012941763680513],[117,-26,74,0.13184510179371844],[117,-26,75,0.13358562870916027],[117,-26,76,0.1353454064403188],[117,-26,77,0.13711783054617538],[117,-26,78,0.1387272766978692],[117,-26,79,0.13121093910564544],[117,-25,64,0.11437359359774255],[117,-25,65,0.11587860773682827],[117,-25,66,0.11746715339174661],[117,-25,67,0.1191254195986378],[117,-25,68,0.1208355483193733],[117,-25,69,0.12253788927444215],[117,-25,70,0.12408269852008798],[117,-25,71,0.12566335155079794],[117,-25,72,0.12728176333214947],[117,-25,73,0.12893754711920277],[117,-25,74,0.13062831199304079],[117,-25,75,0.1323499513143903],[117,-25,76,0.13409692167505427],[117,-25,77,0.1358625119201075],[117,-25,78,0.13763910182108507],[117,-25,79,0.13443863216050325],[117,-24,64,0.1141277636206153],[117,-24,65,0.1156079802993277],[117,-24,66,0.1171093707367234],[117,-24,67,0.11853729189238593],[117,-24,68,0.11998010242047748],[117,-24,69,0.12144957327003218],[117,-24,70,0.12295407346654838],[117,-24,71,0.12449888950148676],[117,-24,72,0.12608653608136092],[117,-24,73,0.12771706097586819],[117,-24,74,0.12938834362567855],[117,-24,75,0.13109638711531976],[117,-24,76,0.13283560308029138],[117,-24,77,0.13459908909873441],[117,-24,78,0.1363788981153702],[117,-24,79,0.13681659019968587],[117,-23,64,0.11334142585590234],[117,-23,65,0.11472990182524535],[117,-23,66,0.11611028524459774],[117,-23,67,0.1174928311242595],[117,-23,68,0.11889245142211653],[117,-23,69,0.12032189477077165],[117,-23,70,0.12179036267408391],[117,-23,71,0.12330381331859386],[117,-23,72,0.12486527067665794],[117,-23,73,0.12647512992969698],[117,-23,74,0.1281314588794763],[117,-23,75,0.12983029494815276],[117,-23,76,0.13156593732017666],[117,-23,77,0.13333123374987238],[117,-23,78,0.13511786154659663],[117,-23,79,0.13630369454149047],[117,-22,64,0.11239558639489956],[117,-22,65,0.11373678725734028],[117,-22,66,0.11507213819375144],[117,-22,67,0.1164117796034481],[117,-22,68,0.11777109991450722],[117,-22,69,0.11916371489119379],[117,-22,70,0.12059955859350457],[117,-22,71,0.12208517152339542],[117,-22,72,0.12362400789851671],[117,-22,73,0.12521674142603706],[117,-22,74,0.12686156924916686],[117,-22,75,0.12855451366031379],[117,-22,76,0.1302897211162086],[117,-22,77,0.1320597580508911],[117,-22,78,0.13385590296135452],[117,-22,79,0.1341056070894138],[117,-21,64,0.11141889238676955],[117,-21,65,0.11271350166687737],[117,-21,66,0.11400506698355703],[117,-21,67,0.11530353942537597],[117,-21,68,0.1166246495866359],[117,-21,69,0.11798275122889097],[117,-21,70,0.11938840509218786],[117,-21,71,0.12084864909038806],[117,-21,72,0.12236730139480323],[117,-21,73,0.12394526431613129],[117,-21,74,0.12558082866205517],[117,-21,75,0.12726997815828986],[117,-21,76,0.12900669345161928],[117,-21,77,0.13078325516383907],[117,-21,78,0.13259054543503127],[117,-21,79,0.1333974607489034],[117,-20,64,0.11042235286541145],[117,-20,65,0.11167035337619395],[117,-20,66,0.11291862269404339],[117,-20,67,0.11417683719463971],[117,-20,68,0.11546091728277963],[117,-20,69,0.11678581184761556],[117,-20,70,0.11816260031359603],[117,-20,71,0.11959874057271057],[117,-20,72,0.12109836347033649],[117,-20,73,0.12266257065645905],[117,-20,74,0.12428973548702535],[117,-20,75,0.1259758065604239],[117,-20,76,0.12771461339438417],[117,-20,77,0.1294981736885526],[117,-20,78,0.1313170015774953],[117,-20,79,0.13236187677635644],[117,-19,64,0.10941686207395614],[117,-19,65,0.11061747954080212],[117,-19,66,0.11182209493162606],[117,-19,67,0.11304001893216167],[117,-19,68,0.11428719828540768],[117,-19,69,0.11557902611469784],[117,-19,70,0.1169269952063855],[117,-19,71,0.11833891745110531],[117,-19,72,0.11981920336466409],[117,-19,73,0.12136914795696013],[117,-19,74,0.12298722264635115],[117,-19,75,0.12466937280769382],[117,-19,76,0.1264093204522155],[117,-19,77,0.12819887146642445],[117,-19,78,0.13002822678573434],[117,-19,79,0.13084245954763868],[117,-18,64,0.1084123184972029],[117,-18,65,0.10956388315306285],[117,-18,66,0.11072346505693402],[117,-18,67,0.11189991713214648],[117,-18,68,0.11310904493813173],[117,-18,69,0.11436653345905372],[117,-18,70,0.11568419193668159],[117,-18,71,0.11707013672533897],[117,-18,72,0.11852904756376022],[117,-18,73,0.12006243374095042],[117,-18,74,0.12166890987407854],[117,-18,75,0.12334448089855542],[117,-18,76,0.12508283576995524],[117,-18,77,0.12687564929477982],[117,-18,78,0.12871289144309966],[117,-18,79,0.12876843587122055],[117,-17,64,0.1074115934788273],[117,-17,65,0.10851164128450443],[117,-17,66,0.10962391904531105],[117,-17,67,0.11075673453700291],[117,-17,68,0.11192558525007279],[117,-17,69,0.11314629540059981],[117,-17,70,0.11443089990721493],[117,-17,71,0.11578778138801063],[117,-17,72,0.11722189363249817],[117,-17,73,0.1187349991779611],[117,-17,74,0.1203259207384563],[117,-17,75,0.1219908061088674],[117,-17,76,0.1237234060553189],[117,-17,77,0.12551536460795445],[117,-17,78,0.12735652109405124],[117,-17,79,0.1260106808023397],[117,-16,64,0.10639958447719994],[117,-16,65,0.1074460701125811],[117,-16,66,0.10850931351778688],[117,-16,67,0.10959700380122024],[117,-16,68,0.11072416011164077],[117,-16,69,0.1119065757976508],[117,-16,70,0.11315639812903502],[117,-16,71,0.11448221171608786],[117,-16,72,0.11588922090675013],[117,-16,73,0.11737945105911568],[117,-16,74,0.11895196847491742],[117,-16,75,0.1206031186465818],[117,-16,76,0.12232678234884785],[117,-16,77,0.12411464899746154],[117,-16,78,0.125956506604248],[117,-16,79,0.12515811470148186],[117,-15,64,0.10536038187530979],[117,-15,65,0.106351919320228],[117,-15,66,0.10736517860156623],[117,-15,67,0.1084071707317616],[117,-15,68,0.10949226434733013],[117,-15,69,0.11063603475220316],[117,-15,70,0.1118506040485832],[117,-15,71,0.11314466533576902],[117,-15,72,0.11452361753101849],[117,-15,73,0.11598972424266242],[117,-15,74,0.11754229652265683],[117,-15,75,0.11917789918641418],[117,-15,76,0.12089058025607878],[117,-15,77,0.12267212296171447],[117,-15,78,0.12451231962600577],[117,-15,79,0.12404864027510808],[117,-14,64,0.10428193172578827],[117,-14,65,0.10521770766633147],[117,-14,66,0.10618066525026086],[117,-14,67,0.10717709020464226],[117,-14,68,0.10822053043095595],[117,-14,69,0.10932614543932989],[117,-14,70,0.11050587765203015],[117,-14,71,0.1117684136329328],[117,-14,72,0.11311926645444594],[117,-14,73,0.11456088754767531],[117,-14,74,0.11609280790659332],[117,-14,75,0.11771180837212898],[117,-14,76,0.11941211858096532],[117,-14,77,0.12118564402931106],[117,-14,78,0.12302222057747869],[117,-14,79,0.12195502097635874],[117,-13,64,0.10315539326681394],[117,-13,65,0.10403508877286582],[117,-13,66,0.10494792892555603],[117,-13,67,0.10589943766020019],[117,-13,68,0.10690217778023318],[117,-13,69,0.10797069119277114],[117,-13,70,0.10911657608245012],[117,-13,71,0.11034838314890756],[117,-13,72,0.11167164213843053],[117,-13,73,0.1130889233965727],[117,-13,74,0.1145999343564727],[117,-13,75,0.11620165072800086],[117,-13,76,0.11788848200305141],[117,-13,77,0.11965247074566947],[117,-13,78,0.12148352499628542],[117,-13,79,0.12298387001472594],[117,-12,64,0.057562156408350953],[117,-12,65,0.06913641961416178],[117,-12,66,0.0818818801789616],[117,-12,67,0.09576980686869484],[117,-12,68,0.10553250887442557],[117,-12,69,0.10656530594758648],[117,-12,70,0.10767864728597158],[117,-12,71,0.10888081078906861],[117,-12,72,0.11017723498222438],[117,-12,73,0.11157052824299396],[117,-12,74,0.11306051850955723],[117,-12,75,0.11464434327546355],[117,-12,76,0.11631657951732602],[117,-12,77,0.11806941304432891],[117,-12,78,0.11989284660500493],[117,-12,79,0.12177494594247283],[117,-11,64,0.027584005818897805],[117,-11,65,0.03463516354237925],[117,-11,66,0.04268307155416897],[117,-11,67,0.05172892452800612],[117,-11,68,0.06176940755064333],[117,-11,69,0.07279374705895286],[117,-11,70,0.08477952930238242],[117,-11,71,0.09769323713631646],[117,-11,72,0.10863330357630757],[117,-11,73,0.1100029338854052],[117,-11,74,0.11147170929323866],[117,-11,75,0.1130368889537427],[117,-11,76,0.11469319874547652],[117,-11,77,0.1164329691297564],[117,-11,78,0.11824631724214836],[117,-11,79,0.12012137240219739],[117,-10,64,0.01063897965853567],[117,-10,65,0.014236691568657974],[117,-10,66,0.018613728599698696],[117,-10,67,0.02379552229421471],[117,-10,68,0.029802536183049528],[117,-10,69,0.03664821976038849],[117,-10,70,0.04433501597717791],[117,-10,71,0.052854864401247134],[117,-10,72,0.06218985232249354],[117,-10,73,0.07231292080103922],[117,-10,74,0.08318863107517155],[117,-10,75,0.09477399593167614],[117,-10,76,0.10701937894086526],[117,-10,77,0.11473944894504547],[117,-10,78,0.11653978371982544],[117,-10,79,0.11840429049448357],[117,-9,64,0.008121754511926071],[117,-9,65,0.008959641351962084],[117,-9,66,0.009782793989858181],[117,-9,67,0.010593624898024357],[117,-9,68,0.011399914031963613],[117,-9,69,0.014983247542277112],[117,-9,70,0.01929172990546366],[117,-9,71,0.0242921141409089],[117,-9,72,0.02998752074443303],[117,-9,73,0.03637186384707532],[117,-9,74,0.04343055758641894],[117,-9,75,0.05114126742340633],[117,-9,76,0.05947470786031408],[117,-9,77,0.06839548763494593],[117,-9,78,0.0778630025387937],[117,-9,79,0.08783237462147782],[117,-8,64,0.006729493712777009],[117,-8,65,0.007545432815563615],[117,-8,66,0.008354855701518957],[117,-8,67,0.009159314343049152],[117,-8,68,0.009964949267953556],[117,-8,69,0.010781365692871341],[117,-8,70,0.011617278445846839],[117,-8,71,0.012480083273224078],[117,-8,72,0.01337558032783585],[117,-8,73,0.014881578412871105],[117,-8,74,0.01894464518981605],[117,-8,75,0.023560857663345706],[117,-8,76,0.028718313291039646],[117,-8,77,0.03439843219404598],[117,-8,78,0.04057678261648612],[117,-8,79,0.04722394427905364],[117,-7,64,0.005330811672653519],[117,-7,65,0.006125944797233728],[117,-7,66,0.00692271864466742],[117,-7,67,0.00772183317353696],[117,-7,68,0.008527736169900798],[117,-7,69,0.009348403355327052],[117,-7,70,0.010191293977482016],[117,-7,71,0.011062873026008621],[117,-7,72,0.011968284632711058],[117,-7,73,0.012911088735774049],[117,-7,74,0.013893061079931766],[117,-7,75,0.014914056493138901],[117,-7,76,0.015971935247908322],[117,-7,77,0.01706255218289439],[117,-7,78,0.01817980812761595],[117,-7,79,0.02205635623027014],[117,-6,64,0.0039292196097349625],[117,-6,65,0.004704822362309806],[117,-6,66,0.005490025551534859],[117,-6,67,0.006284690738293289],[117,-6,68,0.007091547456583013],[117,-6,69,0.007916872644207531],[117,-6,70,0.008766795271031776],[117,-6,71,0.009646775552267263],[117,-6,72,0.010561232849716157],[117,-6,73,0.011513239735286073],[117,-6,74,0.012504282323106242],[117,-6,75,0.013534086838092162],[117,-6,76,0.014600512249699693],[117,-6,77,0.015699508660632227],[117,-6,78,0.016825141001410127],[117,-6,79,0.017969677444828233],[117,-5,64,0.002528042246600047],[117,-5,65,0.003285477137857347],[117,-5,66,0.004060143740189842],[117,-5,67,0.004851083506314418],[117,-5,68,0.005659311111276545],[117,-5,69,0.006489370738385038],[117,-5,70,0.007346015102859906],[117,-5,71,0.008233648345508137],[117,-5,72,0.009155913814122101],[117,-5,73,0.010115350182040874],[117,-5,74,0.011113116042345689],[117,-5,75,0.012148782971760906],[117,-5,76,0.013220196913691976],[117,-5,77,0.01432340758569089],[117,-5,78,0.015452665472919604],[117,-5,79,0.016600485827637613],[117,-4,64,0.0011302865807571274],[117,-4,65,0.0018709559464777394],[117,-4,66,0.0026360382246990626],[117,-4,67,0.0034237772516852233],[117,-4,68,0.004233505431902472],[117,-4,69,0.00506803696376449],[117,-4,70,0.005930732608272207],[117,-4,71,0.006824913379282201],[117,-4,72,0.0077534142539499714],[117,-4,73,0.008718207633932438],[117,-4,74,0.009720096725306427],[117,-4,75,0.010758478856242756],[117,-4,76,0.011831178602655784],[117,-4,77,0.012934350444094944],[117,-4,78,0.014062450524955233],[117,-4,79,0.015208276951336652],[117,-3,64,-2.6142653443328516E-4],[117,-3,65,4.638711536361402E-4],[117,-3,66,0.0012202048270158825],[117,-3,67,0.0020050468799156164],[117,-3,68,0.0028161086086227536],[117,-3,69,0.0036545139589104604],[117,-3,70,0.004522246882737426],[117,-3,71,0.005421543198351033],[117,-3,72,0.006354416804979006],[117,-3,73,0.007322256282572174],[117,-3,74,0.008325492071004763],[117,-3,75,0.009363334271274535],[117,-3,76,0.01043358095973051],[117,-3,77,0.011532496756041535],[117,-3,78,0.012654761236416385],[117,-3,79,0.013793486637130438],[117,-2,64,-0.0016448665876116978],[117,-2,65,-9.336058919429568E-4],[117,-2,66,-1.8533537600902547E-4],[117,-2,67,5.966751683884016E-4],[117,-2,68,0.0014086040250615012],[117,-2,69,0.002249960471188729],[117,-2,70,0.003121397137424591],[117,-2,71,0.004024087473667855],[117,-2,72,0.004959231397541085],[117,-2,73,0.005927631186392156],[117,-2,74,0.006929337830297114],[117,-2,75,0.007963367910413348],[117,-2,76,0.009027490914398011],[117,-2,77,0.010118086749448241],[117,-2,78,0.0112300730637914],[117,-2,79,0.012356901840774986],[117,-1,64,-0.003018131940277439],[117,-1,65,-0.0023196869080506265],[117,-1,66,-0.0015789788988523868],[117,-1,67,-7.999882684344474E-4],[117,-1,68,1.2042515805168078E-5],[117,-1,69,8.551169192563442E-4],[117,-1,70,0.001728630428332728],[117,-1,71,0.002632740904101613],[117,-1,72,0.0035678607426094908],[117,-1,73,0.004534218387917021],[117,-1,74,0.00553148943475319],[117,-1,75,0.006558497405022159],[117,-1,76,0.007612984130257216],[117,-1,77,0.008691449521644953],[117,-1,78,0.009789060360471108],[117,-1,79,0.0108996275963837],[117,0,64,-0.0043795212350121815],[117,0,65,-0.0036928427893637068],[117,0,66,-0.00295941860041833],[117,0,67,-0.0021839064628767072],[117,0,68,-0.0013728371717961069],[117,0,69,-5.295751278437559E-4],[117,0,70,3.4411799106829325E-4],[117,0,71,0.0012474533583201966],[117,0,72,0.002180100652251828],[117,0,73,0.0031417414736019935],[117,0,74,0.004131690779268637],[117,0,75,0.005148586434403652],[117,0,76,0.006190146834794387],[117,0,77,0.007252996403195188],[117,0,78,0.008332558616877931],[117,0,79,0.009423016080807223],[117,1,64,-0.005727336083308678],[117,1,65,-0.005051612475720887],[117,1,66,-0.004325457279175027],[117,1,67,-0.00355417214797999],[117,1,68,-0.0027454289749722664],[117,1,69,-0.0019037989233320206],[117,1,70,-0.001032079257551634],[117,1,71,-1.3191721914399324E-4],[117,1,72,7.956757149261845E-4],[117,1,73,0.0017498751279181172],[117,1,74,0.0027296607775339266],[117,1,75,0.0037334996462780774],[117,1,76,0.004759094899047359],[117,1,77,0.005803200574325973],[117,1,78,0.006861501692652071],[117,1,79,0.007928559326986356],[117,2,64,-0.007059613760359383],[117,2,65,-0.006394343904737262],[117,2,66,-0.00567575586026047],[117,2,67,-0.004909762398160993],[117,2,68,-0.004105021327661041],[117,2,69,-0.003267134155979712],[117,2,70,-0.002399796182922966],[117,2,71,-0.0015054091324672935],[117,2,72,-5.855894586763425E-4],[117,2,73,3.5838617756661585E-4],[117,2,74,0.001325198533861876],[117,2,75,0.0023131666446856275],[117,2,76,0.0033199919022532044],[117,2,77,0.0043425652093036175],[117,2,78,0.005376836915359345],[117,2,79,0.0064177491138591595],[117,3,64,-0.0012656232603986267],[117,3,65,-0.002612044371603313],[117,3,66,-0.004331383091610002],[117,3,67,-0.00624922444730429],[117,3,68,-0.005450493147378552],[117,3,69,-0.004618767223445395],[117,3,70,-0.0037584935979480746],[117,3,71,-0.0028727135848632106],[117,3,72,-0.0019635605048389433],[117,3,73,-0.001032697576624721],[117,3,74,-8.169580638114214E-5],[117,3,75,8.876482678166801E-4],[117,3,76,0.0018730549831354572],[117,3,77,0.0028715639834447065],[117,3,78,0.003879396415518064],[117,3,79,0.0048918765019209795],[117,4,64,5.2846948095371795E-6],[117,4,65,-3.31855860238409E-4],[117,4,66,-7.65388399201915E-4],[117,4,67,-0.0013698640074002765],[117,4,68,-0.002211236654717418],[117,4,69,-0.003341515698646397],[117,4,70,-0.004800587719038729],[117,4,71,-0.0042328865982661276],[117,4,72,-0.0033375466922694274],[117,4,73,-0.0024228903784103153],[117,4,74,-0.0014906815750681925],[117,4,75,-5.42788674519317E-4],[117,4,76,4.1855847648776366E-4],[117,4,77,0.0013905683540267964],[117,4,78,0.0023697440620295837],[117,4,79,0.00335179581257291],[117,5,64,2.2281879002396496E-4],[117,5,65,-1.851350630025443E-4],[117,5,66,-3.873671401527825E-4],[117,5,67,-4.8115589496981656E-4],[117,5,68,-5.546204821790069E-4],[117,5,69,-6.812559312490661E-4],[117,5,70,-9.21714441851979E-4],[117,5,71,-0.0013251759887636092],[117,5,72,-0.0019306252591995835],[117,5,73,-0.002768070760572615],[117,5,74,-0.0029009191041000533],[117,5,75,-0.0019775881374264137],[117,5,76,-0.0010431649682599905],[117,5,77,-1.0023912443161479E-4],[117,5,78,8.479967632684885E-4],[117,5,79,0.0017976512717239178],[117,6,64,0.003130464150534227],[117,6,65,0.0015709356073323492],[117,6,66,5.448932558043347E-4],[117,6,67,-6.76604371571778E-5],[117,6,68,-3.7696331286010747E-4],[117,6,69,-4.77949861645132E-4],[117,6,70,-4.520224860392444E-4],[117,6,71,-3.683703462693899E-4],[117,6,72,-2.851990262618238E-4],[117,6,73,-2.5090815082681826E-4],[117,6,74,-3.052124359612204E-4],[117,6,75,-4.802020206562028E-4],[117,6,76,-8.013382716036257E-4],[117,6,77,-0.001288381626683251],[117,6,78,-6.863840060664036E-4],[117,6,79,2.285609034366388E-4],[117,7,64,0.012473833142911782],[117,7,65,0.008681793075066854],[117,7,66,0.005776483544180615],[117,7,67,0.003615347989177547],[117,7,68,0.0020661049654144468],[117,7,69,0.0010124019236240304],[117,7,70,3.52069836191762E-4],[117,7,71,-4.137882532820579E-6],[117,7,72,-1.3372798185904187E-4],[117,7,73,-1.036060148176461E-4],[117,7,74,2.8835417996526017E-5],[117,7,75,2.1468376883208861E-4],[117,7,76,4.1253302590175646E-4],[117,7,77,5.875730071830842E-4],[117,7,78,7.10744420150319E-4],[117,7,79,7.579622188352275E-4],[117,8,64,0.031991614994033746],[117,8,65,0.02489102451350917],[117,8,66,0.019053749303539272],[117,8,67,0.014315840238637734],[117,8,68,0.01052363536772231],[117,8,69,0.007539694395238648],[117,8,70,0.005241219464066496],[117,8,71,0.003518923041122055],[117,8,72,0.002275932776360231],[117,8,73,0.0014267130797296923],[117,8,74,8.96019365943792E-4],[117,8,75,6.178957959672972E-4],[117,8,76,5.347240434577596E-4],[117,8,77,5.963284858392756E-4],[117,8,78,7.591418244372237E-4],[117,8,79,9.854341865888614E-4],[117,9,64,0.06314210229939939],[117,9,65,0.053907126662308166],[117,9,66,0.04410149332778438],[117,9,67,0.03576885172644229],[117,9,68,0.028737089375922363],[117,9,69,0.022849502180284066],[117,9,70,0.01796376299901246],[117,9,71,0.013951155310439839],[117,9,72,0.01069572646212569],[117,9,73,0.008093376863653868],[117,9,74,0.0060509264977341125],[117,9,75,0.004485187204824203],[117,9,76,0.0033220602831085335],[117,9,77,0.0024956728427595943],[117,9,78,0.0019475621931082387],[117,9,79,0.0016259147052485386],[117,10,64,0.060759765993688666],[117,10,65,0.0605644209712011],[117,10,66,0.06048019656536472],[117,10,67,0.06049794431547509],[117,10,68,0.0604011390971138],[117,10,69,0.05065656947212023],[117,10,70,0.042247815003299834],[117,10,71,0.03502956457269519],[117,10,72,0.028868609821007512],[117,10,73,0.023643396234860888],[117,10,74,0.01924341355555578],[117,10,75,0.015568492776084316],[117,10,76,0.012528057582135797],[117,10,77,0.010040364119872048],[117,10,78,0.008031752974078939],[117,10,79,0.006435930121717807],[117,11,64,0.05836732767502715],[117,11,65,0.058122377904806406],[117,11,66,0.057985281331122185],[117,11,67,0.057946986494049356],[117,11,68,0.05799523578161948],[117,11,69,0.05812076114368294],[117,11,70,0.058316476950861965],[117,11,71,0.0585769958703788],[117,11,72,0.058898220351507526],[117,11,73,0.05179188416493965],[117,11,74,0.044201405288978764],[117,11,75,0.03760458370789959],[117,11,76,0.03189557728665353],[117,11,77,0.026977448178480225],[117,11,78,0.022761628069077854],[117,11,79,0.019167347145836833],[117,12,64,0.05606928869762101],[117,12,65,0.055674839412264],[117,12,66,0.05548459118533536],[117,12,67,0.05538980534153684],[117,12,68,0.05537843605545358],[117,12,69,0.05544122815841834],[117,12,70,0.055571113748467696],[117,12,71,0.05576274789694257],[117,12,72,0.05601211245867422],[117,12,73,0.05631615528065159],[117,12,74,0.05667246522532772],[117,12,75,0.05707898331586286],[117,12,76,0.05753375020728491],[117,12,77,0.05701395024986746],[117,12,78,0.04985795153764125],[117,12,79,0.04355067882838766],[117,13,64,0.05399678618124604],[117,13,65,0.0532272576298059],[117,13,66,0.05298401678424333],[117,13,67,0.05283277147502541],[117,13,68,0.05276184247557679],[117,13,69,0.05276204602186305],[117,13,70,0.05282635627585171],[117,13,71,0.052949468173825495],[117,13,72,0.05312741897658096],[117,13,73,0.05335724235049582],[117,13,74,0.053636655391656726],[117,13,75,0.05396377890403656],[117,13,76,0.05433689114666837],[117,13,77,0.054754215172483904],[117,13,78,0.055213739792481085],[117,13,79,0.05571307411232816],[117,14,64,0.05194141217300996],[117,14,65,0.05079616740199994],[117,14,66,0.05049098395065368],[117,14,67,0.05028369777177791],[117,14,68,0.05015365489884599],[117,14,69,0.05009179190061903],[117,14,70,0.05009113719422985],[117,14,71,0.05014640939735222],[117,14,72,0.05025366310668066],[117,14,73,0.05040996383532318],[117,14,74,0.05061309251089673],[117,14,75,0.05086127984411777],[117,14,76,0.05115297079032043],[117,14,77,0.05148661924239046],[117,14,78,0.0518605130126911],[117,14,79,0.052272629082873875],[117,15,64,0.049915030904609865],[117,15,65,0.04875318868175753],[117,15,66,0.04801655655697842],[117,15,67,0.047753820924455834],[117,15,68,0.04756521230902821],[117,15,69,0.047441826881967436],[117,15,70,0.04737675100701287],[117,15,71,0.047364703824273734],[117,15,72,0.04740171423158256],[117,15,73,0.04748482304131617],[117,15,74,0.04761181069778825],[117,15,75,0.04778095085934726],[117,15,76,0.047990790072331264],[117,15,77,0.04823995369001454],[117,15,78,0.048526978118367654],[117,15,79,0.048850169401063445],[117,16,64,0.04793328863816103],[117,16,65,0.04675691114595256],[117,16,66,0.04559454852810425],[117,16,67,0.04525708080466913],[117,16,68,0.04501002436561891],[117,16,69,0.04482506639256818],[117,16,70,0.04469536710641247],[117,16,71,0.0446156407115719],[117,16,72,0.04458186946409423],[117,16,73,0.04459103837107302],[117,16,74,0.044640890884843396],[117,16,75,0.044729705887147135],[117,16,76,0.044856096193430256],[117,16,77,0.04501882874483451],[117,16,78,0.04521666659511565],[117,16,79,0.04544823274092761],[117,17,64,0.046005553303961576],[117,17,65,0.044816719906679646],[117,17,66,0.043637883848227796],[117,17,67,0.04280094762438351],[117,17,68,0.04249516503248105],[117,17,69,0.042248060280387016],[117,17,70,0.04205289850520507],[117,17,71,0.04190440387886072],[117,17,72,0.04179851528833576],[117,17,73,0.04173215764048444],[117,17,74,0.04170302912961028],[117,17,75,0.04170940475179776],[117,17,76,0.041749956298242775],[117,17,77,0.04182358900987783],[117,17,78,0.04192929502740099],[117,17,79,0.04206602372366869],[117,18,64,0.04413388871511973],[117,18,65,0.042934680283147876],[117,18,66,0.04174090028050213],[117,18,67,0.0405499521650055],[117,18,68,0.04002057902826519],[117,18,69,0.039710440661504025],[117,18,70,0.0394486040081746],[117,18,71,0.039229834496206595],[117,18,72,0.03905005020967986],[117,18,73,0.03890613272424518],[117,18,74,0.03879574851254787],[117,18,75,0.03871718119092398],[117,18,76,0.03866917484119855],[117,18,77,0.03865078860509874],[117,18,78,0.03866126271363901],[117,18,79,0.03869989607914384],[117,19,64,0.042314216356459204],[117,19,65,0.04110669733680305],[117,19,66,0.039899501741883156],[117,19,67,0.03869123353026467],[117,19,68,0.03758016893130508],[117,19,69,0.037205971583576095],[117,19,70,0.03687609190530921],[117,19,71,0.03658538056970081],[117,19,72,0.036329772286738705],[117,19,73,0.036106138062624554],[117,19,74,0.035912142385297004],[117,19,75,0.03574610559354653],[117,19,76,0.03560687166481617],[117,19,77,0.035493681634781865],[117,19,78,0.035406052840313736],[117,19,79,0.035343664155737746],[117,20,64,0.03949194826364248],[117,20,65,0.038581408380448774],[117,20,66,0.037633710817774814],[117,20,67,0.03665122046586336],[117,20,68,0.03564126151408418],[117,20,69,0.03472356102214527],[117,20,70,0.034324289079285836],[117,20,71,0.03396001545561129],[117,20,72,0.03362673981705221],[117,20,73,0.03332136691740393],[117,20,74,0.03304160037766667],[117,20,75,0.03278583585114459],[117,20,76,0.03255305381030341],[117,20,77,0.03234271218410539],[117,20,78,0.03215463906707219],[117,20,79,0.03198892571297167],[117,21,64,0.03606912346912382],[117,21,65,0.0351267146895279],[117,21,66,0.034155560247763304],[117,21,67,0.03315693189119348],[117,21,68,0.032137168953488136],[117,21,69,0.031104158918609758],[117,21,70,0.030565551668754583],[117,21,71,0.03041085275147962],[117,21,72,0.03031506774283656],[117,21,73,0.03027916171931034],[117,21,74,0.03017051674471601],[117,21,75,0.02982325605739153],[117,21,76,0.029495180953460185],[117,21,77,0.029186003895671896],[117,21,78,0.028895897729378176],[117,21,79,0.028625396354698435],[117,22,64,0.032599520624874326],[117,22,65,0.03162509709000755],[117,22,66,0.030630600632863048],[117,22,67,0.029616273330813746],[117,22,68,0.028587453792293695],[117,22,69,0.027551525271533803],[117,22,70,0.026514850387367284],[117,22,71,0.026086124649010615],[117,22,72,0.025954713214446118],[117,22,73,0.02588721635615013],[117,22,74,0.025883390114325416],[117,22,75,0.025941857571203233],[117,22,76,0.026060189307047073],[117,22,77,0.026009849247393236],[117,22,78,0.025617025931761007],[117,22,79,0.025241256022991012],[117,23,64,0.029107874027017148],[117,23,65,0.02810151741928043],[117,23,66,0.027083893560852872],[117,23,67,0.02605430279042918],[117,23,68,0.025017083929428252],[117,23,69,0.023979053339586342],[117,23,70,0.022946196964762817],[117,23,71,0.02192355674318145],[117,23,72,0.0215393432460112],[117,23,73,0.021439654998859175],[117,23,74,0.021407542722302546],[117,23,75,0.021441566812227225],[117,23,76,0.021539196136842822],[117,23,77,0.021696880919604332],[117,23,78,0.02191014226645453],[117,23,79,0.021823508033634847],[117,24,64,0.025620045334986796],[117,24,65,0.02458208063936047],[117,24,66,0.023541649905029223],[117,24,67,0.022497220913831165],[117,24,68,0.021452150174216943],[117,24,69,0.020412629831761682],[117,24,70,0.019384206933019663],[117,24,71,0.01837161540155673],[117,24,72,0.017378703364312176],[117,24,73,0.016957772258990846],[117,24,74,0.016895955164182994],[117,24,75,0.01690385713803031],[117,24,76,0.016978810608394644],[117,24,77,0.017117080551014848],[117,24,78,0.017313941197552377],[117,24,79,0.017563774256915705],[117,25,64,0.022162140633720007],[117,25,65,0.02109314953592359],[117,25,66,0.02003034830224901],[117,25,67,0.018971499103461645],[117,25,68,0.017919009565484034],[117,25,69,0.01687839736677818],[117,25,70,0.015854713199831137],[117,25,71,0.014852323472418029],[117,25,72,0.013874796854799854],[117,25,73,0.012924818783194491],[117,25,74,0.012369253372940925],[117,25,75,0.01234858577936984],[117,25,76,0.012398050942583012],[117,25,77,0.012513709573852859],[117,25,78,0.012690581320087027],[117,25,79,0.012922735748186783],[117,26,64,0.018759679325252382],[117,26,65,0.0176605103750633],[117,26,66,0.01657590318177236],[117,26,67,0.01550305528746253],[117,26,68,0.014443473913757485],[117,26,69,0.01340196061099143],[117,26,70,0.012383018723886417],[117,26,71,0.011390592798919474],[117,26,72,0.010427918015494683],[117,26,73,0.00949740197082318],[117,26,74,0.008600538758843097],[117,26,75,0.0077950054056064285],[117,26,76,0.00781537729169145],[117,26,77,0.00790438192355446],[117,26,78,0.008056785057876673],[117,26,79,0.008266357723151986],[117,27,64,0.01543681670873992],[117,27,65,0.014308591348974267],[117,27,66,0.013202884126325403],[117,27,67,0.012116479045045224],[117,27,68,0.011050045189802552],[117,27,69,0.010007636155413181],[117,27,70,0.008993164839133457],[117,27,71,0.00801010620114942],[117,27,72,0.007061313767206748],[117,27,73,0.006148872342328134],[117,27,74,0.005273986900594686],[117,27,75,0.004436907520376028],[117,27,76,0.0036368901426359567],[117,27,77,0.0033056770873192533],[117,27,78,0.003428345490498619],[117,27,79,0.003609622271744382],[117,28,64,0.012215622143557462],[117,28,65,0.011059735677239673],[117,28,66,0.009933788382068718],[117,28,67,0.008834307836719233],[117,28,68,0.0077611994163973115],[117,28,69,0.00671774767926739],[117,28,70,0.0057072410071021835],[117,28,71,0.004732644862723114],[117,28,72,0.0037963899745126406],[117,28,73,0.002900199991116114],[117,28,74,0.0020449585945968396],[117,28,75,0.0012306159557135211],[117,28,76,4.5613431465055547E-4],[117,28,77,-2.805276246083891E-4],[117,28,78,-9.823918871920412E-4],[117,28,79,-0.0010337731828135015],[117,29,64,0.009115414658091892],[117,29,65,0.007933531197059859],[117,29,66,0.006788368300489391],[117,29,67,0.0056763560525378695],[117,29,68,0.004596720687572547],[117,29,69,0.003551967915913586],[117,29,70,0.002544737385572227],[117,29,71,0.0015774538901447194],[117,29,72,6.520921506827674E-4],[117,29,73,-2.3001631328272454E-4],[117,29,74,-0.0010683342136271505],[117,29,75,-0.0018632275263808177],[117,29,76,-0.0026160327365387765],[117,29,77,-0.003329082605787379],[117,29,78,-0.004005690869279271],[117,29,79,-0.00465009635583007],[117,30,64,0.006152157785857081],[117,30,65,0.004946198192694813],[117,30,66,0.003783015411770513],[117,30,67,0.002659098508959553],[117,30,68,0.0015730868589165785],[117,30,69,5.267088591773559E-4],[117,30,70,-4.780584723110724E-4],[117,30,71,-0.0014393527824613642],[117,30,72,-0.0023556799211693663],[117,30,73,-0.003226123434810587],[117,30,74,-0.004050509985313273],[117,30,75,-0.004829530782396658],[117,30,76,-0.005564819228953908],[117,30,77,-0.0062589850860539946],[117,30,78,-0.006915605563871048],[117,30,79,-0.007539173837397156],[117,31,64,0.0033379153048039684],[117,31,65,0.002110037106360744],[117,31,66,9.302027208126169E-4],[117,31,67,-2.048900821464555E-4],[117,31,68,-0.00129709165188784],[117,31,69,-0.0023454384525460246],[117,31,70,-0.003348619570399726],[117,31,71,-0.0043053470613700325],[117,31,72,-0.005214622720807806],[117,31,73,-0.006075959519351538],[117,31,74,-0.0068895576571599785],[117,31,75,-0.007656435309855498],[117,31,76,-0.008378514255293807],[117,31,77,-0.009058660679931716],[117,31,78,-0.009700681566384225],[117,31,79,-0.010309277159149765],[117,32,64,6.803694505701099E-4],[117,32,65,-5.670623342117139E-4],[117,32,66,-0.0017620132900318336],[117,32,67,-0.0029074382544074613],[117,32,68,-0.004005578617869616],[117,32,69,-0.005056213335936988],[117,32,70,-0.006058690949601124],[117,32,71,-0.007012299941373318],[117,32,72,-0.007916543831511025],[117,32,73,-0.008771370297061858],[117,32,74,-0.009577354250119689],[117,32,75,-0.010335834934581258],[117,32,76,-0.01104900721814922],[117,32,77,-0.01171996736755252],[117,32,78,-0.012352713699256302],[117,32,79,-0.012952102594775172],[117,33,64,-0.001817596907078276],[117,33,65,-0.0030820491187008698],[117,33,66,-0.004290429549325213],[117,33,67,-0.005445222199962449],[117,33,68,-0.006548963049907948],[117,33,69,-0.007602142881684535],[117,33,70,-0.00860475364210983],[117,33,71,-0.009556652407769234],[117,33,72,-0.010457840305439583],[117,33,73,-0.01130869541304578],[117,33,74,-0.012110159563528426],[117,33,75,-0.012863879097078439],[117,33,76,-0.013572299724772975],[117,33,77,-0.014238715777966161],[117,33,78,-0.014867274222219387],[117,33,79,-0.015462933911578994],[117,34,64,-0.00415825267509602],[117,34,65,-0.00543707467367973],[117,34,66,-0.006657070811310305],[117,34,67,-0.007820150152155383],[117,34,68,-0.008929053311994393],[117,34,69,-0.009984946258329236],[117,34,70,-0.010988440073805372],[117,34,71,-0.011939943091369165],[117,34,72,-0.01283993979442688],[117,34,73,-0.013689224184070998],[117,34,74,-0.014489087523301816],[117,34,75,-0.015241460489988506],[117,34,76,-0.01594900988665108],[117,34,77,-0.016615190165306246],[117,34,78,-0.017244250129007346],[117,34,79,-0.017841195267834124],[117,35,64,-0.0063493040736363904],[117,35,65,-0.007639790869706374],[117,35,66,-0.00886950021458744],[117,35,67,-0.010039685414984605],[117,35,68,-0.011153213055374197],[117,35,69,-0.01221188474149497],[117,35,70,-0.013216899862271965],[117,35,71,-0.014169191748670401],[117,35,72,-0.015069703660554415],[117,35,73,-0.015919620154608627],[117,35,74,-0.016720553731768808],[117,35,75,-0.017474686782008364],[117,35,76,-0.017985480215746693],[117,35,77,-0.016529997325909585],[117,35,78,-0.015089150589883627],[117,35,79,-0.013668554381771315],[117,36,64,-0.008404111769327783],[117,36,65,-0.009703580814613649],[117,36,66,-0.010941064525333635],[117,36,67,-0.012117106635810863],[117,36,68,-0.013234637638809353],[117,36,69,-0.014296056223520044],[117,36,70,-0.015303114871642745],[117,36,71,-0.01625723755368299],[117,36,72,-0.01715979119732234],[117,36,73,-0.017918521554765362],[117,36,74,-0.016395126620897295],[117,36,75,-0.014875052502696608],[117,36,76,-0.013362384087875703],[117,36,77,-0.011861725485349674],[117,36,78,-0.01037821523356031],[117,36,79,-0.008917499020606056],[117,37,64,-0.010341837959235732],[117,37,65,-0.011647720806608435],[117,37,66,-0.012891072474429372],[117,37,67,-0.014071703781546901],[117,37,68,-0.015192569562151342],[117,37,69,-0.01625663281600613],[117,37,70,-0.01726616224204459],[117,37,71,-0.0165105773524023],[117,37,72,-0.01493912352207472],[117,37,73,-0.013365817663488455],[117,37,74,-0.011794237200067352],[117,37,75,-0.010228246436122307],[117,37,76,-0.008672098235344919],[117,37,77,-0.007130493807301522],[117,37,78,-0.005608600873298258],[117,37,79,-0.004112030582221785],[117,38,64,-0.012186844903525146],[117,38,65,-0.013496771209926236],[117,38,66,-0.014744182914548458],[117,38,67,-0.015928166505749592],[117,38,68,-0.016831697998332715],[117,38,69,-0.015234134360824644],[117,38,70,-0.01362488191274754],[117,38,71,-0.012008162575515796],[117,38,72,-0.0103878515379057],[117,38,73,-0.008767703678270997],[117,38,74,-0.007151539188314962],[117,38,75,-0.00554338832762988],[117,38,76,-0.003947595347956318],[117,38,77,-0.002368881732694981],[117,38,78,-8.123689999309801E-4],[117,38,79,7.164385857357876E-4],[117,39,64,-0.013954004661770726],[117,39,65,-0.015265399466251241],[117,39,66,-0.01569156819069406],[117,39,67,-0.014080783054583034],[117,39,68,-0.012447896545766236],[117,39,69,-0.010799249848644658],[117,39,70,-0.009140209420787351],[117,39,71,-0.007475436487171227],[117,39,72,-0.00580915447089416],[117,39,73,-0.004145376942479821],[117,39,74,-0.0024880958860846996],[117,39,75,-8.414301906762265E-4],[117,39,76,7.902656178938127E-4],[117,39,77,0.002402332283230588],[117,39,78,0.003989776141503351],[117,39,79,0.0055472785443906715],[117,40,64,-0.014628437822420763],[117,40,65,-0.013019990159708221],[117,40,66,-0.011384298330308395],[117,40,67,-0.009721599941985506],[117,40,68,-0.008037391464197336],[117,40,69,-0.006338655321737645],[117,40,70,-0.004631299724729874],[117,40,71,-0.0029204155286948544],[117,40,72,-0.0012105469589788463],[117,40,73,4.940761091459956E-4],[117,40,74,0.0021893445409825346],[117,40,75,0.0038711151216797328],[117,40,76,0.005535094536126347],[117,40,77,0.00717676205802034],[117,40,78,0.008791330757121497],[117,40,79,0.010373746939778399],[117,41,64,-0.010414311237975503],[117,41,65,-0.008751142454195232],[117,41,66,-0.007062323365250665],[117,41,67,-0.005347357820079419],[117,41,68,-0.003611842841834065],[117,41,69,-0.0018634555043805757],[117,41,70,-1.0867711510476234E-4],[117,41,71,0.001646961474246253],[117,41,72,0.003398603400073744],[117,41,73,0.005141826778694667],[117,41,74,0.0068724434134205085],[117,41,75,0.008586335366309605],[117,41,76,0.010279329438927709],[117,41,77,0.011947109504357449],[117,41,78,0.013585166534289726],[117,41,79,0.015188786072170108],[117,42,64,-0.006201626156389448],[117,42,65,-0.004482453879599559],[117,42,66,-0.0027395458484458478],[117,42,67,-9.716274377365428E-4],[117,42,68,8.155842296626072E-4],[117,42,69,0.0026136527576655897],[117,42,70,0.00441547903787516],[117,42,71,0.006215067115564044],[117,42,72,0.008007240089363097],[117,42,73,0.009787392495522088],[117,42,74,0.011551279467243016],[117,42,75,0.0132948428541478],[117,42,76,0.015014074383029728],[117,42,77,0.016704915839969407],[117,42,78,0.01836319615642429],[117,42,79,0.019984605189881145],[117,43,64,-0.0020045338841643634],[117,43,65,-2.2803961157298646E-4],[117,43,66,0.0015700378380853184],[117,43,67,0.003391792930335442],[117,43,68,0.005231365428882053],[117,43,69,0.007079490686445078],[117,43,70,0.008928399593088526],[117,43,71,0.010771595851006418],[117,43,72,0.012603562987215865],[117,43,73,0.014419506846839411],[117,43,74,0.016215133895841765],[117,43,75,0.01798646555781051],[117,43,76,0.019729688706470083],[117,43,77,0.02144104233545886],[117,43,78,0.023116740330244658],[117,43,79,0.02475293017573446],[117,44,64,0.0021642868263250024],[117,44,65,0.003999303070431567],[117,44,66,0.005853597398278605],[117,44,67,0.007730114161460322],[117,44,68,0.009622823330978476],[117,44,69,0.01152156431379009],[117,44,70,0.013417843095606593],[117,44,71,0.01530462165781011],[117,44,72,0.01717601552726124],[117,44,73,0.01902702573374597],[117,44,74,0.020853305545330953],[117,44,75,0.022650962248760818],[117,44,76,0.02441639414009935],[117,44,77,0.026146162791522886],[117,44,78,0.02783690056428725],[117,44,79,0.0294852532472242],[117,45,64,0.00629498313479835],[117,45,65,0.00818943877922843],[117,45,66,0.010100794574629356],[117,45,67,0.01203285658321317],[117,45,68,0.0139793939990906],[117,45,69,0.015929287853415543],[117,45,70,0.017873265420166564],[117,45,71,0.01980370290828311],[117,45,72,0.021714313658889317],[117,45,73,0.023599869566584802],[117,45,74,0.025455956138593493],[117,45,75,0.02727876150361107],[117,45,76,0.029064899581257363],[117,45,77,0.030811267524635665],[117,45,78,0.03251493745341553],[117,45,79,0.033906424947136124],[117,46,64,0.010381950556432823],[117,46,65,0.012336305829180175],[117,46,66,0.014305175166861587],[117,46,67,0.016293213901134727],[117,46,68,0.01829395402234526],[117,46,69,0.020295263651812136],[117,46,70,0.022287041514559274],[117,46,71,0.02426103433562969],[117,46,72,0.026210516452849504],[117,46,73,0.028130001313765387],[117,46,74,0.030014985315317315],[117,46,75,0.031861724344173746],[117,46,76,0.0336256166695189],[117,46,77,0.035066626952596346],[117,46,78,0.03646839376731504],[117,46,79,0.0378325143718761],[117,47,64,0.01441997678536328],[117,47,65,0.016434173625866817],[117,47,66,0.018460551311295387],[117,47,67,0.020504575698973092],[117,47,68,0.02255950056705155],[117,47,69,0.02461213750692189],[117,47,70,0.026651513738384876],[117,47,71,0.028668705833312245],[117,47,72,0.03065651212500117],[117,47,73,0.03238132354853021],[117,47,74,0.034029239717149926],[117,47,75,0.03563760575238604],[117,47,76,0.03720802593891076],[117,47,77,0.03874172301312116],[117,47,78,0.04023967847319509],[117,47,79,0.04170274072856608],[117,48,64,0.017909600496810337],[117,48,65,0.020154551183783197],[117,48,66,0.022326933334216842],[117,48,67,0.024417657975624087],[117,48,68,0.026431052486861853],[117,48,69,0.02837879111343821],[117,48,70,0.03027029499320665],[117,48,71,0.03211288391420687],[117,48,72,0.03391211227647518],[117,48,73,0.03567207605426065],[117,48,74,0.037395690240570184],[117,48,75,0.03908493635149332],[117,48,76,0.04074107965978764],[117,48,77,0.042364855916223666],[117,48,78,0.043956627402678326],[117,48,79,0.045516508243176275],[117,49,64,0.02072723856592044],[117,49,65,0.023008995548784935],[117,49,66,0.025220891284252926],[117,49,67,0.027353088407719144],[117,49,68,0.02941018109875911],[117,49,69,0.03140483701639006],[117,49,70,0.033347290035913184],[117,49,71,0.03524547329800351],[117,49,72,0.03710535894396657],[117,49,73,0.03893127069154404],[117,49,74,0.04072616870516481],[117,49,75,0.04249190630442701],[117,49,76,0.0442294581414301],[117,49,77,0.04593911956204005],[117,49,78,0.04762067694785761],[117,49,79,0.049273548914883565],[117,50,64,0.0235578603446114],[117,50,65,0.0258735134172485],[117,50,66,0.02812160885191027],[117,50,67,0.030291646294091583],[117,50,68,0.032388512092412135],[117,50,69,0.03442585279270303],[117,50,70,0.03641471837031152],[117,50,71,0.038363674969300224],[117,50,72,0.04027914556877471],[117,50,73,0.04216572546131777],[117,50,74,0.04402647197633244],[117,50,75,0.04586316796445267],[117,50,76,0.04767655863988515],[117,50,77,0.049466561456484474],[117,50,78,0.051232448770281255],[117,50,79,0.052973003116458084],[117,51,64,0.13130538480030066],[117,51,65,0.028755231819027532],[117,51,66,0.031036212656762367],[117,51,67,0.03324039759404703],[117,51,68,0.035372983711217706],[117,51,69,0.03744856152004746],[117,51,70,0.03947898468342758],[117,51,71,0.041473461067780285],[117,51,72,0.04343889127178057],[117,51,73,0.04538018403668029],[117,51,74,0.047300547957804216],[117,51,75,0.04920175899287683],[117,51,76,0.0510844033366148],[117,51,77,0.052948095303573715],[117,51,78,0.05479166993247148],[117,51,79,0.05661335009561166],[117,52,64,0.14540970763746525],[117,52,65,0.15701980619955216],[117,52,66,0.16827369928352284],[117,52,67,0.179116129480078],[117,52,68,0.18957530649735568],[117,52,69,0.04047684565881797],[117,52,70,0.042543801889738206],[117,52,71,0.04457828119828346],[117,52,72,0.04658768088549619],[117,52,73,0.04857726099797286],[117,52,74,0.050550434990525715],[117,52,75,0.05250903829964231],[117,52,76,0.054453574377006535],[117,52,77,0.05638343779781215],[117,52,78,0.058297114123365246],[117,52,79,0.06019235626214642],[117,53,64,0.15957471178528818],[117,53,65,0.1712570772887897],[117,53,66,0.18258341609137987],[117,53,67,0.19349735207974306],[117,53,68,0.20402879764617468],[117,53,69,0.21425741865903192],[117,53,70,0.22424780270891478],[117,53,71,0.23404989030379003],[117,53,72,0.24370074611614811],[117,53,73,0.25322622466661004],[117,53,74,0.2626425278243283],[117,53,75,0.27195765185715876],[117,53,76,0.28117272183283765],[117,53,77,0.29028321120048717],[117,53,78,0.29928004450583534],[117,53,79,0.0637070417973776],[117,54,64,0.1737807949788955],[117,54,65,0.18551733885123511],[117,54,66,0.1968952906004619],[117,54,67,0.20785781953538998],[117,54,68,0.21843653768842577],[117,54,69,0.22871432368696565],[117,54,70,0.2387586291027841],[117,54,71,0.24862182525105037],[117,54,72,0.2583429389687066],[117,54,73,0.26794929196089085],[117,54,74,0.27745804214129793],[117,54,75,0.28687762542150375],[117,54,76,0.2962090961376966],[117,54,77,0.30544736400038175],[117,54,78,0.31458232526298535],[117,54,79,0.3235998858097941],[117,55,64,0.18799423006118268],[117,55,65,0.1997678720946889],[117,55,66,0.21117772272970198],[117,55,67,0.22216716076593856],[117,55,68,0.2327694666972555],[117,55,69,0.2430702250228177],[117,55,70,0.25313939933109375],[117,55,71,0.26303159485249317],[117,55,72,0.27278774400423333],[117,55,73,0.2824367042986836],[117,55,74,0.291996768185903],[117,55,75,0.3014770841370042],[117,55,76,0.31087898769583866],[117,55,77,0.32019724060351284],[117,55,78,0.3294211755943751],[117,55,79,0.3385357441654838],[117,56,64,0.2021686159918966],[117,56,65,0.20953842719007812],[117,56,66,0.22075694694076894],[117,56,67,0.23411317103252768],[117,56,68,0.24554060180105428],[117,56,69,0.25480790732495706],[117,56,70,0.25977459528583546],[117,56,71,0.26316894918018824],[117,56,72,0.26773196456106596],[117,56,73,0.2720999218005861],[117,56,74,0.27611680103169195],[117,56,75,0.277645443452881],[117,56,76,0.27988079277676176],[117,56,77,0.2870226250578242],[117,56,78,0.29890322333221087],[117,56,79,0.3136192057698109],[117,57,64,0.144159945643493],[117,57,65,0.14944415500445463],[117,57,66,0.16173941824833438],[117,57,67,0.17566193328614726],[117,57,68,0.18720091323104923],[117,57,69,0.19659387361732608],[117,57,70,0.20197173971651688],[117,57,71,0.2037916824440096],[117,57,72,0.2079284716348546],[117,57,73,0.21237517990780333],[117,57,74,0.2160993212855059],[117,57,75,0.2173798398584967],[117,57,76,0.21951223304578985],[117,57,77,0.2273287158806123],[117,57,78,0.23965396541898626],[117,57,79,0.25573256284243556],[117,58,64,0.09722634278167577],[117,58,65,0.10256184672597767],[117,58,66,0.11346503190923075],[117,58,67,0.12818693511716317],[117,58,68,0.14027992716422985],[117,58,69,0.14946103152671694],[117,58,70,0.15368107232224087],[117,58,71,0.15627648853396908],[117,58,72,0.1603889987626147],[117,58,73,0.16467722895363457],[117,58,74,0.1675962995573075],[117,58,75,0.1684179557546503],[117,58,76,0.1721063425543658],[117,58,77,0.17900264138104346],[117,58,78,0.19155002572160398],[117,58,79,0.20756179968177177],[117,59,64,0.036217165329368715],[117,59,65,0.041450627097135304],[117,59,66,0.051684818589904286],[117,59,67,0.06692102203575803],[117,59,68,0.0793053255896818],[117,59,69,0.08814935940491038],[117,59,70,0.09250766255802427],[117,59,71,0.09578767074890909],[117,59,72,0.09980519252008761],[117,59,73,0.1039418643613433],[117,59,74,0.10701740180672244],[117,59,75,0.10839969140638099],[117,59,76,0.11256119402511718],[117,59,77,0.11933754458534217],[117,59,78,0.1313727745337868],[117,59,79,0.14780481275480953],[117,60,64,0.01471225986255752],[117,60,65,0.014587142514747948],[117,60,66,0.014313014244153184],[117,60,67,0.016369526355076772],[117,60,68,0.01873364459998837],[117,60,69,0.024457552221697744],[117,60,70,0.029009816055797454],[117,60,71,0.033748568286243626],[117,60,72,0.03735517195648338],[117,60,73,0.04174675389855821],[117,60,74,0.04468348290523536],[117,60,75,0.04628955953394195],[117,60,76,0.05088531835157082],[117,60,77,0.057046314081063094],[117,60,78,0.06866919999350457],[117,60,79,0.08517798758308705],[117,61,64,0.002245144226236948],[117,61,65,-2.5235320266111047E-4],[117,61,66,-0.0015446804301959827],[117,61,67,-8.80157667021557E-4],[117,61,68,1.5516495017887274E-4],[117,61,69,0.0016591296177820747],[117,61,70,0.0023622803939935756],[117,61,71,0.0034765980880771693],[117,61,72,0.0048463954088867655],[117,61,73,0.006618118305721357],[117,61,74,0.007445674507349747],[117,61,75,0.0076776100796739745],[117,61,76,0.00990407019280494],[117,61,77,0.012117048983364447],[117,61,78,0.015255084701009558],[117,61,79,0.025828963594163392],[117,62,64,-0.013720858343064284],[117,62,65,-0.016127647589812735],[117,62,66,-0.018164670997308993],[117,62,67,-0.016775594031477818],[117,62,68,-0.015620493238029243],[117,62,69,-0.014304665715478926],[117,62,70,-0.01352167899020079],[117,62,71,-0.012059750302646279],[117,62,72,-0.010690983707688456],[117,62,73,-0.009567322921674865],[117,62,74,-0.008513240085047244],[117,62,75,-0.0077556240044778174],[117,62,76,-0.005299216613078282],[117,62,77,-0.0034548755558181385],[117,62,78,1.1556752315265515E-5],[117,62,79,0.005729552474515313],[117,63,64,-0.05227123817820151],[117,63,65,-0.0554819283447146],[117,63,66,-0.05760484889547514],[117,63,67,-0.05598424870323258],[117,63,68,-0.05429407071504213],[117,63,69,-0.052986781775983205],[117,63,70,-0.05223692260491242],[117,63,71,-0.050287097378112385],[117,63,72,-0.048614149284510855],[117,63,73,-0.04741690038574176],[117,63,74,-0.04617903064496756],[117,63,75,-0.04520124136019597],[117,63,76,-0.04268718720460467],[117,63,77,-0.04043109619833025],[117,63,78,-0.03693488724223271],[117,63,79,-0.03163393872767981],[117,64,64,-0.0646300402177328],[117,64,65,-0.06894747762448582],[117,64,66,-0.07035511117474472],[117,64,67,-0.06895209350461133],[117,64,68,-0.06658653948307894],[117,64,69,-0.06585697823131602],[117,64,70,-0.0647273510368202],[117,64,71,-0.06355013102636486],[117,64,72,-0.061441302880371425],[117,64,73,-0.05899146329173912],[117,64,74,-0.05787442510688684],[117,64,75,-0.05634123177517861],[117,64,76,-0.054860239935741066],[117,64,77,-0.05251450412341954],[117,64,78,-0.04899811159015081],[117,64,79,-0.04445089524897659],[117,65,64,-0.08083188911049596],[117,65,65,-0.08489965656978196],[117,65,66,-0.08629601252074978],[117,65,67,-0.08456774434091192],[117,65,68,-0.082432543217377],[117,65,69,-0.0814862471286566],[117,65,70,-0.08064168799338362],[117,65,71,-0.07952595423484164],[117,65,72,-0.07676263359943579],[117,65,73,-0.07479000015968203],[117,65,74,-0.073391668174369],[117,65,75,-0.07176190207919388],[117,65,76,-0.07016646446921128],[117,65,77,-0.06728175606417175],[117,65,78,-0.0649719986260444],[117,65,79,-0.06088660064755795],[117,66,64,-0.09889993555035338],[117,66,65,-0.10232762527564171],[117,66,66,-0.10313169509502643],[117,66,67,-0.10182227570738307],[117,66,68,-0.09976344481312137],[117,66,69,-0.09855824116595185],[117,66,70,-0.09758219588946673],[117,66,71,-0.09623809368904312],[117,66,72,-0.09394527506768038],[117,66,73,-0.09137381273955214],[117,66,74,-0.0906384748437498],[117,66,75,-0.08915539030023992],[117,66,76,-0.08698579233799283],[117,66,77,-0.0848512899110388],[117,66,78,-0.0827175671317135],[117,66,79,-0.07940927776166629],[117,67,64,-0.11483825395290768],[117,67,65,-0.11813254228976075],[117,67,66,-0.1191165266512451],[117,67,67,-0.11805867703225184],[117,67,68,-0.11558108982904955],[117,67,69,-0.11417390347083686],[117,67,70,-0.11255192551699525],[117,67,71,-0.11076294364094502],[117,67,72,-0.10813847796867807],[117,67,73,-0.1064584346150753],[117,67,74,-0.10598949565985656],[117,67,75,-0.10425024984791745],[117,67,76,-0.101903187058656],[117,67,77,-0.10025956820859139],[117,67,78,-0.09823251451643092],[117,67,79,-0.09609475409532917],[117,68,64,-0.15879335878719322],[117,68,65,-0.1615090211253809],[117,68,66,-0.1625595445354927],[117,68,67,-0.1622556710734024],[117,68,68,-0.15904105768191687],[117,68,69,-0.1573397930482904],[117,68,70,-0.15480947051147864],[117,68,71,-0.15285273621296283],[117,68,72,-0.15047576844607638],[117,68,73,-0.1496259086904271],[117,68,74,-0.14945053921266843],[117,68,75,-0.1478849006506395],[117,68,76,-0.14605894760304636],[117,68,77,-0.14407747855264977],[117,68,78,-0.14248016515142367],[117,68,79,-0.14012369688802423],[117,69,64,-0.177401787863154],[117,69,65,-0.17878131119068533],[117,69,66,-0.17886400737624072],[117,69,67,-0.17732780017848573],[117,69,68,-0.17241652667431545],[117,69,69,-0.1681946142327958],[117,69,70,-0.16470869171069738],[117,69,71,-0.16186102412834427],[117,69,72,-0.15933277335228319],[117,69,73,-0.15822205916192172],[117,69,74,-0.15863469068574207],[117,69,75,-0.15726911180224928],[117,69,76,-0.1566708381279938],[117,69,77,-0.1560946831768276],[117,69,78,-0.15444294685710624],[117,69,79,-0.15285960654285144],[117,70,64,-0.19374826090661096],[117,70,65,-0.1941193525455153],[117,70,66,-0.19403726586054043],[117,70,67,-0.19206028914398687],[117,70,68,-0.1880033953617327],[117,70,69,-0.18361167783520962],[117,70,70,-0.1798179110582315],[117,70,71,-0.17698107416227088],[117,70,72,-0.17473757043657165],[117,70,73,-0.17378428900058968],[117,70,74,-0.17392080607881052],[117,70,75,-0.17333714491980368],[117,70,76,-0.1723888315944607],[117,70,77,-0.17222632964807577],[117,70,78,-0.1701892808847647],[117,70,79,-0.16794554455726682],[117,71,64,-0.20616050030980906],[117,71,65,-0.2069621995530711],[117,71,66,-0.2062543816512438],[117,71,67,-0.203984260087771],[117,71,68,-0.19951348676790517],[117,71,69,-0.19518728115271042],[117,71,70,-0.1919010316185162],[117,71,71,-0.18920229387903453],[117,71,72,-0.18683594287118407],[117,71,73,-0.1860262528465248],[117,71,74,-0.18575001021032525],[117,71,75,-0.1854159895940355],[117,71,76,-0.18522885056714308],[117,71,77,-0.18509991187949199],[117,71,78,-0.18345890720054442],[117,71,79,-0.18114138376055336],[117,72,64,-0.22211550419760345],[117,72,65,-0.22340275558247738],[117,72,66,-0.22165011217227032],[117,72,67,-0.21875965359589852],[117,72,68,-0.21347004106994805],[117,72,69,-0.21001619044577807],[117,72,70,-0.20742628531957796],[117,72,71,-0.2046706193712951],[117,72,72,-0.20225347757963624],[117,72,73,-0.20138121926263539],[117,72,74,-0.20151538062179694],[117,72,75,-0.20151084620708795],[117,72,76,-0.20195610550847767],[117,72,77,-0.2005417057429474],[117,72,78,-0.19983391420357716],[117,72,79,-0.1963230114246081],[117,73,64,-0.24080974977599034],[117,73,65,-0.24042840357153417],[117,73,66,-0.23735657927574044],[117,73,67,-0.2334033935794014],[117,73,68,-0.22731617377166924],[117,73,69,-0.22413054199940677],[117,73,70,-0.222894043467338],[117,73,71,-0.21996417358070083],[117,73,72,-0.21776584272319355],[117,73,73,-0.21757167392601395],[117,73,74,-0.21832940701211923],[117,73,75,-0.21883016891503992],[117,73,76,-0.21877394354960797],[117,73,77,-0.2181064365246048],[117,73,78,-0.2166596567835166],[117,73,79,-0.21255542862779703],[117,74,64,-0.2574562089554494],[117,74,65,-0.2571673667234374],[117,74,66,-0.2542968013763304],[117,74,67,-0.2495461103414754],[117,74,68,-0.24421499843234912],[117,74,69,-0.24068715260539822],[117,74,70,-0.23917685073922174],[117,74,71,-0.23610028874331657],[117,74,72,-0.23422408159135036],[117,74,73,-0.23429747378464594],[117,74,74,-0.2346826408903444],[117,74,75,-0.2350675932581804],[117,74,76,-0.23557184855161556],[117,74,77,-0.235371727680558],[117,74,78,-0.23431832016729964],[117,74,79,-0.23038079942498454],[117,75,64,-0.2719861595750893],[117,75,65,-0.27215269872049763],[117,75,66,-0.26978546790358066],[117,75,67,-0.26440894738445836],[117,75,68,-0.25914139089000104],[117,75,69,-0.25549331899094135],[117,75,70,-0.25331687671667774],[117,75,71,-0.2507667205933226],[117,75,72,-0.2492090791274252],[117,75,73,-0.24882907932232146],[117,75,74,-0.250005871061792],[117,75,75,-0.25089362389156705],[117,75,76,-0.25080936227032014],[117,75,77,-0.25039462251568445],[117,75,78,-0.24965417736689277],[117,75,79,-0.24670345569523885],[117,76,64,-0.2860094555900686],[117,76,65,-0.28575737061961964],[117,76,66,-0.2827811761491323],[117,76,67,-0.27777075221765674],[117,76,68,-0.27249892027327294],[117,76,69,-0.2693407599926234],[117,76,70,-0.2669893032059294],[117,76,71,-0.26497226239295907],[117,76,72,-0.263429862722782],[117,76,73,-0.2633938255163424],[117,76,74,-0.26460631458342476],[117,76,75,-0.26476445261228354],[117,76,76,-0.2648166735748136],[117,76,77,-0.2642746766804545],[117,76,78,-0.2631068565485442],[117,76,79,-0.2623222320333833],[117,77,64,-0.299932992202955],[117,77,65,-0.3000239094901421],[117,77,66,-0.2976303437713898],[117,77,67,-0.29251329775945045],[117,77,68,-0.28811307502407557],[117,77,69,-0.2854489496541385],[117,77,70,-0.28338857334943285],[117,77,71,-0.28256350407843434],[117,77,72,-0.2816651108050864],[117,77,73,-0.28187541155127366],[117,77,74,-0.2822277144706592],[117,77,75,-0.28261851983577924],[117,77,76,-0.2822344625214071],[117,77,77,-0.282477083169783],[117,77,78,-0.28120772523372267],[117,77,79,-0.27986387423556697],[117,78,64,-0.31469319495210457],[117,78,65,-0.3144323051355878],[117,78,66,-0.3121472027161767],[117,78,67,-0.3070818674768006],[117,78,68,-0.3025250221075681],[117,78,69,-0.299670823032411],[117,78,70,-0.2977447137382287],[117,78,71,-0.29660409249685993],[117,78,72,-0.2958732226744609],[117,78,73,-0.29620803021163583],[117,78,74,-0.29704637813081736],[117,78,75,-0.2979155671434813],[117,78,76,-0.29725664966947163],[117,78,77,-0.29827295087100236],[117,78,78,-0.2973637269945355],[117,78,79,-0.29580007785770857],[117,79,64,-0.3254423664552759],[117,79,65,-0.3258109756647221],[117,79,66,-0.32325422900899803],[117,79,67,-0.318492165747747],[117,79,68,-0.31448888203545516],[117,79,69,-0.3114350706039475],[117,79,70,-0.3089397260233095],[117,79,71,-0.3077513215631259],[117,79,72,-0.3072045978639047],[117,79,73,-0.30862267425669787],[117,79,74,-0.30961226943363984],[117,79,75,-0.31100258864244873],[117,79,76,-0.3105711293469086],[117,79,77,-0.31103359243357387],[117,79,78,-0.31053743477421364],[117,79,79,-0.30908072762957634],[117,80,64,-0.33916318838358694],[117,80,65,-0.3396624461066749],[117,80,66,-0.3365101623610367],[117,80,67,-0.33173812194698027],[117,80,68,-0.32821593046299613],[117,80,69,-0.32501609239736656],[117,80,70,-0.3224869220979363],[117,80,71,-0.32169192150523146],[117,80,72,-0.3215508937380775],[117,80,73,-0.32321301755369813],[117,80,74,-0.32446888807021534],[117,80,75,-0.32598702831327603],[117,80,76,-0.32574814515785383],[117,80,77,-0.32671429447025485],[117,80,78,-0.32612881149512607],[117,80,79,-0.32347374390816097],[117,81,64,-0.35125933365014944],[117,81,65,-0.3511660739291418],[117,81,66,-0.3481963866129856],[117,81,67,-0.3432698943382282],[117,81,68,-0.3394456624793784],[117,81,69,-0.3363135618898689],[117,81,70,-0.33393987664692293],[117,81,71,-0.3338910446478607],[117,81,72,-0.333973902292479],[117,81,73,-0.3362428381068269],[117,81,74,-0.33693414553617745],[117,81,75,-0.33866200316470607],[117,81,76,-0.33910660613449156],[117,81,77,-0.34169349942725524],[117,81,78,-0.34164968395662015],[117,81,79,-0.3395919094578283],[117,82,64,-0.36654422554219934],[117,82,65,-0.3657216493188867],[117,82,66,-0.36329277671751203],[117,82,67,-0.35861202104656287],[117,82,68,-0.3548360288377711],[117,82,69,-0.35208587294030086],[117,82,70,-0.3502822290316584],[117,82,71,-0.3501895502964258],[117,82,72,-0.34992416778123636],[117,82,73,-0.35191755453516516],[117,82,74,-0.35267236559777815],[117,82,75,-0.354800480117153],[117,82,76,-0.3548136720129842],[117,82,77,-0.35722442383505515],[117,82,78,-0.3581534432842384],[117,82,79,-0.3553843319221693],[117,83,64,-0.37921871472550767],[117,83,65,-0.3785828468569115],[117,83,66,-0.3761110359736155],[117,83,67,-0.37181463988278524],[117,83,68,-0.36838144674367046],[117,83,69,-0.36578603535562054],[117,83,70,-0.3642950618923588],[117,83,71,-0.3647867764492442],[117,83,72,-0.364520849842903],[117,83,73,-0.3660915859424725],[117,83,74,-0.367279374816303],[117,83,75,-0.3687439638613077],[117,83,76,-0.36892234679730174],[117,83,77,-0.3714978662218085],[117,83,78,-0.37222208383145966],[117,83,79,-0.3698196348912117],[117,84,64,-0.39116535483064835],[117,84,65,-0.39087687645386443],[117,84,66,-0.3880848774580668],[117,84,67,-0.3846559727276394],[117,84,68,-0.38133919507308184],[117,84,69,-0.37882297165638323],[117,84,70,-0.3783222574148875],[117,84,71,-0.3792023815373816],[117,84,72,-0.3784059746796839],[117,84,73,-0.3793234408574344],[117,84,74,-0.3809169988015002],[117,84,75,-0.38228127515591903],[117,84,76,-0.38330264438627826],[117,84,77,-0.3851819010381092],[117,84,78,-0.38625445402516867],[117,84,79,-0.383552251557225],[117,85,64,-0.40728883153892126],[117,85,65,-0.4077680896277171],[117,85,66,-0.4061550736688221],[117,85,67,-0.40286967630226866],[117,85,68,-0.39956516931654895],[117,85,69,-0.397623328381128],[117,85,70,-0.39771199850274264],[117,85,71,-0.39822545585361946],[117,85,72,-0.3971509820179406],[117,85,73,-0.3973111043633253],[117,85,74,-0.3992195037655488],[117,85,75,-0.3998544502944797],[117,85,76,-0.4007090590785154],[117,85,77,-0.40152067706434214],[117,85,78,-0.40034993061353946],[117,85,79,-0.39766171430851033],[117,86,64,-0.4203357625165111],[117,86,65,-0.42110423770186156],[117,86,66,-0.4192807563233222],[117,86,67,-0.4161821626364915],[117,86,68,-0.41273671835301035],[117,86,69,-0.41089468864848205],[117,86,70,-0.41129384475844366],[117,86,71,-0.41088657069230794],[117,86,72,-0.41047530487078693],[117,86,73,-0.410387072821645],[117,86,74,-0.41201340184567964],[117,86,75,-0.4127786182144394],[117,86,76,-0.414000725943479],[117,86,77,-0.41476062321129525],[117,86,78,-0.4135457359766879],[117,86,79,-0.41071009242793644],[117,87,64,-0.43017537239774273],[117,87,65,-0.4313248901411958],[117,87,66,-0.4301937121821683],[117,87,67,-0.42663524738582914],[117,87,68,-0.4237981280961219],[117,87,69,-0.42141022436798253],[117,87,70,-0.4212958939219425],[117,87,71,-0.4207850920548392],[117,87,72,-0.4206804442019185],[117,87,73,-0.4208603687384783],[117,87,74,-0.42191352382241215],[117,87,75,-0.4237409320208287],[117,87,76,-0.424832572637497],[117,87,77,-0.42577135862598875],[117,87,78,-0.424300177426255],[117,87,79,-0.4209041188773496],[117,88,64,-0.4423010713246298],[117,88,65,-0.44337599560160007],[117,88,66,-0.4425916588385551],[117,88,67,-0.4392488440613669],[117,88,68,-0.4364242968391715],[117,88,69,-0.4343570286357077],[117,88,70,-0.43372637785910584],[117,88,71,-0.4328614288809589],[117,88,72,-0.43304846817274045],[117,88,73,-0.43300412941387667],[117,88,74,-0.43427356068461787],[117,88,75,-0.43630259345531025],[117,88,76,-0.4368391985471119],[117,88,77,-0.4376859203314198],[117,88,78,-0.436954273912157],[117,88,79,-0.4332414069125773],[117,89,64,-0.4543001393261687],[117,89,65,-0.4555584406749439],[117,89,66,-0.4546910747649785],[117,89,67,-0.4514543972519134],[117,89,68,-0.4484489319263665],[117,89,69,-0.44626702767719645],[117,89,70,-0.44591860722406096],[117,89,71,-0.44533469824380345],[117,89,72,-0.44503179782546265],[117,89,73,-0.4449762596448623],[117,89,74,-0.4463666743831353],[117,89,75,-0.44839453130056983],[117,89,76,-0.44866132171042555],[117,89,77,-0.44931379038930486],[117,89,78,-0.4488732603007452],[117,89,79,-0.44567851014737603],[117,90,64,-0.4583333333333333],[117,90,65,-0.4583333333333333],[117,90,66,-0.4583333333333333],[117,90,67,-0.4583333333333333],[117,90,68,-0.4583333333333333],[117,90,69,-0.4583333333333333],[117,90,70,-0.4583333333333333],[117,90,71,-0.4583333333333333],[117,90,72,-0.45776760296472224],[117,90,73,-0.45812956650266956],[117,90,74,-0.4583333333333333],[117,90,75,-0.4583333333333333],[117,90,76,-0.4583333333333333],[117,90,77,-0.4583333333333333],[117,90,78,-0.4583333333333333],[117,90,79,-0.4583333333333333],[117,91,64,-0.4583333333333333],[117,91,65,-0.4583333333333333],[117,91,66,-0.4583333333333333],[117,91,67,-0.4583333333333333],[117,91,68,-0.4583333333333333],[117,91,69,-0.4583333333333333],[117,91,70,-0.4583333333333333],[117,91,71,-0.4583333333333333],[117,91,72,-0.4583333333333333],[117,91,73,-0.4583333333333333],[117,91,74,-0.4583333333333333],[117,91,75,-0.4583333333333333],[117,91,76,-0.4583333333333333],[117,91,77,-0.4583333333333333],[117,91,78,-0.4583333333333333],[117,91,79,-0.4583333333333333],[117,92,64,-0.4583333333333333],[117,92,65,-0.4583333333333333],[117,92,66,-0.4583333333333333],[117,92,67,-0.4583333333333333],[117,92,68,-0.4583333333333333],[117,92,69,-0.4583333333333333],[117,92,70,-0.4583333333333333],[117,92,71,-0.4583333333333333],[117,92,72,-0.4583333333333333],[117,92,73,-0.4583333333333333],[117,92,74,-0.4583333333333333],[117,92,75,-0.4583333333333333],[117,92,76,-0.4583333333333333],[117,92,77,-0.4583333333333333],[117,92,78,-0.4583333333333333],[117,92,79,-0.4583333333333333],[117,93,64,-0.4583333333333333],[117,93,65,-0.4583333333333333],[117,93,66,-0.4583333333333333],[117,93,67,-0.4583333333333333],[117,93,68,-0.4583333333333333],[117,93,69,-0.4583333333333333],[117,93,70,-0.4583333333333333],[117,93,71,-0.4583333333333333],[117,93,72,-0.4583333333333333],[117,93,73,-0.4583333333333333],[117,93,74,-0.4583333333333333],[117,93,75,-0.4583333333333333],[117,93,76,-0.4583333333333333],[117,93,77,-0.4583333333333333],[117,93,78,-0.4583333333333333],[117,93,79,-0.4583333333333333],[117,94,64,-0.4583333333333333],[117,94,65,-0.4583333333333333],[117,94,66,-0.4583333333333333],[117,94,67,-0.4583333333333333],[117,94,68,-0.4583333333333333],[117,94,69,-0.4583333333333333],[117,94,70,-0.4583333333333333],[117,94,71,-0.4583333333333333],[117,94,72,-0.4583333333333333],[117,94,73,-0.4583333333333333],[117,94,74,-0.4583333333333333],[117,94,75,-0.4583333333333333],[117,94,76,-0.4583333333333333],[117,94,77,-0.4583333333333333],[117,94,78,-0.4583333333333333],[117,94,79,-0.4583333333333333],[117,95,64,-0.4583333333333333],[117,95,65,-0.4583333333333333],[117,95,66,-0.4583333333333333],[117,95,67,-0.4583333333333333],[117,95,68,-0.4583333333333333],[117,95,69,-0.4583333333333333],[117,95,70,-0.4583333333333333],[117,95,71,-0.4583333333333333],[117,95,72,-0.4583333333333333],[117,95,73,-0.4583333333333333],[117,95,74,-0.4583333333333333],[117,95,75,-0.4583333333333333],[117,95,76,-0.4583333333333333],[117,95,77,-0.4583333333333333],[117,95,78,-0.4583333333333333],[117,95,79,-0.4583333333333333],[117,96,64,-0.4583333333333333],[117,96,65,-0.4583333333333333],[117,96,66,-0.4583333333333333],[117,96,67,-0.4583333333333333],[117,96,68,-0.4583333333333333],[117,96,69,-0.4583333333333333],[117,96,70,-0.4583333333333333],[117,96,71,-0.4583333333333333],[117,96,72,-0.4583333333333333],[117,96,73,-0.4583333333333333],[117,96,74,-0.4583333333333333],[117,96,75,-0.4583333333333333],[117,96,76,-0.4583333333333333],[117,96,77,-0.4583333333333333],[117,96,78,-0.4583333333333333],[117,96,79,-0.4583333333333333],[117,97,64,-0.4583333333333333],[117,97,65,-0.4583333333333333],[117,97,66,-0.4583333333333333],[117,97,67,-0.4583333333333333],[117,97,68,-0.4583333333333333],[117,97,69,-0.4583333333333333],[117,97,70,-0.4583333333333333],[117,97,71,-0.4583333333333333],[117,97,72,-0.4583333333333333],[117,97,73,-0.4583333333333333],[117,97,74,-0.4583333333333333],[117,97,75,-0.4583333333333333],[117,97,76,-0.4583333333333333],[117,97,77,-0.4583333333333333],[117,97,78,-0.4583333333333333],[117,97,79,-0.4583333333333333],[117,98,64,-0.4583333333333333],[117,98,65,-0.4583333333333333],[117,98,66,-0.4583333333333333],[117,98,67,-0.4583333333333333],[117,98,68,-0.4583333333333333],[117,98,69,-0.4583333333333333],[117,98,70,-0.4583333333333333],[117,98,71,-0.4583333333333333],[117,98,72,-0.4583333333333333],[117,98,73,-0.4583333333333333],[117,98,74,-0.4583333333333333],[117,98,75,-0.4583333333333333],[117,98,76,-0.4583333333333333],[117,98,77,-0.4583333333333333],[117,98,78,-0.4583333333333333],[117,98,79,-0.4583333333333333],[117,99,64,-0.4583333333333333],[117,99,65,-0.4583333333333333],[117,99,66,-0.4583333333333333],[117,99,67,-0.4583333333333333],[117,99,68,-0.4583333333333333],[117,99,69,-0.4583333333333333],[117,99,70,-0.4583333333333333],[117,99,71,-0.4583333333333333],[117,99,72,-0.4583333333333333],[117,99,73,-0.4583333333333333],[117,99,74,-0.4583333333333333],[117,99,75,-0.4583333333333333],[117,99,76,-0.4583333333333333],[117,99,77,-0.4583333333333333],[117,99,78,-0.4583333333333333],[117,99,79,-0.4583333333333333],[117,100,64,-0.4583333333333333],[117,100,65,-0.4583333333333333],[117,100,66,-0.4583333333333333],[117,100,67,-0.4583333333333333],[117,100,68,-0.4583333333333333],[117,100,69,-0.4583333333333333],[117,100,70,-0.4583333333333333],[117,100,71,-0.4583333333333333],[117,100,72,-0.4583333333333333],[117,100,73,-0.4583333333333333],[117,100,74,-0.4583333333333333],[117,100,75,-0.4583333333333333],[117,100,76,-0.4583333333333333],[117,100,77,-0.4583333333333333],[117,100,78,-0.4583333333333333],[117,100,79,-0.4583333333333333],[117,101,64,-0.4583333333333333],[117,101,65,-0.4583333333333333],[117,101,66,-0.4583333333333333],[117,101,67,-0.4583333333333333],[117,101,68,-0.4583333333333333],[117,101,69,-0.4583333333333333],[117,101,70,-0.4583333333333333],[117,101,71,-0.4583333333333333],[117,101,72,-0.4583333333333333],[117,101,73,-0.4583333333333333],[117,101,74,-0.4583333333333333],[117,101,75,-0.4583333333333333],[117,101,76,-0.4583333333333333],[117,101,77,-0.4583333333333333],[117,101,78,-0.4583333333333333],[117,101,79,-0.4583333333333333],[117,102,64,-0.4583333333333333],[117,102,65,-0.4583333333333333],[117,102,66,-0.4583333333333333],[117,102,67,-0.4583333333333333],[117,102,68,-0.4583333333333333],[117,102,69,-0.4583333333333333],[117,102,70,-0.4583333333333333],[117,102,71,-0.4583333333333333],[117,102,72,-0.4583333333333333],[117,102,73,-0.4583333333333333],[117,102,74,-0.4583333333333333],[117,102,75,-0.4583333333333333],[117,102,76,-0.4583333333333333],[117,102,77,-0.4583333333333333],[117,102,78,-0.4583333333333333],[117,102,79,-0.4583333333333333],[117,103,64,-0.4583333333333333],[117,103,65,-0.4583333333333333],[117,103,66,-0.4583333333333333],[117,103,67,-0.4583333333333333],[117,103,68,-0.4583333333333333],[117,103,69,-0.4583333333333333],[117,103,70,-0.4583333333333333],[117,103,71,-0.4583333333333333],[117,103,72,-0.4583333333333333],[117,103,73,-0.4583333333333333],[117,103,74,-0.4583333333333333],[117,103,75,-0.4583333333333333],[117,103,76,-0.4583333333333333],[117,103,77,-0.4583333333333333],[117,103,78,-0.4583333333333333],[117,103,79,-0.4583333333333333],[117,104,64,-0.4583333333333333],[117,104,65,-0.4583333333333333],[117,104,66,-0.4583333333333333],[117,104,67,-0.4583333333333333],[117,104,68,-0.4583333333333333],[117,104,69,-0.4583333333333333],[117,104,70,-0.4583333333333333],[117,104,71,-0.4583333333333333],[117,104,72,-0.4583333333333333],[117,104,73,-0.4583333333333333],[117,104,74,-0.4583333333333333],[117,104,75,-0.4583333333333333],[117,104,76,-0.4583333333333333],[117,104,77,-0.4583333333333333],[117,104,78,-0.4583333333333333],[117,104,79,-0.4583333333333333],[117,105,64,-0.4583333333333333],[117,105,65,-0.4583333333333333],[117,105,66,-0.4583333333333333],[117,105,67,-0.4583333333333333],[117,105,68,-0.4583333333333333],[117,105,69,-0.4583333333333333],[117,105,70,-0.4583333333333333],[117,105,71,-0.4583333333333333],[117,105,72,-0.4583333333333333],[117,105,73,-0.4583333333333333],[117,105,74,-0.4583333333333333],[117,105,75,-0.4583333333333333],[117,105,76,-0.4583333333333333],[117,105,77,-0.4583333333333333],[117,105,78,-0.4583333333333333],[117,105,79,-0.4583333333333333],[117,106,64,-0.4583333333333333],[117,106,65,-0.4583333333333333],[117,106,66,-0.4583333333333333],[117,106,67,-0.4583333333333333],[117,106,68,-0.4583333333333333],[117,106,69,-0.4583333333333333],[117,106,70,-0.4583333333333333],[117,106,71,-0.4583333333333333],[117,106,72,-0.4583333333333333],[117,106,73,-0.4583333333333333],[117,106,74,-0.4583333333333333],[117,106,75,-0.4583333333333333],[117,106,76,-0.4583333333333333],[117,106,77,-0.4583333333333333],[117,106,78,-0.4583333333333333],[117,106,79,-0.4583333333333333],[117,107,64,-0.4583333333333333],[117,107,65,-0.4583333333333333],[117,107,66,-0.4583333333333333],[117,107,67,-0.4583333333333333],[117,107,68,-0.4583333333333333],[117,107,69,-0.4583333333333333],[117,107,70,-0.4583333333333333],[117,107,71,-0.4583333333333333],[117,107,72,-0.4583333333333333],[117,107,73,-0.4583333333333333],[117,107,74,-0.4583333333333333],[117,107,75,-0.4583333333333333],[117,107,76,-0.4583333333333333],[117,107,77,-0.4583333333333333],[117,107,78,-0.4583333333333333],[117,107,79,-0.4583333333333333],[117,108,64,-0.4583333333333333],[117,108,65,-0.4583333333333333],[117,108,66,-0.4583333333333333],[117,108,67,-0.4583333333333333],[117,108,68,-0.4583333333333333],[117,108,69,-0.4583333333333333],[117,108,70,-0.4583333333333333],[117,108,71,-0.4583333333333333],[117,108,72,-0.4583333333333333],[117,108,73,-0.4583333333333333],[117,108,74,-0.4583333333333333],[117,108,75,-0.4583333333333333],[117,108,76,-0.4583333333333333],[117,108,77,-0.4583333333333333],[117,108,78,-0.4583333333333333],[117,108,79,-0.4583333333333333],[117,109,64,-0.4583333333333333],[117,109,65,-0.4583333333333333],[117,109,66,-0.4583333333333333],[117,109,67,-0.4583333333333333],[117,109,68,-0.4583333333333333],[117,109,69,-0.4583333333333333],[117,109,70,-0.4583333333333333],[117,109,71,-0.4583333333333333],[117,109,72,-0.4583333333333333],[117,109,73,-0.4583333333333333],[117,109,74,-0.4583333333333333],[117,109,75,-0.4583333333333333],[117,109,76,-0.4583333333333333],[117,109,77,-0.4583333333333333],[117,109,78,-0.4583333333333333],[117,109,79,-0.4583333333333333],[117,110,64,-0.4583333333333333],[117,110,65,-0.4583333333333333],[117,110,66,-0.4583333333333333],[117,110,67,-0.4583333333333333],[117,110,68,-0.4583333333333333],[117,110,69,-0.4583333333333333],[117,110,70,-0.4583333333333333],[117,110,71,-0.4583333333333333],[117,110,72,-0.4583333333333333],[117,110,73,-0.4583333333333333],[117,110,74,-0.4583333333333333],[117,110,75,-0.4583333333333333],[117,110,76,-0.4583333333333333],[117,110,77,-0.4583333333333333],[117,110,78,-0.4583333333333333],[117,110,79,-0.4583333333333333],[117,111,64,-0.4583333333333333],[117,111,65,-0.4583333333333333],[117,111,66,-0.4583333333333333],[117,111,67,-0.4583333333333333],[117,111,68,-0.4583333333333333],[117,111,69,-0.4583333333333333],[117,111,70,-0.4583333333333333],[117,111,71,-0.4583333333333333],[117,111,72,-0.4583333333333333],[117,111,73,-0.4583333333333333],[117,111,74,-0.4583333333333333],[117,111,75,-0.4583333333333333],[117,111,76,-0.4583333333333333],[117,111,77,-0.4583333333333333],[117,111,78,-0.4583333333333333],[117,111,79,-0.4583333333333333],[117,112,64,-0.4583333333333333],[117,112,65,-0.4583333333333333],[117,112,66,-0.4583333333333333],[117,112,67,-0.4583333333333333],[117,112,68,-0.4583333333333333],[117,112,69,-0.4583333333333333],[117,112,70,-0.4583333333333333],[117,112,71,-0.4583333333333333],[117,112,72,-0.4583333333333333],[117,112,73,-0.4583333333333333],[117,112,74,-0.4583333333333333],[117,112,75,-0.4583333333333333],[117,112,76,-0.4583333333333333],[117,112,77,-0.4583333333333333],[117,112,78,-0.4583333333333333],[117,112,79,-0.4583333333333333],[117,113,64,-0.4583333333333333],[117,113,65,-0.4583333333333333],[117,113,66,-0.4583333333333333],[117,113,67,-0.4583333333333333],[117,113,68,-0.4583333333333333],[117,113,69,-0.4583333333333333],[117,113,70,-0.4583333333333333],[117,113,71,-0.4583333333333333],[117,113,72,-0.4583333333333333],[117,113,73,-0.4583333333333333],[117,113,74,-0.4583333333333333],[117,113,75,-0.4583333333333333],[117,113,76,-0.4583333333333333],[117,113,77,-0.4583333333333333],[117,113,78,-0.4583333333333333],[117,113,79,-0.4583333333333333],[117,114,64,-0.4583333333333333],[117,114,65,-0.4583333333333333],[117,114,66,-0.4583333333333333],[117,114,67,-0.4583333333333333],[117,114,68,-0.4583333333333333],[117,114,69,-0.4583333333333333],[117,114,70,-0.4583333333333333],[117,114,71,-0.4583333333333333],[117,114,72,-0.4583333333333333],[117,114,73,-0.4583333333333333],[117,114,74,-0.4583333333333333],[117,114,75,-0.4583333333333333],[117,114,76,-0.4583333333333333],[117,114,77,-0.4583333333333333],[117,114,78,-0.4583333333333333],[117,114,79,-0.4583333333333333],[117,115,64,-0.4583333333333333],[117,115,65,-0.4583333333333333],[117,115,66,-0.4583333333333333],[117,115,67,-0.4583333333333333],[117,115,68,-0.4583333333333333],[117,115,69,-0.4583333333333333],[117,115,70,-0.4583333333333333],[117,115,71,-0.4583333333333333],[117,115,72,-0.4583333333333333],[117,115,73,-0.4583333333333333],[117,115,74,-0.4583333333333333],[117,115,75,-0.4583333333333333],[117,115,76,-0.4583333333333333],[117,115,77,-0.4583333333333333],[117,115,78,-0.4583333333333333],[117,115,79,-0.4583333333333333],[117,116,64,-0.4583333333333333],[117,116,65,-0.4583333333333333],[117,116,66,-0.4583333333333333],[117,116,67,-0.4583333333333333],[117,116,68,-0.4583333333333333],[117,116,69,-0.4583333333333333],[117,116,70,-0.4583333333333333],[117,116,71,-0.4583333333333333],[117,116,72,-0.4583333333333333],[117,116,73,-0.4583333333333333],[117,116,74,-0.4583333333333333],[117,116,75,-0.4583333333333333],[117,116,76,-0.4583333333333333],[117,116,77,-0.4583333333333333],[117,116,78,-0.4583333333333333],[117,116,79,-0.4583333333333333],[117,117,64,-0.4583333333333333],[117,117,65,-0.4583333333333333],[117,117,66,-0.4583333333333333],[117,117,67,-0.4583333333333333],[117,117,68,-0.4583333333333333],[117,117,69,-0.4583333333333333],[117,117,70,-0.4583333333333333],[117,117,71,-0.4583333333333333],[117,117,72,-0.4583333333333333],[117,117,73,-0.4583333333333333],[117,117,74,-0.4583333333333333],[117,117,75,-0.4583333333333333],[117,117,76,-0.4583333333333333],[117,117,77,-0.4583333333333333],[117,117,78,-0.4583333333333333],[117,117,79,-0.4583333333333333],[117,118,64,-0.4583333333333333],[117,118,65,-0.4583333333333333],[117,118,66,-0.4583333333333333],[117,118,67,-0.4583333333333333],[117,118,68,-0.4583333333333333],[117,118,69,-0.4583333333333333],[117,118,70,-0.4583333333333333],[117,118,71,-0.4583333333333333],[117,118,72,-0.4583333333333333],[117,118,73,-0.4583333333333333],[117,118,74,-0.4583333333333333],[117,118,75,-0.4583333333333333],[117,118,76,-0.4583333333333333],[117,118,77,-0.4583333333333333],[117,118,78,-0.4583333333333333],[117,118,79,-0.4583333333333333],[117,119,64,-0.4583333333333333],[117,119,65,-0.4583333333333333],[117,119,66,-0.4583333333333333],[117,119,67,-0.4583333333333333],[117,119,68,-0.4583333333333333],[117,119,69,-0.4583333333333333],[117,119,70,-0.4583333333333333],[117,119,71,-0.4583333333333333],[117,119,72,-0.4583333333333333],[117,119,73,-0.4583333333333333],[117,119,74,-0.4583333333333333],[117,119,75,-0.4583333333333333],[117,119,76,-0.4583333333333333],[117,119,77,-0.4583333333333333],[117,119,78,-0.4583333333333333],[117,119,79,-0.4583333333333333],[117,120,64,-0.4583333333333333],[117,120,65,-0.4583333333333333],[117,120,66,-0.4583333333333333],[117,120,67,-0.4583333333333333],[117,120,68,-0.4583333333333333],[117,120,69,-0.4583333333333333],[117,120,70,-0.4583333333333333],[117,120,71,-0.4583333333333333],[117,120,72,-0.4583333333333333],[117,120,73,-0.4583333333333333],[117,120,74,-0.4583333333333333],[117,120,75,-0.4583333333333333],[117,120,76,-0.4583333333333333],[117,120,77,-0.4583333333333333],[117,120,78,-0.4583333333333333],[117,120,79,-0.4583333333333333],[117,121,64,-0.4583333333333333],[117,121,65,-0.4583333333333333],[117,121,66,-0.4583333333333333],[117,121,67,-0.4583333333333333],[117,121,68,-0.4583333333333333],[117,121,69,-0.4583333333333333],[117,121,70,-0.4583333333333333],[117,121,71,-0.4583333333333333],[117,121,72,-0.4583333333333333],[117,121,73,-0.4583333333333333],[117,121,74,-0.4583333333333333],[117,121,75,-0.4583333333333333],[117,121,76,-0.4583333333333333],[117,121,77,-0.4583333333333333],[117,121,78,-0.4583333333333333],[117,121,79,-0.4583333333333333],[117,122,64,-0.4583333333333333],[117,122,65,-0.4583333333333333],[117,122,66,-0.4583333333333333],[117,122,67,-0.4583333333333333],[117,122,68,-0.4583333333333333],[117,122,69,-0.4583333333333333],[117,122,70,-0.4583333333333333],[117,122,71,-0.4583333333333333],[117,122,72,-0.4583333333333333],[117,122,73,-0.4583333333333333],[117,122,74,-0.4583333333333333],[117,122,75,-0.4583333333333333],[117,122,76,-0.4583333333333333],[117,122,77,-0.4583333333333333],[117,122,78,-0.4583333333333333],[117,122,79,-0.4583333333333333],[117,123,64,-0.4583333333333333],[117,123,65,-0.4583333333333333],[117,123,66,-0.4583333333333333],[117,123,67,-0.4583333333333333],[117,123,68,-0.4583333333333333],[117,123,69,-0.4583333333333333],[117,123,70,-0.4583333333333333],[117,123,71,-0.4583333333333333],[117,123,72,-0.4583333333333333],[117,123,73,-0.4583333333333333],[117,123,74,-0.4583333333333333],[117,123,75,-0.4583333333333333],[117,123,76,-0.4583333333333333],[117,123,77,-0.4583333333333333],[117,123,78,-0.4583333333333333],[117,123,79,-0.4583333333333333],[117,124,64,-0.4583333333333333],[117,124,65,-0.4583333333333333],[117,124,66,-0.4583333333333333],[117,124,67,-0.4583333333333333],[117,124,68,-0.4583333333333333],[117,124,69,-0.4583333333333333],[117,124,70,-0.4583333333333333],[117,124,71,-0.4583333333333333],[117,124,72,-0.4583333333333333],[117,124,73,-0.4583333333333333],[117,124,74,-0.4583333333333333],[117,124,75,-0.4583333333333333],[117,124,76,-0.4583333333333333],[117,124,77,-0.4583333333333333],[117,124,78,-0.4583333333333333],[117,124,79,-0.4583333333333333],[117,125,64,-0.4583333333333333],[117,125,65,-0.4583333333333333],[117,125,66,-0.4583333333333333],[117,125,67,-0.4583333333333333],[117,125,68,-0.4583333333333333],[117,125,69,-0.4583333333333333],[117,125,70,-0.4583333333333333],[117,125,71,-0.4583333333333333],[117,125,72,-0.4583333333333333],[117,125,73,-0.4583333333333333],[117,125,74,-0.4583333333333333],[117,125,75,-0.4583333333333333],[117,125,76,-0.4583333333333333],[117,125,77,-0.4583333333333333],[117,125,78,-0.4583333333333333],[117,125,79,-0.4583333333333333],[117,126,64,-0.4583333333333333],[117,126,65,-0.4583333333333333],[117,126,66,-0.4583333333333333],[117,126,67,-0.4583333333333333],[117,126,68,-0.4583333333333333],[117,126,69,-0.4583333333333333],[117,126,70,-0.4583333333333333],[117,126,71,-0.4583333333333333],[117,126,72,-0.4583333333333333],[117,126,73,-0.4583333333333333],[117,126,74,-0.4583333333333333],[117,126,75,-0.4583333333333333],[117,126,76,-0.4583333333333333],[117,126,77,-0.4583333333333333],[117,126,78,-0.4583333333333333],[117,126,79,-0.4583333333333333],[117,127,64,-0.4583333333333333],[117,127,65,-0.4583333333333333],[117,127,66,-0.4583333333333333],[117,127,67,-0.4583333333333333],[117,127,68,-0.4583333333333333],[117,127,69,-0.4583333333333333],[117,127,70,-0.4583333333333333],[117,127,71,-0.4583333333333333],[117,127,72,-0.4583333333333333],[117,127,73,-0.4583333333333333],[117,127,74,-0.4583333333333333],[117,127,75,-0.4583333333333333],[117,127,76,-0.4583333333333333],[117,127,77,-0.4583333333333333],[117,127,78,-0.4583333333333333],[117,127,79,-0.4583333333333333],[117,128,64,-0.4583333333333333],[117,128,65,-0.4583333333333333],[117,128,66,-0.4583333333333333],[117,128,67,-0.4583333333333333],[117,128,68,-0.4583333333333333],[117,128,69,-0.4583333333333333],[117,128,70,-0.4583333333333333],[117,128,71,-0.4583333333333333],[117,128,72,-0.4583333333333333],[117,128,73,-0.4583333333333333],[117,128,74,-0.4583333333333333],[117,128,75,-0.4583333333333333],[117,128,76,-0.4583333333333333],[117,128,77,-0.4583333333333333],[117,128,78,-0.4583333333333333],[117,128,79,-0.4583333333333333],[117,129,64,-0.4583333333333333],[117,129,65,-0.4583333333333333],[117,129,66,-0.4583333333333333],[117,129,67,-0.4583333333333333],[117,129,68,-0.4583333333333333],[117,129,69,-0.4583333333333333],[117,129,70,-0.4583333333333333],[117,129,71,-0.4583333333333333],[117,129,72,-0.4583333333333333],[117,129,73,-0.4583333333333333],[117,129,74,-0.4583333333333333],[117,129,75,-0.4583333333333333],[117,129,76,-0.4583333333333333],[117,129,77,-0.4583333333333333],[117,129,78,-0.4583333333333333],[117,129,79,-0.4583333333333333],[117,130,64,-0.4583333333333333],[117,130,65,-0.4583333333333333],[117,130,66,-0.4583333333333333],[117,130,67,-0.4583333333333333],[117,130,68,-0.4583333333333333],[117,130,69,-0.4583333333333333],[117,130,70,-0.4583333333333333],[117,130,71,-0.4583333333333333],[117,130,72,-0.4583333333333333],[117,130,73,-0.4583333333333333],[117,130,74,-0.4583333333333333],[117,130,75,-0.4583333333333333],[117,130,76,-0.4583333333333333],[117,130,77,-0.4583333333333333],[117,130,78,-0.4583333333333333],[117,130,79,-0.4583333333333333],[117,131,64,-0.4583333333333333],[117,131,65,-0.4583333333333333],[117,131,66,-0.4583333333333333],[117,131,67,-0.4583333333333333],[117,131,68,-0.4583333333333333],[117,131,69,-0.4583333333333333],[117,131,70,-0.4583333333333333],[117,131,71,-0.4583333333333333],[117,131,72,-0.4583333333333333],[117,131,73,-0.4583333333333333],[117,131,74,-0.4583333333333333],[117,131,75,-0.4583333333333333],[117,131,76,-0.4583333333333333],[117,131,77,-0.4583333333333333],[117,131,78,-0.4583333333333333],[117,131,79,-0.4583333333333333],[117,132,64,-0.4583333333333333],[117,132,65,-0.4583333333333333],[117,132,66,-0.4583333333333333],[117,132,67,-0.4583333333333333],[117,132,68,-0.4583333333333333],[117,132,69,-0.4583333333333333],[117,132,70,-0.4583333333333333],[117,132,71,-0.4583333333333333],[117,132,72,-0.4583333333333333],[117,132,73,-0.4583333333333333],[117,132,74,-0.4583333333333333],[117,132,75,-0.4583333333333333],[117,132,76,-0.4583333333333333],[117,132,77,-0.4583333333333333],[117,132,78,-0.4583333333333333],[117,132,79,-0.4583333333333333],[117,133,64,-0.4583333333333333],[117,133,65,-0.4583333333333333],[117,133,66,-0.4583333333333333],[117,133,67,-0.4583333333333333],[117,133,68,-0.4583333333333333],[117,133,69,-0.4583333333333333],[117,133,70,-0.4583333333333333],[117,133,71,-0.4583333333333333],[117,133,72,-0.4583333333333333],[117,133,73,-0.4583333333333333],[117,133,74,-0.4583333333333333],[117,133,75,-0.4583333333333333],[117,133,76,-0.4583333333333333],[117,133,77,-0.4583333333333333],[117,133,78,-0.4583333333333333],[117,133,79,-0.4583333333333333],[117,134,64,-0.4583333333333333],[117,134,65,-0.4583333333333333],[117,134,66,-0.4583333333333333],[117,134,67,-0.4583333333333333],[117,134,68,-0.4583333333333333],[117,134,69,-0.4583333333333333],[117,134,70,-0.4583333333333333],[117,134,71,-0.4583333333333333],[117,134,72,-0.4583333333333333],[117,134,73,-0.4583333333333333],[117,134,74,-0.4583333333333333],[117,134,75,-0.4583333333333333],[117,134,76,-0.4583333333333333],[117,134,77,-0.4583333333333333],[117,134,78,-0.4583333333333333],[117,134,79,-0.4583333333333333],[117,135,64,-0.4583333333333333],[117,135,65,-0.4583333333333333],[117,135,66,-0.4583333333333333],[117,135,67,-0.4583333333333333],[117,135,68,-0.4583333333333333],[117,135,69,-0.4583333333333333],[117,135,70,-0.4583333333333333],[117,135,71,-0.4583333333333333],[117,135,72,-0.4583333333333333],[117,135,73,-0.4583333333333333],[117,135,74,-0.4583333333333333],[117,135,75,-0.4583333333333333],[117,135,76,-0.4583333333333333],[117,135,77,-0.4583333333333333],[117,135,78,-0.4583333333333333],[117,135,79,-0.4583333333333333],[117,136,64,-0.4583333333333333],[117,136,65,-0.4583333333333333],[117,136,66,-0.4583333333333333],[117,136,67,-0.4583333333333333],[117,136,68,-0.4583333333333333],[117,136,69,-0.4583333333333333],[117,136,70,-0.4583333333333333],[117,136,71,-0.4583333333333333],[117,136,72,-0.4583333333333333],[117,136,73,-0.4583333333333333],[117,136,74,-0.4583333333333333],[117,136,75,-0.4583333333333333],[117,136,76,-0.4583333333333333],[117,136,77,-0.4583333333333333],[117,136,78,-0.4583333333333333],[117,136,79,-0.4583333333333333],[117,137,64,-0.4583333333333333],[117,137,65,-0.4583333333333333],[117,137,66,-0.4583333333333333],[117,137,67,-0.4583333333333333],[117,137,68,-0.4583333333333333],[117,137,69,-0.4583333333333333],[117,137,70,-0.4583333333333333],[117,137,71,-0.4583333333333333],[117,137,72,-0.4583333333333333],[117,137,73,-0.4583333333333333],[117,137,74,-0.4583333333333333],[117,137,75,-0.4583333333333333],[117,137,76,-0.4583333333333333],[117,137,77,-0.4583333333333333],[117,137,78,-0.4583333333333333],[117,137,79,-0.4583333333333333],[117,138,64,-0.4583333333333333],[117,138,65,-0.4583333333333333],[117,138,66,-0.4583333333333333],[117,138,67,-0.4583333333333333],[117,138,68,-0.4583333333333333],[117,138,69,-0.4583333333333333],[117,138,70,-0.4583333333333333],[117,138,71,-0.4583333333333333],[117,138,72,-0.4583333333333333],[117,138,73,-0.4583333333333333],[117,138,74,-0.4583333333333333],[117,138,75,-0.4583333333333333],[117,138,76,-0.4583333333333333],[117,138,77,-0.4583333333333333],[117,138,78,-0.4583333333333333],[117,138,79,-0.4583333333333333],[117,139,64,-0.4583333333333333],[117,139,65,-0.4583333333333333],[117,139,66,-0.4583333333333333],[117,139,67,-0.4583333333333333],[117,139,68,-0.4583333333333333],[117,139,69,-0.4583333333333333],[117,139,70,-0.4583333333333333],[117,139,71,-0.4583333333333333],[117,139,72,-0.4583333333333333],[117,139,73,-0.4583333333333333],[117,139,74,-0.4583333333333333],[117,139,75,-0.4583333333333333],[117,139,76,-0.4583333333333333],[117,139,77,-0.4583333333333333],[117,139,78,-0.4583333333333333],[117,139,79,-0.4583333333333333],[117,140,64,-0.4583333333333333],[117,140,65,-0.4583333333333333],[117,140,66,-0.4583333333333333],[117,140,67,-0.4583333333333333],[117,140,68,-0.4583333333333333],[117,140,69,-0.4583333333333333],[117,140,70,-0.4583333333333333],[117,140,71,-0.4583333333333333],[117,140,72,-0.4583333333333333],[117,140,73,-0.4583333333333333],[117,140,74,-0.4583333333333333],[117,140,75,-0.4583333333333333],[117,140,76,-0.4583333333333333],[117,140,77,-0.4583333333333333],[117,140,78,-0.4583333333333333],[117,140,79,-0.4583333333333333],[117,141,64,-0.4583333333333333],[117,141,65,-0.4583333333333333],[117,141,66,-0.4583333333333333],[117,141,67,-0.4583333333333333],[117,141,68,-0.4583333333333333],[117,141,69,-0.4583333333333333],[117,141,70,-0.4583333333333333],[117,141,71,-0.4583333333333333],[117,141,72,-0.4583333333333333],[117,141,73,-0.4583333333333333],[117,141,74,-0.4583333333333333],[117,141,75,-0.4583333333333333],[117,141,76,-0.4583333333333333],[117,141,77,-0.4583333333333333],[117,141,78,-0.4583333333333333],[117,141,79,-0.4583333333333333],[117,142,64,-0.4583333333333333],[117,142,65,-0.4583333333333333],[117,142,66,-0.4583333333333333],[117,142,67,-0.4583333333333333],[117,142,68,-0.4583333333333333],[117,142,69,-0.4583333333333333],[117,142,70,-0.4583333333333333],[117,142,71,-0.4583333333333333],[117,142,72,-0.4583333333333333],[117,142,73,-0.4583333333333333],[117,142,74,-0.4583333333333333],[117,142,75,-0.4583333333333333],[117,142,76,-0.4583333333333333],[117,142,77,-0.4583333333333333],[117,142,78,-0.4583333333333333],[117,142,79,-0.4583333333333333],[117,143,64,-0.4583333333333333],[117,143,65,-0.4583333333333333],[117,143,66,-0.4583333333333333],[117,143,67,-0.4583333333333333],[117,143,68,-0.4583333333333333],[117,143,69,-0.4583333333333333],[117,143,70,-0.4583333333333333],[117,143,71,-0.4583333333333333],[117,143,72,-0.4583333333333333],[117,143,73,-0.4583333333333333],[117,143,74,-0.4583333333333333],[117,143,75,-0.4583333333333333],[117,143,76,-0.4583333333333333],[117,143,77,-0.4583333333333333],[117,143,78,-0.4583333333333333],[117,143,79,-0.4583333333333333],[117,144,64,-0.4583333333333333],[117,144,65,-0.4583333333333333],[117,144,66,-0.4583333333333333],[117,144,67,-0.4583333333333333],[117,144,68,-0.4583333333333333],[117,144,69,-0.4583333333333333],[117,144,70,-0.4583333333333333],[117,144,71,-0.4583333333333333],[117,144,72,-0.4583333333333333],[117,144,73,-0.4583333333333333],[117,144,74,-0.4583333333333333],[117,144,75,-0.4583333333333333],[117,144,76,-0.4583333333333333],[117,144,77,-0.4583333333333333],[117,144,78,-0.4583333333333333],[117,144,79,-0.4583333333333333],[117,145,64,-0.4583333333333333],[117,145,65,-0.4583333333333333],[117,145,66,-0.4583333333333333],[117,145,67,-0.4583333333333333],[117,145,68,-0.4583333333333333],[117,145,69,-0.4583333333333333],[117,145,70,-0.4583333333333333],[117,145,71,-0.4583333333333333],[117,145,72,-0.4583333333333333],[117,145,73,-0.4583333333333333],[117,145,74,-0.4583333333333333],[117,145,75,-0.4583333333333333],[117,145,76,-0.4583333333333333],[117,145,77,-0.4583333333333333],[117,145,78,-0.4583333333333333],[117,145,79,-0.4583333333333333],[117,146,64,-0.4583333333333333],[117,146,65,-0.4583333333333333],[117,146,66,-0.4583333333333333],[117,146,67,-0.4583333333333333],[117,146,68,-0.4583333333333333],[117,146,69,-0.4583333333333333],[117,146,70,-0.4583333333333333],[117,146,71,-0.4583333333333333],[117,146,72,-0.4583333333333333],[117,146,73,-0.4583333333333333],[117,146,74,-0.4583333333333333],[117,146,75,-0.4583333333333333],[117,146,76,-0.4583333333333333],[117,146,77,-0.4583333333333333],[117,146,78,-0.4583333333333333],[117,146,79,-0.4583333333333333],[117,147,64,-0.4583333333333333],[117,147,65,-0.4583333333333333],[117,147,66,-0.4583333333333333],[117,147,67,-0.4583333333333333],[117,147,68,-0.4583333333333333],[117,147,69,-0.4583333333333333],[117,147,70,-0.4583333333333333],[117,147,71,-0.4583333333333333],[117,147,72,-0.4583333333333333],[117,147,73,-0.4583333333333333],[117,147,74,-0.4583333333333333],[117,147,75,-0.4583333333333333],[117,147,76,-0.4583333333333333],[117,147,77,-0.4583333333333333],[117,147,78,-0.4583333333333333],[117,147,79,-0.4583333333333333],[117,148,64,-0.4583333333333333],[117,148,65,-0.4583333333333333],[117,148,66,-0.4583333333333333],[117,148,67,-0.4583333333333333],[117,148,68,-0.4583333333333333],[117,148,69,-0.4583333333333333],[117,148,70,-0.4583333333333333],[117,148,71,-0.4583333333333333],[117,148,72,-0.4583333333333333],[117,148,73,-0.4583333333333333],[117,148,74,-0.4583333333333333],[117,148,75,-0.4583333333333333],[117,148,76,-0.4583333333333333],[117,148,77,-0.4583333333333333],[117,148,78,-0.4583333333333333],[117,148,79,-0.4583333333333333],[117,149,64,-0.4583333333333333],[117,149,65,-0.4583333333333333],[117,149,66,-0.4583333333333333],[117,149,67,-0.4583333333333333],[117,149,68,-0.4583333333333333],[117,149,69,-0.4583333333333333],[117,149,70,-0.4583333333333333],[117,149,71,-0.4583333333333333],[117,149,72,-0.4583333333333333],[117,149,73,-0.4583333333333333],[117,149,74,-0.4583333333333333],[117,149,75,-0.4583333333333333],[117,149,76,-0.4583333333333333],[117,149,77,-0.4583333333333333],[117,149,78,-0.4583333333333333],[117,149,79,-0.4583333333333333],[117,150,64,-0.4583333333333333],[117,150,65,-0.4583333333333333],[117,150,66,-0.4583333333333333],[117,150,67,-0.4583333333333333],[117,150,68,-0.4583333333333333],[117,150,69,-0.4583333333333333],[117,150,70,-0.4583333333333333],[117,150,71,-0.4583333333333333],[117,150,72,-0.4583333333333333],[117,150,73,-0.4583333333333333],[117,150,74,-0.4583333333333333],[117,150,75,-0.4583333333333333],[117,150,76,-0.4583333333333333],[117,150,77,-0.4583333333333333],[117,150,78,-0.4583333333333333],[117,150,79,-0.4583333333333333],[117,151,64,-0.4583333333333333],[117,151,65,-0.4583333333333333],[117,151,66,-0.4583333333333333],[117,151,67,-0.4583333333333333],[117,151,68,-0.4583333333333333],[117,151,69,-0.4583333333333333],[117,151,70,-0.4583333333333333],[117,151,71,-0.4583333333333333],[117,151,72,-0.4583333333333333],[117,151,73,-0.4583333333333333],[117,151,74,-0.4583333333333333],[117,151,75,-0.4583333333333333],[117,151,76,-0.4583333333333333],[117,151,77,-0.4583333333333333],[117,151,78,-0.4583333333333333],[117,151,79,-0.4583333333333333],[117,152,64,-0.4583333333333333],[117,152,65,-0.4583333333333333],[117,152,66,-0.4583333333333333],[117,152,67,-0.4583333333333333],[117,152,68,-0.4583333333333333],[117,152,69,-0.4583333333333333],[117,152,70,-0.4583333333333333],[117,152,71,-0.4583333333333333],[117,152,72,-0.4583333333333333],[117,152,73,-0.4583333333333333],[117,152,74,-0.4583333333333333],[117,152,75,-0.4583333333333333],[117,152,76,-0.4583333333333333],[117,152,77,-0.4583333333333333],[117,152,78,-0.4583333333333333],[117,152,79,-0.4583333333333333],[117,153,64,-0.4583333333333333],[117,153,65,-0.4583333333333333],[117,153,66,-0.4583333333333333],[117,153,67,-0.4583333333333333],[117,153,68,-0.4583333333333333],[117,153,69,-0.4583333333333333],[117,153,70,-0.4583333333333333],[117,153,71,-0.4583333333333333],[117,153,72,-0.4583333333333333],[117,153,73,-0.4583333333333333],[117,153,74,-0.4583333333333333],[117,153,75,-0.4583333333333333],[117,153,76,-0.4583333333333333],[117,153,77,-0.4583333333333333],[117,153,78,-0.4583333333333333],[117,153,79,-0.4583333333333333],[117,154,64,-0.4583333333333333],[117,154,65,-0.4583333333333333],[117,154,66,-0.4583333333333333],[117,154,67,-0.4583333333333333],[117,154,68,-0.4583333333333333],[117,154,69,-0.4583333333333333],[117,154,70,-0.4583333333333333],[117,154,71,-0.4583333333333333],[117,154,72,-0.4583333333333333],[117,154,73,-0.4583333333333333],[117,154,74,-0.4583333333333333],[117,154,75,-0.4583333333333333],[117,154,76,-0.4583333333333333],[117,154,77,-0.4583333333333333],[117,154,78,-0.4583333333333333],[117,154,79,-0.4583333333333333],[117,155,64,-0.4583333333333333],[117,155,65,-0.4583333333333333],[117,155,66,-0.4583333333333333],[117,155,67,-0.4583333333333333],[117,155,68,-0.4583333333333333],[117,155,69,-0.4583333333333333],[117,155,70,-0.4583333333333333],[117,155,71,-0.4583333333333333],[117,155,72,-0.4583333333333333],[117,155,73,-0.4583333333333333],[117,155,74,-0.4583333333333333],[117,155,75,-0.4583333333333333],[117,155,76,-0.4583333333333333],[117,155,77,-0.4583333333333333],[117,155,78,-0.4583333333333333],[117,155,79,-0.4583333333333333],[117,156,64,-0.4583333333333333],[117,156,65,-0.4583333333333333],[117,156,66,-0.4583333333333333],[117,156,67,-0.4583333333333333],[117,156,68,-0.4583333333333333],[117,156,69,-0.4583333333333333],[117,156,70,-0.4583333333333333],[117,156,71,-0.4583333333333333],[117,156,72,-0.4583333333333333],[117,156,73,-0.4583333333333333],[117,156,74,-0.4583333333333333],[117,156,75,-0.4583333333333333],[117,156,76,-0.4583333333333333],[117,156,77,-0.4583333333333333],[117,156,78,-0.4583333333333333],[117,156,79,-0.4583333333333333],[117,157,64,-0.4583333333333333],[117,157,65,-0.4583333333333333],[117,157,66,-0.4583333333333333],[117,157,67,-0.4583333333333333],[117,157,68,-0.4583333333333333],[117,157,69,-0.4583333333333333],[117,157,70,-0.4583333333333333],[117,157,71,-0.4583333333333333],[117,157,72,-0.4583333333333333],[117,157,73,-0.4583333333333333],[117,157,74,-0.4583333333333333],[117,157,75,-0.4583333333333333],[117,157,76,-0.4583333333333333],[117,157,77,-0.4583333333333333],[117,157,78,-0.4583333333333333],[117,157,79,-0.4583333333333333],[117,158,64,-0.4583333333333333],[117,158,65,-0.4583333333333333],[117,158,66,-0.4583333333333333],[117,158,67,-0.4583333333333333],[117,158,68,-0.4583333333333333],[117,158,69,-0.4583333333333333],[117,158,70,-0.4583333333333333],[117,158,71,-0.4583333333333333],[117,158,72,-0.4583333333333333],[117,158,73,-0.4583333333333333],[117,158,74,-0.4583333333333333],[117,158,75,-0.4583333333333333],[117,158,76,-0.4583333333333333],[117,158,77,-0.4583333333333333],[117,158,78,-0.4583333333333333],[117,158,79,-0.4583333333333333],[117,159,64,-0.4583333333333333],[117,159,65,-0.4583333333333333],[117,159,66,-0.4583333333333333],[117,159,67,-0.4583333333333333],[117,159,68,-0.4583333333333333],[117,159,69,-0.4583333333333333],[117,159,70,-0.4583333333333333],[117,159,71,-0.4583333333333333],[117,159,72,-0.4583333333333333],[117,159,73,-0.4583333333333333],[117,159,74,-0.4583333333333333],[117,159,75,-0.4583333333333333],[117,159,76,-0.4583333333333333],[117,159,77,-0.4583333333333333],[117,159,78,-0.4583333333333333],[117,159,79,-0.4583333333333333],[117,160,64,-0.4583333333333333],[117,160,65,-0.4583333333333333],[117,160,66,-0.4583333333333333],[117,160,67,-0.4583333333333333],[117,160,68,-0.4583333333333333],[117,160,69,-0.4583333333333333],[117,160,70,-0.4583333333333333],[117,160,71,-0.4583333333333333],[117,160,72,-0.4583333333333333],[117,160,73,-0.4583333333333333],[117,160,74,-0.4583333333333333],[117,160,75,-0.4583333333333333],[117,160,76,-0.4583333333333333],[117,160,77,-0.4583333333333333],[117,160,78,-0.4583333333333333],[117,160,79,-0.4583333333333333],[117,161,64,-0.4583333333333333],[117,161,65,-0.4583333333333333],[117,161,66,-0.4583333333333333],[117,161,67,-0.4583333333333333],[117,161,68,-0.4583333333333333],[117,161,69,-0.4583333333333333],[117,161,70,-0.4583333333333333],[117,161,71,-0.4583333333333333],[117,161,72,-0.4583333333333333],[117,161,73,-0.4583333333333333],[117,161,74,-0.4583333333333333],[117,161,75,-0.4583333333333333],[117,161,76,-0.4583333333333333],[117,161,77,-0.4583333333333333],[117,161,78,-0.4583333333333333],[117,161,79,-0.4583333333333333],[117,162,64,-0.4583333333333333],[117,162,65,-0.4583333333333333],[117,162,66,-0.4583333333333333],[117,162,67,-0.4583333333333333],[117,162,68,-0.4583333333333333],[117,162,69,-0.4583333333333333],[117,162,70,-0.4583333333333333],[117,162,71,-0.4583333333333333],[117,162,72,-0.4583333333333333],[117,162,73,-0.4583333333333333],[117,162,74,-0.4583333333333333],[117,162,75,-0.4583333333333333],[117,162,76,-0.4583333333333333],[117,162,77,-0.4583333333333333],[117,162,78,-0.4583333333333333],[117,162,79,-0.4583333333333333],[117,163,64,-0.4583333333333333],[117,163,65,-0.4583333333333333],[117,163,66,-0.4583333333333333],[117,163,67,-0.4583333333333333],[117,163,68,-0.4583333333333333],[117,163,69,-0.4583333333333333],[117,163,70,-0.4583333333333333],[117,163,71,-0.4583333333333333],[117,163,72,-0.4583333333333333],[117,163,73,-0.4583333333333333],[117,163,74,-0.4583333333333333],[117,163,75,-0.4583333333333333],[117,163,76,-0.4583333333333333],[117,163,77,-0.4583333333333333],[117,163,78,-0.4583333333333333],[117,163,79,-0.4583333333333333],[117,164,64,-0.4583333333333333],[117,164,65,-0.4583333333333333],[117,164,66,-0.4583333333333333],[117,164,67,-0.4583333333333333],[117,164,68,-0.4583333333333333],[117,164,69,-0.4583333333333333],[117,164,70,-0.4583333333333333],[117,164,71,-0.4583333333333333],[117,164,72,-0.4583333333333333],[117,164,73,-0.4583333333333333],[117,164,74,-0.4583333333333333],[117,164,75,-0.4583333333333333],[117,164,76,-0.4583333333333333],[117,164,77,-0.4583333333333333],[117,164,78,-0.4583333333333333],[117,164,79,-0.4583333333333333],[117,165,64,-0.4583333333333333],[117,165,65,-0.4583333333333333],[117,165,66,-0.4583333333333333],[117,165,67,-0.4583333333333333],[117,165,68,-0.4583333333333333],[117,165,69,-0.4583333333333333],[117,165,70,-0.4583333333333333],[117,165,71,-0.4583333333333333],[117,165,72,-0.4583333333333333],[117,165,73,-0.4583333333333333],[117,165,74,-0.4583333333333333],[117,165,75,-0.4583333333333333],[117,165,76,-0.4583333333333333],[117,165,77,-0.4583333333333333],[117,165,78,-0.4583333333333333],[117,165,79,-0.4583333333333333],[117,166,64,-0.4583333333333333],[117,166,65,-0.4583333333333333],[117,166,66,-0.4583333333333333],[117,166,67,-0.4583333333333333],[117,166,68,-0.4583333333333333],[117,166,69,-0.4583333333333333],[117,166,70,-0.4583333333333333],[117,166,71,-0.4583333333333333],[117,166,72,-0.4583333333333333],[117,166,73,-0.4583333333333333],[117,166,74,-0.4583333333333333],[117,166,75,-0.4583333333333333],[117,166,76,-0.4583333333333333],[117,166,77,-0.4583333333333333],[117,166,78,-0.4583333333333333],[117,166,79,-0.4583333333333333],[117,167,64,-0.4583333333333333],[117,167,65,-0.4583333333333333],[117,167,66,-0.4583333333333333],[117,167,67,-0.4583333333333333],[117,167,68,-0.4583333333333333],[117,167,69,-0.4583333333333333],[117,167,70,-0.4583333333333333],[117,167,71,-0.4583333333333333],[117,167,72,-0.4583333333333333],[117,167,73,-0.4583333333333333],[117,167,74,-0.4583333333333333],[117,167,75,-0.4583333333333333],[117,167,76,-0.4583333333333333],[117,167,77,-0.4583333333333333],[117,167,78,-0.4583333333333333],[117,167,79,-0.4583333333333333],[117,168,64,-0.4583333333333333],[117,168,65,-0.4583333333333333],[117,168,66,-0.4583333333333333],[117,168,67,-0.4583333333333333],[117,168,68,-0.4583333333333333],[117,168,69,-0.4583333333333333],[117,168,70,-0.4583333333333333],[117,168,71,-0.4583333333333333],[117,168,72,-0.4583333333333333],[117,168,73,-0.4583333333333333],[117,168,74,-0.4583333333333333],[117,168,75,-0.4583333333333333],[117,168,76,-0.4583333333333333],[117,168,77,-0.4583333333333333],[117,168,78,-0.4583333333333333],[117,168,79,-0.4583333333333333],[117,169,64,-0.4583333333333333],[117,169,65,-0.4583333333333333],[117,169,66,-0.4583333333333333],[117,169,67,-0.4583333333333333],[117,169,68,-0.4583333333333333],[117,169,69,-0.4583333333333333],[117,169,70,-0.4583333333333333],[117,169,71,-0.4583333333333333],[117,169,72,-0.4583333333333333],[117,169,73,-0.4583333333333333],[117,169,74,-0.4583333333333333],[117,169,75,-0.4583333333333333],[117,169,76,-0.4583333333333333],[117,169,77,-0.4583333333333333],[117,169,78,-0.4583333333333333],[117,169,79,-0.4583333333333333],[117,170,64,-0.4583333333333333],[117,170,65,-0.4583333333333333],[117,170,66,-0.4583333333333333],[117,170,67,-0.4583333333333333],[117,170,68,-0.4583333333333333],[117,170,69,-0.4583333333333333],[117,170,70,-0.4583333333333333],[117,170,71,-0.4583333333333333],[117,170,72,-0.4583333333333333],[117,170,73,-0.4583333333333333],[117,170,74,-0.4583333333333333],[117,170,75,-0.4583333333333333],[117,170,76,-0.4583333333333333],[117,170,77,-0.4583333333333333],[117,170,78,-0.4583333333333333],[117,170,79,-0.4583333333333333],[117,171,64,-0.4583333333333333],[117,171,65,-0.4583333333333333],[117,171,66,-0.4583333333333333],[117,171,67,-0.4583333333333333],[117,171,68,-0.4583333333333333],[117,171,69,-0.4583333333333333],[117,171,70,-0.4583333333333333],[117,171,71,-0.4583333333333333],[117,171,72,-0.4583333333333333],[117,171,73,-0.4583333333333333],[117,171,74,-0.4583333333333333],[117,171,75,-0.4583333333333333],[117,171,76,-0.4583333333333333],[117,171,77,-0.4583333333333333],[117,171,78,-0.4583333333333333],[117,171,79,-0.4583333333333333],[117,172,64,-0.4583333333333333],[117,172,65,-0.4583333333333333],[117,172,66,-0.4583333333333333],[117,172,67,-0.4583333333333333],[117,172,68,-0.4583333333333333],[117,172,69,-0.4583333333333333],[117,172,70,-0.4583333333333333],[117,172,71,-0.4583333333333333],[117,172,72,-0.4583333333333333],[117,172,73,-0.4583333333333333],[117,172,74,-0.4583333333333333],[117,172,75,-0.4583333333333333],[117,172,76,-0.4583333333333333],[117,172,77,-0.4583333333333333],[117,172,78,-0.4583333333333333],[117,172,79,-0.4583333333333333],[117,173,64,-0.4583333333333333],[117,173,65,-0.4583333333333333],[117,173,66,-0.4583333333333333],[117,173,67,-0.4583333333333333],[117,173,68,-0.4583333333333333],[117,173,69,-0.4583333333333333],[117,173,70,-0.4583333333333333],[117,173,71,-0.4583333333333333],[117,173,72,-0.4583333333333333],[117,173,73,-0.4583333333333333],[117,173,74,-0.4583333333333333],[117,173,75,-0.4583333333333333],[117,173,76,-0.4583333333333333],[117,173,77,-0.4583333333333333],[117,173,78,-0.4583333333333333],[117,173,79,-0.4583333333333333],[117,174,64,-0.4583333333333333],[117,174,65,-0.4583333333333333],[117,174,66,-0.4583333333333333],[117,174,67,-0.4583333333333333],[117,174,68,-0.4583333333333333],[117,174,69,-0.4583333333333333],[117,174,70,-0.4583333333333333],[117,174,71,-0.4583333333333333],[117,174,72,-0.4583333333333333],[117,174,73,-0.4583333333333333],[117,174,74,-0.4583333333333333],[117,174,75,-0.4583333333333333],[117,174,76,-0.4583333333333333],[117,174,77,-0.4583333333333333],[117,174,78,-0.4583333333333333],[117,174,79,-0.4583333333333333],[117,175,64,-0.4583333333333333],[117,175,65,-0.4583333333333333],[117,175,66,-0.4583333333333333],[117,175,67,-0.4583333333333333],[117,175,68,-0.4583333333333333],[117,175,69,-0.4583333333333333],[117,175,70,-0.4583333333333333],[117,175,71,-0.4583333333333333],[117,175,72,-0.4583333333333333],[117,175,73,-0.4583333333333333],[117,175,74,-0.4583333333333333],[117,175,75,-0.4583333333333333],[117,175,76,-0.4583333333333333],[117,175,77,-0.4583333333333333],[117,175,78,-0.4583333333333333],[117,175,79,-0.4583333333333333],[117,176,64,-0.4583333333333333],[117,176,65,-0.4583333333333333],[117,176,66,-0.4583333333333333],[117,176,67,-0.4583333333333333],[117,176,68,-0.4583333333333333],[117,176,69,-0.4583333333333333],[117,176,70,-0.4583333333333333],[117,176,71,-0.4583333333333333],[117,176,72,-0.4583333333333333],[117,176,73,-0.4583333333333333],[117,176,74,-0.4583333333333333],[117,176,75,-0.4583333333333333],[117,176,76,-0.4583333333333333],[117,176,77,-0.4583333333333333],[117,176,78,-0.4583333333333333],[117,176,79,-0.4583333333333333],[117,177,64,-0.4583333333333333],[117,177,65,-0.4583333333333333],[117,177,66,-0.4583333333333333],[117,177,67,-0.4583333333333333],[117,177,68,-0.4583333333333333],[117,177,69,-0.4583333333333333],[117,177,70,-0.4583333333333333],[117,177,71,-0.4583333333333333],[117,177,72,-0.4583333333333333],[117,177,73,-0.4583333333333333],[117,177,74,-0.4583333333333333],[117,177,75,-0.4583333333333333],[117,177,76,-0.4583333333333333],[117,177,77,-0.4583333333333333],[117,177,78,-0.4583333333333333],[117,177,79,-0.4583333333333333],[117,178,64,-0.4583333333333333],[117,178,65,-0.4583333333333333],[117,178,66,-0.4583333333333333],[117,178,67,-0.4583333333333333],[117,178,68,-0.4583333333333333],[117,178,69,-0.4583333333333333],[117,178,70,-0.4583333333333333],[117,178,71,-0.4583333333333333],[117,178,72,-0.4583333333333333],[117,178,73,-0.4583333333333333],[117,178,74,-0.4583333333333333],[117,178,75,-0.4583333333333333],[117,178,76,-0.4583333333333333],[117,178,77,-0.4583333333333333],[117,178,78,-0.4583333333333333],[117,178,79,-0.4583333333333333],[117,179,64,-0.4583333333333333],[117,179,65,-0.4583333333333333],[117,179,66,-0.4583333333333333],[117,179,67,-0.4583333333333333],[117,179,68,-0.4583333333333333],[117,179,69,-0.4583333333333333],[117,179,70,-0.4583333333333333],[117,179,71,-0.4583333333333333],[117,179,72,-0.4583333333333333],[117,179,73,-0.4583333333333333],[117,179,74,-0.4583333333333333],[117,179,75,-0.4583333333333333],[117,179,76,-0.4583333333333333],[117,179,77,-0.4583333333333333],[117,179,78,-0.4583333333333333],[117,179,79,-0.4583333333333333],[117,180,64,-0.4583333333333333],[117,180,65,-0.4583333333333333],[117,180,66,-0.4583333333333333],[117,180,67,-0.4583333333333333],[117,180,68,-0.4583333333333333],[117,180,69,-0.4583333333333333],[117,180,70,-0.4583333333333333],[117,180,71,-0.4583333333333333],[117,180,72,-0.4583333333333333],[117,180,73,-0.4583333333333333],[117,180,74,-0.4583333333333333],[117,180,75,-0.4583333333333333],[117,180,76,-0.4583333333333333],[117,180,77,-0.4583333333333333],[117,180,78,-0.4583333333333333],[117,180,79,-0.4583333333333333],[117,181,64,-0.4583333333333333],[117,181,65,-0.4583333333333333],[117,181,66,-0.4583333333333333],[117,181,67,-0.4583333333333333],[117,181,68,-0.4583333333333333],[117,181,69,-0.4583333333333333],[117,181,70,-0.4583333333333333],[117,181,71,-0.4583333333333333],[117,181,72,-0.4583333333333333],[117,181,73,-0.4583333333333333],[117,181,74,-0.4583333333333333],[117,181,75,-0.4583333333333333],[117,181,76,-0.4583333333333333],[117,181,77,-0.4583333333333333],[117,181,78,-0.4583333333333333],[117,181,79,-0.4583333333333333],[117,182,64,-0.4583333333333333],[117,182,65,-0.4583333333333333],[117,182,66,-0.4583333333333333],[117,182,67,-0.4583333333333333],[117,182,68,-0.4583333333333333],[117,182,69,-0.4583333333333333],[117,182,70,-0.4583333333333333],[117,182,71,-0.4583333333333333],[117,182,72,-0.4583333333333333],[117,182,73,-0.4583333333333333],[117,182,74,-0.4583333333333333],[117,182,75,-0.4583333333333333],[117,182,76,-0.4583333333333333],[117,182,77,-0.4583333333333333],[117,182,78,-0.4583333333333333],[117,182,79,-0.4583333333333333],[117,183,64,-0.4583333333333333],[117,183,65,-0.4583333333333333],[117,183,66,-0.4583333333333333],[117,183,67,-0.4583333333333333],[117,183,68,-0.4583333333333333],[117,183,69,-0.4583333333333333],[117,183,70,-0.4583333333333333],[117,183,71,-0.4583333333333333],[117,183,72,-0.4583333333333333],[117,183,73,-0.4583333333333333],[117,183,74,-0.4583333333333333],[117,183,75,-0.4583333333333333],[117,183,76,-0.4583333333333333],[117,183,77,-0.4583333333333333],[117,183,78,-0.4583333333333333],[117,183,79,-0.4583333333333333],[117,184,64,-0.4583333333333333],[117,184,65,-0.4583333333333333],[117,184,66,-0.4583333333333333],[117,184,67,-0.4583333333333333],[117,184,68,-0.4583333333333333],[117,184,69,-0.4583333333333333],[117,184,70,-0.4583333333333333],[117,184,71,-0.4583333333333333],[117,184,72,-0.4583333333333333],[117,184,73,-0.4583333333333333],[117,184,74,-0.4583333333333333],[117,184,75,-0.4583333333333333],[117,184,76,-0.4583333333333333],[117,184,77,-0.4583333333333333],[117,184,78,-0.4583333333333333],[117,184,79,-0.4583333333333333],[117,185,64,-0.4583333333333333],[117,185,65,-0.4583333333333333],[117,185,66,-0.4583333333333333],[117,185,67,-0.4583333333333333],[117,185,68,-0.4583333333333333],[117,185,69,-0.4583333333333333],[117,185,70,-0.4583333333333333],[117,185,71,-0.4583333333333333],[117,185,72,-0.4583333333333333],[117,185,73,-0.4583333333333333],[117,185,74,-0.4583333333333333],[117,185,75,-0.4583333333333333],[117,185,76,-0.4583333333333333],[117,185,77,-0.4583333333333333],[117,185,78,-0.4583333333333333],[117,185,79,-0.4583333333333333],[117,186,64,-0.4583333333333333],[117,186,65,-0.4583333333333333],[117,186,66,-0.4583333333333333],[117,186,67,-0.4583333333333333],[117,186,68,-0.4583333333333333],[117,186,69,-0.4583333333333333],[117,186,70,-0.4583333333333333],[117,186,71,-0.4583333333333333],[117,186,72,-0.4583333333333333],[117,186,73,-0.4583333333333333],[117,186,74,-0.4583333333333333],[117,186,75,-0.4583333333333333],[117,186,76,-0.4583333333333333],[117,186,77,-0.4583333333333333],[117,186,78,-0.4583333333333333],[117,186,79,-0.4583333333333333],[117,187,64,-0.4583333333333333],[117,187,65,-0.4583333333333333],[117,187,66,-0.4583333333333333],[117,187,67,-0.4583333333333333],[117,187,68,-0.4583333333333333],[117,187,69,-0.4583333333333333],[117,187,70,-0.4583333333333333],[117,187,71,-0.4583333333333333],[117,187,72,-0.4583333333333333],[117,187,73,-0.4583333333333333],[117,187,74,-0.4583333333333333],[117,187,75,-0.4583333333333333],[117,187,76,-0.4583333333333333],[117,187,77,-0.4583333333333333],[117,187,78,-0.4583333333333333],[117,187,79,-0.4583333333333333],[117,188,64,-0.4583333333333333],[117,188,65,-0.4583333333333333],[117,188,66,-0.4583333333333333],[117,188,67,-0.4583333333333333],[117,188,68,-0.4583333333333333],[117,188,69,-0.4583333333333333],[117,188,70,-0.4583333333333333],[117,188,71,-0.4583333333333333],[117,188,72,-0.4583333333333333],[117,188,73,-0.4583333333333333],[117,188,74,-0.4583333333333333],[117,188,75,-0.4583333333333333],[117,188,76,-0.4583333333333333],[117,188,77,-0.4583333333333333],[117,188,78,-0.4583333333333333],[117,188,79,-0.4583333333333333],[117,189,64,-0.4583333333333333],[117,189,65,-0.4583333333333333],[117,189,66,-0.4583333333333333],[117,189,67,-0.4583333333333333],[117,189,68,-0.4583333333333333],[117,189,69,-0.4583333333333333],[117,189,70,-0.4583333333333333],[117,189,71,-0.4583333333333333],[117,189,72,-0.4583333333333333],[117,189,73,-0.4583333333333333],[117,189,74,-0.4583333333333333],[117,189,75,-0.4583333333333333],[117,189,76,-0.4583333333333333],[117,189,77,-0.4583333333333333],[117,189,78,-0.4583333333333333],[117,189,79,-0.4583333333333333],[117,190,64,-0.4583333333333333],[117,190,65,-0.4583333333333333],[117,190,66,-0.4583333333333333],[117,190,67,-0.4583333333333333],[117,190,68,-0.4583333333333333],[117,190,69,-0.4583333333333333],[117,190,70,-0.4583333333333333],[117,190,71,-0.4583333333333333],[117,190,72,-0.4583333333333333],[117,190,73,-0.4583333333333333],[117,190,74,-0.4583333333333333],[117,190,75,-0.4583333333333333],[117,190,76,-0.4583333333333333],[117,190,77,-0.4583333333333333],[117,190,78,-0.4583333333333333],[117,190,79,-0.4583333333333333],[117,191,64,-0.4583333333333333],[117,191,65,-0.4583333333333333],[117,191,66,-0.4583333333333333],[117,191,67,-0.4583333333333333],[117,191,68,-0.4583333333333333],[117,191,69,-0.4583333333333333],[117,191,70,-0.4583333333333333],[117,191,71,-0.4583333333333333],[117,191,72,-0.4583333333333333],[117,191,73,-0.4583333333333333],[117,191,74,-0.4583333333333333],[117,191,75,-0.4583333333333333],[117,191,76,-0.4583333333333333],[117,191,77,-0.4583333333333333],[117,191,78,-0.4583333333333333],[117,191,79,-0.4583333333333333],[117,192,64,-0.4583333333333333],[117,192,65,-0.4583333333333333],[117,192,66,-0.4583333333333333],[117,192,67,-0.4583333333333333],[117,192,68,-0.4583333333333333],[117,192,69,-0.4583333333333333],[117,192,70,-0.4583333333333333],[117,192,71,-0.4583333333333333],[117,192,72,-0.4583333333333333],[117,192,73,-0.4583333333333333],[117,192,74,-0.4583333333333333],[117,192,75,-0.4583333333333333],[117,192,76,-0.4583333333333333],[117,192,77,-0.4583333333333333],[117,192,78,-0.4583333333333333],[117,192,79,-0.4583333333333333],[117,193,64,-0.4583333333333333],[117,193,65,-0.4583333333333333],[117,193,66,-0.4583333333333333],[117,193,67,-0.4583333333333333],[117,193,68,-0.4583333333333333],[117,193,69,-0.4583333333333333],[117,193,70,-0.4583333333333333],[117,193,71,-0.4583333333333333],[117,193,72,-0.4583333333333333],[117,193,73,-0.4583333333333333],[117,193,74,-0.4583333333333333],[117,193,75,-0.4583333333333333],[117,193,76,-0.4583333333333333],[117,193,77,-0.4583333333333333],[117,193,78,-0.4583333333333333],[117,193,79,-0.4583333333333333],[117,194,64,-0.4583333333333333],[117,194,65,-0.4583333333333333],[117,194,66,-0.4583333333333333],[117,194,67,-0.4583333333333333],[117,194,68,-0.4583333333333333],[117,194,69,-0.4583333333333333],[117,194,70,-0.4583333333333333],[117,194,71,-0.4583333333333333],[117,194,72,-0.4583333333333333],[117,194,73,-0.4583333333333333],[117,194,74,-0.4583333333333333],[117,194,75,-0.4583333333333333],[117,194,76,-0.4583333333333333],[117,194,77,-0.4583333333333333],[117,194,78,-0.4583333333333333],[117,194,79,-0.4583333333333333],[117,195,64,-0.4583333333333333],[117,195,65,-0.4583333333333333],[117,195,66,-0.4583333333333333],[117,195,67,-0.4583333333333333],[117,195,68,-0.4583333333333333],[117,195,69,-0.4583333333333333],[117,195,70,-0.4583333333333333],[117,195,71,-0.4583333333333333],[117,195,72,-0.4583333333333333],[117,195,73,-0.4583333333333333],[117,195,74,-0.4583333333333333],[117,195,75,-0.4583333333333333],[117,195,76,-0.4583333333333333],[117,195,77,-0.4583333333333333],[117,195,78,-0.4583333333333333],[117,195,79,-0.4583333333333333],[117,196,64,-0.4583333333333333],[117,196,65,-0.4583333333333333],[117,196,66,-0.4583333333333333],[117,196,67,-0.4583333333333333],[117,196,68,-0.4583333333333333],[117,196,69,-0.4583333333333333],[117,196,70,-0.4583333333333333],[117,196,71,-0.4583333333333333],[117,196,72,-0.4583333333333333],[117,196,73,-0.4583333333333333],[117,196,74,-0.4583333333333333],[117,196,75,-0.4583333333333333],[117,196,76,-0.4583333333333333],[117,196,77,-0.4583333333333333],[117,196,78,-0.4583333333333333],[117,196,79,-0.4583333333333333],[117,197,64,-0.4583333333333333],[117,197,65,-0.4583333333333333],[117,197,66,-0.4583333333333333],[117,197,67,-0.4583333333333333],[117,197,68,-0.4583333333333333],[117,197,69,-0.4583333333333333],[117,197,70,-0.4583333333333333],[117,197,71,-0.4583333333333333],[117,197,72,-0.4583333333333333],[117,197,73,-0.4583333333333333],[117,197,74,-0.4583333333333333],[117,197,75,-0.4583333333333333],[117,197,76,-0.4583333333333333],[117,197,77,-0.4583333333333333],[117,197,78,-0.4583333333333333],[117,197,79,-0.4583333333333333],[117,198,64,-0.4583333333333333],[117,198,65,-0.4583333333333333],[117,198,66,-0.4583333333333333],[117,198,67,-0.4583333333333333],[117,198,68,-0.4583333333333333],[117,198,69,-0.4583333333333333],[117,198,70,-0.4583333333333333],[117,198,71,-0.4583333333333333],[117,198,72,-0.4583333333333333],[117,198,73,-0.4583333333333333],[117,198,74,-0.4583333333333333],[117,198,75,-0.4583333333333333],[117,198,76,-0.4583333333333333],[117,198,77,-0.4583333333333333],[117,198,78,-0.4583333333333333],[117,198,79,-0.4583333333333333],[117,199,64,-0.4583333333333333],[117,199,65,-0.4583333333333333],[117,199,66,-0.4583333333333333],[117,199,67,-0.4583333333333333],[117,199,68,-0.4583333333333333],[117,199,69,-0.4583333333333333],[117,199,70,-0.4583333333333333],[117,199,71,-0.4583333333333333],[117,199,72,-0.4583333333333333],[117,199,73,-0.4583333333333333],[117,199,74,-0.4583333333333333],[117,199,75,-0.4583333333333333],[117,199,76,-0.4583333333333333],[117,199,77,-0.4583333333333333],[117,199,78,-0.4583333333333333],[117,199,79,-0.4583333333333333],[117,200,64,-0.4583333333333333],[117,200,65,-0.4583333333333333],[117,200,66,-0.4583333333333333],[117,200,67,-0.4583333333333333],[117,200,68,-0.4583333333333333],[117,200,69,-0.4583333333333333],[117,200,70,-0.4583333333333333],[117,200,71,-0.4583333333333333],[117,200,72,-0.4583333333333333],[117,200,73,-0.4583333333333333],[117,200,74,-0.4583333333333333],[117,200,75,-0.4583333333333333],[117,200,76,-0.4583333333333333],[117,200,77,-0.4583333333333333],[117,200,78,-0.4583333333333333],[117,200,79,-0.4583333333333333],[117,201,64,-0.4583333333333333],[117,201,65,-0.4583333333333333],[117,201,66,-0.4583333333333333],[117,201,67,-0.4583333333333333],[117,201,68,-0.4583333333333333],[117,201,69,-0.4583333333333333],[117,201,70,-0.4583333333333333],[117,201,71,-0.4583333333333333],[117,201,72,-0.4583333333333333],[117,201,73,-0.4583333333333333],[117,201,74,-0.4583333333333333],[117,201,75,-0.4583333333333333],[117,201,76,-0.4583333333333333],[117,201,77,-0.4583333333333333],[117,201,78,-0.4583333333333333],[117,201,79,-0.4583333333333333],[117,202,64,-0.4583333333333333],[117,202,65,-0.4583333333333333],[117,202,66,-0.4583333333333333],[117,202,67,-0.4583333333333333],[117,202,68,-0.4583333333333333],[117,202,69,-0.4583333333333333],[117,202,70,-0.4583333333333333],[117,202,71,-0.4583333333333333],[117,202,72,-0.4583333333333333],[117,202,73,-0.4583333333333333],[117,202,74,-0.4583333333333333],[117,202,75,-0.4583333333333333],[117,202,76,-0.4583333333333333],[117,202,77,-0.4583333333333333],[117,202,78,-0.4583333333333333],[117,202,79,-0.4583333333333333],[117,203,64,-0.4583333333333333],[117,203,65,-0.4583333333333333],[117,203,66,-0.4583333333333333],[117,203,67,-0.4583333333333333],[117,203,68,-0.4583333333333333],[117,203,69,-0.4583333333333333],[117,203,70,-0.4583333333333333],[117,203,71,-0.4583333333333333],[117,203,72,-0.4583333333333333],[117,203,73,-0.4583333333333333],[117,203,74,-0.4583333333333333],[117,203,75,-0.4583333333333333],[117,203,76,-0.4583333333333333],[117,203,77,-0.4583333333333333],[117,203,78,-0.4583333333333333],[117,203,79,-0.4583333333333333],[117,204,64,-0.4583333333333333],[117,204,65,-0.4583333333333333],[117,204,66,-0.4583333333333333],[117,204,67,-0.4583333333333333],[117,204,68,-0.4583333333333333],[117,204,69,-0.4583333333333333],[117,204,70,-0.4583333333333333],[117,204,71,-0.4583333333333333],[117,204,72,-0.4583333333333333],[117,204,73,-0.4583333333333333],[117,204,74,-0.4583333333333333],[117,204,75,-0.4583333333333333],[117,204,76,-0.4583333333333333],[117,204,77,-0.4583333333333333],[117,204,78,-0.4583333333333333],[117,204,79,-0.4583333333333333],[117,205,64,-0.4583333333333333],[117,205,65,-0.4583333333333333],[117,205,66,-0.4583333333333333],[117,205,67,-0.4583333333333333],[117,205,68,-0.4583333333333333],[117,205,69,-0.4583333333333333],[117,205,70,-0.4583333333333333],[117,205,71,-0.4583333333333333],[117,205,72,-0.4583333333333333],[117,205,73,-0.4583333333333333],[117,205,74,-0.4583333333333333],[117,205,75,-0.4583333333333333],[117,205,76,-0.4583333333333333],[117,205,77,-0.4583333333333333],[117,205,78,-0.4583333333333333],[117,205,79,-0.4583333333333333],[117,206,64,-0.4583333333333333],[117,206,65,-0.4583333333333333],[117,206,66,-0.4583333333333333],[117,206,67,-0.4583333333333333],[117,206,68,-0.4583333333333333],[117,206,69,-0.4583333333333333],[117,206,70,-0.4583333333333333],[117,206,71,-0.4583333333333333],[117,206,72,-0.4583333333333333],[117,206,73,-0.4583333333333333],[117,206,74,-0.4583333333333333],[117,206,75,-0.4583333333333333],[117,206,76,-0.4583333333333333],[117,206,77,-0.4583333333333333],[117,206,78,-0.4583333333333333],[117,206,79,-0.4583333333333333],[117,207,64,-0.4583333333333333],[117,207,65,-0.4583333333333333],[117,207,66,-0.4583333333333333],[117,207,67,-0.4583333333333333],[117,207,68,-0.4583333333333333],[117,207,69,-0.4583333333333333],[117,207,70,-0.4583333333333333],[117,207,71,-0.4583333333333333],[117,207,72,-0.4583333333333333],[117,207,73,-0.4583333333333333],[117,207,74,-0.4583333333333333],[117,207,75,-0.4583333333333333],[117,207,76,-0.4583333333333333],[117,207,77,-0.4583333333333333],[117,207,78,-0.4583333333333333],[117,207,79,-0.4583333333333333],[117,208,64,-0.4583333333333333],[117,208,65,-0.4583333333333333],[117,208,66,-0.4583333333333333],[117,208,67,-0.4583333333333333],[117,208,68,-0.4583333333333333],[117,208,69,-0.4583333333333333],[117,208,70,-0.4583333333333333],[117,208,71,-0.4583333333333333],[117,208,72,-0.4583333333333333],[117,208,73,-0.4583333333333333],[117,208,74,-0.4583333333333333],[117,208,75,-0.4583333333333333],[117,208,76,-0.4583333333333333],[117,208,77,-0.4583333333333333],[117,208,78,-0.4583333333333333],[117,208,79,-0.4583333333333333],[117,209,64,-0.4583333333333333],[117,209,65,-0.4583333333333333],[117,209,66,-0.4583333333333333],[117,209,67,-0.4583333333333333],[117,209,68,-0.4583333333333333],[117,209,69,-0.4583333333333333],[117,209,70,-0.4583333333333333],[117,209,71,-0.4583333333333333],[117,209,72,-0.4583333333333333],[117,209,73,-0.4583333333333333],[117,209,74,-0.4583333333333333],[117,209,75,-0.4583333333333333],[117,209,76,-0.4583333333333333],[117,209,77,-0.4583333333333333],[117,209,78,-0.4583333333333333],[117,209,79,-0.4583333333333333],[117,210,64,-0.4583333333333333],[117,210,65,-0.4583333333333333],[117,210,66,-0.4583333333333333],[117,210,67,-0.4583333333333333],[117,210,68,-0.4583333333333333],[117,210,69,-0.4583333333333333],[117,210,70,-0.4583333333333333],[117,210,71,-0.4583333333333333],[117,210,72,-0.4583333333333333],[117,210,73,-0.4583333333333333],[117,210,74,-0.4583333333333333],[117,210,75,-0.4583333333333333],[117,210,76,-0.4583333333333333],[117,210,77,-0.4583333333333333],[117,210,78,-0.4583333333333333],[117,210,79,-0.4583333333333333],[117,211,64,-0.4583333333333333],[117,211,65,-0.4583333333333333],[117,211,66,-0.4583333333333333],[117,211,67,-0.4583333333333333],[117,211,68,-0.4583333333333333],[117,211,69,-0.4583333333333333],[117,211,70,-0.4583333333333333],[117,211,71,-0.4583333333333333],[117,211,72,-0.4583333333333333],[117,211,73,-0.4583333333333333],[117,211,74,-0.4583333333333333],[117,211,75,-0.4583333333333333],[117,211,76,-0.4583333333333333],[117,211,77,-0.4583333333333333],[117,211,78,-0.4583333333333333],[117,211,79,-0.4583333333333333],[117,212,64,-0.4583333333333333],[117,212,65,-0.4583333333333333],[117,212,66,-0.4583333333333333],[117,212,67,-0.4583333333333333],[117,212,68,-0.4583333333333333],[117,212,69,-0.4583333333333333],[117,212,70,-0.4583333333333333],[117,212,71,-0.4583333333333333],[117,212,72,-0.4583333333333333],[117,212,73,-0.4583333333333333],[117,212,74,-0.4583333333333333],[117,212,75,-0.4583333333333333],[117,212,76,-0.4583333333333333],[117,212,77,-0.4583333333333333],[117,212,78,-0.4583333333333333],[117,212,79,-0.4583333333333333],[117,213,64,-0.4583333333333333],[117,213,65,-0.4583333333333333],[117,213,66,-0.4583333333333333],[117,213,67,-0.4583333333333333],[117,213,68,-0.4583333333333333],[117,213,69,-0.4583333333333333],[117,213,70,-0.4583333333333333],[117,213,71,-0.4583333333333333],[117,213,72,-0.4583333333333333],[117,213,73,-0.4583333333333333],[117,213,74,-0.4583333333333333],[117,213,75,-0.4583333333333333],[117,213,76,-0.4583333333333333],[117,213,77,-0.4583333333333333],[117,213,78,-0.4583333333333333],[117,213,79,-0.4583333333333333],[117,214,64,-0.4583333333333333],[117,214,65,-0.4583333333333333],[117,214,66,-0.4583333333333333],[117,214,67,-0.4583333333333333],[117,214,68,-0.4583333333333333],[117,214,69,-0.4583333333333333],[117,214,70,-0.4583333333333333],[117,214,71,-0.4583333333333333],[117,214,72,-0.4583333333333333],[117,214,73,-0.4583333333333333],[117,214,74,-0.4583333333333333],[117,214,75,-0.4583333333333333],[117,214,76,-0.4583333333333333],[117,214,77,-0.4583333333333333],[117,214,78,-0.4583333333333333],[117,214,79,-0.4583333333333333],[117,215,64,-0.4583333333333333],[117,215,65,-0.4583333333333333],[117,215,66,-0.4583333333333333],[117,215,67,-0.4583333333333333],[117,215,68,-0.4583333333333333],[117,215,69,-0.4583333333333333],[117,215,70,-0.4583333333333333],[117,215,71,-0.4583333333333333],[117,215,72,-0.4583333333333333],[117,215,73,-0.4583333333333333],[117,215,74,-0.4583333333333333],[117,215,75,-0.4583333333333333],[117,215,76,-0.4583333333333333],[117,215,77,-0.4583333333333333],[117,215,78,-0.4583333333333333],[117,215,79,-0.4583333333333333],[117,216,64,-0.4583333333333333],[117,216,65,-0.4583333333333333],[117,216,66,-0.4583333333333333],[117,216,67,-0.4583333333333333],[117,216,68,-0.4583333333333333],[117,216,69,-0.4583333333333333],[117,216,70,-0.4583333333333333],[117,216,71,-0.4583333333333333],[117,216,72,-0.4583333333333333],[117,216,73,-0.4583333333333333],[117,216,74,-0.4583333333333333],[117,216,75,-0.4583333333333333],[117,216,76,-0.4583333333333333],[117,216,77,-0.4583333333333333],[117,216,78,-0.4583333333333333],[117,216,79,-0.4583333333333333],[117,217,64,-0.4583333333333333],[117,217,65,-0.4583333333333333],[117,217,66,-0.4583333333333333],[117,217,67,-0.4583333333333333],[117,217,68,-0.4583333333333333],[117,217,69,-0.4583333333333333],[117,217,70,-0.4583333333333333],[117,217,71,-0.4583333333333333],[117,217,72,-0.4583333333333333],[117,217,73,-0.4583333333333333],[117,217,74,-0.4583333333333333],[117,217,75,-0.4583333333333333],[117,217,76,-0.4583333333333333],[117,217,77,-0.4583333333333333],[117,217,78,-0.4583333333333333],[117,217,79,-0.4583333333333333],[117,218,64,-0.4583333333333333],[117,218,65,-0.4583333333333333],[117,218,66,-0.4583333333333333],[117,218,67,-0.4583333333333333],[117,218,68,-0.4583333333333333],[117,218,69,-0.4583333333333333],[117,218,70,-0.4583333333333333],[117,218,71,-0.4583333333333333],[117,218,72,-0.4583333333333333],[117,218,73,-0.4583333333333333],[117,218,74,-0.4583333333333333],[117,218,75,-0.4583333333333333],[117,218,76,-0.4583333333333333],[117,218,77,-0.4583333333333333],[117,218,78,-0.4583333333333333],[117,218,79,-0.4583333333333333],[117,219,64,-0.4583333333333333],[117,219,65,-0.4583333333333333],[117,219,66,-0.4583333333333333],[117,219,67,-0.4583333333333333],[117,219,68,-0.4583333333333333],[117,219,69,-0.4583333333333333],[117,219,70,-0.4583333333333333],[117,219,71,-0.4583333333333333],[117,219,72,-0.4583333333333333],[117,219,73,-0.4583333333333333],[117,219,74,-0.4583333333333333],[117,219,75,-0.4583333333333333],[117,219,76,-0.4583333333333333],[117,219,77,-0.4583333333333333],[117,219,78,-0.4583333333333333],[117,219,79,-0.4583333333333333],[117,220,64,-0.4583333333333333],[117,220,65,-0.4583333333333333],[117,220,66,-0.4583333333333333],[117,220,67,-0.4583333333333333],[117,220,68,-0.4583333333333333],[117,220,69,-0.4583333333333333],[117,220,70,-0.4583333333333333],[117,220,71,-0.4583333333333333],[117,220,72,-0.4583333333333333],[117,220,73,-0.4583333333333333],[117,220,74,-0.4583333333333333],[117,220,75,-0.4583333333333333],[117,220,76,-0.4583333333333333],[117,220,77,-0.4583333333333333],[117,220,78,-0.4583333333333333],[117,220,79,-0.4583333333333333],[117,221,64,-0.4583333333333333],[117,221,65,-0.4583333333333333],[117,221,66,-0.4583333333333333],[117,221,67,-0.4583333333333333],[117,221,68,-0.4583333333333333],[117,221,69,-0.4583333333333333],[117,221,70,-0.4583333333333333],[117,221,71,-0.4583333333333333],[117,221,72,-0.4583333333333333],[117,221,73,-0.4583333333333333],[117,221,74,-0.4583333333333333],[117,221,75,-0.4583333333333333],[117,221,76,-0.4583333333333333],[117,221,77,-0.4583333333333333],[117,221,78,-0.4583333333333333],[117,221,79,-0.4583333333333333],[117,222,64,-0.4583333333333333],[117,222,65,-0.4583333333333333],[117,222,66,-0.4583333333333333],[117,222,67,-0.4583333333333333],[117,222,68,-0.4583333333333333],[117,222,69,-0.4583333333333333],[117,222,70,-0.4583333333333333],[117,222,71,-0.4583333333333333],[117,222,72,-0.4583333333333333],[117,222,73,-0.4583333333333333],[117,222,74,-0.4583333333333333],[117,222,75,-0.4583333333333333],[117,222,76,-0.4583333333333333],[117,222,77,-0.4583333333333333],[117,222,78,-0.4583333333333333],[117,222,79,-0.4583333333333333],[117,223,64,-0.4583333333333333],[117,223,65,-0.4583333333333333],[117,223,66,-0.4583333333333333],[117,223,67,-0.4583333333333333],[117,223,68,-0.4583333333333333],[117,223,69,-0.4583333333333333],[117,223,70,-0.4583333333333333],[117,223,71,-0.4583333333333333],[117,223,72,-0.4583333333333333],[117,223,73,-0.4583333333333333],[117,223,74,-0.4583333333333333],[117,223,75,-0.4583333333333333],[117,223,76,-0.4583333333333333],[117,223,77,-0.4583333333333333],[117,223,78,-0.4583333333333333],[117,223,79,-0.4583333333333333],[117,224,64,-0.4583333333333333],[117,224,65,-0.4583333333333333],[117,224,66,-0.4583333333333333],[117,224,67,-0.4583333333333333],[117,224,68,-0.4583333333333333],[117,224,69,-0.4583333333333333],[117,224,70,-0.4583333333333333],[117,224,71,-0.4583333333333333],[117,224,72,-0.4583333333333333],[117,224,73,-0.4583333333333333],[117,224,74,-0.4583333333333333],[117,224,75,-0.4583333333333333],[117,224,76,-0.4583333333333333],[117,224,77,-0.4583333333333333],[117,224,78,-0.4583333333333333],[117,224,79,-0.4583333333333333],[117,225,64,-0.4583333333333333],[117,225,65,-0.4583333333333333],[117,225,66,-0.4583333333333333],[117,225,67,-0.4583333333333333],[117,225,68,-0.4583333333333333],[117,225,69,-0.4583333333333333],[117,225,70,-0.4583333333333333],[117,225,71,-0.4583333333333333],[117,225,72,-0.4583333333333333],[117,225,73,-0.4583333333333333],[117,225,74,-0.4583333333333333],[117,225,75,-0.4583333333333333],[117,225,76,-0.4583333333333333],[117,225,77,-0.4583333333333333],[117,225,78,-0.4583333333333333],[117,225,79,-0.4583333333333333],[117,226,64,-0.4583333333333333],[117,226,65,-0.4583333333333333],[117,226,66,-0.4583333333333333],[117,226,67,-0.4583333333333333],[117,226,68,-0.4583333333333333],[117,226,69,-0.4583333333333333],[117,226,70,-0.4583333333333333],[117,226,71,-0.4583333333333333],[117,226,72,-0.4583333333333333],[117,226,73,-0.4583333333333333],[117,226,74,-0.4583333333333333],[117,226,75,-0.4583333333333333],[117,226,76,-0.4583333333333333],[117,226,77,-0.4583333333333333],[117,226,78,-0.4583333333333333],[117,226,79,-0.4583333333333333],[117,227,64,-0.4583333333333333],[117,227,65,-0.4583333333333333],[117,227,66,-0.4583333333333333],[117,227,67,-0.4583333333333333],[117,227,68,-0.4583333333333333],[117,227,69,-0.4583333333333333],[117,227,70,-0.4583333333333333],[117,227,71,-0.4583333333333333],[117,227,72,-0.4583333333333333],[117,227,73,-0.4583333333333333],[117,227,74,-0.4583333333333333],[117,227,75,-0.4583333333333333],[117,227,76,-0.4583333333333333],[117,227,77,-0.4583333333333333],[117,227,78,-0.4583333333333333],[117,227,79,-0.4583333333333333],[117,228,64,-0.4583333333333333],[117,228,65,-0.4583333333333333],[117,228,66,-0.4583333333333333],[117,228,67,-0.4583333333333333],[117,228,68,-0.4583333333333333],[117,228,69,-0.4583333333333333],[117,228,70,-0.4583333333333333],[117,228,71,-0.4583333333333333],[117,228,72,-0.4583333333333333],[117,228,73,-0.4583333333333333],[117,228,74,-0.4583333333333333],[117,228,75,-0.4583333333333333],[117,228,76,-0.4583333333333333],[117,228,77,-0.4583333333333333],[117,228,78,-0.4583333333333333],[117,228,79,-0.4583333333333333],[117,229,64,-0.4583333333333333],[117,229,65,-0.4583333333333333],[117,229,66,-0.4583333333333333],[117,229,67,-0.4583333333333333],[117,229,68,-0.4583333333333333],[117,229,69,-0.4583333333333333],[117,229,70,-0.4583333333333333],[117,229,71,-0.4583333333333333],[117,229,72,-0.4583333333333333],[117,229,73,-0.4583333333333333],[117,229,74,-0.4583333333333333],[117,229,75,-0.4583333333333333],[117,229,76,-0.4583333333333333],[117,229,77,-0.4583333333333333],[117,229,78,-0.4583333333333333],[117,229,79,-0.4583333333333333],[117,230,64,-0.4583333333333333],[117,230,65,-0.4583333333333333],[117,230,66,-0.4583333333333333],[117,230,67,-0.4583333333333333],[117,230,68,-0.4583333333333333],[117,230,69,-0.4583333333333333],[117,230,70,-0.4583333333333333],[117,230,71,-0.4583333333333333],[117,230,72,-0.4583333333333333],[117,230,73,-0.4583333333333333],[117,230,74,-0.4583333333333333],[117,230,75,-0.4583333333333333],[117,230,76,-0.4583333333333333],[117,230,77,-0.4583333333333333],[117,230,78,-0.4583333333333333],[117,230,79,-0.4583333333333333],[117,231,64,-0.4583333333333333],[117,231,65,-0.4583333333333333],[117,231,66,-0.4583333333333333],[117,231,67,-0.4583333333333333],[117,231,68,-0.4583333333333333],[117,231,69,-0.4583333333333333],[117,231,70,-0.4583333333333333],[117,231,71,-0.4583333333333333],[117,231,72,-0.4583333333333333],[117,231,73,-0.4583333333333333],[117,231,74,-0.4583333333333333],[117,231,75,-0.4583333333333333],[117,231,76,-0.4583333333333333],[117,231,77,-0.4583333333333333],[117,231,78,-0.4583333333333333],[117,231,79,-0.4583333333333333],[117,232,64,-0.4583333333333333],[117,232,65,-0.4583333333333333],[117,232,66,-0.4583333333333333],[117,232,67,-0.4583333333333333],[117,232,68,-0.4583333333333333],[117,232,69,-0.4583333333333333],[117,232,70,-0.4583333333333333],[117,232,71,-0.4583333333333333],[117,232,72,-0.4583333333333333],[117,232,73,-0.4583333333333333],[117,232,74,-0.4583333333333333],[117,232,75,-0.4583333333333333],[117,232,76,-0.4583333333333333],[117,232,77,-0.4583333333333333],[117,232,78,-0.4583333333333333],[117,232,79,-0.4583333333333333],[117,233,64,-0.4583333333333333],[117,233,65,-0.4583333333333333],[117,233,66,-0.4583333333333333],[117,233,67,-0.4583333333333333],[117,233,68,-0.4583333333333333],[117,233,69,-0.4583333333333333],[117,233,70,-0.4583333333333333],[117,233,71,-0.4583333333333333],[117,233,72,-0.4583333333333333],[117,233,73,-0.4583333333333333],[117,233,74,-0.4583333333333333],[117,233,75,-0.4583333333333333],[117,233,76,-0.4583333333333333],[117,233,77,-0.4583333333333333],[117,233,78,-0.4583333333333333],[117,233,79,-0.4583333333333333],[117,234,64,-0.4583333333333333],[117,234,65,-0.4583333333333333],[117,234,66,-0.4583333333333333],[117,234,67,-0.4583333333333333],[117,234,68,-0.4583333333333333],[117,234,69,-0.4583333333333333],[117,234,70,-0.4583333333333333],[117,234,71,-0.4583333333333333],[117,234,72,-0.4583333333333333],[117,234,73,-0.4583333333333333],[117,234,74,-0.4583333333333333],[117,234,75,-0.4583333333333333],[117,234,76,-0.4583333333333333],[117,234,77,-0.4583333333333333],[117,234,78,-0.4583333333333333],[117,234,79,-0.4583333333333333],[117,235,64,-0.4583333333333333],[117,235,65,-0.4583333333333333],[117,235,66,-0.4583333333333333],[117,235,67,-0.4583333333333333],[117,235,68,-0.4583333333333333],[117,235,69,-0.4583333333333333],[117,235,70,-0.4583333333333333],[117,235,71,-0.4583333333333333],[117,235,72,-0.4583333333333333],[117,235,73,-0.4583333333333333],[117,235,74,-0.4583333333333333],[117,235,75,-0.4583333333333333],[117,235,76,-0.4583333333333333],[117,235,77,-0.4583333333333333],[117,235,78,-0.4583333333333333],[117,235,79,-0.4583333333333333],[117,236,64,-0.4583333333333333],[117,236,65,-0.4583333333333333],[117,236,66,-0.4583333333333333],[117,236,67,-0.4583333333333333],[117,236,68,-0.4583333333333333],[117,236,69,-0.4583333333333333],[117,236,70,-0.4583333333333333],[117,236,71,-0.4583333333333333],[117,236,72,-0.4583333333333333],[117,236,73,-0.4583333333333333],[117,236,74,-0.4583333333333333],[117,236,75,-0.4583333333333333],[117,236,76,-0.4583333333333333],[117,236,77,-0.4583333333333333],[117,236,78,-0.4583333333333333],[117,236,79,-0.4583333333333333],[117,237,64,-0.4583333333333333],[117,237,65,-0.4583333333333333],[117,237,66,-0.4583333333333333],[117,237,67,-0.4583333333333333],[117,237,68,-0.4583333333333333],[117,237,69,-0.4583333333333333],[117,237,70,-0.4583333333333333],[117,237,71,-0.4583333333333333],[117,237,72,-0.4583333333333333],[117,237,73,-0.4583333333333333],[117,237,74,-0.4583333333333333],[117,237,75,-0.4583333333333333],[117,237,76,-0.4583333333333333],[117,237,77,-0.4583333333333333],[117,237,78,-0.4583333333333333],[117,237,79,-0.4583333333333333],[117,238,64,-0.4583333333333333],[117,238,65,-0.4583333333333333],[117,238,66,-0.4583333333333333],[117,238,67,-0.4583333333333333],[117,238,68,-0.4583333333333333],[117,238,69,-0.4583333333333333],[117,238,70,-0.4583333333333333],[117,238,71,-0.4583333333333333],[117,238,72,-0.4583333333333333],[117,238,73,-0.4583333333333333],[117,238,74,-0.4583333333333333],[117,238,75,-0.4583333333333333],[117,238,76,-0.4583333333333333],[117,238,77,-0.4583333333333333],[117,238,78,-0.4583333333333333],[117,238,79,-0.4583333333333333],[117,239,64,-0.4583333333333333],[117,239,65,-0.4583333333333333],[117,239,66,-0.4583333333333333],[117,239,67,-0.4583333333333333],[117,239,68,-0.4583333333333333],[117,239,69,-0.4583333333333333],[117,239,70,-0.4583333333333333],[117,239,71,-0.4583333333333333],[117,239,72,-0.4583333333333333],[117,239,73,-0.4583333333333333],[117,239,74,-0.4583333333333333],[117,239,75,-0.4583333333333333],[117,239,76,-0.4583333333333333],[117,239,77,-0.4583333333333333],[117,239,78,-0.4583333333333333],[117,239,79,-0.4583333333333333],[117,240,64,-0.4583333333333333],[117,240,65,-0.4583333333333333],[117,240,66,-0.4583333333333333],[117,240,67,-0.4583333333333333],[117,240,68,-0.4583333333333333],[117,240,69,-0.4583333333333333],[117,240,70,-0.4583333333333333],[117,240,71,-0.4583333333333333],[117,240,72,-0.4583333333333333],[117,240,73,-0.4583333333333333],[117,240,74,-0.4583333333333333],[117,240,75,-0.4583333333333333],[117,240,76,-0.4583333333333333],[117,240,77,-0.4583333333333333],[117,240,78,-0.4583333333333333],[117,240,79,-0.4583333333333333],[117,241,64,-0.4583333333333333],[117,241,65,-0.4583333333333333],[117,241,66,-0.4583333333333333],[117,241,67,-0.4583333333333333],[117,241,68,-0.4583333333333333],[117,241,69,-0.4583333333333333],[117,241,70,-0.4583333333333333],[117,241,71,-0.4583333333333333],[117,241,72,-0.4583333333333333],[117,241,73,-0.4583333333333333],[117,241,74,-0.4583333333333333],[117,241,75,-0.4583333333333333],[117,241,76,-0.4583333333333333],[117,241,77,-0.4583333333333333],[117,241,78,-0.4583333333333333],[117,241,79,-0.4583333333333333],[117,242,64,-0.4583333333333333],[117,242,65,-0.4583333333333333],[117,242,66,-0.4583333333333333],[117,242,67,-0.4583333333333333],[117,242,68,-0.4583333333333333],[117,242,69,-0.4583333333333333],[117,242,70,-0.4583333333333333],[117,242,71,-0.4583333333333333],[117,242,72,-0.4583333333333333],[117,242,73,-0.4583333333333333],[117,242,74,-0.4583333333333333],[117,242,75,-0.4583333333333333],[117,242,76,-0.4583333333333333],[117,242,77,-0.4583333333333333],[117,242,78,-0.4583333333333333],[117,242,79,-0.4583333333333333],[117,243,64,-0.4583333333333333],[117,243,65,-0.4583333333333333],[117,243,66,-0.4583333333333333],[117,243,67,-0.4583333333333333],[117,243,68,-0.4583333333333333],[117,243,69,-0.4583333333333333],[117,243,70,-0.4583333333333333],[117,243,71,-0.4583333333333333],[117,243,72,-0.4583333333333333],[117,243,73,-0.4583333333333333],[117,243,74,-0.4583333333333333],[117,243,75,-0.4583333333333333],[117,243,76,-0.4583333333333333],[117,243,77,-0.4583333333333333],[117,243,78,-0.4583333333333333],[117,243,79,-0.4583333333333333],[117,244,64,-0.4583333333333333],[117,244,65,-0.4583333333333333],[117,244,66,-0.4583333333333333],[117,244,67,-0.4583333333333333],[117,244,68,-0.4583333333333333],[117,244,69,-0.4583333333333333],[117,244,70,-0.4583333333333333],[117,244,71,-0.4583333333333333],[117,244,72,-0.4583333333333333],[117,244,73,-0.4583333333333333],[117,244,74,-0.4583333333333333],[117,244,75,-0.4583333333333333],[117,244,76,-0.4583333333333333],[117,244,77,-0.4583333333333333],[117,244,78,-0.4583333333333333],[117,244,79,-0.4583333333333333],[117,245,64,-0.4583333333333333],[117,245,65,-0.4583333333333333],[117,245,66,-0.4583333333333333],[117,245,67,-0.4583333333333333],[117,245,68,-0.4583333333333333],[117,245,69,-0.4583333333333333],[117,245,70,-0.4583333333333333],[117,245,71,-0.4583333333333333],[117,245,72,-0.4583333333333333],[117,245,73,-0.4583333333333333],[117,245,74,-0.4583333333333333],[117,245,75,-0.4583333333333333],[117,245,76,-0.4583333333333333],[117,245,77,-0.4583333333333333],[117,245,78,-0.4583333333333333],[117,245,79,-0.4583333333333333],[117,246,64,-0.4583333333333333],[117,246,65,-0.4583333333333333],[117,246,66,-0.4583333333333333],[117,246,67,-0.4583333333333333],[117,246,68,-0.4583333333333333],[117,246,69,-0.4583333333333333],[117,246,70,-0.4583333333333333],[117,246,71,-0.4583333333333333],[117,246,72,-0.4583333333333333],[117,246,73,-0.4583333333333333],[117,246,74,-0.4583333333333333],[117,246,75,-0.4583333333333333],[117,246,76,-0.4583333333333333],[117,246,77,-0.4583333333333333],[117,246,78,-0.4583333333333333],[117,246,79,-0.4583333333333333],[117,247,64,-0.4583333333333333],[117,247,65,-0.4583333333333333],[117,247,66,-0.4583333333333333],[117,247,67,-0.4583333333333333],[117,247,68,-0.4583333333333333],[117,247,69,-0.4583333333333333],[117,247,70,-0.4583333333333333],[117,247,71,-0.4583333333333333],[117,247,72,-0.4583333333333333],[117,247,73,-0.4583333333333333],[117,247,74,-0.4583333333333333],[117,247,75,-0.4583333333333333],[117,247,76,-0.4583333333333333],[117,247,77,-0.4583333333333333],[117,247,78,-0.4583333333333333],[117,247,79,-0.4583333333333333],[117,248,64,-0.4583333333333333],[117,248,65,-0.4583333333333333],[117,248,66,-0.4583333333333333],[117,248,67,-0.4583333333333333],[117,248,68,-0.4583333333333333],[117,248,69,-0.4583333333333333],[117,248,70,-0.4583333333333333],[117,248,71,-0.4583333333333333],[117,248,72,-0.4583333333333333],[117,248,73,-0.4583333333333333],[117,248,74,-0.4583333333333333],[117,248,75,-0.4583333333333333],[117,248,76,-0.4583333333333333],[117,248,77,-0.4583333333333333],[117,248,78,-0.4583333333333333],[117,248,79,-0.4583333333333333],[117,249,64,-0.4583333333333333],[117,249,65,-0.4583333333333333],[117,249,66,-0.4583333333333333],[117,249,67,-0.4583333333333333],[117,249,68,-0.4583333333333333],[117,249,69,-0.4583333333333333],[117,249,70,-0.4583333333333333],[117,249,71,-0.4583333333333333],[117,249,72,-0.4583333333333333],[117,249,73,-0.4583333333333333],[117,249,74,-0.4583333333333333],[117,249,75,-0.4583333333333333],[117,249,76,-0.4583333333333333],[117,249,77,-0.4583333333333333],[117,249,78,-0.4583333333333333],[117,249,79,-0.4583333333333333],[117,250,64,-0.4583333333333333],[117,250,65,-0.4583333333333333],[117,250,66,-0.4583333333333333],[117,250,67,-0.4583333333333333],[117,250,68,-0.4583333333333333],[117,250,69,-0.4583333333333333],[117,250,70,-0.4583333333333333],[117,250,71,-0.4583333333333333],[117,250,72,-0.4583333333333333],[117,250,73,-0.4583333333333333],[117,250,74,-0.4583333333333333],[117,250,75,-0.4583333333333333],[117,250,76,-0.4583333333333333],[117,250,77,-0.4583333333333333],[117,250,78,-0.4583333333333333],[117,250,79,-0.4583333333333333],[117,251,64,-0.4583333333333333],[117,251,65,-0.4583333333333333],[117,251,66,-0.4583333333333333],[117,251,67,-0.4583333333333333],[117,251,68,-0.4583333333333333],[117,251,69,-0.4583333333333333],[117,251,70,-0.4583333333333333],[117,251,71,-0.4583333333333333],[117,251,72,-0.4583333333333333],[117,251,73,-0.4583333333333333],[117,251,74,-0.4583333333333333],[117,251,75,-0.4583333333333333],[117,251,76,-0.4583333333333333],[117,251,77,-0.4583333333333333],[117,251,78,-0.4583333333333333],[117,251,79,-0.4583333333333333],[117,252,64,-0.4583333333333333],[117,252,65,-0.4583333333333333],[117,252,66,-0.4583333333333333],[117,252,67,-0.4583333333333333],[117,252,68,-0.4583333333333333],[117,252,69,-0.4583333333333333],[117,252,70,-0.4583333333333333],[117,252,71,-0.4583333333333333],[117,252,72,-0.4583333333333333],[117,252,73,-0.4583333333333333],[117,252,74,-0.4583333333333333],[117,252,75,-0.4583333333333333],[117,252,76,-0.4583333333333333],[117,252,77,-0.4583333333333333],[117,252,78,-0.4583333333333333],[117,252,79,-0.4583333333333333],[117,253,64,-0.4583333333333333],[117,253,65,-0.4583333333333333],[117,253,66,-0.4583333333333333],[117,253,67,-0.4583333333333333],[117,253,68,-0.4583333333333333],[117,253,69,-0.4583333333333333],[117,253,70,-0.4583333333333333],[117,253,71,-0.4583333333333333],[117,253,72,-0.4583333333333333],[117,253,73,-0.4583333333333333],[117,253,74,-0.4583333333333333],[117,253,75,-0.4583333333333333],[117,253,76,-0.4583333333333333],[117,253,77,-0.4583333333333333],[117,253,78,-0.4583333333333333],[117,253,79,-0.4583333333333333],[117,254,64,-0.3728368446134969],[117,254,65,-0.37294902690203796],[117,254,66,-0.37244129912676305],[117,254,67,-0.3715789435774752],[117,254,68,-0.37073954392567876],[117,254,69,-0.36997022791292794],[117,254,70,-0.36964970392111457],[117,254,71,-0.36947582376486676],[117,254,72,-0.3694333322675388],[117,254,73,-0.36962752902380147],[117,254,74,-0.3701071419442292],[117,254,75,-0.3707386364791359],[117,254,76,-0.3714990923822603],[117,254,77,-0.37188548673365696],[117,254,78,-0.3724158000802427],[117,254,79,-0.37311703043538613],[117,255,64,-0.20686876348682315],[117,255,65,-0.20694991120524592],[117,255,66,-0.20667675996076784],[117,255,67,-0.20618011568775832],[117,255,68,-0.20569267910846523],[117,255,69,-0.2052874034414152],[117,255,70,-0.2050586509781341],[117,255,71,-0.2049848388887216],[117,255,72,-0.20503370689360678],[117,255,73,-0.20513450683573523],[117,255,74,-0.20539451242819995],[117,255,75,-0.2057392943645048],[117,255,76,-0.20613972122823923],[117,255,77,-0.20635349549461482],[117,255,78,-0.20649503233535016],[117,255,79,-0.2068967043252779],[117,256,64,-0.02499479166666667],[117,256,65,-0.02499479166666667],[117,256,66,-0.02499479166666667],[117,256,67,-0.02499479166666667],[117,256,68,-0.02499479166666667],[117,256,69,-0.02499479166666667],[117,256,70,-0.02499479166666667],[117,256,71,-0.02499479166666667],[117,256,72,-0.02499479166666667],[117,256,73,-0.02499479166666667],[117,256,74,-0.02499479166666667],[117,256,75,-0.02499479166666667],[117,256,76,-0.02499479166666667],[117,256,77,-0.02499479166666667],[117,256,78,-0.02499479166666667],[117,256,79,-0.02499479166666667],[117,257,64,-0.02499479166666667],[117,257,65,-0.02499479166666667],[117,257,66,-0.02499479166666667],[117,257,67,-0.02499479166666667],[117,257,68,-0.02499479166666667],[117,257,69,-0.02499479166666667],[117,257,70,-0.02499479166666667],[117,257,71,-0.02499479166666667],[117,257,72,-0.02499479166666667],[117,257,73,-0.02499479166666667],[117,257,74,-0.02499479166666667],[117,257,75,-0.02499479166666667],[117,257,76,-0.02499479166666667],[117,257,77,-0.02499479166666667],[117,257,78,-0.02499479166666667],[117,257,79,-0.02499479166666667],[117,258,64,-0.02499479166666667],[117,258,65,-0.02499479166666667],[117,258,66,-0.02499479166666667],[117,258,67,-0.02499479166666667],[117,258,68,-0.02499479166666667],[117,258,69,-0.02499479166666667],[117,258,70,-0.02499479166666667],[117,258,71,-0.02499479166666667],[117,258,72,-0.02499479166666667],[117,258,73,-0.02499479166666667],[117,258,74,-0.02499479166666667],[117,258,75,-0.02499479166666667],[117,258,76,-0.02499479166666667],[117,258,77,-0.02499479166666667],[117,258,78,-0.02499479166666667],[117,258,79,-0.02499479166666667],[117,259,64,-0.02499479166666667],[117,259,65,-0.02499479166666667],[117,259,66,-0.02499479166666667],[117,259,67,-0.02499479166666667],[117,259,68,-0.02499479166666667],[117,259,69,-0.02499479166666667],[117,259,70,-0.02499479166666667],[117,259,71,-0.02499479166666667],[117,259,72,-0.02499479166666667],[117,259,73,-0.02499479166666667],[117,259,74,-0.02499479166666667],[117,259,75,-0.02499479166666667],[117,259,76,-0.02499479166666667],[117,259,77,-0.02499479166666667],[117,259,78,-0.02499479166666667],[117,259,79,-0.02499479166666667],[117,260,64,-0.02499479166666667],[117,260,65,-0.02499479166666667],[117,260,66,-0.02499479166666667],[117,260,67,-0.02499479166666667],[117,260,68,-0.02499479166666667],[117,260,69,-0.02499479166666667],[117,260,70,-0.02499479166666667],[117,260,71,-0.02499479166666667],[117,260,72,-0.02499479166666667],[117,260,73,-0.02499479166666667],[117,260,74,-0.02499479166666667],[117,260,75,-0.02499479166666667],[117,260,76,-0.02499479166666667],[117,260,77,-0.02499479166666667],[117,260,78,-0.02499479166666667],[117,260,79,-0.02499479166666667],[117,261,64,-0.02499479166666667],[117,261,65,-0.02499479166666667],[117,261,66,-0.02499479166666667],[117,261,67,-0.02499479166666667],[117,261,68,-0.02499479166666667],[117,261,69,-0.02499479166666667],[117,261,70,-0.02499479166666667],[117,261,71,-0.02499479166666667],[117,261,72,-0.02499479166666667],[117,261,73,-0.02499479166666667],[117,261,74,-0.02499479166666667],[117,261,75,-0.02499479166666667],[117,261,76,-0.02499479166666667],[117,261,77,-0.02499479166666667],[117,261,78,-0.02499479166666667],[117,261,79,-0.02499479166666667],[117,262,64,-0.02499479166666667],[117,262,65,-0.02499479166666667],[117,262,66,-0.02499479166666667],[117,262,67,-0.02499479166666667],[117,262,68,-0.02499479166666667],[117,262,69,-0.02499479166666667],[117,262,70,-0.02499479166666667],[117,262,71,-0.02499479166666667],[117,262,72,-0.02499479166666667],[117,262,73,-0.02499479166666667],[117,262,74,-0.02499479166666667],[117,262,75,-0.02499479166666667],[117,262,76,-0.02499479166666667],[117,262,77,-0.02499479166666667],[117,262,78,-0.02499479166666667],[117,262,79,-0.02499479166666667],[117,263,64,-0.02499479166666667],[117,263,65,-0.02499479166666667],[117,263,66,-0.02499479166666667],[117,263,67,-0.02499479166666667],[117,263,68,-0.02499479166666667],[117,263,69,-0.02499479166666667],[117,263,70,-0.02499479166666667],[117,263,71,-0.02499479166666667],[117,263,72,-0.02499479166666667],[117,263,73,-0.02499479166666667],[117,263,74,-0.02499479166666667],[117,263,75,-0.02499479166666667],[117,263,76,-0.02499479166666667],[117,263,77,-0.02499479166666667],[117,263,78,-0.02499479166666667],[117,263,79,-0.02499479166666667],[117,264,64,-0.02499479166666667],[117,264,65,-0.02499479166666667],[117,264,66,-0.02499479166666667],[117,264,67,-0.02499479166666667],[117,264,68,-0.02499479166666667],[117,264,69,-0.02499479166666667],[117,264,70,-0.02499479166666667],[117,264,71,-0.02499479166666667],[117,264,72,-0.02499479166666667],[117,264,73,-0.02499479166666667],[117,264,74,-0.02499479166666667],[117,264,75,-0.02499479166666667],[117,264,76,-0.02499479166666667],[117,264,77,-0.02499479166666667],[117,264,78,-0.02499479166666667],[117,264,79,-0.02499479166666667],[117,265,64,-0.02499479166666667],[117,265,65,-0.02499479166666667],[117,265,66,-0.02499479166666667],[117,265,67,-0.02499479166666667],[117,265,68,-0.02499479166666667],[117,265,69,-0.02499479166666667],[117,265,70,-0.02499479166666667],[117,265,71,-0.02499479166666667],[117,265,72,-0.02499479166666667],[117,265,73,-0.02499479166666667],[117,265,74,-0.02499479166666667],[117,265,75,-0.02499479166666667],[117,265,76,-0.02499479166666667],[117,265,77,-0.02499479166666667],[117,265,78,-0.02499479166666667],[117,265,79,-0.02499479166666667],[117,266,64,-0.02499479166666667],[117,266,65,-0.02499479166666667],[117,266,66,-0.02499479166666667],[117,266,67,-0.02499479166666667],[117,266,68,-0.02499479166666667],[117,266,69,-0.02499479166666667],[117,266,70,-0.02499479166666667],[117,266,71,-0.02499479166666667],[117,266,72,-0.02499479166666667],[117,266,73,-0.02499479166666667],[117,266,74,-0.02499479166666667],[117,266,75,-0.02499479166666667],[117,266,76,-0.02499479166666667],[117,266,77,-0.02499479166666667],[117,266,78,-0.02499479166666667],[117,266,79,-0.02499479166666667],[117,267,64,-0.02499479166666667],[117,267,65,-0.02499479166666667],[117,267,66,-0.02499479166666667],[117,267,67,-0.02499479166666667],[117,267,68,-0.02499479166666667],[117,267,69,-0.02499479166666667],[117,267,70,-0.02499479166666667],[117,267,71,-0.02499479166666667],[117,267,72,-0.02499479166666667],[117,267,73,-0.02499479166666667],[117,267,74,-0.02499479166666667],[117,267,75,-0.02499479166666667],[117,267,76,-0.02499479166666667],[117,267,77,-0.02499479166666667],[117,267,78,-0.02499479166666667],[117,267,79,-0.02499479166666667],[117,268,64,-0.02499479166666667],[117,268,65,-0.02499479166666667],[117,268,66,-0.02499479166666667],[117,268,67,-0.02499479166666667],[117,268,68,-0.02499479166666667],[117,268,69,-0.02499479166666667],[117,268,70,-0.02499479166666667],[117,268,71,-0.02499479166666667],[117,268,72,-0.02499479166666667],[117,268,73,-0.02499479166666667],[117,268,74,-0.02499479166666667],[117,268,75,-0.02499479166666667],[117,268,76,-0.02499479166666667],[117,268,77,-0.02499479166666667],[117,268,78,-0.02499479166666667],[117,268,79,-0.02499479166666667],[117,269,64,-0.02499479166666667],[117,269,65,-0.02499479166666667],[117,269,66,-0.02499479166666667],[117,269,67,-0.02499479166666667],[117,269,68,-0.02499479166666667],[117,269,69,-0.02499479166666667],[117,269,70,-0.02499479166666667],[117,269,71,-0.02499479166666667],[117,269,72,-0.02499479166666667],[117,269,73,-0.02499479166666667],[117,269,74,-0.02499479166666667],[117,269,75,-0.02499479166666667],[117,269,76,-0.02499479166666667],[117,269,77,-0.02499479166666667],[117,269,78,-0.02499479166666667],[117,269,79,-0.02499479166666667],[117,270,64,-0.02499479166666667],[117,270,65,-0.02499479166666667],[117,270,66,-0.02499479166666667],[117,270,67,-0.02499479166666667],[117,270,68,-0.02499479166666667],[117,270,69,-0.02499479166666667],[117,270,70,-0.02499479166666667],[117,270,71,-0.02499479166666667],[117,270,72,-0.02499479166666667],[117,270,73,-0.02499479166666667],[117,270,74,-0.02499479166666667],[117,270,75,-0.02499479166666667],[117,270,76,-0.02499479166666667],[117,270,77,-0.02499479166666667],[117,270,78,-0.02499479166666667],[117,270,79,-0.02499479166666667],[117,271,64,-0.02499479166666667],[117,271,65,-0.02499479166666667],[117,271,66,-0.02499479166666667],[117,271,67,-0.02499479166666667],[117,271,68,-0.02499479166666667],[117,271,69,-0.02499479166666667],[117,271,70,-0.02499479166666667],[117,271,71,-0.02499479166666667],[117,271,72,-0.02499479166666667],[117,271,73,-0.02499479166666667],[117,271,74,-0.02499479166666667],[117,271,75,-0.02499479166666667],[117,271,76,-0.02499479166666667],[117,271,77,-0.02499479166666667],[117,271,78,-0.02499479166666667],[117,271,79,-0.02499479166666667],[117,272,64,-0.02499479166666667],[117,272,65,-0.02499479166666667],[117,272,66,-0.02499479166666667],[117,272,67,-0.02499479166666667],[117,272,68,-0.02499479166666667],[117,272,69,-0.02499479166666667],[117,272,70,-0.02499479166666667],[117,272,71,-0.02499479166666667],[117,272,72,-0.02499479166666667],[117,272,73,-0.02499479166666667],[117,272,74,-0.02499479166666667],[117,272,75,-0.02499479166666667],[117,272,76,-0.02499479166666667],[117,272,77,-0.02499479166666667],[117,272,78,-0.02499479166666667],[117,272,79,-0.02499479166666667],[117,273,64,-0.02499479166666667],[117,273,65,-0.02499479166666667],[117,273,66,-0.02499479166666667],[117,273,67,-0.02499479166666667],[117,273,68,-0.02499479166666667],[117,273,69,-0.02499479166666667],[117,273,70,-0.02499479166666667],[117,273,71,-0.02499479166666667],[117,273,72,-0.02499479166666667],[117,273,73,-0.02499479166666667],[117,273,74,-0.02499479166666667],[117,273,75,-0.02499479166666667],[117,273,76,-0.02499479166666667],[117,273,77,-0.02499479166666667],[117,273,78,-0.02499479166666667],[117,273,79,-0.02499479166666667],[117,274,64,-0.02499479166666667],[117,274,65,-0.02499479166666667],[117,274,66,-0.02499479166666667],[117,274,67,-0.02499479166666667],[117,274,68,-0.02499479166666667],[117,274,69,-0.02499479166666667],[117,274,70,-0.02499479166666667],[117,274,71,-0.02499479166666667],[117,274,72,-0.02499479166666667],[117,274,73,-0.02499479166666667],[117,274,74,-0.02499479166666667],[117,274,75,-0.02499479166666667],[117,274,76,-0.02499479166666667],[117,274,77,-0.02499479166666667],[117,274,78,-0.02499479166666667],[117,274,79,-0.02499479166666667],[117,275,64,-0.02499479166666667],[117,275,65,-0.02499479166666667],[117,275,66,-0.02499479166666667],[117,275,67,-0.02499479166666667],[117,275,68,-0.02499479166666667],[117,275,69,-0.02499479166666667],[117,275,70,-0.02499479166666667],[117,275,71,-0.02499479166666667],[117,275,72,-0.02499479166666667],[117,275,73,-0.02499479166666667],[117,275,74,-0.02499479166666667],[117,275,75,-0.02499479166666667],[117,275,76,-0.02499479166666667],[117,275,77,-0.02499479166666667],[117,275,78,-0.02499479166666667],[117,275,79,-0.02499479166666667],[117,276,64,-0.02499479166666667],[117,276,65,-0.02499479166666667],[117,276,66,-0.02499479166666667],[117,276,67,-0.02499479166666667],[117,276,68,-0.02499479166666667],[117,276,69,-0.02499479166666667],[117,276,70,-0.02499479166666667],[117,276,71,-0.02499479166666667],[117,276,72,-0.02499479166666667],[117,276,73,-0.02499479166666667],[117,276,74,-0.02499479166666667],[117,276,75,-0.02499479166666667],[117,276,76,-0.02499479166666667],[117,276,77,-0.02499479166666667],[117,276,78,-0.02499479166666667],[117,276,79,-0.02499479166666667],[117,277,64,-0.02499479166666667],[117,277,65,-0.02499479166666667],[117,277,66,-0.02499479166666667],[117,277,67,-0.02499479166666667],[117,277,68,-0.02499479166666667],[117,277,69,-0.02499479166666667],[117,277,70,-0.02499479166666667],[117,277,71,-0.02499479166666667],[117,277,72,-0.02499479166666667],[117,277,73,-0.02499479166666667],[117,277,74,-0.02499479166666667],[117,277,75,-0.02499479166666667],[117,277,76,-0.02499479166666667],[117,277,77,-0.02499479166666667],[117,277,78,-0.02499479166666667],[117,277,79,-0.02499479166666667],[117,278,64,-0.02499479166666667],[117,278,65,-0.02499479166666667],[117,278,66,-0.02499479166666667],[117,278,67,-0.02499479166666667],[117,278,68,-0.02499479166666667],[117,278,69,-0.02499479166666667],[117,278,70,-0.02499479166666667],[117,278,71,-0.02499479166666667],[117,278,72,-0.02499479166666667],[117,278,73,-0.02499479166666667],[117,278,74,-0.02499479166666667],[117,278,75,-0.02499479166666667],[117,278,76,-0.02499479166666667],[117,278,77,-0.02499479166666667],[117,278,78,-0.02499479166666667],[117,278,79,-0.02499479166666667],[117,279,64,-0.02499479166666667],[117,279,65,-0.02499479166666667],[117,279,66,-0.02499479166666667],[117,279,67,-0.02499479166666667],[117,279,68,-0.02499479166666667],[117,279,69,-0.02499479166666667],[117,279,70,-0.02499479166666667],[117,279,71,-0.02499479166666667],[117,279,72,-0.02499479166666667],[117,279,73,-0.02499479166666667],[117,279,74,-0.02499479166666667],[117,279,75,-0.02499479166666667],[117,279,76,-0.02499479166666667],[117,279,77,-0.02499479166666667],[117,279,78,-0.02499479166666667],[117,279,79,-0.02499479166666667],[117,280,64,-0.02499479166666667],[117,280,65,-0.02499479166666667],[117,280,66,-0.02499479166666667],[117,280,67,-0.02499479166666667],[117,280,68,-0.02499479166666667],[117,280,69,-0.02499479166666667],[117,280,70,-0.02499479166666667],[117,280,71,-0.02499479166666667],[117,280,72,-0.02499479166666667],[117,280,73,-0.02499479166666667],[117,280,74,-0.02499479166666667],[117,280,75,-0.02499479166666667],[117,280,76,-0.02499479166666667],[117,280,77,-0.02499479166666667],[117,280,78,-0.02499479166666667],[117,280,79,-0.02499479166666667],[117,281,64,-0.02499479166666667],[117,281,65,-0.02499479166666667],[117,281,66,-0.02499479166666667],[117,281,67,-0.02499479166666667],[117,281,68,-0.02499479166666667],[117,281,69,-0.02499479166666667],[117,281,70,-0.02499479166666667],[117,281,71,-0.02499479166666667],[117,281,72,-0.02499479166666667],[117,281,73,-0.02499479166666667],[117,281,74,-0.02499479166666667],[117,281,75,-0.02499479166666667],[117,281,76,-0.02499479166666667],[117,281,77,-0.02499479166666667],[117,281,78,-0.02499479166666667],[117,281,79,-0.02499479166666667],[117,282,64,-0.02499479166666667],[117,282,65,-0.02499479166666667],[117,282,66,-0.02499479166666667],[117,282,67,-0.02499479166666667],[117,282,68,-0.02499479166666667],[117,282,69,-0.02499479166666667],[117,282,70,-0.02499479166666667],[117,282,71,-0.02499479166666667],[117,282,72,-0.02499479166666667],[117,282,73,-0.02499479166666667],[117,282,74,-0.02499479166666667],[117,282,75,-0.02499479166666667],[117,282,76,-0.02499479166666667],[117,282,77,-0.02499479166666667],[117,282,78,-0.02499479166666667],[117,282,79,-0.02499479166666667],[117,283,64,-0.02499479166666667],[117,283,65,-0.02499479166666667],[117,283,66,-0.02499479166666667],[117,283,67,-0.02499479166666667],[117,283,68,-0.02499479166666667],[117,283,69,-0.02499479166666667],[117,283,70,-0.02499479166666667],[117,283,71,-0.02499479166666667],[117,283,72,-0.02499479166666667],[117,283,73,-0.02499479166666667],[117,283,74,-0.02499479166666667],[117,283,75,-0.02499479166666667],[117,283,76,-0.02499479166666667],[117,283,77,-0.02499479166666667],[117,283,78,-0.02499479166666667],[117,283,79,-0.02499479166666667],[117,284,64,-0.02499479166666667],[117,284,65,-0.02499479166666667],[117,284,66,-0.02499479166666667],[117,284,67,-0.02499479166666667],[117,284,68,-0.02499479166666667],[117,284,69,-0.02499479166666667],[117,284,70,-0.02499479166666667],[117,284,71,-0.02499479166666667],[117,284,72,-0.02499479166666667],[117,284,73,-0.02499479166666667],[117,284,74,-0.02499479166666667],[117,284,75,-0.02499479166666667],[117,284,76,-0.02499479166666667],[117,284,77,-0.02499479166666667],[117,284,78,-0.02499479166666667],[117,284,79,-0.02499479166666667],[117,285,64,-0.02499479166666667],[117,285,65,-0.02499479166666667],[117,285,66,-0.02499479166666667],[117,285,67,-0.02499479166666667],[117,285,68,-0.02499479166666667],[117,285,69,-0.02499479166666667],[117,285,70,-0.02499479166666667],[117,285,71,-0.02499479166666667],[117,285,72,-0.02499479166666667],[117,285,73,-0.02499479166666667],[117,285,74,-0.02499479166666667],[117,285,75,-0.02499479166666667],[117,285,76,-0.02499479166666667],[117,285,77,-0.02499479166666667],[117,285,78,-0.02499479166666667],[117,285,79,-0.02499479166666667],[117,286,64,-0.02499479166666667],[117,286,65,-0.02499479166666667],[117,286,66,-0.02499479166666667],[117,286,67,-0.02499479166666667],[117,286,68,-0.02499479166666667],[117,286,69,-0.02499479166666667],[117,286,70,-0.02499479166666667],[117,286,71,-0.02499479166666667],[117,286,72,-0.02499479166666667],[117,286,73,-0.02499479166666667],[117,286,74,-0.02499479166666667],[117,286,75,-0.02499479166666667],[117,286,76,-0.02499479166666667],[117,286,77,-0.02499479166666667],[117,286,78,-0.02499479166666667],[117,286,79,-0.02499479166666667],[117,287,64,-0.02499479166666667],[117,287,65,-0.02499479166666667],[117,287,66,-0.02499479166666667],[117,287,67,-0.02499479166666667],[117,287,68,-0.02499479166666667],[117,287,69,-0.02499479166666667],[117,287,70,-0.02499479166666667],[117,287,71,-0.02499479166666667],[117,287,72,-0.02499479166666667],[117,287,73,-0.02499479166666667],[117,287,74,-0.02499479166666667],[117,287,75,-0.02499479166666667],[117,287,76,-0.02499479166666667],[117,287,77,-0.02499479166666667],[117,287,78,-0.02499479166666667],[117,287,79,-0.02499479166666667],[117,288,64,-0.02499479166666667],[117,288,65,-0.02499479166666667],[117,288,66,-0.02499479166666667],[117,288,67,-0.02499479166666667],[117,288,68,-0.02499479166666667],[117,288,69,-0.02499479166666667],[117,288,70,-0.02499479166666667],[117,288,71,-0.02499479166666667],[117,288,72,-0.02499479166666667],[117,288,73,-0.02499479166666667],[117,288,74,-0.02499479166666667],[117,288,75,-0.02499479166666667],[117,288,76,-0.02499479166666667],[117,288,77,-0.02499479166666667],[117,288,78,-0.02499479166666667],[117,288,79,-0.02499479166666667],[117,289,64,-0.02499479166666667],[117,289,65,-0.02499479166666667],[117,289,66,-0.02499479166666667],[117,289,67,-0.02499479166666667],[117,289,68,-0.02499479166666667],[117,289,69,-0.02499479166666667],[117,289,70,-0.02499479166666667],[117,289,71,-0.02499479166666667],[117,289,72,-0.02499479166666667],[117,289,73,-0.02499479166666667],[117,289,74,-0.02499479166666667],[117,289,75,-0.02499479166666667],[117,289,76,-0.02499479166666667],[117,289,77,-0.02499479166666667],[117,289,78,-0.02499479166666667],[117,289,79,-0.02499479166666667],[117,290,64,-0.02499479166666667],[117,290,65,-0.02499479166666667],[117,290,66,-0.02499479166666667],[117,290,67,-0.02499479166666667],[117,290,68,-0.02499479166666667],[117,290,69,-0.02499479166666667],[117,290,70,-0.02499479166666667],[117,290,71,-0.02499479166666667],[117,290,72,-0.02499479166666667],[117,290,73,-0.02499479166666667],[117,290,74,-0.02499479166666667],[117,290,75,-0.02499479166666667],[117,290,76,-0.02499479166666667],[117,290,77,-0.02499479166666667],[117,290,78,-0.02499479166666667],[117,290,79,-0.02499479166666667],[117,291,64,-0.02499479166666667],[117,291,65,-0.02499479166666667],[117,291,66,-0.02499479166666667],[117,291,67,-0.02499479166666667],[117,291,68,-0.02499479166666667],[117,291,69,-0.02499479166666667],[117,291,70,-0.02499479166666667],[117,291,71,-0.02499479166666667],[117,291,72,-0.02499479166666667],[117,291,73,-0.02499479166666667],[117,291,74,-0.02499479166666667],[117,291,75,-0.02499479166666667],[117,291,76,-0.02499479166666667],[117,291,77,-0.02499479166666667],[117,291,78,-0.02499479166666667],[117,291,79,-0.02499479166666667],[117,292,64,-0.02499479166666667],[117,292,65,-0.02499479166666667],[117,292,66,-0.02499479166666667],[117,292,67,-0.02499479166666667],[117,292,68,-0.02499479166666667],[117,292,69,-0.02499479166666667],[117,292,70,-0.02499479166666667],[117,292,71,-0.02499479166666667],[117,292,72,-0.02499479166666667],[117,292,73,-0.02499479166666667],[117,292,74,-0.02499479166666667],[117,292,75,-0.02499479166666667],[117,292,76,-0.02499479166666667],[117,292,77,-0.02499479166666667],[117,292,78,-0.02499479166666667],[117,292,79,-0.02499479166666667],[117,293,64,-0.02499479166666667],[117,293,65,-0.02499479166666667],[117,293,66,-0.02499479166666667],[117,293,67,-0.02499479166666667],[117,293,68,-0.02499479166666667],[117,293,69,-0.02499479166666667],[117,293,70,-0.02499479166666667],[117,293,71,-0.02499479166666667],[117,293,72,-0.02499479166666667],[117,293,73,-0.02499479166666667],[117,293,74,-0.02499479166666667],[117,293,75,-0.02499479166666667],[117,293,76,-0.02499479166666667],[117,293,77,-0.02499479166666667],[117,293,78,-0.02499479166666667],[117,293,79,-0.02499479166666667],[117,294,64,-0.02499479166666667],[117,294,65,-0.02499479166666667],[117,294,66,-0.02499479166666667],[117,294,67,-0.02499479166666667],[117,294,68,-0.02499479166666667],[117,294,69,-0.02499479166666667],[117,294,70,-0.02499479166666667],[117,294,71,-0.02499479166666667],[117,294,72,-0.02499479166666667],[117,294,73,-0.02499479166666667],[117,294,74,-0.02499479166666667],[117,294,75,-0.02499479166666667],[117,294,76,-0.02499479166666667],[117,294,77,-0.02499479166666667],[117,294,78,-0.02499479166666667],[117,294,79,-0.02499479166666667],[117,295,64,-0.02499479166666667],[117,295,65,-0.02499479166666667],[117,295,66,-0.02499479166666667],[117,295,67,-0.02499479166666667],[117,295,68,-0.02499479166666667],[117,295,69,-0.02499479166666667],[117,295,70,-0.02499479166666667],[117,295,71,-0.02499479166666667],[117,295,72,-0.02499479166666667],[117,295,73,-0.02499479166666667],[117,295,74,-0.02499479166666667],[117,295,75,-0.02499479166666667],[117,295,76,-0.02499479166666667],[117,295,77,-0.02499479166666667],[117,295,78,-0.02499479166666667],[117,295,79,-0.02499479166666667],[117,296,64,-0.02499479166666667],[117,296,65,-0.02499479166666667],[117,296,66,-0.02499479166666667],[117,296,67,-0.02499479166666667],[117,296,68,-0.02499479166666667],[117,296,69,-0.02499479166666667],[117,296,70,-0.02499479166666667],[117,296,71,-0.02499479166666667],[117,296,72,-0.02499479166666667],[117,296,73,-0.02499479166666667],[117,296,74,-0.02499479166666667],[117,296,75,-0.02499479166666667],[117,296,76,-0.02499479166666667],[117,296,77,-0.02499479166666667],[117,296,78,-0.02499479166666667],[117,296,79,-0.02499479166666667],[117,297,64,-0.02499479166666667],[117,297,65,-0.02499479166666667],[117,297,66,-0.02499479166666667],[117,297,67,-0.02499479166666667],[117,297,68,-0.02499479166666667],[117,297,69,-0.02499479166666667],[117,297,70,-0.02499479166666667],[117,297,71,-0.02499479166666667],[117,297,72,-0.02499479166666667],[117,297,73,-0.02499479166666667],[117,297,74,-0.02499479166666667],[117,297,75,-0.02499479166666667],[117,297,76,-0.02499479166666667],[117,297,77,-0.02499479166666667],[117,297,78,-0.02499479166666667],[117,297,79,-0.02499479166666667],[117,298,64,-0.02499479166666667],[117,298,65,-0.02499479166666667],[117,298,66,-0.02499479166666667],[117,298,67,-0.02499479166666667],[117,298,68,-0.02499479166666667],[117,298,69,-0.02499479166666667],[117,298,70,-0.02499479166666667],[117,298,71,-0.02499479166666667],[117,298,72,-0.02499479166666667],[117,298,73,-0.02499479166666667],[117,298,74,-0.02499479166666667],[117,298,75,-0.02499479166666667],[117,298,76,-0.02499479166666667],[117,298,77,-0.02499479166666667],[117,298,78,-0.02499479166666667],[117,298,79,-0.02499479166666667],[117,299,64,-0.02499479166666667],[117,299,65,-0.02499479166666667],[117,299,66,-0.02499479166666667],[117,299,67,-0.02499479166666667],[117,299,68,-0.02499479166666667],[117,299,69,-0.02499479166666667],[117,299,70,-0.02499479166666667],[117,299,71,-0.02499479166666667],[117,299,72,-0.02499479166666667],[117,299,73,-0.02499479166666667],[117,299,74,-0.02499479166666667],[117,299,75,-0.02499479166666667],[117,299,76,-0.02499479166666667],[117,299,77,-0.02499479166666667],[117,299,78,-0.02499479166666667],[117,299,79,-0.02499479166666667],[117,300,64,-0.02499479166666667],[117,300,65,-0.02499479166666667],[117,300,66,-0.02499479166666667],[117,300,67,-0.02499479166666667],[117,300,68,-0.02499479166666667],[117,300,69,-0.02499479166666667],[117,300,70,-0.02499479166666667],[117,300,71,-0.02499479166666667],[117,300,72,-0.02499479166666667],[117,300,73,-0.02499479166666667],[117,300,74,-0.02499479166666667],[117,300,75,-0.02499479166666667],[117,300,76,-0.02499479166666667],[117,300,77,-0.02499479166666667],[117,300,78,-0.02499479166666667],[117,300,79,-0.02499479166666667],[117,301,64,-0.02499479166666667],[117,301,65,-0.02499479166666667],[117,301,66,-0.02499479166666667],[117,301,67,-0.02499479166666667],[117,301,68,-0.02499479166666667],[117,301,69,-0.02499479166666667],[117,301,70,-0.02499479166666667],[117,301,71,-0.02499479166666667],[117,301,72,-0.02499479166666667],[117,301,73,-0.02499479166666667],[117,301,74,-0.02499479166666667],[117,301,75,-0.02499479166666667],[117,301,76,-0.02499479166666667],[117,301,77,-0.02499479166666667],[117,301,78,-0.02499479166666667],[117,301,79,-0.02499479166666667],[117,302,64,-0.02499479166666667],[117,302,65,-0.02499479166666667],[117,302,66,-0.02499479166666667],[117,302,67,-0.02499479166666667],[117,302,68,-0.02499479166666667],[117,302,69,-0.02499479166666667],[117,302,70,-0.02499479166666667],[117,302,71,-0.02499479166666667],[117,302,72,-0.02499479166666667],[117,302,73,-0.02499479166666667],[117,302,74,-0.02499479166666667],[117,302,75,-0.02499479166666667],[117,302,76,-0.02499479166666667],[117,302,77,-0.02499479166666667],[117,302,78,-0.02499479166666667],[117,302,79,-0.02499479166666667],[117,303,64,-0.02499479166666667],[117,303,65,-0.02499479166666667],[117,303,66,-0.02499479166666667],[117,303,67,-0.02499479166666667],[117,303,68,-0.02499479166666667],[117,303,69,-0.02499479166666667],[117,303,70,-0.02499479166666667],[117,303,71,-0.02499479166666667],[117,303,72,-0.02499479166666667],[117,303,73,-0.02499479166666667],[117,303,74,-0.02499479166666667],[117,303,75,-0.02499479166666667],[117,303,76,-0.02499479166666667],[117,303,77,-0.02499479166666667],[117,303,78,-0.02499479166666667],[117,303,79,-0.02499479166666667],[117,304,64,-0.02499479166666667],[117,304,65,-0.02499479166666667],[117,304,66,-0.02499479166666667],[117,304,67,-0.02499479166666667],[117,304,68,-0.02499479166666667],[117,304,69,-0.02499479166666667],[117,304,70,-0.02499479166666667],[117,304,71,-0.02499479166666667],[117,304,72,-0.02499479166666667],[117,304,73,-0.02499479166666667],[117,304,74,-0.02499479166666667],[117,304,75,-0.02499479166666667],[117,304,76,-0.02499479166666667],[117,304,77,-0.02499479166666667],[117,304,78,-0.02499479166666667],[117,304,79,-0.02499479166666667],[117,305,64,-0.02499479166666667],[117,305,65,-0.02499479166666667],[117,305,66,-0.02499479166666667],[117,305,67,-0.02499479166666667],[117,305,68,-0.02499479166666667],[117,305,69,-0.02499479166666667],[117,305,70,-0.02499479166666667],[117,305,71,-0.02499479166666667],[117,305,72,-0.02499479166666667],[117,305,73,-0.02499479166666667],[117,305,74,-0.02499479166666667],[117,305,75,-0.02499479166666667],[117,305,76,-0.02499479166666667],[117,305,77,-0.02499479166666667],[117,305,78,-0.02499479166666667],[117,305,79,-0.02499479166666667],[117,306,64,-0.02499479166666667],[117,306,65,-0.02499479166666667],[117,306,66,-0.02499479166666667],[117,306,67,-0.02499479166666667],[117,306,68,-0.02499479166666667],[117,306,69,-0.02499479166666667],[117,306,70,-0.02499479166666667],[117,306,71,-0.02499479166666667],[117,306,72,-0.02499479166666667],[117,306,73,-0.02499479166666667],[117,306,74,-0.02499479166666667],[117,306,75,-0.02499479166666667],[117,306,76,-0.02499479166666667],[117,306,77,-0.02499479166666667],[117,306,78,-0.02499479166666667],[117,306,79,-0.02499479166666667],[117,307,64,-0.02499479166666667],[117,307,65,-0.02499479166666667],[117,307,66,-0.02499479166666667],[117,307,67,-0.02499479166666667],[117,307,68,-0.02499479166666667],[117,307,69,-0.02499479166666667],[117,307,70,-0.02499479166666667],[117,307,71,-0.02499479166666667],[117,307,72,-0.02499479166666667],[117,307,73,-0.02499479166666667],[117,307,74,-0.02499479166666667],[117,307,75,-0.02499479166666667],[117,307,76,-0.02499479166666667],[117,307,77,-0.02499479166666667],[117,307,78,-0.02499479166666667],[117,307,79,-0.02499479166666667],[117,308,64,-0.02499479166666667],[117,308,65,-0.02499479166666667],[117,308,66,-0.02499479166666667],[117,308,67,-0.02499479166666667],[117,308,68,-0.02499479166666667],[117,308,69,-0.02499479166666667],[117,308,70,-0.02499479166666667],[117,308,71,-0.02499479166666667],[117,308,72,-0.02499479166666667],[117,308,73,-0.02499479166666667],[117,308,74,-0.02499479166666667],[117,308,75,-0.02499479166666667],[117,308,76,-0.02499479166666667],[117,308,77,-0.02499479166666667],[117,308,78,-0.02499479166666667],[117,308,79,-0.02499479166666667],[117,309,64,-0.02499479166666667],[117,309,65,-0.02499479166666667],[117,309,66,-0.02499479166666667],[117,309,67,-0.02499479166666667],[117,309,68,-0.02499479166666667],[117,309,69,-0.02499479166666667],[117,309,70,-0.02499479166666667],[117,309,71,-0.02499479166666667],[117,309,72,-0.02499479166666667],[117,309,73,-0.02499479166666667],[117,309,74,-0.02499479166666667],[117,309,75,-0.02499479166666667],[117,309,76,-0.02499479166666667],[117,309,77,-0.02499479166666667],[117,309,78,-0.02499479166666667],[117,309,79,-0.02499479166666667],[117,310,64,-0.02499479166666667],[117,310,65,-0.02499479166666667],[117,310,66,-0.02499479166666667],[117,310,67,-0.02499479166666667],[117,310,68,-0.02499479166666667],[117,310,69,-0.02499479166666667],[117,310,70,-0.02499479166666667],[117,310,71,-0.02499479166666667],[117,310,72,-0.02499479166666667],[117,310,73,-0.02499479166666667],[117,310,74,-0.02499479166666667],[117,310,75,-0.02499479166666667],[117,310,76,-0.02499479166666667],[117,310,77,-0.02499479166666667],[117,310,78,-0.02499479166666667],[117,310,79,-0.02499479166666667],[117,311,64,-0.02499479166666667],[117,311,65,-0.02499479166666667],[117,311,66,-0.02499479166666667],[117,311,67,-0.02499479166666667],[117,311,68,-0.02499479166666667],[117,311,69,-0.02499479166666667],[117,311,70,-0.02499479166666667],[117,311,71,-0.02499479166666667],[117,311,72,-0.02499479166666667],[117,311,73,-0.02499479166666667],[117,311,74,-0.02499479166666667],[117,311,75,-0.02499479166666667],[117,311,76,-0.02499479166666667],[117,311,77,-0.02499479166666667],[117,311,78,-0.02499479166666667],[117,311,79,-0.02499479166666667],[117,312,64,-0.02499479166666667],[117,312,65,-0.02499479166666667],[117,312,66,-0.02499479166666667],[117,312,67,-0.02499479166666667],[117,312,68,-0.02499479166666667],[117,312,69,-0.02499479166666667],[117,312,70,-0.02499479166666667],[117,312,71,-0.02499479166666667],[117,312,72,-0.02499479166666667],[117,312,73,-0.02499479166666667],[117,312,74,-0.02499479166666667],[117,312,75,-0.02499479166666667],[117,312,76,-0.02499479166666667],[117,312,77,-0.02499479166666667],[117,312,78,-0.02499479166666667],[117,312,79,-0.02499479166666667],[117,313,64,-0.02499479166666667],[117,313,65,-0.02499479166666667],[117,313,66,-0.02499479166666667],[117,313,67,-0.02499479166666667],[117,313,68,-0.02499479166666667],[117,313,69,-0.02499479166666667],[117,313,70,-0.02499479166666667],[117,313,71,-0.02499479166666667],[117,313,72,-0.02499479166666667],[117,313,73,-0.02499479166666667],[117,313,74,-0.02499479166666667],[117,313,75,-0.02499479166666667],[117,313,76,-0.02499479166666667],[117,313,77,-0.02499479166666667],[117,313,78,-0.02499479166666667],[117,313,79,-0.02499479166666667],[117,314,64,-0.02499479166666667],[117,314,65,-0.02499479166666667],[117,314,66,-0.02499479166666667],[117,314,67,-0.02499479166666667],[117,314,68,-0.02499479166666667],[117,314,69,-0.02499479166666667],[117,314,70,-0.02499479166666667],[117,314,71,-0.02499479166666667],[117,314,72,-0.02499479166666667],[117,314,73,-0.02499479166666667],[117,314,74,-0.02499479166666667],[117,314,75,-0.02499479166666667],[117,314,76,-0.02499479166666667],[117,314,77,-0.02499479166666667],[117,314,78,-0.02499479166666667],[117,314,79,-0.02499479166666667],[117,315,64,-0.02499479166666667],[117,315,65,-0.02499479166666667],[117,315,66,-0.02499479166666667],[117,315,67,-0.02499479166666667],[117,315,68,-0.02499479166666667],[117,315,69,-0.02499479166666667],[117,315,70,-0.02499479166666667],[117,315,71,-0.02499479166666667],[117,315,72,-0.02499479166666667],[117,315,73,-0.02499479166666667],[117,315,74,-0.02499479166666667],[117,315,75,-0.02499479166666667],[117,315,76,-0.02499479166666667],[117,315,77,-0.02499479166666667],[117,315,78,-0.02499479166666667],[117,315,79,-0.02499479166666667],[117,316,64,-0.02499479166666667],[117,316,65,-0.02499479166666667],[117,316,66,-0.02499479166666667],[117,316,67,-0.02499479166666667],[117,316,68,-0.02499479166666667],[117,316,69,-0.02499479166666667],[117,316,70,-0.02499479166666667],[117,316,71,-0.02499479166666667],[117,316,72,-0.02499479166666667],[117,316,73,-0.02499479166666667],[117,316,74,-0.02499479166666667],[117,316,75,-0.02499479166666667],[117,316,76,-0.02499479166666667],[117,316,77,-0.02499479166666667],[117,316,78,-0.02499479166666667],[117,316,79,-0.02499479166666667],[117,317,64,-0.02499479166666667],[117,317,65,-0.02499479166666667],[117,317,66,-0.02499479166666667],[117,317,67,-0.02499479166666667],[117,317,68,-0.02499479166666667],[117,317,69,-0.02499479166666667],[117,317,70,-0.02499479166666667],[117,317,71,-0.02499479166666667],[117,317,72,-0.02499479166666667],[117,317,73,-0.02499479166666667],[117,317,74,-0.02499479166666667],[117,317,75,-0.02499479166666667],[117,317,76,-0.02499479166666667],[117,317,77,-0.02499479166666667],[117,317,78,-0.02499479166666667],[117,317,79,-0.02499479166666667],[117,318,64,-0.02499479166666667],[117,318,65,-0.02499479166666667],[117,318,66,-0.02499479166666667],[117,318,67,-0.02499479166666667],[117,318,68,-0.02499479166666667],[117,318,69,-0.02499479166666667],[117,318,70,-0.02499479166666667],[117,318,71,-0.02499479166666667],[117,318,72,-0.02499479166666667],[117,318,73,-0.02499479166666667],[117,318,74,-0.02499479166666667],[117,318,75,-0.02499479166666667],[117,318,76,-0.02499479166666667],[117,318,77,-0.02499479166666667],[117,318,78,-0.02499479166666667],[117,318,79,-0.02499479166666667],[117,319,64,-0.02499479166666667],[117,319,65,-0.02499479166666667],[117,319,66,-0.02499479166666667],[117,319,67,-0.02499479166666667],[117,319,68,-0.02499479166666667],[117,319,69,-0.02499479166666667],[117,319,70,-0.02499479166666667],[117,319,71,-0.02499479166666667],[117,319,72,-0.02499479166666667],[117,319,73,-0.02499479166666667],[117,319,74,-0.02499479166666667],[117,319,75,-0.02499479166666667],[117,319,76,-0.02499479166666667],[117,319,77,-0.02499479166666667],[117,319,78,-0.02499479166666667],[117,319,79,-0.02499479166666667],[118,-64,64,0.037482421875],[118,-64,65,0.037482421875],[118,-64,66,0.037482421875],[118,-64,67,0.037482421875],[118,-64,68,0.037482421875],[118,-64,69,0.037482421875],[118,-64,70,0.037482421875],[118,-64,71,0.037482421875],[118,-64,72,0.037482421875],[118,-64,73,0.037482421875],[118,-64,74,0.037482421875],[118,-64,75,0.037482421875],[118,-64,76,0.037482421875],[118,-64,77,0.037482421875],[118,-64,78,0.037482421875],[118,-64,79,0.037482421875],[118,-63,64,0.040486042086708994],[118,-63,65,0.040565671284819436],[118,-63,66,0.040646799851377285],[118,-63,67,0.040729187783515176],[118,-63,68,0.040812908769590234],[118,-63,69,0.040898204066757884],[118,-63,70,0.040985217041996196],[118,-63,71,0.04107399117429747],[118,-63,72,0.04116447459557846],[118,-63,73,0.041256525368382216],[118,-63,74,0.04134991751071121],[118,-63,75,0.04144434777671019],[118,-63,76,0.041539443200277845],[118,-63,77,0.041634769407044726],[118,-63,78,0.04172983969851765],[118,-63,79,0.041824124910579706],[118,-62,64,0.043541245339382535],[118,-62,65,0.043702982522100836],[118,-62,66,0.04386780376076878],[118,-62,67,0.044035261837118554],[118,-62,68,0.0442054888263016],[118,-62,69,0.04437891524840042],[118,-62,70,0.04455577629339713],[118,-62,71,0.044736109801112596],[118,-62,72,0.04491976638846956],[118,-62,73,0.04510642093665502],[118,-62,74,0.045295585454706626],[118,-62,75,0.0454866233328862],[118,-62,76,0.045678764996045826],[118,-62,77,0.04587112496406304],[118,-62,78,0.0460627203233397],[118,-62,79,0.04625249061036545],[118,-61,64,0.04665424010006404],[118,-61,65,0.04690005642919804],[118,-61,66,0.047150561810352744],[118,-61,67,0.04740514573760267],[118,-61,68,0.04766398189322995],[118,-61,69,0.04792763034863137],[118,-61,70,0.04819636442076801],[118,-61,71,0.04847016999348762],[118,-61,72,0.04874876142724403],[118,-61,73,0.04903159937697034],[118,-61,74,0.04931791053842398],[118,-61,75,0.049606709338711044],[118,-61,76,0.04989682158213141],[118,-61,77,0.050186910058010424],[118,-61,78,0.05047550211281974],[118,-61,79,0.05076101918470577],[118,-60,64,0.04983026397203373],[118,-60,65,0.0501616369751654],[118,-60,66,0.05049926028532013],[118,-60,67,0.050842412322123484],[118,-60,68,0.05119129093033625],[118,-60,69,0.05154652124718508],[118,-60,70,0.05190836104462707],[118,-60,71,0.05227670218158141],[118,-60,72,0.0526510917415344],[118,-60,73,0.05303075558597504],[118,-60,74,0.05341462434689053],[118,-60,75,0.053801361875586776],[118,-60,76,0.05418939615923438],[118,-60,77,0.05457695271083715],[118,-60,78,0.05496209043281521],[118,-60,79,0.05534273994917121],[118,-59,64,0.053073420727348046],[118,-59,65,0.05349137060703815],[118,-59,66,0.053917028657374584],[118,-59,67,0.0543496190767338],[118,-59,68,0.054789346089092465],[118,-59,69,0.05523683322149005],[118,-59,70,0.05569227067474213],[118,-59,71,0.05615541920422537],[118,-59,72,0.05662563532768979],[118,-59,73,0.057101899442054724],[118,-59,74,0.0575828468755968],[118,-59,75,0.058066801894730194],[118,-59,76,0.05855181467752071],[118,-59,77,0.05903570125925409],[118,-59,78,0.05951608644884265],[118,-59,79,0.059990449708714],[118,-58,64,0.05638661017937338],[118,-58,65,0.05689176079272507],[118,-58,66,0.057405922284968804],[118,-58,67,0.05792832166951229],[118,-58,68,0.058459151044532455],[118,-58,69,0.058998965343713426],[118,-58,70,0.0595478375904984],[118,-58,71,0.06010536514434535],[118,-58,72,0.06067069741485226],[118,-58,73,0.061242566977095264],[118,-58,74,0.06181932411872741],[118,-58,75,0.06239897484105728],[118,-58,76,0.06297922232818949],[118,-58,77,0.06355751189047443],[118,-58,78,0.06413107938104613],[118,-58,79,0.06469700307726647],[118,-57,64,0.05977156797150251],[118,-57,65,0.06036423478499151],[118,-57,66,0.060967019622194384],[118,-57,67,0.06157920424418457],[118,-57,68,0.06220094805704235],[118,-57,69,0.06283267091663834],[118,-57,70,0.06347428108757565],[118,-57,71,0.06412518361552055],[118,-57,72,0.06478430882342624],[118,-57,73,0.06545014469659492],[118,-57,74,0.0661207731923504],[118,-57,75,0.06679391050079879],[118,-57,76,0.06746695127407931],[118,-57,77,0.06813701683277602],[118,-57,78,0.06880100734987134],[118,-57,79,0.06945565800493268],[118,-56,64,0.06322865221871946],[118,-56,65,0.06390891693639673],[118,-56,66,0.06460018511359504],[118,-56,67,0.0653018342415367],[118,-56,68,0.06601396632894482],[118,-56,69,0.0667368004206527],[118,-56,70,0.0674700337075544],[118,-56,71,0.06821285175931051],[118,-56,72,0.06896395613255887],[118,-56,73,0.06972159633222857],[118,-56,74,0.07048360616771251],[118,-56,75,0.07124744453559488],[118,-56,76,0.07201024065078648],[118,-56,77,0.07276884373845315],[118,-56,78,0.07351987719014434],[118,-56,79,0.07425979717923056],[118,-55,64,0.06675422960902624],[118,-55,65,0.06752171431233567],[118,-55,66,0.06830085274890364],[118,-55,67,0.069091144481818],[118,-55,68,0.06989260617504174],[118,-55,69,0.0707051971903626],[118,-55,70,0.07152836535036648],[118,-55,71,0.0723610582374169],[118,-55,72,0.07320174793913942],[118,-55,73,0.07404846060885137],[118,-55,74,0.07489881089021533],[118,-55,75,0.07575004124475201],[118,-55,76,0.07659906621038945],[118,-55,77,0.07744252160914197],[118,-55,78,0.07827681871243375],[118,-55,79,0.0790982033637343],[118,-54,64,0.07034143640625055],[118,-54,65,0.0711951358414086],[118,-54,66,0.07206090311270284],[118,-54,67,0.07293836948699044],[118,-54,68,0.07382743634957073],[118,-54,69,0.07472775637251038],[118,-54,70,0.07563850306575898],[118,-54,71,0.07655838144500693],[118,-54,72,0.07748564736989806],[118,-54,73,0.07841813220974511],[118,-54,74,0.07935327289663222],[118,-54,75,0.08028814741466843],[118,-54,76,0.08121951576314676],[118,-54,77,0.08214386642067702],[118,-54,78,0.08305746832715452],[118,-54,79,0.08395642839095498],[118,-53,64,0.0739816269813915],[118,-53,65,0.074919878402708],[118,-53,66,0.07587038818153355],[118,-53,67,0.07683291070450629],[118,-53,68,0.07780720049610901],[118,-53,69,0.07879257036149509],[118,-53,70,0.07978790950153898],[118,-53,71,0.08079169087192094],[118,-53,72,0.08180198197854907],[118,-53,73,0.08281646162640205],[118,-53,74,0.08383244269694719],[118,-53,75,0.08484690101768802],[118,-53,76,0.08585651037577069],[118,-53,77,0.08685768371616846],[118,-53,78,0.08784662055394922],[118,-53,79,0.0888193606197985],[118,-52,64,0.0776648723404045],[118,-52,65,0.07868535321861694],[118,-52,66,0.07971808566900881],[118,-52,67,0.08076291986838467],[118,-52,68,0.08181943068012947],[118,-52,69,0.0828865728862859],[118,-52,70,0.08396295704881483],[118,-52,71,0.08504684988605078],[118,-52,72,0.08613617281797566],[118,-52,73,0.08722850727277552],[118,-52,74,0.08832110685123977],[118,-52,75,0.08941091643333293],[118,-52,76,0.0904945982988132],[118,-52,77,0.09156856532135269],[118,-52,78,0.09262902128344212],[118,-52,79,0.0936720083477623],[118,-51,64,0.08138049012285178],[118,-51,65,0.0824802399395987],[118,-51,66,0.08359207698068503],[118,-51,67,0.0847159015699961],[118,-51,68,0.08585107543774025],[118,-51,69,0.08699619270597221],[118,-51,70,0.08814960657890498],[118,-51,71,0.08930941810395293],[118,-51,72,0.09047345824034268],[118,-51,73,0.09163927775019294],[118,-51,74,0.09280414503739262],[118,-51,75,0.09396505204642673],[118,-51,76,0.09511872831962934],[118,-51,77,0.09626166329746116],[118,-51,78,0.09739013693255633],[118,-51,79,0.09850025867483021],[118,-50,64,0.0850850262327398],[118,-50,65,0.08629308462826733],[118,-50,66,0.08748036551099059],[118,-50,67,0.08867935226082523],[118,-50,68,0.08988916000437144],[118,-50,69,0.09110803495944765],[118,-50,70,0.09233410912583911],[118,-50,71,0.09356537192298418],[118,-50,72,0.09479963111677943],[118,-50,73,0.09603448295470951],[118,-50,74,0.09726729167164802],[118,-50,75,0.09849517851405362],[118,-50,76,0.09971502041484659],[118,-50,77,0.10092345843529403],[118,-50,78,0.10211691607401743],[118,-50,79,0.10329162752718281],[118,-49,64,0.0884812153595255],[118,-49,65,0.0898607645374834],[118,-49,66,0.09125319379957172],[118,-49,67,0.09264089312724698],[118,-49,68,0.09392107032516382],[118,-49,69,0.09520932170637278],[118,-49,70,0.09650360518365955],[118,-49,71,0.09780186136398553],[118,-49,72,0.09910194848914979],[118,-49,73,0.10040158834783112],[118,-49,74,0.10169832336673491],[118,-49,75,0.1029894850718608],[118,-49,76,0.1042721740930302],[118,-49,77,0.10554325186605626],[118,-49,78,0.1067993441675775],[118,-49,79,0.1080368565980732],[118,-48,64,0.09189390866440443],[118,-48,65,0.09337127786739069],[118,-48,66,0.09486406039703664],[118,-48,67,0.09636880036409973],[118,-48,68,0.09788274636664088],[118,-48,69,0.0992874270490173],[118,-48,70,0.10064609401978813],[118,-48,71,0.10200760830007545],[118,-48,72,0.10336994392411358],[118,-48,73,0.10473101738818204],[118,-48,74,0.10608861878083808],[118,-48,75,0.10744035650354171],[118,-48,76,0.10878361580095444],[118,-48,77,0.11011553129796048],[118,-48,78,0.11143297371722112],[118,-48,79,0.11273255092732358],[118,-47,64,0.0953297792559832],[118,-47,65,0.0969046833205503],[118,-47,66,0.09849739689346644],[118,-47,67,0.10010456501606826],[118,-47,68,0.10172358594368675],[118,-47,69,0.10333060967376909],[118,-47,70,0.10475070111131242],[118,-47,71,0.10617269649451566],[118,-47,72,0.10759473667508854],[118,-47,73,0.1090149853862293],[118,-47,74,0.11043153163034143],[118,-47,75,0.11184230818877425],[118,-47,76,0.11324502652210362],[118,-47,77,0.11463712830318847],[118,-47,78,0.11601575379752048],[118,-47,79,0.1173777272767125],[118,-46,64,0.09879417153256574],[118,-46,65,0.10046550677688684],[118,-46,66,0.10215678212965391],[118,-46,67,0.10386487129144793],[118,-46,68,0.10558738685984417],[118,-46,69,0.10732212809156386],[118,-46,70,0.10880798238551542],[118,-46,71,0.1102886791612956],[118,-46,72,0.11176894083168175],[118,-46,73,0.1132472121889057],[118,-46,74,0.11472191248181658],[118,-46,75,0.1161913260106609],[118,-46,76,0.11765351193454751],[118,-46,77,0.11910623357950904],[118,-46,78,0.12054690750240142],[118,-46,79,0.12197257253175275],[118,-45,64,0.10229074005945073],[118,-45,65,0.10405654040351418],[118,-45,66,0.10584402819448369],[118,-45,67,0.10765044260324091],[118,-45,68,0.10947368370993248],[118,-45,69,0.1112723745884337],[118,-45,70,0.11281011326484042],[118,-45,71,0.11434872178049907],[118,-45,72,0.1158867593310962],[118,-45,73,0.11742296552936125],[118,-45,74,0.11895610035171861],[118,-45,75,0.12048480590915196],[118,-45,76,0.12200749040999101],[118,-45,77,0.12352223464679912],[118,-45,78,0.12502672130159367],[118,-45,79,0.12651818732363995],[118,-44,64,0.10582115886311676],[118,-44,65,0.10767857406633626],[118,-44,66,0.10955893841869496],[118,-44,67,0.1114599989349415],[118,-44,68,0.11338002422045984],[118,-44,69,0.11515524519353602],[118,-44,70,0.11675102371766563],[118,-44,71,0.11834769591924826],[118,-44,72,0.11994403460443227],[118,-44,73,0.12153906722667092],[118,-44,74,0.12313188389928693],[118,-44,75,0.12472147023003413],[118,-44,76,0.12630656539147153],[118,-44,77,0.12788554580048594],[118,-44,78,0.1294563347368815],[118,-44,79,0.13101633818483396],[118,-43,64,0.10938490046016257],[118,-43,65,0.11133019556828204],[118,-43,66,0.1132991325777092],[118,-43,67,0.11529011036266734],[118,-43,68,0.11730185413887564],[118,-43,69,0.11897205932606908],[118,-43,70,0.12062647969220439],[118,-43,71,0.12228222431298519],[118,-43,72,0.12393825598028094],[118,-43,73,0.12559386221833135],[118,-43,74,0.12724843205137695],[118,-43,75,0.1289012605622338],[118,-43,76,0.13055138169723723],[118,-43,77,0.13219742972747292],[118,-43,78,0.13383752972724888],[118,-43,79,0.13546921737836376],[118,-42,64,0.11297908416683579],[118,-42,65,0.11500765928911176],[118,-42,66,0.11705993889622472],[118,-42,67,0.11913511515261314],[118,-42,68,0.12100905713944753],[118,-42,69,0.12271971627093886],[118,-42,70,0.12443411115303593],[118,-42,71,0.12615067731185434],[118,-42,72,0.12786852382795758],[118,-42,73,0.129587150280643],[118,-42,74,0.1313061937850144],[118,-42,75,0.133025206660521],[118,-42,76,0.1347434652222112],[118,-42,77,0.13645981013543382],[118,-42,78,0.1381725187202042],[118,-42,79,0.1398792095327743],[118,-41,64,0.11659839343629913],[118,-41,65,0.11870482298840604],[118,-41,66,0.12083435261745126],[118,-41,67,0.12286213065616247],[118,-41,68,0.12462576320332347],[118,-41,69,0.1263970765223275],[118,-41,70,0.12817338675945317],[118,-41,71,0.12995312062764808],[118,-41,72,0.1317354702670906],[118,-41,73,0.1335200801528444],[118,-41,74,0.13530676667329777],[118,-41,75,0.1370952709520013],[118,-41,76,0.13888504543321895],[118,-41,77,0.14067507469602886],[118,-41,78,0.14246373090186135],[118,-41,79,0.14424866421549934],[118,-40,64,0.12023506214440967],[118,-40,65,0.1224131526940693],[118,-40,66,0.12453642919562771],[118,-40,67,0.1263466493719512],[118,-40,68,0.1281709824736104],[118,-40,69,0.13000490528318157],[118,-40,70,0.13184553502467083],[118,-40,71,0.1336912141314289],[118,-40,72,0.13554113610267055],[118,-40,73,0.13739500563382184],[118,-40,74,0.13925273367632113],[118,-40,75,0.14111416802599747],[118,-40,76,0.14297885998197757],[118,-40,77,0.14484586755773196],[118,-40,78,0.14671359566067252],[118,-40,79,0.14857967358594312],[118,-39,64,0.1204505079475892],[118,-39,65,0.1225315267796863],[118,-39,66,0.12430483605266607],[118,-39,67,0.12610163830468987],[118,-39,68,0.1279147861423901],[118,-39,69,0.1297395270125529],[118,-39,70,0.13157282145269095],[118,-39,71,0.133412907984578],[118,-39,72,0.13525892001425183],[118,-39,73,0.13711053735079437],[118,-39,74,0.13896767300034707],[118,-39,75,0.1408301958334613],[118,-39,76,0.14269768966523422],[118,-39,77,0.14456924922608344],[118,-39,78,0.14644331343462322],[118,-39,79,0.14561009006793735],[118,-38,64,0.12054710487743542],[118,-38,65,0.122271148384803],[118,-38,66,0.1240302421065597],[118,-38,67,0.12581614618745715],[118,-38,68,0.1276209740374031],[118,-38,69,0.12943968058729505],[118,-38,70,0.13126898859131814],[118,-38,71,0.13310693954046895],[118,-38,72,0.13495250681865983],[118,-38,73,0.13680524333895733],[118,-38,74,0.13866496430956404],[118,-38,75,0.14053146571924371],[118,-38,76,0.14115473685435884],[118,-38,77,0.14216626117092634],[118,-38,78,0.14137557198095113],[118,-38,79,0.13550215286984957],[118,-37,64,0.12026790234012545],[118,-37,65,0.12197520582897868],[118,-37,66,0.12372212289305631],[118,-37,67,0.12549946585742286],[118,-37,68,0.1272985834273165],[118,-37,69,0.12911406674831746],[118,-37,70,0.13094231416104118],[118,-37,71,0.13278107426411395],[118,-37,72,0.13462906036339012],[118,-37,73,0.13455304992710798],[118,-37,74,0.13231364747907579],[118,-37,75,0.135727595196736],[118,-37,76,0.13334412980180313],[118,-37,77,0.13330850547356893],[118,-37,78,0.13193348695137677],[118,-37,79,0.12860468564915062],[118,-36,64,0.11648374974690323],[118,-36,65,0.12165337675470092],[118,-36,66,0.123389966026898],[118,-36,67,0.1251608088362598],[118,-36,68,0.12695647029235613],[118,-36,69,0.1287711001411029],[118,-36,70,0.13060068229604807],[118,-36,71,0.1324425762631046],[118,-36,72,0.1331143028191825],[118,-36,73,0.1302649777094045],[118,-36,74,0.1274461722877512],[118,-36,75,0.1288686371356881],[118,-36,76,0.12629743858036926],[118,-36,77,0.12632441178815776],[118,-36,78,0.12509764831932316],[118,-36,79,0.12369012700564329],[118,-35,64,0.11467016009068018],[118,-35,65,0.12048082070894015],[118,-35,66,0.12304300172502518],[118,-35,67,0.12480904400863765],[118,-35,68,0.12660305828815976],[118,-35,69,0.1284186708962525],[118,-35,70,0.13005990693818362],[118,-35,71,0.12970993560256353],[118,-35,72,0.12827141760738445],[118,-35,73,0.1275601448624532],[118,-35,74,0.12629681209806634],[118,-35,75,0.12553376645351788],[118,-35,76,0.12327576153490961],[118,-35,77,0.12216615269495694],[118,-35,78,0.11952158006492965],[118,-35,79,0.11900462154348068],[118,-34,64,0.11562121689783655],[118,-34,65,0.12096960392237584],[118,-34,66,0.12268992870131729],[118,-34,67,0.12445243163056648],[118,-34,68,0.12624608299607754],[118,-34,69,0.1280639014650107],[118,-34,70,0.12990077001576872],[118,-34,71,0.1308109073633102],[118,-34,72,0.12700947728148115],[118,-34,73,0.12595944406217183],[118,-34,74,0.12684383409738473],[118,-34,75,0.1253327886270043],[118,-34,76,0.12335621310216369],[118,-34,77,0.12131518324097978],[118,-34,78,0.11628403058904893],[118,-34,79,0.1142449714511235],[118,-33,64,0.11602940871153454],[118,-33,65,0.12062500480528666],[118,-33,66,0.12233863470224708],[118,-33,67,0.124098351972641],[118,-33,68,0.12589233080623827],[118,-33,69,0.12771289810282463],[118,-33,70,0.12955425546925156],[118,-33,71,0.13141205144067686],[118,-33,72,0.130971776960149],[118,-33,73,0.12798743932598833],[118,-33,74,0.12857868510874257],[118,-33,75,0.1264541532111292],[118,-33,76,0.12395667868900426],[118,-33,77,0.12219393310017516],[118,-33,78,0.11653328119140516],[118,-33,79,0.1133074881646423],[118,-32,64,0.11810808768387572],[118,-32,65,0.12028863202193517],[118,-32,66,0.1219959110066002],[118,-32,67,0.12375302795285992],[118,-32,68,0.12554737182435585],[118,-32,69,0.1273704964329506],[118,-32,70,0.12921584257272242],[118,-32,71,0.13107833105036618],[118,-32,72,0.1329540443603536],[118,-32,73,0.1314230259563564],[118,-32,74,0.13192173761722742],[118,-32,75,0.13130232572639336],[118,-32,76,0.1272986190070664],[118,-32,77,0.12503202555252346],[118,-32,78,0.12005485720040017],[118,-32,79,0.11535578580726787],[118,-31,64,0.11833234401198281],[118,-31,65,0.11996642193128583],[118,-31,66,0.12166716026339958],[118,-31,67,0.12342124115998335],[118,-31,68,0.12521528623408987],[118,-31,69,0.1270400005568782],[118,-31,70,0.1288879940855814],[118,-31,71,0.13075339965134775],[118,-31,72,0.1326315757237884],[118,-31,73,0.134518829585397],[118,-31,74,0.13641216138439732],[118,-31,75,0.13754381634451668],[118,-31,76,0.13256264148491398],[118,-31,77,0.12880875567110547],[118,-31,78,0.12465446586966922],[118,-31,79,0.12071778262958809],[118,-30,64,0.11803939423586321],[118,-30,65,0.11966267433562673],[118,-30,66,0.12135609708845198],[118,-30,67,0.12310604070952516],[118,-30,68,0.12489838358210145],[118,-30,69,0.12672291520734869],[118,-30,70,0.1285713571453999],[118,-30,71,0.13043700915288486],[118,-30,72,0.1323144736309523],[118,-30,73,0.13419939705605238],[118,-30,74,0.13608822883506907],[118,-30,75,0.13797799797640256],[118,-30,76,0.13587846649633575],[118,-30,77,0.13148574076205674],[118,-30,78,0.12733144704603597],[118,-30,79,0.12577349089419804],[118,-29,64,0.11776814537751498],[118,-29,65,0.11937973947105934],[118,-29,66,0.1210644408789913],[118,-29,67,0.12280844440799968],[118,-29,68,0.12459691448038408],[118,-29,69,0.1264186704607205],[118,-29,70,0.1282645036502159],[118,-29,71,0.13012685361080623],[118,-29,72,0.13199955389041784],[118,-29,73,0.13387759116709425],[118,-29,74,0.1357568782318771],[118,-29,75,0.13763404118466924],[118,-29,76,0.13764787540085485],[118,-29,77,0.1331932481486437],[118,-29,78,0.1288490858015162],[118,-29,79,0.12905974438616769],[118,-28,64,0.11751929863502547],[118,-28,65,0.11911769665171275],[118,-28,66,0.12079160033512931],[118,-28,67,0.12252713172439836],[118,-28,68,0.12430877423749813],[118,-28,69,0.1261243385359876],[118,-28,70,0.12796366293326963],[118,-28,71,0.12981832057867262],[118,-28,72,0.13168138498878026],[118,-28,73,0.133547205406103],[118,-28,74,0.13541119239035365],[118,-28,75,0.1372696140063656],[118,-28,76,0.13911940293516512],[118,-28,77,0.13647080801862022],[118,-28,78,0.13210897251666545],[118,-28,79,0.13092138572763384],[118,-27,64,0.11729101115013434],[118,-27,65,0.11887402407194447],[118,-27,66,0.1205343491938134],[118,-27,67,0.12225812807868056],[118,-27,68,0.12402919793472225],[118,-27,69,0.1258343422057401],[118,-27,70,0.12766244626880113],[118,-27,71,0.12950423457097443],[118,-27,72,0.13135205337625733],[118,-27,73,0.13319965984513915],[118,-27,74,0.13504201784603972],[118,-27,75,0.13679803391782905],[118,-27,76,0.1385537498054234],[118,-27,77,0.1403183584763706],[118,-27,78,0.13637585304037714],[118,-27,79,0.13270949792957343],[118,-26,64,0.11707855446235245],[118,-26,65,0.1186432592777681],[118,-26,66,0.12028649268164955],[118,-26,67,0.12199447995127502],[118,-26,68,0.12375044645087696],[118,-26,69,0.12554015432594876],[118,-26,70,0.1273163543202459],[118,-26,71,0.12891130038888898],[118,-26,72,0.130538503400694],[118,-26,73,0.1321976353582661],[118,-26,74,0.1338865789548032],[118,-26,75,0.13560166324610343],[118,-26,76,0.13733789447594733],[118,-26,77,0.1390891817039922],[118,-26,78,0.14084855688253525],[118,-26,79,0.13380357108582822],[118,-25,64,0.11687394673505794],[118,-25,65,0.11841664759623168],[118,-25,66,0.12003853511728264],[118,-25,67,0.12172594399397006],[118,-25,68,0.12324004696038846],[118,-25,69,0.12472797937456619],[118,-25,70,0.126245865738878],[118,-25,71,0.1277985203508815],[118,-25,72,0.12938833109694975],[118,-25,73,0.1310154977871654],[118,-25,74,0.1326782691918783],[118,-25,75,0.13437317847883762],[118,-25,76,0.13609527671025418],[118,-25,77,0.1378383640325932],[118,-25,78,0.1395952181780035],[118,-25,79,0.13419970559722202],[118,-24,64,0.11657257041489248],[118,-24,65,0.11798637767468739],[118,-24,66,0.11938996310727602],[118,-24,67,0.12079353873782418],[118,-24,68,0.12221095424568708],[118,-24,69,0.12365365472920535],[118,-24,70,0.1251300231145095],[118,-24,71,0.12664562056772347],[118,-24,72,0.1282034215737302],[118,-24,73,0.12980405044648857],[118,-24,74,0.13144601903476696],[118,-24,75,0.13312596532225515],[118,-24,76,0.1348388925697747],[118,-24,77,0.1365784086096681],[118,-24,78,0.13833696487838731],[118,-24,79,0.1344670445554886],[118,-23,64,0.1156886073773181],[118,-23,65,0.11705250037345223],[118,-23,66,0.11840784503919903],[118,-23,67,0.11976482296215932],[118,-23,68,0.12113786672375713],[118,-23,69,0.12253937663315406],[118,-23,70,0.12397854846703205],[118,-23,71,0.1254615985536975],[118,-23,72,0.12699199697746205],[118,-23,73,0.12857070445648813],[118,-23,74,0.130196412664352],[118,-23,75,0.13186578768903925],[118,-23,76,0.1335737162606546],[118,-23,77,0.1353135543309683],[118,-23,78,0.13707737755429958],[118,-23,79,0.13314679694449205],[118,-22,64,0.11476109317464833],[118,-22,65,0.1160765640733639],[118,-22,66,0.11738573264807135],[118,-22,67,0.11869869396202105],[118,-22,68,0.12003035937962055],[118,-22,69,0.12139397867662362],[118,-22,70,0.12279946301160612],[118,-22,71,0.12425359503362417],[118,-22,72,0.12576026046756547],[118,-22,73,0.12732068553634096],[118,-22,74,0.12893367999345015],[118,-22,75,0.13059588545171003],[118,-22,76,0.13230202862068258],[118,-22,77,0.13404517900698498],[118,-22,78,0.1358170105887232],[118,-22,79,0.13067396114083593],[118,-21,64,0.11380133356649261],[118,-21,65,0.11506923252984068],[118,-21,66,0.11633362435330773],[118,-21,67,0.11760444577038964],[118,-21,68,0.1188969600794651],[118,-21,69,0.12022514436104767],[118,-21,70,0.12159952297013824],[118,-21,71,0.12302736094672202],[118,-21,72,0.12451289219862066],[118,-21,73,0.12605755575672],[118,-21,74,0.12766023987871875],[118,-21,75,0.12931753367910678],[118,-21,76,0.13102398587931924],[118,-21,77,0.1327723702035577],[118,-21,78,0.13455395689342828],[118,-21,79,0.1295100979753282],[118,-20,64,0.11282016461369758],[118,-20,65,0.1140406592288974],[118,-20,66,0.11526093589883914],[118,-20,67,0.11649069096171465],[118,-20,68,0.11774539644635261],[118,-20,69,0.1190396227580572],[118,-20,70,0.12038440430256446],[118,-20,71,0.12178741254238824],[118,-20,72,0.12325317705242089],[118,-20,73,0.12478331710036301],[118,-20,74,0.12637678353248477],[118,-20,75,0.12803011063671685],[118,-20,76,0.12973767756102364],[118,-20,77,0.13149197878633606],[118,-20,78,0.13328390309114357],[118,-20,79,0.12957575871063168],[118,-19,64,0.11182831150353215],[118,-19,65,0.11300081964498174],[118,-19,66,0.11417680481694589],[118,-19,67,0.11536563546723422],[118,-19,68,0.11658283933120261],[118,-19,69,0.11784343978261555],[118,-19,70,0.11915888186148454],[118,-19,71,0.12053717946016528],[118,-19,72,0.12198312364171476],[118,-19,73,0.12349850429594542],[118,-19,74,0.12508234492227413],[118,-19,75,0.1267311502105759],[118,-19,76,0.12843916598705377],[118,-19,77,0.13019865100287148],[118,-19,78,0.13200015997047823],[118,-19,79,0.12935914633627496],[118,-18,64,0.11083550193872806],[118,-18,65,0.11195854368492786],[118,-18,66,0.11308904006233743],[118,-18,67,0.11423594295710052],[118,-18,68,0.11541467965941515],[118,-18,69,0.1166405860348995],[118,-18,70,0.11792542768811604],[118,-18,71,0.1192775139203473],[118,-18,72,0.12070188582788913],[118,-18,73,0.12220052105833538],[118,-18,74,0.12377255502940121],[118,-18,75,0.12541451828824388],[118,-18,76,0.12712058957487082],[118,-18,77,0.1288828640527148],[118,-18,78,0.13069163608480258],[118,-18,79,0.12792525843089053],[118,-17,64,0.10984463780718423],[118,-17,65,0.11091593603570939],[118,-17,66,0.11199885489464576],[118,-17,67,0.11310184522137326],[118,-17,68,0.11424007868022937],[118,-17,69,0.1154290637469156],[118,-17,70,0.11668080326743062],[118,-17,71,0.11800386665614233],[118,-17,72,0.11940354904458726],[118,-17,73,0.120882051017145],[118,-17,74,0.12243867876210555],[118,-17,75,0.12407006433200962],[118,-17,76,0.1257704055824819],[118,-17,77,0.12753172524620954],[118,-17,78,0.1293441485007854],[118,-17,79,0.12518789783338705],[118,-16,64,0.10884145194602723],[118,-16,65,0.10985916674665952],[118,-16,66,0.11089297743943062],[118,-16,67,0.11195076157875031],[118,-16,68,0.11304727572844664],[118,-16,69,0.11419804336586033],[118,-16,70,0.11541519852769726],[118,-16,71,0.11670750927040227],[118,-16,72,0.11808050042738387],[118,-16,73,0.1195366013830224],[118,-16,74,0.1210753187220809],[118,-16,75,0.12269343347120323],[118,-16,76,0.12438522251437178],[118,-16,77,0.12614270363915023],[118,-16,78,0.12795590355837339],[118,-16,79,0.12406421838166194],[118,-15,64,0.10781100445313195],[118,-15,65,0.10877397092403242],[118,-15,66,0.10975793777592179],[118,-15,67,0.11077014932259678],[118,-15,68,0.11182478432677123],[118,-15,69,0.1129372059066617],[118,-15,70,0.11411954861950842],[118,-15,71,0.11538068826308684],[118,-15,72,0.11672632256075699],[118,-15,73,0.11815908163699367],[118,-15,74,0.11967866817543267],[118,-15,75,0.12128202700305908],[118,-15,76,0.12296354369965096],[118,-15,77,0.12471527169412608],[118,-15,78,0.1265271871827123],[118,-15,79,0.1240443521636241],[118,-14,64,0.10674212058266706],[118,-14,65,0.10764975241065049],[118,-14,66,0.10858377727339819],[118,-14,67,0.10955075682358416],[118,-14,68,0.11056412979433272],[118,-14,69,0.11163891213280382],[118,-14,70,0.11278709074419337],[118,-14,71,0.11401753656269117],[118,-14,72,0.11533603906930763],[118,-14,73,0.11674537556588006],[118,-14,74,0.1182454151318853],[118,-14,75,0.11983325703664653],[118,-14,76,0.12150340322599065],[118,-14,77,0.12324796435299826],[118,-14,78,0.12505689868142372],[118,-14,79,0.12409368537434345],[118,-13,64,0.09853957955759288],[118,-13,65,0.10647894839185132],[118,-13,66,0.10736343203609536],[118,-13,67,0.10828603566714425],[118,-13,68,0.10925930001981841],[118,-13,69,0.11029770191293498],[118,-13,70,0.11141292177938027],[118,-13,71,0.11261369859472697],[118,-13,72,0.11390581556713647],[118,-13,73,0.11529212559607893],[118,-13,74,0.11677261646075772],[118,-13,75,0.11834451554025179],[118,-13,76,0.12000243370568256],[118,-13,77,0.12173854786416505],[118,-13,78,0.12354282147959846],[118,-13,79,0.12445187615570111],[118,-12,64,0.05371519750679874],[118,-12,65,0.06483573782671491],[118,-12,66,0.07712654993876929],[118,-12,67,0.09056330251279522],[118,-12,68,0.10511619118852222],[118,-12,69,0.10890983733334343],[118,-12,70,0.10999359536358892],[118,-12,71,0.11116598964205839],[118,-12,72,0.11243268887315937],[118,-12,73,0.11379653855069775],[118,-12,74,0.11525758583987737],[118,-12,75,0.11681314897533952],[118,-12,76,0.1184579308371513],[118,-12,77,0.12018417619604456],[118,-12,78,0.12198187195197271],[118,-12,79,0.12383898953159132],[118,-11,64,0.02514967875558861],[118,-11,65,0.03183238085156595],[118,-11,66,0.03950298984717337],[118,-11,67,0.04816647538241227],[118,-11,68,0.057823017933996655],[118,-11,69,0.0684652230553035],[118,-11,70,0.08007403677798967],[118,-11,71,0.09261924573983257],[118,-11,72,0.10606015615476992],[118,-11,73,0.11225621295877435],[118,-11,74,0.11369779566894829],[118,-11,75,0.11523643865766411],[118,-11,76,0.11686691491854652],[118,-11,77,0.118581535216982],[118,-11,78,0.12037032656385246],[118,-11,79,0.12222125763543115],[118,-10,64,0.009264101744611014],[118,-10,65,0.012587860736236573],[118,-10,66,0.01667608888773129],[118,-10,67,0.021557776981078115],[118,-10,68,0.02725669381065606],[118,-10,69,0.03378943329428001],[118,-10,70,0.04116147268172148],[118,-10,71,0.049367657076072824],[118,-10,72,0.058392831358439604],[118,-10,73,0.06821252744406618],[118,-10,74,0.078793712287473],[118,-10,75,0.09009560151223261],[118,-10,76,0.10207054208851513],[118,-10,77,0.11466496522379284],[118,-10,78,0.118704027440467],[118,-10,79,0.12054534917458111],[118,-9,64,0.007089663072827345],[118,-9,65,0.007906759901978961],[118,-9,66,0.008710813019056718],[118,-9,67,0.009504652919566012],[118,-9,68,0.010296422743588463],[118,-9,69,0.013269952437135775],[118,-9,70,0.0173368377166201],[118,-9,71,0.022091209418303514],[118,-9,72,0.02753876750508001],[118,-9,73,0.033675797319966075],[118,-9,74,0.040489872123863],[118,-9,75,0.04796060179212805],[118,-9,76,0.05606042911015954],[118,-9,77,0.064755474878951],[118,-9,78,0.07400643224553377],[118,-9,79,0.08376950938648775],[118,-8,64,0.005730083032562031],[118,-8,65,0.006527346896596503],[118,-8,66,0.007319669533964917],[118,-8,67,0.00810902297444101],[118,-8,68,0.008902002477181451],[118,-8,69,0.009708640960442399],[118,-8,70,0.01053798030858888],[118,-8,71,0.011397641028061593],[118,-8,72,0.012293547040117118],[118,-8,73,0.013283149677829],[118,-8,74,0.017161447861319637],[118,-8,75,0.021592437705974032],[118,-8,76,0.026565828663749506],[118,-8,77,0.03206443741499591],[118,-8,78,0.038065023912415244],[118,-8,79,0.044539166579251166],[118,-7,64,0.004367173537966666],[118,-7,65,0.005145790584159771],[118,-7,66,0.00592750665573382],[118,-7,67,0.006713435145690011],[118,-7,68,0.007508565779130077],[118,-7,69,0.008321405886121304],[118,-7,70,0.009159794980063534],[118,-7,71,0.010030433658832553],[118,-7,72,0.010938567394703185],[118,-7,73,0.01188773430245883],[118,-7,74,0.012879576933668261],[118,-7,75,0.013913718013538653],[118,-7,76,0.014987699904147535],[118,-7,77,0.016096987444975386],[118,-7,78,0.017235033688568865],[118,-7,79,0.02047661193505279],[118,-6,64,0.0030044580655929935],[118,-6,65,0.003765709759665266],[118,-6,66,0.004537903719582901],[118,-6,67,0.005321299728138234],[118,-6,68,0.006119250469630351],[118,-6,69,0.006938666030164235],[118,-6,70,0.007786107800925824],[118,-6,71,0.008667282514857955],[118,-6,72,0.009586689481934614],[118,-6,73,0.010547333954294871],[118,-6,74,0.011550506694163024],[118,-6,75,0.012595629680386036],[118,-6,76,0.013680167751673793],[118,-6,77,0.014799605846922963],[118,-6,78,0.01594749136531982],[118,-6,79,0.017115541033107726],[118,-5,64,0.001645187009794795],[118,-5,65,0.0023904029896664463],[118,-5,66,0.0031540776278140355],[118,-5,67,0.00393562711260704],[118,-5,68,0.0047367629639277755],[118,-5,69,0.00556275966672174],[118,-5,70,0.0064188522917916525],[118,-5,71,0.007309702027251654],[118,-5,72,0.008239011953130742],[118,-5,73,0.009209210385243808],[118,-5,74,0.010221201884462421],[118,-5,75,0.011274185886114835],[118,-5,76,0.012365542762564716],[118,-5,77,0.01349078699072769],[118,-5,78,0.01464358695531005],[118,-5,79,0.015815850779676125],[118,-4,64,2.922073930967921E-4],[118,-4,65,0.0010227193127846904],[118,-4,66,0.0017787591187850037],[118,-4,67,0.002558914173262446],[118,-4,68,0.003363278563126327],[118,-4,69,0.004195487615267059],[118,-4,70,0.005059431023315354],[118,-4,71,0.005958696548784563],[118,-4,72,0.006896159961066767],[118,-4,73,0.007873643247092867],[118,-4,74,0.008891641207997996],[118,-4,75,0.009949116415812476],[118,-4,76,0.01104336235891773],[118,-4,77,0.012169934461473055],[118,-4,78,0.013322648519129733],[118,-4,79,0.014493645952838674],[118,-3,64,-0.0010521040632644042],[118,-3,65,-3.3500878787181323E-4],[118,-3,66,4.141296124324891E-4],[118,-3,67,0.0011930888892329413],[118,-3,68,0.002000396887400893],[118,-3,69,0.0028380813890775116],[118,-3,70,0.0037086974359305316],[118,-3,71,0.004614756026121579],[118,-3,72,0.005558294245259417],[118,-3,73,0.006540513620987695],[118,-3,74,0.007561486837505336],[118,-3,75,0.008619932800590343],[118,-3,76,0.009713059898258058],[118,-3,77,0.010836477157821196],[118,-3,78,0.011984172856737163],[118,-3,79,0.01314856000392602],[118,-2,64,-0.00238584307608136],[118,-2,65,-0.001680968739649924],[118,-2,66,-9.38180013220617E-4],[118,-2,67,-1.6048550569611745E-4],[118,-2,68,6.491536692773333E-4],[118,-2,69,0.0014912236455049853],[118,-2,70,0.0023669849384696726],[118,-2,71,0.003277892936440582],[118,-2,72,0.004225154490951825],[118,-2,73,0.005209351951585718],[118,-2,74,0.00623013479782172],[118,-2,75,0.007285978875169377],[118,-2,76,0.008374013097708107],[118,-2,77,0.009489913335415616],[118,-2,78,0.010627863062219944],[118,-2,79,0.011780580201240554],[118,-1,64,-0.0037075136760040066],[118,-1,65,-0.0030138061242165545],[118,-1,66,-0.002277027321619051],[118,-1,67,-0.0015009455134848795],[118,-1,68,-6.899098390685832E-4],[118,-1,69,1.5512209566927962E-4],[118,-1,70,0.0010341843277330944],[118,-1,71,0.0019477213957301372],[118,-1,72,0.002896137715893957],[118,-1,73,0.0038794129246499686],[118,-1,74,0.004896783354264385],[118,-1,75,0.005946489664359991],[118,-1,76,0.007025590508847758],[118,-1,77,0.008129841976149962],[118,-1,78,0.009253642400477097],[118,-1,79,0.010390042005044037],[118,0,64,-0.00501589634392619],[118,0,65,-0.004332496358854604],[118,0,66,-0.003601631485605401],[118,0,67,-0.0028278001552035272],[118,0,68,-0.0020166185756455924],[118,0,69,-0.0011703619551446589],[118,0,70,-2.901294172670075E-4],[118,0,71,6.235793550291005E-4],[118,0,72,0.0015704124446037308],[118,0,73,0.002549777873504298],[118,0,74,0.0035605198020311826],[118,0,75,0.0046006587906087006],[118,0,76,0.005667196021660782],[118,0,77,0.006755981240468313],[118,0,78,0.007861644037527244],[118,0,79,0.00897758796190179],[118,1,64,-0.006309846976851118],[118,1,65,-0.005636148670834053],[118,1,66,-0.004911380806865982],[118,1,67,-0.004140740804112006],[118,1,68,-0.003330975879876071],[118,1,69,-0.0024855299066622667],[118,1,70,-0.0016065204835519088],[118,1,71,-6.95305641085829E-4],[118,1,72,2.4706917451616377E-4],[118,1,73,0.0012194852883001055],[118,1,74,0.002220426340480417],[118,1,75,0.003247715237399027],[118,1,76,0.00429831242439644],[118,1,77,0.005368175261941424],[118,1,78,0.006452178154749869],[118,1,79,0.0075440929555662456],[118,2,64,-0.0065881603946378355],[118,2,65,-0.006923741830168685],[118,2,66,-0.006205574435058828],[118,2,67,-0.005439388139552972],[118,2,68,-0.00463291636651154],[118,2,69,-0.0037906071402936913],[118,2,70,-0.002915465729723982],[118,2,71,-0.0020096069354920347],[118,2,72,-0.001074692371489867],[118,2,73,-1.1230970295491753E-4],[118,2,74,8.757063501360921E-4],[118,2,75,0.0018870113062043196],[118,2,76,0.0029185464440780267],[118,2,77,0.003966392358492529],[118,2,78,0.0050256802279160465],[118,2,79,0.0060905603513622545],[118,3,64,-0.0011180087747090564],[118,3,65,-0.0023117971975640493],[118,3,66,-0.0038567275459294535],[118,3,67,-0.005807673670992643],[118,3,68,-0.005921990806066817],[118,3,69,-0.005085440901430897],[118,3,70,-0.0042170709688557914],[118,3,71,-0.003319639784274707],[118,3,72,-0.0023953358802457567],[118,3,73,-0.00144614659770435],[118,3,74,-4.741723440527092E-4],[118,3,75,5.181140147962081E-4],[118,3,76,0.0015276625780174702],[118,3,77,0.0025506964775801654],[118,3,78,0.0035826162993010347],[118,3,79,0.004617958450848194],[118,4,64,-8.595874315009552E-5],[118,4,65,-3.684002484014769E-4],[118,4,66,-7.205202790670077E-4],[118,4,67,-0.0012200502297579914],[118,4,68,-0.0019350297935536618],[118,4,69,-0.0029191403517446076],[118,4,70,-0.004214281423003117],[118,4,71,-0.004625057588413748],[118,4,72,-0.003714723994958366],[118,4,73,-0.002782042246443281],[118,4,74,-0.0018293149703339764],[118,4,75,-8.590941773349188E-4],[118,4,76,1.2561587266031557E-4],[118,4,77,0.001121206902507907],[118,4,78,0.002123365688042385],[118,4,79,0.003127023598211617],[118,5,64,2.485558866247281E-4],[118,5,65,-2.0704748672876783E-4],[118,5,66,-4.253281911495354E-4],[118,5,67,-5.068422360798609E-4],[118,5,68,-5.418666133851957E-4],[118,5,69,-6.056255776097154E-4],[118,5,70,-7.60850474857229E-4],[118,5,71,-0.001059081146080204],[118,5,72,-0.001541862515241619],[118,5,73,-0.002241889817038123],[118,5,74,-0.0031840977868845236],[118,5,75,-0.002244304635894329],[118,5,76,-0.001287416015786267],[118,5,77,-3.219538613424533E-4],[118,5,78,6.480805793402524E-4],[118,5,79,0.0016180288472595387],[118,6,64,0.003628175832186066],[118,6,65,0.0019142752048397476],[118,6,66,7.703001841739555E-4],[118,6,67,7.288552317195293E-5],[118,6,68,-2.9043590305000264E-4],[118,6,69,-4.1638694724846807E-4],[118,6,70,-3.8851725624397434E-4],[118,6,71,-2.784516162813515E-4],[118,6,72,-1.470376566978389E-4],[118,6,73,-4.544804900335736E-5],[118,6,74,-1.6232741109067655E-5],[118,6,75,-9.431714929293382E-5],[118,6,76,-3.0794255863154116E-4],[118,6,77,-6.795453277378736E-4],[118,6,78,-8.434818109521409E-4],[118,6,79,9.05125385628928E-5],[118,7,64,0.013797579499270957],[118,7,65,0.009740229497862737],[118,7,66,0.006610770394377913],[118,7,67,0.004263231585512315],[118,7,68,0.00256305435686511],[118,7,69,0.0013920510486226006],[118,7,70,6.458443860759803E-4],[118,7,71,2.3268094659911672E-4],[118,7,72,7.233332913851908E-5],[118,7,73,9.503871918624327E-5],[118,7,74,2.4048068697971116E-4],[118,7,75,4.568193664399959E-4],[118,7,76,6.997741332278872E-4],[118,7,77,9.317622318349409E-4],[118,7,78,0.0011210963109739307],[118,7,79,0.0012412434084198441],[118,8,64,0.03449337517979002],[118,8,65,0.027013236482899508],[118,8,66,0.020841790244537604],[118,8,67,0.015811816691727945],[118,8,68,0.011767448865361472],[118,8,69,0.008569438998265969],[118,8,70,0.006092765077995338],[118,8,71,0.004225588142323167],[118,8,72,0.002868252051206516],[118,8,73,0.0019322887752709853],[118,8,74,0.0013394467480374],[118,8,75,0.0010207541710320507],[118,8,76,9.156254774703347E-4],[118,8,77,9.710167717993658E-4],[118,8,78,0.0011406345006903852],[118,8,79,0.0013842005609930065],[118,9,64,0.06665328912972203],[118,9,65,0.057435120260033],[118,9,66,0.047184022679647886],[118,9,67,0.03845119711364454],[118,9,68,0.031062785855718658],[118,9,69,0.02486057304563479],[118,9,70,0.019700175132518757],[118,9,71,0.015450402903664869],[118,9,72,0.011992537919686724],[118,9,73,0.009219525297871208],[118,9,74,0.00703512800887179],[118,9,75,0.005353073925250365],[118,9,76,0.004096217161360363],[118,9,77,0.0031957285468452532],[118,9,78,0.002590325480018654],[118,9,79,0.002225548262256354],[118,10,64,0.06432823133055358],[118,10,65,0.06412888160257325],[118,10,66,0.06403836452264383],[118,10,67,0.06404720338370233],[118,10,68,0.06413529750816445],[118,10,69,0.05397463139929787],[118,10,70,0.04519259667740014],[118,10,71,0.037641863929617776],[118,10,72,0.031186747206240217],[118,10,73,0.025702905653098112],[118,10,74,0.02107685632339228],[118,10,75,0.017205371077742795],[118,10,76,0.013994809741963767],[118,10,77,0.011360426648721488],[118,10,78,0.009225676848628376],[118,10,79,0.007521540511706694],[118,11,64,0.06199228336422319],[118,11,65,0.06174333529728429],[118,11,66,0.06159999975729192],[118,11,67,0.06155285759134265],[118,11,68,0.06159041353324765],[118,11,69,0.06170457201407397],[118,11,70,0.0618889363252053],[118,11,71,0.06213839149977504],[118,11,72,0.062448776892747596],[118,11,73,0.05509192591094586],[118,11,74,0.0471886948777796],[118,11,75,0.04031178158013368],[118,11,76,0.034352469767322265],[118,11,77,0.0292109245002601],[118,11,78,0.024795734654520982],[118,11,79,0.021023402202890503],[118,12,64,0.0596505674272077],[118,12,65,0.05935201210354048],[118,12,66,0.05915547017548992],[118,12,67,0.059051801368932524],[118,12,68,0.05902969229988731],[118,12,69,0.059081046026431744],[118,12,70,0.05919947627210609],[118,12,71,0.05937990873002823],[118,12,72,0.05961826485714519],[118,12,73,0.05991117496892158],[118,12,74,0.060255720957885894],[118,12,75,0.060649208869785136],[118,12,76,0.061088971485413264],[118,12,77,0.06044748209720425],[118,12,78,0.05301628570665934],[118,12,79,0.046457981680376126],[118,13,64,0.057308908263242316],[118,13,65,0.05696114486959614],[118,13,66,0.05671145738602694],[118,13,67,0.05655120305764587],[118,13,68,0.05646939929533091],[118,13,69,0.05645799772228969],[118,13,70,0.05651064184245135],[118,13,71,0.0566222935505606],[118,13,72,0.056788932937696754],[118,13,73,0.057007284658101204],[118,13,74,0.05727457117926461],[118,13,75,0.05758829315480991],[118,13,76,0.05794603708098822],[118,13,77,0.05834531032171795],[118,13,78,0.05878340351393933],[118,13,79,0.05925728029399606],[118,14,64,0.05497494055889053],[118,14,65,0.05457873660734418],[118,14,66,0.054276358806446816],[118,14,67,0.05405986289782215],[118,14,68,0.053918732223091625],[118,14,69,0.053845005591473254],[118,14,70,0.05383236209345249],[118,14,71,0.05387578068464193],[118,14,72,0.05397126187431328],[118,14,73,0.05411557277633619],[118,14,74,0.054306015837194355],[118,14,75,0.054540221481987956],[118,14,76,0.054815964848854135],[118,14,77,0.05513100671430548],[118,14,78,0.05548295864653485],[118,14,79,0.05586917236013824],[118,15,64,0.052660082470253416],[118,15,65,0.052216478082502224],[118,15,66,0.051862113209507794],[118,15,67,0.05158991194751383],[118,15,68,0.05138993813692236],[118,15,69,0.051254345325008166],[118,15,70,0.051176844314377655],[118,15,71,0.051152404100102286],[118,15,72,0.05117700181570015],[118,15,73,0.051247392268844165],[118,15,74,0.051360897368613115],[118,15,75,0.051515215682682684],[118,15,76,0.05170825230220466],[118,15,77,0.05193796913363055],[118,15,78,0.05220225568040341],[118,15,79,0.05249882032263821],[118,16,64,0.05037844336889276],[118,16,65,0.04988850694501355],[118,16,66,0.04948276255360995],[118,16,67,0.04915513703357485],[118,16,68,0.04889637504806431],[118,16,69,0.048698777353447596],[118,16,70,0.04855609452949055],[118,16,71,0.04846327614956301],[118,16,72,0.04841625426661847],[118,16,73,0.04841174219106202],[118,16,74,0.04844704884528799],[118,16,75,0.04851990892814201],[118,16,76,0.04862832907319674],[118,16,77,0.04877045013704791],[118,16,78,0.0489444257079023],[118,16,79,0.04914831687991093],[118,17,64,0.048137519722772346],[118,17,65,0.04760228228472514],[118,17,66,0.0471456371163733],[118,17,67,0.04676261318247918],[118,17,68,0.04644472361377112],[118,17,69,0.04618445710699031],[118,17,70,0.04597562730784071],[118,17,71,0.04581317534962914],[118,17,72,0.045692990813369784],[118,17,73,0.04561174325311491],[118,17,74,0.04556672455142066],[118,17,75,0.045555702331486064],[118,17,76,0.045576784615620786],[118,17,77,0.04562829588393642],[118,17,78,0.04570866465265012],[118,17,79,0.045816322657493525],[118,18,64,0.04593742275499474],[118,18,65,0.045357865089401136],[118,18,66,0.044850714031637005],[118,18,67,0.04441216581392228],[118,18,68,0.044034576058644075],[118,18,69,0.04371066893248063],[118,18,70,0.04343435691038053],[118,18,71,0.04320060017799869],[118,18,72,0.043005267787846684],[118,18,73,0.042845004326699264],[118,18,74,0.04271710233748416],[118,18,75,0.042619380714625],[118,18,76,0.04255006926831381],[118,18,77,0.04250769963019939],[118,18,78,0.042491002650666354],[118,18,79,0.042498812415597616],[118,19,64,0.04377201958376152],[118,19,65,0.04314905624978404],[118,19,66,0.04259174305133154],[118,19,67,0.04209747557634668],[118,19,68,0.041659511563270614],[118,19,69,0.04127086337322779],[118,19,70,0.04092558788172626],[118,19,71,0.0406187047028568],[118,19,72,0.04034609917050403],[118,19,73,0.04010442555440847],[118,19,74,0.03989101073157558],[118,19,75,0.03970375852402151],[118,19,76,0.039541054904347325],[118,19,77,0.03940167426098195],[118,19,78,0.0392846869053245],[118,19,79,0.03918936799279241],[118,20,64,0.040232966220497414],[118,20,65,0.03984739736128295],[118,20,66,0.039486572716430204],[118,20,67,0.039152852397721184],[118,20,68,0.03885242305023035],[118,20,69,0.03859178071654865],[118,20,70,0.03837601204655802],[118,20,71,0.03805620475896789],[118,20,72,0.03770430407795084],[118,20,73,0.03737898052861581],[118,20,74,0.03707763999605109],[118,20,75,0.036798314889841574],[118,20,76,0.036539590166048734],[118,20,77,0.03630052501087411],[118,20,78,0.0360805704009514],[118,20,79,0.0358794827572599],[118,21,64,0.036380050726937264],[118,21,65,0.03592738633469885],[118,21,66,0.03550628987295158],[118,21,67,0.03511801606326891],[118,21,68,0.0347678550535552],[118,21,69,0.03446199238612253],[118,21,70,0.03420536289240976],[118,21,71,0.034001639653187275],[118,21,72,0.03385327104409907],[118,21,73,0.03376152799262281],[118,21,74,0.03372656128252398],[118,21,75,0.033747468716039924],[118,21,76,0.0335330502129549],[118,21,77,0.033192322452048444],[118,21,78,0.032867506706005724],[118,21,79,0.032558877941718536],[118,22,64,0.032455124249843106],[118,22,65,0.03193389092300033],[118,22,66,0.031451333824928485],[118,22,67,0.031007657579590567],[118,22,68,0.030607241725594918],[118,22,69,0.030255903364071305],[118,22,70,0.029958365756046882],[118,22,71,0.029718189860159585],[118,22,72,0.02953776934836172],[118,22,73,0.02941834116973124],[118,22,74,0.029360011518330426],[118,22,75,0.02936179702189545],[118,22,76,0.02942168093106211],[118,22,77,0.029536684054182322],[118,22,78,0.029632751162530262],[118,22,79,0.02921583129933903],[118,23,64,0.02848083256384872],[118,23,65,0.02788969301112878],[118,23,66,0.027344497178034267],[118,23,67,0.026844479616931125],[118,23,68,0.02639311082813997],[118,23,69,0.025995783405566845],[118,23,70,0.025656949033798136],[118,23,71,0.02537999573743192],[118,23,72,0.025167202646182392],[118,23,73,0.0250197154505565],[118,23,74,0.024937542423440106],[118,23,75,0.02491957083082688],[118,23,76,0.02496360350509108],[118,23,77,0.02506641530709269],[118,23,78,0.025223829159781254],[118,23,79,0.025430811295643965],[118,24,64,0.024876560436727115],[118,24,65,0.02382510371041222],[118,24,66,0.02320955861439182],[118,24,67,0.022652164196941518],[118,24,68,0.022148949173118073],[118,24,69,0.021704829145118853],[118,24,70,0.021323925978806647],[118,24,71,0.021009394904162662],[118,24,72,0.020763341470154413],[118,24,73,0.020586764043376005],[118,24,74,0.020479521744470975],[118,24,75,0.0204403276519347],[118,24,76,0.020466767041069953],[118,24,77,0.020555340367138363],[118,24,78,0.02070153064692625],[118,24,79,0.02089989484188239],[118,25,64,0.021419824410303795],[118,25,65,0.020338460662436955],[118,25,66,0.019262903781056932],[118,25,67,0.01845448879650834],[118,25,68,0.017898334455799594],[118,25,69,0.017406317186705225],[118,25,70,0.016982174391001154],[118,25,71,0.016628771543193845],[118,25,72,0.016347984360927312],[118,25,73,0.016140610995752355],[118,25,74,0.01600631415600023],[118,25,75,0.01594359299768254],[118,25,76,0.015949784546531395],[118,25,77,0.016021094345011484],[118,25,78,0.016152655953207383],[118,25,79,0.01633861887176891],[118,26,64,0.018018797602094763],[118,26,65,0.016908288917498994],[118,26,66,0.015812113182124315],[118,26,67,0.014727866947726567],[118,26,68,0.013664109704714187],[118,26,69,0.013122796789350617],[118,26,70,0.012653852302539183],[118,26,71,0.012259799592207719],[118,26,72,0.011942232754318615],[118,26,73,0.01170170159338198],[118,26,74,0.011537630553989547],[118,26,75,0.011448271465641507],[118,26,76,0.011430689860559801],[118,26,77,0.011480784545608145],[118,26,78,0.011593340035674672],[118,26,79,0.011762111386739627],[118,27,64,0.014697864606097179],[118,27,65,0.013559230696505702],[118,27,66,0.012443056731510646],[118,27,67,0.01134646614118016],[118,27,68,0.010270443185432649],[118,27,69,0.009219293230350166],[118,27,70,0.008359651171433616],[118,27,71,0.00792271913330104],[118,27,72,0.0075657941942217505],[118,27,73,0.007289135699493572],[118,27,74,0.007091894459353366],[118,27,75,0.006972048736400541],[118,27,76,0.006926377327843523],[118,27,77,0.0069504694138539614],[118,27,78,0.007038770762113095],[118,27,79,0.007184665802447135],[118,28,64,0.011479306917975208],[118,28,65,0.010313828742410068],[118,28,66,0.009178414638836794],[118,28,67,0.008069867663452407],[118,28,68,0.006988467635697356],[118,28,69,0.005937869865220496],[118,28,70,0.004921658685841958],[118,28,71,0.003943019168868224],[118,28,72,0.0032363151484072986],[118,28,73,0.0029200251388523768],[118,28,74,0.002685626447898164],[118,28,75,0.002530805203936067],[118,28,76,0.002452046431203395],[118,28,77,0.0024446355887355197],[118,28,78,0.0025026993957299034],[118,28,79,0.0026192854389501456],[118,29,64,0.008382628721734418],[118,29,65,0.007191846518905754],[118,29,66,0.006038101068475005],[118,29,67,0.004918031066682158],[118,29,68,0.003831289699431466],[118,29,69,0.0027808657478067328],[118,29,70,0.0017697670361473644],[118,29,71,8.006735831928198E-4],[118,29,72,-1.2429134889531428E-4],[118,29,73,-0.0010037473123497476],[118,29,74,-0.0016671524727726432],[118,29,75,-0.0018619580364699665],[118,29,76,-0.0019793480971878664],[118,29,77,-0.002024326625555002],[118,29,78,-0.0020030576354712285],[118,29,79,-0.0019227877938350518],[118,30,64,0.005423939723735751],[118,30,65,0.004209644447358069],[118,30,66,0.0030386371886411715],[118,30,67,0.0019075473498213257],[118,30,68,8.154864391293929E-4],[118,30,69,-2.352301478689163E-4],[118,30,70,-0.0012421900986054834],[118,30,71,-0.0022032424729472077],[118,30,72,-0.0031167400025714433],[118,30,73,-0.003981736799181785],[118,30,74,-0.004798141479792503],[118,30,75,-0.005566825835073184],[118,30,76,-0.006289689279088207],[118,30,77,-0.006446641796393409],[118,30,78,-0.006469118155181601],[118,30,79,-0.006432553036977966],[118,31,64,0.0026153966473697666],[118,31,65,0.001379613759877096],[118,31,66,1.9258017510311257E-4],[118,31,67,-9.489342016617018E-4],[118,31,68,-0.002046270067144443],[118,31,69,-0.0030977827806500493],[118,31,70,-0.004101665067950057],[118,31,71,-0.00505630978315492],[118,31,72,-0.005960561026574833],[118,31,73,-0.006813919604131203],[118,31,74,-0.007616702825827425],[118,31,75,-0.00837015876128514],[118,31,76,-0.009076535185146051],[118,31,77,-0.009739103553419405],[118,31,78,-0.010362138452986752],[118,31,79,-0.010901734792706994],[118,32,64,-3.5295104368712024E-5],[118,32,65,-0.0012903305614379028],[118,32,66,-0.0024919904128282897],[118,32,67,-0.0036432241170348922],[118,32,68,-0.004745733638100212],[118,32,69,-0.005798533564532061],[118,32,70,-0.006800421748230246],[118,32,71,-0.0077503399608743655],[118,32,72,-0.008647629524596431],[118,32,73,-0.009492240826026342],[118,32,74,-0.01028489670153911],[118,32,75,-0.011027209803082824],[118,32,76,-0.011721754169634136],[118,32,77,-0.01237209133838195],[118,32,78,-0.01298275143159154],[118,32,79,-0.013559169749323143],[118,33,64,-0.0025253181927084806],[118,33,65,-0.0037971963714324105],[118,33,66,-0.005011927548162069],[118,33,67,-0.0061720545119067745],[118,33,68,-0.007279551584424478],[118,33,69,-0.008334073273012341],[118,33,70,-0.009335013589559845],[118,33,71,-0.01028185867442278],[118,33,72,-0.011174443053955183],[118,33,73,-0.012013159887188042],[118,33,74,-0.012799125180677157],[118,33,75,-0.013534296071612871],[118,33,76,-0.014221543394406153],[118,33,77,-0.014864678854466828],[118,33,78,-0.015468437234253835],[118,33,79,-0.016038414150507056],[118,34,64,-0.004857117106011678],[118,34,65,-0.006143299124954751],[118,34,66,-0.00736941164422437],[118,34,67,-0.00853748329357734],[118,34,68,-0.009649677827021282],[118,34,69,-0.010706264257550481],[118,34,70,-0.011707215490593883],[118,34,71,-0.012652547925908749],[118,34,72,-0.013542575101997465],[118,34,73,-0.014378115928705288],[118,34,74,-0.015160657478780579],[118,34,75,-0.015892472428456865],[118,34,76,-0.01657669135048169],[118,34,77,-0.01721733016986194],[118,34,78,-0.017819273192443193],[118,34,79,-0.01838821220893844],[118,35,64,-0.007038707539032794],[118,35,65,-0.00833658344776638],[118,35,66,-0.009572284134162546],[118,35,67,-0.010747239539994497],[118,35,68,-0.01186373035246842],[118,35,69,-0.012922610884153337],[118,35,70,-0.013924408511464804],[118,35,71,-0.014869646517556444],[118,35,72,-0.015759092790406427],[118,35,73,-0.01659396410322464],[118,35,74,-0.017376085939745958],[118,35,75,-0.01810800794345928],[118,35,76,-0.01879307518050973],[118,35,77,-0.01943545551035951],[118,35,78,-0.019676470157017446],[118,35,79,-0.01817965498158308],[118,36,64,-0.009083919913131962],[118,36,65,-0.010390880069176003],[118,36,66,-0.011634318319174913],[118,36,67,-0.012815008706484571],[118,36,68,-0.013935291731443296],[118,36,69,-0.014996577001950128],[118,36,70,-0.015999916344598155],[118,36,71,-0.016946307749230803],[118,36,72,-0.01783693799337988],[118,36,73,-0.018673382110699535],[118,36,74,-0.019457759656930935],[118,36,75,-0.01971283276298896],[118,36,76,-0.018135984166510827],[118,36,77,-0.01656608516114601],[118,36,78,-0.01500906347334108],[118,36,79,-0.013471413325761416],[118,37,64,-0.011012575436801248],[118,37,65,-0.012326096537413228],[118,37,66,-0.013575425943695672],[118,37,67,-0.014760656170648357],[118,37,68,-0.015884151278611557],[118,37,69,-0.016947849108331442],[118,37,70,-0.01795329231338154],[118,37,71,-0.018901913242503364],[118,37,72,-0.01979527091029693],[118,37,73,-0.018359071567931033],[118,37,74,-0.016735566689312174],[118,37,75,-0.015111131716195917],[118,37,76,-0.013490631621856522],[118,37,77,-0.011879495360002292],[118,37,78,-0.010283706564790723],[118,37,79,-0.0087097535949509],[118,38,64,-0.0128498772465015],[118,38,65,-0.014167602695755234],[118,38,66,-0.015421041757885445],[118,38,67,-0.01660961370710082],[118,38,68,-0.017735696188541896],[118,38,69,-0.01880173626284878],[118,38,70,-0.018773902968910103],[118,38,71,-0.017127707156621066],[118,38,72,-0.015470365851154631],[118,38,73,-0.013805728921037127],[118,38,74,-0.01213791921740397],[118,38,75,-0.010471447428252857],[118,38,76,-0.008811286565364883],[118,38,77,-0.007162906285915733],[118,38,78,-0.005532267350989732],[118,38,79,-0.003925776617726209],[118,39,64,-0.014610874463477095],[118,39,65,-0.015930253117769896],[118,39,66,-0.017185764565942386],[118,39,67,-0.018376162653304138],[118,39,68,-0.01767430937633518],[118,39,69,-0.016011782179847958],[118,39,70,-0.014331722486157723],[118,39,71,-0.012638361531114195],[118,39,72,-0.010935769587444043],[118,39,73,-0.009228052389318809],[118,39,74,-0.007519508225030271],[118,39,75,-0.005814745670013039],[118,39,76,-0.004118762037722396],[118,39,77,-0.0024369827280058165],[118,39,78,-7.752617509390947E-4],[118,39,79,8.601562032839768E-4],[118,40,64,-0.016298811685686653],[118,40,65,-0.01761675449332221],[118,40,66,-0.016656636719901533],[118,40,67,-0.014993269405029399],[118,40,68,-0.01330299024830442],[118,40,69,-0.011591682667077942],[118,40,70,-0.009864486324034218],[118,40,71,-0.008126040689602787],[118,40,72,-0.006380723268648157],[118,40,73,-0.004632849657266038],[118,40,74,-0.002886835272463701],[118,40,75,-0.0011473187031804113],[118,40,76,5.807532652000942E-4],[118,40,77,0.0022920788000885374],[118,40,78,0.003980992095104052],[118,40,79,0.005641492026977506],[118,41,64,-0.015703921611306376],[118,41,65,-0.014051975307291338],[118,41,66,-0.012368984289869092],[118,41,67,-0.010654960824534924],[118,41,68,-0.008914936905089899],[118,41,69,-0.007155451033168828],[118,41,70,-0.005382183485380286],[118,41,71,-0.00360018893415514],[118,41,72,-0.0018141399924558445],[118,41,73,-2.8533540979621843E-5],[118,41,74,0.0017521403468249276],[118,41,75,0.003523266962369783],[118,41,76,0.005280012980243785],[118,41,77,0.007017269815974177],[118,41,78,0.008729634106383445],[118,41,79,0.010411425005761912],[118,42,64,-0.011519141031074764],[118,42,65,-0.009813078142171246],[118,42,66,-0.00807780925941162],[118,42,67,-0.006312612546060855],[118,42,68,-0.004522635655264218],[118,42,69,-0.0027151360378971268],[118,42,70,-8.963770808056096E-4],[118,42,71,9.281495464140175E-4],[118,42,72,0.0027534728192938835],[118,42,73,0.004574927588461858],[118,42,74,0.0063879763287478025],[118,42,75,0.008188067521530892],[118,42,76,0.009970530683226876],[118,42,77,0.011730507954557602],[118,42,78,0.013462922070661514],[118,42,79,0.015162480443094978],[118,43,64,-0.007346153450367488],[118,43,65,-0.005584809475308659],[118,43,66,-0.0037963563890341034],[118,43,67,-0.001979291392038126],[118,43,68,-1.3889933818348282E-4],[118,43,69,0.0017167741581774743],[118,43,70,0.0035808318260704824],[118,43,71,0.005447312586258577],[118,43,72,0.007310931333639491],[118,43,73,0.009166854106071909],[118,43,74,0.0110105088933029],[118,43,75,0.012837432237935171],[118,43,76,0.014643151680227283],[118,43,77,0.01642310400121606],[118,43,78,0.018172589124918783],[118,43,79,0.01988675945210274],[118,44,64,-0.0031968751999826342],[118,44,65,-0.0013792152871639715],[118,44,66,4.632833387726386E-4],[118,44,67,0.0023329416637509854],[118,44,68,0.004224312223005421],[118,44,69,0.0061284918695153085],[118,44,70,0.008037894872498001],[118,44,71,0.009946051384585873],[118,44,72,0.011847337107998604],[118,44,73,0.013736737392535513],[118,44,74,0.015609646059126792],[118,44,75,0.01746169914215091],[118,44,76,0.01928864364459842],[118,44,77,0.0210862413037517],[118,44,78,0.022850207272091364],[118,44,79,0.024576183530505058],[118,45,64,9.195539159577546E-4],[118,45,65,0.0027942778160726816],[118,45,66,0.004691476085722673],[118,45,67,0.0066143084930055975],[118,45,68,0.008557134917790431],[118,45,69,0.010510128999356945],[118,45,70,0.012464961737539445],[118,45,71,0.014414611419394829],[118,45,72,0.01635308286799882],[118,45,73,0.018275160087408815],[118,45,74,0.02017619264016612],[118,45,75,0.022051915994440695],[118,45,76,0.02389830597984473],[118,45,77,0.02571146739543956],[118,45,78,0.027487556721278523],[118,45,79,0.029222738797814788],[118,46,64,0.004998175186943842],[118,46,65,0.006930255573668009],[118,46,66,0.008882417511474252],[118,46,67,0.01085865732182106],[118,46,68,0.012853106320665249],[118,46,69,0.014854955483687645],[118,46,70,0.01685508022373111],[118,46,71,0.01884586294558663],[118,46,72,0.020820902232686046],[118,46,73,0.02277475426581332],[118,46,74,0.024702706854558897],[118,46,75,0.02660058636437846],[118,46,76,0.028464597725210677],[118,46,77,0.030291197613115887],[118,46,78,0.03193347519703529],[118,46,79,0.03327120792315712],[118,47,64,0.009034308939476675],[118,47,65,0.011023525730778774],[118,47,66,0.013030463913907038],[118,47,67,0.015059928913624619],[118,47,68,0.017105782445984576],[118,47,69,0.019156182638662193],[118,47,70,0.021201162413590758],[118,47,71,0.023232466068558298],[118,47,72,0.025243249374674752],[118,47,73,0.02722781057135176],[118,47,74,0.029181352684725232],[118,47,75,0.031099777499223758],[118,47,76,0.032706421809390845],[118,47,77,0.03421390349968178],[118,47,78,0.03568449757160227],[118,47,79,0.037119947067796345],[118,48,64,0.013007231006975793],[118,48,65,0.015053203687249906],[118,48,66,0.01711468214787093],[118,48,67,0.019197237133374033],[118,48,68,0.02129442322299333],[118,48,69,0.023393332557722645],[118,48,70,0.025483119642985684],[118,48,71,0.027554853467315205],[118,48,72,0.029471407643777287],[118,48,73,0.031216596654755215],[118,48,74,0.0329218633642765],[118,48,75,0.03458948183914733],[118,48,76,0.03622120126844326],[118,48,77,0.037818404247647354],[118,48,78,0.03938223400036412],[118,48,79,0.04091369052574799],[118,49,64,0.01629343222770343],[118,49,65,0.01857336115017409],[118,49,66,0.020783716441365372],[118,49,67,0.02291526697689291],[118,49,68,0.024971956357597046],[118,49,69,0.026965048503550713],[118,49,70,0.028903688129917178],[118,49,71,0.030795035958382743],[118,49,72,0.03264458568769713],[118,49,73,0.03445645285611294],[118,49,74,0.036233635103746394],[118,49,75,0.03797824343601194],[118,49,76,0.03969170417872809],[118,49,77,0.04137493140172962],[118,49,78,0.04302846967034036],[118,49,79,0.044652607063183365],[118,50,64,0.019094697501251888],[118,50,65,0.02140923454904206],[118,50,66,0.02365660877982454],[118,50,67,0.025826894601772316],[118,50,68,0.02792432514509563],[118,50,69,0.02996114836562383],[118,50,70,0.03194731535886079],[118,50,71,0.03389059817925313],[118,50,72,0.035796910931739964],[118,50,73,0.03767060446726663],[118,50,74,0.0395147341624213],[118,50,75,0.04133130035141803],[118,50,76,0.04312146106339976],[118,50,77,0.04488571680012313],[118,50,78,0.046624067168133734],[118,50,79,0.04833613925590294],[118,51,64,0.10914266766967073],[118,51,65,0.12072449521574531],[118,51,66,0.13195375877791637],[118,51,67,0.02874592478681749],[118,51,68,0.030880249171485706],[118,51,69,0.032956597631488276],[118,51,70,0.03498572274094508],[118,51,71,0.03697602079208324],[118,51,72,0.03893385434396328],[118,51,73,0.04086385017357342],[118,51,74,0.04276917208843134],[118,51,75,0.04465176814211242],[118,51,76,0.04651259187340995],[118,51,77,0.048351797266978386],[118,51,78,0.05016890720806035],[118,51,79,0.05196295527669563],[118,52,64,0.12315143013881065],[118,52,65,0.13483778595142049],[118,52,66,0.14617534360291953],[118,52,67,0.15711024229450624],[118,52,68,0.16766713540923864],[118,52,69,0.1779155680044151],[118,52,70,0.1879118873920512],[118,52,71,0.19769976002695583],[118,52,72,0.20731186699386694],[118,52,73,0.21677148059159387],[118,52,74,0.22609391739841894],[118,52,75,0.23528786439678362],[118,52,76,0.24435657560828553],[118,52,77,0.2532989374408597],[118,52,78,0.05366184849220626],[118,52,79,0.05553091684863657],[118,53,64,0.13721970863485533],[118,53,65,0.14899231639662144],[118,53,66,0.16041724827979947],[118,53,67,0.171439137939061],[118,53,68,0.1820844008346182],[118,53,69,0.19242655466212627],[118,53,70,0.20252529374319947],[118,53,71,0.21242693541266755],[118,53,72,0.222166115543389],[118,53,73,0.23176737312281243],[118,53,74,0.24124661993316507],[118,53,75,0.2506124923049219],[118,53,76,0.25986758251184777],[118,53,77,0.2690095478720191],[118,53,78,0.2780320961320878],[118,53,79,0.2869258463014208],[118,54,64,0.151331254800034],[118,54,65,0.16317248367790757],[118,54,66,0.17466449985016402],[118,54,67,0.18575105295700045],[118,54,68,0.19646033386367476],[118,54,69,0.20686942340121095],[118,54,70,0.21704109070922023],[118,54,71,0.22702416837465247],[118,54,72,0.23685523397196445],[118,54,73,0.24656018845241942],[118,54,74,0.2561557282629656],[118,54,75,0.2656507087105991],[118,54,76,0.27504739640098674],[118,54,77,0.2843426088025898],[118,54,78,0.2935287392510067],[118,54,79,0.3025946660818544],[118,55,64,0.16545607918119026],[118,55,65,0.1773491157022799],[118,55,66,0.188888824719212],[118,55,67,0.2000187025211259],[118,55,68,0.2107687001147573],[118,55,69,0.2212189996607449],[118,55,70,0.23143512639532607],[118,55,71,0.24146825299330432],[118,55,72,0.2513568535583639],[118,55,73,0.2611282619262718],[118,55,74,0.27080013211764664],[118,55,75,0.2770913754611505],[118,55,76,0.28012297288214083],[118,55,77,0.28877633432700894],[118,55,78,0.3053108410093148],[118,55,79,0.31776959031640717],[118,56,64,0.17955174034839516],[118,56,65,0.18666426792070945],[118,56,66,0.19741667593014603],[118,56,67,0.2131389976758598],[118,56,68,0.22497189338349288],[118,56,69,0.23223733835115196],[118,56,70,0.23483101395240313],[118,56,71,0.23597649891890704],[118,56,72,0.23430242547052743],[118,56,73,0.22962719340261564],[118,56,74,0.2262990350007274],[118,56,75,0.22341614306177948],[118,56,76,0.2262262576693417],[118,56,77,0.23552143760192568],[118,56,78,0.25303431990462233],[118,56,79,0.2719311378666936],[118,57,64,0.12277987919513289],[118,57,65,0.1260155628043781],[118,57,66,0.13764692900684705],[118,57,67,0.15257372269130495],[118,57,68,0.16589422591593364],[118,57,69,0.1717564122152787],[118,57,70,0.17393018414230768],[118,57,71,0.17497200731645499],[118,57,72,0.17207485211126383],[118,57,73,0.16754115088520888],[118,57,74,0.16401931126913855],[118,57,75,0.1607554857453832],[118,57,76,0.163053589348715],[118,57,77,0.17218576888321463],[118,57,78,0.19034581834660522],[118,57,79,0.21135916516264427],[118,58,64,0.07511552764322356],[118,58,65,0.07889181686825436],[118,58,66,0.09006816199661771],[118,58,67,0.10476764758971031],[118,58,68,0.11691497505395093],[118,58,69,0.12388159391849733],[118,58,70,0.12633603118975498],[118,58,71,0.12669891037577538],[118,58,72,0.12404073337582788],[118,58,73,0.11872939346289434],[118,58,74,0.11511270345134551],[118,58,75,0.11160199217645814],[118,58,76,0.11362441647410426],[118,58,77,0.12231701527113852],[118,58,78,0.14005819569910166],[118,58,79,0.161881738744855],[118,59,64,0.02352155046802628],[118,59,65,0.022775122849638885],[118,59,66,0.028866301711959974],[118,59,67,0.042713941103833135],[118,59,68,0.05514237632105259],[118,59,69,0.06273501248394481],[118,59,70,0.06503777389953606],[118,59,71,0.06581567027178785],[118,59,72,0.06365687804065655],[118,59,73,0.05839443665849681],[118,59,74,0.05384856269405182],[118,59,75,0.050489893911680926],[118,59,76,0.051964975811726814],[118,59,77,0.06128666226403407],[118,59,78,0.07912260459568775],[118,59,79,0.10101609796106616],[118,60,64,0.006086790713922152],[118,60,65,0.0046446907538421],[118,60,66,0.006014479808113486],[118,60,67,0.007427172270706714],[118,60,68,0.008953321476532182],[118,60,69,0.011014971592443456],[118,60,70,0.011915636473415587],[118,60,71,0.012002598440362298],[118,60,72,0.01001192490238903],[118,60,73,0.008308797477233865],[118,60,74,0.0075500927486281426],[118,60,75,0.006865455044393597],[118,60,76,0.007715054741426744],[118,60,77,0.010996313490511531],[118,60,78,0.015345845880967294],[118,60,79,0.03711156671651167],[118,61,64,-0.0049931511582777845],[118,61,65,-0.008224020402341253],[118,61,66,-0.009502568590672594],[118,61,67,-0.009132688086720952],[118,61,68,-0.0074763121793178094],[118,61,69,-0.005877941155408462],[118,61,70,-0.005730065018483436],[118,61,71,-0.005671399357029134],[118,61,72,-0.0069504646095383295],[118,61,73,-0.007172474750783313],[118,61,74,-0.008118388673406092],[118,61,75,-0.007495985703791209],[118,61,76,-0.006591325036838318],[118,61,77,-0.0037300705697100845],[118,61,78,0.0011984385514939196],[118,61,79,0.0072524440133834075],[118,62,64,-0.02096134009506739],[118,62,65,-0.024147688275070616],[118,62,66,-0.026054167409710265],[118,62,67,-0.02475145273004096],[118,62,68,-0.02275689656155169],[118,62,69,-0.021776807227859143],[118,62,70,-0.022193329082336687],[118,62,71,-0.022213749676076658],[118,62,72,-0.023103080328814737],[118,62,73,-0.022971793615017416],[118,62,74,-0.02344202220821879],[118,62,75,-0.022351049640554788],[118,62,76,-0.021506006625846445],[118,62,77,-0.018875855965312056],[118,62,78,-0.014278737961248046],[118,62,79,-0.008271896301395],[118,63,64,-0.05963242375191288],[118,63,65,-0.06312361422238653],[118,63,66,-0.06473869622090339],[118,63,67,-0.06251155252129675],[118,63,68,-0.06115988116169713],[118,63,69,-0.06023811443631638],[118,63,70,-0.060971198609206904],[118,63,71,-0.059909089849165494],[118,63,72,-0.060661877801167524],[118,63,73,-0.060506028535838176],[118,63,74,-0.06003414455029155],[118,63,75,-0.05956517656686424],[118,63,76,-0.05788230522895716],[118,63,77,-0.05514670586181147],[118,63,78,-0.05080037085715336],[118,63,79,-0.044698195682724665],[118,64,64,-0.07162722666896827],[118,64,65,-0.07573699752760872],[118,64,66,-0.07751339405489388],[118,64,67,-0.07521377517413909],[118,64,68,-0.0734099285304027],[118,64,69,-0.07200420892853389],[118,64,70,-0.07328224804394154],[118,64,71,-0.07248299621902332],[118,64,72,-0.07278754015097488],[118,64,73,-0.0728409939221553],[118,64,74,-0.07301710498342548],[118,64,75,-0.07241468873393118],[118,64,76,-0.07029839251651164],[118,64,77,-0.06759063903767523],[118,64,78,-0.06355102519994021],[118,64,79,-0.05750789692769852],[118,65,64,-0.08754946283550445],[118,65,65,-0.09119711704338546],[118,65,66,-0.09358824383302455],[118,65,67,-0.09116364362207785],[118,65,68,-0.08867096491786862],[118,65,69,-0.08717427134161787],[118,65,70,-0.08852125635313049],[118,65,71,-0.08865543063949241],[118,65,72,-0.08884865328411766],[118,65,73,-0.08835877179751796],[118,65,74,-0.08900195806195563],[118,65,75,-0.08788009132738261],[118,65,76,-0.08624064928816139],[118,65,77,-0.0841799793126526],[118,65,78,-0.07937422952782278],[118,65,79,-0.07326194637026406],[118,66,64,-0.10469430316849272],[118,66,65,-0.10859550333690465],[118,66,66,-0.11073323420755782],[118,66,67,-0.10823613479265132],[118,66,68,-0.10616593399272521],[118,66,69,-0.10442719639749307],[118,66,70,-0.10479608353379057],[118,66,71,-0.10569141657331532],[118,66,72,-0.10589955591859206],[118,66,73,-0.1060859879870794],[118,66,74,-0.10687664538911479],[118,66,75,-0.10538347969720338],[118,66,76,-0.1036192892633663],[118,66,77,-0.1016352287996457],[118,66,78,-0.0967078053350163],[118,66,79,-0.09092528319448549],[118,67,64,-0.1205978578228825],[118,67,65,-0.12378260353388502],[118,67,66,-0.12568888664231204],[118,67,67,-0.12369977557222572],[118,67,68,-0.12144138791220974],[118,67,69,-0.1207127281947901],[118,67,70,-0.12013455862467855],[118,67,71,-0.11997725891608715],[118,67,72,-0.12067424650507676],[118,67,73,-0.122035411163739],[118,67,74,-0.12238591185108179],[118,67,75,-0.12098299779175738],[118,67,76,-0.11928639256866343],[118,67,77,-0.11700655251486647],[118,67,78,-0.11243362143492168],[118,67,79,-0.10695781082310352],[118,68,64,-0.16489533544690943],[118,68,65,-0.1672828897202018],[118,68,66,-0.16909883695215658],[118,68,67,-0.1668713683892524],[118,68,68,-0.16534865719233077],[118,68,69,-0.16450324934739474],[118,68,70,-0.1627793271671532],[118,68,71,-0.16210299450200524],[118,68,72,-0.16282024898638447],[118,68,73,-0.16513062415988727],[118,68,74,-0.1659636325270331],[118,68,75,-0.16492754704768148],[118,68,76,-0.16337215781525305],[118,68,77,-0.16013281346826794],[118,68,78,-0.15611531050730104],[118,68,79,-0.15013653286986062],[118,69,64,-0.18349885203881464],[118,69,65,-0.18451049326622354],[118,69,66,-0.18374792469008483],[118,69,67,-0.18134064198013375],[118,69,68,-0.17681940226807227],[118,69,69,-0.1740893475990852],[118,69,70,-0.17252774760253142],[118,69,71,-0.1705200462229105],[118,69,72,-0.17155443968319076],[118,69,73,-0.17522877050379423],[118,69,74,-0.17622545235123138],[118,69,75,-0.1756058748752612],[118,69,76,-0.17475592976190285],[118,69,77,-0.17185096504327094],[118,69,78,-0.16733613460271007],[118,69,79,-0.16265495143528813],[118,70,64,-0.19958472896536544],[118,70,65,-0.20014169729595985],[118,70,66,-0.19834789075694356],[118,70,67,-0.19637172638006836],[118,70,68,-0.19114624988790266],[118,70,69,-0.1882345829103212],[118,70,70,-0.1872989225154686],[118,70,71,-0.1854699409763992],[118,70,72,-0.18678040968756932],[118,70,73,-0.1906987215580176],[118,70,74,-0.19142179121955874],[118,70,75,-0.19059201040806253],[118,70,76,-0.19146566240893198],[118,70,77,-0.18845383433133583],[118,70,78,-0.18361625652972702],[118,70,79,-0.1784979187984209],[118,71,64,-0.21249533322090225],[118,71,65,-0.2129150395105371],[118,71,66,-0.21079036054613637],[118,71,67,-0.2081633372768086],[118,71,68,-0.2035752424088323],[118,71,69,-0.19972665308516227],[118,71,70,-0.1988855233933077],[118,71,71,-0.1979361005398165],[118,71,72,-0.1988025209157777],[118,71,73,-0.20204271717238162],[118,71,74,-0.20331669622878096],[118,71,75,-0.20358818147483532],[118,71,76,-0.2047054808955523],[118,71,77,-0.2016131886314128],[118,71,78,-0.19635257390814573],[118,71,79,-0.19156605766306053],[118,72,64,-0.2286089312599017],[118,72,65,-0.22870902197072054],[118,72,66,-0.22618382101654358],[118,72,67,-0.22269623593502744],[118,72,68,-0.21881793208825148],[118,72,69,-0.21564622550987403],[118,72,70,-0.2138734363282308],[118,72,71,-0.21296099945064653],[118,72,72,-0.21370961894420945],[118,72,73,-0.21681965697972605],[118,72,74,-0.21778630719379782],[118,72,75,-0.21952360007755295],[118,72,76,-0.21983858820008748],[118,72,77,-0.21760177051667526],[118,72,78,-0.2125897475860625],[118,72,79,-0.207365542055335],[118,73,64,-0.24628905167073312],[118,73,65,-0.24592646567921347],[118,73,66,-0.2435741447474764],[118,73,67,-0.2385692306801714],[118,73,68,-0.2348283512964609],[118,73,69,-0.2314038766344287],[118,73,70,-0.2294418953740003],[118,73,71,-0.22852943926848007],[118,73,72,-0.22826662000600467],[118,73,73,-0.2309898941486849],[118,73,74,-0.23248712074015282],[118,73,75,-0.23452597739996908],[118,73,76,-0.2342429064576286],[118,73,77,-0.23311498546614126],[118,73,78,-0.23050441517436857],[118,73,79,-0.22551377318203839],[118,74,64,-0.2633039404465805],[118,74,65,-0.2629175246290319],[118,74,66,-0.26141958706624185],[118,74,67,-0.25573991414335145],[118,74,68,-0.25134700208052896],[118,74,69,-0.24800427696741242],[118,74,70,-0.24610031007514838],[118,74,71,-0.24577120891081836],[118,74,72,-0.24578158785815346],[118,74,73,-0.24843058625540018],[118,74,74,-0.24998083494038176],[118,74,75,-0.25188606850352596],[118,74,76,-0.2512911605811501],[118,74,77,-0.2502440415819787],[118,74,78,-0.24813556488088728],[118,74,79,-0.24328572721909475],[118,75,64,-0.2775762821855335],[118,75,65,-0.2777582741262661],[118,75,66,-0.2764655020999943],[118,75,67,-0.27121325823297604],[118,75,68,-0.2671367375553399],[118,75,69,-0.26287289317463813],[118,75,70,-0.25997102053554527],[118,75,71,-0.2609615658938307],[118,75,72,-0.26105895029383247],[118,75,73,-0.2630274930354964],[118,75,74,-0.26565183836449696],[118,75,75,-0.2672702230744764],[118,75,76,-0.26632519881450234],[118,75,77,-0.26507801476034054],[118,75,78,-0.2638803842729008],[118,75,79,-0.25936153036771087],[118,76,64,-0.2910211787099041],[118,76,65,-0.29181290172924856],[118,76,66,-0.28947625943900174],[118,76,67,-0.28440505196659127],[118,76,68,-0.28034983601495883],[118,76,69,-0.27703444668311955],[118,76,70,-0.2741540959322814],[118,76,71,-0.27423001165650573],[118,76,72,-0.2748081613409815],[118,76,73,-0.2763643065198587],[118,76,74,-0.2796107541852772],[118,76,75,-0.28110739991698863],[118,76,76,-0.2803662553666431],[118,76,77,-0.2796543483591627],[118,76,78,-0.2778451498219537],[118,76,79,-0.2744122996991353],[118,77,64,-0.3058466741969277],[118,77,65,-0.3069466815735041],[118,77,66,-0.304505442391484],[118,77,67,-0.2994639443892548],[118,77,68,-0.2958132385281004],[118,77,69,-0.29378352683141346],[118,77,70,-0.2914337381101737],[118,77,71,-0.29133736679835176],[118,77,72,-0.2917986391285532],[118,77,73,-0.2937852759401227],[118,77,74,-0.297120613387445],[118,77,75,-0.2982802412258569],[118,77,76,-0.2977406510168913],[118,77,77,-0.29746969818181923],[118,77,78,-0.29536367702272437],[118,77,79,-0.2912021034398795],[118,78,64,-0.3209340544246734],[118,78,65,-0.3219996641361835],[118,78,66,-0.3185961929187174],[118,78,67,-0.3131251303021586],[118,78,68,-0.30968492120061264],[118,78,69,-0.30769982524375],[118,78,70,-0.305681633218684],[118,78,71,-0.3057959418086947],[118,78,72,-0.3065887081483498],[118,78,73,-0.3078976356635667],[118,78,74,-0.3114338554214331],[118,78,75,-0.3128099817310022],[118,78,76,-0.31302436979067155],[118,78,77,-0.312826524653898],[118,78,78,-0.31120821136485427],[118,78,79,-0.3068989277171049],[118,79,64,-0.3324345101406051],[118,79,65,-0.332742801206337],[118,79,66,-0.3301570984670109],[118,79,67,-0.3250318137906192],[118,79,68,-0.3213447940328433],[118,79,69,-0.31915144189947303],[118,79,70,-0.3169166777752292],[118,79,71,-0.3173362912232586],[118,79,72,-0.31892277925648044],[118,79,73,-0.3203555160303395],[118,79,74,-0.3231100059151929],[118,79,75,-0.32558832562538015],[118,79,76,-0.3262965396783996],[118,79,77,-0.32587065399967247],[118,79,78,-0.32437047720165124],[118,79,79,-0.3203282413005675],[118,80,64,-0.3462118919745469],[118,80,65,-0.3462623003154247],[118,80,66,-0.34419241078645835],[118,80,67,-0.33917428777401337],[118,80,68,-0.33580861045450133],[118,80,69,-0.33295496983103895],[118,80,70,-0.33008534054566163],[118,80,71,-0.3312042800256149],[118,80,72,-0.333649815109498],[118,80,73,-0.3353996868272009],[118,80,74,-0.33771329428807284],[118,80,75,-0.3402399243864172],[118,80,76,-0.3416677320089289],[118,80,77,-0.34145052917106283],[118,80,78,-0.3391455620930915],[118,80,79,-0.3355353808464302],[118,81,64,-0.3571769702920519],[118,81,65,-0.3569876141712949],[118,81,66,-0.35470311118417924],[118,81,67,-0.35065622892461434],[118,81,68,-0.3476127075948683],[118,81,69,-0.34361575851921533],[118,81,70,-0.34193179872559537],[118,81,71,-0.3433288986867105],[118,81,72,-0.3467554325651453],[118,81,73,-0.3498357026117058],[118,81,74,-0.351584614634793],[118,81,75,-0.35449234693082016],[118,81,76,-0.35563096614007716],[118,81,77,-0.35694909956272786],[118,81,78,-0.35466383239703225],[118,81,79,-0.3517555151974819],[118,82,64,-0.37187769598712783],[118,82,65,-0.3720630022985793],[118,82,66,-0.3693771271286319],[118,82,67,-0.3659114517845215],[118,82,68,-0.36268289006223753],[118,82,69,-0.35911459490010733],[118,82,70,-0.3577476716374729],[118,82,71,-0.35939388649255455],[118,82,72,-0.36196118528251126],[118,82,73,-0.36619282515403223],[118,82,74,-0.3680480266207373],[118,82,75,-0.3709352297224587],[118,82,76,-0.3714512572976559],[118,82,77,-0.3722540322065383],[118,82,78,-0.37062210614710306],[118,82,79,-0.36759428546011125],[118,83,64,-0.38475506236640805],[118,83,65,-0.38548557637455794],[118,83,66,-0.3825856321271084],[118,83,67,-0.3793652340858303],[118,83,68,-0.37522855341877015],[118,83,69,-0.37309789024209133],[118,83,70,-0.3726340594948922],[118,83,71,-0.3738041835230631],[118,83,72,-0.3760021973252089],[118,83,73,-0.3795762977750277],[118,83,74,-0.382710133340786],[118,83,75,-0.38467585838851315],[118,83,76,-0.38496271286353406],[118,83,77,-0.3860992262645468],[118,83,78,-0.38447057744886776],[118,83,79,-0.38199525090913006],[118,84,64,-0.3965745409165757],[118,84,65,-0.3982089071551552],[118,84,66,-0.3951513414195776],[118,84,67,-0.3922020016331814],[118,84,68,-0.3881869822717305],[118,84,69,-0.3863913293484291],[118,84,70,-0.3859776107376337],[118,84,71,-0.3875235518711114],[118,84,72,-0.38966928036950815],[118,84,73,-0.3931768162065032],[118,84,74,-0.39649603110500337],[118,84,75,-0.39804820103439764],[118,84,76,-0.3986253559588018],[118,84,77,-0.3987235687275567],[118,84,78,-0.39739330891864205],[118,84,79,-0.39499295887821334],[118,85,64,-0.4143179575666595],[118,85,65,-0.415077990950927],[118,85,66,-0.41327595010442053],[118,85,67,-0.41015699946850487],[118,85,68,-0.4064704873300741],[118,85,69,-0.4051097739521434],[118,85,70,-0.4047667612240345],[118,85,71,-0.40604297651536725],[118,85,72,-0.40748583501860636],[118,85,73,-0.41015561584604526],[118,85,74,-0.4136960296686885],[118,85,75,-0.41518794092821937],[118,85,76,-0.4154939409824447],[118,85,77,-0.414678208221352],[118,85,78,-0.41119670146695597],[118,85,79,-0.4082997839892476],[118,86,64,-0.42717803121763526],[118,86,65,-0.428087452502249],[118,86,66,-0.4259607310595244],[118,86,67,-0.4229904551917064],[118,86,68,-0.41906704839979086],[118,86,69,-0.4182767070560131],[118,86,70,-0.41839386169148807],[118,86,71,-0.41888744105995845],[118,86,72,-0.42039647549502696],[118,86,73,-0.42312526235818326],[118,86,74,-0.4266657268569777],[118,86,75,-0.42767766299708504],[118,86,76,-0.42858581900825327],[118,86,77,-0.4279635788349493],[118,86,78,-0.42468015925963426],[118,86,79,-0.4215689165312893],[118,87,64,-0.437140743031183],[118,87,65,-0.4375818712952237],[118,87,66,-0.43623008945460257],[118,87,67,-0.4333060804182508],[118,87,68,-0.4300576848214602],[118,87,69,-0.42883205537371627],[118,87,70,-0.4281324951243854],[118,87,71,-0.42921255476299214],[118,87,72,-0.43064533477910094],[118,87,73,-0.43341898454391636],[118,87,74,-0.4370269696172916],[118,87,75,-0.43871685322821746],[118,87,76,-0.43965303290888513],[118,87,77,-0.43901537760935594],[118,87,78,-0.43585649053634307],[118,87,79,-0.43222874864918887],[118,88,64,-0.44880703288646995],[118,88,65,-0.44964386822757724],[118,88,66,-0.4485350191215731],[118,88,67,-0.44586595551191804],[118,88,68,-0.4427738590718532],[118,88,69,-0.44091644265112356],[118,88,70,-0.4401679175732227],[118,88,71,-0.44112061527141083],[118,88,72,-0.4428889911715597],[118,88,73,-0.4453635608415114],[118,88,74,-0.4488872752758695],[118,88,75,-0.4507697186799466],[118,88,76,-0.45138511213047616],[118,88,77,-0.4512368020620483],[118,88,78,-0.44818337954864934],[118,88,79,-0.4442959237474013],[118,89,64,-0.4583333333333333],[118,89,65,-0.4583333333333333],[118,89,66,-0.4583333333333333],[118,89,67,-0.4581029857935334],[118,89,68,-0.45419896427630896],[118,89,69,-0.4527854944461922],[118,89,70,-0.45185502675509964],[118,89,71,-0.452177516522753],[118,89,72,-0.4543915475382528],[118,89,73,-0.45700955186722403],[118,89,74,-0.4583333333333333],[118,89,75,-0.4583333333333333],[118,89,76,-0.4583333333333333],[118,89,77,-0.4583333333333333],[118,89,78,-0.4583333333333333],[118,89,79,-0.4561159545710731],[118,90,64,-0.4583333333333333],[118,90,65,-0.4583333333333333],[118,90,66,-0.4583333333333333],[118,90,67,-0.4583333333333333],[118,90,68,-0.4583333333333333],[118,90,69,-0.4583333333333333],[118,90,70,-0.4583333333333333],[118,90,71,-0.4583333333333333],[118,90,72,-0.4583333333333333],[118,90,73,-0.4583333333333333],[118,90,74,-0.4583333333333333],[118,90,75,-0.4583333333333333],[118,90,76,-0.4583333333333333],[118,90,77,-0.4583333333333333],[118,90,78,-0.4583333333333333],[118,90,79,-0.4583333333333333],[118,91,64,-0.4583333333333333],[118,91,65,-0.4583333333333333],[118,91,66,-0.4583333333333333],[118,91,67,-0.4583333333333333],[118,91,68,-0.4583333333333333],[118,91,69,-0.4583333333333333],[118,91,70,-0.4583333333333333],[118,91,71,-0.4583333333333333],[118,91,72,-0.4583333333333333],[118,91,73,-0.4583333333333333],[118,91,74,-0.4583333333333333],[118,91,75,-0.4583333333333333],[118,91,76,-0.4583333333333333],[118,91,77,-0.4583333333333333],[118,91,78,-0.4583333333333333],[118,91,79,-0.4583333333333333],[118,92,64,-0.4583333333333333],[118,92,65,-0.4583333333333333],[118,92,66,-0.4583333333333333],[118,92,67,-0.4583333333333333],[118,92,68,-0.4583333333333333],[118,92,69,-0.4583333333333333],[118,92,70,-0.4583333333333333],[118,92,71,-0.4583333333333333],[118,92,72,-0.4583333333333333],[118,92,73,-0.4583333333333333],[118,92,74,-0.4583333333333333],[118,92,75,-0.4583333333333333],[118,92,76,-0.4583333333333333],[118,92,77,-0.4583333333333333],[118,92,78,-0.4583333333333333],[118,92,79,-0.4583333333333333],[118,93,64,-0.4583333333333333],[118,93,65,-0.4583333333333333],[118,93,66,-0.4583333333333333],[118,93,67,-0.4583333333333333],[118,93,68,-0.4583333333333333],[118,93,69,-0.4583333333333333],[118,93,70,-0.4583333333333333],[118,93,71,-0.4583333333333333],[118,93,72,-0.4583333333333333],[118,93,73,-0.4583333333333333],[118,93,74,-0.4583333333333333],[118,93,75,-0.4583333333333333],[118,93,76,-0.4583333333333333],[118,93,77,-0.4583333333333333],[118,93,78,-0.4583333333333333],[118,93,79,-0.4583333333333333],[118,94,64,-0.4583333333333333],[118,94,65,-0.4583333333333333],[118,94,66,-0.4583333333333333],[118,94,67,-0.4583333333333333],[118,94,68,-0.4583333333333333],[118,94,69,-0.4583333333333333],[118,94,70,-0.4583333333333333],[118,94,71,-0.4583333333333333],[118,94,72,-0.4583333333333333],[118,94,73,-0.4583333333333333],[118,94,74,-0.4583333333333333],[118,94,75,-0.4583333333333333],[118,94,76,-0.4583333333333333],[118,94,77,-0.4583333333333333],[118,94,78,-0.4583333333333333],[118,94,79,-0.4583333333333333],[118,95,64,-0.4583333333333333],[118,95,65,-0.4583333333333333],[118,95,66,-0.4583333333333333],[118,95,67,-0.4583333333333333],[118,95,68,-0.4583333333333333],[118,95,69,-0.4583333333333333],[118,95,70,-0.4583333333333333],[118,95,71,-0.4583333333333333],[118,95,72,-0.4583333333333333],[118,95,73,-0.4583333333333333],[118,95,74,-0.4583333333333333],[118,95,75,-0.4583333333333333],[118,95,76,-0.4583333333333333],[118,95,77,-0.4583333333333333],[118,95,78,-0.4583333333333333],[118,95,79,-0.4583333333333333],[118,96,64,-0.4583333333333333],[118,96,65,-0.4583333333333333],[118,96,66,-0.4583333333333333],[118,96,67,-0.4583333333333333],[118,96,68,-0.4583333333333333],[118,96,69,-0.4583333333333333],[118,96,70,-0.4583333333333333],[118,96,71,-0.4583333333333333],[118,96,72,-0.4583333333333333],[118,96,73,-0.4583333333333333],[118,96,74,-0.4583333333333333],[118,96,75,-0.4583333333333333],[118,96,76,-0.4583333333333333],[118,96,77,-0.4583333333333333],[118,96,78,-0.4583333333333333],[118,96,79,-0.4583333333333333],[118,97,64,-0.4583333333333333],[118,97,65,-0.4583333333333333],[118,97,66,-0.4583333333333333],[118,97,67,-0.4583333333333333],[118,97,68,-0.4583333333333333],[118,97,69,-0.4583333333333333],[118,97,70,-0.4583333333333333],[118,97,71,-0.4583333333333333],[118,97,72,-0.4583333333333333],[118,97,73,-0.4583333333333333],[118,97,74,-0.4583333333333333],[118,97,75,-0.4583333333333333],[118,97,76,-0.4583333333333333],[118,97,77,-0.4583333333333333],[118,97,78,-0.4583333333333333],[118,97,79,-0.4583333333333333],[118,98,64,-0.4583333333333333],[118,98,65,-0.4583333333333333],[118,98,66,-0.4583333333333333],[118,98,67,-0.4583333333333333],[118,98,68,-0.4583333333333333],[118,98,69,-0.4583333333333333],[118,98,70,-0.4583333333333333],[118,98,71,-0.4583333333333333],[118,98,72,-0.4583333333333333],[118,98,73,-0.4583333333333333],[118,98,74,-0.4583333333333333],[118,98,75,-0.4583333333333333],[118,98,76,-0.4583333333333333],[118,98,77,-0.4583333333333333],[118,98,78,-0.4583333333333333],[118,98,79,-0.4583333333333333],[118,99,64,-0.4583333333333333],[118,99,65,-0.4583333333333333],[118,99,66,-0.4583333333333333],[118,99,67,-0.4583333333333333],[118,99,68,-0.4583333333333333],[118,99,69,-0.4583333333333333],[118,99,70,-0.4583333333333333],[118,99,71,-0.4583333333333333],[118,99,72,-0.4583333333333333],[118,99,73,-0.4583333333333333],[118,99,74,-0.4583333333333333],[118,99,75,-0.4583333333333333],[118,99,76,-0.4583333333333333],[118,99,77,-0.4583333333333333],[118,99,78,-0.4583333333333333],[118,99,79,-0.4583333333333333],[118,100,64,-0.4583333333333333],[118,100,65,-0.4583333333333333],[118,100,66,-0.4583333333333333],[118,100,67,-0.4583333333333333],[118,100,68,-0.4583333333333333],[118,100,69,-0.4583333333333333],[118,100,70,-0.4583333333333333],[118,100,71,-0.4583333333333333],[118,100,72,-0.4583333333333333],[118,100,73,-0.4583333333333333],[118,100,74,-0.4583333333333333],[118,100,75,-0.4583333333333333],[118,100,76,-0.4583333333333333],[118,100,77,-0.4583333333333333],[118,100,78,-0.4583333333333333],[118,100,79,-0.4583333333333333],[118,101,64,-0.4583333333333333],[118,101,65,-0.4583333333333333],[118,101,66,-0.4583333333333333],[118,101,67,-0.4583333333333333],[118,101,68,-0.4583333333333333],[118,101,69,-0.4583333333333333],[118,101,70,-0.4583333333333333],[118,101,71,-0.4583333333333333],[118,101,72,-0.4583333333333333],[118,101,73,-0.4583333333333333],[118,101,74,-0.4583333333333333],[118,101,75,-0.4583333333333333],[118,101,76,-0.4583333333333333],[118,101,77,-0.4583333333333333],[118,101,78,-0.4583333333333333],[118,101,79,-0.4583333333333333],[118,102,64,-0.4583333333333333],[118,102,65,-0.4583333333333333],[118,102,66,-0.4583333333333333],[118,102,67,-0.4583333333333333],[118,102,68,-0.4583333333333333],[118,102,69,-0.4583333333333333],[118,102,70,-0.4583333333333333],[118,102,71,-0.4583333333333333],[118,102,72,-0.4583333333333333],[118,102,73,-0.4583333333333333],[118,102,74,-0.4583333333333333],[118,102,75,-0.4583333333333333],[118,102,76,-0.4583333333333333],[118,102,77,-0.4583333333333333],[118,102,78,-0.4583333333333333],[118,102,79,-0.4583333333333333],[118,103,64,-0.4583333333333333],[118,103,65,-0.4583333333333333],[118,103,66,-0.4583333333333333],[118,103,67,-0.4583333333333333],[118,103,68,-0.4583333333333333],[118,103,69,-0.4583333333333333],[118,103,70,-0.4583333333333333],[118,103,71,-0.4583333333333333],[118,103,72,-0.4583333333333333],[118,103,73,-0.4583333333333333],[118,103,74,-0.4583333333333333],[118,103,75,-0.4583333333333333],[118,103,76,-0.4583333333333333],[118,103,77,-0.4583333333333333],[118,103,78,-0.4583333333333333],[118,103,79,-0.4583333333333333],[118,104,64,-0.4583333333333333],[118,104,65,-0.4583333333333333],[118,104,66,-0.4583333333333333],[118,104,67,-0.4583333333333333],[118,104,68,-0.4583333333333333],[118,104,69,-0.4583333333333333],[118,104,70,-0.4583333333333333],[118,104,71,-0.4583333333333333],[118,104,72,-0.4583333333333333],[118,104,73,-0.4583333333333333],[118,104,74,-0.4583333333333333],[118,104,75,-0.4583333333333333],[118,104,76,-0.4583333333333333],[118,104,77,-0.4583333333333333],[118,104,78,-0.4583333333333333],[118,104,79,-0.4583333333333333],[118,105,64,-0.4583333333333333],[118,105,65,-0.4583333333333333],[118,105,66,-0.4583333333333333],[118,105,67,-0.4583333333333333],[118,105,68,-0.4583333333333333],[118,105,69,-0.4583333333333333],[118,105,70,-0.4583333333333333],[118,105,71,-0.4583333333333333],[118,105,72,-0.4583333333333333],[118,105,73,-0.4583333333333333],[118,105,74,-0.4583333333333333],[118,105,75,-0.4583333333333333],[118,105,76,-0.4583333333333333],[118,105,77,-0.4583333333333333],[118,105,78,-0.4583333333333333],[118,105,79,-0.4583333333333333],[118,106,64,-0.4583333333333333],[118,106,65,-0.4583333333333333],[118,106,66,-0.4583333333333333],[118,106,67,-0.4583333333333333],[118,106,68,-0.4583333333333333],[118,106,69,-0.4583333333333333],[118,106,70,-0.4583333333333333],[118,106,71,-0.4583333333333333],[118,106,72,-0.4583333333333333],[118,106,73,-0.4583333333333333],[118,106,74,-0.4583333333333333],[118,106,75,-0.4583333333333333],[118,106,76,-0.4583333333333333],[118,106,77,-0.4583333333333333],[118,106,78,-0.4583333333333333],[118,106,79,-0.4583333333333333],[118,107,64,-0.4583333333333333],[118,107,65,-0.4583333333333333],[118,107,66,-0.4583333333333333],[118,107,67,-0.4583333333333333],[118,107,68,-0.4583333333333333],[118,107,69,-0.4583333333333333],[118,107,70,-0.4583333333333333],[118,107,71,-0.4583333333333333],[118,107,72,-0.4583333333333333],[118,107,73,-0.4583333333333333],[118,107,74,-0.4583333333333333],[118,107,75,-0.4583333333333333],[118,107,76,-0.4583333333333333],[118,107,77,-0.4583333333333333],[118,107,78,-0.4583333333333333],[118,107,79,-0.4583333333333333],[118,108,64,-0.4583333333333333],[118,108,65,-0.4583333333333333],[118,108,66,-0.4583333333333333],[118,108,67,-0.4583333333333333],[118,108,68,-0.4583333333333333],[118,108,69,-0.4583333333333333],[118,108,70,-0.4583333333333333],[118,108,71,-0.4583333333333333],[118,108,72,-0.4583333333333333],[118,108,73,-0.4583333333333333],[118,108,74,-0.4583333333333333],[118,108,75,-0.4583333333333333],[118,108,76,-0.4583333333333333],[118,108,77,-0.4583333333333333],[118,108,78,-0.4583333333333333],[118,108,79,-0.4583333333333333],[118,109,64,-0.4583333333333333],[118,109,65,-0.4583333333333333],[118,109,66,-0.4583333333333333],[118,109,67,-0.4583333333333333],[118,109,68,-0.4583333333333333],[118,109,69,-0.4583333333333333],[118,109,70,-0.4583333333333333],[118,109,71,-0.4583333333333333],[118,109,72,-0.4583333333333333],[118,109,73,-0.4583333333333333],[118,109,74,-0.4583333333333333],[118,109,75,-0.4583333333333333],[118,109,76,-0.4583333333333333],[118,109,77,-0.4583333333333333],[118,109,78,-0.4583333333333333],[118,109,79,-0.4583333333333333],[118,110,64,-0.4583333333333333],[118,110,65,-0.4583333333333333],[118,110,66,-0.4583333333333333],[118,110,67,-0.4583333333333333],[118,110,68,-0.4583333333333333],[118,110,69,-0.4583333333333333],[118,110,70,-0.4583333333333333],[118,110,71,-0.4583333333333333],[118,110,72,-0.4583333333333333],[118,110,73,-0.4583333333333333],[118,110,74,-0.4583333333333333],[118,110,75,-0.4583333333333333],[118,110,76,-0.4583333333333333],[118,110,77,-0.4583333333333333],[118,110,78,-0.4583333333333333],[118,110,79,-0.4583333333333333],[118,111,64,-0.4583333333333333],[118,111,65,-0.4583333333333333],[118,111,66,-0.4583333333333333],[118,111,67,-0.4583333333333333],[118,111,68,-0.4583333333333333],[118,111,69,-0.4583333333333333],[118,111,70,-0.4583333333333333],[118,111,71,-0.4583333333333333],[118,111,72,-0.4583333333333333],[118,111,73,-0.4583333333333333],[118,111,74,-0.4583333333333333],[118,111,75,-0.4583333333333333],[118,111,76,-0.4583333333333333],[118,111,77,-0.4583333333333333],[118,111,78,-0.4583333333333333],[118,111,79,-0.4583333333333333],[118,112,64,-0.4583333333333333],[118,112,65,-0.4583333333333333],[118,112,66,-0.4583333333333333],[118,112,67,-0.4583333333333333],[118,112,68,-0.4583333333333333],[118,112,69,-0.4583333333333333],[118,112,70,-0.4583333333333333],[118,112,71,-0.4583333333333333],[118,112,72,-0.4583333333333333],[118,112,73,-0.4583333333333333],[118,112,74,-0.4583333333333333],[118,112,75,-0.4583333333333333],[118,112,76,-0.4583333333333333],[118,112,77,-0.4583333333333333],[118,112,78,-0.4583333333333333],[118,112,79,-0.4583333333333333],[118,113,64,-0.4583333333333333],[118,113,65,-0.4583333333333333],[118,113,66,-0.4583333333333333],[118,113,67,-0.4583333333333333],[118,113,68,-0.4583333333333333],[118,113,69,-0.4583333333333333],[118,113,70,-0.4583333333333333],[118,113,71,-0.4583333333333333],[118,113,72,-0.4583333333333333],[118,113,73,-0.4583333333333333],[118,113,74,-0.4583333333333333],[118,113,75,-0.4583333333333333],[118,113,76,-0.4583333333333333],[118,113,77,-0.4583333333333333],[118,113,78,-0.4583333333333333],[118,113,79,-0.4583333333333333],[118,114,64,-0.4583333333333333],[118,114,65,-0.4583333333333333],[118,114,66,-0.4583333333333333],[118,114,67,-0.4583333333333333],[118,114,68,-0.4583333333333333],[118,114,69,-0.4583333333333333],[118,114,70,-0.4583333333333333],[118,114,71,-0.4583333333333333],[118,114,72,-0.4583333333333333],[118,114,73,-0.4583333333333333],[118,114,74,-0.4583333333333333],[118,114,75,-0.4583333333333333],[118,114,76,-0.4583333333333333],[118,114,77,-0.4583333333333333],[118,114,78,-0.4583333333333333],[118,114,79,-0.4583333333333333],[118,115,64,-0.4583333333333333],[118,115,65,-0.4583333333333333],[118,115,66,-0.4583333333333333],[118,115,67,-0.4583333333333333],[118,115,68,-0.4583333333333333],[118,115,69,-0.4583333333333333],[118,115,70,-0.4583333333333333],[118,115,71,-0.4583333333333333],[118,115,72,-0.4583333333333333],[118,115,73,-0.4583333333333333],[118,115,74,-0.4583333333333333],[118,115,75,-0.4583333333333333],[118,115,76,-0.4583333333333333],[118,115,77,-0.4583333333333333],[118,115,78,-0.4583333333333333],[118,115,79,-0.4583333333333333],[118,116,64,-0.4583333333333333],[118,116,65,-0.4583333333333333],[118,116,66,-0.4583333333333333],[118,116,67,-0.4583333333333333],[118,116,68,-0.4583333333333333],[118,116,69,-0.4583333333333333],[118,116,70,-0.4583333333333333],[118,116,71,-0.4583333333333333],[118,116,72,-0.4583333333333333],[118,116,73,-0.4583333333333333],[118,116,74,-0.4583333333333333],[118,116,75,-0.4583333333333333],[118,116,76,-0.4583333333333333],[118,116,77,-0.4583333333333333],[118,116,78,-0.4583333333333333],[118,116,79,-0.4583333333333333],[118,117,64,-0.4583333333333333],[118,117,65,-0.4583333333333333],[118,117,66,-0.4583333333333333],[118,117,67,-0.4583333333333333],[118,117,68,-0.4583333333333333],[118,117,69,-0.4583333333333333],[118,117,70,-0.4583333333333333],[118,117,71,-0.4583333333333333],[118,117,72,-0.4583333333333333],[118,117,73,-0.4583333333333333],[118,117,74,-0.4583333333333333],[118,117,75,-0.4583333333333333],[118,117,76,-0.4583333333333333],[118,117,77,-0.4583333333333333],[118,117,78,-0.4583333333333333],[118,117,79,-0.4583333333333333],[118,118,64,-0.4583333333333333],[118,118,65,-0.4583333333333333],[118,118,66,-0.4583333333333333],[118,118,67,-0.4583333333333333],[118,118,68,-0.4583333333333333],[118,118,69,-0.4583333333333333],[118,118,70,-0.4583333333333333],[118,118,71,-0.4583333333333333],[118,118,72,-0.4583333333333333],[118,118,73,-0.4583333333333333],[118,118,74,-0.4583333333333333],[118,118,75,-0.4583333333333333],[118,118,76,-0.4583333333333333],[118,118,77,-0.4583333333333333],[118,118,78,-0.4583333333333333],[118,118,79,-0.4583333333333333],[118,119,64,-0.4583333333333333],[118,119,65,-0.4583333333333333],[118,119,66,-0.4583333333333333],[118,119,67,-0.4583333333333333],[118,119,68,-0.4583333333333333],[118,119,69,-0.4583333333333333],[118,119,70,-0.4583333333333333],[118,119,71,-0.4583333333333333],[118,119,72,-0.4583333333333333],[118,119,73,-0.4583333333333333],[118,119,74,-0.4583333333333333],[118,119,75,-0.4583333333333333],[118,119,76,-0.4583333333333333],[118,119,77,-0.4583333333333333],[118,119,78,-0.4583333333333333],[118,119,79,-0.4583333333333333],[118,120,64,-0.4583333333333333],[118,120,65,-0.4583333333333333],[118,120,66,-0.4583333333333333],[118,120,67,-0.4583333333333333],[118,120,68,-0.4583333333333333],[118,120,69,-0.4583333333333333],[118,120,70,-0.4583333333333333],[118,120,71,-0.4583333333333333],[118,120,72,-0.4583333333333333],[118,120,73,-0.4583333333333333],[118,120,74,-0.4583333333333333],[118,120,75,-0.4583333333333333],[118,120,76,-0.4583333333333333],[118,120,77,-0.4583333333333333],[118,120,78,-0.4583333333333333],[118,120,79,-0.4583333333333333],[118,121,64,-0.4583333333333333],[118,121,65,-0.4583333333333333],[118,121,66,-0.4583333333333333],[118,121,67,-0.4583333333333333],[118,121,68,-0.4583333333333333],[118,121,69,-0.4583333333333333],[118,121,70,-0.4583333333333333],[118,121,71,-0.4583333333333333],[118,121,72,-0.4583333333333333],[118,121,73,-0.4583333333333333],[118,121,74,-0.4583333333333333],[118,121,75,-0.4583333333333333],[118,121,76,-0.4583333333333333],[118,121,77,-0.4583333333333333],[118,121,78,-0.4583333333333333],[118,121,79,-0.4583333333333333],[118,122,64,-0.4583333333333333],[118,122,65,-0.4583333333333333],[118,122,66,-0.4583333333333333],[118,122,67,-0.4583333333333333],[118,122,68,-0.4583333333333333],[118,122,69,-0.4583333333333333],[118,122,70,-0.4583333333333333],[118,122,71,-0.4583333333333333],[118,122,72,-0.4583333333333333],[118,122,73,-0.4583333333333333],[118,122,74,-0.4583333333333333],[118,122,75,-0.4583333333333333],[118,122,76,-0.4583333333333333],[118,122,77,-0.4583333333333333],[118,122,78,-0.4583333333333333],[118,122,79,-0.4583333333333333],[118,123,64,-0.4583333333333333],[118,123,65,-0.4583333333333333],[118,123,66,-0.4583333333333333],[118,123,67,-0.4583333333333333],[118,123,68,-0.4583333333333333],[118,123,69,-0.4583333333333333],[118,123,70,-0.4583333333333333],[118,123,71,-0.4583333333333333],[118,123,72,-0.4583333333333333],[118,123,73,-0.4583333333333333],[118,123,74,-0.4583333333333333],[118,123,75,-0.4583333333333333],[118,123,76,-0.4583333333333333],[118,123,77,-0.4583333333333333],[118,123,78,-0.4583333333333333],[118,123,79,-0.4583333333333333],[118,124,64,-0.4583333333333333],[118,124,65,-0.4583333333333333],[118,124,66,-0.4583333333333333],[118,124,67,-0.4583333333333333],[118,124,68,-0.4583333333333333],[118,124,69,-0.4583333333333333],[118,124,70,-0.4583333333333333],[118,124,71,-0.4583333333333333],[118,124,72,-0.4583333333333333],[118,124,73,-0.4583333333333333],[118,124,74,-0.4583333333333333],[118,124,75,-0.4583333333333333],[118,124,76,-0.4583333333333333],[118,124,77,-0.4583333333333333],[118,124,78,-0.4583333333333333],[118,124,79,-0.4583333333333333],[118,125,64,-0.4583333333333333],[118,125,65,-0.4583333333333333],[118,125,66,-0.4583333333333333],[118,125,67,-0.4583333333333333],[118,125,68,-0.4583333333333333],[118,125,69,-0.4583333333333333],[118,125,70,-0.4583333333333333],[118,125,71,-0.4583333333333333],[118,125,72,-0.4583333333333333],[118,125,73,-0.4583333333333333],[118,125,74,-0.4583333333333333],[118,125,75,-0.4583333333333333],[118,125,76,-0.4583333333333333],[118,125,77,-0.4583333333333333],[118,125,78,-0.4583333333333333],[118,125,79,-0.4583333333333333],[118,126,64,-0.4583333333333333],[118,126,65,-0.4583333333333333],[118,126,66,-0.4583333333333333],[118,126,67,-0.4583333333333333],[118,126,68,-0.4583333333333333],[118,126,69,-0.4583333333333333],[118,126,70,-0.4583333333333333],[118,126,71,-0.4583333333333333],[118,126,72,-0.4583333333333333],[118,126,73,-0.4583333333333333],[118,126,74,-0.4583333333333333],[118,126,75,-0.4583333333333333],[118,126,76,-0.4583333333333333],[118,126,77,-0.4583333333333333],[118,126,78,-0.4583333333333333],[118,126,79,-0.4583333333333333],[118,127,64,-0.4583333333333333],[118,127,65,-0.4583333333333333],[118,127,66,-0.4583333333333333],[118,127,67,-0.4583333333333333],[118,127,68,-0.4583333333333333],[118,127,69,-0.4583333333333333],[118,127,70,-0.4583333333333333],[118,127,71,-0.4583333333333333],[118,127,72,-0.4583333333333333],[118,127,73,-0.4583333333333333],[118,127,74,-0.4583333333333333],[118,127,75,-0.4583333333333333],[118,127,76,-0.4583333333333333],[118,127,77,-0.4583333333333333],[118,127,78,-0.4583333333333333],[118,127,79,-0.4583333333333333],[118,128,64,-0.4583333333333333],[118,128,65,-0.4583333333333333],[118,128,66,-0.4583333333333333],[118,128,67,-0.4583333333333333],[118,128,68,-0.4583333333333333],[118,128,69,-0.4583333333333333],[118,128,70,-0.4583333333333333],[118,128,71,-0.4583333333333333],[118,128,72,-0.4583333333333333],[118,128,73,-0.4583333333333333],[118,128,74,-0.4583333333333333],[118,128,75,-0.4583333333333333],[118,128,76,-0.4583333333333333],[118,128,77,-0.4583333333333333],[118,128,78,-0.4583333333333333],[118,128,79,-0.4583333333333333],[118,129,64,-0.4583333333333333],[118,129,65,-0.4583333333333333],[118,129,66,-0.4583333333333333],[118,129,67,-0.4583333333333333],[118,129,68,-0.4583333333333333],[118,129,69,-0.4583333333333333],[118,129,70,-0.4583333333333333],[118,129,71,-0.4583333333333333],[118,129,72,-0.4583333333333333],[118,129,73,-0.4583333333333333],[118,129,74,-0.4583333333333333],[118,129,75,-0.4583333333333333],[118,129,76,-0.4583333333333333],[118,129,77,-0.4583333333333333],[118,129,78,-0.4583333333333333],[118,129,79,-0.4583333333333333],[118,130,64,-0.4583333333333333],[118,130,65,-0.4583333333333333],[118,130,66,-0.4583333333333333],[118,130,67,-0.4583333333333333],[118,130,68,-0.4583333333333333],[118,130,69,-0.4583333333333333],[118,130,70,-0.4583333333333333],[118,130,71,-0.4583333333333333],[118,130,72,-0.4583333333333333],[118,130,73,-0.4583333333333333],[118,130,74,-0.4583333333333333],[118,130,75,-0.4583333333333333],[118,130,76,-0.4583333333333333],[118,130,77,-0.4583333333333333],[118,130,78,-0.4583333333333333],[118,130,79,-0.4583333333333333],[118,131,64,-0.4583333333333333],[118,131,65,-0.4583333333333333],[118,131,66,-0.4583333333333333],[118,131,67,-0.4583333333333333],[118,131,68,-0.4583333333333333],[118,131,69,-0.4583333333333333],[118,131,70,-0.4583333333333333],[118,131,71,-0.4583333333333333],[118,131,72,-0.4583333333333333],[118,131,73,-0.4583333333333333],[118,131,74,-0.4583333333333333],[118,131,75,-0.4583333333333333],[118,131,76,-0.4583333333333333],[118,131,77,-0.4583333333333333],[118,131,78,-0.4583333333333333],[118,131,79,-0.4583333333333333],[118,132,64,-0.4583333333333333],[118,132,65,-0.4583333333333333],[118,132,66,-0.4583333333333333],[118,132,67,-0.4583333333333333],[118,132,68,-0.4583333333333333],[118,132,69,-0.4583333333333333],[118,132,70,-0.4583333333333333],[118,132,71,-0.4583333333333333],[118,132,72,-0.4583333333333333],[118,132,73,-0.4583333333333333],[118,132,74,-0.4583333333333333],[118,132,75,-0.4583333333333333],[118,132,76,-0.4583333333333333],[118,132,77,-0.4583333333333333],[118,132,78,-0.4583333333333333],[118,132,79,-0.4583333333333333],[118,133,64,-0.4583333333333333],[118,133,65,-0.4583333333333333],[118,133,66,-0.4583333333333333],[118,133,67,-0.4583333333333333],[118,133,68,-0.4583333333333333],[118,133,69,-0.4583333333333333],[118,133,70,-0.4583333333333333],[118,133,71,-0.4583333333333333],[118,133,72,-0.4583333333333333],[118,133,73,-0.4583333333333333],[118,133,74,-0.4583333333333333],[118,133,75,-0.4583333333333333],[118,133,76,-0.4583333333333333],[118,133,77,-0.4583333333333333],[118,133,78,-0.4583333333333333],[118,133,79,-0.4583333333333333],[118,134,64,-0.4583333333333333],[118,134,65,-0.4583333333333333],[118,134,66,-0.4583333333333333],[118,134,67,-0.4583333333333333],[118,134,68,-0.4583333333333333],[118,134,69,-0.4583333333333333],[118,134,70,-0.4583333333333333],[118,134,71,-0.4583333333333333],[118,134,72,-0.4583333333333333],[118,134,73,-0.4583333333333333],[118,134,74,-0.4583333333333333],[118,134,75,-0.4583333333333333],[118,134,76,-0.4583333333333333],[118,134,77,-0.4583333333333333],[118,134,78,-0.4583333333333333],[118,134,79,-0.4583333333333333],[118,135,64,-0.4583333333333333],[118,135,65,-0.4583333333333333],[118,135,66,-0.4583333333333333],[118,135,67,-0.4583333333333333],[118,135,68,-0.4583333333333333],[118,135,69,-0.4583333333333333],[118,135,70,-0.4583333333333333],[118,135,71,-0.4583333333333333],[118,135,72,-0.4583333333333333],[118,135,73,-0.4583333333333333],[118,135,74,-0.4583333333333333],[118,135,75,-0.4583333333333333],[118,135,76,-0.4583333333333333],[118,135,77,-0.4583333333333333],[118,135,78,-0.4583333333333333],[118,135,79,-0.4583333333333333],[118,136,64,-0.4583333333333333],[118,136,65,-0.4583333333333333],[118,136,66,-0.4583333333333333],[118,136,67,-0.4583333333333333],[118,136,68,-0.4583333333333333],[118,136,69,-0.4583333333333333],[118,136,70,-0.4583333333333333],[118,136,71,-0.4583333333333333],[118,136,72,-0.4583333333333333],[118,136,73,-0.4583333333333333],[118,136,74,-0.4583333333333333],[118,136,75,-0.4583333333333333],[118,136,76,-0.4583333333333333],[118,136,77,-0.4583333333333333],[118,136,78,-0.4583333333333333],[118,136,79,-0.4583333333333333],[118,137,64,-0.4583333333333333],[118,137,65,-0.4583333333333333],[118,137,66,-0.4583333333333333],[118,137,67,-0.4583333333333333],[118,137,68,-0.4583333333333333],[118,137,69,-0.4583333333333333],[118,137,70,-0.4583333333333333],[118,137,71,-0.4583333333333333],[118,137,72,-0.4583333333333333],[118,137,73,-0.4583333333333333],[118,137,74,-0.4583333333333333],[118,137,75,-0.4583333333333333],[118,137,76,-0.4583333333333333],[118,137,77,-0.4583333333333333],[118,137,78,-0.4583333333333333],[118,137,79,-0.4583333333333333],[118,138,64,-0.4583333333333333],[118,138,65,-0.4583333333333333],[118,138,66,-0.4583333333333333],[118,138,67,-0.4583333333333333],[118,138,68,-0.4583333333333333],[118,138,69,-0.4583333333333333],[118,138,70,-0.4583333333333333],[118,138,71,-0.4583333333333333],[118,138,72,-0.4583333333333333],[118,138,73,-0.4583333333333333],[118,138,74,-0.4583333333333333],[118,138,75,-0.4583333333333333],[118,138,76,-0.4583333333333333],[118,138,77,-0.4583333333333333],[118,138,78,-0.4583333333333333],[118,138,79,-0.4583333333333333],[118,139,64,-0.4583333333333333],[118,139,65,-0.4583333333333333],[118,139,66,-0.4583333333333333],[118,139,67,-0.4583333333333333],[118,139,68,-0.4583333333333333],[118,139,69,-0.4583333333333333],[118,139,70,-0.4583333333333333],[118,139,71,-0.4583333333333333],[118,139,72,-0.4583333333333333],[118,139,73,-0.4583333333333333],[118,139,74,-0.4583333333333333],[118,139,75,-0.4583333333333333],[118,139,76,-0.4583333333333333],[118,139,77,-0.4583333333333333],[118,139,78,-0.4583333333333333],[118,139,79,-0.4583333333333333],[118,140,64,-0.4583333333333333],[118,140,65,-0.4583333333333333],[118,140,66,-0.4583333333333333],[118,140,67,-0.4583333333333333],[118,140,68,-0.4583333333333333],[118,140,69,-0.4583333333333333],[118,140,70,-0.4583333333333333],[118,140,71,-0.4583333333333333],[118,140,72,-0.4583333333333333],[118,140,73,-0.4583333333333333],[118,140,74,-0.4583333333333333],[118,140,75,-0.4583333333333333],[118,140,76,-0.4583333333333333],[118,140,77,-0.4583333333333333],[118,140,78,-0.4583333333333333],[118,140,79,-0.4583333333333333],[118,141,64,-0.4583333333333333],[118,141,65,-0.4583333333333333],[118,141,66,-0.4583333333333333],[118,141,67,-0.4583333333333333],[118,141,68,-0.4583333333333333],[118,141,69,-0.4583333333333333],[118,141,70,-0.4583333333333333],[118,141,71,-0.4583333333333333],[118,141,72,-0.4583333333333333],[118,141,73,-0.4583333333333333],[118,141,74,-0.4583333333333333],[118,141,75,-0.4583333333333333],[118,141,76,-0.4583333333333333],[118,141,77,-0.4583333333333333],[118,141,78,-0.4583333333333333],[118,141,79,-0.4583333333333333],[118,142,64,-0.4583333333333333],[118,142,65,-0.4583333333333333],[118,142,66,-0.4583333333333333],[118,142,67,-0.4583333333333333],[118,142,68,-0.4583333333333333],[118,142,69,-0.4583333333333333],[118,142,70,-0.4583333333333333],[118,142,71,-0.4583333333333333],[118,142,72,-0.4583333333333333],[118,142,73,-0.4583333333333333],[118,142,74,-0.4583333333333333],[118,142,75,-0.4583333333333333],[118,142,76,-0.4583333333333333],[118,142,77,-0.4583333333333333],[118,142,78,-0.4583333333333333],[118,142,79,-0.4583333333333333],[118,143,64,-0.4583333333333333],[118,143,65,-0.4583333333333333],[118,143,66,-0.4583333333333333],[118,143,67,-0.4583333333333333],[118,143,68,-0.4583333333333333],[118,143,69,-0.4583333333333333],[118,143,70,-0.4583333333333333],[118,143,71,-0.4583333333333333],[118,143,72,-0.4583333333333333],[118,143,73,-0.4583333333333333],[118,143,74,-0.4583333333333333],[118,143,75,-0.4583333333333333],[118,143,76,-0.4583333333333333],[118,143,77,-0.4583333333333333],[118,143,78,-0.4583333333333333],[118,143,79,-0.4583333333333333],[118,144,64,-0.4583333333333333],[118,144,65,-0.4583333333333333],[118,144,66,-0.4583333333333333],[118,144,67,-0.4583333333333333],[118,144,68,-0.4583333333333333],[118,144,69,-0.4583333333333333],[118,144,70,-0.4583333333333333],[118,144,71,-0.4583333333333333],[118,144,72,-0.4583333333333333],[118,144,73,-0.4583333333333333],[118,144,74,-0.4583333333333333],[118,144,75,-0.4583333333333333],[118,144,76,-0.4583333333333333],[118,144,77,-0.4583333333333333],[118,144,78,-0.4583333333333333],[118,144,79,-0.4583333333333333],[118,145,64,-0.4583333333333333],[118,145,65,-0.4583333333333333],[118,145,66,-0.4583333333333333],[118,145,67,-0.4583333333333333],[118,145,68,-0.4583333333333333],[118,145,69,-0.4583333333333333],[118,145,70,-0.4583333333333333],[118,145,71,-0.4583333333333333],[118,145,72,-0.4583333333333333],[118,145,73,-0.4583333333333333],[118,145,74,-0.4583333333333333],[118,145,75,-0.4583333333333333],[118,145,76,-0.4583333333333333],[118,145,77,-0.4583333333333333],[118,145,78,-0.4583333333333333],[118,145,79,-0.4583333333333333],[118,146,64,-0.4583333333333333],[118,146,65,-0.4583333333333333],[118,146,66,-0.4583333333333333],[118,146,67,-0.4583333333333333],[118,146,68,-0.4583333333333333],[118,146,69,-0.4583333333333333],[118,146,70,-0.4583333333333333],[118,146,71,-0.4583333333333333],[118,146,72,-0.4583333333333333],[118,146,73,-0.4583333333333333],[118,146,74,-0.4583333333333333],[118,146,75,-0.4583333333333333],[118,146,76,-0.4583333333333333],[118,146,77,-0.4583333333333333],[118,146,78,-0.4583333333333333],[118,146,79,-0.4583333333333333],[118,147,64,-0.4583333333333333],[118,147,65,-0.4583333333333333],[118,147,66,-0.4583333333333333],[118,147,67,-0.4583333333333333],[118,147,68,-0.4583333333333333],[118,147,69,-0.4583333333333333],[118,147,70,-0.4583333333333333],[118,147,71,-0.4583333333333333],[118,147,72,-0.4583333333333333],[118,147,73,-0.4583333333333333],[118,147,74,-0.4583333333333333],[118,147,75,-0.4583333333333333],[118,147,76,-0.4583333333333333],[118,147,77,-0.4583333333333333],[118,147,78,-0.4583333333333333],[118,147,79,-0.4583333333333333],[118,148,64,-0.4583333333333333],[118,148,65,-0.4583333333333333],[118,148,66,-0.4583333333333333],[118,148,67,-0.4583333333333333],[118,148,68,-0.4583333333333333],[118,148,69,-0.4583333333333333],[118,148,70,-0.4583333333333333],[118,148,71,-0.4583333333333333],[118,148,72,-0.4583333333333333],[118,148,73,-0.4583333333333333],[118,148,74,-0.4583333333333333],[118,148,75,-0.4583333333333333],[118,148,76,-0.4583333333333333],[118,148,77,-0.4583333333333333],[118,148,78,-0.4583333333333333],[118,148,79,-0.4583333333333333],[118,149,64,-0.4583333333333333],[118,149,65,-0.4583333333333333],[118,149,66,-0.4583333333333333],[118,149,67,-0.4583333333333333],[118,149,68,-0.4583333333333333],[118,149,69,-0.4583333333333333],[118,149,70,-0.4583333333333333],[118,149,71,-0.4583333333333333],[118,149,72,-0.4583333333333333],[118,149,73,-0.4583333333333333],[118,149,74,-0.4583333333333333],[118,149,75,-0.4583333333333333],[118,149,76,-0.4583333333333333],[118,149,77,-0.4583333333333333],[118,149,78,-0.4583333333333333],[118,149,79,-0.4583333333333333],[118,150,64,-0.4583333333333333],[118,150,65,-0.4583333333333333],[118,150,66,-0.4583333333333333],[118,150,67,-0.4583333333333333],[118,150,68,-0.4583333333333333],[118,150,69,-0.4583333333333333],[118,150,70,-0.4583333333333333],[118,150,71,-0.4583333333333333],[118,150,72,-0.4583333333333333],[118,150,73,-0.4583333333333333],[118,150,74,-0.4583333333333333],[118,150,75,-0.4583333333333333],[118,150,76,-0.4583333333333333],[118,150,77,-0.4583333333333333],[118,150,78,-0.4583333333333333],[118,150,79,-0.4583333333333333],[118,151,64,-0.4583333333333333],[118,151,65,-0.4583333333333333],[118,151,66,-0.4583333333333333],[118,151,67,-0.4583333333333333],[118,151,68,-0.4583333333333333],[118,151,69,-0.4583333333333333],[118,151,70,-0.4583333333333333],[118,151,71,-0.4583333333333333],[118,151,72,-0.4583333333333333],[118,151,73,-0.4583333333333333],[118,151,74,-0.4583333333333333],[118,151,75,-0.4583333333333333],[118,151,76,-0.4583333333333333],[118,151,77,-0.4583333333333333],[118,151,78,-0.4583333333333333],[118,151,79,-0.4583333333333333],[118,152,64,-0.4583333333333333],[118,152,65,-0.4583333333333333],[118,152,66,-0.4583333333333333],[118,152,67,-0.4583333333333333],[118,152,68,-0.4583333333333333],[118,152,69,-0.4583333333333333],[118,152,70,-0.4583333333333333],[118,152,71,-0.4583333333333333],[118,152,72,-0.4583333333333333],[118,152,73,-0.4583333333333333],[118,152,74,-0.4583333333333333],[118,152,75,-0.4583333333333333],[118,152,76,-0.4583333333333333],[118,152,77,-0.4583333333333333],[118,152,78,-0.4583333333333333],[118,152,79,-0.4583333333333333],[118,153,64,-0.4583333333333333],[118,153,65,-0.4583333333333333],[118,153,66,-0.4583333333333333],[118,153,67,-0.4583333333333333],[118,153,68,-0.4583333333333333],[118,153,69,-0.4583333333333333],[118,153,70,-0.4583333333333333],[118,153,71,-0.4583333333333333],[118,153,72,-0.4583333333333333],[118,153,73,-0.4583333333333333],[118,153,74,-0.4583333333333333],[118,153,75,-0.4583333333333333],[118,153,76,-0.4583333333333333],[118,153,77,-0.4583333333333333],[118,153,78,-0.4583333333333333],[118,153,79,-0.4583333333333333],[118,154,64,-0.4583333333333333],[118,154,65,-0.4583333333333333],[118,154,66,-0.4583333333333333],[118,154,67,-0.4583333333333333],[118,154,68,-0.4583333333333333],[118,154,69,-0.4583333333333333],[118,154,70,-0.4583333333333333],[118,154,71,-0.4583333333333333],[118,154,72,-0.4583333333333333],[118,154,73,-0.4583333333333333],[118,154,74,-0.4583333333333333],[118,154,75,-0.4583333333333333],[118,154,76,-0.4583333333333333],[118,154,77,-0.4583333333333333],[118,154,78,-0.4583333333333333],[118,154,79,-0.4583333333333333],[118,155,64,-0.4583333333333333],[118,155,65,-0.4583333333333333],[118,155,66,-0.4583333333333333],[118,155,67,-0.4583333333333333],[118,155,68,-0.4583333333333333],[118,155,69,-0.4583333333333333],[118,155,70,-0.4583333333333333],[118,155,71,-0.4583333333333333],[118,155,72,-0.4583333333333333],[118,155,73,-0.4583333333333333],[118,155,74,-0.4583333333333333],[118,155,75,-0.4583333333333333],[118,155,76,-0.4583333333333333],[118,155,77,-0.4583333333333333],[118,155,78,-0.4583333333333333],[118,155,79,-0.4583333333333333],[118,156,64,-0.4583333333333333],[118,156,65,-0.4583333333333333],[118,156,66,-0.4583333333333333],[118,156,67,-0.4583333333333333],[118,156,68,-0.4583333333333333],[118,156,69,-0.4583333333333333],[118,156,70,-0.4583333333333333],[118,156,71,-0.4583333333333333],[118,156,72,-0.4583333333333333],[118,156,73,-0.4583333333333333],[118,156,74,-0.4583333333333333],[118,156,75,-0.4583333333333333],[118,156,76,-0.4583333333333333],[118,156,77,-0.4583333333333333],[118,156,78,-0.4583333333333333],[118,156,79,-0.4583333333333333],[118,157,64,-0.4583333333333333],[118,157,65,-0.4583333333333333],[118,157,66,-0.4583333333333333],[118,157,67,-0.4583333333333333],[118,157,68,-0.4583333333333333],[118,157,69,-0.4583333333333333],[118,157,70,-0.4583333333333333],[118,157,71,-0.4583333333333333],[118,157,72,-0.4583333333333333],[118,157,73,-0.4583333333333333],[118,157,74,-0.4583333333333333],[118,157,75,-0.4583333333333333],[118,157,76,-0.4583333333333333],[118,157,77,-0.4583333333333333],[118,157,78,-0.4583333333333333],[118,157,79,-0.4583333333333333],[118,158,64,-0.4583333333333333],[118,158,65,-0.4583333333333333],[118,158,66,-0.4583333333333333],[118,158,67,-0.4583333333333333],[118,158,68,-0.4583333333333333],[118,158,69,-0.4583333333333333],[118,158,70,-0.4583333333333333],[118,158,71,-0.4583333333333333],[118,158,72,-0.4583333333333333],[118,158,73,-0.4583333333333333],[118,158,74,-0.4583333333333333],[118,158,75,-0.4583333333333333],[118,158,76,-0.4583333333333333],[118,158,77,-0.4583333333333333],[118,158,78,-0.4583333333333333],[118,158,79,-0.4583333333333333],[118,159,64,-0.4583333333333333],[118,159,65,-0.4583333333333333],[118,159,66,-0.4583333333333333],[118,159,67,-0.4583333333333333],[118,159,68,-0.4583333333333333],[118,159,69,-0.4583333333333333],[118,159,70,-0.4583333333333333],[118,159,71,-0.4583333333333333],[118,159,72,-0.4583333333333333],[118,159,73,-0.4583333333333333],[118,159,74,-0.4583333333333333],[118,159,75,-0.4583333333333333],[118,159,76,-0.4583333333333333],[118,159,77,-0.4583333333333333],[118,159,78,-0.4583333333333333],[118,159,79,-0.4583333333333333],[118,160,64,-0.4583333333333333],[118,160,65,-0.4583333333333333],[118,160,66,-0.4583333333333333],[118,160,67,-0.4583333333333333],[118,160,68,-0.4583333333333333],[118,160,69,-0.4583333333333333],[118,160,70,-0.4583333333333333],[118,160,71,-0.4583333333333333],[118,160,72,-0.4583333333333333],[118,160,73,-0.4583333333333333],[118,160,74,-0.4583333333333333],[118,160,75,-0.4583333333333333],[118,160,76,-0.4583333333333333],[118,160,77,-0.4583333333333333],[118,160,78,-0.4583333333333333],[118,160,79,-0.4583333333333333],[118,161,64,-0.4583333333333333],[118,161,65,-0.4583333333333333],[118,161,66,-0.4583333333333333],[118,161,67,-0.4583333333333333],[118,161,68,-0.4583333333333333],[118,161,69,-0.4583333333333333],[118,161,70,-0.4583333333333333],[118,161,71,-0.4583333333333333],[118,161,72,-0.4583333333333333],[118,161,73,-0.4583333333333333],[118,161,74,-0.4583333333333333],[118,161,75,-0.4583333333333333],[118,161,76,-0.4583333333333333],[118,161,77,-0.4583333333333333],[118,161,78,-0.4583333333333333],[118,161,79,-0.4583333333333333],[118,162,64,-0.4583333333333333],[118,162,65,-0.4583333333333333],[118,162,66,-0.4583333333333333],[118,162,67,-0.4583333333333333],[118,162,68,-0.4583333333333333],[118,162,69,-0.4583333333333333],[118,162,70,-0.4583333333333333],[118,162,71,-0.4583333333333333],[118,162,72,-0.4583333333333333],[118,162,73,-0.4583333333333333],[118,162,74,-0.4583333333333333],[118,162,75,-0.4583333333333333],[118,162,76,-0.4583333333333333],[118,162,77,-0.4583333333333333],[118,162,78,-0.4583333333333333],[118,162,79,-0.4583333333333333],[118,163,64,-0.4583333333333333],[118,163,65,-0.4583333333333333],[118,163,66,-0.4583333333333333],[118,163,67,-0.4583333333333333],[118,163,68,-0.4583333333333333],[118,163,69,-0.4583333333333333],[118,163,70,-0.4583333333333333],[118,163,71,-0.4583333333333333],[118,163,72,-0.4583333333333333],[118,163,73,-0.4583333333333333],[118,163,74,-0.4583333333333333],[118,163,75,-0.4583333333333333],[118,163,76,-0.4583333333333333],[118,163,77,-0.4583333333333333],[118,163,78,-0.4583333333333333],[118,163,79,-0.4583333333333333],[118,164,64,-0.4583333333333333],[118,164,65,-0.4583333333333333],[118,164,66,-0.4583333333333333],[118,164,67,-0.4583333333333333],[118,164,68,-0.4583333333333333],[118,164,69,-0.4583333333333333],[118,164,70,-0.4583333333333333],[118,164,71,-0.4583333333333333],[118,164,72,-0.4583333333333333],[118,164,73,-0.4583333333333333],[118,164,74,-0.4583333333333333],[118,164,75,-0.4583333333333333],[118,164,76,-0.4583333333333333],[118,164,77,-0.4583333333333333],[118,164,78,-0.4583333333333333],[118,164,79,-0.4583333333333333],[118,165,64,-0.4583333333333333],[118,165,65,-0.4583333333333333],[118,165,66,-0.4583333333333333],[118,165,67,-0.4583333333333333],[118,165,68,-0.4583333333333333],[118,165,69,-0.4583333333333333],[118,165,70,-0.4583333333333333],[118,165,71,-0.4583333333333333],[118,165,72,-0.4583333333333333],[118,165,73,-0.4583333333333333],[118,165,74,-0.4583333333333333],[118,165,75,-0.4583333333333333],[118,165,76,-0.4583333333333333],[118,165,77,-0.4583333333333333],[118,165,78,-0.4583333333333333],[118,165,79,-0.4583333333333333],[118,166,64,-0.4583333333333333],[118,166,65,-0.4583333333333333],[118,166,66,-0.4583333333333333],[118,166,67,-0.4583333333333333],[118,166,68,-0.4583333333333333],[118,166,69,-0.4583333333333333],[118,166,70,-0.4583333333333333],[118,166,71,-0.4583333333333333],[118,166,72,-0.4583333333333333],[118,166,73,-0.4583333333333333],[118,166,74,-0.4583333333333333],[118,166,75,-0.4583333333333333],[118,166,76,-0.4583333333333333],[118,166,77,-0.4583333333333333],[118,166,78,-0.4583333333333333],[118,166,79,-0.4583333333333333],[118,167,64,-0.4583333333333333],[118,167,65,-0.4583333333333333],[118,167,66,-0.4583333333333333],[118,167,67,-0.4583333333333333],[118,167,68,-0.4583333333333333],[118,167,69,-0.4583333333333333],[118,167,70,-0.4583333333333333],[118,167,71,-0.4583333333333333],[118,167,72,-0.4583333333333333],[118,167,73,-0.4583333333333333],[118,167,74,-0.4583333333333333],[118,167,75,-0.4583333333333333],[118,167,76,-0.4583333333333333],[118,167,77,-0.4583333333333333],[118,167,78,-0.4583333333333333],[118,167,79,-0.4583333333333333],[118,168,64,-0.4583333333333333],[118,168,65,-0.4583333333333333],[118,168,66,-0.4583333333333333],[118,168,67,-0.4583333333333333],[118,168,68,-0.4583333333333333],[118,168,69,-0.4583333333333333],[118,168,70,-0.4583333333333333],[118,168,71,-0.4583333333333333],[118,168,72,-0.4583333333333333],[118,168,73,-0.4583333333333333],[118,168,74,-0.4583333333333333],[118,168,75,-0.4583333333333333],[118,168,76,-0.4583333333333333],[118,168,77,-0.4583333333333333],[118,168,78,-0.4583333333333333],[118,168,79,-0.4583333333333333],[118,169,64,-0.4583333333333333],[118,169,65,-0.4583333333333333],[118,169,66,-0.4583333333333333],[118,169,67,-0.4583333333333333],[118,169,68,-0.4583333333333333],[118,169,69,-0.4583333333333333],[118,169,70,-0.4583333333333333],[118,169,71,-0.4583333333333333],[118,169,72,-0.4583333333333333],[118,169,73,-0.4583333333333333],[118,169,74,-0.4583333333333333],[118,169,75,-0.4583333333333333],[118,169,76,-0.4583333333333333],[118,169,77,-0.4583333333333333],[118,169,78,-0.4583333333333333],[118,169,79,-0.4583333333333333],[118,170,64,-0.4583333333333333],[118,170,65,-0.4583333333333333],[118,170,66,-0.4583333333333333],[118,170,67,-0.4583333333333333],[118,170,68,-0.4583333333333333],[118,170,69,-0.4583333333333333],[118,170,70,-0.4583333333333333],[118,170,71,-0.4583333333333333],[118,170,72,-0.4583333333333333],[118,170,73,-0.4583333333333333],[118,170,74,-0.4583333333333333],[118,170,75,-0.4583333333333333],[118,170,76,-0.4583333333333333],[118,170,77,-0.4583333333333333],[118,170,78,-0.4583333333333333],[118,170,79,-0.4583333333333333],[118,171,64,-0.4583333333333333],[118,171,65,-0.4583333333333333],[118,171,66,-0.4583333333333333],[118,171,67,-0.4583333333333333],[118,171,68,-0.4583333333333333],[118,171,69,-0.4583333333333333],[118,171,70,-0.4583333333333333],[118,171,71,-0.4583333333333333],[118,171,72,-0.4583333333333333],[118,171,73,-0.4583333333333333],[118,171,74,-0.4583333333333333],[118,171,75,-0.4583333333333333],[118,171,76,-0.4583333333333333],[118,171,77,-0.4583333333333333],[118,171,78,-0.4583333333333333],[118,171,79,-0.4583333333333333],[118,172,64,-0.4583333333333333],[118,172,65,-0.4583333333333333],[118,172,66,-0.4583333333333333],[118,172,67,-0.4583333333333333],[118,172,68,-0.4583333333333333],[118,172,69,-0.4583333333333333],[118,172,70,-0.4583333333333333],[118,172,71,-0.4583333333333333],[118,172,72,-0.4583333333333333],[118,172,73,-0.4583333333333333],[118,172,74,-0.4583333333333333],[118,172,75,-0.4583333333333333],[118,172,76,-0.4583333333333333],[118,172,77,-0.4583333333333333],[118,172,78,-0.4583333333333333],[118,172,79,-0.4583333333333333],[118,173,64,-0.4583333333333333],[118,173,65,-0.4583333333333333],[118,173,66,-0.4583333333333333],[118,173,67,-0.4583333333333333],[118,173,68,-0.4583333333333333],[118,173,69,-0.4583333333333333],[118,173,70,-0.4583333333333333],[118,173,71,-0.4583333333333333],[118,173,72,-0.4583333333333333],[118,173,73,-0.4583333333333333],[118,173,74,-0.4583333333333333],[118,173,75,-0.4583333333333333],[118,173,76,-0.4583333333333333],[118,173,77,-0.4583333333333333],[118,173,78,-0.4583333333333333],[118,173,79,-0.4583333333333333],[118,174,64,-0.4583333333333333],[118,174,65,-0.4583333333333333],[118,174,66,-0.4583333333333333],[118,174,67,-0.4583333333333333],[118,174,68,-0.4583333333333333],[118,174,69,-0.4583333333333333],[118,174,70,-0.4583333333333333],[118,174,71,-0.4583333333333333],[118,174,72,-0.4583333333333333],[118,174,73,-0.4583333333333333],[118,174,74,-0.4583333333333333],[118,174,75,-0.4583333333333333],[118,174,76,-0.4583333333333333],[118,174,77,-0.4583333333333333],[118,174,78,-0.4583333333333333],[118,174,79,-0.4583333333333333],[118,175,64,-0.4583333333333333],[118,175,65,-0.4583333333333333],[118,175,66,-0.4583333333333333],[118,175,67,-0.4583333333333333],[118,175,68,-0.4583333333333333],[118,175,69,-0.4583333333333333],[118,175,70,-0.4583333333333333],[118,175,71,-0.4583333333333333],[118,175,72,-0.4583333333333333],[118,175,73,-0.4583333333333333],[118,175,74,-0.4583333333333333],[118,175,75,-0.4583333333333333],[118,175,76,-0.4583333333333333],[118,175,77,-0.4583333333333333],[118,175,78,-0.4583333333333333],[118,175,79,-0.4583333333333333],[118,176,64,-0.4583333333333333],[118,176,65,-0.4583333333333333],[118,176,66,-0.4583333333333333],[118,176,67,-0.4583333333333333],[118,176,68,-0.4583333333333333],[118,176,69,-0.4583333333333333],[118,176,70,-0.4583333333333333],[118,176,71,-0.4583333333333333],[118,176,72,-0.4583333333333333],[118,176,73,-0.4583333333333333],[118,176,74,-0.4583333333333333],[118,176,75,-0.4583333333333333],[118,176,76,-0.4583333333333333],[118,176,77,-0.4583333333333333],[118,176,78,-0.4583333333333333],[118,176,79,-0.4583333333333333],[118,177,64,-0.4583333333333333],[118,177,65,-0.4583333333333333],[118,177,66,-0.4583333333333333],[118,177,67,-0.4583333333333333],[118,177,68,-0.4583333333333333],[118,177,69,-0.4583333333333333],[118,177,70,-0.4583333333333333],[118,177,71,-0.4583333333333333],[118,177,72,-0.4583333333333333],[118,177,73,-0.4583333333333333],[118,177,74,-0.4583333333333333],[118,177,75,-0.4583333333333333],[118,177,76,-0.4583333333333333],[118,177,77,-0.4583333333333333],[118,177,78,-0.4583333333333333],[118,177,79,-0.4583333333333333],[118,178,64,-0.4583333333333333],[118,178,65,-0.4583333333333333],[118,178,66,-0.4583333333333333],[118,178,67,-0.4583333333333333],[118,178,68,-0.4583333333333333],[118,178,69,-0.4583333333333333],[118,178,70,-0.4583333333333333],[118,178,71,-0.4583333333333333],[118,178,72,-0.4583333333333333],[118,178,73,-0.4583333333333333],[118,178,74,-0.4583333333333333],[118,178,75,-0.4583333333333333],[118,178,76,-0.4583333333333333],[118,178,77,-0.4583333333333333],[118,178,78,-0.4583333333333333],[118,178,79,-0.4583333333333333],[118,179,64,-0.4583333333333333],[118,179,65,-0.4583333333333333],[118,179,66,-0.4583333333333333],[118,179,67,-0.4583333333333333],[118,179,68,-0.4583333333333333],[118,179,69,-0.4583333333333333],[118,179,70,-0.4583333333333333],[118,179,71,-0.4583333333333333],[118,179,72,-0.4583333333333333],[118,179,73,-0.4583333333333333],[118,179,74,-0.4583333333333333],[118,179,75,-0.4583333333333333],[118,179,76,-0.4583333333333333],[118,179,77,-0.4583333333333333],[118,179,78,-0.4583333333333333],[118,179,79,-0.4583333333333333],[118,180,64,-0.4583333333333333],[118,180,65,-0.4583333333333333],[118,180,66,-0.4583333333333333],[118,180,67,-0.4583333333333333],[118,180,68,-0.4583333333333333],[118,180,69,-0.4583333333333333],[118,180,70,-0.4583333333333333],[118,180,71,-0.4583333333333333],[118,180,72,-0.4583333333333333],[118,180,73,-0.4583333333333333],[118,180,74,-0.4583333333333333],[118,180,75,-0.4583333333333333],[118,180,76,-0.4583333333333333],[118,180,77,-0.4583333333333333],[118,180,78,-0.4583333333333333],[118,180,79,-0.4583333333333333],[118,181,64,-0.4583333333333333],[118,181,65,-0.4583333333333333],[118,181,66,-0.4583333333333333],[118,181,67,-0.4583333333333333],[118,181,68,-0.4583333333333333],[118,181,69,-0.4583333333333333],[118,181,70,-0.4583333333333333],[118,181,71,-0.4583333333333333],[118,181,72,-0.4583333333333333],[118,181,73,-0.4583333333333333],[118,181,74,-0.4583333333333333],[118,181,75,-0.4583333333333333],[118,181,76,-0.4583333333333333],[118,181,77,-0.4583333333333333],[118,181,78,-0.4583333333333333],[118,181,79,-0.4583333333333333],[118,182,64,-0.4583333333333333],[118,182,65,-0.4583333333333333],[118,182,66,-0.4583333333333333],[118,182,67,-0.4583333333333333],[118,182,68,-0.4583333333333333],[118,182,69,-0.4583333333333333],[118,182,70,-0.4583333333333333],[118,182,71,-0.4583333333333333],[118,182,72,-0.4583333333333333],[118,182,73,-0.4583333333333333],[118,182,74,-0.4583333333333333],[118,182,75,-0.4583333333333333],[118,182,76,-0.4583333333333333],[118,182,77,-0.4583333333333333],[118,182,78,-0.4583333333333333],[118,182,79,-0.4583333333333333],[118,183,64,-0.4583333333333333],[118,183,65,-0.4583333333333333],[118,183,66,-0.4583333333333333],[118,183,67,-0.4583333333333333],[118,183,68,-0.4583333333333333],[118,183,69,-0.4583333333333333],[118,183,70,-0.4583333333333333],[118,183,71,-0.4583333333333333],[118,183,72,-0.4583333333333333],[118,183,73,-0.4583333333333333],[118,183,74,-0.4583333333333333],[118,183,75,-0.4583333333333333],[118,183,76,-0.4583333333333333],[118,183,77,-0.4583333333333333],[118,183,78,-0.4583333333333333],[118,183,79,-0.4583333333333333],[118,184,64,-0.4583333333333333],[118,184,65,-0.4583333333333333],[118,184,66,-0.4583333333333333],[118,184,67,-0.4583333333333333],[118,184,68,-0.4583333333333333],[118,184,69,-0.4583333333333333],[118,184,70,-0.4583333333333333],[118,184,71,-0.4583333333333333],[118,184,72,-0.4583333333333333],[118,184,73,-0.4583333333333333],[118,184,74,-0.4583333333333333],[118,184,75,-0.4583333333333333],[118,184,76,-0.4583333333333333],[118,184,77,-0.4583333333333333],[118,184,78,-0.4583333333333333],[118,184,79,-0.4583333333333333],[118,185,64,-0.4583333333333333],[118,185,65,-0.4583333333333333],[118,185,66,-0.4583333333333333],[118,185,67,-0.4583333333333333],[118,185,68,-0.4583333333333333],[118,185,69,-0.4583333333333333],[118,185,70,-0.4583333333333333],[118,185,71,-0.4583333333333333],[118,185,72,-0.4583333333333333],[118,185,73,-0.4583333333333333],[118,185,74,-0.4583333333333333],[118,185,75,-0.4583333333333333],[118,185,76,-0.4583333333333333],[118,185,77,-0.4583333333333333],[118,185,78,-0.4583333333333333],[118,185,79,-0.4583333333333333],[118,186,64,-0.4583333333333333],[118,186,65,-0.4583333333333333],[118,186,66,-0.4583333333333333],[118,186,67,-0.4583333333333333],[118,186,68,-0.4583333333333333],[118,186,69,-0.4583333333333333],[118,186,70,-0.4583333333333333],[118,186,71,-0.4583333333333333],[118,186,72,-0.4583333333333333],[118,186,73,-0.4583333333333333],[118,186,74,-0.4583333333333333],[118,186,75,-0.4583333333333333],[118,186,76,-0.4583333333333333],[118,186,77,-0.4583333333333333],[118,186,78,-0.4583333333333333],[118,186,79,-0.4583333333333333],[118,187,64,-0.4583333333333333],[118,187,65,-0.4583333333333333],[118,187,66,-0.4583333333333333],[118,187,67,-0.4583333333333333],[118,187,68,-0.4583333333333333],[118,187,69,-0.4583333333333333],[118,187,70,-0.4583333333333333],[118,187,71,-0.4583333333333333],[118,187,72,-0.4583333333333333],[118,187,73,-0.4583333333333333],[118,187,74,-0.4583333333333333],[118,187,75,-0.4583333333333333],[118,187,76,-0.4583333333333333],[118,187,77,-0.4583333333333333],[118,187,78,-0.4583333333333333],[118,187,79,-0.4583333333333333],[118,188,64,-0.4583333333333333],[118,188,65,-0.4583333333333333],[118,188,66,-0.4583333333333333],[118,188,67,-0.4583333333333333],[118,188,68,-0.4583333333333333],[118,188,69,-0.4583333333333333],[118,188,70,-0.4583333333333333],[118,188,71,-0.4583333333333333],[118,188,72,-0.4583333333333333],[118,188,73,-0.4583333333333333],[118,188,74,-0.4583333333333333],[118,188,75,-0.4583333333333333],[118,188,76,-0.4583333333333333],[118,188,77,-0.4583333333333333],[118,188,78,-0.4583333333333333],[118,188,79,-0.4583333333333333],[118,189,64,-0.4583333333333333],[118,189,65,-0.4583333333333333],[118,189,66,-0.4583333333333333],[118,189,67,-0.4583333333333333],[118,189,68,-0.4583333333333333],[118,189,69,-0.4583333333333333],[118,189,70,-0.4583333333333333],[118,189,71,-0.4583333333333333],[118,189,72,-0.4583333333333333],[118,189,73,-0.4583333333333333],[118,189,74,-0.4583333333333333],[118,189,75,-0.4583333333333333],[118,189,76,-0.4583333333333333],[118,189,77,-0.4583333333333333],[118,189,78,-0.4583333333333333],[118,189,79,-0.4583333333333333],[118,190,64,-0.4583333333333333],[118,190,65,-0.4583333333333333],[118,190,66,-0.4583333333333333],[118,190,67,-0.4583333333333333],[118,190,68,-0.4583333333333333],[118,190,69,-0.4583333333333333],[118,190,70,-0.4583333333333333],[118,190,71,-0.4583333333333333],[118,190,72,-0.4583333333333333],[118,190,73,-0.4583333333333333],[118,190,74,-0.4583333333333333],[118,190,75,-0.4583333333333333],[118,190,76,-0.4583333333333333],[118,190,77,-0.4583333333333333],[118,190,78,-0.4583333333333333],[118,190,79,-0.4583333333333333],[118,191,64,-0.4583333333333333],[118,191,65,-0.4583333333333333],[118,191,66,-0.4583333333333333],[118,191,67,-0.4583333333333333],[118,191,68,-0.4583333333333333],[118,191,69,-0.4583333333333333],[118,191,70,-0.4583333333333333],[118,191,71,-0.4583333333333333],[118,191,72,-0.4583333333333333],[118,191,73,-0.4583333333333333],[118,191,74,-0.4583333333333333],[118,191,75,-0.4583333333333333],[118,191,76,-0.4583333333333333],[118,191,77,-0.4583333333333333],[118,191,78,-0.4583333333333333],[118,191,79,-0.4583333333333333],[118,192,64,-0.4583333333333333],[118,192,65,-0.4583333333333333],[118,192,66,-0.4583333333333333],[118,192,67,-0.4583333333333333],[118,192,68,-0.4583333333333333],[118,192,69,-0.4583333333333333],[118,192,70,-0.4583333333333333],[118,192,71,-0.4583333333333333],[118,192,72,-0.4583333333333333],[118,192,73,-0.4583333333333333],[118,192,74,-0.4583333333333333],[118,192,75,-0.4583333333333333],[118,192,76,-0.4583333333333333],[118,192,77,-0.4583333333333333],[118,192,78,-0.4583333333333333],[118,192,79,-0.4583333333333333],[118,193,64,-0.4583333333333333],[118,193,65,-0.4583333333333333],[118,193,66,-0.4583333333333333],[118,193,67,-0.4583333333333333],[118,193,68,-0.4583333333333333],[118,193,69,-0.4583333333333333],[118,193,70,-0.4583333333333333],[118,193,71,-0.4583333333333333],[118,193,72,-0.4583333333333333],[118,193,73,-0.4583333333333333],[118,193,74,-0.4583333333333333],[118,193,75,-0.4583333333333333],[118,193,76,-0.4583333333333333],[118,193,77,-0.4583333333333333],[118,193,78,-0.4583333333333333],[118,193,79,-0.4583333333333333],[118,194,64,-0.4583333333333333],[118,194,65,-0.4583333333333333],[118,194,66,-0.4583333333333333],[118,194,67,-0.4583333333333333],[118,194,68,-0.4583333333333333],[118,194,69,-0.4583333333333333],[118,194,70,-0.4583333333333333],[118,194,71,-0.4583333333333333],[118,194,72,-0.4583333333333333],[118,194,73,-0.4583333333333333],[118,194,74,-0.4583333333333333],[118,194,75,-0.4583333333333333],[118,194,76,-0.4583333333333333],[118,194,77,-0.4583333333333333],[118,194,78,-0.4583333333333333],[118,194,79,-0.4583333333333333],[118,195,64,-0.4583333333333333],[118,195,65,-0.4583333333333333],[118,195,66,-0.4583333333333333],[118,195,67,-0.4583333333333333],[118,195,68,-0.4583333333333333],[118,195,69,-0.4583333333333333],[118,195,70,-0.4583333333333333],[118,195,71,-0.4583333333333333],[118,195,72,-0.4583333333333333],[118,195,73,-0.4583333333333333],[118,195,74,-0.4583333333333333],[118,195,75,-0.4583333333333333],[118,195,76,-0.4583333333333333],[118,195,77,-0.4583333333333333],[118,195,78,-0.4583333333333333],[118,195,79,-0.4583333333333333],[118,196,64,-0.4583333333333333],[118,196,65,-0.4583333333333333],[118,196,66,-0.4583333333333333],[118,196,67,-0.4583333333333333],[118,196,68,-0.4583333333333333],[118,196,69,-0.4583333333333333],[118,196,70,-0.4583333333333333],[118,196,71,-0.4583333333333333],[118,196,72,-0.4583333333333333],[118,196,73,-0.4583333333333333],[118,196,74,-0.4583333333333333],[118,196,75,-0.4583333333333333],[118,196,76,-0.4583333333333333],[118,196,77,-0.4583333333333333],[118,196,78,-0.4583333333333333],[118,196,79,-0.4583333333333333],[118,197,64,-0.4583333333333333],[118,197,65,-0.4583333333333333],[118,197,66,-0.4583333333333333],[118,197,67,-0.4583333333333333],[118,197,68,-0.4583333333333333],[118,197,69,-0.4583333333333333],[118,197,70,-0.4583333333333333],[118,197,71,-0.4583333333333333],[118,197,72,-0.4583333333333333],[118,197,73,-0.4583333333333333],[118,197,74,-0.4583333333333333],[118,197,75,-0.4583333333333333],[118,197,76,-0.4583333333333333],[118,197,77,-0.4583333333333333],[118,197,78,-0.4583333333333333],[118,197,79,-0.4583333333333333],[118,198,64,-0.4583333333333333],[118,198,65,-0.4583333333333333],[118,198,66,-0.4583333333333333],[118,198,67,-0.4583333333333333],[118,198,68,-0.4583333333333333],[118,198,69,-0.4583333333333333],[118,198,70,-0.4583333333333333],[118,198,71,-0.4583333333333333],[118,198,72,-0.4583333333333333],[118,198,73,-0.4583333333333333],[118,198,74,-0.4583333333333333],[118,198,75,-0.4583333333333333],[118,198,76,-0.4583333333333333],[118,198,77,-0.4583333333333333],[118,198,78,-0.4583333333333333],[118,198,79,-0.4583333333333333],[118,199,64,-0.4583333333333333],[118,199,65,-0.4583333333333333],[118,199,66,-0.4583333333333333],[118,199,67,-0.4583333333333333],[118,199,68,-0.4583333333333333],[118,199,69,-0.4583333333333333],[118,199,70,-0.4583333333333333],[118,199,71,-0.4583333333333333],[118,199,72,-0.4583333333333333],[118,199,73,-0.4583333333333333],[118,199,74,-0.4583333333333333],[118,199,75,-0.4583333333333333],[118,199,76,-0.4583333333333333],[118,199,77,-0.4583333333333333],[118,199,78,-0.4583333333333333],[118,199,79,-0.4583333333333333],[118,200,64,-0.4583333333333333],[118,200,65,-0.4583333333333333],[118,200,66,-0.4583333333333333],[118,200,67,-0.4583333333333333],[118,200,68,-0.4583333333333333],[118,200,69,-0.4583333333333333],[118,200,70,-0.4583333333333333],[118,200,71,-0.4583333333333333],[118,200,72,-0.4583333333333333],[118,200,73,-0.4583333333333333],[118,200,74,-0.4583333333333333],[118,200,75,-0.4583333333333333],[118,200,76,-0.4583333333333333],[118,200,77,-0.4583333333333333],[118,200,78,-0.4583333333333333],[118,200,79,-0.4583333333333333],[118,201,64,-0.4583333333333333],[118,201,65,-0.4583333333333333],[118,201,66,-0.4583333333333333],[118,201,67,-0.4583333333333333],[118,201,68,-0.4583333333333333],[118,201,69,-0.4583333333333333],[118,201,70,-0.4583333333333333],[118,201,71,-0.4583333333333333],[118,201,72,-0.4583333333333333],[118,201,73,-0.4583333333333333],[118,201,74,-0.4583333333333333],[118,201,75,-0.4583333333333333],[118,201,76,-0.4583333333333333],[118,201,77,-0.4583333333333333],[118,201,78,-0.4583333333333333],[118,201,79,-0.4583333333333333],[118,202,64,-0.4583333333333333],[118,202,65,-0.4583333333333333],[118,202,66,-0.4583333333333333],[118,202,67,-0.4583333333333333],[118,202,68,-0.4583333333333333],[118,202,69,-0.4583333333333333],[118,202,70,-0.4583333333333333],[118,202,71,-0.4583333333333333],[118,202,72,-0.4583333333333333],[118,202,73,-0.4583333333333333],[118,202,74,-0.4583333333333333],[118,202,75,-0.4583333333333333],[118,202,76,-0.4583333333333333],[118,202,77,-0.4583333333333333],[118,202,78,-0.4583333333333333],[118,202,79,-0.4583333333333333],[118,203,64,-0.4583333333333333],[118,203,65,-0.4583333333333333],[118,203,66,-0.4583333333333333],[118,203,67,-0.4583333333333333],[118,203,68,-0.4583333333333333],[118,203,69,-0.4583333333333333],[118,203,70,-0.4583333333333333],[118,203,71,-0.4583333333333333],[118,203,72,-0.4583333333333333],[118,203,73,-0.4583333333333333],[118,203,74,-0.4583333333333333],[118,203,75,-0.4583333333333333],[118,203,76,-0.4583333333333333],[118,203,77,-0.4583333333333333],[118,203,78,-0.4583333333333333],[118,203,79,-0.4583333333333333],[118,204,64,-0.4583333333333333],[118,204,65,-0.4583333333333333],[118,204,66,-0.4583333333333333],[118,204,67,-0.4583333333333333],[118,204,68,-0.4583333333333333],[118,204,69,-0.4583333333333333],[118,204,70,-0.4583333333333333],[118,204,71,-0.4583333333333333],[118,204,72,-0.4583333333333333],[118,204,73,-0.4583333333333333],[118,204,74,-0.4583333333333333],[118,204,75,-0.4583333333333333],[118,204,76,-0.4583333333333333],[118,204,77,-0.4583333333333333],[118,204,78,-0.4583333333333333],[118,204,79,-0.4583333333333333],[118,205,64,-0.4583333333333333],[118,205,65,-0.4583333333333333],[118,205,66,-0.4583333333333333],[118,205,67,-0.4583333333333333],[118,205,68,-0.4583333333333333],[118,205,69,-0.4583333333333333],[118,205,70,-0.4583333333333333],[118,205,71,-0.4583333333333333],[118,205,72,-0.4583333333333333],[118,205,73,-0.4583333333333333],[118,205,74,-0.4583333333333333],[118,205,75,-0.4583333333333333],[118,205,76,-0.4583333333333333],[118,205,77,-0.4583333333333333],[118,205,78,-0.4583333333333333],[118,205,79,-0.4583333333333333],[118,206,64,-0.4583333333333333],[118,206,65,-0.4583333333333333],[118,206,66,-0.4583333333333333],[118,206,67,-0.4583333333333333],[118,206,68,-0.4583333333333333],[118,206,69,-0.4583333333333333],[118,206,70,-0.4583333333333333],[118,206,71,-0.4583333333333333],[118,206,72,-0.4583333333333333],[118,206,73,-0.4583333333333333],[118,206,74,-0.4583333333333333],[118,206,75,-0.4583333333333333],[118,206,76,-0.4583333333333333],[118,206,77,-0.4583333333333333],[118,206,78,-0.4583333333333333],[118,206,79,-0.4583333333333333],[118,207,64,-0.4583333333333333],[118,207,65,-0.4583333333333333],[118,207,66,-0.4583333333333333],[118,207,67,-0.4583333333333333],[118,207,68,-0.4583333333333333],[118,207,69,-0.4583333333333333],[118,207,70,-0.4583333333333333],[118,207,71,-0.4583333333333333],[118,207,72,-0.4583333333333333],[118,207,73,-0.4583333333333333],[118,207,74,-0.4583333333333333],[118,207,75,-0.4583333333333333],[118,207,76,-0.4583333333333333],[118,207,77,-0.4583333333333333],[118,207,78,-0.4583333333333333],[118,207,79,-0.4583333333333333],[118,208,64,-0.4583333333333333],[118,208,65,-0.4583333333333333],[118,208,66,-0.4583333333333333],[118,208,67,-0.4583333333333333],[118,208,68,-0.4583333333333333],[118,208,69,-0.4583333333333333],[118,208,70,-0.4583333333333333],[118,208,71,-0.4583333333333333],[118,208,72,-0.4583333333333333],[118,208,73,-0.4583333333333333],[118,208,74,-0.4583333333333333],[118,208,75,-0.4583333333333333],[118,208,76,-0.4583333333333333],[118,208,77,-0.4583333333333333],[118,208,78,-0.4583333333333333],[118,208,79,-0.4583333333333333],[118,209,64,-0.4583333333333333],[118,209,65,-0.4583333333333333],[118,209,66,-0.4583333333333333],[118,209,67,-0.4583333333333333],[118,209,68,-0.4583333333333333],[118,209,69,-0.4583333333333333],[118,209,70,-0.4583333333333333],[118,209,71,-0.4583333333333333],[118,209,72,-0.4583333333333333],[118,209,73,-0.4583333333333333],[118,209,74,-0.4583333333333333],[118,209,75,-0.4583333333333333],[118,209,76,-0.4583333333333333],[118,209,77,-0.4583333333333333],[118,209,78,-0.4583333333333333],[118,209,79,-0.4583333333333333],[118,210,64,-0.4583333333333333],[118,210,65,-0.4583333333333333],[118,210,66,-0.4583333333333333],[118,210,67,-0.4583333333333333],[118,210,68,-0.4583333333333333],[118,210,69,-0.4583333333333333],[118,210,70,-0.4583333333333333],[118,210,71,-0.4583333333333333],[118,210,72,-0.4583333333333333],[118,210,73,-0.4583333333333333],[118,210,74,-0.4583333333333333],[118,210,75,-0.4583333333333333],[118,210,76,-0.4583333333333333],[118,210,77,-0.4583333333333333],[118,210,78,-0.4583333333333333],[118,210,79,-0.4583333333333333],[118,211,64,-0.4583333333333333],[118,211,65,-0.4583333333333333],[118,211,66,-0.4583333333333333],[118,211,67,-0.4583333333333333],[118,211,68,-0.4583333333333333],[118,211,69,-0.4583333333333333],[118,211,70,-0.4583333333333333],[118,211,71,-0.4583333333333333],[118,211,72,-0.4583333333333333],[118,211,73,-0.4583333333333333],[118,211,74,-0.4583333333333333],[118,211,75,-0.4583333333333333],[118,211,76,-0.4583333333333333],[118,211,77,-0.4583333333333333],[118,211,78,-0.4583333333333333],[118,211,79,-0.4583333333333333],[118,212,64,-0.4583333333333333],[118,212,65,-0.4583333333333333],[118,212,66,-0.4583333333333333],[118,212,67,-0.4583333333333333],[118,212,68,-0.4583333333333333],[118,212,69,-0.4583333333333333],[118,212,70,-0.4583333333333333],[118,212,71,-0.4583333333333333],[118,212,72,-0.4583333333333333],[118,212,73,-0.4583333333333333],[118,212,74,-0.4583333333333333],[118,212,75,-0.4583333333333333],[118,212,76,-0.4583333333333333],[118,212,77,-0.4583333333333333],[118,212,78,-0.4583333333333333],[118,212,79,-0.4583333333333333],[118,213,64,-0.4583333333333333],[118,213,65,-0.4583333333333333],[118,213,66,-0.4583333333333333],[118,213,67,-0.4583333333333333],[118,213,68,-0.4583333333333333],[118,213,69,-0.4583333333333333],[118,213,70,-0.4583333333333333],[118,213,71,-0.4583333333333333],[118,213,72,-0.4583333333333333],[118,213,73,-0.4583333333333333],[118,213,74,-0.4583333333333333],[118,213,75,-0.4583333333333333],[118,213,76,-0.4583333333333333],[118,213,77,-0.4583333333333333],[118,213,78,-0.4583333333333333],[118,213,79,-0.4583333333333333],[118,214,64,-0.4583333333333333],[118,214,65,-0.4583333333333333],[118,214,66,-0.4583333333333333],[118,214,67,-0.4583333333333333],[118,214,68,-0.4583333333333333],[118,214,69,-0.4583333333333333],[118,214,70,-0.4583333333333333],[118,214,71,-0.4583333333333333],[118,214,72,-0.4583333333333333],[118,214,73,-0.4583333333333333],[118,214,74,-0.4583333333333333],[118,214,75,-0.4583333333333333],[118,214,76,-0.4583333333333333],[118,214,77,-0.4583333333333333],[118,214,78,-0.4583333333333333],[118,214,79,-0.4583333333333333],[118,215,64,-0.4583333333333333],[118,215,65,-0.4583333333333333],[118,215,66,-0.4583333333333333],[118,215,67,-0.4583333333333333],[118,215,68,-0.4583333333333333],[118,215,69,-0.4583333333333333],[118,215,70,-0.4583333333333333],[118,215,71,-0.4583333333333333],[118,215,72,-0.4583333333333333],[118,215,73,-0.4583333333333333],[118,215,74,-0.4583333333333333],[118,215,75,-0.4583333333333333],[118,215,76,-0.4583333333333333],[118,215,77,-0.4583333333333333],[118,215,78,-0.4583333333333333],[118,215,79,-0.4583333333333333],[118,216,64,-0.4583333333333333],[118,216,65,-0.4583333333333333],[118,216,66,-0.4583333333333333],[118,216,67,-0.4583333333333333],[118,216,68,-0.4583333333333333],[118,216,69,-0.4583333333333333],[118,216,70,-0.4583333333333333],[118,216,71,-0.4583333333333333],[118,216,72,-0.4583333333333333],[118,216,73,-0.4583333333333333],[118,216,74,-0.4583333333333333],[118,216,75,-0.4583333333333333],[118,216,76,-0.4583333333333333],[118,216,77,-0.4583333333333333],[118,216,78,-0.4583333333333333],[118,216,79,-0.4583333333333333],[118,217,64,-0.4583333333333333],[118,217,65,-0.4583333333333333],[118,217,66,-0.4583333333333333],[118,217,67,-0.4583333333333333],[118,217,68,-0.4583333333333333],[118,217,69,-0.4583333333333333],[118,217,70,-0.4583333333333333],[118,217,71,-0.4583333333333333],[118,217,72,-0.4583333333333333],[118,217,73,-0.4583333333333333],[118,217,74,-0.4583333333333333],[118,217,75,-0.4583333333333333],[118,217,76,-0.4583333333333333],[118,217,77,-0.4583333333333333],[118,217,78,-0.4583333333333333],[118,217,79,-0.4583333333333333],[118,218,64,-0.4583333333333333],[118,218,65,-0.4583333333333333],[118,218,66,-0.4583333333333333],[118,218,67,-0.4583333333333333],[118,218,68,-0.4583333333333333],[118,218,69,-0.4583333333333333],[118,218,70,-0.4583333333333333],[118,218,71,-0.4583333333333333],[118,218,72,-0.4583333333333333],[118,218,73,-0.4583333333333333],[118,218,74,-0.4583333333333333],[118,218,75,-0.4583333333333333],[118,218,76,-0.4583333333333333],[118,218,77,-0.4583333333333333],[118,218,78,-0.4583333333333333],[118,218,79,-0.4583333333333333],[118,219,64,-0.4583333333333333],[118,219,65,-0.4583333333333333],[118,219,66,-0.4583333333333333],[118,219,67,-0.4583333333333333],[118,219,68,-0.4583333333333333],[118,219,69,-0.4583333333333333],[118,219,70,-0.4583333333333333],[118,219,71,-0.4583333333333333],[118,219,72,-0.4583333333333333],[118,219,73,-0.4583333333333333],[118,219,74,-0.4583333333333333],[118,219,75,-0.4583333333333333],[118,219,76,-0.4583333333333333],[118,219,77,-0.4583333333333333],[118,219,78,-0.4583333333333333],[118,219,79,-0.4583333333333333],[118,220,64,-0.4583333333333333],[118,220,65,-0.4583333333333333],[118,220,66,-0.4583333333333333],[118,220,67,-0.4583333333333333],[118,220,68,-0.4583333333333333],[118,220,69,-0.4583333333333333],[118,220,70,-0.4583333333333333],[118,220,71,-0.4583333333333333],[118,220,72,-0.4583333333333333],[118,220,73,-0.4583333333333333],[118,220,74,-0.4583333333333333],[118,220,75,-0.4583333333333333],[118,220,76,-0.4583333333333333],[118,220,77,-0.4583333333333333],[118,220,78,-0.4583333333333333],[118,220,79,-0.4583333333333333],[118,221,64,-0.4583333333333333],[118,221,65,-0.4583333333333333],[118,221,66,-0.4583333333333333],[118,221,67,-0.4583333333333333],[118,221,68,-0.4583333333333333],[118,221,69,-0.4583333333333333],[118,221,70,-0.4583333333333333],[118,221,71,-0.4583333333333333],[118,221,72,-0.4583333333333333],[118,221,73,-0.4583333333333333],[118,221,74,-0.4583333333333333],[118,221,75,-0.4583333333333333],[118,221,76,-0.4583333333333333],[118,221,77,-0.4583333333333333],[118,221,78,-0.4583333333333333],[118,221,79,-0.4583333333333333],[118,222,64,-0.4583333333333333],[118,222,65,-0.4583333333333333],[118,222,66,-0.4583333333333333],[118,222,67,-0.4583333333333333],[118,222,68,-0.4583333333333333],[118,222,69,-0.4583333333333333],[118,222,70,-0.4583333333333333],[118,222,71,-0.4583333333333333],[118,222,72,-0.4583333333333333],[118,222,73,-0.4583333333333333],[118,222,74,-0.4583333333333333],[118,222,75,-0.4583333333333333],[118,222,76,-0.4583333333333333],[118,222,77,-0.4583333333333333],[118,222,78,-0.4583333333333333],[118,222,79,-0.4583333333333333],[118,223,64,-0.4583333333333333],[118,223,65,-0.4583333333333333],[118,223,66,-0.4583333333333333],[118,223,67,-0.4583333333333333],[118,223,68,-0.4583333333333333],[118,223,69,-0.4583333333333333],[118,223,70,-0.4583333333333333],[118,223,71,-0.4583333333333333],[118,223,72,-0.4583333333333333],[118,223,73,-0.4583333333333333],[118,223,74,-0.4583333333333333],[118,223,75,-0.4583333333333333],[118,223,76,-0.4583333333333333],[118,223,77,-0.4583333333333333],[118,223,78,-0.4583333333333333],[118,223,79,-0.4583333333333333],[118,224,64,-0.4583333333333333],[118,224,65,-0.4583333333333333],[118,224,66,-0.4583333333333333],[118,224,67,-0.4583333333333333],[118,224,68,-0.4583333333333333],[118,224,69,-0.4583333333333333],[118,224,70,-0.4583333333333333],[118,224,71,-0.4583333333333333],[118,224,72,-0.4583333333333333],[118,224,73,-0.4583333333333333],[118,224,74,-0.4583333333333333],[118,224,75,-0.4583333333333333],[118,224,76,-0.4583333333333333],[118,224,77,-0.4583333333333333],[118,224,78,-0.4583333333333333],[118,224,79,-0.4583333333333333],[118,225,64,-0.4583333333333333],[118,225,65,-0.4583333333333333],[118,225,66,-0.4583333333333333],[118,225,67,-0.4583333333333333],[118,225,68,-0.4583333333333333],[118,225,69,-0.4583333333333333],[118,225,70,-0.4583333333333333],[118,225,71,-0.4583333333333333],[118,225,72,-0.4583333333333333],[118,225,73,-0.4583333333333333],[118,225,74,-0.4583333333333333],[118,225,75,-0.4583333333333333],[118,225,76,-0.4583333333333333],[118,225,77,-0.4583333333333333],[118,225,78,-0.4583333333333333],[118,225,79,-0.4583333333333333],[118,226,64,-0.4583333333333333],[118,226,65,-0.4583333333333333],[118,226,66,-0.4583333333333333],[118,226,67,-0.4583333333333333],[118,226,68,-0.4583333333333333],[118,226,69,-0.4583333333333333],[118,226,70,-0.4583333333333333],[118,226,71,-0.4583333333333333],[118,226,72,-0.4583333333333333],[118,226,73,-0.4583333333333333],[118,226,74,-0.4583333333333333],[118,226,75,-0.4583333333333333],[118,226,76,-0.4583333333333333],[118,226,77,-0.4583333333333333],[118,226,78,-0.4583333333333333],[118,226,79,-0.4583333333333333],[118,227,64,-0.4583333333333333],[118,227,65,-0.4583333333333333],[118,227,66,-0.4583333333333333],[118,227,67,-0.4583333333333333],[118,227,68,-0.4583333333333333],[118,227,69,-0.4583333333333333],[118,227,70,-0.4583333333333333],[118,227,71,-0.4583333333333333],[118,227,72,-0.4583333333333333],[118,227,73,-0.4583333333333333],[118,227,74,-0.4583333333333333],[118,227,75,-0.4583333333333333],[118,227,76,-0.4583333333333333],[118,227,77,-0.4583333333333333],[118,227,78,-0.4583333333333333],[118,227,79,-0.4583333333333333],[118,228,64,-0.4583333333333333],[118,228,65,-0.4583333333333333],[118,228,66,-0.4583333333333333],[118,228,67,-0.4583333333333333],[118,228,68,-0.4583333333333333],[118,228,69,-0.4583333333333333],[118,228,70,-0.4583333333333333],[118,228,71,-0.4583333333333333],[118,228,72,-0.4583333333333333],[118,228,73,-0.4583333333333333],[118,228,74,-0.4583333333333333],[118,228,75,-0.4583333333333333],[118,228,76,-0.4583333333333333],[118,228,77,-0.4583333333333333],[118,228,78,-0.4583333333333333],[118,228,79,-0.4583333333333333],[118,229,64,-0.4583333333333333],[118,229,65,-0.4583333333333333],[118,229,66,-0.4583333333333333],[118,229,67,-0.4583333333333333],[118,229,68,-0.4583333333333333],[118,229,69,-0.4583333333333333],[118,229,70,-0.4583333333333333],[118,229,71,-0.4583333333333333],[118,229,72,-0.4583333333333333],[118,229,73,-0.4583333333333333],[118,229,74,-0.4583333333333333],[118,229,75,-0.4583333333333333],[118,229,76,-0.4583333333333333],[118,229,77,-0.4583333333333333],[118,229,78,-0.4583333333333333],[118,229,79,-0.4583333333333333],[118,230,64,-0.4583333333333333],[118,230,65,-0.4583333333333333],[118,230,66,-0.4583333333333333],[118,230,67,-0.4583333333333333],[118,230,68,-0.4583333333333333],[118,230,69,-0.4583333333333333],[118,230,70,-0.4583333333333333],[118,230,71,-0.4583333333333333],[118,230,72,-0.4583333333333333],[118,230,73,-0.4583333333333333],[118,230,74,-0.4583333333333333],[118,230,75,-0.4583333333333333],[118,230,76,-0.4583333333333333],[118,230,77,-0.4583333333333333],[118,230,78,-0.4583333333333333],[118,230,79,-0.4583333333333333],[118,231,64,-0.4583333333333333],[118,231,65,-0.4583333333333333],[118,231,66,-0.4583333333333333],[118,231,67,-0.4583333333333333],[118,231,68,-0.4583333333333333],[118,231,69,-0.4583333333333333],[118,231,70,-0.4583333333333333],[118,231,71,-0.4583333333333333],[118,231,72,-0.4583333333333333],[118,231,73,-0.4583333333333333],[118,231,74,-0.4583333333333333],[118,231,75,-0.4583333333333333],[118,231,76,-0.4583333333333333],[118,231,77,-0.4583333333333333],[118,231,78,-0.4583333333333333],[118,231,79,-0.4583333333333333],[118,232,64,-0.4583333333333333],[118,232,65,-0.4583333333333333],[118,232,66,-0.4583333333333333],[118,232,67,-0.4583333333333333],[118,232,68,-0.4583333333333333],[118,232,69,-0.4583333333333333],[118,232,70,-0.4583333333333333],[118,232,71,-0.4583333333333333],[118,232,72,-0.4583333333333333],[118,232,73,-0.4583333333333333],[118,232,74,-0.4583333333333333],[118,232,75,-0.4583333333333333],[118,232,76,-0.4583333333333333],[118,232,77,-0.4583333333333333],[118,232,78,-0.4583333333333333],[118,232,79,-0.4583333333333333],[118,233,64,-0.4583333333333333],[118,233,65,-0.4583333333333333],[118,233,66,-0.4583333333333333],[118,233,67,-0.4583333333333333],[118,233,68,-0.4583333333333333],[118,233,69,-0.4583333333333333],[118,233,70,-0.4583333333333333],[118,233,71,-0.4583333333333333],[118,233,72,-0.4583333333333333],[118,233,73,-0.4583333333333333],[118,233,74,-0.4583333333333333],[118,233,75,-0.4583333333333333],[118,233,76,-0.4583333333333333],[118,233,77,-0.4583333333333333],[118,233,78,-0.4583333333333333],[118,233,79,-0.4583333333333333],[118,234,64,-0.4583333333333333],[118,234,65,-0.4583333333333333],[118,234,66,-0.4583333333333333],[118,234,67,-0.4583333333333333],[118,234,68,-0.4583333333333333],[118,234,69,-0.4583333333333333],[118,234,70,-0.4583333333333333],[118,234,71,-0.4583333333333333],[118,234,72,-0.4583333333333333],[118,234,73,-0.4583333333333333],[118,234,74,-0.4583333333333333],[118,234,75,-0.4583333333333333],[118,234,76,-0.4583333333333333],[118,234,77,-0.4583333333333333],[118,234,78,-0.4583333333333333],[118,234,79,-0.4583333333333333],[118,235,64,-0.4583333333333333],[118,235,65,-0.4583333333333333],[118,235,66,-0.4583333333333333],[118,235,67,-0.4583333333333333],[118,235,68,-0.4583333333333333],[118,235,69,-0.4583333333333333],[118,235,70,-0.4583333333333333],[118,235,71,-0.4583333333333333],[118,235,72,-0.4583333333333333],[118,235,73,-0.4583333333333333],[118,235,74,-0.4583333333333333],[118,235,75,-0.4583333333333333],[118,235,76,-0.4583333333333333],[118,235,77,-0.4583333333333333],[118,235,78,-0.4583333333333333],[118,235,79,-0.4583333333333333],[118,236,64,-0.4583333333333333],[118,236,65,-0.4583333333333333],[118,236,66,-0.4583333333333333],[118,236,67,-0.4583333333333333],[118,236,68,-0.4583333333333333],[118,236,69,-0.4583333333333333],[118,236,70,-0.4583333333333333],[118,236,71,-0.4583333333333333],[118,236,72,-0.4583333333333333],[118,236,73,-0.4583333333333333],[118,236,74,-0.4583333333333333],[118,236,75,-0.4583333333333333],[118,236,76,-0.4583333333333333],[118,236,77,-0.4583333333333333],[118,236,78,-0.4583333333333333],[118,236,79,-0.4583333333333333],[118,237,64,-0.4583333333333333],[118,237,65,-0.4583333333333333],[118,237,66,-0.4583333333333333],[118,237,67,-0.4583333333333333],[118,237,68,-0.4583333333333333],[118,237,69,-0.4583333333333333],[118,237,70,-0.4583333333333333],[118,237,71,-0.4583333333333333],[118,237,72,-0.4583333333333333],[118,237,73,-0.4583333333333333],[118,237,74,-0.4583333333333333],[118,237,75,-0.4583333333333333],[118,237,76,-0.4583333333333333],[118,237,77,-0.4583333333333333],[118,237,78,-0.4583333333333333],[118,237,79,-0.4583333333333333],[118,238,64,-0.4583333333333333],[118,238,65,-0.4583333333333333],[118,238,66,-0.4583333333333333],[118,238,67,-0.4583333333333333],[118,238,68,-0.4583333333333333],[118,238,69,-0.4583333333333333],[118,238,70,-0.4583333333333333],[118,238,71,-0.4583333333333333],[118,238,72,-0.4583333333333333],[118,238,73,-0.4583333333333333],[118,238,74,-0.4583333333333333],[118,238,75,-0.4583333333333333],[118,238,76,-0.4583333333333333],[118,238,77,-0.4583333333333333],[118,238,78,-0.4583333333333333],[118,238,79,-0.4583333333333333],[118,239,64,-0.4583333333333333],[118,239,65,-0.4583333333333333],[118,239,66,-0.4583333333333333],[118,239,67,-0.4583333333333333],[118,239,68,-0.4583333333333333],[118,239,69,-0.4583333333333333],[118,239,70,-0.4583333333333333],[118,239,71,-0.4583333333333333],[118,239,72,-0.4583333333333333],[118,239,73,-0.4583333333333333],[118,239,74,-0.4583333333333333],[118,239,75,-0.4583333333333333],[118,239,76,-0.4583333333333333],[118,239,77,-0.4583333333333333],[118,239,78,-0.4583333333333333],[118,239,79,-0.4583333333333333],[118,240,64,-0.4583333333333333],[118,240,65,-0.4583333333333333],[118,240,66,-0.4583333333333333],[118,240,67,-0.4583333333333333],[118,240,68,-0.4583333333333333],[118,240,69,-0.4583333333333333],[118,240,70,-0.4583333333333333],[118,240,71,-0.4583333333333333],[118,240,72,-0.4583333333333333],[118,240,73,-0.4583333333333333],[118,240,74,-0.4583333333333333],[118,240,75,-0.4583333333333333],[118,240,76,-0.4583333333333333],[118,240,77,-0.4583333333333333],[118,240,78,-0.4583333333333333],[118,240,79,-0.4583333333333333],[118,241,64,-0.4583333333333333],[118,241,65,-0.4583333333333333],[118,241,66,-0.4583333333333333],[118,241,67,-0.4583333333333333],[118,241,68,-0.4583333333333333],[118,241,69,-0.4583333333333333],[118,241,70,-0.4583333333333333],[118,241,71,-0.4583333333333333],[118,241,72,-0.4583333333333333],[118,241,73,-0.4583333333333333],[118,241,74,-0.4583333333333333],[118,241,75,-0.4583333333333333],[118,241,76,-0.4583333333333333],[118,241,77,-0.4583333333333333],[118,241,78,-0.4583333333333333],[118,241,79,-0.4583333333333333],[118,242,64,-0.4583333333333333],[118,242,65,-0.4583333333333333],[118,242,66,-0.4583333333333333],[118,242,67,-0.4583333333333333],[118,242,68,-0.4583333333333333],[118,242,69,-0.4583333333333333],[118,242,70,-0.4583333333333333],[118,242,71,-0.4583333333333333],[118,242,72,-0.4583333333333333],[118,242,73,-0.4583333333333333],[118,242,74,-0.4583333333333333],[118,242,75,-0.4583333333333333],[118,242,76,-0.4583333333333333],[118,242,77,-0.4583333333333333],[118,242,78,-0.4583333333333333],[118,242,79,-0.4583333333333333],[118,243,64,-0.4583333333333333],[118,243,65,-0.4583333333333333],[118,243,66,-0.4583333333333333],[118,243,67,-0.4583333333333333],[118,243,68,-0.4583333333333333],[118,243,69,-0.4583333333333333],[118,243,70,-0.4583333333333333],[118,243,71,-0.4583333333333333],[118,243,72,-0.4583333333333333],[118,243,73,-0.4583333333333333],[118,243,74,-0.4583333333333333],[118,243,75,-0.4583333333333333],[118,243,76,-0.4583333333333333],[118,243,77,-0.4583333333333333],[118,243,78,-0.4583333333333333],[118,243,79,-0.4583333333333333],[118,244,64,-0.4583333333333333],[118,244,65,-0.4583333333333333],[118,244,66,-0.4583333333333333],[118,244,67,-0.4583333333333333],[118,244,68,-0.4583333333333333],[118,244,69,-0.4583333333333333],[118,244,70,-0.4583333333333333],[118,244,71,-0.4583333333333333],[118,244,72,-0.4583333333333333],[118,244,73,-0.4583333333333333],[118,244,74,-0.4583333333333333],[118,244,75,-0.4583333333333333],[118,244,76,-0.4583333333333333],[118,244,77,-0.4583333333333333],[118,244,78,-0.4583333333333333],[118,244,79,-0.4583333333333333],[118,245,64,-0.4583333333333333],[118,245,65,-0.4583333333333333],[118,245,66,-0.4583333333333333],[118,245,67,-0.4583333333333333],[118,245,68,-0.4583333333333333],[118,245,69,-0.4583333333333333],[118,245,70,-0.4583333333333333],[118,245,71,-0.4583333333333333],[118,245,72,-0.4583333333333333],[118,245,73,-0.4583333333333333],[118,245,74,-0.4583333333333333],[118,245,75,-0.4583333333333333],[118,245,76,-0.4583333333333333],[118,245,77,-0.4583333333333333],[118,245,78,-0.4583333333333333],[118,245,79,-0.4583333333333333],[118,246,64,-0.4583333333333333],[118,246,65,-0.4583333333333333],[118,246,66,-0.4583333333333333],[118,246,67,-0.4583333333333333],[118,246,68,-0.4583333333333333],[118,246,69,-0.4583333333333333],[118,246,70,-0.4583333333333333],[118,246,71,-0.4583333333333333],[118,246,72,-0.4583333333333333],[118,246,73,-0.4583333333333333],[118,246,74,-0.4583333333333333],[118,246,75,-0.4583333333333333],[118,246,76,-0.4583333333333333],[118,246,77,-0.4583333333333333],[118,246,78,-0.4583333333333333],[118,246,79,-0.4583333333333333],[118,247,64,-0.4583333333333333],[118,247,65,-0.4583333333333333],[118,247,66,-0.4583333333333333],[118,247,67,-0.4583333333333333],[118,247,68,-0.4583333333333333],[118,247,69,-0.4583333333333333],[118,247,70,-0.4583333333333333],[118,247,71,-0.4583333333333333],[118,247,72,-0.4583333333333333],[118,247,73,-0.4583333333333333],[118,247,74,-0.4583333333333333],[118,247,75,-0.4583333333333333],[118,247,76,-0.4583333333333333],[118,247,77,-0.4583333333333333],[118,247,78,-0.4583333333333333],[118,247,79,-0.4583333333333333],[118,248,64,-0.4583333333333333],[118,248,65,-0.4583333333333333],[118,248,66,-0.4583333333333333],[118,248,67,-0.4583333333333333],[118,248,68,-0.4583333333333333],[118,248,69,-0.4583333333333333],[118,248,70,-0.4583333333333333],[118,248,71,-0.4583333333333333],[118,248,72,-0.4583333333333333],[118,248,73,-0.4583333333333333],[118,248,74,-0.4583333333333333],[118,248,75,-0.4583333333333333],[118,248,76,-0.4583333333333333],[118,248,77,-0.4583333333333333],[118,248,78,-0.4583333333333333],[118,248,79,-0.4583333333333333],[118,249,64,-0.4583333333333333],[118,249,65,-0.4583333333333333],[118,249,66,-0.4583333333333333],[118,249,67,-0.4583333333333333],[118,249,68,-0.4583333333333333],[118,249,69,-0.4583333333333333],[118,249,70,-0.4583333333333333],[118,249,71,-0.4583333333333333],[118,249,72,-0.4583333333333333],[118,249,73,-0.4583333333333333],[118,249,74,-0.4583333333333333],[118,249,75,-0.4583333333333333],[118,249,76,-0.4583333333333333],[118,249,77,-0.4583333333333333],[118,249,78,-0.4583333333333333],[118,249,79,-0.4583333333333333],[118,250,64,-0.4583333333333333],[118,250,65,-0.4583333333333333],[118,250,66,-0.4583333333333333],[118,250,67,-0.4583333333333333],[118,250,68,-0.4583333333333333],[118,250,69,-0.4583333333333333],[118,250,70,-0.4583333333333333],[118,250,71,-0.4583333333333333],[118,250,72,-0.4583333333333333],[118,250,73,-0.4583333333333333],[118,250,74,-0.4583333333333333],[118,250,75,-0.4583333333333333],[118,250,76,-0.4583333333333333],[118,250,77,-0.4583333333333333],[118,250,78,-0.4583333333333333],[118,250,79,-0.4583333333333333],[118,251,64,-0.4583333333333333],[118,251,65,-0.4583333333333333],[118,251,66,-0.4583333333333333],[118,251,67,-0.4583333333333333],[118,251,68,-0.4583333333333333],[118,251,69,-0.4583333333333333],[118,251,70,-0.4583333333333333],[118,251,71,-0.4583333333333333],[118,251,72,-0.4583333333333333],[118,251,73,-0.4583333333333333],[118,251,74,-0.4583333333333333],[118,251,75,-0.4583333333333333],[118,251,76,-0.4583333333333333],[118,251,77,-0.4583333333333333],[118,251,78,-0.4583333333333333],[118,251,79,-0.4583333333333333],[118,252,64,-0.4583333333333333],[118,252,65,-0.4583333333333333],[118,252,66,-0.4583333333333333],[118,252,67,-0.4583333333333333],[118,252,68,-0.4583333333333333],[118,252,69,-0.4583333333333333],[118,252,70,-0.4583333333333333],[118,252,71,-0.4583333333333333],[118,252,72,-0.4583333333333333],[118,252,73,-0.4583333333333333],[118,252,74,-0.4583333333333333],[118,252,75,-0.4583333333333333],[118,252,76,-0.4583333333333333],[118,252,77,-0.4583333333333333],[118,252,78,-0.4583333333333333],[118,252,79,-0.4583333333333333],[118,253,64,-0.4583333333333333],[118,253,65,-0.4583333333333333],[118,253,66,-0.4583333333333333],[118,253,67,-0.4583333333333333],[118,253,68,-0.4583333333333333],[118,253,69,-0.4583333333333333],[118,253,70,-0.4583333333333333],[118,253,71,-0.4583333333333333],[118,253,72,-0.4583333333333333],[118,253,73,-0.4583333333333333],[118,253,74,-0.4583333333333333],[118,253,75,-0.4583333333333333],[118,253,76,-0.4583333333333333],[118,253,77,-0.4583333333333333],[118,253,78,-0.4583333333333333],[118,253,79,-0.4583333333333333],[118,254,64,-0.37370392952542875],[118,254,65,-0.3738373667889176],[118,254,66,-0.3733793507190857],[118,254,67,-0.3724804475006178],[118,254,68,-0.37167673822676706],[118,254,69,-0.37111268097628164],[118,254,70,-0.37111596774134337],[118,254,71,-0.3712277309135469],[118,254,72,-0.3718087332760937],[118,254,73,-0.37275392218967346],[118,254,74,-0.37396616484931827],[118,254,75,-0.3750700389917478],[118,254,76,-0.3758696755062645],[118,254,77,-0.37610351501541855],[118,254,78,-0.37601431455394013],[118,254,79,-0.37659196750655366],[118,255,64,-0.20735245668592292],[118,255,65,-0.2074477767169064],[118,255,66,-0.20722448639817193],[118,255,67,-0.20665462802411325],[118,255,68,-0.20624811706677443],[118,255,69,-0.20594928748550548],[118,255,70,-0.20589278726450436],[118,255,71,-0.20599625085838247],[118,255,72,-0.2063171752134906],[118,255,73,-0.20688862093325325],[118,255,74,-0.20756162541487386],[118,255,75,-0.20816922812164407],[118,255,76,-0.20860657423790524],[118,255,77,-0.2087597647492791],[118,255,78,-0.20860850472834153],[118,255,79,-0.20877635335569056],[118,256,64,-0.02499479166666667],[118,256,65,-0.02499479166666667],[118,256,66,-0.02499479166666667],[118,256,67,-0.02499479166666667],[118,256,68,-0.02499479166666667],[118,256,69,-0.02499479166666667],[118,256,70,-0.02499479166666667],[118,256,71,-0.02499479166666667],[118,256,72,-0.02499479166666667],[118,256,73,-0.02499479166666667],[118,256,74,-0.02499479166666667],[118,256,75,-0.02499479166666667],[118,256,76,-0.02499479166666667],[118,256,77,-0.02499479166666667],[118,256,78,-0.02499479166666667],[118,256,79,-0.02499479166666667],[118,257,64,-0.02499479166666667],[118,257,65,-0.02499479166666667],[118,257,66,-0.02499479166666667],[118,257,67,-0.02499479166666667],[118,257,68,-0.02499479166666667],[118,257,69,-0.02499479166666667],[118,257,70,-0.02499479166666667],[118,257,71,-0.02499479166666667],[118,257,72,-0.02499479166666667],[118,257,73,-0.02499479166666667],[118,257,74,-0.02499479166666667],[118,257,75,-0.02499479166666667],[118,257,76,-0.02499479166666667],[118,257,77,-0.02499479166666667],[118,257,78,-0.02499479166666667],[118,257,79,-0.02499479166666667],[118,258,64,-0.02499479166666667],[118,258,65,-0.02499479166666667],[118,258,66,-0.02499479166666667],[118,258,67,-0.02499479166666667],[118,258,68,-0.02499479166666667],[118,258,69,-0.02499479166666667],[118,258,70,-0.02499479166666667],[118,258,71,-0.02499479166666667],[118,258,72,-0.02499479166666667],[118,258,73,-0.02499479166666667],[118,258,74,-0.02499479166666667],[118,258,75,-0.02499479166666667],[118,258,76,-0.02499479166666667],[118,258,77,-0.02499479166666667],[118,258,78,-0.02499479166666667],[118,258,79,-0.02499479166666667],[118,259,64,-0.02499479166666667],[118,259,65,-0.02499479166666667],[118,259,66,-0.02499479166666667],[118,259,67,-0.02499479166666667],[118,259,68,-0.02499479166666667],[118,259,69,-0.02499479166666667],[118,259,70,-0.02499479166666667],[118,259,71,-0.02499479166666667],[118,259,72,-0.02499479166666667],[118,259,73,-0.02499479166666667],[118,259,74,-0.02499479166666667],[118,259,75,-0.02499479166666667],[118,259,76,-0.02499479166666667],[118,259,77,-0.02499479166666667],[118,259,78,-0.02499479166666667],[118,259,79,-0.02499479166666667],[118,260,64,-0.02499479166666667],[118,260,65,-0.02499479166666667],[118,260,66,-0.02499479166666667],[118,260,67,-0.02499479166666667],[118,260,68,-0.02499479166666667],[118,260,69,-0.02499479166666667],[118,260,70,-0.02499479166666667],[118,260,71,-0.02499479166666667],[118,260,72,-0.02499479166666667],[118,260,73,-0.02499479166666667],[118,260,74,-0.02499479166666667],[118,260,75,-0.02499479166666667],[118,260,76,-0.02499479166666667],[118,260,77,-0.02499479166666667],[118,260,78,-0.02499479166666667],[118,260,79,-0.02499479166666667],[118,261,64,-0.02499479166666667],[118,261,65,-0.02499479166666667],[118,261,66,-0.02499479166666667],[118,261,67,-0.02499479166666667],[118,261,68,-0.02499479166666667],[118,261,69,-0.02499479166666667],[118,261,70,-0.02499479166666667],[118,261,71,-0.02499479166666667],[118,261,72,-0.02499479166666667],[118,261,73,-0.02499479166666667],[118,261,74,-0.02499479166666667],[118,261,75,-0.02499479166666667],[118,261,76,-0.02499479166666667],[118,261,77,-0.02499479166666667],[118,261,78,-0.02499479166666667],[118,261,79,-0.02499479166666667],[118,262,64,-0.02499479166666667],[118,262,65,-0.02499479166666667],[118,262,66,-0.02499479166666667],[118,262,67,-0.02499479166666667],[118,262,68,-0.02499479166666667],[118,262,69,-0.02499479166666667],[118,262,70,-0.02499479166666667],[118,262,71,-0.02499479166666667],[118,262,72,-0.02499479166666667],[118,262,73,-0.02499479166666667],[118,262,74,-0.02499479166666667],[118,262,75,-0.02499479166666667],[118,262,76,-0.02499479166666667],[118,262,77,-0.02499479166666667],[118,262,78,-0.02499479166666667],[118,262,79,-0.02499479166666667],[118,263,64,-0.02499479166666667],[118,263,65,-0.02499479166666667],[118,263,66,-0.02499479166666667],[118,263,67,-0.02499479166666667],[118,263,68,-0.02499479166666667],[118,263,69,-0.02499479166666667],[118,263,70,-0.02499479166666667],[118,263,71,-0.02499479166666667],[118,263,72,-0.02499479166666667],[118,263,73,-0.02499479166666667],[118,263,74,-0.02499479166666667],[118,263,75,-0.02499479166666667],[118,263,76,-0.02499479166666667],[118,263,77,-0.02499479166666667],[118,263,78,-0.02499479166666667],[118,263,79,-0.02499479166666667],[118,264,64,-0.02499479166666667],[118,264,65,-0.02499479166666667],[118,264,66,-0.02499479166666667],[118,264,67,-0.02499479166666667],[118,264,68,-0.02499479166666667],[118,264,69,-0.02499479166666667],[118,264,70,-0.02499479166666667],[118,264,71,-0.02499479166666667],[118,264,72,-0.02499479166666667],[118,264,73,-0.02499479166666667],[118,264,74,-0.02499479166666667],[118,264,75,-0.02499479166666667],[118,264,76,-0.02499479166666667],[118,264,77,-0.02499479166666667],[118,264,78,-0.02499479166666667],[118,264,79,-0.02499479166666667],[118,265,64,-0.02499479166666667],[118,265,65,-0.02499479166666667],[118,265,66,-0.02499479166666667],[118,265,67,-0.02499479166666667],[118,265,68,-0.02499479166666667],[118,265,69,-0.02499479166666667],[118,265,70,-0.02499479166666667],[118,265,71,-0.02499479166666667],[118,265,72,-0.02499479166666667],[118,265,73,-0.02499479166666667],[118,265,74,-0.02499479166666667],[118,265,75,-0.02499479166666667],[118,265,76,-0.02499479166666667],[118,265,77,-0.02499479166666667],[118,265,78,-0.02499479166666667],[118,265,79,-0.02499479166666667],[118,266,64,-0.02499479166666667],[118,266,65,-0.02499479166666667],[118,266,66,-0.02499479166666667],[118,266,67,-0.02499479166666667],[118,266,68,-0.02499479166666667],[118,266,69,-0.02499479166666667],[118,266,70,-0.02499479166666667],[118,266,71,-0.02499479166666667],[118,266,72,-0.02499479166666667],[118,266,73,-0.02499479166666667],[118,266,74,-0.02499479166666667],[118,266,75,-0.02499479166666667],[118,266,76,-0.02499479166666667],[118,266,77,-0.02499479166666667],[118,266,78,-0.02499479166666667],[118,266,79,-0.02499479166666667],[118,267,64,-0.02499479166666667],[118,267,65,-0.02499479166666667],[118,267,66,-0.02499479166666667],[118,267,67,-0.02499479166666667],[118,267,68,-0.02499479166666667],[118,267,69,-0.02499479166666667],[118,267,70,-0.02499479166666667],[118,267,71,-0.02499479166666667],[118,267,72,-0.02499479166666667],[118,267,73,-0.02499479166666667],[118,267,74,-0.02499479166666667],[118,267,75,-0.02499479166666667],[118,267,76,-0.02499479166666667],[118,267,77,-0.02499479166666667],[118,267,78,-0.02499479166666667],[118,267,79,-0.02499479166666667],[118,268,64,-0.02499479166666667],[118,268,65,-0.02499479166666667],[118,268,66,-0.02499479166666667],[118,268,67,-0.02499479166666667],[118,268,68,-0.02499479166666667],[118,268,69,-0.02499479166666667],[118,268,70,-0.02499479166666667],[118,268,71,-0.02499479166666667],[118,268,72,-0.02499479166666667],[118,268,73,-0.02499479166666667],[118,268,74,-0.02499479166666667],[118,268,75,-0.02499479166666667],[118,268,76,-0.02499479166666667],[118,268,77,-0.02499479166666667],[118,268,78,-0.02499479166666667],[118,268,79,-0.02499479166666667],[118,269,64,-0.02499479166666667],[118,269,65,-0.02499479166666667],[118,269,66,-0.02499479166666667],[118,269,67,-0.02499479166666667],[118,269,68,-0.02499479166666667],[118,269,69,-0.02499479166666667],[118,269,70,-0.02499479166666667],[118,269,71,-0.02499479166666667],[118,269,72,-0.02499479166666667],[118,269,73,-0.02499479166666667],[118,269,74,-0.02499479166666667],[118,269,75,-0.02499479166666667],[118,269,76,-0.02499479166666667],[118,269,77,-0.02499479166666667],[118,269,78,-0.02499479166666667],[118,269,79,-0.02499479166666667],[118,270,64,-0.02499479166666667],[118,270,65,-0.02499479166666667],[118,270,66,-0.02499479166666667],[118,270,67,-0.02499479166666667],[118,270,68,-0.02499479166666667],[118,270,69,-0.02499479166666667],[118,270,70,-0.02499479166666667],[118,270,71,-0.02499479166666667],[118,270,72,-0.02499479166666667],[118,270,73,-0.02499479166666667],[118,270,74,-0.02499479166666667],[118,270,75,-0.02499479166666667],[118,270,76,-0.02499479166666667],[118,270,77,-0.02499479166666667],[118,270,78,-0.02499479166666667],[118,270,79,-0.02499479166666667],[118,271,64,-0.02499479166666667],[118,271,65,-0.02499479166666667],[118,271,66,-0.02499479166666667],[118,271,67,-0.02499479166666667],[118,271,68,-0.02499479166666667],[118,271,69,-0.02499479166666667],[118,271,70,-0.02499479166666667],[118,271,71,-0.02499479166666667],[118,271,72,-0.02499479166666667],[118,271,73,-0.02499479166666667],[118,271,74,-0.02499479166666667],[118,271,75,-0.02499479166666667],[118,271,76,-0.02499479166666667],[118,271,77,-0.02499479166666667],[118,271,78,-0.02499479166666667],[118,271,79,-0.02499479166666667],[118,272,64,-0.02499479166666667],[118,272,65,-0.02499479166666667],[118,272,66,-0.02499479166666667],[118,272,67,-0.02499479166666667],[118,272,68,-0.02499479166666667],[118,272,69,-0.02499479166666667],[118,272,70,-0.02499479166666667],[118,272,71,-0.02499479166666667],[118,272,72,-0.02499479166666667],[118,272,73,-0.02499479166666667],[118,272,74,-0.02499479166666667],[118,272,75,-0.02499479166666667],[118,272,76,-0.02499479166666667],[118,272,77,-0.02499479166666667],[118,272,78,-0.02499479166666667],[118,272,79,-0.02499479166666667],[118,273,64,-0.02499479166666667],[118,273,65,-0.02499479166666667],[118,273,66,-0.02499479166666667],[118,273,67,-0.02499479166666667],[118,273,68,-0.02499479166666667],[118,273,69,-0.02499479166666667],[118,273,70,-0.02499479166666667],[118,273,71,-0.02499479166666667],[118,273,72,-0.02499479166666667],[118,273,73,-0.02499479166666667],[118,273,74,-0.02499479166666667],[118,273,75,-0.02499479166666667],[118,273,76,-0.02499479166666667],[118,273,77,-0.02499479166666667],[118,273,78,-0.02499479166666667],[118,273,79,-0.02499479166666667],[118,274,64,-0.02499479166666667],[118,274,65,-0.02499479166666667],[118,274,66,-0.02499479166666667],[118,274,67,-0.02499479166666667],[118,274,68,-0.02499479166666667],[118,274,69,-0.02499479166666667],[118,274,70,-0.02499479166666667],[118,274,71,-0.02499479166666667],[118,274,72,-0.02499479166666667],[118,274,73,-0.02499479166666667],[118,274,74,-0.02499479166666667],[118,274,75,-0.02499479166666667],[118,274,76,-0.02499479166666667],[118,274,77,-0.02499479166666667],[118,274,78,-0.02499479166666667],[118,274,79,-0.02499479166666667],[118,275,64,-0.02499479166666667],[118,275,65,-0.02499479166666667],[118,275,66,-0.02499479166666667],[118,275,67,-0.02499479166666667],[118,275,68,-0.02499479166666667],[118,275,69,-0.02499479166666667],[118,275,70,-0.02499479166666667],[118,275,71,-0.02499479166666667],[118,275,72,-0.02499479166666667],[118,275,73,-0.02499479166666667],[118,275,74,-0.02499479166666667],[118,275,75,-0.02499479166666667],[118,275,76,-0.02499479166666667],[118,275,77,-0.02499479166666667],[118,275,78,-0.02499479166666667],[118,275,79,-0.02499479166666667],[118,276,64,-0.02499479166666667],[118,276,65,-0.02499479166666667],[118,276,66,-0.02499479166666667],[118,276,67,-0.02499479166666667],[118,276,68,-0.02499479166666667],[118,276,69,-0.02499479166666667],[118,276,70,-0.02499479166666667],[118,276,71,-0.02499479166666667],[118,276,72,-0.02499479166666667],[118,276,73,-0.02499479166666667],[118,276,74,-0.02499479166666667],[118,276,75,-0.02499479166666667],[118,276,76,-0.02499479166666667],[118,276,77,-0.02499479166666667],[118,276,78,-0.02499479166666667],[118,276,79,-0.02499479166666667],[118,277,64,-0.02499479166666667],[118,277,65,-0.02499479166666667],[118,277,66,-0.02499479166666667],[118,277,67,-0.02499479166666667],[118,277,68,-0.02499479166666667],[118,277,69,-0.02499479166666667],[118,277,70,-0.02499479166666667],[118,277,71,-0.02499479166666667],[118,277,72,-0.02499479166666667],[118,277,73,-0.02499479166666667],[118,277,74,-0.02499479166666667],[118,277,75,-0.02499479166666667],[118,277,76,-0.02499479166666667],[118,277,77,-0.02499479166666667],[118,277,78,-0.02499479166666667],[118,277,79,-0.02499479166666667],[118,278,64,-0.02499479166666667],[118,278,65,-0.02499479166666667],[118,278,66,-0.02499479166666667],[118,278,67,-0.02499479166666667],[118,278,68,-0.02499479166666667],[118,278,69,-0.02499479166666667],[118,278,70,-0.02499479166666667],[118,278,71,-0.02499479166666667],[118,278,72,-0.02499479166666667],[118,278,73,-0.02499479166666667],[118,278,74,-0.02499479166666667],[118,278,75,-0.02499479166666667],[118,278,76,-0.02499479166666667],[118,278,77,-0.02499479166666667],[118,278,78,-0.02499479166666667],[118,278,79,-0.02499479166666667],[118,279,64,-0.02499479166666667],[118,279,65,-0.02499479166666667],[118,279,66,-0.02499479166666667],[118,279,67,-0.02499479166666667],[118,279,68,-0.02499479166666667],[118,279,69,-0.02499479166666667],[118,279,70,-0.02499479166666667],[118,279,71,-0.02499479166666667],[118,279,72,-0.02499479166666667],[118,279,73,-0.02499479166666667],[118,279,74,-0.02499479166666667],[118,279,75,-0.02499479166666667],[118,279,76,-0.02499479166666667],[118,279,77,-0.02499479166666667],[118,279,78,-0.02499479166666667],[118,279,79,-0.02499479166666667],[118,280,64,-0.02499479166666667],[118,280,65,-0.02499479166666667],[118,280,66,-0.02499479166666667],[118,280,67,-0.02499479166666667],[118,280,68,-0.02499479166666667],[118,280,69,-0.02499479166666667],[118,280,70,-0.02499479166666667],[118,280,71,-0.02499479166666667],[118,280,72,-0.02499479166666667],[118,280,73,-0.02499479166666667],[118,280,74,-0.02499479166666667],[118,280,75,-0.02499479166666667],[118,280,76,-0.02499479166666667],[118,280,77,-0.02499479166666667],[118,280,78,-0.02499479166666667],[118,280,79,-0.02499479166666667],[118,281,64,-0.02499479166666667],[118,281,65,-0.02499479166666667],[118,281,66,-0.02499479166666667],[118,281,67,-0.02499479166666667],[118,281,68,-0.02499479166666667],[118,281,69,-0.02499479166666667],[118,281,70,-0.02499479166666667],[118,281,71,-0.02499479166666667],[118,281,72,-0.02499479166666667],[118,281,73,-0.02499479166666667],[118,281,74,-0.02499479166666667],[118,281,75,-0.02499479166666667],[118,281,76,-0.02499479166666667],[118,281,77,-0.02499479166666667],[118,281,78,-0.02499479166666667],[118,281,79,-0.02499479166666667],[118,282,64,-0.02499479166666667],[118,282,65,-0.02499479166666667],[118,282,66,-0.02499479166666667],[118,282,67,-0.02499479166666667],[118,282,68,-0.02499479166666667],[118,282,69,-0.02499479166666667],[118,282,70,-0.02499479166666667],[118,282,71,-0.02499479166666667],[118,282,72,-0.02499479166666667],[118,282,73,-0.02499479166666667],[118,282,74,-0.02499479166666667],[118,282,75,-0.02499479166666667],[118,282,76,-0.02499479166666667],[118,282,77,-0.02499479166666667],[118,282,78,-0.02499479166666667],[118,282,79,-0.02499479166666667],[118,283,64,-0.02499479166666667],[118,283,65,-0.02499479166666667],[118,283,66,-0.02499479166666667],[118,283,67,-0.02499479166666667],[118,283,68,-0.02499479166666667],[118,283,69,-0.02499479166666667],[118,283,70,-0.02499479166666667],[118,283,71,-0.02499479166666667],[118,283,72,-0.02499479166666667],[118,283,73,-0.02499479166666667],[118,283,74,-0.02499479166666667],[118,283,75,-0.02499479166666667],[118,283,76,-0.02499479166666667],[118,283,77,-0.02499479166666667],[118,283,78,-0.02499479166666667],[118,283,79,-0.02499479166666667],[118,284,64,-0.02499479166666667],[118,284,65,-0.02499479166666667],[118,284,66,-0.02499479166666667],[118,284,67,-0.02499479166666667],[118,284,68,-0.02499479166666667],[118,284,69,-0.02499479166666667],[118,284,70,-0.02499479166666667],[118,284,71,-0.02499479166666667],[118,284,72,-0.02499479166666667],[118,284,73,-0.02499479166666667],[118,284,74,-0.02499479166666667],[118,284,75,-0.02499479166666667],[118,284,76,-0.02499479166666667],[118,284,77,-0.02499479166666667],[118,284,78,-0.02499479166666667],[118,284,79,-0.02499479166666667],[118,285,64,-0.02499479166666667],[118,285,65,-0.02499479166666667],[118,285,66,-0.02499479166666667],[118,285,67,-0.02499479166666667],[118,285,68,-0.02499479166666667],[118,285,69,-0.02499479166666667],[118,285,70,-0.02499479166666667],[118,285,71,-0.02499479166666667],[118,285,72,-0.02499479166666667],[118,285,73,-0.02499479166666667],[118,285,74,-0.02499479166666667],[118,285,75,-0.02499479166666667],[118,285,76,-0.02499479166666667],[118,285,77,-0.02499479166666667],[118,285,78,-0.02499479166666667],[118,285,79,-0.02499479166666667],[118,286,64,-0.02499479166666667],[118,286,65,-0.02499479166666667],[118,286,66,-0.02499479166666667],[118,286,67,-0.02499479166666667],[118,286,68,-0.02499479166666667],[118,286,69,-0.02499479166666667],[118,286,70,-0.02499479166666667],[118,286,71,-0.02499479166666667],[118,286,72,-0.02499479166666667],[118,286,73,-0.02499479166666667],[118,286,74,-0.02499479166666667],[118,286,75,-0.02499479166666667],[118,286,76,-0.02499479166666667],[118,286,77,-0.02499479166666667],[118,286,78,-0.02499479166666667],[118,286,79,-0.02499479166666667],[118,287,64,-0.02499479166666667],[118,287,65,-0.02499479166666667],[118,287,66,-0.02499479166666667],[118,287,67,-0.02499479166666667],[118,287,68,-0.02499479166666667],[118,287,69,-0.02499479166666667],[118,287,70,-0.02499479166666667],[118,287,71,-0.02499479166666667],[118,287,72,-0.02499479166666667],[118,287,73,-0.02499479166666667],[118,287,74,-0.02499479166666667],[118,287,75,-0.02499479166666667],[118,287,76,-0.02499479166666667],[118,287,77,-0.02499479166666667],[118,287,78,-0.02499479166666667],[118,287,79,-0.02499479166666667],[118,288,64,-0.02499479166666667],[118,288,65,-0.02499479166666667],[118,288,66,-0.02499479166666667],[118,288,67,-0.02499479166666667],[118,288,68,-0.02499479166666667],[118,288,69,-0.02499479166666667],[118,288,70,-0.02499479166666667],[118,288,71,-0.02499479166666667],[118,288,72,-0.02499479166666667],[118,288,73,-0.02499479166666667],[118,288,74,-0.02499479166666667],[118,288,75,-0.02499479166666667],[118,288,76,-0.02499479166666667],[118,288,77,-0.02499479166666667],[118,288,78,-0.02499479166666667],[118,288,79,-0.02499479166666667],[118,289,64,-0.02499479166666667],[118,289,65,-0.02499479166666667],[118,289,66,-0.02499479166666667],[118,289,67,-0.02499479166666667],[118,289,68,-0.02499479166666667],[118,289,69,-0.02499479166666667],[118,289,70,-0.02499479166666667],[118,289,71,-0.02499479166666667],[118,289,72,-0.02499479166666667],[118,289,73,-0.02499479166666667],[118,289,74,-0.02499479166666667],[118,289,75,-0.02499479166666667],[118,289,76,-0.02499479166666667],[118,289,77,-0.02499479166666667],[118,289,78,-0.02499479166666667],[118,289,79,-0.02499479166666667],[118,290,64,-0.02499479166666667],[118,290,65,-0.02499479166666667],[118,290,66,-0.02499479166666667],[118,290,67,-0.02499479166666667],[118,290,68,-0.02499479166666667],[118,290,69,-0.02499479166666667],[118,290,70,-0.02499479166666667],[118,290,71,-0.02499479166666667],[118,290,72,-0.02499479166666667],[118,290,73,-0.02499479166666667],[118,290,74,-0.02499479166666667],[118,290,75,-0.02499479166666667],[118,290,76,-0.02499479166666667],[118,290,77,-0.02499479166666667],[118,290,78,-0.02499479166666667],[118,290,79,-0.02499479166666667],[118,291,64,-0.02499479166666667],[118,291,65,-0.02499479166666667],[118,291,66,-0.02499479166666667],[118,291,67,-0.02499479166666667],[118,291,68,-0.02499479166666667],[118,291,69,-0.02499479166666667],[118,291,70,-0.02499479166666667],[118,291,71,-0.02499479166666667],[118,291,72,-0.02499479166666667],[118,291,73,-0.02499479166666667],[118,291,74,-0.02499479166666667],[118,291,75,-0.02499479166666667],[118,291,76,-0.02499479166666667],[118,291,77,-0.02499479166666667],[118,291,78,-0.02499479166666667],[118,291,79,-0.02499479166666667],[118,292,64,-0.02499479166666667],[118,292,65,-0.02499479166666667],[118,292,66,-0.02499479166666667],[118,292,67,-0.02499479166666667],[118,292,68,-0.02499479166666667],[118,292,69,-0.02499479166666667],[118,292,70,-0.02499479166666667],[118,292,71,-0.02499479166666667],[118,292,72,-0.02499479166666667],[118,292,73,-0.02499479166666667],[118,292,74,-0.02499479166666667],[118,292,75,-0.02499479166666667],[118,292,76,-0.02499479166666667],[118,292,77,-0.02499479166666667],[118,292,78,-0.02499479166666667],[118,292,79,-0.02499479166666667],[118,293,64,-0.02499479166666667],[118,293,65,-0.02499479166666667],[118,293,66,-0.02499479166666667],[118,293,67,-0.02499479166666667],[118,293,68,-0.02499479166666667],[118,293,69,-0.02499479166666667],[118,293,70,-0.02499479166666667],[118,293,71,-0.02499479166666667],[118,293,72,-0.02499479166666667],[118,293,73,-0.02499479166666667],[118,293,74,-0.02499479166666667],[118,293,75,-0.02499479166666667],[118,293,76,-0.02499479166666667],[118,293,77,-0.02499479166666667],[118,293,78,-0.02499479166666667],[118,293,79,-0.02499479166666667],[118,294,64,-0.02499479166666667],[118,294,65,-0.02499479166666667],[118,294,66,-0.02499479166666667],[118,294,67,-0.02499479166666667],[118,294,68,-0.02499479166666667],[118,294,69,-0.02499479166666667],[118,294,70,-0.02499479166666667],[118,294,71,-0.02499479166666667],[118,294,72,-0.02499479166666667],[118,294,73,-0.02499479166666667],[118,294,74,-0.02499479166666667],[118,294,75,-0.02499479166666667],[118,294,76,-0.02499479166666667],[118,294,77,-0.02499479166666667],[118,294,78,-0.02499479166666667],[118,294,79,-0.02499479166666667],[118,295,64,-0.02499479166666667],[118,295,65,-0.02499479166666667],[118,295,66,-0.02499479166666667],[118,295,67,-0.02499479166666667],[118,295,68,-0.02499479166666667],[118,295,69,-0.02499479166666667],[118,295,70,-0.02499479166666667],[118,295,71,-0.02499479166666667],[118,295,72,-0.02499479166666667],[118,295,73,-0.02499479166666667],[118,295,74,-0.02499479166666667],[118,295,75,-0.02499479166666667],[118,295,76,-0.02499479166666667],[118,295,77,-0.02499479166666667],[118,295,78,-0.02499479166666667],[118,295,79,-0.02499479166666667],[118,296,64,-0.02499479166666667],[118,296,65,-0.02499479166666667],[118,296,66,-0.02499479166666667],[118,296,67,-0.02499479166666667],[118,296,68,-0.02499479166666667],[118,296,69,-0.02499479166666667],[118,296,70,-0.02499479166666667],[118,296,71,-0.02499479166666667],[118,296,72,-0.02499479166666667],[118,296,73,-0.02499479166666667],[118,296,74,-0.02499479166666667],[118,296,75,-0.02499479166666667],[118,296,76,-0.02499479166666667],[118,296,77,-0.02499479166666667],[118,296,78,-0.02499479166666667],[118,296,79,-0.02499479166666667],[118,297,64,-0.02499479166666667],[118,297,65,-0.02499479166666667],[118,297,66,-0.02499479166666667],[118,297,67,-0.02499479166666667],[118,297,68,-0.02499479166666667],[118,297,69,-0.02499479166666667],[118,297,70,-0.02499479166666667],[118,297,71,-0.02499479166666667],[118,297,72,-0.02499479166666667],[118,297,73,-0.02499479166666667],[118,297,74,-0.02499479166666667],[118,297,75,-0.02499479166666667],[118,297,76,-0.02499479166666667],[118,297,77,-0.02499479166666667],[118,297,78,-0.02499479166666667],[118,297,79,-0.02499479166666667],[118,298,64,-0.02499479166666667],[118,298,65,-0.02499479166666667],[118,298,66,-0.02499479166666667],[118,298,67,-0.02499479166666667],[118,298,68,-0.02499479166666667],[118,298,69,-0.02499479166666667],[118,298,70,-0.02499479166666667],[118,298,71,-0.02499479166666667],[118,298,72,-0.02499479166666667],[118,298,73,-0.02499479166666667],[118,298,74,-0.02499479166666667],[118,298,75,-0.02499479166666667],[118,298,76,-0.02499479166666667],[118,298,77,-0.02499479166666667],[118,298,78,-0.02499479166666667],[118,298,79,-0.02499479166666667],[118,299,64,-0.02499479166666667],[118,299,65,-0.02499479166666667],[118,299,66,-0.02499479166666667],[118,299,67,-0.02499479166666667],[118,299,68,-0.02499479166666667],[118,299,69,-0.02499479166666667],[118,299,70,-0.02499479166666667],[118,299,71,-0.02499479166666667],[118,299,72,-0.02499479166666667],[118,299,73,-0.02499479166666667],[118,299,74,-0.02499479166666667],[118,299,75,-0.02499479166666667],[118,299,76,-0.02499479166666667],[118,299,77,-0.02499479166666667],[118,299,78,-0.02499479166666667],[118,299,79,-0.02499479166666667],[118,300,64,-0.02499479166666667],[118,300,65,-0.02499479166666667],[118,300,66,-0.02499479166666667],[118,300,67,-0.02499479166666667],[118,300,68,-0.02499479166666667],[118,300,69,-0.02499479166666667],[118,300,70,-0.02499479166666667],[118,300,71,-0.02499479166666667],[118,300,72,-0.02499479166666667],[118,300,73,-0.02499479166666667],[118,300,74,-0.02499479166666667],[118,300,75,-0.02499479166666667],[118,300,76,-0.02499479166666667],[118,300,77,-0.02499479166666667],[118,300,78,-0.02499479166666667],[118,300,79,-0.02499479166666667],[118,301,64,-0.02499479166666667],[118,301,65,-0.02499479166666667],[118,301,66,-0.02499479166666667],[118,301,67,-0.02499479166666667],[118,301,68,-0.02499479166666667],[118,301,69,-0.02499479166666667],[118,301,70,-0.02499479166666667],[118,301,71,-0.02499479166666667],[118,301,72,-0.02499479166666667],[118,301,73,-0.02499479166666667],[118,301,74,-0.02499479166666667],[118,301,75,-0.02499479166666667],[118,301,76,-0.02499479166666667],[118,301,77,-0.02499479166666667],[118,301,78,-0.02499479166666667],[118,301,79,-0.02499479166666667],[118,302,64,-0.02499479166666667],[118,302,65,-0.02499479166666667],[118,302,66,-0.02499479166666667],[118,302,67,-0.02499479166666667],[118,302,68,-0.02499479166666667],[118,302,69,-0.02499479166666667],[118,302,70,-0.02499479166666667],[118,302,71,-0.02499479166666667],[118,302,72,-0.02499479166666667],[118,302,73,-0.02499479166666667],[118,302,74,-0.02499479166666667],[118,302,75,-0.02499479166666667],[118,302,76,-0.02499479166666667],[118,302,77,-0.02499479166666667],[118,302,78,-0.02499479166666667],[118,302,79,-0.02499479166666667],[118,303,64,-0.02499479166666667],[118,303,65,-0.02499479166666667],[118,303,66,-0.02499479166666667],[118,303,67,-0.02499479166666667],[118,303,68,-0.02499479166666667],[118,303,69,-0.02499479166666667],[118,303,70,-0.02499479166666667],[118,303,71,-0.02499479166666667],[118,303,72,-0.02499479166666667],[118,303,73,-0.02499479166666667],[118,303,74,-0.02499479166666667],[118,303,75,-0.02499479166666667],[118,303,76,-0.02499479166666667],[118,303,77,-0.02499479166666667],[118,303,78,-0.02499479166666667],[118,303,79,-0.02499479166666667],[118,304,64,-0.02499479166666667],[118,304,65,-0.02499479166666667],[118,304,66,-0.02499479166666667],[118,304,67,-0.02499479166666667],[118,304,68,-0.02499479166666667],[118,304,69,-0.02499479166666667],[118,304,70,-0.02499479166666667],[118,304,71,-0.02499479166666667],[118,304,72,-0.02499479166666667],[118,304,73,-0.02499479166666667],[118,304,74,-0.02499479166666667],[118,304,75,-0.02499479166666667],[118,304,76,-0.02499479166666667],[118,304,77,-0.02499479166666667],[118,304,78,-0.02499479166666667],[118,304,79,-0.02499479166666667],[118,305,64,-0.02499479166666667],[118,305,65,-0.02499479166666667],[118,305,66,-0.02499479166666667],[118,305,67,-0.02499479166666667],[118,305,68,-0.02499479166666667],[118,305,69,-0.02499479166666667],[118,305,70,-0.02499479166666667],[118,305,71,-0.02499479166666667],[118,305,72,-0.02499479166666667],[118,305,73,-0.02499479166666667],[118,305,74,-0.02499479166666667],[118,305,75,-0.02499479166666667],[118,305,76,-0.02499479166666667],[118,305,77,-0.02499479166666667],[118,305,78,-0.02499479166666667],[118,305,79,-0.02499479166666667],[118,306,64,-0.02499479166666667],[118,306,65,-0.02499479166666667],[118,306,66,-0.02499479166666667],[118,306,67,-0.02499479166666667],[118,306,68,-0.02499479166666667],[118,306,69,-0.02499479166666667],[118,306,70,-0.02499479166666667],[118,306,71,-0.02499479166666667],[118,306,72,-0.02499479166666667],[118,306,73,-0.02499479166666667],[118,306,74,-0.02499479166666667],[118,306,75,-0.02499479166666667],[118,306,76,-0.02499479166666667],[118,306,77,-0.02499479166666667],[118,306,78,-0.02499479166666667],[118,306,79,-0.02499479166666667],[118,307,64,-0.02499479166666667],[118,307,65,-0.02499479166666667],[118,307,66,-0.02499479166666667],[118,307,67,-0.02499479166666667],[118,307,68,-0.02499479166666667],[118,307,69,-0.02499479166666667],[118,307,70,-0.02499479166666667],[118,307,71,-0.02499479166666667],[118,307,72,-0.02499479166666667],[118,307,73,-0.02499479166666667],[118,307,74,-0.02499479166666667],[118,307,75,-0.02499479166666667],[118,307,76,-0.02499479166666667],[118,307,77,-0.02499479166666667],[118,307,78,-0.02499479166666667],[118,307,79,-0.02499479166666667],[118,308,64,-0.02499479166666667],[118,308,65,-0.02499479166666667],[118,308,66,-0.02499479166666667],[118,308,67,-0.02499479166666667],[118,308,68,-0.02499479166666667],[118,308,69,-0.02499479166666667],[118,308,70,-0.02499479166666667],[118,308,71,-0.02499479166666667],[118,308,72,-0.02499479166666667],[118,308,73,-0.02499479166666667],[118,308,74,-0.02499479166666667],[118,308,75,-0.02499479166666667],[118,308,76,-0.02499479166666667],[118,308,77,-0.02499479166666667],[118,308,78,-0.02499479166666667],[118,308,79,-0.02499479166666667],[118,309,64,-0.02499479166666667],[118,309,65,-0.02499479166666667],[118,309,66,-0.02499479166666667],[118,309,67,-0.02499479166666667],[118,309,68,-0.02499479166666667],[118,309,69,-0.02499479166666667],[118,309,70,-0.02499479166666667],[118,309,71,-0.02499479166666667],[118,309,72,-0.02499479166666667],[118,309,73,-0.02499479166666667],[118,309,74,-0.02499479166666667],[118,309,75,-0.02499479166666667],[118,309,76,-0.02499479166666667],[118,309,77,-0.02499479166666667],[118,309,78,-0.02499479166666667],[118,309,79,-0.02499479166666667],[118,310,64,-0.02499479166666667],[118,310,65,-0.02499479166666667],[118,310,66,-0.02499479166666667],[118,310,67,-0.02499479166666667],[118,310,68,-0.02499479166666667],[118,310,69,-0.02499479166666667],[118,310,70,-0.02499479166666667],[118,310,71,-0.02499479166666667],[118,310,72,-0.02499479166666667],[118,310,73,-0.02499479166666667],[118,310,74,-0.02499479166666667],[118,310,75,-0.02499479166666667],[118,310,76,-0.02499479166666667],[118,310,77,-0.02499479166666667],[118,310,78,-0.02499479166666667],[118,310,79,-0.02499479166666667],[118,311,64,-0.02499479166666667],[118,311,65,-0.02499479166666667],[118,311,66,-0.02499479166666667],[118,311,67,-0.02499479166666667],[118,311,68,-0.02499479166666667],[118,311,69,-0.02499479166666667],[118,311,70,-0.02499479166666667],[118,311,71,-0.02499479166666667],[118,311,72,-0.02499479166666667],[118,311,73,-0.02499479166666667],[118,311,74,-0.02499479166666667],[118,311,75,-0.02499479166666667],[118,311,76,-0.02499479166666667],[118,311,77,-0.02499479166666667],[118,311,78,-0.02499479166666667],[118,311,79,-0.02499479166666667],[118,312,64,-0.02499479166666667],[118,312,65,-0.02499479166666667],[118,312,66,-0.02499479166666667],[118,312,67,-0.02499479166666667],[118,312,68,-0.02499479166666667],[118,312,69,-0.02499479166666667],[118,312,70,-0.02499479166666667],[118,312,71,-0.02499479166666667],[118,312,72,-0.02499479166666667],[118,312,73,-0.02499479166666667],[118,312,74,-0.02499479166666667],[118,312,75,-0.02499479166666667],[118,312,76,-0.02499479166666667],[118,312,77,-0.02499479166666667],[118,312,78,-0.02499479166666667],[118,312,79,-0.02499479166666667],[118,313,64,-0.02499479166666667],[118,313,65,-0.02499479166666667],[118,313,66,-0.02499479166666667],[118,313,67,-0.02499479166666667],[118,313,68,-0.02499479166666667],[118,313,69,-0.02499479166666667],[118,313,70,-0.02499479166666667],[118,313,71,-0.02499479166666667],[118,313,72,-0.02499479166666667],[118,313,73,-0.02499479166666667],[118,313,74,-0.02499479166666667],[118,313,75,-0.02499479166666667],[118,313,76,-0.02499479166666667],[118,313,77,-0.02499479166666667],[118,313,78,-0.02499479166666667],[118,313,79,-0.02499479166666667],[118,314,64,-0.02499479166666667],[118,314,65,-0.02499479166666667],[118,314,66,-0.02499479166666667],[118,314,67,-0.02499479166666667],[118,314,68,-0.02499479166666667],[118,314,69,-0.02499479166666667],[118,314,70,-0.02499479166666667],[118,314,71,-0.02499479166666667],[118,314,72,-0.02499479166666667],[118,314,73,-0.02499479166666667],[118,314,74,-0.02499479166666667],[118,314,75,-0.02499479166666667],[118,314,76,-0.02499479166666667],[118,314,77,-0.02499479166666667],[118,314,78,-0.02499479166666667],[118,314,79,-0.02499479166666667],[118,315,64,-0.02499479166666667],[118,315,65,-0.02499479166666667],[118,315,66,-0.02499479166666667],[118,315,67,-0.02499479166666667],[118,315,68,-0.02499479166666667],[118,315,69,-0.02499479166666667],[118,315,70,-0.02499479166666667],[118,315,71,-0.02499479166666667],[118,315,72,-0.02499479166666667],[118,315,73,-0.02499479166666667],[118,315,74,-0.02499479166666667],[118,315,75,-0.02499479166666667],[118,315,76,-0.02499479166666667],[118,315,77,-0.02499479166666667],[118,315,78,-0.02499479166666667],[118,315,79,-0.02499479166666667],[118,316,64,-0.02499479166666667],[118,316,65,-0.02499479166666667],[118,316,66,-0.02499479166666667],[118,316,67,-0.02499479166666667],[118,316,68,-0.02499479166666667],[118,316,69,-0.02499479166666667],[118,316,70,-0.02499479166666667],[118,316,71,-0.02499479166666667],[118,316,72,-0.02499479166666667],[118,316,73,-0.02499479166666667],[118,316,74,-0.02499479166666667],[118,316,75,-0.02499479166666667],[118,316,76,-0.02499479166666667],[118,316,77,-0.02499479166666667],[118,316,78,-0.02499479166666667],[118,316,79,-0.02499479166666667],[118,317,64,-0.02499479166666667],[118,317,65,-0.02499479166666667],[118,317,66,-0.02499479166666667],[118,317,67,-0.02499479166666667],[118,317,68,-0.02499479166666667],[118,317,69,-0.02499479166666667],[118,317,70,-0.02499479166666667],[118,317,71,-0.02499479166666667],[118,317,72,-0.02499479166666667],[118,317,73,-0.02499479166666667],[118,317,74,-0.02499479166666667],[118,317,75,-0.02499479166666667],[118,317,76,-0.02499479166666667],[118,317,77,-0.02499479166666667],[118,317,78,-0.02499479166666667],[118,317,79,-0.02499479166666667],[118,318,64,-0.02499479166666667],[118,318,65,-0.02499479166666667],[118,318,66,-0.02499479166666667],[118,318,67,-0.02499479166666667],[118,318,68,-0.02499479166666667],[118,318,69,-0.02499479166666667],[118,318,70,-0.02499479166666667],[118,318,71,-0.02499479166666667],[118,318,72,-0.02499479166666667],[118,318,73,-0.02499479166666667],[118,318,74,-0.02499479166666667],[118,318,75,-0.02499479166666667],[118,318,76,-0.02499479166666667],[118,318,77,-0.02499479166666667],[118,318,78,-0.02499479166666667],[118,318,79,-0.02499479166666667],[118,319,64,-0.02499479166666667],[118,319,65,-0.02499479166666667],[118,319,66,-0.02499479166666667],[118,319,67,-0.02499479166666667],[118,319,68,-0.02499479166666667],[118,319,69,-0.02499479166666667],[118,319,70,-0.02499479166666667],[118,319,71,-0.02499479166666667],[118,319,72,-0.02499479166666667],[118,319,73,-0.02499479166666667],[118,319,74,-0.02499479166666667],[118,319,75,-0.02499479166666667],[118,319,76,-0.02499479166666667],[118,319,77,-0.02499479166666667],[118,319,78,-0.02499479166666667],[118,319,79,-0.02499479166666667],[119,-64,64,0.037482421875],[119,-64,65,0.037482421875],[119,-64,66,0.037482421875],[119,-64,67,0.037482421875],[119,-64,68,0.037482421875],[119,-64,69,0.037482421875],[119,-64,70,0.037482421875],[119,-64,71,0.037482421875],[119,-64,72,0.037482421875],[119,-64,73,0.037482421875],[119,-64,74,0.037482421875],[119,-64,75,0.037482421875],[119,-64,76,0.037482421875],[119,-64,77,0.037482421875],[119,-64,78,0.037482421875],[119,-64,79,0.037482421875],[119,-63,64,0.04051128190656244],[119,-63,65,0.040591414692164644],[119,-63,66,0.04067303809348136],[119,-63,67,0.04075591685904896],[119,-63,68,0.040840117734791404],[119,-63,69,0.040925876497289286],[119,-63,70,0.04101333700519314],[119,-63,71,0.04110254770655452],[119,-63,72,0.04119346472890421],[119,-63,73,0.04128595583656006],[119,-63,74,0.04137980526999186],[119,-63,75,0.04147471948036174],[119,-63,76,0.04157033377060489],[119,-63,77,0.04166621985263096],[119,-63,78,0.04176189432842193],[119,-63,79,0.04185682810100287],[119,-62,64,0.0435962111768984],[119,-62,65,0.043758951199675045],[119,-62,66,0.043924762031105465],[119,-62,67,0.0440932026703576],[119,-62,68,0.044264389759136206],[119,-62,69,0.04443874333546284],[119,-62,70,0.044616500322200554],[119,-62,71,0.04479770940725287],[119,-62,72,0.04498223820644455],[119,-62,73,0.0451697820521699],[119,-62,74,0.0453598744333236],[119,-62,75,0.04555189910868186],[119,-62,76,0.04574510391249692],[119,-62,77,0.045938616267637476],[119,-62,78,0.046131460418173044],[119,-62,79,0.046322576389909616],[119,-61,64,0.0467433715105045],[119,-61,65,0.04699070523897344],[119,-61,66,0.04724271401185949],[119,-61,67,0.04749879207394323],[119,-61,68,0.047759087778637174],[119,-61,69,0.04802414587935361],[119,-61,70,0.0482942429017626],[119,-61,71,0.0485693817147457],[119,-61,72,0.048849302953335554],[119,-61,73,0.04913349875165194],[119,-61,74,0.04942122881950522],[119,-61,75,0.04971153889143304],[119,-61,76,0.05000328157198143],[119,-61,77,0.05029513959609118],[119,-61,78,0.050585651518536855],[119,-61,79,0.05087323984156478],[119,-60,64,0.0499579465157982],[119,-60,65,0.0502913817511317],[119,-60,66,0.05063105543758653],[119,-60,67,0.05097624672536183],[119,-60,68,0.05132711694165883],[119,-60,69,0.05168427089399636],[119,-60,70,0.05204797078725959],[119,-60,71,0.05241813128276719],[119,-60,72,0.05279433466056177],[119,-60,73,0.05317584893219556],[119,-60,74,0.05356164894469355],[119,-60,75,0.0539504405100026],[119,-60,76,0.05434068758783206],[119,-60,77,0.05473064254343532],[119,-60,78,0.05511837949561814],[119,-60,79,0.05550183076419625],[119,-59,64,0.05324397958047436],[119,-59,65,0.05366457487537256],[119,-59,66,0.054092870517898725],[119,-59,67,0.05452808522017341],[119,-59,68,0.05497037429737917],[119,-59,69,0.0554203354664474],[119,-59,70,0.055878163958662935],[119,-59,71,0.056343648409754796],[119,-59,72,0.05681618866552262],[119,-59,73,0.05729481715824751],[119,-59,74,0.05777822390150677],[119,-59,75,0.0582647851432752],[119,-59,76,0.05875259570944795],[119,-59,77,0.05923950506226132],[119,-59,78,0.05972315709058708],[119,-59,79,0.06020103364186631],[119,-58,64,0.0566043009681376],[119,-58,65,0.057112717294843685],[119,-58,66,0.057630141476340394],[119,-58,67,0.05815578689842169],[119,-58,68,0.05868978324685829],[119,-58,69,0.05923265354972863],[119,-58,70,0.05978447566910563],[119,-58,71,0.06034487901966516],[119,-58,72,0.06091306352448661],[119,-58,73,0.06148782275440911],[119,-58,74,0.062067571306090794],[119,-58,75,0.06265037646494287],[119,-58,76,0.06323399419013032],[119,-58,77,0.06381590944997487],[119,-58,78,0.06439338092745722],[119,-58,79,0.06496349010725816],[119,-57,64,0.06004056041227973],[119,-57,65,0.06063713717721129],[119,-57,66,0.061243833469188186],[119,-57,67,0.061859907468074966],[119,-57,68,0.06248544166913217],[119,-57,69,0.06312081743359424],[119,-57,70,0.06376594705451384],[119,-57,71,0.06442027111176638],[119,-57,72,0.06508277691102159],[119,-57,73,0.06575202170907356],[119,-57,74,0.06642616078895691],[119,-57,75,0.06710298043821535],[119,-57,76,0.06777993587361143],[119,-57,77,0.06845419414563164],[119,-57,78,0.06912268204647211],[119,-57,79,0.0697821390359831],[119,-56,64,0.06355300389134624],[119,-56,65,0.06423782360405066],[119,-56,66,0.06493365161925213],[119,-56,67,0.06563983005344803],[119,-56,68,0.066356368721354],[119,-56,69,0.06708344154086665],[119,-56,70,0.06782074883189042],[119,-56,71,0.06856751505309047],[119,-56,72,0.06932250508105399],[119,-56,73,0.0700840458528988],[119,-56,74,0.07085005344454859],[119,-56,75,0.07161806564593318],[119,-56,76,0.07238528008336659],[119,-56,77,0.07314859792849555],[119,-56,78,0.0739046732226414],[119,-56,79,0.07464996783531967],[119,-55,64,0.06713787452181634],[119,-55,65,0.06791056182184972],[119,-55,66,0.06869490803258961],[119,-55,67,0.06949036430182157],[119,-55,68,0.07029683956650451],[119,-55,69,0.0711142416094271],[119,-55,70,0.07194202047538138],[119,-55,71,0.07277916583919619],[119,-55,72,0.073624219203572],[119,-55,73,0.07447529203078995],[119,-55,74,0.07533008989053254],[119,-55,75,0.0761859426943702],[119,-55,76,0.07703984107568214],[119,-55,77,0.07788847896211197],[119,-55,78,0.07872830237628346],[119,-55,79,0.07955556448969067],[119,-54,64,0.07078819746856028],[119,-54,65,0.07164777127682935],[119,-54,66,0.0725194129919893],[119,-54,67,0.07340269224708536],[119,-54,68,0.07429738769385374],[119,-54,69,0.07520309419106874],[119,-54,70,0.07611898628041691],[119,-54,71,0.07704381361879979],[119,-54,72,0.07797590667384469],[119,-54,73,0.07891318896434354],[119,-54,74,0.0798531959404817],[119,-54,75,0.08079310058642367],[119,-54,76,0.08172974581532474],[119,-54,77,0.08265968371439414],[119,-54,78,0.0835792216854377],[119,-54,79,0.08448447551467403],[119,-53,64,0.07449523829415883],[119,-53,65,0.07544008729709151],[119,-53,66,0.07639718173594907],[119,-53,67,0.07736620216060316],[119,-53,68,0.07834676677389328],[119,-53,69,0.0793381246219097],[119,-53,70,0.0803391641523186],[119,-53,71,0.08134840426616775],[119,-53,72,0.08236399058361865],[119,-53,73,0.08338369896184593],[119,-53,74,0.08440494637659837],[119,-53,75,0.08542480926601564],[119,-53,76,0.08644004942204787],[119,-53,77,0.08744714750151054],[119,-53,78,0.0884423442156428],[119,-53,79,0.08942168924438514],[119,-52,64,0.07824901066351266],[119,-52,65,0.07927689473793612],[119,-52,66,0.08031699436097624],[119,-52,67,0.08136907593105643],[119,-52,68,0.08243256678207411],[119,-52,69,0.08350635239254149],[119,-52,70,0.08458903987311851],[119,-52,71,0.08567894130945627],[119,-52,72,0.08677405719307815],[119,-52,73,0.0878720679684913],[119,-52,74,0.08897033382994333],[119,-52,75,0.09006590288761486],[119,-52,76,0.09115552780886348],[119,-52,77,0.09223569102571437],[119,-52,78,0.09330263858537213],[119,-52,79,0.09435242270649895],[119,-51,64,0.08203881361025596],[119,-51,65,0.08314688782211234],[119,-51,66,0.08426697825663564],[119,-51,67,0.08539889501474814],[119,-51,68,0.08654184445366217],[119,-51,69,0.08769434639917403],[119,-51,70,0.08885474667749951],[119,-51,71,0.09002118857965449],[119,-51,72,0.09119157963356872],[119,-51,73,0.09236356757619327],[119,-51,74,0.09353452568727603],[119,-51,75,0.09470154763185507],[119,-51,76,0.09586145194309234],[119,-51,77,0.09701079626116228],[119,-51,78,0.098145901427782],[119,-51,79,0.09926288552006594],[119,-50,64,0.08577144212323867],[119,-50,65,0.08703867204574979],[119,-50,66,0.08823522939984683],[119,-50,67,0.08944328170559661],[119,-50,68,0.09066178519562507],[119,-50,69,0.09188890752359467],[119,-50,70,0.09312276784205162],[119,-50,71,0.09436139146327738],[119,-50,72,0.09560265581359191],[119,-50,73,0.09684424695364671],[119,-50,74,0.09808362686170184],[119,-50,75,0.09931801166082448],[119,-50,76,0.10054436095379475],[119,-50,77,0.10175937841157974],[119,-50,78,0.10295952374282369],[119,-50,79,0.10414103615337272],[119,-49,64,0.08925160383111948],[119,-49,65,0.09065731375077171],[119,-49,66,0.09207347614268731],[119,-49,67,0.09348999795380097],[119,-49,68,0.09477994919246087],[119,-49,69,0.09607746673026908],[119,-49,70,0.09738048834911314],[119,-49,71,0.09868698034782848],[119,-49,72,0.09999485843977592],[119,-49,73,0.10130192090846926],[119,-49,74,0.10260579426060891],[119,-49,75,0.10390389159782519],[119,-49,76,0.10519338390898467],[119,-49,77,0.10647118446435219],[119,-49,78,0.10773394647152822],[119,-49,79,0.1089780741313936],[119,-48,64,0.09275309417244529],[119,-48,65,0.09425710736893],[119,-48,66,0.09577399181755053],[119,-48,67,0.09730035097674253],[119,-48,68,0.09883356982464107],[119,-48,69,0.1002474681638968],[119,-48,70,0.10161599320041965],[119,-48,71,0.10298677667411822],[119,-48,72,0.10435783219982452],[119,-48,73,0.10572713277911645],[119,-48,74,0.10709253183755463],[119,-48,75,0.10845169906276093],[119,-48,76,0.10980207128736039],[119,-48,77,0.11114081863704761],[119,-48,78,0.11246482613909334],[119,-48,79,0.11377069096099063],[119,-47,64,0.09628245693548028],[119,-47,65,0.09788411620967608],[119,-47,66,0.09950094645320484],[119,-47,67,0.10112963517520972],[119,-47,68,0.1027677033266213],[119,-47,69,0.10438719142125447],[119,-47,70,0.1058184343623523],[119,-47,71,0.10725089411394922],[119,-47,72,0.10868272737500125],[119,-47,73,0.11011212751726789],[119,-47,74,0.11153721882837098],[119,-47,75,0.1129559678820018],[119,-47,76,0.11436611232337747],[119,-47,77,0.11576510733062316],[119,-47,78,0.1171500899837521],[119,-47,79,0.1185178617428254],[119,-46,64,0.09984485180735816],[119,-46,65,0.10154265641856541],[119,-46,66,0.10325768732530664],[119,-46,67,0.10498683728311926],[119,-46,68,0.10672782120132297],[119,-46,69,0.10847851538770338],[119,-46,70,0.1099783739184319],[119,-46,71,0.1114708898628428],[119,-46,72,0.11296215821675387],[119,-46,73,0.11445061967559535],[119,-46,74,0.11593469339759226],[119,-46,75,0.11741266276206296],[119,-46,76,0.11888258108192738],[119,-46,77,0.12034219757096744],[119,-46,78,0.1217889038329628],[119,-46,79,0.12321970110485184],[119,-45,64,0.1034436962012104],[119,-45,65,0.10523526656163473],[119,-45,66,0.10704575912857353],[119,-45,67,0.10887240226431073],[119,-45,68,0.11071317096182286],[119,-45,69,0.11253597955495391],[119,-45,70,0.11408796893232637],[119,-45,71,0.11563990304409842],[119,-45,72,0.11719029238234575],[119,-45,73,0.11873783208358057],[119,-45,74,0.12028123953519078],[119,-45,75,0.12181911418327607],[119,-45,76,0.1233498199155261],[119,-45,77,0.12487139035717117],[119,-45,78,0.12638145737997952],[119,-45,79,0.1278772030841494],[119,-44,64,0.10708037926341679],[119,-44,65,0.10896244437357024],[119,-44,66,0.11086466782363906],[119,-44,67,0.11278474980188416],[119,-44,68,0.1147209992521987],[119,-44,69,0.11652928715512507],[119,-44,70,0.11814110201376372],[119,-44,71,0.1197527439188817],[119,-44,72,0.12136289686953342],[119,-44,73,0.12297049725578334],[119,-44,74,0.12457454339677852],[119,-44,75,0.12617392985209364],[119,-44,76,0.127767306917799],[119,-44,77,0.129352965678792],[119,-44,78,0.1309287489461423],[119,-44,79,0.13249198836278298],[119,-43,64,0.11075404714848837],[119,-43,65,0.11272245360049606],[119,-43,66,0.11471171272141352],[119,-43,67,0.11672013489603957],[119,-43,68,0.11874644394001023],[119,-43,69,0.1204610827942596],[119,-43,70,0.12213345822156735],[119,-43,71,0.12380593443028176],[119,-43,72,0.12547734086804063],[119,-43,73,0.12714682183914355],[119,-43,74,0.1288136192844947],[119,-43,75,0.13047688280426767],[119,-43,76,0.1321355073672465],[119,-43,77,0.13378799910658765],[119,-43,78,0.13543236955423552],[119,-43,79,0.13706605861549181],[119,-42,64,0.11446145887914107],[119,-42,65,0.1165112002806834],[119,-42,66,0.11858188616203773],[119,-42,67,0.12067257360640123],[119,-42,68,0.12259628894336086],[119,-42,69,0.12432817320396108],[119,-42,70,0.12606254877921],[119,-42,71,0.12779770045838348],[119,-42,72,0.12953255580445436],[119,-42,73,0.13126641427657615],[119,-42,74,0.13299870535038222],[119,-42,75,0.13472877615168055],[119,-42,76,0.1364557090735959],[119,-42,77,0.138178169798766],[119,-42,78,0.13989428609607107],[119,-42,79,0.1416015577054326],[119,-41,64,0.1181969123101178],[119,-41,65,0.12032217799213245],[119,-41,66,0.12246784031418059],[119,-41,67,0.12454611600407507],[119,-41,68,0.1263345011688212],[119,-41,69,0.12812929066086895],[119,-41,70,0.12992768189888515],[119,-41,71,0.13172791599520184],[119,-41,72,0.1335289527025154],[119,-41,73,0.1353301757253876],[119,-41,74,0.13713112898349464],[119,-41,75,0.13893128436518815],[119,-41,76,0.1407298414603218],[119,-41,77,0.14252555970875777],[119,-41,78,0.14431662334440098],[119,-41,79,0.14610053945371182],[119,-40,64,0.12195223988550988],[119,-40,65,0.12414648175386728],[119,-40,66,0.12631494526874293],[119,-40,67,0.12815379455538964],[119,-40,68,0.130005333568281],[119,-40,69,0.13186503285421522],[119,-40,70,0.13372988081276202],[119,-40,71,0.13559799926602692],[119,-40,72,0.13746829681612213],[119,-40,73,0.13934015412447015],[119,-40,74,0.14121314171960284],[119,-40,75,0.1430867708872836],[119,-40,76,0.14496027814317958],[119,-40,77,0.14683244373185353],[119,-40,78,0.14870144453514167],[119,-40,79,0.150564741707514],[119,-39,64,0.12221649465842142],[119,-39,65,0.1243281729629766],[119,-39,66,0.1261333954169994],[119,-39,67,0.12796033650165634],[119,-39,68,0.12980207197418778],[119,-39,69,0.13165386992283973],[119,-39,70,0.1335125596533269],[119,-39,71,0.13537613460164052],[119,-39,72,0.13724340321964143],[119,-39,73,0.1391136715333586],[119,-39,74,0.14098645797142786],[119,-39,75,0.1428612410073667],[119,-39,76,0.14473724010517328],[119,-39,77,0.1466132304009155],[119,-39,78,0.14848739149207604],[119,-39,79,0.15035719064083786],[119,-38,64,0.12235630650805208],[119,-38,65,0.12411614084331542],[119,-38,66,0.12590874162271218],[119,-38,67,0.127726184219967],[119,-38,68,0.1295608645784092],[119,-38,69,0.13140778766492492],[119,-38,70,0.13326354566083384],[119,-38,71,0.13512591389095832],[119,-38,72,0.13699350429125431],[119,-38,73,0.13886544982692803],[119,-38,74,0.14074112044219475],[119,-38,75,0.14261987106859467],[119,-38,76,0.14450082216438695],[119,-38,77,0.14475219711889079],[119,-38,78,0.14519991599959683],[119,-38,79,0.1416620257583768],[119,-37,64,0.12212369166417843],[119,-37,65,0.12386847708162176],[119,-37,66,0.12565035532138538],[119,-37,67,0.12746049274066115],[119,-37,68,0.12929057869452998],[119,-37,69,0.1311352859999556],[119,-37,70,0.13299088629722705],[119,-37,71,0.13485484479238882],[119,-37,72,0.13672548108945937],[119,-37,73,0.13790465109611752],[119,-37,74,0.13544289391381184],[119,-37,75,0.1388934502090742],[119,-37,76,0.13599299698996284],[119,-37,77,0.13611053077555493],[119,-37,78,0.13640754332346702],[119,-37,79,0.13434555222315958],[119,-36,64,0.11704425662653282],[119,-36,65,0.12060408910244014],[119,-36,66,0.12536760283545956],[119,-36,67,0.1271723212019092],[119,-36,68,0.1289998885147051],[119,-36,69,0.13084456972125486],[119,-36,70,0.13270222917794916],[119,-36,71,0.1314039278132087],[119,-36,72,0.13227704025741477],[119,-36,73,0.1334468653823062],[119,-36,74,0.1302145542223691],[119,-36,75,0.1314624763414405],[119,-36,76,0.12865842807411143],[119,-36,77,0.1295719641689298],[119,-36,78,0.1298914836207364],[119,-36,79,0.12895146655547912],[119,-35,64,0.11493592546070731],[119,-35,65,0.11794163755343691],[119,-35,66,0.12277623706283196],[119,-35,67,0.1268703739005301],[119,-35,68,0.12869702732181357],[119,-35,69,0.13054331416850384],[119,-35,70,0.13089643371316145],[119,-35,71,0.12826551830740235],[119,-35,72,0.12727199258718808],[119,-35,73,0.13016486325804505],[119,-35,74,0.12832919788143687],[119,-35,75,0.128123758801631],[119,-35,76,0.1264542405555008],[119,-35,77,0.12639297321025827],[119,-35,78,0.12506353740711],[119,-35,79,0.12517635633253982],[119,-34,64,0.11483048184983358],[119,-34,65,0.11878788820670831],[119,-34,66,0.12247668578536607],[119,-34,67,0.12656273747745134],[119,-34,68,0.1283895358220123],[119,-34,69,0.13023842702740857],[119,-34,70,0.13210419840024415],[119,-34,71,0.13135598285353242],[119,-34,72,0.12729221756352693],[119,-34,73,0.12820503285984164],[119,-34,74,0.12829317348547367],[119,-34,75,0.1281360045966827],[119,-34,76,0.127336505636],[119,-34,77,0.12605139946232105],[119,-34,78,0.12202292491898346],[119,-34,79,0.12096016773728202],[119,-33,64,0.11490809618125299],[119,-33,65,0.12114292719614718],[119,-33,66,0.12446107858592974],[119,-33,67,0.12625661354828624],[119,-33,68,0.1280840059510417],[119,-33,69,0.12993580565821986],[119,-33,70,0.13180613503562494],[119,-33,71,0.13369033429590843],[119,-33,72,0.1319478172455078],[119,-33,73,0.1307122793457479],[119,-33,74,0.13034055339879186],[119,-33,75,0.12897176957843856],[119,-33,76,0.1276574796439417],[119,-33,77,0.1269435925607224],[119,-33,78,0.1219629261963557],[119,-33,79,0.1191081362080549],[119,-32,64,0.11583405244841159],[119,-32,65,0.12241857682191427],[119,-32,66,0.1241649555703796],[119,-32,67,0.12595804614121023],[119,-32,68,0.12778581955419693],[119,-32,69,0.12964008939558266],[119,-32,70,0.1315142363141594],[119,-32,71,0.13340287788908037],[119,-32,72,0.13530162043388885],[119,-32,73,0.135582412361874],[119,-32,74,0.1350778189322826],[119,-32,75,0.1319197452270323],[119,-32,76,0.12898520627538276],[119,-32,77,0.12973815807666078],[119,-32,78,0.12491446677200649],[119,-32,79,0.1192737516132966],[119,-31,64,0.12046478447060162],[119,-31,65,0.12214178623662585],[119,-31,66,0.12388169082030062],[119,-31,67,0.12567164335248487],[119,-31,68,0.12749888138246837],[119,-31,69,0.12935440629864553],[119,-31,70,0.13123078935714388],[119,-31,71,0.13312186949290247],[119,-31,72,0.13502252926323471],[119,-31,73,0.13692848453836803],[119,-31,74,0.1388360882995967],[119,-31,75,0.136589867492251],[119,-31,76,0.1322422241321163],[119,-31,77,0.1322099856348321],[119,-31,78,0.1282275705064494],[119,-31,79,0.12325342135263054],[119,-30,64,0.12021628722195063],[119,-30,65,0.1218824425717603],[119,-30,66,0.12361483247006162],[119,-30,67,0.12540029267279323],[119,-30,68,0.12722534588429413],[119,-30,69,0.12908011386098395],[119,-30,70,0.13095630289981608],[119,-30,71,0.13284693206693088],[119,-30,72,0.13474613326926926],[119,-30,73,0.13664896139765906],[119,-30,74,0.13855121487394478],[119,-30,75,0.14044926690225565],[119,-30,76,0.13532534849667213],[119,-30,77,0.1338033067151208],[119,-30,78,0.13003978136197963],[119,-30,79,0.12775207823879495],[119,-29,64,0.11998857777156628],[119,-29,65,0.12164272602211393],[119,-29,66,0.12336594299860615],[119,-29,67,0.12514486947258643],[119,-29,68,0.12696533730132206],[119,-29,69,0.1288165332124732],[119,-29,70,0.13068925830253092],[119,-29,71,0.13257568804287298],[119,-29,72,0.13446919549970068],[119,-29,73,0.1363641808666215],[119,-29,74,0.13825590762074305],[119,-29,75,0.140140345586589],[119,-29,76,0.13748950976377383],[119,-29,77,0.1354924637454312],[119,-29,78,0.13161397138700615],[119,-29,79,0.13067759607238683],[119,-28,64,0.11978216836727199],[119,-28,65,0.12142255129226176],[119,-28,66,0.12313429081742425],[119,-28,67,0.12490393815935728],[119,-28,68,0.12671666259510764],[119,-28,69,0.12856067635747365],[119,-28,70,0.13042585386529404],[119,-28,71,0.13230352357906786],[119,-28,72,0.13418631238747344],[119,-28,73,0.13606799256906588],[119,-28,74,0.13794333162634706],[119,-28,75,0.13980794526878812],[119,-28,76,0.14162052505011866],[119,-28,77,0.14037990748821846],[119,-28,78,0.13619514347883172],[119,-28,79,0.13273192331120579],[119,-27,64,0.11959502601137427],[119,-27,65,0.1212192440960436],[119,-27,66,0.12291653391798532],[119,-27,67,0.12467344553184623],[119,-27,68,0.12647451673758192],[119,-27,69,0.12830696599354355],[119,-27,70,0.13015974200592162],[119,-27,71,0.13201282308404058],[119,-27,72,0.1336548412948136],[119,-27,73,0.13532295029589053],[119,-27,74,0.1370152896604935],[119,-27,75,0.1387286276648032],[119,-27,76,0.14045854253364307],[119,-27,77,0.14219960284495178],[119,-27,78,0.1408749769928781],[119,-27,79,0.1350843940896072],[119,-26,64,0.1194222370886923],[119,-26,65,0.12102720915448278],[119,-26,66,0.12270639509988175],[119,-26,67,0.1244464058516717],[119,-26,68,0.12623117988756663],[119,-26,69,0.12786518779463898],[119,-26,70,0.12940344580070687],[119,-26,71,0.13097054919757412],[119,-26,72,0.1325686828563973],[119,-26,73,0.13419814982207262],[119,-26,74,0.13585754562509636],[119,-26,75,0.13754393564362088],[119,-26,76,0.13925303526775712],[119,-26,77,0.14097939258621545],[119,-26,78,0.14271657329248033],[119,-26,79,0.13601007113383892],[119,-25,64,0.11925565237791827],[119,-25,65,0.12083759149868381],[119,-25,66,0.12249434250111266],[119,-25,67,0.12395470974446375],[119,-25,68,0.12539677614910735],[119,-25,69,0.12685940666894643],[119,-25,70,0.12835001696619638],[119,-25,71,0.129873663712467],[119,-25,72,0.13143320270138897],[119,-25,73,0.13302945330830496],[119,-25,74,0.1346613691578839],[119,-25,75,0.13632621480004156],[119,-25,76,0.13801974814203952],[119,-25,77,0.13973640834090215],[119,-25,78,0.14146950882614795],[119,-25,79,0.13543458916463738],[119,-24,64,0.11884015286368428],[119,-24,65,0.12023192013509831],[119,-24,66,0.12161306834530898],[119,-24,67,0.12299349495474998],[119,-24,68,0.12438634931697179],[119,-24,69,0.12580258976230838],[119,-24,70,0.1272505098750931],[119,-24,71,0.12873589337516994],[119,-24,72,0.13026216740411475],[119,-24,73,0.13183056467687593],[119,-24,74,0.1334402943709648],[119,-24,75,0.13508872155346638],[119,-24,76,0.13677155488227885],[119,-24,77,0.13848304226323568],[119,-24,78,0.14021617410026252],[119,-24,79,0.13523758498728308],[119,-23,64,0.11797870463208325],[119,-23,65,0.1193193618999302],[119,-23,66,0.12065108304897551],[119,-23,67,0.12198376190717028],[119,-23,68,0.12333112527558637],[119,-23,69,0.12470505974649147],[119,-23,70,0.12611464843964207],[119,-23,71,0.12756631087305992],[119,-23,72,0.12906395414068414],[119,-23,73,0.13060913520749118],[119,-23,74,0.13220123419962979],[119,-23,75,0.13383763848414867],[119,-23,76,0.13551393725810051],[119,-23,77,0.1372241263015709],[119,-23,78,0.13896082249494027],[119,-23,79,0.13529129629802047],[119,-22,64,0.11707234553524605],[119,-22,65,0.11836352050143416],[119,-22,66,0.11964799839265094],[119,-22,67,0.12093561644073648],[119,-22,68,0.12224058127341393],[119,-22,69,0.12357560766060013],[119,-22,70,0.12495047378672339],[119,-22,71,0.1263721469458982],[119,-22,72,0.127844933346267],[119,-22,73,0.1293706411656103],[119,-22,74,0.13094875673760692],[119,-22,75,0.13257663365435235],[119,-22,76,0.13424969448536428],[119,-22,77,0.1359616447379286],[119,-22,78,0.13770469861999954],[119,-22,79,0.133338699460155],[119,-21,64,0.1161321551720807],[119,-21,65,0.11737486833627568],[119,-21,66,0.11861365628582476],[119,-21,67,0.11985823197170722],[119,-21,68,0.12112316389008942],[119,-21,69,0.12242188086221309],[119,-21,70,0.12376475829103234],[119,-21,71,0.12515922858822898],[119,-21,72,0.12660992845817434],[119,-21,73,0.1281188615894092],[119,-21,74,0.12968557663345265],[119,-21,75,0.13130736024658657],[119,-21,76,0.13297944487457855],[119,-21,77,0.13469523087496987],[119,-21,78,0.1364465224985674],[119,-21,79,0.1313934459469128],[119,-20,64,0.11516878533258249],[119,-20,65,0.11636339788094817],[119,-20,66,0.11755733594404465],[119,-20,67,0.11876011077388551],[119,-20,68,0.11998652030542512],[119,-20,69,0.12125058355437036],[119,-20,70,0.12256317557914698],[119,-20,71,0.12393211971561267],[119,-20,72,0.12536232937288597],[119,-20,73,0.1268559675531435],[119,-20,74,0.12841262397644404],[119,-20,75,0.13002950957758463],[119,-20,76,0.13170166803624897],[119,-20,77,0.1334222039063858],[119,-20,78,0.13518252682817322],[119,-20,79,0.13135059627618897],[119,-19,64,0.11419280011333406],[119,-19,65,0.11533893588243647],[119,-19,66,0.11648804080878598],[119,-19,67,0.11764934174374604],[119,-19,68,0.11883772521484731],[119,-19,69,0.12006767197151433],[119,-19,70,0.12135046400744476],[119,-19,71,0.1226942538874485],[119,-19,72,0.12410419628843242],[119,-19,73,0.12558259988033077],[119,-19,74,0.12712909943244477],[119,-19,75,0.1287408479072913],[119,-19,76,0.13041272818839852],[119,-19,77,0.13213758398294115],[119,-19,78,0.1339064693473241],[119,-19,79,0.13219182979020191],[119,-18,64,0.1132137873191916],[119,-18,65,0.11431017510707533],[119,-18,66,0.11541344865674538],[119,-18,67,0.11653246638932935],[119,-18,68,0.11768206040603386],[119,-18,69,0.11887704604395599],[119,-18,70,0.12012902981479806],[119,-18,71,0.12144644929987347],[119,-18,72,0.12283468785031643],[119,-18,73,0.12429621268824056],[119,-18,74,0.1258307363043952],[119,-18,75,0.12743540091577701],[119,-18,76,0.12910498562108852],[119,-18,77,0.13083213577564276],[119,-18,78,0.13260761400335117],[119,-18,79,0.13134366161759564],[119,-17,64,0.1122347186952892],[119,-17,65,0.11327929001187942],[119,-17,66,0.11433484534623763],[119,-17,67,0.11540979424121824],[119,-17,68,0.11651877266426645],[119,-17,69,0.11767680491190967],[119,-17,70,0.11889574700513815],[119,-17,71,0.12018428946073653],[119,-17,72,0.12154804734270147],[119,-17,73,0.12298967732161464],[119,-17,74,0.12450902165494172],[119,-17,75,0.12610327886096653],[119,-17,76,0.12776720072351153],[119,-17,77,0.12949331513686743],[119,-17,78,0.13127217418397763],[119,-17,79,0.12945698641252656],[119,-16,64,0.1112421460279785],[119,-16,65,0.11223328143444355],[119,-16,66,0.11323980092015397],[119,-16,67,0.11426959531164897],[119,-16,68,0.11533695764002062],[119,-16,69,0.11645697776379048],[119,-16,70,0.11764166351297697],[119,-16,71,0.11889990018663892],[119,-16,72,0.12023750943696375],[119,-16,73,0.1216573392044567],[119,-16,74,0.1231593846396746],[119,-16,75,0.12474093979918828],[119,-16,76,0.1263967797580563],[119,-16,77,0.12811937264160875],[119,-16,78,0.12989912094976155],[119,-16,79,0.12851657831419494],[119,-15,64,0.11022206775378557],[119,-15,65,0.11115883016435067],[119,-15,66,0.11211579749684238],[119,-15,67,0.11310028243009078],[119,-15,68,0.11412608377069873],[119,-15,69,0.11520819530394251],[119,-15,70,0.11635865413409681],[119,-15,71,0.11758645277820905],[119,-15,72,0.11889756210068853],[119,-15,73,0.12029498962025009],[119,-15,74,0.1217788731494899],[119,-15,75,0.12334660957286316],[119,-15,76,0.12499301841405729],[119,-15,77,0.12671053969264373],[119,-15,78,0.12848946542692583],[119,-15,79,0.12765539136304133],[119,-14,64,0.10916415957104862],[119,-14,65,0.11004618884668542],[119,-14,66,0.11095372334130435],[119,-14,67,0.11189344688665233],[119,-14,68,0.11287851176649492],[119,-14,69,0.11392364184015669],[119,-14,70,0.11504076309014552],[119,-14,71,0.11623886596984781],[119,-14,72,0.1175239891400057],[119,-14,73,0.11889924302680555],[119,-14,74,0.12036487318701103],[119,-14,75,0.12191836330513812],[119,-14,76,0.1235545774842145],[119,-14,77,0.12526594132947336],[119,-14,78,0.12704266116832133],[119,-14,79,0.12494463237734238],[119,-13,64,0.09327664266742407],[119,-13,65,0.10888854651497656],[119,-13,66,0.10974725714935016],[119,-13,67,0.1106432722411084],[119,-13,68,0.11158894783705521],[119,-13,69,0.11259855782655119],[119,-13,70,0.11368376551449336],[119,-13,71,0.11485343545691733],[119,-13,72,0.1161135761088108],[119,-13,73,0.1174673267296292],[119,-13,74,0.11891498855600788],[119,-13,75,0.12045410008562508],[119,-13,76,0.12207955614492481],[119,-13,77,0.12378377024101853],[119,-13,78,0.12555687952983816],[119,-13,79,0.12281970612763833],[119,-12,64,0.050128197107443234],[119,-12,65,0.06081156061497021],[119,-12,66,0.07266347645144793],[119,-12,67,0.08566377236838985],[119,-12,68,0.09978650659451477],[119,-12,69,0.11122978642211341],[119,-12,70,0.11228476869818174],[119,-12,71,0.11342749807807168],[119,-12,72,0.1146638449328413],[119,-12,73,0.11599689253779347],[119,-12,74,0.1174269350778346],[119,-12,75,0.11895152409556509],[119,-12,76,0.12056556306582425],[119,-12,77,0.12226144959898208],[119,-12,78,0.1240292645959929],[119,-12,79,0.12289384357271106],[119,-11,64,0.022914269276172308],[119,-11,65,0.029244576730788154],[119,-11,66,0.03655344604429955],[119,-11,67,0.04484945102452783],[119,-11,68,0.0541360791721258],[119,-11,69,0.06440914090933608],[119,-11,70,0.07565279390519943],[119,-11,71,0.08784000833007306],[119,-11,72,0.10093320675908164],[119,-11,73,0.11448585055905898],[119,-11,74,0.11589844950156555],[119,-11,75,0.11740813235506802],[119,-11,76,0.11900978555368641],[119,-11,77,0.12069578494633354],[119,-11,78,0.12245616792534833],[119,-11,79,0.12369812446200645],[119,-10,64,0.00803247846079039],[119,-10,65,0.011097215552705979],[119,-10,66,0.01491115985845367],[119,-10,67,0.019506733341009032],[119,-10,68,0.024910873036888218],[119,-10,69,0.031143193053261756],[119,-10,70,0.03821210089975316],[119,-10,71,0.046115264598784005],[119,-10,72,0.054840226466522646],[119,-10,73,0.06436507239918672],[119,-10,74,0.07465916198586248],[119,-10,75,0.08568392449127497],[119,-10,76,0.09739372455019293],[119,-10,77,0.10973679937119676],[119,-10,78,0.12083336329470669],[119,-10,79,0.12264770733973661],[119,-9,64,0.006033275027866973],[119,-9,65,0.006829973383373471],[119,-9,66,0.007615069752872283],[119,-9,67,0.008391723367398355],[119,-9,68,0.009168351794265167],[119,-9,69,0.011714046681058179],[119,-9,70,0.015550039186633944],[119,-9,71,0.020068283198493613],[119,-9,72,0.025277018137629198],[119,-9,73,0.03117487923773007],[119,-9,74,0.03775159673270834],[119,-9,75,0.04498874207292019],[119,-9,76,0.05286052254059916],[119,-9,77,0.06133462555582894],[119,-9,78,0.07037311330515758],[119,-9,79,0.07993336714839497],[119,-8,64,0.0047081022989477785],[119,-8,65,0.005487123737077448],[119,-8,66,0.00626250518715115],[119,-8,67,0.007036562801105542],[119,-8,68,0.007816279093909676],[119,-8,69,0.008612058620269458],[119,-8,70,0.009433224140350369],[119,-8,71,0.010287586681116189],[119,-8,72,0.011181173320554566],[119,-8,73,0.012118017120120525],[119,-8,74,0.015527363405089655],[119,-8,75,0.019778940925421717],[119,-8,76,0.024573364873999515],[119,-8,77,0.029894899306420503],[119,-8,78,0.035721561673743754],[119,-8,79,0.04202600851465847],[119,-7,64,0.003382450754694389],[119,-7,65,0.004144996055042573],[119,-7,66,0.004911801756747131],[119,-7,67,0.005684331702877574],[119,-7,68,0.006468071720900543],[119,-7,69,0.007272025323008539],[119,-7,70,0.008104380474933472],[119,-7,71,0.008972047900135546],[119,-7,72,0.00988035767777356],[119,-7,73,0.0108328200320855],[119,-7,74,0.01183095033702892],[119,-7,75,0.0128741582293661],[119,-7,76,0.013959700591695356],[119,-7,77,0.015082698034917902],[119,-7,78,0.016236214377292304],[119,-7,79,0.019018753170986363],[119,-6,64,0.0020598709729663283],[119,-6,65,0.002807196659691374],[119,-6,66,0.003566488489823024],[119,-6,67,0.0043383538394899755],[119,-6,68,0.00512674435222955],[119,-6,69,0.005939189121090046],[119,-6,70,0.006782665261596296],[119,-6,71,0.0076631100791580056],[119,-6,72,0.008585090735050682],[119,-6,73,0.009551539486347313],[119,-6,74,0.010563554538647645],[119,-6,75,0.011620266415882067],[119,-6,76,0.01271876961622738],[119,-6,77,0.013854119187900115],[119,-6,78,0.015019391723223988],[119,-6,79,0.016205810135790637],[119,-5,64,7.435606569242139E-4],[119,-5,65,0.0014769324546676308],[119,-5,66,0.0022296533085376584],[119,-5,67,0.003001475098921543],[119,-5,68,0.003794803298586961],[119,-5,69,0.004615650119277673],[119,-5,70,0.005469731898612228],[119,-5,71,0.006361961083877513],[119,-5,72,0.007296093709583499],[119,-5,73,0.008274443137954968],[119,-5,74,0.009297660115027095],[119,-5,75,0.01036457905776069],[119,-5,76,0.01147213035000343],[119,-5,77,0.012615318287827094],[119,-5,78,0.013787264177668457],[119,-5,79,0.014979313955618424],[119,-4,64,-5.637651795956638E-4],[119,-4,65,1.568832245257946E-4],[119,-4,66,9.038219783441989E-4],[119,-4,67,0.0016759535868238714],[119,-4,68,0.002474151533916938],[119,-4,69,0.0033029011722573087],[119,-4,70,0.004166635866406576],[119,-4,71,0.00506921493594214],[119,-4,72,0.006013554071777167],[119,-4,73,0.007001321995624231],[119,-4,74,0.008032703427796566],[119,-4,75,0.009106228289954964],[119,-4,76,0.010218666930780725],[119,-4,77,0.01136499102455019],[119,-4,78,0.012538399655096101],[119,-4,79,0.013730409962457222],[119,-3,64,-0.0018599403199021987],[119,-3,65,-0.0011508634384671396],[119,-3,66,-4.0910199250842705E-4],[119,-3,67,3.63408352353559E-4],[119,-3,68,0.0011660492898687863],[119,-3,69,0.002001802338406266],[119,-3,70,0.002873824133847611],[119,-3,71,0.0037849165142642984],[119,-3,72,0.0047371452660481955],[119,-3,73,0.005731524387907953],[119,-3,74,0.006767765949024913],[119,-3,75,0.00784409547917642],[119,-3,76,0.008957132690353234],[119,-3,77,0.010101837192048331],[119,-3,78,0.011271518725891974],[119,-3,79,0.012457911311412386],[119,-2,64,-0.003143348296549778],[119,-2,65,-0.0024448131639115004],[119,-2,66,-0.0017078351332153869],[119,-2,67,-9.351719470925384E-4],[119,-2,68,-1.2886855104247188E-4],[119,-2,69,7.126081171347925E-4],[119,-2,70,0.0015911723905601062],[119,-2,71,0.0025085881602156385],[119,-2,72,0.0034660814670806057],[119,-2,73,0.004464017204029764],[119,-2,74,0.0055016400133188195],[119,-2,75,0.006576879328581552],[119,-2,76,0.007686218373742238],[119,-2,77,0.008824626795933955],[119,-2,78,0.009985556475359078],[119,-2,79,0.011160999923773543],[119,-1,64,-0.004412856702266814],[119,-1,65,-0.003724000334370218],[119,-1,66,-0.0029916480613996228],[119,-1,67,-0.0022193590944853156],[119,-1,68,-0.0014105169935228294],[119,-1,69,-5.649513558705226E-4],[119,-1,70,3.180711652044998E-4],[119,-1,71,0.001239319113725636],[119,-1,72,0.0021992081479478547],[119,-1,73,0.0031974750189827823],[119,-1,74,0.004232913704783578],[119,-1,75,0.005303173659318174],[119,-1,76,0.006404620003404706],[119,-1,77,0.007532255351754443],[119,-1,78,0.008679702840267488],[119,-1,79,0.009839249790288003],[119,0,64,-0.005667683363221468],[119,0,65,-0.004987856649585771],[119,0,66,-0.004260234380883506],[119,0,67,-0.0034891527120827995],[119,0,68,-0.002679226114201579],[119,0,69,-0.0018315339681562095],[119,0,70,-9.464380996936368E-4],[119,0,71,-2.4101285183203108E-5],[119,0,72,9.351292401575008E-4],[119,0,73,0.00193039771153117],[119,0,74,0.002960075301119022],[119,0,75,0.004021555092320261],[119,0,76,0.005111106403205398],[119,0,77,0.0062237881734419995],[119,0,78,0.007353421003316305],[119,0,79,0.008492617311197949],[119,1,64,-0.006907193100445872],[119,1,65,-0.006236011727116348],[119,1,66,-0.005513513646137227],[119,1,67,-0.004744784391764638],[119,1,68,-0.003935546386682256],[119,1,69,-0.0030879937057382138],[119,1,70,-0.002203476600667054],[119,1,71,-0.0012830061934921999],[119,1,72,-3.276286143557536E-4],[119,1,73,6.612571835951735E-4],[119,1,74,0.0016816380364954007],[119,1,75,0.002730681589741713],[119,1,76,0.003804587583014047],[119,1,77,0.004898495136195538],[119,1,78,0.006006445652338912],[119,1,79,0.007121400837601158],[119,2,64,-0.005920641399447096],[119,2,65,-0.007468025333308788],[119,2,66,-0.006751368329995879],[119,2,67,-0.005986458673864078],[119,2,68,-0.005179994307239175],[119,2,69,-0.004335133226083461],[119,2,70,-0.0034540912480199937],[119,2,71,-0.002538629266230944],[119,2,72,-0.0015904139421691094],[119,2,73,-6.11325571592974E-4],[119,2,74,3.9628698326616644E-4],[119,2,75,0.0014294042856034107],[119,2,76,0.0024841871137102852],[119,2,77,0.003555879807337971],[119,2,78,0.004638765816744187],[119,2,79,0.0057261749910116925],[119,3,64,-0.0010026662322328089],[119,3,65,-0.0020550374968816673],[119,3,66,-0.003437041672310622],[119,3,67,-0.005206613240046693],[119,3,68,-0.006412728235534236],[119,3,69,-0.005573391351129034],[119,3,70,-0.0046989589501083015],[119,3,71,-0.003791831761666819],[119,3,72,-0.00285420689721736],[119,3,73,-0.0018883729719899962],[119,3,74,-8.969560368540122E-4],[119,3,75,1.1688367920963455E-4],[119,3,76,0.0011493041064453346],[119,3,77,0.0021956825345146053],[119,3,78,0.003250565353018398],[119,3,79,0.004307665907752099],[119,4,64,-1.7330994275972957E-4],[119,4,65,-4.111230332640263E-4],[119,4,66,-6.921820205453623E-4],[119,4,67,-0.001097372218315929],[119,4,68,-0.001696682070356267],[119,4,69,-0.0025452978705859724],[119,4,70,-0.0036870063540498086],[119,4,71,-0.0050427848868759145],[119,4,72,-0.0041193385028662636],[119,4,73,-0.0031703144782637294],[119,4,74,-0.0021985477164623594],[119,4,75,-0.0012072839659393513],[119,4,76,-2.0032465206516945E-4],[119,4,77,8.178733671453616E-4],[119,4,78,0.001842142831291698],[119,4,79,0.0028665955092402355],[119,5,64,3.072563954416314E-4],[119,5,65,-2.0496749336010783E-4],[119,5,66,-4.4856298128419166E-4],[119,5,67,-5.273352902734109E-4],[119,5,68,-5.335753496906835E-4],[119,5,69,-5.440597750065446E-4],[119,5,70,-6.234647966845124E-4],[119,5,71,-8.255944035282207E-4],[119,5,72,-0.0011944912480488813],[119,5,73,-0.001765502965869222],[119,5,74,-0.0025662993257022336],[119,5,75,-0.0025429287473201297],[119,5,76,-0.0015645614534498015],[119,5,77,-5.773646214533304E-4],[119,5,78,4.138109376378053E-4],[119,5,79,0.0014034944030970747],[119,6,64,0.004180847988319957],[119,6,65,0.0023046685852846803],[119,6,66,0.0010345413869891258],[119,6,67,2.4376406477100414E-4],[119,6,68,-1.8220960034377024E-4],[119,6,69,-3.4170495238092105E-4],[119,6,70,-3.2027634867744936E-4],[119,6,71,-1.9188118271979725E-4],[119,6,72,-1.994048934714716E-5],[119,6,73,1.4163911157171006E-4],[119,6,74,2.474865508513956E-4],[119,6,75,2.5983453097038937E-4],[119,6,76,1.4763851715683047E-4],[119,6,77,-1.1425013555695563E-4],[119,6,78,-5.458539079255482E-4],[119,6,79,-8.152250040709899E-5],[119,7,64,0.015191156071745406],[119,7,65,0.010861654560041702],[119,7,66,0.007500856294363765],[119,7,67,0.004959415869832028],[119,7,68,0.003100657176663806],[119,7,69,0.0018047538788998675],[119,7,70,9.652717234352871E-4],[119,7,71,4.8806069229262824E-4],[119,7,72,2.9024729196583073E-4],[119,7,73,2.9925524104896346E-4],[119,7,74,4.518618687042049E-4],[119,7,75,6.932956178432505E-4],[119,7,76,9.763788798291605E-4],[119,7,77,0.001260719647009774],[119,7,78,0.0015119549513715387],[119,7,79,0.001701048639901361],[119,8,64,0.0370723238396992],[119,8,65,0.029206994241227108],[119,8,66,0.022695287542530737],[119,8,67,0.017366780890635262],[119,8,68,0.013063585629278354],[119,8,69,0.009644863012203055],[119,8,70,0.006983533072604838],[119,8,71,0.004965326681940831],[119,8,72,0.003487886549325022],[119,8,73,0.0024598618282911785],[119,8,74,0.0018000156004806997],[119,8,75,0.0014363582918921318],[119,8,76,0.0013053159875523787],[119,8,77,0.0013509399392234666],[119,8,78,0.0015241618129638941],[119,8,79,0.0017820980595050335],[119,9,64,0.07011506189130193],[119,9,65,0.06103491859409655],[119,9,66,0.05033371044695108],[119,9,67,0.0411954836983928],[119,9,68,0.03344487430186362],[119,9,69,0.02692241571283391],[119,9,70,0.021481867443986735],[119,9,71,0.01698971322695854],[119,9,72,0.013324569018691416],[119,9,73,0.010376486633056644],[119,9,74,0.008046202116908718],[119,9,75,0.0062443630578390185],[119,9,76,0.004890758508808642],[119,9,77,0.0039135678979344965],[119,9,78,0.003248640233103367],[119,9,79,0.0028388114322731523],[119,10,64,0.06784751819194604],[119,10,65,0.06764513142716214],[119,10,66,0.06754897635048299],[119,10,67,0.0675492510538091],[119,10,68,0.06763536247880128],[119,10,69,0.057340268790605796],[119,10,70,0.048180651086959694],[119,10,71,0.04029328505653652],[119,10,72,0.03354014788962657],[119,10,73,0.02779420415532725],[119,10,74,0.022939049746984543],[119,10,75,0.018868416131696826],[119,10,76,0.015485591596242668],[119,10,77,0.01270280005223992],[119,10,78,0.010440566254577904],[119,10,79,0.008627087846322252],[119,11,64,0.0655684187623735],[119,11,65,0.06531634767219653],[119,11,66,0.06516734601791561],[119,11,67,0.06511162324307551],[119,11,68,0.06513858997059804],[119,11,69,0.06524152346137249],[119,11,70,0.06541487331158155],[119,11,71,0.06565391371175781],[119,11,72,0.06595450145927913],[119,11,73,0.05841618348631199],[119,11,74,0.05019821267078443],[119,11,75,0.043039593265294745],[119,11,76,0.03682875391249242],[119,11,77,0.03146295309036127],[119,11,78,0.02684790539568864],[119,11,79,0.02289733670502128],[119,12,64,0.06328347964249703],[119,12,65,0.06298159971811614],[119,12,66,0.06277925870250947],[119,12,67,0.06266689908196796],[119,12,68,0.0626340819608592],[119,12,69,0.06267407327683089],[119,12,70,0.0627813300632513],[119,12,71,0.06295116943604238],[119,12,72,0.06317953657603807],[119,12,73,0.06346279579921486],[119,12,74,0.06379754493794056],[119,12,75,0.06418045318671436],[119,12,76,0.0646081224986826],[119,12,77,0.06388677911856004],[119,12,78,0.056180870385685665],[119,12,79,0.049372260174508624],[119,13,64,0.06099924843435578],[119,13,65,0.06064785151210421],[119,13,66,0.06039213127703392],[119,13,67,0.06022298296675374],[119,13,68,0.060130260205452916],[119,13,69,0.060107258617091625],[119,13,70,0.060148456904655576],[119,13,71,0.06024920877721273],[119,13,72,0.060405525049797404],[119,13,73,0.060613876243218186],[119,13,74,0.06087101590803386],[119,13,75,0.06117382483410001],[119,13,76,0.06151917624651321],[119,13,77,0.061903822030119],[119,13,78,0.062324299968253005],[119,13,79,0.062776861926612],[119,14,64,0.05872422287436531],[119,14,65,0.05832398743150842],[119,14,66,0.05801525582364813],[119,14,67,0.05778957886008009],[119,14,68,0.05763723024395773],[119,14,69,0.05755156333100312],[119,14,70,0.05752707788599475],[119,14,71,0.057559142270497445],[119,14,72,0.05764379487298933],[119,14,73,0.057777563038971885],[119,14,74,0.057957299721262984],[119,14,75,0.058180038015883735],[119,14,76,0.05844286369612602],[119,14,77,0.058742805806222834],[119,14,78,0.05907674532678581],[119,14,79,0.05944134187635712],[119,15,64,0.05647056883750093],[119,15,65,0.05602247025504057],[119,15,66,0.05566136194205762],[119,15,67,0.05537962286674205],[119,15,68,0.05516805339580914],[119,15,69,0.05502008024677325],[119,15,70,0.05493021284291385],[119,15,71,0.05489380353449296],[119,15,72,0.054906874083251844],[119,15,73,0.05496595611543206],[119,15,74,0.055067945754643716],[119,15,75,0.055209972600722086],[119,15,76,0.055389283177090715],[119,15,77,0.05560313892685158],[119,15,78,0.055848728797113],[119,15,79,0.05612309641143042],[119,16,64,0.054252190937967654],[119,16,65,0.053757249328097056],[119,16,66,0.053344315295232834],[119,16,67,0.05300673451860527],[119,16,68,0.052735926768960634],[119,16,69,0.052525412175024364],[119,16,70,0.052369709923351576],[119,16,71,0.05226414291761068],[119,16,72,0.05220469395618007],[119,16,73,0.05218787186151809],[119,16,74,0.05221058776038937],[119,16,75,0.05227004167985427],[119,16,76,0.05236361959083353],[119,16,77,0.05248880099886446],[119,16,78,0.05264307715065691],[119,16,79,0.0528238798946885],[119,17,64,0.052076167361837365],[119,17,65,0.05153538143785896],[119,17,66,0.051071056051501494],[119,17,67,0.050677608675397924],[119,17,68,0.05034715931956825],[119,17,69,0.05007334978969536],[119,17,70,0.049850724244674356],[119,17,71,0.049674582995252715],[119,17,72,0.04954087168602298],[119,17,73,0.049446076020998285],[119,17,74,0.04938712221761556],[119,17,75,0.04936128335196215],[119,17,76,0.04936609173650568],[119,17,77,0.04939925745049267],[119,17,78,0.049458593122767715],[119,17,79,0.049541945046475265],[119,18,64,0.04994222684868317],[119,18,65,0.0493565632872147],[119,18,66,0.0488412119585683],[119,18,67,0.048391734384814436],[119,18,68,0.04800101899051497],[119,18,69,0.04766286459081852],[119,18,70,0.04737186806589346],[119,18,71,0.047123330415874645],[119,18,72,0.04691318108639501],[119,18,73,0.046737903135921244],[119,18,74,0.04659445941450722],[119,18,75,0.046480219914483076],[119,18,76,0.04639289044442534],[119,18,77,0.04633044276842218],[119,18,78,0.04629104634346509],[119,18,79,0.04627300177814731],[119,19,64,0.04777672600723172],[119,19,65,0.04721425759770561],[119,19,66,0.04664821165711784],[119,19,67,0.0461424867423663],[119,19,68,0.04569079458093233],[119,19,69,0.045287132106636395],[119,19,70,0.04492618673735756],[119,19,71,0.044603296333349245],[119,19,72,0.04431440976982499],[119,19,73,0.04405604345615401],[119,19,74,0.043825233955770246],[119,19,75,0.043619486865258024],[119,19,76,0.0434367221147275],[119,19,77,0.043275215854477266],[119,19,78,0.04313353909536183],[119,19,79,0.043010493271605235],[119,20,64,0.04404618003365934],[119,20,65,0.043634830383796265],[119,20,66,0.04324469410219587],[119,20,67,0.04287886497456028],[119,20,68,0.04254324620976627],[119,20,69,0.04224354791927492],[119,20,70,0.041984394737201586],[119,20,71,0.04176933749960948],[119,20,72,0.04160088164523421],[119,20,73,0.04138931031215831],[119,20,74,0.04106850045443411],[119,20,75,0.040768452106620987],[119,20,76,0.0404873476974567],[119,20,77,0.04022381620123178],[119,20,78,0.03997687832009085],[119,20,79,0.039745883701033685],[119,21,64,0.040221729997950914],[119,21,65,0.039745429978577676],[119,21,66,0.03929717972292354],[119,21,67,0.03887896135614834],[119,21,68,0.03849586418703438],[119,21,69,0.03815339613232886],[119,21,70,0.03785609570253708],[119,21,71,0.03760748955246597],[119,21,72,0.03741008420940111],[119,21,73,0.037265371448508354],[119,21,74,0.03717384720040456],[119,21,75,0.03713504384056473],[119,21,76,0.037147575676648656],[119,21,77,0.03716432099434698],[119,21,78,0.03680995412524095],[119,21,79,0.0364689579869136],[119,22,64,0.036324230250316045],[119,22,65,0.0357815567697348],[119,22,66,0.035274077261576345],[119,22,67,0.03480270688294177],[119,22,68,0.03437170764054727],[119,22,69,0.033986335314608214],[119,22,70,0.03365098823053269],[119,22,71,0.033369112756236795],[119,22,72,0.03314315967407612],[119,22,73,0.032974559106885716],[119,22,74,0.03286371389473411],[119,22,75,0.032810011271284724],[119,22,76,0.03281185264282919],[119,22,77,0.032866701229635725],[119,22,78,0.032971147289087975],[119,22,79,0.03312099060302875],[119,23,64,0.032376443406501414],[119,23,65,0.03176608157214994],[119,23,66,0.03119824033243878],[119,23,67,0.030672837246413415],[119,23,68,0.030193307923544122],[119,23,69,0.029764606245954794],[119,23,70,0.029390935026864896],[119,23,71,0.029075602563215164],[119,23,72,0.028820945600062226],[119,23,73,0.028628275558864946],[119,23,74,0.028497847937029766],[119,23,75,0.02842885472636994],[119,23,76,0.028419439640593475],[119,23,77,0.028466735887169945],[119,23,78,0.028566926167861963],[119,23,79,0.028715324544756823],[119,24,64,0.0284020987831727],[119,24,65,0.027722859356140724],[119,24,66,0.02709351304336088],[119,24,67,0.026513071265385525],[119,24,68,0.02598415819509716],[119,24,69,0.02551137773405255],[119,24,70,0.02509868245438015],[119,24,71,0.024749185232684063],[119,24,72,0.024465051307164674],[119,24,73,0.024247418023196275],[119,24,74,0.0240963421844687],[119,24,75,0.024010774855786458],[119,24,76,0.023988563395165214],[119,24,77,0.024026480427616688],[119,24,78,0.02412027941192422],[119,24,79,0.02426477639473901],[119,25,64,0.02442499619228752],[119,25,65,0.023675831552066793],[119,25,66,0.022983837043543728],[119,25,67,0.022347228616346745],[119,25,68,0.02176784752940768],[119,25,69,0.021249902731555304],[119,25,70,0.020797044129643772],[119,25,71,0.020412134125134172],[119,25,72,0.02009711173721973],[119,25,73,0.019852888473233826],[119,25,74,0.019679275872101786],[119,25,75,0.01957494456523879],[119,25,76,0.019537414620963145],[119,25,77,0.019563076863835904],[119,25,78,0.019647244790310853],[119,25,79,0.019784236636638634],[119,26,64,0.020468156798936078],[119,26,65,0.019648174460516355],[119,26,66,0.01889240322438481],[119,26,67,0.018198390283634458],[119,26,68,0.017567235310118844],[119,26,69,0.01700271176269806],[119,26,70,0.016508118299425358],[119,26,71,0.01608601570336966],[119,26,72,0.015738066438944192],[119,26,73,0.015464909577478772],[119,26,74,0.01526607102536279],[119,26,75,0.015139908897555473],[119,26,76,0.015083593792283316],[119,26,77,0.015093123639930747],[119,26,78,0.015163372721413526],[119,26,79,0.015288174378618869],[119,27,64,0.01655302289105376],[119,27,65,0.015661495598320665],[119,27,66,0.014840849864213348],[119,27,67,0.014088103461123332],[119,27,68,0.013403667562715956],[119,27,69,0.012790845213866956],[119,27,70,0.012252540433020027],[119,27,71,0.011790966538596057],[119,27,72,0.01140746481705097],[119,27,73,0.011102361685363604],[119,27,74,0.010874864287792076],[119,27,75,0.010722994368399718],[119,27,76,0.010643560166616228],[119,27,77,0.01063216599351712],[119,27,78,0.010683259062460888],[119,27,79,0.010790213069056297],[119,28,64,0.012698708471009647],[119,28,65,0.011735079874416517],[119,28,66,0.01084850907341218],[119,28,67,0.010035632704015985],[119,28,68,0.009296236945610867],[119,28,69,0.008633126110055568],[119,28,70,0.00804877253314148],[119,28,71,0.007545002685336865],[119,28,72,0.007122798852349253],[119,28,73,0.006782141891628139],[119,28,74,0.0065218950101812835],[119,28,75,0.006339728404427248],[119,28,76,0.006232084502799327],[119,28,77,0.0061941834569370045],[119,28,78,0.0062200684383482705],[119,28,79,0.006302690214160153],[119,29,64,0.008921302565832649],[119,29,65,0.007885187476794066],[119,29,66,0.006931703384955184],[119,29,67,0.006057259119653666],[119,29,68,0.005261088112906271],[119,29,69,0.004545474993926254],[119,29,70,0.003912430665623536],[119,29,71,0.0033633627895554327],[119,29,72,0.002898864503367325],[119,29,73,0.0025185462199168395],[119,29,74,0.002220910458112499],[119,29,75,0.002003269546107362],[119,29,76,0.0018617059332516471],[119,29,77,0.0017910747485230735],[119,29,78,0.0017850481507260321],[119,29,79,0.0018362009292527664],[119,30,64,0.005233232056354745],[119,30,65,0.004124410460220894],[119,30,66,0.00310309964905043],[119,30,67,0.0021656349047771144],[119,30,68,0.0013107758843680646],[119,30,69,5.402744496219269E-4],[119,30,70,-1.4434166492512243E-4],[119,30,71,-7.421073790106396E-4],[119,30,72,-0.0012528404757311303],[119,30,73,-0.0016773173144755938],[119,30,74,-0.002017404093769499],[119,30,75,-0.0022761438226226974],[119,30,76,-0.0024577992659075842],[119,30,77,-0.0025678522303201256],[119,30,78,-0.0026129596519762982],[119,30,79,-0.002600867035106849],[119,31,64,0.0019452816778927835],[119,31,65,7.044491351079909E-4],[119,31,66,-4.8736759463513025E-4],[119,31,67,-0.00162932412963697],[119,31,68,-0.002544788890946196],[119,31,69,-0.0033726301791120483],[119,31,70,-0.004111816726026689],[119,31,71,-0.004761841091334963],[119,31,72,-0.005322944876524193],[119,31,73,-0.005796298616820174],[119,31,74,-0.006184136393634113],[119,31,75,-0.006489845324422598],[119,31,76,-0.0067180101949759164],[119,31,77,-0.006874413601124768],[119,31,78,-0.006965992062118051],[119,31,79,-0.007000748656999721],[119,32,64,-6.989606012597473E-4],[119,32,65,-0.001958709353939411],[119,32,66,-0.0031646776050104656],[119,32,67,-0.004319732666738572],[119,32,68,-0.005425109970188628],[119,32,69,-0.00647923772200555],[119,32,70,-0.007480510485457186],[119,32,71,-0.008427636119694588],[119,32,72,-0.009302242447652286],[119,32,73,-0.009829175024896625],[119,32,74,-0.010270048172999226],[119,32,75,-0.010628573422821568],[119,32,76,-0.010909626533227135],[119,32,77,-0.011119247645642654],[119,32,78,-0.011264597134064433],[119,32,79,-0.011353867697702651],[119,33,64,-0.0031816162067413393],[119,33,65,-0.004458010691115915],[119,33,66,-0.00567672012507962],[119,33,67,-0.006840279460778686],[119,33,68,-0.007950174610409588],[119,33,69,-0.009005395794519751],[119,33,70,-0.01000487993975432],[119,33,71,-0.010947848142196077],[119,33,72,-0.011834038919072996],[119,33,73,-0.012663896004627365],[119,33,74,-0.013438710719957083],[119,33,75,-0.014160719064308581],[119,33,76,-0.014833153786721],[119,33,77,-0.015296131809953886],[119,33,78,-0.015502240653763313],[119,33,79,-0.015653330103637328],[119,34,64,-0.005505300392320909],[119,34,65,-0.0067959279734990065],[119,34,66,-0.008025822682719277],[119,34,67,-0.009197076466993376],[119,34,68,-0.010311350223174831],[119,34,69,-0.011368182246680843],[119,34,70,-0.012367041697394667],[119,34,71,-0.01330765208609763],[119,34,72,-0.014190219432362355],[119,34,73,-0.015015615678237892],[119,34,74,-0.01578551738329386],[119,34,75,-0.01650249984194814],[119,34,76,-0.01717008687316295],[119,34,77,-0.017792756635061198],[119,34,78,-0.018375903912440844],[119,34,79,-0.018925759413293025],[119,35,64,-0.007678332684467704],[119,35,65,-0.008980690636462847],[119,35,66,-0.010220094234389764],[119,35,67,-0.011398104167059064],[119,35,68,-0.012516490294540474],[119,35,69,-0.01357532042771402],[119,35,70,-0.014574578186309108],[119,35,71,-0.015514469205758793],[119,35,72,-0.016395642450450772],[119,35,73,-0.017219367853766987],[119,35,74,-0.01798767030535193],[119,35,75,-0.01870342011823457],[119,35,76,-0.01937038021455563],[119,35,77,-0.01999321036828605],[119,35,78,-0.020577428936154725],[119,35,79,-0.021129332593800572],[119,36,64,-0.009715008068604437],[119,36,65,-0.011026568748744905],[119,36,66,-0.012273722783158473],[119,36,67,-0.013457438767235196],[119,36,68,-0.014579543537325872],[119,36,69,-0.015640613284513664],[119,36,70,-0.016641121580342803],[119,36,71,-0.017581726522023756],[119,36,72,-0.018463484561452463],[119,36,73,-0.01928802196987879],[119,36,74,-0.02005766395196071],[119,36,75,-0.020775521531462348],[119,36,76,-0.02144553643352294],[119,36,77,-0.02127492517025839],[119,36,78,-0.01965448776386453],[119,36,79,-0.018050575181850742],[119,37,64,-0.01163580354133266],[119,37,65,-0.012954093949095238],[119,37,66,-0.014207211588831209],[119,37,67,-0.01539550465994154],[119,37,68,-0.016520824088500592],[119,37,69,-0.017584233361981814],[119,37,70,-0.01858666598848339],[119,37,71,-0.019529193672521608],[119,37,72,-0.020413233427616594],[119,37,73,-0.021240713720723538],[119,37,74,-0.021659238867326992],[119,37,75,-0.019984066802518026],[119,37,76,-0.01830790050077686],[119,37,77,-0.016636777645554362],[119,37,78,-0.014977354198704572],[119,37,79,-0.013336831323428411],[119,38,64,-0.01346676781331087],[119,38,65,-0.014789445754028279],[119,38,66,-0.016046766626485225],[119,38,67,-0.017238465763454797],[119,38,68,-0.018366409385268498],[119,38,69,-0.019432131148216177],[119,38,70,-0.020436991306419516],[119,38,71,-0.02138242819318305],[119,38,72,-0.020525839789961094],[119,38,73,-0.01882238458860642],[119,38,74,-0.017109730116606766],[119,38,75,-0.015392801763059193],[119,38,76,-0.013677105244115225],[119,38,77,-0.011968734879404794],[119,38,78,-0.010274343057086112],[119,38,79,-0.00860107132358572],[119,39,64,-0.015223220951034228],[119,39,65,-0.016547761597260912],[119,39,66,-0.01780728025753246],[119,39,67,-0.019000907339158796],[119,39,68,-0.020130531324811622],[119,39,69,-0.021189699229858038],[119,39,70,-0.01949094342139015],[119,39,71,-0.017772449740181495],[119,39,72,-0.01603816779061112],[119,39,73,-0.014292292218670786],[119,39,74,-0.012539390072763702],[119,39,75,-0.010784489722875568],[119,39,76,-0.009033131467841056],[119,39,77,-0.00729138005892845],[119,39,78,-0.0055657994627739595],[119,39,79,-0.0038633902758737904],[119,40,64,-0.016907891943604852],[119,40,65,-0.018231287641747907],[119,40,66,-0.019490489700356946],[119,40,67,-0.020231502062630313],[119,40,68,-0.01853551096414161],[119,40,69,-0.016812957974212683],[119,40,70,-0.015068314615806617],[119,40,71,-0.013305832752178228],[119,40,72,-0.011529750774944055],[119,40,73,-0.009744462407500366],[119,40,74,-0.007954648028435204],[119,40,75,-0.006165368521713764],[119,40,76,-0.00438212176046524],[119,40,77,-0.0026108619281685567],[119,40,78,-8.579819742805437E-4],[119,40,79,8.697404110900136E-4],[119,41,64,-0.018524895016245175],[119,41,65,-0.019324242744490096],[119,41,66,-0.01764588565500294],[119,41,67,-0.015932372264387058],[119,41,68,-0.014188248490021442],[119,41,69,-0.012419041836218846],[119,41,70,-0.010629725276862437],[119,41,71,-0.008824935264912074],[119,41,72,-0.007009182829461352],[119,41,73,-0.005187028198848283],[119,41,74,-0.0033632188292776],[119,41,75,-0.0015427908191887948],[119,41,76,2.688662116254285E-4],[119,41,77,0.0020659806034347907],[119,41,78,0.00384240623182133],[119,41,79,0.005591665823760891],[119,42,64,-0.016813696759377383],[119,42,65,-0.015118848896131333],[119,42,66,-0.013390072198142129],[119,42,67,-0.011627215261011709],[119,42,68,-0.009834933427543446],[119,42,69,-0.008019423910409182],[119,42,70,-0.006186200334660694],[119,42,71,-0.0043403015622904915],[119,42,72,-0.002486510202775247],[119,42,73,-6.295354942178451E-4],[119,42,74,0.0012258395957402922],[119,42,75,0.003074647100480296],[119,42,76,0.004911658570003609],[119,42,77,0.00673134523045785],[119,42,78,0.008527873555498012],[119,42,79,0.01029513593204086],[119,43,64,-0.012668993724526774],[119,43,65,-0.010920983353395065],[119,43,66,-0.009141074143089716],[119,43,67,-0.007328380747560022],[119,43,68,-0.005487686960695333],[119,43,69,-0.003625927602141207],[119,43,70,-0.0017492050890123784],[119,43,71,1.3701052652722706E-4],[119,43,72,0.0020276536682018744],[119,43,73,0.0039178701634411455],[119,43,74,0.005802859173736975],[119,43,75,0.007677750214709023],[119,43,76,0.009537515256326208],[119,43,77,0.011376915799935041],[119,43,78,0.013190484738560859],[119,43,79,0.014972542722299444],[119,44,64,-0.008543921825638333],[119,44,65,-0.006741906498774616],[119,44,66,-0.004910212105363183],[119,44,67,-0.0030471747317794445],[119,44,68,-0.0011577297316529465],[119,44,69,7.50380996760317E-4],[119,44,70,0.0026704132313374778],[119,44,71,0.004596429273599295],[119,44,72,0.0065230593232350675],[119,44,73,0.008445296851717495],[119,44,74,0.010358328199323051],[119,44,75,0.012257396522446184],[119,44,76,0.014137700122266375],[119,44,77,0.01599432509280839],[119,44,78,0.017822212136912787],[119,44,79,0.019616157314519083],[119,45,64,-0.004446837786336683],[119,45,65,-0.002590267110210416],[119,45,66,-7.063488213772773E-4],[119,45,67,0.0012073892051034038],[119,45,68,0.0031458319174233564],[119,45,69,0.005100362855105268],[119,45,70,0.007063541373836936],[119,45,71,0.009028920902710368],[119,45,72,0.010990798866700183],[119,45,73,0.012943999742951408],[119,45,74,0.014883691516865813],[119,45,75,0.01680523570765509],[119,45,76,0.018704071038103304],[119,45,77,0.02057563073101471],[119,45,78,0.022415293325916994],[119,45,79,0.024218366825926662],[119,46,64,-3.81955369903983E-4],[119,46,65,0.001529267277627763],[119,46,66,0.0034654589645745516],[119,46,67,0.005429908335077344],[119,46,68,0.0074172861011567925],[119,46,69,0.00941803812443604],[119,46,70,0.011423973641191102],[119,46,71,0.013428093806117408],[119,46,72,0.01542433009000752],[119,46,73,0.017407314849471407],[119,46,74,0.019372184378575193],[119,46,75,0.02131441465719577],[119,46,76,0.02322968991696444],[119,46,77,0.025113804054233524],[119,46,78,0.026962594831260074],[119,46,79,0.028690619775431053],[119,47,64,0.0036466932855317227],[119,47,65,0.00561215913598383],[119,47,66,0.007600228053620786],[119,47,67,0.009614989446192474],[119,47,68,0.011650859442657303],[119,47,69,0.013697290470905434],[119,47,70,0.015745291743053225],[119,47,71,0.01778726922293056],[119,47,72,0.019816753037765002],[119,47,73,0.021828155959144245],[119,47,74,0.0238165633084087],[119,47,75,0.02577755454800814],[119,47,76,0.02770705672761312],[119,47,77,0.02960122986331113],[119,47,78,0.031106916300087387],[119,47,79,0.03251861017859007],[119,48,64,0.007618775229546777],[119,48,65,0.009637926193662294],[119,48,66,0.01167743367672314],[119,48,67,0.01374215624916815],[119,48,68,0.015826217714337325],[119,48,69,0.017918036560551222],[119,48,70,0.020007781651726075],[119,48,71,0.022087224881619058],[119,48,72,0.02414945869522344],[119,48,73,0.026188643438663443],[119,48,74,0.028199784938239696],[119,48,75,0.030065028750357214],[119,48,76,0.0316746610705373],[119,48,77,0.03324805477069502],[119,48,78,0.03478701722646213],[119,48,79,0.0362933091201944],[119,49,64,0.011511941247746786],[119,49,65,0.013584132791786087],[119,49,66,0.01567466004428136],[119,49,67,0.01778910498699444],[119,49,68,0.019921266437350756],[119,49,69,0.022058506618640516],[119,49,70,0.024190126097134],[119,49,71,0.02630723039735571],[119,49,72,0.02815520043259391],[119,49,73,0.029953352425242264],[119,49,74,0.03171376617213203],[119,49,75,0.03343873252829498],[119,49,76,0.03513003867617325],[119,49,77,0.03678911553880919],[119,49,78,0.03841715515671798],[119,49,79,0.04001519802229955],[119,50,64,0.014629482155297888],[119,50,65,0.016937696718521567],[119,50,66,0.019179749867497767],[119,50,67,0.02134636632442946],[119,50,68,0.02344116143897453],[119,50,69,0.02547499172407594],[119,50,70,0.02745670052832325],[119,50,71,0.029393241405478755],[119,50,72,0.03128998012509067],[119,50,73,0.03315096934677034],[119,50,74,0.034979195485512864],[119,50,75,0.03677679738643686],[119,50,76,0.03854525651456525],[119,50,77,0.04028555844920043],[119,50,78,0.04199832555257274],[119,50,79,0.043683920759100076],[119,51,64,0.08687731514608749],[119,51,65,0.09848603327917588],[119,51,66,0.10975209712873754],[119,51,67,0.12062594839554762],[119,51,68,0.026372233711424033],[119,51,69,0.028447017499612443],[119,51,70,0.0304731681554174],[119,51,71,0.03245823436182433],[119,51,72,0.17040858996745661],[119,51,73,0.17971358073695232],[119,51,74,0.18885137365017016],[119,51,75,0.1978315553319834],[119,51,76,0.20665981928125576],[119,51,77,0.21533885391409188],[119,51,78,0.04553047325504188],[119,51,79,0.04729825429468383],[119,52,64,0.10078783423018878],[119,52,65,0.11251545263067055],[119,52,66,0.12390492430641147],[119,52,67,0.13490426841427827],[119,52,68,0.145534601545359],[119,52,69,0.15585870875777272],[119,52,70,0.1659275078553845],[119,52,71,0.17578058316807862],[119,52,72,0.185447793409384],[119,52,73,0.19495075673700346],[119,52,74,0.20430420758878468],[119,52,75,0.2135172214152154],[119,52,76,0.22259430463802063],[119,52,77,0.23153634820533273],[119,52,78,0.24034144407927055],[119,52,79,0.2490055649271517],[119,53,64,0.11475461434092274],[119,53,65,0.1265835106960167],[119,53,66,0.13807624021336165],[119,53,67,0.1491789335258316],[119,53,68,0.15991448239988135],[119,53,69,0.17034986138293204],[119,53,70,0.18053943793927527],[119,53,71,0.190525450076807],[119,53,72,0.20033963463556584],[119,53,73,0.21000473923157822],[119,53,74,0.21953591285964918],[119,53,75,0.22894197149495873],[119,53,76,0.2382265360331963],[119,53,77,0.24738904076275842],[119,53,78,0.25642561137384107],[119,53,79,0.26532981232993624],[119,54,64,0.12876441744618425],[119,54,65,0.14067741944272527],[119,54,66,0.15225366830716078],[119,54,67,0.16343797714638203],[119,54,68,0.17425504496148],[119,54,69,0.184775686852896],[119,54,70,0.19505749262319536],[119,54,71,0.2051452479548521],[119,54,72,0.21507257081044995],[119,54,73,0.224863437755518],[119,54,74,0.23453359580752672],[119,54,75,0.24409185651892035],[119,54,76,0.2535412697712449],[119,54,77,0.26288017539778347],[119,54,78,0.27210313137825803],[119,54,79,0.2812017180200255],[119,55,64,0.14279075086657658],[119,55,65,0.1547712945522916],[119,55,66,0.16641198666271143],[119,55,67,0.17765691223590788],[119,55,68,0.18853258146093033],[119,55,69,0.19911324393711877],[119,55,70,0.20945943529810204],[119,55,71,0.21961834264082447],[119,55,72,0.22962543679067443],[119,55,73,0.23428543707022786],[119,55,74,0.22571250226885134],[119,55,75,0.22253360317585585],[119,55,76,0.2278118251200626],[119,55,77,0.24100437404866362],[119,55,78,0.26259666782276575],[119,55,79,0.2861341929842781],[119,56,64,0.15679500632542331],[119,56,65,0.16285591324285417],[119,56,66,0.1751094865073352],[119,56,67,0.19099654455459722],[119,56,68,0.20204258348258106],[119,56,69,0.2056786263215041],[119,56,70,0.20387352716986662],[119,56,71,0.19966029463368687],[119,56,72,0.19089155364124452],[119,56,73,0.17902761434913123],[119,56,74,0.17026589197493847],[119,56,75,0.167669885835522],[119,56,76,0.17273144895036113],[119,56,77,0.1856234130720744],[119,56,78,0.2081396487797053],[119,56,79,0.23288557025221038],[119,57,64,0.09798691428728601],[119,57,65,0.1014927319481656],[119,57,66,0.11384294649244768],[119,57,67,0.12933238064896269],[119,57,68,0.1400059203760384],[119,57,69,0.14323323064264606],[119,57,70,0.14168878391899647],[119,57,71,0.13715438460359183],[119,57,72,0.12750102801684438],[119,57,73,0.11503529303290462],[119,57,74,0.10581162984212206],[119,57,75,0.10301723686384749],[119,57,76,0.1071245206835034],[119,57,77,0.12108395396255694],[119,57,78,0.1447564742859343],[119,57,79,0.17003427649118316],[119,58,64,0.05078588043639497],[119,58,65,0.05404050426714699],[119,58,66,0.06515452782861328],[119,58,67,0.08041986857727261],[119,58,68,0.09103340148224653],[119,58,69,0.09478414700394362],[119,58,70,0.09281630901923503],[119,58,71,0.08765541320284823],[119,58,72,0.07838943523398795],[119,58,73,0.06526720913992375],[119,58,74,0.05563950479319712],[119,58,75,0.05294309067799556],[119,58,76,0.056548657853183255],[119,58,77,0.0710367065703065],[119,58,78,0.09419068238280758],[119,58,79,0.11995923278023797],[119,59,64,0.01515438217293605],[119,59,65,0.014332125345402397],[119,59,66,0.014662373751926673],[119,59,67,0.01785043608060653],[119,59,68,0.029292181214353286],[119,59,69,0.032820689463703104],[119,59,70,0.03095369301528718],[119,59,71,0.026253680046304666],[119,59,72,0.01740273811561043],[119,59,73,0.010598396618639271],[119,59,74,0.009056815694430275],[119,59,75,0.009820562846505378],[119,59,76,0.01104896486950672],[119,59,77,0.014742270391073956],[119,59,78,0.03180372818174391],[119,59,79,0.057655392517885685],[119,60,64,-0.002341765000438913],[119,60,65,-0.0035965200057494527],[119,60,66,-0.0034798423201675963],[119,60,67,-0.0017237109096409913],[119,60,68,4.433144676086368E-4],[119,60,69,6.77586196392407E-5],[119,60,70,-2.538778105889884E-4],[119,60,71,-0.0011613256396902358],[119,60,72,-0.0040097809768748025],[119,60,73,-0.0073214432478955985],[119,60,74,-0.009161430097623442],[119,60,75,-0.008166993057955148],[119,60,76,-0.0064634964670021175],[119,60,77,-0.0025486416876591643],[119,60,78,0.0026230127463545308],[119,60,79,0.009033393547002035],[119,61,64,-0.012400379407967985],[119,61,65,-0.015382640303036335],[119,61,66,-0.01594109280474786],[119,61,67,-0.015123979241001595],[119,61,68,-0.01432516652780495],[119,61,69,-0.014784788574351587],[119,61,70,-0.01573470479362091],[119,61,71,-0.016704396820283508],[119,61,72,-0.019992031832458308],[119,61,73,-0.02325027295573006],[119,61,74,-0.02450397103074462],[119,61,75,-0.023306918378768384],[119,61,76,-0.020961493672108134],[119,61,77,-0.01669357358705722],[119,61,78,-0.011712226798448093],[119,61,79,-0.004297600197891825],[119,62,64,-0.028000764242238168],[119,62,65,-0.03148397641955075],[119,62,66,-0.031825642070166756],[119,62,67,-0.030296395049401497],[119,62,68,-0.0299682523994303],[119,62,69,-0.03000485148732322],[119,62,70,-0.0315697784410268],[119,62,71,-0.03196825004915559],[119,62,72,-0.03612237786154953],[119,62,73,-0.03833452252521145],[119,62,74,-0.040082770751589634],[119,62,75,-0.03940004205411905],[119,62,76,-0.036508423401278314],[119,62,77,-0.03173993524221635],[119,62,78,-0.027124675488724815],[119,62,79,-0.019414470519803682],[119,63,64,-0.06692102942898334],[119,63,65,-0.06977972784418054],[119,63,66,-0.07071045810275751],[119,63,67,-0.0690382419617704],[119,63,68,-0.06726499813451778],[119,63,69,-0.0671375895090018],[119,63,70,-0.0687984125725911],[119,63,71,-0.06947810292624498],[119,63,72,-0.07306353272453898],[119,63,73,-0.07568493601106593],[119,63,74,-0.0767326782903349],[119,63,75,-0.07576524596358283],[119,63,76,-0.07288106387819919],[119,63,77,-0.06822601353496874],[119,63,78,-0.06320428846981506],[119,63,79,-0.05547586736306457],[119,64,64,-0.07901202057445972],[119,64,65,-0.08194848954197201],[119,64,66,-0.08329636265529904],[119,64,67,-0.0817343470998678],[119,64,68,-0.0790552195052381],[119,64,69,-0.07857673381179914],[119,64,70,-0.08117897304133967],[119,64,71,-0.08240437498943623],[119,64,72,-0.08528502161008131],[119,64,73,-0.08835358003981826],[119,64,74,-0.0888937913944873],[119,64,75,-0.0879234398312746],[119,64,76,-0.08567107413895346],[119,64,77,-0.08103668515893075],[119,64,78,-0.07585708149589333],[119,64,79,-0.06831377517855966],[119,65,64,-0.09423852335878374],[119,65,65,-0.09732388213814425],[119,65,66,-0.09901467776719342],[119,65,67,-0.09729465381135302],[119,65,68,-0.09496048908384047],[119,65,69,-0.09361122409583908],[119,65,70,-0.09615018218216408],[119,65,71,-0.09810098921775758],[119,65,72,-0.1011700172445094],[119,65,73,-0.10367050965007546],[119,65,74,-0.10566285023817244],[119,65,75,-0.10398608026094086],[119,65,76,-0.10201435782574714],[119,65,77,-0.097234728071492],[119,65,78,-0.09190592179860903],[119,65,79,-0.08324275231128457],[119,66,64,-0.11158851793244563],[119,66,65,-0.11414532952469525],[119,66,66,-0.11626731545515294],[119,66,67,-0.11515304557218797],[119,66,68,-0.11245263527241836],[119,66,69,-0.11136841510573865],[119,66,70,-0.11301703567619914],[119,66,71,-0.11522545539726535],[119,66,72,-0.1187456789161837],[119,66,73,-0.12171923263661646],[119,66,74,-0.12367051252766086],[119,66,75,-0.12228018454959051],[119,66,76,-0.11965646000612955],[119,66,77,-0.11541604025187908],[119,66,78,-0.1088797021783723],[119,66,79,-0.10034987158403244],[119,67,64,-0.12709394287680506],[119,67,65,-0.1295847787682532],[119,67,66,-0.13136452363145604],[119,67,67,-0.13028931471876073],[119,67,68,-0.12883971878120726],[119,67,69,-0.12740195469178334],[119,67,70,-0.12861752006265972],[119,67,71,-0.12956611008992402],[119,67,72,-0.1341175392582186],[119,67,73,-0.13843062258140443],[119,67,74,-0.1392634274544202],[119,67,75,-0.1384330278277674],[119,67,76,-0.13572636012306896],[119,67,77,-0.1312132891508957],[119,67,78,-0.12471699772205286],[119,67,79,-0.11632341839601215],[119,68,64,-0.17227167429807527],[119,68,65,-0.17333320217687387],[119,68,66,-0.17487591768705138],[119,68,67,-0.17429572914465996],[119,68,68,-0.17269004586446582],[119,68,69,-0.1718535394705497],[119,68,70,-0.1728761581404442],[119,68,71,-0.1732283449763435],[119,68,72,-0.17741086013082447],[119,68,73,-0.18179284051705066],[119,68,74,-0.18323583396056276],[119,68,75,-0.18249957289590496],[119,68,76,-0.17934984216613603],[119,68,77,-0.17452473297942045],[119,68,78,-0.1679770270160522],[119,68,79,-0.16073843037700053],[119,69,64,-0.19079010049422832],[119,69,65,-0.1904189584180439],[119,69,66,-0.1898457921538839],[119,69,67,-0.1869164934032363],[119,69,68,-0.183309736650317],[119,69,69,-0.18141695617383666],[119,69,70,-0.18145224297152757],[119,69,71,-0.18288536644157857],[119,69,72,-0.18734944914432436],[119,69,73,-0.19310175835632606],[119,69,74,-0.19463892054288198],[119,69,75,-0.19414309122574774],[119,69,76,-0.19183949965420624],[119,69,77,-0.18626925758590607],[119,69,78,-0.17957588126682317],[119,69,79,-0.17154276175273298],[119,70,64,-0.20624757546656705],[119,70,65,-0.20640180881163483],[119,70,66,-0.20450950397551998],[119,70,67,-0.20166604034066102],[119,70,68,-0.19761962504834957],[119,70,69,-0.19610569576473277],[119,70,70,-0.19668163162175603],[119,70,71,-0.19810081898030174],[119,70,72,-0.20245468012238402],[119,70,73,-0.2078148953953921],[119,70,74,-0.20978755730422563],[119,70,75,-0.20937190667814426],[119,70,76,-0.20808418161941808],[119,70,77,-0.20173391044996536],[119,70,78,-0.19427681673445657],[119,70,79,-0.18689000241911075],[119,71,64,-0.2192713251106369],[119,71,65,-0.219477116674738],[119,71,66,-0.21701485992821823],[119,71,67,-0.21385840351274124],[119,71,68,-0.2099576535127366],[119,71,69,-0.20769291177709776],[119,71,70,-0.2083995308653472],[119,71,71,-0.20973708187034562],[119,71,72,-0.21410627841596014],[119,71,73,-0.2195928330057007],[119,71,74,-0.2217657983224265],[119,71,75,-0.22219758459028024],[119,71,76,-0.2212586546188431],[119,71,77,-0.21562806339272048],[119,71,78,-0.20773632642414736],[119,71,79,-0.19968516027202377],[119,72,64,-0.23440209755686095],[119,72,65,-0.23548759926850157],[119,72,66,-0.23245931274907045],[119,72,67,-0.22891802650523416],[119,72,68,-0.22581615497038948],[119,72,69,-0.22264163771422502],[119,72,70,-0.22282760207026275],[119,72,71,-0.22423387337507647],[119,72,72,-0.22851699955458202],[119,72,73,-0.23402638240349535],[119,72,74,-0.23625277462332728],[119,72,75,-0.23769823186028083],[119,72,76,-0.2371394401737233],[119,72,77,-0.23217299925956472],[119,72,78,-0.22404809706706186],[119,72,79,-0.21592654076146076],[119,73,64,-0.25307727287810267],[119,73,65,-0.2539930346641922],[119,73,66,-0.2508471446572374],[119,73,67,-0.24617452212320523],[119,73,68,-0.24337945228412783],[119,73,69,-0.2409954136856875],[119,73,70,-0.2397491626702873],[119,73,71,-0.24057242578628055],[119,73,72,-0.2427098164011107],[119,73,73,-0.24691379984355866],[119,73,74,-0.24939844073229114],[119,73,75,-0.2509996471895636],[119,73,76,-0.2503929594836617],[119,73,77,-0.24723830030629348],[119,73,78,-0.2424432663904532],[119,73,79,-0.23556224848150525],[119,74,64,-0.27012165214910544],[119,74,65,-0.2709825121997924],[119,74,66,-0.26800650198246123],[119,74,67,-0.26374478962084036],[119,74,68,-0.2604802702313976],[119,74,69,-0.25734495367522325],[119,74,70,-0.25616602494177637],[119,74,71,-0.25768652636619893],[119,74,72,-0.2598361331432616],[119,74,73,-0.26364556955260343],[119,74,74,-0.2664298095687622],[119,74,75,-0.26784001068980107],[119,74,76,-0.2666706984150459],[119,74,77,-0.26415268088954813],[119,74,78,-0.2604643926832862],[119,74,79,-0.2539990534973097],[119,75,64,-0.28515391468533563],[119,75,65,-0.2852309652231219],[119,75,66,-0.28328167406916716],[119,75,67,-0.2787853505764752],[119,75,68,-0.27579976444057314],[119,75,69,-0.2726290922847645],[119,75,70,-0.2713705222693152],[119,75,71,-0.27337765271522424],[119,75,72,-0.27492216034613765],[119,75,73,-0.2784082013857845],[119,75,74,-0.2811068145452847],[119,75,75,-0.28314824863132604],[119,75,76,-0.28191127332336263],[119,75,77,-0.2798621783453533],[119,75,78,-0.27618103509801945],[119,75,79,-0.27055723450307484],[119,76,64,-0.2990970542769454],[119,76,65,-0.2997570585421897],[119,76,66,-0.2971865580111098],[119,76,67,-0.2922111799045242],[119,76,68,-0.28947424102849073],[119,76,69,-0.2864983400089681],[119,76,70,-0.2853037783648467],[119,76,71,-0.28710461094200623],[119,76,72,-0.28908546063542095],[119,76,73,-0.2923139547130139],[119,76,74,-0.2949484910311103],[119,76,75,-0.2971297617003282],[119,76,76,-0.2965824512270946],[119,76,77,-0.29442158741476765],[119,76,78,-0.29113487601736754],[119,76,79,-0.28531448401970844],[119,77,64,-0.3132095055571797],[119,77,65,-0.31466037226241755],[119,77,66,-0.31269349687024584],[119,77,67,-0.30779527130317125],[119,77,68,-0.30499074835388945],[119,77,69,-0.3028735034676857],[119,77,70,-0.3022917341978304],[119,77,71,-0.30443439285507384],[119,77,72,-0.30603642799917086],[119,77,73,-0.30963969577414135],[119,77,74,-0.3126718663098581],[119,77,75,-0.31472375131741254],[119,77,76,-0.3138766043945334],[119,77,77,-0.3116780542426892],[119,77,78,-0.30822257011725473],[119,77,79,-0.3023514238195908],[119,78,64,-0.3279522215088497],[119,78,65,-0.3300423901007249],[119,78,66,-0.3270238688334326],[119,78,67,-0.3221209778417977],[119,78,68,-0.31888614741769494],[119,78,69,-0.31687196830132125],[119,78,70,-0.3161447390285132],[119,78,71,-0.3178753928863487],[119,78,72,-0.32008837071021656],[119,78,73,-0.3235727237707702],[119,78,74,-0.32719741433821214],[119,78,75,-0.3292150196305296],[119,78,76,-0.32840230861677666],[119,78,77,-0.3268696010463761],[119,78,78,-0.3233165374853335],[119,78,79,-0.3179428535847406],[119,79,64,-0.33971808933911696],[119,79,65,-0.34147155469448465],[119,79,66,-0.33844683245854434],[119,79,67,-0.33328172986987337],[119,79,68,-0.3298747742726254],[119,79,69,-0.32799633828737584],[119,79,70,-0.32722453865554135],[119,79,71,-0.3293056980894159],[119,79,72,-0.33168154161758023],[119,79,73,-0.3351922675583908],[119,79,74,-0.3393610844117387],[119,79,75,-0.3414559318456887],[119,79,76,-0.3411932704242985],[119,79,77,-0.3393032036167226],[119,79,78,-0.33608420639084213],[119,79,79,-0.33033200036285043],[119,80,64,-0.35411394150667025],[119,80,65,-0.35483072685242634],[119,80,66,-0.3520370640441583],[119,80,67,-0.34732177034123346],[119,80,68,-0.3441154594447858],[119,80,69,-0.34131454614025586],[119,80,70,-0.3409903244347599],[119,80,71,-0.3426897823704916],[119,80,72,-0.34672473403224674],[119,80,73,-0.3501332113414936],[119,80,74,-0.35408320596260784],[119,80,75,-0.35600903410046897],[119,80,76,-0.35659915607960374],[119,80,77,-0.3538835237990605],[119,80,78,-0.35052181470547633],[119,80,79,-0.3452925987253845],[119,81,64,-0.3645990290776875],[119,81,65,-0.3651205402977946],[119,81,66,-0.3618677808698181],[119,81,67,-0.357852493622877],[119,81,68,-0.3550626722173783],[119,81,69,-0.352815893582794],[119,81,70,-0.3528546948003884],[119,81,71,-0.3550661811582336],[119,81,72,-0.3603035517390676],[119,81,73,-0.365282808445966],[119,81,74,-0.3694074671471397],[119,81,75,-0.3707770809349416],[119,81,76,-0.37084256049867437],[119,81,77,-0.3694374040162625],[119,81,78,-0.3662085161925258],[119,81,79,-0.36199499666611434],[119,82,64,-0.37941248054090787],[119,82,65,-0.37970324127212135],[119,82,66,-0.3766951125646445],[119,82,67,-0.372881837091791],[119,82,68,-0.3701179029080961],[119,82,69,-0.3684120212015992],[119,82,70,-0.3684570799286895],[119,82,71,-0.3706619692235482],[119,82,72,-0.3754072870102286],[119,82,73,-0.3809787866022053],[119,82,74,-0.385323326703616],[119,82,75,-0.3866995546416702],[119,82,76,-0.3859848591001376],[119,82,77,-0.38534476727924427],[119,82,78,-0.38185927041312195],[119,82,79,-0.3774014712777725],[119,83,64,-0.3927236289954985],[119,83,65,-0.3933154651763022],[119,83,66,-0.39022968567094585],[119,83,67,-0.38626822315919246],[119,83,68,-0.3832048255407906],[119,83,69,-0.38174982537220725],[119,83,70,-0.3822931302658259],[119,83,71,-0.38486752007868213],[119,83,72,-0.3895488885711051],[119,83,73,-0.3950808578878884],[119,83,74,-0.3995503540690897],[119,83,75,-0.4007799704013223],[119,83,76,-0.4000641560590441],[119,83,77,-0.3987578770355645],[119,83,78,-0.39545613040981176],[119,83,79,-0.3914744975831125],[119,84,64,-0.4044967952260481],[119,84,65,-0.40558270688155235],[119,84,66,-0.40235641770624675],[119,84,67,-0.3985886541147988],[119,84,68,-0.3956331074188665],[119,84,69,-0.3944728736089649],[119,84,70,-0.3954908894389131],[119,84,71,-0.39859390674354267],[119,84,72,-0.40332726154395293],[119,84,73,-0.4085317481867702],[119,84,74,-0.4128894355647425],[119,84,75,-0.41395095548753474],[119,84,76,-0.41352254432337304],[119,84,77,-0.41208072793420353],[119,84,78,-0.4084135872594381],[119,84,79,-0.40433046900911185],[119,85,64,-0.42213415823570755],[119,85,65,-0.42347338970547166],[119,85,66,-0.42019829343516124],[119,85,67,-0.4162674212515543],[119,85,68,-0.413437914817525],[119,85,69,-0.41269003285177125],[119,85,70,-0.413914310879438],[119,85,71,-0.41641077950330874],[119,85,72,-0.42013846234987223],[119,85,73,-0.4246890850765048],[119,85,74,-0.42907903235394634],[119,85,75,-0.43039962449464286],[119,85,76,-0.42895553450068413],[119,85,77,-0.4271938364246592],[119,85,78,-0.4229486610034642],[119,85,79,-0.41738036735335926],[119,86,64,-0.4352595966209236],[119,86,65,-0.43614047803538],[119,86,66,-0.4334583357183228],[119,86,67,-0.42958550542015245],[119,86,68,-0.42636552965483],[119,86,69,-0.4254634183893952],[119,86,70,-0.4266612387132861],[119,86,71,-0.4285825995900849],[119,86,72,-0.43313248715396585],[119,86,73,-0.43751015581313224],[119,86,74,-0.44178474941449936],[119,86,75,-0.4428375001806186],[119,86,76,-0.442221224838642],[119,86,77,-0.44037197499288394],[119,86,78,-0.4361016937103075],[119,86,79,-0.43105728518194886],[119,87,64,-0.4443448411708198],[119,87,65,-0.4457579305698515],[119,87,66,-0.44387629694625885],[119,87,67,-0.4397367932682157],[119,87,68,-0.4369227918009274],[119,87,69,-0.43584653158328923],[119,87,70,-0.4366267149586022],[119,87,71,-0.43896909608998275],[119,87,72,-0.443193134037267],[119,87,73,-0.4474716723816404],[119,87,74,-0.45175982720397584],[119,87,75,-0.45323550249452477],[119,87,76,-0.45290852734917997],[119,87,77,-0.45086114670677746],[119,87,78,-0.4470508663846744],[119,87,79,-0.4417635843659219],[119,88,64,-0.45592764828508997],[119,88,65,-0.45774015355545516],[119,88,66,-0.45536721937232005],[119,88,67,-0.4517502316559432],[119,88,68,-0.4489929060991752],[119,88,69,-0.4473668818097312],[119,88,70,-0.44782480030378863],[119,88,71,-0.4507070987155491],[119,88,72,-0.4545031481725585],[119,88,73,-0.4583333333333333],[119,88,74,-0.4583333333333333],[119,88,75,-0.4583333333333333],[119,88,76,-0.4583333333333333],[119,88,77,-0.4583333333333333],[119,88,78,-0.4583333333333333],[119,88,79,-0.45393415050813285],[119,89,64,-0.4583333333333333],[119,89,65,-0.4583333333333333],[119,89,66,-0.4583333333333333],[119,89,67,-0.4583333333333333],[119,89,68,-0.4583333333333333],[119,89,69,-0.4583333333333333],[119,89,70,-0.4583333333333333],[119,89,71,-0.4583333333333333],[119,89,72,-0.4583333333333333],[119,89,73,-0.4583333333333333],[119,89,74,-0.4583333333333333],[119,89,75,-0.4583333333333333],[119,89,76,-0.4583333333333333],[119,89,77,-0.4583333333333333],[119,89,78,-0.4583333333333333],[119,89,79,-0.4583333333333333],[119,90,64,-0.4583333333333333],[119,90,65,-0.4583333333333333],[119,90,66,-0.4583333333333333],[119,90,67,-0.4583333333333333],[119,90,68,-0.4583333333333333],[119,90,69,-0.4583333333333333],[119,90,70,-0.4583333333333333],[119,90,71,-0.4583333333333333],[119,90,72,-0.4583333333333333],[119,90,73,-0.4583333333333333],[119,90,74,-0.4583333333333333],[119,90,75,-0.4583333333333333],[119,90,76,-0.4583333333333333],[119,90,77,-0.4583333333333333],[119,90,78,-0.4583333333333333],[119,90,79,-0.4583333333333333],[119,91,64,-0.4583333333333333],[119,91,65,-0.4583333333333333],[119,91,66,-0.4583333333333333],[119,91,67,-0.4583333333333333],[119,91,68,-0.4583333333333333],[119,91,69,-0.4583333333333333],[119,91,70,-0.4583333333333333],[119,91,71,-0.4583333333333333],[119,91,72,-0.4583333333333333],[119,91,73,-0.4583333333333333],[119,91,74,-0.4583333333333333],[119,91,75,-0.4583333333333333],[119,91,76,-0.4583333333333333],[119,91,77,-0.4583333333333333],[119,91,78,-0.4583333333333333],[119,91,79,-0.4583333333333333],[119,92,64,-0.4583333333333333],[119,92,65,-0.4583333333333333],[119,92,66,-0.4583333333333333],[119,92,67,-0.4583333333333333],[119,92,68,-0.4583333333333333],[119,92,69,-0.4583333333333333],[119,92,70,-0.4583333333333333],[119,92,71,-0.4583333333333333],[119,92,72,-0.4583333333333333],[119,92,73,-0.4583333333333333],[119,92,74,-0.4583333333333333],[119,92,75,-0.4583333333333333],[119,92,76,-0.4583333333333333],[119,92,77,-0.4583333333333333],[119,92,78,-0.4583333333333333],[119,92,79,-0.4583333333333333],[119,93,64,-0.4583333333333333],[119,93,65,-0.4583333333333333],[119,93,66,-0.4583333333333333],[119,93,67,-0.4583333333333333],[119,93,68,-0.4583333333333333],[119,93,69,-0.4583333333333333],[119,93,70,-0.4583333333333333],[119,93,71,-0.4583333333333333],[119,93,72,-0.4583333333333333],[119,93,73,-0.4583333333333333],[119,93,74,-0.4583333333333333],[119,93,75,-0.4583333333333333],[119,93,76,-0.4583333333333333],[119,93,77,-0.4583333333333333],[119,93,78,-0.4583333333333333],[119,93,79,-0.4583333333333333],[119,94,64,-0.4583333333333333],[119,94,65,-0.4583333333333333],[119,94,66,-0.4583333333333333],[119,94,67,-0.4583333333333333],[119,94,68,-0.4583333333333333],[119,94,69,-0.4583333333333333],[119,94,70,-0.4583333333333333],[119,94,71,-0.4583333333333333],[119,94,72,-0.4583333333333333],[119,94,73,-0.4583333333333333],[119,94,74,-0.4583333333333333],[119,94,75,-0.4583333333333333],[119,94,76,-0.4583333333333333],[119,94,77,-0.4583333333333333],[119,94,78,-0.4583333333333333],[119,94,79,-0.4583333333333333],[119,95,64,-0.4583333333333333],[119,95,65,-0.4583333333333333],[119,95,66,-0.4583333333333333],[119,95,67,-0.4583333333333333],[119,95,68,-0.4583333333333333],[119,95,69,-0.4583333333333333],[119,95,70,-0.4583333333333333],[119,95,71,-0.4583333333333333],[119,95,72,-0.4583333333333333],[119,95,73,-0.4583333333333333],[119,95,74,-0.4583333333333333],[119,95,75,-0.4583333333333333],[119,95,76,-0.4583333333333333],[119,95,77,-0.4583333333333333],[119,95,78,-0.4583333333333333],[119,95,79,-0.4583333333333333],[119,96,64,-0.4583333333333333],[119,96,65,-0.4583333333333333],[119,96,66,-0.4583333333333333],[119,96,67,-0.4583333333333333],[119,96,68,-0.4583333333333333],[119,96,69,-0.4583333333333333],[119,96,70,-0.4583333333333333],[119,96,71,-0.4583333333333333],[119,96,72,-0.4583333333333333],[119,96,73,-0.4583333333333333],[119,96,74,-0.4583333333333333],[119,96,75,-0.4583333333333333],[119,96,76,-0.4583333333333333],[119,96,77,-0.4583333333333333],[119,96,78,-0.4583333333333333],[119,96,79,-0.4583333333333333],[119,97,64,-0.4583333333333333],[119,97,65,-0.4583333333333333],[119,97,66,-0.4583333333333333],[119,97,67,-0.4583333333333333],[119,97,68,-0.4583333333333333],[119,97,69,-0.4583333333333333],[119,97,70,-0.4583333333333333],[119,97,71,-0.4583333333333333],[119,97,72,-0.4583333333333333],[119,97,73,-0.4583333333333333],[119,97,74,-0.4583333333333333],[119,97,75,-0.4583333333333333],[119,97,76,-0.4583333333333333],[119,97,77,-0.4583333333333333],[119,97,78,-0.4583333333333333],[119,97,79,-0.4583333333333333],[119,98,64,-0.4583333333333333],[119,98,65,-0.4583333333333333],[119,98,66,-0.4583333333333333],[119,98,67,-0.4583333333333333],[119,98,68,-0.4583333333333333],[119,98,69,-0.4583333333333333],[119,98,70,-0.4583333333333333],[119,98,71,-0.4583333333333333],[119,98,72,-0.4583333333333333],[119,98,73,-0.4583333333333333],[119,98,74,-0.4583333333333333],[119,98,75,-0.4583333333333333],[119,98,76,-0.4583333333333333],[119,98,77,-0.4583333333333333],[119,98,78,-0.4583333333333333],[119,98,79,-0.4583333333333333],[119,99,64,-0.4583333333333333],[119,99,65,-0.4583333333333333],[119,99,66,-0.4583333333333333],[119,99,67,-0.4583333333333333],[119,99,68,-0.4583333333333333],[119,99,69,-0.4583333333333333],[119,99,70,-0.4583333333333333],[119,99,71,-0.4583333333333333],[119,99,72,-0.4583333333333333],[119,99,73,-0.4583333333333333],[119,99,74,-0.4583333333333333],[119,99,75,-0.4583333333333333],[119,99,76,-0.4583333333333333],[119,99,77,-0.4583333333333333],[119,99,78,-0.4583333333333333],[119,99,79,-0.4583333333333333],[119,100,64,-0.4583333333333333],[119,100,65,-0.4583333333333333],[119,100,66,-0.4583333333333333],[119,100,67,-0.4583333333333333],[119,100,68,-0.4583333333333333],[119,100,69,-0.4583333333333333],[119,100,70,-0.4583333333333333],[119,100,71,-0.4583333333333333],[119,100,72,-0.4583333333333333],[119,100,73,-0.4583333333333333],[119,100,74,-0.4583333333333333],[119,100,75,-0.4583333333333333],[119,100,76,-0.4583333333333333],[119,100,77,-0.4583333333333333],[119,100,78,-0.4583333333333333],[119,100,79,-0.4583333333333333],[119,101,64,-0.4583333333333333],[119,101,65,-0.4583333333333333],[119,101,66,-0.4583333333333333],[119,101,67,-0.4583333333333333],[119,101,68,-0.4583333333333333],[119,101,69,-0.4583333333333333],[119,101,70,-0.4583333333333333],[119,101,71,-0.4583333333333333],[119,101,72,-0.4583333333333333],[119,101,73,-0.4583333333333333],[119,101,74,-0.4583333333333333],[119,101,75,-0.4583333333333333],[119,101,76,-0.4583333333333333],[119,101,77,-0.4583333333333333],[119,101,78,-0.4583333333333333],[119,101,79,-0.4583333333333333],[119,102,64,-0.4583333333333333],[119,102,65,-0.4583333333333333],[119,102,66,-0.4583333333333333],[119,102,67,-0.4583333333333333],[119,102,68,-0.4583333333333333],[119,102,69,-0.4583333333333333],[119,102,70,-0.4583333333333333],[119,102,71,-0.4583333333333333],[119,102,72,-0.4583333333333333],[119,102,73,-0.4583333333333333],[119,102,74,-0.4583333333333333],[119,102,75,-0.4583333333333333],[119,102,76,-0.4583333333333333],[119,102,77,-0.4583333333333333],[119,102,78,-0.4583333333333333],[119,102,79,-0.4583333333333333],[119,103,64,-0.4583333333333333],[119,103,65,-0.4583333333333333],[119,103,66,-0.4583333333333333],[119,103,67,-0.4583333333333333],[119,103,68,-0.4583333333333333],[119,103,69,-0.4583333333333333],[119,103,70,-0.4583333333333333],[119,103,71,-0.4583333333333333],[119,103,72,-0.4583333333333333],[119,103,73,-0.4583333333333333],[119,103,74,-0.4583333333333333],[119,103,75,-0.4583333333333333],[119,103,76,-0.4583333333333333],[119,103,77,-0.4583333333333333],[119,103,78,-0.4583333333333333],[119,103,79,-0.4583333333333333],[119,104,64,-0.4583333333333333],[119,104,65,-0.4583333333333333],[119,104,66,-0.4583333333333333],[119,104,67,-0.4583333333333333],[119,104,68,-0.4583333333333333],[119,104,69,-0.4583333333333333],[119,104,70,-0.4583333333333333],[119,104,71,-0.4583333333333333],[119,104,72,-0.4583333333333333],[119,104,73,-0.4583333333333333],[119,104,74,-0.4583333333333333],[119,104,75,-0.4583333333333333],[119,104,76,-0.4583333333333333],[119,104,77,-0.4583333333333333],[119,104,78,-0.4583333333333333],[119,104,79,-0.4583333333333333],[119,105,64,-0.4583333333333333],[119,105,65,-0.4583333333333333],[119,105,66,-0.4583333333333333],[119,105,67,-0.4583333333333333],[119,105,68,-0.4583333333333333],[119,105,69,-0.4583333333333333],[119,105,70,-0.4583333333333333],[119,105,71,-0.4583333333333333],[119,105,72,-0.4583333333333333],[119,105,73,-0.4583333333333333],[119,105,74,-0.4583333333333333],[119,105,75,-0.4583333333333333],[119,105,76,-0.4583333333333333],[119,105,77,-0.4583333333333333],[119,105,78,-0.4583333333333333],[119,105,79,-0.4583333333333333],[119,106,64,-0.4583333333333333],[119,106,65,-0.4583333333333333],[119,106,66,-0.4583333333333333],[119,106,67,-0.4583333333333333],[119,106,68,-0.4583333333333333],[119,106,69,-0.4583333333333333],[119,106,70,-0.4583333333333333],[119,106,71,-0.4583333333333333],[119,106,72,-0.4583333333333333],[119,106,73,-0.4583333333333333],[119,106,74,-0.4583333333333333],[119,106,75,-0.4583333333333333],[119,106,76,-0.4583333333333333],[119,106,77,-0.4583333333333333],[119,106,78,-0.4583333333333333],[119,106,79,-0.4583333333333333],[119,107,64,-0.4583333333333333],[119,107,65,-0.4583333333333333],[119,107,66,-0.4583333333333333],[119,107,67,-0.4583333333333333],[119,107,68,-0.4583333333333333],[119,107,69,-0.4583333333333333],[119,107,70,-0.4583333333333333],[119,107,71,-0.4583333333333333],[119,107,72,-0.4583333333333333],[119,107,73,-0.4583333333333333],[119,107,74,-0.4583333333333333],[119,107,75,-0.4583333333333333],[119,107,76,-0.4583333333333333],[119,107,77,-0.4583333333333333],[119,107,78,-0.4583333333333333],[119,107,79,-0.4583333333333333],[119,108,64,-0.4583333333333333],[119,108,65,-0.4583333333333333],[119,108,66,-0.4583333333333333],[119,108,67,-0.4583333333333333],[119,108,68,-0.4583333333333333],[119,108,69,-0.4583333333333333],[119,108,70,-0.4583333333333333],[119,108,71,-0.4583333333333333],[119,108,72,-0.4583333333333333],[119,108,73,-0.4583333333333333],[119,108,74,-0.4583333333333333],[119,108,75,-0.4583333333333333],[119,108,76,-0.4583333333333333],[119,108,77,-0.4583333333333333],[119,108,78,-0.4583333333333333],[119,108,79,-0.4583333333333333],[119,109,64,-0.4583333333333333],[119,109,65,-0.4583333333333333],[119,109,66,-0.4583333333333333],[119,109,67,-0.4583333333333333],[119,109,68,-0.4583333333333333],[119,109,69,-0.4583333333333333],[119,109,70,-0.4583333333333333],[119,109,71,-0.4583333333333333],[119,109,72,-0.4583333333333333],[119,109,73,-0.4583333333333333],[119,109,74,-0.4583333333333333],[119,109,75,-0.4583333333333333],[119,109,76,-0.4583333333333333],[119,109,77,-0.4583333333333333],[119,109,78,-0.4583333333333333],[119,109,79,-0.4583333333333333],[119,110,64,-0.4583333333333333],[119,110,65,-0.4583333333333333],[119,110,66,-0.4583333333333333],[119,110,67,-0.4583333333333333],[119,110,68,-0.4583333333333333],[119,110,69,-0.4583333333333333],[119,110,70,-0.4583333333333333],[119,110,71,-0.4583333333333333],[119,110,72,-0.4583333333333333],[119,110,73,-0.4583333333333333],[119,110,74,-0.4583333333333333],[119,110,75,-0.4583333333333333],[119,110,76,-0.4583333333333333],[119,110,77,-0.4583333333333333],[119,110,78,-0.4583333333333333],[119,110,79,-0.4583333333333333],[119,111,64,-0.4583333333333333],[119,111,65,-0.4583333333333333],[119,111,66,-0.4583333333333333],[119,111,67,-0.4583333333333333],[119,111,68,-0.4583333333333333],[119,111,69,-0.4583333333333333],[119,111,70,-0.4583333333333333],[119,111,71,-0.4583333333333333],[119,111,72,-0.4583333333333333],[119,111,73,-0.4583333333333333],[119,111,74,-0.4583333333333333],[119,111,75,-0.4583333333333333],[119,111,76,-0.4583333333333333],[119,111,77,-0.4583333333333333],[119,111,78,-0.4583333333333333],[119,111,79,-0.4583333333333333],[119,112,64,-0.4583333333333333],[119,112,65,-0.4583333333333333],[119,112,66,-0.4583333333333333],[119,112,67,-0.4583333333333333],[119,112,68,-0.4583333333333333],[119,112,69,-0.4583333333333333],[119,112,70,-0.4583333333333333],[119,112,71,-0.4583333333333333],[119,112,72,-0.4583333333333333],[119,112,73,-0.4583333333333333],[119,112,74,-0.4583333333333333],[119,112,75,-0.4583333333333333],[119,112,76,-0.4583333333333333],[119,112,77,-0.4583333333333333],[119,112,78,-0.4583333333333333],[119,112,79,-0.4583333333333333],[119,113,64,-0.4583333333333333],[119,113,65,-0.4583333333333333],[119,113,66,-0.4583333333333333],[119,113,67,-0.4583333333333333],[119,113,68,-0.4583333333333333],[119,113,69,-0.4583333333333333],[119,113,70,-0.4583333333333333],[119,113,71,-0.4583333333333333],[119,113,72,-0.4583333333333333],[119,113,73,-0.4583333333333333],[119,113,74,-0.4583333333333333],[119,113,75,-0.4583333333333333],[119,113,76,-0.4583333333333333],[119,113,77,-0.4583333333333333],[119,113,78,-0.4583333333333333],[119,113,79,-0.4583333333333333],[119,114,64,-0.4583333333333333],[119,114,65,-0.4583333333333333],[119,114,66,-0.4583333333333333],[119,114,67,-0.4583333333333333],[119,114,68,-0.4583333333333333],[119,114,69,-0.4583333333333333],[119,114,70,-0.4583333333333333],[119,114,71,-0.4583333333333333],[119,114,72,-0.4583333333333333],[119,114,73,-0.4583333333333333],[119,114,74,-0.4583333333333333],[119,114,75,-0.4583333333333333],[119,114,76,-0.4583333333333333],[119,114,77,-0.4583333333333333],[119,114,78,-0.4583333333333333],[119,114,79,-0.4583333333333333],[119,115,64,-0.4583333333333333],[119,115,65,-0.4583333333333333],[119,115,66,-0.4583333333333333],[119,115,67,-0.4583333333333333],[119,115,68,-0.4583333333333333],[119,115,69,-0.4583333333333333],[119,115,70,-0.4583333333333333],[119,115,71,-0.4583333333333333],[119,115,72,-0.4583333333333333],[119,115,73,-0.4583333333333333],[119,115,74,-0.4583333333333333],[119,115,75,-0.4583333333333333],[119,115,76,-0.4583333333333333],[119,115,77,-0.4583333333333333],[119,115,78,-0.4583333333333333],[119,115,79,-0.4583333333333333],[119,116,64,-0.4583333333333333],[119,116,65,-0.4583333333333333],[119,116,66,-0.4583333333333333],[119,116,67,-0.4583333333333333],[119,116,68,-0.4583333333333333],[119,116,69,-0.4583333333333333],[119,116,70,-0.4583333333333333],[119,116,71,-0.4583333333333333],[119,116,72,-0.4583333333333333],[119,116,73,-0.4583333333333333],[119,116,74,-0.4583333333333333],[119,116,75,-0.4583333333333333],[119,116,76,-0.4583333333333333],[119,116,77,-0.4583333333333333],[119,116,78,-0.4583333333333333],[119,116,79,-0.4583333333333333],[119,117,64,-0.4583333333333333],[119,117,65,-0.4583333333333333],[119,117,66,-0.4583333333333333],[119,117,67,-0.4583333333333333],[119,117,68,-0.4583333333333333],[119,117,69,-0.4583333333333333],[119,117,70,-0.4583333333333333],[119,117,71,-0.4583333333333333],[119,117,72,-0.4583333333333333],[119,117,73,-0.4583333333333333],[119,117,74,-0.4583333333333333],[119,117,75,-0.4583333333333333],[119,117,76,-0.4583333333333333],[119,117,77,-0.4583333333333333],[119,117,78,-0.4583333333333333],[119,117,79,-0.4583333333333333],[119,118,64,-0.4583333333333333],[119,118,65,-0.4583333333333333],[119,118,66,-0.4583333333333333],[119,118,67,-0.4583333333333333],[119,118,68,-0.4583333333333333],[119,118,69,-0.4583333333333333],[119,118,70,-0.4583333333333333],[119,118,71,-0.4583333333333333],[119,118,72,-0.4583333333333333],[119,118,73,-0.4583333333333333],[119,118,74,-0.4583333333333333],[119,118,75,-0.4583333333333333],[119,118,76,-0.4583333333333333],[119,118,77,-0.4583333333333333],[119,118,78,-0.4583333333333333],[119,118,79,-0.4583333333333333],[119,119,64,-0.4583333333333333],[119,119,65,-0.4583333333333333],[119,119,66,-0.4583333333333333],[119,119,67,-0.4583333333333333],[119,119,68,-0.4583333333333333],[119,119,69,-0.4583333333333333],[119,119,70,-0.4583333333333333],[119,119,71,-0.4583333333333333],[119,119,72,-0.4583333333333333],[119,119,73,-0.4583333333333333],[119,119,74,-0.4583333333333333],[119,119,75,-0.4583333333333333],[119,119,76,-0.4583333333333333],[119,119,77,-0.4583333333333333],[119,119,78,-0.4583333333333333],[119,119,79,-0.4583333333333333],[119,120,64,-0.4583333333333333],[119,120,65,-0.4583333333333333],[119,120,66,-0.4583333333333333],[119,120,67,-0.4583333333333333],[119,120,68,-0.4583333333333333],[119,120,69,-0.4583333333333333],[119,120,70,-0.4583333333333333],[119,120,71,-0.4583333333333333],[119,120,72,-0.4583333333333333],[119,120,73,-0.4583333333333333],[119,120,74,-0.4583333333333333],[119,120,75,-0.4583333333333333],[119,120,76,-0.4583333333333333],[119,120,77,-0.4583333333333333],[119,120,78,-0.4583333333333333],[119,120,79,-0.4583333333333333],[119,121,64,-0.4583333333333333],[119,121,65,-0.4583333333333333],[119,121,66,-0.4583333333333333],[119,121,67,-0.4583333333333333],[119,121,68,-0.4583333333333333],[119,121,69,-0.4583333333333333],[119,121,70,-0.4583333333333333],[119,121,71,-0.4583333333333333],[119,121,72,-0.4583333333333333],[119,121,73,-0.4583333333333333],[119,121,74,-0.4583333333333333],[119,121,75,-0.4583333333333333],[119,121,76,-0.4583333333333333],[119,121,77,-0.4583333333333333],[119,121,78,-0.4583333333333333],[119,121,79,-0.4583333333333333],[119,122,64,-0.4583333333333333],[119,122,65,-0.4583333333333333],[119,122,66,-0.4583333333333333],[119,122,67,-0.4583333333333333],[119,122,68,-0.4583333333333333],[119,122,69,-0.4583333333333333],[119,122,70,-0.4583333333333333],[119,122,71,-0.4583333333333333],[119,122,72,-0.4583333333333333],[119,122,73,-0.4583333333333333],[119,122,74,-0.4583333333333333],[119,122,75,-0.4583333333333333],[119,122,76,-0.4583333333333333],[119,122,77,-0.4583333333333333],[119,122,78,-0.4583333333333333],[119,122,79,-0.4583333333333333],[119,123,64,-0.4583333333333333],[119,123,65,-0.4583333333333333],[119,123,66,-0.4583333333333333],[119,123,67,-0.4583333333333333],[119,123,68,-0.4583333333333333],[119,123,69,-0.4583333333333333],[119,123,70,-0.4583333333333333],[119,123,71,-0.4583333333333333],[119,123,72,-0.4583333333333333],[119,123,73,-0.4583333333333333],[119,123,74,-0.4583333333333333],[119,123,75,-0.4583333333333333],[119,123,76,-0.4583333333333333],[119,123,77,-0.4583333333333333],[119,123,78,-0.4583333333333333],[119,123,79,-0.4583333333333333],[119,124,64,-0.4583333333333333],[119,124,65,-0.4583333333333333],[119,124,66,-0.4583333333333333],[119,124,67,-0.4583333333333333],[119,124,68,-0.4583333333333333],[119,124,69,-0.4583333333333333],[119,124,70,-0.4583333333333333],[119,124,71,-0.4583333333333333],[119,124,72,-0.4583333333333333],[119,124,73,-0.4583333333333333],[119,124,74,-0.4583333333333333],[119,124,75,-0.4583333333333333],[119,124,76,-0.4583333333333333],[119,124,77,-0.4583333333333333],[119,124,78,-0.4583333333333333],[119,124,79,-0.4583333333333333],[119,125,64,-0.4583333333333333],[119,125,65,-0.4583333333333333],[119,125,66,-0.4583333333333333],[119,125,67,-0.4583333333333333],[119,125,68,-0.4583333333333333],[119,125,69,-0.4583333333333333],[119,125,70,-0.4583333333333333],[119,125,71,-0.4583333333333333],[119,125,72,-0.4583333333333333],[119,125,73,-0.4583333333333333],[119,125,74,-0.4583333333333333],[119,125,75,-0.4583333333333333],[119,125,76,-0.4583333333333333],[119,125,77,-0.4583333333333333],[119,125,78,-0.4583333333333333],[119,125,79,-0.4583333333333333],[119,126,64,-0.4583333333333333],[119,126,65,-0.4583333333333333],[119,126,66,-0.4583333333333333],[119,126,67,-0.4583333333333333],[119,126,68,-0.4583333333333333],[119,126,69,-0.4583333333333333],[119,126,70,-0.4583333333333333],[119,126,71,-0.4583333333333333],[119,126,72,-0.4583333333333333],[119,126,73,-0.4583333333333333],[119,126,74,-0.4583333333333333],[119,126,75,-0.4583333333333333],[119,126,76,-0.4583333333333333],[119,126,77,-0.4583333333333333],[119,126,78,-0.4583333333333333],[119,126,79,-0.4583333333333333],[119,127,64,-0.4583333333333333],[119,127,65,-0.4583333333333333],[119,127,66,-0.4583333333333333],[119,127,67,-0.4583333333333333],[119,127,68,-0.4583333333333333],[119,127,69,-0.4583333333333333],[119,127,70,-0.4583333333333333],[119,127,71,-0.4583333333333333],[119,127,72,-0.4583333333333333],[119,127,73,-0.4583333333333333],[119,127,74,-0.4583333333333333],[119,127,75,-0.4583333333333333],[119,127,76,-0.4583333333333333],[119,127,77,-0.4583333333333333],[119,127,78,-0.4583333333333333],[119,127,79,-0.4583333333333333],[119,128,64,-0.4583333333333333],[119,128,65,-0.4583333333333333],[119,128,66,-0.4583333333333333],[119,128,67,-0.4583333333333333],[119,128,68,-0.4583333333333333],[119,128,69,-0.4583333333333333],[119,128,70,-0.4583333333333333],[119,128,71,-0.4583333333333333],[119,128,72,-0.4583333333333333],[119,128,73,-0.4583333333333333],[119,128,74,-0.4583333333333333],[119,128,75,-0.4583333333333333],[119,128,76,-0.4583333333333333],[119,128,77,-0.4583333333333333],[119,128,78,-0.4583333333333333],[119,128,79,-0.4583333333333333],[119,129,64,-0.4583333333333333],[119,129,65,-0.4583333333333333],[119,129,66,-0.4583333333333333],[119,129,67,-0.4583333333333333],[119,129,68,-0.4583333333333333],[119,129,69,-0.4583333333333333],[119,129,70,-0.4583333333333333],[119,129,71,-0.4583333333333333],[119,129,72,-0.4583333333333333],[119,129,73,-0.4583333333333333],[119,129,74,-0.4583333333333333],[119,129,75,-0.4583333333333333],[119,129,76,-0.4583333333333333],[119,129,77,-0.4583333333333333],[119,129,78,-0.4583333333333333],[119,129,79,-0.4583333333333333],[119,130,64,-0.4583333333333333],[119,130,65,-0.4583333333333333],[119,130,66,-0.4583333333333333],[119,130,67,-0.4583333333333333],[119,130,68,-0.4583333333333333],[119,130,69,-0.4583333333333333],[119,130,70,-0.4583333333333333],[119,130,71,-0.4583333333333333],[119,130,72,-0.4583333333333333],[119,130,73,-0.4583333333333333],[119,130,74,-0.4583333333333333],[119,130,75,-0.4583333333333333],[119,130,76,-0.4583333333333333],[119,130,77,-0.4583333333333333],[119,130,78,-0.4583333333333333],[119,130,79,-0.4583333333333333],[119,131,64,-0.4583333333333333],[119,131,65,-0.4583333333333333],[119,131,66,-0.4583333333333333],[119,131,67,-0.4583333333333333],[119,131,68,-0.4583333333333333],[119,131,69,-0.4583333333333333],[119,131,70,-0.4583333333333333],[119,131,71,-0.4583333333333333],[119,131,72,-0.4583333333333333],[119,131,73,-0.4583333333333333],[119,131,74,-0.4583333333333333],[119,131,75,-0.4583333333333333],[119,131,76,-0.4583333333333333],[119,131,77,-0.4583333333333333],[119,131,78,-0.4583333333333333],[119,131,79,-0.4583333333333333],[119,132,64,-0.4583333333333333],[119,132,65,-0.4583333333333333],[119,132,66,-0.4583333333333333],[119,132,67,-0.4583333333333333],[119,132,68,-0.4583333333333333],[119,132,69,-0.4583333333333333],[119,132,70,-0.4583333333333333],[119,132,71,-0.4583333333333333],[119,132,72,-0.4583333333333333],[119,132,73,-0.4583333333333333],[119,132,74,-0.4583333333333333],[119,132,75,-0.4583333333333333],[119,132,76,-0.4583333333333333],[119,132,77,-0.4583333333333333],[119,132,78,-0.4583333333333333],[119,132,79,-0.4583333333333333],[119,133,64,-0.4583333333333333],[119,133,65,-0.4583333333333333],[119,133,66,-0.4583333333333333],[119,133,67,-0.4583333333333333],[119,133,68,-0.4583333333333333],[119,133,69,-0.4583333333333333],[119,133,70,-0.4583333333333333],[119,133,71,-0.4583333333333333],[119,133,72,-0.4583333333333333],[119,133,73,-0.4583333333333333],[119,133,74,-0.4583333333333333],[119,133,75,-0.4583333333333333],[119,133,76,-0.4583333333333333],[119,133,77,-0.4583333333333333],[119,133,78,-0.4583333333333333],[119,133,79,-0.4583333333333333],[119,134,64,-0.4583333333333333],[119,134,65,-0.4583333333333333],[119,134,66,-0.4583333333333333],[119,134,67,-0.4583333333333333],[119,134,68,-0.4583333333333333],[119,134,69,-0.4583333333333333],[119,134,70,-0.4583333333333333],[119,134,71,-0.4583333333333333],[119,134,72,-0.4583333333333333],[119,134,73,-0.4583333333333333],[119,134,74,-0.4583333333333333],[119,134,75,-0.4583333333333333],[119,134,76,-0.4583333333333333],[119,134,77,-0.4583333333333333],[119,134,78,-0.4583333333333333],[119,134,79,-0.4583333333333333],[119,135,64,-0.4583333333333333],[119,135,65,-0.4583333333333333],[119,135,66,-0.4583333333333333],[119,135,67,-0.4583333333333333],[119,135,68,-0.4583333333333333],[119,135,69,-0.4583333333333333],[119,135,70,-0.4583333333333333],[119,135,71,-0.4583333333333333],[119,135,72,-0.4583333333333333],[119,135,73,-0.4583333333333333],[119,135,74,-0.4583333333333333],[119,135,75,-0.4583333333333333],[119,135,76,-0.4583333333333333],[119,135,77,-0.4583333333333333],[119,135,78,-0.4583333333333333],[119,135,79,-0.4583333333333333],[119,136,64,-0.4583333333333333],[119,136,65,-0.4583333333333333],[119,136,66,-0.4583333333333333],[119,136,67,-0.4583333333333333],[119,136,68,-0.4583333333333333],[119,136,69,-0.4583333333333333],[119,136,70,-0.4583333333333333],[119,136,71,-0.4583333333333333],[119,136,72,-0.4583333333333333],[119,136,73,-0.4583333333333333],[119,136,74,-0.4583333333333333],[119,136,75,-0.4583333333333333],[119,136,76,-0.4583333333333333],[119,136,77,-0.4583333333333333],[119,136,78,-0.4583333333333333],[119,136,79,-0.4583333333333333],[119,137,64,-0.4583333333333333],[119,137,65,-0.4583333333333333],[119,137,66,-0.4583333333333333],[119,137,67,-0.4583333333333333],[119,137,68,-0.4583333333333333],[119,137,69,-0.4583333333333333],[119,137,70,-0.4583333333333333],[119,137,71,-0.4583333333333333],[119,137,72,-0.4583333333333333],[119,137,73,-0.4583333333333333],[119,137,74,-0.4583333333333333],[119,137,75,-0.4583333333333333],[119,137,76,-0.4583333333333333],[119,137,77,-0.4583333333333333],[119,137,78,-0.4583333333333333],[119,137,79,-0.4583333333333333],[119,138,64,-0.4583333333333333],[119,138,65,-0.4583333333333333],[119,138,66,-0.4583333333333333],[119,138,67,-0.4583333333333333],[119,138,68,-0.4583333333333333],[119,138,69,-0.4583333333333333],[119,138,70,-0.4583333333333333],[119,138,71,-0.4583333333333333],[119,138,72,-0.4583333333333333],[119,138,73,-0.4583333333333333],[119,138,74,-0.4583333333333333],[119,138,75,-0.4583333333333333],[119,138,76,-0.4583333333333333],[119,138,77,-0.4583333333333333],[119,138,78,-0.4583333333333333],[119,138,79,-0.4583333333333333],[119,139,64,-0.4583333333333333],[119,139,65,-0.4583333333333333],[119,139,66,-0.4583333333333333],[119,139,67,-0.4583333333333333],[119,139,68,-0.4583333333333333],[119,139,69,-0.4583333333333333],[119,139,70,-0.4583333333333333],[119,139,71,-0.4583333333333333],[119,139,72,-0.4583333333333333],[119,139,73,-0.4583333333333333],[119,139,74,-0.4583333333333333],[119,139,75,-0.4583333333333333],[119,139,76,-0.4583333333333333],[119,139,77,-0.4583333333333333],[119,139,78,-0.4583333333333333],[119,139,79,-0.4583333333333333],[119,140,64,-0.4583333333333333],[119,140,65,-0.4583333333333333],[119,140,66,-0.4583333333333333],[119,140,67,-0.4583333333333333],[119,140,68,-0.4583333333333333],[119,140,69,-0.4583333333333333],[119,140,70,-0.4583333333333333],[119,140,71,-0.4583333333333333],[119,140,72,-0.4583333333333333],[119,140,73,-0.4583333333333333],[119,140,74,-0.4583333333333333],[119,140,75,-0.4583333333333333],[119,140,76,-0.4583333333333333],[119,140,77,-0.4583333333333333],[119,140,78,-0.4583333333333333],[119,140,79,-0.4583333333333333],[119,141,64,-0.4583333333333333],[119,141,65,-0.4583333333333333],[119,141,66,-0.4583333333333333],[119,141,67,-0.4583333333333333],[119,141,68,-0.4583333333333333],[119,141,69,-0.4583333333333333],[119,141,70,-0.4583333333333333],[119,141,71,-0.4583333333333333],[119,141,72,-0.4583333333333333],[119,141,73,-0.4583333333333333],[119,141,74,-0.4583333333333333],[119,141,75,-0.4583333333333333],[119,141,76,-0.4583333333333333],[119,141,77,-0.4583333333333333],[119,141,78,-0.4583333333333333],[119,141,79,-0.4583333333333333],[119,142,64,-0.4583333333333333],[119,142,65,-0.4583333333333333],[119,142,66,-0.4583333333333333],[119,142,67,-0.4583333333333333],[119,142,68,-0.4583333333333333],[119,142,69,-0.4583333333333333],[119,142,70,-0.4583333333333333],[119,142,71,-0.4583333333333333],[119,142,72,-0.4583333333333333],[119,142,73,-0.4583333333333333],[119,142,74,-0.4583333333333333],[119,142,75,-0.4583333333333333],[119,142,76,-0.4583333333333333],[119,142,77,-0.4583333333333333],[119,142,78,-0.4583333333333333],[119,142,79,-0.4583333333333333],[119,143,64,-0.4583333333333333],[119,143,65,-0.4583333333333333],[119,143,66,-0.4583333333333333],[119,143,67,-0.4583333333333333],[119,143,68,-0.4583333333333333],[119,143,69,-0.4583333333333333],[119,143,70,-0.4583333333333333],[119,143,71,-0.4583333333333333],[119,143,72,-0.4583333333333333],[119,143,73,-0.4583333333333333],[119,143,74,-0.4583333333333333],[119,143,75,-0.4583333333333333],[119,143,76,-0.4583333333333333],[119,143,77,-0.4583333333333333],[119,143,78,-0.4583333333333333],[119,143,79,-0.4583333333333333],[119,144,64,-0.4583333333333333],[119,144,65,-0.4583333333333333],[119,144,66,-0.4583333333333333],[119,144,67,-0.4583333333333333],[119,144,68,-0.4583333333333333],[119,144,69,-0.4583333333333333],[119,144,70,-0.4583333333333333],[119,144,71,-0.4583333333333333],[119,144,72,-0.4583333333333333],[119,144,73,-0.4583333333333333],[119,144,74,-0.4583333333333333],[119,144,75,-0.4583333333333333],[119,144,76,-0.4583333333333333],[119,144,77,-0.4583333333333333],[119,144,78,-0.4583333333333333],[119,144,79,-0.4583333333333333],[119,145,64,-0.4583333333333333],[119,145,65,-0.4583333333333333],[119,145,66,-0.4583333333333333],[119,145,67,-0.4583333333333333],[119,145,68,-0.4583333333333333],[119,145,69,-0.4583333333333333],[119,145,70,-0.4583333333333333],[119,145,71,-0.4583333333333333],[119,145,72,-0.4583333333333333],[119,145,73,-0.4583333333333333],[119,145,74,-0.4583333333333333],[119,145,75,-0.4583333333333333],[119,145,76,-0.4583333333333333],[119,145,77,-0.4583333333333333],[119,145,78,-0.4583333333333333],[119,145,79,-0.4583333333333333],[119,146,64,-0.4583333333333333],[119,146,65,-0.4583333333333333],[119,146,66,-0.4583333333333333],[119,146,67,-0.4583333333333333],[119,146,68,-0.4583333333333333],[119,146,69,-0.4583333333333333],[119,146,70,-0.4583333333333333],[119,146,71,-0.4583333333333333],[119,146,72,-0.4583333333333333],[119,146,73,-0.4583333333333333],[119,146,74,-0.4583333333333333],[119,146,75,-0.4583333333333333],[119,146,76,-0.4583333333333333],[119,146,77,-0.4583333333333333],[119,146,78,-0.4583333333333333],[119,146,79,-0.4583333333333333],[119,147,64,-0.4583333333333333],[119,147,65,-0.4583333333333333],[119,147,66,-0.4583333333333333],[119,147,67,-0.4583333333333333],[119,147,68,-0.4583333333333333],[119,147,69,-0.4583333333333333],[119,147,70,-0.4583333333333333],[119,147,71,-0.4583333333333333],[119,147,72,-0.4583333333333333],[119,147,73,-0.4583333333333333],[119,147,74,-0.4583333333333333],[119,147,75,-0.4583333333333333],[119,147,76,-0.4583333333333333],[119,147,77,-0.4583333333333333],[119,147,78,-0.4583333333333333],[119,147,79,-0.4583333333333333],[119,148,64,-0.4583333333333333],[119,148,65,-0.4583333333333333],[119,148,66,-0.4583333333333333],[119,148,67,-0.4583333333333333],[119,148,68,-0.4583333333333333],[119,148,69,-0.4583333333333333],[119,148,70,-0.4583333333333333],[119,148,71,-0.4583333333333333],[119,148,72,-0.4583333333333333],[119,148,73,-0.4583333333333333],[119,148,74,-0.4583333333333333],[119,148,75,-0.4583333333333333],[119,148,76,-0.4583333333333333],[119,148,77,-0.4583333333333333],[119,148,78,-0.4583333333333333],[119,148,79,-0.4583333333333333],[119,149,64,-0.4583333333333333],[119,149,65,-0.4583333333333333],[119,149,66,-0.4583333333333333],[119,149,67,-0.4583333333333333],[119,149,68,-0.4583333333333333],[119,149,69,-0.4583333333333333],[119,149,70,-0.4583333333333333],[119,149,71,-0.4583333333333333],[119,149,72,-0.4583333333333333],[119,149,73,-0.4583333333333333],[119,149,74,-0.4583333333333333],[119,149,75,-0.4583333333333333],[119,149,76,-0.4583333333333333],[119,149,77,-0.4583333333333333],[119,149,78,-0.4583333333333333],[119,149,79,-0.4583333333333333],[119,150,64,-0.4583333333333333],[119,150,65,-0.4583333333333333],[119,150,66,-0.4583333333333333],[119,150,67,-0.4583333333333333],[119,150,68,-0.4583333333333333],[119,150,69,-0.4583333333333333],[119,150,70,-0.4583333333333333],[119,150,71,-0.4583333333333333],[119,150,72,-0.4583333333333333],[119,150,73,-0.4583333333333333],[119,150,74,-0.4583333333333333],[119,150,75,-0.4583333333333333],[119,150,76,-0.4583333333333333],[119,150,77,-0.4583333333333333],[119,150,78,-0.4583333333333333],[119,150,79,-0.4583333333333333],[119,151,64,-0.4583333333333333],[119,151,65,-0.4583333333333333],[119,151,66,-0.4583333333333333],[119,151,67,-0.4583333333333333],[119,151,68,-0.4583333333333333],[119,151,69,-0.4583333333333333],[119,151,70,-0.4583333333333333],[119,151,71,-0.4583333333333333],[119,151,72,-0.4583333333333333],[119,151,73,-0.4583333333333333],[119,151,74,-0.4583333333333333],[119,151,75,-0.4583333333333333],[119,151,76,-0.4583333333333333],[119,151,77,-0.4583333333333333],[119,151,78,-0.4583333333333333],[119,151,79,-0.4583333333333333],[119,152,64,-0.4583333333333333],[119,152,65,-0.4583333333333333],[119,152,66,-0.4583333333333333],[119,152,67,-0.4583333333333333],[119,152,68,-0.4583333333333333],[119,152,69,-0.4583333333333333],[119,152,70,-0.4583333333333333],[119,152,71,-0.4583333333333333],[119,152,72,-0.4583333333333333],[119,152,73,-0.4583333333333333],[119,152,74,-0.4583333333333333],[119,152,75,-0.4583333333333333],[119,152,76,-0.4583333333333333],[119,152,77,-0.4583333333333333],[119,152,78,-0.4583333333333333],[119,152,79,-0.4583333333333333],[119,153,64,-0.4583333333333333],[119,153,65,-0.4583333333333333],[119,153,66,-0.4583333333333333],[119,153,67,-0.4583333333333333],[119,153,68,-0.4583333333333333],[119,153,69,-0.4583333333333333],[119,153,70,-0.4583333333333333],[119,153,71,-0.4583333333333333],[119,153,72,-0.4583333333333333],[119,153,73,-0.4583333333333333],[119,153,74,-0.4583333333333333],[119,153,75,-0.4583333333333333],[119,153,76,-0.4583333333333333],[119,153,77,-0.4583333333333333],[119,153,78,-0.4583333333333333],[119,153,79,-0.4583333333333333],[119,154,64,-0.4583333333333333],[119,154,65,-0.4583333333333333],[119,154,66,-0.4583333333333333],[119,154,67,-0.4583333333333333],[119,154,68,-0.4583333333333333],[119,154,69,-0.4583333333333333],[119,154,70,-0.4583333333333333],[119,154,71,-0.4583333333333333],[119,154,72,-0.4583333333333333],[119,154,73,-0.4583333333333333],[119,154,74,-0.4583333333333333],[119,154,75,-0.4583333333333333],[119,154,76,-0.4583333333333333],[119,154,77,-0.4583333333333333],[119,154,78,-0.4583333333333333],[119,154,79,-0.4583333333333333],[119,155,64,-0.4583333333333333],[119,155,65,-0.4583333333333333],[119,155,66,-0.4583333333333333],[119,155,67,-0.4583333333333333],[119,155,68,-0.4583333333333333],[119,155,69,-0.4583333333333333],[119,155,70,-0.4583333333333333],[119,155,71,-0.4583333333333333],[119,155,72,-0.4583333333333333],[119,155,73,-0.4583333333333333],[119,155,74,-0.4583333333333333],[119,155,75,-0.4583333333333333],[119,155,76,-0.4583333333333333],[119,155,77,-0.4583333333333333],[119,155,78,-0.4583333333333333],[119,155,79,-0.4583333333333333],[119,156,64,-0.4583333333333333],[119,156,65,-0.4583333333333333],[119,156,66,-0.4583333333333333],[119,156,67,-0.4583333333333333],[119,156,68,-0.4583333333333333],[119,156,69,-0.4583333333333333],[119,156,70,-0.4583333333333333],[119,156,71,-0.4583333333333333],[119,156,72,-0.4583333333333333],[119,156,73,-0.4583333333333333],[119,156,74,-0.4583333333333333],[119,156,75,-0.4583333333333333],[119,156,76,-0.4583333333333333],[119,156,77,-0.4583333333333333],[119,156,78,-0.4583333333333333],[119,156,79,-0.4583333333333333],[119,157,64,-0.4583333333333333],[119,157,65,-0.4583333333333333],[119,157,66,-0.4583333333333333],[119,157,67,-0.4583333333333333],[119,157,68,-0.4583333333333333],[119,157,69,-0.4583333333333333],[119,157,70,-0.4583333333333333],[119,157,71,-0.4583333333333333],[119,157,72,-0.4583333333333333],[119,157,73,-0.4583333333333333],[119,157,74,-0.4583333333333333],[119,157,75,-0.4583333333333333],[119,157,76,-0.4583333333333333],[119,157,77,-0.4583333333333333],[119,157,78,-0.4583333333333333],[119,157,79,-0.4583333333333333],[119,158,64,-0.4583333333333333],[119,158,65,-0.4583333333333333],[119,158,66,-0.4583333333333333],[119,158,67,-0.4583333333333333],[119,158,68,-0.4583333333333333],[119,158,69,-0.4583333333333333],[119,158,70,-0.4583333333333333],[119,158,71,-0.4583333333333333],[119,158,72,-0.4583333333333333],[119,158,73,-0.4583333333333333],[119,158,74,-0.4583333333333333],[119,158,75,-0.4583333333333333],[119,158,76,-0.4583333333333333],[119,158,77,-0.4583333333333333],[119,158,78,-0.4583333333333333],[119,158,79,-0.4583333333333333],[119,159,64,-0.4583333333333333],[119,159,65,-0.4583333333333333],[119,159,66,-0.4583333333333333],[119,159,67,-0.4583333333333333],[119,159,68,-0.4583333333333333],[119,159,69,-0.4583333333333333],[119,159,70,-0.4583333333333333],[119,159,71,-0.4583333333333333],[119,159,72,-0.4583333333333333],[119,159,73,-0.4583333333333333],[119,159,74,-0.4583333333333333],[119,159,75,-0.4583333333333333],[119,159,76,-0.4583333333333333],[119,159,77,-0.4583333333333333],[119,159,78,-0.4583333333333333],[119,159,79,-0.4583333333333333],[119,160,64,-0.4583333333333333],[119,160,65,-0.4583333333333333],[119,160,66,-0.4583333333333333],[119,160,67,-0.4583333333333333],[119,160,68,-0.4583333333333333],[119,160,69,-0.4583333333333333],[119,160,70,-0.4583333333333333],[119,160,71,-0.4583333333333333],[119,160,72,-0.4583333333333333],[119,160,73,-0.4583333333333333],[119,160,74,-0.4583333333333333],[119,160,75,-0.4583333333333333],[119,160,76,-0.4583333333333333],[119,160,77,-0.4583333333333333],[119,160,78,-0.4583333333333333],[119,160,79,-0.4583333333333333],[119,161,64,-0.4583333333333333],[119,161,65,-0.4583333333333333],[119,161,66,-0.4583333333333333],[119,161,67,-0.4583333333333333],[119,161,68,-0.4583333333333333],[119,161,69,-0.4583333333333333],[119,161,70,-0.4583333333333333],[119,161,71,-0.4583333333333333],[119,161,72,-0.4583333333333333],[119,161,73,-0.4583333333333333],[119,161,74,-0.4583333333333333],[119,161,75,-0.4583333333333333],[119,161,76,-0.4583333333333333],[119,161,77,-0.4583333333333333],[119,161,78,-0.4583333333333333],[119,161,79,-0.4583333333333333],[119,162,64,-0.4583333333333333],[119,162,65,-0.4583333333333333],[119,162,66,-0.4583333333333333],[119,162,67,-0.4583333333333333],[119,162,68,-0.4583333333333333],[119,162,69,-0.4583333333333333],[119,162,70,-0.4583333333333333],[119,162,71,-0.4583333333333333],[119,162,72,-0.4583333333333333],[119,162,73,-0.4583333333333333],[119,162,74,-0.4583333333333333],[119,162,75,-0.4583333333333333],[119,162,76,-0.4583333333333333],[119,162,77,-0.4583333333333333],[119,162,78,-0.4583333333333333],[119,162,79,-0.4583333333333333],[119,163,64,-0.4583333333333333],[119,163,65,-0.4583333333333333],[119,163,66,-0.4583333333333333],[119,163,67,-0.4583333333333333],[119,163,68,-0.4583333333333333],[119,163,69,-0.4583333333333333],[119,163,70,-0.4583333333333333],[119,163,71,-0.4583333333333333],[119,163,72,-0.4583333333333333],[119,163,73,-0.4583333333333333],[119,163,74,-0.4583333333333333],[119,163,75,-0.4583333333333333],[119,163,76,-0.4583333333333333],[119,163,77,-0.4583333333333333],[119,163,78,-0.4583333333333333],[119,163,79,-0.4583333333333333],[119,164,64,-0.4583333333333333],[119,164,65,-0.4583333333333333],[119,164,66,-0.4583333333333333],[119,164,67,-0.4583333333333333],[119,164,68,-0.4583333333333333],[119,164,69,-0.4583333333333333],[119,164,70,-0.4583333333333333],[119,164,71,-0.4583333333333333],[119,164,72,-0.4583333333333333],[119,164,73,-0.4583333333333333],[119,164,74,-0.4583333333333333],[119,164,75,-0.4583333333333333],[119,164,76,-0.4583333333333333],[119,164,77,-0.4583333333333333],[119,164,78,-0.4583333333333333],[119,164,79,-0.4583333333333333],[119,165,64,-0.4583333333333333],[119,165,65,-0.4583333333333333],[119,165,66,-0.4583333333333333],[119,165,67,-0.4583333333333333],[119,165,68,-0.4583333333333333],[119,165,69,-0.4583333333333333],[119,165,70,-0.4583333333333333],[119,165,71,-0.4583333333333333],[119,165,72,-0.4583333333333333],[119,165,73,-0.4583333333333333],[119,165,74,-0.4583333333333333],[119,165,75,-0.4583333333333333],[119,165,76,-0.4583333333333333],[119,165,77,-0.4583333333333333],[119,165,78,-0.4583333333333333],[119,165,79,-0.4583333333333333],[119,166,64,-0.4583333333333333],[119,166,65,-0.4583333333333333],[119,166,66,-0.4583333333333333],[119,166,67,-0.4583333333333333],[119,166,68,-0.4583333333333333],[119,166,69,-0.4583333333333333],[119,166,70,-0.4583333333333333],[119,166,71,-0.4583333333333333],[119,166,72,-0.4583333333333333],[119,166,73,-0.4583333333333333],[119,166,74,-0.4583333333333333],[119,166,75,-0.4583333333333333],[119,166,76,-0.4583333333333333],[119,166,77,-0.4583333333333333],[119,166,78,-0.4583333333333333],[119,166,79,-0.4583333333333333],[119,167,64,-0.4583333333333333],[119,167,65,-0.4583333333333333],[119,167,66,-0.4583333333333333],[119,167,67,-0.4583333333333333],[119,167,68,-0.4583333333333333],[119,167,69,-0.4583333333333333],[119,167,70,-0.4583333333333333],[119,167,71,-0.4583333333333333],[119,167,72,-0.4583333333333333],[119,167,73,-0.4583333333333333],[119,167,74,-0.4583333333333333],[119,167,75,-0.4583333333333333],[119,167,76,-0.4583333333333333],[119,167,77,-0.4583333333333333],[119,167,78,-0.4583333333333333],[119,167,79,-0.4583333333333333],[119,168,64,-0.4583333333333333],[119,168,65,-0.4583333333333333],[119,168,66,-0.4583333333333333],[119,168,67,-0.4583333333333333],[119,168,68,-0.4583333333333333],[119,168,69,-0.4583333333333333],[119,168,70,-0.4583333333333333],[119,168,71,-0.4583333333333333],[119,168,72,-0.4583333333333333],[119,168,73,-0.4583333333333333],[119,168,74,-0.4583333333333333],[119,168,75,-0.4583333333333333],[119,168,76,-0.4583333333333333],[119,168,77,-0.4583333333333333],[119,168,78,-0.4583333333333333],[119,168,79,-0.4583333333333333],[119,169,64,-0.4583333333333333],[119,169,65,-0.4583333333333333],[119,169,66,-0.4583333333333333],[119,169,67,-0.4583333333333333],[119,169,68,-0.4583333333333333],[119,169,69,-0.4583333333333333],[119,169,70,-0.4583333333333333],[119,169,71,-0.4583333333333333],[119,169,72,-0.4583333333333333],[119,169,73,-0.4583333333333333],[119,169,74,-0.4583333333333333],[119,169,75,-0.4583333333333333],[119,169,76,-0.4583333333333333],[119,169,77,-0.4583333333333333],[119,169,78,-0.4583333333333333],[119,169,79,-0.4583333333333333],[119,170,64,-0.4583333333333333],[119,170,65,-0.4583333333333333],[119,170,66,-0.4583333333333333],[119,170,67,-0.4583333333333333],[119,170,68,-0.4583333333333333],[119,170,69,-0.4583333333333333],[119,170,70,-0.4583333333333333],[119,170,71,-0.4583333333333333],[119,170,72,-0.4583333333333333],[119,170,73,-0.4583333333333333],[119,170,74,-0.4583333333333333],[119,170,75,-0.4583333333333333],[119,170,76,-0.4583333333333333],[119,170,77,-0.4583333333333333],[119,170,78,-0.4583333333333333],[119,170,79,-0.4583333333333333],[119,171,64,-0.4583333333333333],[119,171,65,-0.4583333333333333],[119,171,66,-0.4583333333333333],[119,171,67,-0.4583333333333333],[119,171,68,-0.4583333333333333],[119,171,69,-0.4583333333333333],[119,171,70,-0.4583333333333333],[119,171,71,-0.4583333333333333],[119,171,72,-0.4583333333333333],[119,171,73,-0.4583333333333333],[119,171,74,-0.4583333333333333],[119,171,75,-0.4583333333333333],[119,171,76,-0.4583333333333333],[119,171,77,-0.4583333333333333],[119,171,78,-0.4583333333333333],[119,171,79,-0.4583333333333333],[119,172,64,-0.4583333333333333],[119,172,65,-0.4583333333333333],[119,172,66,-0.4583333333333333],[119,172,67,-0.4583333333333333],[119,172,68,-0.4583333333333333],[119,172,69,-0.4583333333333333],[119,172,70,-0.4583333333333333],[119,172,71,-0.4583333333333333],[119,172,72,-0.4583333333333333],[119,172,73,-0.4583333333333333],[119,172,74,-0.4583333333333333],[119,172,75,-0.4583333333333333],[119,172,76,-0.4583333333333333],[119,172,77,-0.4583333333333333],[119,172,78,-0.4583333333333333],[119,172,79,-0.4583333333333333],[119,173,64,-0.4583333333333333],[119,173,65,-0.4583333333333333],[119,173,66,-0.4583333333333333],[119,173,67,-0.4583333333333333],[119,173,68,-0.4583333333333333],[119,173,69,-0.4583333333333333],[119,173,70,-0.4583333333333333],[119,173,71,-0.4583333333333333],[119,173,72,-0.4583333333333333],[119,173,73,-0.4583333333333333],[119,173,74,-0.4583333333333333],[119,173,75,-0.4583333333333333],[119,173,76,-0.4583333333333333],[119,173,77,-0.4583333333333333],[119,173,78,-0.4583333333333333],[119,173,79,-0.4583333333333333],[119,174,64,-0.4583333333333333],[119,174,65,-0.4583333333333333],[119,174,66,-0.4583333333333333],[119,174,67,-0.4583333333333333],[119,174,68,-0.4583333333333333],[119,174,69,-0.4583333333333333],[119,174,70,-0.4583333333333333],[119,174,71,-0.4583333333333333],[119,174,72,-0.4583333333333333],[119,174,73,-0.4583333333333333],[119,174,74,-0.4583333333333333],[119,174,75,-0.4583333333333333],[119,174,76,-0.4583333333333333],[119,174,77,-0.4583333333333333],[119,174,78,-0.4583333333333333],[119,174,79,-0.4583333333333333],[119,175,64,-0.4583333333333333],[119,175,65,-0.4583333333333333],[119,175,66,-0.4583333333333333],[119,175,67,-0.4583333333333333],[119,175,68,-0.4583333333333333],[119,175,69,-0.4583333333333333],[119,175,70,-0.4583333333333333],[119,175,71,-0.4583333333333333],[119,175,72,-0.4583333333333333],[119,175,73,-0.4583333333333333],[119,175,74,-0.4583333333333333],[119,175,75,-0.4583333333333333],[119,175,76,-0.4583333333333333],[119,175,77,-0.4583333333333333],[119,175,78,-0.4583333333333333],[119,175,79,-0.4583333333333333],[119,176,64,-0.4583333333333333],[119,176,65,-0.4583333333333333],[119,176,66,-0.4583333333333333],[119,176,67,-0.4583333333333333],[119,176,68,-0.4583333333333333],[119,176,69,-0.4583333333333333],[119,176,70,-0.4583333333333333],[119,176,71,-0.4583333333333333],[119,176,72,-0.4583333333333333],[119,176,73,-0.4583333333333333],[119,176,74,-0.4583333333333333],[119,176,75,-0.4583333333333333],[119,176,76,-0.4583333333333333],[119,176,77,-0.4583333333333333],[119,176,78,-0.4583333333333333],[119,176,79,-0.4583333333333333],[119,177,64,-0.4583333333333333],[119,177,65,-0.4583333333333333],[119,177,66,-0.4583333333333333],[119,177,67,-0.4583333333333333],[119,177,68,-0.4583333333333333],[119,177,69,-0.4583333333333333],[119,177,70,-0.4583333333333333],[119,177,71,-0.4583333333333333],[119,177,72,-0.4583333333333333],[119,177,73,-0.4583333333333333],[119,177,74,-0.4583333333333333],[119,177,75,-0.4583333333333333],[119,177,76,-0.4583333333333333],[119,177,77,-0.4583333333333333],[119,177,78,-0.4583333333333333],[119,177,79,-0.4583333333333333],[119,178,64,-0.4583333333333333],[119,178,65,-0.4583333333333333],[119,178,66,-0.4583333333333333],[119,178,67,-0.4583333333333333],[119,178,68,-0.4583333333333333],[119,178,69,-0.4583333333333333],[119,178,70,-0.4583333333333333],[119,178,71,-0.4583333333333333],[119,178,72,-0.4583333333333333],[119,178,73,-0.4583333333333333],[119,178,74,-0.4583333333333333],[119,178,75,-0.4583333333333333],[119,178,76,-0.4583333333333333],[119,178,77,-0.4583333333333333],[119,178,78,-0.4583333333333333],[119,178,79,-0.4583333333333333],[119,179,64,-0.4583333333333333],[119,179,65,-0.4583333333333333],[119,179,66,-0.4583333333333333],[119,179,67,-0.4583333333333333],[119,179,68,-0.4583333333333333],[119,179,69,-0.4583333333333333],[119,179,70,-0.4583333333333333],[119,179,71,-0.4583333333333333],[119,179,72,-0.4583333333333333],[119,179,73,-0.4583333333333333],[119,179,74,-0.4583333333333333],[119,179,75,-0.4583333333333333],[119,179,76,-0.4583333333333333],[119,179,77,-0.4583333333333333],[119,179,78,-0.4583333333333333],[119,179,79,-0.4583333333333333],[119,180,64,-0.4583333333333333],[119,180,65,-0.4583333333333333],[119,180,66,-0.4583333333333333],[119,180,67,-0.4583333333333333],[119,180,68,-0.4583333333333333],[119,180,69,-0.4583333333333333],[119,180,70,-0.4583333333333333],[119,180,71,-0.4583333333333333],[119,180,72,-0.4583333333333333],[119,180,73,-0.4583333333333333],[119,180,74,-0.4583333333333333],[119,180,75,-0.4583333333333333],[119,180,76,-0.4583333333333333],[119,180,77,-0.4583333333333333],[119,180,78,-0.4583333333333333],[119,180,79,-0.4583333333333333],[119,181,64,-0.4583333333333333],[119,181,65,-0.4583333333333333],[119,181,66,-0.4583333333333333],[119,181,67,-0.4583333333333333],[119,181,68,-0.4583333333333333],[119,181,69,-0.4583333333333333],[119,181,70,-0.4583333333333333],[119,181,71,-0.4583333333333333],[119,181,72,-0.4583333333333333],[119,181,73,-0.4583333333333333],[119,181,74,-0.4583333333333333],[119,181,75,-0.4583333333333333],[119,181,76,-0.4583333333333333],[119,181,77,-0.4583333333333333],[119,181,78,-0.4583333333333333],[119,181,79,-0.4583333333333333],[119,182,64,-0.4583333333333333],[119,182,65,-0.4583333333333333],[119,182,66,-0.4583333333333333],[119,182,67,-0.4583333333333333],[119,182,68,-0.4583333333333333],[119,182,69,-0.4583333333333333],[119,182,70,-0.4583333333333333],[119,182,71,-0.4583333333333333],[119,182,72,-0.4583333333333333],[119,182,73,-0.4583333333333333],[119,182,74,-0.4583333333333333],[119,182,75,-0.4583333333333333],[119,182,76,-0.4583333333333333],[119,182,77,-0.4583333333333333],[119,182,78,-0.4583333333333333],[119,182,79,-0.4583333333333333],[119,183,64,-0.4583333333333333],[119,183,65,-0.4583333333333333],[119,183,66,-0.4583333333333333],[119,183,67,-0.4583333333333333],[119,183,68,-0.4583333333333333],[119,183,69,-0.4583333333333333],[119,183,70,-0.4583333333333333],[119,183,71,-0.4583333333333333],[119,183,72,-0.4583333333333333],[119,183,73,-0.4583333333333333],[119,183,74,-0.4583333333333333],[119,183,75,-0.4583333333333333],[119,183,76,-0.4583333333333333],[119,183,77,-0.4583333333333333],[119,183,78,-0.4583333333333333],[119,183,79,-0.4583333333333333],[119,184,64,-0.4583333333333333],[119,184,65,-0.4583333333333333],[119,184,66,-0.4583333333333333],[119,184,67,-0.4583333333333333],[119,184,68,-0.4583333333333333],[119,184,69,-0.4583333333333333],[119,184,70,-0.4583333333333333],[119,184,71,-0.4583333333333333],[119,184,72,-0.4583333333333333],[119,184,73,-0.4583333333333333],[119,184,74,-0.4583333333333333],[119,184,75,-0.4583333333333333],[119,184,76,-0.4583333333333333],[119,184,77,-0.4583333333333333],[119,184,78,-0.4583333333333333],[119,184,79,-0.4583333333333333],[119,185,64,-0.4583333333333333],[119,185,65,-0.4583333333333333],[119,185,66,-0.4583333333333333],[119,185,67,-0.4583333333333333],[119,185,68,-0.4583333333333333],[119,185,69,-0.4583333333333333],[119,185,70,-0.4583333333333333],[119,185,71,-0.4583333333333333],[119,185,72,-0.4583333333333333],[119,185,73,-0.4583333333333333],[119,185,74,-0.4583333333333333],[119,185,75,-0.4583333333333333],[119,185,76,-0.4583333333333333],[119,185,77,-0.4583333333333333],[119,185,78,-0.4583333333333333],[119,185,79,-0.4583333333333333],[119,186,64,-0.4583333333333333],[119,186,65,-0.4583333333333333],[119,186,66,-0.4583333333333333],[119,186,67,-0.4583333333333333],[119,186,68,-0.4583333333333333],[119,186,69,-0.4583333333333333],[119,186,70,-0.4583333333333333],[119,186,71,-0.4583333333333333],[119,186,72,-0.4583333333333333],[119,186,73,-0.4583333333333333],[119,186,74,-0.4583333333333333],[119,186,75,-0.4583333333333333],[119,186,76,-0.4583333333333333],[119,186,77,-0.4583333333333333],[119,186,78,-0.4583333333333333],[119,186,79,-0.4583333333333333],[119,187,64,-0.4583333333333333],[119,187,65,-0.4583333333333333],[119,187,66,-0.4583333333333333],[119,187,67,-0.4583333333333333],[119,187,68,-0.4583333333333333],[119,187,69,-0.4583333333333333],[119,187,70,-0.4583333333333333],[119,187,71,-0.4583333333333333],[119,187,72,-0.4583333333333333],[119,187,73,-0.4583333333333333],[119,187,74,-0.4583333333333333],[119,187,75,-0.4583333333333333],[119,187,76,-0.4583333333333333],[119,187,77,-0.4583333333333333],[119,187,78,-0.4583333333333333],[119,187,79,-0.4583333333333333],[119,188,64,-0.4583333333333333],[119,188,65,-0.4583333333333333],[119,188,66,-0.4583333333333333],[119,188,67,-0.4583333333333333],[119,188,68,-0.4583333333333333],[119,188,69,-0.4583333333333333],[119,188,70,-0.4583333333333333],[119,188,71,-0.4583333333333333],[119,188,72,-0.4583333333333333],[119,188,73,-0.4583333333333333],[119,188,74,-0.4583333333333333],[119,188,75,-0.4583333333333333],[119,188,76,-0.4583333333333333],[119,188,77,-0.4583333333333333],[119,188,78,-0.4583333333333333],[119,188,79,-0.4583333333333333],[119,189,64,-0.4583333333333333],[119,189,65,-0.4583333333333333],[119,189,66,-0.4583333333333333],[119,189,67,-0.4583333333333333],[119,189,68,-0.4583333333333333],[119,189,69,-0.4583333333333333],[119,189,70,-0.4583333333333333],[119,189,71,-0.4583333333333333],[119,189,72,-0.4583333333333333],[119,189,73,-0.4583333333333333],[119,189,74,-0.4583333333333333],[119,189,75,-0.4583333333333333],[119,189,76,-0.4583333333333333],[119,189,77,-0.4583333333333333],[119,189,78,-0.4583333333333333],[119,189,79,-0.4583333333333333],[119,190,64,-0.4583333333333333],[119,190,65,-0.4583333333333333],[119,190,66,-0.4583333333333333],[119,190,67,-0.4583333333333333],[119,190,68,-0.4583333333333333],[119,190,69,-0.4583333333333333],[119,190,70,-0.4583333333333333],[119,190,71,-0.4583333333333333],[119,190,72,-0.4583333333333333],[119,190,73,-0.4583333333333333],[119,190,74,-0.4583333333333333],[119,190,75,-0.4583333333333333],[119,190,76,-0.4583333333333333],[119,190,77,-0.4583333333333333],[119,190,78,-0.4583333333333333],[119,190,79,-0.4583333333333333],[119,191,64,-0.4583333333333333],[119,191,65,-0.4583333333333333],[119,191,66,-0.4583333333333333],[119,191,67,-0.4583333333333333],[119,191,68,-0.4583333333333333],[119,191,69,-0.4583333333333333],[119,191,70,-0.4583333333333333],[119,191,71,-0.4583333333333333],[119,191,72,-0.4583333333333333],[119,191,73,-0.4583333333333333],[119,191,74,-0.4583333333333333],[119,191,75,-0.4583333333333333],[119,191,76,-0.4583333333333333],[119,191,77,-0.4583333333333333],[119,191,78,-0.4583333333333333],[119,191,79,-0.4583333333333333],[119,192,64,-0.4583333333333333],[119,192,65,-0.4583333333333333],[119,192,66,-0.4583333333333333],[119,192,67,-0.4583333333333333],[119,192,68,-0.4583333333333333],[119,192,69,-0.4583333333333333],[119,192,70,-0.4583333333333333],[119,192,71,-0.4583333333333333],[119,192,72,-0.4583333333333333],[119,192,73,-0.4583333333333333],[119,192,74,-0.4583333333333333],[119,192,75,-0.4583333333333333],[119,192,76,-0.4583333333333333],[119,192,77,-0.4583333333333333],[119,192,78,-0.4583333333333333],[119,192,79,-0.4583333333333333],[119,193,64,-0.4583333333333333],[119,193,65,-0.4583333333333333],[119,193,66,-0.4583333333333333],[119,193,67,-0.4583333333333333],[119,193,68,-0.4583333333333333],[119,193,69,-0.4583333333333333],[119,193,70,-0.4583333333333333],[119,193,71,-0.4583333333333333],[119,193,72,-0.4583333333333333],[119,193,73,-0.4583333333333333],[119,193,74,-0.4583333333333333],[119,193,75,-0.4583333333333333],[119,193,76,-0.4583333333333333],[119,193,77,-0.4583333333333333],[119,193,78,-0.4583333333333333],[119,193,79,-0.4583333333333333],[119,194,64,-0.4583333333333333],[119,194,65,-0.4583333333333333],[119,194,66,-0.4583333333333333],[119,194,67,-0.4583333333333333],[119,194,68,-0.4583333333333333],[119,194,69,-0.4583333333333333],[119,194,70,-0.4583333333333333],[119,194,71,-0.4583333333333333],[119,194,72,-0.4583333333333333],[119,194,73,-0.4583333333333333],[119,194,74,-0.4583333333333333],[119,194,75,-0.4583333333333333],[119,194,76,-0.4583333333333333],[119,194,77,-0.4583333333333333],[119,194,78,-0.4583333333333333],[119,194,79,-0.4583333333333333],[119,195,64,-0.4583333333333333],[119,195,65,-0.4583333333333333],[119,195,66,-0.4583333333333333],[119,195,67,-0.4583333333333333],[119,195,68,-0.4583333333333333],[119,195,69,-0.4583333333333333],[119,195,70,-0.4583333333333333],[119,195,71,-0.4583333333333333],[119,195,72,-0.4583333333333333],[119,195,73,-0.4583333333333333],[119,195,74,-0.4583333333333333],[119,195,75,-0.4583333333333333],[119,195,76,-0.4583333333333333],[119,195,77,-0.4583333333333333],[119,195,78,-0.4583333333333333],[119,195,79,-0.4583333333333333],[119,196,64,-0.4583333333333333],[119,196,65,-0.4583333333333333],[119,196,66,-0.4583333333333333],[119,196,67,-0.4583333333333333],[119,196,68,-0.4583333333333333],[119,196,69,-0.4583333333333333],[119,196,70,-0.4583333333333333],[119,196,71,-0.4583333333333333],[119,196,72,-0.4583333333333333],[119,196,73,-0.4583333333333333],[119,196,74,-0.4583333333333333],[119,196,75,-0.4583333333333333],[119,196,76,-0.4583333333333333],[119,196,77,-0.4583333333333333],[119,196,78,-0.4583333333333333],[119,196,79,-0.4583333333333333],[119,197,64,-0.4583333333333333],[119,197,65,-0.4583333333333333],[119,197,66,-0.4583333333333333],[119,197,67,-0.4583333333333333],[119,197,68,-0.4583333333333333],[119,197,69,-0.4583333333333333],[119,197,70,-0.4583333333333333],[119,197,71,-0.4583333333333333],[119,197,72,-0.4583333333333333],[119,197,73,-0.4583333333333333],[119,197,74,-0.4583333333333333],[119,197,75,-0.4583333333333333],[119,197,76,-0.4583333333333333],[119,197,77,-0.4583333333333333],[119,197,78,-0.4583333333333333],[119,197,79,-0.4583333333333333],[119,198,64,-0.4583333333333333],[119,198,65,-0.4583333333333333],[119,198,66,-0.4583333333333333],[119,198,67,-0.4583333333333333],[119,198,68,-0.4583333333333333],[119,198,69,-0.4583333333333333],[119,198,70,-0.4583333333333333],[119,198,71,-0.4583333333333333],[119,198,72,-0.4583333333333333],[119,198,73,-0.4583333333333333],[119,198,74,-0.4583333333333333],[119,198,75,-0.4583333333333333],[119,198,76,-0.4583333333333333],[119,198,77,-0.4583333333333333],[119,198,78,-0.4583333333333333],[119,198,79,-0.4583333333333333],[119,199,64,-0.4583333333333333],[119,199,65,-0.4583333333333333],[119,199,66,-0.4583333333333333],[119,199,67,-0.4583333333333333],[119,199,68,-0.4583333333333333],[119,199,69,-0.4583333333333333],[119,199,70,-0.4583333333333333],[119,199,71,-0.4583333333333333],[119,199,72,-0.4583333333333333],[119,199,73,-0.4583333333333333],[119,199,74,-0.4583333333333333],[119,199,75,-0.4583333333333333],[119,199,76,-0.4583333333333333],[119,199,77,-0.4583333333333333],[119,199,78,-0.4583333333333333],[119,199,79,-0.4583333333333333],[119,200,64,-0.4583333333333333],[119,200,65,-0.4583333333333333],[119,200,66,-0.4583333333333333],[119,200,67,-0.4583333333333333],[119,200,68,-0.4583333333333333],[119,200,69,-0.4583333333333333],[119,200,70,-0.4583333333333333],[119,200,71,-0.4583333333333333],[119,200,72,-0.4583333333333333],[119,200,73,-0.4583333333333333],[119,200,74,-0.4583333333333333],[119,200,75,-0.4583333333333333],[119,200,76,-0.4583333333333333],[119,200,77,-0.4583333333333333],[119,200,78,-0.4583333333333333],[119,200,79,-0.4583333333333333],[119,201,64,-0.4583333333333333],[119,201,65,-0.4583333333333333],[119,201,66,-0.4583333333333333],[119,201,67,-0.4583333333333333],[119,201,68,-0.4583333333333333],[119,201,69,-0.4583333333333333],[119,201,70,-0.4583333333333333],[119,201,71,-0.4583333333333333],[119,201,72,-0.4583333333333333],[119,201,73,-0.4583333333333333],[119,201,74,-0.4583333333333333],[119,201,75,-0.4583333333333333],[119,201,76,-0.4583333333333333],[119,201,77,-0.4583333333333333],[119,201,78,-0.4583333333333333],[119,201,79,-0.4583333333333333],[119,202,64,-0.4583333333333333],[119,202,65,-0.4583333333333333],[119,202,66,-0.4583333333333333],[119,202,67,-0.4583333333333333],[119,202,68,-0.4583333333333333],[119,202,69,-0.4583333333333333],[119,202,70,-0.4583333333333333],[119,202,71,-0.4583333333333333],[119,202,72,-0.4583333333333333],[119,202,73,-0.4583333333333333],[119,202,74,-0.4583333333333333],[119,202,75,-0.4583333333333333],[119,202,76,-0.4583333333333333],[119,202,77,-0.4583333333333333],[119,202,78,-0.4583333333333333],[119,202,79,-0.4583333333333333],[119,203,64,-0.4583333333333333],[119,203,65,-0.4583333333333333],[119,203,66,-0.4583333333333333],[119,203,67,-0.4583333333333333],[119,203,68,-0.4583333333333333],[119,203,69,-0.4583333333333333],[119,203,70,-0.4583333333333333],[119,203,71,-0.4583333333333333],[119,203,72,-0.4583333333333333],[119,203,73,-0.4583333333333333],[119,203,74,-0.4583333333333333],[119,203,75,-0.4583333333333333],[119,203,76,-0.4583333333333333],[119,203,77,-0.4583333333333333],[119,203,78,-0.4583333333333333],[119,203,79,-0.4583333333333333],[119,204,64,-0.4583333333333333],[119,204,65,-0.4583333333333333],[119,204,66,-0.4583333333333333],[119,204,67,-0.4583333333333333],[119,204,68,-0.4583333333333333],[119,204,69,-0.4583333333333333],[119,204,70,-0.4583333333333333],[119,204,71,-0.4583333333333333],[119,204,72,-0.4583333333333333],[119,204,73,-0.4583333333333333],[119,204,74,-0.4583333333333333],[119,204,75,-0.4583333333333333],[119,204,76,-0.4583333333333333],[119,204,77,-0.4583333333333333],[119,204,78,-0.4583333333333333],[119,204,79,-0.4583333333333333],[119,205,64,-0.4583333333333333],[119,205,65,-0.4583333333333333],[119,205,66,-0.4583333333333333],[119,205,67,-0.4583333333333333],[119,205,68,-0.4583333333333333],[119,205,69,-0.4583333333333333],[119,205,70,-0.4583333333333333],[119,205,71,-0.4583333333333333],[119,205,72,-0.4583333333333333],[119,205,73,-0.4583333333333333],[119,205,74,-0.4583333333333333],[119,205,75,-0.4583333333333333],[119,205,76,-0.4583333333333333],[119,205,77,-0.4583333333333333],[119,205,78,-0.4583333333333333],[119,205,79,-0.4583333333333333],[119,206,64,-0.4583333333333333],[119,206,65,-0.4583333333333333],[119,206,66,-0.4583333333333333],[119,206,67,-0.4583333333333333],[119,206,68,-0.4583333333333333],[119,206,69,-0.4583333333333333],[119,206,70,-0.4583333333333333],[119,206,71,-0.4583333333333333],[119,206,72,-0.4583333333333333],[119,206,73,-0.4583333333333333],[119,206,74,-0.4583333333333333],[119,206,75,-0.4583333333333333],[119,206,76,-0.4583333333333333],[119,206,77,-0.4583333333333333],[119,206,78,-0.4583333333333333],[119,206,79,-0.4583333333333333],[119,207,64,-0.4583333333333333],[119,207,65,-0.4583333333333333],[119,207,66,-0.4583333333333333],[119,207,67,-0.4583333333333333],[119,207,68,-0.4583333333333333],[119,207,69,-0.4583333333333333],[119,207,70,-0.4583333333333333],[119,207,71,-0.4583333333333333],[119,207,72,-0.4583333333333333],[119,207,73,-0.4583333333333333],[119,207,74,-0.4583333333333333],[119,207,75,-0.4583333333333333],[119,207,76,-0.4583333333333333],[119,207,77,-0.4583333333333333],[119,207,78,-0.4583333333333333],[119,207,79,-0.4583333333333333],[119,208,64,-0.4583333333333333],[119,208,65,-0.4583333333333333],[119,208,66,-0.4583333333333333],[119,208,67,-0.4583333333333333],[119,208,68,-0.4583333333333333],[119,208,69,-0.4583333333333333],[119,208,70,-0.4583333333333333],[119,208,71,-0.4583333333333333],[119,208,72,-0.4583333333333333],[119,208,73,-0.4583333333333333],[119,208,74,-0.4583333333333333],[119,208,75,-0.4583333333333333],[119,208,76,-0.4583333333333333],[119,208,77,-0.4583333333333333],[119,208,78,-0.4583333333333333],[119,208,79,-0.4583333333333333],[119,209,64,-0.4583333333333333],[119,209,65,-0.4583333333333333],[119,209,66,-0.4583333333333333],[119,209,67,-0.4583333333333333],[119,209,68,-0.4583333333333333],[119,209,69,-0.4583333333333333],[119,209,70,-0.4583333333333333],[119,209,71,-0.4583333333333333],[119,209,72,-0.4583333333333333],[119,209,73,-0.4583333333333333],[119,209,74,-0.4583333333333333],[119,209,75,-0.4583333333333333],[119,209,76,-0.4583333333333333],[119,209,77,-0.4583333333333333],[119,209,78,-0.4583333333333333],[119,209,79,-0.4583333333333333],[119,210,64,-0.4583333333333333],[119,210,65,-0.4583333333333333],[119,210,66,-0.4583333333333333],[119,210,67,-0.4583333333333333],[119,210,68,-0.4583333333333333],[119,210,69,-0.4583333333333333],[119,210,70,-0.4583333333333333],[119,210,71,-0.4583333333333333],[119,210,72,-0.4583333333333333],[119,210,73,-0.4583333333333333],[119,210,74,-0.4583333333333333],[119,210,75,-0.4583333333333333],[119,210,76,-0.4583333333333333],[119,210,77,-0.4583333333333333],[119,210,78,-0.4583333333333333],[119,210,79,-0.4583333333333333],[119,211,64,-0.4583333333333333],[119,211,65,-0.4583333333333333],[119,211,66,-0.4583333333333333],[119,211,67,-0.4583333333333333],[119,211,68,-0.4583333333333333],[119,211,69,-0.4583333333333333],[119,211,70,-0.4583333333333333],[119,211,71,-0.4583333333333333],[119,211,72,-0.4583333333333333],[119,211,73,-0.4583333333333333],[119,211,74,-0.4583333333333333],[119,211,75,-0.4583333333333333],[119,211,76,-0.4583333333333333],[119,211,77,-0.4583333333333333],[119,211,78,-0.4583333333333333],[119,211,79,-0.4583333333333333],[119,212,64,-0.4583333333333333],[119,212,65,-0.4583333333333333],[119,212,66,-0.4583333333333333],[119,212,67,-0.4583333333333333],[119,212,68,-0.4583333333333333],[119,212,69,-0.4583333333333333],[119,212,70,-0.4583333333333333],[119,212,71,-0.4583333333333333],[119,212,72,-0.4583333333333333],[119,212,73,-0.4583333333333333],[119,212,74,-0.4583333333333333],[119,212,75,-0.4583333333333333],[119,212,76,-0.4583333333333333],[119,212,77,-0.4583333333333333],[119,212,78,-0.4583333333333333],[119,212,79,-0.4583333333333333],[119,213,64,-0.4583333333333333],[119,213,65,-0.4583333333333333],[119,213,66,-0.4583333333333333],[119,213,67,-0.4583333333333333],[119,213,68,-0.4583333333333333],[119,213,69,-0.4583333333333333],[119,213,70,-0.4583333333333333],[119,213,71,-0.4583333333333333],[119,213,72,-0.4583333333333333],[119,213,73,-0.4583333333333333],[119,213,74,-0.4583333333333333],[119,213,75,-0.4583333333333333],[119,213,76,-0.4583333333333333],[119,213,77,-0.4583333333333333],[119,213,78,-0.4583333333333333],[119,213,79,-0.4583333333333333],[119,214,64,-0.4583333333333333],[119,214,65,-0.4583333333333333],[119,214,66,-0.4583333333333333],[119,214,67,-0.4583333333333333],[119,214,68,-0.4583333333333333],[119,214,69,-0.4583333333333333],[119,214,70,-0.4583333333333333],[119,214,71,-0.4583333333333333],[119,214,72,-0.4583333333333333],[119,214,73,-0.4583333333333333],[119,214,74,-0.4583333333333333],[119,214,75,-0.4583333333333333],[119,214,76,-0.4583333333333333],[119,214,77,-0.4583333333333333],[119,214,78,-0.4583333333333333],[119,214,79,-0.4583333333333333],[119,215,64,-0.4583333333333333],[119,215,65,-0.4583333333333333],[119,215,66,-0.4583333333333333],[119,215,67,-0.4583333333333333],[119,215,68,-0.4583333333333333],[119,215,69,-0.4583333333333333],[119,215,70,-0.4583333333333333],[119,215,71,-0.4583333333333333],[119,215,72,-0.4583333333333333],[119,215,73,-0.4583333333333333],[119,215,74,-0.4583333333333333],[119,215,75,-0.4583333333333333],[119,215,76,-0.4583333333333333],[119,215,77,-0.4583333333333333],[119,215,78,-0.4583333333333333],[119,215,79,-0.4583333333333333],[119,216,64,-0.4583333333333333],[119,216,65,-0.4583333333333333],[119,216,66,-0.4583333333333333],[119,216,67,-0.4583333333333333],[119,216,68,-0.4583333333333333],[119,216,69,-0.4583333333333333],[119,216,70,-0.4583333333333333],[119,216,71,-0.4583333333333333],[119,216,72,-0.4583333333333333],[119,216,73,-0.4583333333333333],[119,216,74,-0.4583333333333333],[119,216,75,-0.4583333333333333],[119,216,76,-0.4583333333333333],[119,216,77,-0.4583333333333333],[119,216,78,-0.4583333333333333],[119,216,79,-0.4583333333333333],[119,217,64,-0.4583333333333333],[119,217,65,-0.4583333333333333],[119,217,66,-0.4583333333333333],[119,217,67,-0.4583333333333333],[119,217,68,-0.4583333333333333],[119,217,69,-0.4583333333333333],[119,217,70,-0.4583333333333333],[119,217,71,-0.4583333333333333],[119,217,72,-0.4583333333333333],[119,217,73,-0.4583333333333333],[119,217,74,-0.4583333333333333],[119,217,75,-0.4583333333333333],[119,217,76,-0.4583333333333333],[119,217,77,-0.4583333333333333],[119,217,78,-0.4583333333333333],[119,217,79,-0.4583333333333333],[119,218,64,-0.4583333333333333],[119,218,65,-0.4583333333333333],[119,218,66,-0.4583333333333333],[119,218,67,-0.4583333333333333],[119,218,68,-0.4583333333333333],[119,218,69,-0.4583333333333333],[119,218,70,-0.4583333333333333],[119,218,71,-0.4583333333333333],[119,218,72,-0.4583333333333333],[119,218,73,-0.4583333333333333],[119,218,74,-0.4583333333333333],[119,218,75,-0.4583333333333333],[119,218,76,-0.4583333333333333],[119,218,77,-0.4583333333333333],[119,218,78,-0.4583333333333333],[119,218,79,-0.4583333333333333],[119,219,64,-0.4583333333333333],[119,219,65,-0.4583333333333333],[119,219,66,-0.4583333333333333],[119,219,67,-0.4583333333333333],[119,219,68,-0.4583333333333333],[119,219,69,-0.4583333333333333],[119,219,70,-0.4583333333333333],[119,219,71,-0.4583333333333333],[119,219,72,-0.4583333333333333],[119,219,73,-0.4583333333333333],[119,219,74,-0.4583333333333333],[119,219,75,-0.4583333333333333],[119,219,76,-0.4583333333333333],[119,219,77,-0.4583333333333333],[119,219,78,-0.4583333333333333],[119,219,79,-0.4583333333333333],[119,220,64,-0.4583333333333333],[119,220,65,-0.4583333333333333],[119,220,66,-0.4583333333333333],[119,220,67,-0.4583333333333333],[119,220,68,-0.4583333333333333],[119,220,69,-0.4583333333333333],[119,220,70,-0.4583333333333333],[119,220,71,-0.4583333333333333],[119,220,72,-0.4583333333333333],[119,220,73,-0.4583333333333333],[119,220,74,-0.4583333333333333],[119,220,75,-0.4583333333333333],[119,220,76,-0.4583333333333333],[119,220,77,-0.4583333333333333],[119,220,78,-0.4583333333333333],[119,220,79,-0.4583333333333333],[119,221,64,-0.4583333333333333],[119,221,65,-0.4583333333333333],[119,221,66,-0.4583333333333333],[119,221,67,-0.4583333333333333],[119,221,68,-0.4583333333333333],[119,221,69,-0.4583333333333333],[119,221,70,-0.4583333333333333],[119,221,71,-0.4583333333333333],[119,221,72,-0.4583333333333333],[119,221,73,-0.4583333333333333],[119,221,74,-0.4583333333333333],[119,221,75,-0.4583333333333333],[119,221,76,-0.4583333333333333],[119,221,77,-0.4583333333333333],[119,221,78,-0.4583333333333333],[119,221,79,-0.4583333333333333],[119,222,64,-0.4583333333333333],[119,222,65,-0.4583333333333333],[119,222,66,-0.4583333333333333],[119,222,67,-0.4583333333333333],[119,222,68,-0.4583333333333333],[119,222,69,-0.4583333333333333],[119,222,70,-0.4583333333333333],[119,222,71,-0.4583333333333333],[119,222,72,-0.4583333333333333],[119,222,73,-0.4583333333333333],[119,222,74,-0.4583333333333333],[119,222,75,-0.4583333333333333],[119,222,76,-0.4583333333333333],[119,222,77,-0.4583333333333333],[119,222,78,-0.4583333333333333],[119,222,79,-0.4583333333333333],[119,223,64,-0.4583333333333333],[119,223,65,-0.4583333333333333],[119,223,66,-0.4583333333333333],[119,223,67,-0.4583333333333333],[119,223,68,-0.4583333333333333],[119,223,69,-0.4583333333333333],[119,223,70,-0.4583333333333333],[119,223,71,-0.4583333333333333],[119,223,72,-0.4583333333333333],[119,223,73,-0.4583333333333333],[119,223,74,-0.4583333333333333],[119,223,75,-0.4583333333333333],[119,223,76,-0.4583333333333333],[119,223,77,-0.4583333333333333],[119,223,78,-0.4583333333333333],[119,223,79,-0.4583333333333333],[119,224,64,-0.4583333333333333],[119,224,65,-0.4583333333333333],[119,224,66,-0.4583333333333333],[119,224,67,-0.4583333333333333],[119,224,68,-0.4583333333333333],[119,224,69,-0.4583333333333333],[119,224,70,-0.4583333333333333],[119,224,71,-0.4583333333333333],[119,224,72,-0.4583333333333333],[119,224,73,-0.4583333333333333],[119,224,74,-0.4583333333333333],[119,224,75,-0.4583333333333333],[119,224,76,-0.4583333333333333],[119,224,77,-0.4583333333333333],[119,224,78,-0.4583333333333333],[119,224,79,-0.4583333333333333],[119,225,64,-0.4583333333333333],[119,225,65,-0.4583333333333333],[119,225,66,-0.4583333333333333],[119,225,67,-0.4583333333333333],[119,225,68,-0.4583333333333333],[119,225,69,-0.4583333333333333],[119,225,70,-0.4583333333333333],[119,225,71,-0.4583333333333333],[119,225,72,-0.4583333333333333],[119,225,73,-0.4583333333333333],[119,225,74,-0.4583333333333333],[119,225,75,-0.4583333333333333],[119,225,76,-0.4583333333333333],[119,225,77,-0.4583333333333333],[119,225,78,-0.4583333333333333],[119,225,79,-0.4583333333333333],[119,226,64,-0.4583333333333333],[119,226,65,-0.4583333333333333],[119,226,66,-0.4583333333333333],[119,226,67,-0.4583333333333333],[119,226,68,-0.4583333333333333],[119,226,69,-0.4583333333333333],[119,226,70,-0.4583333333333333],[119,226,71,-0.4583333333333333],[119,226,72,-0.4583333333333333],[119,226,73,-0.4583333333333333],[119,226,74,-0.4583333333333333],[119,226,75,-0.4583333333333333],[119,226,76,-0.4583333333333333],[119,226,77,-0.4583333333333333],[119,226,78,-0.4583333333333333],[119,226,79,-0.4583333333333333],[119,227,64,-0.4583333333333333],[119,227,65,-0.4583333333333333],[119,227,66,-0.4583333333333333],[119,227,67,-0.4583333333333333],[119,227,68,-0.4583333333333333],[119,227,69,-0.4583333333333333],[119,227,70,-0.4583333333333333],[119,227,71,-0.4583333333333333],[119,227,72,-0.4583333333333333],[119,227,73,-0.4583333333333333],[119,227,74,-0.4583333333333333],[119,227,75,-0.4583333333333333],[119,227,76,-0.4583333333333333],[119,227,77,-0.4583333333333333],[119,227,78,-0.4583333333333333],[119,227,79,-0.4583333333333333],[119,228,64,-0.4583333333333333],[119,228,65,-0.4583333333333333],[119,228,66,-0.4583333333333333],[119,228,67,-0.4583333333333333],[119,228,68,-0.4583333333333333],[119,228,69,-0.4583333333333333],[119,228,70,-0.4583333333333333],[119,228,71,-0.4583333333333333],[119,228,72,-0.4583333333333333],[119,228,73,-0.4583333333333333],[119,228,74,-0.4583333333333333],[119,228,75,-0.4583333333333333],[119,228,76,-0.4583333333333333],[119,228,77,-0.4583333333333333],[119,228,78,-0.4583333333333333],[119,228,79,-0.4583333333333333],[119,229,64,-0.4583333333333333],[119,229,65,-0.4583333333333333],[119,229,66,-0.4583333333333333],[119,229,67,-0.4583333333333333],[119,229,68,-0.4583333333333333],[119,229,69,-0.4583333333333333],[119,229,70,-0.4583333333333333],[119,229,71,-0.4583333333333333],[119,229,72,-0.4583333333333333],[119,229,73,-0.4583333333333333],[119,229,74,-0.4583333333333333],[119,229,75,-0.4583333333333333],[119,229,76,-0.4583333333333333],[119,229,77,-0.4583333333333333],[119,229,78,-0.4583333333333333],[119,229,79,-0.4583333333333333],[119,230,64,-0.4583333333333333],[119,230,65,-0.4583333333333333],[119,230,66,-0.4583333333333333],[119,230,67,-0.4583333333333333],[119,230,68,-0.4583333333333333],[119,230,69,-0.4583333333333333],[119,230,70,-0.4583333333333333],[119,230,71,-0.4583333333333333],[119,230,72,-0.4583333333333333],[119,230,73,-0.4583333333333333],[119,230,74,-0.4583333333333333],[119,230,75,-0.4583333333333333],[119,230,76,-0.4583333333333333],[119,230,77,-0.4583333333333333],[119,230,78,-0.4583333333333333],[119,230,79,-0.4583333333333333],[119,231,64,-0.4583333333333333],[119,231,65,-0.4583333333333333],[119,231,66,-0.4583333333333333],[119,231,67,-0.4583333333333333],[119,231,68,-0.4583333333333333],[119,231,69,-0.4583333333333333],[119,231,70,-0.4583333333333333],[119,231,71,-0.4583333333333333],[119,231,72,-0.4583333333333333],[119,231,73,-0.4583333333333333],[119,231,74,-0.4583333333333333],[119,231,75,-0.4583333333333333],[119,231,76,-0.4583333333333333],[119,231,77,-0.4583333333333333],[119,231,78,-0.4583333333333333],[119,231,79,-0.4583333333333333],[119,232,64,-0.4583333333333333],[119,232,65,-0.4583333333333333],[119,232,66,-0.4583333333333333],[119,232,67,-0.4583333333333333],[119,232,68,-0.4583333333333333],[119,232,69,-0.4583333333333333],[119,232,70,-0.4583333333333333],[119,232,71,-0.4583333333333333],[119,232,72,-0.4583333333333333],[119,232,73,-0.4583333333333333],[119,232,74,-0.4583333333333333],[119,232,75,-0.4583333333333333],[119,232,76,-0.4583333333333333],[119,232,77,-0.4583333333333333],[119,232,78,-0.4583333333333333],[119,232,79,-0.4583333333333333],[119,233,64,-0.4583333333333333],[119,233,65,-0.4583333333333333],[119,233,66,-0.4583333333333333],[119,233,67,-0.4583333333333333],[119,233,68,-0.4583333333333333],[119,233,69,-0.4583333333333333],[119,233,70,-0.4583333333333333],[119,233,71,-0.4583333333333333],[119,233,72,-0.4583333333333333],[119,233,73,-0.4583333333333333],[119,233,74,-0.4583333333333333],[119,233,75,-0.4583333333333333],[119,233,76,-0.4583333333333333],[119,233,77,-0.4583333333333333],[119,233,78,-0.4583333333333333],[119,233,79,-0.4583333333333333],[119,234,64,-0.4583333333333333],[119,234,65,-0.4583333333333333],[119,234,66,-0.4583333333333333],[119,234,67,-0.4583333333333333],[119,234,68,-0.4583333333333333],[119,234,69,-0.4583333333333333],[119,234,70,-0.4583333333333333],[119,234,71,-0.4583333333333333],[119,234,72,-0.4583333333333333],[119,234,73,-0.4583333333333333],[119,234,74,-0.4583333333333333],[119,234,75,-0.4583333333333333],[119,234,76,-0.4583333333333333],[119,234,77,-0.4583333333333333],[119,234,78,-0.4583333333333333],[119,234,79,-0.4583333333333333],[119,235,64,-0.4583333333333333],[119,235,65,-0.4583333333333333],[119,235,66,-0.4583333333333333],[119,235,67,-0.4583333333333333],[119,235,68,-0.4583333333333333],[119,235,69,-0.4583333333333333],[119,235,70,-0.4583333333333333],[119,235,71,-0.4583333333333333],[119,235,72,-0.4583333333333333],[119,235,73,-0.4583333333333333],[119,235,74,-0.4583333333333333],[119,235,75,-0.4583333333333333],[119,235,76,-0.4583333333333333],[119,235,77,-0.4583333333333333],[119,235,78,-0.4583333333333333],[119,235,79,-0.4583333333333333],[119,236,64,-0.4583333333333333],[119,236,65,-0.4583333333333333],[119,236,66,-0.4583333333333333],[119,236,67,-0.4583333333333333],[119,236,68,-0.4583333333333333],[119,236,69,-0.4583333333333333],[119,236,70,-0.4583333333333333],[119,236,71,-0.4583333333333333],[119,236,72,-0.4583333333333333],[119,236,73,-0.4583333333333333],[119,236,74,-0.4583333333333333],[119,236,75,-0.4583333333333333],[119,236,76,-0.4583333333333333],[119,236,77,-0.4583333333333333],[119,236,78,-0.4583333333333333],[119,236,79,-0.4583333333333333],[119,237,64,-0.4583333333333333],[119,237,65,-0.4583333333333333],[119,237,66,-0.4583333333333333],[119,237,67,-0.4583333333333333],[119,237,68,-0.4583333333333333],[119,237,69,-0.4583333333333333],[119,237,70,-0.4583333333333333],[119,237,71,-0.4583333333333333],[119,237,72,-0.4583333333333333],[119,237,73,-0.4583333333333333],[119,237,74,-0.4583333333333333],[119,237,75,-0.4583333333333333],[119,237,76,-0.4583333333333333],[119,237,77,-0.4583333333333333],[119,237,78,-0.4583333333333333],[119,237,79,-0.4583333333333333],[119,238,64,-0.4583333333333333],[119,238,65,-0.4583333333333333],[119,238,66,-0.4583333333333333],[119,238,67,-0.4583333333333333],[119,238,68,-0.4583333333333333],[119,238,69,-0.4583333333333333],[119,238,70,-0.4583333333333333],[119,238,71,-0.4583333333333333],[119,238,72,-0.4583333333333333],[119,238,73,-0.4583333333333333],[119,238,74,-0.4583333333333333],[119,238,75,-0.4583333333333333],[119,238,76,-0.4583333333333333],[119,238,77,-0.4583333333333333],[119,238,78,-0.4583333333333333],[119,238,79,-0.4583333333333333],[119,239,64,-0.4583333333333333],[119,239,65,-0.4583333333333333],[119,239,66,-0.4583333333333333],[119,239,67,-0.4583333333333333],[119,239,68,-0.4583333333333333],[119,239,69,-0.4583333333333333],[119,239,70,-0.4583333333333333],[119,239,71,-0.4583333333333333],[119,239,72,-0.4583333333333333],[119,239,73,-0.4583333333333333],[119,239,74,-0.4583333333333333],[119,239,75,-0.4583333333333333],[119,239,76,-0.4583333333333333],[119,239,77,-0.4583333333333333],[119,239,78,-0.4583333333333333],[119,239,79,-0.4583333333333333],[119,240,64,-0.4583333333333333],[119,240,65,-0.4583333333333333],[119,240,66,-0.4583333333333333],[119,240,67,-0.4583333333333333],[119,240,68,-0.4583333333333333],[119,240,69,-0.4583333333333333],[119,240,70,-0.4583333333333333],[119,240,71,-0.4583333333333333],[119,240,72,-0.4583333333333333],[119,240,73,-0.4583333333333333],[119,240,74,-0.4583333333333333],[119,240,75,-0.4583333333333333],[119,240,76,-0.4583333333333333],[119,240,77,-0.4583333333333333],[119,240,78,-0.4583333333333333],[119,240,79,-0.4583333333333333],[119,241,64,-0.4583333333333333],[119,241,65,-0.4583333333333333],[119,241,66,-0.4583333333333333],[119,241,67,-0.4583333333333333],[119,241,68,-0.4583333333333333],[119,241,69,-0.4583333333333333],[119,241,70,-0.4583333333333333],[119,241,71,-0.4583333333333333],[119,241,72,-0.4583333333333333],[119,241,73,-0.4583333333333333],[119,241,74,-0.4583333333333333],[119,241,75,-0.4583333333333333],[119,241,76,-0.4583333333333333],[119,241,77,-0.4583333333333333],[119,241,78,-0.4583333333333333],[119,241,79,-0.4583333333333333],[119,242,64,-0.4583333333333333],[119,242,65,-0.4583333333333333],[119,242,66,-0.4583333333333333],[119,242,67,-0.4583333333333333],[119,242,68,-0.4583333333333333],[119,242,69,-0.4583333333333333],[119,242,70,-0.4583333333333333],[119,242,71,-0.4583333333333333],[119,242,72,-0.4583333333333333],[119,242,73,-0.4583333333333333],[119,242,74,-0.4583333333333333],[119,242,75,-0.4583333333333333],[119,242,76,-0.4583333333333333],[119,242,77,-0.4583333333333333],[119,242,78,-0.4583333333333333],[119,242,79,-0.4583333333333333],[119,243,64,-0.4583333333333333],[119,243,65,-0.4583333333333333],[119,243,66,-0.4583333333333333],[119,243,67,-0.4583333333333333],[119,243,68,-0.4583333333333333],[119,243,69,-0.4583333333333333],[119,243,70,-0.4583333333333333],[119,243,71,-0.4583333333333333],[119,243,72,-0.4583333333333333],[119,243,73,-0.4583333333333333],[119,243,74,-0.4583333333333333],[119,243,75,-0.4583333333333333],[119,243,76,-0.4583333333333333],[119,243,77,-0.4583333333333333],[119,243,78,-0.4583333333333333],[119,243,79,-0.4583333333333333],[119,244,64,-0.4583333333333333],[119,244,65,-0.4583333333333333],[119,244,66,-0.4583333333333333],[119,244,67,-0.4583333333333333],[119,244,68,-0.4583333333333333],[119,244,69,-0.4583333333333333],[119,244,70,-0.4583333333333333],[119,244,71,-0.4583333333333333],[119,244,72,-0.4583333333333333],[119,244,73,-0.4583333333333333],[119,244,74,-0.4583333333333333],[119,244,75,-0.4583333333333333],[119,244,76,-0.4583333333333333],[119,244,77,-0.4583333333333333],[119,244,78,-0.4583333333333333],[119,244,79,-0.4583333333333333],[119,245,64,-0.4583333333333333],[119,245,65,-0.4583333333333333],[119,245,66,-0.4583333333333333],[119,245,67,-0.4583333333333333],[119,245,68,-0.4583333333333333],[119,245,69,-0.4583333333333333],[119,245,70,-0.4583333333333333],[119,245,71,-0.4583333333333333],[119,245,72,-0.4583333333333333],[119,245,73,-0.4583333333333333],[119,245,74,-0.4583333333333333],[119,245,75,-0.4583333333333333],[119,245,76,-0.4583333333333333],[119,245,77,-0.4583333333333333],[119,245,78,-0.4583333333333333],[119,245,79,-0.4583333333333333],[119,246,64,-0.4583333333333333],[119,246,65,-0.4583333333333333],[119,246,66,-0.4583333333333333],[119,246,67,-0.4583333333333333],[119,246,68,-0.4583333333333333],[119,246,69,-0.4583333333333333],[119,246,70,-0.4583333333333333],[119,246,71,-0.4583333333333333],[119,246,72,-0.4583333333333333],[119,246,73,-0.4583333333333333],[119,246,74,-0.4583333333333333],[119,246,75,-0.4583333333333333],[119,246,76,-0.4583333333333333],[119,246,77,-0.4583333333333333],[119,246,78,-0.4583333333333333],[119,246,79,-0.4583333333333333],[119,247,64,-0.4583333333333333],[119,247,65,-0.4583333333333333],[119,247,66,-0.4583333333333333],[119,247,67,-0.4583333333333333],[119,247,68,-0.4583333333333333],[119,247,69,-0.4583333333333333],[119,247,70,-0.4583333333333333],[119,247,71,-0.4583333333333333],[119,247,72,-0.4583333333333333],[119,247,73,-0.4583333333333333],[119,247,74,-0.4583333333333333],[119,247,75,-0.4583333333333333],[119,247,76,-0.4583333333333333],[119,247,77,-0.4583333333333333],[119,247,78,-0.4583333333333333],[119,247,79,-0.4583333333333333],[119,248,64,-0.4583333333333333],[119,248,65,-0.4583333333333333],[119,248,66,-0.4583333333333333],[119,248,67,-0.4583333333333333],[119,248,68,-0.4583333333333333],[119,248,69,-0.4583333333333333],[119,248,70,-0.4583333333333333],[119,248,71,-0.4583333333333333],[119,248,72,-0.4583333333333333],[119,248,73,-0.4583333333333333],[119,248,74,-0.4583333333333333],[119,248,75,-0.4583333333333333],[119,248,76,-0.4583333333333333],[119,248,77,-0.4583333333333333],[119,248,78,-0.4583333333333333],[119,248,79,-0.4583333333333333],[119,249,64,-0.4583333333333333],[119,249,65,-0.4583333333333333],[119,249,66,-0.4583333333333333],[119,249,67,-0.4583333333333333],[119,249,68,-0.4583333333333333],[119,249,69,-0.4583333333333333],[119,249,70,-0.4583333333333333],[119,249,71,-0.4583333333333333],[119,249,72,-0.4583333333333333],[119,249,73,-0.4583333333333333],[119,249,74,-0.4583333333333333],[119,249,75,-0.4583333333333333],[119,249,76,-0.4583333333333333],[119,249,77,-0.4583333333333333],[119,249,78,-0.4583333333333333],[119,249,79,-0.4583333333333333],[119,250,64,-0.4583333333333333],[119,250,65,-0.4583333333333333],[119,250,66,-0.4583333333333333],[119,250,67,-0.4583333333333333],[119,250,68,-0.4583333333333333],[119,250,69,-0.4583333333333333],[119,250,70,-0.4583333333333333],[119,250,71,-0.4583333333333333],[119,250,72,-0.4583333333333333],[119,250,73,-0.4583333333333333],[119,250,74,-0.4583333333333333],[119,250,75,-0.4583333333333333],[119,250,76,-0.4583333333333333],[119,250,77,-0.4583333333333333],[119,250,78,-0.4583333333333333],[119,250,79,-0.4583333333333333],[119,251,64,-0.4583333333333333],[119,251,65,-0.4583333333333333],[119,251,66,-0.4583333333333333],[119,251,67,-0.4583333333333333],[119,251,68,-0.4583333333333333],[119,251,69,-0.4583333333333333],[119,251,70,-0.4583333333333333],[119,251,71,-0.4583333333333333],[119,251,72,-0.4583333333333333],[119,251,73,-0.4583333333333333],[119,251,74,-0.4583333333333333],[119,251,75,-0.4583333333333333],[119,251,76,-0.4583333333333333],[119,251,77,-0.4583333333333333],[119,251,78,-0.4583333333333333],[119,251,79,-0.4583333333333333],[119,252,64,-0.4583333333333333],[119,252,65,-0.4583333333333333],[119,252,66,-0.4583333333333333],[119,252,67,-0.4583333333333333],[119,252,68,-0.4583333333333333],[119,252,69,-0.4583333333333333],[119,252,70,-0.4583333333333333],[119,252,71,-0.4583333333333333],[119,252,72,-0.4583333333333333],[119,252,73,-0.4583333333333333],[119,252,74,-0.4583333333333333],[119,252,75,-0.4583333333333333],[119,252,76,-0.4583333333333333],[119,252,77,-0.4583333333333333],[119,252,78,-0.4583333333333333],[119,252,79,-0.4583333333333333],[119,253,64,-0.4583333333333333],[119,253,65,-0.4583333333333333],[119,253,66,-0.4583333333333333],[119,253,67,-0.4583333333333333],[119,253,68,-0.4583333333333333],[119,253,69,-0.4583333333333333],[119,253,70,-0.4583333333333333],[119,253,71,-0.4583333333333333],[119,253,72,-0.4583333333333333],[119,253,73,-0.4583333333333333],[119,253,74,-0.4583333333333333],[119,253,75,-0.4583333333333333],[119,253,76,-0.4583333333333333],[119,253,77,-0.4583333333333333],[119,253,78,-0.4583333333333333],[119,253,79,-0.4583333333333333],[119,254,64,-0.3746943133534883],[119,254,65,-0.37480089206938355],[119,254,66,-0.37429656906028297],[119,254,67,-0.3734844476718183],[119,254,68,-0.37283633807887295],[119,254,69,-0.37252382707805876],[119,254,70,-0.3727804796190307],[119,254,71,-0.3734334640403004],[119,254,72,-0.37467117066587957],[119,254,73,-0.37644721491633304],[119,254,74,-0.37803821704982254],[119,254,75,-0.37894552833098183],[119,254,76,-0.3793398197690075],[119,254,77,-0.3794421210043881],[119,254,78,-0.3798356636145406],[119,254,79,-0.3795935199550973],[119,255,64,-0.2079115679048436],[119,255,65,-0.2080181064625363],[119,255,66,-0.20772222498916287],[119,255,67,-0.20721348428171757],[119,255,68,-0.20687135378415258],[119,255,69,-0.20672628635228685],[119,255,70,-0.20682955578058515],[119,255,71,-0.2071847162201479],[119,255,72,-0.2079170637333281],[119,255,73,-0.20897081422596503],[119,255,74,-0.20987523480548004],[119,255,75,-0.21039577209230145],[119,255,76,-0.21063125873738917],[119,255,77,-0.21053058740811678],[119,255,78,-0.21070386525791482],[119,255,79,-0.21050160509029012],[119,256,64,-0.02499479166666667],[119,256,65,-0.02499479166666667],[119,256,66,-0.02499479166666667],[119,256,67,-0.02499479166666667],[119,256,68,-0.02499479166666667],[119,256,69,-0.02499479166666667],[119,256,70,-0.02499479166666667],[119,256,71,-0.02499479166666667],[119,256,72,-0.02499479166666667],[119,256,73,-0.02499479166666667],[119,256,74,-0.02499479166666667],[119,256,75,-0.02499479166666667],[119,256,76,-0.02499479166666667],[119,256,77,-0.02499479166666667],[119,256,78,-0.02499479166666667],[119,256,79,-0.02499479166666667],[119,257,64,-0.02499479166666667],[119,257,65,-0.02499479166666667],[119,257,66,-0.02499479166666667],[119,257,67,-0.02499479166666667],[119,257,68,-0.02499479166666667],[119,257,69,-0.02499479166666667],[119,257,70,-0.02499479166666667],[119,257,71,-0.02499479166666667],[119,257,72,-0.02499479166666667],[119,257,73,-0.02499479166666667],[119,257,74,-0.02499479166666667],[119,257,75,-0.02499479166666667],[119,257,76,-0.02499479166666667],[119,257,77,-0.02499479166666667],[119,257,78,-0.02499479166666667],[119,257,79,-0.02499479166666667],[119,258,64,-0.02499479166666667],[119,258,65,-0.02499479166666667],[119,258,66,-0.02499479166666667],[119,258,67,-0.02499479166666667],[119,258,68,-0.02499479166666667],[119,258,69,-0.02499479166666667],[119,258,70,-0.02499479166666667],[119,258,71,-0.02499479166666667],[119,258,72,-0.02499479166666667],[119,258,73,-0.02499479166666667],[119,258,74,-0.02499479166666667],[119,258,75,-0.02499479166666667],[119,258,76,-0.02499479166666667],[119,258,77,-0.02499479166666667],[119,258,78,-0.02499479166666667],[119,258,79,-0.02499479166666667],[119,259,64,-0.02499479166666667],[119,259,65,-0.02499479166666667],[119,259,66,-0.02499479166666667],[119,259,67,-0.02499479166666667],[119,259,68,-0.02499479166666667],[119,259,69,-0.02499479166666667],[119,259,70,-0.02499479166666667],[119,259,71,-0.02499479166666667],[119,259,72,-0.02499479166666667],[119,259,73,-0.02499479166666667],[119,259,74,-0.02499479166666667],[119,259,75,-0.02499479166666667],[119,259,76,-0.02499479166666667],[119,259,77,-0.02499479166666667],[119,259,78,-0.02499479166666667],[119,259,79,-0.02499479166666667],[119,260,64,-0.02499479166666667],[119,260,65,-0.02499479166666667],[119,260,66,-0.02499479166666667],[119,260,67,-0.02499479166666667],[119,260,68,-0.02499479166666667],[119,260,69,-0.02499479166666667],[119,260,70,-0.02499479166666667],[119,260,71,-0.02499479166666667],[119,260,72,-0.02499479166666667],[119,260,73,-0.02499479166666667],[119,260,74,-0.02499479166666667],[119,260,75,-0.02499479166666667],[119,260,76,-0.02499479166666667],[119,260,77,-0.02499479166666667],[119,260,78,-0.02499479166666667],[119,260,79,-0.02499479166666667],[119,261,64,-0.02499479166666667],[119,261,65,-0.02499479166666667],[119,261,66,-0.02499479166666667],[119,261,67,-0.02499479166666667],[119,261,68,-0.02499479166666667],[119,261,69,-0.02499479166666667],[119,261,70,-0.02499479166666667],[119,261,71,-0.02499479166666667],[119,261,72,-0.02499479166666667],[119,261,73,-0.02499479166666667],[119,261,74,-0.02499479166666667],[119,261,75,-0.02499479166666667],[119,261,76,-0.02499479166666667],[119,261,77,-0.02499479166666667],[119,261,78,-0.02499479166666667],[119,261,79,-0.02499479166666667],[119,262,64,-0.02499479166666667],[119,262,65,-0.02499479166666667],[119,262,66,-0.02499479166666667],[119,262,67,-0.02499479166666667],[119,262,68,-0.02499479166666667],[119,262,69,-0.02499479166666667],[119,262,70,-0.02499479166666667],[119,262,71,-0.02499479166666667],[119,262,72,-0.02499479166666667],[119,262,73,-0.02499479166666667],[119,262,74,-0.02499479166666667],[119,262,75,-0.02499479166666667],[119,262,76,-0.02499479166666667],[119,262,77,-0.02499479166666667],[119,262,78,-0.02499479166666667],[119,262,79,-0.02499479166666667],[119,263,64,-0.02499479166666667],[119,263,65,-0.02499479166666667],[119,263,66,-0.02499479166666667],[119,263,67,-0.02499479166666667],[119,263,68,-0.02499479166666667],[119,263,69,-0.02499479166666667],[119,263,70,-0.02499479166666667],[119,263,71,-0.02499479166666667],[119,263,72,-0.02499479166666667],[119,263,73,-0.02499479166666667],[119,263,74,-0.02499479166666667],[119,263,75,-0.02499479166666667],[119,263,76,-0.02499479166666667],[119,263,77,-0.02499479166666667],[119,263,78,-0.02499479166666667],[119,263,79,-0.02499479166666667],[119,264,64,-0.02499479166666667],[119,264,65,-0.02499479166666667],[119,264,66,-0.02499479166666667],[119,264,67,-0.02499479166666667],[119,264,68,-0.02499479166666667],[119,264,69,-0.02499479166666667],[119,264,70,-0.02499479166666667],[119,264,71,-0.02499479166666667],[119,264,72,-0.02499479166666667],[119,264,73,-0.02499479166666667],[119,264,74,-0.02499479166666667],[119,264,75,-0.02499479166666667],[119,264,76,-0.02499479166666667],[119,264,77,-0.02499479166666667],[119,264,78,-0.02499479166666667],[119,264,79,-0.02499479166666667],[119,265,64,-0.02499479166666667],[119,265,65,-0.02499479166666667],[119,265,66,-0.02499479166666667],[119,265,67,-0.02499479166666667],[119,265,68,-0.02499479166666667],[119,265,69,-0.02499479166666667],[119,265,70,-0.02499479166666667],[119,265,71,-0.02499479166666667],[119,265,72,-0.02499479166666667],[119,265,73,-0.02499479166666667],[119,265,74,-0.02499479166666667],[119,265,75,-0.02499479166666667],[119,265,76,-0.02499479166666667],[119,265,77,-0.02499479166666667],[119,265,78,-0.02499479166666667],[119,265,79,-0.02499479166666667],[119,266,64,-0.02499479166666667],[119,266,65,-0.02499479166666667],[119,266,66,-0.02499479166666667],[119,266,67,-0.02499479166666667],[119,266,68,-0.02499479166666667],[119,266,69,-0.02499479166666667],[119,266,70,-0.02499479166666667],[119,266,71,-0.02499479166666667],[119,266,72,-0.02499479166666667],[119,266,73,-0.02499479166666667],[119,266,74,-0.02499479166666667],[119,266,75,-0.02499479166666667],[119,266,76,-0.02499479166666667],[119,266,77,-0.02499479166666667],[119,266,78,-0.02499479166666667],[119,266,79,-0.02499479166666667],[119,267,64,-0.02499479166666667],[119,267,65,-0.02499479166666667],[119,267,66,-0.02499479166666667],[119,267,67,-0.02499479166666667],[119,267,68,-0.02499479166666667],[119,267,69,-0.02499479166666667],[119,267,70,-0.02499479166666667],[119,267,71,-0.02499479166666667],[119,267,72,-0.02499479166666667],[119,267,73,-0.02499479166666667],[119,267,74,-0.02499479166666667],[119,267,75,-0.02499479166666667],[119,267,76,-0.02499479166666667],[119,267,77,-0.02499479166666667],[119,267,78,-0.02499479166666667],[119,267,79,-0.02499479166666667],[119,268,64,-0.02499479166666667],[119,268,65,-0.02499479166666667],[119,268,66,-0.02499479166666667],[119,268,67,-0.02499479166666667],[119,268,68,-0.02499479166666667],[119,268,69,-0.02499479166666667],[119,268,70,-0.02499479166666667],[119,268,71,-0.02499479166666667],[119,268,72,-0.02499479166666667],[119,268,73,-0.02499479166666667],[119,268,74,-0.02499479166666667],[119,268,75,-0.02499479166666667],[119,268,76,-0.02499479166666667],[119,268,77,-0.02499479166666667],[119,268,78,-0.02499479166666667],[119,268,79,-0.02499479166666667],[119,269,64,-0.02499479166666667],[119,269,65,-0.02499479166666667],[119,269,66,-0.02499479166666667],[119,269,67,-0.02499479166666667],[119,269,68,-0.02499479166666667],[119,269,69,-0.02499479166666667],[119,269,70,-0.02499479166666667],[119,269,71,-0.02499479166666667],[119,269,72,-0.02499479166666667],[119,269,73,-0.02499479166666667],[119,269,74,-0.02499479166666667],[119,269,75,-0.02499479166666667],[119,269,76,-0.02499479166666667],[119,269,77,-0.02499479166666667],[119,269,78,-0.02499479166666667],[119,269,79,-0.02499479166666667],[119,270,64,-0.02499479166666667],[119,270,65,-0.02499479166666667],[119,270,66,-0.02499479166666667],[119,270,67,-0.02499479166666667],[119,270,68,-0.02499479166666667],[119,270,69,-0.02499479166666667],[119,270,70,-0.02499479166666667],[119,270,71,-0.02499479166666667],[119,270,72,-0.02499479166666667],[119,270,73,-0.02499479166666667],[119,270,74,-0.02499479166666667],[119,270,75,-0.02499479166666667],[119,270,76,-0.02499479166666667],[119,270,77,-0.02499479166666667],[119,270,78,-0.02499479166666667],[119,270,79,-0.02499479166666667],[119,271,64,-0.02499479166666667],[119,271,65,-0.02499479166666667],[119,271,66,-0.02499479166666667],[119,271,67,-0.02499479166666667],[119,271,68,-0.02499479166666667],[119,271,69,-0.02499479166666667],[119,271,70,-0.02499479166666667],[119,271,71,-0.02499479166666667],[119,271,72,-0.02499479166666667],[119,271,73,-0.02499479166666667],[119,271,74,-0.02499479166666667],[119,271,75,-0.02499479166666667],[119,271,76,-0.02499479166666667],[119,271,77,-0.02499479166666667],[119,271,78,-0.02499479166666667],[119,271,79,-0.02499479166666667],[119,272,64,-0.02499479166666667],[119,272,65,-0.02499479166666667],[119,272,66,-0.02499479166666667],[119,272,67,-0.02499479166666667],[119,272,68,-0.02499479166666667],[119,272,69,-0.02499479166666667],[119,272,70,-0.02499479166666667],[119,272,71,-0.02499479166666667],[119,272,72,-0.02499479166666667],[119,272,73,-0.02499479166666667],[119,272,74,-0.02499479166666667],[119,272,75,-0.02499479166666667],[119,272,76,-0.02499479166666667],[119,272,77,-0.02499479166666667],[119,272,78,-0.02499479166666667],[119,272,79,-0.02499479166666667],[119,273,64,-0.02499479166666667],[119,273,65,-0.02499479166666667],[119,273,66,-0.02499479166666667],[119,273,67,-0.02499479166666667],[119,273,68,-0.02499479166666667],[119,273,69,-0.02499479166666667],[119,273,70,-0.02499479166666667],[119,273,71,-0.02499479166666667],[119,273,72,-0.02499479166666667],[119,273,73,-0.02499479166666667],[119,273,74,-0.02499479166666667],[119,273,75,-0.02499479166666667],[119,273,76,-0.02499479166666667],[119,273,77,-0.02499479166666667],[119,273,78,-0.02499479166666667],[119,273,79,-0.02499479166666667],[119,274,64,-0.02499479166666667],[119,274,65,-0.02499479166666667],[119,274,66,-0.02499479166666667],[119,274,67,-0.02499479166666667],[119,274,68,-0.02499479166666667],[119,274,69,-0.02499479166666667],[119,274,70,-0.02499479166666667],[119,274,71,-0.02499479166666667],[119,274,72,-0.02499479166666667],[119,274,73,-0.02499479166666667],[119,274,74,-0.02499479166666667],[119,274,75,-0.02499479166666667],[119,274,76,-0.02499479166666667],[119,274,77,-0.02499479166666667],[119,274,78,-0.02499479166666667],[119,274,79,-0.02499479166666667],[119,275,64,-0.02499479166666667],[119,275,65,-0.02499479166666667],[119,275,66,-0.02499479166666667],[119,275,67,-0.02499479166666667],[119,275,68,-0.02499479166666667],[119,275,69,-0.02499479166666667],[119,275,70,-0.02499479166666667],[119,275,71,-0.02499479166666667],[119,275,72,-0.02499479166666667],[119,275,73,-0.02499479166666667],[119,275,74,-0.02499479166666667],[119,275,75,-0.02499479166666667],[119,275,76,-0.02499479166666667],[119,275,77,-0.02499479166666667],[119,275,78,-0.02499479166666667],[119,275,79,-0.02499479166666667],[119,276,64,-0.02499479166666667],[119,276,65,-0.02499479166666667],[119,276,66,-0.02499479166666667],[119,276,67,-0.02499479166666667],[119,276,68,-0.02499479166666667],[119,276,69,-0.02499479166666667],[119,276,70,-0.02499479166666667],[119,276,71,-0.02499479166666667],[119,276,72,-0.02499479166666667],[119,276,73,-0.02499479166666667],[119,276,74,-0.02499479166666667],[119,276,75,-0.02499479166666667],[119,276,76,-0.02499479166666667],[119,276,77,-0.02499479166666667],[119,276,78,-0.02499479166666667],[119,276,79,-0.02499479166666667],[119,277,64,-0.02499479166666667],[119,277,65,-0.02499479166666667],[119,277,66,-0.02499479166666667],[119,277,67,-0.02499479166666667],[119,277,68,-0.02499479166666667],[119,277,69,-0.02499479166666667],[119,277,70,-0.02499479166666667],[119,277,71,-0.02499479166666667],[119,277,72,-0.02499479166666667],[119,277,73,-0.02499479166666667],[119,277,74,-0.02499479166666667],[119,277,75,-0.02499479166666667],[119,277,76,-0.02499479166666667],[119,277,77,-0.02499479166666667],[119,277,78,-0.02499479166666667],[119,277,79,-0.02499479166666667],[119,278,64,-0.02499479166666667],[119,278,65,-0.02499479166666667],[119,278,66,-0.02499479166666667],[119,278,67,-0.02499479166666667],[119,278,68,-0.02499479166666667],[119,278,69,-0.02499479166666667],[119,278,70,-0.02499479166666667],[119,278,71,-0.02499479166666667],[119,278,72,-0.02499479166666667],[119,278,73,-0.02499479166666667],[119,278,74,-0.02499479166666667],[119,278,75,-0.02499479166666667],[119,278,76,-0.02499479166666667],[119,278,77,-0.02499479166666667],[119,278,78,-0.02499479166666667],[119,278,79,-0.02499479166666667],[119,279,64,-0.02499479166666667],[119,279,65,-0.02499479166666667],[119,279,66,-0.02499479166666667],[119,279,67,-0.02499479166666667],[119,279,68,-0.02499479166666667],[119,279,69,-0.02499479166666667],[119,279,70,-0.02499479166666667],[119,279,71,-0.02499479166666667],[119,279,72,-0.02499479166666667],[119,279,73,-0.02499479166666667],[119,279,74,-0.02499479166666667],[119,279,75,-0.02499479166666667],[119,279,76,-0.02499479166666667],[119,279,77,-0.02499479166666667],[119,279,78,-0.02499479166666667],[119,279,79,-0.02499479166666667],[119,280,64,-0.02499479166666667],[119,280,65,-0.02499479166666667],[119,280,66,-0.02499479166666667],[119,280,67,-0.02499479166666667],[119,280,68,-0.02499479166666667],[119,280,69,-0.02499479166666667],[119,280,70,-0.02499479166666667],[119,280,71,-0.02499479166666667],[119,280,72,-0.02499479166666667],[119,280,73,-0.02499479166666667],[119,280,74,-0.02499479166666667],[119,280,75,-0.02499479166666667],[119,280,76,-0.02499479166666667],[119,280,77,-0.02499479166666667],[119,280,78,-0.02499479166666667],[119,280,79,-0.02499479166666667],[119,281,64,-0.02499479166666667],[119,281,65,-0.02499479166666667],[119,281,66,-0.02499479166666667],[119,281,67,-0.02499479166666667],[119,281,68,-0.02499479166666667],[119,281,69,-0.02499479166666667],[119,281,70,-0.02499479166666667],[119,281,71,-0.02499479166666667],[119,281,72,-0.02499479166666667],[119,281,73,-0.02499479166666667],[119,281,74,-0.02499479166666667],[119,281,75,-0.02499479166666667],[119,281,76,-0.02499479166666667],[119,281,77,-0.02499479166666667],[119,281,78,-0.02499479166666667],[119,281,79,-0.02499479166666667],[119,282,64,-0.02499479166666667],[119,282,65,-0.02499479166666667],[119,282,66,-0.02499479166666667],[119,282,67,-0.02499479166666667],[119,282,68,-0.02499479166666667],[119,282,69,-0.02499479166666667],[119,282,70,-0.02499479166666667],[119,282,71,-0.02499479166666667],[119,282,72,-0.02499479166666667],[119,282,73,-0.02499479166666667],[119,282,74,-0.02499479166666667],[119,282,75,-0.02499479166666667],[119,282,76,-0.02499479166666667],[119,282,77,-0.02499479166666667],[119,282,78,-0.02499479166666667],[119,282,79,-0.02499479166666667],[119,283,64,-0.02499479166666667],[119,283,65,-0.02499479166666667],[119,283,66,-0.02499479166666667],[119,283,67,-0.02499479166666667],[119,283,68,-0.02499479166666667],[119,283,69,-0.02499479166666667],[119,283,70,-0.02499479166666667],[119,283,71,-0.02499479166666667],[119,283,72,-0.02499479166666667],[119,283,73,-0.02499479166666667],[119,283,74,-0.02499479166666667],[119,283,75,-0.02499479166666667],[119,283,76,-0.02499479166666667],[119,283,77,-0.02499479166666667],[119,283,78,-0.02499479166666667],[119,283,79,-0.02499479166666667],[119,284,64,-0.02499479166666667],[119,284,65,-0.02499479166666667],[119,284,66,-0.02499479166666667],[119,284,67,-0.02499479166666667],[119,284,68,-0.02499479166666667],[119,284,69,-0.02499479166666667],[119,284,70,-0.02499479166666667],[119,284,71,-0.02499479166666667],[119,284,72,-0.02499479166666667],[119,284,73,-0.02499479166666667],[119,284,74,-0.02499479166666667],[119,284,75,-0.02499479166666667],[119,284,76,-0.02499479166666667],[119,284,77,-0.02499479166666667],[119,284,78,-0.02499479166666667],[119,284,79,-0.02499479166666667],[119,285,64,-0.02499479166666667],[119,285,65,-0.02499479166666667],[119,285,66,-0.02499479166666667],[119,285,67,-0.02499479166666667],[119,285,68,-0.02499479166666667],[119,285,69,-0.02499479166666667],[119,285,70,-0.02499479166666667],[119,285,71,-0.02499479166666667],[119,285,72,-0.02499479166666667],[119,285,73,-0.02499479166666667],[119,285,74,-0.02499479166666667],[119,285,75,-0.02499479166666667],[119,285,76,-0.02499479166666667],[119,285,77,-0.02499479166666667],[119,285,78,-0.02499479166666667],[119,285,79,-0.02499479166666667],[119,286,64,-0.02499479166666667],[119,286,65,-0.02499479166666667],[119,286,66,-0.02499479166666667],[119,286,67,-0.02499479166666667],[119,286,68,-0.02499479166666667],[119,286,69,-0.02499479166666667],[119,286,70,-0.02499479166666667],[119,286,71,-0.02499479166666667],[119,286,72,-0.02499479166666667],[119,286,73,-0.02499479166666667],[119,286,74,-0.02499479166666667],[119,286,75,-0.02499479166666667],[119,286,76,-0.02499479166666667],[119,286,77,-0.02499479166666667],[119,286,78,-0.02499479166666667],[119,286,79,-0.02499479166666667],[119,287,64,-0.02499479166666667],[119,287,65,-0.02499479166666667],[119,287,66,-0.02499479166666667],[119,287,67,-0.02499479166666667],[119,287,68,-0.02499479166666667],[119,287,69,-0.02499479166666667],[119,287,70,-0.02499479166666667],[119,287,71,-0.02499479166666667],[119,287,72,-0.02499479166666667],[119,287,73,-0.02499479166666667],[119,287,74,-0.02499479166666667],[119,287,75,-0.02499479166666667],[119,287,76,-0.02499479166666667],[119,287,77,-0.02499479166666667],[119,287,78,-0.02499479166666667],[119,287,79,-0.02499479166666667],[119,288,64,-0.02499479166666667],[119,288,65,-0.02499479166666667],[119,288,66,-0.02499479166666667],[119,288,67,-0.02499479166666667],[119,288,68,-0.02499479166666667],[119,288,69,-0.02499479166666667],[119,288,70,-0.02499479166666667],[119,288,71,-0.02499479166666667],[119,288,72,-0.02499479166666667],[119,288,73,-0.02499479166666667],[119,288,74,-0.02499479166666667],[119,288,75,-0.02499479166666667],[119,288,76,-0.02499479166666667],[119,288,77,-0.02499479166666667],[119,288,78,-0.02499479166666667],[119,288,79,-0.02499479166666667],[119,289,64,-0.02499479166666667],[119,289,65,-0.02499479166666667],[119,289,66,-0.02499479166666667],[119,289,67,-0.02499479166666667],[119,289,68,-0.02499479166666667],[119,289,69,-0.02499479166666667],[119,289,70,-0.02499479166666667],[119,289,71,-0.02499479166666667],[119,289,72,-0.02499479166666667],[119,289,73,-0.02499479166666667],[119,289,74,-0.02499479166666667],[119,289,75,-0.02499479166666667],[119,289,76,-0.02499479166666667],[119,289,77,-0.02499479166666667],[119,289,78,-0.02499479166666667],[119,289,79,-0.02499479166666667],[119,290,64,-0.02499479166666667],[119,290,65,-0.02499479166666667],[119,290,66,-0.02499479166666667],[119,290,67,-0.02499479166666667],[119,290,68,-0.02499479166666667],[119,290,69,-0.02499479166666667],[119,290,70,-0.02499479166666667],[119,290,71,-0.02499479166666667],[119,290,72,-0.02499479166666667],[119,290,73,-0.02499479166666667],[119,290,74,-0.02499479166666667],[119,290,75,-0.02499479166666667],[119,290,76,-0.02499479166666667],[119,290,77,-0.02499479166666667],[119,290,78,-0.02499479166666667],[119,290,79,-0.02499479166666667],[119,291,64,-0.02499479166666667],[119,291,65,-0.02499479166666667],[119,291,66,-0.02499479166666667],[119,291,67,-0.02499479166666667],[119,291,68,-0.02499479166666667],[119,291,69,-0.02499479166666667],[119,291,70,-0.02499479166666667],[119,291,71,-0.02499479166666667],[119,291,72,-0.02499479166666667],[119,291,73,-0.02499479166666667],[119,291,74,-0.02499479166666667],[119,291,75,-0.02499479166666667],[119,291,76,-0.02499479166666667],[119,291,77,-0.02499479166666667],[119,291,78,-0.02499479166666667],[119,291,79,-0.02499479166666667],[119,292,64,-0.02499479166666667],[119,292,65,-0.02499479166666667],[119,292,66,-0.02499479166666667],[119,292,67,-0.02499479166666667],[119,292,68,-0.02499479166666667],[119,292,69,-0.02499479166666667],[119,292,70,-0.02499479166666667],[119,292,71,-0.02499479166666667],[119,292,72,-0.02499479166666667],[119,292,73,-0.02499479166666667],[119,292,74,-0.02499479166666667],[119,292,75,-0.02499479166666667],[119,292,76,-0.02499479166666667],[119,292,77,-0.02499479166666667],[119,292,78,-0.02499479166666667],[119,292,79,-0.02499479166666667],[119,293,64,-0.02499479166666667],[119,293,65,-0.02499479166666667],[119,293,66,-0.02499479166666667],[119,293,67,-0.02499479166666667],[119,293,68,-0.02499479166666667],[119,293,69,-0.02499479166666667],[119,293,70,-0.02499479166666667],[119,293,71,-0.02499479166666667],[119,293,72,-0.02499479166666667],[119,293,73,-0.02499479166666667],[119,293,74,-0.02499479166666667],[119,293,75,-0.02499479166666667],[119,293,76,-0.02499479166666667],[119,293,77,-0.02499479166666667],[119,293,78,-0.02499479166666667],[119,293,79,-0.02499479166666667],[119,294,64,-0.02499479166666667],[119,294,65,-0.02499479166666667],[119,294,66,-0.02499479166666667],[119,294,67,-0.02499479166666667],[119,294,68,-0.02499479166666667],[119,294,69,-0.02499479166666667],[119,294,70,-0.02499479166666667],[119,294,71,-0.02499479166666667],[119,294,72,-0.02499479166666667],[119,294,73,-0.02499479166666667],[119,294,74,-0.02499479166666667],[119,294,75,-0.02499479166666667],[119,294,76,-0.02499479166666667],[119,294,77,-0.02499479166666667],[119,294,78,-0.02499479166666667],[119,294,79,-0.02499479166666667],[119,295,64,-0.02499479166666667],[119,295,65,-0.02499479166666667],[119,295,66,-0.02499479166666667],[119,295,67,-0.02499479166666667],[119,295,68,-0.02499479166666667],[119,295,69,-0.02499479166666667],[119,295,70,-0.02499479166666667],[119,295,71,-0.02499479166666667],[119,295,72,-0.02499479166666667],[119,295,73,-0.02499479166666667],[119,295,74,-0.02499479166666667],[119,295,75,-0.02499479166666667],[119,295,76,-0.02499479166666667],[119,295,77,-0.02499479166666667],[119,295,78,-0.02499479166666667],[119,295,79,-0.02499479166666667],[119,296,64,-0.02499479166666667],[119,296,65,-0.02499479166666667],[119,296,66,-0.02499479166666667],[119,296,67,-0.02499479166666667],[119,296,68,-0.02499479166666667],[119,296,69,-0.02499479166666667],[119,296,70,-0.02499479166666667],[119,296,71,-0.02499479166666667],[119,296,72,-0.02499479166666667],[119,296,73,-0.02499479166666667],[119,296,74,-0.02499479166666667],[119,296,75,-0.02499479166666667],[119,296,76,-0.02499479166666667],[119,296,77,-0.02499479166666667],[119,296,78,-0.02499479166666667],[119,296,79,-0.02499479166666667],[119,297,64,-0.02499479166666667],[119,297,65,-0.02499479166666667],[119,297,66,-0.02499479166666667],[119,297,67,-0.02499479166666667],[119,297,68,-0.02499479166666667],[119,297,69,-0.02499479166666667],[119,297,70,-0.02499479166666667],[119,297,71,-0.02499479166666667],[119,297,72,-0.02499479166666667],[119,297,73,-0.02499479166666667],[119,297,74,-0.02499479166666667],[119,297,75,-0.02499479166666667],[119,297,76,-0.02499479166666667],[119,297,77,-0.02499479166666667],[119,297,78,-0.02499479166666667],[119,297,79,-0.02499479166666667],[119,298,64,-0.02499479166666667],[119,298,65,-0.02499479166666667],[119,298,66,-0.02499479166666667],[119,298,67,-0.02499479166666667],[119,298,68,-0.02499479166666667],[119,298,69,-0.02499479166666667],[119,298,70,-0.02499479166666667],[119,298,71,-0.02499479166666667],[119,298,72,-0.02499479166666667],[119,298,73,-0.02499479166666667],[119,298,74,-0.02499479166666667],[119,298,75,-0.02499479166666667],[119,298,76,-0.02499479166666667],[119,298,77,-0.02499479166666667],[119,298,78,-0.02499479166666667],[119,298,79,-0.02499479166666667],[119,299,64,-0.02499479166666667],[119,299,65,-0.02499479166666667],[119,299,66,-0.02499479166666667],[119,299,67,-0.02499479166666667],[119,299,68,-0.02499479166666667],[119,299,69,-0.02499479166666667],[119,299,70,-0.02499479166666667],[119,299,71,-0.02499479166666667],[119,299,72,-0.02499479166666667],[119,299,73,-0.02499479166666667],[119,299,74,-0.02499479166666667],[119,299,75,-0.02499479166666667],[119,299,76,-0.02499479166666667],[119,299,77,-0.02499479166666667],[119,299,78,-0.02499479166666667],[119,299,79,-0.02499479166666667],[119,300,64,-0.02499479166666667],[119,300,65,-0.02499479166666667],[119,300,66,-0.02499479166666667],[119,300,67,-0.02499479166666667],[119,300,68,-0.02499479166666667],[119,300,69,-0.02499479166666667],[119,300,70,-0.02499479166666667],[119,300,71,-0.02499479166666667],[119,300,72,-0.02499479166666667],[119,300,73,-0.02499479166666667],[119,300,74,-0.02499479166666667],[119,300,75,-0.02499479166666667],[119,300,76,-0.02499479166666667],[119,300,77,-0.02499479166666667],[119,300,78,-0.02499479166666667],[119,300,79,-0.02499479166666667],[119,301,64,-0.02499479166666667],[119,301,65,-0.02499479166666667],[119,301,66,-0.02499479166666667],[119,301,67,-0.02499479166666667],[119,301,68,-0.02499479166666667],[119,301,69,-0.02499479166666667],[119,301,70,-0.02499479166666667],[119,301,71,-0.02499479166666667],[119,301,72,-0.02499479166666667],[119,301,73,-0.02499479166666667],[119,301,74,-0.02499479166666667],[119,301,75,-0.02499479166666667],[119,301,76,-0.02499479166666667],[119,301,77,-0.02499479166666667],[119,301,78,-0.02499479166666667],[119,301,79,-0.02499479166666667],[119,302,64,-0.02499479166666667],[119,302,65,-0.02499479166666667],[119,302,66,-0.02499479166666667],[119,302,67,-0.02499479166666667],[119,302,68,-0.02499479166666667],[119,302,69,-0.02499479166666667],[119,302,70,-0.02499479166666667],[119,302,71,-0.02499479166666667],[119,302,72,-0.02499479166666667],[119,302,73,-0.02499479166666667],[119,302,74,-0.02499479166666667],[119,302,75,-0.02499479166666667],[119,302,76,-0.02499479166666667],[119,302,77,-0.02499479166666667],[119,302,78,-0.02499479166666667],[119,302,79,-0.02499479166666667],[119,303,64,-0.02499479166666667],[119,303,65,-0.02499479166666667],[119,303,66,-0.02499479166666667],[119,303,67,-0.02499479166666667],[119,303,68,-0.02499479166666667],[119,303,69,-0.02499479166666667],[119,303,70,-0.02499479166666667],[119,303,71,-0.02499479166666667],[119,303,72,-0.02499479166666667],[119,303,73,-0.02499479166666667],[119,303,74,-0.02499479166666667],[119,303,75,-0.02499479166666667],[119,303,76,-0.02499479166666667],[119,303,77,-0.02499479166666667],[119,303,78,-0.02499479166666667],[119,303,79,-0.02499479166666667],[119,304,64,-0.02499479166666667],[119,304,65,-0.02499479166666667],[119,304,66,-0.02499479166666667],[119,304,67,-0.02499479166666667],[119,304,68,-0.02499479166666667],[119,304,69,-0.02499479166666667],[119,304,70,-0.02499479166666667],[119,304,71,-0.02499479166666667],[119,304,72,-0.02499479166666667],[119,304,73,-0.02499479166666667],[119,304,74,-0.02499479166666667],[119,304,75,-0.02499479166666667],[119,304,76,-0.02499479166666667],[119,304,77,-0.02499479166666667],[119,304,78,-0.02499479166666667],[119,304,79,-0.02499479166666667],[119,305,64,-0.02499479166666667],[119,305,65,-0.02499479166666667],[119,305,66,-0.02499479166666667],[119,305,67,-0.02499479166666667],[119,305,68,-0.02499479166666667],[119,305,69,-0.02499479166666667],[119,305,70,-0.02499479166666667],[119,305,71,-0.02499479166666667],[119,305,72,-0.02499479166666667],[119,305,73,-0.02499479166666667],[119,305,74,-0.02499479166666667],[119,305,75,-0.02499479166666667],[119,305,76,-0.02499479166666667],[119,305,77,-0.02499479166666667],[119,305,78,-0.02499479166666667],[119,305,79,-0.02499479166666667],[119,306,64,-0.02499479166666667],[119,306,65,-0.02499479166666667],[119,306,66,-0.02499479166666667],[119,306,67,-0.02499479166666667],[119,306,68,-0.02499479166666667],[119,306,69,-0.02499479166666667],[119,306,70,-0.02499479166666667],[119,306,71,-0.02499479166666667],[119,306,72,-0.02499479166666667],[119,306,73,-0.02499479166666667],[119,306,74,-0.02499479166666667],[119,306,75,-0.02499479166666667],[119,306,76,-0.02499479166666667],[119,306,77,-0.02499479166666667],[119,306,78,-0.02499479166666667],[119,306,79,-0.02499479166666667],[119,307,64,-0.02499479166666667],[119,307,65,-0.02499479166666667],[119,307,66,-0.02499479166666667],[119,307,67,-0.02499479166666667],[119,307,68,-0.02499479166666667],[119,307,69,-0.02499479166666667],[119,307,70,-0.02499479166666667],[119,307,71,-0.02499479166666667],[119,307,72,-0.02499479166666667],[119,307,73,-0.02499479166666667],[119,307,74,-0.02499479166666667],[119,307,75,-0.02499479166666667],[119,307,76,-0.02499479166666667],[119,307,77,-0.02499479166666667],[119,307,78,-0.02499479166666667],[119,307,79,-0.02499479166666667],[119,308,64,-0.02499479166666667],[119,308,65,-0.02499479166666667],[119,308,66,-0.02499479166666667],[119,308,67,-0.02499479166666667],[119,308,68,-0.02499479166666667],[119,308,69,-0.02499479166666667],[119,308,70,-0.02499479166666667],[119,308,71,-0.02499479166666667],[119,308,72,-0.02499479166666667],[119,308,73,-0.02499479166666667],[119,308,74,-0.02499479166666667],[119,308,75,-0.02499479166666667],[119,308,76,-0.02499479166666667],[119,308,77,-0.02499479166666667],[119,308,78,-0.02499479166666667],[119,308,79,-0.02499479166666667],[119,309,64,-0.02499479166666667],[119,309,65,-0.02499479166666667],[119,309,66,-0.02499479166666667],[119,309,67,-0.02499479166666667],[119,309,68,-0.02499479166666667],[119,309,69,-0.02499479166666667],[119,309,70,-0.02499479166666667],[119,309,71,-0.02499479166666667],[119,309,72,-0.02499479166666667],[119,309,73,-0.02499479166666667],[119,309,74,-0.02499479166666667],[119,309,75,-0.02499479166666667],[119,309,76,-0.02499479166666667],[119,309,77,-0.02499479166666667],[119,309,78,-0.02499479166666667],[119,309,79,-0.02499479166666667],[119,310,64,-0.02499479166666667],[119,310,65,-0.02499479166666667],[119,310,66,-0.02499479166666667],[119,310,67,-0.02499479166666667],[119,310,68,-0.02499479166666667],[119,310,69,-0.02499479166666667],[119,310,70,-0.02499479166666667],[119,310,71,-0.02499479166666667],[119,310,72,-0.02499479166666667],[119,310,73,-0.02499479166666667],[119,310,74,-0.02499479166666667],[119,310,75,-0.02499479166666667],[119,310,76,-0.02499479166666667],[119,310,77,-0.02499479166666667],[119,310,78,-0.02499479166666667],[119,310,79,-0.02499479166666667],[119,311,64,-0.02499479166666667],[119,311,65,-0.02499479166666667],[119,311,66,-0.02499479166666667],[119,311,67,-0.02499479166666667],[119,311,68,-0.02499479166666667],[119,311,69,-0.02499479166666667],[119,311,70,-0.02499479166666667],[119,311,71,-0.02499479166666667],[119,311,72,-0.02499479166666667],[119,311,73,-0.02499479166666667],[119,311,74,-0.02499479166666667],[119,311,75,-0.02499479166666667],[119,311,76,-0.02499479166666667],[119,311,77,-0.02499479166666667],[119,311,78,-0.02499479166666667],[119,311,79,-0.02499479166666667],[119,312,64,-0.02499479166666667],[119,312,65,-0.02499479166666667],[119,312,66,-0.02499479166666667],[119,312,67,-0.02499479166666667],[119,312,68,-0.02499479166666667],[119,312,69,-0.02499479166666667],[119,312,70,-0.02499479166666667],[119,312,71,-0.02499479166666667],[119,312,72,-0.02499479166666667],[119,312,73,-0.02499479166666667],[119,312,74,-0.02499479166666667],[119,312,75,-0.02499479166666667],[119,312,76,-0.02499479166666667],[119,312,77,-0.02499479166666667],[119,312,78,-0.02499479166666667],[119,312,79,-0.02499479166666667],[119,313,64,-0.02499479166666667],[119,313,65,-0.02499479166666667],[119,313,66,-0.02499479166666667],[119,313,67,-0.02499479166666667],[119,313,68,-0.02499479166666667],[119,313,69,-0.02499479166666667],[119,313,70,-0.02499479166666667],[119,313,71,-0.02499479166666667],[119,313,72,-0.02499479166666667],[119,313,73,-0.02499479166666667],[119,313,74,-0.02499479166666667],[119,313,75,-0.02499479166666667],[119,313,76,-0.02499479166666667],[119,313,77,-0.02499479166666667],[119,313,78,-0.02499479166666667],[119,313,79,-0.02499479166666667],[119,314,64,-0.02499479166666667],[119,314,65,-0.02499479166666667],[119,314,66,-0.02499479166666667],[119,314,67,-0.02499479166666667],[119,314,68,-0.02499479166666667],[119,314,69,-0.02499479166666667],[119,314,70,-0.02499479166666667],[119,314,71,-0.02499479166666667],[119,314,72,-0.02499479166666667],[119,314,73,-0.02499479166666667],[119,314,74,-0.02499479166666667],[119,314,75,-0.02499479166666667],[119,314,76,-0.02499479166666667],[119,314,77,-0.02499479166666667],[119,314,78,-0.02499479166666667],[119,314,79,-0.02499479166666667],[119,315,64,-0.02499479166666667],[119,315,65,-0.02499479166666667],[119,315,66,-0.02499479166666667],[119,315,67,-0.02499479166666667],[119,315,68,-0.02499479166666667],[119,315,69,-0.02499479166666667],[119,315,70,-0.02499479166666667],[119,315,71,-0.02499479166666667],[119,315,72,-0.02499479166666667],[119,315,73,-0.02499479166666667],[119,315,74,-0.02499479166666667],[119,315,75,-0.02499479166666667],[119,315,76,-0.02499479166666667],[119,315,77,-0.02499479166666667],[119,315,78,-0.02499479166666667],[119,315,79,-0.02499479166666667],[119,316,64,-0.02499479166666667],[119,316,65,-0.02499479166666667],[119,316,66,-0.02499479166666667],[119,316,67,-0.02499479166666667],[119,316,68,-0.02499479166666667],[119,316,69,-0.02499479166666667],[119,316,70,-0.02499479166666667],[119,316,71,-0.02499479166666667],[119,316,72,-0.02499479166666667],[119,316,73,-0.02499479166666667],[119,316,74,-0.02499479166666667],[119,316,75,-0.02499479166666667],[119,316,76,-0.02499479166666667],[119,316,77,-0.02499479166666667],[119,316,78,-0.02499479166666667],[119,316,79,-0.02499479166666667],[119,317,64,-0.02499479166666667],[119,317,65,-0.02499479166666667],[119,317,66,-0.02499479166666667],[119,317,67,-0.02499479166666667],[119,317,68,-0.02499479166666667],[119,317,69,-0.02499479166666667],[119,317,70,-0.02499479166666667],[119,317,71,-0.02499479166666667],[119,317,72,-0.02499479166666667],[119,317,73,-0.02499479166666667],[119,317,74,-0.02499479166666667],[119,317,75,-0.02499479166666667],[119,317,76,-0.02499479166666667],[119,317,77,-0.02499479166666667],[119,317,78,-0.02499479166666667],[119,317,79,-0.02499479166666667],[119,318,64,-0.02499479166666667],[119,318,65,-0.02499479166666667],[119,318,66,-0.02499479166666667],[119,318,67,-0.02499479166666667],[119,318,68,-0.02499479166666667],[119,318,69,-0.02499479166666667],[119,318,70,-0.02499479166666667],[119,318,71,-0.02499479166666667],[119,318,72,-0.02499479166666667],[119,318,73,-0.02499479166666667],[119,318,74,-0.02499479166666667],[119,318,75,-0.02499479166666667],[119,318,76,-0.02499479166666667],[119,318,77,-0.02499479166666667],[119,318,78,-0.02499479166666667],[119,318,79,-0.02499479166666667],[119,319,64,-0.02499479166666667],[119,319,65,-0.02499479166666667],[119,319,66,-0.02499479166666667],[119,319,67,-0.02499479166666667],[119,319,68,-0.02499479166666667],[119,319,69,-0.02499479166666667],[119,319,70,-0.02499479166666667],[119,319,71,-0.02499479166666667],[119,319,72,-0.02499479166666667],[119,319,73,-0.02499479166666667],[119,319,74,-0.02499479166666667],[119,319,75,-0.02499479166666667],[119,319,76,-0.02499479166666667],[119,319,77,-0.02499479166666667],[119,319,78,-0.02499479166666667],[119,319,79,-0.02499479166666667],[120,-64,64,0.037482421875],[120,-64,65,0.037482421875],[120,-64,66,0.037482421875],[120,-64,67,0.037482421875],[120,-64,68,0.037482421875],[120,-64,69,0.037482421875],[120,-64,70,0.037482421875],[120,-64,71,0.037482421875],[120,-64,72,0.037482421875],[120,-64,73,0.037482421875],[120,-64,74,0.037482421875],[120,-64,75,0.037482421875],[120,-64,76,0.037482421875],[120,-64,77,0.037482421875],[120,-64,78,0.037482421875],[120,-64,79,0.037482421875],[120,-63,64,0.04053109394386863],[120,-63,65,0.04061168324029662],[120,-63,66,0.04069375278656469],[120,-63,67,0.04077707342420768],[120,-63,68,0.04086170255143386],[120,-63,69,0.04094786685463436],[120,-63,70,0.04103570867101855],[120,-63,71,0.041125280804228226],[120,-63,72,0.04121654791851744],[120,-63,73,0.04130938894431015],[120,-63,74,0.04140360051502602],[120,-63,75,0.041498901453279405],[120,-63,76,0.04159493832269209],[120,-63,77,0.04169129205963513],[120,-63,78,0.041787485697240195],[120,-63,79,0.04188299319202521],[120,-62,64,0.04364030043900217],[120,-62,65,0.043803931549249886],[120,-62,66,0.04397061503283734],[120,-62,67,0.04413991863537143],[120,-62,68,0.04431193888313781],[120,-62,69,0.04448707853895736],[120,-62,70,0.0446655728026581],[120,-62,71,0.044847480650855046],[120,-62,72,0.04503268850468795],[120,-62,73,0.04522091582020762],[120,-62,74,0.04541172263716854],[120,-62,75,0.04560451911846999],[120,-62,76,0.04579857710884369],[120,-62,77,0.04599304373765161],[120,-62,78,0.04618695708685752],[120,-62,79,0.046379263941428904],[120,-61,64,0.04681621012628433],[120,-61,65,0.04706487200615099],[120,-61,66,0.04731818449421418],[120,-61,67,0.04757555014689317],[120,-61,68,0.04783708513756239],[120,-61,69,0.0481033092816849],[120,-61,70,0.04837449787892878],[120,-61,71,0.04865067081275502],[120,-61,72,0.04893159863906379],[120,-61,73,0.04921681143784563],[120,-61,74,0.049505610476861014],[120,-61,75,0.0497970827311944],[120,-61,76,0.050090118297191503],[120,-61,77,0.05038343073385336],[120,-61,78,0.05067558035927031],[120,-61,79,0.05096500052422017],[120,-60,64,0.05006400032487905],[120,-60,65,0.05039922292952168],[120,-60,66,0.05074065517392799],[120,-60,67,0.051087581388524504],[120,-60,68,0.05144011744518559],[120,-60,69,0.05179883565012387],[120,-60,70,0.05216399757431933],[120,-60,71,0.05253554169208875],[120,-60,72,0.052913091382129525],[120,-60,73,0.05329596648716145],[120,-60,74,0.053683198493088384],[120,-60,75,0.05407354938184418],[120,-60,76,0.05446553420514766],[120,-60,77,0.054857447419357004],[120,-60,78,0.05524739301454991],[120,-60,79,0.05563331846398058],[120,-59,64,0.053387691746148415],[120,-59,65,0.05381056814571891],[120,-59,66,0.0542411127522783],[120,-59,67,0.054678544009723946],[120,-59,68,0.05512295735695677],[120,-59,69,0.055574910168509524],[120,-59,70,0.05603459723648987],[120,-59,71,0.05650183732001291],[120,-59,72,0.05697608201124095],[120,-59,73,0.057456428931171075],[120,-59,74,0.057941639327590416],[120,-59,75,0.058430160139380086],[120,-59,76,0.05892015058290314],[120,-59,77,0.059409513307676104],[120,-59,78,0.05989593015998835],[120,-59,79,0.06037690258475562],[120,-58,64,0.05679006830238884],[120,-58,65,0.05730129625223508],[120,-58,66,0.057821497025257025],[120,-58,67,0.0583498762747489],[120,-58,68,0.05888648831097503],[120,-58,69,0.05943180747924011],[120,-58,70,0.05998591073317275],[120,-58,71,0.06054846314490141],[120,-58,72,0.06111872620778458],[120,-58,73,0.06169557122684223],[120,-58,74,0.062277497881022464],[120,-58,75,0.06286265803183713],[120,-58,76,0.06344888484305553],[120,-58,77,0.064033727266209],[120,-58,78,0.06461448993674848],[120,-58,79,0.06518827851601096],[120,-57,64,0.060272697611875606],[120,-57,65,0.06087264242695942],[120,-57,66,0.061482668794179046],[120,-57,67,0.06210201782232485],[120,-57,68,0.06273068015603159],[120,-57,69,0.06336897970417271],[120,-57,70,0.06401682681471664],[120,-57,71,0.06467370259811767],[120,-57,72,0.06533866505607996],[120,-57,73,0.06601036104122439],[120,-57,74,0.06668704414390811],[120,-57,75,0.06736659859162857],[120,-57,76,0.06804656923533091],[120,-57,77,0.06872419768571468],[120,-57,78,0.06939646465145367],[120,-57,79,0.07006013852034336],[120,-56,64,0.06383569542253849],[120,-56,65,0.06452444356861005],[120,-56,66,0.06522415868246942],[120,-56,67,0.06593415460128309],[120,-56,68,0.06665433205218664],[120,-56,69,0.06738479873770337],[120,-56,70,0.06812525192291947],[120,-56,71,0.06887496132903355],[120,-56,72,0.06963277147467428],[120,-56,73,0.0703971105636933],[120,-56,74,0.07116600602802912],[120,-56,75,0.07193710682237954],[120,-56,76,0.07270771255519652],[120,-56,77,0.07347480952815116],[120,-56,78,0.07423511374388761],[120,-56,79,0.07498512092988352],[120,-55,64,0.06747516079143748],[120,-55,65,0.06825234638307776],[120,-55,66,0.06904114438288474],[120,-55,67,0.06984096528046164],[120,-55,68,0.0706515915329023],[120,-55,69,0.0714728561792512],[120,-55,70,0.07230420506135334],[120,-55,71,0.07314467759179756],[120,-55,72,0.07399290345146203],[120,-55,73,0.07484710653801263],[120,-55,74,0.07570511628716108],[120,-55,75,0.07656438647575273],[120,-55,76,0.07742202160256247],[120,-55,77,0.07827481092928341],[120,-55,78,0.07911927025080971],[120,-55,79,0.0799516914508771],[120,-54,64,0.07118398911744155],[120,-54,65,0.07204866773574153],[120,-54,66,0.07292535863097738],[120,-54,67,0.07381357845488656],[120,-54,68,0.07471296272943923],[120,-54,69,0.07562302333494174],[120,-54,70,0.07654292909553395],[120,-54,71,0.07747148301160842],[120,-54,72,0.07840711104218825],[120,-54,73,0.07934785887210156],[120,-54,74,0.08029139680101485],[120,-54,75,0.08123503287787869],[120,-54,76,0.0821757343902552],[120,-54,77,0.08311015780361469],[120,-54,78,0.08403468723125607],[120,-54,79,0.08494548150139623],[120,-53,64,0.0749533373339783],[120,-53,65,0.07590396713768405],[120,-53,66,0.07686677136200026],[120,-53,67,0.07784136666903277],[120,-53,68,0.07882721326198451],[120,-53,69,0.07982346938514388],[120,-53,70,0.08082901554731053],[120,-53,71,0.08184242604944876],[120,-53,72,0.08286194717293525],[120,-53,73,0.08388548416326932],[120,-53,74,0.08491059716479106],[120,-53,75,0.0859345062476935],[120,-53,76,0.08695410565361497],[120,-53,77,0.08796598737066658],[120,-53,78,0.08896647413315943],[120,-53,79,0.08995166192595865],[120,-52,64,0.0787731439582025],[120,-52,65,0.07980759034478302],[120,-52,66,0.08085415736479937],[120,-52,67,0.08191253945001112],[120,-52,68,0.08298199396838196],[120,-52,69,0.08406130837078339],[120,-52,70,0.08514907858191366],[120,-52,71,0.08624367189767972],[120,-52,72,0.08734319153049253],[120,-52,73,0.08844545088922373],[120,-52,74,0.08954795777215253],[120,-52,75,0.09064790863611812],[120,-52,76,0.09174219308904248],[120,-52,77,0.09282740873632564],[120,-52,78,0.09389988649463166],[120,-52,79,0.09495572646973278],[120,-51,64,0.08263267737031699],[120,-51,65,0.08374823825389156],[120,-51,66,0.08487568600456309],[120,-51,67,0.08601475489201435],[120,-51,68,0.0871644733993347],[120,-51,69,0.08832325694680429],[120,-51,70,0.08948943562123746],[120,-51,71,0.09066120480714392],[120,-51,72,0.09183657273329483],[120,-51,73,0.0930133188751968],[120,-51,74,0.0941889634197296],[120,-51,75,0.09536074798200567],[120,-51,76,0.09652562774714459],[120,-51,77,0.0976802751914467],[120,-51,78,0.09882109551871486],[120,-51,79,0.09994425392869195],[120,-50,64,0.08638378864625797],[120,-50,65,0.08771457664041898],[120,-50,66,0.08891954893553045],[120,-50,67,0.0901357660586572],[120,-50,68,0.09136200364838369],[120,-50,69,0.0925963197229191],[120,-50,70,0.09383681159783927],[120,-50,71,0.09508154998837966],[120,-50,72,0.09632850597839133],[120,-50,73,0.09757549020154388],[120,-50,74,0.09882010447465572],[120,-50,75,0.10005970610537761],[120,-50,76,0.10129138507738356],[120,-50,77,0.10251195429603913],[120,-50,78,0.10371795305654881],[120,-50,79,0.10490566387533506],[120,-49,64,0.08994352867053454],[120,-49,65,0.09137711729053964],[120,-49,66,0.09281882252325764],[120,-49,67,0.0942634858456565],[120,-49,68,0.09556232872587819],[120,-49,69,0.09686814528651395],[120,-49,70,0.0981788436722331],[120,-49,71,0.09949242477824231],[120,-49,72,0.1008068850876714],[120,-49,73,0.1021201333473301],[120,-49,74,0.10342992136088926],[120,-49,75,0.10473378915895017],[120,-49,76,0.10602902478420462],[120,-49,77,0.10731263890722434],[120,-49,78,0.10858135446465875],[120,-49,79,0.10983161148730222],[120,-48,64,0.09352959542062977],[120,-48,65,0.09506197221517147],[120,-48,66,0.09660477107675701],[120,-48,67,0.09815462915902717],[120,-48,68,0.09970908640973351],[120,-48,69,0.10112624917943631],[120,-48,70,0.10250370428026333],[120,-48,71,0.10388275266727477],[120,-48,72,0.10526146959910035],[120,-48,73,0.10663791696740132],[120,-48,74,0.10801005089946387],[120,-48,75,0.10937564568058047],[120,-48,76,0.11073223427222566],[120,-48,77,0.11207706567643401],[120,-48,78,0.11340707936975652],[120,-48,79,0.11471889700224416],[120,-47,64,0.09714840977400001],[120,-47,65,0.09877851955493451],[120,-47,66,0.10042125600117151],[120,-47,67,0.10207331685070206],[120,-47,68,0.10373235995285489],[120,-47,69,0.10535892322247241],[120,-47,70,0.1068005633290063],[120,-47,71,0.10824266939561711],[120,-47,72,0.10968343429172285],[120,-47,73,0.1111211110351784],[120,-47,74,0.11255389570790442],[120,-47,75,0.11397982880527364],[120,-47,76,0.11539671533364375],[120,-47,77,0.11680206394154487],[120,-47,78,0.11819304533936059],[120,-47,79,0.11956647023039714],[120,-46,64,0.10080495709024147],[120,-46,65,0.10253087796090485],[120,-46,66,0.10427140715435144],[120,-46,67,0.10602341634464194],[120,-46,68,0.10778473102125226],[120,-46,69,0.10955333386518165],[120,-46,70,0.11105996996633184],[120,-46,71,0.11256371664370464],[120,-46,72,0.11406537425155766],[120,-46,73,0.11556340624816785],[120,-46,74,0.11705626434960265],[120,-46,75,0.11854226679743923],[120,-46,76,0.12001949761681892],[120,-46,77,0.1214857271837291],[120,-46,78,0.12293835438586564],[120,-46,79,0.12437437062519045],[120,-45,64,0.10450243184325136],[120,-45,65,0.1063213492950105],[120,-45,66,0.10815652145402053],[120,-45,67,0.11000511647402912],[120,-45,68,0.11186518493905499],[120,-45,69,0.11370808452728254],[120,-45,70,0.11527403369730713],[120,-45,71,0.11683897645191273],[120,-45,72,0.11840139012439863],[120,-45,73,0.11995994836265379],[120,-45,74,0.12151335377447639],[120,-45,75,0.12306019342137468],[120,-45,76,0.12459881754569932],[120,-45,77,0.12612724187993757],[120,-45,78,0.12764307384847198],[120,-45,79,0.12914346293144044],[120,-44,64,0.10824195589320247],[120,-44,65,0.11015016019150733],[120,-44,66,0.11207583197729969],[120,-44,67,0.11401656456760312],[120,-44,68,0.11597069860940475],[120,-44,69,0.11780870625589507],[120,-44,70,0.11943655133951114],[120,-44,71,0.12106315671912647],[120,-44,72,0.1226871302411125],[120,-44,73,0.12430733569207979],[120,-44,74,0.12592270164323788],[120,-44,75,0.12753205526512484],[120,-44,76,0.12913398152621403],[120,-44,77,0.13072670814925186],[120,-44,78,0.1323080166566654],[120,-44,79,0.1338751797912687],[120,-43,64,0.11202236930999569],[120,-43,65,0.11401527471613275],[120,-43,66,0.11602634604508305],[120,-43,67,0.11805373314712955],[120,-43,68,0.12009613874206558],[120,-43,69,0.12185244099426852],[120,-43,70,0.12354308064414556],[120,-43,71,0.1252326285152998],[120,-43,72,0.12691979026085623],[120,-43,73,0.12860358033043495],[120,-43,74,0.1302831090209795],[120,-43,75,0.13195739643887666],[120,-43,76,0.13362521380938913],[120,-43,77,0.13528495252619618],[120,-43,78,0.13693452128744357],[120,-43,79,0.1385712716152583],[120,-42,64,0.11584009289095855],[120,-42,65,0.1179122772888448],[120,-42,66,0.12000275146804244],[120,-42,67,0.12211035209634173],[120,-42,68,0.12408225901246187],[120,-42,69,0.12583595483618515],[120,-42,70,0.1275909612522126],[120,-42,71,0.12934541579365552],[120,-42,72,0.13109807083797828],[120,-42,73,0.13284803353374558],[120,-42,74,0.13459453381072606],[120,-42,75,0.13633672096874516],[120,-42,76,0.13807348929676894],[120,-42,77,0.1398033331270487],[120,-42,78,0.14152423167907363],[120,-42,79,0.14323356399453366],[120,-41,64,0.1196890617154191],[120,-41,65,0.12183432521986334],[120,-41,66,0.12399739029737236],[120,-41,67,0.1261246859742709],[120,-41,68,0.12793862797972044],[120,-41,69,0.12975779985981056],[120,-41,70,0.13157928347863757],[120,-41,71,0.13340113792332198],[120,-41,72,0.13522209366707613],[120,-41,73,0.13704127555703283],[120,-41,74,0.13885795517924387],[120,-41,75,0.14067133310734506],[120,-41,76,0.1424803514942246],[120,-41,77,0.1442835374161684],[120,-41,78,0.1460788773254757],[120,-41,79,0.14786372291026204],[120,-40,64,0.1235607292468892],[120,-40,65,0.12577217036314553],[120,-40,66,0.12798336289135304],[120,-40,67,0.12985180363234283],[120,-40,68,0.13173164094126777],[120,-40,69,0.1336183522262601],[120,-40,70,0.13550880522456066],[120,-40,71,0.1374009052859377],[120,-40,72,0.1392932761010718],[120,-40,73,0.14118497010418704],[120,-40,74,0.14307520910884483],[120,-40,75,0.14496315568649826],[120,-40,76,0.1468477157472086],[120,-40,77,0.1487273727291351],[120,-40,78,0.15060005374694072],[120,-40,79,0.1524630279887757],[120,-39,64,0.12387619032973358],[120,-39,65,0.12601404390455978],[120,-39,66,0.12785227143765632],[120,-39,67,0.12971052055701798],[120,-39,68,0.13158216964993222],[120,-39,69,0.13346253113152298],[120,-39,70,0.13534831658988794],[120,-39,71,0.13723727940532068],[120,-39,72,0.13912790025130772],[120,-39,73,0.14101910138473456],[120,-39,74,0.14290999026389334],[120,-39,75,0.1447996329837121],[120,-39,76,0.14668685796777536],[120,-39,77,0.1485700903045252],[120,-39,78,0.15044721705941733],[120,-39,79,0.15231548383541854],[120,-38,64,0.12405348156201836],[120,-38,65,0.12585042170084512],[120,-38,66,0.12767779386184733],[120,-38,67,0.12952812886777348],[120,-38,68,0.13139419892469903],[120,-38,69,0.13327109364697973],[120,-38,70,0.1351552939346395],[120,-38,71,0.13704431534350603],[120,-38,72,0.13893640322461465],[120,-38,73,0.1408302553079961],[120,-38,74,0.1427247722427472],[120,-38,75,0.14461883655676655],[120,-38,76,0.14651112045055892],[120,-38,77,0.14839992278851746],[120,-38,78,0.14785629784785279],[120,-38,79,0.14562508130552163],[120,-37,64,0.12264511596780657],[120,-37,65,0.12460910403552981],[120,-37,66,0.12746919091128295],[120,-37,67,0.12931363691403988],[120,-37,68,0.13117641470062283],[120,-37,69,0.1330523244799165],[120,-37,70,0.13493753660396474],[120,-37,71,0.13682924110553754],[120,-37,72,0.138725356963904],[120,-37,73,0.13989253601925924],[120,-37,74,0.13877363846603175],[120,-37,75,0.1422452950355825],[120,-37,76,0.14116880969153436],[120,-37,77,0.13896390621343335],[120,-37,78,0.1390709099464203],[120,-37,79,0.13824072142931365],[120,-36,64,0.1168963080491658],[120,-36,65,0.11850707387653332],[120,-36,66,0.12338538284345288],[120,-36,67,0.12622290893424962],[120,-36,68,0.1302970626458002],[120,-36,69,0.13186029637708935],[120,-36,70,0.13149962001278348],[120,-36,71,0.1334512095576219],[120,-36,72,0.1342129767557662],[120,-36,73,0.13435685208395193],[120,-36,74,0.13239258483285343],[120,-36,75,0.13434096969165776],[120,-36,76,0.1336706088006895],[120,-36,77,0.1326092606837809],[120,-36,78,0.13247907324887098],[120,-36,79,0.13033862818370678],[120,-35,64,0.11240727236863607],[120,-35,65,0.11453404982235033],[120,-35,66,0.11992439416036306],[120,-35,67,0.12277895826747641],[120,-35,68,0.1262935954888487],[120,-35,69,0.12826755076306787],[120,-35,70,0.12890697249044653],[120,-35,71,0.12998700331607055],[120,-35,72,0.13008583109045144],[120,-35,73,0.1315799936908993],[120,-35,74,0.13005857426794976],[120,-35,75,0.13196779830071073],[120,-35,76,0.13089746578749495],[120,-35,77,0.13067224751334242],[120,-35,78,0.12888566661570236],[120,-35,79,0.1257548905653175],[120,-34,64,0.11029353642620944],[120,-34,65,0.11315939512325374],[120,-34,66,0.11928538962436559],[120,-34,67,0.1221150555607264],[120,-34,68,0.12590544094723663],[120,-34,69,0.1294208577980525],[120,-34,70,0.1317048901109539],[120,-34,71,0.13082915852219412],[120,-34,72,0.13022380484671964],[120,-34,73,0.13192900527895893],[120,-34,74,0.13053390932624248],[120,-34,75,0.13184100169309854],[120,-34,76,0.12984766055010855],[120,-34,77,0.1296405572776292],[120,-34,78,0.12610270284158404],[120,-34,79,0.12469646713567312],[120,-33,64,0.11270012377316789],[120,-33,65,0.11506063309380356],[120,-33,66,0.12119145335620636],[120,-33,67,0.12331440861802496],[120,-33,68,0.12737694139919695],[120,-33,69,0.13110203594904596],[120,-33,70,0.13380697486538232],[120,-33,71,0.13386459639990927],[120,-33,72,0.1337364030807163],[120,-33,73,0.1353260455510401],[120,-33,74,0.13297847731865842],[120,-33,75,0.13149142429951885],[120,-33,76,0.12878108558339338],[120,-33,77,0.12845668216548312],[120,-33,78,0.12456904477041174],[120,-33,79,0.12378833019394533],[120,-32,64,0.11616185307943958],[120,-32,65,0.11898412951305233],[120,-32,66,0.1253095036293981],[120,-32,67,0.1276294595390325],[120,-32,68,0.12991662492429887],[120,-32,69,0.1318047013285612],[120,-32,70,0.1337107908272188],[120,-32,71,0.1356292304009892],[120,-32,72,0.13755514228864232],[120,-32,73,0.13948427129380936],[120,-32,74,0.13793179791122842],[120,-32,75,0.1346974491925374],[120,-32,76,0.1311118217196131],[120,-32,77,0.12907000637780064],[120,-32,78,0.12619888461494805],[120,-32,79,0.12373812535740059],[120,-31,64,0.12015485267569816],[120,-31,65,0.12272364367373634],[120,-31,66,0.12598351449082076],[120,-31,67,0.12781125645537905],[120,-31,68,0.12967394838809182],[120,-31,69,0.13156299540029665],[120,-31,70,0.13347099392433523],[120,-31,71,0.13539151514356623],[120,-31,72,0.1373189590194408],[120,-31,73,0.1392484152756488],[120,-31,74,0.1411755315857471],[120,-31,75,0.13976967817783043],[120,-31,76,0.13559829816335994],[120,-31,77,0.13148684483748319],[120,-31,78,0.13028218969688665],[120,-31,79,0.12603908952160323],[120,-30,64,0.12227599178193459],[120,-30,65,0.12398677610053534],[120,-30,66,0.12575985906904316],[120,-30,67,0.12758273665470923],[120,-30,68,0.12944276150154205],[120,-30,69,0.13133050322939277],[120,-30,70,0.13323772254516353],[120,-30,71,0.13515718753034192],[120,-30,72,0.1370825544663892],[120,-30,73,0.1390082516917614],[120,-30,74,0.1409293667072543],[120,-30,75,0.14284153673269598],[120,-30,76,0.13837683553903868],[120,-30,77,0.1344589707940406],[120,-30,78,0.13350982838349196],[120,-30,79,0.12845905691238402],[120,-29,64,0.12209085010092169],[120,-29,65,0.12378925779595851],[120,-29,66,0.1255526736684631],[120,-29,67,0.1273683904345202],[120,-29,68,0.1292230997214865],[120,-29,69,0.13110647862261043],[120,-29,70,0.13300941311695444],[120,-29,71,0.134923847826279],[120,-29,72,0.13684269201919222],[120,-29,73,0.1387597246959143],[120,-29,74,0.14066949894814287],[120,-29,75,0.14256724578252172],[120,-29,76,0.14162829777572375],[120,-29,77,0.137833278137707],[120,-29,78,0.13539951382301546],[120,-29,79,0.12961280719074122],[120,-28,64,0.12192589991335868],[120,-28,65,0.1236099126404021],[120,-28,66,0.12536111749822937],[120,-28,67,0.12716670320264226],[120,-28,68,0.1290127228041503],[120,-28,69,0.1308879197033291],[120,-28,70,0.13278228450961993],[120,-28,71,0.13468693767802684],[120,-28,72,0.13659405814261885],[120,-28,73,0.13828607936859882],[120,-28,74,0.13998679698668276],[120,-28,75,0.14170316672639086],[120,-28,76,0.14343136257045205],[120,-28,77,0.14203576614653882],[120,-28,78,0.13745600508466924],[120,-28,79,0.13153823660093525],[120,-27,64,0.12177893734933895],[120,-27,65,0.12344593921153593],[120,-27,66,0.12518176411674953],[120,-27,67,0.1269735804450355],[120,-27,68,0.12880682908682756],[120,-27,69,0.1306692989699097],[120,-27,70,0.13240100322429968],[120,-27,71,0.13398891086872614],[120,-27,72,0.1356014122856995],[120,-27,73,0.1372388761687478],[120,-27,74,0.13890022522285936],[120,-27,75,0.1405830550656673],[120,-27,76,0.14228376025018036],[120,-27,77,0.14399766721796717],[120,-27,78,0.13997760922567792],[120,-27,79,0.13442067690429726],[120,-26,64,0.1216448794136635],[120,-26,65,0.12329163239877819],[120,-26,66,0.1250082839285627],[120,-26,67,0.12678204128991144],[120,-26,68,0.12842723180213386],[120,-26,69,0.12991694431420767],[120,-26,70,0.13142870922721925],[120,-26,71,0.1329669842433896],[120,-26,72,0.13453443536445792],[120,-26,73,0.13613202927980356],[120,-26,74,0.13775913655132033],[120,-26,75,0.13941364549480098],[120,-26,76,0.14109208660587233],[120,-26,77,0.1427897673311701],[120,-26,78,0.14189750611573076],[120,-26,79,0.13713092687622183],[120,-25,64,0.12151542035852292],[120,-25,65,0.12313805607196335],[120,-25,66,0.124665250213327],[120,-25,67,0.12607592085231037],[120,-25,68,0.12749538824069653],[120,-25,69,0.12893299845353348],[120,-25,70,0.130396010699265],[120,-25,71,0.13188967862583922],[120,-25,72,0.13341732172330226],[120,-25,73,0.1349804105371666],[120,-25,74,0.13657866566536886],[120,-25,75,0.13821017044612008],[120,-25,76,0.1398714971809156],[120,-25,77,0.1415578466781239],[120,-25,78,0.14299361875657593],[120,-25,79,0.13781681340642604],[120,-24,64,0.12104820338233596],[120,-24,65,0.12241928983146132],[120,-24,66,0.12377940264020534],[120,-24,67,0.12513791515899364],[120,-24,68,0.12650706501295958],[120,-24,69,0.12789717452286134],[120,-24,70,0.1293163521961914],[120,-24,71,0.13077055616769875],[120,-24,72,0.13226366022916902],[120,-24,73,0.13379753621532245],[120,-24,74,0.1353721527290433],[120,-24,75,0.1369856901130463],[120,-24,76,0.1386346715011613],[120,-24,77,0.140314109712709],[120,-24,78,0.14201766969007434],[120,-24,79,0.13676617366026828],[120,-23,64,0.12021227109390309],[120,-23,65,0.12153113563553002],[120,-23,66,0.12284070984225799],[120,-23,67,0.12415039081345122],[120,-23,68,0.12547298585600664],[120,-23,69,0.12681971448384377],[120,-23,70,0.12819944807311465],[120,-23,71,0.12961875866757633],[120,-23,72,0.1310819826566475],[120,-23,73,0.13259130306161124],[120,-23,74,0.13414685041760166],[120,-23,75,0.13574682215245007],[120,-23,76,0.13738762027897672],[120,-23,77,0.13906400713724226],[120,-23,78,0.1407692788500557],[120,-23,79,0.13702335278044628],[120,-22,64,0.11932991286994928],[120,-22,65,0.12059831684696613],[120,-22,66,0.12185965193324999],[120,-22,67,0.12312329019761377],[120,-22,68,0.12440251858277726],[120,-22,69,0.12570936009582523],[120,-22,70,0.12705335795876224],[120,-22,71,0.12844161113827807],[120,-22,72,0.12987883692342],[120,-22,73,0.13136745420354803],[120,-22,74,0.13290768743460663],[120,-22,75,0.1344976911849032],[120,-22,76,0.1361336950568097],[120,-22,77,0.1378101686907175],[120,-22,78,0.13952000647492122],[120,-22,79,0.1358322011517745],[120,-21,64,0.1184119636500524],[120,-21,65,0.1196311009757537],[120,-21,66,0.12084590538924635],[120,-21,67,0.12206566160903043],[120,-21,68,0.12330402846033801],[120,-21,69,0.1245737272476156],[120,-21,70,0.12588488006181128],[120,-21,71,0.12724503162773476],[120,-21,72,0.1286592103226904],[120,-21,73,0.13013001195708895],[120,-21,74,0.13165770630335122],[120,-21,75,0.13324036625255634],[120,-21,76,0.13487401937348434],[120,-21,77,0.136552821548825],[120,-21,78,0.13826925227141584],[120,-21,79,0.13306709146601828],[120,-20,64,0.11746888767713162],[120,-20,65,0.11863932089162291],[120,-20,66,0.1198086187834423],[120,-20,67,0.12098590728201457],[120,-20,68,0.12218509691580316],[120,-20,69,0.12341949458599683],[120,-20,70,0.12469970986670785],[120,-20,71,0.12603366104929487],[120,-20,72,0.1274266324562779],[120,-20,73,0.12888135667819187],[120,-20,74,0.13039812171785095],[120,-20,75,0.13197490290998726],[120,-20,76,0.13360751936961524],[120,-20,77,0.1352898146128688],[120,-20,78,0.1370138608928176],[120,-20,79,0.13266784280934008],[120,-19,64,0.11651110246664961],[120,-19,65,0.11763267369750399],[120,-19,66,0.11875668509179622],[120,-19,67,0.1198920272175392],[120,-19,68,0.12105273520522017],[120,-19,69,0.12225258612141911],[120,-19,70,0.12350259163796007],[120,-19,71,0.12481098443874475],[120,-19,72,0.1261832679811713],[120,-19,73,0.1276222935749882],[120,-19,74,0.12912836476326786],[120,-19,75,0.130699368864466],[120,-19,76,0.13233093541025723],[120,-19,77,0.13401662109437898],[120,-19,78,0.13574812073674788],[120,-19,79,0.13365775020587392],[120,-18,64,0.11554809195675933],[120,-18,65,0.11661975571102054],[120,-18,66,0.1176976963919532],[120,-18,67,0.1187904910864092],[120,-18,68,0.11991217123057485],[120,-18,69,0.12107687143359092],[120,-18,70,0.1222959313562574],[120,-18,71,0.12357785687840438],[120,-18,72,0.12492835670280787],[120,-18,73,0.12635040904782055],[120,-18,74,0.1278443584180698],[120,-18,75,0.12940804230810246],[120,-18,76,0.13103694755993753],[120,-18,77,0.13272439596579041],[120,-18,78,0.13446175858576195],[120,-18,79,0.13247567993750953],[120,-17,64,0.11458293821559501],[120,-17,65,0.11560285422588275],[120,-17,66,0.11663305704006867],[120,-17,67,0.11768173502701786],[120,-17,68,0.11876278928461872],[120,-17,69,0.1198906018446792],[120,-17,70,0.12107677435690173],[120,-17,71,0.12233005725434841],[120,-17,72,0.1236563664010321],[120,-17,73,0.12505883307684618],[120,-17,74,0.12653788729992416],[120,-17,75,0.12809137434374462],[120,-17,76,0.12971470416266184],[120,-17,77,0.13140103329903483],[120,-17,78,0.13314147871213972],[120,-17,79,0.13211900582650493],[120,-16,64,0.11360298556977541],[120,-16,65,0.11456976820101374],[120,-16,66,0.11555114024405672],[120,-16,67,0.11655483505880296],[120,-16,68,0.11759449096898332],[120,-16,69,0.11868460970141863],[120,-16,70,0.1198369664439577],[120,-16,71,0.12106050176470792],[120,-16,72,0.12236131278753086],[120,-16,73,0.12374268132002346],[120,-16,74,0.1252051389487436],[120,-16,75,0.1267465689658992],[120,-16,76,0.12836234483852338],[120,-16,77,0.13004550477959997],[120,-16,78,0.1317869618354906],[120,-16,79,0.13228558441910385],[120,-15,64,0.11259512769672692],[120,-15,65,0.11350807318763216],[120,-15,66,0.11444032164708945],[120,-15,67,0.11539909362635509],[120,-15,68,0.11639762656737274],[120,-15,69,0.11745039562690603],[120,-15,70,0.11856923623349573],[120,-15,71,0.11976319548398766],[120,-15,72,0.12103849403047492],[120,-15,73,0.12239852874424954],[120,-15,74,0.12384391618755518],[120,-15,75,0.12537257676628732],[120,-15,76,0.12697985927446434],[120,-15,77,0.128658705378891],[120,-15,78,0.1303998534351356],[120,-15,79,0.13014843667704337],[120,-14,64,0.11154985135311699],[120,-14,65,0.11240882423922399],[120,-14,66,0.11329228332312989],[120,-14,67,0.1142068853802021],[120,-14,68,0.11516532637369435],[120,-14,69,0.11618189575938648],[120,-14,70,0.11726835783679186],[120,-14,71,0.11843376105660303],[120,-14,72,0.11968436827179103],[120,-14,73,0.12102363165276761],[120,-14,74,0.12245221231287687],[120,-14,75,0.12396804452648667],[120,-14,76,0.1255664442511916],[120,-14,77,0.1272402614929834],[120,-14,78,0.12898007588422153],[120,-14,79,0.12706082980599617],[120,-13,64,0.08832728713819989],[120,-13,65,0.10388113010940545],[120,-13,66,0.11210139992086134],[120,-13,67,0.11297307363094984],[120,-13,68,0.11389295729190585],[120,-13,69,0.11487498834232805],[120,-13,70,0.11593071700519032],[120,-13,71,0.11706907341670468],[120,-13,72,0.11829626516330466],[120,-13,73,0.11961572329646558],[120,-13,74,0.1210280968852302],[120,-13,75,0.12253129599676367],[120,-13,76,0.12412058281698145],[120,-13,77,0.12578871044131992],[120,-13,78,0.12752610868587697],[120,-13,79,0.1252631415878344],[120,-12,64,0.0467932825832511],[120,-12,65,0.057055688234384845],[120,-12,66,0.06848417029903288],[120,-12,67,0.08106248845870868],[120,-12,68,0.09476831256633717],[120,-12,69,0.10957021477003753],[120,-12,70,0.1145539172143485],[120,-12,71,0.11566692941685026],[120,-12,72,0.11687212647236785],[120,-12,73,0.11817283195097877],[120,-12,74,0.11956961668639589],[120,-12,75,0.12106031993715106],[120,-12,76,0.12264012232129248],[120,-12,77,0.12430167004636775],[120,-12,78,0.12603524976709776],[120,-12,79,0.12544850634486535],[120,-11,64,0.020871908461971417],[120,-11,65,0.026865407867312396],[120,-11,66,0.03382762650981968],[120,-11,67,0.041770581417619856],[120,-11,68,0.05070088645779817],[120,-11,69,0.06061738749807317],[120,-11,70,0.07150731095497961],[120,-11,71,0.08334669577312165],[120,-11,72,0.09610099554694496],[120,-11,73,0.109725770590333],[120,-11,74,0.11807471204470465],[120,-11,75,0.11955276564516809],[120,-11,76,0.12112235156171906],[120,-11,77,0.12277599858300597],[120,-11,78,0.1245038581603368],[120,-11,79,0.12606622723785169],[120,-10,64,0.00694045103867617],[120,-10,65,0.009760563562974427],[120,-10,66,0.013314205506847983],[120,-10,67,0.01763710935157636],[120,-10,68,0.022759246612929395],[120,-10,69,0.0287031271728224],[120,-10,70,0.035479986129830964],[120,-10,71,0.043090234532329255],[120,-10,72,0.051524055747651315],[120,-10,73,0.06076205731903364],[120,-10,74,0.07077598344632878],[120,-10,75,0.0815294932021152],[120,-10,76,0.0929790086436306],[120,-10,77,0.10507463516129603],[120,-10,78,0.11776115386282066],[120,-10,79,0.12471083510478492],[120,-9,64,0.004958551637208685],[120,-9,65,0.005735146515702174],[120,-9,66,0.0065012989293784405],[120,-9,67,0.007260413404227282],[120,-9,68,0.008021092334104305],[120,-9,69,0.010311201975946609],[120,-9,70,0.013926391106578794],[120,-9,71,0.018217763421183406],[120,-9,72,0.023196059819866426],[120,-9,73,0.028862247655395603],[120,-9,74,0.03520821672988517],[120,-9,75,0.04221752287159201],[120,-9,76,0.04986618034205263],[120,-9,77,0.05812350439169605],[120,-9,78,0.06695300476328588],[120,-9,79,0.07631332988610949],[120,-8,64,0.003669606269338494],[120,-8,65,0.004430709472361401],[120,-8,66,0.005189167757845442],[120,-8,67,0.005947571832246296],[120,-8,68,0.00671322135347733],[120,-8,69,0.007496828385437882],[120,-8,70,0.008307945365312132],[120,-8,71,0.009154537401140838],[120,-8,72,0.01004271433195761],[120,-8,73,0.010976525474586258],[120,-8,74,0.014036696438210186],[120,-8,75,0.018113924595068016],[120,-8,76,0.02273372734996132],[120,-8,77,0.02788187443337883],[120,-8,78,0.033537714474278627],[120,-8,79,0.03967506957569938],[120,-7,64,0.0023827528291187187],[120,-7,65,0.003129551988805308],[120,-7,66,0.0038814446895556473],[120,-7,67,0.004640189188284487],[120,-7,68,0.005411717153255249],[120,-7,69,0.006205482047287338],[120,-7,70,0.007029981509275956],[120,-7,71,0.007892307483617233],[120,-7,72,0.00879785753906022],[120,-7,73,0.00975011011732206],[120,-7,74,0.010750463711615666],[120,-7,75,0.011798139846511995],[120,-7,76,0.012890149600854738],[120,-7,77,0.014021323285381125],[120,-7,78,0.01518440275623133],[120,-7,79,0.017674895753008894],[120,-6,64,0.0011015810867590129],[120,-6,65,0.0018352791663092671],[120,-6,66,0.002581619183066288],[120,-6,67,0.0033415130577057585],[120,-6,68,0.0041194810263994455],[120,-6,69,0.004923643502214848],[120,-6,70,0.0057613676923491935],[120,-6,71,0.006638800843834107],[120,-6,72,0.007560564833772037],[120,-6,73,0.00852951528517529],[120,-6,74,0.00954656521327104],[120,-6,75,0.010610573076134607],[120,-6,76,0.011718294971835921],[120,-6,77,0.012864400592507983],[120,-6,78,0.014041552413778687],[120,-6,79,0.015240547467745048],[120,-5,64,-1.7074407132699953E-4],[120,-5,65,5.510260299929259E-4],[120,-5,66,0.0012926701392233827],[120,-5,67,0.0020542450370287135],[120,-5,68,0.002838839397655514],[120,-5,69,0.003653194348235709],[120,-5,70,0.004503495510014214],[120,-5,71,0.00539489483213363],[120,-5,72,0.006331192788085988],[120,-5,73,0.0073145850258454275],[120,-5,74,0.00834547348067782],[120,-5,75,0.009422341827558243],[120,-5,76,0.010541695017672728],[120,-5,77,0.011698062511212843],[120,-5,78,0.01288406468648557],[120,-5,79,0.014090541775122704],[120,-4,64,-0.0014316124159192427],[120,-4,65,-7.2066901258086E-4],[120,-4,66,1.694707614699659E-5],[120,-4,67,7.80434067392024E-4],[120,-4,68,0.001571453108401527],[120,-4,69,0.002395349642724938],[120,-4,70,0.003257102635834803],[120,-4,71,0.004160840525160588],[120,-4,72,0.005109515583511275],[120,-4,73,0.006104641993041891],[120,-4,74,0.007146097642330585],[120,-4,75,0.008231989527300204],[120,-4,76,0.009358582504751306],[120,-4,77,0.010520291015794228],[120,-4,78,0.01170973326537212],[120,-4,79,0.01291784721521304],[120,-3,64,-0.0026790342889508444],[120,-3,65,-0.0019779279244361227],[120,-3,66,-0.0012438875639290319],[120,-3,67,-4.785713962502135E-4],[120,-3,68,3.182825051629321E-4],[120,-3,69,0.0011506380063829645],[120,-3,70,0.002022269197267353],[120,-3,71,0.002936275908134303],[120,-3,72,0.0038947549215688853],[120,-3,73,0.00489853349448294],[120,-3,74,0.005946965205991967],[120,-3,75,0.00703778801641635],[120,-3,76,0.008167044292549264],[120,-3,77,0.009329062424941244],[120,-3,78,0.010516499534267868],[120,-3,79,0.011720444637709994],[120,-2,64,-0.003911641198026458],[120,-2,65,-0.00321953257689849],[120,-2,66,-0.002488853595629497],[120,-2,67,-0.0017221110602427452],[120,-2,68,-9.203904234932278E-4],[120,-2,69,-8.106518862409496E-5],[120,-2,70,7.984623546781498E-4],[120,-2,71,0.001720281445649551],[120,-2,72,0.002685645595843658],[120,-2,73,0.0036947056173787444],[120,-2,74,0.004746302953987082],[120,-2,75,0.005837823205497278],[120,-2,76,0.006965109609330227],[120,-2,77,0.008122436116584808],[120,-2,78,0.009302539575298682],[120,-2,79,0.010496710411326503],[120,-1,64,-0.005128619593924309],[120,-1,65,-0.004444858605896524],[120,-1,66,-0.003717584339395084],[120,-1,67,-0.0029501389531774477],[120,-1,68,-0.002144881580709413],[120,-1,69,-0.0013004503603840536],[120,-1,70,-4.153698435092238E-4],[120,-1,71,5.114789831099372E-4],[120,-1,72,0.001480537520033374],[120,-1,73,0.0024913060628561612],[120,-1,74,0.003542138014377978],[120,-1,75,0.004630091697901597],[120,-1,76,0.005750839545637012],[120,-1,77,0.006898634314810105],[120,-1,78,0.008066331863993245],[120,-1,79,0.009245469905200851],[120,0,64,-0.006329576321547214],[120,0,65,-0.005653742106561096],[120,0,66,-0.004930192503238298],[120,0,67,-0.004163086698793023],[120,0,68,-0.003355964670343278],[120,0,69,-0.0025086307903620553],[120,0,70,-0.0016206542469077872],[120,0,71,-6.918250730041769E-4],[120,0,72,2.77535008128212E-4],[120,0,73,0.0012863163172863632],[120,0,74,0.002332419553726638],[120,0,75,0.0034126086330387483],[120,0,76,0.004522417814590496],[120,0,77,0.005656112789076455],[120,0,78,0.0068067052826234755],[120,0,79,0.00796602062313888],[120,1,64,-0.00751433461164505],[120,1,65,-0.006846278300841003],[120,1,66,-0.006127070037280428],[120,1,67,-0.005361663389596579],[120,1,68,-0.004554671067995875],[120,1,69,-0.0037069438635288277],[120,1,70,-0.0028189976662465594],[120,1,71,-0.0018914518830860894],[120,1,72,-9.253261824516904E-4],[120,1,73,7.771381862091147E-5],[120,1,74,0.0011151619459927643],[120,1,75,0.002183527848906834],[120,1,76,0.0032782441692528093],[120,1,77,0.0043936241905946525],[120,1,78,0.0055228695507930844],[120,1,79,0.006658127498348685],[120,2,64,-0.005317121511719553],[120,2,65,-0.008022551880736802],[120,2,66,-0.007308621966876211],[120,2,67,-0.00654659220671167],[120,2,68,-0.005742029797976511],[120,2,69,-0.004896696488433517],[120,2,70,-0.004011940975429836],[120,2,71,-0.0030891170095585217],[120,2,72,-0.0021298629757521502],[120,2,73,-0.0011363342470925488],[120,2,74,-1.113882899923338E-4],[120,2,75,9.412773970105833E-4],[120,2,76,0.002017034325621472],[120,2,77,0.003110278754800441],[120,2,78,0.004214433736388249],[120,2,79,0.005321996987300935],[120,3,64,-9.103270681122696E-4],[120,3,65,-0.0018320995517348683],[120,3,66,-0.003062296506010363],[120,3,67,-0.004661874465174645],[120,3,68,-0.0066801987211483355],[120,3,69,-0.00607884415505378],[120,3,70,-0.005200653244708939],[120,3,71,-0.0042861452862276595],[120,3,72,-0.0033374867215713415],[120,3,73,-0.0023572458651804204],[120,3,74,-0.0013485667662779001],[120,3,75,-3.1529990653572713E-4],[120,3,76,7.379100976793813E-4],[120,3,77,0.0018055795260228822],[120,3,78,0.002881382963966869],[120,3,79,0.0039581926498224495],[120,4,64,-2.4977992361182406E-4],[120,4,65,-4.5262061335613697E-4],[120,4,66,-6.725883348834273E-4],[120,4,67,-9.9368141826561E-4],[120,4,68,-0.001487716396981719],[120,4,69,-0.00221124938857068],[120,4,70,-0.003209851966478784],[120,4,71,-0.004519318903045385],[120,4,72,-0.004548907654695138],[120,4,73,-0.0035857699437388305],[120,4,74,-0.002597085103545283],[120,4,75,-0.0015867948313262833],[120,4,76,-5.595090577611882E-4],[120,4,77,4.7944906496579697E-4],[120,4,78,0.0015240365982949573],[120,4,79,0.00256752227522503],[120,5,64,4.036479851765396E-4],[120,5,65,-1.737345721836856E-4],[120,5,66,-4.5151063515507146E-4],[120,5,67,-5.36691193380697E-4],[120,5,68,-5.234535928739573E-4],[120,5,69,-4.899824292667292E-4],[120,5,70,-5.02788254689482E-4],[120,5,71,-6.178589351148106E-4],[120,5,72,-8.816805841113182E-4],[120,5,73,-0.001332220943512615],[120,5,74,-0.001999870734215189],[120,5,75,-0.0028730671523029888],[120,5,76,-0.0018750115328543602],[120,5,77,-8.67751158974944E-4],[120,5,78,1.429886859365898E-4],[120,5,79,0.001150896858284814],[120,6,64,0.004790977301777215],[120,6,65,0.0027450644492319548],[120,6,66,0.0013409849139754207],[120,6,67,4.4874581492906787E-4],[120,6,68,-4.8144268181426554E-5],[120,6,69,-2.4946017817844646E-4],[120,6,70,-2.426425604321062E-4],[120,6,71,-1.0389422125271644E-4],[120,6,72,1.0085048697654718E-4],[120,6,73,3.1498783451751854E-4],[120,6,74,4.903428333971423E-4],[120,6,75,5.863072488722501E-4],[120,6,76,5.690211222246725E-4],[120,6,77,4.106011264253412E-4],[120,6,78,8.841875373100557E-5],[120,6,79,-2.9084478153592317E-4],[120,7,64,0.016654857624218106],[120,7,65,0.012046839055248476],[120,7,66,0.008447952910441406],[120,7,67,0.005705535600122949],[120,7,68,0.003680937827671733],[120,7,69,0.0022528581623443593],[120,7,70,0.0013129324067607951],[120,7,71,7.64708157881342E-4],[120,7,72,5.22731597038026E-4],[120,7,73,5.116542786238367E-4],[120,7,74,6.653677767173953E-4],[120,7,75,9.261718819533592E-4],[120,7,76,0.001243980717456025],[120,7,77,0.0015755703152816256],[120,7,78,0.0018838706389367403],[120,7,79,0.0021373046138574584],[120,8,64,0.039726531147375316],[120,8,65,0.03147088340233319],[120,8,66,0.02461329998854386],[120,8,67,0.01898024237463165],[120,8,68,0.014411969368939933],[120,8,69,0.010766235696814347],[120,8,70,0.007914045933129804],[120,8,71,0.005738806323466322],[120,8,72,0.004135532418507662],[120,8,73,0.0030100377214340264],[120,8,74,0.0022781244648809994],[120,8,75,0.001864790848693416],[120,8,76,0.0017034645516184905],[120,8,77,0.0017352693533976302],[120,8,78,0.0019083297498383685],[120,8,79,0.002177117149841136],[120,9,64,0.07352797505945093],[120,9,65,0.06470283727349783],[120,9,66,0.05354740155664138],[120,9,67,0.043999052987124566],[120,9,68,0.03588114844897045],[120,9,69,0.029033201562182216],[120,9,70,0.02330729209943439],[120,9,71,0.018567707733039174],[120,9,72,0.014690491139934958],[120,9,73,0.011562860910438207],[120,9,74,0.009082559491612326],[120,9,75,0.007157165464811044],[120,9,76,0.005703396137773652],[120,9,77,0.004646418471610589],[120,9,78,0.003919180815807363],[120,9,79,0.0034617740872234866],[120,10,64,0.07131793769121114],[120,10,65,0.07111350072977436],[120,10,66,0.07101237171082485],[120,10,67,0.07100444326781981],[120,10,68,0.07108018059048792],[120,10,69,0.06074948273522463],[120,10,70,0.051208303315252134],[120,10,71,0.04298035895099536],[120,10,72,0.035925424379104676],[120,10,73,0.02991386063378683],[120,10,74,0.024826398101470998],[120,10,75,0.020553754835975692],[120,10,76,0.01699615155508652],[120,10,77,0.014062767511409016],[120,10,78,0.011671168828988741],[120,10,79,0.009746731750987754],[120,11,64,0.06909575517030071],[120,11,65,0.06884146276609157],[120,11,66,0.06868738437476335],[120,11,67,0.06862337137969016],[120,11,68,0.06863986715238347],[120,11,69,0.06873168759346412],[120,11,70,0.0688942601745879],[120,11,71,0.06912334752231604],[120,11,72,0.069414894220368],[120,11,73,0.06175913878652832],[120,11,74,0.05322431282221465],[120,11,75,0.04578212878221419],[120,11,76,0.039318191663563824],[120,11,77,0.03372685882087153],[120,11,78,0.028910955935929426],[120,11,79,0.024781403029510318],[120,12,64,0.0668676916501047],[120,12,65,0.06656330610024666],[120,12,66,0.0663556845233573],[120,12,67,0.06623485744322065],[120,12,68,0.06619138629401457],[120,12,69,0.06622007045501475],[120,12,70,0.06631634640885398],[120,12,71,0.06647602609592901],[120,12,72,0.06669515233451498],[120,12,73,0.06696987103789435],[120,12,74,0.06729632034549708],[120,12,75,0.0676705367356569],[120,12,76,0.06808837813948175],[120,12,77,0.06732318889534063],[120,12,78,0.05934258031067778],[120,12,79,0.052283860177648675],[120,13,64,0.06464096063035336],[120,13,65,0.06428666321676106],[120,13,66,0.06402535609694736],[120,13,67,0.06384746822673214],[120,13,68,0.06374381344962182],[120,13,69,0.06370920664493775],[120,13,70,0.06373910250585914],[120,13,71,0.06382935426695621],[120,13,72,0.06397608121745178],[120,13,73,0.06417555059545192],[120,13,74,0.06442407398382967],[120,13,75,0.06471791828545041],[120,13,76,0.06505323131354739],[120,13,77,0.0654259819923212],[120,13,78,0.06583191512377547],[120,13,79,0.06626652063910149],[120,14,64,0.06242484795210331],[120,14,65,0.06202121856874415],[120,14,66,0.06170649814772284],[120,14,67,0.061471717544783665],[120,14,68,0.06130806234774627],[120,14,69,0.06121038043037727],[120,14,70,0.06117413785893318],[120,14,71,0.061195204717793945],[120,14,72,0.06126973923634438],[120,14,73,0.06139408351938303],[120,14,74,0.06156467100096108],[120,14,75,0.06177794570601652],[120,14,76,0.062030293369494165],[120,14,77,0.06231798442887889],[120,14,78,0.06263712887369571],[120,14,79,0.06298364290418054],[120,15,64,0.06023218802532327],[120,15,65,0.0597801221451842],[120,15,66,0.05941254089576025],[120,15,67,0.05912125152960291],[120,15,68,0.05889790953432468],[120,15,69,0.05873739957449627],[120,15,70,0.05863518040520053],[120,15,71,0.05858710500873797],[120,15,72,0.058589326368674796],[120,15,73,0.05863821158479788],[120,15,74,0.058730264444046124],[120,15,75,0.05886205653578451],[120,15,76,0.059030166973640136],[120,15,77,0.05923113076056977],[120,15,78,0.05946139580933054],[120,15,79,0.05971728860665506],[120,16,64,0.05807666858992625],[120,16,65,0.05757712327040654],[120,16,66,0.05715716354697734],[120,16,67,0.056809515359728106],[120,16,68,0.05652638892728881],[120,16,69,0.05630271331916938],[120,16,70,0.05613393222215667],[120,16,71,0.05601586427547952],[120,16,72,0.055944634453803786],[120,16,73,0.05591661008697226],[120,16,74,0.05592834162419481],[120,16,75,0.05597650823377194],[120,16,76,0.05605786831298723],[120,16,77,0.0561692149665624],[120,16,78,0.056307336496476526],[120,16,79,0.05646898193050813],[120,17,64,0.055964965551273754],[120,17,65,0.05541889461633879],[120,17,66,0.05494693758439805],[120,17,67,0.05454284982097682],[120,17,68,0.054199470068241114],[120,17,69,0.053911787441108916],[120,17,70,0.05367523758979187],[120,17,71,0.053485607473406284],[120,17,72,0.053338995017227574],[120,17,73,0.05323176935171642],[120,17,74,0.05316053173251109],[120,17,75,0.053122077235007996],[120,17,76,0.05311335731129469],[120,17,77,0.053131443291098125],[120,17,78,0.053173490902468444],[120,17,79,0.05323670588159128],[120,18,64,0.05389645013624037],[120,18,65,0.05330479594494987],[120,18,66,0.05278117177164826],[120,18,67,0.05232044209775104],[120,18,68,0.051916136372267815],[120,18,69,0.051563326590300884],[120,18,70,0.05125745982080913],[120,18,71,0.05099431014396184],[120,18,72,0.05076996812499123],[120,18,73,0.05058082655752337],[120,18,74,0.050423562566917705],[120,18,75,0.050295116170282775],[120,18,76,0.050192665395188255],[120,18,77,0.050113598063675956],[120,18,78,0.05005548035237321],[120,18,79,0.05001602224273066],[120,19,64,0.051535555442916256],[120,19,65,0.05116400190041095],[120,19,66,0.05065301099375023],[120,19,67,0.05013540266583074],[120,19,68,0.04966943155589393],[120,19,69,0.0492502816017303],[120,19,70,0.04887344090971445],[120,19,71,0.04853470219197689],[120,19,72,0.04823018262917287],[120,19,73,0.047956335527883996],[120,19,74,0.04770995385500563],[120,19,75,0.047488165749693625],[120,19,76,0.04728842213032988],[120,19,77,0.04710847652952664],[120,19,78,0.04694635730477151],[120,19,79,0.04680033238529151],[120,20,64,0.04783863627983937],[120,20,65,0.047405890513985346],[120,20,66,0.04699098011102891],[120,20,67,0.04659781526989552],[120,20,68,0.046231913852781324],[120,20,69,0.045897993000841485],[120,20,70,0.04560004002476374],[120,20,71,0.04534128910049509],[120,20,72,0.04512419653798615],[120,20,73,0.04495042836823582],[120,20,74,0.04482086018104904],[120,20,75,0.044690557925739845],[120,20,76,0.044390378149074566],[120,20,77,0.04410633109916566],[120,20,78,0.04383696170717521],[120,20,79,0.043581149770158374],[120,21,64,0.044046721197859996],[120,21,65,0.043551350410075296],[120,21,66,0.043080621171046184],[120,21,67,0.04263733457002767],[120,21,68,0.04222628062505514],[120,21,69,0.041852079761437164],[120,21,70,0.041518695690571726],[120,21,71,0.04122936373278263],[120,21,72,0.04098653608089419],[120,21,73,0.04079184393055591],[120,21,74,0.04064607641471593],[120,21,75,0.04054917623578801],[120,21,76,0.04050025184648406],[120,21,77,0.040497605989585496],[120,21,78,0.04053878036900748],[120,21,79,0.04034838453802041],[120,22,64,0.040180735664545046],[120,22,65,0.039621366804639215],[120,22,66,0.03909377228589341],[120,22,67,0.03859967673440095],[120,22,68,0.03814312946382993],[120,22,69,0.03772861297061609],[120,22,70,0.03736001979751961],[120,22,71,0.03704053458937663],[120,22,72,0.036772550926730665],[120,22,73,0.03655760946220751],[120,22,74,0.03639635730078304],[120,22,75,0.03628852850976344],[120,22,76,0.03623294559054776],[120,22,77,0.03622754169275441],[120,22,78,0.036269403303067695],[120,22,79,0.036354833096176424],[120,23,64,0.03626351510651526],[120,23,65,0.035638852870348965],[120,23,66,0.035053299479969734],[120,23,67,0.03450756019387785],[120,23,68,0.03400494362832508],[120,23,69,0.03354975168036487],[120,23,70,0.033145755946996834],[120,23,71,0.032796036555075285],[120,23,72,0.032502872663113774],[120,23,73,0.03226765850307666],[120,23,74,0.03209084490572157],[120,23,75,0.03197190618672963],[120,23,76,0.03190933220649665],[120,23,77,0.03190064535479521],[120,23,78,0.031942442153632664],[120,23,79,0.03203045911754741],[120,24,64,0.032318866954961174],[120,24,65,0.03162771183443754],[120,24,66,0.03098306515211948],[120,24,67,0.03038469215216423],[120,24,68,0.029835173402511864],[120,24,69,0.029338587338690606],[120,24,70,0.028898534309053245],[120,24,71,0.02851793604198136],[120,24,72,0.02819890235098432],[120,24,73,0.027942627337813223],[120,24,74,0.027749315038235484],[120,24,75,0.027618134378538297],[120,24,76,0.027547203236668785],[120,24,77,0.027533601330945446],[120,24,78,0.027573411592598997],[120,24,79,0.027661789616073396],[120,25,64,0.028370675620114253],[120,25,65,0.027611941059341588],[120,25,66,0.02690703749071191],[120,25,67,0.026254889265382175],[120,25,68,0.025657373760680814],[120,25,69,0.025118304140482182],[120,25,70,0.024641060227654416],[120,25,71,0.024228353176033356],[120,25,72,0.023882071270227772],[120,25,73,0.023603158829221198],[120,25,74,0.02339152815825689],[120,25,75,0.023246004407654328],[120,25,76,0.02316430311429541],[120,25,77,0.02314304012231039],[120,25,78,0.023177773505090097],[120,25,79,0.02326307704120264],[120,26,64,0.02444205201634772],[120,26,65,0.023614779702432007],[120,26,66,0.022848442027129254],[120,26,67,0.022141238549336875],[120,26,68,0.02149437985858307],[120,26,69,0.020911374280956914],[120,26,70,0.020395334278710178],[120,26,71,0.019948711475304477],[120,26,72,0.019573124719411767],[120,26,73,0.019269224442277532],[120,26,74,0.019036593251694496],[120,26,75,0.01887368261193288],[120,26,76,0.01877778536855312],[120,26,77,0.01874504379082306],[120,26,78,0.018770492723547614],[120,26,79,0.018848137364504386],[120,27,64,0.020554529415392375],[120,27,65,0.019657901710681023],[120,27,66,0.01882895704125421],[120,27,67,0.018065300166406804],[120,27,68,0.017367521921348272],[120,27,69,0.01673878958262358],[120,27,70,0.016181905132219256],[120,27,71,0.015699016233429057],[120,27,72,0.015291429928181768],[120,27,73,0.014959465347802198],[120,27,74,0.014702345378345357],[120,27,75,0.014518127121044324],[120,27,76,0.014403670891858946],[120,27,77,0.014354647412272837],[120,27,78,0.014365582757375817],[120,27,79,0.014429940546827108],[120,28,64,0.01672730747837852],[120,28,65,0.015760655981623826],[120,28,66,0.014867954609857086],[120,28,67,0.01404635382231545],[120,28,68,0.01329588117785876],[120,28,69,0.012619331044517526],[120,28,70,0.012019156646324448],[120,28,71,0.01149716289596329],[120,28,72,0.01105430921274489],[120,28,73,0.010690553563620444],[120,28,74,0.01040473766563687],[120,28,75,0.01019451318242601],[120,28,76,0.010056308646093689],[120,28,77,0.009985336739825499],[120,28,78,0.009975641486577477],[120,28,79,0.010020184805234915],[120,29,64,0.012976546314463853],[120,29,65,0.01193935551980451],[120,29,66,0.01098178908807014],[120,29,67,0.0101006905041116],[120,29,68,0.009295588494264961],[120,29,69,0.008568877867574369],[120,29,70,0.007922630628475799],[120,29,71,0.007358276727350898],[120,29,72,0.006876399517311627],[120,29,73,0.0064765741060962305],[120,29,74,0.0061572485383837175],[120,29,75,0.005915667634342786],[120,29,76,0.005747839205829724],[120,29,77,0.005648542272820913],[120,29,78,0.005611376810242288],[120,29,79,0.005628854469098577],[120,30,64,0.009314717420140756],[120,30,65,0.008206622637098742],[120,30,66,0.007183140246370302],[120,30,67,0.00624095693548329],[120,30,68,0.005379173215751053],[120,30,69,0.004599763576833411],[120,30,70,0.0039043929745870734],[120,30,71,0.003294091548836873],[120,30,72,0.002769046171750322],[120,30,73,0.002328436014302289],[120,30,74,0.001970312062942758],[120,30,75,0.0016915204069506585],[120,30,76,0.0014876690108425517],[120,30,77,0.001353137585991887],[120,30,78,0.0012811300820239956],[120,30,79,0.0012637692312444531],[120,31,64,0.005751359099694355],[120,31,65,0.004572193369926262],[120,31,66,0.0034818694272877393],[120,31,67,0.0024770658553499338],[120,31,68,0.0015565295471649302],[120,31,69,7.218002119121278E-4],[120,31,70,-2.5882850476997E-5],[120,31,71,-6.85906209755461E-4],[120,31,72,-0.0012584913860656654],[120,31,73,-0.0017448593331692642],[120,31,74,-0.0021473503951071117],[120,31,75,-0.002469499919489554],[120,31,76,-0.0027160698170514952],[120,31,77,-0.0028930364574089],[120,31,78,-0.0030075353844922653],[120,31,79,-0.003067763422353407],[120,32,64,0.0022945117083280333],[120,32,65,0.0010444198110648806],[120,32,66,-1.1340902421817765E-4],[120,32,67,-0.001182161825776561],[120,32,68,-0.0021633693844102984],[120,32,69,-0.0030559348511995372],[120,32,70,-0.003859055633362715],[120,32,71,-0.004572543574176781],[120,32,72,-0.005197031679965389],[120,32,73,-0.005734136189688187],[120,32,74,-0.006186574060594774],[120,32,75,-0.006558236055008475],[120,32,76,-0.006854215718807442],[120,32,77,-0.007080794641393106],[120,32,78,-0.007245384479345349],[120,32,79,-0.007356426312091885],[120,33,64,-0.0010522951162819573],[120,33,65,-0.002372864320410732],[120,33,66,-0.003598581214226211],[120,33,67,-0.004732367016276719],[120,33,68,-0.0057759558137384604],[120,33,69,-0.006728695370978909],[120,33,70,-0.007590223002183592],[120,33,71,-0.008360775629746032],[120,33,72,-0.009041391612862253],[120,33,73,-0.009634068333925017],[120,33,74,-0.010141875617969816],[120,33,75,-0.010569025170155476],[120,33,76,-0.010920896319753704],[120,33,77,-0.011204018456282418],[120,33,78,-0.011426010633787129],[120,33,79,-0.01159547890346657],[120,34,64,-0.004290902548858523],[120,34,65,-0.005681232721840026],[120,34,66,-0.00697495024816523],[120,34,67,-0.008174595321048438],[120,34,68,-0.009282035748084233],[120,34,69,-0.010297059670705617],[120,34,70,-0.011219739518281148],[120,34,71,-0.01205072796643952],[120,34,72,-0.012791452923936807],[120,34,73,-0.013444269101518037],[120,34,74,-0.01401256623868918],[120,34,75,-0.014500834171225366],[120,34,76,-0.014914685022872489],[120,34,77,-0.015260832899033992],[120,34,78,-0.015547031547862808],[120,34,79,-0.01578197053578608],[120,35,64,-0.007428886792287847],[120,35,65,-0.008888042116368993],[120,35,66,-0.010249622531891737],[120,35,67,-0.011515693621171939],[120,35,68,-0.012688195839409276],[120,35,69,-0.013767348157414826],[120,35,70,-0.014753645378918913],[120,35,71,-0.015648137152831303],[120,35,72,-0.0164526149645939],[120,35,73,-0.017169756853221762],[120,35,74,-0.017803229929035227],[120,35,75,-0.01835775087051728],[120,35,76,-0.018839104675931372],[120,35,77,-0.019254122036337046],[120,35,78,-0.019610615781075928],[120,35,79,-0.01991727692539762],[120,36,64,-0.010279217106961893],[120,36,65,-0.011592811934821177],[120,36,66,-0.012841763699155826],[120,36,67,-0.01402718836434673],[120,36,68,-0.015150482195169998],[120,36,69,-0.016211560224806177],[120,36,70,-0.01721045269731723],[120,36,71,-0.01814757261592452],[120,36,72,-0.01902390135324995],[120,36,73,-0.01984113319375378],[120,36,74,-0.020601778874694648],[120,36,75,-0.02130922829479735],[120,36,76,-0.02196777265673894],[120,36,77,-0.022582586400279266],[120,36,78,-0.023159669367190095],[120,36,79,-0.02264521406678237],[120,37,64,-0.012193436266770129],[120,37,65,-0.013513956163302174],[120,37,66,-0.014768997766174151],[120,37,67,-0.015959126603338303],[120,37,68,-0.01708576485152458],[120,37,69,-0.01814926965606964],[120,37,70,-0.019150095360950973],[120,37,71,-0.02008904243150606],[120,37,72,-0.02096743542516557],[120,37,73,-0.021787261309871343],[120,37,74,-0.022551268188899912],[120,37,75,-0.023263024589840173],[120,37,76,-0.023112516089454888],[120,37,77,-0.021391453540044566],[120,37,78,-0.019679185898215334],[120,37,79,-0.017983457078683252],[120,38,64,-0.014019493944706852],[120,38,65,-0.015344611408355288],[120,38,66,-0.01660399815501279],[120,38,67,-0.017797675642048597],[120,38,68,-0.0189270842140566],[120,38,69,-0.019993007961552494],[120,38,70,-0.020996293260608347],[120,38,71,-0.02193808145541406],[120,38,72,-0.022819981793649868],[120,38,73,-0.023644206025968395],[120,38,74,-0.02205461608978744],[120,38,75,-0.020295530184558104],[120,38,76,-0.01853360345091574],[120,38,77,-0.016775427345824056],[120,38,78,-0.01502819325400071],[120,38,79,-0.013299603783090223],[120,39,64,-0.01577306549043271],[120,39,65,-0.01710028393861189],[120,39,66,-0.018362037979024068],[120,39,67,-0.019557812727046413],[120,39,68,-0.02068907262483076],[120,39,69,-0.02175702990992031],[120,39,70,-0.022762902412780325],[120,39,71,-0.02286421299193601],[120,39,72,-0.021103169798752895],[120,39,73,-0.019325268826425122],[120,39,74,-0.017535309608740054],[120,39,75,-0.01573866954095926],[120,39,76,-0.013941329474890367],[120,39,77,-0.012149862700030925],[120,39,78,-0.010371387667229663],[120,39,79,-0.008613484896240168],[120,40,64,-0.017456523705167773],[120,40,65,-0.018782925750479747],[120,40,66,-0.020044623482270124],[120,40,67,-0.021240542977412805],[120,40,68,-0.022372181411266172],[120,40,69,-0.02198840732726563],[120,40,70,-0.020228945291907708],[120,40,71,-0.018446220393868767],[120,40,72,-0.01664436674077766],[120,40,73,-0.014827852696969084],[120,40,74,-0.013001583733654043],[120,40,75,-0.011170969176397589],[120,40,76,-0.009341953001597871],[120,40,77,-0.007521008926044351],[120,40,78,-0.005715100122431828],[120,40,79,-0.003931603976945341],[120,41,64,-0.019073441505878773],[120,41,65,-0.02039577962852154],[120,41,66,-0.021654620233000715],[120,41,67,-0.021165040692746547],[120,41,68,-0.019417425456130864],[120,41,69,-0.017640083223186654],[120,41,70,-0.015837388853097458],[120,41,71,-0.014013629791071553],[120,41,72,-0.012173185710620935],[120,41,73,-0.010320672899235038],[120,41,74,-0.008461053323352041],[120,41,75,-0.0065997084047726435],[120,41,76,-0.004742477634846625],[120,41,77,-0.0028956622439423],[120,41,78,-0.0010659942312597473],[120,41,79,7.394288580079194E-4],[120,42,64,-0.020628258239793817],[120,42,65,-0.020384750860246752],[120,42,66,-0.018661542180693404],[120,42,67,-0.01690084725919578],[120,42,68,-0.015106913434283883],[120,42,69,-0.013285016760209791],[120,42,70,-0.011440023002530667],[120,42,71,-0.009576581352360723],[120,42,72,-0.007699311356225128],[120,42,73,-0.00581295535295424],[120,42,74,-0.003922496325311339],[120,42,75,-0.0020332411692904106],[120,42,76,-1.50869477261549E-4],[120,42,77,0.0017185519786113608],[120,42,78,0.0035685887896435625],[120,42,79,0.005392492126539599],[120,43,64,-0.017957844041200346],[120,43,65,-0.01622156633655705],[120,43,66,-0.014449334079500244],[120,43,67,-0.012640888997119609],[120,43,68,-0.010800595398266654],[120,43,69,-0.008934406397755907],[120,43,70,-0.007047722926016704],[120,43,71,-0.005145580240712263],[120,43,72,-0.003232844435548792],[120,43,73,-0.001314375152594933],[120,43,74,6.048456271925834E-4],[120,43,75,0.0025196187461547772],[120,43,76,0.004424466923260798],[120,43,77,0.006313607547479558],[120,43,78,0.008180958974143076],[120,43,79,0.010020180006841788],[120,44,64,-0.013861733668643395],[120,44,65,-0.012073854619847292],[120,44,66,-0.010252174808288994],[120,44,67,-0.008395704743135807],[120,44,68,-0.006508945491937044],[120,44,69,-0.004598595145822402],[120,44,70,-0.0026706399556446414],[120,44,71,-7.305338823010782E-4],[120,44,72,0.0012165935827407777],[120,44,73,0.0031657627286699637],[120,44,74,0.005112002230790252],[120,44,75,0.00705024111907732],[120,44,76,0.008975234086850624],[120,44,77,0.010881520027586293],[120,44,78,0.012763413602408971],[120,44,79,0.014615029560738367],[120,45,64,-0.009789239456514017],[120,45,65,-0.007949432129985529],[120,45,66,-0.006078103717867051],[120,45,67,-0.004173494740828044],[120,45,68,-0.0022402682966168545],[120,45,69,-2.859351804903501E-4],[120,45,70,0.0016828798814554223],[120,45,71,0.003660265830528896],[120,45,72,0.005640805015391865],[120,45,73,0.007619385388727934],[120,45,74,0.009591045363744952],[120,45,75,0.01155085144078492],[120,45,76,0.013493808623054371],[120,45,77,0.015414803551954761],[120,45,78,0.017308580207341336],[120,45,79,0.019169747938161393],[120,46,64,-0.005743744867569434],[120,46,65,-0.0038521342613609243],[120,46,66,-0.0019313460859746948],[120,46,67,2.11680859198273E-5],[120,46,68,0.0020005508153241956],[120,46,69,0.003998413203866094],[120,46,70,0.00600743816494387],[120,46,71,0.008021215726466533],[120,46,72,0.010034009821296572],[120,46,73,0.012040556798762977],[120,46,74,0.014035895903719101],[120,46,75,0.016015231877649718],[120,46,76,0.017973829745710657],[120,46,77,0.019906941765526497],[120,46,78,0.021809766428737186],[120,46,79,0.023677439326546396],[120,47,64,-0.0017285308133479867],[120,47,65,2.1426121369315517E-4],[120,47,66,0.00218388031783741],[120,47,67,0.004183659999006849],[120,47,68,0.006208509550224743],[120,47,69,0.008249101788057817],[120,47,70,0.010297375411424385],[120,47,71,0.012346378850037757],[120,47,72,0.01439002419062741],[120,47,73,0.016422871980876334],[120,47,74,0.018439947202877026],[120,47,75,0.02043658661698911],[120,47,76,0.022408317587143026],[120,47,77,0.024350768411156874],[120,47,78,0.026259610095199136],[120,47,79,0.027896376649141547],[120,48,64,0.002236553636728906],[120,48,65,0.004229770345105984],[120,48,66,0.006247558588664349],[120,48,67,0.008294017936444088],[120,48,68,0.010363787111931142],[120,48,69,0.012446553623812919],[120,48,70,0.014533468024651768],[120,48,71,0.016616997291490482],[120,48,72,0.018690666511258173],[120,48,73,0.020748830492636934],[120,48,74,0.02278647564240432],[120,48,75,0.0247990523545461],[120,48,76,0.026782338071486077],[120,48,77,0.028650571591027622],[120,48,78,0.030168278656639673],[120,48,79,0.03165324416371393],[120,49,64,0.0061294610566189015],[120,49,65,0.008172280992191245],[120,49,66,0.010237614032882494],[120,49,67,0.012330293080143632],[120,49,68,0.014444653076006937],[120,49,69,0.01656936543284255],[120,49,70,0.018694759408951964],[120,49,71,0.020812686046206896],[120,49,72,0.022916248700153834],[120,49,73,0.02499956245222868],[120,49,74,0.02705754278808363],[120,49,75,0.028869542977531457],[120,49,76,0.030541046301355672],[120,49,77,0.03217872567812407],[120,49,78,0.03378430538256993],[120,49,79,0.03535945535795152],[120,50,64,0.04961655874502283],[120,50,65,0.06004372002939727],[120,50,66,0.014134885937305362],[120,50,67,0.01627338032359562],[120,50,68,0.018432133941186153],[120,50,69,0.020598788366598238],[120,50,70,0.022762830516907157],[120,50,71,0.024867179972325085],[120,50,72,0.026754090580107054],[120,50,73,0.1420770722678926],[120,50,74,0.15095378082883984],[120,50,75,0.15964467563120283],[120,50,76,0.16815806206786033],[120,50,77,0.03566345988125468],[120,50,78,0.03735308800364438],[120,50,79,0.03901474767147758],[120,51,64,0.06451010016963657],[120,51,65,0.07610988497489699],[120,51,66,0.08738015818033362],[120,51,67,0.09827399276587745],[120,51,68,0.10880739169554739],[120,51,69,0.11903166709974357],[120,51,70,0.1289884549238906],[120,51,71,0.1387103190174515],[120,51,72,0.14822222991097717],[120,51,73,0.15754291217187863],[120,51,74,0.1666860543180175],[120,51,75,0.17566137716092234],[120,51,76,0.18447555799455],[120,51,77,0.1931330093712116],[120,51,78,0.20163651238297509],[120,51,79,0.042617919564834114],[120,52,64,0.07832462615489802],[120,52,65,0.09005855576742156],[120,52,66,0.10146812258284131],[120,52,67,0.11250367229930455],[120,52,68,0.12318287069354437],[120,52,69,0.13356155667441158],[120,52,70,0.14368496058930463],[120,52,71,0.15358826881488824],[120,52,72,0.16329815343313125],[120,52,73,0.1728341753593242],[120,52,74,0.182210054930174],[120,52,75,0.19143480574150537],[120,52,76,0.20051372896232808],[120,52,77,0.2094492665929523],[120,52,78,0.21824171325827818],[120,52,79,0.2268897871739723],[120,53,64,0.09219044903567505],[120,53,65,0.10404157040403181],[120,53,66,0.1155710690047115],[120,53,67,0.12672703216564857],[120,53,68,0.1375288662819503],[120,53,69,0.1480367266206616],[120,53,70,0.15829931892768268],[120,53,71,0.16835442383330235],[120,53,72,0.17823046755977387],[120,53,73,0.18794797086408072],[120,53,74,0.1975208704231799],[120,53,75,0.20695770850307865],[120,53,76,0.21626268804675655],[120,53,77,0.22543659143459263],[120,53,78,0.23447756220354915],[120,53,79,0.24338175000269527],[120,54,64,0.1060969040063792],[120,54,65,0.11804850096060553],[120,54,66,0.12967874730413959],[120,54,67,0.14093398513127275],[120,54,68,0.1518354140990748],[120,54,69,0.16244722554292687],[120,54,70,0.17282142511652587],[120,54,71,0.18299831707082023],[120,54,72,0.19300810545284267],[120,54,73,0.202872378105263],[120,54,74,0.21260546804089575],[120,54,75,0.22221568822488744],[120,54,76,0.23170643691869575],[120,54,77,0.2410771717060207],[120,54,78,0.25032425123059515],[120,54,79,0.25944164457897806],[120,55,64,0.1200206484837311],[120,55,65,0.13205638779511075],[120,55,66,0.14376861004056996],[120,55,67,0.15510245293863323],[120,55,68,0.16608093539714158],[120,55,69,0.17677194420960177],[120,55,70,0.1872305589175145],[120,55,71,0.19749949677827028],[120,55,72,0.1946589736237907],[120,55,73,0.18007533631408562],[120,55,74,0.17213033270945136],[120,55,75,0.17397882147041974],[120,55,76,0.18432634412250998],[120,55,77,0.2039306951413186],[120,55,78,0.22913650447805717],[120,55,79,0.25714215921911676],[120,56,64,0.13392666572999196],[120,56,65,0.14030394693710826],[120,56,66,0.15160444714158414],[120,56,67,0.1662453501111947],[120,56,68,0.1748184457199255],[120,56,69,0.17415257510917823],[120,56,70,0.16686493724141913],[120,56,71,0.15520049937879019],[120,56,72,0.13854713500005],[120,56,73,0.1226130136348777],[120,56,74,0.11545983551335258],[120,56,75,0.1175891280273801],[120,56,76,0.12770735274200168],[120,56,77,0.14702639348960345],[120,56,78,0.17337255240542898],[120,56,79,0.2021368333884087],[120,57,64,0.07354567249402055],[120,57,65,0.07724708996815664],[120,57,66,0.08947363423086777],[120,57,67,0.10392557901560213],[120,57,68,0.11246702377280185],[120,57,69,0.11101634129961559],[120,57,70,0.10241387191019348],[120,57,71,0.09075069581051252],[120,57,72,0.07306342764768058],[120,57,73,0.056806761616090676],[120,57,74,0.050631163514357175],[120,57,75,0.0520396622639571],[120,57,76,0.06165859471726801],[120,57,77,0.08175275651934645],[120,57,78,0.109405880076897],[120,57,79,0.13801200817436202],[120,58,64,0.026116095696897674],[120,58,65,0.029151528537150383],[120,58,66,0.040469080259026395],[120,58,67,0.05562316811981397],[120,58,68,0.06371406995742887],[120,58,69,0.061795118653783516],[120,58,70,0.05289857372842302],[120,58,71,0.04068136003544736],[120,58,72,0.02436985440027009],[120,58,73,0.010962737384292246],[120,58,74,0.011083838950325968],[120,58,75,0.012409957899618539],[120,58,76,0.014785997292614107],[120,58,77,0.03130892973909667],[120,58,78,0.058202400142266617],[120,58,79,0.08751201545588096],[120,59,64,0.006702745065592396],[120,59,65,0.005120863589850006],[120,59,66,0.006572809707358774],[120,59,67,0.009351210781722033],[120,59,68,0.010484530447699668],[120,59,69,0.008167180005661438],[120,59,70,0.005352878968483082],[120,59,71,0.0027978188709979917],[120,59,72,-4.6190347148099454E-4],[120,59,73,-0.004725637197895819],[120,59,74,-0.0050624940272018405],[120,59,75,-0.0036608701340860262],[120,59,76,-0.001115637207305239],[120,59,77,0.005045310846321723],[120,59,78,0.011851885811640725],[120,59,79,0.024626406536274115],[120,60,64,-0.010805185122555435],[120,60,65,-0.012347016100357428],[120,60,66,-0.011684313707812422],[120,60,67,-0.009527178115140918],[120,60,68,-0.007705484690135335],[120,60,69,-0.00982448554427926],[120,60,70,-0.012326309226980426],[120,60,71,-0.015194002994946193],[120,60,72,-0.019043795741958334],[120,60,73,-0.02284102292976353],[120,60,74,-0.023185441889689514],[120,60,75,-0.021521240254016475],[120,60,76,-0.0180081915847455],[120,60,77,-0.013530052542538841],[120,60,78,-0.006478247961794656],[120,60,79,6.795354371362534E-4],[120,61,64,-0.02040444359643033],[120,61,65,-0.0225709948239931],[120,61,66,-0.02367370879007737],[120,61,67,-0.022879298737621814],[120,61,68,-0.021852422403337724],[120,61,69,-0.02370734969954774],[120,61,70,-0.02632355114799334],[120,61,71,-0.030226745521206733],[120,61,72,-0.03466627326046158],[120,61,73,-0.038387721797738056],[120,61,74,-0.038501420895789965],[120,61,75,-0.03696987840166818],[120,61,76,-0.03215857520697999],[120,61,77,-0.027135976564275327],[120,61,78,-0.02048660786773443],[120,61,79,-0.011866380351608103],[120,62,64,-0.035466728256545024],[120,62,65,-0.03819444486417685],[120,62,66,-0.03895930195091197],[120,62,67,-0.03804085141096843],[120,62,68,-0.03676095097299812],[120,62,69,-0.03846248968581875],[120,62,70,-0.041025769813853676],[120,62,71,-0.045224786986768906],[120,62,72,-0.050059103467520454],[120,62,73,-0.053952996366717416],[120,62,74,-0.054274355046375365],[120,62,75,-0.05257380342443842],[120,62,76,-0.04829050403208744],[120,62,77,-0.04234344743609024],[120,62,78,-0.03567978546617432],[120,62,79,-0.026499302355999083],[120,63,64,-0.07358332802141679],[120,63,65,-0.07693310681058359],[120,63,66,-0.07673194488959281],[120,63,67,-0.07612895827893754],[120,63,68,-0.07423198878775944],[120,63,69,-0.07523955034137483],[120,63,70,-0.07814304695020012],[120,63,71,-0.08164824969723486],[120,63,72,-0.08722043146754176],[120,63,73,-0.09082118843260358],[120,63,74,-0.09094823429672287],[120,63,75,-0.08846913773469782],[120,63,76,-0.08449384639751417],[120,63,77,-0.07821473099622131],[120,63,78,-0.07161412499170347],[120,63,79,-0.06231768110383225],[120,64,64,-0.08587829761914093],[120,64,65,-0.08849354731039076],[120,64,66,-0.08889877059768705],[120,64,67,-0.0879880969065732],[120,64,68,-0.08620072405655997],[120,64,69,-0.08725550368005724],[120,64,70,-0.09067455438242501],[120,64,71,-0.09389979421702965],[120,64,72,-0.09930678805312516],[120,64,73,-0.10400567570158177],[120,64,74,-0.104323153522559],[120,64,75,-0.10117795332669625],[120,64,76,-0.09762169127032048],[120,64,77,-0.0914896504785445],[120,64,78,-0.08421834994357612],[120,64,79,-0.07571117367543335],[120,65,64,-0.1010281945574655],[120,65,65,-0.10339239832845123],[120,65,66,-0.10414138783628415],[120,65,67,-0.1036843650816926],[120,65,68,-0.10226621596741489],[120,65,69,-0.10249958936964348],[120,65,70,-0.1056613275414564],[120,65,71,-0.10970695607411989],[120,65,72,-0.1148003396339744],[120,65,73,-0.11992576113812095],[120,65,74,-0.12058709458219283],[120,65,75,-0.11753344786618183],[120,65,76,-0.11447468459260593],[120,65,77,-0.10833681895151602],[120,65,78,-0.10024632807452023],[120,65,79,-0.09117622472010817],[120,66,64,-0.1176311459041066],[120,66,65,-0.12072753800670365],[120,66,66,-0.12169593564796093],[120,66,67,-0.12117268661820595],[120,66,68,-0.1202983754286933],[120,66,69,-0.11986229701831215],[120,66,70,-0.12335356497333681],[120,66,71,-0.12694144313922676],[120,66,72,-0.13255046940577314],[120,66,73,-0.13741979688212613],[120,66,74,-0.13895104545529657],[120,66,75,-0.13566016926578384],[120,66,76,-0.13207257421459118],[120,66,77,-0.12590913914742694],[120,66,78,-0.11806370890062169],[120,66,79,-0.10848996541104006],[120,67,64,-0.1337032937782973],[120,67,65,-0.1362656280436846],[120,67,66,-0.13711855869724182],[120,67,67,-0.13743355529538145],[120,67,68,-0.13586383146239653],[120,67,69,-0.13557988185769004],[120,67,70,-0.13886707165408715],[120,67,71,-0.14227212126399347],[120,67,72,-0.14809278849810417],[120,67,73,-0.15367792204325964],[120,67,74,-0.15466823062984691],[120,67,75,-0.15283624002876697],[120,67,76,-0.1470932968740412],[120,67,77,-0.14115511578476045],[120,67,78,-0.133293183363431],[120,67,79,-0.12374944411282914],[120,68,64,-0.1786957120525414],[120,68,65,-0.18019151162917],[120,68,66,-0.18107391941788673],[120,68,67,-0.18097295035219185],[120,68,68,-0.1800862439733505],[120,68,69,-0.18027326718632303],[120,68,70,-0.18359162194606118],[120,68,71,-0.18674425206571096],[120,68,72,-0.19207145545670137],[120,68,73,-0.19693124266048126],[120,68,74,-0.19837768736126912],[120,68,75,-0.19677527260882083],[120,68,76,-0.1916375893086617],[120,68,77,-0.1847253462880526],[120,68,78,-0.1776612747177102],[120,68,79,-0.16799545945750458],[120,69,64,-0.19769623995907548],[120,69,65,-0.19779417943429667],[120,69,66,-0.19574425407642165],[120,69,67,-0.1934968789789908],[120,69,68,-0.19105133293661142],[120,69,69,-0.19025316335091808],[120,69,70,-0.19227391531404694],[120,69,71,-0.19724052463589278],[120,69,72,-0.20289119156328128],[120,69,73,-0.20865469735063816],[120,69,74,-0.2105644570064307],[120,69,75,-0.20905258340856087],[120,69,76,-0.20465908119442366],[120,69,77,-0.1970846787290443],[120,69,78,-0.18939908223990523],[120,69,79,-0.17967494600918346],[120,70,64,-0.21305101326722997],[120,70,65,-0.21321884725869483],[120,70,66,-0.21178282218591582],[120,70,67,-0.20910314170180255],[120,70,68,-0.20591931441560019],[120,70,69,-0.20512636327780498],[120,70,70,-0.20711136357307672],[120,70,71,-0.21166226693737844],[120,70,72,-0.21798916627467668],[120,70,73,-0.22408671026877716],[120,70,74,-0.2259144361037833],[120,70,75,-0.22427060469073073],[120,70,76,-0.2203076505914292],[120,70,77,-0.21287765637159184],[120,70,78,-0.20455066008548348],[120,70,79,-0.1950538063405434],[120,71,64,-0.2252208443913958],[120,71,65,-0.22594789736371476],[120,71,66,-0.22375709592556692],[120,71,67,-0.22069090663697713],[120,71,68,-0.21766786528712034],[120,71,69,-0.21700906455085137],[120,71,70,-0.21893611419560052],[120,71,71,-0.22362376668049994],[120,71,72,-0.22978569613056832],[120,71,73,-0.23562896644373038],[120,71,74,-0.23745373869321745],[120,71,75,-0.2364845181985755],[120,71,76,-0.23337363074230397],[120,71,77,-0.226128739936883],[120,71,78,-0.21801115276132157],[120,71,79,-0.20845454361283675],[120,72,64,-0.2404955416525463],[120,72,65,-0.24153733072451616],[120,72,66,-0.23954873192024742],[120,72,67,-0.23635521308162818],[120,72,68,-0.23333689512142985],[120,72,69,-0.23198603490816438],[120,72,70,-0.23381182553734836],[120,72,71,-0.23783658314250344],[120,72,72,-0.24422342960921656],[120,72,73,-0.250509707568321],[120,72,74,-0.25275589642732005],[120,72,75,-0.2521799652161457],[120,72,76,-0.24934321375187363],[120,72,77,-0.2426049869044124],[120,72,78,-0.23413825300558933],[120,72,79,-0.2246738212716632],[120,73,64,-0.260046440435407],[120,73,65,-0.2607912046080892],[120,73,66,-0.2584947521012547],[120,73,67,-0.25462117096279757],[120,73,68,-0.25193261032305614],[120,73,69,-0.2505758541769516],[120,73,70,-0.25147635356648546],[120,73,71,-0.2544490776847961],[120,73,72,-0.258492745026426],[120,73,73,-0.2628995102104515],[120,73,74,-0.2649257492489448],[120,73,75,-0.2640362931820301],[120,73,76,-0.2617365848582681],[120,73,77,-0.257588122883828],[120,73,78,-0.2512400588109801],[120,73,79,-0.24449952594160432],[120,74,64,-0.2780822492282281],[120,74,65,-0.27750078604028494],[120,74,66,-0.2757290360512299],[120,74,67,-0.27185271189496046],[120,74,68,-0.26886074038560476],[120,74,69,-0.2679321123173188],[120,74,70,-0.26895627725890736],[120,74,71,-0.2716997195202425],[120,74,72,-0.2752989540486007],[120,74,73,-0.28002337924306364],[120,74,74,-0.2815546853256854],[120,74,75,-0.2807533293325835],[120,74,76,-0.2785228818922764],[120,74,77,-0.2745585742240037],[120,74,78,-0.269109929763015],[120,74,79,-0.2623907825733512],[120,75,64,-0.29291431575911037],[120,75,65,-0.29278950308051044],[120,75,66,-0.29093129503173554],[120,75,67,-0.2867818164559642],[120,75,68,-0.2843878918376695],[120,75,69,-0.2831450143648646],[120,75,70,-0.28398182089440477],[120,75,71,-0.2870823465655479],[120,75,72,-0.29009162945945255],[120,75,73,-0.29433511335036755],[120,75,74,-0.2961634572684444],[120,75,75,-0.29585451071685226],[120,75,76,-0.29361019110067965],[120,75,77,-0.28978118673624315],[120,75,78,-0.2849329199191313],[120,75,79,-0.27859271245389555],[120,76,64,-0.306125444232237],[120,76,65,-0.30684407741519076],[120,76,66,-0.30462169828842983],[120,76,67,-0.30069164524683617],[120,76,68,-0.29819552649272],[120,76,69,-0.29676676024982745],[120,76,70,-0.2973739362960214],[120,76,71,-0.30078687917298635],[120,76,72,-0.3043066758602681],[120,76,73,-0.307976563643377],[120,76,74,-0.31025166699325],[120,76,75,-0.31002137572075333],[120,76,76,-0.307895559125358],[120,76,77,-0.30410151118899004],[120,76,78,-0.2994250481184013],[120,76,79,-0.29281322788169784],[120,77,64,-0.32026767465928757],[120,77,65,-0.32172002823236906],[120,77,66,-0.3204312551763677],[120,77,67,-0.31644442083198193],[120,77,68,-0.3139232970578992],[120,77,69,-0.31278945803886055],[120,77,70,-0.31411938691294317],[120,77,71,-0.3175997414706277],[120,77,72,-0.3216052939853791],[120,77,73,-0.32577309626047124],[120,77,74,-0.32785785137322226],[120,77,75,-0.3273127566738121],[120,77,76,-0.3246422716143611],[120,77,77,-0.320646392965307],[120,77,78,-0.3168358855697709],[120,77,79,-0.30996775020078504],[120,78,64,-0.33521861389745594],[120,78,65,-0.3372506587722869],[120,78,66,-0.3346877074223081],[120,78,67,-0.33058972967832306],[120,78,68,-0.32727799102617305],[120,78,69,-0.3264075193607169],[120,78,70,-0.32824471029714203],[120,78,71,-0.3312647992032112],[120,78,72,-0.3363138710418477],[120,78,73,-0.3398282565382568],[120,78,74,-0.3422691503986881],[120,78,75,-0.3416460718670087],[120,78,76,-0.33931015185158125],[120,78,77,-0.33592695606096185],[120,78,78,-0.33199625709700686],[120,78,79,-0.32554647488764565],[120,79,64,-0.3469456723801836],[120,79,65,-0.3485364128270581],[120,79,66,-0.345935239781349],[120,79,67,-0.34117566714074044],[120,79,68,-0.3384479813895375],[120,79,69,-0.3376103359790783],[120,79,70,-0.3395791495396881],[120,79,71,-0.34299116169889365],[120,79,72,-0.34755940168737665],[120,79,73,-0.35123948346022266],[120,79,74,-0.35391443536709855],[120,79,75,-0.35383877970721334],[120,79,76,-0.35189489001447954],[120,79,77,-0.3479835159050961],[120,79,78,-0.3440567360492236],[120,79,79,-0.3377964099433324],[120,80,64,-0.3611328625547435],[120,80,65,-0.3617858134604481],[120,80,66,-0.3586517592327399],[120,80,67,-0.35461454527038366],[120,80,68,-0.3524534485283812],[120,80,69,-0.3508423754449495],[120,80,70,-0.35323218454039057],[120,80,71,-0.35689785428402526],[120,80,72,-0.36213549677301105],[120,80,73,-0.3661126292863168],[120,80,74,-0.3684474143996314],[120,80,75,-0.3689476783986104],[120,80,76,-0.3673900218209397],[120,80,77,-0.3622686094584256],[120,80,78,-0.35841288421483636],[120,80,79,-0.3525533464407416],[120,81,64,-0.3714253562358105],[120,81,65,-0.37229938569332305],[120,81,66,-0.3687262518717954],[120,81,67,-0.3645517014723923],[120,81,68,-0.362477837816247],[120,81,69,-0.36159940327224893],[120,81,70,-0.3645607806427974],[120,81,71,-0.36926598137982125],[120,81,72,-0.3755597294929042],[120,81,73,-0.38033867489451895],[120,81,74,-0.3838106134035038],[120,81,75,-0.3837886155759038],[120,81,76,-0.3823139683459587],[120,81,77,-0.37800298638320295],[120,81,78,-0.374062903564339],[120,81,79,-0.36887545559554263],[120,82,64,-0.3861938843444437],[120,82,65,-0.387587905943996],[120,82,66,-0.38377624897357776],[120,82,67,-0.3797532333385492],[120,82,68,-0.37716262796273636],[120,82,69,-0.3775551956752233],[120,82,70,-0.3797658625103588],[120,82,71,-0.384665014746439],[120,82,72,-0.3906528948270472],[120,82,73,-0.39615441687712283],[120,82,74,-0.39930846848658774],[120,82,75,-0.39908669018121584],[120,82,76,-0.39726502948727205],[120,82,77,-0.3932527140384684],[120,82,78,-0.38930559271044507],[120,82,79,-0.3842849351776591],[120,83,64,-0.3996973632380653],[120,83,65,-0.40099131713971875],[120,83,66,-0.39716915923704466],[120,83,67,-0.3933937940346235],[120,83,68,-0.39048767487561076],[120,83,69,-0.3905224442500502],[120,83,70,-0.39320357166010167],[120,83,71,-0.39825325018792096],[120,83,72,-0.40451337567259016],[120,83,73,-0.41031781128050987],[120,83,74,-0.4125995968678105],[120,83,75,-0.4128222393730083],[120,83,76,-0.41124768650624133],[120,83,77,-0.40685324203173334],[120,83,78,-0.4027938667316153],[120,83,79,-0.3979308387901916],[120,84,64,-0.41133812647729434],[120,84,65,-0.41307791291815954],[120,84,66,-0.40968288567106004],[120,84,67,-0.4051672974884054],[120,84,68,-0.4024992915626214],[120,84,69,-0.40281675170187253],[120,84,70,-0.40624906294623014],[120,84,71,-0.411659774236126],[120,84,72,-0.4181461026349329],[120,84,73,-0.42314026640305863],[120,84,74,-0.42586306218868464],[120,84,75,-0.4267970835230708],[120,84,76,-0.4250631314073038],[120,84,77,-0.42035417729130453],[120,84,78,-0.4164292536989537],[120,84,79,-0.410880794746224],[120,85,64,-0.4293306567300264],[120,85,65,-0.4303403094042908],[120,85,66,-0.4276347228618353],[120,85,67,-0.42276305793960567],[120,85,68,-0.42007039284267395],[120,85,69,-0.4207719915603417],[120,85,70,-0.4246297804511833],[120,85,71,-0.4288689420280994],[120,85,72,-0.43412474667395123],[120,85,73,-0.438411530232664],[120,85,74,-0.44200376478196973],[120,85,75,-0.4428635386372621],[120,85,76,-0.4398354412925448],[120,85,77,-0.4357546877183162],[120,85,78,-0.4306330593441696],[120,85,79,-0.4241737844826672],[120,86,64,-0.44221810742883966],[120,86,65,-0.4427879326937035],[120,86,66,-0.44064005864673006],[120,86,67,-0.4355993141484654],[120,86,68,-0.4331784866240017],[120,86,69,-0.4336951138923194],[120,86,70,-0.4371400292509042],[120,86,71,-0.4407866840731156],[120,86,72,-0.4467191054277832],[120,86,73,-0.45140209621231137],[120,86,74,-0.45478542028696856],[120,86,75,-0.4553209864128159],[120,86,76,-0.4526615853559094],[120,86,77,-0.44891218907793795],[120,86,78,-0.4439262113150643],[120,86,79,-0.4376807263298578],[120,87,64,-0.4518049228412635],[120,87,65,-0.4526428683672701],[120,87,66,-0.4510653890771526],[120,87,67,-0.44635641175367263],[120,87,68,-0.44347853469735704],[120,87,69,-0.44402484957032673],[120,87,70,-0.446984578108855],[120,87,71,-0.4505453467933141],[120,87,72,-0.45657661037621733],[120,87,73,-0.4583333333333333],[120,87,74,-0.4583333333333333],[120,87,75,-0.4583333333333333],[120,87,76,-0.4583333333333333],[120,87,77,-0.4583333333333333],[120,87,78,-0.45496747816844124],[120,87,79,-0.4482241380409624],[120,88,64,-0.4583333333333333],[120,88,65,-0.4583333333333333],[120,88,66,-0.4583333333333333],[120,88,67,-0.4583333333333333],[120,88,68,-0.4555677306717211],[120,88,69,-0.4562994725289513],[120,88,70,-0.4583333333333333],[120,88,71,-0.4583333333333333],[120,88,72,-0.4583333333333333],[120,88,73,-0.4583333333333333],[120,88,74,-0.4583333333333333],[120,88,75,-0.4583333333333333],[120,88,76,-0.4583333333333333],[120,88,77,-0.4583333333333333],[120,88,78,-0.4583333333333333],[120,88,79,-0.4583333333333333],[120,89,64,-0.4583333333333333],[120,89,65,-0.4583333333333333],[120,89,66,-0.4583333333333333],[120,89,67,-0.4583333333333333],[120,89,68,-0.4583333333333333],[120,89,69,-0.4583333333333333],[120,89,70,-0.4583333333333333],[120,89,71,-0.4583333333333333],[120,89,72,-0.4583333333333333],[120,89,73,-0.4583333333333333],[120,89,74,-0.4583333333333333],[120,89,75,-0.4583333333333333],[120,89,76,-0.4583333333333333],[120,89,77,-0.4583333333333333],[120,89,78,-0.4583333333333333],[120,89,79,-0.4583333333333333],[120,90,64,-0.4583333333333333],[120,90,65,-0.4583333333333333],[120,90,66,-0.4583333333333333],[120,90,67,-0.4583333333333333],[120,90,68,-0.4583333333333333],[120,90,69,-0.4583333333333333],[120,90,70,-0.4583333333333333],[120,90,71,-0.4583333333333333],[120,90,72,-0.4583333333333333],[120,90,73,-0.4583333333333333],[120,90,74,-0.4583333333333333],[120,90,75,-0.4583333333333333],[120,90,76,-0.4583333333333333],[120,90,77,-0.4583333333333333],[120,90,78,-0.4583333333333333],[120,90,79,-0.4583333333333333],[120,91,64,-0.4583333333333333],[120,91,65,-0.4583333333333333],[120,91,66,-0.4583333333333333],[120,91,67,-0.4583333333333333],[120,91,68,-0.4583333333333333],[120,91,69,-0.4583333333333333],[120,91,70,-0.4583333333333333],[120,91,71,-0.4583333333333333],[120,91,72,-0.4583333333333333],[120,91,73,-0.4583333333333333],[120,91,74,-0.4583333333333333],[120,91,75,-0.4583333333333333],[120,91,76,-0.4583333333333333],[120,91,77,-0.4583333333333333],[120,91,78,-0.4583333333333333],[120,91,79,-0.4583333333333333],[120,92,64,-0.4583333333333333],[120,92,65,-0.4583333333333333],[120,92,66,-0.4583333333333333],[120,92,67,-0.4583333333333333],[120,92,68,-0.4583333333333333],[120,92,69,-0.4583333333333333],[120,92,70,-0.4583333333333333],[120,92,71,-0.4583333333333333],[120,92,72,-0.4583333333333333],[120,92,73,-0.4583333333333333],[120,92,74,-0.4583333333333333],[120,92,75,-0.4583333333333333],[120,92,76,-0.4583333333333333],[120,92,77,-0.4583333333333333],[120,92,78,-0.4583333333333333],[120,92,79,-0.4583333333333333],[120,93,64,-0.4583333333333333],[120,93,65,-0.4583333333333333],[120,93,66,-0.4583333333333333],[120,93,67,-0.4583333333333333],[120,93,68,-0.4583333333333333],[120,93,69,-0.4583333333333333],[120,93,70,-0.4583333333333333],[120,93,71,-0.4583333333333333],[120,93,72,-0.4583333333333333],[120,93,73,-0.4583333333333333],[120,93,74,-0.4583333333333333],[120,93,75,-0.4583333333333333],[120,93,76,-0.4583333333333333],[120,93,77,-0.4583333333333333],[120,93,78,-0.4583333333333333],[120,93,79,-0.4583333333333333],[120,94,64,-0.4583333333333333],[120,94,65,-0.4583333333333333],[120,94,66,-0.4583333333333333],[120,94,67,-0.4583333333333333],[120,94,68,-0.4583333333333333],[120,94,69,-0.4583333333333333],[120,94,70,-0.4583333333333333],[120,94,71,-0.4583333333333333],[120,94,72,-0.4583333333333333],[120,94,73,-0.4583333333333333],[120,94,74,-0.4583333333333333],[120,94,75,-0.4583333333333333],[120,94,76,-0.4583333333333333],[120,94,77,-0.4583333333333333],[120,94,78,-0.4583333333333333],[120,94,79,-0.4583333333333333],[120,95,64,-0.4583333333333333],[120,95,65,-0.4583333333333333],[120,95,66,-0.4583333333333333],[120,95,67,-0.4583333333333333],[120,95,68,-0.4583333333333333],[120,95,69,-0.4583333333333333],[120,95,70,-0.4583333333333333],[120,95,71,-0.4583333333333333],[120,95,72,-0.4583333333333333],[120,95,73,-0.4583333333333333],[120,95,74,-0.4583333333333333],[120,95,75,-0.4583333333333333],[120,95,76,-0.4583333333333333],[120,95,77,-0.4583333333333333],[120,95,78,-0.4583333333333333],[120,95,79,-0.4583333333333333],[120,96,64,-0.4583333333333333],[120,96,65,-0.4583333333333333],[120,96,66,-0.4583333333333333],[120,96,67,-0.4583333333333333],[120,96,68,-0.4583333333333333],[120,96,69,-0.4583333333333333],[120,96,70,-0.4583333333333333],[120,96,71,-0.4583333333333333],[120,96,72,-0.4583333333333333],[120,96,73,-0.4583333333333333],[120,96,74,-0.4583333333333333],[120,96,75,-0.4583333333333333],[120,96,76,-0.4583333333333333],[120,96,77,-0.4583333333333333],[120,96,78,-0.4583333333333333],[120,96,79,-0.4583333333333333],[120,97,64,-0.4583333333333333],[120,97,65,-0.4583333333333333],[120,97,66,-0.4583333333333333],[120,97,67,-0.4583333333333333],[120,97,68,-0.4583333333333333],[120,97,69,-0.4583333333333333],[120,97,70,-0.4583333333333333],[120,97,71,-0.4583333333333333],[120,97,72,-0.4583333333333333],[120,97,73,-0.4583333333333333],[120,97,74,-0.4583333333333333],[120,97,75,-0.4583333333333333],[120,97,76,-0.4583333333333333],[120,97,77,-0.4583333333333333],[120,97,78,-0.4583333333333333],[120,97,79,-0.4583333333333333],[120,98,64,-0.4583333333333333],[120,98,65,-0.4583333333333333],[120,98,66,-0.4583333333333333],[120,98,67,-0.4583333333333333],[120,98,68,-0.4583333333333333],[120,98,69,-0.4583333333333333],[120,98,70,-0.4583333333333333],[120,98,71,-0.4583333333333333],[120,98,72,-0.4583333333333333],[120,98,73,-0.4583333333333333],[120,98,74,-0.4583333333333333],[120,98,75,-0.4583333333333333],[120,98,76,-0.4583333333333333],[120,98,77,-0.4583333333333333],[120,98,78,-0.4583333333333333],[120,98,79,-0.4583333333333333],[120,99,64,-0.4583333333333333],[120,99,65,-0.4583333333333333],[120,99,66,-0.4583333333333333],[120,99,67,-0.4583333333333333],[120,99,68,-0.4583333333333333],[120,99,69,-0.4583333333333333],[120,99,70,-0.4583333333333333],[120,99,71,-0.4583333333333333],[120,99,72,-0.4583333333333333],[120,99,73,-0.4583333333333333],[120,99,74,-0.4583333333333333],[120,99,75,-0.4583333333333333],[120,99,76,-0.4583333333333333],[120,99,77,-0.4583333333333333],[120,99,78,-0.4583333333333333],[120,99,79,-0.4583333333333333],[120,100,64,-0.4583333333333333],[120,100,65,-0.4583333333333333],[120,100,66,-0.4583333333333333],[120,100,67,-0.4583333333333333],[120,100,68,-0.4583333333333333],[120,100,69,-0.4583333333333333],[120,100,70,-0.4583333333333333],[120,100,71,-0.4583333333333333],[120,100,72,-0.4583333333333333],[120,100,73,-0.4583333333333333],[120,100,74,-0.4583333333333333],[120,100,75,-0.4583333333333333],[120,100,76,-0.4583333333333333],[120,100,77,-0.4583333333333333],[120,100,78,-0.4583333333333333],[120,100,79,-0.4583333333333333],[120,101,64,-0.4583333333333333],[120,101,65,-0.4583333333333333],[120,101,66,-0.4583333333333333],[120,101,67,-0.4583333333333333],[120,101,68,-0.4583333333333333],[120,101,69,-0.4583333333333333],[120,101,70,-0.4583333333333333],[120,101,71,-0.4583333333333333],[120,101,72,-0.4583333333333333],[120,101,73,-0.4583333333333333],[120,101,74,-0.4583333333333333],[120,101,75,-0.4583333333333333],[120,101,76,-0.4583333333333333],[120,101,77,-0.4583333333333333],[120,101,78,-0.4583333333333333],[120,101,79,-0.4583333333333333],[120,102,64,-0.4583333333333333],[120,102,65,-0.4583333333333333],[120,102,66,-0.4583333333333333],[120,102,67,-0.4583333333333333],[120,102,68,-0.4583333333333333],[120,102,69,-0.4583333333333333],[120,102,70,-0.4583333333333333],[120,102,71,-0.4583333333333333],[120,102,72,-0.4583333333333333],[120,102,73,-0.4583333333333333],[120,102,74,-0.4583333333333333],[120,102,75,-0.4583333333333333],[120,102,76,-0.4583333333333333],[120,102,77,-0.4583333333333333],[120,102,78,-0.4583333333333333],[120,102,79,-0.4583333333333333],[120,103,64,-0.4583333333333333],[120,103,65,-0.4583333333333333],[120,103,66,-0.4583333333333333],[120,103,67,-0.4583333333333333],[120,103,68,-0.4583333333333333],[120,103,69,-0.4583333333333333],[120,103,70,-0.4583333333333333],[120,103,71,-0.4583333333333333],[120,103,72,-0.4583333333333333],[120,103,73,-0.4583333333333333],[120,103,74,-0.4583333333333333],[120,103,75,-0.4583333333333333],[120,103,76,-0.4583333333333333],[120,103,77,-0.4583333333333333],[120,103,78,-0.4583333333333333],[120,103,79,-0.4583333333333333],[120,104,64,-0.4583333333333333],[120,104,65,-0.4583333333333333],[120,104,66,-0.4583333333333333],[120,104,67,-0.4583333333333333],[120,104,68,-0.4583333333333333],[120,104,69,-0.4583333333333333],[120,104,70,-0.4583333333333333],[120,104,71,-0.4583333333333333],[120,104,72,-0.4583333333333333],[120,104,73,-0.4583333333333333],[120,104,74,-0.4583333333333333],[120,104,75,-0.4583333333333333],[120,104,76,-0.4583333333333333],[120,104,77,-0.4583333333333333],[120,104,78,-0.4583333333333333],[120,104,79,-0.4583333333333333],[120,105,64,-0.4583333333333333],[120,105,65,-0.4583333333333333],[120,105,66,-0.4583333333333333],[120,105,67,-0.4583333333333333],[120,105,68,-0.4583333333333333],[120,105,69,-0.4583333333333333],[120,105,70,-0.4583333333333333],[120,105,71,-0.4583333333333333],[120,105,72,-0.4583333333333333],[120,105,73,-0.4583333333333333],[120,105,74,-0.4583333333333333],[120,105,75,-0.4583333333333333],[120,105,76,-0.4583333333333333],[120,105,77,-0.4583333333333333],[120,105,78,-0.4583333333333333],[120,105,79,-0.4583333333333333],[120,106,64,-0.4583333333333333],[120,106,65,-0.4583333333333333],[120,106,66,-0.4583333333333333],[120,106,67,-0.4583333333333333],[120,106,68,-0.4583333333333333],[120,106,69,-0.4583333333333333],[120,106,70,-0.4583333333333333],[120,106,71,-0.4583333333333333],[120,106,72,-0.4583333333333333],[120,106,73,-0.4583333333333333],[120,106,74,-0.4583333333333333],[120,106,75,-0.4583333333333333],[120,106,76,-0.4583333333333333],[120,106,77,-0.4583333333333333],[120,106,78,-0.4583333333333333],[120,106,79,-0.4583333333333333],[120,107,64,-0.4583333333333333],[120,107,65,-0.4583333333333333],[120,107,66,-0.4583333333333333],[120,107,67,-0.4583333333333333],[120,107,68,-0.4583333333333333],[120,107,69,-0.4583333333333333],[120,107,70,-0.4583333333333333],[120,107,71,-0.4583333333333333],[120,107,72,-0.4583333333333333],[120,107,73,-0.4583333333333333],[120,107,74,-0.4583333333333333],[120,107,75,-0.4583333333333333],[120,107,76,-0.4583333333333333],[120,107,77,-0.4583333333333333],[120,107,78,-0.4583333333333333],[120,107,79,-0.4583333333333333],[120,108,64,-0.4583333333333333],[120,108,65,-0.4583333333333333],[120,108,66,-0.4583333333333333],[120,108,67,-0.4583333333333333],[120,108,68,-0.4583333333333333],[120,108,69,-0.4583333333333333],[120,108,70,-0.4583333333333333],[120,108,71,-0.4583333333333333],[120,108,72,-0.4583333333333333],[120,108,73,-0.4583333333333333],[120,108,74,-0.4583333333333333],[120,108,75,-0.4583333333333333],[120,108,76,-0.4583333333333333],[120,108,77,-0.4583333333333333],[120,108,78,-0.4583333333333333],[120,108,79,-0.4583333333333333],[120,109,64,-0.4583333333333333],[120,109,65,-0.4583333333333333],[120,109,66,-0.4583333333333333],[120,109,67,-0.4583333333333333],[120,109,68,-0.4583333333333333],[120,109,69,-0.4583333333333333],[120,109,70,-0.4583333333333333],[120,109,71,-0.4583333333333333],[120,109,72,-0.4583333333333333],[120,109,73,-0.4583333333333333],[120,109,74,-0.4583333333333333],[120,109,75,-0.4583333333333333],[120,109,76,-0.4583333333333333],[120,109,77,-0.4583333333333333],[120,109,78,-0.4583333333333333],[120,109,79,-0.4583333333333333],[120,110,64,-0.4583333333333333],[120,110,65,-0.4583333333333333],[120,110,66,-0.4583333333333333],[120,110,67,-0.4583333333333333],[120,110,68,-0.4583333333333333],[120,110,69,-0.4583333333333333],[120,110,70,-0.4583333333333333],[120,110,71,-0.4583333333333333],[120,110,72,-0.4583333333333333],[120,110,73,-0.4583333333333333],[120,110,74,-0.4583333333333333],[120,110,75,-0.4583333333333333],[120,110,76,-0.4583333333333333],[120,110,77,-0.4583333333333333],[120,110,78,-0.4583333333333333],[120,110,79,-0.4583333333333333],[120,111,64,-0.4583333333333333],[120,111,65,-0.4583333333333333],[120,111,66,-0.4583333333333333],[120,111,67,-0.4583333333333333],[120,111,68,-0.4583333333333333],[120,111,69,-0.4583333333333333],[120,111,70,-0.4583333333333333],[120,111,71,-0.4583333333333333],[120,111,72,-0.4583333333333333],[120,111,73,-0.4583333333333333],[120,111,74,-0.4583333333333333],[120,111,75,-0.4583333333333333],[120,111,76,-0.4583333333333333],[120,111,77,-0.4583333333333333],[120,111,78,-0.4583333333333333],[120,111,79,-0.4583333333333333],[120,112,64,-0.4583333333333333],[120,112,65,-0.4583333333333333],[120,112,66,-0.4583333333333333],[120,112,67,-0.4583333333333333],[120,112,68,-0.4583333333333333],[120,112,69,-0.4583333333333333],[120,112,70,-0.4583333333333333],[120,112,71,-0.4583333333333333],[120,112,72,-0.4583333333333333],[120,112,73,-0.4583333333333333],[120,112,74,-0.4583333333333333],[120,112,75,-0.4583333333333333],[120,112,76,-0.4583333333333333],[120,112,77,-0.4583333333333333],[120,112,78,-0.4583333333333333],[120,112,79,-0.4583333333333333],[120,113,64,-0.4583333333333333],[120,113,65,-0.4583333333333333],[120,113,66,-0.4583333333333333],[120,113,67,-0.4583333333333333],[120,113,68,-0.4583333333333333],[120,113,69,-0.4583333333333333],[120,113,70,-0.4583333333333333],[120,113,71,-0.4583333333333333],[120,113,72,-0.4583333333333333],[120,113,73,-0.4583333333333333],[120,113,74,-0.4583333333333333],[120,113,75,-0.4583333333333333],[120,113,76,-0.4583333333333333],[120,113,77,-0.4583333333333333],[120,113,78,-0.4583333333333333],[120,113,79,-0.4583333333333333],[120,114,64,-0.4583333333333333],[120,114,65,-0.4583333333333333],[120,114,66,-0.4583333333333333],[120,114,67,-0.4583333333333333],[120,114,68,-0.4583333333333333],[120,114,69,-0.4583333333333333],[120,114,70,-0.4583333333333333],[120,114,71,-0.4583333333333333],[120,114,72,-0.4583333333333333],[120,114,73,-0.4583333333333333],[120,114,74,-0.4583333333333333],[120,114,75,-0.4583333333333333],[120,114,76,-0.4583333333333333],[120,114,77,-0.4583333333333333],[120,114,78,-0.4583333333333333],[120,114,79,-0.4583333333333333],[120,115,64,-0.4583333333333333],[120,115,65,-0.4583333333333333],[120,115,66,-0.4583333333333333],[120,115,67,-0.4583333333333333],[120,115,68,-0.4583333333333333],[120,115,69,-0.4583333333333333],[120,115,70,-0.4583333333333333],[120,115,71,-0.4583333333333333],[120,115,72,-0.4583333333333333],[120,115,73,-0.4583333333333333],[120,115,74,-0.4583333333333333],[120,115,75,-0.4583333333333333],[120,115,76,-0.4583333333333333],[120,115,77,-0.4583333333333333],[120,115,78,-0.4583333333333333],[120,115,79,-0.4583333333333333],[120,116,64,-0.4583333333333333],[120,116,65,-0.4583333333333333],[120,116,66,-0.4583333333333333],[120,116,67,-0.4583333333333333],[120,116,68,-0.4583333333333333],[120,116,69,-0.4583333333333333],[120,116,70,-0.4583333333333333],[120,116,71,-0.4583333333333333],[120,116,72,-0.4583333333333333],[120,116,73,-0.4583333333333333],[120,116,74,-0.4583333333333333],[120,116,75,-0.4583333333333333],[120,116,76,-0.4583333333333333],[120,116,77,-0.4583333333333333],[120,116,78,-0.4583333333333333],[120,116,79,-0.4583333333333333],[120,117,64,-0.4583333333333333],[120,117,65,-0.4583333333333333],[120,117,66,-0.4583333333333333],[120,117,67,-0.4583333333333333],[120,117,68,-0.4583333333333333],[120,117,69,-0.4583333333333333],[120,117,70,-0.4583333333333333],[120,117,71,-0.4583333333333333],[120,117,72,-0.4583333333333333],[120,117,73,-0.4583333333333333],[120,117,74,-0.4583333333333333],[120,117,75,-0.4583333333333333],[120,117,76,-0.4583333333333333],[120,117,77,-0.4583333333333333],[120,117,78,-0.4583333333333333],[120,117,79,-0.4583333333333333],[120,118,64,-0.4583333333333333],[120,118,65,-0.4583333333333333],[120,118,66,-0.4583333333333333],[120,118,67,-0.4583333333333333],[120,118,68,-0.4583333333333333],[120,118,69,-0.4583333333333333],[120,118,70,-0.4583333333333333],[120,118,71,-0.4583333333333333],[120,118,72,-0.4583333333333333],[120,118,73,-0.4583333333333333],[120,118,74,-0.4583333333333333],[120,118,75,-0.4583333333333333],[120,118,76,-0.4583333333333333],[120,118,77,-0.4583333333333333],[120,118,78,-0.4583333333333333],[120,118,79,-0.4583333333333333],[120,119,64,-0.4583333333333333],[120,119,65,-0.4583333333333333],[120,119,66,-0.4583333333333333],[120,119,67,-0.4583333333333333],[120,119,68,-0.4583333333333333],[120,119,69,-0.4583333333333333],[120,119,70,-0.4583333333333333],[120,119,71,-0.4583333333333333],[120,119,72,-0.4583333333333333],[120,119,73,-0.4583333333333333],[120,119,74,-0.4583333333333333],[120,119,75,-0.4583333333333333],[120,119,76,-0.4583333333333333],[120,119,77,-0.4583333333333333],[120,119,78,-0.4583333333333333],[120,119,79,-0.4583333333333333],[120,120,64,-0.4583333333333333],[120,120,65,-0.4583333333333333],[120,120,66,-0.4583333333333333],[120,120,67,-0.4583333333333333],[120,120,68,-0.4583333333333333],[120,120,69,-0.4583333333333333],[120,120,70,-0.4583333333333333],[120,120,71,-0.4583333333333333],[120,120,72,-0.4583333333333333],[120,120,73,-0.4583333333333333],[120,120,74,-0.4583333333333333],[120,120,75,-0.4583333333333333],[120,120,76,-0.4583333333333333],[120,120,77,-0.4583333333333333],[120,120,78,-0.4583333333333333],[120,120,79,-0.4583333333333333],[120,121,64,-0.4583333333333333],[120,121,65,-0.4583333333333333],[120,121,66,-0.4583333333333333],[120,121,67,-0.4583333333333333],[120,121,68,-0.4583333333333333],[120,121,69,-0.4583333333333333],[120,121,70,-0.4583333333333333],[120,121,71,-0.4583333333333333],[120,121,72,-0.4583333333333333],[120,121,73,-0.4583333333333333],[120,121,74,-0.4583333333333333],[120,121,75,-0.4583333333333333],[120,121,76,-0.4583333333333333],[120,121,77,-0.4583333333333333],[120,121,78,-0.4583333333333333],[120,121,79,-0.4583333333333333],[120,122,64,-0.4583333333333333],[120,122,65,-0.4583333333333333],[120,122,66,-0.4583333333333333],[120,122,67,-0.4583333333333333],[120,122,68,-0.4583333333333333],[120,122,69,-0.4583333333333333],[120,122,70,-0.4583333333333333],[120,122,71,-0.4583333333333333],[120,122,72,-0.4583333333333333],[120,122,73,-0.4583333333333333],[120,122,74,-0.4583333333333333],[120,122,75,-0.4583333333333333],[120,122,76,-0.4583333333333333],[120,122,77,-0.4583333333333333],[120,122,78,-0.4583333333333333],[120,122,79,-0.4583333333333333],[120,123,64,-0.4583333333333333],[120,123,65,-0.4583333333333333],[120,123,66,-0.4583333333333333],[120,123,67,-0.4583333333333333],[120,123,68,-0.4583333333333333],[120,123,69,-0.4583333333333333],[120,123,70,-0.4583333333333333],[120,123,71,-0.4583333333333333],[120,123,72,-0.4583333333333333],[120,123,73,-0.4583333333333333],[120,123,74,-0.4583333333333333],[120,123,75,-0.4583333333333333],[120,123,76,-0.4583333333333333],[120,123,77,-0.4583333333333333],[120,123,78,-0.4583333333333333],[120,123,79,-0.4583333333333333],[120,124,64,-0.4583333333333333],[120,124,65,-0.4583333333333333],[120,124,66,-0.4583333333333333],[120,124,67,-0.4583333333333333],[120,124,68,-0.4583333333333333],[120,124,69,-0.4583333333333333],[120,124,70,-0.4583333333333333],[120,124,71,-0.4583333333333333],[120,124,72,-0.4583333333333333],[120,124,73,-0.4583333333333333],[120,124,74,-0.4583333333333333],[120,124,75,-0.4583333333333333],[120,124,76,-0.4583333333333333],[120,124,77,-0.4583333333333333],[120,124,78,-0.4583333333333333],[120,124,79,-0.4583333333333333],[120,125,64,-0.4583333333333333],[120,125,65,-0.4583333333333333],[120,125,66,-0.4583333333333333],[120,125,67,-0.4583333333333333],[120,125,68,-0.4583333333333333],[120,125,69,-0.4583333333333333],[120,125,70,-0.4583333333333333],[120,125,71,-0.4583333333333333],[120,125,72,-0.4583333333333333],[120,125,73,-0.4583333333333333],[120,125,74,-0.4583333333333333],[120,125,75,-0.4583333333333333],[120,125,76,-0.4583333333333333],[120,125,77,-0.4583333333333333],[120,125,78,-0.4583333333333333],[120,125,79,-0.4583333333333333],[120,126,64,-0.4583333333333333],[120,126,65,-0.4583333333333333],[120,126,66,-0.4583333333333333],[120,126,67,-0.4583333333333333],[120,126,68,-0.4583333333333333],[120,126,69,-0.4583333333333333],[120,126,70,-0.4583333333333333],[120,126,71,-0.4583333333333333],[120,126,72,-0.4583333333333333],[120,126,73,-0.4583333333333333],[120,126,74,-0.4583333333333333],[120,126,75,-0.4583333333333333],[120,126,76,-0.4583333333333333],[120,126,77,-0.4583333333333333],[120,126,78,-0.4583333333333333],[120,126,79,-0.4583333333333333],[120,127,64,-0.4583333333333333],[120,127,65,-0.4583333333333333],[120,127,66,-0.4583333333333333],[120,127,67,-0.4583333333333333],[120,127,68,-0.4583333333333333],[120,127,69,-0.4583333333333333],[120,127,70,-0.4583333333333333],[120,127,71,-0.4583333333333333],[120,127,72,-0.4583333333333333],[120,127,73,-0.4583333333333333],[120,127,74,-0.4583333333333333],[120,127,75,-0.4583333333333333],[120,127,76,-0.4583333333333333],[120,127,77,-0.4583333333333333],[120,127,78,-0.4583333333333333],[120,127,79,-0.4583333333333333],[120,128,64,-0.4583333333333333],[120,128,65,-0.4583333333333333],[120,128,66,-0.4583333333333333],[120,128,67,-0.4583333333333333],[120,128,68,-0.4583333333333333],[120,128,69,-0.4583333333333333],[120,128,70,-0.4583333333333333],[120,128,71,-0.4583333333333333],[120,128,72,-0.4583333333333333],[120,128,73,-0.4583333333333333],[120,128,74,-0.4583333333333333],[120,128,75,-0.4583333333333333],[120,128,76,-0.4583333333333333],[120,128,77,-0.4583333333333333],[120,128,78,-0.4583333333333333],[120,128,79,-0.4583333333333333],[120,129,64,-0.4583333333333333],[120,129,65,-0.4583333333333333],[120,129,66,-0.4583333333333333],[120,129,67,-0.4583333333333333],[120,129,68,-0.4583333333333333],[120,129,69,-0.4583333333333333],[120,129,70,-0.4583333333333333],[120,129,71,-0.4583333333333333],[120,129,72,-0.4583333333333333],[120,129,73,-0.4583333333333333],[120,129,74,-0.4583333333333333],[120,129,75,-0.4583333333333333],[120,129,76,-0.4583333333333333],[120,129,77,-0.4583333333333333],[120,129,78,-0.4583333333333333],[120,129,79,-0.4583333333333333],[120,130,64,-0.4583333333333333],[120,130,65,-0.4583333333333333],[120,130,66,-0.4583333333333333],[120,130,67,-0.4583333333333333],[120,130,68,-0.4583333333333333],[120,130,69,-0.4583333333333333],[120,130,70,-0.4583333333333333],[120,130,71,-0.4583333333333333],[120,130,72,-0.4583333333333333],[120,130,73,-0.4583333333333333],[120,130,74,-0.4583333333333333],[120,130,75,-0.4583333333333333],[120,130,76,-0.4583333333333333],[120,130,77,-0.4583333333333333],[120,130,78,-0.4583333333333333],[120,130,79,-0.4583333333333333],[120,131,64,-0.4583333333333333],[120,131,65,-0.4583333333333333],[120,131,66,-0.4583333333333333],[120,131,67,-0.4583333333333333],[120,131,68,-0.4583333333333333],[120,131,69,-0.4583333333333333],[120,131,70,-0.4583333333333333],[120,131,71,-0.4583333333333333],[120,131,72,-0.4583333333333333],[120,131,73,-0.4583333333333333],[120,131,74,-0.4583333333333333],[120,131,75,-0.4583333333333333],[120,131,76,-0.4583333333333333],[120,131,77,-0.4583333333333333],[120,131,78,-0.4583333333333333],[120,131,79,-0.4583333333333333],[120,132,64,-0.4583333333333333],[120,132,65,-0.4583333333333333],[120,132,66,-0.4583333333333333],[120,132,67,-0.4583333333333333],[120,132,68,-0.4583333333333333],[120,132,69,-0.4583333333333333],[120,132,70,-0.4583333333333333],[120,132,71,-0.4583333333333333],[120,132,72,-0.4583333333333333],[120,132,73,-0.4583333333333333],[120,132,74,-0.4583333333333333],[120,132,75,-0.4583333333333333],[120,132,76,-0.4583333333333333],[120,132,77,-0.4583333333333333],[120,132,78,-0.4583333333333333],[120,132,79,-0.4583333333333333],[120,133,64,-0.4583333333333333],[120,133,65,-0.4583333333333333],[120,133,66,-0.4583333333333333],[120,133,67,-0.4583333333333333],[120,133,68,-0.4583333333333333],[120,133,69,-0.4583333333333333],[120,133,70,-0.4583333333333333],[120,133,71,-0.4583333333333333],[120,133,72,-0.4583333333333333],[120,133,73,-0.4583333333333333],[120,133,74,-0.4583333333333333],[120,133,75,-0.4583333333333333],[120,133,76,-0.4583333333333333],[120,133,77,-0.4583333333333333],[120,133,78,-0.4583333333333333],[120,133,79,-0.4583333333333333],[120,134,64,-0.4583333333333333],[120,134,65,-0.4583333333333333],[120,134,66,-0.4583333333333333],[120,134,67,-0.4583333333333333],[120,134,68,-0.4583333333333333],[120,134,69,-0.4583333333333333],[120,134,70,-0.4583333333333333],[120,134,71,-0.4583333333333333],[120,134,72,-0.4583333333333333],[120,134,73,-0.4583333333333333],[120,134,74,-0.4583333333333333],[120,134,75,-0.4583333333333333],[120,134,76,-0.4583333333333333],[120,134,77,-0.4583333333333333],[120,134,78,-0.4583333333333333],[120,134,79,-0.4583333333333333],[120,135,64,-0.4583333333333333],[120,135,65,-0.4583333333333333],[120,135,66,-0.4583333333333333],[120,135,67,-0.4583333333333333],[120,135,68,-0.4583333333333333],[120,135,69,-0.4583333333333333],[120,135,70,-0.4583333333333333],[120,135,71,-0.4583333333333333],[120,135,72,-0.4583333333333333],[120,135,73,-0.4583333333333333],[120,135,74,-0.4583333333333333],[120,135,75,-0.4583333333333333],[120,135,76,-0.4583333333333333],[120,135,77,-0.4583333333333333],[120,135,78,-0.4583333333333333],[120,135,79,-0.4583333333333333],[120,136,64,-0.4583333333333333],[120,136,65,-0.4583333333333333],[120,136,66,-0.4583333333333333],[120,136,67,-0.4583333333333333],[120,136,68,-0.4583333333333333],[120,136,69,-0.4583333333333333],[120,136,70,-0.4583333333333333],[120,136,71,-0.4583333333333333],[120,136,72,-0.4583333333333333],[120,136,73,-0.4583333333333333],[120,136,74,-0.4583333333333333],[120,136,75,-0.4583333333333333],[120,136,76,-0.4583333333333333],[120,136,77,-0.4583333333333333],[120,136,78,-0.4583333333333333],[120,136,79,-0.4583333333333333],[120,137,64,-0.4583333333333333],[120,137,65,-0.4583333333333333],[120,137,66,-0.4583333333333333],[120,137,67,-0.4583333333333333],[120,137,68,-0.4583333333333333],[120,137,69,-0.4583333333333333],[120,137,70,-0.4583333333333333],[120,137,71,-0.4583333333333333],[120,137,72,-0.4583333333333333],[120,137,73,-0.4583333333333333],[120,137,74,-0.4583333333333333],[120,137,75,-0.4583333333333333],[120,137,76,-0.4583333333333333],[120,137,77,-0.4583333333333333],[120,137,78,-0.4583333333333333],[120,137,79,-0.4583333333333333],[120,138,64,-0.4583333333333333],[120,138,65,-0.4583333333333333],[120,138,66,-0.4583333333333333],[120,138,67,-0.4583333333333333],[120,138,68,-0.4583333333333333],[120,138,69,-0.4583333333333333],[120,138,70,-0.4583333333333333],[120,138,71,-0.4583333333333333],[120,138,72,-0.4583333333333333],[120,138,73,-0.4583333333333333],[120,138,74,-0.4583333333333333],[120,138,75,-0.4583333333333333],[120,138,76,-0.4583333333333333],[120,138,77,-0.4583333333333333],[120,138,78,-0.4583333333333333],[120,138,79,-0.4583333333333333],[120,139,64,-0.4583333333333333],[120,139,65,-0.4583333333333333],[120,139,66,-0.4583333333333333],[120,139,67,-0.4583333333333333],[120,139,68,-0.4583333333333333],[120,139,69,-0.4583333333333333],[120,139,70,-0.4583333333333333],[120,139,71,-0.4583333333333333],[120,139,72,-0.4583333333333333],[120,139,73,-0.4583333333333333],[120,139,74,-0.4583333333333333],[120,139,75,-0.4583333333333333],[120,139,76,-0.4583333333333333],[120,139,77,-0.4583333333333333],[120,139,78,-0.4583333333333333],[120,139,79,-0.4583333333333333],[120,140,64,-0.4583333333333333],[120,140,65,-0.4583333333333333],[120,140,66,-0.4583333333333333],[120,140,67,-0.4583333333333333],[120,140,68,-0.4583333333333333],[120,140,69,-0.4583333333333333],[120,140,70,-0.4583333333333333],[120,140,71,-0.4583333333333333],[120,140,72,-0.4583333333333333],[120,140,73,-0.4583333333333333],[120,140,74,-0.4583333333333333],[120,140,75,-0.4583333333333333],[120,140,76,-0.4583333333333333],[120,140,77,-0.4583333333333333],[120,140,78,-0.4583333333333333],[120,140,79,-0.4583333333333333],[120,141,64,-0.4583333333333333],[120,141,65,-0.4583333333333333],[120,141,66,-0.4583333333333333],[120,141,67,-0.4583333333333333],[120,141,68,-0.4583333333333333],[120,141,69,-0.4583333333333333],[120,141,70,-0.4583333333333333],[120,141,71,-0.4583333333333333],[120,141,72,-0.4583333333333333],[120,141,73,-0.4583333333333333],[120,141,74,-0.4583333333333333],[120,141,75,-0.4583333333333333],[120,141,76,-0.4583333333333333],[120,141,77,-0.4583333333333333],[120,141,78,-0.4583333333333333],[120,141,79,-0.4583333333333333],[120,142,64,-0.4583333333333333],[120,142,65,-0.4583333333333333],[120,142,66,-0.4583333333333333],[120,142,67,-0.4583333333333333],[120,142,68,-0.4583333333333333],[120,142,69,-0.4583333333333333],[120,142,70,-0.4583333333333333],[120,142,71,-0.4583333333333333],[120,142,72,-0.4583333333333333],[120,142,73,-0.4583333333333333],[120,142,74,-0.4583333333333333],[120,142,75,-0.4583333333333333],[120,142,76,-0.4583333333333333],[120,142,77,-0.4583333333333333],[120,142,78,-0.4583333333333333],[120,142,79,-0.4583333333333333],[120,143,64,-0.4583333333333333],[120,143,65,-0.4583333333333333],[120,143,66,-0.4583333333333333],[120,143,67,-0.4583333333333333],[120,143,68,-0.4583333333333333],[120,143,69,-0.4583333333333333],[120,143,70,-0.4583333333333333],[120,143,71,-0.4583333333333333],[120,143,72,-0.4583333333333333],[120,143,73,-0.4583333333333333],[120,143,74,-0.4583333333333333],[120,143,75,-0.4583333333333333],[120,143,76,-0.4583333333333333],[120,143,77,-0.4583333333333333],[120,143,78,-0.4583333333333333],[120,143,79,-0.4583333333333333],[120,144,64,-0.4583333333333333],[120,144,65,-0.4583333333333333],[120,144,66,-0.4583333333333333],[120,144,67,-0.4583333333333333],[120,144,68,-0.4583333333333333],[120,144,69,-0.4583333333333333],[120,144,70,-0.4583333333333333],[120,144,71,-0.4583333333333333],[120,144,72,-0.4583333333333333],[120,144,73,-0.4583333333333333],[120,144,74,-0.4583333333333333],[120,144,75,-0.4583333333333333],[120,144,76,-0.4583333333333333],[120,144,77,-0.4583333333333333],[120,144,78,-0.4583333333333333],[120,144,79,-0.4583333333333333],[120,145,64,-0.4583333333333333],[120,145,65,-0.4583333333333333],[120,145,66,-0.4583333333333333],[120,145,67,-0.4583333333333333],[120,145,68,-0.4583333333333333],[120,145,69,-0.4583333333333333],[120,145,70,-0.4583333333333333],[120,145,71,-0.4583333333333333],[120,145,72,-0.4583333333333333],[120,145,73,-0.4583333333333333],[120,145,74,-0.4583333333333333],[120,145,75,-0.4583333333333333],[120,145,76,-0.4583333333333333],[120,145,77,-0.4583333333333333],[120,145,78,-0.4583333333333333],[120,145,79,-0.4583333333333333],[120,146,64,-0.4583333333333333],[120,146,65,-0.4583333333333333],[120,146,66,-0.4583333333333333],[120,146,67,-0.4583333333333333],[120,146,68,-0.4583333333333333],[120,146,69,-0.4583333333333333],[120,146,70,-0.4583333333333333],[120,146,71,-0.4583333333333333],[120,146,72,-0.4583333333333333],[120,146,73,-0.4583333333333333],[120,146,74,-0.4583333333333333],[120,146,75,-0.4583333333333333],[120,146,76,-0.4583333333333333],[120,146,77,-0.4583333333333333],[120,146,78,-0.4583333333333333],[120,146,79,-0.4583333333333333],[120,147,64,-0.4583333333333333],[120,147,65,-0.4583333333333333],[120,147,66,-0.4583333333333333],[120,147,67,-0.4583333333333333],[120,147,68,-0.4583333333333333],[120,147,69,-0.4583333333333333],[120,147,70,-0.4583333333333333],[120,147,71,-0.4583333333333333],[120,147,72,-0.4583333333333333],[120,147,73,-0.4583333333333333],[120,147,74,-0.4583333333333333],[120,147,75,-0.4583333333333333],[120,147,76,-0.4583333333333333],[120,147,77,-0.4583333333333333],[120,147,78,-0.4583333333333333],[120,147,79,-0.4583333333333333],[120,148,64,-0.4583333333333333],[120,148,65,-0.4583333333333333],[120,148,66,-0.4583333333333333],[120,148,67,-0.4583333333333333],[120,148,68,-0.4583333333333333],[120,148,69,-0.4583333333333333],[120,148,70,-0.4583333333333333],[120,148,71,-0.4583333333333333],[120,148,72,-0.4583333333333333],[120,148,73,-0.4583333333333333],[120,148,74,-0.4583333333333333],[120,148,75,-0.4583333333333333],[120,148,76,-0.4583333333333333],[120,148,77,-0.4583333333333333],[120,148,78,-0.4583333333333333],[120,148,79,-0.4583333333333333],[120,149,64,-0.4583333333333333],[120,149,65,-0.4583333333333333],[120,149,66,-0.4583333333333333],[120,149,67,-0.4583333333333333],[120,149,68,-0.4583333333333333],[120,149,69,-0.4583333333333333],[120,149,70,-0.4583333333333333],[120,149,71,-0.4583333333333333],[120,149,72,-0.4583333333333333],[120,149,73,-0.4583333333333333],[120,149,74,-0.4583333333333333],[120,149,75,-0.4583333333333333],[120,149,76,-0.4583333333333333],[120,149,77,-0.4583333333333333],[120,149,78,-0.4583333333333333],[120,149,79,-0.4583333333333333],[120,150,64,-0.4583333333333333],[120,150,65,-0.4583333333333333],[120,150,66,-0.4583333333333333],[120,150,67,-0.4583333333333333],[120,150,68,-0.4583333333333333],[120,150,69,-0.4583333333333333],[120,150,70,-0.4583333333333333],[120,150,71,-0.4583333333333333],[120,150,72,-0.4583333333333333],[120,150,73,-0.4583333333333333],[120,150,74,-0.4583333333333333],[120,150,75,-0.4583333333333333],[120,150,76,-0.4583333333333333],[120,150,77,-0.4583333333333333],[120,150,78,-0.4583333333333333],[120,150,79,-0.4583333333333333],[120,151,64,-0.4583333333333333],[120,151,65,-0.4583333333333333],[120,151,66,-0.4583333333333333],[120,151,67,-0.4583333333333333],[120,151,68,-0.4583333333333333],[120,151,69,-0.4583333333333333],[120,151,70,-0.4583333333333333],[120,151,71,-0.4583333333333333],[120,151,72,-0.4583333333333333],[120,151,73,-0.4583333333333333],[120,151,74,-0.4583333333333333],[120,151,75,-0.4583333333333333],[120,151,76,-0.4583333333333333],[120,151,77,-0.4583333333333333],[120,151,78,-0.4583333333333333],[120,151,79,-0.4583333333333333],[120,152,64,-0.4583333333333333],[120,152,65,-0.4583333333333333],[120,152,66,-0.4583333333333333],[120,152,67,-0.4583333333333333],[120,152,68,-0.4583333333333333],[120,152,69,-0.4583333333333333],[120,152,70,-0.4583333333333333],[120,152,71,-0.4583333333333333],[120,152,72,-0.4583333333333333],[120,152,73,-0.4583333333333333],[120,152,74,-0.4583333333333333],[120,152,75,-0.4583333333333333],[120,152,76,-0.4583333333333333],[120,152,77,-0.4583333333333333],[120,152,78,-0.4583333333333333],[120,152,79,-0.4583333333333333],[120,153,64,-0.4583333333333333],[120,153,65,-0.4583333333333333],[120,153,66,-0.4583333333333333],[120,153,67,-0.4583333333333333],[120,153,68,-0.4583333333333333],[120,153,69,-0.4583333333333333],[120,153,70,-0.4583333333333333],[120,153,71,-0.4583333333333333],[120,153,72,-0.4583333333333333],[120,153,73,-0.4583333333333333],[120,153,74,-0.4583333333333333],[120,153,75,-0.4583333333333333],[120,153,76,-0.4583333333333333],[120,153,77,-0.4583333333333333],[120,153,78,-0.4583333333333333],[120,153,79,-0.4583333333333333],[120,154,64,-0.4583333333333333],[120,154,65,-0.4583333333333333],[120,154,66,-0.4583333333333333],[120,154,67,-0.4583333333333333],[120,154,68,-0.4583333333333333],[120,154,69,-0.4583333333333333],[120,154,70,-0.4583333333333333],[120,154,71,-0.4583333333333333],[120,154,72,-0.4583333333333333],[120,154,73,-0.4583333333333333],[120,154,74,-0.4583333333333333],[120,154,75,-0.4583333333333333],[120,154,76,-0.4583333333333333],[120,154,77,-0.4583333333333333],[120,154,78,-0.4583333333333333],[120,154,79,-0.4583333333333333],[120,155,64,-0.4583333333333333],[120,155,65,-0.4583333333333333],[120,155,66,-0.4583333333333333],[120,155,67,-0.4583333333333333],[120,155,68,-0.4583333333333333],[120,155,69,-0.4583333333333333],[120,155,70,-0.4583333333333333],[120,155,71,-0.4583333333333333],[120,155,72,-0.4583333333333333],[120,155,73,-0.4583333333333333],[120,155,74,-0.4583333333333333],[120,155,75,-0.4583333333333333],[120,155,76,-0.4583333333333333],[120,155,77,-0.4583333333333333],[120,155,78,-0.4583333333333333],[120,155,79,-0.4583333333333333],[120,156,64,-0.4583333333333333],[120,156,65,-0.4583333333333333],[120,156,66,-0.4583333333333333],[120,156,67,-0.4583333333333333],[120,156,68,-0.4583333333333333],[120,156,69,-0.4583333333333333],[120,156,70,-0.4583333333333333],[120,156,71,-0.4583333333333333],[120,156,72,-0.4583333333333333],[120,156,73,-0.4583333333333333],[120,156,74,-0.4583333333333333],[120,156,75,-0.4583333333333333],[120,156,76,-0.4583333333333333],[120,156,77,-0.4583333333333333],[120,156,78,-0.4583333333333333],[120,156,79,-0.4583333333333333],[120,157,64,-0.4583333333333333],[120,157,65,-0.4583333333333333],[120,157,66,-0.4583333333333333],[120,157,67,-0.4583333333333333],[120,157,68,-0.4583333333333333],[120,157,69,-0.4583333333333333],[120,157,70,-0.4583333333333333],[120,157,71,-0.4583333333333333],[120,157,72,-0.4583333333333333],[120,157,73,-0.4583333333333333],[120,157,74,-0.4583333333333333],[120,157,75,-0.4583333333333333],[120,157,76,-0.4583333333333333],[120,157,77,-0.4583333333333333],[120,157,78,-0.4583333333333333],[120,157,79,-0.4583333333333333],[120,158,64,-0.4583333333333333],[120,158,65,-0.4583333333333333],[120,158,66,-0.4583333333333333],[120,158,67,-0.4583333333333333],[120,158,68,-0.4583333333333333],[120,158,69,-0.4583333333333333],[120,158,70,-0.4583333333333333],[120,158,71,-0.4583333333333333],[120,158,72,-0.4583333333333333],[120,158,73,-0.4583333333333333],[120,158,74,-0.4583333333333333],[120,158,75,-0.4583333333333333],[120,158,76,-0.4583333333333333],[120,158,77,-0.4583333333333333],[120,158,78,-0.4583333333333333],[120,158,79,-0.4583333333333333],[120,159,64,-0.4583333333333333],[120,159,65,-0.4583333333333333],[120,159,66,-0.4583333333333333],[120,159,67,-0.4583333333333333],[120,159,68,-0.4583333333333333],[120,159,69,-0.4583333333333333],[120,159,70,-0.4583333333333333],[120,159,71,-0.4583333333333333],[120,159,72,-0.4583333333333333],[120,159,73,-0.4583333333333333],[120,159,74,-0.4583333333333333],[120,159,75,-0.4583333333333333],[120,159,76,-0.4583333333333333],[120,159,77,-0.4583333333333333],[120,159,78,-0.4583333333333333],[120,159,79,-0.4583333333333333],[120,160,64,-0.4583333333333333],[120,160,65,-0.4583333333333333],[120,160,66,-0.4583333333333333],[120,160,67,-0.4583333333333333],[120,160,68,-0.4583333333333333],[120,160,69,-0.4583333333333333],[120,160,70,-0.4583333333333333],[120,160,71,-0.4583333333333333],[120,160,72,-0.4583333333333333],[120,160,73,-0.4583333333333333],[120,160,74,-0.4583333333333333],[120,160,75,-0.4583333333333333],[120,160,76,-0.4583333333333333],[120,160,77,-0.4583333333333333],[120,160,78,-0.4583333333333333],[120,160,79,-0.4583333333333333],[120,161,64,-0.4583333333333333],[120,161,65,-0.4583333333333333],[120,161,66,-0.4583333333333333],[120,161,67,-0.4583333333333333],[120,161,68,-0.4583333333333333],[120,161,69,-0.4583333333333333],[120,161,70,-0.4583333333333333],[120,161,71,-0.4583333333333333],[120,161,72,-0.4583333333333333],[120,161,73,-0.4583333333333333],[120,161,74,-0.4583333333333333],[120,161,75,-0.4583333333333333],[120,161,76,-0.4583333333333333],[120,161,77,-0.4583333333333333],[120,161,78,-0.4583333333333333],[120,161,79,-0.4583333333333333],[120,162,64,-0.4583333333333333],[120,162,65,-0.4583333333333333],[120,162,66,-0.4583333333333333],[120,162,67,-0.4583333333333333],[120,162,68,-0.4583333333333333],[120,162,69,-0.4583333333333333],[120,162,70,-0.4583333333333333],[120,162,71,-0.4583333333333333],[120,162,72,-0.4583333333333333],[120,162,73,-0.4583333333333333],[120,162,74,-0.4583333333333333],[120,162,75,-0.4583333333333333],[120,162,76,-0.4583333333333333],[120,162,77,-0.4583333333333333],[120,162,78,-0.4583333333333333],[120,162,79,-0.4583333333333333],[120,163,64,-0.4583333333333333],[120,163,65,-0.4583333333333333],[120,163,66,-0.4583333333333333],[120,163,67,-0.4583333333333333],[120,163,68,-0.4583333333333333],[120,163,69,-0.4583333333333333],[120,163,70,-0.4583333333333333],[120,163,71,-0.4583333333333333],[120,163,72,-0.4583333333333333],[120,163,73,-0.4583333333333333],[120,163,74,-0.4583333333333333],[120,163,75,-0.4583333333333333],[120,163,76,-0.4583333333333333],[120,163,77,-0.4583333333333333],[120,163,78,-0.4583333333333333],[120,163,79,-0.4583333333333333],[120,164,64,-0.4583333333333333],[120,164,65,-0.4583333333333333],[120,164,66,-0.4583333333333333],[120,164,67,-0.4583333333333333],[120,164,68,-0.4583333333333333],[120,164,69,-0.4583333333333333],[120,164,70,-0.4583333333333333],[120,164,71,-0.4583333333333333],[120,164,72,-0.4583333333333333],[120,164,73,-0.4583333333333333],[120,164,74,-0.4583333333333333],[120,164,75,-0.4583333333333333],[120,164,76,-0.4583333333333333],[120,164,77,-0.4583333333333333],[120,164,78,-0.4583333333333333],[120,164,79,-0.4583333333333333],[120,165,64,-0.4583333333333333],[120,165,65,-0.4583333333333333],[120,165,66,-0.4583333333333333],[120,165,67,-0.4583333333333333],[120,165,68,-0.4583333333333333],[120,165,69,-0.4583333333333333],[120,165,70,-0.4583333333333333],[120,165,71,-0.4583333333333333],[120,165,72,-0.4583333333333333],[120,165,73,-0.4583333333333333],[120,165,74,-0.4583333333333333],[120,165,75,-0.4583333333333333],[120,165,76,-0.4583333333333333],[120,165,77,-0.4583333333333333],[120,165,78,-0.4583333333333333],[120,165,79,-0.4583333333333333],[120,166,64,-0.4583333333333333],[120,166,65,-0.4583333333333333],[120,166,66,-0.4583333333333333],[120,166,67,-0.4583333333333333],[120,166,68,-0.4583333333333333],[120,166,69,-0.4583333333333333],[120,166,70,-0.4583333333333333],[120,166,71,-0.4583333333333333],[120,166,72,-0.4583333333333333],[120,166,73,-0.4583333333333333],[120,166,74,-0.4583333333333333],[120,166,75,-0.4583333333333333],[120,166,76,-0.4583333333333333],[120,166,77,-0.4583333333333333],[120,166,78,-0.4583333333333333],[120,166,79,-0.4583333333333333],[120,167,64,-0.4583333333333333],[120,167,65,-0.4583333333333333],[120,167,66,-0.4583333333333333],[120,167,67,-0.4583333333333333],[120,167,68,-0.4583333333333333],[120,167,69,-0.4583333333333333],[120,167,70,-0.4583333333333333],[120,167,71,-0.4583333333333333],[120,167,72,-0.4583333333333333],[120,167,73,-0.4583333333333333],[120,167,74,-0.4583333333333333],[120,167,75,-0.4583333333333333],[120,167,76,-0.4583333333333333],[120,167,77,-0.4583333333333333],[120,167,78,-0.4583333333333333],[120,167,79,-0.4583333333333333],[120,168,64,-0.4583333333333333],[120,168,65,-0.4583333333333333],[120,168,66,-0.4583333333333333],[120,168,67,-0.4583333333333333],[120,168,68,-0.4583333333333333],[120,168,69,-0.4583333333333333],[120,168,70,-0.4583333333333333],[120,168,71,-0.4583333333333333],[120,168,72,-0.4583333333333333],[120,168,73,-0.4583333333333333],[120,168,74,-0.4583333333333333],[120,168,75,-0.4583333333333333],[120,168,76,-0.4583333333333333],[120,168,77,-0.4583333333333333],[120,168,78,-0.4583333333333333],[120,168,79,-0.4583333333333333],[120,169,64,-0.4583333333333333],[120,169,65,-0.4583333333333333],[120,169,66,-0.4583333333333333],[120,169,67,-0.4583333333333333],[120,169,68,-0.4583333333333333],[120,169,69,-0.4583333333333333],[120,169,70,-0.4583333333333333],[120,169,71,-0.4583333333333333],[120,169,72,-0.4583333333333333],[120,169,73,-0.4583333333333333],[120,169,74,-0.4583333333333333],[120,169,75,-0.4583333333333333],[120,169,76,-0.4583333333333333],[120,169,77,-0.4583333333333333],[120,169,78,-0.4583333333333333],[120,169,79,-0.4583333333333333],[120,170,64,-0.4583333333333333],[120,170,65,-0.4583333333333333],[120,170,66,-0.4583333333333333],[120,170,67,-0.4583333333333333],[120,170,68,-0.4583333333333333],[120,170,69,-0.4583333333333333],[120,170,70,-0.4583333333333333],[120,170,71,-0.4583333333333333],[120,170,72,-0.4583333333333333],[120,170,73,-0.4583333333333333],[120,170,74,-0.4583333333333333],[120,170,75,-0.4583333333333333],[120,170,76,-0.4583333333333333],[120,170,77,-0.4583333333333333],[120,170,78,-0.4583333333333333],[120,170,79,-0.4583333333333333],[120,171,64,-0.4583333333333333],[120,171,65,-0.4583333333333333],[120,171,66,-0.4583333333333333],[120,171,67,-0.4583333333333333],[120,171,68,-0.4583333333333333],[120,171,69,-0.4583333333333333],[120,171,70,-0.4583333333333333],[120,171,71,-0.4583333333333333],[120,171,72,-0.4583333333333333],[120,171,73,-0.4583333333333333],[120,171,74,-0.4583333333333333],[120,171,75,-0.4583333333333333],[120,171,76,-0.4583333333333333],[120,171,77,-0.4583333333333333],[120,171,78,-0.4583333333333333],[120,171,79,-0.4583333333333333],[120,172,64,-0.4583333333333333],[120,172,65,-0.4583333333333333],[120,172,66,-0.4583333333333333],[120,172,67,-0.4583333333333333],[120,172,68,-0.4583333333333333],[120,172,69,-0.4583333333333333],[120,172,70,-0.4583333333333333],[120,172,71,-0.4583333333333333],[120,172,72,-0.4583333333333333],[120,172,73,-0.4583333333333333],[120,172,74,-0.4583333333333333],[120,172,75,-0.4583333333333333],[120,172,76,-0.4583333333333333],[120,172,77,-0.4583333333333333],[120,172,78,-0.4583333333333333],[120,172,79,-0.4583333333333333],[120,173,64,-0.4583333333333333],[120,173,65,-0.4583333333333333],[120,173,66,-0.4583333333333333],[120,173,67,-0.4583333333333333],[120,173,68,-0.4583333333333333],[120,173,69,-0.4583333333333333],[120,173,70,-0.4583333333333333],[120,173,71,-0.4583333333333333],[120,173,72,-0.4583333333333333],[120,173,73,-0.4583333333333333],[120,173,74,-0.4583333333333333],[120,173,75,-0.4583333333333333],[120,173,76,-0.4583333333333333],[120,173,77,-0.4583333333333333],[120,173,78,-0.4583333333333333],[120,173,79,-0.4583333333333333],[120,174,64,-0.4583333333333333],[120,174,65,-0.4583333333333333],[120,174,66,-0.4583333333333333],[120,174,67,-0.4583333333333333],[120,174,68,-0.4583333333333333],[120,174,69,-0.4583333333333333],[120,174,70,-0.4583333333333333],[120,174,71,-0.4583333333333333],[120,174,72,-0.4583333333333333],[120,174,73,-0.4583333333333333],[120,174,74,-0.4583333333333333],[120,174,75,-0.4583333333333333],[120,174,76,-0.4583333333333333],[120,174,77,-0.4583333333333333],[120,174,78,-0.4583333333333333],[120,174,79,-0.4583333333333333],[120,175,64,-0.4583333333333333],[120,175,65,-0.4583333333333333],[120,175,66,-0.4583333333333333],[120,175,67,-0.4583333333333333],[120,175,68,-0.4583333333333333],[120,175,69,-0.4583333333333333],[120,175,70,-0.4583333333333333],[120,175,71,-0.4583333333333333],[120,175,72,-0.4583333333333333],[120,175,73,-0.4583333333333333],[120,175,74,-0.4583333333333333],[120,175,75,-0.4583333333333333],[120,175,76,-0.4583333333333333],[120,175,77,-0.4583333333333333],[120,175,78,-0.4583333333333333],[120,175,79,-0.4583333333333333],[120,176,64,-0.4583333333333333],[120,176,65,-0.4583333333333333],[120,176,66,-0.4583333333333333],[120,176,67,-0.4583333333333333],[120,176,68,-0.4583333333333333],[120,176,69,-0.4583333333333333],[120,176,70,-0.4583333333333333],[120,176,71,-0.4583333333333333],[120,176,72,-0.4583333333333333],[120,176,73,-0.4583333333333333],[120,176,74,-0.4583333333333333],[120,176,75,-0.4583333333333333],[120,176,76,-0.4583333333333333],[120,176,77,-0.4583333333333333],[120,176,78,-0.4583333333333333],[120,176,79,-0.4583333333333333],[120,177,64,-0.4583333333333333],[120,177,65,-0.4583333333333333],[120,177,66,-0.4583333333333333],[120,177,67,-0.4583333333333333],[120,177,68,-0.4583333333333333],[120,177,69,-0.4583333333333333],[120,177,70,-0.4583333333333333],[120,177,71,-0.4583333333333333],[120,177,72,-0.4583333333333333],[120,177,73,-0.4583333333333333],[120,177,74,-0.4583333333333333],[120,177,75,-0.4583333333333333],[120,177,76,-0.4583333333333333],[120,177,77,-0.4583333333333333],[120,177,78,-0.4583333333333333],[120,177,79,-0.4583333333333333],[120,178,64,-0.4583333333333333],[120,178,65,-0.4583333333333333],[120,178,66,-0.4583333333333333],[120,178,67,-0.4583333333333333],[120,178,68,-0.4583333333333333],[120,178,69,-0.4583333333333333],[120,178,70,-0.4583333333333333],[120,178,71,-0.4583333333333333],[120,178,72,-0.4583333333333333],[120,178,73,-0.4583333333333333],[120,178,74,-0.4583333333333333],[120,178,75,-0.4583333333333333],[120,178,76,-0.4583333333333333],[120,178,77,-0.4583333333333333],[120,178,78,-0.4583333333333333],[120,178,79,-0.4583333333333333],[120,179,64,-0.4583333333333333],[120,179,65,-0.4583333333333333],[120,179,66,-0.4583333333333333],[120,179,67,-0.4583333333333333],[120,179,68,-0.4583333333333333],[120,179,69,-0.4583333333333333],[120,179,70,-0.4583333333333333],[120,179,71,-0.4583333333333333],[120,179,72,-0.4583333333333333],[120,179,73,-0.4583333333333333],[120,179,74,-0.4583333333333333],[120,179,75,-0.4583333333333333],[120,179,76,-0.4583333333333333],[120,179,77,-0.4583333333333333],[120,179,78,-0.4583333333333333],[120,179,79,-0.4583333333333333],[120,180,64,-0.4583333333333333],[120,180,65,-0.4583333333333333],[120,180,66,-0.4583333333333333],[120,180,67,-0.4583333333333333],[120,180,68,-0.4583333333333333],[120,180,69,-0.4583333333333333],[120,180,70,-0.4583333333333333],[120,180,71,-0.4583333333333333],[120,180,72,-0.4583333333333333],[120,180,73,-0.4583333333333333],[120,180,74,-0.4583333333333333],[120,180,75,-0.4583333333333333],[120,180,76,-0.4583333333333333],[120,180,77,-0.4583333333333333],[120,180,78,-0.4583333333333333],[120,180,79,-0.4583333333333333],[120,181,64,-0.4583333333333333],[120,181,65,-0.4583333333333333],[120,181,66,-0.4583333333333333],[120,181,67,-0.4583333333333333],[120,181,68,-0.4583333333333333],[120,181,69,-0.4583333333333333],[120,181,70,-0.4583333333333333],[120,181,71,-0.4583333333333333],[120,181,72,-0.4583333333333333],[120,181,73,-0.4583333333333333],[120,181,74,-0.4583333333333333],[120,181,75,-0.4583333333333333],[120,181,76,-0.4583333333333333],[120,181,77,-0.4583333333333333],[120,181,78,-0.4583333333333333],[120,181,79,-0.4583333333333333],[120,182,64,-0.4583333333333333],[120,182,65,-0.4583333333333333],[120,182,66,-0.4583333333333333],[120,182,67,-0.4583333333333333],[120,182,68,-0.4583333333333333],[120,182,69,-0.4583333333333333],[120,182,70,-0.4583333333333333],[120,182,71,-0.4583333333333333],[120,182,72,-0.4583333333333333],[120,182,73,-0.4583333333333333],[120,182,74,-0.4583333333333333],[120,182,75,-0.4583333333333333],[120,182,76,-0.4583333333333333],[120,182,77,-0.4583333333333333],[120,182,78,-0.4583333333333333],[120,182,79,-0.4583333333333333],[120,183,64,-0.4583333333333333],[120,183,65,-0.4583333333333333],[120,183,66,-0.4583333333333333],[120,183,67,-0.4583333333333333],[120,183,68,-0.4583333333333333],[120,183,69,-0.4583333333333333],[120,183,70,-0.4583333333333333],[120,183,71,-0.4583333333333333],[120,183,72,-0.4583333333333333],[120,183,73,-0.4583333333333333],[120,183,74,-0.4583333333333333],[120,183,75,-0.4583333333333333],[120,183,76,-0.4583333333333333],[120,183,77,-0.4583333333333333],[120,183,78,-0.4583333333333333],[120,183,79,-0.4583333333333333],[120,184,64,-0.4583333333333333],[120,184,65,-0.4583333333333333],[120,184,66,-0.4583333333333333],[120,184,67,-0.4583333333333333],[120,184,68,-0.4583333333333333],[120,184,69,-0.4583333333333333],[120,184,70,-0.4583333333333333],[120,184,71,-0.4583333333333333],[120,184,72,-0.4583333333333333],[120,184,73,-0.4583333333333333],[120,184,74,-0.4583333333333333],[120,184,75,-0.4583333333333333],[120,184,76,-0.4583333333333333],[120,184,77,-0.4583333333333333],[120,184,78,-0.4583333333333333],[120,184,79,-0.4583333333333333],[120,185,64,-0.4583333333333333],[120,185,65,-0.4583333333333333],[120,185,66,-0.4583333333333333],[120,185,67,-0.4583333333333333],[120,185,68,-0.4583333333333333],[120,185,69,-0.4583333333333333],[120,185,70,-0.4583333333333333],[120,185,71,-0.4583333333333333],[120,185,72,-0.4583333333333333],[120,185,73,-0.4583333333333333],[120,185,74,-0.4583333333333333],[120,185,75,-0.4583333333333333],[120,185,76,-0.4583333333333333],[120,185,77,-0.4583333333333333],[120,185,78,-0.4583333333333333],[120,185,79,-0.4583333333333333],[120,186,64,-0.4583333333333333],[120,186,65,-0.4583333333333333],[120,186,66,-0.4583333333333333],[120,186,67,-0.4583333333333333],[120,186,68,-0.4583333333333333],[120,186,69,-0.4583333333333333],[120,186,70,-0.4583333333333333],[120,186,71,-0.4583333333333333],[120,186,72,-0.4583333333333333],[120,186,73,-0.4583333333333333],[120,186,74,-0.4583333333333333],[120,186,75,-0.4583333333333333],[120,186,76,-0.4583333333333333],[120,186,77,-0.4583333333333333],[120,186,78,-0.4583333333333333],[120,186,79,-0.4583333333333333],[120,187,64,-0.4583333333333333],[120,187,65,-0.4583333333333333],[120,187,66,-0.4583333333333333],[120,187,67,-0.4583333333333333],[120,187,68,-0.4583333333333333],[120,187,69,-0.4583333333333333],[120,187,70,-0.4583333333333333],[120,187,71,-0.4583333333333333],[120,187,72,-0.4583333333333333],[120,187,73,-0.4583333333333333],[120,187,74,-0.4583333333333333],[120,187,75,-0.4583333333333333],[120,187,76,-0.4583333333333333],[120,187,77,-0.4583333333333333],[120,187,78,-0.4583333333333333],[120,187,79,-0.4583333333333333],[120,188,64,-0.4583333333333333],[120,188,65,-0.4583333333333333],[120,188,66,-0.4583333333333333],[120,188,67,-0.4583333333333333],[120,188,68,-0.4583333333333333],[120,188,69,-0.4583333333333333],[120,188,70,-0.4583333333333333],[120,188,71,-0.4583333333333333],[120,188,72,-0.4583333333333333],[120,188,73,-0.4583333333333333],[120,188,74,-0.4583333333333333],[120,188,75,-0.4583333333333333],[120,188,76,-0.4583333333333333],[120,188,77,-0.4583333333333333],[120,188,78,-0.4583333333333333],[120,188,79,-0.4583333333333333],[120,189,64,-0.4583333333333333],[120,189,65,-0.4583333333333333],[120,189,66,-0.4583333333333333],[120,189,67,-0.4583333333333333],[120,189,68,-0.4583333333333333],[120,189,69,-0.4583333333333333],[120,189,70,-0.4583333333333333],[120,189,71,-0.4583333333333333],[120,189,72,-0.4583333333333333],[120,189,73,-0.4583333333333333],[120,189,74,-0.4583333333333333],[120,189,75,-0.4583333333333333],[120,189,76,-0.4583333333333333],[120,189,77,-0.4583333333333333],[120,189,78,-0.4583333333333333],[120,189,79,-0.4583333333333333],[120,190,64,-0.4583333333333333],[120,190,65,-0.4583333333333333],[120,190,66,-0.4583333333333333],[120,190,67,-0.4583333333333333],[120,190,68,-0.4583333333333333],[120,190,69,-0.4583333333333333],[120,190,70,-0.4583333333333333],[120,190,71,-0.4583333333333333],[120,190,72,-0.4583333333333333],[120,190,73,-0.4583333333333333],[120,190,74,-0.4583333333333333],[120,190,75,-0.4583333333333333],[120,190,76,-0.4583333333333333],[120,190,77,-0.4583333333333333],[120,190,78,-0.4583333333333333],[120,190,79,-0.4583333333333333],[120,191,64,-0.4583333333333333],[120,191,65,-0.4583333333333333],[120,191,66,-0.4583333333333333],[120,191,67,-0.4583333333333333],[120,191,68,-0.4583333333333333],[120,191,69,-0.4583333333333333],[120,191,70,-0.4583333333333333],[120,191,71,-0.4583333333333333],[120,191,72,-0.4583333333333333],[120,191,73,-0.4583333333333333],[120,191,74,-0.4583333333333333],[120,191,75,-0.4583333333333333],[120,191,76,-0.4583333333333333],[120,191,77,-0.4583333333333333],[120,191,78,-0.4583333333333333],[120,191,79,-0.4583333333333333],[120,192,64,-0.4583333333333333],[120,192,65,-0.4583333333333333],[120,192,66,-0.4583333333333333],[120,192,67,-0.4583333333333333],[120,192,68,-0.4583333333333333],[120,192,69,-0.4583333333333333],[120,192,70,-0.4583333333333333],[120,192,71,-0.4583333333333333],[120,192,72,-0.4583333333333333],[120,192,73,-0.4583333333333333],[120,192,74,-0.4583333333333333],[120,192,75,-0.4583333333333333],[120,192,76,-0.4583333333333333],[120,192,77,-0.4583333333333333],[120,192,78,-0.4583333333333333],[120,192,79,-0.4583333333333333],[120,193,64,-0.4583333333333333],[120,193,65,-0.4583333333333333],[120,193,66,-0.4583333333333333],[120,193,67,-0.4583333333333333],[120,193,68,-0.4583333333333333],[120,193,69,-0.4583333333333333],[120,193,70,-0.4583333333333333],[120,193,71,-0.4583333333333333],[120,193,72,-0.4583333333333333],[120,193,73,-0.4583333333333333],[120,193,74,-0.4583333333333333],[120,193,75,-0.4583333333333333],[120,193,76,-0.4583333333333333],[120,193,77,-0.4583333333333333],[120,193,78,-0.4583333333333333],[120,193,79,-0.4583333333333333],[120,194,64,-0.4583333333333333],[120,194,65,-0.4583333333333333],[120,194,66,-0.4583333333333333],[120,194,67,-0.4583333333333333],[120,194,68,-0.4583333333333333],[120,194,69,-0.4583333333333333],[120,194,70,-0.4583333333333333],[120,194,71,-0.4583333333333333],[120,194,72,-0.4583333333333333],[120,194,73,-0.4583333333333333],[120,194,74,-0.4583333333333333],[120,194,75,-0.4583333333333333],[120,194,76,-0.4583333333333333],[120,194,77,-0.4583333333333333],[120,194,78,-0.4583333333333333],[120,194,79,-0.4583333333333333],[120,195,64,-0.4583333333333333],[120,195,65,-0.4583333333333333],[120,195,66,-0.4583333333333333],[120,195,67,-0.4583333333333333],[120,195,68,-0.4583333333333333],[120,195,69,-0.4583333333333333],[120,195,70,-0.4583333333333333],[120,195,71,-0.4583333333333333],[120,195,72,-0.4583333333333333],[120,195,73,-0.4583333333333333],[120,195,74,-0.4583333333333333],[120,195,75,-0.4583333333333333],[120,195,76,-0.4583333333333333],[120,195,77,-0.4583333333333333],[120,195,78,-0.4583333333333333],[120,195,79,-0.4583333333333333],[120,196,64,-0.4583333333333333],[120,196,65,-0.4583333333333333],[120,196,66,-0.4583333333333333],[120,196,67,-0.4583333333333333],[120,196,68,-0.4583333333333333],[120,196,69,-0.4583333333333333],[120,196,70,-0.4583333333333333],[120,196,71,-0.4583333333333333],[120,196,72,-0.4583333333333333],[120,196,73,-0.4583333333333333],[120,196,74,-0.4583333333333333],[120,196,75,-0.4583333333333333],[120,196,76,-0.4583333333333333],[120,196,77,-0.4583333333333333],[120,196,78,-0.4583333333333333],[120,196,79,-0.4583333333333333],[120,197,64,-0.4583333333333333],[120,197,65,-0.4583333333333333],[120,197,66,-0.4583333333333333],[120,197,67,-0.4583333333333333],[120,197,68,-0.4583333333333333],[120,197,69,-0.4583333333333333],[120,197,70,-0.4583333333333333],[120,197,71,-0.4583333333333333],[120,197,72,-0.4583333333333333],[120,197,73,-0.4583333333333333],[120,197,74,-0.4583333333333333],[120,197,75,-0.4583333333333333],[120,197,76,-0.4583333333333333],[120,197,77,-0.4583333333333333],[120,197,78,-0.4583333333333333],[120,197,79,-0.4583333333333333],[120,198,64,-0.4583333333333333],[120,198,65,-0.4583333333333333],[120,198,66,-0.4583333333333333],[120,198,67,-0.4583333333333333],[120,198,68,-0.4583333333333333],[120,198,69,-0.4583333333333333],[120,198,70,-0.4583333333333333],[120,198,71,-0.4583333333333333],[120,198,72,-0.4583333333333333],[120,198,73,-0.4583333333333333],[120,198,74,-0.4583333333333333],[120,198,75,-0.4583333333333333],[120,198,76,-0.4583333333333333],[120,198,77,-0.4583333333333333],[120,198,78,-0.4583333333333333],[120,198,79,-0.4583333333333333],[120,199,64,-0.4583333333333333],[120,199,65,-0.4583333333333333],[120,199,66,-0.4583333333333333],[120,199,67,-0.4583333333333333],[120,199,68,-0.4583333333333333],[120,199,69,-0.4583333333333333],[120,199,70,-0.4583333333333333],[120,199,71,-0.4583333333333333],[120,199,72,-0.4583333333333333],[120,199,73,-0.4583333333333333],[120,199,74,-0.4583333333333333],[120,199,75,-0.4583333333333333],[120,199,76,-0.4583333333333333],[120,199,77,-0.4583333333333333],[120,199,78,-0.4583333333333333],[120,199,79,-0.4583333333333333],[120,200,64,-0.4583333333333333],[120,200,65,-0.4583333333333333],[120,200,66,-0.4583333333333333],[120,200,67,-0.4583333333333333],[120,200,68,-0.4583333333333333],[120,200,69,-0.4583333333333333],[120,200,70,-0.4583333333333333],[120,200,71,-0.4583333333333333],[120,200,72,-0.4583333333333333],[120,200,73,-0.4583333333333333],[120,200,74,-0.4583333333333333],[120,200,75,-0.4583333333333333],[120,200,76,-0.4583333333333333],[120,200,77,-0.4583333333333333],[120,200,78,-0.4583333333333333],[120,200,79,-0.4583333333333333],[120,201,64,-0.4583333333333333],[120,201,65,-0.4583333333333333],[120,201,66,-0.4583333333333333],[120,201,67,-0.4583333333333333],[120,201,68,-0.4583333333333333],[120,201,69,-0.4583333333333333],[120,201,70,-0.4583333333333333],[120,201,71,-0.4583333333333333],[120,201,72,-0.4583333333333333],[120,201,73,-0.4583333333333333],[120,201,74,-0.4583333333333333],[120,201,75,-0.4583333333333333],[120,201,76,-0.4583333333333333],[120,201,77,-0.4583333333333333],[120,201,78,-0.4583333333333333],[120,201,79,-0.4583333333333333],[120,202,64,-0.4583333333333333],[120,202,65,-0.4583333333333333],[120,202,66,-0.4583333333333333],[120,202,67,-0.4583333333333333],[120,202,68,-0.4583333333333333],[120,202,69,-0.4583333333333333],[120,202,70,-0.4583333333333333],[120,202,71,-0.4583333333333333],[120,202,72,-0.4583333333333333],[120,202,73,-0.4583333333333333],[120,202,74,-0.4583333333333333],[120,202,75,-0.4583333333333333],[120,202,76,-0.4583333333333333],[120,202,77,-0.4583333333333333],[120,202,78,-0.4583333333333333],[120,202,79,-0.4583333333333333],[120,203,64,-0.4583333333333333],[120,203,65,-0.4583333333333333],[120,203,66,-0.4583333333333333],[120,203,67,-0.4583333333333333],[120,203,68,-0.4583333333333333],[120,203,69,-0.4583333333333333],[120,203,70,-0.4583333333333333],[120,203,71,-0.4583333333333333],[120,203,72,-0.4583333333333333],[120,203,73,-0.4583333333333333],[120,203,74,-0.4583333333333333],[120,203,75,-0.4583333333333333],[120,203,76,-0.4583333333333333],[120,203,77,-0.4583333333333333],[120,203,78,-0.4583333333333333],[120,203,79,-0.4583333333333333],[120,204,64,-0.4583333333333333],[120,204,65,-0.4583333333333333],[120,204,66,-0.4583333333333333],[120,204,67,-0.4583333333333333],[120,204,68,-0.4583333333333333],[120,204,69,-0.4583333333333333],[120,204,70,-0.4583333333333333],[120,204,71,-0.4583333333333333],[120,204,72,-0.4583333333333333],[120,204,73,-0.4583333333333333],[120,204,74,-0.4583333333333333],[120,204,75,-0.4583333333333333],[120,204,76,-0.4583333333333333],[120,204,77,-0.4583333333333333],[120,204,78,-0.4583333333333333],[120,204,79,-0.4583333333333333],[120,205,64,-0.4583333333333333],[120,205,65,-0.4583333333333333],[120,205,66,-0.4583333333333333],[120,205,67,-0.4583333333333333],[120,205,68,-0.4583333333333333],[120,205,69,-0.4583333333333333],[120,205,70,-0.4583333333333333],[120,205,71,-0.4583333333333333],[120,205,72,-0.4583333333333333],[120,205,73,-0.4583333333333333],[120,205,74,-0.4583333333333333],[120,205,75,-0.4583333333333333],[120,205,76,-0.4583333333333333],[120,205,77,-0.4583333333333333],[120,205,78,-0.4583333333333333],[120,205,79,-0.4583333333333333],[120,206,64,-0.4583333333333333],[120,206,65,-0.4583333333333333],[120,206,66,-0.4583333333333333],[120,206,67,-0.4583333333333333],[120,206,68,-0.4583333333333333],[120,206,69,-0.4583333333333333],[120,206,70,-0.4583333333333333],[120,206,71,-0.4583333333333333],[120,206,72,-0.4583333333333333],[120,206,73,-0.4583333333333333],[120,206,74,-0.4583333333333333],[120,206,75,-0.4583333333333333],[120,206,76,-0.4583333333333333],[120,206,77,-0.4583333333333333],[120,206,78,-0.4583333333333333],[120,206,79,-0.4583333333333333],[120,207,64,-0.4583333333333333],[120,207,65,-0.4583333333333333],[120,207,66,-0.4583333333333333],[120,207,67,-0.4583333333333333],[120,207,68,-0.4583333333333333],[120,207,69,-0.4583333333333333],[120,207,70,-0.4583333333333333],[120,207,71,-0.4583333333333333],[120,207,72,-0.4583333333333333],[120,207,73,-0.4583333333333333],[120,207,74,-0.4583333333333333],[120,207,75,-0.4583333333333333],[120,207,76,-0.4583333333333333],[120,207,77,-0.4583333333333333],[120,207,78,-0.4583333333333333],[120,207,79,-0.4583333333333333],[120,208,64,-0.4583333333333333],[120,208,65,-0.4583333333333333],[120,208,66,-0.4583333333333333],[120,208,67,-0.4583333333333333],[120,208,68,-0.4583333333333333],[120,208,69,-0.4583333333333333],[120,208,70,-0.4583333333333333],[120,208,71,-0.4583333333333333],[120,208,72,-0.4583333333333333],[120,208,73,-0.4583333333333333],[120,208,74,-0.4583333333333333],[120,208,75,-0.4583333333333333],[120,208,76,-0.4583333333333333],[120,208,77,-0.4583333333333333],[120,208,78,-0.4583333333333333],[120,208,79,-0.4583333333333333],[120,209,64,-0.4583333333333333],[120,209,65,-0.4583333333333333],[120,209,66,-0.4583333333333333],[120,209,67,-0.4583333333333333],[120,209,68,-0.4583333333333333],[120,209,69,-0.4583333333333333],[120,209,70,-0.4583333333333333],[120,209,71,-0.4583333333333333],[120,209,72,-0.4583333333333333],[120,209,73,-0.4583333333333333],[120,209,74,-0.4583333333333333],[120,209,75,-0.4583333333333333],[120,209,76,-0.4583333333333333],[120,209,77,-0.4583333333333333],[120,209,78,-0.4583333333333333],[120,209,79,-0.4583333333333333],[120,210,64,-0.4583333333333333],[120,210,65,-0.4583333333333333],[120,210,66,-0.4583333333333333],[120,210,67,-0.4583333333333333],[120,210,68,-0.4583333333333333],[120,210,69,-0.4583333333333333],[120,210,70,-0.4583333333333333],[120,210,71,-0.4583333333333333],[120,210,72,-0.4583333333333333],[120,210,73,-0.4583333333333333],[120,210,74,-0.4583333333333333],[120,210,75,-0.4583333333333333],[120,210,76,-0.4583333333333333],[120,210,77,-0.4583333333333333],[120,210,78,-0.4583333333333333],[120,210,79,-0.4583333333333333],[120,211,64,-0.4583333333333333],[120,211,65,-0.4583333333333333],[120,211,66,-0.4583333333333333],[120,211,67,-0.4583333333333333],[120,211,68,-0.4583333333333333],[120,211,69,-0.4583333333333333],[120,211,70,-0.4583333333333333],[120,211,71,-0.4583333333333333],[120,211,72,-0.4583333333333333],[120,211,73,-0.4583333333333333],[120,211,74,-0.4583333333333333],[120,211,75,-0.4583333333333333],[120,211,76,-0.4583333333333333],[120,211,77,-0.4583333333333333],[120,211,78,-0.4583333333333333],[120,211,79,-0.4583333333333333],[120,212,64,-0.4583333333333333],[120,212,65,-0.4583333333333333],[120,212,66,-0.4583333333333333],[120,212,67,-0.4583333333333333],[120,212,68,-0.4583333333333333],[120,212,69,-0.4583333333333333],[120,212,70,-0.4583333333333333],[120,212,71,-0.4583333333333333],[120,212,72,-0.4583333333333333],[120,212,73,-0.4583333333333333],[120,212,74,-0.4583333333333333],[120,212,75,-0.4583333333333333],[120,212,76,-0.4583333333333333],[120,212,77,-0.4583333333333333],[120,212,78,-0.4583333333333333],[120,212,79,-0.4583333333333333],[120,213,64,-0.4583333333333333],[120,213,65,-0.4583333333333333],[120,213,66,-0.4583333333333333],[120,213,67,-0.4583333333333333],[120,213,68,-0.4583333333333333],[120,213,69,-0.4583333333333333],[120,213,70,-0.4583333333333333],[120,213,71,-0.4583333333333333],[120,213,72,-0.4583333333333333],[120,213,73,-0.4583333333333333],[120,213,74,-0.4583333333333333],[120,213,75,-0.4583333333333333],[120,213,76,-0.4583333333333333],[120,213,77,-0.4583333333333333],[120,213,78,-0.4583333333333333],[120,213,79,-0.4583333333333333],[120,214,64,-0.4583333333333333],[120,214,65,-0.4583333333333333],[120,214,66,-0.4583333333333333],[120,214,67,-0.4583333333333333],[120,214,68,-0.4583333333333333],[120,214,69,-0.4583333333333333],[120,214,70,-0.4583333333333333],[120,214,71,-0.4583333333333333],[120,214,72,-0.4583333333333333],[120,214,73,-0.4583333333333333],[120,214,74,-0.4583333333333333],[120,214,75,-0.4583333333333333],[120,214,76,-0.4583333333333333],[120,214,77,-0.4583333333333333],[120,214,78,-0.4583333333333333],[120,214,79,-0.4583333333333333],[120,215,64,-0.4583333333333333],[120,215,65,-0.4583333333333333],[120,215,66,-0.4583333333333333],[120,215,67,-0.4583333333333333],[120,215,68,-0.4583333333333333],[120,215,69,-0.4583333333333333],[120,215,70,-0.4583333333333333],[120,215,71,-0.4583333333333333],[120,215,72,-0.4583333333333333],[120,215,73,-0.4583333333333333],[120,215,74,-0.4583333333333333],[120,215,75,-0.4583333333333333],[120,215,76,-0.4583333333333333],[120,215,77,-0.4583333333333333],[120,215,78,-0.4583333333333333],[120,215,79,-0.4583333333333333],[120,216,64,-0.4583333333333333],[120,216,65,-0.4583333333333333],[120,216,66,-0.4583333333333333],[120,216,67,-0.4583333333333333],[120,216,68,-0.4583333333333333],[120,216,69,-0.4583333333333333],[120,216,70,-0.4583333333333333],[120,216,71,-0.4583333333333333],[120,216,72,-0.4583333333333333],[120,216,73,-0.4583333333333333],[120,216,74,-0.4583333333333333],[120,216,75,-0.4583333333333333],[120,216,76,-0.4583333333333333],[120,216,77,-0.4583333333333333],[120,216,78,-0.4583333333333333],[120,216,79,-0.4583333333333333],[120,217,64,-0.4583333333333333],[120,217,65,-0.4583333333333333],[120,217,66,-0.4583333333333333],[120,217,67,-0.4583333333333333],[120,217,68,-0.4583333333333333],[120,217,69,-0.4583333333333333],[120,217,70,-0.4583333333333333],[120,217,71,-0.4583333333333333],[120,217,72,-0.4583333333333333],[120,217,73,-0.4583333333333333],[120,217,74,-0.4583333333333333],[120,217,75,-0.4583333333333333],[120,217,76,-0.4583333333333333],[120,217,77,-0.4583333333333333],[120,217,78,-0.4583333333333333],[120,217,79,-0.4583333333333333],[120,218,64,-0.4583333333333333],[120,218,65,-0.4583333333333333],[120,218,66,-0.4583333333333333],[120,218,67,-0.4583333333333333],[120,218,68,-0.4583333333333333],[120,218,69,-0.4583333333333333],[120,218,70,-0.4583333333333333],[120,218,71,-0.4583333333333333],[120,218,72,-0.4583333333333333],[120,218,73,-0.4583333333333333],[120,218,74,-0.4583333333333333],[120,218,75,-0.4583333333333333],[120,218,76,-0.4583333333333333],[120,218,77,-0.4583333333333333],[120,218,78,-0.4583333333333333],[120,218,79,-0.4583333333333333],[120,219,64,-0.4583333333333333],[120,219,65,-0.4583333333333333],[120,219,66,-0.4583333333333333],[120,219,67,-0.4583333333333333],[120,219,68,-0.4583333333333333],[120,219,69,-0.4583333333333333],[120,219,70,-0.4583333333333333],[120,219,71,-0.4583333333333333],[120,219,72,-0.4583333333333333],[120,219,73,-0.4583333333333333],[120,219,74,-0.4583333333333333],[120,219,75,-0.4583333333333333],[120,219,76,-0.4583333333333333],[120,219,77,-0.4583333333333333],[120,219,78,-0.4583333333333333],[120,219,79,-0.4583333333333333],[120,220,64,-0.4583333333333333],[120,220,65,-0.4583333333333333],[120,220,66,-0.4583333333333333],[120,220,67,-0.4583333333333333],[120,220,68,-0.4583333333333333],[120,220,69,-0.4583333333333333],[120,220,70,-0.4583333333333333],[120,220,71,-0.4583333333333333],[120,220,72,-0.4583333333333333],[120,220,73,-0.4583333333333333],[120,220,74,-0.4583333333333333],[120,220,75,-0.4583333333333333],[120,220,76,-0.4583333333333333],[120,220,77,-0.4583333333333333],[120,220,78,-0.4583333333333333],[120,220,79,-0.4583333333333333],[120,221,64,-0.4583333333333333],[120,221,65,-0.4583333333333333],[120,221,66,-0.4583333333333333],[120,221,67,-0.4583333333333333],[120,221,68,-0.4583333333333333],[120,221,69,-0.4583333333333333],[120,221,70,-0.4583333333333333],[120,221,71,-0.4583333333333333],[120,221,72,-0.4583333333333333],[120,221,73,-0.4583333333333333],[120,221,74,-0.4583333333333333],[120,221,75,-0.4583333333333333],[120,221,76,-0.4583333333333333],[120,221,77,-0.4583333333333333],[120,221,78,-0.4583333333333333],[120,221,79,-0.4583333333333333],[120,222,64,-0.4583333333333333],[120,222,65,-0.4583333333333333],[120,222,66,-0.4583333333333333],[120,222,67,-0.4583333333333333],[120,222,68,-0.4583333333333333],[120,222,69,-0.4583333333333333],[120,222,70,-0.4583333333333333],[120,222,71,-0.4583333333333333],[120,222,72,-0.4583333333333333],[120,222,73,-0.4583333333333333],[120,222,74,-0.4583333333333333],[120,222,75,-0.4583333333333333],[120,222,76,-0.4583333333333333],[120,222,77,-0.4583333333333333],[120,222,78,-0.4583333333333333],[120,222,79,-0.4583333333333333],[120,223,64,-0.4583333333333333],[120,223,65,-0.4583333333333333],[120,223,66,-0.4583333333333333],[120,223,67,-0.4583333333333333],[120,223,68,-0.4583333333333333],[120,223,69,-0.4583333333333333],[120,223,70,-0.4583333333333333],[120,223,71,-0.4583333333333333],[120,223,72,-0.4583333333333333],[120,223,73,-0.4583333333333333],[120,223,74,-0.4583333333333333],[120,223,75,-0.4583333333333333],[120,223,76,-0.4583333333333333],[120,223,77,-0.4583333333333333],[120,223,78,-0.4583333333333333],[120,223,79,-0.4583333333333333],[120,224,64,-0.4583333333333333],[120,224,65,-0.4583333333333333],[120,224,66,-0.4583333333333333],[120,224,67,-0.4583333333333333],[120,224,68,-0.4583333333333333],[120,224,69,-0.4583333333333333],[120,224,70,-0.4583333333333333],[120,224,71,-0.4583333333333333],[120,224,72,-0.4583333333333333],[120,224,73,-0.4583333333333333],[120,224,74,-0.4583333333333333],[120,224,75,-0.4583333333333333],[120,224,76,-0.4583333333333333],[120,224,77,-0.4583333333333333],[120,224,78,-0.4583333333333333],[120,224,79,-0.4583333333333333],[120,225,64,-0.4583333333333333],[120,225,65,-0.4583333333333333],[120,225,66,-0.4583333333333333],[120,225,67,-0.4583333333333333],[120,225,68,-0.4583333333333333],[120,225,69,-0.4583333333333333],[120,225,70,-0.4583333333333333],[120,225,71,-0.4583333333333333],[120,225,72,-0.4583333333333333],[120,225,73,-0.4583333333333333],[120,225,74,-0.4583333333333333],[120,225,75,-0.4583333333333333],[120,225,76,-0.4583333333333333],[120,225,77,-0.4583333333333333],[120,225,78,-0.4583333333333333],[120,225,79,-0.4583333333333333],[120,226,64,-0.4583333333333333],[120,226,65,-0.4583333333333333],[120,226,66,-0.4583333333333333],[120,226,67,-0.4583333333333333],[120,226,68,-0.4583333333333333],[120,226,69,-0.4583333333333333],[120,226,70,-0.4583333333333333],[120,226,71,-0.4583333333333333],[120,226,72,-0.4583333333333333],[120,226,73,-0.4583333333333333],[120,226,74,-0.4583333333333333],[120,226,75,-0.4583333333333333],[120,226,76,-0.4583333333333333],[120,226,77,-0.4583333333333333],[120,226,78,-0.4583333333333333],[120,226,79,-0.4583333333333333],[120,227,64,-0.4583333333333333],[120,227,65,-0.4583333333333333],[120,227,66,-0.4583333333333333],[120,227,67,-0.4583333333333333],[120,227,68,-0.4583333333333333],[120,227,69,-0.4583333333333333],[120,227,70,-0.4583333333333333],[120,227,71,-0.4583333333333333],[120,227,72,-0.4583333333333333],[120,227,73,-0.4583333333333333],[120,227,74,-0.4583333333333333],[120,227,75,-0.4583333333333333],[120,227,76,-0.4583333333333333],[120,227,77,-0.4583333333333333],[120,227,78,-0.4583333333333333],[120,227,79,-0.4583333333333333],[120,228,64,-0.4583333333333333],[120,228,65,-0.4583333333333333],[120,228,66,-0.4583333333333333],[120,228,67,-0.4583333333333333],[120,228,68,-0.4583333333333333],[120,228,69,-0.4583333333333333],[120,228,70,-0.4583333333333333],[120,228,71,-0.4583333333333333],[120,228,72,-0.4583333333333333],[120,228,73,-0.4583333333333333],[120,228,74,-0.4583333333333333],[120,228,75,-0.4583333333333333],[120,228,76,-0.4583333333333333],[120,228,77,-0.4583333333333333],[120,228,78,-0.4583333333333333],[120,228,79,-0.4583333333333333],[120,229,64,-0.4583333333333333],[120,229,65,-0.4583333333333333],[120,229,66,-0.4583333333333333],[120,229,67,-0.4583333333333333],[120,229,68,-0.4583333333333333],[120,229,69,-0.4583333333333333],[120,229,70,-0.4583333333333333],[120,229,71,-0.4583333333333333],[120,229,72,-0.4583333333333333],[120,229,73,-0.4583333333333333],[120,229,74,-0.4583333333333333],[120,229,75,-0.4583333333333333],[120,229,76,-0.4583333333333333],[120,229,77,-0.4583333333333333],[120,229,78,-0.4583333333333333],[120,229,79,-0.4583333333333333],[120,230,64,-0.4583333333333333],[120,230,65,-0.4583333333333333],[120,230,66,-0.4583333333333333],[120,230,67,-0.4583333333333333],[120,230,68,-0.4583333333333333],[120,230,69,-0.4583333333333333],[120,230,70,-0.4583333333333333],[120,230,71,-0.4583333333333333],[120,230,72,-0.4583333333333333],[120,230,73,-0.4583333333333333],[120,230,74,-0.4583333333333333],[120,230,75,-0.4583333333333333],[120,230,76,-0.4583333333333333],[120,230,77,-0.4583333333333333],[120,230,78,-0.4583333333333333],[120,230,79,-0.4583333333333333],[120,231,64,-0.4583333333333333],[120,231,65,-0.4583333333333333],[120,231,66,-0.4583333333333333],[120,231,67,-0.4583333333333333],[120,231,68,-0.4583333333333333],[120,231,69,-0.4583333333333333],[120,231,70,-0.4583333333333333],[120,231,71,-0.4583333333333333],[120,231,72,-0.4583333333333333],[120,231,73,-0.4583333333333333],[120,231,74,-0.4583333333333333],[120,231,75,-0.4583333333333333],[120,231,76,-0.4583333333333333],[120,231,77,-0.4583333333333333],[120,231,78,-0.4583333333333333],[120,231,79,-0.4583333333333333],[120,232,64,-0.4583333333333333],[120,232,65,-0.4583333333333333],[120,232,66,-0.4583333333333333],[120,232,67,-0.4583333333333333],[120,232,68,-0.4583333333333333],[120,232,69,-0.4583333333333333],[120,232,70,-0.4583333333333333],[120,232,71,-0.4583333333333333],[120,232,72,-0.4583333333333333],[120,232,73,-0.4583333333333333],[120,232,74,-0.4583333333333333],[120,232,75,-0.4583333333333333],[120,232,76,-0.4583333333333333],[120,232,77,-0.4583333333333333],[120,232,78,-0.4583333333333333],[120,232,79,-0.4583333333333333],[120,233,64,-0.4583333333333333],[120,233,65,-0.4583333333333333],[120,233,66,-0.4583333333333333],[120,233,67,-0.4583333333333333],[120,233,68,-0.4583333333333333],[120,233,69,-0.4583333333333333],[120,233,70,-0.4583333333333333],[120,233,71,-0.4583333333333333],[120,233,72,-0.4583333333333333],[120,233,73,-0.4583333333333333],[120,233,74,-0.4583333333333333],[120,233,75,-0.4583333333333333],[120,233,76,-0.4583333333333333],[120,233,77,-0.4583333333333333],[120,233,78,-0.4583333333333333],[120,233,79,-0.4583333333333333],[120,234,64,-0.4583333333333333],[120,234,65,-0.4583333333333333],[120,234,66,-0.4583333333333333],[120,234,67,-0.4583333333333333],[120,234,68,-0.4583333333333333],[120,234,69,-0.4583333333333333],[120,234,70,-0.4583333333333333],[120,234,71,-0.4583333333333333],[120,234,72,-0.4583333333333333],[120,234,73,-0.4583333333333333],[120,234,74,-0.4583333333333333],[120,234,75,-0.4583333333333333],[120,234,76,-0.4583333333333333],[120,234,77,-0.4583333333333333],[120,234,78,-0.4583333333333333],[120,234,79,-0.4583333333333333],[120,235,64,-0.4583333333333333],[120,235,65,-0.4583333333333333],[120,235,66,-0.4583333333333333],[120,235,67,-0.4583333333333333],[120,235,68,-0.4583333333333333],[120,235,69,-0.4583333333333333],[120,235,70,-0.4583333333333333],[120,235,71,-0.4583333333333333],[120,235,72,-0.4583333333333333],[120,235,73,-0.4583333333333333],[120,235,74,-0.4583333333333333],[120,235,75,-0.4583333333333333],[120,235,76,-0.4583333333333333],[120,235,77,-0.4583333333333333],[120,235,78,-0.4583333333333333],[120,235,79,-0.4583333333333333],[120,236,64,-0.4583333333333333],[120,236,65,-0.4583333333333333],[120,236,66,-0.4583333333333333],[120,236,67,-0.4583333333333333],[120,236,68,-0.4583333333333333],[120,236,69,-0.4583333333333333],[120,236,70,-0.4583333333333333],[120,236,71,-0.4583333333333333],[120,236,72,-0.4583333333333333],[120,236,73,-0.4583333333333333],[120,236,74,-0.4583333333333333],[120,236,75,-0.4583333333333333],[120,236,76,-0.4583333333333333],[120,236,77,-0.4583333333333333],[120,236,78,-0.4583333333333333],[120,236,79,-0.4583333333333333],[120,237,64,-0.4583333333333333],[120,237,65,-0.4583333333333333],[120,237,66,-0.4583333333333333],[120,237,67,-0.4583333333333333],[120,237,68,-0.4583333333333333],[120,237,69,-0.4583333333333333],[120,237,70,-0.4583333333333333],[120,237,71,-0.4583333333333333],[120,237,72,-0.4583333333333333],[120,237,73,-0.4583333333333333],[120,237,74,-0.4583333333333333],[120,237,75,-0.4583333333333333],[120,237,76,-0.4583333333333333],[120,237,77,-0.4583333333333333],[120,237,78,-0.4583333333333333],[120,237,79,-0.4583333333333333],[120,238,64,-0.4583333333333333],[120,238,65,-0.4583333333333333],[120,238,66,-0.4583333333333333],[120,238,67,-0.4583333333333333],[120,238,68,-0.4583333333333333],[120,238,69,-0.4583333333333333],[120,238,70,-0.4583333333333333],[120,238,71,-0.4583333333333333],[120,238,72,-0.4583333333333333],[120,238,73,-0.4583333333333333],[120,238,74,-0.4583333333333333],[120,238,75,-0.4583333333333333],[120,238,76,-0.4583333333333333],[120,238,77,-0.4583333333333333],[120,238,78,-0.4583333333333333],[120,238,79,-0.4583333333333333],[120,239,64,-0.4583333333333333],[120,239,65,-0.4583333333333333],[120,239,66,-0.4583333333333333],[120,239,67,-0.4583333333333333],[120,239,68,-0.4583333333333333],[120,239,69,-0.4583333333333333],[120,239,70,-0.4583333333333333],[120,239,71,-0.4583333333333333],[120,239,72,-0.4583333333333333],[120,239,73,-0.4583333333333333],[120,239,74,-0.4583333333333333],[120,239,75,-0.4583333333333333],[120,239,76,-0.4583333333333333],[120,239,77,-0.4583333333333333],[120,239,78,-0.4583333333333333],[120,239,79,-0.4583333333333333],[120,240,64,-0.4583333333333333],[120,240,65,-0.4583333333333333],[120,240,66,-0.4583333333333333],[120,240,67,-0.4583333333333333],[120,240,68,-0.4583333333333333],[120,240,69,-0.4583333333333333],[120,240,70,-0.4583333333333333],[120,240,71,-0.4583333333333333],[120,240,72,-0.4583333333333333],[120,240,73,-0.4583333333333333],[120,240,74,-0.4583333333333333],[120,240,75,-0.4583333333333333],[120,240,76,-0.4583333333333333],[120,240,77,-0.4583333333333333],[120,240,78,-0.4583333333333333],[120,240,79,-0.4583333333333333],[120,241,64,-0.4583333333333333],[120,241,65,-0.4583333333333333],[120,241,66,-0.4583333333333333],[120,241,67,-0.4583333333333333],[120,241,68,-0.4583333333333333],[120,241,69,-0.4583333333333333],[120,241,70,-0.4583333333333333],[120,241,71,-0.4583333333333333],[120,241,72,-0.4583333333333333],[120,241,73,-0.4583333333333333],[120,241,74,-0.4583333333333333],[120,241,75,-0.4583333333333333],[120,241,76,-0.4583333333333333],[120,241,77,-0.4583333333333333],[120,241,78,-0.4583333333333333],[120,241,79,-0.4583333333333333],[120,242,64,-0.4583333333333333],[120,242,65,-0.4583333333333333],[120,242,66,-0.4583333333333333],[120,242,67,-0.4583333333333333],[120,242,68,-0.4583333333333333],[120,242,69,-0.4583333333333333],[120,242,70,-0.4583333333333333],[120,242,71,-0.4583333333333333],[120,242,72,-0.4583333333333333],[120,242,73,-0.4583333333333333],[120,242,74,-0.4583333333333333],[120,242,75,-0.4583333333333333],[120,242,76,-0.4583333333333333],[120,242,77,-0.4583333333333333],[120,242,78,-0.4583333333333333],[120,242,79,-0.4583333333333333],[120,243,64,-0.4583333333333333],[120,243,65,-0.4583333333333333],[120,243,66,-0.4583333333333333],[120,243,67,-0.4583333333333333],[120,243,68,-0.4583333333333333],[120,243,69,-0.4583333333333333],[120,243,70,-0.4583333333333333],[120,243,71,-0.4583333333333333],[120,243,72,-0.4583333333333333],[120,243,73,-0.4583333333333333],[120,243,74,-0.4583333333333333],[120,243,75,-0.4583333333333333],[120,243,76,-0.4583333333333333],[120,243,77,-0.4583333333333333],[120,243,78,-0.4583333333333333],[120,243,79,-0.4583333333333333],[120,244,64,-0.4583333333333333],[120,244,65,-0.4583333333333333],[120,244,66,-0.4583333333333333],[120,244,67,-0.4583333333333333],[120,244,68,-0.4583333333333333],[120,244,69,-0.4583333333333333],[120,244,70,-0.4583333333333333],[120,244,71,-0.4583333333333333],[120,244,72,-0.4583333333333333],[120,244,73,-0.4583333333333333],[120,244,74,-0.4583333333333333],[120,244,75,-0.4583333333333333],[120,244,76,-0.4583333333333333],[120,244,77,-0.4583333333333333],[120,244,78,-0.4583333333333333],[120,244,79,-0.4583333333333333],[120,245,64,-0.4583333333333333],[120,245,65,-0.4583333333333333],[120,245,66,-0.4583333333333333],[120,245,67,-0.4583333333333333],[120,245,68,-0.4583333333333333],[120,245,69,-0.4583333333333333],[120,245,70,-0.4583333333333333],[120,245,71,-0.4583333333333333],[120,245,72,-0.4583333333333333],[120,245,73,-0.4583333333333333],[120,245,74,-0.4583333333333333],[120,245,75,-0.4583333333333333],[120,245,76,-0.4583333333333333],[120,245,77,-0.4583333333333333],[120,245,78,-0.4583333333333333],[120,245,79,-0.4583333333333333],[120,246,64,-0.4583333333333333],[120,246,65,-0.4583333333333333],[120,246,66,-0.4583333333333333],[120,246,67,-0.4583333333333333],[120,246,68,-0.4583333333333333],[120,246,69,-0.4583333333333333],[120,246,70,-0.4583333333333333],[120,246,71,-0.4583333333333333],[120,246,72,-0.4583333333333333],[120,246,73,-0.4583333333333333],[120,246,74,-0.4583333333333333],[120,246,75,-0.4583333333333333],[120,246,76,-0.4583333333333333],[120,246,77,-0.4583333333333333],[120,246,78,-0.4583333333333333],[120,246,79,-0.4583333333333333],[120,247,64,-0.4583333333333333],[120,247,65,-0.4583333333333333],[120,247,66,-0.4583333333333333],[120,247,67,-0.4583333333333333],[120,247,68,-0.4583333333333333],[120,247,69,-0.4583333333333333],[120,247,70,-0.4583333333333333],[120,247,71,-0.4583333333333333],[120,247,72,-0.4583333333333333],[120,247,73,-0.4583333333333333],[120,247,74,-0.4583333333333333],[120,247,75,-0.4583333333333333],[120,247,76,-0.4583333333333333],[120,247,77,-0.4583333333333333],[120,247,78,-0.4583333333333333],[120,247,79,-0.4583333333333333],[120,248,64,-0.4583333333333333],[120,248,65,-0.4583333333333333],[120,248,66,-0.4583333333333333],[120,248,67,-0.4583333333333333],[120,248,68,-0.4583333333333333],[120,248,69,-0.4583333333333333],[120,248,70,-0.4583333333333333],[120,248,71,-0.4583333333333333],[120,248,72,-0.4583333333333333],[120,248,73,-0.4583333333333333],[120,248,74,-0.4583333333333333],[120,248,75,-0.4583333333333333],[120,248,76,-0.4583333333333333],[120,248,77,-0.4583333333333333],[120,248,78,-0.4583333333333333],[120,248,79,-0.4583333333333333],[120,249,64,-0.4583333333333333],[120,249,65,-0.4583333333333333],[120,249,66,-0.4583333333333333],[120,249,67,-0.4583333333333333],[120,249,68,-0.4583333333333333],[120,249,69,-0.4583333333333333],[120,249,70,-0.4583333333333333],[120,249,71,-0.4583333333333333],[120,249,72,-0.4583333333333333],[120,249,73,-0.4583333333333333],[120,249,74,-0.4583333333333333],[120,249,75,-0.4583333333333333],[120,249,76,-0.4583333333333333],[120,249,77,-0.4583333333333333],[120,249,78,-0.4583333333333333],[120,249,79,-0.4583333333333333],[120,250,64,-0.4583333333333333],[120,250,65,-0.4583333333333333],[120,250,66,-0.4583333333333333],[120,250,67,-0.4583333333333333],[120,250,68,-0.4583333333333333],[120,250,69,-0.4583333333333333],[120,250,70,-0.4583333333333333],[120,250,71,-0.4583333333333333],[120,250,72,-0.4583333333333333],[120,250,73,-0.4583333333333333],[120,250,74,-0.4583333333333333],[120,250,75,-0.4583333333333333],[120,250,76,-0.4583333333333333],[120,250,77,-0.4583333333333333],[120,250,78,-0.4583333333333333],[120,250,79,-0.4583333333333333],[120,251,64,-0.4583333333333333],[120,251,65,-0.4583333333333333],[120,251,66,-0.4583333333333333],[120,251,67,-0.4583333333333333],[120,251,68,-0.4583333333333333],[120,251,69,-0.4583333333333333],[120,251,70,-0.4583333333333333],[120,251,71,-0.4583333333333333],[120,251,72,-0.4583333333333333],[120,251,73,-0.4583333333333333],[120,251,74,-0.4583333333333333],[120,251,75,-0.4583333333333333],[120,251,76,-0.4583333333333333],[120,251,77,-0.4583333333333333],[120,251,78,-0.4583333333333333],[120,251,79,-0.4583333333333333],[120,252,64,-0.4583333333333333],[120,252,65,-0.4583333333333333],[120,252,66,-0.4583333333333333],[120,252,67,-0.4583333333333333],[120,252,68,-0.4583333333333333],[120,252,69,-0.4583333333333333],[120,252,70,-0.4583333333333333],[120,252,71,-0.4583333333333333],[120,252,72,-0.4583333333333333],[120,252,73,-0.4583333333333333],[120,252,74,-0.4583333333333333],[120,252,75,-0.4583333333333333],[120,252,76,-0.4583333333333333],[120,252,77,-0.4583333333333333],[120,252,78,-0.4583333333333333],[120,252,79,-0.4583333333333333],[120,253,64,-0.4583333333333333],[120,253,65,-0.4583333333333333],[120,253,66,-0.4583333333333333],[120,253,67,-0.4583333333333333],[120,253,68,-0.4583333333333333],[120,253,69,-0.4583333333333333],[120,253,70,-0.4583333333333333],[120,253,71,-0.4583333333333333],[120,253,72,-0.4583333333333333],[120,253,73,-0.4583333333333333],[120,253,74,-0.4583333333333333],[120,253,75,-0.4583333333333333],[120,253,76,-0.4583333333333333],[120,253,77,-0.4583333333333333],[120,253,78,-0.4583333333333333],[120,253,79,-0.4583333333333333],[120,254,64,-0.3759068932914372],[120,254,65,-0.3758340319520953],[120,254,66,-0.3753172480144942],[120,254,67,-0.3745172462280047],[120,254,68,-0.37413102195318376],[120,254,69,-0.37414690459087807],[120,254,70,-0.3747833275502948],[120,254,71,-0.37599316266374827],[120,254,72,-0.37802705695417765],[120,254,73,-0.3801197734654441],[120,254,74,-0.38116489638110035],[120,254,75,-0.3815131020567306],[120,254,76,-0.38182332001380576],[120,254,77,-0.3823383495741548],[120,254,78,-0.3818258824431081],[120,254,79,-0.38043391122685777],[120,255,64,-0.2085942020862163],[120,255,65,-0.20858295553949566],[120,255,66,-0.20830606802980284],[120,255,67,-0.2078754633919808],[120,255,68,-0.20762055349514136],[120,255,69,-0.20763344824745247],[120,255,70,-0.20800642558295515],[120,255,71,-0.2086894446984535],[120,255,72,-0.20983253801940652],[120,255,73,-0.2110190217139169],[120,255,74,-0.21162151369656687],[120,255,75,-0.21180808069984866],[120,255,76,-0.21178726894964706],[120,255,77,-0.212139893044858],[120,255,78,-0.21179461872643404],[120,255,79,-0.21102045279942813],[120,256,64,-0.02499479166666667],[120,256,65,-0.02499479166666667],[120,256,66,-0.02499479166666667],[120,256,67,-0.02499479166666667],[120,256,68,-0.02499479166666667],[120,256,69,-0.02499479166666667],[120,256,70,-0.02499479166666667],[120,256,71,-0.02499479166666667],[120,256,72,-0.02499479166666667],[120,256,73,-0.02499479166666667],[120,256,74,-0.02499479166666667],[120,256,75,-0.02499479166666667],[120,256,76,-0.02499479166666667],[120,256,77,-0.02499479166666667],[120,256,78,-0.02499479166666667],[120,256,79,-0.02499479166666667],[120,257,64,-0.02499479166666667],[120,257,65,-0.02499479166666667],[120,257,66,-0.02499479166666667],[120,257,67,-0.02499479166666667],[120,257,68,-0.02499479166666667],[120,257,69,-0.02499479166666667],[120,257,70,-0.02499479166666667],[120,257,71,-0.02499479166666667],[120,257,72,-0.02499479166666667],[120,257,73,-0.02499479166666667],[120,257,74,-0.02499479166666667],[120,257,75,-0.02499479166666667],[120,257,76,-0.02499479166666667],[120,257,77,-0.02499479166666667],[120,257,78,-0.02499479166666667],[120,257,79,-0.02499479166666667],[120,258,64,-0.02499479166666667],[120,258,65,-0.02499479166666667],[120,258,66,-0.02499479166666667],[120,258,67,-0.02499479166666667],[120,258,68,-0.02499479166666667],[120,258,69,-0.02499479166666667],[120,258,70,-0.02499479166666667],[120,258,71,-0.02499479166666667],[120,258,72,-0.02499479166666667],[120,258,73,-0.02499479166666667],[120,258,74,-0.02499479166666667],[120,258,75,-0.02499479166666667],[120,258,76,-0.02499479166666667],[120,258,77,-0.02499479166666667],[120,258,78,-0.02499479166666667],[120,258,79,-0.02499479166666667],[120,259,64,-0.02499479166666667],[120,259,65,-0.02499479166666667],[120,259,66,-0.02499479166666667],[120,259,67,-0.02499479166666667],[120,259,68,-0.02499479166666667],[120,259,69,-0.02499479166666667],[120,259,70,-0.02499479166666667],[120,259,71,-0.02499479166666667],[120,259,72,-0.02499479166666667],[120,259,73,-0.02499479166666667],[120,259,74,-0.02499479166666667],[120,259,75,-0.02499479166666667],[120,259,76,-0.02499479166666667],[120,259,77,-0.02499479166666667],[120,259,78,-0.02499479166666667],[120,259,79,-0.02499479166666667],[120,260,64,-0.02499479166666667],[120,260,65,-0.02499479166666667],[120,260,66,-0.02499479166666667],[120,260,67,-0.02499479166666667],[120,260,68,-0.02499479166666667],[120,260,69,-0.02499479166666667],[120,260,70,-0.02499479166666667],[120,260,71,-0.02499479166666667],[120,260,72,-0.02499479166666667],[120,260,73,-0.02499479166666667],[120,260,74,-0.02499479166666667],[120,260,75,-0.02499479166666667],[120,260,76,-0.02499479166666667],[120,260,77,-0.02499479166666667],[120,260,78,-0.02499479166666667],[120,260,79,-0.02499479166666667],[120,261,64,-0.02499479166666667],[120,261,65,-0.02499479166666667],[120,261,66,-0.02499479166666667],[120,261,67,-0.02499479166666667],[120,261,68,-0.02499479166666667],[120,261,69,-0.02499479166666667],[120,261,70,-0.02499479166666667],[120,261,71,-0.02499479166666667],[120,261,72,-0.02499479166666667],[120,261,73,-0.02499479166666667],[120,261,74,-0.02499479166666667],[120,261,75,-0.02499479166666667],[120,261,76,-0.02499479166666667],[120,261,77,-0.02499479166666667],[120,261,78,-0.02499479166666667],[120,261,79,-0.02499479166666667],[120,262,64,-0.02499479166666667],[120,262,65,-0.02499479166666667],[120,262,66,-0.02499479166666667],[120,262,67,-0.02499479166666667],[120,262,68,-0.02499479166666667],[120,262,69,-0.02499479166666667],[120,262,70,-0.02499479166666667],[120,262,71,-0.02499479166666667],[120,262,72,-0.02499479166666667],[120,262,73,-0.02499479166666667],[120,262,74,-0.02499479166666667],[120,262,75,-0.02499479166666667],[120,262,76,-0.02499479166666667],[120,262,77,-0.02499479166666667],[120,262,78,-0.02499479166666667],[120,262,79,-0.02499479166666667],[120,263,64,-0.02499479166666667],[120,263,65,-0.02499479166666667],[120,263,66,-0.02499479166666667],[120,263,67,-0.02499479166666667],[120,263,68,-0.02499479166666667],[120,263,69,-0.02499479166666667],[120,263,70,-0.02499479166666667],[120,263,71,-0.02499479166666667],[120,263,72,-0.02499479166666667],[120,263,73,-0.02499479166666667],[120,263,74,-0.02499479166666667],[120,263,75,-0.02499479166666667],[120,263,76,-0.02499479166666667],[120,263,77,-0.02499479166666667],[120,263,78,-0.02499479166666667],[120,263,79,-0.02499479166666667],[120,264,64,-0.02499479166666667],[120,264,65,-0.02499479166666667],[120,264,66,-0.02499479166666667],[120,264,67,-0.02499479166666667],[120,264,68,-0.02499479166666667],[120,264,69,-0.02499479166666667],[120,264,70,-0.02499479166666667],[120,264,71,-0.02499479166666667],[120,264,72,-0.02499479166666667],[120,264,73,-0.02499479166666667],[120,264,74,-0.02499479166666667],[120,264,75,-0.02499479166666667],[120,264,76,-0.02499479166666667],[120,264,77,-0.02499479166666667],[120,264,78,-0.02499479166666667],[120,264,79,-0.02499479166666667],[120,265,64,-0.02499479166666667],[120,265,65,-0.02499479166666667],[120,265,66,-0.02499479166666667],[120,265,67,-0.02499479166666667],[120,265,68,-0.02499479166666667],[120,265,69,-0.02499479166666667],[120,265,70,-0.02499479166666667],[120,265,71,-0.02499479166666667],[120,265,72,-0.02499479166666667],[120,265,73,-0.02499479166666667],[120,265,74,-0.02499479166666667],[120,265,75,-0.02499479166666667],[120,265,76,-0.02499479166666667],[120,265,77,-0.02499479166666667],[120,265,78,-0.02499479166666667],[120,265,79,-0.02499479166666667],[120,266,64,-0.02499479166666667],[120,266,65,-0.02499479166666667],[120,266,66,-0.02499479166666667],[120,266,67,-0.02499479166666667],[120,266,68,-0.02499479166666667],[120,266,69,-0.02499479166666667],[120,266,70,-0.02499479166666667],[120,266,71,-0.02499479166666667],[120,266,72,-0.02499479166666667],[120,266,73,-0.02499479166666667],[120,266,74,-0.02499479166666667],[120,266,75,-0.02499479166666667],[120,266,76,-0.02499479166666667],[120,266,77,-0.02499479166666667],[120,266,78,-0.02499479166666667],[120,266,79,-0.02499479166666667],[120,267,64,-0.02499479166666667],[120,267,65,-0.02499479166666667],[120,267,66,-0.02499479166666667],[120,267,67,-0.02499479166666667],[120,267,68,-0.02499479166666667],[120,267,69,-0.02499479166666667],[120,267,70,-0.02499479166666667],[120,267,71,-0.02499479166666667],[120,267,72,-0.02499479166666667],[120,267,73,-0.02499479166666667],[120,267,74,-0.02499479166666667],[120,267,75,-0.02499479166666667],[120,267,76,-0.02499479166666667],[120,267,77,-0.02499479166666667],[120,267,78,-0.02499479166666667],[120,267,79,-0.02499479166666667],[120,268,64,-0.02499479166666667],[120,268,65,-0.02499479166666667],[120,268,66,-0.02499479166666667],[120,268,67,-0.02499479166666667],[120,268,68,-0.02499479166666667],[120,268,69,-0.02499479166666667],[120,268,70,-0.02499479166666667],[120,268,71,-0.02499479166666667],[120,268,72,-0.02499479166666667],[120,268,73,-0.02499479166666667],[120,268,74,-0.02499479166666667],[120,268,75,-0.02499479166666667],[120,268,76,-0.02499479166666667],[120,268,77,-0.02499479166666667],[120,268,78,-0.02499479166666667],[120,268,79,-0.02499479166666667],[120,269,64,-0.02499479166666667],[120,269,65,-0.02499479166666667],[120,269,66,-0.02499479166666667],[120,269,67,-0.02499479166666667],[120,269,68,-0.02499479166666667],[120,269,69,-0.02499479166666667],[120,269,70,-0.02499479166666667],[120,269,71,-0.02499479166666667],[120,269,72,-0.02499479166666667],[120,269,73,-0.02499479166666667],[120,269,74,-0.02499479166666667],[120,269,75,-0.02499479166666667],[120,269,76,-0.02499479166666667],[120,269,77,-0.02499479166666667],[120,269,78,-0.02499479166666667],[120,269,79,-0.02499479166666667],[120,270,64,-0.02499479166666667],[120,270,65,-0.02499479166666667],[120,270,66,-0.02499479166666667],[120,270,67,-0.02499479166666667],[120,270,68,-0.02499479166666667],[120,270,69,-0.02499479166666667],[120,270,70,-0.02499479166666667],[120,270,71,-0.02499479166666667],[120,270,72,-0.02499479166666667],[120,270,73,-0.02499479166666667],[120,270,74,-0.02499479166666667],[120,270,75,-0.02499479166666667],[120,270,76,-0.02499479166666667],[120,270,77,-0.02499479166666667],[120,270,78,-0.02499479166666667],[120,270,79,-0.02499479166666667],[120,271,64,-0.02499479166666667],[120,271,65,-0.02499479166666667],[120,271,66,-0.02499479166666667],[120,271,67,-0.02499479166666667],[120,271,68,-0.02499479166666667],[120,271,69,-0.02499479166666667],[120,271,70,-0.02499479166666667],[120,271,71,-0.02499479166666667],[120,271,72,-0.02499479166666667],[120,271,73,-0.02499479166666667],[120,271,74,-0.02499479166666667],[120,271,75,-0.02499479166666667],[120,271,76,-0.02499479166666667],[120,271,77,-0.02499479166666667],[120,271,78,-0.02499479166666667],[120,271,79,-0.02499479166666667],[120,272,64,-0.02499479166666667],[120,272,65,-0.02499479166666667],[120,272,66,-0.02499479166666667],[120,272,67,-0.02499479166666667],[120,272,68,-0.02499479166666667],[120,272,69,-0.02499479166666667],[120,272,70,-0.02499479166666667],[120,272,71,-0.02499479166666667],[120,272,72,-0.02499479166666667],[120,272,73,-0.02499479166666667],[120,272,74,-0.02499479166666667],[120,272,75,-0.02499479166666667],[120,272,76,-0.02499479166666667],[120,272,77,-0.02499479166666667],[120,272,78,-0.02499479166666667],[120,272,79,-0.02499479166666667],[120,273,64,-0.02499479166666667],[120,273,65,-0.02499479166666667],[120,273,66,-0.02499479166666667],[120,273,67,-0.02499479166666667],[120,273,68,-0.02499479166666667],[120,273,69,-0.02499479166666667],[120,273,70,-0.02499479166666667],[120,273,71,-0.02499479166666667],[120,273,72,-0.02499479166666667],[120,273,73,-0.02499479166666667],[120,273,74,-0.02499479166666667],[120,273,75,-0.02499479166666667],[120,273,76,-0.02499479166666667],[120,273,77,-0.02499479166666667],[120,273,78,-0.02499479166666667],[120,273,79,-0.02499479166666667],[120,274,64,-0.02499479166666667],[120,274,65,-0.02499479166666667],[120,274,66,-0.02499479166666667],[120,274,67,-0.02499479166666667],[120,274,68,-0.02499479166666667],[120,274,69,-0.02499479166666667],[120,274,70,-0.02499479166666667],[120,274,71,-0.02499479166666667],[120,274,72,-0.02499479166666667],[120,274,73,-0.02499479166666667],[120,274,74,-0.02499479166666667],[120,274,75,-0.02499479166666667],[120,274,76,-0.02499479166666667],[120,274,77,-0.02499479166666667],[120,274,78,-0.02499479166666667],[120,274,79,-0.02499479166666667],[120,275,64,-0.02499479166666667],[120,275,65,-0.02499479166666667],[120,275,66,-0.02499479166666667],[120,275,67,-0.02499479166666667],[120,275,68,-0.02499479166666667],[120,275,69,-0.02499479166666667],[120,275,70,-0.02499479166666667],[120,275,71,-0.02499479166666667],[120,275,72,-0.02499479166666667],[120,275,73,-0.02499479166666667],[120,275,74,-0.02499479166666667],[120,275,75,-0.02499479166666667],[120,275,76,-0.02499479166666667],[120,275,77,-0.02499479166666667],[120,275,78,-0.02499479166666667],[120,275,79,-0.02499479166666667],[120,276,64,-0.02499479166666667],[120,276,65,-0.02499479166666667],[120,276,66,-0.02499479166666667],[120,276,67,-0.02499479166666667],[120,276,68,-0.02499479166666667],[120,276,69,-0.02499479166666667],[120,276,70,-0.02499479166666667],[120,276,71,-0.02499479166666667],[120,276,72,-0.02499479166666667],[120,276,73,-0.02499479166666667],[120,276,74,-0.02499479166666667],[120,276,75,-0.02499479166666667],[120,276,76,-0.02499479166666667],[120,276,77,-0.02499479166666667],[120,276,78,-0.02499479166666667],[120,276,79,-0.02499479166666667],[120,277,64,-0.02499479166666667],[120,277,65,-0.02499479166666667],[120,277,66,-0.02499479166666667],[120,277,67,-0.02499479166666667],[120,277,68,-0.02499479166666667],[120,277,69,-0.02499479166666667],[120,277,70,-0.02499479166666667],[120,277,71,-0.02499479166666667],[120,277,72,-0.02499479166666667],[120,277,73,-0.02499479166666667],[120,277,74,-0.02499479166666667],[120,277,75,-0.02499479166666667],[120,277,76,-0.02499479166666667],[120,277,77,-0.02499479166666667],[120,277,78,-0.02499479166666667],[120,277,79,-0.02499479166666667],[120,278,64,-0.02499479166666667],[120,278,65,-0.02499479166666667],[120,278,66,-0.02499479166666667],[120,278,67,-0.02499479166666667],[120,278,68,-0.02499479166666667],[120,278,69,-0.02499479166666667],[120,278,70,-0.02499479166666667],[120,278,71,-0.02499479166666667],[120,278,72,-0.02499479166666667],[120,278,73,-0.02499479166666667],[120,278,74,-0.02499479166666667],[120,278,75,-0.02499479166666667],[120,278,76,-0.02499479166666667],[120,278,77,-0.02499479166666667],[120,278,78,-0.02499479166666667],[120,278,79,-0.02499479166666667],[120,279,64,-0.02499479166666667],[120,279,65,-0.02499479166666667],[120,279,66,-0.02499479166666667],[120,279,67,-0.02499479166666667],[120,279,68,-0.02499479166666667],[120,279,69,-0.02499479166666667],[120,279,70,-0.02499479166666667],[120,279,71,-0.02499479166666667],[120,279,72,-0.02499479166666667],[120,279,73,-0.02499479166666667],[120,279,74,-0.02499479166666667],[120,279,75,-0.02499479166666667],[120,279,76,-0.02499479166666667],[120,279,77,-0.02499479166666667],[120,279,78,-0.02499479166666667],[120,279,79,-0.02499479166666667],[120,280,64,-0.02499479166666667],[120,280,65,-0.02499479166666667],[120,280,66,-0.02499479166666667],[120,280,67,-0.02499479166666667],[120,280,68,-0.02499479166666667],[120,280,69,-0.02499479166666667],[120,280,70,-0.02499479166666667],[120,280,71,-0.02499479166666667],[120,280,72,-0.02499479166666667],[120,280,73,-0.02499479166666667],[120,280,74,-0.02499479166666667],[120,280,75,-0.02499479166666667],[120,280,76,-0.02499479166666667],[120,280,77,-0.02499479166666667],[120,280,78,-0.02499479166666667],[120,280,79,-0.02499479166666667],[120,281,64,-0.02499479166666667],[120,281,65,-0.02499479166666667],[120,281,66,-0.02499479166666667],[120,281,67,-0.02499479166666667],[120,281,68,-0.02499479166666667],[120,281,69,-0.02499479166666667],[120,281,70,-0.02499479166666667],[120,281,71,-0.02499479166666667],[120,281,72,-0.02499479166666667],[120,281,73,-0.02499479166666667],[120,281,74,-0.02499479166666667],[120,281,75,-0.02499479166666667],[120,281,76,-0.02499479166666667],[120,281,77,-0.02499479166666667],[120,281,78,-0.02499479166666667],[120,281,79,-0.02499479166666667],[120,282,64,-0.02499479166666667],[120,282,65,-0.02499479166666667],[120,282,66,-0.02499479166666667],[120,282,67,-0.02499479166666667],[120,282,68,-0.02499479166666667],[120,282,69,-0.02499479166666667],[120,282,70,-0.02499479166666667],[120,282,71,-0.02499479166666667],[120,282,72,-0.02499479166666667],[120,282,73,-0.02499479166666667],[120,282,74,-0.02499479166666667],[120,282,75,-0.02499479166666667],[120,282,76,-0.02499479166666667],[120,282,77,-0.02499479166666667],[120,282,78,-0.02499479166666667],[120,282,79,-0.02499479166666667],[120,283,64,-0.02499479166666667],[120,283,65,-0.02499479166666667],[120,283,66,-0.02499479166666667],[120,283,67,-0.02499479166666667],[120,283,68,-0.02499479166666667],[120,283,69,-0.02499479166666667],[120,283,70,-0.02499479166666667],[120,283,71,-0.02499479166666667],[120,283,72,-0.02499479166666667],[120,283,73,-0.02499479166666667],[120,283,74,-0.02499479166666667],[120,283,75,-0.02499479166666667],[120,283,76,-0.02499479166666667],[120,283,77,-0.02499479166666667],[120,283,78,-0.02499479166666667],[120,283,79,-0.02499479166666667],[120,284,64,-0.02499479166666667],[120,284,65,-0.02499479166666667],[120,284,66,-0.02499479166666667],[120,284,67,-0.02499479166666667],[120,284,68,-0.02499479166666667],[120,284,69,-0.02499479166666667],[120,284,70,-0.02499479166666667],[120,284,71,-0.02499479166666667],[120,284,72,-0.02499479166666667],[120,284,73,-0.02499479166666667],[120,284,74,-0.02499479166666667],[120,284,75,-0.02499479166666667],[120,284,76,-0.02499479166666667],[120,284,77,-0.02499479166666667],[120,284,78,-0.02499479166666667],[120,284,79,-0.02499479166666667],[120,285,64,-0.02499479166666667],[120,285,65,-0.02499479166666667],[120,285,66,-0.02499479166666667],[120,285,67,-0.02499479166666667],[120,285,68,-0.02499479166666667],[120,285,69,-0.02499479166666667],[120,285,70,-0.02499479166666667],[120,285,71,-0.02499479166666667],[120,285,72,-0.02499479166666667],[120,285,73,-0.02499479166666667],[120,285,74,-0.02499479166666667],[120,285,75,-0.02499479166666667],[120,285,76,-0.02499479166666667],[120,285,77,-0.02499479166666667],[120,285,78,-0.02499479166666667],[120,285,79,-0.02499479166666667],[120,286,64,-0.02499479166666667],[120,286,65,-0.02499479166666667],[120,286,66,-0.02499479166666667],[120,286,67,-0.02499479166666667],[120,286,68,-0.02499479166666667],[120,286,69,-0.02499479166666667],[120,286,70,-0.02499479166666667],[120,286,71,-0.02499479166666667],[120,286,72,-0.02499479166666667],[120,286,73,-0.02499479166666667],[120,286,74,-0.02499479166666667],[120,286,75,-0.02499479166666667],[120,286,76,-0.02499479166666667],[120,286,77,-0.02499479166666667],[120,286,78,-0.02499479166666667],[120,286,79,-0.02499479166666667],[120,287,64,-0.02499479166666667],[120,287,65,-0.02499479166666667],[120,287,66,-0.02499479166666667],[120,287,67,-0.02499479166666667],[120,287,68,-0.02499479166666667],[120,287,69,-0.02499479166666667],[120,287,70,-0.02499479166666667],[120,287,71,-0.02499479166666667],[120,287,72,-0.02499479166666667],[120,287,73,-0.02499479166666667],[120,287,74,-0.02499479166666667],[120,287,75,-0.02499479166666667],[120,287,76,-0.02499479166666667],[120,287,77,-0.02499479166666667],[120,287,78,-0.02499479166666667],[120,287,79,-0.02499479166666667],[120,288,64,-0.02499479166666667],[120,288,65,-0.02499479166666667],[120,288,66,-0.02499479166666667],[120,288,67,-0.02499479166666667],[120,288,68,-0.02499479166666667],[120,288,69,-0.02499479166666667],[120,288,70,-0.02499479166666667],[120,288,71,-0.02499479166666667],[120,288,72,-0.02499479166666667],[120,288,73,-0.02499479166666667],[120,288,74,-0.02499479166666667],[120,288,75,-0.02499479166666667],[120,288,76,-0.02499479166666667],[120,288,77,-0.02499479166666667],[120,288,78,-0.02499479166666667],[120,288,79,-0.02499479166666667],[120,289,64,-0.02499479166666667],[120,289,65,-0.02499479166666667],[120,289,66,-0.02499479166666667],[120,289,67,-0.02499479166666667],[120,289,68,-0.02499479166666667],[120,289,69,-0.02499479166666667],[120,289,70,-0.02499479166666667],[120,289,71,-0.02499479166666667],[120,289,72,-0.02499479166666667],[120,289,73,-0.02499479166666667],[120,289,74,-0.02499479166666667],[120,289,75,-0.02499479166666667],[120,289,76,-0.02499479166666667],[120,289,77,-0.02499479166666667],[120,289,78,-0.02499479166666667],[120,289,79,-0.02499479166666667],[120,290,64,-0.02499479166666667],[120,290,65,-0.02499479166666667],[120,290,66,-0.02499479166666667],[120,290,67,-0.02499479166666667],[120,290,68,-0.02499479166666667],[120,290,69,-0.02499479166666667],[120,290,70,-0.02499479166666667],[120,290,71,-0.02499479166666667],[120,290,72,-0.02499479166666667],[120,290,73,-0.02499479166666667],[120,290,74,-0.02499479166666667],[120,290,75,-0.02499479166666667],[120,290,76,-0.02499479166666667],[120,290,77,-0.02499479166666667],[120,290,78,-0.02499479166666667],[120,290,79,-0.02499479166666667],[120,291,64,-0.02499479166666667],[120,291,65,-0.02499479166666667],[120,291,66,-0.02499479166666667],[120,291,67,-0.02499479166666667],[120,291,68,-0.02499479166666667],[120,291,69,-0.02499479166666667],[120,291,70,-0.02499479166666667],[120,291,71,-0.02499479166666667],[120,291,72,-0.02499479166666667],[120,291,73,-0.02499479166666667],[120,291,74,-0.02499479166666667],[120,291,75,-0.02499479166666667],[120,291,76,-0.02499479166666667],[120,291,77,-0.02499479166666667],[120,291,78,-0.02499479166666667],[120,291,79,-0.02499479166666667],[120,292,64,-0.02499479166666667],[120,292,65,-0.02499479166666667],[120,292,66,-0.02499479166666667],[120,292,67,-0.02499479166666667],[120,292,68,-0.02499479166666667],[120,292,69,-0.02499479166666667],[120,292,70,-0.02499479166666667],[120,292,71,-0.02499479166666667],[120,292,72,-0.02499479166666667],[120,292,73,-0.02499479166666667],[120,292,74,-0.02499479166666667],[120,292,75,-0.02499479166666667],[120,292,76,-0.02499479166666667],[120,292,77,-0.02499479166666667],[120,292,78,-0.02499479166666667],[120,292,79,-0.02499479166666667],[120,293,64,-0.02499479166666667],[120,293,65,-0.02499479166666667],[120,293,66,-0.02499479166666667],[120,293,67,-0.02499479166666667],[120,293,68,-0.02499479166666667],[120,293,69,-0.02499479166666667],[120,293,70,-0.02499479166666667],[120,293,71,-0.02499479166666667],[120,293,72,-0.02499479166666667],[120,293,73,-0.02499479166666667],[120,293,74,-0.02499479166666667],[120,293,75,-0.02499479166666667],[120,293,76,-0.02499479166666667],[120,293,77,-0.02499479166666667],[120,293,78,-0.02499479166666667],[120,293,79,-0.02499479166666667],[120,294,64,-0.02499479166666667],[120,294,65,-0.02499479166666667],[120,294,66,-0.02499479166666667],[120,294,67,-0.02499479166666667],[120,294,68,-0.02499479166666667],[120,294,69,-0.02499479166666667],[120,294,70,-0.02499479166666667],[120,294,71,-0.02499479166666667],[120,294,72,-0.02499479166666667],[120,294,73,-0.02499479166666667],[120,294,74,-0.02499479166666667],[120,294,75,-0.02499479166666667],[120,294,76,-0.02499479166666667],[120,294,77,-0.02499479166666667],[120,294,78,-0.02499479166666667],[120,294,79,-0.02499479166666667],[120,295,64,-0.02499479166666667],[120,295,65,-0.02499479166666667],[120,295,66,-0.02499479166666667],[120,295,67,-0.02499479166666667],[120,295,68,-0.02499479166666667],[120,295,69,-0.02499479166666667],[120,295,70,-0.02499479166666667],[120,295,71,-0.02499479166666667],[120,295,72,-0.02499479166666667],[120,295,73,-0.02499479166666667],[120,295,74,-0.02499479166666667],[120,295,75,-0.02499479166666667],[120,295,76,-0.02499479166666667],[120,295,77,-0.02499479166666667],[120,295,78,-0.02499479166666667],[120,295,79,-0.02499479166666667],[120,296,64,-0.02499479166666667],[120,296,65,-0.02499479166666667],[120,296,66,-0.02499479166666667],[120,296,67,-0.02499479166666667],[120,296,68,-0.02499479166666667],[120,296,69,-0.02499479166666667],[120,296,70,-0.02499479166666667],[120,296,71,-0.02499479166666667],[120,296,72,-0.02499479166666667],[120,296,73,-0.02499479166666667],[120,296,74,-0.02499479166666667],[120,296,75,-0.02499479166666667],[120,296,76,-0.02499479166666667],[120,296,77,-0.02499479166666667],[120,296,78,-0.02499479166666667],[120,296,79,-0.02499479166666667],[120,297,64,-0.02499479166666667],[120,297,65,-0.02499479166666667],[120,297,66,-0.02499479166666667],[120,297,67,-0.02499479166666667],[120,297,68,-0.02499479166666667],[120,297,69,-0.02499479166666667],[120,297,70,-0.02499479166666667],[120,297,71,-0.02499479166666667],[120,297,72,-0.02499479166666667],[120,297,73,-0.02499479166666667],[120,297,74,-0.02499479166666667],[120,297,75,-0.02499479166666667],[120,297,76,-0.02499479166666667],[120,297,77,-0.02499479166666667],[120,297,78,-0.02499479166666667],[120,297,79,-0.02499479166666667],[120,298,64,-0.02499479166666667],[120,298,65,-0.02499479166666667],[120,298,66,-0.02499479166666667],[120,298,67,-0.02499479166666667],[120,298,68,-0.02499479166666667],[120,298,69,-0.02499479166666667],[120,298,70,-0.02499479166666667],[120,298,71,-0.02499479166666667],[120,298,72,-0.02499479166666667],[120,298,73,-0.02499479166666667],[120,298,74,-0.02499479166666667],[120,298,75,-0.02499479166666667],[120,298,76,-0.02499479166666667],[120,298,77,-0.02499479166666667],[120,298,78,-0.02499479166666667],[120,298,79,-0.02499479166666667],[120,299,64,-0.02499479166666667],[120,299,65,-0.02499479166666667],[120,299,66,-0.02499479166666667],[120,299,67,-0.02499479166666667],[120,299,68,-0.02499479166666667],[120,299,69,-0.02499479166666667],[120,299,70,-0.02499479166666667],[120,299,71,-0.02499479166666667],[120,299,72,-0.02499479166666667],[120,299,73,-0.02499479166666667],[120,299,74,-0.02499479166666667],[120,299,75,-0.02499479166666667],[120,299,76,-0.02499479166666667],[120,299,77,-0.02499479166666667],[120,299,78,-0.02499479166666667],[120,299,79,-0.02499479166666667],[120,300,64,-0.02499479166666667],[120,300,65,-0.02499479166666667],[120,300,66,-0.02499479166666667],[120,300,67,-0.02499479166666667],[120,300,68,-0.02499479166666667],[120,300,69,-0.02499479166666667],[120,300,70,-0.02499479166666667],[120,300,71,-0.02499479166666667],[120,300,72,-0.02499479166666667],[120,300,73,-0.02499479166666667],[120,300,74,-0.02499479166666667],[120,300,75,-0.02499479166666667],[120,300,76,-0.02499479166666667],[120,300,77,-0.02499479166666667],[120,300,78,-0.02499479166666667],[120,300,79,-0.02499479166666667],[120,301,64,-0.02499479166666667],[120,301,65,-0.02499479166666667],[120,301,66,-0.02499479166666667],[120,301,67,-0.02499479166666667],[120,301,68,-0.02499479166666667],[120,301,69,-0.02499479166666667],[120,301,70,-0.02499479166666667],[120,301,71,-0.02499479166666667],[120,301,72,-0.02499479166666667],[120,301,73,-0.02499479166666667],[120,301,74,-0.02499479166666667],[120,301,75,-0.02499479166666667],[120,301,76,-0.02499479166666667],[120,301,77,-0.02499479166666667],[120,301,78,-0.02499479166666667],[120,301,79,-0.02499479166666667],[120,302,64,-0.02499479166666667],[120,302,65,-0.02499479166666667],[120,302,66,-0.02499479166666667],[120,302,67,-0.02499479166666667],[120,302,68,-0.02499479166666667],[120,302,69,-0.02499479166666667],[120,302,70,-0.02499479166666667],[120,302,71,-0.02499479166666667],[120,302,72,-0.02499479166666667],[120,302,73,-0.02499479166666667],[120,302,74,-0.02499479166666667],[120,302,75,-0.02499479166666667],[120,302,76,-0.02499479166666667],[120,302,77,-0.02499479166666667],[120,302,78,-0.02499479166666667],[120,302,79,-0.02499479166666667],[120,303,64,-0.02499479166666667],[120,303,65,-0.02499479166666667],[120,303,66,-0.02499479166666667],[120,303,67,-0.02499479166666667],[120,303,68,-0.02499479166666667],[120,303,69,-0.02499479166666667],[120,303,70,-0.02499479166666667],[120,303,71,-0.02499479166666667],[120,303,72,-0.02499479166666667],[120,303,73,-0.02499479166666667],[120,303,74,-0.02499479166666667],[120,303,75,-0.02499479166666667],[120,303,76,-0.02499479166666667],[120,303,77,-0.02499479166666667],[120,303,78,-0.02499479166666667],[120,303,79,-0.02499479166666667],[120,304,64,-0.02499479166666667],[120,304,65,-0.02499479166666667],[120,304,66,-0.02499479166666667],[120,304,67,-0.02499479166666667],[120,304,68,-0.02499479166666667],[120,304,69,-0.02499479166666667],[120,304,70,-0.02499479166666667],[120,304,71,-0.02499479166666667],[120,304,72,-0.02499479166666667],[120,304,73,-0.02499479166666667],[120,304,74,-0.02499479166666667],[120,304,75,-0.02499479166666667],[120,304,76,-0.02499479166666667],[120,304,77,-0.02499479166666667],[120,304,78,-0.02499479166666667],[120,304,79,-0.02499479166666667],[120,305,64,-0.02499479166666667],[120,305,65,-0.02499479166666667],[120,305,66,-0.02499479166666667],[120,305,67,-0.02499479166666667],[120,305,68,-0.02499479166666667],[120,305,69,-0.02499479166666667],[120,305,70,-0.02499479166666667],[120,305,71,-0.02499479166666667],[120,305,72,-0.02499479166666667],[120,305,73,-0.02499479166666667],[120,305,74,-0.02499479166666667],[120,305,75,-0.02499479166666667],[120,305,76,-0.02499479166666667],[120,305,77,-0.02499479166666667],[120,305,78,-0.02499479166666667],[120,305,79,-0.02499479166666667],[120,306,64,-0.02499479166666667],[120,306,65,-0.02499479166666667],[120,306,66,-0.02499479166666667],[120,306,67,-0.02499479166666667],[120,306,68,-0.02499479166666667],[120,306,69,-0.02499479166666667],[120,306,70,-0.02499479166666667],[120,306,71,-0.02499479166666667],[120,306,72,-0.02499479166666667],[120,306,73,-0.02499479166666667],[120,306,74,-0.02499479166666667],[120,306,75,-0.02499479166666667],[120,306,76,-0.02499479166666667],[120,306,77,-0.02499479166666667],[120,306,78,-0.02499479166666667],[120,306,79,-0.02499479166666667],[120,307,64,-0.02499479166666667],[120,307,65,-0.02499479166666667],[120,307,66,-0.02499479166666667],[120,307,67,-0.02499479166666667],[120,307,68,-0.02499479166666667],[120,307,69,-0.02499479166666667],[120,307,70,-0.02499479166666667],[120,307,71,-0.02499479166666667],[120,307,72,-0.02499479166666667],[120,307,73,-0.02499479166666667],[120,307,74,-0.02499479166666667],[120,307,75,-0.02499479166666667],[120,307,76,-0.02499479166666667],[120,307,77,-0.02499479166666667],[120,307,78,-0.02499479166666667],[120,307,79,-0.02499479166666667],[120,308,64,-0.02499479166666667],[120,308,65,-0.02499479166666667],[120,308,66,-0.02499479166666667],[120,308,67,-0.02499479166666667],[120,308,68,-0.02499479166666667],[120,308,69,-0.02499479166666667],[120,308,70,-0.02499479166666667],[120,308,71,-0.02499479166666667],[120,308,72,-0.02499479166666667],[120,308,73,-0.02499479166666667],[120,308,74,-0.02499479166666667],[120,308,75,-0.02499479166666667],[120,308,76,-0.02499479166666667],[120,308,77,-0.02499479166666667],[120,308,78,-0.02499479166666667],[120,308,79,-0.02499479166666667],[120,309,64,-0.02499479166666667],[120,309,65,-0.02499479166666667],[120,309,66,-0.02499479166666667],[120,309,67,-0.02499479166666667],[120,309,68,-0.02499479166666667],[120,309,69,-0.02499479166666667],[120,309,70,-0.02499479166666667],[120,309,71,-0.02499479166666667],[120,309,72,-0.02499479166666667],[120,309,73,-0.02499479166666667],[120,309,74,-0.02499479166666667],[120,309,75,-0.02499479166666667],[120,309,76,-0.02499479166666667],[120,309,77,-0.02499479166666667],[120,309,78,-0.02499479166666667],[120,309,79,-0.02499479166666667],[120,310,64,-0.02499479166666667],[120,310,65,-0.02499479166666667],[120,310,66,-0.02499479166666667],[120,310,67,-0.02499479166666667],[120,310,68,-0.02499479166666667],[120,310,69,-0.02499479166666667],[120,310,70,-0.02499479166666667],[120,310,71,-0.02499479166666667],[120,310,72,-0.02499479166666667],[120,310,73,-0.02499479166666667],[120,310,74,-0.02499479166666667],[120,310,75,-0.02499479166666667],[120,310,76,-0.02499479166666667],[120,310,77,-0.02499479166666667],[120,310,78,-0.02499479166666667],[120,310,79,-0.02499479166666667],[120,311,64,-0.02499479166666667],[120,311,65,-0.02499479166666667],[120,311,66,-0.02499479166666667],[120,311,67,-0.02499479166666667],[120,311,68,-0.02499479166666667],[120,311,69,-0.02499479166666667],[120,311,70,-0.02499479166666667],[120,311,71,-0.02499479166666667],[120,311,72,-0.02499479166666667],[120,311,73,-0.02499479166666667],[120,311,74,-0.02499479166666667],[120,311,75,-0.02499479166666667],[120,311,76,-0.02499479166666667],[120,311,77,-0.02499479166666667],[120,311,78,-0.02499479166666667],[120,311,79,-0.02499479166666667],[120,312,64,-0.02499479166666667],[120,312,65,-0.02499479166666667],[120,312,66,-0.02499479166666667],[120,312,67,-0.02499479166666667],[120,312,68,-0.02499479166666667],[120,312,69,-0.02499479166666667],[120,312,70,-0.02499479166666667],[120,312,71,-0.02499479166666667],[120,312,72,-0.02499479166666667],[120,312,73,-0.02499479166666667],[120,312,74,-0.02499479166666667],[120,312,75,-0.02499479166666667],[120,312,76,-0.02499479166666667],[120,312,77,-0.02499479166666667],[120,312,78,-0.02499479166666667],[120,312,79,-0.02499479166666667],[120,313,64,-0.02499479166666667],[120,313,65,-0.02499479166666667],[120,313,66,-0.02499479166666667],[120,313,67,-0.02499479166666667],[120,313,68,-0.02499479166666667],[120,313,69,-0.02499479166666667],[120,313,70,-0.02499479166666667],[120,313,71,-0.02499479166666667],[120,313,72,-0.02499479166666667],[120,313,73,-0.02499479166666667],[120,313,74,-0.02499479166666667],[120,313,75,-0.02499479166666667],[120,313,76,-0.02499479166666667],[120,313,77,-0.02499479166666667],[120,313,78,-0.02499479166666667],[120,313,79,-0.02499479166666667],[120,314,64,-0.02499479166666667],[120,314,65,-0.02499479166666667],[120,314,66,-0.02499479166666667],[120,314,67,-0.02499479166666667],[120,314,68,-0.02499479166666667],[120,314,69,-0.02499479166666667],[120,314,70,-0.02499479166666667],[120,314,71,-0.02499479166666667],[120,314,72,-0.02499479166666667],[120,314,73,-0.02499479166666667],[120,314,74,-0.02499479166666667],[120,314,75,-0.02499479166666667],[120,314,76,-0.02499479166666667],[120,314,77,-0.02499479166666667],[120,314,78,-0.02499479166666667],[120,314,79,-0.02499479166666667],[120,315,64,-0.02499479166666667],[120,315,65,-0.02499479166666667],[120,315,66,-0.02499479166666667],[120,315,67,-0.02499479166666667],[120,315,68,-0.02499479166666667],[120,315,69,-0.02499479166666667],[120,315,70,-0.02499479166666667],[120,315,71,-0.02499479166666667],[120,315,72,-0.02499479166666667],[120,315,73,-0.02499479166666667],[120,315,74,-0.02499479166666667],[120,315,75,-0.02499479166666667],[120,315,76,-0.02499479166666667],[120,315,77,-0.02499479166666667],[120,315,78,-0.02499479166666667],[120,315,79,-0.02499479166666667],[120,316,64,-0.02499479166666667],[120,316,65,-0.02499479166666667],[120,316,66,-0.02499479166666667],[120,316,67,-0.02499479166666667],[120,316,68,-0.02499479166666667],[120,316,69,-0.02499479166666667],[120,316,70,-0.02499479166666667],[120,316,71,-0.02499479166666667],[120,316,72,-0.02499479166666667],[120,316,73,-0.02499479166666667],[120,316,74,-0.02499479166666667],[120,316,75,-0.02499479166666667],[120,316,76,-0.02499479166666667],[120,316,77,-0.02499479166666667],[120,316,78,-0.02499479166666667],[120,316,79,-0.02499479166666667],[120,317,64,-0.02499479166666667],[120,317,65,-0.02499479166666667],[120,317,66,-0.02499479166666667],[120,317,67,-0.02499479166666667],[120,317,68,-0.02499479166666667],[120,317,69,-0.02499479166666667],[120,317,70,-0.02499479166666667],[120,317,71,-0.02499479166666667],[120,317,72,-0.02499479166666667],[120,317,73,-0.02499479166666667],[120,317,74,-0.02499479166666667],[120,317,75,-0.02499479166666667],[120,317,76,-0.02499479166666667],[120,317,77,-0.02499479166666667],[120,317,78,-0.02499479166666667],[120,317,79,-0.02499479166666667],[120,318,64,-0.02499479166666667],[120,318,65,-0.02499479166666667],[120,318,66,-0.02499479166666667],[120,318,67,-0.02499479166666667],[120,318,68,-0.02499479166666667],[120,318,69,-0.02499479166666667],[120,318,70,-0.02499479166666667],[120,318,71,-0.02499479166666667],[120,318,72,-0.02499479166666667],[120,318,73,-0.02499479166666667],[120,318,74,-0.02499479166666667],[120,318,75,-0.02499479166666667],[120,318,76,-0.02499479166666667],[120,318,77,-0.02499479166666667],[120,318,78,-0.02499479166666667],[120,318,79,-0.02499479166666667],[120,319,64,-0.02499479166666667],[120,319,65,-0.02499479166666667],[120,319,66,-0.02499479166666667],[120,319,67,-0.02499479166666667],[120,319,68,-0.02499479166666667],[120,319,69,-0.02499479166666667],[120,319,70,-0.02499479166666667],[120,319,71,-0.02499479166666667],[120,319,72,-0.02499479166666667],[120,319,73,-0.02499479166666667],[120,319,74,-0.02499479166666667],[120,319,75,-0.02499479166666667],[120,319,76,-0.02499479166666667],[120,319,77,-0.02499479166666667],[120,319,78,-0.02499479166666667],[120,319,79,-0.02499479166666667],[121,-64,64,0.037482421875],[121,-64,65,0.037482421875],[121,-64,66,0.037482421875],[121,-64,67,0.037482421875],[121,-64,68,0.037482421875],[121,-64,69,0.037482421875],[121,-64,70,0.037482421875],[121,-64,71,0.037482421875],[121,-64,72,0.037482421875],[121,-64,73,0.037482421875],[121,-64,74,0.037482421875],[121,-64,75,0.037482421875],[121,-64,76,0.037482421875],[121,-64,77,0.037482421875],[121,-64,78,0.037482421875],[121,-64,79,0.037482421875],[121,-63,64,0.04054551837078072],[121,-63,65,0.04062652529305411],[121,-63,66,0.04070899979196204],[121,-63,67,0.04079271981064274],[121,-63,68,0.0408777309781058],[121,-63,69,0.04096424735965865],[121,-63,70,0.041052407744147],[121,-63,71,0.04114226859293812],[121,-63,72,0.04123380351698664],[121,-63,73,0.0413269039209082],[121,-63,74,0.041421380839519094],[121,-63,75,0.04151696799045149],[121,-63,76,0.04161332606448931],[121,-63,77,0.04171004827320845],[121,-63,78,0.04180666717136206],[121,-63,79,0.04190266276925739],[121,-62,64,0.043673563136188503],[121,-62,65,0.04383799204654001],[121,-62,66,0.04400544857997314],[121,-62,67,0.044175511145619205],[121,-62,68,0.0443482514405827],[121,-62,69,0.044524048265766135],[121,-62,70,0.04470313154578364],[121,-62,71,0.044885569737128005],[121,-62,72,0.04507126952223201],[121,-62,73,0.045259977749239656],[121,-62,74,0.04545128566458872],[121,-62,75,0.04564463548184843],[121,-62,76,0.04583932932638956],[121,-62,77,0.04603454059143241],[121,-62,78,0.04622932773685412],[121,-62,79,0.04642265055790168],[121,-61,64,0.04687278744375457],[121,-61,65,0.047122618494093736],[121,-61,66,0.047377063961256204],[121,-61,67,0.04763553743002712],[121,-61,68,0.047898115998099],[121,-61,69,0.04816528501964789],[121,-61,70,0.04843731390344185],[121,-61,71,0.04871423910132335],[121,-61,72,0.048995864099061814],[121,-61,73,0.04928176266666992],[121,-61,74,0.049571285434320086],[121,-61,75,0.04986356985458565],[121,-61,76,0.05015755360603151],[121,-61,77,0.05045199148726655],[121,-61,78,0.0507454758444943],[121,-61,79,0.05103646056946044],[121,-60,64,0.0501484127007291],[121,-60,65,0.050485190875184674],[121,-60,66,0.05082813159081062],[121,-60,67,0.05117652776948481],[121,-60,68,0.05153044083815151],[121,-60,69,0.051890398493512686],[121,-60,70,0.05225665620785331],[121,-60,71,0.052629176535701885],[121,-60,72,0.05300762888583125],[121,-60,73,0.053391393522610915],[121,-60,74,0.05377956988033162],[121,-60,75,0.054170989267024725],[121,-60,76,0.05456423202684675],[121,-60,77,0.05495764922239015],[121,-60,78,0.05534938889039566],[121,-60,79,0.055737426916417476],[121,-59,64,0.05350447804066611],[121,-59,65,0.05392932761692114],[121,-59,66,0.05436178775066452],[121,-59,67,0.05480108063219961],[121,-59,68,0.05524723080491081],[121,-59,69,0.05570074078830295],[121,-59,70,0.05616179888238796],[121,-59,71,0.056630255178779745],[121,-59,72,0.05710562010337882],[121,-59,73,0.05758706813096586],[121,-59,74,0.05807344677209279],[121,-59,75,0.05856329092397043],[121,-59,76,0.05905484266793068],[121,-59,77,0.05954607658662411],[121,-59,78,0.06003473066450833],[121,-59,79,0.06051834282557453],[121,-58,64,0.056943748369974415],[121,-58,65,0.05745740371454432],[121,-58,66,0.05797996388062098],[121,-58,67,0.058510631337102784],[121,-58,68,0.05904937201272265],[121,-58,69,0.059596594768050085],[121,-58,70,0.06015236912790055],[121,-58,71,0.06071639809169798],[121,-58,72,0.06128801407812262],[121,-58,73,0.061866180966216135],[121,-58,74,0.06244950234993808],[121,-58,75,0.06303623611299757],[121,-58,76,0.06362431542009483],[121,-58,77,0.0642113762096741],[121,-58,78,0.06479479126205447],[121,-58,79,0.06537171090560026],[121,-57,64,0.06046771793954388],[121,-57,65,0.061070572203975895],[121,-57,66,0.061683429855991456],[121,-57,67,0.062305519968663514],[121,-57,68,0.06293672637060219],[121,-57,69,0.06357729649479806],[121,-57,70,0.06422713180943329],[121,-57,71,0.0648857573221041],[121,-57,72,0.06555231337136411],[121,-57,73,0.06622555442029844],[121,-57,74,0.06690385498575946],[121,-57,75,0.06758522282537824],[121,-57,76,0.06826731949232953],[121,-57,77,0.06894748835528647],[121,-57,78,0.06962279016823275],[121,-57,79,0.0702900462620886],[121,-56,64,0.06407635996807715],[121,-56,65,0.06476850663247195],[121,-56,66,0.06547153224383338],[121,-56,67,0.0661847278657956],[121,-56,68,0.06690786824192316],[121,-56,69,0.06764097366484245],[121,-56,70,0.06838373101405822],[121,-56,71,0.06913545972311205],[121,-56,72,0.06989509783624183],[121,-56,73,0.07066119594351136],[121,-56,74,0.07143191914460481],[121,-56,75,0.07220505717877519],[121,-56,76,0.07297804284499969],[121,-56,77,0.07374797882247536],[121,-56,78,0.07451167298740242],[121,-56,79,0.0752656823078875],[121,-55,64,0.0677656152202394],[121,-55,65,0.06854670429369474],[121,-55,66,0.06933930718238736],[121,-55,67,0.0701427997736932],[121,-55,68,0.07095681931203664],[121,-55,69,0.071781100782704],[121,-55,70,0.07261507807509292],[121,-55,71,0.07345784578162348],[121,-55,72,0.07430813773909171],[121,-55,73,0.07516431430926745],[121,-55,74,0.0760243585659459],[121,-55,75,0.07688588154191794],[121,-55,76,0.0777461366747189],[121,-55,77,0.07860204357482961],[121,-55,78,0.07945022122449014],[121,-55,79,0.08028703069983387],[121,-54,64,0.0715282366325725],[121,-54,65,0.07239737168133296],[121,-54,66,0.07327840721904695],[121,-54,67,0.07417081374436668],[121,-54,68,0.07507406328565129],[121,-54,69,0.07598755939891212],[121,-54,70,0.07691045695874202],[121,-54,71,0.07784161855975656],[121,-54,72,0.07877958344393075],[121,-54,73,0.07972254604506697],[121,-54,74,0.08066834433602421],[121,-54,75,0.08161445814965373],[121,-54,76,0.08255801762868703],[121,-54,77,0.0834958219434215],[121,-54,78,0.08442436839922826],[121,-54,79,0.0853398920391011],[121,-53,64,0.07535525776527151],[121,-53,65,0.07631098261386121],[121,-53,66,0.07727875210078698],[121,-53,67,0.07825812697520118],[121,-53,68,0.0792483877857534],[121,-53,69,0.08024857472068699],[121,-53,70,0.08125755155134708],[121,-53,71,0.08227395477996612],[121,-53,72,0.08329615055819409],[121,-53,73,0.08432220215623498],[121,-53,74,0.08534984818898805],[121,-53,75,0.08637649178998448],[121,-53,76,0.08739920090711858],[121,-53,77,0.0884147198765205],[121,-53,78,0.08941949241272147],[121,-53,79,0.09040969613499335],[121,-52,64,0.07923652770378163],[121,-52,65,0.08027683388367764],[121,-52,66,0.08132910582893099],[121,-52,67,0.08239297565097342],[121,-52,68,0.08346750829479904],[121,-52,69,0.08455136421995625],[121,-52,70,0.0856431187219373],[121,-52,71,0.08674120135429096],[121,-52,72,0.0878438381932643],[121,-52,73,0.08894900568406572],[121,-52,74,0.0900543962990926],[121,-52,75,0.09115739622185592],[121,-52,76,0.09225507525234783],[121,-52,77,0.09334418911056716],[121,-52,78,0.09442119429517093],[121,-52,79,0.09548227563427268],[121,-51,64,0.08316127336371562],[121,-51,65,0.08428362582909897],[121,-51,66,0.08541767585421607],[121,-51,67,0.08656309385876887],[121,-51,68,0.08771870783834952],[121,-51,69,0.08888279842903032],[121,-51,70,0.09005366984984928],[121,-51,71,0.09122957655835921],[121,-51,72,0.09240864803127416],[121,-51,73,0.09358882629870863],[121,-51,74,0.09476781649010438],[121,-51,75,0.09594305063213296],[121,-51,76,0.09711166491947239],[121,-51,77,0.09827049065871063],[121,-51,78,0.09941605906405672],[121,-51,79,0.1005446200615909],[121,-50,64,0.08692195366836342],[121,-50,65,0.08828508233995828],[121,-50,66,0.08953274992554158],[121,-50,67,0.090756367348838],[121,-50,68,0.09198950840191998],[121,-50,69,0.09323009008749575],[121,-50,70,0.09447617710447806],[121,-50,71,0.0957258922061476],[121,-50,72,0.09697732056290732],[121,-50,73,0.0982284282345567],[121,-50,74,0.09947699504211371],[121,-50,75,0.10072056210989647],[121,-50,76,0.10195639432747158],[121,-50,77,0.10318145795847847],[121,-50,78,0.10439241359957276],[121,-50,79,0.10558562466835625],[121,-49,64,0.09055683463417867],[121,-49,65,0.09201987297643147],[121,-49,66,0.09348878895842123],[121,-49,67,0.09496029304787397],[121,-49,68,0.09626784205643521],[121,-49,69,0.09758110879862197],[121,-49,70,0.09889853226402567],[121,-49,71,0.10021815403582056],[121,-49,72,0.10153807120856875],[121,-49,73,0.10285633320810053],[121,-49,74,0.10417085461186919],[121,-49,75,0.10547934427442364],[121,-49,76,0.10677925103943745],[121,-49,77,0.10806772629478832],[121,-49,78,0.1093416036007884],[121,-49,79,0.1105973955943948],[121,-48,64,0.0942232076505047],[121,-48,65,0.09578552725453217],[121,-48,66,0.09735591849278492],[121,-48,67,0.0989310300815997],[121,-48,68,0.1005085763040478],[121,-48,69,0.10192343932847299],[121,-48,70,0.10330899352160498],[121,-48,71,0.10469538686580508],[121,-48,72,0.1060807750740027],[121,-48,73,0.10746333782671545],[121,-48,74,0.10884116989091494],[121,-48,75,0.11021219034739128],[121,-48,76,0.11157407024115236],[121,-48,77,0.1129241789417625],[121,-48,78,0.11425954947115054],[121,-48,79,0.11557686302585132],[121,-47,64,0.09792738015741166],[121,-47,65,0.09958750579611632],[121,-47,66,0.10125781450044988],[121,-47,67,0.10293498605196881],[121,-47,68,0.10461683059549604],[121,-47,69,0.10624537483002221],[121,-47,70,0.10769673821208259],[121,-47,71,0.10914773895238046],[121,-47,72,0.11059662345274392],[121,-47,73,0.11204173127529134],[121,-47,74,0.11348136381467559],[121,-47,75,0.11491367297520841],[121,-47,76,0.11633657019961488],[121,-47,77,0.11774765616561761],[121,-47,78,0.11914417143395384],[121,-47,79,0.12052296829730136],[121,-46,64,0.10167417637274026],[121,-46,65,0.10342974465567012],[121,-46,66,0.105197406023088],[121,-46,67,0.10697397560291222],[121,-46,68,0.10875739946033805],[121,-46,69,0.11053651824128709],[121,-46,70,0.1120522824809784],[121,-46,71,0.11356671635885277],[121,-46,72,0.11507817270249439],[121,-46,73,0.1165851619635216],[121,-46,74,0.11808619862754761],[121,-46,75,0.11957966953431089],[121,-46,76,0.12106372448407753],[121,-46,77,0.12253618947282123],[121,-46,78,0.12399450286275268],[121,-46,79,0.12543567475694178],[121,-45,64,0.10546658445473474],[121,-45,65,0.10731432804004458],[121,-45,66,0.10917576365624022],[121,-45,67,0.11104795522304885],[121,-45,68,0.11292903197814763],[121,-45,69,0.11478800404222901],[121,-45,70,0.11636765916516675],[121,-45,71,0.11794531388162116],[121,-45,72,0.11951942576045968],[121,-45,73,0.12108866789346046],[121,-45,74,0.1226517541447419],[121,-45,75,0.12420728813510704],[121,-45,76,0.12575363636217343],[121,-45,77,0.12728882582049555],[121,-45,78,0.1288104664466093],[121,-45,79,0.1303156986723958],[121,-44,64,0.10930547849919021],[121,-44,65,0.11124123407488626],[121,-44,66,0.11319187322417926],[121,-44,67,0.11515482850743913],[121,-44,68,0.11712846681249094],[121,-44,69,0.11899266153343559],[121,-44,70,0.12063654203710672],[121,-44,71,0.12227809774895682],[121,-44,72,0.12391587136142998],[121,-44,73,0.12554867111768347],[121,-44,74,0.1271753768745657],[121,-44,75,0.1287947715529228],[121,-44,76,0.13040539839488724],[121,-44,77,0.13200544440814496],[121,-44,78,0.13359265033465476],[121,-44,79,0.13516424743617514],[121,-43,64,0.11318941415726076],[121,-43,65,0.11520815244366643],[121,-43,66,0.11724247894486589],[121,-43,67,0.11929031795292336],[121,-43,68,0.12135033549358573],[121,-43,69,0.12314512067985747],[121,-43,70,0.12485431737275171],[121,-43,71,0.1265612409734508],[121,-43,72,0.12826448176877953],[121,-43,73,0.1299629370397122],[121,-43,74,0.1316556007097856],[121,-43,75,0.13334137976963595],[121,-43,76,0.13501893790906894],[121,-43,77,0.13668656674556812],[121,-43,78,0.13834208499258333],[121,-43,79,0.13998276586246874],[121,-42,64,0.11711449689135453],[121,-42,65,0.1192103729379933],[121,-42,66,0.12132199513263964],[121,-42,67,0.12344790234657393],[121,-42,68,0.12546579280140344],[121,-42,69,0.12724186140093488],[121,-42,70,0.1290181036488434],[121,-42,71,0.13079251209325637],[121,-42,72,0.13256366969260766],[121,-42,73,0.13433049918362536],[121,-42,74,0.13609203978448678],[121,-42,75,0.13784725171113266],[121,-42,76,0.13959484894219615],[121,-42,77,0.14133316062288823],[121,-42,78,0.14306002144987084],[121,-42,79,0.14477269132768592],[121,-41,64,0.1210743220845566],[121,-41,65,0.12324074413915173],[121,-41,66,0.12542248564958042],[121,-41,67,0.12759652917462325],[121,-41,68,0.12943679922222853],[121,-41,69,0.13128120700658683],[121,-41,70,0.13312672000375544],[121,-41,71,0.13497121787769928],[121,-41,72,0.13681320492337418],[121,-41,73,0.13865154992919132],[121,-41,74,0.14048525397892864],[121,-41,75,0.14231324666951076],[121,-41,76,0.14413421117615732],[121,-41,77,0.14594643854898987],[121,-41,78,0.14774771157453365],[121,-41,79,0.14953521848161325],[121,-40,64,0.125059986383434],[121,-40,65,0.12728970160117684],[121,-40,66,0.12953371045230191],[121,-40,67,0.13143921393185481],[121,-40,68,0.1333483832756149],[121,-40,69,0.13526326227839033],[121,-40,70,0.13718060390971154],[121,-40,71,0.1390981004023329],[121,-40,72,0.1410140910566318],[121,-40,73,0.14292729757547812],[121,-40,74,0.14483658744207642],[121,-40,75,0.1467407658073402],[121,-40,76,0.1486383963064224],[121,-40,77,0.1505276511747407],[121,-40,78,0.15240619098138933],[121,-40,79,0.15427107424208863],[121,-39,64,0.12542904507947836],[121,-39,65,0.12758769303119397],[121,-39,66,0.12945996226795634],[121,-39,67,0.13135062529180214],[121,-39,68,0.1332534337485729],[121,-39,69,0.1351637633438648],[121,-39,70,0.13707821894429015],[121,-39,71,0.13899431827485728],[121,-39,72,0.14091021240760654],[121,-39,73,0.14282443222500524],[121,-39,74,0.1447356613382553],[121,-39,75,0.1466425358960059],[121,-39,76,0.1485434716734226],[121,-39,77,0.15043651878394393],[121,-39,78,0.15231924430560376],[121,-39,79,0.15418864306039645],[121,-38,64,0.12563720633820954],[121,-38,65,0.12747248675053077],[121,-38,66,0.1293358189405706],[121,-38,67,0.13122031810941973],[121,-38,68,0.13311921650648345],[121,-38,69,0.13502771747152326],[121,-38,70,0.1369422070731361],[121,-38,71,0.13885994693821235],[121,-38,72,0.14077881207721366],[121,-38,73,0.14269705268446747],[121,-38,74,0.1446130803556247],[121,-38,75,0.14652527912167376],[121,-38,76,0.14843184165541015],[121,-38,77,0.15033063096098664],[121,-38,78,0.15126192780622727],[121,-38,79,0.14970460540675395],[121,-37,64,0.12253691913307738],[121,-37,65,0.12195970533321987],[121,-37,66,0.1255135871775541],[121,-37,67,0.12979611525922738],[121,-37,68,0.13295422780733882],[121,-37,69,0.13486318317780882],[121,-37,70,0.13678010536468332],[121,-37,71,0.13870191687862932],[121,-37,72,0.14062613082077494],[121,-37,73,0.14255063174942192],[121,-37,74,0.1444734784922985],[121,-37,75,0.14602262486079476],[121,-37,76,0.14536255003163787],[121,-37,77,0.1428482967903831],[121,-37,78,0.14258343545338442],[121,-37,79,0.14084387043909574],[121,-36,64,0.1167161764522658],[121,-36,65,0.11561014663973582],[121,-36,66,0.11916652706134559],[121,-36,67,0.12286316370362636],[121,-36,68,0.1281298329516188],[121,-36,69,0.13032957320428318],[121,-36,70,0.13102655969951163],[121,-36,71,0.13367145559411328],[121,-36,72,0.13645107630951678],[121,-36,73,0.1401694283771876],[121,-36,74,0.13898320117527244],[121,-36,75,0.1372621352221566],[121,-36,76,0.13708584753054473],[121,-36,77,0.13649014473462037],[121,-36,78,0.13578533140263369],[121,-36,79,0.131771229696956],[121,-35,64,0.1126169467436768],[121,-35,65,0.11229876737006199],[121,-35,66,0.11660726877030132],[121,-35,67,0.11971845820249219],[121,-35,68,0.12386277205347972],[121,-35,69,0.1247671509451136],[121,-35,70,0.12670703226863933],[121,-35,71,0.13031900183828504],[121,-35,72,0.13213047949674944],[121,-35,73,0.1350640500072654],[121,-35,74,0.1346442276989255],[121,-35,75,0.13433523994904617],[121,-35,76,0.13304527536826735],[121,-35,77,0.1338848464424934],[121,-35,78,0.13166321919208743],[121,-35,79,0.1263049227964731],[121,-34,64,0.11141791727851245],[121,-34,65,0.11138162557386139],[121,-34,66,0.11664301603834569],[121,-34,67,0.11913378406898359],[121,-34,68,0.12313960440396944],[121,-34,69,0.12529288100167446],[121,-34,70,0.12884353595414766],[121,-34,71,0.13066530461785628],[121,-34,72,0.13149575347754766],[121,-34,73,0.13328999976566008],[121,-34,74,0.1333919402739926],[121,-34,75,0.13414013398739008],[121,-34,76,0.13109567279567283],[121,-34,77,0.13127942494597752],[121,-34,78,0.127944187670467],[121,-34,79,0.12579741105749104],[121,-33,64,0.11421934296807448],[121,-33,65,0.11301771666150091],[121,-33,66,0.11828163929450997],[121,-33,67,0.11999947991288468],[121,-33,68,0.12440137492255869],[121,-33,69,0.1277488776680578],[121,-33,70,0.13139320189996712],[121,-33,71,0.13270188398587698],[121,-33,72,0.1340326888484579],[121,-33,73,0.13638020458874794],[121,-33,74,0.13553509717773649],[121,-33,75,0.13346787422329393],[121,-33,76,0.12967757658481754],[121,-33,77,0.12918281143974467],[121,-33,78,0.12587327760072786],[121,-33,79,0.12548319978631317],[121,-32,64,0.11726933052485147],[121,-32,65,0.11705799992373987],[121,-32,66,0.12248829391581405],[121,-32,67,0.12352802723513187],[121,-32,68,0.12769275802857355],[121,-32,69,0.13056736477645164],[121,-32,70,0.13334922404761104],[121,-32,71,0.13775473830360369],[121,-32,72,0.139711726440849],[121,-32,73,0.14015504255833322],[121,-32,74,0.13953723620677044],[121,-32,75,0.13585584601631678],[121,-32,76,0.1318150224884199],[121,-32,77,0.12963230155657068],[121,-32,78,0.12773555503205947],[121,-32,79,0.12639181845612069],[121,-31,64,0.11944557425912701],[121,-31,65,0.12061503726311854],[121,-31,66,0.1268953834326726],[121,-31,67,0.12983809720862605],[121,-31,68,0.13173838191021192],[121,-31,69,0.1336635199882688],[121,-31,70,0.1356061902811657],[121,-31,71,0.13755972013151008],[121,-31,72,0.13951802164221935],[121,-31,73,0.14147552801605118],[121,-31,74,0.14250685246423578],[121,-31,75,0.13938154164051972],[121,-31,76,0.13543948686625415],[121,-31,77,0.13220447416212391],[121,-31,78,0.13193628687056672],[121,-31,79,0.12853524068404007],[121,-30,64,0.1233937897037707],[121,-30,65,0.12397295679281153],[121,-30,66,0.1277893195023482],[121,-30,67,0.12965141064820782],[121,-30,68,0.13154855656621414],[121,-30,69,0.13347187763428464],[121,-30,70,0.13541325134348783],[121,-30,71,0.1373652217868413],[121,-30,72,0.1393209655865819],[121,-30,73,0.14127425372935143],[121,-30,74,0.14321940940368394],[121,-30,75,0.1419974356563262],[121,-30,76,0.1377547150117001],[121,-30,77,0.13504907091741877],[121,-30,78,0.1348086447112494],[121,-30,79,0.13030205080709242],[121,-29,64,0.12407336868522419],[121,-29,65,0.12581761010550213],[121,-29,66,0.12762280277751184],[121,-29,67,0.12947708365515606],[121,-29,68,0.1313681786191499],[121,-29,69,0.1332863646199935],[121,-29,70,0.1352226796613506],[121,-29,71,0.13716886754365962],[121,-29,72,0.13911737114512412],[121,-29,73,0.14106131747083603],[121,-29,74,0.14277732617993316],[121,-29,75,0.1445017560318284],[121,-29,76,0.1431286183787454],[121,-29,77,0.13968561788605688],[121,-29,78,0.13701350102076992],[121,-29,79,0.13062227985224006],[121,-28,64,0.12394892087104577],[121,-28,65,0.125678086710279],[121,-28,66,0.12747029193443155],[121,-28,67,0.12931355750027398],[121,-28,68,0.13119499981547664],[121,-28,69,0.13310400878661716],[121,-28,70,0.13503076272160972],[121,-28,71,0.13682644691708537],[121,-28,72,0.13845900225744281],[121,-28,73,0.14011000758932426],[121,-28,74,0.14177870351989988],[121,-28,75,0.14346321573663504],[121,-28,76,0.1451606268765553],[121,-28,77,0.1456542984435919],[121,-28,78,0.14019170808329626],[121,-28,79,0.1327940475045783],[121,-27,64,0.1238412055198287],[121,-27,65,0.12555245879291785],[121,-27,66,0.12732830657534927],[121,-27,67,0.12915673198154468],[121,-27,68,0.13102426275505988],[121,-27,69,0.13279944320840445],[121,-27,70,0.1343390089803349],[121,-27,71,0.13589837484734868],[121,-27,72,0.1374799652241695],[121,-27,73,0.13908485499691253],[121,-27,74,0.1407128061643198],[121,-27,75,0.142362319401134],[121,-27,76,0.14403070048860686],[121,-27,77,0.14571414150821269],[121,-27,78,0.14326690370677841],[121,-27,79,0.13625431212408426],[121,-26,64,0.12374498685848599],[121,-26,65,0.1254349342626441],[121,-26,66,0.12719049362400467],[121,-26,67,0.1289874137810486],[121,-26,68,0.13044068713531254],[121,-26,69,0.13190678137771894],[121,-26,70,0.13339182165708735],[121,-26,71,0.13490044770268522],[121,-26,72,0.1364358046884462],[121,-26,73,0.13799955240005232],[121,-26,74,0.13959189277298825],[121,-26,75,0.14121161581121247],[121,-26,76,0.14285616383571834],[121,-26,77,0.14452171395186716],[121,-26,78,0.14505747248216352],[121,-26,79,0.1391603733631176],[121,-25,64,0.12365181429272035],[121,-25,65,0.1253165146500841],[121,-25,66,0.12674637546970305],[121,-25,67,0.128137485434449],[121,-25,68,0.12953521143154995],[121,-25,69,0.13094816961496236],[121,-25,70,0.13238338082222686],[121,-25,71,0.13384625525590274],[121,-25,72,0.13534057256338516],[121,-25,73,0.13686848321574638],[121,-25,74,0.1384305312707972],[121,-25,75,0.14002569853738966],[121,-25,76,0.14165147008701498],[121,-25,77,0.14330392098723826],[121,-25,78,0.14497782406189533],[121,-25,79,0.1392426819543497],[121,-24,64,0.12319566802200554],[121,-24,65,0.12454752317281385],[121,-24,66,0.12588806629517685],[121,-24,67,0.12722594983245297],[121,-24,68,0.1285723078438168],[121,-24,69,0.12993669404427166],[121,-24,70,0.13132694674530282],[121,-24,71,0.13274915576051682],[121,-24,72,0.13420763654069887],[121,-24,73,0.13570492817132826],[121,-24,74,0.1372418153272203],[121,-24,75,0.13881737420110724],[121,-24,76,0.14042904234168188],[121,-24,77,0.14207271225450468],[121,-24,78,0.14374284853905184],[121,-24,79,0.13826982235381452],[121,-23,64,0.12238817016144238],[121,-23,65,0.12368676883094148],[121,-23,66,0.12497572996525025],[121,-23,67,0.12626375750913169],[121,-23,68,0.127562545342414],[121,-23,69,0.12888250967294013],[121,-23,70,0.13023222209691349],[121,-23,71,0.1316183622929949],[121,-23,72,0.13304568955135557],[121,-23,73,0.13451704040800047],[121,-23,74,0.1360333524824688],[121,-23,75,0.1375937145294704],[121,-23,76,0.13919544262362024],[121,-23,77,0.14083418230412043],[121,-23,78,0.1425040364162109],[121,-23,79,0.13890452157513186],[121,-22,64,0.12153259584607126],[121,-22,65,0.12277983108067603],[121,-22,66,0.12401962220486698],[121,-22,67,0.1252606811102136],[121,-22,68,0.12651517997587544],[121,-22,69,0.12779431075950956],[121,-22,70,0.1291072911089923],[121,-22,71,0.1304613047648131],[121,-22,72,0.131861472280636],[121,-22,73,0.13331084988884168],[121,-22,74,0.13481045660817298],[121,-22,75,0.13635932959338687],[121,-22,76,0.13795460762550235],[121,-22,77,0.1395916425390718],[121,-22,78,0.14126413828342324],[121,-22,79,0.13816952600641935],[121,-21,64,0.12063952678343799],[121,-21,65,0.12183676830211568],[121,-21,66,0.1230292537601214],[121,-21,67,0.1242256472622361],[121,-21,68,0.12543850288892566],[121,-21,69,0.12667969278100102],[121,-21,70,0.12795899292531496],[121,-21,71,0.12928401159470876],[121,-21,72,0.13066015953308616],[121,-21,73,0.13209065023920383],[121,-21,74,0.1335765304425202],[121,-21,75,0.13511674075766672],[121,-21,76,0.13670820639306605],[121,-21,77,0.13834595767745747],[121,-21,78,0.1400232800594552],[121,-21,79,0.1355767167206664],[121,-20,64,0.11971924401074299],[121,-20,65,0.12086726219043141],[121,-20,66,0.12201365484946332],[121,-20,67,0.12316697415671031],[121,-20,68,0.12434004945045403],[121,-20,69,0.1255453323111012],[121,-20,70,0.12679307229468467],[121,-20,71,0.12809123215479404],[121,-20,72,0.12944545622266965],[121,-20,73,0.13085907087450463],[121,-20,74,0.13233311717448948],[121,-20,75,0.1338664156659964],[121,-20,76,0.13545566316272023],[121,-20,77,0.1370955612703598],[121,-20,78,0.138778976251709],[121,-20,79,0.13493223569884938],[121,-19,64,0.11878203829528655],[121,-19,65,0.11988090405473012],[121,-19,66,0.12098163575550659],[121,-19,67,0.12209260450669938],[121,-19,68,0.12322680290580589],[121,-19,69,0.12439716044556293],[121,-19,70,0.12561432266824799],[121,-19,71,0.12688655028635085],[121,-19,72,0.12821968289176774],[121,-19,73,0.1296171369038956],[121,-19,74,0.13107993784129615],[121,-19,75,0.13260678687640137],[121,-19,76,0.1341941615027216],[121,-19,77,0.13583645001329447],[121,-19,78,0.13752611936211215],[121,-19,79,0.13568466875001828],[121,-18,64,0.11783732872688418],[121,-18,65,0.1188862368955084],[121,-18,66,0.11994075014050284],[121,-18,67,0.12100898755927991],[121,-18,68,0.12210399280456533],[121,-18,69,0.12323907609783703],[121,-18,70,0.12442521364461356],[121,-18,71,0.12567092605019672],[121,-18,72,0.1269822328038286],[121,-18,73,0.12836264345696194],[121,-18,74,0.1298131855796629],[121,-18,75,0.13133246944519936],[121,-18,76,0.13291678925346861],[121,-18,77,0.13456026056341863],[121,-18,78,0.13625499346778983],[121,-18,79,0.13471774176818974],[121,-17,64,0.1168883474305947],[121,-17,65,0.11788570285672506],[121,-17,66,0.1188925652998243],[121,-17,67,0.11991673298967125],[121,-17,68,0.12097119041910313],[121,-17,69,0.12206953489317268],[121,-17,70,0.12322301679838579],[121,-17,71,0.12444039155837228],[121,-17,72,0.12572785917640728],[121,-17,73,0.12708904333070145],[121,-17,74,0.12852501011059642],[121,-17,75,0.1300343263393931],[121,-17,76,0.13161315728067352],[121,-17,77,0.1332554033742599],[121,-17,78,0.13495287550049137],[121,-17,79,0.1350855440410897],[121,-16,64,0.1159231974834666],[121,-16,65,0.11686785957735804],[121,-16,66,0.11782621269867932],[121,-16,67,0.11880567262237804],[121,-16,68,0.11981904807697144],[121,-16,69,0.12088011254666536],[121,-16,70,0.12200031209292818],[121,-16,71,0.12318858657882022],[121,-16,72,0.12445128982232846],[121,-16,73,0.12579215245403133],[121,-16,74,0.12721228757411537],[121,-16,75,0.12871023915331212],[121,-16,76,0.13028207296411967],[121,-16,77,0.13192150966758093],[121,-16,78,0.13362009952235565],[121,-16,79,0.13499500931808367],[121,-15,64,0.1149296164193662],[121,-15,65,0.115821118959517],[121,-15,66,0.11673089632550213],[121,-15,67,0.11766592679007336],[121,-15,68,0.11863871992925326],[121,-15,69,0.11966309584084664],[121,-15,70,0.1207505930838056],[121,-15,71,0.12191025680178093],[121,-15,72,0.12314853669160346],[121,-15,73,0.12446923096581357],[121,-15,74,0.12587347641150337],[121,-15,75,0.12735978448975993],[121,-15,76,0.12892412325285718],[121,-15,77,0.13056004468512794],[121,-15,78,0.1322588569039199],[121,-15,79,0.13287365305059506],[121,-14,64,0.11389885499071344],[121,-14,65,0.11473728513742261],[121,-14,66,0.11559903279899209],[121,-14,67,0.1164905885466916],[121,-14,68,0.1174240354593742],[121,-14,69,0.11841309728698565],[121,-14,70,0.11946928376578565],[121,-14,71,0.12060164489031822],[121,-14,72,0.12181664529551758],[121,-14,73,0.12311808791856868],[121,-14,74,0.12450708704858318],[121,-14,75,0.12598209070730268],[121,-14,76,0.12753895212862093],[121,-14,77,0.129171049924011],[121,-14,78,0.13086945634098626],[121,-14,79,0.13147138048361634],[121,-13,64,0.08368035243683297],[121,-13,65,0.09876083203521611],[121,-13,66,0.11442564031849546],[121,-13,67,0.11527514366808675],[121,-13,68,0.1161709603064659],[121,-13,69,0.11712656655732813],[121,-13,70,0.11815331011306311],[121,-13,71,0.11926013106796551],[121,-13,72,0.12045341248156942],[121,-13,73,0.12173688337431186],[121,-13,74,0.12311157426670424],[121,-13,75,0.12457582520223465],[121,-13,76,0.12612534601142925],[121,-13,77,0.12775332838528172],[121,-13,78,0.12945060913687154],[121,-13,79,0.13041894250826377],[121,-12,64,0.0437007537027561],[121,-12,65,0.05355803510655221],[121,-12,66,0.06457820746127127],[121,-12,67,0.07674875324348489],[121,-12,68,0.09005072058714061],[121,-12,69,0.1044560507498475],[121,-12,70,0.11680071162828544],[121,-12,71,0.11788390876971548],[121,-12,72,0.11905713354664808],[121,-12,73,0.12032395337964892],[121,-12,74,0.12168524532899845],[121,-12,75,0.12313918974550374],[121,-12,76,0.12468131904876144],[121,-12,77,0.1263046211820869],[121,-12,78,0.1279996970958895],[121,-12,79,0.12975497141974068],[121,-11,64,0.01901494624377651],[121,-11,65,0.0246867049262196],[121,-11,66,0.031316859859529124],[121,-11,67,0.038920724318260436],[121,-11,68,0.04750786985564482],[121,-11,69,0.057080016723072134],[121,-11,70,0.06762732481266251],[121,-11,71,0.07912879376985486],[121,-11,72,0.0915528283901506],[121,-11,73,0.1048578919527754],[121,-11,74,0.11899325766476519],[121,-11,75,0.12166992413990944],[121,-11,76,0.12320419858950714],[121,-11,77,0.12482177584983721],[121,-11,78,0.12651302341679632],[121,-11,79,0.12826611463650195],[121,-10,64,0.0059826086394279025],[121,-10,65,0.008571920196665321],[121,-10,66,0.011878673047595408],[121,-10,67,0.015941800782202007],[121,-10,68,0.020794182754087634],[121,-10,69,0.026461103244245644],[121,-10,70,0.032956525828230866],[121,-10,71,0.04028352856644937],[121,-10,72,0.04843488340069343],[121,-10,73,0.05739369086495039],[121,-10,74,0.06713407498235864],[121,-10,75,0.077621943436011],[121,-10,76,0.08881581739747768],[121,-10,77,0.10066773380849404],[121,-10,78,0.1131242205638277],[121,-10,79,0.1261273421174863],[121,-9,64,0.003869332858175958],[121,-9,65,0.004625980291665162],[121,-9,66,0.005373046085156084],[121,-9,67,0.006114106109043681],[121,-9,68,0.0068578606428088785],[121,-9,69,0.00905537895432677],[121,-9,70,0.012459315690153232],[121,-9,71,0.016532549354838225],[121,-9,72,0.021288286533777557],[121,-9,73,0.026729811745515596],[121,-9,74,0.03285118010941161],[121,-9,75,0.03963795786625298],[121,-9,76,0.04706801183587739],[121,-9,77,0.05511234910607676],[121,-9,78,0.06373600787054297],[121,-9,79,0.07289899940515729],[121,-8,64,0.002618608980796282],[121,-8,65,0.003361967282285222],[121,-8,66,0.0041033545719813555],[121,-8,67,0.004845576112188262],[121,-8,68,0.005596178848153388],[121,-8,69,0.0063661125697494735],[121,-8,70,0.007165104868285306],[121,-8,71,0.008001237235905094],[121,-8,72,0.008880682263984913],[121,-8,73,0.009807503653228314],[121,-8,74,0.012682754867705615],[121,-8,75,0.016590160542652055],[121,-8,76,0.021039168696270497],[121,-8,77,0.026017117051067247],[121,-8,78,0.031504762962987494],[121,-8,79,0.03747718510339716],[121,-7,64,0.0013722472184436749],[121,-7,65,0.002103465995971204],[121,-7,66,0.002840269707465441],[121,-7,67,0.003584664697267167],[121,-7,68,0.004342976056879997],[121,-7,69,0.0051250520017490555],[121,-7,70,0.005939655393193233],[121,-7,71,0.006794027764287728],[121,-7,72,0.007693616730296905],[121,-7,73,0.008641866635410543],[121,-7,74,0.009640072413225205],[121,-7,75,0.010687296512527878],[121,-7,76,0.011780348613147347],[121,-7,77,0.012913827729487293],[121,-7,78,0.014080226171745933],[121,-7,79,0.01643737648278634],[121,-6,64,1.338846834173633E-4],[121,-6,65,8.540878371605711E-4],[121,-6,66,0.0015872485864565312],[121,-6,67,0.002334550257706759],[121,-6,68,0.0031010467735141352],[121,-6,69,0.0038954098823607733],[121,-6,70,0.004725363184903589],[121,-6,71,0.00559723897682004],[121,-6,72,0.0065156996013946335],[121,-6,73,0.0074835218351030595],[121,-6,74,0.008501444277882924],[121,-6,75,0.009568077593257923],[121,-6,76,0.010679877316294247],[121,-6,77,0.011831178820031618],[121,-6,78,0.01301429390342902],[121,-6,79,0.014219668337904152],[121,-5,64,-0.0010933300823331722],[121,-5,65,-3.830875313008224E-4],[121,-5,66,3.471778960483401E-4],[121,-5,67,0.0010978072538394825],[121,-5,68,0.0018725548127594463],[121,-5,69,0.002678866211214942],[121,-5,70,0.0035233739055310727],[121,-5,71,0.0044114517542006805],[121,-5,72,0.0053469341891041544],[121,-5,73,0.006331897580754717],[121,-5,74,0.007366503763541889],[121,-5,75,0.008448905560971984],[121,-5,76,0.009575214024486748],[121,-5,77,0.010739526973110916],[121,-5,78,0.011934018294828729],[121,-5,79,0.013149087346134411],[121,-4,64,-0.0023068672021811214],[121,-4,65,-0.0016056379429794227],[121,-4,66,-8.777430729429218E-4],[121,-4,67,-1.2369762507998238E-4],[121,-4,68,6.589464176968508E-4],[121,-4,69,0.001476385859890402],[121,-4,70,0.0023341343681146567],[121,-4,71,0.0032365796378331004],[121,-4,72,0.004186704320422042],[121,-4,73,0.005185867678108117],[121,-4,74,0.006233647927233131],[121,-4,75,0.007327745106098112],[121,-4,76,0.008463944179198428],[121,-4,77,0.009636137965563838],[121,-4,78,0.010836409355080238],[121,-4,79,0.01205517215502848],[121,-3,64,-0.00350488172460082],[121,-3,65,-0.002811861709800955],[121,-3,66,-0.0020860582759772593],[121,-3,67,-0.0013288504287615895],[121,-3,68,-5.390807470571633E-4],[121,-3,69,2.8820374366810177E-4],[121,-3,70,0.0011573953287829632],[121,-3,71,0.002071889995382358],[121,-3,72,0.003033814023805283],[121,-3,73,0.004043809238531468],[121,-3,74,0.005100876873692163],[121,-3,75,0.006202279887243296],[121,-3,76,0.007343503436610173],[121,-3,77,0.00851827310797287],[121,-3,78,0.00971863037129455],[121,-3,79,0.010935064615632163],[121,-2,64,-0.004686214581655318],[121,-2,65,-0.0040007763987770836],[121,-2,66,-0.003277048240687352],[121,-2,67,-0.0025172747182979783],[121,-2,68,-0.0017215514765718438],[121,-2,69,-8.861367874002366E-4],[121,-2,70,-7.737296208946066E-6],[121,-2,71,9.160679172810337E-4],[121,-2,72,0.0018865633777284598],[121,-2,73,0.002903689282638343],[121,-2,74,0.003965889551005366],[121,-2,75,0.0050700156855673015],[121,-2,76,0.00621128616526781],[121,-2,77,0.007383300968548151],[121,-2,78,0.008578110712986352],[121,-2,79,0.009786339784518655],[121,-1,64,-0.005850326741373982],[121,-1,65,-0.005172051931117325],[121,-1,66,-0.004450659442964272],[121,-1,67,-0.0036892547788503127],[121,-1,68,-0.0028891284941876295],[121,-1,69,-0.0020476911453129114],[121,-1,70,-0.0011627017073236664],[121,-1,71,-2.3267620306104253E-4],[121,-1,72,7.428613298457237E-4],[121,-1,73,0.0017631807687705304],[121,-1,74,0.0028262006786595917],[121,-1,75,0.003928395761766564],[121,-1,76,0.005064756707657648],[121,-1,77,0.006228802056400917],[121,-1,78,0.007412641578831619],[121,-1,79,0.008607090571852431],[121,0,64,-0.006997165036156398],[121,0,65,-0.00632587651632785],[121,0,66,-0.0056073682916322155],[121,0,67,-0.00484559589269314],[121,0,68,-0.004042968206122891],[121,0,69,-0.0031979650840045387],[121,0,70,-0.0023093289024171664],[121,0,71,-0.0013764544479055462],[121,0,72,-3.996237051983857E-4],[121,0,73,6.198086898115496E-4],[121,0,74,0.0016792792737652764],[121,0,75,0.002774928693058124],[121,0,76,0.003901563486733785],[121,0,77,0.00505266634381572],[121,0,78,0.006220454361872485],[121,0,79,0.007395984734950387],[121,1,64,-0.008126958655318692],[121,1,65,-0.0074627546659869455],[121,1,66,-0.006747979160020833],[121,1,67,-0.005987421247380971],[121,1,68,-0.0051845164006197675],[121,1,69,-0.004338710351809112],[121,1,70,-0.0034496404283720582],[121,1,71,-0.002517504103365528],[121,1,72,-0.001543274929015151],[121,1,73,-5.288730359695733E-4],[121,1,74,5.227097401685065E-4],[121,1,75,0.0016073299457439205],[121,1,76,0.002719657552874871],[121,1,77,0.0038531856079603265],[121,1,78,0.00500028403850774],[121,1,79,0.006152297081250513],[121,2,64,-0.004767006120473622],[121,2,65,-0.007290598867163452],[121,2,66,-0.007873356509972658],[121,2,67,-0.007115905625277657],[121,2,68,-0.006315243993850385],[121,2,69,-0.0054716643376000055],[121,2,70,-0.004585594813315965],[121,2,71,-0.0036579445115805277],[121,2,72,-0.002690298546392907],[121,2,73,-0.0016850718418402436],[121,2,74,-6.456216802369817E-4],[121,2,75,4.236808341681314E-4],[121,2,76,0.0015174201527531142],[121,2,77,0.0026291461707395117],[121,2,78,0.0037514242097516927],[121,2,79,0.004875924596215904],[121,3,64,-8.324728266094957E-4],[121,3,65,-0.0016340656485144777],[121,3,66,-0.002723192367740349],[121,3,67,-0.004163779710028099],[121,3,68,-0.00600688090621005],[121,3,69,-0.006598222496768505],[121,3,70,-0.005718773260789231],[121,3,71,-0.004799481276594668],[121,3,72,-0.0038424521757796084],[121,3,73,-0.0028505149857796005],[121,3,74,-0.0018273212123305963],[121,3,75,-7.774070713427189E-4],[121,3,76,2.93780901708488E-4],[121,3,77,0.0013798965579774358],[121,3,78,0.002473740773149861],[121,3,79,0.0035673435596721022],[121,4,64,-3.089282865343316E-4],[121,4,65,-4.8602898175907004E-4],[121,4,66,-6.544684798907831E-4],[121,4,67,-9.013032099089703E-4],[121,4,68,-0.0013000765660974593],[121,4,69,-0.0019086152135082402],[121,4,70,-0.002774199586268087],[121,4,71,-0.003934693135608524],[121,4,72,-0.00500073594796555],[121,4,73,-0.00402617858239527],[121,4,74,-0.003023260885592795],[121,4,75,-0.0019966155264914847],[121,4,76,-9.51661337820072E-4],[121,4,77,1.0540835906591242E-4],[121,4,78,0.0011676692386613508],[121,4,79,0.0022275408502867196],[121,5,64,5.421017471922023E-4],[121,5,65,-1.0852920849901187E-4],[121,5,66,-4.2892009284240163E-4],[121,5,67,-5.292297071487475E-4],[121,5,68,-5.054140204909882E-4],[121,5,69,-4.369578089593963E-4],[121,5,70,-3.921224217868137E-4],[121,5,71,-4.2901742183463646E-4],[121,5,72,-5.965283917282335E-4],[121,5,73,-9.352144270840095E-4],[121,5,74,-0.001478170955020959],[121,5,75,-0.002251853753811574],[121,5,76,-0.0022185127428189615],[121,5,77,-0.0011936678927121104],[121,5,78,-1.658028692009866E-4],[121,5,79,8.579204400481957E-4],[121,6,64,0.005460883900420642],[121,6,65,0.003238256714443347],[121,6,66,0.001692880876854128],[121,6,67,6.915347652824266E-4],[121,6,68,1.1589585992777893E-4],[121,6,69,-1.351443880277706E-4],[121,6,70,-1.5082214777531884E-4],[121,6,71,-9.51709492240348E-6],[121,6,72,2.2037245015920102E-4],[121,6,73,4.7957860355203656E-4],[121,6,74,7.171416202513132E-4],[121,6,75,8.896201083816142E-4],[121,6,76,9.603373108014456E-4],[121,6,77,8.986667279875367E-4],[121,6,78,6.793600634422503E-4],[121,6,79,2.8192014217793155E-4],[121,7,64,0.018188968034172377],[121,7,65,0.013296570531988914],[121,7,66,0.00945333079203105],[121,7,67,0.00650334041525223],[121,7,68,0.004306101857750232],[121,7,69,0.0027389648228987092],[121,7,70,0.0016917342629749464],[121,7,71,0.0010657306084127186],[121,7,72,7.729743981426548E-4],[121,7,73,7.353821353199804E-4],[121,7,74,8.839818499817668E-4],[121,7,75,0.0011581544161456902],[121,7,76,0.001504905172566796],[121,7,77,0.0018781694667400711],[121,7,78,0.0022381551366373272],[121,7,79,0.0025507245076443422],[121,8,64,0.042454207551792106],[121,8,65,0.03380366291472962],[121,8,66,0.02659510677075792],[121,8,67,0.020651991500218833],[121,8,68,0.01581287466813643],[121,8,69,0.011934252199257235],[121,8,70,0.00888532814370596],[121,8,71,0.006547270860698757],[121,8,72,0.00481253171098773],[121,8,73,0.0035841315087965005],[121,8,74,0.0027749378214888677],[121,8,75,0.0023069488353237473],[121,8,76,0.002110594538707636],[121,8,77,0.0021240626701487697],[121,8,78,0.002292654697997788],[121,8,79,0.0025681756591841762],[121,9,64,0.07689307527526976],[121,9,65,0.06843550963367943],[121,9,66,0.05682230956428868],[121,9,67,0.04685967922633067],[121,9,68,0.03836990819475428],[121,9,69,0.03119168595150212],[121,9,70,0.025175563387745948],[121,9,71,0.02018374523896501],[121,9,72,0.01608978287973619],[121,9,73,0.012778118032318653],[121,9,74,0.01014353488504178],[121,9,75,0.008090561194766586],[121,9,76,0.006532846799872779],[121,9,77,0.005392539345226],[121,9,78,0.004599670959450254],[121,9,79,0.004091565404864742],[121,10,64,0.07474035984453942],[121,10,65,0.07453492017896649],[121,10,66,0.07442954547991883],[121,10,67,0.07441385880616622],[121,10,68,0.0744794896796556],[121,10,69,0.06419900551208343],[121,10,70,0.05427268926739068],[121,10,71,0.045700503623631865],[121,10,72,0.03834014625787457],[121,10,73,0.032059463035568364],[121,10,74,0.02673637731462215],[121,10,75,0.02225862823388817],[121,10,76,0.01852338433936322],[121,10,77,0.015436780564904416],[121,10,78,0.012913413067323342],[121,10,79,0.010875816536008795],[121,11,64,0.07257492827425327],[121,11,65,0.07231938717914414],[121,11,66,0.07216089540053691],[121,11,67,0.07208897626711751],[121,11,68,0.07209521220604652],[121,11,69,0.07217608389044251],[121,11,70,0.07232809813965814],[121,11,71,0.07254758433000995],[121,11,72,0.07283063230003028],[121,11,73,0.06511643626259621],[121,11,74,0.05626256308085296],[121,11,75,0.048534751936533144],[121,11,76,0.04181582780573661],[121,11,77,0.035997267526301883],[121,11,78,0.030979010666375015],[121,11,79,0.02666916069415236],[121,12,64,0.0704035344806352],[121,12,65,0.07009754354928545],[121,12,66,0.06988524374625048],[121,12,67,0.0697562760691827],[121,12,68,0.06970230807160291],[121,12,69,0.06971980376823975],[121,12,70,0.06980528526670499],[121,12,71,0.06995514176147519],[121,12,72,0.07016557462678358],[121,12,73,0.07043255297252801],[121,12,74,0.07075177967008206],[121,12,75,0.07111866782551735],[121,12,76,0.0715283276489885],[121,12,77,0.07074949596142528],[121,12,78,0.06249373033373961],[121,12,79,0.05518456079535598],[121,13,64,0.06823399109247476],[121,13,65,0.06787761849276806],[121,13,66,0.06761126469194462],[121,13,67,0.06742490569319472],[121,13,68,0.0673104201995443],[121,13,69,0.06726427883174643],[121,13,70,0.06728302344699884],[121,13,71,0.067363093675201],[121,13,72,0.06750078198844493],[121,13,73,0.06769219700752173],[121,13,74,0.0679332350585645],[121,13,75,0.06821955996955083],[121,13,76,0.06854659107343579],[121,13,77,0.0689094993624242],[121,13,78,0.06930321171697212],[121,13,79,0.06972242311325708],[121,14,64,0.06607629023708254],[121,14,65,0.06567000897936497],[121,14,66,0.0653497709741162],[121,14,67,0.0651060900646681],[121,14,68,0.06493116674264075],[121,14,69,0.06482148549811717],[121,14,70,0.0647735952657215],[121,14,71,0.06478395959072701],[121,14,72,0.06484892548046646],[121,14,73,0.06496469795827765],[121,14,74,0.06512732033556473],[121,14,75,0.06533266020101328],[121,14,76,0.0655764011096786],[121,14,77,0.06585403993878598],[121,14,78,0.06616088986221046],[121,14,79,0.06649208888141],[121,15,64,0.06394385369703229],[121,15,65,0.06348846594453979],[121,15,66,0.06311480232623949],[121,15,67,0.06281408999312321],[121,15,68,0.0625789406647999],[121,15,69,0.062405845044163966],[121,15,70,0.06229133363145085],[121,15,71,0.06223185712689877],[121,15,72,0.062223773377850344],[121,15,73,0.062263337058588074],[121,15,74,0.062346692097664455],[121,15,75,0.06246986685901584],[121,15,76,0.0626287720746375],[121,15,77,0.06281920151820229],[121,15,78,0.06303683540125801],[121,15,79,0.06327724646610305],[121,16,64,0.06185014802257065],[121,16,65,0.06134653469965232],[121,16,66,0.060919848899829675],[121,16,67,0.06056217653085278],[121,16,68,0.06026661727892136],[121,16,69,0.06002966351859479],[121,16,70,0.05984781200757161],[121,16,71,0.05971747985975484],[121,16,72,0.05963501285002628],[121,16,73,0.05959669308749545],[121,16,74,0.05959874606947191],[121,16,75,0.05963734712908534],[121,16,76,0.05970862728978796],[121,16,77,0.05980867854001532],[121,16,78,0.05993355854153759],[121,16,79,0.060079294784989454],[121,17,64,0.05980147352198961],[121,17,65,0.059250532409144775],[121,17,66,0.05877114498127572],[121,17,67,0.05835637206796762],[121,17,68,0.0579998679629594],[121,17,69,0.057698129858083765],[121,17,70,0.057447619742729474],[121,17,71,0.057244719702872024],[121,17,72,0.0570857635886763],[121,17,73,0.056967064378892616],[121,17,74,0.05688493725148771],[121,17,75,0.05683571838057777],[121,17,76,0.05681577948958941],[121,17,77,0.05682153819972235],[121,17,78,0.05684946422164823],[121,17,79,0.05689608144637278],[121,18,64,0.057796880332945264],[121,18,65,0.05719952039997276],[121,18,66,0.05666772155284289],[121,18,67,0.05619560677965112],[121,18,68,0.05577744113348117],[121,18,69,0.0554097369385344],[121,18,70,0.05508893251395351],[121,18,71,0.05481138912184364],[121,18,72,0.05457344693675113],[121,18,73,0.05437147282136075],[121,18,74,0.05420189991571888],[121,18,75,0.05406125906836637],[121,18,76,0.05394620215762066],[121,18,77,0.05385351736989937],[121,18,78,0.05378013651977781],[121,18,79,0.0537231345128028],[121,19,64,0.0552685640157721],[121,19,65,0.05487742373638009],[121,19,66,0.05449461156864426],[121,19,67,0.05407277848919597],[121,19,68,0.05359219123680214],[121,19,69,0.053157271107378064],[121,19,70,0.05276445393495478],[121,19,71,0.052410106710053785],[121,19,72,0.05209060789246893],[121,19,73,0.05180241550952643],[121,19,74,0.05154212304624675],[121,19,75,0.0513065031655766],[121,19,76,0.05109253932689607],[121,19,77,0.05089744539929082],[121,19,78,0.05071867339293576],[121,19,79,0.0505539094566857],[121,20,64,0.0516100201003376],[121,20,65,0.0511600893072586],[121,20,66,0.050724774241423555],[121,20,67,0.05030886755072373],[121,20,68,0.04991741032240384],[121,20,69,0.04955394603415027],[121,20,70,0.049221670475440765],[121,20,71,0.048923375163760795],[121,20,72,0.048661368507541686],[121,20,73,0.0484374127945183],[121,20,74,0.048252676999938064],[121,20,75,0.048107705368029365],[121,20,76,0.04800240167970016],[121,20,77,0.047936029080182734],[121,20,78,0.047656028269135724],[121,20,79,0.04738004777059173],[121,21,64,0.04785547172452784],[121,21,65,0.04734540015571545],[121,21,66,0.04685667811584264],[121,21,67,0.04639300151970862],[121,21,68,0.045958771562781615],[121,21,69,0.04555753490729292],[121,21,70,0.04519252111261305],[121,21,71,0.04486654382273914],[121,21,72,0.044581898759313614],[121,21,73,0.044340281590724825],[121,21,74,0.04414272566978118],[121,21,75,0.04398955958077717],[121,21,76,0.04388038438598418],[121,21,77,0.043814070412392284],[121,21,78,0.0437887733729338],[121,21,79,0.043801969572442326],[121,22,64,0.04402585851976944],[121,22,65,0.04345432296963625],[121,22,66,0.04291121190202448],[121,22,67,0.04239914388394636],[121,22,68,0.04192186772728943],[121,22,69,0.04148290136012982],[121,22,70,0.04108546768898301],[121,22,71,0.04073235566389828],[121,22,72,0.040425796920363376],[121,22,73,0.040167366226655815],[121,22,74,0.039957905725408346],[121,22,75,0.03979747289607601],[121,22,76,0.03968531210416688],[121,22,77,0.03961984954430622],[121,22,78,0.039598711328572865],[121,22,79,0.03961876441915379],[121,23,64,0.04014403138841859],[121,23,65,0.039509753733638256],[121,23,66,0.038911192794889464],[121,23,67,0.038349933210687304],[121,23,68,0.03782907030768709],[121,23,69,0.037352058366429006],[121,23,70,0.0369220701678417],[121,23,71,0.03654182087239306],[121,23,72,0.03621342553918657],[121,23,73,0.035938284180566646],[121,23,74,0.03571699433550276],[121,23,75,0.035549291073036365],[121,23,76,0.03543401426678875],[121,23,77,0.03536910291377608],[121,23,78,0.035351616206758606],[121,23,79,0.03537778100919462],[121,24,64,0.036233819783914455],[121,24,65,0.0355355857105459],[121,24,66,0.034880441773482526],[121,24,67,0.034269004385806094],[121,24,68,0.03370372548501316],[121,24,69,0.03318795880779095],[121,24,70,0.03272478196305365],[121,24,71,0.032316786781385116],[121,24,72,0.03196592025880779],[121,24,73,0.03167335649464543],[121,24,74,0.031439399599608384],[121,24,75,0.03126341746909993],[121,24,76,0.031143806237822626],[121,24,77,0.031077985155914513],[121,24,78,0.031062421555299386],[121,24,79,0.031092685507856623],[121,25,64,0.03231913939194008],[121,25,65,0.0315558168686],[121,25,66,0.03084289696676768],[121,25,67,0.030180113810285732],[121,25,68,0.029569296874858483],[121,25,69,0.02901366150701971],[121,25,70,0.028516144895458884],[121,25,71,0.02807916715490849],[121,25,72,0.027704458478937148],[121,25,73,0.02739292040900091],[121,25,74,0.027144521187331485],[121,25,75,0.02695822507196768],[121,25,76,0.02683195540572758],[121,25,77,0.026762591148032384],[121,25,78,0.02674599650046472],[121,25,79,0.026777083183931134],[121,26,64,0.028423141743204438],[121,26,65,0.027593698256196227],[121,26,66,0.02682176654104397],[121,26,67,0.02610630223377917],[121,26,68,0.025448543544785082],[121,26,69,0.024851529669147502],[121,26,70,0.024318013194848415],[121,26,71,0.023850196677752414],[121,26,72,0.023449548947923816],[121,26,73,0.023116658261659553],[121,26,74,0.022851122257176976],[121,26,75,0.022651474575686042],[121,26,76,0.022515147916698147],[121,26,77,0.02243847320771488],[121,26,78,0.022416714485103788],[121,26,79,0.02244413900512408],[121,27,64,0.024567407455730234],[121,27,65,0.023670924996762932],[121,27,66,0.022838722736510556],[121,27,67,0.022069096788759342],[121,27,68,0.021362734784735007],[121,27,69,0.02072246310937301],[121,27,70,0.02015080780670065],[121,27,71,0.019649711774099906],[121,27,72,0.019220343253158252],[121,27,73,0.018862943456782817],[121,27,74,0.01857671328017143],[121,27,75,0.018359738941438903],[121,27,76,0.018208956299800367],[121,27,77,0.018120153506003357],[121,27,78,0.01808801155231135],[121,27,79,0.018106182207831837],[121,28,64,0.020771184889508392],[121,28,65,0.01980687166373909],[121,28,66,0.018913138769534567],[121,28,67,0.018087753878537564],[121,28,68,0.017330903200779027],[121,28,69,0.016645165735452],[121,28,70,0.01603280234902786],[121,28,71,0.015495458959908417],[121,28,72,0.015033970258193934],[121,28,73,0.014648204378657485],[121,28,74,0.014336948463879695],[121,28,75,0.014097834948564545],[121,28,76,0.01392730829456673],[121,28,77,0.013820631809813296],[121,28,78,0.013771934094148905],[121,28,79,0.013774294571155027],[121,29,64,0.017050676004269617],[121,29,65,0.016017873804606755],[121,29,66,0.01506137032776596],[121,29,67,0.01417854458478666],[121,29,68,0.013369137716692842],[121,29,69,0.012635449768024784],[121,29,70,0.011979442082470922],[121,29,71,0.011402431953661831],[121,29,72,0.010904894556317548],[121,29,73,0.010486307152153127],[121,29,74,0.010145035496981864],[121,29,75,0.009878262266872813],[121,29,76,0.009681957217569835],[121,29,77,0.00955088869325378],[121,29,78,0.009478676009088447],[121,29,79,0.009457882146707775],[121,30,64,0.013418376319268415],[121,30,65,0.012316562711783604],[121,30,66,0.01129608893483209],[121,30,67,0.010354090029945634],[121,30,68,0.009489924056688626],[121,30,69,0.008705584388959244],[121,30,70,0.008002703679462432],[121,30,71,0.007382245406867659],[121,30,72,0.006844306858663546],[121,30,73,0.006387965207433865],[121,30,74,0.006011166597010916],[121,30,75,0.005710658045198647],[121,30,76,0.00548196186533877],[121,30,77,0.005319392210397055],[121,30,78,0.005216113251326462],[121,30,79,0.00516423841599174],[121,31,64,0.009883840622192379],[121,31,65,0.00871268260101322],[121,31,66,0.007627153482960738],[121,31,67,0.006624289684141193],[121,31,68,0.005703131873975717],[121,31,69,0.004865343572300031],[121,31,70,0.004112205484662417],[121,31,71,0.0034443091663369564],[121,31,72,0.0028613636671839453],[121,31,73,0.002362045593854814],[121,31,74,0.001943892496730285],[121,31,75,0.0016032393794233935],[121,31,76,0.001335198024784361],[121,31,77,0.0011336787334790333],[121,31,78,9.914539801238035E-4],[121,31,79,9.002634073108803E-4],[121,32,64,0.006455133191445169],[121,32,65,0.005214611216905919],[121,32,66,0.004063203405358033],[121,32,67,0.002997988782638106],[121,32,68,0.0020177576723683782],[121,32,69,0.001123825558143939],[121,32,70,3.1710441680580967E-4],[121,32,71,-4.021966704875614E-4],[121,32,72,-0.0010347589296509573],[121,32,73,-0.0015822980333908571],[121,32,74,-0.0020476650696515087],[121,32,75,-0.0024349045472894294],[121,32,76,-0.0027492697496957434],[121,32,77,-0.0029971958431648394],[121,32,78,-0.0031862312361016195],[121,32,79,-0.0033249277680932584],[121,33,64,0.0031357456354441297],[121,33,65,0.001826152766219769],[121,33,66,6.083295274360727E-4],[121,33,67,-5.204703662157933E-4],[121,33,68,-0.0015616410981116175],[121,33,69,-0.0025142279340738954],[121,33,70,-0.0033776973104408174],[121,33,71,-0.004152225035645335],[121,33,72,-0.0048388759171240445],[121,33,73,-0.005439740688327978],[121,33,74,-0.005958030342400937],[121,33,75,-0.006398128084673036],[121,33,76,-0.00676559921569813],[121,33,77,-0.0070671593499871425],[121,33,78,-0.007310601462293097],[121,33,79,-0.007504682333799988],[121,34,64,-7.629414994984883E-5],[121,34,65,-0.0014543822627390707],[121,34,66,-0.0027388735846462587],[121,34,67,-0.003932222257264338],[121,34,68,-0.00503594524518344],[121,34,69,-0.006049455478970709],[121,34,70,-0.006972599823235839],[121,34,71,-0.007805932661434053],[121,34,72,-0.008550886467853371],[121,34,73,-0.00920990061438549],[121,34,74,-0.009786508522843459],[121,34,75,-0.010285383375825621],[121,34,76,-0.010712342695337638],[121,34,77,-0.011074312188501462],[121,34,78,-0.011379249343207578],[121,34,79,-0.011636027334085015],[121,35,64,-0.0031888120305809484],[121,35,65,-0.004634578130105268],[121,35,66,-0.005985718675710646],[121,35,67,-0.007244298766335518],[121,35,68,-0.008411903839643641],[121,35,69,-0.00948831546435803],[121,35,70,-0.010473754775655767],[121,35,71,-0.011369139069404417],[121,35,72,-0.012176242768312095],[121,35,73,-0.012897817836191584],[121,35,74,-0.013537673752950747],[121,35,75,-0.014100717261268164],[121,35,76,-0.014592952188299944],[121,35,77,-0.015021439732176034],[121,35,78,-0.015394219683043258],[121,35,79,-0.01572019312263251],[121,36,64,-0.006215819393289848],[121,36,65,-0.007728257800508673],[121,36,66,-0.009145781596797693],[121,36,67,-0.010469996909967189],[121,36,68,-0.01170251448776187],[121,36,69,-0.012843479632714747],[121,36,70,-0.013893472981671923],[121,36,71,-0.014853749062485008],[121,36,72,-0.015726387995319436],[121,36,73,-0.016514408027353492],[121,36,74,-0.017221839012514145],[121,36,75,-0.017853757042150097],[121,36,76,-0.01841628052095616],[121,36,77,-0.01891652806506905],[121,36,78,-0.019362538675638606],[121,36,79,-0.01976315471202842],[121,37,64,-0.009177785094281549],[121,37,65,-0.010755768327018226],[121,37,66,-0.012239200381399327],[121,37,67,-0.01362919237350528],[121,37,68,-0.01492735252017435],[121,37,69,-0.016134179372199648],[121,37,70,-0.017250589310984672],[121,37,71,-0.018278137647723725],[121,37,72,-0.01921916249157536],[121,37,73,-0.020076890877901356],[121,37,74,-0.020855507263825183],[121,37,75,-0.021560184588714185],[121,37,76,-0.022197078181849052],[121,37,77,-0.022773282878570143],[121,37,78,-0.0220865230815353],[121,37,79,-0.020274293603813977],[121,38,64,-0.01210104327069347],[121,38,65,-0.01374339017058713],[121,38,66,-0.015292090161173352],[121,38,67,-0.016747762586929733],[121,38,68,-0.01811200470603266],[121,38,69,-0.019385653570542474],[121,38,70,-0.020569929050597555],[121,38,71,-0.021666639949305885],[121,38,72,-0.022678322756843863],[121,38,73,-0.023608343981179128],[121,38,74,-0.02446096615403273],[121,38,75,-0.02481359893654799],[121,38,76,-0.023061884276238738],[121,38,77,-0.021293592696979058],[121,38,78,-0.019517864621141818],[121,38,79,-0.017744434138295604],[121,39,64,-0.015000312757631768],[121,39,65,-0.01670558896914231],[121,39,66,-0.018318595817164714],[121,39,67,-0.019839466512139723],[121,39,68,-0.021164213457239425],[121,39,69,-0.022233458730462587],[121,39,70,-0.023239803736760645],[121,39,71,-0.024184454976358485],[121,39,72,-0.025069168630015768],[121,39,73,-0.024315314834610656],[121,39,74,-0.022495813468617204],[121,39,75,-0.020666053899570196],[121,39,76,-0.018832356218610097],[121,39,77,-0.017001672045352523],[121,39,78,-0.015181519136596688],[121,39,79,-0.013379882091094048],[121,40,64,-0.01787631005014054],[121,40,65,-0.019255223556298186],[121,40,66,-0.020518131978570546],[121,40,67,-0.021715835574068965],[121,40,68,-0.022849497282139076],[121,40,69,-0.02392011038440127],[121,40,70,-0.0249288043626212],[121,40,71,-0.023534980236447515],[121,40,72,-0.02171254895417435],[121,40,73,-0.01987120471170766],[121,40,74,-0.018016041465912996],[121,40,75,-0.016152745240472447],[121,40,76,-0.014287602388628943],[121,40,77,-0.012427474002821747],[121,40,78,-0.010579736828367197],[121,40,79,-0.008752191116493674],[121,41,64,-0.019547174552638723],[121,41,65,-0.02087106564957678],[121,41,66,-0.022131576536827832],[121,41,67,-0.023327495482475636],[121,41,68,-0.02446002509342838],[121,41,69,-0.022805808572277275],[121,41,70,-0.02099260919014692],[121,41,71,-0.019153904486550244],[121,41,72,-0.01729398014843734],[121,41,73,-0.0154175063784165],[121,41,74,-0.013529620322740337],[121,41,75,-0.011635974948729299],[121,41,76,-0.00974275453543692],[121,41,77,-0.007856657027135937],[121,41,78,-0.005984843581514671],[121,41,79,-0.004134855721333328],[121,42,64,-0.0211055015145688],[121,42,65,-0.02242258453622572],[121,42,66,-0.023677810853122098],[121,42,67,-0.022120171850238186],[121,42,68,-0.020325473561497807],[121,42,69,-0.018499021182614244],[121,42,70,-0.01664514771024967],[121,42,71,-0.01476818596522516],[121,42,72,-0.012872625402437117],[121,42,73,-0.010963235985141507],[121,42,74,-0.009045159081914186],[121,42,75,-0.007123965434519259],[121,42,76,-0.005205680332826694],[121,42,77,-0.0032967762179048833],[121,42,78,-0.0014041330158923414],[121,42,79,4.6503341874470553E-4],[121,43,64,-0.02260625939135212],[121,43,65,-0.02147255543700436],[121,43,66,-0.019707445999537988],[121,43,67,-0.017903392532568948],[121,43,68,-0.016064425829960684],[121,43,69,-0.014195663546125878],[121,43,70,-0.012301912362840194],[121,43,71,-0.010387839720640968],[121,43,72,-0.008458140369044315],[121,43,73,-0.0065176705508536055],[121,43,74,-0.004571549747740648],[121,43,75,-0.002625230003657005],[121,43,76,-6.845329300494649E-4],[121,43,77,0.0012443454186478865],[121,43,78,0.0031548615297709234],[121,43,79,0.005040182932403201],[121,44,64,-0.01913596022011491],[121,44,65,-0.017361035907958716],[121,44,66,-0.015548880225386221],[121,44,67,-0.013699177394218814],[121,44,68,-0.01181607663679114],[121,44,69,-0.009905367552480088],[121,44,70,-0.007972376485760548],[121,44,71,-0.006022133384368457],[121,44,72,-0.00405955018109794],[121,44,73,-0.002089567307799174],[121,44,74,-1.1726823313728747E-4],[121,44,75,0.0018520379953388321],[121,44,76,0.003812766137137762],[121,44,77,0.005759035920830364],[121,44,78,0.007684684749345537],[121,44,79,0.009583311640325958],[121,45,64,-0.015093358584202568],[121,45,65,-0.013269233693588152],[121,45,66,-0.01141008739727457],[121,45,67,-0.00951487959531728],[121,45,68,-0.00758789941543596],[121,45,69,-0.005635674747420627],[121,45,70,-0.003664101978406029],[121,45,71,-0.0016786081464692036],[121,45,72,3.1565731350905075E-4],[121,45,73,0.0023136622237587643],[121,45,74,0.004310362865260301],[121,45,75,0.006300606786374785],[121,45,76,0.008279067190759425],[121,45,77,0.010240208792648087],[121,45,78,0.012178284946711014],[121,45,79,0.014087365784081287],[121,46,64,-0.011073038496295486],[121,46,65,-0.009200082220107065],[121,46,66,-0.00729439295812131],[121,46,67,-0.005354176779343074],[121,46,68,-0.0033838919648860734],[121,46,69,-0.0013908708991779276],[121,46,70,6.183671658394148E-4],[121,46,71,0.002637958870941565],[121,46,72,0.004662490689533793],[121,46,73,0.006686823777978854],[121,46,74,0.008705949927045277],[121,46,75,0.010714878716833178],[121,46,76,0.012708555890693092],[121,46,77,0.01468181287942901],[121,46,78,0.016629347326058728],[121,46,79,0.018545734385468873],[121,47,64,-0.007077439348038069],[121,47,65,-0.005156508057001085],[121,47,66,-0.0032051579564579794],[121,47,67,-0.0012208333177347308],[121,47,68,7.918016429062066E-4],[121,47,69,0.002824546705987886],[121,47,70,0.004870207080202333],[121,47,71,0.006922441590747505],[121,47,72,0.008975541924386765],[121,47,73,0.011024242224661236],[121,47,74,0.013063559273286717],[121,47,75,0.015088663405874368],[121,47,76,0.017094780223480606],[121,47,77,0.019077123077287452],[121,47,78,0.021030856222550586],[121,47,79,0.022951088461674745],[121,48,64,-0.0031258382959631023],[121,48,65,-0.0011579057743805687],[121,48,66,8.382028589152813E-4],[121,48,67,0.0028657989060536736],[121,48,68,0.004919976007247079],[121,48,69,0.006991613566552236],[121,48,70,0.0090727946026401],[121,48,71,0.011156660048921086],[121,48,72,0.01323717344197522],[121,48,73,0.015308915325357757],[121,48,74,0.017366907651719932],[121,48,75,0.019406468378836535],[121,48,76,0.02142309636875633],[121,48,77,0.023412386615134194],[121,48,78,0.025369975742491294],[121,48,79,0.026990649469206856],[121,49,64,7.601130843557812E-4],[121,49,65,0.0027740335891978498],[121,49,66,0.004814057380640646],[121,49,67,0.006884232030215454],[121,49,68,0.008979375834919636],[121,49,69,0.011089409259846632],[121,49,70,0.013205655392016544],[121,49,71,0.015320701108593357],[121,49,72,0.017428147803877036],[121,49,73,0.09731422429652133],[121,49,74,0.10758894243501098],[121,49,75,0.11772899889274983],[121,49,76,0.02567796957735065],[121,49,77,0.02754041003323142],[121,49,78,0.029126902010343167],[121,49,79,0.030682733732119463],[121,50,64,0.02280432365965281],[121,50,65,0.03309064021318759],[121,50,66,0.04349141822786466],[121,50,67,0.05402789470385036],[121,50,68,0.012951392560144447],[121,50,69,0.015099568654629898],[121,50,70,0.086048422681012],[121,50,71,0.09669290319953244],[121,50,72,0.10725771907712826],[121,50,73,0.1177121733598921],[121,50,74,0.12802969698253702],[121,50,75,0.13708917236249363],[121,50,76,0.14557589880199606],[121,50,77,0.15388685637823815],[121,50,78,0.032685563136421236],[121,50,79,0.03432619627148379],[121,51,64,0.04129124775678349],[121,51,65,0.051782025035118716],[121,51,66,0.06237529715400037],[121,51,67,0.07309525608670635],[121,51,68,0.08391001283734636],[121,51,69,0.09475679647881673],[121,51,70,0.10558201491267169],[121,51,71,0.11622220527534126],[121,51,72,0.12574795431383867],[121,51,73,0.13507579931324873],[121,51,74,0.14421823475861226],[121,51,75,0.15318469452594],[121,51,76,0.16198238182525604],[121,51,77,0.17061695168746355],[121,51,78,0.1790930460326971],[121,51,79,0.18741468244624218],[121,52,64,0.05576609366131394],[121,52,65,0.06747199791521855],[121,52,66,0.07887022769181916],[121,52,67,0.08991384694006775],[121,52,68,0.10061721681287784],[121,52,69,0.11102917396039025],[121,52,70,0.12118911509940032],[121,52,71,0.13112760533664108],[121,52,72,0.14086784013608833],[121,52,73,0.15042697712964317],[121,52,74,0.15981733141300716],[121,52,75,0.16904742988989177],[121,52,76,0.17812292181155398],[121,52,77,0.18704734403011786],[121,52,78,0.19582274070948968],[121,52,79,0.20445013835291004],[121,53,64,0.06953620461333114],[121,53,65,0.08137592180155397],[121,53,66,0.09291136026781546],[121,53,67,0.1040929781262009],[121,53,68,0.11493679515961334],[121,53,69,0.12549599612456133],[121,53,70,0.1358133983695607],[121,53,71,0.14592203742737428],[121,53,72,0.1558466905429565],[121,53,73,0.1656052730139011],[121,53,74,0.17521010096323908],[121,53,75,0.18466901600190294],[121,53,76,0.19398636874066963],[121,53,77,0.2031638594210406],[121,53,78,0.21220123512630673],[121,53,79,0.2210968441463454],[121,54,64,0.08334278063419737],[121,54,65,0.09530004661082965],[121,54,66,0.106954063213457],[121,54,67,0.11825313154061866],[121,54,68,0.1292150045394886],[121,54,69,0.13989701011143688],[121,54,70,0.15034526846654],[121,54,71,0.16059525528512728],[121,54,72,0.17067337808248798],[121,54,73,0.18059842810350576],[121,54,74,0.18770143852689197],[121,54,75,0.19283256701302062],[121,54,76,0.20916518971490924],[121,54,77,0.21894733154028012],[121,54,78,0.22820714826353528],[121,54,79,0.23733107556459015],[121,55,64,0.09716518898297488],[121,55,65,0.10922388263414792],[121,55,66,0.12097799680207817],[121,55,67,0.1323741610994746],[121,55,68,0.14343191192551685],[121,55,69,0.1542124535779811],[121,55,70,0.16476504090085442],[121,55,71,0.16449096234932745],[121,55,72,0.14408685124436102],[121,55,73,0.12997290586530216],[121,55,74,0.12500581524444743],[121,55,75,0.13165792531479645],[121,55,76,0.14819806520113069],[121,55,77,0.1722626193139106],[121,55,78,0.20165367752169425],[121,55,79,0.23462465653903627],[121,56,64,0.1109716568868678],[121,56,65,0.11579297535714185],[121,56,66,0.12702461618914612],[121,56,67,0.14121518152127385],[121,56,68,0.14784518665616017],[121,56,69,0.14253490266258073],[121,56,70,0.12571315042348621],[121,56,71,0.10732814351861046],[121,56,72,0.08612738759411409],[121,56,73,0.07127168078808697],[121,56,74,0.06650022609913199],[121,56,75,0.0734505199921096],[121,56,76,0.08966141137080653],[121,56,77,0.11473518727445609],[121,56,78,0.14578912592314316],[121,56,79,0.17883928712219976],[121,57,64,0.050835438321133075],[121,57,65,0.05205695817189471],[121,57,66,0.06361280449710843],[121,57,67,0.07811359681171537],[121,57,68,0.08446057741552027],[121,57,69,0.07845810338478068],[121,57,70,0.06149506877390388],[121,57,71,0.042686088209961906],[121,57,72,0.020052774720766924],[121,57,73,0.004582744720227908],[121,57,74,7.600135393075741E-4],[121,57,75,0.00668983492543867],[121,57,76,0.023330876033613692],[121,57,77,0.05006831757931141],[121,57,78,0.08057792935758677],[121,57,79,0.11427995432682622],[121,58,64,0.015562479384823876],[121,58,65,0.014631593168932124],[121,58,66,0.0156931508552304],[121,58,67,0.028551130751250417],[121,58,68,0.03536336134520252],[121,58,69,0.028477398768345166],[121,58,70,0.01202424113179492],[121,58,71,0.006916340750305564],[121,58,72,0.0016505157721726327],[121,58,73,-0.0028240479696111055],[121,58,74,-0.0023147507744981843],[121,58,75,-6.358053126141721E-5],[121,58,76,0.0044322859822590755],[121,58,77,0.012802623602434617],[121,58,78,0.029947964758611598],[121,58,79,0.0629513490544672],[121,59,64,-7.11046589822938E-5],[121,59,65,-0.0012152681972899624],[121,59,66,-5.286472317366618E-4],[121,59,67,0.00128862499841173],[121,59,68,0.0028481458875877657],[121,59,69,-1.0805842379933979E-4],[121,59,70,-0.00453380373562981],[121,59,71,-0.010089110712982486],[121,59,72,-0.014533114100097463],[121,59,73,-0.018390266622639352],[121,59,74,-0.01802631450143771],[121,59,75,-0.015343362734291224],[121,59,76,-0.010221692367703606],[121,59,77,-0.0028191214241408877],[121,59,78,0.005304447586140707],[121,59,79,0.012891070292065241],[121,60,64,-0.01796598650975426],[121,60,65,-0.019830556179380395],[121,60,66,-0.01938201555015824],[121,60,67,-0.017477886011766176],[121,60,68,-0.016930111713632616],[121,60,69,-0.01960054056265893],[121,60,70,-0.023837174061807912],[121,60,71,-0.02857154627864706],[121,60,72,-0.03309196397769164],[121,60,73,-0.0357707940323788],[121,60,74,-0.0359085654324891],[121,60,75,-0.033029032886145386],[121,60,76,-0.027358885285622154],[121,60,77,-0.02032621396723232],[121,60,78,-0.01217209183421161],[121,60,79,-0.004529702388754219],[121,61,64,-0.02818314956401447],[121,61,65,-0.03127939708287491],[121,61,66,-0.03132372289162149],[121,61,67,-0.030228259035062332],[121,61,68,-0.030173036777555014],[121,61,69,-0.03315611220844082],[121,61,70,-0.03807933187594087],[121,61,71,-0.04265034640530351],[121,61,72,-0.04885776059452106],[121,61,73,-0.05095925494883335],[121,61,74,-0.05078096509970202],[121,61,75,-0.04796075740830864],[121,61,76,-0.04187349371503739],[121,61,77,-0.03405304172647169],[121,61,78,-0.025820352891374448],[121,61,79,-0.017489002618533218],[121,62,64,-0.04407539216198012],[121,62,65,-0.04653651115353465],[121,62,66,-0.046552371611591044],[121,62,67,-0.04603386718487746],[121,62,68,-0.04469538823270492],[121,62,69,-0.04793048286448662],[121,62,70,-0.05291665994713794],[121,62,71,-0.057794713957402294],[121,62,72,-0.06456312684749582],[121,62,73,-0.06704880195830472],[121,62,74,-0.0672467374766094],[121,62,75,-0.06345106596920438],[121,62,76,-0.05744849892870059],[121,62,77,-0.05016714814498287],[121,62,78,-0.041460475580158355],[121,62,79,-0.03304501293329315],[121,63,64,-0.08241792088796714],[121,63,65,-0.08359622313431632],[121,63,66,-0.0841772841544672],[121,63,67,-0.08426446917365697],[121,63,68,-0.08284444301942011],[121,63,69,-0.08425207019973946],[121,63,70,-0.08927053288215753],[121,63,71,-0.09406480068283386],[121,63,72,-0.1003634064023926],[121,63,73,-0.10404249252085278],[121,63,74,-0.10356178326344002],[121,63,75,-0.09969490542909018],[121,63,76,-0.09288758195464208],[121,63,77,-0.08629778570841323],[121,63,78,-0.07697792053674155],[121,63,79,-0.06768720820837398],[121,64,64,-0.09375189809633538],[121,64,65,-0.09538614243602897],[121,64,66,-0.09660921857360044],[121,64,67,-0.09557336880647468],[121,64,68,-0.09472012868399249],[121,64,69,-0.09624978614782738],[121,64,70,-0.10173819828644912],[121,64,71,-0.10626856659284449],[121,64,72,-0.11290429501964047],[121,64,73,-0.11732426635248298],[121,64,74,-0.11711597837645439],[121,64,75,-0.11310572673315095],[121,64,76,-0.10637693849760255],[121,64,77,-0.09855661163914829],[121,64,78,-0.09017379996214386],[121,64,79,-0.079865253410868],[121,65,64,-0.10878261054184943],[121,65,65,-0.11042680628223325],[121,65,66,-0.11155948129492621],[121,65,67,-0.11076539745816932],[121,65,68,-0.1097415458351],[121,65,69,-0.11199295223850833],[121,65,70,-0.11779988141398849],[121,65,71,-0.12236471474605985],[121,65,72,-0.12880109327201306],[121,65,73,-0.1332445875960752],[121,65,74,-0.133608851355818],[121,65,75,-0.1297469842854075],[121,65,76,-0.12293011487729837],[121,65,77,-0.11536570586791497],[121,65,78,-0.10614276200118236],[121,65,79,-0.09542579528993395],[121,66,64,-0.1269663004644015],[121,66,65,-0.12728014646425836],[121,66,66,-0.12894072416538338],[121,66,67,-0.12815459344156702],[121,66,68,-0.1269640315632408],[121,66,69,-0.12995957981194559],[121,66,70,-0.13472354050304242],[121,66,71,-0.14003226580221634],[121,66,72,-0.1464192743650956],[121,66,73,-0.1516094995428496],[121,66,74,-0.15178305352156915],[121,66,75,-0.1473041814795766],[121,66,76,-0.1412934802241549],[121,66,77,-0.13369121465088799],[121,66,78,-0.12365533126715611],[121,66,79,-0.11359559003045376],[121,67,64,-0.1420974893201858],[121,67,65,-0.14374034052119586],[121,67,66,-0.14515437319630634],[121,67,67,-0.14381923264515445],[121,67,68,-0.14294204912091138],[121,67,69,-0.1454278815065507],[121,67,70,-0.14905657838039627],[121,67,71,-0.15481072836311482],[121,67,72,-0.1617428395037143],[121,67,73,-0.16707656228284312],[121,67,74,-0.16749576239791183],[121,67,75,-0.16384200256821302],[121,67,76,-0.15787011522147257],[121,67,77,-0.15037736541804453],[121,67,78,-0.14065234166677007],[121,67,79,-0.13002382859174821],[121,68,64,-0.18624939884144895],[121,68,65,-0.18861346798911455],[121,68,66,-0.18977576136383745],[121,68,67,-0.1886940988651477],[121,68,68,-0.18768210291635748],[121,68,69,-0.18929337983939623],[121,68,70,-0.1929515915634527],[121,68,71,-0.19835780267911854],[121,68,72,-0.20499928039296147],[121,68,73,-0.21086359432646506],[121,68,74,-0.211784675470967],[121,68,75,-0.20808613469640005],[121,68,76,-0.20239059450648733],[121,68,77,-0.194084906269184],[121,68,78,-0.18528476906053623],[121,68,79,-0.17510808187876373],[121,69,64,-0.2043606029177481],[121,69,65,-0.20598556398553314],[121,69,66,-0.20523115123705077],[121,69,67,-0.20232833878222237],[121,69,68,-0.198936821408942],[121,69,69,-0.19876896898512128],[121,69,70,-0.20268320250619043],[121,69,71,-0.20929183369249713],[121,69,72,-0.217024915943568],[121,69,73,-0.22347269305768513],[121,69,74,-0.22470214550568737],[121,69,75,-0.22128947776937652],[121,69,76,-0.21554089302783147],[121,69,77,-0.20639956923983077],[121,69,78,-0.1978094811846323],[121,69,79,-0.1875937082407229],[121,70,64,-0.21991366333622706],[121,70,65,-0.2208210060711369],[121,70,66,-0.22000004810635204],[121,70,67,-0.21697347117829896],[121,70,68,-0.2136514855292506],[121,70,69,-0.21416705142068387],[121,70,70,-0.21847232064907032],[121,70,71,-0.2250193847320314],[121,70,72,-0.23211012111661333],[121,70,73,-0.23813063860501135],[121,70,74,-0.23908766995105712],[121,70,75,-0.23560959609848472],[121,70,76,-0.23049127094442162],[121,70,77,-0.22170618837838166],[121,70,78,-0.2132789194542521],[121,70,79,-0.20238638704764894],[121,71,64,-0.23108782683189819],[121,71,65,-0.2329334216515404],[121,71,66,-0.2319603743431198],[121,71,67,-0.22875375030966985],[121,71,68,-0.2262070207783744],[121,71,69,-0.22675191690652774],[121,71,70,-0.23106057912237846],[121,71,71,-0.23724437706840656],[121,71,72,-0.24412340231304216],[121,71,73,-0.250118989948286],[121,71,74,-0.2510728210190108],[121,71,75,-0.24806943394711992],[121,71,76,-0.24277585626568146],[121,71,77,-0.23482941882105535],[121,71,78,-0.22631095517319003],[121,71,79,-0.2159971965582273],[121,72,64,-0.24711878384629632],[121,72,65,-0.24818240089555468],[121,72,66,-0.24680754472158317],[121,72,67,-0.2430204338092094],[121,72,68,-0.2411155708633173],[121,72,69,-0.24235799131369026],[121,72,70,-0.24726016608723983],[121,72,71,-0.2521473639521975],[121,72,72,-0.2594997369891269],[121,72,73,-0.26480364609039936],[121,72,74,-0.266142570090977],[121,72,75,-0.26366788315863754],[121,72,76,-0.2577273308361819],[121,72,77,-0.25045021194898937],[121,72,78,-0.24224016512769683],[121,72,79,-0.2324706974587692],[121,73,64,-0.2665833518399411],[121,73,65,-0.2674382388841174],[121,73,66,-0.2651553640001499],[121,73,67,-0.2614844930932001],[121,73,68,-0.2593388452164177],[121,73,69,-0.2604822071138735],[121,73,70,-0.26398869952785725],[121,73,71,-0.2679243194136129],[121,73,72,-0.27388534115262375],[121,73,73,-0.2768457239027427],[121,73,74,-0.2777225605396946],[121,73,75,-0.2751637106479162],[121,73,76,-0.27069213209028825],[121,73,77,-0.26496557022883455],[121,73,78,-0.2593299551247615],[121,73,79,-0.25113015820306256],[121,74,64,-0.28442127262268824],[121,74,65,-0.28528530604364477],[121,74,66,-0.28283567327991516],[121,74,67,-0.2789535250886123],[121,74,68,-0.2769547849166613],[121,74,69,-0.27741200322049764],[121,74,70,-0.2801836294579833],[121,74,71,-0.2848686496329621],[121,74,72,-0.2901708346127625],[121,74,73,-0.2934918426257063],[121,74,74,-0.2945915939083151],[121,74,75,-0.2913382643701775],[121,74,76,-0.28755678180424676],[121,74,77,-0.28252131956469473],[121,74,78,-0.2764970963944197],[121,74,79,-0.2685389070089116],[121,75,64,-0.2994967453841815],[121,75,65,-0.30070929881370767],[121,75,66,-0.2983777038270072],[121,75,67,-0.2938269259320086],[121,75,68,-0.29195414439196166],[121,75,69,-0.29257179110834997],[121,75,70,-0.29498638703726393],[121,75,71,-0.3003233839200046],[121,75,72,-0.3053708773980672],[121,75,73,-0.3078438092745335],[121,75,74,-0.30953746196747106],[121,75,75,-0.3062352755749227],[121,75,76,-0.3021440525688769],[121,75,77,-0.2978222673815828],[121,75,78,-0.29196324754529474],[121,75,79,-0.2851398854026966],[121,76,64,-0.3129122675938731],[121,76,65,-0.31437329423527316],[121,76,66,-0.31191985518491805],[121,76,67,-0.3076855159272363],[121,76,68,-0.30594895447531495],[121,76,69,-0.30679450987244844],[121,76,70,-0.30998741507205374],[121,76,71,-0.31488826869995373],[121,76,72,-0.3195967559151026],[121,76,73,-0.32187081927281086],[121,76,74,-0.3232386484665936],[121,76,75,-0.321224977722041],[121,76,76,-0.31684926604659797],[121,76,77,-0.3121568962787346],[121,76,78,-0.3066287061323009],[121,76,79,-0.29994171357863003],[121,77,64,-0.3268966853329017],[121,77,65,-0.3284733356187992],[121,77,66,-0.3265835739954064],[121,77,67,-0.3232686307090211],[121,77,68,-0.321949749368884],[121,77,69,-0.3231043056663534],[121,77,70,-0.32633698711574644],[121,77,71,-0.33116068580429],[121,77,72,-0.3366369553953892],[121,77,73,-0.3392943834825881],[121,77,74,-0.33953969224404085],[121,77,75,-0.3380247651049176],[121,77,76,-0.33375945345654756],[121,77,77,-0.32872779960442944],[121,77,78,-0.3227491304820423],[121,77,79,-0.3161606676455981],[121,78,64,-0.34215653162571363],[121,78,65,-0.3435951435506085],[121,78,66,-0.34119937170777437],[121,78,67,-0.3376422073643972],[121,78,68,-0.33622819599578235],[121,78,69,-0.33729541448136435],[121,78,70,-0.3407174831523409],[121,78,71,-0.3455943668563466],[121,78,72,-0.35115993153348124],[121,78,73,-0.35372478845281763],[121,78,74,-0.3539781047642512],[121,78,75,-0.35304136793672086],[121,78,76,-0.34887514869343345],[121,78,77,-0.3429441316754308],[121,78,78,-0.3374086566187629],[121,78,79,-0.33095314226418304],[121,79,64,-0.3529996658989467],[121,79,65,-0.35479543428501586],[121,79,66,-0.3521602667568304],[121,79,67,-0.3490508974535213],[121,79,68,-0.34728016788989485],[121,79,69,-0.34887988198655573],[121,79,70,-0.3514832587224738],[121,79,71,-0.3569441981490257],[121,79,72,-0.36265715662291476],[121,79,73,-0.3660208303900473],[121,79,74,-0.366911537432325],[121,79,75,-0.3657252164875088],[121,79,76,-0.3613039096734455],[121,79,77,-0.3556437877375713],[121,79,78,-0.3497810968722955],[121,79,79,-0.34397593777113217],[121,80,64,-0.3663775189307304],[121,80,65,-0.36800301886343284],[121,80,66,-0.36595879916488583],[121,80,67,-0.36242289093097707],[121,80,68,-0.3609845472660428],[121,80,69,-0.3623016128267863],[121,80,70,-0.3649427426975615],[121,80,71,-0.37018294149183645],[121,80,72,-0.3762462281017664],[121,80,73,-0.3802681658052111],[121,80,74,-0.3817609028595523],[121,80,75,-0.38053376994687854],[121,80,76,-0.37602107010260716],[121,80,77,-0.37027932182930157],[121,80,78,-0.36451220408457385],[121,80,79,-0.3582587000449301],[121,81,64,-0.37666465173862745],[121,81,65,-0.3784317101271056],[121,81,66,-0.37681585261134076],[121,81,67,-0.3726976691123498],[121,81,68,-0.3713634222339967],[121,81,69,-0.37259026095719083],[121,81,70,-0.3764102169926169],[121,81,71,-0.38248929648810925],[121,81,72,-0.3890752662334085],[121,81,73,-0.39438346023359816],[121,81,74,-0.39633696441232164],[121,81,75,-0.39539282730306513],[121,81,76,-0.3910022944106838],[121,81,77,-0.3859765051611781],[121,81,78,-0.38061107659958193],[121,81,79,-0.37426441406971545],[121,82,64,-0.39186593535660197],[121,82,65,-0.39339929228729087],[121,82,66,-0.3913986925658721],[121,82,67,-0.3869950754588618],[121,82,68,-0.3855848828568115],[121,82,69,-0.38737750454398967],[121,82,70,-0.3916582396429483],[121,82,71,-0.39762932842202436],[121,82,72,-0.40434710926300615],[121,82,73,-0.4097997815821084],[121,82,74,-0.4116880608978971],[121,82,75,-0.4106789529884683],[121,82,76,-0.40633460076596406],[121,82,77,-0.4013585629812963],[121,82,78,-0.39637547583572436],[121,82,79,-0.39041445106551304],[121,83,64,-0.4047730197273893],[121,83,65,-0.40670494245019634],[121,83,66,-0.403781634806654],[121,83,67,-0.3994662180530349],[121,83,68,-0.3980628471000071],[121,83,69,-0.4002572633958928],[121,83,70,-0.40467302652514275],[121,83,71,-0.41055777549794426],[121,83,72,-0.41753732716506214],[121,83,73,-0.4228312592210391],[121,83,74,-0.4252579799965572],[121,83,75,-0.4245093468524723],[121,83,76,-0.42004548594637603],[121,83,77,-0.41498719920123694],[121,83,78,-0.40986434600551425],[121,83,79,-0.40410312486131356],[121,84,64,-0.4171045875758832],[121,84,65,-0.41893027661037324],[121,84,66,-0.4159004722700215],[121,84,67,-0.41179901588828344],[121,84,68,-0.40981617499120376],[121,84,69,-0.4120758487047867],[121,84,70,-0.41766505516842733],[121,84,71,-0.423870485879114],[121,84,72,-0.43093903214453894],[121,84,73,-0.435490620684188],[121,84,74,-0.43782578832074226],[121,84,75,-0.43749258994215395],[121,84,76,-0.4337341275453006],[121,84,77,-0.428371495935302],[121,84,78,-0.42265946690869943],[121,84,79,-0.4172549854299961],[121,85,64,-0.43431928100125283],[121,85,65,-0.4358460560005846],[121,85,66,-0.4333814993307445],[121,85,67,-0.42904029628137547],[121,85,68,-0.427398317007702],[121,85,69,-0.4295067171985833],[121,85,70,-0.4348023075901673],[121,85,71,-0.44090986333016097],[121,85,72,-0.4468110894203201],[121,85,73,-0.4503949636633346],[121,85,74,-0.45276194292987504],[121,85,75,-0.45274919983598777],[121,85,76,-0.4488094429359204],[121,85,77,-0.44287867873438774],[121,85,78,-0.4357464268271127],[121,85,79,-0.42979467026541],[121,86,64,-0.4471034398258572],[121,86,65,-0.4488091816480537],[121,86,66,-0.44632945011811664],[121,86,67,-0.44186917119676317],[121,86,68,-0.44005885602437206],[121,86,69,-0.4418258854910432],[121,86,70,-0.44719631769898877],[121,86,71,-0.4528141347830026],[121,86,72,-0.4583333333333333],[121,86,73,-0.4583333333333333],[121,86,74,-0.4583333333333333],[121,86,75,-0.4583333333333333],[121,86,76,-0.4583333333333333],[121,86,77,-0.4549819888761826],[121,86,78,-0.4486158267010405],[121,86,79,-0.44224021913208567],[121,87,64,-0.45728329411034707],[121,87,65,-0.4583333333333333],[121,87,66,-0.4561382974272771],[121,87,67,-0.4525365138425132],[121,87,68,-0.4507690603055472],[121,87,69,-0.4519174682922168],[121,87,70,-0.45741036239551985],[121,87,71,-0.4583333333333333],[121,87,72,-0.4583333333333333],[121,87,73,-0.4583333333333333],[121,87,74,-0.4583333333333333],[121,87,75,-0.4583333333333333],[121,87,76,-0.4583333333333333],[121,87,77,-0.4583333333333333],[121,87,78,-0.4583333333333333],[121,87,79,-0.4528496816170604],[121,88,64,-0.4583333333333333],[121,88,65,-0.4583333333333333],[121,88,66,-0.4583333333333333],[121,88,67,-0.4583333333333333],[121,88,68,-0.4583333333333333],[121,88,69,-0.4583333333333333],[121,88,70,-0.4583333333333333],[121,88,71,-0.4583333333333333],[121,88,72,-0.4583333333333333],[121,88,73,-0.4583333333333333],[121,88,74,-0.4583333333333333],[121,88,75,-0.4583333333333333],[121,88,76,-0.4583333333333333],[121,88,77,-0.4583333333333333],[121,88,78,-0.4583333333333333],[121,88,79,-0.4583333333333333],[121,89,64,-0.4583333333333333],[121,89,65,-0.4583333333333333],[121,89,66,-0.4583333333333333],[121,89,67,-0.4583333333333333],[121,89,68,-0.4583333333333333],[121,89,69,-0.4583333333333333],[121,89,70,-0.4583333333333333],[121,89,71,-0.4583333333333333],[121,89,72,-0.4583333333333333],[121,89,73,-0.4583333333333333],[121,89,74,-0.4583333333333333],[121,89,75,-0.4583333333333333],[121,89,76,-0.4583333333333333],[121,89,77,-0.4583333333333333],[121,89,78,-0.4583333333333333],[121,89,79,-0.4583333333333333],[121,90,64,-0.4583333333333333],[121,90,65,-0.4583333333333333],[121,90,66,-0.4583333333333333],[121,90,67,-0.4583333333333333],[121,90,68,-0.4583333333333333],[121,90,69,-0.4583333333333333],[121,90,70,-0.4583333333333333],[121,90,71,-0.4583333333333333],[121,90,72,-0.4583333333333333],[121,90,73,-0.4583333333333333],[121,90,74,-0.4583333333333333],[121,90,75,-0.4583333333333333],[121,90,76,-0.4583333333333333],[121,90,77,-0.4583333333333333],[121,90,78,-0.4583333333333333],[121,90,79,-0.4583333333333333],[121,91,64,-0.4583333333333333],[121,91,65,-0.4583333333333333],[121,91,66,-0.4583333333333333],[121,91,67,-0.4583333333333333],[121,91,68,-0.4583333333333333],[121,91,69,-0.4583333333333333],[121,91,70,-0.4583333333333333],[121,91,71,-0.4583333333333333],[121,91,72,-0.4583333333333333],[121,91,73,-0.4583333333333333],[121,91,74,-0.4583333333333333],[121,91,75,-0.4583333333333333],[121,91,76,-0.4583333333333333],[121,91,77,-0.4583333333333333],[121,91,78,-0.4583333333333333],[121,91,79,-0.4583333333333333],[121,92,64,-0.4583333333333333],[121,92,65,-0.4583333333333333],[121,92,66,-0.4583333333333333],[121,92,67,-0.4583333333333333],[121,92,68,-0.4583333333333333],[121,92,69,-0.4583333333333333],[121,92,70,-0.4583333333333333],[121,92,71,-0.4583333333333333],[121,92,72,-0.4583333333333333],[121,92,73,-0.4583333333333333],[121,92,74,-0.4583333333333333],[121,92,75,-0.4583333333333333],[121,92,76,-0.4583333333333333],[121,92,77,-0.4583333333333333],[121,92,78,-0.4583333333333333],[121,92,79,-0.4583333333333333],[121,93,64,-0.4583333333333333],[121,93,65,-0.4583333333333333],[121,93,66,-0.4583333333333333],[121,93,67,-0.4583333333333333],[121,93,68,-0.4583333333333333],[121,93,69,-0.4583333333333333],[121,93,70,-0.4583333333333333],[121,93,71,-0.4583333333333333],[121,93,72,-0.4583333333333333],[121,93,73,-0.4583333333333333],[121,93,74,-0.4583333333333333],[121,93,75,-0.4583333333333333],[121,93,76,-0.4583333333333333],[121,93,77,-0.4583333333333333],[121,93,78,-0.4583333333333333],[121,93,79,-0.4583333333333333],[121,94,64,-0.4583333333333333],[121,94,65,-0.4583333333333333],[121,94,66,-0.4583333333333333],[121,94,67,-0.4583333333333333],[121,94,68,-0.4583333333333333],[121,94,69,-0.4583333333333333],[121,94,70,-0.4583333333333333],[121,94,71,-0.4583333333333333],[121,94,72,-0.4583333333333333],[121,94,73,-0.4583333333333333],[121,94,74,-0.4583333333333333],[121,94,75,-0.4583333333333333],[121,94,76,-0.4583333333333333],[121,94,77,-0.4583333333333333],[121,94,78,-0.4583333333333333],[121,94,79,-0.4583333333333333],[121,95,64,-0.4583333333333333],[121,95,65,-0.4583333333333333],[121,95,66,-0.4583333333333333],[121,95,67,-0.4583333333333333],[121,95,68,-0.4583333333333333],[121,95,69,-0.4583333333333333],[121,95,70,-0.4583333333333333],[121,95,71,-0.4583333333333333],[121,95,72,-0.4583333333333333],[121,95,73,-0.4583333333333333],[121,95,74,-0.4583333333333333],[121,95,75,-0.4583333333333333],[121,95,76,-0.4583333333333333],[121,95,77,-0.4583333333333333],[121,95,78,-0.4583333333333333],[121,95,79,-0.4583333333333333],[121,96,64,-0.4583333333333333],[121,96,65,-0.4583333333333333],[121,96,66,-0.4583333333333333],[121,96,67,-0.4583333333333333],[121,96,68,-0.4583333333333333],[121,96,69,-0.4583333333333333],[121,96,70,-0.4583333333333333],[121,96,71,-0.4583333333333333],[121,96,72,-0.4583333333333333],[121,96,73,-0.4583333333333333],[121,96,74,-0.4583333333333333],[121,96,75,-0.4583333333333333],[121,96,76,-0.4583333333333333],[121,96,77,-0.4583333333333333],[121,96,78,-0.4583333333333333],[121,96,79,-0.4583333333333333],[121,97,64,-0.4583333333333333],[121,97,65,-0.4583333333333333],[121,97,66,-0.4583333333333333],[121,97,67,-0.4583333333333333],[121,97,68,-0.4583333333333333],[121,97,69,-0.4583333333333333],[121,97,70,-0.4583333333333333],[121,97,71,-0.4583333333333333],[121,97,72,-0.4583333333333333],[121,97,73,-0.4583333333333333],[121,97,74,-0.4583333333333333],[121,97,75,-0.4583333333333333],[121,97,76,-0.4583333333333333],[121,97,77,-0.4583333333333333],[121,97,78,-0.4583333333333333],[121,97,79,-0.4583333333333333],[121,98,64,-0.4583333333333333],[121,98,65,-0.4583333333333333],[121,98,66,-0.4583333333333333],[121,98,67,-0.4583333333333333],[121,98,68,-0.4583333333333333],[121,98,69,-0.4583333333333333],[121,98,70,-0.4583333333333333],[121,98,71,-0.4583333333333333],[121,98,72,-0.4583333333333333],[121,98,73,-0.4583333333333333],[121,98,74,-0.4583333333333333],[121,98,75,-0.4583333333333333],[121,98,76,-0.4583333333333333],[121,98,77,-0.4583333333333333],[121,98,78,-0.4583333333333333],[121,98,79,-0.4583333333333333],[121,99,64,-0.4583333333333333],[121,99,65,-0.4583333333333333],[121,99,66,-0.4583333333333333],[121,99,67,-0.4583333333333333],[121,99,68,-0.4583333333333333],[121,99,69,-0.4583333333333333],[121,99,70,-0.4583333333333333],[121,99,71,-0.4583333333333333],[121,99,72,-0.4583333333333333],[121,99,73,-0.4583333333333333],[121,99,74,-0.4583333333333333],[121,99,75,-0.4583333333333333],[121,99,76,-0.4583333333333333],[121,99,77,-0.4583333333333333],[121,99,78,-0.4583333333333333],[121,99,79,-0.4583333333333333],[121,100,64,-0.4583333333333333],[121,100,65,-0.4583333333333333],[121,100,66,-0.4583333333333333],[121,100,67,-0.4583333333333333],[121,100,68,-0.4583333333333333],[121,100,69,-0.4583333333333333],[121,100,70,-0.4583333333333333],[121,100,71,-0.4583333333333333],[121,100,72,-0.4583333333333333],[121,100,73,-0.4583333333333333],[121,100,74,-0.4583333333333333],[121,100,75,-0.4583333333333333],[121,100,76,-0.4583333333333333],[121,100,77,-0.4583333333333333],[121,100,78,-0.4583333333333333],[121,100,79,-0.4583333333333333],[121,101,64,-0.4583333333333333],[121,101,65,-0.4583333333333333],[121,101,66,-0.4583333333333333],[121,101,67,-0.4583333333333333],[121,101,68,-0.4583333333333333],[121,101,69,-0.4583333333333333],[121,101,70,-0.4583333333333333],[121,101,71,-0.4583333333333333],[121,101,72,-0.4583333333333333],[121,101,73,-0.4583333333333333],[121,101,74,-0.4583333333333333],[121,101,75,-0.4583333333333333],[121,101,76,-0.4583333333333333],[121,101,77,-0.4583333333333333],[121,101,78,-0.4583333333333333],[121,101,79,-0.4583333333333333],[121,102,64,-0.4583333333333333],[121,102,65,-0.4583333333333333],[121,102,66,-0.4583333333333333],[121,102,67,-0.4583333333333333],[121,102,68,-0.4583333333333333],[121,102,69,-0.4583333333333333],[121,102,70,-0.4583333333333333],[121,102,71,-0.4583333333333333],[121,102,72,-0.4583333333333333],[121,102,73,-0.4583333333333333],[121,102,74,-0.4583333333333333],[121,102,75,-0.4583333333333333],[121,102,76,-0.4583333333333333],[121,102,77,-0.4583333333333333],[121,102,78,-0.4583333333333333],[121,102,79,-0.4583333333333333],[121,103,64,-0.4583333333333333],[121,103,65,-0.4583333333333333],[121,103,66,-0.4583333333333333],[121,103,67,-0.4583333333333333],[121,103,68,-0.4583333333333333],[121,103,69,-0.4583333333333333],[121,103,70,-0.4583333333333333],[121,103,71,-0.4583333333333333],[121,103,72,-0.4583333333333333],[121,103,73,-0.4583333333333333],[121,103,74,-0.4583333333333333],[121,103,75,-0.4583333333333333],[121,103,76,-0.4583333333333333],[121,103,77,-0.4583333333333333],[121,103,78,-0.4583333333333333],[121,103,79,-0.4583333333333333],[121,104,64,-0.4583333333333333],[121,104,65,-0.4583333333333333],[121,104,66,-0.4583333333333333],[121,104,67,-0.4583333333333333],[121,104,68,-0.4583333333333333],[121,104,69,-0.4583333333333333],[121,104,70,-0.4583333333333333],[121,104,71,-0.4583333333333333],[121,104,72,-0.4583333333333333],[121,104,73,-0.4583333333333333],[121,104,74,-0.4583333333333333],[121,104,75,-0.4583333333333333],[121,104,76,-0.4583333333333333],[121,104,77,-0.4583333333333333],[121,104,78,-0.4583333333333333],[121,104,79,-0.4583333333333333],[121,105,64,-0.4583333333333333],[121,105,65,-0.4583333333333333],[121,105,66,-0.4583333333333333],[121,105,67,-0.4583333333333333],[121,105,68,-0.4583333333333333],[121,105,69,-0.4583333333333333],[121,105,70,-0.4583333333333333],[121,105,71,-0.4583333333333333],[121,105,72,-0.4583333333333333],[121,105,73,-0.4583333333333333],[121,105,74,-0.4583333333333333],[121,105,75,-0.4583333333333333],[121,105,76,-0.4583333333333333],[121,105,77,-0.4583333333333333],[121,105,78,-0.4583333333333333],[121,105,79,-0.4583333333333333],[121,106,64,-0.4583333333333333],[121,106,65,-0.4583333333333333],[121,106,66,-0.4583333333333333],[121,106,67,-0.4583333333333333],[121,106,68,-0.4583333333333333],[121,106,69,-0.4583333333333333],[121,106,70,-0.4583333333333333],[121,106,71,-0.4583333333333333],[121,106,72,-0.4583333333333333],[121,106,73,-0.4583333333333333],[121,106,74,-0.4583333333333333],[121,106,75,-0.4583333333333333],[121,106,76,-0.4583333333333333],[121,106,77,-0.4583333333333333],[121,106,78,-0.4583333333333333],[121,106,79,-0.4583333333333333],[121,107,64,-0.4583333333333333],[121,107,65,-0.4583333333333333],[121,107,66,-0.4583333333333333],[121,107,67,-0.4583333333333333],[121,107,68,-0.4583333333333333],[121,107,69,-0.4583333333333333],[121,107,70,-0.4583333333333333],[121,107,71,-0.4583333333333333],[121,107,72,-0.4583333333333333],[121,107,73,-0.4583333333333333],[121,107,74,-0.4583333333333333],[121,107,75,-0.4583333333333333],[121,107,76,-0.4583333333333333],[121,107,77,-0.4583333333333333],[121,107,78,-0.4583333333333333],[121,107,79,-0.4583333333333333],[121,108,64,-0.4583333333333333],[121,108,65,-0.4583333333333333],[121,108,66,-0.4583333333333333],[121,108,67,-0.4583333333333333],[121,108,68,-0.4583333333333333],[121,108,69,-0.4583333333333333],[121,108,70,-0.4583333333333333],[121,108,71,-0.4583333333333333],[121,108,72,-0.4583333333333333],[121,108,73,-0.4583333333333333],[121,108,74,-0.4583333333333333],[121,108,75,-0.4583333333333333],[121,108,76,-0.4583333333333333],[121,108,77,-0.4583333333333333],[121,108,78,-0.4583333333333333],[121,108,79,-0.4583333333333333],[121,109,64,-0.4583333333333333],[121,109,65,-0.4583333333333333],[121,109,66,-0.4583333333333333],[121,109,67,-0.4583333333333333],[121,109,68,-0.4583333333333333],[121,109,69,-0.4583333333333333],[121,109,70,-0.4583333333333333],[121,109,71,-0.4583333333333333],[121,109,72,-0.4583333333333333],[121,109,73,-0.4583333333333333],[121,109,74,-0.4583333333333333],[121,109,75,-0.4583333333333333],[121,109,76,-0.4583333333333333],[121,109,77,-0.4583333333333333],[121,109,78,-0.4583333333333333],[121,109,79,-0.4583333333333333],[121,110,64,-0.4583333333333333],[121,110,65,-0.4583333333333333],[121,110,66,-0.4583333333333333],[121,110,67,-0.4583333333333333],[121,110,68,-0.4583333333333333],[121,110,69,-0.4583333333333333],[121,110,70,-0.4583333333333333],[121,110,71,-0.4583333333333333],[121,110,72,-0.4583333333333333],[121,110,73,-0.4583333333333333],[121,110,74,-0.4583333333333333],[121,110,75,-0.4583333333333333],[121,110,76,-0.4583333333333333],[121,110,77,-0.4583333333333333],[121,110,78,-0.4583333333333333],[121,110,79,-0.4583333333333333],[121,111,64,-0.4583333333333333],[121,111,65,-0.4583333333333333],[121,111,66,-0.4583333333333333],[121,111,67,-0.4583333333333333],[121,111,68,-0.4583333333333333],[121,111,69,-0.4583333333333333],[121,111,70,-0.4583333333333333],[121,111,71,-0.4583333333333333],[121,111,72,-0.4583333333333333],[121,111,73,-0.4583333333333333],[121,111,74,-0.4583333333333333],[121,111,75,-0.4583333333333333],[121,111,76,-0.4583333333333333],[121,111,77,-0.4583333333333333],[121,111,78,-0.4583333333333333],[121,111,79,-0.4583333333333333],[121,112,64,-0.4583333333333333],[121,112,65,-0.4583333333333333],[121,112,66,-0.4583333333333333],[121,112,67,-0.4583333333333333],[121,112,68,-0.4583333333333333],[121,112,69,-0.4583333333333333],[121,112,70,-0.4583333333333333],[121,112,71,-0.4583333333333333],[121,112,72,-0.4583333333333333],[121,112,73,-0.4583333333333333],[121,112,74,-0.4583333333333333],[121,112,75,-0.4583333333333333],[121,112,76,-0.4583333333333333],[121,112,77,-0.4583333333333333],[121,112,78,-0.4583333333333333],[121,112,79,-0.4583333333333333],[121,113,64,-0.4583333333333333],[121,113,65,-0.4583333333333333],[121,113,66,-0.4583333333333333],[121,113,67,-0.4583333333333333],[121,113,68,-0.4583333333333333],[121,113,69,-0.4583333333333333],[121,113,70,-0.4583333333333333],[121,113,71,-0.4583333333333333],[121,113,72,-0.4583333333333333],[121,113,73,-0.4583333333333333],[121,113,74,-0.4583333333333333],[121,113,75,-0.4583333333333333],[121,113,76,-0.4583333333333333],[121,113,77,-0.4583333333333333],[121,113,78,-0.4583333333333333],[121,113,79,-0.4583333333333333],[121,114,64,-0.4583333333333333],[121,114,65,-0.4583333333333333],[121,114,66,-0.4583333333333333],[121,114,67,-0.4583333333333333],[121,114,68,-0.4583333333333333],[121,114,69,-0.4583333333333333],[121,114,70,-0.4583333333333333],[121,114,71,-0.4583333333333333],[121,114,72,-0.4583333333333333],[121,114,73,-0.4583333333333333],[121,114,74,-0.4583333333333333],[121,114,75,-0.4583333333333333],[121,114,76,-0.4583333333333333],[121,114,77,-0.4583333333333333],[121,114,78,-0.4583333333333333],[121,114,79,-0.4583333333333333],[121,115,64,-0.4583333333333333],[121,115,65,-0.4583333333333333],[121,115,66,-0.4583333333333333],[121,115,67,-0.4583333333333333],[121,115,68,-0.4583333333333333],[121,115,69,-0.4583333333333333],[121,115,70,-0.4583333333333333],[121,115,71,-0.4583333333333333],[121,115,72,-0.4583333333333333],[121,115,73,-0.4583333333333333],[121,115,74,-0.4583333333333333],[121,115,75,-0.4583333333333333],[121,115,76,-0.4583333333333333],[121,115,77,-0.4583333333333333],[121,115,78,-0.4583333333333333],[121,115,79,-0.4583333333333333],[121,116,64,-0.4583333333333333],[121,116,65,-0.4583333333333333],[121,116,66,-0.4583333333333333],[121,116,67,-0.4583333333333333],[121,116,68,-0.4583333333333333],[121,116,69,-0.4583333333333333],[121,116,70,-0.4583333333333333],[121,116,71,-0.4583333333333333],[121,116,72,-0.4583333333333333],[121,116,73,-0.4583333333333333],[121,116,74,-0.4583333333333333],[121,116,75,-0.4583333333333333],[121,116,76,-0.4583333333333333],[121,116,77,-0.4583333333333333],[121,116,78,-0.4583333333333333],[121,116,79,-0.4583333333333333],[121,117,64,-0.4583333333333333],[121,117,65,-0.4583333333333333],[121,117,66,-0.4583333333333333],[121,117,67,-0.4583333333333333],[121,117,68,-0.4583333333333333],[121,117,69,-0.4583333333333333],[121,117,70,-0.4583333333333333],[121,117,71,-0.4583333333333333],[121,117,72,-0.4583333333333333],[121,117,73,-0.4583333333333333],[121,117,74,-0.4583333333333333],[121,117,75,-0.4583333333333333],[121,117,76,-0.4583333333333333],[121,117,77,-0.4583333333333333],[121,117,78,-0.4583333333333333],[121,117,79,-0.4583333333333333],[121,118,64,-0.4583333333333333],[121,118,65,-0.4583333333333333],[121,118,66,-0.4583333333333333],[121,118,67,-0.4583333333333333],[121,118,68,-0.4583333333333333],[121,118,69,-0.4583333333333333],[121,118,70,-0.4583333333333333],[121,118,71,-0.4583333333333333],[121,118,72,-0.4583333333333333],[121,118,73,-0.4583333333333333],[121,118,74,-0.4583333333333333],[121,118,75,-0.4583333333333333],[121,118,76,-0.4583333333333333],[121,118,77,-0.4583333333333333],[121,118,78,-0.4583333333333333],[121,118,79,-0.4583333333333333],[121,119,64,-0.4583333333333333],[121,119,65,-0.4583333333333333],[121,119,66,-0.4583333333333333],[121,119,67,-0.4583333333333333],[121,119,68,-0.4583333333333333],[121,119,69,-0.4583333333333333],[121,119,70,-0.4583333333333333],[121,119,71,-0.4583333333333333],[121,119,72,-0.4583333333333333],[121,119,73,-0.4583333333333333],[121,119,74,-0.4583333333333333],[121,119,75,-0.4583333333333333],[121,119,76,-0.4583333333333333],[121,119,77,-0.4583333333333333],[121,119,78,-0.4583333333333333],[121,119,79,-0.4583333333333333],[121,120,64,-0.4583333333333333],[121,120,65,-0.4583333333333333],[121,120,66,-0.4583333333333333],[121,120,67,-0.4583333333333333],[121,120,68,-0.4583333333333333],[121,120,69,-0.4583333333333333],[121,120,70,-0.4583333333333333],[121,120,71,-0.4583333333333333],[121,120,72,-0.4583333333333333],[121,120,73,-0.4583333333333333],[121,120,74,-0.4583333333333333],[121,120,75,-0.4583333333333333],[121,120,76,-0.4583333333333333],[121,120,77,-0.4583333333333333],[121,120,78,-0.4583333333333333],[121,120,79,-0.4583333333333333],[121,121,64,-0.4583333333333333],[121,121,65,-0.4583333333333333],[121,121,66,-0.4583333333333333],[121,121,67,-0.4583333333333333],[121,121,68,-0.4583333333333333],[121,121,69,-0.4583333333333333],[121,121,70,-0.4583333333333333],[121,121,71,-0.4583333333333333],[121,121,72,-0.4583333333333333],[121,121,73,-0.4583333333333333],[121,121,74,-0.4583333333333333],[121,121,75,-0.4583333333333333],[121,121,76,-0.4583333333333333],[121,121,77,-0.4583333333333333],[121,121,78,-0.4583333333333333],[121,121,79,-0.4583333333333333],[121,122,64,-0.4583333333333333],[121,122,65,-0.4583333333333333],[121,122,66,-0.4583333333333333],[121,122,67,-0.4583333333333333],[121,122,68,-0.4583333333333333],[121,122,69,-0.4583333333333333],[121,122,70,-0.4583333333333333],[121,122,71,-0.4583333333333333],[121,122,72,-0.4583333333333333],[121,122,73,-0.4583333333333333],[121,122,74,-0.4583333333333333],[121,122,75,-0.4583333333333333],[121,122,76,-0.4583333333333333],[121,122,77,-0.4583333333333333],[121,122,78,-0.4583333333333333],[121,122,79,-0.4583333333333333],[121,123,64,-0.4583333333333333],[121,123,65,-0.4583333333333333],[121,123,66,-0.4583333333333333],[121,123,67,-0.4583333333333333],[121,123,68,-0.4583333333333333],[121,123,69,-0.4583333333333333],[121,123,70,-0.4583333333333333],[121,123,71,-0.4583333333333333],[121,123,72,-0.4583333333333333],[121,123,73,-0.4583333333333333],[121,123,74,-0.4583333333333333],[121,123,75,-0.4583333333333333],[121,123,76,-0.4583333333333333],[121,123,77,-0.4583333333333333],[121,123,78,-0.4583333333333333],[121,123,79,-0.4583333333333333],[121,124,64,-0.4583333333333333],[121,124,65,-0.4583333333333333],[121,124,66,-0.4583333333333333],[121,124,67,-0.4583333333333333],[121,124,68,-0.4583333333333333],[121,124,69,-0.4583333333333333],[121,124,70,-0.4583333333333333],[121,124,71,-0.4583333333333333],[121,124,72,-0.4583333333333333],[121,124,73,-0.4583333333333333],[121,124,74,-0.4583333333333333],[121,124,75,-0.4583333333333333],[121,124,76,-0.4583333333333333],[121,124,77,-0.4583333333333333],[121,124,78,-0.4583333333333333],[121,124,79,-0.4583333333333333],[121,125,64,-0.4583333333333333],[121,125,65,-0.4583333333333333],[121,125,66,-0.4583333333333333],[121,125,67,-0.4583333333333333],[121,125,68,-0.4583333333333333],[121,125,69,-0.4583333333333333],[121,125,70,-0.4583333333333333],[121,125,71,-0.4583333333333333],[121,125,72,-0.4583333333333333],[121,125,73,-0.4583333333333333],[121,125,74,-0.4583333333333333],[121,125,75,-0.4583333333333333],[121,125,76,-0.4583333333333333],[121,125,77,-0.4583333333333333],[121,125,78,-0.4583333333333333],[121,125,79,-0.4583333333333333],[121,126,64,-0.4583333333333333],[121,126,65,-0.4583333333333333],[121,126,66,-0.4583333333333333],[121,126,67,-0.4583333333333333],[121,126,68,-0.4583333333333333],[121,126,69,-0.4583333333333333],[121,126,70,-0.4583333333333333],[121,126,71,-0.4583333333333333],[121,126,72,-0.4583333333333333],[121,126,73,-0.4583333333333333],[121,126,74,-0.4583333333333333],[121,126,75,-0.4583333333333333],[121,126,76,-0.4583333333333333],[121,126,77,-0.4583333333333333],[121,126,78,-0.4583333333333333],[121,126,79,-0.4583333333333333],[121,127,64,-0.4583333333333333],[121,127,65,-0.4583333333333333],[121,127,66,-0.4583333333333333],[121,127,67,-0.4583333333333333],[121,127,68,-0.4583333333333333],[121,127,69,-0.4583333333333333],[121,127,70,-0.4583333333333333],[121,127,71,-0.4583333333333333],[121,127,72,-0.4583333333333333],[121,127,73,-0.4583333333333333],[121,127,74,-0.4583333333333333],[121,127,75,-0.4583333333333333],[121,127,76,-0.4583333333333333],[121,127,77,-0.4583333333333333],[121,127,78,-0.4583333333333333],[121,127,79,-0.4583333333333333],[121,128,64,-0.4583333333333333],[121,128,65,-0.4583333333333333],[121,128,66,-0.4583333333333333],[121,128,67,-0.4583333333333333],[121,128,68,-0.4583333333333333],[121,128,69,-0.4583333333333333],[121,128,70,-0.4583333333333333],[121,128,71,-0.4583333333333333],[121,128,72,-0.4583333333333333],[121,128,73,-0.4583333333333333],[121,128,74,-0.4583333333333333],[121,128,75,-0.4583333333333333],[121,128,76,-0.4583333333333333],[121,128,77,-0.4583333333333333],[121,128,78,-0.4583333333333333],[121,128,79,-0.4583333333333333],[121,129,64,-0.4583333333333333],[121,129,65,-0.4583333333333333],[121,129,66,-0.4583333333333333],[121,129,67,-0.4583333333333333],[121,129,68,-0.4583333333333333],[121,129,69,-0.4583333333333333],[121,129,70,-0.4583333333333333],[121,129,71,-0.4583333333333333],[121,129,72,-0.4583333333333333],[121,129,73,-0.4583333333333333],[121,129,74,-0.4583333333333333],[121,129,75,-0.4583333333333333],[121,129,76,-0.4583333333333333],[121,129,77,-0.4583333333333333],[121,129,78,-0.4583333333333333],[121,129,79,-0.4583333333333333],[121,130,64,-0.4583333333333333],[121,130,65,-0.4583333333333333],[121,130,66,-0.4583333333333333],[121,130,67,-0.4583333333333333],[121,130,68,-0.4583333333333333],[121,130,69,-0.4583333333333333],[121,130,70,-0.4583333333333333],[121,130,71,-0.4583333333333333],[121,130,72,-0.4583333333333333],[121,130,73,-0.4583333333333333],[121,130,74,-0.4583333333333333],[121,130,75,-0.4583333333333333],[121,130,76,-0.4583333333333333],[121,130,77,-0.4583333333333333],[121,130,78,-0.4583333333333333],[121,130,79,-0.4583333333333333],[121,131,64,-0.4583333333333333],[121,131,65,-0.4583333333333333],[121,131,66,-0.4583333333333333],[121,131,67,-0.4583333333333333],[121,131,68,-0.4583333333333333],[121,131,69,-0.4583333333333333],[121,131,70,-0.4583333333333333],[121,131,71,-0.4583333333333333],[121,131,72,-0.4583333333333333],[121,131,73,-0.4583333333333333],[121,131,74,-0.4583333333333333],[121,131,75,-0.4583333333333333],[121,131,76,-0.4583333333333333],[121,131,77,-0.4583333333333333],[121,131,78,-0.4583333333333333],[121,131,79,-0.4583333333333333],[121,132,64,-0.4583333333333333],[121,132,65,-0.4583333333333333],[121,132,66,-0.4583333333333333],[121,132,67,-0.4583333333333333],[121,132,68,-0.4583333333333333],[121,132,69,-0.4583333333333333],[121,132,70,-0.4583333333333333],[121,132,71,-0.4583333333333333],[121,132,72,-0.4583333333333333],[121,132,73,-0.4583333333333333],[121,132,74,-0.4583333333333333],[121,132,75,-0.4583333333333333],[121,132,76,-0.4583333333333333],[121,132,77,-0.4583333333333333],[121,132,78,-0.4583333333333333],[121,132,79,-0.4583333333333333],[121,133,64,-0.4583333333333333],[121,133,65,-0.4583333333333333],[121,133,66,-0.4583333333333333],[121,133,67,-0.4583333333333333],[121,133,68,-0.4583333333333333],[121,133,69,-0.4583333333333333],[121,133,70,-0.4583333333333333],[121,133,71,-0.4583333333333333],[121,133,72,-0.4583333333333333],[121,133,73,-0.4583333333333333],[121,133,74,-0.4583333333333333],[121,133,75,-0.4583333333333333],[121,133,76,-0.4583333333333333],[121,133,77,-0.4583333333333333],[121,133,78,-0.4583333333333333],[121,133,79,-0.4583333333333333],[121,134,64,-0.4583333333333333],[121,134,65,-0.4583333333333333],[121,134,66,-0.4583333333333333],[121,134,67,-0.4583333333333333],[121,134,68,-0.4583333333333333],[121,134,69,-0.4583333333333333],[121,134,70,-0.4583333333333333],[121,134,71,-0.4583333333333333],[121,134,72,-0.4583333333333333],[121,134,73,-0.4583333333333333],[121,134,74,-0.4583333333333333],[121,134,75,-0.4583333333333333],[121,134,76,-0.4583333333333333],[121,134,77,-0.4583333333333333],[121,134,78,-0.4583333333333333],[121,134,79,-0.4583333333333333],[121,135,64,-0.4583333333333333],[121,135,65,-0.4583333333333333],[121,135,66,-0.4583333333333333],[121,135,67,-0.4583333333333333],[121,135,68,-0.4583333333333333],[121,135,69,-0.4583333333333333],[121,135,70,-0.4583333333333333],[121,135,71,-0.4583333333333333],[121,135,72,-0.4583333333333333],[121,135,73,-0.4583333333333333],[121,135,74,-0.4583333333333333],[121,135,75,-0.4583333333333333],[121,135,76,-0.4583333333333333],[121,135,77,-0.4583333333333333],[121,135,78,-0.4583333333333333],[121,135,79,-0.4583333333333333],[121,136,64,-0.4583333333333333],[121,136,65,-0.4583333333333333],[121,136,66,-0.4583333333333333],[121,136,67,-0.4583333333333333],[121,136,68,-0.4583333333333333],[121,136,69,-0.4583333333333333],[121,136,70,-0.4583333333333333],[121,136,71,-0.4583333333333333],[121,136,72,-0.4583333333333333],[121,136,73,-0.4583333333333333],[121,136,74,-0.4583333333333333],[121,136,75,-0.4583333333333333],[121,136,76,-0.4583333333333333],[121,136,77,-0.4583333333333333],[121,136,78,-0.4583333333333333],[121,136,79,-0.4583333333333333],[121,137,64,-0.4583333333333333],[121,137,65,-0.4583333333333333],[121,137,66,-0.4583333333333333],[121,137,67,-0.4583333333333333],[121,137,68,-0.4583333333333333],[121,137,69,-0.4583333333333333],[121,137,70,-0.4583333333333333],[121,137,71,-0.4583333333333333],[121,137,72,-0.4583333333333333],[121,137,73,-0.4583333333333333],[121,137,74,-0.4583333333333333],[121,137,75,-0.4583333333333333],[121,137,76,-0.4583333333333333],[121,137,77,-0.4583333333333333],[121,137,78,-0.4583333333333333],[121,137,79,-0.4583333333333333],[121,138,64,-0.4583333333333333],[121,138,65,-0.4583333333333333],[121,138,66,-0.4583333333333333],[121,138,67,-0.4583333333333333],[121,138,68,-0.4583333333333333],[121,138,69,-0.4583333333333333],[121,138,70,-0.4583333333333333],[121,138,71,-0.4583333333333333],[121,138,72,-0.4583333333333333],[121,138,73,-0.4583333333333333],[121,138,74,-0.4583333333333333],[121,138,75,-0.4583333333333333],[121,138,76,-0.4583333333333333],[121,138,77,-0.4583333333333333],[121,138,78,-0.4583333333333333],[121,138,79,-0.4583333333333333],[121,139,64,-0.4583333333333333],[121,139,65,-0.4583333333333333],[121,139,66,-0.4583333333333333],[121,139,67,-0.4583333333333333],[121,139,68,-0.4583333333333333],[121,139,69,-0.4583333333333333],[121,139,70,-0.4583333333333333],[121,139,71,-0.4583333333333333],[121,139,72,-0.4583333333333333],[121,139,73,-0.4583333333333333],[121,139,74,-0.4583333333333333],[121,139,75,-0.4583333333333333],[121,139,76,-0.4583333333333333],[121,139,77,-0.4583333333333333],[121,139,78,-0.4583333333333333],[121,139,79,-0.4583333333333333],[121,140,64,-0.4583333333333333],[121,140,65,-0.4583333333333333],[121,140,66,-0.4583333333333333],[121,140,67,-0.4583333333333333],[121,140,68,-0.4583333333333333],[121,140,69,-0.4583333333333333],[121,140,70,-0.4583333333333333],[121,140,71,-0.4583333333333333],[121,140,72,-0.4583333333333333],[121,140,73,-0.4583333333333333],[121,140,74,-0.4583333333333333],[121,140,75,-0.4583333333333333],[121,140,76,-0.4583333333333333],[121,140,77,-0.4583333333333333],[121,140,78,-0.4583333333333333],[121,140,79,-0.4583333333333333],[121,141,64,-0.4583333333333333],[121,141,65,-0.4583333333333333],[121,141,66,-0.4583333333333333],[121,141,67,-0.4583333333333333],[121,141,68,-0.4583333333333333],[121,141,69,-0.4583333333333333],[121,141,70,-0.4583333333333333],[121,141,71,-0.4583333333333333],[121,141,72,-0.4583333333333333],[121,141,73,-0.4583333333333333],[121,141,74,-0.4583333333333333],[121,141,75,-0.4583333333333333],[121,141,76,-0.4583333333333333],[121,141,77,-0.4583333333333333],[121,141,78,-0.4583333333333333],[121,141,79,-0.4583333333333333],[121,142,64,-0.4583333333333333],[121,142,65,-0.4583333333333333],[121,142,66,-0.4583333333333333],[121,142,67,-0.4583333333333333],[121,142,68,-0.4583333333333333],[121,142,69,-0.4583333333333333],[121,142,70,-0.4583333333333333],[121,142,71,-0.4583333333333333],[121,142,72,-0.4583333333333333],[121,142,73,-0.4583333333333333],[121,142,74,-0.4583333333333333],[121,142,75,-0.4583333333333333],[121,142,76,-0.4583333333333333],[121,142,77,-0.4583333333333333],[121,142,78,-0.4583333333333333],[121,142,79,-0.4583333333333333],[121,143,64,-0.4583333333333333],[121,143,65,-0.4583333333333333],[121,143,66,-0.4583333333333333],[121,143,67,-0.4583333333333333],[121,143,68,-0.4583333333333333],[121,143,69,-0.4583333333333333],[121,143,70,-0.4583333333333333],[121,143,71,-0.4583333333333333],[121,143,72,-0.4583333333333333],[121,143,73,-0.4583333333333333],[121,143,74,-0.4583333333333333],[121,143,75,-0.4583333333333333],[121,143,76,-0.4583333333333333],[121,143,77,-0.4583333333333333],[121,143,78,-0.4583333333333333],[121,143,79,-0.4583333333333333],[121,144,64,-0.4583333333333333],[121,144,65,-0.4583333333333333],[121,144,66,-0.4583333333333333],[121,144,67,-0.4583333333333333],[121,144,68,-0.4583333333333333],[121,144,69,-0.4583333333333333],[121,144,70,-0.4583333333333333],[121,144,71,-0.4583333333333333],[121,144,72,-0.4583333333333333],[121,144,73,-0.4583333333333333],[121,144,74,-0.4583333333333333],[121,144,75,-0.4583333333333333],[121,144,76,-0.4583333333333333],[121,144,77,-0.4583333333333333],[121,144,78,-0.4583333333333333],[121,144,79,-0.4583333333333333],[121,145,64,-0.4583333333333333],[121,145,65,-0.4583333333333333],[121,145,66,-0.4583333333333333],[121,145,67,-0.4583333333333333],[121,145,68,-0.4583333333333333],[121,145,69,-0.4583333333333333],[121,145,70,-0.4583333333333333],[121,145,71,-0.4583333333333333],[121,145,72,-0.4583333333333333],[121,145,73,-0.4583333333333333],[121,145,74,-0.4583333333333333],[121,145,75,-0.4583333333333333],[121,145,76,-0.4583333333333333],[121,145,77,-0.4583333333333333],[121,145,78,-0.4583333333333333],[121,145,79,-0.4583333333333333],[121,146,64,-0.4583333333333333],[121,146,65,-0.4583333333333333],[121,146,66,-0.4583333333333333],[121,146,67,-0.4583333333333333],[121,146,68,-0.4583333333333333],[121,146,69,-0.4583333333333333],[121,146,70,-0.4583333333333333],[121,146,71,-0.4583333333333333],[121,146,72,-0.4583333333333333],[121,146,73,-0.4583333333333333],[121,146,74,-0.4583333333333333],[121,146,75,-0.4583333333333333],[121,146,76,-0.4583333333333333],[121,146,77,-0.4583333333333333],[121,146,78,-0.4583333333333333],[121,146,79,-0.4583333333333333],[121,147,64,-0.4583333333333333],[121,147,65,-0.4583333333333333],[121,147,66,-0.4583333333333333],[121,147,67,-0.4583333333333333],[121,147,68,-0.4583333333333333],[121,147,69,-0.4583333333333333],[121,147,70,-0.4583333333333333],[121,147,71,-0.4583333333333333],[121,147,72,-0.4583333333333333],[121,147,73,-0.4583333333333333],[121,147,74,-0.4583333333333333],[121,147,75,-0.4583333333333333],[121,147,76,-0.4583333333333333],[121,147,77,-0.4583333333333333],[121,147,78,-0.4583333333333333],[121,147,79,-0.4583333333333333],[121,148,64,-0.4583333333333333],[121,148,65,-0.4583333333333333],[121,148,66,-0.4583333333333333],[121,148,67,-0.4583333333333333],[121,148,68,-0.4583333333333333],[121,148,69,-0.4583333333333333],[121,148,70,-0.4583333333333333],[121,148,71,-0.4583333333333333],[121,148,72,-0.4583333333333333],[121,148,73,-0.4583333333333333],[121,148,74,-0.4583333333333333],[121,148,75,-0.4583333333333333],[121,148,76,-0.4583333333333333],[121,148,77,-0.4583333333333333],[121,148,78,-0.4583333333333333],[121,148,79,-0.4583333333333333],[121,149,64,-0.4583333333333333],[121,149,65,-0.4583333333333333],[121,149,66,-0.4583333333333333],[121,149,67,-0.4583333333333333],[121,149,68,-0.4583333333333333],[121,149,69,-0.4583333333333333],[121,149,70,-0.4583333333333333],[121,149,71,-0.4583333333333333],[121,149,72,-0.4583333333333333],[121,149,73,-0.4583333333333333],[121,149,74,-0.4583333333333333],[121,149,75,-0.4583333333333333],[121,149,76,-0.4583333333333333],[121,149,77,-0.4583333333333333],[121,149,78,-0.4583333333333333],[121,149,79,-0.4583333333333333],[121,150,64,-0.4583333333333333],[121,150,65,-0.4583333333333333],[121,150,66,-0.4583333333333333],[121,150,67,-0.4583333333333333],[121,150,68,-0.4583333333333333],[121,150,69,-0.4583333333333333],[121,150,70,-0.4583333333333333],[121,150,71,-0.4583333333333333],[121,150,72,-0.4583333333333333],[121,150,73,-0.4583333333333333],[121,150,74,-0.4583333333333333],[121,150,75,-0.4583333333333333],[121,150,76,-0.4583333333333333],[121,150,77,-0.4583333333333333],[121,150,78,-0.4583333333333333],[121,150,79,-0.4583333333333333],[121,151,64,-0.4583333333333333],[121,151,65,-0.4583333333333333],[121,151,66,-0.4583333333333333],[121,151,67,-0.4583333333333333],[121,151,68,-0.4583333333333333],[121,151,69,-0.4583333333333333],[121,151,70,-0.4583333333333333],[121,151,71,-0.4583333333333333],[121,151,72,-0.4583333333333333],[121,151,73,-0.4583333333333333],[121,151,74,-0.4583333333333333],[121,151,75,-0.4583333333333333],[121,151,76,-0.4583333333333333],[121,151,77,-0.4583333333333333],[121,151,78,-0.4583333333333333],[121,151,79,-0.4583333333333333],[121,152,64,-0.4583333333333333],[121,152,65,-0.4583333333333333],[121,152,66,-0.4583333333333333],[121,152,67,-0.4583333333333333],[121,152,68,-0.4583333333333333],[121,152,69,-0.4583333333333333],[121,152,70,-0.4583333333333333],[121,152,71,-0.4583333333333333],[121,152,72,-0.4583333333333333],[121,152,73,-0.4583333333333333],[121,152,74,-0.4583333333333333],[121,152,75,-0.4583333333333333],[121,152,76,-0.4583333333333333],[121,152,77,-0.4583333333333333],[121,152,78,-0.4583333333333333],[121,152,79,-0.4583333333333333],[121,153,64,-0.4583333333333333],[121,153,65,-0.4583333333333333],[121,153,66,-0.4583333333333333],[121,153,67,-0.4583333333333333],[121,153,68,-0.4583333333333333],[121,153,69,-0.4583333333333333],[121,153,70,-0.4583333333333333],[121,153,71,-0.4583333333333333],[121,153,72,-0.4583333333333333],[121,153,73,-0.4583333333333333],[121,153,74,-0.4583333333333333],[121,153,75,-0.4583333333333333],[121,153,76,-0.4583333333333333],[121,153,77,-0.4583333333333333],[121,153,78,-0.4583333333333333],[121,153,79,-0.4583333333333333],[121,154,64,-0.4583333333333333],[121,154,65,-0.4583333333333333],[121,154,66,-0.4583333333333333],[121,154,67,-0.4583333333333333],[121,154,68,-0.4583333333333333],[121,154,69,-0.4583333333333333],[121,154,70,-0.4583333333333333],[121,154,71,-0.4583333333333333],[121,154,72,-0.4583333333333333],[121,154,73,-0.4583333333333333],[121,154,74,-0.4583333333333333],[121,154,75,-0.4583333333333333],[121,154,76,-0.4583333333333333],[121,154,77,-0.4583333333333333],[121,154,78,-0.4583333333333333],[121,154,79,-0.4583333333333333],[121,155,64,-0.4583333333333333],[121,155,65,-0.4583333333333333],[121,155,66,-0.4583333333333333],[121,155,67,-0.4583333333333333],[121,155,68,-0.4583333333333333],[121,155,69,-0.4583333333333333],[121,155,70,-0.4583333333333333],[121,155,71,-0.4583333333333333],[121,155,72,-0.4583333333333333],[121,155,73,-0.4583333333333333],[121,155,74,-0.4583333333333333],[121,155,75,-0.4583333333333333],[121,155,76,-0.4583333333333333],[121,155,77,-0.4583333333333333],[121,155,78,-0.4583333333333333],[121,155,79,-0.4583333333333333],[121,156,64,-0.4583333333333333],[121,156,65,-0.4583333333333333],[121,156,66,-0.4583333333333333],[121,156,67,-0.4583333333333333],[121,156,68,-0.4583333333333333],[121,156,69,-0.4583333333333333],[121,156,70,-0.4583333333333333],[121,156,71,-0.4583333333333333],[121,156,72,-0.4583333333333333],[121,156,73,-0.4583333333333333],[121,156,74,-0.4583333333333333],[121,156,75,-0.4583333333333333],[121,156,76,-0.4583333333333333],[121,156,77,-0.4583333333333333],[121,156,78,-0.4583333333333333],[121,156,79,-0.4583333333333333],[121,157,64,-0.4583333333333333],[121,157,65,-0.4583333333333333],[121,157,66,-0.4583333333333333],[121,157,67,-0.4583333333333333],[121,157,68,-0.4583333333333333],[121,157,69,-0.4583333333333333],[121,157,70,-0.4583333333333333],[121,157,71,-0.4583333333333333],[121,157,72,-0.4583333333333333],[121,157,73,-0.4583333333333333],[121,157,74,-0.4583333333333333],[121,157,75,-0.4583333333333333],[121,157,76,-0.4583333333333333],[121,157,77,-0.4583333333333333],[121,157,78,-0.4583333333333333],[121,157,79,-0.4583333333333333],[121,158,64,-0.4583333333333333],[121,158,65,-0.4583333333333333],[121,158,66,-0.4583333333333333],[121,158,67,-0.4583333333333333],[121,158,68,-0.4583333333333333],[121,158,69,-0.4583333333333333],[121,158,70,-0.4583333333333333],[121,158,71,-0.4583333333333333],[121,158,72,-0.4583333333333333],[121,158,73,-0.4583333333333333],[121,158,74,-0.4583333333333333],[121,158,75,-0.4583333333333333],[121,158,76,-0.4583333333333333],[121,158,77,-0.4583333333333333],[121,158,78,-0.4583333333333333],[121,158,79,-0.4583333333333333],[121,159,64,-0.4583333333333333],[121,159,65,-0.4583333333333333],[121,159,66,-0.4583333333333333],[121,159,67,-0.4583333333333333],[121,159,68,-0.4583333333333333],[121,159,69,-0.4583333333333333],[121,159,70,-0.4583333333333333],[121,159,71,-0.4583333333333333],[121,159,72,-0.4583333333333333],[121,159,73,-0.4583333333333333],[121,159,74,-0.4583333333333333],[121,159,75,-0.4583333333333333],[121,159,76,-0.4583333333333333],[121,159,77,-0.4583333333333333],[121,159,78,-0.4583333333333333],[121,159,79,-0.4583333333333333],[121,160,64,-0.4583333333333333],[121,160,65,-0.4583333333333333],[121,160,66,-0.4583333333333333],[121,160,67,-0.4583333333333333],[121,160,68,-0.4583333333333333],[121,160,69,-0.4583333333333333],[121,160,70,-0.4583333333333333],[121,160,71,-0.4583333333333333],[121,160,72,-0.4583333333333333],[121,160,73,-0.4583333333333333],[121,160,74,-0.4583333333333333],[121,160,75,-0.4583333333333333],[121,160,76,-0.4583333333333333],[121,160,77,-0.4583333333333333],[121,160,78,-0.4583333333333333],[121,160,79,-0.4583333333333333],[121,161,64,-0.4583333333333333],[121,161,65,-0.4583333333333333],[121,161,66,-0.4583333333333333],[121,161,67,-0.4583333333333333],[121,161,68,-0.4583333333333333],[121,161,69,-0.4583333333333333],[121,161,70,-0.4583333333333333],[121,161,71,-0.4583333333333333],[121,161,72,-0.4583333333333333],[121,161,73,-0.4583333333333333],[121,161,74,-0.4583333333333333],[121,161,75,-0.4583333333333333],[121,161,76,-0.4583333333333333],[121,161,77,-0.4583333333333333],[121,161,78,-0.4583333333333333],[121,161,79,-0.4583333333333333],[121,162,64,-0.4583333333333333],[121,162,65,-0.4583333333333333],[121,162,66,-0.4583333333333333],[121,162,67,-0.4583333333333333],[121,162,68,-0.4583333333333333],[121,162,69,-0.4583333333333333],[121,162,70,-0.4583333333333333],[121,162,71,-0.4583333333333333],[121,162,72,-0.4583333333333333],[121,162,73,-0.4583333333333333],[121,162,74,-0.4583333333333333],[121,162,75,-0.4583333333333333],[121,162,76,-0.4583333333333333],[121,162,77,-0.4583333333333333],[121,162,78,-0.4583333333333333],[121,162,79,-0.4583333333333333],[121,163,64,-0.4583333333333333],[121,163,65,-0.4583333333333333],[121,163,66,-0.4583333333333333],[121,163,67,-0.4583333333333333],[121,163,68,-0.4583333333333333],[121,163,69,-0.4583333333333333],[121,163,70,-0.4583333333333333],[121,163,71,-0.4583333333333333],[121,163,72,-0.4583333333333333],[121,163,73,-0.4583333333333333],[121,163,74,-0.4583333333333333],[121,163,75,-0.4583333333333333],[121,163,76,-0.4583333333333333],[121,163,77,-0.4583333333333333],[121,163,78,-0.4583333333333333],[121,163,79,-0.4583333333333333],[121,164,64,-0.4583333333333333],[121,164,65,-0.4583333333333333],[121,164,66,-0.4583333333333333],[121,164,67,-0.4583333333333333],[121,164,68,-0.4583333333333333],[121,164,69,-0.4583333333333333],[121,164,70,-0.4583333333333333],[121,164,71,-0.4583333333333333],[121,164,72,-0.4583333333333333],[121,164,73,-0.4583333333333333],[121,164,74,-0.4583333333333333],[121,164,75,-0.4583333333333333],[121,164,76,-0.4583333333333333],[121,164,77,-0.4583333333333333],[121,164,78,-0.4583333333333333],[121,164,79,-0.4583333333333333],[121,165,64,-0.4583333333333333],[121,165,65,-0.4583333333333333],[121,165,66,-0.4583333333333333],[121,165,67,-0.4583333333333333],[121,165,68,-0.4583333333333333],[121,165,69,-0.4583333333333333],[121,165,70,-0.4583333333333333],[121,165,71,-0.4583333333333333],[121,165,72,-0.4583333333333333],[121,165,73,-0.4583333333333333],[121,165,74,-0.4583333333333333],[121,165,75,-0.4583333333333333],[121,165,76,-0.4583333333333333],[121,165,77,-0.4583333333333333],[121,165,78,-0.4583333333333333],[121,165,79,-0.4583333333333333],[121,166,64,-0.4583333333333333],[121,166,65,-0.4583333333333333],[121,166,66,-0.4583333333333333],[121,166,67,-0.4583333333333333],[121,166,68,-0.4583333333333333],[121,166,69,-0.4583333333333333],[121,166,70,-0.4583333333333333],[121,166,71,-0.4583333333333333],[121,166,72,-0.4583333333333333],[121,166,73,-0.4583333333333333],[121,166,74,-0.4583333333333333],[121,166,75,-0.4583333333333333],[121,166,76,-0.4583333333333333],[121,166,77,-0.4583333333333333],[121,166,78,-0.4583333333333333],[121,166,79,-0.4583333333333333],[121,167,64,-0.4583333333333333],[121,167,65,-0.4583333333333333],[121,167,66,-0.4583333333333333],[121,167,67,-0.4583333333333333],[121,167,68,-0.4583333333333333],[121,167,69,-0.4583333333333333],[121,167,70,-0.4583333333333333],[121,167,71,-0.4583333333333333],[121,167,72,-0.4583333333333333],[121,167,73,-0.4583333333333333],[121,167,74,-0.4583333333333333],[121,167,75,-0.4583333333333333],[121,167,76,-0.4583333333333333],[121,167,77,-0.4583333333333333],[121,167,78,-0.4583333333333333],[121,167,79,-0.4583333333333333],[121,168,64,-0.4583333333333333],[121,168,65,-0.4583333333333333],[121,168,66,-0.4583333333333333],[121,168,67,-0.4583333333333333],[121,168,68,-0.4583333333333333],[121,168,69,-0.4583333333333333],[121,168,70,-0.4583333333333333],[121,168,71,-0.4583333333333333],[121,168,72,-0.4583333333333333],[121,168,73,-0.4583333333333333],[121,168,74,-0.4583333333333333],[121,168,75,-0.4583333333333333],[121,168,76,-0.4583333333333333],[121,168,77,-0.4583333333333333],[121,168,78,-0.4583333333333333],[121,168,79,-0.4583333333333333],[121,169,64,-0.4583333333333333],[121,169,65,-0.4583333333333333],[121,169,66,-0.4583333333333333],[121,169,67,-0.4583333333333333],[121,169,68,-0.4583333333333333],[121,169,69,-0.4583333333333333],[121,169,70,-0.4583333333333333],[121,169,71,-0.4583333333333333],[121,169,72,-0.4583333333333333],[121,169,73,-0.4583333333333333],[121,169,74,-0.4583333333333333],[121,169,75,-0.4583333333333333],[121,169,76,-0.4583333333333333],[121,169,77,-0.4583333333333333],[121,169,78,-0.4583333333333333],[121,169,79,-0.4583333333333333],[121,170,64,-0.4583333333333333],[121,170,65,-0.4583333333333333],[121,170,66,-0.4583333333333333],[121,170,67,-0.4583333333333333],[121,170,68,-0.4583333333333333],[121,170,69,-0.4583333333333333],[121,170,70,-0.4583333333333333],[121,170,71,-0.4583333333333333],[121,170,72,-0.4583333333333333],[121,170,73,-0.4583333333333333],[121,170,74,-0.4583333333333333],[121,170,75,-0.4583333333333333],[121,170,76,-0.4583333333333333],[121,170,77,-0.4583333333333333],[121,170,78,-0.4583333333333333],[121,170,79,-0.4583333333333333],[121,171,64,-0.4583333333333333],[121,171,65,-0.4583333333333333],[121,171,66,-0.4583333333333333],[121,171,67,-0.4583333333333333],[121,171,68,-0.4583333333333333],[121,171,69,-0.4583333333333333],[121,171,70,-0.4583333333333333],[121,171,71,-0.4583333333333333],[121,171,72,-0.4583333333333333],[121,171,73,-0.4583333333333333],[121,171,74,-0.4583333333333333],[121,171,75,-0.4583333333333333],[121,171,76,-0.4583333333333333],[121,171,77,-0.4583333333333333],[121,171,78,-0.4583333333333333],[121,171,79,-0.4583333333333333],[121,172,64,-0.4583333333333333],[121,172,65,-0.4583333333333333],[121,172,66,-0.4583333333333333],[121,172,67,-0.4583333333333333],[121,172,68,-0.4583333333333333],[121,172,69,-0.4583333333333333],[121,172,70,-0.4583333333333333],[121,172,71,-0.4583333333333333],[121,172,72,-0.4583333333333333],[121,172,73,-0.4583333333333333],[121,172,74,-0.4583333333333333],[121,172,75,-0.4583333333333333],[121,172,76,-0.4583333333333333],[121,172,77,-0.4583333333333333],[121,172,78,-0.4583333333333333],[121,172,79,-0.4583333333333333],[121,173,64,-0.4583333333333333],[121,173,65,-0.4583333333333333],[121,173,66,-0.4583333333333333],[121,173,67,-0.4583333333333333],[121,173,68,-0.4583333333333333],[121,173,69,-0.4583333333333333],[121,173,70,-0.4583333333333333],[121,173,71,-0.4583333333333333],[121,173,72,-0.4583333333333333],[121,173,73,-0.4583333333333333],[121,173,74,-0.4583333333333333],[121,173,75,-0.4583333333333333],[121,173,76,-0.4583333333333333],[121,173,77,-0.4583333333333333],[121,173,78,-0.4583333333333333],[121,173,79,-0.4583333333333333],[121,174,64,-0.4583333333333333],[121,174,65,-0.4583333333333333],[121,174,66,-0.4583333333333333],[121,174,67,-0.4583333333333333],[121,174,68,-0.4583333333333333],[121,174,69,-0.4583333333333333],[121,174,70,-0.4583333333333333],[121,174,71,-0.4583333333333333],[121,174,72,-0.4583333333333333],[121,174,73,-0.4583333333333333],[121,174,74,-0.4583333333333333],[121,174,75,-0.4583333333333333],[121,174,76,-0.4583333333333333],[121,174,77,-0.4583333333333333],[121,174,78,-0.4583333333333333],[121,174,79,-0.4583333333333333],[121,175,64,-0.4583333333333333],[121,175,65,-0.4583333333333333],[121,175,66,-0.4583333333333333],[121,175,67,-0.4583333333333333],[121,175,68,-0.4583333333333333],[121,175,69,-0.4583333333333333],[121,175,70,-0.4583333333333333],[121,175,71,-0.4583333333333333],[121,175,72,-0.4583333333333333],[121,175,73,-0.4583333333333333],[121,175,74,-0.4583333333333333],[121,175,75,-0.4583333333333333],[121,175,76,-0.4583333333333333],[121,175,77,-0.4583333333333333],[121,175,78,-0.4583333333333333],[121,175,79,-0.4583333333333333],[121,176,64,-0.4583333333333333],[121,176,65,-0.4583333333333333],[121,176,66,-0.4583333333333333],[121,176,67,-0.4583333333333333],[121,176,68,-0.4583333333333333],[121,176,69,-0.4583333333333333],[121,176,70,-0.4583333333333333],[121,176,71,-0.4583333333333333],[121,176,72,-0.4583333333333333],[121,176,73,-0.4583333333333333],[121,176,74,-0.4583333333333333],[121,176,75,-0.4583333333333333],[121,176,76,-0.4583333333333333],[121,176,77,-0.4583333333333333],[121,176,78,-0.4583333333333333],[121,176,79,-0.4583333333333333],[121,177,64,-0.4583333333333333],[121,177,65,-0.4583333333333333],[121,177,66,-0.4583333333333333],[121,177,67,-0.4583333333333333],[121,177,68,-0.4583333333333333],[121,177,69,-0.4583333333333333],[121,177,70,-0.4583333333333333],[121,177,71,-0.4583333333333333],[121,177,72,-0.4583333333333333],[121,177,73,-0.4583333333333333],[121,177,74,-0.4583333333333333],[121,177,75,-0.4583333333333333],[121,177,76,-0.4583333333333333],[121,177,77,-0.4583333333333333],[121,177,78,-0.4583333333333333],[121,177,79,-0.4583333333333333],[121,178,64,-0.4583333333333333],[121,178,65,-0.4583333333333333],[121,178,66,-0.4583333333333333],[121,178,67,-0.4583333333333333],[121,178,68,-0.4583333333333333],[121,178,69,-0.4583333333333333],[121,178,70,-0.4583333333333333],[121,178,71,-0.4583333333333333],[121,178,72,-0.4583333333333333],[121,178,73,-0.4583333333333333],[121,178,74,-0.4583333333333333],[121,178,75,-0.4583333333333333],[121,178,76,-0.4583333333333333],[121,178,77,-0.4583333333333333],[121,178,78,-0.4583333333333333],[121,178,79,-0.4583333333333333],[121,179,64,-0.4583333333333333],[121,179,65,-0.4583333333333333],[121,179,66,-0.4583333333333333],[121,179,67,-0.4583333333333333],[121,179,68,-0.4583333333333333],[121,179,69,-0.4583333333333333],[121,179,70,-0.4583333333333333],[121,179,71,-0.4583333333333333],[121,179,72,-0.4583333333333333],[121,179,73,-0.4583333333333333],[121,179,74,-0.4583333333333333],[121,179,75,-0.4583333333333333],[121,179,76,-0.4583333333333333],[121,179,77,-0.4583333333333333],[121,179,78,-0.4583333333333333],[121,179,79,-0.4583333333333333],[121,180,64,-0.4583333333333333],[121,180,65,-0.4583333333333333],[121,180,66,-0.4583333333333333],[121,180,67,-0.4583333333333333],[121,180,68,-0.4583333333333333],[121,180,69,-0.4583333333333333],[121,180,70,-0.4583333333333333],[121,180,71,-0.4583333333333333],[121,180,72,-0.4583333333333333],[121,180,73,-0.4583333333333333],[121,180,74,-0.4583333333333333],[121,180,75,-0.4583333333333333],[121,180,76,-0.4583333333333333],[121,180,77,-0.4583333333333333],[121,180,78,-0.4583333333333333],[121,180,79,-0.4583333333333333],[121,181,64,-0.4583333333333333],[121,181,65,-0.4583333333333333],[121,181,66,-0.4583333333333333],[121,181,67,-0.4583333333333333],[121,181,68,-0.4583333333333333],[121,181,69,-0.4583333333333333],[121,181,70,-0.4583333333333333],[121,181,71,-0.4583333333333333],[121,181,72,-0.4583333333333333],[121,181,73,-0.4583333333333333],[121,181,74,-0.4583333333333333],[121,181,75,-0.4583333333333333],[121,181,76,-0.4583333333333333],[121,181,77,-0.4583333333333333],[121,181,78,-0.4583333333333333],[121,181,79,-0.4583333333333333],[121,182,64,-0.4583333333333333],[121,182,65,-0.4583333333333333],[121,182,66,-0.4583333333333333],[121,182,67,-0.4583333333333333],[121,182,68,-0.4583333333333333],[121,182,69,-0.4583333333333333],[121,182,70,-0.4583333333333333],[121,182,71,-0.4583333333333333],[121,182,72,-0.4583333333333333],[121,182,73,-0.4583333333333333],[121,182,74,-0.4583333333333333],[121,182,75,-0.4583333333333333],[121,182,76,-0.4583333333333333],[121,182,77,-0.4583333333333333],[121,182,78,-0.4583333333333333],[121,182,79,-0.4583333333333333],[121,183,64,-0.4583333333333333],[121,183,65,-0.4583333333333333],[121,183,66,-0.4583333333333333],[121,183,67,-0.4583333333333333],[121,183,68,-0.4583333333333333],[121,183,69,-0.4583333333333333],[121,183,70,-0.4583333333333333],[121,183,71,-0.4583333333333333],[121,183,72,-0.4583333333333333],[121,183,73,-0.4583333333333333],[121,183,74,-0.4583333333333333],[121,183,75,-0.4583333333333333],[121,183,76,-0.4583333333333333],[121,183,77,-0.4583333333333333],[121,183,78,-0.4583333333333333],[121,183,79,-0.4583333333333333],[121,184,64,-0.4583333333333333],[121,184,65,-0.4583333333333333],[121,184,66,-0.4583333333333333],[121,184,67,-0.4583333333333333],[121,184,68,-0.4583333333333333],[121,184,69,-0.4583333333333333],[121,184,70,-0.4583333333333333],[121,184,71,-0.4583333333333333],[121,184,72,-0.4583333333333333],[121,184,73,-0.4583333333333333],[121,184,74,-0.4583333333333333],[121,184,75,-0.4583333333333333],[121,184,76,-0.4583333333333333],[121,184,77,-0.4583333333333333],[121,184,78,-0.4583333333333333],[121,184,79,-0.4583333333333333],[121,185,64,-0.4583333333333333],[121,185,65,-0.4583333333333333],[121,185,66,-0.4583333333333333],[121,185,67,-0.4583333333333333],[121,185,68,-0.4583333333333333],[121,185,69,-0.4583333333333333],[121,185,70,-0.4583333333333333],[121,185,71,-0.4583333333333333],[121,185,72,-0.4583333333333333],[121,185,73,-0.4583333333333333],[121,185,74,-0.4583333333333333],[121,185,75,-0.4583333333333333],[121,185,76,-0.4583333333333333],[121,185,77,-0.4583333333333333],[121,185,78,-0.4583333333333333],[121,185,79,-0.4583333333333333],[121,186,64,-0.4583333333333333],[121,186,65,-0.4583333333333333],[121,186,66,-0.4583333333333333],[121,186,67,-0.4583333333333333],[121,186,68,-0.4583333333333333],[121,186,69,-0.4583333333333333],[121,186,70,-0.4583333333333333],[121,186,71,-0.4583333333333333],[121,186,72,-0.4583333333333333],[121,186,73,-0.4583333333333333],[121,186,74,-0.4583333333333333],[121,186,75,-0.4583333333333333],[121,186,76,-0.4583333333333333],[121,186,77,-0.4583333333333333],[121,186,78,-0.4583333333333333],[121,186,79,-0.4583333333333333],[121,187,64,-0.4583333333333333],[121,187,65,-0.4583333333333333],[121,187,66,-0.4583333333333333],[121,187,67,-0.4583333333333333],[121,187,68,-0.4583333333333333],[121,187,69,-0.4583333333333333],[121,187,70,-0.4583333333333333],[121,187,71,-0.4583333333333333],[121,187,72,-0.4583333333333333],[121,187,73,-0.4583333333333333],[121,187,74,-0.4583333333333333],[121,187,75,-0.4583333333333333],[121,187,76,-0.4583333333333333],[121,187,77,-0.4583333333333333],[121,187,78,-0.4583333333333333],[121,187,79,-0.4583333333333333],[121,188,64,-0.4583333333333333],[121,188,65,-0.4583333333333333],[121,188,66,-0.4583333333333333],[121,188,67,-0.4583333333333333],[121,188,68,-0.4583333333333333],[121,188,69,-0.4583333333333333],[121,188,70,-0.4583333333333333],[121,188,71,-0.4583333333333333],[121,188,72,-0.4583333333333333],[121,188,73,-0.4583333333333333],[121,188,74,-0.4583333333333333],[121,188,75,-0.4583333333333333],[121,188,76,-0.4583333333333333],[121,188,77,-0.4583333333333333],[121,188,78,-0.4583333333333333],[121,188,79,-0.4583333333333333],[121,189,64,-0.4583333333333333],[121,189,65,-0.4583333333333333],[121,189,66,-0.4583333333333333],[121,189,67,-0.4583333333333333],[121,189,68,-0.4583333333333333],[121,189,69,-0.4583333333333333],[121,189,70,-0.4583333333333333],[121,189,71,-0.4583333333333333],[121,189,72,-0.4583333333333333],[121,189,73,-0.4583333333333333],[121,189,74,-0.4583333333333333],[121,189,75,-0.4583333333333333],[121,189,76,-0.4583333333333333],[121,189,77,-0.4583333333333333],[121,189,78,-0.4583333333333333],[121,189,79,-0.4583333333333333],[121,190,64,-0.4583333333333333],[121,190,65,-0.4583333333333333],[121,190,66,-0.4583333333333333],[121,190,67,-0.4583333333333333],[121,190,68,-0.4583333333333333],[121,190,69,-0.4583333333333333],[121,190,70,-0.4583333333333333],[121,190,71,-0.4583333333333333],[121,190,72,-0.4583333333333333],[121,190,73,-0.4583333333333333],[121,190,74,-0.4583333333333333],[121,190,75,-0.4583333333333333],[121,190,76,-0.4583333333333333],[121,190,77,-0.4583333333333333],[121,190,78,-0.4583333333333333],[121,190,79,-0.4583333333333333],[121,191,64,-0.4583333333333333],[121,191,65,-0.4583333333333333],[121,191,66,-0.4583333333333333],[121,191,67,-0.4583333333333333],[121,191,68,-0.4583333333333333],[121,191,69,-0.4583333333333333],[121,191,70,-0.4583333333333333],[121,191,71,-0.4583333333333333],[121,191,72,-0.4583333333333333],[121,191,73,-0.4583333333333333],[121,191,74,-0.4583333333333333],[121,191,75,-0.4583333333333333],[121,191,76,-0.4583333333333333],[121,191,77,-0.4583333333333333],[121,191,78,-0.4583333333333333],[121,191,79,-0.4583333333333333],[121,192,64,-0.4583333333333333],[121,192,65,-0.4583333333333333],[121,192,66,-0.4583333333333333],[121,192,67,-0.4583333333333333],[121,192,68,-0.4583333333333333],[121,192,69,-0.4583333333333333],[121,192,70,-0.4583333333333333],[121,192,71,-0.4583333333333333],[121,192,72,-0.4583333333333333],[121,192,73,-0.4583333333333333],[121,192,74,-0.4583333333333333],[121,192,75,-0.4583333333333333],[121,192,76,-0.4583333333333333],[121,192,77,-0.4583333333333333],[121,192,78,-0.4583333333333333],[121,192,79,-0.4583333333333333],[121,193,64,-0.4583333333333333],[121,193,65,-0.4583333333333333],[121,193,66,-0.4583333333333333],[121,193,67,-0.4583333333333333],[121,193,68,-0.4583333333333333],[121,193,69,-0.4583333333333333],[121,193,70,-0.4583333333333333],[121,193,71,-0.4583333333333333],[121,193,72,-0.4583333333333333],[121,193,73,-0.4583333333333333],[121,193,74,-0.4583333333333333],[121,193,75,-0.4583333333333333],[121,193,76,-0.4583333333333333],[121,193,77,-0.4583333333333333],[121,193,78,-0.4583333333333333],[121,193,79,-0.4583333333333333],[121,194,64,-0.4583333333333333],[121,194,65,-0.4583333333333333],[121,194,66,-0.4583333333333333],[121,194,67,-0.4583333333333333],[121,194,68,-0.4583333333333333],[121,194,69,-0.4583333333333333],[121,194,70,-0.4583333333333333],[121,194,71,-0.4583333333333333],[121,194,72,-0.4583333333333333],[121,194,73,-0.4583333333333333],[121,194,74,-0.4583333333333333],[121,194,75,-0.4583333333333333],[121,194,76,-0.4583333333333333],[121,194,77,-0.4583333333333333],[121,194,78,-0.4583333333333333],[121,194,79,-0.4583333333333333],[121,195,64,-0.4583333333333333],[121,195,65,-0.4583333333333333],[121,195,66,-0.4583333333333333],[121,195,67,-0.4583333333333333],[121,195,68,-0.4583333333333333],[121,195,69,-0.4583333333333333],[121,195,70,-0.4583333333333333],[121,195,71,-0.4583333333333333],[121,195,72,-0.4583333333333333],[121,195,73,-0.4583333333333333],[121,195,74,-0.4583333333333333],[121,195,75,-0.4583333333333333],[121,195,76,-0.4583333333333333],[121,195,77,-0.4583333333333333],[121,195,78,-0.4583333333333333],[121,195,79,-0.4583333333333333],[121,196,64,-0.4583333333333333],[121,196,65,-0.4583333333333333],[121,196,66,-0.4583333333333333],[121,196,67,-0.4583333333333333],[121,196,68,-0.4583333333333333],[121,196,69,-0.4583333333333333],[121,196,70,-0.4583333333333333],[121,196,71,-0.4583333333333333],[121,196,72,-0.4583333333333333],[121,196,73,-0.4583333333333333],[121,196,74,-0.4583333333333333],[121,196,75,-0.4583333333333333],[121,196,76,-0.4583333333333333],[121,196,77,-0.4583333333333333],[121,196,78,-0.4583333333333333],[121,196,79,-0.4583333333333333],[121,197,64,-0.4583333333333333],[121,197,65,-0.4583333333333333],[121,197,66,-0.4583333333333333],[121,197,67,-0.4583333333333333],[121,197,68,-0.4583333333333333],[121,197,69,-0.4583333333333333],[121,197,70,-0.4583333333333333],[121,197,71,-0.4583333333333333],[121,197,72,-0.4583333333333333],[121,197,73,-0.4583333333333333],[121,197,74,-0.4583333333333333],[121,197,75,-0.4583333333333333],[121,197,76,-0.4583333333333333],[121,197,77,-0.4583333333333333],[121,197,78,-0.4583333333333333],[121,197,79,-0.4583333333333333],[121,198,64,-0.4583333333333333],[121,198,65,-0.4583333333333333],[121,198,66,-0.4583333333333333],[121,198,67,-0.4583333333333333],[121,198,68,-0.4583333333333333],[121,198,69,-0.4583333333333333],[121,198,70,-0.4583333333333333],[121,198,71,-0.4583333333333333],[121,198,72,-0.4583333333333333],[121,198,73,-0.4583333333333333],[121,198,74,-0.4583333333333333],[121,198,75,-0.4583333333333333],[121,198,76,-0.4583333333333333],[121,198,77,-0.4583333333333333],[121,198,78,-0.4583333333333333],[121,198,79,-0.4583333333333333],[121,199,64,-0.4583333333333333],[121,199,65,-0.4583333333333333],[121,199,66,-0.4583333333333333],[121,199,67,-0.4583333333333333],[121,199,68,-0.4583333333333333],[121,199,69,-0.4583333333333333],[121,199,70,-0.4583333333333333],[121,199,71,-0.4583333333333333],[121,199,72,-0.4583333333333333],[121,199,73,-0.4583333333333333],[121,199,74,-0.4583333333333333],[121,199,75,-0.4583333333333333],[121,199,76,-0.4583333333333333],[121,199,77,-0.4583333333333333],[121,199,78,-0.4583333333333333],[121,199,79,-0.4583333333333333],[121,200,64,-0.4583333333333333],[121,200,65,-0.4583333333333333],[121,200,66,-0.4583333333333333],[121,200,67,-0.4583333333333333],[121,200,68,-0.4583333333333333],[121,200,69,-0.4583333333333333],[121,200,70,-0.4583333333333333],[121,200,71,-0.4583333333333333],[121,200,72,-0.4583333333333333],[121,200,73,-0.4583333333333333],[121,200,74,-0.4583333333333333],[121,200,75,-0.4583333333333333],[121,200,76,-0.4583333333333333],[121,200,77,-0.4583333333333333],[121,200,78,-0.4583333333333333],[121,200,79,-0.4583333333333333],[121,201,64,-0.4583333333333333],[121,201,65,-0.4583333333333333],[121,201,66,-0.4583333333333333],[121,201,67,-0.4583333333333333],[121,201,68,-0.4583333333333333],[121,201,69,-0.4583333333333333],[121,201,70,-0.4583333333333333],[121,201,71,-0.4583333333333333],[121,201,72,-0.4583333333333333],[121,201,73,-0.4583333333333333],[121,201,74,-0.4583333333333333],[121,201,75,-0.4583333333333333],[121,201,76,-0.4583333333333333],[121,201,77,-0.4583333333333333],[121,201,78,-0.4583333333333333],[121,201,79,-0.4583333333333333],[121,202,64,-0.4583333333333333],[121,202,65,-0.4583333333333333],[121,202,66,-0.4583333333333333],[121,202,67,-0.4583333333333333],[121,202,68,-0.4583333333333333],[121,202,69,-0.4583333333333333],[121,202,70,-0.4583333333333333],[121,202,71,-0.4583333333333333],[121,202,72,-0.4583333333333333],[121,202,73,-0.4583333333333333],[121,202,74,-0.4583333333333333],[121,202,75,-0.4583333333333333],[121,202,76,-0.4583333333333333],[121,202,77,-0.4583333333333333],[121,202,78,-0.4583333333333333],[121,202,79,-0.4583333333333333],[121,203,64,-0.4583333333333333],[121,203,65,-0.4583333333333333],[121,203,66,-0.4583333333333333],[121,203,67,-0.4583333333333333],[121,203,68,-0.4583333333333333],[121,203,69,-0.4583333333333333],[121,203,70,-0.4583333333333333],[121,203,71,-0.4583333333333333],[121,203,72,-0.4583333333333333],[121,203,73,-0.4583333333333333],[121,203,74,-0.4583333333333333],[121,203,75,-0.4583333333333333],[121,203,76,-0.4583333333333333],[121,203,77,-0.4583333333333333],[121,203,78,-0.4583333333333333],[121,203,79,-0.4583333333333333],[121,204,64,-0.4583333333333333],[121,204,65,-0.4583333333333333],[121,204,66,-0.4583333333333333],[121,204,67,-0.4583333333333333],[121,204,68,-0.4583333333333333],[121,204,69,-0.4583333333333333],[121,204,70,-0.4583333333333333],[121,204,71,-0.4583333333333333],[121,204,72,-0.4583333333333333],[121,204,73,-0.4583333333333333],[121,204,74,-0.4583333333333333],[121,204,75,-0.4583333333333333],[121,204,76,-0.4583333333333333],[121,204,77,-0.4583333333333333],[121,204,78,-0.4583333333333333],[121,204,79,-0.4583333333333333],[121,205,64,-0.4583333333333333],[121,205,65,-0.4583333333333333],[121,205,66,-0.4583333333333333],[121,205,67,-0.4583333333333333],[121,205,68,-0.4583333333333333],[121,205,69,-0.4583333333333333],[121,205,70,-0.4583333333333333],[121,205,71,-0.4583333333333333],[121,205,72,-0.4583333333333333],[121,205,73,-0.4583333333333333],[121,205,74,-0.4583333333333333],[121,205,75,-0.4583333333333333],[121,205,76,-0.4583333333333333],[121,205,77,-0.4583333333333333],[121,205,78,-0.4583333333333333],[121,205,79,-0.4583333333333333],[121,206,64,-0.4583333333333333],[121,206,65,-0.4583333333333333],[121,206,66,-0.4583333333333333],[121,206,67,-0.4583333333333333],[121,206,68,-0.4583333333333333],[121,206,69,-0.4583333333333333],[121,206,70,-0.4583333333333333],[121,206,71,-0.4583333333333333],[121,206,72,-0.4583333333333333],[121,206,73,-0.4583333333333333],[121,206,74,-0.4583333333333333],[121,206,75,-0.4583333333333333],[121,206,76,-0.4583333333333333],[121,206,77,-0.4583333333333333],[121,206,78,-0.4583333333333333],[121,206,79,-0.4583333333333333],[121,207,64,-0.4583333333333333],[121,207,65,-0.4583333333333333],[121,207,66,-0.4583333333333333],[121,207,67,-0.4583333333333333],[121,207,68,-0.4583333333333333],[121,207,69,-0.4583333333333333],[121,207,70,-0.4583333333333333],[121,207,71,-0.4583333333333333],[121,207,72,-0.4583333333333333],[121,207,73,-0.4583333333333333],[121,207,74,-0.4583333333333333],[121,207,75,-0.4583333333333333],[121,207,76,-0.4583333333333333],[121,207,77,-0.4583333333333333],[121,207,78,-0.4583333333333333],[121,207,79,-0.4583333333333333],[121,208,64,-0.4583333333333333],[121,208,65,-0.4583333333333333],[121,208,66,-0.4583333333333333],[121,208,67,-0.4583333333333333],[121,208,68,-0.4583333333333333],[121,208,69,-0.4583333333333333],[121,208,70,-0.4583333333333333],[121,208,71,-0.4583333333333333],[121,208,72,-0.4583333333333333],[121,208,73,-0.4583333333333333],[121,208,74,-0.4583333333333333],[121,208,75,-0.4583333333333333],[121,208,76,-0.4583333333333333],[121,208,77,-0.4583333333333333],[121,208,78,-0.4583333333333333],[121,208,79,-0.4583333333333333],[121,209,64,-0.4583333333333333],[121,209,65,-0.4583333333333333],[121,209,66,-0.4583333333333333],[121,209,67,-0.4583333333333333],[121,209,68,-0.4583333333333333],[121,209,69,-0.4583333333333333],[121,209,70,-0.4583333333333333],[121,209,71,-0.4583333333333333],[121,209,72,-0.4583333333333333],[121,209,73,-0.4583333333333333],[121,209,74,-0.4583333333333333],[121,209,75,-0.4583333333333333],[121,209,76,-0.4583333333333333],[121,209,77,-0.4583333333333333],[121,209,78,-0.4583333333333333],[121,209,79,-0.4583333333333333],[121,210,64,-0.4583333333333333],[121,210,65,-0.4583333333333333],[121,210,66,-0.4583333333333333],[121,210,67,-0.4583333333333333],[121,210,68,-0.4583333333333333],[121,210,69,-0.4583333333333333],[121,210,70,-0.4583333333333333],[121,210,71,-0.4583333333333333],[121,210,72,-0.4583333333333333],[121,210,73,-0.4583333333333333],[121,210,74,-0.4583333333333333],[121,210,75,-0.4583333333333333],[121,210,76,-0.4583333333333333],[121,210,77,-0.4583333333333333],[121,210,78,-0.4583333333333333],[121,210,79,-0.4583333333333333],[121,211,64,-0.4583333333333333],[121,211,65,-0.4583333333333333],[121,211,66,-0.4583333333333333],[121,211,67,-0.4583333333333333],[121,211,68,-0.4583333333333333],[121,211,69,-0.4583333333333333],[121,211,70,-0.4583333333333333],[121,211,71,-0.4583333333333333],[121,211,72,-0.4583333333333333],[121,211,73,-0.4583333333333333],[121,211,74,-0.4583333333333333],[121,211,75,-0.4583333333333333],[121,211,76,-0.4583333333333333],[121,211,77,-0.4583333333333333],[121,211,78,-0.4583333333333333],[121,211,79,-0.4583333333333333],[121,212,64,-0.4583333333333333],[121,212,65,-0.4583333333333333],[121,212,66,-0.4583333333333333],[121,212,67,-0.4583333333333333],[121,212,68,-0.4583333333333333],[121,212,69,-0.4583333333333333],[121,212,70,-0.4583333333333333],[121,212,71,-0.4583333333333333],[121,212,72,-0.4583333333333333],[121,212,73,-0.4583333333333333],[121,212,74,-0.4583333333333333],[121,212,75,-0.4583333333333333],[121,212,76,-0.4583333333333333],[121,212,77,-0.4583333333333333],[121,212,78,-0.4583333333333333],[121,212,79,-0.4583333333333333],[121,213,64,-0.4583333333333333],[121,213,65,-0.4583333333333333],[121,213,66,-0.4583333333333333],[121,213,67,-0.4583333333333333],[121,213,68,-0.4583333333333333],[121,213,69,-0.4583333333333333],[121,213,70,-0.4583333333333333],[121,213,71,-0.4583333333333333],[121,213,72,-0.4583333333333333],[121,213,73,-0.4583333333333333],[121,213,74,-0.4583333333333333],[121,213,75,-0.4583333333333333],[121,213,76,-0.4583333333333333],[121,213,77,-0.4583333333333333],[121,213,78,-0.4583333333333333],[121,213,79,-0.4583333333333333],[121,214,64,-0.4583333333333333],[121,214,65,-0.4583333333333333],[121,214,66,-0.4583333333333333],[121,214,67,-0.4583333333333333],[121,214,68,-0.4583333333333333],[121,214,69,-0.4583333333333333],[121,214,70,-0.4583333333333333],[121,214,71,-0.4583333333333333],[121,214,72,-0.4583333333333333],[121,214,73,-0.4583333333333333],[121,214,74,-0.4583333333333333],[121,214,75,-0.4583333333333333],[121,214,76,-0.4583333333333333],[121,214,77,-0.4583333333333333],[121,214,78,-0.4583333333333333],[121,214,79,-0.4583333333333333],[121,215,64,-0.4583333333333333],[121,215,65,-0.4583333333333333],[121,215,66,-0.4583333333333333],[121,215,67,-0.4583333333333333],[121,215,68,-0.4583333333333333],[121,215,69,-0.4583333333333333],[121,215,70,-0.4583333333333333],[121,215,71,-0.4583333333333333],[121,215,72,-0.4583333333333333],[121,215,73,-0.4583333333333333],[121,215,74,-0.4583333333333333],[121,215,75,-0.4583333333333333],[121,215,76,-0.4583333333333333],[121,215,77,-0.4583333333333333],[121,215,78,-0.4583333333333333],[121,215,79,-0.4583333333333333],[121,216,64,-0.4583333333333333],[121,216,65,-0.4583333333333333],[121,216,66,-0.4583333333333333],[121,216,67,-0.4583333333333333],[121,216,68,-0.4583333333333333],[121,216,69,-0.4583333333333333],[121,216,70,-0.4583333333333333],[121,216,71,-0.4583333333333333],[121,216,72,-0.4583333333333333],[121,216,73,-0.4583333333333333],[121,216,74,-0.4583333333333333],[121,216,75,-0.4583333333333333],[121,216,76,-0.4583333333333333],[121,216,77,-0.4583333333333333],[121,216,78,-0.4583333333333333],[121,216,79,-0.4583333333333333],[121,217,64,-0.4583333333333333],[121,217,65,-0.4583333333333333],[121,217,66,-0.4583333333333333],[121,217,67,-0.4583333333333333],[121,217,68,-0.4583333333333333],[121,217,69,-0.4583333333333333],[121,217,70,-0.4583333333333333],[121,217,71,-0.4583333333333333],[121,217,72,-0.4583333333333333],[121,217,73,-0.4583333333333333],[121,217,74,-0.4583333333333333],[121,217,75,-0.4583333333333333],[121,217,76,-0.4583333333333333],[121,217,77,-0.4583333333333333],[121,217,78,-0.4583333333333333],[121,217,79,-0.4583333333333333],[121,218,64,-0.4583333333333333],[121,218,65,-0.4583333333333333],[121,218,66,-0.4583333333333333],[121,218,67,-0.4583333333333333],[121,218,68,-0.4583333333333333],[121,218,69,-0.4583333333333333],[121,218,70,-0.4583333333333333],[121,218,71,-0.4583333333333333],[121,218,72,-0.4583333333333333],[121,218,73,-0.4583333333333333],[121,218,74,-0.4583333333333333],[121,218,75,-0.4583333333333333],[121,218,76,-0.4583333333333333],[121,218,77,-0.4583333333333333],[121,218,78,-0.4583333333333333],[121,218,79,-0.4583333333333333],[121,219,64,-0.4583333333333333],[121,219,65,-0.4583333333333333],[121,219,66,-0.4583333333333333],[121,219,67,-0.4583333333333333],[121,219,68,-0.4583333333333333],[121,219,69,-0.4583333333333333],[121,219,70,-0.4583333333333333],[121,219,71,-0.4583333333333333],[121,219,72,-0.4583333333333333],[121,219,73,-0.4583333333333333],[121,219,74,-0.4583333333333333],[121,219,75,-0.4583333333333333],[121,219,76,-0.4583333333333333],[121,219,77,-0.4583333333333333],[121,219,78,-0.4583333333333333],[121,219,79,-0.4583333333333333],[121,220,64,-0.4583333333333333],[121,220,65,-0.4583333333333333],[121,220,66,-0.4583333333333333],[121,220,67,-0.4583333333333333],[121,220,68,-0.4583333333333333],[121,220,69,-0.4583333333333333],[121,220,70,-0.4583333333333333],[121,220,71,-0.4583333333333333],[121,220,72,-0.4583333333333333],[121,220,73,-0.4583333333333333],[121,220,74,-0.4583333333333333],[121,220,75,-0.4583333333333333],[121,220,76,-0.4583333333333333],[121,220,77,-0.4583333333333333],[121,220,78,-0.4583333333333333],[121,220,79,-0.4583333333333333],[121,221,64,-0.4583333333333333],[121,221,65,-0.4583333333333333],[121,221,66,-0.4583333333333333],[121,221,67,-0.4583333333333333],[121,221,68,-0.4583333333333333],[121,221,69,-0.4583333333333333],[121,221,70,-0.4583333333333333],[121,221,71,-0.4583333333333333],[121,221,72,-0.4583333333333333],[121,221,73,-0.4583333333333333],[121,221,74,-0.4583333333333333],[121,221,75,-0.4583333333333333],[121,221,76,-0.4583333333333333],[121,221,77,-0.4583333333333333],[121,221,78,-0.4583333333333333],[121,221,79,-0.4583333333333333],[121,222,64,-0.4583333333333333],[121,222,65,-0.4583333333333333],[121,222,66,-0.4583333333333333],[121,222,67,-0.4583333333333333],[121,222,68,-0.4583333333333333],[121,222,69,-0.4583333333333333],[121,222,70,-0.4583333333333333],[121,222,71,-0.4583333333333333],[121,222,72,-0.4583333333333333],[121,222,73,-0.4583333333333333],[121,222,74,-0.4583333333333333],[121,222,75,-0.4583333333333333],[121,222,76,-0.4583333333333333],[121,222,77,-0.4583333333333333],[121,222,78,-0.4583333333333333],[121,222,79,-0.4583333333333333],[121,223,64,-0.4583333333333333],[121,223,65,-0.4583333333333333],[121,223,66,-0.4583333333333333],[121,223,67,-0.4583333333333333],[121,223,68,-0.4583333333333333],[121,223,69,-0.4583333333333333],[121,223,70,-0.4583333333333333],[121,223,71,-0.4583333333333333],[121,223,72,-0.4583333333333333],[121,223,73,-0.4583333333333333],[121,223,74,-0.4583333333333333],[121,223,75,-0.4583333333333333],[121,223,76,-0.4583333333333333],[121,223,77,-0.4583333333333333],[121,223,78,-0.4583333333333333],[121,223,79,-0.4583333333333333],[121,224,64,-0.4583333333333333],[121,224,65,-0.4583333333333333],[121,224,66,-0.4583333333333333],[121,224,67,-0.4583333333333333],[121,224,68,-0.4583333333333333],[121,224,69,-0.4583333333333333],[121,224,70,-0.4583333333333333],[121,224,71,-0.4583333333333333],[121,224,72,-0.4583333333333333],[121,224,73,-0.4583333333333333],[121,224,74,-0.4583333333333333],[121,224,75,-0.4583333333333333],[121,224,76,-0.4583333333333333],[121,224,77,-0.4583333333333333],[121,224,78,-0.4583333333333333],[121,224,79,-0.4583333333333333],[121,225,64,-0.4583333333333333],[121,225,65,-0.4583333333333333],[121,225,66,-0.4583333333333333],[121,225,67,-0.4583333333333333],[121,225,68,-0.4583333333333333],[121,225,69,-0.4583333333333333],[121,225,70,-0.4583333333333333],[121,225,71,-0.4583333333333333],[121,225,72,-0.4583333333333333],[121,225,73,-0.4583333333333333],[121,225,74,-0.4583333333333333],[121,225,75,-0.4583333333333333],[121,225,76,-0.4583333333333333],[121,225,77,-0.4583333333333333],[121,225,78,-0.4583333333333333],[121,225,79,-0.4583333333333333],[121,226,64,-0.4583333333333333],[121,226,65,-0.4583333333333333],[121,226,66,-0.4583333333333333],[121,226,67,-0.4583333333333333],[121,226,68,-0.4583333333333333],[121,226,69,-0.4583333333333333],[121,226,70,-0.4583333333333333],[121,226,71,-0.4583333333333333],[121,226,72,-0.4583333333333333],[121,226,73,-0.4583333333333333],[121,226,74,-0.4583333333333333],[121,226,75,-0.4583333333333333],[121,226,76,-0.4583333333333333],[121,226,77,-0.4583333333333333],[121,226,78,-0.4583333333333333],[121,226,79,-0.4583333333333333],[121,227,64,-0.4583333333333333],[121,227,65,-0.4583333333333333],[121,227,66,-0.4583333333333333],[121,227,67,-0.4583333333333333],[121,227,68,-0.4583333333333333],[121,227,69,-0.4583333333333333],[121,227,70,-0.4583333333333333],[121,227,71,-0.4583333333333333],[121,227,72,-0.4583333333333333],[121,227,73,-0.4583333333333333],[121,227,74,-0.4583333333333333],[121,227,75,-0.4583333333333333],[121,227,76,-0.4583333333333333],[121,227,77,-0.4583333333333333],[121,227,78,-0.4583333333333333],[121,227,79,-0.4583333333333333],[121,228,64,-0.4583333333333333],[121,228,65,-0.4583333333333333],[121,228,66,-0.4583333333333333],[121,228,67,-0.4583333333333333],[121,228,68,-0.4583333333333333],[121,228,69,-0.4583333333333333],[121,228,70,-0.4583333333333333],[121,228,71,-0.4583333333333333],[121,228,72,-0.4583333333333333],[121,228,73,-0.4583333333333333],[121,228,74,-0.4583333333333333],[121,228,75,-0.4583333333333333],[121,228,76,-0.4583333333333333],[121,228,77,-0.4583333333333333],[121,228,78,-0.4583333333333333],[121,228,79,-0.4583333333333333],[121,229,64,-0.4583333333333333],[121,229,65,-0.4583333333333333],[121,229,66,-0.4583333333333333],[121,229,67,-0.4583333333333333],[121,229,68,-0.4583333333333333],[121,229,69,-0.4583333333333333],[121,229,70,-0.4583333333333333],[121,229,71,-0.4583333333333333],[121,229,72,-0.4583333333333333],[121,229,73,-0.4583333333333333],[121,229,74,-0.4583333333333333],[121,229,75,-0.4583333333333333],[121,229,76,-0.4583333333333333],[121,229,77,-0.4583333333333333],[121,229,78,-0.4583333333333333],[121,229,79,-0.4583333333333333],[121,230,64,-0.4583333333333333],[121,230,65,-0.4583333333333333],[121,230,66,-0.4583333333333333],[121,230,67,-0.4583333333333333],[121,230,68,-0.4583333333333333],[121,230,69,-0.4583333333333333],[121,230,70,-0.4583333333333333],[121,230,71,-0.4583333333333333],[121,230,72,-0.4583333333333333],[121,230,73,-0.4583333333333333],[121,230,74,-0.4583333333333333],[121,230,75,-0.4583333333333333],[121,230,76,-0.4583333333333333],[121,230,77,-0.4583333333333333],[121,230,78,-0.4583333333333333],[121,230,79,-0.4583333333333333],[121,231,64,-0.4583333333333333],[121,231,65,-0.4583333333333333],[121,231,66,-0.4583333333333333],[121,231,67,-0.4583333333333333],[121,231,68,-0.4583333333333333],[121,231,69,-0.4583333333333333],[121,231,70,-0.4583333333333333],[121,231,71,-0.4583333333333333],[121,231,72,-0.4583333333333333],[121,231,73,-0.4583333333333333],[121,231,74,-0.4583333333333333],[121,231,75,-0.4583333333333333],[121,231,76,-0.4583333333333333],[121,231,77,-0.4583333333333333],[121,231,78,-0.4583333333333333],[121,231,79,-0.4583333333333333],[121,232,64,-0.4583333333333333],[121,232,65,-0.4583333333333333],[121,232,66,-0.4583333333333333],[121,232,67,-0.4583333333333333],[121,232,68,-0.4583333333333333],[121,232,69,-0.4583333333333333],[121,232,70,-0.4583333333333333],[121,232,71,-0.4583333333333333],[121,232,72,-0.4583333333333333],[121,232,73,-0.4583333333333333],[121,232,74,-0.4583333333333333],[121,232,75,-0.4583333333333333],[121,232,76,-0.4583333333333333],[121,232,77,-0.4583333333333333],[121,232,78,-0.4583333333333333],[121,232,79,-0.4583333333333333],[121,233,64,-0.4583333333333333],[121,233,65,-0.4583333333333333],[121,233,66,-0.4583333333333333],[121,233,67,-0.4583333333333333],[121,233,68,-0.4583333333333333],[121,233,69,-0.4583333333333333],[121,233,70,-0.4583333333333333],[121,233,71,-0.4583333333333333],[121,233,72,-0.4583333333333333],[121,233,73,-0.4583333333333333],[121,233,74,-0.4583333333333333],[121,233,75,-0.4583333333333333],[121,233,76,-0.4583333333333333],[121,233,77,-0.4583333333333333],[121,233,78,-0.4583333333333333],[121,233,79,-0.4583333333333333],[121,234,64,-0.4583333333333333],[121,234,65,-0.4583333333333333],[121,234,66,-0.4583333333333333],[121,234,67,-0.4583333333333333],[121,234,68,-0.4583333333333333],[121,234,69,-0.4583333333333333],[121,234,70,-0.4583333333333333],[121,234,71,-0.4583333333333333],[121,234,72,-0.4583333333333333],[121,234,73,-0.4583333333333333],[121,234,74,-0.4583333333333333],[121,234,75,-0.4583333333333333],[121,234,76,-0.4583333333333333],[121,234,77,-0.4583333333333333],[121,234,78,-0.4583333333333333],[121,234,79,-0.4583333333333333],[121,235,64,-0.4583333333333333],[121,235,65,-0.4583333333333333],[121,235,66,-0.4583333333333333],[121,235,67,-0.4583333333333333],[121,235,68,-0.4583333333333333],[121,235,69,-0.4583333333333333],[121,235,70,-0.4583333333333333],[121,235,71,-0.4583333333333333],[121,235,72,-0.4583333333333333],[121,235,73,-0.4583333333333333],[121,235,74,-0.4583333333333333],[121,235,75,-0.4583333333333333],[121,235,76,-0.4583333333333333],[121,235,77,-0.4583333333333333],[121,235,78,-0.4583333333333333],[121,235,79,-0.4583333333333333],[121,236,64,-0.4583333333333333],[121,236,65,-0.4583333333333333],[121,236,66,-0.4583333333333333],[121,236,67,-0.4583333333333333],[121,236,68,-0.4583333333333333],[121,236,69,-0.4583333333333333],[121,236,70,-0.4583333333333333],[121,236,71,-0.4583333333333333],[121,236,72,-0.4583333333333333],[121,236,73,-0.4583333333333333],[121,236,74,-0.4583333333333333],[121,236,75,-0.4583333333333333],[121,236,76,-0.4583333333333333],[121,236,77,-0.4583333333333333],[121,236,78,-0.4583333333333333],[121,236,79,-0.4583333333333333],[121,237,64,-0.4583333333333333],[121,237,65,-0.4583333333333333],[121,237,66,-0.4583333333333333],[121,237,67,-0.4583333333333333],[121,237,68,-0.4583333333333333],[121,237,69,-0.4583333333333333],[121,237,70,-0.4583333333333333],[121,237,71,-0.4583333333333333],[121,237,72,-0.4583333333333333],[121,237,73,-0.4583333333333333],[121,237,74,-0.4583333333333333],[121,237,75,-0.4583333333333333],[121,237,76,-0.4583333333333333],[121,237,77,-0.4583333333333333],[121,237,78,-0.4583333333333333],[121,237,79,-0.4583333333333333],[121,238,64,-0.4583333333333333],[121,238,65,-0.4583333333333333],[121,238,66,-0.4583333333333333],[121,238,67,-0.4583333333333333],[121,238,68,-0.4583333333333333],[121,238,69,-0.4583333333333333],[121,238,70,-0.4583333333333333],[121,238,71,-0.4583333333333333],[121,238,72,-0.4583333333333333],[121,238,73,-0.4583333333333333],[121,238,74,-0.4583333333333333],[121,238,75,-0.4583333333333333],[121,238,76,-0.4583333333333333],[121,238,77,-0.4583333333333333],[121,238,78,-0.4583333333333333],[121,238,79,-0.4583333333333333],[121,239,64,-0.4583333333333333],[121,239,65,-0.4583333333333333],[121,239,66,-0.4583333333333333],[121,239,67,-0.4583333333333333],[121,239,68,-0.4583333333333333],[121,239,69,-0.4583333333333333],[121,239,70,-0.4583333333333333],[121,239,71,-0.4583333333333333],[121,239,72,-0.4583333333333333],[121,239,73,-0.4583333333333333],[121,239,74,-0.4583333333333333],[121,239,75,-0.4583333333333333],[121,239,76,-0.4583333333333333],[121,239,77,-0.4583333333333333],[121,239,78,-0.4583333333333333],[121,239,79,-0.4583333333333333],[121,240,64,-0.4583333333333333],[121,240,65,-0.4583333333333333],[121,240,66,-0.4583333333333333],[121,240,67,-0.4583333333333333],[121,240,68,-0.4583333333333333],[121,240,69,-0.4583333333333333],[121,240,70,-0.4583333333333333],[121,240,71,-0.4583333333333333],[121,240,72,-0.4583333333333333],[121,240,73,-0.4583333333333333],[121,240,74,-0.4583333333333333],[121,240,75,-0.4583333333333333],[121,240,76,-0.4583333333333333],[121,240,77,-0.4583333333333333],[121,240,78,-0.4583333333333333],[121,240,79,-0.4583333333333333],[121,241,64,-0.4583333333333333],[121,241,65,-0.4583333333333333],[121,241,66,-0.4583333333333333],[121,241,67,-0.4583333333333333],[121,241,68,-0.4583333333333333],[121,241,69,-0.4583333333333333],[121,241,70,-0.4583333333333333],[121,241,71,-0.4583333333333333],[121,241,72,-0.4583333333333333],[121,241,73,-0.4583333333333333],[121,241,74,-0.4583333333333333],[121,241,75,-0.4583333333333333],[121,241,76,-0.4583333333333333],[121,241,77,-0.4583333333333333],[121,241,78,-0.4583333333333333],[121,241,79,-0.4583333333333333],[121,242,64,-0.4583333333333333],[121,242,65,-0.4583333333333333],[121,242,66,-0.4583333333333333],[121,242,67,-0.4583333333333333],[121,242,68,-0.4583333333333333],[121,242,69,-0.4583333333333333],[121,242,70,-0.4583333333333333],[121,242,71,-0.4583333333333333],[121,242,72,-0.4583333333333333],[121,242,73,-0.4583333333333333],[121,242,74,-0.4583333333333333],[121,242,75,-0.4583333333333333],[121,242,76,-0.4583333333333333],[121,242,77,-0.4583333333333333],[121,242,78,-0.4583333333333333],[121,242,79,-0.4583333333333333],[121,243,64,-0.4583333333333333],[121,243,65,-0.4583333333333333],[121,243,66,-0.4583333333333333],[121,243,67,-0.4583333333333333],[121,243,68,-0.4583333333333333],[121,243,69,-0.4583333333333333],[121,243,70,-0.4583333333333333],[121,243,71,-0.4583333333333333],[121,243,72,-0.4583333333333333],[121,243,73,-0.4583333333333333],[121,243,74,-0.4583333333333333],[121,243,75,-0.4583333333333333],[121,243,76,-0.4583333333333333],[121,243,77,-0.4583333333333333],[121,243,78,-0.4583333333333333],[121,243,79,-0.4583333333333333],[121,244,64,-0.4583333333333333],[121,244,65,-0.4583333333333333],[121,244,66,-0.4583333333333333],[121,244,67,-0.4583333333333333],[121,244,68,-0.4583333333333333],[121,244,69,-0.4583333333333333],[121,244,70,-0.4583333333333333],[121,244,71,-0.4583333333333333],[121,244,72,-0.4583333333333333],[121,244,73,-0.4583333333333333],[121,244,74,-0.4583333333333333],[121,244,75,-0.4583333333333333],[121,244,76,-0.4583333333333333],[121,244,77,-0.4583333333333333],[121,244,78,-0.4583333333333333],[121,244,79,-0.4583333333333333],[121,245,64,-0.4583333333333333],[121,245,65,-0.4583333333333333],[121,245,66,-0.4583333333333333],[121,245,67,-0.4583333333333333],[121,245,68,-0.4583333333333333],[121,245,69,-0.4583333333333333],[121,245,70,-0.4583333333333333],[121,245,71,-0.4583333333333333],[121,245,72,-0.4583333333333333],[121,245,73,-0.4583333333333333],[121,245,74,-0.4583333333333333],[121,245,75,-0.4583333333333333],[121,245,76,-0.4583333333333333],[121,245,77,-0.4583333333333333],[121,245,78,-0.4583333333333333],[121,245,79,-0.4583333333333333],[121,246,64,-0.4583333333333333],[121,246,65,-0.4583333333333333],[121,246,66,-0.4583333333333333],[121,246,67,-0.4583333333333333],[121,246,68,-0.4583333333333333],[121,246,69,-0.4583333333333333],[121,246,70,-0.4583333333333333],[121,246,71,-0.4583333333333333],[121,246,72,-0.4583333333333333],[121,246,73,-0.4583333333333333],[121,246,74,-0.4583333333333333],[121,246,75,-0.4583333333333333],[121,246,76,-0.4583333333333333],[121,246,77,-0.4583333333333333],[121,246,78,-0.4583333333333333],[121,246,79,-0.4583333333333333],[121,247,64,-0.4583333333333333],[121,247,65,-0.4583333333333333],[121,247,66,-0.4583333333333333],[121,247,67,-0.4583333333333333],[121,247,68,-0.4583333333333333],[121,247,69,-0.4583333333333333],[121,247,70,-0.4583333333333333],[121,247,71,-0.4583333333333333],[121,247,72,-0.4583333333333333],[121,247,73,-0.4583333333333333],[121,247,74,-0.4583333333333333],[121,247,75,-0.4583333333333333],[121,247,76,-0.4583333333333333],[121,247,77,-0.4583333333333333],[121,247,78,-0.4583333333333333],[121,247,79,-0.4583333333333333],[121,248,64,-0.4583333333333333],[121,248,65,-0.4583333333333333],[121,248,66,-0.4583333333333333],[121,248,67,-0.4583333333333333],[121,248,68,-0.4583333333333333],[121,248,69,-0.4583333333333333],[121,248,70,-0.4583333333333333],[121,248,71,-0.4583333333333333],[121,248,72,-0.4583333333333333],[121,248,73,-0.4583333333333333],[121,248,74,-0.4583333333333333],[121,248,75,-0.4583333333333333],[121,248,76,-0.4583333333333333],[121,248,77,-0.4583333333333333],[121,248,78,-0.4583333333333333],[121,248,79,-0.4583333333333333],[121,249,64,-0.4583333333333333],[121,249,65,-0.4583333333333333],[121,249,66,-0.4583333333333333],[121,249,67,-0.4583333333333333],[121,249,68,-0.4583333333333333],[121,249,69,-0.4583333333333333],[121,249,70,-0.4583333333333333],[121,249,71,-0.4583333333333333],[121,249,72,-0.4583333333333333],[121,249,73,-0.4583333333333333],[121,249,74,-0.4583333333333333],[121,249,75,-0.4583333333333333],[121,249,76,-0.4583333333333333],[121,249,77,-0.4583333333333333],[121,249,78,-0.4583333333333333],[121,249,79,-0.4583333333333333],[121,250,64,-0.4583333333333333],[121,250,65,-0.4583333333333333],[121,250,66,-0.4583333333333333],[121,250,67,-0.4583333333333333],[121,250,68,-0.4583333333333333],[121,250,69,-0.4583333333333333],[121,250,70,-0.4583333333333333],[121,250,71,-0.4583333333333333],[121,250,72,-0.4583333333333333],[121,250,73,-0.4583333333333333],[121,250,74,-0.4583333333333333],[121,250,75,-0.4583333333333333],[121,250,76,-0.4583333333333333],[121,250,77,-0.4583333333333333],[121,250,78,-0.4583333333333333],[121,250,79,-0.4583333333333333],[121,251,64,-0.4583333333333333],[121,251,65,-0.4583333333333333],[121,251,66,-0.4583333333333333],[121,251,67,-0.4583333333333333],[121,251,68,-0.4583333333333333],[121,251,69,-0.4583333333333333],[121,251,70,-0.4583333333333333],[121,251,71,-0.4583333333333333],[121,251,72,-0.4583333333333333],[121,251,73,-0.4583333333333333],[121,251,74,-0.4583333333333333],[121,251,75,-0.4583333333333333],[121,251,76,-0.4583333333333333],[121,251,77,-0.4583333333333333],[121,251,78,-0.4583333333333333],[121,251,79,-0.4583333333333333],[121,252,64,-0.4583333333333333],[121,252,65,-0.4583333333333333],[121,252,66,-0.4583333333333333],[121,252,67,-0.4583333333333333],[121,252,68,-0.4583333333333333],[121,252,69,-0.4583333333333333],[121,252,70,-0.4583333333333333],[121,252,71,-0.4583333333333333],[121,252,72,-0.4583333333333333],[121,252,73,-0.4583333333333333],[121,252,74,-0.4583333333333333],[121,252,75,-0.4583333333333333],[121,252,76,-0.4583333333333333],[121,252,77,-0.4583333333333333],[121,252,78,-0.4583333333333333],[121,252,79,-0.4583333333333333],[121,253,64,-0.4583333333333333],[121,253,65,-0.4583333333333333],[121,253,66,-0.4583333333333333],[121,253,67,-0.4583333333333333],[121,253,68,-0.4583333333333333],[121,253,69,-0.4583333333333333],[121,253,70,-0.4583333333333333],[121,253,71,-0.4583333333333333],[121,253,72,-0.4583333333333333],[121,253,73,-0.4583333333333333],[121,253,74,-0.4583333333333333],[121,253,75,-0.4583333333333333],[121,253,76,-0.4583333333333333],[121,253,77,-0.4583333333333333],[121,253,78,-0.4583333333333333],[121,253,79,-0.4583333333333333],[121,254,64,-0.37705285722684706],[121,254,65,-0.37699435271237836],[121,254,66,-0.37648701359278314],[121,254,67,-0.3759742766936667],[121,254,68,-0.3756265302904273],[121,254,69,-0.3759508347546028],[121,254,70,-0.37725653118001906],[121,254,71,-0.3791685579319349],[121,254,72,-0.3811790177870405],[121,254,73,-0.3827124598874706],[121,254,74,-0.3834344995586841],[121,254,75,-0.3832699816029224],[121,254,76,-0.3831583280213737],[121,254,77,-0.3833444596677379],[121,254,78,-0.38254640385820327],[121,254,79,-0.3812390682849515],[121,255,64,-0.20931986188492],[121,255,65,-0.20922223730802567],[121,255,66,-0.20894311215471814],[121,255,67,-0.20862711112739613],[121,255,68,-0.20842073957648055],[121,255,69,-0.2086675639919119],[121,255,70,-0.20935076798336322],[121,255,71,-0.2103789525775494],[121,255,72,-0.2116191488945322],[121,255,73,-0.212521175396374],[121,255,74,-0.2129267370999773],[121,255,75,-0.21284828175262427],[121,255,76,-0.21264534370520907],[121,255,77,-0.21292055824382672],[121,255,78,-0.2122747041062092],[121,255,79,-0.21160884742548158],[121,256,64,-0.02499479166666667],[121,256,65,-0.02499479166666667],[121,256,66,-0.02499479166666667],[121,256,67,-0.02499479166666667],[121,256,68,-0.02499479166666667],[121,256,69,-0.02499479166666667],[121,256,70,-0.02499479166666667],[121,256,71,-0.02499479166666667],[121,256,72,-0.02499479166666667],[121,256,73,-0.02499479166666667],[121,256,74,-0.02499479166666667],[121,256,75,-0.02499479166666667],[121,256,76,-0.02499479166666667],[121,256,77,-0.02499479166666667],[121,256,78,-0.02499479166666667],[121,256,79,-0.02499479166666667],[121,257,64,-0.02499479166666667],[121,257,65,-0.02499479166666667],[121,257,66,-0.02499479166666667],[121,257,67,-0.02499479166666667],[121,257,68,-0.02499479166666667],[121,257,69,-0.02499479166666667],[121,257,70,-0.02499479166666667],[121,257,71,-0.02499479166666667],[121,257,72,-0.02499479166666667],[121,257,73,-0.02499479166666667],[121,257,74,-0.02499479166666667],[121,257,75,-0.02499479166666667],[121,257,76,-0.02499479166666667],[121,257,77,-0.02499479166666667],[121,257,78,-0.02499479166666667],[121,257,79,-0.02499479166666667],[121,258,64,-0.02499479166666667],[121,258,65,-0.02499479166666667],[121,258,66,-0.02499479166666667],[121,258,67,-0.02499479166666667],[121,258,68,-0.02499479166666667],[121,258,69,-0.02499479166666667],[121,258,70,-0.02499479166666667],[121,258,71,-0.02499479166666667],[121,258,72,-0.02499479166666667],[121,258,73,-0.02499479166666667],[121,258,74,-0.02499479166666667],[121,258,75,-0.02499479166666667],[121,258,76,-0.02499479166666667],[121,258,77,-0.02499479166666667],[121,258,78,-0.02499479166666667],[121,258,79,-0.02499479166666667],[121,259,64,-0.02499479166666667],[121,259,65,-0.02499479166666667],[121,259,66,-0.02499479166666667],[121,259,67,-0.02499479166666667],[121,259,68,-0.02499479166666667],[121,259,69,-0.02499479166666667],[121,259,70,-0.02499479166666667],[121,259,71,-0.02499479166666667],[121,259,72,-0.02499479166666667],[121,259,73,-0.02499479166666667],[121,259,74,-0.02499479166666667],[121,259,75,-0.02499479166666667],[121,259,76,-0.02499479166666667],[121,259,77,-0.02499479166666667],[121,259,78,-0.02499479166666667],[121,259,79,-0.02499479166666667],[121,260,64,-0.02499479166666667],[121,260,65,-0.02499479166666667],[121,260,66,-0.02499479166666667],[121,260,67,-0.02499479166666667],[121,260,68,-0.02499479166666667],[121,260,69,-0.02499479166666667],[121,260,70,-0.02499479166666667],[121,260,71,-0.02499479166666667],[121,260,72,-0.02499479166666667],[121,260,73,-0.02499479166666667],[121,260,74,-0.02499479166666667],[121,260,75,-0.02499479166666667],[121,260,76,-0.02499479166666667],[121,260,77,-0.02499479166666667],[121,260,78,-0.02499479166666667],[121,260,79,-0.02499479166666667],[121,261,64,-0.02499479166666667],[121,261,65,-0.02499479166666667],[121,261,66,-0.02499479166666667],[121,261,67,-0.02499479166666667],[121,261,68,-0.02499479166666667],[121,261,69,-0.02499479166666667],[121,261,70,-0.02499479166666667],[121,261,71,-0.02499479166666667],[121,261,72,-0.02499479166666667],[121,261,73,-0.02499479166666667],[121,261,74,-0.02499479166666667],[121,261,75,-0.02499479166666667],[121,261,76,-0.02499479166666667],[121,261,77,-0.02499479166666667],[121,261,78,-0.02499479166666667],[121,261,79,-0.02499479166666667],[121,262,64,-0.02499479166666667],[121,262,65,-0.02499479166666667],[121,262,66,-0.02499479166666667],[121,262,67,-0.02499479166666667],[121,262,68,-0.02499479166666667],[121,262,69,-0.02499479166666667],[121,262,70,-0.02499479166666667],[121,262,71,-0.02499479166666667],[121,262,72,-0.02499479166666667],[121,262,73,-0.02499479166666667],[121,262,74,-0.02499479166666667],[121,262,75,-0.02499479166666667],[121,262,76,-0.02499479166666667],[121,262,77,-0.02499479166666667],[121,262,78,-0.02499479166666667],[121,262,79,-0.02499479166666667],[121,263,64,-0.02499479166666667],[121,263,65,-0.02499479166666667],[121,263,66,-0.02499479166666667],[121,263,67,-0.02499479166666667],[121,263,68,-0.02499479166666667],[121,263,69,-0.02499479166666667],[121,263,70,-0.02499479166666667],[121,263,71,-0.02499479166666667],[121,263,72,-0.02499479166666667],[121,263,73,-0.02499479166666667],[121,263,74,-0.02499479166666667],[121,263,75,-0.02499479166666667],[121,263,76,-0.02499479166666667],[121,263,77,-0.02499479166666667],[121,263,78,-0.02499479166666667],[121,263,79,-0.02499479166666667],[121,264,64,-0.02499479166666667],[121,264,65,-0.02499479166666667],[121,264,66,-0.02499479166666667],[121,264,67,-0.02499479166666667],[121,264,68,-0.02499479166666667],[121,264,69,-0.02499479166666667],[121,264,70,-0.02499479166666667],[121,264,71,-0.02499479166666667],[121,264,72,-0.02499479166666667],[121,264,73,-0.02499479166666667],[121,264,74,-0.02499479166666667],[121,264,75,-0.02499479166666667],[121,264,76,-0.02499479166666667],[121,264,77,-0.02499479166666667],[121,264,78,-0.02499479166666667],[121,264,79,-0.02499479166666667],[121,265,64,-0.02499479166666667],[121,265,65,-0.02499479166666667],[121,265,66,-0.02499479166666667],[121,265,67,-0.02499479166666667],[121,265,68,-0.02499479166666667],[121,265,69,-0.02499479166666667],[121,265,70,-0.02499479166666667],[121,265,71,-0.02499479166666667],[121,265,72,-0.02499479166666667],[121,265,73,-0.02499479166666667],[121,265,74,-0.02499479166666667],[121,265,75,-0.02499479166666667],[121,265,76,-0.02499479166666667],[121,265,77,-0.02499479166666667],[121,265,78,-0.02499479166666667],[121,265,79,-0.02499479166666667],[121,266,64,-0.02499479166666667],[121,266,65,-0.02499479166666667],[121,266,66,-0.02499479166666667],[121,266,67,-0.02499479166666667],[121,266,68,-0.02499479166666667],[121,266,69,-0.02499479166666667],[121,266,70,-0.02499479166666667],[121,266,71,-0.02499479166666667],[121,266,72,-0.02499479166666667],[121,266,73,-0.02499479166666667],[121,266,74,-0.02499479166666667],[121,266,75,-0.02499479166666667],[121,266,76,-0.02499479166666667],[121,266,77,-0.02499479166666667],[121,266,78,-0.02499479166666667],[121,266,79,-0.02499479166666667],[121,267,64,-0.02499479166666667],[121,267,65,-0.02499479166666667],[121,267,66,-0.02499479166666667],[121,267,67,-0.02499479166666667],[121,267,68,-0.02499479166666667],[121,267,69,-0.02499479166666667],[121,267,70,-0.02499479166666667],[121,267,71,-0.02499479166666667],[121,267,72,-0.02499479166666667],[121,267,73,-0.02499479166666667],[121,267,74,-0.02499479166666667],[121,267,75,-0.02499479166666667],[121,267,76,-0.02499479166666667],[121,267,77,-0.02499479166666667],[121,267,78,-0.02499479166666667],[121,267,79,-0.02499479166666667],[121,268,64,-0.02499479166666667],[121,268,65,-0.02499479166666667],[121,268,66,-0.02499479166666667],[121,268,67,-0.02499479166666667],[121,268,68,-0.02499479166666667],[121,268,69,-0.02499479166666667],[121,268,70,-0.02499479166666667],[121,268,71,-0.02499479166666667],[121,268,72,-0.02499479166666667],[121,268,73,-0.02499479166666667],[121,268,74,-0.02499479166666667],[121,268,75,-0.02499479166666667],[121,268,76,-0.02499479166666667],[121,268,77,-0.02499479166666667],[121,268,78,-0.02499479166666667],[121,268,79,-0.02499479166666667],[121,269,64,-0.02499479166666667],[121,269,65,-0.02499479166666667],[121,269,66,-0.02499479166666667],[121,269,67,-0.02499479166666667],[121,269,68,-0.02499479166666667],[121,269,69,-0.02499479166666667],[121,269,70,-0.02499479166666667],[121,269,71,-0.02499479166666667],[121,269,72,-0.02499479166666667],[121,269,73,-0.02499479166666667],[121,269,74,-0.02499479166666667],[121,269,75,-0.02499479166666667],[121,269,76,-0.02499479166666667],[121,269,77,-0.02499479166666667],[121,269,78,-0.02499479166666667],[121,269,79,-0.02499479166666667],[121,270,64,-0.02499479166666667],[121,270,65,-0.02499479166666667],[121,270,66,-0.02499479166666667],[121,270,67,-0.02499479166666667],[121,270,68,-0.02499479166666667],[121,270,69,-0.02499479166666667],[121,270,70,-0.02499479166666667],[121,270,71,-0.02499479166666667],[121,270,72,-0.02499479166666667],[121,270,73,-0.02499479166666667],[121,270,74,-0.02499479166666667],[121,270,75,-0.02499479166666667],[121,270,76,-0.02499479166666667],[121,270,77,-0.02499479166666667],[121,270,78,-0.02499479166666667],[121,270,79,-0.02499479166666667],[121,271,64,-0.02499479166666667],[121,271,65,-0.02499479166666667],[121,271,66,-0.02499479166666667],[121,271,67,-0.02499479166666667],[121,271,68,-0.02499479166666667],[121,271,69,-0.02499479166666667],[121,271,70,-0.02499479166666667],[121,271,71,-0.02499479166666667],[121,271,72,-0.02499479166666667],[121,271,73,-0.02499479166666667],[121,271,74,-0.02499479166666667],[121,271,75,-0.02499479166666667],[121,271,76,-0.02499479166666667],[121,271,77,-0.02499479166666667],[121,271,78,-0.02499479166666667],[121,271,79,-0.02499479166666667],[121,272,64,-0.02499479166666667],[121,272,65,-0.02499479166666667],[121,272,66,-0.02499479166666667],[121,272,67,-0.02499479166666667],[121,272,68,-0.02499479166666667],[121,272,69,-0.02499479166666667],[121,272,70,-0.02499479166666667],[121,272,71,-0.02499479166666667],[121,272,72,-0.02499479166666667],[121,272,73,-0.02499479166666667],[121,272,74,-0.02499479166666667],[121,272,75,-0.02499479166666667],[121,272,76,-0.02499479166666667],[121,272,77,-0.02499479166666667],[121,272,78,-0.02499479166666667],[121,272,79,-0.02499479166666667],[121,273,64,-0.02499479166666667],[121,273,65,-0.02499479166666667],[121,273,66,-0.02499479166666667],[121,273,67,-0.02499479166666667],[121,273,68,-0.02499479166666667],[121,273,69,-0.02499479166666667],[121,273,70,-0.02499479166666667],[121,273,71,-0.02499479166666667],[121,273,72,-0.02499479166666667],[121,273,73,-0.02499479166666667],[121,273,74,-0.02499479166666667],[121,273,75,-0.02499479166666667],[121,273,76,-0.02499479166666667],[121,273,77,-0.02499479166666667],[121,273,78,-0.02499479166666667],[121,273,79,-0.02499479166666667],[121,274,64,-0.02499479166666667],[121,274,65,-0.02499479166666667],[121,274,66,-0.02499479166666667],[121,274,67,-0.02499479166666667],[121,274,68,-0.02499479166666667],[121,274,69,-0.02499479166666667],[121,274,70,-0.02499479166666667],[121,274,71,-0.02499479166666667],[121,274,72,-0.02499479166666667],[121,274,73,-0.02499479166666667],[121,274,74,-0.02499479166666667],[121,274,75,-0.02499479166666667],[121,274,76,-0.02499479166666667],[121,274,77,-0.02499479166666667],[121,274,78,-0.02499479166666667],[121,274,79,-0.02499479166666667],[121,275,64,-0.02499479166666667],[121,275,65,-0.02499479166666667],[121,275,66,-0.02499479166666667],[121,275,67,-0.02499479166666667],[121,275,68,-0.02499479166666667],[121,275,69,-0.02499479166666667],[121,275,70,-0.02499479166666667],[121,275,71,-0.02499479166666667],[121,275,72,-0.02499479166666667],[121,275,73,-0.02499479166666667],[121,275,74,-0.02499479166666667],[121,275,75,-0.02499479166666667],[121,275,76,-0.02499479166666667],[121,275,77,-0.02499479166666667],[121,275,78,-0.02499479166666667],[121,275,79,-0.02499479166666667],[121,276,64,-0.02499479166666667],[121,276,65,-0.02499479166666667],[121,276,66,-0.02499479166666667],[121,276,67,-0.02499479166666667],[121,276,68,-0.02499479166666667],[121,276,69,-0.02499479166666667],[121,276,70,-0.02499479166666667],[121,276,71,-0.02499479166666667],[121,276,72,-0.02499479166666667],[121,276,73,-0.02499479166666667],[121,276,74,-0.02499479166666667],[121,276,75,-0.02499479166666667],[121,276,76,-0.02499479166666667],[121,276,77,-0.02499479166666667],[121,276,78,-0.02499479166666667],[121,276,79,-0.02499479166666667],[121,277,64,-0.02499479166666667],[121,277,65,-0.02499479166666667],[121,277,66,-0.02499479166666667],[121,277,67,-0.02499479166666667],[121,277,68,-0.02499479166666667],[121,277,69,-0.02499479166666667],[121,277,70,-0.02499479166666667],[121,277,71,-0.02499479166666667],[121,277,72,-0.02499479166666667],[121,277,73,-0.02499479166666667],[121,277,74,-0.02499479166666667],[121,277,75,-0.02499479166666667],[121,277,76,-0.02499479166666667],[121,277,77,-0.02499479166666667],[121,277,78,-0.02499479166666667],[121,277,79,-0.02499479166666667],[121,278,64,-0.02499479166666667],[121,278,65,-0.02499479166666667],[121,278,66,-0.02499479166666667],[121,278,67,-0.02499479166666667],[121,278,68,-0.02499479166666667],[121,278,69,-0.02499479166666667],[121,278,70,-0.02499479166666667],[121,278,71,-0.02499479166666667],[121,278,72,-0.02499479166666667],[121,278,73,-0.02499479166666667],[121,278,74,-0.02499479166666667],[121,278,75,-0.02499479166666667],[121,278,76,-0.02499479166666667],[121,278,77,-0.02499479166666667],[121,278,78,-0.02499479166666667],[121,278,79,-0.02499479166666667],[121,279,64,-0.02499479166666667],[121,279,65,-0.02499479166666667],[121,279,66,-0.02499479166666667],[121,279,67,-0.02499479166666667],[121,279,68,-0.02499479166666667],[121,279,69,-0.02499479166666667],[121,279,70,-0.02499479166666667],[121,279,71,-0.02499479166666667],[121,279,72,-0.02499479166666667],[121,279,73,-0.02499479166666667],[121,279,74,-0.02499479166666667],[121,279,75,-0.02499479166666667],[121,279,76,-0.02499479166666667],[121,279,77,-0.02499479166666667],[121,279,78,-0.02499479166666667],[121,279,79,-0.02499479166666667],[121,280,64,-0.02499479166666667],[121,280,65,-0.02499479166666667],[121,280,66,-0.02499479166666667],[121,280,67,-0.02499479166666667],[121,280,68,-0.02499479166666667],[121,280,69,-0.02499479166666667],[121,280,70,-0.02499479166666667],[121,280,71,-0.02499479166666667],[121,280,72,-0.02499479166666667],[121,280,73,-0.02499479166666667],[121,280,74,-0.02499479166666667],[121,280,75,-0.02499479166666667],[121,280,76,-0.02499479166666667],[121,280,77,-0.02499479166666667],[121,280,78,-0.02499479166666667],[121,280,79,-0.02499479166666667],[121,281,64,-0.02499479166666667],[121,281,65,-0.02499479166666667],[121,281,66,-0.02499479166666667],[121,281,67,-0.02499479166666667],[121,281,68,-0.02499479166666667],[121,281,69,-0.02499479166666667],[121,281,70,-0.02499479166666667],[121,281,71,-0.02499479166666667],[121,281,72,-0.02499479166666667],[121,281,73,-0.02499479166666667],[121,281,74,-0.02499479166666667],[121,281,75,-0.02499479166666667],[121,281,76,-0.02499479166666667],[121,281,77,-0.02499479166666667],[121,281,78,-0.02499479166666667],[121,281,79,-0.02499479166666667],[121,282,64,-0.02499479166666667],[121,282,65,-0.02499479166666667],[121,282,66,-0.02499479166666667],[121,282,67,-0.02499479166666667],[121,282,68,-0.02499479166666667],[121,282,69,-0.02499479166666667],[121,282,70,-0.02499479166666667],[121,282,71,-0.02499479166666667],[121,282,72,-0.02499479166666667],[121,282,73,-0.02499479166666667],[121,282,74,-0.02499479166666667],[121,282,75,-0.02499479166666667],[121,282,76,-0.02499479166666667],[121,282,77,-0.02499479166666667],[121,282,78,-0.02499479166666667],[121,282,79,-0.02499479166666667],[121,283,64,-0.02499479166666667],[121,283,65,-0.02499479166666667],[121,283,66,-0.02499479166666667],[121,283,67,-0.02499479166666667],[121,283,68,-0.02499479166666667],[121,283,69,-0.02499479166666667],[121,283,70,-0.02499479166666667],[121,283,71,-0.02499479166666667],[121,283,72,-0.02499479166666667],[121,283,73,-0.02499479166666667],[121,283,74,-0.02499479166666667],[121,283,75,-0.02499479166666667],[121,283,76,-0.02499479166666667],[121,283,77,-0.02499479166666667],[121,283,78,-0.02499479166666667],[121,283,79,-0.02499479166666667],[121,284,64,-0.02499479166666667],[121,284,65,-0.02499479166666667],[121,284,66,-0.02499479166666667],[121,284,67,-0.02499479166666667],[121,284,68,-0.02499479166666667],[121,284,69,-0.02499479166666667],[121,284,70,-0.02499479166666667],[121,284,71,-0.02499479166666667],[121,284,72,-0.02499479166666667],[121,284,73,-0.02499479166666667],[121,284,74,-0.02499479166666667],[121,284,75,-0.02499479166666667],[121,284,76,-0.02499479166666667],[121,284,77,-0.02499479166666667],[121,284,78,-0.02499479166666667],[121,284,79,-0.02499479166666667],[121,285,64,-0.02499479166666667],[121,285,65,-0.02499479166666667],[121,285,66,-0.02499479166666667],[121,285,67,-0.02499479166666667],[121,285,68,-0.02499479166666667],[121,285,69,-0.02499479166666667],[121,285,70,-0.02499479166666667],[121,285,71,-0.02499479166666667],[121,285,72,-0.02499479166666667],[121,285,73,-0.02499479166666667],[121,285,74,-0.02499479166666667],[121,285,75,-0.02499479166666667],[121,285,76,-0.02499479166666667],[121,285,77,-0.02499479166666667],[121,285,78,-0.02499479166666667],[121,285,79,-0.02499479166666667],[121,286,64,-0.02499479166666667],[121,286,65,-0.02499479166666667],[121,286,66,-0.02499479166666667],[121,286,67,-0.02499479166666667],[121,286,68,-0.02499479166666667],[121,286,69,-0.02499479166666667],[121,286,70,-0.02499479166666667],[121,286,71,-0.02499479166666667],[121,286,72,-0.02499479166666667],[121,286,73,-0.02499479166666667],[121,286,74,-0.02499479166666667],[121,286,75,-0.02499479166666667],[121,286,76,-0.02499479166666667],[121,286,77,-0.02499479166666667],[121,286,78,-0.02499479166666667],[121,286,79,-0.02499479166666667],[121,287,64,-0.02499479166666667],[121,287,65,-0.02499479166666667],[121,287,66,-0.02499479166666667],[121,287,67,-0.02499479166666667],[121,287,68,-0.02499479166666667],[121,287,69,-0.02499479166666667],[121,287,70,-0.02499479166666667],[121,287,71,-0.02499479166666667],[121,287,72,-0.02499479166666667],[121,287,73,-0.02499479166666667],[121,287,74,-0.02499479166666667],[121,287,75,-0.02499479166666667],[121,287,76,-0.02499479166666667],[121,287,77,-0.02499479166666667],[121,287,78,-0.02499479166666667],[121,287,79,-0.02499479166666667],[121,288,64,-0.02499479166666667],[121,288,65,-0.02499479166666667],[121,288,66,-0.02499479166666667],[121,288,67,-0.02499479166666667],[121,288,68,-0.02499479166666667],[121,288,69,-0.02499479166666667],[121,288,70,-0.02499479166666667],[121,288,71,-0.02499479166666667],[121,288,72,-0.02499479166666667],[121,288,73,-0.02499479166666667],[121,288,74,-0.02499479166666667],[121,288,75,-0.02499479166666667],[121,288,76,-0.02499479166666667],[121,288,77,-0.02499479166666667],[121,288,78,-0.02499479166666667],[121,288,79,-0.02499479166666667],[121,289,64,-0.02499479166666667],[121,289,65,-0.02499479166666667],[121,289,66,-0.02499479166666667],[121,289,67,-0.02499479166666667],[121,289,68,-0.02499479166666667],[121,289,69,-0.02499479166666667],[121,289,70,-0.02499479166666667],[121,289,71,-0.02499479166666667],[121,289,72,-0.02499479166666667],[121,289,73,-0.02499479166666667],[121,289,74,-0.02499479166666667],[121,289,75,-0.02499479166666667],[121,289,76,-0.02499479166666667],[121,289,77,-0.02499479166666667],[121,289,78,-0.02499479166666667],[121,289,79,-0.02499479166666667],[121,290,64,-0.02499479166666667],[121,290,65,-0.02499479166666667],[121,290,66,-0.02499479166666667],[121,290,67,-0.02499479166666667],[121,290,68,-0.02499479166666667],[121,290,69,-0.02499479166666667],[121,290,70,-0.02499479166666667],[121,290,71,-0.02499479166666667],[121,290,72,-0.02499479166666667],[121,290,73,-0.02499479166666667],[121,290,74,-0.02499479166666667],[121,290,75,-0.02499479166666667],[121,290,76,-0.02499479166666667],[121,290,77,-0.02499479166666667],[121,290,78,-0.02499479166666667],[121,290,79,-0.02499479166666667],[121,291,64,-0.02499479166666667],[121,291,65,-0.02499479166666667],[121,291,66,-0.02499479166666667],[121,291,67,-0.02499479166666667],[121,291,68,-0.02499479166666667],[121,291,69,-0.02499479166666667],[121,291,70,-0.02499479166666667],[121,291,71,-0.02499479166666667],[121,291,72,-0.02499479166666667],[121,291,73,-0.02499479166666667],[121,291,74,-0.02499479166666667],[121,291,75,-0.02499479166666667],[121,291,76,-0.02499479166666667],[121,291,77,-0.02499479166666667],[121,291,78,-0.02499479166666667],[121,291,79,-0.02499479166666667],[121,292,64,-0.02499479166666667],[121,292,65,-0.02499479166666667],[121,292,66,-0.02499479166666667],[121,292,67,-0.02499479166666667],[121,292,68,-0.02499479166666667],[121,292,69,-0.02499479166666667],[121,292,70,-0.02499479166666667],[121,292,71,-0.02499479166666667],[121,292,72,-0.02499479166666667],[121,292,73,-0.02499479166666667],[121,292,74,-0.02499479166666667],[121,292,75,-0.02499479166666667],[121,292,76,-0.02499479166666667],[121,292,77,-0.02499479166666667],[121,292,78,-0.02499479166666667],[121,292,79,-0.02499479166666667],[121,293,64,-0.02499479166666667],[121,293,65,-0.02499479166666667],[121,293,66,-0.02499479166666667],[121,293,67,-0.02499479166666667],[121,293,68,-0.02499479166666667],[121,293,69,-0.02499479166666667],[121,293,70,-0.02499479166666667],[121,293,71,-0.02499479166666667],[121,293,72,-0.02499479166666667],[121,293,73,-0.02499479166666667],[121,293,74,-0.02499479166666667],[121,293,75,-0.02499479166666667],[121,293,76,-0.02499479166666667],[121,293,77,-0.02499479166666667],[121,293,78,-0.02499479166666667],[121,293,79,-0.02499479166666667],[121,294,64,-0.02499479166666667],[121,294,65,-0.02499479166666667],[121,294,66,-0.02499479166666667],[121,294,67,-0.02499479166666667],[121,294,68,-0.02499479166666667],[121,294,69,-0.02499479166666667],[121,294,70,-0.02499479166666667],[121,294,71,-0.02499479166666667],[121,294,72,-0.02499479166666667],[121,294,73,-0.02499479166666667],[121,294,74,-0.02499479166666667],[121,294,75,-0.02499479166666667],[121,294,76,-0.02499479166666667],[121,294,77,-0.02499479166666667],[121,294,78,-0.02499479166666667],[121,294,79,-0.02499479166666667],[121,295,64,-0.02499479166666667],[121,295,65,-0.02499479166666667],[121,295,66,-0.02499479166666667],[121,295,67,-0.02499479166666667],[121,295,68,-0.02499479166666667],[121,295,69,-0.02499479166666667],[121,295,70,-0.02499479166666667],[121,295,71,-0.02499479166666667],[121,295,72,-0.02499479166666667],[121,295,73,-0.02499479166666667],[121,295,74,-0.02499479166666667],[121,295,75,-0.02499479166666667],[121,295,76,-0.02499479166666667],[121,295,77,-0.02499479166666667],[121,295,78,-0.02499479166666667],[121,295,79,-0.02499479166666667],[121,296,64,-0.02499479166666667],[121,296,65,-0.02499479166666667],[121,296,66,-0.02499479166666667],[121,296,67,-0.02499479166666667],[121,296,68,-0.02499479166666667],[121,296,69,-0.02499479166666667],[121,296,70,-0.02499479166666667],[121,296,71,-0.02499479166666667],[121,296,72,-0.02499479166666667],[121,296,73,-0.02499479166666667],[121,296,74,-0.02499479166666667],[121,296,75,-0.02499479166666667],[121,296,76,-0.02499479166666667],[121,296,77,-0.02499479166666667],[121,296,78,-0.02499479166666667],[121,296,79,-0.02499479166666667],[121,297,64,-0.02499479166666667],[121,297,65,-0.02499479166666667],[121,297,66,-0.02499479166666667],[121,297,67,-0.02499479166666667],[121,297,68,-0.02499479166666667],[121,297,69,-0.02499479166666667],[121,297,70,-0.02499479166666667],[121,297,71,-0.02499479166666667],[121,297,72,-0.02499479166666667],[121,297,73,-0.02499479166666667],[121,297,74,-0.02499479166666667],[121,297,75,-0.02499479166666667],[121,297,76,-0.02499479166666667],[121,297,77,-0.02499479166666667],[121,297,78,-0.02499479166666667],[121,297,79,-0.02499479166666667],[121,298,64,-0.02499479166666667],[121,298,65,-0.02499479166666667],[121,298,66,-0.02499479166666667],[121,298,67,-0.02499479166666667],[121,298,68,-0.02499479166666667],[121,298,69,-0.02499479166666667],[121,298,70,-0.02499479166666667],[121,298,71,-0.02499479166666667],[121,298,72,-0.02499479166666667],[121,298,73,-0.02499479166666667],[121,298,74,-0.02499479166666667],[121,298,75,-0.02499479166666667],[121,298,76,-0.02499479166666667],[121,298,77,-0.02499479166666667],[121,298,78,-0.02499479166666667],[121,298,79,-0.02499479166666667],[121,299,64,-0.02499479166666667],[121,299,65,-0.02499479166666667],[121,299,66,-0.02499479166666667],[121,299,67,-0.02499479166666667],[121,299,68,-0.02499479166666667],[121,299,69,-0.02499479166666667],[121,299,70,-0.02499479166666667],[121,299,71,-0.02499479166666667],[121,299,72,-0.02499479166666667],[121,299,73,-0.02499479166666667],[121,299,74,-0.02499479166666667],[121,299,75,-0.02499479166666667],[121,299,76,-0.02499479166666667],[121,299,77,-0.02499479166666667],[121,299,78,-0.02499479166666667],[121,299,79,-0.02499479166666667],[121,300,64,-0.02499479166666667],[121,300,65,-0.02499479166666667],[121,300,66,-0.02499479166666667],[121,300,67,-0.02499479166666667],[121,300,68,-0.02499479166666667],[121,300,69,-0.02499479166666667],[121,300,70,-0.02499479166666667],[121,300,71,-0.02499479166666667],[121,300,72,-0.02499479166666667],[121,300,73,-0.02499479166666667],[121,300,74,-0.02499479166666667],[121,300,75,-0.02499479166666667],[121,300,76,-0.02499479166666667],[121,300,77,-0.02499479166666667],[121,300,78,-0.02499479166666667],[121,300,79,-0.02499479166666667],[121,301,64,-0.02499479166666667],[121,301,65,-0.02499479166666667],[121,301,66,-0.02499479166666667],[121,301,67,-0.02499479166666667],[121,301,68,-0.02499479166666667],[121,301,69,-0.02499479166666667],[121,301,70,-0.02499479166666667],[121,301,71,-0.02499479166666667],[121,301,72,-0.02499479166666667],[121,301,73,-0.02499479166666667],[121,301,74,-0.02499479166666667],[121,301,75,-0.02499479166666667],[121,301,76,-0.02499479166666667],[121,301,77,-0.02499479166666667],[121,301,78,-0.02499479166666667],[121,301,79,-0.02499479166666667],[121,302,64,-0.02499479166666667],[121,302,65,-0.02499479166666667],[121,302,66,-0.02499479166666667],[121,302,67,-0.02499479166666667],[121,302,68,-0.02499479166666667],[121,302,69,-0.02499479166666667],[121,302,70,-0.02499479166666667],[121,302,71,-0.02499479166666667],[121,302,72,-0.02499479166666667],[121,302,73,-0.02499479166666667],[121,302,74,-0.02499479166666667],[121,302,75,-0.02499479166666667],[121,302,76,-0.02499479166666667],[121,302,77,-0.02499479166666667],[121,302,78,-0.02499479166666667],[121,302,79,-0.02499479166666667],[121,303,64,-0.02499479166666667],[121,303,65,-0.02499479166666667],[121,303,66,-0.02499479166666667],[121,303,67,-0.02499479166666667],[121,303,68,-0.02499479166666667],[121,303,69,-0.02499479166666667],[121,303,70,-0.02499479166666667],[121,303,71,-0.02499479166666667],[121,303,72,-0.02499479166666667],[121,303,73,-0.02499479166666667],[121,303,74,-0.02499479166666667],[121,303,75,-0.02499479166666667],[121,303,76,-0.02499479166666667],[121,303,77,-0.02499479166666667],[121,303,78,-0.02499479166666667],[121,303,79,-0.02499479166666667],[121,304,64,-0.02499479166666667],[121,304,65,-0.02499479166666667],[121,304,66,-0.02499479166666667],[121,304,67,-0.02499479166666667],[121,304,68,-0.02499479166666667],[121,304,69,-0.02499479166666667],[121,304,70,-0.02499479166666667],[121,304,71,-0.02499479166666667],[121,304,72,-0.02499479166666667],[121,304,73,-0.02499479166666667],[121,304,74,-0.02499479166666667],[121,304,75,-0.02499479166666667],[121,304,76,-0.02499479166666667],[121,304,77,-0.02499479166666667],[121,304,78,-0.02499479166666667],[121,304,79,-0.02499479166666667],[121,305,64,-0.02499479166666667],[121,305,65,-0.02499479166666667],[121,305,66,-0.02499479166666667],[121,305,67,-0.02499479166666667],[121,305,68,-0.02499479166666667],[121,305,69,-0.02499479166666667],[121,305,70,-0.02499479166666667],[121,305,71,-0.02499479166666667],[121,305,72,-0.02499479166666667],[121,305,73,-0.02499479166666667],[121,305,74,-0.02499479166666667],[121,305,75,-0.02499479166666667],[121,305,76,-0.02499479166666667],[121,305,77,-0.02499479166666667],[121,305,78,-0.02499479166666667],[121,305,79,-0.02499479166666667],[121,306,64,-0.02499479166666667],[121,306,65,-0.02499479166666667],[121,306,66,-0.02499479166666667],[121,306,67,-0.02499479166666667],[121,306,68,-0.02499479166666667],[121,306,69,-0.02499479166666667],[121,306,70,-0.02499479166666667],[121,306,71,-0.02499479166666667],[121,306,72,-0.02499479166666667],[121,306,73,-0.02499479166666667],[121,306,74,-0.02499479166666667],[121,306,75,-0.02499479166666667],[121,306,76,-0.02499479166666667],[121,306,77,-0.02499479166666667],[121,306,78,-0.02499479166666667],[121,306,79,-0.02499479166666667],[121,307,64,-0.02499479166666667],[121,307,65,-0.02499479166666667],[121,307,66,-0.02499479166666667],[121,307,67,-0.02499479166666667],[121,307,68,-0.02499479166666667],[121,307,69,-0.02499479166666667],[121,307,70,-0.02499479166666667],[121,307,71,-0.02499479166666667],[121,307,72,-0.02499479166666667],[121,307,73,-0.02499479166666667],[121,307,74,-0.02499479166666667],[121,307,75,-0.02499479166666667],[121,307,76,-0.02499479166666667],[121,307,77,-0.02499479166666667],[121,307,78,-0.02499479166666667],[121,307,79,-0.02499479166666667],[121,308,64,-0.02499479166666667],[121,308,65,-0.02499479166666667],[121,308,66,-0.02499479166666667],[121,308,67,-0.02499479166666667],[121,308,68,-0.02499479166666667],[121,308,69,-0.02499479166666667],[121,308,70,-0.02499479166666667],[121,308,71,-0.02499479166666667],[121,308,72,-0.02499479166666667],[121,308,73,-0.02499479166666667],[121,308,74,-0.02499479166666667],[121,308,75,-0.02499479166666667],[121,308,76,-0.02499479166666667],[121,308,77,-0.02499479166666667],[121,308,78,-0.02499479166666667],[121,308,79,-0.02499479166666667],[121,309,64,-0.02499479166666667],[121,309,65,-0.02499479166666667],[121,309,66,-0.02499479166666667],[121,309,67,-0.02499479166666667],[121,309,68,-0.02499479166666667],[121,309,69,-0.02499479166666667],[121,309,70,-0.02499479166666667],[121,309,71,-0.02499479166666667],[121,309,72,-0.02499479166666667],[121,309,73,-0.02499479166666667],[121,309,74,-0.02499479166666667],[121,309,75,-0.02499479166666667],[121,309,76,-0.02499479166666667],[121,309,77,-0.02499479166666667],[121,309,78,-0.02499479166666667],[121,309,79,-0.02499479166666667],[121,310,64,-0.02499479166666667],[121,310,65,-0.02499479166666667],[121,310,66,-0.02499479166666667],[121,310,67,-0.02499479166666667],[121,310,68,-0.02499479166666667],[121,310,69,-0.02499479166666667],[121,310,70,-0.02499479166666667],[121,310,71,-0.02499479166666667],[121,310,72,-0.02499479166666667],[121,310,73,-0.02499479166666667],[121,310,74,-0.02499479166666667],[121,310,75,-0.02499479166666667],[121,310,76,-0.02499479166666667],[121,310,77,-0.02499479166666667],[121,310,78,-0.02499479166666667],[121,310,79,-0.02499479166666667],[121,311,64,-0.02499479166666667],[121,311,65,-0.02499479166666667],[121,311,66,-0.02499479166666667],[121,311,67,-0.02499479166666667],[121,311,68,-0.02499479166666667],[121,311,69,-0.02499479166666667],[121,311,70,-0.02499479166666667],[121,311,71,-0.02499479166666667],[121,311,72,-0.02499479166666667],[121,311,73,-0.02499479166666667],[121,311,74,-0.02499479166666667],[121,311,75,-0.02499479166666667],[121,311,76,-0.02499479166666667],[121,311,77,-0.02499479166666667],[121,311,78,-0.02499479166666667],[121,311,79,-0.02499479166666667],[121,312,64,-0.02499479166666667],[121,312,65,-0.02499479166666667],[121,312,66,-0.02499479166666667],[121,312,67,-0.02499479166666667],[121,312,68,-0.02499479166666667],[121,312,69,-0.02499479166666667],[121,312,70,-0.02499479166666667],[121,312,71,-0.02499479166666667],[121,312,72,-0.02499479166666667],[121,312,73,-0.02499479166666667],[121,312,74,-0.02499479166666667],[121,312,75,-0.02499479166666667],[121,312,76,-0.02499479166666667],[121,312,77,-0.02499479166666667],[121,312,78,-0.02499479166666667],[121,312,79,-0.02499479166666667],[121,313,64,-0.02499479166666667],[121,313,65,-0.02499479166666667],[121,313,66,-0.02499479166666667],[121,313,67,-0.02499479166666667],[121,313,68,-0.02499479166666667],[121,313,69,-0.02499479166666667],[121,313,70,-0.02499479166666667],[121,313,71,-0.02499479166666667],[121,313,72,-0.02499479166666667],[121,313,73,-0.02499479166666667],[121,313,74,-0.02499479166666667],[121,313,75,-0.02499479166666667],[121,313,76,-0.02499479166666667],[121,313,77,-0.02499479166666667],[121,313,78,-0.02499479166666667],[121,313,79,-0.02499479166666667],[121,314,64,-0.02499479166666667],[121,314,65,-0.02499479166666667],[121,314,66,-0.02499479166666667],[121,314,67,-0.02499479166666667],[121,314,68,-0.02499479166666667],[121,314,69,-0.02499479166666667],[121,314,70,-0.02499479166666667],[121,314,71,-0.02499479166666667],[121,314,72,-0.02499479166666667],[121,314,73,-0.02499479166666667],[121,314,74,-0.02499479166666667],[121,314,75,-0.02499479166666667],[121,314,76,-0.02499479166666667],[121,314,77,-0.02499479166666667],[121,314,78,-0.02499479166666667],[121,314,79,-0.02499479166666667],[121,315,64,-0.02499479166666667],[121,315,65,-0.02499479166666667],[121,315,66,-0.02499479166666667],[121,315,67,-0.02499479166666667],[121,315,68,-0.02499479166666667],[121,315,69,-0.02499479166666667],[121,315,70,-0.02499479166666667],[121,315,71,-0.02499479166666667],[121,315,72,-0.02499479166666667],[121,315,73,-0.02499479166666667],[121,315,74,-0.02499479166666667],[121,315,75,-0.02499479166666667],[121,315,76,-0.02499479166666667],[121,315,77,-0.02499479166666667],[121,315,78,-0.02499479166666667],[121,315,79,-0.02499479166666667],[121,316,64,-0.02499479166666667],[121,316,65,-0.02499479166666667],[121,316,66,-0.02499479166666667],[121,316,67,-0.02499479166666667],[121,316,68,-0.02499479166666667],[121,316,69,-0.02499479166666667],[121,316,70,-0.02499479166666667],[121,316,71,-0.02499479166666667],[121,316,72,-0.02499479166666667],[121,316,73,-0.02499479166666667],[121,316,74,-0.02499479166666667],[121,316,75,-0.02499479166666667],[121,316,76,-0.02499479166666667],[121,316,77,-0.02499479166666667],[121,316,78,-0.02499479166666667],[121,316,79,-0.02499479166666667],[121,317,64,-0.02499479166666667],[121,317,65,-0.02499479166666667],[121,317,66,-0.02499479166666667],[121,317,67,-0.02499479166666667],[121,317,68,-0.02499479166666667],[121,317,69,-0.02499479166666667],[121,317,70,-0.02499479166666667],[121,317,71,-0.02499479166666667],[121,317,72,-0.02499479166666667],[121,317,73,-0.02499479166666667],[121,317,74,-0.02499479166666667],[121,317,75,-0.02499479166666667],[121,317,76,-0.02499479166666667],[121,317,77,-0.02499479166666667],[121,317,78,-0.02499479166666667],[121,317,79,-0.02499479166666667],[121,318,64,-0.02499479166666667],[121,318,65,-0.02499479166666667],[121,318,66,-0.02499479166666667],[121,318,67,-0.02499479166666667],[121,318,68,-0.02499479166666667],[121,318,69,-0.02499479166666667],[121,318,70,-0.02499479166666667],[121,318,71,-0.02499479166666667],[121,318,72,-0.02499479166666667],[121,318,73,-0.02499479166666667],[121,318,74,-0.02499479166666667],[121,318,75,-0.02499479166666667],[121,318,76,-0.02499479166666667],[121,318,77,-0.02499479166666667],[121,318,78,-0.02499479166666667],[121,318,79,-0.02499479166666667],[121,319,64,-0.02499479166666667],[121,319,65,-0.02499479166666667],[121,319,66,-0.02499479166666667],[121,319,67,-0.02499479166666667],[121,319,68,-0.02499479166666667],[121,319,69,-0.02499479166666667],[121,319,70,-0.02499479166666667],[121,319,71,-0.02499479166666667],[121,319,72,-0.02499479166666667],[121,319,73,-0.02499479166666667],[121,319,74,-0.02499479166666667],[121,319,75,-0.02499479166666667],[121,319,76,-0.02499479166666667],[121,319,77,-0.02499479166666667],[121,319,78,-0.02499479166666667],[121,319,79,-0.02499479166666667],[122,-64,64,0.037482421875],[122,-64,65,0.037482421875],[122,-64,66,0.037482421875],[122,-64,67,0.037482421875],[122,-64,68,0.037482421875],[122,-64,69,0.037482421875],[122,-64,70,0.037482421875],[122,-64,71,0.037482421875],[122,-64,72,0.037482421875],[122,-64,73,0.037482421875],[122,-64,74,0.037482421875],[122,-64,75,0.037482421875],[122,-64,76,0.037482421875],[122,-64,77,0.037482421875],[122,-64,78,0.037482421875],[122,-64,79,0.037482421875],[122,-63,64,0.04055457745532686],[122,-63,65,0.04063597299062893],[122,-63,66,0.04071882080286584],[122,-63,67,0.04080290662523616],[122,-63,68,0.04088826196844186],[122,-63,69,0.040975084928023424],[122,-63,70,0.04106350875490523],[122,-63,71,0.041153592790608276],[122,-63,72,0.041245319836905645],[122,-63,73,0.04133859485709575],[122,-63,74,0.041433245040338545],[122,-63,75,0.04152902125860556],[122,-63,76,0.0416256009437426],[122,-63,77,0.04172259240995761],[122,-63,78,0.04181954064474076],[122,-63,79,0.04191593458883474],[122,-62,64,0.043696023827044884],[122,-62,65,0.04386117964770313],[122,-62,66,0.044029331689151796],[122,-62,67,0.04420007035321754],[122,-62,68,0.044373437931044514],[122,-62,69,0.04454978287311843],[122,-62,70,0.04472932626429921],[122,-62,71,0.04491214497169308],[122,-62,72,0.04509816695405369],[122,-62,73,0.04528716916063594],[122,-62,74,0.0454787780788653],[122,-62,75,0.0456724729864181],[122,-62,76,0.04586759195924445],[122,-62,77,0.04606334068275631],[122,-62,78,0.04625880410888244],[122,-62,79,0.04645296099703385],[122,-61,64,0.0469131099926143],[122,-61,65,0.047163988126763125],[122,-61,66,0.04741943264130656],[122,-61,67,0.04767887005603952],[122,-61,68,0.04794233169435151],[122,-61,69,0.04821025928924806],[122,-61,70,0.04848291156456048],[122,-61,71,0.04876034057514452],[122,-61,72,0.049042384944957065],[122,-61,73,0.049328666895632325],[122,-61,74,0.04961859315027684],[122,-61,75,0.049911359791602196],[122,-61,76,0.0502059611474912],[122,-61,77,0.05050120277072517],[122,-61,78,0.050795718572950455],[122,-61,79,0.051087992166142925],[122,-60,64,0.050211152183993704],[122,-60,65,0.050549306827016104],[122,-60,66,0.05089355899866971],[122,-60,67,0.05124321262858848],[122,-60,68,0.05159826596516877],[122,-60,69,0.051959190381699105],[122,-60,70,0.05232622949491639],[122,-60,71,0.05269936937464972],[122,-60,72,0.053078329171471185],[122,-60,73,0.05346255669459147],[122,-60,74,0.05385122904837061],[122,-60,75,0.054243258428440265],[122,-60,76,0.05463730317051323],[122,-60,77,0.05503178413659919],[122,-60,78,0.05542490651464676],[122,-60,79,0.05581468709874802],[122,-59,64,0.053594250297480724],[122,-59,65,0.054020834336523486],[122,-59,66,0.05445494676608494],[122,-59,67,0.05489581638629645],[122,-59,68,0.05534338614293614],[122,-59,69,0.055798089594073425],[122,-59,70,0.05626010201329633],[122,-59,71,0.05672930485705447],[122,-59,72,0.05720527279847509],[122,-59,73,0.0576872668421295],[122,-59,74,0.05817423365075351],[122,-59,75,0.05866481120586044],[122,-59,76,0.059157340914441824],[122,-59,77,0.05964988626368036],[122,-59,78,0.06014025811492775],[122,-59,79,0.06062604671733958],[122,-58,64,0.05706517990890847],[122,-58,65,0.05758096439172843],[122,-58,66,0.05810555441691316],[122,-58,67,0.058638152530050176],[122,-58,68,0.059178623655228704],[122,-58,69,0.059727294777749566],[122,-58,70,0.06028422079214807],[122,-58,71,0.060849143360628535],[122,-58,72,0.06142147303944054],[122,-58,73,0.062000278594867245],[122,-58,74,0.06258428366191567],[122,-58,75,0.063171870888143],[122,-58,76,0.06376109369357902],[122,-58,77,0.0643496957656016],[122,-58,78,0.06493513839505813],[122,-58,79,0.06551463574716632],[122,-57,64,0.06062537429775254],[122,-57,65,0.061230782101933556],[122,-57,66,0.06184607733532525],[122,-57,67,0.062470480662458],[122,-57,68,0.06310375458455944],[122,-57,69,0.06374605145130813],[122,-57,70,0.06439725603478932],[122,-57,71,0.0650569387135637],[122,-57,72,0.06572433119150292],[122,-57,73,0.06639831049221226],[122,-57,74,0.06707739140386033],[122,-57,75,0.06775972753711178],[122,-57,76,0.06844312114576417],[122,-57,77,0.06912504184585265],[122,-57,78,0.06980265435461759],[122,-57,79,0.07047285535615434],[122,-56,64,0.06427465697537682],[122,-56,65,0.06496979150958328],[122,-56,66,0.06567567329891814],[122,-56,67,0.06639157462118374],[122,-56,68,0.06711712786875845],[122,-56,69,0.06785224514853934],[122,-56,70,0.06859659454250484],[122,-56,71,0.06934954739912881],[122,-56,72,0.07011014609652266],[122,-56,73,0.07087708113687342],[122,-56,74,0.07164867776832586],[122,-56,75,0.07242289231700477],[122,-56,76,0.07319731839728726],[122,-56,77,0.07396920315298273],[122,-56,78,0.07473547366601091],[122,-56,79,0.0754927736528641],[122,-55,64,0.06800880192912312],[122,-55,65,0.0687933348562528],[122,-55,66,0.06958923439662948],[122,-55,67,0.07039584626248344],[122,-55,68,0.0712126443508818],[122,-55,69,0.07203924270353142],[122,-55,70,0.07287505423622861],[122,-55,71,0.07371923157935975],[122,-55,72,0.07457062518989756],[122,-55,73,0.07542775183007525],[122,-55,74,0.07628877363021427],[122,-55,75,0.07715148793852829],[122,-55,76,0.07801332814476929],[122,-55,77,0.07887137564762034],[122,-55,78,0.07972238311805722],[122,-55,79,0.08056280919294179],[122,-54,64,0.07182041253721427],[122,-54,65,0.0726935052610022],[122,-54,66,0.07357833427365419],[122,-54,67,0.0744743289899392],[122,-54,68,0.07538077823194406],[122,-54,69,0.07629695230881486],[122,-54,70,0.07722198247307425],[122,-54,71,0.0781547942814234],[122,-54,72,0.07909405414893188],[122,-54,73,0.08003812730936444],[122,-54,74,0.08098504742114947],[122,-54,75,0.08193249804272329],[122,-54,76,0.08287780618373362],[122,-54,77,0.08381794812017165],[122,-54,78,0.08474956764224581],[122,-54,79,0.08566900688419583],[122,-53,64,0.07570038924539645],[122,-53,65,0.07666068514777556],[122,-53,66,0.07763284091931436],[122,-53,67,0.07861636744318651],[122,-53,68,0.07961034463143224],[122,-53,69,0.08061366778982604],[122,-53,70,0.08162517357608791],[122,-53,71,0.08264356436912028],[122,-53,72,0.08366734118459558],[122,-53,73,0.08469474906900265],[122,-53,74,0.08572373523506015],[122,-53,75,0.08675192018453659],[122,-53,76,0.08777658204598171],[122,-53,77,0.0887946543350053],[122,-53,78,0.08980273732387441],[122,-53,79,0.09079712318586812],[122,-52,64,0.07963848116390519],[122,-52,65,0.08068411544370095],[122,-52,66,0.08174150424882076],[122,-52,67,0.08281022486279427],[122,-52,68,0.08388912799711756],[122,-52,69,0.08497671858684756],[122,-52,70,0.08607154017875276],[122,-52,71,0.08717208833241741],[122,-52,72,0.08827672769546464],[122,-52,73,0.08938362269394137],[122,-52,74,0.09049068212612496],[122,-52,75,0.09159551792997496],[122,-52,76,0.0926954183745699],[122,-52,77,0.09378733590446227],[122,-52,78,0.0948678898433036],[122,-52,79,0.09593338413989604],[122,-51,64,0.08362386466005031],[122,-51,65,0.08475248976053698],[122,-51,66,0.0858925663406561],[122,-51,67,0.0870437104977004],[122,-51,68,0.08820452768068615],[122,-51,69,0.08937313378704301],[122,-51,70,0.09054779530477795],[122,-51,71,0.09172682935054065],[122,-51,72,0.09290850264785913],[122,-51,73,0.09409094535435948],[122,-51,74,0.09527208005393299],[122,-51,75,0.09644956621044677],[122,-51,76,0.09762076035820809],[122,-51,77,0.09878269228128482],[122,-51,78,0.09993205740929889],[122,-51,79,0.1010652256320232],[122,-50,64,0.08738601209046974],[122,-50,65,0.0887790629178517],[122,-50,66,0.09007440942998549],[122,-50,67,0.0913048423221942],[122,-50,68,0.09254423607258132],[122,-50,69,0.09379033568624985],[122,-50,70,0.09504116070812192],[122,-50,71,0.09629488915625156],[122,-50,72,0.0975497361678685],[122,-50,73,0.09880384885786642],[122,-50,74,0.1000552177359475],[122,-50,75,0.10130160500767317],[122,-50,76,0.10254049006154856],[122,-50,77,0.1037690324192164],[122,-50,78,0.10498405239917885],[122,-50,79,0.10618202971679268],[122,-49,64,0.09109156066591606],[122,-49,65,0.09258543749911075],[122,-49,66,0.09408305000633405],[122,-49,67,0.09558112704868403],[122,-49,68,0.09689637318701054],[122,-49,69,0.09821641401953522],[122,-49,70,0.09953978107155328],[122,-49,71,0.10086455935608225],[122,-49,72,0.10218896198069867],[122,-49,73,0.10351120419452586],[122,-49,74,0.10482939553482963],[122,-49,75,0.10614145042895051],[122,-49,76,0.10744501758214665],[122,-49,77,0.10873742845463864],[122,-49,78,0.11001566510201712],[122,-49,79,0.11127634762276467],[122,-48,64,0.09483392486628393],[122,-48,65,0.09642759166844724],[122,-48,66,0.09802707922254764],[122,-48,67,0.09962902955275987],[122,-48,68,0.1012313509053982],[122,-48,69,0.10263901808429068],[122,-48,70,0.10403199624418037],[122,-48,71,0.10542496303919431],[122,-48,72,0.10681616922215638],[122,-48,73,0.10820393637663553],[122,-48,74,0.10958652889771783],[122,-48,75,0.11096204609240054],[122,-48,76,0.11232833475828131],[122,-48,77,0.11368292256948172],[122,-48,78,0.1150229725669054],[122,-48,79,0.11634525901653331],[122,-47,64,0.09861931006071005],[122,-47,65,0.10031085404615464],[122,-47,66,0.10201023959756453],[122,-47,67,0.10371410494022681],[122,-47,68,0.1054204287147555],[122,-47,69,0.10704643051093327],[122,-47,70,0.10850697968383023],[122,-47,71,0.10996625078121239],[122,-47,72,0.1114225571912266],[122,-47,73,0.11287434755329545],[122,-47,74,0.1143200576368773],[122,-47,75,0.11575798401516783],[122,-47,76,0.11718617991807088],[122,-47,77,0.11860237361645062],[122,-47,78,0.12000390965501434],[122,-47,79,0.12138771321466042],[122,-46,64,0.102452393938937],[122,-46,65,0.10423899419907783],[122,-46,66,0.10603527690699269],[122,-46,67,0.10783797059971845],[122,-46,68,0.10964515341703157],[122,-46,69,0.11142820392944375],[122,-46,70,0.1129551950138121],[122,-46,71,0.11447987376810453],[122,-46,72,0.11600062505829764],[122,-46,73,0.11751602674099748],[122,-46,74,0.11902468246851089],[122,-46,75,0.12052507788681562],[122,-46,76,0.12201546063208384],[122,-46,77,0.12349374449648844],[122,-46,78,0.12495743809653459],[122,-46,79,0.12640359833752512],[122,-45,64,0.10633597584470647],[122,-45,65,0.10821389825596776],[122,-45,66,0.11010305701458978],[122,-45,67,0.11200037416559361],[122,-45,68,0.11390406303916234],[122,-45,69,0.1157753803113628],[122,-45,70,0.11736857120637506],[122,-45,71,0.11895871173893924],[122,-45,72,0.12054425010118751],[122,-45,73,0.12212387660583163],[122,-45,74,0.1236963393775586],[122,-45,75,0.1252602848663201],[122,-45,76,0.12681412360359492],[122,-45,77,0.12835592158524206],[122,-45,78,0.12988331762434815],[122,-45,79,0.131393466974852],[122,-44,64,0.11027070191998724],[122,-44,65,0.11223531824098662],[122,-44,66,0.11421234342624739],[122,-44,67,0.11619900287395303],[122,-44,68,0.11819368768244],[122,-44,69,0.12008065246362705],[122,-44,70,0.1217406249804354],[122,-44,71,0.1233971537507975],[122,-44,72,0.12504872486305096],[122,-44,73,0.12669410568848682],[122,-44,74,0.12833214628386047],[122,-44,75,0.12996160678416216],[122,-44,76,0.13158101121504026],[122,-44,77,0.13318852811442633],[122,-44,78,0.13478187831017818],[122,-44,79,0.1363582701551855],[122,-43,64,0.11425486476471182],[122,-43,65,0.11630069386958874],[122,-43,66,0.11835964464273889],[122,-43,67,0.12042935949533089],[122,-43,68,0.1225084568368878],[122,-43,69,0.12433846879330261],[122,-43,70,0.12606653145490176],[122,-43,71,0.12779113273887927],[122,-43,72,0.12951075415165958],[122,-43,73,0.1312241869571528],[122,-43,74,0.13293032288310896],[122,-43,75,0.13462797163662088],[122,-43,76,0.13631570565854711],[122,-43,77,0.13799173250464378],[122,-43,78,0.13965379519624063],[122,-43,79,0.1412991008355473],[122,-42,64,0.11828427654743857],[122,-42,65,0.12040504576222102],[122,-42,66,0.12253913027462356],[122,-42,67,0.12468470381843957],[122,-42,68,0.1267460816646394],[122,-42,69,0.12854508230438746],[122,-42,70,0.13034314394927116],[122,-42,71,0.13213811470431153],[122,-42,72,0.13392841266910954],[122,-42,73,0.13571278345406718],[122,-42,74,0.1374900844286226],[122,-42,75,0.13925909616464094],[122,-42,76,0.14101836149675115],[122,-42,77,0.1427660525776268],[122,-42,78,0.14449986625945221],[122,-42,79,0.1462169480831841],[122,-41,64,0.12235221469794136],[122,-41,65,0.12454093920942448],[122,-41,66,0.12674261504237389],[122,-41,67,0.12895605880001873],[122,-41,68,0.13082808473481417],[122,-41,69,0.13269854461155894],[122,-41,70,0.134568963657997],[122,-41,71,0.13643704320951],[122,-41,72,0.1383010639222254],[122,-41,73,0.14015964167773462],[122,-41,74,0.14201151011225252],[122,-41,75,0.14385533021847569],[122,-41,76,0.1456895274255522],[122,-41,77,0.1475121565174281],[122,-41,78,0.149320794701814],[122,-41,79,0.15111246309117365],[122,-40,64,0.12644943947294945],[122,-40,65,0.12869851776773178],[122,-40,66,0.13095960991588632],[122,-40,67,0.13291502989880136],[122,-40,68,0.13485451601704876],[122,-40,69,0.1367986455624213],[122,-40,70,0.13874405974643175],[122,-40,71,0.14068823969860603],[122,-40,72,0.1426292409194739],[122,-40,73,0.1445654532174557],[122,-40,74,0.14649538659711875],[122,-40,75,0.14841748352358677],[122,-40,76,0.15032995794410356],[122,-40,77,0.1522306614018525],[122,-40,78,0.15411697652856712],[122,-40,79,0.1559857381512684],[122,-39,64,0.1268744009436133],[122,-39,65,0.12904819037596116],[122,-39,66,0.13095549056766823],[122,-39,67,0.13287961650708138],[122,-39,68,0.1348147525997973],[122,-39,69,0.13675635111347204],[122,-39,70,0.1387009179056634],[122,-39,71,0.14064573824631366],[122,-39,72,0.14258863242167552],[122,-39,73,0.1445277345687002],[122,-39,74,0.14646129516219797],[122,-39,75,0.1483875075368716],[122,-39,76,0.15030435878508697],[122,-39,77,0.15220950532815725],[122,-39,78,0.15410017341357773],[122,-39,79,0.15597308474310517],[122,-38,64,0.12710665393502207],[122,-38,65,0.12898143186379263],[122,-38,66,0.13088184149089613],[122,-38,67,0.13280169619616017],[122,-38,68,0.1347347593951617],[122,-38,69,0.13667637041322836],[122,-38,70,0.13862283317081386],[122,-38,71,0.14057116005518766],[122,-38,72,0.14251885309382017],[122,-38,73,0.1444637056785447],[122,-38,74,0.1464036252126893],[122,-38,75,0.1483364770164168],[122,-38,76,0.15025994978760351],[122,-38,77,0.15217144287614318],[122,-38,78,0.15406797558830487],[122,-38,79,0.15594611869481395],[122,-37,64,0.12284698378527377],[122,-37,65,0.12186501938962341],[122,-37,66,0.12460980966126893],[122,-37,67,0.12897318798161925],[122,-37,68,0.13296588420564365],[122,-37,69,0.13656652812280817],[122,-37,70,0.13851706989774737],[122,-37,71,0.14047112438392492],[122,-37,72,0.14242579503628958],[122,-37,73,0.14437845533410934],[122,-37,74,0.1463265945836884],[122,-37,75,0.14826768179498576],[122,-37,76,0.14977403737899075],[122,-37,77,0.1455721693391543],[122,-37,78,0.14362717509647122],[122,-37,79,0.14317049564852305],[122,-36,64,0.11663254427732969],[122,-36,65,0.11533259889434774],[122,-36,66,0.11788123706914695],[122,-36,67,0.12174538367001093],[122,-36,68,0.1257583707331516],[122,-36,69,0.1288850900717316],[122,-36,70,0.133025101625271],[122,-36,71,0.13649599122546133],[122,-36,72,0.14038979695081907],[122,-36,73,0.14399031966030204],[122,-36,74,0.14273767457235256],[122,-36,75,0.14035036913679755],[122,-36,76,0.1414010831116077],[122,-36,77,0.13912795267708394],[122,-36,78,0.13668873345934318],[122,-36,79,0.13462230971838074],[122,-35,64,0.11293462157559124],[122,-35,65,0.11300920343787971],[122,-35,66,0.11465272703305249],[122,-35,67,0.11781812253680515],[122,-35,68,0.12193963253343164],[122,-35,69,0.12310924431380105],[122,-35,70,0.12659946924916565],[122,-35,71,0.13238992169678845],[122,-35,72,0.13602021219815957],[122,-35,73,0.13736486239968565],[122,-35,74,0.1370966488444937],[122,-35,75,0.13607375681889317],[122,-35,76,0.13515552051305024],[122,-35,77,0.13399690606024625],[122,-35,78,0.13259792826313865],[122,-35,79,0.1305886394085844],[122,-34,64,0.11266581068515148],[122,-34,65,0.11297325731870518],[122,-34,66,0.11368429848899468],[122,-34,67,0.1176412179577429],[122,-34,68,0.1221570294111735],[122,-34,69,0.1231375564611018],[122,-34,70,0.12558673117156513],[122,-34,71,0.1315053143703437],[122,-34,72,0.13447176950597384],[122,-34,73,0.13439225798432214],[122,-34,74,0.13544791698735728],[122,-34,75,0.1347493834733942],[122,-34,76,0.13141603497876725],[122,-34,77,0.12965932558182244],[122,-34,78,0.12945017258852845],[122,-34,79,0.12808829468707034],[122,-33,64,0.1138743170831864],[122,-33,65,0.11419982715971054],[122,-33,66,0.11516580212328321],[122,-33,67,0.1200421711261426],[122,-33,68,0.12483285564076556],[122,-33,69,0.12660067155250523],[122,-33,70,0.1285781089293345],[122,-33,71,0.13316436881704496],[122,-33,72,0.13601609483974536],[122,-33,73,0.13644778503823685],[122,-33,74,0.1373142586435331],[122,-33,75,0.1352920421125568],[122,-33,76,0.13151838560211473],[122,-33,77,0.12936719778230066],[122,-33,78,0.12844172604837653],[122,-33,79,0.1259217858849948],[122,-32,64,0.11567917625633946],[122,-32,65,0.11871242891335597],[122,-32,66,0.12008886469217067],[122,-32,67,0.12227666608174136],[122,-32,68,0.12705193619591285],[122,-32,69,0.13063221322819837],[122,-32,70,0.13302200180015034],[122,-32,71,0.13713877325544285],[122,-32,72,0.13986447812218364],[122,-32,73,0.13944059421671962],[122,-32,74,0.14008039845500062],[122,-32,75,0.13824603664472246],[122,-32,76,0.13441312198029778],[122,-32,77,0.13296828381551618],[122,-32,78,0.13008281134011435],[122,-32,79,0.12493184947117975],[122,-31,64,0.11900877057310082],[122,-31,65,0.12352003016219046],[122,-31,66,0.1252804410415788],[122,-31,67,0.12568188431236957],[122,-31,68,0.13024592833761583],[122,-31,69,0.13452113381010847],[122,-31,70,0.13743315898789282],[122,-31,71,0.1396250096249798],[122,-31,72,0.1416178943841914],[122,-31,73,0.14301282287282746],[122,-31,74,0.1428287366714561],[122,-31,75,0.14104407282051562],[122,-31,76,0.1365940998791429],[122,-31,77,0.13607181017375802],[122,-31,78,0.13157598107942076],[122,-31,79,0.12634024921979908],[122,-30,64,0.12355961711292028],[122,-30,65,0.12705420792989983],[122,-30,66,0.12922587890313383],[122,-30,67,0.13160588220363714],[122,-30,68,0.13354215463215435],[122,-30,69,0.13550347451303982],[122,-30,70,0.1374818889135699],[122,-30,71,0.13946974118136807],[122,-30,72,0.14145972543161234],[122,-30,73,0.1434449297751094],[122,-30,74,0.145367279001913],[122,-30,75,0.14359082156780623],[122,-30,76,0.13858340059160806],[122,-30,77,0.13764312493164022],[122,-30,78,0.13282683328465392],[122,-30,79,0.12976693211099116],[122,-29,64,0.12593620760230947],[122,-29,65,0.1277277342656532],[122,-29,66,0.12957617713258243],[122,-29,67,0.13147068935610795],[122,-29,68,0.1334001818070027],[122,-29,69,0.1353556234084953],[122,-29,70,0.1373282609603155],[122,-29,71,0.13930966314533416],[122,-29,72,0.14111747497905847],[122,-29,73,0.14278775428019422],[122,-29,74,0.1444695768518521],[122,-29,75,0.14616158786827485],[122,-29,76,0.14373970186978174],[122,-29,77,0.14147103731633984],[122,-29,78,0.13558726026607007],[122,-29,79,0.13201710902113],[122,-28,64,0.12585145342320161],[122,-28,65,0.12762718509796345],[122,-28,66,0.12946183406087428],[122,-28,67,0.13134442786406123],[122,-28,68,0.13326330142673048],[122,-28,69,0.13520858817996442],[122,-28,70,0.13705337880526475],[122,-28,71,0.1386399779415636],[122,-28,72,0.1402418325404142],[122,-28,73,0.14186010194939105],[122,-28,74,0.1434949189205923],[122,-28,75,0.14514538040424638],[122,-28,76,0.14680955709375487],[122,-28,77,0.14694096160932632],[122,-28,78,0.14009010995833343],[122,-28,79,0.13306592581800814],[122,-27,64,0.12578220806562973],[122,-27,65,0.1275390831765571],[122,-27,66,0.12935636378987422],[122,-27,67,0.1312230237999534],[122,-27,68,0.1331268365587904],[122,-27,69,0.13469576936038874],[122,-27,70,0.13620962051392732],[122,-27,71,0.13773990528313265],[122,-27,72,0.1392895457383993],[122,-27,73,0.14086034840092393],[122,-27,74,0.14245296229559243],[122,-27,75,0.14406685957714294],[122,-27,76,0.14570033877774433],[122,-27,77,0.14735055066421815],[122,-27,78,0.14372664103453722],[122,-27,79,0.13602074421127455],[122,-26,64,0.12572309905676854],[122,-26,65,0.1274575706094041],[122,-26,66,0.1292534158589724],[122,-26,67,0.13095622082448413],[122,-26,68,0.1323896716978195],[122,-26,69,0.13383261991988546],[122,-26,70,0.13529091872143292],[122,-26,71,0.13676935776090682],[122,-26,72,0.13827155966216176],[122,-26,73,0.13979990231452513],[122,-26,74,0.14135546711490418],[122,-26,75,0.14293801327142636],[122,-26,76,0.1445459782216249],[122,-26,77,0.14617650414740901],[122,-26,78,0.1451898699468699],[122,-26,79,0.13906704108138346],[122,-25,64,0.12566554237113509],[122,-25,65,0.12737360381137897],[122,-25,66,0.12876400726795884],[122,-25,67,0.1301368371166944],[122,-25,68,0.13151377166189288],[122,-25,69,0.1329025892271463],[122,-25,70,0.13431000337549756],[122,-25,71,0.13574154679338327],[122,-25,72,0.13720145638128883],[122,-25,73,0.13869258712195504],[122,-25,74,0.14021635492158915],[122,-25,75,0.14177270855078178],[122,-25,76,0.14336013073557666],[122,-25,77,0.14497566836771192],[122,-25,78,0.1453401953667498],[122,-25,79,0.13938042542950335],[122,-24,64,0.12527958963909017],[122,-24,65,0.12661372738376037],[122,-24,66,0.1279362153829572],[122,-24,67,0.1292548083463579],[122,-24,68,0.13057937119556937],[122,-24,69,0.13191857779120858],[122,-24,70,0.1332799247469811],[122,-24,71,0.13466959764974065],[122,-24,72,0.13609234961031058],[122,-24,73,0.13755141116571729],[122,-24,74,0.13904843173679574],[122,-24,75,0.1405834527677006],[122,-24,76,0.142154912587932],[122,-24,77,0.1437596829457626],[122,-24,78,0.1453931370676306],[122,-24,79,0.13957010999745456],[122,-23,64,0.12450326347565809],[122,-23,65,0.1257831792901421],[122,-23,66,0.12705310236550618],[122,-23,67,0.1283208668677494],[122,-23,68,0.12959688588870025],[122,-23,69,0.13089065805614725],[122,-23,70,0.13221038128554125],[122,-23,71,0.13356280524936484],[122,-23,72,0.13495310705561722],[122,-23,73,0.1363848005034899],[122,-23,74,0.13785967912267502],[122,-23,75,0.1393777931164694],[122,-23,76,0.14093746023332215],[122,-23,77,0.14253531048978624],[122,-23,78,0.14416636456357476],[122,-23,79,0.1413127042559204],[122,-22,64,0.12367710368949383],[122,-22,65,0.12490482050768519],[122,-22,66,0.12612470036042428],[122,-22,67,0.12734461952269097],[122,-22,68,0.1285754670503998],[122,-22,69,0.12982748695469223],[122,-22,70,0.13110949523259216],[122,-22,71,0.1324287210956553],[122,-22,72,0.13379068214294285],[122,-22,73,0.13519909508947234],[122,-22,74,0.13665582225430808],[122,-22,75,0.1381608539171953],[122,-22,76,0.13971232654760904],[122,-22,77,0.14130657679873163],[122,-22,78,0.1429382310451594],[122,-22,79,0.14229871107775988],[122,-21,64,0.1228114399470316],[122,-21,65,0.12398850503822315],[122,-21,66,0.12516036231388744],[122,-21,67,0.12633488216626626],[122,-21,68,0.12752334552260997],[122,-21,69,0.128736656320739],[122,-21,70,0.1299841664393517],[122,-21,71,0.13127350679285224],[122,-21,72,0.13261046303675414],[122,-21,73,0.13399888866325546],[122,-21,74,0.13544065568546687],[122,-21,75,0.1369356430044636],[122,-21,76,0.13848176243889523],[122,-21,77,0.14007502227610852],[122,-21,78,0.14170962808094612],[122,-21,79,0.14162564963059138],[122,-20,64,0.12191638116406471],[122,-20,65,0.12304377786179607],[122,-20,66,0.12416901766463509],[122,-20,67,0.12529990946778047],[122,-20,68,0.1264480340172126],[122,-20,69,0.12762486693622113],[122,-20,70,0.12884021810202248],[122,-20,71,0.13010205226701374],[122,-20,72,0.13141636494496137],[122,-20,73,0.13278709748946374],[122,-20,74,0.13421609155559988],[122,-20,75,0.13570308302234513],[122,-20,76,0.13724573532961334],[122,-20,77,0.13883971205375997],[122,-20,78,0.14047878841372333],[122,-20,79,0.14062805799767517],[122,-19,64,0.12100211479829245],[122,-19,65,0.12208015126019722],[122,-19,66,0.12315942395224243],[122,-19,67,0.12424761985736948],[122,-19,68,0.12535652375245462],[122,-19,69,0.12649809591449826],[122,-19,70,0.1276825347235424],[122,-19,71,0.1289180849359885],[122,-19,72,0.13021091191600936],[122,-19,73,0.13156501695069536],[122,-19,74,0.13298219383215637],[122,-19,75,0.13446202676756913],[122,-19,76,0.13600192954524287],[122,-19,77,0.1375972257455485],[122,-19,78,0.139241269645014],[122,-19,79,0.14019893404041361],[122,-18,64,0.12007803439253455],[122,-18,65,0.12110615764075593],[122,-18,66,0.12213914253504475],[122,-18,67,0.12318449157182391],[122,-18,68,0.12425409855863155],[122,-18,69,0.12536032729722912],[122,-18,70,0.12651370841961776],[122,-18,71,0.1277227317707432],[122,-18,72,0.12899371553584327],[122,-18,73,0.13033071856918158],[122,-18,74,0.13173549610166316],[122,-18,75,0.13320749887386177],[122,-18,76,0.1347439155988778],[122,-18,77,0.1363397585108599],[122,-18,78,0.13798799160524491],[122,-18,79,0.1391881440173591],[122,-17,64,0.11914755893990002],[122,-17,65,0.1201244326876096],[122,-17,66,0.12110994428962452],[122,-17,67,0.12211135041380095],[122,-17,68,0.12314056121575365],[122,-17,69,0.1242102675047948],[122,-17,70,0.12533128551192754],[122,-17,71,0.1265123286979606],[122,-17,72,0.12775986719875884],[122,-17,73,0.12907803291479655],[122,-17,74,0.13046857042025303],[122,-17,75,0.1319308337273531],[122,-17,76,0.13346182879028437],[122,-17,77,0.13505630147474407],[122,-17,78,0.13670687055956368],[122,-17,79,0.13840420518173455],[122,-16,64,0.11819951253160656],[122,-16,65,0.11912425015234622],[122,-16,66,0.12006167172598933],[122,-16,67,0.12101873233488378],[122,-16,68,0.12200725890231935],[122,-16,69,0.12304017598004961],[122,-16,70,0.12412851730852797],[122,-16,71,0.12528117380715828],[122,-16,72,0.12650474000816012],[122,-16,73,0.12780340879373475],[122,-16,74,0.12917891461111738],[122,-16,75,0.1306305251922391],[122,-16,76,0.1321550816441854],[122,-16,77,0.13374708660858073],[122,-16,78,0.1353988400183363],[122,-16,79,0.13710062181502414],[122,-15,64,0.11722242135491596],[122,-15,65,0.11809479711348803],[122,-15,66,0.1189842902983377],[122,-15,67,0.11989750320901459],[122,-15,68,0.12084607213064841],[122,-15,69,0.12184304346601725],[122,-15,70,0.12289957604398272],[122,-15,71,0.12402466387293562],[122,-15,72,0.12522496782998163],[122,-15,73,0.12650469837745826],[122,-15,74,0.12786554948006296],[122,-15,75,0.12930668374005375],[122,-15,76,0.13082476859862857],[122,-15,77,0.13241406327404048],[122,-15,78,0.13406655592744693],[122,-15,79,0.13577215037237894],[122,-14,64,0.11620824928796653],[122,-14,65,0.11702857061451262],[122,-14,66,0.117870890021254],[122,-14,67,0.11874140861633278],[122,-14,68,0.11965145923490979],[122,-14,69,0.12061408442684016],[122,-14,70,0.1216404576029914],[122,-14,71,0.1227395806486066],[122,-14,72,0.12391810044509187],[122,-14,73,0.12518017907192505],[122,-14,74,0.12652741785831942],[122,-14,75,0.12795883529102575],[122,-14,76,0.1294708986070874],[122,-14,77,0.13105760871399277],[122,-14,78,0.13271063789090187],[122,-14,79,0.13441951954023507],[122,-13,64,0.07932228507516802],[122,-13,65,0.09394446864342465],[122,-13,66,0.10987857279870965],[122,-13,67,0.11754649820492225],[122,-13,68,0.11841992218714664],[122,-13,69,0.11935025404229843],[122,-13,70,0.12034855912408897],[122,-13,71,0.12142373793524394],[122,-13,72,0.12258232811981705],[122,-13,73,0.12382836259585636],[122,-13,74,0.12516328399092438],[122,-13,75,0.12658591537298292],[122,-13,76,0.12809248708424936],[122,-13,77,0.12967671929144683],[122,-13,78,0.13132995966899738],[122,-13,79,0.13304137543915673],[122,-12,64,0.04083859991014197],[122,-12,65,0.05030614225008894],[122,-12,66,0.060932741323432675],[122,-12,67,0.072709415944294],[122,-12,68,0.08562038165971433],[122,-12,69,0.09964074597972422],[122,-12,70,0.11473307101423016],[122,-12,71,0.12007566378419948],[122,-12,72,0.12121623570994383],[122,-12,73,0.12244782729122938],[122,-12,74,0.12377164922354776],[122,-12,75,0.12518627209969393],[122,-12,76,0.1266876487498109],[122,-12,77,0.12826919437776885],[122,-12,78,0.12992192387397197],[122,-12,79,0.13163464548553003],[122,-11,64,0.017333452907709865],[122,-11,65,0.022697969017017115],[122,-11,66,0.029010112484939392],[122,-11,67,0.0362883642257394],[122,-11,68,0.04454510132489793],[122,-11,69,0.053784769588967274],[122,-11,70,0.06400033733374019],[122,-11,71,0.07517366484520106],[122,-11,72,0.08727603389700173],[122,-11,73,0.10026876305254669],[122,-11,74,0.11410391909479503],[122,-11,75,0.12375767827374805],[122,-11,76,0.12525369171800452],[122,-11,77,0.12683181328513687],[122,-11,78,0.12848272130945504],[122,-11,79,0.13019487842715904],[122,-10,64,0.005151281571102443],[122,-10,65,0.007522997725050869],[122,-10,66,0.010595681501820983],[122,-10,67,0.014411373534548775],[122,-10,68,0.019005745691453347],[122,-10,69,0.02440674194726841],[122,-10,70,0.03063096126493273],[122,-10,71,0.037684077870072205],[122,-10,72,0.045561403837395084],[122,-10,73,0.05424850671071423],[122,-10,74,0.06372188669675757],[122,-10,75,0.07394971841383507],[122,-10,76,0.08489266171401019],[122,-10,77,0.09650474474366195],[122,-10,78,0.10873432026686063],[122,-10,79,0.12152509351185992],[122,-9,64,0.0027668455518361896],[122,-9,65,0.0035035168541720867],[122,-9,66,0.004231172838855975],[122,-9,67,0.0049535000924587624],[122,-9,68,0.005679216389440667],[122,-9,69,0.007938343075234765],[122,-9,70,0.01114013556428331],[122,-9,71,0.015003570998483722],[122,-9,72,0.019544288167622312],[122,-9,73,0.024767875705635205],[122,-9,74,0.030670561032845836],[122,-9,75,0.03723994720090914],[122,-9,76,0.04445579851823341],[122,-9,77,0.05229087617978562],[122,-9,78,0.06071182489071824],[122,-9,79,0.06968011067840851],[122,-8,64,0.0015565954722754967],[122,-8,65,0.0022821873344293707],[122,-8,66,0.0030061670133232593],[122,-8,67,0.0037315072566593602],[122,-8,68,0.004465936053723526],[122,-8,69,0.005220568490712476],[122,-8,70,0.006005251536684616],[122,-8,71,0.006828145213267762],[122,-8,72,0.007695465369451199],[122,-8,73,0.008611289034486462],[122,-8,74,0.01145752904376507],[122,-8,75,0.015199359739288104],[122,-8,76,0.019481162348727283],[122,-8,77,0.024291904711914447],[122,-8,78,0.029613829487278417],[122,-8,79,0.035423361111702606],[122,-7,64,3.526788107264681E-4],[122,-7,65,0.0010682817617773263],[122,-7,66,0.0017896271638061171],[122,-7,67,0.0025189357136470194],[122,-7,68,0.0032628741515724497],[122,-7,69,0.004031623831706492],[122,-7,70,0.0048341644541688746],[122,-7,71,0.005677853665631908],[122,-7,72,0.006568171377292235],[122,-7,73,0.007508526254316889],[122,-7,74,0.008500124332950117],[122,-7,75,0.009541899599171682],[122,-7,76,0.010630506239690918],[122,-7,77,0.011760372152635184],[122,-7,78,0.012923813181391287],[122,-7,79,0.015298717411530735],[122,-6,64,-8.412169649678332E-4],[122,-6,65,-1.345795694682397E-4],[122,-6,66,5.849804638013304E-4],[122,-6,67,0.0013188970445741242],[122,-6,68,0.002072720567175156],[122,-6,69,0.00285562389912418],[122,-6,70,0.003675646652485614],[122,-6,71,0.004539277663546948],[122,-6,72,0.00545120426856856],[122,-6,73,0.006414122740868091],[122,-6,74,0.007428609829165353],[122,-6,75,0.00849305521582592],[122,-6,76,0.009603654591703132],[122,-6,77,0.010754462922168681],[122,-6,78,0.011937507356501028],[122,-6,79,0.013142959111974727],[122,-5,64,-0.0020219483415883405],[122,-5,65,-0.0013233609036765852],[122,-5,66,-6.049667918851892E-4],[122,-5,67,1.3385079981712095E-4],[122,-5,68,8.97488939920152E-4],[122,-5,69,0.001694059344888631],[122,-5,70,0.0025306093977382647],[122,-5,71,0.0034127118291629706],[122,-5,72,0.004344222329713302],[122,-5,73,0.00532709671488193],[122,-5,74,0.006361267567445641],[122,-5,75,0.007444580162267303],[122,-5,76,0.008572787359119307],[122,-5,77,0.009739603029439919],[122,-5,78,0.01093681346318988],[122,-5,79,0.012154446084087327],[122,-4,64,-0.00318704642555204],[122,-4,65,-0.0024957362517230935],[122,-4,66,-0.0017781446165653254],[122,-4,67,-0.0010344968073819044],[122,-4,68,-2.61566695489419E-4],[122,-4,69,5.476674116449352E-4],[122,-4,70,0.0013992307687313245],[122,-4,71,0.002297753169358064],[122,-4,72,0.003246238163197844],[122,-4,73,0.004245889639946873],[122,-4,74,0.005295995689740628],[122,-4,75,0.006393869533930218],[122,-4,76,0.007534847203885917],[122,-4,77,0.008712341529465433],[122,-4,78,0.009917951882919069],[122,-4,79,0.01114162901029532],[122,-3,64,-0.004334783948217523],[122,-3,65,-0.0036501520125252164],[122,-3,66,-0.002933273765480433],[122,-3,67,-0.002185235449858526],[122,-3,68,-0.0014039794658979386],[122,-3,69,-5.835782801394142E-4],[122,-3,70,2.8096443290627867E-4],[122,-3,71,0.0011933298325032921],[122,-3,72,0.002155667820211271],[122,-3,73,0.0031684355867906857],[122,-3,74,0.004230290693821718],[122,-3,75,0.005338038474918303],[122,-3,76,0.006486633429744107],[122,-3,77,0.007669234172772588],[122,-3,78,0.008877311387917518],[122,-3,79,0.010100808131833956],[122,-2,64,-0.0054641771437499214],[122,-2,65,-0.00478582555502652],[122,-2,66,-0.00406985778765153],[122,-2,67,-0.003318233151719078],[122,-2,68,-0.0025300401613198536],[122,-2,69,-0.0017004247324084129],[122,-2,70,-8.254030647239386E-4],[122,-2,71,9.777281602451421E-5],[122,-2,72,0.001070416487556359],[122,-2,73,0.002092259978558692],[122,-2,74,0.0031613579186360375],[122,-2,75,0.0042740427689765634],[122,-2,76,0.005424930805989639],[122,-2,77,0.006606978424762341],[122,-2,78,0.007811588224526458],[122,-2,79,0.009028764236487099],[122,-1,64,-0.0065749209918672495],[122,-1,65,-0.005902678286362722],[122,-1,66,-0.005188111268608866],[122,-1,67,-0.004434057304151837],[122,-1,68,-0.00364070939265246],[122,-1,69,-0.0028042421617704267],[122,-1,70,-0.001921645414253898],[122,-1,71,-9.910684158326237E-4],[122,-1,72,-1.199845275202603E-5],[122,-1,73,0.0010146083813382888],[122,-1,74,0.002086244042812055],[122,-1,75,0.0031988128140003316],[122,-1,76,0.004346642672396126],[122,-1,77,0.005522543329352954],[122,-1,78,0.006717910417006676],[122,-1,79,0.00792287520776649],[122,0,64,-0.007667256303541582],[122,0,65,-0.007001201716029939],[122,0,66,-0.006288822820341533],[122,0,67,-0.0055338328502822],[122,0,68,-0.004737470102527975],[122,0,69,-0.0038968709768718362],[122,0,70,-0.0030099389619020873],[122,0,71,-0.0020756654414017515],[122,0,72,-0.0010942861750551764],[122,0,73,-6.739400462948236E-5],[122,0,74,0.001001992078975999],[122,0,75,0.002109401280306154],[122,0,76,0.0032489284361328185],[122,0,77,0.004413294134227251],[122,0,78,0.0055939470144293025],[122,0,79,0.00678120766619167],[122,1,64,-0.00874176773323962],[122,1,65,-0.008082255844726813],[122,1,66,-0.007373152328882014],[122,1,67,-0.006619037273767837],[122,1,68,-0.005822120133980575],[122,1,69,-0.004980412859407949],[122,1,70,-0.004092654113819545],[122,1,71,-0.0031586050893717727],[122,1,72,-0.0021791823810275654],[122,1,73,-0.0011565513389478394],[122,1,74,-9.418004171316088E-5],[122,1,75,0.0010031458827494224],[122,1,76,0.002129347277985675],[122,1,77,0.003277113928685904],[122,1,78,0.004438005005516355],[122,1,79,0.00560258693413222],[122,2,64,-0.004260896693414889],[122,2,65,-0.006585759561205002],[122,2,66,-0.008442362504460179],[122,2,67,-0.007691232499549104],[122,2,68,-0.006896504881243682],[122,2,69,-0.006056965744454516],[122,2,70,-0.0051720951490857505],[122,2,71,-0.0042423372666690025],[122,2,72,-0.0032692087786002156],[122,2,73,-0.0022553721556500877],[122,2,74,-0.0012046739673898473],[122,2,75,-1.2214844556450867E-4],[122,2,76,9.860133996410757E-4],[122,2,77,0.0021125287380943454],[122,2,78,0.003249121508922889],[122,2,79,0.004386654128299692],[122,3,64,-7.615387194257763E-4],[122,3,65,-0.0014529595540305688],[122,3,66,-0.0024113397941739135],[122,3,67,-0.0037035119714329216],[122,3,68,-0.005382143665938242],[122,3,69,-0.007128291151004476],[122,3,70,-0.006250178938915675],[122,3,71,-0.005328869853364859],[122,3,72,-0.004366389357974505],[122,3,73,-0.003365812394289657],[122,3,74,-0.002331286028064999],[122,3,75,-0.0012680217844705933],[122,3,76,-1.8225795717808653E-4],[122,3,77,9.188077594767296E-4],[122,3,78,0.002027114903632887],[122,3,79,0.0031338656738822976],[122,4,64,-3.450333836230362E-4],[122,4,65,-5.051834425215903E-4],[122,4,66,-6.312131320875821E-4],[122,4,67,-8.131690400141974E-4],[122,4,68,-0.0011262419310060544],[122,4,69,-0.0016294679358986501],[122,4,70,-0.002371788927295554],[122,4,71,-0.003393100647715861],[122,4,72,-0.004725140929804613],[122,4,73,-0.004488988725213762],[122,4,74,-0.0034749607962300958],[122,4,75,-0.0024351585143403813],[122,4,76,-0.0013758004498782652],[122,4,77,-3.0394142715741345E-4],[122,4,78,7.726218486065318E-4],[122,4,79,0.0018454697445277808],[122,5,64,7.264933874793393E-4],[122,5,65,-5.000984071668544E-6],[122,5,66,-3.7596520426280363E-4],[122,5,67,-4.996345464280366E-4],[122,5,68,-4.7365807990520556E-4],[122,5,69,-3.7875221731535565E-4],[122,5,70,-2.848750443212251E-4],[122,5,71,-2.522159233253826E-4],[122,5,72,-3.3202816743259193E-4],[122,5,73,-5.674387972762475E-4],[122,5,74,-9.94231137606643E-4],[122,5,75,-0.0016415962103543053],[122,5,76,-0.0025328491488039104],[122,5,77,-0.0015546802495762775],[122,5,78,-5.128777162595296E-4],[122,5,79,5.234613254309871E-4],[122,6,64,0.006192600872328991],[122,6,65,0.003786784941041134],[122,6,66,0.0020932750023681204],[122,6,67,9.756965861240229E-4],[122,6,68,3.139876781973835E-4],[122,6,69,5.781725321918309E-6],[122,6,70,-3.989248534476261E-5],[122,6,71,9.645602687982466E-5],[122,6,72,3.4400146510464233E-4],[122,6,73,6.408389807637031E-4],[122,6,74,9.332435345524187E-4],[122,6,75,0.0011749537486675946],[122,6,76,0.0013264842490589525],[122,6,77,0.0013544697235460365],[122,6,78,0.0012310436556019172],[122,6,79,9.332543966812226E-4],[122,7,64,0.019793674379957032],[122,7,65,0.014611578420419664],[122,7,66,0.010518257713119627],[122,7,67,0.007354647929882191],[122,7,68,0.004978506114081329],[122,7,69,0.0032659189101783745],[122,7,70,0.0021049287925417994],[122,7,71,0.001394682756483082],[122,7,72,0.0010447170787519573],[122,7,73,9.742441856782312E-4],[122,7,74,0.001111450811404605],[122,7,75,0.0013928139098032218],[122,7,76,0.0017624390924482797],[122,7,77,0.002171425317439097],[122,7,78,0.0025772588875117375],[122,7,79,0.002943239357338374],[122,8,64,0.045253639333890185],[122,8,65,0.03620421160810092],[122,8,66,0.02864016719999079],[122,8,67,0.022382073842770446],[122,8,68,0.017266918299910356],[122,8,69,0.01315004544245285],[122,8,70,0.00989894322879604],[122,8,71,0.007392607455220838],[122,8,72,0.005520974936427907],[122,8,73,0.00418431055822599],[122,8,74,0.0032925733875154824],[122,8,75,0.0027647790588146543],[122,8,76,0.002528370221323494],[122,8,77,0.0025186031772248844],[122,8,78,0.002677956415383924],[122,8,79,0.0029555651415590295],[122,9,64,0.08021183227398791],[122,9,65,0.0722298524159212],[122,9,66,0.06015599524034964],[122,9,67,0.04977556241801641],[122,9,68,0.04090996927549149],[122,9,69,0.033397238190126625],[122,9,70,0.027086512536355443],[122,9,71,0.021838006578266095],[122,9,72,0.017522849602499016],[122,9,73,0.014022757031138183],[122,9,74,0.011229590428498665],[122,9,75,0.009044850413519224],[122,9,76,0.007379133502696293],[122,9,77,0.006151574597751464],[122,9,78,0.005289290232471931],[122,9,79,0.004726833066069132],[122,10,64,0.07811616045641179],[122,10,65,0.07791087884864722],[122,10,66,0.07780211892783435],[122,10,67,0.07777928491570979],[122,10,68,0.0778352527588031],[122,10,69,0.06768634630306691],[122,10,70,0.05737182584805935],[122,10,71,0.04845212373148225],[122,10,72,0.040782974315061137],[122,10,73,0.034229791771913695],[122,10,74,0.028667751925021023],[122,10,75,0.023981655585446696],[122,10,76,0.020065644880150058],[122,10,77,0.01682282460502628],[122,10,78,0.014164826184133018],[122,10,79,0.012011341175230242],[122,11,64,0.07600715031471246],[122,11,65,0.07575145949619833],[122,11,66,0.07558936207968903],[122,11,67,0.0755100988552949],[122,11,68,0.07550647390307086],[122,11,69,0.07557671541864042],[122,11,70,0.07571847759164517],[122,11,71,0.07592871092557452],[122,11,72,0.07620369252088466],[122,11,73,0.06848506798702916],[122,11,74,0.05930997297817341],[122,11,75,0.05129435516529586],[122,11,76,0.044318314150504426],[122,11,77,0.03827048126158347],[122,11,78,0.03304792980404065],[122,11,79,0.02855595499547898],[122,12,64,0.07389197806881041],[122,12,65,0.0735854212498345],[122,12,66,0.07336920196893347],[122,12,67,0.07323261033568627],[122,12,68,0.07316850259910182],[122,12,69,0.0731750953709347],[122,12,70,0.07325006909933525],[122,12,71,0.07339044859359628],[122,12,72,0.07359263901829176],[122,12,73,0.07385246600332136],[122,12,74,0.07416521976471586],[122,12,75,0.07452570312090082],[122,12,76,0.07492828327967546],[122,12,77,0.07416030368590998],[122,12,78,0.06562850871454874],[122,12,79,0.05806805878859531],[122,13,64,0.07177898351236042],[122,13,65,0.07142151375673421],[122,13,66,0.07115082251222837],[122,13,67,0.07095646304985763],[122,13,68,0.07083146106388546],[122,13,69,0.070774036607834],[122,13,70,0.07078189661156833],[122,13,71,0.07085212989877164],[122,13,72,0.0709812509900079],[122,13,73,0.07116524600075697],[122,13,74,0.07139962053797583],[122,13,75,0.07167944949416452],[122,13,76,0.07199942863382727],[122,13,77,0.07235392786381384],[122,13,78,0.07273704607688876],[122,13,79,0.07314266745661488],[122,14,64,0.06967878237927767],[122,14,65,0.06927075890710345],[122,14,66,0.06894565769136703],[122,14,67,0.06869349604113768],[122,14,68,0.06850757075853146],[122,14,69,0.06838610297775762],[122,14,70,0.06832680819814035],[122,14,71,0.06832681120986847],[122,14,72,0.06838270078405038],[122,14,73,0.06849058418305931],[122,14,74,0.06864614140032863],[122,14,75,0.06884467904045684],[122,14,76,0.06908118375242914],[122,14,77,0.06935037513107796],[122,14,78,0.06964675800510543],[122,14,79,0.06996467403359012],[122,15,64,0.06760530664888839],[122,15,65,0.06714742702332342],[122,15,66,0.06676827108432294],[122,15,67,0.06645849558665229],[122,15,68,0.06621174904252662],[122,15,69,0.06602623521769209],[122,15,70,0.06589964648617952],[122,15,71,0.06582910462627956],[122,15,72,0.06581122997418479],[122,15,73,0.06584220774061983],[122,15,74,0.06591785140270977],[122,15,75,0.06603366309236357],[122,15,76,0.06618489091144762],[122,15,77,0.06636658311303936],[122,15,78,0.06657363909751952],[122,15,79,0.06680085718162099],[122,16,64,0.06557180529056926],[122,16,65,0.06506486325356337],[122,16,66,0.06463196881149307],[122,16,67,0.06426456605295006],[122,16,68,0.06395672380816313],[122,16,69,0.0637066123412315],[122,16,70,0.06351187855559462],[122,16,71,0.06336961741065403],[122,16,72,0.06327645808902438],[122,16,73,0.06322864432479784],[122,16,74,0.06322210880729308],[122,16,75,0.06325254159201588],[122,16,76,0.0633154524674658],[122,16,77,0.06340622724293155],[122,16,78,0.06352017793889668],[122,16,79,0.06365258687748378],[122,17,64,0.06358423872002283],[122,17,65,0.06302906655945152],[122,17,66,0.06254268768245783],[122,17,67,0.06211745469453467],[122,17,68,0.06174791624899604],[122,17,69,0.06143220017375083],[122,17,70,0.06116789915279113],[122,17,71,0.06095207601592941],[122,17,72,0.060781368259500076],[122,17,73,0.06065208346428629],[122,17,74,0.06056028552789796],[122,17,75,0.060501871654950655],[122,17,76,0.060472640073765335],[122,17,77,0.06046834847282076],[122,17,78,0.0604847631741294],[122,17,79,0.06051769908336653],[122,18,64,0.061641382053122855],[122,18,65,0.061038847629399845],[122,18,66,0.06049923093390577],[122,18,67,0.06001588776859619],[122,18,68,0.05958389679211477],[122,18,69,0.05920134144714259],[122,18,70,0.05886576309420976],[122,18,71,0.05857420208718517],[122,18,72,0.05832332098397681],[122,18,73,0.058109515211912745],[122,18,74,0.057929011109261186],[122,18,75,0.05777795129966901],[122,18,76,0.05765246739042492],[122,18,77,0.05754874001819642],[122,18,78,0.05746304629748131],[122,18,79,0.05739179475669158],[122,19,64,0.058973703764473535],[122,19,65,0.058566788582721345],[122,19,66,0.05816525813897699],[122,19,67,0.05777588991182198],[122,19,68,0.057403699539828074],[122,19,69,0.05700672563026519],[122,19,70,0.05659810704801101],[122,19,71,0.056228578228214976],[122,19,72,0.055894856503686696],[122,19,73,0.055593462530267396],[122,19,74,0.05532082946261857],[122,19,75,0.05507339594549731],[122,19,76,0.05484768293568583],[122,19,77,0.054640354410708136],[122,19,78,0.05444826205968339],[122,19,79,0.05426847408832521],[122,20,64,0.05535892661135848],[122,20,65,0.05489575432691014],[122,20,66,0.05444413322973901],[122,20,67,0.05400978627045955],[122,20,68,0.05359719969130291],[122,20,69,0.053208594345098434],[122,20,70,0.05284624631887433],[122,20,71,0.05251239863564452],[122,20,72,0.052209127741325245],[122,20,73,0.051938229162040744],[122,20,74,0.05170112238940831],[122,20,75,0.051498775001933866],[122,20,76,0.05133164598149557],[122,20,77,0.051199648135617726],[122,20,78,0.0511021294898315],[122,20,79,0.051037873469853674],[122,21,64,0.05164724229812623],[122,21,65,0.05112654693652427],[122,21,66,0.05062402427939892],[122,21,67,0.05014432349834235],[122,21,68,0.04969137920611628],[122,21,69,0.04926750719197978],[122,21,70,0.04887506768929099],[122,21,71,0.048516341311103446],[122,21,72,0.04819337926909204],[122,21,73,0.04790787628593723],[122,21,74,0.04766106625044296],[122,21,75,0.04745364060573705],[122,21,76,0.047285689402600285],[122,21,77,0.04715666489297163],[122,21,78,0.04706536748407438],[122,21,79,0.04700995382148316],[122,22,64,0.04785953638719835],[122,22,65,0.04728004448847796],[122,22,66,0.046725698657393386],[122,22,67,0.046200079466433584],[122,22,68,0.04570655760485416],[122,22,69,0.045247521559019024],[122,22,70,0.04482538291715014],[122,22,71,0.04444241862033161],[122,22,72,0.0441006069605948],[122,22,73,0.04380148966573216],[122,22,74,0.04354606010948167],[122,22,75,0.04333467761758907],[122,22,76,0.04316700777312756],[122,22,77,0.04304198855911817],[122,22,78,0.042957822114138546],[122,22,79,0.04291199181738601],[122,23,64,0.04401860641393324],[122,23,65,0.04337905511574147],[122,23,66,0.042771852745277325],[122,23,67,0.042199539879307406],[122,23,68,0.04166492089192793],[122,23,69,0.04117043033628685],[122,23,70,0.04071849459927188],[122,23,71,0.04031134326789926],[122,23,72,0.039950833247752005],[122,23,73,0.03963830216246944],[122,23,74,0.03937445106008799],[122,23,75,0.039159256375191305],[122,23,76,0.03899191102046252],[122,23,77,0.03887079440818772],[122,23,78,0.038793471132810495],[122,23,79,0.038756717979994866],[122,24,64,0.040148236209646235],[122,24,65,0.03944739271528825],[122,24,66,0.03878619555458124],[122,24,67,0.03816619606234665],[122,24,68,0.03758963965408096],[122,24,69,0.03705897666952754],[122,24,70,0.03657660922458508],[122,24,71,0.036144675105308215],[122,24,72,0.035764862547701344],[122,24,73,0.03543825723059912],[122,24,74,0.03516522149262445],[122,24,75,0.03494530569943053],[122,24,76,0.03477719160464579],[122,24,77,0.03465866746804239],[122,24,78,0.03458663461876748],[122,24,79,0.034557145080243636],[122,25,64,0.03627230803778734],[122,25,65,0.03550898950613836],[122,25,66,0.03479256783526838],[122,25,67,0.03412367644952256],[122,25,68,0.03350401861658832],[122,25,69,0.03293602733536916],[122,25,70,0.03242204003825299],[122,25,71,0.03196405893206512],[122,25,72,0.031563559096638806],[122,25,73,0.03122133140986032],[122,25,74,0.030937360293782464],[122,25,75,0.030710736184661053],[122,25,76,0.03053960254058157],[122,25,77,0.030421137114631354],[122,25,78,0.030351567140672202],[122,25,79,0.03032621800290736],[122,26,64,0.03241395397506199],[122,26,65,0.03158704683697796],[122,26,66,0.03081409802528118],[122,26,67,0.030094913057097664],[122,26,68,0.02943067886140282],[122,26,69,0.02882377597737156],[122,26,70,0.02827643649870029],[122,26,71,0.02779048518175823],[122,26,72,0.027367143562021943],[122,26,73,0.027006871143562577],[122,26,74,0.026709243638672792],[122,26,75,0.026472868137197497],[122,26,76,0.026295334990738682],[122,26,77,0.026173206106556046],[122,26,78,0.026102039260988228],[122,26,79,0.026076447962788858],[122,27,64,0.028594748147379587],[122,27,65,0.027703225824223212],[122,27,66,0.026872396574186726],[122,27,67,0.026101344410034453],[122,27,68,0.025390774089671733],[122,27,69,0.024742977482812657],[122,27,70,0.024160041487418096],[122,27,71,0.02364357451680468],[122,27,72,0.02319450930632813],[122,27,73,0.02281294463413994],[122,27,74,0.02249802591503022],[122,27,75,0.022247864524375802],[122,27,76,0.022059495610919543],[122,27,77,0.021928874063379115],[122,27,78,0.02185090820798967],[122,27,79,0.021819530732168708],[122,28,64,0.024833941527232353],[122,28,65,0.023876879500544783],[122,28,66,0.022986790274606275],[122,28,67,0.022162156489024087],[122,28,68,0.02140324241149316],[122,28,69,0.02071221487876202],[122,28,70,0.020090977527216454],[122,28,71,0.01954088744750968],[122,28,72,0.019062559262843164],[122,28,73,0.018655709528660844],[122,28,74,0.018319041394702664],[122,28,75,0.01805016936529637],[122,28,76,0.017845583892932837],[122,28,77,0.01770065544436417],[122,28,78,0.017609677588874405],[122,28,79,0.017565948575071075],[122,29,64,0.021147741018368624],[122,29,65,0.02012432817454159],[122,29,66,0.019173598257498335],[122,29,67,0.018293563290161838],[122,29,68,0.017484095171504226],[122,29,69,0.016747200153194877],[122,29,70,0.016084563293156585],[122,29,71,0.01549726012084737],[122,29,72,0.014985564414721115],[122,29,73,0.0145487972584501],[122,29,74,0.014185217299370915],[122,29,75,0.013891952025892948],[122,29,76,0.01366496977859415],[122,29,77,0.013499092113120793],[122,29,78,0.013388046042899194],[122,29,79,0.01332455560603974],[122,30,64,0.01754863976244792],[122,30,65,0.016458185139506424],[122,30,66,0.015445456972934533],[122,30,67,0.014508134482463301],[122,30,68,0.013645750438478856],[122,30,69,0.012860116751429996],[122,30,70,0.012152668268051633],[122,30,71,0.011524174212963702],[122,30,72,0.01097455187546512],[122,30,73,0.010502722079116714],[122,30,74,0.010106506341215071],[122,30,75,0.00978256552226239],[122,30,76,0.009526379663645924],[122,30,77,0.00933226861553713],[122,30,78,0.009193452967495477],[122,30,79,0.009102154711296937],[122,31,64,0.014046193823353726],[122,31,65,0.012888187309891315],[122,31,66,0.01181220778792699],[122,31,67,0.010815742404655224],[122,31,68,0.009898041495117907],[122,31,69,0.00906069159277981],[122,31,70,0.008304850240856773],[122,31,71,0.007630961754347646],[122,31,72,0.007038578741764513],[122,31,73,0.006526225471145791],[122,31,74,0.006091302972711821],[122,31,75,0.005730035664540534],[122,31,76,0.00543745918706442],[122,31,77,0.005207449037486145],[122,31,78,0.005032789507257259],[122,31,79,0.0049052823443540075],[122,32,64,0.010648487742102569],[122,32,65,0.009422734454805595],[122,32,66,0.00828251224052913],[122,32,67,0.0072252550500260075],[122,32,68,0.0062499888723139075],[122,32,69,0.005358047379476087],[122,32,70,0.004550289026357937],[122,32,71,0.0038268212970147594],[122,32,72,0.0031868316291318445],[122,32,73,0.002628459827717044],[122,32,74,0.0021487118477378593],[122,32,75,0.0017434147215499097],[122,32,76,0.0014072123087406384],[122,32,77,0.0011336014537451362],[122,32,78,9.150080510619208E-4],[122,32,79,7.42902438790045E-4],[122,33,64,0.007358985010186634],[122,33,65,0.006065611628734761],[122,33,66,0.00486044942398836],[122,33,67,0.0037410109767231498],[122,33,68,0.002706155185122642],[122,33,69,0.0017569398945266582],[122,33,70,8.939089216589198E-4],[122,33,71,1.1682839340652567E-4],[122,33,72,-5.754717987407097E-4],[122,33,73,-0.001185215784098996],[122,33,74,-0.0017157588686267141],[122,33,75,-0.002171624292491844],[122,33,76,-0.002558499915700208],[122,33,77,-0.0028831952471898847],[122,33,78,-0.0031535593152348705],[122,33,79,-0.003378359953198107],[122,34,64,0.004175607132976838],[122,34,65,0.002815038960667591],[122,34,66,0.0015445383826129875],[122,34,67,3.618156092110393E-4],[122,34,68,-7.343836795814544E-4],[122,34,69,-0.0017432949359570027],[122,34,70,-0.0026646973113030464],[122,34,71,-0.0034991623689018623],[122,34,72,-0.004248201507064524],[122,34,73,-0.004914373665462958],[122,34,74,-0.0055013534527223506],[122,34,75,-0.006013959930251852],[122,34,76,-0.006458146378507502],[122,34,77,-0.006840951457229321],[122,34,78,-0.007170412250069987],[122,34,79,-0.007455439756899568],[122,35,64,0.0010903185031569354],[122,35,65,-3.367539969091943E-4],[122,35,66,-0.00167269685610906],[122,35,67,-0.002919502483916611],[122,35,68,-0.004078490844753466],[122,35,69,-0.0051492017147958275],[122,35,70,-0.006131737291275866],[122,35,71,-0.007026994070196488],[122,35,72,-0.007836799198848242],[122,35,73,-0.008564008390608464],[122,35,74,-0.009212565544486519],[122,35,75,-0.009787524304558988],[122,35,76,-0.010295031881488646],[122,35,77,-0.010742275539657268],[122,35,78,-0.01113739222850108],[122,35,79,-0.0114893419059626],[122,36,64,-0.001911233677207838],[122,36,65,-0.003403900118588459],[122,36,66,-0.004805110265491303],[122,36,67,-0.006116485752825595],[122,36,68,-0.007339374224453747],[122,36,69,-0.00847362344883729],[122,36,70,-0.009519649399840664],[122,36,71,-0.010478650625781835],[122,36,72,-0.011352734354414766],[122,36,73,-0.012145005576756554],[122,36,74,-0.012859619253212664],[122,36,75,-0.013501795873786002],[122,36,76,-0.01407780068699092],[122,36,77,-0.014594886989391403],[122,36,78,-0.015061203938933123],[122,36,79,-0.015485669421028978],[122,37,64,-0.004850022961566833],[122,37,65,-0.006407211315394288],[122,37,66,-0.007873263414752871],[122,37,67,-0.009249390914161005],[122,37,68,-0.010536944512075095],[122,37,69,-0.011736075412132807],[122,37,70,-0.012847493577401696],[122,37,71,-0.013872665400751135],[122,37,72,-0.014813931304490222],[122,37,73,-0.01567458775369929],[122,37,74,-0.016458933823886933],[122,37,75,-0.017172282547841974],[122,37,76,-0.017820937345445945],[122,37,77,-0.018412133913761276],[122,37,78,-0.018953948022430972],[122,37,79,-0.019455169721947694],[122,38,64,-0.007753071103222484],[122,38,65,-0.009373610415364539],[122,38,66,-0.010903865616933956],[122,38,67,-0.012344639851083286],[122,38,68,-0.013697279218399677],[122,38,69,-0.014962225566113685],[122,38,70,-0.01614045208324859],[122,38,71,-0.017233646809248156],[122,38,72,-0.018244324537458098],[122,38,73,-0.019175904447713298],[122,38,74,-0.020032753601504607],[122,38,75,-0.020820196513992983],[122,38,76,-0.021544491092740967],[122,38,77,-0.021266810222301407],[122,38,78,-0.019470171846090397],[122,38,79,-0.017676724971597727],[122,39,64,-0.010635595696175957],[122,39,65,-0.012318079372354244],[122,39,66,-0.01391159336231358],[122,39,67,-0.01541653718384588],[122,39,68,-0.016834253653565886],[122,39,69,-0.018165470519705018],[122,39,70,-0.019411398554912945],[122,39,71,-0.02057390416063764],[122,39,72,-0.02165561906359341],[122,39,73,-0.022660016860241668],[122,39,74,-0.023591456530697382],[122,39,75,-0.022221467163687048],[122,39,76,-0.020482472668688544],[122,39,77,-0.01872964544982205],[122,39,78,-0.016972190990654838],[122,39,79,-0.015219841294563063],[122,40,64,-0.013498316953033454],[122,40,65,-0.015240962888167463],[122,40,66,-0.016896390550754353],[122,40,67,-0.018464569132589967],[122,40,68,-0.01994683889106233],[122,40,69,-0.02134422983320753],[122,40,70,-0.022658183924480487],[122,40,71,-0.023890719604047234],[122,40,72,-0.02460705550987633],[122,40,73,-0.022989284541189543],[122,40,74,-0.02133677750482264],[122,40,75,-0.01965653498014895],[122,40,76,-0.017956274885488375],[122,40,77,-0.01624438635946057],[122,40,78,-0.014529852462483221],[122,40,79,-0.01282214213952702],[122,41,64,-0.016342564456573887],[122,41,65,-0.018143283189275085],[122,41,66,-0.019858927157884284],[122,41,67,-0.02148898556255894],[122,41,68,-0.023034797218108277],[122,41,69,-0.024497727528266858],[122,41,70,-0.02502647961036784],[122,41,71,-0.023525033491940642],[122,41,72,-0.021979827223308386],[122,41,73,-0.020396441274232964],[122,41,74,-0.01855840395593573],[122,41,75,-0.01664104863781331],[122,41,76,-0.014721377891310157],[122,41,77,-0.012806359604045853],[122,41,78,-0.010903433779949553],[122,41,79,-0.009020416347338269],[122,42,64,-0.019170066426324118],[122,42,65,-0.021026549138761536],[122,42,66,-0.022800431386565328],[122,42,67,-0.02449065923730924],[122,42,68,-0.02517981860376545],[122,42,69,-0.023650364315766198],[122,42,70,-0.021790651108301973],[122,42,71,-0.019904295314052328],[122,42,72,-0.017995696454879404],[122,42,73,-0.01606965312001773],[122,42,74,-0.014131429501269832],[122,42,75,-0.012186790997965448],[122,42,76,-0.010242009058279211],[122,42,77,-0.008303835502478017],[122,42,78,-0.0063794466493148246],[122,42,79,-0.004476357637149411],[122,43,64,-0.02198193422018971],[122,43,65,-0.02389175304888867],[122,43,66,-0.02490335779068176],[122,43,67,-0.02310417211073467],[122,43,68,-0.021267716713749968],[122,43,69,-0.019398432467936006],[122,43,70,-0.017500649678401585],[122,43,71,-0.015578743957319664],[122,43,72,-0.013637274647213104],[122,43,73,-0.011681092662839144],[122,43,74,-0.009715417723506375],[122,43,75,-0.007745885031205022],[122,43,76,-0.005778561531512608],[122,43,77,-0.003819931972989376],[122,43,78,-0.001876855056176913],[122,43,79,4.350996656553074E-5],[122,44,64,-0.024353568631109702],[122,44,65,-0.022590867671421957],[122,44,66,-0.02078813990895646],[122,44,67,-0.018945723095406302],[122,44,68,-0.01706749831324802],[122,44,69,-0.01515849543168489],[122,44,70,-0.01322349049353037],[122,44,71,-0.011267158934397474],[122,44,72,-0.00929422629314148],[122,44,73,-0.007309588661746966],[122,44,74,-0.0053184028125018035],[122,44,75,-0.003326146023900133],[122,44,76,-0.001338645708411325],[122,44,77,6.379209758599866E-4],[122,44,78,0.0025970572720352384],[122,44,79,0.004532006401919346],[122,45,64,-0.020346106736319227],[122,45,65,-0.01853701357412506],[122,45,66,-0.01669001739797147],[122,45,67,-0.014804784331339816],[122,45,68,-0.01288530915388808],[122,45,69,-0.010937274049290097],[122,45,70,-0.008965947082358023],[122,45,71,-0.006976333307416211],[122,45,72,-0.004973339690864671],[122,45,73,-0.0029619100209217165],[122,45,74,-9.471297041064271E-4],[122,45,75,0.0010656995681397287],[122,45,76,0.003071015217247885],[122,45,77,0.005062979094978374],[122,45,78,0.007035492499727802],[122,45,79,0.008982240599946022],[122,46,64,-0.016356758637257395],[122,46,65,-0.014501905440094134],[122,46,66,-0.012611363893246004],[122,46,67,-0.010684088749895893],[122,46,68,-0.008724213880187726],[122,46,69,-0.006738139259507596],[122,46,70,-0.004731675456768527],[122,46,71,-0.002710192791344046],[122,46,72,-6.788018548831832E-4],[122,46,73,0.0013574957527611668],[122,46,74,0.0033936866159752473],[122,46,75,0.005424654682537496],[122,46,76,0.007445120405292343],[122,46,77,0.009449609742249725],[122,46,78,0.011432452834249634],[122,46,79,0.013387812107559146],[122,47,64,-0.0123870468668742],[122,47,65,-0.010487542365027315],[122,47,66,-0.008554607640374565],[122,47,67,-0.006586466528220568],[122,47,68,-0.004587425928221771],[122,47,69,-0.002564668752464577],[122,47,70,-5.246003949185155E-4],[122,47,71,0.0015270042238416455],[122,47,72,0.003584803684002508],[122,47,73,0.005643722621698124],[122,47,74,0.007698813999737056],[122,47,75,0.009745151197166287],[122,47,76,0.011777749937944478],[122,47,77,0.013791519998430864],[122,47,78,0.015781246555825443],[122,47,79,0.017741600966950086],[122,48,64,-0.008455595568796223],[122,48,65,-0.006512645838280632],[122,48,66,-0.004538474713060443],[122,48,67,-0.00253056861447501],[122,48,68,-4.934419493456096E-4],[122,48,69,0.0015648824911070492],[122,48,70,0.0036373560815560536],[122,48,71,0.005717759788536995],[122,48,72,0.007800490394509684],[122,48,73,0.009880375953349032],[122,48,74,0.011952520712509527],[122,48,75,0.014012179652422881],[122,48,76,0.016054662710135743],[122,48,77,0.018075268672909234],[122,48,78,0.020069248649039115],[122,48,79,0.022031798949339074],[122,49,64,-0.004583569355171018],[122,49,65,-0.002598391669597458],[122,49,66,-5.84057129988035E-4],[122,49,67,0.0014626795486622618],[122,49,68,0.0035370638267010557],[122,49,69,0.005630187536473774],[122,49,70,0.0077343171937021985],[122,49,71,0.04917561558708577],[122,49,72,0.05967971355209229],[122,49,73,0.07013679261787623],[122,49,74,0.08052057291971754],[122,49,75,0.09080640021637618],[122,49,76,0.10097071722168088],[122,49,77,0.02228673855150484],[122,49,78,0.024283408895395122],[122,49,79,0.02598175955873686],[122,50,64,-0.003947010351712374],[122,50,65,0.006183661922177919],[122,50,66,0.01644966766493068],[122,50,67,0.02686861335594642],[122,50,68,0.037413028055975024],[122,50,69,0.04803137300016406],[122,50,70,0.058679001882424385],[122,50,71,0.06931753529992096],[122,50,72,0.07991368028583196],[122,50,73,0.09043818316732373],[122,50,74,0.10086492030166545],[122,50,75,0.11117013023831628],[122,50,76,0.12133178963879308],[122,50,77,0.1309721367827906],[122,50,78,0.13908446253524864],[122,50,79,0.029615171383673044],[122,51,64,0.01455485278716408],[122,51,65,0.024880020813401585],[122,51,66,0.035328784071038025],[122,51,67,0.04592185764705231],[122,51,68,0.05663003269532465],[122,51,69,0.06739694760827657],[122,51,70,0.07817419972794734],[122,51,71,0.08892073339477385],[122,51,72,0.09960157534908258],[122,51,73,0.11018670021768918],[122,51,74,0.12065003130955286],[122,51,75,0.13040641235691194],[122,51,76,0.13918576608976413],[122,51,77,0.14779699150267103],[122,51,78,0.15624610988067628],[122,51,79,0.16453902897625056],[122,52,64,0.03251449685408239],[122,52,65,0.04302055029562619],[122,52,66,0.05363993641227909],[122,52,67,0.06439623896626696],[122,52,68,0.07525841262403983],[122,52,69,0.08616530637776734],[122,52,70,0.09706475877934334],[122,52,71,0.10791299892080676],[122,52,72,0.11816335614203657],[122,52,73,0.12773549378012686],[122,52,74,0.13713237602773773],[122,52,75,0.1463616642426888],[122,52,76,0.15542894284569944],[122,52,77,0.1643384091404126],[122,52,78,0.1730934138013036],[122,52,79,0.18169685300622745],[122,53,64,0.04680067545602365],[122,53,65,0.05859639685805479],[122,53,66,0.07010763028990905],[122,53,67,0.08128755446617832],[122,53,68,0.0921489525320583],[122,53,69,0.10273801172435712],[122,53,70,0.11309154660464447],[122,53,71,0.12323765851837198],[122,53,72,0.13319722259560005],[122,53,73,0.1429852421803922],[122,53,74,0.1526120638786159],[122,53,75,0.16208444838467437],[122,53,76,0.1714064938956852],[122,53,77,0.18058041036708194],[122,53,78,0.1896071441682057],[122,53,79,0.19848685389216109],[122,54,64,0.06051513692352929],[122,54,65,0.07244598431759991],[122,54,66,0.08409402601367978],[122,54,67,0.0954098978726451],[122,54,68,0.10640801129773389],[122,54,69,0.11713871152802612],[122,54,70,0.12764204185393846],[122,54,71,0.13794839955321836],[122,54,72,0.14808009775103267],[122,54,73,0.1535480004715561],[122,54,74,0.14996082661079033],[122,54,75,0.15790597434046202],[122,54,76,0.17846238564288783],[122,54,77,0.19650213235465366],[122,54,78,0.20576408043195343],[122,54,79,0.2148833495849774],[122,55,64,0.07424211427249507],[122,55,65,0.08629216234349131],[122,55,66,0.09805881056241011],[122,55,67,0.10949057631277925],[122,55,68,0.12060357550863088],[122,55,69,0.13145212540510004],[122,55,70,0.14207939368779318],[122,55,71,0.1260247048201715],[122,55,72,0.1048042098710403],[122,55,73,0.09050411901604491],[122,55,74,0.08808644909370024],[122,55,75,0.09549863941214753],[122,55,76,0.11640490772942391],[122,55,77,0.1456745625977475],[122,55,78,0.1792125282622072],[122,55,79,0.21548285664823147],[122,56,64,0.08795263914638445],[122,56,65,0.08825271672971437],[122,56,66,0.09988965466318696],[122,56,67,0.11403386329489461],[122,56,68,0.11930456831070456],[122,56,69,0.11067481187893999],[122,56,70,0.08988618427562739],[122,56,71,0.06817519062876398],[122,56,72,0.04547163381913799],[122,56,73,0.031702904208743186],[122,56,74,0.029464356927641627],[122,56,75,0.037462551461727105],[122,56,76,0.05874475867000584],[122,56,77,0.08820915266370974],[122,56,78,0.12172571965279248],[122,56,79,0.159248172879228],[122,57,64,0.024996994931805287],[122,57,65,0.024840103745594318],[122,57,66,0.036324010279572036],[122,57,67,0.05002878514918287],[122,57,68,0.0558163586625599],[122,57,69,0.046231021080429965],[122,57,70,0.025741874167382602],[122,57,71,0.003412607804940006],[122,57,72,-0.0054793831829232096],[122,57,73,-0.009393344296859153],[122,57,74,-0.007822649854117231],[122,57,75,-0.005141365403818937],[122,57,76,0.0013918489593897955],[122,57,77,0.02276587730027719],[122,57,78,0.05647367318998578],[122,57,79,0.09390106098456007],[122,58,64,0.007981585788304124],[122,58,65,0.00606539173543961],[122,58,66,0.007849122663554304],[122,58,67,0.010117882125920376],[122,58,68,0.011726203202406062],[122,58,69,0.008742732057862385],[122,58,70,0.0032310738322472265],[122,58,71,-0.002470319104915401],[122,58,72,-0.00872553443688403],[122,58,73,-0.012429667033804933],[122,58,74,-0.010586929362694295],[122,58,75,-0.0076426586622992615],[122,58,76,-0.0020412658782822416],[122,58,77,0.006784021412025298],[122,58,78,0.014923024738713556],[122,58,79,0.041944162628249064],[122,59,64,-0.006932725522659268],[122,59,65,-0.0094546491646372],[122,59,66,-0.008768623269160732],[122,59,67,-0.006110876649833421],[122,59,68,-0.005077288847452801],[122,59,69,-0.007650317956808612],[122,59,70,-0.013335094240509585],[122,59,71,-0.01931298266868294],[122,59,72,-0.024456439653809094],[122,59,73,-0.028364006346587638],[122,59,74,-0.026187128488897444],[122,59,75,-0.023013165849632825],[122,59,76,-0.017430661036084705],[122,59,77,-0.008595433601886781],[122,59,78,-8.724088181547499E-4],[122,59,79,0.007603334518848222],[122,60,64,-0.02580014098083049],[122,60,65,-0.028359947953139755],[122,60,66,-0.027410062228040422],[122,60,67,-0.02532385482274779],[122,60,68,-0.02425659570836858],[122,60,69,-0.026626706714316373],[122,60,70,-0.03261718168256943],[122,60,71,-0.03932446365483616],[122,60,72,-0.04369665936638442],[122,60,73,-0.04604480483878268],[122,60,74,-0.04490159197647781],[122,60,75,-0.04103279614307897],[122,60,76,-0.035371774367581835],[122,60,77,-0.027146814920337683],[122,60,78,-0.01902056384733784],[122,60,79,-0.01047922923596031],[122,61,64,-0.03731388904173148],[122,61,65,-0.039748806541088574],[122,61,66,-0.03891323651003191],[122,61,67,-0.03820517390376843],[122,61,68,-0.03721773636835588],[122,61,69,-0.040624075920587394],[122,61,70,-0.046946539696962934],[122,61,71,-0.05389618141925229],[122,61,72,-0.0590184743918323],[122,61,73,-0.06045812505969988],[122,61,74,-0.05988735483855661],[122,61,75,-0.05561935574768224],[122,61,76,-0.04850116393173377],[122,61,77,-0.0406453942486268],[122,61,78,-0.03178245006300493],[122,61,79,-0.02247171298779383],[122,62,64,-0.0532817451237913],[122,62,65,-0.05516864709090736],[122,62,66,-0.055087995434622714],[122,62,67,-0.05378082777538245],[122,62,68,-0.05284736678170456],[122,62,69,-0.0556871216366259],[122,62,70,-0.06197442935240875],[122,62,71,-0.06882928865049952],[122,62,72,-0.07395722304566603],[122,62,73,-0.07648794719732427],[122,62,74,-0.07568813598165894],[122,62,75,-0.0714574957493844],[122,62,76,-0.0643585015015729],[122,62,77,-0.056558154515644866],[122,62,78,-0.04716030836311866],[122,62,79,-0.03771098283645221],[122,63,64,-0.09095536995476791],[122,63,65,-0.09264588142872254],[122,63,66,-0.09262066527102701],[122,63,67,-0.09060782328921435],[122,63,68,-0.08952474577816777],[122,63,69,-0.09272951408075829],[122,63,70,-0.09856858202193049],[122,63,71,-0.10436516813002805],[122,63,72,-0.1093837909993337],[122,63,73,-0.11199108315683293],[122,63,74,-0.11204310313416291],[122,63,75,-0.10749819101052359],[122,63,76,-0.10026300270475749],[122,63,77,-0.09206148937454921],[122,63,78,-0.08200906623274097],[122,63,79,-0.07201937766911522],[122,64,64,-0.10206008129578066],[122,64,65,-0.10420606429165827],[122,64,66,-0.10404316005674162],[122,64,67,-0.10227009432047098],[122,64,68,-0.10179034534388907],[122,64,69,-0.10507357467950196],[122,64,70,-0.11127428473912691],[122,64,71,-0.11675652096633296],[122,64,72,-0.12139396033096891],[122,64,73,-0.12496355616657084],[122,64,74,-0.125043922908887],[122,64,75,-0.1203169906333535],[122,64,76,-0.11341212372622639],[122,64,77,-0.10511172073224248],[122,64,78,-0.09548987493989813],[122,64,79,-0.08490782483504125],[122,65,64,-0.11725158016655361],[122,65,65,-0.11949285842938324],[122,65,66,-0.11922659188469115],[122,65,67,-0.11768229034240611],[122,65,68,-0.11779956314049152],[122,65,69,-0.12043834198748397],[122,65,70,-0.12697594991125974],[122,65,71,-0.13243382439357276],[122,65,72,-0.13766364201180611],[122,65,73,-0.1415097247693118],[122,65,74,-0.14131144126171127],[122,65,75,-0.13667247354143777],[122,65,76,-0.12904401013950595],[122,65,77,-0.1213505158163805],[122,65,78,-0.11148526501465482],[122,65,79,-0.10068668803750562],[122,66,64,-0.1345028419046029],[122,66,65,-0.13660990428737055],[122,66,66,-0.1372218011344315],[122,66,67,-0.13583331557829342],[122,66,68,-0.13521510327578132],[122,66,69,-0.13821648862833946],[122,66,70,-0.144470264359564],[122,66,71,-0.14992164358608628],[122,66,72,-0.15539919390805773],[122,66,73,-0.15979529152978658],[122,66,74,-0.15990300757769135],[122,66,75,-0.15534401616614416],[122,66,76,-0.1482950892774025],[122,66,77,-0.13974048682523135],[122,66,78,-0.12935050375695376],[122,66,79,-0.11856847558871712],[122,67,64,-0.15031546095896028],[122,67,65,-0.15293718661052583],[122,67,66,-0.15361419478978133],[122,67,67,-0.15197617116083426],[122,67,68,-0.15131613912829783],[122,67,69,-0.1534118850099737],[122,67,70,-0.15956011518849647],[122,67,71,-0.16523128680200197],[122,67,72,-0.17137188578540266],[122,67,73,-0.17611673145779314],[122,67,74,-0.17582973028634594],[122,67,75,-0.17189445035595866],[122,67,76,-0.1652949416992868],[122,67,77,-0.15626984229161248],[122,67,78,-0.14614168774364536],[122,67,79,-0.13567781023191822],[122,68,64,-0.1947805422105032],[122,68,65,-0.1976719754044755],[122,68,66,-0.197923997725813],[122,68,67,-0.19709002470235254],[122,68,68,-0.195295202832055],[122,68,69,-0.1976515893951688],[122,68,70,-0.20307683010006536],[122,68,71,-0.2087360455656726],[122,68,72,-0.21485940951829235],[122,68,73,-0.22003715093084072],[122,68,74,-0.2201947221406209],[122,68,75,-0.2165502344485855],[122,68,76,-0.20926760108865333],[122,68,77,-0.20051804750658342],[122,68,78,-0.19072922741200782],[122,68,79,-0.18032601782289875],[122,69,64,-0.21278919738470314],[122,69,65,-0.21446542891559844],[122,69,66,-0.21344521631508848],[122,69,67,-0.21080133781810115],[122,69,68,-0.20843898419949375],[122,69,69,-0.20936204000507522],[122,69,70,-0.21401395751299435],[122,69,71,-0.22062036981785327],[122,69,72,-0.22775858269383306],[122,69,73,-0.2336039033786182],[122,69,74,-0.23443667802425588],[122,69,75,-0.23037713243806324],[122,69,76,-0.22312307543390228],[122,69,77,-0.2142095044554388],[122,69,78,-0.20473853583883217],[122,69,79,-0.19354246393864424],[122,70,64,-0.227488575288552],[122,70,65,-0.22930194682453267],[122,70,66,-0.228200725056534],[122,70,67,-0.22546131104493844],[122,70,68,-0.22368449530297582],[122,70,69,-0.22487785147655714],[122,70,70,-0.22945754070924104],[122,70,71,-0.2358423853116644],[122,70,72,-0.24262415041832572],[122,70,73,-0.24807902389981384],[122,70,74,-0.2489020853835071],[122,70,75,-0.24474266230631775],[122,70,76,-0.23799202438186415],[122,70,77,-0.22975177608450406],[122,70,78,-0.22000296009012477],[122,70,79,-0.20956134870367268],[122,71,64,-0.23924565023683603],[122,71,65,-0.2415654779764452],[122,71,66,-0.24012226758185173],[122,71,67,-0.23724776252091953],[122,71,68,-0.2356363743831669],[122,71,69,-0.23717511085638518],[122,71,70,-0.24256789781911023],[122,71,71,-0.2483462933247096],[122,71,72,-0.25488808183959516],[122,71,73,-0.26025572923194995],[122,71,74,-0.26117244900776115],[122,71,75,-0.25723799213742543],[122,71,76,-0.25018622605020413],[122,71,77,-0.24257326747955485],[122,71,78,-0.23304267757581118],[122,71,79,-0.2230207145111303],[122,72,64,-0.25424478561731356],[122,72,65,-0.2560097802577945],[122,72,66,-0.2553042834809144],[122,72,67,-0.25217916237184906],[122,72,68,-0.24932181421445893],[122,72,69,-0.2525455563117986],[122,72,70,-0.25765660833812126],[122,72,71,-0.2639066505434976],[122,72,72,-0.27022978557276883],[122,72,73,-0.27516983840417314],[122,72,74,-0.2757511017022811],[122,72,75,-0.27280141845182676],[122,72,76,-0.26623972980422184],[122,72,77,-0.2578941223522324],[122,72,78,-0.2486557862171957],[122,72,79,-0.2390449634566956],[122,73,64,-0.27283786395229453],[122,73,65,-0.27424257373716465],[122,73,66,-0.2737194747085297],[122,73,67,-0.26998519493937045],[122,73,68,-0.2673017251303987],[122,73,69,-0.2698813731315592],[122,73,70,-0.2740031187693268],[122,73,71,-0.27924415243682593],[122,73,72,-0.28420761388110843],[122,73,73,-0.2878475327187152],[122,73,74,-0.28790835517259145],[122,73,75,-0.28532693508739465],[122,73,76,-0.27963358076941414],[122,73,77,-0.2719112831296098],[122,73,78,-0.26520060856861855],[122,73,79,-0.2571519583672865],[122,74,64,-0.29042926224826116],[122,74,65,-0.29161950083016247],[122,74,66,-0.29010673602505294],[122,74,67,-0.2864798150646631],[122,74,68,-0.28483478536711687],[122,74,69,-0.2861553668058707],[122,74,70,-0.28988734648680725],[122,74,71,-0.2959078279401802],[122,74,72,-0.3008398730236505],[122,74,73,-0.30406840391040063],[122,74,74,-0.3048582408329161],[122,74,75,-0.3022742318804195],[122,74,76,-0.29615838126356825],[122,74,77,-0.28934308913877604],[122,74,78,-0.28226801777971744],[122,74,79,-0.2741769753701216],[122,75,64,-0.3054397943055227],[122,75,65,-0.30706104465608947],[122,75,66,-0.3045965035965134],[122,75,67,-0.30103695294494914],[122,75,68,-0.30025721045618736],[122,75,69,-0.3007296914910863],[122,75,70,-0.30407421541416574],[122,75,71,-0.31077932712657785],[122,75,72,-0.31596103400145875],[122,75,73,-0.3190274012837307],[122,75,74,-0.320063195019058],[122,75,75,-0.3166261419975721],[122,75,76,-0.31131035716950467],[122,75,77,-0.30459120822415053],[122,75,78,-0.29822340892441873],[122,75,79,-0.2897178163699416],[122,76,64,-0.3184560259231976],[122,76,65,-0.32032877267552523],[122,76,66,-0.3184376388080301],[122,76,67,-0.3148018285226917],[122,76,68,-0.3147091445143713],[122,76,69,-0.31535077699014286],[122,76,70,-0.31875952867960955],[122,76,71,-0.32459111224199],[122,76,72,-0.33064058755594883],[122,76,73,-0.3335982380950519],[122,76,74,-0.33400423693457243],[122,76,75,-0.3307682596759607],[122,76,76,-0.3253935384877606],[122,76,77,-0.3196153216257122],[122,76,78,-0.3133066776907118],[122,76,79,-0.3050884075022372],[122,77,64,-0.3324389493310742],[122,77,65,-0.33420613711189323],[122,77,66,-0.33294675859308887],[122,77,67,-0.3304767335438837],[122,77,68,-0.3301886478504421],[122,77,69,-0.3310601086870467],[122,77,70,-0.3348096409230294],[122,77,71,-0.34050776238668656],[122,77,72,-0.3467753632893682],[122,77,73,-0.3497820908566293],[122,77,74,-0.3501642160843573],[122,77,75,-0.34732063458850804],[122,77,76,-0.3417435741402513],[122,77,77,-0.33533438936233795],[122,77,78,-0.32882221918862853],[122,77,79,-0.3209827136625],[122,78,64,-0.3471609513985139],[122,78,65,-0.34914650707620387],[122,78,66,-0.3478970361153079],[122,78,67,-0.34464022442893616],[122,78,68,-0.3443689847040787],[122,78,69,-0.3458225047082992],[122,78,70,-0.3493148099338982],[122,78,71,-0.3548766417493236],[122,78,72,-0.36093454616333887],[122,78,73,-0.36453100328833876],[122,78,74,-0.3649767179959546],[122,78,75,-0.3621700400329603],[122,78,76,-0.35669329616269674],[122,78,77,-0.3499232738098065],[122,78,78,-0.34346806069306224],[122,78,79,-0.33548444982632086],[122,79,64,-0.35879034340127647],[122,79,65,-0.36082447585736255],[122,79,66,-0.3590926313731248],[122,79,67,-0.35607482550300584],[122,79,68,-0.35488979310176005],[122,79,69,-0.3572972632894719],[122,79,70,-0.36097546472829506],[122,79,71,-0.36664415685625595],[122,79,72,-0.3725032478884357],[122,79,73,-0.37639295955659524],[122,79,74,-0.3776334659516465],[122,79,75,-0.37476903680734663],[122,79,76,-0.36962219267966073],[122,79,77,-0.3633418077730377],[122,79,78,-0.35644423984727064],[122,79,79,-0.3482235786914334],[122,80,64,-0.37247525946547166],[122,80,65,-0.374560262935483],[122,80,66,-0.3727266378002749],[122,80,67,-0.36935499863134125],[122,80,68,-0.36804742745663505],[122,80,69,-0.37029870760795347],[122,80,70,-0.3736723706537362],[122,80,71,-0.3799589370547861],[122,80,72,-0.3860951288334311],[122,80,73,-0.39041236519447886],[122,80,74,-0.3923721309133264],[122,80,75,-0.3898238826655717],[122,80,76,-0.3847655948650448],[122,80,77,-0.3782343346577484],[122,80,78,-0.37120735101343416],[122,80,79,-0.36271715624979517],[122,81,64,-0.383198157116395],[122,81,65,-0.3850874855635814],[122,81,66,-0.38307722041870274],[122,81,67,-0.3794844702357555],[122,81,68,-0.37842035714791394],[122,81,69,-0.3802649171257754],[122,81,70,-0.38436443439682877],[122,81,71,-0.39135583339038726],[122,81,72,-0.39930706340436006],[122,81,73,-0.4048426492422128],[122,81,74,-0.4061659859301261],[122,81,75,-0.4050485997712137],[122,81,76,-0.3997025713660725],[122,81,77,-0.3938367099956232],[122,81,78,-0.386783663957769],[122,81,79,-0.37922410858387146],[122,82,64,-0.39800843120521917],[122,82,65,-0.3996599545023144],[122,82,66,-0.3975598769552867],[122,82,67,-0.39373980803247016],[122,82,68,-0.39256515559935046],[122,82,69,-0.3945738285629798],[122,82,70,-0.3992276109053227],[122,82,71,-0.40615973483812196],[122,82,72,-0.41422694996898957],[122,82,73,-0.41968590753930346],[122,82,74,-0.42085364018631033],[122,82,75,-0.41998667618450825],[122,82,76,-0.41470447556984397],[122,82,77,-0.40873761511282886],[122,82,78,-0.4021231866477018],[122,82,79,-0.3947601931797731],[122,83,64,-0.41137950473393553],[122,83,65,-0.4127298249755996],[122,83,66,-0.4105075737876693],[122,83,67,-0.4062915041807542],[122,83,68,-0.4047604752478582],[122,83,69,-0.4072765400135012],[122,83,70,-0.41245411576230995],[122,83,71,-0.41942735186082647],[122,83,72,-0.42753521002264244],[122,83,73,-0.4328219696171305],[122,83,74,-0.43398161995304185],[122,83,75,-0.43333906326328075],[122,83,76,-0.4285612230456666],[122,83,77,-0.4220869403440966],[122,83,78,-0.4156947832406838],[122,83,79,-0.4083637393230451],[122,84,64,-0.42313112192552427],[122,84,65,-0.42422768974466174],[122,84,66,-0.42214484061655544],[122,84,67,-0.4181476391167824],[122,84,68,-0.41639536421378165],[122,84,69,-0.41941670690013544],[122,84,70,-0.4254461695294708],[122,84,71,-0.4329033058208603],[122,84,72,-0.44007220653313844],[122,84,73,-0.44505561727708454],[122,84,74,-0.44613085048645557],[122,84,75,-0.4461633868841091],[122,84,76,-0.442018957586945],[122,84,77,-0.4347494692017254],[122,84,78,-0.4284983657926973],[122,84,79,-0.4213931039734337],[122,85,64,-0.4396264080276603],[122,85,65,-0.440423811805034],[122,85,66,-0.43900489811465276],[122,85,67,-0.4352747725333703],[122,85,68,-0.43296428864407277],[122,85,69,-0.4362447826400364],[122,85,70,-0.4426159136571178],[122,85,71,-0.4489024462111421],[122,85,72,-0.4547960790024649],[122,85,73,-0.4583333333333333],[122,85,74,-0.4583333333333333],[122,85,75,-0.4583333333333333],[122,85,76,-0.45552790358772605],[122,85,77,-0.4483049314097604],[122,85,78,-0.4406023114944262],[122,85,79,-0.43324666632813674],[122,86,64,-0.45168045906875154],[122,86,65,-0.4535631922622541],[122,86,66,-0.4513779930127538],[122,86,67,-0.4484536008247963],[122,86,68,-0.4453796507698516],[122,86,69,-0.44877313949579295],[122,86,70,-0.45483486512649596],[122,86,71,-0.4583333333333333],[122,86,72,-0.4583333333333333],[122,86,73,-0.4583333333333333],[122,86,74,-0.4583333333333333],[122,86,75,-0.4583333333333333],[122,86,76,-0.4583333333333333],[122,86,77,-0.4583333333333333],[122,86,78,-0.4531938951917458],[122,86,79,-0.44592103738536637],[122,87,64,-0.4583333333333333],[122,87,65,-0.4583333333333333],[122,87,66,-0.4583333333333333],[122,87,67,-0.4583333333333333],[122,87,68,-0.45630014880141034],[122,87,69,-0.4583333333333333],[122,87,70,-0.4583333333333333],[122,87,71,-0.4583333333333333],[122,87,72,-0.4583333333333333],[122,87,73,-0.4583333333333333],[122,87,74,-0.4583333333333333],[122,87,75,-0.4583333333333333],[122,87,76,-0.4583333333333333],[122,87,77,-0.4583333333333333],[122,87,78,-0.4583333333333333],[122,87,79,-0.45650635873073936],[122,88,64,-0.4583333333333333],[122,88,65,-0.4583333333333333],[122,88,66,-0.4583333333333333],[122,88,67,-0.4583333333333333],[122,88,68,-0.4583333333333333],[122,88,69,-0.4583333333333333],[122,88,70,-0.4583333333333333],[122,88,71,-0.4583333333333333],[122,88,72,-0.4583333333333333],[122,88,73,-0.4583333333333333],[122,88,74,-0.4583333333333333],[122,88,75,-0.4583333333333333],[122,88,76,-0.4583333333333333],[122,88,77,-0.4583333333333333],[122,88,78,-0.4583333333333333],[122,88,79,-0.4583333333333333],[122,89,64,-0.4583333333333333],[122,89,65,-0.4583333333333333],[122,89,66,-0.4583333333333333],[122,89,67,-0.4583333333333333],[122,89,68,-0.4583333333333333],[122,89,69,-0.4583333333333333],[122,89,70,-0.4583333333333333],[122,89,71,-0.4583333333333333],[122,89,72,-0.4583333333333333],[122,89,73,-0.4583333333333333],[122,89,74,-0.4583333333333333],[122,89,75,-0.4583333333333333],[122,89,76,-0.4583333333333333],[122,89,77,-0.4583333333333333],[122,89,78,-0.4583333333333333],[122,89,79,-0.4583333333333333],[122,90,64,-0.4583333333333333],[122,90,65,-0.4583333333333333],[122,90,66,-0.4583333333333333],[122,90,67,-0.4583333333333333],[122,90,68,-0.4583333333333333],[122,90,69,-0.4583333333333333],[122,90,70,-0.4583333333333333],[122,90,71,-0.4583333333333333],[122,90,72,-0.4583333333333333],[122,90,73,-0.4583333333333333],[122,90,74,-0.4583333333333333],[122,90,75,-0.4583333333333333],[122,90,76,-0.4583333333333333],[122,90,77,-0.4583333333333333],[122,90,78,-0.4583333333333333],[122,90,79,-0.4583333333333333],[122,91,64,-0.4583333333333333],[122,91,65,-0.4583333333333333],[122,91,66,-0.4583333333333333],[122,91,67,-0.4583333333333333],[122,91,68,-0.4583333333333333],[122,91,69,-0.4583333333333333],[122,91,70,-0.4583333333333333],[122,91,71,-0.4583333333333333],[122,91,72,-0.4583333333333333],[122,91,73,-0.4583333333333333],[122,91,74,-0.4583333333333333],[122,91,75,-0.4583333333333333],[122,91,76,-0.4583333333333333],[122,91,77,-0.4583333333333333],[122,91,78,-0.4583333333333333],[122,91,79,-0.4583333333333333],[122,92,64,-0.4583333333333333],[122,92,65,-0.4583333333333333],[122,92,66,-0.4583333333333333],[122,92,67,-0.4583333333333333],[122,92,68,-0.4583333333333333],[122,92,69,-0.4583333333333333],[122,92,70,-0.4583333333333333],[122,92,71,-0.4583333333333333],[122,92,72,-0.4583333333333333],[122,92,73,-0.4583333333333333],[122,92,74,-0.4583333333333333],[122,92,75,-0.4583333333333333],[122,92,76,-0.4583333333333333],[122,92,77,-0.4583333333333333],[122,92,78,-0.4583333333333333],[122,92,79,-0.4583333333333333],[122,93,64,-0.4583333333333333],[122,93,65,-0.4583333333333333],[122,93,66,-0.4583333333333333],[122,93,67,-0.4583333333333333],[122,93,68,-0.4583333333333333],[122,93,69,-0.4583333333333333],[122,93,70,-0.4583333333333333],[122,93,71,-0.4583333333333333],[122,93,72,-0.4583333333333333],[122,93,73,-0.4583333333333333],[122,93,74,-0.4583333333333333],[122,93,75,-0.4583333333333333],[122,93,76,-0.4583333333333333],[122,93,77,-0.4583333333333333],[122,93,78,-0.4583333333333333],[122,93,79,-0.4583333333333333],[122,94,64,-0.4583333333333333],[122,94,65,-0.4583333333333333],[122,94,66,-0.4583333333333333],[122,94,67,-0.4583333333333333],[122,94,68,-0.4583333333333333],[122,94,69,-0.4583333333333333],[122,94,70,-0.4583333333333333],[122,94,71,-0.4583333333333333],[122,94,72,-0.4583333333333333],[122,94,73,-0.4583333333333333],[122,94,74,-0.4583333333333333],[122,94,75,-0.4583333333333333],[122,94,76,-0.4583333333333333],[122,94,77,-0.4583333333333333],[122,94,78,-0.4583333333333333],[122,94,79,-0.4583333333333333],[122,95,64,-0.4583333333333333],[122,95,65,-0.4583333333333333],[122,95,66,-0.4583333333333333],[122,95,67,-0.4583333333333333],[122,95,68,-0.4583333333333333],[122,95,69,-0.4583333333333333],[122,95,70,-0.4583333333333333],[122,95,71,-0.4583333333333333],[122,95,72,-0.4583333333333333],[122,95,73,-0.4583333333333333],[122,95,74,-0.4583333333333333],[122,95,75,-0.4583333333333333],[122,95,76,-0.4583333333333333],[122,95,77,-0.4583333333333333],[122,95,78,-0.4583333333333333],[122,95,79,-0.4583333333333333],[122,96,64,-0.4583333333333333],[122,96,65,-0.4583333333333333],[122,96,66,-0.4583333333333333],[122,96,67,-0.4583333333333333],[122,96,68,-0.4583333333333333],[122,96,69,-0.4583333333333333],[122,96,70,-0.4583333333333333],[122,96,71,-0.4583333333333333],[122,96,72,-0.4583333333333333],[122,96,73,-0.4583333333333333],[122,96,74,-0.4583333333333333],[122,96,75,-0.4583333333333333],[122,96,76,-0.4583333333333333],[122,96,77,-0.4583333333333333],[122,96,78,-0.4583333333333333],[122,96,79,-0.4583333333333333],[122,97,64,-0.4583333333333333],[122,97,65,-0.4583333333333333],[122,97,66,-0.4583333333333333],[122,97,67,-0.4583333333333333],[122,97,68,-0.4583333333333333],[122,97,69,-0.4583333333333333],[122,97,70,-0.4583333333333333],[122,97,71,-0.4583333333333333],[122,97,72,-0.4583333333333333],[122,97,73,-0.4583333333333333],[122,97,74,-0.4583333333333333],[122,97,75,-0.4583333333333333],[122,97,76,-0.4583333333333333],[122,97,77,-0.4583333333333333],[122,97,78,-0.4583333333333333],[122,97,79,-0.4583333333333333],[122,98,64,-0.4583333333333333],[122,98,65,-0.4583333333333333],[122,98,66,-0.4583333333333333],[122,98,67,-0.4583333333333333],[122,98,68,-0.4583333333333333],[122,98,69,-0.4583333333333333],[122,98,70,-0.4583333333333333],[122,98,71,-0.4583333333333333],[122,98,72,-0.4583333333333333],[122,98,73,-0.4583333333333333],[122,98,74,-0.4583333333333333],[122,98,75,-0.4583333333333333],[122,98,76,-0.4583333333333333],[122,98,77,-0.4583333333333333],[122,98,78,-0.4583333333333333],[122,98,79,-0.4583333333333333],[122,99,64,-0.4583333333333333],[122,99,65,-0.4583333333333333],[122,99,66,-0.4583333333333333],[122,99,67,-0.4583333333333333],[122,99,68,-0.4583333333333333],[122,99,69,-0.4583333333333333],[122,99,70,-0.4583333333333333],[122,99,71,-0.4583333333333333],[122,99,72,-0.4583333333333333],[122,99,73,-0.4583333333333333],[122,99,74,-0.4583333333333333],[122,99,75,-0.4583333333333333],[122,99,76,-0.4583333333333333],[122,99,77,-0.4583333333333333],[122,99,78,-0.4583333333333333],[122,99,79,-0.4583333333333333],[122,100,64,-0.4583333333333333],[122,100,65,-0.4583333333333333],[122,100,66,-0.4583333333333333],[122,100,67,-0.4583333333333333],[122,100,68,-0.4583333333333333],[122,100,69,-0.4583333333333333],[122,100,70,-0.4583333333333333],[122,100,71,-0.4583333333333333],[122,100,72,-0.4583333333333333],[122,100,73,-0.4583333333333333],[122,100,74,-0.4583333333333333],[122,100,75,-0.4583333333333333],[122,100,76,-0.4583333333333333],[122,100,77,-0.4583333333333333],[122,100,78,-0.4583333333333333],[122,100,79,-0.4583333333333333],[122,101,64,-0.4583333333333333],[122,101,65,-0.4583333333333333],[122,101,66,-0.4583333333333333],[122,101,67,-0.4583333333333333],[122,101,68,-0.4583333333333333],[122,101,69,-0.4583333333333333],[122,101,70,-0.4583333333333333],[122,101,71,-0.4583333333333333],[122,101,72,-0.4583333333333333],[122,101,73,-0.4583333333333333],[122,101,74,-0.4583333333333333],[122,101,75,-0.4583333333333333],[122,101,76,-0.4583333333333333],[122,101,77,-0.4583333333333333],[122,101,78,-0.4583333333333333],[122,101,79,-0.4583333333333333],[122,102,64,-0.4583333333333333],[122,102,65,-0.4583333333333333],[122,102,66,-0.4583333333333333],[122,102,67,-0.4583333333333333],[122,102,68,-0.4583333333333333],[122,102,69,-0.4583333333333333],[122,102,70,-0.4583333333333333],[122,102,71,-0.4583333333333333],[122,102,72,-0.4583333333333333],[122,102,73,-0.4583333333333333],[122,102,74,-0.4583333333333333],[122,102,75,-0.4583333333333333],[122,102,76,-0.4583333333333333],[122,102,77,-0.4583333333333333],[122,102,78,-0.4583333333333333],[122,102,79,-0.4583333333333333],[122,103,64,-0.4583333333333333],[122,103,65,-0.4583333333333333],[122,103,66,-0.4583333333333333],[122,103,67,-0.4583333333333333],[122,103,68,-0.4583333333333333],[122,103,69,-0.4583333333333333],[122,103,70,-0.4583333333333333],[122,103,71,-0.4583333333333333],[122,103,72,-0.4583333333333333],[122,103,73,-0.4583333333333333],[122,103,74,-0.4583333333333333],[122,103,75,-0.4583333333333333],[122,103,76,-0.4583333333333333],[122,103,77,-0.4583333333333333],[122,103,78,-0.4583333333333333],[122,103,79,-0.4583333333333333],[122,104,64,-0.4583333333333333],[122,104,65,-0.4583333333333333],[122,104,66,-0.4583333333333333],[122,104,67,-0.4583333333333333],[122,104,68,-0.4583333333333333],[122,104,69,-0.4583333333333333],[122,104,70,-0.4583333333333333],[122,104,71,-0.4583333333333333],[122,104,72,-0.4583333333333333],[122,104,73,-0.4583333333333333],[122,104,74,-0.4583333333333333],[122,104,75,-0.4583333333333333],[122,104,76,-0.4583333333333333],[122,104,77,-0.4583333333333333],[122,104,78,-0.4583333333333333],[122,104,79,-0.4583333333333333],[122,105,64,-0.4583333333333333],[122,105,65,-0.4583333333333333],[122,105,66,-0.4583333333333333],[122,105,67,-0.4583333333333333],[122,105,68,-0.4583333333333333],[122,105,69,-0.4583333333333333],[122,105,70,-0.4583333333333333],[122,105,71,-0.4583333333333333],[122,105,72,-0.4583333333333333],[122,105,73,-0.4583333333333333],[122,105,74,-0.4583333333333333],[122,105,75,-0.4583333333333333],[122,105,76,-0.4583333333333333],[122,105,77,-0.4583333333333333],[122,105,78,-0.4583333333333333],[122,105,79,-0.4583333333333333],[122,106,64,-0.4583333333333333],[122,106,65,-0.4583333333333333],[122,106,66,-0.4583333333333333],[122,106,67,-0.4583333333333333],[122,106,68,-0.4583333333333333],[122,106,69,-0.4583333333333333],[122,106,70,-0.4583333333333333],[122,106,71,-0.4583333333333333],[122,106,72,-0.4583333333333333],[122,106,73,-0.4583333333333333],[122,106,74,-0.4583333333333333],[122,106,75,-0.4583333333333333],[122,106,76,-0.4583333333333333],[122,106,77,-0.4583333333333333],[122,106,78,-0.4583333333333333],[122,106,79,-0.4583333333333333],[122,107,64,-0.4583333333333333],[122,107,65,-0.4583333333333333],[122,107,66,-0.4583333333333333],[122,107,67,-0.4583333333333333],[122,107,68,-0.4583333333333333],[122,107,69,-0.4583333333333333],[122,107,70,-0.4583333333333333],[122,107,71,-0.4583333333333333],[122,107,72,-0.4583333333333333],[122,107,73,-0.4583333333333333],[122,107,74,-0.4583333333333333],[122,107,75,-0.4583333333333333],[122,107,76,-0.4583333333333333],[122,107,77,-0.4583333333333333],[122,107,78,-0.4583333333333333],[122,107,79,-0.4583333333333333],[122,108,64,-0.4583333333333333],[122,108,65,-0.4583333333333333],[122,108,66,-0.4583333333333333],[122,108,67,-0.4583333333333333],[122,108,68,-0.4583333333333333],[122,108,69,-0.4583333333333333],[122,108,70,-0.4583333333333333],[122,108,71,-0.4583333333333333],[122,108,72,-0.4583333333333333],[122,108,73,-0.4583333333333333],[122,108,74,-0.4583333333333333],[122,108,75,-0.4583333333333333],[122,108,76,-0.4583333333333333],[122,108,77,-0.4583333333333333],[122,108,78,-0.4583333333333333],[122,108,79,-0.4583333333333333],[122,109,64,-0.4583333333333333],[122,109,65,-0.4583333333333333],[122,109,66,-0.4583333333333333],[122,109,67,-0.4583333333333333],[122,109,68,-0.4583333333333333],[122,109,69,-0.4583333333333333],[122,109,70,-0.4583333333333333],[122,109,71,-0.4583333333333333],[122,109,72,-0.4583333333333333],[122,109,73,-0.4583333333333333],[122,109,74,-0.4583333333333333],[122,109,75,-0.4583333333333333],[122,109,76,-0.4583333333333333],[122,109,77,-0.4583333333333333],[122,109,78,-0.4583333333333333],[122,109,79,-0.4583333333333333],[122,110,64,-0.4583333333333333],[122,110,65,-0.4583333333333333],[122,110,66,-0.4583333333333333],[122,110,67,-0.4583333333333333],[122,110,68,-0.4583333333333333],[122,110,69,-0.4583333333333333],[122,110,70,-0.4583333333333333],[122,110,71,-0.4583333333333333],[122,110,72,-0.4583333333333333],[122,110,73,-0.4583333333333333],[122,110,74,-0.4583333333333333],[122,110,75,-0.4583333333333333],[122,110,76,-0.4583333333333333],[122,110,77,-0.4583333333333333],[122,110,78,-0.4583333333333333],[122,110,79,-0.4583333333333333],[122,111,64,-0.4583333333333333],[122,111,65,-0.4583333333333333],[122,111,66,-0.4583333333333333],[122,111,67,-0.4583333333333333],[122,111,68,-0.4583333333333333],[122,111,69,-0.4583333333333333],[122,111,70,-0.4583333333333333],[122,111,71,-0.4583333333333333],[122,111,72,-0.4583333333333333],[122,111,73,-0.4583333333333333],[122,111,74,-0.4583333333333333],[122,111,75,-0.4583333333333333],[122,111,76,-0.4583333333333333],[122,111,77,-0.4583333333333333],[122,111,78,-0.4583333333333333],[122,111,79,-0.4583333333333333],[122,112,64,-0.4583333333333333],[122,112,65,-0.4583333333333333],[122,112,66,-0.4583333333333333],[122,112,67,-0.4583333333333333],[122,112,68,-0.4583333333333333],[122,112,69,-0.4583333333333333],[122,112,70,-0.4583333333333333],[122,112,71,-0.4583333333333333],[122,112,72,-0.4583333333333333],[122,112,73,-0.4583333333333333],[122,112,74,-0.4583333333333333],[122,112,75,-0.4583333333333333],[122,112,76,-0.4583333333333333],[122,112,77,-0.4583333333333333],[122,112,78,-0.4583333333333333],[122,112,79,-0.4583333333333333],[122,113,64,-0.4583333333333333],[122,113,65,-0.4583333333333333],[122,113,66,-0.4583333333333333],[122,113,67,-0.4583333333333333],[122,113,68,-0.4583333333333333],[122,113,69,-0.4583333333333333],[122,113,70,-0.4583333333333333],[122,113,71,-0.4583333333333333],[122,113,72,-0.4583333333333333],[122,113,73,-0.4583333333333333],[122,113,74,-0.4583333333333333],[122,113,75,-0.4583333333333333],[122,113,76,-0.4583333333333333],[122,113,77,-0.4583333333333333],[122,113,78,-0.4583333333333333],[122,113,79,-0.4583333333333333],[122,114,64,-0.4583333333333333],[122,114,65,-0.4583333333333333],[122,114,66,-0.4583333333333333],[122,114,67,-0.4583333333333333],[122,114,68,-0.4583333333333333],[122,114,69,-0.4583333333333333],[122,114,70,-0.4583333333333333],[122,114,71,-0.4583333333333333],[122,114,72,-0.4583333333333333],[122,114,73,-0.4583333333333333],[122,114,74,-0.4583333333333333],[122,114,75,-0.4583333333333333],[122,114,76,-0.4583333333333333],[122,114,77,-0.4583333333333333],[122,114,78,-0.4583333333333333],[122,114,79,-0.4583333333333333],[122,115,64,-0.4583333333333333],[122,115,65,-0.4583333333333333],[122,115,66,-0.4583333333333333],[122,115,67,-0.4583333333333333],[122,115,68,-0.4583333333333333],[122,115,69,-0.4583333333333333],[122,115,70,-0.4583333333333333],[122,115,71,-0.4583333333333333],[122,115,72,-0.4583333333333333],[122,115,73,-0.4583333333333333],[122,115,74,-0.4583333333333333],[122,115,75,-0.4583333333333333],[122,115,76,-0.4583333333333333],[122,115,77,-0.4583333333333333],[122,115,78,-0.4583333333333333],[122,115,79,-0.4583333333333333],[122,116,64,-0.4583333333333333],[122,116,65,-0.4583333333333333],[122,116,66,-0.4583333333333333],[122,116,67,-0.4583333333333333],[122,116,68,-0.4583333333333333],[122,116,69,-0.4583333333333333],[122,116,70,-0.4583333333333333],[122,116,71,-0.4583333333333333],[122,116,72,-0.4583333333333333],[122,116,73,-0.4583333333333333],[122,116,74,-0.4583333333333333],[122,116,75,-0.4583333333333333],[122,116,76,-0.4583333333333333],[122,116,77,-0.4583333333333333],[122,116,78,-0.4583333333333333],[122,116,79,-0.4583333333333333],[122,117,64,-0.4583333333333333],[122,117,65,-0.4583333333333333],[122,117,66,-0.4583333333333333],[122,117,67,-0.4583333333333333],[122,117,68,-0.4583333333333333],[122,117,69,-0.4583333333333333],[122,117,70,-0.4583333333333333],[122,117,71,-0.4583333333333333],[122,117,72,-0.4583333333333333],[122,117,73,-0.4583333333333333],[122,117,74,-0.4583333333333333],[122,117,75,-0.4583333333333333],[122,117,76,-0.4583333333333333],[122,117,77,-0.4583333333333333],[122,117,78,-0.4583333333333333],[122,117,79,-0.4583333333333333],[122,118,64,-0.4583333333333333],[122,118,65,-0.4583333333333333],[122,118,66,-0.4583333333333333],[122,118,67,-0.4583333333333333],[122,118,68,-0.4583333333333333],[122,118,69,-0.4583333333333333],[122,118,70,-0.4583333333333333],[122,118,71,-0.4583333333333333],[122,118,72,-0.4583333333333333],[122,118,73,-0.4583333333333333],[122,118,74,-0.4583333333333333],[122,118,75,-0.4583333333333333],[122,118,76,-0.4583333333333333],[122,118,77,-0.4583333333333333],[122,118,78,-0.4583333333333333],[122,118,79,-0.4583333333333333],[122,119,64,-0.4583333333333333],[122,119,65,-0.4583333333333333],[122,119,66,-0.4583333333333333],[122,119,67,-0.4583333333333333],[122,119,68,-0.4583333333333333],[122,119,69,-0.4583333333333333],[122,119,70,-0.4583333333333333],[122,119,71,-0.4583333333333333],[122,119,72,-0.4583333333333333],[122,119,73,-0.4583333333333333],[122,119,74,-0.4583333333333333],[122,119,75,-0.4583333333333333],[122,119,76,-0.4583333333333333],[122,119,77,-0.4583333333333333],[122,119,78,-0.4583333333333333],[122,119,79,-0.4583333333333333],[122,120,64,-0.4583333333333333],[122,120,65,-0.4583333333333333],[122,120,66,-0.4583333333333333],[122,120,67,-0.4583333333333333],[122,120,68,-0.4583333333333333],[122,120,69,-0.4583333333333333],[122,120,70,-0.4583333333333333],[122,120,71,-0.4583333333333333],[122,120,72,-0.4583333333333333],[122,120,73,-0.4583333333333333],[122,120,74,-0.4583333333333333],[122,120,75,-0.4583333333333333],[122,120,76,-0.4583333333333333],[122,120,77,-0.4583333333333333],[122,120,78,-0.4583333333333333],[122,120,79,-0.4583333333333333],[122,121,64,-0.4583333333333333],[122,121,65,-0.4583333333333333],[122,121,66,-0.4583333333333333],[122,121,67,-0.4583333333333333],[122,121,68,-0.4583333333333333],[122,121,69,-0.4583333333333333],[122,121,70,-0.4583333333333333],[122,121,71,-0.4583333333333333],[122,121,72,-0.4583333333333333],[122,121,73,-0.4583333333333333],[122,121,74,-0.4583333333333333],[122,121,75,-0.4583333333333333],[122,121,76,-0.4583333333333333],[122,121,77,-0.4583333333333333],[122,121,78,-0.4583333333333333],[122,121,79,-0.4583333333333333],[122,122,64,-0.4583333333333333],[122,122,65,-0.4583333333333333],[122,122,66,-0.4583333333333333],[122,122,67,-0.4583333333333333],[122,122,68,-0.4583333333333333],[122,122,69,-0.4583333333333333],[122,122,70,-0.4583333333333333],[122,122,71,-0.4583333333333333],[122,122,72,-0.4583333333333333],[122,122,73,-0.4583333333333333],[122,122,74,-0.4583333333333333],[122,122,75,-0.4583333333333333],[122,122,76,-0.4583333333333333],[122,122,77,-0.4583333333333333],[122,122,78,-0.4583333333333333],[122,122,79,-0.4583333333333333],[122,123,64,-0.4583333333333333],[122,123,65,-0.4583333333333333],[122,123,66,-0.4583333333333333],[122,123,67,-0.4583333333333333],[122,123,68,-0.4583333333333333],[122,123,69,-0.4583333333333333],[122,123,70,-0.4583333333333333],[122,123,71,-0.4583333333333333],[122,123,72,-0.4583333333333333],[122,123,73,-0.4583333333333333],[122,123,74,-0.4583333333333333],[122,123,75,-0.4583333333333333],[122,123,76,-0.4583333333333333],[122,123,77,-0.4583333333333333],[122,123,78,-0.4583333333333333],[122,123,79,-0.4583333333333333],[122,124,64,-0.4583333333333333],[122,124,65,-0.4583333333333333],[122,124,66,-0.4583333333333333],[122,124,67,-0.4583333333333333],[122,124,68,-0.4583333333333333],[122,124,69,-0.4583333333333333],[122,124,70,-0.4583333333333333],[122,124,71,-0.4583333333333333],[122,124,72,-0.4583333333333333],[122,124,73,-0.4583333333333333],[122,124,74,-0.4583333333333333],[122,124,75,-0.4583333333333333],[122,124,76,-0.4583333333333333],[122,124,77,-0.4583333333333333],[122,124,78,-0.4583333333333333],[122,124,79,-0.4583333333333333],[122,125,64,-0.4583333333333333],[122,125,65,-0.4583333333333333],[122,125,66,-0.4583333333333333],[122,125,67,-0.4583333333333333],[122,125,68,-0.4583333333333333],[122,125,69,-0.4583333333333333],[122,125,70,-0.4583333333333333],[122,125,71,-0.4583333333333333],[122,125,72,-0.4583333333333333],[122,125,73,-0.4583333333333333],[122,125,74,-0.4583333333333333],[122,125,75,-0.4583333333333333],[122,125,76,-0.4583333333333333],[122,125,77,-0.4583333333333333],[122,125,78,-0.4583333333333333],[122,125,79,-0.4583333333333333],[122,126,64,-0.4583333333333333],[122,126,65,-0.4583333333333333],[122,126,66,-0.4583333333333333],[122,126,67,-0.4583333333333333],[122,126,68,-0.4583333333333333],[122,126,69,-0.4583333333333333],[122,126,70,-0.4583333333333333],[122,126,71,-0.4583333333333333],[122,126,72,-0.4583333333333333],[122,126,73,-0.4583333333333333],[122,126,74,-0.4583333333333333],[122,126,75,-0.4583333333333333],[122,126,76,-0.4583333333333333],[122,126,77,-0.4583333333333333],[122,126,78,-0.4583333333333333],[122,126,79,-0.4583333333333333],[122,127,64,-0.4583333333333333],[122,127,65,-0.4583333333333333],[122,127,66,-0.4583333333333333],[122,127,67,-0.4583333333333333],[122,127,68,-0.4583333333333333],[122,127,69,-0.4583333333333333],[122,127,70,-0.4583333333333333],[122,127,71,-0.4583333333333333],[122,127,72,-0.4583333333333333],[122,127,73,-0.4583333333333333],[122,127,74,-0.4583333333333333],[122,127,75,-0.4583333333333333],[122,127,76,-0.4583333333333333],[122,127,77,-0.4583333333333333],[122,127,78,-0.4583333333333333],[122,127,79,-0.4583333333333333],[122,128,64,-0.4583333333333333],[122,128,65,-0.4583333333333333],[122,128,66,-0.4583333333333333],[122,128,67,-0.4583333333333333],[122,128,68,-0.4583333333333333],[122,128,69,-0.4583333333333333],[122,128,70,-0.4583333333333333],[122,128,71,-0.4583333333333333],[122,128,72,-0.4583333333333333],[122,128,73,-0.4583333333333333],[122,128,74,-0.4583333333333333],[122,128,75,-0.4583333333333333],[122,128,76,-0.4583333333333333],[122,128,77,-0.4583333333333333],[122,128,78,-0.4583333333333333],[122,128,79,-0.4583333333333333],[122,129,64,-0.4583333333333333],[122,129,65,-0.4583333333333333],[122,129,66,-0.4583333333333333],[122,129,67,-0.4583333333333333],[122,129,68,-0.4583333333333333],[122,129,69,-0.4583333333333333],[122,129,70,-0.4583333333333333],[122,129,71,-0.4583333333333333],[122,129,72,-0.4583333333333333],[122,129,73,-0.4583333333333333],[122,129,74,-0.4583333333333333],[122,129,75,-0.4583333333333333],[122,129,76,-0.4583333333333333],[122,129,77,-0.4583333333333333],[122,129,78,-0.4583333333333333],[122,129,79,-0.4583333333333333],[122,130,64,-0.4583333333333333],[122,130,65,-0.4583333333333333],[122,130,66,-0.4583333333333333],[122,130,67,-0.4583333333333333],[122,130,68,-0.4583333333333333],[122,130,69,-0.4583333333333333],[122,130,70,-0.4583333333333333],[122,130,71,-0.4583333333333333],[122,130,72,-0.4583333333333333],[122,130,73,-0.4583333333333333],[122,130,74,-0.4583333333333333],[122,130,75,-0.4583333333333333],[122,130,76,-0.4583333333333333],[122,130,77,-0.4583333333333333],[122,130,78,-0.4583333333333333],[122,130,79,-0.4583333333333333],[122,131,64,-0.4583333333333333],[122,131,65,-0.4583333333333333],[122,131,66,-0.4583333333333333],[122,131,67,-0.4583333333333333],[122,131,68,-0.4583333333333333],[122,131,69,-0.4583333333333333],[122,131,70,-0.4583333333333333],[122,131,71,-0.4583333333333333],[122,131,72,-0.4583333333333333],[122,131,73,-0.4583333333333333],[122,131,74,-0.4583333333333333],[122,131,75,-0.4583333333333333],[122,131,76,-0.4583333333333333],[122,131,77,-0.4583333333333333],[122,131,78,-0.4583333333333333],[122,131,79,-0.4583333333333333],[122,132,64,-0.4583333333333333],[122,132,65,-0.4583333333333333],[122,132,66,-0.4583333333333333],[122,132,67,-0.4583333333333333],[122,132,68,-0.4583333333333333],[122,132,69,-0.4583333333333333],[122,132,70,-0.4583333333333333],[122,132,71,-0.4583333333333333],[122,132,72,-0.4583333333333333],[122,132,73,-0.4583333333333333],[122,132,74,-0.4583333333333333],[122,132,75,-0.4583333333333333],[122,132,76,-0.4583333333333333],[122,132,77,-0.4583333333333333],[122,132,78,-0.4583333333333333],[122,132,79,-0.4583333333333333],[122,133,64,-0.4583333333333333],[122,133,65,-0.4583333333333333],[122,133,66,-0.4583333333333333],[122,133,67,-0.4583333333333333],[122,133,68,-0.4583333333333333],[122,133,69,-0.4583333333333333],[122,133,70,-0.4583333333333333],[122,133,71,-0.4583333333333333],[122,133,72,-0.4583333333333333],[122,133,73,-0.4583333333333333],[122,133,74,-0.4583333333333333],[122,133,75,-0.4583333333333333],[122,133,76,-0.4583333333333333],[122,133,77,-0.4583333333333333],[122,133,78,-0.4583333333333333],[122,133,79,-0.4583333333333333],[122,134,64,-0.4583333333333333],[122,134,65,-0.4583333333333333],[122,134,66,-0.4583333333333333],[122,134,67,-0.4583333333333333],[122,134,68,-0.4583333333333333],[122,134,69,-0.4583333333333333],[122,134,70,-0.4583333333333333],[122,134,71,-0.4583333333333333],[122,134,72,-0.4583333333333333],[122,134,73,-0.4583333333333333],[122,134,74,-0.4583333333333333],[122,134,75,-0.4583333333333333],[122,134,76,-0.4583333333333333],[122,134,77,-0.4583333333333333],[122,134,78,-0.4583333333333333],[122,134,79,-0.4583333333333333],[122,135,64,-0.4583333333333333],[122,135,65,-0.4583333333333333],[122,135,66,-0.4583333333333333],[122,135,67,-0.4583333333333333],[122,135,68,-0.4583333333333333],[122,135,69,-0.4583333333333333],[122,135,70,-0.4583333333333333],[122,135,71,-0.4583333333333333],[122,135,72,-0.4583333333333333],[122,135,73,-0.4583333333333333],[122,135,74,-0.4583333333333333],[122,135,75,-0.4583333333333333],[122,135,76,-0.4583333333333333],[122,135,77,-0.4583333333333333],[122,135,78,-0.4583333333333333],[122,135,79,-0.4583333333333333],[122,136,64,-0.4583333333333333],[122,136,65,-0.4583333333333333],[122,136,66,-0.4583333333333333],[122,136,67,-0.4583333333333333],[122,136,68,-0.4583333333333333],[122,136,69,-0.4583333333333333],[122,136,70,-0.4583333333333333],[122,136,71,-0.4583333333333333],[122,136,72,-0.4583333333333333],[122,136,73,-0.4583333333333333],[122,136,74,-0.4583333333333333],[122,136,75,-0.4583333333333333],[122,136,76,-0.4583333333333333],[122,136,77,-0.4583333333333333],[122,136,78,-0.4583333333333333],[122,136,79,-0.4583333333333333],[122,137,64,-0.4583333333333333],[122,137,65,-0.4583333333333333],[122,137,66,-0.4583333333333333],[122,137,67,-0.4583333333333333],[122,137,68,-0.4583333333333333],[122,137,69,-0.4583333333333333],[122,137,70,-0.4583333333333333],[122,137,71,-0.4583333333333333],[122,137,72,-0.4583333333333333],[122,137,73,-0.4583333333333333],[122,137,74,-0.4583333333333333],[122,137,75,-0.4583333333333333],[122,137,76,-0.4583333333333333],[122,137,77,-0.4583333333333333],[122,137,78,-0.4583333333333333],[122,137,79,-0.4583333333333333],[122,138,64,-0.4583333333333333],[122,138,65,-0.4583333333333333],[122,138,66,-0.4583333333333333],[122,138,67,-0.4583333333333333],[122,138,68,-0.4583333333333333],[122,138,69,-0.4583333333333333],[122,138,70,-0.4583333333333333],[122,138,71,-0.4583333333333333],[122,138,72,-0.4583333333333333],[122,138,73,-0.4583333333333333],[122,138,74,-0.4583333333333333],[122,138,75,-0.4583333333333333],[122,138,76,-0.4583333333333333],[122,138,77,-0.4583333333333333],[122,138,78,-0.4583333333333333],[122,138,79,-0.4583333333333333],[122,139,64,-0.4583333333333333],[122,139,65,-0.4583333333333333],[122,139,66,-0.4583333333333333],[122,139,67,-0.4583333333333333],[122,139,68,-0.4583333333333333],[122,139,69,-0.4583333333333333],[122,139,70,-0.4583333333333333],[122,139,71,-0.4583333333333333],[122,139,72,-0.4583333333333333],[122,139,73,-0.4583333333333333],[122,139,74,-0.4583333333333333],[122,139,75,-0.4583333333333333],[122,139,76,-0.4583333333333333],[122,139,77,-0.4583333333333333],[122,139,78,-0.4583333333333333],[122,139,79,-0.4583333333333333],[122,140,64,-0.4583333333333333],[122,140,65,-0.4583333333333333],[122,140,66,-0.4583333333333333],[122,140,67,-0.4583333333333333],[122,140,68,-0.4583333333333333],[122,140,69,-0.4583333333333333],[122,140,70,-0.4583333333333333],[122,140,71,-0.4583333333333333],[122,140,72,-0.4583333333333333],[122,140,73,-0.4583333333333333],[122,140,74,-0.4583333333333333],[122,140,75,-0.4583333333333333],[122,140,76,-0.4583333333333333],[122,140,77,-0.4583333333333333],[122,140,78,-0.4583333333333333],[122,140,79,-0.4583333333333333],[122,141,64,-0.4583333333333333],[122,141,65,-0.4583333333333333],[122,141,66,-0.4583333333333333],[122,141,67,-0.4583333333333333],[122,141,68,-0.4583333333333333],[122,141,69,-0.4583333333333333],[122,141,70,-0.4583333333333333],[122,141,71,-0.4583333333333333],[122,141,72,-0.4583333333333333],[122,141,73,-0.4583333333333333],[122,141,74,-0.4583333333333333],[122,141,75,-0.4583333333333333],[122,141,76,-0.4583333333333333],[122,141,77,-0.4583333333333333],[122,141,78,-0.4583333333333333],[122,141,79,-0.4583333333333333],[122,142,64,-0.4583333333333333],[122,142,65,-0.4583333333333333],[122,142,66,-0.4583333333333333],[122,142,67,-0.4583333333333333],[122,142,68,-0.4583333333333333],[122,142,69,-0.4583333333333333],[122,142,70,-0.4583333333333333],[122,142,71,-0.4583333333333333],[122,142,72,-0.4583333333333333],[122,142,73,-0.4583333333333333],[122,142,74,-0.4583333333333333],[122,142,75,-0.4583333333333333],[122,142,76,-0.4583333333333333],[122,142,77,-0.4583333333333333],[122,142,78,-0.4583333333333333],[122,142,79,-0.4583333333333333],[122,143,64,-0.4583333333333333],[122,143,65,-0.4583333333333333],[122,143,66,-0.4583333333333333],[122,143,67,-0.4583333333333333],[122,143,68,-0.4583333333333333],[122,143,69,-0.4583333333333333],[122,143,70,-0.4583333333333333],[122,143,71,-0.4583333333333333],[122,143,72,-0.4583333333333333],[122,143,73,-0.4583333333333333],[122,143,74,-0.4583333333333333],[122,143,75,-0.4583333333333333],[122,143,76,-0.4583333333333333],[122,143,77,-0.4583333333333333],[122,143,78,-0.4583333333333333],[122,143,79,-0.4583333333333333],[122,144,64,-0.4583333333333333],[122,144,65,-0.4583333333333333],[122,144,66,-0.4583333333333333],[122,144,67,-0.4583333333333333],[122,144,68,-0.4583333333333333],[122,144,69,-0.4583333333333333],[122,144,70,-0.4583333333333333],[122,144,71,-0.4583333333333333],[122,144,72,-0.4583333333333333],[122,144,73,-0.4583333333333333],[122,144,74,-0.4583333333333333],[122,144,75,-0.4583333333333333],[122,144,76,-0.4583333333333333],[122,144,77,-0.4583333333333333],[122,144,78,-0.4583333333333333],[122,144,79,-0.4583333333333333],[122,145,64,-0.4583333333333333],[122,145,65,-0.4583333333333333],[122,145,66,-0.4583333333333333],[122,145,67,-0.4583333333333333],[122,145,68,-0.4583333333333333],[122,145,69,-0.4583333333333333],[122,145,70,-0.4583333333333333],[122,145,71,-0.4583333333333333],[122,145,72,-0.4583333333333333],[122,145,73,-0.4583333333333333],[122,145,74,-0.4583333333333333],[122,145,75,-0.4583333333333333],[122,145,76,-0.4583333333333333],[122,145,77,-0.4583333333333333],[122,145,78,-0.4583333333333333],[122,145,79,-0.4583333333333333],[122,146,64,-0.4583333333333333],[122,146,65,-0.4583333333333333],[122,146,66,-0.4583333333333333],[122,146,67,-0.4583333333333333],[122,146,68,-0.4583333333333333],[122,146,69,-0.4583333333333333],[122,146,70,-0.4583333333333333],[122,146,71,-0.4583333333333333],[122,146,72,-0.4583333333333333],[122,146,73,-0.4583333333333333],[122,146,74,-0.4583333333333333],[122,146,75,-0.4583333333333333],[122,146,76,-0.4583333333333333],[122,146,77,-0.4583333333333333],[122,146,78,-0.4583333333333333],[122,146,79,-0.4583333333333333],[122,147,64,-0.4583333333333333],[122,147,65,-0.4583333333333333],[122,147,66,-0.4583333333333333],[122,147,67,-0.4583333333333333],[122,147,68,-0.4583333333333333],[122,147,69,-0.4583333333333333],[122,147,70,-0.4583333333333333],[122,147,71,-0.4583333333333333],[122,147,72,-0.4583333333333333],[122,147,73,-0.4583333333333333],[122,147,74,-0.4583333333333333],[122,147,75,-0.4583333333333333],[122,147,76,-0.4583333333333333],[122,147,77,-0.4583333333333333],[122,147,78,-0.4583333333333333],[122,147,79,-0.4583333333333333],[122,148,64,-0.4583333333333333],[122,148,65,-0.4583333333333333],[122,148,66,-0.4583333333333333],[122,148,67,-0.4583333333333333],[122,148,68,-0.4583333333333333],[122,148,69,-0.4583333333333333],[122,148,70,-0.4583333333333333],[122,148,71,-0.4583333333333333],[122,148,72,-0.4583333333333333],[122,148,73,-0.4583333333333333],[122,148,74,-0.4583333333333333],[122,148,75,-0.4583333333333333],[122,148,76,-0.4583333333333333],[122,148,77,-0.4583333333333333],[122,148,78,-0.4583333333333333],[122,148,79,-0.4583333333333333],[122,149,64,-0.4583333333333333],[122,149,65,-0.4583333333333333],[122,149,66,-0.4583333333333333],[122,149,67,-0.4583333333333333],[122,149,68,-0.4583333333333333],[122,149,69,-0.4583333333333333],[122,149,70,-0.4583333333333333],[122,149,71,-0.4583333333333333],[122,149,72,-0.4583333333333333],[122,149,73,-0.4583333333333333],[122,149,74,-0.4583333333333333],[122,149,75,-0.4583333333333333],[122,149,76,-0.4583333333333333],[122,149,77,-0.4583333333333333],[122,149,78,-0.4583333333333333],[122,149,79,-0.4583333333333333],[122,150,64,-0.4583333333333333],[122,150,65,-0.4583333333333333],[122,150,66,-0.4583333333333333],[122,150,67,-0.4583333333333333],[122,150,68,-0.4583333333333333],[122,150,69,-0.4583333333333333],[122,150,70,-0.4583333333333333],[122,150,71,-0.4583333333333333],[122,150,72,-0.4583333333333333],[122,150,73,-0.4583333333333333],[122,150,74,-0.4583333333333333],[122,150,75,-0.4583333333333333],[122,150,76,-0.4583333333333333],[122,150,77,-0.4583333333333333],[122,150,78,-0.4583333333333333],[122,150,79,-0.4583333333333333],[122,151,64,-0.4583333333333333],[122,151,65,-0.4583333333333333],[122,151,66,-0.4583333333333333],[122,151,67,-0.4583333333333333],[122,151,68,-0.4583333333333333],[122,151,69,-0.4583333333333333],[122,151,70,-0.4583333333333333],[122,151,71,-0.4583333333333333],[122,151,72,-0.4583333333333333],[122,151,73,-0.4583333333333333],[122,151,74,-0.4583333333333333],[122,151,75,-0.4583333333333333],[122,151,76,-0.4583333333333333],[122,151,77,-0.4583333333333333],[122,151,78,-0.4583333333333333],[122,151,79,-0.4583333333333333],[122,152,64,-0.4583333333333333],[122,152,65,-0.4583333333333333],[122,152,66,-0.4583333333333333],[122,152,67,-0.4583333333333333],[122,152,68,-0.4583333333333333],[122,152,69,-0.4583333333333333],[122,152,70,-0.4583333333333333],[122,152,71,-0.4583333333333333],[122,152,72,-0.4583333333333333],[122,152,73,-0.4583333333333333],[122,152,74,-0.4583333333333333],[122,152,75,-0.4583333333333333],[122,152,76,-0.4583333333333333],[122,152,77,-0.4583333333333333],[122,152,78,-0.4583333333333333],[122,152,79,-0.4583333333333333],[122,153,64,-0.4583333333333333],[122,153,65,-0.4583333333333333],[122,153,66,-0.4583333333333333],[122,153,67,-0.4583333333333333],[122,153,68,-0.4583333333333333],[122,153,69,-0.4583333333333333],[122,153,70,-0.4583333333333333],[122,153,71,-0.4583333333333333],[122,153,72,-0.4583333333333333],[122,153,73,-0.4583333333333333],[122,153,74,-0.4583333333333333],[122,153,75,-0.4583333333333333],[122,153,76,-0.4583333333333333],[122,153,77,-0.4583333333333333],[122,153,78,-0.4583333333333333],[122,153,79,-0.4583333333333333],[122,154,64,-0.4583333333333333],[122,154,65,-0.4583333333333333],[122,154,66,-0.4583333333333333],[122,154,67,-0.4583333333333333],[122,154,68,-0.4583333333333333],[122,154,69,-0.4583333333333333],[122,154,70,-0.4583333333333333],[122,154,71,-0.4583333333333333],[122,154,72,-0.4583333333333333],[122,154,73,-0.4583333333333333],[122,154,74,-0.4583333333333333],[122,154,75,-0.4583333333333333],[122,154,76,-0.4583333333333333],[122,154,77,-0.4583333333333333],[122,154,78,-0.4583333333333333],[122,154,79,-0.4583333333333333],[122,155,64,-0.4583333333333333],[122,155,65,-0.4583333333333333],[122,155,66,-0.4583333333333333],[122,155,67,-0.4583333333333333],[122,155,68,-0.4583333333333333],[122,155,69,-0.4583333333333333],[122,155,70,-0.4583333333333333],[122,155,71,-0.4583333333333333],[122,155,72,-0.4583333333333333],[122,155,73,-0.4583333333333333],[122,155,74,-0.4583333333333333],[122,155,75,-0.4583333333333333],[122,155,76,-0.4583333333333333],[122,155,77,-0.4583333333333333],[122,155,78,-0.4583333333333333],[122,155,79,-0.4583333333333333],[122,156,64,-0.4583333333333333],[122,156,65,-0.4583333333333333],[122,156,66,-0.4583333333333333],[122,156,67,-0.4583333333333333],[122,156,68,-0.4583333333333333],[122,156,69,-0.4583333333333333],[122,156,70,-0.4583333333333333],[122,156,71,-0.4583333333333333],[122,156,72,-0.4583333333333333],[122,156,73,-0.4583333333333333],[122,156,74,-0.4583333333333333],[122,156,75,-0.4583333333333333],[122,156,76,-0.4583333333333333],[122,156,77,-0.4583333333333333],[122,156,78,-0.4583333333333333],[122,156,79,-0.4583333333333333],[122,157,64,-0.4583333333333333],[122,157,65,-0.4583333333333333],[122,157,66,-0.4583333333333333],[122,157,67,-0.4583333333333333],[122,157,68,-0.4583333333333333],[122,157,69,-0.4583333333333333],[122,157,70,-0.4583333333333333],[122,157,71,-0.4583333333333333],[122,157,72,-0.4583333333333333],[122,157,73,-0.4583333333333333],[122,157,74,-0.4583333333333333],[122,157,75,-0.4583333333333333],[122,157,76,-0.4583333333333333],[122,157,77,-0.4583333333333333],[122,157,78,-0.4583333333333333],[122,157,79,-0.4583333333333333],[122,158,64,-0.4583333333333333],[122,158,65,-0.4583333333333333],[122,158,66,-0.4583333333333333],[122,158,67,-0.4583333333333333],[122,158,68,-0.4583333333333333],[122,158,69,-0.4583333333333333],[122,158,70,-0.4583333333333333],[122,158,71,-0.4583333333333333],[122,158,72,-0.4583333333333333],[122,158,73,-0.4583333333333333],[122,158,74,-0.4583333333333333],[122,158,75,-0.4583333333333333],[122,158,76,-0.4583333333333333],[122,158,77,-0.4583333333333333],[122,158,78,-0.4583333333333333],[122,158,79,-0.4583333333333333],[122,159,64,-0.4583333333333333],[122,159,65,-0.4583333333333333],[122,159,66,-0.4583333333333333],[122,159,67,-0.4583333333333333],[122,159,68,-0.4583333333333333],[122,159,69,-0.4583333333333333],[122,159,70,-0.4583333333333333],[122,159,71,-0.4583333333333333],[122,159,72,-0.4583333333333333],[122,159,73,-0.4583333333333333],[122,159,74,-0.4583333333333333],[122,159,75,-0.4583333333333333],[122,159,76,-0.4583333333333333],[122,159,77,-0.4583333333333333],[122,159,78,-0.4583333333333333],[122,159,79,-0.4583333333333333],[122,160,64,-0.4583333333333333],[122,160,65,-0.4583333333333333],[122,160,66,-0.4583333333333333],[122,160,67,-0.4583333333333333],[122,160,68,-0.4583333333333333],[122,160,69,-0.4583333333333333],[122,160,70,-0.4583333333333333],[122,160,71,-0.4583333333333333],[122,160,72,-0.4583333333333333],[122,160,73,-0.4583333333333333],[122,160,74,-0.4583333333333333],[122,160,75,-0.4583333333333333],[122,160,76,-0.4583333333333333],[122,160,77,-0.4583333333333333],[122,160,78,-0.4583333333333333],[122,160,79,-0.4583333333333333],[122,161,64,-0.4583333333333333],[122,161,65,-0.4583333333333333],[122,161,66,-0.4583333333333333],[122,161,67,-0.4583333333333333],[122,161,68,-0.4583333333333333],[122,161,69,-0.4583333333333333],[122,161,70,-0.4583333333333333],[122,161,71,-0.4583333333333333],[122,161,72,-0.4583333333333333],[122,161,73,-0.4583333333333333],[122,161,74,-0.4583333333333333],[122,161,75,-0.4583333333333333],[122,161,76,-0.4583333333333333],[122,161,77,-0.4583333333333333],[122,161,78,-0.4583333333333333],[122,161,79,-0.4583333333333333],[122,162,64,-0.4583333333333333],[122,162,65,-0.4583333333333333],[122,162,66,-0.4583333333333333],[122,162,67,-0.4583333333333333],[122,162,68,-0.4583333333333333],[122,162,69,-0.4583333333333333],[122,162,70,-0.4583333333333333],[122,162,71,-0.4583333333333333],[122,162,72,-0.4583333333333333],[122,162,73,-0.4583333333333333],[122,162,74,-0.4583333333333333],[122,162,75,-0.4583333333333333],[122,162,76,-0.4583333333333333],[122,162,77,-0.4583333333333333],[122,162,78,-0.4583333333333333],[122,162,79,-0.4583333333333333],[122,163,64,-0.4583333333333333],[122,163,65,-0.4583333333333333],[122,163,66,-0.4583333333333333],[122,163,67,-0.4583333333333333],[122,163,68,-0.4583333333333333],[122,163,69,-0.4583333333333333],[122,163,70,-0.4583333333333333],[122,163,71,-0.4583333333333333],[122,163,72,-0.4583333333333333],[122,163,73,-0.4583333333333333],[122,163,74,-0.4583333333333333],[122,163,75,-0.4583333333333333],[122,163,76,-0.4583333333333333],[122,163,77,-0.4583333333333333],[122,163,78,-0.4583333333333333],[122,163,79,-0.4583333333333333],[122,164,64,-0.4583333333333333],[122,164,65,-0.4583333333333333],[122,164,66,-0.4583333333333333],[122,164,67,-0.4583333333333333],[122,164,68,-0.4583333333333333],[122,164,69,-0.4583333333333333],[122,164,70,-0.4583333333333333],[122,164,71,-0.4583333333333333],[122,164,72,-0.4583333333333333],[122,164,73,-0.4583333333333333],[122,164,74,-0.4583333333333333],[122,164,75,-0.4583333333333333],[122,164,76,-0.4583333333333333],[122,164,77,-0.4583333333333333],[122,164,78,-0.4583333333333333],[122,164,79,-0.4583333333333333],[122,165,64,-0.4583333333333333],[122,165,65,-0.4583333333333333],[122,165,66,-0.4583333333333333],[122,165,67,-0.4583333333333333],[122,165,68,-0.4583333333333333],[122,165,69,-0.4583333333333333],[122,165,70,-0.4583333333333333],[122,165,71,-0.4583333333333333],[122,165,72,-0.4583333333333333],[122,165,73,-0.4583333333333333],[122,165,74,-0.4583333333333333],[122,165,75,-0.4583333333333333],[122,165,76,-0.4583333333333333],[122,165,77,-0.4583333333333333],[122,165,78,-0.4583333333333333],[122,165,79,-0.4583333333333333],[122,166,64,-0.4583333333333333],[122,166,65,-0.4583333333333333],[122,166,66,-0.4583333333333333],[122,166,67,-0.4583333333333333],[122,166,68,-0.4583333333333333],[122,166,69,-0.4583333333333333],[122,166,70,-0.4583333333333333],[122,166,71,-0.4583333333333333],[122,166,72,-0.4583333333333333],[122,166,73,-0.4583333333333333],[122,166,74,-0.4583333333333333],[122,166,75,-0.4583333333333333],[122,166,76,-0.4583333333333333],[122,166,77,-0.4583333333333333],[122,166,78,-0.4583333333333333],[122,166,79,-0.4583333333333333],[122,167,64,-0.4583333333333333],[122,167,65,-0.4583333333333333],[122,167,66,-0.4583333333333333],[122,167,67,-0.4583333333333333],[122,167,68,-0.4583333333333333],[122,167,69,-0.4583333333333333],[122,167,70,-0.4583333333333333],[122,167,71,-0.4583333333333333],[122,167,72,-0.4583333333333333],[122,167,73,-0.4583333333333333],[122,167,74,-0.4583333333333333],[122,167,75,-0.4583333333333333],[122,167,76,-0.4583333333333333],[122,167,77,-0.4583333333333333],[122,167,78,-0.4583333333333333],[122,167,79,-0.4583333333333333],[122,168,64,-0.4583333333333333],[122,168,65,-0.4583333333333333],[122,168,66,-0.4583333333333333],[122,168,67,-0.4583333333333333],[122,168,68,-0.4583333333333333],[122,168,69,-0.4583333333333333],[122,168,70,-0.4583333333333333],[122,168,71,-0.4583333333333333],[122,168,72,-0.4583333333333333],[122,168,73,-0.4583333333333333],[122,168,74,-0.4583333333333333],[122,168,75,-0.4583333333333333],[122,168,76,-0.4583333333333333],[122,168,77,-0.4583333333333333],[122,168,78,-0.4583333333333333],[122,168,79,-0.4583333333333333],[122,169,64,-0.4583333333333333],[122,169,65,-0.4583333333333333],[122,169,66,-0.4583333333333333],[122,169,67,-0.4583333333333333],[122,169,68,-0.4583333333333333],[122,169,69,-0.4583333333333333],[122,169,70,-0.4583333333333333],[122,169,71,-0.4583333333333333],[122,169,72,-0.4583333333333333],[122,169,73,-0.4583333333333333],[122,169,74,-0.4583333333333333],[122,169,75,-0.4583333333333333],[122,169,76,-0.4583333333333333],[122,169,77,-0.4583333333333333],[122,169,78,-0.4583333333333333],[122,169,79,-0.4583333333333333],[122,170,64,-0.4583333333333333],[122,170,65,-0.4583333333333333],[122,170,66,-0.4583333333333333],[122,170,67,-0.4583333333333333],[122,170,68,-0.4583333333333333],[122,170,69,-0.4583333333333333],[122,170,70,-0.4583333333333333],[122,170,71,-0.4583333333333333],[122,170,72,-0.4583333333333333],[122,170,73,-0.4583333333333333],[122,170,74,-0.4583333333333333],[122,170,75,-0.4583333333333333],[122,170,76,-0.4583333333333333],[122,170,77,-0.4583333333333333],[122,170,78,-0.4583333333333333],[122,170,79,-0.4583333333333333],[122,171,64,-0.4583333333333333],[122,171,65,-0.4583333333333333],[122,171,66,-0.4583333333333333],[122,171,67,-0.4583333333333333],[122,171,68,-0.4583333333333333],[122,171,69,-0.4583333333333333],[122,171,70,-0.4583333333333333],[122,171,71,-0.4583333333333333],[122,171,72,-0.4583333333333333],[122,171,73,-0.4583333333333333],[122,171,74,-0.4583333333333333],[122,171,75,-0.4583333333333333],[122,171,76,-0.4583333333333333],[122,171,77,-0.4583333333333333],[122,171,78,-0.4583333333333333],[122,171,79,-0.4583333333333333],[122,172,64,-0.4583333333333333],[122,172,65,-0.4583333333333333],[122,172,66,-0.4583333333333333],[122,172,67,-0.4583333333333333],[122,172,68,-0.4583333333333333],[122,172,69,-0.4583333333333333],[122,172,70,-0.4583333333333333],[122,172,71,-0.4583333333333333],[122,172,72,-0.4583333333333333],[122,172,73,-0.4583333333333333],[122,172,74,-0.4583333333333333],[122,172,75,-0.4583333333333333],[122,172,76,-0.4583333333333333],[122,172,77,-0.4583333333333333],[122,172,78,-0.4583333333333333],[122,172,79,-0.4583333333333333],[122,173,64,-0.4583333333333333],[122,173,65,-0.4583333333333333],[122,173,66,-0.4583333333333333],[122,173,67,-0.4583333333333333],[122,173,68,-0.4583333333333333],[122,173,69,-0.4583333333333333],[122,173,70,-0.4583333333333333],[122,173,71,-0.4583333333333333],[122,173,72,-0.4583333333333333],[122,173,73,-0.4583333333333333],[122,173,74,-0.4583333333333333],[122,173,75,-0.4583333333333333],[122,173,76,-0.4583333333333333],[122,173,77,-0.4583333333333333],[122,173,78,-0.4583333333333333],[122,173,79,-0.4583333333333333],[122,174,64,-0.4583333333333333],[122,174,65,-0.4583333333333333],[122,174,66,-0.4583333333333333],[122,174,67,-0.4583333333333333],[122,174,68,-0.4583333333333333],[122,174,69,-0.4583333333333333],[122,174,70,-0.4583333333333333],[122,174,71,-0.4583333333333333],[122,174,72,-0.4583333333333333],[122,174,73,-0.4583333333333333],[122,174,74,-0.4583333333333333],[122,174,75,-0.4583333333333333],[122,174,76,-0.4583333333333333],[122,174,77,-0.4583333333333333],[122,174,78,-0.4583333333333333],[122,174,79,-0.4583333333333333],[122,175,64,-0.4583333333333333],[122,175,65,-0.4583333333333333],[122,175,66,-0.4583333333333333],[122,175,67,-0.4583333333333333],[122,175,68,-0.4583333333333333],[122,175,69,-0.4583333333333333],[122,175,70,-0.4583333333333333],[122,175,71,-0.4583333333333333],[122,175,72,-0.4583333333333333],[122,175,73,-0.4583333333333333],[122,175,74,-0.4583333333333333],[122,175,75,-0.4583333333333333],[122,175,76,-0.4583333333333333],[122,175,77,-0.4583333333333333],[122,175,78,-0.4583333333333333],[122,175,79,-0.4583333333333333],[122,176,64,-0.4583333333333333],[122,176,65,-0.4583333333333333],[122,176,66,-0.4583333333333333],[122,176,67,-0.4583333333333333],[122,176,68,-0.4583333333333333],[122,176,69,-0.4583333333333333],[122,176,70,-0.4583333333333333],[122,176,71,-0.4583333333333333],[122,176,72,-0.4583333333333333],[122,176,73,-0.4583333333333333],[122,176,74,-0.4583333333333333],[122,176,75,-0.4583333333333333],[122,176,76,-0.4583333333333333],[122,176,77,-0.4583333333333333],[122,176,78,-0.4583333333333333],[122,176,79,-0.4583333333333333],[122,177,64,-0.4583333333333333],[122,177,65,-0.4583333333333333],[122,177,66,-0.4583333333333333],[122,177,67,-0.4583333333333333],[122,177,68,-0.4583333333333333],[122,177,69,-0.4583333333333333],[122,177,70,-0.4583333333333333],[122,177,71,-0.4583333333333333],[122,177,72,-0.4583333333333333],[122,177,73,-0.4583333333333333],[122,177,74,-0.4583333333333333],[122,177,75,-0.4583333333333333],[122,177,76,-0.4583333333333333],[122,177,77,-0.4583333333333333],[122,177,78,-0.4583333333333333],[122,177,79,-0.4583333333333333],[122,178,64,-0.4583333333333333],[122,178,65,-0.4583333333333333],[122,178,66,-0.4583333333333333],[122,178,67,-0.4583333333333333],[122,178,68,-0.4583333333333333],[122,178,69,-0.4583333333333333],[122,178,70,-0.4583333333333333],[122,178,71,-0.4583333333333333],[122,178,72,-0.4583333333333333],[122,178,73,-0.4583333333333333],[122,178,74,-0.4583333333333333],[122,178,75,-0.4583333333333333],[122,178,76,-0.4583333333333333],[122,178,77,-0.4583333333333333],[122,178,78,-0.4583333333333333],[122,178,79,-0.4583333333333333],[122,179,64,-0.4583333333333333],[122,179,65,-0.4583333333333333],[122,179,66,-0.4583333333333333],[122,179,67,-0.4583333333333333],[122,179,68,-0.4583333333333333],[122,179,69,-0.4583333333333333],[122,179,70,-0.4583333333333333],[122,179,71,-0.4583333333333333],[122,179,72,-0.4583333333333333],[122,179,73,-0.4583333333333333],[122,179,74,-0.4583333333333333],[122,179,75,-0.4583333333333333],[122,179,76,-0.4583333333333333],[122,179,77,-0.4583333333333333],[122,179,78,-0.4583333333333333],[122,179,79,-0.4583333333333333],[122,180,64,-0.4583333333333333],[122,180,65,-0.4583333333333333],[122,180,66,-0.4583333333333333],[122,180,67,-0.4583333333333333],[122,180,68,-0.4583333333333333],[122,180,69,-0.4583333333333333],[122,180,70,-0.4583333333333333],[122,180,71,-0.4583333333333333],[122,180,72,-0.4583333333333333],[122,180,73,-0.4583333333333333],[122,180,74,-0.4583333333333333],[122,180,75,-0.4583333333333333],[122,180,76,-0.4583333333333333],[122,180,77,-0.4583333333333333],[122,180,78,-0.4583333333333333],[122,180,79,-0.4583333333333333],[122,181,64,-0.4583333333333333],[122,181,65,-0.4583333333333333],[122,181,66,-0.4583333333333333],[122,181,67,-0.4583333333333333],[122,181,68,-0.4583333333333333],[122,181,69,-0.4583333333333333],[122,181,70,-0.4583333333333333],[122,181,71,-0.4583333333333333],[122,181,72,-0.4583333333333333],[122,181,73,-0.4583333333333333],[122,181,74,-0.4583333333333333],[122,181,75,-0.4583333333333333],[122,181,76,-0.4583333333333333],[122,181,77,-0.4583333333333333],[122,181,78,-0.4583333333333333],[122,181,79,-0.4583333333333333],[122,182,64,-0.4583333333333333],[122,182,65,-0.4583333333333333],[122,182,66,-0.4583333333333333],[122,182,67,-0.4583333333333333],[122,182,68,-0.4583333333333333],[122,182,69,-0.4583333333333333],[122,182,70,-0.4583333333333333],[122,182,71,-0.4583333333333333],[122,182,72,-0.4583333333333333],[122,182,73,-0.4583333333333333],[122,182,74,-0.4583333333333333],[122,182,75,-0.4583333333333333],[122,182,76,-0.4583333333333333],[122,182,77,-0.4583333333333333],[122,182,78,-0.4583333333333333],[122,182,79,-0.4583333333333333],[122,183,64,-0.4583333333333333],[122,183,65,-0.4583333333333333],[122,183,66,-0.4583333333333333],[122,183,67,-0.4583333333333333],[122,183,68,-0.4583333333333333],[122,183,69,-0.4583333333333333],[122,183,70,-0.4583333333333333],[122,183,71,-0.4583333333333333],[122,183,72,-0.4583333333333333],[122,183,73,-0.4583333333333333],[122,183,74,-0.4583333333333333],[122,183,75,-0.4583333333333333],[122,183,76,-0.4583333333333333],[122,183,77,-0.4583333333333333],[122,183,78,-0.4583333333333333],[122,183,79,-0.4583333333333333],[122,184,64,-0.4583333333333333],[122,184,65,-0.4583333333333333],[122,184,66,-0.4583333333333333],[122,184,67,-0.4583333333333333],[122,184,68,-0.4583333333333333],[122,184,69,-0.4583333333333333],[122,184,70,-0.4583333333333333],[122,184,71,-0.4583333333333333],[122,184,72,-0.4583333333333333],[122,184,73,-0.4583333333333333],[122,184,74,-0.4583333333333333],[122,184,75,-0.4583333333333333],[122,184,76,-0.4583333333333333],[122,184,77,-0.4583333333333333],[122,184,78,-0.4583333333333333],[122,184,79,-0.4583333333333333],[122,185,64,-0.4583333333333333],[122,185,65,-0.4583333333333333],[122,185,66,-0.4583333333333333],[122,185,67,-0.4583333333333333],[122,185,68,-0.4583333333333333],[122,185,69,-0.4583333333333333],[122,185,70,-0.4583333333333333],[122,185,71,-0.4583333333333333],[122,185,72,-0.4583333333333333],[122,185,73,-0.4583333333333333],[122,185,74,-0.4583333333333333],[122,185,75,-0.4583333333333333],[122,185,76,-0.4583333333333333],[122,185,77,-0.4583333333333333],[122,185,78,-0.4583333333333333],[122,185,79,-0.4583333333333333],[122,186,64,-0.4583333333333333],[122,186,65,-0.4583333333333333],[122,186,66,-0.4583333333333333],[122,186,67,-0.4583333333333333],[122,186,68,-0.4583333333333333],[122,186,69,-0.4583333333333333],[122,186,70,-0.4583333333333333],[122,186,71,-0.4583333333333333],[122,186,72,-0.4583333333333333],[122,186,73,-0.4583333333333333],[122,186,74,-0.4583333333333333],[122,186,75,-0.4583333333333333],[122,186,76,-0.4583333333333333],[122,186,77,-0.4583333333333333],[122,186,78,-0.4583333333333333],[122,186,79,-0.4583333333333333],[122,187,64,-0.4583333333333333],[122,187,65,-0.4583333333333333],[122,187,66,-0.4583333333333333],[122,187,67,-0.4583333333333333],[122,187,68,-0.4583333333333333],[122,187,69,-0.4583333333333333],[122,187,70,-0.4583333333333333],[122,187,71,-0.4583333333333333],[122,187,72,-0.4583333333333333],[122,187,73,-0.4583333333333333],[122,187,74,-0.4583333333333333],[122,187,75,-0.4583333333333333],[122,187,76,-0.4583333333333333],[122,187,77,-0.4583333333333333],[122,187,78,-0.4583333333333333],[122,187,79,-0.4583333333333333],[122,188,64,-0.4583333333333333],[122,188,65,-0.4583333333333333],[122,188,66,-0.4583333333333333],[122,188,67,-0.4583333333333333],[122,188,68,-0.4583333333333333],[122,188,69,-0.4583333333333333],[122,188,70,-0.4583333333333333],[122,188,71,-0.4583333333333333],[122,188,72,-0.4583333333333333],[122,188,73,-0.4583333333333333],[122,188,74,-0.4583333333333333],[122,188,75,-0.4583333333333333],[122,188,76,-0.4583333333333333],[122,188,77,-0.4583333333333333],[122,188,78,-0.4583333333333333],[122,188,79,-0.4583333333333333],[122,189,64,-0.4583333333333333],[122,189,65,-0.4583333333333333],[122,189,66,-0.4583333333333333],[122,189,67,-0.4583333333333333],[122,189,68,-0.4583333333333333],[122,189,69,-0.4583333333333333],[122,189,70,-0.4583333333333333],[122,189,71,-0.4583333333333333],[122,189,72,-0.4583333333333333],[122,189,73,-0.4583333333333333],[122,189,74,-0.4583333333333333],[122,189,75,-0.4583333333333333],[122,189,76,-0.4583333333333333],[122,189,77,-0.4583333333333333],[122,189,78,-0.4583333333333333],[122,189,79,-0.4583333333333333],[122,190,64,-0.4583333333333333],[122,190,65,-0.4583333333333333],[122,190,66,-0.4583333333333333],[122,190,67,-0.4583333333333333],[122,190,68,-0.4583333333333333],[122,190,69,-0.4583333333333333],[122,190,70,-0.4583333333333333],[122,190,71,-0.4583333333333333],[122,190,72,-0.4583333333333333],[122,190,73,-0.4583333333333333],[122,190,74,-0.4583333333333333],[122,190,75,-0.4583333333333333],[122,190,76,-0.4583333333333333],[122,190,77,-0.4583333333333333],[122,190,78,-0.4583333333333333],[122,190,79,-0.4583333333333333],[122,191,64,-0.4583333333333333],[122,191,65,-0.4583333333333333],[122,191,66,-0.4583333333333333],[122,191,67,-0.4583333333333333],[122,191,68,-0.4583333333333333],[122,191,69,-0.4583333333333333],[122,191,70,-0.4583333333333333],[122,191,71,-0.4583333333333333],[122,191,72,-0.4583333333333333],[122,191,73,-0.4583333333333333],[122,191,74,-0.4583333333333333],[122,191,75,-0.4583333333333333],[122,191,76,-0.4583333333333333],[122,191,77,-0.4583333333333333],[122,191,78,-0.4583333333333333],[122,191,79,-0.4583333333333333],[122,192,64,-0.4583333333333333],[122,192,65,-0.4583333333333333],[122,192,66,-0.4583333333333333],[122,192,67,-0.4583333333333333],[122,192,68,-0.4583333333333333],[122,192,69,-0.4583333333333333],[122,192,70,-0.4583333333333333],[122,192,71,-0.4583333333333333],[122,192,72,-0.4583333333333333],[122,192,73,-0.4583333333333333],[122,192,74,-0.4583333333333333],[122,192,75,-0.4583333333333333],[122,192,76,-0.4583333333333333],[122,192,77,-0.4583333333333333],[122,192,78,-0.4583333333333333],[122,192,79,-0.4583333333333333],[122,193,64,-0.4583333333333333],[122,193,65,-0.4583333333333333],[122,193,66,-0.4583333333333333],[122,193,67,-0.4583333333333333],[122,193,68,-0.4583333333333333],[122,193,69,-0.4583333333333333],[122,193,70,-0.4583333333333333],[122,193,71,-0.4583333333333333],[122,193,72,-0.4583333333333333],[122,193,73,-0.4583333333333333],[122,193,74,-0.4583333333333333],[122,193,75,-0.4583333333333333],[122,193,76,-0.4583333333333333],[122,193,77,-0.4583333333333333],[122,193,78,-0.4583333333333333],[122,193,79,-0.4583333333333333],[122,194,64,-0.4583333333333333],[122,194,65,-0.4583333333333333],[122,194,66,-0.4583333333333333],[122,194,67,-0.4583333333333333],[122,194,68,-0.4583333333333333],[122,194,69,-0.4583333333333333],[122,194,70,-0.4583333333333333],[122,194,71,-0.4583333333333333],[122,194,72,-0.4583333333333333],[122,194,73,-0.4583333333333333],[122,194,74,-0.4583333333333333],[122,194,75,-0.4583333333333333],[122,194,76,-0.4583333333333333],[122,194,77,-0.4583333333333333],[122,194,78,-0.4583333333333333],[122,194,79,-0.4583333333333333],[122,195,64,-0.4583333333333333],[122,195,65,-0.4583333333333333],[122,195,66,-0.4583333333333333],[122,195,67,-0.4583333333333333],[122,195,68,-0.4583333333333333],[122,195,69,-0.4583333333333333],[122,195,70,-0.4583333333333333],[122,195,71,-0.4583333333333333],[122,195,72,-0.4583333333333333],[122,195,73,-0.4583333333333333],[122,195,74,-0.4583333333333333],[122,195,75,-0.4583333333333333],[122,195,76,-0.4583333333333333],[122,195,77,-0.4583333333333333],[122,195,78,-0.4583333333333333],[122,195,79,-0.4583333333333333],[122,196,64,-0.4583333333333333],[122,196,65,-0.4583333333333333],[122,196,66,-0.4583333333333333],[122,196,67,-0.4583333333333333],[122,196,68,-0.4583333333333333],[122,196,69,-0.4583333333333333],[122,196,70,-0.4583333333333333],[122,196,71,-0.4583333333333333],[122,196,72,-0.4583333333333333],[122,196,73,-0.4583333333333333],[122,196,74,-0.4583333333333333],[122,196,75,-0.4583333333333333],[122,196,76,-0.4583333333333333],[122,196,77,-0.4583333333333333],[122,196,78,-0.4583333333333333],[122,196,79,-0.4583333333333333],[122,197,64,-0.4583333333333333],[122,197,65,-0.4583333333333333],[122,197,66,-0.4583333333333333],[122,197,67,-0.4583333333333333],[122,197,68,-0.4583333333333333],[122,197,69,-0.4583333333333333],[122,197,70,-0.4583333333333333],[122,197,71,-0.4583333333333333],[122,197,72,-0.4583333333333333],[122,197,73,-0.4583333333333333],[122,197,74,-0.4583333333333333],[122,197,75,-0.4583333333333333],[122,197,76,-0.4583333333333333],[122,197,77,-0.4583333333333333],[122,197,78,-0.4583333333333333],[122,197,79,-0.4583333333333333],[122,198,64,-0.4583333333333333],[122,198,65,-0.4583333333333333],[122,198,66,-0.4583333333333333],[122,198,67,-0.4583333333333333],[122,198,68,-0.4583333333333333],[122,198,69,-0.4583333333333333],[122,198,70,-0.4583333333333333],[122,198,71,-0.4583333333333333],[122,198,72,-0.4583333333333333],[122,198,73,-0.4583333333333333],[122,198,74,-0.4583333333333333],[122,198,75,-0.4583333333333333],[122,198,76,-0.4583333333333333],[122,198,77,-0.4583333333333333],[122,198,78,-0.4583333333333333],[122,198,79,-0.4583333333333333],[122,199,64,-0.4583333333333333],[122,199,65,-0.4583333333333333],[122,199,66,-0.4583333333333333],[122,199,67,-0.4583333333333333],[122,199,68,-0.4583333333333333],[122,199,69,-0.4583333333333333],[122,199,70,-0.4583333333333333],[122,199,71,-0.4583333333333333],[122,199,72,-0.4583333333333333],[122,199,73,-0.4583333333333333],[122,199,74,-0.4583333333333333],[122,199,75,-0.4583333333333333],[122,199,76,-0.4583333333333333],[122,199,77,-0.4583333333333333],[122,199,78,-0.4583333333333333],[122,199,79,-0.4583333333333333],[122,200,64,-0.4583333333333333],[122,200,65,-0.4583333333333333],[122,200,66,-0.4583333333333333],[122,200,67,-0.4583333333333333],[122,200,68,-0.4583333333333333],[122,200,69,-0.4583333333333333],[122,200,70,-0.4583333333333333],[122,200,71,-0.4583333333333333],[122,200,72,-0.4583333333333333],[122,200,73,-0.4583333333333333],[122,200,74,-0.4583333333333333],[122,200,75,-0.4583333333333333],[122,200,76,-0.4583333333333333],[122,200,77,-0.4583333333333333],[122,200,78,-0.4583333333333333],[122,200,79,-0.4583333333333333],[122,201,64,-0.4583333333333333],[122,201,65,-0.4583333333333333],[122,201,66,-0.4583333333333333],[122,201,67,-0.4583333333333333],[122,201,68,-0.4583333333333333],[122,201,69,-0.4583333333333333],[122,201,70,-0.4583333333333333],[122,201,71,-0.4583333333333333],[122,201,72,-0.4583333333333333],[122,201,73,-0.4583333333333333],[122,201,74,-0.4583333333333333],[122,201,75,-0.4583333333333333],[122,201,76,-0.4583333333333333],[122,201,77,-0.4583333333333333],[122,201,78,-0.4583333333333333],[122,201,79,-0.4583333333333333],[122,202,64,-0.4583333333333333],[122,202,65,-0.4583333333333333],[122,202,66,-0.4583333333333333],[122,202,67,-0.4583333333333333],[122,202,68,-0.4583333333333333],[122,202,69,-0.4583333333333333],[122,202,70,-0.4583333333333333],[122,202,71,-0.4583333333333333],[122,202,72,-0.4583333333333333],[122,202,73,-0.4583333333333333],[122,202,74,-0.4583333333333333],[122,202,75,-0.4583333333333333],[122,202,76,-0.4583333333333333],[122,202,77,-0.4583333333333333],[122,202,78,-0.4583333333333333],[122,202,79,-0.4583333333333333],[122,203,64,-0.4583333333333333],[122,203,65,-0.4583333333333333],[122,203,66,-0.4583333333333333],[122,203,67,-0.4583333333333333],[122,203,68,-0.4583333333333333],[122,203,69,-0.4583333333333333],[122,203,70,-0.4583333333333333],[122,203,71,-0.4583333333333333],[122,203,72,-0.4583333333333333],[122,203,73,-0.4583333333333333],[122,203,74,-0.4583333333333333],[122,203,75,-0.4583333333333333],[122,203,76,-0.4583333333333333],[122,203,77,-0.4583333333333333],[122,203,78,-0.4583333333333333],[122,203,79,-0.4583333333333333],[122,204,64,-0.4583333333333333],[122,204,65,-0.4583333333333333],[122,204,66,-0.4583333333333333],[122,204,67,-0.4583333333333333],[122,204,68,-0.4583333333333333],[122,204,69,-0.4583333333333333],[122,204,70,-0.4583333333333333],[122,204,71,-0.4583333333333333],[122,204,72,-0.4583333333333333],[122,204,73,-0.4583333333333333],[122,204,74,-0.4583333333333333],[122,204,75,-0.4583333333333333],[122,204,76,-0.4583333333333333],[122,204,77,-0.4583333333333333],[122,204,78,-0.4583333333333333],[122,204,79,-0.4583333333333333],[122,205,64,-0.4583333333333333],[122,205,65,-0.4583333333333333],[122,205,66,-0.4583333333333333],[122,205,67,-0.4583333333333333],[122,205,68,-0.4583333333333333],[122,205,69,-0.4583333333333333],[122,205,70,-0.4583333333333333],[122,205,71,-0.4583333333333333],[122,205,72,-0.4583333333333333],[122,205,73,-0.4583333333333333],[122,205,74,-0.4583333333333333],[122,205,75,-0.4583333333333333],[122,205,76,-0.4583333333333333],[122,205,77,-0.4583333333333333],[122,205,78,-0.4583333333333333],[122,205,79,-0.4583333333333333],[122,206,64,-0.4583333333333333],[122,206,65,-0.4583333333333333],[122,206,66,-0.4583333333333333],[122,206,67,-0.4583333333333333],[122,206,68,-0.4583333333333333],[122,206,69,-0.4583333333333333],[122,206,70,-0.4583333333333333],[122,206,71,-0.4583333333333333],[122,206,72,-0.4583333333333333],[122,206,73,-0.4583333333333333],[122,206,74,-0.4583333333333333],[122,206,75,-0.4583333333333333],[122,206,76,-0.4583333333333333],[122,206,77,-0.4583333333333333],[122,206,78,-0.4583333333333333],[122,206,79,-0.4583333333333333],[122,207,64,-0.4583333333333333],[122,207,65,-0.4583333333333333],[122,207,66,-0.4583333333333333],[122,207,67,-0.4583333333333333],[122,207,68,-0.4583333333333333],[122,207,69,-0.4583333333333333],[122,207,70,-0.4583333333333333],[122,207,71,-0.4583333333333333],[122,207,72,-0.4583333333333333],[122,207,73,-0.4583333333333333],[122,207,74,-0.4583333333333333],[122,207,75,-0.4583333333333333],[122,207,76,-0.4583333333333333],[122,207,77,-0.4583333333333333],[122,207,78,-0.4583333333333333],[122,207,79,-0.4583333333333333],[122,208,64,-0.4583333333333333],[122,208,65,-0.4583333333333333],[122,208,66,-0.4583333333333333],[122,208,67,-0.4583333333333333],[122,208,68,-0.4583333333333333],[122,208,69,-0.4583333333333333],[122,208,70,-0.4583333333333333],[122,208,71,-0.4583333333333333],[122,208,72,-0.4583333333333333],[122,208,73,-0.4583333333333333],[122,208,74,-0.4583333333333333],[122,208,75,-0.4583333333333333],[122,208,76,-0.4583333333333333],[122,208,77,-0.4583333333333333],[122,208,78,-0.4583333333333333],[122,208,79,-0.4583333333333333],[122,209,64,-0.4583333333333333],[122,209,65,-0.4583333333333333],[122,209,66,-0.4583333333333333],[122,209,67,-0.4583333333333333],[122,209,68,-0.4583333333333333],[122,209,69,-0.4583333333333333],[122,209,70,-0.4583333333333333],[122,209,71,-0.4583333333333333],[122,209,72,-0.4583333333333333],[122,209,73,-0.4583333333333333],[122,209,74,-0.4583333333333333],[122,209,75,-0.4583333333333333],[122,209,76,-0.4583333333333333],[122,209,77,-0.4583333333333333],[122,209,78,-0.4583333333333333],[122,209,79,-0.4583333333333333],[122,210,64,-0.4583333333333333],[122,210,65,-0.4583333333333333],[122,210,66,-0.4583333333333333],[122,210,67,-0.4583333333333333],[122,210,68,-0.4583333333333333],[122,210,69,-0.4583333333333333],[122,210,70,-0.4583333333333333],[122,210,71,-0.4583333333333333],[122,210,72,-0.4583333333333333],[122,210,73,-0.4583333333333333],[122,210,74,-0.4583333333333333],[122,210,75,-0.4583333333333333],[122,210,76,-0.4583333333333333],[122,210,77,-0.4583333333333333],[122,210,78,-0.4583333333333333],[122,210,79,-0.4583333333333333],[122,211,64,-0.4583333333333333],[122,211,65,-0.4583333333333333],[122,211,66,-0.4583333333333333],[122,211,67,-0.4583333333333333],[122,211,68,-0.4583333333333333],[122,211,69,-0.4583333333333333],[122,211,70,-0.4583333333333333],[122,211,71,-0.4583333333333333],[122,211,72,-0.4583333333333333],[122,211,73,-0.4583333333333333],[122,211,74,-0.4583333333333333],[122,211,75,-0.4583333333333333],[122,211,76,-0.4583333333333333],[122,211,77,-0.4583333333333333],[122,211,78,-0.4583333333333333],[122,211,79,-0.4583333333333333],[122,212,64,-0.4583333333333333],[122,212,65,-0.4583333333333333],[122,212,66,-0.4583333333333333],[122,212,67,-0.4583333333333333],[122,212,68,-0.4583333333333333],[122,212,69,-0.4583333333333333],[122,212,70,-0.4583333333333333],[122,212,71,-0.4583333333333333],[122,212,72,-0.4583333333333333],[122,212,73,-0.4583333333333333],[122,212,74,-0.4583333333333333],[122,212,75,-0.4583333333333333],[122,212,76,-0.4583333333333333],[122,212,77,-0.4583333333333333],[122,212,78,-0.4583333333333333],[122,212,79,-0.4583333333333333],[122,213,64,-0.4583333333333333],[122,213,65,-0.4583333333333333],[122,213,66,-0.4583333333333333],[122,213,67,-0.4583333333333333],[122,213,68,-0.4583333333333333],[122,213,69,-0.4583333333333333],[122,213,70,-0.4583333333333333],[122,213,71,-0.4583333333333333],[122,213,72,-0.4583333333333333],[122,213,73,-0.4583333333333333],[122,213,74,-0.4583333333333333],[122,213,75,-0.4583333333333333],[122,213,76,-0.4583333333333333],[122,213,77,-0.4583333333333333],[122,213,78,-0.4583333333333333],[122,213,79,-0.4583333333333333],[122,214,64,-0.4583333333333333],[122,214,65,-0.4583333333333333],[122,214,66,-0.4583333333333333],[122,214,67,-0.4583333333333333],[122,214,68,-0.4583333333333333],[122,214,69,-0.4583333333333333],[122,214,70,-0.4583333333333333],[122,214,71,-0.4583333333333333],[122,214,72,-0.4583333333333333],[122,214,73,-0.4583333333333333],[122,214,74,-0.4583333333333333],[122,214,75,-0.4583333333333333],[122,214,76,-0.4583333333333333],[122,214,77,-0.4583333333333333],[122,214,78,-0.4583333333333333],[122,214,79,-0.4583333333333333],[122,215,64,-0.4583333333333333],[122,215,65,-0.4583333333333333],[122,215,66,-0.4583333333333333],[122,215,67,-0.4583333333333333],[122,215,68,-0.4583333333333333],[122,215,69,-0.4583333333333333],[122,215,70,-0.4583333333333333],[122,215,71,-0.4583333333333333],[122,215,72,-0.4583333333333333],[122,215,73,-0.4583333333333333],[122,215,74,-0.4583333333333333],[122,215,75,-0.4583333333333333],[122,215,76,-0.4583333333333333],[122,215,77,-0.4583333333333333],[122,215,78,-0.4583333333333333],[122,215,79,-0.4583333333333333],[122,216,64,-0.4583333333333333],[122,216,65,-0.4583333333333333],[122,216,66,-0.4583333333333333],[122,216,67,-0.4583333333333333],[122,216,68,-0.4583333333333333],[122,216,69,-0.4583333333333333],[122,216,70,-0.4583333333333333],[122,216,71,-0.4583333333333333],[122,216,72,-0.4583333333333333],[122,216,73,-0.4583333333333333],[122,216,74,-0.4583333333333333],[122,216,75,-0.4583333333333333],[122,216,76,-0.4583333333333333],[122,216,77,-0.4583333333333333],[122,216,78,-0.4583333333333333],[122,216,79,-0.4583333333333333],[122,217,64,-0.4583333333333333],[122,217,65,-0.4583333333333333],[122,217,66,-0.4583333333333333],[122,217,67,-0.4583333333333333],[122,217,68,-0.4583333333333333],[122,217,69,-0.4583333333333333],[122,217,70,-0.4583333333333333],[122,217,71,-0.4583333333333333],[122,217,72,-0.4583333333333333],[122,217,73,-0.4583333333333333],[122,217,74,-0.4583333333333333],[122,217,75,-0.4583333333333333],[122,217,76,-0.4583333333333333],[122,217,77,-0.4583333333333333],[122,217,78,-0.4583333333333333],[122,217,79,-0.4583333333333333],[122,218,64,-0.4583333333333333],[122,218,65,-0.4583333333333333],[122,218,66,-0.4583333333333333],[122,218,67,-0.4583333333333333],[122,218,68,-0.4583333333333333],[122,218,69,-0.4583333333333333],[122,218,70,-0.4583333333333333],[122,218,71,-0.4583333333333333],[122,218,72,-0.4583333333333333],[122,218,73,-0.4583333333333333],[122,218,74,-0.4583333333333333],[122,218,75,-0.4583333333333333],[122,218,76,-0.4583333333333333],[122,218,77,-0.4583333333333333],[122,218,78,-0.4583333333333333],[122,218,79,-0.4583333333333333],[122,219,64,-0.4583333333333333],[122,219,65,-0.4583333333333333],[122,219,66,-0.4583333333333333],[122,219,67,-0.4583333333333333],[122,219,68,-0.4583333333333333],[122,219,69,-0.4583333333333333],[122,219,70,-0.4583333333333333],[122,219,71,-0.4583333333333333],[122,219,72,-0.4583333333333333],[122,219,73,-0.4583333333333333],[122,219,74,-0.4583333333333333],[122,219,75,-0.4583333333333333],[122,219,76,-0.4583333333333333],[122,219,77,-0.4583333333333333],[122,219,78,-0.4583333333333333],[122,219,79,-0.4583333333333333],[122,220,64,-0.4583333333333333],[122,220,65,-0.4583333333333333],[122,220,66,-0.4583333333333333],[122,220,67,-0.4583333333333333],[122,220,68,-0.4583333333333333],[122,220,69,-0.4583333333333333],[122,220,70,-0.4583333333333333],[122,220,71,-0.4583333333333333],[122,220,72,-0.4583333333333333],[122,220,73,-0.4583333333333333],[122,220,74,-0.4583333333333333],[122,220,75,-0.4583333333333333],[122,220,76,-0.4583333333333333],[122,220,77,-0.4583333333333333],[122,220,78,-0.4583333333333333],[122,220,79,-0.4583333333333333],[122,221,64,-0.4583333333333333],[122,221,65,-0.4583333333333333],[122,221,66,-0.4583333333333333],[122,221,67,-0.4583333333333333],[122,221,68,-0.4583333333333333],[122,221,69,-0.4583333333333333],[122,221,70,-0.4583333333333333],[122,221,71,-0.4583333333333333],[122,221,72,-0.4583333333333333],[122,221,73,-0.4583333333333333],[122,221,74,-0.4583333333333333],[122,221,75,-0.4583333333333333],[122,221,76,-0.4583333333333333],[122,221,77,-0.4583333333333333],[122,221,78,-0.4583333333333333],[122,221,79,-0.4583333333333333],[122,222,64,-0.4583333333333333],[122,222,65,-0.4583333333333333],[122,222,66,-0.4583333333333333],[122,222,67,-0.4583333333333333],[122,222,68,-0.4583333333333333],[122,222,69,-0.4583333333333333],[122,222,70,-0.4583333333333333],[122,222,71,-0.4583333333333333],[122,222,72,-0.4583333333333333],[122,222,73,-0.4583333333333333],[122,222,74,-0.4583333333333333],[122,222,75,-0.4583333333333333],[122,222,76,-0.4583333333333333],[122,222,77,-0.4583333333333333],[122,222,78,-0.4583333333333333],[122,222,79,-0.4583333333333333],[122,223,64,-0.4583333333333333],[122,223,65,-0.4583333333333333],[122,223,66,-0.4583333333333333],[122,223,67,-0.4583333333333333],[122,223,68,-0.4583333333333333],[122,223,69,-0.4583333333333333],[122,223,70,-0.4583333333333333],[122,223,71,-0.4583333333333333],[122,223,72,-0.4583333333333333],[122,223,73,-0.4583333333333333],[122,223,74,-0.4583333333333333],[122,223,75,-0.4583333333333333],[122,223,76,-0.4583333333333333],[122,223,77,-0.4583333333333333],[122,223,78,-0.4583333333333333],[122,223,79,-0.4583333333333333],[122,224,64,-0.4583333333333333],[122,224,65,-0.4583333333333333],[122,224,66,-0.4583333333333333],[122,224,67,-0.4583333333333333],[122,224,68,-0.4583333333333333],[122,224,69,-0.4583333333333333],[122,224,70,-0.4583333333333333],[122,224,71,-0.4583333333333333],[122,224,72,-0.4583333333333333],[122,224,73,-0.4583333333333333],[122,224,74,-0.4583333333333333],[122,224,75,-0.4583333333333333],[122,224,76,-0.4583333333333333],[122,224,77,-0.4583333333333333],[122,224,78,-0.4583333333333333],[122,224,79,-0.4583333333333333],[122,225,64,-0.4583333333333333],[122,225,65,-0.4583333333333333],[122,225,66,-0.4583333333333333],[122,225,67,-0.4583333333333333],[122,225,68,-0.4583333333333333],[122,225,69,-0.4583333333333333],[122,225,70,-0.4583333333333333],[122,225,71,-0.4583333333333333],[122,225,72,-0.4583333333333333],[122,225,73,-0.4583333333333333],[122,225,74,-0.4583333333333333],[122,225,75,-0.4583333333333333],[122,225,76,-0.4583333333333333],[122,225,77,-0.4583333333333333],[122,225,78,-0.4583333333333333],[122,225,79,-0.4583333333333333],[122,226,64,-0.4583333333333333],[122,226,65,-0.4583333333333333],[122,226,66,-0.4583333333333333],[122,226,67,-0.4583333333333333],[122,226,68,-0.4583333333333333],[122,226,69,-0.4583333333333333],[122,226,70,-0.4583333333333333],[122,226,71,-0.4583333333333333],[122,226,72,-0.4583333333333333],[122,226,73,-0.4583333333333333],[122,226,74,-0.4583333333333333],[122,226,75,-0.4583333333333333],[122,226,76,-0.4583333333333333],[122,226,77,-0.4583333333333333],[122,226,78,-0.4583333333333333],[122,226,79,-0.4583333333333333],[122,227,64,-0.4583333333333333],[122,227,65,-0.4583333333333333],[122,227,66,-0.4583333333333333],[122,227,67,-0.4583333333333333],[122,227,68,-0.4583333333333333],[122,227,69,-0.4583333333333333],[122,227,70,-0.4583333333333333],[122,227,71,-0.4583333333333333],[122,227,72,-0.4583333333333333],[122,227,73,-0.4583333333333333],[122,227,74,-0.4583333333333333],[122,227,75,-0.4583333333333333],[122,227,76,-0.4583333333333333],[122,227,77,-0.4583333333333333],[122,227,78,-0.4583333333333333],[122,227,79,-0.4583333333333333],[122,228,64,-0.4583333333333333],[122,228,65,-0.4583333333333333],[122,228,66,-0.4583333333333333],[122,228,67,-0.4583333333333333],[122,228,68,-0.4583333333333333],[122,228,69,-0.4583333333333333],[122,228,70,-0.4583333333333333],[122,228,71,-0.4583333333333333],[122,228,72,-0.4583333333333333],[122,228,73,-0.4583333333333333],[122,228,74,-0.4583333333333333],[122,228,75,-0.4583333333333333],[122,228,76,-0.4583333333333333],[122,228,77,-0.4583333333333333],[122,228,78,-0.4583333333333333],[122,228,79,-0.4583333333333333],[122,229,64,-0.4583333333333333],[122,229,65,-0.4583333333333333],[122,229,66,-0.4583333333333333],[122,229,67,-0.4583333333333333],[122,229,68,-0.4583333333333333],[122,229,69,-0.4583333333333333],[122,229,70,-0.4583333333333333],[122,229,71,-0.4583333333333333],[122,229,72,-0.4583333333333333],[122,229,73,-0.4583333333333333],[122,229,74,-0.4583333333333333],[122,229,75,-0.4583333333333333],[122,229,76,-0.4583333333333333],[122,229,77,-0.4583333333333333],[122,229,78,-0.4583333333333333],[122,229,79,-0.4583333333333333],[122,230,64,-0.4583333333333333],[122,230,65,-0.4583333333333333],[122,230,66,-0.4583333333333333],[122,230,67,-0.4583333333333333],[122,230,68,-0.4583333333333333],[122,230,69,-0.4583333333333333],[122,230,70,-0.4583333333333333],[122,230,71,-0.4583333333333333],[122,230,72,-0.4583333333333333],[122,230,73,-0.4583333333333333],[122,230,74,-0.4583333333333333],[122,230,75,-0.4583333333333333],[122,230,76,-0.4583333333333333],[122,230,77,-0.4583333333333333],[122,230,78,-0.4583333333333333],[122,230,79,-0.4583333333333333],[122,231,64,-0.4583333333333333],[122,231,65,-0.4583333333333333],[122,231,66,-0.4583333333333333],[122,231,67,-0.4583333333333333],[122,231,68,-0.4583333333333333],[122,231,69,-0.4583333333333333],[122,231,70,-0.4583333333333333],[122,231,71,-0.4583333333333333],[122,231,72,-0.4583333333333333],[122,231,73,-0.4583333333333333],[122,231,74,-0.4583333333333333],[122,231,75,-0.4583333333333333],[122,231,76,-0.4583333333333333],[122,231,77,-0.4583333333333333],[122,231,78,-0.4583333333333333],[122,231,79,-0.4583333333333333],[122,232,64,-0.4583333333333333],[122,232,65,-0.4583333333333333],[122,232,66,-0.4583333333333333],[122,232,67,-0.4583333333333333],[122,232,68,-0.4583333333333333],[122,232,69,-0.4583333333333333],[122,232,70,-0.4583333333333333],[122,232,71,-0.4583333333333333],[122,232,72,-0.4583333333333333],[122,232,73,-0.4583333333333333],[122,232,74,-0.4583333333333333],[122,232,75,-0.4583333333333333],[122,232,76,-0.4583333333333333],[122,232,77,-0.4583333333333333],[122,232,78,-0.4583333333333333],[122,232,79,-0.4583333333333333],[122,233,64,-0.4583333333333333],[122,233,65,-0.4583333333333333],[122,233,66,-0.4583333333333333],[122,233,67,-0.4583333333333333],[122,233,68,-0.4583333333333333],[122,233,69,-0.4583333333333333],[122,233,70,-0.4583333333333333],[122,233,71,-0.4583333333333333],[122,233,72,-0.4583333333333333],[122,233,73,-0.4583333333333333],[122,233,74,-0.4583333333333333],[122,233,75,-0.4583333333333333],[122,233,76,-0.4583333333333333],[122,233,77,-0.4583333333333333],[122,233,78,-0.4583333333333333],[122,233,79,-0.4583333333333333],[122,234,64,-0.4583333333333333],[122,234,65,-0.4583333333333333],[122,234,66,-0.4583333333333333],[122,234,67,-0.4583333333333333],[122,234,68,-0.4583333333333333],[122,234,69,-0.4583333333333333],[122,234,70,-0.4583333333333333],[122,234,71,-0.4583333333333333],[122,234,72,-0.4583333333333333],[122,234,73,-0.4583333333333333],[122,234,74,-0.4583333333333333],[122,234,75,-0.4583333333333333],[122,234,76,-0.4583333333333333],[122,234,77,-0.4583333333333333],[122,234,78,-0.4583333333333333],[122,234,79,-0.4583333333333333],[122,235,64,-0.4583333333333333],[122,235,65,-0.4583333333333333],[122,235,66,-0.4583333333333333],[122,235,67,-0.4583333333333333],[122,235,68,-0.4583333333333333],[122,235,69,-0.4583333333333333],[122,235,70,-0.4583333333333333],[122,235,71,-0.4583333333333333],[122,235,72,-0.4583333333333333],[122,235,73,-0.4583333333333333],[122,235,74,-0.4583333333333333],[122,235,75,-0.4583333333333333],[122,235,76,-0.4583333333333333],[122,235,77,-0.4583333333333333],[122,235,78,-0.4583333333333333],[122,235,79,-0.4583333333333333],[122,236,64,-0.4583333333333333],[122,236,65,-0.4583333333333333],[122,236,66,-0.4583333333333333],[122,236,67,-0.4583333333333333],[122,236,68,-0.4583333333333333],[122,236,69,-0.4583333333333333],[122,236,70,-0.4583333333333333],[122,236,71,-0.4583333333333333],[122,236,72,-0.4583333333333333],[122,236,73,-0.4583333333333333],[122,236,74,-0.4583333333333333],[122,236,75,-0.4583333333333333],[122,236,76,-0.4583333333333333],[122,236,77,-0.4583333333333333],[122,236,78,-0.4583333333333333],[122,236,79,-0.4583333333333333],[122,237,64,-0.4583333333333333],[122,237,65,-0.4583333333333333],[122,237,66,-0.4583333333333333],[122,237,67,-0.4583333333333333],[122,237,68,-0.4583333333333333],[122,237,69,-0.4583333333333333],[122,237,70,-0.4583333333333333],[122,237,71,-0.4583333333333333],[122,237,72,-0.4583333333333333],[122,237,73,-0.4583333333333333],[122,237,74,-0.4583333333333333],[122,237,75,-0.4583333333333333],[122,237,76,-0.4583333333333333],[122,237,77,-0.4583333333333333],[122,237,78,-0.4583333333333333],[122,237,79,-0.4583333333333333],[122,238,64,-0.4583333333333333],[122,238,65,-0.4583333333333333],[122,238,66,-0.4583333333333333],[122,238,67,-0.4583333333333333],[122,238,68,-0.4583333333333333],[122,238,69,-0.4583333333333333],[122,238,70,-0.4583333333333333],[122,238,71,-0.4583333333333333],[122,238,72,-0.4583333333333333],[122,238,73,-0.4583333333333333],[122,238,74,-0.4583333333333333],[122,238,75,-0.4583333333333333],[122,238,76,-0.4583333333333333],[122,238,77,-0.4583333333333333],[122,238,78,-0.4583333333333333],[122,238,79,-0.4583333333333333],[122,239,64,-0.4583333333333333],[122,239,65,-0.4583333333333333],[122,239,66,-0.4583333333333333],[122,239,67,-0.4583333333333333],[122,239,68,-0.4583333333333333],[122,239,69,-0.4583333333333333],[122,239,70,-0.4583333333333333],[122,239,71,-0.4583333333333333],[122,239,72,-0.4583333333333333],[122,239,73,-0.4583333333333333],[122,239,74,-0.4583333333333333],[122,239,75,-0.4583333333333333],[122,239,76,-0.4583333333333333],[122,239,77,-0.4583333333333333],[122,239,78,-0.4583333333333333],[122,239,79,-0.4583333333333333],[122,240,64,-0.4583333333333333],[122,240,65,-0.4583333333333333],[122,240,66,-0.4583333333333333],[122,240,67,-0.4583333333333333],[122,240,68,-0.4583333333333333],[122,240,69,-0.4583333333333333],[122,240,70,-0.4583333333333333],[122,240,71,-0.4583333333333333],[122,240,72,-0.4583333333333333],[122,240,73,-0.4583333333333333],[122,240,74,-0.4583333333333333],[122,240,75,-0.4583333333333333],[122,240,76,-0.4583333333333333],[122,240,77,-0.4583333333333333],[122,240,78,-0.4583333333333333],[122,240,79,-0.4583333333333333],[122,241,64,-0.4583333333333333],[122,241,65,-0.4583333333333333],[122,241,66,-0.4583333333333333],[122,241,67,-0.4583333333333333],[122,241,68,-0.4583333333333333],[122,241,69,-0.4583333333333333],[122,241,70,-0.4583333333333333],[122,241,71,-0.4583333333333333],[122,241,72,-0.4583333333333333],[122,241,73,-0.4583333333333333],[122,241,74,-0.4583333333333333],[122,241,75,-0.4583333333333333],[122,241,76,-0.4583333333333333],[122,241,77,-0.4583333333333333],[122,241,78,-0.4583333333333333],[122,241,79,-0.4583333333333333],[122,242,64,-0.4583333333333333],[122,242,65,-0.4583333333333333],[122,242,66,-0.4583333333333333],[122,242,67,-0.4583333333333333],[122,242,68,-0.4583333333333333],[122,242,69,-0.4583333333333333],[122,242,70,-0.4583333333333333],[122,242,71,-0.4583333333333333],[122,242,72,-0.4583333333333333],[122,242,73,-0.4583333333333333],[122,242,74,-0.4583333333333333],[122,242,75,-0.4583333333333333],[122,242,76,-0.4583333333333333],[122,242,77,-0.4583333333333333],[122,242,78,-0.4583333333333333],[122,242,79,-0.4583333333333333],[122,243,64,-0.4583333333333333],[122,243,65,-0.4583333333333333],[122,243,66,-0.4583333333333333],[122,243,67,-0.4583333333333333],[122,243,68,-0.4583333333333333],[122,243,69,-0.4583333333333333],[122,243,70,-0.4583333333333333],[122,243,71,-0.4583333333333333],[122,243,72,-0.4583333333333333],[122,243,73,-0.4583333333333333],[122,243,74,-0.4583333333333333],[122,243,75,-0.4583333333333333],[122,243,76,-0.4583333333333333],[122,243,77,-0.4583333333333333],[122,243,78,-0.4583333333333333],[122,243,79,-0.4583333333333333],[122,244,64,-0.4583333333333333],[122,244,65,-0.4583333333333333],[122,244,66,-0.4583333333333333],[122,244,67,-0.4583333333333333],[122,244,68,-0.4583333333333333],[122,244,69,-0.4583333333333333],[122,244,70,-0.4583333333333333],[122,244,71,-0.4583333333333333],[122,244,72,-0.4583333333333333],[122,244,73,-0.4583333333333333],[122,244,74,-0.4583333333333333],[122,244,75,-0.4583333333333333],[122,244,76,-0.4583333333333333],[122,244,77,-0.4583333333333333],[122,244,78,-0.4583333333333333],[122,244,79,-0.4583333333333333],[122,245,64,-0.4583333333333333],[122,245,65,-0.4583333333333333],[122,245,66,-0.4583333333333333],[122,245,67,-0.4583333333333333],[122,245,68,-0.4583333333333333],[122,245,69,-0.4583333333333333],[122,245,70,-0.4583333333333333],[122,245,71,-0.4583333333333333],[122,245,72,-0.4583333333333333],[122,245,73,-0.4583333333333333],[122,245,74,-0.4583333333333333],[122,245,75,-0.4583333333333333],[122,245,76,-0.4583333333333333],[122,245,77,-0.4583333333333333],[122,245,78,-0.4583333333333333],[122,245,79,-0.4583333333333333],[122,246,64,-0.4583333333333333],[122,246,65,-0.4583333333333333],[122,246,66,-0.4583333333333333],[122,246,67,-0.4583333333333333],[122,246,68,-0.4583333333333333],[122,246,69,-0.4583333333333333],[122,246,70,-0.4583333333333333],[122,246,71,-0.4583333333333333],[122,246,72,-0.4583333333333333],[122,246,73,-0.4583333333333333],[122,246,74,-0.4583333333333333],[122,246,75,-0.4583333333333333],[122,246,76,-0.4583333333333333],[122,246,77,-0.4583333333333333],[122,246,78,-0.4583333333333333],[122,246,79,-0.4583333333333333],[122,247,64,-0.4583333333333333],[122,247,65,-0.4583333333333333],[122,247,66,-0.4583333333333333],[122,247,67,-0.4583333333333333],[122,247,68,-0.4583333333333333],[122,247,69,-0.4583333333333333],[122,247,70,-0.4583333333333333],[122,247,71,-0.4583333333333333],[122,247,72,-0.4583333333333333],[122,247,73,-0.4583333333333333],[122,247,74,-0.4583333333333333],[122,247,75,-0.4583333333333333],[122,247,76,-0.4583333333333333],[122,247,77,-0.4583333333333333],[122,247,78,-0.4583333333333333],[122,247,79,-0.4583333333333333],[122,248,64,-0.4583333333333333],[122,248,65,-0.4583333333333333],[122,248,66,-0.4583333333333333],[122,248,67,-0.4583333333333333],[122,248,68,-0.4583333333333333],[122,248,69,-0.4583333333333333],[122,248,70,-0.4583333333333333],[122,248,71,-0.4583333333333333],[122,248,72,-0.4583333333333333],[122,248,73,-0.4583333333333333],[122,248,74,-0.4583333333333333],[122,248,75,-0.4583333333333333],[122,248,76,-0.4583333333333333],[122,248,77,-0.4583333333333333],[122,248,78,-0.4583333333333333],[122,248,79,-0.4583333333333333],[122,249,64,-0.4583333333333333],[122,249,65,-0.4583333333333333],[122,249,66,-0.4583333333333333],[122,249,67,-0.4583333333333333],[122,249,68,-0.4583333333333333],[122,249,69,-0.4583333333333333],[122,249,70,-0.4583333333333333],[122,249,71,-0.4583333333333333],[122,249,72,-0.4583333333333333],[122,249,73,-0.4583333333333333],[122,249,74,-0.4583333333333333],[122,249,75,-0.4583333333333333],[122,249,76,-0.4583333333333333],[122,249,77,-0.4583333333333333],[122,249,78,-0.4583333333333333],[122,249,79,-0.4583333333333333],[122,250,64,-0.4583333333333333],[122,250,65,-0.4583333333333333],[122,250,66,-0.4583333333333333],[122,250,67,-0.4583333333333333],[122,250,68,-0.4583333333333333],[122,250,69,-0.4583333333333333],[122,250,70,-0.4583333333333333],[122,250,71,-0.4583333333333333],[122,250,72,-0.4583333333333333],[122,250,73,-0.4583333333333333],[122,250,74,-0.4583333333333333],[122,250,75,-0.4583333333333333],[122,250,76,-0.4583333333333333],[122,250,77,-0.4583333333333333],[122,250,78,-0.4583333333333333],[122,250,79,-0.4583333333333333],[122,251,64,-0.4583333333333333],[122,251,65,-0.4583333333333333],[122,251,66,-0.4583333333333333],[122,251,67,-0.4583333333333333],[122,251,68,-0.4583333333333333],[122,251,69,-0.4583333333333333],[122,251,70,-0.4583333333333333],[122,251,71,-0.4583333333333333],[122,251,72,-0.4583333333333333],[122,251,73,-0.4583333333333333],[122,251,74,-0.4583333333333333],[122,251,75,-0.4583333333333333],[122,251,76,-0.4583333333333333],[122,251,77,-0.4583333333333333],[122,251,78,-0.4583333333333333],[122,251,79,-0.4583333333333333],[122,252,64,-0.4583333333333333],[122,252,65,-0.4583333333333333],[122,252,66,-0.4583333333333333],[122,252,67,-0.4583333333333333],[122,252,68,-0.4583333333333333],[122,252,69,-0.4583333333333333],[122,252,70,-0.4583333333333333],[122,252,71,-0.4583333333333333],[122,252,72,-0.4583333333333333],[122,252,73,-0.4583333333333333],[122,252,74,-0.4583333333333333],[122,252,75,-0.4583333333333333],[122,252,76,-0.4583333333333333],[122,252,77,-0.4583333333333333],[122,252,78,-0.4583333333333333],[122,252,79,-0.4583333333333333],[122,253,64,-0.4583333333333333],[122,253,65,-0.4583333333333333],[122,253,66,-0.4583333333333333],[122,253,67,-0.4583333333333333],[122,253,68,-0.4583333333333333],[122,253,69,-0.4583333333333333],[122,253,70,-0.4583333333333333],[122,253,71,-0.4583333333333333],[122,253,72,-0.4583333333333333],[122,253,73,-0.4583333333333333],[122,253,74,-0.4583333333333333],[122,253,75,-0.4583333333333333],[122,253,76,-0.4583333333333333],[122,253,77,-0.4583333333333333],[122,253,78,-0.4583333333333333],[122,253,79,-0.4583333333333333],[122,254,64,-0.3785100779330394],[122,254,65,-0.37848374689162195],[122,254,66,-0.37791670182992726],[122,254,67,-0.37719317710118294],[122,254,68,-0.3770088249458132],[122,254,69,-0.3776892073950536],[122,254,70,-0.37998778861436217],[122,254,71,-0.3820744105027061],[122,254,72,-0.38315636498904415],[122,254,73,-0.3843927226831759],[122,254,74,-0.38470115930610277],[122,254,75,-0.3848345658918624],[122,254,76,-0.38480271223244666],[122,254,77,-0.3849299160878426],[122,254,78,-0.3842505143884825],[122,254,79,-0.38298490599534046],[122,255,64,-0.21016213140980305],[122,255,65,-0.21008708407300714],[122,255,66,-0.20972544770485912],[122,255,67,-0.20936980916159478],[122,255,68,-0.20923659691172042],[122,255,69,-0.20959382728939271],[122,255,70,-0.21074320693371668],[122,255,71,-0.21201494658601794],[122,255,72,-0.21277749470353993],[122,255,73,-0.21347600832456548],[122,255,74,-0.21366815974982278],[122,255,75,-0.2135337541181429],[122,255,76,-0.21371293895145968],[122,255,77,-0.2137352352256503],[122,255,78,-0.21344129109819593],[122,255,79,-0.21249987540812734],[122,256,64,-0.02499479166666667],[122,256,65,-0.02499479166666667],[122,256,66,-0.02499479166666667],[122,256,67,-0.02499479166666667],[122,256,68,-0.02499479166666667],[122,256,69,-0.02499479166666667],[122,256,70,-0.02499479166666667],[122,256,71,-0.02499479166666667],[122,256,72,-0.02499479166666667],[122,256,73,-0.02499479166666667],[122,256,74,-0.02499479166666667],[122,256,75,-0.02499479166666667],[122,256,76,-0.02499479166666667],[122,256,77,-0.02499479166666667],[122,256,78,-0.02499479166666667],[122,256,79,-0.02499479166666667],[122,257,64,-0.02499479166666667],[122,257,65,-0.02499479166666667],[122,257,66,-0.02499479166666667],[122,257,67,-0.02499479166666667],[122,257,68,-0.02499479166666667],[122,257,69,-0.02499479166666667],[122,257,70,-0.02499479166666667],[122,257,71,-0.02499479166666667],[122,257,72,-0.02499479166666667],[122,257,73,-0.02499479166666667],[122,257,74,-0.02499479166666667],[122,257,75,-0.02499479166666667],[122,257,76,-0.02499479166666667],[122,257,77,-0.02499479166666667],[122,257,78,-0.02499479166666667],[122,257,79,-0.02499479166666667],[122,258,64,-0.02499479166666667],[122,258,65,-0.02499479166666667],[122,258,66,-0.02499479166666667],[122,258,67,-0.02499479166666667],[122,258,68,-0.02499479166666667],[122,258,69,-0.02499479166666667],[122,258,70,-0.02499479166666667],[122,258,71,-0.02499479166666667],[122,258,72,-0.02499479166666667],[122,258,73,-0.02499479166666667],[122,258,74,-0.02499479166666667],[122,258,75,-0.02499479166666667],[122,258,76,-0.02499479166666667],[122,258,77,-0.02499479166666667],[122,258,78,-0.02499479166666667],[122,258,79,-0.02499479166666667],[122,259,64,-0.02499479166666667],[122,259,65,-0.02499479166666667],[122,259,66,-0.02499479166666667],[122,259,67,-0.02499479166666667],[122,259,68,-0.02499479166666667],[122,259,69,-0.02499479166666667],[122,259,70,-0.02499479166666667],[122,259,71,-0.02499479166666667],[122,259,72,-0.02499479166666667],[122,259,73,-0.02499479166666667],[122,259,74,-0.02499479166666667],[122,259,75,-0.02499479166666667],[122,259,76,-0.02499479166666667],[122,259,77,-0.02499479166666667],[122,259,78,-0.02499479166666667],[122,259,79,-0.02499479166666667],[122,260,64,-0.02499479166666667],[122,260,65,-0.02499479166666667],[122,260,66,-0.02499479166666667],[122,260,67,-0.02499479166666667],[122,260,68,-0.02499479166666667],[122,260,69,-0.02499479166666667],[122,260,70,-0.02499479166666667],[122,260,71,-0.02499479166666667],[122,260,72,-0.02499479166666667],[122,260,73,-0.02499479166666667],[122,260,74,-0.02499479166666667],[122,260,75,-0.02499479166666667],[122,260,76,-0.02499479166666667],[122,260,77,-0.02499479166666667],[122,260,78,-0.02499479166666667],[122,260,79,-0.02499479166666667],[122,261,64,-0.02499479166666667],[122,261,65,-0.02499479166666667],[122,261,66,-0.02499479166666667],[122,261,67,-0.02499479166666667],[122,261,68,-0.02499479166666667],[122,261,69,-0.02499479166666667],[122,261,70,-0.02499479166666667],[122,261,71,-0.02499479166666667],[122,261,72,-0.02499479166666667],[122,261,73,-0.02499479166666667],[122,261,74,-0.02499479166666667],[122,261,75,-0.02499479166666667],[122,261,76,-0.02499479166666667],[122,261,77,-0.02499479166666667],[122,261,78,-0.02499479166666667],[122,261,79,-0.02499479166666667],[122,262,64,-0.02499479166666667],[122,262,65,-0.02499479166666667],[122,262,66,-0.02499479166666667],[122,262,67,-0.02499479166666667],[122,262,68,-0.02499479166666667],[122,262,69,-0.02499479166666667],[122,262,70,-0.02499479166666667],[122,262,71,-0.02499479166666667],[122,262,72,-0.02499479166666667],[122,262,73,-0.02499479166666667],[122,262,74,-0.02499479166666667],[122,262,75,-0.02499479166666667],[122,262,76,-0.02499479166666667],[122,262,77,-0.02499479166666667],[122,262,78,-0.02499479166666667],[122,262,79,-0.02499479166666667],[122,263,64,-0.02499479166666667],[122,263,65,-0.02499479166666667],[122,263,66,-0.02499479166666667],[122,263,67,-0.02499479166666667],[122,263,68,-0.02499479166666667],[122,263,69,-0.02499479166666667],[122,263,70,-0.02499479166666667],[122,263,71,-0.02499479166666667],[122,263,72,-0.02499479166666667],[122,263,73,-0.02499479166666667],[122,263,74,-0.02499479166666667],[122,263,75,-0.02499479166666667],[122,263,76,-0.02499479166666667],[122,263,77,-0.02499479166666667],[122,263,78,-0.02499479166666667],[122,263,79,-0.02499479166666667],[122,264,64,-0.02499479166666667],[122,264,65,-0.02499479166666667],[122,264,66,-0.02499479166666667],[122,264,67,-0.02499479166666667],[122,264,68,-0.02499479166666667],[122,264,69,-0.02499479166666667],[122,264,70,-0.02499479166666667],[122,264,71,-0.02499479166666667],[122,264,72,-0.02499479166666667],[122,264,73,-0.02499479166666667],[122,264,74,-0.02499479166666667],[122,264,75,-0.02499479166666667],[122,264,76,-0.02499479166666667],[122,264,77,-0.02499479166666667],[122,264,78,-0.02499479166666667],[122,264,79,-0.02499479166666667],[122,265,64,-0.02499479166666667],[122,265,65,-0.02499479166666667],[122,265,66,-0.02499479166666667],[122,265,67,-0.02499479166666667],[122,265,68,-0.02499479166666667],[122,265,69,-0.02499479166666667],[122,265,70,-0.02499479166666667],[122,265,71,-0.02499479166666667],[122,265,72,-0.02499479166666667],[122,265,73,-0.02499479166666667],[122,265,74,-0.02499479166666667],[122,265,75,-0.02499479166666667],[122,265,76,-0.02499479166666667],[122,265,77,-0.02499479166666667],[122,265,78,-0.02499479166666667],[122,265,79,-0.02499479166666667],[122,266,64,-0.02499479166666667],[122,266,65,-0.02499479166666667],[122,266,66,-0.02499479166666667],[122,266,67,-0.02499479166666667],[122,266,68,-0.02499479166666667],[122,266,69,-0.02499479166666667],[122,266,70,-0.02499479166666667],[122,266,71,-0.02499479166666667],[122,266,72,-0.02499479166666667],[122,266,73,-0.02499479166666667],[122,266,74,-0.02499479166666667],[122,266,75,-0.02499479166666667],[122,266,76,-0.02499479166666667],[122,266,77,-0.02499479166666667],[122,266,78,-0.02499479166666667],[122,266,79,-0.02499479166666667],[122,267,64,-0.02499479166666667],[122,267,65,-0.02499479166666667],[122,267,66,-0.02499479166666667],[122,267,67,-0.02499479166666667],[122,267,68,-0.02499479166666667],[122,267,69,-0.02499479166666667],[122,267,70,-0.02499479166666667],[122,267,71,-0.02499479166666667],[122,267,72,-0.02499479166666667],[122,267,73,-0.02499479166666667],[122,267,74,-0.02499479166666667],[122,267,75,-0.02499479166666667],[122,267,76,-0.02499479166666667],[122,267,77,-0.02499479166666667],[122,267,78,-0.02499479166666667],[122,267,79,-0.02499479166666667],[122,268,64,-0.02499479166666667],[122,268,65,-0.02499479166666667],[122,268,66,-0.02499479166666667],[122,268,67,-0.02499479166666667],[122,268,68,-0.02499479166666667],[122,268,69,-0.02499479166666667],[122,268,70,-0.02499479166666667],[122,268,71,-0.02499479166666667],[122,268,72,-0.02499479166666667],[122,268,73,-0.02499479166666667],[122,268,74,-0.02499479166666667],[122,268,75,-0.02499479166666667],[122,268,76,-0.02499479166666667],[122,268,77,-0.02499479166666667],[122,268,78,-0.02499479166666667],[122,268,79,-0.02499479166666667],[122,269,64,-0.02499479166666667],[122,269,65,-0.02499479166666667],[122,269,66,-0.02499479166666667],[122,269,67,-0.02499479166666667],[122,269,68,-0.02499479166666667],[122,269,69,-0.02499479166666667],[122,269,70,-0.02499479166666667],[122,269,71,-0.02499479166666667],[122,269,72,-0.02499479166666667],[122,269,73,-0.02499479166666667],[122,269,74,-0.02499479166666667],[122,269,75,-0.02499479166666667],[122,269,76,-0.02499479166666667],[122,269,77,-0.02499479166666667],[122,269,78,-0.02499479166666667],[122,269,79,-0.02499479166666667],[122,270,64,-0.02499479166666667],[122,270,65,-0.02499479166666667],[122,270,66,-0.02499479166666667],[122,270,67,-0.02499479166666667],[122,270,68,-0.02499479166666667],[122,270,69,-0.02499479166666667],[122,270,70,-0.02499479166666667],[122,270,71,-0.02499479166666667],[122,270,72,-0.02499479166666667],[122,270,73,-0.02499479166666667],[122,270,74,-0.02499479166666667],[122,270,75,-0.02499479166666667],[122,270,76,-0.02499479166666667],[122,270,77,-0.02499479166666667],[122,270,78,-0.02499479166666667],[122,270,79,-0.02499479166666667],[122,271,64,-0.02499479166666667],[122,271,65,-0.02499479166666667],[122,271,66,-0.02499479166666667],[122,271,67,-0.02499479166666667],[122,271,68,-0.02499479166666667],[122,271,69,-0.02499479166666667],[122,271,70,-0.02499479166666667],[122,271,71,-0.02499479166666667],[122,271,72,-0.02499479166666667],[122,271,73,-0.02499479166666667],[122,271,74,-0.02499479166666667],[122,271,75,-0.02499479166666667],[122,271,76,-0.02499479166666667],[122,271,77,-0.02499479166666667],[122,271,78,-0.02499479166666667],[122,271,79,-0.02499479166666667],[122,272,64,-0.02499479166666667],[122,272,65,-0.02499479166666667],[122,272,66,-0.02499479166666667],[122,272,67,-0.02499479166666667],[122,272,68,-0.02499479166666667],[122,272,69,-0.02499479166666667],[122,272,70,-0.02499479166666667],[122,272,71,-0.02499479166666667],[122,272,72,-0.02499479166666667],[122,272,73,-0.02499479166666667],[122,272,74,-0.02499479166666667],[122,272,75,-0.02499479166666667],[122,272,76,-0.02499479166666667],[122,272,77,-0.02499479166666667],[122,272,78,-0.02499479166666667],[122,272,79,-0.02499479166666667],[122,273,64,-0.02499479166666667],[122,273,65,-0.02499479166666667],[122,273,66,-0.02499479166666667],[122,273,67,-0.02499479166666667],[122,273,68,-0.02499479166666667],[122,273,69,-0.02499479166666667],[122,273,70,-0.02499479166666667],[122,273,71,-0.02499479166666667],[122,273,72,-0.02499479166666667],[122,273,73,-0.02499479166666667],[122,273,74,-0.02499479166666667],[122,273,75,-0.02499479166666667],[122,273,76,-0.02499479166666667],[122,273,77,-0.02499479166666667],[122,273,78,-0.02499479166666667],[122,273,79,-0.02499479166666667],[122,274,64,-0.02499479166666667],[122,274,65,-0.02499479166666667],[122,274,66,-0.02499479166666667],[122,274,67,-0.02499479166666667],[122,274,68,-0.02499479166666667],[122,274,69,-0.02499479166666667],[122,274,70,-0.02499479166666667],[122,274,71,-0.02499479166666667],[122,274,72,-0.02499479166666667],[122,274,73,-0.02499479166666667],[122,274,74,-0.02499479166666667],[122,274,75,-0.02499479166666667],[122,274,76,-0.02499479166666667],[122,274,77,-0.02499479166666667],[122,274,78,-0.02499479166666667],[122,274,79,-0.02499479166666667],[122,275,64,-0.02499479166666667],[122,275,65,-0.02499479166666667],[122,275,66,-0.02499479166666667],[122,275,67,-0.02499479166666667],[122,275,68,-0.02499479166666667],[122,275,69,-0.02499479166666667],[122,275,70,-0.02499479166666667],[122,275,71,-0.02499479166666667],[122,275,72,-0.02499479166666667],[122,275,73,-0.02499479166666667],[122,275,74,-0.02499479166666667],[122,275,75,-0.02499479166666667],[122,275,76,-0.02499479166666667],[122,275,77,-0.02499479166666667],[122,275,78,-0.02499479166666667],[122,275,79,-0.02499479166666667],[122,276,64,-0.02499479166666667],[122,276,65,-0.02499479166666667],[122,276,66,-0.02499479166666667],[122,276,67,-0.02499479166666667],[122,276,68,-0.02499479166666667],[122,276,69,-0.02499479166666667],[122,276,70,-0.02499479166666667],[122,276,71,-0.02499479166666667],[122,276,72,-0.02499479166666667],[122,276,73,-0.02499479166666667],[122,276,74,-0.02499479166666667],[122,276,75,-0.02499479166666667],[122,276,76,-0.02499479166666667],[122,276,77,-0.02499479166666667],[122,276,78,-0.02499479166666667],[122,276,79,-0.02499479166666667],[122,277,64,-0.02499479166666667],[122,277,65,-0.02499479166666667],[122,277,66,-0.02499479166666667],[122,277,67,-0.02499479166666667],[122,277,68,-0.02499479166666667],[122,277,69,-0.02499479166666667],[122,277,70,-0.02499479166666667],[122,277,71,-0.02499479166666667],[122,277,72,-0.02499479166666667],[122,277,73,-0.02499479166666667],[122,277,74,-0.02499479166666667],[122,277,75,-0.02499479166666667],[122,277,76,-0.02499479166666667],[122,277,77,-0.02499479166666667],[122,277,78,-0.02499479166666667],[122,277,79,-0.02499479166666667],[122,278,64,-0.02499479166666667],[122,278,65,-0.02499479166666667],[122,278,66,-0.02499479166666667],[122,278,67,-0.02499479166666667],[122,278,68,-0.02499479166666667],[122,278,69,-0.02499479166666667],[122,278,70,-0.02499479166666667],[122,278,71,-0.02499479166666667],[122,278,72,-0.02499479166666667],[122,278,73,-0.02499479166666667],[122,278,74,-0.02499479166666667],[122,278,75,-0.02499479166666667],[122,278,76,-0.02499479166666667],[122,278,77,-0.02499479166666667],[122,278,78,-0.02499479166666667],[122,278,79,-0.02499479166666667],[122,279,64,-0.02499479166666667],[122,279,65,-0.02499479166666667],[122,279,66,-0.02499479166666667],[122,279,67,-0.02499479166666667],[122,279,68,-0.02499479166666667],[122,279,69,-0.02499479166666667],[122,279,70,-0.02499479166666667],[122,279,71,-0.02499479166666667],[122,279,72,-0.02499479166666667],[122,279,73,-0.02499479166666667],[122,279,74,-0.02499479166666667],[122,279,75,-0.02499479166666667],[122,279,76,-0.02499479166666667],[122,279,77,-0.02499479166666667],[122,279,78,-0.02499479166666667],[122,279,79,-0.02499479166666667],[122,280,64,-0.02499479166666667],[122,280,65,-0.02499479166666667],[122,280,66,-0.02499479166666667],[122,280,67,-0.02499479166666667],[122,280,68,-0.02499479166666667],[122,280,69,-0.02499479166666667],[122,280,70,-0.02499479166666667],[122,280,71,-0.02499479166666667],[122,280,72,-0.02499479166666667],[122,280,73,-0.02499479166666667],[122,280,74,-0.02499479166666667],[122,280,75,-0.02499479166666667],[122,280,76,-0.02499479166666667],[122,280,77,-0.02499479166666667],[122,280,78,-0.02499479166666667],[122,280,79,-0.02499479166666667],[122,281,64,-0.02499479166666667],[122,281,65,-0.02499479166666667],[122,281,66,-0.02499479166666667],[122,281,67,-0.02499479166666667],[122,281,68,-0.02499479166666667],[122,281,69,-0.02499479166666667],[122,281,70,-0.02499479166666667],[122,281,71,-0.02499479166666667],[122,281,72,-0.02499479166666667],[122,281,73,-0.02499479166666667],[122,281,74,-0.02499479166666667],[122,281,75,-0.02499479166666667],[122,281,76,-0.02499479166666667],[122,281,77,-0.02499479166666667],[122,281,78,-0.02499479166666667],[122,281,79,-0.02499479166666667],[122,282,64,-0.02499479166666667],[122,282,65,-0.02499479166666667],[122,282,66,-0.02499479166666667],[122,282,67,-0.02499479166666667],[122,282,68,-0.02499479166666667],[122,282,69,-0.02499479166666667],[122,282,70,-0.02499479166666667],[122,282,71,-0.02499479166666667],[122,282,72,-0.02499479166666667],[122,282,73,-0.02499479166666667],[122,282,74,-0.02499479166666667],[122,282,75,-0.02499479166666667],[122,282,76,-0.02499479166666667],[122,282,77,-0.02499479166666667],[122,282,78,-0.02499479166666667],[122,282,79,-0.02499479166666667],[122,283,64,-0.02499479166666667],[122,283,65,-0.02499479166666667],[122,283,66,-0.02499479166666667],[122,283,67,-0.02499479166666667],[122,283,68,-0.02499479166666667],[122,283,69,-0.02499479166666667],[122,283,70,-0.02499479166666667],[122,283,71,-0.02499479166666667],[122,283,72,-0.02499479166666667],[122,283,73,-0.02499479166666667],[122,283,74,-0.02499479166666667],[122,283,75,-0.02499479166666667],[122,283,76,-0.02499479166666667],[122,283,77,-0.02499479166666667],[122,283,78,-0.02499479166666667],[122,283,79,-0.02499479166666667],[122,284,64,-0.02499479166666667],[122,284,65,-0.02499479166666667],[122,284,66,-0.02499479166666667],[122,284,67,-0.02499479166666667],[122,284,68,-0.02499479166666667],[122,284,69,-0.02499479166666667],[122,284,70,-0.02499479166666667],[122,284,71,-0.02499479166666667],[122,284,72,-0.02499479166666667],[122,284,73,-0.02499479166666667],[122,284,74,-0.02499479166666667],[122,284,75,-0.02499479166666667],[122,284,76,-0.02499479166666667],[122,284,77,-0.02499479166666667],[122,284,78,-0.02499479166666667],[122,284,79,-0.02499479166666667],[122,285,64,-0.02499479166666667],[122,285,65,-0.02499479166666667],[122,285,66,-0.02499479166666667],[122,285,67,-0.02499479166666667],[122,285,68,-0.02499479166666667],[122,285,69,-0.02499479166666667],[122,285,70,-0.02499479166666667],[122,285,71,-0.02499479166666667],[122,285,72,-0.02499479166666667],[122,285,73,-0.02499479166666667],[122,285,74,-0.02499479166666667],[122,285,75,-0.02499479166666667],[122,285,76,-0.02499479166666667],[122,285,77,-0.02499479166666667],[122,285,78,-0.02499479166666667],[122,285,79,-0.02499479166666667],[122,286,64,-0.02499479166666667],[122,286,65,-0.02499479166666667],[122,286,66,-0.02499479166666667],[122,286,67,-0.02499479166666667],[122,286,68,-0.02499479166666667],[122,286,69,-0.02499479166666667],[122,286,70,-0.02499479166666667],[122,286,71,-0.02499479166666667],[122,286,72,-0.02499479166666667],[122,286,73,-0.02499479166666667],[122,286,74,-0.02499479166666667],[122,286,75,-0.02499479166666667],[122,286,76,-0.02499479166666667],[122,286,77,-0.02499479166666667],[122,286,78,-0.02499479166666667],[122,286,79,-0.02499479166666667],[122,287,64,-0.02499479166666667],[122,287,65,-0.02499479166666667],[122,287,66,-0.02499479166666667],[122,287,67,-0.02499479166666667],[122,287,68,-0.02499479166666667],[122,287,69,-0.02499479166666667],[122,287,70,-0.02499479166666667],[122,287,71,-0.02499479166666667],[122,287,72,-0.02499479166666667],[122,287,73,-0.02499479166666667],[122,287,74,-0.02499479166666667],[122,287,75,-0.02499479166666667],[122,287,76,-0.02499479166666667],[122,287,77,-0.02499479166666667],[122,287,78,-0.02499479166666667],[122,287,79,-0.02499479166666667],[122,288,64,-0.02499479166666667],[122,288,65,-0.02499479166666667],[122,288,66,-0.02499479166666667],[122,288,67,-0.02499479166666667],[122,288,68,-0.02499479166666667],[122,288,69,-0.02499479166666667],[122,288,70,-0.02499479166666667],[122,288,71,-0.02499479166666667],[122,288,72,-0.02499479166666667],[122,288,73,-0.02499479166666667],[122,288,74,-0.02499479166666667],[122,288,75,-0.02499479166666667],[122,288,76,-0.02499479166666667],[122,288,77,-0.02499479166666667],[122,288,78,-0.02499479166666667],[122,288,79,-0.02499479166666667],[122,289,64,-0.02499479166666667],[122,289,65,-0.02499479166666667],[122,289,66,-0.02499479166666667],[122,289,67,-0.02499479166666667],[122,289,68,-0.02499479166666667],[122,289,69,-0.02499479166666667],[122,289,70,-0.02499479166666667],[122,289,71,-0.02499479166666667],[122,289,72,-0.02499479166666667],[122,289,73,-0.02499479166666667],[122,289,74,-0.02499479166666667],[122,289,75,-0.02499479166666667],[122,289,76,-0.02499479166666667],[122,289,77,-0.02499479166666667],[122,289,78,-0.02499479166666667],[122,289,79,-0.02499479166666667],[122,290,64,-0.02499479166666667],[122,290,65,-0.02499479166666667],[122,290,66,-0.02499479166666667],[122,290,67,-0.02499479166666667],[122,290,68,-0.02499479166666667],[122,290,69,-0.02499479166666667],[122,290,70,-0.02499479166666667],[122,290,71,-0.02499479166666667],[122,290,72,-0.02499479166666667],[122,290,73,-0.02499479166666667],[122,290,74,-0.02499479166666667],[122,290,75,-0.02499479166666667],[122,290,76,-0.02499479166666667],[122,290,77,-0.02499479166666667],[122,290,78,-0.02499479166666667],[122,290,79,-0.02499479166666667],[122,291,64,-0.02499479166666667],[122,291,65,-0.02499479166666667],[122,291,66,-0.02499479166666667],[122,291,67,-0.02499479166666667],[122,291,68,-0.02499479166666667],[122,291,69,-0.02499479166666667],[122,291,70,-0.02499479166666667],[122,291,71,-0.02499479166666667],[122,291,72,-0.02499479166666667],[122,291,73,-0.02499479166666667],[122,291,74,-0.02499479166666667],[122,291,75,-0.02499479166666667],[122,291,76,-0.02499479166666667],[122,291,77,-0.02499479166666667],[122,291,78,-0.02499479166666667],[122,291,79,-0.02499479166666667],[122,292,64,-0.02499479166666667],[122,292,65,-0.02499479166666667],[122,292,66,-0.02499479166666667],[122,292,67,-0.02499479166666667],[122,292,68,-0.02499479166666667],[122,292,69,-0.02499479166666667],[122,292,70,-0.02499479166666667],[122,292,71,-0.02499479166666667],[122,292,72,-0.02499479166666667],[122,292,73,-0.02499479166666667],[122,292,74,-0.02499479166666667],[122,292,75,-0.02499479166666667],[122,292,76,-0.02499479166666667],[122,292,77,-0.02499479166666667],[122,292,78,-0.02499479166666667],[122,292,79,-0.02499479166666667],[122,293,64,-0.02499479166666667],[122,293,65,-0.02499479166666667],[122,293,66,-0.02499479166666667],[122,293,67,-0.02499479166666667],[122,293,68,-0.02499479166666667],[122,293,69,-0.02499479166666667],[122,293,70,-0.02499479166666667],[122,293,71,-0.02499479166666667],[122,293,72,-0.02499479166666667],[122,293,73,-0.02499479166666667],[122,293,74,-0.02499479166666667],[122,293,75,-0.02499479166666667],[122,293,76,-0.02499479166666667],[122,293,77,-0.02499479166666667],[122,293,78,-0.02499479166666667],[122,293,79,-0.02499479166666667],[122,294,64,-0.02499479166666667],[122,294,65,-0.02499479166666667],[122,294,66,-0.02499479166666667],[122,294,67,-0.02499479166666667],[122,294,68,-0.02499479166666667],[122,294,69,-0.02499479166666667],[122,294,70,-0.02499479166666667],[122,294,71,-0.02499479166666667],[122,294,72,-0.02499479166666667],[122,294,73,-0.02499479166666667],[122,294,74,-0.02499479166666667],[122,294,75,-0.02499479166666667],[122,294,76,-0.02499479166666667],[122,294,77,-0.02499479166666667],[122,294,78,-0.02499479166666667],[122,294,79,-0.02499479166666667],[122,295,64,-0.02499479166666667],[122,295,65,-0.02499479166666667],[122,295,66,-0.02499479166666667],[122,295,67,-0.02499479166666667],[122,295,68,-0.02499479166666667],[122,295,69,-0.02499479166666667],[122,295,70,-0.02499479166666667],[122,295,71,-0.02499479166666667],[122,295,72,-0.02499479166666667],[122,295,73,-0.02499479166666667],[122,295,74,-0.02499479166666667],[122,295,75,-0.02499479166666667],[122,295,76,-0.02499479166666667],[122,295,77,-0.02499479166666667],[122,295,78,-0.02499479166666667],[122,295,79,-0.02499479166666667],[122,296,64,-0.02499479166666667],[122,296,65,-0.02499479166666667],[122,296,66,-0.02499479166666667],[122,296,67,-0.02499479166666667],[122,296,68,-0.02499479166666667],[122,296,69,-0.02499479166666667],[122,296,70,-0.02499479166666667],[122,296,71,-0.02499479166666667],[122,296,72,-0.02499479166666667],[122,296,73,-0.02499479166666667],[122,296,74,-0.02499479166666667],[122,296,75,-0.02499479166666667],[122,296,76,-0.02499479166666667],[122,296,77,-0.02499479166666667],[122,296,78,-0.02499479166666667],[122,296,79,-0.02499479166666667],[122,297,64,-0.02499479166666667],[122,297,65,-0.02499479166666667],[122,297,66,-0.02499479166666667],[122,297,67,-0.02499479166666667],[122,297,68,-0.02499479166666667],[122,297,69,-0.02499479166666667],[122,297,70,-0.02499479166666667],[122,297,71,-0.02499479166666667],[122,297,72,-0.02499479166666667],[122,297,73,-0.02499479166666667],[122,297,74,-0.02499479166666667],[122,297,75,-0.02499479166666667],[122,297,76,-0.02499479166666667],[122,297,77,-0.02499479166666667],[122,297,78,-0.02499479166666667],[122,297,79,-0.02499479166666667],[122,298,64,-0.02499479166666667],[122,298,65,-0.02499479166666667],[122,298,66,-0.02499479166666667],[122,298,67,-0.02499479166666667],[122,298,68,-0.02499479166666667],[122,298,69,-0.02499479166666667],[122,298,70,-0.02499479166666667],[122,298,71,-0.02499479166666667],[122,298,72,-0.02499479166666667],[122,298,73,-0.02499479166666667],[122,298,74,-0.02499479166666667],[122,298,75,-0.02499479166666667],[122,298,76,-0.02499479166666667],[122,298,77,-0.02499479166666667],[122,298,78,-0.02499479166666667],[122,298,79,-0.02499479166666667],[122,299,64,-0.02499479166666667],[122,299,65,-0.02499479166666667],[122,299,66,-0.02499479166666667],[122,299,67,-0.02499479166666667],[122,299,68,-0.02499479166666667],[122,299,69,-0.02499479166666667],[122,299,70,-0.02499479166666667],[122,299,71,-0.02499479166666667],[122,299,72,-0.02499479166666667],[122,299,73,-0.02499479166666667],[122,299,74,-0.02499479166666667],[122,299,75,-0.02499479166666667],[122,299,76,-0.02499479166666667],[122,299,77,-0.02499479166666667],[122,299,78,-0.02499479166666667],[122,299,79,-0.02499479166666667],[122,300,64,-0.02499479166666667],[122,300,65,-0.02499479166666667],[122,300,66,-0.02499479166666667],[122,300,67,-0.02499479166666667],[122,300,68,-0.02499479166666667],[122,300,69,-0.02499479166666667],[122,300,70,-0.02499479166666667],[122,300,71,-0.02499479166666667],[122,300,72,-0.02499479166666667],[122,300,73,-0.02499479166666667],[122,300,74,-0.02499479166666667],[122,300,75,-0.02499479166666667],[122,300,76,-0.02499479166666667],[122,300,77,-0.02499479166666667],[122,300,78,-0.02499479166666667],[122,300,79,-0.02499479166666667],[122,301,64,-0.02499479166666667],[122,301,65,-0.02499479166666667],[122,301,66,-0.02499479166666667],[122,301,67,-0.02499479166666667],[122,301,68,-0.02499479166666667],[122,301,69,-0.02499479166666667],[122,301,70,-0.02499479166666667],[122,301,71,-0.02499479166666667],[122,301,72,-0.02499479166666667],[122,301,73,-0.02499479166666667],[122,301,74,-0.02499479166666667],[122,301,75,-0.02499479166666667],[122,301,76,-0.02499479166666667],[122,301,77,-0.02499479166666667],[122,301,78,-0.02499479166666667],[122,301,79,-0.02499479166666667],[122,302,64,-0.02499479166666667],[122,302,65,-0.02499479166666667],[122,302,66,-0.02499479166666667],[122,302,67,-0.02499479166666667],[122,302,68,-0.02499479166666667],[122,302,69,-0.02499479166666667],[122,302,70,-0.02499479166666667],[122,302,71,-0.02499479166666667],[122,302,72,-0.02499479166666667],[122,302,73,-0.02499479166666667],[122,302,74,-0.02499479166666667],[122,302,75,-0.02499479166666667],[122,302,76,-0.02499479166666667],[122,302,77,-0.02499479166666667],[122,302,78,-0.02499479166666667],[122,302,79,-0.02499479166666667],[122,303,64,-0.02499479166666667],[122,303,65,-0.02499479166666667],[122,303,66,-0.02499479166666667],[122,303,67,-0.02499479166666667],[122,303,68,-0.02499479166666667],[122,303,69,-0.02499479166666667],[122,303,70,-0.02499479166666667],[122,303,71,-0.02499479166666667],[122,303,72,-0.02499479166666667],[122,303,73,-0.02499479166666667],[122,303,74,-0.02499479166666667],[122,303,75,-0.02499479166666667],[122,303,76,-0.02499479166666667],[122,303,77,-0.02499479166666667],[122,303,78,-0.02499479166666667],[122,303,79,-0.02499479166666667],[122,304,64,-0.02499479166666667],[122,304,65,-0.02499479166666667],[122,304,66,-0.02499479166666667],[122,304,67,-0.02499479166666667],[122,304,68,-0.02499479166666667],[122,304,69,-0.02499479166666667],[122,304,70,-0.02499479166666667],[122,304,71,-0.02499479166666667],[122,304,72,-0.02499479166666667],[122,304,73,-0.02499479166666667],[122,304,74,-0.02499479166666667],[122,304,75,-0.02499479166666667],[122,304,76,-0.02499479166666667],[122,304,77,-0.02499479166666667],[122,304,78,-0.02499479166666667],[122,304,79,-0.02499479166666667],[122,305,64,-0.02499479166666667],[122,305,65,-0.02499479166666667],[122,305,66,-0.02499479166666667],[122,305,67,-0.02499479166666667],[122,305,68,-0.02499479166666667],[122,305,69,-0.02499479166666667],[122,305,70,-0.02499479166666667],[122,305,71,-0.02499479166666667],[122,305,72,-0.02499479166666667],[122,305,73,-0.02499479166666667],[122,305,74,-0.02499479166666667],[122,305,75,-0.02499479166666667],[122,305,76,-0.02499479166666667],[122,305,77,-0.02499479166666667],[122,305,78,-0.02499479166666667],[122,305,79,-0.02499479166666667],[122,306,64,-0.02499479166666667],[122,306,65,-0.02499479166666667],[122,306,66,-0.02499479166666667],[122,306,67,-0.02499479166666667],[122,306,68,-0.02499479166666667],[122,306,69,-0.02499479166666667],[122,306,70,-0.02499479166666667],[122,306,71,-0.02499479166666667],[122,306,72,-0.02499479166666667],[122,306,73,-0.02499479166666667],[122,306,74,-0.02499479166666667],[122,306,75,-0.02499479166666667],[122,306,76,-0.02499479166666667],[122,306,77,-0.02499479166666667],[122,306,78,-0.02499479166666667],[122,306,79,-0.02499479166666667],[122,307,64,-0.02499479166666667],[122,307,65,-0.02499479166666667],[122,307,66,-0.02499479166666667],[122,307,67,-0.02499479166666667],[122,307,68,-0.02499479166666667],[122,307,69,-0.02499479166666667],[122,307,70,-0.02499479166666667],[122,307,71,-0.02499479166666667],[122,307,72,-0.02499479166666667],[122,307,73,-0.02499479166666667],[122,307,74,-0.02499479166666667],[122,307,75,-0.02499479166666667],[122,307,76,-0.02499479166666667],[122,307,77,-0.02499479166666667],[122,307,78,-0.02499479166666667],[122,307,79,-0.02499479166666667],[122,308,64,-0.02499479166666667],[122,308,65,-0.02499479166666667],[122,308,66,-0.02499479166666667],[122,308,67,-0.02499479166666667],[122,308,68,-0.02499479166666667],[122,308,69,-0.02499479166666667],[122,308,70,-0.02499479166666667],[122,308,71,-0.02499479166666667],[122,308,72,-0.02499479166666667],[122,308,73,-0.02499479166666667],[122,308,74,-0.02499479166666667],[122,308,75,-0.02499479166666667],[122,308,76,-0.02499479166666667],[122,308,77,-0.02499479166666667],[122,308,78,-0.02499479166666667],[122,308,79,-0.02499479166666667],[122,309,64,-0.02499479166666667],[122,309,65,-0.02499479166666667],[122,309,66,-0.02499479166666667],[122,309,67,-0.02499479166666667],[122,309,68,-0.02499479166666667],[122,309,69,-0.02499479166666667],[122,309,70,-0.02499479166666667],[122,309,71,-0.02499479166666667],[122,309,72,-0.02499479166666667],[122,309,73,-0.02499479166666667],[122,309,74,-0.02499479166666667],[122,309,75,-0.02499479166666667],[122,309,76,-0.02499479166666667],[122,309,77,-0.02499479166666667],[122,309,78,-0.02499479166666667],[122,309,79,-0.02499479166666667],[122,310,64,-0.02499479166666667],[122,310,65,-0.02499479166666667],[122,310,66,-0.02499479166666667],[122,310,67,-0.02499479166666667],[122,310,68,-0.02499479166666667],[122,310,69,-0.02499479166666667],[122,310,70,-0.02499479166666667],[122,310,71,-0.02499479166666667],[122,310,72,-0.02499479166666667],[122,310,73,-0.02499479166666667],[122,310,74,-0.02499479166666667],[122,310,75,-0.02499479166666667],[122,310,76,-0.02499479166666667],[122,310,77,-0.02499479166666667],[122,310,78,-0.02499479166666667],[122,310,79,-0.02499479166666667],[122,311,64,-0.02499479166666667],[122,311,65,-0.02499479166666667],[122,311,66,-0.02499479166666667],[122,311,67,-0.02499479166666667],[122,311,68,-0.02499479166666667],[122,311,69,-0.02499479166666667],[122,311,70,-0.02499479166666667],[122,311,71,-0.02499479166666667],[122,311,72,-0.02499479166666667],[122,311,73,-0.02499479166666667],[122,311,74,-0.02499479166666667],[122,311,75,-0.02499479166666667],[122,311,76,-0.02499479166666667],[122,311,77,-0.02499479166666667],[122,311,78,-0.02499479166666667],[122,311,79,-0.02499479166666667],[122,312,64,-0.02499479166666667],[122,312,65,-0.02499479166666667],[122,312,66,-0.02499479166666667],[122,312,67,-0.02499479166666667],[122,312,68,-0.02499479166666667],[122,312,69,-0.02499479166666667],[122,312,70,-0.02499479166666667],[122,312,71,-0.02499479166666667],[122,312,72,-0.02499479166666667],[122,312,73,-0.02499479166666667],[122,312,74,-0.02499479166666667],[122,312,75,-0.02499479166666667],[122,312,76,-0.02499479166666667],[122,312,77,-0.02499479166666667],[122,312,78,-0.02499479166666667],[122,312,79,-0.02499479166666667],[122,313,64,-0.02499479166666667],[122,313,65,-0.02499479166666667],[122,313,66,-0.02499479166666667],[122,313,67,-0.02499479166666667],[122,313,68,-0.02499479166666667],[122,313,69,-0.02499479166666667],[122,313,70,-0.02499479166666667],[122,313,71,-0.02499479166666667],[122,313,72,-0.02499479166666667],[122,313,73,-0.02499479166666667],[122,313,74,-0.02499479166666667],[122,313,75,-0.02499479166666667],[122,313,76,-0.02499479166666667],[122,313,77,-0.02499479166666667],[122,313,78,-0.02499479166666667],[122,313,79,-0.02499479166666667],[122,314,64,-0.02499479166666667],[122,314,65,-0.02499479166666667],[122,314,66,-0.02499479166666667],[122,314,67,-0.02499479166666667],[122,314,68,-0.02499479166666667],[122,314,69,-0.02499479166666667],[122,314,70,-0.02499479166666667],[122,314,71,-0.02499479166666667],[122,314,72,-0.02499479166666667],[122,314,73,-0.02499479166666667],[122,314,74,-0.02499479166666667],[122,314,75,-0.02499479166666667],[122,314,76,-0.02499479166666667],[122,314,77,-0.02499479166666667],[122,314,78,-0.02499479166666667],[122,314,79,-0.02499479166666667],[122,315,64,-0.02499479166666667],[122,315,65,-0.02499479166666667],[122,315,66,-0.02499479166666667],[122,315,67,-0.02499479166666667],[122,315,68,-0.02499479166666667],[122,315,69,-0.02499479166666667],[122,315,70,-0.02499479166666667],[122,315,71,-0.02499479166666667],[122,315,72,-0.02499479166666667],[122,315,73,-0.02499479166666667],[122,315,74,-0.02499479166666667],[122,315,75,-0.02499479166666667],[122,315,76,-0.02499479166666667],[122,315,77,-0.02499479166666667],[122,315,78,-0.02499479166666667],[122,315,79,-0.02499479166666667],[122,316,64,-0.02499479166666667],[122,316,65,-0.02499479166666667],[122,316,66,-0.02499479166666667],[122,316,67,-0.02499479166666667],[122,316,68,-0.02499479166666667],[122,316,69,-0.02499479166666667],[122,316,70,-0.02499479166666667],[122,316,71,-0.02499479166666667],[122,316,72,-0.02499479166666667],[122,316,73,-0.02499479166666667],[122,316,74,-0.02499479166666667],[122,316,75,-0.02499479166666667],[122,316,76,-0.02499479166666667],[122,316,77,-0.02499479166666667],[122,316,78,-0.02499479166666667],[122,316,79,-0.02499479166666667],[122,317,64,-0.02499479166666667],[122,317,65,-0.02499479166666667],[122,317,66,-0.02499479166666667],[122,317,67,-0.02499479166666667],[122,317,68,-0.02499479166666667],[122,317,69,-0.02499479166666667],[122,317,70,-0.02499479166666667],[122,317,71,-0.02499479166666667],[122,317,72,-0.02499479166666667],[122,317,73,-0.02499479166666667],[122,317,74,-0.02499479166666667],[122,317,75,-0.02499479166666667],[122,317,76,-0.02499479166666667],[122,317,77,-0.02499479166666667],[122,317,78,-0.02499479166666667],[122,317,79,-0.02499479166666667],[122,318,64,-0.02499479166666667],[122,318,65,-0.02499479166666667],[122,318,66,-0.02499479166666667],[122,318,67,-0.02499479166666667],[122,318,68,-0.02499479166666667],[122,318,69,-0.02499479166666667],[122,318,70,-0.02499479166666667],[122,318,71,-0.02499479166666667],[122,318,72,-0.02499479166666667],[122,318,73,-0.02499479166666667],[122,318,74,-0.02499479166666667],[122,318,75,-0.02499479166666667],[122,318,76,-0.02499479166666667],[122,318,77,-0.02499479166666667],[122,318,78,-0.02499479166666667],[122,318,79,-0.02499479166666667],[122,319,64,-0.02499479166666667],[122,319,65,-0.02499479166666667],[122,319,66,-0.02499479166666667],[122,319,67,-0.02499479166666667],[122,319,68,-0.02499479166666667],[122,319,69,-0.02499479166666667],[122,319,70,-0.02499479166666667],[122,319,71,-0.02499479166666667],[122,319,72,-0.02499479166666667],[122,319,73,-0.02499479166666667],[122,319,74,-0.02499479166666667],[122,319,75,-0.02499479166666667],[122,319,76,-0.02499479166666667],[122,319,77,-0.02499479166666667],[122,319,78,-0.02499479166666667],[122,319,79,-0.02499479166666667],[123,-64,64,0.037482421875],[123,-64,65,0.037482421875],[123,-64,66,0.037482421875],[123,-64,67,0.037482421875],[123,-64,68,0.037482421875],[123,-64,69,0.037482421875],[123,-64,70,0.037482421875],[123,-64,71,0.037482421875],[123,-64,72,0.037482421875],[123,-64,73,0.037482421875],[123,-64,74,0.037482421875],[123,-64,75,0.037482421875],[123,-64,76,0.037482421875],[123,-64,77,0.037482421875],[123,-64,78,0.037482421875],[123,-64,79,0.037482421875],[123,-63,64,0.040558268633707234],[123,-63,65,0.04064003497392113],[123,-63,66,0.040723235816304874],[123,-63,67,0.04080766508610239],[123,-63,68,0.0408933379919961],[123,-63,69,0.040980433594330776],[123,-63,70,0.04106907770390653],[123,-63,71,0.04115933168924635],[123,-63,72,0.041251187585812116],[123,-63,73,0.04134456470774922],[123,-63,74,0.041439307799914164],[123,-63,75,0.041535186766018965],[123,-63,76,0.041631898006603975],[123,-63,77,0.04172906739825214],[123,-63,78,0.04182625494300196],[123,-63,79,0.04192296111434014],[123,-62,64,0.04370767057927773],[123,-62,65,0.0438735080240215],[123,-62,66,0.04404230427264284],[123,-62,67,0.04421366252341624],[123,-62,68,0.04438759139784388],[123,-62,69,0.04456440309277562],[123,-62,70,0.04474430635861968],[123,-62,71,0.04492738513238946],[123,-62,72,0.04511358913282081],[123,-62,73,0.04530272740339766],[123,-62,74,0.045494464875615266],[123,-62,75,0.045688322020973025],[123,-62,76,0.0458836776559622],[123,-62,77,0.04607977495975183],[123,-62,78,0.04627573075942178],[123,-62,79,0.04647054813252257],[123,-61,64,0.04693714666397665],[123,-61,65,0.047188992197321075],[123,-61,66,0.047445345644063955],[123,-61,67,0.04770564764302215],[123,-61,68,0.04796987749191655],[123,-61,69,0.04823842476577226],[123,-61,70,0.048511532679359426],[123,-61,71,0.0487892673636057],[123,-61,72,0.04907150382659657],[123,-61,73,0.04935791626095203],[123,-61,74,0.04964797280201235],[123,-61,75,0.04994093483553709],[123,-61,76,0.05023586094732292],[123,-61,77,0.05053161560036221],[123,-61,78,0.05082688261796899],[123,-61,79,0.051120183543815534],[123,-60,64,0.05025215634653611],[123,-60,65,0.050591569175909235],[123,-60,66,0.050936999031120214],[123,-60,67,0.05128776238019416],[123,-60,68,0.05164378613185348],[123,-60,69,0.05200547433709586],[123,-60,70,0.05237305281158154],[123,-60,71,0.05274652965681977],[123,-60,72,0.053125676011824226],[123,-60,73,0.05351001251219743],[123,-60,74,0.05389880159134427],[123,-60,75,0.05429104575094292],[123,-60,76,0.0546854919194786],[123,-60,77,0.05508064200868996],[123,-60,78,0.05547476976830166],[123,-60,79,0.0558659440295917],[123,-59,64,0.05365690130477659],[123,-59,65,0.05408506123753885],[123,-59,66,0.0545206464683218],[123,-59,67,0.054962894247608134],[123,-59,68,0.055411655914793],[123,-59,69,0.055867282738963596],[123,-59,70,0.05632993004985788],[123,-59,71,0.05679950938444506],[123,-59,72,0.05727566306521977],[123,-59,73,0.057757745817180316],[123,-59,74,0.058244813587147844],[123,-59,75,0.058735619719737606],[123,-59,76,0.059228618634008134],[123,-59,77,0.05972197713375003],[123,-59,78,0.06021359347267781],[123,-59,79,0.06070112428369265],[123,-58,64,0.057154197531774364],[123,-58,65,0.05767191270283685],[123,-58,66,0.058198307693463285],[123,-58,67,0.05873258724478254],[123,-58,68,0.05927450346649966],[123,-58,69,0.05982428590722449],[123,-58,70,0.06038196703554696],[123,-58,71,0.060947326178904845],[123,-58,72,0.0615198566665749],[123,-58,73,0.0620987413171691],[123,-58,74,0.06268283646231089],[123,-58,75,0.0632706646871372],[123,-58,76,0.06386041645610634],[123,-58,77,0.06444996077948874],[123,-58,78,0.06503686506206793],[123,-58,79,0.06561842426127966],[123,-57,64,0.06074543161759088],[123,-57,65,0.06135315649241289],[123,-57,66,0.06197062109794995],[123,-57,67,0.06259704006780957],[123,-57,68,0.0632320409990475],[123,-57,69,0.06387566342465739],[123,-57,70,0.06452776679460903],[123,-57,71,0.06518796617973317],[123,-57,72,0.06585559053383072],[123,-57,73,0.06652965058014035],[123,-57,74,0.06720881654110021],[123,-57,75,0.06789140591773507],[123,-57,76,0.06857538151104972],[123,-57,77,0.06925835986275795],[123,-57,78,0.0699376302767536],[123,-57,79,0.0706101845662969],[123,-56,64,0.06443027416923913],[123,-56,65,0.06512812480423873],[123,-56,66,0.06583655448249993],[123,-56,67,0.06655481933504417],[123,-56,68,0.06728239409096723],[123,-56,69,0.06801906280935845],[123,-56,70,0.06876446533700978],[123,-56,71,0.06951802457208343],[123,-56,72,0.07027889433236763],[123,-56,73,0.07104591809665732],[123,-56,74,0.07181759886470619],[123,-56,75,0.07259208036713251],[123,-56,76,0.07336713984104407],[123,-56,77,0.07414019257024973],[123,-56,78,0.07490830837102337],[123,-56,79,0.07566824018590147],[123,-55,64,0.0682043287123383],[123,-55,65,0.06899200336714703],[123,-55,66,0.06979085686880232],[123,-55,67,0.07060020772784854],[123,-55,68,0.07141934952688339],[123,-55,69,0.07224775342419547],[123,-55,70,0.0730848011087677],[123,-55,71,0.0739297031448822],[123,-55,72,0.07478143484310414],[123,-55,73,0.07563868422813094],[123,-55,74,0.07649981237497533],[123,-55,75,0.07736282636953358],[123,-55,76,0.07822536513241074],[123,-55,77,0.0790846983262298],[123,-55,78,0.07993773854685536],[123,-55,79,0.08078106697849324],[123,-54,64,0.07206004682317946],[123,-54,65,0.07293677283159306],[123,-54,66,0.07382502719398623],[123,-54,67,0.07472420172435647],[123,-54,68,0.07563338358242315],[123,-54,69,0.07655168589338018],[123,-54,70,0.07747820520059942],[123,-54,71,0.0784119300780298],[123,-54,72,0.07935166330427754],[123,-54,73,0.08029595734778215],[123,-54,74,0.08124306346052178],[123,-54,75,0.0821908946609781],[123,-54,76,0.0831370028684192],[123,-54,77,0.08407857043023728],[123,-54,78,0.08501241626243611],[123,-54,79,0.08593501680093688],[123,-53,64,0.07598819073628713],[123,-53,65,0.0769527222189355],[123,-53,66,0.07792888282966744],[123,-53,67,0.07891613786387067],[123,-53,68,0.07991334691994785],[123,-53,69,0.08091923461431555],[123,-53,70,0.08193259855283887],[123,-53,71,0.08295220706745517],[123,-53,72,0.08397670594953371],[123,-53,73,0.08500453971762256],[123,-53,74,0.0860338877433185],[123,-53,75,0.08706261554100984],[123,-53,76,0.08808824150710878],[123,-53,77,0.08910791937240503],[123,-53,78,0.09011843660769568],[123,-53,79,0.09111622899844296],[123,-52,64,0.0799784028419835],[123,-52,65,0.08102903260963377],[123,-52,66,0.08209115834524607],[123,-52,67,0.08316430797310047],[123,-52,68,0.08424709745372357],[123,-52,69,0.08533784871182547],[123,-52,70,0.08643506075794774],[123,-52,71,0.08753729510027347],[123,-52,72,0.08864306530924518],[123,-52,73,0.08975074236952028],[123,-52,74,0.09085847616993892],[123,-52,75,0.09196413346285207],[123,-52,76,0.09306525260251812],[123,-52,77,0.09415901534860006],[123,-52,78,0.09524223599543229],[123,-52,79,0.09631136806127319],[123,-51,64,0.08401980209316853],[123,-51,65,0.08515438620797558],[123,-51,66,0.08630012778228022],[123,-51,67,0.0874565957477171],[123,-51,68,0.08862215214681396],[123,-51,69,0.08979471924333446],[123,-51,70,0.09097251219926158],[123,-51,71,0.09215391045168964],[123,-51,72,0.0933373284622134],[123,-51,73,0.0945211035579072],[123,-51,74,0.09570340124231659],[123,-51,75,0.0968821383340775],[123,-51,76,0.098054924267525],[123,-51,77,0.09921902086419274],[123,-51,78,0.10037132085675038],[123,-51,79,0.10150834541829204],[123,-50,64,0.08777621041435792],[123,-50,65,0.08920032188607693],[123,-50,66,0.09054426511872564],[123,-50,67,0.09178114943604368],[123,-50,68,0.09302637251591979],[123,-50,69,0.09427747742520683],[123,-50,70,0.09553242425749808],[123,-50,71,0.09678944556600418],[123,-50,72,0.0980468968022519],[123,-50,73,0.09930312522366223],[123,-50,74,0.10055635767699844],[123,-50,75,0.10180460764216516],[123,-50,76,0.10304560189580989],[123,-50,77,0.104276727126773],[123,-50,78,0.10549499680592964],[123,-50,79,0.10669703858196661],[123,-49,64,0.09154792448757677],[123,-49,65,0.093073815199235],[123,-49,66,0.09460139078501364],[123,-49,67,0.09612634782917395],[123,-49,68,0.09744806349069035],[123,-49,69,0.09877442946896006],[123,-49,70,0.10010319022431495],[123,-49,71,0.10143247303157774],[123,-49,72,0.10276061697565546],[123,-49,73,0.1040860218718765],[123,-49,74,0.1054070175469371],[123,-49,75,0.10672175389185817],[123,-49,76,0.10802811207133121],[123,-49,77,0.10932363724429893],[123,-49,78,0.11060549311877754],[123,-49,79,0.11187043863034855],[123,-48,64,0.09536192450595825],[123,-48,65,0.0969881375354107],[123,-48,66,0.09861801475063002],[123,-48,67,0.10024817730436604],[123,-48,68,0.10187432330815283],[123,-48,69,0.10327328335300547],[123,-48,70,0.10467322637813935],[123,-48,71,0.10607221001844251],[123,-48,72,0.10746858942819802],[123,-48,73,0.10886084609913295],[123,-48,74,0.11024743854017484],[123,-48,75,0.1116266752553473],[123,-48,76,0.1129966104270667],[123,-48,77,0.11435496268032182],[123,-48,78,0.11569905726892697],[123,-48,79,0.11702579198876724],[123,-47,64,0.09922432553614441],[123,-47,65,0.1009484980065877],[123,-47,66,0.1026782679958913],[123,-47,67,0.10441021351582386],[123,-47,68,0.1061424983157043],[123,-47,69,0.10776229993148857],[123,-47,70,0.10923169168002111],[123,-47,71,0.11069879992999856],[123,-47,72,0.11216201361199525],[123,-47,73,0.11361990731093873],[123,-47,74,0.11507107426193217],[123,-47,75,0.1165139830966694],[123,-47,76,0.11794685876650067],[123,-47,77,0.11936758803414474],[123,-47,78,0.12077364988930558],[123,-47,79,0.12216207120448831],[123,-46,64,0.10313967306366523],[123,-46,65,0.10495851521402787],[123,-46,66,0.10678472966987153],[123,-46,67,0.10861493431008508],[123,-46,68,0.11044735211517184],[123,-46,69,0.11223096436979037],[123,-46,70,0.11376898008375348],[123,-46,71,0.11530362238267618],[123,-46,72,0.11683331574361143],[123,-46,73,0.11835672076643375],[123,-46,74,0.11987255140411927],[123,-46,75,0.12137941722972433],[123,-46,76,0.12287569117905565],[123,-46,77,0.12435940317175753],[123,-46,78,0.12582815997445237],[123,-46,79,0.12727909162805018],[123,-45,64,0.10711059410988792],[123,-45,65,0.10901989533299235],[123,-45,66,0.11093808057450047],[123,-45,67,0.11286189955200028],[123,-45,68,0.11478965746733223],[123,-45,69,0.11667020358978145],[123,-45,70,0.11827689352814785],[123,-45,71,0.11987941863953769],[123,-45,72,0.1214762241821593],[123,-45,73,0.12306603112280463],[123,-45,74,0.12464764046636546],[123,-45,75,0.12621976364814694],[123,-45,76,0.12778087943364666],[123,-45,77,0.12932911773214267],[123,-45,78,0.13086217068920727],[123,-45,79,0.13237723137943144],[123,-44,64,0.11113752497196319],[123,-44,65,0.11313218441430968],[123,-44,66,0.1151368839534627],[123,-44,67,0.11714860399650492],[123,-44,68,0.11916576146648031],[123,-44,69,0.1210725467277267],[123,-44,70,0.1227487632465088],[123,-44,71,0.12442037119283798],[123,-44,72,0.12608580525445595],[123,-44,73,0.12774380311247527],[123,-44,74,0.1293932005913648],[123,-44,75,0.13103275354642846],[123,-44,76,0.1326609869308521],[123,-44,77,0.13427607144426168],[123,-44,78,0.1358757281216704],[123,-44,79,0.13745716117592463],[123,-43,64,0.11521851424448042],[123,-43,65,0.11729259360140187],[123,-43,66,0.11937743624317318],[123,-43,67,0.12147035651810052],[123,-43,68,0.12356991948450502],[123,-43,69,0.12543222975904778],[123,-43,70,0.12717952047369527],[123,-43,71,0.12892213851706252],[123,-43,72,0.13065846051101157],[123,-43,73,0.13238718032527808],[123,-43,74,0.13410709950525668],[123,-43,75,0.13581694467436184],[123,-43,76,0.13751521234159897],[123,-43,77,0.13920004150337653],[123,-43,78,0.14086911438409982],[123,-43,79,0.14251958561289063],[123,-42,64,0.119349100011237],[123,-42,65,0.12149589617051257],[123,-42,66,0.12365368670126878],[123,-42,67,0.12582022473098303],[123,-42,68,0.1279227274644619],[123,-42,69,0.12974524529144282],[123,-42,70,0.13156571748747747],[123,-42,71,0.13338184587996688],[123,-42,72,0.13519188627299464],[123,-42,73,0.13699441295516246],[123,-42,74,0.13878810945256473],[123,-42,75,0.14057158597740174],[123,-42,76,0.14234322398240645],[123,-42,77,0.1441010481886485],[123,-42,78,0.1458426264089043],[123,-42,79,0.14756499744081022],[123,-41,64,0.12352226028825475],[123,-41,65,0.12573439547647375],[123,-41,66,0.12795722498367265],[123,-41,67,0.13018904406260773],[123,-41,68,0.13211202682257817],[123,-41,69,0.13400933835818024],[123,-41,70,0.1359054997631784],[123,-41,71,0.13779803295450496],[123,-41,72,0.13968499619976232],[123,-41,73,0.1415647552553088],[123,-41,74,0.14343577991487816],[123,-41,75,0.14529646639057903],[123,-41,76,0.1471449859072171],[123,-41,77,0.14897915984787485],[123,-41,78,0.1507963617431429],[123,-41,79,0.15259344634848784],[123,-40,64,0.12772843595480513],[123,-40,65,0.1299979630272357],[123,-40,66,0.1322773358672808],[123,-40,67,0.1342787919991045],[123,-40,68,0.1362495458594463],[123,-40,69,0.13822394885781863],[123,-40,70,0.14019852985050066],[123,-40,71,0.1421705588213318],[123,-40,72,0.14413780747136948],[123,-40,73,0.14609833332909497],[123,-40,74,0.1480502878049778],[123,-40,75,0.14999174857466277],[123,-40,76,0.15192057663435934],[123,-40,77,0.1538342983294349],[123,-40,78,0.15573001261244426],[123,-40,79,0.15760432374004726],[123,-39,64,0.1282114277611784],[123,-39,65,0.13039519458152915],[123,-39,66,0.13233848135321902],[123,-39,67,0.13429707478579742],[123,-39,68,0.13626563830945757],[123,-39,69,0.13823970734671817],[123,-39,70,0.14021569230820788],[123,-39,71,0.14219064727618294],[123,-39,72,0.1441620606389639],[123,-39,73,0.14612766627568816],[123,-39,74,0.148085275656575],[123,-39,75,0.15003263118810184],[123,-39,76,0.15196728109557844],[123,-39,77,0.15388647609711348],[123,-39,78,0.1557870880827343],[123,-39,79,0.1576655509707134],[123,-38,64,0.1284616733726923],[123,-38,65,0.13037703951679705],[123,-38,66,0.13231558413462668],[123,-38,67,0.13427191388858387],[123,-38,68,0.13624037930544017],[123,-38,69,0.13821646985526054],[123,-38,70,0.14019641520692477],[123,-38,71,0.14217698128830678],[123,-38,72,0.14415529513489425],[123,-38,73,0.14612868691151856],[123,-38,74,0.14809454940951708],[123,-38,75,0.15005021529050913],[123,-38,76,0.1519928523157945],[123,-38,77,0.15391937676695605],[123,-38,78,0.15582638522856132],[123,-38,79,0.1577101048682035],[123,-37,64,0.12303063747959479],[123,-37,65,0.12662571011209434],[123,-37,66,0.12938937777606552],[123,-37,67,0.13132758467641778],[123,-37,68,0.13341359264547561],[123,-37,69,0.1373609984389507],[123,-37,70,0.14014768329421437],[123,-37,71,0.14213585930002523],[123,-37,72,0.14412304168057544],[123,-37,73,0.14610608374896886],[123,-37,74,0.14808189057743032],[123,-37,75,0.15004732244198465],[123,-37,76,0.15199911232442465],[123,-37,77,0.1522079854237982],[123,-37,78,0.14942812170644137],[123,-37,79,0.1459240942371034],[123,-36,64,0.11616381593829109],[123,-36,65,0.11937636095543751],[123,-36,66,0.12186623141732172],[123,-36,67,0.12338915747036079],[123,-36,68,0.1255459110071491],[123,-36,69,0.12977244464852036],[123,-36,70,0.1348844123288017],[123,-36,71,0.1356298605516491],[123,-36,72,0.13889368425355228],[123,-36,73,0.14215641199554638],[123,-36,74,0.14265627902802241],[123,-36,75,0.14555749205637353],[123,-36,76,0.1467866982412862],[123,-36,77,0.14527670991500166],[123,-36,78,0.14197513313834378],[123,-36,79,0.13661768512061068],[123,-35,64,0.11351608020015286],[123,-35,65,0.1162286644870343],[123,-35,66,0.11692573975863046],[123,-35,67,0.1169278269994612],[123,-35,68,0.1201997049136743],[123,-35,69,0.12424078124047154],[123,-35,70,0.12810225678664067],[123,-35,71,0.1303574830067665],[123,-35,72,0.13403431621788964],[123,-35,73,0.1360566519330726],[123,-35,74,0.13713445587313763],[123,-35,75,0.1403478368358588],[123,-35,76,0.13956968354545704],[123,-35,77,0.13860596016708082],[123,-35,78,0.1367134375703725],[123,-35,79,0.1325998060821585],[123,-34,64,0.11474130979177356],[123,-34,65,0.11560060220786404],[123,-34,66,0.11441604083615715],[123,-34,67,0.11419525495043961],[123,-34,68,0.1185923247359311],[123,-34,69,0.12302081680913778],[123,-34,70,0.12519897795792864],[123,-34,71,0.1279067292510129],[123,-34,72,0.13177857815798777],[123,-34,73,0.1341003070567082],[123,-34,74,0.1360323486402886],[123,-34,75,0.13765849578540354],[123,-34,76,0.13463015147164706],[123,-34,77,0.13379330242223875],[123,-34,78,0.13338216154411628],[123,-34,79,0.13061587465561036],[123,-33,64,0.11587850180895191],[123,-33,65,0.11628815267608236],[123,-33,66,0.11532419898822537],[123,-33,67,0.11655415345507071],[123,-33,68,0.1211529262845013],[123,-33,69,0.12554804693448454],[123,-33,70,0.1271256235512473],[123,-33,71,0.12863411201171063],[123,-33,72,0.1323277376663943],[123,-33,73,0.13540660847819],[123,-33,74,0.1373043726344484],[123,-33,75,0.13771474596443753],[123,-33,76,0.13438654418050233],[123,-33,77,0.1337872598315383],[123,-33,78,0.13242776909125922],[123,-33,79,0.12787251276079106],[123,-32,64,0.11782540788565836],[123,-32,65,0.11893865719599053],[123,-32,66,0.11848980858203181],[123,-32,67,0.12032678902942945],[123,-32,68,0.12476888730164576],[123,-32,69,0.1286996742283642],[123,-32,70,0.13104399577801434],[123,-32,71,0.13207348613931455],[123,-32,72,0.13500823545539123],[123,-32,73,0.1375814576471462],[123,-32,74,0.13953484771922028],[123,-32,75,0.14082236098216225],[123,-32,76,0.13720407113277774],[123,-32,77,0.13621135308193047],[123,-32,78,0.13220687282736987],[123,-32,79,0.1253924887088054],[123,-31,64,0.12180969212618471],[123,-31,65,0.12177299012773435],[123,-31,66,0.12148801421065952],[123,-31,67,0.12411365868586711],[123,-31,68,0.12835345015032354],[123,-31,69,0.13148618870415987],[123,-31,70,0.13494809240892264],[123,-31,71,0.13660159042136558],[123,-31,72,0.13938292027829705],[123,-31,73,0.14182009832388193],[123,-31,74,0.14289484199915203],[123,-31,75,0.1439483854788181],[123,-31,76,0.13929084428704364],[123,-31,77,0.13729051668461598],[123,-31,78,0.13131289901241772],[123,-31,79,0.12577058758107065],[123,-30,64,0.12650206269683306],[123,-30,65,0.12540268851397288],[123,-30,66,0.1254241205344574],[123,-30,67,0.12983299917061375],[123,-30,68,0.13406737135724403],[123,-30,69,0.13652550055552068],[123,-30,70,0.1394442720723763],[123,-30,71,0.14136022358284836],[123,-30,72,0.14349859362714834],[123,-30,73,0.14525242865839882],[123,-30,74,0.14695385288341478],[123,-30,75,0.14628685054584292],[123,-30,76,0.14099716209291593],[123,-30,77,0.13843086937562926],[123,-30,78,0.13234648123399576],[123,-30,79,0.12947245560553147],[123,-29,64,0.12768135217979593],[123,-29,65,0.12952151577631743],[123,-29,66,0.1314145903320779],[123,-29,67,0.13335089027057923],[123,-29,68,0.13532063283951432],[123,-29,69,0.137315549981362],[123,-29,70,0.13932714129721444],[123,-29,71,0.14116745923098964],[123,-29,72,0.1427959463851795],[123,-29,73,0.1444341469205837],[123,-29,74,0.1460825370409945],[123,-29,75,0.14774077750407955],[123,-29,76,0.14502101620150093],[123,-29,77,0.14094995506837985],[123,-29,78,0.13480817353350394],[123,-29,79,0.13292127465265896],[123,-28,64,0.12763577625323827],[123,-28,65,0.129459401710328],[123,-28,66,0.13133786052130758],[123,-28,67,0.13326133405157833],[123,-28,68,0.1352195006493809],[123,-28,69,0.1372033120964934],[123,-28,70,0.13882106588195806],[123,-28,71,0.14037961794312592],[123,-28,72,0.14195026752794118],[123,-28,73,0.14353493666929357],[123,-28,74,0.14513468675250174],[123,-28,75,0.14674963668403196],[123,-28,76,0.14837890748590465],[123,-28,77,0.14422518412131397],[123,-28,78,0.1378919498687392],[123,-28,79,0.1341850250741567],[123,-27,64,0.1276045189731041],[123,-27,65,0.12940831775374062],[123,-27,66,0.13126837949905862],[123,-27,67,0.13317481765627745],[123,-27,68,0.13504123216251906],[123,-27,69,0.1365210974066709],[123,-27,70,0.13800950206813586],[123,-27,71,0.1395105735094618],[123,-27,72,0.14102773085470535],[123,-27,73,0.14256353182591208],[123,-27,74,0.14411954956683057],[123,-27,75,0.1456962796661441],[123,-27,76,0.147293077531199],[123,-27,77,0.14703300318853355],[123,-27,78,0.141035166413485],[123,-27,79,0.1368077479687261],[123,-26,64,0.127582085083802],[123,-26,65,0.1293623579358191],[123,-26,66,0.13119982077851125],[123,-26,67,0.132855289980255],[123,-26,68,0.1342699398136301],[123,-26,69,0.13569042075647766],[123,-26,70,0.13712226310011852],[123,-26,71,0.13857038150739986],[123,-26,72,0.14003887460219697],[123,-26,73,0.14153085775563692],[123,-26,74,0.14304832935586603],[123,-26,75,0.14459207078787584],[123,-26,76,0.14616158027984208],[123,-26,77,0.14775504069414938],[123,-26,78,0.14509960517830967],[123,-26,79,0.1404625221272298],[123,-25,64,0.12755976693863025],[123,-25,65,0.1293124476811363],[123,-25,66,0.13071335028230066],[123,-25,67,0.1320692389426305],[123,-25,68,0.13342644801102932],[123,-25,69,0.13479183503850584],[123,-25,70,0.13617175324536157],[123,-25,71,0.13757183146887927],[123,-25,72,0.13899676162525276],[123,-25,73,0.14045012239576005],[123,-25,74,0.14193423943833988],[123,-25,75,0.14345008235810974],[123,-25,76,0.14499719859141344],[123,-25,77,0.14657368426956782],[123,-25,78,0.14817619203326787],[123,-25,79,0.14222670855404806],[123,-24,64,0.12729478832367486],[123,-24,65,0.12861274606749093],[123,-24,66,0.12991871624367837],[123,-24,67,0.13121940624179187],[123,-24,68,0.13252327895475724],[123,-24,69,0.13383804294493873],[123,-24,70,0.135170798142047],[123,-24,71,0.13652779825330305],[123,-24,72,0.13791423107149783],[123,-24,73,0.13933403758562182],[123,-24,74,0.14078977020272965],[123,-24,75,0.14228249031447437],[123,-24,76,0.14381170535382953],[123,-24,77,0.1453753453891685],[123,-24,78,0.1469697791972128],[123,-24,79,0.1429407211542802],[123,-23,64,0.126552079736915],[123,-23,65,0.1278149094296203],[123,-23,66,0.12906738358159606],[123,-23,67,0.13031631708558403],[123,-23,68,0.13157070796186454],[123,-23,69,0.1328390494991861],[123,-23,70,0.13412910913387996],[123,-23,71,0.1354476775965597],[123,-23,72,0.13680034606996208],[123,-23,73,0.13819132435210096],[123,-23,74,0.1396233003349531],[123,-23,75,0.14109734102571345],[123,-23,76,0.14261283524069296],[123,-23,77,0.144167477993863],[123,-23,78,0.14575729648644495],[123,-23,79,0.14369019086815912],[123,-22,64,0.12575771213319517],[123,-22,65,0.12696756513526242],[123,-22,66,0.12816917250997037],[123,-22,67,0.1293694263978478],[123,-22,68,0.13057779765810507],[123,-22,69,0.13180349249857515],[123,-22,70,0.13305486675185152],[123,-22,71,0.13433916488162337],[123,-22,72,0.1356622969420309],[123,-22,73,0.1370286584523655],[123,-22,74,0.13844099349388542],[123,-22,75,0.13990030124407216],[123,-22,76,0.14140578605758827],[123,-22,77,0.1429548510856315],[123,-22,78,0.14454313530029814],[123,-22,79,0.14455954344801164],[123,-21,64,0.12492177350397095],[123,-21,65,0.12608037585905094],[123,-21,66,0.12723329354850257],[123,-21,67,0.12838745675808672],[123,-21,68,0.12955273811624157],[123,-21,69,0.1307389816510711],[123,-21,70,0.13195505499920857],[123,-21,71,0.13320858018814896],[123,-21,72,0.1345057122224656],[123,-21,73,0.13585096229270782],[123,-21,74,0.13724706590636782],[123,-21,75,0.13869489614034722],[123,-21,76,0.14019342209919838],[123,-21,77,0.14173971253656498],[123,-21,78,0.14332898446312317],[123,-21,79,0.14495469642775072],[123,-20,64,0.12405421714663735],[123,-20,65,0.12516276891555367],[123,-20,66,0.1262685966880216],[123,-20,67,0.12737862275180975],[123,-20,68,0.1285030448346947],[123,-20,69,0.12965226932055388],[123,-20,70,0.13083560474913006],[123,-20,71,0.13206098498908658],[123,-20,72,0.13333475004548054],[123,-20,73,0.13466147309523546],[123,-20,74,0.13604383403994888],[123,-20,75,0.13748253975675687],[123,-20,76,0.1389762911037665],[123,-20,77,0.14052179660062603],[123,-20,78,0.14211383256195254],[123,-20,79,0.1437453493167578],[123,-19,64,0.12316515204258557],[123,-19,65,0.12422420490796558],[123,-19,66,0.12528381641559316],[123,-19,67,0.1263508504080067],[123,-19,68,0.1274357509616497],[123,-19,69,0.12854941457313657],[123,-19,70,0.12970152937211812],[123,-19,71,0.13090028986336658],[123,-19,72,0.13215217918319874],[123,-19,73,0.13346179920214132],[123,-19,74,0.13483174875199716],[123,-19,75,0.13626255013815916],[123,-19,76,0.13775262396477733],[123,-19,77,0.1392983121554642],[123,-19,78,0.14089394890076926],[123,-19,79,0.14253197911121854],[123,-18,64,0.12226398251042946],[123,-18,65,0.12327324456677184],[123,-18,66,0.12428656320642283],[123,-18,67,0.12531069075376464],[123,-18,68,0.12635624066053314],[123,-18,69,0.12743453476283353],[123,-18,70,0.1285555936916828],[123,-18,71,0.12972784074991323],[123,-18,72,0.13095788330983058],[123,-18,73,0.13225034382116918],[123,-18,74,0.13360774069710488],[123,-18,75,0.1350304192200781],[123,-18,76,0.13651653246690457],[123,-18,77,0.1380620720986689],[123,-18,78,0.13966094870070034],[123,-18,79,0.14130512119739574],[123,-17,64,0.12135434579017486],[123,-17,65,0.12231274989534331],[123,-17,66,0.1232788457099585],[123,-17,67,0.12425922127491418],[123,-17,68,0.12526458508082883],[123,-17,69,0.12630662524038833],[123,-17,70,0.12739565817032567],[123,-17,71,0.1285403180385769],[123,-17,72,0.12974733390203333],[123,-17,73,0.13102135846253993],[123,-17,74,0.13236484870068338],[123,-17,75,0.13377799851224081],[123,-17,76,0.13525872332077346],[123,-17,77,0.13680269647658122],[123,-17,78,0.1384034370829105],[123,-17,79,0.1400524487211267],[123,-16,64,0.12042574961178246],[123,-16,65,0.12133266958816492],[123,-16,66,0.1222511726913671],[123,-16,67,0.12318763381158514],[123,-16,68,0.12415277480853522],[123,-16,69,0.12515857490317708],[123,-16,70,0.1262155888602879],[123,-16,71,0.12733261983197022],[123,-16,72,0.1285164900580586],[123,-16,73,0.12977186532961216],[123,-16,74,0.13110113346728067],[123,-16,75,0.13250433692308713],[123,-16,76,0.1339791594537134],[123,-16,77,0.1355209666408125],[123,-16,78,0.1371228998553227],[123,-16,79,0.13877602308474127],[123,-15,64,0.11946745532879319],[123,-15,65,0.12032290775252513],[123,-15,66,0.12119420851760318],[123,-15,67,0.12208747305124391],[123,-15,68,0.12301334610580905],[123,-15,69,0.12398400438403524],[123,-15,70,0.12501015970406942],[123,-15,71,0.12610071480350593],[123,-15,72,0.12726252695888568],[123,-15,73,0.12850022750368664],[123,-15,74,0.1298160974872015],[123,-15,75,0.13120999956508125],[123,-15,76,0.13267936604308103],[123,-15,77,0.13421924281401337],[123,-15,78,0.13582238874048336],[123,-15,79,0.1374794298494662],[123,-14,64,0.11847209006822954],[123,-14,65,0.11927660034104592],[123,-14,66,0.12010165877515161],[123,-14,67,0.12095307568524048],[123,-14,68,0.12184132140432878],[123,-14,69,0.12277866236369557],[123,-14,70,0.12377586822121217],[123,-14,71,0.12484185159401157],[123,-14,72,0.12598342517436928],[123,-14,73,0.12720511674061857],[123,-14,74,0.12850904229288568],[123,-14,75,0.12989483738381674],[123,-14,76,0.13135964653698923],[123,-14,77,0.13289817045588814],[123,-14,78,0.13450277053079307],[123,-14,79,0.13616362995675058],[123,-13,64,0.0752366759386363],[123,-13,65,0.08941537078040565],[123,-13,66,0.10491119549993033],[123,-13,67,0.11978099984818504],[123,-13,68,0.12063368079412035],[123,-13,69,0.12153994876849931],[123,-13,70,0.12251051977449583],[123,-13,71,0.12355421291676581],[123,-13,72,0.12467770253706861],[123,-13,73,0.12588532998996735],[123,-13,74,0.12717897527148794],[123,-13,75,0.12855798854659556],[123,-13,76,0.1300191814364792],[123,-13,77,0.13155687772958094],[123,-13,78,0.1331630229778675],[123,-13,79,0.13482735223929798],[123,-12,64,0.03819201579371972],[123,-12,65,0.04728468834283128],[123,-12,66,0.057532013833684253],[123,-12,67,0.06892838863139435],[123,-12,68,0.08146101237644633],[123,-12,69,0.09510797828585686],[123,-12,70,0.10983505226360378],[123,-12,71,0.12223660480133706],[123,-12,72,0.1233441756879022],[123,-12,73,0.1245396294519326],[123,-12,74,0.1258245332826981],[123,-12,75,0.12719788939103818],[123,-12,76,0.12865612898006443],[123,-12,77,0.13019316691194682],[123,-12,78,0.13180051648647192],[123,-12,79,0.13346746354184896],[123,-11,64,0.015814723627433247],[123,-11,65,0.020885871777362564],[123,-11,66,0.026893488382896583],[123,-11,67,0.033859116455089946],[123,-11,68,0.04179780779288398],[123,-11,69,0.05071660130950369],[123,-11,70,0.06061116169335789],[123,-11,71,0.07146611922855786],[123,-11,72,0.08325556408300155],[123,-11,73,0.0959436241743928],[123,-11,74,0.10948513699871346],[123,-11,75,0.12382642411751141],[123,-11,76,0.1272677281236376],[123,-11,77,0.1288037001938017],[123,-11,78,0.13041128211540412],[123,-11,79,0.1320793170128015],[123,-10,64,0.0044360422334885794],[123,-10,65,0.006602702565250051],[123,-10,66,0.009453519350149165],[123,-10,67,0.01303356591305595],[123,-10,68,0.017381207142121574],[123,-10,69,0.022526942648678938],[123,-10,70,0.028489922388830007],[123,-10,71,0.035278352433647714],[123,-10,72,0.04289004065236403],[123,-10,73,0.05131299710446774],[123,-10,74,0.06052609329407331],[123,-10,75,0.07049978508969053],[123,-10,76,0.08119690388296916],[123,-10,77,0.09257351944101141],[123,-10,78,0.10457987598163727],[123,-10,79,0.11716140041447057],[123,-9,64,0.0016492238034613482],[123,-9,65,0.0023656570997844166],[123,-9,66,0.0030733756024124755],[123,-9,67,0.0037761333882070564],[123,-9,68,0.004565243504061774],[123,-9,69,0.006949197064081083],[123,-9,70,0.009957626276782702],[123,-9,71,0.013619366895686939],[123,-9,72,0.01795245879563836],[123,-9,73,0.022964782435673688],[123,-9,74,0.028654743473833903],[123,-9,75,0.03501200518313026],[123,-9,76,0.042018269306754626],[123,-9,77,0.049648106465038026],[123,-9,78,0.05786983713191961],[123,-9,79,0.06664646354069652],[123,-8,64,4.8205043162273916E-4],[123,-8,65,0.0011896142044640564],[123,-8,66,0.0018956404463714939],[123,-8,67,0.0026032388327079303],[123,-8,68,0.003320259557611404],[123,-8,69,0.0040579114578598524],[123,-8,70,0.004826106226001538],[123,-8,71,0.0056330455989038325],[123,-8,72,0.006484969737593343],[123,-8,73,0.007385967666139057],[123,-8,74,0.010351394545587993],[123,-8,75,0.013931920393059386],[123,-8,76,0.018050199343111577],[123,-8,77,0.022696886331715557],[123,-8,78,0.027855779261965176],[123,-8,79,0.03350472949803942],[123,-7,64,-6.770887267733697E-4],[123,-7,65,2.2620647513465786E-5],[123,-7,66,7.27928988498231E-4],[123,-7,67,0.0014412532800106136],[123,-7,68,0.0021695540807485703],[123,-7,69,0.0029232810215890814],[123,-7,70,0.0037115804283833448],[123,-7,71,0.004541891754525892],[123,-7,72,0.005419709078112082],[123,-7,73,0.006348403412567617],[123,-7,74,0.007329105767450054],[123,-7,75,0.008360650777975105],[123,-7,76,0.009439580602989068],[123,-7,77,0.010560208672024968],[123,-7,78,0.011714742742551175],[123,-7,79,0.014251611779588568],[123,-6,64,-0.0018244592429497847],[123,-6,65,-0.0011316980482242523],[123,-6,66,-4.2636519417215947E-4],[123,-6,67,2.932178739164072E-4],[123,-6,68,0.0010330612925492195],[123,-6,69,0.0018027813778981562],[123,-6,70,0.0026106884930799444],[123,-6,71,0.0034633966938745564],[123,-6,72,0.0043656014183839405],[123,-6,73,0.005319916169393875],[123,-6,74,0.006326768099481187],[123,-6,75,0.007384352293410005],[123,-6,76,0.00848864442624826],[123,-6,77,0.00963347135934798],[123,-6,78,0.01081063911971741],[123,-6,79,0.012010117593278673],[123,-5,64,-0.0029569184155173213],[123,-5,65,-0.002270345643783696],[123,-5,66,-0.0015645114297115773],[123,-5,67,-8.385175708797981E-4],[123,-5,68,-8.734991575983997E-5],[123,-5,69,6.977192338449857E-4],[123,-5,70,0.0015241123059934322],[123,-5,71,0.002397572995857817],[123,-5,72,0.0033219630005289725],[123,-5,73,0.0042991153689105254],[123,-5,74,0.005328744351429056],[123,-5,75,0.006408411522517675],[123,-5,76,0.0075335478365035],[123,-5,77,0.008697531165120771],[123,-5,78,0.009891818752310128],[123,-5,79,0.011106133911246215],[123,-4,64,-0.004072046590723593],[123,-4,65,-0.003391079980720314],[123,-4,66,-0.00268455593405753],[123,-4,67,-0.0019523934737323825],[123,-4,68,-0.0011906033220346226],[123,-4,69,-3.913811747579865E-4],[123,-4,70,4.5177563643162877E-4],[123,-4,71,0.0013437148742563478],[123,-4,72,0.0022874477439762805],[123,-4,73,0.003284020954812406],[123,-4,74,0.004332442355813514],[123,-4,75,0.00542965990034422],[123,-4,76,0.006570593585871605],[123,-4,77,0.007748219908275562],[123,-4,78,0.008953708262528217],[123,-4,79,0.010176608616363216],[123,-3,64,-0.005168215115026929],[123,-3,65,-0.004492475454452745],[123,-3,66,-0.0037853750563148934],[123,-3,67,-0.003047680861581231],[123,-3,68,-0.0022764397345832613],[123,-3,69,-0.0014647839371192376],[123,-3,70,-6.071413488889222E-4],[123,-3,71,3.004343046836612E-4],[123,-3,72,0.0012601056432947964],[123,-3,73,0.0022721441561134132],[123,-3,74,0.0033348728993476185],[123,-3,75,0.0044446591055053815],[123,-3,76,0.005595956341162601],[123,-3,77,0.006781395748598818],[123,-3,78,0.007991925805546932],[123,-3,79,0.009216999938690141],[123,-2,64,-0.006244589454255801],[123,-2,65,-0.005573921733762675],[123,-2,66,-0.004866666403116999],[123,-2,67,-0.004124461887385924],[123,-2,68,-0.0033453844826602896],[123,-2,69,-0.002523494224817934],[123,-2,70,-0.0016541390741382433],[123,-2,71,-7.342597730967959E-4],[123,-2,72,2.3747802709448416E-4],[123,-2,73,0.0012605981748836576],[123,-2,74,0.00233277478229021],[123,-2,75,0.003449839070374578],[123,-2,76,0.004605831927417184],[123,-2,77,0.005793101716482842],[123,-2,78,0.0070024467752084945],[123,-2,79,0.008223301959659687],[123,-1,64,-0.007301065972426162],[123,-1,65,-0.006635557253948911],[123,-1,66,-0.00592887641707325],[123,-1,67,-0.005183549130082233],[123,-1,68,-0.004398656749356379],[123,-1,69,-0.003569156758429117],[123,-1,70,-0.0026912859588806024],[123,-1,71,-0.0017628382147460752],[123,-1,72,-7.832694964871585E-4],[123,-1,73,2.4623946387455247E-4],[123,-1,74,0.0013227627104197943],[123,-1,75,0.0024416505107302806],[123,-1,76,0.0035965923427026263],[123,-1,77,0.004779720963838774],[123,-1,78,0.005981757020399508],[123,-1,79,0.007192193571301414],[123,0,64,-0.00833814084778818],[123,0,65,-0.007678135994276836],[123,0,66,-0.006973062967204026],[123,0,67,-0.006226342296444032],[123,0,68,-0.005438019445935784],[123,0,69,-0.004603898778028404],[123,0,70,-0.0037210551457970077],[123,0,71,-0.0027880834283739485],[123,0,72,-0.001805175586722369],[123,0,73,-7.741597415734149E-4],[123,0,74,3.014985164233588E-4],[123,0,75,0.001416732295495647],[123,0,76,0.0025649466827464317],[123,0,77,0.0037381286895936867],[123,0,78,0.0049269933401107375],[123,0,79,0.006121165306380372],[123,1,64,-0.009356710276196143],[123,1,65,-0.008702826922823923],[123,1,66,-0.008000692504146544],[123,1,67,-0.00725462198991307],[123,1,68,-0.006465569349339668],[123,1,69,-0.005630117236670788],[123,1,70,-0.004746110205884033],[123,1,71,-0.00381287565435703],[123,1,72,-0.002831272541324406],[123,1,73,-0.001803706711217898],[123,1,74,-7.341130432741524E-4],[123,1,75,3.72095281194536E-4],[123,1,76,0.0015081100324975524],[123,1,77,0.002665843277010928],[123,1,78,0.003836074314791124],[123,1,79,0.005008627649048924],[123,2,64,-0.0037907674547737343],[123,2,65,-0.005927775305024067],[123,2,66,-0.008592115520409187],[123,2,67,-0.008270280566885562],[123,2,68,-0.007483467401200199],[123,2,69,-0.00665020984145258],[123,2,70,-0.005769039021283165],[123,2,71,-0.0048399323967448435],[123,2,72,-0.0038643344087652505],[123,2,73,-0.0028451484019369807],[123,2,74,-0.001786700029645222],[123,2,75,-6.946724364103182E-4],[123,2,76,4.239864310060978E-4],[123,2,77,0.0015611839728446118],[123,2,78,0.0027078300774107866],[123,2,79,0.0038540107315145314],[123,3,64,-6.910530027170871E-4],[123,3,65,-0.001281875855147212],[123,3,66,-0.0021193765508337645],[123,3,67,-0.0032732175926163815],[123,3,68,-0.004797629802592586],[123,3,69,-0.006731086099257005],[123,3,70,-0.006792026617411327],[123,3,71,-0.005871495016240311],[123,3,72,-0.00490658203032905],[123,3,73,-0.003900599808927326],[123,3,74,-0.0028581798167301845],[123,3,75,-0.0017851947948952075],[123,3,76,-6.88657448963068E-4],[123,3,77,4.234037478879745E-4],[123,3,78,0.001542091199922281],[123,3,79,0.0026578068017659474],[123,4,64,-3.531960495091114E-4],[123,4,65,-5.047119758195029E-4],[123,4,66,-5.969551887702371E-4],[123,4,67,-7.228828210904056E-4],[123,4,68,-9.592768055106889E-4],[123,4,69,-0.0013663609977232517],[123,4,70,-0.0019947212295949274],[123,4,71,-0.002886270333533827],[123,4,72,-0.004075042020311047],[123,4,73,-0.004971242339233437],[123,4,74,-0.003949493454123041],[123,4,75,-0.0029000831347384243],[123,4,76,-0.001830013207875885],[123,4,77,-7.471810447705337E-4],[123,4,78,3.397657717599661E-4],[123,4,79,0.0014215924231390008],[123,5,64,9.601327494445061E-4],[123,5,65,1.4067153795551803E-4],[123,5,66,-2.8829192974437907E-4],[123,5,67,-4.4298620399662073E-4],[123,5,68,-4.226919997094897E-4],[123,5,69,-3.0932950584188E-4],[123,5,70,-1.745305940384145E-4],[123,5,71,-8.054464611981787E-5],[123,5,72,-8.097519658783658E-5],[123,5,73,-2.2150116045373E-4],[123,5,74,-5.405785213529759E-4],[123,5,75,-0.0010701185228856685],[123,5,76,-0.0018361386306390642],[123,5,77,-0.0019490612022738363],[123,5,78,-8.970925951500822E-4],[123,5,79,1.480327965618114E-4],[123,6,64,0.006987833694562077],[123,6,65,0.004392904527195081],[123,6,66,0.002544991598592211],[123,6,67,0.0013046559192759993],[123,6,68,5.501631126835114E-4],[123,6,69,1.7792259099239996E-4],[123,6,70,9.525645449510222E-5],[123,6,71,2.195508479202572E-4],[123,6,72,4.7757402380910397E-4],[123,6,73,8.048034273058812E-4],[123,6,74,0.0011447663121769388],[123,6,75,0.0014483977314525753],[123,6,76,0.0016734193546684548],[123,6,77,0.0017837422921144718],[123,6,78,0.0017488968629245723],[123,6,79,0.0015434919794060059],[123,7,64,0.021469052250861015],[123,7,65,0.015992530210776117],[123,7,66,0.011644007673441524],[123,7,67,0.00826136701423914],[123,7,68,0.005700698463944636],[123,7,69,0.003836869173835335],[123,7,70,0.002556194798278334],[123,7,71,0.0017556790183428641],[123,7,72,0.0013423997281853555],[123,7,73,0.001232887892694662],[123,7,74,0.0013525090411061734],[123,7,75,0.0016348543406302046],[123,7,76,0.002021146292195457],[123,7,77,0.002459662909055897],[123,7,78,0.0029051834989105643],[123,7,79,0.003318458681321412],[123,8,64,0.048123196173768354],[123,8,65,0.03867154657235699],[123,8,66,0.030748151857691072],[123,8,67,0.024170835519858144],[123,8,68,0.018775120812430386],[123,8,69,0.014415267304145711],[123,8,70,0.010957098639452493],[123,8,71,0.0082774797140515],[123,8,72,0.0062638668369917406],[123,8,73,0.004813797263728769],[123,8,74,0.0038343455091042135],[123,8,75,0.0032415652763825666],[123,8,76,0.0029599299161284028],[123,8,77,0.002921780305130069],[123,8,78,0.0030667863425276696],[123,8,79,0.003341426476962943],[123,9,64,0.08348614224257268],[123,9,65,0.07608310315241516],[123,9,66,0.06354641649034129],[123,9,67,0.05274539218936881],[123,9,68,0.043500743153454285],[123,9,69,0.035649940743745105],[123,9,70,0.029040810304301754],[123,9,71,0.02353164501316691],[123,9,72,0.018991206118819482],[123,9,73,0.015298525192567717],[123,9,74,0.012342574884990826],[123,9,75,0.01002185580043115],[123,9,76,0.008243933267417163],[123,9,77,0.0069249477658585665],[123,9,78,0.0059891156091300786],[123,9,79,0.005368231420748237],[123,10,64,0.0814472399286344],[123,10,65,0.08124345392435893],[123,10,66,0.08113238209708701],[123,10,67,0.08110327354565539],[123,10,68,0.08115030629016748],[123,10,69,0.0712099049458146],[123,10,70,0.06050474779183461],[123,10,71,0.05123477490510389],[123,10,72,0.04325385678995942],[123,10,73,0.036425052022114573],[123,10,74,0.03062084708852582],[123,10,75,0.025723149049681676],[123,10,76,0.02162310785789175],[123,10,77,0.018220824582886114],[123,10,78,0.015424986381329001],[123,10,79,0.013152457617330103],[123,11,64,0.07939424279143552],[123,11,65,0.07913969370368734],[123,11,66,0.07897502571888647],[123,11,67,0.07888925634360677],[123,11,68,0.07887646769509138],[123,11,69,0.07893667241073682],[123,11,70,0.07906870407476296],[123,11,71,0.07927016217946634],[123,11,72,0.07953753509319648],[123,11,73,0.07186361537937691],[123,11,74,0.062365274993978446],[123,11,75,0.05405968308685722],[123,11,76,0.046824277619093524],[123,11,77,0.04054489219890812],[123,11,78,0.03511576947630472],[123,11,79,0.030439422747469202],[123,12,64,0.07733467722747606],[123,12,65,0.07702880167447762],[123,12,66,0.07680966291038184],[123,12,67,0.07666625339198034],[123,12,68,0.07659267489598073],[123,12,69,0.0765889387407545],[123,12,70,0.07665392026963946],[123,12,71,0.07678531149233815],[123,12,72,0.07697974827413265],[123,12,73,0.0772329353017893],[123,12,74,0.0775397686090782],[123,12,75,0.07789445545268606],[123,12,76,0.07829063133888498],[123,12,77,0.0775524519093035],[123,12,78,0.06874344085789251],[123,12,79,0.06093047785373122],[123,13,64,0.07527733874078955],[123,13,65,0.07491997309034441],[123,13,66,0.07464590924451268],[123,13,67,0.07444432347207665],[123,13,68,0.07430944554193819],[123,13,69,0.07424129303332735],[123,13,70,0.0742387797274903],[123,13,71,0.07429967952471153],[123,13,72,0.07442075926590586],[123,13,73,0.07459790752649444],[123,13,74,0.07482625917653772],[123,13,75,0.07510031551414335],[123,13,76,0.07541405979363096],[123,13,77,0.07576106798563342],[123,13,78,0.07613461462352893],[123,13,79,0.07652777360864299],[123,14,64,0.07323339042814468],[123,14,65,0.07282477465171981],[123,14,66,0.07249573608418389],[123,14,67,0.07223583240168613],[123,14,68,0.0720395139720524],[123,14,69,0.07190679352495978],[123,14,70,0.07183660090393211],[123,14,71,0.07182676297592354],[123,14,72,0.07187414443489229],[123,14,73,0.07197478257552602],[123,14,74,0.07212401583970153],[123,14,75,0.07231660595702556],[123,14,76,0.07254685352067126],[123,14,77,0.07280870686043157],[123,14,78,0.07309586409666348],[123,14,79,0.07340186828083015],[123,15,64,0.07121720838524204],[123,15,65,0.07075792653012444],[123,15,66,0.07037415811290823],[123,15,67,0.0700560164751425],[123,15,68,0.06979824439482982],[123,15,69,0.06960082142655064],[123,15,70,0.06946265641287322],[123,15,71,0.06938158867409651],[123,15,72,0.069354539627862],[123,15,73,0.06937765604898125],[123,15,74,0.06944644477889277],[123,15,75,0.06955589871953599],[123,15,76,0.06970061397256763],[123,15,77,0.06987489801139583],[123,15,78,0.0700728688005993],[123,15,79,0.07028854480408829],[123,16,64,0.06924183550227443],[123,16,65,0.0687325853711675],[123,16,66,0.06829430997257055],[123,16,67,0.0679178278022715],[123,16,68,0.0675982346301152],[123,16,69,0.06733544993574819],[123,16,70,0.06712833287853855],[123,16,71,0.0669747089115645],[123,16,72,0.06687153405379881],[123,16,73,0.06681504817969616],[123,16,74,0.0668009171423453],[123,16,75,0.06682436357907152],[123,16,76,0.06688028628147896],[123,16,77,0.06696336804495519],[123,16,78,0.0670681719456882],[123,16,79,0.0671892260253394],[123,17,64,0.06731293486810737],[123,17,65,0.06675447572127759],[123,17,66,0.06626187662578237],[123,17,67,0.06582678685174505],[123,17,68,0.06544470766516275],[123,17,69,0.06511547813867835],[123,17,70,0.0648378918155913],[123,17,71,0.06460975148329033],[123,17,72,0.06442804677597587],[123,17,73,0.06428911795739875],[123,17,74,0.06418880570785782],[123,17,75,0.0641225867802369],[123,17,76,0.06408569543032497],[123,17,77,0.06407323056652926],[123,17,78,0.06408024860334435],[123,17,79,0.06410184204061252],[123,18,64,0.06542905998306346],[123,18,65,0.06482221235931941],[123,18,66,0.06427548998455722],[123,18,67,0.06378147470581697],[123,18,68,0.06333611765446742],[123,18,69,0.0629391638047304],[123,18,70,0.06258933614834412],[123,18,71,0.062284420123694284],[123,18,72,0.06202145429047654],[123,18,73,0.06179690420961618],[123,18,74,0.061606819363002815],[123,18,75,0.06144697299612901],[123,18,76,0.061312984814670735],[123,18,77,0.06120042651281404],[123,18,78,0.06110491015666462],[123,18,79,0.0610221594893521],[123,19,64,0.06264775377678129],[123,19,65,0.0622285371277688],[123,19,66,0.061811935519081165],[123,19,67,0.061405638060533695],[123,19,68,0.06101395794704213],[123,19,69,0.06063749813447771],[123,19,70,0.060277371896246275],[123,19,71,0.05993511449150417],[123,19,72,0.059612506100365566],[123,19,73,0.05931141409151867],[123,19,74,0.05903365475431106],[123,19,75,0.05878087457774769],[123,19,76,0.058554451109394015],[123,19,77,0.058338115468094746],[123,19,78,0.05813561075524342],[123,19,79,0.057944003838650164],[123,20,64,0.059082653320336166],[123,20,65,0.058609816242473356],[123,20,66,0.058145607095192176],[123,20,67,0.05769670802473941],[123,20,68,0.05726698833658581],[123,20,69,0.056857233628394496],[123,20,70,0.05646870252275239],[123,20,71,0.05610300794611973],[123,20,72,0.055761928696119456],[123,20,73,0.05544724338737707],[123,20,74,0.0551605868967935],[123,20,75,0.054903329371362046],[123,20,76,0.054676477804223265],[123,20,77,0.05448060012798783],[123,20,78,0.05431577171937638],[123,20,79,0.054181544155884144],[123,21,64,0.05541987203265105],[123,21,65,0.054892234272503004],[123,21,66,0.05437969771128128],[123,21,67,0.05388790472750137],[123,21,68,0.05342026002428261],[123,21,69,0.05297772545054131],[123,21,70,0.05256168553326354],[123,21,71,0.052173799696069736],[123,21,72,0.05181580442865048],[123,21,73,0.05148934080751186],[123,21,74,0.05119580747488777],[123,21,75,0.05093623911677958],[123,21,76,0.050711210415797556],[123,21,77,0.0505207653903406],[123,21,78,0.0503643719697102],[123,21,79,0.05024090159509198],[123,22,64,0.0516801642771132],[123,22,65,0.05109650214928463],[123,22,66,0.05053477380669395],[123,22,67,0.049999572195598016],[123,22,68,0.04949382516154288],[123,22,69,0.04901865843901708],[123,22,70,0.04857555759549674],[123,22,71,0.04816619322716328],[123,22,72,0.04779221599207347],[123,22,73,0.04745507982931858],[123,22,74,0.0471558934541609],[123,22,75,0.04689530014537535],[123,22,76,0.046673385768208564],[123,22,77,0.046489614905168064],[123,22,78,0.04634279489843504],[123,22,79,0.04623106754223308],[123,23,64,0.04788619614068563],[123,23,65,0.04724526068533771],[123,23,66,0.04663333055878578],[123,23,67,0.0460539622247138],[123,23,68,0.0455096028459614],[123,23,69,0.045001524065874154],[123,23,70,0.04453128329983513],[123,23,71,0.04410052454740217],[123,23,72,0.043710768729138635],[123,23,73,0.043363234846186316],[123,23,74,0.04305869203304798],[123,23,75,0.042797342492918576],[123,23,76,0.04257873522514247],[123,23,77,0.04240171037674804],[123,23,78,0.04226437397579988],[123,23,79,0.04216410273374714],[123,24,64,0.0440616287430963],[123,24,65,0.043362165977952276],[123,24,66,0.04269888578963335],[123,24,67,0.042074342953331706],[123,24,68,0.04149050844269571],[123,24,69,0.04094877668127842],[123,24,70,0.040450744423474745],[123,24,71,0.03999799032287152],[123,24,72,0.03959186309330143],[123,24,73,0.039233302877377335],[123,24,74,0.038922695871160456],[123,24,75,0.03865976216585487],[123,24,76,0.038443476681509915],[123,24,77,0.038272022984506354],[123,24,78,0.03814277970144975],[123,24,79,0.0380523391672789],[123,25,64,0.04023023675159658],[123,25,65,0.03947100904895028],[123,25,66,0.03875510677122436],[123,25,67,0.03808413857852],[123,25,68,0.037459611849515684],[123,25,69,0.0368830160641266],[123,25,70,0.03635595244293151],[123,25,71,0.03587989581445075],[123,25,72,0.035455983117513225],[123,25,73,0.03508483719644757],[123,25,74,0.0347664259141541],[123,25,75,0.03449995651466542],[123,25,76,0.034283805075734836],[123,25,77,0.034115480804212873],[123,25,78,0.033991624843872775],[123,25,79,0.03390804318721384],[123,26,64,0.036415063427317845],[123,26,65,0.03559487101078246],[123,26,66,0.03482497116817611],[123,26,67,0.03410610138605086],[123,26,68,0.03343932579609658],[123,26,69,0.032826197272806036],[123,26,70,0.03226828517748313],[123,26,71,0.03176692337392545],[123,26,72,0.0313230015132665],[123,26,73,0.03093679335790515],[123,26,74,0.03060782214482546],[123,26,75,0.030334762890591217],[123,26,76,0.030115381445213762],[123,26,77,0.029946510010869683],[123,26,78,0.029824058755475072],[123,26,79,0.029743063070677495],[123,27,64,0.03263761371729992],[123,27,65,0.03175531524023729],[123,27,66,0.030929963548718496],[123,27,67,0.03016151745733185],[123,27,68,0.029450625454250673],[123,27,69,0.028798868969721305],[123,27,70,0.028207748617722395],[123,27,71,0.02767842241939159],[123,27,72,0.0272115021727603],[123,27,73,0.02680688823776329],[123,27,74,0.026463642711613597],[123,27,75,0.026179900868292607],[123,27,76,0.02595282063804046],[123,27,77,0.025778569809264462],[123,27,78,0.02565235054756426],[123,27,79,0.025568460744830556],[123,28,64,0.028917087014541414],[123,28,65,0.027971618151748597],[123,28,66,0.027089309006733838],[123,28,67,0.02626944752783317],[123,28,68,0.025512300746875483],[123,28,69,0.024819441501909113],[123,28,70,0.02419226509850218],[123,28,71,0.023631721910227232],[123,28,72,0.023138120941689273],[123,28,73,0.022710972791618045],[123,28,74,0.022348871966180565],[123,28,75,0.02204941838931776],[123,28,76,0.021809177857551324],[123,28,77,0.021623681092204645],[123,28,78,0.021487460953632166],[123,28,79,0.021394127300013187],[123,29,64,0.02526965123947419],[123,29,65,0.02426004019503829],[123,29,66,0.02331924547218939],[123,29,67,0.022446004507892834],[123,29,68,0.021640242780994953],[123,29,69,0.020903486058788875],[123,29,70,0.020236989015102427],[123,29,71,0.01964146638195484],[123,29,72,0.01911690557032832],[123,29,73,0.018662419273722995],[123,29,74,0.018276137980713883],[123,29,75,0.01795514221869148],[123,29,76,0.017695434251383618],[123,29,77,0.017491948858399643],[123,29,78,0.01733860273712704],[123,29,79,0.01722838198592022],[123,30,64,0.02170776520445732],[123,30,65,0.02063314424602955],[123,30,66,0.01963234206723494],[123,30,67,0.01870367519160304],[123,30,68,0.01784677207866652],[123,30,69,0.017063072708433304],[123,30,70,0.016353657991755335],[123,30,71,0.01571898353921582],[123,30,72,0.015158702913264897],[123,30,73,0.014671531044702257],[123,30,74,0.014255147717457896],[123,30,75,0.01390614092218311],[123,30,76,0.013619989780548684],[123,30,77,0.013391086649035764],[123,30,78,0.013212797924517012],[123,30,79,0.013077562994045354],[123,31,64,0.018240967342637564],[123,31,65,0.017100640771559497],[123,31,66,0.016038403823810773],[123,31,67,0.015052286965487762],[123,31,68,0.014141669399630465],[123,31,69,0.013307867501804729],[123,31,70,0.012551758429710748],[123,31,71,0.011873520344410813],[123,31,72,0.011272467530504898],[123,31,73,0.010746925474474957],[123,31,74,0.010294145785155742],[123,31,75,0.009910260738620918],[123,31,76,0.009590277133208126],[123,31,77,0.009328109049517353],[123,31,78,0.009116649026016577],[123,31,79,0.008947877083270677],[123,32,64,0.014877357358917839],[123,32,65,0.0136709464455049],[123,32,66,0.012546109750480205],[123,32,67,0.011500727052100795],[123,32,68,0.010533977523024263],[123,32,69,0.00964701817702044],[123,32,70,0.008840496511883142],[123,32,71,0.008114300651666314],[123,32,72,0.007467407186803631],[123,32,73,0.006897768405288259],[123,32,74,0.006402238781659391],[123,32,75,0.005976540491666027],[123,32,76,0.005615267626883709],[123,32,77,0.005311928695706246],[123,32,78,0.00505902691594291],[123,32,79,0.004848177729513205],[123,33,64,0.011620381970417431],[123,33,65,0.010347838813875762],[123,33,66,0.009159539576462946],[123,33,67,0.008053343923849519],[123,33,68,0.007028279782285795],[123,33,69,0.006085312540202744],[123,33,70,0.005224839415242824],[123,33,71,0.004446452468622966],[123,33,72,0.003748799579909026],[123,33,73,0.003129483925904648],[123,33,74,0.0025850018163909292],[123,33,75,0.0021107186441881236],[123,33,76,0.0017008826171105258],[123,33,77,0.0013486758551980338],[123,33,78,0.001046302358968034],[123,33,79,7.851122830419032E-4],[123,34,64,0.008467885705221737],[123,34,65,0.007129477730978311],[123,34,66,0.005877167908199401],[123,34,67,0.0047089155169924915],[123,34,68,0.003623643385050144],[123,34,69,0.002622098094331341],[123,34,70,0.0017044126159398766],[123,34,71,8.698844609795364E-4],[123,34,72,1.1684970809402724E-4],[123,34,73,-5.574056153948697E-4],[123,34,74,-0.0011566969565077205],[123,34,75,-0.001685955712605425],[123,34,76,-0.002151207094897686],[123,34,77,-0.00255951179409444],[123,34,78,-0.0029188719365702753],[123,34,79,-0.0032381018871571886],[123,35,64,0.005411672060622597],[123,35,65,0.0040079564869506925],[123,35,66,0.0026914067721188666],[123,35,67,0.001460183805445709],[123,35,68,3.131462945104556E-4],[123,35,69,-7.491983615978601E-4],[123,35,70,-0.0017269872185018968],[123,35,71,-0.002621207111620501],[123,35,72,-0.003433808223356449],[123,35,73,-0.004167781638450532],[123,35,74,-0.004827201051986277],[123,35,75,-0.005417228881073163],[123,35,76,-0.005944087112515826],[123,35,77,-0.006414993294604618],[123,35,78,-0.006838062150855302],[123,35,79,-0.007222173357516719],[123,36,64,0.0024371163882255143],[123,36,65,9.689033823365547E-4],[123,36,66,-4.118032087474576E-4],[123,36,67,-0.0017065643990260306],[123,36,68,-0.0029165526913664903],[123,36,69,-0.00404151158152989],[123,36,70,-0.005081844023241608],[123,36,71,-0.006038800932191822],[123,36,72,-0.006914583642362847],[123,36,73,-0.007712411794242134],[123,36,74,-0.008436556822171969],[123,36,75,-0.009092341290090374],[123,36,76,-0.009686104401794153],[123,36,77,-0.010225134083476565],[123,36,78,-0.010717566102026519],[123,36,79,-0.011172250742912407],[123,37,64,-4.7716809127954185E-4],[123,37,65,-0.0020088648717460356],[123,37,66,-0.003453351661622709],[123,37,67,-0.0048118691266822375],[123,37,68,-0.006085599432473531],[123,37,69,-0.007274538016596932],[123,37,70,-0.008379337754996835],[123,37,71,-0.009401481678759345],[123,37,72,-0.010343376357289224],[123,37,73,-0.011208412151845827],[123,37,74,-0.012000990505309617],[123,37,75,-0.012726518511817067],[123,37,76,-0.013391371082708018],[123,37,77,-0.014002821092985115],[123,37,78,-0.014568937954595719],[123,37,79,-0.015098455119852873],[123,38,64,-0.0033587844878873287],[123,38,65,-0.004952804851650748],[123,38,66,-0.0064604312174530755],[123,38,67,-0.007882583466460653],[123,38,68,-0.009220446416735436],[123,38,69,-0.010474256500561961],[123,38,70,-0.011644887296664283],[123,38,71,-0.012734009044159939],[123,38,72,-0.013744175832171659],[123,38,73,-0.014678880969821641],[123,38,74,-0.01554258069671679],[123,38,75,-0.016340686468227283],[123,38,76,-0.01707952611925074],[123,38,77,-0.017766274274679073],[123,38,78,-0.01840885243387656],[123,38,79,-0.017606867579370414],[123,39,64,-0.006223497647475794],[123,39,65,-0.007878464214258247],[123,39,66,-0.00944830004396979],[123,39,67,-0.010933608239357668],[123,39,68,-0.012335575660506106],[123,39,69,-0.013654672362968318],[123,39,70,-0.014891965108994532],[123,39,71,-0.016049266949827324],[123,39,72,-0.01712922168309189],[123,39,73,-0.01813535759666333],[123,39,74,-0.019072110648607008],[123,39,75,-0.019944817304297372],[123,39,76,-0.02047576997305486],[123,39,77,-0.018706284990880288],[123,39,78,-0.016933423186633417],[123,39,79,-0.015166966966203137],[123,40,64,-0.009072215436792602],[123,40,65,-0.010786453638933451],[123,40,66,-0.012417246205114708],[123,40,67,-0.0139648516064928],[123,40,68,-0.015430455559990132],[123,40,69,-0.016814772160470507],[123,40,70,-0.01811904997814248],[123,40,71,-0.019345214647213817],[123,40,72,-0.020495954201481665],[123,40,73,-0.02157477458587283],[123,40,74,-0.021390938212660887],[123,40,75,-0.019690868778920255],[123,40,76,-0.01797159748254645],[123,40,77,-0.016241640576809786],[123,40,78,-0.0145100835600618],[123,40,79,-0.01278646457985713],[123,41,64,-0.01190614018881732],[123,41,65,-0.013677733196025438],[123,41,66,-0.01536794406861424],[123,41,67,-0.016976634944800343],[123,41,68,-0.018504986278721932],[123,41,69,-0.019953981577676465],[123,41,70,-0.021325054281026296],[123,41,71,-0.02262022590697587],[123,41,72,-0.022103030163614514],[123,41,73,-0.0204980190728835],[123,41,74,-0.01886130686043563],[123,41,75,-0.01719990383861188],[123,41,76,-0.01552148116107223],[123,41,77,-0.013834318474178299],[123,41,78,-0.012147223462709585],[123,41,79,-0.010469423709271394],[123,42,64,-0.014726613721310323],[123,42,65,-0.016553475261589096],[123,42,66,-0.018301338037453967],[123,42,67,-0.01996960138264056],[123,42,68,-0.021559437454063718],[123,42,69,-0.023072136414563744],[123,42,70,-0.022577350869414724],[123,42,71,-0.02108483637968463],[123,42,72,-0.019551460080225104],[123,42,73,-0.01798283287742953],[123,42,74,-0.016385166313383104],[123,42,75,-0.014765286251232525],[123,42,76,-0.013130618229235048],[123,42,77,-0.011489144745531308],[123,42,78,-0.009849334803204012],[123,42,79,-0.008220046108255353],[123,43,64,-0.017534150780100715],[123,43,65,-0.019414111524439316],[123,43,66,-0.02121770965347173],[123,43,67,-0.022943808761178557],[123,43,68,-0.02279853102398605],[123,43,69,-0.02142920200692966],[123,43,70,-0.02001222442177977],[123,43,71,-0.018552316121046304],[123,43,72,-0.01705457108057796],[123,43,73,-0.015524541114626604],[123,43,74,-0.013968289217667827],[123,43,75,-0.01239241462448348],[123,43,76,-0.010804049752422802],[123,43,77,-0.008868713603654058],[123,43,78,-0.006903294603591368],[123,43,79,-0.004958550997021381],[123,44,64,-0.02032738673754573],[123,44,65,-0.02225829558507945],[123,44,66,-0.022760689669225283],[123,44,67,-0.021522961370355573],[123,44,68,-0.020231060956435936],[123,44,69,-0.018889758458084105],[123,44,70,-0.01750381301026503],[123,44,71,-0.016078109821276002],[123,44,72,-0.014478025252396151],[123,44,73,-0.012484735152648044],[123,44,74,-0.010481619121148082],[123,44,75,-0.008474262908601798],[123,44,76,-0.006468649248967326],[123,44,77,-0.004471141621157679],[123,44,78,-0.0024884402689093815],[123,44,79,-5.275108162780136E-4],[123,45,64,-0.022459074238868577],[123,45,65,-0.02135779487979382],[123,45,66,-0.020200142487668844],[123,45,67,-0.018986610676744495],[123,45,68,-0.017721202095050133],[123,45,69,-0.016181088939784545],[123,45,70,-0.014213077875313935],[123,45,71,-0.012223318320676769],[123,45,72,-0.010216509431328295],[123,45,73,-0.008197507279651647],[123,45,74,-0.006171408167757963],[123,45,75,-0.00414360353778955],[123,45,76,-0.0021198065744230726],[123,45,77,-1.0605066817308146E-4],[123,45,78,0.0018913400211092188],[123,45,79,0.0038658075952957153],[123,46,64,-0.019909378827119413],[123,46,65,-0.018828483375182534],[123,46,66,-0.017694169957355618],[123,46,67,-0.015958322964993006],[123,46,68,-0.014010404384633196],[123,46,69,-0.012033520707126556],[123,46,70,-0.010032873252935798],[123,46,71,-0.008013402724516725],[123,46,72,-0.005979946088273562],[123,46,73,-0.0039373650488727175],[123,46,74,-0.0018906460144394288],[123,46,75,1.550284694290523E-4],[123,46,76,0.0021942367611746173],[123,46,77,0.0042213035095054145],[123,46,78,0.006230313181406994],[123,46,79,0.008215151461715552],[123,47,64,-0.017410014408777718],[123,47,65,-0.015767729718160643],[123,47,66,-0.013853773113441091],[123,47,67,-0.011902857783824106],[123,47,68,-0.009919001523074145],[123,47,69,-0.00790849162156361],[123,47,70,-0.005877032619451554],[123,47,71,-0.003829888177175034],[123,47,72,-0.0017720560657904863],[123,47,73,2.915853085985509E-4],[123,47,74,0.002356158992812956],[123,47,75,0.004416700252950218],[123,47,76,0.006468096006086338],[123,47,77,0.008505052827729235],[123,47,78,0.010522093371757753],[123,47,79,0.012513580970611966],[123,48,64,-0.013741131104156784],[123,48,65,-0.011823326752880175],[123,48,66,-0.009871735893675206],[123,48,67,-0.007884630247760337],[123,48,68,-0.0058661949012167825],[123,48,69,-0.0038234621234490996],[123,48,70,-0.0017626888265943903],[123,48,71,3.10500222535556E-4],[123,48,72,0.002390918462255047],[123,48,73,0.022364679179971553],[123,48,74,0.032758356427914394],[123,48,75,0.04310923159004592],[123,48,76,0.010688030929317109],[123,48,77,0.012732165531215494],[123,48,78,0.014754363368669204],[123,48,79,0.01674948538363426],[123,49,64,-0.0494118105888478],[123,49,65,-0.03964971498506515],[123,49,66,-0.02972170927626111],[123,49,67,-0.003923909647890115],[123,49,68,-0.0018719803560640776],[123,49,69,2.019354597789334E-4],[123,49,70,0.011454437984000755],[123,49,71,0.02194232258445706],[123,49,72,0.03244406190695354],[123,49,73,0.04293256893261294],[123,49,74,0.05338220780336466],[123,49,75,0.06376820570110013],[123,49,76,0.07406620902774427],[123,49,77,0.08425198437813877],[123,49,78,0.018914405826971622],[123,49,79,0.02091112943822893],[123,50,64,-0.030544096596826237],[123,50,65,-0.02058496017500422],[123,50,66,-0.010472335782942155],[123,50,67,-1.922646104349787E-4],[123,50,68,0.010230154509165635],[123,50,69,0.020749388871987646],[123,50,70,0.03132569463293829],[123,50,71,0.04192446033046065],[123,50,72,0.05251510232880937],[123,50,73,0.06307009505099752],[123,50,74,0.07356414030303834],[123,50,75,0.08397347903127302],[123,50,76,0.09427534768729308],[123,50,77,0.10444758009825415],[123,50,78,0.11446835443085465],[123,50,79,0.1237738771171048],[123,51,64,-0.012090310349383415],[123,51,65,-0.0019479492398429934],[123,51,66,0.00833650602320119],[123,51,67,0.018780229102394064],[123,51,68,0.029356560072710258],[123,51,69,0.04001542044477173],[123,51,70,0.05071360085522958],[123,51,71,0.06141409904640934],[123,51,72,0.07208491629385662],[123,51,73,0.08269798770789795],[123,51,74,0.09322825128707127],[123,51,75,0.10365285960674621],[123,51,76,0.11395053680647148],[123,51,77,0.12410108220771623],[123,51,78,0.13310163074050071],[123,51,79,0.14136683804773845],[123,52,64,0.005872010782212682],[123,52,65,0.016183774352719386],[123,52,66,0.02662757563465097],[123,52,67,0.037223647622839924],[123,52,68,0.04794365729404056],[123,52,69,0.05873293872033566],[123,52,70,0.06954475804638549],[123,52,71,0.08033964482870232],[123,52,72,0.09108409070253554],[123,52,73,0.10174938120338818],[123,52,74,0.11231056628608947],[123,52,75,0.12274557402675879],[123,52,76,0.1324392032449088],[123,52,77,0.1413296244826103],[123,52,78,0.15006090196956184],[123,52,79,0.15863739187621573],[123,53,64,0.02327943959003233],[123,53,65,0.033746859737564194],[123,53,66,0.04433783146802425],[123,53,67,0.055075422431972394],[123,53,68,0.06592952484753008],[123,53,69,0.0768409052814859],[123,53,70,0.087759290264422],[123,53,71,0.09864269013142507],[123,53,72,0.10945600301964095],[123,53,73,0.1200986274481955],[123,53,74,0.12973672223022115],[123,53,75,0.139213316769685],[123,53,76,0.14853191463394302],[123,53,77,0.15769487518150785],[123,53,78,0.16670397717477692],[123,53,79,0.17556082762695185],[123,54,64,0.03762757948302345],[123,54,65,0.0495014111186179],[123,54,66,0.06111475185139646],[123,54,67,0.07228687116067745],[123,54,68,0.0832659848221363],[123,54,69,0.09418847065493681],[123,54,70,0.10472719026053376],[123,54,71,0.11507232509303246],[123,54,72,0.12524189105822298],[123,54,73,0.129872781468147],[123,54,74,0.1243234919112591],[123,54,75,0.13063381355627],[123,54,76,0.15177914774254678],[123,54,77,0.17375196621126612],[123,54,78,0.18300549448474537],[123,54,79,0.19210928513275397],[123,55,64,0.05126877468870078],[123,55,65,0.06327986465269232],[123,55,66,0.07503050840747083],[123,55,67,0.08647144392428217],[123,55,68,0.0976154717105962],[123,55,69,0.10850993124684519],[123,55,70,0.11919175006584797],[123,55,71,0.10500078360588974],[123,55,72,0.08307864751684811],[123,55,73,0.06740199924990177],[123,55,74,0.06200135937018557],[123,55,75,0.06821356940765481],[123,55,76,0.08988859352790206],[123,55,77,0.1212409705160381],[123,55,78,0.15711046721524943],[123,55,79,0.19714756826346064],[123,56,64,0.06489105376905895],[123,56,65,0.06639340073963447],[123,56,66,0.07561818965759866],[123,56,67,0.08932794963888721],[123,56,68,0.09559432633726153],[123,56,69,0.08695785866880051],[123,56,70,0.06854698389440114],[123,56,71,0.0475659588230337],[123,56,72,0.024350121678210233],[123,56,73,0.008497780499004038],[123,56,74,0.00512982849006508],[123,56,75,0.01056346091970063],[123,56,76,0.03189351459421024],[123,56,77,0.06413474059094311],[123,56,78,0.10055745322221991],[123,56,79,0.1410432034867359],[123,57,64,0.006711510559332089],[123,57,65,0.0025586505868187043],[123,57,66,0.011281433574316949],[123,57,67,0.024978404769944843],[123,57,68,0.0318305000943108],[123,57,69,0.022285873780714123],[123,57,70,0.0030007919752496072],[123,57,71,-0.004813354390111195],[123,57,72,-0.010833302404107716],[123,57,73,-0.014160974440651768],[123,57,74,-0.012946383268325465],[123,57,75,-0.010677301272582877],[123,57,76,-0.00444701025945535],[123,57,77,0.0038145870792626376],[123,57,78,0.036081271803783024],[123,57,79,0.07665677401917449],[123,58,64,0.0027445332249889194],[123,58,65,-7.526449950742947E-4],[123,58,66,3.3418062351420105E-4],[123,58,67,0.0021798472805065333],[123,58,68,0.004932753169718962],[123,58,69,0.001118362133201373],[123,58,70,-0.004170724191016126],[123,58,71,-0.008503863273053549],[123,58,72,-0.013538984070948902],[123,58,73,-0.01723872579472205],[123,58,74,-0.016578645567887493],[123,58,75,-0.013159042912150393],[123,58,76,-0.007786095347772482],[123,58,77,1.7272441362605715E-4],[123,58,78,0.009577884321667377],[123,58,79,0.024999704450127922],[123,59,64,-0.012721778520191332],[123,59,65,-0.016926574025700126],[123,59,66,-0.016050136981582256],[123,59,67,-0.013996078012440353],[123,59,68,-0.01210506375825581],[123,59,69,-0.014873198986338643],[123,59,70,-0.019789258630215585],[123,59,71,-0.025059280049606072],[123,59,72,-0.029559482816492167],[123,59,73,-0.03289639110152394],[123,59,74,-0.03274707275639672],[123,59,75,-0.028811053847091952],[123,59,76,-0.023375613009810545],[123,59,77,-0.015007051570918715],[123,59,78,-0.006115889059798504],[123,59,79,0.0029878420329654256],[123,60,64,-0.03104918375566267],[123,60,65,-0.036006752987748296],[123,60,66,-0.034836066901208634],[123,60,67,-0.031980776493784016],[123,60,68,-0.030765559269462367],[123,60,69,-0.033526217243238794],[123,60,70,-0.038652425029807556],[123,60,71,-0.04408887365034724],[123,60,72,-0.04826748560204463],[123,60,73,-0.05077983554167966],[123,60,74,-0.0508070959343553],[123,60,75,-0.04749476708178061],[123,60,76,-0.041833189641899665],[123,60,77,-0.03363929612554111],[123,60,78,-0.025246538807261618],[123,60,79,-0.015522925667916654],[123,61,64,-0.04452360029381616],[123,61,65,-0.04779406677563561],[123,61,66,-0.04604075955563585],[123,61,67,-0.04340246529017597],[123,61,68,-0.04290520597263011],[123,61,69,-0.04674016705681673],[123,61,70,-0.05164206905940303],[123,61,71,-0.05720921432810604],[123,61,72,-0.06186652671349455],[123,61,73,-0.06407181508383145],[123,61,74,-0.06387426443614996],[123,61,75,-0.06090174926726234],[123,61,76,-0.054686854652602375],[123,61,77,-0.04615979264346587],[123,61,78,-0.0371853600128712],[123,61,79,-0.027457060287027907],[123,62,64,-0.06041619044436106],[123,62,65,-0.06328802819143813],[123,62,66,-0.061917537896154284],[123,62,67,-0.05885259180159974],[123,62,68,-0.05855044480067453],[123,62,69,-0.061890324358125824],[123,62,70,-0.06683141130477827],[123,62,71,-0.07205028618389912],[123,62,72,-0.0769521913397398],[123,62,73,-0.0794949057987797],[123,62,74,-0.07993566711372171],[123,62,75,-0.07701722300138515],[123,62,76,-0.07106847089141939],[123,62,77,-0.062331624805051854],[123,62,78,-0.052377586199867904],[123,62,79,-0.04232335752778336],[123,63,64,-0.09837284551487552],[123,63,65,-0.10083242984007418],[123,63,66,-0.09922626475495676],[123,63,67,-0.09681317318782315],[123,63,68,-0.09517374490161094],[123,63,69,-0.0980104982531994],[123,63,70,-0.10337228772549761],[123,63,71,-0.10785972470962099],[123,63,72,-0.1123745879062069],[123,63,73,-0.114895884042007],[123,63,74,-0.11559454510376839],[123,63,75,-0.11279519208342759],[123,63,76,-0.10675252603895836],[123,63,77,-0.09718574355193903],[123,63,78,-0.08648328867081055],[123,63,79,-0.07589710167945167],[123,64,64,-0.10949665423526883],[123,64,65,-0.11342563727333377],[123,64,66,-0.11156336621497828],[123,64,67,-0.1088215347065321],[123,64,68,-0.10706569101073983],[123,64,69,-0.1106664696468964],[123,64,70,-0.11566482530199672],[123,64,71,-0.12085254392175857],[123,64,72,-0.12565307202951054],[123,64,73,-0.12844910962608297],[123,64,74,-0.12849827760184757],[123,64,75,-0.12584544882102316],[123,64,76,-0.11939419063212033],[123,64,77,-0.1105997971142387],[123,64,78,-0.0994901345689011],[123,64,79,-0.08884122708317076],[123,65,64,-0.12478852154126946],[123,65,65,-0.12865357270114341],[123,65,66,-0.12676763333171198],[123,65,67,-0.12479462554353297],[123,65,68,-0.12291765997296723],[123,65,69,-0.12626672719433368],[123,65,70,-0.13184678260721838],[123,65,71,-0.1370473543380763],[123,65,72,-0.14215614967813964],[123,65,73,-0.14533168652472028],[123,65,74,-0.1442555497809381],[123,65,75,-0.14187154632659915],[123,65,76,-0.1358469501889319],[123,65,77,-0.1270684550069707],[123,65,78,-0.11594832571244612],[123,65,79,-0.10484608372210309],[123,66,64,-0.14218424718378164],[123,66,65,-0.14580581860332453],[123,66,66,-0.14457848838287513],[123,66,67,-0.1427905969089561],[123,66,68,-0.1418023052025215],[123,66,69,-0.14405864651026848],[123,66,70,-0.14949418801065067],[123,66,71,-0.1548262773154737],[123,66,72,-0.1603928093580976],[123,66,73,-0.16361090275057694],[123,66,74,-0.16262577064168918],[123,66,75,-0.15990162251137893],[123,66,76,-0.1539312014566681],[123,66,77,-0.14563153138839888],[123,66,78,-0.13467688023481783],[123,66,79,-0.1233191407375501],[123,67,64,-0.15718332314983333],[123,67,65,-0.16155864805351008],[123,67,66,-0.1607859195036597],[123,67,67,-0.15920372095560542],[123,67,68,-0.15804239891094646],[123,67,69,-0.16033097008310587],[123,67,70,-0.16539649946866794],[123,67,71,-0.1698964547766481],[123,67,72,-0.17558432130000623],[123,67,73,-0.17990442999112843],[123,67,74,-0.1794499764143738],[123,67,75,-0.1768100151692219],[123,67,76,-0.17075951306533352],[123,67,77,-0.1622257716590147],[123,67,78,-0.1508947307207732],[123,67,79,-0.13950649948639168],[123,68,64,-0.20145818034246077],[123,68,65,-0.20556198633419132],[123,68,66,-0.20500533420631906],[123,68,67,-0.2034293527142099],[123,68,68,-0.20273043552105421],[123,68,69,-0.20434425504852838],[123,68,70,-0.20919472417037552],[123,68,71,-0.21369843893216403],[123,68,72,-0.21974450248754848],[123,68,73,-0.22452474528464],[123,68,74,-0.22440637689498677],[123,68,75,-0.22128842690363554],[123,68,76,-0.2148819058751162],[123,68,77,-0.2062271812797168],[123,68,78,-0.19547027339014594],[123,68,79,-0.1841423818473313],[123,69,64,-0.21859524034643957],[123,69,65,-0.22173377032052635],[123,69,66,-0.22124271692663205],[123,69,67,-0.21920695655276928],[123,69,68,-0.21757098841992523],[123,69,69,-0.2188002872956418],[123,69,70,-0.22326531927718452],[123,69,71,-0.22816388092657933],[123,69,72,-0.23436266043977672],[123,69,73,-0.2402723348808495],[123,69,74,-0.24157203561284585],[123,69,75,-0.23772375871146623],[123,69,76,-0.2305250405461392],[123,69,77,-0.22161633593244542],[123,69,78,-0.2107910522431762],[123,69,79,-0.20002476221738105],[123,70,64,-0.23382499993505948],[123,70,65,-0.23649472946722327],[123,70,66,-0.23674842560873097],[123,70,67,-0.2347804919353884],[123,70,68,-0.23258423018854948],[123,70,69,-0.23462681621091055],[123,70,70,-0.2383115965075458],[123,70,71,-0.24346715185032458],[123,70,72,-0.2493361898913017],[123,70,73,-0.25482887516712355],[123,70,74,-0.2566661035015355],[123,70,75,-0.25330653824618415],[123,70,76,-0.24602087660321564],[123,70,77,-0.23670323765702012],[123,70,78,-0.2261956058428362],[123,70,79,-0.21614401435238817],[123,71,64,-0.245359361989853],[123,71,65,-0.24848231973212573],[123,71,66,-0.2487092332502479],[123,71,67,-0.2465094678797842],[123,71,68,-0.24463803535351758],[123,71,69,-0.24700962779575483],[123,71,70,-0.25085789703041855],[123,71,71,-0.2563143453414988],[123,71,72,-0.26220970265502114],[123,71,73,-0.267845274403193],[123,71,74,-0.26854235271782223],[123,71,75,-0.26578220381273554],[123,71,76,-0.2590915025325902],[123,71,77,-0.24944812095412625],[123,71,78,-0.23913902114082908],[123,71,79,-0.22901172993205088],[123,72,64,-0.2603989772064436],[123,72,65,-0.2634993442028588],[123,72,66,-0.2639059665507141],[123,72,67,-0.2615987012224231],[123,72,68,-0.259461094318125],[123,72,69,-0.2620010391746533],[123,72,70,-0.26601633278303577],[123,72,71,-0.27094325599926133],[123,72,72,-0.2778917836453266],[123,72,73,-0.28321343512262326],[123,72,74,-0.28279332154540887],[123,72,75,-0.28044427873920424],[123,72,76,-0.27372357016074433],[123,72,77,-0.26521048696310556],[123,72,78,-0.25490606896431034],[123,72,79,-0.24476979205350408],[123,73,64,-0.2778381568990491],[123,73,65,-0.2809734957709567],[123,73,66,-0.28033700739584516],[123,73,67,-0.27769121507530414],[123,73,68,-0.2762660907934056],[123,73,69,-0.27771547098865357],[123,73,70,-0.2808517688245327],[123,73,71,-0.2849031922368256],[123,73,72,-0.2907315770010918],[123,73,73,-0.2951149726215011],[123,73,74,-0.2945520061547598],[123,73,75,-0.2926649927117848],[123,73,76,-0.28634448505538046],[123,73,77,-0.27959718920033383],[123,73,78,-0.27112454952088433],[123,73,79,-0.26192211325575226],[123,74,64,-0.29475144073867127],[123,74,65,-0.2983543335102848],[123,74,66,-0.2972084391707347],[123,74,67,-0.2939279149520286],[123,74,68,-0.2935976628494741],[123,74,69,-0.2945655752246186],[123,74,70,-0.29701994461667397],[123,74,71,-0.3015531442584638],[123,74,72,-0.3074247153693612],[123,74,73,-0.3116490104696954],[123,74,74,-0.3116531166084751],[123,74,75,-0.309072677503361],[123,74,76,-0.3029753754379169],[123,74,77,-0.2960378391294723],[123,74,78,-0.28790154938729046],[123,74,79,-0.2783085694379893],[123,75,64,-0.31041612592620565],[123,75,65,-0.3133539918823257],[123,75,66,-0.3116940906252854],[123,75,67,-0.30807245845781384],[123,75,68,-0.30792381225403204],[123,75,69,-0.30859069222693514],[123,75,70,-0.31133897043185416],[123,75,71,-0.3166801707464657],[123,75,72,-0.32213169659039964],[123,75,73,-0.3258229497439976],[123,75,74,-0.3262641509921467],[123,75,75,-0.32363735111324343],[123,75,76,-0.31826148419634437],[123,75,77,-0.3114239806379902],[123,75,78,-0.30353176943635024],[123,75,79,-0.2938093048992062],[123,76,64,-0.3242450807338398],[123,76,65,-0.3267700606617549],[123,76,66,-0.325143133326983],[123,76,67,-0.3219151013586658],[123,76,68,-0.32107228042881975],[123,76,69,-0.32256119312155007],[123,76,70,-0.32594531439482566],[123,76,71,-0.33017208044002877],[123,76,72,-0.3363650985542707],[123,76,73,-0.3401028969515804],[123,76,74,-0.34046619572957426],[123,76,75,-0.3382559775684482],[123,76,76,-0.3333881883690453],[123,76,77,-0.32663621385893327],[123,76,78,-0.31851476076274626],[123,76,79,-0.30856247734607456],[123,77,64,-0.33792832631768666],[123,77,65,-0.34036161169992407],[123,77,66,-0.33911370867195895],[123,77,67,-0.3361887538385344],[123,77,68,-0.3357218899929038],[123,77,69,-0.33749131496538054],[123,77,70,-0.3409320181517018],[123,77,71,-0.34534063367184104],[123,77,72,-0.35146020590872756],[123,77,73,-0.3555548577949555],[123,77,74,-0.3557811372711665],[123,77,75,-0.354106101250152],[123,77,76,-0.3491367746282103],[123,77,77,-0.3417183201400158],[123,77,78,-0.3337665712592359],[123,77,79,-0.32388467230747386],[123,78,64,-0.3520994158352601],[123,78,65,-0.3542658184500892],[123,78,66,-0.3526290198566563],[123,78,67,-0.34987352454643816],[123,78,68,-0.3497117311754398],[123,78,69,-0.3514959302274674],[123,78,70,-0.3547313967226836],[123,78,71,-0.359281429625768],[123,78,72,-0.36593991739155723],[123,78,73,-0.37004054442953854],[123,78,74,-0.37066355115044297],[123,78,75,-0.36900859227966726],[123,78,76,-0.3635396327631325],[123,78,77,-0.35620456282160673],[123,78,78,-0.3483593966382061],[123,78,79,-0.33891740763949657],[123,79,64,-0.36298456962774595],[123,79,65,-0.3656518160361027],[123,79,66,-0.3636710536953817],[123,79,67,-0.36058773313035647],[123,79,68,-0.36013463317032024],[123,79,69,-0.36248017166047103],[123,79,70,-0.3655647016113456],[123,79,71,-0.3706509552534998],[123,79,72,-0.3773719124227772],[123,79,73,-0.3821515038378085],[123,79,74,-0.3833418350222107],[123,79,75,-0.3806278825798778],[123,79,76,-0.3758110815400011],[123,79,77,-0.36923285759578384],[123,79,78,-0.3611729133612851],[123,79,79,-0.35189149518502894],[123,80,64,-0.3770691733517585],[123,80,65,-0.3791040599120157],[123,80,66,-0.37675417919114285],[123,80,67,-0.37386863936161296],[123,80,68,-0.37223220882076785],[123,80,69,-0.37486665707466343],[123,80,70,-0.37853622390551706],[123,80,71,-0.3837222115832879],[123,80,72,-0.3906923917532782],[123,80,73,-0.39591326652352676],[123,80,74,-0.3968789267718036],[123,80,75,-0.39564957841276155],[123,80,76,-0.3908857853915091],[123,80,77,-0.38375002356180715],[123,80,78,-0.37678260889072007],[123,80,79,-0.36756241460349376],[123,81,64,-0.38861912387923225],[123,81,65,-0.39070355674515284],[123,81,66,-0.3878496619407422],[123,81,67,-0.3841268201683061],[123,81,68,-0.38277826493011824],[123,81,69,-0.38530230358204276],[123,81,70,-0.38942969227675445],[123,81,71,-0.3957450748534808],[123,81,72,-0.40379629029369557],[123,81,73,-0.4092018963569672],[123,81,74,-0.41171145036136214],[123,81,75,-0.4107342052407823],[123,81,76,-0.4057852048368553],[123,81,77,-0.3996843071652248],[123,81,78,-0.3927035379275026],[123,81,79,-0.38385467031818826],[123,82,64,-0.4034684614350067],[123,82,65,-0.40525305170718984],[123,82,66,-0.40249733065900384],[123,82,67,-0.3986444949557819],[123,82,68,-0.39794535804050146],[123,82,69,-0.4003545480049614],[123,82,70,-0.4044109592157986],[123,82,71,-0.410748061688764],[123,82,72,-0.4183807083909967],[123,82,73,-0.4243688364009352],[123,82,74,-0.42651302635579896],[123,82,75,-0.4253935670729819],[123,82,76,-0.4211301043453853],[123,82,77,-0.41489443059064196],[123,82,78,-0.4085689379462513],[123,82,79,-0.3995627098830062],[123,83,64,-0.4166985344532079],[123,83,65,-0.4178331926434883],[123,83,66,-0.4155187477110413],[123,83,67,-0.4113942035337578],[123,83,68,-0.41033280548881185],[123,83,69,-0.41287584137478217],[123,83,70,-0.41719482809790487],[123,83,71,-0.423958412627869],[123,83,72,-0.4317606118961428],[123,83,73,-0.4374136221417436],[123,83,74,-0.439468389420766],[123,83,75,-0.4388380840225647],[123,83,76,-0.4345819741446145],[123,83,77,-0.42820464350619397],[123,83,78,-0.42163032011054274],[123,83,79,-0.41281976009883975],[123,84,64,-0.4283355475778048],[123,84,65,-0.42916633494163153],[123,84,66,-0.42689346983491777],[123,84,67,-0.4234755035327085],[123,84,68,-0.4218566054442484],[123,84,69,-0.42434738760299473],[123,84,70,-0.4294265193354606],[123,84,71,-0.43665324599937116],[123,84,72,-0.44440389961782734],[123,84,73,-0.4499051258641705],[123,84,74,-0.45204727483795376],[123,84,75,-0.45202440624847057],[123,84,76,-0.44787253801169924],[123,84,77,-0.4412389320781336],[123,84,78,-0.43402473173091305],[123,84,79,-0.4254708645683159],[123,85,64,-0.4422850214476728],[123,85,65,-0.4437746328927707],[123,85,66,-0.441764933544602],[123,85,67,-0.43909251723321746],[123,85,68,-0.4378964625050216],[123,85,69,-0.43988725235110476],[123,85,70,-0.44535095879481235],[123,85,71,-0.45202347627941203],[123,85,72,-0.4583333333333333],[123,85,73,-0.4583333333333333],[123,85,74,-0.4583333333333333],[123,85,75,-0.4583333333333333],[123,85,76,-0.4583333333333333],[123,85,77,-0.45407978037855057],[123,85,78,-0.4455787910643769],[123,85,79,-0.4368426775990907],[123,86,64,-0.454779511169716],[123,86,65,-0.45655995024380014],[123,86,66,-0.45450775410596045],[123,86,67,-0.45175394467474184],[123,86,68,-0.4502469320195664],[123,86,69,-0.4520139753361807],[123,86,70,-0.4575912718051243],[123,86,71,-0.4583333333333333],[123,86,72,-0.4583333333333333],[123,86,73,-0.4583333333333333],[123,86,74,-0.4583333333333333],[123,86,75,-0.4583333333333333],[123,86,76,-0.4583333333333333],[123,86,77,-0.4583333333333333],[123,86,78,-0.4578574281569737],[123,86,79,-0.4493057618863938],[123,87,64,-0.4583333333333333],[123,87,65,-0.4583333333333333],[123,87,66,-0.4583333333333333],[123,87,67,-0.4583333333333333],[123,87,68,-0.4583333333333333],[123,87,69,-0.4583333333333333],[123,87,70,-0.4583333333333333],[123,87,71,-0.4583333333333333],[123,87,72,-0.4583333333333333],[123,87,73,-0.4583333333333333],[123,87,74,-0.4583333333333333],[123,87,75,-0.4583333333333333],[123,87,76,-0.4583333333333333],[123,87,77,-0.4583333333333333],[123,87,78,-0.4583333333333333],[123,87,79,-0.4583333333333333],[123,88,64,-0.4583333333333333],[123,88,65,-0.4583333333333333],[123,88,66,-0.4583333333333333],[123,88,67,-0.4583333333333333],[123,88,68,-0.4583333333333333],[123,88,69,-0.4583333333333333],[123,88,70,-0.4583333333333333],[123,88,71,-0.4583333333333333],[123,88,72,-0.4583333333333333],[123,88,73,-0.4583333333333333],[123,88,74,-0.4583333333333333],[123,88,75,-0.4583333333333333],[123,88,76,-0.4583333333333333],[123,88,77,-0.4583333333333333],[123,88,78,-0.4583333333333333],[123,88,79,-0.4583333333333333],[123,89,64,-0.4583333333333333],[123,89,65,-0.4583333333333333],[123,89,66,-0.4583333333333333],[123,89,67,-0.4583333333333333],[123,89,68,-0.4583333333333333],[123,89,69,-0.4583333333333333],[123,89,70,-0.4583333333333333],[123,89,71,-0.4583333333333333],[123,89,72,-0.4583333333333333],[123,89,73,-0.4583333333333333],[123,89,74,-0.4583333333333333],[123,89,75,-0.4583333333333333],[123,89,76,-0.4583333333333333],[123,89,77,-0.4583333333333333],[123,89,78,-0.4583333333333333],[123,89,79,-0.4583333333333333],[123,90,64,-0.4583333333333333],[123,90,65,-0.4583333333333333],[123,90,66,-0.4583333333333333],[123,90,67,-0.4583333333333333],[123,90,68,-0.4583333333333333],[123,90,69,-0.4583333333333333],[123,90,70,-0.4583333333333333],[123,90,71,-0.4583333333333333],[123,90,72,-0.4583333333333333],[123,90,73,-0.4583333333333333],[123,90,74,-0.4583333333333333],[123,90,75,-0.4583333333333333],[123,90,76,-0.4583333333333333],[123,90,77,-0.4583333333333333],[123,90,78,-0.4583333333333333],[123,90,79,-0.4583333333333333],[123,91,64,-0.4583333333333333],[123,91,65,-0.4583333333333333],[123,91,66,-0.4583333333333333],[123,91,67,-0.4583333333333333],[123,91,68,-0.4583333333333333],[123,91,69,-0.4583333333333333],[123,91,70,-0.4583333333333333],[123,91,71,-0.4583333333333333],[123,91,72,-0.4583333333333333],[123,91,73,-0.4583333333333333],[123,91,74,-0.4583333333333333],[123,91,75,-0.4583333333333333],[123,91,76,-0.4583333333333333],[123,91,77,-0.4583333333333333],[123,91,78,-0.4583333333333333],[123,91,79,-0.4583333333333333],[123,92,64,-0.4583333333333333],[123,92,65,-0.4583333333333333],[123,92,66,-0.4583333333333333],[123,92,67,-0.4583333333333333],[123,92,68,-0.4583333333333333],[123,92,69,-0.4583333333333333],[123,92,70,-0.4583333333333333],[123,92,71,-0.4583333333333333],[123,92,72,-0.4583333333333333],[123,92,73,-0.4583333333333333],[123,92,74,-0.4583333333333333],[123,92,75,-0.4583333333333333],[123,92,76,-0.4583333333333333],[123,92,77,-0.4583333333333333],[123,92,78,-0.4583333333333333],[123,92,79,-0.4583333333333333],[123,93,64,-0.4583333333333333],[123,93,65,-0.4583333333333333],[123,93,66,-0.4583333333333333],[123,93,67,-0.4583333333333333],[123,93,68,-0.4583333333333333],[123,93,69,-0.4583333333333333],[123,93,70,-0.4583333333333333],[123,93,71,-0.4583333333333333],[123,93,72,-0.4583333333333333],[123,93,73,-0.4583333333333333],[123,93,74,-0.4583333333333333],[123,93,75,-0.4583333333333333],[123,93,76,-0.4583333333333333],[123,93,77,-0.4583333333333333],[123,93,78,-0.4583333333333333],[123,93,79,-0.4583333333333333],[123,94,64,-0.4583333333333333],[123,94,65,-0.4583333333333333],[123,94,66,-0.4583333333333333],[123,94,67,-0.4583333333333333],[123,94,68,-0.4583333333333333],[123,94,69,-0.4583333333333333],[123,94,70,-0.4583333333333333],[123,94,71,-0.4583333333333333],[123,94,72,-0.4583333333333333],[123,94,73,-0.4583333333333333],[123,94,74,-0.4583333333333333],[123,94,75,-0.4583333333333333],[123,94,76,-0.4583333333333333],[123,94,77,-0.4583333333333333],[123,94,78,-0.4583333333333333],[123,94,79,-0.4583333333333333],[123,95,64,-0.4583333333333333],[123,95,65,-0.4583333333333333],[123,95,66,-0.4583333333333333],[123,95,67,-0.4583333333333333],[123,95,68,-0.4583333333333333],[123,95,69,-0.4583333333333333],[123,95,70,-0.4583333333333333],[123,95,71,-0.4583333333333333],[123,95,72,-0.4583333333333333],[123,95,73,-0.4583333333333333],[123,95,74,-0.4583333333333333],[123,95,75,-0.4583333333333333],[123,95,76,-0.4583333333333333],[123,95,77,-0.4583333333333333],[123,95,78,-0.4583333333333333],[123,95,79,-0.4583333333333333],[123,96,64,-0.4583333333333333],[123,96,65,-0.4583333333333333],[123,96,66,-0.4583333333333333],[123,96,67,-0.4583333333333333],[123,96,68,-0.4583333333333333],[123,96,69,-0.4583333333333333],[123,96,70,-0.4583333333333333],[123,96,71,-0.4583333333333333],[123,96,72,-0.4583333333333333],[123,96,73,-0.4583333333333333],[123,96,74,-0.4583333333333333],[123,96,75,-0.4583333333333333],[123,96,76,-0.4583333333333333],[123,96,77,-0.4583333333333333],[123,96,78,-0.4583333333333333],[123,96,79,-0.4583333333333333],[123,97,64,-0.4583333333333333],[123,97,65,-0.4583333333333333],[123,97,66,-0.4583333333333333],[123,97,67,-0.4583333333333333],[123,97,68,-0.4583333333333333],[123,97,69,-0.4583333333333333],[123,97,70,-0.4583333333333333],[123,97,71,-0.4583333333333333],[123,97,72,-0.4583333333333333],[123,97,73,-0.4583333333333333],[123,97,74,-0.4583333333333333],[123,97,75,-0.4583333333333333],[123,97,76,-0.4583333333333333],[123,97,77,-0.4583333333333333],[123,97,78,-0.4583333333333333],[123,97,79,-0.4583333333333333],[123,98,64,-0.4583333333333333],[123,98,65,-0.4583333333333333],[123,98,66,-0.4583333333333333],[123,98,67,-0.4583333333333333],[123,98,68,-0.4583333333333333],[123,98,69,-0.4583333333333333],[123,98,70,-0.4583333333333333],[123,98,71,-0.4583333333333333],[123,98,72,-0.4583333333333333],[123,98,73,-0.4583333333333333],[123,98,74,-0.4583333333333333],[123,98,75,-0.4583333333333333],[123,98,76,-0.4583333333333333],[123,98,77,-0.4583333333333333],[123,98,78,-0.4583333333333333],[123,98,79,-0.4583333333333333],[123,99,64,-0.4583333333333333],[123,99,65,-0.4583333333333333],[123,99,66,-0.4583333333333333],[123,99,67,-0.4583333333333333],[123,99,68,-0.4583333333333333],[123,99,69,-0.4583333333333333],[123,99,70,-0.4583333333333333],[123,99,71,-0.4583333333333333],[123,99,72,-0.4583333333333333],[123,99,73,-0.4583333333333333],[123,99,74,-0.4583333333333333],[123,99,75,-0.4583333333333333],[123,99,76,-0.4583333333333333],[123,99,77,-0.4583333333333333],[123,99,78,-0.4583333333333333],[123,99,79,-0.4583333333333333],[123,100,64,-0.4583333333333333],[123,100,65,-0.4583333333333333],[123,100,66,-0.4583333333333333],[123,100,67,-0.4583333333333333],[123,100,68,-0.4583333333333333],[123,100,69,-0.4583333333333333],[123,100,70,-0.4583333333333333],[123,100,71,-0.4583333333333333],[123,100,72,-0.4583333333333333],[123,100,73,-0.4583333333333333],[123,100,74,-0.4583333333333333],[123,100,75,-0.4583333333333333],[123,100,76,-0.4583333333333333],[123,100,77,-0.4583333333333333],[123,100,78,-0.4583333333333333],[123,100,79,-0.4583333333333333],[123,101,64,-0.4583333333333333],[123,101,65,-0.4583333333333333],[123,101,66,-0.4583333333333333],[123,101,67,-0.4583333333333333],[123,101,68,-0.4583333333333333],[123,101,69,-0.4583333333333333],[123,101,70,-0.4583333333333333],[123,101,71,-0.4583333333333333],[123,101,72,-0.4583333333333333],[123,101,73,-0.4583333333333333],[123,101,74,-0.4583333333333333],[123,101,75,-0.4583333333333333],[123,101,76,-0.4583333333333333],[123,101,77,-0.4583333333333333],[123,101,78,-0.4583333333333333],[123,101,79,-0.4583333333333333],[123,102,64,-0.4583333333333333],[123,102,65,-0.4583333333333333],[123,102,66,-0.4583333333333333],[123,102,67,-0.4583333333333333],[123,102,68,-0.4583333333333333],[123,102,69,-0.4583333333333333],[123,102,70,-0.4583333333333333],[123,102,71,-0.4583333333333333],[123,102,72,-0.4583333333333333],[123,102,73,-0.4583333333333333],[123,102,74,-0.4583333333333333],[123,102,75,-0.4583333333333333],[123,102,76,-0.4583333333333333],[123,102,77,-0.4583333333333333],[123,102,78,-0.4583333333333333],[123,102,79,-0.4583333333333333],[123,103,64,-0.4583333333333333],[123,103,65,-0.4583333333333333],[123,103,66,-0.4583333333333333],[123,103,67,-0.4583333333333333],[123,103,68,-0.4583333333333333],[123,103,69,-0.4583333333333333],[123,103,70,-0.4583333333333333],[123,103,71,-0.4583333333333333],[123,103,72,-0.4583333333333333],[123,103,73,-0.4583333333333333],[123,103,74,-0.4583333333333333],[123,103,75,-0.4583333333333333],[123,103,76,-0.4583333333333333],[123,103,77,-0.4583333333333333],[123,103,78,-0.4583333333333333],[123,103,79,-0.4583333333333333],[123,104,64,-0.4583333333333333],[123,104,65,-0.4583333333333333],[123,104,66,-0.4583333333333333],[123,104,67,-0.4583333333333333],[123,104,68,-0.4583333333333333],[123,104,69,-0.4583333333333333],[123,104,70,-0.4583333333333333],[123,104,71,-0.4583333333333333],[123,104,72,-0.4583333333333333],[123,104,73,-0.4583333333333333],[123,104,74,-0.4583333333333333],[123,104,75,-0.4583333333333333],[123,104,76,-0.4583333333333333],[123,104,77,-0.4583333333333333],[123,104,78,-0.4583333333333333],[123,104,79,-0.4583333333333333],[123,105,64,-0.4583333333333333],[123,105,65,-0.4583333333333333],[123,105,66,-0.4583333333333333],[123,105,67,-0.4583333333333333],[123,105,68,-0.4583333333333333],[123,105,69,-0.4583333333333333],[123,105,70,-0.4583333333333333],[123,105,71,-0.4583333333333333],[123,105,72,-0.4583333333333333],[123,105,73,-0.4583333333333333],[123,105,74,-0.4583333333333333],[123,105,75,-0.4583333333333333],[123,105,76,-0.4583333333333333],[123,105,77,-0.4583333333333333],[123,105,78,-0.4583333333333333],[123,105,79,-0.4583333333333333],[123,106,64,-0.4583333333333333],[123,106,65,-0.4583333333333333],[123,106,66,-0.4583333333333333],[123,106,67,-0.4583333333333333],[123,106,68,-0.4583333333333333],[123,106,69,-0.4583333333333333],[123,106,70,-0.4583333333333333],[123,106,71,-0.4583333333333333],[123,106,72,-0.4583333333333333],[123,106,73,-0.4583333333333333],[123,106,74,-0.4583333333333333],[123,106,75,-0.4583333333333333],[123,106,76,-0.4583333333333333],[123,106,77,-0.4583333333333333],[123,106,78,-0.4583333333333333],[123,106,79,-0.4583333333333333],[123,107,64,-0.4583333333333333],[123,107,65,-0.4583333333333333],[123,107,66,-0.4583333333333333],[123,107,67,-0.4583333333333333],[123,107,68,-0.4583333333333333],[123,107,69,-0.4583333333333333],[123,107,70,-0.4583333333333333],[123,107,71,-0.4583333333333333],[123,107,72,-0.4583333333333333],[123,107,73,-0.4583333333333333],[123,107,74,-0.4583333333333333],[123,107,75,-0.4583333333333333],[123,107,76,-0.4583333333333333],[123,107,77,-0.4583333333333333],[123,107,78,-0.4583333333333333],[123,107,79,-0.4583333333333333],[123,108,64,-0.4583333333333333],[123,108,65,-0.4583333333333333],[123,108,66,-0.4583333333333333],[123,108,67,-0.4583333333333333],[123,108,68,-0.4583333333333333],[123,108,69,-0.4583333333333333],[123,108,70,-0.4583333333333333],[123,108,71,-0.4583333333333333],[123,108,72,-0.4583333333333333],[123,108,73,-0.4583333333333333],[123,108,74,-0.4583333333333333],[123,108,75,-0.4583333333333333],[123,108,76,-0.4583333333333333],[123,108,77,-0.4583333333333333],[123,108,78,-0.4583333333333333],[123,108,79,-0.4583333333333333],[123,109,64,-0.4583333333333333],[123,109,65,-0.4583333333333333],[123,109,66,-0.4583333333333333],[123,109,67,-0.4583333333333333],[123,109,68,-0.4583333333333333],[123,109,69,-0.4583333333333333],[123,109,70,-0.4583333333333333],[123,109,71,-0.4583333333333333],[123,109,72,-0.4583333333333333],[123,109,73,-0.4583333333333333],[123,109,74,-0.4583333333333333],[123,109,75,-0.4583333333333333],[123,109,76,-0.4583333333333333],[123,109,77,-0.4583333333333333],[123,109,78,-0.4583333333333333],[123,109,79,-0.4583333333333333],[123,110,64,-0.4583333333333333],[123,110,65,-0.4583333333333333],[123,110,66,-0.4583333333333333],[123,110,67,-0.4583333333333333],[123,110,68,-0.4583333333333333],[123,110,69,-0.4583333333333333],[123,110,70,-0.4583333333333333],[123,110,71,-0.4583333333333333],[123,110,72,-0.4583333333333333],[123,110,73,-0.4583333333333333],[123,110,74,-0.4583333333333333],[123,110,75,-0.4583333333333333],[123,110,76,-0.4583333333333333],[123,110,77,-0.4583333333333333],[123,110,78,-0.4583333333333333],[123,110,79,-0.4583333333333333],[123,111,64,-0.4583333333333333],[123,111,65,-0.4583333333333333],[123,111,66,-0.4583333333333333],[123,111,67,-0.4583333333333333],[123,111,68,-0.4583333333333333],[123,111,69,-0.4583333333333333],[123,111,70,-0.4583333333333333],[123,111,71,-0.4583333333333333],[123,111,72,-0.4583333333333333],[123,111,73,-0.4583333333333333],[123,111,74,-0.4583333333333333],[123,111,75,-0.4583333333333333],[123,111,76,-0.4583333333333333],[123,111,77,-0.4583333333333333],[123,111,78,-0.4583333333333333],[123,111,79,-0.4583333333333333],[123,112,64,-0.4583333333333333],[123,112,65,-0.4583333333333333],[123,112,66,-0.4583333333333333],[123,112,67,-0.4583333333333333],[123,112,68,-0.4583333333333333],[123,112,69,-0.4583333333333333],[123,112,70,-0.4583333333333333],[123,112,71,-0.4583333333333333],[123,112,72,-0.4583333333333333],[123,112,73,-0.4583333333333333],[123,112,74,-0.4583333333333333],[123,112,75,-0.4583333333333333],[123,112,76,-0.4583333333333333],[123,112,77,-0.4583333333333333],[123,112,78,-0.4583333333333333],[123,112,79,-0.4583333333333333],[123,113,64,-0.4583333333333333],[123,113,65,-0.4583333333333333],[123,113,66,-0.4583333333333333],[123,113,67,-0.4583333333333333],[123,113,68,-0.4583333333333333],[123,113,69,-0.4583333333333333],[123,113,70,-0.4583333333333333],[123,113,71,-0.4583333333333333],[123,113,72,-0.4583333333333333],[123,113,73,-0.4583333333333333],[123,113,74,-0.4583333333333333],[123,113,75,-0.4583333333333333],[123,113,76,-0.4583333333333333],[123,113,77,-0.4583333333333333],[123,113,78,-0.4583333333333333],[123,113,79,-0.4583333333333333],[123,114,64,-0.4583333333333333],[123,114,65,-0.4583333333333333],[123,114,66,-0.4583333333333333],[123,114,67,-0.4583333333333333],[123,114,68,-0.4583333333333333],[123,114,69,-0.4583333333333333],[123,114,70,-0.4583333333333333],[123,114,71,-0.4583333333333333],[123,114,72,-0.4583333333333333],[123,114,73,-0.4583333333333333],[123,114,74,-0.4583333333333333],[123,114,75,-0.4583333333333333],[123,114,76,-0.4583333333333333],[123,114,77,-0.4583333333333333],[123,114,78,-0.4583333333333333],[123,114,79,-0.4583333333333333],[123,115,64,-0.4583333333333333],[123,115,65,-0.4583333333333333],[123,115,66,-0.4583333333333333],[123,115,67,-0.4583333333333333],[123,115,68,-0.4583333333333333],[123,115,69,-0.4583333333333333],[123,115,70,-0.4583333333333333],[123,115,71,-0.4583333333333333],[123,115,72,-0.4583333333333333],[123,115,73,-0.4583333333333333],[123,115,74,-0.4583333333333333],[123,115,75,-0.4583333333333333],[123,115,76,-0.4583333333333333],[123,115,77,-0.4583333333333333],[123,115,78,-0.4583333333333333],[123,115,79,-0.4583333333333333],[123,116,64,-0.4583333333333333],[123,116,65,-0.4583333333333333],[123,116,66,-0.4583333333333333],[123,116,67,-0.4583333333333333],[123,116,68,-0.4583333333333333],[123,116,69,-0.4583333333333333],[123,116,70,-0.4583333333333333],[123,116,71,-0.4583333333333333],[123,116,72,-0.4583333333333333],[123,116,73,-0.4583333333333333],[123,116,74,-0.4583333333333333],[123,116,75,-0.4583333333333333],[123,116,76,-0.4583333333333333],[123,116,77,-0.4583333333333333],[123,116,78,-0.4583333333333333],[123,116,79,-0.4583333333333333],[123,117,64,-0.4583333333333333],[123,117,65,-0.4583333333333333],[123,117,66,-0.4583333333333333],[123,117,67,-0.4583333333333333],[123,117,68,-0.4583333333333333],[123,117,69,-0.4583333333333333],[123,117,70,-0.4583333333333333],[123,117,71,-0.4583333333333333],[123,117,72,-0.4583333333333333],[123,117,73,-0.4583333333333333],[123,117,74,-0.4583333333333333],[123,117,75,-0.4583333333333333],[123,117,76,-0.4583333333333333],[123,117,77,-0.4583333333333333],[123,117,78,-0.4583333333333333],[123,117,79,-0.4583333333333333],[123,118,64,-0.4583333333333333],[123,118,65,-0.4583333333333333],[123,118,66,-0.4583333333333333],[123,118,67,-0.4583333333333333],[123,118,68,-0.4583333333333333],[123,118,69,-0.4583333333333333],[123,118,70,-0.4583333333333333],[123,118,71,-0.4583333333333333],[123,118,72,-0.4583333333333333],[123,118,73,-0.4583333333333333],[123,118,74,-0.4583333333333333],[123,118,75,-0.4583333333333333],[123,118,76,-0.4583333333333333],[123,118,77,-0.4583333333333333],[123,118,78,-0.4583333333333333],[123,118,79,-0.4583333333333333],[123,119,64,-0.4583333333333333],[123,119,65,-0.4583333333333333],[123,119,66,-0.4583333333333333],[123,119,67,-0.4583333333333333],[123,119,68,-0.4583333333333333],[123,119,69,-0.4583333333333333],[123,119,70,-0.4583333333333333],[123,119,71,-0.4583333333333333],[123,119,72,-0.4583333333333333],[123,119,73,-0.4583333333333333],[123,119,74,-0.4583333333333333],[123,119,75,-0.4583333333333333],[123,119,76,-0.4583333333333333],[123,119,77,-0.4583333333333333],[123,119,78,-0.4583333333333333],[123,119,79,-0.4583333333333333],[123,120,64,-0.4583333333333333],[123,120,65,-0.4583333333333333],[123,120,66,-0.4583333333333333],[123,120,67,-0.4583333333333333],[123,120,68,-0.4583333333333333],[123,120,69,-0.4583333333333333],[123,120,70,-0.4583333333333333],[123,120,71,-0.4583333333333333],[123,120,72,-0.4583333333333333],[123,120,73,-0.4583333333333333],[123,120,74,-0.4583333333333333],[123,120,75,-0.4583333333333333],[123,120,76,-0.4583333333333333],[123,120,77,-0.4583333333333333],[123,120,78,-0.4583333333333333],[123,120,79,-0.4583333333333333],[123,121,64,-0.4583333333333333],[123,121,65,-0.4583333333333333],[123,121,66,-0.4583333333333333],[123,121,67,-0.4583333333333333],[123,121,68,-0.4583333333333333],[123,121,69,-0.4583333333333333],[123,121,70,-0.4583333333333333],[123,121,71,-0.4583333333333333],[123,121,72,-0.4583333333333333],[123,121,73,-0.4583333333333333],[123,121,74,-0.4583333333333333],[123,121,75,-0.4583333333333333],[123,121,76,-0.4583333333333333],[123,121,77,-0.4583333333333333],[123,121,78,-0.4583333333333333],[123,121,79,-0.4583333333333333],[123,122,64,-0.4583333333333333],[123,122,65,-0.4583333333333333],[123,122,66,-0.4583333333333333],[123,122,67,-0.4583333333333333],[123,122,68,-0.4583333333333333],[123,122,69,-0.4583333333333333],[123,122,70,-0.4583333333333333],[123,122,71,-0.4583333333333333],[123,122,72,-0.4583333333333333],[123,122,73,-0.4583333333333333],[123,122,74,-0.4583333333333333],[123,122,75,-0.4583333333333333],[123,122,76,-0.4583333333333333],[123,122,77,-0.4583333333333333],[123,122,78,-0.4583333333333333],[123,122,79,-0.4583333333333333],[123,123,64,-0.4583333333333333],[123,123,65,-0.4583333333333333],[123,123,66,-0.4583333333333333],[123,123,67,-0.4583333333333333],[123,123,68,-0.4583333333333333],[123,123,69,-0.4583333333333333],[123,123,70,-0.4583333333333333],[123,123,71,-0.4583333333333333],[123,123,72,-0.4583333333333333],[123,123,73,-0.4583333333333333],[123,123,74,-0.4583333333333333],[123,123,75,-0.4583333333333333],[123,123,76,-0.4583333333333333],[123,123,77,-0.4583333333333333],[123,123,78,-0.4583333333333333],[123,123,79,-0.4583333333333333],[123,124,64,-0.4583333333333333],[123,124,65,-0.4583333333333333],[123,124,66,-0.4583333333333333],[123,124,67,-0.4583333333333333],[123,124,68,-0.4583333333333333],[123,124,69,-0.4583333333333333],[123,124,70,-0.4583333333333333],[123,124,71,-0.4583333333333333],[123,124,72,-0.4583333333333333],[123,124,73,-0.4583333333333333],[123,124,74,-0.4583333333333333],[123,124,75,-0.4583333333333333],[123,124,76,-0.4583333333333333],[123,124,77,-0.4583333333333333],[123,124,78,-0.4583333333333333],[123,124,79,-0.4583333333333333],[123,125,64,-0.4583333333333333],[123,125,65,-0.4583333333333333],[123,125,66,-0.4583333333333333],[123,125,67,-0.4583333333333333],[123,125,68,-0.4583333333333333],[123,125,69,-0.4583333333333333],[123,125,70,-0.4583333333333333],[123,125,71,-0.4583333333333333],[123,125,72,-0.4583333333333333],[123,125,73,-0.4583333333333333],[123,125,74,-0.4583333333333333],[123,125,75,-0.4583333333333333],[123,125,76,-0.4583333333333333],[123,125,77,-0.4583333333333333],[123,125,78,-0.4583333333333333],[123,125,79,-0.4583333333333333],[123,126,64,-0.4583333333333333],[123,126,65,-0.4583333333333333],[123,126,66,-0.4583333333333333],[123,126,67,-0.4583333333333333],[123,126,68,-0.4583333333333333],[123,126,69,-0.4583333333333333],[123,126,70,-0.4583333333333333],[123,126,71,-0.4583333333333333],[123,126,72,-0.4583333333333333],[123,126,73,-0.4583333333333333],[123,126,74,-0.4583333333333333],[123,126,75,-0.4583333333333333],[123,126,76,-0.4583333333333333],[123,126,77,-0.4583333333333333],[123,126,78,-0.4583333333333333],[123,126,79,-0.4583333333333333],[123,127,64,-0.4583333333333333],[123,127,65,-0.4583333333333333],[123,127,66,-0.4583333333333333],[123,127,67,-0.4583333333333333],[123,127,68,-0.4583333333333333],[123,127,69,-0.4583333333333333],[123,127,70,-0.4583333333333333],[123,127,71,-0.4583333333333333],[123,127,72,-0.4583333333333333],[123,127,73,-0.4583333333333333],[123,127,74,-0.4583333333333333],[123,127,75,-0.4583333333333333],[123,127,76,-0.4583333333333333],[123,127,77,-0.4583333333333333],[123,127,78,-0.4583333333333333],[123,127,79,-0.4583333333333333],[123,128,64,-0.4583333333333333],[123,128,65,-0.4583333333333333],[123,128,66,-0.4583333333333333],[123,128,67,-0.4583333333333333],[123,128,68,-0.4583333333333333],[123,128,69,-0.4583333333333333],[123,128,70,-0.4583333333333333],[123,128,71,-0.4583333333333333],[123,128,72,-0.4583333333333333],[123,128,73,-0.4583333333333333],[123,128,74,-0.4583333333333333],[123,128,75,-0.4583333333333333],[123,128,76,-0.4583333333333333],[123,128,77,-0.4583333333333333],[123,128,78,-0.4583333333333333],[123,128,79,-0.4583333333333333],[123,129,64,-0.4583333333333333],[123,129,65,-0.4583333333333333],[123,129,66,-0.4583333333333333],[123,129,67,-0.4583333333333333],[123,129,68,-0.4583333333333333],[123,129,69,-0.4583333333333333],[123,129,70,-0.4583333333333333],[123,129,71,-0.4583333333333333],[123,129,72,-0.4583333333333333],[123,129,73,-0.4583333333333333],[123,129,74,-0.4583333333333333],[123,129,75,-0.4583333333333333],[123,129,76,-0.4583333333333333],[123,129,77,-0.4583333333333333],[123,129,78,-0.4583333333333333],[123,129,79,-0.4583333333333333],[123,130,64,-0.4583333333333333],[123,130,65,-0.4583333333333333],[123,130,66,-0.4583333333333333],[123,130,67,-0.4583333333333333],[123,130,68,-0.4583333333333333],[123,130,69,-0.4583333333333333],[123,130,70,-0.4583333333333333],[123,130,71,-0.4583333333333333],[123,130,72,-0.4583333333333333],[123,130,73,-0.4583333333333333],[123,130,74,-0.4583333333333333],[123,130,75,-0.4583333333333333],[123,130,76,-0.4583333333333333],[123,130,77,-0.4583333333333333],[123,130,78,-0.4583333333333333],[123,130,79,-0.4583333333333333],[123,131,64,-0.4583333333333333],[123,131,65,-0.4583333333333333],[123,131,66,-0.4583333333333333],[123,131,67,-0.4583333333333333],[123,131,68,-0.4583333333333333],[123,131,69,-0.4583333333333333],[123,131,70,-0.4583333333333333],[123,131,71,-0.4583333333333333],[123,131,72,-0.4583333333333333],[123,131,73,-0.4583333333333333],[123,131,74,-0.4583333333333333],[123,131,75,-0.4583333333333333],[123,131,76,-0.4583333333333333],[123,131,77,-0.4583333333333333],[123,131,78,-0.4583333333333333],[123,131,79,-0.4583333333333333],[123,132,64,-0.4583333333333333],[123,132,65,-0.4583333333333333],[123,132,66,-0.4583333333333333],[123,132,67,-0.4583333333333333],[123,132,68,-0.4583333333333333],[123,132,69,-0.4583333333333333],[123,132,70,-0.4583333333333333],[123,132,71,-0.4583333333333333],[123,132,72,-0.4583333333333333],[123,132,73,-0.4583333333333333],[123,132,74,-0.4583333333333333],[123,132,75,-0.4583333333333333],[123,132,76,-0.4583333333333333],[123,132,77,-0.4583333333333333],[123,132,78,-0.4583333333333333],[123,132,79,-0.4583333333333333],[123,133,64,-0.4583333333333333],[123,133,65,-0.4583333333333333],[123,133,66,-0.4583333333333333],[123,133,67,-0.4583333333333333],[123,133,68,-0.4583333333333333],[123,133,69,-0.4583333333333333],[123,133,70,-0.4583333333333333],[123,133,71,-0.4583333333333333],[123,133,72,-0.4583333333333333],[123,133,73,-0.4583333333333333],[123,133,74,-0.4583333333333333],[123,133,75,-0.4583333333333333],[123,133,76,-0.4583333333333333],[123,133,77,-0.4583333333333333],[123,133,78,-0.4583333333333333],[123,133,79,-0.4583333333333333],[123,134,64,-0.4583333333333333],[123,134,65,-0.4583333333333333],[123,134,66,-0.4583333333333333],[123,134,67,-0.4583333333333333],[123,134,68,-0.4583333333333333],[123,134,69,-0.4583333333333333],[123,134,70,-0.4583333333333333],[123,134,71,-0.4583333333333333],[123,134,72,-0.4583333333333333],[123,134,73,-0.4583333333333333],[123,134,74,-0.4583333333333333],[123,134,75,-0.4583333333333333],[123,134,76,-0.4583333333333333],[123,134,77,-0.4583333333333333],[123,134,78,-0.4583333333333333],[123,134,79,-0.4583333333333333],[123,135,64,-0.4583333333333333],[123,135,65,-0.4583333333333333],[123,135,66,-0.4583333333333333],[123,135,67,-0.4583333333333333],[123,135,68,-0.4583333333333333],[123,135,69,-0.4583333333333333],[123,135,70,-0.4583333333333333],[123,135,71,-0.4583333333333333],[123,135,72,-0.4583333333333333],[123,135,73,-0.4583333333333333],[123,135,74,-0.4583333333333333],[123,135,75,-0.4583333333333333],[123,135,76,-0.4583333333333333],[123,135,77,-0.4583333333333333],[123,135,78,-0.4583333333333333],[123,135,79,-0.4583333333333333],[123,136,64,-0.4583333333333333],[123,136,65,-0.4583333333333333],[123,136,66,-0.4583333333333333],[123,136,67,-0.4583333333333333],[123,136,68,-0.4583333333333333],[123,136,69,-0.4583333333333333],[123,136,70,-0.4583333333333333],[123,136,71,-0.4583333333333333],[123,136,72,-0.4583333333333333],[123,136,73,-0.4583333333333333],[123,136,74,-0.4583333333333333],[123,136,75,-0.4583333333333333],[123,136,76,-0.4583333333333333],[123,136,77,-0.4583333333333333],[123,136,78,-0.4583333333333333],[123,136,79,-0.4583333333333333],[123,137,64,-0.4583333333333333],[123,137,65,-0.4583333333333333],[123,137,66,-0.4583333333333333],[123,137,67,-0.4583333333333333],[123,137,68,-0.4583333333333333],[123,137,69,-0.4583333333333333],[123,137,70,-0.4583333333333333],[123,137,71,-0.4583333333333333],[123,137,72,-0.4583333333333333],[123,137,73,-0.4583333333333333],[123,137,74,-0.4583333333333333],[123,137,75,-0.4583333333333333],[123,137,76,-0.4583333333333333],[123,137,77,-0.4583333333333333],[123,137,78,-0.4583333333333333],[123,137,79,-0.4583333333333333],[123,138,64,-0.4583333333333333],[123,138,65,-0.4583333333333333],[123,138,66,-0.4583333333333333],[123,138,67,-0.4583333333333333],[123,138,68,-0.4583333333333333],[123,138,69,-0.4583333333333333],[123,138,70,-0.4583333333333333],[123,138,71,-0.4583333333333333],[123,138,72,-0.4583333333333333],[123,138,73,-0.4583333333333333],[123,138,74,-0.4583333333333333],[123,138,75,-0.4583333333333333],[123,138,76,-0.4583333333333333],[123,138,77,-0.4583333333333333],[123,138,78,-0.4583333333333333],[123,138,79,-0.4583333333333333],[123,139,64,-0.4583333333333333],[123,139,65,-0.4583333333333333],[123,139,66,-0.4583333333333333],[123,139,67,-0.4583333333333333],[123,139,68,-0.4583333333333333],[123,139,69,-0.4583333333333333],[123,139,70,-0.4583333333333333],[123,139,71,-0.4583333333333333],[123,139,72,-0.4583333333333333],[123,139,73,-0.4583333333333333],[123,139,74,-0.4583333333333333],[123,139,75,-0.4583333333333333],[123,139,76,-0.4583333333333333],[123,139,77,-0.4583333333333333],[123,139,78,-0.4583333333333333],[123,139,79,-0.4583333333333333],[123,140,64,-0.4583333333333333],[123,140,65,-0.4583333333333333],[123,140,66,-0.4583333333333333],[123,140,67,-0.4583333333333333],[123,140,68,-0.4583333333333333],[123,140,69,-0.4583333333333333],[123,140,70,-0.4583333333333333],[123,140,71,-0.4583333333333333],[123,140,72,-0.4583333333333333],[123,140,73,-0.4583333333333333],[123,140,74,-0.4583333333333333],[123,140,75,-0.4583333333333333],[123,140,76,-0.4583333333333333],[123,140,77,-0.4583333333333333],[123,140,78,-0.4583333333333333],[123,140,79,-0.4583333333333333],[123,141,64,-0.4583333333333333],[123,141,65,-0.4583333333333333],[123,141,66,-0.4583333333333333],[123,141,67,-0.4583333333333333],[123,141,68,-0.4583333333333333],[123,141,69,-0.4583333333333333],[123,141,70,-0.4583333333333333],[123,141,71,-0.4583333333333333],[123,141,72,-0.4583333333333333],[123,141,73,-0.4583333333333333],[123,141,74,-0.4583333333333333],[123,141,75,-0.4583333333333333],[123,141,76,-0.4583333333333333],[123,141,77,-0.4583333333333333],[123,141,78,-0.4583333333333333],[123,141,79,-0.4583333333333333],[123,142,64,-0.4583333333333333],[123,142,65,-0.4583333333333333],[123,142,66,-0.4583333333333333],[123,142,67,-0.4583333333333333],[123,142,68,-0.4583333333333333],[123,142,69,-0.4583333333333333],[123,142,70,-0.4583333333333333],[123,142,71,-0.4583333333333333],[123,142,72,-0.4583333333333333],[123,142,73,-0.4583333333333333],[123,142,74,-0.4583333333333333],[123,142,75,-0.4583333333333333],[123,142,76,-0.4583333333333333],[123,142,77,-0.4583333333333333],[123,142,78,-0.4583333333333333],[123,142,79,-0.4583333333333333],[123,143,64,-0.4583333333333333],[123,143,65,-0.4583333333333333],[123,143,66,-0.4583333333333333],[123,143,67,-0.4583333333333333],[123,143,68,-0.4583333333333333],[123,143,69,-0.4583333333333333],[123,143,70,-0.4583333333333333],[123,143,71,-0.4583333333333333],[123,143,72,-0.4583333333333333],[123,143,73,-0.4583333333333333],[123,143,74,-0.4583333333333333],[123,143,75,-0.4583333333333333],[123,143,76,-0.4583333333333333],[123,143,77,-0.4583333333333333],[123,143,78,-0.4583333333333333],[123,143,79,-0.4583333333333333],[123,144,64,-0.4583333333333333],[123,144,65,-0.4583333333333333],[123,144,66,-0.4583333333333333],[123,144,67,-0.4583333333333333],[123,144,68,-0.4583333333333333],[123,144,69,-0.4583333333333333],[123,144,70,-0.4583333333333333],[123,144,71,-0.4583333333333333],[123,144,72,-0.4583333333333333],[123,144,73,-0.4583333333333333],[123,144,74,-0.4583333333333333],[123,144,75,-0.4583333333333333],[123,144,76,-0.4583333333333333],[123,144,77,-0.4583333333333333],[123,144,78,-0.4583333333333333],[123,144,79,-0.4583333333333333],[123,145,64,-0.4583333333333333],[123,145,65,-0.4583333333333333],[123,145,66,-0.4583333333333333],[123,145,67,-0.4583333333333333],[123,145,68,-0.4583333333333333],[123,145,69,-0.4583333333333333],[123,145,70,-0.4583333333333333],[123,145,71,-0.4583333333333333],[123,145,72,-0.4583333333333333],[123,145,73,-0.4583333333333333],[123,145,74,-0.4583333333333333],[123,145,75,-0.4583333333333333],[123,145,76,-0.4583333333333333],[123,145,77,-0.4583333333333333],[123,145,78,-0.4583333333333333],[123,145,79,-0.4583333333333333],[123,146,64,-0.4583333333333333],[123,146,65,-0.4583333333333333],[123,146,66,-0.4583333333333333],[123,146,67,-0.4583333333333333],[123,146,68,-0.4583333333333333],[123,146,69,-0.4583333333333333],[123,146,70,-0.4583333333333333],[123,146,71,-0.4583333333333333],[123,146,72,-0.4583333333333333],[123,146,73,-0.4583333333333333],[123,146,74,-0.4583333333333333],[123,146,75,-0.4583333333333333],[123,146,76,-0.4583333333333333],[123,146,77,-0.4583333333333333],[123,146,78,-0.4583333333333333],[123,146,79,-0.4583333333333333],[123,147,64,-0.4583333333333333],[123,147,65,-0.4583333333333333],[123,147,66,-0.4583333333333333],[123,147,67,-0.4583333333333333],[123,147,68,-0.4583333333333333],[123,147,69,-0.4583333333333333],[123,147,70,-0.4583333333333333],[123,147,71,-0.4583333333333333],[123,147,72,-0.4583333333333333],[123,147,73,-0.4583333333333333],[123,147,74,-0.4583333333333333],[123,147,75,-0.4583333333333333],[123,147,76,-0.4583333333333333],[123,147,77,-0.4583333333333333],[123,147,78,-0.4583333333333333],[123,147,79,-0.4583333333333333],[123,148,64,-0.4583333333333333],[123,148,65,-0.4583333333333333],[123,148,66,-0.4583333333333333],[123,148,67,-0.4583333333333333],[123,148,68,-0.4583333333333333],[123,148,69,-0.4583333333333333],[123,148,70,-0.4583333333333333],[123,148,71,-0.4583333333333333],[123,148,72,-0.4583333333333333],[123,148,73,-0.4583333333333333],[123,148,74,-0.4583333333333333],[123,148,75,-0.4583333333333333],[123,148,76,-0.4583333333333333],[123,148,77,-0.4583333333333333],[123,148,78,-0.4583333333333333],[123,148,79,-0.4583333333333333],[123,149,64,-0.4583333333333333],[123,149,65,-0.4583333333333333],[123,149,66,-0.4583333333333333],[123,149,67,-0.4583333333333333],[123,149,68,-0.4583333333333333],[123,149,69,-0.4583333333333333],[123,149,70,-0.4583333333333333],[123,149,71,-0.4583333333333333],[123,149,72,-0.4583333333333333],[123,149,73,-0.4583333333333333],[123,149,74,-0.4583333333333333],[123,149,75,-0.4583333333333333],[123,149,76,-0.4583333333333333],[123,149,77,-0.4583333333333333],[123,149,78,-0.4583333333333333],[123,149,79,-0.4583333333333333],[123,150,64,-0.4583333333333333],[123,150,65,-0.4583333333333333],[123,150,66,-0.4583333333333333],[123,150,67,-0.4583333333333333],[123,150,68,-0.4583333333333333],[123,150,69,-0.4583333333333333],[123,150,70,-0.4583333333333333],[123,150,71,-0.4583333333333333],[123,150,72,-0.4583333333333333],[123,150,73,-0.4583333333333333],[123,150,74,-0.4583333333333333],[123,150,75,-0.4583333333333333],[123,150,76,-0.4583333333333333],[123,150,77,-0.4583333333333333],[123,150,78,-0.4583333333333333],[123,150,79,-0.4583333333333333],[123,151,64,-0.4583333333333333],[123,151,65,-0.4583333333333333],[123,151,66,-0.4583333333333333],[123,151,67,-0.4583333333333333],[123,151,68,-0.4583333333333333],[123,151,69,-0.4583333333333333],[123,151,70,-0.4583333333333333],[123,151,71,-0.4583333333333333],[123,151,72,-0.4583333333333333],[123,151,73,-0.4583333333333333],[123,151,74,-0.4583333333333333],[123,151,75,-0.4583333333333333],[123,151,76,-0.4583333333333333],[123,151,77,-0.4583333333333333],[123,151,78,-0.4583333333333333],[123,151,79,-0.4583333333333333],[123,152,64,-0.4583333333333333],[123,152,65,-0.4583333333333333],[123,152,66,-0.4583333333333333],[123,152,67,-0.4583333333333333],[123,152,68,-0.4583333333333333],[123,152,69,-0.4583333333333333],[123,152,70,-0.4583333333333333],[123,152,71,-0.4583333333333333],[123,152,72,-0.4583333333333333],[123,152,73,-0.4583333333333333],[123,152,74,-0.4583333333333333],[123,152,75,-0.4583333333333333],[123,152,76,-0.4583333333333333],[123,152,77,-0.4583333333333333],[123,152,78,-0.4583333333333333],[123,152,79,-0.4583333333333333],[123,153,64,-0.4583333333333333],[123,153,65,-0.4583333333333333],[123,153,66,-0.4583333333333333],[123,153,67,-0.4583333333333333],[123,153,68,-0.4583333333333333],[123,153,69,-0.4583333333333333],[123,153,70,-0.4583333333333333],[123,153,71,-0.4583333333333333],[123,153,72,-0.4583333333333333],[123,153,73,-0.4583333333333333],[123,153,74,-0.4583333333333333],[123,153,75,-0.4583333333333333],[123,153,76,-0.4583333333333333],[123,153,77,-0.4583333333333333],[123,153,78,-0.4583333333333333],[123,153,79,-0.4583333333333333],[123,154,64,-0.4583333333333333],[123,154,65,-0.4583333333333333],[123,154,66,-0.4583333333333333],[123,154,67,-0.4583333333333333],[123,154,68,-0.4583333333333333],[123,154,69,-0.4583333333333333],[123,154,70,-0.4583333333333333],[123,154,71,-0.4583333333333333],[123,154,72,-0.4583333333333333],[123,154,73,-0.4583333333333333],[123,154,74,-0.4583333333333333],[123,154,75,-0.4583333333333333],[123,154,76,-0.4583333333333333],[123,154,77,-0.4583333333333333],[123,154,78,-0.4583333333333333],[123,154,79,-0.4583333333333333],[123,155,64,-0.4583333333333333],[123,155,65,-0.4583333333333333],[123,155,66,-0.4583333333333333],[123,155,67,-0.4583333333333333],[123,155,68,-0.4583333333333333],[123,155,69,-0.4583333333333333],[123,155,70,-0.4583333333333333],[123,155,71,-0.4583333333333333],[123,155,72,-0.4583333333333333],[123,155,73,-0.4583333333333333],[123,155,74,-0.4583333333333333],[123,155,75,-0.4583333333333333],[123,155,76,-0.4583333333333333],[123,155,77,-0.4583333333333333],[123,155,78,-0.4583333333333333],[123,155,79,-0.4583333333333333],[123,156,64,-0.4583333333333333],[123,156,65,-0.4583333333333333],[123,156,66,-0.4583333333333333],[123,156,67,-0.4583333333333333],[123,156,68,-0.4583333333333333],[123,156,69,-0.4583333333333333],[123,156,70,-0.4583333333333333],[123,156,71,-0.4583333333333333],[123,156,72,-0.4583333333333333],[123,156,73,-0.4583333333333333],[123,156,74,-0.4583333333333333],[123,156,75,-0.4583333333333333],[123,156,76,-0.4583333333333333],[123,156,77,-0.4583333333333333],[123,156,78,-0.4583333333333333],[123,156,79,-0.4583333333333333],[123,157,64,-0.4583333333333333],[123,157,65,-0.4583333333333333],[123,157,66,-0.4583333333333333],[123,157,67,-0.4583333333333333],[123,157,68,-0.4583333333333333],[123,157,69,-0.4583333333333333],[123,157,70,-0.4583333333333333],[123,157,71,-0.4583333333333333],[123,157,72,-0.4583333333333333],[123,157,73,-0.4583333333333333],[123,157,74,-0.4583333333333333],[123,157,75,-0.4583333333333333],[123,157,76,-0.4583333333333333],[123,157,77,-0.4583333333333333],[123,157,78,-0.4583333333333333],[123,157,79,-0.4583333333333333],[123,158,64,-0.4583333333333333],[123,158,65,-0.4583333333333333],[123,158,66,-0.4583333333333333],[123,158,67,-0.4583333333333333],[123,158,68,-0.4583333333333333],[123,158,69,-0.4583333333333333],[123,158,70,-0.4583333333333333],[123,158,71,-0.4583333333333333],[123,158,72,-0.4583333333333333],[123,158,73,-0.4583333333333333],[123,158,74,-0.4583333333333333],[123,158,75,-0.4583333333333333],[123,158,76,-0.4583333333333333],[123,158,77,-0.4583333333333333],[123,158,78,-0.4583333333333333],[123,158,79,-0.4583333333333333],[123,159,64,-0.4583333333333333],[123,159,65,-0.4583333333333333],[123,159,66,-0.4583333333333333],[123,159,67,-0.4583333333333333],[123,159,68,-0.4583333333333333],[123,159,69,-0.4583333333333333],[123,159,70,-0.4583333333333333],[123,159,71,-0.4583333333333333],[123,159,72,-0.4583333333333333],[123,159,73,-0.4583333333333333],[123,159,74,-0.4583333333333333],[123,159,75,-0.4583333333333333],[123,159,76,-0.4583333333333333],[123,159,77,-0.4583333333333333],[123,159,78,-0.4583333333333333],[123,159,79,-0.4583333333333333],[123,160,64,-0.4583333333333333],[123,160,65,-0.4583333333333333],[123,160,66,-0.4583333333333333],[123,160,67,-0.4583333333333333],[123,160,68,-0.4583333333333333],[123,160,69,-0.4583333333333333],[123,160,70,-0.4583333333333333],[123,160,71,-0.4583333333333333],[123,160,72,-0.4583333333333333],[123,160,73,-0.4583333333333333],[123,160,74,-0.4583333333333333],[123,160,75,-0.4583333333333333],[123,160,76,-0.4583333333333333],[123,160,77,-0.4583333333333333],[123,160,78,-0.4583333333333333],[123,160,79,-0.4583333333333333],[123,161,64,-0.4583333333333333],[123,161,65,-0.4583333333333333],[123,161,66,-0.4583333333333333],[123,161,67,-0.4583333333333333],[123,161,68,-0.4583333333333333],[123,161,69,-0.4583333333333333],[123,161,70,-0.4583333333333333],[123,161,71,-0.4583333333333333],[123,161,72,-0.4583333333333333],[123,161,73,-0.4583333333333333],[123,161,74,-0.4583333333333333],[123,161,75,-0.4583333333333333],[123,161,76,-0.4583333333333333],[123,161,77,-0.4583333333333333],[123,161,78,-0.4583333333333333],[123,161,79,-0.4583333333333333],[123,162,64,-0.4583333333333333],[123,162,65,-0.4583333333333333],[123,162,66,-0.4583333333333333],[123,162,67,-0.4583333333333333],[123,162,68,-0.4583333333333333],[123,162,69,-0.4583333333333333],[123,162,70,-0.4583333333333333],[123,162,71,-0.4583333333333333],[123,162,72,-0.4583333333333333],[123,162,73,-0.4583333333333333],[123,162,74,-0.4583333333333333],[123,162,75,-0.4583333333333333],[123,162,76,-0.4583333333333333],[123,162,77,-0.4583333333333333],[123,162,78,-0.4583333333333333],[123,162,79,-0.4583333333333333],[123,163,64,-0.4583333333333333],[123,163,65,-0.4583333333333333],[123,163,66,-0.4583333333333333],[123,163,67,-0.4583333333333333],[123,163,68,-0.4583333333333333],[123,163,69,-0.4583333333333333],[123,163,70,-0.4583333333333333],[123,163,71,-0.4583333333333333],[123,163,72,-0.4583333333333333],[123,163,73,-0.4583333333333333],[123,163,74,-0.4583333333333333],[123,163,75,-0.4583333333333333],[123,163,76,-0.4583333333333333],[123,163,77,-0.4583333333333333],[123,163,78,-0.4583333333333333],[123,163,79,-0.4583333333333333],[123,164,64,-0.4583333333333333],[123,164,65,-0.4583333333333333],[123,164,66,-0.4583333333333333],[123,164,67,-0.4583333333333333],[123,164,68,-0.4583333333333333],[123,164,69,-0.4583333333333333],[123,164,70,-0.4583333333333333],[123,164,71,-0.4583333333333333],[123,164,72,-0.4583333333333333],[123,164,73,-0.4583333333333333],[123,164,74,-0.4583333333333333],[123,164,75,-0.4583333333333333],[123,164,76,-0.4583333333333333],[123,164,77,-0.4583333333333333],[123,164,78,-0.4583333333333333],[123,164,79,-0.4583333333333333],[123,165,64,-0.4583333333333333],[123,165,65,-0.4583333333333333],[123,165,66,-0.4583333333333333],[123,165,67,-0.4583333333333333],[123,165,68,-0.4583333333333333],[123,165,69,-0.4583333333333333],[123,165,70,-0.4583333333333333],[123,165,71,-0.4583333333333333],[123,165,72,-0.4583333333333333],[123,165,73,-0.4583333333333333],[123,165,74,-0.4583333333333333],[123,165,75,-0.4583333333333333],[123,165,76,-0.4583333333333333],[123,165,77,-0.4583333333333333],[123,165,78,-0.4583333333333333],[123,165,79,-0.4583333333333333],[123,166,64,-0.4583333333333333],[123,166,65,-0.4583333333333333],[123,166,66,-0.4583333333333333],[123,166,67,-0.4583333333333333],[123,166,68,-0.4583333333333333],[123,166,69,-0.4583333333333333],[123,166,70,-0.4583333333333333],[123,166,71,-0.4583333333333333],[123,166,72,-0.4583333333333333],[123,166,73,-0.4583333333333333],[123,166,74,-0.4583333333333333],[123,166,75,-0.4583333333333333],[123,166,76,-0.4583333333333333],[123,166,77,-0.4583333333333333],[123,166,78,-0.4583333333333333],[123,166,79,-0.4583333333333333],[123,167,64,-0.4583333333333333],[123,167,65,-0.4583333333333333],[123,167,66,-0.4583333333333333],[123,167,67,-0.4583333333333333],[123,167,68,-0.4583333333333333],[123,167,69,-0.4583333333333333],[123,167,70,-0.4583333333333333],[123,167,71,-0.4583333333333333],[123,167,72,-0.4583333333333333],[123,167,73,-0.4583333333333333],[123,167,74,-0.4583333333333333],[123,167,75,-0.4583333333333333],[123,167,76,-0.4583333333333333],[123,167,77,-0.4583333333333333],[123,167,78,-0.4583333333333333],[123,167,79,-0.4583333333333333],[123,168,64,-0.4583333333333333],[123,168,65,-0.4583333333333333],[123,168,66,-0.4583333333333333],[123,168,67,-0.4583333333333333],[123,168,68,-0.4583333333333333],[123,168,69,-0.4583333333333333],[123,168,70,-0.4583333333333333],[123,168,71,-0.4583333333333333],[123,168,72,-0.4583333333333333],[123,168,73,-0.4583333333333333],[123,168,74,-0.4583333333333333],[123,168,75,-0.4583333333333333],[123,168,76,-0.4583333333333333],[123,168,77,-0.4583333333333333],[123,168,78,-0.4583333333333333],[123,168,79,-0.4583333333333333],[123,169,64,-0.4583333333333333],[123,169,65,-0.4583333333333333],[123,169,66,-0.4583333333333333],[123,169,67,-0.4583333333333333],[123,169,68,-0.4583333333333333],[123,169,69,-0.4583333333333333],[123,169,70,-0.4583333333333333],[123,169,71,-0.4583333333333333],[123,169,72,-0.4583333333333333],[123,169,73,-0.4583333333333333],[123,169,74,-0.4583333333333333],[123,169,75,-0.4583333333333333],[123,169,76,-0.4583333333333333],[123,169,77,-0.4583333333333333],[123,169,78,-0.4583333333333333],[123,169,79,-0.4583333333333333],[123,170,64,-0.4583333333333333],[123,170,65,-0.4583333333333333],[123,170,66,-0.4583333333333333],[123,170,67,-0.4583333333333333],[123,170,68,-0.4583333333333333],[123,170,69,-0.4583333333333333],[123,170,70,-0.4583333333333333],[123,170,71,-0.4583333333333333],[123,170,72,-0.4583333333333333],[123,170,73,-0.4583333333333333],[123,170,74,-0.4583333333333333],[123,170,75,-0.4583333333333333],[123,170,76,-0.4583333333333333],[123,170,77,-0.4583333333333333],[123,170,78,-0.4583333333333333],[123,170,79,-0.4583333333333333],[123,171,64,-0.4583333333333333],[123,171,65,-0.4583333333333333],[123,171,66,-0.4583333333333333],[123,171,67,-0.4583333333333333],[123,171,68,-0.4583333333333333],[123,171,69,-0.4583333333333333],[123,171,70,-0.4583333333333333],[123,171,71,-0.4583333333333333],[123,171,72,-0.4583333333333333],[123,171,73,-0.4583333333333333],[123,171,74,-0.4583333333333333],[123,171,75,-0.4583333333333333],[123,171,76,-0.4583333333333333],[123,171,77,-0.4583333333333333],[123,171,78,-0.4583333333333333],[123,171,79,-0.4583333333333333],[123,172,64,-0.4583333333333333],[123,172,65,-0.4583333333333333],[123,172,66,-0.4583333333333333],[123,172,67,-0.4583333333333333],[123,172,68,-0.4583333333333333],[123,172,69,-0.4583333333333333],[123,172,70,-0.4583333333333333],[123,172,71,-0.4583333333333333],[123,172,72,-0.4583333333333333],[123,172,73,-0.4583333333333333],[123,172,74,-0.4583333333333333],[123,172,75,-0.4583333333333333],[123,172,76,-0.4583333333333333],[123,172,77,-0.4583333333333333],[123,172,78,-0.4583333333333333],[123,172,79,-0.4583333333333333],[123,173,64,-0.4583333333333333],[123,173,65,-0.4583333333333333],[123,173,66,-0.4583333333333333],[123,173,67,-0.4583333333333333],[123,173,68,-0.4583333333333333],[123,173,69,-0.4583333333333333],[123,173,70,-0.4583333333333333],[123,173,71,-0.4583333333333333],[123,173,72,-0.4583333333333333],[123,173,73,-0.4583333333333333],[123,173,74,-0.4583333333333333],[123,173,75,-0.4583333333333333],[123,173,76,-0.4583333333333333],[123,173,77,-0.4583333333333333],[123,173,78,-0.4583333333333333],[123,173,79,-0.4583333333333333],[123,174,64,-0.4583333333333333],[123,174,65,-0.4583333333333333],[123,174,66,-0.4583333333333333],[123,174,67,-0.4583333333333333],[123,174,68,-0.4583333333333333],[123,174,69,-0.4583333333333333],[123,174,70,-0.4583333333333333],[123,174,71,-0.4583333333333333],[123,174,72,-0.4583333333333333],[123,174,73,-0.4583333333333333],[123,174,74,-0.4583333333333333],[123,174,75,-0.4583333333333333],[123,174,76,-0.4583333333333333],[123,174,77,-0.4583333333333333],[123,174,78,-0.4583333333333333],[123,174,79,-0.4583333333333333],[123,175,64,-0.4583333333333333],[123,175,65,-0.4583333333333333],[123,175,66,-0.4583333333333333],[123,175,67,-0.4583333333333333],[123,175,68,-0.4583333333333333],[123,175,69,-0.4583333333333333],[123,175,70,-0.4583333333333333],[123,175,71,-0.4583333333333333],[123,175,72,-0.4583333333333333],[123,175,73,-0.4583333333333333],[123,175,74,-0.4583333333333333],[123,175,75,-0.4583333333333333],[123,175,76,-0.4583333333333333],[123,175,77,-0.4583333333333333],[123,175,78,-0.4583333333333333],[123,175,79,-0.4583333333333333],[123,176,64,-0.4583333333333333],[123,176,65,-0.4583333333333333],[123,176,66,-0.4583333333333333],[123,176,67,-0.4583333333333333],[123,176,68,-0.4583333333333333],[123,176,69,-0.4583333333333333],[123,176,70,-0.4583333333333333],[123,176,71,-0.4583333333333333],[123,176,72,-0.4583333333333333],[123,176,73,-0.4583333333333333],[123,176,74,-0.4583333333333333],[123,176,75,-0.4583333333333333],[123,176,76,-0.4583333333333333],[123,176,77,-0.4583333333333333],[123,176,78,-0.4583333333333333],[123,176,79,-0.4583333333333333],[123,177,64,-0.4583333333333333],[123,177,65,-0.4583333333333333],[123,177,66,-0.4583333333333333],[123,177,67,-0.4583333333333333],[123,177,68,-0.4583333333333333],[123,177,69,-0.4583333333333333],[123,177,70,-0.4583333333333333],[123,177,71,-0.4583333333333333],[123,177,72,-0.4583333333333333],[123,177,73,-0.4583333333333333],[123,177,74,-0.4583333333333333],[123,177,75,-0.4583333333333333],[123,177,76,-0.4583333333333333],[123,177,77,-0.4583333333333333],[123,177,78,-0.4583333333333333],[123,177,79,-0.4583333333333333],[123,178,64,-0.4583333333333333],[123,178,65,-0.4583333333333333],[123,178,66,-0.4583333333333333],[123,178,67,-0.4583333333333333],[123,178,68,-0.4583333333333333],[123,178,69,-0.4583333333333333],[123,178,70,-0.4583333333333333],[123,178,71,-0.4583333333333333],[123,178,72,-0.4583333333333333],[123,178,73,-0.4583333333333333],[123,178,74,-0.4583333333333333],[123,178,75,-0.4583333333333333],[123,178,76,-0.4583333333333333],[123,178,77,-0.4583333333333333],[123,178,78,-0.4583333333333333],[123,178,79,-0.4583333333333333],[123,179,64,-0.4583333333333333],[123,179,65,-0.4583333333333333],[123,179,66,-0.4583333333333333],[123,179,67,-0.4583333333333333],[123,179,68,-0.4583333333333333],[123,179,69,-0.4583333333333333],[123,179,70,-0.4583333333333333],[123,179,71,-0.4583333333333333],[123,179,72,-0.4583333333333333],[123,179,73,-0.4583333333333333],[123,179,74,-0.4583333333333333],[123,179,75,-0.4583333333333333],[123,179,76,-0.4583333333333333],[123,179,77,-0.4583333333333333],[123,179,78,-0.4583333333333333],[123,179,79,-0.4583333333333333],[123,180,64,-0.4583333333333333],[123,180,65,-0.4583333333333333],[123,180,66,-0.4583333333333333],[123,180,67,-0.4583333333333333],[123,180,68,-0.4583333333333333],[123,180,69,-0.4583333333333333],[123,180,70,-0.4583333333333333],[123,180,71,-0.4583333333333333],[123,180,72,-0.4583333333333333],[123,180,73,-0.4583333333333333],[123,180,74,-0.4583333333333333],[123,180,75,-0.4583333333333333],[123,180,76,-0.4583333333333333],[123,180,77,-0.4583333333333333],[123,180,78,-0.4583333333333333],[123,180,79,-0.4583333333333333],[123,181,64,-0.4583333333333333],[123,181,65,-0.4583333333333333],[123,181,66,-0.4583333333333333],[123,181,67,-0.4583333333333333],[123,181,68,-0.4583333333333333],[123,181,69,-0.4583333333333333],[123,181,70,-0.4583333333333333],[123,181,71,-0.4583333333333333],[123,181,72,-0.4583333333333333],[123,181,73,-0.4583333333333333],[123,181,74,-0.4583333333333333],[123,181,75,-0.4583333333333333],[123,181,76,-0.4583333333333333],[123,181,77,-0.4583333333333333],[123,181,78,-0.4583333333333333],[123,181,79,-0.4583333333333333],[123,182,64,-0.4583333333333333],[123,182,65,-0.4583333333333333],[123,182,66,-0.4583333333333333],[123,182,67,-0.4583333333333333],[123,182,68,-0.4583333333333333],[123,182,69,-0.4583333333333333],[123,182,70,-0.4583333333333333],[123,182,71,-0.4583333333333333],[123,182,72,-0.4583333333333333],[123,182,73,-0.4583333333333333],[123,182,74,-0.4583333333333333],[123,182,75,-0.4583333333333333],[123,182,76,-0.4583333333333333],[123,182,77,-0.4583333333333333],[123,182,78,-0.4583333333333333],[123,182,79,-0.4583333333333333],[123,183,64,-0.4583333333333333],[123,183,65,-0.4583333333333333],[123,183,66,-0.4583333333333333],[123,183,67,-0.4583333333333333],[123,183,68,-0.4583333333333333],[123,183,69,-0.4583333333333333],[123,183,70,-0.4583333333333333],[123,183,71,-0.4583333333333333],[123,183,72,-0.4583333333333333],[123,183,73,-0.4583333333333333],[123,183,74,-0.4583333333333333],[123,183,75,-0.4583333333333333],[123,183,76,-0.4583333333333333],[123,183,77,-0.4583333333333333],[123,183,78,-0.4583333333333333],[123,183,79,-0.4583333333333333],[123,184,64,-0.4583333333333333],[123,184,65,-0.4583333333333333],[123,184,66,-0.4583333333333333],[123,184,67,-0.4583333333333333],[123,184,68,-0.4583333333333333],[123,184,69,-0.4583333333333333],[123,184,70,-0.4583333333333333],[123,184,71,-0.4583333333333333],[123,184,72,-0.4583333333333333],[123,184,73,-0.4583333333333333],[123,184,74,-0.4583333333333333],[123,184,75,-0.4583333333333333],[123,184,76,-0.4583333333333333],[123,184,77,-0.4583333333333333],[123,184,78,-0.4583333333333333],[123,184,79,-0.4583333333333333],[123,185,64,-0.4583333333333333],[123,185,65,-0.4583333333333333],[123,185,66,-0.4583333333333333],[123,185,67,-0.4583333333333333],[123,185,68,-0.4583333333333333],[123,185,69,-0.4583333333333333],[123,185,70,-0.4583333333333333],[123,185,71,-0.4583333333333333],[123,185,72,-0.4583333333333333],[123,185,73,-0.4583333333333333],[123,185,74,-0.4583333333333333],[123,185,75,-0.4583333333333333],[123,185,76,-0.4583333333333333],[123,185,77,-0.4583333333333333],[123,185,78,-0.4583333333333333],[123,185,79,-0.4583333333333333],[123,186,64,-0.4583333333333333],[123,186,65,-0.4583333333333333],[123,186,66,-0.4583333333333333],[123,186,67,-0.4583333333333333],[123,186,68,-0.4583333333333333],[123,186,69,-0.4583333333333333],[123,186,70,-0.4583333333333333],[123,186,71,-0.4583333333333333],[123,186,72,-0.4583333333333333],[123,186,73,-0.4583333333333333],[123,186,74,-0.4583333333333333],[123,186,75,-0.4583333333333333],[123,186,76,-0.4583333333333333],[123,186,77,-0.4583333333333333],[123,186,78,-0.4583333333333333],[123,186,79,-0.4583333333333333],[123,187,64,-0.4583333333333333],[123,187,65,-0.4583333333333333],[123,187,66,-0.4583333333333333],[123,187,67,-0.4583333333333333],[123,187,68,-0.4583333333333333],[123,187,69,-0.4583333333333333],[123,187,70,-0.4583333333333333],[123,187,71,-0.4583333333333333],[123,187,72,-0.4583333333333333],[123,187,73,-0.4583333333333333],[123,187,74,-0.4583333333333333],[123,187,75,-0.4583333333333333],[123,187,76,-0.4583333333333333],[123,187,77,-0.4583333333333333],[123,187,78,-0.4583333333333333],[123,187,79,-0.4583333333333333],[123,188,64,-0.4583333333333333],[123,188,65,-0.4583333333333333],[123,188,66,-0.4583333333333333],[123,188,67,-0.4583333333333333],[123,188,68,-0.4583333333333333],[123,188,69,-0.4583333333333333],[123,188,70,-0.4583333333333333],[123,188,71,-0.4583333333333333],[123,188,72,-0.4583333333333333],[123,188,73,-0.4583333333333333],[123,188,74,-0.4583333333333333],[123,188,75,-0.4583333333333333],[123,188,76,-0.4583333333333333],[123,188,77,-0.4583333333333333],[123,188,78,-0.4583333333333333],[123,188,79,-0.4583333333333333],[123,189,64,-0.4583333333333333],[123,189,65,-0.4583333333333333],[123,189,66,-0.4583333333333333],[123,189,67,-0.4583333333333333],[123,189,68,-0.4583333333333333],[123,189,69,-0.4583333333333333],[123,189,70,-0.4583333333333333],[123,189,71,-0.4583333333333333],[123,189,72,-0.4583333333333333],[123,189,73,-0.4583333333333333],[123,189,74,-0.4583333333333333],[123,189,75,-0.4583333333333333],[123,189,76,-0.4583333333333333],[123,189,77,-0.4583333333333333],[123,189,78,-0.4583333333333333],[123,189,79,-0.4583333333333333],[123,190,64,-0.4583333333333333],[123,190,65,-0.4583333333333333],[123,190,66,-0.4583333333333333],[123,190,67,-0.4583333333333333],[123,190,68,-0.4583333333333333],[123,190,69,-0.4583333333333333],[123,190,70,-0.4583333333333333],[123,190,71,-0.4583333333333333],[123,190,72,-0.4583333333333333],[123,190,73,-0.4583333333333333],[123,190,74,-0.4583333333333333],[123,190,75,-0.4583333333333333],[123,190,76,-0.4583333333333333],[123,190,77,-0.4583333333333333],[123,190,78,-0.4583333333333333],[123,190,79,-0.4583333333333333],[123,191,64,-0.4583333333333333],[123,191,65,-0.4583333333333333],[123,191,66,-0.4583333333333333],[123,191,67,-0.4583333333333333],[123,191,68,-0.4583333333333333],[123,191,69,-0.4583333333333333],[123,191,70,-0.4583333333333333],[123,191,71,-0.4583333333333333],[123,191,72,-0.4583333333333333],[123,191,73,-0.4583333333333333],[123,191,74,-0.4583333333333333],[123,191,75,-0.4583333333333333],[123,191,76,-0.4583333333333333],[123,191,77,-0.4583333333333333],[123,191,78,-0.4583333333333333],[123,191,79,-0.4583333333333333],[123,192,64,-0.4583333333333333],[123,192,65,-0.4583333333333333],[123,192,66,-0.4583333333333333],[123,192,67,-0.4583333333333333],[123,192,68,-0.4583333333333333],[123,192,69,-0.4583333333333333],[123,192,70,-0.4583333333333333],[123,192,71,-0.4583333333333333],[123,192,72,-0.4583333333333333],[123,192,73,-0.4583333333333333],[123,192,74,-0.4583333333333333],[123,192,75,-0.4583333333333333],[123,192,76,-0.4583333333333333],[123,192,77,-0.4583333333333333],[123,192,78,-0.4583333333333333],[123,192,79,-0.4583333333333333],[123,193,64,-0.4583333333333333],[123,193,65,-0.4583333333333333],[123,193,66,-0.4583333333333333],[123,193,67,-0.4583333333333333],[123,193,68,-0.4583333333333333],[123,193,69,-0.4583333333333333],[123,193,70,-0.4583333333333333],[123,193,71,-0.4583333333333333],[123,193,72,-0.4583333333333333],[123,193,73,-0.4583333333333333],[123,193,74,-0.4583333333333333],[123,193,75,-0.4583333333333333],[123,193,76,-0.4583333333333333],[123,193,77,-0.4583333333333333],[123,193,78,-0.4583333333333333],[123,193,79,-0.4583333333333333],[123,194,64,-0.4583333333333333],[123,194,65,-0.4583333333333333],[123,194,66,-0.4583333333333333],[123,194,67,-0.4583333333333333],[123,194,68,-0.4583333333333333],[123,194,69,-0.4583333333333333],[123,194,70,-0.4583333333333333],[123,194,71,-0.4583333333333333],[123,194,72,-0.4583333333333333],[123,194,73,-0.4583333333333333],[123,194,74,-0.4583333333333333],[123,194,75,-0.4583333333333333],[123,194,76,-0.4583333333333333],[123,194,77,-0.4583333333333333],[123,194,78,-0.4583333333333333],[123,194,79,-0.4583333333333333],[123,195,64,-0.4583333333333333],[123,195,65,-0.4583333333333333],[123,195,66,-0.4583333333333333],[123,195,67,-0.4583333333333333],[123,195,68,-0.4583333333333333],[123,195,69,-0.4583333333333333],[123,195,70,-0.4583333333333333],[123,195,71,-0.4583333333333333],[123,195,72,-0.4583333333333333],[123,195,73,-0.4583333333333333],[123,195,74,-0.4583333333333333],[123,195,75,-0.4583333333333333],[123,195,76,-0.4583333333333333],[123,195,77,-0.4583333333333333],[123,195,78,-0.4583333333333333],[123,195,79,-0.4583333333333333],[123,196,64,-0.4583333333333333],[123,196,65,-0.4583333333333333],[123,196,66,-0.4583333333333333],[123,196,67,-0.4583333333333333],[123,196,68,-0.4583333333333333],[123,196,69,-0.4583333333333333],[123,196,70,-0.4583333333333333],[123,196,71,-0.4583333333333333],[123,196,72,-0.4583333333333333],[123,196,73,-0.4583333333333333],[123,196,74,-0.4583333333333333],[123,196,75,-0.4583333333333333],[123,196,76,-0.4583333333333333],[123,196,77,-0.4583333333333333],[123,196,78,-0.4583333333333333],[123,196,79,-0.4583333333333333],[123,197,64,-0.4583333333333333],[123,197,65,-0.4583333333333333],[123,197,66,-0.4583333333333333],[123,197,67,-0.4583333333333333],[123,197,68,-0.4583333333333333],[123,197,69,-0.4583333333333333],[123,197,70,-0.4583333333333333],[123,197,71,-0.4583333333333333],[123,197,72,-0.4583333333333333],[123,197,73,-0.4583333333333333],[123,197,74,-0.4583333333333333],[123,197,75,-0.4583333333333333],[123,197,76,-0.4583333333333333],[123,197,77,-0.4583333333333333],[123,197,78,-0.4583333333333333],[123,197,79,-0.4583333333333333],[123,198,64,-0.4583333333333333],[123,198,65,-0.4583333333333333],[123,198,66,-0.4583333333333333],[123,198,67,-0.4583333333333333],[123,198,68,-0.4583333333333333],[123,198,69,-0.4583333333333333],[123,198,70,-0.4583333333333333],[123,198,71,-0.4583333333333333],[123,198,72,-0.4583333333333333],[123,198,73,-0.4583333333333333],[123,198,74,-0.4583333333333333],[123,198,75,-0.4583333333333333],[123,198,76,-0.4583333333333333],[123,198,77,-0.4583333333333333],[123,198,78,-0.4583333333333333],[123,198,79,-0.4583333333333333],[123,199,64,-0.4583333333333333],[123,199,65,-0.4583333333333333],[123,199,66,-0.4583333333333333],[123,199,67,-0.4583333333333333],[123,199,68,-0.4583333333333333],[123,199,69,-0.4583333333333333],[123,199,70,-0.4583333333333333],[123,199,71,-0.4583333333333333],[123,199,72,-0.4583333333333333],[123,199,73,-0.4583333333333333],[123,199,74,-0.4583333333333333],[123,199,75,-0.4583333333333333],[123,199,76,-0.4583333333333333],[123,199,77,-0.4583333333333333],[123,199,78,-0.4583333333333333],[123,199,79,-0.4583333333333333],[123,200,64,-0.4583333333333333],[123,200,65,-0.4583333333333333],[123,200,66,-0.4583333333333333],[123,200,67,-0.4583333333333333],[123,200,68,-0.4583333333333333],[123,200,69,-0.4583333333333333],[123,200,70,-0.4583333333333333],[123,200,71,-0.4583333333333333],[123,200,72,-0.4583333333333333],[123,200,73,-0.4583333333333333],[123,200,74,-0.4583333333333333],[123,200,75,-0.4583333333333333],[123,200,76,-0.4583333333333333],[123,200,77,-0.4583333333333333],[123,200,78,-0.4583333333333333],[123,200,79,-0.4583333333333333],[123,201,64,-0.4583333333333333],[123,201,65,-0.4583333333333333],[123,201,66,-0.4583333333333333],[123,201,67,-0.4583333333333333],[123,201,68,-0.4583333333333333],[123,201,69,-0.4583333333333333],[123,201,70,-0.4583333333333333],[123,201,71,-0.4583333333333333],[123,201,72,-0.4583333333333333],[123,201,73,-0.4583333333333333],[123,201,74,-0.4583333333333333],[123,201,75,-0.4583333333333333],[123,201,76,-0.4583333333333333],[123,201,77,-0.4583333333333333],[123,201,78,-0.4583333333333333],[123,201,79,-0.4583333333333333],[123,202,64,-0.4583333333333333],[123,202,65,-0.4583333333333333],[123,202,66,-0.4583333333333333],[123,202,67,-0.4583333333333333],[123,202,68,-0.4583333333333333],[123,202,69,-0.4583333333333333],[123,202,70,-0.4583333333333333],[123,202,71,-0.4583333333333333],[123,202,72,-0.4583333333333333],[123,202,73,-0.4583333333333333],[123,202,74,-0.4583333333333333],[123,202,75,-0.4583333333333333],[123,202,76,-0.4583333333333333],[123,202,77,-0.4583333333333333],[123,202,78,-0.4583333333333333],[123,202,79,-0.4583333333333333],[123,203,64,-0.4583333333333333],[123,203,65,-0.4583333333333333],[123,203,66,-0.4583333333333333],[123,203,67,-0.4583333333333333],[123,203,68,-0.4583333333333333],[123,203,69,-0.4583333333333333],[123,203,70,-0.4583333333333333],[123,203,71,-0.4583333333333333],[123,203,72,-0.4583333333333333],[123,203,73,-0.4583333333333333],[123,203,74,-0.4583333333333333],[123,203,75,-0.4583333333333333],[123,203,76,-0.4583333333333333],[123,203,77,-0.4583333333333333],[123,203,78,-0.4583333333333333],[123,203,79,-0.4583333333333333],[123,204,64,-0.4583333333333333],[123,204,65,-0.4583333333333333],[123,204,66,-0.4583333333333333],[123,204,67,-0.4583333333333333],[123,204,68,-0.4583333333333333],[123,204,69,-0.4583333333333333],[123,204,70,-0.4583333333333333],[123,204,71,-0.4583333333333333],[123,204,72,-0.4583333333333333],[123,204,73,-0.4583333333333333],[123,204,74,-0.4583333333333333],[123,204,75,-0.4583333333333333],[123,204,76,-0.4583333333333333],[123,204,77,-0.4583333333333333],[123,204,78,-0.4583333333333333],[123,204,79,-0.4583333333333333],[123,205,64,-0.4583333333333333],[123,205,65,-0.4583333333333333],[123,205,66,-0.4583333333333333],[123,205,67,-0.4583333333333333],[123,205,68,-0.4583333333333333],[123,205,69,-0.4583333333333333],[123,205,70,-0.4583333333333333],[123,205,71,-0.4583333333333333],[123,205,72,-0.4583333333333333],[123,205,73,-0.4583333333333333],[123,205,74,-0.4583333333333333],[123,205,75,-0.4583333333333333],[123,205,76,-0.4583333333333333],[123,205,77,-0.4583333333333333],[123,205,78,-0.4583333333333333],[123,205,79,-0.4583333333333333],[123,206,64,-0.4583333333333333],[123,206,65,-0.4583333333333333],[123,206,66,-0.4583333333333333],[123,206,67,-0.4583333333333333],[123,206,68,-0.4583333333333333],[123,206,69,-0.4583333333333333],[123,206,70,-0.4583333333333333],[123,206,71,-0.4583333333333333],[123,206,72,-0.4583333333333333],[123,206,73,-0.4583333333333333],[123,206,74,-0.4583333333333333],[123,206,75,-0.4583333333333333],[123,206,76,-0.4583333333333333],[123,206,77,-0.4583333333333333],[123,206,78,-0.4583333333333333],[123,206,79,-0.4583333333333333],[123,207,64,-0.4583333333333333],[123,207,65,-0.4583333333333333],[123,207,66,-0.4583333333333333],[123,207,67,-0.4583333333333333],[123,207,68,-0.4583333333333333],[123,207,69,-0.4583333333333333],[123,207,70,-0.4583333333333333],[123,207,71,-0.4583333333333333],[123,207,72,-0.4583333333333333],[123,207,73,-0.4583333333333333],[123,207,74,-0.4583333333333333],[123,207,75,-0.4583333333333333],[123,207,76,-0.4583333333333333],[123,207,77,-0.4583333333333333],[123,207,78,-0.4583333333333333],[123,207,79,-0.4583333333333333],[123,208,64,-0.4583333333333333],[123,208,65,-0.4583333333333333],[123,208,66,-0.4583333333333333],[123,208,67,-0.4583333333333333],[123,208,68,-0.4583333333333333],[123,208,69,-0.4583333333333333],[123,208,70,-0.4583333333333333],[123,208,71,-0.4583333333333333],[123,208,72,-0.4583333333333333],[123,208,73,-0.4583333333333333],[123,208,74,-0.4583333333333333],[123,208,75,-0.4583333333333333],[123,208,76,-0.4583333333333333],[123,208,77,-0.4583333333333333],[123,208,78,-0.4583333333333333],[123,208,79,-0.4583333333333333],[123,209,64,-0.4583333333333333],[123,209,65,-0.4583333333333333],[123,209,66,-0.4583333333333333],[123,209,67,-0.4583333333333333],[123,209,68,-0.4583333333333333],[123,209,69,-0.4583333333333333],[123,209,70,-0.4583333333333333],[123,209,71,-0.4583333333333333],[123,209,72,-0.4583333333333333],[123,209,73,-0.4583333333333333],[123,209,74,-0.4583333333333333],[123,209,75,-0.4583333333333333],[123,209,76,-0.4583333333333333],[123,209,77,-0.4583333333333333],[123,209,78,-0.4583333333333333],[123,209,79,-0.4583333333333333],[123,210,64,-0.4583333333333333],[123,210,65,-0.4583333333333333],[123,210,66,-0.4583333333333333],[123,210,67,-0.4583333333333333],[123,210,68,-0.4583333333333333],[123,210,69,-0.4583333333333333],[123,210,70,-0.4583333333333333],[123,210,71,-0.4583333333333333],[123,210,72,-0.4583333333333333],[123,210,73,-0.4583333333333333],[123,210,74,-0.4583333333333333],[123,210,75,-0.4583333333333333],[123,210,76,-0.4583333333333333],[123,210,77,-0.4583333333333333],[123,210,78,-0.4583333333333333],[123,210,79,-0.4583333333333333],[123,211,64,-0.4583333333333333],[123,211,65,-0.4583333333333333],[123,211,66,-0.4583333333333333],[123,211,67,-0.4583333333333333],[123,211,68,-0.4583333333333333],[123,211,69,-0.4583333333333333],[123,211,70,-0.4583333333333333],[123,211,71,-0.4583333333333333],[123,211,72,-0.4583333333333333],[123,211,73,-0.4583333333333333],[123,211,74,-0.4583333333333333],[123,211,75,-0.4583333333333333],[123,211,76,-0.4583333333333333],[123,211,77,-0.4583333333333333],[123,211,78,-0.4583333333333333],[123,211,79,-0.4583333333333333],[123,212,64,-0.4583333333333333],[123,212,65,-0.4583333333333333],[123,212,66,-0.4583333333333333],[123,212,67,-0.4583333333333333],[123,212,68,-0.4583333333333333],[123,212,69,-0.4583333333333333],[123,212,70,-0.4583333333333333],[123,212,71,-0.4583333333333333],[123,212,72,-0.4583333333333333],[123,212,73,-0.4583333333333333],[123,212,74,-0.4583333333333333],[123,212,75,-0.4583333333333333],[123,212,76,-0.4583333333333333],[123,212,77,-0.4583333333333333],[123,212,78,-0.4583333333333333],[123,212,79,-0.4583333333333333],[123,213,64,-0.4583333333333333],[123,213,65,-0.4583333333333333],[123,213,66,-0.4583333333333333],[123,213,67,-0.4583333333333333],[123,213,68,-0.4583333333333333],[123,213,69,-0.4583333333333333],[123,213,70,-0.4583333333333333],[123,213,71,-0.4583333333333333],[123,213,72,-0.4583333333333333],[123,213,73,-0.4583333333333333],[123,213,74,-0.4583333333333333],[123,213,75,-0.4583333333333333],[123,213,76,-0.4583333333333333],[123,213,77,-0.4583333333333333],[123,213,78,-0.4583333333333333],[123,213,79,-0.4583333333333333],[123,214,64,-0.4583333333333333],[123,214,65,-0.4583333333333333],[123,214,66,-0.4583333333333333],[123,214,67,-0.4583333333333333],[123,214,68,-0.4583333333333333],[123,214,69,-0.4583333333333333],[123,214,70,-0.4583333333333333],[123,214,71,-0.4583333333333333],[123,214,72,-0.4583333333333333],[123,214,73,-0.4583333333333333],[123,214,74,-0.4583333333333333],[123,214,75,-0.4583333333333333],[123,214,76,-0.4583333333333333],[123,214,77,-0.4583333333333333],[123,214,78,-0.4583333333333333],[123,214,79,-0.4583333333333333],[123,215,64,-0.4583333333333333],[123,215,65,-0.4583333333333333],[123,215,66,-0.4583333333333333],[123,215,67,-0.4583333333333333],[123,215,68,-0.4583333333333333],[123,215,69,-0.4583333333333333],[123,215,70,-0.4583333333333333],[123,215,71,-0.4583333333333333],[123,215,72,-0.4583333333333333],[123,215,73,-0.4583333333333333],[123,215,74,-0.4583333333333333],[123,215,75,-0.4583333333333333],[123,215,76,-0.4583333333333333],[123,215,77,-0.4583333333333333],[123,215,78,-0.4583333333333333],[123,215,79,-0.4583333333333333],[123,216,64,-0.4583333333333333],[123,216,65,-0.4583333333333333],[123,216,66,-0.4583333333333333],[123,216,67,-0.4583333333333333],[123,216,68,-0.4583333333333333],[123,216,69,-0.4583333333333333],[123,216,70,-0.4583333333333333],[123,216,71,-0.4583333333333333],[123,216,72,-0.4583333333333333],[123,216,73,-0.4583333333333333],[123,216,74,-0.4583333333333333],[123,216,75,-0.4583333333333333],[123,216,76,-0.4583333333333333],[123,216,77,-0.4583333333333333],[123,216,78,-0.4583333333333333],[123,216,79,-0.4583333333333333],[123,217,64,-0.4583333333333333],[123,217,65,-0.4583333333333333],[123,217,66,-0.4583333333333333],[123,217,67,-0.4583333333333333],[123,217,68,-0.4583333333333333],[123,217,69,-0.4583333333333333],[123,217,70,-0.4583333333333333],[123,217,71,-0.4583333333333333],[123,217,72,-0.4583333333333333],[123,217,73,-0.4583333333333333],[123,217,74,-0.4583333333333333],[123,217,75,-0.4583333333333333],[123,217,76,-0.4583333333333333],[123,217,77,-0.4583333333333333],[123,217,78,-0.4583333333333333],[123,217,79,-0.4583333333333333],[123,218,64,-0.4583333333333333],[123,218,65,-0.4583333333333333],[123,218,66,-0.4583333333333333],[123,218,67,-0.4583333333333333],[123,218,68,-0.4583333333333333],[123,218,69,-0.4583333333333333],[123,218,70,-0.4583333333333333],[123,218,71,-0.4583333333333333],[123,218,72,-0.4583333333333333],[123,218,73,-0.4583333333333333],[123,218,74,-0.4583333333333333],[123,218,75,-0.4583333333333333],[123,218,76,-0.4583333333333333],[123,218,77,-0.4583333333333333],[123,218,78,-0.4583333333333333],[123,218,79,-0.4583333333333333],[123,219,64,-0.4583333333333333],[123,219,65,-0.4583333333333333],[123,219,66,-0.4583333333333333],[123,219,67,-0.4583333333333333],[123,219,68,-0.4583333333333333],[123,219,69,-0.4583333333333333],[123,219,70,-0.4583333333333333],[123,219,71,-0.4583333333333333],[123,219,72,-0.4583333333333333],[123,219,73,-0.4583333333333333],[123,219,74,-0.4583333333333333],[123,219,75,-0.4583333333333333],[123,219,76,-0.4583333333333333],[123,219,77,-0.4583333333333333],[123,219,78,-0.4583333333333333],[123,219,79,-0.4583333333333333],[123,220,64,-0.4583333333333333],[123,220,65,-0.4583333333333333],[123,220,66,-0.4583333333333333],[123,220,67,-0.4583333333333333],[123,220,68,-0.4583333333333333],[123,220,69,-0.4583333333333333],[123,220,70,-0.4583333333333333],[123,220,71,-0.4583333333333333],[123,220,72,-0.4583333333333333],[123,220,73,-0.4583333333333333],[123,220,74,-0.4583333333333333],[123,220,75,-0.4583333333333333],[123,220,76,-0.4583333333333333],[123,220,77,-0.4583333333333333],[123,220,78,-0.4583333333333333],[123,220,79,-0.4583333333333333],[123,221,64,-0.4583333333333333],[123,221,65,-0.4583333333333333],[123,221,66,-0.4583333333333333],[123,221,67,-0.4583333333333333],[123,221,68,-0.4583333333333333],[123,221,69,-0.4583333333333333],[123,221,70,-0.4583333333333333],[123,221,71,-0.4583333333333333],[123,221,72,-0.4583333333333333],[123,221,73,-0.4583333333333333],[123,221,74,-0.4583333333333333],[123,221,75,-0.4583333333333333],[123,221,76,-0.4583333333333333],[123,221,77,-0.4583333333333333],[123,221,78,-0.4583333333333333],[123,221,79,-0.4583333333333333],[123,222,64,-0.4583333333333333],[123,222,65,-0.4583333333333333],[123,222,66,-0.4583333333333333],[123,222,67,-0.4583333333333333],[123,222,68,-0.4583333333333333],[123,222,69,-0.4583333333333333],[123,222,70,-0.4583333333333333],[123,222,71,-0.4583333333333333],[123,222,72,-0.4583333333333333],[123,222,73,-0.4583333333333333],[123,222,74,-0.4583333333333333],[123,222,75,-0.4583333333333333],[123,222,76,-0.4583333333333333],[123,222,77,-0.4583333333333333],[123,222,78,-0.4583333333333333],[123,222,79,-0.4583333333333333],[123,223,64,-0.4583333333333333],[123,223,65,-0.4583333333333333],[123,223,66,-0.4583333333333333],[123,223,67,-0.4583333333333333],[123,223,68,-0.4583333333333333],[123,223,69,-0.4583333333333333],[123,223,70,-0.4583333333333333],[123,223,71,-0.4583333333333333],[123,223,72,-0.4583333333333333],[123,223,73,-0.4583333333333333],[123,223,74,-0.4583333333333333],[123,223,75,-0.4583333333333333],[123,223,76,-0.4583333333333333],[123,223,77,-0.4583333333333333],[123,223,78,-0.4583333333333333],[123,223,79,-0.4583333333333333],[123,224,64,-0.4583333333333333],[123,224,65,-0.4583333333333333],[123,224,66,-0.4583333333333333],[123,224,67,-0.4583333333333333],[123,224,68,-0.4583333333333333],[123,224,69,-0.4583333333333333],[123,224,70,-0.4583333333333333],[123,224,71,-0.4583333333333333],[123,224,72,-0.4583333333333333],[123,224,73,-0.4583333333333333],[123,224,74,-0.4583333333333333],[123,224,75,-0.4583333333333333],[123,224,76,-0.4583333333333333],[123,224,77,-0.4583333333333333],[123,224,78,-0.4583333333333333],[123,224,79,-0.4583333333333333],[123,225,64,-0.4583333333333333],[123,225,65,-0.4583333333333333],[123,225,66,-0.4583333333333333],[123,225,67,-0.4583333333333333],[123,225,68,-0.4583333333333333],[123,225,69,-0.4583333333333333],[123,225,70,-0.4583333333333333],[123,225,71,-0.4583333333333333],[123,225,72,-0.4583333333333333],[123,225,73,-0.4583333333333333],[123,225,74,-0.4583333333333333],[123,225,75,-0.4583333333333333],[123,225,76,-0.4583333333333333],[123,225,77,-0.4583333333333333],[123,225,78,-0.4583333333333333],[123,225,79,-0.4583333333333333],[123,226,64,-0.4583333333333333],[123,226,65,-0.4583333333333333],[123,226,66,-0.4583333333333333],[123,226,67,-0.4583333333333333],[123,226,68,-0.4583333333333333],[123,226,69,-0.4583333333333333],[123,226,70,-0.4583333333333333],[123,226,71,-0.4583333333333333],[123,226,72,-0.4583333333333333],[123,226,73,-0.4583333333333333],[123,226,74,-0.4583333333333333],[123,226,75,-0.4583333333333333],[123,226,76,-0.4583333333333333],[123,226,77,-0.4583333333333333],[123,226,78,-0.4583333333333333],[123,226,79,-0.4583333333333333],[123,227,64,-0.4583333333333333],[123,227,65,-0.4583333333333333],[123,227,66,-0.4583333333333333],[123,227,67,-0.4583333333333333],[123,227,68,-0.4583333333333333],[123,227,69,-0.4583333333333333],[123,227,70,-0.4583333333333333],[123,227,71,-0.4583333333333333],[123,227,72,-0.4583333333333333],[123,227,73,-0.4583333333333333],[123,227,74,-0.4583333333333333],[123,227,75,-0.4583333333333333],[123,227,76,-0.4583333333333333],[123,227,77,-0.4583333333333333],[123,227,78,-0.4583333333333333],[123,227,79,-0.4583333333333333],[123,228,64,-0.4583333333333333],[123,228,65,-0.4583333333333333],[123,228,66,-0.4583333333333333],[123,228,67,-0.4583333333333333],[123,228,68,-0.4583333333333333],[123,228,69,-0.4583333333333333],[123,228,70,-0.4583333333333333],[123,228,71,-0.4583333333333333],[123,228,72,-0.4583333333333333],[123,228,73,-0.4583333333333333],[123,228,74,-0.4583333333333333],[123,228,75,-0.4583333333333333],[123,228,76,-0.4583333333333333],[123,228,77,-0.4583333333333333],[123,228,78,-0.4583333333333333],[123,228,79,-0.4583333333333333],[123,229,64,-0.4583333333333333],[123,229,65,-0.4583333333333333],[123,229,66,-0.4583333333333333],[123,229,67,-0.4583333333333333],[123,229,68,-0.4583333333333333],[123,229,69,-0.4583333333333333],[123,229,70,-0.4583333333333333],[123,229,71,-0.4583333333333333],[123,229,72,-0.4583333333333333],[123,229,73,-0.4583333333333333],[123,229,74,-0.4583333333333333],[123,229,75,-0.4583333333333333],[123,229,76,-0.4583333333333333],[123,229,77,-0.4583333333333333],[123,229,78,-0.4583333333333333],[123,229,79,-0.4583333333333333],[123,230,64,-0.4583333333333333],[123,230,65,-0.4583333333333333],[123,230,66,-0.4583333333333333],[123,230,67,-0.4583333333333333],[123,230,68,-0.4583333333333333],[123,230,69,-0.4583333333333333],[123,230,70,-0.4583333333333333],[123,230,71,-0.4583333333333333],[123,230,72,-0.4583333333333333],[123,230,73,-0.4583333333333333],[123,230,74,-0.4583333333333333],[123,230,75,-0.4583333333333333],[123,230,76,-0.4583333333333333],[123,230,77,-0.4583333333333333],[123,230,78,-0.4583333333333333],[123,230,79,-0.4583333333333333],[123,231,64,-0.4583333333333333],[123,231,65,-0.4583333333333333],[123,231,66,-0.4583333333333333],[123,231,67,-0.4583333333333333],[123,231,68,-0.4583333333333333],[123,231,69,-0.4583333333333333],[123,231,70,-0.4583333333333333],[123,231,71,-0.4583333333333333],[123,231,72,-0.4583333333333333],[123,231,73,-0.4583333333333333],[123,231,74,-0.4583333333333333],[123,231,75,-0.4583333333333333],[123,231,76,-0.4583333333333333],[123,231,77,-0.4583333333333333],[123,231,78,-0.4583333333333333],[123,231,79,-0.4583333333333333],[123,232,64,-0.4583333333333333],[123,232,65,-0.4583333333333333],[123,232,66,-0.4583333333333333],[123,232,67,-0.4583333333333333],[123,232,68,-0.4583333333333333],[123,232,69,-0.4583333333333333],[123,232,70,-0.4583333333333333],[123,232,71,-0.4583333333333333],[123,232,72,-0.4583333333333333],[123,232,73,-0.4583333333333333],[123,232,74,-0.4583333333333333],[123,232,75,-0.4583333333333333],[123,232,76,-0.4583333333333333],[123,232,77,-0.4583333333333333],[123,232,78,-0.4583333333333333],[123,232,79,-0.4583333333333333],[123,233,64,-0.4583333333333333],[123,233,65,-0.4583333333333333],[123,233,66,-0.4583333333333333],[123,233,67,-0.4583333333333333],[123,233,68,-0.4583333333333333],[123,233,69,-0.4583333333333333],[123,233,70,-0.4583333333333333],[123,233,71,-0.4583333333333333],[123,233,72,-0.4583333333333333],[123,233,73,-0.4583333333333333],[123,233,74,-0.4583333333333333],[123,233,75,-0.4583333333333333],[123,233,76,-0.4583333333333333],[123,233,77,-0.4583333333333333],[123,233,78,-0.4583333333333333],[123,233,79,-0.4583333333333333],[123,234,64,-0.4583333333333333],[123,234,65,-0.4583333333333333],[123,234,66,-0.4583333333333333],[123,234,67,-0.4583333333333333],[123,234,68,-0.4583333333333333],[123,234,69,-0.4583333333333333],[123,234,70,-0.4583333333333333],[123,234,71,-0.4583333333333333],[123,234,72,-0.4583333333333333],[123,234,73,-0.4583333333333333],[123,234,74,-0.4583333333333333],[123,234,75,-0.4583333333333333],[123,234,76,-0.4583333333333333],[123,234,77,-0.4583333333333333],[123,234,78,-0.4583333333333333],[123,234,79,-0.4583333333333333],[123,235,64,-0.4583333333333333],[123,235,65,-0.4583333333333333],[123,235,66,-0.4583333333333333],[123,235,67,-0.4583333333333333],[123,235,68,-0.4583333333333333],[123,235,69,-0.4583333333333333],[123,235,70,-0.4583333333333333],[123,235,71,-0.4583333333333333],[123,235,72,-0.4583333333333333],[123,235,73,-0.4583333333333333],[123,235,74,-0.4583333333333333],[123,235,75,-0.4583333333333333],[123,235,76,-0.4583333333333333],[123,235,77,-0.4583333333333333],[123,235,78,-0.4583333333333333],[123,235,79,-0.4583333333333333],[123,236,64,-0.4583333333333333],[123,236,65,-0.4583333333333333],[123,236,66,-0.4583333333333333],[123,236,67,-0.4583333333333333],[123,236,68,-0.4583333333333333],[123,236,69,-0.4583333333333333],[123,236,70,-0.4583333333333333],[123,236,71,-0.4583333333333333],[123,236,72,-0.4583333333333333],[123,236,73,-0.4583333333333333],[123,236,74,-0.4583333333333333],[123,236,75,-0.4583333333333333],[123,236,76,-0.4583333333333333],[123,236,77,-0.4583333333333333],[123,236,78,-0.4583333333333333],[123,236,79,-0.4583333333333333],[123,237,64,-0.4583333333333333],[123,237,65,-0.4583333333333333],[123,237,66,-0.4583333333333333],[123,237,67,-0.4583333333333333],[123,237,68,-0.4583333333333333],[123,237,69,-0.4583333333333333],[123,237,70,-0.4583333333333333],[123,237,71,-0.4583333333333333],[123,237,72,-0.4583333333333333],[123,237,73,-0.4583333333333333],[123,237,74,-0.4583333333333333],[123,237,75,-0.4583333333333333],[123,237,76,-0.4583333333333333],[123,237,77,-0.4583333333333333],[123,237,78,-0.4583333333333333],[123,237,79,-0.4583333333333333],[123,238,64,-0.4583333333333333],[123,238,65,-0.4583333333333333],[123,238,66,-0.4583333333333333],[123,238,67,-0.4583333333333333],[123,238,68,-0.4583333333333333],[123,238,69,-0.4583333333333333],[123,238,70,-0.4583333333333333],[123,238,71,-0.4583333333333333],[123,238,72,-0.4583333333333333],[123,238,73,-0.4583333333333333],[123,238,74,-0.4583333333333333],[123,238,75,-0.4583333333333333],[123,238,76,-0.4583333333333333],[123,238,77,-0.4583333333333333],[123,238,78,-0.4583333333333333],[123,238,79,-0.4583333333333333],[123,239,64,-0.4583333333333333],[123,239,65,-0.4583333333333333],[123,239,66,-0.4583333333333333],[123,239,67,-0.4583333333333333],[123,239,68,-0.4583333333333333],[123,239,69,-0.4583333333333333],[123,239,70,-0.4583333333333333],[123,239,71,-0.4583333333333333],[123,239,72,-0.4583333333333333],[123,239,73,-0.4583333333333333],[123,239,74,-0.4583333333333333],[123,239,75,-0.4583333333333333],[123,239,76,-0.4583333333333333],[123,239,77,-0.4583333333333333],[123,239,78,-0.4583333333333333],[123,239,79,-0.4583333333333333],[123,240,64,-0.4583333333333333],[123,240,65,-0.4583333333333333],[123,240,66,-0.4583333333333333],[123,240,67,-0.4583333333333333],[123,240,68,-0.4583333333333333],[123,240,69,-0.4583333333333333],[123,240,70,-0.4583333333333333],[123,240,71,-0.4583333333333333],[123,240,72,-0.4583333333333333],[123,240,73,-0.4583333333333333],[123,240,74,-0.4583333333333333],[123,240,75,-0.4583333333333333],[123,240,76,-0.4583333333333333],[123,240,77,-0.4583333333333333],[123,240,78,-0.4583333333333333],[123,240,79,-0.4583333333333333],[123,241,64,-0.4583333333333333],[123,241,65,-0.4583333333333333],[123,241,66,-0.4583333333333333],[123,241,67,-0.4583333333333333],[123,241,68,-0.4583333333333333],[123,241,69,-0.4583333333333333],[123,241,70,-0.4583333333333333],[123,241,71,-0.4583333333333333],[123,241,72,-0.4583333333333333],[123,241,73,-0.4583333333333333],[123,241,74,-0.4583333333333333],[123,241,75,-0.4583333333333333],[123,241,76,-0.4583333333333333],[123,241,77,-0.4583333333333333],[123,241,78,-0.4583333333333333],[123,241,79,-0.4583333333333333],[123,242,64,-0.4583333333333333],[123,242,65,-0.4583333333333333],[123,242,66,-0.4583333333333333],[123,242,67,-0.4583333333333333],[123,242,68,-0.4583333333333333],[123,242,69,-0.4583333333333333],[123,242,70,-0.4583333333333333],[123,242,71,-0.4583333333333333],[123,242,72,-0.4583333333333333],[123,242,73,-0.4583333333333333],[123,242,74,-0.4583333333333333],[123,242,75,-0.4583333333333333],[123,242,76,-0.4583333333333333],[123,242,77,-0.4583333333333333],[123,242,78,-0.4583333333333333],[123,242,79,-0.4583333333333333],[123,243,64,-0.4583333333333333],[123,243,65,-0.4583333333333333],[123,243,66,-0.4583333333333333],[123,243,67,-0.4583333333333333],[123,243,68,-0.4583333333333333],[123,243,69,-0.4583333333333333],[123,243,70,-0.4583333333333333],[123,243,71,-0.4583333333333333],[123,243,72,-0.4583333333333333],[123,243,73,-0.4583333333333333],[123,243,74,-0.4583333333333333],[123,243,75,-0.4583333333333333],[123,243,76,-0.4583333333333333],[123,243,77,-0.4583333333333333],[123,243,78,-0.4583333333333333],[123,243,79,-0.4583333333333333],[123,244,64,-0.4583333333333333],[123,244,65,-0.4583333333333333],[123,244,66,-0.4583333333333333],[123,244,67,-0.4583333333333333],[123,244,68,-0.4583333333333333],[123,244,69,-0.4583333333333333],[123,244,70,-0.4583333333333333],[123,244,71,-0.4583333333333333],[123,244,72,-0.4583333333333333],[123,244,73,-0.4583333333333333],[123,244,74,-0.4583333333333333],[123,244,75,-0.4583333333333333],[123,244,76,-0.4583333333333333],[123,244,77,-0.4583333333333333],[123,244,78,-0.4583333333333333],[123,244,79,-0.4583333333333333],[123,245,64,-0.4583333333333333],[123,245,65,-0.4583333333333333],[123,245,66,-0.4583333333333333],[123,245,67,-0.4583333333333333],[123,245,68,-0.4583333333333333],[123,245,69,-0.4583333333333333],[123,245,70,-0.4583333333333333],[123,245,71,-0.4583333333333333],[123,245,72,-0.4583333333333333],[123,245,73,-0.4583333333333333],[123,245,74,-0.4583333333333333],[123,245,75,-0.4583333333333333],[123,245,76,-0.4583333333333333],[123,245,77,-0.4583333333333333],[123,245,78,-0.4583333333333333],[123,245,79,-0.4583333333333333],[123,246,64,-0.4583333333333333],[123,246,65,-0.4583333333333333],[123,246,66,-0.4583333333333333],[123,246,67,-0.4583333333333333],[123,246,68,-0.4583333333333333],[123,246,69,-0.4583333333333333],[123,246,70,-0.4583333333333333],[123,246,71,-0.4583333333333333],[123,246,72,-0.4583333333333333],[123,246,73,-0.4583333333333333],[123,246,74,-0.4583333333333333],[123,246,75,-0.4583333333333333],[123,246,76,-0.4583333333333333],[123,246,77,-0.4583333333333333],[123,246,78,-0.4583333333333333],[123,246,79,-0.4583333333333333],[123,247,64,-0.4583333333333333],[123,247,65,-0.4583333333333333],[123,247,66,-0.4583333333333333],[123,247,67,-0.4583333333333333],[123,247,68,-0.4583333333333333],[123,247,69,-0.4583333333333333],[123,247,70,-0.4583333333333333],[123,247,71,-0.4583333333333333],[123,247,72,-0.4583333333333333],[123,247,73,-0.4583333333333333],[123,247,74,-0.4583333333333333],[123,247,75,-0.4583333333333333],[123,247,76,-0.4583333333333333],[123,247,77,-0.4583333333333333],[123,247,78,-0.4583333333333333],[123,247,79,-0.4583333333333333],[123,248,64,-0.4583333333333333],[123,248,65,-0.4583333333333333],[123,248,66,-0.4583333333333333],[123,248,67,-0.4583333333333333],[123,248,68,-0.4583333333333333],[123,248,69,-0.4583333333333333],[123,248,70,-0.4583333333333333],[123,248,71,-0.4583333333333333],[123,248,72,-0.4583333333333333],[123,248,73,-0.4583333333333333],[123,248,74,-0.4583333333333333],[123,248,75,-0.4583333333333333],[123,248,76,-0.4583333333333333],[123,248,77,-0.4583333333333333],[123,248,78,-0.4583333333333333],[123,248,79,-0.4583333333333333],[123,249,64,-0.4583333333333333],[123,249,65,-0.4583333333333333],[123,249,66,-0.4583333333333333],[123,249,67,-0.4583333333333333],[123,249,68,-0.4583333333333333],[123,249,69,-0.4583333333333333],[123,249,70,-0.4583333333333333],[123,249,71,-0.4583333333333333],[123,249,72,-0.4583333333333333],[123,249,73,-0.4583333333333333],[123,249,74,-0.4583333333333333],[123,249,75,-0.4583333333333333],[123,249,76,-0.4583333333333333],[123,249,77,-0.4583333333333333],[123,249,78,-0.4583333333333333],[123,249,79,-0.4583333333333333],[123,250,64,-0.4583333333333333],[123,250,65,-0.4583333333333333],[123,250,66,-0.4583333333333333],[123,250,67,-0.4583333333333333],[123,250,68,-0.4583333333333333],[123,250,69,-0.4583333333333333],[123,250,70,-0.4583333333333333],[123,250,71,-0.4583333333333333],[123,250,72,-0.4583333333333333],[123,250,73,-0.4583333333333333],[123,250,74,-0.4583333333333333],[123,250,75,-0.4583333333333333],[123,250,76,-0.4583333333333333],[123,250,77,-0.4583333333333333],[123,250,78,-0.4583333333333333],[123,250,79,-0.4583333333333333],[123,251,64,-0.4583333333333333],[123,251,65,-0.4583333333333333],[123,251,66,-0.4583333333333333],[123,251,67,-0.4583333333333333],[123,251,68,-0.4583333333333333],[123,251,69,-0.4583333333333333],[123,251,70,-0.4583333333333333],[123,251,71,-0.4583333333333333],[123,251,72,-0.4583333333333333],[123,251,73,-0.4583333333333333],[123,251,74,-0.4583333333333333],[123,251,75,-0.4583333333333333],[123,251,76,-0.4583333333333333],[123,251,77,-0.4583333333333333],[123,251,78,-0.4583333333333333],[123,251,79,-0.4583333333333333],[123,252,64,-0.4583333333333333],[123,252,65,-0.4583333333333333],[123,252,66,-0.4583333333333333],[123,252,67,-0.4583333333333333],[123,252,68,-0.4583333333333333],[123,252,69,-0.4583333333333333],[123,252,70,-0.4583333333333333],[123,252,71,-0.4583333333333333],[123,252,72,-0.4583333333333333],[123,252,73,-0.4583333333333333],[123,252,74,-0.4583333333333333],[123,252,75,-0.4583333333333333],[123,252,76,-0.4583333333333333],[123,252,77,-0.4583333333333333],[123,252,78,-0.4583333333333333],[123,252,79,-0.4583333333333333],[123,253,64,-0.4583333333333333],[123,253,65,-0.4583333333333333],[123,253,66,-0.4583333333333333],[123,253,67,-0.4583333333333333],[123,253,68,-0.4583333333333333],[123,253,69,-0.4583333333333333],[123,253,70,-0.4583333333333333],[123,253,71,-0.4583333333333333],[123,253,72,-0.4583333333333333],[123,253,73,-0.4583333333333333],[123,253,74,-0.4583333333333333],[123,253,75,-0.4583333333333333],[123,253,76,-0.4583333333333333],[123,253,77,-0.4583333333333333],[123,253,78,-0.4583333333333333],[123,253,79,-0.4583333333333333],[123,254,64,-0.37980385643956627],[123,254,65,-0.37975210313589036],[123,254,66,-0.379038826125499],[123,254,67,-0.37825863508131724],[123,254,68,-0.3779584050889026],[123,254,69,-0.37911642223702896],[123,254,70,-0.3809153665743091],[123,254,71,-0.38258476245202483],[123,254,72,-0.3840656515014772],[123,254,73,-0.38513851736779264],[123,254,74,-0.385569064013018],[123,254,75,-0.3865848531718783],[123,254,76,-0.38625517661119263],[123,254,77,-0.38576601345555117],[123,254,78,-0.3846033527124406],[123,254,79,-0.3839023182301732],[123,255,64,-0.2108702978210076],[123,255,65,-0.2108148238123124],[123,255,66,-0.21040318871823646],[123,255,67,-0.20996802613667817],[123,255,68,-0.20977157406876484],[123,255,69,-0.21016212392648992],[123,255,70,-0.2111596655927109],[123,255,71,-0.2123248549321285],[123,255,72,-0.21320599903496554],[123,255,73,-0.21392594285688024],[123,255,74,-0.21413209216851392],[123,255,75,-0.2144322449743644],[123,255,76,-0.21438206006761765],[123,255,77,-0.2143194679701861],[123,255,78,-0.21362898036719313],[123,255,79,-0.21328237143364784],[123,256,64,-0.02499479166666667],[123,256,65,-0.02499479166666667],[123,256,66,-0.02499479166666667],[123,256,67,-0.02499479166666667],[123,256,68,-0.02499479166666667],[123,256,69,-0.02499479166666667],[123,256,70,-0.02499479166666667],[123,256,71,-0.02499479166666667],[123,256,72,-0.02499479166666667],[123,256,73,-0.02499479166666667],[123,256,74,-0.02499479166666667],[123,256,75,-0.02499479166666667],[123,256,76,-0.02499479166666667],[123,256,77,-0.02499479166666667],[123,256,78,-0.02499479166666667],[123,256,79,-0.02499479166666667],[123,257,64,-0.02499479166666667],[123,257,65,-0.02499479166666667],[123,257,66,-0.02499479166666667],[123,257,67,-0.02499479166666667],[123,257,68,-0.02499479166666667],[123,257,69,-0.02499479166666667],[123,257,70,-0.02499479166666667],[123,257,71,-0.02499479166666667],[123,257,72,-0.02499479166666667],[123,257,73,-0.02499479166666667],[123,257,74,-0.02499479166666667],[123,257,75,-0.02499479166666667],[123,257,76,-0.02499479166666667],[123,257,77,-0.02499479166666667],[123,257,78,-0.02499479166666667],[123,257,79,-0.02499479166666667],[123,258,64,-0.02499479166666667],[123,258,65,-0.02499479166666667],[123,258,66,-0.02499479166666667],[123,258,67,-0.02499479166666667],[123,258,68,-0.02499479166666667],[123,258,69,-0.02499479166666667],[123,258,70,-0.02499479166666667],[123,258,71,-0.02499479166666667],[123,258,72,-0.02499479166666667],[123,258,73,-0.02499479166666667],[123,258,74,-0.02499479166666667],[123,258,75,-0.02499479166666667],[123,258,76,-0.02499479166666667],[123,258,77,-0.02499479166666667],[123,258,78,-0.02499479166666667],[123,258,79,-0.02499479166666667],[123,259,64,-0.02499479166666667],[123,259,65,-0.02499479166666667],[123,259,66,-0.02499479166666667],[123,259,67,-0.02499479166666667],[123,259,68,-0.02499479166666667],[123,259,69,-0.02499479166666667],[123,259,70,-0.02499479166666667],[123,259,71,-0.02499479166666667],[123,259,72,-0.02499479166666667],[123,259,73,-0.02499479166666667],[123,259,74,-0.02499479166666667],[123,259,75,-0.02499479166666667],[123,259,76,-0.02499479166666667],[123,259,77,-0.02499479166666667],[123,259,78,-0.02499479166666667],[123,259,79,-0.02499479166666667],[123,260,64,-0.02499479166666667],[123,260,65,-0.02499479166666667],[123,260,66,-0.02499479166666667],[123,260,67,-0.02499479166666667],[123,260,68,-0.02499479166666667],[123,260,69,-0.02499479166666667],[123,260,70,-0.02499479166666667],[123,260,71,-0.02499479166666667],[123,260,72,-0.02499479166666667],[123,260,73,-0.02499479166666667],[123,260,74,-0.02499479166666667],[123,260,75,-0.02499479166666667],[123,260,76,-0.02499479166666667],[123,260,77,-0.02499479166666667],[123,260,78,-0.02499479166666667],[123,260,79,-0.02499479166666667],[123,261,64,-0.02499479166666667],[123,261,65,-0.02499479166666667],[123,261,66,-0.02499479166666667],[123,261,67,-0.02499479166666667],[123,261,68,-0.02499479166666667],[123,261,69,-0.02499479166666667],[123,261,70,-0.02499479166666667],[123,261,71,-0.02499479166666667],[123,261,72,-0.02499479166666667],[123,261,73,-0.02499479166666667],[123,261,74,-0.02499479166666667],[123,261,75,-0.02499479166666667],[123,261,76,-0.02499479166666667],[123,261,77,-0.02499479166666667],[123,261,78,-0.02499479166666667],[123,261,79,-0.02499479166666667],[123,262,64,-0.02499479166666667],[123,262,65,-0.02499479166666667],[123,262,66,-0.02499479166666667],[123,262,67,-0.02499479166666667],[123,262,68,-0.02499479166666667],[123,262,69,-0.02499479166666667],[123,262,70,-0.02499479166666667],[123,262,71,-0.02499479166666667],[123,262,72,-0.02499479166666667],[123,262,73,-0.02499479166666667],[123,262,74,-0.02499479166666667],[123,262,75,-0.02499479166666667],[123,262,76,-0.02499479166666667],[123,262,77,-0.02499479166666667],[123,262,78,-0.02499479166666667],[123,262,79,-0.02499479166666667],[123,263,64,-0.02499479166666667],[123,263,65,-0.02499479166666667],[123,263,66,-0.02499479166666667],[123,263,67,-0.02499479166666667],[123,263,68,-0.02499479166666667],[123,263,69,-0.02499479166666667],[123,263,70,-0.02499479166666667],[123,263,71,-0.02499479166666667],[123,263,72,-0.02499479166666667],[123,263,73,-0.02499479166666667],[123,263,74,-0.02499479166666667],[123,263,75,-0.02499479166666667],[123,263,76,-0.02499479166666667],[123,263,77,-0.02499479166666667],[123,263,78,-0.02499479166666667],[123,263,79,-0.02499479166666667],[123,264,64,-0.02499479166666667],[123,264,65,-0.02499479166666667],[123,264,66,-0.02499479166666667],[123,264,67,-0.02499479166666667],[123,264,68,-0.02499479166666667],[123,264,69,-0.02499479166666667],[123,264,70,-0.02499479166666667],[123,264,71,-0.02499479166666667],[123,264,72,-0.02499479166666667],[123,264,73,-0.02499479166666667],[123,264,74,-0.02499479166666667],[123,264,75,-0.02499479166666667],[123,264,76,-0.02499479166666667],[123,264,77,-0.02499479166666667],[123,264,78,-0.02499479166666667],[123,264,79,-0.02499479166666667],[123,265,64,-0.02499479166666667],[123,265,65,-0.02499479166666667],[123,265,66,-0.02499479166666667],[123,265,67,-0.02499479166666667],[123,265,68,-0.02499479166666667],[123,265,69,-0.02499479166666667],[123,265,70,-0.02499479166666667],[123,265,71,-0.02499479166666667],[123,265,72,-0.02499479166666667],[123,265,73,-0.02499479166666667],[123,265,74,-0.02499479166666667],[123,265,75,-0.02499479166666667],[123,265,76,-0.02499479166666667],[123,265,77,-0.02499479166666667],[123,265,78,-0.02499479166666667],[123,265,79,-0.02499479166666667],[123,266,64,-0.02499479166666667],[123,266,65,-0.02499479166666667],[123,266,66,-0.02499479166666667],[123,266,67,-0.02499479166666667],[123,266,68,-0.02499479166666667],[123,266,69,-0.02499479166666667],[123,266,70,-0.02499479166666667],[123,266,71,-0.02499479166666667],[123,266,72,-0.02499479166666667],[123,266,73,-0.02499479166666667],[123,266,74,-0.02499479166666667],[123,266,75,-0.02499479166666667],[123,266,76,-0.02499479166666667],[123,266,77,-0.02499479166666667],[123,266,78,-0.02499479166666667],[123,266,79,-0.02499479166666667],[123,267,64,-0.02499479166666667],[123,267,65,-0.02499479166666667],[123,267,66,-0.02499479166666667],[123,267,67,-0.02499479166666667],[123,267,68,-0.02499479166666667],[123,267,69,-0.02499479166666667],[123,267,70,-0.02499479166666667],[123,267,71,-0.02499479166666667],[123,267,72,-0.02499479166666667],[123,267,73,-0.02499479166666667],[123,267,74,-0.02499479166666667],[123,267,75,-0.02499479166666667],[123,267,76,-0.02499479166666667],[123,267,77,-0.02499479166666667],[123,267,78,-0.02499479166666667],[123,267,79,-0.02499479166666667],[123,268,64,-0.02499479166666667],[123,268,65,-0.02499479166666667],[123,268,66,-0.02499479166666667],[123,268,67,-0.02499479166666667],[123,268,68,-0.02499479166666667],[123,268,69,-0.02499479166666667],[123,268,70,-0.02499479166666667],[123,268,71,-0.02499479166666667],[123,268,72,-0.02499479166666667],[123,268,73,-0.02499479166666667],[123,268,74,-0.02499479166666667],[123,268,75,-0.02499479166666667],[123,268,76,-0.02499479166666667],[123,268,77,-0.02499479166666667],[123,268,78,-0.02499479166666667],[123,268,79,-0.02499479166666667],[123,269,64,-0.02499479166666667],[123,269,65,-0.02499479166666667],[123,269,66,-0.02499479166666667],[123,269,67,-0.02499479166666667],[123,269,68,-0.02499479166666667],[123,269,69,-0.02499479166666667],[123,269,70,-0.02499479166666667],[123,269,71,-0.02499479166666667],[123,269,72,-0.02499479166666667],[123,269,73,-0.02499479166666667],[123,269,74,-0.02499479166666667],[123,269,75,-0.02499479166666667],[123,269,76,-0.02499479166666667],[123,269,77,-0.02499479166666667],[123,269,78,-0.02499479166666667],[123,269,79,-0.02499479166666667],[123,270,64,-0.02499479166666667],[123,270,65,-0.02499479166666667],[123,270,66,-0.02499479166666667],[123,270,67,-0.02499479166666667],[123,270,68,-0.02499479166666667],[123,270,69,-0.02499479166666667],[123,270,70,-0.02499479166666667],[123,270,71,-0.02499479166666667],[123,270,72,-0.02499479166666667],[123,270,73,-0.02499479166666667],[123,270,74,-0.02499479166666667],[123,270,75,-0.02499479166666667],[123,270,76,-0.02499479166666667],[123,270,77,-0.02499479166666667],[123,270,78,-0.02499479166666667],[123,270,79,-0.02499479166666667],[123,271,64,-0.02499479166666667],[123,271,65,-0.02499479166666667],[123,271,66,-0.02499479166666667],[123,271,67,-0.02499479166666667],[123,271,68,-0.02499479166666667],[123,271,69,-0.02499479166666667],[123,271,70,-0.02499479166666667],[123,271,71,-0.02499479166666667],[123,271,72,-0.02499479166666667],[123,271,73,-0.02499479166666667],[123,271,74,-0.02499479166666667],[123,271,75,-0.02499479166666667],[123,271,76,-0.02499479166666667],[123,271,77,-0.02499479166666667],[123,271,78,-0.02499479166666667],[123,271,79,-0.02499479166666667],[123,272,64,-0.02499479166666667],[123,272,65,-0.02499479166666667],[123,272,66,-0.02499479166666667],[123,272,67,-0.02499479166666667],[123,272,68,-0.02499479166666667],[123,272,69,-0.02499479166666667],[123,272,70,-0.02499479166666667],[123,272,71,-0.02499479166666667],[123,272,72,-0.02499479166666667],[123,272,73,-0.02499479166666667],[123,272,74,-0.02499479166666667],[123,272,75,-0.02499479166666667],[123,272,76,-0.02499479166666667],[123,272,77,-0.02499479166666667],[123,272,78,-0.02499479166666667],[123,272,79,-0.02499479166666667],[123,273,64,-0.02499479166666667],[123,273,65,-0.02499479166666667],[123,273,66,-0.02499479166666667],[123,273,67,-0.02499479166666667],[123,273,68,-0.02499479166666667],[123,273,69,-0.02499479166666667],[123,273,70,-0.02499479166666667],[123,273,71,-0.02499479166666667],[123,273,72,-0.02499479166666667],[123,273,73,-0.02499479166666667],[123,273,74,-0.02499479166666667],[123,273,75,-0.02499479166666667],[123,273,76,-0.02499479166666667],[123,273,77,-0.02499479166666667],[123,273,78,-0.02499479166666667],[123,273,79,-0.02499479166666667],[123,274,64,-0.02499479166666667],[123,274,65,-0.02499479166666667],[123,274,66,-0.02499479166666667],[123,274,67,-0.02499479166666667],[123,274,68,-0.02499479166666667],[123,274,69,-0.02499479166666667],[123,274,70,-0.02499479166666667],[123,274,71,-0.02499479166666667],[123,274,72,-0.02499479166666667],[123,274,73,-0.02499479166666667],[123,274,74,-0.02499479166666667],[123,274,75,-0.02499479166666667],[123,274,76,-0.02499479166666667],[123,274,77,-0.02499479166666667],[123,274,78,-0.02499479166666667],[123,274,79,-0.02499479166666667],[123,275,64,-0.02499479166666667],[123,275,65,-0.02499479166666667],[123,275,66,-0.02499479166666667],[123,275,67,-0.02499479166666667],[123,275,68,-0.02499479166666667],[123,275,69,-0.02499479166666667],[123,275,70,-0.02499479166666667],[123,275,71,-0.02499479166666667],[123,275,72,-0.02499479166666667],[123,275,73,-0.02499479166666667],[123,275,74,-0.02499479166666667],[123,275,75,-0.02499479166666667],[123,275,76,-0.02499479166666667],[123,275,77,-0.02499479166666667],[123,275,78,-0.02499479166666667],[123,275,79,-0.02499479166666667],[123,276,64,-0.02499479166666667],[123,276,65,-0.02499479166666667],[123,276,66,-0.02499479166666667],[123,276,67,-0.02499479166666667],[123,276,68,-0.02499479166666667],[123,276,69,-0.02499479166666667],[123,276,70,-0.02499479166666667],[123,276,71,-0.02499479166666667],[123,276,72,-0.02499479166666667],[123,276,73,-0.02499479166666667],[123,276,74,-0.02499479166666667],[123,276,75,-0.02499479166666667],[123,276,76,-0.02499479166666667],[123,276,77,-0.02499479166666667],[123,276,78,-0.02499479166666667],[123,276,79,-0.02499479166666667],[123,277,64,-0.02499479166666667],[123,277,65,-0.02499479166666667],[123,277,66,-0.02499479166666667],[123,277,67,-0.02499479166666667],[123,277,68,-0.02499479166666667],[123,277,69,-0.02499479166666667],[123,277,70,-0.02499479166666667],[123,277,71,-0.02499479166666667],[123,277,72,-0.02499479166666667],[123,277,73,-0.02499479166666667],[123,277,74,-0.02499479166666667],[123,277,75,-0.02499479166666667],[123,277,76,-0.02499479166666667],[123,277,77,-0.02499479166666667],[123,277,78,-0.02499479166666667],[123,277,79,-0.02499479166666667],[123,278,64,-0.02499479166666667],[123,278,65,-0.02499479166666667],[123,278,66,-0.02499479166666667],[123,278,67,-0.02499479166666667],[123,278,68,-0.02499479166666667],[123,278,69,-0.02499479166666667],[123,278,70,-0.02499479166666667],[123,278,71,-0.02499479166666667],[123,278,72,-0.02499479166666667],[123,278,73,-0.02499479166666667],[123,278,74,-0.02499479166666667],[123,278,75,-0.02499479166666667],[123,278,76,-0.02499479166666667],[123,278,77,-0.02499479166666667],[123,278,78,-0.02499479166666667],[123,278,79,-0.02499479166666667],[123,279,64,-0.02499479166666667],[123,279,65,-0.02499479166666667],[123,279,66,-0.02499479166666667],[123,279,67,-0.02499479166666667],[123,279,68,-0.02499479166666667],[123,279,69,-0.02499479166666667],[123,279,70,-0.02499479166666667],[123,279,71,-0.02499479166666667],[123,279,72,-0.02499479166666667],[123,279,73,-0.02499479166666667],[123,279,74,-0.02499479166666667],[123,279,75,-0.02499479166666667],[123,279,76,-0.02499479166666667],[123,279,77,-0.02499479166666667],[123,279,78,-0.02499479166666667],[123,279,79,-0.02499479166666667],[123,280,64,-0.02499479166666667],[123,280,65,-0.02499479166666667],[123,280,66,-0.02499479166666667],[123,280,67,-0.02499479166666667],[123,280,68,-0.02499479166666667],[123,280,69,-0.02499479166666667],[123,280,70,-0.02499479166666667],[123,280,71,-0.02499479166666667],[123,280,72,-0.02499479166666667],[123,280,73,-0.02499479166666667],[123,280,74,-0.02499479166666667],[123,280,75,-0.02499479166666667],[123,280,76,-0.02499479166666667],[123,280,77,-0.02499479166666667],[123,280,78,-0.02499479166666667],[123,280,79,-0.02499479166666667],[123,281,64,-0.02499479166666667],[123,281,65,-0.02499479166666667],[123,281,66,-0.02499479166666667],[123,281,67,-0.02499479166666667],[123,281,68,-0.02499479166666667],[123,281,69,-0.02499479166666667],[123,281,70,-0.02499479166666667],[123,281,71,-0.02499479166666667],[123,281,72,-0.02499479166666667],[123,281,73,-0.02499479166666667],[123,281,74,-0.02499479166666667],[123,281,75,-0.02499479166666667],[123,281,76,-0.02499479166666667],[123,281,77,-0.02499479166666667],[123,281,78,-0.02499479166666667],[123,281,79,-0.02499479166666667],[123,282,64,-0.02499479166666667],[123,282,65,-0.02499479166666667],[123,282,66,-0.02499479166666667],[123,282,67,-0.02499479166666667],[123,282,68,-0.02499479166666667],[123,282,69,-0.02499479166666667],[123,282,70,-0.02499479166666667],[123,282,71,-0.02499479166666667],[123,282,72,-0.02499479166666667],[123,282,73,-0.02499479166666667],[123,282,74,-0.02499479166666667],[123,282,75,-0.02499479166666667],[123,282,76,-0.02499479166666667],[123,282,77,-0.02499479166666667],[123,282,78,-0.02499479166666667],[123,282,79,-0.02499479166666667],[123,283,64,-0.02499479166666667],[123,283,65,-0.02499479166666667],[123,283,66,-0.02499479166666667],[123,283,67,-0.02499479166666667],[123,283,68,-0.02499479166666667],[123,283,69,-0.02499479166666667],[123,283,70,-0.02499479166666667],[123,283,71,-0.02499479166666667],[123,283,72,-0.02499479166666667],[123,283,73,-0.02499479166666667],[123,283,74,-0.02499479166666667],[123,283,75,-0.02499479166666667],[123,283,76,-0.02499479166666667],[123,283,77,-0.02499479166666667],[123,283,78,-0.02499479166666667],[123,283,79,-0.02499479166666667],[123,284,64,-0.02499479166666667],[123,284,65,-0.02499479166666667],[123,284,66,-0.02499479166666667],[123,284,67,-0.02499479166666667],[123,284,68,-0.02499479166666667],[123,284,69,-0.02499479166666667],[123,284,70,-0.02499479166666667],[123,284,71,-0.02499479166666667],[123,284,72,-0.02499479166666667],[123,284,73,-0.02499479166666667],[123,284,74,-0.02499479166666667],[123,284,75,-0.02499479166666667],[123,284,76,-0.02499479166666667],[123,284,77,-0.02499479166666667],[123,284,78,-0.02499479166666667],[123,284,79,-0.02499479166666667],[123,285,64,-0.02499479166666667],[123,285,65,-0.02499479166666667],[123,285,66,-0.02499479166666667],[123,285,67,-0.02499479166666667],[123,285,68,-0.02499479166666667],[123,285,69,-0.02499479166666667],[123,285,70,-0.02499479166666667],[123,285,71,-0.02499479166666667],[123,285,72,-0.02499479166666667],[123,285,73,-0.02499479166666667],[123,285,74,-0.02499479166666667],[123,285,75,-0.02499479166666667],[123,285,76,-0.02499479166666667],[123,285,77,-0.02499479166666667],[123,285,78,-0.02499479166666667],[123,285,79,-0.02499479166666667],[123,286,64,-0.02499479166666667],[123,286,65,-0.02499479166666667],[123,286,66,-0.02499479166666667],[123,286,67,-0.02499479166666667],[123,286,68,-0.02499479166666667],[123,286,69,-0.02499479166666667],[123,286,70,-0.02499479166666667],[123,286,71,-0.02499479166666667],[123,286,72,-0.02499479166666667],[123,286,73,-0.02499479166666667],[123,286,74,-0.02499479166666667],[123,286,75,-0.02499479166666667],[123,286,76,-0.02499479166666667],[123,286,77,-0.02499479166666667],[123,286,78,-0.02499479166666667],[123,286,79,-0.02499479166666667],[123,287,64,-0.02499479166666667],[123,287,65,-0.02499479166666667],[123,287,66,-0.02499479166666667],[123,287,67,-0.02499479166666667],[123,287,68,-0.02499479166666667],[123,287,69,-0.02499479166666667],[123,287,70,-0.02499479166666667],[123,287,71,-0.02499479166666667],[123,287,72,-0.02499479166666667],[123,287,73,-0.02499479166666667],[123,287,74,-0.02499479166666667],[123,287,75,-0.02499479166666667],[123,287,76,-0.02499479166666667],[123,287,77,-0.02499479166666667],[123,287,78,-0.02499479166666667],[123,287,79,-0.02499479166666667],[123,288,64,-0.02499479166666667],[123,288,65,-0.02499479166666667],[123,288,66,-0.02499479166666667],[123,288,67,-0.02499479166666667],[123,288,68,-0.02499479166666667],[123,288,69,-0.02499479166666667],[123,288,70,-0.02499479166666667],[123,288,71,-0.02499479166666667],[123,288,72,-0.02499479166666667],[123,288,73,-0.02499479166666667],[123,288,74,-0.02499479166666667],[123,288,75,-0.02499479166666667],[123,288,76,-0.02499479166666667],[123,288,77,-0.02499479166666667],[123,288,78,-0.02499479166666667],[123,288,79,-0.02499479166666667],[123,289,64,-0.02499479166666667],[123,289,65,-0.02499479166666667],[123,289,66,-0.02499479166666667],[123,289,67,-0.02499479166666667],[123,289,68,-0.02499479166666667],[123,289,69,-0.02499479166666667],[123,289,70,-0.02499479166666667],[123,289,71,-0.02499479166666667],[123,289,72,-0.02499479166666667],[123,289,73,-0.02499479166666667],[123,289,74,-0.02499479166666667],[123,289,75,-0.02499479166666667],[123,289,76,-0.02499479166666667],[123,289,77,-0.02499479166666667],[123,289,78,-0.02499479166666667],[123,289,79,-0.02499479166666667],[123,290,64,-0.02499479166666667],[123,290,65,-0.02499479166666667],[123,290,66,-0.02499479166666667],[123,290,67,-0.02499479166666667],[123,290,68,-0.02499479166666667],[123,290,69,-0.02499479166666667],[123,290,70,-0.02499479166666667],[123,290,71,-0.02499479166666667],[123,290,72,-0.02499479166666667],[123,290,73,-0.02499479166666667],[123,290,74,-0.02499479166666667],[123,290,75,-0.02499479166666667],[123,290,76,-0.02499479166666667],[123,290,77,-0.02499479166666667],[123,290,78,-0.02499479166666667],[123,290,79,-0.02499479166666667],[123,291,64,-0.02499479166666667],[123,291,65,-0.02499479166666667],[123,291,66,-0.02499479166666667],[123,291,67,-0.02499479166666667],[123,291,68,-0.02499479166666667],[123,291,69,-0.02499479166666667],[123,291,70,-0.02499479166666667],[123,291,71,-0.02499479166666667],[123,291,72,-0.02499479166666667],[123,291,73,-0.02499479166666667],[123,291,74,-0.02499479166666667],[123,291,75,-0.02499479166666667],[123,291,76,-0.02499479166666667],[123,291,77,-0.02499479166666667],[123,291,78,-0.02499479166666667],[123,291,79,-0.02499479166666667],[123,292,64,-0.02499479166666667],[123,292,65,-0.02499479166666667],[123,292,66,-0.02499479166666667],[123,292,67,-0.02499479166666667],[123,292,68,-0.02499479166666667],[123,292,69,-0.02499479166666667],[123,292,70,-0.02499479166666667],[123,292,71,-0.02499479166666667],[123,292,72,-0.02499479166666667],[123,292,73,-0.02499479166666667],[123,292,74,-0.02499479166666667],[123,292,75,-0.02499479166666667],[123,292,76,-0.02499479166666667],[123,292,77,-0.02499479166666667],[123,292,78,-0.02499479166666667],[123,292,79,-0.02499479166666667],[123,293,64,-0.02499479166666667],[123,293,65,-0.02499479166666667],[123,293,66,-0.02499479166666667],[123,293,67,-0.02499479166666667],[123,293,68,-0.02499479166666667],[123,293,69,-0.02499479166666667],[123,293,70,-0.02499479166666667],[123,293,71,-0.02499479166666667],[123,293,72,-0.02499479166666667],[123,293,73,-0.02499479166666667],[123,293,74,-0.02499479166666667],[123,293,75,-0.02499479166666667],[123,293,76,-0.02499479166666667],[123,293,77,-0.02499479166666667],[123,293,78,-0.02499479166666667],[123,293,79,-0.02499479166666667],[123,294,64,-0.02499479166666667],[123,294,65,-0.02499479166666667],[123,294,66,-0.02499479166666667],[123,294,67,-0.02499479166666667],[123,294,68,-0.02499479166666667],[123,294,69,-0.02499479166666667],[123,294,70,-0.02499479166666667],[123,294,71,-0.02499479166666667],[123,294,72,-0.02499479166666667],[123,294,73,-0.02499479166666667],[123,294,74,-0.02499479166666667],[123,294,75,-0.02499479166666667],[123,294,76,-0.02499479166666667],[123,294,77,-0.02499479166666667],[123,294,78,-0.02499479166666667],[123,294,79,-0.02499479166666667],[123,295,64,-0.02499479166666667],[123,295,65,-0.02499479166666667],[123,295,66,-0.02499479166666667],[123,295,67,-0.02499479166666667],[123,295,68,-0.02499479166666667],[123,295,69,-0.02499479166666667],[123,295,70,-0.02499479166666667],[123,295,71,-0.02499479166666667],[123,295,72,-0.02499479166666667],[123,295,73,-0.02499479166666667],[123,295,74,-0.02499479166666667],[123,295,75,-0.02499479166666667],[123,295,76,-0.02499479166666667],[123,295,77,-0.02499479166666667],[123,295,78,-0.02499479166666667],[123,295,79,-0.02499479166666667],[123,296,64,-0.02499479166666667],[123,296,65,-0.02499479166666667],[123,296,66,-0.02499479166666667],[123,296,67,-0.02499479166666667],[123,296,68,-0.02499479166666667],[123,296,69,-0.02499479166666667],[123,296,70,-0.02499479166666667],[123,296,71,-0.02499479166666667],[123,296,72,-0.02499479166666667],[123,296,73,-0.02499479166666667],[123,296,74,-0.02499479166666667],[123,296,75,-0.02499479166666667],[123,296,76,-0.02499479166666667],[123,296,77,-0.02499479166666667],[123,296,78,-0.02499479166666667],[123,296,79,-0.02499479166666667],[123,297,64,-0.02499479166666667],[123,297,65,-0.02499479166666667],[123,297,66,-0.02499479166666667],[123,297,67,-0.02499479166666667],[123,297,68,-0.02499479166666667],[123,297,69,-0.02499479166666667],[123,297,70,-0.02499479166666667],[123,297,71,-0.02499479166666667],[123,297,72,-0.02499479166666667],[123,297,73,-0.02499479166666667],[123,297,74,-0.02499479166666667],[123,297,75,-0.02499479166666667],[123,297,76,-0.02499479166666667],[123,297,77,-0.02499479166666667],[123,297,78,-0.02499479166666667],[123,297,79,-0.02499479166666667],[123,298,64,-0.02499479166666667],[123,298,65,-0.02499479166666667],[123,298,66,-0.02499479166666667],[123,298,67,-0.02499479166666667],[123,298,68,-0.02499479166666667],[123,298,69,-0.02499479166666667],[123,298,70,-0.02499479166666667],[123,298,71,-0.02499479166666667],[123,298,72,-0.02499479166666667],[123,298,73,-0.02499479166666667],[123,298,74,-0.02499479166666667],[123,298,75,-0.02499479166666667],[123,298,76,-0.02499479166666667],[123,298,77,-0.02499479166666667],[123,298,78,-0.02499479166666667],[123,298,79,-0.02499479166666667],[123,299,64,-0.02499479166666667],[123,299,65,-0.02499479166666667],[123,299,66,-0.02499479166666667],[123,299,67,-0.02499479166666667],[123,299,68,-0.02499479166666667],[123,299,69,-0.02499479166666667],[123,299,70,-0.02499479166666667],[123,299,71,-0.02499479166666667],[123,299,72,-0.02499479166666667],[123,299,73,-0.02499479166666667],[123,299,74,-0.02499479166666667],[123,299,75,-0.02499479166666667],[123,299,76,-0.02499479166666667],[123,299,77,-0.02499479166666667],[123,299,78,-0.02499479166666667],[123,299,79,-0.02499479166666667],[123,300,64,-0.02499479166666667],[123,300,65,-0.02499479166666667],[123,300,66,-0.02499479166666667],[123,300,67,-0.02499479166666667],[123,300,68,-0.02499479166666667],[123,300,69,-0.02499479166666667],[123,300,70,-0.02499479166666667],[123,300,71,-0.02499479166666667],[123,300,72,-0.02499479166666667],[123,300,73,-0.02499479166666667],[123,300,74,-0.02499479166666667],[123,300,75,-0.02499479166666667],[123,300,76,-0.02499479166666667],[123,300,77,-0.02499479166666667],[123,300,78,-0.02499479166666667],[123,300,79,-0.02499479166666667],[123,301,64,-0.02499479166666667],[123,301,65,-0.02499479166666667],[123,301,66,-0.02499479166666667],[123,301,67,-0.02499479166666667],[123,301,68,-0.02499479166666667],[123,301,69,-0.02499479166666667],[123,301,70,-0.02499479166666667],[123,301,71,-0.02499479166666667],[123,301,72,-0.02499479166666667],[123,301,73,-0.02499479166666667],[123,301,74,-0.02499479166666667],[123,301,75,-0.02499479166666667],[123,301,76,-0.02499479166666667],[123,301,77,-0.02499479166666667],[123,301,78,-0.02499479166666667],[123,301,79,-0.02499479166666667],[123,302,64,-0.02499479166666667],[123,302,65,-0.02499479166666667],[123,302,66,-0.02499479166666667],[123,302,67,-0.02499479166666667],[123,302,68,-0.02499479166666667],[123,302,69,-0.02499479166666667],[123,302,70,-0.02499479166666667],[123,302,71,-0.02499479166666667],[123,302,72,-0.02499479166666667],[123,302,73,-0.02499479166666667],[123,302,74,-0.02499479166666667],[123,302,75,-0.02499479166666667],[123,302,76,-0.02499479166666667],[123,302,77,-0.02499479166666667],[123,302,78,-0.02499479166666667],[123,302,79,-0.02499479166666667],[123,303,64,-0.02499479166666667],[123,303,65,-0.02499479166666667],[123,303,66,-0.02499479166666667],[123,303,67,-0.02499479166666667],[123,303,68,-0.02499479166666667],[123,303,69,-0.02499479166666667],[123,303,70,-0.02499479166666667],[123,303,71,-0.02499479166666667],[123,303,72,-0.02499479166666667],[123,303,73,-0.02499479166666667],[123,303,74,-0.02499479166666667],[123,303,75,-0.02499479166666667],[123,303,76,-0.02499479166666667],[123,303,77,-0.02499479166666667],[123,303,78,-0.02499479166666667],[123,303,79,-0.02499479166666667],[123,304,64,-0.02499479166666667],[123,304,65,-0.02499479166666667],[123,304,66,-0.02499479166666667],[123,304,67,-0.02499479166666667],[123,304,68,-0.02499479166666667],[123,304,69,-0.02499479166666667],[123,304,70,-0.02499479166666667],[123,304,71,-0.02499479166666667],[123,304,72,-0.02499479166666667],[123,304,73,-0.02499479166666667],[123,304,74,-0.02499479166666667],[123,304,75,-0.02499479166666667],[123,304,76,-0.02499479166666667],[123,304,77,-0.02499479166666667],[123,304,78,-0.02499479166666667],[123,304,79,-0.02499479166666667],[123,305,64,-0.02499479166666667],[123,305,65,-0.02499479166666667],[123,305,66,-0.02499479166666667],[123,305,67,-0.02499479166666667],[123,305,68,-0.02499479166666667],[123,305,69,-0.02499479166666667],[123,305,70,-0.02499479166666667],[123,305,71,-0.02499479166666667],[123,305,72,-0.02499479166666667],[123,305,73,-0.02499479166666667],[123,305,74,-0.02499479166666667],[123,305,75,-0.02499479166666667],[123,305,76,-0.02499479166666667],[123,305,77,-0.02499479166666667],[123,305,78,-0.02499479166666667],[123,305,79,-0.02499479166666667],[123,306,64,-0.02499479166666667],[123,306,65,-0.02499479166666667],[123,306,66,-0.02499479166666667],[123,306,67,-0.02499479166666667],[123,306,68,-0.02499479166666667],[123,306,69,-0.02499479166666667],[123,306,70,-0.02499479166666667],[123,306,71,-0.02499479166666667],[123,306,72,-0.02499479166666667],[123,306,73,-0.02499479166666667],[123,306,74,-0.02499479166666667],[123,306,75,-0.02499479166666667],[123,306,76,-0.02499479166666667],[123,306,77,-0.02499479166666667],[123,306,78,-0.02499479166666667],[123,306,79,-0.02499479166666667],[123,307,64,-0.02499479166666667],[123,307,65,-0.02499479166666667],[123,307,66,-0.02499479166666667],[123,307,67,-0.02499479166666667],[123,307,68,-0.02499479166666667],[123,307,69,-0.02499479166666667],[123,307,70,-0.02499479166666667],[123,307,71,-0.02499479166666667],[123,307,72,-0.02499479166666667],[123,307,73,-0.02499479166666667],[123,307,74,-0.02499479166666667],[123,307,75,-0.02499479166666667],[123,307,76,-0.02499479166666667],[123,307,77,-0.02499479166666667],[123,307,78,-0.02499479166666667],[123,307,79,-0.02499479166666667],[123,308,64,-0.02499479166666667],[123,308,65,-0.02499479166666667],[123,308,66,-0.02499479166666667],[123,308,67,-0.02499479166666667],[123,308,68,-0.02499479166666667],[123,308,69,-0.02499479166666667],[123,308,70,-0.02499479166666667],[123,308,71,-0.02499479166666667],[123,308,72,-0.02499479166666667],[123,308,73,-0.02499479166666667],[123,308,74,-0.02499479166666667],[123,308,75,-0.02499479166666667],[123,308,76,-0.02499479166666667],[123,308,77,-0.02499479166666667],[123,308,78,-0.02499479166666667],[123,308,79,-0.02499479166666667],[123,309,64,-0.02499479166666667],[123,309,65,-0.02499479166666667],[123,309,66,-0.02499479166666667],[123,309,67,-0.02499479166666667],[123,309,68,-0.02499479166666667],[123,309,69,-0.02499479166666667],[123,309,70,-0.02499479166666667],[123,309,71,-0.02499479166666667],[123,309,72,-0.02499479166666667],[123,309,73,-0.02499479166666667],[123,309,74,-0.02499479166666667],[123,309,75,-0.02499479166666667],[123,309,76,-0.02499479166666667],[123,309,77,-0.02499479166666667],[123,309,78,-0.02499479166666667],[123,309,79,-0.02499479166666667],[123,310,64,-0.02499479166666667],[123,310,65,-0.02499479166666667],[123,310,66,-0.02499479166666667],[123,310,67,-0.02499479166666667],[123,310,68,-0.02499479166666667],[123,310,69,-0.02499479166666667],[123,310,70,-0.02499479166666667],[123,310,71,-0.02499479166666667],[123,310,72,-0.02499479166666667],[123,310,73,-0.02499479166666667],[123,310,74,-0.02499479166666667],[123,310,75,-0.02499479166666667],[123,310,76,-0.02499479166666667],[123,310,77,-0.02499479166666667],[123,310,78,-0.02499479166666667],[123,310,79,-0.02499479166666667],[123,311,64,-0.02499479166666667],[123,311,65,-0.02499479166666667],[123,311,66,-0.02499479166666667],[123,311,67,-0.02499479166666667],[123,311,68,-0.02499479166666667],[123,311,69,-0.02499479166666667],[123,311,70,-0.02499479166666667],[123,311,71,-0.02499479166666667],[123,311,72,-0.02499479166666667],[123,311,73,-0.02499479166666667],[123,311,74,-0.02499479166666667],[123,311,75,-0.02499479166666667],[123,311,76,-0.02499479166666667],[123,311,77,-0.02499479166666667],[123,311,78,-0.02499479166666667],[123,311,79,-0.02499479166666667],[123,312,64,-0.02499479166666667],[123,312,65,-0.02499479166666667],[123,312,66,-0.02499479166666667],[123,312,67,-0.02499479166666667],[123,312,68,-0.02499479166666667],[123,312,69,-0.02499479166666667],[123,312,70,-0.02499479166666667],[123,312,71,-0.02499479166666667],[123,312,72,-0.02499479166666667],[123,312,73,-0.02499479166666667],[123,312,74,-0.02499479166666667],[123,312,75,-0.02499479166666667],[123,312,76,-0.02499479166666667],[123,312,77,-0.02499479166666667],[123,312,78,-0.02499479166666667],[123,312,79,-0.02499479166666667],[123,313,64,-0.02499479166666667],[123,313,65,-0.02499479166666667],[123,313,66,-0.02499479166666667],[123,313,67,-0.02499479166666667],[123,313,68,-0.02499479166666667],[123,313,69,-0.02499479166666667],[123,313,70,-0.02499479166666667],[123,313,71,-0.02499479166666667],[123,313,72,-0.02499479166666667],[123,313,73,-0.02499479166666667],[123,313,74,-0.02499479166666667],[123,313,75,-0.02499479166666667],[123,313,76,-0.02499479166666667],[123,313,77,-0.02499479166666667],[123,313,78,-0.02499479166666667],[123,313,79,-0.02499479166666667],[123,314,64,-0.02499479166666667],[123,314,65,-0.02499479166666667],[123,314,66,-0.02499479166666667],[123,314,67,-0.02499479166666667],[123,314,68,-0.02499479166666667],[123,314,69,-0.02499479166666667],[123,314,70,-0.02499479166666667],[123,314,71,-0.02499479166666667],[123,314,72,-0.02499479166666667],[123,314,73,-0.02499479166666667],[123,314,74,-0.02499479166666667],[123,314,75,-0.02499479166666667],[123,314,76,-0.02499479166666667],[123,314,77,-0.02499479166666667],[123,314,78,-0.02499479166666667],[123,314,79,-0.02499479166666667],[123,315,64,-0.02499479166666667],[123,315,65,-0.02499479166666667],[123,315,66,-0.02499479166666667],[123,315,67,-0.02499479166666667],[123,315,68,-0.02499479166666667],[123,315,69,-0.02499479166666667],[123,315,70,-0.02499479166666667],[123,315,71,-0.02499479166666667],[123,315,72,-0.02499479166666667],[123,315,73,-0.02499479166666667],[123,315,74,-0.02499479166666667],[123,315,75,-0.02499479166666667],[123,315,76,-0.02499479166666667],[123,315,77,-0.02499479166666667],[123,315,78,-0.02499479166666667],[123,315,79,-0.02499479166666667],[123,316,64,-0.02499479166666667],[123,316,65,-0.02499479166666667],[123,316,66,-0.02499479166666667],[123,316,67,-0.02499479166666667],[123,316,68,-0.02499479166666667],[123,316,69,-0.02499479166666667],[123,316,70,-0.02499479166666667],[123,316,71,-0.02499479166666667],[123,316,72,-0.02499479166666667],[123,316,73,-0.02499479166666667],[123,316,74,-0.02499479166666667],[123,316,75,-0.02499479166666667],[123,316,76,-0.02499479166666667],[123,316,77,-0.02499479166666667],[123,316,78,-0.02499479166666667],[123,316,79,-0.02499479166666667],[123,317,64,-0.02499479166666667],[123,317,65,-0.02499479166666667],[123,317,66,-0.02499479166666667],[123,317,67,-0.02499479166666667],[123,317,68,-0.02499479166666667],[123,317,69,-0.02499479166666667],[123,317,70,-0.02499479166666667],[123,317,71,-0.02499479166666667],[123,317,72,-0.02499479166666667],[123,317,73,-0.02499479166666667],[123,317,74,-0.02499479166666667],[123,317,75,-0.02499479166666667],[123,317,76,-0.02499479166666667],[123,317,77,-0.02499479166666667],[123,317,78,-0.02499479166666667],[123,317,79,-0.02499479166666667],[123,318,64,-0.02499479166666667],[123,318,65,-0.02499479166666667],[123,318,66,-0.02499479166666667],[123,318,67,-0.02499479166666667],[123,318,68,-0.02499479166666667],[123,318,69,-0.02499479166666667],[123,318,70,-0.02499479166666667],[123,318,71,-0.02499479166666667],[123,318,72,-0.02499479166666667],[123,318,73,-0.02499479166666667],[123,318,74,-0.02499479166666667],[123,318,75,-0.02499479166666667],[123,318,76,-0.02499479166666667],[123,318,77,-0.02499479166666667],[123,318,78,-0.02499479166666667],[123,318,79,-0.02499479166666667],[123,319,64,-0.02499479166666667],[123,319,65,-0.02499479166666667],[123,319,66,-0.02499479166666667],[123,319,67,-0.02499479166666667],[123,319,68,-0.02499479166666667],[123,319,69,-0.02499479166666667],[123,319,70,-0.02499479166666667],[123,319,71,-0.02499479166666667],[123,319,72,-0.02499479166666667],[123,319,73,-0.02499479166666667],[123,319,74,-0.02499479166666667],[123,319,75,-0.02499479166666667],[123,319,76,-0.02499479166666667],[123,319,77,-0.02499479166666667],[123,319,78,-0.02499479166666667],[123,319,79,-0.02499479166666667],[124,-64,64,0.037482421875],[124,-64,65,0.037482421875],[124,-64,66,0.037482421875],[124,-64,67,0.037482421875],[124,-64,68,0.037482421875],[124,-64,69,0.037482421875],[124,-64,70,0.037482421875],[124,-64,71,0.037482421875],[124,-64,72,0.037482421875],[124,-64,73,0.037482421875],[124,-64,74,0.037482421875],[124,-64,75,0.037482421875],[124,-64,76,0.037482421875],[124,-64,77,0.037482421875],[124,-64,78,0.037482421875],[124,-64,79,0.037482421875],[124,-63,64,0.04055655695429384],[124,-63,65,0.0406386885084115],[124,-63,66,0.040722235040847814],[124,-63,67,0.040806998839409574],[124,-63,68,0.04089297688921819],[124,-63,69,0.04098032653029128],[124,-63,70,0.041069164365575686],[124,-63,71,0.04115955286367394],[124,-63,72,0.041251493097533856],[124,-63,73,0.04134491916011447],[124,-63,74,0.041439694301308984],[124,-63,75,0.04153560882847827],[124,-63,76,0.04163237981077638],[124,-63,77,0.04172965262505534],[124,-63,78,0.04182700437854521],[124,-63,79,0.041923949240754696],[124,-62,64,0.04370844283062386],[124,-62,65,0.04387494475330891],[124,-62,66,0.04404436386036191],[124,-62,67,0.04421631652680843],[124,-62,68,0.04439077393589828],[124,-62,69,0.04456800679196858],[124,-62,70,0.044748208163152],[124,-62,71,0.04493146742960633],[124,-62,72,0.04511775592847697],[124,-62,73,0.04530691591368207],[124,-62,74,0.04549865291628988],[124,-62,75,0.0456925315873931],[124,-62,76,0.045887975101035046],[124,-62,77,0.046084268189962696],[124,-62,78,0.04628056388182233],[124,-62,79,0.046475893997958845],[124,-61,64,0.04694481462294349],[124,-61,65,0.047197594747739366],[124,-61,66,0.04745481709636405],[124,-61,67,0.04771593703025528],[124,-61,68,0.04798087627398373],[124,-61,69,0.048249964578207113],[124,-61,70,0.04852342488615656],[124,-61,71,0.04880133526956183],[124,-61,72,0.049083607238914514],[124,-61,73,0.04936996897050566],[124,-61,74,0.04965995357514166],[124,-61,75,0.04995289252765098],[124,-61,76,0.05024791436978073],[124,-61,77,0.05054394879193574],[124,-61,78,0.050839736191515335],[124,-61,79,0.0511338427974919],[124,-60,64,0.05027131800090962],[124,-60,65,0.05061193827644116],[124,-60,66,0.0509584844305151],[124,-60,67,0.05131028629134385],[124,-60,68,0.05166719216129481],[124,-60,69,0.05202952878885327],[124,-60,70,0.05239749814810798],[124,-60,71,0.05277112787831763],[124,-60,72,0.053150241639753654],[124,-60,73,0.053534435955632016],[124,-60,74,0.053923063702221205],[124,-60,75,0.05431522440153187],[124,-60,76,0.05470976146234766],[124,-60,77,0.05510526650587658],[124,-60,78,0.05550009090210443],[124,-60,79,0.055892364632213],[124,-59,64,0.05369229312508932],[124,-59,65,0.05412195970310163],[124,-59,66,0.05455893420208162],[124,-59,67,0.05500246334709744],[124,-59,68,0.0554522979349772],[124,-59,69,0.05590869474710278],[124,-59,70,0.0563717819545945],[124,-59,71,0.056841498428148556],[124,-59,72,0.057317555189818806],[124,-59,73,0.057799404890309],[124,-59,74,0.05828621950944304],[124,-59,75,0.058776876467966206],[124,-59,76,0.059269953328105036],[124,-59,77,0.05976373124854455],[124,-59,78,0.06025620734683083],[124,-59,79,0.06074511610893191],[124,-58,64,0.05721062350297991],[124,-58,65,0.057730182452623686],[124,-58,66,0.058258277550821316],[124,-58,67,0.05879411694292239],[124,-58,68,0.05933732935786533],[124,-58,69,0.05988803256383355],[124,-58,70,0.06044622828441962],[124,-58,71,0.06101173057571199],[124,-58,72,0.06158411716153316],[124,-58,73,0.06216269030524512],[124,-58,74,0.06274644745003549],[124,-58,75,0.06333406184832831],[124,-58,76,0.06392387338822723],[124,-58,77,0.06451388981090515],[124,-58,78,0.06510179849780615],[124,-58,79,0.065684988990751],[124,-57,64,0.060827662949691115],[124,-57,65,0.06143760217820079],[124,-57,66,0.062057111998705436],[124,-57,67,0.06268540239534195],[124,-57,68,0.06332195389417714],[124,-57,69,0.06396667677389456],[124,-57,70,0.06461939577832701],[124,-57,71,0.06527976757047257],[124,-57,72,0.0659472205599158],[124,-57,73,0.0666209057489422],[124,-57,74,0.06729965886233642],[124,-57,75,0.06798197401291711],[124,-57,76,0.06866598914020285],[124,-57,77,0.06934948344346109],[124,-57,78,0.07002988701301952],[124,-57,79,0.0707043028455029],[124,-56,64,0.06454292830625041],[124,-56,65,0.065243378991201],[124,-56,66,0.06595421592763077],[124,-56,67,0.0666746806605605],[124,-56,68,0.06740407651579747],[124,-56,69,0.06814204100754695],[124,-56,70,0.0688881753149611],[124,-56,71,0.06964195062119144],[124,-56,72,0.07040263495628658],[124,-56,73,0.07116923250923343],[124,-56,74,0.07194043570609043],[124,-56,75,0.07271459033665532],[124,-56,76,0.07348967399562387],[124,-56,77,0.0742632880860004],[124,-56,78,0.07503266361290192],[124,-56,79,0.07579468097531754],[124,-55,64,0.06835185233088069],[124,-55,65,0.06914254330557992],[124,-55,66,0.06994419811984968],[124,-55,67,0.07075610988386974],[124,-55,68,0.07157737661931096],[124,-55,69,0.07240730608949376],[124,-55,70,0.07324523728187524],[124,-55,71,0.07409043523703637],[124,-55,72,0.07494200340040907],[124,-55,73,0.07579880986387781],[124,-55,74,0.07665942782516515],[124,-55,75,0.07752209057690841],[124,-55,76,0.07838466131911855],[124,-55,77,0.07924461806854922],[124,-55,78,0.08009905391672802],[124,-55,79,0.08094469286551519],[124,-54,64,0.07224673625714602],[124,-54,65,0.0731269668552998],[124,-54,66,0.07401848852172441],[124,-54,67,0.07492065765090741],[124,-54,68,0.0758323431240552],[124,-54,69,0.07675247843391053],[124,-54,70,0.07768011290524499],[124,-54,71,0.07861429442634597],[124,-54,72,0.07955396582696353],[124,-54,73,0.08049787654345886],[124,-54,74,0.08144450992917063],[124,-54,75,0.08239202655056647],[124,-54,76,0.08333822378986201],[124,-54,77,0.08428051205273879],[124,-54,78,0.08521590785592024],[124,-54,79,0.08614104404422805],[124,-53,64,0.07621820299657323],[124,-53,65,0.07718684618492704],[124,-53,66,0.0781668568703387],[124,-53,67,0.07915765754570095],[124,-53,68,0.08015786972911489],[124,-53,69,0.08116602308544874],[124,-53,70,0.08218086264507886],[124,-53,71,0.0832012186784181],[124,-53,72,0.08422588570853963],[124,-53,73,0.08525351819296673],[124,-53,74,0.08628254326200059],[124,-53,75,0.08731109088205717],[124,-53,76,0.08833694179095944],[124,-53,77,0.08935749352823917],[124,-53,78,0.09036974485757465],[124,-53,79,0.09137029885112906],[124,-52,64,0.08025578516614074],[124,-52,65,0.08131130128214738],[124,-52,66,0.08237802290487986],[124,-52,67,0.08345543229779177],[124,-52,68,0.08454189206230679],[124,-52,69,0.08563551521747467],[124,-52,70,0.08673474174599817],[124,-52,71,0.08783819471139097],[124,-52,72,0.08894454067120315],[124,-52,73,0.09005236813539656],[124,-52,74,0.09116008448587543],[124,-52,75,0.09226583175275718],[124,-52,76,0.0933674216197919],[124,-52,77,0.09446229000560916],[124,-52,78,0.0955474715395015],[124,-52,79,0.09661959422086214],[124,-51,64,0.08430126861907344],[124,-51,65,0.08548900020086671],[124,-51,66,0.08664029117014894],[124,-51,67,0.08780193982527426],[124,-51,68,0.08897204575467717],[124,-51,69,0.0901483103080309],[124,-51,70,0.09132888194721746],[124,-51,71,0.09251219760626538],[124,-51,72,0.09369682349312176],[124,-51,73,0.09488131531688428],[124,-51,74,0.09606409838434152],[124,-51,75,0.09724336798760812],[124,-51,76,0.09841701047974381],[124,-51,77,0.09958254540764591],[124,-51,78,0.1007370890414696],[124,-51,79,0.10187733960796959],[124,-50,64,0.08809295160981227],[124,-50,65,0.08954901869597648],[124,-50,66,0.09094222465673467],[124,-50,67,0.09218545638410547],[124,-50,68,0.09343635957948787],[124,-50,69,0.09469224703029006],[124,-50,70,0.09595100326187844],[124,-50,71,0.09721091009225738],[124,-50,72,0.09847046709382457],[124,-50,73,0.0997282328760021],[124,-50,74,0.10098268765947696],[124,-50,75,0.10223211758889807],[124,-50,76,0.10347452120414775],[124,-50,77,0.10470753846076049],[124,-50,78,0.10592840265789781],[124,-50,79,0.10713391559808279],[124,-49,64,0.09192630747419754],[124,-49,65,0.09348514674941963],[124,-49,66,0.0950436984489454],[124,-49,67,0.09659451091566776],[124,-49,68,0.09792331935485402],[124,-49,69,0.09925584363524968],[124,-49,70,0.10058974277865447],[124,-49,71,0.10192318063774718],[124,-49,72,0.1032546257697366],[124,-49,73,0.10458267353694126],[124,-49,74,0.10590589093034337],[124,-49,75,0.10722268458624448],[124,-49,76,0.10853119243745468],[124,-49,77,0.10982919940886268],[124,-49,78,0.11111407753285593],[124,-49,79,0.11238275082342974],[124,-48,64,0.09580755234295842],[124,-48,65,0.09746727824105952],[124,-48,66,0.09912859377381987],[124,-48,67,0.10078808914857677],[124,-48,68,0.10242005863536129],[124,-48,69,0.10382686151019666],[124,-48,70,0.10523358851405318],[124,-48,71,0.10663831671910022],[124,-48,72,0.1080395087710112],[124,-48,73,0.10943581659527477],[124,-48,74,0.11082590919609639],[124,-48,75,0.11220832503757723],[124,-48,76,0.11358134946611494],[124,-48,77,0.11494291759931474],[124,-48,78,0.11629054307010886],[124,-48,79,0.11762127297573309],[124,-47,64,0.09974272131373689],[124,-47,65,0.10150051361649837],[124,-47,66,0.1032617451163341],[124,-47,67,0.10502292006950348],[124,-47,68,0.10678240397945579],[124,-47,69,0.10839353098075702],[124,-47,70,0.10987167679105386],[124,-47,71,0.11134644742132112],[124,-47,72,0.1128163099485908],[124,-47,73,0.11427997474308063],[124,-47,74,0.11573620804313813],[124,-47,75,0.11718367034168252],[124,-47,76,0.11862078105481949],[124,-47,77,0.12004560990763939],[124,-47,78,0.12145579543350261],[124,-47,79,0.1228484909417854],[124,-46,64,0.10373623961623116],[124,-46,65,0.10558833327409047],[124,-46,66,0.10744557849363107],[124,-46,67,0.10930446476152549],[124,-46,68,0.11116337369377804],[124,-46,69,0.11294525693248811],[124,-46,70,0.11449431926064708],[124,-46,71,0.11603886868026263],[124,-46,72,0.11757737133293902],[124,-46,73,0.11910857948794629],[124,-46,74,0.12063133173277946],[124,-46,75,0.12214437994754189],[124,-46,76,0.12364624353814269],[124,-46,77,0.12513509136576512],[124,-46,78,0.12660865176945338],[124,-46,79,0.12806415103529165],[124,-45,64,0.10779057516974094],[124,-45,65,0.10973227774962573],[124,-45,66,0.1116806049648814],[124,-45,67,0.11363211152426468],[124,-45,68,0.11558520456604575],[124,-45,69,0.11747283477553194],[124,-45,70,0.11909317410416746],[124,-45,71,0.12070816657816202],[124,-45,72,0.12231625597915627],[124,-45,73,0.12391620172226962],[124,-45,74,0.12550687046326256],[124,-45,75,0.12708705510928298],[124,-45,76,0.12865532170385427],[124,-45,77,0.13020988461760344],[124,-45,78,0.13174851043400904],[124,-45,79,0.13326845087441186],[124,-44,64,0.11190596847294036],[124,-44,65,0.11393170250788086],[124,-44,66,0.11596520414746185],[124,-44,67,0.11800318041430528],[124,-44,68,0.12004407948973046],[124,-44,69,0.12196861043440096],[124,-44,70,0.12366136682339288],[124,-44,71,0.12534829630163533],[124,-44,72,0.1270277829930477],[124,-44,73,0.128698541348754],[124,-44,74,0.13035940381948885],[124,-44,75,0.1320091361077181],[124,-44,76,0.13364628045636978],[124,-44,77,0.1352690273906222],[124,-44,78,0.1368751162857735],[124,-44,79,0.13846176508801167],[124,-43,64,0.11608023846323166],[124,-43,65,0.11818360601903852],[124,-43,66,0.12029547776907085],[124,-43,67,0.12241280514194057],[124,-43,68,0.12453409974874405],[124,-43,69,0.12642658552401315],[124,-43,70,0.12819356170852778],[124,-43,71,0.12995461780169715],[124,-43,72,0.1317080257547134],[124,-43,73,0.13345238698892492],[124,-43,74,0.13518642148510102],[124,-43,75,0.13690878410142635],[124,-43,76,0.13861790855360048],[124,-43,77,0.14031187944912868],[124,-43,78,0.14198833272378766],[124,-43,79,0.1436443847815333],[124,-42,64,0.12030866321138257],[124,-42,65,0.12248253000473083],[124,-42,66,0.12466517214852284],[124,-42,67,0.12685388012768614],[124,-42,68,0.12899578988863988],[124,-42,69,0.13084246872619365],[124,-42,70,0.13268598493712488],[124,-42,71,0.13452388906857113],[124,-42,72,0.13635427424005558],[124,-42,73,0.13817554669620907],[124,-42,74,0.13998622219724638],[124,-42,75,0.14178474868677357],[124,-42,76,0.14356935563712156],[124,-42,77,0.1453379304308736],[124,-42,78,0.1470879220931818],[124,-42,79,0.14881627264304295],[124,-41,64,0.12458393450675456],[124,-41,65,0.12682053090925124],[124,-41,66,0.12906566864927185],[124,-41,67,0.1313170717548027],[124,-41,68,0.1332887017419543],[124,-41,69,0.13521367421838074],[124,-41,70,0.1371364001073302],[124,-41,71,0.13905421779801622],[124,-41,72,0.14096496221883803],[124,-41,73,0.1428667504880026],[124,-41,74,0.14475779183187965],[124,-41,75,0.14663622216799485],[124,-41,76,0.1484999637105304],[124,-41,77,0.1503466099152637],[124,-41,78,0.15217333603774028],[124,-41,79,0.15397683553340055],[124,-40,64,0.1288961855391929],[124,-40,65,0.13118722178719686],[124,-40,66,0.13348604127036617],[124,-40,67,0.1355306494184626],[124,-40,68,0.13753360917037172],[124,-40,69,0.1395392678289891],[124,-40,70,0.1415440368478666],[124,-40,71,0.14354497208232436],[124,-40,72,0.1455395599824845],[124,-40,73,0.14752552540408356],[124,-40,74,0.1495006614184435],[124,-40,75,0.15146268146652833],[124,-40,76,0.15340909416440324],[124,-40,77,0.15533710102817547],[124,-40,78,0.1572435173455021],[124,-40,79,0.1591247163783412],[124,-39,64,0.1294390537783256],[124,-39,65,0.1316290294864196],[124,-39,66,0.13360924438923755],[124,-39,67,0.13560328382261805],[124,-39,68,0.1376063213213587],[124,-39,69,0.1396139743536155],[124,-39,70,0.14162255631287518],[124,-39,71,0.1436288885239828],[124,-39,72,0.14563012566140676],[124,-39,73,0.1476235990870131],[124,-39,74,0.14960667841622236],[124,-39,75,0.15157665159002562],[124,-39,76,0.15353062369783307],[124,-39,77,0.15546543476233307],[124,-39,78,0.15737759666252202],[124,-39,79,0.15926324933520503],[124,-38,64,0.12970287447820206],[124,-38,65,0.13165987093498926],[124,-38,66,0.13363756642475955],[124,-38,67,0.1356314340207686],[124,-38,68,0.1376364497904341],[124,-38,69,0.1396482581058056],[124,-38,70,0.1416630163664544],[124,-38,71,0.14367724398256734],[124,-38,72,0.14568769092904119],[124,-38,73,0.14769122013402872],[124,-38,74,0.1496847039346925],[124,-38,75,0.15166493480764107],[124,-38,76,0.15362855055527658],[124,-38,77,0.15557197410213078],[124,-38,78,0.15749136802738944],[124,-38,79,0.15938260393160117],[124,-37,64,0.12741841185537026],[124,-37,65,0.1300343716538886],[124,-37,66,0.1330877157889183],[124,-37,67,0.13398475720934894],[124,-37,68,0.13487235333042735],[124,-37,69,0.13964946457840408],[124,-37,70,0.1416721183933261],[124,-37,71,0.14369601036323773],[124,-37,72,0.14571741707434302],[124,-37,73,0.14773266604937244],[124,-37,74,0.14973806944185256],[124,-37,75,0.15172986743114233],[124,-37,76,0.15370418143599718],[124,-37,77,0.15565697724522948],[124,-37,78,0.15364339337817964],[124,-37,79,0.1481544133697],[124,-36,64,0.11976214878084346],[124,-36,65,0.12234765632389152],[124,-36,66,0.12511000026162292],[124,-36,67,0.12474586474586916],[124,-36,68,0.1253854976899771],[124,-36,69,0.1308380112346807],[124,-36,70,0.13541577220231912],[124,-36,71,0.13809219188288646],[124,-36,72,0.14153209408660897],[124,-36,73,0.14460934108254808],[124,-36,74,0.14730414237509126],[124,-36,75,0.14950627446227926],[124,-36,76,0.1495642722157648],[124,-36,77,0.14621270277061363],[124,-36,78,0.14278097402077958],[124,-36,79,0.13716887327429572],[124,-35,64,0.11625030290791101],[124,-35,65,0.1172832172530696],[124,-35,66,0.11865597842700656],[124,-35,67,0.11774159867870047],[124,-35,68,0.1195141089746957],[124,-35,69,0.1258531468763067],[124,-35,70,0.12955975675941545],[124,-35,71,0.1326009031966708],[124,-35,72,0.13645671251395658],[124,-35,73,0.13803876720083924],[124,-35,74,0.14121926976202054],[124,-35,75,0.14301341182249436],[124,-35,76,0.14166972108656567],[124,-35,77,0.13837444095223195],[124,-35,78,0.1351958341484791],[124,-35,79,0.13078384891730038],[124,-34,64,0.11528429281149885],[124,-34,65,0.11597732386451691],[124,-34,66,0.1161183642687458],[124,-34,67,0.1159851040916027],[124,-34,68,0.11884093570238737],[124,-34,69,0.12409637417374887],[124,-34,70,0.126360350348819],[124,-34,71,0.1292537578362152],[124,-34,72,0.13343776004851257],[124,-34,73,0.13415818770290047],[124,-34,74,0.1379682232686588],[124,-34,75,0.13802879420860048],[124,-34,76,0.13480422417374963],[124,-34,77,0.13421353500712704],[124,-34,78,0.13271644219471884],[124,-34,79,0.1297821039543825],[124,-33,64,0.11582466375393051],[124,-33,65,0.11810564630471654],[124,-33,66,0.11843075719381489],[124,-33,67,0.11876016921137417],[124,-33,68,0.12135255858817086],[124,-33,69,0.12427054697628354],[124,-33,70,0.12576602312042226],[124,-33,71,0.12754509843090886],[124,-33,72,0.13188828474374226],[124,-33,73,0.13530860187245475],[124,-33,74,0.1390963090431506],[124,-33,75,0.13757852538168372],[124,-33,76,0.1333691452555685],[124,-33,77,0.13308811590802394],[124,-33,78,0.1320621541753986],[124,-33,79,0.12909767799321092],[124,-32,64,0.11835779631797416],[124,-32,65,0.1206216866870422],[124,-32,66,0.12140115160055014],[124,-32,67,0.12354996946233837],[124,-32,68,0.12495895102723442],[124,-32,69,0.12734449621895136],[124,-32,70,0.12867671233602748],[124,-32,71,0.12822074302217853],[124,-32,72,0.13266984382996982],[124,-32,73,0.13826834764355395],[124,-32,74,0.14035854866882083],[124,-32,75,0.13993265297501586],[124,-32,76,0.1356763919472708],[124,-32,77,0.1338398966645451],[124,-32,78,0.1315656659160768],[124,-32,79,0.12833616751251337],[124,-31,64,0.12210514681141467],[124,-31,65,0.12193189633220962],[124,-31,66,0.12288462649508126],[124,-31,67,0.12721032838801416],[124,-31,68,0.12774332388681564],[124,-31,69,0.13071006848470726],[124,-31,70,0.13267584600197452],[124,-31,71,0.13308791249952465],[124,-31,72,0.13760775854347915],[124,-31,73,0.14094105744363636],[124,-31,74,0.14085977766180216],[124,-31,75,0.14318938117754307],[124,-31,76,0.13887287301594417],[124,-31,77,0.13455796079896526],[124,-31,78,0.13084837629901636],[124,-31,79,0.1277414024620589],[124,-30,64,0.12642628338643738],[124,-30,65,0.1260115073390603],[124,-30,66,0.12731091852602422],[124,-30,67,0.131824462283114],[124,-30,68,0.13209733810338173],[124,-30,69,0.13405467168188334],[124,-30,70,0.1361905859777628],[124,-30,71,0.13886456665866476],[124,-30,72,0.1433141934726172],[124,-30,73,0.14523940307204522],[124,-30,74,0.14488643677144042],[124,-30,75,0.14662290597396396],[124,-30,76,0.14139474421627207],[124,-30,77,0.13655601099628892],[124,-30,78,0.13278705044983682],[124,-30,79,0.12991273416792423],[124,-29,64,0.12931295861794515],[124,-29,65,0.13120304782053735],[124,-29,66,0.13292151997320556],[124,-29,67,0.13512160350633662],[124,-29,68,0.13641078711670893],[124,-29,69,0.13893574491748378],[124,-29,70,0.14120137272074407],[124,-29,71,0.142795040195571],[124,-29,72,0.14439390976525626],[124,-29,73,0.14599998895503344],[124,-29,74,0.14761470554354703],[124,-29,75,0.14923876804897857],[124,-29,76,0.14477647542294336],[124,-29,77,0.1402895794691544],[124,-29,78,0.1365539041762844],[124,-29,79,0.1328393296552302],[124,-28,64,0.12930650345099584],[124,-28,65,0.13117930562799984],[124,-28,66,0.13310288810280185],[124,-28,67,0.1350686994556907],[124,-28,68,0.13706785061370652],[124,-28,69,0.1389847405920102],[124,-28,70,0.1405101489438112],[124,-28,71,0.14204105493533214],[124,-28,72,0.14358064952298127],[124,-28,73,0.1451316300403066],[124,-28,74,0.14669601030983823],[124,-28,75,0.14827496457877257],[124,-28,76,0.14864622044424008],[124,-28,77,0.1446679930250152],[124,-28,78,0.14047996778264393],[124,-28,79,0.13534624871451026],[124,-27,64,0.1293132056732131],[124,-27,65,0.13116520391875564],[124,-27,66,0.13306935999568587],[124,-27,67,0.13501704153445887],[124,-27,68,0.13681038023776465],[124,-27,69,0.13826963253626695],[124,-27,70,0.13973325338025938],[124,-27,71,0.14120550881530133],[124,-27,72,0.14269031439455598],[124,-27,73,0.14419099169536811],[124,-27,74,0.14571006230672331],[124,-27,75,0.14724907960214623],[124,-27,76,0.1488084985490159],[124,-27,77,0.1477793244373818],[124,-27,78,0.14348672610283758],[124,-27,79,0.1380318578378757],[124,-26,64,0.12932745707467208],[124,-26,65,0.13115480086664089],[124,-26,66,0.1330351946155729],[124,-26,67,0.1346778700565939],[124,-26,68,0.1360748865654391],[124,-26,69,0.13747383938352709],[124,-26,70,0.13887990260927394],[124,-26,71,0.1402980995239723],[124,-26,72,0.14173300367498],[124,-26,73,0.14318848055663547],[124,-26,74,0.14466747027627516],[124,-26,75,0.14617181153359624],[124,-26,76,0.14770210717037155],[124,-26,77,0.14925763146464158],[124,-26,78,0.14724922459721332],[124,-26,79,0.14049685194220216],[124,-25,64,0.1293404329962005],[124,-25,65,0.13113900021770658],[124,-25,66,0.13258709231367896],[124,-25,67,0.1339274270995133],[124,-25,68,0.13526611381992634],[124,-25,69,0.13660903540994423],[124,-25,70,0.1379621502527506],[124,-25,71,0.13933116612796012],[124,-25,72,0.14072122847446641],[124,-25,73,0.14213665228656455],[124,-25,74,0.14358069804356063],[124,-25,75,0.14505539200789203],[124,-25,76,0.14656139114756506],[124,-25,77,0.14809789284626093],[124,-25,78,0.1496625894608655],[124,-25,79,0.14228189208329123],[124,-24,64,0.1292335223844307],[124,-24,65,0.13053680625600858],[124,-24,66,0.1318277826088343],[124,-24,67,0.13311199646983743],[124,-24,68,0.13439641463451818],[124,-24,69,0.13568772496184148],[124,-24,70,0.13699259502537156],[124,-24,71,0.1383173286578684],[124,-24,72,0.1396675464333022],[124,-24,73,0.14104791236115716],[124,-24,74,0.1424619071997101],[124,-24,75,0.14391164872325007],[124,-24,76,0.1453977591907432],[124,-24,77,0.1469192801614418],[124,-24,78,0.1484736346889644],[124,-24,79,0.14418792931229443],[124,-23,64,0.1285264639457251],[124,-23,65,0.12977376170621174],[124,-23,66,0.13101035345939352],[124,-23,67,0.13224191984336714],[124,-23,68,0.13347594883443858],[124,-23,69,0.13471987146282302],[124,-23,70,0.13598098784221746],[124,-23,71,0.13726611095407068],[124,-23,72,0.13858124369211153],[124,-23,73,0.13993130429510647],[124,-23,74,0.1413199005751985],[124,-23,75,0.14274915327040896],[124,-23,76,0.14421956875392924],[124,-23,77,0.1457299612213416],[124,-23,78,0.14727742435296154],[124,-23,79,0.14564750682332325],[124,-22,64,0.12776590192091242],[124,-22,65,0.12895949254958272],[124,-22,66,0.13014443513854543],[124,-22,67,0.13132652352047716],[124,-22,68,0.1325137148701978],[124,-22,69,0.1337141191799846],[124,-22,70,0.13493559406905362],[124,-22,71,0.13618537955934465],[124,-22,72,0.13746977522687928],[124,-22,73,0.13879386757887793],[124,-22,74,0.14016130805949395],[124,-22,75,0.14157414200070836],[124,-22,76,0.14303268873027863],[124,-22,77,0.1445354729277825],[124,-22,78,0.14607920718632328],[124,-22,79,0.145888379381088],[124,-21,64,0.1269617011896034],[124,-21,65,0.12810349041907357],[124,-21,66,0.1292391174256663],[124,-21,67,0.13037445971896627],[124,-21,68,0.1315178860839044],[124,-21,69,0.13267812073898488],[124,-21,70,0.13386350776185976],[124,-21,71,0.1350816396037461],[124,-21,72,0.13633903697154334],[124,-21,73,0.13764088051052273],[124,-21,74,0.13899079468158115],[124,-21,75,0.1403906841327814],[124,-21,76,0.14184062275141585],[124,-21,77,0.14333879545278377],[124,-21,78,0.14488149261930955],[124,-21,79,0.1464631569534432],[124,-20,64,0.12612367959767024],[124,-20,65,0.12721508675089616],[124,-20,66,0.12830319402402945],[124,-20,67,0.1293939273153157],[124,-20,68,0.1304960062341348],[124,-20,69,0.1316187065323819],[124,-20,70,0.1327707947453995],[124,-20,71,0.13396015203988182],[124,-20,72,0.13519345838131658],[124,-20,73,0.13647592990405985],[124,-20,74,0.13781110986582973],[124,-20,75,0.1392007134658438],[124,-20,76,0.14064452668345354],[124,-20,77,0.1421403591550546],[124,-20,78,0.14368405095579606],[124,-20,79,0.14526953299447457],[124,-19,64,0.1252618911766787],[124,-19,65,0.1263037155856937],[124,-19,66,0.12734540289506624],[124,-19,67,0.12839288772963006],[124,-19,68,0.1294551793290402],[124,-19,69,0.1305420475125034],[124,-19,70,0.13166262804684523],[124,-19,71,0.1328250420877573],[124,-19,72,0.13403608494011635],[124,-19,73,0.1353009693578462],[124,-19,74,0.13662312375086708],[124,-19,75,0.1380040455556234],[124,-19,76,0.13944320989438333],[124,-19,77,0.14093803350053788],[124,-19,78,0.14248389372743195],[124,-19,79,0.1440742022925238],[124,-18,64,0.12438578053285627],[124,-18,65,0.1253779971202987],[124,-18,66,0.12637343628889294],[124,-18,67,0.12737799881955586],[124,-18,68,0.12840092514846765],[124,-18,69,0.1294524307268259],[124,-18,70,0.1305419825209924],[124,-18,71,0.1316779127524683],[124,-18,72,0.13286711110364696],[124,-18,73,0.1341147728635021],[124,-18,74,0.1354242033661796],[124,-18,75,0.13679667895578074],[124,-18,76,0.13823136457035767],[124,-18,77,0.13972528788128843],[124,-18,78,0.1412733697560877],[124,-18,79,0.14286851063939587],[124,-17,64,0.12349922625933467],[124,-17,65,0.12444104362991924],[124,-17,66,0.12538956539824692],[124,-17,67,0.1263506152729113],[124,-17,68,0.12733360940021682],[124,-17,69,0.1283491672503222],[124,-17,70,0.12940706011561762],[124,-17,71,0.13051581673578438],[124,-17,72,0.1316824167442973],[124,-17,73,0.13291204161571354],[124,-17,74,0.13420788345309687],[124,-17,75,0.13557101182651998],[124,-17,76,0.13700029872427075],[124,-17,77,0.1384924015125093],[124,-17,78,0.14004180362241425],[124,-17,79,0.14164091250269548],[124,-16,64,0.12259238792746145],[124,-16,65,0.1234834444164664],[124,-16,66,0.12438492851765692],[124,-16,67,0.12530254584570277],[124,-16,68,0.12624582505232093],[124,-16,69,0.12722573264253276],[124,-16,70,0.12825229744122055],[124,-16,71,0.12933420702581505],[124,-16,72,0.13047850140459716],[124,-16,73,0.13169032581282844],[124,-16,74,0.1329727429518168],[124,-16,75,0.13432660485882578],[124,-16,76,0.13575048443736562],[124,-16,77,0.13724066650255878],[124,-16,78,0.13879119801102277],[124,-16,79,0.14039399695576976],[124,-15,64,0.12165521692061573],[124,-15,65,0.1224957723844109],[124,-15,66,0.12335083782059397],[124,-15,67,0.12422596025350335],[124,-15,68,0.12513070789143865],[124,-15,69,0.12607631909980446],[124,-15,70,0.12707301015659564],[124,-15,71,0.12812956306143994],[124,-15,72,0.12925301990481505],[124,-15,73,0.13044843788741312],[124,-15,74,0.13171870529793236],[124,-15,75,0.13306441861162469],[124,-15,76,0.13448382070471546],[124,-15,77,0.13597279999636339],[124,-15,78,0.137524950136507],[124,-15,79,0.13913168966177197],[124,-14,64,0.12068096047816804],[124,-14,65,0.1214717565219361],[124,-14,66,0.12228156610690684],[124,-14,67,0.12311573564694488],[124,-14,68,0.12398379171020696],[124,-14,69,0.1248971549917537],[124,-14,70,0.12586614147487157],[124,-14,71,0.12689954347172858],[124,-14,72,0.12800432627022923],[124,-14,73,0.12918538675665983],[124,-14,74,0.13044537430150516],[124,-14,75,0.13178457404133212],[124,-14,76,0.13320085251407368],[124,-14,77,0.13468966541370053],[124,-14,78,0.13624412702977415],[124,-14,79,0.13785514073500618],[124,-13,64,0.07140378983804027],[124,-13,65,0.08515344656329167],[124,-13,66,0.10022456797902907],[124,-13,67,0.11657912554351121],[124,-13,68,0.1228024860580323],[124,-13,69,0.12368603482584266],[124,-13,70,0.12462985362803444],[124,-13,71,0.12564264772234907],[124,-13,72,0.12673121338040305],[124,-13,73,0.12790020221842],[124,-13,74,0.12915194878072825],[124,-13,75,0.13048636147486414],[124,-13,76,0.13190087677401535],[124,-13,77,0.13339047640437784],[124,-13,78,0.13494776702864134],[124,-13,79,0.13656312172971802],[124,-12,64,0.035742913769525764],[124,-12,65,0.04447499844842727],[124,-12,66,0.05435686486797044],[124,-12,67,0.06538616117544865],[124,-12,68,0.07755292060658284],[124,-12,69,0.09083806829781613],[124,-12,70,0.10521043669255636],[124,-12,71,0.1206270148032358],[124,-12,72,0.12543268239290492],[124,-12,73,0.1265917831603504],[124,-12,74,0.12783715448381508],[124,-12,75,0.12916825986677244],[124,-12,76,0.13058205114045981],[124,-12,77,0.13207299604245384],[124,-12,78,0.13363316869019398],[124,-12,79,0.13525240219582363],[124,-11,64,0.014442784740378094],[124,-11,65,0.019233757763187757],[124,-11,66,0.02494973196345228],[124,-11,67,0.03161523500305056],[124,-11,68,0.039247888961631575],[124,-11,69,0.04785721415819552],[124,-11,70,0.057441475507724694],[124,-11,71,0.06798799349449013],[124,-11,72,0.0794736036990774],[124,-11,73,0.09186519774418045],[124,-11,74,0.10512035597791496],[124,-11,75,0.11918808089070196],[124,-11,76,0.12924150617879465],[124,-11,77,0.13073373175543848],[124,-11,78,0.13229616768180896],[124,-11,79,0.13391810642082125],[124,-10,64,0.0038232122781495874],[124,-10,65,0.005796639378314815],[124,-10,66,0.008437149665348882],[124,-10,67,0.011792799213296696],[124,-10,68,0.0159045670710356],[124,-10,69,0.020805419341621924],[124,-10,70,0.02651698409963429],[124,-10,71,0.033049942846263614],[124,-10,72,0.04040455896769468],[124,-10,73,0.04857126061193925],[124,-10,74,0.05753128170911879],[124,-10,75,0.0672573657021393],[124,-10,76,0.07771453654761955],[124,-10,77,0.08886094065950269],[124,-10,78,0.1006487617618958],[124,-10,79,0.11302520821948892],[124,-9,64,5.11039620463474E-4],[124,-9,65,0.0012066892336871494],[124,-9,66,0.0018937159116128638],[124,-9,67,0.0025759197822731203],[124,-9,68,0.003863413143543756],[124,-9,69,0.006073928047543213],[124,-9,70,0.008897584481078106],[124,-9,71,0.01236567855152032],[124,-9,72,0.016498622381642517],[124,-9,73,0.021306575313306812],[124,-9,74,0.026790123453576935],[124,-9,75,0.03294100685770145],[124,-9,76,0.039742894721695225],[124,-9,77,0.04717220955124224],[124,-9,78,0.055199001314499105],[124,-9,79,0.06378787206583957],[124,-8,64,-3.723762142455923E-4],[124,-8,65,7.898980630717398E-5],[124,-8,66,7.662902390858045E-4],[124,-8,67,0.0014551395643745066],[124,-8,68,0.002153462953177298],[124,-8,69,0.00287249630469952],[124,-8,70,0.003622165116023025],[124,-8,71,0.004410678305252333],[124,-8,72,0.005244281846664026],[124,-8,73,0.006463783195352145],[124,-8,74,0.009352836863681227],[124,-8,75,0.012776697942953223],[124,-8,76,0.016735606750045803],[124,-8,77,0.02122195144490881],[124,-8,78,0.02622114201117436],[124,-8,79,0.03171252278181619],[124,-7,64,-0.0014655048802877909],[124,-7,65,-0.0010382565055317642],[124,-7,66,-3.49785123671289E-4],[124,-7,67,3.465165092285081E-4],[124,-7,68,0.0010578626614259708],[124,-7,69,0.0017949068273180365],[124,-7,70,0.002566912309018916],[124,-7,71,0.0033813663044753514],[124,-7,72,0.004243758343686462],[124,-7,73,0.005157417983510272],[124,-7,74,0.006123411680179748],[124,-7,75,0.007140498645008525],[124,-7,76,0.008205145374576247],[124,-7,77,0.00931159843234485],[124,-7,78,0.01045201494393212],[124,-7,79,0.013288930718044921],[124,-6,64,-0.0028197312851391885],[124,-6,65,-0.0021414303376991834],[124,-6,66,-0.0014511615307010689],[124,-6,67,-7.469899085139262E-4],[124,-6,68,-2.2478510361454284E-5],[124,-6,69,7.323706941132322E-4],[124,-6,70,0.0015260908270938644],[124,-6,71,0.0023653879214452223],[124,-6,72,0.003254946879854165],[124,-6,73,0.0041972940599473065],[124,-6,74,0.005192716367696913],[124,-6,75,0.00623923663206866],[124,-6,76,0.007332644923934781],[124,-6,77,0.008466585372183796],[124,-6,78,0.009632697919555622],[124,-6,79,0.010820814351908506],[124,-5,64,-0.0039015196387708635],[124,-5,65,-0.0032275799247778007],[124,-5,66,-0.0025351885807920202],[124,-5,67,-0.0018231439270424614],[124,-5,68,-0.0010858404987308858],[124,-5,69,-3.139933172187214E-4],[124,-5,70,5.001491134422746E-4],[124,-5,71,0.0013624693630341252],[124,-5,72,0.0022768168679173466],[124,-5,73,0.0032448972043616596],[124,-5,74,0.00426621468998232],[124,-5,75,0.005338068056738196],[124,-5,76,0.006455598834267528],[124,-5,77,0.0076118919775058635],[124,-5,78,0.008798128167514602],[124,-5,79,0.010003787111282702],[124,-4,64,-0.004964505316361088],[124,-4,65,-0.004294545338373669],[124,-4,66,-0.0036000265390892356],[124,-4,67,-0.0028805298999392214],[124,-4,68,-0.0021313217726273053],[124,-4,69,-0.0013438706143625765],[124,-4,70,-5.112399885222059E-4],[124,-4,71,3.7160520825114956E-4],[124,-4,72,0.0013076662225682894],[124,-4,73,0.002297827787994507],[124,-4,74,0.0033408251512138352],[124,-4,75,0.004433260498110839],[124,-4,76,0.005569668398733423],[124,-4,77,0.006742629791511678],[124,-4,78,0.00794293392852066],[124,-4,79,0.009159787607165272],[124,-3,64,-0.0060071507560387075],[124,-3,65,-0.005341020757202505],[124,-3,66,-0.0046446983508226045],[124,-3,67,-0.003918590463595519],[124,-3,68,-0.0031588604778520976],[124,-3,69,-0.0023577522679992108],[124,-3,70,-0.0015091589642909648],[124,-3,71,-6.08898067157386E-4],[124,-3,72,3.45189066639491E-4],[124,-3,73,0.0013531835804993155],[124,-3,74,0.0024130811031544282],[124,-3,75,0.0035208290578158307],[124,-3,76,0.004670408899165878],[124,-3,77,0.005853962790658332],[124,-3,78,0.007061964143416291],[124,-3,79,0.008283431349392252],[124,-2,64,-0.007028756810057112],[124,-2,65,-0.006366553343617027],[124,-2,66,-0.005669079868993045],[124,-2,67,-0.004937605150871738],[124,-2,68,-0.004169198965919201],[124,-2,69,-0.0033568835774943576],[124,-2,70,-0.0024953769395509805],[124,-2,71,-0.0015813354259287516],[124,-2,72,-6.134194484989893E-4],[124,-2,73,4.076823995617881E-4],[124,-2,74,0.0014792704354548505],[124,-2,75,0.0025966918906130516],[124,-2,76,0.0037534394203833977],[124,-2,77,0.004941289629812772],[124,-2,78,0.006150481042963427],[124,-2,79,0.0073699308632494825],[124,-1,64,-0.008029401149154574],[124,-1,65,-0.007371477258366982],[124,-1,66,-0.006673826875754306],[124,-1,67,-0.0059386080923921],[124,-1,68,-0.005163790425008757],[124,-1,69,-0.004343158533827876],[124,-1,70,-0.0034722314892458917],[124,-1,71,-0.002548472500533316],[124,-1,72,-0.0015713203779946304],[124,-1,73,-5.421841535599451E-4],[124,-1,74,5.355988778656929E-4],[124,-1,75,0.001656841359616162],[124,-1,76,0.0028146199053764196],[124,-1,77,0.0040004244759193055],[124,-1,78,0.005204342540440266],[124,-1,79,0.006415277391972886],[124,0,64,-0.009009809178163559],[124,0,65,-0.008356781327626198],[124,0,66,-0.007660237459532607],[124,0,67,-0.006923243430395519],[124,0,68,-0.0061446463166489424],[124,0,69,-0.005318958978422777],[124,0,70,-0.004442459854201204],[124,0,71,-0.0035133697566504776],[124,0,72,-0.0025318494505197223],[124,0,73,-0.0014999652014529973],[124,0,74,-4.216225767843497E-4],[124,0,75,6.975311553046912E-4],[124,0,76,0.001850235616045643],[124,0,77,0.0030277764183143365],[124,0,78,0.004220174239327505],[124,0,79,0.005416403261811329],[124,1,64,-0.009971156648146908],[124,1,65,-0.009323909767936966],[124,1,66,-0.008630049310961178],[124,1,67,-0.007893558108582421],[124,1,68,-0.00711412432521744],[124,1,69,-0.0062869381464309695],[124,1,70,-0.005408979169056042],[124,1,71,-0.004479161039058716],[124,1,72,-0.003498295994345369],[124,1,73,-0.00246903227636684],[124,1,74,-0.0013957647066217124],[124,1,75,-2.8451878004451134E-4],[124,1,76,8.571913164570232E-4],[124,1,77,0.0020205302966327856],[124,1,78,0.0031955344610410737],[124,1,79,0.004371328908903989],[124,2,64,-0.0033500838383062844],[124,2,65,-0.005309693621790201],[124,2,66,-0.007781529850261978],[124,2,67,-0.008851731908155453],[124,2,68,-0.008074656531643711],[124,2,69,-0.007249747988790513],[124,2,70,-0.006374614618343237],[124,2,71,-0.0054487847812399815],[124,2,72,-0.004473639816649239],[124,2,73,-0.003452324750114402],[124,2,74,-0.002389637061242103],[124,2,75,-0.0012918938646208733],[124,2,76,-1.6677790414866396E-4],[124,2,77,9.768371936533969E-4],[124,2,78,0.002129081918055494],[124,2,79,0.003279305595192897],[124,3,64,-6.157155649221369E-4],[124,3,65,-0.001115048539260085],[124,3,66,-0.0018410240762949924],[124,3,67,-0.002866048629707695],[124,3,68,-0.00424588813570804],[124,3,69,-0.006020225206532694],[124,3,70,-0.00734176694791838],[124,3,71,-0.006424662820604769],[124,3,72,-0.005460245477399263],[124,3,73,-0.00445206389675816],[124,3,74,-0.0034052261522387445],[124,3,75,-0.0023262513894208164],[124,3,76,-0.0012229053743612992],[124,3,77,-1.0402003743160871E-4],[124,3,78,0.0010207025300571393],[124,3,79,0.0021409011394350904],[124,4,64,-3.293803118529282E-4],[124,4,65,-4.800656500143486E-4],[124,4,66,-5.465878635235476E-4],[124,4,67,-6.24724919953613E-4],[124,4,68,-7.928178518038629E-4],[124,4,69,-0.0011122959149018773],[124,4,70,-0.0016354021089184396],[124,4,71,-0.002406073691325263],[124,4,72,-0.0034606416576410397],[124,4,73,-0.004828514879697937],[124,4,74,-0.0044434108926737215],[124,4,75,-0.003388072138266],[124,4,76,-0.0023111847653770044],[124,4,77,-0.0012214625899898517],[124,4,78,-1.2837322618657244E-4],[124,4,79,9.580682274665858E-4],[124,5,64,0.0012457582326304002],[124,5,65,3.3178573042061047E-4],[124,5,66,-1.620010226862524E-4],[124,5,67,-3.5473060310443894E-4],[124,5,68,-3.4727909090218154E-4],[124,5,69,-2.2278362227885827E-4],[124,5,70,-5.4559007663192465E-5],[124,5,71,9.3081451485971E-5],[124,5,72,1.6418525234947946E-4],[124,5,73,1.1052782883636901E-4],[124,5,74,-1.0900845037201689E-4],[124,5,75,-5.290395550395577E-4],[124,5,76,-0.0011782656533749684],[124,5,77,-0.0020800341263160884],[124,5,78,-0.001315459057640396],[124,5,79,-2.6580161145038286E-4],[124,6,64,0.007847986130192441],[124,6,65,0.00505862325329541],[124,6,66,0.003050682551500208],[124,6,67,0.0016817593140820582],[124,6,68,8.284881561988438E-4],[124,6,69,3.860461364175934E-4],[124,6,70,2.600437212783904E-4],[124,6,71,3.6576198921463765E-4],[124,6,72,6.275676554749383E-4],[124,6,73,9.783293187735243E-4],[124,6,74,0.0013588395501266887],[124,6,75,0.0017172466793947622],[124,6,76,0.002008499698352792],[124,6,77,0.0021938094207103382],[124,6,78,0.0022401288136019606],[124,6,79,0.0021196551811303514],[124,7,64,0.02321511880783748],[124,7,65,0.01744009524268436],[124,7,66,0.012831937163490651],[124,7,67,0.00922558791473755],[124,7,68,0.006475523801239359],[124,7,69,0.004455393067278807],[124,7,70,0.0030497861575583033],[124,7,71,0.002153568109757555],[124,7,72,0.001671366584170343],[124,7,73,0.0015170428282966634],[124,7,74,0.0016131564072782933],[124,7,75,0.0018904311919740627],[124,7,76,0.0022872279662599095],[124,7,77,0.002749027684188945],[124,7,78,0.0032279285810737864],[124,7,79,0.00368215981412949],[124,8,64,0.05106140717139413],[124,8,65,0.04120490986793805],[124,8,66,0.0329190417285536],[124,8,67,0.02601903606433864],[124,8,68,0.020339035087788185],[124,8,69,0.015732235882004866],[124,8,70,0.012062815401103495],[124,8,71,0.009205523679002112],[124,8,72,0.007045352647299154],[124,8,73,0.005477129219251934],[124,8,74,0.00440506240276255],[124,8,75,0.0037422650139246603],[124,8,76,0.003410264134434471],[124,8,77,0.0033385100412831234],[124,8,78,0.0034638903575836],[124,8,79,0.00373025419257217],[124,9,64,0.08671840001199856],[124,9,65,0.07999292559127516],[124,9,66,0.06699204604909689],[124,9,67,0.0557684790566149],[124,9,68,0.04614238375683132],[124,9,69,0.03795075442468342],[124,9,70,0.031040154244547424],[124,9,71,0.02526699946598058],[124,9,72,0.020497719749039175],[124,9,73,0.0166086945283869],[124,9,74,0.01348603662319714],[124,9,75,0.011025274478541255],[124,9,76,0.009130969726374892],[124,9,77,0.007716296009794703],[124,9,78,0.006702597264062318],[124,9,79,0.006018938134047297],[124,10,64,0.08473611045627777],[124,10,65,0.08453540858162713],[124,10,66,0.08442340390837111],[124,10,67,0.08438926476854751],[124,10,68,0.08442849862794473],[124,10,69,0.07476915035887095],[124,10,70,0.0636717079506069],[124,10,71,0.05404938976841317],[124,10,72,0.04575428495084527],[124,10,73,0.038647162405316356],[124,10,74,0.03259787338909645],[124,10,75,0.027485477045563214],[124,10,76,0.023198171286401965],[124,10,77,0.019633089686965335],[124,10,78,0.01669600866360784],[124,10,79,0.014300996955590055],[124,11,64,0.08273873626692964],[124,11,65,0.08248688948866346],[124,11,66,0.08232100829382562],[124,11,67,0.08222995763902054],[124,11,68,0.0822091259474189],[124,11,69,0.08226030003109124],[124,11,70,0.08238348702466623],[124,11,71,0.0825769344837688],[124,11,72,0.08283734550786143],[124,11,73,0.07525254498035533],[124,11,74,0.06542925639730592],[124,11,75,0.05683170278534138],[124,11,76,0.049334730608244774],[124,11,77,0.042821433914219456],[124,11,78,0.03718327394485884],[124,11,79,0.03232002464394383],[124,12,64,0.08073408253769201],[124,12,65,0.08043042168940222],[124,12,66,0.08020970130627794],[124,12,67,0.08006068190235739],[124,12,68,0.0799787399195785],[124,12,69,0.07996567610543631],[124,12,70,0.0800215590674641],[124,12,71,0.08014475042979212],[124,12,72,0.08033212270812125],[124,12,73,0.08057926863830527],[124,12,74,0.08088070163151696],[124,12,75,0.08123004705334985],[124,12,76,0.0816202240523845],[124,12,77,0.08092546903406028],[124,12,78,0.07183788259611247],[124,12,79,0.06377090226499281],[124,13,64,0.07873133632469391],[124,13,65,0.07837557962014914],[124,13,66,0.0780994616408966],[124,13,67,0.0778918409662355],[124,13,68,0.07774818149011621],[124,13,69,0.0776702990789295],[124,13,70,0.07765831781869198],[124,13,71,0.07771070311844423],[124,13,72,0.07782448307446917],[124,13,73,0.0779954597077759],[124,13,74,0.07821840976107469],[124,13,75,0.07848727477065866],[124,13,76,0.07879534016115239],[124,13,77,0.07913540314606016],[124,13,78,0.07949992925414393],[124,13,79,0.07988119733970006],[124,14,64,0.07674214689075128],[124,14,65,0.07633441100903647],[124,14,66,0.07600273179719355],[124,14,67,0.07573625894002052],[124,14,68,0.07553062746169127],[124,14,69,0.07538764960530948],[124,14,70,0.07530747903279458],[124,14,71,0.07528865587537882],[124,14,72,0.07532833321757776],[124,14,73,0.075422491733164],[124,14,74,0.07556614217080702],[124,14,75,0.07575351542140615],[124,14,76,0.0759782399364315],[124,14,77,0.07623350630579204],[124,14,78,0.07651221884451527],[124,14,79,0.07680713407859795],[124,15,64,0.07478128776526795],[124,15,65,0.07432203687878691],[124,15,66,0.07393492644749272],[124,15,67,0.07360956925606624],[124,15,68,0.07334183468877634],[124,15,69,0.07313349430395495],[124,15,70,0.07298468986511687],[124,15,71,0.07289399493172001],[124,15,72,0.07285864856093584],[124,15,73,0.07287477516852534],[124,15,74,0.07293759025683351],[124,15,75,0.07304159175820074],[124,15,76,0.07318073678483526],[124,15,77,0.07334860362032224],[124,15,78,0.07353853883303908],[124,15,79,0.07374378943649534],[124,16,64,0.07286161498101684],[124,16,65,0.07235144467728952],[124,16,66,0.07190902860979272],[124,16,67,0.07152459281858536],[124,16,68,0.07119429384256748],[124,16,69,0.07091982594664237],[124,16,70,0.07070128484100238],[124,16,71,0.07053724933422452],[124,16,72,0.07042502338451971],[124,16,73,0.07036086207738927],[124,16,74,0.0703401812487093],[124,16,75,0.07035775051905604],[124,16,76,0.07040786955382979],[124,16,77,0.07048452741328007],[124,16,78,0.07058154490640452],[124,16,79,0.07069269991152607],[124,17,64,0.07098854109347766],[124,17,65,0.07042813212562288],[124,17,66,0.06993052015438762],[124,17,67,0.0694866737923082],[124,17,68,0.06909308248123376],[124,17,69,0.06875133238866309],[124,17,70,0.06846145078293109],[124,17,71,0.06822200995664136],[124,17,72,0.06803037765466909],[124,17,73,0.06788294902957197],[124,17,74,0.06777535985651638],[124,17,75,0.06770268079342963],[124,17,76,0.06765959252707053],[124,17,77,0.06764054170085686],[124,17,78,0.06763987757507678],[124,17,79,0.06765196942315801],[124,18,64,0.06916045598118999],[124,18,65,0.06855057696006478],[124,18,66,0.06799792159611648],[124,18,67,0.06749430946645375],[124,18,68,0.06703660171216418],[124,18,69,0.06662625173792143],[124,18,70,0.0662632061805646],[124,18,71,0.06594603217820968],[124,18,72,0.06567217533406176],[124,18,73,0.06543819671341836],[124,18,74,0.06523998862200313],[124,18,75,0.06507296897421479],[124,18,76,0.0649322541210612],[124,18,77,0.0648128100682173],[124,18,78,0.06470958207425978],[124,18,79,0.06461760267629064],[124,19,64,0.06628611286780868],[124,19,65,0.06585762780571987],[124,19,66,0.0654291310153458],[124,19,67,0.06500922167639049],[124,19,68,0.06460146930165434],[124,19,69,0.06420491077444798],[124,19,70,0.06381955487132596],[124,19,71,0.06344625756284848],[124,19,72,0.06308648356212067],[124,19,73,0.06274209086587752],[124,19,74,0.06241513848704989],[124,19,75,0.062107717518133154],[124,19,76,0.06182180560590576],[124,19,77,0.061559144859981894],[124,19,78,0.06132114316086084],[124,19,79,0.06110879877725589],[124,20,64,0.06277697412858188],[124,20,65,0.06229757766160285],[124,20,66,0.06182400117210263],[124,20,67,0.06136389579881084],[124,20,68,0.060920470163534336],[124,20,69,0.06049300216115315],[124,20,70,0.06008166953195572],[124,20,71,0.05968740157838054],[124,20,72,0.05931163578048011],[124,20,73,0.05895609990227192],[124,20,74,0.05862261977236657],[124,20,75,0.05831295285595946],[124,20,76,0.05802864766983807],[124,20,77,0.0577709290275316],[124,20,78,0.05754060903882095],[124,20,79,0.05733802372638683],[124,21,64,0.05916953390082126],[124,21,65,0.05863813261517312],[124,21,66,0.05811884603676288],[124,21,67,0.05761833080762576],[124,21,68,0.057139415292585635],[124,21,69,0.056681622586314935],[124,21,70,0.05624528810776394],[124,21,71,0.05583138912854198],[124,21,72,0.055441298737254306],[124,21,73,0.055076567702057225],[124,21,74,0.054738734395845944],[124,21,75,0.0544291628755571],[124,21,76,0.05414890913511181],[124,21,77,0.053898615480768394],[124,21,78,0.053678432908987155],[124,21,79,0.05348797130031054],[124,22,64,0.05548433206013118],[124,22,65,0.054899752235939715],[124,22,66,0.054333946302582974],[124,22,67,0.05379255159076121],[124,22,68,0.05327800385471921],[124,22,69,0.05279006889554093],[124,22,70,0.052329222967257435],[124,22,71,0.05189646209851897],[124,22,72,0.051493055870686213],[124,22,73,0.05112033135517017],[124,22,74,0.05077948735208944],[124,22,75,0.05047143899301825],[124,22,76,0.05019669269247851],[124,22,77,0.049955251356294035],[124,22,78,0.04974654968102363],[124,22,79,0.04956941930753391],[124,23,64,0.051743818529899205],[124,23,65,0.05110482437560325],[124,23,66,0.05049150978795064],[124,23,67,0.04990848958027124],[124,23,68,0.04935780154086454],[124,23,69,0.04883944505825047],[124,23,70,0.04835401565456244],[124,23,71,0.04790249656390549],[124,23,72,0.04748601485324543],[124,23,73,0.04710562976703043],[124,23,74,0.04676215341216741],[124,23,75,0.04645600381479706],[124,23,76,0.04618709029660311],[124,23,77,0.04595473103673173],[124,23,78,0.045757602606977504],[124,23,79,0.045593721192920905],[124,24,64,0.047971447603856465],[124,24,65,0.04727676231183474],[124,24,66,0.046614777674630146],[124,24,67,0.04598910413936347],[124,24,68,0.04540138310552936],[124,24,69,0.044851831975628656],[124,24,70,0.04434114001508849],[124,24,71,0.04387024503662147],[124,24,72,0.043440094356237524],[124,24,73,0.04305143979638587],[124,24,74,0.04270466682476775],[124,24,75,0.04239965782698762],[124,24,76,0.042135689422689436],[124,24,77,0.041911363648878375],[124,24,78,0.04172457275205103],[124,24,79,0.04157249725283121],[124,25,64,0.044190804887894695],[124,25,65,0.04343913353670637],[124,25,66,0.04272716107651242],[124,25,67,0.04205753255838906],[124,25,68,0.04143150136242193],[124,25,69,0.04084948117703956],[124,25,70,0.0403122262508678],[124,25,71,0.039820596328735004],[124,25,72,0.03937532481379698],[124,25,73,0.03897682252098484],[124,25,74,0.0386250170802303],[124,25,75,0.03831922795323965],[124,25,76,0.03805807693520019],[124,25,77,0.03783943392354575],[124,25,78,0.03766039765114734],[124,25,79,0.03751731100134427],[124,26,64,0.04042476807567502],[124,26,65,0.03961482136515649],[124,26,66,0.03885140906102376],[124,26,67,0.0381362697141126],[124,26,68,0.03747028360909854],[124,26,69,0.036854033280566],[124,26,70,0.036288306672082576],[124,26,71,0.03577385368024721],[124,26,72,0.035311163702559274],[124,26,73,0.034900280010640834],[124,26,74,0.03454065097594582],[124,26,75,0.03423101807713023],[124,26,76,0.03396934052308471],[124,26,77,0.03375275623413445],[124,26,78,0.0335775788375051],[124,26,79,0.033439330252135115],[124,27,64,0.03669470296940152],[124,27,65,0.03582522073831405],[124,27,66,0.03500880944494493],[124,27,67,0.03424637864395281],[124,27,68,0.03353845664540685],[124,27,69,0.032885762279218286],[124,27,70,0.03228908408797101],[124,27,71,0.03174903196232429],[124,27,72,0.03126582600570135],[124,27,73,0.030839123125170575],[124,27,74,0.030467881343945864],[124,27,75,0.030150261730847165],[124,27,76,0.029883567745258622],[124,27,77,0.029664221703515688],[124,27,78,0.029487777985645613],[124,27,79,0.029348972520253164],[124,28,64,0.033019696276549736],[124,28,65,0.03208946971830763],[124,28,66,0.031218423809311304],[124,28,67,0.03040673340959845],[124,28,68,0.02965460167162487],[124,28,69,0.028962846832498206],[124,28,70,0.028332223894099413],[124,28,71,0.02776317487562587],[124,28,72,0.027255630631408623],[124,28,73,0.02680885094822453],[124,28,74,0.026421302886321593],[124,28,75,0.026090577227368895],[124,28,76,0.025813342795295045],[124,28,77,0.02558533832338438],[124,28,78,0.025401401454416092],[124,28,79,0.025255534380290934],[124,29,64,0.02941582675643606],[124,29,65,0.028423718216215248],[124,29,66,0.027496358224921077],[124,29,67,0.026633295672799803],[124,29,68,0.025834440401740946],[124,29,69,0.02510066979326235],[124,29,70,0.024432670963481555],[124,29,71,0.023830693113604206],[124,29,72,0.023294363605231252],[124,29,73,0.022822542516008362],[124,29,74,0.022413215609987103],[124,29,75,0.022063425556352895],[124,29,76,0.02176924113364171],[124,29,77,0.021525764065049722],[124,29,78,0.02132717304524665],[124,29,79,0.02116680444037617],[124,30,64,0.025895481696486266],[124,30,65,0.024840441144208858],[124,30,66,0.023855077072364953],[124,30,67,0.022938432540513008],[124,30,68,0.02209016010223118],[124,30,69,0.021311153813484775],[124,30,70,0.020601999299273945],[124,30,71,0.01996273154491661],[124,30,72,0.019392666171065547],[124,30,73,0.018890269042674122],[124,30,74,0.01845306411859997],[124,30,75,0.018077579349264815],[124,30,76,0.017759330335046553],[124,30,77,0.01749284136862352],[124,30,78,0.01727170340154154],[124,30,79,0.01708866839889826],[124,31,64,0.022468159098711124],[124,31,65,0.021349299513159465],[124,31,66,0.020304326261116598],[124,31,67,0.019331904331640126],[124,31,68,0.018431468044304844],[124,31,69,0.017603884765822798],[124,31,70,0.016849606774925092],[124,31,71,0.01616843759837149],[124,31,72,0.015559379040505448],[124,31,73,0.01502051606916518],[124,31,74,0.014548939439829852],[124,31,75,0.014140705843098473],[124,31,76,0.013790835268602619],[124,31,77,0.013493345191906888],[124,31,78,0.01324132111098095],[124,31,79,0.013027022885412147],[124,32,64,0.019141966564213554],[124,32,65,0.017958719550017547],[124,32,66,0.01685279519544975],[124,32,67,0.015822611121518074],[124,32,68,0.014867424017715389],[124,32,69,0.013988031753713617],[124,32,70,0.013184724240859105],[124,32,71,0.012457061066291221],[124,32,72,0.011803734421948714],[124,32,73,0.011222469108661001],[124,32,74,0.010709959475849766],[124,32,75,0.010261843063959915],[124,32,76,0.009872710628282962],[124,32,77,0.00953615213988191],[124,32,78,0.009244838282917972],[124,32,79,0.008990636897704726],[124,33,64,0.015920345503002267],[124,33,65,0.014672482898559295],[124,33,66,0.013504576265718606],[124,33,67,0.012414924120698122],[124,33,68,0.01140264608655293],[124,33,69,0.010468430140897223],[124,33,70,0.009612379082792596],[124,33,71,0.008833801742334422],[124,33,72,0.008131091521635945],[124,33,73,0.007501640965608174],[124,33,74,0.006941792205610465],[124,33,75,0.0064468230297113505],[124,33,76,0.006010968248974603],[124,33,77,0.005627475950329641],[124,33,78,0.005288698154151145],[124,33,79,0.004986215328462027],[124,34,64,0.01280109583985226],[124,34,65,0.011488721915505892],[124,34,66,0.010258133008047291],[124,34,67,0.009107628062217828],[124,34,68,0.008036228307766949],[124,34,69,0.007044476003338874],[124,34,70,0.006132268078466966],[124,34,71,0.00529866257804487],[124,34,72,0.004541772070893556],[124,34,73,0.0038586918312591995],[124,34,74,0.003245462623081481],[124,34,75,0.002697067832070015],[124,34,76,0.00220746461081149],[124,34,77,0.001769648627669795],[124,34,78,0.0013757519420093422],[124,34,79,0.0010171734659933293],[124,35,64,0.009775915395009646],[124,35,65,0.008399449544517507],[124,35,66,0.007105822145406821],[124,35,67,0.005893436068221821],[124,35,68,0.004761248769470796],[124,35,69,0.0037096279760807137],[124,35,70,0.0027382539701020555],[124,35,71,0.0018459421483001993],[124,35,72,0.001030550068036598],[124,35,73,2.8891786351562486E-4],[124,35,74,-3.83158146604076E-4],[124,35,75,-9.909189192936355E-4],[124,35,76,-0.0015406035491600826],[124,35,77,-0.002039377936586557],[124,35,78,-0.0024952317302132806],[124,35,79,-0.002916844070319031],[124,36,64,0.006829987638384357],[124,36,65,0.005390136253050346],[124,36,66,0.004033460883612082],[124,36,67,0.002758547383667883],[124,36,68,0.0015643175012114532],[124,36,69,4.509453874119157E-4],[124,36,70,-5.821058135777028E-4],[124,36,71,-0.0015362453724140732],[124,36,72,-0.0024138360433303904],[124,36,73,-0.003218243230822192],[124,36,74,-0.003953852437634187],[124,36,75,-0.004626055252808959],[124,36,76,-0.00524120420919097],[124,36,77,-0.005806536905437591],[124,36,78,-0.006330069847520777],[124,36,79,-0.006820462519316053],[124,37,64,0.00394161915477315],[124,37,65,0.002439335344829573],[124,37,66,0.0010199407391796186],[124,37,67,-3.1775079499525886E-4],[124,37,68,-0.0015748345791012244],[124,37,69,-0.002751336232044673],[124,37,70,-0.0038479972885738815],[124,37,71,-0.0048664218286537915],[124,37,72,-0.005809147979707004],[124,37,73,-0.006679688955996145],[124,37,74,-0.0074825438184685],[124,37,75,-0.008223178209439496],[124,37,76,-0.008907975382970876],[124,37,77,-0.009544157913521699],[124,37,78,-0.010139680521708693],[124,37,79,-0.01070309450726456],[124,38,64,0.0010827518553280751],[124,38,65,-4.8081547466074647E-4],[124,38,66,-0.0019622848082509726],[124,38,67,-0.0033626119105879017],[124,38,68,-0.004682902688257197],[124,38,69,-0.005923373259685983],[124,38,70,-0.007084942123127587],[124,38,71,-0.008169364628733414],[124,38,72,-0.009179297849340951],[124,38,73,-0.010118336290354127],[124,38,74,-0.01099101861759154],[124,38,75,-0.011802805649373338],[124,38,76,-0.012560029922103205],[124,38,77,-0.013269817197033256],[124,38,78,-0.01393998032909868],[124,38,79,-0.014578885967187887],[124,39,64,-0.0017629600259247613],[124,39,65,-0.00338646378400326],[124,39,66,-0.004929090253215175],[124,39,67,-0.006391567932923367],[124,39,68,-0.007775010592141331],[124,39,69,-0.009079814584193721],[124,39,70,-0.01030704586598939],[124,39,71,-0.011458565585313793],[124,39,72,-0.012537091735991721],[124,39,73,-0.013546232742999905],[124,39,74,-0.014490493147405237],[124,39,75,-0.015375251625622165],[124,39,76,-0.016206711637830433],[124,39,77,-0.016991825056352775],[124,39,78,-0.016878202528512715],[124,39,79,-0.015104014559776481],[124,40,64,-0.004596793013348681],[124,40,65,-0.00627866989646144],[124,40,66,-0.007881293688553023],[124,40,67,-0.009405136824782931],[124,40,68,-0.010851313478373932],[124,40,69,-0.012220404010197966],[124,40,70,-0.013513605008223933],[124,40,71,-0.014732849042464358],[124,40,72,-0.015880866729427373],[124,40,73,-0.01696122158175926],[124,40,74,-0.017978317799117856],[124,40,75,-0.01893738121912418],[124,40,76,-0.017958297078229057],[124,40,77,-0.016215447101111065],[124,40,78,-0.014472682040388516],[124,40,79,-0.0127394800909842],[124,41,64,-0.007419968792672644],[124,41,65,-0.009158480608836365],[124,41,66,-0.010819724765740262],[124,41,67,-0.012403864290802218],[124,41,68,-0.013912003905187714],[124,41,69,-0.015344924536573904],[124,41,70,-0.016703948852650162],[124,41,71,-0.017991057945428972],[124,41,72,-0.019208957476405532],[124,41,73,-0.02036111721465154],[124,41,74,-0.018904158130656604],[124,41,75,-0.01722529704189293],[124,41,76,-0.015530790975988595],[124,41,77,-0.013828964949794041],[124,41,78,-0.012128634203437535],[124,41,79,-0.010438990422408142],[124,42,64,-0.010233550183485016],[124,42,65,-0.012026841031047515],[124,42,66,-0.013745155046664874],[124,42,67,-0.015388276576393335],[124,42,68,-0.016957291275666784],[124,42,69,-0.01845320825490916],[124,42,70,-0.019877482992363537],[124,42,71,-0.02121731455119594],[124,42,72,-0.01966248339768651],[124,42,73,-0.01807318687587308],[124,42,74,-0.016455716177323974],[124,42,75,-0.014816982678146842],[124,42,76,-0.013164489272721066],[124,42,77,-0.011506276138315407],[124,42,78,-0.009850841264666335],[124,42,79,-0.008207036139160007],[124,43,64,-0.013037526684993396],[124,43,65,-0.014883694967589187],[124,43,66,-0.01665741953945292],[124,43,67,-0.018358028862638064],[124,43,68,-0.019986582685817822],[124,43,69,-0.021544355518688895],[124,43,70,-0.020199048167379406],[124,43,71,-0.018716968839343612],[124,43,72,-0.017197437600935825],[124,43,73,-0.015646027271071932],[124,43,74,-0.014068857499685089],[124,43,75,-0.012472602909557087],[124,43,76,-0.010864475472765717],[124,43,77,-0.009252181369361153],[124,43,78,-0.0076438526366497065],[124,43,79,-0.006047953973810631],[124,44,64,-0.015829810672580404],[124,44,65,-0.017726997290252153],[124,44,66,-0.019554452136884858],[124,44,67,-0.021310970178434644],[124,44,68,-0.020496188426917597],[124,44,69,-0.019132534728630704],[124,44,70,-0.017724503732353264],[124,44,71,-0.01627679931417217],[124,44,72,-0.014794465821411862],[124,44,73,-0.013282961805639735],[124,44,74,-0.011748207605459013],[124,44,75,-0.010196606866878736],[124,44,76,-0.008635042155813068],[124,44,77,-0.007070844881695192],[124,44,78,-0.005511739812373934],[124,44,79,-0.003965764517294749],[124,45,64,-0.018605142623935096],[124,45,65,-0.020551636680262865],[124,45,66,-0.02054259220624964],[124,45,67,-0.019306483647765396],[124,45,68,-0.018019392060193522],[124,45,69,-0.016686063316023146],[124,45,70,-0.01531121577804249],[124,45,71,-0.013899665943423654],[124,45,72,-0.012456444633852072],[124,45,73,-0.010986886794830448],[124,45,74,-0.0094966948889047],[124,45,75,-0.007991975936845076],[124,45,76,-0.006479252328569657],[124,45,77,-0.004965446591017944],[124,45,78,-0.003243098525813215],[124,45,79,-0.001250162583067081],[124,46,64,-0.020325302419801253],[124,46,65,-0.019222246556384836],[124,46,66,-0.01806603321253275],[124,46,67,-0.01685715248347742],[124,46,68,-0.01559950639713617],[124,46,69,-0.014298300386371022],[124,46,70,-0.012958548697092617],[124,46,71,-0.011585205005197156],[124,46,72,-0.010183297118034316],[124,46,73,-0.008758034950673415],[124,46,74,-0.007138144319502786],[124,46,75,-0.005084585198325532],[124,46,76,-0.0030341114730645146],[124,46,77,-9.925130906092254E-4],[124,46,78,0.0010341520164631752],[124,46,79,0.0030396094370530443],[124,47,64,-0.017849133642311322],[124,47,65,-0.016770292212582784],[124,47,66,-0.015641154890621695],[124,47,67,-0.014461528223775364],[124,47,68,-0.013235362623363688],[124,47,69,-0.011968386357016338],[124,47,70,-0.010665956542974486],[124,47,71,-0.009140016630379897],[124,47,72,-0.007086572355859476],[124,47,73,-0.0050233660846170265],[124,47,74,-0.0029551841741386393],[124,47,75,-8.869853890190885E-4],[124,47,76,0.001176053424870589],[124,47,77,0.003228518896175299],[124,47,78,0.005264769732764383],[124,47,79,0.007278972129296462],[124,48,64,-0.015435588445829752],[124,48,65,-0.01438294767907649],[124,48,66,-0.013282814046792891],[124,48,67,-0.01213427835344396],[124,48,68,-0.010941367363808479],[124,48,69,-0.009165081631065596],[124,48,70,-0.007118958692469578],[124,48,71,-0.005056586300565165],[124,48,72,-0.00298276255718624],[124,48,73,-0.004510696335458075],[124,48,74,0.005903075284532764],[124,48,75,0.016302848997596826],[124,48,76,0.026662251140358962],[124,48,77,0.007394057259922352],[124,48,78,0.00943682158676601],[124,48,79,0.011456587141457473],[124,49,64,-0.06542206880143947],[124,49,65,-0.060318647889781724],[124,49,66,-0.05498864891814935],[124,49,67,-0.04630186036928629],[124,49,68,-0.03618049782511123],[124,49,69,-0.025928299113067012],[124,49,70,-0.01557735327437367],[124,49,71,-0.005156649425110074],[124,49,72,0.005306993394064263],[124,49,73,0.01578813036519247],[124,49,74,0.026262032862940668],[124,49,75,0.03670417116172417],[124,49,76,0.04708983969357355],[124,49,77,0.057393925453145936],[124,49,78,0.013538017169772378],[124,49,79,0.015561044723716864],[124,50,64,-0.0542725323695571],[124,50,65,-0.04713073135802407],[124,50,66,-0.03719120434390991],[124,50,67,-0.027071871065669693],[124,50,68,-0.016795643749673395],[124,50,69,-0.00640238246291006],[124,50,70,0.004072880605412601],[124,50,71,0.01459924959486254],[124,50,72,0.025148924264361123],[124,50,73,0.03569629441395726],[124,50,74,0.04621717370905716],[124,50,75,0.05668817625489733],[124,50,76,0.0670862381391649],[124,50,77,0.0773882849098924],[124,50,78,0.08757104465182243],[124,50,79,0.09761100503370042],[124,51,64,-0.038557909384273135],[124,51,65,-0.02861690513753199],[124,51,66,-0.01851746276707102],[124,51,67,-0.008245895538628005],[124,51,68,0.0021735385910577397],[124,51,69,0.012696810568954673],[124,51,70,0.023285798902927212],[124,51,71,0.03390757191588101],[124,51,72,0.04453323331100872],[124,51,73,0.05513690430671136],[124,51,74,0.06569484714456075],[124,51,75,0.07618473381694313],[124,51,76,0.08658506268021454],[124,51,77,0.09687472431319662],[124,51,78,0.10703271662434159],[124,51,79,0.11703800787200298],[124,52,64,-0.02065607086382952],[124,52,65,-0.010558245530126185],[124,52,66,-3.117294989219768E-4],[124,52,67,0.010100362836832003],[124,52,68,0.02065230380408017],[124,52,69,0.03129578044879094],[124,52,70,0.041989467776839824],[124,52,71,0.05269828332748787],[124,52,72,0.06339211821581014],[124,52,73,0.07404470650003374],[124,52,74,0.08463263828307035],[124,52,75,0.09513452094293434],[124,52,76,0.10553029163083846],[124,52,77,0.11580068279229601],[124,52,78,0.12592684103821114],[124,52,79,0.13527712372932826],[124,53,64,-0.0032594250387571817],[124,53,65,0.006981446999286901],[124,53,66,0.017362703427010497],[124,53,67,0.027904286708215393],[124,53,68,0.03857887986420945],[124,53,69,0.04933382408269115],[124,53,70,0.060124512343082345],[124,53,71,0.07091361534107697],[124,53,72,0.08166969922658521],[124,53,73,0.09236598372423119],[124,53,74,0.10297924671191153],[124,53,75,0.11348888023349432],[124,53,76,0.12387610156582297],[124,53,77,0.1341233214773935],[124,53,78,0.14349955260193292],[124,53,79,0.152325854131375],[124,54,64,0.013580813137764863],[124,54,65,0.023951302684273628],[124,54,66,0.0344554772623232],[124,54,67,0.045116127465574384],[124,54,68,0.055904235483941654],[124,54,69,0.0667627891334967],[124,54,70,0.07764385929325732],[124,54,71,0.0885077967468983],[124,54,72,0.099321739757642],[124,54,73,0.11005826434723005],[124,54,74,0.1095700006134364],[124,54,75,0.11319431415425711],[124,54,76,0.1321353160806801],[124,54,77,0.15070733665624375],[124,54,78,0.15994105387976396],[124,54,79,0.16901802053604448],[124,55,64,0.02826335876439823],[124,55,65,0.040207182854878336],[124,55,66,0.05092876706765798],[124,55,67,0.06169858910115278],[124,55,68,0.072591651681287],[124,55,69,0.08354663648051315],[124,55,70,0.09451229244284305],[124,55,71,0.09896205848936557],[124,55,72,0.07587710439460799],[124,55,73,0.057936140095753694],[124,55,74,0.04766509528031592],[124,55,75,0.05146612260253349],[124,55,76,0.07009774193512935],[124,55,77,0.10352128755423916],[124,55,78,0.14265558799285707],[124,55,79,0.1846281165060508],[124,56,64,0.04180818729008923],[124,56,65,0.053477598103481114],[124,56,66,0.05880664321989982],[124,56,67,0.07111844199044322],[124,56,68,0.07726098478852976],[124,56,69,0.0706815456070939],[124,56,70,0.057378515042098455],[124,56,71,0.04054352809841503],[124,56,72,0.01723794805494665],[124,56,73,0.002753587545286403],[124,56,74,7.603462890869876E-4],[124,56,75,0.0028475969423085758],[124,56,76,0.01140024725515169],[124,56,77,0.04471596888256342],[124,56,78,0.08481173047536018],[124,56,79,0.12852691612764366],[124,57,64,0.0028562501370978876],[124,57,65,-0.0023147746336492823],[124,57,66,-0.0020678002368106564],[124,57,67,0.0067768638157997396],[124,57,68,0.012320240369171322],[124,57,69,0.0057946063161005475],[124,57,70,-0.004340476163399764],[124,57,71,-0.007473658200130537],[124,57,72,-0.012752260142971029],[124,57,73,-0.0158096253041207],[124,57,74,-0.017079787066078888],[124,57,75,-0.015238859308145229],[124,57,76,-0.009816105328721498],[124,57,77,-0.0021788900165341874],[124,57,78,0.020353690563195397],[124,57,79,0.06359083341661609],[124,58,64,0.0018799127340293975],[124,58,65,-0.004378579608717618],[124,58,66,-0.005100058821977925],[124,58,67,-0.0026214653574791937],[124,58,68,-0.0020767436151928574],[124,58,69,-0.002943016461345653],[124,58,70,-0.006723620868406433],[124,58,71,-0.01007410389994447],[124,58,72,-0.014946612140259595],[124,58,73,-0.01873977055874614],[124,58,74,-0.020291481430650966],[124,58,75,-0.01782959330467055],[124,58,76,-0.012170131455811398],[124,58,77,-0.005044067392117774],[124,58,78,0.004667214288535533],[124,58,79,0.014822036382649948],[124,59,64,-0.014814869904879497],[124,59,65,-0.020205380853562393],[124,59,66,-0.02132256687734562],[124,59,67,-0.019149937451082413],[124,59,68,-0.01799627538694642],[124,59,69,-0.019003623419088043],[124,59,70,-0.022777496981156085],[124,59,71,-0.026251863074178674],[124,59,72,-0.03063539562726237],[124,59,73,-0.03416097659613659],[124,59,74,-0.03572424181333265],[124,59,75,-0.034015441465598976],[124,59,76,-0.028605184397894827],[124,59,77,-0.020071036217126838],[124,59,78,-0.01087595468904999],[124,59,79,-0.0015531156689493467],[124,60,64,-0.033729060298063454],[124,60,65,-0.03915999242274346],[124,60,66,-0.04062740064249005],[124,60,67,-0.03781906698620319],[124,60,68,-0.03660634922712756],[124,60,69,-0.03849443584959599],[124,60,70,-0.04106936165998065],[124,60,71,-0.0440310748385332],[124,60,72,-0.048715160337165046],[124,60,73,-0.052285190305553515],[124,60,74,-0.053817378732386144],[124,60,75,-0.05250425084011371],[124,60,76,-0.04728513989989405],[124,60,77,-0.03834343339591144],[124,60,78,-0.029690171039206834],[124,60,79,-0.02052542233536346],[124,61,64,-0.04824632084405746],[124,61,65,-0.052665224782766036],[124,61,66,-0.05213834650639378],[124,61,67,-0.04904723289205795],[124,61,68,-0.048211333183572826],[124,61,69,-0.05020987511871591],[124,61,70,-0.05239892049181619],[124,61,71,-0.056149610951813526],[124,61,72,-0.061480136274040906],[124,61,73,-0.06523207107795075],[124,61,74,-0.06643430654744618],[124,61,75,-0.06474152908470289],[124,61,76,-0.05928201735072152],[124,61,77,-0.05121022068523315],[124,61,78,-0.04131814527162397],[124,61,79,-0.032003436421625314],[124,62,64,-0.06402899408157432],[124,62,65,-0.06803898922963066],[124,62,66,-0.06727007007707647],[124,62,67,-0.06454976573302353],[124,62,68,-0.06337910381689218],[124,62,69,-0.06544230671769083],[124,62,70,-0.0684757101819533],[124,62,71,-0.07188139780815991],[124,62,72,-0.07773781279957005],[124,62,73,-0.08170615868580092],[124,62,74,-0.08215725839252787],[124,62,75,-0.07996414649523668],[124,62,76,-0.07495886304729805],[124,62,77,-0.06692959299170666],[124,62,78,-0.056533247082083814],[124,62,79,-0.04711800511726529],[124,63,64,-0.10222769635437033],[124,63,65,-0.1055137949901463],[124,63,66,-0.10492255706409948],[124,63,67,-0.10171907998653207],[124,63,68,-0.10020734185321069],[124,63,69,-0.1020205730647578],[124,63,70,-0.10470571477156398],[124,63,71,-0.10854256482552148],[124,63,72,-0.11376930758043653],[124,63,73,-0.11775248271236446],[124,63,74,-0.11778814026507768],[124,63,75,-0.11444241920163657],[124,63,76,-0.10936360533103805],[124,63,77,-0.1008236643248358],[124,63,78,-0.09058211561118786],[124,63,79,-0.07977256263780638],[124,64,64,-0.11408443777535457],[124,64,65,-0.11832302681773436],[124,64,66,-0.11753662299770697],[124,64,67,-0.11470010224987258],[124,64,68,-0.11273919558871824],[124,64,69,-0.11472645535529036],[124,64,70,-0.11801371880050338],[124,64,71,-0.12094815590475023],[124,64,72,-0.12651850489806696],[124,64,73,-0.13039516068518672],[124,64,74,-0.1303786093202703],[124,64,75,-0.12787855746747548],[124,64,76,-0.1217411630362337],[124,64,77,-0.11369738537267111],[124,64,78,-0.10304516833291485],[124,64,79,-0.09161383720221312],[124,65,64,-0.12922871645008088],[124,65,65,-0.13360178135264503],[124,65,66,-0.13358198066328317],[124,65,67,-0.13064916581302868],[124,65,68,-0.12907724357534836],[124,65,69,-0.1307332740679456],[124,65,70,-0.13398356864197297],[124,65,71,-0.1374009601865838],[124,65,72,-0.14232729938621141],[124,65,73,-0.14630040761391122],[124,65,74,-0.14560335835704516],[124,65,75,-0.14403378889177396],[124,65,76,-0.1387298168118298],[124,65,77,-0.13069681071092856],[124,65,78,-0.1192730864455762],[124,65,79,-0.10715846728920211],[124,66,64,-0.1462123993296427],[124,66,65,-0.15088767833949807],[124,66,66,-0.15084823472933737],[124,66,67,-0.14843249528489372],[124,66,68,-0.14712894077765537],[124,66,69,-0.1483385456563568],[124,66,70,-0.15225921084161853],[124,66,71,-0.15577193287117932],[124,66,72,-0.1601903065831085],[124,66,73,-0.16339318160909566],[124,66,74,-0.16359908328060557],[124,66,75,-0.16212969207820982],[124,66,76,-0.15719540449934707],[124,66,77,-0.1490734735545008],[124,66,78,-0.1372584881565671],[124,66,79,-0.12520807208061874],[124,67,64,-0.16124218873565524],[124,67,65,-0.16600445715479573],[124,67,66,-0.16662202662506687],[124,67,67,-0.16460094510690965],[124,67,68,-0.16270922246643046],[124,67,69,-0.1640005156656844],[124,67,70,-0.16890942249042662],[124,67,71,-0.17192414299535594],[124,67,72,-0.1764464460052481],[124,67,73,-0.17943863168317523],[124,67,74,-0.18023927180172605],[124,67,75,-0.17874932881468633],[124,67,76,-0.1738906605764325],[124,67,77,-0.16511075459307056],[124,67,78,-0.1541117245506052],[124,67,79,-0.14205884750311992],[124,68,64,-0.20461973687030316],[124,68,65,-0.2098282600342559],[124,68,66,-0.21005854691180176],[124,68,67,-0.20851298085706682],[124,68,68,-0.20756582540265534],[124,68,69,-0.2085273194061938],[124,68,70,-0.2129888446174192],[124,68,71,-0.2159168114712963],[124,68,72,-0.2208450538140465],[124,68,73,-0.22454452209025955],[124,68,74,-0.22573910405712944],[124,68,75,-0.22383579049864333],[124,68,76,-0.21867079709829856],[124,68,77,-0.2092327732352197],[124,68,78,-0.19856401685854877],[124,68,79,-0.1873249001494144],[124,69,64,-0.22033857623604666],[124,69,65,-0.22616099717497554],[124,69,66,-0.22737753706084843],[124,69,67,-0.2261237129320264],[124,69,68,-0.2253137431707824],[124,69,69,-0.226058416579159],[124,69,70,-0.22912168148744827],[124,69,71,-0.2328998948350689],[124,69,72,-0.23838932094949936],[124,69,73,-0.24338889456868323],[124,69,74,-0.24480422163495355],[124,69,75,-0.24334223124897222],[124,69,76,-0.23716891354372904],[124,69,77,-0.22684338338023002],[124,69,78,-0.21616739235820936],[124,69,79,-0.20528482859192843],[124,70,64,-0.2360316137856341],[124,70,65,-0.24142242784114268],[124,70,66,-0.24280098091012456],[124,70,67,-0.24252865335119056],[124,70,68,-0.240541847211056],[124,70,69,-0.24217147076884266],[124,70,70,-0.24371992947624843],[124,70,71,-0.24823343287420838],[124,70,72,-0.2532732345156009],[124,70,73,-0.25909046926996193],[124,70,74,-0.25989668490430196],[124,70,75,-0.25883457404460175],[124,70,76,-0.252834758068878],[124,70,77,-0.24214067062180256],[124,70,78,-0.23121791563929495],[124,70,79,-0.22056126821782415],[124,71,64,-0.24777454023510778],[124,71,65,-0.25345572888100903],[124,71,66,-0.2554590053712426],[124,71,67,-0.2550025993849821],[124,71,68,-0.2532789882496777],[124,71,69,-0.2544966986023094],[124,71,70,-0.25630493438772717],[124,71,71,-0.2602519369566414],[124,71,72,-0.26610946602004726],[124,71,73,-0.2717198807737893],[124,71,74,-0.2729357703740508],[124,71,75,-0.27126241202181073],[124,71,76,-0.2641839746638518],[124,71,77,-0.25516790218570173],[124,71,78,-0.244228163672398],[124,71,79,-0.23386780391912154],[124,72,64,-0.2634571233374964],[124,72,65,-0.26934341923722604],[124,72,66,-0.270471491823768],[124,72,67,-0.27063612991569536],[124,72,68,-0.26910222683905094],[124,72,69,-0.2698247279436396],[124,72,70,-0.27155984859280485],[124,72,71,-0.27534391483192056],[124,72,72,-0.28111309987471383],[124,72,73,-0.286088334303923],[124,72,74,-0.2875441636410085],[124,72,75,-0.2861941661969818],[124,72,76,-0.27902075204533217],[124,72,77,-0.2698918824824545],[124,72,78,-0.2583699475856172],[124,72,79,-0.24876595212628386],[124,73,64,-0.281710336914653],[124,73,65,-0.2864439816193928],[124,73,66,-0.2858155372461376],[124,73,67,-0.2844003803595315],[124,73,68,-0.28294967467137494],[124,73,69,-0.28300938224608163],[124,73,70,-0.2846781145711964],[124,73,71,-0.2881503445647194],[124,73,72,-0.29424104978161075],[124,73,73,-0.29749614747868275],[124,73,74,-0.29925397046822594],[124,73,75,-0.2976020924546213],[124,73,76,-0.29115276184499284],[124,73,77,-0.2829550509153248],[124,73,78,-0.27314350791013414],[124,73,79,-0.26500597072045373],[124,74,64,-0.29899451605137517],[124,74,65,-0.3027024972399788],[124,74,66,-0.30229118845472075],[124,74,67,-0.30037592544137837],[124,74,68,-0.2993545193872824],[124,74,69,-0.29936164232457413],[124,74,70,-0.3009022996311147],[124,74,71,-0.30466321965598336],[124,74,72,-0.31093071724071697],[124,74,73,-0.31449287129213144],[124,74,74,-0.3148360222154311],[124,74,75,-0.31399075727316456],[124,74,76,-0.3077387430935373],[124,74,77,-0.29979269815062815],[124,74,78,-0.29002106834694413],[124,74,79,-0.2822274365386719],[124,75,64,-0.3140716357204025],[124,75,65,-0.31685076738460993],[124,75,66,-0.31683411512287346],[124,75,67,-0.31477713541729047],[124,75,68,-0.31332069708107807],[124,75,69,-0.313355927559938],[124,75,70,-0.31527910434397777],[124,75,71,-0.3190283704156459],[124,75,72,-0.3251603711054338],[124,75,73,-0.32846910651157785],[124,75,74,-0.32940904123459486],[124,75,75,-0.32861711141748845],[124,75,76,-0.32286845621900806],[124,75,77,-0.31532122962356574],[124,75,78,-0.3059748996639621],[124,75,79,-0.29788865587114516],[124,76,64,-0.327293278932882],[124,76,65,-0.3303607501240202],[124,76,66,-0.32950015733084626],[124,76,67,-0.3275866890229916],[124,76,68,-0.32637174137722186],[124,76,69,-0.32654564928770496],[124,76,70,-0.329441281324927],[124,76,71,-0.3334449564565362],[124,76,72,-0.339018238786863],[124,76,73,-0.3430463055733002],[124,76,74,-0.3444051108894259],[124,76,75,-0.34357729441219054],[124,76,76,-0.33829368112768476],[124,76,77,-0.32997128452096414],[124,76,78,-0.32175064993397295],[124,76,79,-0.31225929622302356],[124,77,64,-0.3401343516180782],[124,77,65,-0.34292096796844257],[124,77,66,-0.3423537697194346],[124,77,67,-0.3398807082565271],[124,77,68,-0.33895923446318216],[124,77,69,-0.3403351084263729],[124,77,70,-0.34349815246597165],[124,77,71,-0.34775362217152134],[124,77,72,-0.3534525859703067],[124,77,73,-0.35817051466594435],[124,77,74,-0.35943742106789656],[124,77,75,-0.3584187602773411],[124,77,76,-0.353396673537341],[124,77,77,-0.34573824300097655],[124,77,78,-0.33653670243758166],[124,77,79,-0.32700568496462723],[124,78,64,-0.35435572275341565],[124,78,65,-0.35628888175338574],[124,78,66,-0.3549390035068351],[124,78,67,-0.35256911858217127],[124,78,68,-0.3515371224353415],[124,78,69,-0.3538367391899028],[124,78,70,-0.3569216868329355],[124,78,71,-0.361883242377501],[124,78,72,-0.36736514299100387],[124,78,73,-0.37204897302008144],[124,78,74,-0.3735439741112277],[124,78,75,-0.3723588807233013],[124,78,76,-0.3679646728030349],[124,78,77,-0.36104797512754055],[124,78,78,-0.3511526723113956],[124,78,79,-0.34230154831624837],[124,79,64,-0.36493946017379836],[124,79,65,-0.3670846103098358],[124,79,66,-0.36540350712429637],[124,79,67,-0.3626525575852706],[124,79,68,-0.36249067179827593],[124,79,69,-0.36472108743891674],[124,79,70,-0.36762502664688396],[124,79,71,-0.3726918341033773],[124,79,72,-0.37805274131170236],[124,79,73,-0.38296770662223806],[124,79,74,-0.3854158869676901],[124,79,75,-0.38402257976250254],[124,79,76,-0.3805615094933693],[124,79,77,-0.3735516409507859],[124,79,78,-0.36469248619797723],[124,79,79,-0.3558864233338507],[124,80,64,-0.378513110274629],[124,80,65,-0.3812412008081609],[124,80,66,-0.37887533037235366],[124,80,67,-0.37593688706563366],[124,80,68,-0.3755672366866089],[124,80,69,-0.37755977270930047],[124,80,70,-0.3806264904596738],[124,80,71,-0.385407815566156],[124,80,72,-0.39139114552312176],[124,80,73,-0.3964259282042597],[124,80,74,-0.39905004304932734],[124,80,75,-0.3985747244903164],[124,80,76,-0.3946373010867482],[124,80,77,-0.3879364749673121],[124,80,78,-0.3799561373342018],[124,80,79,-0.37077382243365237],[124,81,64,-0.39194331202400157],[124,81,65,-0.39406230257234565],[124,81,66,-0.3912963271148727],[124,81,67,-0.38753690389854734],[124,81,68,-0.3862598719360885],[124,81,69,-0.3881060354162247],[124,81,70,-0.39175432325916226],[124,81,71,-0.39766812067690704],[124,81,72,-0.40439040697778106],[124,81,73,-0.4104486418543672],[124,81,74,-0.4135735484844465],[124,81,75,-0.41294646489484776],[124,81,76,-0.40943399956388865],[124,81,77,-0.40299120046055004],[124,81,78,-0.39616914140998494],[124,81,79,-0.38713317670846914],[124,82,64,-0.4071271376054009],[124,82,65,-0.40853196453834706],[124,82,66,-0.40542522984308027],[124,82,67,-0.40186280090336746],[124,82,68,-0.4007843781792932],[124,82,69,-0.4026396205014028],[124,82,70,-0.4061312270163988],[124,82,71,-0.4119203909439789],[124,82,72,-0.41919629970305017],[124,82,73,-0.42509736956112093],[124,82,74,-0.42820643954070703],[124,82,75,-0.4275544334574674],[124,82,76,-0.4249001928832496],[124,82,77,-0.418373149113592],[124,82,78,-0.41131024738427163],[124,82,79,-0.4014701126201612],[124,83,64,-0.41941834481634443],[124,83,65,-0.4209275573101227],[124,83,66,-0.4174813461254779],[124,83,67,-0.41455174650935234],[124,83,68,-0.41376094294689614],[124,83,69,-0.41600696795598463],[124,83,70,-0.41914158177524397],[124,83,71,-0.4241693023289847],[124,83,72,-0.4315581965442985],[124,83,73,-0.43792865113198165],[124,83,74,-0.441937967190621],[124,83,75,-0.4411517957713185],[124,83,76,-0.4381796062667693],[124,83,77,-0.43243778287000345],[124,83,78,-0.424623945387245],[124,83,79,-0.4148804839427244],[124,84,64,-0.42994175722589806],[124,84,65,-0.4315903691767025],[124,84,66,-0.4291369851565679],[124,84,67,-0.4261828926649467],[124,84,68,-0.42573988548265534],[124,84,69,-0.42819791103430727],[124,84,70,-0.4318995393641549],[124,84,71,-0.4363783981406441],[124,84,72,-0.44447121316370775],[124,84,73,-0.45067689630415925],[124,84,74,-0.454098494120172],[124,84,75,-0.4541942787421214],[124,84,76,-0.45137472551995084],[124,84,77,-0.445428382477454],[124,84,78,-0.4377232843425062],[124,84,79,-0.42756356311149446],[124,85,64,-0.44208917443098383],[124,85,65,-0.4448885342733459],[124,85,66,-0.44413258719043097],[124,85,67,-0.44124132689969986],[124,85,68,-0.4405738933668656],[124,85,69,-0.44251288635116054],[124,85,70,-0.4465872262496315],[124,85,71,-0.45129694077912663],[124,85,72,-0.45794738784296424],[124,85,73,-0.4583333333333333],[124,85,74,-0.4583333333333333],[124,85,75,-0.4583333333333333],[124,85,76,-0.4583333333333333],[124,85,77,-0.45706237345862694],[124,85,78,-0.4486324156294634],[124,85,79,-0.4379693180510895],[124,86,64,-0.45449693812236885],[124,86,65,-0.457084886150133],[124,86,66,-0.4567155676407687],[124,86,67,-0.4540574738603402],[124,86,68,-0.4527669392765406],[124,86,69,-0.4542329356454407],[124,86,70,-0.4583333333333333],[124,86,71,-0.4583333333333333],[124,86,72,-0.4583333333333333],[124,86,73,-0.4583333333333333],[124,86,74,-0.4583333333333333],[124,86,75,-0.4583333333333333],[124,86,76,-0.4583333333333333],[124,86,77,-0.4583333333333333],[124,86,78,-0.4583333333333333],[124,86,79,-0.4505364890296264],[124,87,64,-0.4583333333333333],[124,87,65,-0.4583333333333333],[124,87,66,-0.4583333333333333],[124,87,67,-0.4583333333333333],[124,87,68,-0.4583333333333333],[124,87,69,-0.4583333333333333],[124,87,70,-0.4583333333333333],[124,87,71,-0.4583333333333333],[124,87,72,-0.4583333333333333],[124,87,73,-0.4583333333333333],[124,87,74,-0.4583333333333333],[124,87,75,-0.4583333333333333],[124,87,76,-0.4583333333333333],[124,87,77,-0.4583333333333333],[124,87,78,-0.4583333333333333],[124,87,79,-0.4583333333333333],[124,88,64,-0.4583333333333333],[124,88,65,-0.4583333333333333],[124,88,66,-0.4583333333333333],[124,88,67,-0.4583333333333333],[124,88,68,-0.4583333333333333],[124,88,69,-0.4583333333333333],[124,88,70,-0.4583333333333333],[124,88,71,-0.4583333333333333],[124,88,72,-0.4583333333333333],[124,88,73,-0.4583333333333333],[124,88,74,-0.4583333333333333],[124,88,75,-0.4583333333333333],[124,88,76,-0.4583333333333333],[124,88,77,-0.4583333333333333],[124,88,78,-0.4583333333333333],[124,88,79,-0.4583333333333333],[124,89,64,-0.4583333333333333],[124,89,65,-0.4583333333333333],[124,89,66,-0.4583333333333333],[124,89,67,-0.4583333333333333],[124,89,68,-0.4583333333333333],[124,89,69,-0.4583333333333333],[124,89,70,-0.4583333333333333],[124,89,71,-0.4583333333333333],[124,89,72,-0.4583333333333333],[124,89,73,-0.4583333333333333],[124,89,74,-0.4583333333333333],[124,89,75,-0.4583333333333333],[124,89,76,-0.4583333333333333],[124,89,77,-0.4583333333333333],[124,89,78,-0.4583333333333333],[124,89,79,-0.4583333333333333],[124,90,64,-0.4583333333333333],[124,90,65,-0.4583333333333333],[124,90,66,-0.4583333333333333],[124,90,67,-0.4583333333333333],[124,90,68,-0.4583333333333333],[124,90,69,-0.4583333333333333],[124,90,70,-0.4583333333333333],[124,90,71,-0.4583333333333333],[124,90,72,-0.4583333333333333],[124,90,73,-0.4583333333333333],[124,90,74,-0.4583333333333333],[124,90,75,-0.4583333333333333],[124,90,76,-0.4583333333333333],[124,90,77,-0.4583333333333333],[124,90,78,-0.4583333333333333],[124,90,79,-0.4583333333333333],[124,91,64,-0.4583333333333333],[124,91,65,-0.4583333333333333],[124,91,66,-0.4583333333333333],[124,91,67,-0.4583333333333333],[124,91,68,-0.4583333333333333],[124,91,69,-0.4583333333333333],[124,91,70,-0.4583333333333333],[124,91,71,-0.4583333333333333],[124,91,72,-0.4583333333333333],[124,91,73,-0.4583333333333333],[124,91,74,-0.4583333333333333],[124,91,75,-0.4583333333333333],[124,91,76,-0.4583333333333333],[124,91,77,-0.4583333333333333],[124,91,78,-0.4583333333333333],[124,91,79,-0.4583333333333333],[124,92,64,-0.4583333333333333],[124,92,65,-0.4583333333333333],[124,92,66,-0.4583333333333333],[124,92,67,-0.4583333333333333],[124,92,68,-0.4583333333333333],[124,92,69,-0.4583333333333333],[124,92,70,-0.4583333333333333],[124,92,71,-0.4583333333333333],[124,92,72,-0.4583333333333333],[124,92,73,-0.4583333333333333],[124,92,74,-0.4583333333333333],[124,92,75,-0.4583333333333333],[124,92,76,-0.4583333333333333],[124,92,77,-0.4583333333333333],[124,92,78,-0.4583333333333333],[124,92,79,-0.4583333333333333],[124,93,64,-0.4583333333333333],[124,93,65,-0.4583333333333333],[124,93,66,-0.4583333333333333],[124,93,67,-0.4583333333333333],[124,93,68,-0.4583333333333333],[124,93,69,-0.4583333333333333],[124,93,70,-0.4583333333333333],[124,93,71,-0.4583333333333333],[124,93,72,-0.4583333333333333],[124,93,73,-0.4583333333333333],[124,93,74,-0.4583333333333333],[124,93,75,-0.4583333333333333],[124,93,76,-0.4583333333333333],[124,93,77,-0.4583333333333333],[124,93,78,-0.4583333333333333],[124,93,79,-0.4583333333333333],[124,94,64,-0.4583333333333333],[124,94,65,-0.4583333333333333],[124,94,66,-0.4583333333333333],[124,94,67,-0.4583333333333333],[124,94,68,-0.4583333333333333],[124,94,69,-0.4583333333333333],[124,94,70,-0.4583333333333333],[124,94,71,-0.4583333333333333],[124,94,72,-0.4583333333333333],[124,94,73,-0.4583333333333333],[124,94,74,-0.4583333333333333],[124,94,75,-0.4583333333333333],[124,94,76,-0.4583333333333333],[124,94,77,-0.4583333333333333],[124,94,78,-0.4583333333333333],[124,94,79,-0.4583333333333333],[124,95,64,-0.4583333333333333],[124,95,65,-0.4583333333333333],[124,95,66,-0.4583333333333333],[124,95,67,-0.4583333333333333],[124,95,68,-0.4583333333333333],[124,95,69,-0.4583333333333333],[124,95,70,-0.4583333333333333],[124,95,71,-0.4583333333333333],[124,95,72,-0.4583333333333333],[124,95,73,-0.4583333333333333],[124,95,74,-0.4583333333333333],[124,95,75,-0.4583333333333333],[124,95,76,-0.4583333333333333],[124,95,77,-0.4583333333333333],[124,95,78,-0.4583333333333333],[124,95,79,-0.4583333333333333],[124,96,64,-0.4583333333333333],[124,96,65,-0.4583333333333333],[124,96,66,-0.4583333333333333],[124,96,67,-0.4583333333333333],[124,96,68,-0.4583333333333333],[124,96,69,-0.4583333333333333],[124,96,70,-0.4583333333333333],[124,96,71,-0.4583333333333333],[124,96,72,-0.4583333333333333],[124,96,73,-0.4583333333333333],[124,96,74,-0.4583333333333333],[124,96,75,-0.4583333333333333],[124,96,76,-0.4583333333333333],[124,96,77,-0.4583333333333333],[124,96,78,-0.4583333333333333],[124,96,79,-0.4583333333333333],[124,97,64,-0.4583333333333333],[124,97,65,-0.4583333333333333],[124,97,66,-0.4583333333333333],[124,97,67,-0.4583333333333333],[124,97,68,-0.4583333333333333],[124,97,69,-0.4583333333333333],[124,97,70,-0.4583333333333333],[124,97,71,-0.4583333333333333],[124,97,72,-0.4583333333333333],[124,97,73,-0.4583333333333333],[124,97,74,-0.4583333333333333],[124,97,75,-0.4583333333333333],[124,97,76,-0.4583333333333333],[124,97,77,-0.4583333333333333],[124,97,78,-0.4583333333333333],[124,97,79,-0.4583333333333333],[124,98,64,-0.4583333333333333],[124,98,65,-0.4583333333333333],[124,98,66,-0.4583333333333333],[124,98,67,-0.4583333333333333],[124,98,68,-0.4583333333333333],[124,98,69,-0.4583333333333333],[124,98,70,-0.4583333333333333],[124,98,71,-0.4583333333333333],[124,98,72,-0.4583333333333333],[124,98,73,-0.4583333333333333],[124,98,74,-0.4583333333333333],[124,98,75,-0.4583333333333333],[124,98,76,-0.4583333333333333],[124,98,77,-0.4583333333333333],[124,98,78,-0.4583333333333333],[124,98,79,-0.4583333333333333],[124,99,64,-0.4583333333333333],[124,99,65,-0.4583333333333333],[124,99,66,-0.4583333333333333],[124,99,67,-0.4583333333333333],[124,99,68,-0.4583333333333333],[124,99,69,-0.4583333333333333],[124,99,70,-0.4583333333333333],[124,99,71,-0.4583333333333333],[124,99,72,-0.4583333333333333],[124,99,73,-0.4583333333333333],[124,99,74,-0.4583333333333333],[124,99,75,-0.4583333333333333],[124,99,76,-0.4583333333333333],[124,99,77,-0.4583333333333333],[124,99,78,-0.4583333333333333],[124,99,79,-0.4583333333333333],[124,100,64,-0.4583333333333333],[124,100,65,-0.4583333333333333],[124,100,66,-0.4583333333333333],[124,100,67,-0.4583333333333333],[124,100,68,-0.4583333333333333],[124,100,69,-0.4583333333333333],[124,100,70,-0.4583333333333333],[124,100,71,-0.4583333333333333],[124,100,72,-0.4583333333333333],[124,100,73,-0.4583333333333333],[124,100,74,-0.4583333333333333],[124,100,75,-0.4583333333333333],[124,100,76,-0.4583333333333333],[124,100,77,-0.4583333333333333],[124,100,78,-0.4583333333333333],[124,100,79,-0.4583333333333333],[124,101,64,-0.4583333333333333],[124,101,65,-0.4583333333333333],[124,101,66,-0.4583333333333333],[124,101,67,-0.4583333333333333],[124,101,68,-0.4583333333333333],[124,101,69,-0.4583333333333333],[124,101,70,-0.4583333333333333],[124,101,71,-0.4583333333333333],[124,101,72,-0.4583333333333333],[124,101,73,-0.4583333333333333],[124,101,74,-0.4583333333333333],[124,101,75,-0.4583333333333333],[124,101,76,-0.4583333333333333],[124,101,77,-0.4583333333333333],[124,101,78,-0.4583333333333333],[124,101,79,-0.4583333333333333],[124,102,64,-0.4583333333333333],[124,102,65,-0.4583333333333333],[124,102,66,-0.4583333333333333],[124,102,67,-0.4583333333333333],[124,102,68,-0.4583333333333333],[124,102,69,-0.4583333333333333],[124,102,70,-0.4583333333333333],[124,102,71,-0.4583333333333333],[124,102,72,-0.4583333333333333],[124,102,73,-0.4583333333333333],[124,102,74,-0.4583333333333333],[124,102,75,-0.4583333333333333],[124,102,76,-0.4583333333333333],[124,102,77,-0.4583333333333333],[124,102,78,-0.4583333333333333],[124,102,79,-0.4583333333333333],[124,103,64,-0.4583333333333333],[124,103,65,-0.4583333333333333],[124,103,66,-0.4583333333333333],[124,103,67,-0.4583333333333333],[124,103,68,-0.4583333333333333],[124,103,69,-0.4583333333333333],[124,103,70,-0.4583333333333333],[124,103,71,-0.4583333333333333],[124,103,72,-0.4583333333333333],[124,103,73,-0.4583333333333333],[124,103,74,-0.4583333333333333],[124,103,75,-0.4583333333333333],[124,103,76,-0.4583333333333333],[124,103,77,-0.4583333333333333],[124,103,78,-0.4583333333333333],[124,103,79,-0.4583333333333333],[124,104,64,-0.4583333333333333],[124,104,65,-0.4583333333333333],[124,104,66,-0.4583333333333333],[124,104,67,-0.4583333333333333],[124,104,68,-0.4583333333333333],[124,104,69,-0.4583333333333333],[124,104,70,-0.4583333333333333],[124,104,71,-0.4583333333333333],[124,104,72,-0.4583333333333333],[124,104,73,-0.4583333333333333],[124,104,74,-0.4583333333333333],[124,104,75,-0.4583333333333333],[124,104,76,-0.4583333333333333],[124,104,77,-0.4583333333333333],[124,104,78,-0.4583333333333333],[124,104,79,-0.4583333333333333],[124,105,64,-0.4583333333333333],[124,105,65,-0.4583333333333333],[124,105,66,-0.4583333333333333],[124,105,67,-0.4583333333333333],[124,105,68,-0.4583333333333333],[124,105,69,-0.4583333333333333],[124,105,70,-0.4583333333333333],[124,105,71,-0.4583333333333333],[124,105,72,-0.4583333333333333],[124,105,73,-0.4583333333333333],[124,105,74,-0.4583333333333333],[124,105,75,-0.4583333333333333],[124,105,76,-0.4583333333333333],[124,105,77,-0.4583333333333333],[124,105,78,-0.4583333333333333],[124,105,79,-0.4583333333333333],[124,106,64,-0.4583333333333333],[124,106,65,-0.4583333333333333],[124,106,66,-0.4583333333333333],[124,106,67,-0.4583333333333333],[124,106,68,-0.4583333333333333],[124,106,69,-0.4583333333333333],[124,106,70,-0.4583333333333333],[124,106,71,-0.4583333333333333],[124,106,72,-0.4583333333333333],[124,106,73,-0.4583333333333333],[124,106,74,-0.4583333333333333],[124,106,75,-0.4583333333333333],[124,106,76,-0.4583333333333333],[124,106,77,-0.4583333333333333],[124,106,78,-0.4583333333333333],[124,106,79,-0.4583333333333333],[124,107,64,-0.4583333333333333],[124,107,65,-0.4583333333333333],[124,107,66,-0.4583333333333333],[124,107,67,-0.4583333333333333],[124,107,68,-0.4583333333333333],[124,107,69,-0.4583333333333333],[124,107,70,-0.4583333333333333],[124,107,71,-0.4583333333333333],[124,107,72,-0.4583333333333333],[124,107,73,-0.4583333333333333],[124,107,74,-0.4583333333333333],[124,107,75,-0.4583333333333333],[124,107,76,-0.4583333333333333],[124,107,77,-0.4583333333333333],[124,107,78,-0.4583333333333333],[124,107,79,-0.4583333333333333],[124,108,64,-0.4583333333333333],[124,108,65,-0.4583333333333333],[124,108,66,-0.4583333333333333],[124,108,67,-0.4583333333333333],[124,108,68,-0.4583333333333333],[124,108,69,-0.4583333333333333],[124,108,70,-0.4583333333333333],[124,108,71,-0.4583333333333333],[124,108,72,-0.4583333333333333],[124,108,73,-0.4583333333333333],[124,108,74,-0.4583333333333333],[124,108,75,-0.4583333333333333],[124,108,76,-0.4583333333333333],[124,108,77,-0.4583333333333333],[124,108,78,-0.4583333333333333],[124,108,79,-0.4583333333333333],[124,109,64,-0.4583333333333333],[124,109,65,-0.4583333333333333],[124,109,66,-0.4583333333333333],[124,109,67,-0.4583333333333333],[124,109,68,-0.4583333333333333],[124,109,69,-0.4583333333333333],[124,109,70,-0.4583333333333333],[124,109,71,-0.4583333333333333],[124,109,72,-0.4583333333333333],[124,109,73,-0.4583333333333333],[124,109,74,-0.4583333333333333],[124,109,75,-0.4583333333333333],[124,109,76,-0.4583333333333333],[124,109,77,-0.4583333333333333],[124,109,78,-0.4583333333333333],[124,109,79,-0.4583333333333333],[124,110,64,-0.4583333333333333],[124,110,65,-0.4583333333333333],[124,110,66,-0.4583333333333333],[124,110,67,-0.4583333333333333],[124,110,68,-0.4583333333333333],[124,110,69,-0.4583333333333333],[124,110,70,-0.4583333333333333],[124,110,71,-0.4583333333333333],[124,110,72,-0.4583333333333333],[124,110,73,-0.4583333333333333],[124,110,74,-0.4583333333333333],[124,110,75,-0.4583333333333333],[124,110,76,-0.4583333333333333],[124,110,77,-0.4583333333333333],[124,110,78,-0.4583333333333333],[124,110,79,-0.4583333333333333],[124,111,64,-0.4583333333333333],[124,111,65,-0.4583333333333333],[124,111,66,-0.4583333333333333],[124,111,67,-0.4583333333333333],[124,111,68,-0.4583333333333333],[124,111,69,-0.4583333333333333],[124,111,70,-0.4583333333333333],[124,111,71,-0.4583333333333333],[124,111,72,-0.4583333333333333],[124,111,73,-0.4583333333333333],[124,111,74,-0.4583333333333333],[124,111,75,-0.4583333333333333],[124,111,76,-0.4583333333333333],[124,111,77,-0.4583333333333333],[124,111,78,-0.4583333333333333],[124,111,79,-0.4583333333333333],[124,112,64,-0.4583333333333333],[124,112,65,-0.4583333333333333],[124,112,66,-0.4583333333333333],[124,112,67,-0.4583333333333333],[124,112,68,-0.4583333333333333],[124,112,69,-0.4583333333333333],[124,112,70,-0.4583333333333333],[124,112,71,-0.4583333333333333],[124,112,72,-0.4583333333333333],[124,112,73,-0.4583333333333333],[124,112,74,-0.4583333333333333],[124,112,75,-0.4583333333333333],[124,112,76,-0.4583333333333333],[124,112,77,-0.4583333333333333],[124,112,78,-0.4583333333333333],[124,112,79,-0.4583333333333333],[124,113,64,-0.4583333333333333],[124,113,65,-0.4583333333333333],[124,113,66,-0.4583333333333333],[124,113,67,-0.4583333333333333],[124,113,68,-0.4583333333333333],[124,113,69,-0.4583333333333333],[124,113,70,-0.4583333333333333],[124,113,71,-0.4583333333333333],[124,113,72,-0.4583333333333333],[124,113,73,-0.4583333333333333],[124,113,74,-0.4583333333333333],[124,113,75,-0.4583333333333333],[124,113,76,-0.4583333333333333],[124,113,77,-0.4583333333333333],[124,113,78,-0.4583333333333333],[124,113,79,-0.4583333333333333],[124,114,64,-0.4583333333333333],[124,114,65,-0.4583333333333333],[124,114,66,-0.4583333333333333],[124,114,67,-0.4583333333333333],[124,114,68,-0.4583333333333333],[124,114,69,-0.4583333333333333],[124,114,70,-0.4583333333333333],[124,114,71,-0.4583333333333333],[124,114,72,-0.4583333333333333],[124,114,73,-0.4583333333333333],[124,114,74,-0.4583333333333333],[124,114,75,-0.4583333333333333],[124,114,76,-0.4583333333333333],[124,114,77,-0.4583333333333333],[124,114,78,-0.4583333333333333],[124,114,79,-0.4583333333333333],[124,115,64,-0.4583333333333333],[124,115,65,-0.4583333333333333],[124,115,66,-0.4583333333333333],[124,115,67,-0.4583333333333333],[124,115,68,-0.4583333333333333],[124,115,69,-0.4583333333333333],[124,115,70,-0.4583333333333333],[124,115,71,-0.4583333333333333],[124,115,72,-0.4583333333333333],[124,115,73,-0.4583333333333333],[124,115,74,-0.4583333333333333],[124,115,75,-0.4583333333333333],[124,115,76,-0.4583333333333333],[124,115,77,-0.4583333333333333],[124,115,78,-0.4583333333333333],[124,115,79,-0.4583333333333333],[124,116,64,-0.4583333333333333],[124,116,65,-0.4583333333333333],[124,116,66,-0.4583333333333333],[124,116,67,-0.4583333333333333],[124,116,68,-0.4583333333333333],[124,116,69,-0.4583333333333333],[124,116,70,-0.4583333333333333],[124,116,71,-0.4583333333333333],[124,116,72,-0.4583333333333333],[124,116,73,-0.4583333333333333],[124,116,74,-0.4583333333333333],[124,116,75,-0.4583333333333333],[124,116,76,-0.4583333333333333],[124,116,77,-0.4583333333333333],[124,116,78,-0.4583333333333333],[124,116,79,-0.4583333333333333],[124,117,64,-0.4583333333333333],[124,117,65,-0.4583333333333333],[124,117,66,-0.4583333333333333],[124,117,67,-0.4583333333333333],[124,117,68,-0.4583333333333333],[124,117,69,-0.4583333333333333],[124,117,70,-0.4583333333333333],[124,117,71,-0.4583333333333333],[124,117,72,-0.4583333333333333],[124,117,73,-0.4583333333333333],[124,117,74,-0.4583333333333333],[124,117,75,-0.4583333333333333],[124,117,76,-0.4583333333333333],[124,117,77,-0.4583333333333333],[124,117,78,-0.4583333333333333],[124,117,79,-0.4583333333333333],[124,118,64,-0.4583333333333333],[124,118,65,-0.4583333333333333],[124,118,66,-0.4583333333333333],[124,118,67,-0.4583333333333333],[124,118,68,-0.4583333333333333],[124,118,69,-0.4583333333333333],[124,118,70,-0.4583333333333333],[124,118,71,-0.4583333333333333],[124,118,72,-0.4583333333333333],[124,118,73,-0.4583333333333333],[124,118,74,-0.4583333333333333],[124,118,75,-0.4583333333333333],[124,118,76,-0.4583333333333333],[124,118,77,-0.4583333333333333],[124,118,78,-0.4583333333333333],[124,118,79,-0.4583333333333333],[124,119,64,-0.4583333333333333],[124,119,65,-0.4583333333333333],[124,119,66,-0.4583333333333333],[124,119,67,-0.4583333333333333],[124,119,68,-0.4583333333333333],[124,119,69,-0.4583333333333333],[124,119,70,-0.4583333333333333],[124,119,71,-0.4583333333333333],[124,119,72,-0.4583333333333333],[124,119,73,-0.4583333333333333],[124,119,74,-0.4583333333333333],[124,119,75,-0.4583333333333333],[124,119,76,-0.4583333333333333],[124,119,77,-0.4583333333333333],[124,119,78,-0.4583333333333333],[124,119,79,-0.4583333333333333],[124,120,64,-0.4583333333333333],[124,120,65,-0.4583333333333333],[124,120,66,-0.4583333333333333],[124,120,67,-0.4583333333333333],[124,120,68,-0.4583333333333333],[124,120,69,-0.4583333333333333],[124,120,70,-0.4583333333333333],[124,120,71,-0.4583333333333333],[124,120,72,-0.4583333333333333],[124,120,73,-0.4583333333333333],[124,120,74,-0.4583333333333333],[124,120,75,-0.4583333333333333],[124,120,76,-0.4583333333333333],[124,120,77,-0.4583333333333333],[124,120,78,-0.4583333333333333],[124,120,79,-0.4583333333333333],[124,121,64,-0.4583333333333333],[124,121,65,-0.4583333333333333],[124,121,66,-0.4583333333333333],[124,121,67,-0.4583333333333333],[124,121,68,-0.4583333333333333],[124,121,69,-0.4583333333333333],[124,121,70,-0.4583333333333333],[124,121,71,-0.4583333333333333],[124,121,72,-0.4583333333333333],[124,121,73,-0.4583333333333333],[124,121,74,-0.4583333333333333],[124,121,75,-0.4583333333333333],[124,121,76,-0.4583333333333333],[124,121,77,-0.4583333333333333],[124,121,78,-0.4583333333333333],[124,121,79,-0.4583333333333333],[124,122,64,-0.4583333333333333],[124,122,65,-0.4583333333333333],[124,122,66,-0.4583333333333333],[124,122,67,-0.4583333333333333],[124,122,68,-0.4583333333333333],[124,122,69,-0.4583333333333333],[124,122,70,-0.4583333333333333],[124,122,71,-0.4583333333333333],[124,122,72,-0.4583333333333333],[124,122,73,-0.4583333333333333],[124,122,74,-0.4583333333333333],[124,122,75,-0.4583333333333333],[124,122,76,-0.4583333333333333],[124,122,77,-0.4583333333333333],[124,122,78,-0.4583333333333333],[124,122,79,-0.4583333333333333],[124,123,64,-0.4583333333333333],[124,123,65,-0.4583333333333333],[124,123,66,-0.4583333333333333],[124,123,67,-0.4583333333333333],[124,123,68,-0.4583333333333333],[124,123,69,-0.4583333333333333],[124,123,70,-0.4583333333333333],[124,123,71,-0.4583333333333333],[124,123,72,-0.4583333333333333],[124,123,73,-0.4583333333333333],[124,123,74,-0.4583333333333333],[124,123,75,-0.4583333333333333],[124,123,76,-0.4583333333333333],[124,123,77,-0.4583333333333333],[124,123,78,-0.4583333333333333],[124,123,79,-0.4583333333333333],[124,124,64,-0.4583333333333333],[124,124,65,-0.4583333333333333],[124,124,66,-0.4583333333333333],[124,124,67,-0.4583333333333333],[124,124,68,-0.4583333333333333],[124,124,69,-0.4583333333333333],[124,124,70,-0.4583333333333333],[124,124,71,-0.4583333333333333],[124,124,72,-0.4583333333333333],[124,124,73,-0.4583333333333333],[124,124,74,-0.4583333333333333],[124,124,75,-0.4583333333333333],[124,124,76,-0.4583333333333333],[124,124,77,-0.4583333333333333],[124,124,78,-0.4583333333333333],[124,124,79,-0.4583333333333333],[124,125,64,-0.4583333333333333],[124,125,65,-0.4583333333333333],[124,125,66,-0.4583333333333333],[124,125,67,-0.4583333333333333],[124,125,68,-0.4583333333333333],[124,125,69,-0.4583333333333333],[124,125,70,-0.4583333333333333],[124,125,71,-0.4583333333333333],[124,125,72,-0.4583333333333333],[124,125,73,-0.4583333333333333],[124,125,74,-0.4583333333333333],[124,125,75,-0.4583333333333333],[124,125,76,-0.4583333333333333],[124,125,77,-0.4583333333333333],[124,125,78,-0.4583333333333333],[124,125,79,-0.4583333333333333],[124,126,64,-0.4583333333333333],[124,126,65,-0.4583333333333333],[124,126,66,-0.4583333333333333],[124,126,67,-0.4583333333333333],[124,126,68,-0.4583333333333333],[124,126,69,-0.4583333333333333],[124,126,70,-0.4583333333333333],[124,126,71,-0.4583333333333333],[124,126,72,-0.4583333333333333],[124,126,73,-0.4583333333333333],[124,126,74,-0.4583333333333333],[124,126,75,-0.4583333333333333],[124,126,76,-0.4583333333333333],[124,126,77,-0.4583333333333333],[124,126,78,-0.4583333333333333],[124,126,79,-0.4583333333333333],[124,127,64,-0.4583333333333333],[124,127,65,-0.4583333333333333],[124,127,66,-0.4583333333333333],[124,127,67,-0.4583333333333333],[124,127,68,-0.4583333333333333],[124,127,69,-0.4583333333333333],[124,127,70,-0.4583333333333333],[124,127,71,-0.4583333333333333],[124,127,72,-0.4583333333333333],[124,127,73,-0.4583333333333333],[124,127,74,-0.4583333333333333],[124,127,75,-0.4583333333333333],[124,127,76,-0.4583333333333333],[124,127,77,-0.4583333333333333],[124,127,78,-0.4583333333333333],[124,127,79,-0.4583333333333333],[124,128,64,-0.4583333333333333],[124,128,65,-0.4583333333333333],[124,128,66,-0.4583333333333333],[124,128,67,-0.4583333333333333],[124,128,68,-0.4583333333333333],[124,128,69,-0.4583333333333333],[124,128,70,-0.4583333333333333],[124,128,71,-0.4583333333333333],[124,128,72,-0.4583333333333333],[124,128,73,-0.4583333333333333],[124,128,74,-0.4583333333333333],[124,128,75,-0.4583333333333333],[124,128,76,-0.4583333333333333],[124,128,77,-0.4583333333333333],[124,128,78,-0.4583333333333333],[124,128,79,-0.4583333333333333],[124,129,64,-0.4583333333333333],[124,129,65,-0.4583333333333333],[124,129,66,-0.4583333333333333],[124,129,67,-0.4583333333333333],[124,129,68,-0.4583333333333333],[124,129,69,-0.4583333333333333],[124,129,70,-0.4583333333333333],[124,129,71,-0.4583333333333333],[124,129,72,-0.4583333333333333],[124,129,73,-0.4583333333333333],[124,129,74,-0.4583333333333333],[124,129,75,-0.4583333333333333],[124,129,76,-0.4583333333333333],[124,129,77,-0.4583333333333333],[124,129,78,-0.4583333333333333],[124,129,79,-0.4583333333333333],[124,130,64,-0.4583333333333333],[124,130,65,-0.4583333333333333],[124,130,66,-0.4583333333333333],[124,130,67,-0.4583333333333333],[124,130,68,-0.4583333333333333],[124,130,69,-0.4583333333333333],[124,130,70,-0.4583333333333333],[124,130,71,-0.4583333333333333],[124,130,72,-0.4583333333333333],[124,130,73,-0.4583333333333333],[124,130,74,-0.4583333333333333],[124,130,75,-0.4583333333333333],[124,130,76,-0.4583333333333333],[124,130,77,-0.4583333333333333],[124,130,78,-0.4583333333333333],[124,130,79,-0.4583333333333333],[124,131,64,-0.4583333333333333],[124,131,65,-0.4583333333333333],[124,131,66,-0.4583333333333333],[124,131,67,-0.4583333333333333],[124,131,68,-0.4583333333333333],[124,131,69,-0.4583333333333333],[124,131,70,-0.4583333333333333],[124,131,71,-0.4583333333333333],[124,131,72,-0.4583333333333333],[124,131,73,-0.4583333333333333],[124,131,74,-0.4583333333333333],[124,131,75,-0.4583333333333333],[124,131,76,-0.4583333333333333],[124,131,77,-0.4583333333333333],[124,131,78,-0.4583333333333333],[124,131,79,-0.4583333333333333],[124,132,64,-0.4583333333333333],[124,132,65,-0.4583333333333333],[124,132,66,-0.4583333333333333],[124,132,67,-0.4583333333333333],[124,132,68,-0.4583333333333333],[124,132,69,-0.4583333333333333],[124,132,70,-0.4583333333333333],[124,132,71,-0.4583333333333333],[124,132,72,-0.4583333333333333],[124,132,73,-0.4583333333333333],[124,132,74,-0.4583333333333333],[124,132,75,-0.4583333333333333],[124,132,76,-0.4583333333333333],[124,132,77,-0.4583333333333333],[124,132,78,-0.4583333333333333],[124,132,79,-0.4583333333333333],[124,133,64,-0.4583333333333333],[124,133,65,-0.4583333333333333],[124,133,66,-0.4583333333333333],[124,133,67,-0.4583333333333333],[124,133,68,-0.4583333333333333],[124,133,69,-0.4583333333333333],[124,133,70,-0.4583333333333333],[124,133,71,-0.4583333333333333],[124,133,72,-0.4583333333333333],[124,133,73,-0.4583333333333333],[124,133,74,-0.4583333333333333],[124,133,75,-0.4583333333333333],[124,133,76,-0.4583333333333333],[124,133,77,-0.4583333333333333],[124,133,78,-0.4583333333333333],[124,133,79,-0.4583333333333333],[124,134,64,-0.4583333333333333],[124,134,65,-0.4583333333333333],[124,134,66,-0.4583333333333333],[124,134,67,-0.4583333333333333],[124,134,68,-0.4583333333333333],[124,134,69,-0.4583333333333333],[124,134,70,-0.4583333333333333],[124,134,71,-0.4583333333333333],[124,134,72,-0.4583333333333333],[124,134,73,-0.4583333333333333],[124,134,74,-0.4583333333333333],[124,134,75,-0.4583333333333333],[124,134,76,-0.4583333333333333],[124,134,77,-0.4583333333333333],[124,134,78,-0.4583333333333333],[124,134,79,-0.4583333333333333],[124,135,64,-0.4583333333333333],[124,135,65,-0.4583333333333333],[124,135,66,-0.4583333333333333],[124,135,67,-0.4583333333333333],[124,135,68,-0.4583333333333333],[124,135,69,-0.4583333333333333],[124,135,70,-0.4583333333333333],[124,135,71,-0.4583333333333333],[124,135,72,-0.4583333333333333],[124,135,73,-0.4583333333333333],[124,135,74,-0.4583333333333333],[124,135,75,-0.4583333333333333],[124,135,76,-0.4583333333333333],[124,135,77,-0.4583333333333333],[124,135,78,-0.4583333333333333],[124,135,79,-0.4583333333333333],[124,136,64,-0.4583333333333333],[124,136,65,-0.4583333333333333],[124,136,66,-0.4583333333333333],[124,136,67,-0.4583333333333333],[124,136,68,-0.4583333333333333],[124,136,69,-0.4583333333333333],[124,136,70,-0.4583333333333333],[124,136,71,-0.4583333333333333],[124,136,72,-0.4583333333333333],[124,136,73,-0.4583333333333333],[124,136,74,-0.4583333333333333],[124,136,75,-0.4583333333333333],[124,136,76,-0.4583333333333333],[124,136,77,-0.4583333333333333],[124,136,78,-0.4583333333333333],[124,136,79,-0.4583333333333333],[124,137,64,-0.4583333333333333],[124,137,65,-0.4583333333333333],[124,137,66,-0.4583333333333333],[124,137,67,-0.4583333333333333],[124,137,68,-0.4583333333333333],[124,137,69,-0.4583333333333333],[124,137,70,-0.4583333333333333],[124,137,71,-0.4583333333333333],[124,137,72,-0.4583333333333333],[124,137,73,-0.4583333333333333],[124,137,74,-0.4583333333333333],[124,137,75,-0.4583333333333333],[124,137,76,-0.4583333333333333],[124,137,77,-0.4583333333333333],[124,137,78,-0.4583333333333333],[124,137,79,-0.4583333333333333],[124,138,64,-0.4583333333333333],[124,138,65,-0.4583333333333333],[124,138,66,-0.4583333333333333],[124,138,67,-0.4583333333333333],[124,138,68,-0.4583333333333333],[124,138,69,-0.4583333333333333],[124,138,70,-0.4583333333333333],[124,138,71,-0.4583333333333333],[124,138,72,-0.4583333333333333],[124,138,73,-0.4583333333333333],[124,138,74,-0.4583333333333333],[124,138,75,-0.4583333333333333],[124,138,76,-0.4583333333333333],[124,138,77,-0.4583333333333333],[124,138,78,-0.4583333333333333],[124,138,79,-0.4583333333333333],[124,139,64,-0.4583333333333333],[124,139,65,-0.4583333333333333],[124,139,66,-0.4583333333333333],[124,139,67,-0.4583333333333333],[124,139,68,-0.4583333333333333],[124,139,69,-0.4583333333333333],[124,139,70,-0.4583333333333333],[124,139,71,-0.4583333333333333],[124,139,72,-0.4583333333333333],[124,139,73,-0.4583333333333333],[124,139,74,-0.4583333333333333],[124,139,75,-0.4583333333333333],[124,139,76,-0.4583333333333333],[124,139,77,-0.4583333333333333],[124,139,78,-0.4583333333333333],[124,139,79,-0.4583333333333333],[124,140,64,-0.4583333333333333],[124,140,65,-0.4583333333333333],[124,140,66,-0.4583333333333333],[124,140,67,-0.4583333333333333],[124,140,68,-0.4583333333333333],[124,140,69,-0.4583333333333333],[124,140,70,-0.4583333333333333],[124,140,71,-0.4583333333333333],[124,140,72,-0.4583333333333333],[124,140,73,-0.4583333333333333],[124,140,74,-0.4583333333333333],[124,140,75,-0.4583333333333333],[124,140,76,-0.4583333333333333],[124,140,77,-0.4583333333333333],[124,140,78,-0.4583333333333333],[124,140,79,-0.4583333333333333],[124,141,64,-0.4583333333333333],[124,141,65,-0.4583333333333333],[124,141,66,-0.4583333333333333],[124,141,67,-0.4583333333333333],[124,141,68,-0.4583333333333333],[124,141,69,-0.4583333333333333],[124,141,70,-0.4583333333333333],[124,141,71,-0.4583333333333333],[124,141,72,-0.4583333333333333],[124,141,73,-0.4583333333333333],[124,141,74,-0.4583333333333333],[124,141,75,-0.4583333333333333],[124,141,76,-0.4583333333333333],[124,141,77,-0.4583333333333333],[124,141,78,-0.4583333333333333],[124,141,79,-0.4583333333333333],[124,142,64,-0.4583333333333333],[124,142,65,-0.4583333333333333],[124,142,66,-0.4583333333333333],[124,142,67,-0.4583333333333333],[124,142,68,-0.4583333333333333],[124,142,69,-0.4583333333333333],[124,142,70,-0.4583333333333333],[124,142,71,-0.4583333333333333],[124,142,72,-0.4583333333333333],[124,142,73,-0.4583333333333333],[124,142,74,-0.4583333333333333],[124,142,75,-0.4583333333333333],[124,142,76,-0.4583333333333333],[124,142,77,-0.4583333333333333],[124,142,78,-0.4583333333333333],[124,142,79,-0.4583333333333333],[124,143,64,-0.4583333333333333],[124,143,65,-0.4583333333333333],[124,143,66,-0.4583333333333333],[124,143,67,-0.4583333333333333],[124,143,68,-0.4583333333333333],[124,143,69,-0.4583333333333333],[124,143,70,-0.4583333333333333],[124,143,71,-0.4583333333333333],[124,143,72,-0.4583333333333333],[124,143,73,-0.4583333333333333],[124,143,74,-0.4583333333333333],[124,143,75,-0.4583333333333333],[124,143,76,-0.4583333333333333],[124,143,77,-0.4583333333333333],[124,143,78,-0.4583333333333333],[124,143,79,-0.4583333333333333],[124,144,64,-0.4583333333333333],[124,144,65,-0.4583333333333333],[124,144,66,-0.4583333333333333],[124,144,67,-0.4583333333333333],[124,144,68,-0.4583333333333333],[124,144,69,-0.4583333333333333],[124,144,70,-0.4583333333333333],[124,144,71,-0.4583333333333333],[124,144,72,-0.4583333333333333],[124,144,73,-0.4583333333333333],[124,144,74,-0.4583333333333333],[124,144,75,-0.4583333333333333],[124,144,76,-0.4583333333333333],[124,144,77,-0.4583333333333333],[124,144,78,-0.4583333333333333],[124,144,79,-0.4583333333333333],[124,145,64,-0.4583333333333333],[124,145,65,-0.4583333333333333],[124,145,66,-0.4583333333333333],[124,145,67,-0.4583333333333333],[124,145,68,-0.4583333333333333],[124,145,69,-0.4583333333333333],[124,145,70,-0.4583333333333333],[124,145,71,-0.4583333333333333],[124,145,72,-0.4583333333333333],[124,145,73,-0.4583333333333333],[124,145,74,-0.4583333333333333],[124,145,75,-0.4583333333333333],[124,145,76,-0.4583333333333333],[124,145,77,-0.4583333333333333],[124,145,78,-0.4583333333333333],[124,145,79,-0.4583333333333333],[124,146,64,-0.4583333333333333],[124,146,65,-0.4583333333333333],[124,146,66,-0.4583333333333333],[124,146,67,-0.4583333333333333],[124,146,68,-0.4583333333333333],[124,146,69,-0.4583333333333333],[124,146,70,-0.4583333333333333],[124,146,71,-0.4583333333333333],[124,146,72,-0.4583333333333333],[124,146,73,-0.4583333333333333],[124,146,74,-0.4583333333333333],[124,146,75,-0.4583333333333333],[124,146,76,-0.4583333333333333],[124,146,77,-0.4583333333333333],[124,146,78,-0.4583333333333333],[124,146,79,-0.4583333333333333],[124,147,64,-0.4583333333333333],[124,147,65,-0.4583333333333333],[124,147,66,-0.4583333333333333],[124,147,67,-0.4583333333333333],[124,147,68,-0.4583333333333333],[124,147,69,-0.4583333333333333],[124,147,70,-0.4583333333333333],[124,147,71,-0.4583333333333333],[124,147,72,-0.4583333333333333],[124,147,73,-0.4583333333333333],[124,147,74,-0.4583333333333333],[124,147,75,-0.4583333333333333],[124,147,76,-0.4583333333333333],[124,147,77,-0.4583333333333333],[124,147,78,-0.4583333333333333],[124,147,79,-0.4583333333333333],[124,148,64,-0.4583333333333333],[124,148,65,-0.4583333333333333],[124,148,66,-0.4583333333333333],[124,148,67,-0.4583333333333333],[124,148,68,-0.4583333333333333],[124,148,69,-0.4583333333333333],[124,148,70,-0.4583333333333333],[124,148,71,-0.4583333333333333],[124,148,72,-0.4583333333333333],[124,148,73,-0.4583333333333333],[124,148,74,-0.4583333333333333],[124,148,75,-0.4583333333333333],[124,148,76,-0.4583333333333333],[124,148,77,-0.4583333333333333],[124,148,78,-0.4583333333333333],[124,148,79,-0.4583333333333333],[124,149,64,-0.4583333333333333],[124,149,65,-0.4583333333333333],[124,149,66,-0.4583333333333333],[124,149,67,-0.4583333333333333],[124,149,68,-0.4583333333333333],[124,149,69,-0.4583333333333333],[124,149,70,-0.4583333333333333],[124,149,71,-0.4583333333333333],[124,149,72,-0.4583333333333333],[124,149,73,-0.4583333333333333],[124,149,74,-0.4583333333333333],[124,149,75,-0.4583333333333333],[124,149,76,-0.4583333333333333],[124,149,77,-0.4583333333333333],[124,149,78,-0.4583333333333333],[124,149,79,-0.4583333333333333],[124,150,64,-0.4583333333333333],[124,150,65,-0.4583333333333333],[124,150,66,-0.4583333333333333],[124,150,67,-0.4583333333333333],[124,150,68,-0.4583333333333333],[124,150,69,-0.4583333333333333],[124,150,70,-0.4583333333333333],[124,150,71,-0.4583333333333333],[124,150,72,-0.4583333333333333],[124,150,73,-0.4583333333333333],[124,150,74,-0.4583333333333333],[124,150,75,-0.4583333333333333],[124,150,76,-0.4583333333333333],[124,150,77,-0.4583333333333333],[124,150,78,-0.4583333333333333],[124,150,79,-0.4583333333333333],[124,151,64,-0.4583333333333333],[124,151,65,-0.4583333333333333],[124,151,66,-0.4583333333333333],[124,151,67,-0.4583333333333333],[124,151,68,-0.4583333333333333],[124,151,69,-0.4583333333333333],[124,151,70,-0.4583333333333333],[124,151,71,-0.4583333333333333],[124,151,72,-0.4583333333333333],[124,151,73,-0.4583333333333333],[124,151,74,-0.4583333333333333],[124,151,75,-0.4583333333333333],[124,151,76,-0.4583333333333333],[124,151,77,-0.4583333333333333],[124,151,78,-0.4583333333333333],[124,151,79,-0.4583333333333333],[124,152,64,-0.4583333333333333],[124,152,65,-0.4583333333333333],[124,152,66,-0.4583333333333333],[124,152,67,-0.4583333333333333],[124,152,68,-0.4583333333333333],[124,152,69,-0.4583333333333333],[124,152,70,-0.4583333333333333],[124,152,71,-0.4583333333333333],[124,152,72,-0.4583333333333333],[124,152,73,-0.4583333333333333],[124,152,74,-0.4583333333333333],[124,152,75,-0.4583333333333333],[124,152,76,-0.4583333333333333],[124,152,77,-0.4583333333333333],[124,152,78,-0.4583333333333333],[124,152,79,-0.4583333333333333],[124,153,64,-0.4583333333333333],[124,153,65,-0.4583333333333333],[124,153,66,-0.4583333333333333],[124,153,67,-0.4583333333333333],[124,153,68,-0.4583333333333333],[124,153,69,-0.4583333333333333],[124,153,70,-0.4583333333333333],[124,153,71,-0.4583333333333333],[124,153,72,-0.4583333333333333],[124,153,73,-0.4583333333333333],[124,153,74,-0.4583333333333333],[124,153,75,-0.4583333333333333],[124,153,76,-0.4583333333333333],[124,153,77,-0.4583333333333333],[124,153,78,-0.4583333333333333],[124,153,79,-0.4583333333333333],[124,154,64,-0.4583333333333333],[124,154,65,-0.4583333333333333],[124,154,66,-0.4583333333333333],[124,154,67,-0.4583333333333333],[124,154,68,-0.4583333333333333],[124,154,69,-0.4583333333333333],[124,154,70,-0.4583333333333333],[124,154,71,-0.4583333333333333],[124,154,72,-0.4583333333333333],[124,154,73,-0.4583333333333333],[124,154,74,-0.4583333333333333],[124,154,75,-0.4583333333333333],[124,154,76,-0.4583333333333333],[124,154,77,-0.4583333333333333],[124,154,78,-0.4583333333333333],[124,154,79,-0.4583333333333333],[124,155,64,-0.4583333333333333],[124,155,65,-0.4583333333333333],[124,155,66,-0.4583333333333333],[124,155,67,-0.4583333333333333],[124,155,68,-0.4583333333333333],[124,155,69,-0.4583333333333333],[124,155,70,-0.4583333333333333],[124,155,71,-0.4583333333333333],[124,155,72,-0.4583333333333333],[124,155,73,-0.4583333333333333],[124,155,74,-0.4583333333333333],[124,155,75,-0.4583333333333333],[124,155,76,-0.4583333333333333],[124,155,77,-0.4583333333333333],[124,155,78,-0.4583333333333333],[124,155,79,-0.4583333333333333],[124,156,64,-0.4583333333333333],[124,156,65,-0.4583333333333333],[124,156,66,-0.4583333333333333],[124,156,67,-0.4583333333333333],[124,156,68,-0.4583333333333333],[124,156,69,-0.4583333333333333],[124,156,70,-0.4583333333333333],[124,156,71,-0.4583333333333333],[124,156,72,-0.4583333333333333],[124,156,73,-0.4583333333333333],[124,156,74,-0.4583333333333333],[124,156,75,-0.4583333333333333],[124,156,76,-0.4583333333333333],[124,156,77,-0.4583333333333333],[124,156,78,-0.4583333333333333],[124,156,79,-0.4583333333333333],[124,157,64,-0.4583333333333333],[124,157,65,-0.4583333333333333],[124,157,66,-0.4583333333333333],[124,157,67,-0.4583333333333333],[124,157,68,-0.4583333333333333],[124,157,69,-0.4583333333333333],[124,157,70,-0.4583333333333333],[124,157,71,-0.4583333333333333],[124,157,72,-0.4583333333333333],[124,157,73,-0.4583333333333333],[124,157,74,-0.4583333333333333],[124,157,75,-0.4583333333333333],[124,157,76,-0.4583333333333333],[124,157,77,-0.4583333333333333],[124,157,78,-0.4583333333333333],[124,157,79,-0.4583333333333333],[124,158,64,-0.4583333333333333],[124,158,65,-0.4583333333333333],[124,158,66,-0.4583333333333333],[124,158,67,-0.4583333333333333],[124,158,68,-0.4583333333333333],[124,158,69,-0.4583333333333333],[124,158,70,-0.4583333333333333],[124,158,71,-0.4583333333333333],[124,158,72,-0.4583333333333333],[124,158,73,-0.4583333333333333],[124,158,74,-0.4583333333333333],[124,158,75,-0.4583333333333333],[124,158,76,-0.4583333333333333],[124,158,77,-0.4583333333333333],[124,158,78,-0.4583333333333333],[124,158,79,-0.4583333333333333],[124,159,64,-0.4583333333333333],[124,159,65,-0.4583333333333333],[124,159,66,-0.4583333333333333],[124,159,67,-0.4583333333333333],[124,159,68,-0.4583333333333333],[124,159,69,-0.4583333333333333],[124,159,70,-0.4583333333333333],[124,159,71,-0.4583333333333333],[124,159,72,-0.4583333333333333],[124,159,73,-0.4583333333333333],[124,159,74,-0.4583333333333333],[124,159,75,-0.4583333333333333],[124,159,76,-0.4583333333333333],[124,159,77,-0.4583333333333333],[124,159,78,-0.4583333333333333],[124,159,79,-0.4583333333333333],[124,160,64,-0.4583333333333333],[124,160,65,-0.4583333333333333],[124,160,66,-0.4583333333333333],[124,160,67,-0.4583333333333333],[124,160,68,-0.4583333333333333],[124,160,69,-0.4583333333333333],[124,160,70,-0.4583333333333333],[124,160,71,-0.4583333333333333],[124,160,72,-0.4583333333333333],[124,160,73,-0.4583333333333333],[124,160,74,-0.4583333333333333],[124,160,75,-0.4583333333333333],[124,160,76,-0.4583333333333333],[124,160,77,-0.4583333333333333],[124,160,78,-0.4583333333333333],[124,160,79,-0.4583333333333333],[124,161,64,-0.4583333333333333],[124,161,65,-0.4583333333333333],[124,161,66,-0.4583333333333333],[124,161,67,-0.4583333333333333],[124,161,68,-0.4583333333333333],[124,161,69,-0.4583333333333333],[124,161,70,-0.4583333333333333],[124,161,71,-0.4583333333333333],[124,161,72,-0.4583333333333333],[124,161,73,-0.4583333333333333],[124,161,74,-0.4583333333333333],[124,161,75,-0.4583333333333333],[124,161,76,-0.4583333333333333],[124,161,77,-0.4583333333333333],[124,161,78,-0.4583333333333333],[124,161,79,-0.4583333333333333],[124,162,64,-0.4583333333333333],[124,162,65,-0.4583333333333333],[124,162,66,-0.4583333333333333],[124,162,67,-0.4583333333333333],[124,162,68,-0.4583333333333333],[124,162,69,-0.4583333333333333],[124,162,70,-0.4583333333333333],[124,162,71,-0.4583333333333333],[124,162,72,-0.4583333333333333],[124,162,73,-0.4583333333333333],[124,162,74,-0.4583333333333333],[124,162,75,-0.4583333333333333],[124,162,76,-0.4583333333333333],[124,162,77,-0.4583333333333333],[124,162,78,-0.4583333333333333],[124,162,79,-0.4583333333333333],[124,163,64,-0.4583333333333333],[124,163,65,-0.4583333333333333],[124,163,66,-0.4583333333333333],[124,163,67,-0.4583333333333333],[124,163,68,-0.4583333333333333],[124,163,69,-0.4583333333333333],[124,163,70,-0.4583333333333333],[124,163,71,-0.4583333333333333],[124,163,72,-0.4583333333333333],[124,163,73,-0.4583333333333333],[124,163,74,-0.4583333333333333],[124,163,75,-0.4583333333333333],[124,163,76,-0.4583333333333333],[124,163,77,-0.4583333333333333],[124,163,78,-0.4583333333333333],[124,163,79,-0.4583333333333333],[124,164,64,-0.4583333333333333],[124,164,65,-0.4583333333333333],[124,164,66,-0.4583333333333333],[124,164,67,-0.4583333333333333],[124,164,68,-0.4583333333333333],[124,164,69,-0.4583333333333333],[124,164,70,-0.4583333333333333],[124,164,71,-0.4583333333333333],[124,164,72,-0.4583333333333333],[124,164,73,-0.4583333333333333],[124,164,74,-0.4583333333333333],[124,164,75,-0.4583333333333333],[124,164,76,-0.4583333333333333],[124,164,77,-0.4583333333333333],[124,164,78,-0.4583333333333333],[124,164,79,-0.4583333333333333],[124,165,64,-0.4583333333333333],[124,165,65,-0.4583333333333333],[124,165,66,-0.4583333333333333],[124,165,67,-0.4583333333333333],[124,165,68,-0.4583333333333333],[124,165,69,-0.4583333333333333],[124,165,70,-0.4583333333333333],[124,165,71,-0.4583333333333333],[124,165,72,-0.4583333333333333],[124,165,73,-0.4583333333333333],[124,165,74,-0.4583333333333333],[124,165,75,-0.4583333333333333],[124,165,76,-0.4583333333333333],[124,165,77,-0.4583333333333333],[124,165,78,-0.4583333333333333],[124,165,79,-0.4583333333333333],[124,166,64,-0.4583333333333333],[124,166,65,-0.4583333333333333],[124,166,66,-0.4583333333333333],[124,166,67,-0.4583333333333333],[124,166,68,-0.4583333333333333],[124,166,69,-0.4583333333333333],[124,166,70,-0.4583333333333333],[124,166,71,-0.4583333333333333],[124,166,72,-0.4583333333333333],[124,166,73,-0.4583333333333333],[124,166,74,-0.4583333333333333],[124,166,75,-0.4583333333333333],[124,166,76,-0.4583333333333333],[124,166,77,-0.4583333333333333],[124,166,78,-0.4583333333333333],[124,166,79,-0.4583333333333333],[124,167,64,-0.4583333333333333],[124,167,65,-0.4583333333333333],[124,167,66,-0.4583333333333333],[124,167,67,-0.4583333333333333],[124,167,68,-0.4583333333333333],[124,167,69,-0.4583333333333333],[124,167,70,-0.4583333333333333],[124,167,71,-0.4583333333333333],[124,167,72,-0.4583333333333333],[124,167,73,-0.4583333333333333],[124,167,74,-0.4583333333333333],[124,167,75,-0.4583333333333333],[124,167,76,-0.4583333333333333],[124,167,77,-0.4583333333333333],[124,167,78,-0.4583333333333333],[124,167,79,-0.4583333333333333],[124,168,64,-0.4583333333333333],[124,168,65,-0.4583333333333333],[124,168,66,-0.4583333333333333],[124,168,67,-0.4583333333333333],[124,168,68,-0.4583333333333333],[124,168,69,-0.4583333333333333],[124,168,70,-0.4583333333333333],[124,168,71,-0.4583333333333333],[124,168,72,-0.4583333333333333],[124,168,73,-0.4583333333333333],[124,168,74,-0.4583333333333333],[124,168,75,-0.4583333333333333],[124,168,76,-0.4583333333333333],[124,168,77,-0.4583333333333333],[124,168,78,-0.4583333333333333],[124,168,79,-0.4583333333333333],[124,169,64,-0.4583333333333333],[124,169,65,-0.4583333333333333],[124,169,66,-0.4583333333333333],[124,169,67,-0.4583333333333333],[124,169,68,-0.4583333333333333],[124,169,69,-0.4583333333333333],[124,169,70,-0.4583333333333333],[124,169,71,-0.4583333333333333],[124,169,72,-0.4583333333333333],[124,169,73,-0.4583333333333333],[124,169,74,-0.4583333333333333],[124,169,75,-0.4583333333333333],[124,169,76,-0.4583333333333333],[124,169,77,-0.4583333333333333],[124,169,78,-0.4583333333333333],[124,169,79,-0.4583333333333333],[124,170,64,-0.4583333333333333],[124,170,65,-0.4583333333333333],[124,170,66,-0.4583333333333333],[124,170,67,-0.4583333333333333],[124,170,68,-0.4583333333333333],[124,170,69,-0.4583333333333333],[124,170,70,-0.4583333333333333],[124,170,71,-0.4583333333333333],[124,170,72,-0.4583333333333333],[124,170,73,-0.4583333333333333],[124,170,74,-0.4583333333333333],[124,170,75,-0.4583333333333333],[124,170,76,-0.4583333333333333],[124,170,77,-0.4583333333333333],[124,170,78,-0.4583333333333333],[124,170,79,-0.4583333333333333],[124,171,64,-0.4583333333333333],[124,171,65,-0.4583333333333333],[124,171,66,-0.4583333333333333],[124,171,67,-0.4583333333333333],[124,171,68,-0.4583333333333333],[124,171,69,-0.4583333333333333],[124,171,70,-0.4583333333333333],[124,171,71,-0.4583333333333333],[124,171,72,-0.4583333333333333],[124,171,73,-0.4583333333333333],[124,171,74,-0.4583333333333333],[124,171,75,-0.4583333333333333],[124,171,76,-0.4583333333333333],[124,171,77,-0.4583333333333333],[124,171,78,-0.4583333333333333],[124,171,79,-0.4583333333333333],[124,172,64,-0.4583333333333333],[124,172,65,-0.4583333333333333],[124,172,66,-0.4583333333333333],[124,172,67,-0.4583333333333333],[124,172,68,-0.4583333333333333],[124,172,69,-0.4583333333333333],[124,172,70,-0.4583333333333333],[124,172,71,-0.4583333333333333],[124,172,72,-0.4583333333333333],[124,172,73,-0.4583333333333333],[124,172,74,-0.4583333333333333],[124,172,75,-0.4583333333333333],[124,172,76,-0.4583333333333333],[124,172,77,-0.4583333333333333],[124,172,78,-0.4583333333333333],[124,172,79,-0.4583333333333333],[124,173,64,-0.4583333333333333],[124,173,65,-0.4583333333333333],[124,173,66,-0.4583333333333333],[124,173,67,-0.4583333333333333],[124,173,68,-0.4583333333333333],[124,173,69,-0.4583333333333333],[124,173,70,-0.4583333333333333],[124,173,71,-0.4583333333333333],[124,173,72,-0.4583333333333333],[124,173,73,-0.4583333333333333],[124,173,74,-0.4583333333333333],[124,173,75,-0.4583333333333333],[124,173,76,-0.4583333333333333],[124,173,77,-0.4583333333333333],[124,173,78,-0.4583333333333333],[124,173,79,-0.4583333333333333],[124,174,64,-0.4583333333333333],[124,174,65,-0.4583333333333333],[124,174,66,-0.4583333333333333],[124,174,67,-0.4583333333333333],[124,174,68,-0.4583333333333333],[124,174,69,-0.4583333333333333],[124,174,70,-0.4583333333333333],[124,174,71,-0.4583333333333333],[124,174,72,-0.4583333333333333],[124,174,73,-0.4583333333333333],[124,174,74,-0.4583333333333333],[124,174,75,-0.4583333333333333],[124,174,76,-0.4583333333333333],[124,174,77,-0.4583333333333333],[124,174,78,-0.4583333333333333],[124,174,79,-0.4583333333333333],[124,175,64,-0.4583333333333333],[124,175,65,-0.4583333333333333],[124,175,66,-0.4583333333333333],[124,175,67,-0.4583333333333333],[124,175,68,-0.4583333333333333],[124,175,69,-0.4583333333333333],[124,175,70,-0.4583333333333333],[124,175,71,-0.4583333333333333],[124,175,72,-0.4583333333333333],[124,175,73,-0.4583333333333333],[124,175,74,-0.4583333333333333],[124,175,75,-0.4583333333333333],[124,175,76,-0.4583333333333333],[124,175,77,-0.4583333333333333],[124,175,78,-0.4583333333333333],[124,175,79,-0.4583333333333333],[124,176,64,-0.4583333333333333],[124,176,65,-0.4583333333333333],[124,176,66,-0.4583333333333333],[124,176,67,-0.4583333333333333],[124,176,68,-0.4583333333333333],[124,176,69,-0.4583333333333333],[124,176,70,-0.4583333333333333],[124,176,71,-0.4583333333333333],[124,176,72,-0.4583333333333333],[124,176,73,-0.4583333333333333],[124,176,74,-0.4583333333333333],[124,176,75,-0.4583333333333333],[124,176,76,-0.4583333333333333],[124,176,77,-0.4583333333333333],[124,176,78,-0.4583333333333333],[124,176,79,-0.4583333333333333],[124,177,64,-0.4583333333333333],[124,177,65,-0.4583333333333333],[124,177,66,-0.4583333333333333],[124,177,67,-0.4583333333333333],[124,177,68,-0.4583333333333333],[124,177,69,-0.4583333333333333],[124,177,70,-0.4583333333333333],[124,177,71,-0.4583333333333333],[124,177,72,-0.4583333333333333],[124,177,73,-0.4583333333333333],[124,177,74,-0.4583333333333333],[124,177,75,-0.4583333333333333],[124,177,76,-0.4583333333333333],[124,177,77,-0.4583333333333333],[124,177,78,-0.4583333333333333],[124,177,79,-0.4583333333333333],[124,178,64,-0.4583333333333333],[124,178,65,-0.4583333333333333],[124,178,66,-0.4583333333333333],[124,178,67,-0.4583333333333333],[124,178,68,-0.4583333333333333],[124,178,69,-0.4583333333333333],[124,178,70,-0.4583333333333333],[124,178,71,-0.4583333333333333],[124,178,72,-0.4583333333333333],[124,178,73,-0.4583333333333333],[124,178,74,-0.4583333333333333],[124,178,75,-0.4583333333333333],[124,178,76,-0.4583333333333333],[124,178,77,-0.4583333333333333],[124,178,78,-0.4583333333333333],[124,178,79,-0.4583333333333333],[124,179,64,-0.4583333333333333],[124,179,65,-0.4583333333333333],[124,179,66,-0.4583333333333333],[124,179,67,-0.4583333333333333],[124,179,68,-0.4583333333333333],[124,179,69,-0.4583333333333333],[124,179,70,-0.4583333333333333],[124,179,71,-0.4583333333333333],[124,179,72,-0.4583333333333333],[124,179,73,-0.4583333333333333],[124,179,74,-0.4583333333333333],[124,179,75,-0.4583333333333333],[124,179,76,-0.4583333333333333],[124,179,77,-0.4583333333333333],[124,179,78,-0.4583333333333333],[124,179,79,-0.4583333333333333],[124,180,64,-0.4583333333333333],[124,180,65,-0.4583333333333333],[124,180,66,-0.4583333333333333],[124,180,67,-0.4583333333333333],[124,180,68,-0.4583333333333333],[124,180,69,-0.4583333333333333],[124,180,70,-0.4583333333333333],[124,180,71,-0.4583333333333333],[124,180,72,-0.4583333333333333],[124,180,73,-0.4583333333333333],[124,180,74,-0.4583333333333333],[124,180,75,-0.4583333333333333],[124,180,76,-0.4583333333333333],[124,180,77,-0.4583333333333333],[124,180,78,-0.4583333333333333],[124,180,79,-0.4583333333333333],[124,181,64,-0.4583333333333333],[124,181,65,-0.4583333333333333],[124,181,66,-0.4583333333333333],[124,181,67,-0.4583333333333333],[124,181,68,-0.4583333333333333],[124,181,69,-0.4583333333333333],[124,181,70,-0.4583333333333333],[124,181,71,-0.4583333333333333],[124,181,72,-0.4583333333333333],[124,181,73,-0.4583333333333333],[124,181,74,-0.4583333333333333],[124,181,75,-0.4583333333333333],[124,181,76,-0.4583333333333333],[124,181,77,-0.4583333333333333],[124,181,78,-0.4583333333333333],[124,181,79,-0.4583333333333333],[124,182,64,-0.4583333333333333],[124,182,65,-0.4583333333333333],[124,182,66,-0.4583333333333333],[124,182,67,-0.4583333333333333],[124,182,68,-0.4583333333333333],[124,182,69,-0.4583333333333333],[124,182,70,-0.4583333333333333],[124,182,71,-0.4583333333333333],[124,182,72,-0.4583333333333333],[124,182,73,-0.4583333333333333],[124,182,74,-0.4583333333333333],[124,182,75,-0.4583333333333333],[124,182,76,-0.4583333333333333],[124,182,77,-0.4583333333333333],[124,182,78,-0.4583333333333333],[124,182,79,-0.4583333333333333],[124,183,64,-0.4583333333333333],[124,183,65,-0.4583333333333333],[124,183,66,-0.4583333333333333],[124,183,67,-0.4583333333333333],[124,183,68,-0.4583333333333333],[124,183,69,-0.4583333333333333],[124,183,70,-0.4583333333333333],[124,183,71,-0.4583333333333333],[124,183,72,-0.4583333333333333],[124,183,73,-0.4583333333333333],[124,183,74,-0.4583333333333333],[124,183,75,-0.4583333333333333],[124,183,76,-0.4583333333333333],[124,183,77,-0.4583333333333333],[124,183,78,-0.4583333333333333],[124,183,79,-0.4583333333333333],[124,184,64,-0.4583333333333333],[124,184,65,-0.4583333333333333],[124,184,66,-0.4583333333333333],[124,184,67,-0.4583333333333333],[124,184,68,-0.4583333333333333],[124,184,69,-0.4583333333333333],[124,184,70,-0.4583333333333333],[124,184,71,-0.4583333333333333],[124,184,72,-0.4583333333333333],[124,184,73,-0.4583333333333333],[124,184,74,-0.4583333333333333],[124,184,75,-0.4583333333333333],[124,184,76,-0.4583333333333333],[124,184,77,-0.4583333333333333],[124,184,78,-0.4583333333333333],[124,184,79,-0.4583333333333333],[124,185,64,-0.4583333333333333],[124,185,65,-0.4583333333333333],[124,185,66,-0.4583333333333333],[124,185,67,-0.4583333333333333],[124,185,68,-0.4583333333333333],[124,185,69,-0.4583333333333333],[124,185,70,-0.4583333333333333],[124,185,71,-0.4583333333333333],[124,185,72,-0.4583333333333333],[124,185,73,-0.4583333333333333],[124,185,74,-0.4583333333333333],[124,185,75,-0.4583333333333333],[124,185,76,-0.4583333333333333],[124,185,77,-0.4583333333333333],[124,185,78,-0.4583333333333333],[124,185,79,-0.4583333333333333],[124,186,64,-0.4583333333333333],[124,186,65,-0.4583333333333333],[124,186,66,-0.4583333333333333],[124,186,67,-0.4583333333333333],[124,186,68,-0.4583333333333333],[124,186,69,-0.4583333333333333],[124,186,70,-0.4583333333333333],[124,186,71,-0.4583333333333333],[124,186,72,-0.4583333333333333],[124,186,73,-0.4583333333333333],[124,186,74,-0.4583333333333333],[124,186,75,-0.4583333333333333],[124,186,76,-0.4583333333333333],[124,186,77,-0.4583333333333333],[124,186,78,-0.4583333333333333],[124,186,79,-0.4583333333333333],[124,187,64,-0.4583333333333333],[124,187,65,-0.4583333333333333],[124,187,66,-0.4583333333333333],[124,187,67,-0.4583333333333333],[124,187,68,-0.4583333333333333],[124,187,69,-0.4583333333333333],[124,187,70,-0.4583333333333333],[124,187,71,-0.4583333333333333],[124,187,72,-0.4583333333333333],[124,187,73,-0.4583333333333333],[124,187,74,-0.4583333333333333],[124,187,75,-0.4583333333333333],[124,187,76,-0.4583333333333333],[124,187,77,-0.4583333333333333],[124,187,78,-0.4583333333333333],[124,187,79,-0.4583333333333333],[124,188,64,-0.4583333333333333],[124,188,65,-0.4583333333333333],[124,188,66,-0.4583333333333333],[124,188,67,-0.4583333333333333],[124,188,68,-0.4583333333333333],[124,188,69,-0.4583333333333333],[124,188,70,-0.4583333333333333],[124,188,71,-0.4583333333333333],[124,188,72,-0.4583333333333333],[124,188,73,-0.4583333333333333],[124,188,74,-0.4583333333333333],[124,188,75,-0.4583333333333333],[124,188,76,-0.4583333333333333],[124,188,77,-0.4583333333333333],[124,188,78,-0.4583333333333333],[124,188,79,-0.4583333333333333],[124,189,64,-0.4583333333333333],[124,189,65,-0.4583333333333333],[124,189,66,-0.4583333333333333],[124,189,67,-0.4583333333333333],[124,189,68,-0.4583333333333333],[124,189,69,-0.4583333333333333],[124,189,70,-0.4583333333333333],[124,189,71,-0.4583333333333333],[124,189,72,-0.4583333333333333],[124,189,73,-0.4583333333333333],[124,189,74,-0.4583333333333333],[124,189,75,-0.4583333333333333],[124,189,76,-0.4583333333333333],[124,189,77,-0.4583333333333333],[124,189,78,-0.4583333333333333],[124,189,79,-0.4583333333333333],[124,190,64,-0.4583333333333333],[124,190,65,-0.4583333333333333],[124,190,66,-0.4583333333333333],[124,190,67,-0.4583333333333333],[124,190,68,-0.4583333333333333],[124,190,69,-0.4583333333333333],[124,190,70,-0.4583333333333333],[124,190,71,-0.4583333333333333],[124,190,72,-0.4583333333333333],[124,190,73,-0.4583333333333333],[124,190,74,-0.4583333333333333],[124,190,75,-0.4583333333333333],[124,190,76,-0.4583333333333333],[124,190,77,-0.4583333333333333],[124,190,78,-0.4583333333333333],[124,190,79,-0.4583333333333333],[124,191,64,-0.4583333333333333],[124,191,65,-0.4583333333333333],[124,191,66,-0.4583333333333333],[124,191,67,-0.4583333333333333],[124,191,68,-0.4583333333333333],[124,191,69,-0.4583333333333333],[124,191,70,-0.4583333333333333],[124,191,71,-0.4583333333333333],[124,191,72,-0.4583333333333333],[124,191,73,-0.4583333333333333],[124,191,74,-0.4583333333333333],[124,191,75,-0.4583333333333333],[124,191,76,-0.4583333333333333],[124,191,77,-0.4583333333333333],[124,191,78,-0.4583333333333333],[124,191,79,-0.4583333333333333],[124,192,64,-0.4583333333333333],[124,192,65,-0.4583333333333333],[124,192,66,-0.4583333333333333],[124,192,67,-0.4583333333333333],[124,192,68,-0.4583333333333333],[124,192,69,-0.4583333333333333],[124,192,70,-0.4583333333333333],[124,192,71,-0.4583333333333333],[124,192,72,-0.4583333333333333],[124,192,73,-0.4583333333333333],[124,192,74,-0.4583333333333333],[124,192,75,-0.4583333333333333],[124,192,76,-0.4583333333333333],[124,192,77,-0.4583333333333333],[124,192,78,-0.4583333333333333],[124,192,79,-0.4583333333333333],[124,193,64,-0.4583333333333333],[124,193,65,-0.4583333333333333],[124,193,66,-0.4583333333333333],[124,193,67,-0.4583333333333333],[124,193,68,-0.4583333333333333],[124,193,69,-0.4583333333333333],[124,193,70,-0.4583333333333333],[124,193,71,-0.4583333333333333],[124,193,72,-0.4583333333333333],[124,193,73,-0.4583333333333333],[124,193,74,-0.4583333333333333],[124,193,75,-0.4583333333333333],[124,193,76,-0.4583333333333333],[124,193,77,-0.4583333333333333],[124,193,78,-0.4583333333333333],[124,193,79,-0.4583333333333333],[124,194,64,-0.4583333333333333],[124,194,65,-0.4583333333333333],[124,194,66,-0.4583333333333333],[124,194,67,-0.4583333333333333],[124,194,68,-0.4583333333333333],[124,194,69,-0.4583333333333333],[124,194,70,-0.4583333333333333],[124,194,71,-0.4583333333333333],[124,194,72,-0.4583333333333333],[124,194,73,-0.4583333333333333],[124,194,74,-0.4583333333333333],[124,194,75,-0.4583333333333333],[124,194,76,-0.4583333333333333],[124,194,77,-0.4583333333333333],[124,194,78,-0.4583333333333333],[124,194,79,-0.4583333333333333],[124,195,64,-0.4583333333333333],[124,195,65,-0.4583333333333333],[124,195,66,-0.4583333333333333],[124,195,67,-0.4583333333333333],[124,195,68,-0.4583333333333333],[124,195,69,-0.4583333333333333],[124,195,70,-0.4583333333333333],[124,195,71,-0.4583333333333333],[124,195,72,-0.4583333333333333],[124,195,73,-0.4583333333333333],[124,195,74,-0.4583333333333333],[124,195,75,-0.4583333333333333],[124,195,76,-0.4583333333333333],[124,195,77,-0.4583333333333333],[124,195,78,-0.4583333333333333],[124,195,79,-0.4583333333333333],[124,196,64,-0.4583333333333333],[124,196,65,-0.4583333333333333],[124,196,66,-0.4583333333333333],[124,196,67,-0.4583333333333333],[124,196,68,-0.4583333333333333],[124,196,69,-0.4583333333333333],[124,196,70,-0.4583333333333333],[124,196,71,-0.4583333333333333],[124,196,72,-0.4583333333333333],[124,196,73,-0.4583333333333333],[124,196,74,-0.4583333333333333],[124,196,75,-0.4583333333333333],[124,196,76,-0.4583333333333333],[124,196,77,-0.4583333333333333],[124,196,78,-0.4583333333333333],[124,196,79,-0.4583333333333333],[124,197,64,-0.4583333333333333],[124,197,65,-0.4583333333333333],[124,197,66,-0.4583333333333333],[124,197,67,-0.4583333333333333],[124,197,68,-0.4583333333333333],[124,197,69,-0.4583333333333333],[124,197,70,-0.4583333333333333],[124,197,71,-0.4583333333333333],[124,197,72,-0.4583333333333333],[124,197,73,-0.4583333333333333],[124,197,74,-0.4583333333333333],[124,197,75,-0.4583333333333333],[124,197,76,-0.4583333333333333],[124,197,77,-0.4583333333333333],[124,197,78,-0.4583333333333333],[124,197,79,-0.4583333333333333],[124,198,64,-0.4583333333333333],[124,198,65,-0.4583333333333333],[124,198,66,-0.4583333333333333],[124,198,67,-0.4583333333333333],[124,198,68,-0.4583333333333333],[124,198,69,-0.4583333333333333],[124,198,70,-0.4583333333333333],[124,198,71,-0.4583333333333333],[124,198,72,-0.4583333333333333],[124,198,73,-0.4583333333333333],[124,198,74,-0.4583333333333333],[124,198,75,-0.4583333333333333],[124,198,76,-0.4583333333333333],[124,198,77,-0.4583333333333333],[124,198,78,-0.4583333333333333],[124,198,79,-0.4583333333333333],[124,199,64,-0.4583333333333333],[124,199,65,-0.4583333333333333],[124,199,66,-0.4583333333333333],[124,199,67,-0.4583333333333333],[124,199,68,-0.4583333333333333],[124,199,69,-0.4583333333333333],[124,199,70,-0.4583333333333333],[124,199,71,-0.4583333333333333],[124,199,72,-0.4583333333333333],[124,199,73,-0.4583333333333333],[124,199,74,-0.4583333333333333],[124,199,75,-0.4583333333333333],[124,199,76,-0.4583333333333333],[124,199,77,-0.4583333333333333],[124,199,78,-0.4583333333333333],[124,199,79,-0.4583333333333333],[124,200,64,-0.4583333333333333],[124,200,65,-0.4583333333333333],[124,200,66,-0.4583333333333333],[124,200,67,-0.4583333333333333],[124,200,68,-0.4583333333333333],[124,200,69,-0.4583333333333333],[124,200,70,-0.4583333333333333],[124,200,71,-0.4583333333333333],[124,200,72,-0.4583333333333333],[124,200,73,-0.4583333333333333],[124,200,74,-0.4583333333333333],[124,200,75,-0.4583333333333333],[124,200,76,-0.4583333333333333],[124,200,77,-0.4583333333333333],[124,200,78,-0.4583333333333333],[124,200,79,-0.4583333333333333],[124,201,64,-0.4583333333333333],[124,201,65,-0.4583333333333333],[124,201,66,-0.4583333333333333],[124,201,67,-0.4583333333333333],[124,201,68,-0.4583333333333333],[124,201,69,-0.4583333333333333],[124,201,70,-0.4583333333333333],[124,201,71,-0.4583333333333333],[124,201,72,-0.4583333333333333],[124,201,73,-0.4583333333333333],[124,201,74,-0.4583333333333333],[124,201,75,-0.4583333333333333],[124,201,76,-0.4583333333333333],[124,201,77,-0.4583333333333333],[124,201,78,-0.4583333333333333],[124,201,79,-0.4583333333333333],[124,202,64,-0.4583333333333333],[124,202,65,-0.4583333333333333],[124,202,66,-0.4583333333333333],[124,202,67,-0.4583333333333333],[124,202,68,-0.4583333333333333],[124,202,69,-0.4583333333333333],[124,202,70,-0.4583333333333333],[124,202,71,-0.4583333333333333],[124,202,72,-0.4583333333333333],[124,202,73,-0.4583333333333333],[124,202,74,-0.4583333333333333],[124,202,75,-0.4583333333333333],[124,202,76,-0.4583333333333333],[124,202,77,-0.4583333333333333],[124,202,78,-0.4583333333333333],[124,202,79,-0.4583333333333333],[124,203,64,-0.4583333333333333],[124,203,65,-0.4583333333333333],[124,203,66,-0.4583333333333333],[124,203,67,-0.4583333333333333],[124,203,68,-0.4583333333333333],[124,203,69,-0.4583333333333333],[124,203,70,-0.4583333333333333],[124,203,71,-0.4583333333333333],[124,203,72,-0.4583333333333333],[124,203,73,-0.4583333333333333],[124,203,74,-0.4583333333333333],[124,203,75,-0.4583333333333333],[124,203,76,-0.4583333333333333],[124,203,77,-0.4583333333333333],[124,203,78,-0.4583333333333333],[124,203,79,-0.4583333333333333],[124,204,64,-0.4583333333333333],[124,204,65,-0.4583333333333333],[124,204,66,-0.4583333333333333],[124,204,67,-0.4583333333333333],[124,204,68,-0.4583333333333333],[124,204,69,-0.4583333333333333],[124,204,70,-0.4583333333333333],[124,204,71,-0.4583333333333333],[124,204,72,-0.4583333333333333],[124,204,73,-0.4583333333333333],[124,204,74,-0.4583333333333333],[124,204,75,-0.4583333333333333],[124,204,76,-0.4583333333333333],[124,204,77,-0.4583333333333333],[124,204,78,-0.4583333333333333],[124,204,79,-0.4583333333333333],[124,205,64,-0.4583333333333333],[124,205,65,-0.4583333333333333],[124,205,66,-0.4583333333333333],[124,205,67,-0.4583333333333333],[124,205,68,-0.4583333333333333],[124,205,69,-0.4583333333333333],[124,205,70,-0.4583333333333333],[124,205,71,-0.4583333333333333],[124,205,72,-0.4583333333333333],[124,205,73,-0.4583333333333333],[124,205,74,-0.4583333333333333],[124,205,75,-0.4583333333333333],[124,205,76,-0.4583333333333333],[124,205,77,-0.4583333333333333],[124,205,78,-0.4583333333333333],[124,205,79,-0.4583333333333333],[124,206,64,-0.4583333333333333],[124,206,65,-0.4583333333333333],[124,206,66,-0.4583333333333333],[124,206,67,-0.4583333333333333],[124,206,68,-0.4583333333333333],[124,206,69,-0.4583333333333333],[124,206,70,-0.4583333333333333],[124,206,71,-0.4583333333333333],[124,206,72,-0.4583333333333333],[124,206,73,-0.4583333333333333],[124,206,74,-0.4583333333333333],[124,206,75,-0.4583333333333333],[124,206,76,-0.4583333333333333],[124,206,77,-0.4583333333333333],[124,206,78,-0.4583333333333333],[124,206,79,-0.4583333333333333],[124,207,64,-0.4583333333333333],[124,207,65,-0.4583333333333333],[124,207,66,-0.4583333333333333],[124,207,67,-0.4583333333333333],[124,207,68,-0.4583333333333333],[124,207,69,-0.4583333333333333],[124,207,70,-0.4583333333333333],[124,207,71,-0.4583333333333333],[124,207,72,-0.4583333333333333],[124,207,73,-0.4583333333333333],[124,207,74,-0.4583333333333333],[124,207,75,-0.4583333333333333],[124,207,76,-0.4583333333333333],[124,207,77,-0.4583333333333333],[124,207,78,-0.4583333333333333],[124,207,79,-0.4583333333333333],[124,208,64,-0.4583333333333333],[124,208,65,-0.4583333333333333],[124,208,66,-0.4583333333333333],[124,208,67,-0.4583333333333333],[124,208,68,-0.4583333333333333],[124,208,69,-0.4583333333333333],[124,208,70,-0.4583333333333333],[124,208,71,-0.4583333333333333],[124,208,72,-0.4583333333333333],[124,208,73,-0.4583333333333333],[124,208,74,-0.4583333333333333],[124,208,75,-0.4583333333333333],[124,208,76,-0.4583333333333333],[124,208,77,-0.4583333333333333],[124,208,78,-0.4583333333333333],[124,208,79,-0.4583333333333333],[124,209,64,-0.4583333333333333],[124,209,65,-0.4583333333333333],[124,209,66,-0.4583333333333333],[124,209,67,-0.4583333333333333],[124,209,68,-0.4583333333333333],[124,209,69,-0.4583333333333333],[124,209,70,-0.4583333333333333],[124,209,71,-0.4583333333333333],[124,209,72,-0.4583333333333333],[124,209,73,-0.4583333333333333],[124,209,74,-0.4583333333333333],[124,209,75,-0.4583333333333333],[124,209,76,-0.4583333333333333],[124,209,77,-0.4583333333333333],[124,209,78,-0.4583333333333333],[124,209,79,-0.4583333333333333],[124,210,64,-0.4583333333333333],[124,210,65,-0.4583333333333333],[124,210,66,-0.4583333333333333],[124,210,67,-0.4583333333333333],[124,210,68,-0.4583333333333333],[124,210,69,-0.4583333333333333],[124,210,70,-0.4583333333333333],[124,210,71,-0.4583333333333333],[124,210,72,-0.4583333333333333],[124,210,73,-0.4583333333333333],[124,210,74,-0.4583333333333333],[124,210,75,-0.4583333333333333],[124,210,76,-0.4583333333333333],[124,210,77,-0.4583333333333333],[124,210,78,-0.4583333333333333],[124,210,79,-0.4583333333333333],[124,211,64,-0.4583333333333333],[124,211,65,-0.4583333333333333],[124,211,66,-0.4583333333333333],[124,211,67,-0.4583333333333333],[124,211,68,-0.4583333333333333],[124,211,69,-0.4583333333333333],[124,211,70,-0.4583333333333333],[124,211,71,-0.4583333333333333],[124,211,72,-0.4583333333333333],[124,211,73,-0.4583333333333333],[124,211,74,-0.4583333333333333],[124,211,75,-0.4583333333333333],[124,211,76,-0.4583333333333333],[124,211,77,-0.4583333333333333],[124,211,78,-0.4583333333333333],[124,211,79,-0.4583333333333333],[124,212,64,-0.4583333333333333],[124,212,65,-0.4583333333333333],[124,212,66,-0.4583333333333333],[124,212,67,-0.4583333333333333],[124,212,68,-0.4583333333333333],[124,212,69,-0.4583333333333333],[124,212,70,-0.4583333333333333],[124,212,71,-0.4583333333333333],[124,212,72,-0.4583333333333333],[124,212,73,-0.4583333333333333],[124,212,74,-0.4583333333333333],[124,212,75,-0.4583333333333333],[124,212,76,-0.4583333333333333],[124,212,77,-0.4583333333333333],[124,212,78,-0.4583333333333333],[124,212,79,-0.4583333333333333],[124,213,64,-0.4583333333333333],[124,213,65,-0.4583333333333333],[124,213,66,-0.4583333333333333],[124,213,67,-0.4583333333333333],[124,213,68,-0.4583333333333333],[124,213,69,-0.4583333333333333],[124,213,70,-0.4583333333333333],[124,213,71,-0.4583333333333333],[124,213,72,-0.4583333333333333],[124,213,73,-0.4583333333333333],[124,213,74,-0.4583333333333333],[124,213,75,-0.4583333333333333],[124,213,76,-0.4583333333333333],[124,213,77,-0.4583333333333333],[124,213,78,-0.4583333333333333],[124,213,79,-0.4583333333333333],[124,214,64,-0.4583333333333333],[124,214,65,-0.4583333333333333],[124,214,66,-0.4583333333333333],[124,214,67,-0.4583333333333333],[124,214,68,-0.4583333333333333],[124,214,69,-0.4583333333333333],[124,214,70,-0.4583333333333333],[124,214,71,-0.4583333333333333],[124,214,72,-0.4583333333333333],[124,214,73,-0.4583333333333333],[124,214,74,-0.4583333333333333],[124,214,75,-0.4583333333333333],[124,214,76,-0.4583333333333333],[124,214,77,-0.4583333333333333],[124,214,78,-0.4583333333333333],[124,214,79,-0.4583333333333333],[124,215,64,-0.4583333333333333],[124,215,65,-0.4583333333333333],[124,215,66,-0.4583333333333333],[124,215,67,-0.4583333333333333],[124,215,68,-0.4583333333333333],[124,215,69,-0.4583333333333333],[124,215,70,-0.4583333333333333],[124,215,71,-0.4583333333333333],[124,215,72,-0.4583333333333333],[124,215,73,-0.4583333333333333],[124,215,74,-0.4583333333333333],[124,215,75,-0.4583333333333333],[124,215,76,-0.4583333333333333],[124,215,77,-0.4583333333333333],[124,215,78,-0.4583333333333333],[124,215,79,-0.4583333333333333],[124,216,64,-0.4583333333333333],[124,216,65,-0.4583333333333333],[124,216,66,-0.4583333333333333],[124,216,67,-0.4583333333333333],[124,216,68,-0.4583333333333333],[124,216,69,-0.4583333333333333],[124,216,70,-0.4583333333333333],[124,216,71,-0.4583333333333333],[124,216,72,-0.4583333333333333],[124,216,73,-0.4583333333333333],[124,216,74,-0.4583333333333333],[124,216,75,-0.4583333333333333],[124,216,76,-0.4583333333333333],[124,216,77,-0.4583333333333333],[124,216,78,-0.4583333333333333],[124,216,79,-0.4583333333333333],[124,217,64,-0.4583333333333333],[124,217,65,-0.4583333333333333],[124,217,66,-0.4583333333333333],[124,217,67,-0.4583333333333333],[124,217,68,-0.4583333333333333],[124,217,69,-0.4583333333333333],[124,217,70,-0.4583333333333333],[124,217,71,-0.4583333333333333],[124,217,72,-0.4583333333333333],[124,217,73,-0.4583333333333333],[124,217,74,-0.4583333333333333],[124,217,75,-0.4583333333333333],[124,217,76,-0.4583333333333333],[124,217,77,-0.4583333333333333],[124,217,78,-0.4583333333333333],[124,217,79,-0.4583333333333333],[124,218,64,-0.4583333333333333],[124,218,65,-0.4583333333333333],[124,218,66,-0.4583333333333333],[124,218,67,-0.4583333333333333],[124,218,68,-0.4583333333333333],[124,218,69,-0.4583333333333333],[124,218,70,-0.4583333333333333],[124,218,71,-0.4583333333333333],[124,218,72,-0.4583333333333333],[124,218,73,-0.4583333333333333],[124,218,74,-0.4583333333333333],[124,218,75,-0.4583333333333333],[124,218,76,-0.4583333333333333],[124,218,77,-0.4583333333333333],[124,218,78,-0.4583333333333333],[124,218,79,-0.4583333333333333],[124,219,64,-0.4583333333333333],[124,219,65,-0.4583333333333333],[124,219,66,-0.4583333333333333],[124,219,67,-0.4583333333333333],[124,219,68,-0.4583333333333333],[124,219,69,-0.4583333333333333],[124,219,70,-0.4583333333333333],[124,219,71,-0.4583333333333333],[124,219,72,-0.4583333333333333],[124,219,73,-0.4583333333333333],[124,219,74,-0.4583333333333333],[124,219,75,-0.4583333333333333],[124,219,76,-0.4583333333333333],[124,219,77,-0.4583333333333333],[124,219,78,-0.4583333333333333],[124,219,79,-0.4583333333333333],[124,220,64,-0.4583333333333333],[124,220,65,-0.4583333333333333],[124,220,66,-0.4583333333333333],[124,220,67,-0.4583333333333333],[124,220,68,-0.4583333333333333],[124,220,69,-0.4583333333333333],[124,220,70,-0.4583333333333333],[124,220,71,-0.4583333333333333],[124,220,72,-0.4583333333333333],[124,220,73,-0.4583333333333333],[124,220,74,-0.4583333333333333],[124,220,75,-0.4583333333333333],[124,220,76,-0.4583333333333333],[124,220,77,-0.4583333333333333],[124,220,78,-0.4583333333333333],[124,220,79,-0.4583333333333333],[124,221,64,-0.4583333333333333],[124,221,65,-0.4583333333333333],[124,221,66,-0.4583333333333333],[124,221,67,-0.4583333333333333],[124,221,68,-0.4583333333333333],[124,221,69,-0.4583333333333333],[124,221,70,-0.4583333333333333],[124,221,71,-0.4583333333333333],[124,221,72,-0.4583333333333333],[124,221,73,-0.4583333333333333],[124,221,74,-0.4583333333333333],[124,221,75,-0.4583333333333333],[124,221,76,-0.4583333333333333],[124,221,77,-0.4583333333333333],[124,221,78,-0.4583333333333333],[124,221,79,-0.4583333333333333],[124,222,64,-0.4583333333333333],[124,222,65,-0.4583333333333333],[124,222,66,-0.4583333333333333],[124,222,67,-0.4583333333333333],[124,222,68,-0.4583333333333333],[124,222,69,-0.4583333333333333],[124,222,70,-0.4583333333333333],[124,222,71,-0.4583333333333333],[124,222,72,-0.4583333333333333],[124,222,73,-0.4583333333333333],[124,222,74,-0.4583333333333333],[124,222,75,-0.4583333333333333],[124,222,76,-0.4583333333333333],[124,222,77,-0.4583333333333333],[124,222,78,-0.4583333333333333],[124,222,79,-0.4583333333333333],[124,223,64,-0.4583333333333333],[124,223,65,-0.4583333333333333],[124,223,66,-0.4583333333333333],[124,223,67,-0.4583333333333333],[124,223,68,-0.4583333333333333],[124,223,69,-0.4583333333333333],[124,223,70,-0.4583333333333333],[124,223,71,-0.4583333333333333],[124,223,72,-0.4583333333333333],[124,223,73,-0.4583333333333333],[124,223,74,-0.4583333333333333],[124,223,75,-0.4583333333333333],[124,223,76,-0.4583333333333333],[124,223,77,-0.4583333333333333],[124,223,78,-0.4583333333333333],[124,223,79,-0.4583333333333333],[124,224,64,-0.4583333333333333],[124,224,65,-0.4583333333333333],[124,224,66,-0.4583333333333333],[124,224,67,-0.4583333333333333],[124,224,68,-0.4583333333333333],[124,224,69,-0.4583333333333333],[124,224,70,-0.4583333333333333],[124,224,71,-0.4583333333333333],[124,224,72,-0.4583333333333333],[124,224,73,-0.4583333333333333],[124,224,74,-0.4583333333333333],[124,224,75,-0.4583333333333333],[124,224,76,-0.4583333333333333],[124,224,77,-0.4583333333333333],[124,224,78,-0.4583333333333333],[124,224,79,-0.4583333333333333],[124,225,64,-0.4583333333333333],[124,225,65,-0.4583333333333333],[124,225,66,-0.4583333333333333],[124,225,67,-0.4583333333333333],[124,225,68,-0.4583333333333333],[124,225,69,-0.4583333333333333],[124,225,70,-0.4583333333333333],[124,225,71,-0.4583333333333333],[124,225,72,-0.4583333333333333],[124,225,73,-0.4583333333333333],[124,225,74,-0.4583333333333333],[124,225,75,-0.4583333333333333],[124,225,76,-0.4583333333333333],[124,225,77,-0.4583333333333333],[124,225,78,-0.4583333333333333],[124,225,79,-0.4583333333333333],[124,226,64,-0.4583333333333333],[124,226,65,-0.4583333333333333],[124,226,66,-0.4583333333333333],[124,226,67,-0.4583333333333333],[124,226,68,-0.4583333333333333],[124,226,69,-0.4583333333333333],[124,226,70,-0.4583333333333333],[124,226,71,-0.4583333333333333],[124,226,72,-0.4583333333333333],[124,226,73,-0.4583333333333333],[124,226,74,-0.4583333333333333],[124,226,75,-0.4583333333333333],[124,226,76,-0.4583333333333333],[124,226,77,-0.4583333333333333],[124,226,78,-0.4583333333333333],[124,226,79,-0.4583333333333333],[124,227,64,-0.4583333333333333],[124,227,65,-0.4583333333333333],[124,227,66,-0.4583333333333333],[124,227,67,-0.4583333333333333],[124,227,68,-0.4583333333333333],[124,227,69,-0.4583333333333333],[124,227,70,-0.4583333333333333],[124,227,71,-0.4583333333333333],[124,227,72,-0.4583333333333333],[124,227,73,-0.4583333333333333],[124,227,74,-0.4583333333333333],[124,227,75,-0.4583333333333333],[124,227,76,-0.4583333333333333],[124,227,77,-0.4583333333333333],[124,227,78,-0.4583333333333333],[124,227,79,-0.4583333333333333],[124,228,64,-0.4583333333333333],[124,228,65,-0.4583333333333333],[124,228,66,-0.4583333333333333],[124,228,67,-0.4583333333333333],[124,228,68,-0.4583333333333333],[124,228,69,-0.4583333333333333],[124,228,70,-0.4583333333333333],[124,228,71,-0.4583333333333333],[124,228,72,-0.4583333333333333],[124,228,73,-0.4583333333333333],[124,228,74,-0.4583333333333333],[124,228,75,-0.4583333333333333],[124,228,76,-0.4583333333333333],[124,228,77,-0.4583333333333333],[124,228,78,-0.4583333333333333],[124,228,79,-0.4583333333333333],[124,229,64,-0.4583333333333333],[124,229,65,-0.4583333333333333],[124,229,66,-0.4583333333333333],[124,229,67,-0.4583333333333333],[124,229,68,-0.4583333333333333],[124,229,69,-0.4583333333333333],[124,229,70,-0.4583333333333333],[124,229,71,-0.4583333333333333],[124,229,72,-0.4583333333333333],[124,229,73,-0.4583333333333333],[124,229,74,-0.4583333333333333],[124,229,75,-0.4583333333333333],[124,229,76,-0.4583333333333333],[124,229,77,-0.4583333333333333],[124,229,78,-0.4583333333333333],[124,229,79,-0.4583333333333333],[124,230,64,-0.4583333333333333],[124,230,65,-0.4583333333333333],[124,230,66,-0.4583333333333333],[124,230,67,-0.4583333333333333],[124,230,68,-0.4583333333333333],[124,230,69,-0.4583333333333333],[124,230,70,-0.4583333333333333],[124,230,71,-0.4583333333333333],[124,230,72,-0.4583333333333333],[124,230,73,-0.4583333333333333],[124,230,74,-0.4583333333333333],[124,230,75,-0.4583333333333333],[124,230,76,-0.4583333333333333],[124,230,77,-0.4583333333333333],[124,230,78,-0.4583333333333333],[124,230,79,-0.4583333333333333],[124,231,64,-0.4583333333333333],[124,231,65,-0.4583333333333333],[124,231,66,-0.4583333333333333],[124,231,67,-0.4583333333333333],[124,231,68,-0.4583333333333333],[124,231,69,-0.4583333333333333],[124,231,70,-0.4583333333333333],[124,231,71,-0.4583333333333333],[124,231,72,-0.4583333333333333],[124,231,73,-0.4583333333333333],[124,231,74,-0.4583333333333333],[124,231,75,-0.4583333333333333],[124,231,76,-0.4583333333333333],[124,231,77,-0.4583333333333333],[124,231,78,-0.4583333333333333],[124,231,79,-0.4583333333333333],[124,232,64,-0.4583333333333333],[124,232,65,-0.4583333333333333],[124,232,66,-0.4583333333333333],[124,232,67,-0.4583333333333333],[124,232,68,-0.4583333333333333],[124,232,69,-0.4583333333333333],[124,232,70,-0.4583333333333333],[124,232,71,-0.4583333333333333],[124,232,72,-0.4583333333333333],[124,232,73,-0.4583333333333333],[124,232,74,-0.4583333333333333],[124,232,75,-0.4583333333333333],[124,232,76,-0.4583333333333333],[124,232,77,-0.4583333333333333],[124,232,78,-0.4583333333333333],[124,232,79,-0.4583333333333333],[124,233,64,-0.4583333333333333],[124,233,65,-0.4583333333333333],[124,233,66,-0.4583333333333333],[124,233,67,-0.4583333333333333],[124,233,68,-0.4583333333333333],[124,233,69,-0.4583333333333333],[124,233,70,-0.4583333333333333],[124,233,71,-0.4583333333333333],[124,233,72,-0.4583333333333333],[124,233,73,-0.4583333333333333],[124,233,74,-0.4583333333333333],[124,233,75,-0.4583333333333333],[124,233,76,-0.4583333333333333],[124,233,77,-0.4583333333333333],[124,233,78,-0.4583333333333333],[124,233,79,-0.4583333333333333],[124,234,64,-0.4583333333333333],[124,234,65,-0.4583333333333333],[124,234,66,-0.4583333333333333],[124,234,67,-0.4583333333333333],[124,234,68,-0.4583333333333333],[124,234,69,-0.4583333333333333],[124,234,70,-0.4583333333333333],[124,234,71,-0.4583333333333333],[124,234,72,-0.4583333333333333],[124,234,73,-0.4583333333333333],[124,234,74,-0.4583333333333333],[124,234,75,-0.4583333333333333],[124,234,76,-0.4583333333333333],[124,234,77,-0.4583333333333333],[124,234,78,-0.4583333333333333],[124,234,79,-0.4583333333333333],[124,235,64,-0.4583333333333333],[124,235,65,-0.4583333333333333],[124,235,66,-0.4583333333333333],[124,235,67,-0.4583333333333333],[124,235,68,-0.4583333333333333],[124,235,69,-0.4583333333333333],[124,235,70,-0.4583333333333333],[124,235,71,-0.4583333333333333],[124,235,72,-0.4583333333333333],[124,235,73,-0.4583333333333333],[124,235,74,-0.4583333333333333],[124,235,75,-0.4583333333333333],[124,235,76,-0.4583333333333333],[124,235,77,-0.4583333333333333],[124,235,78,-0.4583333333333333],[124,235,79,-0.4583333333333333],[124,236,64,-0.4583333333333333],[124,236,65,-0.4583333333333333],[124,236,66,-0.4583333333333333],[124,236,67,-0.4583333333333333],[124,236,68,-0.4583333333333333],[124,236,69,-0.4583333333333333],[124,236,70,-0.4583333333333333],[124,236,71,-0.4583333333333333],[124,236,72,-0.4583333333333333],[124,236,73,-0.4583333333333333],[124,236,74,-0.4583333333333333],[124,236,75,-0.4583333333333333],[124,236,76,-0.4583333333333333],[124,236,77,-0.4583333333333333],[124,236,78,-0.4583333333333333],[124,236,79,-0.4583333333333333],[124,237,64,-0.4583333333333333],[124,237,65,-0.4583333333333333],[124,237,66,-0.4583333333333333],[124,237,67,-0.4583333333333333],[124,237,68,-0.4583333333333333],[124,237,69,-0.4583333333333333],[124,237,70,-0.4583333333333333],[124,237,71,-0.4583333333333333],[124,237,72,-0.4583333333333333],[124,237,73,-0.4583333333333333],[124,237,74,-0.4583333333333333],[124,237,75,-0.4583333333333333],[124,237,76,-0.4583333333333333],[124,237,77,-0.4583333333333333],[124,237,78,-0.4583333333333333],[124,237,79,-0.4583333333333333],[124,238,64,-0.4583333333333333],[124,238,65,-0.4583333333333333],[124,238,66,-0.4583333333333333],[124,238,67,-0.4583333333333333],[124,238,68,-0.4583333333333333],[124,238,69,-0.4583333333333333],[124,238,70,-0.4583333333333333],[124,238,71,-0.4583333333333333],[124,238,72,-0.4583333333333333],[124,238,73,-0.4583333333333333],[124,238,74,-0.4583333333333333],[124,238,75,-0.4583333333333333],[124,238,76,-0.4583333333333333],[124,238,77,-0.4583333333333333],[124,238,78,-0.4583333333333333],[124,238,79,-0.4583333333333333],[124,239,64,-0.4583333333333333],[124,239,65,-0.4583333333333333],[124,239,66,-0.4583333333333333],[124,239,67,-0.4583333333333333],[124,239,68,-0.4583333333333333],[124,239,69,-0.4583333333333333],[124,239,70,-0.4583333333333333],[124,239,71,-0.4583333333333333],[124,239,72,-0.4583333333333333],[124,239,73,-0.4583333333333333],[124,239,74,-0.4583333333333333],[124,239,75,-0.4583333333333333],[124,239,76,-0.4583333333333333],[124,239,77,-0.4583333333333333],[124,239,78,-0.4583333333333333],[124,239,79,-0.4583333333333333],[124,240,64,-0.4583333333333333],[124,240,65,-0.4583333333333333],[124,240,66,-0.4583333333333333],[124,240,67,-0.4583333333333333],[124,240,68,-0.4583333333333333],[124,240,69,-0.4583333333333333],[124,240,70,-0.4583333333333333],[124,240,71,-0.4583333333333333],[124,240,72,-0.4583333333333333],[124,240,73,-0.4583333333333333],[124,240,74,-0.4583333333333333],[124,240,75,-0.4583333333333333],[124,240,76,-0.4583333333333333],[124,240,77,-0.4583333333333333],[124,240,78,-0.4583333333333333],[124,240,79,-0.4583333333333333],[124,241,64,-0.4583333333333333],[124,241,65,-0.4583333333333333],[124,241,66,-0.4583333333333333],[124,241,67,-0.4583333333333333],[124,241,68,-0.4583333333333333],[124,241,69,-0.4583333333333333],[124,241,70,-0.4583333333333333],[124,241,71,-0.4583333333333333],[124,241,72,-0.4583333333333333],[124,241,73,-0.4583333333333333],[124,241,74,-0.4583333333333333],[124,241,75,-0.4583333333333333],[124,241,76,-0.4583333333333333],[124,241,77,-0.4583333333333333],[124,241,78,-0.4583333333333333],[124,241,79,-0.4583333333333333],[124,242,64,-0.4583333333333333],[124,242,65,-0.4583333333333333],[124,242,66,-0.4583333333333333],[124,242,67,-0.4583333333333333],[124,242,68,-0.4583333333333333],[124,242,69,-0.4583333333333333],[124,242,70,-0.4583333333333333],[124,242,71,-0.4583333333333333],[124,242,72,-0.4583333333333333],[124,242,73,-0.4583333333333333],[124,242,74,-0.4583333333333333],[124,242,75,-0.4583333333333333],[124,242,76,-0.4583333333333333],[124,242,77,-0.4583333333333333],[124,242,78,-0.4583333333333333],[124,242,79,-0.4583333333333333],[124,243,64,-0.4583333333333333],[124,243,65,-0.4583333333333333],[124,243,66,-0.4583333333333333],[124,243,67,-0.4583333333333333],[124,243,68,-0.4583333333333333],[124,243,69,-0.4583333333333333],[124,243,70,-0.4583333333333333],[124,243,71,-0.4583333333333333],[124,243,72,-0.4583333333333333],[124,243,73,-0.4583333333333333],[124,243,74,-0.4583333333333333],[124,243,75,-0.4583333333333333],[124,243,76,-0.4583333333333333],[124,243,77,-0.4583333333333333],[124,243,78,-0.4583333333333333],[124,243,79,-0.4583333333333333],[124,244,64,-0.4583333333333333],[124,244,65,-0.4583333333333333],[124,244,66,-0.4583333333333333],[124,244,67,-0.4583333333333333],[124,244,68,-0.4583333333333333],[124,244,69,-0.4583333333333333],[124,244,70,-0.4583333333333333],[124,244,71,-0.4583333333333333],[124,244,72,-0.4583333333333333],[124,244,73,-0.4583333333333333],[124,244,74,-0.4583333333333333],[124,244,75,-0.4583333333333333],[124,244,76,-0.4583333333333333],[124,244,77,-0.4583333333333333],[124,244,78,-0.4583333333333333],[124,244,79,-0.4583333333333333],[124,245,64,-0.4583333333333333],[124,245,65,-0.4583333333333333],[124,245,66,-0.4583333333333333],[124,245,67,-0.4583333333333333],[124,245,68,-0.4583333333333333],[124,245,69,-0.4583333333333333],[124,245,70,-0.4583333333333333],[124,245,71,-0.4583333333333333],[124,245,72,-0.4583333333333333],[124,245,73,-0.4583333333333333],[124,245,74,-0.4583333333333333],[124,245,75,-0.4583333333333333],[124,245,76,-0.4583333333333333],[124,245,77,-0.4583333333333333],[124,245,78,-0.4583333333333333],[124,245,79,-0.4583333333333333],[124,246,64,-0.4583333333333333],[124,246,65,-0.4583333333333333],[124,246,66,-0.4583333333333333],[124,246,67,-0.4583333333333333],[124,246,68,-0.4583333333333333],[124,246,69,-0.4583333333333333],[124,246,70,-0.4583333333333333],[124,246,71,-0.4583333333333333],[124,246,72,-0.4583333333333333],[124,246,73,-0.4583333333333333],[124,246,74,-0.4583333333333333],[124,246,75,-0.4583333333333333],[124,246,76,-0.4583333333333333],[124,246,77,-0.4583333333333333],[124,246,78,-0.4583333333333333],[124,246,79,-0.4583333333333333],[124,247,64,-0.4583333333333333],[124,247,65,-0.4583333333333333],[124,247,66,-0.4583333333333333],[124,247,67,-0.4583333333333333],[124,247,68,-0.4583333333333333],[124,247,69,-0.4583333333333333],[124,247,70,-0.4583333333333333],[124,247,71,-0.4583333333333333],[124,247,72,-0.4583333333333333],[124,247,73,-0.4583333333333333],[124,247,74,-0.4583333333333333],[124,247,75,-0.4583333333333333],[124,247,76,-0.4583333333333333],[124,247,77,-0.4583333333333333],[124,247,78,-0.4583333333333333],[124,247,79,-0.4583333333333333],[124,248,64,-0.4583333333333333],[124,248,65,-0.4583333333333333],[124,248,66,-0.4583333333333333],[124,248,67,-0.4583333333333333],[124,248,68,-0.4583333333333333],[124,248,69,-0.4583333333333333],[124,248,70,-0.4583333333333333],[124,248,71,-0.4583333333333333],[124,248,72,-0.4583333333333333],[124,248,73,-0.4583333333333333],[124,248,74,-0.4583333333333333],[124,248,75,-0.4583333333333333],[124,248,76,-0.4583333333333333],[124,248,77,-0.4583333333333333],[124,248,78,-0.4583333333333333],[124,248,79,-0.4583333333333333],[124,249,64,-0.4583333333333333],[124,249,65,-0.4583333333333333],[124,249,66,-0.4583333333333333],[124,249,67,-0.4583333333333333],[124,249,68,-0.4583333333333333],[124,249,69,-0.4583333333333333],[124,249,70,-0.4583333333333333],[124,249,71,-0.4583333333333333],[124,249,72,-0.4583333333333333],[124,249,73,-0.4583333333333333],[124,249,74,-0.4583333333333333],[124,249,75,-0.4583333333333333],[124,249,76,-0.4583333333333333],[124,249,77,-0.4583333333333333],[124,249,78,-0.4583333333333333],[124,249,79,-0.4583333333333333],[124,250,64,-0.4583333333333333],[124,250,65,-0.4583333333333333],[124,250,66,-0.4583333333333333],[124,250,67,-0.4583333333333333],[124,250,68,-0.4583333333333333],[124,250,69,-0.4583333333333333],[124,250,70,-0.4583333333333333],[124,250,71,-0.4583333333333333],[124,250,72,-0.4583333333333333],[124,250,73,-0.4583333333333333],[124,250,74,-0.4583333333333333],[124,250,75,-0.4583333333333333],[124,250,76,-0.4583333333333333],[124,250,77,-0.4583333333333333],[124,250,78,-0.4583333333333333],[124,250,79,-0.4583333333333333],[124,251,64,-0.4583333333333333],[124,251,65,-0.4583333333333333],[124,251,66,-0.4583333333333333],[124,251,67,-0.4583333333333333],[124,251,68,-0.4583333333333333],[124,251,69,-0.4583333333333333],[124,251,70,-0.4583333333333333],[124,251,71,-0.4583333333333333],[124,251,72,-0.4583333333333333],[124,251,73,-0.4583333333333333],[124,251,74,-0.4583333333333333],[124,251,75,-0.4583333333333333],[124,251,76,-0.4583333333333333],[124,251,77,-0.4583333333333333],[124,251,78,-0.4583333333333333],[124,251,79,-0.4583333333333333],[124,252,64,-0.4583333333333333],[124,252,65,-0.4583333333333333],[124,252,66,-0.4583333333333333],[124,252,67,-0.4583333333333333],[124,252,68,-0.4583333333333333],[124,252,69,-0.4583333333333333],[124,252,70,-0.4583333333333333],[124,252,71,-0.4583333333333333],[124,252,72,-0.4583333333333333],[124,252,73,-0.4583333333333333],[124,252,74,-0.4583333333333333],[124,252,75,-0.4583333333333333],[124,252,76,-0.4583333333333333],[124,252,77,-0.4583333333333333],[124,252,78,-0.4583333333333333],[124,252,79,-0.4583333333333333],[124,253,64,-0.4583333333333333],[124,253,65,-0.4583333333333333],[124,253,66,-0.4583333333333333],[124,253,67,-0.4583333333333333],[124,253,68,-0.4583333333333333],[124,253,69,-0.4583333333333333],[124,253,70,-0.4583333333333333],[124,253,71,-0.4583333333333333],[124,253,72,-0.4583333333333333],[124,253,73,-0.4583333333333333],[124,253,74,-0.4583333333333333],[124,253,75,-0.4583333333333333],[124,253,76,-0.4583333333333333],[124,253,77,-0.4583333333333333],[124,253,78,-0.4583333333333333],[124,253,79,-0.4583333333333333],[124,254,64,-0.3806677666144621],[124,254,65,-0.38059627200551766],[124,254,66,-0.3799203073554251],[124,254,67,-0.37915779164519225],[124,254,68,-0.3792004764760333],[124,254,69,-0.380729856241653],[124,254,70,-0.38233178715245925],[124,254,71,-0.38364651925340554],[124,254,72,-0.3842630804853885],[124,254,73,-0.38595702603394577],[124,254,74,-0.3873318717149145],[124,254,75,-0.3877904878187647],[124,254,76,-0.3870437904175279],[124,254,77,-0.3867377140394138],[124,254,78,-0.38577561480595635],[124,254,79,-0.38454624922618064],[124,255,64,-0.21128682922403452],[124,255,65,-0.21125453723578694],[124,255,66,-0.2109200308023179],[124,255,67,-0.21051234357015383],[124,255,68,-0.2102824945544716],[124,255,69,-0.21128860006708466],[124,255,70,-0.21203328412749084],[124,255,71,-0.21293147160195516],[124,255,72,-0.21324104980789044],[124,255,73,-0.21415835500337335],[124,255,74,-0.21498993870761013],[124,255,75,-0.2152915473602523],[124,255,76,-0.21503637783746438],[124,255,77,-0.2147823297096542],[124,255,78,-0.21433614380279997],[124,255,79,-0.21361026874725714],[124,256,64,-0.02499479166666667],[124,256,65,-0.02499479166666667],[124,256,66,-0.02499479166666667],[124,256,67,-0.02499479166666667],[124,256,68,-0.02499479166666667],[124,256,69,-0.02499479166666667],[124,256,70,-0.02499479166666667],[124,256,71,-0.02499479166666667],[124,256,72,-0.02499479166666667],[124,256,73,-0.02499479166666667],[124,256,74,-0.02499479166666667],[124,256,75,-0.02499479166666667],[124,256,76,-0.02499479166666667],[124,256,77,-0.02499479166666667],[124,256,78,-0.02499479166666667],[124,256,79,-0.02499479166666667],[124,257,64,-0.02499479166666667],[124,257,65,-0.02499479166666667],[124,257,66,-0.02499479166666667],[124,257,67,-0.02499479166666667],[124,257,68,-0.02499479166666667],[124,257,69,-0.02499479166666667],[124,257,70,-0.02499479166666667],[124,257,71,-0.02499479166666667],[124,257,72,-0.02499479166666667],[124,257,73,-0.02499479166666667],[124,257,74,-0.02499479166666667],[124,257,75,-0.02499479166666667],[124,257,76,-0.02499479166666667],[124,257,77,-0.02499479166666667],[124,257,78,-0.02499479166666667],[124,257,79,-0.02499479166666667],[124,258,64,-0.02499479166666667],[124,258,65,-0.02499479166666667],[124,258,66,-0.02499479166666667],[124,258,67,-0.02499479166666667],[124,258,68,-0.02499479166666667],[124,258,69,-0.02499479166666667],[124,258,70,-0.02499479166666667],[124,258,71,-0.02499479166666667],[124,258,72,-0.02499479166666667],[124,258,73,-0.02499479166666667],[124,258,74,-0.02499479166666667],[124,258,75,-0.02499479166666667],[124,258,76,-0.02499479166666667],[124,258,77,-0.02499479166666667],[124,258,78,-0.02499479166666667],[124,258,79,-0.02499479166666667],[124,259,64,-0.02499479166666667],[124,259,65,-0.02499479166666667],[124,259,66,-0.02499479166666667],[124,259,67,-0.02499479166666667],[124,259,68,-0.02499479166666667],[124,259,69,-0.02499479166666667],[124,259,70,-0.02499479166666667],[124,259,71,-0.02499479166666667],[124,259,72,-0.02499479166666667],[124,259,73,-0.02499479166666667],[124,259,74,-0.02499479166666667],[124,259,75,-0.02499479166666667],[124,259,76,-0.02499479166666667],[124,259,77,-0.02499479166666667],[124,259,78,-0.02499479166666667],[124,259,79,-0.02499479166666667],[124,260,64,-0.02499479166666667],[124,260,65,-0.02499479166666667],[124,260,66,-0.02499479166666667],[124,260,67,-0.02499479166666667],[124,260,68,-0.02499479166666667],[124,260,69,-0.02499479166666667],[124,260,70,-0.02499479166666667],[124,260,71,-0.02499479166666667],[124,260,72,-0.02499479166666667],[124,260,73,-0.02499479166666667],[124,260,74,-0.02499479166666667],[124,260,75,-0.02499479166666667],[124,260,76,-0.02499479166666667],[124,260,77,-0.02499479166666667],[124,260,78,-0.02499479166666667],[124,260,79,-0.02499479166666667],[124,261,64,-0.02499479166666667],[124,261,65,-0.02499479166666667],[124,261,66,-0.02499479166666667],[124,261,67,-0.02499479166666667],[124,261,68,-0.02499479166666667],[124,261,69,-0.02499479166666667],[124,261,70,-0.02499479166666667],[124,261,71,-0.02499479166666667],[124,261,72,-0.02499479166666667],[124,261,73,-0.02499479166666667],[124,261,74,-0.02499479166666667],[124,261,75,-0.02499479166666667],[124,261,76,-0.02499479166666667],[124,261,77,-0.02499479166666667],[124,261,78,-0.02499479166666667],[124,261,79,-0.02499479166666667],[124,262,64,-0.02499479166666667],[124,262,65,-0.02499479166666667],[124,262,66,-0.02499479166666667],[124,262,67,-0.02499479166666667],[124,262,68,-0.02499479166666667],[124,262,69,-0.02499479166666667],[124,262,70,-0.02499479166666667],[124,262,71,-0.02499479166666667],[124,262,72,-0.02499479166666667],[124,262,73,-0.02499479166666667],[124,262,74,-0.02499479166666667],[124,262,75,-0.02499479166666667],[124,262,76,-0.02499479166666667],[124,262,77,-0.02499479166666667],[124,262,78,-0.02499479166666667],[124,262,79,-0.02499479166666667],[124,263,64,-0.02499479166666667],[124,263,65,-0.02499479166666667],[124,263,66,-0.02499479166666667],[124,263,67,-0.02499479166666667],[124,263,68,-0.02499479166666667],[124,263,69,-0.02499479166666667],[124,263,70,-0.02499479166666667],[124,263,71,-0.02499479166666667],[124,263,72,-0.02499479166666667],[124,263,73,-0.02499479166666667],[124,263,74,-0.02499479166666667],[124,263,75,-0.02499479166666667],[124,263,76,-0.02499479166666667],[124,263,77,-0.02499479166666667],[124,263,78,-0.02499479166666667],[124,263,79,-0.02499479166666667],[124,264,64,-0.02499479166666667],[124,264,65,-0.02499479166666667],[124,264,66,-0.02499479166666667],[124,264,67,-0.02499479166666667],[124,264,68,-0.02499479166666667],[124,264,69,-0.02499479166666667],[124,264,70,-0.02499479166666667],[124,264,71,-0.02499479166666667],[124,264,72,-0.02499479166666667],[124,264,73,-0.02499479166666667],[124,264,74,-0.02499479166666667],[124,264,75,-0.02499479166666667],[124,264,76,-0.02499479166666667],[124,264,77,-0.02499479166666667],[124,264,78,-0.02499479166666667],[124,264,79,-0.02499479166666667],[124,265,64,-0.02499479166666667],[124,265,65,-0.02499479166666667],[124,265,66,-0.02499479166666667],[124,265,67,-0.02499479166666667],[124,265,68,-0.02499479166666667],[124,265,69,-0.02499479166666667],[124,265,70,-0.02499479166666667],[124,265,71,-0.02499479166666667],[124,265,72,-0.02499479166666667],[124,265,73,-0.02499479166666667],[124,265,74,-0.02499479166666667],[124,265,75,-0.02499479166666667],[124,265,76,-0.02499479166666667],[124,265,77,-0.02499479166666667],[124,265,78,-0.02499479166666667],[124,265,79,-0.02499479166666667],[124,266,64,-0.02499479166666667],[124,266,65,-0.02499479166666667],[124,266,66,-0.02499479166666667],[124,266,67,-0.02499479166666667],[124,266,68,-0.02499479166666667],[124,266,69,-0.02499479166666667],[124,266,70,-0.02499479166666667],[124,266,71,-0.02499479166666667],[124,266,72,-0.02499479166666667],[124,266,73,-0.02499479166666667],[124,266,74,-0.02499479166666667],[124,266,75,-0.02499479166666667],[124,266,76,-0.02499479166666667],[124,266,77,-0.02499479166666667],[124,266,78,-0.02499479166666667],[124,266,79,-0.02499479166666667],[124,267,64,-0.02499479166666667],[124,267,65,-0.02499479166666667],[124,267,66,-0.02499479166666667],[124,267,67,-0.02499479166666667],[124,267,68,-0.02499479166666667],[124,267,69,-0.02499479166666667],[124,267,70,-0.02499479166666667],[124,267,71,-0.02499479166666667],[124,267,72,-0.02499479166666667],[124,267,73,-0.02499479166666667],[124,267,74,-0.02499479166666667],[124,267,75,-0.02499479166666667],[124,267,76,-0.02499479166666667],[124,267,77,-0.02499479166666667],[124,267,78,-0.02499479166666667],[124,267,79,-0.02499479166666667],[124,268,64,-0.02499479166666667],[124,268,65,-0.02499479166666667],[124,268,66,-0.02499479166666667],[124,268,67,-0.02499479166666667],[124,268,68,-0.02499479166666667],[124,268,69,-0.02499479166666667],[124,268,70,-0.02499479166666667],[124,268,71,-0.02499479166666667],[124,268,72,-0.02499479166666667],[124,268,73,-0.02499479166666667],[124,268,74,-0.02499479166666667],[124,268,75,-0.02499479166666667],[124,268,76,-0.02499479166666667],[124,268,77,-0.02499479166666667],[124,268,78,-0.02499479166666667],[124,268,79,-0.02499479166666667],[124,269,64,-0.02499479166666667],[124,269,65,-0.02499479166666667],[124,269,66,-0.02499479166666667],[124,269,67,-0.02499479166666667],[124,269,68,-0.02499479166666667],[124,269,69,-0.02499479166666667],[124,269,70,-0.02499479166666667],[124,269,71,-0.02499479166666667],[124,269,72,-0.02499479166666667],[124,269,73,-0.02499479166666667],[124,269,74,-0.02499479166666667],[124,269,75,-0.02499479166666667],[124,269,76,-0.02499479166666667],[124,269,77,-0.02499479166666667],[124,269,78,-0.02499479166666667],[124,269,79,-0.02499479166666667],[124,270,64,-0.02499479166666667],[124,270,65,-0.02499479166666667],[124,270,66,-0.02499479166666667],[124,270,67,-0.02499479166666667],[124,270,68,-0.02499479166666667],[124,270,69,-0.02499479166666667],[124,270,70,-0.02499479166666667],[124,270,71,-0.02499479166666667],[124,270,72,-0.02499479166666667],[124,270,73,-0.02499479166666667],[124,270,74,-0.02499479166666667],[124,270,75,-0.02499479166666667],[124,270,76,-0.02499479166666667],[124,270,77,-0.02499479166666667],[124,270,78,-0.02499479166666667],[124,270,79,-0.02499479166666667],[124,271,64,-0.02499479166666667],[124,271,65,-0.02499479166666667],[124,271,66,-0.02499479166666667],[124,271,67,-0.02499479166666667],[124,271,68,-0.02499479166666667],[124,271,69,-0.02499479166666667],[124,271,70,-0.02499479166666667],[124,271,71,-0.02499479166666667],[124,271,72,-0.02499479166666667],[124,271,73,-0.02499479166666667],[124,271,74,-0.02499479166666667],[124,271,75,-0.02499479166666667],[124,271,76,-0.02499479166666667],[124,271,77,-0.02499479166666667],[124,271,78,-0.02499479166666667],[124,271,79,-0.02499479166666667],[124,272,64,-0.02499479166666667],[124,272,65,-0.02499479166666667],[124,272,66,-0.02499479166666667],[124,272,67,-0.02499479166666667],[124,272,68,-0.02499479166666667],[124,272,69,-0.02499479166666667],[124,272,70,-0.02499479166666667],[124,272,71,-0.02499479166666667],[124,272,72,-0.02499479166666667],[124,272,73,-0.02499479166666667],[124,272,74,-0.02499479166666667],[124,272,75,-0.02499479166666667],[124,272,76,-0.02499479166666667],[124,272,77,-0.02499479166666667],[124,272,78,-0.02499479166666667],[124,272,79,-0.02499479166666667],[124,273,64,-0.02499479166666667],[124,273,65,-0.02499479166666667],[124,273,66,-0.02499479166666667],[124,273,67,-0.02499479166666667],[124,273,68,-0.02499479166666667],[124,273,69,-0.02499479166666667],[124,273,70,-0.02499479166666667],[124,273,71,-0.02499479166666667],[124,273,72,-0.02499479166666667],[124,273,73,-0.02499479166666667],[124,273,74,-0.02499479166666667],[124,273,75,-0.02499479166666667],[124,273,76,-0.02499479166666667],[124,273,77,-0.02499479166666667],[124,273,78,-0.02499479166666667],[124,273,79,-0.02499479166666667],[124,274,64,-0.02499479166666667],[124,274,65,-0.02499479166666667],[124,274,66,-0.02499479166666667],[124,274,67,-0.02499479166666667],[124,274,68,-0.02499479166666667],[124,274,69,-0.02499479166666667],[124,274,70,-0.02499479166666667],[124,274,71,-0.02499479166666667],[124,274,72,-0.02499479166666667],[124,274,73,-0.02499479166666667],[124,274,74,-0.02499479166666667],[124,274,75,-0.02499479166666667],[124,274,76,-0.02499479166666667],[124,274,77,-0.02499479166666667],[124,274,78,-0.02499479166666667],[124,274,79,-0.02499479166666667],[124,275,64,-0.02499479166666667],[124,275,65,-0.02499479166666667],[124,275,66,-0.02499479166666667],[124,275,67,-0.02499479166666667],[124,275,68,-0.02499479166666667],[124,275,69,-0.02499479166666667],[124,275,70,-0.02499479166666667],[124,275,71,-0.02499479166666667],[124,275,72,-0.02499479166666667],[124,275,73,-0.02499479166666667],[124,275,74,-0.02499479166666667],[124,275,75,-0.02499479166666667],[124,275,76,-0.02499479166666667],[124,275,77,-0.02499479166666667],[124,275,78,-0.02499479166666667],[124,275,79,-0.02499479166666667],[124,276,64,-0.02499479166666667],[124,276,65,-0.02499479166666667],[124,276,66,-0.02499479166666667],[124,276,67,-0.02499479166666667],[124,276,68,-0.02499479166666667],[124,276,69,-0.02499479166666667],[124,276,70,-0.02499479166666667],[124,276,71,-0.02499479166666667],[124,276,72,-0.02499479166666667],[124,276,73,-0.02499479166666667],[124,276,74,-0.02499479166666667],[124,276,75,-0.02499479166666667],[124,276,76,-0.02499479166666667],[124,276,77,-0.02499479166666667],[124,276,78,-0.02499479166666667],[124,276,79,-0.02499479166666667],[124,277,64,-0.02499479166666667],[124,277,65,-0.02499479166666667],[124,277,66,-0.02499479166666667],[124,277,67,-0.02499479166666667],[124,277,68,-0.02499479166666667],[124,277,69,-0.02499479166666667],[124,277,70,-0.02499479166666667],[124,277,71,-0.02499479166666667],[124,277,72,-0.02499479166666667],[124,277,73,-0.02499479166666667],[124,277,74,-0.02499479166666667],[124,277,75,-0.02499479166666667],[124,277,76,-0.02499479166666667],[124,277,77,-0.02499479166666667],[124,277,78,-0.02499479166666667],[124,277,79,-0.02499479166666667],[124,278,64,-0.02499479166666667],[124,278,65,-0.02499479166666667],[124,278,66,-0.02499479166666667],[124,278,67,-0.02499479166666667],[124,278,68,-0.02499479166666667],[124,278,69,-0.02499479166666667],[124,278,70,-0.02499479166666667],[124,278,71,-0.02499479166666667],[124,278,72,-0.02499479166666667],[124,278,73,-0.02499479166666667],[124,278,74,-0.02499479166666667],[124,278,75,-0.02499479166666667],[124,278,76,-0.02499479166666667],[124,278,77,-0.02499479166666667],[124,278,78,-0.02499479166666667],[124,278,79,-0.02499479166666667],[124,279,64,-0.02499479166666667],[124,279,65,-0.02499479166666667],[124,279,66,-0.02499479166666667],[124,279,67,-0.02499479166666667],[124,279,68,-0.02499479166666667],[124,279,69,-0.02499479166666667],[124,279,70,-0.02499479166666667],[124,279,71,-0.02499479166666667],[124,279,72,-0.02499479166666667],[124,279,73,-0.02499479166666667],[124,279,74,-0.02499479166666667],[124,279,75,-0.02499479166666667],[124,279,76,-0.02499479166666667],[124,279,77,-0.02499479166666667],[124,279,78,-0.02499479166666667],[124,279,79,-0.02499479166666667],[124,280,64,-0.02499479166666667],[124,280,65,-0.02499479166666667],[124,280,66,-0.02499479166666667],[124,280,67,-0.02499479166666667],[124,280,68,-0.02499479166666667],[124,280,69,-0.02499479166666667],[124,280,70,-0.02499479166666667],[124,280,71,-0.02499479166666667],[124,280,72,-0.02499479166666667],[124,280,73,-0.02499479166666667],[124,280,74,-0.02499479166666667],[124,280,75,-0.02499479166666667],[124,280,76,-0.02499479166666667],[124,280,77,-0.02499479166666667],[124,280,78,-0.02499479166666667],[124,280,79,-0.02499479166666667],[124,281,64,-0.02499479166666667],[124,281,65,-0.02499479166666667],[124,281,66,-0.02499479166666667],[124,281,67,-0.02499479166666667],[124,281,68,-0.02499479166666667],[124,281,69,-0.02499479166666667],[124,281,70,-0.02499479166666667],[124,281,71,-0.02499479166666667],[124,281,72,-0.02499479166666667],[124,281,73,-0.02499479166666667],[124,281,74,-0.02499479166666667],[124,281,75,-0.02499479166666667],[124,281,76,-0.02499479166666667],[124,281,77,-0.02499479166666667],[124,281,78,-0.02499479166666667],[124,281,79,-0.02499479166666667],[124,282,64,-0.02499479166666667],[124,282,65,-0.02499479166666667],[124,282,66,-0.02499479166666667],[124,282,67,-0.02499479166666667],[124,282,68,-0.02499479166666667],[124,282,69,-0.02499479166666667],[124,282,70,-0.02499479166666667],[124,282,71,-0.02499479166666667],[124,282,72,-0.02499479166666667],[124,282,73,-0.02499479166666667],[124,282,74,-0.02499479166666667],[124,282,75,-0.02499479166666667],[124,282,76,-0.02499479166666667],[124,282,77,-0.02499479166666667],[124,282,78,-0.02499479166666667],[124,282,79,-0.02499479166666667],[124,283,64,-0.02499479166666667],[124,283,65,-0.02499479166666667],[124,283,66,-0.02499479166666667],[124,283,67,-0.02499479166666667],[124,283,68,-0.02499479166666667],[124,283,69,-0.02499479166666667],[124,283,70,-0.02499479166666667],[124,283,71,-0.02499479166666667],[124,283,72,-0.02499479166666667],[124,283,73,-0.02499479166666667],[124,283,74,-0.02499479166666667],[124,283,75,-0.02499479166666667],[124,283,76,-0.02499479166666667],[124,283,77,-0.02499479166666667],[124,283,78,-0.02499479166666667],[124,283,79,-0.02499479166666667],[124,284,64,-0.02499479166666667],[124,284,65,-0.02499479166666667],[124,284,66,-0.02499479166666667],[124,284,67,-0.02499479166666667],[124,284,68,-0.02499479166666667],[124,284,69,-0.02499479166666667],[124,284,70,-0.02499479166666667],[124,284,71,-0.02499479166666667],[124,284,72,-0.02499479166666667],[124,284,73,-0.02499479166666667],[124,284,74,-0.02499479166666667],[124,284,75,-0.02499479166666667],[124,284,76,-0.02499479166666667],[124,284,77,-0.02499479166666667],[124,284,78,-0.02499479166666667],[124,284,79,-0.02499479166666667],[124,285,64,-0.02499479166666667],[124,285,65,-0.02499479166666667],[124,285,66,-0.02499479166666667],[124,285,67,-0.02499479166666667],[124,285,68,-0.02499479166666667],[124,285,69,-0.02499479166666667],[124,285,70,-0.02499479166666667],[124,285,71,-0.02499479166666667],[124,285,72,-0.02499479166666667],[124,285,73,-0.02499479166666667],[124,285,74,-0.02499479166666667],[124,285,75,-0.02499479166666667],[124,285,76,-0.02499479166666667],[124,285,77,-0.02499479166666667],[124,285,78,-0.02499479166666667],[124,285,79,-0.02499479166666667],[124,286,64,-0.02499479166666667],[124,286,65,-0.02499479166666667],[124,286,66,-0.02499479166666667],[124,286,67,-0.02499479166666667],[124,286,68,-0.02499479166666667],[124,286,69,-0.02499479166666667],[124,286,70,-0.02499479166666667],[124,286,71,-0.02499479166666667],[124,286,72,-0.02499479166666667],[124,286,73,-0.02499479166666667],[124,286,74,-0.02499479166666667],[124,286,75,-0.02499479166666667],[124,286,76,-0.02499479166666667],[124,286,77,-0.02499479166666667],[124,286,78,-0.02499479166666667],[124,286,79,-0.02499479166666667],[124,287,64,-0.02499479166666667],[124,287,65,-0.02499479166666667],[124,287,66,-0.02499479166666667],[124,287,67,-0.02499479166666667],[124,287,68,-0.02499479166666667],[124,287,69,-0.02499479166666667],[124,287,70,-0.02499479166666667],[124,287,71,-0.02499479166666667],[124,287,72,-0.02499479166666667],[124,287,73,-0.02499479166666667],[124,287,74,-0.02499479166666667],[124,287,75,-0.02499479166666667],[124,287,76,-0.02499479166666667],[124,287,77,-0.02499479166666667],[124,287,78,-0.02499479166666667],[124,287,79,-0.02499479166666667],[124,288,64,-0.02499479166666667],[124,288,65,-0.02499479166666667],[124,288,66,-0.02499479166666667],[124,288,67,-0.02499479166666667],[124,288,68,-0.02499479166666667],[124,288,69,-0.02499479166666667],[124,288,70,-0.02499479166666667],[124,288,71,-0.02499479166666667],[124,288,72,-0.02499479166666667],[124,288,73,-0.02499479166666667],[124,288,74,-0.02499479166666667],[124,288,75,-0.02499479166666667],[124,288,76,-0.02499479166666667],[124,288,77,-0.02499479166666667],[124,288,78,-0.02499479166666667],[124,288,79,-0.02499479166666667],[124,289,64,-0.02499479166666667],[124,289,65,-0.02499479166666667],[124,289,66,-0.02499479166666667],[124,289,67,-0.02499479166666667],[124,289,68,-0.02499479166666667],[124,289,69,-0.02499479166666667],[124,289,70,-0.02499479166666667],[124,289,71,-0.02499479166666667],[124,289,72,-0.02499479166666667],[124,289,73,-0.02499479166666667],[124,289,74,-0.02499479166666667],[124,289,75,-0.02499479166666667],[124,289,76,-0.02499479166666667],[124,289,77,-0.02499479166666667],[124,289,78,-0.02499479166666667],[124,289,79,-0.02499479166666667],[124,290,64,-0.02499479166666667],[124,290,65,-0.02499479166666667],[124,290,66,-0.02499479166666667],[124,290,67,-0.02499479166666667],[124,290,68,-0.02499479166666667],[124,290,69,-0.02499479166666667],[124,290,70,-0.02499479166666667],[124,290,71,-0.02499479166666667],[124,290,72,-0.02499479166666667],[124,290,73,-0.02499479166666667],[124,290,74,-0.02499479166666667],[124,290,75,-0.02499479166666667],[124,290,76,-0.02499479166666667],[124,290,77,-0.02499479166666667],[124,290,78,-0.02499479166666667],[124,290,79,-0.02499479166666667],[124,291,64,-0.02499479166666667],[124,291,65,-0.02499479166666667],[124,291,66,-0.02499479166666667],[124,291,67,-0.02499479166666667],[124,291,68,-0.02499479166666667],[124,291,69,-0.02499479166666667],[124,291,70,-0.02499479166666667],[124,291,71,-0.02499479166666667],[124,291,72,-0.02499479166666667],[124,291,73,-0.02499479166666667],[124,291,74,-0.02499479166666667],[124,291,75,-0.02499479166666667],[124,291,76,-0.02499479166666667],[124,291,77,-0.02499479166666667],[124,291,78,-0.02499479166666667],[124,291,79,-0.02499479166666667],[124,292,64,-0.02499479166666667],[124,292,65,-0.02499479166666667],[124,292,66,-0.02499479166666667],[124,292,67,-0.02499479166666667],[124,292,68,-0.02499479166666667],[124,292,69,-0.02499479166666667],[124,292,70,-0.02499479166666667],[124,292,71,-0.02499479166666667],[124,292,72,-0.02499479166666667],[124,292,73,-0.02499479166666667],[124,292,74,-0.02499479166666667],[124,292,75,-0.02499479166666667],[124,292,76,-0.02499479166666667],[124,292,77,-0.02499479166666667],[124,292,78,-0.02499479166666667],[124,292,79,-0.02499479166666667],[124,293,64,-0.02499479166666667],[124,293,65,-0.02499479166666667],[124,293,66,-0.02499479166666667],[124,293,67,-0.02499479166666667],[124,293,68,-0.02499479166666667],[124,293,69,-0.02499479166666667],[124,293,70,-0.02499479166666667],[124,293,71,-0.02499479166666667],[124,293,72,-0.02499479166666667],[124,293,73,-0.02499479166666667],[124,293,74,-0.02499479166666667],[124,293,75,-0.02499479166666667],[124,293,76,-0.02499479166666667],[124,293,77,-0.02499479166666667],[124,293,78,-0.02499479166666667],[124,293,79,-0.02499479166666667],[124,294,64,-0.02499479166666667],[124,294,65,-0.02499479166666667],[124,294,66,-0.02499479166666667],[124,294,67,-0.02499479166666667],[124,294,68,-0.02499479166666667],[124,294,69,-0.02499479166666667],[124,294,70,-0.02499479166666667],[124,294,71,-0.02499479166666667],[124,294,72,-0.02499479166666667],[124,294,73,-0.02499479166666667],[124,294,74,-0.02499479166666667],[124,294,75,-0.02499479166666667],[124,294,76,-0.02499479166666667],[124,294,77,-0.02499479166666667],[124,294,78,-0.02499479166666667],[124,294,79,-0.02499479166666667],[124,295,64,-0.02499479166666667],[124,295,65,-0.02499479166666667],[124,295,66,-0.02499479166666667],[124,295,67,-0.02499479166666667],[124,295,68,-0.02499479166666667],[124,295,69,-0.02499479166666667],[124,295,70,-0.02499479166666667],[124,295,71,-0.02499479166666667],[124,295,72,-0.02499479166666667],[124,295,73,-0.02499479166666667],[124,295,74,-0.02499479166666667],[124,295,75,-0.02499479166666667],[124,295,76,-0.02499479166666667],[124,295,77,-0.02499479166666667],[124,295,78,-0.02499479166666667],[124,295,79,-0.02499479166666667],[124,296,64,-0.02499479166666667],[124,296,65,-0.02499479166666667],[124,296,66,-0.02499479166666667],[124,296,67,-0.02499479166666667],[124,296,68,-0.02499479166666667],[124,296,69,-0.02499479166666667],[124,296,70,-0.02499479166666667],[124,296,71,-0.02499479166666667],[124,296,72,-0.02499479166666667],[124,296,73,-0.02499479166666667],[124,296,74,-0.02499479166666667],[124,296,75,-0.02499479166666667],[124,296,76,-0.02499479166666667],[124,296,77,-0.02499479166666667],[124,296,78,-0.02499479166666667],[124,296,79,-0.02499479166666667],[124,297,64,-0.02499479166666667],[124,297,65,-0.02499479166666667],[124,297,66,-0.02499479166666667],[124,297,67,-0.02499479166666667],[124,297,68,-0.02499479166666667],[124,297,69,-0.02499479166666667],[124,297,70,-0.02499479166666667],[124,297,71,-0.02499479166666667],[124,297,72,-0.02499479166666667],[124,297,73,-0.02499479166666667],[124,297,74,-0.02499479166666667],[124,297,75,-0.02499479166666667],[124,297,76,-0.02499479166666667],[124,297,77,-0.02499479166666667],[124,297,78,-0.02499479166666667],[124,297,79,-0.02499479166666667],[124,298,64,-0.02499479166666667],[124,298,65,-0.02499479166666667],[124,298,66,-0.02499479166666667],[124,298,67,-0.02499479166666667],[124,298,68,-0.02499479166666667],[124,298,69,-0.02499479166666667],[124,298,70,-0.02499479166666667],[124,298,71,-0.02499479166666667],[124,298,72,-0.02499479166666667],[124,298,73,-0.02499479166666667],[124,298,74,-0.02499479166666667],[124,298,75,-0.02499479166666667],[124,298,76,-0.02499479166666667],[124,298,77,-0.02499479166666667],[124,298,78,-0.02499479166666667],[124,298,79,-0.02499479166666667],[124,299,64,-0.02499479166666667],[124,299,65,-0.02499479166666667],[124,299,66,-0.02499479166666667],[124,299,67,-0.02499479166666667],[124,299,68,-0.02499479166666667],[124,299,69,-0.02499479166666667],[124,299,70,-0.02499479166666667],[124,299,71,-0.02499479166666667],[124,299,72,-0.02499479166666667],[124,299,73,-0.02499479166666667],[124,299,74,-0.02499479166666667],[124,299,75,-0.02499479166666667],[124,299,76,-0.02499479166666667],[124,299,77,-0.02499479166666667],[124,299,78,-0.02499479166666667],[124,299,79,-0.02499479166666667],[124,300,64,-0.02499479166666667],[124,300,65,-0.02499479166666667],[124,300,66,-0.02499479166666667],[124,300,67,-0.02499479166666667],[124,300,68,-0.02499479166666667],[124,300,69,-0.02499479166666667],[124,300,70,-0.02499479166666667],[124,300,71,-0.02499479166666667],[124,300,72,-0.02499479166666667],[124,300,73,-0.02499479166666667],[124,300,74,-0.02499479166666667],[124,300,75,-0.02499479166666667],[124,300,76,-0.02499479166666667],[124,300,77,-0.02499479166666667],[124,300,78,-0.02499479166666667],[124,300,79,-0.02499479166666667],[124,301,64,-0.02499479166666667],[124,301,65,-0.02499479166666667],[124,301,66,-0.02499479166666667],[124,301,67,-0.02499479166666667],[124,301,68,-0.02499479166666667],[124,301,69,-0.02499479166666667],[124,301,70,-0.02499479166666667],[124,301,71,-0.02499479166666667],[124,301,72,-0.02499479166666667],[124,301,73,-0.02499479166666667],[124,301,74,-0.02499479166666667],[124,301,75,-0.02499479166666667],[124,301,76,-0.02499479166666667],[124,301,77,-0.02499479166666667],[124,301,78,-0.02499479166666667],[124,301,79,-0.02499479166666667],[124,302,64,-0.02499479166666667],[124,302,65,-0.02499479166666667],[124,302,66,-0.02499479166666667],[124,302,67,-0.02499479166666667],[124,302,68,-0.02499479166666667],[124,302,69,-0.02499479166666667],[124,302,70,-0.02499479166666667],[124,302,71,-0.02499479166666667],[124,302,72,-0.02499479166666667],[124,302,73,-0.02499479166666667],[124,302,74,-0.02499479166666667],[124,302,75,-0.02499479166666667],[124,302,76,-0.02499479166666667],[124,302,77,-0.02499479166666667],[124,302,78,-0.02499479166666667],[124,302,79,-0.02499479166666667],[124,303,64,-0.02499479166666667],[124,303,65,-0.02499479166666667],[124,303,66,-0.02499479166666667],[124,303,67,-0.02499479166666667],[124,303,68,-0.02499479166666667],[124,303,69,-0.02499479166666667],[124,303,70,-0.02499479166666667],[124,303,71,-0.02499479166666667],[124,303,72,-0.02499479166666667],[124,303,73,-0.02499479166666667],[124,303,74,-0.02499479166666667],[124,303,75,-0.02499479166666667],[124,303,76,-0.02499479166666667],[124,303,77,-0.02499479166666667],[124,303,78,-0.02499479166666667],[124,303,79,-0.02499479166666667],[124,304,64,-0.02499479166666667],[124,304,65,-0.02499479166666667],[124,304,66,-0.02499479166666667],[124,304,67,-0.02499479166666667],[124,304,68,-0.02499479166666667],[124,304,69,-0.02499479166666667],[124,304,70,-0.02499479166666667],[124,304,71,-0.02499479166666667],[124,304,72,-0.02499479166666667],[124,304,73,-0.02499479166666667],[124,304,74,-0.02499479166666667],[124,304,75,-0.02499479166666667],[124,304,76,-0.02499479166666667],[124,304,77,-0.02499479166666667],[124,304,78,-0.02499479166666667],[124,304,79,-0.02499479166666667],[124,305,64,-0.02499479166666667],[124,305,65,-0.02499479166666667],[124,305,66,-0.02499479166666667],[124,305,67,-0.02499479166666667],[124,305,68,-0.02499479166666667],[124,305,69,-0.02499479166666667],[124,305,70,-0.02499479166666667],[124,305,71,-0.02499479166666667],[124,305,72,-0.02499479166666667],[124,305,73,-0.02499479166666667],[124,305,74,-0.02499479166666667],[124,305,75,-0.02499479166666667],[124,305,76,-0.02499479166666667],[124,305,77,-0.02499479166666667],[124,305,78,-0.02499479166666667],[124,305,79,-0.02499479166666667],[124,306,64,-0.02499479166666667],[124,306,65,-0.02499479166666667],[124,306,66,-0.02499479166666667],[124,306,67,-0.02499479166666667],[124,306,68,-0.02499479166666667],[124,306,69,-0.02499479166666667],[124,306,70,-0.02499479166666667],[124,306,71,-0.02499479166666667],[124,306,72,-0.02499479166666667],[124,306,73,-0.02499479166666667],[124,306,74,-0.02499479166666667],[124,306,75,-0.02499479166666667],[124,306,76,-0.02499479166666667],[124,306,77,-0.02499479166666667],[124,306,78,-0.02499479166666667],[124,306,79,-0.02499479166666667],[124,307,64,-0.02499479166666667],[124,307,65,-0.02499479166666667],[124,307,66,-0.02499479166666667],[124,307,67,-0.02499479166666667],[124,307,68,-0.02499479166666667],[124,307,69,-0.02499479166666667],[124,307,70,-0.02499479166666667],[124,307,71,-0.02499479166666667],[124,307,72,-0.02499479166666667],[124,307,73,-0.02499479166666667],[124,307,74,-0.02499479166666667],[124,307,75,-0.02499479166666667],[124,307,76,-0.02499479166666667],[124,307,77,-0.02499479166666667],[124,307,78,-0.02499479166666667],[124,307,79,-0.02499479166666667],[124,308,64,-0.02499479166666667],[124,308,65,-0.02499479166666667],[124,308,66,-0.02499479166666667],[124,308,67,-0.02499479166666667],[124,308,68,-0.02499479166666667],[124,308,69,-0.02499479166666667],[124,308,70,-0.02499479166666667],[124,308,71,-0.02499479166666667],[124,308,72,-0.02499479166666667],[124,308,73,-0.02499479166666667],[124,308,74,-0.02499479166666667],[124,308,75,-0.02499479166666667],[124,308,76,-0.02499479166666667],[124,308,77,-0.02499479166666667],[124,308,78,-0.02499479166666667],[124,308,79,-0.02499479166666667],[124,309,64,-0.02499479166666667],[124,309,65,-0.02499479166666667],[124,309,66,-0.02499479166666667],[124,309,67,-0.02499479166666667],[124,309,68,-0.02499479166666667],[124,309,69,-0.02499479166666667],[124,309,70,-0.02499479166666667],[124,309,71,-0.02499479166666667],[124,309,72,-0.02499479166666667],[124,309,73,-0.02499479166666667],[124,309,74,-0.02499479166666667],[124,309,75,-0.02499479166666667],[124,309,76,-0.02499479166666667],[124,309,77,-0.02499479166666667],[124,309,78,-0.02499479166666667],[124,309,79,-0.02499479166666667],[124,310,64,-0.02499479166666667],[124,310,65,-0.02499479166666667],[124,310,66,-0.02499479166666667],[124,310,67,-0.02499479166666667],[124,310,68,-0.02499479166666667],[124,310,69,-0.02499479166666667],[124,310,70,-0.02499479166666667],[124,310,71,-0.02499479166666667],[124,310,72,-0.02499479166666667],[124,310,73,-0.02499479166666667],[124,310,74,-0.02499479166666667],[124,310,75,-0.02499479166666667],[124,310,76,-0.02499479166666667],[124,310,77,-0.02499479166666667],[124,310,78,-0.02499479166666667],[124,310,79,-0.02499479166666667],[124,311,64,-0.02499479166666667],[124,311,65,-0.02499479166666667],[124,311,66,-0.02499479166666667],[124,311,67,-0.02499479166666667],[124,311,68,-0.02499479166666667],[124,311,69,-0.02499479166666667],[124,311,70,-0.02499479166666667],[124,311,71,-0.02499479166666667],[124,311,72,-0.02499479166666667],[124,311,73,-0.02499479166666667],[124,311,74,-0.02499479166666667],[124,311,75,-0.02499479166666667],[124,311,76,-0.02499479166666667],[124,311,77,-0.02499479166666667],[124,311,78,-0.02499479166666667],[124,311,79,-0.02499479166666667],[124,312,64,-0.02499479166666667],[124,312,65,-0.02499479166666667],[124,312,66,-0.02499479166666667],[124,312,67,-0.02499479166666667],[124,312,68,-0.02499479166666667],[124,312,69,-0.02499479166666667],[124,312,70,-0.02499479166666667],[124,312,71,-0.02499479166666667],[124,312,72,-0.02499479166666667],[124,312,73,-0.02499479166666667],[124,312,74,-0.02499479166666667],[124,312,75,-0.02499479166666667],[124,312,76,-0.02499479166666667],[124,312,77,-0.02499479166666667],[124,312,78,-0.02499479166666667],[124,312,79,-0.02499479166666667],[124,313,64,-0.02499479166666667],[124,313,65,-0.02499479166666667],[124,313,66,-0.02499479166666667],[124,313,67,-0.02499479166666667],[124,313,68,-0.02499479166666667],[124,313,69,-0.02499479166666667],[124,313,70,-0.02499479166666667],[124,313,71,-0.02499479166666667],[124,313,72,-0.02499479166666667],[124,313,73,-0.02499479166666667],[124,313,74,-0.02499479166666667],[124,313,75,-0.02499479166666667],[124,313,76,-0.02499479166666667],[124,313,77,-0.02499479166666667],[124,313,78,-0.02499479166666667],[124,313,79,-0.02499479166666667],[124,314,64,-0.02499479166666667],[124,314,65,-0.02499479166666667],[124,314,66,-0.02499479166666667],[124,314,67,-0.02499479166666667],[124,314,68,-0.02499479166666667],[124,314,69,-0.02499479166666667],[124,314,70,-0.02499479166666667],[124,314,71,-0.02499479166666667],[124,314,72,-0.02499479166666667],[124,314,73,-0.02499479166666667],[124,314,74,-0.02499479166666667],[124,314,75,-0.02499479166666667],[124,314,76,-0.02499479166666667],[124,314,77,-0.02499479166666667],[124,314,78,-0.02499479166666667],[124,314,79,-0.02499479166666667],[124,315,64,-0.02499479166666667],[124,315,65,-0.02499479166666667],[124,315,66,-0.02499479166666667],[124,315,67,-0.02499479166666667],[124,315,68,-0.02499479166666667],[124,315,69,-0.02499479166666667],[124,315,70,-0.02499479166666667],[124,315,71,-0.02499479166666667],[124,315,72,-0.02499479166666667],[124,315,73,-0.02499479166666667],[124,315,74,-0.02499479166666667],[124,315,75,-0.02499479166666667],[124,315,76,-0.02499479166666667],[124,315,77,-0.02499479166666667],[124,315,78,-0.02499479166666667],[124,315,79,-0.02499479166666667],[124,316,64,-0.02499479166666667],[124,316,65,-0.02499479166666667],[124,316,66,-0.02499479166666667],[124,316,67,-0.02499479166666667],[124,316,68,-0.02499479166666667],[124,316,69,-0.02499479166666667],[124,316,70,-0.02499479166666667],[124,316,71,-0.02499479166666667],[124,316,72,-0.02499479166666667],[124,316,73,-0.02499479166666667],[124,316,74,-0.02499479166666667],[124,316,75,-0.02499479166666667],[124,316,76,-0.02499479166666667],[124,316,77,-0.02499479166666667],[124,316,78,-0.02499479166666667],[124,316,79,-0.02499479166666667],[124,317,64,-0.02499479166666667],[124,317,65,-0.02499479166666667],[124,317,66,-0.02499479166666667],[124,317,67,-0.02499479166666667],[124,317,68,-0.02499479166666667],[124,317,69,-0.02499479166666667],[124,317,70,-0.02499479166666667],[124,317,71,-0.02499479166666667],[124,317,72,-0.02499479166666667],[124,317,73,-0.02499479166666667],[124,317,74,-0.02499479166666667],[124,317,75,-0.02499479166666667],[124,317,76,-0.02499479166666667],[124,317,77,-0.02499479166666667],[124,317,78,-0.02499479166666667],[124,317,79,-0.02499479166666667],[124,318,64,-0.02499479166666667],[124,318,65,-0.02499479166666667],[124,318,66,-0.02499479166666667],[124,318,67,-0.02499479166666667],[124,318,68,-0.02499479166666667],[124,318,69,-0.02499479166666667],[124,318,70,-0.02499479166666667],[124,318,71,-0.02499479166666667],[124,318,72,-0.02499479166666667],[124,318,73,-0.02499479166666667],[124,318,74,-0.02499479166666667],[124,318,75,-0.02499479166666667],[124,318,76,-0.02499479166666667],[124,318,77,-0.02499479166666667],[124,318,78,-0.02499479166666667],[124,318,79,-0.02499479166666667],[124,319,64,-0.02499479166666667],[124,319,65,-0.02499479166666667],[124,319,66,-0.02499479166666667],[124,319,67,-0.02499479166666667],[124,319,68,-0.02499479166666667],[124,319,69,-0.02499479166666667],[124,319,70,-0.02499479166666667],[124,319,71,-0.02499479166666667],[124,319,72,-0.02499479166666667],[124,319,73,-0.02499479166666667],[124,319,74,-0.02499479166666667],[124,319,75,-0.02499479166666667],[124,319,76,-0.02499479166666667],[124,319,77,-0.02499479166666667],[124,319,78,-0.02499479166666667],[124,319,79,-0.02499479166666667],[125,-64,64,0.037482421875],[125,-64,65,0.037482421875],[125,-64,66,0.037482421875],[125,-64,67,0.037482421875],[125,-64,68,0.037482421875],[125,-64,69,0.037482421875],[125,-64,70,0.037482421875],[125,-64,71,0.037482421875],[125,-64,72,0.037482421875],[125,-64,73,0.037482421875],[125,-64,74,0.037482421875],[125,-64,75,0.037482421875],[125,-64,76,0.037482421875],[125,-64,77,0.037482421875],[125,-64,78,0.037482421875],[125,-64,79,0.037482421875],[125,-63,64,0.04054936638432911],[125,-63,65,0.04063187054452192],[125,-63,66,0.04071576982747768],[125,-63,67,0.04080087489855318],[125,-63,68,0.04088716295837734],[125,-63,69,0.040974767411561835],[125,-63,70,0.041063794060556026],[125,-63,71,0.041154305469038546],[125,-63,72,0.04124631126809219],[125,-63,73,0.04133976031456921],[125,-63,74,0.041434534752557026],[125,-63,75,0.04153044602694462],[125,-63,76,0.04162723289588634],[125,-63,77,0.04172456148649161],[125,-63,78,0.04182202743535847],[125,-63,79,0.04191916015266104],[125,-62,64,0.04369821723523995],[125,-62,65,0.043865396625826836],[125,-62,66,0.04403545058629901],[125,-62,67,0.04420800876599559],[125,-62,68,0.04438300182028777],[125,-62,69,0.04456065455136591],[125,-62,70,0.04474114120933842],[125,-62,71,0.044924554679648745],[125,-62,72,0.04511088704699981],[125,-62,73,0.04530001384309576],[125,-62,74,0.045491682077635286],[125,-62,75,0.04568550214814473],[125,-62,76,0.045880943719808095],[125,-62,77,0.0460773356614955],[125,-62,78,0.046273870118763716],[125,-62,79,0.04646961079879581],[125,-61,64,0.046935962606117806],[125,-61,65,0.04718969500059782],[125,-61,66,0.04744780202183383],[125,-61,67,0.04770975397300246],[125,-61,68,0.04797541041943289],[125,-61,69,0.04824503471788875],[125,-61,70,0.048518824914566314],[125,-61,71,0.04879686821818251],[125,-61,72,0.04907911145455983],[125,-61,73,0.04936533701224498],[125,-61,74,0.04965514442489152],[125,-61,75,0.04994793773035361],[125,-61,76,0.05024291873977571],[125,-61,77,0.05053908634251764],[125,-61,78,0.0508352419646131],[125,-61,79,0.051130001289772194],[125,-60,64,0.05026846846970867],[125,-60,65,0.0506103185091515],[125,-60,66,0.050958000299201375],[125,-60,67,0.05131085738426293],[125,-60,68,0.05166865340861193],[125,-60,69,0.052031629132462544],[125,-60,70,0.05239995662592938],[125,-60,71,0.05277367945441977],[125,-60,72,0.05315267235618591],[125,-60,73,0.05353660819065193],[125,-60,74,0.05392493234747925],[125,-60,75,0.05431684479863675],[125,-60,76,0.05471128996686789],[125,-60,77,0.055106954574026305],[125,-60,78,0.055502273621915225],[125,-60,79,0.05589544464672182],[125,-59,64,0.053700242405457774],[125,-59,65,0.05413144332401849],[125,-59,66,0.05456983066205696],[125,-59,67,0.05501466111041744],[125,-59,68,0.055465577434085214],[125,-59,69,0.05592273117165484],[125,-59,70,0.05638621588432594],[125,-59,71,0.05685599340364706],[125,-59,72,0.0573318417948096],[125,-59,73,0.05781331234076901],[125,-59,74,0.05829969577949262],[125,-59,75,0.05878999801706977],[125,-59,76,0.059282925528373116],[125,-59,77,0.05977688064459876],[125,-59,78,0.060269966913513974],[125,-59,79,0.060760004703874874],[125,-58,64,0.057234256654575606],[125,-58,65,0.05775569385247627],[125,-58,66,0.05828551827446068],[125,-58,67,0.058822942086016336],[125,-58,68,0.05936746173274349],[125,-58,69,0.05991907042191217],[125,-58,70,0.06047773033094395],[125,-58,71,0.06104328514310176],[125,-58,72,0.06161539513276606],[125,-58,73,0.062193482990522776],[125,-58,74,0.06277669066096168],[125,-58,75,0.06336384745471604],[125,-58,76,0.06395344968311403],[125,-58,77,0.06454365204906648],[125,-58,78,0.0651322710116973],[125,-58,79,0.06571680032508259],[125,-57,64,0.060871843003108224],[125,-57,65,0.06148403969946353],[125,-57,66,0.062105631555768565],[125,-57,67,0.06273582463804091],[125,-57,68,0.06337394210492789],[125,-57,69,0.06401975020922732],[125,-57,70,0.06467302886383973],[125,-57,71,0.0653334705114392],[125,-57,72,0.06600060099482859],[125,-57,73,0.06667371285436849],[125,-57,74,0.06735181136438297],[125,-57,75,0.0680335736073463],[125,-57,76,0.06871732086945592],[125,-57,77,0.06940100462413422],[125,-57,78,0.07008220635132886],[125,-57,79,0.07075815142061684],[125,-56,64,0.06461236377777674],[125,-56,65,0.06531546844857644],[125,-56,66,0.06602875939009288],[125,-56,67,0.06675146441310652],[125,-56,68,0.06748270376771212],[125,-56,69,0.06822195168239747],[125,-56,70,0.06896875923280167],[125,-56,71,0.06972263936691192],[125,-56,72,0.07048297212057271],[125,-56,73,0.07124892391518839],[125,-56,74,0.0720193812870345],[125,-56,75,0.07279289938283164],[125,-56,76,0.07356766553908223],[125,-56,77,0.07434147824337113],[125,-56,78,0.07511174175467758],[125,-56,79,0.07587547663722048],[125,-55,64,0.0684510820790883],[125,-55,65,0.0692448570028199],[125,-55,66,0.07004937284235246],[125,-55,67,0.0708638983226318],[125,-55,68,0.07168732290431967],[125,-55,69,0.07251877228214583],[125,-55,70,0.07335753001160952],[125,-55,71,0.07420290838024535],[125,-55,72,0.07505413656052157],[125,-55,73,0.07591026446569048],[125,-55,74,0.07677008269398929],[125,-55,75,0.07763205893021917],[125,-55,76,0.07849429115469615],[125,-55,77,0.07935447798811929],[125,-55,78,0.08020990647734715],[125,-55,79,0.08105745760195573],[125,-54,64,0.07238015234975613],[125,-54,65,0.0732639726748061],[125,-54,66,0.07415883830480414],[125,-54,67,0.07506407148856423],[125,-54,68,0.07597830860272317],[125,-54,69,0.07690028297352544],[125,-54,70,0.0778289827171874],[125,-54,71,0.0787635070999216],[125,-54,72,0.07970293636713187],[125,-54,73,0.08064621885896539],[125,-54,74,0.08159207583193831],[125,-54,75,0.08253892438838886],[125,-54,76,0.0834848188946589],[125,-54,77,0.08442741124538435],[125,-54,78,0.08536393030540601],[125,-54,79,0.08629118083316875],[125,-53,64,0.07639006004322356],[125,-53,65,0.07736292230565028],[125,-53,66,0.07834688153705942],[125,-53,67,0.07934131911288651],[125,-53,68,0.0803446031818531],[125,-53,69,0.08135504617940416],[125,-53,70,0.08237132537170903],[125,-53,71,0.08339232433603057],[125,-53,72,0.08441698343385216],[125,-53,73,0.08544416911382874],[125,-53,74,0.08647256249673743],[125,-53,75,0.08750056767502451],[125,-53,76,0.08852624013690365],[125,-53,77,0.08954723569943777],[125,-53,78,0.09056078030692485],[125,-53,79,0.09156366102081062],[125,-52,64,0.08047022833901381],[125,-52,65,0.08153076592304898],[125,-52,66,0.08260220932700803],[125,-52,67,0.08368399746014699],[125,-52,68,0.08477422344094158],[125,-52,69,0.08587076752786539],[125,-52,70,0.08697199438103215],[125,-52,71,0.0880765793203608],[125,-52,72,0.08918333871164653],[125,-52,73,0.09029108068406518],[125,-52,74,0.09139847666164186],[125,-52,75,0.09250395416994074],[125,-52,76,0.09360561135480636],[125,-52,77,0.09470115362250234],[125,-52,78,0.0957878527803068],[125,-52,79,0.09686252902413196],[125,-51,64,0.08449377796360305],[125,-51,65,0.08575615710397087],[125,-51,66,0.08691315692804637],[125,-51,67,0.08808013938164441],[125,-51,68,0.08925492493466389],[125,-51,69,0.09043496881158702],[125,-51,70,0.09161833550360665],[125,-51,71,0.09280350952612684],[125,-51,72,0.09398920535117103],[125,-51,73,0.09517419912987708],[125,-51,74,0.09635718271556015],[125,-51,75,0.09753664047473516],[125,-51,76,0.09871074934724329],[125,-51,77,0.09987730258720215],[125,-51,78,0.10103365758408216],[125,-51,79,0.10217670812837674],[125,-50,64,0.088336780240287],[125,-50,65,0.08982543077462611],[125,-50,66,0.0912683750654424],[125,-50,67,0.09251814803599484],[125,-50,68,0.09377490275483126],[125,-50,69,0.09503569543961411],[125,-50,70,0.09629831697364914],[125,-50,71,0.09756108798817222],[125,-50,72,0.09882264839177864],[125,-50,73,0.10008177010542263],[125,-50,74,0.10133719353866406],[125,-50,75,0.10258748831778523],[125,-50,76,0.1038309387482634],[125,-50,77,0.10506545446271323],[125,-50,78,0.10628850667088516],[125,-50,79,0.10749709039116254],[125,-49,64,0.09222723975447782],[125,-49,65,0.0938196976975645],[125,-49,66,0.09540995309442613],[125,-49,67,0.09698670005382487],[125,-49,68,0.0983228210010935],[125,-49,69,0.09966167498373373],[125,-49,70,0.10100081692526977],[125,-49,71,0.10233843638352781],[125,-49,72,0.10367312732652408],[125,-49,73,0.10500368247174581],[125,-49,74,0.10632891274623131],[125,-49,75,0.10764749239767576],[125,-49,76,0.10895783025668868],[125,-49,77,0.11025796761699008],[125,-49,78,0.11154550316371185],[125,-49,79,0.11281754534054306],[125,-48,64,0.09617130756652618],[125,-48,65,0.09786525667688184],[125,-48,66,0.09955878239619703],[125,-48,67,0.10124843786705873],[125,-48,68,0.10288584567609958],[125,-48,69,0.1043007196199161],[125,-48,70,0.10571439293231279],[125,-48,71,0.10712495096835961],[125,-48,72,0.10853095956554194],[125,-48,73,0.10993124269187322],[125,-48,74,0.11132468645412251],[125,-48,75,0.11271007001041886],[125,-48,76,0.11408592389941634],[125,-48,77,0.11545041626294247],[125,-48,78,0.1168012674004337],[125,-48,79,0.11813569305187241],[125,-47,64,0.10017494553339727],[125,-47,65,0.1019671064351924],[125,-47,66,0.1037606139866759],[125,-47,67,0.1055518902342813],[125,-47,68,0.10733951874925793],[125,-47,69,0.1089410250670518],[125,-47,70,0.11042815504979568],[125,-47,71,0.11191074354966724],[125,-47,72,0.11338733130036083],[125,-47,73,0.11485676581857358],[125,-47,74,0.11631799265900342],[125,-47,75,0.11776987458043094],[125,-47,76,0.1192110391396423],[125,-47,77,0.12063975519289447],[125,-47,78,0.12205383874420173],[125,-47,79,0.12345058853621131],[125,-46,64,0.10424246577350312],[125,-46,65,0.10612859665815613],[125,-46,66,0.10801772853442757],[125,-46,67,0.10990621122981285],[125,-46,68,0.11179259958072932],[125,-46,69,0.11357190994641735],[125,-46,70,0.11513232687555783],[125,-46,71,0.11668702105225986],[125,-46,72,0.11823449565899345],[125,-46,73,0.11977359570152336],[125,-46,74,0.12130329028648032],[125,-46,75,0.12282248346886636],[125,-46,76,0.12432985418183147],[125,-46,77,0.12582372572244044],[125,-46,78,0.1273019652251966],[125,-46,79,0.12876191351003044],[125,-45,64,0.10837618445147283],[125,-45,65,0.11035111005525053],[125,-45,66,0.11233047557381565],[125,-45,67,0.11431062613593254],[125,-45,68,0.1162900830928885],[125,-45,69,0.11818403049290482],[125,-45,70,0.11981841517712606],[125,-45,71,0.12144620686934683],[125,-45,72,0.12306584318071168],[125,-45,73,0.12467612270442024],[125,-45,74,0.12627598306829294],[125,-45,75,0.12786430777054347],[125,-45,76,0.12943976229665968],[125,-45,77,0.1310006599754125],[125,-45,78,0.13254485798892998],[125,-45,79,0.13406968390564267],[125,-44,64,0.11257615356842064],[125,-44,65,0.11463381937845725],[125,-44,66,0.11669705947386581],[125,-44,67,0.11876228912630082],[125,-44,68,0.12082799716119332],[125,-44,69,0.12276954036856719],[125,-44,70,0.12447933045054986],[125,-44,71,0.12618201947369953],[125,-44,72,0.12787593630331048],[125,-44,73,0.12955977251431938],[125,-44,74,0.13123236180991138],[125,-44,75,0.13289248790026853],[125,-44,76,0.13453872131435102],[125,-44,77,0.13616928557688682],[125,-44,78,0.13778195313902822],[125,-44,79,0.13937397140455912],[125,-43,64,0.11683996938500797],[125,-43,65,0.11897351806777487],[125,-43,66,0.12111339548662098],[125,-43,67,0.12325616751243758],[125,-43,68,0.1254002982355986],[125,-43,69,0.1273221967333811],[125,-43,70,0.12910945949737757],[125,-43,71,0.13088950933278637],[125,-43,72,0.1326605088974986],[125,-43,73,0.134420967109453],[125,-43,74,0.13616952619155276],[125,-43,75,0.13790477623653088],[125,-43,76,0.13962509772899],[125,-43,77,0.14132853242087068],[125,-43,78,0.14301268291291394],[125,-43,79,0.14467464124844717],[125,-42,64,0.12116265633152655],[125,-42,65,0.12336452339676876],[125,-42,66,0.1255730347567716],[125,-42,67,0.12778499089749568],[125,-42,68,0.12996583273781961],[125,-42,69,0.13183741358708845],[125,-42,70,0.13370469097552856],[125,-42,71,0.13556505505165992],[125,-42,72,0.13741643177428714],[125,-42,73,0.13925705885379186],[125,-42,74,0.14108528715805443],[125,-42,75,0.1428994080127609],[125,-42,76,0.14469750678738158],[125,-42,77,0.14647734311765334],[125,-42,78,0.14823625807260982],[125,-42,79,0.14997110852931564],[125,-41,64,0.1255366254456164],[125,-41,65,0.1277986511582902],[125,-41,66,0.13006715732128776],[125,-41,67,0.13233926425908862],[125,-41,68,0.13435877831286314],[125,-41,69,0.13631226324076423],[125,-41,70,0.1382623947382031],[125,-41,71,0.14020631953989512],[125,-41,72,0.14214164497817308],[125,-41,73,0.1440662385878789],[125,-41,74,0.14597805086819102],[125,-41,75,0.14787496157441096],[125,-41,76,0.14975464987556192],[125,-41,77,0.1516144886747861],[125,-41,78,0.15345146334879786],[125,-41,79,0.15526211512038823],[125,-40,64,0.12995170652399687],[125,-40,65,0.13226526106093817],[125,-40,66,0.13458463224301134],[125,-40,67,0.13667142740563318],[125,-40,68,0.13870754506652647],[125,-40,69,0.14074542660780454],[125,-40,70,0.14278135562313007],[125,-40,71,0.14481216686486845],[125,-40,72,0.14683505756304768],[125,-40,73,0.14884741848749666],[125,-40,74,0.1508466850930965],[125,-40,75,0.15283020905472633],[125,-40,76,0.15479515046400844],[125,-40,77,0.15673839092413397],[125,-40,78,0.1586564677419051],[125,-40,79,0.1605455293781155],[125,-39,64,0.13055590106498544],[125,-39,65,0.1327507542755607],[125,-39,66,0.13476884931151542],[125,-39,67,0.13679931088270147],[125,-39,68,0.13883783676857042],[125,-39,69,0.14088011662680028],[125,-39,70,0.14292235904724657],[125,-39,71,0.14496114712541008],[125,-39,72,0.14699329832333197],[125,-39,73,0.1490157396434954],[125,-39,74,0.15102539836904583],[125,-39,75,0.15301910859669177],[125,-39,76,0.15499353376069408],[125,-39,77,0.15694510531744957],[125,-39,78,0.15886997773053374],[125,-39,79,0.16076399986616904],[125,-38,64,0.1308317054646031],[125,-38,65,0.13283134957211332],[125,-38,66,0.13484919391817085],[125,-38,67,0.13688162621470987],[125,-38,68,0.13892426686736814],[125,-38,69,0.14097290920935895],[125,-38,70,0.1430236332260242],[125,-38,71,0.14507270783238801],[125,-38,72,0.14711650292374553],[125,-38,73,0.14915141194271783],[125,-38,74,0.1511737851264559],[125,-38,75,0.1531798735783234],[125,-38,76,0.15516578428833736],[125,-38,77,0.15712744620609886],[125,-38,78,0.15906058744919405],[125,-38,79,0.1609607237095151],[125,-37,64,0.1308758651640125],[125,-37,65,0.13287296600214535],[125,-37,66,0.13489124419925333],[125,-37,67,0.13692660098775036],[125,-37,68,0.1389745414130257],[125,-37,69,0.1410309088259393],[125,-37,70,0.14309159497983195],[125,-37,71,0.14515249206785433],[125,-37,72,0.14720945959491818],[125,-37,73,0.14925829666171303],[125,-37,74,0.15129471973334163],[125,-37,75,0.15331434595471405],[125,-37,76,0.1553126820642038],[125,-37,77,0.15728511894643643],[125,-37,78,0.15617043503371328],[125,-37,79,0.15093582894839255],[125,-36,64,0.12506081132984706],[125,-36,65,0.1257212921802602],[125,-36,66,0.1283407079350017],[125,-36,67,0.13063672711036275],[125,-36,68,0.13132355732504358],[125,-36,69,0.13381632816238845],[125,-36,70,0.1380357876265631],[125,-36,71,0.14215690391118888],[125,-36,72,0.14519659954334352],[125,-36,73,0.14933971023074483],[125,-36,74,0.1513904567212981],[125,-36,75,0.1505846798900657],[125,-36,76,0.14972165431125772],[125,-36,77,0.1467183717964009],[125,-36,78,0.14386992936209236],[125,-36,79,0.1390732675193029],[125,-35,64,0.12015673969664431],[125,-35,65,0.11897321246543173],[125,-35,66,0.12031877894023747],[125,-35,67,0.1218861097916735],[125,-35,68,0.12375671647702934],[125,-35,69,0.12842028522632998],[125,-35,70,0.13158883163404414],[125,-35,71,0.135996119667772],[125,-35,72,0.13959194736319042],[125,-35,73,0.1415739015034905],[125,-35,74,0.14488460123412558],[125,-35,75,0.14443470446256823],[125,-35,76,0.1424704515714582],[125,-35,77,0.13796735464989368],[125,-35,78,0.1345569918440847],[125,-35,79,0.1301861071337171],[125,-34,64,0.11666864799702269],[125,-34,65,0.11528951440783561],[125,-34,66,0.11569207627658426],[125,-34,67,0.11876513325990866],[125,-34,68,0.12177987519695455],[125,-34,69,0.1255554291900634],[125,-34,70,0.1269708331564318],[125,-34,71,0.13214532407069646],[125,-34,72,0.1364092231972332],[125,-34,73,0.13537087076568402],[125,-34,74,0.13967080373667493],[125,-34,75,0.14082347930937272],[125,-34,76,0.13742540730339742],[125,-34,77,0.13285432128536243],[125,-34,78,0.1301990599171992],[125,-34,79,0.12680659320524088],[125,-33,64,0.11566871621263672],[125,-33,65,0.11670589077171446],[125,-33,66,0.11732495336557704],[125,-33,67,0.12071327579224732],[125,-33,68,0.12330521121019306],[125,-33,69,0.12425664730883934],[125,-33,70,0.12484852052527015],[125,-33,71,0.12963935501327198],[125,-33,72,0.13422042570072884],[125,-33,73,0.13551208646185633],[125,-33,74,0.139839094684784],[125,-33,75,0.1401445322875485],[125,-33,76,0.13580972959384946],[125,-33,77,0.13073346219371235],[125,-33,78,0.12877716771182293],[125,-33,79,0.12609150719909124],[125,-32,64,0.11816825835747183],[125,-32,65,0.1200229137824334],[125,-32,66,0.12107209643285698],[125,-32,67,0.12425465412478526],[125,-32,68,0.12525642277692592],[125,-32,69,0.12694625739962648],[125,-32,70,0.12744540706382262],[125,-32,71,0.13008096533343005],[125,-32,72,0.1349430506267557],[125,-32,73,0.13876529276683558],[125,-32,74,0.140458259238206],[125,-32,75,0.13971698574795838],[125,-32,76,0.13608411345139332],[125,-32,77,0.1321030888441088],[125,-32,78,0.12919283670719664],[125,-32,79,0.12578222179563903],[125,-31,64,0.12313180331164593],[125,-31,65,0.12294589982503684],[125,-31,66,0.12423587439236891],[125,-31,67,0.12751391003024848],[125,-31,68,0.12733205982517917],[125,-31,69,0.13137918934563952],[125,-31,70,0.132591421465816],[125,-31,71,0.13501130942103384],[125,-31,72,0.13984478191329075],[125,-31,73,0.14177655534283998],[125,-31,74,0.14072258383013284],[125,-31,75,0.14067872652274116],[125,-31,76,0.1377010398600492],[125,-31,77,0.13397704864200718],[125,-31,78,0.1297196872855378],[125,-31,79,0.12471592145577559],[125,-30,64,0.12762430089588547],[125,-30,65,0.12744817907787143],[125,-30,66,0.1291038828894237],[125,-30,67,0.13224766121815576],[125,-30,68,0.13175837217970326],[125,-30,69,0.13495771937375958],[125,-30,70,0.13630976968218247],[125,-30,71,0.14040807221300897],[125,-30,72,0.1450283763744667],[125,-30,73,0.1455313502141687],[125,-30,74,0.1446015247019051],[125,-30,75,0.14453806916292203],[125,-30,76,0.14058284177067032],[125,-30,77,0.13605692212929735],[125,-30,78,0.1317388430090385],[125,-30,79,0.12637433820037622],[125,-29,64,0.13083757369590654],[125,-29,65,0.1327788600635],[125,-29,66,0.13476509741824721],[125,-29,67,0.13610059857612206],[125,-29,68,0.1358687602495285],[125,-29,69,0.13987009735694916],[125,-29,70,0.14130833070509927],[125,-29,71,0.14433631671925992],[125,-29,72,0.14590653826804403],[125,-29,73,0.14748139301481417],[125,-29,74,0.149063269122563],[125,-29,75,0.14996186426391514],[125,-29,76,0.14503465111122532],[125,-29,77,0.14022270333970605],[125,-29,78,0.1361042156790184],[125,-29,79,0.130695346013214],[125,-28,64,0.1308708187889548],[125,-28,65,0.13279408426746417],[125,-28,66,0.1347640824049534],[125,-28,67,0.13677360208669476],[125,-28,68,0.13881523504560622],[125,-28,69,0.14061082037403883],[125,-28,70,0.14211364283399092],[125,-28,71,0.1436179526987879],[125,-28,72,0.14512745691781362],[125,-28,73,0.14664563276259812],[125,-28,74,0.14817545565435222],[125,-28,75,0.14971916831727075],[125,-28,76,0.1497860355878804],[125,-28,77,0.14590564527523914],[125,-28,78,0.1415412440705341],[125,-28,79,0.13635526430738923],[125,-27,64,0.13091607669956196],[125,-27,65,0.13281757535029154],[125,-27,66,0.13476713545094685],[125,-27,67,0.13675745259245978],[125,-27,68,0.13849329822988485],[125,-27,69,0.1399331727773981],[125,-27,70,0.1413731597023633],[125,-27,71,0.14281765743751135],[125,-27,72,0.1442710774246373],[125,-27,73,0.14573750981160327],[125,-27,74,0.14722043407434618],[125,-27,75,0.14872247497363902],[125,-27,76,0.1502452041926838],[125,-27,77,0.14973014277483987],[125,-27,78,0.14532411390703315],[125,-27,79,0.14039378997184435],[125,-26,64,0.1309676298553243],[125,-26,65,0.13284336012402112],[125,-26,66,0.13476801224709758],[125,-26,67,0.1364145585650752],[125,-26,68,0.1377952777703745],[125,-26,69,0.139173960839828],[125,-26,70,0.1405554126837816],[125,-26,71,0.14194475862344777],[125,-26,72,0.1433470464832981],[125,-26,73,0.14476689665920026],[125,-26,74,0.14620820064210055],[125,-26,75,0.14767386842002342],[125,-26,76,0.14916562511091883],[125,-26,77,0.15068385709422238],[125,-26,78,0.14800898548016925],[125,-26,79,0.14314100218772255],[125,-25,64,0.13101653820652073],[125,-25,65,0.1328623232884386],[125,-25,66,0.13437512390233392],[125,-25,67,0.13570132984827213],[125,-25,68,0.13702285830978161],[125,-25,69,0.13834459667731822],[125,-25,70,0.13967209511417109],[125,-25,71,0.14101113352660366],[125,-25,72,0.1423673101387302],[125,-25,73,0.1437456810853913],[125,-25,74,0.14515045151410313],[125,-25,75,0.14658471862529085],[125,-25,76,0.14805026700270443],[125,-25,77,0.1495474164922267],[125,-25,78,0.15092810655954178],[125,-25,79,0.14496983424208645],[125,-24,64,0.13105208512530225],[125,-24,65,0.1323752339679736],[125,-24,66,0.13365268705063815],[125,-24,67,0.1349218806215819],[125,-24,68,0.13618823588310974],[125,-24,69,0.13745739852436337],[125,-24,70,0.1387355899832935],[125,-24,71,0.14002915714879405],[125,-24,72,0.1413441525230159],[125,-24,73,0.14268596798026115],[125,-24,74,0.1440590226189384],[125,-24,75,0.14546650513571074],[125,-24,76,0.14691017106611695],[125,-24,77,0.14839019513307605],[125,-24,78,0.14990507882532572],[125,-24,79,0.14753831791012909],[125,-23,64,0.13041529358086684],[125,-23,65,0.13164850691636645],[125,-23,66,0.13287071964321942],[125,-23,67,0.13408640497606605],[125,-23,68,0.13530149102618655],[125,-23,69,0.13652232445970142],[125,-23,70,0.13775572379455697],[125,-23,71,0.1390085168519495],[125,-23,72,0.14028711718862893],[125,-23,73,0.1415971562738024],[125,-23,74,0.14294317190691974],[125,-23,75,0.14432835329909757],[125,-23,76,0.14575434314810884],[125,-23,77,0.14722109692472313],[125,-23,78,0.14872679945879755],[125,-23,79,0.15026783877044486],[125,-22,64,0.12969006840709102],[125,-22,65,0.13086887988286752],[125,-22,66,0.1320386935602215],[125,-22,67,0.13320413249151244],[125,-22,68,0.13437159017215602],[125,-22,69,0.13554805745300838],[125,-22,70,0.13674087880624802],[125,-22,71,0.13795728191448758],[125,-22,72,0.13920395450953463],[125,-22,73,0.1404866787194658],[125,-22,74,0.14181002341487192],[125,-22,75,0.14317709496474734],[125,-22,76,0.1445893467113245],[125,-22,77,0.14604644735172317],[125,-22,78,0.14754620827526077],[125,-22,79,0.14908456975272386],[125,-21,64,0.12891920368190207],[125,-21,65,0.13004569958433948],[125,-21,66,0.13116560440445307],[125,-21,67,0.13228367190100215],[125,-21,68,0.1334067170224556],[125,-21,69,0.13454232018936327],[125,-21,70,0.1356982861063419],[125,-21,71,0.13688216907700024],[125,-21,72,0.1381008536713321],[125,-21,73,0.13936019434202038],[125,-21,74,0.1406647144703922],[125,-21,75,0.14201736523493128],[125,-21,76,0.14341934458544772],[125,-21,77,0.1448699764753667],[125,-21,78,0.1463666503563577],[125,-21,79,0.14790482077827471],[125,-20,64,0.12811240349659617],[125,-20,65,0.1291882238909993],[125,-20,66,0.13026021231622847],[125,-20,67,0.13133322939330555],[125,-20,68,0.1324144668123281],[125,-20,69,0.13351204435592437],[125,-20,70,0.13463416960281102],[125,-20,71,0.1357886615555759],[125,-20,72,0.13698253765125265],[125,-20,73,0.13822166091738713],[125,-20,74,0.13951044774030721],[125,-20,75,0.1408516366165351],[125,-20,76,0.14224611813965854],[125,-20,77,0.14369282633526265],[125,-20,78,0.14518869129948941],[125,-20,79,0.1467286529275336],[125,-19,64,0.12727968603271672],[125,-19,65,0.12830587994790046],[125,-19,66,0.1293312788115165],[125,-19,67,0.13036082216534037],[125,-19,68,0.13140203499728703],[125,-19,69,0.13246353344697975],[125,-19,70,0.13355388254545225],[125,-19,71,0.13468111951050377],[125,-19,72,0.13585234848793007],[125,-19,73,0.1370733964909058],[125,-19,74,0.13834853098738303],[125,-19,75,0.1396802394812893],[125,-19,76,0.1410690713057677],[125,-19,77,0.1425135416980338],[125,-19,78,0.1440100980599499],[125,-19,79,0.1455531481316751],[125,-18,64,0.12643055458189106],[125,-18,65,0.12740736636684616],[125,-18,66,0.12838659730474408],[125,-18,67,0.12937323463389885],[125,-18,68,0.13037509693398835],[125,-18,69,0.1314012642714774],[125,-18,70,0.13246062985825013],[125,-18,71,0.13356142287362124],[125,-18,72,0.1347108109494549],[125,-18,73,0.1359145648864225],[125,-18,74,0.13717678603307548],[125,-18,75,0.13849969664676018],[125,-18,76,0.13988349341886125],[125,-18,77,0.1413262641892929],[125,-18,78,0.14282396770141975],[125,-18,79,0.1443704760646023],[125,-17,64,0.12556914090786808],[125,-17,65,0.1264960577376324],[125,-17,66,0.12742871375628104],[125,-17,67,0.12837211103454768],[125,-17,68,0.12933432528979177],[125,-17,69,0.13032487602201717],[125,-17,70,0.13135296729999354],[125,-17,71,0.13242700886133224],[125,-17,72,0.1335542253338285],[125,-17,73,0.1347403287970761],[125,-17,74,0.1359892550976571],[125,-17,75,0.13730296420980226],[125,-17,76,0.13868130478776],[125,-17,77,0.14012194288962132],[125,-17,78,0.1416203546703151],[125,-17,79,0.14316988265027003],[125,-16,64,0.12468623655315365],[125,-16,65,0.125563163022463],[125,-16,66,0.12644937406686116],[125,-16,67,0.12734985423003303],[125,-16,68,0.12827289183122192],[125,-16,69,0.12922840671904925],[125,-16,70,0.13022587741799854],[125,-16,71,0.1312738605379617],[125,-16,72,0.1323796068910328],[125,-16,73,0.13354874203254583],[125,-16,74,0.13478501161965212],[125,-16,75,0.1360900918503546],[125,-16,76,0.13746346509110724],[125,-16,77,0.1389023606257736],[125,-16,78,0.14040176026863097],[125,-16,79,0.14195446838594425],[125,-15,64,0.12377245402806229],[125,-15,65,0.12459989372473586],[125,-15,66,0.12544050687848202],[125,-15,67,0.12629922661034987],[125,-15,68,0.12718449864360823],[125,-15,69,0.12810658622571924],[125,-15,70,0.1290751832725847],[125,-15,71,0.13009893367105793],[125,-15,72,0.13118505585174806],[125,-15,73,0.13233903270964256],[125,-15,74,0.13356436724237303],[125,-15,75,0.13486240413646466],[125,-15,76,0.13623221736810956],[125,-15,77,0.13767056370125091],[125,-15,78,0.13917190176818908],[125,-15,79,0.14072847621357473],[125,-14,64,0.11964711424690777],[125,-14,65,0.12360054105880364],[125,-14,66,0.12439692040926299],[125,-14,67,0.12521561312365204],[125,-14,68,0.12606515747992758],[125,-14,69,0.12695608864885632],[125,-14,70,0.1278982395087763],[125,-14,71,0.1289002625914356],[125,-14,72,0.12996926570502154],[125,-14,73,0.13111051355398],[125,-14,74,0.1323271956970814],[125,-14,75,0.13362026103667904],[125,-14,76,0.13498831885973475],[125,-14,77,0.1364276062597461],[125,-14,78,0.13793202156467732],[125,-14,79,0.1394932231867005],[125,-13,64,0.06780020993357963],[125,-13,65,0.0811348276132861],[125,-13,66,0.09579454139822845],[125,-13,67,0.11174518560306836],[125,-13,68,0.12491267428804728],[125,-13,69,0.12577506957652326],[125,-13,70,0.1266935315146551],[125,-13,71,0.12767662986290615],[125,-13,72,0.12873127108792978],[125,-13,73,0.12986241461701847],[125,-13,74,0.13107285567703506],[125,-13,75,0.1323630748678441],[125,-13,76,0.13373115444009676],[125,-13,77,0.13517276104922704],[125,-13,78,0.13668119454845945],[125,-13,79,0.1382475021710574],[125,-12,64,0.03346956128626537],[125,-12,65,0.041854681886603365],[125,-12,66,0.051384374770543396],[125,-12,67,0.06205945266125087],[125,-12,68,0.07387267000802943],[125,-12,69,0.08680766127042452],[125,-12,70,0.10083621113862065],[125,-12,71,0.11591845123471138],[125,-12,72,0.12747022554203136],[125,-12,73,0.12859374007246516],[125,-12,74,0.1298001314751258],[125,-12,75,0.13108933824526392],[125,-12,76,0.1324588539384535],[125,-12,77,0.13390372671884],[125,-12,78,0.13541662451568615],[125,-12,79,0.13698796507369934],[125,-11,64,0.0131980337081169],[125,-11,65,0.017721284933858356],[125,-11,66,0.023157872723985527],[125,-11,67,0.029535265269967435],[125,-11,68,0.03687358200796538],[125,-11,69,0.04518473811730306],[125,-11,70,0.05446952137374976],[125,-11,71,0.06471787483871737],[125,-11,72,0.0759093219302416],[125,-11,73,0.0880134709176182],[125,-11,74,0.10099060900908509],[125,-11,75,0.11479239523048083],[125,-11,76,0.12936265908113176],[125,-11,77,0.13261683219360962],[125,-11,78,0.13413393022995815],[125,-11,79,0.1357094882765044],[125,-10,64,0.0032955125508172174],[125,-10,65,0.0050867619455346215],[125,-10,66,0.007527865286714785],[125,-10,67,0.010669840752480569],[125,-10,68,0.014556228267863243],[125,-10,69,0.019222390569600702],[125,-10,70,0.024692375330023365],[125,-10,71,0.030979292262452076],[125,-10,72,0.03808582384011821],[125,-10,73,0.04600479027122514],[125,-10,74,0.054719771999350686],[125,-10,75,0.06420579401622524],[125,-10,76,0.07443007647770376],[125,-10,77,0.08535285545179006],[125,-10,78,0.09692827614076321],[125,-10,79,0.10910535871485032],[125,-9,64,1.340866154608843E-5],[125,-9,65,2.113214698758796E-4],[125,-9,66,7.687599461335141E-4],[125,-9,67,0.0017594501060180236],[125,-9,68,0.003249163278207675],[125,-9,69,0.005295113969097768],[125,-9,70,0.007942553158120902],[125,-9,71,0.011225198124419664],[125,-9,72,0.015165806438079785],[125,-9,73,0.019776801055400944],[125,-9,74,0.025060943995001538],[125,-9,75,0.03101205752910044],[125,-9,76,0.03761579298003952],[125,-9,77,0.04485044791645684],[125,-9,78,0.05268783271422034],[125,-9,79,0.06109418706213085],[125,-8,64,-4.063504722044664E-4],[125,-8,65,-6.621816162500553E-4],[125,-8,66,-3.911771863813895E-4],[125,-8,67,2.777923358184509E-4],[125,-8,68,9.561370402509481E-4],[125,-8,69,0.001655062306468681],[125,-8,70,0.002384462986637705],[125,-8,71,0.0031525241442511872],[125,-8,72,0.003965479262633136],[125,-8,73,0.005705591903837527],[125,-8,74,0.008448306594111022],[125,-8,75,0.011720894368401583],[125,-8,76,0.015525473008298462],[125,-8,77,0.01985619291964787],[125,-8,78,0.02470011283977734],[125,-8,79,0.030038113305162036],[125,-7,64,-0.0017228286941454822],[125,-7,65,-0.0012928987940179456],[125,-7,66,-0.001162011789376647],[125,-7,67,-7.739809982872199E-4],[125,-7,68,-8.089154799607837E-5],[125,-7,69,6.37956379039986E-4],[125,-7,70,0.0013918965527302402],[125,-7,71,0.0021884311943868406],[125,-7,72,0.0030330256517923176],[125,-7,73,0.00392896069524322],[125,-7,74,0.004877242337965314],[125,-7,75,0.005876568975278639],[125,-7,76,0.00692335552748313],[125,-7,77,0.008011814161990979],[125,-7,78,0.009371385474325719],[125,-7,79,0.01240378391937064],[125,-6,64,-0.0038343160943629766],[125,-6,65,-0.0031713634943153993],[125,-6,66,-0.002497205601129814],[125,-6,67,-0.0018096186578875314],[125,-6,68,-0.0011017642769474251],[125,-6,69,-3.633246712337387E-4],[125,-6,70,4.144077125436101E-4],[125,-6,71,0.001238196676459099],[125,-6,72,0.0021126957782425303],[125,-6,73,0.0030403360143989398],[125,-6,74,0.004021267536386356],[125,-6,75,0.005053355153556381],[125,-6,76,0.0061322272729331054],[125,-6,77,0.007251377822146481],[125,-6,78,0.008402320597788946],[125,-6,79,0.009574795379020085],[125,-5,64,-0.004862197898318761],[125,-5,65,-0.004201791215836304],[125,-5,66,-0.0035239124886209906],[125,-5,67,-0.002827015657331966],[125,-5,68,-0.0021049264688754663],[125,-5,69,-0.0013478663748912522],[125,-5,70,-5.478046927244201E-4],[125,-5,71,3.01244548421615E-4],[125,-5,72,0.001203096711730555],[125,-5,73,0.0021593209208288057],[125,-5,74,0.003169214504574856],[125,-5,75,0.00422982723525147],[125,-5,76,0.0053360349798857116],[125,-5,77,0.0064806622872689654],[125,-5,78,0.007654653335888559],[125,-5,79,0.008847290572493017],[125,-4,64,-0.005869971908506214],[125,-4,65,-0.005211934709996843],[125,-4,66,-0.004530516878071742],[125,-4,67,-0.003824912496927829],[125,-4,68,-0.0030896632639700722],[125,-4,69,-0.0023155755407070428],[125,-4,70,-0.00149533027047269],[125,-4,71,-6.237415109151378E-4],[125,-4,72,3.021593968190282E-4],[125,-4,73,0.0012830855994578234],[125,-4,74,0.002317502215925556],[125,-4,75,0.003401679218423463],[125,-4,76,0.004529789304651672],[125,-4,77,0.005694050265884858],[125,-4,78,0.006884911265888489],[125,-4,79,0.008091282358147005],[125,-3,64,-0.006856199879957356],[125,-3,65,-0.0062006159298335015],[125,-3,66,-0.005516195958995631],[125,-3,67,-0.00480293073063896],[125,-3,68,-0.004056117160128255],[125,-3,69,-0.0032671769752931493],[125,-3,70,-0.0024295206736986773],[125,-3,71,-0.0015387668122321498],[125,-3,72,-5.927839746485716E-4],[125,-3,73,4.083085348766209E-4],[125,-3,74,0.001462181007917822],[125,-3,75,0.0025643743132357415],[125,-3,76,0.0037084211178536226],[125,-3,77,0.004886006840776096],[125,-3,78,0.0060871697511461495],[125,-3,79,0.007300539544030381],[125,-2,64,-0.007820321278136156],[125,-2,65,-0.007167542400835689],[125,-2,66,-0.00648100627010194],[125,-2,67,-0.005761549300480145],[125,-2,68,-0.005005249211093982],[125,-2,69,-0.004204157493307442],[125,-2,70,-0.00335241487718504],[125,-2,71,-0.0024464311770716215],[125,-2,72,-0.0014848852384066573],[125,-2,73,-4.686885438406718E-4],[125,-2,74,5.990872246765156E-4],[125,-2,75,0.0017133182999810748],[125,-2,76,0.002866972179844167],[125,-2,77,0.004051285700723757],[125,-2,78,0.005255977250764852],[125,-2,79,0.006469492468804422],[125,-1,64,-0.008762592941864591],[125,-1,65,-0.00811324139156675],[125,-1,66,-0.0074258098033554215],[125,-1,67,-0.006702020284828343],[125,-1,68,-0.005938742606120721],[125,-1,69,-0.005128656031930594],[125,-1,70,-0.004266615051173545],[125,-1,71,-0.0033497903063736366],[125,-1,72,-0.002377627345717497],[125,-1,73,-0.0013517741503503722],[125,-1,74,-2.7597776145284924E-4],[125,-1,75,8.440496066627935E-4],[125,-1,76,0.0020007945184062643],[125,-1,77,0.0031851358219682855],[125,-1,78,0.004386567133907905],[125,-1,79,0.005593447671062832],[125,0,64,-0.009683961653394146],[125,0,65,-0.009038928126366749],[125,0,66,-0.00835213582920432],[125,0,67,-0.0076262226913358586],[125,0,68,-0.006858847340587462],[125,0,69,-0.006043298673541578],[125,0,70,-0.005175111946318817],[125,0,71,-0.004252172034213772],[125,0,72,-0.00327463243958374],[125,0,73,-0.002244808283587795],[125,0,74,-0.0011670436295090428],[125,0,75,-4.755353725071054E-5],[125,0,76,0.001105758698494327],[125,0,77,0.0022835086212946187],[125,0,78,0.0034750614406553497],[125,0,79,0.004668786009981845],[125,1,64,-0.010585868803704303],[125,1,65,-0.009946307435416381],[125,1,66,-0.009261977983153877],[125,1,67,-0.008536453922968468],[125,1,68,-0.0077681656367958795],[125,1,69,-0.006950978201624995],[125,1,70,-0.006081059310641302],[125,1,71,-0.005156946810017096],[125,1,72,-0.004179430011066242],[125,1,73,-0.0031514101933010226],[125,1,74,-0.002077740664613723],[125,1,75,-9.650467866028396E-4],[125,1,76,1.7847358417848636E-4],[125,1,77,0.0013432687460645603],[125,1,78,0.002518670359448426],[125,1,79,0.0034770332359177745],[125,2,64,-0.002933714796700468],[125,2,65,-0.004725936507403659],[125,2,66,-0.007015434617213987],[125,2,67,-0.009435158561165643],[125,2,68,-0.008669377563790182],[125,2,69,-0.007854577279068752],[125,2,70,-0.006987495898317842],[125,2,71,-0.006067250271062947],[125,2,72,-0.005095182137140825],[125,2,73,-0.004074688658399598],[125,2,74,-0.0030110376300732274],[125,2,75,-0.0019111677835911666],[125,2,76,-7.834746251003116E-4],[125,2,77,3.6241771429883766E-4],[125,2,78,0.001515898110571599],[125,2,79,0.0022110217108796413],[125,3,64,-5.312723973663123E-4],[125,3,65,-9.47720790705474E-4],[125,3,66,-0.0015709528448301375],[125,3,67,-0.0024760242345271467],[125,3,68,-0.0037202307182182936],[125,3,69,-0.005344522260125561],[125,3,70,-0.007381728662359795],[125,3,71,-0.006985654163253876],[125,3,72,-0.006024366866717189],[125,3,73,-0.005016941637585381],[125,3,74,-0.003968961524887963],[125,3,75,-0.0028875797775554076],[125,3,76,-0.0017812934236660137],[125,3,77,-6.597077512931644E-4],[125,3,78,4.6670783462187315E-4],[125,3,79,9.93447877328053E-4],[125,4,64,-2.7025304770387316E-4],[125,4,65,-4.2735387892013464E-4],[125,4,66,-4.755959636201556E-4],[125,4,67,-5.134801209110617E-4],[125,4,68,-6.2089874867632E-4],[125,4,69,-8.605426457054587E-4],[125,4,70,-0.0012863558932430755],[125,4,71,-0.0019443309386633994],[125,4,72,-0.0028731145262577964],[125,4,73,-0.004104606023085761],[125,4,74,-0.004952293935469722],[125,4,75,-0.0038945993291642175],[125,4,76,-0.0028147467752698743],[125,4,77,-0.0017222368491464097],[125,4,78,-6.273206219881988E-4],[125,4,79,-1.7399806031024028E-4],[125,5,64,0.0015857282832759732],[125,5,65,5.713105017580303E-4],[125,5,66,6.5510939820119095E-6],[125,5,67,-2.30477317964512E-4],[125,5,68,-2.4223553547136653E-4],[125,5,69,-1.1313114584557142E-4],[125,5,70,8.179660508010454E-5],[125,5,71,2.7614183698140555E-4],[125,5,72,4.115863041139431E-4],[125,5,73,4.373539176756025E-4],[125,5,74,3.0966942740646893E-4],[125,5,75,-8.774956126843688E-6],[125,5,76,-5.493413650148116E-4],[125,5,77,-0.0013379530782817045],[125,5,78,-0.0017628359984929425],[125,5,79,-0.001291383448269382],[125,6,64,0.008774378479348829],[125,6,65,0.005785923377948496],[125,6,66,0.0036130525482837837],[125,6,67,0.0021105025396593183],[125,6,68,0.0011532918666781204],[125,6,69,6.353151282351634E-4],[125,6,70,4.604324971283129E-4],[125,6,71,5.41793803202612E-4],[125,6,72,8.013496571237553E-4],[125,6,73,0.001169355892601028],[125,6,74,0.0015838760998395775],[125,6,75,0.0019902861458277726],[125,6,76,0.002340784083602822],[125,6,77,0.0025939085589897007],[125,6,78,0.0027140686098252108],[125,6,79,0.0022346210521269074],[125,7,64,0.025032072833844926],[125,7,65,0.01895518838134407],[125,7,66,0.014083731654315606],[125,7,67,0.010249830389041453],[125,7,68,0.007306373284981246],[125,7,69,0.005125747617286862],[125,7,70,0.003590785634821993],[125,7,71,0.002594191635773607],[125,7,72,0.0020381315322870945],[125,7,73,0.0018337953230106205],[125,7,74,0.0019009442571599044],[125,7,75,0.0021674507994356943],[125,7,76,0.0025688371291815604],[125,7,77,0.003047816410855985],[125,7,78,0.0035538401470387136],[125,7,79,0.0038204470789235936],[125,8,64,0.05406721752214004],[125,8,65,0.04380402868308481],[125,8,66,0.03515339095777169],[125,8,67,0.027928112516636072],[125,8,68,0.021961011125561362],[125,8,69,0.01710420140469653],[125,8,70,0.013220196382981176],[125,8,71,0.010181620219354285],[125,8,72,0.00787099668642217],[125,8,73,0.006180446209024665],[125,8,74,0.005011323709810769],[125,8,75,0.0042738196904745195],[125,8,76,0.0038865400235699177],[125,8,77,0.0037760751024192934],[125,8,78,0.0038765657105649626],[125,8,79,0.004129270776784857],[125,9,64,0.08991174506412514],[125,9,65,0.08395768074212155],[125,9,66,0.07049214511080058],[125,9,67,0.058845029287419706],[125,9,68,0.04883606284714161],[125,9,69,0.0403017946316133],[125,9,70,0.03308754698949875],[125,9,71,0.027047876567844898],[125,9,72,0.02204689817327231],[125,9,73,0.01795835759892669],[125,9,74,0.014665529561252983],[125,9,75,0.01206099608069414],[125,9,76,0.010046345065944982],[125,9,77,0.008531817366860485],[125,9,78,0.0074359221984045855],[125,9,79,0.006685034844492954],[125,10,64,0.08798615022235606],[125,10,65,0.08779044916727459],[125,10,66,0.08767929135016919],[125,10,67,0.08764184656845937],[125,10,68,0.08767494960657976],[125,10,69,0.0783649015523352],[125,10,70,0.0668744604212289],[125,10,71,0.056898564855237053],[125,10,72,0.048287585803163745],[125,10,73,0.040900055624651786],[125,10,74,0.034603237549062166],[125,10,75,0.029273387018932503],[125,10,76,0.024795793089021963],[125,10,77,0.02106466516934425],[125,10,78,0.017982912992340495],[125,10,79,0.01546185459226125],[125,11,64,0.08604412976990297],[125,11,65,0.08579689438855846],[125,11,66,0.08563157639808579],[125,11,67,0.08553696769768711],[125,11,68,0.08550976186712367],[125,11,69,0.08555346219057224],[125,11,70,0.08566920459825708],[125,11,71,0.08585585329505523],[125,11,72,0.08611030683788543],[125,11,73,0.07865450849892669],[125,11,74,0.06850506982675049],[125,11,75,0.05961392688385973],[125,11,76,0.05185340828493147],[125,11,77,0.045103934326935775],[125,11,78,0.039254245257113435],[125,11,79,0.03420143229961349],[125,12,64,0.08409370284904868],[125,12,65,0.08379415752039607],[125,12,66,0.08357362944754393],[125,12,67,0.08342072277786054],[125,12,68,0.08333208869613085],[125,12,69,0.0833112642859693],[125,12,70,0.08335947040873579],[125,12,71,0.083475709723718],[125,12,72,0.08365707410297815],[125,12,73,0.08389903718633826],[125,12,74,0.08419573164311478],[125,12,75,0.0845402107465714],[125,12,76,0.08492469391337534],[125,12,77,0.08428192036897882],[125,12,78,0.0749143862404747],[125,12,79,0.06659176126499704],[125,13,64,0.08214439904468601],[125,13,65,0.08179214218660794],[125,13,66,0.08151574149659087],[125,13,67,0.08130380832083697],[125,13,68,0.08115304227814546],[125,13,69,0.08106701032040656],[125,13,70,0.08104701060126655],[125,13,71,0.08109217506205893],[125,13,72,0.08119977826757348],[125,13,73,0.08136553002900491],[125,13,74,0.08158385139599089],[125,13,75,0.08184813364342944],[125,13,76,0.082150979928894],[125,13,77,0.08248442935088544],[125,13,78,0.0828401631956794],[125,13,79,0.08320969321924686],[125,14,64,0.08020831749359146],[125,14,65,0.07980333976420316],[125,14,66,0.0794707878151063],[125,14,67,0.0791994675008394],[125,14,68,0.07898620195927313],[125,14,69,0.07883456296488564],[125,14,70,0.0787458976037801],[125,14,71,0.07871943869961236],[125,14,72,0.07875261600101251],[125,14,73,0.07884134971945485],[125,14,74,0.07898032601354467],[125,14,75,0.07916325406410296],[125,14,76,0.07938310443860074],[125,14,77,0.07963232850130865],[125,14,78,0.07990305868577424],[125,14,79,0.08018728950697315],[125,15,64,0.07830061119414353],[125,15,65,0.07784325319709945],[125,15,66,0.07745456325632089],[125,15,67,0.07712371036331113],[125,15,68,0.07684769618842818],[125,15,69,0.07663005285776324],[125,15,70,0.07647213157383073],[125,15,71,0.07637322477003339],[125,15,72,0.07633088102971176],[125,15,73,0.07634120070400878],[125,15,74,0.07639911183813379],[125,15,75,0.07649862606926537],[125,15,76,0.07663307421811694],[125,15,77,0.07679532135795061],[125,15,78,0.07697796120831679],[125,15,79,0.07717348976405372],[125,16,64,0.07643397558427809],[125,16,65,0.07592472701963163],[125,16,66,0.07547992565273275],[125,16,67,0.07508925342990141],[125,16,68,0.07474993592314587],[125,16,69,0.07446542054639281],[125,16,70,0.07423702399245743],[125,16,71,0.07406406900765487],[125,16,72,0.07394420348729057],[125,16,73,0.07387369843214757],[125,16,74,0.07384772439051013],[125,16,75,0.07386060606960937],[125,16,76,0.07390605486416814],[125,16,77,0.07397737911576552],[125,16,78,0.07406767198377957],[125,16,79,0.07416997687471202],[125,17,64,0.0746136203398713],[125,17,65,0.07405308011767853],[125,17,66,0.07355220216822783],[125,17,67,0.07310131352364015],[125,17,68,0.07269790299065855],[125,17,69,0.07234529313167548],[125,17,70,0.07204473818281644],[125,17,71,0.07179557712339314],[125,17,72,0.07159555634221706],[125,17,73,0.07144112920949519],[125,17,74,0.07132773219656605],[125,17,75,0.07125003725093661],[125,17,76,0.07120218020296537],[125,17,77,0.07117796505089799],[125,17,78,0.07117104404154172],[125,17,79,0.07117507353268819],[125,18,64,0.07283783099796852],[125,18,65,0.07222671285834475],[125,18,66,0.0716698619516296],[125,18,67,0.07115836463715454],[125,18,68,0.07069000648890432],[125,18,69,0.07026795056647256],[125,18,70,0.06989336997560675],[125,18,71,0.06956561788308976],[125,18,72,0.06928255234744857],[125,18,73,0.06904083604708586],[125,18,74,0.06883621056940871],[125,18,75,0.0686637449954859],[125,18,76,0.0685180585885632],[125,18,77,0.06835927540956765],[125,18,78,0.0680518299168787],[125,18,79,0.0677657424221575],[125,19,64,0.06988252282669118],[125,19,65,0.06944726126346727],[125,19,66,0.06900946008753778],[125,19,67,0.0685786088027594],[125,19,68,0.06815751369593856],[125,19,69,0.06774362973816574],[125,19,70,0.06733584610648673],[125,19,71,0.06693432529597264],[125,19,72,0.06654020352252533],[125,19,73,0.06615531774664635],[125,19,74,0.06578195958148417],[125,19,75,0.06542265627819562],[125,19,76,0.06507997891355663],[125,19,77,0.06475637783806781],[125,19,78,0.06445404537759392],[125,19,79,0.06417480571726333],[125,20,64,0.06643586134399088],[125,20,65,0.06595243704055168],[125,20,66,0.06547210218680317],[125,20,67,0.0650034681148638],[125,20,68,0.06454905940019588],[125,20,69,0.06410661693728835],[125,20,70,0.06367521173279174],[125,20,71,0.06325506732953125],[125,20,72,0.06284726151567595],[125,20,73,0.06245345659849935],[125,20,74,0.06207565848696832],[125,20,75,0.06171600475201139],[125,20,76,0.06137658175988141],[125,20,77,0.06105927090201801],[125,20,78,0.06076562387455695],[125,20,79,0.060496766891732],[125,21,64,0.06289045684282636],[125,21,65,0.0623578640327113],[125,21,66,0.06183445391883068],[125,21,67,0.06132789979129603],[125,21,68,0.060840426330425454],[125,21,69,0.060370074702910975],[125,21,70,0.05991609431951087],[125,21,71,0.059478750032351625],[125,21,72,0.05905902773442304],[125,21,73,0.058658370358365026],[125,21,74,0.05827844449569883],[125,21,75,0.05792093777727011],[125,21,76,0.05758738707709337],[125,21,77,0.057279037524760386],[125,21,78,0.05699673223667536],[125,21,79,0.056740832603392834],[125,22,64,0.0592665480589488],[125,22,65,0.0586836633632942],[125,22,66,0.058116423012090565],[125,22,67,0.05757152233844906],[125,22,68,0.05705087357133176],[125,22,69,0.05655282533265567],[125,22,70,0.0560767964930373],[125,22,71,0.05562307006528557],[125,22,72,0.055192505355523204],[125,22,73,0.05478628219363058],[125,22,74,0.05440567743718242],[125,22,75,0.05405187385793522],[125,22,76,0.053725801436596575],[125,22,77,0.053428011010062074],[125,22,78,0.05315858013636056],[125,22,79,0.052917050966154205],[125,23,64,0.055586279994376285],[125,23,65,0.054951880719238434],[125,23,66,0.054339840613991476],[125,23,67,0.05375585755441064],[125,23,68,0.05320152439166013],[125,23,69,0.05267549697334269],[125,23,70,0.05217734974967455],[125,23,71,0.05170735864614637],[125,23,72,0.051266222380755684],[125,23,73,0.05085481734543699],[125,23,74,0.05047398621530973],[125,23,75,0.0501243603599922],[125,23,76,0.049806216043724094],[125,23,77,0.049519364315667905],[125,23,78,0.049263074409523426],[125,23,79,0.049036030392593605],[125,24,64,0.05187281132885418],[125,24,65,0.0511855973189364],[125,24,66,0.05052758194162124],[125,24,67,0.049903466800039875],[125,24,68,0.04931452405210398],[125,24,69,0.0487597090118102],[125,24,70,0.04823873341011819],[125,24,71,0.047751839799491],[125,24,72,0.047299534500953956],[125,24,73,0.04688235537024267],[125,24,74,0.04650067451310494],[125,24,75,0.04615453598682132],[125,24,76,0.045843528434088204],[125,24,77,0.045566692507038146],[125,24,78,0.045322462854533736],[125,24,79,0.045108644365161266],[125,25,64,0.04814945192501184],[125,25,65,0.04740806999523145],[125,25,66,0.046702714757834815],[125,25,67,0.04603711340961556],[125,25,68,0.045412221647720255],[125,25,69,0.04482727900048474],[125,25,70,0.044282112249095326],[125,25,71,0.04377690410501768],[125,25,72,0.04331194001471412],[125,25,73,0.04288739077965947],[125,25,74,0.04250313108590203],[125,25,75,0.042158593941596885],[125,25,76,0.041852660927498064],[125,25,77,0.041583588074986196],[125,25,78,0.04134896710013003],[125,25,79,0.04114572164079132],[125,26,64,0.0444388315260164],[125,26,65,0.04364190144999066],[125,26,66,0.0428876766741238],[125,26,67,0.04217895217370852],[125,26,68,0.041516376834998404],[125,26,69,0.040899451872541],[125,26,70,0.04032809344827734],[125,26,71,0.03980239847634048],[125,26,72,0.03932240720969868],[125,26,73,0.03888790235754746],[125,26,74,0.03849824479051783],[125,26,75,0.038152245793066135],[125,26,76,0.037848075727454494],[125,26,77,0.03758320888230853],[125,26,78,0.03735440419221468],[125,26,79,0.03715772143348621],[125,27,64,0.040762100948724136],[125,27,65,0.03990824194306438],[125,27,66,0.03910348248767714],[125,27,67,0.03834974703007988],[125,27,68,0.03764739249164114],[125,27,69,0.036996152391724206],[125,27,70,0.036396003700788236],[125,27,71,0.03584693266994738],[125,27,72,0.035348714768491246],[125,27,73,0.03490073157191645],[125,27,74,0.034501824619991794],[125,27,75,0.034150186165818545],[125,27,76,0.0338432866414486],[125,27,77,0.03357783857423033],[125,27,78,0.03334979660207191],[125,27,79,0.03315439315552455],[125,28,64,0.03713816720518942],[125,28,65,0.036226023810570364],[125,28,66,0.0353689628929996],[125,28,67,0.0345681182307593],[125,28,68,0.033823574487387605],[125,28,69,0.033135261908563446],[125,28,70,0.03250318741715973],[125,28,71,0.03192720333912065],[125,28,72,0.031406805868083115],[125,28,73,0.030940970597324566],[125,28,74,0.030528025101670932],[125,28,75,0.03016555845366287],[125,28,76,0.029850367463505115],[125,28,77,0.029578439341987645],[125,28,78,0.029344970401067264],[125,28,79,0.029144420328369752],[125,29,64,0.033582964040537455],[125,29,65,0.0326112302646953],[125,29,66,0.03170003596751302],[125,29,67,0.030849820313883],[125,29,68,0.03006041980546511],[125,29,69,0.029331920556193936],[125,29,70,0.028664327043655218],[125,29,71,0.028057336507565048],[125,29,72,0.027510156700216032],[125,29,73,0.027021360519027322],[125,29,74,0.026588777468612244],[125,29,75,0.026209421802729903],[125,29,76,0.025879457103377104],[125,29,77,0.025594196965953744],[125,29,78,0.025348141377260647],[125,29,79,0.02513504829724222],[125,30,64,0.030108764877028946],[125,30,65,0.029076205679692053],[125,30,66,0.028109018833090717],[125,30,67,0.027207058460285757],[125,30,68,0.026369940752962687],[125,30,69,0.025597862763042215],[125,30,70,0.02489079349090349],[125,30,71,0.024248256564719586],[125,30,72,0.023669167604012515],[125,30,73,0.023151707987619955],[125,30,74,0.022693234940863116],[125,30,75,0.022290227761953794],[125,30,76,0.02193826991717673],[125,30,77,0.021632066648925235],[125,30,78,0.021365497661552945],[125,30,79,0.02113170437734143],[125,31,64,0.026725000175249997],[125,31,65,0.02563053432126824],[125,31,66,0.02460557104611461],[125,31,67,0.02364949895137387],[125,31,68,0.022761744630603424],[125,31,69,0.021942568520165007],[125,31,70,0.02119187151629652],[125,31,71,0.020508988296872477],[125,31,72,0.019892544189028027],[125,31,73,0.019340347689708885],[125,31,74,0.018849318524714262],[125,31,75,0.018415451040246694],[125,31,76,0.018033812633901358],[125,31,77,0.01769857685014939],[125,31,78,0.017403090689911166],[125,31,79,0.017139975614805267],[125,32,64,0.023439775023602134],[125,32,65,0.0222826414073433],[125,32,66,0.021198381864523382],[125,32,67,0.020186044369775367],[125,32,68,0.01924489827871341],[125,32,69,0.018375218928035612],[125,32,70,0.017576808075955807],[125,32,71,0.016848799893915075],[125,32,72,0.016189536795110104],[125,32,73,0.015596479918872861],[125,32,74,0.015066154131312074],[125,32,75,0.014594127315009364],[125,32,76,0.014175023637558782],[125,32,77,0.013802570410988469],[125,32,78,0.013469678082743115],[125,32,79,0.013168552833879268],[125,33,64,0.02025653554353715],[125,33,65,0.019036322663967663],[125,33,66,0.017891566388414746],[125,33,67,0.016821098920623837],[125,33,68,0.015824065097930037],[125,33,69,0.014900707970527843],[125,33,70,0.014050702357209868],[125,33,71,0.013272975101125984],[125,33,72,0.012565598888752217],[125,33,73,0.011925719520211377],[125,33,74,0.01134951647074716],[125,33,75,0.010832196500025485],[125,33,76,0.01036801998747105],[125,33,77,0.009950359598593845],[125,33,78,0.009571790820271356],[125,33,79,0.009224213842097045],[125,34,64,0.017173070173344747],[125,34,65,0.015889716185972555],[125,34,66,0.014683610450908975],[125,34,67,0.013553487736995275],[125,34,68,0.012498399919600724],[125,34,69,0.01151851453754398],[125,34,70,0.010613356910578018],[125,34,71,0.009781645705718737],[125,34,72,0.009021203358502854],[125,34,73,0.008328898582195234],[125,34,74,0.007700620788990997],[125,34,75,0.007131286168954134],[125,34,76,0.006614875098759071],[125,34,77,0.006144500483717577],[125,34,78,0.005712506574060312],[125,34,79,0.005310597739785248],[125,35,64,0.01418102974084077],[125,35,65,0.012834813549489734],[125,35,66,0.011566874662310355],[125,35,67,0.010375954550456085],[125,35,68,0.009261040710240804],[125,35,69,0.008222189013244225],[125,35,70,0.00725876036270268],[125,35,71,0.006369271937440414],[125,35,72,0.005551322419877377],[125,35,73,0.004801547848977679],[125,35,74,0.0041156079113985],[125,35,75,0.0034882024107190414],[125,35,76,0.0029131175857751964],[125,35,77,0.002383301885183565],[125,35,78,0.0018909707470212767],[125,35,79,0.001427739880050845],[125,36,64,0.011265492572712987],[125,36,65,0.009857014620644028],[125,36,66,0.008527140349075623],[125,36,67,0.007274698889735012],[125,36,68,0.006098636844103528],[125,36,69,0.004998872911011839],[125,36,70,0.003974599140915767],[125,36,71,0.0030241473921511384],[125,36,72,0.0021449271715742787],[125,36,73,0.001333392608028625],[125,36,74,5.850383660235065E-4],[125,36,75,-1.0557576159157835E-4],[125,36,76,-7.447719074060778E-4],[125,36,77,-0.0013396732146586999],[125,36,78,-0.001898095392842143],[125,36,79,-0.002428411231436574],[125,37,64,0.008404575910536003],[125,37,65,0.006934727305167722],[125,37,66,0.00554319859667776],[125,37,67,0.004228953967730722],[125,37,68,0.0029909150410374298],[125,37,69,0.0018288525757134552],[125,37,70,7.417991406620715E-4],[125,37,71,-2.720706913963733E-4],[125,37,72,-0.0012154924782438355],[125,37,73,-0.002092136348717151],[125,37,74,-0.002906603943282982],[125,37,75,-0.003664398112658574],[125,37,76,-0.004371865692535158],[125,37,77,-0.0050361137280250864],[125,37,78,-0.005664899571742447],[125,37,79,-0.006266495324835841],[125,38,64,0.005569908221802463],[125,38,65,0.004039826030073929],[125,38,66,0.002587291940710654],[125,38,67,0.0012114093336105004],[125,38,68,-8.891909967653964E-5],[125,38,69,-0.0013140627250558003],[125,38,70,-0.0024651221054252624],[125,38,71,-0.0035440377231159845],[125,38,72,-0.004553635071170552],[125,38,73,-0.005497643343875047],[125,38,74,-0.0063806879171510004],[125,38,75,-0.007208256869938152],[125,38,76,-0.007986641854201934],[125,38,77,-0.00872285367344336],[125,38,78,-0.009424512976813588],[125,38,79,-0.010099716518579938],[125,39,64,0.0027445442883390066],[125,39,65,0.0011555445690569633],[125,39,66,-3.570893458627917E-4],[125,39,67,-0.0017941171737262964],[125,39,68,-0.0031566502065321915],[125,39,69,-0.004445184542400205],[125,39,70,-0.005660922239037946],[125,39,71,-0.006805872222073099],[125,39,72,-0.007882891694329144],[125,39,73,-0.00889570221919422],[125,39,74,-0.009848880661178458],[125,39,75,-0.010747825224442469],[125,39,76,-0.011598696883895965],[125,39,77,-0.012408336553205291],[125,39,78,-0.013184158378980659],[125,39,79,-0.013934019591020053],[125,40,64,-7.333379476924586E-5],[125,40,65,-0.0017198010510488988],[125,40,66,-0.003291468296994998],[125,40,67,-0.004788928933634224],[125,40,68,-0.00621329625650065],[125,40,69,-0.007565189619055025],[125,40,70,-0.008845889848569481],[125,40,71,-0.010057435504994416],[125,40,72,-0.01120266423351054],[125,40,73,-0.012285229611302254],[125,40,74,-0.013309593659563778],[125,40,75,-0.01428099524758467],[125,40,76,-0.015205394667843595],[125,40,77,-0.01608939470918109],[125,40,78,-0.014411417372823138],[125,40,79,-0.012673505652725002],[125,41,64,-0.0028851112635446445],[125,41,65,-0.004587489705977166],[125,41,66,-0.006216976041434883],[125,41,67,-0.007773942893790493],[125,41,68,-0.009259489608642164],[125,41,69,-0.010674365626384312],[125,41,70,-0.012019917684420657],[125,41,71,-0.013298184398183527],[125,41,72,-0.014511941295409973],[125,41,73,-0.015664721888093987],[125,41,74,-0.016760814936327497],[125,41,75,-0.01721414013551225],[125,41,76,-0.015506691141630115],[125,41,77,-0.013793977384366905],[125,41,78,-0.012084737842437809],[125,41,79,-0.010388030220926882],[125,42,64,-0.005691681850231624],[125,42,65,-0.00744835010284207],[125,42,66,-0.009134322923609186],[125,42,67,-0.01074968075516634],[125,42,68,-0.012295492356532114],[125,42,69,-0.013772654098966485],[125,42,70,-0.015182575854335361],[125,42,71,-0.016527276621447644],[125,42,72,-0.017809436955438695],[125,42,73,-0.018122269705636036],[125,42,74,-0.016486586223623978],[125,42,75,-0.014831329115290785],[125,42,76,-0.013164032929912337],[125,42,77,-0.011492729748857074],[125,42,78,-0.009825863683251643],[125,42,79,-0.008172183089174875],[125,43,64,-0.008492587770477466],[125,43,65,-0.010301916876860601],[125,43,66,-0.012042976810688525],[125,43,67,-0.013715475137985426],[125,43,68,-0.015320435811370782],[125,43,69,-0.016858928729106663],[125,43,70,-0.018332434294940324],[125,43,71,-0.018839596127579766],[125,43,72,-0.017298251295134195],[125,43,73,-0.015726176684779252],[125,43,74,-0.014129551417310149],[125,43,75,-0.012515103058226104],[125,43,76,-0.010890078210221674],[125,43,77,-0.009262190026505066],[125,43,78,-0.007639542953732008],[125,43,79,-0.006030535063324942],[125,44,64,-0.011285066790809258],[125,44,65,-0.013145495113504595],[125,44,66,-0.014940251759071833],[125,44,67,-0.01666858875073567],[125,44,68,-0.01833147642112765],[125,44,69,-0.01933636400127319],[125,44,70,-0.017904775169296346],[125,44,71,-0.016434231435748254],[125,44,72,-0.014929746000207786],[125,44,73,-0.013396786172232018],[125,44,74,-0.011841304173167127],[125,44,75,-0.010269744107932953],[125,44,76,-0.008689025276983462],[125,44,77,-0.007106502057147035],[125,44,78,-0.005529900635304463],[125,44,79,-0.003967232929811762],[125,45,64,-0.01406300461206043],[125,45,65,-0.015973131531744577],[125,45,66,-0.017820305289186416],[125,45,67,-0.01959359268126865],[125,45,68,-0.01828232994497544],[125,45,69,-0.016925599245327275],[125,45,70,-0.015527851550985076],[125,45,71,-0.01409373162587765],[125,45,72,-0.012628173613942513],[125,45,73,-0.011136472179213921],[125,45,74,-0.009624329214826989],[125,45,75,-0.008097876198496076],[125,45,76,-0.006563672334429458],[125,45,77,-0.005028678681700623],[125,45,78,-0.0035002085259510864],[125,45,79,-0.001985854303944303],[125,46,64,-0.01681579089770852],[125,46,65,-0.018774490653808644],[125,46,66,-0.01841031647458582],[125,46,67,-0.017177705168463828],[125,46,68,-0.015897366985803466],[125,46,69,-0.014574015879214816],[125,46,70,-0.013212295392765137],[125,46,71,-0.011816899377796826],[125,46,72,-0.010392687055573087],[125,46,73,-0.008944773016802366],[125,46,74,-0.007478592133390872],[125,46,75,-0.005999939423852639],[125,46,76,-0.00451498497832262],[125,46,77,-0.003030264111313113],[125,46,78,-0.001552642969406097],[125,46,79,-8.925987601311535E-5],[125,47,64,-0.018269999951676996],[125,47,65,-0.017167859100119212],[125,47,66,-0.016015819290536682],[125,47,67,-0.014814363529186459],[125,47,68,-0.0135672996588898],[125,47,69,-0.012279746742762634],[125,47,70,-0.010956584012066704],[125,47,71,-0.009602580785066234],[125,47,72,-0.008222533223140184],[125,47,73,-0.006821375303991472],[125,47,74,-0.00540426394442259],[125,47,75,-0.00397663827370519],[125,47,76,-0.002544253125620839],[125,47,77,-0.0011131868820331734],[125,47,78,3.101761374490309E-4],[125,47,79,0.0020500783509198334],[125,48,64,-0.015879890859412715],[125,48,65,-0.014806308372198491],[125,48,66,-0.013685530904566881],[125,48,67,-0.012517367562899282],[125,48,68,-0.011305655119604043],[125,48,69,-0.010055979297244414],[125,48,70,-0.008773501546320034],[125,48,71,-0.007463098868693942],[125,48,72,-0.006129524043875224],[125,48,73,-0.023883334380689313],[125,48,74,-0.017058526615963045],[125,48,75,-0.010189914737696405],[125,48,76,6.6909463563092515E-6],[125,48,77,0.0020715830105026635],[125,48,78,0.00412814972287163],[125,48,79,0.006165516652935966],[125,49,64,-0.06773288150753635],[125,49,65,-0.06253957431557107],[125,49,66,-0.057120607359038],[125,49,67,-0.051471385514297335],[125,49,68,-0.045611278002875226],[125,49,69,-0.0395708440913185],[125,49,70,-0.033377672114969587],[125,49,71,-0.027057111363660985],[125,49,72,-0.020633179169306307],[125,49,73,-0.011217659758049116],[125,49,74,-7.579507647785056E-4],[125,49,75,0.009699613604298937],[125,49,76,0.020130303589538243],[125,49,77,0.030508519927697746],[125,49,78,0.00816590773989101],[125,49,79,0.010208652536143474],[125,50,64,-0.05666435034781199],[125,50,65,-0.051626991822764215],[125,50,66,-0.04637632228002161],[125,50,67,-0.040904159517267245],[125,50,68,-0.035230376089594805],[125,50,69,-0.029388509773024686],[125,50,70,-0.02300458136393312],[125,50,71,-0.01258131018124831],[125,50,72,-0.0021057113687744833],[125,50,73,0.008398601878160415],[125,50,74,0.018908731110040877],[125,50,75,0.029401921277715],[125,50,76,0.03985513431235363],[125,50,77,0.05024476881385838],[125,50,78,0.0605465257332058],[125,50,79,0.07073541862455182],[125,51,64,-0.04609871648375143],[125,51,65,-0.04122802083478685],[125,51,66,-0.03615503193389251],[125,51,67,-0.030867897801583034],[125,51,68,-0.02484395838907043],[125,51,69,-0.014482930144261883],[125,51,70,-0.00403181315125752],[125,51,71,0.006480449249671823],[125,51,72,0.017028085477690504],[125,51,73,0.027587518580201306],[125,51,74,0.03813653241082119],[125,51,75,0.0486535851067457],[125,51,76,0.05911727271007718],[125,51,77,0.06950594449376782],[125,51,78,0.07979747019556907],[125,51,79,0.08996915799538747],[125,52,64,-0.036088931122950856],[125,52,65,-0.03139464098534575],[125,52,66,-0.0265074797503891],[125,52,67,-0.016897254501895206],[125,52,68,-0.00653893186351105],[125,52,69,0.003931511382698731],[125,52,70,0.014478039892026687],[125,52,71,0.0250699399924245],[125,52,72,0.03568057335142851],[125,52,73,0.04628627323559797],[125,52,74,0.056865388862411936],[125,52,75,0.06739748236572843],[125,52,76,0.07786268167511082],[125,52,77,0.08824119124592099],[125,52,78,0.09851296114309298],[125,52,79,0.10865751354158196],[125,53,64,-0.026676160209272617],[125,53,65,-0.019674841142638823],[125,53,66,-0.009526845845481326],[125,53,67,7.938584141865582E-4],[125,53,68,0.011262673050602235],[125,53,69,0.021833384092941655],[125,53,70,0.03246701081483454],[125,53,71,0.04313092900174798],[125,53,72,0.05379749321001235],[125,53,73,0.06444280619672375],[125,53,74,0.07504564165568275],[125,53,75,0.08558652533531391],[125,53,76,0.09604697829659728],[125,53,77,0.10640892460699346],[125,53,78,0.11665426424014431],[125,53,79,0.12676461042760398],[125,54,64,-0.012851455216516995],[125,54,65,-0.002742967178790819],[125,54,66,0.007514774881292467],[125,54,67,0.017941758504153495],[125,54,68,0.02851188016821919],[125,54,69,0.03917479929935704],[125,54,70,0.04988847993427803],[125,54,71,0.060618262935916795],[125,54,72,0.07133535839117122],[125,54,73,0.082015490066459],[125,54,74,0.09263769872639627],[125,54,75,0.1031833099563739],[125,54,76,0.1136350706929461],[125,54,77,0.12397645708730375],[125,54,78,0.13419115469487428],[125,54,79,0.1442627103674436],[125,55,64,0.0034157785034068084],[125,55,65,0.013627938988249343],[125,55,66,0.02398438469984496],[125,55,67,0.03450799980198027],[125,55,68,0.045171048273634634],[125,55,69,0.05591901746787079],[125,55,70,0.06670674144649798],[125,55,71,0.07749742277289126],[125,55,72,0.07893651641593344],[125,55,73,0.056235024411049904],[125,55,74,0.04239699420464614],[125,55,75,0.043779659927674686],[125,55,76,0.06249653432541964],[125,55,77,0.09667533585393874],[125,55,78,0.13888151347602384],[125,55,79,0.16113170003769375],[125,56,64,0.018726484063585368],[125,56,65,0.029409029036742494],[125,56,66,0.03985381492303851],[125,56,67,0.05046507568998585],[125,56,68,0.0612133273054199],[125,56,69,0.061816979764292096],[125,56,70,0.053646298586522805],[125,56,71,0.04114775599088086],[125,56,72,0.02027721136118099],[125,56,73,0.002201412528342667],[125,56,74,-0.002287575985201208],[125,56,75,-6.864332782190526E-4],[125,56,76,0.0049815590532643955],[125,56,77,0.03822206068425697],[125,56,78,0.08061573334872142],[125,56,79,0.12569131873798042],[125,57,64,0.0017653095386992597],[125,57,65,-0.004708856651543866],[125,57,66,-0.006131347530239306],[125,57,67,-0.004859458848571206],[125,57,68,-0.0027099153672297802],[125,57,69,-0.0036368446103029104],[125,57,70,-0.004823006875495135],[125,57,71,-0.00779323517363016],[125,57,72,-0.01204193762304193],[125,57,73,-0.016291123414958284],[125,57,74,-0.018937633173595245],[125,57,75,-0.018542067235568258],[125,57,76,-0.012801595116564049],[125,57,77,-0.004337284411228122],[125,57,78,0.01627234193159797],[125,57,79,0.06158101935679072],[125,58,64,7.543612117176621E-4],[125,58,65,-0.006422551431603745],[125,58,66,-0.00913170688376506],[125,58,67,-0.007322131875293255],[125,58,68,-0.007046200547607439],[125,58,69,-0.005913416793483231],[125,58,70,-0.0071218791660094425],[125,58,71,-0.009906150758068024],[125,58,72,-0.013422953795318772],[125,58,73,-0.018334222118337146],[125,58,74,-0.021966065308081522],[125,58,75,-0.021235465678220423],[125,58,76,-0.016213282839602283],[125,58,77,-0.006759809878466183],[125,58,78,0.0030255036445216853],[125,58,79,0.013622150444668515],[125,59,64,-0.01539320347996165],[125,59,65,-0.022367391370315105],[125,59,66,-0.025704023811391672],[125,59,67,-0.023857257219177364],[125,59,68,-0.023198567261491287],[125,59,69,-0.02268482744712663],[125,59,70,-0.023051174122199113],[125,59,71,-0.025605730861388794],[125,59,72,-0.02870730242747412],[125,59,73,-0.034015763722165006],[125,59,74,-0.037623783207641814],[125,59,75,-0.03664937951819984],[125,59,76,-0.031458262394388016],[125,59,77,-0.021946225039543955],[125,59,78,-0.012802527289760222],[125,59,79,-0.0027127573633800206],[125,60,64,-0.03425554939957054],[125,60,65,-0.041403728523218025],[125,60,66,-0.044250018051404695],[125,60,67,-0.04290581969539383],[125,60,68,-0.042264044686018444],[125,60,69,-0.04134218970921801],[125,60,70,-0.041655999732301115],[125,60,71,-0.0438407488864025],[125,60,72,-0.04694725621107697],[125,60,73,-0.052909643090513436],[125,60,74,-0.05623787725412867],[125,60,75,-0.05532879520657046],[125,60,76,-0.04990969833358423],[125,60,77,-0.04056107943116939],[125,60,78,-0.03167606382364143],[125,60,79,-0.021700622298573998],[125,61,64,-0.04991524233362053],[125,61,65,-0.05572678495444015],[125,61,66,-0.057102857510333484],[125,61,67,-0.054353640395579585],[125,61,68,-0.05286109279995565],[125,61,69,-0.053035303537336126],[125,61,70,-0.05307067752429675],[125,61,71,-0.054714100867499955],[125,61,72,-0.05909295507019203],[125,61,73,-0.06438266106851748],[125,61,74,-0.06735351495303717],[125,61,75,-0.06573903156211858],[125,61,76,-0.05988445610766284],[125,61,77,-0.05234219841542851],[125,61,78,-0.04200042180241299],[125,61,79,-0.03155858184123091],[125,62,64,-0.06593875809568625],[125,62,65,-0.07124161618989905],[125,62,66,-0.07233434960330894],[125,62,67,-0.06978914671848287],[125,62,68,-0.06801021685900563],[125,62,69,-0.0682203787006774],[125,62,70,-0.06906523163225665],[125,62,71,-0.07103529027207574],[125,62,72,-0.075767064078857],[125,62,73,-0.080609277527465],[125,62,74,-0.08399608595160264],[125,62,75,-0.08091756330244491],[125,62,76,-0.07557767724717458],[125,62,77,-0.06717727643109983],[125,62,78,-0.05715017562975771],[125,62,79,-0.047203529182798125],[125,63,64,-0.10365928370344818],[125,63,65,-0.10909488451209293],[125,63,66,-0.10897031291468395],[125,63,67,-0.10611323691947971],[125,63,68,-0.10487781554777563],[125,63,69,-0.10405694368691054],[125,63,70,-0.10518875895466522],[125,63,71,-0.10738379189863474],[125,63,72,-0.11194844171424194],[125,63,73,-0.11666939703794722],[125,63,74,-0.11844380375262965],[125,63,75,-0.11502266109281592],[125,63,76,-0.10949434167008845],[125,63,77,-0.10154912499175323],[125,63,78,-0.09044519816339497],[125,63,79,-0.07978556097902455],[125,64,64,-0.11617104090357026],[125,64,65,-0.12166385185237515],[125,64,66,-0.12131638286927851],[125,64,67,-0.11916104895476151],[125,64,68,-0.1175235042474708],[125,64,69,-0.11722819997609828],[125,64,70,-0.11837988395468839],[125,64,71,-0.1200529641627124],[125,64,72,-0.12415367664610676],[125,64,73,-0.1296539860424126],[125,64,74,-0.1310600869495978],[125,64,75,-0.12759250097127536],[125,64,76,-0.12247395930069829],[125,64,77,-0.11530373198429314],[125,64,78,-0.10317973743358197],[125,64,79,-0.09195291981794301],[125,65,64,-0.1315916157254076],[125,65,65,-0.13664634634057246],[125,65,66,-0.1374014195581397],[125,65,67,-0.13535595872702835],[125,65,68,-0.13465569250456816],[125,65,69,-0.13386647835225182],[125,65,70,-0.1347212453117374],[125,65,71,-0.13718811173632556],[125,65,72,-0.14079668341260393],[125,65,73,-0.14523049233197446],[125,65,74,-0.14644003323080224],[125,65,75,-0.14442202254781464],[125,65,76,-0.13939861976088666],[125,65,77,-0.1311764409837039],[125,65,78,-0.11913060189992589],[125,65,79,-0.10674587607549071],[125,66,64,-0.14876414144581018],[125,66,65,-0.15386960982389353],[125,66,66,-0.1557068662695481],[125,66,67,-0.1541046421513008],[125,66,68,-0.15260292791334912],[125,66,69,-0.15183371242237975],[125,66,70,-0.15367939315373172],[125,66,71,-0.15569643015398596],[125,66,72,-0.158687760405653],[125,66,73,-0.16249669276457968],[125,66,74,-0.16437594075457396],[125,66,75,-0.16248174674062393],[125,66,76,-0.15774525156253733],[125,66,77,-0.14870746621908124],[125,66,78,-0.13654150393908276],[125,66,79,-0.12513088400677766],[125,67,64,-0.1641768527527873],[125,67,65,-0.16932452387142272],[125,67,66,-0.17151737468462702],[125,67,67,-0.17000698884969231],[125,67,68,-0.16758050088910617],[125,67,69,-0.16831021084118303],[125,67,70,-0.1699442132040951],[125,67,71,-0.17180212643260712],[125,67,72,-0.17515813672626132],[125,67,73,-0.1778712107863681],[125,67,74,-0.18006892978003197],[125,67,75,-0.17920184605206818],[125,67,76,-0.1736148347576937],[125,67,77,-0.16433149198364863],[125,67,78,-0.15301009813157096],[125,67,79,-0.14172113535459313],[125,68,64,-0.20717683488376454],[125,68,65,-0.21238259618083744],[125,68,66,-0.2155111504345658],[125,68,67,-0.21416620259754196],[125,68,68,-0.21158084573485453],[125,68,69,-0.21303948942122322],[125,68,70,-0.2145400984364638],[125,68,71,-0.21703146717714863],[125,68,72,-0.21965903148147087],[125,68,73,-0.22281618528560126],[125,68,74,-0.22417750683704912],[125,68,75,-0.22428432236942314],[125,68,76,-0.21885085624906697],[125,68,77,-0.20874066800111324],[125,68,78,-0.1979905584291621],[125,68,79,-0.1872650474538244],[125,69,64,-0.22303516644926327],[125,69,65,-0.2292857710551494],[125,69,66,-0.23308568234968624],[125,69,67,-0.23304817461084182],[125,69,68,-0.2315856046194591],[125,69,69,-0.23263829635337346],[125,69,70,-0.23400507998093567],[125,69,71,-0.2359931565758313],[125,69,72,-0.23934367516134114],[125,69,73,-0.2439428095542197],[125,69,74,-0.24469557999472666],[125,69,75,-0.24444478023031993],[125,69,76,-0.23890749609820136],[125,69,77,-0.2286071480573666],[125,69,78,-0.21777918701510227],[125,69,79,-0.20700444390526512],[125,70,64,-0.23773762497956055],[125,70,65,-0.24480159852680444],[125,70,66,-0.2479795206850076],[125,70,67,-0.24834521033967252],[125,70,68,-0.2475606856419602],[125,70,69,-0.24734743519348065],[125,70,70,-0.24797530122324637],[125,70,71,-0.250307093325891],[125,70,72,-0.2545015151531724],[125,70,73,-0.2595218915940514],[125,70,74,-0.2609061432257263],[125,70,75,-0.26035725549280175],[125,70,76,-0.2542765928529845],[125,70,77,-0.24453307604493302],[125,70,78,-0.23312319586679056],[125,70,79,-0.222620199289264],[125,71,64,-0.2496620031743407],[125,71,65,-0.2576348635912715],[125,71,66,-0.2609717919279378],[125,71,67,-0.26092318818548427],[125,71,68,-0.26037967911895504],[125,71,69,-0.26008107649025397],[125,71,70,-0.25989811738172963],[125,71,71,-0.26257119224832814],[125,71,72,-0.26707918176150924],[125,71,73,-0.27283404191717925],[125,71,74,-0.27389003216379665],[125,71,75,-0.27279809218060286],[125,71,76,-0.26695118639308935],[125,71,77,-0.2575909099008073],[125,71,78,-0.2458337067715078],[125,71,79,-0.23524394005346472],[125,72,64,-0.26551166337092824],[125,72,65,-0.2726560766448857],[125,72,66,-0.27582710962894874],[125,72,67,-0.27592715164524867],[125,72,68,-0.2756717869227048],[125,72,69,-0.2744601069752547],[125,72,70,-0.27484135323570685],[125,72,71,-0.277432310985188],[125,72,72,-0.2822911068897211],[125,72,73,-0.28738520971475573],[125,72,74,-0.2892153186593629],[125,72,75,-0.2881109931523532],[125,72,76,-0.2815916976482856],[125,72,77,-0.27210700357156153],[125,72,78,-0.26120654739872134],[125,72,79,-0.25088672740199114],[125,73,64,-0.2837167124752551],[125,73,65,-0.28861451153847334],[125,73,66,-0.2894337183282763],[125,73,67,-0.28839670551470253],[125,73,68,-0.2872184887735528],[125,73,69,-0.28588338834269567],[125,73,70,-0.28659910484957457],[125,73,71,-0.2894679333057093],[125,73,72,-0.29475535977967543],[125,73,73,-0.29901124168190796],[125,73,74,-0.3010750828918346],[125,73,75,-0.3000192557642932],[125,73,76,-0.2942632557423021],[125,73,77,-0.28484201328617764],[125,73,78,-0.2749362096104596],[125,73,79,-0.26652811255709047],[125,74,64,-0.30042595199589067],[125,74,65,-0.30427647776597055],[125,74,66,-0.30497593460293393],[125,74,67,-0.30396211421124414],[125,74,68,-0.3027509012947767],[125,74,69,-0.30190073203157397],[125,74,70,-0.3028296363205907],[125,74,71,-0.3057694844956473],[125,74,72,-0.31084251426388504],[125,74,73,-0.3150339408863698],[125,74,74,-0.31696355196963133],[125,74,75,-0.3158946178807875],[125,74,76,-0.3106953211045818],[125,74,77,-0.3018143316864694],[125,74,78,-0.29179421270713823],[125,74,79,-0.28391425456876157],[125,75,64,-0.3145154053605913],[125,75,65,-0.318267820266471],[125,75,66,-0.31864625557886067],[125,75,67,-0.3169259286446889],[125,75,68,-0.3163093025514325],[125,75,69,-0.315591968846771],[125,75,70,-0.3170574604056506],[125,75,71,-0.3200481021734271],[125,75,72,-0.32488668683915267],[125,75,73,-0.32893420734468315],[125,75,74,-0.33098426307161655],[125,75,75,-0.33036702460376766],[125,75,76,-0.3258733339400412],[125,75,77,-0.3172385335344686],[125,75,78,-0.307795874278959],[125,75,79,-0.2989345994992768],[125,76,64,-0.32687398961534675],[125,76,65,-0.33128225347432233],[125,76,66,-0.33149565480920534],[125,76,67,-0.32935707926618785],[125,76,68,-0.3291719520349644],[125,76,69,-0.32860665585420934],[125,76,70,-0.33041274418608374],[125,76,71,-0.33312187368492946],[125,76,72,-0.3388895167340531],[125,76,73,-0.3430442899769201],[125,76,74,-0.34540940038599544],[125,76,75,-0.3453221128268006],[125,76,76,-0.34088161868742334],[125,76,77,-0.3329388035716457],[125,76,78,-0.32319461357976137],[125,76,79,-0.31360362927959956],[125,77,64,-0.34004312504208045],[125,77,65,-0.3436908850598211],[125,77,66,-0.34355436308250586],[125,77,67,-0.3420290170413743],[125,77,68,-0.34153376094297644],[125,77,69,-0.3412062550611652],[125,77,70,-0.34342123844665723],[125,77,71,-0.3461871627763968],[125,77,72,-0.3519645660492114],[125,77,73,-0.3566308660543974],[125,77,74,-0.35899840197600225],[125,77,75,-0.3594941981182014],[125,77,76,-0.35496268464249436],[125,77,77,-0.34758415892767314],[125,77,78,-0.3375157290595166],[125,77,79,-0.32818566575768454],[125,78,64,-0.35419879508294166],[125,78,65,-0.3570186857046429],[125,78,66,-0.35716134322355714],[125,78,67,-0.35507546881205554],[125,78,68,-0.3538397358690658],[125,78,69,-0.3545279607788876],[125,78,70,-0.3572340163380833],[125,78,71,-0.3606819012224184],[125,78,72,-0.3661005551748328],[125,78,73,-0.37111283158337766],[125,78,74,-0.3733822569035959],[125,78,75,-0.37416327915334663],[125,78,76,-0.3699494934143563],[125,78,77,-0.3621138579903614],[125,78,78,-0.3532158708467695],[125,78,79,-0.34312518886889054],[125,79,64,-0.3650430037516866],[125,79,65,-0.3685826217676441],[125,79,66,-0.3677352958998659],[125,79,67,-0.3655479987623857],[125,79,68,-0.36454483905977836],[125,79,69,-0.36573667139819094],[125,79,70,-0.36818128525811156],[125,79,71,-0.3719930051537706],[125,79,72,-0.37721505464495486],[125,79,73,-0.3825733634626326],[125,79,74,-0.3852228702001894],[125,79,75,-0.38592108848501844],[125,79,76,-0.38210220911829235],[125,79,77,-0.374063587024002],[125,79,78,-0.3659747009884508],[125,79,79,-0.3564294948561464],[125,80,64,-0.3792142426314797],[125,80,65,-0.3821532727000193],[125,80,66,-0.38097930465959673],[125,80,67,-0.37857686202086477],[125,80,68,-0.37785079918791853],[125,80,69,-0.37893068025789944],[125,80,70,-0.3811543040169306],[125,80,71,-0.3849329773480238],[125,80,72,-0.3901918414119562],[125,80,73,-0.3958902196603583],[125,80,74,-0.3986935320539958],[125,80,75,-0.3995706914029779],[125,80,76,-0.3960794645868663],[125,80,77,-0.3885560414191963],[125,80,78,-0.3806643423831729],[125,80,79,-0.3703383564509202],[125,81,64,-0.39370681413013964],[125,81,65,-0.3952279201142301],[125,81,66,-0.39345774391957833],[125,81,67,-0.39054572406092625],[125,81,68,-0.38906366328982167],[125,81,69,-0.390251653397263],[125,81,70,-0.39284780185536106],[125,81,71,-0.39704676777696907],[125,81,72,-0.4031958587831612],[125,81,73,-0.4092542543280553],[125,81,74,-0.41300577209310213],[125,81,75,-0.413774303526946],[125,81,76,-0.4103838825856244],[125,81,77,-0.40420970480450974],[125,81,78,-0.3962969560873291],[125,81,79,-0.3863928169105493],[125,82,64,-0.40842621988084243],[125,82,65,-0.4095216599952121],[125,82,66,-0.4073386640811886],[125,82,67,-0.40503214792788794],[125,82,68,-0.403267446978725],[125,82,69,-0.4048166492152976],[125,82,70,-0.40706913468120387],[125,82,71,-0.4104955844400517],[125,82,72,-0.4171829230925654],[125,82,73,-0.4235624919671349],[125,82,74,-0.4282470576037676],[125,82,75,-0.4285867595094478],[125,82,76,-0.4255773311680774],[125,82,77,-0.41970389148465276],[125,82,78,-0.4116912017731591],[125,82,79,-0.4016885774196193],[125,83,64,-0.420874283621906],[125,83,65,-0.4217791012617729],[125,83,66,-0.4201252296416299],[125,83,67,-0.41756988574634263],[125,83,68,-0.41626305981342687],[125,83,69,-0.417532845496106],[125,83,70,-0.41959816271883943],[125,83,71,-0.42290118722646475],[125,83,72,-0.42982027424982827],[125,83,73,-0.4371075714653092],[125,83,74,-0.4415436934134481],[125,83,75,-0.4416243918979968],[125,83,76,-0.43885516964416155],[125,83,77,-0.43359985097019704],[125,83,78,-0.4248999101897865],[125,83,79,-0.4146216566562212],[125,84,64,-0.431004775909623],[125,84,65,-0.4325643432054366],[125,84,66,-0.43125062542908343],[125,84,67,-0.4288939121590546],[125,84,68,-0.42826547688218797],[125,84,69,-0.4293793502346697],[125,84,70,-0.4319003343330722],[125,84,71,-0.43581057556310326],[125,84,72,-0.4428928013879594],[125,84,73,-0.44959009332305705],[125,84,74,-0.45431239347448976],[125,84,75,-0.4546633980554305],[125,84,76,-0.4522642184338083],[125,84,77,-0.4461357127783109],[125,84,78,-0.438053167700174],[125,84,79,-0.42714421462629876],[125,85,64,-0.440261332337398],[125,85,65,-0.4442619301807558],[125,85,66,-0.44478911413344563],[125,85,67,-0.4431024999807993],[125,85,68,-0.4423655812885734],[125,85,69,-0.44359431316802406],[125,85,70,-0.44576127945779054],[125,85,71,-0.45016346274413194],[125,85,72,-0.4554223360270005],[125,85,73,-0.4583333333333333],[125,85,74,-0.4583333333333333],[125,85,75,-0.4583333333333333],[125,85,76,-0.4583333333333333],[125,85,77,-0.4570332811031291],[125,85,78,-0.4479888855078873],[125,85,79,-0.4369340874246414],[125,86,64,-0.45225507758352934],[125,86,65,-0.4564350752970099],[125,86,66,-0.45717458472052813],[125,86,67,-0.45528142702869834],[125,86,68,-0.4546781936244322],[125,86,69,-0.45517520128395145],[125,86,70,-0.4578623403039406],[125,86,71,-0.4583333333333333],[125,86,72,-0.4583333333333333],[125,86,73,-0.4583333333333333],[125,86,74,-0.4583333333333333],[125,86,75,-0.4583333333333333],[125,86,76,-0.4583333333333333],[125,86,77,-0.4583333333333333],[125,86,78,-0.4583333333333333],[125,86,79,-0.44916610122925416],[125,87,64,-0.4583333333333333],[125,87,65,-0.4583333333333333],[125,87,66,-0.4583333333333333],[125,87,67,-0.4583333333333333],[125,87,68,-0.4583333333333333],[125,87,69,-0.4583333333333333],[125,87,70,-0.4583333333333333],[125,87,71,-0.4583333333333333],[125,87,72,-0.4583333333333333],[125,87,73,-0.4583333333333333],[125,87,74,-0.4583333333333333],[125,87,75,-0.4583333333333333],[125,87,76,-0.4583333333333333],[125,87,77,-0.4583333333333333],[125,87,78,-0.4583333333333333],[125,87,79,-0.4583333333333333],[125,88,64,-0.4583333333333333],[125,88,65,-0.4583333333333333],[125,88,66,-0.4583333333333333],[125,88,67,-0.4583333333333333],[125,88,68,-0.4583333333333333],[125,88,69,-0.4583333333333333],[125,88,70,-0.4583333333333333],[125,88,71,-0.4583333333333333],[125,88,72,-0.4583333333333333],[125,88,73,-0.4583333333333333],[125,88,74,-0.4583333333333333],[125,88,75,-0.4583333333333333],[125,88,76,-0.4583333333333333],[125,88,77,-0.4583333333333333],[125,88,78,-0.4583333333333333],[125,88,79,-0.4583333333333333],[125,89,64,-0.4583333333333333],[125,89,65,-0.4583333333333333],[125,89,66,-0.4583333333333333],[125,89,67,-0.4583333333333333],[125,89,68,-0.4583333333333333],[125,89,69,-0.4583333333333333],[125,89,70,-0.4583333333333333],[125,89,71,-0.4583333333333333],[125,89,72,-0.4583333333333333],[125,89,73,-0.4583333333333333],[125,89,74,-0.4583333333333333],[125,89,75,-0.4583333333333333],[125,89,76,-0.4583333333333333],[125,89,77,-0.4583333333333333],[125,89,78,-0.4583333333333333],[125,89,79,-0.4583333333333333],[125,90,64,-0.4583333333333333],[125,90,65,-0.4583333333333333],[125,90,66,-0.4583333333333333],[125,90,67,-0.4583333333333333],[125,90,68,-0.4583333333333333],[125,90,69,-0.4583333333333333],[125,90,70,-0.4583333333333333],[125,90,71,-0.4583333333333333],[125,90,72,-0.4583333333333333],[125,90,73,-0.4583333333333333],[125,90,74,-0.4583333333333333],[125,90,75,-0.4583333333333333],[125,90,76,-0.4583333333333333],[125,90,77,-0.4583333333333333],[125,90,78,-0.4583333333333333],[125,90,79,-0.4583333333333333],[125,91,64,-0.4583333333333333],[125,91,65,-0.4583333333333333],[125,91,66,-0.4583333333333333],[125,91,67,-0.4583333333333333],[125,91,68,-0.4583333333333333],[125,91,69,-0.4583333333333333],[125,91,70,-0.4583333333333333],[125,91,71,-0.4583333333333333],[125,91,72,-0.4583333333333333],[125,91,73,-0.4583333333333333],[125,91,74,-0.4583333333333333],[125,91,75,-0.4583333333333333],[125,91,76,-0.4583333333333333],[125,91,77,-0.4583333333333333],[125,91,78,-0.4583333333333333],[125,91,79,-0.4583333333333333],[125,92,64,-0.4583333333333333],[125,92,65,-0.4583333333333333],[125,92,66,-0.4583333333333333],[125,92,67,-0.4583333333333333],[125,92,68,-0.4583333333333333],[125,92,69,-0.4583333333333333],[125,92,70,-0.4583333333333333],[125,92,71,-0.4583333333333333],[125,92,72,-0.4583333333333333],[125,92,73,-0.4583333333333333],[125,92,74,-0.4583333333333333],[125,92,75,-0.4583333333333333],[125,92,76,-0.4583333333333333],[125,92,77,-0.4583333333333333],[125,92,78,-0.4583333333333333],[125,92,79,-0.4583333333333333],[125,93,64,-0.4583333333333333],[125,93,65,-0.4583333333333333],[125,93,66,-0.4583333333333333],[125,93,67,-0.4583333333333333],[125,93,68,-0.4583333333333333],[125,93,69,-0.4583333333333333],[125,93,70,-0.4583333333333333],[125,93,71,-0.4583333333333333],[125,93,72,-0.4583333333333333],[125,93,73,-0.4583333333333333],[125,93,74,-0.4583333333333333],[125,93,75,-0.4583333333333333],[125,93,76,-0.4583333333333333],[125,93,77,-0.4583333333333333],[125,93,78,-0.4583333333333333],[125,93,79,-0.4583333333333333],[125,94,64,-0.4583333333333333],[125,94,65,-0.4583333333333333],[125,94,66,-0.4583333333333333],[125,94,67,-0.4583333333333333],[125,94,68,-0.4583333333333333],[125,94,69,-0.4583333333333333],[125,94,70,-0.4583333333333333],[125,94,71,-0.4583333333333333],[125,94,72,-0.4583333333333333],[125,94,73,-0.4583333333333333],[125,94,74,-0.4583333333333333],[125,94,75,-0.4583333333333333],[125,94,76,-0.4583333333333333],[125,94,77,-0.4583333333333333],[125,94,78,-0.4583333333333333],[125,94,79,-0.4583333333333333],[125,95,64,-0.4583333333333333],[125,95,65,-0.4583333333333333],[125,95,66,-0.4583333333333333],[125,95,67,-0.4583333333333333],[125,95,68,-0.4583333333333333],[125,95,69,-0.4583333333333333],[125,95,70,-0.4583333333333333],[125,95,71,-0.4583333333333333],[125,95,72,-0.4583333333333333],[125,95,73,-0.4583333333333333],[125,95,74,-0.4583333333333333],[125,95,75,-0.4583333333333333],[125,95,76,-0.4583333333333333],[125,95,77,-0.4583333333333333],[125,95,78,-0.4583333333333333],[125,95,79,-0.4583333333333333],[125,96,64,-0.4583333333333333],[125,96,65,-0.4583333333333333],[125,96,66,-0.4583333333333333],[125,96,67,-0.4583333333333333],[125,96,68,-0.4583333333333333],[125,96,69,-0.4583333333333333],[125,96,70,-0.4583333333333333],[125,96,71,-0.4583333333333333],[125,96,72,-0.4583333333333333],[125,96,73,-0.4583333333333333],[125,96,74,-0.4583333333333333],[125,96,75,-0.4583333333333333],[125,96,76,-0.4583333333333333],[125,96,77,-0.4583333333333333],[125,96,78,-0.4583333333333333],[125,96,79,-0.4583333333333333],[125,97,64,-0.4583333333333333],[125,97,65,-0.4583333333333333],[125,97,66,-0.4583333333333333],[125,97,67,-0.4583333333333333],[125,97,68,-0.4583333333333333],[125,97,69,-0.4583333333333333],[125,97,70,-0.4583333333333333],[125,97,71,-0.4583333333333333],[125,97,72,-0.4583333333333333],[125,97,73,-0.4583333333333333],[125,97,74,-0.4583333333333333],[125,97,75,-0.4583333333333333],[125,97,76,-0.4583333333333333],[125,97,77,-0.4583333333333333],[125,97,78,-0.4583333333333333],[125,97,79,-0.4583333333333333],[125,98,64,-0.4583333333333333],[125,98,65,-0.4583333333333333],[125,98,66,-0.4583333333333333],[125,98,67,-0.4583333333333333],[125,98,68,-0.4583333333333333],[125,98,69,-0.4583333333333333],[125,98,70,-0.4583333333333333],[125,98,71,-0.4583333333333333],[125,98,72,-0.4583333333333333],[125,98,73,-0.4583333333333333],[125,98,74,-0.4583333333333333],[125,98,75,-0.4583333333333333],[125,98,76,-0.4583333333333333],[125,98,77,-0.4583333333333333],[125,98,78,-0.4583333333333333],[125,98,79,-0.4583333333333333],[125,99,64,-0.4583333333333333],[125,99,65,-0.4583333333333333],[125,99,66,-0.4583333333333333],[125,99,67,-0.4583333333333333],[125,99,68,-0.4583333333333333],[125,99,69,-0.4583333333333333],[125,99,70,-0.4583333333333333],[125,99,71,-0.4583333333333333],[125,99,72,-0.4583333333333333],[125,99,73,-0.4583333333333333],[125,99,74,-0.4583333333333333],[125,99,75,-0.4583333333333333],[125,99,76,-0.4583333333333333],[125,99,77,-0.4583333333333333],[125,99,78,-0.4583333333333333],[125,99,79,-0.4583333333333333],[125,100,64,-0.4583333333333333],[125,100,65,-0.4583333333333333],[125,100,66,-0.4583333333333333],[125,100,67,-0.4583333333333333],[125,100,68,-0.4583333333333333],[125,100,69,-0.4583333333333333],[125,100,70,-0.4583333333333333],[125,100,71,-0.4583333333333333],[125,100,72,-0.4583333333333333],[125,100,73,-0.4583333333333333],[125,100,74,-0.4583333333333333],[125,100,75,-0.4583333333333333],[125,100,76,-0.4583333333333333],[125,100,77,-0.4583333333333333],[125,100,78,-0.4583333333333333],[125,100,79,-0.4583333333333333],[125,101,64,-0.4583333333333333],[125,101,65,-0.4583333333333333],[125,101,66,-0.4583333333333333],[125,101,67,-0.4583333333333333],[125,101,68,-0.4583333333333333],[125,101,69,-0.4583333333333333],[125,101,70,-0.4583333333333333],[125,101,71,-0.4583333333333333],[125,101,72,-0.4583333333333333],[125,101,73,-0.4583333333333333],[125,101,74,-0.4583333333333333],[125,101,75,-0.4583333333333333],[125,101,76,-0.4583333333333333],[125,101,77,-0.4583333333333333],[125,101,78,-0.4583333333333333],[125,101,79,-0.4583333333333333],[125,102,64,-0.4583333333333333],[125,102,65,-0.4583333333333333],[125,102,66,-0.4583333333333333],[125,102,67,-0.4583333333333333],[125,102,68,-0.4583333333333333],[125,102,69,-0.4583333333333333],[125,102,70,-0.4583333333333333],[125,102,71,-0.4583333333333333],[125,102,72,-0.4583333333333333],[125,102,73,-0.4583333333333333],[125,102,74,-0.4583333333333333],[125,102,75,-0.4583333333333333],[125,102,76,-0.4583333333333333],[125,102,77,-0.4583333333333333],[125,102,78,-0.4583333333333333],[125,102,79,-0.4583333333333333],[125,103,64,-0.4583333333333333],[125,103,65,-0.4583333333333333],[125,103,66,-0.4583333333333333],[125,103,67,-0.4583333333333333],[125,103,68,-0.4583333333333333],[125,103,69,-0.4583333333333333],[125,103,70,-0.4583333333333333],[125,103,71,-0.4583333333333333],[125,103,72,-0.4583333333333333],[125,103,73,-0.4583333333333333],[125,103,74,-0.4583333333333333],[125,103,75,-0.4583333333333333],[125,103,76,-0.4583333333333333],[125,103,77,-0.4583333333333333],[125,103,78,-0.4583333333333333],[125,103,79,-0.4583333333333333],[125,104,64,-0.4583333333333333],[125,104,65,-0.4583333333333333],[125,104,66,-0.4583333333333333],[125,104,67,-0.4583333333333333],[125,104,68,-0.4583333333333333],[125,104,69,-0.4583333333333333],[125,104,70,-0.4583333333333333],[125,104,71,-0.4583333333333333],[125,104,72,-0.4583333333333333],[125,104,73,-0.4583333333333333],[125,104,74,-0.4583333333333333],[125,104,75,-0.4583333333333333],[125,104,76,-0.4583333333333333],[125,104,77,-0.4583333333333333],[125,104,78,-0.4583333333333333],[125,104,79,-0.4583333333333333],[125,105,64,-0.4583333333333333],[125,105,65,-0.4583333333333333],[125,105,66,-0.4583333333333333],[125,105,67,-0.4583333333333333],[125,105,68,-0.4583333333333333],[125,105,69,-0.4583333333333333],[125,105,70,-0.4583333333333333],[125,105,71,-0.4583333333333333],[125,105,72,-0.4583333333333333],[125,105,73,-0.4583333333333333],[125,105,74,-0.4583333333333333],[125,105,75,-0.4583333333333333],[125,105,76,-0.4583333333333333],[125,105,77,-0.4583333333333333],[125,105,78,-0.4583333333333333],[125,105,79,-0.4583333333333333],[125,106,64,-0.4583333333333333],[125,106,65,-0.4583333333333333],[125,106,66,-0.4583333333333333],[125,106,67,-0.4583333333333333],[125,106,68,-0.4583333333333333],[125,106,69,-0.4583333333333333],[125,106,70,-0.4583333333333333],[125,106,71,-0.4583333333333333],[125,106,72,-0.4583333333333333],[125,106,73,-0.4583333333333333],[125,106,74,-0.4583333333333333],[125,106,75,-0.4583333333333333],[125,106,76,-0.4583333333333333],[125,106,77,-0.4583333333333333],[125,106,78,-0.4583333333333333],[125,106,79,-0.4583333333333333],[125,107,64,-0.4583333333333333],[125,107,65,-0.4583333333333333],[125,107,66,-0.4583333333333333],[125,107,67,-0.4583333333333333],[125,107,68,-0.4583333333333333],[125,107,69,-0.4583333333333333],[125,107,70,-0.4583333333333333],[125,107,71,-0.4583333333333333],[125,107,72,-0.4583333333333333],[125,107,73,-0.4583333333333333],[125,107,74,-0.4583333333333333],[125,107,75,-0.4583333333333333],[125,107,76,-0.4583333333333333],[125,107,77,-0.4583333333333333],[125,107,78,-0.4583333333333333],[125,107,79,-0.4583333333333333],[125,108,64,-0.4583333333333333],[125,108,65,-0.4583333333333333],[125,108,66,-0.4583333333333333],[125,108,67,-0.4583333333333333],[125,108,68,-0.4583333333333333],[125,108,69,-0.4583333333333333],[125,108,70,-0.4583333333333333],[125,108,71,-0.4583333333333333],[125,108,72,-0.4583333333333333],[125,108,73,-0.4583333333333333],[125,108,74,-0.4583333333333333],[125,108,75,-0.4583333333333333],[125,108,76,-0.4583333333333333],[125,108,77,-0.4583333333333333],[125,108,78,-0.4583333333333333],[125,108,79,-0.4583333333333333],[125,109,64,-0.4583333333333333],[125,109,65,-0.4583333333333333],[125,109,66,-0.4583333333333333],[125,109,67,-0.4583333333333333],[125,109,68,-0.4583333333333333],[125,109,69,-0.4583333333333333],[125,109,70,-0.4583333333333333],[125,109,71,-0.4583333333333333],[125,109,72,-0.4583333333333333],[125,109,73,-0.4583333333333333],[125,109,74,-0.4583333333333333],[125,109,75,-0.4583333333333333],[125,109,76,-0.4583333333333333],[125,109,77,-0.4583333333333333],[125,109,78,-0.4583333333333333],[125,109,79,-0.4583333333333333],[125,110,64,-0.4583333333333333],[125,110,65,-0.4583333333333333],[125,110,66,-0.4583333333333333],[125,110,67,-0.4583333333333333],[125,110,68,-0.4583333333333333],[125,110,69,-0.4583333333333333],[125,110,70,-0.4583333333333333],[125,110,71,-0.4583333333333333],[125,110,72,-0.4583333333333333],[125,110,73,-0.4583333333333333],[125,110,74,-0.4583333333333333],[125,110,75,-0.4583333333333333],[125,110,76,-0.4583333333333333],[125,110,77,-0.4583333333333333],[125,110,78,-0.4583333333333333],[125,110,79,-0.4583333333333333],[125,111,64,-0.4583333333333333],[125,111,65,-0.4583333333333333],[125,111,66,-0.4583333333333333],[125,111,67,-0.4583333333333333],[125,111,68,-0.4583333333333333],[125,111,69,-0.4583333333333333],[125,111,70,-0.4583333333333333],[125,111,71,-0.4583333333333333],[125,111,72,-0.4583333333333333],[125,111,73,-0.4583333333333333],[125,111,74,-0.4583333333333333],[125,111,75,-0.4583333333333333],[125,111,76,-0.4583333333333333],[125,111,77,-0.4583333333333333],[125,111,78,-0.4583333333333333],[125,111,79,-0.4583333333333333],[125,112,64,-0.4583333333333333],[125,112,65,-0.4583333333333333],[125,112,66,-0.4583333333333333],[125,112,67,-0.4583333333333333],[125,112,68,-0.4583333333333333],[125,112,69,-0.4583333333333333],[125,112,70,-0.4583333333333333],[125,112,71,-0.4583333333333333],[125,112,72,-0.4583333333333333],[125,112,73,-0.4583333333333333],[125,112,74,-0.4583333333333333],[125,112,75,-0.4583333333333333],[125,112,76,-0.4583333333333333],[125,112,77,-0.4583333333333333],[125,112,78,-0.4583333333333333],[125,112,79,-0.4583333333333333],[125,113,64,-0.4583333333333333],[125,113,65,-0.4583333333333333],[125,113,66,-0.4583333333333333],[125,113,67,-0.4583333333333333],[125,113,68,-0.4583333333333333],[125,113,69,-0.4583333333333333],[125,113,70,-0.4583333333333333],[125,113,71,-0.4583333333333333],[125,113,72,-0.4583333333333333],[125,113,73,-0.4583333333333333],[125,113,74,-0.4583333333333333],[125,113,75,-0.4583333333333333],[125,113,76,-0.4583333333333333],[125,113,77,-0.4583333333333333],[125,113,78,-0.4583333333333333],[125,113,79,-0.4583333333333333],[125,114,64,-0.4583333333333333],[125,114,65,-0.4583333333333333],[125,114,66,-0.4583333333333333],[125,114,67,-0.4583333333333333],[125,114,68,-0.4583333333333333],[125,114,69,-0.4583333333333333],[125,114,70,-0.4583333333333333],[125,114,71,-0.4583333333333333],[125,114,72,-0.4583333333333333],[125,114,73,-0.4583333333333333],[125,114,74,-0.4583333333333333],[125,114,75,-0.4583333333333333],[125,114,76,-0.4583333333333333],[125,114,77,-0.4583333333333333],[125,114,78,-0.4583333333333333],[125,114,79,-0.4583333333333333],[125,115,64,-0.4583333333333333],[125,115,65,-0.4583333333333333],[125,115,66,-0.4583333333333333],[125,115,67,-0.4583333333333333],[125,115,68,-0.4583333333333333],[125,115,69,-0.4583333333333333],[125,115,70,-0.4583333333333333],[125,115,71,-0.4583333333333333],[125,115,72,-0.4583333333333333],[125,115,73,-0.4583333333333333],[125,115,74,-0.4583333333333333],[125,115,75,-0.4583333333333333],[125,115,76,-0.4583333333333333],[125,115,77,-0.4583333333333333],[125,115,78,-0.4583333333333333],[125,115,79,-0.4583333333333333],[125,116,64,-0.4583333333333333],[125,116,65,-0.4583333333333333],[125,116,66,-0.4583333333333333],[125,116,67,-0.4583333333333333],[125,116,68,-0.4583333333333333],[125,116,69,-0.4583333333333333],[125,116,70,-0.4583333333333333],[125,116,71,-0.4583333333333333],[125,116,72,-0.4583333333333333],[125,116,73,-0.4583333333333333],[125,116,74,-0.4583333333333333],[125,116,75,-0.4583333333333333],[125,116,76,-0.4583333333333333],[125,116,77,-0.4583333333333333],[125,116,78,-0.4583333333333333],[125,116,79,-0.4583333333333333],[125,117,64,-0.4583333333333333],[125,117,65,-0.4583333333333333],[125,117,66,-0.4583333333333333],[125,117,67,-0.4583333333333333],[125,117,68,-0.4583333333333333],[125,117,69,-0.4583333333333333],[125,117,70,-0.4583333333333333],[125,117,71,-0.4583333333333333],[125,117,72,-0.4583333333333333],[125,117,73,-0.4583333333333333],[125,117,74,-0.4583333333333333],[125,117,75,-0.4583333333333333],[125,117,76,-0.4583333333333333],[125,117,77,-0.4583333333333333],[125,117,78,-0.4583333333333333],[125,117,79,-0.4583333333333333],[125,118,64,-0.4583333333333333],[125,118,65,-0.4583333333333333],[125,118,66,-0.4583333333333333],[125,118,67,-0.4583333333333333],[125,118,68,-0.4583333333333333],[125,118,69,-0.4583333333333333],[125,118,70,-0.4583333333333333],[125,118,71,-0.4583333333333333],[125,118,72,-0.4583333333333333],[125,118,73,-0.4583333333333333],[125,118,74,-0.4583333333333333],[125,118,75,-0.4583333333333333],[125,118,76,-0.4583333333333333],[125,118,77,-0.4583333333333333],[125,118,78,-0.4583333333333333],[125,118,79,-0.4583333333333333],[125,119,64,-0.4583333333333333],[125,119,65,-0.4583333333333333],[125,119,66,-0.4583333333333333],[125,119,67,-0.4583333333333333],[125,119,68,-0.4583333333333333],[125,119,69,-0.4583333333333333],[125,119,70,-0.4583333333333333],[125,119,71,-0.4583333333333333],[125,119,72,-0.4583333333333333],[125,119,73,-0.4583333333333333],[125,119,74,-0.4583333333333333],[125,119,75,-0.4583333333333333],[125,119,76,-0.4583333333333333],[125,119,77,-0.4583333333333333],[125,119,78,-0.4583333333333333],[125,119,79,-0.4583333333333333],[125,120,64,-0.4583333333333333],[125,120,65,-0.4583333333333333],[125,120,66,-0.4583333333333333],[125,120,67,-0.4583333333333333],[125,120,68,-0.4583333333333333],[125,120,69,-0.4583333333333333],[125,120,70,-0.4583333333333333],[125,120,71,-0.4583333333333333],[125,120,72,-0.4583333333333333],[125,120,73,-0.4583333333333333],[125,120,74,-0.4583333333333333],[125,120,75,-0.4583333333333333],[125,120,76,-0.4583333333333333],[125,120,77,-0.4583333333333333],[125,120,78,-0.4583333333333333],[125,120,79,-0.4583333333333333],[125,121,64,-0.4583333333333333],[125,121,65,-0.4583333333333333],[125,121,66,-0.4583333333333333],[125,121,67,-0.4583333333333333],[125,121,68,-0.4583333333333333],[125,121,69,-0.4583333333333333],[125,121,70,-0.4583333333333333],[125,121,71,-0.4583333333333333],[125,121,72,-0.4583333333333333],[125,121,73,-0.4583333333333333],[125,121,74,-0.4583333333333333],[125,121,75,-0.4583333333333333],[125,121,76,-0.4583333333333333],[125,121,77,-0.4583333333333333],[125,121,78,-0.4583333333333333],[125,121,79,-0.4583333333333333],[125,122,64,-0.4583333333333333],[125,122,65,-0.4583333333333333],[125,122,66,-0.4583333333333333],[125,122,67,-0.4583333333333333],[125,122,68,-0.4583333333333333],[125,122,69,-0.4583333333333333],[125,122,70,-0.4583333333333333],[125,122,71,-0.4583333333333333],[125,122,72,-0.4583333333333333],[125,122,73,-0.4583333333333333],[125,122,74,-0.4583333333333333],[125,122,75,-0.4583333333333333],[125,122,76,-0.4583333333333333],[125,122,77,-0.4583333333333333],[125,122,78,-0.4583333333333333],[125,122,79,-0.4583333333333333],[125,123,64,-0.4583333333333333],[125,123,65,-0.4583333333333333],[125,123,66,-0.4583333333333333],[125,123,67,-0.4583333333333333],[125,123,68,-0.4583333333333333],[125,123,69,-0.4583333333333333],[125,123,70,-0.4583333333333333],[125,123,71,-0.4583333333333333],[125,123,72,-0.4583333333333333],[125,123,73,-0.4583333333333333],[125,123,74,-0.4583333333333333],[125,123,75,-0.4583333333333333],[125,123,76,-0.4583333333333333],[125,123,77,-0.4583333333333333],[125,123,78,-0.4583333333333333],[125,123,79,-0.4583333333333333],[125,124,64,-0.4583333333333333],[125,124,65,-0.4583333333333333],[125,124,66,-0.4583333333333333],[125,124,67,-0.4583333333333333],[125,124,68,-0.4583333333333333],[125,124,69,-0.4583333333333333],[125,124,70,-0.4583333333333333],[125,124,71,-0.4583333333333333],[125,124,72,-0.4583333333333333],[125,124,73,-0.4583333333333333],[125,124,74,-0.4583333333333333],[125,124,75,-0.4583333333333333],[125,124,76,-0.4583333333333333],[125,124,77,-0.4583333333333333],[125,124,78,-0.4583333333333333],[125,124,79,-0.4583333333333333],[125,125,64,-0.4583333333333333],[125,125,65,-0.4583333333333333],[125,125,66,-0.4583333333333333],[125,125,67,-0.4583333333333333],[125,125,68,-0.4583333333333333],[125,125,69,-0.4583333333333333],[125,125,70,-0.4583333333333333],[125,125,71,-0.4583333333333333],[125,125,72,-0.4583333333333333],[125,125,73,-0.4583333333333333],[125,125,74,-0.4583333333333333],[125,125,75,-0.4583333333333333],[125,125,76,-0.4583333333333333],[125,125,77,-0.4583333333333333],[125,125,78,-0.4583333333333333],[125,125,79,-0.4583333333333333],[125,126,64,-0.4583333333333333],[125,126,65,-0.4583333333333333],[125,126,66,-0.4583333333333333],[125,126,67,-0.4583333333333333],[125,126,68,-0.4583333333333333],[125,126,69,-0.4583333333333333],[125,126,70,-0.4583333333333333],[125,126,71,-0.4583333333333333],[125,126,72,-0.4583333333333333],[125,126,73,-0.4583333333333333],[125,126,74,-0.4583333333333333],[125,126,75,-0.4583333333333333],[125,126,76,-0.4583333333333333],[125,126,77,-0.4583333333333333],[125,126,78,-0.4583333333333333],[125,126,79,-0.4583333333333333],[125,127,64,-0.4583333333333333],[125,127,65,-0.4583333333333333],[125,127,66,-0.4583333333333333],[125,127,67,-0.4583333333333333],[125,127,68,-0.4583333333333333],[125,127,69,-0.4583333333333333],[125,127,70,-0.4583333333333333],[125,127,71,-0.4583333333333333],[125,127,72,-0.4583333333333333],[125,127,73,-0.4583333333333333],[125,127,74,-0.4583333333333333],[125,127,75,-0.4583333333333333],[125,127,76,-0.4583333333333333],[125,127,77,-0.4583333333333333],[125,127,78,-0.4583333333333333],[125,127,79,-0.4583333333333333],[125,128,64,-0.4583333333333333],[125,128,65,-0.4583333333333333],[125,128,66,-0.4583333333333333],[125,128,67,-0.4583333333333333],[125,128,68,-0.4583333333333333],[125,128,69,-0.4583333333333333],[125,128,70,-0.4583333333333333],[125,128,71,-0.4583333333333333],[125,128,72,-0.4583333333333333],[125,128,73,-0.4583333333333333],[125,128,74,-0.4583333333333333],[125,128,75,-0.4583333333333333],[125,128,76,-0.4583333333333333],[125,128,77,-0.4583333333333333],[125,128,78,-0.4583333333333333],[125,128,79,-0.4583333333333333],[125,129,64,-0.4583333333333333],[125,129,65,-0.4583333333333333],[125,129,66,-0.4583333333333333],[125,129,67,-0.4583333333333333],[125,129,68,-0.4583333333333333],[125,129,69,-0.4583333333333333],[125,129,70,-0.4583333333333333],[125,129,71,-0.4583333333333333],[125,129,72,-0.4583333333333333],[125,129,73,-0.4583333333333333],[125,129,74,-0.4583333333333333],[125,129,75,-0.4583333333333333],[125,129,76,-0.4583333333333333],[125,129,77,-0.4583333333333333],[125,129,78,-0.4583333333333333],[125,129,79,-0.4583333333333333],[125,130,64,-0.4583333333333333],[125,130,65,-0.4583333333333333],[125,130,66,-0.4583333333333333],[125,130,67,-0.4583333333333333],[125,130,68,-0.4583333333333333],[125,130,69,-0.4583333333333333],[125,130,70,-0.4583333333333333],[125,130,71,-0.4583333333333333],[125,130,72,-0.4583333333333333],[125,130,73,-0.4583333333333333],[125,130,74,-0.4583333333333333],[125,130,75,-0.4583333333333333],[125,130,76,-0.4583333333333333],[125,130,77,-0.4583333333333333],[125,130,78,-0.4583333333333333],[125,130,79,-0.4583333333333333],[125,131,64,-0.4583333333333333],[125,131,65,-0.4583333333333333],[125,131,66,-0.4583333333333333],[125,131,67,-0.4583333333333333],[125,131,68,-0.4583333333333333],[125,131,69,-0.4583333333333333],[125,131,70,-0.4583333333333333],[125,131,71,-0.4583333333333333],[125,131,72,-0.4583333333333333],[125,131,73,-0.4583333333333333],[125,131,74,-0.4583333333333333],[125,131,75,-0.4583333333333333],[125,131,76,-0.4583333333333333],[125,131,77,-0.4583333333333333],[125,131,78,-0.4583333333333333],[125,131,79,-0.4583333333333333],[125,132,64,-0.4583333333333333],[125,132,65,-0.4583333333333333],[125,132,66,-0.4583333333333333],[125,132,67,-0.4583333333333333],[125,132,68,-0.4583333333333333],[125,132,69,-0.4583333333333333],[125,132,70,-0.4583333333333333],[125,132,71,-0.4583333333333333],[125,132,72,-0.4583333333333333],[125,132,73,-0.4583333333333333],[125,132,74,-0.4583333333333333],[125,132,75,-0.4583333333333333],[125,132,76,-0.4583333333333333],[125,132,77,-0.4583333333333333],[125,132,78,-0.4583333333333333],[125,132,79,-0.4583333333333333],[125,133,64,-0.4583333333333333],[125,133,65,-0.4583333333333333],[125,133,66,-0.4583333333333333],[125,133,67,-0.4583333333333333],[125,133,68,-0.4583333333333333],[125,133,69,-0.4583333333333333],[125,133,70,-0.4583333333333333],[125,133,71,-0.4583333333333333],[125,133,72,-0.4583333333333333],[125,133,73,-0.4583333333333333],[125,133,74,-0.4583333333333333],[125,133,75,-0.4583333333333333],[125,133,76,-0.4583333333333333],[125,133,77,-0.4583333333333333],[125,133,78,-0.4583333333333333],[125,133,79,-0.4583333333333333],[125,134,64,-0.4583333333333333],[125,134,65,-0.4583333333333333],[125,134,66,-0.4583333333333333],[125,134,67,-0.4583333333333333],[125,134,68,-0.4583333333333333],[125,134,69,-0.4583333333333333],[125,134,70,-0.4583333333333333],[125,134,71,-0.4583333333333333],[125,134,72,-0.4583333333333333],[125,134,73,-0.4583333333333333],[125,134,74,-0.4583333333333333],[125,134,75,-0.4583333333333333],[125,134,76,-0.4583333333333333],[125,134,77,-0.4583333333333333],[125,134,78,-0.4583333333333333],[125,134,79,-0.4583333333333333],[125,135,64,-0.4583333333333333],[125,135,65,-0.4583333333333333],[125,135,66,-0.4583333333333333],[125,135,67,-0.4583333333333333],[125,135,68,-0.4583333333333333],[125,135,69,-0.4583333333333333],[125,135,70,-0.4583333333333333],[125,135,71,-0.4583333333333333],[125,135,72,-0.4583333333333333],[125,135,73,-0.4583333333333333],[125,135,74,-0.4583333333333333],[125,135,75,-0.4583333333333333],[125,135,76,-0.4583333333333333],[125,135,77,-0.4583333333333333],[125,135,78,-0.4583333333333333],[125,135,79,-0.4583333333333333],[125,136,64,-0.4583333333333333],[125,136,65,-0.4583333333333333],[125,136,66,-0.4583333333333333],[125,136,67,-0.4583333333333333],[125,136,68,-0.4583333333333333],[125,136,69,-0.4583333333333333],[125,136,70,-0.4583333333333333],[125,136,71,-0.4583333333333333],[125,136,72,-0.4583333333333333],[125,136,73,-0.4583333333333333],[125,136,74,-0.4583333333333333],[125,136,75,-0.4583333333333333],[125,136,76,-0.4583333333333333],[125,136,77,-0.4583333333333333],[125,136,78,-0.4583333333333333],[125,136,79,-0.4583333333333333],[125,137,64,-0.4583333333333333],[125,137,65,-0.4583333333333333],[125,137,66,-0.4583333333333333],[125,137,67,-0.4583333333333333],[125,137,68,-0.4583333333333333],[125,137,69,-0.4583333333333333],[125,137,70,-0.4583333333333333],[125,137,71,-0.4583333333333333],[125,137,72,-0.4583333333333333],[125,137,73,-0.4583333333333333],[125,137,74,-0.4583333333333333],[125,137,75,-0.4583333333333333],[125,137,76,-0.4583333333333333],[125,137,77,-0.4583333333333333],[125,137,78,-0.4583333333333333],[125,137,79,-0.4583333333333333],[125,138,64,-0.4583333333333333],[125,138,65,-0.4583333333333333],[125,138,66,-0.4583333333333333],[125,138,67,-0.4583333333333333],[125,138,68,-0.4583333333333333],[125,138,69,-0.4583333333333333],[125,138,70,-0.4583333333333333],[125,138,71,-0.4583333333333333],[125,138,72,-0.4583333333333333],[125,138,73,-0.4583333333333333],[125,138,74,-0.4583333333333333],[125,138,75,-0.4583333333333333],[125,138,76,-0.4583333333333333],[125,138,77,-0.4583333333333333],[125,138,78,-0.4583333333333333],[125,138,79,-0.4583333333333333],[125,139,64,-0.4583333333333333],[125,139,65,-0.4583333333333333],[125,139,66,-0.4583333333333333],[125,139,67,-0.4583333333333333],[125,139,68,-0.4583333333333333],[125,139,69,-0.4583333333333333],[125,139,70,-0.4583333333333333],[125,139,71,-0.4583333333333333],[125,139,72,-0.4583333333333333],[125,139,73,-0.4583333333333333],[125,139,74,-0.4583333333333333],[125,139,75,-0.4583333333333333],[125,139,76,-0.4583333333333333],[125,139,77,-0.4583333333333333],[125,139,78,-0.4583333333333333],[125,139,79,-0.4583333333333333],[125,140,64,-0.4583333333333333],[125,140,65,-0.4583333333333333],[125,140,66,-0.4583333333333333],[125,140,67,-0.4583333333333333],[125,140,68,-0.4583333333333333],[125,140,69,-0.4583333333333333],[125,140,70,-0.4583333333333333],[125,140,71,-0.4583333333333333],[125,140,72,-0.4583333333333333],[125,140,73,-0.4583333333333333],[125,140,74,-0.4583333333333333],[125,140,75,-0.4583333333333333],[125,140,76,-0.4583333333333333],[125,140,77,-0.4583333333333333],[125,140,78,-0.4583333333333333],[125,140,79,-0.4583333333333333],[125,141,64,-0.4583333333333333],[125,141,65,-0.4583333333333333],[125,141,66,-0.4583333333333333],[125,141,67,-0.4583333333333333],[125,141,68,-0.4583333333333333],[125,141,69,-0.4583333333333333],[125,141,70,-0.4583333333333333],[125,141,71,-0.4583333333333333],[125,141,72,-0.4583333333333333],[125,141,73,-0.4583333333333333],[125,141,74,-0.4583333333333333],[125,141,75,-0.4583333333333333],[125,141,76,-0.4583333333333333],[125,141,77,-0.4583333333333333],[125,141,78,-0.4583333333333333],[125,141,79,-0.4583333333333333],[125,142,64,-0.4583333333333333],[125,142,65,-0.4583333333333333],[125,142,66,-0.4583333333333333],[125,142,67,-0.4583333333333333],[125,142,68,-0.4583333333333333],[125,142,69,-0.4583333333333333],[125,142,70,-0.4583333333333333],[125,142,71,-0.4583333333333333],[125,142,72,-0.4583333333333333],[125,142,73,-0.4583333333333333],[125,142,74,-0.4583333333333333],[125,142,75,-0.4583333333333333],[125,142,76,-0.4583333333333333],[125,142,77,-0.4583333333333333],[125,142,78,-0.4583333333333333],[125,142,79,-0.4583333333333333],[125,143,64,-0.4583333333333333],[125,143,65,-0.4583333333333333],[125,143,66,-0.4583333333333333],[125,143,67,-0.4583333333333333],[125,143,68,-0.4583333333333333],[125,143,69,-0.4583333333333333],[125,143,70,-0.4583333333333333],[125,143,71,-0.4583333333333333],[125,143,72,-0.4583333333333333],[125,143,73,-0.4583333333333333],[125,143,74,-0.4583333333333333],[125,143,75,-0.4583333333333333],[125,143,76,-0.4583333333333333],[125,143,77,-0.4583333333333333],[125,143,78,-0.4583333333333333],[125,143,79,-0.4583333333333333],[125,144,64,-0.4583333333333333],[125,144,65,-0.4583333333333333],[125,144,66,-0.4583333333333333],[125,144,67,-0.4583333333333333],[125,144,68,-0.4583333333333333],[125,144,69,-0.4583333333333333],[125,144,70,-0.4583333333333333],[125,144,71,-0.4583333333333333],[125,144,72,-0.4583333333333333],[125,144,73,-0.4583333333333333],[125,144,74,-0.4583333333333333],[125,144,75,-0.4583333333333333],[125,144,76,-0.4583333333333333],[125,144,77,-0.4583333333333333],[125,144,78,-0.4583333333333333],[125,144,79,-0.4583333333333333],[125,145,64,-0.4583333333333333],[125,145,65,-0.4583333333333333],[125,145,66,-0.4583333333333333],[125,145,67,-0.4583333333333333],[125,145,68,-0.4583333333333333],[125,145,69,-0.4583333333333333],[125,145,70,-0.4583333333333333],[125,145,71,-0.4583333333333333],[125,145,72,-0.4583333333333333],[125,145,73,-0.4583333333333333],[125,145,74,-0.4583333333333333],[125,145,75,-0.4583333333333333],[125,145,76,-0.4583333333333333],[125,145,77,-0.4583333333333333],[125,145,78,-0.4583333333333333],[125,145,79,-0.4583333333333333],[125,146,64,-0.4583333333333333],[125,146,65,-0.4583333333333333],[125,146,66,-0.4583333333333333],[125,146,67,-0.4583333333333333],[125,146,68,-0.4583333333333333],[125,146,69,-0.4583333333333333],[125,146,70,-0.4583333333333333],[125,146,71,-0.4583333333333333],[125,146,72,-0.4583333333333333],[125,146,73,-0.4583333333333333],[125,146,74,-0.4583333333333333],[125,146,75,-0.4583333333333333],[125,146,76,-0.4583333333333333],[125,146,77,-0.4583333333333333],[125,146,78,-0.4583333333333333],[125,146,79,-0.4583333333333333],[125,147,64,-0.4583333333333333],[125,147,65,-0.4583333333333333],[125,147,66,-0.4583333333333333],[125,147,67,-0.4583333333333333],[125,147,68,-0.4583333333333333],[125,147,69,-0.4583333333333333],[125,147,70,-0.4583333333333333],[125,147,71,-0.4583333333333333],[125,147,72,-0.4583333333333333],[125,147,73,-0.4583333333333333],[125,147,74,-0.4583333333333333],[125,147,75,-0.4583333333333333],[125,147,76,-0.4583333333333333],[125,147,77,-0.4583333333333333],[125,147,78,-0.4583333333333333],[125,147,79,-0.4583333333333333],[125,148,64,-0.4583333333333333],[125,148,65,-0.4583333333333333],[125,148,66,-0.4583333333333333],[125,148,67,-0.4583333333333333],[125,148,68,-0.4583333333333333],[125,148,69,-0.4583333333333333],[125,148,70,-0.4583333333333333],[125,148,71,-0.4583333333333333],[125,148,72,-0.4583333333333333],[125,148,73,-0.4583333333333333],[125,148,74,-0.4583333333333333],[125,148,75,-0.4583333333333333],[125,148,76,-0.4583333333333333],[125,148,77,-0.4583333333333333],[125,148,78,-0.4583333333333333],[125,148,79,-0.4583333333333333],[125,149,64,-0.4583333333333333],[125,149,65,-0.4583333333333333],[125,149,66,-0.4583333333333333],[125,149,67,-0.4583333333333333],[125,149,68,-0.4583333333333333],[125,149,69,-0.4583333333333333],[125,149,70,-0.4583333333333333],[125,149,71,-0.4583333333333333],[125,149,72,-0.4583333333333333],[125,149,73,-0.4583333333333333],[125,149,74,-0.4583333333333333],[125,149,75,-0.4583333333333333],[125,149,76,-0.4583333333333333],[125,149,77,-0.4583333333333333],[125,149,78,-0.4583333333333333],[125,149,79,-0.4583333333333333],[125,150,64,-0.4583333333333333],[125,150,65,-0.4583333333333333],[125,150,66,-0.4583333333333333],[125,150,67,-0.4583333333333333],[125,150,68,-0.4583333333333333],[125,150,69,-0.4583333333333333],[125,150,70,-0.4583333333333333],[125,150,71,-0.4583333333333333],[125,150,72,-0.4583333333333333],[125,150,73,-0.4583333333333333],[125,150,74,-0.4583333333333333],[125,150,75,-0.4583333333333333],[125,150,76,-0.4583333333333333],[125,150,77,-0.4583333333333333],[125,150,78,-0.4583333333333333],[125,150,79,-0.4583333333333333],[125,151,64,-0.4583333333333333],[125,151,65,-0.4583333333333333],[125,151,66,-0.4583333333333333],[125,151,67,-0.4583333333333333],[125,151,68,-0.4583333333333333],[125,151,69,-0.4583333333333333],[125,151,70,-0.4583333333333333],[125,151,71,-0.4583333333333333],[125,151,72,-0.4583333333333333],[125,151,73,-0.4583333333333333],[125,151,74,-0.4583333333333333],[125,151,75,-0.4583333333333333],[125,151,76,-0.4583333333333333],[125,151,77,-0.4583333333333333],[125,151,78,-0.4583333333333333],[125,151,79,-0.4583333333333333],[125,152,64,-0.4583333333333333],[125,152,65,-0.4583333333333333],[125,152,66,-0.4583333333333333],[125,152,67,-0.4583333333333333],[125,152,68,-0.4583333333333333],[125,152,69,-0.4583333333333333],[125,152,70,-0.4583333333333333],[125,152,71,-0.4583333333333333],[125,152,72,-0.4583333333333333],[125,152,73,-0.4583333333333333],[125,152,74,-0.4583333333333333],[125,152,75,-0.4583333333333333],[125,152,76,-0.4583333333333333],[125,152,77,-0.4583333333333333],[125,152,78,-0.4583333333333333],[125,152,79,-0.4583333333333333],[125,153,64,-0.4583333333333333],[125,153,65,-0.4583333333333333],[125,153,66,-0.4583333333333333],[125,153,67,-0.4583333333333333],[125,153,68,-0.4583333333333333],[125,153,69,-0.4583333333333333],[125,153,70,-0.4583333333333333],[125,153,71,-0.4583333333333333],[125,153,72,-0.4583333333333333],[125,153,73,-0.4583333333333333],[125,153,74,-0.4583333333333333],[125,153,75,-0.4583333333333333],[125,153,76,-0.4583333333333333],[125,153,77,-0.4583333333333333],[125,153,78,-0.4583333333333333],[125,153,79,-0.4583333333333333],[125,154,64,-0.4583333333333333],[125,154,65,-0.4583333333333333],[125,154,66,-0.4583333333333333],[125,154,67,-0.4583333333333333],[125,154,68,-0.4583333333333333],[125,154,69,-0.4583333333333333],[125,154,70,-0.4583333333333333],[125,154,71,-0.4583333333333333],[125,154,72,-0.4583333333333333],[125,154,73,-0.4583333333333333],[125,154,74,-0.4583333333333333],[125,154,75,-0.4583333333333333],[125,154,76,-0.4583333333333333],[125,154,77,-0.4583333333333333],[125,154,78,-0.4583333333333333],[125,154,79,-0.4583333333333333],[125,155,64,-0.4583333333333333],[125,155,65,-0.4583333333333333],[125,155,66,-0.4583333333333333],[125,155,67,-0.4583333333333333],[125,155,68,-0.4583333333333333],[125,155,69,-0.4583333333333333],[125,155,70,-0.4583333333333333],[125,155,71,-0.4583333333333333],[125,155,72,-0.4583333333333333],[125,155,73,-0.4583333333333333],[125,155,74,-0.4583333333333333],[125,155,75,-0.4583333333333333],[125,155,76,-0.4583333333333333],[125,155,77,-0.4583333333333333],[125,155,78,-0.4583333333333333],[125,155,79,-0.4583333333333333],[125,156,64,-0.4583333333333333],[125,156,65,-0.4583333333333333],[125,156,66,-0.4583333333333333],[125,156,67,-0.4583333333333333],[125,156,68,-0.4583333333333333],[125,156,69,-0.4583333333333333],[125,156,70,-0.4583333333333333],[125,156,71,-0.4583333333333333],[125,156,72,-0.4583333333333333],[125,156,73,-0.4583333333333333],[125,156,74,-0.4583333333333333],[125,156,75,-0.4583333333333333],[125,156,76,-0.4583333333333333],[125,156,77,-0.4583333333333333],[125,156,78,-0.4583333333333333],[125,156,79,-0.4583333333333333],[125,157,64,-0.4583333333333333],[125,157,65,-0.4583333333333333],[125,157,66,-0.4583333333333333],[125,157,67,-0.4583333333333333],[125,157,68,-0.4583333333333333],[125,157,69,-0.4583333333333333],[125,157,70,-0.4583333333333333],[125,157,71,-0.4583333333333333],[125,157,72,-0.4583333333333333],[125,157,73,-0.4583333333333333],[125,157,74,-0.4583333333333333],[125,157,75,-0.4583333333333333],[125,157,76,-0.4583333333333333],[125,157,77,-0.4583333333333333],[125,157,78,-0.4583333333333333],[125,157,79,-0.4583333333333333],[125,158,64,-0.4583333333333333],[125,158,65,-0.4583333333333333],[125,158,66,-0.4583333333333333],[125,158,67,-0.4583333333333333],[125,158,68,-0.4583333333333333],[125,158,69,-0.4583333333333333],[125,158,70,-0.4583333333333333],[125,158,71,-0.4583333333333333],[125,158,72,-0.4583333333333333],[125,158,73,-0.4583333333333333],[125,158,74,-0.4583333333333333],[125,158,75,-0.4583333333333333],[125,158,76,-0.4583333333333333],[125,158,77,-0.4583333333333333],[125,158,78,-0.4583333333333333],[125,158,79,-0.4583333333333333],[125,159,64,-0.4583333333333333],[125,159,65,-0.4583333333333333],[125,159,66,-0.4583333333333333],[125,159,67,-0.4583333333333333],[125,159,68,-0.4583333333333333],[125,159,69,-0.4583333333333333],[125,159,70,-0.4583333333333333],[125,159,71,-0.4583333333333333],[125,159,72,-0.4583333333333333],[125,159,73,-0.4583333333333333],[125,159,74,-0.4583333333333333],[125,159,75,-0.4583333333333333],[125,159,76,-0.4583333333333333],[125,159,77,-0.4583333333333333],[125,159,78,-0.4583333333333333],[125,159,79,-0.4583333333333333],[125,160,64,-0.4583333333333333],[125,160,65,-0.4583333333333333],[125,160,66,-0.4583333333333333],[125,160,67,-0.4583333333333333],[125,160,68,-0.4583333333333333],[125,160,69,-0.4583333333333333],[125,160,70,-0.4583333333333333],[125,160,71,-0.4583333333333333],[125,160,72,-0.4583333333333333],[125,160,73,-0.4583333333333333],[125,160,74,-0.4583333333333333],[125,160,75,-0.4583333333333333],[125,160,76,-0.4583333333333333],[125,160,77,-0.4583333333333333],[125,160,78,-0.4583333333333333],[125,160,79,-0.4583333333333333],[125,161,64,-0.4583333333333333],[125,161,65,-0.4583333333333333],[125,161,66,-0.4583333333333333],[125,161,67,-0.4583333333333333],[125,161,68,-0.4583333333333333],[125,161,69,-0.4583333333333333],[125,161,70,-0.4583333333333333],[125,161,71,-0.4583333333333333],[125,161,72,-0.4583333333333333],[125,161,73,-0.4583333333333333],[125,161,74,-0.4583333333333333],[125,161,75,-0.4583333333333333],[125,161,76,-0.4583333333333333],[125,161,77,-0.4583333333333333],[125,161,78,-0.4583333333333333],[125,161,79,-0.4583333333333333],[125,162,64,-0.4583333333333333],[125,162,65,-0.4583333333333333],[125,162,66,-0.4583333333333333],[125,162,67,-0.4583333333333333],[125,162,68,-0.4583333333333333],[125,162,69,-0.4583333333333333],[125,162,70,-0.4583333333333333],[125,162,71,-0.4583333333333333],[125,162,72,-0.4583333333333333],[125,162,73,-0.4583333333333333],[125,162,74,-0.4583333333333333],[125,162,75,-0.4583333333333333],[125,162,76,-0.4583333333333333],[125,162,77,-0.4583333333333333],[125,162,78,-0.4583333333333333],[125,162,79,-0.4583333333333333],[125,163,64,-0.4583333333333333],[125,163,65,-0.4583333333333333],[125,163,66,-0.4583333333333333],[125,163,67,-0.4583333333333333],[125,163,68,-0.4583333333333333],[125,163,69,-0.4583333333333333],[125,163,70,-0.4583333333333333],[125,163,71,-0.4583333333333333],[125,163,72,-0.4583333333333333],[125,163,73,-0.4583333333333333],[125,163,74,-0.4583333333333333],[125,163,75,-0.4583333333333333],[125,163,76,-0.4583333333333333],[125,163,77,-0.4583333333333333],[125,163,78,-0.4583333333333333],[125,163,79,-0.4583333333333333],[125,164,64,-0.4583333333333333],[125,164,65,-0.4583333333333333],[125,164,66,-0.4583333333333333],[125,164,67,-0.4583333333333333],[125,164,68,-0.4583333333333333],[125,164,69,-0.4583333333333333],[125,164,70,-0.4583333333333333],[125,164,71,-0.4583333333333333],[125,164,72,-0.4583333333333333],[125,164,73,-0.4583333333333333],[125,164,74,-0.4583333333333333],[125,164,75,-0.4583333333333333],[125,164,76,-0.4583333333333333],[125,164,77,-0.4583333333333333],[125,164,78,-0.4583333333333333],[125,164,79,-0.4583333333333333],[125,165,64,-0.4583333333333333],[125,165,65,-0.4583333333333333],[125,165,66,-0.4583333333333333],[125,165,67,-0.4583333333333333],[125,165,68,-0.4583333333333333],[125,165,69,-0.4583333333333333],[125,165,70,-0.4583333333333333],[125,165,71,-0.4583333333333333],[125,165,72,-0.4583333333333333],[125,165,73,-0.4583333333333333],[125,165,74,-0.4583333333333333],[125,165,75,-0.4583333333333333],[125,165,76,-0.4583333333333333],[125,165,77,-0.4583333333333333],[125,165,78,-0.4583333333333333],[125,165,79,-0.4583333333333333],[125,166,64,-0.4583333333333333],[125,166,65,-0.4583333333333333],[125,166,66,-0.4583333333333333],[125,166,67,-0.4583333333333333],[125,166,68,-0.4583333333333333],[125,166,69,-0.4583333333333333],[125,166,70,-0.4583333333333333],[125,166,71,-0.4583333333333333],[125,166,72,-0.4583333333333333],[125,166,73,-0.4583333333333333],[125,166,74,-0.4583333333333333],[125,166,75,-0.4583333333333333],[125,166,76,-0.4583333333333333],[125,166,77,-0.4583333333333333],[125,166,78,-0.4583333333333333],[125,166,79,-0.4583333333333333],[125,167,64,-0.4583333333333333],[125,167,65,-0.4583333333333333],[125,167,66,-0.4583333333333333],[125,167,67,-0.4583333333333333],[125,167,68,-0.4583333333333333],[125,167,69,-0.4583333333333333],[125,167,70,-0.4583333333333333],[125,167,71,-0.4583333333333333],[125,167,72,-0.4583333333333333],[125,167,73,-0.4583333333333333],[125,167,74,-0.4583333333333333],[125,167,75,-0.4583333333333333],[125,167,76,-0.4583333333333333],[125,167,77,-0.4583333333333333],[125,167,78,-0.4583333333333333],[125,167,79,-0.4583333333333333],[125,168,64,-0.4583333333333333],[125,168,65,-0.4583333333333333],[125,168,66,-0.4583333333333333],[125,168,67,-0.4583333333333333],[125,168,68,-0.4583333333333333],[125,168,69,-0.4583333333333333],[125,168,70,-0.4583333333333333],[125,168,71,-0.4583333333333333],[125,168,72,-0.4583333333333333],[125,168,73,-0.4583333333333333],[125,168,74,-0.4583333333333333],[125,168,75,-0.4583333333333333],[125,168,76,-0.4583333333333333],[125,168,77,-0.4583333333333333],[125,168,78,-0.4583333333333333],[125,168,79,-0.4583333333333333],[125,169,64,-0.4583333333333333],[125,169,65,-0.4583333333333333],[125,169,66,-0.4583333333333333],[125,169,67,-0.4583333333333333],[125,169,68,-0.4583333333333333],[125,169,69,-0.4583333333333333],[125,169,70,-0.4583333333333333],[125,169,71,-0.4583333333333333],[125,169,72,-0.4583333333333333],[125,169,73,-0.4583333333333333],[125,169,74,-0.4583333333333333],[125,169,75,-0.4583333333333333],[125,169,76,-0.4583333333333333],[125,169,77,-0.4583333333333333],[125,169,78,-0.4583333333333333],[125,169,79,-0.4583333333333333],[125,170,64,-0.4583333333333333],[125,170,65,-0.4583333333333333],[125,170,66,-0.4583333333333333],[125,170,67,-0.4583333333333333],[125,170,68,-0.4583333333333333],[125,170,69,-0.4583333333333333],[125,170,70,-0.4583333333333333],[125,170,71,-0.4583333333333333],[125,170,72,-0.4583333333333333],[125,170,73,-0.4583333333333333],[125,170,74,-0.4583333333333333],[125,170,75,-0.4583333333333333],[125,170,76,-0.4583333333333333],[125,170,77,-0.4583333333333333],[125,170,78,-0.4583333333333333],[125,170,79,-0.4583333333333333],[125,171,64,-0.4583333333333333],[125,171,65,-0.4583333333333333],[125,171,66,-0.4583333333333333],[125,171,67,-0.4583333333333333],[125,171,68,-0.4583333333333333],[125,171,69,-0.4583333333333333],[125,171,70,-0.4583333333333333],[125,171,71,-0.4583333333333333],[125,171,72,-0.4583333333333333],[125,171,73,-0.4583333333333333],[125,171,74,-0.4583333333333333],[125,171,75,-0.4583333333333333],[125,171,76,-0.4583333333333333],[125,171,77,-0.4583333333333333],[125,171,78,-0.4583333333333333],[125,171,79,-0.4583333333333333],[125,172,64,-0.4583333333333333],[125,172,65,-0.4583333333333333],[125,172,66,-0.4583333333333333],[125,172,67,-0.4583333333333333],[125,172,68,-0.4583333333333333],[125,172,69,-0.4583333333333333],[125,172,70,-0.4583333333333333],[125,172,71,-0.4583333333333333],[125,172,72,-0.4583333333333333],[125,172,73,-0.4583333333333333],[125,172,74,-0.4583333333333333],[125,172,75,-0.4583333333333333],[125,172,76,-0.4583333333333333],[125,172,77,-0.4583333333333333],[125,172,78,-0.4583333333333333],[125,172,79,-0.4583333333333333],[125,173,64,-0.4583333333333333],[125,173,65,-0.4583333333333333],[125,173,66,-0.4583333333333333],[125,173,67,-0.4583333333333333],[125,173,68,-0.4583333333333333],[125,173,69,-0.4583333333333333],[125,173,70,-0.4583333333333333],[125,173,71,-0.4583333333333333],[125,173,72,-0.4583333333333333],[125,173,73,-0.4583333333333333],[125,173,74,-0.4583333333333333],[125,173,75,-0.4583333333333333],[125,173,76,-0.4583333333333333],[125,173,77,-0.4583333333333333],[125,173,78,-0.4583333333333333],[125,173,79,-0.4583333333333333],[125,174,64,-0.4583333333333333],[125,174,65,-0.4583333333333333],[125,174,66,-0.4583333333333333],[125,174,67,-0.4583333333333333],[125,174,68,-0.4583333333333333],[125,174,69,-0.4583333333333333],[125,174,70,-0.4583333333333333],[125,174,71,-0.4583333333333333],[125,174,72,-0.4583333333333333],[125,174,73,-0.4583333333333333],[125,174,74,-0.4583333333333333],[125,174,75,-0.4583333333333333],[125,174,76,-0.4583333333333333],[125,174,77,-0.4583333333333333],[125,174,78,-0.4583333333333333],[125,174,79,-0.4583333333333333],[125,175,64,-0.4583333333333333],[125,175,65,-0.4583333333333333],[125,175,66,-0.4583333333333333],[125,175,67,-0.4583333333333333],[125,175,68,-0.4583333333333333],[125,175,69,-0.4583333333333333],[125,175,70,-0.4583333333333333],[125,175,71,-0.4583333333333333],[125,175,72,-0.4583333333333333],[125,175,73,-0.4583333333333333],[125,175,74,-0.4583333333333333],[125,175,75,-0.4583333333333333],[125,175,76,-0.4583333333333333],[125,175,77,-0.4583333333333333],[125,175,78,-0.4583333333333333],[125,175,79,-0.4583333333333333],[125,176,64,-0.4583333333333333],[125,176,65,-0.4583333333333333],[125,176,66,-0.4583333333333333],[125,176,67,-0.4583333333333333],[125,176,68,-0.4583333333333333],[125,176,69,-0.4583333333333333],[125,176,70,-0.4583333333333333],[125,176,71,-0.4583333333333333],[125,176,72,-0.4583333333333333],[125,176,73,-0.4583333333333333],[125,176,74,-0.4583333333333333],[125,176,75,-0.4583333333333333],[125,176,76,-0.4583333333333333],[125,176,77,-0.4583333333333333],[125,176,78,-0.4583333333333333],[125,176,79,-0.4583333333333333],[125,177,64,-0.4583333333333333],[125,177,65,-0.4583333333333333],[125,177,66,-0.4583333333333333],[125,177,67,-0.4583333333333333],[125,177,68,-0.4583333333333333],[125,177,69,-0.4583333333333333],[125,177,70,-0.4583333333333333],[125,177,71,-0.4583333333333333],[125,177,72,-0.4583333333333333],[125,177,73,-0.4583333333333333],[125,177,74,-0.4583333333333333],[125,177,75,-0.4583333333333333],[125,177,76,-0.4583333333333333],[125,177,77,-0.4583333333333333],[125,177,78,-0.4583333333333333],[125,177,79,-0.4583333333333333],[125,178,64,-0.4583333333333333],[125,178,65,-0.4583333333333333],[125,178,66,-0.4583333333333333],[125,178,67,-0.4583333333333333],[125,178,68,-0.4583333333333333],[125,178,69,-0.4583333333333333],[125,178,70,-0.4583333333333333],[125,178,71,-0.4583333333333333],[125,178,72,-0.4583333333333333],[125,178,73,-0.4583333333333333],[125,178,74,-0.4583333333333333],[125,178,75,-0.4583333333333333],[125,178,76,-0.4583333333333333],[125,178,77,-0.4583333333333333],[125,178,78,-0.4583333333333333],[125,178,79,-0.4583333333333333],[125,179,64,-0.4583333333333333],[125,179,65,-0.4583333333333333],[125,179,66,-0.4583333333333333],[125,179,67,-0.4583333333333333],[125,179,68,-0.4583333333333333],[125,179,69,-0.4583333333333333],[125,179,70,-0.4583333333333333],[125,179,71,-0.4583333333333333],[125,179,72,-0.4583333333333333],[125,179,73,-0.4583333333333333],[125,179,74,-0.4583333333333333],[125,179,75,-0.4583333333333333],[125,179,76,-0.4583333333333333],[125,179,77,-0.4583333333333333],[125,179,78,-0.4583333333333333],[125,179,79,-0.4583333333333333],[125,180,64,-0.4583333333333333],[125,180,65,-0.4583333333333333],[125,180,66,-0.4583333333333333],[125,180,67,-0.4583333333333333],[125,180,68,-0.4583333333333333],[125,180,69,-0.4583333333333333],[125,180,70,-0.4583333333333333],[125,180,71,-0.4583333333333333],[125,180,72,-0.4583333333333333],[125,180,73,-0.4583333333333333],[125,180,74,-0.4583333333333333],[125,180,75,-0.4583333333333333],[125,180,76,-0.4583333333333333],[125,180,77,-0.4583333333333333],[125,180,78,-0.4583333333333333],[125,180,79,-0.4583333333333333],[125,181,64,-0.4583333333333333],[125,181,65,-0.4583333333333333],[125,181,66,-0.4583333333333333],[125,181,67,-0.4583333333333333],[125,181,68,-0.4583333333333333],[125,181,69,-0.4583333333333333],[125,181,70,-0.4583333333333333],[125,181,71,-0.4583333333333333],[125,181,72,-0.4583333333333333],[125,181,73,-0.4583333333333333],[125,181,74,-0.4583333333333333],[125,181,75,-0.4583333333333333],[125,181,76,-0.4583333333333333],[125,181,77,-0.4583333333333333],[125,181,78,-0.4583333333333333],[125,181,79,-0.4583333333333333],[125,182,64,-0.4583333333333333],[125,182,65,-0.4583333333333333],[125,182,66,-0.4583333333333333],[125,182,67,-0.4583333333333333],[125,182,68,-0.4583333333333333],[125,182,69,-0.4583333333333333],[125,182,70,-0.4583333333333333],[125,182,71,-0.4583333333333333],[125,182,72,-0.4583333333333333],[125,182,73,-0.4583333333333333],[125,182,74,-0.4583333333333333],[125,182,75,-0.4583333333333333],[125,182,76,-0.4583333333333333],[125,182,77,-0.4583333333333333],[125,182,78,-0.4583333333333333],[125,182,79,-0.4583333333333333],[125,183,64,-0.4583333333333333],[125,183,65,-0.4583333333333333],[125,183,66,-0.4583333333333333],[125,183,67,-0.4583333333333333],[125,183,68,-0.4583333333333333],[125,183,69,-0.4583333333333333],[125,183,70,-0.4583333333333333],[125,183,71,-0.4583333333333333],[125,183,72,-0.4583333333333333],[125,183,73,-0.4583333333333333],[125,183,74,-0.4583333333333333],[125,183,75,-0.4583333333333333],[125,183,76,-0.4583333333333333],[125,183,77,-0.4583333333333333],[125,183,78,-0.4583333333333333],[125,183,79,-0.4583333333333333],[125,184,64,-0.4583333333333333],[125,184,65,-0.4583333333333333],[125,184,66,-0.4583333333333333],[125,184,67,-0.4583333333333333],[125,184,68,-0.4583333333333333],[125,184,69,-0.4583333333333333],[125,184,70,-0.4583333333333333],[125,184,71,-0.4583333333333333],[125,184,72,-0.4583333333333333],[125,184,73,-0.4583333333333333],[125,184,74,-0.4583333333333333],[125,184,75,-0.4583333333333333],[125,184,76,-0.4583333333333333],[125,184,77,-0.4583333333333333],[125,184,78,-0.4583333333333333],[125,184,79,-0.4583333333333333],[125,185,64,-0.4583333333333333],[125,185,65,-0.4583333333333333],[125,185,66,-0.4583333333333333],[125,185,67,-0.4583333333333333],[125,185,68,-0.4583333333333333],[125,185,69,-0.4583333333333333],[125,185,70,-0.4583333333333333],[125,185,71,-0.4583333333333333],[125,185,72,-0.4583333333333333],[125,185,73,-0.4583333333333333],[125,185,74,-0.4583333333333333],[125,185,75,-0.4583333333333333],[125,185,76,-0.4583333333333333],[125,185,77,-0.4583333333333333],[125,185,78,-0.4583333333333333],[125,185,79,-0.4583333333333333],[125,186,64,-0.4583333333333333],[125,186,65,-0.4583333333333333],[125,186,66,-0.4583333333333333],[125,186,67,-0.4583333333333333],[125,186,68,-0.4583333333333333],[125,186,69,-0.4583333333333333],[125,186,70,-0.4583333333333333],[125,186,71,-0.4583333333333333],[125,186,72,-0.4583333333333333],[125,186,73,-0.4583333333333333],[125,186,74,-0.4583333333333333],[125,186,75,-0.4583333333333333],[125,186,76,-0.4583333333333333],[125,186,77,-0.4583333333333333],[125,186,78,-0.4583333333333333],[125,186,79,-0.4583333333333333],[125,187,64,-0.4583333333333333],[125,187,65,-0.4583333333333333],[125,187,66,-0.4583333333333333],[125,187,67,-0.4583333333333333],[125,187,68,-0.4583333333333333],[125,187,69,-0.4583333333333333],[125,187,70,-0.4583333333333333],[125,187,71,-0.4583333333333333],[125,187,72,-0.4583333333333333],[125,187,73,-0.4583333333333333],[125,187,74,-0.4583333333333333],[125,187,75,-0.4583333333333333],[125,187,76,-0.4583333333333333],[125,187,77,-0.4583333333333333],[125,187,78,-0.4583333333333333],[125,187,79,-0.4583333333333333],[125,188,64,-0.4583333333333333],[125,188,65,-0.4583333333333333],[125,188,66,-0.4583333333333333],[125,188,67,-0.4583333333333333],[125,188,68,-0.4583333333333333],[125,188,69,-0.4583333333333333],[125,188,70,-0.4583333333333333],[125,188,71,-0.4583333333333333],[125,188,72,-0.4583333333333333],[125,188,73,-0.4583333333333333],[125,188,74,-0.4583333333333333],[125,188,75,-0.4583333333333333],[125,188,76,-0.4583333333333333],[125,188,77,-0.4583333333333333],[125,188,78,-0.4583333333333333],[125,188,79,-0.4583333333333333],[125,189,64,-0.4583333333333333],[125,189,65,-0.4583333333333333],[125,189,66,-0.4583333333333333],[125,189,67,-0.4583333333333333],[125,189,68,-0.4583333333333333],[125,189,69,-0.4583333333333333],[125,189,70,-0.4583333333333333],[125,189,71,-0.4583333333333333],[125,189,72,-0.4583333333333333],[125,189,73,-0.4583333333333333],[125,189,74,-0.4583333333333333],[125,189,75,-0.4583333333333333],[125,189,76,-0.4583333333333333],[125,189,77,-0.4583333333333333],[125,189,78,-0.4583333333333333],[125,189,79,-0.4583333333333333],[125,190,64,-0.4583333333333333],[125,190,65,-0.4583333333333333],[125,190,66,-0.4583333333333333],[125,190,67,-0.4583333333333333],[125,190,68,-0.4583333333333333],[125,190,69,-0.4583333333333333],[125,190,70,-0.4583333333333333],[125,190,71,-0.4583333333333333],[125,190,72,-0.4583333333333333],[125,190,73,-0.4583333333333333],[125,190,74,-0.4583333333333333],[125,190,75,-0.4583333333333333],[125,190,76,-0.4583333333333333],[125,190,77,-0.4583333333333333],[125,190,78,-0.4583333333333333],[125,190,79,-0.4583333333333333],[125,191,64,-0.4583333333333333],[125,191,65,-0.4583333333333333],[125,191,66,-0.4583333333333333],[125,191,67,-0.4583333333333333],[125,191,68,-0.4583333333333333],[125,191,69,-0.4583333333333333],[125,191,70,-0.4583333333333333],[125,191,71,-0.4583333333333333],[125,191,72,-0.4583333333333333],[125,191,73,-0.4583333333333333],[125,191,74,-0.4583333333333333],[125,191,75,-0.4583333333333333],[125,191,76,-0.4583333333333333],[125,191,77,-0.4583333333333333],[125,191,78,-0.4583333333333333],[125,191,79,-0.4583333333333333],[125,192,64,-0.4583333333333333],[125,192,65,-0.4583333333333333],[125,192,66,-0.4583333333333333],[125,192,67,-0.4583333333333333],[125,192,68,-0.4583333333333333],[125,192,69,-0.4583333333333333],[125,192,70,-0.4583333333333333],[125,192,71,-0.4583333333333333],[125,192,72,-0.4583333333333333],[125,192,73,-0.4583333333333333],[125,192,74,-0.4583333333333333],[125,192,75,-0.4583333333333333],[125,192,76,-0.4583333333333333],[125,192,77,-0.4583333333333333],[125,192,78,-0.4583333333333333],[125,192,79,-0.4583333333333333],[125,193,64,-0.4583333333333333],[125,193,65,-0.4583333333333333],[125,193,66,-0.4583333333333333],[125,193,67,-0.4583333333333333],[125,193,68,-0.4583333333333333],[125,193,69,-0.4583333333333333],[125,193,70,-0.4583333333333333],[125,193,71,-0.4583333333333333],[125,193,72,-0.4583333333333333],[125,193,73,-0.4583333333333333],[125,193,74,-0.4583333333333333],[125,193,75,-0.4583333333333333],[125,193,76,-0.4583333333333333],[125,193,77,-0.4583333333333333],[125,193,78,-0.4583333333333333],[125,193,79,-0.4583333333333333],[125,194,64,-0.4583333333333333],[125,194,65,-0.4583333333333333],[125,194,66,-0.4583333333333333],[125,194,67,-0.4583333333333333],[125,194,68,-0.4583333333333333],[125,194,69,-0.4583333333333333],[125,194,70,-0.4583333333333333],[125,194,71,-0.4583333333333333],[125,194,72,-0.4583333333333333],[125,194,73,-0.4583333333333333],[125,194,74,-0.4583333333333333],[125,194,75,-0.4583333333333333],[125,194,76,-0.4583333333333333],[125,194,77,-0.4583333333333333],[125,194,78,-0.4583333333333333],[125,194,79,-0.4583333333333333],[125,195,64,-0.4583333333333333],[125,195,65,-0.4583333333333333],[125,195,66,-0.4583333333333333],[125,195,67,-0.4583333333333333],[125,195,68,-0.4583333333333333],[125,195,69,-0.4583333333333333],[125,195,70,-0.4583333333333333],[125,195,71,-0.4583333333333333],[125,195,72,-0.4583333333333333],[125,195,73,-0.4583333333333333],[125,195,74,-0.4583333333333333],[125,195,75,-0.4583333333333333],[125,195,76,-0.4583333333333333],[125,195,77,-0.4583333333333333],[125,195,78,-0.4583333333333333],[125,195,79,-0.4583333333333333],[125,196,64,-0.4583333333333333],[125,196,65,-0.4583333333333333],[125,196,66,-0.4583333333333333],[125,196,67,-0.4583333333333333],[125,196,68,-0.4583333333333333],[125,196,69,-0.4583333333333333],[125,196,70,-0.4583333333333333],[125,196,71,-0.4583333333333333],[125,196,72,-0.4583333333333333],[125,196,73,-0.4583333333333333],[125,196,74,-0.4583333333333333],[125,196,75,-0.4583333333333333],[125,196,76,-0.4583333333333333],[125,196,77,-0.4583333333333333],[125,196,78,-0.4583333333333333],[125,196,79,-0.4583333333333333],[125,197,64,-0.4583333333333333],[125,197,65,-0.4583333333333333],[125,197,66,-0.4583333333333333],[125,197,67,-0.4583333333333333],[125,197,68,-0.4583333333333333],[125,197,69,-0.4583333333333333],[125,197,70,-0.4583333333333333],[125,197,71,-0.4583333333333333],[125,197,72,-0.4583333333333333],[125,197,73,-0.4583333333333333],[125,197,74,-0.4583333333333333],[125,197,75,-0.4583333333333333],[125,197,76,-0.4583333333333333],[125,197,77,-0.4583333333333333],[125,197,78,-0.4583333333333333],[125,197,79,-0.4583333333333333],[125,198,64,-0.4583333333333333],[125,198,65,-0.4583333333333333],[125,198,66,-0.4583333333333333],[125,198,67,-0.4583333333333333],[125,198,68,-0.4583333333333333],[125,198,69,-0.4583333333333333],[125,198,70,-0.4583333333333333],[125,198,71,-0.4583333333333333],[125,198,72,-0.4583333333333333],[125,198,73,-0.4583333333333333],[125,198,74,-0.4583333333333333],[125,198,75,-0.4583333333333333],[125,198,76,-0.4583333333333333],[125,198,77,-0.4583333333333333],[125,198,78,-0.4583333333333333],[125,198,79,-0.4583333333333333],[125,199,64,-0.4583333333333333],[125,199,65,-0.4583333333333333],[125,199,66,-0.4583333333333333],[125,199,67,-0.4583333333333333],[125,199,68,-0.4583333333333333],[125,199,69,-0.4583333333333333],[125,199,70,-0.4583333333333333],[125,199,71,-0.4583333333333333],[125,199,72,-0.4583333333333333],[125,199,73,-0.4583333333333333],[125,199,74,-0.4583333333333333],[125,199,75,-0.4583333333333333],[125,199,76,-0.4583333333333333],[125,199,77,-0.4583333333333333],[125,199,78,-0.4583333333333333],[125,199,79,-0.4583333333333333],[125,200,64,-0.4583333333333333],[125,200,65,-0.4583333333333333],[125,200,66,-0.4583333333333333],[125,200,67,-0.4583333333333333],[125,200,68,-0.4583333333333333],[125,200,69,-0.4583333333333333],[125,200,70,-0.4583333333333333],[125,200,71,-0.4583333333333333],[125,200,72,-0.4583333333333333],[125,200,73,-0.4583333333333333],[125,200,74,-0.4583333333333333],[125,200,75,-0.4583333333333333],[125,200,76,-0.4583333333333333],[125,200,77,-0.4583333333333333],[125,200,78,-0.4583333333333333],[125,200,79,-0.4583333333333333],[125,201,64,-0.4583333333333333],[125,201,65,-0.4583333333333333],[125,201,66,-0.4583333333333333],[125,201,67,-0.4583333333333333],[125,201,68,-0.4583333333333333],[125,201,69,-0.4583333333333333],[125,201,70,-0.4583333333333333],[125,201,71,-0.4583333333333333],[125,201,72,-0.4583333333333333],[125,201,73,-0.4583333333333333],[125,201,74,-0.4583333333333333],[125,201,75,-0.4583333333333333],[125,201,76,-0.4583333333333333],[125,201,77,-0.4583333333333333],[125,201,78,-0.4583333333333333],[125,201,79,-0.4583333333333333],[125,202,64,-0.4583333333333333],[125,202,65,-0.4583333333333333],[125,202,66,-0.4583333333333333],[125,202,67,-0.4583333333333333],[125,202,68,-0.4583333333333333],[125,202,69,-0.4583333333333333],[125,202,70,-0.4583333333333333],[125,202,71,-0.4583333333333333],[125,202,72,-0.4583333333333333],[125,202,73,-0.4583333333333333],[125,202,74,-0.4583333333333333],[125,202,75,-0.4583333333333333],[125,202,76,-0.4583333333333333],[125,202,77,-0.4583333333333333],[125,202,78,-0.4583333333333333],[125,202,79,-0.4583333333333333],[125,203,64,-0.4583333333333333],[125,203,65,-0.4583333333333333],[125,203,66,-0.4583333333333333],[125,203,67,-0.4583333333333333],[125,203,68,-0.4583333333333333],[125,203,69,-0.4583333333333333],[125,203,70,-0.4583333333333333],[125,203,71,-0.4583333333333333],[125,203,72,-0.4583333333333333],[125,203,73,-0.4583333333333333],[125,203,74,-0.4583333333333333],[125,203,75,-0.4583333333333333],[125,203,76,-0.4583333333333333],[125,203,77,-0.4583333333333333],[125,203,78,-0.4583333333333333],[125,203,79,-0.4583333333333333],[125,204,64,-0.4583333333333333],[125,204,65,-0.4583333333333333],[125,204,66,-0.4583333333333333],[125,204,67,-0.4583333333333333],[125,204,68,-0.4583333333333333],[125,204,69,-0.4583333333333333],[125,204,70,-0.4583333333333333],[125,204,71,-0.4583333333333333],[125,204,72,-0.4583333333333333],[125,204,73,-0.4583333333333333],[125,204,74,-0.4583333333333333],[125,204,75,-0.4583333333333333],[125,204,76,-0.4583333333333333],[125,204,77,-0.4583333333333333],[125,204,78,-0.4583333333333333],[125,204,79,-0.4583333333333333],[125,205,64,-0.4583333333333333],[125,205,65,-0.4583333333333333],[125,205,66,-0.4583333333333333],[125,205,67,-0.4583333333333333],[125,205,68,-0.4583333333333333],[125,205,69,-0.4583333333333333],[125,205,70,-0.4583333333333333],[125,205,71,-0.4583333333333333],[125,205,72,-0.4583333333333333],[125,205,73,-0.4583333333333333],[125,205,74,-0.4583333333333333],[125,205,75,-0.4583333333333333],[125,205,76,-0.4583333333333333],[125,205,77,-0.4583333333333333],[125,205,78,-0.4583333333333333],[125,205,79,-0.4583333333333333],[125,206,64,-0.4583333333333333],[125,206,65,-0.4583333333333333],[125,206,66,-0.4583333333333333],[125,206,67,-0.4583333333333333],[125,206,68,-0.4583333333333333],[125,206,69,-0.4583333333333333],[125,206,70,-0.4583333333333333],[125,206,71,-0.4583333333333333],[125,206,72,-0.4583333333333333],[125,206,73,-0.4583333333333333],[125,206,74,-0.4583333333333333],[125,206,75,-0.4583333333333333],[125,206,76,-0.4583333333333333],[125,206,77,-0.4583333333333333],[125,206,78,-0.4583333333333333],[125,206,79,-0.4583333333333333],[125,207,64,-0.4583333333333333],[125,207,65,-0.4583333333333333],[125,207,66,-0.4583333333333333],[125,207,67,-0.4583333333333333],[125,207,68,-0.4583333333333333],[125,207,69,-0.4583333333333333],[125,207,70,-0.4583333333333333],[125,207,71,-0.4583333333333333],[125,207,72,-0.4583333333333333],[125,207,73,-0.4583333333333333],[125,207,74,-0.4583333333333333],[125,207,75,-0.4583333333333333],[125,207,76,-0.4583333333333333],[125,207,77,-0.4583333333333333],[125,207,78,-0.4583333333333333],[125,207,79,-0.4583333333333333],[125,208,64,-0.4583333333333333],[125,208,65,-0.4583333333333333],[125,208,66,-0.4583333333333333],[125,208,67,-0.4583333333333333],[125,208,68,-0.4583333333333333],[125,208,69,-0.4583333333333333],[125,208,70,-0.4583333333333333],[125,208,71,-0.4583333333333333],[125,208,72,-0.4583333333333333],[125,208,73,-0.4583333333333333],[125,208,74,-0.4583333333333333],[125,208,75,-0.4583333333333333],[125,208,76,-0.4583333333333333],[125,208,77,-0.4583333333333333],[125,208,78,-0.4583333333333333],[125,208,79,-0.4583333333333333],[125,209,64,-0.4583333333333333],[125,209,65,-0.4583333333333333],[125,209,66,-0.4583333333333333],[125,209,67,-0.4583333333333333],[125,209,68,-0.4583333333333333],[125,209,69,-0.4583333333333333],[125,209,70,-0.4583333333333333],[125,209,71,-0.4583333333333333],[125,209,72,-0.4583333333333333],[125,209,73,-0.4583333333333333],[125,209,74,-0.4583333333333333],[125,209,75,-0.4583333333333333],[125,209,76,-0.4583333333333333],[125,209,77,-0.4583333333333333],[125,209,78,-0.4583333333333333],[125,209,79,-0.4583333333333333],[125,210,64,-0.4583333333333333],[125,210,65,-0.4583333333333333],[125,210,66,-0.4583333333333333],[125,210,67,-0.4583333333333333],[125,210,68,-0.4583333333333333],[125,210,69,-0.4583333333333333],[125,210,70,-0.4583333333333333],[125,210,71,-0.4583333333333333],[125,210,72,-0.4583333333333333],[125,210,73,-0.4583333333333333],[125,210,74,-0.4583333333333333],[125,210,75,-0.4583333333333333],[125,210,76,-0.4583333333333333],[125,210,77,-0.4583333333333333],[125,210,78,-0.4583333333333333],[125,210,79,-0.4583333333333333],[125,211,64,-0.4583333333333333],[125,211,65,-0.4583333333333333],[125,211,66,-0.4583333333333333],[125,211,67,-0.4583333333333333],[125,211,68,-0.4583333333333333],[125,211,69,-0.4583333333333333],[125,211,70,-0.4583333333333333],[125,211,71,-0.4583333333333333],[125,211,72,-0.4583333333333333],[125,211,73,-0.4583333333333333],[125,211,74,-0.4583333333333333],[125,211,75,-0.4583333333333333],[125,211,76,-0.4583333333333333],[125,211,77,-0.4583333333333333],[125,211,78,-0.4583333333333333],[125,211,79,-0.4583333333333333],[125,212,64,-0.4583333333333333],[125,212,65,-0.4583333333333333],[125,212,66,-0.4583333333333333],[125,212,67,-0.4583333333333333],[125,212,68,-0.4583333333333333],[125,212,69,-0.4583333333333333],[125,212,70,-0.4583333333333333],[125,212,71,-0.4583333333333333],[125,212,72,-0.4583333333333333],[125,212,73,-0.4583333333333333],[125,212,74,-0.4583333333333333],[125,212,75,-0.4583333333333333],[125,212,76,-0.4583333333333333],[125,212,77,-0.4583333333333333],[125,212,78,-0.4583333333333333],[125,212,79,-0.4583333333333333],[125,213,64,-0.4583333333333333],[125,213,65,-0.4583333333333333],[125,213,66,-0.4583333333333333],[125,213,67,-0.4583333333333333],[125,213,68,-0.4583333333333333],[125,213,69,-0.4583333333333333],[125,213,70,-0.4583333333333333],[125,213,71,-0.4583333333333333],[125,213,72,-0.4583333333333333],[125,213,73,-0.4583333333333333],[125,213,74,-0.4583333333333333],[125,213,75,-0.4583333333333333],[125,213,76,-0.4583333333333333],[125,213,77,-0.4583333333333333],[125,213,78,-0.4583333333333333],[125,213,79,-0.4583333333333333],[125,214,64,-0.4583333333333333],[125,214,65,-0.4583333333333333],[125,214,66,-0.4583333333333333],[125,214,67,-0.4583333333333333],[125,214,68,-0.4583333333333333],[125,214,69,-0.4583333333333333],[125,214,70,-0.4583333333333333],[125,214,71,-0.4583333333333333],[125,214,72,-0.4583333333333333],[125,214,73,-0.4583333333333333],[125,214,74,-0.4583333333333333],[125,214,75,-0.4583333333333333],[125,214,76,-0.4583333333333333],[125,214,77,-0.4583333333333333],[125,214,78,-0.4583333333333333],[125,214,79,-0.4583333333333333],[125,215,64,-0.4583333333333333],[125,215,65,-0.4583333333333333],[125,215,66,-0.4583333333333333],[125,215,67,-0.4583333333333333],[125,215,68,-0.4583333333333333],[125,215,69,-0.4583333333333333],[125,215,70,-0.4583333333333333],[125,215,71,-0.4583333333333333],[125,215,72,-0.4583333333333333],[125,215,73,-0.4583333333333333],[125,215,74,-0.4583333333333333],[125,215,75,-0.4583333333333333],[125,215,76,-0.4583333333333333],[125,215,77,-0.4583333333333333],[125,215,78,-0.4583333333333333],[125,215,79,-0.4583333333333333],[125,216,64,-0.4583333333333333],[125,216,65,-0.4583333333333333],[125,216,66,-0.4583333333333333],[125,216,67,-0.4583333333333333],[125,216,68,-0.4583333333333333],[125,216,69,-0.4583333333333333],[125,216,70,-0.4583333333333333],[125,216,71,-0.4583333333333333],[125,216,72,-0.4583333333333333],[125,216,73,-0.4583333333333333],[125,216,74,-0.4583333333333333],[125,216,75,-0.4583333333333333],[125,216,76,-0.4583333333333333],[125,216,77,-0.4583333333333333],[125,216,78,-0.4583333333333333],[125,216,79,-0.4583333333333333],[125,217,64,-0.4583333333333333],[125,217,65,-0.4583333333333333],[125,217,66,-0.4583333333333333],[125,217,67,-0.4583333333333333],[125,217,68,-0.4583333333333333],[125,217,69,-0.4583333333333333],[125,217,70,-0.4583333333333333],[125,217,71,-0.4583333333333333],[125,217,72,-0.4583333333333333],[125,217,73,-0.4583333333333333],[125,217,74,-0.4583333333333333],[125,217,75,-0.4583333333333333],[125,217,76,-0.4583333333333333],[125,217,77,-0.4583333333333333],[125,217,78,-0.4583333333333333],[125,217,79,-0.4583333333333333],[125,218,64,-0.4583333333333333],[125,218,65,-0.4583333333333333],[125,218,66,-0.4583333333333333],[125,218,67,-0.4583333333333333],[125,218,68,-0.4583333333333333],[125,218,69,-0.4583333333333333],[125,218,70,-0.4583333333333333],[125,218,71,-0.4583333333333333],[125,218,72,-0.4583333333333333],[125,218,73,-0.4583333333333333],[125,218,74,-0.4583333333333333],[125,218,75,-0.4583333333333333],[125,218,76,-0.4583333333333333],[125,218,77,-0.4583333333333333],[125,218,78,-0.4583333333333333],[125,218,79,-0.4583333333333333],[125,219,64,-0.4583333333333333],[125,219,65,-0.4583333333333333],[125,219,66,-0.4583333333333333],[125,219,67,-0.4583333333333333],[125,219,68,-0.4583333333333333],[125,219,69,-0.4583333333333333],[125,219,70,-0.4583333333333333],[125,219,71,-0.4583333333333333],[125,219,72,-0.4583333333333333],[125,219,73,-0.4583333333333333],[125,219,74,-0.4583333333333333],[125,219,75,-0.4583333333333333],[125,219,76,-0.4583333333333333],[125,219,77,-0.4583333333333333],[125,219,78,-0.4583333333333333],[125,219,79,-0.4583333333333333],[125,220,64,-0.4583333333333333],[125,220,65,-0.4583333333333333],[125,220,66,-0.4583333333333333],[125,220,67,-0.4583333333333333],[125,220,68,-0.4583333333333333],[125,220,69,-0.4583333333333333],[125,220,70,-0.4583333333333333],[125,220,71,-0.4583333333333333],[125,220,72,-0.4583333333333333],[125,220,73,-0.4583333333333333],[125,220,74,-0.4583333333333333],[125,220,75,-0.4583333333333333],[125,220,76,-0.4583333333333333],[125,220,77,-0.4583333333333333],[125,220,78,-0.4583333333333333],[125,220,79,-0.4583333333333333],[125,221,64,-0.4583333333333333],[125,221,65,-0.4583333333333333],[125,221,66,-0.4583333333333333],[125,221,67,-0.4583333333333333],[125,221,68,-0.4583333333333333],[125,221,69,-0.4583333333333333],[125,221,70,-0.4583333333333333],[125,221,71,-0.4583333333333333],[125,221,72,-0.4583333333333333],[125,221,73,-0.4583333333333333],[125,221,74,-0.4583333333333333],[125,221,75,-0.4583333333333333],[125,221,76,-0.4583333333333333],[125,221,77,-0.4583333333333333],[125,221,78,-0.4583333333333333],[125,221,79,-0.4583333333333333],[125,222,64,-0.4583333333333333],[125,222,65,-0.4583333333333333],[125,222,66,-0.4583333333333333],[125,222,67,-0.4583333333333333],[125,222,68,-0.4583333333333333],[125,222,69,-0.4583333333333333],[125,222,70,-0.4583333333333333],[125,222,71,-0.4583333333333333],[125,222,72,-0.4583333333333333],[125,222,73,-0.4583333333333333],[125,222,74,-0.4583333333333333],[125,222,75,-0.4583333333333333],[125,222,76,-0.4583333333333333],[125,222,77,-0.4583333333333333],[125,222,78,-0.4583333333333333],[125,222,79,-0.4583333333333333],[125,223,64,-0.4583333333333333],[125,223,65,-0.4583333333333333],[125,223,66,-0.4583333333333333],[125,223,67,-0.4583333333333333],[125,223,68,-0.4583333333333333],[125,223,69,-0.4583333333333333],[125,223,70,-0.4583333333333333],[125,223,71,-0.4583333333333333],[125,223,72,-0.4583333333333333],[125,223,73,-0.4583333333333333],[125,223,74,-0.4583333333333333],[125,223,75,-0.4583333333333333],[125,223,76,-0.4583333333333333],[125,223,77,-0.4583333333333333],[125,223,78,-0.4583333333333333],[125,223,79,-0.4583333333333333],[125,224,64,-0.4583333333333333],[125,224,65,-0.4583333333333333],[125,224,66,-0.4583333333333333],[125,224,67,-0.4583333333333333],[125,224,68,-0.4583333333333333],[125,224,69,-0.4583333333333333],[125,224,70,-0.4583333333333333],[125,224,71,-0.4583333333333333],[125,224,72,-0.4583333333333333],[125,224,73,-0.4583333333333333],[125,224,74,-0.4583333333333333],[125,224,75,-0.4583333333333333],[125,224,76,-0.4583333333333333],[125,224,77,-0.4583333333333333],[125,224,78,-0.4583333333333333],[125,224,79,-0.4583333333333333],[125,225,64,-0.4583333333333333],[125,225,65,-0.4583333333333333],[125,225,66,-0.4583333333333333],[125,225,67,-0.4583333333333333],[125,225,68,-0.4583333333333333],[125,225,69,-0.4583333333333333],[125,225,70,-0.4583333333333333],[125,225,71,-0.4583333333333333],[125,225,72,-0.4583333333333333],[125,225,73,-0.4583333333333333],[125,225,74,-0.4583333333333333],[125,225,75,-0.4583333333333333],[125,225,76,-0.4583333333333333],[125,225,77,-0.4583333333333333],[125,225,78,-0.4583333333333333],[125,225,79,-0.4583333333333333],[125,226,64,-0.4583333333333333],[125,226,65,-0.4583333333333333],[125,226,66,-0.4583333333333333],[125,226,67,-0.4583333333333333],[125,226,68,-0.4583333333333333],[125,226,69,-0.4583333333333333],[125,226,70,-0.4583333333333333],[125,226,71,-0.4583333333333333],[125,226,72,-0.4583333333333333],[125,226,73,-0.4583333333333333],[125,226,74,-0.4583333333333333],[125,226,75,-0.4583333333333333],[125,226,76,-0.4583333333333333],[125,226,77,-0.4583333333333333],[125,226,78,-0.4583333333333333],[125,226,79,-0.4583333333333333],[125,227,64,-0.4583333333333333],[125,227,65,-0.4583333333333333],[125,227,66,-0.4583333333333333],[125,227,67,-0.4583333333333333],[125,227,68,-0.4583333333333333],[125,227,69,-0.4583333333333333],[125,227,70,-0.4583333333333333],[125,227,71,-0.4583333333333333],[125,227,72,-0.4583333333333333],[125,227,73,-0.4583333333333333],[125,227,74,-0.4583333333333333],[125,227,75,-0.4583333333333333],[125,227,76,-0.4583333333333333],[125,227,77,-0.4583333333333333],[125,227,78,-0.4583333333333333],[125,227,79,-0.4583333333333333],[125,228,64,-0.4583333333333333],[125,228,65,-0.4583333333333333],[125,228,66,-0.4583333333333333],[125,228,67,-0.4583333333333333],[125,228,68,-0.4583333333333333],[125,228,69,-0.4583333333333333],[125,228,70,-0.4583333333333333],[125,228,71,-0.4583333333333333],[125,228,72,-0.4583333333333333],[125,228,73,-0.4583333333333333],[125,228,74,-0.4583333333333333],[125,228,75,-0.4583333333333333],[125,228,76,-0.4583333333333333],[125,228,77,-0.4583333333333333],[125,228,78,-0.4583333333333333],[125,228,79,-0.4583333333333333],[125,229,64,-0.4583333333333333],[125,229,65,-0.4583333333333333],[125,229,66,-0.4583333333333333],[125,229,67,-0.4583333333333333],[125,229,68,-0.4583333333333333],[125,229,69,-0.4583333333333333],[125,229,70,-0.4583333333333333],[125,229,71,-0.4583333333333333],[125,229,72,-0.4583333333333333],[125,229,73,-0.4583333333333333],[125,229,74,-0.4583333333333333],[125,229,75,-0.4583333333333333],[125,229,76,-0.4583333333333333],[125,229,77,-0.4583333333333333],[125,229,78,-0.4583333333333333],[125,229,79,-0.4583333333333333],[125,230,64,-0.4583333333333333],[125,230,65,-0.4583333333333333],[125,230,66,-0.4583333333333333],[125,230,67,-0.4583333333333333],[125,230,68,-0.4583333333333333],[125,230,69,-0.4583333333333333],[125,230,70,-0.4583333333333333],[125,230,71,-0.4583333333333333],[125,230,72,-0.4583333333333333],[125,230,73,-0.4583333333333333],[125,230,74,-0.4583333333333333],[125,230,75,-0.4583333333333333],[125,230,76,-0.4583333333333333],[125,230,77,-0.4583333333333333],[125,230,78,-0.4583333333333333],[125,230,79,-0.4583333333333333],[125,231,64,-0.4583333333333333],[125,231,65,-0.4583333333333333],[125,231,66,-0.4583333333333333],[125,231,67,-0.4583333333333333],[125,231,68,-0.4583333333333333],[125,231,69,-0.4583333333333333],[125,231,70,-0.4583333333333333],[125,231,71,-0.4583333333333333],[125,231,72,-0.4583333333333333],[125,231,73,-0.4583333333333333],[125,231,74,-0.4583333333333333],[125,231,75,-0.4583333333333333],[125,231,76,-0.4583333333333333],[125,231,77,-0.4583333333333333],[125,231,78,-0.4583333333333333],[125,231,79,-0.4583333333333333],[125,232,64,-0.4583333333333333],[125,232,65,-0.4583333333333333],[125,232,66,-0.4583333333333333],[125,232,67,-0.4583333333333333],[125,232,68,-0.4583333333333333],[125,232,69,-0.4583333333333333],[125,232,70,-0.4583333333333333],[125,232,71,-0.4583333333333333],[125,232,72,-0.4583333333333333],[125,232,73,-0.4583333333333333],[125,232,74,-0.4583333333333333],[125,232,75,-0.4583333333333333],[125,232,76,-0.4583333333333333],[125,232,77,-0.4583333333333333],[125,232,78,-0.4583333333333333],[125,232,79,-0.4583333333333333],[125,233,64,-0.4583333333333333],[125,233,65,-0.4583333333333333],[125,233,66,-0.4583333333333333],[125,233,67,-0.4583333333333333],[125,233,68,-0.4583333333333333],[125,233,69,-0.4583333333333333],[125,233,70,-0.4583333333333333],[125,233,71,-0.4583333333333333],[125,233,72,-0.4583333333333333],[125,233,73,-0.4583333333333333],[125,233,74,-0.4583333333333333],[125,233,75,-0.4583333333333333],[125,233,76,-0.4583333333333333],[125,233,77,-0.4583333333333333],[125,233,78,-0.4583333333333333],[125,233,79,-0.4583333333333333],[125,234,64,-0.4583333333333333],[125,234,65,-0.4583333333333333],[125,234,66,-0.4583333333333333],[125,234,67,-0.4583333333333333],[125,234,68,-0.4583333333333333],[125,234,69,-0.4583333333333333],[125,234,70,-0.4583333333333333],[125,234,71,-0.4583333333333333],[125,234,72,-0.4583333333333333],[125,234,73,-0.4583333333333333],[125,234,74,-0.4583333333333333],[125,234,75,-0.4583333333333333],[125,234,76,-0.4583333333333333],[125,234,77,-0.4583333333333333],[125,234,78,-0.4583333333333333],[125,234,79,-0.4583333333333333],[125,235,64,-0.4583333333333333],[125,235,65,-0.4583333333333333],[125,235,66,-0.4583333333333333],[125,235,67,-0.4583333333333333],[125,235,68,-0.4583333333333333],[125,235,69,-0.4583333333333333],[125,235,70,-0.4583333333333333],[125,235,71,-0.4583333333333333],[125,235,72,-0.4583333333333333],[125,235,73,-0.4583333333333333],[125,235,74,-0.4583333333333333],[125,235,75,-0.4583333333333333],[125,235,76,-0.4583333333333333],[125,235,77,-0.4583333333333333],[125,235,78,-0.4583333333333333],[125,235,79,-0.4583333333333333],[125,236,64,-0.4583333333333333],[125,236,65,-0.4583333333333333],[125,236,66,-0.4583333333333333],[125,236,67,-0.4583333333333333],[125,236,68,-0.4583333333333333],[125,236,69,-0.4583333333333333],[125,236,70,-0.4583333333333333],[125,236,71,-0.4583333333333333],[125,236,72,-0.4583333333333333],[125,236,73,-0.4583333333333333],[125,236,74,-0.4583333333333333],[125,236,75,-0.4583333333333333],[125,236,76,-0.4583333333333333],[125,236,77,-0.4583333333333333],[125,236,78,-0.4583333333333333],[125,236,79,-0.4583333333333333],[125,237,64,-0.4583333333333333],[125,237,65,-0.4583333333333333],[125,237,66,-0.4583333333333333],[125,237,67,-0.4583333333333333],[125,237,68,-0.4583333333333333],[125,237,69,-0.4583333333333333],[125,237,70,-0.4583333333333333],[125,237,71,-0.4583333333333333],[125,237,72,-0.4583333333333333],[125,237,73,-0.4583333333333333],[125,237,74,-0.4583333333333333],[125,237,75,-0.4583333333333333],[125,237,76,-0.4583333333333333],[125,237,77,-0.4583333333333333],[125,237,78,-0.4583333333333333],[125,237,79,-0.4583333333333333],[125,238,64,-0.4583333333333333],[125,238,65,-0.4583333333333333],[125,238,66,-0.4583333333333333],[125,238,67,-0.4583333333333333],[125,238,68,-0.4583333333333333],[125,238,69,-0.4583333333333333],[125,238,70,-0.4583333333333333],[125,238,71,-0.4583333333333333],[125,238,72,-0.4583333333333333],[125,238,73,-0.4583333333333333],[125,238,74,-0.4583333333333333],[125,238,75,-0.4583333333333333],[125,238,76,-0.4583333333333333],[125,238,77,-0.4583333333333333],[125,238,78,-0.4583333333333333],[125,238,79,-0.4583333333333333],[125,239,64,-0.4583333333333333],[125,239,65,-0.4583333333333333],[125,239,66,-0.4583333333333333],[125,239,67,-0.4583333333333333],[125,239,68,-0.4583333333333333],[125,239,69,-0.4583333333333333],[125,239,70,-0.4583333333333333],[125,239,71,-0.4583333333333333],[125,239,72,-0.4583333333333333],[125,239,73,-0.4583333333333333],[125,239,74,-0.4583333333333333],[125,239,75,-0.4583333333333333],[125,239,76,-0.4583333333333333],[125,239,77,-0.4583333333333333],[125,239,78,-0.4583333333333333],[125,239,79,-0.4583333333333333],[125,240,64,-0.4583333333333333],[125,240,65,-0.4583333333333333],[125,240,66,-0.4583333333333333],[125,240,67,-0.4583333333333333],[125,240,68,-0.4583333333333333],[125,240,69,-0.4583333333333333],[125,240,70,-0.4583333333333333],[125,240,71,-0.4583333333333333],[125,240,72,-0.4583333333333333],[125,240,73,-0.4583333333333333],[125,240,74,-0.4583333333333333],[125,240,75,-0.4583333333333333],[125,240,76,-0.4583333333333333],[125,240,77,-0.4583333333333333],[125,240,78,-0.4583333333333333],[125,240,79,-0.4583333333333333],[125,241,64,-0.4583333333333333],[125,241,65,-0.4583333333333333],[125,241,66,-0.4583333333333333],[125,241,67,-0.4583333333333333],[125,241,68,-0.4583333333333333],[125,241,69,-0.4583333333333333],[125,241,70,-0.4583333333333333],[125,241,71,-0.4583333333333333],[125,241,72,-0.4583333333333333],[125,241,73,-0.4583333333333333],[125,241,74,-0.4583333333333333],[125,241,75,-0.4583333333333333],[125,241,76,-0.4583333333333333],[125,241,77,-0.4583333333333333],[125,241,78,-0.4583333333333333],[125,241,79,-0.4583333333333333],[125,242,64,-0.4583333333333333],[125,242,65,-0.4583333333333333],[125,242,66,-0.4583333333333333],[125,242,67,-0.4583333333333333],[125,242,68,-0.4583333333333333],[125,242,69,-0.4583333333333333],[125,242,70,-0.4583333333333333],[125,242,71,-0.4583333333333333],[125,242,72,-0.4583333333333333],[125,242,73,-0.4583333333333333],[125,242,74,-0.4583333333333333],[125,242,75,-0.4583333333333333],[125,242,76,-0.4583333333333333],[125,242,77,-0.4583333333333333],[125,242,78,-0.4583333333333333],[125,242,79,-0.4583333333333333],[125,243,64,-0.4583333333333333],[125,243,65,-0.4583333333333333],[125,243,66,-0.4583333333333333],[125,243,67,-0.4583333333333333],[125,243,68,-0.4583333333333333],[125,243,69,-0.4583333333333333],[125,243,70,-0.4583333333333333],[125,243,71,-0.4583333333333333],[125,243,72,-0.4583333333333333],[125,243,73,-0.4583333333333333],[125,243,74,-0.4583333333333333],[125,243,75,-0.4583333333333333],[125,243,76,-0.4583333333333333],[125,243,77,-0.4583333333333333],[125,243,78,-0.4583333333333333],[125,243,79,-0.4583333333333333],[125,244,64,-0.4583333333333333],[125,244,65,-0.4583333333333333],[125,244,66,-0.4583333333333333],[125,244,67,-0.4583333333333333],[125,244,68,-0.4583333333333333],[125,244,69,-0.4583333333333333],[125,244,70,-0.4583333333333333],[125,244,71,-0.4583333333333333],[125,244,72,-0.4583333333333333],[125,244,73,-0.4583333333333333],[125,244,74,-0.4583333333333333],[125,244,75,-0.4583333333333333],[125,244,76,-0.4583333333333333],[125,244,77,-0.4583333333333333],[125,244,78,-0.4583333333333333],[125,244,79,-0.4583333333333333],[125,245,64,-0.4583333333333333],[125,245,65,-0.4583333333333333],[125,245,66,-0.4583333333333333],[125,245,67,-0.4583333333333333],[125,245,68,-0.4583333333333333],[125,245,69,-0.4583333333333333],[125,245,70,-0.4583333333333333],[125,245,71,-0.4583333333333333],[125,245,72,-0.4583333333333333],[125,245,73,-0.4583333333333333],[125,245,74,-0.4583333333333333],[125,245,75,-0.4583333333333333],[125,245,76,-0.4583333333333333],[125,245,77,-0.4583333333333333],[125,245,78,-0.4583333333333333],[125,245,79,-0.4583333333333333],[125,246,64,-0.4583333333333333],[125,246,65,-0.4583333333333333],[125,246,66,-0.4583333333333333],[125,246,67,-0.4583333333333333],[125,246,68,-0.4583333333333333],[125,246,69,-0.4583333333333333],[125,246,70,-0.4583333333333333],[125,246,71,-0.4583333333333333],[125,246,72,-0.4583333333333333],[125,246,73,-0.4583333333333333],[125,246,74,-0.4583333333333333],[125,246,75,-0.4583333333333333],[125,246,76,-0.4583333333333333],[125,246,77,-0.4583333333333333],[125,246,78,-0.4583333333333333],[125,246,79,-0.4583333333333333],[125,247,64,-0.4583333333333333],[125,247,65,-0.4583333333333333],[125,247,66,-0.4583333333333333],[125,247,67,-0.4583333333333333],[125,247,68,-0.4583333333333333],[125,247,69,-0.4583333333333333],[125,247,70,-0.4583333333333333],[125,247,71,-0.4583333333333333],[125,247,72,-0.4583333333333333],[125,247,73,-0.4583333333333333],[125,247,74,-0.4583333333333333],[125,247,75,-0.4583333333333333],[125,247,76,-0.4583333333333333],[125,247,77,-0.4583333333333333],[125,247,78,-0.4583333333333333],[125,247,79,-0.4583333333333333],[125,248,64,-0.4583333333333333],[125,248,65,-0.4583333333333333],[125,248,66,-0.4583333333333333],[125,248,67,-0.4583333333333333],[125,248,68,-0.4583333333333333],[125,248,69,-0.4583333333333333],[125,248,70,-0.4583333333333333],[125,248,71,-0.4583333333333333],[125,248,72,-0.4583333333333333],[125,248,73,-0.4583333333333333],[125,248,74,-0.4583333333333333],[125,248,75,-0.4583333333333333],[125,248,76,-0.4583333333333333],[125,248,77,-0.4583333333333333],[125,248,78,-0.4583333333333333],[125,248,79,-0.4583333333333333],[125,249,64,-0.4583333333333333],[125,249,65,-0.4583333333333333],[125,249,66,-0.4583333333333333],[125,249,67,-0.4583333333333333],[125,249,68,-0.4583333333333333],[125,249,69,-0.4583333333333333],[125,249,70,-0.4583333333333333],[125,249,71,-0.4583333333333333],[125,249,72,-0.4583333333333333],[125,249,73,-0.4583333333333333],[125,249,74,-0.4583333333333333],[125,249,75,-0.4583333333333333],[125,249,76,-0.4583333333333333],[125,249,77,-0.4583333333333333],[125,249,78,-0.4583333333333333],[125,249,79,-0.4583333333333333],[125,250,64,-0.4583333333333333],[125,250,65,-0.4583333333333333],[125,250,66,-0.4583333333333333],[125,250,67,-0.4583333333333333],[125,250,68,-0.4583333333333333],[125,250,69,-0.4583333333333333],[125,250,70,-0.4583333333333333],[125,250,71,-0.4583333333333333],[125,250,72,-0.4583333333333333],[125,250,73,-0.4583333333333333],[125,250,74,-0.4583333333333333],[125,250,75,-0.4583333333333333],[125,250,76,-0.4583333333333333],[125,250,77,-0.4583333333333333],[125,250,78,-0.4583333333333333],[125,250,79,-0.4583333333333333],[125,251,64,-0.4583333333333333],[125,251,65,-0.4583333333333333],[125,251,66,-0.4583333333333333],[125,251,67,-0.4583333333333333],[125,251,68,-0.4583333333333333],[125,251,69,-0.4583333333333333],[125,251,70,-0.4583333333333333],[125,251,71,-0.4583333333333333],[125,251,72,-0.4583333333333333],[125,251,73,-0.4583333333333333],[125,251,74,-0.4583333333333333],[125,251,75,-0.4583333333333333],[125,251,76,-0.4583333333333333],[125,251,77,-0.4583333333333333],[125,251,78,-0.4583333333333333],[125,251,79,-0.4583333333333333],[125,252,64,-0.4583333333333333],[125,252,65,-0.4583333333333333],[125,252,66,-0.4583333333333333],[125,252,67,-0.4583333333333333],[125,252,68,-0.4583333333333333],[125,252,69,-0.4583333333333333],[125,252,70,-0.4583333333333333],[125,252,71,-0.4583333333333333],[125,252,72,-0.4583333333333333],[125,252,73,-0.4583333333333333],[125,252,74,-0.4583333333333333],[125,252,75,-0.4583333333333333],[125,252,76,-0.4583333333333333],[125,252,77,-0.4583333333333333],[125,252,78,-0.4583333333333333],[125,252,79,-0.4583333333333333],[125,253,64,-0.4583333333333333],[125,253,65,-0.4583333333333333],[125,253,66,-0.4583333333333333],[125,253,67,-0.4583333333333333],[125,253,68,-0.4583333333333333],[125,253,69,-0.4583333333333333],[125,253,70,-0.4583333333333333],[125,253,71,-0.4583333333333333],[125,253,72,-0.4583333333333333],[125,253,73,-0.4583333333333333],[125,253,74,-0.4583333333333333],[125,253,75,-0.4583333333333333],[125,253,76,-0.4583333333333333],[125,253,77,-0.4583333333333333],[125,253,78,-0.4583333333333333],[125,253,79,-0.4583333333333333],[125,254,64,-0.38078856630255536],[125,254,65,-0.3812856295577087],[125,254,66,-0.38054025651300366],[125,254,67,-0.3813807926421341],[125,254,68,-0.3813284074657745],[125,254,69,-0.3816277648542614],[125,254,70,-0.3831201641549529],[125,254,71,-0.3840830079013444],[125,254,72,-0.3854247956333169],[125,254,73,-0.3872304378539685],[125,254,74,-0.3878322700614468],[125,254,75,-0.387784540810363],[125,254,76,-0.38675527457127573],[125,254,77,-0.38632814492053236],[125,254,78,-0.3857365477137605],[125,254,79,-0.3847456029574432],[125,255,64,-0.21138981913871835],[125,255,65,-0.21147851099490533],[125,255,66,-0.21123424862002724],[125,255,67,-0.211298356568925],[125,255,68,-0.2115147403089472],[125,255,69,-0.21168446571057978],[125,255,70,-0.2126727140983812],[125,255,71,-0.21323937454334296],[125,255,72,-0.2138721933292069],[125,255,73,-0.21503822656251273],[125,255,74,-0.2153917630154265],[125,255,75,-0.21537104224757544],[125,255,76,-0.21477949812157873],[125,255,77,-0.21454896244892568],[125,255,78,-0.2142187281333402],[125,255,79,-0.2138125883293923],[125,256,64,-0.02499479166666667],[125,256,65,-0.02499479166666667],[125,256,66,-0.02499479166666667],[125,256,67,-0.02499479166666667],[125,256,68,-0.02499479166666667],[125,256,69,-0.02499479166666667],[125,256,70,-0.02499479166666667],[125,256,71,-0.02499479166666667],[125,256,72,-0.02499479166666667],[125,256,73,-0.02499479166666667],[125,256,74,-0.02499479166666667],[125,256,75,-0.02499479166666667],[125,256,76,-0.02499479166666667],[125,256,77,-0.02499479166666667],[125,256,78,-0.02499479166666667],[125,256,79,-0.02499479166666667],[125,257,64,-0.02499479166666667],[125,257,65,-0.02499479166666667],[125,257,66,-0.02499479166666667],[125,257,67,-0.02499479166666667],[125,257,68,-0.02499479166666667],[125,257,69,-0.02499479166666667],[125,257,70,-0.02499479166666667],[125,257,71,-0.02499479166666667],[125,257,72,-0.02499479166666667],[125,257,73,-0.02499479166666667],[125,257,74,-0.02499479166666667],[125,257,75,-0.02499479166666667],[125,257,76,-0.02499479166666667],[125,257,77,-0.02499479166666667],[125,257,78,-0.02499479166666667],[125,257,79,-0.02499479166666667],[125,258,64,-0.02499479166666667],[125,258,65,-0.02499479166666667],[125,258,66,-0.02499479166666667],[125,258,67,-0.02499479166666667],[125,258,68,-0.02499479166666667],[125,258,69,-0.02499479166666667],[125,258,70,-0.02499479166666667],[125,258,71,-0.02499479166666667],[125,258,72,-0.02499479166666667],[125,258,73,-0.02499479166666667],[125,258,74,-0.02499479166666667],[125,258,75,-0.02499479166666667],[125,258,76,-0.02499479166666667],[125,258,77,-0.02499479166666667],[125,258,78,-0.02499479166666667],[125,258,79,-0.02499479166666667],[125,259,64,-0.02499479166666667],[125,259,65,-0.02499479166666667],[125,259,66,-0.02499479166666667],[125,259,67,-0.02499479166666667],[125,259,68,-0.02499479166666667],[125,259,69,-0.02499479166666667],[125,259,70,-0.02499479166666667],[125,259,71,-0.02499479166666667],[125,259,72,-0.02499479166666667],[125,259,73,-0.02499479166666667],[125,259,74,-0.02499479166666667],[125,259,75,-0.02499479166666667],[125,259,76,-0.02499479166666667],[125,259,77,-0.02499479166666667],[125,259,78,-0.02499479166666667],[125,259,79,-0.02499479166666667],[125,260,64,-0.02499479166666667],[125,260,65,-0.02499479166666667],[125,260,66,-0.02499479166666667],[125,260,67,-0.02499479166666667],[125,260,68,-0.02499479166666667],[125,260,69,-0.02499479166666667],[125,260,70,-0.02499479166666667],[125,260,71,-0.02499479166666667],[125,260,72,-0.02499479166666667],[125,260,73,-0.02499479166666667],[125,260,74,-0.02499479166666667],[125,260,75,-0.02499479166666667],[125,260,76,-0.02499479166666667],[125,260,77,-0.02499479166666667],[125,260,78,-0.02499479166666667],[125,260,79,-0.02499479166666667],[125,261,64,-0.02499479166666667],[125,261,65,-0.02499479166666667],[125,261,66,-0.02499479166666667],[125,261,67,-0.02499479166666667],[125,261,68,-0.02499479166666667],[125,261,69,-0.02499479166666667],[125,261,70,-0.02499479166666667],[125,261,71,-0.02499479166666667],[125,261,72,-0.02499479166666667],[125,261,73,-0.02499479166666667],[125,261,74,-0.02499479166666667],[125,261,75,-0.02499479166666667],[125,261,76,-0.02499479166666667],[125,261,77,-0.02499479166666667],[125,261,78,-0.02499479166666667],[125,261,79,-0.02499479166666667],[125,262,64,-0.02499479166666667],[125,262,65,-0.02499479166666667],[125,262,66,-0.02499479166666667],[125,262,67,-0.02499479166666667],[125,262,68,-0.02499479166666667],[125,262,69,-0.02499479166666667],[125,262,70,-0.02499479166666667],[125,262,71,-0.02499479166666667],[125,262,72,-0.02499479166666667],[125,262,73,-0.02499479166666667],[125,262,74,-0.02499479166666667],[125,262,75,-0.02499479166666667],[125,262,76,-0.02499479166666667],[125,262,77,-0.02499479166666667],[125,262,78,-0.02499479166666667],[125,262,79,-0.02499479166666667],[125,263,64,-0.02499479166666667],[125,263,65,-0.02499479166666667],[125,263,66,-0.02499479166666667],[125,263,67,-0.02499479166666667],[125,263,68,-0.02499479166666667],[125,263,69,-0.02499479166666667],[125,263,70,-0.02499479166666667],[125,263,71,-0.02499479166666667],[125,263,72,-0.02499479166666667],[125,263,73,-0.02499479166666667],[125,263,74,-0.02499479166666667],[125,263,75,-0.02499479166666667],[125,263,76,-0.02499479166666667],[125,263,77,-0.02499479166666667],[125,263,78,-0.02499479166666667],[125,263,79,-0.02499479166666667],[125,264,64,-0.02499479166666667],[125,264,65,-0.02499479166666667],[125,264,66,-0.02499479166666667],[125,264,67,-0.02499479166666667],[125,264,68,-0.02499479166666667],[125,264,69,-0.02499479166666667],[125,264,70,-0.02499479166666667],[125,264,71,-0.02499479166666667],[125,264,72,-0.02499479166666667],[125,264,73,-0.02499479166666667],[125,264,74,-0.02499479166666667],[125,264,75,-0.02499479166666667],[125,264,76,-0.02499479166666667],[125,264,77,-0.02499479166666667],[125,264,78,-0.02499479166666667],[125,264,79,-0.02499479166666667],[125,265,64,-0.02499479166666667],[125,265,65,-0.02499479166666667],[125,265,66,-0.02499479166666667],[125,265,67,-0.02499479166666667],[125,265,68,-0.02499479166666667],[125,265,69,-0.02499479166666667],[125,265,70,-0.02499479166666667],[125,265,71,-0.02499479166666667],[125,265,72,-0.02499479166666667],[125,265,73,-0.02499479166666667],[125,265,74,-0.02499479166666667],[125,265,75,-0.02499479166666667],[125,265,76,-0.02499479166666667],[125,265,77,-0.02499479166666667],[125,265,78,-0.02499479166666667],[125,265,79,-0.02499479166666667],[125,266,64,-0.02499479166666667],[125,266,65,-0.02499479166666667],[125,266,66,-0.02499479166666667],[125,266,67,-0.02499479166666667],[125,266,68,-0.02499479166666667],[125,266,69,-0.02499479166666667],[125,266,70,-0.02499479166666667],[125,266,71,-0.02499479166666667],[125,266,72,-0.02499479166666667],[125,266,73,-0.02499479166666667],[125,266,74,-0.02499479166666667],[125,266,75,-0.02499479166666667],[125,266,76,-0.02499479166666667],[125,266,77,-0.02499479166666667],[125,266,78,-0.02499479166666667],[125,266,79,-0.02499479166666667],[125,267,64,-0.02499479166666667],[125,267,65,-0.02499479166666667],[125,267,66,-0.02499479166666667],[125,267,67,-0.02499479166666667],[125,267,68,-0.02499479166666667],[125,267,69,-0.02499479166666667],[125,267,70,-0.02499479166666667],[125,267,71,-0.02499479166666667],[125,267,72,-0.02499479166666667],[125,267,73,-0.02499479166666667],[125,267,74,-0.02499479166666667],[125,267,75,-0.02499479166666667],[125,267,76,-0.02499479166666667],[125,267,77,-0.02499479166666667],[125,267,78,-0.02499479166666667],[125,267,79,-0.02499479166666667],[125,268,64,-0.02499479166666667],[125,268,65,-0.02499479166666667],[125,268,66,-0.02499479166666667],[125,268,67,-0.02499479166666667],[125,268,68,-0.02499479166666667],[125,268,69,-0.02499479166666667],[125,268,70,-0.02499479166666667],[125,268,71,-0.02499479166666667],[125,268,72,-0.02499479166666667],[125,268,73,-0.02499479166666667],[125,268,74,-0.02499479166666667],[125,268,75,-0.02499479166666667],[125,268,76,-0.02499479166666667],[125,268,77,-0.02499479166666667],[125,268,78,-0.02499479166666667],[125,268,79,-0.02499479166666667],[125,269,64,-0.02499479166666667],[125,269,65,-0.02499479166666667],[125,269,66,-0.02499479166666667],[125,269,67,-0.02499479166666667],[125,269,68,-0.02499479166666667],[125,269,69,-0.02499479166666667],[125,269,70,-0.02499479166666667],[125,269,71,-0.02499479166666667],[125,269,72,-0.02499479166666667],[125,269,73,-0.02499479166666667],[125,269,74,-0.02499479166666667],[125,269,75,-0.02499479166666667],[125,269,76,-0.02499479166666667],[125,269,77,-0.02499479166666667],[125,269,78,-0.02499479166666667],[125,269,79,-0.02499479166666667],[125,270,64,-0.02499479166666667],[125,270,65,-0.02499479166666667],[125,270,66,-0.02499479166666667],[125,270,67,-0.02499479166666667],[125,270,68,-0.02499479166666667],[125,270,69,-0.02499479166666667],[125,270,70,-0.02499479166666667],[125,270,71,-0.02499479166666667],[125,270,72,-0.02499479166666667],[125,270,73,-0.02499479166666667],[125,270,74,-0.02499479166666667],[125,270,75,-0.02499479166666667],[125,270,76,-0.02499479166666667],[125,270,77,-0.02499479166666667],[125,270,78,-0.02499479166666667],[125,270,79,-0.02499479166666667],[125,271,64,-0.02499479166666667],[125,271,65,-0.02499479166666667],[125,271,66,-0.02499479166666667],[125,271,67,-0.02499479166666667],[125,271,68,-0.02499479166666667],[125,271,69,-0.02499479166666667],[125,271,70,-0.02499479166666667],[125,271,71,-0.02499479166666667],[125,271,72,-0.02499479166666667],[125,271,73,-0.02499479166666667],[125,271,74,-0.02499479166666667],[125,271,75,-0.02499479166666667],[125,271,76,-0.02499479166666667],[125,271,77,-0.02499479166666667],[125,271,78,-0.02499479166666667],[125,271,79,-0.02499479166666667],[125,272,64,-0.02499479166666667],[125,272,65,-0.02499479166666667],[125,272,66,-0.02499479166666667],[125,272,67,-0.02499479166666667],[125,272,68,-0.02499479166666667],[125,272,69,-0.02499479166666667],[125,272,70,-0.02499479166666667],[125,272,71,-0.02499479166666667],[125,272,72,-0.02499479166666667],[125,272,73,-0.02499479166666667],[125,272,74,-0.02499479166666667],[125,272,75,-0.02499479166666667],[125,272,76,-0.02499479166666667],[125,272,77,-0.02499479166666667],[125,272,78,-0.02499479166666667],[125,272,79,-0.02499479166666667],[125,273,64,-0.02499479166666667],[125,273,65,-0.02499479166666667],[125,273,66,-0.02499479166666667],[125,273,67,-0.02499479166666667],[125,273,68,-0.02499479166666667],[125,273,69,-0.02499479166666667],[125,273,70,-0.02499479166666667],[125,273,71,-0.02499479166666667],[125,273,72,-0.02499479166666667],[125,273,73,-0.02499479166666667],[125,273,74,-0.02499479166666667],[125,273,75,-0.02499479166666667],[125,273,76,-0.02499479166666667],[125,273,77,-0.02499479166666667],[125,273,78,-0.02499479166666667],[125,273,79,-0.02499479166666667],[125,274,64,-0.02499479166666667],[125,274,65,-0.02499479166666667],[125,274,66,-0.02499479166666667],[125,274,67,-0.02499479166666667],[125,274,68,-0.02499479166666667],[125,274,69,-0.02499479166666667],[125,274,70,-0.02499479166666667],[125,274,71,-0.02499479166666667],[125,274,72,-0.02499479166666667],[125,274,73,-0.02499479166666667],[125,274,74,-0.02499479166666667],[125,274,75,-0.02499479166666667],[125,274,76,-0.02499479166666667],[125,274,77,-0.02499479166666667],[125,274,78,-0.02499479166666667],[125,274,79,-0.02499479166666667],[125,275,64,-0.02499479166666667],[125,275,65,-0.02499479166666667],[125,275,66,-0.02499479166666667],[125,275,67,-0.02499479166666667],[125,275,68,-0.02499479166666667],[125,275,69,-0.02499479166666667],[125,275,70,-0.02499479166666667],[125,275,71,-0.02499479166666667],[125,275,72,-0.02499479166666667],[125,275,73,-0.02499479166666667],[125,275,74,-0.02499479166666667],[125,275,75,-0.02499479166666667],[125,275,76,-0.02499479166666667],[125,275,77,-0.02499479166666667],[125,275,78,-0.02499479166666667],[125,275,79,-0.02499479166666667],[125,276,64,-0.02499479166666667],[125,276,65,-0.02499479166666667],[125,276,66,-0.02499479166666667],[125,276,67,-0.02499479166666667],[125,276,68,-0.02499479166666667],[125,276,69,-0.02499479166666667],[125,276,70,-0.02499479166666667],[125,276,71,-0.02499479166666667],[125,276,72,-0.02499479166666667],[125,276,73,-0.02499479166666667],[125,276,74,-0.02499479166666667],[125,276,75,-0.02499479166666667],[125,276,76,-0.02499479166666667],[125,276,77,-0.02499479166666667],[125,276,78,-0.02499479166666667],[125,276,79,-0.02499479166666667],[125,277,64,-0.02499479166666667],[125,277,65,-0.02499479166666667],[125,277,66,-0.02499479166666667],[125,277,67,-0.02499479166666667],[125,277,68,-0.02499479166666667],[125,277,69,-0.02499479166666667],[125,277,70,-0.02499479166666667],[125,277,71,-0.02499479166666667],[125,277,72,-0.02499479166666667],[125,277,73,-0.02499479166666667],[125,277,74,-0.02499479166666667],[125,277,75,-0.02499479166666667],[125,277,76,-0.02499479166666667],[125,277,77,-0.02499479166666667],[125,277,78,-0.02499479166666667],[125,277,79,-0.02499479166666667],[125,278,64,-0.02499479166666667],[125,278,65,-0.02499479166666667],[125,278,66,-0.02499479166666667],[125,278,67,-0.02499479166666667],[125,278,68,-0.02499479166666667],[125,278,69,-0.02499479166666667],[125,278,70,-0.02499479166666667],[125,278,71,-0.02499479166666667],[125,278,72,-0.02499479166666667],[125,278,73,-0.02499479166666667],[125,278,74,-0.02499479166666667],[125,278,75,-0.02499479166666667],[125,278,76,-0.02499479166666667],[125,278,77,-0.02499479166666667],[125,278,78,-0.02499479166666667],[125,278,79,-0.02499479166666667],[125,279,64,-0.02499479166666667],[125,279,65,-0.02499479166666667],[125,279,66,-0.02499479166666667],[125,279,67,-0.02499479166666667],[125,279,68,-0.02499479166666667],[125,279,69,-0.02499479166666667],[125,279,70,-0.02499479166666667],[125,279,71,-0.02499479166666667],[125,279,72,-0.02499479166666667],[125,279,73,-0.02499479166666667],[125,279,74,-0.02499479166666667],[125,279,75,-0.02499479166666667],[125,279,76,-0.02499479166666667],[125,279,77,-0.02499479166666667],[125,279,78,-0.02499479166666667],[125,279,79,-0.02499479166666667],[125,280,64,-0.02499479166666667],[125,280,65,-0.02499479166666667],[125,280,66,-0.02499479166666667],[125,280,67,-0.02499479166666667],[125,280,68,-0.02499479166666667],[125,280,69,-0.02499479166666667],[125,280,70,-0.02499479166666667],[125,280,71,-0.02499479166666667],[125,280,72,-0.02499479166666667],[125,280,73,-0.02499479166666667],[125,280,74,-0.02499479166666667],[125,280,75,-0.02499479166666667],[125,280,76,-0.02499479166666667],[125,280,77,-0.02499479166666667],[125,280,78,-0.02499479166666667],[125,280,79,-0.02499479166666667],[125,281,64,-0.02499479166666667],[125,281,65,-0.02499479166666667],[125,281,66,-0.02499479166666667],[125,281,67,-0.02499479166666667],[125,281,68,-0.02499479166666667],[125,281,69,-0.02499479166666667],[125,281,70,-0.02499479166666667],[125,281,71,-0.02499479166666667],[125,281,72,-0.02499479166666667],[125,281,73,-0.02499479166666667],[125,281,74,-0.02499479166666667],[125,281,75,-0.02499479166666667],[125,281,76,-0.02499479166666667],[125,281,77,-0.02499479166666667],[125,281,78,-0.02499479166666667],[125,281,79,-0.02499479166666667],[125,282,64,-0.02499479166666667],[125,282,65,-0.02499479166666667],[125,282,66,-0.02499479166666667],[125,282,67,-0.02499479166666667],[125,282,68,-0.02499479166666667],[125,282,69,-0.02499479166666667],[125,282,70,-0.02499479166666667],[125,282,71,-0.02499479166666667],[125,282,72,-0.02499479166666667],[125,282,73,-0.02499479166666667],[125,282,74,-0.02499479166666667],[125,282,75,-0.02499479166666667],[125,282,76,-0.02499479166666667],[125,282,77,-0.02499479166666667],[125,282,78,-0.02499479166666667],[125,282,79,-0.02499479166666667],[125,283,64,-0.02499479166666667],[125,283,65,-0.02499479166666667],[125,283,66,-0.02499479166666667],[125,283,67,-0.02499479166666667],[125,283,68,-0.02499479166666667],[125,283,69,-0.02499479166666667],[125,283,70,-0.02499479166666667],[125,283,71,-0.02499479166666667],[125,283,72,-0.02499479166666667],[125,283,73,-0.02499479166666667],[125,283,74,-0.02499479166666667],[125,283,75,-0.02499479166666667],[125,283,76,-0.02499479166666667],[125,283,77,-0.02499479166666667],[125,283,78,-0.02499479166666667],[125,283,79,-0.02499479166666667],[125,284,64,-0.02499479166666667],[125,284,65,-0.02499479166666667],[125,284,66,-0.02499479166666667],[125,284,67,-0.02499479166666667],[125,284,68,-0.02499479166666667],[125,284,69,-0.02499479166666667],[125,284,70,-0.02499479166666667],[125,284,71,-0.02499479166666667],[125,284,72,-0.02499479166666667],[125,284,73,-0.02499479166666667],[125,284,74,-0.02499479166666667],[125,284,75,-0.02499479166666667],[125,284,76,-0.02499479166666667],[125,284,77,-0.02499479166666667],[125,284,78,-0.02499479166666667],[125,284,79,-0.02499479166666667],[125,285,64,-0.02499479166666667],[125,285,65,-0.02499479166666667],[125,285,66,-0.02499479166666667],[125,285,67,-0.02499479166666667],[125,285,68,-0.02499479166666667],[125,285,69,-0.02499479166666667],[125,285,70,-0.02499479166666667],[125,285,71,-0.02499479166666667],[125,285,72,-0.02499479166666667],[125,285,73,-0.02499479166666667],[125,285,74,-0.02499479166666667],[125,285,75,-0.02499479166666667],[125,285,76,-0.02499479166666667],[125,285,77,-0.02499479166666667],[125,285,78,-0.02499479166666667],[125,285,79,-0.02499479166666667],[125,286,64,-0.02499479166666667],[125,286,65,-0.02499479166666667],[125,286,66,-0.02499479166666667],[125,286,67,-0.02499479166666667],[125,286,68,-0.02499479166666667],[125,286,69,-0.02499479166666667],[125,286,70,-0.02499479166666667],[125,286,71,-0.02499479166666667],[125,286,72,-0.02499479166666667],[125,286,73,-0.02499479166666667],[125,286,74,-0.02499479166666667],[125,286,75,-0.02499479166666667],[125,286,76,-0.02499479166666667],[125,286,77,-0.02499479166666667],[125,286,78,-0.02499479166666667],[125,286,79,-0.02499479166666667],[125,287,64,-0.02499479166666667],[125,287,65,-0.02499479166666667],[125,287,66,-0.02499479166666667],[125,287,67,-0.02499479166666667],[125,287,68,-0.02499479166666667],[125,287,69,-0.02499479166666667],[125,287,70,-0.02499479166666667],[125,287,71,-0.02499479166666667],[125,287,72,-0.02499479166666667],[125,287,73,-0.02499479166666667],[125,287,74,-0.02499479166666667],[125,287,75,-0.02499479166666667],[125,287,76,-0.02499479166666667],[125,287,77,-0.02499479166666667],[125,287,78,-0.02499479166666667],[125,287,79,-0.02499479166666667],[125,288,64,-0.02499479166666667],[125,288,65,-0.02499479166666667],[125,288,66,-0.02499479166666667],[125,288,67,-0.02499479166666667],[125,288,68,-0.02499479166666667],[125,288,69,-0.02499479166666667],[125,288,70,-0.02499479166666667],[125,288,71,-0.02499479166666667],[125,288,72,-0.02499479166666667],[125,288,73,-0.02499479166666667],[125,288,74,-0.02499479166666667],[125,288,75,-0.02499479166666667],[125,288,76,-0.02499479166666667],[125,288,77,-0.02499479166666667],[125,288,78,-0.02499479166666667],[125,288,79,-0.02499479166666667],[125,289,64,-0.02499479166666667],[125,289,65,-0.02499479166666667],[125,289,66,-0.02499479166666667],[125,289,67,-0.02499479166666667],[125,289,68,-0.02499479166666667],[125,289,69,-0.02499479166666667],[125,289,70,-0.02499479166666667],[125,289,71,-0.02499479166666667],[125,289,72,-0.02499479166666667],[125,289,73,-0.02499479166666667],[125,289,74,-0.02499479166666667],[125,289,75,-0.02499479166666667],[125,289,76,-0.02499479166666667],[125,289,77,-0.02499479166666667],[125,289,78,-0.02499479166666667],[125,289,79,-0.02499479166666667],[125,290,64,-0.02499479166666667],[125,290,65,-0.02499479166666667],[125,290,66,-0.02499479166666667],[125,290,67,-0.02499479166666667],[125,290,68,-0.02499479166666667],[125,290,69,-0.02499479166666667],[125,290,70,-0.02499479166666667],[125,290,71,-0.02499479166666667],[125,290,72,-0.02499479166666667],[125,290,73,-0.02499479166666667],[125,290,74,-0.02499479166666667],[125,290,75,-0.02499479166666667],[125,290,76,-0.02499479166666667],[125,290,77,-0.02499479166666667],[125,290,78,-0.02499479166666667],[125,290,79,-0.02499479166666667],[125,291,64,-0.02499479166666667],[125,291,65,-0.02499479166666667],[125,291,66,-0.02499479166666667],[125,291,67,-0.02499479166666667],[125,291,68,-0.02499479166666667],[125,291,69,-0.02499479166666667],[125,291,70,-0.02499479166666667],[125,291,71,-0.02499479166666667],[125,291,72,-0.02499479166666667],[125,291,73,-0.02499479166666667],[125,291,74,-0.02499479166666667],[125,291,75,-0.02499479166666667],[125,291,76,-0.02499479166666667],[125,291,77,-0.02499479166666667],[125,291,78,-0.02499479166666667],[125,291,79,-0.02499479166666667],[125,292,64,-0.02499479166666667],[125,292,65,-0.02499479166666667],[125,292,66,-0.02499479166666667],[125,292,67,-0.02499479166666667],[125,292,68,-0.02499479166666667],[125,292,69,-0.02499479166666667],[125,292,70,-0.02499479166666667],[125,292,71,-0.02499479166666667],[125,292,72,-0.02499479166666667],[125,292,73,-0.02499479166666667],[125,292,74,-0.02499479166666667],[125,292,75,-0.02499479166666667],[125,292,76,-0.02499479166666667],[125,292,77,-0.02499479166666667],[125,292,78,-0.02499479166666667],[125,292,79,-0.02499479166666667],[125,293,64,-0.02499479166666667],[125,293,65,-0.02499479166666667],[125,293,66,-0.02499479166666667],[125,293,67,-0.02499479166666667],[125,293,68,-0.02499479166666667],[125,293,69,-0.02499479166666667],[125,293,70,-0.02499479166666667],[125,293,71,-0.02499479166666667],[125,293,72,-0.02499479166666667],[125,293,73,-0.02499479166666667],[125,293,74,-0.02499479166666667],[125,293,75,-0.02499479166666667],[125,293,76,-0.02499479166666667],[125,293,77,-0.02499479166666667],[125,293,78,-0.02499479166666667],[125,293,79,-0.02499479166666667],[125,294,64,-0.02499479166666667],[125,294,65,-0.02499479166666667],[125,294,66,-0.02499479166666667],[125,294,67,-0.02499479166666667],[125,294,68,-0.02499479166666667],[125,294,69,-0.02499479166666667],[125,294,70,-0.02499479166666667],[125,294,71,-0.02499479166666667],[125,294,72,-0.02499479166666667],[125,294,73,-0.02499479166666667],[125,294,74,-0.02499479166666667],[125,294,75,-0.02499479166666667],[125,294,76,-0.02499479166666667],[125,294,77,-0.02499479166666667],[125,294,78,-0.02499479166666667],[125,294,79,-0.02499479166666667],[125,295,64,-0.02499479166666667],[125,295,65,-0.02499479166666667],[125,295,66,-0.02499479166666667],[125,295,67,-0.02499479166666667],[125,295,68,-0.02499479166666667],[125,295,69,-0.02499479166666667],[125,295,70,-0.02499479166666667],[125,295,71,-0.02499479166666667],[125,295,72,-0.02499479166666667],[125,295,73,-0.02499479166666667],[125,295,74,-0.02499479166666667],[125,295,75,-0.02499479166666667],[125,295,76,-0.02499479166666667],[125,295,77,-0.02499479166666667],[125,295,78,-0.02499479166666667],[125,295,79,-0.02499479166666667],[125,296,64,-0.02499479166666667],[125,296,65,-0.02499479166666667],[125,296,66,-0.02499479166666667],[125,296,67,-0.02499479166666667],[125,296,68,-0.02499479166666667],[125,296,69,-0.02499479166666667],[125,296,70,-0.02499479166666667],[125,296,71,-0.02499479166666667],[125,296,72,-0.02499479166666667],[125,296,73,-0.02499479166666667],[125,296,74,-0.02499479166666667],[125,296,75,-0.02499479166666667],[125,296,76,-0.02499479166666667],[125,296,77,-0.02499479166666667],[125,296,78,-0.02499479166666667],[125,296,79,-0.02499479166666667],[125,297,64,-0.02499479166666667],[125,297,65,-0.02499479166666667],[125,297,66,-0.02499479166666667],[125,297,67,-0.02499479166666667],[125,297,68,-0.02499479166666667],[125,297,69,-0.02499479166666667],[125,297,70,-0.02499479166666667],[125,297,71,-0.02499479166666667],[125,297,72,-0.02499479166666667],[125,297,73,-0.02499479166666667],[125,297,74,-0.02499479166666667],[125,297,75,-0.02499479166666667],[125,297,76,-0.02499479166666667],[125,297,77,-0.02499479166666667],[125,297,78,-0.02499479166666667],[125,297,79,-0.02499479166666667],[125,298,64,-0.02499479166666667],[125,298,65,-0.02499479166666667],[125,298,66,-0.02499479166666667],[125,298,67,-0.02499479166666667],[125,298,68,-0.02499479166666667],[125,298,69,-0.02499479166666667],[125,298,70,-0.02499479166666667],[125,298,71,-0.02499479166666667],[125,298,72,-0.02499479166666667],[125,298,73,-0.02499479166666667],[125,298,74,-0.02499479166666667],[125,298,75,-0.02499479166666667],[125,298,76,-0.02499479166666667],[125,298,77,-0.02499479166666667],[125,298,78,-0.02499479166666667],[125,298,79,-0.02499479166666667],[125,299,64,-0.02499479166666667],[125,299,65,-0.02499479166666667],[125,299,66,-0.02499479166666667],[125,299,67,-0.02499479166666667],[125,299,68,-0.02499479166666667],[125,299,69,-0.02499479166666667],[125,299,70,-0.02499479166666667],[125,299,71,-0.02499479166666667],[125,299,72,-0.02499479166666667],[125,299,73,-0.02499479166666667],[125,299,74,-0.02499479166666667],[125,299,75,-0.02499479166666667],[125,299,76,-0.02499479166666667],[125,299,77,-0.02499479166666667],[125,299,78,-0.02499479166666667],[125,299,79,-0.02499479166666667],[125,300,64,-0.02499479166666667],[125,300,65,-0.02499479166666667],[125,300,66,-0.02499479166666667],[125,300,67,-0.02499479166666667],[125,300,68,-0.02499479166666667],[125,300,69,-0.02499479166666667],[125,300,70,-0.02499479166666667],[125,300,71,-0.02499479166666667],[125,300,72,-0.02499479166666667],[125,300,73,-0.02499479166666667],[125,300,74,-0.02499479166666667],[125,300,75,-0.02499479166666667],[125,300,76,-0.02499479166666667],[125,300,77,-0.02499479166666667],[125,300,78,-0.02499479166666667],[125,300,79,-0.02499479166666667],[125,301,64,-0.02499479166666667],[125,301,65,-0.02499479166666667],[125,301,66,-0.02499479166666667],[125,301,67,-0.02499479166666667],[125,301,68,-0.02499479166666667],[125,301,69,-0.02499479166666667],[125,301,70,-0.02499479166666667],[125,301,71,-0.02499479166666667],[125,301,72,-0.02499479166666667],[125,301,73,-0.02499479166666667],[125,301,74,-0.02499479166666667],[125,301,75,-0.02499479166666667],[125,301,76,-0.02499479166666667],[125,301,77,-0.02499479166666667],[125,301,78,-0.02499479166666667],[125,301,79,-0.02499479166666667],[125,302,64,-0.02499479166666667],[125,302,65,-0.02499479166666667],[125,302,66,-0.02499479166666667],[125,302,67,-0.02499479166666667],[125,302,68,-0.02499479166666667],[125,302,69,-0.02499479166666667],[125,302,70,-0.02499479166666667],[125,302,71,-0.02499479166666667],[125,302,72,-0.02499479166666667],[125,302,73,-0.02499479166666667],[125,302,74,-0.02499479166666667],[125,302,75,-0.02499479166666667],[125,302,76,-0.02499479166666667],[125,302,77,-0.02499479166666667],[125,302,78,-0.02499479166666667],[125,302,79,-0.02499479166666667],[125,303,64,-0.02499479166666667],[125,303,65,-0.02499479166666667],[125,303,66,-0.02499479166666667],[125,303,67,-0.02499479166666667],[125,303,68,-0.02499479166666667],[125,303,69,-0.02499479166666667],[125,303,70,-0.02499479166666667],[125,303,71,-0.02499479166666667],[125,303,72,-0.02499479166666667],[125,303,73,-0.02499479166666667],[125,303,74,-0.02499479166666667],[125,303,75,-0.02499479166666667],[125,303,76,-0.02499479166666667],[125,303,77,-0.02499479166666667],[125,303,78,-0.02499479166666667],[125,303,79,-0.02499479166666667],[125,304,64,-0.02499479166666667],[125,304,65,-0.02499479166666667],[125,304,66,-0.02499479166666667],[125,304,67,-0.02499479166666667],[125,304,68,-0.02499479166666667],[125,304,69,-0.02499479166666667],[125,304,70,-0.02499479166666667],[125,304,71,-0.02499479166666667],[125,304,72,-0.02499479166666667],[125,304,73,-0.02499479166666667],[125,304,74,-0.02499479166666667],[125,304,75,-0.02499479166666667],[125,304,76,-0.02499479166666667],[125,304,77,-0.02499479166666667],[125,304,78,-0.02499479166666667],[125,304,79,-0.02499479166666667],[125,305,64,-0.02499479166666667],[125,305,65,-0.02499479166666667],[125,305,66,-0.02499479166666667],[125,305,67,-0.02499479166666667],[125,305,68,-0.02499479166666667],[125,305,69,-0.02499479166666667],[125,305,70,-0.02499479166666667],[125,305,71,-0.02499479166666667],[125,305,72,-0.02499479166666667],[125,305,73,-0.02499479166666667],[125,305,74,-0.02499479166666667],[125,305,75,-0.02499479166666667],[125,305,76,-0.02499479166666667],[125,305,77,-0.02499479166666667],[125,305,78,-0.02499479166666667],[125,305,79,-0.02499479166666667],[125,306,64,-0.02499479166666667],[125,306,65,-0.02499479166666667],[125,306,66,-0.02499479166666667],[125,306,67,-0.02499479166666667],[125,306,68,-0.02499479166666667],[125,306,69,-0.02499479166666667],[125,306,70,-0.02499479166666667],[125,306,71,-0.02499479166666667],[125,306,72,-0.02499479166666667],[125,306,73,-0.02499479166666667],[125,306,74,-0.02499479166666667],[125,306,75,-0.02499479166666667],[125,306,76,-0.02499479166666667],[125,306,77,-0.02499479166666667],[125,306,78,-0.02499479166666667],[125,306,79,-0.02499479166666667],[125,307,64,-0.02499479166666667],[125,307,65,-0.02499479166666667],[125,307,66,-0.02499479166666667],[125,307,67,-0.02499479166666667],[125,307,68,-0.02499479166666667],[125,307,69,-0.02499479166666667],[125,307,70,-0.02499479166666667],[125,307,71,-0.02499479166666667],[125,307,72,-0.02499479166666667],[125,307,73,-0.02499479166666667],[125,307,74,-0.02499479166666667],[125,307,75,-0.02499479166666667],[125,307,76,-0.02499479166666667],[125,307,77,-0.02499479166666667],[125,307,78,-0.02499479166666667],[125,307,79,-0.02499479166666667],[125,308,64,-0.02499479166666667],[125,308,65,-0.02499479166666667],[125,308,66,-0.02499479166666667],[125,308,67,-0.02499479166666667],[125,308,68,-0.02499479166666667],[125,308,69,-0.02499479166666667],[125,308,70,-0.02499479166666667],[125,308,71,-0.02499479166666667],[125,308,72,-0.02499479166666667],[125,308,73,-0.02499479166666667],[125,308,74,-0.02499479166666667],[125,308,75,-0.02499479166666667],[125,308,76,-0.02499479166666667],[125,308,77,-0.02499479166666667],[125,308,78,-0.02499479166666667],[125,308,79,-0.02499479166666667],[125,309,64,-0.02499479166666667],[125,309,65,-0.02499479166666667],[125,309,66,-0.02499479166666667],[125,309,67,-0.02499479166666667],[125,309,68,-0.02499479166666667],[125,309,69,-0.02499479166666667],[125,309,70,-0.02499479166666667],[125,309,71,-0.02499479166666667],[125,309,72,-0.02499479166666667],[125,309,73,-0.02499479166666667],[125,309,74,-0.02499479166666667],[125,309,75,-0.02499479166666667],[125,309,76,-0.02499479166666667],[125,309,77,-0.02499479166666667],[125,309,78,-0.02499479166666667],[125,309,79,-0.02499479166666667],[125,310,64,-0.02499479166666667],[125,310,65,-0.02499479166666667],[125,310,66,-0.02499479166666667],[125,310,67,-0.02499479166666667],[125,310,68,-0.02499479166666667],[125,310,69,-0.02499479166666667],[125,310,70,-0.02499479166666667],[125,310,71,-0.02499479166666667],[125,310,72,-0.02499479166666667],[125,310,73,-0.02499479166666667],[125,310,74,-0.02499479166666667],[125,310,75,-0.02499479166666667],[125,310,76,-0.02499479166666667],[125,310,77,-0.02499479166666667],[125,310,78,-0.02499479166666667],[125,310,79,-0.02499479166666667],[125,311,64,-0.02499479166666667],[125,311,65,-0.02499479166666667],[125,311,66,-0.02499479166666667],[125,311,67,-0.02499479166666667],[125,311,68,-0.02499479166666667],[125,311,69,-0.02499479166666667],[125,311,70,-0.02499479166666667],[125,311,71,-0.02499479166666667],[125,311,72,-0.02499479166666667],[125,311,73,-0.02499479166666667],[125,311,74,-0.02499479166666667],[125,311,75,-0.02499479166666667],[125,311,76,-0.02499479166666667],[125,311,77,-0.02499479166666667],[125,311,78,-0.02499479166666667],[125,311,79,-0.02499479166666667],[125,312,64,-0.02499479166666667],[125,312,65,-0.02499479166666667],[125,312,66,-0.02499479166666667],[125,312,67,-0.02499479166666667],[125,312,68,-0.02499479166666667],[125,312,69,-0.02499479166666667],[125,312,70,-0.02499479166666667],[125,312,71,-0.02499479166666667],[125,312,72,-0.02499479166666667],[125,312,73,-0.02499479166666667],[125,312,74,-0.02499479166666667],[125,312,75,-0.02499479166666667],[125,312,76,-0.02499479166666667],[125,312,77,-0.02499479166666667],[125,312,78,-0.02499479166666667],[125,312,79,-0.02499479166666667],[125,313,64,-0.02499479166666667],[125,313,65,-0.02499479166666667],[125,313,66,-0.02499479166666667],[125,313,67,-0.02499479166666667],[125,313,68,-0.02499479166666667],[125,313,69,-0.02499479166666667],[125,313,70,-0.02499479166666667],[125,313,71,-0.02499479166666667],[125,313,72,-0.02499479166666667],[125,313,73,-0.02499479166666667],[125,313,74,-0.02499479166666667],[125,313,75,-0.02499479166666667],[125,313,76,-0.02499479166666667],[125,313,77,-0.02499479166666667],[125,313,78,-0.02499479166666667],[125,313,79,-0.02499479166666667],[125,314,64,-0.02499479166666667],[125,314,65,-0.02499479166666667],[125,314,66,-0.02499479166666667],[125,314,67,-0.02499479166666667],[125,314,68,-0.02499479166666667],[125,314,69,-0.02499479166666667],[125,314,70,-0.02499479166666667],[125,314,71,-0.02499479166666667],[125,314,72,-0.02499479166666667],[125,314,73,-0.02499479166666667],[125,314,74,-0.02499479166666667],[125,314,75,-0.02499479166666667],[125,314,76,-0.02499479166666667],[125,314,77,-0.02499479166666667],[125,314,78,-0.02499479166666667],[125,314,79,-0.02499479166666667],[125,315,64,-0.02499479166666667],[125,315,65,-0.02499479166666667],[125,315,66,-0.02499479166666667],[125,315,67,-0.02499479166666667],[125,315,68,-0.02499479166666667],[125,315,69,-0.02499479166666667],[125,315,70,-0.02499479166666667],[125,315,71,-0.02499479166666667],[125,315,72,-0.02499479166666667],[125,315,73,-0.02499479166666667],[125,315,74,-0.02499479166666667],[125,315,75,-0.02499479166666667],[125,315,76,-0.02499479166666667],[125,315,77,-0.02499479166666667],[125,315,78,-0.02499479166666667],[125,315,79,-0.02499479166666667],[125,316,64,-0.02499479166666667],[125,316,65,-0.02499479166666667],[125,316,66,-0.02499479166666667],[125,316,67,-0.02499479166666667],[125,316,68,-0.02499479166666667],[125,316,69,-0.02499479166666667],[125,316,70,-0.02499479166666667],[125,316,71,-0.02499479166666667],[125,316,72,-0.02499479166666667],[125,316,73,-0.02499479166666667],[125,316,74,-0.02499479166666667],[125,316,75,-0.02499479166666667],[125,316,76,-0.02499479166666667],[125,316,77,-0.02499479166666667],[125,316,78,-0.02499479166666667],[125,316,79,-0.02499479166666667],[125,317,64,-0.02499479166666667],[125,317,65,-0.02499479166666667],[125,317,66,-0.02499479166666667],[125,317,67,-0.02499479166666667],[125,317,68,-0.02499479166666667],[125,317,69,-0.02499479166666667],[125,317,70,-0.02499479166666667],[125,317,71,-0.02499479166666667],[125,317,72,-0.02499479166666667],[125,317,73,-0.02499479166666667],[125,317,74,-0.02499479166666667],[125,317,75,-0.02499479166666667],[125,317,76,-0.02499479166666667],[125,317,77,-0.02499479166666667],[125,317,78,-0.02499479166666667],[125,317,79,-0.02499479166666667],[125,318,64,-0.02499479166666667],[125,318,65,-0.02499479166666667],[125,318,66,-0.02499479166666667],[125,318,67,-0.02499479166666667],[125,318,68,-0.02499479166666667],[125,318,69,-0.02499479166666667],[125,318,70,-0.02499479166666667],[125,318,71,-0.02499479166666667],[125,318,72,-0.02499479166666667],[125,318,73,-0.02499479166666667],[125,318,74,-0.02499479166666667],[125,318,75,-0.02499479166666667],[125,318,76,-0.02499479166666667],[125,318,77,-0.02499479166666667],[125,318,78,-0.02499479166666667],[125,318,79,-0.02499479166666667],[125,319,64,-0.02499479166666667],[125,319,65,-0.02499479166666667],[125,319,66,-0.02499479166666667],[125,319,67,-0.02499479166666667],[125,319,68,-0.02499479166666667],[125,319,69,-0.02499479166666667],[125,319,70,-0.02499479166666667],[125,319,71,-0.02499479166666667],[125,319,72,-0.02499479166666667],[125,319,73,-0.02499479166666667],[125,319,74,-0.02499479166666667],[125,319,75,-0.02499479166666667],[125,319,76,-0.02499479166666667],[125,319,77,-0.02499479166666667],[125,319,78,-0.02499479166666667],[125,319,79,-0.02499479166666667],[126,-64,64,0.037482421875],[126,-64,65,0.037482421875],[126,-64,66,0.037482421875],[126,-64,67,0.037482421875],[126,-64,68,0.037482421875],[126,-64,69,0.037482421875],[126,-64,70,0.037482421875],[126,-64,71,0.037482421875],[126,-64,72,0.037482421875],[126,-64,73,0.037482421875],[126,-64,74,0.037482421875],[126,-64,75,0.037482421875],[126,-64,76,0.037482421875],[126,-64,77,0.037482421875],[126,-64,78,0.037482421875],[126,-64,79,0.037482421875],[126,-63,64,0.040536555329528254],[126,-63,65,0.04061945561014341],[126,-63,66,0.04070373313776084],[126,-63,67,0.0407892068403144],[126,-63,68,0.040875832941980716],[126,-63,69,0.040963719145010666],[126,-63,70,0.041052958958355326],[126,-63,71,0.04114361383874809],[126,-63,72,0.04123570106059381],[126,-63,73,0.0413291836106129],[126,-63,74,0.04142396216474675],[126,-63,75,0.04151986920295933],[126,-63,76,0.04161666531535882],[126,-63,77,0.041714037750540084],[126,-63,78,0.04181160125424188],[126,-63,79,0.0419089012433666],[126,-62,64,0.043676762941171524],[126,-62,65,0.043844668428561044],[126,-62,66,0.0440154096678973],[126,-62,67,0.04418862944085138],[126,-62,68,0.04436421548868111],[126,-62,69,0.044542343107299015],[126,-62,70,0.04472316468287532],[126,-62,71,0.0449067741543536],[126,-62,72,0.045093182488727485],[126,-62,73,0.04528229720368376],[126,-62,74,0.04547390605064274],[126,-62,75,0.04566766496744556],[126,-62,76,0.04586309040547327],[126,-62,77,0.046059556130895005],[126,-62,78,0.04625629459409224],[126,-62,79,0.04645240295519],[126,-61,64,0.046910311506063444],[126,-61,65,0.04716507148811561],[126,-61,66,0.047424143992018566],[126,-61,67,0.04768701415127178],[126,-61,68,0.0479534757941816],[126,-61,69,0.048223720402696825],[126,-61,70,0.048497916493755434],[126,-61,71,0.04877615668540864],[126,-61,72,0.04905842028416253],[126,-61,73,0.049344541929292426],[126,-61,74,0.04963418646058164],[126,-61,75,0.04992683017023288],[126,-61,76,0.050221748592962905],[126,-61,77,0.05051801098061811],[126,-61,78,0.05081448159913551],[126,-61,79,0.05110982797647575],[126,-60,64,0.05024330978368198],[126,-60,65,0.05058649314642519],[126,-60,66,0.05093542123713047],[126,-60,67,0.05128945126613924],[126,-60,68,0.05164825745773993],[126,-60,69,0.052011987214084544],[126,-60,70,0.052380776473173525],[126,-60,71,0.052754679716287764],[126,-60,72,0.053133618951577574],[126,-60,73,0.053517340741899816],[126,-60,74,0.05390538149459787],[126,-60,75,0.05429704122330488],[126,-60,76,0.054691365982848274],[126,-60,77,0.055087139168075235],[126,-60,78,0.05548288185604146],[126,-60,79,0.05587686235873162],[126,-59,64,0.05368045065705883],[126,-59,65,0.05411331926702508],[126,-59,66,0.05455326146235553],[126,-59,67,0.05499954392000916],[126,-59,68,0.055451695438344856],[126,-59,69,0.055909753064180515],[126,-59,70,0.0563737679338648],[126,-59,71,0.056843718555317925],[126,-59,72,0.05731944526288302],[126,-59,73,0.05780059467424892],[126,-59,74,0.058286574416186794],[126,-59,75,0.0587765183763536],[126,-59,76,0.059269262727176864],[126,-59,77,0.05976333295501658],[126,-59,78,0.060256942113578175],[126,-59,79,0.060748000505219536],[126,-58,64,0.057224806769925675],[126,-58,65,0.057748286944098205],[126,-58,66,0.05828001561610558],[126,-58,67,0.05881920905927879],[126,-58,68,0.059365224341616576],[126,-58,69,0.05991791900381967],[126,-58,70,0.06047720629555649],[126,-58,71,0.06104295198584061],[126,-58,72,0.06161489317392691],[126,-58,73,0.06219256902639495],[126,-58,74,0.06277526375406449],[126,-58,75,0.06336196213107231],[126,-58,76,0.0639513178450174],[126,-58,77,0.06454163495174561],[126,-58,78,0.06513086269131958],[126,-58,79,0.06571660390336619],[126,-57,64,0.060877691631403885],[126,-57,65,0.06149234358317846],[126,-57,66,0.06211622696362974],[126,-57,67,0.0627485440713091],[126,-57,68,0.06338845245682775],[126,-57,69,0.06403556140771706],[126,-57,70,0.06468959507810672],[126,-57,71,0.06535027290933129],[126,-57,72,0.06601721151416717],[126,-57,73,0.06668984037692205],[126,-57,74,0.06736733172790185],[126,-57,75,0.06804854493769219],[126,-57,76,0.06873198576114722],[126,-57,77,0.06941578074319142],[126,-57,78,0.07009766707876443],[126,-57,79,0.07077499819790985],[126,-56,64,0.06463830867203904],[126,-56,65,0.06534430001670581],[126,-56,66,0.06606029080847832],[126,-56,67,0.06678549534606597],[126,-56,68,0.06751884142932447],[126,-56,69,0.06825962524011728],[126,-56,70,0.06900733528750655],[126,-56,71,0.06976151627336485],[126,-56,72,0.07052165264664574],[126,-56,73,0.07128706783061084],[126,-56,74,0.07205683952454414],[126,-56,75,0.07282973146666828],[126,-56,76,0.07360414202737997],[126,-56,77,0.07437806998175224],[126,-56,78,0.0751490977877966],[126,-56,79,0.07591439267272479],[126,-55,64,0.06850175005865616],[126,-55,65,0.06929887839534997],[126,-55,66,0.07010653926541391],[126,-55,67,0.07092397733424674],[126,-55,68,0.07174986302618268],[126,-55,69,0.07258312341283249],[126,-55,70,0.07342297264377476],[126,-55,71,0.07426875903310172],[126,-55,72,0.07511982897459477],[126,-55,73,0.07597540834804516],[126,-55,74,0.07683450185919574],[126,-55,75,0.0776958107392593],[126,-55,76,0.07855766921037696],[126,-55,77,0.07941800010091382],[126,-55,78,0.08027428996943108],[126,-55,79,0.0811235840690732],[126,-54,64,0.07246002553929437],[126,-54,65,0.07334774362630163],[126,-54,66,0.07424627708035056],[126,-54,67,0.07515491449388058],[126,-54,68,0.076072048231352],[126,-54,69,0.07699619316825417],[126,-54,70,0.07792626078253838],[126,-54,71,0.0788613893342785],[126,-54,72,0.07980078710174777],[126,-54,73,0.08074359487571038],[126,-54,74,0.0816887681928702],[126,-54,75,0.08263497977118045],[126,-54,76,0.08358054258818533],[126,-54,77,0.0845233540188825],[126,-54,78,0.08546086142203599],[126,-54,79,0.08639004953400772],[126,-53,64,0.07650348515626303],[126,-53,65,0.07748091476722782],[126,-53,66,0.0784691877973626],[126,-53,67,0.07946764524809774],[126,-53,68,0.08047438946609162],[126,-53,69,0.08148749574713392],[126,-53,70,0.08250555679728896],[126,-53,71,0.08352749602719642],[126,-53,72,0.08455238943518126],[126,-53,73,0.08557930845142539],[126,-53,74,0.08660718425964714],[126,-53,75,0.08763469409272513],[126,-53,76,0.08866016997526319],[126,-53,77,0.08968153035927642],[126,-53,78,0.09069623506922574],[126,-53,79,0.09170126394011674],[126,-52,64,0.08062144477357396],[126,-52,65,0.08168739384079189],[126,-52,66,0.08276396700768208],[126,-52,67,0.08385056094802279],[126,-52,68,0.08494498608597481],[126,-52,69,0.08604486852784721],[126,-52,70,0.0871484795742511],[126,-52,71,0.08825453234269713],[126,-52,72,0.0893619820688323],[126,-52,73,0.09046984899425609],[126,-52,74,0.09157706438938357],[126,-52,75,0.09268234023795527],[126,-52,76,0.09378406308445009],[126,-52,77,0.09488021251678681],[126,-52,78,0.09596830472446112],[126,-52,79,0.09704536153722985],[126,-51,64,0.08461869253748697],[126,-51,65,0.08595582210929291],[126,-51,66,0.08711898259890788],[126,-51,67,0.08829177106059397],[126,-51,68,0.08947171503927578],[126,-51,69,0.09065600094535717],[126,-51,70,0.0918425901814033],[126,-51,71,0.09302999953368822],[126,-51,72,0.09421708016900764],[126,-51,73,0.09540282075386229],[126,-51,74,0.0965861752724946],[126,-51,75,0.09776591609641018],[126,-51,76,0.0989405128307569],[126,-51,77,0.1001080374320676],[126,-51,78,0.10126609605746181],[126,-51,79,0.10241178806796652],[126,-50,64,0.08850837182999624],[126,-50,65,0.09002995127510033],[126,-50,66,0.0915229753275256],[126,-50,67,0.09277980766239316],[126,-50,68,0.09404293949117037],[126,-50,69,0.09530914669558123],[126,-50,70,0.0965761065102156],[126,-50,71,0.09784216237903207],[126,-50,72,0.09910608247583853],[126,-50,73,0.10036684378209412],[126,-50,74,0.10162344232200994],[126,-50,75,0.10287473012895093],[126,-50,76,0.10411927948793591],[126,-50,77,0.10535527496621606],[126,-50,78,0.10658043370742457],[126,-50,79,0.10779195442507976],[126,-49,64,0.09245138870589739],[126,-49,65,0.09407785379927815],[126,-49,66,0.09570023057778958],[126,-49,67,0.09730349702306434],[126,-49,68,0.09864750345367035],[126,-49,69,0.09999324401698202],[126,-49,70,0.1013381488636733],[126,-49,71,0.10268041675351258],[126,-49,72,0.1040187546441152],[126,-49,73,0.10535214414670267],[126,-49,74,0.10667963546700582],[126,-49,75,0.10800016942123128],[126,-49,76,0.10931242808582765],[126,-49,77,0.1106147146050639],[126,-49,78,0.11190486264196513],[126,-49,79,0.11318017591629236],[126,-48,64,0.0964538319922721],[126,-48,65,0.0981824397954587],[126,-48,66,0.09990864372649624],[126,-48,67,0.10162895727384139],[126,-48,68,0.10327260480977414],[126,-48,69,0.104696154937111],[126,-48,70,0.1061173430918075],[126,-48,71,0.10753424611568282],[126,-48,72,0.10894552043886614],[126,-48,73,0.11035015353262932],[126,-48,74,0.11174724395726929],[126,-48,75,0.11313581060348495],[126,-48,76,0.11451463169257159],[126,-48,77,0.11588211406423056],[126,-48,78,0.11723619324051454],[126,-48,79,0.11857426471065059],[126,-47,64,0.1005215934245073],[126,-47,65,0.10234860965943285],[126,-47,66,0.10417491627681624],[126,-47,67,0.10599684927648823],[126,-47,68,0.1078132256697846],[126,-47,69,0.10940603878146908],[126,-47,70,0.11090277083374309],[126,-47,71,0.11239374250525835],[126,-47,72,0.11387755559841145],[126,-47,73,0.1153531863079964],[126,-47,74,0.11681975497069758],[126,-47,75,0.11827632579402664],[126,-47,76,0.11972173712743708],[126,-47,77,0.1211544628002156],[126,-47,78,0.12257250500892224],[126,-47,79,0.12397331919179827],[126,-46,64,0.1046588748150177],[126,-46,65,0.10657958539571818],[126,-46,66,0.10850118684290729],[126,-46,67,0.11041988401825681],[126,-46,68,0.1123344197207597],[126,-46,69,0.11411212595764854],[126,-46,70,0.11568456534313327],[126,-46,71,0.1172500211980919],[126,-46,72,0.11880702137010107],[126,-46,73,0.12035449536507598],[126,-46,74,0.12189153850800422],[126,-46,75,0.1234172064310971],[126,-46,76,0.12493034043897176],[126,-46,77,0.1264294242610172],[126,-46,78,0.1279124726580733],[126,-46,79,0.1293769523040854],[126,-45,64,0.10886784298344271],[126,-45,65,0.11087659446419867],[126,-45,66,0.11288764619994437],[126,-45,67,0.11489712674512798],[126,-45,68,0.11690368549638495],[126,-45,69,0.11880493154169856],[126,-45,70,0.12045407968255949],[126,-45,71,0.12209534026873722],[126,-45,72,0.12372713278445041],[126,-45,73,0.12534828716598204],[126,-45,74,0.12695780807465332],[126,-45,75,0.12855466930741266],[126,-45,76,0.13013763887017774],[126,-45,77,0.13170513519864582],[126,-45,78,0.13325511496754458],[126,-45,79,0.13478499288229429],[126,-44,64,0.1131483633699453],[126,-44,65,0.11523862894166774],[126,-44,66,0.11733232561350777],[126,-44,67,0.11942556801709073],[126,-44,68,0.12151689827810676],[126,-44,69,0.12347641503455208],[126,-44,70,0.12520400718259586],[126,-44,71,0.12692317899878142],[126,-44,72,0.1286321927598277],[126,-44,73,0.13032970990356327],[126,-44,74,0.1320145619443432],[126,-44,75,0.13368555070797053],[126,-44,76,0.13534127837509985],[126,-44,77,0.1369800077812437],[126,-44,78,0.13859955337763488],[126,-44,79,0.14019720321040716],[126,-43,64,0.1174978109506553],[126,-43,65,0.11966227865990264],[126,-43,66,0.12183095530206622],[126,-43,67,0.12400001021606916],[126,-43,68,0.12616787120696354],[126,-43,69,0.12812008743582365],[126,-43,70,0.12992845524655897],[126,-43,71,0.1317282761771836],[126,-43,72,0.13351759308964703],[126,-43,73,0.13529481588273276],[126,-43,74,0.13705850621529475],[126,-43,75,0.13880719002435343],[126,-43,76,0.14053919827937322],[126,-43,77,0.14225253637346075],[126,-43,78,0.1439447825090273],[126,-43,79,0.1456130153898207],[126,-42,64,0.12191095729987829],[126,-42,65,0.12414163718383385],[126,-42,66,0.12637689190527543],[126,-42,67,0.12861301872340228],[126,-42,68,0.13083369270862447],[126,-42,69,0.13273106664672002],[126,-42,70,0.1346229734577219],[126,-42,71,0.13650662922586637],[126,-42,72,0.13837978326202705],[126,-42,73,0.14024049913602435],[126,-42,74,0.1420869607889528],[126,-42,75,0.143917304145869],[126,-42,76,0.1457294746116528],[126,-42,77,0.14752111079351976],[126,-42,78,0.14928945475221808],[126,-42,79,0.1510312890406508],[126,-41,64,0.12637993282688356],[126,-41,65,0.12866827965647365],[126,-41,66,0.1309611139734703],[126,-41,67,0.13325493677612812],[126,-41,68,0.13532314804420714],[126,-41,69,0.1373060820654759],[126,-41,70,0.13928453681175632],[126,-41,71,0.14125545496431466],[126,-41,72,0.14321620795680925],[126,-41,73,0.145164409196021],[126,-41,74,0.1470977493225507],[126,-41,75,0.14901385386123842],[126,-41,76,0.1509101635758004],[126,-41,77,0.152783837805453],[126,-41,78,0.15463168102303038],[126,-41,79,0.15645009281470681],[126,-40,64,0.1308942633558083],[126,-40,65,0.13323131166244556],[126,-40,66,0.1355722846035891],[126,-40,67,0.13770208617893834],[126,-40,68,0.13977234300629068],[126,-40,69,0.14184342907776798],[126,-40,70,0.14391148475400958],[126,-40,71,0.14597311270193977],[126,-40,72,0.1480252139578508],[126,-40,73,0.15006484185760302],[126,-40,74,0.15208907413316627],[126,-40,75,0.1540949034445252],[126,-40,76,0.15607914658475314],[126,-40,77,0.15803837256378442],[126,-40,78,0.15996884974324665],[126,-40,79,0.16186651216117343],[126,-39,64,0.13156087453433832],[126,-39,65,0.1337615175485344],[126,-39,66,0.13581843145775208],[126,-39,67,0.13788627608680948],[126,-39,68,0.13996127158618538],[126,-39,69,0.14203916237299785],[126,-39,70,0.14411603895589206],[126,-39,71,0.14618823710202125],[126,-39,72,0.1482522317233669],[126,-39,73,0.15030454347361075],[126,-39,74,0.1523416582540747],[126,-39,75,0.15435995980483483],[126,-39,76,0.1563556755339167],[126,-39,77,0.1583248357137043],[126,-39,78,0.1602632461496555],[126,-39,79,0.16216647440261953],[126,-38,64,0.13184968607958614],[126,-38,65,0.13389292241085932],[126,-38,66,0.13595185666752183],[126,-38,67,0.13802381496513394],[126,-38,68,0.14010506220476465],[126,-38,69,0.1421915253879795],[126,-38,70,0.14427919580240267],[126,-38,71,0.14636408457473327],[126,-38,72,0.14844217776482413],[126,-38,73,0.15050939866755367],[126,-38,74,0.15256157741784512],[126,-38,75,0.15459442798089384],[126,-38,76,0.15660353259610407],[126,-38,77,0.15858433372967592],[126,-38,78,0.1605321335775034],[126,-38,79,0.16244210114743196],[126,-37,64,0.1319416047163735],[126,-37,65,0.13398456353865618],[126,-37,66,0.136045977787379],[126,-37,67,0.13812277489620606],[126,-37,68,0.14021122409968503],[126,-37,69,0.1423073836572445],[126,-37,70,0.14440708995833376],[126,-37,71,0.14650597201428495],[126,-37,72,0.14859946999350113],[126,-37,73,0.15068285518513783],[126,-37,74,0.15275125138265824],[126,-37,75,0.15479965767593173],[126,-37,76,0.15682297263836859],[126,-37,77,0.15881601989404642],[126,-37,78,0.15704019059156957],[126,-37,79,0.15219945770673232],[126,-36,64,0.1277654252783645],[126,-36,65,0.12998416488074957],[126,-36,66,0.13190396464161802],[126,-36,67,0.13552965248212936],[126,-36,68,0.1364815495409313],[126,-36,69,0.13675845518751378],[126,-36,70,0.14034001018378928],[126,-36,71,0.14522383155330118],[126,-36,72,0.1478981021135994],[126,-36,73,0.15082785420229705],[126,-36,74,0.15291252174139414],[126,-36,75,0.15483089578947953],[126,-36,76,0.15245097308353764],[126,-36,77,0.1488807752763775],[126,-36,78,0.14519328145732713],[126,-36,79,0.1407204203405261],[126,-35,64,0.12343336860892123],[126,-35,65,0.12415171220900681],[126,-35,66,0.12399256883148718],[126,-35,67,0.12693512245911334],[126,-35,68,0.1282867055303254],[126,-35,69,0.13082262167824169],[126,-35,70,0.13354293041043583],[126,-35,71,0.13653480780778426],[126,-35,72,0.1386575781438417],[126,-35,73,0.14294685744600347],[126,-35,74,0.14570230347535404],[126,-35,75,0.1459035458058066],[126,-35,76,0.1436990566649165],[126,-35,77,0.13970549315717648],[126,-35,78,0.13545621436333805],[126,-35,79,0.1318746983201428],[126,-34,64,0.12087695941410533],[126,-34,65,0.12193597521305119],[126,-34,66,0.12014191729589097],[126,-34,67,0.1234831222634021],[126,-34,68,0.12518356007876663],[126,-34,69,0.12736045859106665],[126,-34,70,0.12863304556484284],[126,-34,71,0.13262672928449748],[126,-34,72,0.13442037743666624],[126,-34,73,0.13633515191552328],[126,-34,74,0.14025319264449726],[126,-34,75,0.13989249647812638],[126,-34,76,0.13815233907025504],[126,-34,77,0.13479036548484644],[126,-34,78,0.1301019656600797],[126,-34,79,0.12819054350665302],[126,-33,64,0.11817956871030191],[126,-33,65,0.12065536781133149],[126,-33,66,0.11917611839582964],[126,-33,67,0.12373787708491679],[126,-33,68,0.12516982394495052],[126,-33,69,0.12488763415922759],[126,-33,70,0.1257580821293623],[126,-33,71,0.13162731629301314],[126,-33,72,0.13318636928672264],[126,-33,73,0.13322540297352237],[126,-33,74,0.13754438281906273],[126,-33,75,0.1376974403571124],[126,-33,76,0.13596344287915166],[126,-33,77,0.13321099902975378],[126,-33,78,0.12850778255407208],[126,-33,79,0.1269710690418985],[126,-32,64,0.11746224769659512],[126,-32,65,0.12029719587792786],[126,-32,66,0.1206556752897497],[126,-32,67,0.12343344802491636],[126,-32,68,0.12511547491106903],[126,-32,69,0.12474834901273242],[126,-32,70,0.12588947024358854],[126,-32,71,0.13293670177759162],[126,-32,72,0.1358111643571717],[126,-32,73,0.13421631164177347],[126,-32,74,0.13647255356838123],[126,-32,75,0.13689256835672137],[126,-32,76,0.13651247943622666],[126,-32,77,0.13409431718896125],[126,-32,78,0.1289112175961874],[126,-32,79,0.12544393746954427],[126,-31,64,0.12107251203853857],[126,-31,65,0.12227262756035544],[126,-31,66,0.12461834557281619],[126,-31,67,0.12548608246260312],[126,-31,68,0.12779557183206902],[126,-31,69,0.1287506532653151],[126,-31,70,0.1299625468305189],[126,-31,71,0.13422997656407448],[126,-31,72,0.13930176929877802],[126,-31,73,0.1391723475545087],[126,-31,74,0.13877249031830693],[126,-31,75,0.13812411255784487],[126,-31,76,0.1392475797471395],[126,-31,77,0.1355420413576238],[126,-31,78,0.13051865806587795],[126,-31,79,0.12474524896067807],[126,-30,64,0.12571838125351928],[126,-30,65,0.12671449151072184],[126,-30,66,0.12966803653387213],[126,-30,67,0.13185746850588542],[126,-30,68,0.1342208534369364],[126,-30,69,0.13473670050369724],[126,-30,70,0.1354597451725564],[126,-30,71,0.1365437784552669],[126,-30,72,0.14169512202813794],[126,-30,73,0.14440877205560324],[126,-30,74,0.1439120091415821],[126,-30,75,0.1418010535988455],[126,-30,76,0.14268622839637862],[126,-30,77,0.13746130793198477],[126,-30,78,0.132621889403523],[126,-30,79,0.12687210069989915],[126,-29,64,0.13002955179418332],[126,-29,65,0.13165692070683035],[126,-29,66,0.1342849542214352],[126,-29,67,0.13835861074376588],[126,-29,68,0.14045812302091623],[126,-29,69,0.14033046569180305],[126,-29,70,0.14103030379808734],[126,-29,71,0.14080333651871763],[126,-29,72,0.143665437312283],[126,-29,73,0.147953874103766],[126,-29,74,0.14918400591190561],[126,-29,75,0.14642244149480196],[126,-29,76,0.14651480988209503],[126,-29,77,0.14082797071841893],[126,-29,78,0.13554620788833827],[126,-29,79,0.129859371062044],[126,-28,64,0.13233481331216343],[126,-28,65,0.13430963390725875],[126,-28,66,0.1363271128417841],[126,-28,67,0.1383814126972036],[126,-28,68,0.14046661569146823],[126,-28,69,0.14214518442722915],[126,-28,70,0.14362724348494893],[126,-28,71,0.14510685188364686],[126,-28,72,0.14643075284576443],[126,-28,73,0.1480756202644769],[126,-28,74,0.1495729579364064],[126,-28,75,0.15091878476978507],[126,-28,76,0.15042146531548276],[126,-28,77,0.14623722589688137],[126,-28,78,0.1402179366178687],[126,-28,79,0.13409333491687866],[126,-27,64,0.13241969131557207],[126,-27,65,0.13437180739117263],[126,-27,66,0.13636786118043948],[126,-27,67,0.1384019098667465],[126,-27,68,0.14008392880140635],[126,-27,69,0.14150620549944415],[126,-27,70,0.14292441333696898],[126,-27,71,0.14434308130728957],[126,-27,72,0.14576711163309441],[126,-27,73,0.14720135544163734],[126,-27,74,0.14865024076088718],[126,-27,75,0.1501174533330175],[126,-27,76,0.15160567067985894],[126,-27,77,0.15035179882138747],[126,-27,78,0.14447456743420128],[126,-27,79,0.13886878767684394],[126,-26,64,0.13250961286816168],[126,-26,65,0.13443487290299344],[126,-26,66,0.13640489887098384],[126,-26,67,0.13805837970962628],[126,-26,68,0.13942453815856723],[126,-26,69,0.14078476153841843],[126,-26,70,0.14214348809096647],[126,-26,71,0.14350594345108986],[126,-26,72,0.14487764461064162],[126,-26,73,0.14626395918717952],[126,-26,74,0.1476697205603765],[126,-26,75,0.14909889938469253],[126,-26,76,0.15055433191962422],[126,-26,77,0.1520375055350293],[126,-26,78,0.14895666073423602],[126,-26,79,0.14346072901940754],[126,-25,64,0.13259552135320907],[126,-25,65,0.1344896943167976],[126,-25,66,0.13606969970151764],[126,-25,67,0.13738347513987065],[126,-25,68,0.13868961043286107],[126,-25,69,0.13999200502217576],[126,-25,70,0.14129580363983607],[126,-25,71,0.14260685674259302],[126,-25,72,0.143931210275254],[126,-25,73,0.14527465378791635],[126,-25,74,0.14664232747959058],[126,-25,75,0.1480383886827634],[126,-25,76,0.14946573822997272],[126,-25,77,0.1509258070511544],[126,-25,78,0.1524184032388227],[126,-25,79,0.14660755509679108],[126,-24,64,0.1326668217378289],[126,-24,65,0.1341196418265713],[126,-24,66,0.13538522265769762],[126,-24,67,0.13664112192389197],[126,-24,68,0.13789120730616855],[126,-24,69,0.1391400902523665],[126,-24,70,0.1403935490825399],[126,-24,71,0.14165797229627425],[126,-24,72,0.14293983930298826],[126,-24,73,0.1442452620845052],[126,-24,74,0.14557958836666604],[126,-24,75,0.14694706681431877],[126,-24,76,0.14835057468365867],[126,-24,77,0.1497914082647353],[126,-24,78,0.15126913632496405],[126,-24,79,0.1492408387574589],[126,-23,64,0.13220964408982563],[126,-23,65,0.13343034343592658],[126,-23,66,0.13463985496645453],[126,-23,67,0.13584141192710183],[126,-23,68,0.1370393747568732],[126,-23,69,0.13823901380252324],[126,-23,70,0.13944666907710174],[126,-23,71,0.14066918182917093],[126,-23,72,0.14191337125458536],[126,-23,73,0.14318557426108422],[126,-23,74,0.14449124886141482],[126,-23,75,0.14583464170288898],[126,-23,76,0.14721852015339723],[126,-23,77,0.14864396925363302],[126,-23,78,0.1501102537131917],[126,-23,79,0.15161474497708088],[126,-22,64,0.1315209316049361],[126,-22,65,0.13268656085898214],[126,-22,66,0.1338429491128306],[126,-22,67,0.13499351651855565],[126,-22,68,0.13614308513135304],[126,-22,69,0.13729753447339132],[126,-22,70,0.13846369877942197],[126,-22,71,0.13964879184980908],[126,-22,72,0.140859884461301],[126,-22,73,0.14210344652129095],[126,-22,74,0.1433849545350207],[126,-22,75,0.144708564881127],[126,-22,76,0.14607685329498263],[126,-22,77,0.14749062083973047],[126,-22,78,0.14894876650300273],[126,-22,79,0.15044822639642771],[126,-21,64,0.13078470133308842],[126,-21,65,0.13189752665407914],[126,-21,66,0.1330034369276002],[126,-21,67,0.13410603095074924],[126,-21,68,0.13521056202514176],[126,-21,69,0.13632347390056426],[126,-21,70,0.13745203430375316],[126,-21,71,0.1386037575007433],[126,-21,72,0.13978588661292002],[126,-21,73,0.14100494198411778],[126,-21,74,0.14226633615705186],[126,-21,75,0.14357405593630793],[126,-21,76,0.1449304119106428],[126,-21,77,0.14633585567847823],[126,-21,78,0.14778886486911363],[126,-21,79,0.14928589588233074],[126,-20,64,0.13001056656809973],[126,-20,65,0.13107244791344394],[126,-20,66,0.13213006749070327],[126,-20,67,0.13318719091067108],[126,-20,68,0.1342494739710899],[126,-20,69,0.13532388639318865],[126,-20,70,0.13641807828631622],[126,-20,71,0.13753980399483623],[126,-20,72,0.13869641277763253],[126,-20,73,0.13989440653136018],[126,-20,74,0.1411390651002113],[126,-20,75,0.14243413962624932],[126,-20,76,0.14378161428105654],[126,-20,77,0.14518153658129568],[126,-20,78,0.14663191633041128],[126,-20,79,0.14812869305065593],[126,-19,64,0.12920852530402988],[126,-19,65,0.1302207604028097],[126,-19,66,0.13123164116760289],[126,-19,67,0.13224508442899946],[126,-19,68,0.13326712266163446],[126,-19,69,0.13430522242388745],[126,-19,70,0.13536737815426264],[126,-19,71,0.13646153974823416],[126,-19,72,0.13759511405078015],[126,-19,73,0.13877453416310148],[126,-19,74,0.14000489708729505],[126,-19,75,0.14128967013588656],[126,-19,76,0.14263046641077137],[126,-19,77,0.1440268895088064],[126,-19,78,0.14547644744230373],[126,-19,79,0.1469745355771144],[126,-18,64,0.12838814925008707],[126,-18,65,0.1293512507559734],[126,-18,66,0.13031606198152457],[126,-18,67,0.1312866317594486],[126,-18,68,0.1322693481286734],[126,-18,69,0.13327215743553097],[126,-18,70,0.13430337747442295],[126,-18,71,0.1353711298032731],[126,-18,72,0.13648285320445896],[126,-18,73,0.13764488562794353],[126,-18,74,0.13886211511916094],[126,-18,75,0.14013770012882484],[126,-18,76,0.141472859470299],[126,-18,77,0.14286673203378863],[126,-18,78,0.1443163061892875],[126,-18,79,0.14581641861756786],[126,-17,64,0.12755383052331615],[126,-17,65,0.12846756288568342],[126,-17,66,0.12938615745023954],[126,-17,67,0.13031377321862295],[126,-17,68,0.13125713623265256],[126,-17,69,0.13222466461686833],[126,-17,70,0.13322499127686416],[126,-17,71,0.13426640086564245],[126,-17,72,0.1353563553834729],[126,-17,73,0.13650108892017537],[126,-17,74,0.13770527201996524],[126,-17,75,0.13897174603480436],[126,-17,76,0.1403013276913846],[126,-17,77,0.14169268393144047],[126,-17,78,0.1431422768995736],[126,-17,79,0.14464437875326566],[126,-16,64,0.1266970006725426],[126,-16,65,0.12756153305997037],[126,-16,66,0.12843428817884953],[126,-16,67,0.12931951214260093],[126,-16,68,0.1302242429850685],[126,-16,69,0.1311573487990993],[126,-16,70,0.13212775113919872],[126,-16,71,0.13314386777398787],[126,-16,72,0.13421315173293127],[126,-16,73,0.13534170004959514],[126,-16,74,0.1365339326566068],[126,-16,75,0.13779234176415586],[126,-16,76,0.13911731190369087],[126,-16,77,0.14050701064414325],[126,-16,78,0.14195734979465424],[126,-16,79,0.14346201670192987],[126,-15,64,0.12580893403024],[126,-15,65,0.1266250117406764],[126,-15,66,0.12745299918177885],[126,-15,67,0.12829720287949067],[126,-15,68,0.12916493526936815],[126,-15,69,0.13006547509435365],[126,-15,70,0.13100798408591138],[126,-15,71,0.13200095809500303],[126,-15,72,0.13305178222813438],[126,-15,73,0.13416635599838428],[126,-15,74,0.13534878891733929],[126,-15,75,0.13660116682112416],[126,-15,76,0.13792338906425666],[126,-15,77,0.13931307653226718],[126,-15,78,0.14076555022354986],[126,-15,79,0.14227387993968943],[126,-14,64,0.11470903477385164],[126,-14,65,0.1256528442620155],[126,-14,66,0.12643762573019046],[126,-14,67,0.1272427294488543],[126,-14,68,0.12807569361589927],[126,-14,69,0.12894615365809659],[126,-14,70,0.12986344599157862],[126,-14,71,0.13083607117054746],[126,-14,72,0.1318712686954776],[126,-14,73,0.13297466181262874],[126,-14,74,0.1341499726958842],[126,-14,75,0.1353988082597238],[126,-14,76,0.13672051668378848],[126,-14,77,0.13811211453902741],[126,-14,78,0.13956828419896938],[126,-14,79,0.14108144100450706],[126,-13,64,0.06440613536168134],[126,-13,65,0.07733942538308636],[126,-13,66,0.09160089303443328],[126,-13,67,0.10716011648715269],[126,-13,68,0.12397598474462339],[126,-13,69,0.1277978852124428],[126,-13,70,0.12869292939163549],[126,-13,71,0.12964825670439242],[126,-13,72,0.13067087176071057],[126,-13,73,0.13176603237305567],[126,-13,74,0.1329369876438808],[126,-13,75,0.13418478614175017],[126,-13,76,0.13550815418760295],[126,-13,77,0.13690344407574678],[126,-13,78,0.1383646518433305],[126,-13,79,0.13988350398483312],[126,-12,64,0.03135414225339122],[126,-12,65,0.039405444846696724],[126,-12,66,0.04859588620340423],[126,-12,67,0.05892938949038391],[126,-12,68,0.07040135123467439],[126,-12,69,0.08299801952529584],[126,-12,70,0.0966940359960029],[126,-12,71,0.11145258173577041],[126,-12,72,0.1272257001619602],[126,-12,73,0.1305395584992042],[126,-12,74,0.13170865915094324],[126,-12,75,0.13295759070481597],[126,-12,76,0.1342843891496103],[126,-12,77,0.13568468672468842],[126,-12,78,0.13715175148539238],[126,-12,79,0.1386765944909682],[126,-11,64,0.012065056933556546],[126,-11,65,0.01633247576877395],[126,-11,66,0.021501464212437715],[126,-11,67,0.027602414537794863],[126,-11,68,0.03465789753266108],[126,-11,69,0.04268215814857899],[126,-11,70,0.05167844509449235],[126,-11,71,0.06163926580530574],[126,-11,72,0.07254677740703812],[126,-11,73,0.08437325534677853],[126,-11,74,0.09708164964302433],[126,-11,75,0.11062623807602687],[126,-11,76,0.12495338377163544],[126,-11,77,0.13445198035277298],[126,-11,78,0.13592497506980225],[126,-11,79,0.1374553338397694],[126,-10,64,0.002840131711219833],[126,-10,65,0.004459650564760752],[126,-10,66,0.006711724538246646],[126,-10,67,0.009650336641327844],[126,-10,68,0.013321555657069026],[126,-10,69,0.017763087382107048],[126,-10,70,0.02300135241033204],[126,-10,71,0.029051848790281602],[126,-10,72,0.03591964444844447],[126,-10,73,0.04359992389457689],[126,-10,74,0.052078592005874565],[126,-10,75,0.06133293886495748],[126,-10,76,0.07133237002910253],[126,-10,77,0.08203920616364392],[126,-10,78,0.09340955470145931],[126,-10,79,0.10539425418065532],[126,-9,64,-7.079568298226074E-5],[126,-9,65,4.436596348200802E-5],[126,-9,66,4.964670773893305E-4],[126,-9,67,0.001362319435092287],[126,-9,68,0.002710415184902756],[126,-9,69,0.004600468741943533],[126,-9,70,0.007080177424880161],[126,-9,71,0.010185645971366673],[126,-9,72,0.013941952737569912],[126,-9,73,0.018363767738839364],[126,-9,74,0.02345601962703379],[126,-9,75,0.029214610179149725],[126,-9,76,0.03562717609381763],[126,-9,77,0.042673898697551275],[126,-9,78,0.05032836245650531],[126,-9,79,0.05855846293606415],[126,-8,64,-4.2588324727428113E-4],[126,-8,65,-6.70846777953569E-4],[126,-8,66,-9.003436934199003E-4],[126,-8,67,-9.332190346871521E-4],[126,-8,68,-2.76135161226344E-4],[126,-8,69,4.012887303156385E-4],[126,-8,70,0.0011088783409785887],[126,-8,71,0.0018547678033210017],[126,-8,72,0.00293540748546563],[126,-8,73,0.005026132465823691],[126,-8,74,0.007628619199251642],[126,-8,75,0.010755789314648352],[126,-8,76,0.014411649747347457],[126,-8,77,0.018592130954783046],[126,-8,78,0.02328596346591092],[126,-8,79,0.028475591469135246],[126,-7,64,-0.0019841550741186665],[126,-7,65,-0.001445154700022185],[126,-7,66,-0.0012380778782545717],[126,-7,67,-0.0012408546441103425],[126,-7,68,-0.0012502137241373746],[126,-7,69,-5.510392172175019E-4],[126,-7,70,1.831856753835045E-4],[126,-7,71,9.599484744178509E-4],[126,-7,72,0.0017846725929901363],[126,-7,73,0.002660583035587266],[126,-7,74,0.0035886279839689294],[126,-7,75,0.004567456055070269],[126,-7,76,0.005593448911380931],[126,-7,77,0.006660808799672726],[126,-7,78,0.008671987863998512],[126,-7,79,0.011591435082924418],[126,-6,64,-0.004869992417662989],[126,-6,65,-0.004223539476658901],[126,-6,66,-0.0035667539059963975],[126,-6,67,-0.0028970779871922087],[126,-6,68,-0.0022072933091739338],[126,-6,69,-0.0014868245567121038],[126,-6,70,-7.268368944965853E-4],[126,-6,71,7.945900404283748E-5],[126,-6,72,9.366665914154065E-4],[126,-6,73,0.0018471148275504016],[126,-6,74,0.0028108211418841553],[126,-6,75,0.0038255057129235877],[126,-6,76,0.004886656704742809],[126,-6,77,0.005987646002362603],[126,-6,78,0.007119894890204616],[126,-6,79,0.008273089021685723],[126,-5,64,-0.005839552158781722],[126,-5,65,-0.005193852810941032],[126,-5,66,-0.004531788720568517],[126,-5,67,-0.003851418089879857],[126,-5,68,-0.00314602044903077],[126,-5,69,-0.0024053916445633382],[126,-5,70,-0.0016212729691543785],[126,-5,71,-7.876096493720479E-4],[126,-5,72,9.93599484997357E-5],[126,-5,73,0.001041062186159592],[126,-5,74,0.0020365928759095383],[126,-5,75,0.0030827685510342005],[126,-5,76,0.004174223887444141],[126,-5,77,0.0053035547904958106],[126,-5,78,0.0064615065710851415],[126,-5,79,0.007637206547197443],[126,-4,64,-0.006787826981325982],[126,-4,65,-0.006142909180306947],[126,-4,66,-0.005475933651668512],[126,-4,67,-0.004785650443016945],[126,-4,68,-0.004065900266115457],[126,-4,69,-0.0033069007062835254],[126,-4,70,-0.0025010049697339306],[126,-4,71,-0.0016429130236091328],[126,-4,72,-7.297092247197036E-4],[126,-4,73,2.3914209808771308E-4],[126,-4,74,0.001261842841069884],[126,-4,75,0.0023343487558866],[126,-4,76,0.0034504980861790216],[126,-4,77,0.004602180702627717],[126,-4,78,0.0057795471476696034],[126,-4,79,0.006971256922286729],[126,-3,64,-0.00771351045656995],[126,-3,65,-0.007069690471383076],[126,-3,66,-0.006398551695435933],[126,-3,67,-0.005699606308538291],[126,-3,68,-0.004967309433994701],[126,-3,69,-0.004192338864496689],[126,-3,70,-0.0033676807206073343],[126,-3,71,-0.002488793279348515],[126,-3,72,-0.0015535934169105378],[126,-3,73,-5.624063079762188E-4],[126,-3,74,4.8212130795189956E-4],[126,-3,75,0.0015751439130090006],[126,-3,76,0.00270977559886475],[126,-3,77,0.0038772835331631586],[126,-3,78,0.005067315910158903],[126,-3,79,0.006268163722428077],[126,-2,64,-0.008616208540067486],[126,-2,65,-0.0079740921253469],[126,-2,66,-0.007299907072261793],[126,-2,67,-0.006593990312837578],[126,-2,68,-0.005851453081724564],[126,-2,69,-0.005063458669800979],[126,-2,70,-0.004223631817117591],[126,-2,71,-0.003328176097461546],[126,-2,72,-0.0023758103525511804],[126,-2,73,-0.0013676738764543113],[126,-2,74,-3.0720069896043466E-4],[126,-2,75,8.000366236477211E-4],[126,-2,76,0.001946513240754782],[126,-2,77,0.0031229677312471786],[126,-2,78,0.0043186467265597375],[126,-2,79,0.005521577782395972],[126,-1,64,-0.00949637946046816],[126,-1,65,-0.008856856441609632],[126,-1,66,-0.008181089409001018],[126,-1,67,-0.0074702932609434156],[126,-1,68,-0.006720264370294923],[126,-1,69,-0.005922662953182523],[126,-1,70,-0.005071742699969175],[126,-1,71,-0.004164423383449383],[126,-1,72,-0.003200179207297969],[126,-1,73,-0.0021809014985763203],[126,-1,74,-0.0011107361258870768],[126,-1,75,4.1039259438938014E-6],[126,-1,76,0.00115555034286527],[126,-1,77,0.002333915097337456],[126,-1,78,0.003528149309447822],[126,-1,79,0.004726124723192195],[126,0,64,-0.010355206926252296],[126,0,65,-0.009719440327739406],[126,0,66,-0.009043874021560911],[126,0,67,-0.008330643340357578],[126,0,68,-0.007576245457331987],[126,0,69,-0.006772834810046629],[126,0,70,-0.005915269354878528],[126,0,71,-0.0050011408196820855],[126,0,72,-0.0040306175772153365],[126,0,73,-0.0030062674631214617],[126,0,74,-0.0019328609472880898],[126,0,75,-8.17155106074268E-4],[126,0,76,3.3234111677208294E-4],[126,0,77,0.0015056198323171726],[126,0,78,0.0026914447442948604],[126,0,79,0.0034848181210205983],[126,1,64,-0.010209524082702887],[126,1,65,-0.010563816839355297],[126,1,66,-0.009890517773925793],[126,1,67,-0.009177595267088548],[126,1,68,-0.008422249420674524],[126,1,69,-0.00761711223721115],[126,1,70,-0.006757607035924692],[126,1,71,-0.0058419394638228915],[126,1,72,-0.004870898122141733],[126,1,73,-0.003847640649857158],[126,1,74,-0.0027774656946786963],[126,1,75,-0.001667571229930533],[126,1,76,-5.267997053513211E-4],[126,1,77,6.346294507383552E-4],[126,1,78,0.0018053994324601199],[126,1,79,0.002188609910538577],[126,2,64,-0.0025295746507443925],[126,2,65,-0.004164207983608055],[126,2,66,-0.0062813501218716445],[126,2,67,-0.0089350365497284],[126,2,68,-0.00926120222187241],[126,2,69,-0.008458606103379921],[126,2,70,-0.007602005114535864],[126,2,71,-0.0066901487383676074],[126,2,72,-0.0057243612989743035],[126,2,73,-0.004708294892227156],[126,2,74,-0.0036476735509452414],[126,2,75,-0.002550029108450511],[126,2,76,-0.0014244292433614888],[126,2,77,-2.8119820699006737E-4],[126,2,78,8.683692485081647E-4],[126,2,79,9.417523595555404E-4],[126,3,64,-4.264561786829772E-4],[126,3,65,-7.683861891753012E-4],[126,3,66,-0.0012974501910938145],[126,3,67,-0.0020912595457759043],[126,3,68,-0.0032086576198512673],[126,3,69,-0.0046919484338164355],[126,3,70,-0.00657571519176243],[126,3,71,-0.007548478839427645],[126,3,72,-0.006593587311063498],[126,3,73,-0.005590593749272577],[126,3,74,-0.004545541303113745],[126,3,75,-0.0034661877719924976],[126,3,76,-0.002361719636438479],[126,3,77,-0.0012424638113670385],[126,3,78,-1.1959760849484247E-4],[126,3,79,-2.5260760911704843E-4],[126,4,64,-1.65460020928481E-4],[126,4,65,-3.359526469588319E-4],[126,4,66,-3.7312495846132237E-4],[126,4,67,-3.781041800383983E-4],[126,4,68,-4.323505133490249E-4],[126,4,69,-5.999028614495205E-4],[126,4,70,-9.364688251948092E-4],[126,4,71,-0.0014901348475744303],[126,4,72,-0.00230188115409322],[126,4,73,-0.0034060967609510656],[126,4,74,-0.0048310902165282915],[126,4,75,-0.004416184116977232],[126,4,76,-0.0033381915023150068],[126,4,77,-0.002247992943179876],[126,4,78,-0.0012219629014752174],[126,4,79,-0.0013932813938531729],[126,5,64,0.0019893811865126995],[126,5,65,8.688862315682981E-4],[126,5,66,2.272617872254651E-4],[126,5,67,-6.011874625010889E-5],[126,5,68,-9.731529317093904E-5],[126,5,69,2.9908928851200137E-5],[126,5,70,2.447293011979085E-4],[126,5,71,4.7861012195259887E-4],[126,5,72,6.70851195961441E-4],[126,5,73,7.681271471999648E-4],[126,5,74,7.240232660793883E-4],[126,5,75,4.985715905969335E-4],[126,5,76,5.779080409999877E-5],[126,5,77,-6.267666346798093E-4],[126,5,78,-0.0016696295050705606],[126,5,79,-0.0024811903406438446],[126,6,64,0.009775222448237662],[126,6,65,0.006583353482200854],[126,6,66,0.004240935851908271],[126,6,67,0.002599953222513811],[126,6,68,0.001533797533240627],[126,6,69,9.349982772123885E-4],[126,6,70,7.056065233156804E-4],[126,6,71,7.566055877558645E-4],[126,6,72,0.0010075157188757953],[126,6,73,0.0013859841755431534],[126,6,74,0.0018273656697278598],[126,6,75,0.0022742971408661623],[126,6,76,0.0026762702677516886],[126,6,77,0.002989204805951043],[126,6,78,0.0031449364187008636],[126,6,79,0.002036012149006356],[126,7,64,0.026926869909324722],[126,7,65,0.020545144732909946],[126,7,66,0.01540704655476659],[126,7,67,0.011342011224161903],[126,7,68,0.008201341200684333],[126,7,69,0.005856087929232991],[126,7,70,0.004187272066095583],[126,7,71,0.003085405793161306],[126,7,72,0.002450181975023895],[126,7,73,0.0021901259803218916],[126,7,74,0.002222222993605762],[126,7,75,0.0024715296175075755],[126,7,76,0.0028707759259693735],[126,7,77,0.0033599624519497005],[126,7,78,0.003885955554969254],[126,7,79,0.0034325456156999922],[126,8,64,0.057146150143887284],[126,8,65,0.04647486717102931],[126,8,66,0.03745753394412825],[126,8,67,0.029904701246322333],[126,8,68,0.023647895370123094],[126,8,69,0.01853809619282317],[126,8,70,0.014436115530202557],[126,8,71,0.011212431664254483],[126,8,72,0.00874709691231838],[126,8,73,0.006929537499774545],[126,8,74,0.005658280618943581],[126,8,75,0.004840633084852613],[126,8,76,0.004392328498821994],[126,8,77,0.0042371545696773365],[126,8,78,0.0043065686300572505],[126,8,79,0.0038113709234835922],[126,9,64,0.09307577943272842],[126,9,65,0.08798174587609357],[126,9,66,0.07405153759331581],[126,9,67,0.061980232089861406],[126,9,68,0.05158723207377666],[126,9,69,0.04270864150624304],[126,9,70,0.0351885441220302],[126,9,71,0.028879646100909703],[126,9,72,0.023643765310422706],[126,9,73,0.0193520414552001],[126,9,74,0.015884948388332782],[126,9,75,0.013132168051387486],[126,9,76,0.010992369038541998],[126,9,77,0.009372920511359257],[126,9,78,0.008189563190044038],[126,9,79,0.006896570549478996],[126,10,64,0.09120694681444354],[126,10,65,0.0910181373833718],[126,10,66,0.09090954060809925],[126,10,67,0.09087040956192864],[126,10,68,0.09089887700812921],[126,10,69,0.08200122740764479],[126,10,70,0.07011710610406971],[126,10,71,0.05978626218737463],[126,10,72,0.05085741370029866],[126,10,73,0.043186919482451264],[126,10,74,0.03663951823108898],[126,10,75,0.031088727241555317],[126,10,76,0.0264169950103622],[126,10,77,0.022515677818504727],[126,10,78,0.019284891965779306],[126,10,79,0.01641215690484157],[126,11,64,0.08931987707049117],[126,11,65,0.0890791553237364],[126,11,66,0.08891612959788449],[126,11,67,0.08881959901746266],[126,11,68,0.08878753422495925],[126,11,69,0.0888250604827468],[126,11,70,0.0889343738361678],[126,11,71,0.0891149114611689],[126,11,72,0.08936374585884489],[126,11,73,0.08207127583247953],[126,11,74,0.07159391956373436],[126,11,75,0.06240686523626999],[126,11,76,0.05438002305992974],[126,11,77,0.0473912337608175],[126,11,78,0.041326606844141245],[126,11,79,0.03607277328290604],[126,12,64,0.08742275360611093],[126,12,65,0.08712923761380154],[126,12,66,0.0869106478156453],[126,12,67,0.08675550982359617],[126,12,68,0.08666172319798246],[126,12,69,0.08663447107318228],[126,12,70,0.0866760611026591],[126,12,71,0.0867860955420862],[126,12,72,0.08696186545516656],[126,12,73,0.08719872382509579],[126,12,74,0.08749043703827014],[126,12,75,0.08782951425947734],[126,12,76,0.08820751428160786],[126,12,77,0.08761938390449299],[126,12,78,0.07796964384317222],[126,12,79,0.06938884025376472],[126,13,64,0.08552542057524823],[126,13,65,0.0851785888304281],[126,13,66,0.0849036700697289],[126,13,67,0.08468910278321137],[126,13,68,0.08453279818092425],[126,13,69,0.08443998965128921],[126,13,70,0.08441308826986868],[126,13,71,0.08445185408057808],[126,13,72,0.08455378977343746],[126,13,73,0.08471451214199358],[126,13,74,0.08492810080416144],[126,13,75,0.08518742372686251],[126,13,76,0.08548443916184466],[126,13,77,0.08581047367385133],[126,13,78,0.08615647602051081],[126,13,79,0.0865132467230653],[126,14,64,0.08364041882856349],[126,14,65,0.08324013552073535],[126,14,66,0.08290849554874459],[126,14,67,0.08263403081430945],[126,14,68,0.0824147311841715],[126,14,69,0.08225585042199426],[126,14,70,0.08215987334567665],[126,14,71,0.08212669085663654],[126,14,72,0.08215399335094209],[126,14,73,0.08223764075718754],[126,14,74,0.08237200870127821],[126,14,75,0.08255031035899445],[126,14,76,0.08276489362749487],[126,14,77,0.0830075133232045],[126,14,78,0.08326957819345439],[126,14,79,0.08354237260995151],[126,15,64,0.08178328705119348],[126,15,65,0.08132976851793337],[126,15,66,0.08094130492785151],[126,15,67,0.0806066858056047],[126,15,68,0.08032402697640185],[126,15,69,0.08009855215996511],[126,15,70,0.07993277289411596],[126,15,71,0.07982667049683838],[126,15,72,0.07977808990213142],[126,15,73,0.07978310881122841],[126,15,74,0.07983638167590648],[126,15,75,0.07993145809587124],[126,15,76,0.08006107528622414],[126,15,77,0.08021742435020907],[126,15,78,0.08039239017446069],[126,15,79,0.08057776484601128],[126,16,64,0.07996657160646313],[126,16,65,0.07946020109000086],[126,16,66,0.07901484264729464],[126,16,67,0.07861969188417064],[126,16,68,0.07827302900114702],[126,16,69,0.07797999554851695],[126,16,70,0.07774308776503827],[126,16,71,0.0775623477353503],[126,16,72,0.0774357574374857],[126,16,73,0.07735960666144558],[126,16,74,0.07732883433407722],[126,16,75,0.07733734285564221],[126,16,76,0.07737828513146301],[126,16,77,0.07744432406432786],[126,16,78,0.077527864357611],[126,16,79,0.07744320113390842],[126,17,64,0.0781953089470783],[126,17,65,0.07763660309979256],[126,17,66,0.07713431110979987],[126,17,67,0.07667816864537023],[126,17,68,0.07626665362615277],[126,17,69,0.07590477724128872],[126,17,70,0.07559498791253519],[126,17,71,0.07533737279062608],[126,17,72,0.07513005080378554],[126,17,73,0.07496953806367379],[126,17,74,0.0748510851858992],[126,17,75,0.0747689861573106],[126,17,76,0.07471685846421586],[126,17,77,0.07468789428094785],[126,17,78,0.07448860733886184],[126,17,79,0.07413703964353198],[126,18,64,0.07646772931562142],[126,18,65,0.07585734667736305],[126,18,66,0.07529817721582659],[126,18,67,0.07478061587229003],[126,18,68,0.07430336692142504],[126,18,69,0.07387126769281409],[126,18,70,0.07348669450559549],[126,18,71,0.0731497747322634],[126,18,72,0.07285877690198045],[126,18,73,0.0726104716369282],[126,18,74,0.07240046300490428],[126,18,75,0.0722234899511741],[126,18,76,0.07183443368754555],[126,18,77,0.07145009519598579],[126,18,78,0.0710816843048701],[126,18,79,0.07073247398580498],[126,19,64,0.07342698631745266],[126,19,65,0.07298721103853466],[126,19,66,0.07254251615691851],[126,19,67,0.07210324750434495],[126,19,68,0.07167144732959596],[126,19,69,0.0712430087262545],[126,19,70,0.07081571206284959],[126,19,71,0.07038902857043605],[126,19,72,0.06996376090657455],[126,19,73,0.06954171391027929],[126,19,74,0.0691253958714559],[126,19,75,0.06871775055669414],[126,19,76,0.06832192015587277],[126,19,77,0.0679410392392116],[126,19,78,0.06757805974160042],[126,19,79,0.06723560691918079],[126,20,64,0.0700499260773044],[126,20,65,0.06956473539079433],[126,20,66,0.06908003164862005],[126,20,67,0.0686053621425954],[126,20,68,0.0681425614589177],[126,20,69,0.06768783932722308],[126,20,70,0.06723915989832648],[126,20,71,0.06679603551072405],[126,20,72,0.066359174495176],[126,20,73,0.06593016056179575],[126,20,74,0.06551116407146489],[126,20,75,0.06510468540828643],[126,20,76,0.06471333058834164],[126,20,77,0.06433961916093553],[126,20,78,0.06398582438157477],[126,20,79,0.06365384556033028],[126,21,64,0.06657392906148603],[126,21,65,0.06604240436254077],[126,21,66,0.06551723740876787],[126,21,67,0.06500710418722268],[126,21,68,0.06451361447842971],[126,21,69,0.06403331859634295],[126,21,70,0.0635643684865719],[126,21,71,0.06310630319733404],[126,21,72,0.06265970679657124],[126,21,73,0.062225899136412695],[126,21,74,0.061806659740544015],[126,21,75,0.061403985001646934],[126,21,76,0.06101987879086404],[126,21,77,0.060656176498289055],[126,21,78,0.06031440244291352],[126,21,79,0.05999566051173681],[126,22,64,0.06301883560253302],[126,22,65,0.062439903546066045],[126,22,66,0.06187357159871709],[126,22,67,0.0613275897918487],[126,22,68,0.06080333028632475],[126,22,69,0.06029770051126955],[126,22,70,0.05980903891952898],[126,22,71,0.059336894026109185],[126,22,72,0.058881695286376275],[126,22,73,0.05844445792355521],[126,22,74,0.05802652195039494],[126,22,75,0.0576293255384956],[126,22,76,0.0572542128002479],[126,22,77,0.056902275962083394],[126,22,78,0.056574231824207045],[126,22,79,0.056270332320892485],[126,23,64,0.05940638330482596],[126,23,65,0.05877883417771118],[126,23,66,0.058170386933552067],[126,23,67,0.05758783005124153],[126,23,68,0.05703228960698694],[126,23,69,0.05650103871842404],[126,23,70,0.05599259609510655],[126,23,71,0.055506500746290134],[126,23,72,0.05504299851613778],[126,23,73,0.05460276347655494],[126,23,74,0.05418665438779297],[126,23,75,0.053795506343050574],[126,23,76,0.05342995762202518],[126,23,77,0.053090311689538754],[126,23,78,0.05277643418970031],[126,23,79,0.05248768470348014],[126,24,64,0.055759330443684085],[126,24,65,0.05508184081731846],[126,24,66,0.05443008861129277],[126,24,67,0.0538098849945047],[126,24,68,0.05322210586983768],[126,24,69,0.052664390257435044],[126,24,70,0.052135426181736416],[126,24,71,0.05163472330443642],[126,24,72,0.051162317553095124],[126,24,73,0.050718511296981704],[126,24,74,0.05030364924215001],[126,24,75,0.04991793012189445],[126,24,76,0.049561254165462684],[126,24,77,0.049233106237351235],[126,24,78,0.04893247445263146],[126,24,79,0.04865780399060489],[126,25,64,0.05210060696307941],[126,25,65,0.051371765645445974],[126,25,66,0.050675297595668994],[126,25,67,0.05001604128299168],[126,25,68,0.04939462273580175],[126,25,69,0.04880903850308192],[126,25,70,0.048258130540269985],[126,25,71,0.04774135910388329],[126,25,72,0.047258527564793804],[126,25,73,0.046809543220329895],[126,25,74,0.04639421423651078],[126,25,75,0.04601208275463895],[126,25,76,0.04566229410207009],[126,25,77,0.04534350195564642],[126,25,78,0.045053809219148866],[126,25,79,0.044790744293370086],[126,26,64,0.04845249405038074],[126,26,65,0.04767083031148416],[126,26,66,0.046928040129156794],[126,26,67,0.046228014420307204],[126,26,68,0.04557113399652274],[126,26,69,0.04495573595604687],[126,26,70,0.044380796630795756],[126,26,71,0.043845707095701895],[126,26,72,0.04335001984727075],[126,26,73,0.04289323168135761],[126,26,74,0.04247460285923352],[126,26,75,0.04209301255353199],[126,26,76,0.04174685047105635],[126,26,77,0.041433944458290274],[126,26,78,0.04115152380904882],[126,26,79,0.04089621791226088],[126,27,64,0.044835833476094086],[126,27,65,0.04399984647703057],[126,27,66,0.04320896456321612],[126,27,67,0.04246617648854695],[126,27,68,0.04177162677235458],[126,27,69,0.041123967706279865],[126,27,70,0.04052228661364755],[126,27,71,0.03996588628580698],[126,27,72,0.03945405474933903],[126,27,73,0.03898587117483584],[126,27,74,0.038560047973676626],[126,27,75,0.03817480903223533],[126,27,76,0.037827803939112926],[126,27,77,0.03751605797101882],[126,27,78,0.03723595751817492],[126,27,79,0.03698327055082555],[126,28,64,0.04126926802567513],[126,28,65,0.040377456340072275],[126,28,66,0.03953658673434846],[126,28,67,0.03874881056556484],[126,28,68,0.03801404907316447],[126,28,69,0.03733123652651482],[126,28,70,0.03669954448168382],[126,28,71,0.03611816936319792],[126,28,72,0.035586126056957115],[126,28,73,0.03510207732883868],[126,28,74,0.034664199073520564],[126,28,75,0.03427008130248529],[126,28,76,0.03391666468804202],[126,28,77,0.03360021239233532],[126,28,78,0.03331631682806298],[126,28,79,0.033059940921230824],[126,29,64,0.0377685144173429],[126,29,65,0.03681940449458937],[126,29,66,0.03592656518536566],[126,29,67,0.035091393049945956],[126,29,68,0.034313602858325826],[126,29,69,0.03359237062549696],[126,29,70,0.03292692263179802],[126,29,71,0.03231633222318903],[126,29,72,0.0317593374676601],[126,29,73,0.03125419406992117],[126,29,74,0.03079856350890565],[126,29,75,0.030389436269376152],[126,29,76,0.03002308994941592],[126,29,77,0.02969508194065744],[126,29,78,0.029400276299101524],[126,29,79,0.029132904351498044],[126,30,64,0.034345675695211235],[126,30,65,0.033337848333268374],[126,30,66,0.032391013641205675],[126,30,67,0.03150591148588037],[126,30,68,0.030682070351609744],[126,30,69,0.02991886196149247],[126,30,70,0.02921553590375911],[126,30,71,0.028571027525768712],[126,30,72,0.02798379939400926],[126,30,73,0.027451717207318684],[126,30,74,0.026971960090811105],[126,30,75,0.02654096510791286],[126,30,76,0.026154405741827758],[126,30,77,0.02580720401647725],[126,30,78,0.025493575851815737],[126,30,79,0.025207109179532002],[126,31,64,0.03101007602691432],[126,31,65,0.02994225663693168],[126,31,66,0.02893946675330578],[126,31,67,0.028001899845220474],[126,31,68,0.02712892100379607],[126,31,69,0.026320047358324848],[126,31,70,0.02557451951515834],[126,31,71,0.024891122166371394],[126,31,72,0.024268048610363448],[126,31,73,0.023702798704223142],[126,31,74,0.023192110142152365],[126,31,75,0.022731922868062592],[126,31,76,0.02231737634846011],[126,31,77,0.021942839354690772],[126,31,78,0.021601971832784193],[126,31,79,0.021287818374572123],[126,32,64,0.02776979895815002],[126,32,65,0.026641034494461268],[126,32,66,0.02558059452808809],[126,32,67,0.02458824418419583],[126,32,68,0.023663209803349298],[126,32,69,0.02280510123973901],[126,32,70,0.022013118207851033],[126,32,71,0.021285884909388535],[126,32,72,0.02062133641429372],[126,32,73,0.020016637264507208],[126,32,74,0.019468132166169074],[126,32,75,0.018971328554257916],[126,32,76,0.018520910736263364],[126,32,77,0.018110785249077273],[126,32,78,0.017734156997069782],[126,32,79,0.01738363567926357],[126,33,64,0.024628300325200237],[126,33,65,0.02343799660977784],[126,33,66,0.022318539585305306],[126,33,67,0.021269386443086576],[126,33,68,0.02028965015811764],[126,33,69,0.019378980789075632],[126,33,70,0.01853650741980647],[126,33,71,0.01776068771744843],[126,33,72,0.017049214551467053],[126,33,73,0.016398953475431976],[126,33,74,0.015805910913766274],[126,33,75,0.015265232818874312],[126,33,76,0.014771233491562875],[126,33,77,0.01431745419012896],[126,33,78,0.013896751092014286],[126,33,79,0.013501412116425316],[126,34,64,0.021583389260047957],[126,34,65,0.020331318894061715],[126,34,66,0.019151841959660805],[126,34,67,0.018044223857479544],[126,34,68,0.017007489106756247],[126,34,69,0.016041278718929852],[126,34,70,0.015144625835416467],[126,34,71,0.014315820652886228],[126,34,72,0.01355233527812406],[126,34,73,0.012850777979204704],[126,34,74,0.012206876657161261],[126,34,75,0.011615491290581943],[126,34,76,0.011070655038114802],[126,34,77,0.010565643621231016],[126,34,78,0.010093072552840608],[126,34,79,0.009645021726303615],[126,35,64,0.01862673183732582],[126,35,65,0.017313033712217967],[126,35,66,0.0160729280457589],[126,35,67,0.014905592328700264],[126,35,68,0.013809985577425153],[126,35,69,0.012785697467003209],[126,35,70,0.011831647063122917],[126,35,71,0.010945962970931578],[126,35,72,0.01012592409185556],[126,35,73,0.009367928256533573],[126,35,74,0.008667488545475263],[126,35,75,0.008019257042381316],[126,35,76,0.007417075702561156],[126,35,77,0.006854053961029313],[126,35,78,0.0063226726526333585],[126,35,79,0.005814913769721683],[126,36,64,0.015743396390598765],[126,36,65,0.01436856543037393],[126,36,66,0.013067638051534486],[126,36,67,0.011839785959817835],[126,36,68,0.01068392189016651],[126,36,69,0.009599553180780833],[126,36,70,0.008585477172775668],[126,36,71,0.007639675737422613],[126,36,72,0.0067592693212235435],[126,36,73,0.005940497354091622],[126,36,74,0.005178724825002055],[126,36,75,0.004468474767628242],[126,36,76,0.0038034863406580985],[126,36,77,0.0031767981340841437],[126,36,78,0.0025808562847133946],[126,36,79,0.0020076469411418676],[126,37,64,0.012911441697502824],[126,37,65,0.011476307438279869],[126,37,66,0.010114793098606923],[126,37,67,0.008826113847057495],[126,37,68,0.007609149530012859],[126,37,69,0.00646331044205775],[126,37,70,0.005387278955612824],[126,37,71,0.0043789167349726045],[126,37,72,0.003435229229709399],[126,37,73,0.002552355094887874],[126,37,74,0.001725580340111559],[126,37,75,9.493769519590503E-4],[126,37,76,2.1746568074466845E-4],[126,37,77,-4.770973668939609E-4],[126,37,78,-0.001141810732445565],[126,37,79,-0.0017845946495266875],[126,38,64,0.01010234347283985],[126,38,65,0.008608031646680028],[126,38,66,0.007186585083151694],[126,38,67,0.005837268144330515],[126,38,68,0.0045589334570026036],[126,38,69,0.0033509008514846527],[126,38,70,0.002211762865649628],[126,38,71,0.0011393019621686704],[126,38,72,1.3046245011313153E-4],[126,38,73,-8.186539484868912E-4],[126,38,74,-0.001712769083132246],[126,38,75,-0.002557386160145762],[126,38,76,-0.0033587246286034965],[126,38,77,-0.004123632512869203],[126,38,78,-0.004859476579010468],[126,38,79,-0.005574010759298218],[126,39,64,0.00729856427880287],[126,39,65,0.00574636048850033],[126,39,66,0.00426587631369232],[126,39,67,0.002856423653714379],[126,39,68,0.0015168351161971788],[126,39,69,2.4635673709693463E-4],[126,39,70,-9.56474916401932E-4],[126,39,71,-0.002093908787933793],[126,39,72,-0.0031690032808910215],[126,39,73,-0.004185627619375473],[126,39,74,-0.0051484408111125],[126,39,75,-0.0060628484531693545],[126,39,76,-0.006934937668705203],[126,39,77,-0.007771390506601884],[126,39,78,-0.00857937617486407],[126,39,79,-0.009366422513592269],[126,40,64,0.004497597038868666],[126,40,65,0.002888838501009082],[126,40,66,0.0013502912778844962],[126,40,67,-1.1865556859816323E-4],[126,40,68,-0.0015191728313191184],[126,40,69,-0.002852077101687951],[126,40,70,-0.0041188588354404134],[126,40,71,-0.005321754927584735],[126,40,72,-0.006463772144671846],[126,40,73,-0.0075486887526500235],[126,40,74,-0.008581034519921562],[126,40,75,-0.009566049324250375],[126,40,76,-0.01050962063782931],[126,40,77,-0.011418200206854894],[126,40,78,-0.012298700279593707],[126,40,79,-0.01258057609662973],[126,41,64,0.0016977673847706535],[126,41,65,3.3829012284974386E-5],[126,41,66,-0.0015617282033617375],[126,41,67,-0.0030893830666931595],[126,41,68,-0.004550287524130067],[126,41,69,-0.005945317199692256],[126,41,70,-0.007275967874656209],[126,41,71,-0.008544427774456909],[126,41,72,-0.009753604272470337],[126,41,73,-0.010907129267521019],[126,41,74,-0.012009343399961377],[126,41,75,-0.013065259319443459],[126,41,76,-0.014080504262481745],[126,41,77,-0.013724059461740098],[126,41,78,-0.012008907940355525],[126,41,79,-0.010308513519123753],[126,42,64,-0.0011017469147755372],[126,42,65,-0.002819478077055284],[126,42,66,-0.0044709290498319235],[126,42,67,-0.006056373737881422],[126,42,68,-0.007576921320225417],[126,42,69,-0.00903351161856521],[126,42,70,-0.010427632760898116],[126,42,71,-0.011761396186880048],[126,42,72,-0.01303757045197394],[126,42,73,-0.014259593862461494],[126,42,74,-0.01543156608686017],[126,42,75,-0.014805304275600785],[126,42,76,-0.013125124311115977],[126,42,77,-0.011443159889036087],[126,42,78,-0.009767741141324244],[126,42,79,-0.008107441977691855],[126,43,64,-0.003900112689271824],[126,43,65,-0.005670280390262813],[126,43,66,-0.007376484256391028],[126,43,67,-0.009018709992166075],[126,43,68,-0.010598002097819656],[126,43,69,-0.01211537950165052],[126,43,70,-0.013572319560095351],[126,43,71,-0.01497083854669394],[126,43,72,-0.016313536306123064],[126,43,73,-0.015763648870330476],[126,43,74,-0.014148220905020305],[126,43,75,-0.01251680891947202],[126,43,76,-0.010876665054989614],[126,43,77,-0.009235464254402997],[126,43,78,-0.007601224641783349],[126,43,79,-0.005982207881969743],[126,44,64,-0.006693941820271911],[126,44,65,-0.008515282239497867],[126,44,66,-0.010275137251969102],[126,44,67,-0.011973117607520635],[126,44,68,-0.013610186721528379],[126,44,69,-0.015187468110705215],[126,44,70,-0.016706435931097698],[126,44,71,-0.01655005700604585],[126,44,72,-0.015022787535699625],[126,44,73,-0.013468302934322763],[126,44,74,-0.01189259833668194],[126,44,75,-0.010302148598317112],[126,44,76,-0.008703881840700811],[126,44,77,-0.007105131793605071],[126,44,78,-0.005513569217018451],[126,44,79,-0.003937112730092055],[126,45,64,-0.009476293512074182],[126,45,65,-0.01134771695852644],[126,45,66,-0.013160251396975972],[126,45,67,-0.014913049426446471],[126,45,68,-0.016606985870329927],[126,45,69,-0.017127762730402618],[126,45,70,-0.015705383273801034],[126,45,71,-0.014247414180139552],[126,45,72,-0.012758751528810097],[126,45,73,-0.011244683361972728],[126,45,74,-0.009710922183644418],[126,45,75,-0.008163615086460263],[126,45,76,-0.006609331658917245],[126,45,77,-0.005055029880669567],[126,45,78,-0.0035080002650241526],[126,45,79,-0.0019757885552290646],[126,46,64,-0.012235576567360979],[126,46,65,-0.014156270588279288],[126,46,66,-0.016020762814988865],[126,46,67,-0.01746757974101615],[126,46,68,-0.01616212027762922],[126,46,69,-0.014814433352354255],[126,46,70,-0.013428903066849424],[126,46,71,-0.012010046175313363],[126,46,72,-0.010562609873567505],[126,46,73,-0.009091646181465986],[126,46,74,-0.007602562918639066],[126,46,75,-0.006101151335098405],[126,46,76,-0.00459359051815805],[126,46,77,-0.0030864287547317133],[126,46,78,-0.0015865420825547064],[126,46,79,-1.0107031433010053E-4],[126,47,64,-0.014960167227280599],[126,47,65,-0.016929593690405545],[126,47,66,-0.016365289267334222],[126,47,67,-0.015139401159139936],[126,47,68,-0.01386892772657143],[126,47,69,-0.012558510994639034],[126,47,70,-0.011212657852944445],[126,47,71,-0.009835863462034264],[126,47,72,-0.00843273199734721],[126,47,73,-0.007008072938680401],[126,47,74,-0.005566972863092921],[126,47,75,-0.004114842764014908],[126,47,76,-0.0026574409826163777],[126,47,77,-0.0012008718985046661],[126,47,78,2.4843941522271866E-4],[126,47,79,0.0016837963135329394],[126,48,64,-0.01630811063951548],[126,48,65,-0.015210754988098709],[126,48,66,-0.014066617421155872],[126,48,67,-0.012876147596872882],[126,48,68,-0.01164303884136281],[126,48,69,-0.010372274147655056],[126,48,70,-0.00906852740433708],[126,48,71,-0.0077363007059672905],[126,48,72,-0.0063800702746619736],[126,48,73,-0.025017020421746514],[126,48,74,-0.018068460765224982],[126,48,75,-0.01106995037909096],[126,48,76,-0.004048711689748122],[126,48,77,5.932840595923627E-4],[126,48,78,0.001989067154029013],[126,48,79,0.0033713770386333878],[126,49,64,-0.06998412611180994],[126,49,65,-0.06468661163011617],[126,49,66,-0.05916483849770386],[126,49,67,-0.0534175874359719],[126,49,68,-0.047463251715822254],[126,49,69,-0.04132877044435764],[126,49,70,-0.035038726050515404],[126,49,71,-0.028616087733369634],[126,49,72,-0.022083060302622734],[126,49,73,-0.015461799191671526],[126,49,74,-0.008774989952830695],[126,49,75,-0.002046291006868078],[126,49,76,0.004699360996767952],[126,49,77,0.011435583176577488],[126,49,78,0.003627284804879351],[126,49,79,0.004954357276271763],[126,50,64,-0.059020257713007514],[126,50,65,-0.05389205826197868],[126,50,66,-0.04855163444368365],[126,50,67,-0.04299430125970139],[126,50,68,-0.037238683252614445],[126,50,69,-0.0313141059529911],[126,50,70,-0.025246525423731188],[126,50,71,-0.019059346206111615],[126,50,72,-0.012774411159022793],[126,50,73,-0.006412851234524267],[126,50,74,4.206723295309854E-6],[126,50,75,0.00645507562590591],[126,50,76,0.01291708813626762],[126,50,77,0.02310574837026579],[126,50,78,0.0334868345950644],[126,50,79,0.04378445466032562],[126,51,64,-0.048537503781138316],[126,51,65,-0.04359020504029988],[126,51,66,-0.03844149440168995],[126,51,67,-0.033083070069074044],[126,51,68,-0.027533920569439162],[126,51,69,-0.021826032428119126],[126,51,70,-0.01598696836902107],[126,51,71,-0.010040761804523802],[126,51,72,-0.004009053142549041],[126,51,73,0.002087920734253667],[126,51,74,0.010633657426471462],[126,51,75,0.02114297065208362],[126,51,76,0.03163390446802555],[126,51,77,0.04208454366710786],[126,51,78,0.05247194019917929],[126,51,79,0.06277207530638776],[126,52,64,-0.03858646048856985],[126,52,65,-0.033830438931698896],[126,52,66,-0.028882337964129156],[126,52,67,-0.02373015317365458],[126,52,68,-0.018393383520125272],[126,52,69,-0.012906932554504608],[126,52,70,-0.007300198842881099],[126,52,71,-0.0015980476653477715],[126,52,72,0.008025242808638373],[126,52,73,0.018552787969735605],[126,52,74,0.029090523791830622],[126,52,75,0.03961915109962282],[126,52,76,0.05011921839247504],[126,52,77,0.06057066728903776],[126,52,78,0.07095254146957561],[126,52,79,0.08124285848193477],[126,53,64,-0.029206649562597217],[126,53,65,-0.024651084634128562],[126,53,66,-0.019911097048208624],[126,53,67,-0.014970961887108069],[126,53,68,-0.009850844287060928],[126,53,69,-0.004588794373375786],[126,53,70,0.004858082155064655],[126,53,71,0.01536848652804426],[126,53,72,0.025915997850435274],[126,53,73,0.03647969292410361],[126,53,74,0.04704048730430329],[126,53,75,0.05758023187628555],[126,53,76,0.06808097847427282],[126,53,77,0.0785244171857503],[126,53,78,0.08889148645014765],[126,53,79,0.09916215549202104],[126,54,64,-0.02042699953816649],[126,54,65,-0.01607990798976595],[126,54,66,-0.011554240425886073],[126,54,67,-0.006830601319449501],[126,54,68,0.0011557738888714187],[126,54,69,0.01159674699695776],[126,54,70,0.022115727358264798],[126,54,71,0.03268305593703972],[126,54,72,0.043274084435900854],[126,54,73,0.05386780597120123],[126,54,74,0.06444565336017975],[126,54,75,0.07499047094252079],[126,54,76,0.08548566446617584],[126,54,77,0.09591453201243648],[126,54,78,0.10625977729327231],[126,54,79,0.11650320498508475],[126,55,64,-0.012266374630380715],[126,55,65,-0.008134664763184864],[126,55,66,-0.0029373195447731136],[126,55,67,0.007314997593318669],[126,55,68,0.017722152619625894],[126,55,69,0.028236395857400932],[126,55,70,0.03881865988281694],[126,55,71,0.049437431923287554],[126,55,72,0.06006707758642367],[126,55,73,0.06080633358902833],[126,55,74,0.04538068894881853],[126,55,75,0.045212422741911604],[126,55,76,0.06386341840952986],[126,55,77,0.09739720647729626],[126,55,78,0.12303603465603197],[126,55,79,0.13324659448406573],[126,56,64,-0.004734137436063853],[126,56,65,0.0027635105753516928],[126,56,66,0.012911758527144013],[126,56,67,0.023239129926702816],[126,56,68,0.033719365833280314],[126,56,69,0.04430067297743586],[126,56,70,0.0501486982150911],[126,56,71,0.04339351809197741],[126,56,72,0.025498118514504405],[126,56,73,0.0027228545975828172],[126,56,74,-0.0018702454701995097],[126,56,75,-0.0016516708562433215],[126,56,76,0.004740906680601438],[126,56,77,0.038865403000491114],[126,56,78,0.08292766108168191],[126,56,79,0.1274360362547337],[126,57,64,2.967852980813575E-4],[126,57,65,-0.007331166739365211],[126,57,66,-0.01025737828822418],[126,57,67,-0.009391864131761098],[126,57,68,-0.007411074119462948],[126,57,69,-0.006365010613892105],[126,57,70,-0.006320547297508324],[126,57,71,-0.007510058866560557],[126,57,72,-0.011551042968749573],[126,57,73,-0.01648817943440455],[126,57,74,-0.019573332713423847],[126,57,75,-0.018813877477669914],[126,57,76,-0.013945604136375892],[126,57,77,-0.005412445766952613],[126,57,78,0.01853887153968588],[126,57,79,0.06349981730250212],[126,58,64,-0.001169241678029918],[126,58,65,-0.008268272126576853],[126,58,66,-0.011817177587209333],[126,58,67,-0.011340825008191292],[126,58,68,-0.009772999172776187],[126,58,69,-0.008563971191736186],[126,58,70,-0.008311987298479376],[126,58,71,-0.00918322116170461],[126,58,72,-0.013632997820325576],[126,58,73,-0.018805008607070003],[126,58,74,-0.023016069205917672],[126,58,75,-0.021894417025210697],[126,58,76,-0.01659132712401736],[126,58,77,-0.008495537455272739],[126,58,78,0.002549366688282557],[126,58,79,0.014435314387278023],[126,59,64,-0.017017085872631406],[126,59,65,-0.024277610132168177],[126,59,66,-0.028186274661321092],[126,59,67,-0.027847785414425303],[126,59,68,-0.026364845660104372],[126,59,69,-0.024705939469553705],[126,59,70,-0.023828855044470996],[126,59,71,-0.02452514956061716],[126,59,72,-0.028625843415950706],[126,59,73,-0.03434243060019635],[126,59,74,-0.03848096768963647],[126,59,75,-0.03723381983346211],[126,59,76,-0.032067175705735404],[126,59,77,-0.023498983030990062],[126,59,78,-0.013148709345849148],[126,59,79,-0.001734459339484902],[126,60,64,-0.03471424652823008],[126,60,65,-0.04251529248140653],[126,60,66,-0.04732045558891548],[126,60,67,-0.04678512685696647],[126,60,68,-0.04568337003176991],[126,60,69,-0.044165370571070034],[126,60,70,-0.0428377824231183],[126,60,71,-0.04297261058325877],[126,60,72,-0.04738820166968918],[126,60,73,-0.052147224755131234],[126,60,74,-0.05663750895047857],[126,60,75,-0.055939354168742544],[126,60,76,-0.05088558208989878],[126,60,77,-0.042191456495420936],[126,60,78,-0.031683715041857664],[126,60,79,-0.02063233481452807],[126,61,64,-0.051230346781801654],[126,61,65,-0.05738025979773518],[126,61,66,-0.05905235830562901],[126,61,67,-0.058135253702979985],[126,61,68,-0.056043733197413945],[126,61,69,-0.0543108550200363],[126,61,70,-0.053172629611247114],[126,61,71,-0.05339317585159351],[126,61,72,-0.057731953459740915],[126,61,73,-0.0630355633337356],[126,61,74,-0.06621674762163317],[126,61,75,-0.06646618549231499],[126,61,76,-0.06115715469620618],[126,61,77,-0.05220242942319583],[126,61,78,-0.04230032746274039],[126,61,79,-0.031476928455337845],[126,62,64,-0.06668114630888262],[126,62,65,-0.07274445521609221],[126,62,66,-0.07437432166647644],[126,62,67,-0.07363279890505911],[126,62,68,-0.07156181741098884],[126,62,69,-0.07029656949669424],[126,62,70,-0.06903784517815215],[126,62,71,-0.07007323318564639],[126,62,72,-0.07422023996826767],[126,62,73,-0.07920397366650489],[126,62,74,-0.08216617555930034],[126,62,75,-0.08154741869128213],[126,62,76,-0.07616350466179042],[126,62,77,-0.06773197511658333],[126,62,78,-0.05702880142484243],[126,62,79,-0.04689026196629197],[126,63,64,-0.1044516024762889],[126,63,65,-0.10994424708861174],[126,63,66,-0.11158874730498451],[126,63,67,-0.11002472968657802],[126,63,68,-0.10785080273776007],[126,63,69,-0.10651724302153029],[126,63,70,-0.1055325335196008],[126,63,71,-0.10592593287545712],[126,63,72,-0.10931279957406502],[126,63,73,-0.11437076889059533],[126,63,74,-0.115955915295575],[126,63,75,-0.11445096316811117],[126,63,76,-0.10951181355969772],[126,63,77,-0.10045092013721353],[126,63,78,-0.08927210821870804],[126,63,79,-0.07867781093498284],[126,64,64,-0.11724497703803324],[126,64,65,-0.12277554565048569],[126,64,66,-0.1241252505694992],[126,64,67,-0.12277274754489932],[126,64,68,-0.12067239909459587],[126,64,69,-0.11934256376002768],[126,64,70,-0.11863274508832711],[126,64,71,-0.1188447490893808],[126,64,72,-0.1220877382932174],[126,64,73,-0.12724147840035502],[126,64,74,-0.1285588801664757],[126,64,75,-0.1266390387719719],[126,64,76,-0.12207329145428066],[126,64,77,-0.11310634261422199],[126,64,78,-0.10198230851311871],[126,64,79,-0.09071892075539907],[126,65,64,-0.13299726866200118],[126,65,65,-0.13837552047808338],[126,65,66,-0.1404259334292515],[126,65,67,-0.13912131841219794],[126,65,68,-0.1375622639393064],[126,65,69,-0.1359914573800898],[126,65,70,-0.1358809317571981],[126,65,71,-0.13581440044379253],[126,65,72,-0.13855172270015434],[126,65,73,-0.144041984612037],[126,65,74,-0.1455762387626634],[126,65,75,-0.14362296232006047],[126,65,76,-0.13869561279375292],[126,65,77,-0.12887995197758492],[126,65,78,-0.11761919854804063],[126,65,79,-0.10626709765143127],[126,66,64,-0.15027647806713754],[126,66,65,-0.15646990718731407],[126,66,66,-0.1587374803213127],[126,66,67,-0.1569187298649265],[126,66,68,-0.15561251793880304],[126,66,69,-0.15434173615676147],[126,66,70,-0.15392231769494444],[126,66,71,-0.15456052391245764],[126,66,72,-0.156783829531731],[126,66,73,-0.16105724760422158],[126,66,74,-0.16391353461575123],[126,66,75,-0.1621726405791739],[126,66,76,-0.1572885981750095],[126,66,77,-0.14659005399618963],[126,66,78,-0.13503627624678363],[126,66,79,-0.12353167446116047],[126,67,64,-0.16631431871058666],[126,67,65,-0.1726894101933008],[126,67,66,-0.1738826215842368],[126,67,67,-0.17246941280631767],[126,67,68,-0.17140350321502706],[126,67,69,-0.17042965501907736],[126,67,70,-0.1697020578803488],[126,67,71,-0.1707911580360003],[126,67,72,-0.17377800636147858],[126,67,73,-0.1768286260645822],[126,67,74,-0.17974967360907776],[126,67,75,-0.17897720140259984],[126,67,76,-0.17339924466032938],[126,67,77,-0.16341815396040216],[126,67,78,-0.15222468810560952],[126,67,79,-0.14024210250981287],[126,68,64,-0.21003516676280518],[126,68,65,-0.21608629715691477],[126,68,66,-0.21803537077219604],[126,68,67,-0.2167349613778891],[126,68,68,-0.21520568061608697],[126,68,69,-0.21480364010739947],[126,68,70,-0.21461451851828892],[126,68,71,-0.21588174527568535],[126,68,72,-0.21866543546032755],[126,68,73,-0.2217810879129574],[126,68,74,-0.22357163041259168],[126,68,75,-0.22318676099593424],[126,68,76,-0.21764073815269863],[126,68,77,-0.20831037227820842],[126,68,78,-0.19704959144557443],[126,68,79,-0.1856769879158869],[126,69,64,-0.22524467225952513],[126,69,65,-0.23257386875135042],[126,69,66,-0.23730073690124223],[126,69,67,-0.23713177650963108],[126,69,68,-0.23628801355806625],[126,69,69,-0.23623092554287417],[126,69,70,-0.23649254563392008],[126,69,71,-0.23739642767333047],[126,69,72,-0.2402259746676015],[126,69,73,-0.2440364391334345],[126,69,74,-0.24532634874571063],[126,69,75,-0.24479816150585665],[126,69,76,-0.23941483043981707],[126,69,77,-0.22933397594984858],[126,69,78,-0.21808515212391721],[126,69,79,-0.20727087949853407],[126,70,64,-0.24048031163302647],[126,70,65,-0.2484923653146972],[126,70,66,-0.25272547012447505],[126,70,67,-0.25347385747047047],[126,70,68,-0.2520457887106732],[126,70,69,-0.2516359334109867],[126,70,70,-0.2516802897655929],[126,70,71,-0.2524179683072075],[126,70,72,-0.2553885622107977],[126,70,73,-0.2601343729262273],[126,70,74,-0.2621587887115686],[126,70,75,-0.26049014015840954],[126,70,76,-0.25421536460804817],[126,70,77,-0.24407706852152203],[126,70,78,-0.23295116276631045],[126,70,79,-0.22269828617588686],[126,71,64,-0.25229776180580915],[126,71,65,-0.2608083651612384],[126,71,66,-0.26511654151847885],[126,71,67,-0.2657269269912717],[126,71,68,-0.26487510097478173],[126,71,69,-0.2639176240486002],[126,71,70,-0.26349938515018967],[126,71,71,-0.2649303321381843],[126,71,72,-0.2682030569584923],[126,71,73,-0.27282402963158764],[126,71,74,-0.27489292928476294],[126,71,75,-0.2735219700697899],[126,71,76,-0.2673719110547887],[126,71,77,-0.2573554553509754],[126,71,78,-0.2463833098063049],[126,71,79,-0.23582615669823534],[126,72,64,-0.2674561626624627],[126,72,65,-0.2754048662887469],[126,72,66,-0.27936458720052887],[126,72,67,-0.28064944461478336],[126,72,68,-0.27980284923678655],[126,72,69,-0.27840732021246367],[126,72,70,-0.2781078026445691],[126,72,71,-0.27946491482192876],[126,72,72,-0.28327847871464834],[126,72,73,-0.28762405612009384],[126,72,74,-0.29012914424035335],[126,72,75,-0.28874300492889987],[126,72,76,-0.2828160930040103],[126,72,77,-0.27314830447811783],[126,72,78,-0.2617030050263618],[126,72,79,-0.2508629102386284],[126,73,64,-0.284176789704894],[126,73,65,-0.29078706801918364],[126,73,66,-0.292559740497144],[126,73,67,-0.2921830269221701],[126,73,68,-0.29030092003880176],[126,73,69,-0.2894122198787276],[126,73,70,-0.28930091584558765],[126,73,71,-0.2901328997971577],[126,73,72,-0.29436071073740566],[126,73,73,-0.2987119248094977],[126,73,74,-0.30163517052813704],[126,73,75,-0.30029532336749026],[126,73,76,-0.2946648696042796],[126,73,77,-0.2860965336255901],[126,73,78,-0.27588670812336996],[126,73,79,-0.2659523354376289],[126,74,64,-0.30068629676284825],[126,74,65,-0.30679733945647275],[126,74,66,-0.3075978990585276],[126,74,67,-0.30735361019714885],[126,74,68,-0.3059326586809457],[126,74,69,-0.30507064205702333],[126,74,70,-0.30501718810744055],[126,74,71,-0.30632347787963343],[126,74,72,-0.3102897704705762],[126,74,73,-0.3138869475451421],[126,74,74,-0.3170437628696598],[126,74,75,-0.3159682418284036],[126,74,76,-0.3116617144149367],[126,74,77,-0.30290376485015363],[126,74,78,-0.29213619377270733],[126,74,79,-0.2828576510130779],[126,75,64,-0.3150705208457198],[126,75,65,-0.3205750270272996],[126,75,66,-0.32112534872236753],[126,75,67,-0.3203131325663673],[126,75,68,-0.3187141687451872],[126,75,69,-0.31852819849155367],[126,75,70,-0.31885760022028076],[126,75,71,-0.3202602716267221],[126,75,72,-0.3242895970651016],[126,75,73,-0.32801326855658347],[126,75,74,-0.3310496208041454],[126,75,75,-0.33047727389170656],[126,75,76,-0.32654181154159406],[126,75,77,-0.3182359262910731],[126,75,78,-0.3075181171272067],[126,75,79,-0.29776114307075047],[126,76,64,-0.32807012827599075],[126,76,65,-0.3337243829203116],[126,76,66,-0.3339311364829822],[126,76,67,-0.3327817999753349],[126,76,68,-0.3314479458214998],[126,76,69,-0.33074021909269496],[126,76,70,-0.3315849412964468],[126,76,71,-0.3335936211316971],[126,76,72,-0.3385572015641493],[126,76,73,-0.34276065003736816],[126,76,74,-0.3458183720333286],[126,76,75,-0.3454152683465703],[126,76,76,-0.34184812927460706],[126,76,77,-0.333186257023497],[126,76,78,-0.3234633896040097],[126,76,79,-0.3135077183000228],[126,77,64,-0.34117077045919164],[126,77,65,-0.34572182124195705],[126,77,66,-0.3460012082745013],[126,77,67,-0.34488189067852243],[126,77,68,-0.3437694494180744],[126,77,69,-0.34270377432266935],[126,77,70,-0.34347968546766894],[126,77,71,-0.3459382119174859],[126,77,72,-0.3507660372662875],[126,77,73,-0.3548281899401569],[126,77,74,-0.3583055818780267],[126,77,75,-0.3586270335428127],[126,77,76,-0.3551112684485193],[126,77,77,-0.34668286850583935],[126,77,78,-0.3373188589894951],[126,77,79,-0.32735128048082757],[126,78,64,-0.3550415232402936],[126,78,65,-0.35863695875429236],[126,78,66,-0.3593342037299183],[126,78,67,-0.3578239808180333],[126,78,68,-0.3566320682516903],[126,78,69,-0.35598457351343066],[126,78,70,-0.357476817539979],[126,78,71,-0.3590915052946374],[126,78,72,-0.3641771859125571],[126,78,73,-0.3692222817009878],[126,78,74,-0.372802211422258],[126,78,75,-0.3732964894229137],[126,78,76,-0.36955059165422544],[126,78,77,-0.36115828530500427],[126,78,78,-0.3528523294108243],[126,78,79,-0.3430386914825557],[126,79,64,-0.3660952482946228],[126,79,65,-0.3693221026262231],[126,79,66,-0.3695664874089246],[126,79,67,-0.3681327541526997],[126,79,68,-0.3672148515223159],[126,79,69,-0.36746676889223834],[126,79,70,-0.36827697970961687],[126,79,71,-0.3699425156361318],[126,79,72,-0.37500529298627716],[126,79,73,-0.3808243488206471],[126,79,74,-0.3852189948293205],[126,79,75,-0.3850216685589662],[126,79,76,-0.381239402207909],[126,79,77,-0.37465478006008607],[126,79,78,-0.36540448041151447],[126,79,79,-0.35559767659593955],[126,80,64,-0.37931742687180287],[126,80,65,-0.38258533180197124],[126,80,66,-0.38265481838544235],[126,80,67,-0.3811899093464658],[126,80,68,-0.3808041835281554],[126,80,69,-0.3810575024208409],[126,80,70,-0.38160238129796925],[126,80,71,-0.38359009091201524],[126,80,72,-0.387746448733821],[126,80,73,-0.3946099500712512],[126,80,74,-0.3990668807989283],[126,80,75,-0.39893287479295814],[126,80,76,-0.39536797989897665],[126,80,77,-0.3893176605782616],[126,80,78,-0.3799837031005354],[126,80,79,-0.3693912321310195],[126,81,64,-0.3934271333459646],[126,81,65,-0.39627831465311025],[126,81,66,-0.39506463129245223],[126,81,67,-0.39267737946464903],[126,81,68,-0.3923827856891779],[126,81,69,-0.3926577077221525],[126,81,70,-0.39367497365789805],[126,81,71,-0.3960617592733855],[126,81,72,-0.40061037839122743],[126,81,73,-0.4078860782437933],[126,81,74,-0.41298775615221334],[126,81,75,-0.4136012683820985],[126,81,76,-0.4101686075062828],[126,81,77,-0.4047662223867492],[126,81,78,-0.39550192450016275],[126,81,79,-0.3850565706775648],[126,82,64,-0.4077426713755493],[126,82,65,-0.4106432856667564],[126,82,66,-0.4095378934860804],[126,82,67,-0.40758317174434394],[126,82,68,-0.40686438768782024],[126,82,69,-0.4073095128277577],[126,82,70,-0.4080074297357689],[126,82,71,-0.41055063924357726],[126,82,72,-0.41559305482980896],[126,82,73,-0.42230308791853766],[126,82,74,-0.4276128801542999],[126,82,75,-0.42892374596749244],[126,82,76,-0.42565600007307836],[126,82,77,-0.42013171476325245],[126,82,78,-0.4111265954872796],[126,82,79,-0.4006168024724352],[126,83,64,-0.4196717905456918],[126,83,65,-0.42308271817658455],[126,83,66,-0.4222275902176581],[126,83,67,-0.4201593192907029],[126,83,68,-0.4196064142305758],[126,83,69,-0.41969606173507823],[126,83,70,-0.4203562486212818],[126,83,71,-0.42280313815397336],[126,83,72,-0.42877675203894755],[126,83,73,-0.43553101696228713],[126,83,74,-0.44122190505865866],[126,83,75,-0.4417268927447252],[126,83,76,-0.43868279147787137],[126,83,77,-0.43306139720006287],[126,83,78,-0.424113520374679],[126,83,79,-0.41359738158687304],[126,84,64,-0.429415454422355],[126,84,65,-0.43325130525534916],[126,84,66,-0.43328761438043245],[126,84,67,-0.4318740177461961],[126,84,68,-0.43160478967524685],[126,84,69,-0.4319299585530079],[126,84,70,-0.43318392950890605],[126,84,71,-0.43553075055193297],[126,84,72,-0.44163471675667687],[126,84,73,-0.4484833271264541],[126,84,74,-0.4535335883881504],[126,84,75,-0.45446359941799697],[126,84,76,-0.4513195780981438],[126,84,77,-0.44590676333622054],[126,84,78,-0.4367171892225213],[126,84,79,-0.4261509804848787],[126,85,64,-0.4385460550738672],[126,85,65,-0.4439608024288965],[126,85,66,-0.44618280508490216],[126,85,67,-0.4451159806993547],[126,85,68,-0.4448822704065937],[126,85,69,-0.44542045406697206],[126,85,70,-0.44660918699312296],[126,85,71,-0.44846104151655136],[126,85,72,-0.4531128854016962],[126,85,73,-0.4583333333333333],[126,85,74,-0.4583333333333333],[126,85,75,-0.4583333333333333],[126,85,76,-0.4583333333333333],[126,85,77,-0.45577589561360576],[126,85,78,-0.4459687407626582],[126,85,79,-0.4351195110227598],[126,86,64,-0.4506060803108997],[126,86,65,-0.4563045892002089],[126,86,66,-0.4583333333333333],[126,86,67,-0.45772944478663163],[126,86,68,-0.456709503375269],[126,86,69,-0.4573585223643853],[126,86,70,-0.4583333333333333],[126,86,71,-0.4583333333333333],[126,86,72,-0.4583333333333333],[126,86,73,-0.4583333333333333],[126,86,74,-0.4583333333333333],[126,86,75,-0.4583333333333333],[126,86,76,-0.4583333333333333],[126,86,77,-0.4583333333333333],[126,86,78,-0.4583333333333333],[126,86,79,-0.4480107448909999],[126,87,64,-0.4583333333333333],[126,87,65,-0.4583333333333333],[126,87,66,-0.4583333333333333],[126,87,67,-0.4583333333333333],[126,87,68,-0.4583333333333333],[126,87,69,-0.4583333333333333],[126,87,70,-0.4583333333333333],[126,87,71,-0.4583333333333333],[126,87,72,-0.4583333333333333],[126,87,73,-0.4583333333333333],[126,87,74,-0.4583333333333333],[126,87,75,-0.4583333333333333],[126,87,76,-0.4583333333333333],[126,87,77,-0.4583333333333333],[126,87,78,-0.4583333333333333],[126,87,79,-0.4583333333333333],[126,88,64,-0.4583333333333333],[126,88,65,-0.4583333333333333],[126,88,66,-0.4583333333333333],[126,88,67,-0.4583333333333333],[126,88,68,-0.4583333333333333],[126,88,69,-0.4583333333333333],[126,88,70,-0.4583333333333333],[126,88,71,-0.4583333333333333],[126,88,72,-0.4583333333333333],[126,88,73,-0.4583333333333333],[126,88,74,-0.4583333333333333],[126,88,75,-0.4583333333333333],[126,88,76,-0.4583333333333333],[126,88,77,-0.4583333333333333],[126,88,78,-0.4583333333333333],[126,88,79,-0.4583333333333333],[126,89,64,-0.4583333333333333],[126,89,65,-0.4583333333333333],[126,89,66,-0.4583333333333333],[126,89,67,-0.4583333333333333],[126,89,68,-0.4583333333333333],[126,89,69,-0.4583333333333333],[126,89,70,-0.4583333333333333],[126,89,71,-0.4583333333333333],[126,89,72,-0.4583333333333333],[126,89,73,-0.4583333333333333],[126,89,74,-0.4583333333333333],[126,89,75,-0.4583333333333333],[126,89,76,-0.4583333333333333],[126,89,77,-0.4583333333333333],[126,89,78,-0.4583333333333333],[126,89,79,-0.4583333333333333],[126,90,64,-0.4583333333333333],[126,90,65,-0.4583333333333333],[126,90,66,-0.4583333333333333],[126,90,67,-0.4583333333333333],[126,90,68,-0.4583333333333333],[126,90,69,-0.4583333333333333],[126,90,70,-0.4583333333333333],[126,90,71,-0.4583333333333333],[126,90,72,-0.4583333333333333],[126,90,73,-0.4583333333333333],[126,90,74,-0.4583333333333333],[126,90,75,-0.4583333333333333],[126,90,76,-0.4583333333333333],[126,90,77,-0.4583333333333333],[126,90,78,-0.4583333333333333],[126,90,79,-0.4583333333333333],[126,91,64,-0.4583333333333333],[126,91,65,-0.4583333333333333],[126,91,66,-0.4583333333333333],[126,91,67,-0.4583333333333333],[126,91,68,-0.4583333333333333],[126,91,69,-0.4583333333333333],[126,91,70,-0.4583333333333333],[126,91,71,-0.4583333333333333],[126,91,72,-0.4583333333333333],[126,91,73,-0.4583333333333333],[126,91,74,-0.4583333333333333],[126,91,75,-0.4583333333333333],[126,91,76,-0.4583333333333333],[126,91,77,-0.4583333333333333],[126,91,78,-0.4583333333333333],[126,91,79,-0.4583333333333333],[126,92,64,-0.4583333333333333],[126,92,65,-0.4583333333333333],[126,92,66,-0.4583333333333333],[126,92,67,-0.4583333333333333],[126,92,68,-0.4583333333333333],[126,92,69,-0.4583333333333333],[126,92,70,-0.4583333333333333],[126,92,71,-0.4583333333333333],[126,92,72,-0.4583333333333333],[126,92,73,-0.4583333333333333],[126,92,74,-0.4583333333333333],[126,92,75,-0.4583333333333333],[126,92,76,-0.4583333333333333],[126,92,77,-0.4583333333333333],[126,92,78,-0.4583333333333333],[126,92,79,-0.4583333333333333],[126,93,64,-0.4583333333333333],[126,93,65,-0.4583333333333333],[126,93,66,-0.4583333333333333],[126,93,67,-0.4583333333333333],[126,93,68,-0.4583333333333333],[126,93,69,-0.4583333333333333],[126,93,70,-0.4583333333333333],[126,93,71,-0.4583333333333333],[126,93,72,-0.4583333333333333],[126,93,73,-0.4583333333333333],[126,93,74,-0.4583333333333333],[126,93,75,-0.4583333333333333],[126,93,76,-0.4583333333333333],[126,93,77,-0.4583333333333333],[126,93,78,-0.4583333333333333],[126,93,79,-0.4583333333333333],[126,94,64,-0.4583333333333333],[126,94,65,-0.4583333333333333],[126,94,66,-0.4583333333333333],[126,94,67,-0.4583333333333333],[126,94,68,-0.4583333333333333],[126,94,69,-0.4583333333333333],[126,94,70,-0.4583333333333333],[126,94,71,-0.4583333333333333],[126,94,72,-0.4583333333333333],[126,94,73,-0.4583333333333333],[126,94,74,-0.4583333333333333],[126,94,75,-0.4583333333333333],[126,94,76,-0.4583333333333333],[126,94,77,-0.4583333333333333],[126,94,78,-0.4583333333333333],[126,94,79,-0.4583333333333333],[126,95,64,-0.4583333333333333],[126,95,65,-0.4583333333333333],[126,95,66,-0.4583333333333333],[126,95,67,-0.4583333333333333],[126,95,68,-0.4583333333333333],[126,95,69,-0.4583333333333333],[126,95,70,-0.4583333333333333],[126,95,71,-0.4583333333333333],[126,95,72,-0.4583333333333333],[126,95,73,-0.4583333333333333],[126,95,74,-0.4583333333333333],[126,95,75,-0.4583333333333333],[126,95,76,-0.4583333333333333],[126,95,77,-0.4583333333333333],[126,95,78,-0.4583333333333333],[126,95,79,-0.4583333333333333],[126,96,64,-0.4583333333333333],[126,96,65,-0.4583333333333333],[126,96,66,-0.4583333333333333],[126,96,67,-0.4583333333333333],[126,96,68,-0.4583333333333333],[126,96,69,-0.4583333333333333],[126,96,70,-0.4583333333333333],[126,96,71,-0.4583333333333333],[126,96,72,-0.4583333333333333],[126,96,73,-0.4583333333333333],[126,96,74,-0.4583333333333333],[126,96,75,-0.4583333333333333],[126,96,76,-0.4583333333333333],[126,96,77,-0.4583333333333333],[126,96,78,-0.4583333333333333],[126,96,79,-0.4583333333333333],[126,97,64,-0.4583333333333333],[126,97,65,-0.4583333333333333],[126,97,66,-0.4583333333333333],[126,97,67,-0.4583333333333333],[126,97,68,-0.4583333333333333],[126,97,69,-0.4583333333333333],[126,97,70,-0.4583333333333333],[126,97,71,-0.4583333333333333],[126,97,72,-0.4583333333333333],[126,97,73,-0.4583333333333333],[126,97,74,-0.4583333333333333],[126,97,75,-0.4583333333333333],[126,97,76,-0.4583333333333333],[126,97,77,-0.4583333333333333],[126,97,78,-0.4583333333333333],[126,97,79,-0.4583333333333333],[126,98,64,-0.4583333333333333],[126,98,65,-0.4583333333333333],[126,98,66,-0.4583333333333333],[126,98,67,-0.4583333333333333],[126,98,68,-0.4583333333333333],[126,98,69,-0.4583333333333333],[126,98,70,-0.4583333333333333],[126,98,71,-0.4583333333333333],[126,98,72,-0.4583333333333333],[126,98,73,-0.4583333333333333],[126,98,74,-0.4583333333333333],[126,98,75,-0.4583333333333333],[126,98,76,-0.4583333333333333],[126,98,77,-0.4583333333333333],[126,98,78,-0.4583333333333333],[126,98,79,-0.4583333333333333],[126,99,64,-0.4583333333333333],[126,99,65,-0.4583333333333333],[126,99,66,-0.4583333333333333],[126,99,67,-0.4583333333333333],[126,99,68,-0.4583333333333333],[126,99,69,-0.4583333333333333],[126,99,70,-0.4583333333333333],[126,99,71,-0.4583333333333333],[126,99,72,-0.4583333333333333],[126,99,73,-0.4583333333333333],[126,99,74,-0.4583333333333333],[126,99,75,-0.4583333333333333],[126,99,76,-0.4583333333333333],[126,99,77,-0.4583333333333333],[126,99,78,-0.4583333333333333],[126,99,79,-0.4583333333333333],[126,100,64,-0.4583333333333333],[126,100,65,-0.4583333333333333],[126,100,66,-0.4583333333333333],[126,100,67,-0.4583333333333333],[126,100,68,-0.4583333333333333],[126,100,69,-0.4583333333333333],[126,100,70,-0.4583333333333333],[126,100,71,-0.4583333333333333],[126,100,72,-0.4583333333333333],[126,100,73,-0.4583333333333333],[126,100,74,-0.4583333333333333],[126,100,75,-0.4583333333333333],[126,100,76,-0.4583333333333333],[126,100,77,-0.4583333333333333],[126,100,78,-0.4583333333333333],[126,100,79,-0.4583333333333333],[126,101,64,-0.4583333333333333],[126,101,65,-0.4583333333333333],[126,101,66,-0.4583333333333333],[126,101,67,-0.4583333333333333],[126,101,68,-0.4583333333333333],[126,101,69,-0.4583333333333333],[126,101,70,-0.4583333333333333],[126,101,71,-0.4583333333333333],[126,101,72,-0.4583333333333333],[126,101,73,-0.4583333333333333],[126,101,74,-0.4583333333333333],[126,101,75,-0.4583333333333333],[126,101,76,-0.4583333333333333],[126,101,77,-0.4583333333333333],[126,101,78,-0.4583333333333333],[126,101,79,-0.4583333333333333],[126,102,64,-0.4583333333333333],[126,102,65,-0.4583333333333333],[126,102,66,-0.4583333333333333],[126,102,67,-0.4583333333333333],[126,102,68,-0.4583333333333333],[126,102,69,-0.4583333333333333],[126,102,70,-0.4583333333333333],[126,102,71,-0.4583333333333333],[126,102,72,-0.4583333333333333],[126,102,73,-0.4583333333333333],[126,102,74,-0.4583333333333333],[126,102,75,-0.4583333333333333],[126,102,76,-0.4583333333333333],[126,102,77,-0.4583333333333333],[126,102,78,-0.4583333333333333],[126,102,79,-0.4583333333333333],[126,103,64,-0.4583333333333333],[126,103,65,-0.4583333333333333],[126,103,66,-0.4583333333333333],[126,103,67,-0.4583333333333333],[126,103,68,-0.4583333333333333],[126,103,69,-0.4583333333333333],[126,103,70,-0.4583333333333333],[126,103,71,-0.4583333333333333],[126,103,72,-0.4583333333333333],[126,103,73,-0.4583333333333333],[126,103,74,-0.4583333333333333],[126,103,75,-0.4583333333333333],[126,103,76,-0.4583333333333333],[126,103,77,-0.4583333333333333],[126,103,78,-0.4583333333333333],[126,103,79,-0.4583333333333333],[126,104,64,-0.4583333333333333],[126,104,65,-0.4583333333333333],[126,104,66,-0.4583333333333333],[126,104,67,-0.4583333333333333],[126,104,68,-0.4583333333333333],[126,104,69,-0.4583333333333333],[126,104,70,-0.4583333333333333],[126,104,71,-0.4583333333333333],[126,104,72,-0.4583333333333333],[126,104,73,-0.4583333333333333],[126,104,74,-0.4583333333333333],[126,104,75,-0.4583333333333333],[126,104,76,-0.4583333333333333],[126,104,77,-0.4583333333333333],[126,104,78,-0.4583333333333333],[126,104,79,-0.4583333333333333],[126,105,64,-0.4583333333333333],[126,105,65,-0.4583333333333333],[126,105,66,-0.4583333333333333],[126,105,67,-0.4583333333333333],[126,105,68,-0.4583333333333333],[126,105,69,-0.4583333333333333],[126,105,70,-0.4583333333333333],[126,105,71,-0.4583333333333333],[126,105,72,-0.4583333333333333],[126,105,73,-0.4583333333333333],[126,105,74,-0.4583333333333333],[126,105,75,-0.4583333333333333],[126,105,76,-0.4583333333333333],[126,105,77,-0.4583333333333333],[126,105,78,-0.4583333333333333],[126,105,79,-0.4583333333333333],[126,106,64,-0.4583333333333333],[126,106,65,-0.4583333333333333],[126,106,66,-0.4583333333333333],[126,106,67,-0.4583333333333333],[126,106,68,-0.4583333333333333],[126,106,69,-0.4583333333333333],[126,106,70,-0.4583333333333333],[126,106,71,-0.4583333333333333],[126,106,72,-0.4583333333333333],[126,106,73,-0.4583333333333333],[126,106,74,-0.4583333333333333],[126,106,75,-0.4583333333333333],[126,106,76,-0.4583333333333333],[126,106,77,-0.4583333333333333],[126,106,78,-0.4583333333333333],[126,106,79,-0.4583333333333333],[126,107,64,-0.4583333333333333],[126,107,65,-0.4583333333333333],[126,107,66,-0.4583333333333333],[126,107,67,-0.4583333333333333],[126,107,68,-0.4583333333333333],[126,107,69,-0.4583333333333333],[126,107,70,-0.4583333333333333],[126,107,71,-0.4583333333333333],[126,107,72,-0.4583333333333333],[126,107,73,-0.4583333333333333],[126,107,74,-0.4583333333333333],[126,107,75,-0.4583333333333333],[126,107,76,-0.4583333333333333],[126,107,77,-0.4583333333333333],[126,107,78,-0.4583333333333333],[126,107,79,-0.4583333333333333],[126,108,64,-0.4583333333333333],[126,108,65,-0.4583333333333333],[126,108,66,-0.4583333333333333],[126,108,67,-0.4583333333333333],[126,108,68,-0.4583333333333333],[126,108,69,-0.4583333333333333],[126,108,70,-0.4583333333333333],[126,108,71,-0.4583333333333333],[126,108,72,-0.4583333333333333],[126,108,73,-0.4583333333333333],[126,108,74,-0.4583333333333333],[126,108,75,-0.4583333333333333],[126,108,76,-0.4583333333333333],[126,108,77,-0.4583333333333333],[126,108,78,-0.4583333333333333],[126,108,79,-0.4583333333333333],[126,109,64,-0.4583333333333333],[126,109,65,-0.4583333333333333],[126,109,66,-0.4583333333333333],[126,109,67,-0.4583333333333333],[126,109,68,-0.4583333333333333],[126,109,69,-0.4583333333333333],[126,109,70,-0.4583333333333333],[126,109,71,-0.4583333333333333],[126,109,72,-0.4583333333333333],[126,109,73,-0.4583333333333333],[126,109,74,-0.4583333333333333],[126,109,75,-0.4583333333333333],[126,109,76,-0.4583333333333333],[126,109,77,-0.4583333333333333],[126,109,78,-0.4583333333333333],[126,109,79,-0.4583333333333333],[126,110,64,-0.4583333333333333],[126,110,65,-0.4583333333333333],[126,110,66,-0.4583333333333333],[126,110,67,-0.4583333333333333],[126,110,68,-0.4583333333333333],[126,110,69,-0.4583333333333333],[126,110,70,-0.4583333333333333],[126,110,71,-0.4583333333333333],[126,110,72,-0.4583333333333333],[126,110,73,-0.4583333333333333],[126,110,74,-0.4583333333333333],[126,110,75,-0.4583333333333333],[126,110,76,-0.4583333333333333],[126,110,77,-0.4583333333333333],[126,110,78,-0.4583333333333333],[126,110,79,-0.4583333333333333],[126,111,64,-0.4583333333333333],[126,111,65,-0.4583333333333333],[126,111,66,-0.4583333333333333],[126,111,67,-0.4583333333333333],[126,111,68,-0.4583333333333333],[126,111,69,-0.4583333333333333],[126,111,70,-0.4583333333333333],[126,111,71,-0.4583333333333333],[126,111,72,-0.4583333333333333],[126,111,73,-0.4583333333333333],[126,111,74,-0.4583333333333333],[126,111,75,-0.4583333333333333],[126,111,76,-0.4583333333333333],[126,111,77,-0.4583333333333333],[126,111,78,-0.4583333333333333],[126,111,79,-0.4583333333333333],[126,112,64,-0.4583333333333333],[126,112,65,-0.4583333333333333],[126,112,66,-0.4583333333333333],[126,112,67,-0.4583333333333333],[126,112,68,-0.4583333333333333],[126,112,69,-0.4583333333333333],[126,112,70,-0.4583333333333333],[126,112,71,-0.4583333333333333],[126,112,72,-0.4583333333333333],[126,112,73,-0.4583333333333333],[126,112,74,-0.4583333333333333],[126,112,75,-0.4583333333333333],[126,112,76,-0.4583333333333333],[126,112,77,-0.4583333333333333],[126,112,78,-0.4583333333333333],[126,112,79,-0.4583333333333333],[126,113,64,-0.4583333333333333],[126,113,65,-0.4583333333333333],[126,113,66,-0.4583333333333333],[126,113,67,-0.4583333333333333],[126,113,68,-0.4583333333333333],[126,113,69,-0.4583333333333333],[126,113,70,-0.4583333333333333],[126,113,71,-0.4583333333333333],[126,113,72,-0.4583333333333333],[126,113,73,-0.4583333333333333],[126,113,74,-0.4583333333333333],[126,113,75,-0.4583333333333333],[126,113,76,-0.4583333333333333],[126,113,77,-0.4583333333333333],[126,113,78,-0.4583333333333333],[126,113,79,-0.4583333333333333],[126,114,64,-0.4583333333333333],[126,114,65,-0.4583333333333333],[126,114,66,-0.4583333333333333],[126,114,67,-0.4583333333333333],[126,114,68,-0.4583333333333333],[126,114,69,-0.4583333333333333],[126,114,70,-0.4583333333333333],[126,114,71,-0.4583333333333333],[126,114,72,-0.4583333333333333],[126,114,73,-0.4583333333333333],[126,114,74,-0.4583333333333333],[126,114,75,-0.4583333333333333],[126,114,76,-0.4583333333333333],[126,114,77,-0.4583333333333333],[126,114,78,-0.4583333333333333],[126,114,79,-0.4583333333333333],[126,115,64,-0.4583333333333333],[126,115,65,-0.4583333333333333],[126,115,66,-0.4583333333333333],[126,115,67,-0.4583333333333333],[126,115,68,-0.4583333333333333],[126,115,69,-0.4583333333333333],[126,115,70,-0.4583333333333333],[126,115,71,-0.4583333333333333],[126,115,72,-0.4583333333333333],[126,115,73,-0.4583333333333333],[126,115,74,-0.4583333333333333],[126,115,75,-0.4583333333333333],[126,115,76,-0.4583333333333333],[126,115,77,-0.4583333333333333],[126,115,78,-0.4583333333333333],[126,115,79,-0.4583333333333333],[126,116,64,-0.4583333333333333],[126,116,65,-0.4583333333333333],[126,116,66,-0.4583333333333333],[126,116,67,-0.4583333333333333],[126,116,68,-0.4583333333333333],[126,116,69,-0.4583333333333333],[126,116,70,-0.4583333333333333],[126,116,71,-0.4583333333333333],[126,116,72,-0.4583333333333333],[126,116,73,-0.4583333333333333],[126,116,74,-0.4583333333333333],[126,116,75,-0.4583333333333333],[126,116,76,-0.4583333333333333],[126,116,77,-0.4583333333333333],[126,116,78,-0.4583333333333333],[126,116,79,-0.4583333333333333],[126,117,64,-0.4583333333333333],[126,117,65,-0.4583333333333333],[126,117,66,-0.4583333333333333],[126,117,67,-0.4583333333333333],[126,117,68,-0.4583333333333333],[126,117,69,-0.4583333333333333],[126,117,70,-0.4583333333333333],[126,117,71,-0.4583333333333333],[126,117,72,-0.4583333333333333],[126,117,73,-0.4583333333333333],[126,117,74,-0.4583333333333333],[126,117,75,-0.4583333333333333],[126,117,76,-0.4583333333333333],[126,117,77,-0.4583333333333333],[126,117,78,-0.4583333333333333],[126,117,79,-0.4583333333333333],[126,118,64,-0.4583333333333333],[126,118,65,-0.4583333333333333],[126,118,66,-0.4583333333333333],[126,118,67,-0.4583333333333333],[126,118,68,-0.4583333333333333],[126,118,69,-0.4583333333333333],[126,118,70,-0.4583333333333333],[126,118,71,-0.4583333333333333],[126,118,72,-0.4583333333333333],[126,118,73,-0.4583333333333333],[126,118,74,-0.4583333333333333],[126,118,75,-0.4583333333333333],[126,118,76,-0.4583333333333333],[126,118,77,-0.4583333333333333],[126,118,78,-0.4583333333333333],[126,118,79,-0.4583333333333333],[126,119,64,-0.4583333333333333],[126,119,65,-0.4583333333333333],[126,119,66,-0.4583333333333333],[126,119,67,-0.4583333333333333],[126,119,68,-0.4583333333333333],[126,119,69,-0.4583333333333333],[126,119,70,-0.4583333333333333],[126,119,71,-0.4583333333333333],[126,119,72,-0.4583333333333333],[126,119,73,-0.4583333333333333],[126,119,74,-0.4583333333333333],[126,119,75,-0.4583333333333333],[126,119,76,-0.4583333333333333],[126,119,77,-0.4583333333333333],[126,119,78,-0.4583333333333333],[126,119,79,-0.4583333333333333],[126,120,64,-0.4583333333333333],[126,120,65,-0.4583333333333333],[126,120,66,-0.4583333333333333],[126,120,67,-0.4583333333333333],[126,120,68,-0.4583333333333333],[126,120,69,-0.4583333333333333],[126,120,70,-0.4583333333333333],[126,120,71,-0.4583333333333333],[126,120,72,-0.4583333333333333],[126,120,73,-0.4583333333333333],[126,120,74,-0.4583333333333333],[126,120,75,-0.4583333333333333],[126,120,76,-0.4583333333333333],[126,120,77,-0.4583333333333333],[126,120,78,-0.4583333333333333],[126,120,79,-0.4583333333333333],[126,121,64,-0.4583333333333333],[126,121,65,-0.4583333333333333],[126,121,66,-0.4583333333333333],[126,121,67,-0.4583333333333333],[126,121,68,-0.4583333333333333],[126,121,69,-0.4583333333333333],[126,121,70,-0.4583333333333333],[126,121,71,-0.4583333333333333],[126,121,72,-0.4583333333333333],[126,121,73,-0.4583333333333333],[126,121,74,-0.4583333333333333],[126,121,75,-0.4583333333333333],[126,121,76,-0.4583333333333333],[126,121,77,-0.4583333333333333],[126,121,78,-0.4583333333333333],[126,121,79,-0.4583333333333333],[126,122,64,-0.4583333333333333],[126,122,65,-0.4583333333333333],[126,122,66,-0.4583333333333333],[126,122,67,-0.4583333333333333],[126,122,68,-0.4583333333333333],[126,122,69,-0.4583333333333333],[126,122,70,-0.4583333333333333],[126,122,71,-0.4583333333333333],[126,122,72,-0.4583333333333333],[126,122,73,-0.4583333333333333],[126,122,74,-0.4583333333333333],[126,122,75,-0.4583333333333333],[126,122,76,-0.4583333333333333],[126,122,77,-0.4583333333333333],[126,122,78,-0.4583333333333333],[126,122,79,-0.4583333333333333],[126,123,64,-0.4583333333333333],[126,123,65,-0.4583333333333333],[126,123,66,-0.4583333333333333],[126,123,67,-0.4583333333333333],[126,123,68,-0.4583333333333333],[126,123,69,-0.4583333333333333],[126,123,70,-0.4583333333333333],[126,123,71,-0.4583333333333333],[126,123,72,-0.4583333333333333],[126,123,73,-0.4583333333333333],[126,123,74,-0.4583333333333333],[126,123,75,-0.4583333333333333],[126,123,76,-0.4583333333333333],[126,123,77,-0.4583333333333333],[126,123,78,-0.4583333333333333],[126,123,79,-0.4583333333333333],[126,124,64,-0.4583333333333333],[126,124,65,-0.4583333333333333],[126,124,66,-0.4583333333333333],[126,124,67,-0.4583333333333333],[126,124,68,-0.4583333333333333],[126,124,69,-0.4583333333333333],[126,124,70,-0.4583333333333333],[126,124,71,-0.4583333333333333],[126,124,72,-0.4583333333333333],[126,124,73,-0.4583333333333333],[126,124,74,-0.4583333333333333],[126,124,75,-0.4583333333333333],[126,124,76,-0.4583333333333333],[126,124,77,-0.4583333333333333],[126,124,78,-0.4583333333333333],[126,124,79,-0.4583333333333333],[126,125,64,-0.4583333333333333],[126,125,65,-0.4583333333333333],[126,125,66,-0.4583333333333333],[126,125,67,-0.4583333333333333],[126,125,68,-0.4583333333333333],[126,125,69,-0.4583333333333333],[126,125,70,-0.4583333333333333],[126,125,71,-0.4583333333333333],[126,125,72,-0.4583333333333333],[126,125,73,-0.4583333333333333],[126,125,74,-0.4583333333333333],[126,125,75,-0.4583333333333333],[126,125,76,-0.4583333333333333],[126,125,77,-0.4583333333333333],[126,125,78,-0.4583333333333333],[126,125,79,-0.4583333333333333],[126,126,64,-0.4583333333333333],[126,126,65,-0.4583333333333333],[126,126,66,-0.4583333333333333],[126,126,67,-0.4583333333333333],[126,126,68,-0.4583333333333333],[126,126,69,-0.4583333333333333],[126,126,70,-0.4583333333333333],[126,126,71,-0.4583333333333333],[126,126,72,-0.4583333333333333],[126,126,73,-0.4583333333333333],[126,126,74,-0.4583333333333333],[126,126,75,-0.4583333333333333],[126,126,76,-0.4583333333333333],[126,126,77,-0.4583333333333333],[126,126,78,-0.4583333333333333],[126,126,79,-0.4583333333333333],[126,127,64,-0.4583333333333333],[126,127,65,-0.4583333333333333],[126,127,66,-0.4583333333333333],[126,127,67,-0.4583333333333333],[126,127,68,-0.4583333333333333],[126,127,69,-0.4583333333333333],[126,127,70,-0.4583333333333333],[126,127,71,-0.4583333333333333],[126,127,72,-0.4583333333333333],[126,127,73,-0.4583333333333333],[126,127,74,-0.4583333333333333],[126,127,75,-0.4583333333333333],[126,127,76,-0.4583333333333333],[126,127,77,-0.4583333333333333],[126,127,78,-0.4583333333333333],[126,127,79,-0.4583333333333333],[126,128,64,-0.4583333333333333],[126,128,65,-0.4583333333333333],[126,128,66,-0.4583333333333333],[126,128,67,-0.4583333333333333],[126,128,68,-0.4583333333333333],[126,128,69,-0.4583333333333333],[126,128,70,-0.4583333333333333],[126,128,71,-0.4583333333333333],[126,128,72,-0.4583333333333333],[126,128,73,-0.4583333333333333],[126,128,74,-0.4583333333333333],[126,128,75,-0.4583333333333333],[126,128,76,-0.4583333333333333],[126,128,77,-0.4583333333333333],[126,128,78,-0.4583333333333333],[126,128,79,-0.4583333333333333],[126,129,64,-0.4583333333333333],[126,129,65,-0.4583333333333333],[126,129,66,-0.4583333333333333],[126,129,67,-0.4583333333333333],[126,129,68,-0.4583333333333333],[126,129,69,-0.4583333333333333],[126,129,70,-0.4583333333333333],[126,129,71,-0.4583333333333333],[126,129,72,-0.4583333333333333],[126,129,73,-0.4583333333333333],[126,129,74,-0.4583333333333333],[126,129,75,-0.4583333333333333],[126,129,76,-0.4583333333333333],[126,129,77,-0.4583333333333333],[126,129,78,-0.4583333333333333],[126,129,79,-0.4583333333333333],[126,130,64,-0.4583333333333333],[126,130,65,-0.4583333333333333],[126,130,66,-0.4583333333333333],[126,130,67,-0.4583333333333333],[126,130,68,-0.4583333333333333],[126,130,69,-0.4583333333333333],[126,130,70,-0.4583333333333333],[126,130,71,-0.4583333333333333],[126,130,72,-0.4583333333333333],[126,130,73,-0.4583333333333333],[126,130,74,-0.4583333333333333],[126,130,75,-0.4583333333333333],[126,130,76,-0.4583333333333333],[126,130,77,-0.4583333333333333],[126,130,78,-0.4583333333333333],[126,130,79,-0.4583333333333333],[126,131,64,-0.4583333333333333],[126,131,65,-0.4583333333333333],[126,131,66,-0.4583333333333333],[126,131,67,-0.4583333333333333],[126,131,68,-0.4583333333333333],[126,131,69,-0.4583333333333333],[126,131,70,-0.4583333333333333],[126,131,71,-0.4583333333333333],[126,131,72,-0.4583333333333333],[126,131,73,-0.4583333333333333],[126,131,74,-0.4583333333333333],[126,131,75,-0.4583333333333333],[126,131,76,-0.4583333333333333],[126,131,77,-0.4583333333333333],[126,131,78,-0.4583333333333333],[126,131,79,-0.4583333333333333],[126,132,64,-0.4583333333333333],[126,132,65,-0.4583333333333333],[126,132,66,-0.4583333333333333],[126,132,67,-0.4583333333333333],[126,132,68,-0.4583333333333333],[126,132,69,-0.4583333333333333],[126,132,70,-0.4583333333333333],[126,132,71,-0.4583333333333333],[126,132,72,-0.4583333333333333],[126,132,73,-0.4583333333333333],[126,132,74,-0.4583333333333333],[126,132,75,-0.4583333333333333],[126,132,76,-0.4583333333333333],[126,132,77,-0.4583333333333333],[126,132,78,-0.4583333333333333],[126,132,79,-0.4583333333333333],[126,133,64,-0.4583333333333333],[126,133,65,-0.4583333333333333],[126,133,66,-0.4583333333333333],[126,133,67,-0.4583333333333333],[126,133,68,-0.4583333333333333],[126,133,69,-0.4583333333333333],[126,133,70,-0.4583333333333333],[126,133,71,-0.4583333333333333],[126,133,72,-0.4583333333333333],[126,133,73,-0.4583333333333333],[126,133,74,-0.4583333333333333],[126,133,75,-0.4583333333333333],[126,133,76,-0.4583333333333333],[126,133,77,-0.4583333333333333],[126,133,78,-0.4583333333333333],[126,133,79,-0.4583333333333333],[126,134,64,-0.4583333333333333],[126,134,65,-0.4583333333333333],[126,134,66,-0.4583333333333333],[126,134,67,-0.4583333333333333],[126,134,68,-0.4583333333333333],[126,134,69,-0.4583333333333333],[126,134,70,-0.4583333333333333],[126,134,71,-0.4583333333333333],[126,134,72,-0.4583333333333333],[126,134,73,-0.4583333333333333],[126,134,74,-0.4583333333333333],[126,134,75,-0.4583333333333333],[126,134,76,-0.4583333333333333],[126,134,77,-0.4583333333333333],[126,134,78,-0.4583333333333333],[126,134,79,-0.4583333333333333],[126,135,64,-0.4583333333333333],[126,135,65,-0.4583333333333333],[126,135,66,-0.4583333333333333],[126,135,67,-0.4583333333333333],[126,135,68,-0.4583333333333333],[126,135,69,-0.4583333333333333],[126,135,70,-0.4583333333333333],[126,135,71,-0.4583333333333333],[126,135,72,-0.4583333333333333],[126,135,73,-0.4583333333333333],[126,135,74,-0.4583333333333333],[126,135,75,-0.4583333333333333],[126,135,76,-0.4583333333333333],[126,135,77,-0.4583333333333333],[126,135,78,-0.4583333333333333],[126,135,79,-0.4583333333333333],[126,136,64,-0.4583333333333333],[126,136,65,-0.4583333333333333],[126,136,66,-0.4583333333333333],[126,136,67,-0.4583333333333333],[126,136,68,-0.4583333333333333],[126,136,69,-0.4583333333333333],[126,136,70,-0.4583333333333333],[126,136,71,-0.4583333333333333],[126,136,72,-0.4583333333333333],[126,136,73,-0.4583333333333333],[126,136,74,-0.4583333333333333],[126,136,75,-0.4583333333333333],[126,136,76,-0.4583333333333333],[126,136,77,-0.4583333333333333],[126,136,78,-0.4583333333333333],[126,136,79,-0.4583333333333333],[126,137,64,-0.4583333333333333],[126,137,65,-0.4583333333333333],[126,137,66,-0.4583333333333333],[126,137,67,-0.4583333333333333],[126,137,68,-0.4583333333333333],[126,137,69,-0.4583333333333333],[126,137,70,-0.4583333333333333],[126,137,71,-0.4583333333333333],[126,137,72,-0.4583333333333333],[126,137,73,-0.4583333333333333],[126,137,74,-0.4583333333333333],[126,137,75,-0.4583333333333333],[126,137,76,-0.4583333333333333],[126,137,77,-0.4583333333333333],[126,137,78,-0.4583333333333333],[126,137,79,-0.4583333333333333],[126,138,64,-0.4583333333333333],[126,138,65,-0.4583333333333333],[126,138,66,-0.4583333333333333],[126,138,67,-0.4583333333333333],[126,138,68,-0.4583333333333333],[126,138,69,-0.4583333333333333],[126,138,70,-0.4583333333333333],[126,138,71,-0.4583333333333333],[126,138,72,-0.4583333333333333],[126,138,73,-0.4583333333333333],[126,138,74,-0.4583333333333333],[126,138,75,-0.4583333333333333],[126,138,76,-0.4583333333333333],[126,138,77,-0.4583333333333333],[126,138,78,-0.4583333333333333],[126,138,79,-0.4583333333333333],[126,139,64,-0.4583333333333333],[126,139,65,-0.4583333333333333],[126,139,66,-0.4583333333333333],[126,139,67,-0.4583333333333333],[126,139,68,-0.4583333333333333],[126,139,69,-0.4583333333333333],[126,139,70,-0.4583333333333333],[126,139,71,-0.4583333333333333],[126,139,72,-0.4583333333333333],[126,139,73,-0.4583333333333333],[126,139,74,-0.4583333333333333],[126,139,75,-0.4583333333333333],[126,139,76,-0.4583333333333333],[126,139,77,-0.4583333333333333],[126,139,78,-0.4583333333333333],[126,139,79,-0.4583333333333333],[126,140,64,-0.4583333333333333],[126,140,65,-0.4583333333333333],[126,140,66,-0.4583333333333333],[126,140,67,-0.4583333333333333],[126,140,68,-0.4583333333333333],[126,140,69,-0.4583333333333333],[126,140,70,-0.4583333333333333],[126,140,71,-0.4583333333333333],[126,140,72,-0.4583333333333333],[126,140,73,-0.4583333333333333],[126,140,74,-0.4583333333333333],[126,140,75,-0.4583333333333333],[126,140,76,-0.4583333333333333],[126,140,77,-0.4583333333333333],[126,140,78,-0.4583333333333333],[126,140,79,-0.4583333333333333],[126,141,64,-0.4583333333333333],[126,141,65,-0.4583333333333333],[126,141,66,-0.4583333333333333],[126,141,67,-0.4583333333333333],[126,141,68,-0.4583333333333333],[126,141,69,-0.4583333333333333],[126,141,70,-0.4583333333333333],[126,141,71,-0.4583333333333333],[126,141,72,-0.4583333333333333],[126,141,73,-0.4583333333333333],[126,141,74,-0.4583333333333333],[126,141,75,-0.4583333333333333],[126,141,76,-0.4583333333333333],[126,141,77,-0.4583333333333333],[126,141,78,-0.4583333333333333],[126,141,79,-0.4583333333333333],[126,142,64,-0.4583333333333333],[126,142,65,-0.4583333333333333],[126,142,66,-0.4583333333333333],[126,142,67,-0.4583333333333333],[126,142,68,-0.4583333333333333],[126,142,69,-0.4583333333333333],[126,142,70,-0.4583333333333333],[126,142,71,-0.4583333333333333],[126,142,72,-0.4583333333333333],[126,142,73,-0.4583333333333333],[126,142,74,-0.4583333333333333],[126,142,75,-0.4583333333333333],[126,142,76,-0.4583333333333333],[126,142,77,-0.4583333333333333],[126,142,78,-0.4583333333333333],[126,142,79,-0.4583333333333333],[126,143,64,-0.4583333333333333],[126,143,65,-0.4583333333333333],[126,143,66,-0.4583333333333333],[126,143,67,-0.4583333333333333],[126,143,68,-0.4583333333333333],[126,143,69,-0.4583333333333333],[126,143,70,-0.4583333333333333],[126,143,71,-0.4583333333333333],[126,143,72,-0.4583333333333333],[126,143,73,-0.4583333333333333],[126,143,74,-0.4583333333333333],[126,143,75,-0.4583333333333333],[126,143,76,-0.4583333333333333],[126,143,77,-0.4583333333333333],[126,143,78,-0.4583333333333333],[126,143,79,-0.4583333333333333],[126,144,64,-0.4583333333333333],[126,144,65,-0.4583333333333333],[126,144,66,-0.4583333333333333],[126,144,67,-0.4583333333333333],[126,144,68,-0.4583333333333333],[126,144,69,-0.4583333333333333],[126,144,70,-0.4583333333333333],[126,144,71,-0.4583333333333333],[126,144,72,-0.4583333333333333],[126,144,73,-0.4583333333333333],[126,144,74,-0.4583333333333333],[126,144,75,-0.4583333333333333],[126,144,76,-0.4583333333333333],[126,144,77,-0.4583333333333333],[126,144,78,-0.4583333333333333],[126,144,79,-0.4583333333333333],[126,145,64,-0.4583333333333333],[126,145,65,-0.4583333333333333],[126,145,66,-0.4583333333333333],[126,145,67,-0.4583333333333333],[126,145,68,-0.4583333333333333],[126,145,69,-0.4583333333333333],[126,145,70,-0.4583333333333333],[126,145,71,-0.4583333333333333],[126,145,72,-0.4583333333333333],[126,145,73,-0.4583333333333333],[126,145,74,-0.4583333333333333],[126,145,75,-0.4583333333333333],[126,145,76,-0.4583333333333333],[126,145,77,-0.4583333333333333],[126,145,78,-0.4583333333333333],[126,145,79,-0.4583333333333333],[126,146,64,-0.4583333333333333],[126,146,65,-0.4583333333333333],[126,146,66,-0.4583333333333333],[126,146,67,-0.4583333333333333],[126,146,68,-0.4583333333333333],[126,146,69,-0.4583333333333333],[126,146,70,-0.4583333333333333],[126,146,71,-0.4583333333333333],[126,146,72,-0.4583333333333333],[126,146,73,-0.4583333333333333],[126,146,74,-0.4583333333333333],[126,146,75,-0.4583333333333333],[126,146,76,-0.4583333333333333],[126,146,77,-0.4583333333333333],[126,146,78,-0.4583333333333333],[126,146,79,-0.4583333333333333],[126,147,64,-0.4583333333333333],[126,147,65,-0.4583333333333333],[126,147,66,-0.4583333333333333],[126,147,67,-0.4583333333333333],[126,147,68,-0.4583333333333333],[126,147,69,-0.4583333333333333],[126,147,70,-0.4583333333333333],[126,147,71,-0.4583333333333333],[126,147,72,-0.4583333333333333],[126,147,73,-0.4583333333333333],[126,147,74,-0.4583333333333333],[126,147,75,-0.4583333333333333],[126,147,76,-0.4583333333333333],[126,147,77,-0.4583333333333333],[126,147,78,-0.4583333333333333],[126,147,79,-0.4583333333333333],[126,148,64,-0.4583333333333333],[126,148,65,-0.4583333333333333],[126,148,66,-0.4583333333333333],[126,148,67,-0.4583333333333333],[126,148,68,-0.4583333333333333],[126,148,69,-0.4583333333333333],[126,148,70,-0.4583333333333333],[126,148,71,-0.4583333333333333],[126,148,72,-0.4583333333333333],[126,148,73,-0.4583333333333333],[126,148,74,-0.4583333333333333],[126,148,75,-0.4583333333333333],[126,148,76,-0.4583333333333333],[126,148,77,-0.4583333333333333],[126,148,78,-0.4583333333333333],[126,148,79,-0.4583333333333333],[126,149,64,-0.4583333333333333],[126,149,65,-0.4583333333333333],[126,149,66,-0.4583333333333333],[126,149,67,-0.4583333333333333],[126,149,68,-0.4583333333333333],[126,149,69,-0.4583333333333333],[126,149,70,-0.4583333333333333],[126,149,71,-0.4583333333333333],[126,149,72,-0.4583333333333333],[126,149,73,-0.4583333333333333],[126,149,74,-0.4583333333333333],[126,149,75,-0.4583333333333333],[126,149,76,-0.4583333333333333],[126,149,77,-0.4583333333333333],[126,149,78,-0.4583333333333333],[126,149,79,-0.4583333333333333],[126,150,64,-0.4583333333333333],[126,150,65,-0.4583333333333333],[126,150,66,-0.4583333333333333],[126,150,67,-0.4583333333333333],[126,150,68,-0.4583333333333333],[126,150,69,-0.4583333333333333],[126,150,70,-0.4583333333333333],[126,150,71,-0.4583333333333333],[126,150,72,-0.4583333333333333],[126,150,73,-0.4583333333333333],[126,150,74,-0.4583333333333333],[126,150,75,-0.4583333333333333],[126,150,76,-0.4583333333333333],[126,150,77,-0.4583333333333333],[126,150,78,-0.4583333333333333],[126,150,79,-0.4583333333333333],[126,151,64,-0.4583333333333333],[126,151,65,-0.4583333333333333],[126,151,66,-0.4583333333333333],[126,151,67,-0.4583333333333333],[126,151,68,-0.4583333333333333],[126,151,69,-0.4583333333333333],[126,151,70,-0.4583333333333333],[126,151,71,-0.4583333333333333],[126,151,72,-0.4583333333333333],[126,151,73,-0.4583333333333333],[126,151,74,-0.4583333333333333],[126,151,75,-0.4583333333333333],[126,151,76,-0.4583333333333333],[126,151,77,-0.4583333333333333],[126,151,78,-0.4583333333333333],[126,151,79,-0.4583333333333333],[126,152,64,-0.4583333333333333],[126,152,65,-0.4583333333333333],[126,152,66,-0.4583333333333333],[126,152,67,-0.4583333333333333],[126,152,68,-0.4583333333333333],[126,152,69,-0.4583333333333333],[126,152,70,-0.4583333333333333],[126,152,71,-0.4583333333333333],[126,152,72,-0.4583333333333333],[126,152,73,-0.4583333333333333],[126,152,74,-0.4583333333333333],[126,152,75,-0.4583333333333333],[126,152,76,-0.4583333333333333],[126,152,77,-0.4583333333333333],[126,152,78,-0.4583333333333333],[126,152,79,-0.4583333333333333],[126,153,64,-0.4583333333333333],[126,153,65,-0.4583333333333333],[126,153,66,-0.4583333333333333],[126,153,67,-0.4583333333333333],[126,153,68,-0.4583333333333333],[126,153,69,-0.4583333333333333],[126,153,70,-0.4583333333333333],[126,153,71,-0.4583333333333333],[126,153,72,-0.4583333333333333],[126,153,73,-0.4583333333333333],[126,153,74,-0.4583333333333333],[126,153,75,-0.4583333333333333],[126,153,76,-0.4583333333333333],[126,153,77,-0.4583333333333333],[126,153,78,-0.4583333333333333],[126,153,79,-0.4583333333333333],[126,154,64,-0.4583333333333333],[126,154,65,-0.4583333333333333],[126,154,66,-0.4583333333333333],[126,154,67,-0.4583333333333333],[126,154,68,-0.4583333333333333],[126,154,69,-0.4583333333333333],[126,154,70,-0.4583333333333333],[126,154,71,-0.4583333333333333],[126,154,72,-0.4583333333333333],[126,154,73,-0.4583333333333333],[126,154,74,-0.4583333333333333],[126,154,75,-0.4583333333333333],[126,154,76,-0.4583333333333333],[126,154,77,-0.4583333333333333],[126,154,78,-0.4583333333333333],[126,154,79,-0.4583333333333333],[126,155,64,-0.4583333333333333],[126,155,65,-0.4583333333333333],[126,155,66,-0.4583333333333333],[126,155,67,-0.4583333333333333],[126,155,68,-0.4583333333333333],[126,155,69,-0.4583333333333333],[126,155,70,-0.4583333333333333],[126,155,71,-0.4583333333333333],[126,155,72,-0.4583333333333333],[126,155,73,-0.4583333333333333],[126,155,74,-0.4583333333333333],[126,155,75,-0.4583333333333333],[126,155,76,-0.4583333333333333],[126,155,77,-0.4583333333333333],[126,155,78,-0.4583333333333333],[126,155,79,-0.4583333333333333],[126,156,64,-0.4583333333333333],[126,156,65,-0.4583333333333333],[126,156,66,-0.4583333333333333],[126,156,67,-0.4583333333333333],[126,156,68,-0.4583333333333333],[126,156,69,-0.4583333333333333],[126,156,70,-0.4583333333333333],[126,156,71,-0.4583333333333333],[126,156,72,-0.4583333333333333],[126,156,73,-0.4583333333333333],[126,156,74,-0.4583333333333333],[126,156,75,-0.4583333333333333],[126,156,76,-0.4583333333333333],[126,156,77,-0.4583333333333333],[126,156,78,-0.4583333333333333],[126,156,79,-0.4583333333333333],[126,157,64,-0.4583333333333333],[126,157,65,-0.4583333333333333],[126,157,66,-0.4583333333333333],[126,157,67,-0.4583333333333333],[126,157,68,-0.4583333333333333],[126,157,69,-0.4583333333333333],[126,157,70,-0.4583333333333333],[126,157,71,-0.4583333333333333],[126,157,72,-0.4583333333333333],[126,157,73,-0.4583333333333333],[126,157,74,-0.4583333333333333],[126,157,75,-0.4583333333333333],[126,157,76,-0.4583333333333333],[126,157,77,-0.4583333333333333],[126,157,78,-0.4583333333333333],[126,157,79,-0.4583333333333333],[126,158,64,-0.4583333333333333],[126,158,65,-0.4583333333333333],[126,158,66,-0.4583333333333333],[126,158,67,-0.4583333333333333],[126,158,68,-0.4583333333333333],[126,158,69,-0.4583333333333333],[126,158,70,-0.4583333333333333],[126,158,71,-0.4583333333333333],[126,158,72,-0.4583333333333333],[126,158,73,-0.4583333333333333],[126,158,74,-0.4583333333333333],[126,158,75,-0.4583333333333333],[126,158,76,-0.4583333333333333],[126,158,77,-0.4583333333333333],[126,158,78,-0.4583333333333333],[126,158,79,-0.4583333333333333],[126,159,64,-0.4583333333333333],[126,159,65,-0.4583333333333333],[126,159,66,-0.4583333333333333],[126,159,67,-0.4583333333333333],[126,159,68,-0.4583333333333333],[126,159,69,-0.4583333333333333],[126,159,70,-0.4583333333333333],[126,159,71,-0.4583333333333333],[126,159,72,-0.4583333333333333],[126,159,73,-0.4583333333333333],[126,159,74,-0.4583333333333333],[126,159,75,-0.4583333333333333],[126,159,76,-0.4583333333333333],[126,159,77,-0.4583333333333333],[126,159,78,-0.4583333333333333],[126,159,79,-0.4583333333333333],[126,160,64,-0.4583333333333333],[126,160,65,-0.4583333333333333],[126,160,66,-0.4583333333333333],[126,160,67,-0.4583333333333333],[126,160,68,-0.4583333333333333],[126,160,69,-0.4583333333333333],[126,160,70,-0.4583333333333333],[126,160,71,-0.4583333333333333],[126,160,72,-0.4583333333333333],[126,160,73,-0.4583333333333333],[126,160,74,-0.4583333333333333],[126,160,75,-0.4583333333333333],[126,160,76,-0.4583333333333333],[126,160,77,-0.4583333333333333],[126,160,78,-0.4583333333333333],[126,160,79,-0.4583333333333333],[126,161,64,-0.4583333333333333],[126,161,65,-0.4583333333333333],[126,161,66,-0.4583333333333333],[126,161,67,-0.4583333333333333],[126,161,68,-0.4583333333333333],[126,161,69,-0.4583333333333333],[126,161,70,-0.4583333333333333],[126,161,71,-0.4583333333333333],[126,161,72,-0.4583333333333333],[126,161,73,-0.4583333333333333],[126,161,74,-0.4583333333333333],[126,161,75,-0.4583333333333333],[126,161,76,-0.4583333333333333],[126,161,77,-0.4583333333333333],[126,161,78,-0.4583333333333333],[126,161,79,-0.4583333333333333],[126,162,64,-0.4583333333333333],[126,162,65,-0.4583333333333333],[126,162,66,-0.4583333333333333],[126,162,67,-0.4583333333333333],[126,162,68,-0.4583333333333333],[126,162,69,-0.4583333333333333],[126,162,70,-0.4583333333333333],[126,162,71,-0.4583333333333333],[126,162,72,-0.4583333333333333],[126,162,73,-0.4583333333333333],[126,162,74,-0.4583333333333333],[126,162,75,-0.4583333333333333],[126,162,76,-0.4583333333333333],[126,162,77,-0.4583333333333333],[126,162,78,-0.4583333333333333],[126,162,79,-0.4583333333333333],[126,163,64,-0.4583333333333333],[126,163,65,-0.4583333333333333],[126,163,66,-0.4583333333333333],[126,163,67,-0.4583333333333333],[126,163,68,-0.4583333333333333],[126,163,69,-0.4583333333333333],[126,163,70,-0.4583333333333333],[126,163,71,-0.4583333333333333],[126,163,72,-0.4583333333333333],[126,163,73,-0.4583333333333333],[126,163,74,-0.4583333333333333],[126,163,75,-0.4583333333333333],[126,163,76,-0.4583333333333333],[126,163,77,-0.4583333333333333],[126,163,78,-0.4583333333333333],[126,163,79,-0.4583333333333333],[126,164,64,-0.4583333333333333],[126,164,65,-0.4583333333333333],[126,164,66,-0.4583333333333333],[126,164,67,-0.4583333333333333],[126,164,68,-0.4583333333333333],[126,164,69,-0.4583333333333333],[126,164,70,-0.4583333333333333],[126,164,71,-0.4583333333333333],[126,164,72,-0.4583333333333333],[126,164,73,-0.4583333333333333],[126,164,74,-0.4583333333333333],[126,164,75,-0.4583333333333333],[126,164,76,-0.4583333333333333],[126,164,77,-0.4583333333333333],[126,164,78,-0.4583333333333333],[126,164,79,-0.4583333333333333],[126,165,64,-0.4583333333333333],[126,165,65,-0.4583333333333333],[126,165,66,-0.4583333333333333],[126,165,67,-0.4583333333333333],[126,165,68,-0.4583333333333333],[126,165,69,-0.4583333333333333],[126,165,70,-0.4583333333333333],[126,165,71,-0.4583333333333333],[126,165,72,-0.4583333333333333],[126,165,73,-0.4583333333333333],[126,165,74,-0.4583333333333333],[126,165,75,-0.4583333333333333],[126,165,76,-0.4583333333333333],[126,165,77,-0.4583333333333333],[126,165,78,-0.4583333333333333],[126,165,79,-0.4583333333333333],[126,166,64,-0.4583333333333333],[126,166,65,-0.4583333333333333],[126,166,66,-0.4583333333333333],[126,166,67,-0.4583333333333333],[126,166,68,-0.4583333333333333],[126,166,69,-0.4583333333333333],[126,166,70,-0.4583333333333333],[126,166,71,-0.4583333333333333],[126,166,72,-0.4583333333333333],[126,166,73,-0.4583333333333333],[126,166,74,-0.4583333333333333],[126,166,75,-0.4583333333333333],[126,166,76,-0.4583333333333333],[126,166,77,-0.4583333333333333],[126,166,78,-0.4583333333333333],[126,166,79,-0.4583333333333333],[126,167,64,-0.4583333333333333],[126,167,65,-0.4583333333333333],[126,167,66,-0.4583333333333333],[126,167,67,-0.4583333333333333],[126,167,68,-0.4583333333333333],[126,167,69,-0.4583333333333333],[126,167,70,-0.4583333333333333],[126,167,71,-0.4583333333333333],[126,167,72,-0.4583333333333333],[126,167,73,-0.4583333333333333],[126,167,74,-0.4583333333333333],[126,167,75,-0.4583333333333333],[126,167,76,-0.4583333333333333],[126,167,77,-0.4583333333333333],[126,167,78,-0.4583333333333333],[126,167,79,-0.4583333333333333],[126,168,64,-0.4583333333333333],[126,168,65,-0.4583333333333333],[126,168,66,-0.4583333333333333],[126,168,67,-0.4583333333333333],[126,168,68,-0.4583333333333333],[126,168,69,-0.4583333333333333],[126,168,70,-0.4583333333333333],[126,168,71,-0.4583333333333333],[126,168,72,-0.4583333333333333],[126,168,73,-0.4583333333333333],[126,168,74,-0.4583333333333333],[126,168,75,-0.4583333333333333],[126,168,76,-0.4583333333333333],[126,168,77,-0.4583333333333333],[126,168,78,-0.4583333333333333],[126,168,79,-0.4583333333333333],[126,169,64,-0.4583333333333333],[126,169,65,-0.4583333333333333],[126,169,66,-0.4583333333333333],[126,169,67,-0.4583333333333333],[126,169,68,-0.4583333333333333],[126,169,69,-0.4583333333333333],[126,169,70,-0.4583333333333333],[126,169,71,-0.4583333333333333],[126,169,72,-0.4583333333333333],[126,169,73,-0.4583333333333333],[126,169,74,-0.4583333333333333],[126,169,75,-0.4583333333333333],[126,169,76,-0.4583333333333333],[126,169,77,-0.4583333333333333],[126,169,78,-0.4583333333333333],[126,169,79,-0.4583333333333333],[126,170,64,-0.4583333333333333],[126,170,65,-0.4583333333333333],[126,170,66,-0.4583333333333333],[126,170,67,-0.4583333333333333],[126,170,68,-0.4583333333333333],[126,170,69,-0.4583333333333333],[126,170,70,-0.4583333333333333],[126,170,71,-0.4583333333333333],[126,170,72,-0.4583333333333333],[126,170,73,-0.4583333333333333],[126,170,74,-0.4583333333333333],[126,170,75,-0.4583333333333333],[126,170,76,-0.4583333333333333],[126,170,77,-0.4583333333333333],[126,170,78,-0.4583333333333333],[126,170,79,-0.4583333333333333],[126,171,64,-0.4583333333333333],[126,171,65,-0.4583333333333333],[126,171,66,-0.4583333333333333],[126,171,67,-0.4583333333333333],[126,171,68,-0.4583333333333333],[126,171,69,-0.4583333333333333],[126,171,70,-0.4583333333333333],[126,171,71,-0.4583333333333333],[126,171,72,-0.4583333333333333],[126,171,73,-0.4583333333333333],[126,171,74,-0.4583333333333333],[126,171,75,-0.4583333333333333],[126,171,76,-0.4583333333333333],[126,171,77,-0.4583333333333333],[126,171,78,-0.4583333333333333],[126,171,79,-0.4583333333333333],[126,172,64,-0.4583333333333333],[126,172,65,-0.4583333333333333],[126,172,66,-0.4583333333333333],[126,172,67,-0.4583333333333333],[126,172,68,-0.4583333333333333],[126,172,69,-0.4583333333333333],[126,172,70,-0.4583333333333333],[126,172,71,-0.4583333333333333],[126,172,72,-0.4583333333333333],[126,172,73,-0.4583333333333333],[126,172,74,-0.4583333333333333],[126,172,75,-0.4583333333333333],[126,172,76,-0.4583333333333333],[126,172,77,-0.4583333333333333],[126,172,78,-0.4583333333333333],[126,172,79,-0.4583333333333333],[126,173,64,-0.4583333333333333],[126,173,65,-0.4583333333333333],[126,173,66,-0.4583333333333333],[126,173,67,-0.4583333333333333],[126,173,68,-0.4583333333333333],[126,173,69,-0.4583333333333333],[126,173,70,-0.4583333333333333],[126,173,71,-0.4583333333333333],[126,173,72,-0.4583333333333333],[126,173,73,-0.4583333333333333],[126,173,74,-0.4583333333333333],[126,173,75,-0.4583333333333333],[126,173,76,-0.4583333333333333],[126,173,77,-0.4583333333333333],[126,173,78,-0.4583333333333333],[126,173,79,-0.4583333333333333],[126,174,64,-0.4583333333333333],[126,174,65,-0.4583333333333333],[126,174,66,-0.4583333333333333],[126,174,67,-0.4583333333333333],[126,174,68,-0.4583333333333333],[126,174,69,-0.4583333333333333],[126,174,70,-0.4583333333333333],[126,174,71,-0.4583333333333333],[126,174,72,-0.4583333333333333],[126,174,73,-0.4583333333333333],[126,174,74,-0.4583333333333333],[126,174,75,-0.4583333333333333],[126,174,76,-0.4583333333333333],[126,174,77,-0.4583333333333333],[126,174,78,-0.4583333333333333],[126,174,79,-0.4583333333333333],[126,175,64,-0.4583333333333333],[126,175,65,-0.4583333333333333],[126,175,66,-0.4583333333333333],[126,175,67,-0.4583333333333333],[126,175,68,-0.4583333333333333],[126,175,69,-0.4583333333333333],[126,175,70,-0.4583333333333333],[126,175,71,-0.4583333333333333],[126,175,72,-0.4583333333333333],[126,175,73,-0.4583333333333333],[126,175,74,-0.4583333333333333],[126,175,75,-0.4583333333333333],[126,175,76,-0.4583333333333333],[126,175,77,-0.4583333333333333],[126,175,78,-0.4583333333333333],[126,175,79,-0.4583333333333333],[126,176,64,-0.4583333333333333],[126,176,65,-0.4583333333333333],[126,176,66,-0.4583333333333333],[126,176,67,-0.4583333333333333],[126,176,68,-0.4583333333333333],[126,176,69,-0.4583333333333333],[126,176,70,-0.4583333333333333],[126,176,71,-0.4583333333333333],[126,176,72,-0.4583333333333333],[126,176,73,-0.4583333333333333],[126,176,74,-0.4583333333333333],[126,176,75,-0.4583333333333333],[126,176,76,-0.4583333333333333],[126,176,77,-0.4583333333333333],[126,176,78,-0.4583333333333333],[126,176,79,-0.4583333333333333],[126,177,64,-0.4583333333333333],[126,177,65,-0.4583333333333333],[126,177,66,-0.4583333333333333],[126,177,67,-0.4583333333333333],[126,177,68,-0.4583333333333333],[126,177,69,-0.4583333333333333],[126,177,70,-0.4583333333333333],[126,177,71,-0.4583333333333333],[126,177,72,-0.4583333333333333],[126,177,73,-0.4583333333333333],[126,177,74,-0.4583333333333333],[126,177,75,-0.4583333333333333],[126,177,76,-0.4583333333333333],[126,177,77,-0.4583333333333333],[126,177,78,-0.4583333333333333],[126,177,79,-0.4583333333333333],[126,178,64,-0.4583333333333333],[126,178,65,-0.4583333333333333],[126,178,66,-0.4583333333333333],[126,178,67,-0.4583333333333333],[126,178,68,-0.4583333333333333],[126,178,69,-0.4583333333333333],[126,178,70,-0.4583333333333333],[126,178,71,-0.4583333333333333],[126,178,72,-0.4583333333333333],[126,178,73,-0.4583333333333333],[126,178,74,-0.4583333333333333],[126,178,75,-0.4583333333333333],[126,178,76,-0.4583333333333333],[126,178,77,-0.4583333333333333],[126,178,78,-0.4583333333333333],[126,178,79,-0.4583333333333333],[126,179,64,-0.4583333333333333],[126,179,65,-0.4583333333333333],[126,179,66,-0.4583333333333333],[126,179,67,-0.4583333333333333],[126,179,68,-0.4583333333333333],[126,179,69,-0.4583333333333333],[126,179,70,-0.4583333333333333],[126,179,71,-0.4583333333333333],[126,179,72,-0.4583333333333333],[126,179,73,-0.4583333333333333],[126,179,74,-0.4583333333333333],[126,179,75,-0.4583333333333333],[126,179,76,-0.4583333333333333],[126,179,77,-0.4583333333333333],[126,179,78,-0.4583333333333333],[126,179,79,-0.4583333333333333],[126,180,64,-0.4583333333333333],[126,180,65,-0.4583333333333333],[126,180,66,-0.4583333333333333],[126,180,67,-0.4583333333333333],[126,180,68,-0.4583333333333333],[126,180,69,-0.4583333333333333],[126,180,70,-0.4583333333333333],[126,180,71,-0.4583333333333333],[126,180,72,-0.4583333333333333],[126,180,73,-0.4583333333333333],[126,180,74,-0.4583333333333333],[126,180,75,-0.4583333333333333],[126,180,76,-0.4583333333333333],[126,180,77,-0.4583333333333333],[126,180,78,-0.4583333333333333],[126,180,79,-0.4583333333333333],[126,181,64,-0.4583333333333333],[126,181,65,-0.4583333333333333],[126,181,66,-0.4583333333333333],[126,181,67,-0.4583333333333333],[126,181,68,-0.4583333333333333],[126,181,69,-0.4583333333333333],[126,181,70,-0.4583333333333333],[126,181,71,-0.4583333333333333],[126,181,72,-0.4583333333333333],[126,181,73,-0.4583333333333333],[126,181,74,-0.4583333333333333],[126,181,75,-0.4583333333333333],[126,181,76,-0.4583333333333333],[126,181,77,-0.4583333333333333],[126,181,78,-0.4583333333333333],[126,181,79,-0.4583333333333333],[126,182,64,-0.4583333333333333],[126,182,65,-0.4583333333333333],[126,182,66,-0.4583333333333333],[126,182,67,-0.4583333333333333],[126,182,68,-0.4583333333333333],[126,182,69,-0.4583333333333333],[126,182,70,-0.4583333333333333],[126,182,71,-0.4583333333333333],[126,182,72,-0.4583333333333333],[126,182,73,-0.4583333333333333],[126,182,74,-0.4583333333333333],[126,182,75,-0.4583333333333333],[126,182,76,-0.4583333333333333],[126,182,77,-0.4583333333333333],[126,182,78,-0.4583333333333333],[126,182,79,-0.4583333333333333],[126,183,64,-0.4583333333333333],[126,183,65,-0.4583333333333333],[126,183,66,-0.4583333333333333],[126,183,67,-0.4583333333333333],[126,183,68,-0.4583333333333333],[126,183,69,-0.4583333333333333],[126,183,70,-0.4583333333333333],[126,183,71,-0.4583333333333333],[126,183,72,-0.4583333333333333],[126,183,73,-0.4583333333333333],[126,183,74,-0.4583333333333333],[126,183,75,-0.4583333333333333],[126,183,76,-0.4583333333333333],[126,183,77,-0.4583333333333333],[126,183,78,-0.4583333333333333],[126,183,79,-0.4583333333333333],[126,184,64,-0.4583333333333333],[126,184,65,-0.4583333333333333],[126,184,66,-0.4583333333333333],[126,184,67,-0.4583333333333333],[126,184,68,-0.4583333333333333],[126,184,69,-0.4583333333333333],[126,184,70,-0.4583333333333333],[126,184,71,-0.4583333333333333],[126,184,72,-0.4583333333333333],[126,184,73,-0.4583333333333333],[126,184,74,-0.4583333333333333],[126,184,75,-0.4583333333333333],[126,184,76,-0.4583333333333333],[126,184,77,-0.4583333333333333],[126,184,78,-0.4583333333333333],[126,184,79,-0.4583333333333333],[126,185,64,-0.4583333333333333],[126,185,65,-0.4583333333333333],[126,185,66,-0.4583333333333333],[126,185,67,-0.4583333333333333],[126,185,68,-0.4583333333333333],[126,185,69,-0.4583333333333333],[126,185,70,-0.4583333333333333],[126,185,71,-0.4583333333333333],[126,185,72,-0.4583333333333333],[126,185,73,-0.4583333333333333],[126,185,74,-0.4583333333333333],[126,185,75,-0.4583333333333333],[126,185,76,-0.4583333333333333],[126,185,77,-0.4583333333333333],[126,185,78,-0.4583333333333333],[126,185,79,-0.4583333333333333],[126,186,64,-0.4583333333333333],[126,186,65,-0.4583333333333333],[126,186,66,-0.4583333333333333],[126,186,67,-0.4583333333333333],[126,186,68,-0.4583333333333333],[126,186,69,-0.4583333333333333],[126,186,70,-0.4583333333333333],[126,186,71,-0.4583333333333333],[126,186,72,-0.4583333333333333],[126,186,73,-0.4583333333333333],[126,186,74,-0.4583333333333333],[126,186,75,-0.4583333333333333],[126,186,76,-0.4583333333333333],[126,186,77,-0.4583333333333333],[126,186,78,-0.4583333333333333],[126,186,79,-0.4583333333333333],[126,187,64,-0.4583333333333333],[126,187,65,-0.4583333333333333],[126,187,66,-0.4583333333333333],[126,187,67,-0.4583333333333333],[126,187,68,-0.4583333333333333],[126,187,69,-0.4583333333333333],[126,187,70,-0.4583333333333333],[126,187,71,-0.4583333333333333],[126,187,72,-0.4583333333333333],[126,187,73,-0.4583333333333333],[126,187,74,-0.4583333333333333],[126,187,75,-0.4583333333333333],[126,187,76,-0.4583333333333333],[126,187,77,-0.4583333333333333],[126,187,78,-0.4583333333333333],[126,187,79,-0.4583333333333333],[126,188,64,-0.4583333333333333],[126,188,65,-0.4583333333333333],[126,188,66,-0.4583333333333333],[126,188,67,-0.4583333333333333],[126,188,68,-0.4583333333333333],[126,188,69,-0.4583333333333333],[126,188,70,-0.4583333333333333],[126,188,71,-0.4583333333333333],[126,188,72,-0.4583333333333333],[126,188,73,-0.4583333333333333],[126,188,74,-0.4583333333333333],[126,188,75,-0.4583333333333333],[126,188,76,-0.4583333333333333],[126,188,77,-0.4583333333333333],[126,188,78,-0.4583333333333333],[126,188,79,-0.4583333333333333],[126,189,64,-0.4583333333333333],[126,189,65,-0.4583333333333333],[126,189,66,-0.4583333333333333],[126,189,67,-0.4583333333333333],[126,189,68,-0.4583333333333333],[126,189,69,-0.4583333333333333],[126,189,70,-0.4583333333333333],[126,189,71,-0.4583333333333333],[126,189,72,-0.4583333333333333],[126,189,73,-0.4583333333333333],[126,189,74,-0.4583333333333333],[126,189,75,-0.4583333333333333],[126,189,76,-0.4583333333333333],[126,189,77,-0.4583333333333333],[126,189,78,-0.4583333333333333],[126,189,79,-0.4583333333333333],[126,190,64,-0.4583333333333333],[126,190,65,-0.4583333333333333],[126,190,66,-0.4583333333333333],[126,190,67,-0.4583333333333333],[126,190,68,-0.4583333333333333],[126,190,69,-0.4583333333333333],[126,190,70,-0.4583333333333333],[126,190,71,-0.4583333333333333],[126,190,72,-0.4583333333333333],[126,190,73,-0.4583333333333333],[126,190,74,-0.4583333333333333],[126,190,75,-0.4583333333333333],[126,190,76,-0.4583333333333333],[126,190,77,-0.4583333333333333],[126,190,78,-0.4583333333333333],[126,190,79,-0.4583333333333333],[126,191,64,-0.4583333333333333],[126,191,65,-0.4583333333333333],[126,191,66,-0.4583333333333333],[126,191,67,-0.4583333333333333],[126,191,68,-0.4583333333333333],[126,191,69,-0.4583333333333333],[126,191,70,-0.4583333333333333],[126,191,71,-0.4583333333333333],[126,191,72,-0.4583333333333333],[126,191,73,-0.4583333333333333],[126,191,74,-0.4583333333333333],[126,191,75,-0.4583333333333333],[126,191,76,-0.4583333333333333],[126,191,77,-0.4583333333333333],[126,191,78,-0.4583333333333333],[126,191,79,-0.4583333333333333],[126,192,64,-0.4583333333333333],[126,192,65,-0.4583333333333333],[126,192,66,-0.4583333333333333],[126,192,67,-0.4583333333333333],[126,192,68,-0.4583333333333333],[126,192,69,-0.4583333333333333],[126,192,70,-0.4583333333333333],[126,192,71,-0.4583333333333333],[126,192,72,-0.4583333333333333],[126,192,73,-0.4583333333333333],[126,192,74,-0.4583333333333333],[126,192,75,-0.4583333333333333],[126,192,76,-0.4583333333333333],[126,192,77,-0.4583333333333333],[126,192,78,-0.4583333333333333],[126,192,79,-0.4583333333333333],[126,193,64,-0.4583333333333333],[126,193,65,-0.4583333333333333],[126,193,66,-0.4583333333333333],[126,193,67,-0.4583333333333333],[126,193,68,-0.4583333333333333],[126,193,69,-0.4583333333333333],[126,193,70,-0.4583333333333333],[126,193,71,-0.4583333333333333],[126,193,72,-0.4583333333333333],[126,193,73,-0.4583333333333333],[126,193,74,-0.4583333333333333],[126,193,75,-0.4583333333333333],[126,193,76,-0.4583333333333333],[126,193,77,-0.4583333333333333],[126,193,78,-0.4583333333333333],[126,193,79,-0.4583333333333333],[126,194,64,-0.4583333333333333],[126,194,65,-0.4583333333333333],[126,194,66,-0.4583333333333333],[126,194,67,-0.4583333333333333],[126,194,68,-0.4583333333333333],[126,194,69,-0.4583333333333333],[126,194,70,-0.4583333333333333],[126,194,71,-0.4583333333333333],[126,194,72,-0.4583333333333333],[126,194,73,-0.4583333333333333],[126,194,74,-0.4583333333333333],[126,194,75,-0.4583333333333333],[126,194,76,-0.4583333333333333],[126,194,77,-0.4583333333333333],[126,194,78,-0.4583333333333333],[126,194,79,-0.4583333333333333],[126,195,64,-0.4583333333333333],[126,195,65,-0.4583333333333333],[126,195,66,-0.4583333333333333],[126,195,67,-0.4583333333333333],[126,195,68,-0.4583333333333333],[126,195,69,-0.4583333333333333],[126,195,70,-0.4583333333333333],[126,195,71,-0.4583333333333333],[126,195,72,-0.4583333333333333],[126,195,73,-0.4583333333333333],[126,195,74,-0.4583333333333333],[126,195,75,-0.4583333333333333],[126,195,76,-0.4583333333333333],[126,195,77,-0.4583333333333333],[126,195,78,-0.4583333333333333],[126,195,79,-0.4583333333333333],[126,196,64,-0.4583333333333333],[126,196,65,-0.4583333333333333],[126,196,66,-0.4583333333333333],[126,196,67,-0.4583333333333333],[126,196,68,-0.4583333333333333],[126,196,69,-0.4583333333333333],[126,196,70,-0.4583333333333333],[126,196,71,-0.4583333333333333],[126,196,72,-0.4583333333333333],[126,196,73,-0.4583333333333333],[126,196,74,-0.4583333333333333],[126,196,75,-0.4583333333333333],[126,196,76,-0.4583333333333333],[126,196,77,-0.4583333333333333],[126,196,78,-0.4583333333333333],[126,196,79,-0.4583333333333333],[126,197,64,-0.4583333333333333],[126,197,65,-0.4583333333333333],[126,197,66,-0.4583333333333333],[126,197,67,-0.4583333333333333],[126,197,68,-0.4583333333333333],[126,197,69,-0.4583333333333333],[126,197,70,-0.4583333333333333],[126,197,71,-0.4583333333333333],[126,197,72,-0.4583333333333333],[126,197,73,-0.4583333333333333],[126,197,74,-0.4583333333333333],[126,197,75,-0.4583333333333333],[126,197,76,-0.4583333333333333],[126,197,77,-0.4583333333333333],[126,197,78,-0.4583333333333333],[126,197,79,-0.4583333333333333],[126,198,64,-0.4583333333333333],[126,198,65,-0.4583333333333333],[126,198,66,-0.4583333333333333],[126,198,67,-0.4583333333333333],[126,198,68,-0.4583333333333333],[126,198,69,-0.4583333333333333],[126,198,70,-0.4583333333333333],[126,198,71,-0.4583333333333333],[126,198,72,-0.4583333333333333],[126,198,73,-0.4583333333333333],[126,198,74,-0.4583333333333333],[126,198,75,-0.4583333333333333],[126,198,76,-0.4583333333333333],[126,198,77,-0.4583333333333333],[126,198,78,-0.4583333333333333],[126,198,79,-0.4583333333333333],[126,199,64,-0.4583333333333333],[126,199,65,-0.4583333333333333],[126,199,66,-0.4583333333333333],[126,199,67,-0.4583333333333333],[126,199,68,-0.4583333333333333],[126,199,69,-0.4583333333333333],[126,199,70,-0.4583333333333333],[126,199,71,-0.4583333333333333],[126,199,72,-0.4583333333333333],[126,199,73,-0.4583333333333333],[126,199,74,-0.4583333333333333],[126,199,75,-0.4583333333333333],[126,199,76,-0.4583333333333333],[126,199,77,-0.4583333333333333],[126,199,78,-0.4583333333333333],[126,199,79,-0.4583333333333333],[126,200,64,-0.4583333333333333],[126,200,65,-0.4583333333333333],[126,200,66,-0.4583333333333333],[126,200,67,-0.4583333333333333],[126,200,68,-0.4583333333333333],[126,200,69,-0.4583333333333333],[126,200,70,-0.4583333333333333],[126,200,71,-0.4583333333333333],[126,200,72,-0.4583333333333333],[126,200,73,-0.4583333333333333],[126,200,74,-0.4583333333333333],[126,200,75,-0.4583333333333333],[126,200,76,-0.4583333333333333],[126,200,77,-0.4583333333333333],[126,200,78,-0.4583333333333333],[126,200,79,-0.4583333333333333],[126,201,64,-0.4583333333333333],[126,201,65,-0.4583333333333333],[126,201,66,-0.4583333333333333],[126,201,67,-0.4583333333333333],[126,201,68,-0.4583333333333333],[126,201,69,-0.4583333333333333],[126,201,70,-0.4583333333333333],[126,201,71,-0.4583333333333333],[126,201,72,-0.4583333333333333],[126,201,73,-0.4583333333333333],[126,201,74,-0.4583333333333333],[126,201,75,-0.4583333333333333],[126,201,76,-0.4583333333333333],[126,201,77,-0.4583333333333333],[126,201,78,-0.4583333333333333],[126,201,79,-0.4583333333333333],[126,202,64,-0.4583333333333333],[126,202,65,-0.4583333333333333],[126,202,66,-0.4583333333333333],[126,202,67,-0.4583333333333333],[126,202,68,-0.4583333333333333],[126,202,69,-0.4583333333333333],[126,202,70,-0.4583333333333333],[126,202,71,-0.4583333333333333],[126,202,72,-0.4583333333333333],[126,202,73,-0.4583333333333333],[126,202,74,-0.4583333333333333],[126,202,75,-0.4583333333333333],[126,202,76,-0.4583333333333333],[126,202,77,-0.4583333333333333],[126,202,78,-0.4583333333333333],[126,202,79,-0.4583333333333333],[126,203,64,-0.4583333333333333],[126,203,65,-0.4583333333333333],[126,203,66,-0.4583333333333333],[126,203,67,-0.4583333333333333],[126,203,68,-0.4583333333333333],[126,203,69,-0.4583333333333333],[126,203,70,-0.4583333333333333],[126,203,71,-0.4583333333333333],[126,203,72,-0.4583333333333333],[126,203,73,-0.4583333333333333],[126,203,74,-0.4583333333333333],[126,203,75,-0.4583333333333333],[126,203,76,-0.4583333333333333],[126,203,77,-0.4583333333333333],[126,203,78,-0.4583333333333333],[126,203,79,-0.4583333333333333],[126,204,64,-0.4583333333333333],[126,204,65,-0.4583333333333333],[126,204,66,-0.4583333333333333],[126,204,67,-0.4583333333333333],[126,204,68,-0.4583333333333333],[126,204,69,-0.4583333333333333],[126,204,70,-0.4583333333333333],[126,204,71,-0.4583333333333333],[126,204,72,-0.4583333333333333],[126,204,73,-0.4583333333333333],[126,204,74,-0.4583333333333333],[126,204,75,-0.4583333333333333],[126,204,76,-0.4583333333333333],[126,204,77,-0.4583333333333333],[126,204,78,-0.4583333333333333],[126,204,79,-0.4583333333333333],[126,205,64,-0.4583333333333333],[126,205,65,-0.4583333333333333],[126,205,66,-0.4583333333333333],[126,205,67,-0.4583333333333333],[126,205,68,-0.4583333333333333],[126,205,69,-0.4583333333333333],[126,205,70,-0.4583333333333333],[126,205,71,-0.4583333333333333],[126,205,72,-0.4583333333333333],[126,205,73,-0.4583333333333333],[126,205,74,-0.4583333333333333],[126,205,75,-0.4583333333333333],[126,205,76,-0.4583333333333333],[126,205,77,-0.4583333333333333],[126,205,78,-0.4583333333333333],[126,205,79,-0.4583333333333333],[126,206,64,-0.4583333333333333],[126,206,65,-0.4583333333333333],[126,206,66,-0.4583333333333333],[126,206,67,-0.4583333333333333],[126,206,68,-0.4583333333333333],[126,206,69,-0.4583333333333333],[126,206,70,-0.4583333333333333],[126,206,71,-0.4583333333333333],[126,206,72,-0.4583333333333333],[126,206,73,-0.4583333333333333],[126,206,74,-0.4583333333333333],[126,206,75,-0.4583333333333333],[126,206,76,-0.4583333333333333],[126,206,77,-0.4583333333333333],[126,206,78,-0.4583333333333333],[126,206,79,-0.4583333333333333],[126,207,64,-0.4583333333333333],[126,207,65,-0.4583333333333333],[126,207,66,-0.4583333333333333],[126,207,67,-0.4583333333333333],[126,207,68,-0.4583333333333333],[126,207,69,-0.4583333333333333],[126,207,70,-0.4583333333333333],[126,207,71,-0.4583333333333333],[126,207,72,-0.4583333333333333],[126,207,73,-0.4583333333333333],[126,207,74,-0.4583333333333333],[126,207,75,-0.4583333333333333],[126,207,76,-0.4583333333333333],[126,207,77,-0.4583333333333333],[126,207,78,-0.4583333333333333],[126,207,79,-0.4583333333333333],[126,208,64,-0.4583333333333333],[126,208,65,-0.4583333333333333],[126,208,66,-0.4583333333333333],[126,208,67,-0.4583333333333333],[126,208,68,-0.4583333333333333],[126,208,69,-0.4583333333333333],[126,208,70,-0.4583333333333333],[126,208,71,-0.4583333333333333],[126,208,72,-0.4583333333333333],[126,208,73,-0.4583333333333333],[126,208,74,-0.4583333333333333],[126,208,75,-0.4583333333333333],[126,208,76,-0.4583333333333333],[126,208,77,-0.4583333333333333],[126,208,78,-0.4583333333333333],[126,208,79,-0.4583333333333333],[126,209,64,-0.4583333333333333],[126,209,65,-0.4583333333333333],[126,209,66,-0.4583333333333333],[126,209,67,-0.4583333333333333],[126,209,68,-0.4583333333333333],[126,209,69,-0.4583333333333333],[126,209,70,-0.4583333333333333],[126,209,71,-0.4583333333333333],[126,209,72,-0.4583333333333333],[126,209,73,-0.4583333333333333],[126,209,74,-0.4583333333333333],[126,209,75,-0.4583333333333333],[126,209,76,-0.4583333333333333],[126,209,77,-0.4583333333333333],[126,209,78,-0.4583333333333333],[126,209,79,-0.4583333333333333],[126,210,64,-0.4583333333333333],[126,210,65,-0.4583333333333333],[126,210,66,-0.4583333333333333],[126,210,67,-0.4583333333333333],[126,210,68,-0.4583333333333333],[126,210,69,-0.4583333333333333],[126,210,70,-0.4583333333333333],[126,210,71,-0.4583333333333333],[126,210,72,-0.4583333333333333],[126,210,73,-0.4583333333333333],[126,210,74,-0.4583333333333333],[126,210,75,-0.4583333333333333],[126,210,76,-0.4583333333333333],[126,210,77,-0.4583333333333333],[126,210,78,-0.4583333333333333],[126,210,79,-0.4583333333333333],[126,211,64,-0.4583333333333333],[126,211,65,-0.4583333333333333],[126,211,66,-0.4583333333333333],[126,211,67,-0.4583333333333333],[126,211,68,-0.4583333333333333],[126,211,69,-0.4583333333333333],[126,211,70,-0.4583333333333333],[126,211,71,-0.4583333333333333],[126,211,72,-0.4583333333333333],[126,211,73,-0.4583333333333333],[126,211,74,-0.4583333333333333],[126,211,75,-0.4583333333333333],[126,211,76,-0.4583333333333333],[126,211,77,-0.4583333333333333],[126,211,78,-0.4583333333333333],[126,211,79,-0.4583333333333333],[126,212,64,-0.4583333333333333],[126,212,65,-0.4583333333333333],[126,212,66,-0.4583333333333333],[126,212,67,-0.4583333333333333],[126,212,68,-0.4583333333333333],[126,212,69,-0.4583333333333333],[126,212,70,-0.4583333333333333],[126,212,71,-0.4583333333333333],[126,212,72,-0.4583333333333333],[126,212,73,-0.4583333333333333],[126,212,74,-0.4583333333333333],[126,212,75,-0.4583333333333333],[126,212,76,-0.4583333333333333],[126,212,77,-0.4583333333333333],[126,212,78,-0.4583333333333333],[126,212,79,-0.4583333333333333],[126,213,64,-0.4583333333333333],[126,213,65,-0.4583333333333333],[126,213,66,-0.4583333333333333],[126,213,67,-0.4583333333333333],[126,213,68,-0.4583333333333333],[126,213,69,-0.4583333333333333],[126,213,70,-0.4583333333333333],[126,213,71,-0.4583333333333333],[126,213,72,-0.4583333333333333],[126,213,73,-0.4583333333333333],[126,213,74,-0.4583333333333333],[126,213,75,-0.4583333333333333],[126,213,76,-0.4583333333333333],[126,213,77,-0.4583333333333333],[126,213,78,-0.4583333333333333],[126,213,79,-0.4583333333333333],[126,214,64,-0.4583333333333333],[126,214,65,-0.4583333333333333],[126,214,66,-0.4583333333333333],[126,214,67,-0.4583333333333333],[126,214,68,-0.4583333333333333],[126,214,69,-0.4583333333333333],[126,214,70,-0.4583333333333333],[126,214,71,-0.4583333333333333],[126,214,72,-0.4583333333333333],[126,214,73,-0.4583333333333333],[126,214,74,-0.4583333333333333],[126,214,75,-0.4583333333333333],[126,214,76,-0.4583333333333333],[126,214,77,-0.4583333333333333],[126,214,78,-0.4583333333333333],[126,214,79,-0.4583333333333333],[126,215,64,-0.4583333333333333],[126,215,65,-0.4583333333333333],[126,215,66,-0.4583333333333333],[126,215,67,-0.4583333333333333],[126,215,68,-0.4583333333333333],[126,215,69,-0.4583333333333333],[126,215,70,-0.4583333333333333],[126,215,71,-0.4583333333333333],[126,215,72,-0.4583333333333333],[126,215,73,-0.4583333333333333],[126,215,74,-0.4583333333333333],[126,215,75,-0.4583333333333333],[126,215,76,-0.4583333333333333],[126,215,77,-0.4583333333333333],[126,215,78,-0.4583333333333333],[126,215,79,-0.4583333333333333],[126,216,64,-0.4583333333333333],[126,216,65,-0.4583333333333333],[126,216,66,-0.4583333333333333],[126,216,67,-0.4583333333333333],[126,216,68,-0.4583333333333333],[126,216,69,-0.4583333333333333],[126,216,70,-0.4583333333333333],[126,216,71,-0.4583333333333333],[126,216,72,-0.4583333333333333],[126,216,73,-0.4583333333333333],[126,216,74,-0.4583333333333333],[126,216,75,-0.4583333333333333],[126,216,76,-0.4583333333333333],[126,216,77,-0.4583333333333333],[126,216,78,-0.4583333333333333],[126,216,79,-0.4583333333333333],[126,217,64,-0.4583333333333333],[126,217,65,-0.4583333333333333],[126,217,66,-0.4583333333333333],[126,217,67,-0.4583333333333333],[126,217,68,-0.4583333333333333],[126,217,69,-0.4583333333333333],[126,217,70,-0.4583333333333333],[126,217,71,-0.4583333333333333],[126,217,72,-0.4583333333333333],[126,217,73,-0.4583333333333333],[126,217,74,-0.4583333333333333],[126,217,75,-0.4583333333333333],[126,217,76,-0.4583333333333333],[126,217,77,-0.4583333333333333],[126,217,78,-0.4583333333333333],[126,217,79,-0.4583333333333333],[126,218,64,-0.4583333333333333],[126,218,65,-0.4583333333333333],[126,218,66,-0.4583333333333333],[126,218,67,-0.4583333333333333],[126,218,68,-0.4583333333333333],[126,218,69,-0.4583333333333333],[126,218,70,-0.4583333333333333],[126,218,71,-0.4583333333333333],[126,218,72,-0.4583333333333333],[126,218,73,-0.4583333333333333],[126,218,74,-0.4583333333333333],[126,218,75,-0.4583333333333333],[126,218,76,-0.4583333333333333],[126,218,77,-0.4583333333333333],[126,218,78,-0.4583333333333333],[126,218,79,-0.4583333333333333],[126,219,64,-0.4583333333333333],[126,219,65,-0.4583333333333333],[126,219,66,-0.4583333333333333],[126,219,67,-0.4583333333333333],[126,219,68,-0.4583333333333333],[126,219,69,-0.4583333333333333],[126,219,70,-0.4583333333333333],[126,219,71,-0.4583333333333333],[126,219,72,-0.4583333333333333],[126,219,73,-0.4583333333333333],[126,219,74,-0.4583333333333333],[126,219,75,-0.4583333333333333],[126,219,76,-0.4583333333333333],[126,219,77,-0.4583333333333333],[126,219,78,-0.4583333333333333],[126,219,79,-0.4583333333333333],[126,220,64,-0.4583333333333333],[126,220,65,-0.4583333333333333],[126,220,66,-0.4583333333333333],[126,220,67,-0.4583333333333333],[126,220,68,-0.4583333333333333],[126,220,69,-0.4583333333333333],[126,220,70,-0.4583333333333333],[126,220,71,-0.4583333333333333],[126,220,72,-0.4583333333333333],[126,220,73,-0.4583333333333333],[126,220,74,-0.4583333333333333],[126,220,75,-0.4583333333333333],[126,220,76,-0.4583333333333333],[126,220,77,-0.4583333333333333],[126,220,78,-0.4583333333333333],[126,220,79,-0.4583333333333333],[126,221,64,-0.4583333333333333],[126,221,65,-0.4583333333333333],[126,221,66,-0.4583333333333333],[126,221,67,-0.4583333333333333],[126,221,68,-0.4583333333333333],[126,221,69,-0.4583333333333333],[126,221,70,-0.4583333333333333],[126,221,71,-0.4583333333333333],[126,221,72,-0.4583333333333333],[126,221,73,-0.4583333333333333],[126,221,74,-0.4583333333333333],[126,221,75,-0.4583333333333333],[126,221,76,-0.4583333333333333],[126,221,77,-0.4583333333333333],[126,221,78,-0.4583333333333333],[126,221,79,-0.4583333333333333],[126,222,64,-0.4583333333333333],[126,222,65,-0.4583333333333333],[126,222,66,-0.4583333333333333],[126,222,67,-0.4583333333333333],[126,222,68,-0.4583333333333333],[126,222,69,-0.4583333333333333],[126,222,70,-0.4583333333333333],[126,222,71,-0.4583333333333333],[126,222,72,-0.4583333333333333],[126,222,73,-0.4583333333333333],[126,222,74,-0.4583333333333333],[126,222,75,-0.4583333333333333],[126,222,76,-0.4583333333333333],[126,222,77,-0.4583333333333333],[126,222,78,-0.4583333333333333],[126,222,79,-0.4583333333333333],[126,223,64,-0.4583333333333333],[126,223,65,-0.4583333333333333],[126,223,66,-0.4583333333333333],[126,223,67,-0.4583333333333333],[126,223,68,-0.4583333333333333],[126,223,69,-0.4583333333333333],[126,223,70,-0.4583333333333333],[126,223,71,-0.4583333333333333],[126,223,72,-0.4583333333333333],[126,223,73,-0.4583333333333333],[126,223,74,-0.4583333333333333],[126,223,75,-0.4583333333333333],[126,223,76,-0.4583333333333333],[126,223,77,-0.4583333333333333],[126,223,78,-0.4583333333333333],[126,223,79,-0.4583333333333333],[126,224,64,-0.4583333333333333],[126,224,65,-0.4583333333333333],[126,224,66,-0.4583333333333333],[126,224,67,-0.4583333333333333],[126,224,68,-0.4583333333333333],[126,224,69,-0.4583333333333333],[126,224,70,-0.4583333333333333],[126,224,71,-0.4583333333333333],[126,224,72,-0.4583333333333333],[126,224,73,-0.4583333333333333],[126,224,74,-0.4583333333333333],[126,224,75,-0.4583333333333333],[126,224,76,-0.4583333333333333],[126,224,77,-0.4583333333333333],[126,224,78,-0.4583333333333333],[126,224,79,-0.4583333333333333],[126,225,64,-0.4583333333333333],[126,225,65,-0.4583333333333333],[126,225,66,-0.4583333333333333],[126,225,67,-0.4583333333333333],[126,225,68,-0.4583333333333333],[126,225,69,-0.4583333333333333],[126,225,70,-0.4583333333333333],[126,225,71,-0.4583333333333333],[126,225,72,-0.4583333333333333],[126,225,73,-0.4583333333333333],[126,225,74,-0.4583333333333333],[126,225,75,-0.4583333333333333],[126,225,76,-0.4583333333333333],[126,225,77,-0.4583333333333333],[126,225,78,-0.4583333333333333],[126,225,79,-0.4583333333333333],[126,226,64,-0.4583333333333333],[126,226,65,-0.4583333333333333],[126,226,66,-0.4583333333333333],[126,226,67,-0.4583333333333333],[126,226,68,-0.4583333333333333],[126,226,69,-0.4583333333333333],[126,226,70,-0.4583333333333333],[126,226,71,-0.4583333333333333],[126,226,72,-0.4583333333333333],[126,226,73,-0.4583333333333333],[126,226,74,-0.4583333333333333],[126,226,75,-0.4583333333333333],[126,226,76,-0.4583333333333333],[126,226,77,-0.4583333333333333],[126,226,78,-0.4583333333333333],[126,226,79,-0.4583333333333333],[126,227,64,-0.4583333333333333],[126,227,65,-0.4583333333333333],[126,227,66,-0.4583333333333333],[126,227,67,-0.4583333333333333],[126,227,68,-0.4583333333333333],[126,227,69,-0.4583333333333333],[126,227,70,-0.4583333333333333],[126,227,71,-0.4583333333333333],[126,227,72,-0.4583333333333333],[126,227,73,-0.4583333333333333],[126,227,74,-0.4583333333333333],[126,227,75,-0.4583333333333333],[126,227,76,-0.4583333333333333],[126,227,77,-0.4583333333333333],[126,227,78,-0.4583333333333333],[126,227,79,-0.4583333333333333],[126,228,64,-0.4583333333333333],[126,228,65,-0.4583333333333333],[126,228,66,-0.4583333333333333],[126,228,67,-0.4583333333333333],[126,228,68,-0.4583333333333333],[126,228,69,-0.4583333333333333],[126,228,70,-0.4583333333333333],[126,228,71,-0.4583333333333333],[126,228,72,-0.4583333333333333],[126,228,73,-0.4583333333333333],[126,228,74,-0.4583333333333333],[126,228,75,-0.4583333333333333],[126,228,76,-0.4583333333333333],[126,228,77,-0.4583333333333333],[126,228,78,-0.4583333333333333],[126,228,79,-0.4583333333333333],[126,229,64,-0.4583333333333333],[126,229,65,-0.4583333333333333],[126,229,66,-0.4583333333333333],[126,229,67,-0.4583333333333333],[126,229,68,-0.4583333333333333],[126,229,69,-0.4583333333333333],[126,229,70,-0.4583333333333333],[126,229,71,-0.4583333333333333],[126,229,72,-0.4583333333333333],[126,229,73,-0.4583333333333333],[126,229,74,-0.4583333333333333],[126,229,75,-0.4583333333333333],[126,229,76,-0.4583333333333333],[126,229,77,-0.4583333333333333],[126,229,78,-0.4583333333333333],[126,229,79,-0.4583333333333333],[126,230,64,-0.4583333333333333],[126,230,65,-0.4583333333333333],[126,230,66,-0.4583333333333333],[126,230,67,-0.4583333333333333],[126,230,68,-0.4583333333333333],[126,230,69,-0.4583333333333333],[126,230,70,-0.4583333333333333],[126,230,71,-0.4583333333333333],[126,230,72,-0.4583333333333333],[126,230,73,-0.4583333333333333],[126,230,74,-0.4583333333333333],[126,230,75,-0.4583333333333333],[126,230,76,-0.4583333333333333],[126,230,77,-0.4583333333333333],[126,230,78,-0.4583333333333333],[126,230,79,-0.4583333333333333],[126,231,64,-0.4583333333333333],[126,231,65,-0.4583333333333333],[126,231,66,-0.4583333333333333],[126,231,67,-0.4583333333333333],[126,231,68,-0.4583333333333333],[126,231,69,-0.4583333333333333],[126,231,70,-0.4583333333333333],[126,231,71,-0.4583333333333333],[126,231,72,-0.4583333333333333],[126,231,73,-0.4583333333333333],[126,231,74,-0.4583333333333333],[126,231,75,-0.4583333333333333],[126,231,76,-0.4583333333333333],[126,231,77,-0.4583333333333333],[126,231,78,-0.4583333333333333],[126,231,79,-0.4583333333333333],[126,232,64,-0.4583333333333333],[126,232,65,-0.4583333333333333],[126,232,66,-0.4583333333333333],[126,232,67,-0.4583333333333333],[126,232,68,-0.4583333333333333],[126,232,69,-0.4583333333333333],[126,232,70,-0.4583333333333333],[126,232,71,-0.4583333333333333],[126,232,72,-0.4583333333333333],[126,232,73,-0.4583333333333333],[126,232,74,-0.4583333333333333],[126,232,75,-0.4583333333333333],[126,232,76,-0.4583333333333333],[126,232,77,-0.4583333333333333],[126,232,78,-0.4583333333333333],[126,232,79,-0.4583333333333333],[126,233,64,-0.4583333333333333],[126,233,65,-0.4583333333333333],[126,233,66,-0.4583333333333333],[126,233,67,-0.4583333333333333],[126,233,68,-0.4583333333333333],[126,233,69,-0.4583333333333333],[126,233,70,-0.4583333333333333],[126,233,71,-0.4583333333333333],[126,233,72,-0.4583333333333333],[126,233,73,-0.4583333333333333],[126,233,74,-0.4583333333333333],[126,233,75,-0.4583333333333333],[126,233,76,-0.4583333333333333],[126,233,77,-0.4583333333333333],[126,233,78,-0.4583333333333333],[126,233,79,-0.4583333333333333],[126,234,64,-0.4583333333333333],[126,234,65,-0.4583333333333333],[126,234,66,-0.4583333333333333],[126,234,67,-0.4583333333333333],[126,234,68,-0.4583333333333333],[126,234,69,-0.4583333333333333],[126,234,70,-0.4583333333333333],[126,234,71,-0.4583333333333333],[126,234,72,-0.4583333333333333],[126,234,73,-0.4583333333333333],[126,234,74,-0.4583333333333333],[126,234,75,-0.4583333333333333],[126,234,76,-0.4583333333333333],[126,234,77,-0.4583333333333333],[126,234,78,-0.4583333333333333],[126,234,79,-0.4583333333333333],[126,235,64,-0.4583333333333333],[126,235,65,-0.4583333333333333],[126,235,66,-0.4583333333333333],[126,235,67,-0.4583333333333333],[126,235,68,-0.4583333333333333],[126,235,69,-0.4583333333333333],[126,235,70,-0.4583333333333333],[126,235,71,-0.4583333333333333],[126,235,72,-0.4583333333333333],[126,235,73,-0.4583333333333333],[126,235,74,-0.4583333333333333],[126,235,75,-0.4583333333333333],[126,235,76,-0.4583333333333333],[126,235,77,-0.4583333333333333],[126,235,78,-0.4583333333333333],[126,235,79,-0.4583333333333333],[126,236,64,-0.4583333333333333],[126,236,65,-0.4583333333333333],[126,236,66,-0.4583333333333333],[126,236,67,-0.4583333333333333],[126,236,68,-0.4583333333333333],[126,236,69,-0.4583333333333333],[126,236,70,-0.4583333333333333],[126,236,71,-0.4583333333333333],[126,236,72,-0.4583333333333333],[126,236,73,-0.4583333333333333],[126,236,74,-0.4583333333333333],[126,236,75,-0.4583333333333333],[126,236,76,-0.4583333333333333],[126,236,77,-0.4583333333333333],[126,236,78,-0.4583333333333333],[126,236,79,-0.4583333333333333],[126,237,64,-0.4583333333333333],[126,237,65,-0.4583333333333333],[126,237,66,-0.4583333333333333],[126,237,67,-0.4583333333333333],[126,237,68,-0.4583333333333333],[126,237,69,-0.4583333333333333],[126,237,70,-0.4583333333333333],[126,237,71,-0.4583333333333333],[126,237,72,-0.4583333333333333],[126,237,73,-0.4583333333333333],[126,237,74,-0.4583333333333333],[126,237,75,-0.4583333333333333],[126,237,76,-0.4583333333333333],[126,237,77,-0.4583333333333333],[126,237,78,-0.4583333333333333],[126,237,79,-0.4583333333333333],[126,238,64,-0.4583333333333333],[126,238,65,-0.4583333333333333],[126,238,66,-0.4583333333333333],[126,238,67,-0.4583333333333333],[126,238,68,-0.4583333333333333],[126,238,69,-0.4583333333333333],[126,238,70,-0.4583333333333333],[126,238,71,-0.4583333333333333],[126,238,72,-0.4583333333333333],[126,238,73,-0.4583333333333333],[126,238,74,-0.4583333333333333],[126,238,75,-0.4583333333333333],[126,238,76,-0.4583333333333333],[126,238,77,-0.4583333333333333],[126,238,78,-0.4583333333333333],[126,238,79,-0.4583333333333333],[126,239,64,-0.4583333333333333],[126,239,65,-0.4583333333333333],[126,239,66,-0.4583333333333333],[126,239,67,-0.4583333333333333],[126,239,68,-0.4583333333333333],[126,239,69,-0.4583333333333333],[126,239,70,-0.4583333333333333],[126,239,71,-0.4583333333333333],[126,239,72,-0.4583333333333333],[126,239,73,-0.4583333333333333],[126,239,74,-0.4583333333333333],[126,239,75,-0.4583333333333333],[126,239,76,-0.4583333333333333],[126,239,77,-0.4583333333333333],[126,239,78,-0.4583333333333333],[126,239,79,-0.4583333333333333],[126,240,64,-0.4583333333333333],[126,240,65,-0.4583333333333333],[126,240,66,-0.4583333333333333],[126,240,67,-0.4583333333333333],[126,240,68,-0.4583333333333333],[126,240,69,-0.4583333333333333],[126,240,70,-0.4583333333333333],[126,240,71,-0.4583333333333333],[126,240,72,-0.4583333333333333],[126,240,73,-0.4583333333333333],[126,240,74,-0.4583333333333333],[126,240,75,-0.4583333333333333],[126,240,76,-0.4583333333333333],[126,240,77,-0.4583333333333333],[126,240,78,-0.4583333333333333],[126,240,79,-0.4583333333333333],[126,241,64,-0.4583333333333333],[126,241,65,-0.4583333333333333],[126,241,66,-0.4583333333333333],[126,241,67,-0.4583333333333333],[126,241,68,-0.4583333333333333],[126,241,69,-0.4583333333333333],[126,241,70,-0.4583333333333333],[126,241,71,-0.4583333333333333],[126,241,72,-0.4583333333333333],[126,241,73,-0.4583333333333333],[126,241,74,-0.4583333333333333],[126,241,75,-0.4583333333333333],[126,241,76,-0.4583333333333333],[126,241,77,-0.4583333333333333],[126,241,78,-0.4583333333333333],[126,241,79,-0.4583333333333333],[126,242,64,-0.4583333333333333],[126,242,65,-0.4583333333333333],[126,242,66,-0.4583333333333333],[126,242,67,-0.4583333333333333],[126,242,68,-0.4583333333333333],[126,242,69,-0.4583333333333333],[126,242,70,-0.4583333333333333],[126,242,71,-0.4583333333333333],[126,242,72,-0.4583333333333333],[126,242,73,-0.4583333333333333],[126,242,74,-0.4583333333333333],[126,242,75,-0.4583333333333333],[126,242,76,-0.4583333333333333],[126,242,77,-0.4583333333333333],[126,242,78,-0.4583333333333333],[126,242,79,-0.4583333333333333],[126,243,64,-0.4583333333333333],[126,243,65,-0.4583333333333333],[126,243,66,-0.4583333333333333],[126,243,67,-0.4583333333333333],[126,243,68,-0.4583333333333333],[126,243,69,-0.4583333333333333],[126,243,70,-0.4583333333333333],[126,243,71,-0.4583333333333333],[126,243,72,-0.4583333333333333],[126,243,73,-0.4583333333333333],[126,243,74,-0.4583333333333333],[126,243,75,-0.4583333333333333],[126,243,76,-0.4583333333333333],[126,243,77,-0.4583333333333333],[126,243,78,-0.4583333333333333],[126,243,79,-0.4583333333333333],[126,244,64,-0.4583333333333333],[126,244,65,-0.4583333333333333],[126,244,66,-0.4583333333333333],[126,244,67,-0.4583333333333333],[126,244,68,-0.4583333333333333],[126,244,69,-0.4583333333333333],[126,244,70,-0.4583333333333333],[126,244,71,-0.4583333333333333],[126,244,72,-0.4583333333333333],[126,244,73,-0.4583333333333333],[126,244,74,-0.4583333333333333],[126,244,75,-0.4583333333333333],[126,244,76,-0.4583333333333333],[126,244,77,-0.4583333333333333],[126,244,78,-0.4583333333333333],[126,244,79,-0.4583333333333333],[126,245,64,-0.4583333333333333],[126,245,65,-0.4583333333333333],[126,245,66,-0.4583333333333333],[126,245,67,-0.4583333333333333],[126,245,68,-0.4583333333333333],[126,245,69,-0.4583333333333333],[126,245,70,-0.4583333333333333],[126,245,71,-0.4583333333333333],[126,245,72,-0.4583333333333333],[126,245,73,-0.4583333333333333],[126,245,74,-0.4583333333333333],[126,245,75,-0.4583333333333333],[126,245,76,-0.4583333333333333],[126,245,77,-0.4583333333333333],[126,245,78,-0.4583333333333333],[126,245,79,-0.4583333333333333],[126,246,64,-0.4583333333333333],[126,246,65,-0.4583333333333333],[126,246,66,-0.4583333333333333],[126,246,67,-0.4583333333333333],[126,246,68,-0.4583333333333333],[126,246,69,-0.4583333333333333],[126,246,70,-0.4583333333333333],[126,246,71,-0.4583333333333333],[126,246,72,-0.4583333333333333],[126,246,73,-0.4583333333333333],[126,246,74,-0.4583333333333333],[126,246,75,-0.4583333333333333],[126,246,76,-0.4583333333333333],[126,246,77,-0.4583333333333333],[126,246,78,-0.4583333333333333],[126,246,79,-0.4583333333333333],[126,247,64,-0.4583333333333333],[126,247,65,-0.4583333333333333],[126,247,66,-0.4583333333333333],[126,247,67,-0.4583333333333333],[126,247,68,-0.4583333333333333],[126,247,69,-0.4583333333333333],[126,247,70,-0.4583333333333333],[126,247,71,-0.4583333333333333],[126,247,72,-0.4583333333333333],[126,247,73,-0.4583333333333333],[126,247,74,-0.4583333333333333],[126,247,75,-0.4583333333333333],[126,247,76,-0.4583333333333333],[126,247,77,-0.4583333333333333],[126,247,78,-0.4583333333333333],[126,247,79,-0.4583333333333333],[126,248,64,-0.4583333333333333],[126,248,65,-0.4583333333333333],[126,248,66,-0.4583333333333333],[126,248,67,-0.4583333333333333],[126,248,68,-0.4583333333333333],[126,248,69,-0.4583333333333333],[126,248,70,-0.4583333333333333],[126,248,71,-0.4583333333333333],[126,248,72,-0.4583333333333333],[126,248,73,-0.4583333333333333],[126,248,74,-0.4583333333333333],[126,248,75,-0.4583333333333333],[126,248,76,-0.4583333333333333],[126,248,77,-0.4583333333333333],[126,248,78,-0.4583333333333333],[126,248,79,-0.4583333333333333],[126,249,64,-0.4583333333333333],[126,249,65,-0.4583333333333333],[126,249,66,-0.4583333333333333],[126,249,67,-0.4583333333333333],[126,249,68,-0.4583333333333333],[126,249,69,-0.4583333333333333],[126,249,70,-0.4583333333333333],[126,249,71,-0.4583333333333333],[126,249,72,-0.4583333333333333],[126,249,73,-0.4583333333333333],[126,249,74,-0.4583333333333333],[126,249,75,-0.4583333333333333],[126,249,76,-0.4583333333333333],[126,249,77,-0.4583333333333333],[126,249,78,-0.4583333333333333],[126,249,79,-0.4583333333333333],[126,250,64,-0.4583333333333333],[126,250,65,-0.4583333333333333],[126,250,66,-0.4583333333333333],[126,250,67,-0.4583333333333333],[126,250,68,-0.4583333333333333],[126,250,69,-0.4583333333333333],[126,250,70,-0.4583333333333333],[126,250,71,-0.4583333333333333],[126,250,72,-0.4583333333333333],[126,250,73,-0.4583333333333333],[126,250,74,-0.4583333333333333],[126,250,75,-0.4583333333333333],[126,250,76,-0.4583333333333333],[126,250,77,-0.4583333333333333],[126,250,78,-0.4583333333333333],[126,250,79,-0.4583333333333333],[126,251,64,-0.4583333333333333],[126,251,65,-0.4583333333333333],[126,251,66,-0.4583333333333333],[126,251,67,-0.4583333333333333],[126,251,68,-0.4583333333333333],[126,251,69,-0.4583333333333333],[126,251,70,-0.4583333333333333],[126,251,71,-0.4583333333333333],[126,251,72,-0.4583333333333333],[126,251,73,-0.4583333333333333],[126,251,74,-0.4583333333333333],[126,251,75,-0.4583333333333333],[126,251,76,-0.4583333333333333],[126,251,77,-0.4583333333333333],[126,251,78,-0.4583333333333333],[126,251,79,-0.4583333333333333],[126,252,64,-0.4583333333333333],[126,252,65,-0.4583333333333333],[126,252,66,-0.4583333333333333],[126,252,67,-0.4583333333333333],[126,252,68,-0.4583333333333333],[126,252,69,-0.4583333333333333],[126,252,70,-0.4583333333333333],[126,252,71,-0.4583333333333333],[126,252,72,-0.4583333333333333],[126,252,73,-0.4583333333333333],[126,252,74,-0.4583333333333333],[126,252,75,-0.4583333333333333],[126,252,76,-0.4583333333333333],[126,252,77,-0.4583333333333333],[126,252,78,-0.4583333333333333],[126,252,79,-0.4583333333333333],[126,253,64,-0.4583333333333333],[126,253,65,-0.4583333333333333],[126,253,66,-0.4583333333333333],[126,253,67,-0.4583333333333333],[126,253,68,-0.4583333333333333],[126,253,69,-0.4583333333333333],[126,253,70,-0.4583333333333333],[126,253,71,-0.4583333333333333],[126,253,72,-0.4583333333333333],[126,253,73,-0.4583333333333333],[126,253,74,-0.4583333333333333],[126,253,75,-0.4583333333333333],[126,253,76,-0.4583333333333333],[126,253,77,-0.4583333333333333],[126,253,78,-0.4583333333333333],[126,253,79,-0.4583333333333333],[126,254,64,-0.383232354747505],[126,254,65,-0.38392605779209066],[126,254,66,-0.3838798206745628],[126,254,67,-0.38426203642692763],[126,254,68,-0.3838733372028988],[126,254,69,-0.38300321845155116],[126,254,70,-0.3852431456253727],[126,254,71,-0.38561626174738217],[126,254,72,-0.3873593066709276],[126,254,73,-0.3891067892618822],[126,254,74,-0.3889917473313294],[126,254,75,-0.3876378702350273],[126,254,76,-0.3866649961219557],[126,254,77,-0.38530204160478676],[126,254,78,-0.3848641773729892],[126,254,79,-0.38315206003669805],[126,255,64,-0.2125835940252255],[126,255,65,-0.21326579885044544],[126,255,66,-0.21303605979461165],[126,255,67,-0.2131786069713722],[126,255,68,-0.21266545312634333],[126,255,69,-0.21240738868013595],[126,255,70,-0.21387976259434188],[126,255,71,-0.21430940249773808],[126,255,72,-0.21527331629170843],[126,255,73,-0.21633936710382054],[126,255,74,-0.21610551837722908],[126,255,75,-0.21537575907008155],[126,255,76,-0.21475591262072138],[126,255,77,-0.21397148687110276],[126,255,78,-0.21370487645295194],[126,255,79,-0.21288399593547702],[126,256,64,-0.02499479166666667],[126,256,65,-0.02499479166666667],[126,256,66,-0.02499479166666667],[126,256,67,-0.02499479166666667],[126,256,68,-0.02499479166666667],[126,256,69,-0.02499479166666667],[126,256,70,-0.02499479166666667],[126,256,71,-0.02499479166666667],[126,256,72,-0.02499479166666667],[126,256,73,-0.02499479166666667],[126,256,74,-0.02499479166666667],[126,256,75,-0.02499479166666667],[126,256,76,-0.02499479166666667],[126,256,77,-0.02499479166666667],[126,256,78,-0.02499479166666667],[126,256,79,-0.02499479166666667],[126,257,64,-0.02499479166666667],[126,257,65,-0.02499479166666667],[126,257,66,-0.02499479166666667],[126,257,67,-0.02499479166666667],[126,257,68,-0.02499479166666667],[126,257,69,-0.02499479166666667],[126,257,70,-0.02499479166666667],[126,257,71,-0.02499479166666667],[126,257,72,-0.02499479166666667],[126,257,73,-0.02499479166666667],[126,257,74,-0.02499479166666667],[126,257,75,-0.02499479166666667],[126,257,76,-0.02499479166666667],[126,257,77,-0.02499479166666667],[126,257,78,-0.02499479166666667],[126,257,79,-0.02499479166666667],[126,258,64,-0.02499479166666667],[126,258,65,-0.02499479166666667],[126,258,66,-0.02499479166666667],[126,258,67,-0.02499479166666667],[126,258,68,-0.02499479166666667],[126,258,69,-0.02499479166666667],[126,258,70,-0.02499479166666667],[126,258,71,-0.02499479166666667],[126,258,72,-0.02499479166666667],[126,258,73,-0.02499479166666667],[126,258,74,-0.02499479166666667],[126,258,75,-0.02499479166666667],[126,258,76,-0.02499479166666667],[126,258,77,-0.02499479166666667],[126,258,78,-0.02499479166666667],[126,258,79,-0.02499479166666667],[126,259,64,-0.02499479166666667],[126,259,65,-0.02499479166666667],[126,259,66,-0.02499479166666667],[126,259,67,-0.02499479166666667],[126,259,68,-0.02499479166666667],[126,259,69,-0.02499479166666667],[126,259,70,-0.02499479166666667],[126,259,71,-0.02499479166666667],[126,259,72,-0.02499479166666667],[126,259,73,-0.02499479166666667],[126,259,74,-0.02499479166666667],[126,259,75,-0.02499479166666667],[126,259,76,-0.02499479166666667],[126,259,77,-0.02499479166666667],[126,259,78,-0.02499479166666667],[126,259,79,-0.02499479166666667],[126,260,64,-0.02499479166666667],[126,260,65,-0.02499479166666667],[126,260,66,-0.02499479166666667],[126,260,67,-0.02499479166666667],[126,260,68,-0.02499479166666667],[126,260,69,-0.02499479166666667],[126,260,70,-0.02499479166666667],[126,260,71,-0.02499479166666667],[126,260,72,-0.02499479166666667],[126,260,73,-0.02499479166666667],[126,260,74,-0.02499479166666667],[126,260,75,-0.02499479166666667],[126,260,76,-0.02499479166666667],[126,260,77,-0.02499479166666667],[126,260,78,-0.02499479166666667],[126,260,79,-0.02499479166666667],[126,261,64,-0.02499479166666667],[126,261,65,-0.02499479166666667],[126,261,66,-0.02499479166666667],[126,261,67,-0.02499479166666667],[126,261,68,-0.02499479166666667],[126,261,69,-0.02499479166666667],[126,261,70,-0.02499479166666667],[126,261,71,-0.02499479166666667],[126,261,72,-0.02499479166666667],[126,261,73,-0.02499479166666667],[126,261,74,-0.02499479166666667],[126,261,75,-0.02499479166666667],[126,261,76,-0.02499479166666667],[126,261,77,-0.02499479166666667],[126,261,78,-0.02499479166666667],[126,261,79,-0.02499479166666667],[126,262,64,-0.02499479166666667],[126,262,65,-0.02499479166666667],[126,262,66,-0.02499479166666667],[126,262,67,-0.02499479166666667],[126,262,68,-0.02499479166666667],[126,262,69,-0.02499479166666667],[126,262,70,-0.02499479166666667],[126,262,71,-0.02499479166666667],[126,262,72,-0.02499479166666667],[126,262,73,-0.02499479166666667],[126,262,74,-0.02499479166666667],[126,262,75,-0.02499479166666667],[126,262,76,-0.02499479166666667],[126,262,77,-0.02499479166666667],[126,262,78,-0.02499479166666667],[126,262,79,-0.02499479166666667],[126,263,64,-0.02499479166666667],[126,263,65,-0.02499479166666667],[126,263,66,-0.02499479166666667],[126,263,67,-0.02499479166666667],[126,263,68,-0.02499479166666667],[126,263,69,-0.02499479166666667],[126,263,70,-0.02499479166666667],[126,263,71,-0.02499479166666667],[126,263,72,-0.02499479166666667],[126,263,73,-0.02499479166666667],[126,263,74,-0.02499479166666667],[126,263,75,-0.02499479166666667],[126,263,76,-0.02499479166666667],[126,263,77,-0.02499479166666667],[126,263,78,-0.02499479166666667],[126,263,79,-0.02499479166666667],[126,264,64,-0.02499479166666667],[126,264,65,-0.02499479166666667],[126,264,66,-0.02499479166666667],[126,264,67,-0.02499479166666667],[126,264,68,-0.02499479166666667],[126,264,69,-0.02499479166666667],[126,264,70,-0.02499479166666667],[126,264,71,-0.02499479166666667],[126,264,72,-0.02499479166666667],[126,264,73,-0.02499479166666667],[126,264,74,-0.02499479166666667],[126,264,75,-0.02499479166666667],[126,264,76,-0.02499479166666667],[126,264,77,-0.02499479166666667],[126,264,78,-0.02499479166666667],[126,264,79,-0.02499479166666667],[126,265,64,-0.02499479166666667],[126,265,65,-0.02499479166666667],[126,265,66,-0.02499479166666667],[126,265,67,-0.02499479166666667],[126,265,68,-0.02499479166666667],[126,265,69,-0.02499479166666667],[126,265,70,-0.02499479166666667],[126,265,71,-0.02499479166666667],[126,265,72,-0.02499479166666667],[126,265,73,-0.02499479166666667],[126,265,74,-0.02499479166666667],[126,265,75,-0.02499479166666667],[126,265,76,-0.02499479166666667],[126,265,77,-0.02499479166666667],[126,265,78,-0.02499479166666667],[126,265,79,-0.02499479166666667],[126,266,64,-0.02499479166666667],[126,266,65,-0.02499479166666667],[126,266,66,-0.02499479166666667],[126,266,67,-0.02499479166666667],[126,266,68,-0.02499479166666667],[126,266,69,-0.02499479166666667],[126,266,70,-0.02499479166666667],[126,266,71,-0.02499479166666667],[126,266,72,-0.02499479166666667],[126,266,73,-0.02499479166666667],[126,266,74,-0.02499479166666667],[126,266,75,-0.02499479166666667],[126,266,76,-0.02499479166666667],[126,266,77,-0.02499479166666667],[126,266,78,-0.02499479166666667],[126,266,79,-0.02499479166666667],[126,267,64,-0.02499479166666667],[126,267,65,-0.02499479166666667],[126,267,66,-0.02499479166666667],[126,267,67,-0.02499479166666667],[126,267,68,-0.02499479166666667],[126,267,69,-0.02499479166666667],[126,267,70,-0.02499479166666667],[126,267,71,-0.02499479166666667],[126,267,72,-0.02499479166666667],[126,267,73,-0.02499479166666667],[126,267,74,-0.02499479166666667],[126,267,75,-0.02499479166666667],[126,267,76,-0.02499479166666667],[126,267,77,-0.02499479166666667],[126,267,78,-0.02499479166666667],[126,267,79,-0.02499479166666667],[126,268,64,-0.02499479166666667],[126,268,65,-0.02499479166666667],[126,268,66,-0.02499479166666667],[126,268,67,-0.02499479166666667],[126,268,68,-0.02499479166666667],[126,268,69,-0.02499479166666667],[126,268,70,-0.02499479166666667],[126,268,71,-0.02499479166666667],[126,268,72,-0.02499479166666667],[126,268,73,-0.02499479166666667],[126,268,74,-0.02499479166666667],[126,268,75,-0.02499479166666667],[126,268,76,-0.02499479166666667],[126,268,77,-0.02499479166666667],[126,268,78,-0.02499479166666667],[126,268,79,-0.02499479166666667],[126,269,64,-0.02499479166666667],[126,269,65,-0.02499479166666667],[126,269,66,-0.02499479166666667],[126,269,67,-0.02499479166666667],[126,269,68,-0.02499479166666667],[126,269,69,-0.02499479166666667],[126,269,70,-0.02499479166666667],[126,269,71,-0.02499479166666667],[126,269,72,-0.02499479166666667],[126,269,73,-0.02499479166666667],[126,269,74,-0.02499479166666667],[126,269,75,-0.02499479166666667],[126,269,76,-0.02499479166666667],[126,269,77,-0.02499479166666667],[126,269,78,-0.02499479166666667],[126,269,79,-0.02499479166666667],[126,270,64,-0.02499479166666667],[126,270,65,-0.02499479166666667],[126,270,66,-0.02499479166666667],[126,270,67,-0.02499479166666667],[126,270,68,-0.02499479166666667],[126,270,69,-0.02499479166666667],[126,270,70,-0.02499479166666667],[126,270,71,-0.02499479166666667],[126,270,72,-0.02499479166666667],[126,270,73,-0.02499479166666667],[126,270,74,-0.02499479166666667],[126,270,75,-0.02499479166666667],[126,270,76,-0.02499479166666667],[126,270,77,-0.02499479166666667],[126,270,78,-0.02499479166666667],[126,270,79,-0.02499479166666667],[126,271,64,-0.02499479166666667],[126,271,65,-0.02499479166666667],[126,271,66,-0.02499479166666667],[126,271,67,-0.02499479166666667],[126,271,68,-0.02499479166666667],[126,271,69,-0.02499479166666667],[126,271,70,-0.02499479166666667],[126,271,71,-0.02499479166666667],[126,271,72,-0.02499479166666667],[126,271,73,-0.02499479166666667],[126,271,74,-0.02499479166666667],[126,271,75,-0.02499479166666667],[126,271,76,-0.02499479166666667],[126,271,77,-0.02499479166666667],[126,271,78,-0.02499479166666667],[126,271,79,-0.02499479166666667],[126,272,64,-0.02499479166666667],[126,272,65,-0.02499479166666667],[126,272,66,-0.02499479166666667],[126,272,67,-0.02499479166666667],[126,272,68,-0.02499479166666667],[126,272,69,-0.02499479166666667],[126,272,70,-0.02499479166666667],[126,272,71,-0.02499479166666667],[126,272,72,-0.02499479166666667],[126,272,73,-0.02499479166666667],[126,272,74,-0.02499479166666667],[126,272,75,-0.02499479166666667],[126,272,76,-0.02499479166666667],[126,272,77,-0.02499479166666667],[126,272,78,-0.02499479166666667],[126,272,79,-0.02499479166666667],[126,273,64,-0.02499479166666667],[126,273,65,-0.02499479166666667],[126,273,66,-0.02499479166666667],[126,273,67,-0.02499479166666667],[126,273,68,-0.02499479166666667],[126,273,69,-0.02499479166666667],[126,273,70,-0.02499479166666667],[126,273,71,-0.02499479166666667],[126,273,72,-0.02499479166666667],[126,273,73,-0.02499479166666667],[126,273,74,-0.02499479166666667],[126,273,75,-0.02499479166666667],[126,273,76,-0.02499479166666667],[126,273,77,-0.02499479166666667],[126,273,78,-0.02499479166666667],[126,273,79,-0.02499479166666667],[126,274,64,-0.02499479166666667],[126,274,65,-0.02499479166666667],[126,274,66,-0.02499479166666667],[126,274,67,-0.02499479166666667],[126,274,68,-0.02499479166666667],[126,274,69,-0.02499479166666667],[126,274,70,-0.02499479166666667],[126,274,71,-0.02499479166666667],[126,274,72,-0.02499479166666667],[126,274,73,-0.02499479166666667],[126,274,74,-0.02499479166666667],[126,274,75,-0.02499479166666667],[126,274,76,-0.02499479166666667],[126,274,77,-0.02499479166666667],[126,274,78,-0.02499479166666667],[126,274,79,-0.02499479166666667],[126,275,64,-0.02499479166666667],[126,275,65,-0.02499479166666667],[126,275,66,-0.02499479166666667],[126,275,67,-0.02499479166666667],[126,275,68,-0.02499479166666667],[126,275,69,-0.02499479166666667],[126,275,70,-0.02499479166666667],[126,275,71,-0.02499479166666667],[126,275,72,-0.02499479166666667],[126,275,73,-0.02499479166666667],[126,275,74,-0.02499479166666667],[126,275,75,-0.02499479166666667],[126,275,76,-0.02499479166666667],[126,275,77,-0.02499479166666667],[126,275,78,-0.02499479166666667],[126,275,79,-0.02499479166666667],[126,276,64,-0.02499479166666667],[126,276,65,-0.02499479166666667],[126,276,66,-0.02499479166666667],[126,276,67,-0.02499479166666667],[126,276,68,-0.02499479166666667],[126,276,69,-0.02499479166666667],[126,276,70,-0.02499479166666667],[126,276,71,-0.02499479166666667],[126,276,72,-0.02499479166666667],[126,276,73,-0.02499479166666667],[126,276,74,-0.02499479166666667],[126,276,75,-0.02499479166666667],[126,276,76,-0.02499479166666667],[126,276,77,-0.02499479166666667],[126,276,78,-0.02499479166666667],[126,276,79,-0.02499479166666667],[126,277,64,-0.02499479166666667],[126,277,65,-0.02499479166666667],[126,277,66,-0.02499479166666667],[126,277,67,-0.02499479166666667],[126,277,68,-0.02499479166666667],[126,277,69,-0.02499479166666667],[126,277,70,-0.02499479166666667],[126,277,71,-0.02499479166666667],[126,277,72,-0.02499479166666667],[126,277,73,-0.02499479166666667],[126,277,74,-0.02499479166666667],[126,277,75,-0.02499479166666667],[126,277,76,-0.02499479166666667],[126,277,77,-0.02499479166666667],[126,277,78,-0.02499479166666667],[126,277,79,-0.02499479166666667],[126,278,64,-0.02499479166666667],[126,278,65,-0.02499479166666667],[126,278,66,-0.02499479166666667],[126,278,67,-0.02499479166666667],[126,278,68,-0.02499479166666667],[126,278,69,-0.02499479166666667],[126,278,70,-0.02499479166666667],[126,278,71,-0.02499479166666667],[126,278,72,-0.02499479166666667],[126,278,73,-0.02499479166666667],[126,278,74,-0.02499479166666667],[126,278,75,-0.02499479166666667],[126,278,76,-0.02499479166666667],[126,278,77,-0.02499479166666667],[126,278,78,-0.02499479166666667],[126,278,79,-0.02499479166666667],[126,279,64,-0.02499479166666667],[126,279,65,-0.02499479166666667],[126,279,66,-0.02499479166666667],[126,279,67,-0.02499479166666667],[126,279,68,-0.02499479166666667],[126,279,69,-0.02499479166666667],[126,279,70,-0.02499479166666667],[126,279,71,-0.02499479166666667],[126,279,72,-0.02499479166666667],[126,279,73,-0.02499479166666667],[126,279,74,-0.02499479166666667],[126,279,75,-0.02499479166666667],[126,279,76,-0.02499479166666667],[126,279,77,-0.02499479166666667],[126,279,78,-0.02499479166666667],[126,279,79,-0.02499479166666667],[126,280,64,-0.02499479166666667],[126,280,65,-0.02499479166666667],[126,280,66,-0.02499479166666667],[126,280,67,-0.02499479166666667],[126,280,68,-0.02499479166666667],[126,280,69,-0.02499479166666667],[126,280,70,-0.02499479166666667],[126,280,71,-0.02499479166666667],[126,280,72,-0.02499479166666667],[126,280,73,-0.02499479166666667],[126,280,74,-0.02499479166666667],[126,280,75,-0.02499479166666667],[126,280,76,-0.02499479166666667],[126,280,77,-0.02499479166666667],[126,280,78,-0.02499479166666667],[126,280,79,-0.02499479166666667],[126,281,64,-0.02499479166666667],[126,281,65,-0.02499479166666667],[126,281,66,-0.02499479166666667],[126,281,67,-0.02499479166666667],[126,281,68,-0.02499479166666667],[126,281,69,-0.02499479166666667],[126,281,70,-0.02499479166666667],[126,281,71,-0.02499479166666667],[126,281,72,-0.02499479166666667],[126,281,73,-0.02499479166666667],[126,281,74,-0.02499479166666667],[126,281,75,-0.02499479166666667],[126,281,76,-0.02499479166666667],[126,281,77,-0.02499479166666667],[126,281,78,-0.02499479166666667],[126,281,79,-0.02499479166666667],[126,282,64,-0.02499479166666667],[126,282,65,-0.02499479166666667],[126,282,66,-0.02499479166666667],[126,282,67,-0.02499479166666667],[126,282,68,-0.02499479166666667],[126,282,69,-0.02499479166666667],[126,282,70,-0.02499479166666667],[126,282,71,-0.02499479166666667],[126,282,72,-0.02499479166666667],[126,282,73,-0.02499479166666667],[126,282,74,-0.02499479166666667],[126,282,75,-0.02499479166666667],[126,282,76,-0.02499479166666667],[126,282,77,-0.02499479166666667],[126,282,78,-0.02499479166666667],[126,282,79,-0.02499479166666667],[126,283,64,-0.02499479166666667],[126,283,65,-0.02499479166666667],[126,283,66,-0.02499479166666667],[126,283,67,-0.02499479166666667],[126,283,68,-0.02499479166666667],[126,283,69,-0.02499479166666667],[126,283,70,-0.02499479166666667],[126,283,71,-0.02499479166666667],[126,283,72,-0.02499479166666667],[126,283,73,-0.02499479166666667],[126,283,74,-0.02499479166666667],[126,283,75,-0.02499479166666667],[126,283,76,-0.02499479166666667],[126,283,77,-0.02499479166666667],[126,283,78,-0.02499479166666667],[126,283,79,-0.02499479166666667],[126,284,64,-0.02499479166666667],[126,284,65,-0.02499479166666667],[126,284,66,-0.02499479166666667],[126,284,67,-0.02499479166666667],[126,284,68,-0.02499479166666667],[126,284,69,-0.02499479166666667],[126,284,70,-0.02499479166666667],[126,284,71,-0.02499479166666667],[126,284,72,-0.02499479166666667],[126,284,73,-0.02499479166666667],[126,284,74,-0.02499479166666667],[126,284,75,-0.02499479166666667],[126,284,76,-0.02499479166666667],[126,284,77,-0.02499479166666667],[126,284,78,-0.02499479166666667],[126,284,79,-0.02499479166666667],[126,285,64,-0.02499479166666667],[126,285,65,-0.02499479166666667],[126,285,66,-0.02499479166666667],[126,285,67,-0.02499479166666667],[126,285,68,-0.02499479166666667],[126,285,69,-0.02499479166666667],[126,285,70,-0.02499479166666667],[126,285,71,-0.02499479166666667],[126,285,72,-0.02499479166666667],[126,285,73,-0.02499479166666667],[126,285,74,-0.02499479166666667],[126,285,75,-0.02499479166666667],[126,285,76,-0.02499479166666667],[126,285,77,-0.02499479166666667],[126,285,78,-0.02499479166666667],[126,285,79,-0.02499479166666667],[126,286,64,-0.02499479166666667],[126,286,65,-0.02499479166666667],[126,286,66,-0.02499479166666667],[126,286,67,-0.02499479166666667],[126,286,68,-0.02499479166666667],[126,286,69,-0.02499479166666667],[126,286,70,-0.02499479166666667],[126,286,71,-0.02499479166666667],[126,286,72,-0.02499479166666667],[126,286,73,-0.02499479166666667],[126,286,74,-0.02499479166666667],[126,286,75,-0.02499479166666667],[126,286,76,-0.02499479166666667],[126,286,77,-0.02499479166666667],[126,286,78,-0.02499479166666667],[126,286,79,-0.02499479166666667],[126,287,64,-0.02499479166666667],[126,287,65,-0.02499479166666667],[126,287,66,-0.02499479166666667],[126,287,67,-0.02499479166666667],[126,287,68,-0.02499479166666667],[126,287,69,-0.02499479166666667],[126,287,70,-0.02499479166666667],[126,287,71,-0.02499479166666667],[126,287,72,-0.02499479166666667],[126,287,73,-0.02499479166666667],[126,287,74,-0.02499479166666667],[126,287,75,-0.02499479166666667],[126,287,76,-0.02499479166666667],[126,287,77,-0.02499479166666667],[126,287,78,-0.02499479166666667],[126,287,79,-0.02499479166666667],[126,288,64,-0.02499479166666667],[126,288,65,-0.02499479166666667],[126,288,66,-0.02499479166666667],[126,288,67,-0.02499479166666667],[126,288,68,-0.02499479166666667],[126,288,69,-0.02499479166666667],[126,288,70,-0.02499479166666667],[126,288,71,-0.02499479166666667],[126,288,72,-0.02499479166666667],[126,288,73,-0.02499479166666667],[126,288,74,-0.02499479166666667],[126,288,75,-0.02499479166666667],[126,288,76,-0.02499479166666667],[126,288,77,-0.02499479166666667],[126,288,78,-0.02499479166666667],[126,288,79,-0.02499479166666667],[126,289,64,-0.02499479166666667],[126,289,65,-0.02499479166666667],[126,289,66,-0.02499479166666667],[126,289,67,-0.02499479166666667],[126,289,68,-0.02499479166666667],[126,289,69,-0.02499479166666667],[126,289,70,-0.02499479166666667],[126,289,71,-0.02499479166666667],[126,289,72,-0.02499479166666667],[126,289,73,-0.02499479166666667],[126,289,74,-0.02499479166666667],[126,289,75,-0.02499479166666667],[126,289,76,-0.02499479166666667],[126,289,77,-0.02499479166666667],[126,289,78,-0.02499479166666667],[126,289,79,-0.02499479166666667],[126,290,64,-0.02499479166666667],[126,290,65,-0.02499479166666667],[126,290,66,-0.02499479166666667],[126,290,67,-0.02499479166666667],[126,290,68,-0.02499479166666667],[126,290,69,-0.02499479166666667],[126,290,70,-0.02499479166666667],[126,290,71,-0.02499479166666667],[126,290,72,-0.02499479166666667],[126,290,73,-0.02499479166666667],[126,290,74,-0.02499479166666667],[126,290,75,-0.02499479166666667],[126,290,76,-0.02499479166666667],[126,290,77,-0.02499479166666667],[126,290,78,-0.02499479166666667],[126,290,79,-0.02499479166666667],[126,291,64,-0.02499479166666667],[126,291,65,-0.02499479166666667],[126,291,66,-0.02499479166666667],[126,291,67,-0.02499479166666667],[126,291,68,-0.02499479166666667],[126,291,69,-0.02499479166666667],[126,291,70,-0.02499479166666667],[126,291,71,-0.02499479166666667],[126,291,72,-0.02499479166666667],[126,291,73,-0.02499479166666667],[126,291,74,-0.02499479166666667],[126,291,75,-0.02499479166666667],[126,291,76,-0.02499479166666667],[126,291,77,-0.02499479166666667],[126,291,78,-0.02499479166666667],[126,291,79,-0.02499479166666667],[126,292,64,-0.02499479166666667],[126,292,65,-0.02499479166666667],[126,292,66,-0.02499479166666667],[126,292,67,-0.02499479166666667],[126,292,68,-0.02499479166666667],[126,292,69,-0.02499479166666667],[126,292,70,-0.02499479166666667],[126,292,71,-0.02499479166666667],[126,292,72,-0.02499479166666667],[126,292,73,-0.02499479166666667],[126,292,74,-0.02499479166666667],[126,292,75,-0.02499479166666667],[126,292,76,-0.02499479166666667],[126,292,77,-0.02499479166666667],[126,292,78,-0.02499479166666667],[126,292,79,-0.02499479166666667],[126,293,64,-0.02499479166666667],[126,293,65,-0.02499479166666667],[126,293,66,-0.02499479166666667],[126,293,67,-0.02499479166666667],[126,293,68,-0.02499479166666667],[126,293,69,-0.02499479166666667],[126,293,70,-0.02499479166666667],[126,293,71,-0.02499479166666667],[126,293,72,-0.02499479166666667],[126,293,73,-0.02499479166666667],[126,293,74,-0.02499479166666667],[126,293,75,-0.02499479166666667],[126,293,76,-0.02499479166666667],[126,293,77,-0.02499479166666667],[126,293,78,-0.02499479166666667],[126,293,79,-0.02499479166666667],[126,294,64,-0.02499479166666667],[126,294,65,-0.02499479166666667],[126,294,66,-0.02499479166666667],[126,294,67,-0.02499479166666667],[126,294,68,-0.02499479166666667],[126,294,69,-0.02499479166666667],[126,294,70,-0.02499479166666667],[126,294,71,-0.02499479166666667],[126,294,72,-0.02499479166666667],[126,294,73,-0.02499479166666667],[126,294,74,-0.02499479166666667],[126,294,75,-0.02499479166666667],[126,294,76,-0.02499479166666667],[126,294,77,-0.02499479166666667],[126,294,78,-0.02499479166666667],[126,294,79,-0.02499479166666667],[126,295,64,-0.02499479166666667],[126,295,65,-0.02499479166666667],[126,295,66,-0.02499479166666667],[126,295,67,-0.02499479166666667],[126,295,68,-0.02499479166666667],[126,295,69,-0.02499479166666667],[126,295,70,-0.02499479166666667],[126,295,71,-0.02499479166666667],[126,295,72,-0.02499479166666667],[126,295,73,-0.02499479166666667],[126,295,74,-0.02499479166666667],[126,295,75,-0.02499479166666667],[126,295,76,-0.02499479166666667],[126,295,77,-0.02499479166666667],[126,295,78,-0.02499479166666667],[126,295,79,-0.02499479166666667],[126,296,64,-0.02499479166666667],[126,296,65,-0.02499479166666667],[126,296,66,-0.02499479166666667],[126,296,67,-0.02499479166666667],[126,296,68,-0.02499479166666667],[126,296,69,-0.02499479166666667],[126,296,70,-0.02499479166666667],[126,296,71,-0.02499479166666667],[126,296,72,-0.02499479166666667],[126,296,73,-0.02499479166666667],[126,296,74,-0.02499479166666667],[126,296,75,-0.02499479166666667],[126,296,76,-0.02499479166666667],[126,296,77,-0.02499479166666667],[126,296,78,-0.02499479166666667],[126,296,79,-0.02499479166666667],[126,297,64,-0.02499479166666667],[126,297,65,-0.02499479166666667],[126,297,66,-0.02499479166666667],[126,297,67,-0.02499479166666667],[126,297,68,-0.02499479166666667],[126,297,69,-0.02499479166666667],[126,297,70,-0.02499479166666667],[126,297,71,-0.02499479166666667],[126,297,72,-0.02499479166666667],[126,297,73,-0.02499479166666667],[126,297,74,-0.02499479166666667],[126,297,75,-0.02499479166666667],[126,297,76,-0.02499479166666667],[126,297,77,-0.02499479166666667],[126,297,78,-0.02499479166666667],[126,297,79,-0.02499479166666667],[126,298,64,-0.02499479166666667],[126,298,65,-0.02499479166666667],[126,298,66,-0.02499479166666667],[126,298,67,-0.02499479166666667],[126,298,68,-0.02499479166666667],[126,298,69,-0.02499479166666667],[126,298,70,-0.02499479166666667],[126,298,71,-0.02499479166666667],[126,298,72,-0.02499479166666667],[126,298,73,-0.02499479166666667],[126,298,74,-0.02499479166666667],[126,298,75,-0.02499479166666667],[126,298,76,-0.02499479166666667],[126,298,77,-0.02499479166666667],[126,298,78,-0.02499479166666667],[126,298,79,-0.02499479166666667],[126,299,64,-0.02499479166666667],[126,299,65,-0.02499479166666667],[126,299,66,-0.02499479166666667],[126,299,67,-0.02499479166666667],[126,299,68,-0.02499479166666667],[126,299,69,-0.02499479166666667],[126,299,70,-0.02499479166666667],[126,299,71,-0.02499479166666667],[126,299,72,-0.02499479166666667],[126,299,73,-0.02499479166666667],[126,299,74,-0.02499479166666667],[126,299,75,-0.02499479166666667],[126,299,76,-0.02499479166666667],[126,299,77,-0.02499479166666667],[126,299,78,-0.02499479166666667],[126,299,79,-0.02499479166666667],[126,300,64,-0.02499479166666667],[126,300,65,-0.02499479166666667],[126,300,66,-0.02499479166666667],[126,300,67,-0.02499479166666667],[126,300,68,-0.02499479166666667],[126,300,69,-0.02499479166666667],[126,300,70,-0.02499479166666667],[126,300,71,-0.02499479166666667],[126,300,72,-0.02499479166666667],[126,300,73,-0.02499479166666667],[126,300,74,-0.02499479166666667],[126,300,75,-0.02499479166666667],[126,300,76,-0.02499479166666667],[126,300,77,-0.02499479166666667],[126,300,78,-0.02499479166666667],[126,300,79,-0.02499479166666667],[126,301,64,-0.02499479166666667],[126,301,65,-0.02499479166666667],[126,301,66,-0.02499479166666667],[126,301,67,-0.02499479166666667],[126,301,68,-0.02499479166666667],[126,301,69,-0.02499479166666667],[126,301,70,-0.02499479166666667],[126,301,71,-0.02499479166666667],[126,301,72,-0.02499479166666667],[126,301,73,-0.02499479166666667],[126,301,74,-0.02499479166666667],[126,301,75,-0.02499479166666667],[126,301,76,-0.02499479166666667],[126,301,77,-0.02499479166666667],[126,301,78,-0.02499479166666667],[126,301,79,-0.02499479166666667],[126,302,64,-0.02499479166666667],[126,302,65,-0.02499479166666667],[126,302,66,-0.02499479166666667],[126,302,67,-0.02499479166666667],[126,302,68,-0.02499479166666667],[126,302,69,-0.02499479166666667],[126,302,70,-0.02499479166666667],[126,302,71,-0.02499479166666667],[126,302,72,-0.02499479166666667],[126,302,73,-0.02499479166666667],[126,302,74,-0.02499479166666667],[126,302,75,-0.02499479166666667],[126,302,76,-0.02499479166666667],[126,302,77,-0.02499479166666667],[126,302,78,-0.02499479166666667],[126,302,79,-0.02499479166666667],[126,303,64,-0.02499479166666667],[126,303,65,-0.02499479166666667],[126,303,66,-0.02499479166666667],[126,303,67,-0.02499479166666667],[126,303,68,-0.02499479166666667],[126,303,69,-0.02499479166666667],[126,303,70,-0.02499479166666667],[126,303,71,-0.02499479166666667],[126,303,72,-0.02499479166666667],[126,303,73,-0.02499479166666667],[126,303,74,-0.02499479166666667],[126,303,75,-0.02499479166666667],[126,303,76,-0.02499479166666667],[126,303,77,-0.02499479166666667],[126,303,78,-0.02499479166666667],[126,303,79,-0.02499479166666667],[126,304,64,-0.02499479166666667],[126,304,65,-0.02499479166666667],[126,304,66,-0.02499479166666667],[126,304,67,-0.02499479166666667],[126,304,68,-0.02499479166666667],[126,304,69,-0.02499479166666667],[126,304,70,-0.02499479166666667],[126,304,71,-0.02499479166666667],[126,304,72,-0.02499479166666667],[126,304,73,-0.02499479166666667],[126,304,74,-0.02499479166666667],[126,304,75,-0.02499479166666667],[126,304,76,-0.02499479166666667],[126,304,77,-0.02499479166666667],[126,304,78,-0.02499479166666667],[126,304,79,-0.02499479166666667],[126,305,64,-0.02499479166666667],[126,305,65,-0.02499479166666667],[126,305,66,-0.02499479166666667],[126,305,67,-0.02499479166666667],[126,305,68,-0.02499479166666667],[126,305,69,-0.02499479166666667],[126,305,70,-0.02499479166666667],[126,305,71,-0.02499479166666667],[126,305,72,-0.02499479166666667],[126,305,73,-0.02499479166666667],[126,305,74,-0.02499479166666667],[126,305,75,-0.02499479166666667],[126,305,76,-0.02499479166666667],[126,305,77,-0.02499479166666667],[126,305,78,-0.02499479166666667],[126,305,79,-0.02499479166666667],[126,306,64,-0.02499479166666667],[126,306,65,-0.02499479166666667],[126,306,66,-0.02499479166666667],[126,306,67,-0.02499479166666667],[126,306,68,-0.02499479166666667],[126,306,69,-0.02499479166666667],[126,306,70,-0.02499479166666667],[126,306,71,-0.02499479166666667],[126,306,72,-0.02499479166666667],[126,306,73,-0.02499479166666667],[126,306,74,-0.02499479166666667],[126,306,75,-0.02499479166666667],[126,306,76,-0.02499479166666667],[126,306,77,-0.02499479166666667],[126,306,78,-0.02499479166666667],[126,306,79,-0.02499479166666667],[126,307,64,-0.02499479166666667],[126,307,65,-0.02499479166666667],[126,307,66,-0.02499479166666667],[126,307,67,-0.02499479166666667],[126,307,68,-0.02499479166666667],[126,307,69,-0.02499479166666667],[126,307,70,-0.02499479166666667],[126,307,71,-0.02499479166666667],[126,307,72,-0.02499479166666667],[126,307,73,-0.02499479166666667],[126,307,74,-0.02499479166666667],[126,307,75,-0.02499479166666667],[126,307,76,-0.02499479166666667],[126,307,77,-0.02499479166666667],[126,307,78,-0.02499479166666667],[126,307,79,-0.02499479166666667],[126,308,64,-0.02499479166666667],[126,308,65,-0.02499479166666667],[126,308,66,-0.02499479166666667],[126,308,67,-0.02499479166666667],[126,308,68,-0.02499479166666667],[126,308,69,-0.02499479166666667],[126,308,70,-0.02499479166666667],[126,308,71,-0.02499479166666667],[126,308,72,-0.02499479166666667],[126,308,73,-0.02499479166666667],[126,308,74,-0.02499479166666667],[126,308,75,-0.02499479166666667],[126,308,76,-0.02499479166666667],[126,308,77,-0.02499479166666667],[126,308,78,-0.02499479166666667],[126,308,79,-0.02499479166666667],[126,309,64,-0.02499479166666667],[126,309,65,-0.02499479166666667],[126,309,66,-0.02499479166666667],[126,309,67,-0.02499479166666667],[126,309,68,-0.02499479166666667],[126,309,69,-0.02499479166666667],[126,309,70,-0.02499479166666667],[126,309,71,-0.02499479166666667],[126,309,72,-0.02499479166666667],[126,309,73,-0.02499479166666667],[126,309,74,-0.02499479166666667],[126,309,75,-0.02499479166666667],[126,309,76,-0.02499479166666667],[126,309,77,-0.02499479166666667],[126,309,78,-0.02499479166666667],[126,309,79,-0.02499479166666667],[126,310,64,-0.02499479166666667],[126,310,65,-0.02499479166666667],[126,310,66,-0.02499479166666667],[126,310,67,-0.02499479166666667],[126,310,68,-0.02499479166666667],[126,310,69,-0.02499479166666667],[126,310,70,-0.02499479166666667],[126,310,71,-0.02499479166666667],[126,310,72,-0.02499479166666667],[126,310,73,-0.02499479166666667],[126,310,74,-0.02499479166666667],[126,310,75,-0.02499479166666667],[126,310,76,-0.02499479166666667],[126,310,77,-0.02499479166666667],[126,310,78,-0.02499479166666667],[126,310,79,-0.02499479166666667],[126,311,64,-0.02499479166666667],[126,311,65,-0.02499479166666667],[126,311,66,-0.02499479166666667],[126,311,67,-0.02499479166666667],[126,311,68,-0.02499479166666667],[126,311,69,-0.02499479166666667],[126,311,70,-0.02499479166666667],[126,311,71,-0.02499479166666667],[126,311,72,-0.02499479166666667],[126,311,73,-0.02499479166666667],[126,311,74,-0.02499479166666667],[126,311,75,-0.02499479166666667],[126,311,76,-0.02499479166666667],[126,311,77,-0.02499479166666667],[126,311,78,-0.02499479166666667],[126,311,79,-0.02499479166666667],[126,312,64,-0.02499479166666667],[126,312,65,-0.02499479166666667],[126,312,66,-0.02499479166666667],[126,312,67,-0.02499479166666667],[126,312,68,-0.02499479166666667],[126,312,69,-0.02499479166666667],[126,312,70,-0.02499479166666667],[126,312,71,-0.02499479166666667],[126,312,72,-0.02499479166666667],[126,312,73,-0.02499479166666667],[126,312,74,-0.02499479166666667],[126,312,75,-0.02499479166666667],[126,312,76,-0.02499479166666667],[126,312,77,-0.02499479166666667],[126,312,78,-0.02499479166666667],[126,312,79,-0.02499479166666667],[126,313,64,-0.02499479166666667],[126,313,65,-0.02499479166666667],[126,313,66,-0.02499479166666667],[126,313,67,-0.02499479166666667],[126,313,68,-0.02499479166666667],[126,313,69,-0.02499479166666667],[126,313,70,-0.02499479166666667],[126,313,71,-0.02499479166666667],[126,313,72,-0.02499479166666667],[126,313,73,-0.02499479166666667],[126,313,74,-0.02499479166666667],[126,313,75,-0.02499479166666667],[126,313,76,-0.02499479166666667],[126,313,77,-0.02499479166666667],[126,313,78,-0.02499479166666667],[126,313,79,-0.02499479166666667],[126,314,64,-0.02499479166666667],[126,314,65,-0.02499479166666667],[126,314,66,-0.02499479166666667],[126,314,67,-0.02499479166666667],[126,314,68,-0.02499479166666667],[126,314,69,-0.02499479166666667],[126,314,70,-0.02499479166666667],[126,314,71,-0.02499479166666667],[126,314,72,-0.02499479166666667],[126,314,73,-0.02499479166666667],[126,314,74,-0.02499479166666667],[126,314,75,-0.02499479166666667],[126,314,76,-0.02499479166666667],[126,314,77,-0.02499479166666667],[126,314,78,-0.02499479166666667],[126,314,79,-0.02499479166666667],[126,315,64,-0.02499479166666667],[126,315,65,-0.02499479166666667],[126,315,66,-0.02499479166666667],[126,315,67,-0.02499479166666667],[126,315,68,-0.02499479166666667],[126,315,69,-0.02499479166666667],[126,315,70,-0.02499479166666667],[126,315,71,-0.02499479166666667],[126,315,72,-0.02499479166666667],[126,315,73,-0.02499479166666667],[126,315,74,-0.02499479166666667],[126,315,75,-0.02499479166666667],[126,315,76,-0.02499479166666667],[126,315,77,-0.02499479166666667],[126,315,78,-0.02499479166666667],[126,315,79,-0.02499479166666667],[126,316,64,-0.02499479166666667],[126,316,65,-0.02499479166666667],[126,316,66,-0.02499479166666667],[126,316,67,-0.02499479166666667],[126,316,68,-0.02499479166666667],[126,316,69,-0.02499479166666667],[126,316,70,-0.02499479166666667],[126,316,71,-0.02499479166666667],[126,316,72,-0.02499479166666667],[126,316,73,-0.02499479166666667],[126,316,74,-0.02499479166666667],[126,316,75,-0.02499479166666667],[126,316,76,-0.02499479166666667],[126,316,77,-0.02499479166666667],[126,316,78,-0.02499479166666667],[126,316,79,-0.02499479166666667],[126,317,64,-0.02499479166666667],[126,317,65,-0.02499479166666667],[126,317,66,-0.02499479166666667],[126,317,67,-0.02499479166666667],[126,317,68,-0.02499479166666667],[126,317,69,-0.02499479166666667],[126,317,70,-0.02499479166666667],[126,317,71,-0.02499479166666667],[126,317,72,-0.02499479166666667],[126,317,73,-0.02499479166666667],[126,317,74,-0.02499479166666667],[126,317,75,-0.02499479166666667],[126,317,76,-0.02499479166666667],[126,317,77,-0.02499479166666667],[126,317,78,-0.02499479166666667],[126,317,79,-0.02499479166666667],[126,318,64,-0.02499479166666667],[126,318,65,-0.02499479166666667],[126,318,66,-0.02499479166666667],[126,318,67,-0.02499479166666667],[126,318,68,-0.02499479166666667],[126,318,69,-0.02499479166666667],[126,318,70,-0.02499479166666667],[126,318,71,-0.02499479166666667],[126,318,72,-0.02499479166666667],[126,318,73,-0.02499479166666667],[126,318,74,-0.02499479166666667],[126,318,75,-0.02499479166666667],[126,318,76,-0.02499479166666667],[126,318,77,-0.02499479166666667],[126,318,78,-0.02499479166666667],[126,318,79,-0.02499479166666667],[126,319,64,-0.02499479166666667],[126,319,65,-0.02499479166666667],[126,319,66,-0.02499479166666667],[126,319,67,-0.02499479166666667],[126,319,68,-0.02499479166666667],[126,319,69,-0.02499479166666667],[126,319,70,-0.02499479166666667],[126,319,71,-0.02499479166666667],[126,319,72,-0.02499479166666667],[126,319,73,-0.02499479166666667],[126,319,74,-0.02499479166666667],[126,319,75,-0.02499479166666667],[126,319,76,-0.02499479166666667],[126,319,77,-0.02499479166666667],[126,319,78,-0.02499479166666667],[126,319,79,-0.02499479166666667],[127,-64,64,0.037482421875],[127,-64,65,0.037482421875],[127,-64,66,0.037482421875],[127,-64,67,0.037482421875],[127,-64,68,0.037482421875],[127,-64,69,0.037482421875],[127,-64,70,0.037482421875],[127,-64,71,0.037482421875],[127,-64,72,0.037482421875],[127,-64,73,0.037482421875],[127,-64,74,0.037482421875],[127,-64,75,0.037482421875],[127,-64,76,0.037482421875],[127,-64,77,0.037482421875],[127,-64,78,0.037482421875],[127,-64,79,0.037482421875],[127,-63,64,0.04051797434243856],[127,-63,65,0.04060131374617081],[127,-63,66,0.04068601690651658],[127,-63,67,0.040771910684549655],[127,-63,68,0.04085892942344055],[127,-63,69,0.04094715372188144],[127,-63,70,0.041036663304790603],[127,-63,71,0.041127517018462276],[127,-63,72,0.041219738325820564],[127,-63,73,0.04131330299208327],[127,-63,74,0.04140812902474148],[127,-63,75,0.04150406892994979],[127,-63,76,0.041600904345226314],[127,-63,77,0.04169834310580805],[127,-63,78,0.04179601879912757],[127,-63,79,0.04189349285871803],[127,-62,64,0.0436438346711392],[127,-62,65,0.04381255555024894],[127,-62,66,0.04398408184726663],[127,-62,67,0.044158068930031956],[127,-62,68,0.04433435980951957],[127,-62,69,0.04451307736175418],[127,-62,70,0.04469434902128446],[127,-62,71,0.04487826667738958],[127,-62,72,0.04506485718688152],[127,-62,73,0.04525405728351119],[127,-62,74,0.045445693010205616],[127,-62,75,0.04563946379669301],[127,-62,76,0.045834931300622196],[127,-62,77,0.04603151312511574],[127,-62,78,0.04622848151987373],[127,-62,79,0.046424967166573135],[127,-61,64,0.046867564248908825],[127,-61,65,0.04712348994278996],[127,-61,66,0.047383678378025436],[127,-61,67,0.04764762883614652],[127,-61,68,0.04791506668029868],[127,-61,69,0.048186107021444095],[127,-61,70,0.04846088409785146],[127,-61,71,0.048739491178526516],[127,-61,72,0.049021935475430836],[127,-61,73,0.04930809965658856],[127,-61,74,0.049597710146646115],[127,-61,75,0.04989031239589765],[127,-61,76,0.050185253292054],[127,-61,77,0.05048167088121275],[127,-61,78,0.050778491555683446],[127,-61,79,0.05107443485669981],[127,-60,64,0.05019552670575402],[127,-60,65,0.050540232218176155],[127,-60,66,0.05089061137642165],[127,-60,67,0.0512460342896614],[127,-60,68,0.05160608212920793],[127,-60,69,0.05197080282955125],[127,-60,70,0.052340289760245344],[127,-60,71,0.05271460188668661],[127,-60,72,0.05309370231800222],[127,-60,73,0.05347740564277759],[127,-60,74,0.05386533429723198],[127,-60,75,0.05425688420301942],[127,-60,76,0.054651199902807736],[127,-60,77,0.05504715941130568],[127,-60,78,0.055443368987606156],[127,-60,79,0.05583816802182562],[127,-59,64,0.05363260769578768],[127,-59,65,0.05406738489312079],[127,-59,66,0.05450914220781369],[127,-59,67,0.05495715547892168],[127,-59,68,0.05541083501457261],[127,-59,69,0.05587009564892519],[127,-59,70,0.056334937977475276],[127,-59,71,0.056805349091453405],[127,-59,72,0.05728122384791585],[127,-59,73,0.05776229708539544],[127,-59,74,0.058248087085275055],[127,-59,75,0.05873785056975601],[127,-59,76,0.0592305495160035],[127,-59,77,0.05972483005291962],[127,-59,78,0.06021901369220446],[127,-59,79,0.0607111011292191],[127,-58,64,0.05718198245578756],[127,-58,65,0.05770779967191103],[127,-58,66,0.058241749289168414],[127,-58,67,0.05878305082171106],[127,-58,68,0.05933091656527819],[127,-58,69,0.05988505908534362],[127,-58,70,0.06044533293586822],[127,-58,71,0.061011616247925345],[127,-58,72,0.06158371365408734],[127,-58,73,0.062161272279813364],[127,-58,74,0.0627437111550036],[127,-58,75,0.06333016438777349],[127,-58,76,0.06391943842898644],[127,-58,77,0.06450998374034336],[127,-58,78,0.06509988116108281],[127,-58,79,0.06568684324896763],[127,-57,64,0.060844942551906145],[127,-57,65,0.061462398152596985],[127,-57,66,0.06208894719680118],[127,-57,67,0.06272378731892042],[127,-57,68,0.06336590421712851],[127,-57,69,0.06401473934414978],[127,-57,70,0.06466994970579173],[127,-57,71,0.06533127042022811],[127,-57,72,0.06599839806694249],[127,-57,73,0.0666708891870153],[127,-57,74,0.06734807433847559],[127,-57,75,0.06802898809753899],[127,-57,76,0.06871231538086683],[127,-57,77,0.06939635444569112],[127,-57,78,0.07007899690400152],[127,-57,79,0.07075772506442417],[127,-56,64,0.06462052366034139],[127,-56,65,0.06532980590599807],[127,-56,66,0.06604892948880965],[127,-56,67,0.06677709429721555],[127,-56,68,0.06751302860612136],[127,-56,69,0.06825583813179663],[127,-56,70,0.06900493582063706],[127,-56,71,0.0697598852265136],[127,-56,72,0.07052026291671445],[127,-56,73,0.07128553808062231],[127,-56,74,0.0720549697931505],[127,-56,75,0.07282752237029348],[127,-56,76,0.07360179923634189],[127,-56,77,0.07437599570153623],[127,-56,78,0.07514787102544417],[127,-56,79,0.07591474011564155],[127,-55,64,0.06850364189059699],[127,-55,65,0.06930458490630421],[127,-55,66,0.07011588361635783],[127,-55,67,0.07093675776694688],[127,-55,68,0.07176565086908424],[127,-55,69,0.07260127742442726],[127,-55,70,0.07344276760135915],[127,-55,71,0.07428949129002736],[127,-55,72,0.07514089835292237],[127,-55,73,0.07599637808625777],[127,-55,74,0.07685513838989434],[127,-55,75,0.07771610512710284],[127,-55,76,0.07857784213558495],[127,-55,77,0.07943849232798623],[127,-55,78,0.0802957402938898],[127,-55,79,0.08114679678650957],[127,-54,64,0.07248616106755572],[127,-54,65,0.073378295609789],[127,-54,66,0.07428104984082562],[127,-54,67,0.0751936779222082],[127,-54,68,0.07611431957014549],[127,-54,69,0.07704125578600624],[127,-54,70,0.07797330531599797],[127,-54,71,0.07890962948133785],[127,-54,72,0.0798495494506176],[127,-54,73,0.08079238466654157],[127,-54,74,0.08173731296721888],[127,-54,75,0.08268325292392024],[127,-54,76,0.0836287688953032],[127,-54,77,0.0845719992726049],[127,-54,78,0.08551060836141033],[127,-54,79,0.08644176231388147],[127,-53,64,0.0765582961791152],[127,-53,65,0.07754086870389194],[127,-53,66,0.07853406798432744],[127,-53,67,0.07953719401084697],[127,-53,68,0.0805480739903881],[127,-53,69,0.081564529261011],[127,-53,70,0.08258505045361147],[127,-53,71,0.08360858350155832],[127,-53,72,0.0846343236131471],[127,-53,73,0.08566153225415585],[127,-53,74,0.08668937771907685],[127,-53,75,0.0877167998494251],[127,-53,76,0.08874239943361166],[127,-53,77,0.08976435279514117],[127,-53,78,0.09078035204449306],[127,-53,79,0.09178757143551826],[127,-52,64,0.08070925819003877],[127,-52,65,0.08178124961140124],[127,-52,66,0.08286362285438854],[127,-52,67,0.0839557319142997],[127,-52,68,0.08505509455093559],[127,-52,69,0.08615906461590185],[127,-52,70,0.0872658012450985],[127,-52,71,0.08837403680746155],[127,-52,72,0.08948284784177041],[127,-52,73,0.09059145074743329],[127,-52,74,0.09169902284139594],[127,-52,75,0.092804549371129],[127,-52,76,0.09390669704773964],[127,-52,77,0.09500371463339856],[127,-52,78,0.09609336108351847],[127,-52,79,0.09717286170696249],[127,-51,64,0.08467681034152723],[127,-51,65,0.08608807128493778],[127,-51,66,0.08725811795580288],[127,-51,67,0.08843747968590178],[127,-51,68,0.08962338056963982],[127,-51,69,0.09081271895076283],[127,-51,70,0.09200333321109445],[127,-51,71,0.093193752804787],[127,-51,72,0.09438294706940602],[127,-51,73,0.09557010039960499],[127,-51,74,0.096754414423544],[127,-51,75,0.09793493779786004],[127,-51,76,0.09911042420908854],[127,-51,77,0.10027921913755179],[127,-51,78,0.1014391759037738],[127,-51,79,0.10258760147790127],[127,-50,64,0.08860853652647345],[127,-50,65,0.0901631185692996],[127,-50,66,0.09170639033233749],[127,-50,67,0.09297110354579732],[127,-50,68,0.09424146747138798],[127,-50,69,0.09551395740493623],[127,-50,70,0.0967861160636186],[127,-50,71,0.09805628925585709],[127,-50,72,0.09932335415794123],[127,-50,73,0.10058647540484142],[127,-50,74,0.10184488965713451],[127,-50,75,0.10309771927933385],[127,-50,76,0.10434381573499464],[127,-50,77,0.10558163327013753],[127,-50,78,0.10680913341853739],[127,-50,79,0.10802372082061842],[127,-49,64,0.09259956310670378],[127,-49,65,0.094260151012541],[127,-49,66,0.09591476881947682],[127,-49,67,0.09754558620023751],[127,-49,68,0.09889838480669112],[127,-49,69,0.10025193328403434],[127,-49,70,0.10160351541783559],[127,-49,71,0.1029513181184366],[127,-49,72,0.10429414158594733],[127,-49,73,0.10563113854988715],[127,-49,74,0.10696158326002943],[127,-49,75,0.10828467087599002],[127,-49,76,0.10959934787117541],[127,-49,77,0.11090417403101697],[127,-49,78,0.11219721658554534],[127,-49,79,0.11347597697254128],[127,-48,64,0.09665591690508811],[127,-48,65,0.09841935122011582],[127,-48,66,0.10017840654913518],[127,-48,67,0.10192955757200203],[127,-48,68,0.10358136076544792],[127,-48,69,0.10501455520813344],[127,-48,70,0.10644422030475129],[127,-48,71,0.1078684030053506],[127,-48,72,0.10928583039800552],[127,-48,73,0.11069563561292407],[127,-48,74,0.11209711445921779],[127,-48,75,0.1134895134449723],[127,-48,76,0.11487184979739873],[127,-48,77,0.11624276406244749],[127,-48,78,0.11760040582174681],[127,-48,79,0.11894235301921148],[127,-47,64,0.1007834216711156],[127,-47,65,0.10264552432823357],[127,-47,66,0.10450486830269923],[127,-47,67,0.1063577040641019],[127,-47,68,0.10820309561701202],[127,-47,69,0.1097899408238838],[127,-47,70,0.11129727684724154],[127,-47,71,0.11279760711646797],[127,-47,72,0.11428957471482375],[127,-47,73,0.1157722669460895],[127,-47,74,0.11724496408941164],[127,-47,75,0.11870692010593605],[127,-47,76,0.12015717590436352],[127,-47,77,0.12159440573368727],[127,-47,78,0.12301679722852257],[127,-47,79,0.12442196558564678],[127,-46,64,0.10498617103441289],[127,-46,65,0.10694176748162358],[127,-46,66,0.10889615431248209],[127,-46,67,0.11084539161132263],[127,-46,68,0.11278842399295981],[127,-46,69,0.1145672275992279],[127,-46,70,0.1161527216696726],[127,-46,71,0.11772994606357129],[127,-46,72,0.11929743401530109],[127,-46,73,0.1208541826165175],[127,-46,74,0.12239939931198507],[127,-46,75,0.1239322803899517],[127,-46,76,0.12545182205254782],[127,-46,77,0.126956664611662],[127,-46,78,0.1284449703119802],[127,-46,79,0.12991433523535087],[127,-45,64,0.10926618452949004],[127,-45,65,0.11130915538535176],[127,-45,66,0.11335229965575741],[127,-45,67,0.11539152919994412],[127,-45,68,0.11742563559295423],[127,-45,69,0.11933678553961645],[127,-45,70,0.1210017489814004],[127,-45,71,0.12265750603993496],[127,-45,72,0.12430243968391166],[127,-45,73,0.12593539533718512],[127,-45,74,0.12755543174304376],[127,-45,75,0.12916160323821615],[127,-45,76,0.13075277398779941],[127,-45,77,0.13232746469155598],[127,-45,78,0.13388373222787495],[127,-45,79,0.13541908265411665],[127,-44,64,0.1136231429781427],[127,-44,65,0.11574650153453178],[127,-44,66,0.11787116484440016],[127,-44,67,0.11999294650295066],[127,-44,68,0.12211045634959586],[127,-44,69,0.12409037709042603],[127,-44,70,0.12583683118989897],[127,-44,71,0.1275735223364143],[127,-44,72,0.12929862910535803],[127,-44,73,0.13101076841797799],[127,-44,74,0.13270875822033049],[127,-44,75,0.13439141026923454],[127,-44,76,0.13605735352941206],[127,-44,77,0.13770488864514605],[127,-44,78,0.13933187390596263],[127,-44,79,0.1409356430790566],[127,-43,64,0.11805420184129686],[127,-43,65,0.1202501937770836],[127,-43,66,0.12244829661845884],[127,-43,67,0.12464428254745412],[127,-43,68,0.1268365578001141],[127,-43,69,0.12882126536706312],[127,-43,70,0.1306517941220406],[127,-43,71,0.1324724192567198],[127,-43,72,0.13428104838034766],[127,-43,73,0.13607597988677447],[127,-43,74,0.13785568549503363],[127,-43,75,0.13961862080051662],[127,-43,76,0.14136306428163947],[127,-43,77,0.14308698516680324],[127,-43,78,0.14478794052388672],[127,-43,79,0.1464630018896145],[127,-42,64,0.12255388137639311],[127,-42,65,0.12481410306438427],[127,-42,66,0.12707685780797595],[127,-42,67,0.12933793884350656],[127,-42,68,0.13159553552002787],[127,-42,69,0.13352427172360595],[127,-42,70,0.1354418478133337],[127,-42,71,0.13734981237741153],[127,-42,72,0.13924572464021676],[127,-42,73,0.14112746384439853],[127,-42,74,0.14299304005766483],[127,-42,75,0.14484043004148095],[127,-42,76,0.14666743855592163],[127,-42,77,0.14847158543678216],[127,-42,78,0.15025001874104393],[127,-42,79,0.15199945421519848],[127,-41,64,0.12711403261644785],[127,-41,65,0.1294295644040214],[127,-41,66,0.13174762526586986],[127,-41,67,0.13406409597146865],[127,-41,68,0.13618237967694952],[127,-41,69,0.13819578352885037],[127,-41,70,0.14020357369783298],[127,-41,71,0.14220247398582966],[127,-41,72,0.14418960884008303],[127,-41,73,0.14616233003258974],[127,-41,74,0.14811806423438775],[127,-41,75,0.15005418181147123],[127,-41,76,0.15196788713585105],[127,-41,77,0.1538561306707832],[127,-41,78,0.15571554305348534],[127,-41,79,0.1575423913621999],[127,-40,64,0.13172387832260685],[127,-40,65,0.13408542914881638],[127,-40,66,0.1364490549792653],[127,-40,67,0.13862306017582404],[127,-40,68,0.14072843651289338],[127,-40,69,0.14283371286514285],[127,-40,70,0.1449348688962968],[127,-40,71,0.14702826241235697],[127,-40,72,0.14911048981111158],[127,-40,73,0.15117826251150845],[127,-40,74,0.15322829962206827],[127,-40,75,0.1552572370805533],[127,-40,76,0.15726155346928733],[127,-40,77,0.15923751268195438],[127,-40,78,0.1611811235886452],[127,-40,79,0.16308811681693905],[127,-39,64,0.1324538292442811],[127,-39,65,0.13466183373147778],[127,-39,66,0.13675841401703107],[127,-39,67,0.13886452431024301],[127,-39,68,0.14097689287380472],[127,-39,69,0.14309129765480094],[127,-39,70,0.14520369554518814],[127,-39,71,0.14731016482474563],[127,-39,72,0.14940683249025805],[127,-39,73,0.15148981170006676],[127,-39,74,0.1535551494787072],[127,-39,75,0.15559878480857622],[127,-39,76,0.15761651721734443],[127,-39,77,0.15960398595141534],[127,-39,78,0.16155665980749914],[127,-39,79,0.16346983767678766],[127,-38,64,0.13275756006550352],[127,-38,65,0.13484514933478098],[127,-38,66,0.13694595935876153],[127,-38,67,0.13905825748201525],[127,-38,68,0.14117893873639828],[127,-38,69,0.14330404341043795],[127,-38,70,0.14542946036357032],[127,-38,71,0.14755093529588198],[127,-38,72,0.1496640680787998],[127,-38,73,0.15176431401028992],[127,-38,74,0.1538469890228624],[127,-38,75,0.1559072788655623],[127,-38,76,0.15794025227434386],[127,-38,77,0.15994087813899363],[127,-38,78,0.16190404666926747],[127,-38,79,0.16382459455838572],[127,-37,64,0.13289838991567496],[127,-37,65,0.13498791606190244],[127,-37,66,0.137093193640242],[127,-37,67,0.13921217895888044],[127,-37,68,0.14134189087030435],[127,-37,69,0.14347858284376538],[127,-37,70,0.14561802382447075],[127,-37,71,0.1477555743862394],[127,-37,72,0.14988625590265267],[127,-37,73,0.15200481720603376],[127,-37,74,0.15410579864596968],[127,-37,75,0.156183593464198],[127,-37,76,0.15823250640932626],[127,-37,77,0.16024680952287892],[127,-37,78,0.15644606785268106],[127,-37,79,0.15282083190260165],[127,-36,64,0.13187489150927562],[127,-36,65,0.13240372477401227],[127,-36,66,0.13496591475611977],[127,-36,67,0.1386250678633396],[127,-36,68,0.14091407281550758],[127,-36,69,0.14362135977084667],[127,-36,70,0.14577498903470854],[127,-36,71,0.14792875504917663],[127,-36,72,0.15007705693122747],[127,-36,73,0.15221390067058835],[127,-36,74,0.1543330222230628],[127,-36,75,0.1544749215752787],[127,-36,76,0.15202208215078103],[127,-36,77,0.14885318802162473],[127,-36,78,0.144247436767361],[127,-36,79,0.1409432758445193],[127,-35,64,0.12681460855082266],[127,-35,65,0.12640619736540393],[127,-35,66,0.1265773354365932],[127,-35,67,0.1292292396634522],[127,-35,68,0.13149231758670848],[127,-35,69,0.1384879737269573],[127,-35,70,0.14151526802525916],[127,-35,71,0.14151462044888602],[127,-35,72,0.1422566087607401],[127,-35,73,0.1449319781342461],[127,-35,74,0.14695935459537315],[127,-35,75,0.14572404431039135],[127,-35,76,0.14296471096985583],[127,-35,77,0.13895597636768828],[127,-35,78,0.1343522453192596],[127,-35,79,0.13116062491354769],[127,-34,64,0.1236983448945061],[127,-34,65,0.12439746904821915],[127,-34,66,0.12242925706325576],[127,-34,67,0.12424401887913546],[127,-34,68,0.1263859098063633],[127,-34,69,0.1334503237620878],[127,-34,70,0.13545592863954864],[127,-34,71,0.13606182742898612],[127,-34,72,0.1361957681752417],[127,-34,73,0.13940159957817713],[127,-34,74,0.14293071170471883],[127,-34,75,0.13993124280370522],[127,-34,76,0.1369818478714364],[127,-34,77,0.13389310554508116],[127,-34,78,0.1293735568256575],[127,-34,79,0.12582406472227817],[127,-33,64,0.1207896437288449],[127,-33,65,0.12262432317982333],[127,-33,66,0.12078824259711562],[127,-33,67,0.1235844783663587],[127,-33,68,0.12535472331566958],[127,-33,69,0.12994359092172184],[127,-33,70,0.13157746034679682],[127,-33,71,0.13410813872354507],[127,-33,72,0.13380700779689142],[127,-33,73,0.13490010772406374],[127,-33,74,0.13911554086502695],[127,-33,75,0.13695021485477965],[127,-33,76,0.1342146786966261],[127,-33,77,0.13239075185021132],[127,-33,78,0.12798186641030748],[127,-33,79,0.12435683826709822],[127,-32,64,0.11958820098930789],[127,-32,65,0.12157342970200305],[127,-32,66,0.12176680575457033],[127,-32,67,0.12322136894772105],[127,-32,68,0.12552051516592824],[127,-32,69,0.12803454350152757],[127,-32,70,0.12946672891020136],[127,-32,71,0.13382224663352696],[127,-32,72,0.13511314250564174],[127,-32,73,0.13261254441738426],[127,-32,74,0.13507560669987403],[127,-32,75,0.13454297564956166],[127,-32,76,0.13374969254276567],[127,-32,77,0.13253030033801397],[127,-32,78,0.1281809344171808],[127,-32,79,0.1249415437113775],[127,-31,64,0.12169746984704498],[127,-31,65,0.12242492596564257],[127,-31,66,0.12490685455526301],[127,-31,67,0.1254698071326929],[127,-31,68,0.12863912838693284],[127,-31,69,0.12990588925620014],[127,-31,70,0.1307294091706269],[127,-31,71,0.13321455918236427],[127,-31,72,0.13745905295912286],[127,-31,73,0.1350637167239514],[127,-31,74,0.13487967583561072],[127,-31,75,0.1342660672335729],[127,-31,76,0.13557959190398866],[127,-31,77,0.13318415901052838],[127,-31,78,0.1294728336143597],[127,-31,79,0.12699812133760036],[127,-30,64,0.12561537317002466],[127,-30,65,0.12653259117976898],[127,-30,66,0.12960334707887033],[127,-30,67,0.13178267322242274],[127,-30,68,0.13489838662599726],[127,-30,69,0.13511747360109228],[127,-30,70,0.1352362510696762],[127,-30,71,0.13450489359118098],[127,-30,72,0.13907249389533974],[127,-30,73,0.1400558775854427],[127,-30,74,0.13976969911027906],[127,-30,75,0.13768358002685244],[127,-30,76,0.13910759018553692],[127,-30,77,0.13547754066558543],[127,-30,78,0.13200890667995022],[127,-30,79,0.13004899340449308],[127,-29,64,0.12992338067264877],[127,-29,65,0.13195692329091707],[127,-29,66,0.13451428815809374],[127,-29,67,0.13894365713951304],[127,-29,68,0.14133282118323046],[127,-29,69,0.1389086315147915],[127,-29,70,0.1392930368481379],[127,-29,71,0.13944245083757914],[127,-29,72,0.14151605011757906],[127,-29,73,0.14472104035710998],[127,-29,74,0.14617434583965416],[127,-29,75,0.1436141229532921],[127,-29,76,0.144669123395951],[127,-29,77,0.14035831880210897],[127,-29,78,0.13588585838869696],[127,-29,79,0.1334358805285919],[127,-28,64,0.13369992603569245],[127,-28,65,0.1357268431554591],[127,-28,66,0.1377923065983684],[127,-28,67,0.13989185490481076],[127,-28,68,0.1420210416374499],[127,-28,69,0.1425713748024427],[127,-28,70,0.14361570689081268],[127,-28,71,0.14618407511211606],[127,-28,72,0.14556385408873615],[127,-28,73,0.14709042183893106],[127,-28,74,0.1505884872128313],[127,-28,75,0.1496199346330902],[127,-28,76,0.15020841814277278],[127,-28,77,0.1462559199200537],[127,-28,78,0.14062019862818045],[127,-28,79,0.138051670264988],[127,-27,64,0.1338255095992461],[127,-27,65,0.1358288024409364],[127,-27,66,0.1378718679683768],[127,-27,67,0.13995012746684607],[127,-27,68,0.1415829814450945],[127,-27,69,0.14299020769610957],[127,-27,70,0.14438935764580452],[127,-27,71,0.1457850852305113],[127,-27,72,0.147182767221302],[127,-27,73,0.14858799126334835],[127,-27,74,0.1500061034691567],[127,-27,75,0.1514418161387882],[127,-27,76,0.15289887612222988],[127,-27,77,0.15021776666226555],[127,-27,78,0.14480566788869215],[127,-27,79,0.1430750097764525],[127,-26,64,0.13395488175428966],[127,-26,65,0.13593025332131248],[127,-26,66,0.13794619071090278],[127,-26,67,0.13960932441548293],[127,-26,68,0.1409633444379391],[127,-26,69,0.14230770087372455],[127,-26,70,0.1436464733546763],[127,-26,71,0.14498498238100224],[127,-26,72,0.14632919774694578],[127,-26,73,0.14768520944596655],[127,-26,74,0.14905876169065732],[127,-26,75,0.15045485063172154],[127,-26,76,0.1518773862978646],[127,-26,77,0.15332891919799152],[127,-26,78,0.14967594337280332],[127,-26,79,0.14732906966705606],[127,-25,64,0.13407887088392303],[127,-25,65,0.13602203838841984],[127,-25,66,0.1376701506560349],[127,-25,67,0.1389738055556373],[127,-25,68,0.1402670066316815],[127,-25,69,0.14155269022084158],[127,-25,70,0.14283560428879002],[127,-25,71,0.1441216646806284],[127,-25,72,0.1454173487064033],[127,-25,73,0.14672915426062236],[127,-25,74,0.14806312511894465],[127,-25,75,0.149424443001701],[127,-25,76,0.15081708692601703],[127,-25,77,0.1522435602798446],[127,-25,78,0.15370468593954886],[127,-25,79,0.15057051585797476],[127,-24,64,0.13418697932368595],[127,-24,65,0.13576874658554056],[127,-24,66,0.1370246678432639],[127,-24,67,0.1382696138573394],[127,-24,68,0.13950592101573536],[127,-24,69,0.1407371922569069],[127,-24,70,0.1419687720484279],[127,-24,71,0.14320708566989615],[127,-24,72,0.14445902317956855],[127,-24,73,0.14573139149220704],[127,-24,74,0.1470304352144209],[127,-24,75,0.1483614268266523],[127,-24,76,0.1497283267267816],[127,-24,77,0.15113351355331647],[127,-24,78,0.15257758508421307],[127,-24,79,0.1535171968624115],[127,-23,64,0.13390765020578893],[127,-23,65,0.1351179431886703],[127,-23,66,0.13631699243375503],[127,-23,67,0.13750678871198133],[127,-23,68,0.13869014727779055],[127,-23,69,0.1398712885108399],[127,-23,70,0.1410560836391142],[127,-23,71,0.14225138280188762],[127,-23,72,0.14346439472658506],[127,-23,73,0.1447021366098794],[127,-23,74,0.14597095484738418],[127,-23,75,0.14727611719448877],[127,-23,76,0.14862147685959676],[127,-23,77,0.15000920892500574],[127,-23,78,0.15143961935853564],[127,-23,79,0.15291102672241813],[127,-22,64,0.13325660160959854],[127,-22,65,0.13441117784476858],[127,-22,66,0.135556400966949],[127,-22,67,0.1366944855415524],[127,-22,68,0.1378287046767988],[127,-22,69,0.13896385308948414],[127,-22,70,0.14010626467883422],[127,-22,71,0.14126313500733237],[127,-22,72,0.1424419019615509],[127,-22,73,0.1436496982360847],[127,-22,74,0.1448928762779044],[127,-22,75,0.14617660626093715],[127,-22,76,0.14750454757151552],[127,-22,77,0.14887859416998298],[127,-22,78,0.15029869405155583],[127,-22,79,0.1517627428628679],[127,-21,64,0.13255630282515013],[127,-21,65,0.13365760363562498],[127,-21,66,0.13475179531019624],[127,-21,67,0.13584131909276378],[127,-21,68,0.13692988881187834],[127,-21,69,0.13802283764062007],[127,-21,70,0.13912690603198014],[127,-21,71,0.1402495638595765],[127,-21,72,0.14139839702229742],[127,-21,73,0.14258056704932856],[127,-21,74,0.1438023443308358],[127,-21,75,0.14506871552542802],[127,-21,76,0.14638306559785794],[127,-21,77,0.1477469348155367],[127,-21,78,0.14915985088049605],[127,-21,79,0.1506192361974679],[127,-20,64,0.13181630235993838],[127,-20,65,0.1328664023263336],[127,-20,66,0.13391193836583537],[127,-20,67,0.13495557893336615],[127,-20,68,0.13600146540993144],[127,-20,69,0.1370554423987117],[127,-20,70,0.1381246115771875],[127,-20,71,0.1392166580382746],[127,-20,72,0.14033924720595115],[127,-20,73,0.1414994955445503],[127,-20,74,0.1427035156702945],[127,-20,75,0.1439560363920621],[127,-20,76,0.14526009810174823],[127,-20,77,0.1466168238001164],[127,-20,78,0.14802526588273057],[127,-20,79,0.14948232862612604],[127,-19,64,0.13104659528552604],[127,-19,65,0.13204703525360773],[127,-19,66,0.1330456860169123],[127,-19,67,0.1340454404089997],[127,-19,68,0.1350508587525873],[127,-19,69,0.1360682810039069],[127,-19,70,0.1371051388399042],[127,-19,71,0.13816928971217265],[127,-19,72,0.13926842754817267],[127,-19,73,0.14040956774057714],[127,-19,74,0.14159860701262192],[127,-19,75,0.14283995865770643],[127,-19,76,0.1441362635355793],[127,-19,77,0.1454881770634524],[127,-19,78,0.14689423227013865],[127,-19,79,0.14835077878917352],[127,-18,64,0.13025683161197216],[127,-18,65,0.1312083868662611],[127,-18,66,0.13216106267003166],[127,-18,67,0.1331179694877099],[127,-18,68,0.13408408362639782],[127,-18,69,0.1350662378495098],[127,-18,70,0.13607218056490364],[127,-18,71,0.1371099197264165],[127,-18,72,0.1381871495802373],[127,-18,73,0.13931075201045773],[127,-18,74,0.14048637304803094],[127,-18,75,0.1417180750092308],[127,-18,76,0.14300806460433155],[127,-18,77,0.14435649720380528],[127,-18,78,0.14576135727050415],[127,-18,79,0.14721841476705913],[127,-17,64,0.12945167870295793],[127,-17,65,0.13035438512391356],[127,-17,66,0.13126119189326493],[127,-17,67,0.13217541678891484],[127,-17,68,0.13310245298288756],[127,-17,69,0.1340496336084486],[127,-17,70,0.1350250240193696],[127,-17,71,0.1360367765890401],[127,-17,72,0.13709257481231757],[127,-17,73,0.13819915222759602],[127,-17,74,0.13936188669758862],[127,-17,75,0.1405844704803294],[127,-17,76,0.1418686563869287],[127,-17,77,0.14321408015984416],[127,-17,78,0.14461815901828476],[127,-17,79,0.14607606611144927],[127,-16,64,0.1286232542966944],[127,-16,65,0.12947753878693638],[127,-16,66,0.130339092539541],[127,-16,67,0.13121142733361818],[127,-16,68,0.13210034525500958],[127,-16,69,0.1330136743682806],[127,-16,70,0.13395977986148078],[127,-16,71,0.1349469319556348],[127,-16,72,0.13598276977727364],[127,-16,73,0.13707384008691384],[127,-16,74,0.13822521137290458],[127,-16,75,0.13944016370378493],[127,-16,76,0.1407199545876183],[127,-16,77,0.1420636609148368],[127,-16,78,0.1434680968661423],[127,-16,79,0.14492780745512374],[127,-15,64,0.12776352966073296],[127,-15,65,0.1285703715893281],[127,-15,66,0.12938795889952834],[127,-15,67,0.13021997825845347],[127,-15,68,0.13107262021941316],[127,-15,69,0.13195418522417393],[127,-15,70,0.13287329987852645],[127,-15,71,0.13383830154489063],[127,-15,72,0.1348567256663802],[127,-15,73,0.13593486767342433],[127,-15,74,0.13707741994829634],[127,-15,75,0.13828718419695168],[127,-15,76,0.13956485942324462],[127,-15,77,0.14090890551996318],[127,-15,78,0.1423154822891289],[127,-15,79,0.14377846348732456],[127,-14,64,0.11002229286510301],[127,-14,65,0.12762829676229298],[127,-14,66,0.12840366632772784],[127,-14,67,0.1291974644819044],[127,-14,68,0.13001623737331533],[127,-14,69,0.1308687205559025],[127,-14,70,0.13176374702010205],[127,-14,71,0.1327096529672138],[127,-14,72,0.13371379311291023],[127,-14,73,0.13478212989202246],[127,-14,74,0.13591889699953036],[127,-14,75,0.13712633756688644],[127,-14,76,0.13840451710915633],[127,-14,77,0.13975121118997727],[127,-14,78,0.14116186754361956],[127,-14,79,0.14262964217358487],[127,-13,64,0.0612117096958999],[127,-13,65,0.07375743314286817],[127,-13,66,0.08763395268502507],[127,-13,67,0.10281449456785692],[127,-13,68,0.11926114722696753],[127,-13,69,0.12975612003057438],[127,-13,70,0.13063021387483645],[127,-13,71,0.13156029503470792],[127,-13,72,0.13255344977270217],[127,-13,73,0.1336152166109194],[127,-13,74,0.13474928048052326],[127,-13,75,0.1359572402371344],[127,-13,76,0.13723844961158244],[127,-13,77,0.1385899314704157],[127,-13,78,0.1400063650488607],[127,-13,79,0.14148014559801003],[127,-12,64,0.029389101612901966],[127,-12,65,0.0371196030446024],[127,-12,66,0.04598363619530615],[127,-12,67,0.055988197678803496],[127,-12,68,0.06713126636666979],[127,-12,69,0.07940162382043449],[127,-12,70,0.09277668341327697],[127,-12,71,0.10722258772115228],[127,-12,72,0.12269447306284825],[127,-12,73,0.1324332893391656],[127,-12,74,0.13356742204452218],[127,-12,75,0.13477836655132142],[127,-12,76,0.136064690220762],[127,-12,77,0.1374226004784162],[127,-12,78,0.13884595900651428],[127,-12,79,0.14032636622503217],[127,-11,64,0.011038943025784407],[127,-11,65,0.01506218799251312],[127,-11,66,0.019975162997455647],[127,-11,67,0.02581117984545681],[127,-11,68,0.03259522843711219],[127,-11,69,0.040343829482441924],[127,-11,70,0.04906263817434418],[127,-11,71,0.05874667236141521],[127,-11,72,0.06938067010092568],[127,-11,73,0.08093952333675987],[127,-11,74,0.0933887973889332],[127,-11,75,0.1066853456242798],[127,-11,76,0.12077802714598439],[127,-11,77,0.1356085326533304],[127,-11,78,0.13767580997004375],[127,-11,79,0.1391626693626853],[127,-10,64,0.0024549601209772937],[127,-10,65,0.003912889778720353],[127,-10,66,0.005986022633629057],[127,-10,67,0.008731316894232528],[127,-10,68,0.012197347033986033],[127,-10,69,0.01642411543897149],[127,-10,70,0.021440374150927165],[127,-10,71,0.02726397316026881],[127,-10,72,0.03390233413633994],[127,-10,73,0.041352978641027244],[127,-10,74,0.049604113138762784],[127,-10,75,0.058635274439064695],[127,-10,76,0.06841803979630648],[127,-10,77,0.07891680565557486],[127,-10,78,0.09008963797369526],[127,-10,79,0.10188919522928967],[127,-9,64,-1.1435209636942441E-4],[127,-9,65,-7.331439623168063E-5],[127,-9,66,2.820176595305517E-4],[127,-9,67,0.0010315575281128822],[127,-9,68,0.0022464933853554928],[127,-9,69,0.003988989040626147],[127,-9,70,0.006309147840312545],[127,-9,71,0.009245431499500177],[127,-9,72,0.012825217395380012],[127,-9,73,0.01706540854689831],[127,-9,74,0.021973093009296275],[127,-9,75,0.027546250901425935],[127,-9,76,0.03377450856082298],[127,-9,77,0.040639940218491856],[127,-9,78,0.048117917995401105],[127,-9,79,0.056178010896727],[127,-8,64,-4.272576976486299E-4],[127,-8,65,-6.541996726572849E-4],[127,-8,66,-8.935191519672947E-4],[127,-8,67,-0.0010425000291292856],[127,-8,68,-0.0010075258897036914],[127,-8,69,-7.0452287320268E-4],[127,-8,70,-6.240590191344909E-5],[127,-8,71,9.773686715537995E-4],[127,-8,72,0.0024614042235284474],[127,-8,73,0.004425021882511121],[127,-8,74,0.0068929698805931],[127,-8,75,0.009880179465048617],[127,-8,76,0.013392563542669489],[127,-8,77,0.017427855187764085],[127,-8,78,0.02197648398225193],[127,-8,79,0.0270224887645218],[127,-7,64,-0.0022428026504366636],[127,-7,65,-0.0015890059273849047],[127,-7,66,-0.0013000895615051244],[127,-7,67,-0.0012506320411475916],[127,-7,68,-0.0013246497343632733],[127,-7,69,-0.0014161845377611867],[127,-7,70,-0.0010523420702519166],[127,-7,71,-2.9751599424904316E-4],[127,-7,72,5.049241139179747E-4],[127,-7,73,0.0013581484420086898],[127,-7,74,0.0022630588592837033],[127,-7,75,0.003218274662395394],[127,-7,76,0.004220172089829865],[127,-7,77,0.005614597276385745],[127,-7,78,0.008040037106925182],[127,-7,79,0.010849651237047835],[127,-6,64,-0.005917625329952271],[127,-6,65,-0.005288976243912529],[127,-6,66,-0.004651027285030585],[127,-6,67,-0.00335353787908165],[127,-6,68,-0.002466153127468505],[127,-6,69,-0.0019079339289564967],[127,-6,70,-0.0015658206618434569],[127,-6,71,-0.00110393263934674],[127,-6,72,-2.6679303557150443E-4],[127,-6,73,6.233964374384878E-4],[127,-6,74,0.0015665373974181082],[127,-6,75,0.0025602327081393726],[127,-6,76,0.0035998660556512047],[127,-6,77,0.0046787296347663015],[127,-6,78,0.005788199394327736],[127,-6,79,0.00691795719979843],[127,-5,64,-0.006823265040806994],[127,-5,65,-0.0061936675073086854],[127,-5,66,-0.005549004611933369],[127,-5,67,-0.004886893175473391],[127,-5,68,-0.004200097712911946],[127,-5,69,-0.003478062910179802],[127,-5,70,-0.00271235276292982],[127,-5,71,-0.0018968720775658363],[127,-5,72,-0.001027921780448029],[127,-5,73,-1.042102369474202E-4],[127,-5,74,8.731791735818197E-4],[127,-5,75,0.0019008638996819622],[127,-5,76,0.002973281067300102],[127,-5,77,0.004082848845402999],[127,-5,78,0.005220169753659361],[127,-5,79,0.006374275257566959],[127,-4,64,-0.007706599557457946],[127,-4,65,-0.007076282330376245],[127,-4,66,-0.006425454177705766],[127,-4,67,-0.0057523717422977355],[127,-4,68,-0.005050209967847577],[127,-4,69,-0.004308679768464515],[127,-4,70,-0.003519861602621231],[127,-4,71,-0.0026783709160792366],[127,-4,72,-0.0017813524873639796],[127,-4,73,-8.28436492035429E-4],[127,-4,74,1.7834341297622022E-4],[127,-4,75,0.001234669612963309],[127,-4,76,0.0023340972229685428],[127,-4,77,0.003468247422760266],[127,-4,78,0.004627036850136092],[127,-4,79,0.005798942393109157],[127,-3,64,-0.008566514471376557],[127,-3,65,-0.007936021367951001],[127,-3,66,-0.007279981704365074],[127,-3,67,-0.00659737623018369],[127,-3,68,-0.005881857153013912],[127,-3,69,-0.005123447457418423],[127,-3,70,-0.004314767701661509],[127,-3,71,-0.003451146388525304],[127,-3,72,-0.0025305545788040533],[127,-3,73,-0.0015535081420479224],[127,-3,74,-5.229379954580536E-4],[127,-3,75,5.559712582934073E-4],[127,-3,76,0.0016759738220363599],[127,-3,77,0.0028279857894591073],[127,-3,78,0.004001338228361345],[127,-3,79,0.005184059605998118],[127,-2,64,-0.009402836066485547],[127,-2,65,-0.008773020575914524],[127,-2,66,-0.008113109931003372],[127,-2,67,-0.007422885546734021],[127,-2,68,-0.006696534291127006],[127,-2,69,-0.005924426656273915],[127,-2,70,-0.005099733537330534],[127,-2,71,-0.004218483446726417],[127,-2,72,-0.0032794395376829536],[127,-2,73,-0.0022839502993887485],[127,-2,74,-0.0012357743183125393],[127,-2,75,-1.408795488437643E-4],[127,-2,76,9.927824128819018E-4],[127,-2,77,0.0021555265068205986],[127,-2,78,0.0033362082424095788],[127,-2,79,0.004522520943687615],[127,-1,64,-0.01021626965606753],[127,-1,65,-0.009588281912270194],[127,-1,66,-0.008926199196627975],[127,-1,67,-0.008230670302348328],[127,-1,68,-0.007496463099697356],[127,-1,69,-0.006714319599456923],[127,-1,70,-0.0058779576307870784],[127,-1,71,-0.004984077681833468],[127,-1,72,-0.004032185315034022],[127,-1,73,-0.0030243933079710057],[127,-1,74,-0.0019652039514604833],[127,-1,75,-8.612719739556775E-4],[127,-1,76,2.78851399087056E-4],[127,-1,77,0.001444992702120245],[127,-1,78,0.0026256482145114116],[127,-1,79,0.0034589859381126066],[127,0,64,-0.011008271738670814],[127,0,65,-0.010383538977139232],[127,0,66,-0.009721304588799481],[127,0,67,-0.009023139901876469],[127,0,68,-0.008284427809879981],[127,0,69,-0.007496293685731467],[127,0,70,-0.006652985352935532],[127,0,71,-0.005751833120088714],[127,0,72,-0.004793021316593092],[127,0,73,-0.0037793455303231603],[127,0,74,-0.0027159560096388586],[127,0,75,-0.001610087718162143],[127,0,76,-4.7077755907759295E-4],[127,0,77,6.914306855670702E-4],[127,0,78,0.0018647931274373098],[127,0,79,0.0021326965271873852],[127,1,64,-0.009236681506302559],[127,1,65,-0.011161056824834184],[127,1,66,-0.010500969011684187],[127,1,67,-0.009803127873258445],[127,1,68,-0.009063552175953268],[127,1,69,-0.008273749880380172],[127,1,70,-0.007428468763619557],[127,1,71,-0.006525613898583588],[127,1,72,-0.005565972672643953],[127,1,73,-0.004552931312177789],[127,1,74,-0.0034921833996384125],[127,1,75,-0.002391430884512696],[127,1,76,-0.001260078106647313],[127,1,77,-1.0891936769790474E-4],[127,1,78,0.0010501793977039443],[127,1,79,8.549478987410225E-4],[127,2,64,-0.002116857145575001],[127,2,65,-0.0036038470712314963],[127,2,66,-0.005558936792522928],[127,2,67,-0.008038585778915381],[127,2,68,-0.009837016240893781],[127,2,69,-0.009050034040617537],[127,2,70,-0.008207872994176718],[127,2,71,-0.007308946524380645],[127,2,72,-0.006354559507531176],[127,2,73,-0.0053485886865907],[127,2,74,-0.0042971606359260995],[127,2,75,-0.0032083277858639837],[127,2,76,-0.002091743021349264],[127,2,77,-9.58333374971218E-4],[127,2,78,-1.366017647898875E-4],[127,2,79,-3.692913442631502E-4],[127,3,64,-2.8173451508313403E-4],[127,3,65,-5.57676229827606E-4],[127,3,66,-0.0010014974796271668],[127,3,67,-0.0016932858472863174],[127,3,68,-0.002693472854253217],[127,3,69,-0.004045821664169423],[127,3,70,-0.005786732440193002],[127,3,71,-0.007945930650009104],[127,3,72,-0.007161456936494355],[127,3,73,-0.006168738926579877],[127,3,74,-0.005132965845326996],[127,3,75,-0.0040624243225454455],[127,3,76,-0.002966899824012291],[127,3,77,-0.0018573399020806675],[127,3,78,-0.0013169793633793802],[127,3,79,-0.0015370869870890813],[127,4,64,3.1291841356382306E-6],[127,4,65,-1.879072629346974E-4],[127,4,66,-2.2159091052533145E-4],[127,4,67,-2.0159269774480454E-4],[127,4,68,-2.1097989374318666E-4],[127,4,69,-3.1524454578184865E-4],[127,4,70,-5.719208474231365E-4],[127,4,71,-0.0010312135868003525],[127,4,72,-0.001736427554911969],[127,4,73,-0.0027244044420930385],[127,4,74,-0.004025962935621372],[127,4,75,-0.004953665352685232],[127,4,76,-0.0038848152324824866],[127,4,77,-0.0028044523941052],[127,4,78,-0.0024436760358245353],[127,4,79,-0.0026477605532387012],[127,5,64,0.002473319787420232],[127,5,65,0.0012409352372026506],[127,5,66,5.161701003188349E-4],[127,5,67,1.7178499930090398E-4],[127,5,68,1.0208379518830694E-4],[127,5,69,2.1984391423654636E-4],[127,5,70,4.463941364752624E-4],[127,5,71,7.110468673163842E-4],[127,5,72,9.507314305466479E-4],[127,5,73,0.0011096127996178692],[127,5,74,0.001138699504923392],[127,5,75,9.954443435776347E-4],[127,5,76,6.433414280123519E-4],[127,5,77,5.1522980599266784E-5],[127,5,78,-0.0015719725299785145],[127,5,79,-0.003703089066276269],[127,6,64,0.010865469489658223],[127,6,65,0.007465688623267387],[127,6,66,0.004948720891226487],[127,6,67,0.003163891139314126],[127,6,68,0.0019829322420421335],[127,6,69,0.001296907648092074],[127,6,70,0.001006000651204752],[127,6,71,0.0010190085646553312],[127,6,72,0.001253035451172927],[127,6,73,0.0016331624785494187],[127,6,74,0.0020921011200312127],[127,6,75,0.00256983327638235],[127,6,76,0.0030132417545175386],[127,6,77,0.0033757341862737733],[127,6,78,0.0028941990215497777],[127,6,79,0.0018223285757796737],[127,7,64,0.028912674159916035],[127,7,65,0.022222972244242745],[127,7,66,0.016814514047450595],[127,7,67,0.012514157826092918],[127,7,68,0.009171600632169874],[127,7,69,0.006656465760746393],[127,7,70,0.004847909816390465],[127,7,71,0.003634238045303182],[127,7,72,0.0029126881686012823],[127,7,73,0.002589166598168211],[127,7,74,0.0025779509975131557],[127,7,75,0.0028013687542483333],[127,7,76,0.003189458011937821],[127,7,77,0.003679616035430896],[127,7,78,0.003610280224539073],[127,7,79,0.0030493588457230353],[127,8,64,0.060309405038893316],[127,8,65,0.04922851906239803],[127,8,66,0.03984222508112436],[127,8,67,0.031958978275236076],[127,8,68,0.025409028342067725],[127,8,69,0.020042152270069943],[127,8,70,0.015717425693281092],[127,8,71,0.012303178775696172],[127,8,72,0.009677019323725252],[127,8,73,0.0077257315915381505],[127,8,74,0.006345088439030829],[127,8,75,0.005439603361812793],[127,8,76,0.004922240846012905],[127,8,77,0.004714097785232388],[127,8,78,0.004302022015104479],[127,8,79,0.003474406436938951],[127,9,64,0.09622535184567954],[127,9,65,0.09207409932637454],[127,9,66,0.07767893824833398],[127,9,67,0.06518228502605411],[127,9,68,0.054403303341523476],[127,9,69,0.04517763925206157],[127,9,70,0.03734814438725789],[127,9,71,0.030765703055517197],[127,9,72,0.02528988578338103],[127,9,73,0.020789294871907116],[127,9,74,0.01714168854787649],[127,9,75,0.014233947497442227],[127,9,76,0.01196193017753467],[127,9,77,0.01023025023153336],[127,9,78,0.008694673565472169],[127,9,79,0.006822466487054193],[127,10,64,0.09441283928475945],[127,10,65,0.0942322131158697],[127,10,66,0.09412709811056238],[127,10,67,0.09408690358068286],[127,10,68,0.09411100956471519],[127,10,69,0.08568249690663508],[127,10,70,0.07340273546464597],[127,10,71,0.06271402682627063],[127,10,72,0.05346353482903038],[127,10,73,0.0455055504462694],[127,10,74,0.0387024005757756],[127,10,75,0.03292498337806967],[127,10,76,0.028053030593943578],[127,10,77,0.023975171992593764],[127,10,78,0.0205120711815946],[127,10,79,0.016818140033003446],[127,11,64,0.09257973599848086],[127,11,65,0.09234684535966316],[127,11,66,0.09218706284163018],[127,11,67,0.09208926792060662],[127,11,68,0.0920526594574234],[127,11,69,0.09208387041918212],[127,11,70,0.09218608725103736],[127,11,71,0.09235929130364554],[127,11,72,0.09260073523864489],[127,11,73,0.08549893265414713],[127,11,74,0.07468984545409087],[127,11,75,0.06520241755816826],[127,11,76,0.05690429668357803],[127,11,77,0.04967089449422714],[127,11,78,0.04338583444079147],[127,11,79,0.03717543292789109],[127,12,64,0.09073435723904139],[127,12,65,0.09044821866854649],[127,12,66,0.09023255562199067],[127,12,67,0.09007588777038103],[127,12,68,0.08997731667391823],[127,12,69,0.08994356113088706],[127,12,70,0.0899779485841132],[127,12,71,0.09008065369260322],[127,12,72,0.09024917354333394],[127,12,73,0.09047877580639054],[127,12,74,0.09076291921104948],[127,12,75,0.09109364578414893],[127,12,76,0.09146194437205753],[127,12,77,0.09092410832047494],[127,12,78,0.08098787073094703],[127,12,79,0.07154591682700338],[127,13,64,0.08888685100687567],[127,13,65,0.08854682724752283],[127,13,66,0.08827442292017877],[127,13,67,0.08805797490700296],[127,13,68,0.08789656273842643],[127,13,69,0.08779698118504438],[127,13,70,0.08776269099350248],[127,13,71,0.08779405537280646],[127,13,72,0.08788881289570918],[127,13,73,0.08804252244129347],[127,13,74,0.0882489795750249],[127,13,75,0.08850060382980125],[127,13,76,0.08878879643403524],[127,13,77,0.08910426812510278],[127,13,78,0.08943733678477728],[127,13,79,0.08927485830648818],[127,14,64,0.08705020841111565],[127,14,65,0.08665604054264317],[127,14,66,0.08632639445150257],[127,14,67,0.08604959708175212],[127,14,68,0.08582476550356055],[127,14,69,0.08565873726753347],[127,14,70,0.0855550765426561],[127,14,71,0.085514310358937],[127,14,72,0.08553439883402653],[127,14,73,0.08561117656737124],[127,14,74,0.08573876461657144],[127,14,75,0.0859099525413294],[127,14,76,0.08611655008536433],[127,14,77,0.0863497081605204],[127,14,78,0.08660020889626954],[127,14,79,0.0863593416606702],[127,15,64,0.08524036315880756],[127,15,65,0.08479214594179017],[127,15,66,0.08440504448446498],[127,15,67,0.08406753462159582],[127,15,68,0.08377881117607518],[127,15,69,0.0835456996484322],[127,15,70,0.08337181954949797],[127,15,71,0.08325782289327661],[127,15,72,0.08320186179267165],[127,15,73,0.08320002624585444],[127,15,74,0.08324675154699646],[127,15,75,0.08333519482964638],[127,15,76,0.08345758033882097],[127,15,77,0.08360551312354886],[127,15,78,0.08373981903651324],[127,15,79,0.08334341506296121],[127,16,64,0.08346968244609428],[127,16,65,0.08296769574412047],[127,16,66,0.08252297504213565],[127,16,67,0.08212429119112537],[127,16,68,0.08177094880507815],[127,16,69,0.08146970361555274],[127,16,70,0.08122418614316333],[127,16,71,0.08103514408927161],[127,16,72,0.0809009064725314],[127,16,73,0.08081781689807839],[127,16,74,0.08078063541463654],[127,16,75,0.0807829084934442],[127,16,76,0.08081730675360904],[127,16,77,0.08087593015604859],[127,16,78,0.08063093398639593],[127,16,79,0.08022644073083061],[127,17,64,0.08174302176073683],[127,17,65,0.08118770339407139],[127,17,66,0.08068525698474387],[127,17,67,0.08022488327605326],[127,17,68,0.07980602453175845],[127,17,69,0.07943531182188979],[127,17,70,0.07911635056103795],[127,17,71,0.0788499674285412],[127,17,72,0.07863466927354539],[127,17,73,0.07846707007199198],[127,17,74,0.07834228541626381],[127,17,75,0.07825429410087326],[127,17,76,0.07819626646103225],[127,17,77,0.07784242751035447],[127,17,78,0.07741856280337635],[127,17,79,0.07701077007457573],[127,18,64,0.08005858397754277],[127,18,65,0.079450540718098],[127,18,66,0.0788903830049802],[127,18,67,0.07836786473487271],[127,18,68,0.077882589980373],[127,18,69,0.07744101400674518],[127,18,70,0.07704668807371066],[127,18,71,0.07670051070854074],[127,18,72,0.07640117893580944],[127,18,73,0.07614560650777671],[127,18,74,0.07585999249663887],[127,18,75,0.07541081850440425],[127,18,76,0.07496599096622589],[127,18,77,0.07452983894673355],[127,18,78,0.0741066355799402],[127,18,79,0.07370040631691975],[127,19,64,0.07690826841392025],[127,19,65,0.07646654963153862],[127,19,66,0.07601785524690109],[127,19,67,0.07557334251706589],[127,19,68,0.0751343005358738],[127,19,69,0.07469510129389781],[127,19,70,0.07425243268133995],[127,19,71,0.07380506919983613],[127,19,72,0.0733534564067243],[127,19,73,0.07289932890973727],[127,19,74,0.07244536228940236],[127,19,75,0.07199485923298295],[127,19,76,0.07155147007736608],[127,19,77,0.07111894787612488],[127,19,78,0.07070093802666265],[127,19,79,0.07030080241520667],[127,20,64,0.0736090193104375],[127,20,65,0.07312458120298787],[127,20,66,0.07263832607259893],[127,20,67,0.07216069988489293],[127,20,68,0.07169285162280846],[127,20,69,0.0712294862952873],[127,20,70,0.0707674672745807],[127,20,71,0.07030558385651878],[127,20,72,0.0698441484267338],[127,20,73,0.06938462803080057],[127,20,74,0.06892931070218573],[127,20,75,0.06848100680666587],[127,20,76,0.06804278557264924],[127,20,77,0.06761774689136568],[127,20,78,0.06720882838823015],[127,20,79,0.06681864768553306],[127,21,64,0.07021099431677263],[127,21,65,0.06968300246049926],[127,21,66,0.0691588144460962],[127,21,67,0.06864807999387286],[127,21,68,0.06815179176320059],[127,21,69,0.06766502071728153],[127,21,70,0.067184816763242],[127,21,71,0.06670997473708021],[127,21,72,0.06624064742304754],[127,21,73,0.06577799368727277],[127,21,74,0.06532386205105808],[127,21,75,0.06488050993252212],[127,21,76,0.06445035869360317],[127,21,77,0.0640357845411617],[127,21,78,0.06363894524552689],[127,21,79,0.06326164255636904],[127,22,64,0.06673351728853219],[127,22,65,0.06616094632475569],[127,22,66,0.06559817311518511],[127,22,67,0.06505398234233452],[127,22,68,0.0645291972742658],[127,22,69,0.06401928033296019],[127,22,70,0.06352147410479828],[127,22,71,0.0630345675425462],[127,22,72,0.06255852785177933],[127,22,73,0.0620941680319177],[127,22,74,0.06164285036392324],[127,22,75,0.061206226038766465],[127,22,76,0.06078601102718426],[127,22,77,0.06038379820081126],[127,22,78,0.06000090562740281],[127,22,79,0.059638260877942204],[127,23,64,0.06319778953859517],[127,23,65,0.06257944171332785],[127,23,66,0.0619771499534763],[127,23,67,0.061398782676743355],[127,23,68,0.060844983874662105],[127,23,69,0.06031162467854559],[127,23,70,0.05979614168691406],[127,23,71,0.059297305297551665],[127,23,72,0.058814873223950924],[127,23,73,0.058349280015645995],[127,23,74,0.05790136283660384],[127,23,75,0.057472123657161915],[127,23,76,0.05706252792011729],[127,23,77,0.056673339649747884],[127,23,78,0.05630499288409813],[127,23,79,0.05595749922541503],[127,24,64,0.05962603388516643],[127,24,65,0.05896056254769669],[127,24,66,0.05831754772007081],[127,24,67,0.057703909178787094],[127,24,68,0.05712010500671587],[127,24,69,0.056562423359824435],[127,24,70,0.05602849139806888],[127,24,71,0.05551704770212644],[127,24,72,0.05502761982261972],[127,24,73,0.054560237975834806],[127,24,74,0.054115185098411005],[127,24,75,0.05369278337461138],[127,24,76,0.053293217254337735],[127,24,77,0.05291639288772191],[127,24,78,0.05256183381355064],[127,24,79,0.05222861265380452],[127,25,64,0.05604066371421902],[127,25,65,0.05532660079461681],[127,25,66,0.05464140661788787],[127,25,67,0.053991039842693926],[127,25,68,0.05337576934383842],[127,25,69,0.052792299187576074],[127,25,70,0.05223843887057779],[127,25,71,0.051712881752475154],[127,25,72,0.051214908594539824],[127,25,73,0.05074412717072613],[127,25,74,0.050300248118989484],[127,25,75,0.04988289710237019],[127,25,76,0.04949146325414016],[127,25,77,0.04912498378940531],[127,25,78,0.04878206457783597],[127,25,79,0.04846083638866409],[127,26,64,0.05246347790695799],[127,26,65,0.05169926434470767],[127,26,66,0.05097021039615835],[127,26,67,0.05028132171896363],[127,26,68,0.04963267807798319],[127,26,69,0.049021388645216935],[127,26,70,0.04844543229925436],[127,26,71,0.047903443927926316],[127,26,72,0.04739444540372624],[127,26,73,0.04691761233619272],[127,26,74,0.04647207672284785],[127,26,75,0.046056765523011516],[127,26,76,0.04567027508473558],[127,26,77,0.04531078126456174],[127,26,78,0.044975984993898786],[127,26,79,0.04466309296463659],[127,27,64,0.048914882694866296],[127,27,65,0.04809890074420136],[127,27,66,0.047324116954071925],[127,27,67,0.046594612908116236],[127,27,68,0.045910282782903294],[127,27,69,0.04526862038373109],[127,27,70,0.04466775641933517],[127,27,71,0.04410625440789856],[127,27,72,0.04358286998539944],[127,27,73,0.04309634547526753],[127,27,74,0.0426452397941185],[127,27,75,0.042227793672952436],[127,27,76,0.04184183008110942],[127,27,77,0.04148468965200501],[127,27,78,0.041153200826452276],[127,27,79,0.040843684351369064],[127,28,64,0.045413141651313355],[127,28,65,0.04454374794401789],[127,28,66,0.04372121455090652],[127,28,67,0.04294874833488239],[127,28,68,0.04222606479260822],[127,28,69,0.04155101257765965],[127,28,70,0.04092185235929349],[127,28,71,0.040337063906395125],[127,28,72,0.03979513405262318],[127,28,73,0.03929437919358688],[127,28,74,0.038832802344778414],[127,28,75,0.03840798469625367],[127,28,76,0.03801701151076708],[127,28,77,0.03765643212689947],[127,28,78,0.03732225374896789],[127,28,79,0.03700996863134167],[127,29,64,0.04197365510639806],[127,29,65,0.04104921331025779],[127,29,66,0.040176804809420145],[127,29,67,0.039358830415514905],[127,29,68,0.038594837116672824],[127,29,69,0.03788299005724801],[127,29,70,0.037221654163578574],[127,29,71,0.036609213787998036],[127,29,72,0.03604388908043492],[127,29,73,0.0355235859614085],[127,29,74,0.03504577968114526],[127,29,75,0.034607431860187714],[127,29,76,0.03420494082114235],[127,29,77,0.03383412493986809],[127,29,78,0.0334902386687633],[127,29,79,0.033168020815012564],[127,30,64,0.03860827595793545],[127,30,65,0.037627188090919264],[127,30,66,0.03670271991346718],[127,30,67,0.035836552207089284],[127,30,68,0.03502807665032979],[127,30,69,0.03427572912589766],[127,30,70,0.03357795002937435],[127,30,71,0.03293301763020973],[127,30,72,0.032338892041319824],[127,30,73,0.03179309167601619],[127,30,74,0.03129260213621004],[127,30,75,0.030833817390512375],[127,30,76,0.030412513019333922],[127,30,77,0.03002385122715195],[127,30,78,0.02966241725105633],[127,30,79,0.029322286729624697],[127,31,64,0.03532616496812725],[127,31,65,0.03428696887248127],[127,31,66,0.03330831364063244],[127,31,67,0.03239126036417137],[127,31,68,0.03153506118412495],[127,31,69,0.03073837116189691],[127,31,70,0.02999967528690159],[127,31,71,0.029317136451729276],[127,31,72,0.028688465685998588],[127,31,73,0.0281108236036464],[127,31,74,0.027580752971043176],[127,31,75,0.027094142222578686],[127,31,76,0.026646219673563953],[127,31,77,0.026231578108191312],[127,31,78,0.025844229354157134],[127,31,79,0.02547768839542294],[127,32,64,0.03213535227832307],[127,32,65,0.031036908889506408],[127,32,66,0.03000220540100249],[127,32,67,0.02903179360973633],[127,32,68,0.028124803735417467],[127,32,69,0.027280054674534433],[127,32,70,0.026496044326306513],[127,32,71,0.025770812780132355],[127,32,72,0.025101837002756523],[127,32,73,0.024485955334386186],[127,32,74,0.023919321669623145],[127,32,75,0.023397389123321902],[127,32,76,0.022914922909749762],[127,32,77,0.02246604209641657],[127,32,78,0.0220442898328787],[127,32,79,0.021642731599675676],[127,33,64,0.02903930175678657],[127,33,65,0.027880840080983994],[127,33,66,0.026788563665095806],[127,33,67,0.025762630110336845],[127,33,68,0.02480206642277554],[127,33,69,0.023905798995843296],[127,33,70,0.023072308043045196],[127,33,71,0.022299506248982436],[127,33,72,0.021584655683041264],[127,33,73,0.020924313021796127],[127,33,74,0.02031430293007093],[127,33,75,0.019749719380076487],[127,33,76,0.01922495462154552],[127,33,77,0.01873375545396063],[127,33,78,0.018269306395979682],[127,33,79,0.01782433929689883],[127,34,64,0.026035875256982397],[127,34,65,0.024817007956649262],[127,34,66,0.023666014213448043],[127,34,67,0.022582770518242208],[127,34,68,0.02156621952229546],[127,34,69,0.020615341261489815],[127,34,70,0.019728571205429892],[127,34,71,0.018903694217355202],[127,34,72,0.018137781124988678],[127,34,73,0.017427152044523248],[127,34,74,0.016767366287674012],[127,34,75,0.016153238616481453],[127,34,76,0.01557888154928235],[127,34,77,0.015037773364542203],[127,34,78,0.014522851398159719],[127,34,79,0.014026630184244493],[127,35,64,0.02311682293064475],[127,35,65,0.021837554071554303],[127,35,66,0.0206271170635123],[127,35,67,0.019485210104440594],[127,35,68,0.018410709317138833],[127,35,69,0.01740260120740347],[127,35,70,0.016459256021871742],[127,35,71,0.015578336382344904],[127,35,72,0.014756750685508057],[127,35,73,0.01399063169080116],[127,35,74,0.013275340112272363],[127,35,75,0.012605492970158257],[127,35,76,0.0119750164017024],[127,35,77,0.011377222578854021],[127,35,78,0.01080491033401499],[127,35,79,0.010250489053694146],[127,36,64,0.020267311643012306],[127,36,65,0.018928035211234658],[127,36,66,0.017657878328635534],[127,36,67,0.0164564435111364],[127,36,68,0.01532255569073523],[127,36,69,0.014255172330730466],[127,36,70,0.013252588259053925],[127,36,71,0.012312357770834028],[127,36,72,0.011431261862133973],[127,36,73,0.01060529912886077],[127,36,74,0.009829700138228292],[127,36,75,0.009098965024905018],[127,36,76,0.008406924012418023],[127,36,77,0.007746820512967799],[127,36,78,0.007111416416515248],[127,36,79,0.006493119142532091],[127,37,64,0.01746549261273851],[127,37,65,0.016066980384024425],[127,37,66,0.014737298070566552],[127,37,67,0.013476003136973145],[127,37,68,0.01228188041449703],[127,37,69,0.01115384029068412],[127,37,70,0.010090106699868148],[127,37,71,0.009088150802631517],[127,37,72,0.00814466899153818],[127,37,73,0.007255583137973284],[127,37,74,0.006416062884101291],[127,37,75,0.0056205697330366094],[127,37,76,0.0048629226429137236],[127,37,77,0.00413638478704627],[127,37,78,0.003433771103701337],[127,37,79,0.0027475762248476542],[127,38,64,0.014682876263327241],[127,38,65,0.013226245582805999],[127,38,66,0.01183770266233769],[127,38,67,0.010516767037810498],[127,38,68,0.009262188761488693],[127,38,69,0.008072836637373059],[127,38,70,0.006946887656985038],[127,38,71,0.005881769557989833],[127,38,72,0.004874146563140142],[127,38,73,0.003919926097801617],[127,38,74,0.0030142862909298953],[127,38,75,0.0021517240171289747],[127,38,76,0.0013261231935008972],[127,38,77,5.308430047596543E-4],[127,38,78,-2.4117430558913695E-4],[127,38,79,-9.97276471697128E-4],[127,39,64,0.011901379981713525],[127,39,65,0.010387889148358987],[127,39,66,0.008941373647557854],[127,39,67,0.00756131391710586],[127,39,68,0.006246434626822716],[127,39,69,0.004995582931867068],[127,39,70,0.0038069248820250955],[127,39,71,0.0026778936186714897],[127,39,72,0.001605179626952473],[127,39,73,5.847409342327947E-4],[127,39,74,-3.8816693565439116E-4],[127,39,75,-0.0013189414872258087],[127,39,76,-0.002213564533359438],[127,39,77,-0.003078514544401462],[127,39,78,-0.003920660413714181],[127,39,79,-0.004747137016555296],[127,40,64,0.009117704494008517],[127,40,65,0.007548582163039285],[127,40,66,0.006044982309668273],[127,40,67,0.004606375724073207],[127,40,68,0.0032314829273834295],[127,40,69,0.0019191484705578285],[127,40,70,6.675626952399928E-4],[127,40,71,-5.257877977875094E-4],[127,40,72,-0.001664128961449574],[127,40,73,-0.0027513889108370148],[127,40,74,-0.0037921685091109603],[127,40,75,-0.004791693155282394],[127,40,76,-0.005755746037871166],[127,40,77,-0.006690583154700706],[127,40,78,-0.007602830431190976],[127,40,79,-0.008499363297936595],[127,41,64,0.006329798409788093],[127,41,65,0.00470624297058784],[127,41,66,0.0031464570748366413],[127,41,67,0.0016499567428514116],[127,41,68,2.1548690366230065E-4],[127,41,69,-0.0011580960875745777],[127,41,70,-0.0024725468419631593],[127,41,71,-0.00373028156747696],[127,41,72,-0.004934389758113163],[127,41,73,-0.006088627088150408],[127,41,74,-0.0071973896805970945],[127,41,75,-0.00826566996083592],[127,41,76,-0.009298994345452402],[127,41,77,-0.010303343051998573],[127,41,78,-0.011285052347181737],[127,41,79,-0.010193971352683693],[127,42,64,0.0035368428302308664],[127,42,65,0.0018600122546287721],[127,42,66,2.4494705835767717E-4],[127,42,67,-0.0013087181648343954],[127,42,68,-0.0028021828157247415],[127,42,69,-0.004236571652735501],[127,42,70,-0.005613560691658622],[127,42,71,-0.006935432209848018],[127,42,72,-0.008205093226113668],[127,42,73,-0.009426075239674822],[127,42,74,-0.01060251538023671],[127,42,75,-0.01173911916369874],[127,42,76,-0.012841105087536973],[127,42,77,-0.011353120966938642],[127,42,78,-0.009671240314447578],[127,42,79,-0.008006700620603664],[127,43,64,7.399944765601263E-4],[127,43,65,-9.890223897672204E-4],[127,43,66,-0.0026584775628801243],[127,43,67,-0.004268532898451995],[127,43,68,-0.005820302424464301],[127,43,69,-0.007314894505351379],[127,43,70,-0.008753892428171857],[127,43,71,-0.010139416870604254],[127,43,72,-0.011474155071677561],[127,43,73,-0.012761370955864678],[127,43,74,-0.014004896341146317],[127,43,75,-0.012474811457628994],[127,43,76,-0.010820747595612384],[127,43,77,-0.009167834927209451],[127,43,78,-0.0075239524758394846],[127,43,79,-0.00589716455651228],[127,44,64,-0.002056772065564131],[127,44,65,-0.0038370041214506917],[127,44,66,-0.005560029388401264],[127,44,67,-0.007225716360081618],[127,44,68,-0.008835069548638873],[127,44,69,-0.010389194859558025],[127,44,70,-0.011889579840628587],[127,44,71,-0.013338166446321775],[127,44,72,-0.014737394683771795],[127,44,73,-0.013495631852268436],[127,44,74,-0.011899832467355806],[127,44,75,-0.010291087664419975],[127,44,76,-0.0086763066492187],[127,44,77,-0.00706276186814373],[127,44,78,-0.005458017583507593],[127,44,79,-0.0038698399419630504],[127,45,64,-0.004845720960212364],[127,45,65,-0.006676384731774087],[127,45,66,-0.008452309835450934],[127,45,67,-0.010172983625120093],[127,45,68,-0.011839286336774998],[127,45,69,-0.0134523483450295],[127,45,70,-0.015013570803850237],[127,45,71,-0.014359431594447658],[127,45,72,-0.012846684037573951],[127,45,73,-0.011309730485770076],[127,45,74,-0.009754300967752181],[127,45,75,-0.008186547347841288],[127,45,76,-0.0066130236208295145],[127,45,77,-0.005040646077118536],[127,45,78,-0.003476633594988661],[127,45,79,-0.0019284283594151075],[127,46,64,-0.007614308654957591],[127,46,65,-0.009494900795333031],[127,46,66,-0.011323315454735621],[127,46,67,-0.01309858014227557],[127,46,68,-0.014821449178024537],[127,46,69,-0.015018587815155412],[127,46,70,-0.01360730591717552],[127,46,71,-0.012163414955988706],[127,46,72,-0.01069160028945971],[127,46,73,-0.009196879076453453],[127,46,74,-0.007684640029805806],[127,46,75,-0.006160661421543882],[127,46,76,-0.0046311074723680784],[127,46,77,-0.0031025033107250255],[127,46,78,-0.001581688737038297],[127,46,79,-7.575107494544116E-5],[127,47,64,-0.01034990576909472],[127,47,65,-0.012280189530615054],[127,47,66,-0.014160935237229284],[127,47,67,-0.015435884922624765],[127,47,68,-0.014139451011769786],[127,47,69,-0.012803796343104227],[127,47,70,-0.011433155576440104],[127,47,71,-0.010031823045804524],[127,47,72,-0.00860426022420955],[127,47,73,-0.007155179975096567],[127,47,74,-0.005689607568597104],[127,47,75,-0.004212918502151803],[127,47,76,-0.0027308532248403747],[127,47,77,-0.0012495089223188349],[127,47,78,2.2469142621191175E-4],[127,47,79,0.0016850524569430295],[127,48,64,-0.013058118829652958],[127,48,65,-0.015037690402059904],[127,48,66,-0.07200758962398728],[127,48,67,-0.06595795952943036],[127,48,68,-0.0119528478157394],[127,48,69,-0.01065847227060536],[127,48,70,-0.009331192253405991],[127,48,71,-0.007975205539169314],[127,48,72,-0.00659475981274817],[127,48,73,-0.02596570448849144],[127,48,74,-0.01888965845677612],[127,48,75,-0.011759568646260007],[127,48,76,-0.0046025645044046075],[127,48,77,5.104904857219244E-4],[127,48,78,0.0019350337071309385],[127,48,79,0.0033468364165767654],[127,49,64,-0.07217487291234236],[127,49,65,-0.06675869672115257],[127,49,66,-0.06111998575067651],[127,49,67,-0.05526050211897969],[127,49,68,-0.04919786770177894],[127,49,69,-0.04295597469477706],[127,49,70,-0.03655685667477101],[127,49,71,-0.030021444146961472],[127,49,72,-0.02337036629530682],[127,49,73,-0.01662462098609498],[127,49,74,-0.009806111319288654],[127,49,75,-0.002938047513577906],[127,49,76,0.003954786481296591],[127,49,77,0.010845901552897065],[127,49,78,0.0035417766985329745],[127,49,79,0.004902671301116867],[127,50,64,-0.061341354974700925],[127,50,65,-0.05610729489587787],[127,50,66,-0.05066235062314244],[127,50,67,-0.045004974896959364],[127,50,68,-0.039152735920746806],[127,50,69,-0.03313127854806219],[127,50,70,-0.026963416157260944],[127,50,71,-0.02066998334310918],[127,50,72,-0.014270790578885424],[127,50,73,-0.007785438784197654],[127,50,74,-0.001233991835977511],[127,50,75,0.005362494460999558],[127,50,76,0.011981587830099881],[127,50,77,0.018599239601747846],[127,50,78,0.025189688857225556],[127,50,79,0.031725509291510044],[127,51,64,-0.0509696375624994],[127,51,65,-0.04593013467255327],[127,51,66,-0.040690278683268966],[127,51,67,-0.03524499801957179],[127,51,68,-0.029611940981761977],[127,51,69,-0.023818819480292866],[127,51,70,-0.01788948590746709],[127,51,71,-0.011844885926008625],[127,51,72,-0.005704173467598824],[127,51,73,5.143233715146757E-4],[127,51,74,0.006792287778987088],[127,51,75,0.01311075278192978],[127,51,76,0.01944959407336569],[127,51,77,0.025787177582589898],[127,51,78,0.032100161506281394],[127,51,79,0.038363451723940414],[127,52,64,-0.041107480588287844],[127,52,65,-0.03627353314936295],[127,52,66,-0.031248393847952062],[127,52,67,-0.02602331447396172],[127,52,68,-0.020616178311455603],[127,52,69,-0.015057074590963327],[127,52,70,-0.009371162825103634],[127,52,71,-0.003579726928580566],[127,52,72,0.0022985444940312556],[127,52,73,0.008246436474744594],[127,52,74,0.014247247156775195],[127,52,75,0.020283990462865668],[127,52,76,0.02633876339180776],[127,52,77,0.032871424762133554],[127,52,78,0.04332947450755952],[127,52,79,0.05373134338033457],[127,53,64,-0.031792203578659604],[127,53,65,-0.027173364873492693],[127,53,66,-0.022370934145071155],[127,53,67,-0.01737240168396997],[127,53,68,-0.012196056986897063],[127,53,69,-0.006874662915181795],[127,53,70,-0.0014349537464841853],[127,53,71,0.004101209809187425],[127,53,72,0.009715392596762691],[127,53,73,0.0153913054540495],[127,53,74,0.02111369693504098],[127,53,75,0.029549762240952484],[127,53,76,0.04005988911298172],[127,53,77,0.0505533163636011],[127,53,78,0.0610102694364782],[127,53,79,0.07140933565388512],[127,54,64,-0.023051241698092164],[127,54,65,-0.01865564649949413],[127,54,66,-0.01408236375103842],[127,54,67,-0.00931510692279877],[127,54,68,-0.004372753401491283],[127,54,69,7.089878019776752E-4],[127,54,70,0.00590154988478572],[127,54,71,0.011182254373939866],[127,54,72,0.016532695473286698],[127,54,73,0.025690786305566503],[127,54,74,0.03619630891508496],[127,54,75,0.04671163952276037],[127,54,76,0.057221030162921196],[127,54,77,0.06770781277625708],[127,54,78,0.07815393687875917],[127,54,79,0.08853969994464489],[127,55,64,-0.014902720721981379],[127,55,65,-0.01073713812893025],[127,55,66,-0.006397998734652097],[127,55,67,-0.0018652930215108513],[127,55,68,0.002841328225363742],[127,55,69,0.007682970576293251],[127,55,70,0.012628995982952649],[127,55,71,0.021335722029469765],[127,55,72,0.03180594324942573],[127,55,73,0.042306567028449815],[127,55,74,0.05060975880584165],[127,55,75,0.048467515995832454],[127,55,76,0.06504717084369724],[127,55,77,0.08431316184466786],[127,55,78,0.09474054276586884],[127,55,79,0.10510426607648636],[127,56,64,-0.007356037519456129],[127,56,65,-0.0034259479952619422],[127,56,66,6.753666030518474E-4],[127,56,67,0.004971518380611617],[127,56,68,0.009441900767713448],[127,56,69,0.01650337028296356],[127,56,70,0.026903770245993126],[127,56,71,0.03736359263869333],[127,56,72,0.026032157982716426],[127,56,73,0.006411423052822578],[127,56,74,-0.0016585820166721468],[127,56,75,-0.0015590589500386262],[127,56,76,0.007015516964704146],[127,56,77,0.041330533857456234],[127,56,78,0.08507177661861393],[127,56,79,0.12109128272260913],[127,57,64,-0.0016872186451679684],[127,57,65,-0.009841360651703032],[127,57,66,-0.015621964119281746],[127,57,67,-0.016211188048054437],[127,57,68,-0.012525320152152502],[127,57,69,-0.010114223776923155],[127,57,70,-0.008948000821080035],[127,57,71,-0.010136728671758084],[127,57,72,-0.01196785240294548],[127,57,73,-0.016458936375624032],[127,57,74,-0.019338438459413614],[127,57,75,-0.01918506001274614],[127,57,76,-0.013768490892631678],[127,57,77,-0.00520075600912902],[127,57,78,0.020694643155702738],[127,57,79,0.0649083840542275],[127,58,64,-0.002398810533098577],[127,58,65,-0.010852792352837719],[127,58,66,-0.016700635343969948],[127,58,67,-0.016923312855253968],[127,58,68,-0.014241303027184493],[127,58,69,-0.011294708267064135],[127,58,70,-0.01118876023932503],[127,58,71,-0.011962742822840723],[127,58,72,-0.015073032110093627],[127,58,73,-0.019139676455770308],[127,58,74,-0.022287380241588464],[127,58,75,-0.022303790247475707],[127,58,76,-0.017439325089619984],[127,58,77,-0.008262338811632209],[127,58,78,0.00335287799821331],[127,58,79,0.014999698751772225],[127,59,64,-0.018378253966354736],[127,59,65,-0.026390623693812273],[127,59,66,-0.031715808647080734],[127,59,67,-0.032242667267154954],[127,59,68,-0.03013824301624544],[127,59,69,-0.027182063637480207],[127,59,70,-0.027241686886360236],[127,59,71,-0.027346942143632466],[127,59,72,-0.029999732849764957],[127,59,73,-0.03421415088197379],[127,59,74,-0.038311695268383454],[127,59,75,-0.03781026632387171],[127,59,76,-0.03305906557856185],[127,59,77,-0.02389434326130895],[127,59,78,-0.012022424782879746],[127,59,79,-4.8579787717338075E-4],[127,60,64,-0.03725259317328376],[127,60,65,-0.044892036485377304],[127,60,66,-0.05055453968397137],[127,60,67,-0.05113612028610605],[127,60,68,-0.04939116271362283],[127,60,69,-0.046490668481388886],[127,60,70,-0.04509123859342982],[127,60,71,-0.04543185287170531],[127,60,72,-0.04846018942825587],[127,60,73,-0.052764732782773244],[127,60,74,-0.05708582090331558],[127,60,75,-0.056360429095148316],[127,60,76,-0.05170582653221003],[127,60,77,-0.042691230250559396],[127,60,78,-0.03049682030679219],[127,60,79,-0.019481977070106106],[127,61,64,-0.053325844714896514],[127,61,65,-0.05910325717847074],[127,61,66,-0.06207291096512471],[127,61,67,-0.06195444810373144],[127,61,68,-0.059953388399303434],[127,61,69,-0.05764418647355978],[127,61,70,-0.05487679480239025],[127,61,71,-0.05431819869269034],[127,61,72,-0.057594903346379414],[127,61,73,-0.0621368942373266],[127,61,74,-0.06614760283061406],[127,61,75,-0.06585958933159702],[127,61,76,-0.061694599340935075],[127,61,77,-0.052640937216398384],[127,61,78,-0.04070008233737223],[127,61,79,-0.03014835500349365],[127,62,64,-0.06874702586403533],[127,62,65,-0.07470265590339822],[127,62,66,-0.07716203946441977],[127,62,67,-0.07716348601626154],[127,62,68,-0.07546419720781618],[127,62,69,-0.07372462394850315],[127,62,70,-0.07111123609141456],[127,62,71,-0.07023969705131282],[127,62,72,-0.07303011274177305],[127,62,73,-0.07710139740288428],[127,62,74,-0.08034225967547981],[127,62,75,-0.080929293211404],[127,62,76,-0.07734304713274211],[127,62,77,-0.06786124009361506],[127,62,78,-0.05595000343345786],[127,62,79,-0.045043701790623704],[127,63,64,-0.1056882512054074],[127,63,65,-0.11163470963167389],[127,63,66,-0.11392409986494068],[127,63,67,-0.11377261394650136],[127,63,68,-0.11143848591887506],[127,63,69,-0.11002171802552313],[127,63,70,-0.1072449388491575],[127,63,71,-0.10576953866957792],[127,63,72,-0.10748619591886895],[127,63,73,-0.11075736322865676],[127,63,74,-0.1141247847422247],[127,63,75,-0.11446979892835686],[127,63,76,-0.11009298666405287],[127,63,77,-0.09991827094316794],[127,63,78,-0.0871802960447904],[127,63,79,-0.07690087892639892],[127,64,64,-0.11875626727600848],[127,64,65,-0.12454549906817301],[127,64,66,-0.12747512487270443],[127,64,67,-0.1258978327481066],[127,64,68,-0.12426422085454694],[127,64,69,-0.1223643378119186],[127,64,70,-0.12001802694031788],[127,64,71,-0.11844936214638596],[127,64,72,-0.12012182098652456],[127,64,73,-0.1244067397837834],[127,64,74,-0.1276991603806761],[127,64,75,-0.1278470242626179],[127,64,76,-0.12244525992025712],[127,64,77,-0.11194626499155881],[127,64,78,-0.09975399291066685],[127,64,79,-0.08915841578678489],[127,65,64,-0.13487466178673066],[127,65,65,-0.14151281425010273],[127,65,66,-0.14375443845490882],[127,65,67,-0.14150542458259244],[127,65,68,-0.13993653547257395],[127,65,69,-0.13879114699175873],[127,65,70,-0.1366928474066708],[127,65,71,-0.1347600390634176],[127,65,72,-0.13707149932474738],[127,65,73,-0.14160049621780746],[127,65,74,-0.14422432498186247],[127,65,75,-0.1446369975716944],[127,65,76,-0.13829685252145632],[127,65,77,-0.12823552535862348],[127,65,78,-0.11538634215735268],[127,65,79,-0.10528259697381605],[127,66,64,-0.15380066988380173],[127,66,65,-0.15931503805973876],[127,66,66,-0.1616053771885806],[127,66,67,-0.15994795134182158],[127,66,68,-0.1572710236758201],[127,66,69,-0.15669021449721626],[127,66,70,-0.15552579958585472],[127,66,71,-0.15400644040072775],[127,66,72,-0.1563411656563876],[127,66,73,-0.16010447460842633],[127,66,74,-0.16236275060241923],[127,66,75,-0.16247097002375524],[127,66,76,-0.15635661052903935],[127,66,77,-0.14678109772237607],[127,66,78,-0.13404521423176494],[127,66,79,-0.12348052348115857],[127,67,64,-0.1701248774703624],[127,67,65,-0.175503282464118],[127,67,66,-0.17668125761810632],[127,67,67,-0.1754542631774201],[127,67,68,-0.1736626849002682],[127,67,69,-0.17228118427240224],[127,67,70,-0.17107386393695645],[127,67,71,-0.17041464290010028],[127,67,72,-0.17301805396379913],[127,67,73,-0.17616323821024896],[127,67,74,-0.17824766036509535],[127,67,75,-0.17804471229539073],[127,67,76,-0.17317664751390419],[127,67,77,-0.1629334614987392],[127,67,78,-0.15096252650140823],[127,67,79,-0.14024200304767986],[127,68,64,-0.21384096298819907],[127,68,65,-0.21970827955209718],[127,68,66,-0.22050794267532778],[127,68,67,-0.22016559229100824],[127,68,68,-0.21816760493251594],[127,68,69,-0.2162242736109951],[127,68,70,-0.2158570081125445],[127,68,71,-0.21532277299784344],[127,68,72,-0.2176218745836773],[127,68,73,-0.22095602185039367],[127,68,74,-0.2227229607241534],[127,68,75,-0.22255752396867762],[127,68,76,-0.21722525005022303],[127,68,77,-0.20726842122059713],[127,68,78,-0.1962643264231534],[127,68,79,-0.1854997577369971],[127,69,64,-0.22744137761108427],[127,69,65,-0.23596683349399564],[127,69,66,-0.24012159310917527],[127,69,67,-0.24171669960575276],[127,69,68,-0.2410855889815658],[127,69,69,-0.23866834832995829],[127,69,70,-0.23828721696226807],[127,69,71,-0.23808589405522976],[127,69,72,-0.2418025611692883],[127,69,73,-0.24453602291061302],[127,69,74,-0.24630384096451813],[127,69,75,-0.2457073287094484],[127,69,76,-0.2401712809840776],[127,69,77,-0.2302596696480299],[127,69,78,-0.21850939268699282],[127,69,79,-0.20771547856045458],[127,70,64,-0.24244837200436997],[127,70,65,-0.25048796117218386],[127,70,66,-0.25534414147106665],[127,70,67,-0.25705190084114615],[127,70,68,-0.2566248335311117],[127,70,69,-0.25399342944763215],[127,70,70,-0.2538258402798922],[127,70,71,-0.2543087167329271],[127,70,72,-0.2578822316647676],[127,70,73,-0.2602535389692203],[127,70,74,-0.262243518000713],[127,70,75,-0.26070589602257743],[127,70,76,-0.25577983664420784],[127,70,77,-0.2456046266754091],[127,70,78,-0.2336596378264569],[127,70,79,-0.22383168942734835],[127,71,64,-0.25416298308526003],[127,71,65,-0.2619037394455406],[127,71,66,-0.2671060183182157],[127,71,67,-0.26926148228801283],[127,71,68,-0.2688859478605652],[127,71,69,-0.2671341073097449],[127,71,70,-0.26700468216266193],[127,71,71,-0.26734063590560747],[127,71,72,-0.27084200392482116],[127,71,73,-0.2731381472572017],[127,71,74,-0.27540609126014626],[127,71,75,-0.2737977544695087],[127,71,76,-0.2688898650645644],[127,71,77,-0.25908933960885155],[127,71,78,-0.24684506321310706],[127,71,79,-0.236755079163684],[127,72,64,-0.26886787264608064],[127,72,65,-0.2763545736512048],[127,72,66,-0.2816332182736891],[127,72,67,-0.2835890762988877],[127,72,68,-0.28419120884835736],[127,72,69,-0.2830117184485363],[127,72,70,-0.2821908718745974],[127,72,71,-0.2822276860024618],[127,72,72,-0.2858901093000936],[127,72,73,-0.2880903729039632],[127,72,74,-0.29063031750251794],[127,72,75,-0.2893495150072322],[127,72,76,-0.2838522022241617],[127,72,77,-0.2739585122314144],[127,72,78,-0.26208229244956144],[127,72,79,-0.25161539131309185],[127,73,64,-0.2857129719945635],[127,73,65,-0.29181510332303534],[127,73,66,-0.29515717535553493],[127,73,67,-0.29574260358068105],[127,73,68,-0.2958924944257483],[127,73,69,-0.29429538898013596],[127,73,70,-0.2933447490726853],[127,73,71,-0.2933983597918041],[127,73,72,-0.29721734812958617],[127,73,73,-0.29956898933833037],[127,73,74,-0.3021194348069585],[127,73,75,-0.3015112858872459],[127,73,76,-0.2963454564122017],[127,73,77,-0.28757374830669813],[127,73,78,-0.2766844061641868],[127,73,79,-0.2663455860325846],[127,74,64,-0.3023223506157093],[127,74,65,-0.3083661798286063],[127,74,66,-0.31136991468115177],[127,74,67,-0.3116371516268228],[127,74,68,-0.3113693700738613],[127,74,69,-0.3093682539719267],[127,74,70,-0.3088096871880031],[127,74,71,-0.3095417585207043],[127,74,72,-0.31306758911829297],[127,74,73,-0.31569653557392807],[127,74,74,-0.3183372319459234],[127,74,75,-0.3175803079492486],[127,74,76,-0.31276604348723475],[127,74,77,-0.304256490503124],[127,74,78,-0.2935416773261651],[127,74,79,-0.28281063753787866],[127,75,64,-0.31688287430645196],[127,75,65,-0.32246097823882675],[127,75,66,-0.3248618350448413],[127,75,67,-0.32460215945871973],[127,75,68,-0.3240981368165118],[127,75,69,-0.32314196176933146],[127,75,70,-0.32199538183971066],[127,75,71,-0.3238370555790019],[127,75,72,-0.32707482840856594],[127,75,73,-0.33004715333431794],[127,75,74,-0.3326483674596339],[127,75,75,-0.33157519396967716],[127,75,76,-0.327773212042897],[127,75,77,-0.31955186035826916],[127,75,78,-0.30857379844427507],[127,75,79,-0.2982539098167675],[127,76,64,-0.33040252057831215],[127,76,65,-0.33524812936792664],[127,76,66,-0.33762157832167183],[127,76,67,-0.33697969513432574],[127,76,68,-0.3366102820575914],[127,76,69,-0.33633988719926344],[127,76,70,-0.3348989053532914],[127,76,71,-0.3365537807774212],[127,76,72,-0.3405362887385823],[127,76,73,-0.34440259428835573],[127,76,74,-0.3466595543440177],[127,76,75,-0.34606127187913144],[127,76,76,-0.34191810330509875],[127,76,77,-0.3340893974645764],[127,76,78,-0.3244125739693454],[127,76,79,-0.31403161458688733],[127,77,64,-0.34343332376840163],[127,77,65,-0.3480764090285593],[127,77,66,-0.3493260559350903],[127,77,67,-0.34859141409252226],[127,77,68,-0.34819287999798587],[127,77,69,-0.34776616513384456],[127,77,70,-0.3460598768058861],[127,77,71,-0.3475762786046391],[127,77,72,-0.3510848866745727],[127,77,73,-0.355809536837687],[127,77,74,-0.35859969954925586],[127,77,75,-0.35782738990818647],[127,77,76,-0.35381037326999826],[127,77,77,-0.3460220496976648],[127,77,78,-0.33722095867753227],[127,77,79,-0.3272096701662513],[127,78,64,-0.35667118112533036],[127,78,65,-0.36123264597396143],[127,78,66,-0.36224291866413083],[127,78,67,-0.36185393342641536],[127,78,68,-0.3609531520063503],[127,78,69,-0.36096227561862776],[127,78,70,-0.3596639320644295],[127,78,71,-0.36006374055695956],[127,78,72,-0.3642476381390891],[127,78,73,-0.369928030162146],[127,78,74,-0.3732089725379037],[127,78,75,-0.3717628148340019],[127,78,76,-0.36792048277142597],[127,78,77,-0.36067674900209556],[127,78,78,-0.35187555957328803],[127,78,79,-0.34318707944546084],[127,79,64,-0.3667697410005509],[127,79,65,-0.3714143310902883],[127,79,66,-0.372306017716345],[127,79,67,-0.3725107186428803],[127,79,68,-0.37155591237621943],[127,79,69,-0.3710357235980706],[127,79,70,-0.3709432194559186],[127,79,71,-0.3711057613530347],[127,79,72,-0.374760946955204],[127,79,73,-0.381825789894038],[127,79,74,-0.385387095170604],[127,79,75,-0.38415372851100127],[127,79,76,-0.38090864669195446],[127,79,77,-0.37361349206196415],[127,79,78,-0.36511865206752003],[127,79,79,-0.35568890250703683],[127,80,64,-0.37966286923322606],[127,80,65,-0.3844243020478652],[127,80,66,-0.38527436589256403],[127,80,67,-0.3856394830872989],[127,80,68,-0.3850678847855059],[127,80,69,-0.38466927401545575],[127,80,70,-0.38478869579141595],[127,80,71,-0.3845279932830571],[127,80,72,-0.3880471479576956],[127,80,73,-0.39544303687212295],[127,80,74,-0.3996406378543273],[127,80,75,-0.3989457826396611],[127,80,76,-0.3957924315292913],[127,80,77,-0.3884345363538018],[127,80,78,-0.37945197721117385],[127,80,79,-0.3696384850167217],[127,81,64,-0.39364839738417384],[127,81,65,-0.39698257261064496],[127,81,66,-0.39785612952837135],[127,81,67,-0.3968433930674359],[127,81,68,-0.3967871350370003],[127,81,69,-0.396980976013192],[127,81,70,-0.3969486114914749],[127,81,71,-0.397048078578497],[127,81,72,-0.40117074412391207],[127,81,73,-0.40863325246946763],[127,81,74,-0.4127885532324401],[127,81,75,-0.4134873346364454],[127,81,76,-0.41027089481905143],[127,81,77,-0.40411892902434937],[127,81,78,-0.395123495631701],[127,81,79,-0.38489788508659595],[127,82,64,-0.40740226550543984],[127,82,65,-0.411223094651304],[127,82,66,-0.4122612492595168],[127,82,67,-0.4114264353307651],[127,82,68,-0.4112840020154569],[127,82,69,-0.41195786645456967],[127,82,70,-0.41153592290696495],[127,82,71,-0.41212292951736174],[127,82,72,-0.4152634783089429],[127,82,73,-0.4223594925905032],[127,82,74,-0.42702491870350356],[127,82,75,-0.42815629028331276],[127,82,76,-0.42471708633400435],[127,82,77,-0.41971161930804635],[127,82,78,-0.4106110434510601],[127,82,79,-0.39931442549654983],[127,83,64,-0.41923065590777375],[127,83,65,-0.4231160156220972],[127,83,66,-0.4249982277033928],[127,83,67,-0.42440329223161344],[127,83,68,-0.4241989209117493],[127,83,69,-0.4243831328876169],[127,83,70,-0.4237881741218919],[127,83,71,-0.4252736641027115],[127,83,72,-0.428439577519211],[127,83,73,-0.43550564528966473],[127,83,74,-0.43994790899911773],[127,83,75,-0.4415176542722533],[127,83,76,-0.43808305274857345],[127,83,77,-0.4327713437416949],[127,83,78,-0.424131085162326],[127,83,79,-0.4128255459986001],[127,84,64,-0.4290782228130876],[127,84,65,-0.4337774518971898],[127,84,66,-0.4368214891456467],[127,84,67,-0.4366451703906844],[127,84,68,-0.436629078560214],[127,84,69,-0.43679816511543945],[127,84,70,-0.43597236399245354],[127,84,71,-0.4377928636496575],[127,84,72,-0.4416843008713033],[127,84,73,-0.44790900869556227],[127,84,74,-0.45229337406594994],[127,84,75,-0.4540071389752302],[127,84,76,-0.4511949389373358],[127,84,77,-0.44533832189057515],[127,84,78,-0.43687340413970227],[127,84,79,-0.42599747599361226],[127,85,64,-0.4374837102021449],[127,85,65,-0.4440150064455459],[127,85,66,-0.44850625800767335],[127,85,67,-0.44916642320373384],[127,85,68,-0.4494536535533992],[127,85,69,-0.4497022966261951],[127,85,70,-0.4485183905304572],[127,85,71,-0.4494367931270958],[127,85,72,-0.4527537498357528],[127,85,73,-0.4581498656873489],[127,85,74,-0.4583333333333333],[127,85,75,-0.4583333333333333],[127,85,76,-0.4583333333333333],[127,85,77,-0.4542892698683945],[127,85,78,-0.4452186686887758],[127,85,79,-0.43454499929289947],[127,86,64,-0.4495995710190028],[127,86,65,-0.45650963319362614],[127,86,66,-0.4583333333333333],[127,86,67,-0.4583333333333333],[127,86,68,-0.4583333333333333],[127,86,69,-0.4583333333333333],[127,86,70,-0.4583333333333333],[127,86,71,-0.4583333333333333],[127,86,72,-0.4583333333333333],[127,86,73,-0.4583333333333333],[127,86,74,-0.4583333333333333],[127,86,75,-0.4583333333333333],[127,86,76,-0.4583333333333333],[127,86,77,-0.4583333333333333],[127,86,78,-0.45718490255143956],[127,86,79,-0.44679313344616256],[127,87,64,-0.4583333333333333],[127,87,65,-0.4583333333333333],[127,87,66,-0.4583333333333333],[127,87,67,-0.4583333333333333],[127,87,68,-0.4583333333333333],[127,87,69,-0.4583333333333333],[127,87,70,-0.4583333333333333],[127,87,71,-0.4583333333333333],[127,87,72,-0.4583333333333333],[127,87,73,-0.4583333333333333],[127,87,74,-0.4583333333333333],[127,87,75,-0.4583333333333333],[127,87,76,-0.4583333333333333],[127,87,77,-0.4583333333333333],[127,87,78,-0.4583333333333333],[127,87,79,-0.4575063538612825],[127,88,64,-0.4583333333333333],[127,88,65,-0.4583333333333333],[127,88,66,-0.4583333333333333],[127,88,67,-0.4583333333333333],[127,88,68,-0.4583333333333333],[127,88,69,-0.4583333333333333],[127,88,70,-0.4583333333333333],[127,88,71,-0.4583333333333333],[127,88,72,-0.4583333333333333],[127,88,73,-0.4583333333333333],[127,88,74,-0.4583333333333333],[127,88,75,-0.4583333333333333],[127,88,76,-0.4583333333333333],[127,88,77,-0.4583333333333333],[127,88,78,-0.4583333333333333],[127,88,79,-0.4583333333333333],[127,89,64,-0.4583333333333333],[127,89,65,-0.4583333333333333],[127,89,66,-0.4583333333333333],[127,89,67,-0.4583333333333333],[127,89,68,-0.4583333333333333],[127,89,69,-0.4583333333333333],[127,89,70,-0.4583333333333333],[127,89,71,-0.4583333333333333],[127,89,72,-0.4583333333333333],[127,89,73,-0.4583333333333333],[127,89,74,-0.4583333333333333],[127,89,75,-0.4583333333333333],[127,89,76,-0.4583333333333333],[127,89,77,-0.4583333333333333],[127,89,78,-0.4583333333333333],[127,89,79,-0.4583333333333333],[127,90,64,-0.4583333333333333],[127,90,65,-0.4583333333333333],[127,90,66,-0.4583333333333333],[127,90,67,-0.4583333333333333],[127,90,68,-0.4583333333333333],[127,90,69,-0.4583333333333333],[127,90,70,-0.4583333333333333],[127,90,71,-0.4583333333333333],[127,90,72,-0.4583333333333333],[127,90,73,-0.4583333333333333],[127,90,74,-0.4583333333333333],[127,90,75,-0.4583333333333333],[127,90,76,-0.4583333333333333],[127,90,77,-0.4583333333333333],[127,90,78,-0.4583333333333333],[127,90,79,-0.4583333333333333],[127,91,64,-0.4583333333333333],[127,91,65,-0.4583333333333333],[127,91,66,-0.4583333333333333],[127,91,67,-0.4583333333333333],[127,91,68,-0.4583333333333333],[127,91,69,-0.4583333333333333],[127,91,70,-0.4583333333333333],[127,91,71,-0.4583333333333333],[127,91,72,-0.4583333333333333],[127,91,73,-0.4583333333333333],[127,91,74,-0.4583333333333333],[127,91,75,-0.4583333333333333],[127,91,76,-0.4583333333333333],[127,91,77,-0.4583333333333333],[127,91,78,-0.4583333333333333],[127,91,79,-0.4583333333333333],[127,92,64,-0.4583333333333333],[127,92,65,-0.4583333333333333],[127,92,66,-0.4583333333333333],[127,92,67,-0.4583333333333333],[127,92,68,-0.4583333333333333],[127,92,69,-0.4583333333333333],[127,92,70,-0.4583333333333333],[127,92,71,-0.4583333333333333],[127,92,72,-0.4583333333333333],[127,92,73,-0.4583333333333333],[127,92,74,-0.4583333333333333],[127,92,75,-0.4583333333333333],[127,92,76,-0.4583333333333333],[127,92,77,-0.4583333333333333],[127,92,78,-0.4583333333333333],[127,92,79,-0.4583333333333333],[127,93,64,-0.4583333333333333],[127,93,65,-0.4583333333333333],[127,93,66,-0.4583333333333333],[127,93,67,-0.4583333333333333],[127,93,68,-0.4583333333333333],[127,93,69,-0.4583333333333333],[127,93,70,-0.4583333333333333],[127,93,71,-0.4583333333333333],[127,93,72,-0.4583333333333333],[127,93,73,-0.4583333333333333],[127,93,74,-0.4583333333333333],[127,93,75,-0.4583333333333333],[127,93,76,-0.4583333333333333],[127,93,77,-0.4583333333333333],[127,93,78,-0.4583333333333333],[127,93,79,-0.4583333333333333],[127,94,64,-0.4583333333333333],[127,94,65,-0.4583333333333333],[127,94,66,-0.4583333333333333],[127,94,67,-0.4583333333333333],[127,94,68,-0.4583333333333333],[127,94,69,-0.4583333333333333],[127,94,70,-0.4583333333333333],[127,94,71,-0.4583333333333333],[127,94,72,-0.4583333333333333],[127,94,73,-0.4583333333333333],[127,94,74,-0.4583333333333333],[127,94,75,-0.4583333333333333],[127,94,76,-0.4583333333333333],[127,94,77,-0.4583333333333333],[127,94,78,-0.4583333333333333],[127,94,79,-0.4583333333333333],[127,95,64,-0.4583333333333333],[127,95,65,-0.4583333333333333],[127,95,66,-0.4583333333333333],[127,95,67,-0.4583333333333333],[127,95,68,-0.4583333333333333],[127,95,69,-0.4583333333333333],[127,95,70,-0.4583333333333333],[127,95,71,-0.4583333333333333],[127,95,72,-0.4583333333333333],[127,95,73,-0.4583333333333333],[127,95,74,-0.4583333333333333],[127,95,75,-0.4583333333333333],[127,95,76,-0.4583333333333333],[127,95,77,-0.4583333333333333],[127,95,78,-0.4583333333333333],[127,95,79,-0.4583333333333333],[127,96,64,-0.4583333333333333],[127,96,65,-0.4583333333333333],[127,96,66,-0.4583333333333333],[127,96,67,-0.4583333333333333],[127,96,68,-0.4583333333333333],[127,96,69,-0.4583333333333333],[127,96,70,-0.4583333333333333],[127,96,71,-0.4583333333333333],[127,96,72,-0.4583333333333333],[127,96,73,-0.4583333333333333],[127,96,74,-0.4583333333333333],[127,96,75,-0.4583333333333333],[127,96,76,-0.4583333333333333],[127,96,77,-0.4583333333333333],[127,96,78,-0.4583333333333333],[127,96,79,-0.4583333333333333],[127,97,64,-0.4583333333333333],[127,97,65,-0.4583333333333333],[127,97,66,-0.4583333333333333],[127,97,67,-0.4583333333333333],[127,97,68,-0.4583333333333333],[127,97,69,-0.4583333333333333],[127,97,70,-0.4583333333333333],[127,97,71,-0.4583333333333333],[127,97,72,-0.4583333333333333],[127,97,73,-0.4583333333333333],[127,97,74,-0.4583333333333333],[127,97,75,-0.4583333333333333],[127,97,76,-0.4583333333333333],[127,97,77,-0.4583333333333333],[127,97,78,-0.4583333333333333],[127,97,79,-0.4583333333333333],[127,98,64,-0.4583333333333333],[127,98,65,-0.4583333333333333],[127,98,66,-0.4583333333333333],[127,98,67,-0.4583333333333333],[127,98,68,-0.4583333333333333],[127,98,69,-0.4583333333333333],[127,98,70,-0.4583333333333333],[127,98,71,-0.4583333333333333],[127,98,72,-0.4583333333333333],[127,98,73,-0.4583333333333333],[127,98,74,-0.4583333333333333],[127,98,75,-0.4583333333333333],[127,98,76,-0.4583333333333333],[127,98,77,-0.4583333333333333],[127,98,78,-0.4583333333333333],[127,98,79,-0.4583333333333333],[127,99,64,-0.4583333333333333],[127,99,65,-0.4583333333333333],[127,99,66,-0.4583333333333333],[127,99,67,-0.4583333333333333],[127,99,68,-0.4583333333333333],[127,99,69,-0.4583333333333333],[127,99,70,-0.4583333333333333],[127,99,71,-0.4583333333333333],[127,99,72,-0.4583333333333333],[127,99,73,-0.4583333333333333],[127,99,74,-0.4583333333333333],[127,99,75,-0.4583333333333333],[127,99,76,-0.4583333333333333],[127,99,77,-0.4583333333333333],[127,99,78,-0.4583333333333333],[127,99,79,-0.4583333333333333],[127,100,64,-0.4583333333333333],[127,100,65,-0.4583333333333333],[127,100,66,-0.4583333333333333],[127,100,67,-0.4583333333333333],[127,100,68,-0.4583333333333333],[127,100,69,-0.4583333333333333],[127,100,70,-0.4583333333333333],[127,100,71,-0.4583333333333333],[127,100,72,-0.4583333333333333],[127,100,73,-0.4583333333333333],[127,100,74,-0.4583333333333333],[127,100,75,-0.4583333333333333],[127,100,76,-0.4583333333333333],[127,100,77,-0.4583333333333333],[127,100,78,-0.4583333333333333],[127,100,79,-0.4583333333333333],[127,101,64,-0.4583333333333333],[127,101,65,-0.4583333333333333],[127,101,66,-0.4583333333333333],[127,101,67,-0.4583333333333333],[127,101,68,-0.4583333333333333],[127,101,69,-0.4583333333333333],[127,101,70,-0.4583333333333333],[127,101,71,-0.4583333333333333],[127,101,72,-0.4583333333333333],[127,101,73,-0.4583333333333333],[127,101,74,-0.4583333333333333],[127,101,75,-0.4583333333333333],[127,101,76,-0.4583333333333333],[127,101,77,-0.4583333333333333],[127,101,78,-0.4583333333333333],[127,101,79,-0.4583333333333333],[127,102,64,-0.4583333333333333],[127,102,65,-0.4583333333333333],[127,102,66,-0.4583333333333333],[127,102,67,-0.4583333333333333],[127,102,68,-0.4583333333333333],[127,102,69,-0.4583333333333333],[127,102,70,-0.4583333333333333],[127,102,71,-0.4583333333333333],[127,102,72,-0.4583333333333333],[127,102,73,-0.4583333333333333],[127,102,74,-0.4583333333333333],[127,102,75,-0.4583333333333333],[127,102,76,-0.4583333333333333],[127,102,77,-0.4583333333333333],[127,102,78,-0.4583333333333333],[127,102,79,-0.4583333333333333],[127,103,64,-0.4583333333333333],[127,103,65,-0.4583333333333333],[127,103,66,-0.4583333333333333],[127,103,67,-0.4583333333333333],[127,103,68,-0.4583333333333333],[127,103,69,-0.4583333333333333],[127,103,70,-0.4583333333333333],[127,103,71,-0.4583333333333333],[127,103,72,-0.4583333333333333],[127,103,73,-0.4583333333333333],[127,103,74,-0.4583333333333333],[127,103,75,-0.4583333333333333],[127,103,76,-0.4583333333333333],[127,103,77,-0.4583333333333333],[127,103,78,-0.4583333333333333],[127,103,79,-0.4583333333333333],[127,104,64,-0.4583333333333333],[127,104,65,-0.4583333333333333],[127,104,66,-0.4583333333333333],[127,104,67,-0.4583333333333333],[127,104,68,-0.4583333333333333],[127,104,69,-0.4583333333333333],[127,104,70,-0.4583333333333333],[127,104,71,-0.4583333333333333],[127,104,72,-0.4583333333333333],[127,104,73,-0.4583333333333333],[127,104,74,-0.4583333333333333],[127,104,75,-0.4583333333333333],[127,104,76,-0.4583333333333333],[127,104,77,-0.4583333333333333],[127,104,78,-0.4583333333333333],[127,104,79,-0.4583333333333333],[127,105,64,-0.4583333333333333],[127,105,65,-0.4583333333333333],[127,105,66,-0.4583333333333333],[127,105,67,-0.4583333333333333],[127,105,68,-0.4583333333333333],[127,105,69,-0.4583333333333333],[127,105,70,-0.4583333333333333],[127,105,71,-0.4583333333333333],[127,105,72,-0.4583333333333333],[127,105,73,-0.4583333333333333],[127,105,74,-0.4583333333333333],[127,105,75,-0.4583333333333333],[127,105,76,-0.4583333333333333],[127,105,77,-0.4583333333333333],[127,105,78,-0.4583333333333333],[127,105,79,-0.4583333333333333],[127,106,64,-0.4583333333333333],[127,106,65,-0.4583333333333333],[127,106,66,-0.4583333333333333],[127,106,67,-0.4583333333333333],[127,106,68,-0.4583333333333333],[127,106,69,-0.4583333333333333],[127,106,70,-0.4583333333333333],[127,106,71,-0.4583333333333333],[127,106,72,-0.4583333333333333],[127,106,73,-0.4583333333333333],[127,106,74,-0.4583333333333333],[127,106,75,-0.4583333333333333],[127,106,76,-0.4583333333333333],[127,106,77,-0.4583333333333333],[127,106,78,-0.4583333333333333],[127,106,79,-0.4583333333333333],[127,107,64,-0.4583333333333333],[127,107,65,-0.4583333333333333],[127,107,66,-0.4583333333333333],[127,107,67,-0.4583333333333333],[127,107,68,-0.4583333333333333],[127,107,69,-0.4583333333333333],[127,107,70,-0.4583333333333333],[127,107,71,-0.4583333333333333],[127,107,72,-0.4583333333333333],[127,107,73,-0.4583333333333333],[127,107,74,-0.4583333333333333],[127,107,75,-0.4583333333333333],[127,107,76,-0.4583333333333333],[127,107,77,-0.4583333333333333],[127,107,78,-0.4583333333333333],[127,107,79,-0.4583333333333333],[127,108,64,-0.4583333333333333],[127,108,65,-0.4583333333333333],[127,108,66,-0.4583333333333333],[127,108,67,-0.4583333333333333],[127,108,68,-0.4583333333333333],[127,108,69,-0.4583333333333333],[127,108,70,-0.4583333333333333],[127,108,71,-0.4583333333333333],[127,108,72,-0.4583333333333333],[127,108,73,-0.4583333333333333],[127,108,74,-0.4583333333333333],[127,108,75,-0.4583333333333333],[127,108,76,-0.4583333333333333],[127,108,77,-0.4583333333333333],[127,108,78,-0.4583333333333333],[127,108,79,-0.4583333333333333],[127,109,64,-0.4583333333333333],[127,109,65,-0.4583333333333333],[127,109,66,-0.4583333333333333],[127,109,67,-0.4583333333333333],[127,109,68,-0.4583333333333333],[127,109,69,-0.4583333333333333],[127,109,70,-0.4583333333333333],[127,109,71,-0.4583333333333333],[127,109,72,-0.4583333333333333],[127,109,73,-0.4583333333333333],[127,109,74,-0.4583333333333333],[127,109,75,-0.4583333333333333],[127,109,76,-0.4583333333333333],[127,109,77,-0.4583333333333333],[127,109,78,-0.4583333333333333],[127,109,79,-0.4583333333333333],[127,110,64,-0.4583333333333333],[127,110,65,-0.4583333333333333],[127,110,66,-0.4583333333333333],[127,110,67,-0.4583333333333333],[127,110,68,-0.4583333333333333],[127,110,69,-0.4583333333333333],[127,110,70,-0.4583333333333333],[127,110,71,-0.4583333333333333],[127,110,72,-0.4583333333333333],[127,110,73,-0.4583333333333333],[127,110,74,-0.4583333333333333],[127,110,75,-0.4583333333333333],[127,110,76,-0.4583333333333333],[127,110,77,-0.4583333333333333],[127,110,78,-0.4583333333333333],[127,110,79,-0.4583333333333333],[127,111,64,-0.4583333333333333],[127,111,65,-0.4583333333333333],[127,111,66,-0.4583333333333333],[127,111,67,-0.4583333333333333],[127,111,68,-0.4583333333333333],[127,111,69,-0.4583333333333333],[127,111,70,-0.4583333333333333],[127,111,71,-0.4583333333333333],[127,111,72,-0.4583333333333333],[127,111,73,-0.4583333333333333],[127,111,74,-0.4583333333333333],[127,111,75,-0.4583333333333333],[127,111,76,-0.4583333333333333],[127,111,77,-0.4583333333333333],[127,111,78,-0.4583333333333333],[127,111,79,-0.4583333333333333],[127,112,64,-0.4583333333333333],[127,112,65,-0.4583333333333333],[127,112,66,-0.4583333333333333],[127,112,67,-0.4583333333333333],[127,112,68,-0.4583333333333333],[127,112,69,-0.4583333333333333],[127,112,70,-0.4583333333333333],[127,112,71,-0.4583333333333333],[127,112,72,-0.4583333333333333],[127,112,73,-0.4583333333333333],[127,112,74,-0.4583333333333333],[127,112,75,-0.4583333333333333],[127,112,76,-0.4583333333333333],[127,112,77,-0.4583333333333333],[127,112,78,-0.4583333333333333],[127,112,79,-0.4583333333333333],[127,113,64,-0.4583333333333333],[127,113,65,-0.4583333333333333],[127,113,66,-0.4583333333333333],[127,113,67,-0.4583333333333333],[127,113,68,-0.4583333333333333],[127,113,69,-0.4583333333333333],[127,113,70,-0.4583333333333333],[127,113,71,-0.4583333333333333],[127,113,72,-0.4583333333333333],[127,113,73,-0.4583333333333333],[127,113,74,-0.4583333333333333],[127,113,75,-0.4583333333333333],[127,113,76,-0.4583333333333333],[127,113,77,-0.4583333333333333],[127,113,78,-0.4583333333333333],[127,113,79,-0.4583333333333333],[127,114,64,-0.4583333333333333],[127,114,65,-0.4583333333333333],[127,114,66,-0.4583333333333333],[127,114,67,-0.4583333333333333],[127,114,68,-0.4583333333333333],[127,114,69,-0.4583333333333333],[127,114,70,-0.4583333333333333],[127,114,71,-0.4583333333333333],[127,114,72,-0.4583333333333333],[127,114,73,-0.4583333333333333],[127,114,74,-0.4583333333333333],[127,114,75,-0.4583333333333333],[127,114,76,-0.4583333333333333],[127,114,77,-0.4583333333333333],[127,114,78,-0.4583333333333333],[127,114,79,-0.4583333333333333],[127,115,64,-0.4583333333333333],[127,115,65,-0.4583333333333333],[127,115,66,-0.4583333333333333],[127,115,67,-0.4583333333333333],[127,115,68,-0.4583333333333333],[127,115,69,-0.4583333333333333],[127,115,70,-0.4583333333333333],[127,115,71,-0.4583333333333333],[127,115,72,-0.4583333333333333],[127,115,73,-0.4583333333333333],[127,115,74,-0.4583333333333333],[127,115,75,-0.4583333333333333],[127,115,76,-0.4583333333333333],[127,115,77,-0.4583333333333333],[127,115,78,-0.4583333333333333],[127,115,79,-0.4583333333333333],[127,116,64,-0.4583333333333333],[127,116,65,-0.4583333333333333],[127,116,66,-0.4583333333333333],[127,116,67,-0.4583333333333333],[127,116,68,-0.4583333333333333],[127,116,69,-0.4583333333333333],[127,116,70,-0.4583333333333333],[127,116,71,-0.4583333333333333],[127,116,72,-0.4583333333333333],[127,116,73,-0.4583333333333333],[127,116,74,-0.4583333333333333],[127,116,75,-0.4583333333333333],[127,116,76,-0.4583333333333333],[127,116,77,-0.4583333333333333],[127,116,78,-0.4583333333333333],[127,116,79,-0.4583333333333333],[127,117,64,-0.4583333333333333],[127,117,65,-0.4583333333333333],[127,117,66,-0.4583333333333333],[127,117,67,-0.4583333333333333],[127,117,68,-0.4583333333333333],[127,117,69,-0.4583333333333333],[127,117,70,-0.4583333333333333],[127,117,71,-0.4583333333333333],[127,117,72,-0.4583333333333333],[127,117,73,-0.4583333333333333],[127,117,74,-0.4583333333333333],[127,117,75,-0.4583333333333333],[127,117,76,-0.4583333333333333],[127,117,77,-0.4583333333333333],[127,117,78,-0.4583333333333333],[127,117,79,-0.4583333333333333],[127,118,64,-0.4583333333333333],[127,118,65,-0.4583333333333333],[127,118,66,-0.4583333333333333],[127,118,67,-0.4583333333333333],[127,118,68,-0.4583333333333333],[127,118,69,-0.4583333333333333],[127,118,70,-0.4583333333333333],[127,118,71,-0.4583333333333333],[127,118,72,-0.4583333333333333],[127,118,73,-0.4583333333333333],[127,118,74,-0.4583333333333333],[127,118,75,-0.4583333333333333],[127,118,76,-0.4583333333333333],[127,118,77,-0.4583333333333333],[127,118,78,-0.4583333333333333],[127,118,79,-0.4583333333333333],[127,119,64,-0.4583333333333333],[127,119,65,-0.4583333333333333],[127,119,66,-0.4583333333333333],[127,119,67,-0.4583333333333333],[127,119,68,-0.4583333333333333],[127,119,69,-0.4583333333333333],[127,119,70,-0.4583333333333333],[127,119,71,-0.4583333333333333],[127,119,72,-0.4583333333333333],[127,119,73,-0.4583333333333333],[127,119,74,-0.4583333333333333],[127,119,75,-0.4583333333333333],[127,119,76,-0.4583333333333333],[127,119,77,-0.4583333333333333],[127,119,78,-0.4583333333333333],[127,119,79,-0.4583333333333333],[127,120,64,-0.4583333333333333],[127,120,65,-0.4583333333333333],[127,120,66,-0.4583333333333333],[127,120,67,-0.4583333333333333],[127,120,68,-0.4583333333333333],[127,120,69,-0.4583333333333333],[127,120,70,-0.4583333333333333],[127,120,71,-0.4583333333333333],[127,120,72,-0.4583333333333333],[127,120,73,-0.4583333333333333],[127,120,74,-0.4583333333333333],[127,120,75,-0.4583333333333333],[127,120,76,-0.4583333333333333],[127,120,77,-0.4583333333333333],[127,120,78,-0.4583333333333333],[127,120,79,-0.4583333333333333],[127,121,64,-0.4583333333333333],[127,121,65,-0.4583333333333333],[127,121,66,-0.4583333333333333],[127,121,67,-0.4583333333333333],[127,121,68,-0.4583333333333333],[127,121,69,-0.4583333333333333],[127,121,70,-0.4583333333333333],[127,121,71,-0.4583333333333333],[127,121,72,-0.4583333333333333],[127,121,73,-0.4583333333333333],[127,121,74,-0.4583333333333333],[127,121,75,-0.4583333333333333],[127,121,76,-0.4583333333333333],[127,121,77,-0.4583333333333333],[127,121,78,-0.4583333333333333],[127,121,79,-0.4583333333333333],[127,122,64,-0.4583333333333333],[127,122,65,-0.4583333333333333],[127,122,66,-0.4583333333333333],[127,122,67,-0.4583333333333333],[127,122,68,-0.4583333333333333],[127,122,69,-0.4583333333333333],[127,122,70,-0.4583333333333333],[127,122,71,-0.4583333333333333],[127,122,72,-0.4583333333333333],[127,122,73,-0.4583333333333333],[127,122,74,-0.4583333333333333],[127,122,75,-0.4583333333333333],[127,122,76,-0.4583333333333333],[127,122,77,-0.4583333333333333],[127,122,78,-0.4583333333333333],[127,122,79,-0.4583333333333333],[127,123,64,-0.4583333333333333],[127,123,65,-0.4583333333333333],[127,123,66,-0.4583333333333333],[127,123,67,-0.4583333333333333],[127,123,68,-0.4583333333333333],[127,123,69,-0.4583333333333333],[127,123,70,-0.4583333333333333],[127,123,71,-0.4583333333333333],[127,123,72,-0.4583333333333333],[127,123,73,-0.4583333333333333],[127,123,74,-0.4583333333333333],[127,123,75,-0.4583333333333333],[127,123,76,-0.4583333333333333],[127,123,77,-0.4583333333333333],[127,123,78,-0.4583333333333333],[127,123,79,-0.4583333333333333],[127,124,64,-0.4583333333333333],[127,124,65,-0.4583333333333333],[127,124,66,-0.4583333333333333],[127,124,67,-0.4583333333333333],[127,124,68,-0.4583333333333333],[127,124,69,-0.4583333333333333],[127,124,70,-0.4583333333333333],[127,124,71,-0.4583333333333333],[127,124,72,-0.4583333333333333],[127,124,73,-0.4583333333333333],[127,124,74,-0.4583333333333333],[127,124,75,-0.4583333333333333],[127,124,76,-0.4583333333333333],[127,124,77,-0.4583333333333333],[127,124,78,-0.4583333333333333],[127,124,79,-0.4583333333333333],[127,125,64,-0.4583333333333333],[127,125,65,-0.4583333333333333],[127,125,66,-0.4583333333333333],[127,125,67,-0.4583333333333333],[127,125,68,-0.4583333333333333],[127,125,69,-0.4583333333333333],[127,125,70,-0.4583333333333333],[127,125,71,-0.4583333333333333],[127,125,72,-0.4583333333333333],[127,125,73,-0.4583333333333333],[127,125,74,-0.4583333333333333],[127,125,75,-0.4583333333333333],[127,125,76,-0.4583333333333333],[127,125,77,-0.4583333333333333],[127,125,78,-0.4583333333333333],[127,125,79,-0.4583333333333333],[127,126,64,-0.4583333333333333],[127,126,65,-0.4583333333333333],[127,126,66,-0.4583333333333333],[127,126,67,-0.4583333333333333],[127,126,68,-0.4583333333333333],[127,126,69,-0.4583333333333333],[127,126,70,-0.4583333333333333],[127,126,71,-0.4583333333333333],[127,126,72,-0.4583333333333333],[127,126,73,-0.4583333333333333],[127,126,74,-0.4583333333333333],[127,126,75,-0.4583333333333333],[127,126,76,-0.4583333333333333],[127,126,77,-0.4583333333333333],[127,126,78,-0.4583333333333333],[127,126,79,-0.4583333333333333],[127,127,64,-0.4583333333333333],[127,127,65,-0.4583333333333333],[127,127,66,-0.4583333333333333],[127,127,67,-0.4583333333333333],[127,127,68,-0.4583333333333333],[127,127,69,-0.4583333333333333],[127,127,70,-0.4583333333333333],[127,127,71,-0.4583333333333333],[127,127,72,-0.4583333333333333],[127,127,73,-0.4583333333333333],[127,127,74,-0.4583333333333333],[127,127,75,-0.4583333333333333],[127,127,76,-0.4583333333333333],[127,127,77,-0.4583333333333333],[127,127,78,-0.4583333333333333],[127,127,79,-0.4583333333333333],[127,128,64,-0.4583333333333333],[127,128,65,-0.4583333333333333],[127,128,66,-0.4583333333333333],[127,128,67,-0.4583333333333333],[127,128,68,-0.4583333333333333],[127,128,69,-0.4583333333333333],[127,128,70,-0.4583333333333333],[127,128,71,-0.4583333333333333],[127,128,72,-0.4583333333333333],[127,128,73,-0.4583333333333333],[127,128,74,-0.4583333333333333],[127,128,75,-0.4583333333333333],[127,128,76,-0.4583333333333333],[127,128,77,-0.4583333333333333],[127,128,78,-0.4583333333333333],[127,128,79,-0.4583333333333333],[127,129,64,-0.4583333333333333],[127,129,65,-0.4583333333333333],[127,129,66,-0.4583333333333333],[127,129,67,-0.4583333333333333],[127,129,68,-0.4583333333333333],[127,129,69,-0.4583333333333333],[127,129,70,-0.4583333333333333],[127,129,71,-0.4583333333333333],[127,129,72,-0.4583333333333333],[127,129,73,-0.4583333333333333],[127,129,74,-0.4583333333333333],[127,129,75,-0.4583333333333333],[127,129,76,-0.4583333333333333],[127,129,77,-0.4583333333333333],[127,129,78,-0.4583333333333333],[127,129,79,-0.4583333333333333],[127,130,64,-0.4583333333333333],[127,130,65,-0.4583333333333333],[127,130,66,-0.4583333333333333],[127,130,67,-0.4583333333333333],[127,130,68,-0.4583333333333333],[127,130,69,-0.4583333333333333],[127,130,70,-0.4583333333333333],[127,130,71,-0.4583333333333333],[127,130,72,-0.4583333333333333],[127,130,73,-0.4583333333333333],[127,130,74,-0.4583333333333333],[127,130,75,-0.4583333333333333],[127,130,76,-0.4583333333333333],[127,130,77,-0.4583333333333333],[127,130,78,-0.4583333333333333],[127,130,79,-0.4583333333333333],[127,131,64,-0.4583333333333333],[127,131,65,-0.4583333333333333],[127,131,66,-0.4583333333333333],[127,131,67,-0.4583333333333333],[127,131,68,-0.4583333333333333],[127,131,69,-0.4583333333333333],[127,131,70,-0.4583333333333333],[127,131,71,-0.4583333333333333],[127,131,72,-0.4583333333333333],[127,131,73,-0.4583333333333333],[127,131,74,-0.4583333333333333],[127,131,75,-0.4583333333333333],[127,131,76,-0.4583333333333333],[127,131,77,-0.4583333333333333],[127,131,78,-0.4583333333333333],[127,131,79,-0.4583333333333333],[127,132,64,-0.4583333333333333],[127,132,65,-0.4583333333333333],[127,132,66,-0.4583333333333333],[127,132,67,-0.4583333333333333],[127,132,68,-0.4583333333333333],[127,132,69,-0.4583333333333333],[127,132,70,-0.4583333333333333],[127,132,71,-0.4583333333333333],[127,132,72,-0.4583333333333333],[127,132,73,-0.4583333333333333],[127,132,74,-0.4583333333333333],[127,132,75,-0.4583333333333333],[127,132,76,-0.4583333333333333],[127,132,77,-0.4583333333333333],[127,132,78,-0.4583333333333333],[127,132,79,-0.4583333333333333],[127,133,64,-0.4583333333333333],[127,133,65,-0.4583333333333333],[127,133,66,-0.4583333333333333],[127,133,67,-0.4583333333333333],[127,133,68,-0.4583333333333333],[127,133,69,-0.4583333333333333],[127,133,70,-0.4583333333333333],[127,133,71,-0.4583333333333333],[127,133,72,-0.4583333333333333],[127,133,73,-0.4583333333333333],[127,133,74,-0.4583333333333333],[127,133,75,-0.4583333333333333],[127,133,76,-0.4583333333333333],[127,133,77,-0.4583333333333333],[127,133,78,-0.4583333333333333],[127,133,79,-0.4583333333333333],[127,134,64,-0.4583333333333333],[127,134,65,-0.4583333333333333],[127,134,66,-0.4583333333333333],[127,134,67,-0.4583333333333333],[127,134,68,-0.4583333333333333],[127,134,69,-0.4583333333333333],[127,134,70,-0.4583333333333333],[127,134,71,-0.4583333333333333],[127,134,72,-0.4583333333333333],[127,134,73,-0.4583333333333333],[127,134,74,-0.4583333333333333],[127,134,75,-0.4583333333333333],[127,134,76,-0.4583333333333333],[127,134,77,-0.4583333333333333],[127,134,78,-0.4583333333333333],[127,134,79,-0.4583333333333333],[127,135,64,-0.4583333333333333],[127,135,65,-0.4583333333333333],[127,135,66,-0.4583333333333333],[127,135,67,-0.4583333333333333],[127,135,68,-0.4583333333333333],[127,135,69,-0.4583333333333333],[127,135,70,-0.4583333333333333],[127,135,71,-0.4583333333333333],[127,135,72,-0.4583333333333333],[127,135,73,-0.4583333333333333],[127,135,74,-0.4583333333333333],[127,135,75,-0.4583333333333333],[127,135,76,-0.4583333333333333],[127,135,77,-0.4583333333333333],[127,135,78,-0.4583333333333333],[127,135,79,-0.4583333333333333],[127,136,64,-0.4583333333333333],[127,136,65,-0.4583333333333333],[127,136,66,-0.4583333333333333],[127,136,67,-0.4583333333333333],[127,136,68,-0.4583333333333333],[127,136,69,-0.4583333333333333],[127,136,70,-0.4583333333333333],[127,136,71,-0.4583333333333333],[127,136,72,-0.4583333333333333],[127,136,73,-0.4583333333333333],[127,136,74,-0.4583333333333333],[127,136,75,-0.4583333333333333],[127,136,76,-0.4583333333333333],[127,136,77,-0.4583333333333333],[127,136,78,-0.4583333333333333],[127,136,79,-0.4583333333333333],[127,137,64,-0.4583333333333333],[127,137,65,-0.4583333333333333],[127,137,66,-0.4583333333333333],[127,137,67,-0.4583333333333333],[127,137,68,-0.4583333333333333],[127,137,69,-0.4583333333333333],[127,137,70,-0.4583333333333333],[127,137,71,-0.4583333333333333],[127,137,72,-0.4583333333333333],[127,137,73,-0.4583333333333333],[127,137,74,-0.4583333333333333],[127,137,75,-0.4583333333333333],[127,137,76,-0.4583333333333333],[127,137,77,-0.4583333333333333],[127,137,78,-0.4583333333333333],[127,137,79,-0.4583333333333333],[127,138,64,-0.4583333333333333],[127,138,65,-0.4583333333333333],[127,138,66,-0.4583333333333333],[127,138,67,-0.4583333333333333],[127,138,68,-0.4583333333333333],[127,138,69,-0.4583333333333333],[127,138,70,-0.4583333333333333],[127,138,71,-0.4583333333333333],[127,138,72,-0.4583333333333333],[127,138,73,-0.4583333333333333],[127,138,74,-0.4583333333333333],[127,138,75,-0.4583333333333333],[127,138,76,-0.4583333333333333],[127,138,77,-0.4583333333333333],[127,138,78,-0.4583333333333333],[127,138,79,-0.4583333333333333],[127,139,64,-0.4583333333333333],[127,139,65,-0.4583333333333333],[127,139,66,-0.4583333333333333],[127,139,67,-0.4583333333333333],[127,139,68,-0.4583333333333333],[127,139,69,-0.4583333333333333],[127,139,70,-0.4583333333333333],[127,139,71,-0.4583333333333333],[127,139,72,-0.4583333333333333],[127,139,73,-0.4583333333333333],[127,139,74,-0.4583333333333333],[127,139,75,-0.4583333333333333],[127,139,76,-0.4583333333333333],[127,139,77,-0.4583333333333333],[127,139,78,-0.4583333333333333],[127,139,79,-0.4583333333333333],[127,140,64,-0.4583333333333333],[127,140,65,-0.4583333333333333],[127,140,66,-0.4583333333333333],[127,140,67,-0.4583333333333333],[127,140,68,-0.4583333333333333],[127,140,69,-0.4583333333333333],[127,140,70,-0.4583333333333333],[127,140,71,-0.4583333333333333],[127,140,72,-0.4583333333333333],[127,140,73,-0.4583333333333333],[127,140,74,-0.4583333333333333],[127,140,75,-0.4583333333333333],[127,140,76,-0.4583333333333333],[127,140,77,-0.4583333333333333],[127,140,78,-0.4583333333333333],[127,140,79,-0.4583333333333333],[127,141,64,-0.4583333333333333],[127,141,65,-0.4583333333333333],[127,141,66,-0.4583333333333333],[127,141,67,-0.4583333333333333],[127,141,68,-0.4583333333333333],[127,141,69,-0.4583333333333333],[127,141,70,-0.4583333333333333],[127,141,71,-0.4583333333333333],[127,141,72,-0.4583333333333333],[127,141,73,-0.4583333333333333],[127,141,74,-0.4583333333333333],[127,141,75,-0.4583333333333333],[127,141,76,-0.4583333333333333],[127,141,77,-0.4583333333333333],[127,141,78,-0.4583333333333333],[127,141,79,-0.4583333333333333],[127,142,64,-0.4583333333333333],[127,142,65,-0.4583333333333333],[127,142,66,-0.4583333333333333],[127,142,67,-0.4583333333333333],[127,142,68,-0.4583333333333333],[127,142,69,-0.4583333333333333],[127,142,70,-0.4583333333333333],[127,142,71,-0.4583333333333333],[127,142,72,-0.4583333333333333],[127,142,73,-0.4583333333333333],[127,142,74,-0.4583333333333333],[127,142,75,-0.4583333333333333],[127,142,76,-0.4583333333333333],[127,142,77,-0.4583333333333333],[127,142,78,-0.4583333333333333],[127,142,79,-0.4583333333333333],[127,143,64,-0.4583333333333333],[127,143,65,-0.4583333333333333],[127,143,66,-0.4583333333333333],[127,143,67,-0.4583333333333333],[127,143,68,-0.4583333333333333],[127,143,69,-0.4583333333333333],[127,143,70,-0.4583333333333333],[127,143,71,-0.4583333333333333],[127,143,72,-0.4583333333333333],[127,143,73,-0.4583333333333333],[127,143,74,-0.4583333333333333],[127,143,75,-0.4583333333333333],[127,143,76,-0.4583333333333333],[127,143,77,-0.4583333333333333],[127,143,78,-0.4583333333333333],[127,143,79,-0.4583333333333333],[127,144,64,-0.4583333333333333],[127,144,65,-0.4583333333333333],[127,144,66,-0.4583333333333333],[127,144,67,-0.4583333333333333],[127,144,68,-0.4583333333333333],[127,144,69,-0.4583333333333333],[127,144,70,-0.4583333333333333],[127,144,71,-0.4583333333333333],[127,144,72,-0.4583333333333333],[127,144,73,-0.4583333333333333],[127,144,74,-0.4583333333333333],[127,144,75,-0.4583333333333333],[127,144,76,-0.4583333333333333],[127,144,77,-0.4583333333333333],[127,144,78,-0.4583333333333333],[127,144,79,-0.4583333333333333],[127,145,64,-0.4583333333333333],[127,145,65,-0.4583333333333333],[127,145,66,-0.4583333333333333],[127,145,67,-0.4583333333333333],[127,145,68,-0.4583333333333333],[127,145,69,-0.4583333333333333],[127,145,70,-0.4583333333333333],[127,145,71,-0.4583333333333333],[127,145,72,-0.4583333333333333],[127,145,73,-0.4583333333333333],[127,145,74,-0.4583333333333333],[127,145,75,-0.4583333333333333],[127,145,76,-0.4583333333333333],[127,145,77,-0.4583333333333333],[127,145,78,-0.4583333333333333],[127,145,79,-0.4583333333333333],[127,146,64,-0.4583333333333333],[127,146,65,-0.4583333333333333],[127,146,66,-0.4583333333333333],[127,146,67,-0.4583333333333333],[127,146,68,-0.4583333333333333],[127,146,69,-0.4583333333333333],[127,146,70,-0.4583333333333333],[127,146,71,-0.4583333333333333],[127,146,72,-0.4583333333333333],[127,146,73,-0.4583333333333333],[127,146,74,-0.4583333333333333],[127,146,75,-0.4583333333333333],[127,146,76,-0.4583333333333333],[127,146,77,-0.4583333333333333],[127,146,78,-0.4583333333333333],[127,146,79,-0.4583333333333333],[127,147,64,-0.4583333333333333],[127,147,65,-0.4583333333333333],[127,147,66,-0.4583333333333333],[127,147,67,-0.4583333333333333],[127,147,68,-0.4583333333333333],[127,147,69,-0.4583333333333333],[127,147,70,-0.4583333333333333],[127,147,71,-0.4583333333333333],[127,147,72,-0.4583333333333333],[127,147,73,-0.4583333333333333],[127,147,74,-0.4583333333333333],[127,147,75,-0.4583333333333333],[127,147,76,-0.4583333333333333],[127,147,77,-0.4583333333333333],[127,147,78,-0.4583333333333333],[127,147,79,-0.4583333333333333],[127,148,64,-0.4583333333333333],[127,148,65,-0.4583333333333333],[127,148,66,-0.4583333333333333],[127,148,67,-0.4583333333333333],[127,148,68,-0.4583333333333333],[127,148,69,-0.4583333333333333],[127,148,70,-0.4583333333333333],[127,148,71,-0.4583333333333333],[127,148,72,-0.4583333333333333],[127,148,73,-0.4583333333333333],[127,148,74,-0.4583333333333333],[127,148,75,-0.4583333333333333],[127,148,76,-0.4583333333333333],[127,148,77,-0.4583333333333333],[127,148,78,-0.4583333333333333],[127,148,79,-0.4583333333333333],[127,149,64,-0.4583333333333333],[127,149,65,-0.4583333333333333],[127,149,66,-0.4583333333333333],[127,149,67,-0.4583333333333333],[127,149,68,-0.4583333333333333],[127,149,69,-0.4583333333333333],[127,149,70,-0.4583333333333333],[127,149,71,-0.4583333333333333],[127,149,72,-0.4583333333333333],[127,149,73,-0.4583333333333333],[127,149,74,-0.4583333333333333],[127,149,75,-0.4583333333333333],[127,149,76,-0.4583333333333333],[127,149,77,-0.4583333333333333],[127,149,78,-0.4583333333333333],[127,149,79,-0.4583333333333333],[127,150,64,-0.4583333333333333],[127,150,65,-0.4583333333333333],[127,150,66,-0.4583333333333333],[127,150,67,-0.4583333333333333],[127,150,68,-0.4583333333333333],[127,150,69,-0.4583333333333333],[127,150,70,-0.4583333333333333],[127,150,71,-0.4583333333333333],[127,150,72,-0.4583333333333333],[127,150,73,-0.4583333333333333],[127,150,74,-0.4583333333333333],[127,150,75,-0.4583333333333333],[127,150,76,-0.4583333333333333],[127,150,77,-0.4583333333333333],[127,150,78,-0.4583333333333333],[127,150,79,-0.4583333333333333],[127,151,64,-0.4583333333333333],[127,151,65,-0.4583333333333333],[127,151,66,-0.4583333333333333],[127,151,67,-0.4583333333333333],[127,151,68,-0.4583333333333333],[127,151,69,-0.4583333333333333],[127,151,70,-0.4583333333333333],[127,151,71,-0.4583333333333333],[127,151,72,-0.4583333333333333],[127,151,73,-0.4583333333333333],[127,151,74,-0.4583333333333333],[127,151,75,-0.4583333333333333],[127,151,76,-0.4583333333333333],[127,151,77,-0.4583333333333333],[127,151,78,-0.4583333333333333],[127,151,79,-0.4583333333333333],[127,152,64,-0.4583333333333333],[127,152,65,-0.4583333333333333],[127,152,66,-0.4583333333333333],[127,152,67,-0.4583333333333333],[127,152,68,-0.4583333333333333],[127,152,69,-0.4583333333333333],[127,152,70,-0.4583333333333333],[127,152,71,-0.4583333333333333],[127,152,72,-0.4583333333333333],[127,152,73,-0.4583333333333333],[127,152,74,-0.4583333333333333],[127,152,75,-0.4583333333333333],[127,152,76,-0.4583333333333333],[127,152,77,-0.4583333333333333],[127,152,78,-0.4583333333333333],[127,152,79,-0.4583333333333333],[127,153,64,-0.4583333333333333],[127,153,65,-0.4583333333333333],[127,153,66,-0.4583333333333333],[127,153,67,-0.4583333333333333],[127,153,68,-0.4583333333333333],[127,153,69,-0.4583333333333333],[127,153,70,-0.4583333333333333],[127,153,71,-0.4583333333333333],[127,153,72,-0.4583333333333333],[127,153,73,-0.4583333333333333],[127,153,74,-0.4583333333333333],[127,153,75,-0.4583333333333333],[127,153,76,-0.4583333333333333],[127,153,77,-0.4583333333333333],[127,153,78,-0.4583333333333333],[127,153,79,-0.4583333333333333],[127,154,64,-0.4583333333333333],[127,154,65,-0.4583333333333333],[127,154,66,-0.4583333333333333],[127,154,67,-0.4583333333333333],[127,154,68,-0.4583333333333333],[127,154,69,-0.4583333333333333],[127,154,70,-0.4583333333333333],[127,154,71,-0.4583333333333333],[127,154,72,-0.4583333333333333],[127,154,73,-0.4583333333333333],[127,154,74,-0.4583333333333333],[127,154,75,-0.4583333333333333],[127,154,76,-0.4583333333333333],[127,154,77,-0.4583333333333333],[127,154,78,-0.4583333333333333],[127,154,79,-0.4583333333333333],[127,155,64,-0.4583333333333333],[127,155,65,-0.4583333333333333],[127,155,66,-0.4583333333333333],[127,155,67,-0.4583333333333333],[127,155,68,-0.4583333333333333],[127,155,69,-0.4583333333333333],[127,155,70,-0.4583333333333333],[127,155,71,-0.4583333333333333],[127,155,72,-0.4583333333333333],[127,155,73,-0.4583333333333333],[127,155,74,-0.4583333333333333],[127,155,75,-0.4583333333333333],[127,155,76,-0.4583333333333333],[127,155,77,-0.4583333333333333],[127,155,78,-0.4583333333333333],[127,155,79,-0.4583333333333333],[127,156,64,-0.4583333333333333],[127,156,65,-0.4583333333333333],[127,156,66,-0.4583333333333333],[127,156,67,-0.4583333333333333],[127,156,68,-0.4583333333333333],[127,156,69,-0.4583333333333333],[127,156,70,-0.4583333333333333],[127,156,71,-0.4583333333333333],[127,156,72,-0.4583333333333333],[127,156,73,-0.4583333333333333],[127,156,74,-0.4583333333333333],[127,156,75,-0.4583333333333333],[127,156,76,-0.4583333333333333],[127,156,77,-0.4583333333333333],[127,156,78,-0.4583333333333333],[127,156,79,-0.4583333333333333],[127,157,64,-0.4583333333333333],[127,157,65,-0.4583333333333333],[127,157,66,-0.4583333333333333],[127,157,67,-0.4583333333333333],[127,157,68,-0.4583333333333333],[127,157,69,-0.4583333333333333],[127,157,70,-0.4583333333333333],[127,157,71,-0.4583333333333333],[127,157,72,-0.4583333333333333],[127,157,73,-0.4583333333333333],[127,157,74,-0.4583333333333333],[127,157,75,-0.4583333333333333],[127,157,76,-0.4583333333333333],[127,157,77,-0.4583333333333333],[127,157,78,-0.4583333333333333],[127,157,79,-0.4583333333333333],[127,158,64,-0.4583333333333333],[127,158,65,-0.4583333333333333],[127,158,66,-0.4583333333333333],[127,158,67,-0.4583333333333333],[127,158,68,-0.4583333333333333],[127,158,69,-0.4583333333333333],[127,158,70,-0.4583333333333333],[127,158,71,-0.4583333333333333],[127,158,72,-0.4583333333333333],[127,158,73,-0.4583333333333333],[127,158,74,-0.4583333333333333],[127,158,75,-0.4583333333333333],[127,158,76,-0.4583333333333333],[127,158,77,-0.4583333333333333],[127,158,78,-0.4583333333333333],[127,158,79,-0.4583333333333333],[127,159,64,-0.4583333333333333],[127,159,65,-0.4583333333333333],[127,159,66,-0.4583333333333333],[127,159,67,-0.4583333333333333],[127,159,68,-0.4583333333333333],[127,159,69,-0.4583333333333333],[127,159,70,-0.4583333333333333],[127,159,71,-0.4583333333333333],[127,159,72,-0.4583333333333333],[127,159,73,-0.4583333333333333],[127,159,74,-0.4583333333333333],[127,159,75,-0.4583333333333333],[127,159,76,-0.4583333333333333],[127,159,77,-0.4583333333333333],[127,159,78,-0.4583333333333333],[127,159,79,-0.4583333333333333],[127,160,64,-0.4583333333333333],[127,160,65,-0.4583333333333333],[127,160,66,-0.4583333333333333],[127,160,67,-0.4583333333333333],[127,160,68,-0.4583333333333333],[127,160,69,-0.4583333333333333],[127,160,70,-0.4583333333333333],[127,160,71,-0.4583333333333333],[127,160,72,-0.4583333333333333],[127,160,73,-0.4583333333333333],[127,160,74,-0.4583333333333333],[127,160,75,-0.4583333333333333],[127,160,76,-0.4583333333333333],[127,160,77,-0.4583333333333333],[127,160,78,-0.4583333333333333],[127,160,79,-0.4583333333333333],[127,161,64,-0.4583333333333333],[127,161,65,-0.4583333333333333],[127,161,66,-0.4583333333333333],[127,161,67,-0.4583333333333333],[127,161,68,-0.4583333333333333],[127,161,69,-0.4583333333333333],[127,161,70,-0.4583333333333333],[127,161,71,-0.4583333333333333],[127,161,72,-0.4583333333333333],[127,161,73,-0.4583333333333333],[127,161,74,-0.4583333333333333],[127,161,75,-0.4583333333333333],[127,161,76,-0.4583333333333333],[127,161,77,-0.4583333333333333],[127,161,78,-0.4583333333333333],[127,161,79,-0.4583333333333333],[127,162,64,-0.4583333333333333],[127,162,65,-0.4583333333333333],[127,162,66,-0.4583333333333333],[127,162,67,-0.4583333333333333],[127,162,68,-0.4583333333333333],[127,162,69,-0.4583333333333333],[127,162,70,-0.4583333333333333],[127,162,71,-0.4583333333333333],[127,162,72,-0.4583333333333333],[127,162,73,-0.4583333333333333],[127,162,74,-0.4583333333333333],[127,162,75,-0.4583333333333333],[127,162,76,-0.4583333333333333],[127,162,77,-0.4583333333333333],[127,162,78,-0.4583333333333333],[127,162,79,-0.4583333333333333],[127,163,64,-0.4583333333333333],[127,163,65,-0.4583333333333333],[127,163,66,-0.4583333333333333],[127,163,67,-0.4583333333333333],[127,163,68,-0.4583333333333333],[127,163,69,-0.4583333333333333],[127,163,70,-0.4583333333333333],[127,163,71,-0.4583333333333333],[127,163,72,-0.4583333333333333],[127,163,73,-0.4583333333333333],[127,163,74,-0.4583333333333333],[127,163,75,-0.4583333333333333],[127,163,76,-0.4583333333333333],[127,163,77,-0.4583333333333333],[127,163,78,-0.4583333333333333],[127,163,79,-0.4583333333333333],[127,164,64,-0.4583333333333333],[127,164,65,-0.4583333333333333],[127,164,66,-0.4583333333333333],[127,164,67,-0.4583333333333333],[127,164,68,-0.4583333333333333],[127,164,69,-0.4583333333333333],[127,164,70,-0.4583333333333333],[127,164,71,-0.4583333333333333],[127,164,72,-0.4583333333333333],[127,164,73,-0.4583333333333333],[127,164,74,-0.4583333333333333],[127,164,75,-0.4583333333333333],[127,164,76,-0.4583333333333333],[127,164,77,-0.4583333333333333],[127,164,78,-0.4583333333333333],[127,164,79,-0.4583333333333333],[127,165,64,-0.4583333333333333],[127,165,65,-0.4583333333333333],[127,165,66,-0.4583333333333333],[127,165,67,-0.4583333333333333],[127,165,68,-0.4583333333333333],[127,165,69,-0.4583333333333333],[127,165,70,-0.4583333333333333],[127,165,71,-0.4583333333333333],[127,165,72,-0.4583333333333333],[127,165,73,-0.4583333333333333],[127,165,74,-0.4583333333333333],[127,165,75,-0.4583333333333333],[127,165,76,-0.4583333333333333],[127,165,77,-0.4583333333333333],[127,165,78,-0.4583333333333333],[127,165,79,-0.4583333333333333],[127,166,64,-0.4583333333333333],[127,166,65,-0.4583333333333333],[127,166,66,-0.4583333333333333],[127,166,67,-0.4583333333333333],[127,166,68,-0.4583333333333333],[127,166,69,-0.4583333333333333],[127,166,70,-0.4583333333333333],[127,166,71,-0.4583333333333333],[127,166,72,-0.4583333333333333],[127,166,73,-0.4583333333333333],[127,166,74,-0.4583333333333333],[127,166,75,-0.4583333333333333],[127,166,76,-0.4583333333333333],[127,166,77,-0.4583333333333333],[127,166,78,-0.4583333333333333],[127,166,79,-0.4583333333333333],[127,167,64,-0.4583333333333333],[127,167,65,-0.4583333333333333],[127,167,66,-0.4583333333333333],[127,167,67,-0.4583333333333333],[127,167,68,-0.4583333333333333],[127,167,69,-0.4583333333333333],[127,167,70,-0.4583333333333333],[127,167,71,-0.4583333333333333],[127,167,72,-0.4583333333333333],[127,167,73,-0.4583333333333333],[127,167,74,-0.4583333333333333],[127,167,75,-0.4583333333333333],[127,167,76,-0.4583333333333333],[127,167,77,-0.4583333333333333],[127,167,78,-0.4583333333333333],[127,167,79,-0.4583333333333333],[127,168,64,-0.4583333333333333],[127,168,65,-0.4583333333333333],[127,168,66,-0.4583333333333333],[127,168,67,-0.4583333333333333],[127,168,68,-0.4583333333333333],[127,168,69,-0.4583333333333333],[127,168,70,-0.4583333333333333],[127,168,71,-0.4583333333333333],[127,168,72,-0.4583333333333333],[127,168,73,-0.4583333333333333],[127,168,74,-0.4583333333333333],[127,168,75,-0.4583333333333333],[127,168,76,-0.4583333333333333],[127,168,77,-0.4583333333333333],[127,168,78,-0.4583333333333333],[127,168,79,-0.4583333333333333],[127,169,64,-0.4583333333333333],[127,169,65,-0.4583333333333333],[127,169,66,-0.4583333333333333],[127,169,67,-0.4583333333333333],[127,169,68,-0.4583333333333333],[127,169,69,-0.4583333333333333],[127,169,70,-0.4583333333333333],[127,169,71,-0.4583333333333333],[127,169,72,-0.4583333333333333],[127,169,73,-0.4583333333333333],[127,169,74,-0.4583333333333333],[127,169,75,-0.4583333333333333],[127,169,76,-0.4583333333333333],[127,169,77,-0.4583333333333333],[127,169,78,-0.4583333333333333],[127,169,79,-0.4583333333333333],[127,170,64,-0.4583333333333333],[127,170,65,-0.4583333333333333],[127,170,66,-0.4583333333333333],[127,170,67,-0.4583333333333333],[127,170,68,-0.4583333333333333],[127,170,69,-0.4583333333333333],[127,170,70,-0.4583333333333333],[127,170,71,-0.4583333333333333],[127,170,72,-0.4583333333333333],[127,170,73,-0.4583333333333333],[127,170,74,-0.4583333333333333],[127,170,75,-0.4583333333333333],[127,170,76,-0.4583333333333333],[127,170,77,-0.4583333333333333],[127,170,78,-0.4583333333333333],[127,170,79,-0.4583333333333333],[127,171,64,-0.4583333333333333],[127,171,65,-0.4583333333333333],[127,171,66,-0.4583333333333333],[127,171,67,-0.4583333333333333],[127,171,68,-0.4583333333333333],[127,171,69,-0.4583333333333333],[127,171,70,-0.4583333333333333],[127,171,71,-0.4583333333333333],[127,171,72,-0.4583333333333333],[127,171,73,-0.4583333333333333],[127,171,74,-0.4583333333333333],[127,171,75,-0.4583333333333333],[127,171,76,-0.4583333333333333],[127,171,77,-0.4583333333333333],[127,171,78,-0.4583333333333333],[127,171,79,-0.4583333333333333],[127,172,64,-0.4583333333333333],[127,172,65,-0.4583333333333333],[127,172,66,-0.4583333333333333],[127,172,67,-0.4583333333333333],[127,172,68,-0.4583333333333333],[127,172,69,-0.4583333333333333],[127,172,70,-0.4583333333333333],[127,172,71,-0.4583333333333333],[127,172,72,-0.4583333333333333],[127,172,73,-0.4583333333333333],[127,172,74,-0.4583333333333333],[127,172,75,-0.4583333333333333],[127,172,76,-0.4583333333333333],[127,172,77,-0.4583333333333333],[127,172,78,-0.4583333333333333],[127,172,79,-0.4583333333333333],[127,173,64,-0.4583333333333333],[127,173,65,-0.4583333333333333],[127,173,66,-0.4583333333333333],[127,173,67,-0.4583333333333333],[127,173,68,-0.4583333333333333],[127,173,69,-0.4583333333333333],[127,173,70,-0.4583333333333333],[127,173,71,-0.4583333333333333],[127,173,72,-0.4583333333333333],[127,173,73,-0.4583333333333333],[127,173,74,-0.4583333333333333],[127,173,75,-0.4583333333333333],[127,173,76,-0.4583333333333333],[127,173,77,-0.4583333333333333],[127,173,78,-0.4583333333333333],[127,173,79,-0.4583333333333333],[127,174,64,-0.4583333333333333],[127,174,65,-0.4583333333333333],[127,174,66,-0.4583333333333333],[127,174,67,-0.4583333333333333],[127,174,68,-0.4583333333333333],[127,174,69,-0.4583333333333333],[127,174,70,-0.4583333333333333],[127,174,71,-0.4583333333333333],[127,174,72,-0.4583333333333333],[127,174,73,-0.4583333333333333],[127,174,74,-0.4583333333333333],[127,174,75,-0.4583333333333333],[127,174,76,-0.4583333333333333],[127,174,77,-0.4583333333333333],[127,174,78,-0.4583333333333333],[127,174,79,-0.4583333333333333],[127,175,64,-0.4583333333333333],[127,175,65,-0.4583333333333333],[127,175,66,-0.4583333333333333],[127,175,67,-0.4583333333333333],[127,175,68,-0.4583333333333333],[127,175,69,-0.4583333333333333],[127,175,70,-0.4583333333333333],[127,175,71,-0.4583333333333333],[127,175,72,-0.4583333333333333],[127,175,73,-0.4583333333333333],[127,175,74,-0.4583333333333333],[127,175,75,-0.4583333333333333],[127,175,76,-0.4583333333333333],[127,175,77,-0.4583333333333333],[127,175,78,-0.4583333333333333],[127,175,79,-0.4583333333333333],[127,176,64,-0.4583333333333333],[127,176,65,-0.4583333333333333],[127,176,66,-0.4583333333333333],[127,176,67,-0.4583333333333333],[127,176,68,-0.4583333333333333],[127,176,69,-0.4583333333333333],[127,176,70,-0.4583333333333333],[127,176,71,-0.4583333333333333],[127,176,72,-0.4583333333333333],[127,176,73,-0.4583333333333333],[127,176,74,-0.4583333333333333],[127,176,75,-0.4583333333333333],[127,176,76,-0.4583333333333333],[127,176,77,-0.4583333333333333],[127,176,78,-0.4583333333333333],[127,176,79,-0.4583333333333333],[127,177,64,-0.4583333333333333],[127,177,65,-0.4583333333333333],[127,177,66,-0.4583333333333333],[127,177,67,-0.4583333333333333],[127,177,68,-0.4583333333333333],[127,177,69,-0.4583333333333333],[127,177,70,-0.4583333333333333],[127,177,71,-0.4583333333333333],[127,177,72,-0.4583333333333333],[127,177,73,-0.4583333333333333],[127,177,74,-0.4583333333333333],[127,177,75,-0.4583333333333333],[127,177,76,-0.4583333333333333],[127,177,77,-0.4583333333333333],[127,177,78,-0.4583333333333333],[127,177,79,-0.4583333333333333],[127,178,64,-0.4583333333333333],[127,178,65,-0.4583333333333333],[127,178,66,-0.4583333333333333],[127,178,67,-0.4583333333333333],[127,178,68,-0.4583333333333333],[127,178,69,-0.4583333333333333],[127,178,70,-0.4583333333333333],[127,178,71,-0.4583333333333333],[127,178,72,-0.4583333333333333],[127,178,73,-0.4583333333333333],[127,178,74,-0.4583333333333333],[127,178,75,-0.4583333333333333],[127,178,76,-0.4583333333333333],[127,178,77,-0.4583333333333333],[127,178,78,-0.4583333333333333],[127,178,79,-0.4583333333333333],[127,179,64,-0.4583333333333333],[127,179,65,-0.4583333333333333],[127,179,66,-0.4583333333333333],[127,179,67,-0.4583333333333333],[127,179,68,-0.4583333333333333],[127,179,69,-0.4583333333333333],[127,179,70,-0.4583333333333333],[127,179,71,-0.4583333333333333],[127,179,72,-0.4583333333333333],[127,179,73,-0.4583333333333333],[127,179,74,-0.4583333333333333],[127,179,75,-0.4583333333333333],[127,179,76,-0.4583333333333333],[127,179,77,-0.4583333333333333],[127,179,78,-0.4583333333333333],[127,179,79,-0.4583333333333333],[127,180,64,-0.4583333333333333],[127,180,65,-0.4583333333333333],[127,180,66,-0.4583333333333333],[127,180,67,-0.4583333333333333],[127,180,68,-0.4583333333333333],[127,180,69,-0.4583333333333333],[127,180,70,-0.4583333333333333],[127,180,71,-0.4583333333333333],[127,180,72,-0.4583333333333333],[127,180,73,-0.4583333333333333],[127,180,74,-0.4583333333333333],[127,180,75,-0.4583333333333333],[127,180,76,-0.4583333333333333],[127,180,77,-0.4583333333333333],[127,180,78,-0.4583333333333333],[127,180,79,-0.4583333333333333],[127,181,64,-0.4583333333333333],[127,181,65,-0.4583333333333333],[127,181,66,-0.4583333333333333],[127,181,67,-0.4583333333333333],[127,181,68,-0.4583333333333333],[127,181,69,-0.4583333333333333],[127,181,70,-0.4583333333333333],[127,181,71,-0.4583333333333333],[127,181,72,-0.4583333333333333],[127,181,73,-0.4583333333333333],[127,181,74,-0.4583333333333333],[127,181,75,-0.4583333333333333],[127,181,76,-0.4583333333333333],[127,181,77,-0.4583333333333333],[127,181,78,-0.4583333333333333],[127,181,79,-0.4583333333333333],[127,182,64,-0.4583333333333333],[127,182,65,-0.4583333333333333],[127,182,66,-0.4583333333333333],[127,182,67,-0.4583333333333333],[127,182,68,-0.4583333333333333],[127,182,69,-0.4583333333333333],[127,182,70,-0.4583333333333333],[127,182,71,-0.4583333333333333],[127,182,72,-0.4583333333333333],[127,182,73,-0.4583333333333333],[127,182,74,-0.4583333333333333],[127,182,75,-0.4583333333333333],[127,182,76,-0.4583333333333333],[127,182,77,-0.4583333333333333],[127,182,78,-0.4583333333333333],[127,182,79,-0.4583333333333333],[127,183,64,-0.4583333333333333],[127,183,65,-0.4583333333333333],[127,183,66,-0.4583333333333333],[127,183,67,-0.4583333333333333],[127,183,68,-0.4583333333333333],[127,183,69,-0.4583333333333333],[127,183,70,-0.4583333333333333],[127,183,71,-0.4583333333333333],[127,183,72,-0.4583333333333333],[127,183,73,-0.4583333333333333],[127,183,74,-0.4583333333333333],[127,183,75,-0.4583333333333333],[127,183,76,-0.4583333333333333],[127,183,77,-0.4583333333333333],[127,183,78,-0.4583333333333333],[127,183,79,-0.4583333333333333],[127,184,64,-0.4583333333333333],[127,184,65,-0.4583333333333333],[127,184,66,-0.4583333333333333],[127,184,67,-0.4583333333333333],[127,184,68,-0.4583333333333333],[127,184,69,-0.4583333333333333],[127,184,70,-0.4583333333333333],[127,184,71,-0.4583333333333333],[127,184,72,-0.4583333333333333],[127,184,73,-0.4583333333333333],[127,184,74,-0.4583333333333333],[127,184,75,-0.4583333333333333],[127,184,76,-0.4583333333333333],[127,184,77,-0.4583333333333333],[127,184,78,-0.4583333333333333],[127,184,79,-0.4583333333333333],[127,185,64,-0.4583333333333333],[127,185,65,-0.4583333333333333],[127,185,66,-0.4583333333333333],[127,185,67,-0.4583333333333333],[127,185,68,-0.4583333333333333],[127,185,69,-0.4583333333333333],[127,185,70,-0.4583333333333333],[127,185,71,-0.4583333333333333],[127,185,72,-0.4583333333333333],[127,185,73,-0.4583333333333333],[127,185,74,-0.4583333333333333],[127,185,75,-0.4583333333333333],[127,185,76,-0.4583333333333333],[127,185,77,-0.4583333333333333],[127,185,78,-0.4583333333333333],[127,185,79,-0.4583333333333333],[127,186,64,-0.4583333333333333],[127,186,65,-0.4583333333333333],[127,186,66,-0.4583333333333333],[127,186,67,-0.4583333333333333],[127,186,68,-0.4583333333333333],[127,186,69,-0.4583333333333333],[127,186,70,-0.4583333333333333],[127,186,71,-0.4583333333333333],[127,186,72,-0.4583333333333333],[127,186,73,-0.4583333333333333],[127,186,74,-0.4583333333333333],[127,186,75,-0.4583333333333333],[127,186,76,-0.4583333333333333],[127,186,77,-0.4583333333333333],[127,186,78,-0.4583333333333333],[127,186,79,-0.4583333333333333],[127,187,64,-0.4583333333333333],[127,187,65,-0.4583333333333333],[127,187,66,-0.4583333333333333],[127,187,67,-0.4583333333333333],[127,187,68,-0.4583333333333333],[127,187,69,-0.4583333333333333],[127,187,70,-0.4583333333333333],[127,187,71,-0.4583333333333333],[127,187,72,-0.4583333333333333],[127,187,73,-0.4583333333333333],[127,187,74,-0.4583333333333333],[127,187,75,-0.4583333333333333],[127,187,76,-0.4583333333333333],[127,187,77,-0.4583333333333333],[127,187,78,-0.4583333333333333],[127,187,79,-0.4583333333333333],[127,188,64,-0.4583333333333333],[127,188,65,-0.4583333333333333],[127,188,66,-0.4583333333333333],[127,188,67,-0.4583333333333333],[127,188,68,-0.4583333333333333],[127,188,69,-0.4583333333333333],[127,188,70,-0.4583333333333333],[127,188,71,-0.4583333333333333],[127,188,72,-0.4583333333333333],[127,188,73,-0.4583333333333333],[127,188,74,-0.4583333333333333],[127,188,75,-0.4583333333333333],[127,188,76,-0.4583333333333333],[127,188,77,-0.4583333333333333],[127,188,78,-0.4583333333333333],[127,188,79,-0.4583333333333333],[127,189,64,-0.4583333333333333],[127,189,65,-0.4583333333333333],[127,189,66,-0.4583333333333333],[127,189,67,-0.4583333333333333],[127,189,68,-0.4583333333333333],[127,189,69,-0.4583333333333333],[127,189,70,-0.4583333333333333],[127,189,71,-0.4583333333333333],[127,189,72,-0.4583333333333333],[127,189,73,-0.4583333333333333],[127,189,74,-0.4583333333333333],[127,189,75,-0.4583333333333333],[127,189,76,-0.4583333333333333],[127,189,77,-0.4583333333333333],[127,189,78,-0.4583333333333333],[127,189,79,-0.4583333333333333],[127,190,64,-0.4583333333333333],[127,190,65,-0.4583333333333333],[127,190,66,-0.4583333333333333],[127,190,67,-0.4583333333333333],[127,190,68,-0.4583333333333333],[127,190,69,-0.4583333333333333],[127,190,70,-0.4583333333333333],[127,190,71,-0.4583333333333333],[127,190,72,-0.4583333333333333],[127,190,73,-0.4583333333333333],[127,190,74,-0.4583333333333333],[127,190,75,-0.4583333333333333],[127,190,76,-0.4583333333333333],[127,190,77,-0.4583333333333333],[127,190,78,-0.4583333333333333],[127,190,79,-0.4583333333333333],[127,191,64,-0.4583333333333333],[127,191,65,-0.4583333333333333],[127,191,66,-0.4583333333333333],[127,191,67,-0.4583333333333333],[127,191,68,-0.4583333333333333],[127,191,69,-0.4583333333333333],[127,191,70,-0.4583333333333333],[127,191,71,-0.4583333333333333],[127,191,72,-0.4583333333333333],[127,191,73,-0.4583333333333333],[127,191,74,-0.4583333333333333],[127,191,75,-0.4583333333333333],[127,191,76,-0.4583333333333333],[127,191,77,-0.4583333333333333],[127,191,78,-0.4583333333333333],[127,191,79,-0.4583333333333333],[127,192,64,-0.4583333333333333],[127,192,65,-0.4583333333333333],[127,192,66,-0.4583333333333333],[127,192,67,-0.4583333333333333],[127,192,68,-0.4583333333333333],[127,192,69,-0.4583333333333333],[127,192,70,-0.4583333333333333],[127,192,71,-0.4583333333333333],[127,192,72,-0.4583333333333333],[127,192,73,-0.4583333333333333],[127,192,74,-0.4583333333333333],[127,192,75,-0.4583333333333333],[127,192,76,-0.4583333333333333],[127,192,77,-0.4583333333333333],[127,192,78,-0.4583333333333333],[127,192,79,-0.4583333333333333],[127,193,64,-0.4583333333333333],[127,193,65,-0.4583333333333333],[127,193,66,-0.4583333333333333],[127,193,67,-0.4583333333333333],[127,193,68,-0.4583333333333333],[127,193,69,-0.4583333333333333],[127,193,70,-0.4583333333333333],[127,193,71,-0.4583333333333333],[127,193,72,-0.4583333333333333],[127,193,73,-0.4583333333333333],[127,193,74,-0.4583333333333333],[127,193,75,-0.4583333333333333],[127,193,76,-0.4583333333333333],[127,193,77,-0.4583333333333333],[127,193,78,-0.4583333333333333],[127,193,79,-0.4583333333333333],[127,194,64,-0.4583333333333333],[127,194,65,-0.4583333333333333],[127,194,66,-0.4583333333333333],[127,194,67,-0.4583333333333333],[127,194,68,-0.4583333333333333],[127,194,69,-0.4583333333333333],[127,194,70,-0.4583333333333333],[127,194,71,-0.4583333333333333],[127,194,72,-0.4583333333333333],[127,194,73,-0.4583333333333333],[127,194,74,-0.4583333333333333],[127,194,75,-0.4583333333333333],[127,194,76,-0.4583333333333333],[127,194,77,-0.4583333333333333],[127,194,78,-0.4583333333333333],[127,194,79,-0.4583333333333333],[127,195,64,-0.4583333333333333],[127,195,65,-0.4583333333333333],[127,195,66,-0.4583333333333333],[127,195,67,-0.4583333333333333],[127,195,68,-0.4583333333333333],[127,195,69,-0.4583333333333333],[127,195,70,-0.4583333333333333],[127,195,71,-0.4583333333333333],[127,195,72,-0.4583333333333333],[127,195,73,-0.4583333333333333],[127,195,74,-0.4583333333333333],[127,195,75,-0.4583333333333333],[127,195,76,-0.4583333333333333],[127,195,77,-0.4583333333333333],[127,195,78,-0.4583333333333333],[127,195,79,-0.4583333333333333],[127,196,64,-0.4583333333333333],[127,196,65,-0.4583333333333333],[127,196,66,-0.4583333333333333],[127,196,67,-0.4583333333333333],[127,196,68,-0.4583333333333333],[127,196,69,-0.4583333333333333],[127,196,70,-0.4583333333333333],[127,196,71,-0.4583333333333333],[127,196,72,-0.4583333333333333],[127,196,73,-0.4583333333333333],[127,196,74,-0.4583333333333333],[127,196,75,-0.4583333333333333],[127,196,76,-0.4583333333333333],[127,196,77,-0.4583333333333333],[127,196,78,-0.4583333333333333],[127,196,79,-0.4583333333333333],[127,197,64,-0.4583333333333333],[127,197,65,-0.4583333333333333],[127,197,66,-0.4583333333333333],[127,197,67,-0.4583333333333333],[127,197,68,-0.4583333333333333],[127,197,69,-0.4583333333333333],[127,197,70,-0.4583333333333333],[127,197,71,-0.4583333333333333],[127,197,72,-0.4583333333333333],[127,197,73,-0.4583333333333333],[127,197,74,-0.4583333333333333],[127,197,75,-0.4583333333333333],[127,197,76,-0.4583333333333333],[127,197,77,-0.4583333333333333],[127,197,78,-0.4583333333333333],[127,197,79,-0.4583333333333333],[127,198,64,-0.4583333333333333],[127,198,65,-0.4583333333333333],[127,198,66,-0.4583333333333333],[127,198,67,-0.4583333333333333],[127,198,68,-0.4583333333333333],[127,198,69,-0.4583333333333333],[127,198,70,-0.4583333333333333],[127,198,71,-0.4583333333333333],[127,198,72,-0.4583333333333333],[127,198,73,-0.4583333333333333],[127,198,74,-0.4583333333333333],[127,198,75,-0.4583333333333333],[127,198,76,-0.4583333333333333],[127,198,77,-0.4583333333333333],[127,198,78,-0.4583333333333333],[127,198,79,-0.4583333333333333],[127,199,64,-0.4583333333333333],[127,199,65,-0.4583333333333333],[127,199,66,-0.4583333333333333],[127,199,67,-0.4583333333333333],[127,199,68,-0.4583333333333333],[127,199,69,-0.4583333333333333],[127,199,70,-0.4583333333333333],[127,199,71,-0.4583333333333333],[127,199,72,-0.4583333333333333],[127,199,73,-0.4583333333333333],[127,199,74,-0.4583333333333333],[127,199,75,-0.4583333333333333],[127,199,76,-0.4583333333333333],[127,199,77,-0.4583333333333333],[127,199,78,-0.4583333333333333],[127,199,79,-0.4583333333333333],[127,200,64,-0.4583333333333333],[127,200,65,-0.4583333333333333],[127,200,66,-0.4583333333333333],[127,200,67,-0.4583333333333333],[127,200,68,-0.4583333333333333],[127,200,69,-0.4583333333333333],[127,200,70,-0.4583333333333333],[127,200,71,-0.4583333333333333],[127,200,72,-0.4583333333333333],[127,200,73,-0.4583333333333333],[127,200,74,-0.4583333333333333],[127,200,75,-0.4583333333333333],[127,200,76,-0.4583333333333333],[127,200,77,-0.4583333333333333],[127,200,78,-0.4583333333333333],[127,200,79,-0.4583333333333333],[127,201,64,-0.4583333333333333],[127,201,65,-0.4583333333333333],[127,201,66,-0.4583333333333333],[127,201,67,-0.4583333333333333],[127,201,68,-0.4583333333333333],[127,201,69,-0.4583333333333333],[127,201,70,-0.4583333333333333],[127,201,71,-0.4583333333333333],[127,201,72,-0.4583333333333333],[127,201,73,-0.4583333333333333],[127,201,74,-0.4583333333333333],[127,201,75,-0.4583333333333333],[127,201,76,-0.4583333333333333],[127,201,77,-0.4583333333333333],[127,201,78,-0.4583333333333333],[127,201,79,-0.4583333333333333],[127,202,64,-0.4583333333333333],[127,202,65,-0.4583333333333333],[127,202,66,-0.4583333333333333],[127,202,67,-0.4583333333333333],[127,202,68,-0.4583333333333333],[127,202,69,-0.4583333333333333],[127,202,70,-0.4583333333333333],[127,202,71,-0.4583333333333333],[127,202,72,-0.4583333333333333],[127,202,73,-0.4583333333333333],[127,202,74,-0.4583333333333333],[127,202,75,-0.4583333333333333],[127,202,76,-0.4583333333333333],[127,202,77,-0.4583333333333333],[127,202,78,-0.4583333333333333],[127,202,79,-0.4583333333333333],[127,203,64,-0.4583333333333333],[127,203,65,-0.4583333333333333],[127,203,66,-0.4583333333333333],[127,203,67,-0.4583333333333333],[127,203,68,-0.4583333333333333],[127,203,69,-0.4583333333333333],[127,203,70,-0.4583333333333333],[127,203,71,-0.4583333333333333],[127,203,72,-0.4583333333333333],[127,203,73,-0.4583333333333333],[127,203,74,-0.4583333333333333],[127,203,75,-0.4583333333333333],[127,203,76,-0.4583333333333333],[127,203,77,-0.4583333333333333],[127,203,78,-0.4583333333333333],[127,203,79,-0.4583333333333333],[127,204,64,-0.4583333333333333],[127,204,65,-0.4583333333333333],[127,204,66,-0.4583333333333333],[127,204,67,-0.4583333333333333],[127,204,68,-0.4583333333333333],[127,204,69,-0.4583333333333333],[127,204,70,-0.4583333333333333],[127,204,71,-0.4583333333333333],[127,204,72,-0.4583333333333333],[127,204,73,-0.4583333333333333],[127,204,74,-0.4583333333333333],[127,204,75,-0.4583333333333333],[127,204,76,-0.4583333333333333],[127,204,77,-0.4583333333333333],[127,204,78,-0.4583333333333333],[127,204,79,-0.4583333333333333],[127,205,64,-0.4583333333333333],[127,205,65,-0.4583333333333333],[127,205,66,-0.4583333333333333],[127,205,67,-0.4583333333333333],[127,205,68,-0.4583333333333333],[127,205,69,-0.4583333333333333],[127,205,70,-0.4583333333333333],[127,205,71,-0.4583333333333333],[127,205,72,-0.4583333333333333],[127,205,73,-0.4583333333333333],[127,205,74,-0.4583333333333333],[127,205,75,-0.4583333333333333],[127,205,76,-0.4583333333333333],[127,205,77,-0.4583333333333333],[127,205,78,-0.4583333333333333],[127,205,79,-0.4583333333333333],[127,206,64,-0.4583333333333333],[127,206,65,-0.4583333333333333],[127,206,66,-0.4583333333333333],[127,206,67,-0.4583333333333333],[127,206,68,-0.4583333333333333],[127,206,69,-0.4583333333333333],[127,206,70,-0.4583333333333333],[127,206,71,-0.4583333333333333],[127,206,72,-0.4583333333333333],[127,206,73,-0.4583333333333333],[127,206,74,-0.4583333333333333],[127,206,75,-0.4583333333333333],[127,206,76,-0.4583333333333333],[127,206,77,-0.4583333333333333],[127,206,78,-0.4583333333333333],[127,206,79,-0.4583333333333333],[127,207,64,-0.4583333333333333],[127,207,65,-0.4583333333333333],[127,207,66,-0.4583333333333333],[127,207,67,-0.4583333333333333],[127,207,68,-0.4583333333333333],[127,207,69,-0.4583333333333333],[127,207,70,-0.4583333333333333],[127,207,71,-0.4583333333333333],[127,207,72,-0.4583333333333333],[127,207,73,-0.4583333333333333],[127,207,74,-0.4583333333333333],[127,207,75,-0.4583333333333333],[127,207,76,-0.4583333333333333],[127,207,77,-0.4583333333333333],[127,207,78,-0.4583333333333333],[127,207,79,-0.4583333333333333],[127,208,64,-0.4583333333333333],[127,208,65,-0.4583333333333333],[127,208,66,-0.4583333333333333],[127,208,67,-0.4583333333333333],[127,208,68,-0.4583333333333333],[127,208,69,-0.4583333333333333],[127,208,70,-0.4583333333333333],[127,208,71,-0.4583333333333333],[127,208,72,-0.4583333333333333],[127,208,73,-0.4583333333333333],[127,208,74,-0.4583333333333333],[127,208,75,-0.4583333333333333],[127,208,76,-0.4583333333333333],[127,208,77,-0.4583333333333333],[127,208,78,-0.4583333333333333],[127,208,79,-0.4583333333333333],[127,209,64,-0.4583333333333333],[127,209,65,-0.4583333333333333],[127,209,66,-0.4583333333333333],[127,209,67,-0.4583333333333333],[127,209,68,-0.4583333333333333],[127,209,69,-0.4583333333333333],[127,209,70,-0.4583333333333333],[127,209,71,-0.4583333333333333],[127,209,72,-0.4583333333333333],[127,209,73,-0.4583333333333333],[127,209,74,-0.4583333333333333],[127,209,75,-0.4583333333333333],[127,209,76,-0.4583333333333333],[127,209,77,-0.4583333333333333],[127,209,78,-0.4583333333333333],[127,209,79,-0.4583333333333333],[127,210,64,-0.4583333333333333],[127,210,65,-0.4583333333333333],[127,210,66,-0.4583333333333333],[127,210,67,-0.4583333333333333],[127,210,68,-0.4583333333333333],[127,210,69,-0.4583333333333333],[127,210,70,-0.4583333333333333],[127,210,71,-0.4583333333333333],[127,210,72,-0.4583333333333333],[127,210,73,-0.4583333333333333],[127,210,74,-0.4583333333333333],[127,210,75,-0.4583333333333333],[127,210,76,-0.4583333333333333],[127,210,77,-0.4583333333333333],[127,210,78,-0.4583333333333333],[127,210,79,-0.4583333333333333],[127,211,64,-0.4583333333333333],[127,211,65,-0.4583333333333333],[127,211,66,-0.4583333333333333],[127,211,67,-0.4583333333333333],[127,211,68,-0.4583333333333333],[127,211,69,-0.4583333333333333],[127,211,70,-0.4583333333333333],[127,211,71,-0.4583333333333333],[127,211,72,-0.4583333333333333],[127,211,73,-0.4583333333333333],[127,211,74,-0.4583333333333333],[127,211,75,-0.4583333333333333],[127,211,76,-0.4583333333333333],[127,211,77,-0.4583333333333333],[127,211,78,-0.4583333333333333],[127,211,79,-0.4583333333333333],[127,212,64,-0.4583333333333333],[127,212,65,-0.4583333333333333],[127,212,66,-0.4583333333333333],[127,212,67,-0.4583333333333333],[127,212,68,-0.4583333333333333],[127,212,69,-0.4583333333333333],[127,212,70,-0.4583333333333333],[127,212,71,-0.4583333333333333],[127,212,72,-0.4583333333333333],[127,212,73,-0.4583333333333333],[127,212,74,-0.4583333333333333],[127,212,75,-0.4583333333333333],[127,212,76,-0.4583333333333333],[127,212,77,-0.4583333333333333],[127,212,78,-0.4583333333333333],[127,212,79,-0.4583333333333333],[127,213,64,-0.4583333333333333],[127,213,65,-0.4583333333333333],[127,213,66,-0.4583333333333333],[127,213,67,-0.4583333333333333],[127,213,68,-0.4583333333333333],[127,213,69,-0.4583333333333333],[127,213,70,-0.4583333333333333],[127,213,71,-0.4583333333333333],[127,213,72,-0.4583333333333333],[127,213,73,-0.4583333333333333],[127,213,74,-0.4583333333333333],[127,213,75,-0.4583333333333333],[127,213,76,-0.4583333333333333],[127,213,77,-0.4583333333333333],[127,213,78,-0.4583333333333333],[127,213,79,-0.4583333333333333],[127,214,64,-0.4583333333333333],[127,214,65,-0.4583333333333333],[127,214,66,-0.4583333333333333],[127,214,67,-0.4583333333333333],[127,214,68,-0.4583333333333333],[127,214,69,-0.4583333333333333],[127,214,70,-0.4583333333333333],[127,214,71,-0.4583333333333333],[127,214,72,-0.4583333333333333],[127,214,73,-0.4583333333333333],[127,214,74,-0.4583333333333333],[127,214,75,-0.4583333333333333],[127,214,76,-0.4583333333333333],[127,214,77,-0.4583333333333333],[127,214,78,-0.4583333333333333],[127,214,79,-0.4583333333333333],[127,215,64,-0.4583333333333333],[127,215,65,-0.4583333333333333],[127,215,66,-0.4583333333333333],[127,215,67,-0.4583333333333333],[127,215,68,-0.4583333333333333],[127,215,69,-0.4583333333333333],[127,215,70,-0.4583333333333333],[127,215,71,-0.4583333333333333],[127,215,72,-0.4583333333333333],[127,215,73,-0.4583333333333333],[127,215,74,-0.4583333333333333],[127,215,75,-0.4583333333333333],[127,215,76,-0.4583333333333333],[127,215,77,-0.4583333333333333],[127,215,78,-0.4583333333333333],[127,215,79,-0.4583333333333333],[127,216,64,-0.4583333333333333],[127,216,65,-0.4583333333333333],[127,216,66,-0.4583333333333333],[127,216,67,-0.4583333333333333],[127,216,68,-0.4583333333333333],[127,216,69,-0.4583333333333333],[127,216,70,-0.4583333333333333],[127,216,71,-0.4583333333333333],[127,216,72,-0.4583333333333333],[127,216,73,-0.4583333333333333],[127,216,74,-0.4583333333333333],[127,216,75,-0.4583333333333333],[127,216,76,-0.4583333333333333],[127,216,77,-0.4583333333333333],[127,216,78,-0.4583333333333333],[127,216,79,-0.4583333333333333],[127,217,64,-0.4583333333333333],[127,217,65,-0.4583333333333333],[127,217,66,-0.4583333333333333],[127,217,67,-0.4583333333333333],[127,217,68,-0.4583333333333333],[127,217,69,-0.4583333333333333],[127,217,70,-0.4583333333333333],[127,217,71,-0.4583333333333333],[127,217,72,-0.4583333333333333],[127,217,73,-0.4583333333333333],[127,217,74,-0.4583333333333333],[127,217,75,-0.4583333333333333],[127,217,76,-0.4583333333333333],[127,217,77,-0.4583333333333333],[127,217,78,-0.4583333333333333],[127,217,79,-0.4583333333333333],[127,218,64,-0.4583333333333333],[127,218,65,-0.4583333333333333],[127,218,66,-0.4583333333333333],[127,218,67,-0.4583333333333333],[127,218,68,-0.4583333333333333],[127,218,69,-0.4583333333333333],[127,218,70,-0.4583333333333333],[127,218,71,-0.4583333333333333],[127,218,72,-0.4583333333333333],[127,218,73,-0.4583333333333333],[127,218,74,-0.4583333333333333],[127,218,75,-0.4583333333333333],[127,218,76,-0.4583333333333333],[127,218,77,-0.4583333333333333],[127,218,78,-0.4583333333333333],[127,218,79,-0.4583333333333333],[127,219,64,-0.4583333333333333],[127,219,65,-0.4583333333333333],[127,219,66,-0.4583333333333333],[127,219,67,-0.4583333333333333],[127,219,68,-0.4583333333333333],[127,219,69,-0.4583333333333333],[127,219,70,-0.4583333333333333],[127,219,71,-0.4583333333333333],[127,219,72,-0.4583333333333333],[127,219,73,-0.4583333333333333],[127,219,74,-0.4583333333333333],[127,219,75,-0.4583333333333333],[127,219,76,-0.4583333333333333],[127,219,77,-0.4583333333333333],[127,219,78,-0.4583333333333333],[127,219,79,-0.4583333333333333],[127,220,64,-0.4583333333333333],[127,220,65,-0.4583333333333333],[127,220,66,-0.4583333333333333],[127,220,67,-0.4583333333333333],[127,220,68,-0.4583333333333333],[127,220,69,-0.4583333333333333],[127,220,70,-0.4583333333333333],[127,220,71,-0.4583333333333333],[127,220,72,-0.4583333333333333],[127,220,73,-0.4583333333333333],[127,220,74,-0.4583333333333333],[127,220,75,-0.4583333333333333],[127,220,76,-0.4583333333333333],[127,220,77,-0.4583333333333333],[127,220,78,-0.4583333333333333],[127,220,79,-0.4583333333333333],[127,221,64,-0.4583333333333333],[127,221,65,-0.4583333333333333],[127,221,66,-0.4583333333333333],[127,221,67,-0.4583333333333333],[127,221,68,-0.4583333333333333],[127,221,69,-0.4583333333333333],[127,221,70,-0.4583333333333333],[127,221,71,-0.4583333333333333],[127,221,72,-0.4583333333333333],[127,221,73,-0.4583333333333333],[127,221,74,-0.4583333333333333],[127,221,75,-0.4583333333333333],[127,221,76,-0.4583333333333333],[127,221,77,-0.4583333333333333],[127,221,78,-0.4583333333333333],[127,221,79,-0.4583333333333333],[127,222,64,-0.4583333333333333],[127,222,65,-0.4583333333333333],[127,222,66,-0.4583333333333333],[127,222,67,-0.4583333333333333],[127,222,68,-0.4583333333333333],[127,222,69,-0.4583333333333333],[127,222,70,-0.4583333333333333],[127,222,71,-0.4583333333333333],[127,222,72,-0.4583333333333333],[127,222,73,-0.4583333333333333],[127,222,74,-0.4583333333333333],[127,222,75,-0.4583333333333333],[127,222,76,-0.4583333333333333],[127,222,77,-0.4583333333333333],[127,222,78,-0.4583333333333333],[127,222,79,-0.4583333333333333],[127,223,64,-0.4583333333333333],[127,223,65,-0.4583333333333333],[127,223,66,-0.4583333333333333],[127,223,67,-0.4583333333333333],[127,223,68,-0.4583333333333333],[127,223,69,-0.4583333333333333],[127,223,70,-0.4583333333333333],[127,223,71,-0.4583333333333333],[127,223,72,-0.4583333333333333],[127,223,73,-0.4583333333333333],[127,223,74,-0.4583333333333333],[127,223,75,-0.4583333333333333],[127,223,76,-0.4583333333333333],[127,223,77,-0.4583333333333333],[127,223,78,-0.4583333333333333],[127,223,79,-0.4583333333333333],[127,224,64,-0.4583333333333333],[127,224,65,-0.4583333333333333],[127,224,66,-0.4583333333333333],[127,224,67,-0.4583333333333333],[127,224,68,-0.4583333333333333],[127,224,69,-0.4583333333333333],[127,224,70,-0.4583333333333333],[127,224,71,-0.4583333333333333],[127,224,72,-0.4583333333333333],[127,224,73,-0.4583333333333333],[127,224,74,-0.4583333333333333],[127,224,75,-0.4583333333333333],[127,224,76,-0.4583333333333333],[127,224,77,-0.4583333333333333],[127,224,78,-0.4583333333333333],[127,224,79,-0.4583333333333333],[127,225,64,-0.4583333333333333],[127,225,65,-0.4583333333333333],[127,225,66,-0.4583333333333333],[127,225,67,-0.4583333333333333],[127,225,68,-0.4583333333333333],[127,225,69,-0.4583333333333333],[127,225,70,-0.4583333333333333],[127,225,71,-0.4583333333333333],[127,225,72,-0.4583333333333333],[127,225,73,-0.4583333333333333],[127,225,74,-0.4583333333333333],[127,225,75,-0.4583333333333333],[127,225,76,-0.4583333333333333],[127,225,77,-0.4583333333333333],[127,225,78,-0.4583333333333333],[127,225,79,-0.4583333333333333],[127,226,64,-0.4583333333333333],[127,226,65,-0.4583333333333333],[127,226,66,-0.4583333333333333],[127,226,67,-0.4583333333333333],[127,226,68,-0.4583333333333333],[127,226,69,-0.4583333333333333],[127,226,70,-0.4583333333333333],[127,226,71,-0.4583333333333333],[127,226,72,-0.4583333333333333],[127,226,73,-0.4583333333333333],[127,226,74,-0.4583333333333333],[127,226,75,-0.4583333333333333],[127,226,76,-0.4583333333333333],[127,226,77,-0.4583333333333333],[127,226,78,-0.4583333333333333],[127,226,79,-0.4583333333333333],[127,227,64,-0.4583333333333333],[127,227,65,-0.4583333333333333],[127,227,66,-0.4583333333333333],[127,227,67,-0.4583333333333333],[127,227,68,-0.4583333333333333],[127,227,69,-0.4583333333333333],[127,227,70,-0.4583333333333333],[127,227,71,-0.4583333333333333],[127,227,72,-0.4583333333333333],[127,227,73,-0.4583333333333333],[127,227,74,-0.4583333333333333],[127,227,75,-0.4583333333333333],[127,227,76,-0.4583333333333333],[127,227,77,-0.4583333333333333],[127,227,78,-0.4583333333333333],[127,227,79,-0.4583333333333333],[127,228,64,-0.4583333333333333],[127,228,65,-0.4583333333333333],[127,228,66,-0.4583333333333333],[127,228,67,-0.4583333333333333],[127,228,68,-0.4583333333333333],[127,228,69,-0.4583333333333333],[127,228,70,-0.4583333333333333],[127,228,71,-0.4583333333333333],[127,228,72,-0.4583333333333333],[127,228,73,-0.4583333333333333],[127,228,74,-0.4583333333333333],[127,228,75,-0.4583333333333333],[127,228,76,-0.4583333333333333],[127,228,77,-0.4583333333333333],[127,228,78,-0.4583333333333333],[127,228,79,-0.4583333333333333],[127,229,64,-0.4583333333333333],[127,229,65,-0.4583333333333333],[127,229,66,-0.4583333333333333],[127,229,67,-0.4583333333333333],[127,229,68,-0.4583333333333333],[127,229,69,-0.4583333333333333],[127,229,70,-0.4583333333333333],[127,229,71,-0.4583333333333333],[127,229,72,-0.4583333333333333],[127,229,73,-0.4583333333333333],[127,229,74,-0.4583333333333333],[127,229,75,-0.4583333333333333],[127,229,76,-0.4583333333333333],[127,229,77,-0.4583333333333333],[127,229,78,-0.4583333333333333],[127,229,79,-0.4583333333333333],[127,230,64,-0.4583333333333333],[127,230,65,-0.4583333333333333],[127,230,66,-0.4583333333333333],[127,230,67,-0.4583333333333333],[127,230,68,-0.4583333333333333],[127,230,69,-0.4583333333333333],[127,230,70,-0.4583333333333333],[127,230,71,-0.4583333333333333],[127,230,72,-0.4583333333333333],[127,230,73,-0.4583333333333333],[127,230,74,-0.4583333333333333],[127,230,75,-0.4583333333333333],[127,230,76,-0.4583333333333333],[127,230,77,-0.4583333333333333],[127,230,78,-0.4583333333333333],[127,230,79,-0.4583333333333333],[127,231,64,-0.4583333333333333],[127,231,65,-0.4583333333333333],[127,231,66,-0.4583333333333333],[127,231,67,-0.4583333333333333],[127,231,68,-0.4583333333333333],[127,231,69,-0.4583333333333333],[127,231,70,-0.4583333333333333],[127,231,71,-0.4583333333333333],[127,231,72,-0.4583333333333333],[127,231,73,-0.4583333333333333],[127,231,74,-0.4583333333333333],[127,231,75,-0.4583333333333333],[127,231,76,-0.4583333333333333],[127,231,77,-0.4583333333333333],[127,231,78,-0.4583333333333333],[127,231,79,-0.4583333333333333],[127,232,64,-0.4583333333333333],[127,232,65,-0.4583333333333333],[127,232,66,-0.4583333333333333],[127,232,67,-0.4583333333333333],[127,232,68,-0.4583333333333333],[127,232,69,-0.4583333333333333],[127,232,70,-0.4583333333333333],[127,232,71,-0.4583333333333333],[127,232,72,-0.4583333333333333],[127,232,73,-0.4583333333333333],[127,232,74,-0.4583333333333333],[127,232,75,-0.4583333333333333],[127,232,76,-0.4583333333333333],[127,232,77,-0.4583333333333333],[127,232,78,-0.4583333333333333],[127,232,79,-0.4583333333333333],[127,233,64,-0.4583333333333333],[127,233,65,-0.4583333333333333],[127,233,66,-0.4583333333333333],[127,233,67,-0.4583333333333333],[127,233,68,-0.4583333333333333],[127,233,69,-0.4583333333333333],[127,233,70,-0.4583333333333333],[127,233,71,-0.4583333333333333],[127,233,72,-0.4583333333333333],[127,233,73,-0.4583333333333333],[127,233,74,-0.4583333333333333],[127,233,75,-0.4583333333333333],[127,233,76,-0.4583333333333333],[127,233,77,-0.4583333333333333],[127,233,78,-0.4583333333333333],[127,233,79,-0.4583333333333333],[127,234,64,-0.4583333333333333],[127,234,65,-0.4583333333333333],[127,234,66,-0.4583333333333333],[127,234,67,-0.4583333333333333],[127,234,68,-0.4583333333333333],[127,234,69,-0.4583333333333333],[127,234,70,-0.4583333333333333],[127,234,71,-0.4583333333333333],[127,234,72,-0.4583333333333333],[127,234,73,-0.4583333333333333],[127,234,74,-0.4583333333333333],[127,234,75,-0.4583333333333333],[127,234,76,-0.4583333333333333],[127,234,77,-0.4583333333333333],[127,234,78,-0.4583333333333333],[127,234,79,-0.4583333333333333],[127,235,64,-0.4583333333333333],[127,235,65,-0.4583333333333333],[127,235,66,-0.4583333333333333],[127,235,67,-0.4583333333333333],[127,235,68,-0.4583333333333333],[127,235,69,-0.4583333333333333],[127,235,70,-0.4583333333333333],[127,235,71,-0.4583333333333333],[127,235,72,-0.4583333333333333],[127,235,73,-0.4583333333333333],[127,235,74,-0.4583333333333333],[127,235,75,-0.4583333333333333],[127,235,76,-0.4583333333333333],[127,235,77,-0.4583333333333333],[127,235,78,-0.4583333333333333],[127,235,79,-0.4583333333333333],[127,236,64,-0.4583333333333333],[127,236,65,-0.4583333333333333],[127,236,66,-0.4583333333333333],[127,236,67,-0.4583333333333333],[127,236,68,-0.4583333333333333],[127,236,69,-0.4583333333333333],[127,236,70,-0.4583333333333333],[127,236,71,-0.4583333333333333],[127,236,72,-0.4583333333333333],[127,236,73,-0.4583333333333333],[127,236,74,-0.4583333333333333],[127,236,75,-0.4583333333333333],[127,236,76,-0.4583333333333333],[127,236,77,-0.4583333333333333],[127,236,78,-0.4583333333333333],[127,236,79,-0.4583333333333333],[127,237,64,-0.4583333333333333],[127,237,65,-0.4583333333333333],[127,237,66,-0.4583333333333333],[127,237,67,-0.4583333333333333],[127,237,68,-0.4583333333333333],[127,237,69,-0.4583333333333333],[127,237,70,-0.4583333333333333],[127,237,71,-0.4583333333333333],[127,237,72,-0.4583333333333333],[127,237,73,-0.4583333333333333],[127,237,74,-0.4583333333333333],[127,237,75,-0.4583333333333333],[127,237,76,-0.4583333333333333],[127,237,77,-0.4583333333333333],[127,237,78,-0.4583333333333333],[127,237,79,-0.4583333333333333],[127,238,64,-0.4583333333333333],[127,238,65,-0.4583333333333333],[127,238,66,-0.4583333333333333],[127,238,67,-0.4583333333333333],[127,238,68,-0.4583333333333333],[127,238,69,-0.4583333333333333],[127,238,70,-0.4583333333333333],[127,238,71,-0.4583333333333333],[127,238,72,-0.4583333333333333],[127,238,73,-0.4583333333333333],[127,238,74,-0.4583333333333333],[127,238,75,-0.4583333333333333],[127,238,76,-0.4583333333333333],[127,238,77,-0.4583333333333333],[127,238,78,-0.4583333333333333],[127,238,79,-0.4583333333333333],[127,239,64,-0.4583333333333333],[127,239,65,-0.4583333333333333],[127,239,66,-0.4583333333333333],[127,239,67,-0.4583333333333333],[127,239,68,-0.4583333333333333],[127,239,69,-0.4583333333333333],[127,239,70,-0.4583333333333333],[127,239,71,-0.4583333333333333],[127,239,72,-0.4583333333333333],[127,239,73,-0.4583333333333333],[127,239,74,-0.4583333333333333],[127,239,75,-0.4583333333333333],[127,239,76,-0.4583333333333333],[127,239,77,-0.4583333333333333],[127,239,78,-0.4583333333333333],[127,239,79,-0.4583333333333333],[127,240,64,-0.4583333333333333],[127,240,65,-0.4583333333333333],[127,240,66,-0.4583333333333333],[127,240,67,-0.4583333333333333],[127,240,68,-0.4583333333333333],[127,240,69,-0.4583333333333333],[127,240,70,-0.4583333333333333],[127,240,71,-0.4583333333333333],[127,240,72,-0.4583333333333333],[127,240,73,-0.4583333333333333],[127,240,74,-0.4583333333333333],[127,240,75,-0.4583333333333333],[127,240,76,-0.4583333333333333],[127,240,77,-0.4583333333333333],[127,240,78,-0.4583333333333333],[127,240,79,-0.4583333333333333],[127,241,64,-0.4583333333333333],[127,241,65,-0.4583333333333333],[127,241,66,-0.4583333333333333],[127,241,67,-0.4583333333333333],[127,241,68,-0.4583333333333333],[127,241,69,-0.4583333333333333],[127,241,70,-0.4583333333333333],[127,241,71,-0.4583333333333333],[127,241,72,-0.4583333333333333],[127,241,73,-0.4583333333333333],[127,241,74,-0.4583333333333333],[127,241,75,-0.4583333333333333],[127,241,76,-0.4583333333333333],[127,241,77,-0.4583333333333333],[127,241,78,-0.4583333333333333],[127,241,79,-0.4583333333333333],[127,242,64,-0.4583333333333333],[127,242,65,-0.4583333333333333],[127,242,66,-0.4583333333333333],[127,242,67,-0.4583333333333333],[127,242,68,-0.4583333333333333],[127,242,69,-0.4583333333333333],[127,242,70,-0.4583333333333333],[127,242,71,-0.4583333333333333],[127,242,72,-0.4583333333333333],[127,242,73,-0.4583333333333333],[127,242,74,-0.4583333333333333],[127,242,75,-0.4583333333333333],[127,242,76,-0.4583333333333333],[127,242,77,-0.4583333333333333],[127,242,78,-0.4583333333333333],[127,242,79,-0.4583333333333333],[127,243,64,-0.4583333333333333],[127,243,65,-0.4583333333333333],[127,243,66,-0.4583333333333333],[127,243,67,-0.4583333333333333],[127,243,68,-0.4583333333333333],[127,243,69,-0.4583333333333333],[127,243,70,-0.4583333333333333],[127,243,71,-0.4583333333333333],[127,243,72,-0.4583333333333333],[127,243,73,-0.4583333333333333],[127,243,74,-0.4583333333333333],[127,243,75,-0.4583333333333333],[127,243,76,-0.4583333333333333],[127,243,77,-0.4583333333333333],[127,243,78,-0.4583333333333333],[127,243,79,-0.4583333333333333],[127,244,64,-0.4583333333333333],[127,244,65,-0.4583333333333333],[127,244,66,-0.4583333333333333],[127,244,67,-0.4583333333333333],[127,244,68,-0.4583333333333333],[127,244,69,-0.4583333333333333],[127,244,70,-0.4583333333333333],[127,244,71,-0.4583333333333333],[127,244,72,-0.4583333333333333],[127,244,73,-0.4583333333333333],[127,244,74,-0.4583333333333333],[127,244,75,-0.4583333333333333],[127,244,76,-0.4583333333333333],[127,244,77,-0.4583333333333333],[127,244,78,-0.4583333333333333],[127,244,79,-0.4583333333333333],[127,245,64,-0.4583333333333333],[127,245,65,-0.4583333333333333],[127,245,66,-0.4583333333333333],[127,245,67,-0.4583333333333333],[127,245,68,-0.4583333333333333],[127,245,69,-0.4583333333333333],[127,245,70,-0.4583333333333333],[127,245,71,-0.4583333333333333],[127,245,72,-0.4583333333333333],[127,245,73,-0.4583333333333333],[127,245,74,-0.4583333333333333],[127,245,75,-0.4583333333333333],[127,245,76,-0.4583333333333333],[127,245,77,-0.4583333333333333],[127,245,78,-0.4583333333333333],[127,245,79,-0.4583333333333333],[127,246,64,-0.4583333333333333],[127,246,65,-0.4583333333333333],[127,246,66,-0.4583333333333333],[127,246,67,-0.4583333333333333],[127,246,68,-0.4583333333333333],[127,246,69,-0.4583333333333333],[127,246,70,-0.4583333333333333],[127,246,71,-0.4583333333333333],[127,246,72,-0.4583333333333333],[127,246,73,-0.4583333333333333],[127,246,74,-0.4583333333333333],[127,246,75,-0.4583333333333333],[127,246,76,-0.4583333333333333],[127,246,77,-0.4583333333333333],[127,246,78,-0.4583333333333333],[127,246,79,-0.4583333333333333],[127,247,64,-0.4583333333333333],[127,247,65,-0.4583333333333333],[127,247,66,-0.4583333333333333],[127,247,67,-0.4583333333333333],[127,247,68,-0.4583333333333333],[127,247,69,-0.4583333333333333],[127,247,70,-0.4583333333333333],[127,247,71,-0.4583333333333333],[127,247,72,-0.4583333333333333],[127,247,73,-0.4583333333333333],[127,247,74,-0.4583333333333333],[127,247,75,-0.4583333333333333],[127,247,76,-0.4583333333333333],[127,247,77,-0.4583333333333333],[127,247,78,-0.4583333333333333],[127,247,79,-0.4583333333333333],[127,248,64,-0.4583333333333333],[127,248,65,-0.4583333333333333],[127,248,66,-0.4583333333333333],[127,248,67,-0.4583333333333333],[127,248,68,-0.4583333333333333],[127,248,69,-0.4583333333333333],[127,248,70,-0.4583333333333333],[127,248,71,-0.4583333333333333],[127,248,72,-0.4583333333333333],[127,248,73,-0.4583333333333333],[127,248,74,-0.4583333333333333],[127,248,75,-0.4583333333333333],[127,248,76,-0.4583333333333333],[127,248,77,-0.4583333333333333],[127,248,78,-0.4583333333333333],[127,248,79,-0.4583333333333333],[127,249,64,-0.4583333333333333],[127,249,65,-0.4583333333333333],[127,249,66,-0.4583333333333333],[127,249,67,-0.4583333333333333],[127,249,68,-0.4583333333333333],[127,249,69,-0.4583333333333333],[127,249,70,-0.4583333333333333],[127,249,71,-0.4583333333333333],[127,249,72,-0.4583333333333333],[127,249,73,-0.4583333333333333],[127,249,74,-0.4583333333333333],[127,249,75,-0.4583333333333333],[127,249,76,-0.4583333333333333],[127,249,77,-0.4583333333333333],[127,249,78,-0.4583333333333333],[127,249,79,-0.4583333333333333],[127,250,64,-0.4583333333333333],[127,250,65,-0.4583333333333333],[127,250,66,-0.4583333333333333],[127,250,67,-0.4583333333333333],[127,250,68,-0.4583333333333333],[127,250,69,-0.4583333333333333],[127,250,70,-0.4583333333333333],[127,250,71,-0.4583333333333333],[127,250,72,-0.4583333333333333],[127,250,73,-0.4583333333333333],[127,250,74,-0.4583333333333333],[127,250,75,-0.4583333333333333],[127,250,76,-0.4583333333333333],[127,250,77,-0.4583333333333333],[127,250,78,-0.4583333333333333],[127,250,79,-0.4583333333333333],[127,251,64,-0.4583333333333333],[127,251,65,-0.4583333333333333],[127,251,66,-0.4583333333333333],[127,251,67,-0.4583333333333333],[127,251,68,-0.4583333333333333],[127,251,69,-0.4583333333333333],[127,251,70,-0.4583333333333333],[127,251,71,-0.4583333333333333],[127,251,72,-0.4583333333333333],[127,251,73,-0.4583333333333333],[127,251,74,-0.4583333333333333],[127,251,75,-0.4583333333333333],[127,251,76,-0.4583333333333333],[127,251,77,-0.4583333333333333],[127,251,78,-0.4583333333333333],[127,251,79,-0.4583333333333333],[127,252,64,-0.4583333333333333],[127,252,65,-0.4583333333333333],[127,252,66,-0.4583333333333333],[127,252,67,-0.4583333333333333],[127,252,68,-0.4583333333333333],[127,252,69,-0.4583333333333333],[127,252,70,-0.4583333333333333],[127,252,71,-0.4583333333333333],[127,252,72,-0.4583333333333333],[127,252,73,-0.4583333333333333],[127,252,74,-0.4583333333333333],[127,252,75,-0.4583333333333333],[127,252,76,-0.4583333333333333],[127,252,77,-0.4583333333333333],[127,252,78,-0.4583333333333333],[127,252,79,-0.4583333333333333],[127,253,64,-0.4583333333333333],[127,253,65,-0.4583333333333333],[127,253,66,-0.4583333333333333],[127,253,67,-0.4583333333333333],[127,253,68,-0.4583333333333333],[127,253,69,-0.4583333333333333],[127,253,70,-0.4583333333333333],[127,253,71,-0.4583333333333333],[127,253,72,-0.4583333333333333],[127,253,73,-0.4583333333333333],[127,253,74,-0.4583333333333333],[127,253,75,-0.4583333333333333],[127,253,76,-0.4583333333333333],[127,253,77,-0.4583333333333333],[127,253,78,-0.4583333333333333],[127,253,79,-0.4583333333333333],[127,254,64,-0.38524124583489977],[127,254,65,-0.3854937455237557],[127,254,66,-0.38658297692647475],[127,254,67,-0.38715880636741756],[127,254,68,-0.38616185607409137],[127,254,69,-0.3863346721062942],[127,254,70,-0.38755833724243205],[127,254,71,-0.3876934431938853],[127,254,72,-0.38926781750761513],[127,254,73,-0.3903329753372826],[127,254,74,-0.3904903225257438],[127,254,75,-0.3886591653628076],[127,254,76,-0.387710282962044],[127,254,77,-0.3854405259290226],[127,254,78,-0.38447069864998396],[127,254,79,-0.38285284026137745],[127,255,64,-0.21389909243615501],[127,255,65,-0.2142100356322101],[127,255,66,-0.2144284305697935],[127,255,67,-0.21484754800816422],[127,255,68,-0.21425198885064617],[127,255,69,-0.21449755936846399],[127,255,70,-0.2154453678854426],[127,255,71,-0.21547450931941955],[127,255,72,-0.2162984490912084],[127,255,73,-0.21699783285498114],[127,255,74,-0.21692693952373282],[127,255,75,-0.215908195418956],[127,255,76,-0.2152330866495272],[127,255,77,-0.21403202374811076],[127,255,78,-0.2134981936173829],[127,255,79,-0.21277061131689262],[127,256,64,-0.02499479166666667],[127,256,65,-0.02499479166666667],[127,256,66,-0.02499479166666667],[127,256,67,-0.02499479166666667],[127,256,68,-0.02499479166666667],[127,256,69,-0.02499479166666667],[127,256,70,-0.02499479166666667],[127,256,71,-0.02499479166666667],[127,256,72,-0.02499479166666667],[127,256,73,-0.02499479166666667],[127,256,74,-0.02499479166666667],[127,256,75,-0.02499479166666667],[127,256,76,-0.02499479166666667],[127,256,77,-0.02499479166666667],[127,256,78,-0.02499479166666667],[127,256,79,-0.02499479166666667],[127,257,64,-0.02499479166666667],[127,257,65,-0.02499479166666667],[127,257,66,-0.02499479166666667],[127,257,67,-0.02499479166666667],[127,257,68,-0.02499479166666667],[127,257,69,-0.02499479166666667],[127,257,70,-0.02499479166666667],[127,257,71,-0.02499479166666667],[127,257,72,-0.02499479166666667],[127,257,73,-0.02499479166666667],[127,257,74,-0.02499479166666667],[127,257,75,-0.02499479166666667],[127,257,76,-0.02499479166666667],[127,257,77,-0.02499479166666667],[127,257,78,-0.02499479166666667],[127,257,79,-0.02499479166666667],[127,258,64,-0.02499479166666667],[127,258,65,-0.02499479166666667],[127,258,66,-0.02499479166666667],[127,258,67,-0.02499479166666667],[127,258,68,-0.02499479166666667],[127,258,69,-0.02499479166666667],[127,258,70,-0.02499479166666667],[127,258,71,-0.02499479166666667],[127,258,72,-0.02499479166666667],[127,258,73,-0.02499479166666667],[127,258,74,-0.02499479166666667],[127,258,75,-0.02499479166666667],[127,258,76,-0.02499479166666667],[127,258,77,-0.02499479166666667],[127,258,78,-0.02499479166666667],[127,258,79,-0.02499479166666667],[127,259,64,-0.02499479166666667],[127,259,65,-0.02499479166666667],[127,259,66,-0.02499479166666667],[127,259,67,-0.02499479166666667],[127,259,68,-0.02499479166666667],[127,259,69,-0.02499479166666667],[127,259,70,-0.02499479166666667],[127,259,71,-0.02499479166666667],[127,259,72,-0.02499479166666667],[127,259,73,-0.02499479166666667],[127,259,74,-0.02499479166666667],[127,259,75,-0.02499479166666667],[127,259,76,-0.02499479166666667],[127,259,77,-0.02499479166666667],[127,259,78,-0.02499479166666667],[127,259,79,-0.02499479166666667],[127,260,64,-0.02499479166666667],[127,260,65,-0.02499479166666667],[127,260,66,-0.02499479166666667],[127,260,67,-0.02499479166666667],[127,260,68,-0.02499479166666667],[127,260,69,-0.02499479166666667],[127,260,70,-0.02499479166666667],[127,260,71,-0.02499479166666667],[127,260,72,-0.02499479166666667],[127,260,73,-0.02499479166666667],[127,260,74,-0.02499479166666667],[127,260,75,-0.02499479166666667],[127,260,76,-0.02499479166666667],[127,260,77,-0.02499479166666667],[127,260,78,-0.02499479166666667],[127,260,79,-0.02499479166666667],[127,261,64,-0.02499479166666667],[127,261,65,-0.02499479166666667],[127,261,66,-0.02499479166666667],[127,261,67,-0.02499479166666667],[127,261,68,-0.02499479166666667],[127,261,69,-0.02499479166666667],[127,261,70,-0.02499479166666667],[127,261,71,-0.02499479166666667],[127,261,72,-0.02499479166666667],[127,261,73,-0.02499479166666667],[127,261,74,-0.02499479166666667],[127,261,75,-0.02499479166666667],[127,261,76,-0.02499479166666667],[127,261,77,-0.02499479166666667],[127,261,78,-0.02499479166666667],[127,261,79,-0.02499479166666667],[127,262,64,-0.02499479166666667],[127,262,65,-0.02499479166666667],[127,262,66,-0.02499479166666667],[127,262,67,-0.02499479166666667],[127,262,68,-0.02499479166666667],[127,262,69,-0.02499479166666667],[127,262,70,-0.02499479166666667],[127,262,71,-0.02499479166666667],[127,262,72,-0.02499479166666667],[127,262,73,-0.02499479166666667],[127,262,74,-0.02499479166666667],[127,262,75,-0.02499479166666667],[127,262,76,-0.02499479166666667],[127,262,77,-0.02499479166666667],[127,262,78,-0.02499479166666667],[127,262,79,-0.02499479166666667],[127,263,64,-0.02499479166666667],[127,263,65,-0.02499479166666667],[127,263,66,-0.02499479166666667],[127,263,67,-0.02499479166666667],[127,263,68,-0.02499479166666667],[127,263,69,-0.02499479166666667],[127,263,70,-0.02499479166666667],[127,263,71,-0.02499479166666667],[127,263,72,-0.02499479166666667],[127,263,73,-0.02499479166666667],[127,263,74,-0.02499479166666667],[127,263,75,-0.02499479166666667],[127,263,76,-0.02499479166666667],[127,263,77,-0.02499479166666667],[127,263,78,-0.02499479166666667],[127,263,79,-0.02499479166666667],[127,264,64,-0.02499479166666667],[127,264,65,-0.02499479166666667],[127,264,66,-0.02499479166666667],[127,264,67,-0.02499479166666667],[127,264,68,-0.02499479166666667],[127,264,69,-0.02499479166666667],[127,264,70,-0.02499479166666667],[127,264,71,-0.02499479166666667],[127,264,72,-0.02499479166666667],[127,264,73,-0.02499479166666667],[127,264,74,-0.02499479166666667],[127,264,75,-0.02499479166666667],[127,264,76,-0.02499479166666667],[127,264,77,-0.02499479166666667],[127,264,78,-0.02499479166666667],[127,264,79,-0.02499479166666667],[127,265,64,-0.02499479166666667],[127,265,65,-0.02499479166666667],[127,265,66,-0.02499479166666667],[127,265,67,-0.02499479166666667],[127,265,68,-0.02499479166666667],[127,265,69,-0.02499479166666667],[127,265,70,-0.02499479166666667],[127,265,71,-0.02499479166666667],[127,265,72,-0.02499479166666667],[127,265,73,-0.02499479166666667],[127,265,74,-0.02499479166666667],[127,265,75,-0.02499479166666667],[127,265,76,-0.02499479166666667],[127,265,77,-0.02499479166666667],[127,265,78,-0.02499479166666667],[127,265,79,-0.02499479166666667],[127,266,64,-0.02499479166666667],[127,266,65,-0.02499479166666667],[127,266,66,-0.02499479166666667],[127,266,67,-0.02499479166666667],[127,266,68,-0.02499479166666667],[127,266,69,-0.02499479166666667],[127,266,70,-0.02499479166666667],[127,266,71,-0.02499479166666667],[127,266,72,-0.02499479166666667],[127,266,73,-0.02499479166666667],[127,266,74,-0.02499479166666667],[127,266,75,-0.02499479166666667],[127,266,76,-0.02499479166666667],[127,266,77,-0.02499479166666667],[127,266,78,-0.02499479166666667],[127,266,79,-0.02499479166666667],[127,267,64,-0.02499479166666667],[127,267,65,-0.02499479166666667],[127,267,66,-0.02499479166666667],[127,267,67,-0.02499479166666667],[127,267,68,-0.02499479166666667],[127,267,69,-0.02499479166666667],[127,267,70,-0.02499479166666667],[127,267,71,-0.02499479166666667],[127,267,72,-0.02499479166666667],[127,267,73,-0.02499479166666667],[127,267,74,-0.02499479166666667],[127,267,75,-0.02499479166666667],[127,267,76,-0.02499479166666667],[127,267,77,-0.02499479166666667],[127,267,78,-0.02499479166666667],[127,267,79,-0.02499479166666667],[127,268,64,-0.02499479166666667],[127,268,65,-0.02499479166666667],[127,268,66,-0.02499479166666667],[127,268,67,-0.02499479166666667],[127,268,68,-0.02499479166666667],[127,268,69,-0.02499479166666667],[127,268,70,-0.02499479166666667],[127,268,71,-0.02499479166666667],[127,268,72,-0.02499479166666667],[127,268,73,-0.02499479166666667],[127,268,74,-0.02499479166666667],[127,268,75,-0.02499479166666667],[127,268,76,-0.02499479166666667],[127,268,77,-0.02499479166666667],[127,268,78,-0.02499479166666667],[127,268,79,-0.02499479166666667],[127,269,64,-0.02499479166666667],[127,269,65,-0.02499479166666667],[127,269,66,-0.02499479166666667],[127,269,67,-0.02499479166666667],[127,269,68,-0.02499479166666667],[127,269,69,-0.02499479166666667],[127,269,70,-0.02499479166666667],[127,269,71,-0.02499479166666667],[127,269,72,-0.02499479166666667],[127,269,73,-0.02499479166666667],[127,269,74,-0.02499479166666667],[127,269,75,-0.02499479166666667],[127,269,76,-0.02499479166666667],[127,269,77,-0.02499479166666667],[127,269,78,-0.02499479166666667],[127,269,79,-0.02499479166666667],[127,270,64,-0.02499479166666667],[127,270,65,-0.02499479166666667],[127,270,66,-0.02499479166666667],[127,270,67,-0.02499479166666667],[127,270,68,-0.02499479166666667],[127,270,69,-0.02499479166666667],[127,270,70,-0.02499479166666667],[127,270,71,-0.02499479166666667],[127,270,72,-0.02499479166666667],[127,270,73,-0.02499479166666667],[127,270,74,-0.02499479166666667],[127,270,75,-0.02499479166666667],[127,270,76,-0.02499479166666667],[127,270,77,-0.02499479166666667],[127,270,78,-0.02499479166666667],[127,270,79,-0.02499479166666667],[127,271,64,-0.02499479166666667],[127,271,65,-0.02499479166666667],[127,271,66,-0.02499479166666667],[127,271,67,-0.02499479166666667],[127,271,68,-0.02499479166666667],[127,271,69,-0.02499479166666667],[127,271,70,-0.02499479166666667],[127,271,71,-0.02499479166666667],[127,271,72,-0.02499479166666667],[127,271,73,-0.02499479166666667],[127,271,74,-0.02499479166666667],[127,271,75,-0.02499479166666667],[127,271,76,-0.02499479166666667],[127,271,77,-0.02499479166666667],[127,271,78,-0.02499479166666667],[127,271,79,-0.02499479166666667],[127,272,64,-0.02499479166666667],[127,272,65,-0.02499479166666667],[127,272,66,-0.02499479166666667],[127,272,67,-0.02499479166666667],[127,272,68,-0.02499479166666667],[127,272,69,-0.02499479166666667],[127,272,70,-0.02499479166666667],[127,272,71,-0.02499479166666667],[127,272,72,-0.02499479166666667],[127,272,73,-0.02499479166666667],[127,272,74,-0.02499479166666667],[127,272,75,-0.02499479166666667],[127,272,76,-0.02499479166666667],[127,272,77,-0.02499479166666667],[127,272,78,-0.02499479166666667],[127,272,79,-0.02499479166666667],[127,273,64,-0.02499479166666667],[127,273,65,-0.02499479166666667],[127,273,66,-0.02499479166666667],[127,273,67,-0.02499479166666667],[127,273,68,-0.02499479166666667],[127,273,69,-0.02499479166666667],[127,273,70,-0.02499479166666667],[127,273,71,-0.02499479166666667],[127,273,72,-0.02499479166666667],[127,273,73,-0.02499479166666667],[127,273,74,-0.02499479166666667],[127,273,75,-0.02499479166666667],[127,273,76,-0.02499479166666667],[127,273,77,-0.02499479166666667],[127,273,78,-0.02499479166666667],[127,273,79,-0.02499479166666667],[127,274,64,-0.02499479166666667],[127,274,65,-0.02499479166666667],[127,274,66,-0.02499479166666667],[127,274,67,-0.02499479166666667],[127,274,68,-0.02499479166666667],[127,274,69,-0.02499479166666667],[127,274,70,-0.02499479166666667],[127,274,71,-0.02499479166666667],[127,274,72,-0.02499479166666667],[127,274,73,-0.02499479166666667],[127,274,74,-0.02499479166666667],[127,274,75,-0.02499479166666667],[127,274,76,-0.02499479166666667],[127,274,77,-0.02499479166666667],[127,274,78,-0.02499479166666667],[127,274,79,-0.02499479166666667],[127,275,64,-0.02499479166666667],[127,275,65,-0.02499479166666667],[127,275,66,-0.02499479166666667],[127,275,67,-0.02499479166666667],[127,275,68,-0.02499479166666667],[127,275,69,-0.02499479166666667],[127,275,70,-0.02499479166666667],[127,275,71,-0.02499479166666667],[127,275,72,-0.02499479166666667],[127,275,73,-0.02499479166666667],[127,275,74,-0.02499479166666667],[127,275,75,-0.02499479166666667],[127,275,76,-0.02499479166666667],[127,275,77,-0.02499479166666667],[127,275,78,-0.02499479166666667],[127,275,79,-0.02499479166666667],[127,276,64,-0.02499479166666667],[127,276,65,-0.02499479166666667],[127,276,66,-0.02499479166666667],[127,276,67,-0.02499479166666667],[127,276,68,-0.02499479166666667],[127,276,69,-0.02499479166666667],[127,276,70,-0.02499479166666667],[127,276,71,-0.02499479166666667],[127,276,72,-0.02499479166666667],[127,276,73,-0.02499479166666667],[127,276,74,-0.02499479166666667],[127,276,75,-0.02499479166666667],[127,276,76,-0.02499479166666667],[127,276,77,-0.02499479166666667],[127,276,78,-0.02499479166666667],[127,276,79,-0.02499479166666667],[127,277,64,-0.02499479166666667],[127,277,65,-0.02499479166666667],[127,277,66,-0.02499479166666667],[127,277,67,-0.02499479166666667],[127,277,68,-0.02499479166666667],[127,277,69,-0.02499479166666667],[127,277,70,-0.02499479166666667],[127,277,71,-0.02499479166666667],[127,277,72,-0.02499479166666667],[127,277,73,-0.02499479166666667],[127,277,74,-0.02499479166666667],[127,277,75,-0.02499479166666667],[127,277,76,-0.02499479166666667],[127,277,77,-0.02499479166666667],[127,277,78,-0.02499479166666667],[127,277,79,-0.02499479166666667],[127,278,64,-0.02499479166666667],[127,278,65,-0.02499479166666667],[127,278,66,-0.02499479166666667],[127,278,67,-0.02499479166666667],[127,278,68,-0.02499479166666667],[127,278,69,-0.02499479166666667],[127,278,70,-0.02499479166666667],[127,278,71,-0.02499479166666667],[127,278,72,-0.02499479166666667],[127,278,73,-0.02499479166666667],[127,278,74,-0.02499479166666667],[127,278,75,-0.02499479166666667],[127,278,76,-0.02499479166666667],[127,278,77,-0.02499479166666667],[127,278,78,-0.02499479166666667],[127,278,79,-0.02499479166666667],[127,279,64,-0.02499479166666667],[127,279,65,-0.02499479166666667],[127,279,66,-0.02499479166666667],[127,279,67,-0.02499479166666667],[127,279,68,-0.02499479166666667],[127,279,69,-0.02499479166666667],[127,279,70,-0.02499479166666667],[127,279,71,-0.02499479166666667],[127,279,72,-0.02499479166666667],[127,279,73,-0.02499479166666667],[127,279,74,-0.02499479166666667],[127,279,75,-0.02499479166666667],[127,279,76,-0.02499479166666667],[127,279,77,-0.02499479166666667],[127,279,78,-0.02499479166666667],[127,279,79,-0.02499479166666667],[127,280,64,-0.02499479166666667],[127,280,65,-0.02499479166666667],[127,280,66,-0.02499479166666667],[127,280,67,-0.02499479166666667],[127,280,68,-0.02499479166666667],[127,280,69,-0.02499479166666667],[127,280,70,-0.02499479166666667],[127,280,71,-0.02499479166666667],[127,280,72,-0.02499479166666667],[127,280,73,-0.02499479166666667],[127,280,74,-0.02499479166666667],[127,280,75,-0.02499479166666667],[127,280,76,-0.02499479166666667],[127,280,77,-0.02499479166666667],[127,280,78,-0.02499479166666667],[127,280,79,-0.02499479166666667],[127,281,64,-0.02499479166666667],[127,281,65,-0.02499479166666667],[127,281,66,-0.02499479166666667],[127,281,67,-0.02499479166666667],[127,281,68,-0.02499479166666667],[127,281,69,-0.02499479166666667],[127,281,70,-0.02499479166666667],[127,281,71,-0.02499479166666667],[127,281,72,-0.02499479166666667],[127,281,73,-0.02499479166666667],[127,281,74,-0.02499479166666667],[127,281,75,-0.02499479166666667],[127,281,76,-0.02499479166666667],[127,281,77,-0.02499479166666667],[127,281,78,-0.02499479166666667],[127,281,79,-0.02499479166666667],[127,282,64,-0.02499479166666667],[127,282,65,-0.02499479166666667],[127,282,66,-0.02499479166666667],[127,282,67,-0.02499479166666667],[127,282,68,-0.02499479166666667],[127,282,69,-0.02499479166666667],[127,282,70,-0.02499479166666667],[127,282,71,-0.02499479166666667],[127,282,72,-0.02499479166666667],[127,282,73,-0.02499479166666667],[127,282,74,-0.02499479166666667],[127,282,75,-0.02499479166666667],[127,282,76,-0.02499479166666667],[127,282,77,-0.02499479166666667],[127,282,78,-0.02499479166666667],[127,282,79,-0.02499479166666667],[127,283,64,-0.02499479166666667],[127,283,65,-0.02499479166666667],[127,283,66,-0.02499479166666667],[127,283,67,-0.02499479166666667],[127,283,68,-0.02499479166666667],[127,283,69,-0.02499479166666667],[127,283,70,-0.02499479166666667],[127,283,71,-0.02499479166666667],[127,283,72,-0.02499479166666667],[127,283,73,-0.02499479166666667],[127,283,74,-0.02499479166666667],[127,283,75,-0.02499479166666667],[127,283,76,-0.02499479166666667],[127,283,77,-0.02499479166666667],[127,283,78,-0.02499479166666667],[127,283,79,-0.02499479166666667],[127,284,64,-0.02499479166666667],[127,284,65,-0.02499479166666667],[127,284,66,-0.02499479166666667],[127,284,67,-0.02499479166666667],[127,284,68,-0.02499479166666667],[127,284,69,-0.02499479166666667],[127,284,70,-0.02499479166666667],[127,284,71,-0.02499479166666667],[127,284,72,-0.02499479166666667],[127,284,73,-0.02499479166666667],[127,284,74,-0.02499479166666667],[127,284,75,-0.02499479166666667],[127,284,76,-0.02499479166666667],[127,284,77,-0.02499479166666667],[127,284,78,-0.02499479166666667],[127,284,79,-0.02499479166666667],[127,285,64,-0.02499479166666667],[127,285,65,-0.02499479166666667],[127,285,66,-0.02499479166666667],[127,285,67,-0.02499479166666667],[127,285,68,-0.02499479166666667],[127,285,69,-0.02499479166666667],[127,285,70,-0.02499479166666667],[127,285,71,-0.02499479166666667],[127,285,72,-0.02499479166666667],[127,285,73,-0.02499479166666667],[127,285,74,-0.02499479166666667],[127,285,75,-0.02499479166666667],[127,285,76,-0.02499479166666667],[127,285,77,-0.02499479166666667],[127,285,78,-0.02499479166666667],[127,285,79,-0.02499479166666667],[127,286,64,-0.02499479166666667],[127,286,65,-0.02499479166666667],[127,286,66,-0.02499479166666667],[127,286,67,-0.02499479166666667],[127,286,68,-0.02499479166666667],[127,286,69,-0.02499479166666667],[127,286,70,-0.02499479166666667],[127,286,71,-0.02499479166666667],[127,286,72,-0.02499479166666667],[127,286,73,-0.02499479166666667],[127,286,74,-0.02499479166666667],[127,286,75,-0.02499479166666667],[127,286,76,-0.02499479166666667],[127,286,77,-0.02499479166666667],[127,286,78,-0.02499479166666667],[127,286,79,-0.02499479166666667],[127,287,64,-0.02499479166666667],[127,287,65,-0.02499479166666667],[127,287,66,-0.02499479166666667],[127,287,67,-0.02499479166666667],[127,287,68,-0.02499479166666667],[127,287,69,-0.02499479166666667],[127,287,70,-0.02499479166666667],[127,287,71,-0.02499479166666667],[127,287,72,-0.02499479166666667],[127,287,73,-0.02499479166666667],[127,287,74,-0.02499479166666667],[127,287,75,-0.02499479166666667],[127,287,76,-0.02499479166666667],[127,287,77,-0.02499479166666667],[127,287,78,-0.02499479166666667],[127,287,79,-0.02499479166666667],[127,288,64,-0.02499479166666667],[127,288,65,-0.02499479166666667],[127,288,66,-0.02499479166666667],[127,288,67,-0.02499479166666667],[127,288,68,-0.02499479166666667],[127,288,69,-0.02499479166666667],[127,288,70,-0.02499479166666667],[127,288,71,-0.02499479166666667],[127,288,72,-0.02499479166666667],[127,288,73,-0.02499479166666667],[127,288,74,-0.02499479166666667],[127,288,75,-0.02499479166666667],[127,288,76,-0.02499479166666667],[127,288,77,-0.02499479166666667],[127,288,78,-0.02499479166666667],[127,288,79,-0.02499479166666667],[127,289,64,-0.02499479166666667],[127,289,65,-0.02499479166666667],[127,289,66,-0.02499479166666667],[127,289,67,-0.02499479166666667],[127,289,68,-0.02499479166666667],[127,289,69,-0.02499479166666667],[127,289,70,-0.02499479166666667],[127,289,71,-0.02499479166666667],[127,289,72,-0.02499479166666667],[127,289,73,-0.02499479166666667],[127,289,74,-0.02499479166666667],[127,289,75,-0.02499479166666667],[127,289,76,-0.02499479166666667],[127,289,77,-0.02499479166666667],[127,289,78,-0.02499479166666667],[127,289,79,-0.02499479166666667],[127,290,64,-0.02499479166666667],[127,290,65,-0.02499479166666667],[127,290,66,-0.02499479166666667],[127,290,67,-0.02499479166666667],[127,290,68,-0.02499479166666667],[127,290,69,-0.02499479166666667],[127,290,70,-0.02499479166666667],[127,290,71,-0.02499479166666667],[127,290,72,-0.02499479166666667],[127,290,73,-0.02499479166666667],[127,290,74,-0.02499479166666667],[127,290,75,-0.02499479166666667],[127,290,76,-0.02499479166666667],[127,290,77,-0.02499479166666667],[127,290,78,-0.02499479166666667],[127,290,79,-0.02499479166666667],[127,291,64,-0.02499479166666667],[127,291,65,-0.02499479166666667],[127,291,66,-0.02499479166666667],[127,291,67,-0.02499479166666667],[127,291,68,-0.02499479166666667],[127,291,69,-0.02499479166666667],[127,291,70,-0.02499479166666667],[127,291,71,-0.02499479166666667],[127,291,72,-0.02499479166666667],[127,291,73,-0.02499479166666667],[127,291,74,-0.02499479166666667],[127,291,75,-0.02499479166666667],[127,291,76,-0.02499479166666667],[127,291,77,-0.02499479166666667],[127,291,78,-0.02499479166666667],[127,291,79,-0.02499479166666667],[127,292,64,-0.02499479166666667],[127,292,65,-0.02499479166666667],[127,292,66,-0.02499479166666667],[127,292,67,-0.02499479166666667],[127,292,68,-0.02499479166666667],[127,292,69,-0.02499479166666667],[127,292,70,-0.02499479166666667],[127,292,71,-0.02499479166666667],[127,292,72,-0.02499479166666667],[127,292,73,-0.02499479166666667],[127,292,74,-0.02499479166666667],[127,292,75,-0.02499479166666667],[127,292,76,-0.02499479166666667],[127,292,77,-0.02499479166666667],[127,292,78,-0.02499479166666667],[127,292,79,-0.02499479166666667],[127,293,64,-0.02499479166666667],[127,293,65,-0.02499479166666667],[127,293,66,-0.02499479166666667],[127,293,67,-0.02499479166666667],[127,293,68,-0.02499479166666667],[127,293,69,-0.02499479166666667],[127,293,70,-0.02499479166666667],[127,293,71,-0.02499479166666667],[127,293,72,-0.02499479166666667],[127,293,73,-0.02499479166666667],[127,293,74,-0.02499479166666667],[127,293,75,-0.02499479166666667],[127,293,76,-0.02499479166666667],[127,293,77,-0.02499479166666667],[127,293,78,-0.02499479166666667],[127,293,79,-0.02499479166666667],[127,294,64,-0.02499479166666667],[127,294,65,-0.02499479166666667],[127,294,66,-0.02499479166666667],[127,294,67,-0.02499479166666667],[127,294,68,-0.02499479166666667],[127,294,69,-0.02499479166666667],[127,294,70,-0.02499479166666667],[127,294,71,-0.02499479166666667],[127,294,72,-0.02499479166666667],[127,294,73,-0.02499479166666667],[127,294,74,-0.02499479166666667],[127,294,75,-0.02499479166666667],[127,294,76,-0.02499479166666667],[127,294,77,-0.02499479166666667],[127,294,78,-0.02499479166666667],[127,294,79,-0.02499479166666667],[127,295,64,-0.02499479166666667],[127,295,65,-0.02499479166666667],[127,295,66,-0.02499479166666667],[127,295,67,-0.02499479166666667],[127,295,68,-0.02499479166666667],[127,295,69,-0.02499479166666667],[127,295,70,-0.02499479166666667],[127,295,71,-0.02499479166666667],[127,295,72,-0.02499479166666667],[127,295,73,-0.02499479166666667],[127,295,74,-0.02499479166666667],[127,295,75,-0.02499479166666667],[127,295,76,-0.02499479166666667],[127,295,77,-0.02499479166666667],[127,295,78,-0.02499479166666667],[127,295,79,-0.02499479166666667],[127,296,64,-0.02499479166666667],[127,296,65,-0.02499479166666667],[127,296,66,-0.02499479166666667],[127,296,67,-0.02499479166666667],[127,296,68,-0.02499479166666667],[127,296,69,-0.02499479166666667],[127,296,70,-0.02499479166666667],[127,296,71,-0.02499479166666667],[127,296,72,-0.02499479166666667],[127,296,73,-0.02499479166666667],[127,296,74,-0.02499479166666667],[127,296,75,-0.02499479166666667],[127,296,76,-0.02499479166666667],[127,296,77,-0.02499479166666667],[127,296,78,-0.02499479166666667],[127,296,79,-0.02499479166666667],[127,297,64,-0.02499479166666667],[127,297,65,-0.02499479166666667],[127,297,66,-0.02499479166666667],[127,297,67,-0.02499479166666667],[127,297,68,-0.02499479166666667],[127,297,69,-0.02499479166666667],[127,297,70,-0.02499479166666667],[127,297,71,-0.02499479166666667],[127,297,72,-0.02499479166666667],[127,297,73,-0.02499479166666667],[127,297,74,-0.02499479166666667],[127,297,75,-0.02499479166666667],[127,297,76,-0.02499479166666667],[127,297,77,-0.02499479166666667],[127,297,78,-0.02499479166666667],[127,297,79,-0.02499479166666667],[127,298,64,-0.02499479166666667],[127,298,65,-0.02499479166666667],[127,298,66,-0.02499479166666667],[127,298,67,-0.02499479166666667],[127,298,68,-0.02499479166666667],[127,298,69,-0.02499479166666667],[127,298,70,-0.02499479166666667],[127,298,71,-0.02499479166666667],[127,298,72,-0.02499479166666667],[127,298,73,-0.02499479166666667],[127,298,74,-0.02499479166666667],[127,298,75,-0.02499479166666667],[127,298,76,-0.02499479166666667],[127,298,77,-0.02499479166666667],[127,298,78,-0.02499479166666667],[127,298,79,-0.02499479166666667],[127,299,64,-0.02499479166666667],[127,299,65,-0.02499479166666667],[127,299,66,-0.02499479166666667],[127,299,67,-0.02499479166666667],[127,299,68,-0.02499479166666667],[127,299,69,-0.02499479166666667],[127,299,70,-0.02499479166666667],[127,299,71,-0.02499479166666667],[127,299,72,-0.02499479166666667],[127,299,73,-0.02499479166666667],[127,299,74,-0.02499479166666667],[127,299,75,-0.02499479166666667],[127,299,76,-0.02499479166666667],[127,299,77,-0.02499479166666667],[127,299,78,-0.02499479166666667],[127,299,79,-0.02499479166666667],[127,300,64,-0.02499479166666667],[127,300,65,-0.02499479166666667],[127,300,66,-0.02499479166666667],[127,300,67,-0.02499479166666667],[127,300,68,-0.02499479166666667],[127,300,69,-0.02499479166666667],[127,300,70,-0.02499479166666667],[127,300,71,-0.02499479166666667],[127,300,72,-0.02499479166666667],[127,300,73,-0.02499479166666667],[127,300,74,-0.02499479166666667],[127,300,75,-0.02499479166666667],[127,300,76,-0.02499479166666667],[127,300,77,-0.02499479166666667],[127,300,78,-0.02499479166666667],[127,300,79,-0.02499479166666667],[127,301,64,-0.02499479166666667],[127,301,65,-0.02499479166666667],[127,301,66,-0.02499479166666667],[127,301,67,-0.02499479166666667],[127,301,68,-0.02499479166666667],[127,301,69,-0.02499479166666667],[127,301,70,-0.02499479166666667],[127,301,71,-0.02499479166666667],[127,301,72,-0.02499479166666667],[127,301,73,-0.02499479166666667],[127,301,74,-0.02499479166666667],[127,301,75,-0.02499479166666667],[127,301,76,-0.02499479166666667],[127,301,77,-0.02499479166666667],[127,301,78,-0.02499479166666667],[127,301,79,-0.02499479166666667],[127,302,64,-0.02499479166666667],[127,302,65,-0.02499479166666667],[127,302,66,-0.02499479166666667],[127,302,67,-0.02499479166666667],[127,302,68,-0.02499479166666667],[127,302,69,-0.02499479166666667],[127,302,70,-0.02499479166666667],[127,302,71,-0.02499479166666667],[127,302,72,-0.02499479166666667],[127,302,73,-0.02499479166666667],[127,302,74,-0.02499479166666667],[127,302,75,-0.02499479166666667],[127,302,76,-0.02499479166666667],[127,302,77,-0.02499479166666667],[127,302,78,-0.02499479166666667],[127,302,79,-0.02499479166666667],[127,303,64,-0.02499479166666667],[127,303,65,-0.02499479166666667],[127,303,66,-0.02499479166666667],[127,303,67,-0.02499479166666667],[127,303,68,-0.02499479166666667],[127,303,69,-0.02499479166666667],[127,303,70,-0.02499479166666667],[127,303,71,-0.02499479166666667],[127,303,72,-0.02499479166666667],[127,303,73,-0.02499479166666667],[127,303,74,-0.02499479166666667],[127,303,75,-0.02499479166666667],[127,303,76,-0.02499479166666667],[127,303,77,-0.02499479166666667],[127,303,78,-0.02499479166666667],[127,303,79,-0.02499479166666667],[127,304,64,-0.02499479166666667],[127,304,65,-0.02499479166666667],[127,304,66,-0.02499479166666667],[127,304,67,-0.02499479166666667],[127,304,68,-0.02499479166666667],[127,304,69,-0.02499479166666667],[127,304,70,-0.02499479166666667],[127,304,71,-0.02499479166666667],[127,304,72,-0.02499479166666667],[127,304,73,-0.02499479166666667],[127,304,74,-0.02499479166666667],[127,304,75,-0.02499479166666667],[127,304,76,-0.02499479166666667],[127,304,77,-0.02499479166666667],[127,304,78,-0.02499479166666667],[127,304,79,-0.02499479166666667],[127,305,64,-0.02499479166666667],[127,305,65,-0.02499479166666667],[127,305,66,-0.02499479166666667],[127,305,67,-0.02499479166666667],[127,305,68,-0.02499479166666667],[127,305,69,-0.02499479166666667],[127,305,70,-0.02499479166666667],[127,305,71,-0.02499479166666667],[127,305,72,-0.02499479166666667],[127,305,73,-0.02499479166666667],[127,305,74,-0.02499479166666667],[127,305,75,-0.02499479166666667],[127,305,76,-0.02499479166666667],[127,305,77,-0.02499479166666667],[127,305,78,-0.02499479166666667],[127,305,79,-0.02499479166666667],[127,306,64,-0.02499479166666667],[127,306,65,-0.02499479166666667],[127,306,66,-0.02499479166666667],[127,306,67,-0.02499479166666667],[127,306,68,-0.02499479166666667],[127,306,69,-0.02499479166666667],[127,306,70,-0.02499479166666667],[127,306,71,-0.02499479166666667],[127,306,72,-0.02499479166666667],[127,306,73,-0.02499479166666667],[127,306,74,-0.02499479166666667],[127,306,75,-0.02499479166666667],[127,306,76,-0.02499479166666667],[127,306,77,-0.02499479166666667],[127,306,78,-0.02499479166666667],[127,306,79,-0.02499479166666667],[127,307,64,-0.02499479166666667],[127,307,65,-0.02499479166666667],[127,307,66,-0.02499479166666667],[127,307,67,-0.02499479166666667],[127,307,68,-0.02499479166666667],[127,307,69,-0.02499479166666667],[127,307,70,-0.02499479166666667],[127,307,71,-0.02499479166666667],[127,307,72,-0.02499479166666667],[127,307,73,-0.02499479166666667],[127,307,74,-0.02499479166666667],[127,307,75,-0.02499479166666667],[127,307,76,-0.02499479166666667],[127,307,77,-0.02499479166666667],[127,307,78,-0.02499479166666667],[127,307,79,-0.02499479166666667],[127,308,64,-0.02499479166666667],[127,308,65,-0.02499479166666667],[127,308,66,-0.02499479166666667],[127,308,67,-0.02499479166666667],[127,308,68,-0.02499479166666667],[127,308,69,-0.02499479166666667],[127,308,70,-0.02499479166666667],[127,308,71,-0.02499479166666667],[127,308,72,-0.02499479166666667],[127,308,73,-0.02499479166666667],[127,308,74,-0.02499479166666667],[127,308,75,-0.02499479166666667],[127,308,76,-0.02499479166666667],[127,308,77,-0.02499479166666667],[127,308,78,-0.02499479166666667],[127,308,79,-0.02499479166666667],[127,309,64,-0.02499479166666667],[127,309,65,-0.02499479166666667],[127,309,66,-0.02499479166666667],[127,309,67,-0.02499479166666667],[127,309,68,-0.02499479166666667],[127,309,69,-0.02499479166666667],[127,309,70,-0.02499479166666667],[127,309,71,-0.02499479166666667],[127,309,72,-0.02499479166666667],[127,309,73,-0.02499479166666667],[127,309,74,-0.02499479166666667],[127,309,75,-0.02499479166666667],[127,309,76,-0.02499479166666667],[127,309,77,-0.02499479166666667],[127,309,78,-0.02499479166666667],[127,309,79,-0.02499479166666667],[127,310,64,-0.02499479166666667],[127,310,65,-0.02499479166666667],[127,310,66,-0.02499479166666667],[127,310,67,-0.02499479166666667],[127,310,68,-0.02499479166666667],[127,310,69,-0.02499479166666667],[127,310,70,-0.02499479166666667],[127,310,71,-0.02499479166666667],[127,310,72,-0.02499479166666667],[127,310,73,-0.02499479166666667],[127,310,74,-0.02499479166666667],[127,310,75,-0.02499479166666667],[127,310,76,-0.02499479166666667],[127,310,77,-0.02499479166666667],[127,310,78,-0.02499479166666667],[127,310,79,-0.02499479166666667],[127,311,64,-0.02499479166666667],[127,311,65,-0.02499479166666667],[127,311,66,-0.02499479166666667],[127,311,67,-0.02499479166666667],[127,311,68,-0.02499479166666667],[127,311,69,-0.02499479166666667],[127,311,70,-0.02499479166666667],[127,311,71,-0.02499479166666667],[127,311,72,-0.02499479166666667],[127,311,73,-0.02499479166666667],[127,311,74,-0.02499479166666667],[127,311,75,-0.02499479166666667],[127,311,76,-0.02499479166666667],[127,311,77,-0.02499479166666667],[127,311,78,-0.02499479166666667],[127,311,79,-0.02499479166666667],[127,312,64,-0.02499479166666667],[127,312,65,-0.02499479166666667],[127,312,66,-0.02499479166666667],[127,312,67,-0.02499479166666667],[127,312,68,-0.02499479166666667],[127,312,69,-0.02499479166666667],[127,312,70,-0.02499479166666667],[127,312,71,-0.02499479166666667],[127,312,72,-0.02499479166666667],[127,312,73,-0.02499479166666667],[127,312,74,-0.02499479166666667],[127,312,75,-0.02499479166666667],[127,312,76,-0.02499479166666667],[127,312,77,-0.02499479166666667],[127,312,78,-0.02499479166666667],[127,312,79,-0.02499479166666667],[127,313,64,-0.02499479166666667],[127,313,65,-0.02499479166666667],[127,313,66,-0.02499479166666667],[127,313,67,-0.02499479166666667],[127,313,68,-0.02499479166666667],[127,313,69,-0.02499479166666667],[127,313,70,-0.02499479166666667],[127,313,71,-0.02499479166666667],[127,313,72,-0.02499479166666667],[127,313,73,-0.02499479166666667],[127,313,74,-0.02499479166666667],[127,313,75,-0.02499479166666667],[127,313,76,-0.02499479166666667],[127,313,77,-0.02499479166666667],[127,313,78,-0.02499479166666667],[127,313,79,-0.02499479166666667],[127,314,64,-0.02499479166666667],[127,314,65,-0.02499479166666667],[127,314,66,-0.02499479166666667],[127,314,67,-0.02499479166666667],[127,314,68,-0.02499479166666667],[127,314,69,-0.02499479166666667],[127,314,70,-0.02499479166666667],[127,314,71,-0.02499479166666667],[127,314,72,-0.02499479166666667],[127,314,73,-0.02499479166666667],[127,314,74,-0.02499479166666667],[127,314,75,-0.02499479166666667],[127,314,76,-0.02499479166666667],[127,314,77,-0.02499479166666667],[127,314,78,-0.02499479166666667],[127,314,79,-0.02499479166666667],[127,315,64,-0.02499479166666667],[127,315,65,-0.02499479166666667],[127,315,66,-0.02499479166666667],[127,315,67,-0.02499479166666667],[127,315,68,-0.02499479166666667],[127,315,69,-0.02499479166666667],[127,315,70,-0.02499479166666667],[127,315,71,-0.02499479166666667],[127,315,72,-0.02499479166666667],[127,315,73,-0.02499479166666667],[127,315,74,-0.02499479166666667],[127,315,75,-0.02499479166666667],[127,315,76,-0.02499479166666667],[127,315,77,-0.02499479166666667],[127,315,78,-0.02499479166666667],[127,315,79,-0.02499479166666667],[127,316,64,-0.02499479166666667],[127,316,65,-0.02499479166666667],[127,316,66,-0.02499479166666667],[127,316,67,-0.02499479166666667],[127,316,68,-0.02499479166666667],[127,316,69,-0.02499479166666667],[127,316,70,-0.02499479166666667],[127,316,71,-0.02499479166666667],[127,316,72,-0.02499479166666667],[127,316,73,-0.02499479166666667],[127,316,74,-0.02499479166666667],[127,316,75,-0.02499479166666667],[127,316,76,-0.02499479166666667],[127,316,77,-0.02499479166666667],[127,316,78,-0.02499479166666667],[127,316,79,-0.02499479166666667],[127,317,64,-0.02499479166666667],[127,317,65,-0.02499479166666667],[127,317,66,-0.02499479166666667],[127,317,67,-0.02499479166666667],[127,317,68,-0.02499479166666667],[127,317,69,-0.02499479166666667],[127,317,70,-0.02499479166666667],[127,317,71,-0.02499479166666667],[127,317,72,-0.02499479166666667],[127,317,73,-0.02499479166666667],[127,317,74,-0.02499479166666667],[127,317,75,-0.02499479166666667],[127,317,76,-0.02499479166666667],[127,317,77,-0.02499479166666667],[127,317,78,-0.02499479166666667],[127,317,79,-0.02499479166666667],[127,318,64,-0.02499479166666667],[127,318,65,-0.02499479166666667],[127,318,66,-0.02499479166666667],[127,318,67,-0.02499479166666667],[127,318,68,-0.02499479166666667],[127,318,69,-0.02499479166666667],[127,318,70,-0.02499479166666667],[127,318,71,-0.02499479166666667],[127,318,72,-0.02499479166666667],[127,318,73,-0.02499479166666667],[127,318,74,-0.02499479166666667],[127,318,75,-0.02499479166666667],[127,318,76,-0.02499479166666667],[127,318,77,-0.02499479166666667],[127,318,78,-0.02499479166666667],[127,318,79,-0.02499479166666667],[127,319,64,-0.02499479166666667],[127,319,65,-0.02499479166666667],[127,319,66,-0.02499479166666667],[127,319,67,-0.02499479166666667],[127,319,68,-0.02499479166666667],[127,319,69,-0.02499479166666667],[127,319,70,-0.02499479166666667],[127,319,71,-0.02499479166666667],[127,319,72,-0.02499479166666667],[127,319,73,-0.02499479166666667],[127,319,74,-0.02499479166666667],[127,319,75,-0.02499479166666667],[127,319,76,-0.02499479166666667],[127,319,77,-0.02499479166666667],[127,319,78,-0.02499479166666667],[127,319,79,-0.02499479166666667]] diff --git a/pumpkin-world/assets/no_blend_no_beard_0_0.chunk b/pumpkin-world/assets/no_blend_no_beard_0_0.chunk new file mode 100644 index 000000000..48dcc3bba --- /dev/null +++ b/pumpkin-world/assets/no_blend_no_beard_0_0.chunk @@ -0,0 +1 @@ +[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] diff --git a/pumpkin-world/assets/no_blend_no_beard_7_4.chunk b/pumpkin-world/assets/no_blend_no_beard_7_4.chunk new file mode 100644 index 000000000..92e93d8b0 --- /dev/null +++ b/pumpkin-world/assets/no_blend_no_beard_7_4.chunk @@ -0,0 +1 @@ +[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,86,86,86,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,86,1,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,86,86,1,0,0,0,0,0,0,0,0,0,0,1,1,86,86,86,1,0,0,0,0,0,0,0,0,0,1,1,86,86,86,86,1,0,0,0,0,0,0,0,0,0,1,1,86,86,86,86,1,0,0,0,0,0,0,0,0,0,1,1,86,86,86,86,1,0,0,0,0,0,0,0,0,0,1,1,86,86,86,86,1,1,0,0,0,0,0,0,0,0,1,1,86,86,86,86,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,86,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,86,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,86,1,1,1,0,0,0,0,0,0,0,0,1,1,86,86,86,1,1,1,1,1,1,1,0,0,0,1,1,86,86,86,86,1,0,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,0,0,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,0,0,1,1,1,1,1,1,1,86,86,86,86,86,1,1,0,0,0,1,1,1,1,1,1,86,86,86,86,86,1,1,0,0,0,0,1,1,1,1,1,86,86,86,86,86,1,1,0,0,0,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,1,1,86,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,86,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,86,86,86,86,86,86,1,1,86,86,86,86,86,86,1,1,1,86,86,86,86,86,1,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,1,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,1,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,86,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,86,86,1,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,1,86,86,86,86,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,86,86,86,1,1,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,86,86,1,1,1,1,86,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,86,86,86,86,1,86,86,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,86,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,86,86,1,1,1,1,0,0,0,1,1,1,1,1,1,1,86,86,86,1,1,1,0,0,0,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,86,86,1,1,1,1,1,1,1,86,86,86,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,86,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,86,86,86,86,86,86,86,86,86,86,1,1,1,1,1,1,86,86,86,86,86,86,86,1,1,1,1,1,1,1,1,1,86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,86,86,86,1,1,1,1,1,86,86,86,86,86,1,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,1,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] diff --git a/pumpkin-world/assets/perlin2_7_4.json b/pumpkin-world/assets/perlin2_7_4.json new file mode 100644 index 000000000..3086769b2 --- /dev/null +++ b/pumpkin-world/assets/perlin2_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.07128718385312782],[112,-64,65,-0.07468325475664273],[112,-64,66,-0.07797963487841897],[112,-64,67,-0.0811748820840359],[112,-64,68,-0.08426769655160082],[112,-64,69,-0.08725692610701785],[112,-64,70,-0.09014157162104297],[112,-64,71,-0.09292079246803708],[112,-64,72,-0.09559391204643453],[112,-64,73,-0.09816042336084208],[112,-64,74,-0.10061999466599636],[112,-64,75,-0.1029724751722686],[112,-64,76,-0.1052179008129639],[112,-64,77,-0.107356500073293],[112,-64,78,-0.10938869988106681],[112,-64,79,-0.11131513155909312],[112,-63,64,-0.06548871027113234],[112,-63,65,-0.06887340604434022],[112,-63,66,-0.07215906305355013],[112,-63,67,-0.07534423558371828],[112,-63,68,-0.07842761961935574],[112,-63,69,-0.08140805817169572],[112,-63,70,-0.08428454666768104],[112,-63,71,-0.08705623840068688],[112,-63,72,-0.0897224500429894],[112,-63,73,-0.09228266721990486],[112,-63,74,-0.09473655014581772],[112,-63,75,-0.09708393932179415],[112,-63,76,-0.0993248612950206],[112,-63,77,-0.10145953447995437],[112,-63,78,-0.10348837504122932],[112,-63,79,-0.10541200283829844],[112,-62,64,-0.05961605602106934],[112,-62,65,-0.06298865863224423],[112,-62,66,-0.06626289881697756],[112,-62,67,-0.06943732720126516],[112,-62,68,-0.07251063547347258],[112,-62,69,-0.07548166170298454],[112,-62,70,-0.07834939572070954],[112,-62,71,-0.08111298456135263],[112,-62,72,-0.08377173796747095],[112,-62,73,-0.08632513395523067],[112,-62,74,-0.08877282444209],[112,-62,75,-0.09111464093609867],[112,-62,76,-0.09335060028706099],[112,-62,77,-0.09548091049944085],[112,-62,78,-0.09750597660705906],[112,-62,79,-0.09942640660955948],[112,-61,64,-0.05367356554427649],[112,-61,65,-0.057033363911158985],[112,-61,66,-0.06029550017307339],[112,-61,67,-0.06345852122035778],[112,-61,68,-0.06652111434464303],[112,-61,69,-0.06948211254857395],[112,-61,70,-0.07234049991741875],[112,-61,71,-0.07509541705248024],[112,-61,72,-0.07774616656632405],[112,-61,73,-0.0802922186397409],[112,-61,74,-0.08273321664066813],[112,-61,75,-0.0850689828047646],[112,-61,76,-0.08729952397787866],[112,-61,77,-0.08942503742029428],[112,-61,78,-0.09144591667280211],[112,-61,79,-0.09336275748457412],[112,-60,64,-0.047665624604594115],[112,-60,65,-0.051011915061452195],[112,-60,66,-0.05426126736720638],[112,-60,67,-0.05741222460152828],[112,-60,68,-0.06046346956075077],[112,-60,69,-0.06341383005825463],[112,-60,70,-0.06626228428677416],[112,-60,71,-0.06900796624254235],[112,-60,72,-0.07165017121127926],[112,-60,73,-0.07418836131595408],[112,-60,74,-0.07662217112653691],[112,-60,75,-0.07895141333143496],[112,-60,76,-0.08117608447085778],[112,-60,77,-0.08329637073199347],[112,-60,78,-0.08531265380604103],[112,-60,79,-0.08722551680708102],[112,-59,64,-0.04159665535307577],[112,-59,65,-0.04492874210854292],[112,-59,66,-0.04816463793242998],[112,-59,67,-0.051302882020470175],[112,-59,68,-0.054342152577223635],[112,-59,69,-0.05728127210672607],[112,-59,70,-0.06011921276509302],[112,-59,71,-0.06285510177498987],[112,-59,72,-0.0654882269019853],[112,-59,73,-0.06801804199270378],[112,-59,74,-0.07044417257500357],[112,-59,75,-0.07276642151987267],[112,-59,76,-0.07498477476528398],[112,-59,77,-0.07709940710189433],[112,-59,78,-0.07911068802063348],[112,-59,79,-0.08101918762216231],[112,-58,64,-0.03547111126914959],[112,-58,65,-0.03878830685439405],[112,-58,66,-0.042010081611746575],[112,-58,67,-0.045134970781512296],[112,-58,68,-0.04816164788215005],[112,-58,69,-0.05108892999079129],[112,-58,70,-0.053915783085742075],[112,-58,71,-0.056641327450885015],[112,-58,72,-0.05926484314199576],[112,-58,73,-0.06178577551489106],[112,-58,74,-0.06420374081563318],[112,-58,75,-0.0665185318324848],[112,-58,76,-0.06873012360985487],[112,-58,77,-0.07083867922412013],[112,-58,78,-0.07284455562136938],[112,-58,79,-0.0747483095170457],[112,-57,64,-0.02929347197855836],[112,-57,65,-0.03259509768533664],[112,-57,66,-0.035802095156273084],[112,-57,67,-0.03891299560657857],[112,-57,68,-0.041926467776489895],[112,-57,69,-0.04484132320126499],[112,-57,70,-0.047656521543193775],[112,-57,71,-0.05037117598554175],[112,-57,72,-0.05298455868843466],[112,-57,73,-0.05549610630661128],[112,-57,74,-0.05790542556926048],[112,-57,75,-0.060212298921640484],[112,-57,76,-0.06241669022872198],[112,-57,77,-0.06451875054073652],[112,-57,78,-0.06651882392067887],[112,-57,79,-0.06841745333374072],[112,-56,64,-0.02306823794792623],[112,-56,65,-0.026353624256072572],[112,-56,66,-0.029545196999154255],[112,-56,67,-0.032641483299487684],[112,-56,68,-0.03564114702922605],[112,-56,69,-0.03854299406944506],[112,-56,70,-0.041345977631280895],[112,-56,71,-0.04404920363902387],[112,-56,72,-0.046651936175191255],[112,-56,73,-0.04915360298749394],[112,-56,74,-0.051553801057919846],[112,-56,75,-0.053852302233630245],[112,-56,76,-0.05604905891991019],[112,-56,77,-0.058144209835054306],[112,-56,78,-0.06013808582723856],[112,-56,79,-0.062031215753352686],[112,-55,64,-0.016799925055791087],[112,-55,65,-0.02006841204969767],[112,-55,66,-0.023243921805066736],[112,-55,67,-0.026324977285426154],[112,-55,68,-0.029310237407294992],[112,-55,69,-0.03219850228798715],[112,-55,70,-0.034988718555489684],[112,-55,71,-0.037679984720335846],[112,-55,72,-0.04027155660947901],[112,-55,73,-0.042762852862096246],[112,-55,74,-0.04515346048753455],[112,-55,75,-0.04744314048510401],[112,-55,76,-0.0496318335259508],[112,-55,77,-0.05171966569689901],[112,-55,78,-0.053706954306306565],[112,-55,79,-0.055594213751912536],[112,-54,64,-0.010493059040419084],[112,-54,65,-0.013743996814056136],[112,-54,66,-0.01690281489562606],[112,-54,67,-0.01996803202591335],[112,-54,68,-0.022938302080616424],[112,-54,69,-0.025812419306492584],[112,-54,70,-0.028589323619611418],[112,-54,71,-0.031268105965626014],[112,-54,72,-0.033848013742079575],[112,-54,73,-0.03632845628266956],[112,-54,74,-0.03870901040368235],[112,-54,75,-0.04098942601230515],[112,-54,76,-0.0431696317770488],[112,-54,77,-0.04524974086016631],[112,-54,78,-0.047230056712115],[112,-54,79,-0.049111078928041785],[112,-53,64,-0.004152169824244933],[112,-53,65,-0.007384918874277613],[112,-53,66,-0.0105264265505437],[112,-53,67,-0.013575207309105553],[112,-53,68,-0.01652990990206049],[112,-53,69,-0.01938932260166526],[112,-53,70,-0.02215237848659457],[112,-53,71,-0.02481816079024668],[112,-53,72,-0.027385908311115426],[112,-53,73,-0.0298550208851438],[112,-53,74,-0.0322250649202821],[112,-53,75,-0.034495778992948756],[112,-53,76,-0.036667079506630174],[112,-53,77,-0.03873906641250846],[112,-53,78,-0.040712028992158866],[112,-53,79,-0.04258645170229791],[112,-52,64,0.0022182142852235076],[112,-52,65,-9.957173213280823E-4],[112,-52,66,-0.004119306184370175],[112,-52,67,-0.007151062415269416],[112,-52,68,-0.010089629562194946],[112,-52,69,-0.012933789821860775],[112,-52,70,-0.015682469313431757],[112,-52,71,-0.018334743414504917],[112,-52,72,-0.020889842159182548],[112,-52,73,-0.023347155698158595],[112,-52,74,-0.02570623982103537],[112,-52,75,-0.02796682154057084],[112,-52,76,-0.030128804739095294],[112,-52,77,-0.03219227587698115],[112,-52,78,-0.0341575097632113],[112,-52,79,-0.03602497538802896],[112,-51,64,0.008613572517719992],[112,-51,65,0.0054190759231032],[112,-51,66,0.0023140036008574283],[112,-51,67,-7.00150157751489E-4],[112,-51,68,-0.003622023619128334],[112,-51,69,-0.006450392806358285],[112,-51,70,-0.009184176760407281],[112,-51,71,-0.01182244286342582],[112,-51,72,-0.014364412224171175],[112,-51,73,-0.016809465125471545],[112,-51,74,-0.01915714653394507],[112,-51,75,-0.021407171671680825],[112,-51,76,-0.023559431650113427],[112,-51,77,-0.025613999165979173],[112,-51,78,-0.027571134259399055],[112,-51,79,-0.029431290134068977],[112,-50,64,0.015029397685901613],[112,-50,65,0.011854942165533733],[112,-50,66,0.008768973087212917],[112,-50,67,0.005772989200712675],[112,-50,68,0.0028683575967000108],[112,-50,69,5.630852080107385E-5],[112,-50,70,-0.0026620698745470905],[112,-50,71,-0.0052858368403774225],[112,-50,72,-0.007814204403617686],[112,-50,73,-0.010246542801585323],[112,-50,74,-0.012582385978761601],[112,-50,75,-0.014821437145557281],[112,-50,76,-0.016963574399295855],[112,-50,77,-0.019008856407307206],[112,-50,78,-0.020957528152174776],[112,-50,79,-0.022810026739113698],[112,-49,64,0.021461202354577824],[112,-49,65,0.018307382123609495],[112,-49,66,0.01524109163690246],[112,-49,67,0.012263834156526654],[112,-49,68,0.009376982202964124],[112,-49,69,0.006581772382587836],[112,-49,70,0.0038793001529020543],[112,-49,71,0.001270514525623101],[112,-49,72,-0.0012437872924092597],[112,-49,73,-0.0036629653204162116],[112,-49,74,-0.005986542287171881],[112,-49,75,-0.008214209176508724],[112,-49,76,-0.01034583083507079],[112,-49,77,-0.012381451642201946],[112,-49,78,-0.014321301242011142],[112,-49,79,-0.016165800337600178],[112,-48,64,0.027904525133145452],[112,-48,65,0.024771922232682653],[112,-48,66,0.021725874012369695],[112,-48,67,0.018767888298255153],[112,-48,68,0.015899343110785336],[112,-48,69,0.013121481506027322],[112,-48,70,0.010435406354625809],[112,-48,71,0.007842075058578812],[112,-48,72,0.005342294205815001],[112,-48,73,0.0029367141626518434],[112,-48,74,6.258236039212717E-4],[112,-48,75,-0.0015900560189461288],[112,-48,76,-0.003710776072107125],[112,-48,77,-0.005736366395653225],[112,-48,78,-0.007667041022162202],[112,-48,79,-0.00950320395743498],[112,-47,64,0.03435493709140369],[112,-47,65,0.031244121076213993],[112,-47,66,0.028218866820656774],[112,-47,67,0.02528068676431605],[112,-47,68,0.022430964495131156],[112,-47,69,0.019670949604684407],[112,-47,70,0.017001752481199284],[112,-47,71,0.014424339040331802],[112,-47,72,0.011939525393739103],[112,-47,73,0.009547972455504095],[112,-47,74,0.007250180486203406],[112,-47,75,0.005046483574908667],[112,-47,76,0.0029370440588923907],[112,-47,77,9.218468811488245E-4],[112,-47,78,-9.993061143143134E-4],[112,-47,79,-0.002826801949394664],[112,-46,64,0.040808048298905164],[112,-46,65,0.03771957594016029],[112,-46,66,0.034715655082180774],[112,-46,67,0.03179780282550171],[112,-46,68,0.028967408390438543],[112,-46,69,0.02622572798675371],[112,-46,70,0.023573879621010096],[112,-46,71,0.02101283784169261],[112,-46,72,0.018543428422086117],[112,-46,73,0.016166322980981196],[112,-46,74,0.013882033541002037],[112,-46,75,0.011690907024843322],[112,-46,76,0.009593119689186524],[112,-46,77,0.007588671496408073],[112,-46,78,0.005677380424034428],[112,-46,79,0.003858876711961834],[112,-45,64,0.04725951448752219],[112,-45,65,0.04419392949102374],[112,-45,66,0.041211868923600625],[112,-45,67,0.038314854592001346],[112,-45,68,0.035504281411135374],[112,-45,69,0.03278141228842457],[112,-45,70,0.030147372945817486],[112,-45,71,0.027603146679551438],[112,-45,72,0.02514956905764343],[112,-45,73,0.022787322555187894],[112,-45,74,0.020516931127254723],[112,-45,75,0.018338754719669503],[112,-45,76,0.016252983717451763],[112,-45,77,0.014259633331022759],[112,-45,78,0.012358537920134194],[112,-45,79,0.010549345255540743],[112,-44,64,0.05370504383738539],[112,-44,65,0.050662876577720506],[112,-44,66,0.04770319039493376],[112,-44,67,0.04482751184508693],[112,-44,68,0.04203724159721933],[112,-44,69,0.03933364933268191],[112,-44,70,0.036717868582112234],[112,-44,71,0.03419089150013299],[112,-44,72,0.031753563577758825],[112,-44,73,0.029406578292585528],[112,-44,74,0.02715047169655782],[112,-44,75,0.024985616941596067],[112,-44,76,0.02291221874285998],[112,-44,77,0.02093030777975602],[112,-44,78,0.019039735034646843],[112,-44,79,0.017240166069279805],[112,-43,64,0.06014040388636488],[112,-43,65,0.05712217115743912],[112,-43,66,0.05418536041109401],[112,-43,67,0.05133150299363376],[112,-43,68,0.048562005385068274],[112,-43,69,0.045878144113719266],[112,-43,70,0.04328106060844494],[112,-43,71,0.04077175598856686],[112,-43,72,0.03835108579148272],[112,-43,73,0.0360197546380403],[112,-43,74,0.03377831083546645],[112,-43,75,0.03162714091813623],[112,-43,76,0.02956646412595243],[112,-43,77,0.027596326820451766],[112,-43,78,0.025716596838587846],[112,-43,79,0.02392695778421139],[112,-42,64,0.06656142856275948],[112,-42,65,0.06356763334515592],[112,-42,66,0.060654185817513806],[112,-42,67,0.057822622155136005],[112,-42,68,0.05507435470314104],[112,-42,69,0.052410666906618664],[112,-42,70,0.04983270817838825],[112,-42,71,0.04734148870443533],[112,-42,72,0.04493787418701378],[112,-42,73,0.042622580525487286],[112,-42,74,0.040396168434706836],[112,-42,75,0.038259038001201895],[112,-42,76,0.03621142317696757],[112,-42,77,0.034253386210951864],[112,-42,78,0.03238481201819976],[112,-42,79,0.030605402486676536],[112,-41,64,0.07296402534136881],[112,-41,65,0.0699951565869773],[112,-41,66,0.06710554658002443],[112,-41,67,0.06429673636139621],[112,-41,68,0.061570144192746645],[112,-41,69,0.05892706050247776],[112,-41,70,0.05636864276930387],[112,-41,71,0.05389591034347074],[112,-41,72,0.05150973920562307],[112,-41,73,0.04921085666338776],[112,-41,74,0.04699983598547397],[112,-41,75,0.044877090973567735],[112,-41,76,0.04284287047179913],[112,-41,77,0.040897252813890006],[112,-41,78,0.03904014020794033],[112,-41,79,0.037271253058869136],[112,-40,64,0.07934418252309394],[112,-40,65,0.07640071495746081],[112,-40,66,0.0735354030991463],[112,-40,67,0.07074979288903405],[112,-40,68,0.0680453085540299],[112,-40,69,0.06542324756913376],[112,-40,70,0.0628847755570704],[112,-40,71,0.060430921125560255],[112,-40,72,0.05806257064221465],[112,-40,73,0.055780462947128684],[112,-40,74,0.05358518400297263],[112,-40,75,0.05147716148285464],[112,-40,76,0.049456659295738614],[112,-40,77,0.047523772049522295],[112,-40,78,0.04567841945173379],[112,-40,79,0.043920340647862544],[112,-39,64,0.08569797663776135],[112,-39,65,0.08278037058060472],[112,-39,66,0.07993980364847675],[112,-39,67,0.0771778267145069],[112,-39,68,0.07449587001686409],[112,-39,69,0.07189523813716991],[112,-39,70,0.06937710491645543],[112,-39,71,0.06694250830873749],[112,-39,72,0.0645923451721998],[112,-39,73,0.06232736599805444],[112,-39,74,0.060148169576880406],[112,-39,75,0.0580551976027156],[112,-39,76,0.056048729214684956],[112,-39,77,0.05412887547626899],[112,-39,78,0.0522955737921712],[112,-39,79,0.05054858226280312],[112,-38,64,0.09202157997031479],[112,-38,65,0.08913028117465471],[112,-38,66,0.086314891937322],[112,-38,67,0.08357696809378912],[112,-38,68,0.08091794593679646],[112,-38,69,0.07833913721135644],[112,-38,70,0.07584172404728151],[112,-38,71,0.07342675382931352],[112,-38,72,0.0710951340048408],[112,-38,73,0.06884762682927459],[112,-38,74,0.06668484404888575],[112,-38,75,0.06460724152137709],[112,-38,76,0.06261511377397144],[112,-38,77,0.06070858849912275],[112,-38,78,0.05888762098780809],[112,-38,79,0.057151988500417694],[112,-37,64,0.09831126821054947],[112,-37,65,0.09544670772089747],[112,-37,66,0.09265691479775195],[112,-37,67,0.08994345026688333],[112,-37,68,0.08730775651622358],[112,-37,69,0.08475115250769782],[112,-37,70,0.08227482872656211],[112,-37,71,0.07987984206832499],[112,-37,72,0.07756711066323829],[112,-37,73,0.07533740863842964],[112,-37,74,0.07319136081747946],[112,-37,75,0.07112943735771227],[112,-37,76,0.06915194832498905],[112,-37,77,0.06725903820610324],[112,-37,78,0.06545068035874047],[112,-37,79,0.06372667139901811],[112,-36,64,0.10456342822603981],[112,-36,65,0.1017260222560985],[112,-36,66,0.09896222999572424],[112,-36,67,0.09627361728681616],[112,-36,68,0.0936616326504448],[112,-36,69,0.0911276023157378],[112,-36,70,0.08867272518625735],[112,-36,71,0.086298067743943],[112,-36,72,0.0840045588906081],[112,-36,73,0.08179298472705832],[112,-36,74,0.07966398326964119],[112,-36,75,0.07761803910448895],[112,-36,76,0.07565547797924854],[112,-36,77,0.07377646133239624],[112,-36,78,0.07198098076009973],[112,-36,79,0.07026885242064329],[112,-35,64,0.11077456595855151],[112,-35,65,0.10796471578886768],[112,-35,66,0.10522731416656717],[112,-35,67,0.10256393197340574],[112,-35,68,0.0999760238988846],[112,-35,69,0.09746492348641145],[112,-35,70,0.09503183811693605],[112,-35,71,0.09267784393013656],[112,-35,72,0.09040388068314154],[112,-35,73,0.08821074654685868],[112,-35,74,0.08609909283971717],[112,-35,75,0.0840694186990889],[112,-35,76,0.08212206569017677],[112,-35,77,0.08025721235247629],[112,-35,78,0.07847486868376352],[112,-35,79,0.07677487056163201],[112,-34,64,0.11694131444372402],[112,-34,65,0.11415940633974586],[112,-34,66,0.11144877087461491],[112,-34,67,0.10881098399159173],[112,-34,68,0.1062475065812718],[112,-34,69,0.10375967954523224],[112,-34,70,0.1013487187971367],[112,-34,71,0.09901571020137767],[112,-34,72,0.0967616044492352],[112,-34,73,0.09458721187263053],[112,-34,74,0.09249319719527493],[112,-34,75,0.09048007422148163],[112,-34,76,0.08854820046243228],[112,-34,77,0.08669777169999637],[112,-34,78,0.08492881648806483],[112,-34,79,0.08324119059141621],[112,-33,64,0.12306044195430133],[112,-33,65,0.12030684710528461],[112,-33,66,0.11762333879726483],[112,-33,67,0.11501149805460331],[112,-33,68,0.11247279199905347],[112,-33,69,0.11000856893109334],[112,-33,70,0.10762005334870395],[112,-33,71,0.10530834090366747],[112,-33,72,0.10307439329537038],[112,-33,73,0.10091903310218131],[112,-33,74,0.09884293855021442],[112,-33,75,0.09684663821973816],[112,-33,76,0.09493050568902273],[112,-33,77,0.09309475411572754],[112,-33,78,0.09133943075578732],[112,-33,79,0.08966441141981385],[112,-32,64,0.12912886026658343],[112,-32,65,0.1264039347457956],[112,-32,66,0.12374790003313407],[112,-32,67,0.12116234225163736],[112,-32,68,0.11864873478171334],[112,-32,69,0.11620843336035158],[112,-32,70,0.1138426711177678],[112,-32,71,0.1115525535515518],[112,-32,72,0.10933905343830841],[112,-32,73,0.10720300568285723],[112,-32,74,0.10514510210480421],[112,-32,75,0.10316588616274425],[112,-32,76,0.10126574761588758],[112,-32,77,0.0994449171232129],[112,-32,78,0.09770346078010328],[112,-32,79,0.09604127459248502],[112,-31,64,0.13514363305025312],[112,-31,65,0.132447717796921],[112,-31,66,0.12981948853446812],[112,-31,67,0.12726053650020075],[112,-31,68,0.12477234135815096],[112,-31,69,0.12235626631635055],[112,-31,70,0.1200135531815254],[112,-31,71,0.11774531735128013],[112,-31,72,0.11555254274376081],[112,-31,73,0.11343607666486222],[112,-31,74,0.11139662461279676],[112,-31,75,0.10943474502027573],[112,-31,76,0.10755084393410541],[112,-31,77,0.10574516963229197],[112,-31,78,0.10401780717861875],[112,-31,79,0.10236867291471219],[112,-30,64,0.14110198438173682],[112,-30,65,0.13843540520518627],[112,-30,66,0.13583529866396038],[112,-30,67,0.13330326112327928],[112,-30,68,0.13084077855328313],[112,-30,69,0.12844922166454364],[112,-30,70,0.12612984098098423],[112,-30,71,0.12388376185027461],[112,-30,72,0.12171197939169431],[112,-30,73,0.1196153533815244],[112,-30,74,0.1175946030757895],[112,-30,75,0.11565030197059889],[112,-30,76,0.11378287249988939],[112,-30,77,0.11199258067066342],[112,-30,78,0.1102795306356883],[112,-30,79,0.10864365920366814],[112,-29,64,0.14700130738077766],[112,-29,65,0.1443643749872121],[112,-29,66,0.14179269387566285],[112,-29,67,0.1392878655510068],[112,-29,68,0.13685138230954008],[112,-29,69,0.1344846223928935],[112,-29,70,0.1321888450793416],[112,-29,71,0.12996518571257887],[112,-29,72,0.12781465066794728],[112,-29,73,0.12573811225618348],[112,-29,74,0.12373630356450127],[112,-29,75,0.12180981323526352],[112,-29,76,0.11995908018204049],[112,-29,77,0.11818438824315414],[112,-29,78,0.11648586077266754],[112,-29,79,0.11486345516883878],[112,-28,64,0.15283917297039584],[112,-28,65,0.15023218301276098],[112,-28,66,0.14768921552015868],[112,-28,67,0.1452118771470109],[112,-28,68,0.1428016665334353],[112,-28,69,0.14045996947771844],[112,-28,70,0.13818805404617562],[112,-28,71,0.13598706562046237],[112,-28,72,0.13385802188232698],[112,-28,73,0.13180180773587202],[112,-28,74,0.12981917016713873],[112,-28,75,0.12791071304126755],[112,-28,76,0.12607689183703585],[112,-28,77,0.12431800831886786],[112,-28,78,0.12263420514628065],[112,-28,79,0.12102546042077922],[112,-27,64,0.15861333876036965],[112,-27,65,0.15603657191175102],[112,-27,66,0.15352259177413397],[112,-27,67,0.15107301015957164],[112,-27,68,0.14868933206734192],[112,-27,69,0.1463729508751307],[112,-27,70,0.1441251434675872],[112,-27,71,0.14194706530232126],[112,-27,72,0.13983974541333355],[112,-27,73,0.1378040813519371],[112,-27,74,0.1358408340649978],[112,-27,75,0.13395062271073543],[112,-27,76,0.13213391941189212],[112,-27,77,0.13039104394636258],[112,-27,78,0.1287221583752477],[112,-27,79,0.12712726160834809],[112,-26,64,0.16432175805394167],[112,-26,65,0.16177548010494325],[112,-26,66,0.1592907466940534],[112,-26,67,0.15686917479729345],[112,-26,68,0.15451227578618099],[112,-26,69,0.15222145063775905],[112,-26,70,0.14999798508198814],[112,-26,71,0.1478430446865726],[112,-26,72,0.14575766987920402],[112,-26,73,0.1437427709072897],[112,-26,74,0.14179912273498985],[112,-26,75,0.13992735987780125],[112,-26,76,0.13812797117450148],[112,-26,77,0.13640129449654315],[112,-26,78,0.1347475113948602],[112,-26,79,0.13316664168410597],[112,-25,64,0.16996258897790328],[112,-25,65,0.16744705095845402],[112,-25,66,0.16499180939408808],[112,-25,67,0.16259848642944585],[112,-25,68,0.1602685998191703],[112,-25,69,0.1580035581569128],[112,-25,70,0.15580465604169547],[112,-25,71,0.1536730691816941],[112,-25,72,0.15160984943543165],[112,-25,73,0.14961591979044553],[112,-25,74,0.14769206927925294],[112,-25,75,0.145838947832855],[112,-25,76,0.14405706107159022],[112,-25,77,0.14234676503342747],[112,-25,78,0.14070826083966403],[112,-25,79,0.13914158929804177],[112,-24,64,0.17553420373620254],[112,-24,65,0.17304964206223694],[112,-24,66,0.17062412334844612],[112,-24,67,0.16825927491111714],[112,-24,68,0.16595662089678476],[112,-24,69,0.16371757753033855],[112,-24,70,0.16154344830047518],[112,-24,71,0.15943541908256387],[112,-24,72,0.15739455319891338],[112,-24,73,0.15542178641650173],[112,-24,74,0.15351792188199642],[112,-24,75,0.15168362499430388],[112,-24,76,0.14991941821445853],[112,-24,77,0.14822567581294332],[112,-24,78,0.14660261855440415],[112,-24,79,0.1450503083197756],[112,-23,64,0.18103519798677759],[112,-23,65,0.17858183463223953],[112,-23,66,0.17618625581780667],[112,-23,67,0.17385009403288465],[112,-23,68,0.17157487982262865],[112,-23,69,0.16936203705526243],[112,-23,70,0.16721287812673702],[112,-23,71,0.16512859910279343],[112,-23,72,0.16311027479841744],[112,-23,73,0.16115885379474892],[112,-23,74,0.15927515339327492],[112,-23,75,0.15745985450754008],[112,-23,76,0.15571349649219068],[112,-23,77,0.1540364719094396],[112,-23,78,0.15242902123291846],[112,-23,79,0.15089122748893147],[112,-22,64,0.18646440034176914],[112,-22,65,0.1840424430363854],[112,-22,66,0.18167700740000714],[112,-22,67,0.17936973109515175],[112,-22,68,0.177122151070368],[112,-22,69,0.17493569884687465],[112,-22,70,0.17281169574253208],[112,-22,71,0.17075134803320724],[112,-22,72,0.168755742051526],[112,-22,73,0.1668258392230686],[112,-22,74,0.1649624710398444],[112,-22,75,0.16316633397127256],[112,-22,76,0.16143798431249023],[112,-22,77,0.15977783297007397],[112,-22,78,0.15818614018513943],[112,-22,79,0.15666301019383355],[112,-21,64,0.19182088199125702],[112,-21,65,0.1894305244445259],[112,-21,66,0.18709542170513493],[112,-21,67,0.18481721660730144],[112,-21,68,0.18259745250587767],[112,-21,69,0.18043756858240678],[112,-21,70,0.17833889508850365],[112,-21,71,0.1763026485266237],[112,-21,72,0.17432992676820935],[112,-21,73,0.17242170410927404],[112,-21,74,0.17057882626325582],[112,-21,75,0.16880200529137324],[112,-21,76,0.16709181447029708],[112,-21,77,0.16544868309723038],[112,-21,78,0.16387289123235782],[112,-21,79,0.16236456437868318],[112,-20,64,0.19710396645021555],[112,-20,65,0.1947453886020617],[112,-20,66,0.19244079515471402],[112,-20,67,0.19019183411135732],[112,-20,68,0.18800005523429042],[112,-20,69,0.18586690537048778],[112,-20,70,0.18379372371448055],[112,-20,71,0.18178173700862044],[112,-20,72,0.17983205468071095],[112,-20,73,0.1779456639190723],[112,-20,74,0.17612342468486775],[112,-20,75,0.1743660646619246],[112,-20,76,0.17267417414386654],[112,-20,77,0.17104820085864403],[112,-20,78,0.16948844473043034],[112,-20,79,0.16799505257889713],[112,-19,64,0.2023132394288596],[112,-19,65,0.1999866077273983],[112,-19,66,0.19771268690515764],[112,-19,67,0.19549313013032454],[112,-19,68,0.19332949357212104],[112,-19,69,0.19122323174595512],[112,-19,70,0.18917569279588553],[112,-19,71,0.18718811371446042],[112,-19,72,0.1852616154999216],[112,-19,73,0.18339719825083078],[112,-19,74,0.18159573619795555],[112,-19,75,0.17985797267364112],[112,-19,76,0.17818451501848687],[112,-19,77,0.17657582942541616],[112,-19,78,0.17503223572110482],[112,-19,79,0.17355390208478172],[112,-18,64,0.20744855882650215],[112,-18,65,0.20515402653336268],[112,-18,66,0.20291092889561302],[112,-18,67,0.20072092424133392],[112,-18,68,0.19858557514459008],[112,-18,69,0.19650634379024523],[112,-18,70,0.1944845872760843],[112,-18,71,0.1925215528523052],[112,-18,72,0.1906183730983695],[112,-18,73,0.18877606103726807],[112,-18,74,0.18699550518704489],[112,-18,75,0.18527746454979488],[112,-18,76,0.18362256353796547],[112,-18,77,0.18203128683804382],[112,-18,78,0.18050397421159659],[112,-18,79,0.1790408152336761],[112,-17,64,0.21251006484863777],[112,-17,65,0.21024777237229342],[112,-17,66,0.20803563601990727],[112,-17,67,0.20587531927330083],[112,-17,68,0.20376839110785772],[112,-17,69,0.20171632137706974],[112,-17,70,0.19972047613438482],[112,-17,71,0.1977821128924211],[112,-17,72,0.19590237581953107],[112,-17,73,0.1940822908737796],[112,-17,74,0.192322760874171],[112,-17,75,0.19062456050934717],[112,-17,76,0.18898833128358405],[112,-17,77,0.1874145764001669],[112,-17,78,0.18590365558211386],[112,-17,79,0.18445577983026162],[112,-16,64,0.2174981902474269],[112,-16,65,0.21526826550497513],[112,-16,66,0.21308721642276907],[112,-16,67,0.2109567116292732],[112,-16,68,0.20887832649634186],[112,-16,69,0.20685353854355604],[112,-16,70,0.20488372277985922],[112,-16,71,0.20297014698255267],[112,-16,72,0.2011139669136387],[112,-16,73,0.1993162214735693],[112,-16,74,0.19757782779224276],[112,-16,75,0.1958995762574648],[112,-16,76,0.19428212548070178],[112,-16,77,0.192725997200211],[112,-16,78,0.19123157112151234],[112,-16,79,0.1897990796952178],[112,-15,64,0.22241367068565798],[112,-15,65,0.2202162294935045],[112,-15,66,0.2180663819204116],[112,-15,67,0.2159658017335523],[112,-15,68,0.21391607069520513],[112,-15,69,0.21191867398693665],[112,-15,70,0.20997499557107757],[112,-15,71,0.2080863134895563],[112,-15,72,0.20625379510007424],[112,-15,73,0.20447849224968218],[112,-15,74,0.20276133638560268],[112,-15,75,0.2011031336035093],[112,-15,76,0.19950455963309577],[112,-15,77,0.1979661547610172],[112,-15,78,0.19648831869116856],[112,-15,79,0.19507130534231654],[112,-14,64,0.22725755522398194],[112,-14,65,0.22509270171786966],[112,-14,66,0.22297415854525848],[112,-14,67,0.22090360460336966],[112,-14,68,0.218882628037794],[112,-14,69,0.2169127216865664],[112,-14,70,0.2149952784615321],[112,-14,71,0.2131315866670649],[112,-14,72,0.2113228252561241],[112,-14,73,0.2095700590237085],[112,-14,74,0.20787423373755243],[112,-14,75,0.20623617120627447],[112,-14,76,0.20465656428481338],[112,-14,77,0.20313597181722987],[112,-14,78,0.2016748135168449],[112,-14,79,0.20027336478372482],[112,-13,64,0.2320312169315053],[112,-13,65,0.22989904401633787],[112,-13,66,0.22781189721490824],[112,-13,67,0.2257714605452159],[112,-13,68,0.22377932852812377],[112,-13,69,0.22183700165136644],[112,-13,70,0.21994588177084795],[112,-13,71,0.2181072674492861],[112,-13,72,0.2163223492321955],[112,-13,73,0.21459220486126007],[112,-13,74,0.21291779442494718],[112,-13,75,0.2112999554465701],[112,-13,76,0.20973939790963347],[112,-13,77,0.20823669922054278],[112,-13,78,0.20679229910864538],[112,-13,79,0.20540649446361514],[112,-12,64,0.2367363636198926],[112,-12,65,0.23463695344980096],[112,-12,66,0.23258128452548665],[112,-12,67,0.23057104597596922],[112,-12,68,0.22860783868856105],[112,-12,69,0.22669317079284335],[112,-12,70,0.22482845308193167],[112,-12,71,0.22301499437108419],[112,-12,72,0.22125399679364444],[112,-12,73,0.21954655103437182],[112,-12,74,0.2178936315000115],[112,-12,75,0.21629609142730688],[112,-12,76,0.21475465792829462],[112,-12,77,0.21326992697295988],[112,-12,78,0.2118423583092185],[112,-12,79,0.21047227032024263],[112,-11,64,0.24137504870070448],[112,-11,65,0.23930847318980253],[112,-11,66,0.23728435366910972],[112,-11,67,0.23530438436854806],[112,-11,68,0.23337017253242398],[112,-11,69,0.2314832339234043],[112,-11,70,0.22964498826377866],[112,-11,71,0.2278567546140623],[112,-11,72,0.22611974668893176],[112,-11,73,0.22443506811054292],[112,-11,74,0.22280370759908863],[112,-11,75,0.2212265341007954],[112,-11,76,0.21970429185319929],[112,-11,77,0.21823759538777943],[112,-11,78,0.21682692446991758],[112,-11,79,0.21547261897619574],[112,-10,64,0.24594968216619062],[112,-10,65,0.24391600353046605],[112,-10,66,0.24192349547567993],[112,-10,67,0.23997385732230903],[112,-10,68,0.23806870266172497],[112,-10,69,0.23620955488019368],[112,-10,70,0.23439784262016072],[112,-10,71,0.23263489517887415],[112,-10,72,0.23092193784433823],[112,-10,73,0.2292600871686472],[112,-10,74,0.2276503461785564],[112,-10,75,0.22609359952349017],[112,-10,76,0.22459060856082624],[112,-10,77,0.22314200637853654],[112,-10,78,0.2217482927551505],[112,-10,79,0.22040982905705564],[112,-9,64,0.2504630416933872],[112,-9,65,0.24846231302417698],[112,-9,66,0.24650146957886276],[112,-9,67,0.2445822157580383],[112,-9,68,0.24270617148990092],[112,-9,69,0.24087486777429612],[112,-9,70,0.23908974216404422],[112,-9,71,0.237352134183607],[112,-9,72,0.2356632806850779],[112,-9,73,0.23402431114155542],[112,-9,74,0.23243624287774856],[112,-9,75,0.23089997623801828],[112,-9,76,0.2294162896916936],[112,-9,77,0.2279858348757422],[112,-9,78,0.2266091315747607],[112,-9,79,0.22528656263830227],[112,-8,64,0.2549182838717077],[112,-8,65,0.252950549741204],[112,-8,66,0.251021415706436],[112,-8,67,0.24913259123772852],[112,-8,68,0.2472857025897267],[112,-8,69,0.24548228836550012],[112,-8,70,0.2437237950179304],[112,-8,71,0.24201157228843384],[112,-8,72,0.24034686858301024],[112,-8,73,0.23873082628566766],[112,-8,74,0.2371644770090836],[112,-8,75,0.2356487367826965],[112,-8,76,0.23418440117807215],[112,-8,77,0.2327721403716212],[112,-8,78,0.23141249414463827],[112,-8,79,0.23010586682067213],[112,-7,64,0.2593189555538034],[112,-7,65,0.2573842526530379],[112,-7,66,0.25548686509478463],[112,-7,67,0.25362850740891413],[112,-7,68,0.25181081216617934],[112,-7,69,0.2500353255623929],[112,-7,70,0.248303502939886],[112,-7,71,0.24661670424630244],[112,-7,72,0.2449761894307152],[112,-7,73,0.24338311377711974],[112,-7,74,0.24183852317516252],[112,-7,75,0.2403433493282957],[112,-7,76,0.23889840489920944],[112,-7,77,0.2375043785926112],[112,-7,78,0.2361618301753251],[112,-7,79,0.2348711854337241],[112,-6,64,0.2636690053297967],[112,-6,65,0.2617673631395493],[112,-6,66,0.2599017520276446],[112,-6,67,0.25807389157366706],[112,-6,68,0.25628542065436194],[112,-6,69,0.2545378930478912],[112,-6,70,0.25283277297537515],[112,-6,71,0.25117143057976543],[112,-6,72,0.24955513734204016],[112,-6,73,0.24798506143477395],[112,-6,74,0.24646226301294516],[112,-6,75,0.24498768944216343],[112,-6,76,0.24356217046417794],[112,-6,77,0.242186413299729],[112,-6,78,0.24086099768872193],[112,-6,79,0.23958637086772716],[112,-5,64,0.26797279512500616],[112,-5,65,0.26610423662008664],[112,-5,66,0.2642704254992172],[112,-5,67,0.2624730863823792],[112,-5,68,0.2607138644426067],[112,-5,69,0.2589943210303319],[112,-5,70,0.25731592923501007],[112,-5,71,0.2556800693840793],[112,-5,72,0.25408802447924217],[112,-5,73,0.2525409755701178],[112,-5,74,0.2510399970651319],[112,-5,75,0.2495860519798314],[112,-5,76,0.2481799871224687],[112,-5,77,0.24682252821693773],[112,-5,78,0.2455142749630257],[112,-5,79,0.24425569603399566],[112,-4,64,0.2722351119209233],[112,-4,65,0.27039965430827456],[112,-4,66,0.268597661001414],[112,-4,67,0.26683086165208236],[112,-4,68,0.26510090772051453],[112,-4,69,0.2634093681198763],[112,-4,70,0.2617577247979773],[112,-4,71,0.26014736825632173],[112,-4,72,0.2585795930064779],[112,-4,73,0.2570555929638181],[112,-4,74,0.25557645677849805],[112,-4,75,0.25414316310385576],[112,-4,76,0.2527565758020842],[112,-4,77,0.2514174390872528],[112,-4,78,0.25012637260564297],[112,-4,79,0.24888386645341742],[112,-3,64,0.27646117959958316],[112,-3,65,0.274658835090649],[112,-3,66,0.2728886724353673],[112,-3,67,0.27115242630945213],[112,-3,68,0.26945175445207076],[112,-3,69,0.2677882333303691],[112,-3,70,0.2661633537412821],[112,-3,71,0.26457851635067076],[112,-3,72,0.2630350271697823],[112,-3,73,0.2615340929690824],[112,-3,74,0.26007681662932375],[112,-3,75,0.25866419243003097],[112,-3,76,0.25729710127526684],[112,-3,77,0.2559763058567378],[112,-3,78,0.2547024457542221],[112,-3,79,0.2534760324733214],[112,-2,64,0.28065667091140817],[112,-2,65,0.2788874475292146],[112,-2,66,0.2771491241472961],[112,-2,67,0.27544344045857844],[112,-2,68,0.27377206047392244],[112,-2,69,0.2721365682067404],[112,-2,70,0.2705384632948959],[112,-2,71,0.26897915655993243],[112,-2,72,0.26745996550362655],[112,-2,73,0.2659821097419066],[112,-2,74,0.26454670637601313],[112,-2,75,0.26315476530107484],[112,-2,76,0.2618071844519623],[112,-2,77,0.260504744986484],[112,-2,78,0.25924810640590246],[112,-2,79,0.2580378016127759],[112,-1,64,0.28482771956632075],[112,-1,65,0.28309162198772275],[112,-1,66,0.2813851430885168],[112,-1,67,0.2797100275732905],[112,-1,68,0.27806794571861276],[112,-1,69,0.27646048907773746],[112,-1,70,0.2748891661225944],[112,-1,71,0.2733553978231083],[112,-1,72,0.2718605131638406],[112,-1,73,0.2704057445979982],[112,-1,74,0.26899222343868356],[112,-1,75,0.2676209751875603],[112,-1,76,0.26629291480079503],[112,-1,77,0.26500884189234286],[112,-1,78,0.26376943587455265],[112,-1,79,0.2625752510360976],[112,0,64,0.288980932448234],[112,0,65,0.28727796288176755],[112,0,66,0.2856033310997067],[112,0,67,0.28395878681415176],[112,0,68,0.28234600656287123],[112,0,69,0.2807665894340967],[112,0,70,0.2792220527286006],[112,0,71,0.27771382755910445],[112,0,72,0.27624325438700803],[112,0,73,0.274811578496488],[112,0,74,0.2734199454058351],[112,0,75,0.27206939621620807],[112,0,76,0.2707608628976653],[112,0,77,0.2694951635125366],[112,0,78,0.26827299737611615],[112,0,79,0.26709494015468244],[112,1,64,0.2931234019530228],[112,1,65,0.29145356105281456],[112,1,66,0.2898107773195305],[112,1,67,0.28819680547022614],[112,1,68,0.2866133283010788],[112,1,69,0.28506195243226695],[112,1,70,0.2835442039901377],[112,1,71,0.2820615242267019],[112,1,72,0.2806152650764507],[112,1,73,0.2792066846505393],[112,1,74,0.2778369426682155],[112,1,75,0.27650709582565697],[112,1,76,0.2752180931020911],[112,1,77,0.2739707710032554],[112,1,78,0.27276584874217696],[112,1,79,0.2716039233572781],[112,2,64,0.29726224708234394],[112,2,65,0.29562553550890885],[112,2,66,0.2940146006081005],[112,2,67,0.29243120210056367],[112,2,68,0.29087702903941937],[112,2,69,0.2893536955752313],[112,2,70,0.2878627366582587],[112,2,71,0.2864056036780396],[112,2,72,0.28498366004029513],[112,2,73,0.2835981766812002],[112,2,74,0.2822503275188988],[112,2,75,0.28094118484242947],[112,2,76,0.2796717146379317],[112,2,77,0.278442771852194],[112,2,78,0.2772550955935202],[112,2,79,0.27610930426992353],[112,3,64,0.3013979013858144],[112,3,65,0.29979432957641866],[112,3,66,0.2982152544431967],[112,3,67,0.2966624407013335],[112,3,68,0.2951375836515304],[112,3,69,0.2936423049650646],[112,3,70,0.29217814840613754],[112,3,71,0.29074657549155153],[112,3,72,0.28934896108770974],[112,3,73,0.28798658894498097],[112,3,74,0.2866606471693107],[112,3,75,0.28537222363124276],[112,3,76,0.28412230131222044],[112,3,77,0.28291175358823084],[112,3,78,0.2817413394507681],[112,3,79,0.28061169866512353],[112,4,64,0.30552543556115097],[112,4,65,0.30395502991411216],[112,4,66,0.30240784225610867],[112,4,67,0.30088564227336645],[112,4,68,0.29939013148983495],[112,4,69,0.297922939072359],[112,4,70,0.2964856175731371],[112,4,71,0.2950796386095131],[112,4,72,0.29370638848108943],[112,4,73,0.2923671637242057],[112,4,74,0.29106316660366766],[112,4,75,0.2897955005418834],[112,4,76,0.28856516548528255],[112,4,77,0.2873730532080798],[112,4,78,0.28621994255335564],[112,4,79,0.28510649461146803],[112,5,64,0.30963982242206745],[112,5,65,0.3081026240290387],[112,5,66,0.30658736708218565],[112,5,67,0.3050958262009435],[112,5,68,0.3036297090932995],[112,5,69,0.30219065238110154],[112,5,70,0.3007802173626576],[112,5,71,0.2993998857126693],[112,5,72,0.29805105511948865],[112,5,73,0.2967350348597432],[112,5,74,0.295453041310212],[112,5,75,0.29420619339711135],[112,5,76,0.29299550798266627],[112,5,77,0.2918218951890258],[112,5,78,0.2906861536595],[112,5,79,0.28958896575712845],[112,6,64,0.31373608174686385],[112,6,65,0.31223214497407353],[112,6,66,0.31074887609496793],[112,6,67,0.3092880546103289],[112,6,68,0.30785139435837267],[112,6,69,0.3064405393602317],[112,6,70,0.3050570596027328],[112,6,71,0.3037024467585094],[112,6,72,0.3023781098434441],[112,6,73,0.3010853708114789],[112,6,74,0.29982546008668287],[112,6,75,0.298599512032731],[112,6,76,0.29740856035967195],[112,6,77,0.2962535334680434],[112,6,78,0.29513524973031274],[112,6,79,0.2940544127096507],[112,7,64,0.3178092828392074],[112,7,65,0.31633867394992515],[112,7,66,0.31488746324827477],[112,7,67,0.3134574350507932],[112,7,68,0.312050309257804],[112,7,69,0.3106677372191171],[112,7,70,0.3093112975370284],[112,7,71,0.3079824918066618],[112,7,72,0.30668274029364273],[112,7,73,0.3054133775491465],[112,7,74,0.3041756479622094],[112,7,75,0.3029707012494538],[112,7,76,0.3017995878821084],[112,7,77,0.3006632544503819],[112,7,78,0.2995625389651643],[112,7,79,0.29849816609706953],[112,8,64,0.3218545470377601],[112,8,65,0.32041734285553886],[112,8,66,0.318998271866257],[112,8,67,0.3175991231231896],[112,8,68,0.31622162250661967],[112,8,69,0.31486742860980516],[112,8,70,0.31353812856225566],[112,8,71,0.31223523379035634],[112,8,72,0.31096017571533147],[112,8,73,0.309714301388589],[112,8,74,0.3084988690643363],[112,8,75,0.3073150437096143],[112,8,76,0.3061638924516374],[112,8,77,0.30504637996248885],[112,8,78,0.30396336378115657],[112,8,79,0.3029155895729118],[112,9,64,0.3258670501747574],[112,9,65,0.32446333678700495],[112,9,66,0.3230764971815251],[112,9,67,0.3217083250561926],[112,9,68,0.3203605521753627],[112,9,69,0.3190348442761642],[112,9,70,0.3177327969121108],[112,9,71,0.3164559312340697],[112,9,72,0.3152056897085801],[112,9,73,0.3139834317735599],[112,9,74,0.31279042943129415],[112,9,75,0.31162786277885274],[112,9,76,0.31049681547581925],[112,9,77,0.3093982701493893],[112,9,78,0.30833310373681466],[112,9,79,0.30730208276520166],[112,10,64,0.32984202498364074],[112,10,65,0.32847189648507563],[112,10,66,0.3271173888214566],[112,10,67,0.32578030023030274],[112,10,68,0.32446236825070723],[112,10,69,0.3231652656500175],[112,10,70,0.32189059628784716],[112,10,71,0.32063989091745865],[112,10,72,0.319414602924505],[112,10,73,0.31821610400317407],[112,10,74,0.3170456797696263],[112,10,75,0.3159045253128717],[112,10,76,0.3147937406829733],[112,10,77,0.313714326316629],[112,10,78,0.31266717840011266],[112,10,79,0.31165308416958265],[112,11,64,0.3337747634555378],[112,11,65,0.33243832073107926],[112,11,66,0.3311162532424694],[112,11,67,0.32981036364940625],[112,11,68,0.3285223951432295],[112,11,69,0.3272540273940561],[112,11,70,0.3260068724352649],[112,11,71,0.32478247048536374],[112,11,72,0.32358228570723413],[112,11,73,0.3224077019047897],[112,11,74,0.3212600181569472],[112,11,75,0.32014044438904854],[112,11,76,0.31905009688162567],[112,11,77,0.31798999371655823],[112,11,78,0.3169610501606074],[112,11,79,0.3159640739863286],[112,12,64,0.33766061914469453],[112,12,65,0.33635796869134016],[112,12,66,0.3350684561123727],[112,12,67,0.33379388835999707],[112,12,68,0.33253601414244555],[112,12,69,0.33129651989164083],[112,12,70,0.33007702566822605],[112,12,71,0.3288790810039965],[112,12,72,0.32770416068172703],[112,12,73,0.32655366045243067],[112,12,74,0.32542889268994923],[112,12,75,0.3243310819830132],[112,12,76,0.32326136066466105],[112,12,77,0.32222076427907254],[112,12,78,0.32121022698579293],[112,12,79,0.32023057690135837],[112,13,64,0.34149500942295796],[112,13,65,0.34022626221020474],[112,13,66,0.33896942464089214],[112,13,67,0.33772630781816215],[112,13,68,0.336498665819219],[112,13,69,0.33528819168359425],[112,13,70,0.3340965133388005],[112,13,71,0.33292518946341076],[112,13,72,0.33177570528755246],[112,13,73,0.3306494683308563],[112,13,74,0.32954780407775985],[112,13,75,0.32847195159029907],[112,13,76,0.32742305905828506],[112,13,77,0.3264021792869129],[112,13,78,0.32541026512178656],[112,13,79,0.32444816481136435],[112,14,64,0.3452734176830992],[112,14,65,0.34403868805145543],[112,14,66,0.3428146498581544],[112,14,67,0.3416031182041134],[112,14,68,0.34040585237531745],[112,14,69,0.33922455185176337],[112,14,70,0.3380608522538199],[112,14,71,0.3369163212260368],[112,14,72,0.3357924542583985],[112,14,73,0.33469067044505263],[112,14,74,0.333612308180424],[112,14,75,0.3325586207928399],[112,14,76,0.3315307721155657],[112,14,77,0.33052983199530045],[112,14,78,0.3295567717381121],[112,14,79,0.3286124594928199],[112,15,64,0.3489913954911517],[112,15,65,0.34779080008829766],[112,15,66,0.34659968884131437],[112,15,67,0.3454198806844487],[112,15,68,0.34425313994030304],[112,15,69,0.34310117234953885],[112,15,70,0.3419656210380249],[112,15,71,0.3408480624214666],[112,15,72,0.33975000204750677],[112,15,73,0.3386728703753335],[112,15,74,0.33761801849270273],[112,15,75,0.33658671377050087],[112,15,76,0.3355801354547487],[112,15,77,0.3345993701960944],[112,15,78,0.3336454075167763],[112,15,79,0.33271913521506297],[112,16,64,0.3526445646876384],[112,16,65,0.3514782214417848],[112,16,66,0.3503201668891899],[112,16,67,0.3491722236220074],[112,16,68,0.3480361608156225],[112,16,69,0.34691369027919294],[112,16,70,0.345806462443673],[112,16,71,0.34471606228735036],[112,16,72,0.34364400519888916],[112,16,73,0.3425917327779148],[112,16,74,0.3415606085730475],[112,16,75,0.34055191375750876],[112,16,76,0.33956684274220544],[112,16,77,0.33860649872633514],[112,16,78,0.33767188918549673],[112,16,79,0.336763921297312],[112,17,64,0.356228619437854],[112,17,65,0.35509664656785317],[112,17,66,0.3539717796450772],[112,17,67,0.3528558447334964],[112,17,68,0.35175061566607135],[112,17,69,0.3506578101162157],[112,17,70,0.3495790856067798],[112,17,71,0.34851603545658566],[112,17,72,0.34747018466450963],[112,17,73,0.3464429857311411],[112,17,74,0.34543581441793214],[112,17,75,0.34444996544395884],[112,17,76,0.3434866481201961],[112,17,77,0.34254698192135535],[112,17,78,0.3416319919952651],[112,17,79,0.34074260460980066],[112,18,64,0.35973932823100213],[112,18,65,0.3586418432927641],[112,18,66,0.35755029516754383],[112,18,67,0.35646651319467704],[112,18,68,0.3553922756584244],[112,18,69,0.35432930588043693],[112,18,70,0.3532792682497853],[112,18,71,0.35224376419058595],[112,18,72,0.3512243280672158],[112,18,73,0.3502224230271489],[112,18,74,0.3492394367813272],[112,18,75,0.3482766773221846],[112,18,76,0.34733536857923075],[112,18,77,0.3464166460122399],[112,18,78,0.34552155214202573],[112,18,79,0.34465103201881064],[112,19,64,0.36317253582828746],[112,19,65,0.362109654797053],[112,19,66,0.361051555949297],[112,19,67,0.36000007169321757],[112,19,68,0.35895698454733477],[112,19,69,0.3579240232540381],[112,19,70,0.35690285883074974],[112,19,71,0.35589510055873047],[112,19,72,0.35490229190952516],[112,19,73,0.3539259064090759],[112,19,74,0.3529673434394214],[112,19,75,0.3520279239780953],[112,19,76,0.3511088862751349],[112,19,77,0.35021138146774183],[112,19,78,0.3493364691325788],[112,19,79,0.3484851127757087],[112,20,64,0.3665241651600467],[112,20,65,0.3654960015480708],[112,20,66,0.3644714808842166],[112,20,67,0.3634524384292974],[112,20,68,0.36244066070859],[112,20,69,0.36143788164654495],[112,20,70,0.36044577863916666],[112,20,71,0.35946596856409185],[112,20,72,0.3585000037283595],[112,20,73,0.35754936775390334],[112,20,74,0.3566154714006842],[112,20,75,0.35569964832757595],[112,20,76,0.35480315079091373],[112,20,77,0.35392714528075053],[112,20,78,0.3530727080948015],[112,20,79,0.35224082085008646],[112,21,64,0.3697902191717397],[112,21,65,0.3687968831809392],[112,21,66,0.36780606718236986],[112,21,67,0.3668196090637784],[112,21,68,0.36583929911954033],[112,21,69,0.3648668762066108],[112,21,70,0.36390402383820647],[112,21,71,0.36295236621524485],[112,21,72,0.36201346419553354],[112,21,73,0.3610888112007424],[112,21,74,0.36017982906107543],[112,21,75,0.3592878637977529],[112,21,76,0.35841418134321873],[112,21,77,0.3575599631991125],[112,21,78,0.3567263020319903],[112,21,79,0.35591419720680256],[112,22,64,0.37296678261889593],[112,22,65,0.3720083803280113],[112,22,66,0.3710513922331028],[112,22,67,0.3700976586140422],[112,22,68,0.3691489732867954],[112,22,69,0.36820707978069167],[112,22,70,0.36727366745348894],[112,22,71,0.36635036754426054],[112,22,72,0.36543874916409913],[112,22,73,0.36454031522466485],[112,22,74,0.36365649830450203],[112,22,75,0.36278865645322944],[112,22,76,0.3619380689335198],[112,22,77,0.36110593190091017],[112,22,78,0.36029335402142704],[112,22,79,0.3595013520270303],[112,23,64,0.3760500238110941],[112,23,65,0.3751266563969206],[112,23,66,0.37420361541629077],[112,23,67,0.3732827432975727],[112,23,68,0.37236583712127225],[112,23,69,0.3714546448186937],[112,23,70,0.37055086130846726],[112,23,71,0.3696561245709694],[112,23,72,0.36877201166063156],[112,23,73,0.3679000346561622],[112,23,74,0.36704163654861166],[112,23,75,0.3661981870673767],[112,23,76,0.3653709784440694],[112,23,77,0.3645612211142854],[112,23,78,0.36377003935725744],[112,23,79,0.3629984668734015],[112,24,64,0.37903619630480667],[112,24,65,0.378147959297048],[112,24,66,0.3772589798615744],[112,24,67,0.3763711023231118],[112,24,68,0.3754861267604208],[112,24,69,0.3746058052264194],[112,24,70,0.3737318379062491],[112,24,71,0.3728658692133129],[112,24,72,0.37200948382327514],[112,24,73,0.37116420264605493],[112,24,74,0.37033147873573613],[112,24,75,0.36951269313849644],[112,24,76,0.36870915067847565],[112,24,77,0.3679220756816217],[112,24,78,0.36715260763749746],[112,24,79,0.3664017967990578],[112,25,64,0.38192164054520217],[112,25,65,0.38106862311449546],[112,25,66,0.3802138141556751],[112,25,67,0.37935905962948185],[112,25,68,0.37850616233771933],[112,25,69,0.377656878164904],[112,25,70,0.376812912257946],[112,25,71,0.3759759151438802],[112,25,72,0.3751474787856469],[112,25,73,0.37432913257594463],[112,25,74,0.373522339269086],[112,25,75,0.3727284908509541],[112,25,76,0.37194890434698086],[112,25,77,0.3711848175681861],[112,25,78,0.3704373847952625],[112,25,79,0.36970767240071006],[112,26,64,0.38470278545697095],[112,26,65,0.38388506973564185],[112,26,66,0.383064533997861],[112,26,67,0.38224302557214596],[112,26,68,0.38142234969951283],[112,26,69,0.3806042657967199],[112,26,70,0.3797904836576286],[112,26,71,0.3789826595927075],[112,26,72,0.3781823925066727],[112,26,73,0.37739121991429003],[112,26,74,0.376610613894272],[112,26,75,0.37584197698136074],[112,26,76,0.37508663799652514],[112,26,77,0.3743458478153074],[112,26,78,0.3736207750743034],[112,26,79,0.37291250181578445],[112,27,64,0.3873761499840259],[112,27,65,0.3865938104191213],[112,27,66,0.3858076438034067],[112,27,67,0.3850194985573483],[112,27,68,0.3842311820690374],[112,27,69,0.3834444569790835],[112,27,70,0.38266103740372437],[112,27,71,0.38188258509617184],[112,27,72,0.38111070554619125],[112,27,73,0.3803469440179379],[112,27,74,0.37959278152598525],[112,27,75,0.37884963074963274],[112,27,76,0.3781188318854263],[112,27,77,0.37740164843792084],[112,27,78,0.3766992629486758],[112,27,79,0.37601277266348515],[112,28,64,0.38993834457815835],[112,28,65,0.3891914473163114],[112,28,66,0.38843973825513145],[112,28,67,0.3876850666239222],[112,28,68,0.3869292416577128],[112,28,69,0.3861740289038561],[112,28,70,0.3854211464669456],[112,28,71,0.3846722611920721],[112,28,72,0.38392898478641635],[112,28,73,0.3831928698791991],[112,28,74,0.3824654060199276],[112,28,75,0.3817480156150236],[112,28,76,0.38104204980276446],[112,28,77,0.38034878426657204],[112,28,78,0.379669414986634],[112,28,79,0.37900505392986333],[112,29,64,0.39238607263671155],[112,29,65,0.39167467494039343],[112,29,66,0.3909575038030809],[112,29,67,0.39023640897282685],[112,29,68,0.3895132012237732],[112,29,69,0.38878964868450133],[112,29,70,0.38806747310481343],[112,29,71,0.3873483460609621],[112,29,72,0.3866338850993235],[112,29,73,0.3859256498185391],[112,29,74,0.3852251378900623],[112,29,75,0.3845337810171946],[112,29,76,0.38385294083254595],[112,29,77,0.38318390473395036],[112,29,78,0.3825278816588231],[112,29,79,0.38188599779696714],[112,30,64,0.39471613188913623],[112,30,65,0.39404028158384463],[112,30,66,0.3933577201122097],[112,30,67,0.3926702974442742],[112,30,68,0.39197982557808775],[112,30,69,0.3912880748898559],[112,30,70,0.3905967704226343],[112,30,71,0.38990758811358833],[112,30,72,0.3892221509598123],[112,30,73,0.38854202512273184],[112,30,74,0.3878687159710297],[112,30,75,0.3872036640621739],[112,30,76,0.38654824106248903],[112,30,77,0.385903745605796],[112,30,78,0.3852713990906122],[112,30,79,0.3846523414159144],[112,31,64,0.3969254157325014],[112,31,65,0.39628515068443926],[112,31,66,0.39563726145814426],[112,31,67,0.3949835979425207],[112,31,68,0.3943259730372538],[112,31,69,0.39366615902479296],[112,31,70,0.39300588388100505],[112,31,71,0.3923468275245143],[112,31,72,0.39169061800472693],[112,31,73,0.39103882762855946],[112,31,74,0.3903929690258149],[112,31,75,0.38975449115328503],[112,31,76,0.3891247752375156],[112,31,77,0.3885051306562664],[112,31,78,0.3878967907586527],[112,31,79,0.3873009086239726],[112,32,64,0.39901091451601467],[112,32,65,0.39840626213981434],[112,32,66,0.39779309807107865],[112,32,67,0.39717327180838236],[112,32,68,0.3965485968240158],[112,32,69,0.3959208469578341],[112,32,70,0.39529175274990724],[112,32,71,0.39466299771198826],[112,32,72,0.3940362145377933],[112,32,73,0.39341298125211677],[112,32,74,0.392794817298726],[112,32,75,0.39218317956710813],[112,32,76,0.391579458358014],[112,32,77,0.3909849732878241],[112,32,78,0.3904009691317263],[112,32,79,0.3898286116057117],[112,33,64,0.4009697167744327],[112,33,65,0.4004006935704739],[112,33,66,0.39982229742768083],[112,33,67,0.3992363771393459],[112,33,68,0.39864474641488606],[112,33,69,0.39804918029558234],[112,33,70,0.3974514115092608],[112,33,71,0.39685312676392437],[112,33,72,0.3962559629803396],[112,33,73,0.3956615034635891],[112,33,74,0.3950712740135464],[112,33,75,0.39448673897433634],[112,33,76,0.3939092972227315],[112,33,77,0.3933402780955062],[112,33,78,0.39278093725574237],[112,33,79,0.3922324524980869],[112,34,64,0.4027990104104274],[112,34,65,0.4022656215313062],[112,34,66,0.4017220254910797],[112,34,67,0.4011700700573472],[112,34,68,0.40061156883503546],[112,34,69,0.4000482977040497],[112,34,70,0.39948199119600714],[112,34,71,0.39891433881007055],[112,34,72,0.39834698126787593],[112,34,73,0.39778150670757473],[112,34,74,0.39721944681693966],[112,34,75,0.39666227290560335],[112,34,76,0.39611139191637335],[112,34,77,0.3955681423756541],[112,34,78,0.3950337902829606],[112,34,79,0.39450952493953084],[112,35,64,0.40449608382595287],[112,35,65,0.40399832267165114],[112,35,66,0.40348954789897495],[112,35,67,0.40297160592426123],[112,35,68,0.40244630990050323],[112,35,69,0.40191543617692177],[112,35,70,0.40138072069777386],[112,35,71,0.40084385534041045],[112,35,72,0.40030648419258097],[112,35,73,0.3997701997690041],[112,35,74,0.39923653916715474],[112,35,75,0.39870698016233286],[112,35,76,0.398182937241964],[112,35,77,0.39766575757915495],[112,35,78,0.39715671694549504],[112,35,79,0.39665701556310734],[112,36,64,0.4060583270025101],[112,36,65,0.40559617484382005],[112,36,66,0.4051222310997677],[112,36,67,0.40463834050500025],[112,36,68,0.404146315407615],[112,36,69,0.4036479322506554],[112,36,70,0.40314492799300483],[112,36,71,0.40263899646968815],[112,36,72,0.4021317846915811],[112,36,73,0.40162488908454064],[112,36,74,0.4011198516679154],[112,36,75,0.40061815617249424],[112,36,76,0.400121224097846],[112,36,77,0.3996304107090739],[112,36,78,0.3991470009729746],[112,36,79,0.398672205433606],[112,37,64,0.4074832325303702],[112,37,65,0.4070566581601259],[112,37,66,0.40661754343677087],[112,37,67,0.4061677310782772],[112,37,68,0.40570903226967414],[112,37,69,0.40524322316646794],[112,37,70,0.4047720413376228],[112,37,71,0.40429718214812027],[112,37,72,0.40382029508108974],[112,37,73,0.403342979999527],[112,37,74,0.4028667833475621],[112,37,75,0.4023931942913276],[112,37,76,0.4019236407993877],[112,37,77,0.4014594856627475],[112,37,78,0.4010020224544324],[112,37,79,0.40055247142864514],[112,38,64,0.4087683965867856],[112,38,65,0.40837735599845504],[112,38,66,0.40797305618053403],[112,38,67,0.40755733749507206],[112,38,68,0.40713200960095963],[112,38,69,0.4066988479792566],[112,38,70,0.406259590398262],[112,38,71,0.40581593331833143],[112,38,72,0.4053695282364419],[112,38,73,0.40492197797051854],[112,38,74,0.40447483288348407],[112,38,75,0.40402958704708314],[112,38,76,0.4035876743454413],[112,38,77,0.40315046451837755],[112,38,78,0.4027192591444628],[112,38,79,0.4022952875638278],[112,39,64,0.40991151986310836],[112,39,65,0.4095559559562977],[112,39,66,0.4091864445091936],[112,39,67,0.40880482318471223],[112,39,68,0.4084128997479398],[112,39,69,0.40801244861335517],[112,39,70,0.40760520733197336],[112,39,71,0.40719287301841894],[112,39,72,0.4067770987179301],[112,39,73,0.40635948971330277],[112,39,74,0.4059415997717424],[112,39,75,0.4055249273316699],[112,39,76,0.40511091162944485],[112,39,77,0.4047009287660234],[112,39,78,0.4042962877135437],[112,39,79,0.40389822626184246],[112,40,64,0.41091040844088356],[112,40,65,0.41059025075330735],[112,40,66,0.4102554884369252],[112,40,67,0.40990795610863856],[112,40,68,0.40954945926778064],[112,40,69,0.409181770865205],[112,40,70,0.40880662781248395],[112,40,71,0.40842572743122757],[112,40,72,0.40804072384252077],[112,40,73,0.4076532242964901],[112,40,74,0.4072647854419683],[112,40,75,0.40687690953630096],[112,40,76,0.40649104059525953],[112,40,77,0.40610856048307875],[112,40,78,0.40573078494261106],[112,40,79,0.40535895956559986],[112,41,64,0.4117629746168763],[112,41,65,0.4114781390823457],[112,41,66,0.41117807369044834],[112,41,67,0.41086460966181443],[112,41,68,0.41053954985409735],[112,41,69,0.4102046653528917],[112,41,70,0.409861692002961],[112,41,71,0.40951232687978145],[112,41,72,0.4091582247014003],[112,41,73,0.4088009941806208],[112,41,74,0.40844219431748274],[112,41,75,0.40808333063207997],[112,41,76,0.407725851337682],[112,41,77,0.40737114345417746],[112,41,78,0.40702052886182893],[112,41,79,0.40667526029534673],[112,42,64,0.4124672376770766],[112,42,65,0.4122176264090589],[112,42,66,0.4119521925336354],[112,42,67,0.4116727635218258],[112,42,68,0.4113811392100036],[112,42,69,0.4110790884126019],[112,42,70,0.4107683454753334],[112,42,71,0.4104506067689313],[112,42,72,0.4101275271234088],[112,42,73,0.40980071620284925],[112,42,74,0.40947173482069726],[112,42,75,0.40914209119559014],[112,42,76,0.40881323714769835],[112,42,77,0.4084865642355911],[112,42,78,0.40816339983361977],[112,42,79,0.40784500314982214],[112,43,64,0.4130213246196278],[112,43,65,0.41280682571993016],[112,43,66,0.41257594454016555],[112,43,67,0.4123305044456115],[112,43,68,0.41207230186839516],[112,43,69,0.41180310294193434],[112,43,70,0.411524640076106],[112,43,71,0.411238608473148],[112,43,72,0.41094666258429097],[112,43,73,0.4106504125071322],[112,43,74,0.41035142032372385],[112,43,75,0.4100511963794128],[112,43,76,0.4097511955024009],[112,43,77,0.40945281316404347],[112,43,78,0.40915738157987674],[112,43,79,0.40886616575137885],[112,44,64,0.4134234708267137],[112,44,65,0.41324395821884263],[112,44,66,0.41304753731425853],[112,44,67,0.4128360270138629],[112,44,68,0.4126112199595064],[112,44,69,0.4123748791901054],[112,44,70,0.41212873473870687],[112,44,71,0.41187448017050465],[112,44,72,0.41161376906180736],[112,44,73,0.4113482114199659],[112,44,74,0.41107937004423734],[112,44,75,0.4108087568276173],[112,44,76,0.4105378289996151],[112,44,77,0.4102679853099845],[112,44,78,0.41000056215340475],[112,44,79,0.4097368296351137],[112,45,64,0.41367202068540837],[112,45,65,0.4135273539721592],[112,45,66,0.4133652871594973],[112,45,67,0.4131876343230986],[112,45,68,0.41299618392574716],[112,45,69,0.4127926954950581],[112,45,70,0.4125788962423764],[112,45,71,0.4123564776228558],[112,45,72,0.4121270918367153],[112,45,73,0.41189234827168253],[112,45,74,0.41165380988660205],[112,45,75,0.4114129895362385],[112,45,76,0.41117134623724916],[112,45,77,0.41093028137534116],[112,45,78,0.41069113485360437],[112,45,79,0.41045518118202556],[112,46,64,0.41376542815746054],[112,46,65,0.41365545250228913],[112,46,66,0.4135276196957053],[112,46,67,0.41338373862538147],[112,46,68,0.41322559318378643],[112,46,69,0.41305493896743684],[112,46,70,0.41287349991756095],[112,46,71,0.412682964902176],[112,46,72,0.4124849842395801],[112,46,73,0.4122811661632627],[112,46,74,0.4120730732282199],[112,46,75,0.4118622186586935],[112,46,76,0.41165006263731974],[112,46,77,0.4114380085356944],[112,46,78,0.41122739908634975],[112,46,79,0.41101951249614743],[112,47,64,0.413702257298037],[112,47,65,0.41362680332976576],[112,47,66,0.4135330704239062],[112,47,67,0.4134228619157046],[112,47,68,0.4132979567339078],[112,47,69,0.4131601061214573],[112,47,70,0.41301103029783837],[112,47,71,0.41285241506308573],[112,47,72,0.41268590834344515],[112,47,73,0.4125131166786975],[112,47,74,0.4123356016511295],[112,47,75,0.4121548762561715],[112,47,76,0.41197240121468637],[112,47,77,0.41178958122691794],[112,47,78,0.4116077611680943],[112,47,79,0.4114282222256895],[112,48,64,0.41348118272341655],[112,48,65,0.41344006646382864],[112,48,66,0.41338028523935855],[112,48,67,0.41330363646704066],[112,48,68,0.41321189371663497],[112,48,69,0.4131068034526671],[112,48,70,0.4129900817183754],[112,48,71,0.4128634107615638],[112,48,72,0.41272843560236183],[112,48,73,0.41258676054289606],[112,48,74,0.4124399456188596],[112,48,75,0.41228950299299827],[112,48,76,0.41213689329049763],[112,48,77,0.41198352187628046],[112,48,78,0.41183073507420936],[112,48,79,0.41167981632819683],[112,49,64,0.41310099002763107],[112,49,65,0.41309401284150526],[112,49,66,0.413068020892658],[112,49,67,0.4130248053130453],[112,49,68,0.41296613391661435],[112,49,69,0.41289374796258527],[112,49,70,0.4128093588608992],[112,49,71,0.41271464481982983],[112,49,72,0.4126112474357595],[112,49,73,0.4125007682251238],[112,49,74,0.41238476509851396],[112,49,75,0.412264748776952],[112,49,76,0.4121421791503248],[112,49,77,0.41201846157798705],[112,49,78,0.4118949431315263],[112,49,79,0.4117729087796941],[112,50,64,0.41256057614806474],[112,50,65,0.4125875247152025],[112,50,66,0.41259514539892167],[112,50,67,0.41258522267842995],[112,50,68,0.41255951821377107],[112,50,69,0.41251976763023535],[112,50,70,0.41246767724520295],[112,50,71,0.41240492073741497],[112,50,72,0.41233313575867586],[112,50,73,0.41225392048798737],[112,50,74,0.412168830128109],[112,50,75,0.4120793733445527],[112,50,76,0.4119870086470049],[112,50,77,0.4118931407131812],[112,50,78,0.4117991166551087],[112,50,79,0.41170622222784015],[112,51,64,0.4118589496799929],[112,51,65,0.41191959598879213],[112,51,66,0.4119606383950353],[112,51,67,0.41198385435698526],[112,51,68,0.4119909989817217],[112,51,69,0.4119838018305591],[112,51,70,0.41196396366716953],[112,51,71,0.4119331531484067],[112,51,72,0.41189300345783403],[112,51,73,0.41184510888195625],[112,51,74,0.41179102132915224],[112,51,75,0.4117322467913135],[112,51,76,0.4116702417481829],[112,51,77,0.4116064095143994],[112,51,78,0.41154209652924334],[112,51,79,0.41147858858908604],[112,52,64,0.4109952311400785],[112,52,65,0.41108933250220614],[112,52,66,0.411163591444981],[112,52,67,0.4112197780372713],[112,52,68,0.41125964043345636],[112,52,69,0.41128490169971865],[112,52,70,0.4112972565833227],[112,52,71,0.4112983682248759],[112,52,72,0.4112898648135729],[112,52,73,0.41127333618542383],[112,52,74,0.41125033036446546],[112,52,75,0.411222350046956],[112,52,76,0.41119084902855313],[112,52,77,0.41115722857447595],[112,52,78,0.411122833732649],[112,52,79,0.41108894958983144],[112,53,64,0.4099686531788286],[112,53,65,0.41009595226454404],[112,53,66,0.4102032082932451],[112,53,67,0.41029218357597674],[112,53,68,0.41036461891429526],[112,53,69,0.4104222304472953],[112,53,70,0.41046670644191213],[112,53,71,0.41049970402649216],[112,53,72,0.41052284586763704],[112,53,73,0.4105377167903178],[112,53,74,0.41054586034125956],[112,53,75,0.4105487752955991],[112,53,76,0.4105479121068114],[112,53,77,0.4105446692999095],[112,53,78,0.4105403898079133],[112,53,79,0.41053635725159204],[112,54,64,0.40877856074197627],[112,54,65,0.40893878563566],[112,54,66,0.40907880506627947],[112,54,67,0.40920037321891706],[112,54,68,0.4093052231420883],[112,54,69,0.409395063615354],[112,54,70,0.409471575960503],[112,54,71,0.4095364107963002],[112,54,72,0.40959118473680156],[112,54,73,0.40963747703323294],[112,54,74,0.4096768261594394],[112,54,75,0.40971072634089717],[112,54,76,0.4097406240272925],[112,54,77,0.40976791430866877],[112,54,78,0.4097939372751373],[112,54,79,0.40981997432015693],[112,55,64,0.40742441118083483],[112,55,65,0.40761727545627296],[112,55,66,0.4077898104220522],[112,55,67,0.40794376176971103],[112,55,68,0.40808085439469766],[112,55,69,0.4082027892844098],[112,55,70,0.40831124035010735],[112,55,71,0.4084078512026928],[112,55,72,0.40849423187236156],[112,55,73,0.40857195547211794],[112,55,74,0.408642554805164],[112,55,75,0.40870751891615464],[112,55,76,0.40876828958632044],[112,55,77,0.4088262577724618],[112,55,78,0.4088827599898097],[112,55,79,0.408939074638757],[112,56,64,0.40590577431160946],[112,56,65,0.4061309771265885],[112,56,66,0.4063357656476825],[112,56,67,0.4065218767061265],[112,56,68,0.4066910266447536],[112,56,69,0.4068449082262915],[112,56,70,0.40698518748584767],[112,56,71,0.4071135005275694],[112,56,72,0.40723145026548313],[112,56,73,0.40734060310850867],[112,56,74,0.40744248558965956],[112,56,75,0.4075385809394144],[112,56,76,0.4076303256032685],[112,56,77,0.40771910570346637],[112,56,78,0.4078062534449096],[112,56,79,0.4078930434652452],[112,57,64,0.404222332423624],[112,57,65,0.4044795586333888],[112,57,66,0.4047163247051119],[112,57,67,0.40493435824405344],[112,57,68,0.40513536664164174],[112,57,69,0.40532103400385655],[112,57,70,0.40549301802411425],[112,57,71,0.40565294680064645],[112,57,72,0.40580241559837427],[112,57,73,0.40594298355527475],[112,57,74,0.40607617033324983],[112,57,75,0.4062034527134828],[112,57,76,0.406326261136293],[112,57,77,0.40644597618548745],[112,57,78,0.4065639250172039],[112,57,79,0.40668137773325325],[112,58,64,0.40237388023653076],[112,58,65,0.4026628005256565],[112,58,66,0.4029312542248825],[112,58,67,0.4031809593491658],[112,58,68,0.4034136139407855],[112,58,69,0.4036308930176234],[112,58,70,0.40383444546627456],[112,58,71,0.4040258908799724],[112,58,72,0.4042068163413357],[112,58,73,0.4043787731499293],[112,58,74,0.4045432734946537],[112,58,75,0.40470178707094384],[112,58,76,0.40485573764279204],[112,58,77,0.40500649954958984],[112,58,78,0.40515539415778706],[112,58,79,0.40530368625737273],[112,59,64,0.40036032480647965],[112,59,65,0.4006805958387127],[112,59,66,0.4009804334479943],[112,59,67,0.40126154569625594],[112,59,68,0.40152562088020205],[112,59,69,0.4017743244992982],[112,59,70,0.4020092961689172],[112,59,71,0.40223214647863387],[112,59,72,0.4024444537956706],[112,59,73,0.40264776101348837],[112,59,74,0.40284357224553696],[112,59,75,0.4030333494641466],[112,59,76,0.40321850908457313],[112,59,77,0.40340041849419345],[112,59,78,0.40358039252684974],[112,59,79,0.4037596898823464],[112,60,64,0.3981816853811879],[112,60,65,0.39853294996680727],[112,60,66,0.39886385411579084],[112,60,67,0.3991760955761793],[112,60,68,0.3994713525042769],[112,60,69,0.3997512804521418],[112,60,70,0.4000175093005751],[112,60,71,0.40027164013759553],[112,60,72,0.4005152420824039],[112,60,73,0.4007498490548276],[112,60,74,0.4009769564902671],[112,60,75,0.4011980180001176],[112,60,76,0.40141444197768367],[112,60,77,0.40162758814958166],[112,60,78,0.40183876407262953],[112,60,79,0.4020492215762262],[112,61,64,0.395838093204007],[112,61,65,0.3962199804842601],[112,61,66,0.3965816203079604],[112,61,67,0.39692469975050604],[112,61,68,0.3972508864348462],[112,61,69,0.39756182553826613],[112,61,70,0.39785913674501483],[112,61,71,0.39814441114476207],[112,61,72,0.3984192080768917],[112,61,73,0.3986850519206178],[112,61,74,0.3989434288309496],[112,61,75,0.399195783420474],[112,61,76,0.3994435153869774],[112,61,77,0.39968797608689893],[112,61,78,0.3999304650546161],[112,61,79,0.4001722264675651],[112,62,64,0.3933297912669476],[112,62,65,0.39374191691511073],[112,62,66,0.39413394822862025],[112,62,67,0.394507561253839],[112,62,68,0.3948644126895521],[112,62,69,0.3952061369128253],[112,62,70,0.3955343429510596],[112,62,71,0.3958506114002271],[112,62,72,0.3961564912892923],[112,62,73,0.39645349689080867],[112,62,74,0.3967431044777172],[112,62,75,0.39702674902631097],[112,62,76,0.3973058208653914],[112,62,77,0.3975816622716088],[112,62,78,0.39785556401098493],[112,62,79,0.39812876182662243],[112,63,64,0.39065713401259416],[112,63,65,0.39109910045121354],[112,63,66,0.3915211659404127],[112,63,67,0.39192499514373524],[112,63,68,0.3923122334474054],[112,63,69,0.39268450400503396],[112,63,70,0.3930434047288792],[112,63,71,0.3933905052276466],[112,63,72,0.39372734369083184],[112,63,73,0.39405542371959756],[112,63,74,0.3943762111042103],[112,63,75,0.3946911305479999],[112,63,76,0.395001562337871],[112,63,77,0.3953088389613549],[112,63,78,0.395614241670202],[112,63,79,0.395918996990519],[112,64,64,0.3878205869850359],[112,64,65,0.38829198361889966],[112,64,66,0.3887437130467408],[112,64,67,0.38917742819835044],[112,64,68,0.3895947627616754],[112,64,69,0.3899973282461365],[112,64,70,0.3903867109928667],[112,64,71,0.3907644691318521],[112,64,72,0.3911321294859822],[112,64,73,0.39149118442199676],[112,64,74,0.3918430886483577],[112,64,75,0.39218925596000925],[112,64,76,0.3925310559300531],[112,64,77,0.39286981054832915],[112,64,78,0.3932067908069008],[112,64,79,0.39354321323245145],[112,65,64,0.38482072642970666],[112,65,65,0.38532112989410267],[112,65,66,0.38580214032203586],[112,65,67,0.3862653985617048],[112,65,68,0.38671252622000607],[112,65,69,0.3871451227442222],[112,65,70,0.3875647624510008],[112,65,71,0.38797299150260645],[112,65,72,0.3883713248304532],[112,65,73,0.3887612430059039],[112,65,74,0.3891441890583679],[112,65,75,0.3895215652406545],[112,65,76,0.38989472974161465],[112,65,77,0.39026499334605835],[112,65,78,0.3906336160419477],[112,65,79,0.3910018035748716],[112,66,64,0.38165823884222705],[112,66,65,0.3821872132660361],[112,66,66,0.3826971092901483],[112,66,67,0.3831895553366581],[112,66,68,0.3836661605518442],[112,66,69,0.38412851190597475],[112,66,70,0.38457817124078186],[112,66,71,0.3850166722645864],[112,66,72,0.38544551749508194],[112,66,73,0.38586617514975885],[112,66,74,0.3862800759840082],[112,66,75,0.3866886100768568],[112,66,76,0.38709312356436654],[112,66,77,0.38749491532068836],[112,66,78,0.38789523358676853],[112,66,79,0.388295272546714],[112,67,64,0.37833392046610914],[112,67,65,0.3788910177492907],[112,67,66,0.37942939175072676],[112,67,67,0.37995065812546214],[112,67,68,0.38045641318305246],[112,67,69,0.3809482310052277],[112,67,70,0.3814276605116097],[112,67,71,0.3818962224734647],[112,67,72,0.3823554064754959],[112,67,73,0.3828066678256604],[112,67,74,0.38325142441305127],[112,67,75,0.38369105351379074],[112,67,76,0.3841268885449732],[112,67,77,0.38456021576664556],[112,67,78,0.384992270931824],[112,67,79,0.3854242358845513],[112,68,64,0.37484867673948896],[112,68,65,0.37543343684450803],[112,68,66,0.3759998692537454],[112,68,67,0.376549576518047],[112,68,68,0.37708414173785737],[112,68,69,0.3776051256984763],[112,68,70,0.3781140639537593],[112,68,71,0.3786124638582422],[112,68,72,0.3791018015476959],[112,68,73,0.3795835188680936],[112,68,74,0.38005902025303395],[112,68,75,0.3805296695495635],[112,68,76,0.3809967867924393],[112,68,77,0.38146164492681733],[112,68,78,0.3819254664793671],[112,68,79,0.3823894201778168],[112,69,64,0.37120352169081644],[112,69,65,0.3718154729475667],[112,69,66,0.37240953252211234],[112,69,67,0.37298728952797544],[112,69,68,0.3735503134880716],[112,69,69,0.3741001514872854],[112,69,70,0.3746383252738873],[112,69,71,0.37516632830976815],[112,69,72,0.37568562276949985],[112,69,73,0.3761976364882029],[112,69,74,0.376703759858268],[112,69,75,0.3772053426748674],[112,69,76,0.3777036909303064],[112,69,77,0.3782000635571934],[112,69,78,0.37869566912043123],[112,69,79,0.37919166245803576],[112,70,64,0.3673995772834055],[112,70,65,0.3680382367071812],[112,70,66,0.36865948082226185],[112,70,67,0.3692648849759704],[112,70,68,0.36985600474949337],[112,70,69,0.37043437312749583],[112,70,70,0.371001497616979],[112,70,71,0.37155885731535543],[112,70,72,0.3721078999277524],[112,70,73,0.37265003873352337],[112,70,74,0.3731866495020125],[112,70,75,0.37371906735751415],[112,70,76,0.37424858359346835],[112,70,77,0.3747764424358798],[112,70,78,0.3753038377559574],[112,70,79,0.375831909731983],[112,71,64,0.3634380727090219],[112,71,65,0.3641029463310905],[112,71,66,0.364750921282906],[112,71,67,0.3653835588211867],[112,71,68,0.36600240022565483],[112,71,69,0.366608963985401],[112,71,70,0.3672047429349011],[112,71,71,0.36779120133965637],[112,71,72,0.3683697719314688],[112,71,73,0.3689418528933295],[112,71,74,0.3695088047939705],[112,71,75,0.37007194747201366],[112,71,76,0.37063255686976604],[112,71,77,0.3711918618166426],[112,71,78,0.37175104076221854],[112,71,79,0.37231121845891535],[112,72,64,0.3593203436304303],[112,72,65,0.36001092684075886],[112,72,66,0.36068516816186724],[112,72,67,0.36134461444015364],[112,72,68,0.3619907922988448],[112,72,69,0.36262520534081866],[112,72,70,0.3632493313014892],[112,72,71,0.36386461915172874],[112,72,72,0.36447248615083716],[112,72,73,0.36507431484953584],[112,72,74,0.3656714500430375],[112,72,75,0.36626519567412585],[112,72,76,0.3668568116862924],[112,72,77,0.36744751082691424],[112,72,78,0.36803845540047236],[112,72,79,0.36863075397181755],[112,73,64,0.3550478313727879],[112,73,65,0.3557636092744776],[112,73,66,0.35646364206088466],[112,73,67,0.35714946185327506],[112,73,68,0.35782258026829494],[112,73,69,0.35848448563694935],[112,73,70,0.35913664017406033],[112,73,71,0.35978047709818184],[112,73,72,0.36041739770197706],[112,73,73,0.3610487683730377],[112,73,74,0.36167591756519957],[112,73,75,0.3623001327202821],[112,73,76,0.36292265714030403],[112,73,77,0.3635446868101579],[112,73,78,0.36416736717074194],[112,73,79,0.3647917898425572],[112,74,64,0.35062208206408946],[112,74,65,0.3513625298390674],[112,74,66,0.35208786908858886],[112,74,67,0.35279961689908945],[112,74,68,0.3534992695357284],[112,74,69,0.3541882996772166],[112,74,70,0.35486815360154594],[112,74,71,0.3555402483225985],[112,74,72,0.35620596867764176],[112,74,73,0.3568666643656869],[112,74,74,0.3575236469367673],[112,74,75,0.3581781867320628],[112,74,76,0.358831509774924],[112,74,77,0.3594847946127764],[112,74,78,0.36013916910990573],[112,74,79,0.36079570719113147],[112,75,64,0.34604474572456945],[112,75,65,0.34680932901009465],[112,75,66,0.3475594799715611],[112,75,67,0.3482967003561974],[112,75,68,0.34902247073818193],[112,75,69,0.34973824776900386],[112,75,70,0.350445461379158],[112,75,71,0.3511455119311443],[112,75,72,0.3518397673237823],[112,75,73,0.35252956004781477],[112,75,74,0.35321618419286255],[112,75,75,0.35390089240564926],[112,75,76,0.3545848927995557],[112,75,77,0.3552693458154816],[112,75,78,0.35595536103401615],[112,75,79,0.3566439939389239],[112,76,64,0.3413175753049413],[112,76,65,0.3421057505804746],[112,76,66,0.3428802091133498],[112,76,67,0.343642437012738],[112,76,68,0.34439389882797994],[112,76,69,0.3451360348141635],[112,76,70,0.3458702581494684],[112,76,71,0.3465979521042468],[112,76,72,0.3473204671618513],[112,76,73,0.34803911809118626],[112,76,74,0.3487551809710421],[112,76,75,0.34946989016613167],[112,76,76,0.35018443525488957],[112,76,77,0.3508999579090112],[112,76,78,0.35161754872473266],[112,76,79,0.3523382440058599],[112,77,64,0.33644242567369737],[112,77,65,0.33725364065768987],[112,77,66,0.33805189360167304],[112,77,67,0.3388386546836337],[112,77,68,0.33961537210008264],[112,77,69,0.3403834693465226],[112,77,70,0.34114434245012193],[112,77,71,0.3418993571545617],[112,77,72,0.3426498460570671],[112,77,73,0.34339710569759946],[112,77,74,0.34414239360026894],[112,77,75,0.34488692526688647],[112,77,76,0.3456318711227153],[112,77,77,0.34637835341440104],[112,77,78,0.3471274430600783],[112,77,79,0.34788015645166526],[112,78,64,0.3314212525533686],[112,78,65,0.33225494660951954],[112,78,66,0.3330764721636993],[112,78,67,0.33388728317550526],[112,78,68,0.33468881116670834],[112,78,69,0.33548246251628216],[112,78,70,0.3362696157080802],[112,78,71,0.33705161853112653],[112,78,72,0.3378297852325359],[112,78,73,0.3386053936230332],[112,78,74,0.3393796821351376],[112,78,75,0.3401538468339267],[112,78,76,0.34092903838044264],[112,78,77,0.3417063589477184],[112,78,78,0.3424868590894227],[112,78,79,0.3432715345611351],[112,79,64,0.3262561114056068],[112,79,65,0.327111715958146],[112,79,66,0.3279559840692795],[112,79,67,0.328790353199122],[112,79,68,0.3296162378790949],[112,79,69,0.3304350270211803],[112,79,70,0.3312480811802693],[112,79,71,0.3320567297695727],[112,79,72,0.3328622682291049],[112,79,73,0.33366595514721364],[112,79,74,0.33446900933522244],[112,79,75,0.33527260685509797],[112,79,76,0.3360778780002054],[112,79,77,0.3368859042291311],[112,79,78,0.33769771505257],[112,79,79,0.3385142848732893],[112,80,64,0.32094915626534243],[112,80,65,0.32182609522288863],[112,80,66,0.3226925679823724],[112,80,67,0.3235499952296348],[112,80,68,0.32439977419664895],[112,80,69,0.3252432759846604],[112,80,70,0.3260818428408712],[112,80,71,0.3269167853886361],[112,80,72,0.32774937981118507],[112,80,73,0.3285808649888381],[112,80,74,0.32941243958978805],[112,80,75,0.33024525911435515],[112,80,76,0.33108043289278166],[112,80,77,0.3319190210365439],[112,80,78,0.33276203134317983],[112,80,79,0.3336104161546436],[112,81,64,0.31550263852389865],[112,81,65,0.31640032871144513],[112,81,66,0.3172884607605508],[112,81,67,0.31816843831447494],[112,81,68,0.3190416410033647],[112,81,69,0.3199094217809349],[112,81,70,0.3207731042151468],[112,81,71,0.32163397973285507],[112,81,72,0.32249330481843297],[112,81,73,0.3233522981663465],[112,81,74,0.3242121377877506],[112,81,75,0.32507395807101114],[112,81,76,0.3259388467962221],[112,81,77,0.32680784210369435],[112,81,78,0.3276819294164155],[112,81,79,0.32856203831648956],[112,82,64,0.30991890566092006],[112,82,65,0.31083675725950377],[112,82,66,0.31174599620244614],[112,82,67,0.3126480088287816],[112,82,68,0.3135441568713768],[112,82,69,0.3144357748068003],[112,82,70,0.3153241671596514],[112,82,71,0.316210605761315],[112,82,72,0.3170963269631525],[112,82,73,0.317982528804101],[112,82,74,0.31887036813275327],[112,82,75,0.31976095768382073],[112,82,76,0.32065536310905085],[112,82,77,0.3215545999625755],[112,82,78,0.32245963064068645],[112,82,79,0.3233713612760516],[112,83,64,0.3042003999253848],[112,83,65,0.3051378169189891],[112,83,66,0.30606760374339853],[112,83,67,0.30699112917861926],[112,83,68,0.3079097367719064],[112,83,69,0.3088247422004702],[112,83,70,0.30973743058910447],[112,83,71,0.31064905378270335],[112,83,72,0.31156082757367687],[112,83,73,0.312473928884234],[112,83,74,0.3133894929036137],[112,83,75,0.3143086101801561],[112,83,76,0.31523232366829396],[112,83,77,0.3161616257304346],[112,83,78,0.31709745509373344],[112,83,79,0.3180406937617687],[112,84,64,0.2983496569655759],[112,84,65,0.2993060375948203],[112,84,66,0.30025580709918775],[112,84,67,0.3012003164518648],[112,84,68,0.3021408907334822],[112,84,69,0.3030788265073019],[112,84,70,0.3040153891497917],[112,84,71,0.3049518101365521],[112,84,72,0.30588928428360973],[112,84,73,0.3068289669440435],[112,84,74,0.307771971160023],[112,84,75,0.3087193647701552],[112,84,76,0.3096721674722153],[112,84,77,0.31063134784123425],[112,84,78,0.3115978203029433],[112,84,79,0.31257244206258705],[112,85,64,0.2923693044078541],[112,85,65,0.29334404163002353],[112,85,66,0.2943132228576909],[112,85,67,0.29527818101660797],[112,85,68,0.29624022244727866],[112,85,69,0.2972006242922647],[112,85,70,0.2981606318393482],[112,85,71,0.2991214558205152],[112,85,72,0.30008426966677604],[112,85,73,0.3010502067187855],[112,85,74,0.30202035739334737],[112,85,75,0.3029957663056929],[112,85,76,0.30397742934761474],[112,85,77,0.30496629072142567],[112,85,78,0.3059632399297443],[112,85,79,0.3069691087211173],[112,86,64,0.28626206038452645],[112,86,65,0.28725454233949455],[112,86,66,0.28824255901875667],[112,86,67,0.2892274250673562],[112,86,68,0.29021042781986384],[112,86,69,0.2911928246994364],[112,86,70,0.2921758405732072],[112,86,71,0.2931606650639681],[112,86,72,0.29414844981816224],[112,86,73,0.2951403057301465],[112,86,74,0.29613730012281314],[112,86,75,0.2971404538844557],[112,86,76,0.2981507385619635],[112,86,77,0.2991690734103128],[112,86,78,0.3001963223983575],[112,86,79,0.30123329117092823],[112,87,64,0.28003073201067286],[112,87,65,0.28104034249226906],[112,87,66,0.2820466134821605],[112,87,67,0.2830508411189076],[112,87,68,0.2840542934732181],[112,87,69,0.2850582079583933],[112,87,70,0.2860637886975803],[112,87,71,0.2870722038477932],[112,87,72,0.2880845828807177],[112,87,73,0.28910201382026196],[112,87,74,0.29012554043694255],[112,87,75,0.2911561593989882],[112,87,76,0.29219481738024866],[112,87,77,0.29324240812487495],[112,87,78,0.2942997694687747],[112,87,79,0.2953676803178507],[112,88,64,0.2736782138097651],[112,88,65,0.27470433274214057],[112,88,66,0.2757282724834763],[112,88,67,0.27675131044772694],[112,88,68,0.27777469519186254],[112,88,69,0.2787996438373316],[112,88,70,0.27982733944880933],[112,88,71,0.28085892837019233],[112,88,72,0.28189551751785347],[112,88,73,0.28293817163112334],[112,88,74,0.2839879104800829],[112,88,75,0.2850457060305534],[112,88,76,0.2861124795663682],[112,88,77,0.2871890987688951],[112,88,78,0.2882763747538104],[112,88,79,0.28937505906513633],[112,89,64,0.2672074860884093],[112,89,65,0.26824949000695375],[112,89,66,0.2692905089781936],[112,89,67,0.2703318014811554],[112,89,68,0.27137459631742317],[112,89,69,0.27242009004324585],[112,89,70,0.27346944435941173],[112,89,71,0.2745237834588472],[112,89,72,0.275584191331961],[112,89,73,0.27665170902969094],[112,89,74,0.27772733188434573],[112,89,75,0.2788120066881235],[112,89,76,0.2799066288293923],[112,89,77,0.28101203938670305],[112,89,78,0.28212902218053415],[112,89,79,0.2832583007827801],[112,90,64,0.2606216132599345],[112,90,65,0.2616788757962975],[112,90,66,0.262736380973804],[112,90,67,0.26379536813417587],[112,90,68,0.26485704609035726],[112,90,69,0.26592259056889134],[112,90,70,0.26699314161054766],[112,90,71,0.2680698009291584],[112,90,72,0.2691536292286811],[112,90,73,0.27024564347844715],[112,90,74,0.27134681414669104],[112,90,75,0.2724580623922358],[112,90,76,0.2735802572144258],[112,90,77,0.2747142125612745],[112,90,78,0.2758606843958266],[112,90,79,0.277020367720748],[112,91,64,0.25392374211704394],[112,91,65,0.25499563448781115],[112,91,66,0.25606902981007146],[112,91,67,0.25714514809395067],[112,91,68,0.25822517793905464],[112,91,69,0.25931027398674067],[112,91,70,0.260401554331123],[112,91,71,0.26150009788877304],[112,91,72,0.2626069417271327],[112,91,73,0.26372307835159653],[112,91,74,0.2648494529513619],[112,91,75,0.26598696060392],[112,91,76,0.267136443438279],[112,91,77,0.26829868775688803],[112,91,78,0.26947442111626085],[112,91,79,0.2706643093663126],[112,92,64,0.24711710005322815],[112,92,65,0.24820299155180764],[112,92,66,0.24929167838719013],[112,92,67,0.25038436105183237],[112,92,68,0.25148220771601837],[112,92,69,0.2525863516896452],[112,92,70,0.2536978888432315],[112,92,71,0.2548178749881088],[112,92,72,0.2559473232158114],[112,92,73,0.25708720119662376],[112,92,74,0.25823842843738315],[112,92,75,0.2594018734984103],[112,92,76,0.26057835116965944],[112,92,77,0.2617686196060565],[112,92,78,0.2629733774220252],[112,92,79,0.26419326074521227],[112,93,64,0.24020499323329753],[112,93,65,0.24130425172456804],[112,93,66,0.242407629342182],[112,93,67,0.24351630688320355],[112,93,68,0.24463143188147654],[112,93,69,0.245754116078545],[112,93,70,0.24688543285428718],[112,93,71,0.2480264146172221],[112,93,72,0.24917805015450245],[112,93,73,0.2503412819415551],[112,93,74,0.2515170034114663],[112,93,75,0.25270605618398345],[112,93,76,0.2539092272542257],[112,93,77,0.25512724614107235],[112,93,78,0.25636078199522716],[112,93,79,0.25761044066697336],[112,94,64,0.23319080471286888],[112,94,65,0.23430279713014343],[112,94,66,0.2354202631733729],[112,94,67,0.23654436377498067],[112,94,68,0.23767622563426444],[112,94,69,0.238816938697073],[112,94,70,0.2399675535956866],[112,94,71,0.24112907904886144],[112,94,72,0.24230247922205078],[112,94,73,0.24348867104776425],[112,94,74,0.2446885215061642],[112,94,75,0.24590284486576752],[112,94,76,0.24713239988434849],[112,94,77,0.2483778869700101],[112,94,78,0.24963994530242178],[112,94,79,0.25091914991423897],[112,95,64,0.22607799250662805],[112,95,65,0.227202085350483],[112,95,66,0.2283330363127658],[112,95,67,0.22947198630060334],[112,95,68,0.23062004098979608],[112,95,69,0.23177826831286927],[112,95,70,0.23294769590782144],[112,95,71,0.234129308527527],[112,95,72,0.23532404540980975],[112,95,73,0.23653279760814602],[112,95,74,0.2377564052830979],[112,95,75,0.23899565495434344],[112,95,76,0.24025127671340082],[112,95,77,0.24152394139701294],[112,95,78,0.24281425772119092],[112,95,79,0.24412276937593202],[112,96,64,0.21887008760571455],[112,96,65,0.22000564744424164],[112,96,66,0.2211494791466616],[112,96,67,0.22230270344285763],[112,96,68,0.22346640480547328],[112,96,69,0.22464162894595494],[112,96,70,0.22582938027178823],[112,96,71,0.2270306193048814],[112,96,72,0.22824626006111218],[112,96,73,0.22947716739099946],[112,96,74,0.23072415428159748],[112,96,75,0.23198797911948119],[112,96,76,0.23326934291491896],[112,96,77,0.23456888648719934],[112,96,78,0.23588718761111038],[112,96,79,0.237224758124587],[112,97,64,0.2115706919440659],[112,97,65,0.21271708591409538],[112,97,66,0.2138731939843584],[112,97,67,0.21504011656436672],[112,97,68,0.2162189167533677],[112,97,69,0.2174106178439983],[112,97,70,0.21861620078762906],[112,97,71,0.21983660162134688],[112,97,72,0.22107270885659985],[112,97,73,0.2223253608294581],[112,97,74,0.2235953430125938],[112,97,75,0.22488338528884635],[112,97,76,0.22619015918647],[112,97,77,0.22751627507602942],[112,97,78,0.22886227932894324],[112,97,79,0.2302286514376903],[112,98,64,0.20418347631352493],[112,98,65,0.20534007262237547],[112,98,66,0.20650785297474106],[112,98,67,0.2076878973255568],[112,98,68,0.20888124723998155],[112,98,69,0.21008890340428465],[112,98,70,0.2113118230989133],[112,98,71,0.21255091763369954],[112,98,72,0.21380704974522205],[112,98,73,0.21508103095627767],[112,98,74,0.21637361889757326],[112,98,75,0.21768551459149188],[112,98,76,0.21901735969804154],[112,98,77,0.22036973372294527],[112,98,78,0.2217431511878753],[112,98,79,0.22313805876284565],[112,99,64,0.19671217822808154],[112,99,65,0.19787834665538745],[112,99,66,0.19905719597112412],[112,99,67,0.20024978555046535],[112,99,68,0.20145713527345666],[112,99,69,0.20268022304275135],[112,99,70,0.2039199822640251],[112,99,71,0.20517729928902373],[112,99,72,0.20645301082126463],[112,99,73,0.20774790128434323],[112,99,74,0.20906270015295533],[112,99,75,0.2103980792464918],[112,99,76,0.2117546499853089],[112,99,77,0.21313296060964038],[112,99,78,0.21453349336114597],[112,99,79,0.21595666162711658],[112,100,64,0.18916059973706928],[112,100,65,0.19033571213624131],[112,100,66,0.1915250283441757],[112,100,67,0.19272958704021692],[112,100,68,0.19395038627805247],[112,100,69,0.19518838100991887],[112,100,70,0.19644448057398234],[112,100,71,0.19771954614485157],[112,100,72,0.19901438814723846],[112,100,73,0.2003297636327211],[112,100,74,0.2016663736197205],[112,100,75,0.2030248603965455],[112,100,76,0.20440580478761017],[112,100,77,0.2058097233827888],[112,100,78,0.20723706572990558],[112,100,79,0.2086882114903777],[112,101,64,0.18153260518712241],[112,101,65,0.1827160359859899],[112,101,66,0.1839152187427211],[112,101,67,0.18513117133396648],[112,101,68,0.1863648698556996],[112,101,69,0.18761724615351272],[112,101,70,0.18888918531658766],[112,101,71,0.1901815231352934],[112,101,72,0.19149504352242797],[112,101,73,0.19283047589806257],[112,101,74,0.1941884925380934],[112,101,75,0.1955697058863602],[112,101,76,0.19697466583043394],[112,101,77,0.19840385694103907],[112,101,78,0.19985769567510742],[112,101,79,0.20133652754248244],[112,102,64,0.1738321189332703],[112,102,65,0.17502324563346255],[112,102,66,0.17623169680281062],[112,102,67,0.1774584694176936],[112,102,68,0.17870451749500538],[112,102,69,0.17997074962816417],[112,102,70,0.181258026487295],[112,102,71,0.18256715828353437],[112,102,72,0.18389890219748],[112,102,73,0.1852539597717341],[112,102,74,0.18663297426765724],[112,102,75,0.18803652798618192],[112,102,76,0.18946513955279465],[112,102,77,0.1909192611666478],[112,102,78,0.19239927581380262],[112,102,79,0.19390549444461697],[112,103,64,0.1660631229989902],[112,103,65,0.16726132667360566],[112,103,66,0.16847845080486468],[112,103,67,0.1697154713806613],[112,103,68,0.17097332022753137],[112,103,69,0.1722528825520005],[112,103,70,0.17355499444660266],[112,103,71,0.1748804403605173],[112,103,72,0.1762299505348477],[112,103,73,0.17760419840249103],[112,103,74,0.17900379795271626],[112,103,75,0.1804293010602973],[112,103,76,0.18188119477931192],[112,103,77,0.18335989860156893],[112,103,78,0.18486576167966084],[112,103,79,0.18639906001466094],[112,104,64,0.1582296546850107],[112,104,65,0.15943432047412986],[112,104,66,0.16065952527869576],[112,104,67,0.16190622401933918],[112,104,68,0.163175326231137],[112,104,69,0.1644676936099253],[112,104,70,0.1657841375237794],[112,104,71,0.16712541648960894],[112,104,72,0.16849223361489257],[112,104,73,0.16988523400449823],[112,104,74,0.17130500213271027],[112,104,75,0.17275205918030695],[112,104,76,0.17422686033680113],[112,104,77,0.17572979206780548],[112,104,78,0.17726116934751984],[112,104,79,0.17882123285635965],[112,105,64,0.15033580412726283],[112,105,65,0.1515463217308553],[112,105,66,0.15277901855679776],[112,105,67,0.1540348283891816],[112,105,68,0.15531463838078485],[112,105,69,0.15661928660398045],[112,105,70,0.15794955956730483],[112,105,71,0.15930618969764004],[112,105,72,0.16068985278803055],[112,105,73,0.16210116541108222],[112,105,74,0.16354068229806357],[112,105,75,0.16500889368355443],[112,105,76,0.16650622261575265],[112,105,77,0.1680330222324033],[112,105,78,0.16958957300234379],[112,105,79,0.17117607993268819],[112,106,64,0.14238571180378407],[112,106,65,0.1436014759715643],[112,106,66,0.14484108027571357],[112,106,67,0.14610543730407005],[112,106,68,0.14739541174661303],[112,106,69,0.14871181795059724],[112,106,70,0.15005541744184153],[112,106,71,0.15142691641212885],[112,106,72,0.15282696317273348],[112,106,73,0.1542561455740269],[112,106,74,0.1557149883912834],[112,106,75,0.15720395067652393],[112,106,76,0.15872342307651865],[112,106,77,0.1602737251169027],[112,106,78,0.16185510245240675],[112,106,79,0.1634677240832208],[112,107,64,0.1343835659903731],[112,107,65,0.13560397700815563],[112,107,66,0.13684990882527465],[112,107,67,0.13812225278321677],[112,107,68,0.13942185103907356],[112,107,69,0.1407494941245342],[112,107,70,0.1421059184715308],[112,107,71,0.14349180390448568],[112,107,72,0.144907771099183],[112,107,73,0.14635437900821202],[112,107,74,0.1478321222531041],[112,107,75,0.14934142848300647],[112,107,76,0.1508826557000027],[112,107,77,0.15245608955104628],[112,107,78,0.15406194058650097],[112,107,79,0.15570034148530926],[112,108,64,0.1263336001653923],[112,108,65,0.12755806433750205],[112,108,66,0.12880974874611273],[112,108,67,0.13008952344592634],[112,108,68,0.13139820800153262],[112,108,69,0.13273656904990017],[112,108,70,0.13410531783001123],[112,108,71,0.13550510767959462],[112,108,72,0.13693653149897456],[112,108,73,0.13840011918198497],[112,108,74,0.13989633501407217],[112,108,75,0.1414255750374247],[112,108,76,0.14298816438324652],[112,108,77,0.14458435457113467],[112,108,78,0.14621432077555757],[112,108,79,0.14787815905945528],[112,109,64,0.11824009036352845],[112,109,65,0.11946802049081567],[112,109,66,0.12072488807524978],[112,109,67,0.1220115418540223],[112,109,68,0.12332877875014314],[112,109,69,0.12467734143806825],[112,109,70,0.12605791587696752],[112,109,71,0.12747112881157957],[112,109,72,0.12891754524067583],[112,109,73,0.13039766585308188],[112,109,74,0.13191192443137978],[112,109,75,0.13346068522312887],[112,109,76,0.13504424027972223],[112,109,77,0.1366628067628397],[112,109,78,0.13831652421849433],[112,109,79,0.14000545181869128],[112,110,64,0.11010735247829401],[112,110,65,0.11133816833130944],[112,110,66,0.11259965563955471],[112,110,67,0.1138926418017302],[112,110,68,0.1152179010607729],[112,110,69,0.11657615207226923],[112,110,70,0.11796805544099725],[112,110,71,0.11939421122554533],[112,110,72,0.1208551564110335],[112,110,73,0.12235136234987964],[112,110,74,0.12388323217073921],[112,110,75,0.12545109815545313],[112,110,76,0.1270552190841222],[112,110,77,0.12869577754826855],[112,110,78,0.13037287723208046],[112,110,79,0.1320865401617617],[112,111,64,0.10193973951368634],[112,111,65,0.1031728683005666],[112,111,66,0.10443841829747841],[112,111,67,0.10573719555342287],[112,111,68,0.10706995160340504],[112,111,69,0.1084373810392778],[112,111,70,0.10984011904920749],[112,111,71,0.1112787389257025],[112,111,72,0.11275374954223483],[112,111,73,0.11426559279839366],[112,111,74,0.11581464103370409],[112,111,75,0.11740119440993974],[112,111,76,0.11902547826205317],[112,111,77,0.12068764041768121],[112,111,78,0.12238774848522194],[112,111,79,0.12412578711050698],[112,112,64,0.09374163878479852],[112,112,65,0.09497651561341802],[112,112,66,0.09624557812886425],[112,112,67,0.09754961102903187],[112,112,68,0.09888934312380404],[112,112,69,0.10026544490798528],[112,112,70,0.101678526103338],[112,112,71,0.10312913316967415],[112,112,72,0.10461774678502217],[112,112,73,0.10614477929481625],[112,112,74,0.10771057213023644],[112,112,75,0.10931539319552874],[112,112,76,0.11095943422443189],[112,112,77,0.11264280810566418],[112,112,78,0.11436554617747086],[112,112,79,0.1161275954912514],[112,113,64,0.08551746906717356],[112,113,65,0.08675353740111075],[112,113,66,0.08802556957262397],[112,113,67,0.08933432893690862],[112,113,68,0.0906805215722406],[112,113,69,0.0920647938546531],[112,113,70,0.09348773000220267],[112,113,71,0.09494984958877545],[112,113,72,0.09645160502745381],[112,113,73,0.09799337902339],[112,113,74,0.09957548199631372],[112,113,75,0.10119814947250921],[112,113,76,0.10286153944637827],[112,113,77,0.10456572971155287],[112,113,78,0.10631071516154966],[112,113,79,0.10809640505999246],[112,114,64,0.07727167769533816],[112,114,65,0.07850838980321545],[112,114,66,0.07978285651271794],[112,114,67,0.08109581985457959],[112,114,68,0.0824479631797107],[112,114,69,0.08383990873528246],[112,114,70,0.08527221521088457],[112,114,71,0.08674537525470377],[112,114,72,0.08825981295974594],[112,114,73,0.08981588132004803],[112,114,74,0.09141385965700738],[112,114,75,0.0930539510156616],[112,114,76,0.09473627953103764],[112,114,77,0.09646088776453304],[112,114,78,0.09822773401032298],[112,114,79,0.10003668957181522],[112,115,64,0.0690087376101513],[112,115,65,0.07024555500789398],[112,115,66,0.07152192931206991],[112,115,67,0.07283858125702125],[112,115,68,0.07419617148128099],[112,115,69,0.07559529810473126],[112,115,70,0.07703649427631892],[112,115,71,0.07852022569226941],[112,115,72,0.08004688808482624],[112,115,73,0.08161680468145882],[112,115,74,0.08323022363466914],[112,115,75,0.08488731542222888],[112,115,76,0.08658817021796511],[112,115,77,0.08833279523305965],[112,115,78,0.09012111202785245],[112,115,79,0.09195295379417534],[112,116,64,0.06073314435524235],[112,116,65,0.061969538240816024],[112,116,66,0.06324730179469662],[112,116,67,0.06456713449273915],[112,116,68,0.06592967428684293],[112,116,69,0.06733549518286075],[112,116,70,0.0687851047895417],[112,116,71,0.07027894183844913],[112,116,72,0.07181737367488383],[112,116,73,0.07340069371975005],[112,116,74,0.07502911890250175],[112,116,75,0.0767027870649924],[112,116,76,0.07842175433635468],[112,116,77,0.0801859924788686],[112,116,78,0.08199538620481317],[112,116,79,0.08384973046432415],[112,117,64,0.052449413022164104],[112,117,65,0.05368486470233874],[112,117,66,0.05496350817567475],[112,117,67,0.056286021707269096],[112,117,68,0.057653020598892435],[112,117,69,0.05906505476733004],[112,117,70,0.06052260629422568],[112,117,71,0.06202608694738121],[112,117,72,0.06357583567353114],[112,117,73,0.0651721160625377],[112,117,74,0.06681511378313953],[112,117,75,0.06850493399007845],[112,117,76,0.07024159870273189],[112,117,77,0.07202504415520716],[112,117,78,0.07385511811789441],[112,117,79,0.07573157719050144],[112,118,64,0.044162075144711155],[112,118,65,0.04539607645340632],[112,118,66,0.046675099939394615],[112,118,67,0.04799980271455456],[112,118,68,0.04937077747779178],[112,118,69,0.0507885500934927],[112,118,70,0.05225357714195783],[112,118,71,0.053766243441756956],[112,118,72,0.0553268595440351],[112,118,73,0.056935659198708466],[112,118,74,0.05859279679268592],[112,118,75,0.0602983447599415],[112,118,76,0.06205229096356196],[112,118,77,0.06385453604972985],[112,118,78,0.06570489077363573],[112,118,79,0.06760307329734411],[112,119,64,0.03587567554218479],[112,119,65,0.03710772924994965],[112,119,66,0.03838664266588521],[112,119,67,0.03971305181598267],[112,119,68,0.04108752685429057],[112,119,69,0.042510569641177276],[112,119,70,0.04398261129403619],[112,119,71,0.04550400971038726],[112,119,72,0.047075047063393605],[112,119,73,0.048695927269737815],[112,119,74,0.05036677342999257],[112,119,75,0.05208762524131022],[112,119,76,0.05385843638255566],[112,119,77,0.0556790718718444],[112,119,78,0.05754930539647568],[112,119,79,0.059468816615291575],[112,120,64,0.027594769111401518],[112,120,65,0.028824389325579958],[112,120,66,0.03010271280500354],[112,120,67,0.031430354566869045],[112,120,68,0.03280786228910676],[112,120,69,0.03423571388814417],[112,120,70,0.03571431506958461],[112,120,71,0.0372439968517424],[112,120,72,0.03882501306205821],[112,120,73,0.04045753780634287],[112,120,74,0.04214166291097582],[112,120,75,0.043877395337891034],[112,120,76,0.04566465457247021],[112,120,77,0.04750326998430471],[112,120,78,0.04939297816082078],[112,120,79,0.051333420213791836],[112,121,64,0.01932391756786006],[112,121,65,0.02055063012299696],[112,121,66,0.021827894398907755],[112,121,67,0.02315630449081807],[112,121,68,0.024536385679978845],[112,121,69,0.025968592010640723],[112,121,70,0.027453303840402565],[112,121,71,0.028990825363880368],[112,121,72,0.030581382109717392],[112,121,73,0.03222511841088227],[112,121,74,0.03392209484838582],[112,121,75,0.03567228566824571],[112,121,76,0.03747557617181857],[112,121,77,0.039331760079464984],[112,121,78,0.04124053686753648],[112,121,79,0.043201509078713785],[112,122,64,0.011067686135862509],[112,122,65,0.012291028973899887],[112,122,66,0.013566775752603955],[112,122,67,0.014895499741739593],[112,122,68,0.016277703915988095],[112,122,69,0.01771381853084264],[112,122,70,0.01920419867233847],[112,122,71,0.020749121780556656],[112,122,72,0.02234878514693095],[112,122,73,0.024003303385296937],[112,122,74,0.02571270587682134],[112,122,75,0.027476934188633007],[112,122,76,0.029295839466281504],[112,122,77,0.031169179799985958],[112,122,78,0.03309661756466303],[112,122,79,0.03507771673376431],[112,123,64,0.0028306401873717246],[112,123,65,0.004050163727192302],[112,123,66,0.005323946052356532],[112,123,67,0.0066525397133197495],[112,123,68,0.008036425478930465],[112,123,69,0.009476009910970862],[112,123,70,0.010971622912979428],[112,123,71,0.012523515253303086],[112,123,72,0.014131856062407577],[112,123,73,0.015796730304382223],[112,123,74,0.017518136222779035],[112,123,75,0.019295982760607566],[112,123,76,0.021130086954611604],[112,123,77,0.023020171303788306],[112,123,78,0.024965861112141774],[112,123,79,0.026966681805699944],[112,124,64,-0.005382658169967081],[112,124,65,-0.0041673906741018785],[112,124,66,-0.002896008067619804],[112,124,67,-0.001567978403641701],[112,124,68,-1.8284300783227847E-4],[112,124,69,0.0012597810945062515],[112,124,70,0.002760198726074803],[112,124,71,0.004318634079896466],[112,124,72,0.005935228216343236],[112,124,73,0.007610036534806963],[112,124,74,0.009343026220155315],[112,124,75,0.0111340736637916],[112,124,76,0.012982961859446807],[112,124,77,0.014889377773664614],[112,124,78,0.016852909690969642],[112,124,79,0.018873044533747385],[112,125,64,-0.013567653555855486],[112,125,65,-0.012357065667413125],[112,125,66,-0.011088506010390964],[112,125,67,-0.009761463116226388],[112,125,68,-0.008375500283256787],[112,125,69,-0.0069302580057089],[112,125,70,-0.005425456427513242],[112,125,71,-0.0038608978209905276],[112,125,72,-0.002236469090387272],[112,125,73,-5.521443003232429E-4],[112,125,74,0.0011920127709965644],[112,125,75,0.002995846053613138],[112,125,76,0.004859104582827234],[112,125,77,0.006781439871348716],[112,125,78,0.00876240325657518],[112,125,79,0.010801443223030449],[112,126,64,-0.021719800831628777],[112,126,65,-0.020514302596914336],[112,126,66,-0.01924897675367282],[112,126,67,-0.017923332176948248],[112,126,68,-0.016536954005448024],[112,126,69,-0.01508950607269366],[112,126,70,-0.013580733362546393],[112,126,71,-0.012010464489169648],[112,126,72,-0.010378614201398073],[112,126,73,-0.008685185911574689],[112,126,74,-0.006930274248718837],[112,126,75,-0.005114067636200148],[112,126,76,-0.003236850893796994],[112,126,77,-0.0012990078641741398],[112,126,78,6.989759362084902E-4],[112,126,79,0.002756510641787502],[112,127,64,-0.029834568665384864],[112,127,65,-0.02863455629109035],[112,127,66,-0.027372862438918677],[112,127,67,-0.026049016183429086],[112,127,68,-0.02466262436101435],[112,127,69,-0.02321337400345347],[112,127,70,-0.021701034795410357],[112,127,71,-0.020125461555928537],[112,127,72,-0.018486596743896355],[112,127,73,-0.016784472987545818],[112,127,74,-0.015019215637843808],[112,127,75,-0.013191045345954167],[112,127,76,-0.011300280664647167],[112,127,77,-0.00934734067369225],[112,127,78,-0.007332747629244851],[112,127,79,-0.005257129637197155],[112,128,64,-0.037907443148160413],[112,128,65,-0.036713298691807894],[112,128,66,-0.035455622012329546],[112,128,67,-0.03413396223041831],[112,128,68,-0.03274794772715639],[112,128,69,-0.03129728858022024],[112,128,70,-0.029781779023592247],[112,128,71,-0.028201299930840473],[112,128,72,-0.026555821321938677],[112,128,73,-0.02484540489368503],[112,128,74,-0.02307020657358161],[112,128,75,-0.021230479097356314],[112,128,76,-0.01932657460999787],[112,128,77,-0.01735894729034304],[112,128,78,-0.015328155999226545],[112,128,79,-0.013234866951162716],[112,129,64,-0.04593393146136443],[112,129,65,-0.04474602253508514],[112,129,66,-0.04349273491800232],[112,129,67,-0.04217363761435278],[112,129,68,-0.040788380386699186],[112,129,69,-0.03933669619501179],[112,129,70,-0.03781840365883615],[112,129,71,-0.03623340954260135],[112,129,72,-0.03458171126403875],[112,129,73,-0.03286339942577654],[112,129,74,-0.03107866036996565],[112,129,75,-0.029227778756123035],[112,129,76,-0.027311140162060044],[112,129,77,-0.025329233707936494],[112,129,78,-0.023282654703452144],[112,129,79,-0.021172107318140676],[112,130,64,-0.053909565595055164],[112,130,65,-0.05272824508315843],[112,130,66,-0.05147970484279524],[112,130,67,-0.050163533590056764],[112,130,68,-0.04877940229565225],[112,130,69,-0.04732706662709946],[112,130,70,-0.04580636941357441],[112,130,71,-0.04421724313348263],[112,130,72,-0.04255971242471901],[112,130,73,-0.04083389661768111],[112,130,74,-0.03904001229089227],[112,130,75,-0.037178375849420964],[112,130,76,-0.03524940612596228],[112,130,77,-0.033253627004626196],[112,130,78,-0.03119167006743717],[112,130,79,-0.029064277263519567],[112,131,64,-0.06182990611726674],[112,131,65,-0.06065551190803653],[112,131,66,-0.05941206351312178],[112,131,67,-0.05809916917977492],[112,131,68,-0.05671652090350526],[112,131,69,-0.0552638968735889],[112,131,70,-0.053741163940826675],[112,131,71,-0.05214828010760131],[112,131,72,-0.0504852970402101],[112,131,73,-0.04875236260353555],[112,131,74,-0.04694972341790582],[112,131,75,-0.045077727438338266],[112,131,76,-0.04313682655602735],[112,131,77,-0.041127579222121624],[112,131,78,-0.039050653093798626],[112,131,79,-0.03690682770260545],[112,132,64,-0.06969054599458618],[112,132,65,-0.06852340072676327],[112,132,66,-0.06728537454387351],[112,132,67,-0.06597609503475244],[112,132,68,-0.0645952750264599],[112,132,69,-0.06314271503331703],[112,132,70,-0.06161830572778226],[112,132,71,-0.060022030433214524],[112,132,72,-0.05835396763850209],[112,132,73,-0.056614293534615334],[112,132,74,-0.0548032845729437],[112,132,75,-0.05292132004559791],[112,132,76,-0.050968884687550786],[112,132,77,-0.048946571300653496],[112,132,78,-0.04685508339953948],[112,132,79,-0.04469523787938223],[112,133,64,-0.0774871144635807],[112,133,65,-0.07632752528796877],[112,133,66,-0.07509523733906631],[112,133,67,-0.07378989734894875],[112,133,68,-0.07241123877319716],[112,133,69,-0.07095908424366021],[112,133,70,-0.06943334804265233],[112,133,71,-0.06783403859863213],[112,133,72,-0.06616126100333997],[112,133,73,-0.06441521955045626],[112,133,74,-0.06259622029563505],[112,133,75,-0.06070467363810106],[112,133,76,-0.05874109692367713],[112,133,77,-0.05670611706928219],[112,133,78,-0.05460047320891215],[112,133,79,-0.05242501936106703],[112,134,64,-0.08521528095327097],[112,134,65,-0.08406353930991939],[112,134,66,-0.0828372910444149],[112,134,67,-0.08153620182509341],[112,134,68,-0.08016002552337664],[112,134,69,-0.07870860667045576],[112,134,70,-0.07718188293499917],[112,134,71,-0.07557988762194812],[112,134,72,-0.07390275219237075],[112,134,73,-0.07215070880443386],[112,134,74,-0.07032409287535368],[112,134,75,-0.0684233456645067],[112,134,76,-0.06644901687757399],[112,134,77,-0.0644017672917544],[112,134,78,-0.062282371402061165],[112,134,79,-0.06009172008866559],[112,135,64,-0.09287075905885811],[112,135,65,-0.09172714047026476],[112,135,66,-0.09050721855203453],[112,135,67,-0.08921067769327884],[112,135,68,-0.08783729195907486],[112,135,69,-0.08638692755123967],[112,135,70,-0.08485954528973971],[112,135,71,-0.08325520311479362],[112,135,72,-0.08157405860963529],[112,135,73,-0.07981637154400678],[112,135,74,-0.07798250643822957],[112,135,75,-0.0760729351480478],[112,135,76,-0.07408823947010612],[112,135,77,-0.07202911376810528],[112,135,78,-0.06989636761964524],[112,135,79,-0.06769092848372249],[112,136,64,-0.10044931056629303],[112,136,65,-0.09931407444707924],[112,136,66,-0.0981007505568624],[112,136,67,-0.09680904178169247],[112,136,68,-0.09543874214875026],[112,136,69,-0.09398973929139032],[112,136,70,-0.09246201693442313],[112,136,71,-0.09085565739970658],[112,136,72,-0.08917084413200904],[112,136,73,-0.08740786424521285],[112,136,74,-0.08556711108870974],[112,136,75,-0.08364908683417704],[112,136,76,-0.08165440508260435],[112,136,77,-0.0795837934916066],[112,136,78,-0.0774380964230369],[112,136,79,-0.07521827761086708],[112,137,64,-0.10794674952790662],[112,137,65,-0.10682013901140491],[112,137,66,-0.1056136696650204],[112,137,67,-0.10432706263969349],[112,137,68,-0.10296013168395668],[112,137,69,-0.10151278561339849],[112,137,70,-0.09998503079998822],[112,137,71,-0.09837697368132836],[112,137,72,-0.09668882328979522],[112,137,73,-0.09492089380163715],[112,137,74,-0.09307360710588486],[112,137,75,-0.09114749539325817],[112,137,76,-0.08914320376494234],[112,137,77,-0.08706149286126752],[112,137,78,-0.08490324151030859],[112,137,79,-0.08266944939636622],[112,138,64,-0.11535894638927452],[112,138,65,-0.11424118817148454],[112,138,66,-0.11304181455428541],[112,138,67,-0.11176056471341878],[112,138,68,-0.11039727186897597],[112,138,69,-0.10895186575943472],[112,138,70,-0.10742437513518699],[112,138,71,-0.10581493027161071],[112,138,72,-0.10412376550165803],[112,138,73,-0.10235122176802602],[112,138,74,-0.10049774919475951],[112,138,75,-0.09856390967847883],[112,138,76,-0.09655037949909806],[112,138,77,-0.09445795195007267],[112,138,78,-0.0922875399881885],[112,138,79,-0.09004017890285942],[112,139,64,-0.12268183216692019],[112,139,65,-0.12157313636827072],[112,139,66,-0.12038108418627758],[112,139,67,-0.11910543257351403],[112,139,68,-0.11774603396297234],[112,139,69,-0.11630283874681979],[112,139,70,-0.11477589777426889],[112,139,71,-0.11316536486862605],[112,139,72,-0.11147149936348821],[112,139,73,-0.10969466865814703],[112,139,74,-0.1078353507920623],[112,139,75,-0.10589413703858508],[112,139,76,-0.10387173451780374],[112,139,77,-0.10176896882855091],[112,139,78,-0.09958678669957943],[112,139,79,-0.09732625865988098],[112,140,64,-0.12991140267719514],[112,140,65,-0.12881196272256767],[112,140,66,-0.1276274420707031],[112,140,67,-0.12635761519533217],[112,140,68,-0.1250023534750142],[112,140,69,-0.12356162767673629],[112,140,70,-0.1220355104582681],[112,140,71,-0.1204241788893301],[112,140,72,-0.11872791699154583],[112,140,73,-0.1169471182972408],[112,140,74,-0.11508228842694468],[112,140,75,-0.11313404768578172],[112,140,76,-0.1111031336786209],[112,140,77,-0.10899040394402193],[112,140,78,-0.1067968386069903],[112,140,79,-0.1045235430505067],[112,141,64,-0.13704372281608068],[112,141,65,-0.13595371533353817],[112,141,66,-0.1347769205813939],[112,141,67,-0.13351313029134626],[112,141,68,-0.1321622345116985],[112,141,69,-0.1307242240959262],[112,141,70,-0.12919919320964124],[112,141,71,-0.12758734185601506],[112,141,72,-0.12588897841962643],[112,141,73,-0.12410452222880275],[112,141,74,-0.12223450613630327],[112,141,75,-0.12027957911853782],[112,141,76,-0.1182405088931876],[112,141,77,-0.11611818455526313],[112,141,78,-0.11391361923161691],[112,141,79,-0.11162795275387294],[112,142,64,-0.14407493089025092],[112,142,65,-0.14299451562891674],[112,142,66,-0.14182562532448706],[112,142,67,-0.14056806869610894],[112,142,68,-0.13922175417772387],[112,142,69,-0.13778669241171249],[112,142,70,-0.136262998760587],[112,142,71,-0.13465089583679268],[112,142,72,-0.13295071605058262],[112,142,73,-0.13116290417603604],[112,142,74,-0.12928801993507089],[112,142,75,-0.1273267405996391],[112,142,76,-0.12527986361197507],[112,142,77,-0.12314830922292985],[112,142,78,-0.12093312314841342],[112,142,79,-0.11863547924389928],[112,143,64,-0.1510012429989921],[112,143,65,-0.14993056276653205],[112,143,66,-0.1487697395583385],[112,143,67,-0.14751859880336193],[112,143,68,-0.14617706702900446],[112,143,69,-0.14474517435994183],[112,143,70,-0.14322305703465177],[112,143,71,-0.14161095993970807],[112,143,72,-0.13990923916180298],[112,143,73,-0.1381183645575731],[112,143,74,-0.1362389223410717],[112,143,75,-0.13427161768908402],[112,143,76,-0.13221727736415056],[112,143,77,-0.13007685235533473],[112,143,78,-0.12785142053675203],[112,143,79,-0.12554218934382155],[112,144,64,-0.15781895746718066],[112,144,65,-0.15675813808732975],[112,144,66,-0.15560552866537025],[112,144,67,-0.15436097105549285],[112,144,68,-0.15302440957853092],[112,144,69,-0.15159589352605152],[112,144,70,-0.1500755796818184],[112,144,71,-0.14846373486067865],[112,144,72,-0.14676073846485016],[112,144,73,-0.1449670850576663],[112,144,74,-0.14308338695463885],[112,144,75,-0.141110376832022],[112,144,76,-0.13904891035274958],[112,144,77,-0.13689996880978106],[112,144,78,-0.1346646617868721],[112,144,79,-0.13234422983672822],[112,145,64,-0.16452445932948379],[112,145,65,-0.16347360962006874],[112,145,66,-0.16232934467601945],[112,145,67,-0.16109152248550296],[112,145,68,-0.1597601048551346],[112,145,69,-0.15833515991942126],[112,145,70,-0.15681686466724254],[112,145,71,-0.1552055074854305],[112,145,72,-0.1535014907194171],[112,145,73,-0.15170533325101077],[112,145,74,-0.1498176730931624],[112,145,75,-0.14783927000190145],[112,145,76,-0.14577100810531696],[112,145,77,-0.14361389854961615],[112,145,78,-0.14136908216227917],[112,145,79,-0.13903783213226883],[112,146,64,-0.17111422486543237],[112,146,65,-0.17007343663733532],[112,146,66,-0.16893763084443736],[112,146,67,-0.16770668131114053],[112,146,68,-0.16638056701481552],[112,146,69,-0.16495937460066168],[112,146,70,-0.16344330091328985],[112,146,71,-0.16183265554507476],[112,146,72,-0.16012786340125762],[112,146,73,-0.15832946728185127],[112,146,74,-0.15643813048021538],[112,146,75,-0.1544546393984767],[112,146,76,-0.15237990617967356],[112,146,77,-0.15021497135665463],[112,146,78,-0.14796100651775124],[112,146,79,-0.14561931698918196],[112,147,64,-0.17758482618554927],[112,147,65,-0.17655417426305964],[112,147,66,-0.1754269262761161],[112,147,67,-0.17420297158137543],[112,147,68,-0.17288230600480337],[112,147,69,-0.17146503436202098],[112,147,70,-0.1699513729950478],[112,147,71,-0.1683416523255089],[112,147,72,-0.16663631942426738],[112,147,73,-0.16483594059755358],[112,147,74,-0.1629412039894399],[112,147,75,-0.16095292220085133],[112,147,76,-0.15887203492498236],[112,147,77,-0.15669961159915347],[112,147,78,-0.15443685407312435],[112,147,79,-0.1520850992938263],[112,148,64,-0.18393293586868953],[112,148,65,-0.18291247813169242],[112,148,66,-0.18179387060761332],[112,148,67,-0.1805770178753794],[112,148,68,-0.17926193228052623],[112,148,69,-0.17784873646107213],[112,148,70,-0.17633766588948496],[112,148,71,-0.17472907143080463],[112,148,72,-0.17302342191688103],[112,148,73,-0.17122130673680125],[112,148,74,-0.16932343844335518],[112,148,75,-0.16733065537572633],[112,148,76,-0.16524392429828316],[112,148,77,-0.1630643430555001],[112,148,78,-0.16079314324302774],[112,148,79,-0.15843169289487424],[112,149,64,-0.1901553316502682],[112,149,65,-0.18914510909871807],[112,149,66,-0.1880352087380328],[112,149,67,-0.18682555005368207],[112,149,68,-0.18551616157514306],[112,149,69,-0.18410718340734666],[112,149,70,-0.18259886977791495],[112,149,71,-0.1809915916002518],[112,149,72,-0.17928583905245077],[112,149,73,-0.17748222417208837],[112,149,74,-0.17558148346675562],[112,149,75,-0.17358448054051556],[112,149,76,-0.17149220873615756],[112,149,77,-0.1693057937932817],[112,149,78,-0.167026496522232],[112,149,79,-0.16465571549383784],[112,150,64,-0.1962489011615337],[112,150,65,-0.1952489380026542],[112,150,66,-0.19414779561243234],[112,150,67,-0.1929454080616605],[112,150,68,-0.19164181972181127],[112,150,69,-0.19023718780207977],[112,150,70,-0.18873178490193376],[112,150,71,-0.18712600157921588],[112,150,72,-0.18542034893377057],[112,150,73,-0.18361546120666705],[112,150,74,-0.1817120983948609],[112,150,75,-0.17971114888149375],[112,150,76,-0.17761363208169056],[112,150,77,-0.17542070110389718],[112,150,78,-0.17313364542677157],[112,150,79,-0.17075389359158955],[112,151,64,-0.20221064672005695],[112,151,65,-0.20122095047872313],[112,151,66,-0.20012860105732444],[112,151,67,-0.19893354678553954],[112,151,68,-0.197635847528856],[112,151,69,-0.19623567723123736],[112,151,70,-0.19473332647300412],[112,151,71,-0.1931292050439869],[112,151,72,-0.19142384453191774],[112,151,73,-0.1896179009261254],[112,151,74,-0.18771215723639134],[112,151,75,-0.18570752612714925],[112,151,76,-0.18360505256690107],[112,151,77,-0.18140591649288695],[112,151,78,-0.1791114354910197],[112,151,79,-0.17672306749104905],[112,152,64,-0.20803769017110119],[112,152,65,-0.20705825182384396],[112,152,66,-0.20597471466793404],[112,152,67,-0.20478704096055655],[112,152,68,-0.2034953057075063],[112,152,69,-0.20209969921148474],[112,152,70,-0.20060052963533692],[112,152,71,-0.19899822558027602],[112,152,72,-0.1972933386790704],[112,152,73,-0.19548654620425554],[112,152,74,-0.19357865369122695],[112,152,75,-0.19157059757639827],[112,152,76,-0.18946344785029734],[112,152,77,-0.18725841072563643],[112,152,78,-0.18495683132036878],[112,152,79,-0.18256019635569498],[112,153,64,-0.21372727778005574],[112,153,65,-0.21275807191313933],[112,153,66,-0.21168335074739675],[112,153,67,-0.21050309013148527],[112,153,68,-0.20921737985237532],[112,153,69,-0.2078264261892846],[112,153,70,-0.20633055448227056],[112,153,71,-0.20473021171554728],[112,153,72,-0.20302596911548942],[112,153,73,-0.20121852476339197],[112,153,74,-0.1993087062228358],[112,153,75,-0.19729747318185176],[112,153,76,-0.19518592010974845],[112,153,77,-0.19297527892864264],[112,153,78,-0.19066692169970634],[112,153,79,-0.18826236332409152],[112,154,64,-0.2192767851760573],[112,154,65,-0.2183177701680763],[112,154,66,-0.2172518532980242],[112,154,67,-0.21607902366563336],[112,154,68,-0.21479938547482225],[112,154,69,-0.21341316059324755],[112,154,70,-0.21192069112625844],[112,154,71,-0.21032244200530814],[112,154,72,-0.2086190035907881],[112,154,73,-0.20681109428935507],[112,154,74,-0.2048995631856012],[112,154,75,-0.20288539268825623],[112,154,76,-0.2007697011907923],[112,154,77,-0.19855374574646534],[112,154,78,-0.1962389247578099],[112,154,79,-0.1938267806805497],[112,155,64,-0.2246837223465189],[112,155,65,-0.22373484057596238],[112,155,66,-0.22267770106435025],[112,155,67,-0.22151230581804127],[112,155,68,-0.2202387730888995],[112,155,69,-0.2188573399394529],[112,155,70,-0.21736836482219313],[112,155,71,-0.21577233017307873],[112,155,72,-0.21406984501920456],[112,155,73,-0.21226164760070698],[112,155,74,-0.21034860800675603],[112,155,75,-0.20833173082582412],[112,155,76,-0.20621215781009994],[112,155,77,-0.203991170554084],[112,155,78,-0.20167019318737944],[112,155,79,-0.19925079508164378],[112,156,64,-0.2299457386827073],[112,156,65,-0.22900691676093587],[112,156,66,-0.22795851262810785],[112,156,67,-0.2268005408490148],[112,156,68,-0.22553313335003844],[112,156,69,-0.22415654198988277],[112,156,70,-0.22267114114420172],[112,156,71,-0.22107743030417848],[112,156,72,-0.21937603668902583],[112,156,73,-0.21756771787247053],[112,156,74,-0.2156533644230777],[112,156,75,-0.21363400255860276],[112,156,76,-0.2115107968142398],[112,156,77,-0.2092850527248009],[112,156,78,-0.20695821952084714],[112,156,79,-0.20453189283872564],[112,157,64,-0.23506062807651174],[112,157,65,-0.2341317771065975],[112,157,66,-0.23309205155527002],[112,157,67,-0.23194147819414357],[112,157,68,-0.230680202246611],[112,157,69,-0.22930848996411257],[112,157,70,-0.227826731216061],[112,157,71,-0.22623544209347646],[112,157,72,-0.22453526752629893],[112,157,73,-0.22272698391444734],[112,157,74,-0.22081150177247622],[112,157,75,-0.21878986838801762],[112,157,76,-0.21666327049387846],[112,157,77,-0.21443303695383142],[112,157,78,-0.21210064146211072],[112,157,79,-0.2096677052565774],[112,158,64,-0.24002633406811735],[112,158,65,-0.23910734992998972],[112,158,66,-0.23807623159487468],[112,158,67,-0.2369330176865101],[112,158,68,-0.23567786634407906],[112,158,69,-0.23431105780396577],[112,158,70,-0.23283299699494042],[112,158,71,-0.23124421614681467],[112,158,72,-0.22954537741254588],[112,158,73,-0.22773727550385325],[112,158,74,-0.22582084034019567],[112,158,75,-0.22379713971130522],[112,158,76,-0.22166738195314006],[112,158,77,-0.21943291863729708],[112,158,78,-0.21709524727389984],[112,158,79,-0.21465601402791612],[112,159,64,-0.244840955044743],[112,159,65,-0.24393171870709407],[112,159,66,-0.24290912192979197],[112,159,67,-0.24177321483125758],[112,159,68,-0.24052416808189847],[112,159,69,-0.23916227549130542],[112,159,70,-0.23768795660863828],[112,159,71,-0.23610175933626976],[112,159,72,-0.2344043625566452],[112,159,73,-0.23259657877242812],[112,159,74,-0.2306793567597859],[112,159,75,-0.22865378423500038],[112,159,76,-0.22652109053427705],[112,159,77,-0.22428264930678343],[112,159,78,-0.22193998122093972],[112,159,79,-0.2194947566839145],[112,160,64,-0.24950274949053974],[112,160,65,-0.24860312734992818],[112,160,66,-0.24758895247952695],[112,160,67,-0.24646028613260196],[112,160,68,-0.2452173111232655],[112,160,69,-0.24386033441904065],[112,160,70,-0.24238978974640002],[112,160,71,-0.24080624020934283],[112,160,72,-0.23911038092096715],[112,160,73,-0.2373030416481161],[112,160,74,-0.23538518946893905],[112,160,75,-0.2333579314435641],[112,160,76,-0.23122251729775012],[112,160,77,-0.22898034211954943],[112,160,78,-0.22663294906900244],[112,160,79,-0.22418203210082455],[112,161,64,-0.25401014128742616],[112,161,65,-0.2531199855350341],[112,161,66,-0.2521141192548382],[112,161,67,-0.2509926144730784],[112,161,68,-0.24975566575748587],[112,161,69,-0.24840359281514224],[112,161,70,-0.24693684310310482],[112,161,71,-0.24535599445185807],[112,161,72,-0.24366175770155085],[112,161,73,-0.2418549793510948],[112,161,74,-0.23993664421997218],[112,161,75,-0.23790787812293868],[112,161,76,-0.23576995055749805],[112,161,77,-0.23352427740417858],[112,161,78,-0.2311724236396282],[112,161,79,-0.22871610606249193],[112,162,64,-0.2583617250669673],[112,162,65,-0.25748087408345444],[112,162,66,-0.2564831897642773],[112,162,67,-0.2553687545451152],[112,162,68,-0.2541377743550749],[112,162,69,-0.25279058121976106],[112,162,70,-0.25132763587691576],[112,162,71,-0.24974953040467585],[112,162,72,-0.24805699086241806],[112,162,73,-0.2462508799442581],[112,162,74,-0.24433219964505826],[112,162,75,-0.2423020939391286],[112,162,76,-0.24016185147149527],[112,162,77,-0.2379129082617667],[112,162,78,-0.23555685042061913],[112,162,79,-0.23309541687885815],[112,163,64,-0.26255627161342276],[112,163,65,-0.26168455039232374],[112,163,66,-0.2606949084727729],[112,163,67,-0.2595874383350699],[112,163,68,-0.25836235687571063],[112,163,69,-0.25702000801558134],[112,163,70,-0.2555608653205279],[112,163,71,-0.25398553463434503],[112,163,72,-0.25229475672416035],[112,163,73,-0.25048940993827784],[112,163,74,-0.24857051287633103],[112,163,75,-0.24653922707193965],[112,163,76,-0.24439685968773195],[112,163,77,-0.2421448662227761],[112,163,78,-0.23978485323243193],[112,163,79,-0.23731858106058157],[112,164,64,-0.26659273331771516],[112,164,65,-0.26572995391783083],[112,164,66,-0.2647482023120149],[112,164,67,-0.26364758065947425],[112,164,68,-0.2624283164287936],[112,164,69,-0.26109076501115946],[112,164,70,-0.2596354123457638],[112,164,71,-0.25806287755744606],[112,164,72,-0.25637391560654166],[112,164,73,-0.25456941995099824],[112,164,74,-0.2526504252206202],[112,164,75,-0.250618109903621],[112,164,76,-0.24847379904536315],[112,164,77,-0.24621896695931167],[112,164,78,-0.24385523995022285],[112,164,79,-0.2413843990495277],[112,165,64,-0.2704702496825202],[112,165,65,-0.2696162117097455],[112,165,66,-0.2686421862428351],[112,165,67,-0.2675482847536913],[112,165,68,-0.26633474488681463],[112,165,69,-0.2650019330774459],[112,165,70,-0.26355034718171155],[112,165,71,-0.26198061911882664],[112,165,72,-0.26029351752532226],[112,165,73,-0.25848995042136247],[112,165,74,-0.2565709678890097],[112,165,75,-0.254537764762617],[112,165,76,-0.2523916833312282],[112,165,77,-0.2501342160530102],[112,165,78,-0.24776700828174403],[112,165,79,-0.24529186100532607],[112,166,64,-0.2741881528783453],[112,166,65,-0.27334264399738595],[112,166,66,-0.27237616886945426],[112,166,67,-0.27128884791285135],[112,166,68,-0.2700809285513929],[112,166,69,-0.2687527878373609],[112,166,70,-0.2673049350862826],[112,166,71,-0.26573801452359713],[112,166,72,-0.264052807943171],[112,166,73,-0.2622502373777351],[112,166,74,-0.2603313677810942],[112,166,75,-0.25829740972229076],[112,166,76,-0.25614972209160636],[112,166,77,-0.2538898148184202],[112,166,78,-0.2515193516009562],[112,166,79,-0.24904015264786605],[112,167,64,-0.2777459733507557],[112,167,65,-0.27690876982717705],[112,167,66,-0.2759496581057552],[112,167,67,-0.2748687671852237],[112,167,68,-0.2736663538721521],[112,167,69,-0.272342805408584],[112,167,70,-0.27089864211133996],[112,167,71,-0.26933452002304226],[112,167,72,-0.2676512335748231],[112,167,73,-0.2658497182607883],[112,167,74,-0.2639310533240884],[112,167,75,-0.26189646445478354],[112,167,76,-0.25974732649937327],[112,167,77,-0.25748516618202577],[112,167,78,-0.25511166483752423],[112,167,79,-0.25262866115589033],[112,168,64,-0.2811434454785605],[112,168,65,-0.28031431275161633],[112,168,66,-0.2793623668933908],[112,168,67,-0.2782877451178416],[112,168,68,-0.2770907132182391],[112,168,69,-0.27577166819936283],[112,168,70,-0.27433114092121036],[112,168,71,-0.2727697987542659],[112,168,72,-0.2710884482462975],[112,168,73,-0.2692880378007526],[112,168,74,-0.2673696603666018],[112,168,75,-0.26533455613981716],[112,168,76,-0.2631841152763639],[112,168,77,-0.26091988061672566],[112,168,78,-0.2585435504219973],[112,168,79,-0.25605698112149045],[112,169,64,-0.28438051328304814],[112,169,65,-0.28355920656974065],[112,169,66,-0.2826142189718205],[112,169,67,-0.2815456955544622],[112,169,68,-0.2803539107025773],[112,169,69,-0.2790392707574406],[112,169,70,-0.27760231666467616],[112,169,71,-0.27604372663365284],[112,169,72,-0.27436431880826095],[112,169,73,-0.272565053949134],[112,169,74,-0.27064703812716917],[112,169,75,-0.2686115254285345],[112,169,76,-0.2664599206710341],[112,169,77,-0.2641937821318625],[112,169,78,-0.2618148242867727],[112,169,79,-0.2593249205606061],[112,170,64,-0.28745733618836344],[112,170,65,-0.286643601119176],[112,170,66,-0.2857053547003646],[112,170,67,-0.2846427494859607],[112,170,68,-0.28345606805894863],[112,170,69,-0.28214572567218554],[112,170,70,-0.28071227290053036],[112,170,71,-0.27915639830424566],[112,170,72,-0.2774789311036342],[112,170,73,-0.2756808438649767],[112,170,74,-0.27376325519763034],[112,170,75,-0.2717274324624639],[112,170,76,-0.2695747944915148],[112,170,77,-0.2673069143188891],[112,170,78,-0.2649255219229296],[112,170,79,-0.2624325069796096],[112,171,64,-0.2903742948328336],[112,171,65,-0.28956786811958557],[112,171,66,-0.28863613693208523],[112,171,67,-0.2875792609529635],[112,171,68,-0.2863975305717099],[112,171,69,-0.28509136952973446],[112,171,70,-0.283661337576509],[112,171,71,-0.28210813313684013],[112,171,72,-0.2804325959892451],[112,171,73,-0.27863570995549203],[112,171,74,-0.27671860560116235],[112,171,75,-0.2746825629474209],[112,171,76,-0.2725290141938643],[112,171,77,-0.2702595464524806],[112,171,78,-0.26787590449274346],[112,171,79,-0.2653799934977902],[112,172,64,-0.29313199693136394],[112,172,65,-0.29233260706763786],[112,172,66,-0.29140715693961294],[112,172,67,-0.2903558130008401],[112,172,68,-0.28917887305826173],[112,172,69,-0.2878767689212709],[112,172,70,-0.28645006906171655],[112,172,71,-0.2848994812849188],[112,172,72,-0.28322585541165024],[112,172,73,-0.28143018597116043],[112,172,74,-0.2795136149050902],[112,172,75,-0.2774774342824643],[112,172,76,-0.2753230890256364],[112,172,77,-0.27305217964721584],[112,172,78,-0.27066646499799796],[112,172,79,-0.268167865025854],[112,173,64,-0.29573128318894815],[112,173,65,-0.294938651183531],[112,173,66,-0.29401924039296645],[112,173,67,-0.2929732236870981],[112,173,68,-0.2918009059043215],[112,173,69,-0.29050272650448006],[112,173,70,-0.2890792622325946],[112,173,71,-0.2875312297934727],[112,173,72,-0.2858594885371698],[112,173,73,-0.2840650431553663],[112,173,74,-0.28214904638851623],[112,173,75,-0.28011280174395126],[112,173,76,-0.2779577662248176],[112,173,77,-0.2756855530698685],[112,173,78,-0.27329793450414486],[112,173,79,-0.2707968445004889],[112,174,64,-0.29817323326515244],[112,174,65,-0.2973870734089441],[112,174,66,-0.29647345338922393],[112,174,67,-0.29543255214104736],[112,174,68,-0.2942646811518531],[112,174,69,-0.2929702871180452],[112,174,70,-0.2915499546122874],[112,174,71,-0.29000440876156797],[112,174,72,-0.28833451793599785],[112,174,73,-0.28654129644841253],[112,174,74,-0.2846259072646319],[112,174,75,-0.28258966472455593],[112,174,76,-0.28043403727398375],[112,174,77,-0.2781606502071725],[112,174,78,-0.2757712884201663],[112,174,79,-0.27326789917484917],[112,175,64,-0.30045917178965764],[112,175,65,-0.2996791924564882],[112,175,66,-0.29877110853412736],[112,175,67,-0.297735104675803],[112,175,68,-0.2965714986397402],[112,175,69,-0.29528074394926096],[112,175,70,-0.29386343256349245],[112,175,71,-0.2923202975587361],[112,175,72,-0.29065221582046274],[112,175,73,-0.288860210746004],[112,175,74,-0.28694545495779067],[112,175,75,-0.2849092730273257],[112,175,76,-0.2827531442097657],[112,175,77,-0.28047870518913864],[112,175,78,-0.2780877528342245],[112,175,79,-0.2755822469650471],[112,176,64,-0.30259067442891163],[112,176,65,-0.30181657891071856],[112,176,66,-0.3009137710756753],[112,176,67,-0.2998824409526988],[112,176,68,-0.29872291219725744],[112,176,69,-0.29743564475482565],[112,176,70,-0.29602123753484677],[112,176,71,-0.2944804310952511],[112,176,72,-0.2928141103375058],[112,176,73,-0.29102330721225345],[112,176,74,-0.28910920343540025],[112,176,75,-0.28707313321483885],[112,176,76,-0.28491658598767267],[112,176,77,-0.2826412091679841],[112,176,78,-0.2802488109051542],[112,176,79,-0.2777413628527031],[112,177,64,-0.30456957400376505],[112,177,65,-0.30380106138057716],[112,177,66,-0.30290326508957854],[112,177,67,-0.3018763801979659],[112,177,68,-0.300720735890207],[112,177,69,-0.29943679813467916],[112,177,70,-0.29802517236072257],[112,177,71,-0.2964866061461576],[112,177,72,-0.2948219919152344],[112,177,73,-0.2930323696470807],[112,177,74,-0.29111892959450325],[112,177,75,-0.28908301501332867],[112,177,76,-0.28692612490215286],[112,177,77,-0.28464991675253737],[112,177,78,-0.2822562093096673],[112,177,79,-0.27974698534342857],[112,178,64,-0.3063979666581613],[112,178,65,-0.3056347327033351],[112,178,66,-0.3047416797166421],[112,178,67,-0.30371900747176017],[112,178,68,-0.30256705031979925],[112,178,69,-0.3012862798589585],[112,178,70,-0.2998773076145035],[112,178,71,-0.2983408877291235],[112,178,72,-0.2966779196636322],[112,178,73,-0.29488945090807706],[112,178,74,-0.29297667970311747],[112,178,75,-0.29094095777184803],[112,178,76,-0.2887837930619511],[112,178,77,-0.2865068524982005],[112,178,78,-0.2841119647453424],[112,178,79,-0.281601122981307],[112,179,64,-0.3080782180789401],[112,179,65,-0.3073199562000951],[112,179,66,-0.3064313754521426],[112,179,67,-0.30541267998958943],[112,179,68,-0.3042642089743274],[112,179,69,-0.30298643924813085],[112,179,70,-0.30157998801539576],[112,179,71,-0.30004561553617615],[112,179,72,-0.29838422782947893],[112,179,73,-0.2965968793868927],[112,179,74,-0.2946847758963952],[112,179,75,-0.2926492769765314],[112,179,76,-0.29049189892083416],[112,179,77,-0.2882143174525157],[112,179,78,-0.28581837048945624],[112,179,79,-0.28330606091944044],[112,180,64,-0.30961296976661046],[112,180,65,-0.3088593719827152],[112,180,66,-0.30797499048705057],[112,180,67,-0.30696003349600565],[112,180,68,-0.30581484463350206],[112,180,69,-0.3045399056061633],[112,180,70,-0.3031358388886435],[112,180,71,-0.3016034104191829],[112,180,72,-0.29994353230534454],[112,180,73,-0.29815726554000677],[112,180,74,-0.2962458227274639],[112,180,75,-0.2942105708198173],[112,180,76,-0.29205303386353454],[112,180,77,-0.2897748957562064],[112,180,78,-0.2873780030135209],[112,180,79,-0.28486436754641287],[112,181,64,-0.31100514535720236],[112,181,65,-0.31025590331225295],[112,181,66,-0.30937544710120857],[112,181,67,-0.30836398869065895],[112,181,68,-0.3072218758255475],[112,181,69,-0.30594959470683136],[112,181,70,-0.3045477726792384],[112,181,71,-0.30301718092917584],[112,181,72,-0.3013587371927514],[112,181,73,-0.299573508473983],[112,181,74,-0.2976627137730433],[112,181,75,-0.29562772682472727],[112,181,76,-0.2934700788470205],[112,181,77,-0.29119146129978857],[112,181,78,-0.2887937286536215],[112,181,79,-0.28627890116877963],[112,182,64,-0.3122579569952043],[112,182,65,-0.3115127630089458],[112,182,66,-0.31063595810847144],[112,182,67,-0.309627757706733],[112,182,68,-0.3084885133370675],[112,182,69,-0.30721871533317824],[112,182,70,-0.3058189955191475],[112,182,71,-0.30429012990953463],[112,182,72,-0.3026330414195304],[112,182,73,-0.3008488025852255],[112,182,74,-0.29893863829385947],[112,182,75,-0.29690392852422387],[112,182,76,-0.29474621109710175],[112,182,77,-0.29246718443576747],[112,182,78,-0.2900687103365762],[112,182,79,-0.2875528167495899],[112,183,64,-0.3133749117574891],[112,183,65,-0.31263345991362745],[112,183,66,-0.3117600333537156],[112,183,67,-0.3107548506416554],[112,183,68,-0.30961826677559057],[112,183,69,-0.30835077587003057],[112,183,70,-0.30695301384795304],[112,183,71,-0.3054257611429312],[112,183,72,-0.30376994541125824],[112,183,73,-0.301986644254132],[112,183,74,-0.3000770879497553],[112,183,75,-0.2980426621955382],[112,183,76,-0.29588491086027413],[112,183,77,-0.29360553874632134],[112,183,78,-0.2912064143618136],[112,183,79,-0.2886895727028488],[112,184,64,-0.31435981812832825],[112,184,65,-0.31362180540067697],[112,184,66,-0.31275148626180727],[112,184,67,-0.3117490821401867],[112,184,68,-0.31061495118488214],[112,184,69,-0.3093495909496595],[112,184,70,-0.30795364108700596],[112,184,71,-0.3064278860521268],[112,184,72,-0.3047732578168846],[112,184,73,-0.30299083859374487],[112,184,74,-0.30108186356958944],[112,184,75,-0.2990477236495719],[112,184,76,-0.29688996821089997],[112,184,77,-0.2946103078665685],[112,184,78,-0.29221061723906594],[112,184,79,-0.2896929377440114],[112,185,64,-0.31521679252544366],[112,185,65,-0.31448191994245556],[112,185,66,-0.3136144404384945],[112,185,67,-0.3126145780298397],[112,185,68,-0.3114826937129862],[112,185,69,-0.3102192881505499],[112,185,70,-0.30882500436704385],[112,185,71,-0.30730063045458567],[112,185,72,-0.3056471022884948],[112,185,73,-0.30386550625285325],[112,185,74,-0.3019570819758842],[112,185,75,-0.29992322507532454],[112,185,76,-0.29776548991367857],[112,185,77,-0.2954855923633719],[112,185,78,-0.29308541258183474],[112,185,79,-0.290566997796466],[112,186,64,-0.31595026587711783],[112,186,65,-0.31521823972524676],[112,186,66,-0.3143533363232255],[112,186,67,-0.3133557820086418],[112,186,68,-0.31222594033300544],[112,186,69,-0.31096431474928776],[112,186,70,-0.3095715513092919],[112,186,71,-0.3080484413709097],[112,186,72,-0.30639592431522933],[112,186,73,-0.3046150902735608],[112,186,74,-0.3027071828642359],[112,186,75,-0.30067360193936354],[112,186,76,-0.29851590634141956],[112,186,77,-0.296235816669697],[112,186,78,-0.2938352180566409],[112,186,79,-0.2913161629540223],[112,187,64,-0.3165649902503279],[112,187,65,-0.31583552331667075],[112,187,66,-0.31497293789387437],[112,187,67,-0.3139774623852165],[112,187,68,-0.3128494626165952],[112,187,69,-0.31158944452553905],[112,187,70,-0.31019805686001345],[112,187,71,-0.3086760938870735],[112,187,72,-0.3070244981113286],[112,187,73,-0.3052443630032907],[112,187,74,-0.30333693573745524],[112,187,75,-0.3013036199403024],[112,187,76,-0.29914597844809443],[112,187,77,-0.29686573607449385],[112,187,78,-0.2944647823880313],[112,187,79,-0.2919451744993724],[112,188,64,-0.3170660455299644],[112,188,65,-0.3163388583846266],[112,188,66,-0.3154783394234273],[112,188,67,-0.3144847188712373],[112,188,68,-0.31335836456022403],[112,188,69,-0.31209978462017296],[112,188,70,-0.3107096301785722],[112,188,71,-0.30918869807051097],[112,188,72,-0.30753793355835746],[112,188,73,-0.30575843306128525],[112,188,74,-0.3038514468944994],[112,188,75,-0.30181838201835276],[112,188,76,-0.2996608047972187],[112,188,77,-0.2973804437681582],[112,188,78,-0.2949791924193995],[112,188,79,-0.2924591119785829],[112,189,64,-0.3174588461490726],[112,189,65,-0.31673366846770823],[112,189,66,-0.3158749722885661],[112,189,67,-0.3148829894261924],[112,189,68,-0.31375808946414596],[112,189,69,-0.3125007824464776],[112,189,70,-0.3111117215789422],[112,189,71,-0.3095917059399981],[112,189,72,-0.30794168320155435],[112,189,73,-0.30616275235953727],[112,189,74,-0.3042561664741329],[112,189,75,-0.30222333541988156],[112,189,76,-0.30006582864550857],[112,189,77,-0.297785377943517],[112,189,78,-0.2953838802295604],[112,189,79,-0.29286340033155955],[112,190,64,-0.3177491478701526],[112,190,65,-0.31702571979712246],[112,190,66,-0.3161686118301905],[112,190,67,-0.315178057154501],[112,190,68,-0.314054426864113],[112,190,69,-0.31279823265449114],[112,190,70,-0.31141012952470004],[112,190,71,-0.309890918489361],[112,190,72,-0.3082415493003343],[112,190,73,-0.3064631231781937],[112,190,74,-0.3045568955533511],[112,190,75,-0.30252427881701305],[112,190,76,-0.3003668450818435],[112,190,77,-0.2980863289523632],[112,190,78,-0.29568463030511183],[112,190,79,-0.29316381707851813],[112,191,64,-0.31794305461751027],[112,191,65,-0.31722112817010983],[112,191,66,-0.31636538426586913],[112,191,67,-0.3153760572549691],[112,191,68,-0.3142535195158275],[112,191,69,-0.3129982841484563],[112,191,70,-0.3116110076774986],[112,191,71,-0.3100924927650114],[112,191,72,-0.3084436909329483],[112,191,73,-0.30666570529541715],[112,191,74,-0.3047597933005649],[112,191,75,-0.30272736948227097],[112,191,76,-0.3005700082215298],[112,191,77,-0.2982894465175483],[112,191,78,-0.2958875867685796],[112,191,79,-0.29336649956245253],[112,192,64,-0.31804702536065166],[112,192,65,-0.3173263658748512],[112,192,66,-0.31647177365420565],[112,192,67,-0.3154834840225772],[112,192,68,-0.31436187043212227],[112,192,69,-0.31310744715737526],[112,192,70,-0.3117208719990049],[112,192,71,-0.3102029489972893],[112,192,72,-0.3085546311552766],[112,192,73,-0.30677702317170563],[112,192,74,-0.3048713841835311],[112,192,75,-0.30283913051824285],[112,192,76,-0.30068183845585816],[112,192,77,-0.2984012470006059],[112,192,78,-0.29599926066233495],[112,192,79,-0.2934779522475981],[112,193,64,-0.3180678810487323],[112,193,65,-0.3173482686668798],[112,193,66,-0.3164946289111443],[112,193,67,-0.3155071979026174],[112,193,68,-0.31438634997287895],[112,193,69,-0.31313260035868695],[112,193,70,-0.31174660790632114],[112,193,71,-0.31022917778563597],[112,193,72,-0.3085812642137826],[112,193,73,-0.3068039731886737],[112,193,74,-0.3048985652320456],[112,193,75,-0.3028664581422926],[112,193,76,-0.30070922975696324],[112,193,77,-0.29842862072493503],[112,193,78,-0.2960265372882971],[112,193,79,-0.29350505407389416],[112,194,64,-0.3180128115960529],[112,194,65,-0.31729404279698614],[112,194,66,-0.31644117087819357],[112,194,67,-0.3154544325971592],[112,194,68,-0.31433420298768255],[112,194,69,-0.31308099805505407],[112,194,70,-0.31169547748087756],[112,194,71,-0.31017844733758304],[112,194,72,-0.30853086281260633],[112,194,73,-0.30675383094229336],[112,194,74,-0.3048486133553898],[112,194,75,-0.3028166290262989],[112,194,76,-0.3006594570379807],[112,194,77,-0.2983788393545235],[112,194,78,-0.29597668360341234],[112,194,79,-0.29345506586744285],[112,195,64,-0.31788938291860835],[112,195,65,-0.31717127209062346],[112,195,66,-0.31631899944258424],[112,195,67,-0.31533280222386795],[112,195,68,-0.31421305601121186],[112,195,69,-0.31296027740426957],[112,195,70,-0.31157512673080434],[112,195,71,-0.3100584107615646],[112,195,72,-0.308411085434818],[112,195,73,-0.3066342585905991],[112,195,74,-0.30472919271453647],[112,195,75,-0.3026973076914382],[112,195,76,-0.3005401835685071],[112,195,77,-0.29825956332822523],[112,195,78,-0.2958573556709193],[112,195,79,-0.2933356378069695],[112,196,64,-0.3177055440216735],[112,196,65,-0.3169879250787959],[112,196,66,-0.3161361007093375],[112,196,67,-0.3151503085271411],[112,196,68,-0.31403092451135206],[112,196,69,-0.3127784657022592],[112,196,70,-0.3113935929067657],[112,196,71,-0.30987711341353663],[112,196,72,-0.30822998371779653],[112,196,73,-0.3064533122558374],[112,196,74,-0.30454836214909564],[112,196,75,-0.3025165539579836],[112,196,76,-0.30035946844534445],[112,196,77,-0.2980788493495662],[112,196,78,-0.2956766061673768],[112,196,79,-0.2931548169462671],[112,197,64,-0.31746963413845797],[112,197,65,-0.3167523621804651],[112,197,66,-0.31590085422528225],[112,197,67,-0.31491534814160926],[112,197,68,-0.31379622019006315],[112,197,69,-0.31254398771922176],[112,197,70,-0.3111593118712892],[112,197,71,-0.3096430002974365],[112,197,72,-0.30799600988278586],[112,197,73,-0.3062194494810997],[112,197,74,-0.30431458265903966],[112,197,75,-0.30228283045016524],[112,197,76,-0.30012577411856334],[112,197,77,-0.29784515793212385],[112,197,78,-0.295442891945494],[112,197,79,-0.2929210547926584],[112,198,64,-0.3171903899197931],[112,198,65,-0.3164733429364337],[112,198,66,-0.31562204025498075],[112,198,67,-0.31463671990795705],[112,198,68,-0.3135177583369654],[112,198,69,-0.31226567308886266],[112,198,70,-0.3108811255215508],[112,198,71,-0.3093649235194449],[112,198,72,-0.3077180242185743],[112,198,73,-0.305941536741396],[112,198,74,-0.3040367249411636],[112,198,75,-0.3020050101560432],[112,198,76,-0.29984797397284957],[112,198,77,-0.29756736100043013],[112,198,78,-0.2951650816527226],[112,198,79,-0.2926432149414373],[112,199,64,-0.3168769526748749],[112,199,65,-0.31616003329473585],[112,199,66,-0.3153088471085874],[112,199,67,-0.3143236322410904],[112,199,68,-0.3132047652356673],[112,199,69,-0.31195276375075087],[112,199,70,-0.31056828926564783],[112,199,71,-0.30905214979607565],[112,199,72,-0.3074053026193372],[112,199,73,-0.30562885700919495],[112,199,74,-0.30372407698031156],[112,199,75,-0.30169238404242604],[112,199,76,-0.29953535996415404],[112,199,77,-0.2972547495464327],[112,199,78,-0.294852463405636],[112,199,79,-0.29233058076631646],[112,200,64,-0.3165388756630597],[112,200,65,-0.31582201294752266],[112,200,66,-0.31497087852163774],[112,200,67,-0.31398571055064606],[112,200,68,-0.31286688562282916],[112,200,69,-0.31161492144578795],[112,200,70,-0.3102304795523396],[112,200,71,-0.3087143680160874],[112,200,72,-0.3070675441766212],[112,200,73,-0.30529111737442816],[112,200,74,-0.30338635169535655],[112,200,75,-0.30135466872482397],[112,200,76,-0.29919765031164547],[112,200,77,-0.2969170413415023],[112,200,78,-0.2945147525200883],[112,200,79,-0.29199286316587225],[112,201,64,-0.3161861314366988],[112,201,65,-0.3154692827194384],[112,201,66,-0.31461816108675256],[112,201,67,-0.3136330047138306],[112,201,68,-0.3125141901999542],[112,201,69,-0.31126223526478414],[112,201,70,-0.3098778014542659],[112,201,71,-0.3083616968562044],[112,201,72,-0.30671487882547577],[112,201,73,-0.3049384567189436],[112,201,74,-0.3030336946399296],[112,201,75,-0.30100201419243056],[112,201,76,-0.29884499724495095],[112,201,77,-0.2965643887039807],[112,201,78,-0.2941620992971462],[112,201,79,-0.29164020836598115],[112,202,64,-0.3158284940633075],[112,202,65,-0.3151116429950095],[112,202,66,-0.31426051907969577],[112,202,67,-0.3132753604929117],[112,202,68,-0.3121565438342113],[112,202,69,-0.3109045868234438],[112,202,70,-0.30952015100665553],[112,202,71,-0.3080040444716635],[112,202,72,-0.3063572245732653],[112,202,73,-0.3045808006681492],[112,202,74,-0.3026760368593674],[112,202,75,-0.3006443547505473],[112,202,76,-0.2984873362097217],[112,202,77,-0.2962067261428061],[112,202,78,-0.2938044352767447],[112,202,79,-0.2912825429522802],[112,203,64,-0.31546671598196574],[112,203,65,-0.3147498167173145],[112,203,66,-0.31389864635562625],[112,203,67,-0.31291344307448665],[112,203,68,-0.3117945834735597],[112,203,69,-0.310542585270829],[112,203,70,-0.3091581100084547],[112,203,71,-0.30764196576829916],[112,203,72,-0.305995109897091],[112,203,73,-0.3042186517412879],[112,203,74,-0.3023138553915038],[112,203,75,-0.3002821424366703],[112,203,76,-0.29812509472782167],[112,203,77,-0.2958444571515224],[112,203,78,-0.2934421404129649],[112,203,79,-0.2909202238286914],[112,204,64,-0.315094589946307],[112,204,65,-0.31437752524045726],[112,204,66,-0.3135261954429739],[112,204,67,-0.3125408387385811],[112,204,68,-0.3114218317274572],[112,204,69,-0.31016969212131695],[112,204,70,-0.3087850814491101],[112,204,71,-0.3072688077723892],[112,204,72,-0.3056218284103108],[112,204,73,-0.3038452526743406],[112,204,74,-0.30194034461251384],[112,204,75,-0.29990852576343774],[112,204,76,-0.29775137791990847],[112,204,77,-0.295470645902175],[112,204,78,-0.2930682403408704],[112,204,79,-0.29054624046956545],[112,205,64,-0.3147060341711061],[112,205,65,-0.31398861742753814],[112,205,66,-0.3131369483673452],[112,205,67,-0.3121512651907502],[112,205,68,-0.3110319444993286],[112,205,69,-0.309779503991755],[112,205,70,-0.3083946051691646],[112,205,71,-0.3068780560501818],[112,205,72,-0.3052308138955795],[112,205,73,-0.3034539879426399],[112,205,74,-0.30154884214906974],[112,205,75,-0.299516797946653],[112,205,76,-0.2973594370045194],[112,205,77,-0.29507850400205327],[112,205,78,-0.2926759094114715],[112,205,79,-0.29015373229001906],[112,206,64,-0.3142952758465596],[112,206,65,-0.3135772542774714],[112,206,66,-0.31272500233358236],[112,206,67,-0.3117387582422835],[112,206,68,-0.310618898608083],[112,206,69,-0.30936594110777793],[112,206,70,-0.30798054719523515],[112,206,71,-0.3064635248158334],[112,206,72,-0.3048158311305378],[112,206,73,-0.30303857524966626],[112,206,74,-0.30113302097620975],[112,206,75,-0.2991005895588862],[112,206,76,-0.2969428624548044],[112,206,77,-0.2946615841017671],[112,206,78,-0.29225866470023676],[112,206,79,-0.28973618300491766],[112,207,64,-0.31385684465177255],[112,207,65,-0.3131379023782983],[112,207,66,-0.31228476312117504],[112,207,67,-0.31129766514998347],[112,207,68,-0.31017698507452185],[112,207,69,-0.30892324053909737],[112,207,70,-0.3075370929264213],[112,207,71,-0.30601935007116243],[112,207,72,-0.30437096898312177],[112,207,73,-0.3025930585800989],[112,207,74,-0.30068688243030217],[112,207,75,-0.2986538615044889],[112,207,76,-0.2964955769377098],[112,207,77,-0.29421377280068495],[112,207,78,-0.2918103588808396],[112,207,79,-0.2892874134729465],[112,208,64,-0.31338556632385617],[112,208,65,-0.31266532741657893],[112,208,66,-0.31181093853619846],[112,208,67,-0.31082263801290244],[112,208,68,-0.30970080246511555],[112,208,69,-0.30844594949254955],[112,208,70,-0.30705874037885106],[112,208,71,-0.30553998280389727],[112,208,72,-0.30389063356570567],[112,208,73,-0.3021118013120264],[112,208,74,-0.3002047492814721],[112,208,75,-0.29817089805436725],[112,208,76,-0.29601182831319406],[112,208,77,-0.2937292836126637],[112,208,78,-0.29132517315943607],[112,208,79,-0.2888015746014402],[112,209,64,-0.31287655628263233],[112,209,65,-0.31215458774285276],[112,209,66,-0.3112985319197694],[112,209,67,-0.3103086272260236],[112,209,68,-0.30918525029313493],[112,209,69,-0.3079289186628966],[112,209,70,-0.3065402934883521],[112,209,71,-0.30502018224441185],[112,209,72,-0.3033695414480734],[112,209,73,-0.3015894793883104],[112,209,74,-0.2996812588654918],[112,209,75,-0.2976462999405052],[112,209,76,-0.2954861826934695],[112,209,77,-0.2932026499920597],[112,209,78,-0.2907976102694694],[112,209,79,-0.2882731403119647],[112,210,64,-0.3123252133109279],[112,210,65,-0.31160102799315514],[112,210,66,-0.3107428357130033],[112,210,67,-0.30975087499087317],[112,210,68,-0.30862552247712927],[112,210,69,-0.3073672956413649],[112,210,70,-0.30597685547123865],[112,210,71,-0.30445500918093293],[112,210,72,-0.30280271292920413],[112,210,73,-0.30102107454708715],[112,210,74,-0.29911135627511387],[112,210,75,-0.2970749775102245],[112,210,76,-0.2949135175622528],[112,210,77,-0.29262871842000804],[112,210,78,-0.2902224875269829],[112,210,79,-0.287696900566635],[112,211,64,-0.31172721329048414],[112,211,65,-0.31100027276661646],[112,211,66,-0.31013942507850134],[112,211,67,-0.30914490888309376],[112,211,68,-0.30801710085677014],[112,211,69,-0.30675651838194395],[112,211,70,-0.3053638222432351],[112,211,71,-0.30383981933324367],[112,211,72,-0.30218546536789614],[112,211,73,-0.3004018676114302],[112,211,74,-0.29849028761087437],[112,211,75,-0.2964521439402039],[112,211,76,-0.29428901495405124],[112,211,77,-0.2920026415509971],[112,211,78,-0.28959492994646874],[112,211,79,-0.2870679544551955],[112,212,64,-0.3110785029934724],[112,212,65,-0.3103482203591288],[112,212,66,-0.30948415157835407],[112,212,67,-0.30848653547696037],[112,212,68,-0.3073557487660554],[112,212,69,-0.306092308725439],[112,212,70,-0.3046968758965295],[112,212,71,-0.30317025678487575],[112,212,72,-0.30151340657221837],[112,212,73,-0.2997274318381683],[112,212,74,-0.2978135932913587],[112,212,75,-0.29577330851025063],[112,212,76,-0.29360815469347323],[112,212,77,-0.2913198714197224],[112,212,78,-0.2889103634172433],[112,212,79,-0.28638170334285074],[112,213,64,-0.3103752939295966],[112,213,65,-0.3096410365530672],[112,213,66,-0.30877313690864416],[112,213,67,-0.3077718340268272],[112,213,68,-0.30663750466385387],[112,213,69,-0.30537066598125806],[112,213,70,-0.3039719782349357],[112,213,71,-0.3024422474737689],[112,213,72,-0.300782428247773],[112,213,73,-0.29899362632583626],[112,213,74,-0.29707710142290567],[112,213,75,-0.29503426993680326],[112,213,76,-0.29286670769454737],[112,213,77,-0.2905761527082089],[112,213,78,-0.28816450794032644],[112,213,79,-0.2856338440788311],[112,214,64,-0.30961405624881666],[112,214,65,-0.30887514846309705],[112,214,66,-0.308002766690484],[112,214,67,-0.3069971502055383],[112,214,68,-0.30585867582182225],[112,214,69,-0.30458786056696496],[112,214,70,-0.30318536436720045],[112,214,71,-0.3016519927414336],[112,214,72,-0.2999886995048011],[112,214,73,-0.29819658948179306],[112,214,74,-0.29627692122879057],[112,214,75,-0.2942311097662025],[112,214,76,-0.2920607293200793],[112,214,77,-0.2897675160732298],[112,214,78,-0.2873533709258651],[112,214,79,-0.28482036226572505],[112,215,64,-0.3087915126996643],[112,215,65,-0.30804723843803694],[112,215,66,-0.3071696843175571],[112,215,67,-0.3061590898997687],[112,215,68,-0.3050158320696684],[112,215,69,-0.3037404277055731],[112,215,70,-0.30233353635842464],[112,215,71,-0.3007959629405874],[112,215,72,-0.2991286604241047],[112,215,73,-0.29733273254848247],[112,215,74,-0.2954094365378518],[112,215,75,-0.2933601858276965],[112,215,76,-0.2911865528010229],[112,215,77,-0.2888902715339948],[112,215,78,-0.28647324055106504],[112,215,79,-0.28393752558954954],[112,216,64,-0.30790463264317613],[112,216,65,-0.3071542380188058],[112,216,66,-0.30627078486018766],[112,216,67,-0.3052545130623271],[112,216,68,-0.3041057995977847],[112,216,69,-0.30282516118060177],[112,216,70,-0.30141325693962606],[112,216,71,-0.2998708911012905],[112,216,72,-0.2981990156818082],[112,216,73,-0.2963987331888551],[112,216,74,-0.29447129933259275],[112,216,75,-0.2924181257462132],[112,216,76,-0.2902407827158865],[112,216,77,-0.28794100192013594],[112,216,78,-0.28552067917866375],[112,216,79,-0.2829818772105843],[112,217,64,-0.30695062612240676],[112,217,65,-0.30619332195241533],[112,217,66,-0.30530320902590447],[112,217,67,-0.30428052762138014],[112,217,68,-0.3031256548172152],[112,217,69,-0.30183910714885975],[112,217,70,-0.30042154327540305],[112,217,71,-0.29887376665554166],[112,217,72,-0.29719672823292165],[112,217,73,-0.2953915291309188],[112,217,74,-0.29345942335671515],[112,217,75,-0.2914018205148523],[112,217,76,-0.28922028853014004],[112,217,77,-0.28691655637994706],[112,217,78,-0.2844925168358985],[112,217,79,-0.2819502292149323],[112,218,64,-0.30592693798756476],[112,218,65,-0.30516190226204853],[112,218,66,-0.30426433717654044],[112,218,67,-0.30323448344663895],[112,218,68,-0.3020727182769968],[112,218,69,-0.30077955801099965],[112,218,70,-0.29935566078974574],[112,218,71,-0.2978018292203807],[112,218,72,-0.2961190130537532],[112,218,73,-0.2943083118714601],[112,218,74,-0.2923709777821327],[112,218,75,-0.29030841812715147],[112,218,76,-0.28812219819566276],[112,218,77,-0.28581404394892695],[112,218,78,-0.28338584475402095],[112,218,79,-0.28083965612684914],[112,219,64,-0.3048312420767566],[112,219,65,-0.3040576223732139],[112,219,66,-0.30315178340184945],[112,219,67,-0.30211396637249777],[112,219,68,-0.300944548638864],[112,219,69,-0.29964404633982555],[112,219,70,-0.2982131170499782],[112,219,71,-0.29665256243947835],[112,219,72,-0.2949633309431494],[112,219,73,-0.29314652043891987],[112,219,74,-0.2912033809354455],[112,219,75,-0.2891353172691017],[112,219,76,-0.28694389181022195],[112,219,77,-0.28463082717860777],[112,219,78,-0.28219800896833813],[112,219,79,-0.2796474884818282],[112,220,64,-0.30366143545230695],[112,220,65,-0.3028783512959382],[112,220,66,-0.3019633896496149],[112,220,67,-0.30091679227808876],[112,220,68,-0.29973893670927965],[112,220,69,-0.298430338866323],[112,220,70,-0.29699165570879704],[112,220,71,-0.2954236878831846],[112,220,72,-0.2937273823825348],[112,220,73,-0.29190383521539187],[112,220,74,-0.2899542940838449],[112,220,75,-0.28788016107088477],[112,220,76,-0.28568299533694197],[112,220,77,-0.2833645158256338],[112,220,78,-0.2809266039787469],[112,220,79,-0.2783713064604041],[112,221,64,-0.30241563269270555],[112,221,65,-0.301622177863055],[112,221,66,-0.3006972199122956],[112,221,67,-0.2996410012243059],[112,221,68,-0.29845389952884993],[112,221,69,-0.29713643052346583],[112,221,70,-0.2956892505044637],[112,221,71,-0.294113159007087],[112,221,72,-0.29240910145480414],[112,221,73,-0.29057817181779755],[112,221,74,-0.28862161528050256],[112,221,75,-0.28654083091838445],[112,221,76,-0.2843373743838252],[112,221,77,-0.28201296060115044],[112,221,78,-0.27956946647082015],[112,221,79,-0.27700893358273515],[112,222,64,-0.3010921602401653],[112,222,65,-0.3002874050245643],[112,222,66,-0.2993515544701957],[112,222,67,-0.29828485164778107],[112,222,68,-0.29708767451909834],[112,222,69,-0.2957605385477766],[112,222,70,-0.29430409931912715],[112,222,71,-0.29271915516905855],[112,222,72,-0.29100664982204494],[112,222,73,-0.2891676750382163],[112,222,74,-0.28720347326942197],[112,222,75,-0.285115440324453],[112,222,76,-0.28290512804330104],[112,222,77,-0.2805742469804766],[112,222,78,-0.2781246690974182],[112,222,79,-0.275558430463938],[112,223,64,-0.29968955080374715],[112,223,65,-0.2988725441980292],[112,223,66,-0.2979248841911134],[112,223,67,-0.29684681461176954],[112,223,68,-0.2956387136865629],[112,223,69,-0.29430109663860293],[112,223,70,-0.29283461829523816],[112,223,71,-0.2912400757047563],[112,223,72,-0.28951841076205165],[112,223,73,-0.2876707128433319],[112,223,74,-0.2856982214497127],[112,223,75,-0.28360232885988923],[112,223,76,-0.28138458279175915],[112,223,77,-0.2790466890730233],[112,223,78,-0.2765905143207905],[112,223,79,-0.27401808863013744],[112,224,64,-0.29820653781812134],[112,224,65,-0.29737630967507056],[112,224,66,-0.2964159048865386],[112,224,67,-0.295325568114011],[112,224,68,-0.29410567788428277],[112,224,69,-0.29275674917517736],[112,224,70,-0.2912794360101222],[112,224,71,-0.289674534061637],[112,224,72,-0.28794298326370005],[112,224,73,-0.28608587043306166],[112,224,74,-0.28410443189935597],[112,224,75,-0.28200005614419854],[112,224,76,-0.27977428644914304],[112,224,77,-0.2774288235525275],[112,224,78,-0.2749655283152316],[112,224,79,-0.2723864243952985],[112,225,64,-0.29664204995793597],[112,225,65,-0.2957976130839365],[112,225,66,-0.2948235117243705],[112,225,67,-0.29371999145154337],[112,225,68,-0.2924874311306431],[112,225,69,-0.29112634549143],[112,225,70,-0.2896373877086832],[112,225,71,-0.2880213519914624],[112,225,72,-0.2862791761811496],[112,225,73,-0.28441194435834016],[112,225,74,-0.28242088945843247],[112,225,75,-0.28030739589610765],[112,225,76,-0.27807300219856823],[112,225,77,-0.27571940364756997],[112,225,78,-0.27324845493026517],[112,225,79,-0.2706621727988139],[112,226,64,-0.2949952057077494],[112,226,65,-0.2941355579080982],[112,226,66,-0.29314679369811025],[112,226,67,-0.2920291596424177],[112,226,68,-0.29078303498553826],[112,226,69,-0.28940893420851166],[112,226,70,-0.2879075095941924],[112,226,71,-0.28627955380124825],[112,226,72,-0.2845260024468347],[112,226,73,-0.2826479366980146],[112,226,74,-0.28064658587176705],[112,226,75,-0.27852333004378427],[112,226,76,-0.27627970266592194],[112,226,77,-0.27391739319233255],[112,226,78,-0.27143824971431085],[112,226,79,-0.26884428160379703],[112,227,64,-0.29326530798760353],[112,227,65,-0.2923894340609553],[112,227,66,-0.2913850281526079],[112,227,67,-0.2902523379043994],[112,227,68,-0.2889917429839288],[112,227,69,-0.28760375762510626],[112,227,70,-0.2860890331772433],[112,227,71,-0.28444836066273727],[112,227,72,-0.2826826733433184],[112,227,73,-0.28079304929492677],[112,227,74,-0.2787807139910692],[112,227,75,-0.2766470428948473],[112,227,76,-0.27439356405952664],[112,227,77,-0.27202196073767737],[112,227,78,-0.2695340739989116],[112,227,79,-0.26693190535616695],[112,228,64,-0.2914518388342049],[112,228,65,-0.2905587125166108],[112,228,66,-0.2895376753663298],[112,228,67,-0.2883889761906161],[112,228,68,-0.2871129951267595],[112,228,69,-0.285710246165496],[112,228,70,-0.2841813796828353],[112,228,71,-0.2825271849803618],[112,228,72,-0.28074859283397724],[112,228,73,-0.27884667805115293],[112,228,74,-0.2768226620365396],[112,228,75,-0.27467791536612796],[112,228,76,-0.2724139603698298],[112,228,77,-0.2700324737225096],[112,228,78,-0.2675352890434902],[112,228,79,-0.26492439950448576],[112,229,64,-0.28955445413766356],[112,229,65,-0.2886430399966703],[112,229,66,-0.2876043731900939],[112,229,67,-0.28643870378210523],[112,229,68,-0.28514641242918626],[112,229,69,-0.28372801288533145],[112,229,70,-0.2821841545155386],[112,229,71,-0.28051562481764347],[112,229,72,-0.2787233519524672],[112,229,73,-0.27680840728234524],[112,229,74,-0.27477200791788214],[112,229,75,-0.2726155192731323],[112,229,76,-0.27034045762906866],[112,229,77,-0.2679484927053746],[112,229,78,-0.26544145024057997],[112,229,79,-0.26282131458049707],[112,230,64,-0.2875729784338784],[112,230,65,-0.28664223371315445],[112,230,66,-0.2855849317423663],[112,230,67,-0.2844013239373516],[112,230,68,-0.28309179152620534],[112,230,69,-0.28165684803519575],[112,230,70,-0.28009714178282863],[112,230,71,-0.27841345838212306],[112,230,72,-0.2766067232510584],[112,230,73,-0.2746780041312681],[112,230,74,-0.27262851361482254],[112,230,75,-0.2704596116792991],[112,230,76,-0.26817280823100387],[112,230,77,-0.26576976565638044],[112,230,78,-0.2632523013816245],[112,230,79,-0.2606223904404614],[112,231,64,-0.28550739975253125],[112,231,65,-0.2845562761674819],[112,231,66,-0.283479328161078],[112,231,67,-0.28227680859877347],[112,231,68,-0.2809490993356434],[112,231,69,-0.2794967136819234],[112,231,70,-0.2779202988765528],[112,231,71,-0.2762206385687809],[112,231,72,-0.2743986553078025],[112,231,73,-0.2724554130404938],[112,231,74,-0.27039211961709086],[112,231,75,-0.268210129305011],[112,231,76,-0.2659109453106817],[112,231,77,-0.2634962223094085],[112,231,78,-0.2609677689833063],[112,231,79,-0.2583275505672459],[112,232,64,-0.28335786452063094],[112,232,65,-0.2823853100054705],[112,232,66,-0.2812877014119035],[112,232,67,-0.2800652931561002],[112,232,68,-0.27871846777844833],[112,232,69,-0.2772477383876165],[112,232,70,-0.27565375111246826],[112,232,71,-0.2739372875618866],[112,232,72,-0.27209926729247214],[112,232,73,-0.2701407502841897],[112,232,74,-0.26806293942380266],[112,232,75,-0.26586718299629764],[112,232,76,-0.2635549771841619],[112,232,77,-0.26112796857454723],[112,232,78,-0.258587956674342],[112,232,79,-0.2559368964331069],[112,233,64,-0.2811246725217127],[112,233,65,-0.2801296329284574],[112,233,66,-0.27901034715310724],[112,233,67,-0.2777670712667478],[112,233,68,-0.2764001885563917],[112,233,69,-0.27491021194646104],[112,233,70,-0.27329778642795877],[112,233,71,-0.2715636914953866],[112,233,72,-0.26970884359137726],[112,233,73,-0.26773429855911046],[112,233,74,-0.2656412541023555],[112,233,75,-0.2634310522533426],[112,233,76,-0.26110518184832443],[112,233,77,-0.25866528101086106],[112,233,78,-0.25611313964285376],[112,233,79,-0.25345070192327634],[112,234,64,-0.27880827191064306],[112,234,65,-0.2777896926604897],[112,234,66,-0.27664771265690835],[112,234,67,-0.275382589733141],[112,234,68,-0.2739947079871281],[112,234,69,-0.27248458017929955],[112,234,70,-0.27085285013788163],[112,234,71,-0.2691002951717818],[112,234,72,-0.26722782849101534],[112,234,73,-0.26523650163474677],[112,234,74,-0.2631275069067859],[112,234,75,-0.2609021798187424],[112,234,76,-0.2585620015407005],[112,234,77,-0.2561086013594459],[112,234,78,-0.25354375914426996],[112,234,79,-0.2508694078203032],[112,235,64,-0.2764092542839718],[112,235,65,-0.27536608197152823],[112,235,66,-0.27420039178730427],[112,235,67,-0.27291244343692345],[112,235,68,-0.27150262189655405],[112,235,69,-0.26997143978589255],[112,235,70,-0.26831953974848133],[112,235,71,-0.266547696839428],[112,235,72,-0.2646568209204838],[112,235,73,-0.262647959062561],[112,235,74,-0.2605222979555223],[112,235,75,-0.2582811663254524],[112,235,76,-0.2559260373592678],[112,235,77,-0.2534585311367018],[112,235,78,-0.25088041706968567],[112,235,79,-0.24819361634908077],[112,236,64,-0.27392834980594216],[112,236,65,-0.2728595337567743],[112,236,66,-0.271669120034465],[112,236,67,-0.2703573703301686],[112,236,68,-0.2689246705685794],[112,236,69,-0.2673715332549881],[112,236,70,-0.2656985998294863],[112,236,71,-0.2639066430283802],[112,236,72,-0.26199656925277903],[112,236,73,-0.2599694209444334],[112,236,74,-0.25782637896865646],[112,236,75,-0.25556876500454107],[112,236,76,-0.2531980439423255],[112,236,77,-0.2507158262879471],[112,236,78,-0.248123870574805],[112,236,79,-0.24542408578268404],[112,237,64,-0.2713664223901098],[112,237,65,-0.2702709161720691],[112,237,66,-0.26905476960564867],[112,237,67,-0.26771824648354103],[112,237,68,-0.2662617337522595],[112,237,69,-0.2646857438321474],[112,237,70,-0.26299091694433796],[112,237,71,-0.26117802344472785],[112,237,72,-0.2592479661649272],[112,237,73,-0.2572017827602653],[112,237,74,-0.2550406480646781],[112,237,75,-0.2527658764526989],[112,237,76,-0.2503789242083989],[112,237,77,-0.24788139190131941],[112,237,78,-0.24527502676941493],[112,237,79,-0.24256172510896257],[112,238,64,-0.2687244649364994],[112,238,65,-0.2676012278252994],[112,238,66,-0.2663583445725669],[112,238,67,-0.264996081191336],[112,238,68,-0.2635148257262194],[112,238,69,-0.2619150905452524],[112,238,70,-0.2601975146384784],[112,238,71,-0.25836286592334556],[112,238,72,-0.2564120435568722],[112,238,73,-0.25434608025466166],[112,238,74,-0.25216614461659603],[112,238,75,-0.2498735434594247],[112,238,76,-0.24746972415609791],[112,238,77,-0.24495627698188704],[112,238,78,-0.24233493746730905],[112,238,79,-0.2396075887578123],[112,239,64,-0.26600359462443646],[112,239,65,-0.2648515930239388],[112,239,66,-0.2635809760753379],[112,239,67,-0.2621920121335364],[112,239,68,-0.26068509042050425],[112,239,69,-0.2590607232878358],[112,239,70,-0.2573195484858367],[112,239,71,-0.25546233143920394],[112,239,72,-0.2534899675292638],[112,239,73,-0.2514034843828413],[112,239,74,-0.24920404416759656],[112,239,75,-0.2468929458940382],[112,239,76,-0.24447162772407183],[112,239,77,-0.24194166928611616],[112,239,78,-0.23930479399681148],[112,239,79,-0.23656287138927268],[112,240,64,-0.2632050482609388],[112,240,65,-0.2620232570786176],[112,240,66,-0.26072391758291],[112,240,67,-0.2593073005947706],[112,240,68,-0.2577737965957433],[112,240,69,-0.25612391796011924],[112,240,70,-0.2543583011933981],[112,240,71,-0.25247770917711965],[112,240,72,-0.25048303342002853],[112,240,73,-0.24837529631565136],[112,240,74,-0.24615565340610934],[112,240,75,-0.24382539565239347],[112,240,76,-0.24138595171094346],[112,240,77,-0.2388388902165759],[112,240,78,-0.2361859220717788],[112,240,79,-0.23342890274232853],[112,241,64,-0.2603301776847585],[112,241,65,-0.25911758166280674],[112,241,66,-0.25778854021005193],[112,241,67,-0.25634332674026383],[112,241,68,-0.2547823330797194],[112,241,69,-0.2531060716678484],[112,241,70,-0.25131517776394874],[112,241,71,-0.24941041166003963],[112,241,72,-0.24739266089981626],[112,241,73,-0.245262942503782],[112,241,74,-0.24302240520038687],[112,241,75,-0.24067233166339375],[112,241,76,-0.238214140755316],[112,241,77,-0.23564938977697236],[112,241,78,-0.23297977672317594],[112,241,79,-0.2302071425445118],[112,242,64,-0.2573804452259477],[112,242,65,-0.2561360402284911],[112,242,66,-0.2547763280907742],[112,242,67,-0.2533015849486522],[112,242,68,-0.2517122040612111],[112,242,69,-0.25000869797879544],[112,242,70,-0.24819170071686147],[112,242,71,-0.24626196993572802],[112,242,72,-0.24422038912618615],[112,242,73,-0.24206796980104717],[112,242,74,-0.23980585369245155],[112,242,75,-0.2374353149551669],[112,242,76,-0.23495776237571564],[112,242,77,-0.2323747415873778],[112,242,78,-0.22968793729108516],[112,242,79,-0.22689917548216498],[112,243,64,-0.25435741922109856],[112,243,65,-0.25308021347798104],[112,243,66,-0.2516888738083405],[112,243,67,-0.2501836792018146],[112,243,68,-0.24856502444126571],[112,243,69,-0.24683342223708626],[112,243,70,-0.24498950536708375],[112,243,71,-0.24303402882200964],[112,243,72,-0.2409678719566981],[112,243,73,-0.23879204064689208],[112,243,74,-0.2365076694515792],[112,243,75,-0.23411602378106688],[112,243,76,-0.23161850207063583],[112,243,77,-0.22901663795981875],[112,243,78,-0.22631210247732025],[112,243,79,-0.22350670623153324],[112,244,64,-0.2512627695841907],[112,244,65,-0.24995178489179937],[112,244,66,-0.24852787388179765],[112,244,67,-0.24699131853165446],[112,244,68,-0.24534251524183215],[112,244,69,-0.24358197693528172],[112,244,70,-0.24171033516225549],[112,244,71,-0.23972834221050576],[112,244,72,-0.2376368732208315],[112,244,73,-0.23543692830805485],[112,244,74,-0.2331296346872459],[112,244,75,-0.23071624880542885],[112,244,76,-0.22819815847860658],[112,244,77,-0.22557688503414897],[112,244,78,-0.22285408545856455],[112,244,79,-0.2200315545506102],[112,245,64,-0.24809826343296304],[112,245,65,-0.24675253631255345],[112,245,66,-0.2452951243089425],[112,245,67,-0.24372631252374388],[112,245,68,-0.24204649907166853],[112,245,69,-0.2402561971441256],[112,245,70,-0.23835603707787034],[112,245,71,-0.2363467684287699],[112,245,72,-0.2342292620506482],[112,245,73,-0.23200451217929408],[112,245,74,-0.22967363852144485],[112,245,75,-0.22723788834898695],[112,245,76,-0.22469863859820272],[112,245,77,-0.22205739797411572],[112,245,78,-0.21931580905994752],[112,245,79,-0.2164756504316454],[112,246,64,-0.24486576077096678],[112,246,65,-0.2434843435849584],[112,246,66,-0.2419925161658817],[112,246,67,-0.24039056687799332],[112,246,68,-0.23867889564968692],[112,246,69,-0.2368580160001259],[112,246,70,-0.23492855707064486],[112,246,71,-0.23289126566099005],[112,246,72,-0.23074700827036387],[112,246,73,-0.22849677314335126],[112,246,74,-0.22614167232054794],[112,246,75,-0.2236829436941239],[112,246,76,-0.22112195306815852],[112,246,77,-0.21846019622379487],[112,246,78,-0.21569930098922852],[112,246,79,-0.21284102931448845],[112,247,64,-0.24156721022522376],[112,247,65,-0.2401491722519279],[112,247,66,-0.2386220312631112],[112,247,67,-0.2369860790262699],[112,247,68,-0.23524171738565725],[112,247,69,-0.23338946025088703],[112,247,70,-0.23142993559001612],[112,247,71,-0.2293638874271806],[112,247,72,-0.22719217784474788],[112,247,73,-0.22491578899006615],[112,247,74,-0.22253582508662628],[112,247,75,-0.22005351444987453],[112,247,76,-0.21747021150750867],[112,247,77,-0.21478739882430753],[112,247,78,-0.21200668913150744],[112,247,79,-0.20912982736068497],[112,248,64,-0.23820464483940695],[112,248,65,-0.23674907330665174],[112,248,66,-0.23518573785802643],[112,248,67,-0.23351493380687327],[112,248,68,-0.23173706501818092],[112,248,69,-0.22985264585810605],[112,248,70,-0.22786230314767963],[112,248,71,-0.2257667781207694],[112,248,72,-0.2235669283862628],[112,248,73,-0.22126372989455323],[112,248,74,-0.2188582789081398],[112,248,75,-0.21635179397658555],[112,248,76,-0.21374561791566116],[112,248,77,-0.21104121979072699],[112,248,78,-0.20824019690436646],[112,248,79,-0.20534427678822986],[112,249,64,-0.23478017792270373],[112,249,65,-0.2332861790008237],[112,249,66,-0.2316857864240312],[112,249,67,-0.22997929919604276],[112,249,68,-0.22816712331010647],[112,249,69,-0.22624977365840504],[112,249,70,-0.2242278759453381],[112,249,71,-0.22210216860475718],[112,249,72,-0.21987350472111544],[112,249,73,-0.21754285395461692],[112,249,74,-0.2151113044701729],[112,249,75,-0.21258006487041425],[112,249,76,-0.2099504661325826],[112,249,77,-0.20722396354935713],[112,249,78,-0.20440213867362533],[112,249,79,-0.20148670126716206],[112,250,64,-0.23129599895428776],[112,250,65,-0.22976269870894245],[112,250,66,-0.22812440547616653],[112,250,67,-0.22638142209641132],[112,250,68,-0.22453415680130506],[112,250,69,-0.2225831250819164],[112,250,70,-0.22052895156058072],[112,250,71,-0.21837237186636582],[112,250,72,-0.21611423451413936],[112,250,73,-0.2137555027873217],[112,250,74,-0.21129725662413257],[112,250,75,-0.20874069450757926],[112,250,76,-0.20608713535901113],[112,250,77,-0.20333802043529525],[112,250,78,-0.20049491522962348],[112,250,79,-0.19755951137591177],[112,251,64,-0.2277543695433053],[112,251,65,-0.2261809148485897],[112,251,66,-0.22450389745316468],[112,251,67,-0.22272362418231395],[112,251,68,-0.22084050561870971],[112,251,69,-0.21885505792852655],[112,251,70,-0.2167679046907961],[112,251,71,-0.21457977873007766],[112,251,72,-0.21229152395240825],[112,251,73,-0.2099040971846169],[112,251,74,-0.20741857001680764],[112,251,75,-0.204836130648263],[112,251,76,-0.2021580857365931],[112,251,77,-0.1993858622501784],[112,251,78,-0.19652100932392746],[112,251,79,-0.1935652001182988],[112,252,64,-0.22415761944455181],[112,252,65,-0.22254317885686714],[112,252,66,-0.2208266346561073],[112,252,67,-0.21900829780213144],[112,252,68,-0.21708858134380238],[112,252,69,-0.21506800220195993],[112,252,70,-0.2129471829553018],[112,252,71,-0.21072685362925075],[112,252,72,-0.2084078534877692],[112,252,73,-0.2059911328282057],[112,252,74,-0.20347775477898045],[112,252,75,-0.20086889710035916],[112,252,76,-0.19816585398814013],[112,252,77,-0.19537003788030638],[112,252,78,-0.19248298126665742],[112,252,79,-0.18950633850137855],[112,253,64,-0.2205081426297552],[112,253,65,-0.21885190722290337],[112,253,66,-0.21709505524360284],[112,253,67,-0.21523790193758074],[112,253,68,-0.21328086293746018],[112,253,69,-0.21122445600161688],[112,253,70,-0.20906930275560465],[112,253,71,-0.20681613043622538],[112,253,72,-0.20446577363820562],[112,253,73,-0.20201917606356923],[112,253,74,-0.19947739227350192],[112,253,75,-0.1968415894429708],[112,253,76,-0.19411304911791272],[112,253,77,-0.19129316897504933],[112,253,78,-0.1883834645843413],[112,253,79,-0.18538557117403942],[112,254,64,-0.21680839341436858],[112,254,65,-0.2151095775763357],[112,254,66,-0.2133116592833847],[112,254,67,-0.21141495821985623],[112,254,68,-0.20941989272206102],[112,254,69,-0.20732698147206452],[112,254,70,-0.20513684519368913],[112,254,71,-0.2028502083508129],[112,254,72,-0.2004679008479272],[112,254,73,-0.19799085973303954],[112,254,74,-0.19542013090272026],[112,254,75,-0.19275687080955584],[112,254,76,-0.19000234817182193],[112,254,77,-0.18715794568543376],[112,254,78,-0.18422516173818737],[112,254,79,-0.18120561212624786],[112,255,64,-0.2130608826400605],[112,255,65,-0.21131872483195396],[112,255,66,-0.20947900486051885],[112,255,67,-0.20754204700280904],[112,255,68,-0.2055082724210423],[112,255,69,-0.20337820081037328],[112,255,70,-0.2011524520485271],[112,255,71,-0.19883174784737],[112,255,72,-0.1964169134063829],[112,255,73,-0.19390887906812293],[112,255,74,-0.1913086819754698],[112,255,75,-0.18861746773092258],[112,255,76,-0.18583649205775854],[112,255,77,-0.18296712246311098],[112,255,78,-0.18001083990298206],[112,255,79,-0.17696924044914386],[112,256,64,-0.2092681739128085],[112,256,65,-0.2074819373904151],[112,256,66,-0.2055997042421296],[112,256,67,-0.2036218034930749],[112,256,68,-0.20154865925581655],[112,256,69,-0.19938079233120665],[112,256,70,-0.19711882181071938],[112,256,71,-0.19476346668035965],[112,256,72,-0.19231554742610557],[112,256,73,-0.18977598764097747],[112,256,74,-0.1871458156335205],[112,256,75,-0.18442616603797568],[112,256,76,-0.1816182814259446],[112,256,77,-0.17872351391960867],[112,256,78,-0.17574332680651567],[112,256,79,-0.17267929615589017],[112,257,64,-0.2054328798965005],[112,257,65,-0.2036018533949273],[112,257,66,-0.20167642009854214],[112,257,67,-0.19965691393704665],[112,257,68,-0.19754376209994523],[112,257,69,-0.19533748658955963],[112,257,70,-0.19303870577515975],[112,257,71,-0.19064813594829366],[112,257,72,-0.18816659287927728],[112,257,73,-0.1855949933749349],[112,257,74,-0.1829343568373788],[112,257,75,-0.1801858068241048],[112,257,76,-0.17735057260920384],[112,257,77,-0.1744299907457575],[112,257,78,-0.17142550662942124],[112,257,79,-0.1683386760631621],[112,258,64,-0.20155765866223596],[112,258,65,-0.19968115704410228],[112,258,66,-0.1977118617810394],[112,258,67,-0.19565011186489167],[112,258,68,-0.19349633769076746],[112,258,69,-0.1912510625613476],[112,258,70,-0.18891490419192525],[112,258,71,-0.18648857621626297],[112,258,72,-0.18397288969322434],[112,258,73,-0.18136875461427793],[112,258,74,-0.17867718141165223],[112,258,75,-0.17589928246742753],[112,258,76,-0.17303627362335966],[112,258,77,-0.17008947569150318],[112,258,78,-0.1670603159656433],[112,258,79,-0.16395032973349483],[112,259,64,-0.19764521009323155],[112,259,65,-0.19572257496087486],[112,259,66,-0.19370878165613553],[112,259,67,-0.191604174391514],[112,259,68,-0.18940918689838626],[112,259,69,-0.18712434388174737],[112,259,70,-0.18475026247529813],[112,259,71,-0.18228765369695415],[112,259,72,-0.17973732390474106],[112,259,73,-0.17710017625317043],[112,259,74,-0.17437721214987367],[112,259,75,-0.17156953271278375],[112,259,76,-0.16867834022765726],[112,259,77,-0.16570493960600396],[112,259,78,-0.16265073984343426],[112,259,79,-0.15951725547838258],[112,260,64,-0.19369827234523096],[112,260,65,-0.19172887261739352],[112,260,66,-0.1896699714962644],[112,260,67,-0.18752191857436185],[112,260,68,-0.18528515105190985],[112,260,69,-0.18296019514118494],[112,260,70,-0.18054766747080586],[112,260,71,-0.17804827649004584],[112,260,72,-0.1754628238731329],[112,260,73,-0.17279220592362965],[112,260,74,-0.1700374149786743],[112,260,75,-0.1671995408133674],[112,260,76,-0.16427977204510102],[112,260,77,-0.16127939753789677],[112,260,78,-0.15819980780676024],[112,260,79,-0.1550424964220144],[112,261,64,-0.18971961836261653],[112,261,65,-0.18770285081607685],[112,261,66,-0.1855982589270842],[112,261,67,-0.18340619782827905],[112,261,68,-0.18112710832314993],[112,261,69,-0.17876151823917458],[112,261,70,-0.1763100437804923],[112,261,71,-0.17377339088019378],[112,261,72,-0.17115235655219024],[112,261,73,-0.16844783024275645],[112,261,74,-0.165660795181524],[112,261,75,-0.16279232973221747],[112,261,76,-0.1598436087429218],[112,261,77,-0.15681590489595376],[112,261,78,-0.153710590057341],[112,261,79,-0.15052913662587242],[112,262,64,-0.18571205245012723],[112,262,65,-0.18364734222674178],[112,262,66,-0.18149650393130012],[112,262,67,-0.1792598983973056],[112,262,68,-0.17693797016768054],[112,262,69,-0.1745312487959132],[112,262,70,-0.17204035014631947],[112,262,71,-0.16946597769350524],[112,262,72,-0.166808923820995],[112,262,73,-0.16407007111911853],[112,262,74,-0.16125039368193],[112,262,75,-0.15835095840345825],[112,262,76,-0.1553729262730702],[112,262,77,-0.15231755367002459],[112,262,78,-0.14918619365721703],[112,262,79,-0.14598029727408074],[112,263,64,-0.18167840690007625],[112,263,65,-0.17956520797969638],[112,263,66,-0.17736759540889702],[112,263,67,-0.17508593588331578],[112,263,68,-0.172720677823144],[112,263,69,-0.1702723526215149],[112,263,70,-0.16774157589158356],[112,263,71,-0.16512904871238615],[112,263,72,-0.1624355588734382],[112,263,73,-0.15966198211817278],[112,263,74,-0.15680928338598332],[112,263,75,-0.15387851805317737],[112,263,76,-0.15087083317261984],[112,263,77,-0.14778746871214216],[112,263,78,-0.14462975879172107],[112,263,79,-0.14139913291938888],[112,264,64,-0.1776215386752864],[112,264,65,-0.17545933431501703],[112,264,66,-0.1732144477940053],[112,264,67,-0.17088725183172027],[112,264,68,-0.16847819886503423],[112,264,69,-0.1659878222431153],[112,264,70,-0.16341673742058077],[112,264,71,-0.16076564314899694],[112,264,72,-0.15803532266668935],[112,264,73,-0.1552266448869613],[112,264,74,-0.15234056558448533],[112,264,75,-0.14937812858017524],[112,264,76,-0.146340466924318],[112,264,77,-0.14322880407803845],[112,264,78,-0.14004445509310448],[112,264,79,-0.1367888277900322],[112,265,64,-0.17354432614756016],[112,265,65,-0.17133262928782256],[112,265,66,-0.16903999772821127],[112,265,67,-0.16666681037404052],[112,265,68,-0.16421352381976317],[112,265,69,-0.16168067348965592],[112,265,70,-0.15906887477632464],[112,265,71,-0.156378824177119],[112,265,72,-0.15361130042841759],[112,265,73,-0.15076716563788473],[112,265,74,-0.1478473664144596],[112,265,75,-0.1448529349963898],[112,265,76,-0.1417849903770847],[112,265,77,-0.13864473942886363],[112,265,78,-0.1354334780246068],[112,265,79,-0.1321525921572661],[112,266,64,-0.1694496658918233],[112,266,65,-0.16718801952968998],[112,266,66,-0.16484720079045567],[112,266,67,-0.16242759492750214],[112,266,68,-0.15992966283515764],[112,266,69,-0.15735394213448917],[112,266,70,-0.15470104825646463],[112,266,71,-0.1519716755225805],[112,266,72,-0.149166598222914],[112,266,73,-0.1462866716917003],[112,266,74,-0.1433328333801968],[112,266,75,-0.14030610392714588],[112,266,76,-0.13720758822661133],[112,266,77,-0.13403847649326506],[112,266,78,-0.13080004532512768],[112,266,79,-0.12749365876372748],[112,267,64,-0.16534046953575476],[112,267,65,-0.1630284470660201],[112,267,66,-0.16063902828332838],[112,267,67,-0.15817260495145125],[112,267,68,-0.15562964240819033],[112,267,69,-0.1530106805956133],[112,267,70,-0.15031633508720726],[112,267,71,-0.14754729811204392],[112,267,72,-0.1447043395759155],[112,267,73,-0.14178830807954607],[112,267,74,-0.1388001319336304],[112,267,75,-0.13574082017102462],[112,267,76,-0.1326114635558533],[112,267,77,-0.12941323558961548],[112,267,78,-0.12614739351429183],[112,267,79,-0.12281527931241437],[112,268,64,-0.16121966066512544],[112,268,65,-0.158856866189577],[112,268,66,-0.15641846407598498],[112,268,67,-0.15390485276082583],[112,268,68,-0.1513165021701774],[112,268,69,-0.1486539546937673],[112,268,70,-0.14591782615547494],[112,268,71,-0.14310880678038806],[112,268,72,-0.14022766215836752],[112,268,73,-0.1372752342042276],[112,268,74,-0.134252442114285],[112,268,75,-0.13116028331959767],[112,268,76,-0.127999834435661],[112,268,77,-0.12477225220864174],[112,268,78,-0.1214787744581533],[112,268,79,-0.11812072101653409],[112,269,64,-0.15709017178474022],[112,269,65,-0.15467624039009759],[112,269,66,-0.15218850150358154],[112,269,67,-0.14962736039657043],[112,269,68,-0.14699329172933157],[112,269,69,-0.1442868404682745],[112,269,70,-0.14150862279919085],[112,269,71,-0.13865932703657924],[112,269,72,-0.13573971452901318],[112,269,73,-0.1327506205606575],[112,269,74,-0.12969295524868385],[112,269,75,-0.12656770443691162],[112,269,76,-0.12337593058543656],[112,269,77,-0.12011877365633272],[112,269,78,-0.1167974519954253],[112,269,79,-0.11341326321010187],[112,270,64,-0.15295494133487836],[112,270,65,-0.15048953933986214],[112,270,66,-0.14795214032311554],[112,270,67,-0.14534315655288876],[112,270,68,-0.1426630675705628],[112,270,69,-0.13991242105052853],[112,270,70,-0.13709183365557903],[112,270,71,-0.13420199188791082],[112,270,72,-0.13124365293569612],[112,270,73,-0.12821764551532988],[112,270,74,-0.1251248707090979],[112,270,75,-0.12196630279860154],[112,270,76,-0.11874299009369332],[112,270,77,-0.11545605575701146],[112,270,78,-0.11210669862411271],[112,270,79,-0.1086961940191678],[112,271,64,-0.14881691076344256],[112,271,65,-0.14629973593544077],[112,271,66,-0.14371238372589107],[112,271,67,-0.1410552735615494],[112,271,68,-0.13832889001274534],[112,271,69,-0.1355337835953379],[112,271,70,-0.13267057156770162],[112,271,71,-0.12973993872284256],[112,271,72,-0.1267426381756025],[112,271,73,-0.1236794921450598],[112,271,74,-0.12055139273186827],[112,271,75,-0.11735930269087325],[112,271,76,-0.11410425619875764],[112,271,77,-0.11078735961680608],[112,271,78,-0.10740979224878683],[112,271,79,-0.10397280709391554],[112,272,64,-0.14467902165371183],[112,272,65,-0.14210980339550827],[112,272,66,-0.13947223540650028],[112,272,67,-0.1367667444331367],[112,272,68,-0.13399382022334105],[112,272,69,-0.13115401627002188],[112,272,70,-0.12824795054912436],[112,272,71,-0.12527630625232555],[112,272,72,-0.12223983251433002],[112,272,73,-0.11913934513487556],[112,272,74,-0.11597572729518907],[112,272,75,-0.11274993026923269],[112,272,76,-0.10946297412949318],[112,272,77,-0.10611594844740191],[112,272,78,-0.10271001298838506],[112,272,79,-0.0992463984015089],[112,273,64,-0.14054421290759184],[112,273,65,-0.1379227124146204],[112,273,66,-0.1352346966882113],[112,273,67,-0.13248059995513706],[112,273,68,-0.12966091729026846],[112,273,69,-0.12677620530114492],[112,273,70,-0.12382708280659377],[112,273,71,-0.12081423150949738],[112,273,72,-0.11773839666366887],[112,273,73,-0.11460038773494408],[112,273,74,-0.11140107905622909],[112,273,75,-0.10814141047684667],[112,273,76,-0.10482238800593008],[112,273,77,-0.10144508444995581],[112,273,78,-0.09801064004441212],[112,273,79,-0.09452026307956896],[112,274,64,-0.13641541798457446],[112,274,65,-0.13374142837316644],[112,274,66,-0.1310027637049816],[112,274,67,-0.12819986584708093],[112,274,68,-0.12533323535123947],[112,274,69,-0.12240343207911325],[112,274,70,-0.11941107582095478],[112,274,71,-0.11635684690797649],[112,274,72,-0.11324148681832319],[112,274,73,-0.11006579877676304],[112,274,74,-0.10683064834783007],[112,274,75,-0.1035369640227708],[112,274,76,-0.10018573780003565],[112,274,77,-0.09677802575941047],[112,274,78,-0.09331494862978479],[112,274,79,-0.08979769235052093],[112,275,64,-0.13229556219630112],[112,275,65,-0.12956890860339015],[112,275,66,-0.1267794246399861],[112,275,67,-0.12392755997262828],[112,275,68,-0.12101382078045231],[112,275,69,-0.11803877032052118],[112,275,70,-0.11500302948619423],[112,275,71,-0.1119072773586417],[112,275,72,-0.10875225175146064],[112,275,73,-0.10553874974850541],[112,275,74,-0.10226762823466279],[112,275,75,-0.09893980441992567],[112,275,76,-0.09555625635650755],[112,275,77,-0.09211802344909004],[112,275,78,-0.08862620695820111],[112,275,79,-0.0850819704966903],[112,276,64,-0.1281875600566233],[112,276,65,-0.125408099711371],[112,276,66,-0.122567657020553],[112,276,67,-0.11966668960849014],[112,276,68,-0.11670570943253028],[112,276,69,-0.11368528328813599],[112,276,70,-0.1106060333064981],[112,276,71,-0.10746863744478308],[112,276,72,-0.10427382996897083],[112,276,73,-0.10102240192939643],[112,276,74,-0.09771520162872283],[112,276,75,-0.09435313508270338],[112,276,76,-0.09093716647347239],[112,276,77,-0.08746831859545728],[112,276,78,-0.08394767329391101],[112,276,79,-0.08037637189602903],[112,277,64,-0.12409431268737298],[112,277,65,-0.12126193495518361],[112,277,66,-0.11837042506972406],[112,277,67,-0.11542024877040569],[112,277,68,-0.11241192394392763],[112,277,69,-0.10934602106874503],[112,277,70,-0.1062231636515471],[112,277,71,-0.10304402865585066],[112,277,72,-0.0998093469226673],[112,277,73,-0.09651990358335866],[112,277,74,-0.09317653846440399],[112,277,75,-0.08978014648444238],[112,277,76,-0.08633167804332459],[112,277,77,-0.08283213940327078],[112,277,78,-0.07928259306213048],[112,277,79,-0.07568415811871099],[112,278,64,-0.1200187052797358],[112,278,65,-0.11713333167912332],[112,278,66,-0.11419067711432979],[112,278,67,-0.11119121559606271],[112,278,68,-0.1081354710916913],[112,278,69,-0.10502401790875227],[112,278,70,-0.1018574810699398],[112,278,71,-0.09863653667968975],[112,278,72,-0.09536191228231478],[112,278,73,-0.09203438721180712],[112,278,74,-0.0886547929330272],[112,278,75,-0.08522401337464869],[112,278,76,-0.08174298525358914],[112,278,77,-0.0782126983910238],[112,278,78,-0.07463419601998011],[112,278,79,-0.07100857508447755],[112,279,64,-0.11596360461112215],[112,279,65,-0.11302518880389456],[112,279,66,-0.11003134304947343],[112,279,67,-0.10698254978485472],[112,279,68,-0.10387933920947018],[112,279,69,-0.10072228960741486],[112,279,70,-0.0975120276606285],[112,279,71,-0.09424922875314579],[112,279,72,-0.09093461726636876],[112,279,73,-0.08756896686547971],[112,279,74,-0.0841531007767119],[112,279,75,-0.08068789205585036],[112,279,76,-0.07717426384768888],[112,279,77,-0.07361318963654506],[112,279,78,-0.07000569348782582],[112,279,79,-0.06635285028061316],[112,280,64,-0.11193185661774885],[112,280,65,-0.10894038437297587],[112,280,66,-0.10589533185963834],[112,280,67,-0.10279719009469285],[112,280,68,-0.09964649566099038],[112,280,69,-0.09644383096794001],[112,280,70,-0.09318982450259461],[112,280,71,-0.08988515107126999],[112,280,72,-0.08653053203165573],[112,280,73,-0.08312673551553434],[112,280,74,-0.07967457664182337],[112,280,75,-0.07617491772031759],[112,280,76,-0.07262866844585325],[112,280,77,-0.06903678608299874],[112,280,78,-0.0654002756412626],[112,280,79,-0.061720190040789324],[112,281,64,-0.1079262840228205],[112,281,65,-0.1048817731550496],[112,281,66,-0.10178552919630973],[112,281,67,-0.0986380518957608],[112,281,68,-0.09543988437088508],[112,281,69,-0.09219161330633213],[112,281,70,-0.0888938691426493],[112,281,71,-0.0855473262550071],[112,281,72,-0.082152703121879],[112,281,73,-0.07871076248379483],[112,281,74,-0.07522231149187458],[112,281,75,-0.0716882018465298],[112,281,76,-0.06810932992604818],[112,281,77,-0.06448663690516565],[112,281,78,-0.06082110886362119],[112,281,79,-0.057113776884659406],[112,282,64,-0.10394968402021387],[112,282,65,-0.10085218430239917],[112,282,66,-0.09770479501200696],[112,282,67,-0.09450802478110859],[112,282,68,-0.09126242341277485],[112,282,69,-0.08796858201788038],[112,282,70,-0.08462713314124987],[112,282,71,-0.0812387508772574],[112,282,72,-0.07780415097483889],[112,282,73,-0.07432409093203496],[112,282,74,-0.0707993700797736],[112,282,75,-0.06723082965527777],[112,282,76,-0.06361935286481418],[112,282,77,-0.05996586493588846],[112,282,78,-0.056271333158879944],[112,282,79,-0.0525367669180834],[112,283,64,-0.10000482601386756],[112,283,65,-0.09685441906547715],[112,283,66,-0.09365596125093822],[112,283,67,-0.09040997023429853],[112,283,68,-0.08711700265481132],[112,283,69,-0.08377765420150618],[112,283,70,-0.08039255967655351],[112,283,71,-0.07696239304753694],[112,283,72,-0.07348786748859132],[112,283,73,-0.06996973541052692],[112,283,74,-0.06640878847964393],[112,283,75,-0.06280585762562879],[112,283,76,-0.059161813038243194],[112,283,77,-0.055477564152914216],[112,283,78,-0.051754059625217674],[112,283,79,-0.04799228729422117],[112,284,64,-0.09609444941277495],[112,284,65,-0.09289124856354225],[112,284,66,-0.0896418295961684],[112,284,67,-0.08634671935399468],[112,284,68,-0.08300648146257666],[112,284,69,-0.07962171634185994],[112,284,70,-0.07619306120659636],[112,284,71,-0.07272119005511918],[112,284,72,-0.06920681364643277],[112,284,73,-0.06565067946573894],[112,284,74,-0.06205357167810083],[112,284,75,-0.058416311070640436],[112,284,76,-0.054739754982977284],[112,284,77,-0.05102479722601827],[112,284,78,-0.04727236798908896],[112,284,79,-0.043483433735375276],[112,285,64,-0.09222126148147863],[112,285,65,-0.08896541161126176],[112,285,66,-0.08566516927320039],[112,285,67,-0.08232107063539318],[112,285,68,-0.07893368645923404],[112,285,69,-0.0755036220490608],[112,285,70,-0.07203151718948986],[112,285,71,-0.06851804607055376],[112,285,72,-0.06496391720059991],[112,285,73,-0.06136987330707225],[112,285,74,-0.057736691224873404],[112,285,75,-0.05406518177270897],[112,285,76,-0.05035618961711688],[112,285,77,-0.04661059312429322],[112,285,78,-0.04282930419970643],[112,285,79,-0.039013268115466404],[112,286,64,-0.08838793524627123],[112,286,65,-0.08507961260148683],[112,286,66,-0.0817287149101765],[112,286,67,-0.07833578780870298],[112,286,68,-0.07490140934313991],[112,286,69,-0.07142618985629415],[112,286,70,-0.06791077186185354],[112,286,71,-0.0643558299057807],[112,286,72,-0.06076207041490844],[112,286,73,-0.057130231532861564],[112,286,74,-0.05346108294299906],[112,286,75,-0.04975542567878169],[112,286,76,-0.04601409192126546],[112,286,77,-0.0422379447838348],[112,286,78,-0.03842787808416365],[112,286,79,-0.03458481610337508],[112,287,64,-0.08459710745699642],[112,287,65,-0.08123651944409219],[112,287,66,-0.07783516445459221],[112,287,67,-0.07439359773456877],[112,287,68,-0.07091240476281244],[112,287,69,-0.06739220107515753],[112,287,70,-0.06383363207537135],[112,287,71,-0.06023737283272662],[112,287,72,-0.05660412786621455],[112,287,73,-0.05293463091552322],[112,287,74,-0.04922964469847227],[112,287,75,-0.045489960655313966],[112,287,76,-0.041716398679596756],[112,287,77,-0.037909806835706994],[112,287,78,-0.03407106106307756],[112,287,79,-0.03020106486703203],[112,288,64,-0.0808513766043571],[112,288,65,-0.07743876156078858],[112,288,66,-0.07398717714642764],[112,288,67,-0.07049718835633931],[112,288,68,-0.06696938824915286],[112,288,69,-0.06340439770865344],[112,288,70,-0.05980286519136954],[112,288,71,-0.05616546646028034],[112,288,72,-0.05249290430459708],[112,288,73,-0.048785908245746745],[112,288,74,-0.04504523422924417],[112,288,75,-0.041271664302868244],[112,288,76,-0.0374660062808336],[112,288,77,-0.03362909339407694],[112,288,78,-0.029761783926643387],[112,288,79,-0.02586496083814513],[112,289,64,-0.07715330099293488],[112,289,65,-0.07368892793611129],[112,289,66,-0.07018737154790489],[112,289,67,-0.06664920670939187],[112,289,68,-0.06307503420513791],[112,289,69,-0.059465480422047134],[112,289,70,-0.05582119703363836],[112,289,71,-0.052142860669872254],[112,289,72,-0.048431172572485054],[112,289,73,-0.04468685823595753],[112,289,74,-0.04091066703380056],[112,289,75,-0.03710337183058118],[112,289,76,-0.033265768579373106],[112,289,77,-0.029398675904754284],[112,289,78,-0.025502934671337157],[112,289,79,-0.021579407537801465],[112,290,64,-0.07350539686974894],[112,290,65,-0.06998956522441385],[112,290,66,-0.06643832362969565],[112,290,67,-0.06285225698733646],[112,290,68,-0.059231973952801026],[112,290,69,-0.05557810657140716],[112,290,70,-0.051891309899310095],[112,290,71,-0.048172261609467776],[112,290,72,-0.04442166158254093],[112,290,73,-0.04064023148285825],[112,290,74,-0.03682871431912629],[112,290,75,-0.0329878739903092],[112,290,76,-0.02911849481636178],[112,290,77,-0.02522138105393923],[112,290,78,-0.021297356397067202],[112,290,79,-0.017347263462744872],[112,291,64,-0.06991013660848064],[112,291,65,-0.06634317591299221],[112,291,66,-0.06274256491370833],[112,291,67,-0.05910889866522828],[112,291,68,-0.0554427938376352],[112,291,69,-0.05174488828996096],[112,291,70,-0.048015840627930684],[112,291,71,-0.04425632974611404],[112,291,72,-0.04046705435443776],[112,291,73,-0.03664873248919065],[112,291,74,-0.0328021010081975],[112,291,75,-0.028927915070591365],[112,291,76,-0.025026947600864213],[112,291,77,-0.021099988737320968],[112,291,78,-0.017147845264920386],[112,291,79,-0.013171340032474638],[112,292,64,-0.06636994694919784],[112,292,65,-0.06275221654117352],[112,292,66,-0.059102580672284855],[112,292,67,-0.055421644679618964],[112,292,68,-0.05171003339024377],[112,292,69,-0.04796839063209185],[112,292,70,-0.04419737872854651],[112,292,71,-0.04039767797685895],[112,292,72,-0.0365699861103507],[112,292,73,-0.032715017744532726],[112,292,74,-0.02883350380681593],[112,292,75,-0.024926190950245564],[112,292,76,-0.02099384095093737],[112,292,77,-0.0170372300893408],[112,292,78,-0.013057148515312922],[112,292,79,-0.009054399596975127],[112,293,64,-0.06288720729377731],[112,293,65,-0.05921909597556835],[112,293,66,-0.055520808184009535],[112,293,67,-0.0517929596656497],[112,293,68,-0.048036183545446864],[112,293,69,-0.04425112977518572],[112,293,70,-0.040438464565018234],[112,293,71,-0.036598869798257355],[112,293,72,-0.032733042429376774],[112,293,73,-0.028841693865351153],[112,293,74,-0.024925549330006513],[112,293,75,-0.020985347211818856],[112,293,76,-0.01702183839483498],[112,293,77,-0.013035785572842518],[112,293,78,-0.009027962546771795],[112,293,79,-0.00499915350530325],[112,294,64,-0.0594642480569271],[112,294,65,-0.05574617374138888],[112,294,66,-0.05199963504603122],[112,294,67,-0.04822525825108705],[112,294,68,-0.04442368491874066],[112,294,69,-0.04059557127922478],[112,294,70,-0.036741587599458836],[112,294,71,-0.03286241753435974],[112,294,72,-0.028958757460779208],[112,294,73,-0.02503131579420166],[112,294,74,-0.021080812287870412],[112,294,75,-0.017107977314783626],[112,294,76,-0.013113551132231213],[112,294,77,-0.009098283129001128],[112,294,78,-0.005062931055237321],[112,294,79,-0.0010082602349222314],[112,295,64,-0.05610334907272438],[112,295,65,-0.05233575840974579],[112,295,66,-0.04854139754281016],[112,295,67,-0.04472090340721124],[112,295,68,-0.04087492614002046],[112,295,69,-0.03700412840403776],[112,295,70,-0.033109184693701665],[112,295,71,-0.029190780623088983],[112,295,72,-0.02524961219595974],[112,295,73,-0.021286385057981208],[112,295,74,-0.01730181373079634],[112,295,75,-0.013296620828382358],[112,295,76,-0.009271536255366794],[112,295,77,-0.005227296387431343],[112,295,78,-0.001164643233785706],[112,295,79,0.0029156764183167344],[112,296,64,-0.05280673805684652],[112,296,65,-0.048990106041105486],[112,296,66,-0.04514837907147298],[112,296,67,-0.0412822048567439],[112,296,68,-0.037392242244755125],[112,296,69,-0.03347916048439567],[112,296,70,-0.029543638468992175],[112,296,71,-0.025586363961200162],[112,296,72,-0.02160803279935683],[112,296,73,-0.017609348085430923],[112,296,74,-0.013591019354231099],[112,296,75,-0.009553761724323331],[112,296,76,-0.005498295030321065],[112,296,77,-0.0014253429366798548],[112,296,78,0.0026643679670211584],[112,296,79,0.0067701090893396015],[112,297,64,-0.049576589124402645],[112,297,65,-0.04571141868481214],[112,297,66,-0.041822808623680485],[112,297,67,-0.03791141753871681],[112,297,68,-0.033977913122514206],[112,297,69,-0.03002297136285477],[112,297,70,-0.02604727572380315],[112,297,71,-0.022051516307722716],[112,297,72,-0.018036388998167327],[112,297,73,-0.01400259458378697],[112,297,74,-0.00995083786290496],[112,297,75,-0.005881826729221121],[112,297,76,-0.00179627123830281],[112,297,77,0.0023051173450045342],[112,297,78,0.00642162751826543],[112,297,79,0.010552548532267864],[112,298,64,-0.0464150213632846],[112,298,65,-0.0425018429345939],[112,298,66,-0.03856685932392469],[112,298,67,-0.034610740130198714],[112,298,68,-0.030634162022764075],[112,298,69,-0.026637807880260628],[112,298,70,-0.02262236590968536],[112,298,71,-0.01858852874579564],[112,298,72,-0.014536992530801693],[112,298,73,-0.010468455974488367],[112,298,74,-0.006383619394420448],[112,298,75,-0.0022831837366910426],[112,298,76,0.001832150423130681],[112,298,77,0.005961683898715722],[112,298,78,0.01010471993137757],[112,298,79,0.014260565248184677],[112,299,64,-0.0433240974632073],[112,299,65,-0.039363468540223774],[112,299,66,-0.03538264702443032],[112,299,67,-0.031382313625056404],[112,299,68,-0.02736315411810942],[112,299,69,-0.023325858424092488],[112,299,70,-0.019271119665336282],[112,299,71,-0.015199633203080473],[112,299,72,-0.011112095654259337],[112,299,73,-0.007009203888129964],[112,299,74,-0.0028916540023959172],[112,299,75,0.0012398597207106885],[112,299,76,0.005384645878735161],[112,299,77,0.00954201703355715],[112,299,78,0.013711290816219086],[112,299,79,0.017891791052052942],[112,300,64,-0.040305822400348405],[112,300,65,-0.03629832707524656],[112,300,66,-0.032272228956567374],[112,300,67,-0.028228219969657097],[112,300,68,-0.024166995124888603],[112,300,69,-0.020089251534555673],[112,300,70,-0.015995687408792543],[112,300,71,-0.01188700103065679],[112,300,72,-0.007763889710327758],[112,300,73,-0.0036270487185637787],[112,300,74,5.228298009373675E-4],[112,300,75,0.00468505793980175],[112,300,76,0.008858953154220826],[112,300,77,0.01304383941502963],[112,300,78,0.017239048378644577],[112,300,79,0.0214439205788858],[112,301,64,-0.037362142177513956],[112,301,65,-0.03330839066069372],[112,301,66,-0.029237602438699724],[112,301,67,-0.025150480755433746],[112,301,68,-0.021047729981042387],[112,301,69,-0.016930054568339164],[112,301,70,-0.012798157987663452],[112,301,71,-0.008652741640315747],[112,301,72,-0.004494503750520868],[112,301,73,-3.241382360621471E-4],[112,301,74,0.0038576664427679916],[112,301,75,0.00805022845542954],[112,301,76,0.012252873794960956],[112,301,77,0.016464937493230147],[112,301,78,0.02068576485763255],[112,301,79,0.02491471272926069],[112,302,64,-0.034494942619986396],[112,302,65,-0.030395570744948884],[112,302,66,-0.02628070364063145],[112,302,67,-0.022151055968479546],[112,302,68,-0.018007341581423603],[112,302,69,-0.013850272420209368],[112,302,70,-0.009680557387576796],[112,302,71,-0.005498901200427309],[112,302,72,-0.0013060032199316684],[112,302,73,0.0028974437402779184],[112,302,74,0.007110754628188821],[112,302,75,0.011333253389286296],[112,302,76,0.015564274224585868],[112,302,77,0.019803162870676665],[112,302,78,0.024049277901800496],[112,302,79,0.028301992053989512],[112,303,64,-0.03170604822697346],[112,303,65,-0.027561716939678044],[112,303,66,-0.023403406404565362],[112,303,67,-0.019231842796083125],[112,303,68,-0.015047749570459342],[112,303,69,-0.01085184630235033],[112,303,70,-0.006644847498748042],[112,303,71,-0.002427461390287305],[112,303,72,0.0017996113000917657],[112,303,73,0.0060356786109849285],[112,303,74,0.010280058619227603],[112,303,75,0.014532080738980435],[112,303,76,0.01879108704355803],[112,303,77,0.023056433609855893],[112,303,78,0.027327491885399936],[112,303,79,0.03160365007804309],[112,304,64,-0.028997221078587605],[112,304,65,-0.024808615911754782],[112,304,66,-0.02060752112250305],[112,304,67,-0.016394674490133595],[112,304,68,-0.012170809192093528],[112,304,69,-0.007936652581377084],[112,304,70,-0.0036929249405969825],[112,304,71,5.596617871286395E-4],[112,304,72,0.004820405290524242],[112,304,73,0.009088614205592243],[112,304,74,0.01336360945450127],[112,304,75,0.01764472560744073],[112,304,76,0.021931312267806802],[112,304,77,0.026222735480573498],[112,304,78,0.030518379163873077],[112,304,79,0.0348176465638107],[112,305,64,-0.026370159798502865],[112,305,65,-0.022137990331329536],[112,305,66,-0.017894793670235838],[112,305,67,-0.013641319287547492],[112,305,68,-0.009378310197164102],[112,305,69,-0.005106501673177017],[112,305,70,-8.266199445711025E-4],[112,305,71,0.0034606191338458006],[112,305,72,0.007754511434333575],[112,305,73,0.012054365932784621],[112,305,74,0.016359506109328435],[112,305,75,0.020669271372488286],[112,305,76,0.02498301850725622],[112,305,77,0.029300123146938993],[112,305,78,0.03361998126880047],[112,305,79,0.03794201071352431],[112,306,64,-0.02382649857221183],[112,306,65,-0.019551497875963247],[112,306,66,-0.015266904397849296],[112,306,67,-0.01097347938763761],[112,306,68,-0.006671975808132013],[112,306,69,-0.002363136995499164],[112,306,70,0.0019523047049091607],[112,306,71,0.006273629327089553],[112,306,72,0.010600130697327743],[112,306,73,0.01493111787139767],[112,306,74,0.019265916596387794],[112,306,75,0.02360387079666325],[112,306,76,0.02794434408433278],[112,306,77,0.03228672129407195],[112,306,78,0.03663041004232894],[112,306,79,0.04097484231093561],[112,307,64,-0.021367806220819748],[112,307,65,-0.0170507302907627],[112,307,66,-0.012725467176673916],[112,307,67,-0.008392789986356605],[112,307,68,-0.004053461741098149],[112,307,69,2.917660217785431E-4],[112,307,70,0.004642154671450294],[112,307,71,0.008996979931073013],[112,307,72,0.013355533350249596],[112,307,73,0.017717123802341646],[112,307,74,0.02208107900699416],[112,307,75,0.02644674707737875],[112,307,76,0.030813498092527133],[112,307,77,0.03518072569460539],[112,307,78,0.03954784871115467],[112,307,79,0.043914312802322705],[112,308,64,-0.018995585330509497],[112,308,65,-0.014637212504653531],[112,308,66,-0.01027202850282239],[112,308,67,-0.005900818367558035],[112,308,68,-0.0015243552852469006],[112,308,69,0.0028566008685576502],[112,308,70,0.007241305009485395],[112,308,71,0.011629028350224148],[112,308,72,0.01601905993196931],[112,308,73,0.020410708181297414],[112,308,74,0.02480330249283849],[112,308,75,0.029196194837248293],[112,308,76,0.03358876139485495],[112,308,77,0.03798040421482876],[112,308,78,0.04237055289990284],[112,308,79,0.046758666316666544],[112,309,64,-0.016711271437606895],[112,309,65,-0.012312401802717712],[112,309,66,-0.007908066657238512],[112,309,67,-0.00349906305119687],[112,309,68,9.138255603563933E-4],[112,309,69,0.005329830828683629],[112,309,70,0.009748201048951882],[112,309,71,0.01416820272393253],[112,309,72,0.018589122153854776],[112,309,73,0.023010267052266373],[112,309,74,0.027430968188274812],[112,309,75,0.03185058105466901],[112,309,76,0.036268487562297974],[112,309,77,0.04068409776055415],[112,309,78,0.04509685158398867],[112,309,79,0.049506220625082004],[112,310,64,-0.014516232269189522],[112,310,65,-0.010077687054538834],[112,310,66,-0.005634990922200114],[112,310,67,-0.0011889529984137892],[112,310,68,0.0032596328926760842],[112,310,69,0.007709989796421637],[112,310,70,0.012161359221908308],[112,310,71,0.016613002762877083],[112,310,72,0.021064203745382815],[112,310,73,0.025514268902037576],[112,310,74,0.029962530073216934],[112,310,75,0.03440834593472408],[112,310,76,0.038851103752292435],[112,310,77,0.043290221162771564],[112,310,78,0.04772514798202647],[112,310,79,0.052155368039570396],[112,311,64,-0.01241176703936013],[112,311,65,-0.007934387998679418],[112,311,66,-0.0034541408544010305],[112,311,67,0.0010281531263718613],[112,311,68,0.0055116896531936105],[112,311,69,0.009995683035118316],[112,311,70,0.014479367830957157],[112,311,71,0.018962000526800887],[112,311,72,0.02344286124085429],[112,311,73,0.027921255455433752],[112,311,74,0.03239651577650689],[112,311,75,0.03686800372026684],[112,311,76,0.04133511152712249],[112,311,77,0.04579726400295127],[112,311,78,0.05025392038764187],[112,311,79,0.05470457625094946],[112,312,64,-0.010399105801119662],[112,312,65,-0.00588375458322081],[112,312,66,-0.0013667856145452434],[112,312,67,0.003150967636428137],[112,312,68,0.007668690319045227],[112,312,69,0.01218558787811616],[112,312,70,0.01670088775954605],[112,312,71,0.021213841143804923],[112,312,72,0.02572372470728812],[112,312,73,0.030229842411411925],[112,312,74,0.03473152731983045],[112,312,75,0.0392281434432597],[112,312,76,0.04371908761229576],[112,312,77,0.04820379137806914],[112,312,78,0.05268172294076616],[112,312,79,0.05715238910603754],[112,313,64,-0.008479408853791254],[112,313,65,-0.0039269663623198725],[112,313,66,6.258766465986332E-4],[112,313,67,0.005178274446786563],[112,313,68,0.009729401536856239],[112,313,69,0.014278454371975655],[112,313,70,0.018824653124200272],[112,313,71,0.023367243471216242],[112,313,72,0.027905498413547974],[112,313,73,0.03243872012007323],[112,313,74,0.03696624180223383],[112,313,75,0.04148742961642582],[112,313,76,0.046001684594957],[112,313,77,0.05050844460541429],[112,313,78,0.055007186338470515],[112,313,79,0.05949742732415256],[112,314,64,-0.006653766206106915],[112,314,65,-0.0020651319488942943],[112,314,66,0.002522719345564195],[112,314,67,0.007108929641311129],[112,314,68,0.011692662699157794],[112,314,69,0.016273105861882298],[112,314,70,0.020849471868564076],[112,314,71,0.025421000697904136],[112,314,72,0.029986961440575333],[112,314,73,0.03454665420045358],[112,314,74,0.03909941202511533],[112,314,75,0.043644602865082954],[112,314,76,0.04818163156220967],[112,314,77,0.05270994186704406],[112,314,78,0.05722901848520512],[112,314,79,0.06173838915278851],[112,315,64,-0.004923197094863108],[112,315,65,-2.992885233406295E-4],[112,315,66,0.004322687967075078],[112,315,67,0.00894186198285822],[112,315,68,0.013557386463483367],[112,315,69,0.01816843951934044],[112,315,70,0.022774226299353106],[112,315,71,0.02737398088814988],[112,315,72,0.0319669682328351],[112,315,73,0.036552486099204196],[112,315,74,0.04112986705779795],[112,315,75,0.04569848049926875],[112,315,76,0.0502577346794543],[112,315,77,0.05480707879399996],[112,315,78,0.059346005082557746],[112,315,79,0.06387405096258489],[112,316,64,-0.0032886495592107656],[112,316,65,0.0013695986016466766],[112,316,66,0.0060248005083858025],[112,316,67,0.010676073366459399],[112,316,68,0.015322559214075077],[112,316,69,0.01996342681208499],[112,316,70,0.024597873564146527],[112,316,71,0.02922512746699829],[112,316,72,0.03384444909090037],[112,316,73,0.03845513359008493],[112,316,74,0.043056512743608666],[112,316,75,0.04764795702608127],[112,316,76,0.05222887770866866],[112,316,77,0.05679872899020533],[112,316,78,0.06135701015845074],[112,316,79,0.06590326778150862],[112,317,64,-0.0017510000704976936],[112,317,65,0.0029406363602394736],[112,317,66,0.007628147867156654],[112,317,67,0.012310639215612262],[112,317,68,0.01698724146628877],[112,317,69,0.021657113916296433],[112,317,70,0.026319446071109615],[112,317,71,0.030973459647178403],[112,317,72,0.035618410605267964],[112,317,73,0.04025359121436636],[112,317,74,0.04487833214655729],[112,317,75,0.049492004602330136],[112,317,76,0.05409402246672371],[112,317,77,0.0586838444961425],[112,317,78,0.06326097653587703],[112,317,79,0.06782497376834798],[112,318,64,-3.1105321776300765E-4],[112,318,65,0.004413004256524161],[112,318,66,0.009131894172766941],[112,318,67,0.013844708821575957],[112,318,68,0.018550568213591134],[112,318,69,0.023248622071014607],[112,318,70,0.027938051850535994],[112,318,71,0.03261807279748877],[112,318,72,0.03728793603129352],[112,318,73,0.04194693066202501],[112,318,74,0.04659438593850415],[112,318,75,0.05122967342738283],[112,318,76,0.05585220922362083],[112,318,77,0.060461456192192536],[112,318,78,0.06505692624105522],[112,318,79,0.06963818262539886],[112,319,64,0.0010304585511728415],[112,319,65,0.005785954631485873],[112,319,66,0.010535277061116288],[112,319,67,0.01527750562572916],[112,319,68,0.020011749217207303],[112,319,69,0.0247371478748091],[112,319,70,0.02945287485827186],[112,319,71,0.03415813875270288],[112,319,72,0.03885218560530737],[112,319,73,0.04353430109379669],[112,319,74,0.04820381272687502],[112,319,75,0.05286009207627018],[112,319,76,0.05750255704071339],[112,319,77,0.0621306741417004],[112,319,78,0.06674396085106851],[112,319,79,0.07134198795040922],[113,-64,64,-0.07816188976123939],[113,-64,65,-0.08160141792585962],[113,-64,66,-0.0849392139496824],[113,-64,67,-0.08817383345612761],[113,-64,68,-0.0913039766288094],[113,-64,69,-0.09432849359986517],[113,-64,70,-0.09724638990042045],[113,-64,71,-0.1000568319730949],[113,-64,72,-0.10275915274656622],[113,-64,73,-0.10535285727211063],[113,-64,74,-0.10783762842234557],[113,-64,75,-0.1102133326518645],[113,-64,76,-0.11248002582000804],[113,-64,77,-0.11463795907565588],[113,-64,78,-0.11668758480408259],[113,-64,79,-0.11862956263586022],[113,-63,64,-0.07238668578091301],[113,-63,65,-0.07581475757231071],[113,-63,66,-0.07914173976577543],[113,-63,67,-0.08236618450248046],[113,-63,68,-0.0854867878785951],[113,-63,69,-0.08850239532553594],[113,-63,70,-0.09141200705238339],[113,-63,71,-0.09421478355037538],[113,-63,72,-0.0969100511594887],[113,-63,73,-0.09949730769703213],[113,-63,74,-0.10197622814847362],[113,-63,75,-0.10434667042019052],[113,-63,76,-0.10660868115439237],[113,-63,77,-0.10876250160609369],[113,-63,78,-0.11080857358218565],[113,-63,79,-0.1127475454425877],[113,-62,64,-0.06653644432070194],[113,-62,65,-0.06995233658288913],[113,-62,66,-0.07326780651192166],[113,-62,67,-0.07648140268582526],[113,-62,68,-0.07959181700784235],[113,-62,69,-0.08259789007818397],[113,-62,70,-0.08549861662798053],[113,-62,71,-0.08829315101533752],[113,-62,72,-0.09098081278351744],[113,-62,73,-0.09356109228115905],[113,-62,74,-0.09603365634476824],[113,-62,75,-0.09839835404316122],[113,-62,76,-0.10065522248411285],[113,-62,77,-0.102804492683088],[113,-62,78,-0.1048465954941038],[113,-62,79,-0.1067821676027022],[113,-61,64,-0.060615504230406625],[113,-61,65,-0.0640185008064813],[113,-61,66,-0.06732176670227397],[113,-61,67,-0.07052384685337387],[113,-61,68,-0.07362342886654594],[113,-61,69,-0.07661934838256768],[113,-61,70,-0.07951059450129594],[113,-61,71,-0.08229631526887227],[113,-61,72,-0.08497582322708364],[113,-61,73,-0.08754860102479389],[113,-61,74,-0.09001430709167779],[113,-61,75,-0.09237278137393867],[113,-61,76,-0.09462405113226413],[113,-61,77,-0.09676833680189534],[113,-61,78,-0.09880605791485852],[113,-61,79,-0.10073783908433986],[113,-60,64,-0.05462824626619445],[113,-60,65,-0.05801763846873387],[113,-60,66,-0.061308015682238426],[113,-60,67,-0.06449791912223579],[113,-60,68,-0.06758603199746038],[113,-60,69,-0.07057118486336611],[113,-60,70,-0.07345236103789743],[113,-60,71,-0.07622870207943166],[113,-60,72,-0.07889951332690714],[113,-60,73,-0.08146426950205421],[113,-60,74,-0.08392262037395781],[113,-60,75,-0.08627439648563728],[113,-60,76,-0.08851961494289362],[113,-60,77,-0.09065848526530151],[113,-60,78,-0.09269141529939617],[113,-60,79,-0.09461901719403232],[113,-59,64,-0.04857908815955447],[113,-59,65,-0.05195417523172119],[113,-59,66,-0.05523098667927595],[113,-59,67,-0.05840805992177145],[113,-59,68,-0.06148407367042297],[113,-59,69,-0.06445785327188847],[113,-59,70,-0.06732837611433984],[113,-59,71,-0.07009477709573608],[113,-59,72,-0.07275635415430981],[113,-59,73,-0.07531257386119083],[113,-59,74,-0.0777630770753901],[113,-59,75,-0.08010768466083085],[113,-59,76,-0.08234640326567921],[113,-59,77,-0.0844794311638486],[113,-59,78,-0.08650716415873116],[113,-59,79,-0.08843020154913106],[113,-58,64,-0.04247247956246436],[113,-58,65,-0.045832569129373724],[113,-58,66,-0.0490951457290304],[113,-58,67,-0.05225874291085986],[113,-58,68,-0.05532203479119224],[113,-58,69,-0.05828384138691434],[113,-58,70,-0.06114313401143834],[113,-58,71,-0.06389904073290276],[113,-58,72,-0.06655085189461929],[113,-58,73,-0.0690980256976843],[113,-58,74,-0.07154019384597998],[113,-58,75,-0.07387716725325633],[113,-58,76,-0.07610894181253858],[113,-58,77,-0.07823570422774129],[113,-58,78,-0.08025783790753727],[113,-58,79,-0.0821759289214592],[113,-57,64,-0.03631289686909733],[113,-57,65,-0.03965730537899681],[113,-57,66,-0.04290498647711716],[113,-57,67,-0.04605446977040639],[113,-57,68,-0.049104424685130654],[113,-57,69,-0.05205366578999948],[113,-57,70,-0.05490115818163932],[113,-57,71,-0.057646022932326124],[113,-57,72,-0.06028754259999558],[113,-57,73,-0.0628251668004467],[113,-57,74,-0.06525851784196313],[113,-57,75,-0.06758739642204636],[113,-57,76,-0.06981178738650307],[113,-57,77,-0.07193186555076903],[113,-57,78,-0.07394800158351589],[113,-57,79,-0.07586076795252183],[113,-56,64,-0.03010483791391838],[113,-56,65,-0.03343289106872804],[113,-56,66,-0.036665024856412654],[113,-56,67,-0.03979976487094128],[113,-56,68,-0.042835775755577066],[113,-56,69,-0.04577186651508869],[113,-56,70,-0.04860699589033757],[113,-56,71,-0.05134027779515482],[113,-56,72,-0.053970986815522703],[113,-56,73,-0.05649856377097873],[113,-56,74,-0.05892262133846837],[113,-56,75,-0.06124294973833544],[113,-56,76,-0.06345952248269704],[113,-56,77,-0.06557250218608324],[113,-56,78,-0.06758224643838984],[113,-56,79,-0.06948931374012268],[113,-55,64,-0.023852816546007016],[113,-55,65,-0.02716384972077146],[113,-55,66,-0.03037979363969212],[113,-55,67,-0.03349916981514567],[113,-55,68,-0.03652063801674965],[113,-55,69,-0.039443001572277314],[113,-55,70,-0.04226521273097639],[113,-55,71,-0.044986378089206136],[113,-55,72,-0.047605764078405666],[113,-55,73,-0.050122802515315534],[113,-55,74,-0.05253709621467384],[113,-55,75,-0.05484842466407858],[113,-55,76,-0.05705674976126529],[113,-55,77,-0.05916222161367368],[113,-55,78,-0.06116518440035923],[113,-55,79,-0.06306618229622107],[113,-54,64,-0.017561357079925233],[113,-54,65,-0.02085471573072384],[113,-54,66,-0.02405383686792395],[113,-54,67,-0.027157237855621963],[113,-54,68,-0.030163573501494123],[113,-54,69,-0.03307164134603846],[113,-54,70,-0.03588038701424867],[113,-54,71,-0.03858890962963313],[113,-54,72,-0.041196467290593564],[113,-54,73,-0.0437024826090846],[113,-54,74,-0.046106548311773965],[113,-54,75,-0.04840843290339958],[113,-54,76,-0.05060808639256542],[113,-54,77,-0.052705646079858726],[113,-54,78,-0.05470144240833508],[113,-54,79,-0.056596004876351524],[113,-53,64,-0.01123498862297101],[113,-53,65,-0.014510028682840459],[113,-53,66,-0.017691704154071064],[113,-53,67,-0.02077852818775383],[113,-53,68,-0.02376915054372386],[113,-53,69,-0.026662362867760026],[113,-53,70,-0.029457104031244352],[113,-53,71,-0.03215246553319184],[113,-53,72,-0.03474769696466806],[113,-53,73,-0.03724221153551566],[113,-53,74,-0.03963559166360564],[113,-53,75,-0.04192759462631501],[113,-53,76,-0.044118158274469965],[113,-53,77,-0.046207406808635665],[113,-53,78,-0.04819565661780345],[113,-53,79,-0.050083422180450365],[113,-52,64,-0.004878239278659713],[113,-52,65,-0.008134327541074238],[113,-52,66,-0.0112979448622329],[113,-52,67,-0.014367600117491719],[113,-52,68,-0.017341937935385965],[113,-52,69,-0.020219743962426207],[113,-52,70,-0.022999950190377705],[113,-52,71,-0.025681640345939005],[113,-52,72,-0.02826405534283427],[113,-52,73,-0.03074659879623942],[113,-52,74,-0.03312884259976079],[113,-52,75,-0.03541053256466653],[113,-52,76,-0.037591594121609395],[113,-52,77,-0.03967213808472325],[113,-52,78,-0.04165246647814169],[113,-52,79,-0.04353307842491805],[113,-51,64,0.001504369773252412],[113,-51,65,-0.00173214471620875],[113,-51,66,-0.004877102162447744],[113,-51,67,-0.007929007104382935],[113,-51,68,-0.010886498958275426],[113,-51,69,-0.01374835726976531],[113,-51,70,-0.01651350702841692],[113,-51,71,-0.0191810240446878],[113,-51,72,-0.021750140389337647],[113,-51,73,-0.02422024989519711],[113,-51,74,-0.02659091372151512],[113,-51,75,-0.02886186598058471],[113,-51,76,-0.03103301942688441],[113,-51,77,-0.03310447120862159],[113,-51,78,-0.035076508681722074],[113,-51,79,-0.03694961528624763],[113,-50,64,0.007908330320351209],[113,-50,65,0.004691999991065621],[113,-50,66,0.0015662930389936935],[113,-50,67,-0.0014672906796970864],[113,-50,68,-0.0044073852905432975],[113,-50,69,-0.007252764139712653],[113,-50,70,-0.01000234509546527],[113,-50,71,-0.012655195912064654],[113,-50,72,-0.015210539656151933],[113,-50,73,-0.017667760195508198],[113,-50,74,-0.020026407750417086],[113,-50,75,-0.022286204507332874],[113,-50,76,-0.024447050295089423],[113,-50,77,-0.026509028323535522],[113,-50,78,-0.028472410984642038],[113,-50,79,-0.030337665716061557],[113,-49,64,0.01432915328493145],[113,-49,65,0.011133605571310934],[113,-49,66,0.0080277282939053],[113,-49,67,0.005013025760533973],[113,-49,68,0.0020908692122757477],[113,-49,69,-7.375084020082578E-4],[113,-49,70,-0.0034710177137110554],[113,-49,71,-0.006108718284988712],[113,-49,72,-0.008649824021760288],[113,-49,73,-0.011093708649116518],[113,-49,74,-0.013439911249355507],[113,-49,75,-0.01568814186234868],[113,-49,76,-0.0178382871484708],[113,-49,77,-0.019890416113981457],[113,-49,78,-0.021844785898903596],[113,-49,79,-0.02370184762737748],[113,-48,64,0.0207623750148086],[113,-48,65,0.017588196111396392],[113,-48,66,0.014502715930888699],[113,-48,67,0.011507443287218755],[113,-48,68,0.00860375486137932],[113,-48,69,0.005792889989727379],[113,-48,70,0.0030759453897079014],[113,-48,71,4.5386982307937807E-4],[113,-48,72,-0.0020725413033726436],[113,-48,73,-0.0045026513995584105],[113,-48,74,-0.0068359882164547026],[113,-48,75,-0.009072249432830581],[113,-48,76,-0.011211308304562295],[113,-48,77,-0.013253219376421765],[113,-48,78,-0.015198224256386506],[113,-48,79,-0.01704675745244988],[113,-47,64,0.027203563697749122],[113,-47,65,0.0240513272236198],[113,-47,66,0.020986799498516895],[113,-47,67,0.01801149389482526],[113,-47,68,0.01512679260412697],[113,-47,69,0.012333941439614193],[113,-47,70,0.009634044575898337],[113,-47,71,0.0070280592262990105],[113,-47,72,0.004516790257595549],[113,-47,73,0.002100884742320508],[113,-47,74,-2.1917355161760188E-4],[113,-47,75,-0.002443069733692127],[113,-47,76,-0.004570663426124888],[113,-47,77,-0.006601994461753802],[113,-47,78,-0.00853728864444192],[113,-47,79,-0.0103769635720109],[113,-46,64,0.0336483258996747],[113,-46,65,0.030518592599056205],[113,-46,66,0.027475560333179105],[113,-46,67,0.024520747083076055],[113,-46,68,0.021655540618944813],[113,-46,69,0.018881193316988787],[113,-46,70,0.016198816913629788],[113,-46,71,0.01360937719717803],[113,-46,72,0.011113688636942842],[113,-46,73,0.008712408949862582],[113,-46,74,0.00640603360443992],[113,-46,75,0.004194890262276707],[113,-46,76,0.0020791331569737226],[113,-46,77,5.8737410510656396E-5],[113,-46,78,-0.0018665067129401969],[113,-46,79,-0.0036969996157477647],[113,-45,64,0.0400923132263199],[113,-45,65,0.03698563068480809],[113,-45,66,0.0339646242512599],[113,-45,67,0.031030816563393238],[113,-45,68,0.028185601035377816],[113,-45,69,0.025430236689410246],[113,-45,70,0.022765842924642232],[113,-45,71,0.020193394223541272],[113,-45,72,0.017713714795673297],[113,-45,73,0.015327473158979754],[113,-45,74,0.013035176658339975],[113,-45,75,0.010837165921710468],[113,-45,76,0.008733609253606778],[113,-45,77,0.006724496966044713],[113,-45,78,0.004809635646891963],[113,-45,79,0.0029886423656514394],[113,-44,64,0.04653122910849994],[113,-44,65,0.04344813148531845],[113,-44,66,0.040449668365811764],[113,-44,67,0.03753736709025379],[113,-44,68,0.034712626779451194],[113,-44,69,0.03197671318135609],[113,-44,70,0.029330753455010128],[113,-44,71,0.026775730891900884],[113,-44,72,0.024312479574717827],[113,-44,73,0.021941678973580236],[113,-44,74,0.019663848479533286],[113,-44,75,0.017479341875594856],[113,-44,76,0.015388341745126932],[113,-44,77,0.013390853817643933],[113,-44,78,0.011486701252009235],[113,-44,79,0.009675518857044874],[113,-43,64,0.05296083571116039],[113,-43,65,0.04990184348791382],[113,-43,66,0.04692642802789515],[113,-43,67,0.044036121417626695],[113,-43,68,0.04123232854451231],[113,-43,69,0.03851632195877919],[113,-43,70,0.035889236672732694],[113,-43,71,0.03335206489740172],[113,-43,72,0.030905650716562483],[113,-43,73,0.028550684698215978],[113,-43,74,0.026287698443309693],[113,-43,75,0.02411705907199213],[113,-43,76,0.022038963647170062],[113,-43,77,0.020053433535481058],[113,-43,78,0.018160308705636785],[113,-43,79,0.01635924196415528],[113,-42,64,0.05937696096587253],[113,-42,65,0.05634258071224496],[113,-42,66,0.053390703892244984],[113,-42,67,0.050522867380153436],[113,-42,68,0.047740481887213915],[113,-42,69,0.04504482683918909],[113,-42,70,0.042437045191210276],[113,-42,71,0.039918138179997786],[113,-42,72,0.03748896001344049],[113,-42,73,0.03515021249760686],[113,-42,74,0.032902439600983935],[113,-42,75,0.030746021956224112],[113,-42,76,0.02868117129918024],[113,-42,77,0.0267079248453318],[113,-42,78,0.02482613960356328],[113,-42,79,0.023035486627311474],[113,-41,64,0.06577550572694912],[113,-41,65,0.06276622988379787],[113,-41,66,0.059838369107442446],[113,-41,67,0.05699346509924785],[113,-41,68,0.054232934448815495],[113,-41,69,0.051558063527430864],[113,-41,70,0.04897000331878398],[113,-41,71,0.04646976418704252],[113,-41,72,0.04405821058226389],[113,-41,73,0.04173605568322025],[113,-41,74,0.039503855977431224],[113,-41,75,0.037362005778686425],[113,-41,76,0.03531073168183507],[113,-41,77,0.03335008695494879],[113,-41,78,0.03147994586881764],[113,-41,79,0.029699997963793967],[113,-40,64,0.07215245105132839],[113,-40,65,0.06916875773162312],[113,-40,66,0.06626537663073884],[113,-40,67,0.06344385431426547],[113,-40,68,0.060705613301952344],[113,-40,69,0.058051946977314084],[113,-40,70,0.0554840144344898],[113,-40,71,0.053002835262437986],[113,-40,72,0.05060928426644984],[113,-40,73,0.04830408612705739],[113,-40,74,0.046087809996132045],[113,-40,75,0.04396086403045285],[113,-40,76,0.041923489862522256],[113,-40,77,0.0399757570087399],[113,-40,78,0.03811755721488541],[113,-40,79,0.036348598738937365],[113,-39,64,0.07850386560191824],[113,-39,65,0.07554621840997688],[113,-39,66,0.07266776666722241],[113,-39,67,0.06987006183843025],[113,-39,68,0.06715453242256053],[113,-39,69,0.06452247887877827],[113,-39,70,0.06197506848971357],[113,-39,71,0.05951333016203397],[113,-39,72,0.05713814916432336],[113,-39,73,0.05485026180233188],[113,-39,74,0.05265025003140289],[113,-39,75,0.050538536006347945],[113,-39,76,0.048515376568554425],[113,-39,77,0.0465808576704303],[113,-39,78,0.04473488873714282],[113,-39,79,0.042977196965671816],[113,-38,64,0.08482591317454713],[113,-38,65,0.08189476104401805],[113,-38,66,0.07904167423347508],[113,-38,67,0.0762682091396677],[113,-38,68,0.07357580028710553],[113,-38,69,0.07096575527074478],[113,-38,70,0.06843924963589398],[113,-38,71,0.06599732169542216],[113,-38,72,0.06364086728424834],[113,-38,73,0.06137063445118951],[113,-38,74,0.05918721808796634],[113,-38,75,0.057091054495640337],[113,-38,76,0.05508241588826601],[113,-38,77,0.053161404833862],[113,-38,78,0.051327948632660436],[113,-38,79,0.04958179363265258],[113,-37,64,0.09111486034869554],[113,-37,65,0.08821063739973667],[113,-37,66,0.08538333684589339],[113,-37,67,0.08263452004651728],[113,-37,68,0.07996562759529247],[113,-37,69,0.07737797427982762],[113,-37,70,0.07487274397845423],[113,-37,71,0.07245098449430531],[113,-37,72,0.0701136023266632],[113,-37,73,0.06786135737964671],[113,-37,74,0.06569485760803984],[113,-37,75,0.06361455360053592],[113,-37,76,0.06162073310017879],[113,-37,77,0.059713515462107014],[113,-37,78,0.05789284604855982],[113,-37,79,0.056158490561161734],[113,-36,64,0.09736708426166008],[113,-36,65,0.094490209677765],[113,-36,66,0.0916891023333265],[113,-36,67,0.08896532857877815],[113,-36,68,0.0863203351179016],[113,-36,69,0.08375544398455725],[113,-36,70,0.08127184745660421],[113,-36,71,0.07887060290708559],[113,-36,72,0.07655262759266634],[113,-36,73,0.07431869337939334],[113,-36,74,0.07216942140558458],[113,-36,75,0.07010527668211264],[113,-36,76,0.06812656262987282],[113,-36,77,0.0662334155545381],[113,-36,78,0.06442579905855694],[113,-36,79,0.062703498390417],[113,-35,64,0.10357908050643727],[113,-35,65,0.10072995843136046],[113,-35,66,0.09795543677431628],[113,-35,67,0.09525708690317147],[113,-35,68,0.09263636167004541],[113,-35,69,0.09009459040540091],[113,-35,70,0.08763297384930935],[113,-35,71,0.08525257901996652],[113,-35,72,0.08295433401944496],[113,-35,73,0.08073902277675338],[113,-35,74,0.07860727972800907],[113,-35,75,0.07655958443399125],[113,-35,76,0.07459625613486065],[113,-35,77,0.07271744824215265],[113,-35,78,0.0709231427679975],[113,-35,79,0.06921314469159046],[113,-34,64,0.10974747115311989],[113,-34,65,0.10692649060834913],[113,-34,66,0.10417893255873267],[113,-34,67,0.10150637341381541],[113,-34,68,0.09891027220963267],[113,-34,69,0.09639196562037444],[113,-34,70,0.09395266290721083],[113,-34,71,0.09159344080435283],[113,-34,72,0.08931523834233435],[113,-34,73,0.08711885160858723],[113,-34,74,0.0850049284451152],[113,-34,75,0.08297396308353089],[113,-34,76,0.08102629071724887],[113,-34,77,0.07916208201093289],[113,-34,78,0.07738133754715992],[113,-34,79,0.07568388221031519],[113,-33,64,0.1158690128940767],[113,-33,65,0.11307654771730447],[113,-33,66,0.11035631657407818],[113,-33,67,0.10770990093778388],[113,-33,68,0.10513876606131578],[113,-33,69,0.10264425600651828],[113,-33,70,0.10022758861077719],[113,-33,71,0.09788985039082987],[113,-33,72,0.09563199138378575],[113,-33,73,0.09345481992542182],[113,-33,74,0.09135899736556552],[113,-33,75,0.08934503272082694],[113,-33,76,0.08741327726447035],[113,-33,77,0.08556391905352856],[113,-33,78,0.08379697739311742],[113,-33,79,0.08211229723796953],[113,-32,64,0.12194060531259299],[113,-32,65,0.11917701411763726],[113,-32,66,0.11648445851613465],[113,-32,67,0.11386452506542333],[113,-32,68,0.11131868526559507],[113,-32,69,0.10884829060691159],[113,-32,70,0.10645456755435612],[113,-32,71,0.10413861246939149],[113,-32,72,0.10190138646891345],[113,-32,73,0.09974371022146789],[113,-32,74,0.0976662586805398],[113,-32,75,0.09566955575517899],[113,-32,76,0.0937539689177519],[113,-32,77,0.09191970374892111],[113,-32,78,0.09016679841981479],[113,-32,79,0.08849511811139754],[113,-31,64,0.1279592992751234],[113,-31,65,0.12522492543374764],[113,-31,66,0.12256037932410613],[113,-31,67,0.11996725260558083],[113,-31,68,0.11744702305323251],[113,-31,69,0.11500104962337643],[113,-31,70,0.1126305674562823],[113,-31,71,0.11033668281606768],[113,-31,72,0.10812036796777291],[113,-31,73,0.1059824559916871],[113,-31,74,0.10392363553473505],[113,-31,75,0.1019444454991848],[113,-31,76,0.10004526966847072],[113,-31,77,0.09822633127023173],[113,-31,78,0.09648768747652348],[113,-31,79,0.09482922384122383],[113,-30,64,0.13392230544731742],[113,-30,65,0.13121747709340137],[113,-30,66,0.12858125974041923],[113,-30,67,0.12601525016590698],[113,-30,68,0.12352093244513773],[113,-30,69,0.12109967303503621],[113,-30,70,0.11875271579520275],[113,-30,71,0.11648117694612203],[113,-30,72,0.11428603996453846],[113,-30,73,0.11216815041607098],[113,-30,74,0.11012821072487766],[113,-30,75,0.10816677488062676],[113,-30,76,0.10628424308257356],[113,-30,77,0.10448085632083659],[113,-30,78,0.10275669089484041],[113,-30,79,0.10111165286893431],[113,-29,64,0.13982700293349648],[113,-29,65,0.13715203299000633],[113,-29,66,0.1345444489948565],[113,-29,67,0.13200585285790567],[113,-29,68,0.12953773497740162],[113,-29,69,0.12714146934240245],[113,-29,70,0.1248183085722947],[113,-29,71,0.12256937889348529],[113,-29,72,0.12039567505324855],[113,-29,73,0.11829805517080072],[113,-29,74,0.11627723552541303],[113,-29,75,0.11433378528181926],[113,-29,76,0.11246812115271687],[113,-29,77,0.11068050199845858],[113,-29,78,0.10897102336389419],[113,-29,79,0.10733961195238162],[113,-28,64,0.14567094803975478],[113,-28,65,0.14302613426896482],[113,-28,66,0.14044747361319787],[113,-28,67,0.137936573126908],[113,-28,68,0.13549492955164977],[113,-28,69,0.13312392443716348],[113,-28,70,0.1308248191995498],[113,-28,71,0.1285987501166037],[113,-28,72,0.1264467232602956],[113,-28,73,0.12436960936646668],[113,-28,74,0.12236813864155249],[113,-28,75,0.12044289550659149],[113,-28,76,0.11859431327831371],[113,-28,77,0.11682266878740932],[113,-28,78,0.11512807693393923],[113,-28,79,0.11351048517989981],[113,-27,64,0.1514518831608197],[113,-27,65,0.14883750823823505],[113,-27,66,0.14628804635050563],[113,-27,67,0.14380510970710703],[113,-27,68,0.14139020141085668],[113,-27,69,0.13904471059781465],[113,-27,70,0.1367699075142642],[113,-27,71,0.13456693853084134],[113,-27,72,0.1324368210938014],[113,-27,73,0.13038043861348658],[113,-27,74,0.1283985352898177],[113,-27,75,0.12649171087505362],[113,-27,76,0.12466041537362349],[113,-27,77,0.12290494367913052],[113,-27,78,0.12122543014848175],[113,-27,79,0.11962184311316848],[113,-26,64,0.15716774579037596],[113,-26,65,0.154584077402808],[113,-26,66,0.15206407524875687],[113,-26,67,0.14960935670135322],[113,-26,68,0.14722143124031917],[113,-26,69,0.14490169561082844],[113,-26,70,0.1426514289194334],[113,-26,71,0.14047178766713386],[113,-26,72,0.1383638007195721],[113,-26,73,0.13632836421441952],[113,-26,74,0.1343662364057765],[113,-26,75,0.13247803244583112],[113,-26,76,0.13066421910358206],[113,-26,77,0.12892510942071933],[113,-26,78,0.12726085730462644],[113,-26,79,0.12567145205851804],[113,-25,64,0.16281667765500663],[113,-25,65,0.16026396862324843],[113,-25,66,0.1577736728189736],[113,-25,67,0.15534741278586428],[113,-25,68,0.15298670439394257],[113,-25,69,0.1506929520175192],[113,-25,70,0.1484674436502036],[113,-25,71,0.1463113459570452],[113,-25,72,0.14422569926379125],[113,-25,73,0.14221141248332791],[113,-25,74,0.1402692579791257],[113,-25,75,0.1383998663659325],[113,-25,76,0.13660372124752396],[113,-25,77,0.1348811538916016],[113,-25,78,0.1332323378418011],[113,-25,79,0.1316572834668316],[113,-24,64,0.16839703397189376],[113,-24,65,0.16587552239845071],[113,-24,66,0.1634151653479996],[113,-24,67,0.16101759053999887],[113,-24,68,0.1586843202459881],[113,-24,69,0.15641676648675085],[113,-24,70,0.15421622616653374],[113,-24,71,0.1520838761443839],[113,-24,72,0.15002076824259813],[113,-24,73,0.1480278241923435],[113,-24,74,0.14610583051627568],[113,-24,75,0.14425543334839586],[113,-24,76,0.14247713319095523],[113,-24,77,0.14077127960849967],[113,-24,78,0.1391380658590169],[113,-24,79,0.13757752346220264],[113,-23,64,0.17390739282998569],[113,-23,65,0.171417302272307],[113,-23,66,0.16898710232962533],[113,-23,67,0.16661842590079168],[113,-23,68,0.1643128016679809],[113,-23,69,0.16207164931318596],[113,-23,70,0.1598962746717596],[113,-23,71,0.15778786482306884],[113,-23,72,0.1557474831182496],[113,-23,73,0.153776064145127],[113,-23,74,0.15187440863012625],[113,-23,75,0.15004317827741032],[113,-23,76,0.14828289054506183],[113,-23,77,0.14659391335839178],[113,-23,78,0.1449764597603479],[113,-23,79,0.1434305824990304],[113,-22,64,0.17934656469477928],[113,-22,65,0.1768881043644439],[113,-22,66,0.1744882660202104],[113,-22,67,0.17214868774240244],[113,-22,68,0.16987090463093113],[113,-22,69,0.1676563440412283],[113,-22,70,0.16550632075721905],[113,-22,71,0.16342203210140083],[113,-22,72,0.16140455298201561],[113,-22,73,0.15945483087737833],[113,-22,74,0.15757368075718903],[113,-22,75,0.15576177994106688],[113,-22,76,0.1540196628941154],[113,-22,77,0.15234771595961327],[113,-22,78,0.15074617202879181],[113,-22,79,0.14921510514771597],[113,-21,64,0.18471360203686493],[113,-21,65,0.18228696702517222],[113,-21,66,0.17991768111895545],[113,-21,67,0.177607387580631],[113,-21,68,0.17535762793301835],[113,-21,69,0.17316983721481172],[113,-21,70,0.17104533917308418],[113,-21,71,0.16898534139289267],[113,-21,72,0.16699093036396728],[113,-21,73,0.1650630664845505],[113,-21,74,0.1632025790022148],[113,-21,75,0.16141016089189153],[113,-21,76,0.15968636367092792],[113,-21,77,0.15803159215125961],[113,-21,78,0.15644609912866458],[113,-21,79,0.15492998000911318],[113,-20,64,0.19000780908393033],[113,-20,65,0.18761318061434296],[113,-20,66,0.18527462457251198],[113,-20,67,0.1829937894021858],[113,-20,68,0.18077222305242813],[113,-20,69,0.1786113682527214],[113,-20,70,0.17651255772509356],[113,-20,71,0.17447700933334231],[113,-20,72,0.17250582116933488],[113,-20,73,0.17059996657645127],[113,-20,74,0.16876028911000152],[113,-20,75,0.16698749743484587],[113,-20,76,0.16528216016003627],[113,-20,77,0.16364470061056868],[113,-20,78,0.1620753915362092],[113,-20,79,0.1605743497574098],[113,-19,64,0.19522875169639087],[113,-19,65,0.19286629740428385],[113,-19,66,0.19055863550410612],[113,-19,67,0.18830741961887987],[113,-19,68,0.1861142041255145],[113,-19,69,0.18398043944962128],[113,-19,70,0.1819074672973524],[113,-19,71,0.17989651582432453],[113,-19,72,0.17794869474161734],[113,-19,73,0.17606499035890633],[113,-19,74,0.17424626056456605],[113,-19,75,0.17249322974296766],[113,-19,76,0.17080648362879447],[113,-19,77,0.16918646409846028],[113,-19,78,0.1676334638985969],[113,-19,79,0.1661476213116243],[113,-18,64,0.2003762673667704],[113,-18,65,0.19804614160693523],[113,-18,66,0.19576952526729352],[113,-18,67,0.19354807714687772],[113,-18,68,0.1913833580504114],[113,-18,69,0.18927682610291574],[113,-18,70,0.18722983200133225],[113,-18,71,0.18524361420322766],[113,-18,72,0.18331929405256686],[113,-18,73,0.18145787084261467],[113,-18,74,0.17966021681580213],[113,-18,75,0.17792707210078373],[113,-18,76,0.17625903958650369],[113,-18,77,0.17465657973336346],[113,-18,78,0.1731200053214491],[113,-18,79,0.17164947613583958],[113,-17,64,0.20545047534254757],[113,-17,65,0.20315281952490205],[113,-17,66,0.20090738762406557],[113,-17,67,0.19871584361070438],[113,-17,68,0.19657975471580702],[113,-17,69,0.19450058676514903],[113,-17,70,0.1924796994507727],[113,-17,71,0.1905183415395405],[113,-17,72,0.18861764601875441],[113,-17,73,0.18677862517889665],[113,-17,74,0.18500216563333194],[113,-17,75,0.18328902327519414],[113,-17,76,0.18163981817127894],[113,-17,77,0.18005502939302986],[113,-17,78,0.17853498978458238],[113,-17,79,0.17707988066788116],[113,-16,64,0.21045178687263866],[113,-16,65,0.2081867298265916],[113,-16,66,0.2059726090474724],[113,-16,67,0.2038110936721912],[113,-16,68,0.20170375735504853],[113,-16,69,0.19965207362212234],[113,-16,70,0.19765741116266422],[113,-16,71,0.19572102905756728],[113,-16,72,0.19384407194489284],[113,-16,73,0.19202756512251506],[113,-16,74,0.19027240958772473],[113,-16,75,0.18857937701400806],[113,-16,76,0.18694910466483183],[113,-16,77,0.18538209024451457],[113,-16,78,0.18387868668615182],[113,-16,79,0.18243909687661086],[113,-15,64,0.2153809155775993],[113,-15,65,0.21314857394552345],[113,-15,66,0.21096587914885223],[113,-15,67,0.20883450548444038],[113,-15,68,0.2067560330256698],[113,-15,69,0.20473194299681163],[113,-15,70,0.20276361308439772],[113,-15,71,0.20085231268565662],[113,-15,72,0.19899919809400568],[113,-15,73,0.1972053076216569],[113,-15,74,0.1954715566591767],[113,-15,75,0.19379873267221992],[113,-15,76,0.19218749013526137],[113,-15,77,0.19063834540241253],[113,-15,78,0.18915167151528844],[113,-15,79,0.1877276929479379],[113,-14,64,0.22023888794333468],[113,-14,65,0.21803936660359502],[113,-14,66,0.21588820122944896],[113,-14,67,0.21378707127059637],[113,-14,68,0.21173756321411896],[113,-14,69,0.20974116597886838],[113,-14,70,0.20779926624685907],[113,-14,71,0.20591314373172342],[113,-14,72,0.20408396638422],[113,-14,73,0.20231278553484877],[113,-14,74,0.20060053097342234],[113,-14,75,0.19894800596579987],[113,-14,76,0.19735588220762235],[113,-14,77,0.1958246947151251],[113,-14,78,0.1943548366529978],[113,-14,79,0.19294655409930506],[113,-13,64,0.2250270539384066],[113,-13,65,0.2228604464583972],[113,-13,66,0.22074090295651239],[113,-13,67,0.2186701080275122],[113,-13,68,0.216649654565784],[113,-13,69,0.21468103917979775],[113,-13,70,0.2127656575435659],[113,-13,71,0.2109047996851594],[113,-13,72,0.20909964521227598],[113,-13,73,0.2073512584749102],[113,-13,74,0.20566058366497708],[113,-13,75,0.2040284398530966],[113,-13,76,0.20245551596237366],[113,-13,77,0.20094236567925372],[113,-13,78,0.19948940230142265],[113,-13,79,0.1980968935227625],[113,-12,64,0.2297470977550905],[113,-12,65,0.2276134868747276],[113,-12,66,0.22552564716403045],[113,-12,67,0.22348526835446736],[113,-12,68,0.221493949740464],[113,-12,69,0.21955319561396636],[113,-12,70,0.21766441063599984],[113,-12,71,0.2158288951452877],[113,-12,72,0.21404784040391445],[113,-12,73,0.21232232378009064],[113,-12,74,0.21065330386786774],[113,-12,75,0.20904161554401002],[113,-12,76,0.20748796496186062],[113,-12,77,0.2059929244822799],[113,-12,78,0.2045569275416239],[113,-12,79,0.20318026345677875],[113,-11,64,0.23440104867390255],[113,-11,65,0.2323005068200279],[113,-11,66,0.23024444277781764],[113,-11,67,0.22823455140665327],[113,-11,68,0.22627243839301114],[113,-11,69,0.2243596157051584],[113,-11,70,0.22249749698484933],[113,-11,71,0.22068739287607342],[113,-11,72,0.21893050629084876],[113,-11,73,0.21722792761211263],[113,-11,74,0.21558062983356097],[113,-11,75,0.21398946363664217],[113,-11,76,0.21245515240454194],[113,-11,77,0.2109782871732373],[113,-11,78,0.20955932151959178],[113,-11,79,0.20819856638649858],[113,-10,64,0.238991292051824],[113,-10,65,0.2369238818839644],[113,-10,66,0.2348996558651788],[113,-10,67,0.2329203139736551],[113,-10,68,0.23098746827936179],[113,-10,69,0.22910263841890655],[113,-10,70,0.22726724700739231],[113,-10,71,0.22548261498732391],[113,-10,72,0.22374995691455735],[113,-10,73,0.22207037618134362],[113,-10,74,0.22044486017632214],[113,-10,75,0.2188742753816616],[113,-10,76,0.21735936240719433],[113,-10,77,0.21590073096161466],[113,-10,78,0.21449885476071773],[113,-10,79,0.21315406637268453],[113,-9,64,0.24352058043406444],[113,-9,65,0.24148635542200247],[113,-9,66,0.23949402080900128],[113,-9,67,0.237545281682771],[113,-9,68,0.23564175648780872],[113,-9,69,0.2337849725204414],[113,-9,70,0.23197636136086186],[113,-9,71,0.23021725424221662],[113,-9,72,0.2285088773567343],[113,-9,73,0.2268523470989443],[113,-9,74,0.22524866524584475],[113,-9,75,0.2236987140742186],[113,-9,76,0.2222032514149357],[113,-9,77,0.2207629056443231],[113,-9,78,0.2193781706125697],[113,-9,79,0.21804940050917665],[113,-8,64,0.24799204478955922],[113,-8,65,0.24599104982316222],[113,-8,66,0.2440306516064613],[113,-8,67,0.2421125603273674],[113,-8,68,0.2402384007957058],[113,-8,69,0.23840970795845617],[113,-8,70,0.23662792235199026],[113,-8,71,0.23489438549135588],[113,-8,72,0.23321033519660117],[113,-8,73,0.23157690085618754],[113,-8,74,0.22999509862735268],[113,-8,75,0.2284658265736148],[113,-8,76,0.226989859739267],[113,-8,77,0.22556784516093542],[113,-8,78,0.22420029681616938],[113,-8,79,0.22288759050908025],[113,-7,64,0.25240920586997395],[113,-7,65,0.25044147790173343],[113,-7,66,0.24851305329212114],[113,-7,67,0.24662564732003822],[113,-7,68,0.24478089115137247],[113,-7,69,0.24298032737445385],[113,-7,70,0.2412254054725017],[113,-7,71,0.23951747723312167],[113,-7,72,0.23785779209483848],[113,-7,73,0.23624749243071752],[113,-7,74,0.2346876087689349],[113,-7,75,0.23317905495048818],[113,-7,76,0.2317226232238947],[113,-7,77,0.23031897927695333],[113,-7,78,0.22896865720553727],[113,-7,79,0.2276720544194335],[113,-6,64,0.25677598569231963],[113,-6,65,0.2548415544130498],[113,-6,66,0.252945133485521],[113,-6,67,0.2510884432706721],[113,-6,68,0.24927312128130968],[113,-6,69,0.24750071773778337],[113,-6,70,0.24577269106065602],[113,-6,71,0.24409040330042064],[113,-6,72,0.2424551155042527],[113,-6,73,0.24086798301985057],[113,-6,74,0.2393300507362245],[113,-6,75,0.2378422482616216],[113,-6,76,0.23640538503844244],[113,-6,77,0.2350201453952162],[113,-6,78,0.23368708353560774],[113,-6,79,0.2324066184644693],[113,-5,64,0.26109671914529786],[113,-5,65,0.2591956076934474],[113,-5,66,0.2573312140633845],[113,-5,67,0.2555052636895542],[113,-5,68,0.2537194004228445],[113,-5,69,0.2519751821064909],[113,-5,70,0.2502740760889739],[113,-5,71,0.24861745467396312],[113,-5,72,0.24700659050729779],[113,-5,73,0.24544265190105186],[113,-5,74,0.2439266980945467],[113,-5,75,0.24245967445250405],[113,-5,76,0.24104240760018247],[113,-5,77,0.2396756004955779],[113,-5,78,0.23835982743865092],[113,-5,79,0.23709552901760111],[113,-4,64,0.2653761657191382],[113,-4,65,0.26350839142416077],[113,-4,66,0.2616760429561993],[113,-4,67,0.2598808508152537],[113,-4,68,0.25812446518196125],[113,-4,69,0.2564084515137334],[113,-4,70,0.254734286077886],[113,-4,71,0.25310335142181406],[113,-4,72,0.2515169317802036],[113,-4,73,0.24997620841932677],[113,-4,74,0.2484822549182848],[113,-4,75,0.24703603238738925],[113,-4,76,0.24563838462352827],[113,-4,77,0.2442900332025938],[113,-4,78,0.24299157250893821],[113,-4,79,0.2417434647018737],[113,-3,64,0.26961952135906314],[113,-3,65,0.2677850965193005],[113,-3,66,0.26598480606930913],[113,-3,67,0.2642203855674416],[113,-3,68,0.2624934915164597],[113,-3,69,0.26080569697990513],[113,-3,70,0.25915848713546175],[113,-3,71,0.25755325476536717],[113,-3,72,0.25599129568385515],[113,-3,73,0.25447380410168224],[113,-3,74,0.2530018679276069],[113,-3,75,0.2515764640069983],[113,-3,76,0.2501984532974366],[113,-3,77,0.24886857598137047],[113,-3,78,0.24758744651580344],[113,-3,79,0.24635554861902575],[113,-2,64,0.273832430442468],[113,-2,65,0.27203136313799525],[113,-2,66,0.2702631393286037],[113,-2,67,0.2685294996247209],[113,-2,68,0.2668321068445265],[113,-2,69,0.2651725416505543],[113,-2,70,0.2635522981232923],[113,-2,71,0.26197277927182516],[113,-2,72,0.2604352924815101],[113,-2,73,0.25894104489873826],[113,-2,74,0.25749113875264623],[113,-2,75,0.25608656661395635],[113,-2,76,0.25472820659081163],[113,-2,77,0.25341681746166234],[113,-2,78,0.2521530337451888],[113,-2,79,0.2509373607072597],[113,-1,64,0.27802099787960777],[113,-1,65,0.2762532928204906],[113,-1,66,0.2745171408505998],[113,-1,67,0.2728142876272639],[113,-1,68,0.27114640227850834],[113,-1,69,0.26951507305988903],[113,-1,70,0.26792180294832474],[113,-1,71,0.2663680051729737],[113,-1,72,0.26485499868314216],[113,-1,73,0.26338400355327796],[113,-1,74,0.26195613632491466],[113,-1,75,0.2605724052857445],[113,-1,76,0.2592337056856858],[113,-1,77,0.2579408148900014],[113,-1,78,0.2566943874694526],[113,-1,79,0.25549495022749147],[113,0,64,0.2821918013378976],[113,0,65,0.28045746074831396],[113,0,66,0.2787533832370186],[113,0,67,0.2770813195043607],[113,0,68,0.27544294498399957],[113,0,69,0.2738398555199705],[113,0,70,0.2722735629807498],[113,0,71,0.2707454908103608],[113,0,72,0.2692569695165173],[113,0,73,0.2678092320958459],[113,0,74,0.26640340939606255],[113,0,75,0.26504052541527895],[113,0,76,0.2637214925382983],[113,0,77,0.26244710670996696],[113,0,78,0.26121804254555936],[113,0,79,0.260034848378201],[113,1,64,0.2863519035899361],[113,1,65,0.2846509281286086],[113,1,66,0.2829789259939699],[113,1,67,0.28133765292699103],[113,1,68,0.2797287906643471],[113,1,69,0.2781539426357131],[113,1,70,0.2766146295980598],[113,1,71,0.2751122852069914],[113,1,72,0.27364825152511796],[113,1,73,0.27222377446750884],[113,1,74,0.27083999918410107],[113,1,75,0.2694979653792343],[113,1,76,0.26819860256817907],[113,1,77,0.2669427252707174],[113,1,78,0.26573102814175814],[113,1,79,0.2645640810389931],[113,2,64,0.29050839819590746],[113,2,65,0.2888407885408305],[113,2,66,0.287200862577971],[113,2,67,0.2855903810876009],[113,2,68,0.284011032107996],[113,2,69,0.28246442665296406],[113,2,70,0.280952094366369],[113,2,71,0.2794754791136999],[113,2,72,0.278035934510675],[113,2,73,0.2766347193889238],[113,2,74,0.27527299319862836],[113,2,75,0.2739518113482879],[113,2,76,0.27267212048147615],[113,2,77,0.2714347536906561],[113,2,78,0.27024042566802364],[113,2,79,0.2690897277933943],[113,3,64,0.2946617613466848],[113,3,65,0.2930275282263745],[113,3,66,0.29141968965541937],[113,3,67,0.28984001144425187],[113,3,68,0.28829018792330513],[113,3,69,0.2867718376807764],[113,3,70,0.28528649923738975],[113,3,71,0.28383562665820433],[113,3,72,0.2824205851014555],[113,3,73,0.2810426463044766],[113,3,74,0.27970298400657917],[113,3,75,0.27840266930905627],[113,3,76,0.2771426659721804],[113,3,77,0.2759238256492567],[113,3,78,0.27474688305770806],[113,3,79,0.27361245108720134],[113,4,64,0.29880715661883994],[113,4,65,0.29720632718180395],[113,4,66,0.2956306044449608],[113,4,67,0.29408175922516805],[113,4,68,0.29256149212046945],[113,4,69,0.2910714292681129],[113,4,70,0.28961311803957257],[113,4,71,0.2881880226726118],[113,4,72,0.2867975198403852],[113,4,73,0.2854428941576185],[113,4,74,0.2841253336237493],[113,4,75,0.2828459250031927],[113,4,76,0.2816056491425998],[113,4,77,0.28040537622517475],[113,4,78,0.279245860962024],[113,4,79,0.27812773772054616],[113,5,64,0.3029396470961253],[113,5,65,0.301372263627371],[113,5,66,0.2998287011292421],[113,5,67,0.29831073538680797],[113,5,68,0.29682007322616594],[113,5,69,0.29535834829274366],[113,5,70,0.2939271167666062],[113,5,71,0.29252785301480855],[113,5,72,0.2911619451807867],[113,5,73,0.2898306907108293],[113,5,74,0.28853529181751303],[113,5,75,0.2872768508802629],[113,5,76,0.2860563657829093],[113,5,77,0.28487472518830353],[113,5,78,0.2837327037499688],[113,5,79,0.28263095726079357],[113,6,64,0.3070543388861376],[113,6,65,0.30552045736774497],[113,6,66,0.3040091140475719],[113,6,67,0.30252208962651467],[113,6,68,0.3010610971044419],[113,6,69,0.2996277775788192],[113,6,70,0.2982236959803404],[113,6,71,0.2968503367456093],[113,6,72,0.295509099426863],[113,6,73,0.2942012942387764],[113,6,74,0.2929281375422391],[113,6,75,0.291690747265255],[113,6,76,0.29049013826084447],[113,6,77,0.2893272176020092],[113,6,78,0.2882027798137329],[113,6,79,0.28711750204203124],[113,7,64,0.3111463837528496],[113,7,65,0.309646072466172],[113,7,66,0.30816702041055083],[113,7,67,0.3067110131364585],[113,7,68,0.3052797697488151],[113,7,69,0.3038749387259794],[113,7,70,0.3024980936757546],[113,7,71,0.30115072902844736],[113,7,72,0.2998342556669738],[113,7,73,0.29854999649405356],[113,7,74,0.29729918193637844],[113,7,75,0.29608294538591023],[113,7,76,0.2949023185781872],[113,7,77,0.2937582269076948],[113,7,78,0.29265148468028185],[113,7,79,0.29158279030262696],[113,8,64,0.31521098169746364],[113,8,65,0.3137443198665028],[113,8,66,0.31229764296213497],[113,8,67,0.31087274130459835],[113,8,68,0.30947134002099436],[113,8,69,0.30809509488469977],[113,8,70,0.3067455880918004],[113,8,71,0.30542432397458763],[113,8,72,0.3041327246521062],[113,8,73,0.30287212561779836],[113,8,74,0.30164377126413017],[113,8,75,0.3004488103443534],[113,8,76,0.29928829137128277],[113,8,77,0.2981631579531461],[113,8,78,0.2970742440664843],[113,8,79,0.296022269266112],[113,9,64,0.31924338348768927],[113,9,65,0.31781045996319873],[113,9,66,0.3163962525892448],[113,9,67,0.31500255636277],[113,9,68,0.31363110233632946],[113,9,69,0.3122835534779837],[113,9,70,0.310961500468226],[113,9,71,0.30966645743397764],[113,9,72,0.308399857619649],[113,9,73,0.30716304899530117],[113,9,74,0.3059572898018034],[113,9,75,0.30478374403313413],[113,9,76,0.3036434768557059],[113,9,77,0.3025374499647739],[113,9,78,0.3014665168779039],[113,9,79,0.300431418165509],[113,10,64,0.323238893135553],[113,10,65,0.32183980511941507],[113,10,66,0.3204581708790196],[113,10,67,0.319095789982008],[113,10,68,0.3177543992960951],[113,10,69,0.3164356688695123],[113,10,70,0.3151411977484928],[113,10,71,0.3138725097318422],[113,10,72,0.3126310490625836],[113,10,73,0.3114181760567157],[113,10,74,0.3102351626689825],[113,10,75,0.3090831879957932],[113,10,76,0.30796333371518264],[113,10,77,0.30687657946386604],[113,10,78,0.30582379815136457],[113,10,79,0.3048057512112136],[113,11,64,0.32719287032352723],[113,11,65,0.3258277221329569],[113,11,66,0.3244787726235101],[113,11,67,0.32314782581488616],[113,11,68,0.3218366242663975],[113,11,69,0.32054684497803015],[113,11,70,0.31928009522856626],[113,11,71,0.3180379083508037],[113,11,72,0.3168217394438675],[113,11,73,0.3156329610226496],[113,11,74,0.3144728586042734],[113,11,75,0.31334262623172643],[113,11,76,0.3122433619345472],[113,11,77,0.31117606312662127],[113,11,78,0.3101416219410654],[113,11,79,0.30914082050220704],[113,12,64,0.33110073277908864],[113,12,65,0.32976963465021075],[113,12,66,0.3284534882719133],[113,12,67,0.3271541019849884],[113,12,68,0.3258732239038086],[113,12,69,0.3246125378380821],[113,12,70,0.3233736591516899],[113,12,71,0.3221581305586395],[113,12,72,0.32096741785612687],[113,12,73,0.3198029055947464],[113,12,74,0.3186658926857456],[113,12,75,0.3175575879454638],[113,12,76,0.3164791055768459],[113,12,77,0.3154314605880828],[113,12,78,0.31441556414835814],[113,12,79,0.3134322188807109],[113,13,64,0.334957958597802],[113,13,65,0.3336610255281535],[113,13,66,0.332377806330454],[113,13,67,0.33111011352360786],[113,13,68,0.32985970062783465],[113,13,69,0.3286282581071995],[113,13,70,0.32741740924924867],[113,13,71,0.3262287059817817],[113,13,72,0.32506362462675764],[113,13,73,0.3239235615913671],[113,13,74,0.32280982899617494],[113,13,75,0.3217236502404675],[113,13,76,0.3206661555046972],[113,13,77,0.3196383771900753],[113,13,78,0.31864124529529625],[113,13,79,0.31767558273039503],[113,14,64,0.3387600885147175],[113,14,65,0.33749743914422303],[113,14,66,0.3362472757096931],[113,14,67,0.335011414753458],[113,14,68,0.3337916150399954],[113,14,69,0.33258957351931895],[113,14,70,0.33140692122749615],[113,14,71,0.330245219124333],[113,14,72,0.329105953868215],[113,14,73,0.3279905335281415],[113,14,74,0.3269002832328591],[113,14,75,0.3258364407572213],[113,14,76,0.3248001520456743],[113,14,77,0.3237924666729186],[113,14,78,0.3228143332417233],[113,14,79,0.32186659471790585],[113,15,64,0.3425027281242605],[113,15,65,0.34127448365423263],[113,15,66,0.3400575080194465],[113,15,67,0.33885362161957877],[113,15,68,0.3376645882897018],[113,15,69,0.3364921112846151],[113,15,70,0.3353378292003364],[113,15,71,0.3342033118327887],[113,15,72,0.33309005597367636],[113,15,73,0.3319994811435829],[113,15,74,0.3309329252621979],[113,15,75,0.32989164025580237],[113,15,76,0.3288767876019088],[113,15,77,0.3278894338111076],[113,15,78,0.3269305458460971],[113,15,79,0.32600098647790904],[113,16,64,0.3461815500484839],[113,16,65,0.3449878331981942],[113,16,66,0.343804179811181],[113,16,67,0.3426324139673037],[113,16,68,0.3414743043867942],[113,16,69,0.3403315604356158],[113,16,70,0.3392058280680185],[113,16,71,0.338098685706326],[113,16,72,0.33701164005794315],[113,16,73,0.3359461218696231],[113,16,74,0.3349034816188974],[113,16,75,0.33388498514279735],[113,16,76,0.33289180920376815],[113,16,77,0.33192503699282017],[113,16,78,0.33098565356990256],[113,16,79,0.330074541241504],[113,17,64,0.3497922960538508],[113,17,65,0.3486332300542259],[113,17,66,0.3474830347680606],[113,17,67,0.3463435377674629],[113,17,68,0.34521651246092006],[113,17,69,0.34410367411977283],[113,17,70,0.34300667584192857],[113,17,71,0.34192710445284175],[113,17,72,0.3408664763437581],[113,17,73,0.33982623324725414],[113,17,74,0.3388077379499819],[113,17,75,0.3378122699427436],[113,17,76,0.33684102100779634],[113,17,77,0.3358950907434371],[113,17,78,0.3349754820258463],[113,17,79,0.3340830964081985],[113,18,64,0.3533307791163483],[113,18,65,0.35220648674033633],[113,18,66,0.3510898858424374],[113,18,67,0.3499828072886132],[113,18,68,0.34888702896753876],[113,18,69,0.3478042718382809],[113,18,70,0.3467361959152598],[113,18,71,0.34568439619052294],[113,18,72,0.3446503984933264],[113,18,73,0.3436356552870553],[113,18,74,0.3426415414033954],[113,18,75,0.34166934971387714],[113,18,76,0.3407202867386954],[113,18,77,0.3397954681928522],[113,18,78,0.33889591446960393],[113,18,79,0.33802254606121934],[113,19,64,0.35679288543502885],[113,19,65,0.3557034880641879],[113,19,66,0.3546206173408871],[113,19,67,0.3535461072163981],[113,19,68,0.35248173984065917],[113,19,69,0.3514292416312455],[113,19,70,0.35039027927967165],[113,19,71,0.34936645569505625],[113,19,72,0.3483593058851444],[113,19,73,0.34737029277471604],[113,19,74,0.3464008029612986],[113,19,75,0.34545214240829786],[113,19,76,0.344525532075456],[113,19,77,0.34362210348668193],[113,19,78,0.34274289423523463],[113,19,79,0.34188884342626774],[113,20,64,0.36017457639406764],[113,20,65,0.35912019312092675],[113,20,66,0.35807118695687973],[113,20,67,0.3570293947201275],[113,20,68,0.35599660259239785],[113,20,69,0.35497454220929264],[113,20,70,0.3539648866880239],[113,20,71,0.35296924659256795],[113,20,72,0.3519891658362287],[113,20,73,0.3510261175216454],[113,20,74,0.35008149971815744],[113,20,75,0.3491566311766413],[113,20,76,0.3482527469817326],[113,20,77,0.34737099414147077],[113,20,78,0.3465124271143558],[113,20,79,0.3456780032738182],[113,21,64,0.36347189047315537],[113,21,65,0.36245263723889476],[113,21,66,0.3614376277508977],[113,21,67,0.3604287014663894],[113,21,68,0.35942764835917057],[113,21,69,0.3584362050314289],[113,21,70,0.3574560507629993],[113,21,71,0.3564888034981023],[113,21,72,0.3555360157695533],[113,21,73,0.3545991705604741],[113,21,74,0.3536796771034245],[113,21,75,0.35277886661706515],[113,21,76,0.35189798798026445],[113,21,77,0.3510382033436917],[113,21,78,0.35020058367887835],[113,21,79,0.34938610426475675],[113,22,64,0.3666809451063185],[113,22,65,0.3656969338733212],[113,22,66,0.36471605007810237],[113,22,67,0.3637401355797923],[113,22,68,0.36277098389461654],[113,22,69,0.36181033632925375],[113,22,70,0.3608598780517109],[113,22,71,0.35992123409974003],[113,22,72,0.3589959653267945],[113,22,73,0.3580855642855508],[113,22,74,0.3571914510489189],[113,22,75,0.35631496896864895],[113,22,76,0.35545738037144764],[113,22,77,0.35461986219264674],[113,22,78,0.35380350154740786],[113,22,79,0.3530092912394674],[113,23,64,0.36979793848925135],[113,23,65,0.36884927644807386],[113,23,66,0.3679026434636259],[113,23,67,0.3669598835509208],[113,23,68,0.36602279350933703],[113,23,69,0.3650931190776051],[113,23,70,0.3641725510263816],[113,23,71,0.36326272118844],[113,23,72,0.36236519842647114],[113,23,73,0.3614814845385205],[113,23,74,0.3606130101009894],[113,23,75,0.3597611302492996],[113,23,76,0.35892712039614344],[113,23,77,0.3581121718873571],[113,23,78,0.3573173875954006],[113,23,79,0.3565437774504524],[113,24,64,0.3728191513349858],[113,24,65,0.37190594014530026],[113,24,66,0.37099367842531983],[113,24,67,0.37008421209132847],[113,24,68,0.36917934095727434],[113,24,69,0.36828081491146286],[113,24,70,0.3673903300309161],[113,24,71,0.36650952463342606],[113,24,72,0.36563997526729697],[113,24,73,0.36478319263880127],[113,24,74,0.36394061747727763],[113,24,75,0.3631136163379721],[113,24,76,0.36230347734254054],[113,24,77,0.3615114058572536],[113,24,78,0.36073852010888663],[113,24,79,0.35998584673830136],[113,25,64,0.3757409485779941],[113,25,65,0.37486328364304683],[113,25,66,0.37398550824404975],[113,25,67,0.37310946993566374],[113,25,68,0.3722369712688224],[113,25,69,0.37136976598920435],[113,25,70,0.3705095551734596],[113,25,71,0.3696579833032138],[113,25,72,0.3688166342768441],[113,25,73,0.3679870273590547],[113,25,74,0.36717061306817944],[113,25,75,0.3663687690013089],[113,25,76,0.36558279559716644],[113,25,77,0.3648139118367691],[113,25,78,0.36406325088185776],[113,25,79,0.3633318556511053],[113,26,64,0.37855978102679144],[113,26,65,0.37771775080093273],[113,26,66,0.37687457068161023],[113,26,67,0.37603208959099993],[113,26,68,0.3751921125307461],[113,26,69,0.37435639680228605],[113,26,70,0.3735266481650211],[113,26,71,0.37270451693235407],[113,26,72,0.37189159400559113],[113,26,73,0.37108940684573277],[113,26,74,0.37029941538308286],[113,26,75,0.369523007864774],[113,26,76,0.36876149664013136],[113,26,77,0.3680161138839116],[113,26,78,0.367288007257405],[113,26,79,0.3665782355074018],[113,27,64,0.38127218696488663],[113,27,65,0.3804658722937174],[113,27,66,0.37965738964610296],[113,27,67,0.37884858903321134],[113,27,68,0.37804127761274625],[113,27,69,0.37723721593119064],[113,27,70,0.3764381141039947],[113,27,71,0.3756456279337284],[113,27,72,0.37486135496619444],[113,27,73,0.3740868304845279],[113,27,74,0.37332352344121345],[113,27,75,0.37257283232811245],[113,27,76,0.37183608098442894],[113,27,77,0.3711145143426471],[113,27,78,0.37040929411242807],[113,27,79,0.3697214944024713],[113,28,64,0.3838747937001643],[113,28,65,0.38310426719285035],[113,28,66,0.38233057680486016],[113,28,67,0.3815555733504808],[113,28,68,0.38078106584075877],[113,28,69,0.38000881774772555],[113,28,70,0.37924054320667067],[113,28,71,0.37847790315648444],[113,28,72,0.37772250141806624],[113,28,73,0.37697588071082044],[113,28,74,0.3762395186071773],[113,28,75,0.37551482342522596],[113,28,76,0.3748031300593903],[113,28,77,0.37410569574918134],[113,28,78,0.37342369578601253],[113,28,79,0.37275821915808266],[113,29,64,0.38636431906275936],[113,29,65,0.3856296444960648],[113,29,66,0.3848908331449826],[113,29,67,0.38414973633400484],[113,29,68,0.38340816461705296],[113,29,69,0.3826678840637413],[113,29,70,0.3819306124838002],[113,29,71,0.38119801558968114],[113,29,72,0.3804717030973347],[113,29,73,0.3797532247651909],[113,29,74,0.3790440663712737],[113,29,75,0.37834564562853756],[113,29,76,0.37765930803835984],[113,29,77,0.37698632268221893],[113,29,78,0.3763278779515464],[113,29,79,0.37568507721575933],[113,30,64,0.3887375728512888],[113,30,65,0.3880388046048746],[113,30,66,0.38733495048134564],[113,30,67,0.3866278620157526],[113,30,68,0.38591935098698393],[113,30,69,0.385211185726121],[113,30,70,0.38450508736306954],[113,30,71,0.3838027260114917],[113,30,72,0.38310571689202966],[113,30,73,0.38241561639384614],[113,30,74,0.3817339180744216],[113,30,75,0.38106204859768833],[113,30,76,0.38040136361043797],[113,30,77,0.3797531435570345],[113,30,78,0.3791185894324179],[113,30,79,0.378498818473406],[113,31,64,0.39099145822751263],[113,31,65,0.3903286407500523],[113,31,66,0.38965981291215446],[113,31,67,0.3889868261533558],[113,31,68,0.388311493152479],[113,31,69,0.3876355841581232],[113,31,70,0.38696082325755976],[113,31,71,0.3862888845840497],[113,31,72,0.38562138846258004],[113,31,73,0.38495989749404125],[113,31,74,0.38430591257778635],[113,31,75,0.3836608688726513],[113,31,76,0.38302613169637517],[113,31,77,0.38240299236344855],[113,31,78,0.38179266396138034],[113,31,79,0.3811962770653842],[113,32,64,0.39312297305948174],[113,32,65,0.39249614036514324],[113,32,66,0.3918623982221017],[113,32,67,0.39122359766218906],[113,32,68,0.39058155193231514],[113,32,69,0.38993803284713563],[113,32,70,0.3892947670802566],[113,32,71,0.3886534323939934],[113,32,72,0.38801565380768177],[113,32,73,0.3873829997045596],[113,32,74,0.3867569778771645],[113,32,75,0.38613903151132495],[113,32,76,0.38553053510868096],[113,32,77,0.3849327903477681],[113,32,78,0.3843470218836488],[113,32,79,0.3837743730860992],[113,33,64,0.3951292112130478],[113,33,65,0.39453838640789185],[113,33,66,0.3939397792330046],[113,33,67,0.39333523999451],[113,33,68,0.3927265821690593],[113,33,69,0.3921155787787084],[113,33,70,0.3915039587044733],[113,33,71,0.3908934029385793],[113,33,72,0.3902855407754013],[113,33,73,0.38968194594111294],[113,33,74,0.38908413266199415],[113,33,75,0.3884935516714679],[113,33,76,0.387911586155808],[113,33,77,0.38733954763854955],[113,33,78,0.38677867180358555],[113,33,79,0.3862301142569579],[113,34,64,0.39700736379180657],[113,34,65,0.39645255862964857],[113,34,66,0.39588912510198926],[113,34,67,0.3953189124657344],[113,34,68,0.39474373408274266],[113,34,69,0.3941653638169407],[113,34,70,0.39358553237026356],[113,34,71,0.39300592355743574],[113,34,72,0.3924281705195899],[113,34,73,0.39185385187673993],[113,34,74,0.39128448781906267],[113,34,75,0.3907215361370505],[113,34,76,0.390166388190487],[113,34,77,0.3896203648162671],[113,34,78,0.38908471217505347],[113,34,79,0.3885605975367733],[113,35,64,0.3987547203255156],[113,35,65,0.39823593479280417],[113,35,66,0.3977077025672705],[113,35,67,0.39717187152788835],[113,35,68,0.3966302545713163],[113,35,69,0.3960846260312691],[113,35,70,0.3955367180368723],[113,35,71,0.3949882168100093],[113,35,72,0.3944407589016603],[113,35,73,0.3938959273672518],[113,35,74,0.39335524788096604],[113,35,75,0.3928201847890782],[113,35,76,0.39229213710226857],[113,35,77,0.3917724344269341],[113,35,78,0.39126233283549183],[113,35,79,0.3907630106756742],[113,36,64,0.4003686699068858],[113,36,65,0.3998858918361443],[113,36,66,0.3993928771414174],[113,36,67,0.3988914719901331],[113,36,68,0.3983834884577791],[113,36,69,0.39787070096954535],[113,36,70,0.39735484268111076],[113,36,71,0.39683760179858574],[113,36,72,0.39632061783760797],[113,36,73,0.395805477821608],[113,36,74,0.39529371241920114],[113,36,75,0.3947867920207632],[113,36,76,0.39428612275414754],[113,36,77,0.39379304243956015],[113,36,78,0.39330881648358995],[113,36,79,0.39283463371239163],[113,37,64,0.40184670227680397],[113,37,65,0.40139990698818706],[113,37,66,0.4009421142521696],[113,37,67,0.400475168186422],[113,37,68,0.40000087968404074],[113,37,69,0.399521022877467],[113,37,70,0.39903733154172005],[113,37,71,0.39855149543695484],[113,37,72,0.3980651565903428],[113,37,73,0.39757990551729083],[113,37,74,0.397097277381956],[113,37,75,0.39661874809711506],[113,37,76,0.3961457303633405],[113,37,77,0.395679569647509],[113,37,78,0.39522154010062904],[113,37,79,0.39477284041499494],[113,38,64,0.4031864088580229],[113,38,65,0.4027755588285359],[113,38,66,0.40235298033083616],[113,38,67,0.40192051509032745],[113,38,68,0.401479972451555],[113,38,69,0.4010331258644002],[113,38,70,0.4005817093097642],[113,38,71,0.40012741366475535],[113,38,72,0.39967188300737444],[113,38,73,0.39921671086071586],[113,38,74,0.398763436376643],[113,38,75,0.39831354045899137],[113,38,76,0.3978684418262592],[113,38,77,0.39742949301380387],[113,38,78,0.396997976315537],[113,38,79,0.3965750996651216],[113,39,64,0.4043854837372286],[113,39,65,0.4040105282971605],[113,39,66,0.4036231438481892],[113,39,67,0.40322516937694397],[113,39,68,0.40281841230863247],[113,39,69,0.40240464501549744],[113,39,70,0.40198560126495264],[113,39,71,0.40156297260740204],[113,39,72,0.4011384047037454],[113,39,73,0.4007134935925808],[113,39,74,0.4002897818970682],[113,39,75,0.3998687549715049],[113,39,76,0.3994518369875717],[113,39,77,0.3990403869602707],[113,39,78,0.3986356947135459],[113,39,79,0.3982389767855897],[113,40,64,0.40544172459556177],[113,40,65,0.4051025996516804],[113,40,66,0.40475037629792665],[113,40,67,0.4043868904319482],[113,40,68,0.4040139471845089],[113,40,69,0.40363331745019204],[113,40,70,0.40324673435797476],[113,40,71,0.4028558896816797],[113,40,72,0.40246243019030337],[113,40,73,0.40206795393823447],[113,40,74,0.4016740064953268],[113,40,75,0.4012820771168728],[113,40,76,0.4008935948534438],[113,40,77,0.4005099246006114],[113,40,78,0.40013236308854505],[113,40,79,0.3997621348114875],[113,41,64,0.4063530335875441],[113,41,65,0.40604966137260423],[113,41,66,0.40573255312765777],[113,41,67,0.4054035413077616],[113,41,68,0.4050644283701215],[113,41,69,0.4047169833270172],[113,41,70,0.4043629382387965],[113,41,71,0.4040039846469481],[113,41,72,0.40364176994725154],[113,41,73,0.4032778937030143],[113,41,74,0.4029139038983661],[113,41,75,0.40255129313165383],[113,41,76,0.40219149474890004],[113,41,77,0.40183587891734607],[113,41,78,0.40148574863906916],[113,41,79,0.40114233570467805],[113,42,64,0.4071174181684615],[113,42,65,0.4068497070165738],[113,42,66,0.40656765461746247],[113,42,67,0.40627308962687503],[113,42,68,0.40596781144564614],[113,42,69,0.4056535867948067],[113,42,70,0.4053321462309725],[113,42,71,0.40500518060201984],[113,42,72,0.40467433744304326],[113,42,73,0.4043412173126104],[113,42,74,0.40400737006928167],[113,42,75,0.4036742910884362],[113,42,76,0.4033434174193716],[113,42,77,0.403016123882694],[113,42,78,0.40269371910799057],[113,42,79,0.40237744151178884],[113,43,64,0.40773299187014295],[113,43,65,0.4075008360175559],[113,43,66,0.4072537667059614],[113,43,67,0.4069936084322675],[113,43,68,0.40672215715473065],[113,43,69,0.406441176890209],[113,43,70,0.4061523962519095],[113,43,71,0.4058575049276373],[113,43,72,0.405558150098544],[113,43,73,0.4052559327983863],[113,43,74,0.4049524042132677],[113,43,75,0.4046490619218994],[113,43,76,0.40434734607635153],[113,43,77,0.4040486355233104],[113,43,78,0.4037542438658329],[113,43,79,0.4034654154656036],[113,44,64,0.4081979750251734],[113,44,65,0.4080012544360143],[113,44,66,0.40778908176393747],[113,44,67,0.40756327698495814],[113,44,68,0.4073256322254637],[113,44,69,0.4070779083815565],[113,44,70,0.4068218316791179],[113,44,71,0.4065590901745941],[113,44,72,0.406291330196507],[113,44,73,0.4060201527276963],[113,44,74,0.40574710972826983],[113,44,75,0.40547370039929487],[113,44,76,0.4052013673872037],[113,44,77,0.40493149292892794],[113,44,78,0.404665394937754],[113,44,79,0.40440432302990337],[113,45,64,0.4085106954395465],[113,45,65,0.4083492756560741],[113,45,66,0.40817189931551345],[113,45,67,0.4079803815087033],[113,45,68,0.4077765101380895],[113,45,69,0.4075620425590993],[113,45,70,0.40733870216246615],[113,45,71,0.4071081748975104],[113,45,72,0.4068721057363737],[113,45,73,0.40663209507921577],[113,45,74,0.40638969510035217],[113,45,75,0.4061464060353618],[113,45,76,0.40590367240914127],[113,45,77,0.405662879204918],[113,45,78,0.40542534797421564],[113,45,79,0.4051923328877763],[113,46,64,0.4086695890137243],[113,46,65,0.4085433210306421],[113,46,66,0.4084006267068545],[113,46,67,0.40824331588179796],[113,46,68,0.4080731718394302],[113,46,69,0.4078919479715641],[113,46,70,0.40770136438239535],[113,46,71,0.4075031044342214],[113,46,72,0.4072988112343549],[113,46,73,0.4070900840632371],[113,46,74,0.40687847474373173],[113,46,75,0.40666548395162727],[113,46,76,0.40645255746732417],[113,46,77,0.40624108236872003],[113,46,78,0.4060323831652862],[113,46,79,0.4058277178733398],[113,47,64,0.4086732003121323],[113,47,65,0.4085819204745096],[113,47,66,0.4084737797224187],[113,47,67,0.40835058227601345],[113,47,68,0.4082141064040425],[113,47,69,0.40806610110906816],[113,47,70,0.4079082827541231],[113,47,71,0.4077423316308072],[113,47,72,0.407569888468824],[113,47,73,0.4073925508869636],[113,47,74,0.40721186978551416],[113,47,75,0.4070293456801263],[113,47,76,0.40684642497710993],[113,47,77,0.4066644961901754],[113,47,78,0.406484886098613],[113,47,79,0.4063088558469131],[113,48,64,0.40852018308108007],[113,48,65,0.4084637130054347],[113,48,66,0.4083899831487562],[113,48,67,0.4083007917426647],[113,48,68,0.40819791164211017],[113,48,69,0.40808308703238627],[113,48,70,0.40795803007783893],[113,48,71,0.40782441751226817],[113,48,72,0.4076838871710245],[113,48,73,0.40753803446480463],[113,48,74,0.40738840879513244],[113,48,75,0.40723650991154425],[113,48,76,0.40708378421046304],[113,48,77,0.40693162097577007],[113,48,78,0.40678134856106907],[113,48,79,0.40663423051364667],[113,49,64,0.4082093007151044],[113,49,65,0.4081874472331923],[113,49,66,0.40814797128584],[113,49,67,0.4080926647457972],[113,49,68,0.40802329465405385],[113,49,69,0.4079415999485546],[113,49,70,0.40784928813486987],[113,49,71,0.4077480318988221],[113,49,72,0.40763946566106934],[113,49,73,0.40752518207364774],[113,49,74,0.4074067284584648],[113,49,75,0.4072856031877563],[113,49,76,0.4071632520064944],[113,49,77,0.4070410642967561],[113,49,78,0.40692036928404574],[113,49,79,0.4068024321855747],[113,50,64,0.4077394266717437],[113,50,65,0.4077519817966076],[113,50,66,0.4077465884059501],[113,50,67,0.40772503164250745],[113,50,68,0.40768907233187773],[113,50,69,0.40764044373282937],[113,50,70,0.4075808482298377],[113,50,71,0.4075119539678459],[113,50,72,0.4074353914292527],[113,50,73,0.4073527499531287],[113,50,74,0.40726557419665366],[113,50,75,0.407175360538786],[113,50,76,0.40708355342615454],[113,50,77,0.40699154166117857],[113,50,78,0.4069006546324129],[113,50,79,0.40681215848711977],[113,51,64,0.4071095448347296],[113,51,65,0.4071562857485561],[113,51,66,0.4071847891600893],[113,51,67,0.4071968331103834],[113,51,68,0.40719417180723794],[113,51,69,0.40717853239698704],[113,51,70,0.407151611678794],[113,51,71,0.40711507276144776],[113,51,72,0.4070705416626643],[113,51,73,0.40701960385089153],[113,51,74,0.4069638007296159],[113,51,75,0.4069046260641753],[113,51,76,0.4068435223510732],[113,51,77,0.40678187712979796],[113,51,78,0.4067210192371445],[113,51,79,0.40666221500404054],[113,52,64,0.40631874982561006],[113,52,65,0.40639943888894386],[113,52,66,0.40646163893194714],[113,52,67,0.4065071205220742],[113,52,68,0.4065376308462414],[113,52,69,0.4065548905039728],[113,52,70,0.40656059024333796],[113,52,71,0.4065563876396755],[113,52,72,0.40654390371710647],[113,52,73,0.4065247195128364],[113,52,74,0.40650037258424443],[113,52,75,0.4064723534587624],[113,52,76,0.40644210202654096],[113,52,77,0.40641100387590556],[113,52,78,0.40638038657159953],[113,52,79,0.4063515158758163],[113,53,64,0.40536624726380643],[113,53,65,0.40548063204567125],[113,53,66,0.40557631413941353],[113,53,67,0.40565505626699583],[113,53,68,0.4057185981909814],[113,53,69,0.40576865352890473],[113,53,70,0.4058069065107266],[113,53,71,0.4058350086793679],[113,53,72,0.40585457553432536],[113,53,73,0.4058671831183669],[113,53,74,0.40587436454731035],[113,53,75,0.4058776064828798],[113,53,76,0.4058783455486453],[113,53,77,0.40587796468904236],[113,53,78,0.4058777894714719],[113,53,79,0.40587908433148256],[113,54,64,0.4042513539750737],[113,54,65,0.4043991673035503],[113,54,66,0.40452810248361437],[113,54,67,0.4046399140201424],[113,54,68,0.40473633384778207],[113,54,69,0.4048190681664059],[113,54,70,0.40488979421994886],[113,54,71,0.4049501570186259],[113,54,72,0.4050017660045307],[113,54,73,0.40504619166061384],[113,54,74,0.4050849620630446],[113,54,75,0.40511955937695093],[113,54,76,0.40515141629553997],[113,54,77,0.4051819124226022],[113,54,78,0.40521237059839305],[113,54,79,0.40524405316889744],[113,55,64,0.40297349814840466],[113,55,65,0.40315445818121576],[113,55,66,0.40331640314550593],[113,55,67,0.40346107895804045],[113,55,68,0.4035902093221867],[113,55,69,0.403705492584299],[113,55,70,0.4038085985337969],[113,55,71,0.4039011651469302],[113,55,72,0.4039847952742322],[113,55,73,0.40406105327165925],[113,55,74,0.40413146157542323],[113,55,75,0.4041974972205068],[113,55,76,0.40426058830286893],[113,55,77,0.40432211038533983],[113,55,78,0.4043833828472013],[113,55,79,0.40444566517745806],[113,56,64,0.4015322194413692],[113,56,65,0.4017460297560186],[113,56,66,0.40194072693002014],[113,56,67,0.40211804792183886],[113,56,68,0.4022797078006817],[113,56,69,0.4024273966236543],[113,56,70,0.4025627762569275],[113,56,71,0.4026874771409039],[113,56,72,0.4028030949993888],[113,56,73,0.40291118749276134],[113,56,74,0.4030132708151529],[113,56,75,0.40311081623562384],[113,56,76,0.4032052465833449],[113,56,77,0.4032979326767823],[113,56,78,0.4033901896968832],[113,56,79,0.4034832735042668],[113,57,64,0.3999271690338431],[113,57,65,0.4001735187368618],[113,57,66,0.40040069635771874],[113,57,67,0.4006104295274915],[113,57,68,0.4008044242791179],[113,57,69,0.40098436194515596],[113,57,70,0.4011518959998771],[113,57,71,0.40130864884568057],[113,57,72,0.40145620854383524],[113,57,73,0.4015961254895411],[113,57,74,0.4017299090313238],[113,57,75,0.4018590240347465],[113,57,76,0.40198488739044913],[113,57,77,0.4021088644665135],[113,57,78,0.40223226550515095],[113,57,79,0.4023563419637177],[113,58,64,0.3981581096301946],[113,58,65,0.39843667348504075],[113,58,66,0.39869604570401895],[113,58,67,0.3989379442230962],[113,58,68,0.3991640656378872],[113,58,69,0.39937608212184006],[113,58,70,0.3995756382890848],[113,58,71,0.3997643480019336],[113,58,72,0.3999437911230361],[113,58,73,0.40011551021218383],[113,58,74,0.4002810071677785],[113,58,75,0.4004417398129439],[113,58,76,0.4005991184262973],[113,58,77,0.40075450221737363],[113,58,78,0.4009091957467027],[113,58,79,0.401064445290543],[113,59,64,0.3962249154099036],[113,59,65,0.39653535398306783],[113,59,66,0.39682662098596966],[113,59,67,0.3971004242933678],[113,59,68,0.3973584506638362],[113,59,69,0.39760236267818916],[113,59,70,0.39783379562290705],[113,59,71,0.3980543543185483],[113,59,72,0.3982656098931548],[113,59,73,0.3984690965006402],[113,59,74,0.3986663079841809],[113,59,75,0.3988586944845857],[113,59,76,0.3990476589936608],[113,59,77,0.3992345538525647],[113,59,78,0.3994206771951521],[113,59,79,0.3996072693363115],[113,60,64,0.39412757192656134],[113,60,65,0.3944695317514253],[113,60,66,0.3947923798965246],[113,60,67,0.3950978138111936],[113,60,68,0.39538751001886296],[113,60,69,0.39566312107553],[113,60,70,0.3959262724735715],[113,60,71,0.39617855949088837],[113,60,72,0.3964215439853855],[113,60,73,0.396656751134777],[113,60,74,0.3968856661217409],[113,60,75,0.3971097307643924],[113,60,76,0.39733034009209617],[113,60,77,0.39754883886661413],[113,60,78,0.39776651804858376],[113,60,79,0.39798461120933326],[113,61,64,0.3918661759553369],[113,61,65,0.3922392897133363],[113,61,66,0.392593391686399],[113,61,67,0.39293016853635554],[113,61,68,0.39325128615528354],[113,61,69,0.3935583866438174],[113,61,70,0.3938530852351534],[113,61,71,0.3941369671647353],[113,61,72,0.3944115844856262],[113,61,73,0.39467845282955544],[113,61,74,0.3949390481136661],[113,61,75,0.39519480319293],[113,61,76,0.3954471044582538],[113,61,77,0.39569728838026874],[113,61,78,0.3959466379988024],[113,61,79,0.3961963793580381],[113,62,64,0.38944093528887935],[113,62,65,0.3898448220075198],[113,62,66,0.3902298369934772],[113,62,67,0.3905976557613885],[113,62,68,0.39094993317793364],[113,62,69,0.3912883004597738],[113,62,70,0.39161436211754175],[113,62,71,0.391929692845871],[113,62,72,0.3922358343594664],[113,62,73,0.39253429217520835],[113,62,74,0.3928265323403148],[113,62,75,0.3931139781065266],[113,62,76,0.39339800655034196],[113,62,77,0.3936799451392913],[113,62,78,0.3939610682442517],[113,62,79,0.3942425935978052],[113,63,64,0.38685216848158505],[113,63,65,0.3872864337488605],[113,63,66,0.38770200761970397],[113,63,67,0.3881005541045061],[113,63,68,0.3884837166529425],[113,63,69,0.38885311517131915],[113,63,70,0.3892103429863342],[113,63,71,0.3895569637552423],[113,63,72,0.38989450832242456],[113,63,73,0.3902244715223553],[113,63,74,0.39054830892899145],[113,63,75,0.3908674335515475],[113,63,76,0.3911832124766851],[113,63,77,0.3914969634571056],[113,63,78,0.39180995144654673],[113,63,79,0.3921233850811862],[113,64,64,0.3841003045423548],[113,64,65,0.3845645407371191],[113,64,66,0.38501030625558086],[113,64,67,0.38543925324971584],[113,64,68,0.38585301336329536],[113,64,69,0.38625319476840814],[113,64,70,0.3866413791487723],[113,64,71,0.3870191186298179],[113,64,72,0.3873879326555481],[113,64,73,0.38774930481216485],[113,64,74,0.38810467959848916],[113,64,75,0.3884554591431377],[113,64,76,0.3888029998684833],[113,64,77,0.3891486091013896],[113,64,78,0.3894935416307196],[113,64,79,0.3898389962116225],[113,65,64,0.3811858825757369],[113,65,65,0.3816796691135766],[113,65,66,0.38215524615216484],[113,65,67,0.38261425363402196],[113,65,68,0.383058311011086],[113,65,69,0.3834890143001763],[113,65,70,0.383907933085623],[113,65,71,0.3843166074690449],[113,65,72,0.3847165449662823],[113,65,73,0.38510921735147147],[113,65,74,0.385496057448291],[113,65,75,0.385878455868341],[113,65,76,0.3862577576966829],[113,65,77,0.38663525912453073],[113,65,78,0.3870122040290934],[113,65,79,0.3873897805005718],[113,66,64,0.37810955137154395],[113,66,65,0.37863245496570275],[113,66,66,0.3791374507406585],[113,66,67,0.37962616608180133],[113,66,68,0.3801002078665439],[113,66,69,0.38056115953847897],[113,66,70,0.3810105781290887],[113,66,71,0.38144999122698475],[113,66,72,0.3818808938946877],[113,66,73,0.38230474553292804],[113,66,74,0.3827229666925078],[113,66,75,0.3831369358336736],[113,66,76,0.3835479860330353],[113,66,77,0.3839574016380203],[113,66,78,0.38436641486886025],[113,66,79,0.3847762023681181],[113,67,64,0.3748720689428127],[113,67,65,0.3754236438797173],[113,67,66,0.37595765319945834],[113,67,67,0.37647571138622615],[113,67,68,0.37697941236370996],[113,67,69,0.37747032658769847],[113,67,70,0.3779499980866207],[113,67,71,0.37841994145000846],[113,67,72,0.3788816387648863],[113,67,73,0.37933653650007276],[113,67,74,0.3797860423384342],[113,67,75,0.3802315219570355],[113,67,76,0.38067429575522993],[113,67,77,0.3811156355306709],[113,67,78,0.38155676110324843],[113,67,79,0.3819988368869539],[113,68,64,0.3714743020122615],[113,68,65,0.37205409044119764],[113,68,66,0.37261669596881897],[113,68,67,0.3731637198378822],[113,68,68,0.3736967426429092],[113,68,69,0.3742173214409665],[113,68,70,0.37472698681078465],[113,68,71,0.375227239860193],[113,68,72,0.37571954918187894],[113,68,73,0.3762053477574529],[113,68,74,0.3766860298098621],[113,68,75,0.37716294760409774],[113,68,76,0.37763740819623515],[113,68,77,0.37811067013079347],[113,68,78,0.3785839400864143],[113,68,79,0.37905836946986493],[113,69,64,0.3679172254471822],[113,69,65,0.36852475768367154],[113,69,66,0.36911553021306565],[113,69,67,0.3696911307005238],[113,69,68,0.37025312603996124],[113,69,69,0.37080305948274267],[113,69,70,0.3713424477151156],[113,69,71,0.3718727778843621],[113,69,72,0.37239550457367604],[113,69,73,0.3729120467257468],[113,69,74,0.3734237845150965],[113,69,75,0.37393205616910896],[113,69,76,0.3744381547377948],[113,69,77,0.37494332481227816],[113,69,78,0.3754487591920028],[113,69,79,0.3759555955006664],[113,70,64,0.36420192164266896],[113,70,65,0.3648367164850951],[113,70,66,0.36545521523026386],[113,70,67,0.3660589916338667],[113,70,68,0.36664959852203155],[113,70,69,0.3672285649376533],[113,70,70,0.3677973932358726],[113,70,71,0.36835755612867926],[113,70,72,0.36891049367864914],[113,70,73,0.36945761024179585],[113,70,74,0.37000027135958274],[113,70,75,0.370539800600034],[113,70,76,0.3710774763479903],[113,70,77,0.3716145285444924],[113,70,78,0.37215213537529324],[113,70,79,0.37269141990850396],[113,71,64,0.36032957985335734],[113,71,65,0.3609911449123918],[113,71,66,0.3616369178095129],[113,71,67,0.362268458063592],[113,71,68,0.3628873040702937],[113,71,69,0.36349497026575994],[113,71,70,0.3640929442398559],[113,71,71,0.3646826837989544],[113,71,72,0.3652656139782677],[113,71,73,0.3658431240037042],[113,71,74,0.3664165642033035],[113,71,75,0.36698724286817974],[113,71,76,0.3675564230630245],[113,71,77,0.36812531938615095],[113,71,78,0.3686950946790792],[113,71,79,0.3692668566856697],[113,72,64,0.3563014954735978],[113,72,65,0.3569893275139743],[113,72,66,0.3576619115357903],[113,72,67,0.3583207924984837],[113,72,68,0.35896749400932826],[113,72,69,0.35960351550418157],[113,72,70,0.3602303293782142],[113,72,71,0.3608493780665957],[113,72,72,0.36146207107514716],[113,72,73,0.36206978196093786],[113,72,74,0.36267384526287844],[113,72,75,0.36327555338224143],[113,72,76,0.36387615341316026],[113,72,77,0.36447684392308866],[113,72,78,0.3650787716832192],[113,72,79,0.3656830283488699],[113,73,64,0.35211906926595327],[113,73,65,0.35283265456014123],[113,73,66,0.35353157604223995],[113,73,67,0.3542173637945947],[113,73,68,0.3548915262831509],[113,73,69,0.3555555475549677],[113,73,70,0.3562108843861399],[113,73,71,0.35685896338009937],[113,73,72,0.3575011780163083],[113,73,73,0.3581388856493203],[113,73,74,0.35877340445826195],[113,73,75,0.359406010346667],[113,73,76,0.36003793379271276],[113,73,77,0.3606703566498402],[113,73,78,0.36130440889775917],[113,73,79,0.3619411653438445],[113,74,64,0.34778380653822016],[113,74,65,0.34852262123154587],[113,74,66,0.3492473962100964],[113,74,67,0.34995964636663396],[113,74,68,0.35066086467806346],[113,74,69,0.35135251941941076],[113,74,70,0.3520360513286378],[113,74,71,0.35271287072226787],[113,74,72,0.3533843545618315],[113,74,73,0.35405184347110874],[113,74,74,0.35471663870422454],[113,74,75,0.35537999906452344],[113,74,76,0.35604313777427626],[113,74,77,0.35670721929520177],[113,74,78,0.3573733560998014],[113,74,79,0.3580426053935153],[113,75,64,0.3432973162688829],[113,75,65,0.34406082675564814],[113,75,66,0.344810961316162],[113,75,67,0.34554921934648847],[113,75,68,0.34627707799224117],[113,75,69,0.3469959893787139],[113,75,70,0.347707377792286],[113,75,71,0.3484126368130716],[113,75,72,0.3491131263988239],[113,75,73,0.34981016992006997],[113,75,74,0.35050505114653563],[113,75,75,0.35119901118478064],[113,75,76,0.3518932453671042],[113,75,77,0.3525889000916977],[113,75,78,0.3532870696140457],[113,75,79,0.3539887927895838],[113,76,64,0.338661310180881],[113,76,65,0.3394489734910294],[113,76,66,0.3402239641277115],[113,76,67,0.3409877656887611],[113,76,68,0.34174183915193795],[113,76,69,0.3424876201208964],[113,76,70,0.34322651602286974],[113,76,71,0.3439599032580367],[113,76,72,0.3446891243005847],[113,76,73,0.34541548475144035],[113,76,74,0.34614025034273244],[113,76,75,0.3468646438939038],[113,76,76,0.3475898422195325],[113,76,77,0.3483169729888397],[113,76,78,0.3490471115368874],[113,76,79,0.3497812776274708],[113,77,64,0.3338776017639116],[113,77,65,0.33468886595979147],[113,77,66,0.33548819994504975],[113,77,67,0.33627707122354156],[113,77,68,0.3370569242745258],[113,77,69,0.3378291778141517],[113,77,70,0.33859522200910347],[113,77,71,0.33935641564237395],[113,77,72,0.3401140832311781],[113,77,73,0.3408695120969779],[113,77,74,0.34162394938768537],[113,77,75,0.34237859905195805],[113,77,76,0.3431346187656476],[113,77,77,0.3438931168103816],[113,77,78,0.3446551489042772],[113,77,79,0.3454217149847951],[113,78,64,0.32894810524516455],[113,78,65,0.3297824098279381],[113,78,66,0.33060556559161774],[113,78,67,0.3314190236563124],[113,78,68,0.33222421167827126],[113,78,69,0.33302253112655966],[113,78,70,0.33381535451234323],[113,78,71,0.3346040225707497],[113,78,72,0.33538984139531924],[113,78,73,0.3361740795250151],[113,78,74,0.33695796498386354],[113,78,75,0.3377426822731314],[113,78,76,0.33852936931611033],[113,78,77,0.3393191143554791],[113,78,78,0.34011295280324993],[113,78,79,0.3409118640433032],[113,79,64,0.3238748345083601],[113,79,65,0.32473161083360846],[113,79,66,0.325578058351518],[113,79,67,0.3264156115148589],[113,79,68,0.32724568083871663],[113,79,69,0.32806965019202505],[113,79,70,0.3288888740421615],[113,79,71,0.3297046746525733],[113,79,72,0.3305183392334456],[113,79,73,0.331331117045383],[113,79,74,0.33214421645617564],[113,79,75,0.3329588019505547],[113,79,76,0.333775991093008],[113,79,77,0.33459685144362905],[113,79,78,0.3354223974270014],[113,79,79,0.33625358715412723],[113,80,64,0.3186599019613319],[113,80,65,0.3195385736634063],[113,80,66,0.32040777485470295],[113,80,67,0.3212689230434248],[113,80,68,0.32212341129190936],[113,80,69,0.3229726055226806],[113,80,70,0.3238178417780215],[113,80,71,0.3246604234330357],[113,80,72,0.325501618362209],[113,80,73,0.3263426560594406],[113,80,74,0.3271847247116191],[113,80,75,0.3280289682256443],[113,80,76,0.3288764832089663],[113,80,77,0.3297283159036175],[113,80,78,0.33058545907373693],[113,80,79,0.33144884884659603],[113,81,64,0.3133055173520438],[113,81,65,0.31420550077671067],[113,81,66,0.31509690990971045],[113,81,67,0.31598114504400066],[113,81,68,0.31685958148436555],[113,81,69,0.31773356686764376],[113,81,70,0.3186044184369406],[113,81,71,0.31947342026979],[113,81,72,0.32034182046027854],[113,81,73,0.32121082825510205],[113,81,74,0.3220816111436279],[113,81,75,0.3229552919018648],[113,81,76,0.32383294559041353],[113,81,77,0.32471559650637094],[113,81,78,0.3256042150891884],[113,81,79,0.3264997147804945],[113,82,64,0.3078139865328969],[113,82,65,0.3087346911778286],[113,82,66,0.30964775528381033],[113,82,67,0.3105545616646074],[113,82,68,0.31145646756962964],[113,82,69,0.31235480201798893],[113,82,70,0.313250863087007],[113,82,71,0.3141459151551379],[113,82,72,0.31504118609932047],[113,82,73,0.3159378644467273],[113,82,74,0.3168370964809861],[113,82,75,0.3177399833027754],[113,82,76,0.3186475778448651],[113,82,77,0.3195608818415778],[113,82,78,0.3204808427526698],[113,82,79,0.3214083506416425],[113,83,64,0.30218771017359375],[113,83,65,0.30312853913625354],[113,83,66,0.30406269843082245],[113,83,67,0.30499155313483467],[113,83,68,0.30591644215169134],[113,83,69,0.30683867555819494],[113,83,70,0.307759531907005],[113,83,71,0.30868025548397815],[113,83,72,0.30960205352040726],[113,83,73,0.31052609336012627],[113,83,74,0.31145349958155966],[113,83,75,0.3123853510746123],[113,83,76,0.31332267807247627],[113,83,77,0.3142664591383281],[113,83,78,0.3152176181069139],[113,83,79,0.31617702098103584],[113,84,64,0.29642918242243643],[113,84,65,0.2973895328549061],[113,84,66,0.2983442211664835],[113,84,67,0.2992945944485141],[113,84,68,0.30024197297513805],[113,84,69,0.3011876475639463],[113,84,70,0.3021328768920318],[113,84,71,0.30307888476739775],[113,84,72,0.3040268573557396],[113,84,73,0.3049779403625642],[113,84,74,0.305933236170728],[113,84,75,0.3068938009332892],[113,84,76,0.30786064162174925],[113,84,77,0.3088347130296577],[113,84,78,0.3098169147315796],[113,84,79,0.3108080879974371],[113,85,64,0.29054098951590346],[113,85,65,0.2915202530862056],[113,85,66,0.2924948982912131],[113,85,67,0.2934662539933744],[113,85,68,0.29443562156189185],[113,85,69,0.2954042722461395],[113,85,70,0.2963734445049534],[113,85,71,0.2973443412917565],[113,85,72,0.2983181272955325],[113,85,73,0.29929592613761435],[113,85,74,0.3002788175243692],[113,85,75,0.30126783435567217],[113,85,76,0.30226395978924764],[113,85,77,0.30326812426085],[113,85,78,0.30428120246028356],[113,85,79,0.3053040102632739],[113,86,64,0.2845258083367953],[113,86,65,0.2855233716962581],[113,86,66,0.28651739616056215],[113,86,67,0.2875091921279644],[113,86,68,0.2885000417948151],[113,86,69,0.2894911965413746],[113,86,70,0.2904838742739833],[113,86,71,0.2914792567235455],[113,86,72,0.29247848670034293],[113,86,73,0.2934826653051413],[113,86,74,0.294492849096675],[113,86,75,0.29551004721539975],[113,86,76,0.2965352184635922],[113,86,77,0.29756926834176933],[113,86,78,0.29861304604142747],[113,86,79,0.2996673413941113],[113,87,64,0.27838640492081257],[113,87,65,0.2794016501770264],[113,87,66,0.28041447120321056],[113,87,67,0.2814261597057084],[113,87,68,0.28243797844805],[113,87,69,0.28345115864880105],[113,87,70,0.28446689733624936],[113,87,71,0.285486354659888],[113,87,72,0.28651065115871],[113,87,73,0.2875408649862793],[113,87,74,0.28857802909266506],[113,87,75,0.2896231283631227],[113,87,76,0.29067709671360886],[113,87,77,0.29174081414309627],[113,87,78,0.2928151037426927],[113,87,79,0.2939007286615728],[113,88,64,0.2721256329114041],[113,88,65,0.2731579381063213],[113,88,66,0.2741889683863534],[113,88,67,0.2752199965459361],[113,88,68,0.2762522656639347],[113,88,69,0.2772869865131579],[113,88,70,0.2783253349271928],[113,88,71,0.27936844912452363],[113,88,72,0.280417426989948],[113,88,73,0.2814733233132533],[113,88,74,0.2825371469852451],[113,88,75,0.28360985815100637],[113,88,76,0.28469236532047526],[113,88,77,0.28578552243631183],[113,88,78,0.2868901258990515],[113,88,79,0.2880069115495595],[113,89,64,0.2657464319632116],[113,89,65,0.2667951715559368],[113,89,66,0.2678438196287979],[113,89,67,0.2688936298522054],[113,89,68,0.2699458253768143],[113,89,69,0.2710015962543282],[113,89,70,0.2720620968161152],[113,89,71,0.27312844300959477],[113,89,72,0.27420170969241076],[113,89,73,0.27528292788435366],[113,89,74,0.27637308197712274],[113,89,75,0.27747310690180726],[113,89,76,0.2785838852541752],[113,89,77,0.2797062443777398],[113,89,78,0.2808409534045997],[113,89,79,0.28198872025406957],[113,90,64,0.25925182609383635],[113,90,65,0.2603163714476592],[113,90,66,0.2613820421615003],[113,90,67,0.26245007257765196],[113,90,68,0.2635216656834787],[113,90,69,0.2645979905431388],[113,90,70,0.26568017968760815],[113,90,71,0.26676932646296636],[113,90,72,0.2678664823369595],[113,90,73,0.26897265416380267],[113,90,74,0.27008880140731506],[113,90,75,0.27121583332226246],[113,90,76,0.2723546060940013],[113,90,77,0.2735059199363873],[113,90,78,0.274670516147953],[113,90,79,0.2758490741263644],[113,91,64,0.2526449219841417],[113,91,65,0.2537246418573591],[113,91,66,0.25480673683575483],[113,91,67,0.25589242173757265],[113,91,68,0.25698287916043705],[113,91,69,0.2580792569236147],[113,91,70,0.25918266546907254],[113,91,71,0.26029417522128984],[113,91,72,0.2614148139058424],[113,91,73,0.26254556382671806],[113,91,74,0.26368735910245733],[113,91,75,0.2648410828609976],[113,91,76,0.26600756439330775],[113,91,77,0.26718757626578504],[113,91,78,0.2683818313914109],[113,91,79,0.26959098005967985],[113,92,64,0.24592890722679586],[113,92,65,0.24702316826687565],[113,92,66,0.2481210863787394],[113,92,67,0.24922385666895214],[113,92,68,0.25033264112773723],[113,92,69,0.2514485660813991],[113,92,70,0.25257271960403904],[113,92,71,0.2537061488885202],[113,92,72,0.2548498575766999],[113,92,73,0.2560048030488874],[113,92,74,0.2571718936726252],[113,92,75,0.2583519860106649],[113,92,76,0.2595458819882325],[113,92,77,0.26075432601954873],[113,92,78,0.26197800209360456],[113,92,79,0.26321753081920585],[113,93,64,0.23910704852340625],[113,93,65,0.24021521576404004],[113,93,66,0.24132835359676927],[113,93,67,0.2424476372372807],[113,93,68,0.2435742078596771],[113,93,69,0.2447091700586817],[113,93,70,0.24585358927163392],[113,93,71,0.24700848916023074],[113,93,72,0.24817484895203304],[113,93,73,0.24935360074169405],[113,93,74,0.25054562675200887],[113,93,75,0.2517517565546558],[113,93,76,0.2529727642507238],[113,93,77,0.2542093656109925],[113,93,78,0.25546221517596424],[113,93,79,0.25673190331566303],[113,94,64,0.23218268983008386],[113,94,65,0.23330412719067947],[113,94,66,0.23443187952609754],[113,94,67,0.235567101990503],[113,94,68,0.23671091474224856],[113,94,69,0.23786440041548013],[113,94,70,0.23902860155203196],[113,94,71,0.24020451799356787],[113,94,72,0.241393104233985],[113,94,73,0.24259526673203832],[113,94,74,0.2438118611842866],[113,94,75,0.24504368975822732],[113,94,76,0.24629149828571759],[113,94,77,0.24755597341664556],[113,94,78,0.24883773973285409],[113,94,79,0.2501373568223285],[113,95,64,0.22515925045125879],[113,95,65,0.22629332123842247],[113,95,66,0.22743508153108383],[113,95,67,0.22858566625992016],[113,95,68,0.2297461743771376],[113,95,69,0.23091766633709512],[113,95,70,0.2321011615377202],[113,95,71,0.23329763572266976],[113,95,72,0.2345080183442536],[113,95,73,0.23573318988707956],[113,95,74,0.2369739791525211],[113,95,75,0.23823116050387272],[113,95,76,0.23950545107229254],[113,95,77,0.2407975079234957],[113,95,78,0.24210792518519972],[113,95,79,0.24343723113533622],[113,96,64,0.21804022308209386],[113,96,65,0.21918629049264995],[113,96,66,0.22034145135007635],[113,96,67,0.22150682020838913],[113,96,68,0.2226834746326211],[113,96,69,0.22387245268808226],[113,96,70,0.225074750390914],[113,96,71,0.22629131911988923],[113,96,72,0.22752306298947822],[113,96,73,0.22877083618413624],[113,96,74,0.23003544025391578],[113,96,75,0.23131762137126885],[113,96,76,0.23261806754913694],[113,96,77,0.23393740582029435],[113,96,78,0.23527619937794458],[113,96,79,0.23663494467758428],[113,97,64,0.21082917179932958],[113,97,65,0.2119865994244291],[113,97,66,0.21315455308884268],[113,97,67,0.21433412682565495],[113,97,68,0.2155263766412003],[113,97,69,0.21673231801257814],[113,97,70,0.21795292334696154],[113,97,71,0.2191891194026583],[113,97,72,0.22044178467193815],[113,97,73,0.22171174672558328],[113,97,74,0.2229997795192706],[113,97,75,0.22430660066164226],[113,97,76,0.22563286864416804],[113,97,77,0.22697918003276488],[113,97,78,0.22834606662117077],[113,97,79,0.22973399254609028],[113,98,64,0.2035297300003716],[113,98,65,0.20469788233023892],[113,98,66,0.2058780211613601],[113,98,67,0.2070712198706266],[113,98,68,0.20827851274377868],[113,98,69,0.20950089248078954],[113,98,70,0.21073930766355023],[113,98,71,0.21199466018580768],[113,98,72,0.21326780264537365],[113,98,73,0.21455953569856054],[113,98,74,0.21587060537695268],[113,98,75,0.2172017003663684],[113,98,76,0.21855344924811937],[113,98,77,0.21992641770252885],[113,98,78,0.22132110567470925],[113,98,79,0.2227379445026137],[113,99,64,0.19614559829098424],[113,99,65,0.19732384121985022],[113,99,66,0.19851555817832697],[113,99,67,0.1997218017609603],[113,99,68,0.2009435843807474],[113,99,69,0.20218187578201044],[113,99,70,0.20343760051607365],[113,99,71,0.20471163537969791],[113,99,72,0.20600480681629088],[113,99,73,0.20731788827984812],[113,99,74,0.2086515975617339],[113,99,75,0.21000659408015715],[113,99,76,0.21138347613244907],[113,99,77,0.2127827781101035],[113,99,78,0.2142049676765811],[113,99,79,0.21565044290789281],[113,100,64,0.18868054232141543],[113,100,65,0.18986824365218805],[113,100,66,0.1910709327832243],[113,100,67,0.19228964140977328],[113,100,68,0.19352535992980502],[113,100,69,0.19477903496398996],[113,100,70,0.1960515668389868],[113,100,71,0.1973438070339933],[113,100,72,0.19865655559057643],[113,100,73,0.19999055848573877],[113,100,74,0.20134650496832984],[113,100,75,0.20272502485865646],[113,100,76,0.20412668581139937],[113,100,77,0.2055519905417993],[113,100,78,0.20700137401510876],[113,100,79,0.20847520059933],[113,101,64,0.18113839057075654],[113,101,65,0.18233492051897768],[113,101,66,0.18354797743572593],[113,101,67,0.18477857200929496],[113,101,68,0.18602767249031546],[113,101,69,0.18729620221845888],[113,101,70,0.18858503711295588],[113,101,71,0.189895003126882],[113,101,72,0.19122687366522845],[113,101,73,0.19258136696671319],[113,101,74,0.19395914344944332],[113,101,75,0.19536080302028053],[113,101,76,0.1967868823480181],[113,101,77,0.19823785210033218],[113,101,78,0.19971411414450446],[113,101,79,0.20121599871193602],[113,102,64,0.17352303207991576],[113,102,65,0.17472776377655472],[113,102,66,0.17595058614284176],[113,102,67,0.17719248876183247],[113,102,68,0.17845441761458097],[113,102,69,0.17973727261318928],[113,102,70,0.18104190509817597],[113,102,71,0.18236911530011707],[113,102,72,0.18371964976557836],[113,102,73,0.18509419874729116],[113,102,74,0.18649339355868605],[113,102,75,0.18791780389263457],[113,102,76,0.189367935104507],[113,102,77,0.1908442254595099],[113,102,78,0.1923470433443007],[113,102,79,0.19387668444289718],[113,103,64,0.16583841413302208],[113,103,65,0.16705072412565358],[113,103,66,0.16828271213760615],[113,103,67,0.1695353465578664],[113,103,68,0.17080955098584794],[113,103,69,0.17210620177040542],[113,103,70,0.1734261255136761],[113,103,71,0.17477009653969738],[113,103,72,0.17613883432782146],[113,103,73,0.17753300091087731],[113,103,74,0.17895319823819683],[113,103,75,0.1803999655033534],[113,103,76,0.18187377643672203],[113,103,77,0.18337503656282272],[113,103,78,0.18490408042244794],[113,103,79,0.1864611687595889],[113,104,64,0.15808853988705912],[113,104,65,0.15930780863897787],[113,104,66,0.1605483655051131],[113,104,67,0.16181115760107906],[113,104,68,0.1630970860428465],[113,104,69,0.16440700349134785],[113,104,70,0.16574171166241403],[113,104,71,0.16710195880199102],[113,104,72,0.16848843712665962],[113,104,73,0.16990178022940594],[113,104,74,0.17134256045076224],[113,104,75,0.17281128621516306],[113,104,76,0.17430839933262887],[113,104,77,0.17583427226573772],[113,104,78,0.17738920536188424],[113,104,79,0.1789734240508445],[113,105,64,0.1502774659501181],[113,105,65,0.15150307833693638],[113,105,66,0.1527516107562878],[113,105,67,0.15402398898070063],[113,105,68,0.15532109155124957],[113,105,69,0.15664374732737563],[113,105,70,0.15799273300254385],[113,105,71,0.15936877058568394],[113,105,72,0.1607725248484384],[113,105,73,0.16220460073816595],[113,105,74,0.16366554075681877],[113,105,75,0.16515582230554005],[113,105,76,0.16667585499509224],[113,105,77,0.16822597792207827],[113,105,78,0.16980645691095408],[113,105,79,0.17141748172185045],[113,106,64,0.14240929990807943],[113,106,65,0.14364064571136093],[113,106,66,0.14489656434920267],[113,106,67,0.14617796019098733],[113,106,68,0.1474856891218651],[113,106,69,0.14882055609741968],[113,106,70,0.1501833126646709],[113,106,71,0.15157465444936868],[113,106,72,0.15299521860959436],[113,106,73,0.15444558125562052],[113,106,74,0.15592625483615252],[113,106,75,0.1574376854907883],[113,106,76,0.1589802503688152],[113,106,77,0.16055425491430297],[113,106,78,0.1621599301174912],[113,106,79,0.1637974297324895],[113,107,64,0.13448819779952154],[113,107,65,0.13572467219699796],[113,107,66,0.13698739215773786],[113,107,67,0.13827724059762508],[113,107,68,0.13959505067535688],[113,107,69,0.1409416033515839],[113,107,70,0.14231762491489114],[113,107,71,0.14372378447457113],[113,107,72,0.14516069142020788],[113,107,73,0.1466288928480211],[113,107,74,0.14812887095409588],[113,107,75,0.1496610403943312],[113,107,76,0.15122574561122992],[113,107,77,0.15282325812748682],[113,107,78,0.15445377380637193],[113,107,79,0.15611741007893254],[113,108,64,0.12651836153925305],[113,108,65,0.1277593655911738],[113,108,66,0.12902830688798012],[113,108,67,0.1303260468514595],[113,108,68,0.1316533958538907],[113,108,69,0.13301111078129113],[113,108,70,0.13439989256400897],[113,108,71,0.13582038367460647],[113,108,72,0.1372731655930578],[113,108,73,0.13875875623920636],[113,108,74,0.14027760737261014],[113,108,75,0.1418301019596081],[113,108,76,0.14341655150772709],[113,108,77,0.14503719336738952],[113,108,78,0.14669218800091893],[113,108,79,0.14838161621886325],[113,109,64,0.11850403629027312],[113,109,65,0.1197489774214393],[113,109,66,0.12102356544216841],[113,109,67,0.12232864024935358],[113,109,68,0.12366498937951215],[113,109,69,0.12503334557577866],[113,109,70,0.12643438432274234],[113,109,71,0.12786872134907729],[113,109,72,0.12933691009798437],[113,109,73,0.13083943916539625],[113,109,74,0.13237672970606806],[113,109,75,0.13394913280738868],[113,109,76,0.1355569268310352],[113,109,77,0.13720031472242622],[113,109,78,0.13887942128797326],[113,109,79,0.14059429044015037],[113,110,64,0.11044950778395429],[113,110,65,0.11169780026098447],[113,110,66,0.1129774662299774],[113,110,67,0.11428932404196979],[113,110,68,0.11563413835904945],[113,110,69,0.11701261772473676],[113,110,70,0.11842541210270646],[113,110,71,0.11987311038380044],[113,110,72,0.1213562378613528],[113,110,73,0.12287525367477481],[113,110,74,0.12443054822152405],[113,110,75,0.1260224405372946],[113,110,76,0.12765117564454626],[113,110,77,0.12931692186933313],[113,110,78,0.13101976812642774],[113,110,79,0.13275972117276258],[113,111,64,0.1023590995888537],[113,111,65,0.10361016499223186],[113,111,66,0.10489434642754641],[113,111,67,0.10621244068888014],[113,111,68,0.10756518953594596],[113,111,69,0.10895327726749787],[113,111,70,0.11037732826358243],[113,111,71,0.11183790449657471],[113,111,72,0.11333550301102524],[113,111,73,0.11487055337226337],[113,111,74,0.11644341508388117],[113,111,75,0.1180543749739354],[113,111,76,0.11970364454998528],[113,111,77,0.12139135732292677],[113,111,78,0.12311756609961877],[113,111,79,0.12488224024432315],[113,112,64,0.0942371703279517],[113,112,65,0.09549043801840706],[113,112,66,0.09677857918405125],[113,112,67,0.0981023690608061],[113,112,68,0.0994625264888232],[113,112,69,0.10085971148857281],[113,112,70,0.10229452280627044],[113,112,71,0.10376749542858221],[113,112,72,0.1052790980666371],[113,112,73,0.10682973060928785],[113,112,74,0.10841972154575069],[113,112,75,0.11004932535745593],[113,112,76,0.11171871987922888],[113,112,77,0.11342800362976413],[113,112,78,0.11517719311138408],[113,112,79,0.11696622007910945],[113,113,64,0.08608811084411055],[113,113,65,0.08734301842287945],[113,113,66,0.08863457077561376],[113,113,67,0.0899635215887778],[113,113,68,0.09133056677656687],[113,113,69,0.09273634205932968],[113,113,70,0.09418142051182044],[113,113,71,0.09566631008122328],[113,113,72,0.09719145107497529],[113,113,73,0.09875721361833179],[113,113,74,0.10036389508180277],[113,113,75,0.10201171747829313],[113,113,76,0.1037008248300666],[113,113,77,0.10543128050549377],[113,113,78,0.10720306452557932],[113,113,79,0.10901607084029313],[113,114,64,0.0779163413141864],[113,114,65,0.07917233507670335],[113,114,66,0.0804667577069812],[113,114,67,0.08180034136064906],[113,114,68,0.08317375903036817],[113,114,69,0.08458762212624693],[113,114,70,0.08604247802657317],[113,114,71,0.087538807598811],[113,114,72,0.08907702269088719],[113,114,73,0.09065746359270632],[113,114,74,0.09228039646803443],[113,114,75,0.09394601075657028],[113,114,76,0.09565441654633383],[113,114,77,0.09740564191632967],[113,114,78,0.09919963024947898],[113,114,79,0.1010362375158464],[113,115,64,0.06972630831143045],[113,115,65,0.07098284369400143],[113,115,66,0.07227960376061121],[113,115,67,0.0736172991646008],[113,115,68,0.07499657999235626],[113,115,69,0.07641803334537611],[113,115,70,0.07788218089314614],[113,115,71,0.07938947639676702],[113,115,72,0.08094030320335738],[113,115,73,0.08253497171117546],[113,115,74,0.08417371680559621],[113,115,75,0.08585669526576462],[113,115,76,0.08758398314205373],[113,115,77,0.08935557310428505],[113,115,78,0.09117137176070705],[113,115,79,0.09303119694775491],[113,116,64,0.061522481816456365],[113,116,65,0.06277902383546108],[113,116,66,0.06407759699343818],[113,116,67,0.06541889047991312],[113,116,68,0.06680353150110019],[113,116,69,0.06823208286329224],[113,116,70,0.06970504052754378],[113,116,71,0.07122283113559041],[113,116,72,0.07278580950703045],[113,116,73,0.07439425610771033],[113,116,74,0.07604837448944995],[113,116,75,0.07774828870092904],[113,116,76,0.0794940406698657],[113,116,77,0.08128558755644061],[113,116,78,0.083122799077964],[113,116,79,0.08500545480481209],[113,117,64,0.053309352176396485],[113,117,65,0.05456537585957072],[113,117,66,0.05586524668094761],[113,117,67,0.057209632414626066],[113,117,68,0.058599137423601844],[113,117,69,0.06003430024415579],[113,117,70,0.061515591142013715],[113,117,71,0.0630434096402282],[113,117,72,0.06461808201880243],[113,117,73,0.06623985878600153],[113,117,74,0.06790891212148614],[113,117,75,0.06962533329108916],[113,117,76,0.07138913003336644],[113,117,77,0.07320022391787684],[113,117,78,0.07505844767518649],[113,117,79,0.0769635424986242],[113,118,64,0.045091427012698915],[113,118,65,0.04634641782204563],[113,118,66,0.047647080209006154],[113,118,67,0.04899406059054212],[113,118,68,0.05038794053423212],[113,118,69,0.05182923434333375],[113,118,70,0.053318386614100044],[113,118,71,0.05485576976529466],[113,118,72,0.056441681539930455],[113,118,73,0.05807634247917315],[113,118,74,0.05975989336854731],[113,118,75,0.061492392656265105],[113,118,76,0.06327381384380742],[113,118,77,0.0651040428487139],[113,118,78,0.06698287533957725],[113,118,79,0.06891001404326702],[113,119,64,0.03687322807734539],[113,119,65,0.038126682323225025],[113,119,66,0.03942763991322812],[113,119,67,0.04077672597535126],[113,119,68,0.04217449934039047],[113,119,69,0.04362145012736551],[113,119,70,0.045117997301674206],[113,119,71,0.04666448620592034],[113,119,72,0.048261186063442596],[113,119,73,0.04990828745448406],[113,119,74,0.05160589976513924],[113,119,75,0.05335404860890092],[113,119,76,0.05515267322093542],[113,119,77,0.0570016238250422],[113,119,78,0.05890065897329344],[113,119,79,0.0608494428583809],[113,120,64,0.028659288057289012],[113,120,65,0.029910713303237968],[113,120,66,0.03121147986568179],[113,120,67,0.03256219166167573],[113,120,68,0.03396338485468642],[113,120,69,0.03541552544006815],[113,120,70,0.03691900680374405],[113,120,71,0.03847414725403264],[113,120,72,0.04008118752664863],[113,120,73,0.04174028826281573],[113,120,74,0.04345152746063086],[113,120,75,0.04521489789949995],[113,120,76,0.047030304537774736],[113,120,77,0.048897561883546714],[113,120,78,0.05081639133859378],[113,120,79,0.05278641851550653],[113,121,64,0.020454147327525263],[113,121,65,0.021703062785352334],[113,121,66,0.02300316260934121],[113,121,67,0.024355029593449595],[113,121,68,0.025759177314057857],[113,121,69,0.0272160477151967],[113,121,70,0.028726008667451397],[113,121,71,0.030289351500477235],[113,121,72,0.031906288509159775],[113,121,73,0.03357695043335562],[113,121,74,0.035301383911354234],[113,121,75,0.037079548906879534],[113,121,76,0.03891131610976095],[113,121,77,0.04079646431023243],[113,121,78,0.042734677746851135],[113,121,79,0.04472554342806595],[113,122,64,0.012262350652589571],[113,122,65,0.013508287567299215],[113,122,66,0.014807255840084577],[113,122,67,0.016159817239425556],[113,122,68,0.01756646284561636],[113,122,69,0.019027610635452108],[113,122,70,0.020543603041054626],[113,122,71,0.02211470448277697],[113,122,72,0.023741098876216338],[113,122,73,0.02542288711327345],[113,122,74,0.02716008451739732],[113,122,75,0.02895261827283596],[113,122,76,0.030800324828021253],[113,122,77,0.03270294727304629],[113,122,78,0.03466013269122836],[113,122,79,0.03667142948478702],[113,123,64,0.004088443836271882],[113,123,65,0.005330945860365088],[113,123,66,0.006628329036024172],[113,123,67,0.007981134213598973],[113,123,68,0.00938983007901395],[113,123,69,0.010854810737626897],[113,123,70,0.012376393272683417],[113,123,71,0.013954815278316324],[113,123,72,0.015590232367111267],[113,123,73,0.017282715652179814],[113,123,74,0.019032249203882634],[113,123,75,0.020838727481015895],[113,123,76,0.022701952736594422],[113,123,77,0.024621632398188764],[113,123,78,0.026597376422809293],[113,123,79,0.028628694626365248],[113,124,64,-0.0040630296800369115],[113,124,65,-0.0028244061233343998],[113,124,66,-0.001529049965413587],[113,124,67,-1.7644115703385754E-4],[113,124,68,0.0012338667057440467],[113,124,69,0.002702243964305462],[113,124,70,0.004228982455285357],[113,124,71,0.005814293043369834],[113,124,72,0.007458303129123878],[113,124,73,0.00916105413178181],[113,124,74,0.010922498947145864],[113,124,75,0.012742499380403782],[113,124,76,0.01462082355400196],[113,124,77,0.0165571432905276],[113,124,78,0.01855103147059667],[113,124,79,0.020601959365771694],[113,125,64,-0.012187532270567014],[113,125,65,-0.010953217635602308],[113,125,66,-0.009660318442862803],[113,125,67,-0.008308335317586402],[113,125,68,-0.006896844014826042],[113,125,69,-0.005425497838084825],[113,125,70,-0.0038940300824429896],[113,125,71,-0.0023022565022324804],[113,125,72,-6.500778032360044E-4],[113,125,73,0.0010625178405331281],[113,125,74,0.0028354522456088826],[113,125,75,0.0046685546532238],[113,125,76,0.006561559138967943],[113,125,77,0.008514101997909584],[113,125,78,0.010525719105173637],[113,125,79,0.012595843252005245],[113,126,64,-0.02028053563018012],[113,126,65,-0.01905094690914333],[113,126,66,-0.017760922319061123],[113,126,67,-0.01640998302347929],[113,126,68,-0.014997726802905065],[113,126,69,-0.01352383047508926],[113,126,70,-0.011988052339353072],[113,126,71,-0.010390234645015373],[113,126,72,-0.008730306083892414],[113,126,73,-0.007008284306936119],[113,126,74,-0.005224278464861953],[113,126,75,-0.0033784917729544617],[113,126,76,-0.001471224099923174],[113,126,77,4.971254191594721E-4],[113,126,78,0.0025260557458202104],[113,126,79,0.0046149612770821635],[113,127,64,-0.028337524330743213],[113,127,65,-0.02711306472636288],[113,127,66,-0.025826319741141912],[113,127,67,-0.024476830931300986],[113,127,68,-0.0230642179587911],[113,127,69,-0.021588181013481922],[113,127,70,-0.020048503258949635],[113,127,71,-0.018445053301921366],[113,127,72,-0.016777787685352097],[113,127,73,-0.015046753405191016],[113,127,74,-0.013252090450697862],[113,127,75,-0.011394034368494066],[113,127,76,-0.009472918850216616],[113,127,77,-0.007489178343815461],[113,127,78,-0.005443350688503545],[113,127,79,-0.0033360797733299474],[113,128,64,-0.03635399942907752],[113,128,65,-0.03513505804019107],[113,128,66,-0.03385198471338513],[113,128,67,-0.03250434124254209],[113,128,68,-0.03109176901665689],[113,128,69,-0.029613991444178422],[113,128,70,-0.028070816400512233],[113,128,71,-0.026462138698743587],[113,128,72,-0.024787942583550326],[113,128,73,-0.02304830424837001],[113,128,74,-0.02124339437567635],[113,128,75,-0.019373480700553114],[113,128,76,-0.017438930597430846],[113,128,77,-0.015440213690029014],[113,128,78,-0.013377904484512704],[113,128,79,-0.011252685025832654],[113,129,64,-0.04432548212668597],[113,129,65,-0.04311243364713646],[113,129,66,-0.04183341078262792],[113,129,67,-0.040487995400407095],[113,129,68,-0.039075850451811],[113,129,69,-0.03759672239900369],[113,129,70,-0.03605044366444177],[113,129,71,-0.03443693510312351],[113,129,72,-0.03275620849759564],[113,129,73,-0.03100836907578075],[113,129,74,-0.02919361805148124],[113,129,75,-0.02731225518774416],[113,129,76,-0.025364681382958665],[113,129,77,-0.023351401279722572],[113,129,78,-0.02127302589649227],[113,129,79,-0.019130275281978637],[113,130,64,-0.052247517480853656],[113,130,65,-0.0510407219121603],[113,130,66,-0.04976611477593468],[113,130,67,-0.04842329783929944],[113,130,68,-0.04701195544102904],[113,130,69,-0.045531856920912994],[113,130,70,-0.04398285907141919],[113,130,71,-0.04236490861171327],[113,130,72,-0.040678044684007264],[113,130,73,-0.03892240137230063],[113,130,74,-0.0370982102433669],[113,130,75,-0.03520580291017672],[113,130,76,-0.03324561361762102],[113,130,77,-0.03121818185057801],[113,130,78,-0.029124154964331517],[113,130,79,-0.026964290837311444],[113,131,64,-0.060115678167318554],[113,131,65,-0.05891548054557705],[113,131,66,-0.05764564059071792],[113,131,67,-0.05630577978717405],[113,131,68,-0.05489560367615459],[113,131,69,-0.05341490428786205],[113,131,70,-0.051863562595580226],[113,131,71,-0.05024155099169958],[113,131,72,-0.04854893578564723],[113,131,73,-0.04678587972378401],[113,131,74,-0.044952644531128017],[113,131,75,-0.04304959347508752],[113,131,76,-0.04107719395107279],[113,131,77,-0.039036020090028156],[113,131,78,-0.03692675538789303],[113,131,79,-0.03475019535695956],[113,132,64,-0.06792556829472118],[113,132,65,-0.06673229843217787],[113,132,66,-0.06546756303752477],[113,132,67,-0.06413100312096992],[113,132,68,-0.06272234523117487],[113,132,69,-0.06124140389053323],[113,132,70,-0.05968808405191017],[113,132,71,-0.05806238357689608],[113,132,72,-0.056364395735547745],[113,132,73,-0.054594311727683364],[113,132,74,-0.052752423225578715],[113,132,75,-0.05083912493826126],[113,132,76,-0.048854917197263426],[113,132,77,-0.04680040856387779],[113,132,78,-0.04467631845792297],[113,132,79,-0.04248347980798961],[113,133,64,-0.07567282727042668],[113,133,65,-0.07448679951218135],[113,133,66,-0.07322749173507503],[113,133,67,-0.07189456427471358],[113,133,68,-0.07048776448236571],[113,133,69,-0.06900692916351503],[113,133,70,-0.06745198703745614],[113,133,71,-0.06582296121799747],[113,133,72,-0.06411997171523665],[113,133,73,-0.06234323795847707],[113,133,74,-0.060493081340136534],[113,133,75,-0.058569927780839026],[113,133,76,-0.0565743103155536],[113,133,77,-0.05450687170082391],[113,133,78,-0.05236836704309711],[113,133,79,-0.05015966644811931],[113,134,64,-0.08335313371792019],[113,134,65,-0.08217464671420643],[113,134,66,-0.08092107505776103],[113,134,67,-0.07959209820049379],[113,134,68,-0.0781874840817105],[113,134,69,-0.07670709157013234],[113,134,70,-0.07515087292655398],[113,134,71,-0.07351887628720066],[113,134,72,-0.07181124816775308],[113,134,73,-0.07002823598810692],[113,134,74,-0.06817019061771645],[113,134,75,-0.06623756894171595],[113,134,76,-0.06423093644768274],[113,134,77,-0.06215096983308277],[113,134,78,-0.059998459633409884],[113,134,79,-0.057774312870985],[113,135,64,-0.09096220944597877],[113,135,65,-0.08979154594047284],[113,135,66,-0.0885440041358031],[113,135,67,-0.0872192823825137],[113,135,68,-0.08581716898379],[113,135,69,-0.0843375446411333],[113,135,70,-0.08278038492027562],[113,135,71,-0.08114576273738827],[113,135,72,-0.07943385086556354],[113,135,73,-0.07764492446162541],[113,135,74,-0.0757793636131271],[113,135,75,-0.073837655905725],[113,135,76,-0.07182039901079262],[113,135,77,-0.06972830329331825],[113,135,78,-0.0675621944400947],[113,135,79,-0.06532301610816882],[113,136,64,-0.0984958234692127],[113,136,65,-0.09733325010381988],[113,136,66,-0.09609201690766045],[113,136,67,-0.09477184090381019],[113,136,68,-0.09337253052573968],[113,136,69,-0.09189398806682281],[113,136,70,-0.09033621214968823],[113,136,71,-0.088699300215476],[113,136,72,-0.0869834510329669],[113,136,73,-0.08518896722764868],[113,136,74,-0.08331625783057584],[113,136,75,-0.08136584084720888],[113,136,76,-0.07933834584610111],[113,136,77,-0.07723451656747315],[113,136,78,-0.07505521355168587],[113,136,79,-0.0728014167875789],[113,137,64,-0.10594979608019128],[113,137,65,-0.10479556321676187],[113,137,66,-0.10356090222490866],[113,137,67,-0.10224554856585766],[113,137,68,-0.10084933056049161],[113,137,69,-0.09937217184285918],[113,137,70,-0.09781409383314121],[113,137,71,-0.09617521823013175],[113,137,72,-0.09445576952320411],[113,137,73,-0.09265607752382776],[113,137,74,-0.0907765799164858],[113,137,75,-0.08881782482918754],[113,137,76,-0.0867804734234392],[113,137,77,-0.08466530250371251],[113,137,78,-0.08247320714642536],[113,137,79,-0.08020520334839909],[113,138,64,-0.11332000297332823],[113,138,65,-0.11217434453275321],[113,138,66,-0.11094650400976125],[113,138,67,-0.10963623506123032],[113,138,68,-0.10824338564347014],[113,138,69,-0.10676790046989282],[113,138,70,-0.10520982348775698],[113,138,71,-0.10356930037404677],[113,138,72,-0.10184658105045208],[113,138,73,-0.10004202221751668],[113,138,74,-0.09815608990780922],[113,138,75,-0.09618936205830175],[113,138,76,-0.09414253110182824],[113,138,77,-0.09201640657765686],[113,138,78,-0.0898119177611939],[113,138,79,-0.08753011631277952],[113,139,64,-0.12060237942013047],[113,139,65,-0.11946551273926709],[113,139,66,-0.118244725464838],[113,139,67,-0.11693978919892678],[113,139,68,-0.11555057127235058],[113,139,69,-0.11407703720664164],[113,139,70,-0.11251925319472589],[113,139,71,-0.11087738860036023],[113,139,72,-0.10915171847629623],[113,139,73,-0.10734262610123602],[113,139,74,-0.10545060553543384],[113,139,75,-0.10347626419513234],[113,139,76,-0.10142032544569968],[113,139,77,-0.0992836312135087],[113,139,78,-0.09706714461656851],[113,139,79,-0.09477195261387461],[113,140,64,-0.12779292449614976],[113,140,65,-0.126665050203026],[113,140,66,-0.12545153333551795],[113,140,67,-0.12415216318269628],[113,140,68,-0.12276682618021717],[113,140,69,-0.12129550837675218],[113,140,70,-0.11973829791874824],[113,140,71,-0.1180953875535754],[113,140,72,-0.11636707715103234],[113,140,73,-0.1145537762432759],[113,140,74,-0.11265600658302577],[113,140,75,-0.1106744047202356],[113,140,76,-0.10860972459709606],[113,140,77,-0.10646284016140939],[113,140,78,-0.1042347479983492],[113,140,79,-0.10192656998056726],[113,141,64,-0.13488770535938088],[113,141,65,-0.1337690072671326],[113,141,66,-0.1325629622246245],[113,141,67,-0.13126937694211172],[113,141,68,-0.12988815668186593],[113,141,69,-0.12841930772918475],[113,141,70,-0.126862939881367],[113,141,71,-0.12521926895471536],[113,141,72,-0.12348861930953259],[113,141,73,-0.12167142639318096],[113,141,74,-0.1197682393010524],[113,141,75,-0.1177797233556439],[113,141,76,-0.11570666270360142],[113,141,77,-0.11354996293077513],[113,141,78,-0.11131065369529336],[113,141,79,-0.10898989137862525],[113,142,64,-0.1418828615804435],[113,142,65,-0.14077350660043153],[113,142,66,-0.1395751189597768],[113,142,67,-0.13828752251672494],[113,142,68,-0.1369106410735893],[113,142,69,-0.13544450085246107],[113,142,70,-0.13388923298852518],[113,142,71,-0.1322450760410504],[113,142,72,-0.13051237852201736],[113,142,73,-0.12869160144245329],[113,142,74,-0.1267833208763206],[113,142,75,-0.12478823054215826],[113,142,76,-0.12270714440233232],[113,142,77,-0.12054099927994433],[113,142,78,-0.11829085749340129],[113,142,79,-0.1159579095086195],[113,143,64,-0.1487746095241489],[113,143,65,-0.1476747475987079],[113,143,66,-0.14648418701300936],[113,143,67,-0.1452027684929046],[113,143,68,-0.14383043408604113],[113,143,69,-0.14236722964237536],[113,143,70,-0.14081330731195218],[113,143,71,-0.13916892806000225],[113,143,72,-0.1374344641993328],[113,143,73,-0.13561040194007412],[113,143,74,-0.13369734395663246],[113,143,75,-0.13169601197204417],[113,143,76,-0.1296072493595941],[113,143,77,-0.1274320237617388],[113,143,78,-0.12517142972634598],[113,143,79,-0.12282669136021573],[113,144,64,-0.1555592467826481],[113,144,65,-0.15446901083791786],[113,144,66,-0.15328643097285566],[113,144,67,-0.15201136449355845],[113,144,68,-0.15064377139038254],[113,144,69,-0.1491837168233664],[113,144,70,-0.14763137362457468],[113,144,71,-0.145987024817419],[113,144,72,-0.14425106615293015],[113,144,73,-0.14242400866304483],[113,144,74,-0.1405064812307556],[113,144,75,-0.13849923317732138],[113,144,76,-0.13640313686639927],[113,144,77,-0.1342191903251394],[113,144,78,-0.1319485198822542],[113,144,79,-0.12959238282302954],[113,145,64,-0.16223315666032823],[113,145,65,-0.16115266257961625],[113,145,66,-0.15997820106906613],[113,145,67,-0.15870964572089719],[113,145,68,-0.15734697415787213],[113,145,69,-0.15589027052371573],[113,145,70,-0.15433972799011908],[113,145,71,-0.15269565128038987],[113,145,72,-0.15095845920971596],[113,145,73,-0.14912868724210837],[113,145,74,-0.14720699006387428],[113,145,75,-0.14519414417381526],[113,145,76,-0.1430910504900117],[113,145,77,-0.14089873697323363],[113,145,78,-0.1386183612669949],[113,145,79,-0.1362512133542102],[113,146,64,-0.16879281271010704],[113,146,65,-0.16772215932823553],[113,146,66,-0.16655593774960342],[113,146,67,-0.16529403755190053],[113,146,68,-0.1639364536725536],[113,146,69,-0.16248328890422237],[113,146,70,-0.16093475640655297],[113,146,71,-0.159291182234247],[113,146,72,-0.1575530078814188],[113,146,73,-0.155720792842304],[113,146,74,-0.15379521718817035],[113,146,75,-0.1517770841606224],[113,146,76,-0.1496673227811708],[113,146,77,-0.147466990477097],[113,146,78,-0.14517727572363137],[113,146,79,-0.1427995007024102],[113,147,64,-0.1752347833213046],[113,147,65,-0.17417405244038953],[113,147,66,-0.17301617631010435],[113,147,67,-0.17176106018665827],[113,147,68,-0.1704087159972163],[113,147,69,-0.16895926484053658],[113,147,70,-0.16741293950355007],[113,147,71,-0.16577008699393492],[113,147,72,-0.1640311710886564],[113,147,73,-0.1621967748985379],[113,147,74,-0.16026760344871538],[113,147,75,-0.15824448627516485],[113,147,76,-0.1561283800371721],[113,147,77,-0.15392037114577717],[113,147,78,-0.1516216784082155],[113,147,79,-0.14923365568831293],[113,148,64,-0.18155573635925637],[113,148,65,-0.180504992786371],[113,148,66,-0.17935555157595906],[113,148,67,-0.1781073333497507],[113,148,68,-0.1767603666927965],[113,148,69,-0.17531479065931],[113,148,70,-0.1737708572941381],[113,148,71,-0.17212893416991515],[113,148,72,-0.17038950693986454],[113,148,73,-0.16855318190632385],[113,148,74,-0.16662068860483648],[113,148,75,-0.1645928824040045],[113,148,76,-0.1624707471209681],[113,148,77,-0.16025539765255126],[113,148,78,-0.1579480826220876],[113,148,79,-0.15555018704188528],[113,149,64,-0.18775244385633616],[113,149,65,-0.18671173546350817],[113,149,66,-0.18557080263669112],[113,149,67,-0.18432958104433883],[113,149,68,-0.18298811559088346],[113,149,69,-0.18154656292783578],[113,149,70,-0.18000519398019832],[113,149,71,-0.17836439648826452],[113,149,72,-0.17662467756475564],[113,149,73,-0.17478666626737493],[113,149,74,-0.17285111618662408],[113,149,75,-0.17081890804907418],[113,149,76,-0.16869105233595783],[113,149,77,-0.166468691917121],[113,149,78,-0.16415310470034827],[113,149,79,-0.16174570629602447],[113,150,64,-0.19382178675454864],[113,150,65,-0.19279114456154212],[113,150,66,-0.19165877763278527],[113,150,67,-0.19042463635912266],[113,150,68,-0.18908878161949638],[113,150,69,-0.18765138729733843],[113,150,70,-0.1861127428119791],[113,150,71,-0.18447325566513983],[113,150,72,-0.18273345400246932],[113,150,73,-0.18089398919019528],[113,150,74,-0.17895563840674122],[113,150,75,-0.17691930724950045],[113,150,76,-0.17478603235662948],[113,150,77,-0.17255698404390685],[113,150,78,-0.17023346895666458],[113,150,79,-0.16781693273675646],[113,151,64,-0.19976075969986606],[113,151,65,-0.19874019798019826],[113,151,66,-0.19761643859514444],[113,151,67,-0.1963894463283442],[113,151,68,-0.1950592976822988],[113,151,69,-0.19362618340008542],[113,151,70,-0.19209041100179713],[113,151,71,-0.19045240733577407],[113,151,72,-0.1887127211445877],[113,151,73,-0.18687202564585392],[113,151,74,-0.18493112112771248],[113,151,75,-0.1828909375591784],[113,151,76,-0.18075253721522166],[113,151,77,-0.1785171173166189],[113,151,78,-0.17618601268458656],[113,151,79,-0.1737606984101635],[113,152,64,-0.20556647588796684],[113,152,65,-0.2045559922986111],[113,152,66,-0.20344086633683445],[113,152,67,-0.20222107684449087],[113,152,68,-0.20089671559091649],[113,152,69,-0.19946798979998004],[113,152,70,-0.19793522469158298],[113,152,71,-0.1962988660376641],[113,152,72,-0.19455948273267398],[113,152,73,-0.19271776937859475],[113,152,74,-0.1907745488843443],[113,152,75,-0.18873077507976732],[113,152,76,-0.1865875353440719],[113,152,77,-0.1843460532487552],[113,152,78,-0.18200769121502647],[113,152,79,-0.17957395318569647],[113,153,64,-0.21123617196156597],[113,153,65,-0.21023574769678932],[113,153,66,-0.20912926539729837],[113,153,67,-0.20791671762388864],[113,153,68,-0.206598211050541],[113,153,69,-0.20517396899682228],[113,153,70,-0.2036443339744599],[113,153,71,-0.2020097702481427],[113,153,72,-0.20027086641052105],[113,153,73,-0.19842833797147097],[113,153,74,-0.19648302996147116],[113,153,75,-0.19443591954928718],[113,153,76,-0.19228811867383033],[113,153,77,-0.19004087669022385],[113,153,78,-0.1876955830300956],[113,153,79,-0.18525376987606024],[113,154,64,-0.216767212959456],[113,154,65,-0.21577681292924467],[113,154,66,-0.21467896903917205],[113,154,67,-0.21347368722530635],[113,154,68,-0.2121610886989449],[113,154,69,-0.2107414124843653],[113,154,70,-0.2092150179704797],[113,154,71,-0.20758238747645053],[113,154,72,-0.20584412883123637],[113,154,73,-0.2040009779671299],[113,154,74,-0.2020538015271457],[113,154,75,-0.20000359948644575],[113,154,76,-0.1978515077876697],[113,154,77,-0.19559880099020477],[113,154,78,-0.19324689493341674],[113,154,79,-0.19079734941379733],[113,155,64,-0.22215709731698186],[113,155,65,-0.22117667035050115],[113,155,66,-0.22008744429741045],[113,155,67,-0.21888943812129236],[113,155,68,-0.21758278719862556],[113,155,69,-0.21616774586187637],[113,155,70,-0.21464468995623154],[113,155,71,-0.21301411941003245],[113,155,72,-0.21127666081887786],[113,155,73,-0.20943307004346057],[113,155,74,-0.20748423482099343],[113,155,75,-0.2054311773904085],[113,155,76,-0.20327505713120486],[113,155,77,-0.20101717321597523],[113,155,78,-0.19865896727663102],[113,155,79,-0.19620202608428494],[113,156,64,-0.2274034619180888],[113,156,65,-0.22643294099263245],[113,156,66,-0.22535229708087523],[113,156,67,-0.22416156182238334],[113,156,68,-0.22286088438222051],[113,156,69,-0.221450533999357],[113,156,70,-0.21993090254847114],[113,156,71,-0.21830250711519583],[113,156,72,-0.2165659925847846],[113,156,73,-0.21472213424425624],[113,156,74,-0.21277184039787533],[113,156,75,-0.2107161549961578],[113,156,76,-0.20855626027826646],[113,156,77,-0.2062934794278367],[113,156,78,-0.20392927924224624],[113,156,79,-0.2014652728152898],[113,157,64,-0.23250408719908588],[113,157,65,-0.23154338969496224],[113,157,66,-0.23047127732651806],[113,157,67,-0.22928779405432897],[113,157,68,-0.22799310245133708],[113,157,69,-0.22658748625655378],[113,157,70,-0.2250713529419046],[113,157,71,-0.2234452362922783],[113,157,72,-0.22170979899874677],[113,157,73,-0.21986583526502046],[113,157,74,-0.2179142734269971],[113,157,75,-0.2158561785855836],[113,157,76,-0.21369275525267095],[113,157,77,-0.21142535001028895],[113,157,78,-0.20905545418296168],[113,157,79,-0.20658470652322358],[113,158,64,-0.2374569023038402],[113,158,65,-0.23650593028564504],[113,158,66,-0.23544228420588065],[113,158,67,-0.23426601998804353],[113,158,68,-0.23297731322850768],[113,158,69,-0.23157646175547753],[113,158,70,-0.230063888200848],[113,158,71,-0.2284401425850323],[113,158,72,-0.2267059049147212],[113,158,73,-0.22486198779364408],[113,158,74,-0.2229093390461807],[113,158,75,-0.2208490443540143],[113,158,76,-0.2186823299056977],[113,158,77,-0.21641056505916167],[113,158,78,-0.21403526501718861],[113,158,79,-0.21155809351580745],[113,159,64,-0.24225999029056033],[113,159,65,-0.2413186308152907],[113,159,66,-0.2402633713840654],[113,159,67,-0.23909427952245021],[113,159,68,-0.2378115434624356],[113,159,69,-0.23641547470659507],[113,159,70,-0.23490651060491974],[113,159,71,-0.23328521694439275],[113,159,72,-0.2315522905512658],[113,159,73,-0.229708561906105],[113,159,74,-0.22775499777146235],[113,159,75,-0.2256927038323575],[113,159,76,-0.22352292734943968],[113,159,77,-0.2212470598248678],[113,159,78,-0.21886663968092412],[113,159,79,-0.2163833549513181],[113,160,64,-0.24691159339026347],[113,160,65,-0.24597971884271874],[113,160,66,-0.24493275233127532],[113,160,67,-0.243770772620304],[113,160,68,-0.24249398018661827],[113,160,69,-0.24110269978877863],[113,160,70,-0.23959738304885814],[113,160,71,-0.23797861104671825],[113,160,72,-0.23624709692677004],[113,160,73,-0.23440368851728488],[113,160,74,-0.2324493709621025],[113,160,75,-0.23038526936493198],[113,160,76,-0.22821265144611302],[113,160,77,-0.2259329302118691],[113,160,78,-0.22354766663607417],[113,160,79,-0.22105857235449],[113,161,64,-0.2514101183167087],[113,161,65,-0.2504875867726304],[113,161,66,-0.24944880568670003],[113,161,67,-0.24829386469678227],[113,161,68,-0.24702297613113566],[113,161,69,-0.24563647758280394],[113,161,70,-0.24413483449624895],[113,161,71,-0.24251864276628443],[113,161,72,-0.24078863134927786],[113,161,73,-0.2389456648866891],[113,161,74,-0.23699074634079353],[113,161,75,-0.234925019642784],[113,161,76,-0.23274977235311578],[113,161,77,-0.23046643833413472],[113,161,78,-0.228076600435002],[113,161,79,-0.2255819931888764],[113,162,64,-0.25575414162789334],[113,162,65,-0.2548407972452962],[113,162,66,-0.2538100806748541],[113,162,67,-0.25266209206093704],[113,162,68,-0.25139705518770095],[113,162,69,-0.2500153200584869],[113,162,70,-0.2485173654872599],[113,162,71,-0.24690380170213932],[113,162,72,-0.24517537296099345],[113,162,73,-0.2433329601791645],[113,162,74,-0.2413775835691705],[113,162,75,-0.23931040529257985],[113,162,76,-0.23713273212392727],[113,162,77,-0.23484601812669792],[113,162,78,-0.23245186734141166],[113,162,79,-0.2299520364857507],[113,163,64,-0.25994241513924865],[113,163,65,-0.2590380885783905],[113,163,66,-0.25801530257449024],[113,163,67,-0.2568741674101451],[113,163,68,-0.255614917928105],[113,163,69,-0.2542379161156013],[113,163,70,-0.25274365370051466],[113,163,71,-0.2511327547594381],[113,163,72,-0.24940597833760503],[113,163,73,-0.24756422108074905],[113,163,74,-0.2456085198787431],[113,163,75,-0.24354005452121164],[113,163,76,-0.24136015036498715],[113,163,77,-0.2390702810134363],[113,163,78,-0.23667207100768495],[113,163,79,-0.2341672985296943],[113,164,64,-0.2639738713882761],[113,164,65,-0.2630783802607205],[113,164,66,-0.2620633782398458],[113,164,67,-0.2609289853772998],[113,164,68,-0.2596754471758026],[113,164,69,-0.25830313717831543],[113,164,70,-0.25681255956885574],[113,164,71,-0.2552043517850192],[113,164,72,-0.2534792871421758],[113,164,73,-0.2516382774694027],[113,164,74,-0.24968237575701224],[113,164,75,-0.24761277881585864],[113,164,76,-0.2454308299482969],[113,164,77,-0.24313802163082587],[113,164,78,-0.24073599820843383],[113,164,79,-0.23822655860060737],[113,165,64,-0.26784762915083515],[113,165,65,-0.26696077849805144],[113,165,66,-0.2659534016744153],[113,165,67,-0.26482562813095],[113,165,68,-0.26357771363084337],[113,165,69,-0.2622100428433555],[113,165,70,-0.26072313194919416],[113,165,71,-0.2591176312574133],[113,165,72,-0.25739432783379923],[113,165,73,-0.25555414814081634],[113,165,74,-0.2535981606889611],[113,165,75,-0.2515275786997111],[113,165,76,-0.24934376277994752],[113,165,77,-0.2470482236078737],[113,165,78,-0.24464262463045794],[113,165,79,-0.242128784772352],[113,166,64,-0.27156299900893965],[113,166,65,-0.2706845818108983],[113,166,66,-0.26968465965712085],[113,166,67,-0.26856337102825023],[113,166,68,-0.2673209815480122],[113,166,69,-0.2659578865817622],[113,166,70,-0.2644746138463201],[113,166,71,-0.26287182603115666],[113,166,72,-0.2611503234308916],[113,166,73,-0.25931104658917326],[113,166,74,-0.25735507895379284],[113,166,75,-0.25528364954322214],[113,166,76,-0.25309813562444006],[113,166,77,-0.25080006540209077],[113,166,78,-0.24839112071898262],[113,166,79,-0.2458731397678917],[113,167,64,-0.27511948897023064],[113,167,65,-0.2742492866844374],[113,167,66,-0.2732566374210409],[113,167,67,-0.2721416883208846],[113,167,68,-0.2709047144683441],[113,167,69,-0.26954612149439827],[113,167,70,-0.26806644819082415],[113,167,71,-0.2664663691355701],[113,167,72,-0.26474669732927725],[113,167,73,-0.2629083868430143],[113,167,74,-0.2609525354770771],[113,167,75,-0.258880387431045],[113,167,76,-0.2566933359849607],[113,167,77,-0.2543929261916692],[113,167,78,-0.2519808575803336],[113,167,79,-0.24945898687108736],[113,168,64,-0.2785168101389315],[113,168,65,-0.2776545932703558],[113,168,66,-0.2766690243845038],[113,168,67,-0.2755602589137721],[113,168,68,-0.2743285810038141],[113,168,69,-0.27297440612101853],[113,168,70,-0.2714982836709503],[113,168,71,-0.2699008996278093],[113,168,72,-0.2681830791748794],[113,168,73,-0.26634578935602715],[113,168,74,-0.2643901417381085],[113,168,75,-0.26231739508447127],[113,168,76,-0.2601289580394178],[113,168,77,-0.25782639182367206],[113,168,78,-0.2554114129408587],[113,168,79,-0.25288589589496024],[113,169,64,-0.28175488243837843],[113,169,65,-0.2809004111407244],[113,169,66,-0.2799217199346422],[113,169,67,-0.27881897217664786],[113,169,68,-0.2775924606753072],[113,169,69,-0.276242610302995],[113,169,70,-0.2747699806184647],[113,169,71,-0.27317526850028406],[113,169,72,-0.27145931079110586],[113,169,73,-0.26962308695284],[113,169,74,-0.26766772173257714],[113,169,75,-0.26559448783945416],[113,169,76,-0.2634048086323344],[113,169,77,-0.2611002608183294],[113,169,78,-0.25868257716219],[113,169,79,-0.2561536492065145],[113,170,64,-0.28483384038521886],[113,170,65,-0.28398686509398774],[113,170,66,-0.2830148392634948],[113,170,67,-0.2819179338086085],[113,170,68,-0.2806964498039469],[113,170,69,-0.2793508210997857],[113,170,70,-0.2778816169486342],[113,170,71,-0.27628954464252964],[113,170,72,-0.2745754521610235],[113,170,73,-0.27274033082992244],[113,170,74,-0.27078531799063477],[113,170,75,-0.26871169968031716],[113,170,76,-0.26652091332268557],[113,170,77,-0.2642145504295277],[113,170,78,-0.2617943593129344],[113,170,79,-0.25926224780820795],[113,171,64,-0.28775403891508033],[113,171,65,-0.2869143010128792],[113,171,66,-0.28594871925646803],[113,171,67,-0.2848574717554315],[113,171,68,-0.28364086745559725],[113,171,69,-0.2822993487589578],[113,171,70,-0.28083349415412207],[113,171,71,-0.279244020857348],[113,171,72,-0.27753178746412743],[113,171,73,-0.2756977966113894],[113,171,74,-0.2737431976501704],[113,171,75,-0.2716692893289463],[113,171,76,-0.2694775224874928],[113,171,77,-0.26716950276130547],[113,171,78,-0.2647469932966058],[113,171,79,-0.2622119174758817],[113,172,64,-0.2905160592598378],[113,172,65,-0.28968329177437957],[113,172,66,-0.2887239244332742],[113,172,67,-0.28763814217978756],[113,172,68,-0.28642626143865624],[113,172,69,-0.28508873273988156],[113,172,70,-0.2836261433529206],[113,172,71,-0.28203921993132863],[113,172,72,-0.2803288311678238],[113,172,73,-0.2784959904598391],[113,172,74,-0.27654185858541025],[113,172,75,-0.27446774638959415],[113,172,76,-0.2722751174812875],[113,172,77,-0.26996559094047123],[113,172,78,-0.2675409440359111],[113,172,79,-0.26500311495326556],[113,173,64,-0.2931207148765177],[113,173,65,-0.2922946432117678],[113,173,66,-0.29134125294139246],[113,173,67,-0.290260735484391],[113,173,68,-0.2890534143551873],[113,173,69,-0.28771974779114706],[113,173,70,-0.2862603313903678],[113,173,71,-0.28467590075980287],[113,173,72,-0.2829673341736759],[113,173,73,-0.28113565524226336],[113,173,74,-0.27918203559089183],[113,173,75,-0.2771077975493358],[113,173,76,-0.274914416851498],[113,173,77,-0.2726035253453897],[113,173,78,-0.27017691371344377],[113,173,79,-0.2676365342031096],[113,174,64,-0.295569057427703],[113,174,65,-0.29474940012861983],[113,174,66,-0.29380174260191405],[113,174,67,-0.2927262823879522],[113,174,68,-0.29152334970524796],[113,174,69,-0.29019341008155364],[113,174,70,-0.2887370669951054],[113,174,71,-0.2871550645260873],[113,174,72,-0.28544829001826866],[113,174,73,-0.28361777675089417],[113,174,74,-0.28166470662067045],[113,174,75,-0.2795904128340396],[113,174,76,-0.27739638260961463],[113,174,77,-0.27508425989080176],[113,174,78,-0.2726558480686384],[113,174,79,-0.2701131127147953],[113,175,64,-0.2978623828135194],[113,175,65,-0.29704885236484013],[113,175,66,-0.2961066770078513],[113,175,67,-0.29503606005400496],[113,175,68,-0.29383733804449486],[113,175,69,-0.29251098338476456],[113,175,70,-0.2910576069890616],[113,175,71,-0.2894779609350975],[113,175,72,-0.2877729411287766],[113,175,73,-0.2859435899790632],[113,175,74,-0.28399109908283793],[113,175,75,-0.28191681191993245],[113,175,76,-0.27972222655821366],[113,175,77,-0.277408998368749],[113,175,78,-0.27497894275107304],[113,175,79,-0.27243403786851406],[113,176,64,-0.3000022372552579],[113,176,65,-0.29919454091478015],[113,176,66,-0.298257591674967],[113,176,67,-0.2971915982726754],[113,176,68,-0.29599690319512695],[113,176,69,-0.29467398531767464],[113,176,70,-0.2932234625515132],[113,176,71,-0.2916460945013907],[113,176,72,-0.2899427851332892],[113,176,73,-0.2881145854521373],[113,176,74,-0.28616269618941226],[113,176,75,-0.2840884705008171],[113,176,76,-0.28189341667390233],[113,176,77,-0.2795792008456691],[113,176,78,-0.2771476497301698],[113,176,79,-0.27460075335606393],[113,177,64,-0.301990423430505],[113,177,65,-0.3011882640973149],[113,177,66,-0.30025628024499573],[113,177,67,-0.2991946856952542],[113,177,68,-0.2980038285100315],[113,177,69,-0.29668419363236487],[113,177,70,-0.29523640553710007],[113,177,71,-0.29366123089150664],[113,177,72,-0.2919595812257654],[113,177,73,-0.2901325156133946],[113,177,74,-0.28818124336146755],[113,177,75,-0.2861071267108102],[113,177,76,-0.2839116835460459],[113,177,77,-0.28159659011552773],[113,177,78,-0.2791636837611695],[113,177,79,-0.27661496565813903],[113,178,64,-0.30382900665985313],[113,178,65,-0.30303208377795],[113,178,66,-0.30210480074132673],[113,178,67,-0.3010473761216481],[113,178,68,-0.2998601631902065],[113,178,69,-0.29854365256171433],[113,178,70,-0.2970984748478602],[113,178,71,-0.29552540332067534],[113,178,72,-0.2938253565856863],[113,178,73,-0.29199940126491386],[113,178,74,-0.2900487546895746],[113,178,75,-0.28797478760267414],[113,178,76,-0.28577902687135814],[113,178,77,-0.28346315820905676],[113,178,78,-0.28102902890744763],[113,178,79,-0.2784786505781809],[113,179,64,-0.3055203211452474],[113,179,65,-0.30472833164301494],[113,179,66,-0.30380548187720824],[113,179,67,-0.3027519948407683],[113,179,68,-0.30156822865552024],[113,179,69,-0.3002546792187307],[113,179,70,-0.2988119828593456],[113,179,71,-0.2972409190039569],[113,179,72,-0.29554241285247007],[113,179,73,-0.2937175380635384],[113,179,74,-0.291767519449613],[113,179,75,-0.28969373568180135],[113,179,76,-0.28749772200440493],[113,179,77,-0.28518117295916323],[113,179,78,-0.2827459451192331],[113,179,79,-0.2801940598328495],[113,180,64,-0.3070669762598307],[113,180,65,-0.30627961552580607],[113,180,66,-0.30536092941633264],[113,180,67,-0.30431114502371537],[113,180,68,-0.3031306249686646],[113,180,69,-0.30181987004945476],[113,180,70,-0.3003795219006795],[113,180,71,-0.2988103656616644],[113,180,72,-0.29711333265450135],[113,180,73,-0.29528950307177215],[113,180,74,-0.29334010867381255],[113,180,75,-0.29126653549570825],[113,180,76,-0.2890703265638902],[113,180,77,-0.2867531846223629],[113,180,78,-0.28431697486858865],[113,180,79,-0.2817637276989785],[113,181,64,-0.3084718628893881],[113,181,65,-0.30768882578477874],[113,181,66,-0.3067740325859064],[113,181,67,-0.30572771416986233],[113,181,68,-0.3045502373124054],[113,181,69,-0.30324210733954415],[113,181,70,-0.3018039707886556],[113,181,71,-0.300236618079182],[113,181,72,-0.2985409861928836],[113,181,73,-0.29671816136370743],[113,181,74,-0.2947693817771282],[113,181,75,-0.2926960402791453],[113,181,76,-0.2904996870948161],[113,181,77,-0.28818203255634356],[113,181,78,-0.28574494984075405],[113,181,79,-0.2831904777171096],[113,182,64,-0.3097381598254042],[113,182,65,-0.3089591417338037],[113,182,66,-0.30804797054221267],[113,182,67,-0.3070048806058523],[113,182,68,-0.3058302425201431],[113,182,69,-0.3045245657745501],[113,182,70,-0.3030885014158943],[113,182,71,-0.30152284472118274],[113,182,72,-0.299828537879926],[113,182,73,-0.29800667268600667],[113,182,74,-0.2960584932389585],[113,182,75,-0.293985398654833],[113,182,76,-0.291788945786539],[113,182,77,-0.28947085195367195],[113,182,78,-0.28703299768186763],[113,182,79,-0.28447742945162613],[113,183,64,-0.3108693402096351],[113,183,65,-0.3100940381243862],[113,183,66,-0.3091862188885761],[113,183,67,-0.3081461200374057],[113,183,68,-0.30697411565968735],[113,183,69,-0.3056707190537846],[113,183,70,-0.3042365853929543],[113,183,71,-0.3026725144001521],[113,183,72,-0.3009794530322625],[113,183,73,-0.2991584981738268],[113,183,74,-0.29721089934011324],[113,183,75,-0.295138061389726],[113,183,76,-0.29294154724661803],[113,183,77,-0.29062308063154274],[113,183,78,-0.28818454880296407],[113,183,79,-0.28562800530738397],[113,184,64,-0.3118691780302897],[113,184,65,-0.3110972916799486],[113,184,66,-0.3101925562458181],[113,184,67,-0.3091552121540392],[113,184,68,-0.3079856366703365],[113,184,69,-0.30668434655788],[113,184,70,-0.3052520007445002],[113,184,71,-0.30368940299931135],[113,184,72,-0.30199750461870656],[113,184,73,-0.30017740712179297],[113,184,74,-0.2982303649551228],[113,184,75,-0.296157788206902],[113,184,76,-0.29396124533055445],[113,184,77,-0.2916424658776684],[113,184,78,-0.28920334324034913],[113,184,79,-0.2866459374029331],[113,185,64,-0.3127417546697795],[113,185,65,-0.3119729876821278],[113,185,66,-0.31107107087516206],[113,185,67,-0.3100362472866509],[113,185,68,-0.3088688970532226],[113,185,69,-0.30756954006998993],[113,185,70,-0.306138838659476],[113,185,71,-0.3045776002498999],[113,185,72,-0.3028867800627876],[113,185,73,-0.30106748380997284],[113,185,74,-0.2991209703998454],[113,185,75,-0.29704865465303143],[113,185,76,-0.29485211002737644],[113,185,77,-0.2925330713522657],[113,185,78,-0.290093437572302],[113,185,79,-0.28753527450029404],[113,186,64,-0.3134914655040447],[113,186,65,-0.31272552660910224],[113,186,66,-0.3118261673536048],[113,186,67,-0.3107936331179817],[113,186,68,-0.3096283066149331],[113,186,69,-0.3083307105506524],[113,186,70,-0.3069015102953051],[113,186,71,-0.3053415165628254],[113,186,72,-0.30365168809999443],[113,186,73,-0.3018331343848646],[113,186,74,-0.29988711833438964],[113,186,75,-0.29781505902144034],[113,186,76,-0.29561853440108277],[113,186,77,-0.29329928404614947],[113,186,78,-0.2908592118921234],[113,186,79,-0.2883003889912924],[113,187,64,-0.31412302655343505],[113,187,65,-0.31335963082592333],[113,187,66,-0.31246257330171867],[113,187,67,-0.3114321014459298],[113,187,68,-0.3102686002643833],[113,187,69,-0.3089725949662814],[113,187,70,-0.30754475363608247],[113,187,71,-0.30598588991465614],[113,187,72,-0.30429696568968523],[113,187,73,-0.30247909379537286],[113,187,74,-0.30053354072131844],[113,187,75,-0.29846172933073967],[113,187,76,-0.2962652415879198],[113,187,77,-0.2939458212949092],[113,187,78,-0.29150537683749944],[113,187,79,-0.2889459839404315],[113,188,64,-0.3146414811851972],[113,188,65,-0.31388035132690406],[113,188,66,-0.3129853461639489],[113,188,67,-0.3119567149997715],[113,188,68,-0.310794844862991],[113,188,69,-0.30950026317134494],[113,188,70,-0.30807364040481844],[113,188,71,-0.306515792788014],[113,188,72,-0.3048276849817315],[113,188,73,-0.30301043278382656],[113,188,74,-0.301065305839195],[113,188,75,-0.2989937303590757],[113,188,76,-0.2967972918495444],[113,188,77,-0.2944777378492227],[113,188,78,-0.29203698067623485],[113,188,79,-0.28947710018435624],[113,189,64,-0.31505220686751145],[113,189,65,-0.314293074530006],[113,189,66,-0.3133998800413409],[113,189,67,-0.31237287430922966],[113,189,68,-0.3112124461281013],[113,189,69,-0.3099191248441723],[113,189,70,-0.3084935830296752],[113,189,71,-0.3069366391663024],[113,189,72,-0.3052492603378285],[113,189,73,-0.3034325649319809],[113,189,74,-0.30148782535141017],[113,189,75,-0.2994164707339453],[113,189,76,-0.2972200896820142],[113,189,77,-0.29490043300124835],[113,189,78,-0.2924594164483032],[113,189,79,-0.28989912348784674],[113,190,64,-0.31536092197510945],[113,190,65,-0.3146035291232595],[113,190,66,-0.3137119125767336],[113,190,67,-0.3126863246264221],[113,190,68,-0.3115271555896877],[113,190,69,-0.31023493647641975],[113,190,70,-0.3088103416642266],[113,190,71,-0.3072541915828122],[113,190,72,-0.30556745540750974],[113,190,73,-0.3037512537620368],[113,190,74,-0.30180686143032354],[113,190,75,-0.29973571007760424],[113,190,76,-0.2975393909806441],[113,190,77,-0.29521965776712766],[113,190,78,-0.29277842916423935],[113,190,79,-0.2902177917563803],[113,191,64,-0.3155736926464715],[113,191,65,-0.31481779296321366],[113,191,66,-0.3139275318924153],[113,191,67,-0.3129031629006922],[113,191,68,-0.311745077600332],[113,191,69,-0.3104538084161971],[113,191,70,-0.3090300312617411],[113,191,71,-0.3074745682241907],[113,191,72,-0.3057883902588614],[113,191,73,-0.30397261989267266],[113,191,74,-0.3020285339367176],[113,191,75,-0.29995756620807135],[113,191,76,-0.29776131026071506],[113,191,77,-0.2954415221255988],[113,191,78,-0.29300012305987577],[113,191,79,-0.2904392023052532],[113,192,64,-0.31569693969258894],[113,192,65,-0.3149423000253998],[113,192,66,-0.3140531835802274],[113,192,67,-0.31302984480629714],[113,192,68,-0.31187267639846417],[113,192,69,-0.3105822119648336],[113,192,70,-0.30915912870347195],[113,192,71,-0.3076042500882703],[113,192,72,-0.30591854856392164],[113,192,73,-0.3041031482500779],[113,192,74,-0.30215932765454745],[113,192,75,-0.3000885223957107],[113,192,76,-0.29789232793403286],[113,192,77,-0.29557250231270105],[113,192,78,-0.2931309689074105],[113,192,79,-0.29056981918525326],[113,193,64,-0.31573744555730887],[113,193,65,-0.3149838474068304],[113,193,66,-0.31409567774413527],[113,193,67,-0.3130731918229839],[113,193,68,-0.31191678322488614],[113,193,69,-0.31062698652731024],[113,193,70,-0.3092044799809739],[113,193,71,-0.30765008819626904],[113,193,72,-0.305964784838785],[113,193,73,-0.3041496953340024],[113,193,74,-0.30220609958100686],[113,193,75,-0.3001354346754087],[113,193,76,-0.2979392976413454],[113,193,77,-0.29561944817259433],[113,193,78,-0.29317781138281696],[113,193,79,-0.290616480564895],[113,194,64,-0.3157023613292469],[113,194,65,-0.31494960238051617],[113,194,66,-0.3140621960952492],[113,194,67,-0.3130403983694293],[113,194,68,-0.31188460349255676],[113,194,69,-0.3105953468163358],[113,194,70,-0.3091733074324319],[113,194,71,-0.3076193108593489],[113,194,72,-0.30593433173839646],[113,194,73,-0.30411949653881265],[113,194,74,-0.30217608627189685],[113,194,75,-0.30010553921433836],[113,194,76,-0.29790945364061205],[113,194,77,-0.2955895905644764],[113,194,78,-0.29314787648959106],[113,194,79,-0.2905864061692106],[113,195,64,-0.31559921380528455],[113,195,65,-0.31484710950201455],[113,195,66,-0.3139602990993142],[113,195,67,-0.31293903898956377],[113,195,68,-0.3117837240096618],[113,195,69,-0.3104948901100858],[113,195,70,-0.3090732170330125],[113,195,71,-0.3075195309995489],[113,195,72,-0.3058348074060465],[113,195,73,-0.3040201735295598],[113,195,74,-0.3020769112423065],[113,195,75,-0.30000645973531526],[113,195,76,-0.29781041825113086],[113,195,77,-0.2954905488256121],[113,195,78,-0.2930487790388424],[113,195,79,-0.2904872047751048],[113,196,64,-0.3154359126056202],[113,196,65,-0.3146842977679881],[113,196,66,-0.3137979331766374],[113,196,67,-0.31277707559174905],[113,196,68,-0.31162212025593494],[113,196,69,-0.31033360356357687],[113,196,70,-0.30891220573921874],[113,196,71,-0.3073587535250638],[113,196,72,-0.305674222877547],[113,196,73,-0.30385974167304575],[113,196,74,-0.30191659242258606],[113,196,75,-0.29984621499572817],[113,196,76,-0.2976502093535055],[113,196,77,-0.2953303382904465],[113,196,78,-0.2928885301857054],[113,196,79,-0.29032688176324883],[113,197,64,-0.3152207573404201],[113,197,65,-0.31446948782680817],[113,197,66,-0.3135834379544966],[113,197,67,-0.31256286474085393],[113,197,68,-0.31140816371227453],[113,197,69,-0.31011987157371645],[113,197,70,-0.3086986688872835],[113,197,71,-0.30714538275991154],[113,197,72,-0.30546098954012324],[113,197,73,-0.3036466175239173],[113,197,74,-0.30170354966964785],[113,197,75,-0.2996332263220789],[113,197,76,-0.2974372479454883],[113,197,77,-0.29511737786584946],[113,197,78,-0.29267554502211557],[113,197,79,-0.2901138467265584],[113,198,64,-0.3149624448280237],[113,198,65,-0.31421139924116637],[113,198,66,-0.31332555357199054],[113,198,67,-0.3123051650031847],[113,198,68,-0.3111506292436149],[113,198,69,-0.30986248319798837],[113,198,70,-0.30844140764556127],[113,198,71,-0.3068882299279456],[113,198,72,-0.3052039266459834],[113,198,73,-0.3033896263657523],[113,198,74,-0.3014466123335564],[113,198,75,-0.29937632520009216],[113,198,76,-0.29718036575365847],[113,198,77,-0.2948604976624414],[113,198,78,-0.2924186502259005],[113,198,79,-0.28985692113520634],[113,199,64,-0.31467007636473154],[113,199,65,-0.31391915780271873],[113,199,66,-0.3130334280373507],[113,199,67,-0.3120131443442955],[113,199,68,-0.3108587025350751],[113,199,69,-0.3095706396267992],[113,199,70,-0.3081496365209473],[113,199,71,-0.3065965206912421],[113,199,72,-0.30491226888059253],[113,199,73,-0.30309800980716395],[113,199,74,-0.3011550268794354],[113,199,75,-0.2990847609204249],[113,199,76,-0.29688881290096214],[113,199,77,-0.29456894668203315],[113,199,78,-0.29212709176622254],[113,199,79,-0.2895653460582067],[113,200,64,-0.31435316504617017],[113,200,65,-0.31360230289875424],[113,200,66,-0.31271662463771666],[113,200,67,-0.31169638757967677],[113,200,68,-0.31054198758138263],[113,200,69,-0.3092539617094776],[113,200,70,-0.30783299091931204],[113,200,71,-0.3062799027428502],[113,200,72,-0.3045956739856397],[113,200,73,-0.30278143343291475],[113,200,74,-0.30083846456467855],[113,200,75,-0.2987682082799591],[113,200,76,-0.2965722656301083],[113,200,77,-0.2942524005611711],[113,200,78,-0.2918105426653558],[113,200,79,-0.2892487899415509],[113,201,64,-0.3140216431402194],[113,201,65,-0.31327079493088195],[113,201,66,-0.31238512940135676],[113,201,67,-0.3113649038783036],[113,201,68,-0.31021051422956025],[113,201,69,-0.3089224975339201],[113,201,70,-0.3075015347599489],[113,201,71,-0.30594845345390087],[113,201,72,-0.3042642304366967],[113,201,73,-0.3024499945100305],[113,201,74,-0.300507029171463],[113,201,75,-0.2984367753386824],[113,201,76,-0.29624083408280966],[113,201,77,-0.29392096937077594],[113,201,78,-0.2914791108167971],[113,201,79,-0.2889173564428996],[113,202,64,-0.31368524464153624],[113,202,65,-0.3129343940719864],[113,202,66,-0.3120487262508925],[113,202,67,-0.31102849850527226],[113,202,68,-0.30987410670323967],[113,202,69,-0.3085860879237784],[113,202,70,-0.30716512313555855],[113,202,71,-0.3056120398848482],[113,202,72,-0.3039278149924899],[113,202,73,-0.30211357726000543],[113,202,74,-0.30017061018468594],[113,202,75,-0.29810035468385054],[113,202,76,-0.29590441182814886],[113,202,77,-0.29358454558393654],[113,202,78,-0.2911426855647474],[113,202,79,-0.28858092979181416],[113,203,64,-0.31334468667494786],[113,203,65,-0.312593787771127],[113,203,66,-0.31170807337055495],[113,203,67,-0.3106878008023113],[113,203,68,-0.309533365934636],[113,203,69,-0.30824530584465837],[113,203,70,-0.30682430149716544],[113,203,71,-0.30527118043246915],[113,203,72,-0.3035869194633348],[113,203,73,-0.3017726473810387],[113,203,74,-0.29982964767041187],[113,203,75,-0.29775936123405],[113,203,76,-0.2955633891255681],[113,203,77,-0.2932434952919286],[113,203,78,-0.29080160932486354],[113,203,79,-0.28823982922134783],[113,204,64,-0.3129937313709541],[113,204,65,-0.31224266655372535],[113,204,66,-0.3113567922616194],[113,204,67,-0.3103363658309304],[113,204,68,-0.30918178313046873],[113,204,69,-0.30789358123113053],[113,204,70,-0.3064724410845082],[113,204,71,-0.30491919021059766],[113,204,72,-0.30323480539456504],[113,204,73,-0.3014204153926443],[113,204,74,-0.29947730364701575],[113,204,75,-0.2974069110098536],[113,204,76,-0.29521083847641505],[113,204,77,-0.29289084992720194],[113,204,78,-0.2904488748792169],[113,204,79,-0.28788701124626725],[113,205,64,-0.31262626789101566],[113,205,65,-0.3118748500339886],[113,205,66,-0.3109886355120184],[113,205,67,-0.3099678816770608],[113,205,68,-0.3088129843994447],[113,205,69,-0.3075244807371046],[113,205,70,-0.30610305161385354],[113,205,71,-0.30454952450674877],[113,205,72,-0.30286487614251656],[113,205,73,-0.3010502352031036],[113,205,74,-0.2991068850402092],[113,205,75,-0.2970362663989822],[113,205,76,-0.29483998015075963],[113,205,77,-0.2925197900348735],[113,205,78,-0.2900776254095504],[113,205,79,-0.28751558401185795],[113,206,64,-0.312236495823906],[113,206,65,-0.31148447142449465],[113,206,66,-0.3105976723617543],[113,206,67,-0.3095763560150915],[113,206,68,-0.30842091825797957],[113,206,69,-0.3071318961266145],[113,206,70,-0.30570997049760373],[113,206,71,-0.30415596877474627],[113,206,72,-0.30247086758486674],[113,206,73,-0.30065579548277377],[113,206,74,-0.2987120356651931],[113,206,75,-0.2966410286938642],[113,206,76,-0.29444437522767264],[113,206,77,-0.29212383876384784],[113,206,78,-0.2896813483882501],[113,206,79,-0.28711900153469905],[113,207,64,-0.31181891866912737],[113,207,65,-0.3110659709592005],[113,207,66,-0.31017828206777986],[113,207,67,-0.30915610941689786],[113,207,68,-0.3079998488856456],[113,207,69,-0.30671003747794523],[113,207,70,-0.30528735599935164],[113,207,71,-0.3037326317429381],[113,207,72,-0.3020468411842304],[113,207,73,-0.30023111268525937],[113,207,74,-0.2982867292075828],[113,207,75,-0.29621513103446395],[113,207,76,-0.29401791850208125],[113,207,77,-0.29169685473979645],[113,207,78,-0.28925386841950684],[113,207,79,-0.28669105651403337],[113,208,64,-0.3113683373761935],[113,208,65,-0.3106140893727819],[113,208,66,-0.3097251473256589],[113,208,67,-0.30870176871808497],[113,208,68,-0.3075443494382458],[113,208,69,-0.3062534264457816],[113,208,70,-0.3048296804473343],[113,208,71,-0.3032739385811729],[113,208,72,-0.3015871771108576],[113,208,73,-0.2997705241280144],[113,208,74,-0.29782526226407136],[113,208,75,-0.29575283141114206],[113,208,76,-0.2935548314519332],[113,208,77,-0.2912330249987013],[113,208,78,-0.28878934014128643],[113,208,79,-0.28622587320417225],[113,209,64,-0.3108798439397723],[113,209,65,-0.31012386143630133],[113,209,66,-0.309233247748006],[113,209,67,-0.30820826044143657],[113,209,68,-0.3070492954185102],[113,209,69,-0.3057568895813746],[113,209,70,-0.3043317235062829],[113,209,71,-0.302774624126532],[113,209,72,-0.30108656742443074],[113,209,73,-0.2992686811323667],[113,209,74,-0.2973222474428244],[113,209,75,-0.2952487057275379],[113,209,76,-0.29304965526565807],[113,209,77,-0.29072685798095754],[113,209,78,-0.2882822411881011],[113,209,79,-0.2857179003479313],[113,210,64,-0.3103488150506727],[113,210,65,-0.30959060954918927],[113,210,66,-0.30869785339968614],[113,210,67,-0.3076708042775592],[113,210,68,-0.306509858104397],[113,210,69,-0.30521555171070924],[113,210,70,-0.30378856550765165],[113,210,71,-0.30222972616780075],[113,210,72,-0.30054000931494373],[113,210,73,-0.2987205422229522],[113,210,74,-0.2967726065235934],[113,210,75,-0.29469764092346307],[113,210,76,-0.2924972439299157],[113,210,77,-0.29017317658602104],[113,210,78,-0.28772736521456965],[113,210,79,-0.285161904171081],[113,211,64,-0.3097709058027035],[113,211,65,-0.30900993738756066],[113,211,66,-0.3081145183898022],[113,211,67,-0.30708490662274235],[113,211,68,-0.3059214980350258],[113,211,69,-0.3046248293706971],[113,211,70,-0.3031955808382496],[113,211,71,-0.30163457878870414],[113,211,72,-0.29994279840268856],[113,211,73,-0.2981213663865804],[113,211,74,-0.29617156367757014],[113,211,75,-0.2940948281578283],[113,211,76,-0.29189275737765275],[113,211,77,-0.28956711128762325],[113,211,78,-0.2871198149797882],[113,211,79,-0.2845529614378357],[113,212,64,-0.30914204345538876],[113,212,65,-0.30837772360885907],[113,212,66,-0.3074790745204561],[113,212,67,-0.30644635417402544],[113,212,68,-0.3052799585542302],[113,212,69,-0.3039804243033878],[113,212,70,-0.30254843138726795],[113,212,71,-0.30098480576989706],[113,212,72,-0.29929052209733975],[113,212,73,-0.29746670639052575],[113,212,74,-0.29551463874697304],[113,212,75,-0.2934357560515939],[113,212,76,-0.2912316546964585],[113,212,77,-0.28890409330954625],[113,212,78,-0.2864549954925044],[113,212,79,-0.28388645256737277],[113,213,64,-0.3084584212525282],[113,213,65,-0.307690115612811],[113,213,66,-0.3067876249922713],[113,213,67,-0.30575120758145713],[113,213,68,-0.30458125941171454],[113,213,69,-0.30327831700817665],[113,213,70,-0.3018430600516846],[113,213,71,-0.3002763140496917],[113,213,72,-0.29857905301611753],[113,213,73,-0.29675240216022203],[113,213,74,-0.2947976405843491],[113,213,75,-0.2927162039907276],[113,213,76,-0.2905096873972043],[113,213,77,-0.2881798478619374],[113,213,78,-0.28572860721707394],[113,213,79,-0.283158054811364],[113,214,64,-0.3077164922966309],[113,214,65,-0.3069435233587211],[113,214,66,-0.3060365381667046],[113,214,67,-0.3049957951575737],[113,214,68,-0.3038216904218466],[113,214,69,-0.3025147603520454],[113,214,70,-0.30107568430007503],[113,214,71,-0.2995052872435535],[113,214,72,-0.297804542461065],[113,214,73,-0.2959745742163967],[113,214,74,-0.294016660451621],[113,214,75,-0.2919322354892002],[113,214,76,-0.28972289274299434],[113,214,77,-0.2873903874381991],[113,214,78,-0.2849366393402363],[113,214,79,-0.2823637354925509],[113,215,64,-0.3069129634791965],[113,215,65,-0.3061346132390821],[113,215,66,-0.305222441385123],[113,215,67,-0.3041767066440758],[113,215,68,-0.3029978051800575],[113,215,69,-0.30168627323780584],[113,215,70,-0.30024278979480756],[113,215,71,-0.29866817922234135],[113,215,72,-0.2969634139554087],[113,215,73,-0.2951296171716147],[113,215,74,-0.293168065478855],[113,215,75,-0.2910801916119936],[113,215,76,-0.28886758713840754],[113,215,77,-0.28653200517242394],[113,215,78,-0.28407536309867765],[113,215,79,-0.28149974530433763],[113,216,64,-0.306044789466867],[113,216,65,-0.30526030200952503],[113,216,66,-0.3043422148446667],[113,216,67,-0.30329078703572143],[113,216,68,-0.3021064148368746],[113,216,69,-0.30078963433037154],[113,216,70,-0.299341124072643],[113,216,71,-0.29776170774930966],[113,216,72,-0.29605235683902953],[113,216,73,-0.29421419328625775],[113,216,74,-0.2922484921827715],[113,216,75,-0.29015668445814413],[113,216,76,-0.2879403595790464],[113,216,77,-0.28560126825740006],[113,216,78,-0.2831413251674094],[113,216,79,-0.28056261167142427],[113,217,64,-0.3051091667434144],[113,217,65,-0.3043177507750674],[113,217,66,-0.30339298553086547],[113,217,67,-0.3023351304614025],[113,217,68,-0.30114458192954996],[113,217,69,-0.2998218758410198],[113,217,70,-0.2983676902837038],[113,217,71,-0.29678284817584444],[113,217,72,-0.2950683199230043],[113,217,73,-0.29322522608390156],[113,217,74,-0.2912548400449636],[113,217,75,-0.28915859070378436],[113,217,76,-0.28693806516136333],[113,217,77,-0.28459501142315013],[113,217,78,-0.282131341108922],[113,217,79,-0.2795491321714445],[113,218,64,-0.3041035277076053],[113,218,65,-0.3033043590327109],[113,218,66,-0.3023721212070465],[113,218,67,-0.3013070741224467],[113,218,68,-0.30010961427132754],[113,218,69,-0.2987802773696904],[113,218,70,-0.29731974098885483],[113,218,71,-0.29572882719596816],[113,218,72,-0.29400850520326427],[113,218,73,-0.29215989402613396],[113,218,74,-0.29018426514986384],[113,218,75,-0.288083045205227],[113,218,76,-0.2858578186528019],[113,218,77,-0.2835103304760479],[113,218,78,-0.28104248888315864],[113,218,79,-0.27845636801765083],[113,219,64,-0.3030255348269272],[113,219,65,-0.3022177587703646],[113,219,66,-0.3012772244605223],[113,219,67,-0.3002041922881292],[113,219,68,-0.2989990588983328],[113,219,69,-0.2976623598052991],[113,219,70,-0.29619477201547995],[113,219,71,-0.29459711665960353],[113,219,72,-0.2928703616333522],[113,219,73,-0.2910156242467985],[113,219,74,-0.2890341738824471],[113,219,75,-0.2869274346620754],[113,219,76,-0.284696988122242],[113,219,77,-0.2823445758984937],[113,219,78,-0.2798721024182952],[113,219,79,-0.27728163760263314],[113,220,64,-0.30187307484714554],[113,220,65,-0.30105580862206804],[113,220,66,-0.3001061268055256],[113,220,67,-0.29902429034836087],[113,220,68,-0.2978106960740545],[113,220,69,-0.2964658792840408],[113,220,70,-0.2949905163716251],[113,220,71,-0.2933854274445602],[113,220,72,-0.2916515789562477],[113,220,73,-0.2897900863456311],[113,220,74,-0.28780221668563355],[113,220,75,-0.285689391340328],[113,220,76,-0.2834531886307129],[113,220,77,-0.28109534650912105],[113,220,78,-0.27861776524228865],[113,220,79,-0.27602251010303314],[113,221,64,-0.3006442530577432],[113,221,65,-0.29981658807956324],[113,221,66,-0.2988568828429429],[113,221,67,-0.2977653989236093],[113,221,68,-0.29654253335146974],[113,221,69,-0.29518882120573176],[113,221,70,-0.2937049382185569],[113,221,71,-0.29209170338730195],[113,221,72,-0.2903500815953133],[113,221,73,-0.2884811862413449],[113,221,74,-0.2864862818774493],[113,221,75,-0.2843667868555302],[113,221,76,-0.2821242759824305],[113,221,77,-0.27976048318358415],[113,221,78,-0.27727730417525465],[113,221,79,-0.2746767991453164],[113,222,64,-0.2993373876132235],[113,222,65,-0.2984983917601972],[113,222,66,-0.29752776447682683],[113,222,67,-0.29642576803202914],[113,222,68,-0.2951927996927929],[113,222,69,-0.2938293943081697],[113,222,70,-0.2923362269017198],[113,222,71,-0.2907141152724685],[113,222,72,-0.28896402260434084],[113,222,73,-0.28708706008413976],[113,222,74,-0.28508448952792076],[113,222,75,-0.2829577260159537],[113,222,76,-0.28070834053613747],[113,222,77,-0.27833806263590755],[113,222,78,-0.2758487830826487],[113,222,79,-0.2732425565325741],[113,223,64,-0.29795100391023555],[113,223,65,-0.2970997237311154],[113,223,66,-0.29611725518764953],[113,223,67,-0.29500386131376266],[113,223,68,-0.2937599396468097],[113,223,69,-0.29238602479947595],[113,223,70,-0.2908827910400491],[113,223,71,-0.289251054881117],[113,223,72,-0.287491777676659],[113,223,73,-0.28560606822759826],[113,223,74,-0.28359518539566475],[113,223,75,-0.2814605407257619],[113,223,76,-0.279203701076704],[113,223,77,-0.276826391260358],[113,223,78,-0.2743304966892113],[113,223,79,-0.2717180660323173],[113,224,64,-0.296483829020591],[113,224,65,-0.2956192918898123],[113,224,66,-0.294624044362363],[113,224,67,-0.29349835031248106],[113,224,68,-0.29224260758386134],[113,224,69,-0.29085735054848205],[113,224,70,-0.2893432526737111],[113,224,71,-0.28770112909774836],[113,224,72,-0.2859319392133687],[113,224,73,-0.28403678926003695],[113,224,74,-0.28201693492423996],[113,224,75,-0.27987378394823215],[113,224,76,-0.2776088987470612],[113,224,77,-0.2752239990339054],[113,224,78,-0.27272096445374716],[113,224,79,-0.27010183722533365],[113,225,64,-0.29493478618014046],[113,225,65,-0.2940560024010104],[113,225,66,-0.29304702168123464],[113,225,67,-0.2919081088141309],[113,225,68,-0.29063966198845226],[113,225,69,-0.28924221533313665],[113,225,70,-0.28771644147023745],[113,225,71,-0.2860631540760894],[113,225,72,-0.284283310450678],[113,225,73,-0.28237801409528207],[113,225,74,-0.2803485172982356],[113,225,75,-0.2781962237290022],[113,225,76,-0.27592269104043454],[113,225,77,-0.2735296334792444],[113,225,78,-0.27101892450471],[113,225,79,-0.26839259941557414],[113,226,64,-0.2933029893334709],[113,226,65,-0.2924089541898246],[113,226,66,-0.29138527156142147],[113,226,67,-0.29023220724285037],[113,226,68,-0.2889501598094356],[113,226,69,-0.28753966314688506],[113,226,70,-0.28600138898901195],[113,226,71,-0.2843361494635879],[113,226,72,-0.28254489964629137],[113,226,73,-0.28062874012282535],[113,226,74,-0.2785889195590455],[113,226,75,-0.27642683727929873],[113,226,76,-0.2741440458528358],[113,226,77,-0.2717422536883327],[113,226,78,-0.2692233276365419],[113,226,79,-0.26658929560102695],[113,227,64,-0.29158773773449587],[113,227,65,-0.2906774334912917],[113,227,66,-0.2896380676573532],[113,227,67,-0.28846990711412646],[113,227,68,-0.2871733508678579],[113,227,69,-0.28574893256310274],[113,227,70,-0.28419732300418876],[113,227,71,-0.2825193326846982],[113,227,72,-0.2807159143249347],[113,227,73,-0.27878816541744045],[113,227,74,-0.27673733078041474],[113,227,75,-0.27456480511922665],[113,227,76,-0.2722721355958885],[113,227,77,-0.2698610244065247],[113,227,78,-0.26733333136685655],[113,227,79,-0.26469107650565693],[113,228,64,-0.2897885106029088],[113,228,65,-0.2888609084562255],[113,228,66,-0.2878048674178961],[113,228,67,-0.28662065554516236],[113,228,68,-0.2853086723224241],[113,228,69,-0.2838694511575469],[113,228,70,-0.28230366188600575],[113,228,71,-0.2806121132829248],[113,228,72,-0.27879575558297853],[113,228,73,-0.27685568300822583],[113,228,74,-0.27479313630371827],[113,228,75,-0.2726095052810855],[113,228,76,-0.27030633136995874],[113,228,77,-0.26788531017726613],[113,228,78,-0.26534829405442484],[113,228,79,-0.2626972946723797],[113,229,64,-0.28790496183644954],[113,229,65,-0.2869590238133539],[113,229,66,-0.2858853067002427],[113,229,67,-0.2846840798224053],[113,229,68,-0.28335574319253687],[113,229,69,-0.2819008299887751],[113,229,70,-0.28032000904044474],[113,229,71,-0.2786140873215688],[113,229,72,-0.2767840124521105],[113,229,73,-0.2748308752070193],[113,229,74,-0.27275591203292193],[113,229,75,-0.27056050757265937],[113,229,76,-0.2682461971975336],[113,229,77,-0.2658146695472985],[113,229,78,-0.26326776907791205],[113,229,79,-0.2606074986170128],[113,230,64,-0.28593691477907],[113,230,65,-0.28497159558782437],[113,230,66,-0.2838791944406227],[113,230,67,-0.2826599820263229],[113,230,68,-0.2813143589389987],[113,230,69,-0.279842858136624],[113,230,70,-0.27824614740732734],[113,230,71,-0.27652503184327515],[113,230,72,-0.27468045632214777],[113,230,73,-0.27271350799628213],[113,230,74,-0.27062541878932167],[113,230,75,-0.26841756790057447],[113,230,76,-0.26609148431694396],[113,230,77,-0.2636488493324639],[113,230,78,-0.2610914990754617],[113,230,79,-0.2584214270433012],[113,231,64,-0.28388435704496395],[113,231,65,-0.2828986058760373],[113,231,66,-0.2817865073817901],[113,231,67,-0.2805483337133896],[113,231,68,-0.2791844861023368],[113,231,69,-0.27769549729870646],[113,231,70,-0.27608203401680886],[113,231,71,-0.2743448993883353],[113,231,72,-0.27248503542295055],[113,231,73,-0.2705035254764063],[113,231,74,-0.2684015967260146],[113,231,75,-0.26618062265368525],[113,231,76,-0.2638421255363883],[113,231,77,-0.2613877789440756],[113,231,78,-0.2588194102450845],[113,231,79,-0.25613900311897597],[113,232,64,-0.28174743539840097],[113,232,65,-0.2807401976767545],[113,232,66,-0.27960738485723335],[113,232,67,-0.27834927065522574],[113,232,68,-0.27696625699869426],[113,232,69,-0.27545887644486955],[113,232,70,-0.2738277946042097],[113,232,71,-0.27207381257168806],[113,232,72,-0.2701978693653757],[113,232,73,-0.26820104437239],[113,232,74,-0.2660845598020467],[113,232,75,-0.2638497831464248],[113,232,76,-0.26149822964820035],[113,232,77,-0.2590315647757845],[113,232,78,-0.25645160670579126],[113,232,79,-0.253760328812783],[113,233,64,-0.2795264506894708],[113,233,65,-0.27849666977858145],[113,233,66,-0.27734212363221045],[113,233,67,-0.276063087634994],[113,233,68,-0.274659964473391],[113,233,69,-0.27313328652971836],[113,233,70,-0.27148371828329054],[113,233,71,-0.26971205871872517],[113,233,72,-0.26781924374137855],[113,233,73,-0.26580634859998586],[113,233,74,-0.2636745903163423],[113,233,75,-0.26142533012223224],[113,233,76,-0.25906007590346636],[113,233,77,-0.25658048465106054],[113,233,78,-0.253988364919579],[113,233,79,-0.25128567929259527],[113,234,64,-0.2772218528456857],[113,234,65,-0.27616847170377934],[113,234,66,-0.27499117280156116],[113,234,67,-0.2736902333010046],[113,234,68,-0.272266056712108],[113,234,69,-0.27071917526315814],[113,234,70,-0.26905025227792556],[113,234,71,-0.2672600845598555],[113,234,72,-0.26534960478321534],[113,234,73,-0.2633198838912777],[113,234,74,-0.2611721335013705],[113,234,75,-0.25890770831700627],[113,234,76,-0.25652810854694574],[113,234,77,-0.2540349823312329],[113,234,78,-0.25143012817422283],[113,234,79,-0.24871549738455556],[113,235,64,-0.27483423591938694],[113,235,65,-0.27375619870834367],[113,235,66,-0.27255512874423715],[113,235,67,-0.2712313050774674],[113,235,68,-0.2697851321096306],[113,235,69,-0.2682171419388917],[113,235,70,-0.26652799671210614],[113,235,71,-0.26471849098375855],[113,235,72,-0.2627895540816788],[113,235,73,-0.26074225247961236],[113,235,74,-0.2585777921764766],[113,235,75,-0.2562975210825186],[113,235,76,-0.2539029314122251],[113,235,77,-0.251395662084025],[113,235,78,-0.24877750112680386],[113,235,79,-0.24605038809318447],[113,236,64,-0.27236433319106135],[113,236,65,-0.27126058683846477],[113,236,66,-0.27003473013465984],[113,236,67,-0.2686870441325049],[113,236,68,-0.26721793419626816],[113,236,69,-0.2656279323209887],[113,236,70,-0.26391769945839494],[113,236,71,-0.2620880278494504],[113,236,72,-0.2601398433634893],[113,236,73,-0.25807420784401636],[113,236,74,-0.2558923214610054],[113,236,75,-0.2535955250699088],[113,236,76,-0.2511853025772315],[113,236,77,-0.24866328331270682],[113,236,78,-0.24603124440809832],[113,236,79,-0.24329111318257624],[113,237,64,-0.2698130123285223],[113,237,65,-0.2686825080433164],[113,237,66,-0.26743085301086156],[113,237,67,-0.26605833040337856],[113,237,68,-0.26456534662189657],[113,237,69,-0.2629524335884731],[113,237,70,-0.2612202510447783],[113,237,71,-0.2593695888571078],[113,237,72,-0.25740136932778535],[113,237,73,-0.2553166495130368],[113,237,74,-0.2531166235471596],[113,237,75,-0.25080262497320827],[113,237,76,-0.2483761290800478],[113,237,77,-0.245838755245809],[113,237,78,-0.24319226928777193],[113,237,79,-0.2404385858186291],[113,238,64,-0.26718127060188424],[113,238,65,-0.2660229653441071],[113,238,66,-0.26474450589932974],[113,238,67,-0.2633461776788524],[113,238,68,-0.2618283881975555],[113,238,69,-0.26019166933785964],[113,238,70,-0.25843667961984207],[113,238,71,-0.25656420647757383],[113,238,72,-0.2545751685416421],[113,238,73,-0.2524706179279348],[113,238,74,-0.2502517425325166],[113,238,75,-0.24791986833281332],[113,238,76,-0.24547646169495585],[113,238,77,-0.24292313168732316],[113,238,78,-0.24026163240030352],[113,238,79,-0.23749386527222904],[113,239,64,-0.26447023015446314],[113,239,65,-0.2632830880595244],[113,239,66,-0.2619768249967034],[113,239,67,-0.26055172873883414],[113,239,68,-0.25900820799473334],[113,239,69,-0.2573467946437761],[113,239,70,-0.25556814597641353],[113,239,71,-0.2536730469406948],[113,239,72,-0.2516624123947593],[113,239,73,-0.24953728936537545],[113,239,74,-0.2472988593123545],[113,239,75,-0.24494844039905894],[113,239,76,-0.2424874897688526],[113,239,77,-0.2399176058275363],[113,239,78,-0.23724053053178473],[113,239,79,-0.2344581516835419],[113,240,64,-0.26168113332949383],[113,240,65,-0.26046412708746325],[113,240,66,-0.2591290694081937],[113,240,67,-0.25767625055117815],[113,240,68,-0.2561060805022296],[113,240,69,-0.25441909117755646],[113,240,70,-0.25261593863355103],[113,240,71,-0.25069740528236006],[113,240,72,-0.2486644021131994],[113,240,73,-0.246517970919493],[113,240,74,-0.24425928653165863],[113,240,75,-0.2418896590557672],[113,240,76,-0.23941053611791807],[113,240,77,-0.2368235051143739],[113,240,78,-0.23413029546747444],[113,240,79,-0.23133278088728293],[113,241,64,-0.2588153380527518],[113,241,65,-0.25756745024312544],[113,241,66,-0.2562026164428328],[113,241,67,-0.254721129525743],[113,241,68,-0.25312340084068363],[113,241,69,-0.2514099623838967],[113,241,70,-0.24958146897697475],[113,241,71,-0.24763870045034653],[113,241,72,-0.24558256383227173],[113,241,73,-0.2434140955434282],[113,241,74,-0.2411344635969107],[113,241,75,-0.23874496980386906],[113,241,76,-0.23624705198463192],[113,241,77,-0.23364228618535288],[113,241,78,-0.23093238890020407],[113,241,79,-0.2281192192990681],[113,242,64,-0.25587431327095256],[113,242,65,-0.25459453765336537],[113,242,66,-0.2531989569654104],[113,242,67,-0.25168786682557176],[113,242,68,-0.25006168003464047],[113,242,69,-0.24832092871544276],[113,242,70,-0.24646626645780634],[113,242,71,-0.24449847046883044],[113,242,72,-0.2424184437284258],[113,242,73,-0.24022721715020146],[113,242,74,-0.23792595174752162],[113,242,75,-0.2355159408049613],[113,242,76,-0.2329986120550006],[113,242,77,-0.23037552986000287],[113,242,78,-0.22764839739949494],[113,242,79,-0.2248190588627038],[113,243,64,-0.2528596344460803],[113,243,65,-0.2515469772074298],[113,243,66,-0.2501196908052614],[113,243,67,-0.24857807373535112],[113,243,68,-0.24692254034230665],[113,243,69,-0.2451536229254655],[113,243,70,-0.24327197384977461],[113,243,71,-0.24127836766172794],[113,243,72,-0.2391737032103174],[113,243,73,-0.2369590057730815],[113,243,74,-0.23463542918707103],[113,243,75,-0.2322042579849628],[113,243,76,-0.2296669095361593],[113,243,77,-0.22702493619292208],[113,243,78,-0.22428002744155284],[113,243,79,-0.22143401205858215],[113,244,64,-0.2497729791055774],[113,244,65,-0.24842646006402958],[113,244,66,-0.24696652222182813],[113,244,67,-0.245393467087079],[113,244,68,-0.24370771064293262],[113,244,69,-0.24190978541855468],[113,244,70,-0.24000034256481817],[113,244,71,-0.23798015393479022],[113,244,72,-0.23585011416897284],[113,244,73,-0.23361124278538192],[113,244,74,-0.23126468627427987],[113,244,75,-0.22881172019779628],[113,244,76,-0.22625375129427583],[113,244,77,-0.2235923195873949],[113,244,78,-0.22082910050006987],[113,244,79,-0.21796590697310858],[113,245,64,-0.24661612244831377],[113,245,65,-0.24523477621465462],[113,245,66,-0.24374125542691905],[113,245,67,-0.24213586474285842],[113,245,68,-0.24041902188172848],[113,245,69,-0.238591259659246],[113,245,70,-0.23665322802699762],[113,245,71,-0.23460569611636928],[113,245,72,-0.23244955428696568],[113,245,73,-0.23018581617959388],[113,245,74,-0.22781562077362993],[113,245,75,-0.22534023444900886],[113,245,76,-0.22276105305266525],[113,245,77,-0.22007960396947857],[113,245,78,-0.21729754819773595],[113,245,79,-0.21441668242907086],[113,246,64,-0.24339093300649117],[113,246,65,-0.24197381010329322],[113,246,66,-0.24044579016381962],[113,246,67,-0.23880718113497512],[113,246,68,-0.23705840257248145],[113,246,69,-0.23519998763874195],[113,246,70,-0.23323258510487954],[113,246,71,-0.23115696135701813],[113,246,72,-0.22897400240677135],[113,246,73,-0.2266847159060208],[113,246,74,-0.22429023316579522],[113,246,75,-0.22179181117949498],[113,246,76,-0.219190834650288],[113,246,77,-0.2164888180227329],[113,246,78,-0.21368740751863768],[113,246,79,-0.21078838317711868],[113,247,64,-0.24009936836340823],[113,247,65,-0.23864553630247953],[113,247,66,-0.23708211734317974],[113,247,67,-0.23540942286318378],[113,247,68,-0.2336278743577943],[113,247,69,-0.23173800539965017],[113,247,70,-0.22974046360231903],[113,247,71,-0.22763601258784594],[113,247,72,-0.22542553395821952],[113,247,73,-0.22311002927084145],[113,247,74,-0.2206906220178081],[113,247,75,-0.21816855960924852],[113,247,76,-0.21554521536054827],[113,247,77,-0.2128220904835093],[113,247,78,-0.21000081608146082],[113,247,79,-0.20708315514827735],[113,248,64,-0.23674347092699993],[113,248,65,-0.23525201524558093],[113,248,66,-0.23365231473559311],[113,248,67,-0.23194468434911553],[113,248,68,-0.230129547626856],[113,248,69,-0.22820743861864978],[113,248,70,-0.2261790038075434],[113,248,71,-0.22404500403753813],[113,248,72,-0.22180631644495397],[113,248,73,-0.21946393639350115],[113,248,74,-0.2170189794128633],[113,248,75,-0.2144726831410435],[113,248,76,-0.2118264092702975],[113,248,77,-0.2090816454967056],[113,248,78,-0.20624000747339832],[113,248,79,-0.20330324076739448],[113,249,64,-0.23332536375931645],[113,249,65,-0.23179538901549485],[113,249,66,-0.23015854272103087],[113,249,67,-0.22841514354797243],[113,249,68,-0.22656561719091672],[113,249,69,-0.22461049824725843],[113,249,70,-0.222550432100717],[113,249,71,-0.22038617680821548],[113,249,72,-0.21811860499007596],[113,249,73,-0.2157487057236145],[113,249,74,-0.2132775864399431],[113,249,75,-0.21070647482422766],[113,249,76,-0.2080367207192273],[113,249,77,-0.20526979803216594],[113,249,78,-0.20240730664495243],[113,249,79,-0.19945097432770498],[113,250,64,-0.22984724646186394],[113,250,65,-0.22827787718967218],[113,250,66,-0.22660304009505639],[113,250,67,-0.2248230577174346],[113,250,68,-0.2229383580163844],[113,250,69,-0.22094947621061484],[113,250,70,-0.21885705661989963],[113,250,71,-0.2166618545100495],[113,250,72,-0.2143647379408844],[113,250,73,-0.21196668961729215],[113,250,74,-0.20946880874317475],[113,250,75,-0.20687231287854124],[113,250,76,-0.20417853979956224],[113,250,77,-0.20138894936164442],[113,250,78,-0.19850512536553744],[113,250,79,-0.19552877742643004],[113,251,64,-0.22631139111671456],[113,251,65,-0.22470177274137837],[113,251,66,-0.22298811993172113],[113,251,67,-0.22117075924367818],[113,251,68,-0.21925012101544983],[113,251,69,-0.21722674116418572],[113,251,70,-0.21510126298530585],[113,251,71,-0.21287443895453617],[113,251,72,-0.21054713253262036],[113,251,73,-0.2081203199727938],[113,251,74,-0.20559509213082217],[113,251,75,-0.20297265627786054],[113,251,76,-0.20025433791595282],[113,251,77,-0.1974415825962249],[113,251,78,-0.19453595773978705],[113,251,79,-0.19153915446130154],[113,252,64,-0.22272013828356063],[113,252,65,-0.22106943799736556],[113,252,66,-0.2193161655033261],[113,252,67,-0.2174606515246913],[113,252,68,-0.2155033288944188],[113,252,69,-0.21344473430857613],[113,252,70,-0.21128551008204693],[113,252,71,-0.20902640590661503],[113,252,72,-0.20666828061139586],[113,252,73,-0.2042121039256961],[113,252,74,-0.20165895824410196],[113,252,75,-0.19901004039406034],[113,252,76,-0.19626666340576326],[113,252,77,-0.19343025828439475],[113,252,78,-0.1905023757847547],[113,252,79,-0.18748468818821373],[113,253,64,-0.21907589305262998],[113,253,65,-0.21738330065187467],[113,253,66,-0.2155896262569592],[113,253,67,-0.21369520491079697],[113,253,68,-0.2117004720596679],[113,253,69,-0.20960596526235947],[113,253,70,-0.2074123259012688],[113,253,71,-0.205120300895544],[113,253,72,-0.20273074441622663],[113,253,73,-0.20024461960348527],[113,253,74,-0.19766300028573375],[113,253,75,-0.1949870727009002],[113,253,76,-0.1922181372196582],[113,253,77,-0.18935761007068008],[113,253,78,-0.18640702506792273],[113,253,79,-0.18336803533990487],[113,254,64,-0.21538112115336633],[113,254,65,-0.2136458498368673],[113,254,66,-0.21181101384771212],[113,254,67,-0.20987695270228612],[113,254,68,-0.20784410458112212],[113,254,69,-0.20571300799282177],[113,254,70,-0.20348430343958446],[113,254,71,-0.2011587350844274],[113,254,72,-0.1987371524200553],[113,254,73,-0.19622051193947077],[113,254,74,-0.19360987880811864],[113,254,75,-0.19090642853783157],[113,254,76,-0.18811144866238605],[113,254,77,-0.18522634041473196],[113,254,78,-0.18225262040590184],[113,254,79,-0.17919192230556302],[113,255,64,-0.2116383451190595],[113,255,65,-0.20985963224867638],[113,255,66,-0.20798289822876614],[113,255,67,-0.20600848720435122],[113,255,68,-0.20393684021344682],[113,255,69,-0.20176849680481912],[113,255,70,-0.19950409665699398],[113,255,71,-0.19714438119859484],[113,255,72,-0.19469019522997266],[113,255,73,-0.19214248854621852],[113,255,74,-0.18950231756134722],[113,255,75,-0.1867708469339272],[113,255,76,-0.18394935119396028],[113,255,77,-0.18103921637107412],[113,255,78,-0.17804194162403808],[113,255,79,-0.17495914087156106],[113,256,64,-0.20785014050733513],[113,256,65,-0.20602724833098318],[113,256,66,-0.20410790379825328],[113,256,67,-0.20209245583922752],[113,256,68,-0.19998134847485993],[113,256,69,-0.19777512238765055],[113,256,70,-0.1954744164932012],[113,256,71,-0.19307996951273454],[113,256,72,-0.1905926215465355],[113,256,73,-0.18801331564840928],[113,256,74,-0.1853430994009413],[113,256,75,-0.1825831264918365],[113,256,76,-0.17973465829114105],[113,256,77,-0.17679906542940804],[113,256,78,-0.17377782937681951],[113,256,79,-0.17067254402322302],[113,257,64,-0.20401913217640621],[113,257,65,-0.20215134851402417],[113,257,66,-0.20018870560279456],[113,257,67,-0.1981315573154402],[113,257,68,-0.19598035078346493],[113,257,69,-0.19373562791984444],[113,257,70,-0.19139802694221975],[113,257,71,-0.1889682838966773],[113,257,72,-0.18644723418207543],[113,257,73,-0.18383581407501293],[113,257,74,-0.18113506225521991],[113,257,75,-0.1783461213316555],[113,257,76,-0.17547023936910877],[113,257,77,-0.17250877141536902],[113,257,78,-0.16946318102897656],[113,257,79,-0.16633504180750958],[113,258,64,-0.20014799061727745],[113,258,65,-0.19823462951021564],[113,258,66,-0.19622802559790964],[113,258,67,-0.1941285378543557],[113,258,68,-0.19193661665129885],[113,258,69,-0.18965280523205907],[113,258,70,-0.1872777411854718],[113,258,71,-0.18481215792003353],[113,258,72,-0.18225688613820756],[113,258,73,-0.17961285531098792],[113,258,74,-0.17688109515250006],[113,258,75,-0.17406273709492437],[113,258,76,-0.17115901576353826],[113,258,77,-0.16817127045194358],[113,258,78,-0.16510094659748764],[113,258,79,-0.16194959725683822],[113,259,64,-0.19623942834181085],[113,259,65,-0.19427983066611032],[113,259,66,-0.1922286289652022],[113,259,67,-0.1900861874739408],[113,259,68,-0.18785295993600554],[113,259,69,-0.1855294910280012],[113,259,70,-0.18311641778328253],[113,259,71,-0.1806144710155867],[113,259,72,-0.1780244767424356],[113,259,73,-0.1753473576084041],[113,259,74,-0.17258413430802855],[113,259,75,-0.16973592700864976],[113,259,76,-0.16680395677297688],[113,259,77,-0.1637895469814482],[113,259,78,-0.16069412475438938],[113,259,79,-0.15751922237393323],[113,260,64,-0.1922961963265477],[113,260,65,-0.19028973037057473],[113,260,66,-0.18819332048621906],[113,260,67,-0.18600733632962485],[113,260,68,-0.18373223515001913],[113,260,69,-0.18136856316325267],[113,260,70,-0.17891695692466036],[113,260,71,-0.17637814470133129],[113,260,72,-0.17375294784374617],[113,260,73,-0.17104228215687856],[113,260,74,-0.16824715927053702],[113,260,75,-0.16536868800923876],[113,260,76,-0.1624080757614056],[113,260,77,-0.15936662984795225],[113,260,78,-0.1562457588902737],[113,260,79,-0.15304697417759128],[113,261,64,-0.18832108051248864],[113,261,65,-0.1862671425193927],[113,261,66,-0.184124940973184],[113,261,67,-0.18189485111246861],[113,261,68,-0.1795773338274741],[113,261,69,-0.1771729369822156],[113,261,70,-0.1746822967355739],[113,261,71,-0.17210613886137072],[113,261,72,-0.16944528006740422],[113,261,73,-0.16670062931354074],[113,261,74,-0.1638731891286329],[113,261,75,-0.16096405692656518],[113,261,76,-0.15797442632121017],[113,261,77,-0.15490558844036795],[113,261,78,-0.1517589332386955],[113,261,79,-0.14853595080958615],[113,262,64,-0.18431689836073228],[113,262,65,-0.1822149130361964],[113,262,66,-0.18002636375650716],[113,262,67,-0.17775163150454099],[113,262,68,-0.17539118094873207],[113,262,69,-0.17294556171307546],[113,262,70,-0.1704154096456244],[113,262,71,-0.1678014480855673],[113,262,72,-0.16510448912884707],[113,262,73,-0.1623254348924199],[113,262,74,-0.1594652787769243],[113,262,75,-0.15652510672805792],[113,262,76,-0.15350609849645036],[113,262,77,-0.1504095288961],[113,262,78,-0.14723676906138428],[113,262,79,-0.14398928770260289],[113,263,64,-0.1802864954638697],[113,263,65,-0.17813591644961752],[113,263,66,-0.17590049122896523],[113,263,67,-0.17358060669139574],[113,263,68,-0.17117673142242296],[113,263,69,-0.16868941692066786],[113,263,70,-0.16611929881300047],[113,263,71,-0.16346709806783843],[113,263,72,-0.16073362220656162],[113,263,73,-0.1579197665131432],[113,263,74,-0.1550265152417617],[113,263,75,-0.15205494282270038],[113,263,76,-0.14900621506631395],[113,263,77,-0.14588159036513682],[113,263,78,-0.14268242089413774],[113,263,79,-0.13941015380908373],[113,264,64,-0.17623274221335145],[113,264,65,-0.1740330525268804],[113,264,66,-0.17175025144677125],[113,264,67,-0.16938473193187054],[113,264,68,-0.1669369666252235],[113,264,69,-0.1644075090174824],[113,264,70,-0.1617969946079456],[113,264,71,-0.15910614206332296],[113,264,72,-0.15633575437418173],[113,264,73,-0.15348672000917785],[113,264,74,-0.15056001406683428],[113,264,75,-0.1475566994251753],[113,264,76,-0.14447792788899322],[113,264,77,-0.14132494133482587],[113,264,78,-0.13809907285364675],[113,264,79,-0.13480174789122973],[113,265,64,-0.17215853052264107],[113,265,65,-0.16990924296364868],[113,265,66,-0.1675785947873487],[113,265,67,-0.1651669851850212],[113,265,68,-0.16267489099918153],[113,265,69,-0.16010286783260563],[113,265,70,-0.15745155115454607],[113,265,71,-0.15472165740423072],[113,265,72,-0.15191398509160536],[113,265,73,-0.14902941589542057],[113,265,74,-0.1460689157584215],[113,265,75,-0.143033535979958],[113,265,76,-0.1399244143057844],[113,265,77,-0.13674277601512946],[113,265,78,-0.13348993500503914],[113,265,79,-0.13016729487195383],[113,266,64,-0.1680667706062992],[113,266,65,-0.1657674281302695],[113,266,66,-0.1633884906639515],[113,266,67,-0.16093036379433318],[113,266,68,-0.15839352870673323],[113,266,69,-0.15577854323875545],[113,266,70,-0.15308604293098438],[113,266,71,-0.15031674207451595],[113,266,72,-0.14747143475528418],[113,266,73,-0.14455099589528442],[113,266,74,-0.14155638229045076],[113,266,75,-0.13848863364550762],[113,266,76,-0.13534887360556114],[113,266,77,-0.13213831078451443],[113,266,78,-0.12885823979030647],[113,266,79,-0.12551004224693874],[113,267,64,-0.16396038781480676],[113,267,65,-0.16161056387422362],[113,267,66,-0.15918292429693937],[113,267,67,-0.1566778812290186],[113,267,68,-0.15409592034321729],[113,267,69,-0.15143760183720317],[113,267,70,-0.14870356142806146],[113,267,71,-0.14589451134318138],[113,267,72,-0.14301124130748133],[113,267,73,-0.14005461952707932],[113,267,74,-0.13702559366915834],[113,267,75,-0.133925191838352],[113,267,76,-0.13075452354941658],[113,267,77,-0.12751478069626915],[113,267,78,-0.12420723851739562],[113,267,79,-0.12083325655759158],[113,268,64,-0.159842319525353],[113,268,65,-0.15744161837900805],[113,268,66,-0.15496489354193382],[113,268,67,-0.15241256388262692],[113,268,68,-0.1497851197071179],[113,268,69,-0.14708312370082427],[113,268,70,-0.14430721186622314],[113,268,71,-0.14145809445644442],[113,268,72,-0.13853655690473893],[113,268,73,-0.13554346074992918],[113,268,74,-0.13247974455759381],[113,268,75,-0.1293464248373103],[113,268,76,-0.12614459695571872],[113,268,77,-0.12287543604549406],[113,268,78,-0.11954019791022152],[113,268,79,-0.11614021992514417],[113,269,64,-0.15571551208847867],[113,269,65,-0.15326356907934185],[113,269,66,-0.15073740577475003],[113,269,67,-0.14813744792886135],[113,269,68,-0.14546419062792548],[113,269,69,-0.1427181991751602],[113,269,70,-0.1399001099709774],[113,269,71,-0.1370106313886592],[113,269,72,-0.13405054464544103],[113,269,73,-0.13102070466910892],[113,269,74,-0.1279220409598571],[113,269,75,-0.12475555844773828],[113,269,76,-0.12152233834546566],[113,269,77,-0.11822353899665067],[113,269,78,-0.11486039671947823],[113,269,79,-0.11143422664578229],[113,270,64,-0.15158291783047512],[113,270,65,-0.14907939963259387],[113,270,66,-0.14650347483299453],[113,270,67,-0.14385557623449247],[113,270,68,-0.14113620385150805],[113,270,69,-0.1383459257373872],[113,270,70,-0.13548537880659367],[113,270,71,-0.1325552696518748],[113,270,72,-0.12955637535635872],[113,270,73,-0.12648954430068982],[113,270,74,-0.1233556969649468],[113,270,75,-0.12015582672567937],[113,270,76,-0.11689100064781843],[113,270,77,-0.11356236027154715],[113,270,78,-0.11017112239413268],[113,270,79,-0.10671857984668226],[113,271,64,-0.14744749211174363],[113,271,65,-0.14489209694663863],[113,271,66,-0.1422661180145447],[113,271,67,-0.13956999532958503],[113,271,68,-0.13680423398320973],[113,271,69,-0.1339694049134073],[113,271,70,-0.1310661456683057],[113,271,71,-0.1280951611642625],[113,271,72,-0.12505722443840378],[113,271,73,-0.12195317739571981],[113,271,74,-0.11878393155045797],[113,271,75,-0.11555046876215369],[113,271,76,-0.11225384196605087],[113,271,77,-0.10889517589800035],[113,271,78,-0.10547566781383633],[113,271,79,-0.10199658820319435],[113,272,64,-0.14331219044101495],[113,272,65,-0.14070464826403967],[113,272,66,-0.1380283531328037],[113,272,67,-0.1352837524349328],[113,272,68,-0.1324713564885701],[113,272,69,-0.12959173925295603],[113,272,70,-0.12664553903290682],[113,272,71,-0.12363345917729318],[113,272,72,-0.12055626877147868],[113,272,73,-0.1174148033238257],[113,272,74,-0.11420996544600726],[113,272,75,-0.11094272552747031],[113,272,76,-0.10761412240379675],[113,272,77,-0.10422526401905491],[113,272,78,-0.10077732808213785],[113,272,79,-0.09727156271705506],[113,273,64,-0.1391799656453191],[113,273,65,-0.13652003830245052],[113,273,66,-0.13379319562862046],[113,273,67,-0.1309998925465865],[113,273,68,-0.12814064475155057],[113,273,69,-0.1252160293626124],[113,273,70,-0.12222668556762495],[113,273,71,-0.11917331526155533],[113,273,72,-0.11605668367830785],[113,273,73,-0.11287762001612123],[113,273,74,-0.10963701805627324],[113,273,75,-0.10633583677544323],[113,273,76,-0.10297510095147588],[113,273,77,-0.09955590176263951],[113,273,78,-0.0960793973803758],[113,273,79,-0.09254681355550592],[113,274,64,-0.13505376509592054],[113,274,65,-0.13234124645144785],[113,274,66,-0.1295636557390935],[113,274,67,-0.12672145557769982],[113,274,68,-0.12381516719049068],[113,274,69,-0.12084537099693393],[113,274,70,-0.11781270719750236],[113,274,71,-0.11471787635143826],[113,274,72,-0.11156163994747814],[113,274,73,-0.10834482096765174],[113,274,74,-0.10506830444388271],[113,274,75,-0.10173303800774808],[113,274,76,-0.09834003243313677],[113,274,77,-0.09489036217189989],[113,274,78,-0.09138516588249085],[113,274,79,-0.08782564695156081],[113,275,64,-0.13093652799010974],[113,275,65,-0.12817124402568925],[113,275,66,-0.1253427357231477],[113,275,67,-0.12245147355757863],[113,275,68,-0.11949798443168358],[113,275,69,-0.11648285220760835],[113,275,70,-0.11340671823116844],[113,275,71,-0.11027028184856852],[113,275,72,-0.10707430091557629],[113,275,73,-0.10381959229926119],[113,275,74,-0.1005070323720278],[113,275,75,-0.09713755749830011],[113,275,76,-0.09371216451359621],[113,275,77,-0.09023191119608753],[113,275,78,-0.08669791673063965],[113,275,79,-0.08311136216530068],[113,276,64,-0.12683118268874793],[113,276,65,-0.12401299157428969],[113,276,66,-0.12113342714377884],[113,276,67,-0.1181929678878279],[113,276,68,-0.11519214654045884],[113,276,69,-0.11213155055050561],[113,276,70,-0.10901182254489106],[113,276,71,-0.10583366078388573],[113,276,72,-0.10259781960830533],[113,276,73,-0.09930510987876279],[113,276,74,-0.09595639940669581],[113,276,75,-0.0925526133775374],[113,276,76,-0.08909473476575913],[113,276,77,-0.08558380474188737],[113,276,78,-0.08202092307148628],[113,276,79,-0.07840724850607528],[113,277,64,-0.12274064410977459],[113,277,65,-0.11986943624663043],[113,277,66,-0.11693870820717844],[113,277,67,-0.11394894665581262],[113,277,68,-0.11090069030999644],[113,277,69,-0.10779453035085734],[113,277,70,-0.10463111082513321],[113,277,71,-0.10141112903858257],[113,277,72,-0.09813533594081342],[113,277,73,-0.09480453650164877],[113,277,74,-0.09141959007874612],[113,277,75,-0.08798141077684263],[113,277,76,-0.08449096779835302],[113,277,77,-0.08094928578542038],[113,277,78,-0.07735744515341614],[113,277,79,-0.07371658241585305],[113,278,64,-0.11866781117757336],[113,278,65,-0.11574350921449178],[113,278,66,-0.11276154115863568],[113,278,67,-0.10972240200532474],[113,278,68,-0.10662663660775762],[113,278,69,-0.10347484002645035],[113,278,70,-0.10026765786950231],[113,278,71,-0.09700578662380005],[113,278,72,-0.09368997397711609],[113,278,73,-0.09032101913122015],[113,278,74,-0.08689977310571706],[113,278,75,-0.08342713903298837],[113,278,76,-0.07990407244396086],[113,278,77,-0.07633158154480363],[113,278,78,-0.07271072748454827],[113,278,79,-0.06904262461359917],[113,279,64,-0.11461556432809017],[113,279,65,-0.11163812315040567],[113,279,66,-0.10860486973510286],[113,279,67,-0.10551630756434643],[113,279,68,-0.10237298777942588],[113,279,69,-0.09917550946872355],[113,279,70,-0.09592451994597878],[113,279,71,-0.09262071501895991],[113,279,72,-0.08926483924850132],[113,279,73,-0.08585768619802286],[113,279,74,-0.08240009867324644],[113,279,75,-0.07889296895248593],[113,279,76,-0.07533723900723388],[113,279,77,-0.07173390071314806],[113,279,78,-0.06808399605142906],[113,279,79,-0.06438861730055995],[113,280,64,-0.11058676306991483],[113,280,65,-0.10755616976243926],[113,280,66,-0.10447161667464622],[113,280,67,-0.10133361593012852],[113,280,68,-0.09814272511057648],[113,280,69,-0.09489954748198987],[113,280,70,-0.09160473221065002],[113,280,71,-0.08825897456896475],[113,280,72,-0.0848630161311435],[113,280,73,-0.08141764495882092],[113,280,74,-0.07792369577633962],[113,280,75,-0.0743820501360749],[113,280,76,-0.07079363657351939],[113,280,77,-0.06715943075223196],[113,280,78,-0.06348045559864524],[113,280,79,-0.05975778142669674],[113,281,64,-0.10658424360121938],[113,281,65,-0.10350051738530308],[113,281,66,-0.10036468128266718],[113,281,67,-0.09717725621147255],[113,281,68,-0.09393880634596413],[113,281,69,-0.09064993928067255],[113,281,70,-0.0873113061838347],[113,281,71,-0.08392360194014775],[113,281,72,-0.08048756528281265],[113,281,73,-0.07700397891498884],[113,281,74,-0.0734736696203645],[113,281,75,-0.06989750836323261],[113,281,76,-0.06627641037778481],[113,281,77,-0.06261133524673085],[113,281,78,-0.058903286969236135],[113,281,79,-0.05515331401814422],[113,282,64,-0.10261081648245068],[113,282,65,-0.09947400862767986],[113,282,66,-0.09628693705479446],[113,282,67,-0.09305013162811226],[113,282,68,-0.08976416326632114],[113,282,69,-0.08642964404444614],[113,282,70,-0.08304722728449071],[113,282,71,-0.07961760763486603],[113,282,72,-0.07614152113856687],[113,282,73,-0.07261974529021398],[113,282,74,-0.06905309908166529],[113,282,75,-0.0654424430365918],[113,282,76,-0.06178867923372505],[113,282,77,-0.05809275131888625],[113,282,78,-0.054355644505788614],[113,282,79,-0.0505783855655807],[113,283,64,-0.09866926436498591],[113,283,65,-0.09547945807598307],[113,283,66,-0.09224122935665557],[113,283,67,-0.08895511716740845],[113,283,68,-0.08562169932288394],[113,283,69,-0.08224159253150187],[113,283,70,-0.07881545242312366],[113,283,71,-0.0753439735649562],[113,283,72,-0.0718278894656526],[113,283,73,-0.06826797256773198],[113,283,74,-0.06466503422801823],[113,283,75,-0.06101992468649481],[113,283,76,-0.057333533023282535],[113,283,77,-0.053606787103850306],[113,283,78,-0.04984065351244993],[113,283,79,-0.04603613747374291],[113,284,64,-0.09476233977564291],[113,284,65,-0.0915196500544398],[113,284,66,-0.08823037316042176],[113,284,67,-0.08489505729824665],[113,284,68,-0.08151428732953575],[113,284,69,-0.07808868474982583],[113,284,70,-0.07461890765308948],[113,284,71,-0.07110565068394337],[113,284,72,-0.06754964497749955],[113,284,73,-0.06395165808698383],[113,284,74,-0.06031249389881843],[113,284,75,-0.05663299253556958],[113,284,76,-0.052914030246463684],[113,284,77,-0.04915651928558429],[113,284,78,-0.04536140777773939],[113,284,79,-0.041529679571968015],[113,285,64,-0.09089276295694854],[113,285,65,-0.08759733644139608],[113,285,66,-0.08425715083802396],[113,285,67,-0.08087276374203739],[113,285,68,-0.0774447672124638],[113,285,69,-0.07397378768638474],[113,285,70,-0.07046048588017814],[113,285,71,-0.06690555667789158],[113,285,72,-0.06330972900670115],[113,285,73,-0.059673765699581965],[113,285,74,-0.05599846334488334],[113,285,75,-0.05228465212321454],[113,285,76,-0.04853319563134004],[113,285,77,-0.044744990693200315],[113,285,78,-0.04092096715804466],[113,285,79,-0.03706208768564698],[113,286,64,-0.08706321976336662],[113,286,65,-0.08371523454205079],[113,286,66,-0.08032431001124662],[113,286,67,-0.07689101330102621],[113,286,68,-0.07341594381754099],[113,286,69,-0.0698997330944342],[113,286,70,-0.06634304463070081],[113,286,71,-0.06274657371511816],[113,286,72,-0.059111047237201286],[113,286,73,-0.05543722348481048],[113,286,74,-0.051725891928099926],[113,286,75,-0.0479778729902188],[113,286,76,-0.04419401780446042],[113,286,77,-0.04037520795797492],[113,286,78,-0.0365223552220349],[113,286,79,-0.032636401268821946],[113,287,64,-0.08327635961338054],[113,287,65,-0.07987602501751231],[113,287,66,-0.07643456145859495],[113,287,67,-0.0729525457438076],[113,287,68,-0.06943058477532468],[113,287,69,-0.06586931533883866],[113,287,70,-0.062269403877965784],[113,287,71,-0.05863154625465786],[113,287,72,-0.054956467495574396],[113,287,73,-0.05124492152454385],[113,287,74,-0.04749769088079911],[113,287,75,-0.04371558642340359],[113,287,76,-0.039899447021559675],[113,287,77,-0.03605013923091746],[113,287,78,-0.0321685569558707],[113,287,79,-0.028255621097810435],[113,288,64,-0.07953479349733816],[113,288,65,-0.07608234987008183],[113,288,66,-0.07259057707883543],[113,288,67,-0.06906006174794399],[113,288,68,-0.0654914184235727],[113,288,69,-0.06188528929930315],[113,288,70,-0.05824234392704308],[113,288,71,-0.05456327891337448],[113,288,72,-0.05084881760129489],[113,288,73,-0.04709970973748018],[113,288,74,-0.04331673112475279],[113,288,75,-0.039500683260174835],[113,288,76,-0.03565239295845432],[113,288,77,-0.03177271196078468],[113,288,78,-0.027862516529103765],[113,288,79,-0.023922707025742812],[113,289,64,-0.07584109204126177],[113,289,65,-0.0723368104849717],[113,289,66,-0.06879498791142352],[113,289,67,-0.06521622089990228],[113,289,68,-0.06160113178749135],[113,289,69,-0.05795036833173409],[113,289,70,-0.05426460335803729],[113,289,71,-0.05054453439194276],[113,289,72,-0.046790883276220635],[113,289,73,-0.043004395772914955],[113,289,74,-0.03918584115002141],[113,289,75,-0.03533601175322176],[113,289,76,-0.031455722562358734],[113,289,77,-0.027545810732775095],[113,289,78,-0.023607135121499978],[113,289,79,-0.019640575798255233],[113,290,64,-0.07219778362645196],[113,290,65,-0.06864196572828396],[113,290,66,-0.06505038221363779],[113,290,67,-0.06142363975212928],[113,290,68,-0.057762368617535476],[113,290,69,-0.05406722228754665],[113,290,70,-0.05033887702768408],[113,290,71,-0.0465780314595127],[113,290,72,-0.04278540611310186],[113,290,73,-0.0389617429638657],[113,290,74,-0.03510780495345983],[113,290,75,-0.031224375495163104],[113,290,76,-0.027312257963425984],[113,290,77,-0.023372275167707762],[113,290,78,-0.019405268810589765],[113,290,79,-0.015412098930133039],[113,291,64,-0.06860735256501155],[113,291,65,-0.06500033010137651],[113,291,66,-0.0613593035945543],[113,291,67,-0.05768488993739754],[113,291,68,-0.0539777274848921],[113,291,69,-0.050238475591052156],[113,291,70,-0.04646781412940512],[113,291,71,-0.042666442997194215],[113,291,72,-0.03883508160325322],[113,291,73,-0.03497446833968598],[113,291,74,-0.031085360037022614],[113,291,75,-0.027168531403287677],[113,291,76,-0.023224774446656937],[113,291,77,-0.01925489788182802],[113,291,78,-0.015259726520088945],[113,291,79,-0.011240100643056167],[113,292,64,-0.06507223733112419],[113,292,65,-0.06141437195145033],[113,292,66,-0.05772424920568722],[113,292,67,-0.05400249634024934],[113,292,68,-0.050249759934475],[113,292,69,-0.04646670537475053],[113,292,70,-0.0426540163116447],[113,292,71,-0.03881239410018189],[113,292,72,-0.034942557223208714],[113,292,73,-0.031045240697987114],[113,292,74,-0.027121195465684478],[113,292,75,-0.023171187764198325],[113,292,76,-0.01919599848398984],[113,292,77,-0.015196422507052776],[113,292,78,-0.011173268029001732],[113,292,79,-0.0071273558642512],[113,293,64,-0.061594828848284655],[113,293,65,-0.05788651173855652],[113,293,66,-0.05414766798850204],[113,293,67,-0.050378935325743696],[113,293,68,-0.0465809686956363],[113,293,69,-0.04275443967273662],[113,293,70,-0.03890003585469984],[113,293,71,-0.03501846023873553],[113,293,72,-0.031110430580574833],[113,293,73,-0.02717667873608462],[113,293,74,-0.02321794998519558],[113,293,75,-0.0192350023385863],[113,293,76,-0.015228605826793778],[113,293,77,-0.011199541771879123],[113,293,78,-0.007148602041631286],[113,293,79,-0.0030765882862801297],[113,294,64,-0.058177468832383894],[113,294,65,-0.05441912035892582],[113,294,66,-0.050631958978699015],[113,294,67,-0.04681663302540623],[113,294,68,-0.042973805950494826],[113,294,69,-0.039104155672118085],[113,294,70,-0.03520837390593863],[113,294,71,-0.03128716547790815],[113,294,72,-0.02734124761897605],[113,294,73,-0.023371349241863],[113,294,74,-0.019378210199563248],[113,294,75,-0.015362580526022268],[113,294,76,-0.011325219658656932],[113,294,77,-0.007266895642847798],[113,294,78,-0.003188384318387291],[113,294,79,9.095315121461223E-4],[113,295,64,-0.05482244819056391],[113,295,65,-0.05101451752453379],[113,295,66,-0.04717946966718088],[113,295,67,-0.04331796368029231],[113,295,68,-0.03943067165978914],[113,295,69,-0.03551827802235409],[113,295,70,-0.031581478773317254],[113,295,71,-0.027620980755932695],[113,295,72,-0.02363750088199948],[113,295,73,-0.019631765343964547],[113,295,74,-0.015604508808166162],[113,295,75,-0.011556473589671712],[113,295,76,-0.007488408808371469],[113,295,77,-0.0034010695264607566],[113,295,78,7.047841327079002E-4],[113,295,79,0.004828387884429922],[113,296,64,-0.051532005476020645],[113,296,65,-0.047674970199082276],[113,296,66,-0.0437924944178866],[113,296,67,-0.03988524804135023],[113,296,68,-0.03595391194644561],[113,296,69,-0.03199917720270341],[113,296,70,-0.028021744277384478],[113,296,71,-0.024022322221457282],[113,296,72,-0.020001627836333052],[113,296,73,-0.015960384821497905],[113,296,74,-0.011899322902697615],[113,296,75,-0.007819176941132225],[113,296,76,-0.003720686023319278],[113,296,77,3.9540746823979456E-4],[113,296,78,0.004528358803609869],[113,296,79,0.008677421873215962],[113,297,64,-0.04830832539866056],[113,297,65,-0.0444026910903023],[113,297,66,-0.04047327294239711],[113,297,67,-0.03652075182698514],[113,297,68,-0.03254581753676054],[113,297,69,-0.02854916794768393],[113,297,70,-0.024531508161676333],[113,297,71,-0.02049354962953112],[113,297,72,-0.016436009253996117],[113,297,73,-0.012359608473165737],[113,297,74,-0.008265072323837261],[113,297,75,-0.004153128485290911],[113,297,76,-2.450630315041502E-5],[113,297,77,0.004120064206540527],[113,297,78,0.008279853373046195],[113,297,79,0.012454132906497273],[113,298,64,-0.045153537391533105],[113,298,65,-0.04119983719849808],[113,298,66,-0.03722398883122892],[113,298,67,-0.03322668423774357],[113,298,68,-0.029208622259114594],[113,298,69,-0.025170507730457675],[113,298,70,-0.021113050561412078],[113,298,71,-0.01703696479625108],[113,298,72,-0.012942967653573847],[113,298,73,-0.008831778545719968],[113,298,74,-0.00470411807755744],[113,298,75,-5.607070251083951E-4],[113,298,76,0.0035977347063345586],[113,298,77,0.007770489144464134],[113,298,78,0.011956841332606702],[113,298,79,0.016156080432790383],[113,299,64,-0.04206971423320449],[113,299,65,-0.038068508421502376],[113,299,66,-0.03404676814198949],[113,299,67,-0.030005196528289937],[113,299,68,-0.02594450160039464],[113,299,69,-0.02186539530432085],[113,299,70,-0.017768592530674823],[113,299,71,-0.013654810112253779],[113,299,72,-0.009524765800640635],[113,299,73,-0.005379177221933477],[113,299,74,-0.0012187608112563877],[113,299,75,0.0029557692734785146],[113,299,76,0.007143702258909292],[113,299,77,0.011344331884522607],[113,299,78,0.015556957551935438],[113,299,79,0.019780885495184197],[113,300,64,-0.03905887072598707],[113,300,65,-0.035010746215952904],[113,300,66,-0.030943678044303986],[113,300,67,-0.026858380636587256],[113,300,68,-0.022755571320031608],[113,300,69,-0.01863596930220484],[113,300,70,-0.014500294627980713],[113,300,71,-0.01034926711495697],[113,300,72,-0.0061836052672756756],[113,300,73,-0.002004025167989483],[113,300,74,0.002188760650382461],[113,300,75,0.006394044356635452],[113,300,76,0.010611123993350575],[113,300,77,0.014839304670916997],[113,300,78,0.01907789978312608],[113,300,79,0.02332623224436389],[113,301,64,-0.036122962429948134],[113,301,65,-0.032028532314815374],[113,301,66,-0.02791672552143578],[113,301,67,-0.023788267870200115],[113,301,68,-0.019643886121574652],[113,301,69,-0.015484306894107795],[113,301,70,-0.011310255560155472],[113,301,71,-0.007122455119467727],[113,301,72,-0.002921625050587323],[113,301,73,0.0012915198597954931],[113,301,74,0.0055162707098897965],[113,301,75,0.009751925697776203],[113,301,76,0.013997791358661107],[113,301,77,0.018253183824270776],[113,301,78,0.022517430104408674],[113,301,79,0.02678986939070046],[113,302,64,-0.03326388445285584],[113,302,65,-0.029123787501312184],[113,302,66,-0.024967856128763028],[113,302,67,-0.020796827649887835],[113,302,68,-0.016611438381968168],[113,302,69,-0.012412422502626069],[113,302,70,-0.008200510884689878],[113,302,71,-0.003976429908330624],[113,302,72,2.5909974957876065E-4],[113,302,73,0.0045053643487379565],[113,302,74,0.008761658341688641],[113,302,75,0.013027285652595366],[113,302,76,0.017301560978901495],[113,302,77,0.02158381111571425],[113,302,78,0.025873376302943295],[113,302,79,0.030169611595217395],[113,303,64,-0.030483470295980537],[113,303,65,-0.02629837043917284],[113,303,66,-0.02209895280902635],[113,303,67,-0.017885966310398564],[113,303,68,-0.013660156938444464],[113,303,69,-0.009422266576497048],[113,303,70,-0.005173031770483767],[113,303,71,-9.131824800246505E-4],[113,303,72,0.0033565591938388034],[113,303,73,0.007635480304136121],[113,303,74,0.01192287837704723],[113,303,75,0.01621806275408297],[113,303,76,0.020520355957729972],[113,303,77,0.024829095080415746],[113,303,78,0.029143633196816746],[113,303,79,0.033463340799535134],[113,304,64,-0.02778349075568064],[113,304,65,-0.023554076559136095],[113,304,66,-0.01931183476427651],[113,304,67,-0.015057525958394111],[113,304,68,-0.010791905932958472],[113,304,69,-0.006515724422077394],[113,304,70,-0.0022297238169039692],[113,304,71,0.00206536214386642],[113,304,72,0.006368809707456499],[113,304,73,0.010679906464278341],[113,304,74,0.014997952729383052],[113,304,75,0.019322262947599218],[113,304,76,0.02365216712272695],[113,304,77,0.027987012270640592],[113,304,78,0.03232616389632545],[113,304,79,0.036669007494872036],[113,305,64,-0.02516565288092069],[113,305,65,-0.020892637001851802],[113,305,66,-0.016608256384672195],[113,305,67,-0.012313283387657071],[113,305,68,-0.00800848371431926],[113,305,69,-0.003694615092916541],[113,305,70,6.275740686858579E-4],[113,305,71,0.004957346052650281],[113,305,72,0.009293975225349364],[113,305,73,0.013636749455947943],[113,305,74,0.01798497155975356],[113,305,75,0.022337960765843348],[113,305,76,0.026695054209337016],[113,305,77,0.031055608448166606],[113,305,78,0.03541900100437019],[113,305,79,0.03978463192993155],[113,306,64,-0.022631598986643353],[113,306,65,-0.018315717617105192],[113,306,66,-0.013989906234048503],[113,306,67,-0.009654949051499735],[113,306,68,-0.005311621797937687],[113,306,69,-9.606903373393164E-4],[113,306,70,0.0033970907350067622],[113,306,71,0.007760979521773605],[113,306,72,0.012130248278004949],[113,306,73,0.01650418489051038],[113,306,74,0.020882094382620668],[113,306,75,0.025263300443803788],[113,306,76,0.029647146984517737],[113,306,77,0.03403299971614792],[113,306,78,0.03842024775605614],[113,306,79,0.042808305257765175],[113,307,64,-0.02018290572293375],[113,307,65,-0.015824918019298022],[113,307,66,-0.011458406092191571],[113,307,67,-0.0070841660923099264],[113,307,68,-0.0027029838831215333],[113,307,69,0.0016843663960269678],[113,307,70,0.006077123792625289],[113,307,71,0.010474542029389626],[113,307,72,0.014875891018373527],[113,307,73,0.019280458400653212],[113,307,74,0.023687551111960248],[113,307,75,0.0280964969737623],[113,307,76,0.03250664631016682],[113,307,77,0.03691737359049765],[113,307,78,0.04132807909756972],[113,307,79,0.045738190621686436],[113,308,64,-0.017821083200108737],[113,308,65,-0.013421770699324473],[113,308,66,-0.009015310053957837],[113,308,67,-0.004602509428372668],[113,308,68,-1.8416492806232199E-4],[113,308,69,0.004238940894638395],[113,308,70,0.008666040561248776],[113,308,71,0.013096383214098596],[113,308,72,0.017529236189591693],[113,308,73,0.02196388661762866],[113,308,74,0.026399643047564536],[113,308,75,0.030835837100198535],[113,308,76,0.035271825146174066],[113,308,77,0.039706990010636545],[113,308,78,0.04414074270417599],[113,308,79,0.04857252418007736],[113,309,64,-0.015547574169660405],[113,309,65,-0.011107740192767772],[113,309,66,-0.006662103685163144],[113,309,67,-0.002211484897893641],[113,309,68,0.002243309717563549],[113,309,69,0.006701489060410834],[113,309,70,0.011162278958632255],[113,309,71,0.015624923773939703],[113,309,72,0.020088688033612898],[113,309,73,0.024552858089079616],[113,309,74,0.029016743801618575],[113,309,75,0.0334796802546761],[113,309,76,0.03794102949317882],[113,309,77,0.042400182289687435],[113,309,78,0.04685655993742069],[113,309,79,0.05130961607017068],[113,310,64,-0.013363753260998285],[113,310,65,-0.00888422230436188],[113,310,66,-0.004400203235184946],[113,310,67,8.7471539833614E-5],[113,310,68,0.0045779851224377055],[113,310,69,0.009070537730145281],[113,310,70,0.013564348331158299],[113,310,71,0.01805865630669666],[113,310,72,0.02255272314080993],[113,310,73,0.027045834137510757],[113,310,74,0.0315373001656149],[113,310,75,0.036026459430776134],[113,310,76,0.040512679275100424],[113,310,77,0.04499535800418375],[113,310,78,0.04947392674160207],[113,310,79,0.053947851310876566],[113,311,64,-0.01127092627411018],[113,311,65,-0.006752543388840446],[113,311,66,-0.0022309549064023354],[113,311,67,0.002292994545991925],[113,311,68,0.006818477525758523],[113,311,69,0.011344685437872384],[113,311,70,0.015870830225957325],[113,311,71,0.02039614609138203],[113,311,72,0.02491989124041319],[113,311,73,0.029441349659269825],[113,311,74,0.033959832917467764],[113,311,75,0.03847468199893689],[113,311,76,0.042985269161298675],[113,311,77,0.047490999823148555],[113,311,78,0.051991314479370665],[113,311,79,0.056485690644507786],[113,312,64,-0.009270329528076784],[113,312,65,-0.004713959688106131],[113,312,66,-1.5563418040578925E-4],[113,312,67,0.004403790086602272],[113,312,68,0.008963475031786503],[113,312,69,0.013522603119188029],[113,312,70,0.01808037910464065],[113,312,71,0.02263603181097487],[113,312,72,0.02718881593185765],[113,312,73,0.03173801386411153],[113,312,74,0.036282937568902385],[113,312,75,0.04082293046127722],[113,312,76,0.045357369328442365],[113,312,77,0.04988566627662268],[113,312,78,0.05440727070653316],[113,312,79,0.05892167131748284],[113,313,64,-0.007363129265392093],[113,313,65,-0.0027696567246730253],[113,313,66,0.0018245547990729666],[113,313,67,0.006418636059735472],[113,313,68,0.011011738246824679],[113,313,69,0.015603034757630543],[113,313,70,0.02019172299869798],[113,313,71,0.024777026216462203],[113,313,72,0.02935819535709379],[113,313,73,0.033934510955400427],[113,313,74,0.03850528505317327],[113,313,75,0.04306986314645743],[113,313,76,0.04762762616214039],[113,313,77,0.05217799246369656],[113,313,78,0.05672041988611948],[113,313,79,0.061254407800063415],[113,314,64,-0.005550421112200624],[113,314,65,-9.207487514928392E-4],[113,314,66,0.0037084797863944363],[113,314,67,0.008336382865456474],[113,314,68,0.012962100858518705],[113,314,69,0.01758479797297939],[113,314,70,0.022203664106438606],[113,314,71,0.02681791673206367],[113,314,72,0.03142680281373547],[113,314,73,0.03602960075082445],[113,314,74,0.04062562235298567],[113,314,75,0.04521421484445018],[113,314,76,0.04979476289820717],[113,314,77,0.05436669069991576],[113,314,78,0.0589294640415782],[113,314,79,0.06348259244499388],[113,315,64,-0.003833229594358417],[113,315,65,8.317217419270551E-4],[113,315,66,0.005495080937507946],[113,315,67,0.010155953918598151],[113,315,68,0.014813470157573755],[113,315,69,0.01946678455157655],[113,315,70,0.024115079331576833],[113,315,71,0.028757566001741175],[113,315,72,0.03339348730915209],[113,315,73,0.03802211924372656],[113,315,74,0.04264277306872574],[113,315,75,0.04725479738132887],[113,315,76,0.051857580203669484],[113,315,77,0.05645055110417105],[113,315,78,0.061033183349213926],[113,315,79,0.06560499608515422],[113,316,64,-0.002212507709381334],[113,316,65,0.002486784467051001],[113,316,66,0.00718337125664037],[113,316,67,0.011876346104299162],[113,316,68,0.016564827501820395],[113,316,69,0.021247960918601427],[113,316,70,0.0259249207633932],[113,316,71,0.03059491237692169],[113,316,72,0.03525717405542955],[113,316,73,0.03991097910498034],[113,316,74,0.04455563792692541],[113,316,75,0.04919050013399853],[113,316,76,0.05381495669744113],[113,316,77,0.0584284421249939],[113,316,78,0.063030436669787],[113,316,79,0.0676204685701485],[113,317,64,-6.891365542028849E-4],[113,317,65,0.004043541717567017],[113,317,66,0.008772436986264037],[113,317,67,0.013496630176386942],[113,317,68,0.01821522872271475],[113,317,69,0.02292736855238392],[113,317,70,0.02763221609855676],[113,317,71,0.032328970345524094],[113,317,72,0.037016864905293184],[113,317,73,0.04169517012550139],[113,317,74,0.046363195229055326],[113,317,75,0.051020290484962844],[113,317,76,0.055665849410757806],[113,317,77,0.06029931100635655],[113,317,78,0.0649201620193744],[113,317,79,0.06952793924192621],[113,318,64,7.360749911642095E-4],[113,318,65,0.005501168694266451],[113,318,66,0.010261437940239815],[113,318,67,0.015015951098506952],[113,318,68,0.019763804474169866],[113,318,69,0.024504124340653854],[113,318,70,0.029236069004504872],[113,318,71,0.03395883090217974],[113,318,72,0.038671638728882046],[113,318,73,0.04337375959928377],[113,318,74,0.04806450124053299],[113,318,75,0.05274321421701392],[113,318,76,0.057409294187259985],[113,318,77,0.062062184192857806],[113,318,78,0.06670137697937309],[113,318,79,0.07132641734931947],[113,319,64,0.002062390524115304],[113,319,65,0.006858913773604702],[113,319,66,0.011649607780194277],[113,319,67,0.01643352832805292],[113,319,68,0.02120976052377449],[113,319,69,0.025977420878781382],[113,319,70,0.030735659424436818],[113,319,71,0.03548366185970872],[113,319,72,0.04022065173143355],[113,319,73,0.044945892647021646],[113,319,74,0.049658690520008264],[113,319,75,0.054358395847908136],[113,319,76,0.059044406022784074],[113,319,77,0.0637161676743597],[113,319,78,0.06837317904571139],[113,319,79,0.07301499240155895],[114,-64,64,-0.0850139371007872],[114,-64,65,-0.08849625215746992],[114,-64,66,-0.09187483191148837],[114,-64,67,-0.09514822994203587],[114,-64,68,-0.09831514659029816],[114,-64,69,-0.10137443439953142],[114,-64,70,-0.10432510361760916],[114,-64,71,-0.10716632776194279],[114,-64,72,-0.10989744924679445],[114,-64,73,-0.11251798507289545],[114,-64,74,-0.11502763257960413],[114,-64,75,-0.11742627525928362],[114,-64,76,-0.11971398863415217],[114,-64,77,-0.12189104619548463],[114,-64,78,-0.12395792540521122],[114,-64,79,-0.1259153137598965],[114,-63,64,-0.07926140150642358],[114,-63,65,-0.08273218329119869],[114,-63,66,-0.08609986310197282],[114,-63,67,-0.08936299113096668],[114,-63,68,-0.09252026373476552],[114,-63,69,-0.09557052886634332],[114,-63,70,-0.09851279156958115],[114,-63,71,-0.10134621953619494],[114,-63,72,-0.10407014872508147],[114,-63,73,-0.10668408904400384],[114,-63,74,-0.1091877300938463],[114,-63,75,-0.11158094697511922],[114,-63,76,-0.113863806156968],[114,-63,77,-0.11603657140856272],[114,-63,78,-0.1180997097929185],[114,-63,79,-0.12005389772312292],[114,-62,64,-0.07343299766752254],[114,-62,65,-0.07689151804861394],[114,-62,66,-0.08024759489570954],[114,-62,67,-0.08349977493067484],[114,-62,68,-0.08664675041717507],[114,-62,69,-0.08968736458421722],[114,-62,70,-0.09262061711221903],[114,-62,71,-0.09544566968151436],[114,-62,72,-0.09816185158330992],[114,-62,73,-0.10076866539301099],[114,-62,74,-0.10326579270614478],[114,-62,75,-0.10565309993656657],[114,-62,76,-0.1079306441772],[114,-62,77,-0.1100986791231855],[114,-62,78,-0.11215766105749325],[114,-62,79,-0.11410825489897125],[114,-61,64,-0.06753305897231532],[114,-61,65,-0.07097859686446506],[114,-61,66,-0.07432237444217338],[114,-61,67,-0.07756293487515575],[114,-61,68,-0.08069896622773953],[114,-61,69,-0.08372930687350688],[114,-61,70,-0.08665295097249237],[114,-61,71,-0.08946905401084626],[114,-61,72,-0.09217693840298069],[114,-61,73,-0.09477609915611285],[114,-61,74,-0.09726620959743681],[114,-61,75,-0.0996471271636068],[114,-61,76,-0.10191889925278441],[114,-61,77,-0.10408176913912492],[114,-61,78,-0.10613618194975649],[114,-61,79,-0.10808279070422466],[114,-60,64,-0.061565961281593196],[114,-60,65,-0.0649978031196915],[114,-60,66,-0.06832859229449717],[114,-60,67,-0.07155686834341668],[114,-60,68,-0.07468131502699571],[114,-60,69,-0.07770076573424367],[114,-60,70,-0.08061420895054594],[114,-60,71,-0.08342079378807121],[114,-60,72,-0.08611983557868785],[114,-60,73,-0.08871082152931009],[114,-60,74,-0.0911934164398982],[114,-60,75,-0.09356746848380448],[114,-60,76,-0.09583301505070607],[114,-60,77,-0.09799028865201209],[114,-60,78,-0.1000397228887886],[114,-60,79,-0.10198195848217961],[114,-59,64,-0.05553611800181779],[114,-59,65,-0.05895355820518533],[114,-59,66,-0.06227067746430104],[114,-59,67,-0.0654860116057957],[114,-59,68,-0.06859823998402559],[114,-59,69,-0.0716061908766733],[114,-59,70,-0.07450884694296345],[114,-59,71,-0.07730535074440126],[114,-59,72,-0.07999501032805079],[114,-59,73,-0.08257730487227011],[114,-59,74,-0.08505189039513084],[114,-59,75,-0.0874186055252083],[114,-59,76,-0.08967747733499354],[114,-59,77,-0.09182872723680224],[114,-59,78,-0.09387277694123308],[114,-59,79,-0.09581025447815095],[114,-58,64,-0.04944797503421927],[114,-58,65,-0.05285031646108207],[114,-58,66,-0.056153092351618805],[114,-58,67,-0.05935483474495429],[114,-58,68,-0.062454218488951274],[114,-58,69,-0.06545006662568464],[114,-58,70,-0.06834135583955336],[114,-58,71,-0.07112722196794796],[114,-58,72,-0.07380696557448285],[114,-58,73,-0.07638005758471467],[114,-58,74,-0.07884614498457332],[114,-58,75,-0.08120505658119215],[114,-58,76,-0.08345680882638673],[114,-58,77,-0.08560161170266045],[114,-58,78,-0.08763987467178547],[114,-58,79,-0.08957221268593996],[114,-57,64,-0.04330600560020026],[114,-57,65,-0.04669255999190891],[114,-57,66,-0.04998032755024262],[114,-57,67,-0.05316783645187351],[114,-57,68,-0.05625375694003254],[114,-57,69,-0.05923690669945347],[114,-57,70,-0.06211625629398709],[114,-57,71,-0.06489093466679352],[114,-57,72,-0.0675602347031311],[114,-57,73,-0.07012361885565654],[114,-57,74,-0.07258072483246647],[114,-57,75,-0.07493137134756467],[114,-57,76,-0.07717556393400693],[114,-57,77,-0.07931350081959854],[114,-57,78,-0.081345578865197],[114,-57,79,-0.08327239956559673],[114,-56,64,-0.03711470494289981],[114,-56,65,-0.04048479335743793],[114,-56,66,-0.0437568965283367],[114,-56,67,-0.04692953869670036],[114,-56,68,-0.050001385405211374],[114,-56,69,-0.052971248862153875],[114,-56,70,-0.0558380933681345],[114,-56,71,-0.05860104080540918],[114,-56,72,-0.061259376189831016],[114,-56,73,-0.0638125532853403],[114,-56,74,-0.06626020028121782],[114,-56,75,-0.06860212553179734],[114,-56,76,-0.07083832335887608],[114,-56,77,-0.07296897991671047],[114,-56,78,-0.07499447911964086],[114,-56,79,-0.07691540863232538],[114,-55,64,-0.0308785849047567],[114,-55,65,-0.03423153813908253],[114,-55,66,-0.03748733018416073],[114,-55,67,-0.04064448127428344],[114,-55,68,-0.04370165215794741],[114,-55,69,-0.0466576494505716],[114,-55,70,-0.049511431049937604],[114,-55,71,-0.05226211161426164],[114,-55,72,-0.05490896810291612],[114,-55,73,-0.05745144537971669],[114,-55,74,-0.05988916187900395],[114,-55,75,-0.06222191533420485],[114,-55,76,-0.06444968856912359],[114,-55,77,-0.0665726553518422],[114,-55,78,-0.06859118631127548],[114,-55,79,-0.07050585491636463],[114,-54,64,-0.024602168381382072],[114,-54,65,-0.027937327382153487],[114,-54,66,-0.031176171277214504],[114,-54,67,-0.034317216224712066],[114,-54,68,-0.0373591180876538],[114,-54,69,-0.04030067777493884],[114,-54,70,-0.04314084664513662],[114,-54,71,-0.045878731972924025],[114,-54,72,-0.04851360247819714],[114,-54,73,-0.051044893917776446],[114,-54,74,-0.053472214739929136],[114,-54,75,-0.05579535180140027],[114,-54,76,-0.05801427614719823],[114,-54,77,-0.0601291488530149],[114,-54,78,-0.062140326930328116],[114,-54,79,-0.06404836929416635],[114,-53,64,-0.01828998365159329],[114,-53,65,-0.021606699913821692],[114,-53,66,-0.02482796873465365],[114,-53,67,-0.027952302128709028],[114,-53,68,-0.030978350984586456],[114,-53,69,-0.03390491039383503],[114,-53,70,-0.036730925042696816],[114,-53,71,-0.039455494666535196],[114,-53,72,-0.04207787956696152],[114,-53,73,-0.04459750619158187],[114,-53,74,-0.04701397277658537],[114,-53,75,-0.04932705505186685],[114,-53,76,-0.05153671200893006],[114,-53,77,-0.05364309173144932],[114,-53,78,-0.05564653728854041],[114,-53,79,-0.057547592690718075],[114,-52,64,-0.01194655858344218],[114,-52,65,-0.015244194536618627],[114,-52,66,-0.018447271832808365],[114,-52,67,-0.021554298277706718],[114,-52,68,-0.02456391969901528],[114,-52,69,-0.027474925262987226],[114,-52,70,-0.030286252853767626],[114,-52,71,-0.03299699451544369],[114,-52,72,-0.03560640195681897],[114,-52,73,-0.038113892118833204],[114,-52,74,-0.040519052804845246],[114,-52,75,-0.04282164837347979],[114,-52,76,-0.04502162549427524],[114,-52,77,-0.047119118966017615],[114,-52,78,-0.04911445759780697],[114,-52,79,-0.05100817015283576],[114,-51,64,-0.005576414716556122],[114,-51,65,-0.008854344097801281],[114,-51,66,-0.012038624254129271],[114,-51,67,-0.015127758718931905],[114,-51,68,-0.01812038817500239],[114,-51,69,-0.02101529575829375],[114,-51,70,-0.023811412424498024],[114,-51,71,-0.02650782237835725],[114,-51,72,-0.029103768565724608],[114,-51,73,-0.03159865822829311],[114,-51,74,-0.03399206852121439],[114,-51,75,-0.036283752193303376],[114,-51,76,-0.03847364333006886],[114,-51,77,-0.04056186315945487],[114,-51,78,-0.042548725920337316],[114,-51,79,-0.044434744793759196],[114,-50,64,8.159387793569284E-4],[114,-50,65,-0.0024416694344230327],[114,-50,66,-0.005606558019404129],[114,-50,67,-0.008677226175343833],[114,-50,68,-0.011652309358632928],[114,-50,69,-0.014530584572916005],[114,-50,70,-0.017310975722554356],[114,-50,71,-0.019992559028846224],[114,-50,72,-0.022574568509019066],[114,-50,73,-0.025056401517914995],[114,-50,74,-0.027437624352587786],[114,-50,75,-0.02971797791951014],[114,-50,76,-0.031897383464632],[114,-50,77,-0.03397594836617046],[114,-50,78,-0.03595397199018158],[114,-50,79,-0.03783195160889119],[114,-49,64,0.007226011270018984],[114,-49,65,0.003989326806061122],[114,-49,66,8.444127049279659E-4],[114,-49,67,-0.0022072258402495715],[114,-49,68,-0.005164218980522883],[114,-49,69,-0.008025337488263284],[114,-49,70,-0.010789498097163341],[114,-49,71,-0.013455768905020205],[114,-49,72,-0.01602337483931293],[114,-49,73,-0.018491703185496755],[114,-49,74,-0.020860309178230563],[114,-49,75,-0.02312892165523961],[114,-49,76,-0.025297448774050824],[114,-49,77,-0.02736598379148325],[114,-49,78,-0.029334810905943365],[114,-49,79,-0.031204411162502277],[114,-48,64,0.013649336945765422],[114,-48,65,0.010434166469318829],[114,-48,66,0.007309797924027084],[114,-48,67,0.004277740953062326],[114,-48,68,0.0013393707870574811],[114,-48,69,-0.0015040770192098485],[114,-48,70,-0.0042515119130212],[114,-48,71,-0.006901993732723488],[114,-48,72,-0.009454738159553777],[114,-48,73,-0.011909122232201752],[114,-48,74,-0.014264689924328833],[114,-48,75,-0.016521157784744278],[114,-48,76,-0.018678420640476423],[114,-48,77,-0.020736557362622143],[114,-48,78,-0.022695836695022953],[114,-48,79,-0.024556723145745307],[114,-47,64,0.020081481234579313],[114,-47,65,0.01688840232196598],[114,-47,66,0.013785138256640517],[114,-47,67,0.010773203186844382],[114,-47,68,0.00785397779861663],[114,-47,69,0.005028704066628031],[114,-47,70,0.0022984799421044144],[114,-47,71,-3.357460220724251E-4],[114,-47,72,-0.00287318010910409],[114,-47,73,-0.005313188938776192],[114,-47,74,-0.0076553050309353665],[114,-47,75,-0.00989923243164692],[114,-47,76,-0.012044852402267825],[114,-47,77,-0.014092229171321358],[114,-47,78,-0.016041615749218363],[114,-47,79,-0.017893459805806478],[114,-46,64,0.026518047339127326],[114,-46,65,0.023347624603850536],[114,-46,66,0.020266011501984926],[114,-46,67,0.01727472673972663],[114,-46,68,0.014375156529590982],[114,-46,69,0.011568549355716273],[114,-46,70,0.008856010676239312],[114,-46,71,0.006238497562823908],[114,-46,72,0.003716813277330755],[114,-46,73,0.0012916017857025341],[114,-46,74,-0.0010366577911470332],[114,-46,75,-0.0032676567891463115],[114,-46,76,-0.005401262675816421],[114,-46,77,-0.007437524787843097],[114,-46,78,-0.009376680131518156],[114,-46,79,-0.011219159246028121],[114,-45,64,0.032954682897481824],[114,-45,65,0.0298074677044734],[114,-45,66,0.026748039331201845],[114,-45,67,0.02377792109254384],[114,-45,68,0.020898504795883177],[114,-45,69,0.018111045521199576],[114,-45,70,0.015416656338208323],[114,-45,71,0.012816302960633186],[114,-45,72,0.010310798337597848],[114,-45,73,0.00790079718221437],[114,-45,74,0.0055867904371547095],[114,-45,75,0.0033690996774972115],[114,-45,76,0.0012478714506175548],[114,-45,77,-7.769284467630255E-4],[114,-45,78,-0.0027055207544199877],[114,-45,79,-0.004538318597336111],[114,-44,64,0.039387086767681656],[114,-44,65,0.03626361696370228],[114,-44,66,0.033226894103542515],[114,-44,67,0.0302784461593103],[114,-44,68,0.02741967059895234],[114,-44,69,0.024651829181432938],[114,-44,70,0.02197604268894182],[114,-44,71,0.019393285596218668],[114,-44,72,0.01690438067697353],[114,-44,73,0.014509993547484945],[114,-44,74,0.012210627147161257],[114,-44,75,0.010006616156357784],[114,-44,76,0.007898121351217258],[114,-44,77,0.005885123895646882],[114,-44,78,0.003967419570387043],[114,-44,79,0.002144612939190771],[114,-43,64,0.045811015936304766],[114,-43,65,0.04271181559695281],[114,-43,66,0.03969830580745415],[114,-43,67,0.036772019243515364],[114,-43,68,0.03393435909662523],[114,-43,69,0.031186593884619085],[114,-43,70,0.028529852199254746],[114,-43,71,0.025965117390883363],[114,-43,72,0.02349322219019956],[114,-43,73,0.021114843267146743],[114,-43,74,0.018830495726769536],[114,-43,75,0.01664052754229972],[114,-43,76,0.0145451139252476],[114,-43,77,0.01254425163261097],[114,-43,78,0.010637753211155565],[114,-43,79,0.008825241178785914],[114,-42,64,0.052222292550717975],[114,-42,65,0.04914787174449653],[114,-42,66,0.04615806912623188],[114,-42,67,0.04325442211940367],[114,-42,68,0.04043833969929178],[114,-42,69,0.03771109721921451],[114,-42,70,0.03507383117376017],[114,-42,71,0.03252753389909535],[114,-42,72,0.030073048210331965],[114,-42,73,0.027711061976032902],[114,-42,74,0.02544210262964408],[114,-42,75,0.023266531618143294],[114,-42,76,0.021184538787673568],[114,-42,77,0.019196136706276512],[114,-42,78,0.017301154923678674],[114,-42,79,0.015499234168148801],[114,-41,64,0.05861681107517547],[114,-41,65,0.05556766564507509],[114,-41,66,0.05260205062841006],[114,-41,67,0.04972150823841115],[114,-41,68,0.04692745329165915],[114,-41,69,0.044221168050276094],[114,-41,70,0.041603797001092846],[114,-41,71,0.039076341571873785],[114,-41,72,0.03663965478458453],[114,-41,73,0.034294435845777405],[114,-41,74,0.03204122467388748],[114,-41,75,0.029880396363725192],[114,-41,76,0.02781215558793737],[114,-41,77,0.025836530935548385],[114,-41,78,0.023953369187536655],[114,-41,79,0.022162329529465175],[114,-40,64,0.06499054557091732],[114,-40,65,0.061967156933965595],[114,-40,66,0.059026196083042604],[114,-40,67,0.05616921006091069],[114,-40,68,0.05339761958021649],[114,-40,69,0.05071271388190435],[114,-40,70,0.04811564553059233],[114,-40,71,0.04560742514698535],[114,-40,72,0.04318891607731512],[114,-40,73,0.04086082899987853],[114,-40,74,0.03862371646847207],[114,-40,75,0.036477967393002464],[114,-40,76,0.03442380145704926],[114,-40,77,0.03246126347249001],[114,-40,78,0.030590217671144004],[114,-40,79,0.028810341933450556],[114,-39,64,0.07133955709995754],[114,-39,65,0.068342392065189],[114,-39,66,0.06542653789956177],[114,-39,67,0.06259354651295468],[114,-39,68,0.05984484456609662],[114,-39,69,0.0571817283454662],[114,-39,70,0.05460535857513604],[114,-39,71,0.05211675516563885],[114,-39,72,0.04971679189984235],[114,-39,73,0.04740619105590571],[114,-39,74,0.04518551796711656],[114,-39,75,0.04305517551888405],[114,-39,76,0.04101539858267145],[114,-39,77,0.03906624838697037],[114,-39,78,0.03720760682527824],[114,-39,79,0.035439170701094924],[114,-38,64,0.07766000125270933],[114,-38,65,0.07468951185801043],[114,-38,66,0.0717992026923645],[114,-38,67,0.06899063056816124],[114,-38,68,0.06626522814348401],[114,-38,69,0.06362429881374787],[114,-38,70,0.06106901154026634],[114,-38,71,0.058600395615823975],[114,-38,72,0.056219335367240664],[114,-38,73,0.053926564795002685],[114,-38,74,0.05172266214975585],[114,-38,75,0.04960804444594069],[114,-38,76,0.047582961912348676],[114,-38,77,0.04564749237970589],[114,-38,78,0.043801535605241915],[114,-38,79,0.042044807534262096],[114,-37,64,0.0839481357996199],[114,-37,65,0.08100475916790217],[114,-37,66,0.07814041897029811],[114,-37,67,0.07535667695492154],[114,-37,68,0.07265497182374381],[114,-37,69,0.07003661414121376],[114,-37,70,0.06750278117979203],[114,-37,71,0.06505451170247434],[114,-37,72,0.06269270068229216],[114,-37,73,0.06041809395886233],[114,-37,74,0.058231282831786024],[114,-37,75,0.056132698591171204],[114,-37,76,0.05412260698506255],[114,-37,77,0.052201102623881446],[114,-37,78,0.05036810332183672],[114,-37,79,0.048623344375322564],[114,-36,64,0.09020032846646975],[114,-36,65,0.0872844866816237],[114,-36,66,0.08444652495069838],[114,-36,67,0.08168800998857628],[114,-36,68,0.07901038658492165],[114,-36,69,0.07641497253001917],[114,-36,70,0.07390295347750941],[114,-36,71,0.07147537774410029],[114,-36,72,0.06913315104623918],[114,-36,73,0.06687703117381982],[114,-36,74,0.06470762260072371],[114,-36,75,0.06262537103246946],[114,-36,76,0.060630557890753334],[114,-36,77,0.05872329473498794],[114,-36,78,0.05690351762079304],[114,-36,79,0.05517098139546117],[114,-35,64,0.09641306483362111],[114,-35,65,0.09352516483670559],[114,-35,66,0.09071397649826818],[114,-35,67,0.08798107152885049],[114,-35,68,0.08532790084690312],[114,-35,69,0.08275578952206653],[114,-35,70,0.08026593165533458],[114,-35,71,0.07785938519618163],[114,-35,72,0.07553706669663274],[114,-35,73,0.073299746002357],[114,-35,74,0.07114804088057902],[114,-35,75,0.06908241158508444],[114,-35,76,0.06710315535810285],[114,-35,77,0.06521040086917318],[114,-35,78,0.06340410259094764],[114,-35,79,0.061684035111955304],[114,-34,64,0.10258295635900794],[114,-34,65,0.09972338986512785],[114,-34,66,0.09693935518858532],[114,-34,67,0.09423242906233853],[114,-34,68,0.09160406857202419],[114,-34,69,0.08905560611689611],[114,-34,70,0.0865882443076359],[114,-34,71,0.08420305080111024],[114,-34,72,0.08190095307206158],[114,-34,73,0.07968273312180318],[114,-34,74,0.07754902212372217],[114,-34,75,0.07550029500586153],[114,-34,76,0.0735368649703656],[114,-34,77,0.0716588779498929],[114,-34,78,0.06986630700095664],[114,-34,79,0.0681589466342084],[114,-33,64,0.1087067485251415],[114,-33,65,0.10587589196146774],[114,-33,66,0.10311937649651681],[114,-33,67,0.10043878391031191],[114,-33,68,0.0978355774914057],[114,-33,69,0.09531109701568685],[114,-33,70,0.09286655366204322],[114,-33,71,0.09050302486496131],[114,-33,72,0.08822144910404306],[114,-33,73,0.08602262063051458],[114,-33,74,0.08390718413053122],[114,-33,75,0.08187562932554582],[114,-33,76,0.07992828550952902],[114,-33,77,0.0780653160231426],[114,-33,78,0.07628671266482767],[114,-33,79,0.07459229003882317],[114,-32,64,0.11478132910980487],[114,-32,65,0.11197954357518936],[114,-32,66,0.10925089810921218],[114,-32,67,0.10659697956152492],[114,-32,68,0.10401925745668739],[114,-32,69,0.10151907899103674],[114,-32,70,0.09909766396640562],[114,-32,71,0.09675609966075949],[114,-32,72,0.0944953356357422],[114,-32,73,0.09231617848119844],[114,-32,74,0.09021928649648181],[114,-32,75,0.0882051643088112],[114,-32,76,0.08627415742846822],[114,-32,77,0.08442644674093447],[114,-32,78,0.08266204293593149],[114,-32,79,0.08098078087337646],[114,-31,64,0.12080373658059151],[114,-31,65,0.11803136782723178],[114,-31,66,0.11533092836382697],[114,-31,67,0.1127040101301704],[114,-31,68,0.11015208891731176],[114,-31,69,0.10767651938268119],[114,-31,70,0.1052785300020499],[114,-31,71,0.10295921795839769],[114,-31,72,0.10071954396767613],[114,-31,73,0.09856032704153783],[114,-31,74,0.09648223918683818],[114,-31,75,0.0944858000421741],[114,-31,76,0.09257137145125094],[114,-31,77,0.09073915197317772],[114,-31,78,0.08898917132965256],[114,-31,79,0.08732128478905266],[114,-30,64,0.12677116861344573],[114,-30,65,0.12402854705105149],[114,-30,66,0.12135663481014247],[114,-30,67,0.1187570289391483],[114,-30,68,0.11623121152352356],[114,-30,69,0.11378054471930765],[114,-30,70,0.11140626572350643],[114,-30,71,0.10910948168137236],[114,-30,72,0.1068911645305678],[114,-30,73,0.10475214578228187],[114,-30,74,0.10269311123910996],[114,-30,75,0.10071459564995766],[114,-30,76,0.09881697730176175],[114,-30,77,0.09700047254812794],[114,-30,78,0.09526513027484718],[114,-30,79,0.09361082630230544],[114,-29,64,0.1326809907348847],[114,-29,65,0.12996843145780113],[114,-29,66,0.1273253528977527],[114,-29,67,0.12475335722832126],[114,-29,68,0.12225393285475739],[114,-29,69,0.11982844946614346],[114,-29,70,0.11747815302437137],[114,-29,71,0.11520416069000561],[114,-29,72,0.11300745568501958],[114,-29,73,0.11088888209247294],[114,-29,74,0.10884913959294429],[114,-29,75,0.10688877813797293],[114,-29,76,0.10500819256030958],[114,-29,77,0.10320761712107285],[114,-29,78,0.1014871199937718],[114,-29,79,0.09984659768521231],[114,-28,64,0.1385307450880754],[114,-28,65,0.13584854792581524],[114,-28,66,0.13323459478799649],[114,-28,67,0.13069049298793434],[114,-28,68,0.12821773727358743],[114,-28,69,0.12581770489848987],[114,-28,70,0.12349165062948386],[114,-28,71,0.12124070169133017],[114,-28,72,0.11906585264818126],[114,-28,73,0.11696796022198408],[114,-28,74,0.1149477380476287],[114,-28,75,0.11300575136509483],[114,-28,76,0.11114241164839866],[114,-28,77,0.10935797117143231],[114,-28,78,0.10765251751066196],[114,-28,79,0.10602596798469799],[114,-27,64,0.14431815932289938],[114,-27,65,0.14166660891453897],[114,-27,66,0.13908205829076947],[114,-27,67,0.1365661199173307],[114,-27,68,0.13412029490538024],[114,-27,69,0.13174596810134298],[114,-27,70,0.12944440311355576],[114,-27,71,0.12721673727577842],[114,-27,72,0.12506397654755796],[114,-27,73,0.12298699035151195],[114,-27,74,0.12098650634734898],[114,-27,75,0.11906310514287788],[114,-27,76,0.11721721494180459],[114,-27,77,0.11544910612841519],[114,-27,78,0.11375888578910587],[114,-27,79,0.11214649217077566],[114,-26,64,0.15004115560971432],[114,-26,65,0.14742052150260576],[114,-26,66,0.1448656359259185],[114,-26,67,0.14237811650867216],[114,-26,68,0.13995947074334714],[114,-26,69,0.13761109109479752],[114,-26,70,0.13533425004595234],[114,-26,71,0.13313009508037155],[114,-26,72,0.13099964360164762],[114,-26,73,0.12894377778971555],[114,-26,74,0.12696323939389342],[114,-26,75,0.12505862446289895],[114,-26,76,0.12323037801164749],[114,-26,77,0.12147878862492523],[114,-26,78,0.11980398299790074],[114,-26,79,0.11820592041349032],[114,-25,64,0.15569785977695916],[114,-25,65,0.15310839655021224],[114,-25,66,0.1505834241093721],[114,-25,67,0.14812456525580986],[114,-25,68,0.14573333387915166],[114,-25,69,0.1434111300853902],[114,-25,70,0.1411592352617771],[114,-25,71,0.1389788070785617],[114,-25,72,0.13687087442756618],[114,-25,73,0.13483633229766034],[114,-25,74,0.13287593658695962],[114,-25,75,0.13099029885198876],[114,-25,76,0.12917988099361877],[114,-25,77,0.1274449898798713],[114,-25,78,0.12578577190555118],[114,-25,79,0.12420220748872557],[114,-24,64,0.16128661057275206],[114,-24,65,0.15872855798594065],[114,-24,66,0.1562337324641514],[114,-24,67,0.15380376198845747],[114,-24,68,0.1514401668592209],[114,-24,69,0.14914435484353084],[114,-24,70,0.14691761625941369],[114,-24,71,0.14476111899688238],[114,-24,72,0.14267590347581371],[114,-24,73,0.14066287754071738],[114,-24,74,0.13872281129221908],[114,-24,75,0.1368563318555026],[114,-24,76,0.13506391808551643],[114,-24,77,0.1333458952090385],[114,-24,78,0.13170242940356403],[114,-24,79,0.1301335223130281],[114,-23,64,0.16680596905018297],[114,-23,65,0.16427955221772805],[114,-23,66,0.1618150932559672],[114,-23,67,0.15941422533136718],[114,-23,68,0.15707847516645868],[114,-23,69,0.15480925820671854],[114,-23,70,0.1526078737242169],[114,-23,71,0.15047549985809638],[114,-23,72,0.14841318859187158],[114,-23,73,0.14642186066761065],[114,-23,74,0.14450230043682777],[114,-23,75,0.14265515064832224],[114,-23,76,0.1408809071727769],[114,-23,77,0.139179913664208],[114,-23,78,0.1375523561582278],[114,-23,79,0.1359982576071368],[114,-22,64,0.17225472807645192],[114,-22,65,0.16976015766813501],[114,-22,66,0.16732627095354946],[114,-22,67,0.16495470628865738],[114,-22,68,0.1626469968275125],[114,-22,69,0.16040456570869588],[114,-22,70,0.1582287211785106],[114,-22,71,0.15612065165100142],[114,-22,72,0.15408142070478725],[114,-22,73,0.15211196201676902],[114,-22,74,0.15021307423254127],[114,-22,75,0.1483854157737432],[114,-22,76,0.14662949958216231],[114,-22,77,0.14494568780068162],[114,-22,78,0.14333418639103324],[114,-22,79,0.14179503968837404],[114,-21,64,0.17763192196600164],[114,-21,65,0.1751693944340632],[114,-21,66,0.17276627191386318],[114,-21,67,0.170424197953445],[114,-21,68,0.1681447121457471],[114,-21,69,0.16592924533469444],[114,-21,70,0.16377911475804285],[114,-21,71,0.1616955191270415],[114,-21,72,0.15967953364290188],[114,-21,73,0.157732104950135],[114,-21,74,0.15585404602658703],[114,-21,75,0.15404603101040604],[114,-21,76,0.1523085899637565],[114,-21,77,0.15064210357336927],[114,-21,78,0.14904679778789232],[114,-21,79,0.14752273839205754],[114,-20,64,0.1829368362373357],[114,-20,65,0.18050653407061068],[114,-20,66,0.17813435419189871],[114,-20,67,0.17582194534247098],[114,-20,68,0.173570853559611],[114,-20,69,0.1713825174024557],[114,-20,70,0.1692582631145828],[114,-20,71,0.16719929972341085],[114,-20,72,0.1652067140764003],[114,-20,73,0.16328146581411473],[114,-20,74,0.16142438227997702],[114,-20,75,0.15963615336694836],[114,-20,76,0.15791732630095057],[114,-20,77,0.15626830036111616],[114,-20,78,0.15468932153683457],[114,-20,79,0.15318047712160787],[114,-19,64,0.1881690174936974],[114,-19,65,0.18577110949924192],[114,-19,66,0.18343003747521014],[114,-19,67,0.18114745535589127],[114,-19,68,0.17892491562657076],[114,-19,69,0.17676386456920423],[114,-19,70,0.17466563744483676],[114,-19,71,0.17263145361282628],[114,-19,72,0.17066241158686313],[114,-19,73,0.1687594840278438],[114,-19,74,0.16692351267343575],[114,-19,75,0.16515520320455723],[114,-19,76,0.16345512004859575],[114,-19,77,0.161823681119449],[114,-19,78,0.16026115249435613],[114,-19,79,0.15876764302753243],[114,-18,64,0.1933282834277268],[114,-18,65,0.19096292504038936],[114,-18,66,0.18865311314332434],[114,-18,67,0.18640050686235998],[114,-18,68,0.1842066651327373],[114,-18,69,0.18207304196469742],[114,-18,70,0.18000098164580858],[114,-18,71,0.17799171388009327],[114,-18,72,0.17604634886394543],[114,-18,73,0.1741658722988979],[114,-18,74,0.17235114034107368],[114,-18,75,0.17060287448755007],[114,-18,76,0.1689216563994529],[114,-18,77,0.16730792266187122],[114,-18,78,0.16576195948055572],[114,-18,79,0.16428389731541437],[114,-17,64,0.19841473294981338],[114,-17,65,0.19608206657020522],[114,-17,66,0.19380365445173442],[114,-17,67,0.19158116090911137],[114,-17,68,0.18941615132789436],[114,-17,69,0.18731008745005995],[114,-17,70,0.18526432259630976],[114,-17,71,0.183280096825172],[114,-17,72,0.18135853202888952],[114,-17,73,0.17950062696615177],[114,-17,74,0.17770725223150763],[114,-17,75,0.17597914516168534],[114,-17,76,0.17431690467863792],[114,-17,77,0.17272098606940522],[114,-17,78,0.17119169570275283],[114,-17,79,0.1697291856826073],[114,-16,64,0.20342875644031577],[114,-16,65,0.2011289118016324],[114,-16,66,0.1988820268406476],[114,-16,67,0.19668977105721752],[114,-16,68,0.19455371628610096],[114,-16,69,0.19247533200257705],[114,-16,70,0.19045598056479607],[114,-16,71,0.18849691239291944],[114,-16,72,0.18659926108504366],[114,-16,73,0.18476403846996192],[114,-16,74,0.18299212959660505],[114,-16,75,0.18128428766038185],[114,-16,76,0.17964112886624406],[114,-16,77,0.17806312722856132],[114,-16,78,0.17655060930776967],[114,-16,79,0.17510374888381253],[114,-15,64,0.20837104612573198],[114,-15,65,0.20610414068987926],[114,-15,66,0.2038888983685757],[114,-15,67,0.20172699384210702],[114,-15,68,0.19962000539195845],[114,-15,69,0.1975694102265365],[114,-15,70,0.19557657974361975],[114,-15,71,0.1936427747295968],[114,-15,72,0.19176914049548177],[114,-15,73,0.18995670194976633],[114,-15,74,0.18820635860794477],[114,-15,75,0.18651887953893698],[114,-15,76,0.18489489824823024],[114,-15,77,0.183334907497828],[114,-15,78,0.18183925406296908],[114,-15,79,0.180408133425634],[114,-14,64,0.21324260657860528],[114,-14,65,0.21100874596208563],[114,-14,66,0.20882525027054977],[114,-14,67,0.20669379935912524],[114,-14,68,0.204615977952319],[114,-14,69,0.20259327098989455],[114,-14,70,0.2006270589094724],[114,-14,71,0.19871861286591674],[114,-14,72,0.1968690898874953],[114,-14,73,0.19507952796887051],[114,-14,74,0.19335084110076484],[114,-14,75,0.19168381423651537],[114,-14,76,0.19007909819534707],[114,-14,77,0.18853720450244882],[114,-14,78,0.18705850016581627],[114,-14,79,0.18564320238987786],[114,-13,64,0.2180447653412596],[114,-13,65,0.21584404377126942],[114,-13,66,0.21369238764105314],[114,-13,67,0.2115914819742316],[114,-13,68,0.20954291793353264],[114,-13,69,0.2075481881868656],[114,-13,70,0.2056086822101172],[114,-13,71,0.20372568152673065],[114,-13,72,0.20190035488405544],[114,-13,73,0.20013375336652328],[114,-13,74,0.19842680544549773],[114,-13,75,0.19678031196600854],[114,-13,76,0.19519494107020174],[114,-13,77,0.19367122305759],[114,-13,78,0.19220954518206634],[114,-13,79,0.1908101463856987],[114,-12,64,0.22277918367351324],[114,-12,65,0.2206116844747067],[114,-12,66,0.21849195024182344],[114,-12,67,0.216421671159986],[114,-12,68,0.21440244482438442],[114,-12,69,0.21243577162658533],[114,-12,70,0.21052305007756256],[114,-12,71,0.20866557206750702],[114,-12,72,0.2068645180624038],[114,-12,73,0.20512095223743443],[114,-12,74,0.2034358175470493],[114,-12,75,0.20180993073192188],[114,-12,76,0.20024397726261667],[114,-12,77,0.19873850622005396],[114,-12,78,0.19729392511273602],[114,-12,79,0.19591049463075072],[114,-11,64,0.22744786742409506],[114,-11,65,0.22531366353646687],[114,-11,66,0.22322592343424563],[114,-11,67,0.2211863424565429],[114,-11,68,0.2191965246244404],[114,-11,69,0.21725797804756697],[114,-11,70,0.21537211026739578],[114,-11,71,0.2135402235373176],[114,-11,72,0.21176351003947969],[114,-11,73,0.21004304703844645],[114,-11,74,0.20837979197153012],[114,-11,75,0.2067745774759977],[114,-11,76,0.20522810635299293],[114,-11,77,0.20374094646824925],[114,-11,78,0.20231352558956406],[114,-11,79,0.20094612616104834],[114,-10,64,0.23205317802598513],[114,-10,65,0.22995233255432623],[114,-10,66,0.2278966492365595],[114,-10,67,0.2258878285578786],[114,-10,68,0.2239274809580285],[114,-10,69,0.2220171222581756],[114,-10,70,0.22015816902450036],[114,-10,71,0.2183519338685599],[114,-10,72,0.21659962068441863],[114,-10,73,0.2149023198225939],[114,-10,74,0.2132610032006741],[114,-10,75,0.21167651935080845],[114,-10,76,0.21014958840390996],[114,-10,77,0.20868079701064746],[114,-10,78,0.20727059319919927],[114,-10,79,0.20591928116977543],[114,-9,64,0.23659784361552627],[114,-9,65,0.23453041041090628],[114,-9,66,0.2325068375057272],[114,-9,67,0.23052883052309858],[114,-9,68,0.2285980063136992],[114,-9,69,0.22671588840296675],[114,-9,70,0.22488390237500422],[114,-9,71,0.22310337119325818],[114,-9,72,0.2213755104579611],[114,-9,73,0.2197014236003879],[114,-9,74,0.21808209701378356],[114,-9,75,0.21651839512115922],[114,-9,76,0.21501105537980203],[114,-9,77,0.2135606832225705],[114,-9,78,0.2121677469359502],[114,-9,79,0.2108325724748772],[114,-8,64,0.24108497027550074],[114,-8,65,0.23905099454922896],[114,-8,66,0.23705957724415616],[114,-8,67,0.23511242911301644],[114,-8,68,0.23321117340936148],[114,-8,69,0.23135734135508346],[114,-8,70,0.22955236754465524],[114,-8,71,0.22779758528614202],[114,-8,72,0.22609422187897366],[114,-8,73,0.22444339382853085],[114,-8,74,0.22284610199740118],[114,-8,75,0.22130322669350244],[114,-8,76,0.2198155226949159],[114,-8,77,0.21838361421150776],[114,-8,78,0.21700798978330527],[114,-8,79,0.21568899711564316],[114,-7,64,0.24551805340194094],[114,-7,65,0.24351757237246285],[114,-7,66,0.2415583480310447],[114,-7,67,0.23964209625177701],[114,-7,68,0.23777044668286118],[114,-7,69,0.2359449382344806],[114,-7,70,0.23416701450338862],[114,-7,71,0.23243801913426676],[114,-7,72,0.23075919111784238],[114,-7,73,0.2291316600258183],[114,-7,74,0.22755644118247287],[114,-7,75,0.22603443077312446],[114,-7,76,0.2245664008893059],[114,-7,77,0.22315299451072446],[114,-7,78,0.22179472042397752],[114,-7,79,0.22049194807803552],[114,-6,64,0.24990098919478398],[114,-6,65,0.2479340327679625],[114,-6,66,0.24600703157846115],[114,-6,67,0.24412170661362798],[114,-6,68,0.24227969390811033],[114,-6,69,0.24048254005208303],[114,-6,70,0.23873169763619506],[114,-6,71,0.23702852063328395],[114,-6,72,0.23537425971685033],[114,-6,73,0.2337700575163415],[114,-6,74,0.23221694380910685],[114,-6,75,0.23071583064921453],[114,-6,76,0.22926750743297875],[114,-6,77,0.22787263590127094],[114,-6,78,0.2265317450785862],[114,-6,79,0.225245226148875],[114,-5,64,0.25423808627248623],[114,-5,65,0.25230467775572424],[114,-5,66,0.2504099234122723],[114,-5,67,0.24855554933496277],[114,-5,68,0.24674319793688987],[114,-5,69,0.2449744234800022],[114,-5,70,0.24325068754041512],[114,-5,71,0.24157335441048833],[114,-5,72,0.23994368643766484],[114,-5,73,0.23836283930011626],[114,-5,74,0.23683185721906153],[114,-5,75,0.23535166810794328],[114,-5,76,0.23392307865831707],[114,-5,77,0.23254676936252205],[114,-5,78,0.23122328947310644],[114,-5,79,0.22995305189901694],[114,-4,64,0.2585340774103569],[114,-4,65,0.25663423426101456],[114,-4,66,0.2547717446776823],[114,-4,67,0.25294833985138987],[114,-4,68,0.2511656685660782],[114,-4,69,0.2494252927475613],[114,-4,70,0.24772868294920813],[114,-4,71,0.24607721377438851],[114,-4,72,0.24447215923568077],[114,-4,73,0.24291468805088368],[114,-4,74,0.24140585887570376],[114,-4,75,0.23994661547329654],[114,-4,76,0.23853778182052432],[114,-4,77,0.23718005715098878],[114,-4,78,0.23587401093482452],[114,-4,79,0.2346200777952525],[114,-3,64,0.2627941314027539],[114,-3,65,0.2609278660113115],[114,-3,66,0.25909765406951896],[114,-3,67,0.25730523185996956],[114,-3,68,0.2555522545304488],[114,-3,69,0.25384029166327404],[114,-3,70,0.252170822781341],[114,-3,71,0.25054523279094754],[114,-3,72,0.2489648073613655],[114,-3,73,0.2474307282412287],[114,-3,74,0.24594406851158468],[114,-3,75,0.24450578777581122],[114,-3,76,0.24311672728623746],[114,-3,77,0.24177760500755063],[114,-3,78,0.24048901061695427],[114,-3,79,0.23925140044109083],[114,-2,64,0.2670238650492219],[114,-2,65,0.26519118555764437],[114,-2,66,0.2633932598873574],[114,-2,67,0.2616318294067046],[114,-2,68,0.25990855562112547],[114,-2,69,0.25822501576286316],[114,-2,70,0.2565826983173863],[114,-2,71,0.2549829984865812],[114,-2,72,0.2534272135886984],[114,-2,73,0.25191653839510775],[114,-2,74,0.2504520604037265],[114,-2,75,0.24903475504930084],[114,-2,76,0.2476654808504022],[114,-2,77,0.24634497449320092],[114,-2,78,0.2450738458519962],[114,-2,79,0.24385257294650908],[114,-1,64,0.27122935526436737],[114,-1,65,0.2694302664201247],[114,-1,66,0.26766463221526576],[114,-1,67,0.2659341990990754],[114,-1,68,0.26424063492947775],[114,-1,69,0.2625855245831075],[114,-1,70,0.26097036550211034],[114,-1,71,0.25939656317769955],[114,-1,72,0.2578654265704796],[114,-1,73,0.2563781634675675],[114,-1,74,0.2549358757763944],[114,-1,75,0.25353955475535705],[114,-1,76,0.2521900761811843],[114,-1,77,0.2508881954530806],[114,-1,78,0.24963454263362872],[114,-1,79,0.24842961742644898],[114,0,64,0.27541715131157896],[114,0,65,0.2736516553577732],[114,0,66,0.27191831522628657],[114,0,67,0.27021888244372594],[114,0,68,0.26855503121657226],[114,0,69,0.26692835406162474],[114,0,70,0.2653403573731672],[114,0,71,0.2637924569269004],[114,0,72,0.26228597332063036],[114,0,73,0.2608221273517633],[114,0,74,0.25940203533147493],[114,0,75,0.2580267043357338],[114,0,76,0.2566970273930358],[114,0,77,0.255413778608919],[114,0,78,0.2541776082272341],[114,0,79,0.2529890376281758],[114,1,64,0.27959428716070006],[114,1,65,0.2778623847627532],[114,1,66,0.2761613396117623],[114,1,67,0.2744929083094117],[114,1,68,0.2728587714082886],[114,1,69,0.2712605290627012],[114,1,70,0.26969969661620946],[114,1,71,0.26817770012592995],[114,1,72,0.2666958718235904],[114,1,73,0.26525544551339664],[114,1,74,0.2638575519065684],[114,1,75,0.2625032138927337],[114,1,76,0.2611933417480305],[114,1,77,0.25992872827999225],[114,1,78,0.2587100439091863],[114,1,79,0.25753783168761446],[114,2,64,0.2837678317206198],[114,2,65,0.28206952357435155],[114,2,66,0.28040077421091847],[114,2,67,0.2787633453058029],[114,2,68,0.2771589237563347],[114,2,69,0.27558911735287495],[114,2,70,0.2740554503867188],[114,2,71,0.27255935919476637],[114,2,72,0.2711021876409507],[114,2,73,0.2696851825344681],[114,2,74,0.2683094889846893],[114,2,75,0.2669761456929178],[114,2,76,0.26568608018086454],[114,2,77,0.26444010395590045],[114,2,78,0.2632389076130644],[114,2,79,0.26208305587383474],[114,3,64,0.2879383040541896],[114,3,65,0.2862736011733196],[114,3,66,0.2846371590966002],[114,3,67,0.2830307445640859],[114,3,68,0.2814560508083265],[114,3,69,0.27991469324592533],[114,3,70,0.2784082051058202],[114,3,71,0.276938032994331],[114,3,72,0.2755055323969646],[114,3,73,0.27411196311702357],[114,3,74,0.2727584846508947],[114,3,75,0.2714461515001858],[114,3,76,0.27017590842057826],[114,3,77,0.2689485856074594],[114,3,78,0.2677648938183081],[114,3,79,0.2666254194318461],[114,4,64,0.29210096044076245],[114,4,65,0.2904698907084303],[114,4,66,0.28886578507979704],[114,4,67,0.2872904153355259],[114,4,68,0.2857454810186344],[114,4,69,0.2842326051464477],[114,4,70,0.28275332985927637],[114,4,71,0.2813091120058611],[114,4,72,0.279901318665576],[114,4,73,0.27853122260743646],[114,4,74,0.277199997685788],[114,4,75,0.2759087141728437],[114,4,76,0.2746583340279391],[114,4,77,0.2734497061035667],[114,4,78,0.2722835612881661],[114,4,79,0.2711605075856792],[114,5,64,0.2962509540906923],[114,5,65,0.29465356096062517],[114,5,66,0.29308183732893933],[114,5,67,0.29153755997832753],[114,5,68,0.2900224347223875],[114,5,69,0.28853809213800014],[114,5,70,0.28708608323443435],[114,5,71,0.28566787505922103],[114,5,72,0.28428484624078804],[114,5,73,0.2829382824678993],[114,5,74,0.28162937190578086],[114,5,75,0.2803592005490936],[114,5,76,0.2791287475116274],[114,5,77,0.27793888025277647],[114,5,78,0.27679034974077177],[114,5,79,0.275683785552681],[114,6,64,0.30038347734022575],[114,6,65,0.2988198183771595],[114,6,66,0.29728053723140047],[114,6,67,0.29576741563478526],[114,6,68,0.2942821656167562],[114,6,69,0.292826425257204],[114,6,70,0.2914017543760408],[114,6,71,0.2900096301595457],[114,6,72,0.28865144272347404],[114,6,73,0.28732849061297533],[114,6,74,0.2860419762391997],[114,6,75,0.28479300125275675],[114,6,76,0.2835825618538964],[114,6,77,0.2824115440394762],[114,6,78,0.28128071878668837],[114,6,79,0.28019073717355786],[114,7,64,0.30449376435428294],[114,7,65,0.3029639098164009],[114,7,66,0.3014571451791442],[114,7,67,0.29997525705660927],[114,7,68,0.2985199636247892],[114,7,69,0.2970929103949286],[114,7,70,0.295695665923615],[114,7,71,0.2943297174596474],[114,7,72,0.29299646652767547],[114,7,73,0.2916972244486483],[114,7,74,0.2904332077969622],[114,7,75,0.2892055337944612],[114,7,76,0.2880152156411678],[114,7,77,0.2868631577828032],[114,7,78,0.28575015111507396],[114,7,79,0.2846768681247337],[114,8,64,0.30857709377705017],[114,8,65,0.3070811252399863],[114,8,66,0.30560696330129183],[114,8,67,0.3041563993767519],[114,8,68,0.30273115770534953],[114,8,69,0.30133289114319],[114,8,70,0.29996317689416857],[114,8,71,0.2986235121774229],[114,8,72,0.29731530983156385],[114,8,73,0.2960398938557218],[114,8,74,0.29479849488730125],[114,8,75,0.29359224561659225],[114,8,76,0.2924221761381223],[114,8,77,0.2912892092388033],[114,8,78,0.29019415562285195],[114,8,79,0.2891377090734936],[114,9,64,0.31262879133049265],[114,9,65,0.3111668003524443],[114,9,66,0.30972533814372033],[114,9,67,0.3083062008278461],[114,9,68,0.3069111186092617],[114,9,69,0.30554175158787783],[114,9,70,0.30419968551038684],[114,9,71,0.3028864274583682],[114,9,72,0.30160340147318015],[114,9,73,0.30035194411767796],[114,9,74,0.2991332999746501],[114,9,75,0.2979486170821207],[114,9,76,0.29679894230540166],[114,9,77,0.2956852166459491],[114,9,78,0.29460827048700494],[114,9,79,0.29356881877602914],[114,10,64,0.3166442323608899],[114,10,65,0.3152163191883886],[114,10,66,0.3138076632957952],[114,10,67,0.312420065407362],[114,10,68,0.31105526158177543],[114,10,69,0.3097149190474143],[114,10,70,0.308400631974377],[114,10,71,0.3071139171833142],[114,10,72,0.30585620979106093],[114,10,73,0.30462885879310725],[114,10,74,0.30343312258279964],[114,10,75,0.302270164407421],[114,10,76,0.3011410477610316],[114,10,77,0.3000467317141294],[114,10,78,0.2989880661801044],[114,10,79,0.2979657871184991],[114,11,64,0.32061884433318466],[114,11,65,0.3192251166470696],[114,11,66,0.3178493819640261],[114,11,67,0.3164934454892657],[114,11,68,0.31515904901113106],[114,11,69,0.3138478667571317],[114,11,70,0.31256150118676534],[114,11,71,0.31130147872115954],[114,11,72,0.3100692454095295],[114,11,73,0.30886616253248805],[114,11,74,0.30769350214210395],[114,11,75,0.30655244253885217],[114,11,76,0.3054440636853427],[114,11,77,0.3043693425568823],[114,11,78,0.30332914842884723],[114,11,79,0.30232423810087666],[114,12,64,0.32454810927325245],[114,12,65,0.323188680974395],[114,12,66,0.3218459894927533],[114,12,67,0.3205218443822909],[114,12,68,0.31921799302333603],[114,12,69,0.317936116499476],[114,12,70,0.3166778254112556],[114,12,71,0.31544465562671553],[114,12,72,0.31423806396876547],[114,12,73,0.31305942383942725],[114,12,74,0.3119100207808476],[114,12,75,0.31079104797321944],[114,12,76,0.3097036016695014],[114,12,77,0.3086486765669893],[114,12,78,0.30762716111571753],[114,12,79,0.30663983276369966],[114,13,64,0.32842756615819174],[114,13,65,0.32710255619251505],[114,13,66,0.32579303583196617],[114,13,67,0.3245008188349249],[114,13,68,0.3232276580232553],[114,13,69,0.32197524118014176],[114,13,70,0.32074518688475245],[114,13,71,0.3195390402837667],[114,13,72,0.3183582687997577],[114,13,73,0.31720425777646893],[114,13,74,0.3160783060608831],[114,13,75,0.31498162152222076],[114,13,76,0.31391531650776106],[114,13,77,0.31288040323553645],[114,13,78,0.3118777891238796],[114,13,79,0.31090827205783267],[114,14,64,0.3322528132544179],[114,14,65,0.3309623444767611],[114,14,66,0.3296861279520358],[114,14,67,0.32842598148688945],[114,14,68,0.32718366318179487],[114,14,69,0.32596086734991503],[114,14,70,0.3247592203728248],[114,14,71,0.3235802764931206],[114,14,72,0.3224255135439139],[114,14,73,0.32129632861524304],[114,14,74,0.3201940336573062],[114,14,75,0.3191198510206487],[114,14,76,0.3180749089332002],[114,14,77,0.3170602369142112],[114,14,78,0.3160767611250699],[114,14,79,0.3151252996570064],[114,15,64,0.3360195104037453],[114,15,65,0.33476370848011583],[114,15,66,0.3335209322055457],[114,15,67,0.3322930032673013],[114,15,68,0.3310816848693635],[114,15,69,0.32988867767241215],[114,15,70,0.32871561567069885],[114,15,71,0.327564062005839],[114,15,72,0.32643550471751803],[114,15,73,0.3253313524311458],[114,15,74,0.32425292998236493],[114,15,75,0.3232014739785425],[114,15,76,0.3221781282971428],[114,15,77,0.32118393952103075],[114,15,78,0.3202198523106853],[114,15,79,0.3192867047133323],[114,16,64,0.33972338125732154],[114,16,65,0.338502373605084],[114,16,66,0.33729317663608516],[114,16,67,0.33609761573937647],[114,16,68,0.33491745903547815],[114,16,69,0.3337544133375762],[114,16,70,0.33261012004964224],[114,16,71,0.331486151001509],[114,16,72,0.33038400422089487],[114,16,73,0.3293050996424109],[114,16,74,0.3282507747534588],[114,16,75,0.3272222801771463],[114,16,76,0.3262207751921188],[114,16,77,0.32524732318935706],[114,16,78,0.32430288706592103],[114,16,79,0.3233883245556468],[114,17,64,0.3433602154575885],[114,17,65,0.342174130223136],[114,17,66,0.3409986532341811],[114,17,67,0.33983561339185536],[114,17,68,0.3386867835346886],[114,17,69,0.33755387642111107],[114,17,70,0.3364385406489192],[114,17,71,0.33534235651173677],[114,17,72,0.334266831792465],[114,17,73,0.33321339749375556],[114,17,74,0.33218340350541414],[114,17,75,0.33117811420886123],[114,17,76,0.3301987040185496],[114,17,77,0.32924625286038783],[114,17,78,0.3283217415871493],[114,17,79,0.32742604733087466],[114,18,64,0.34692587076806386],[114,18,65,0.34577483584151836],[114,18,66,0.34463322014015985],[114,18,67,0.3435028558769389],[114,18,68,0.3423855203986114],[114,18,69,0.3412829321896396],[114,18,70,0.3401967468131026],[114,18,71,0.33912855278864723],[114,18,72,0.3380798674074729],[114,18,73,0.3370521324843831],[114,18,74,0.33604671004681497],[114,18,75,0.3350648779609684],[114,18,76,0.33410782549493867],[114,18,77,0.3331766488188984],[114,18,78,0.33227234644231185],[114,18,79,0.3313958145881864],[114,19,64,0.35041627515104573],[114,19,65,0.34930041721753313],[114,19,66,0.34819280379404155],[114,19,67,0.3470952701948382],[114,19,68,0.3460095980541767],[114,19,69,0.3449375113516906],[114,19,70,0.34388067237484826],[114,19,71,0.3428406776184973],[114,19,72,0.3418190536214938],[114,19,73,0.34081725274044766],[114,19,74,0.33983664886049736],[114,19,75,0.338878533043233],[114,19,76,0.3379441091116739],[114,19,77,0.33703448917234596],[114,19,78,0.3361506890744401],[114,19,79,0.3352936238060604],[114,20,64,0.35382742879332524],[114,20,65,0.3527468724203733],[114,20,66,0.3516734010325559],[114,20,67,0.3506088528250282],[114,20,68,0.349555013488178],[114,20,69,0.3485136122546062],[114,20,70,0.3474863178832234],[114,20,71,0.3464747345804931],[114,20,72,0.345480397858815],[114,20,73,0.3445047703320784],[114,20,74,0.34354923744830335],[114,20,75,0.34261510315948357],[114,20,76,0.3417035855285402],[114,20,77,0.34081581227343044],[114,20,78,0.33995281624839463],[114,20,79,0.339115530862346],[114,21,64,0.3571554060797265],[114,21,65,0.3561102728403307],[114,21,66,0.35507108113309327],[114,21,67,0.3540396718040169],[114,21,68,0.3530178343579366],[114,21,69,0.3520073030271784],[114,21,70,0.35100975277739677],[114,21,71,0.3500267952506195],[114,21,72,0.34905997464549354],[114,21,73,0.3481107635347626],[114,21,74,0.347180558619894],[114,21,75,0.3462706764229679],[114,21,76,0.3453823489157387],[114,21,77,0.344516719085913],[114,21,78,0.3436748364406267],[114,21,79,0.34285765244712635],[114,22,64,0.36039635751456844],[114,22,65,0.35938676514547235],[114,22,66,0.3583819878046885],[114,22,67,0.3573838687497296],[114,22,68,0.3563942010481785],[114,22,69,0.35541472366811533],[114,22,70,0.35444711750579233],[114,22,71,0.3534930013505822],[114,22,72,0.35255392778719535],[114,22,73,0.35163137903519454],[114,22,74,0.35072676272572817],[114,22,75,0.34984140761559046],[114,22,76,0.34897655923852233],[114,22,77,0.34813337549379597],[114,22,78,0.34731292217206483],[114,22,79,0.34651616841848554],[114,23,64,0.36354651159113005],[114,23,65,0.3625725731858679],[114,23,66,0.3616023411261201],[114,23,67,0.36063766083259],[114,23,68,0.35968032867420896],[114,23,69,0.35873208808042123],[114,23,70,0.35779462559078967],[114,23,71,0.35686956684194904],[114,23,72,0.3559584724919002],[114,23,73,0.3550628340816747],[114,23,74,0.35418406983429274],[114,23,75,0.3533235203911183],[114,23,76,0.3524824444855315],[114,23,77,0.3516620145539546],[114,23,78,0.350863312284218],[114,23,79,0.3500873241012718],[114,24,64,0.3666021766089476],[114,24,65,0.36566399984519404],[114,24,66,0.3647284394309508],[114,24,67,0.36379734269312364],[114,24,68,0.362872509031207],[114,24,69,0.36195568605151146],[114,24,70,0.3610485656387931],[114,24,71,0.36015277996530864],[114,24,72,0.35926989743729143],[114,24,73,0.3584014185788766],[114,24,74,0.3575487718533996],[114,24,75,0.35671330942217083],[114,24,76,0.3558963028406461],[114,24,77,0.3550989386920311],[114,24,78,0.3543223141583041],[114,24,79,0.353567432528665],[114,25,64,0.36955974243903544],[114,25,65,0.3686574288398098],[114,25,66,0.36775666113960104],[114,25,67,0.36685928830617576],[114,25,68,0.3659671124897331],[114,25,69,0.3650818851791584],[114,25,70,0.3642053032957641],[114,25,71,0.36333900522454265],[114,25,72,0.3624845667829255],[114,25,73,0.36164349712707716],[114,25,74,0.3608172345956482],[114,25,75,0.36000714249108995],[114,25,76,0.35921450479845063],[114,25,77,0.3584405218416912],[114,25,78,0.3576863058775051],[114,25,79,0.35695287662664993],[114,26,64,0.3724156822371022],[114,26,65,0.3715493264653734],[114,26,66,0.37068346653853135],[114,26,67,0.3698199527918204],[114,26,68,0.3689605898375282],[114,26,69,0.3681071327433435],[114,26,70,0.36726128314829426],[114,26,71,0.36642468531628963],[114,26,72,0.3655989221272621],[114,26,73,0.36478551100593265],[114,26,74,0.36398589978813223],[114,26,75,0.3632014625247731],[114,26,76,0.3624334952233956],[114,26,77,0.3616832115273259],[114,26,78,0.36095173833243155],[114,26,79,0.3602401113414783],[114,27,64,0.37516655410460636],[114,27,65,0.3743362432908459],[114,27,66,0.3735053995063722],[114,27,67,0.3726758741727975],[114,27,68,0.37184947406743823],[114,27,69,0.3710279575238515],[114,27,70,0.3702130305700525],[114,27,71,0.369406343004434],[114,27,72,0.36860948440938424],[114,27,73,0.3678239801026277],[114,27,74,0.36705128702622086],[114,27,75,0.36629278957329603],[114,27,76,0.36554979535247983],[114,27,77,0.36482353089002195],[114,27,78,0.3641151372696193],[114,27,79,0.3634256657099423],[114,28,64,0.37780900269773543],[114,28,65,0.377014815799963],[114,28,66,0.376219089187088],[114,28,67,0.3754236750785658],[114,28,68,0.3746303821115533],[114,28,69,0.3738409715636955],[114,28,70,0.3730571535136977],[114,28,71,0.3722805829397078],[114,28,72,0.3715128557555002],[114,28,73,0.3707555047844892],[114,28,74,0.37000999567150417],[114,28,75,0.36927772273241644],[114,28,76,0.3685600047415479],[114,28,77,0.3678580806568949],[114,28,78,0.36717310528315367],[114,28,79,0.3665061448725529],[114,29,64,0.38033976078437315],[114,29,65,0.3795817679802435],[114,29,66,0.3788212516102416],[114,29,67,0.378060064396038],[114,29,68,0.3773000165216299],[114,29,69,0.3765428718784407],[114,29,70,0.3757903442483226],[114,29,71,0.37504409342447786],[114,29,72,0.3743057212702971],[114,29,73,0.37357676771613746],[114,29,74,0.37285870669397736],[114,29,75,0.37215294201003385],[114,29,76,0.37146080315527513],[114,29,77,0.37078354105386035],[114,29,78,0.37012232374949433],[114,29,79,0.36947823202970165],[114,30,64,0.38275565074891366],[114,30,65,0.3820339128593898],[114,30,66,0.38130869125821387],[114,30,67,0.380581838866853],[114,30,68,0.3798551670956458],[114,30,69,0.3791304421112782],[114,30,70,0.3784093810422805],[114,30,71,0.37769364812256356],[114,30,72,0.3769848507729925],[114,30,73,0.3762845356210176],[114,30,74,0.3755941844583047],[114,30,75,0.37491521013644513],[114,30,76,0.3742489524006814],[114,30,77,0.3735966736616805],[114,30,78,0.37295955470534076],[114,30,79,0.37233869034063843],[114,31,64,0.38505358604499923],[114,31,65,0.3843681539891587],[114,31,66,0.3836783025804587],[114,31,67,0.38298588463126293],[114,31,68,0.38229271245057206],[114,31,69,0.38160055413393],[114,31,70,0.380911129791477],[114,31,71,0.3802261077141703],[114,31,72,0.3795471004781681],[114,31,73,0.37887566098739756],[114,31,74,0.37821327845425023],[114,31,75,0.3775613743184827],[114,31,76,0.37692129810426034],[114,31,77,0.3762943232153752],[114,31,78,0.375681642668625],[114,31,79,0.3750843647653579],[114,32,64,0.38723057259623817],[114,32,65,0.38658148687675936],[114,32,66,0.38592707145484884],[114,32,67,0.3852691787186951],[114,32,68,0.38460962154141654],[114,32,69,0.3839501695934435],[114,32,70,0.3832925455931854],[114,32,71,0.38263842149599747],[114,32,72,0.38198941462144664],[114,32,73,0.38134708371889325],[114,32,74,0.3807129249713369],[114,32,75,0.38008836793759965],[114,32,76,0.37947477143278785],[114,32,77,0.3788734193470612],[114,32,78,0.3782855164026974],[114,32,79,0.37771218384945743],[114,33,64,0.38928371014477675],[114,33,65,0.388671000363652],[114,33,66,0.3880520765959854],[114,33,67,0.38742879048485834],[114,33,68,0.38680295512641105],[114,33,69,0.38617634140474505],[114,33,70,0.3855506742652526],[114,33,71,0.38492762892638743],[114,33,72,0.3843088270298757],[114,33,73,0.38369583272938407],[114,33,74,0.38309014871759517],[114,33,75,0.38249321219175914],[114,33,76,0.38190639075766775],[114,33,77,0.38133097827207585],[114,33,78,0.3807681906235606],[114,33,79,0.38021916145182244],[114,34,64,0.3912101935477976],[114,34,65,0.39063387795181725],[114,34,66,0.3900504909105442],[114,34,67,0.3894618829954658],[114,34,68,0.38886986717841404],[114,34,69,0.38827621518902455],[114,34,70,0.3876826538107705],[114,34,71,0.38709086111558855],[114,34,72,0.38650246263709254],[114,34,73,0.3859190274823937],[114,34,74,0.3853420643824778],[114,34,75,0.3847730176812071],[114,34,76,0.38421326326289273],[114,34,77,0.3836641044184653],[114,34,78,0.3831267676502309],[114,34,79,0.38260239841521826],[114,35,64,0.39300731402198597],[114,35,65,0.3924673990775437],[114,35,66,0.3919195827997025],[114,35,67,0.39136571435662204],[114,35,68,0.39080760624257715],[114,35,69,0.39024703065800126],[114,35,70,0.38968571582826217],[114,35,71,0.38912534226118584],[114,35,72,0.38856753894332496],[114,35,73,0.3880138794749901],[114,35,74,0.3874658781439949],[114,35,75,0.3869249859381819],[114,35,76,0.38639258649667607],[114,35,77,0.38586999199989214],[114,35,78,0.3853584389982848],[114,35,79,0.38485908417984627],[114,36,64,0.3946724603358618],[114,36,65,0.3941689403326243],[114,36,66,0.39365671740853947],[114,36,67,0.39313763899176446],[114,36,68,0.39261351674016365],[114,36,69,0.39208612294395706],[114,36,70,0.3915571868672675],[114,36,71,0.39102839102857934],[114,36,72,0.3905013674201061],[114,36,73,0.38997769366608404],[114,36,74,0.38945888911994614],[114,36,75,0.38894641090043836],[114,36,76,0.38844164986662916],[114,36,77,0.38794592653183624],[114,36,78,0.3874604869164613],[114,36,79,0.3869864983397351],[114,37,64,0.3962031199500361],[114,37,65,0.3957359766330254],[114,37,66,0.3952593578224723],[114,37,67,0.39477510886522127],[114,37,68,0.3942850402185827],[114,37,69,0.3937909238756008],[114,37,70,0.3932944897293942],[114,37,71,0.39279742187657885],[114,37,72,0.3923013548597722],[114,37,73,0.3918078698491938],[114,37,74,0.39131849076332076],[114,37,75,0.39083468032865465],[114,37,76,0.39035783607855473],[114,37,77,0.38988928629116054],[114,37,78,0.38943028586639306],[114,37,79,0.38898201214203953],[114,38,64,0.39759688010542804],[114,38,65,0.39716608233506223],[114,38,66,0.39672506621076475],[114,38,67,0.39627567465242447],[114,38,68,0.395819716547678],[114,38,69,0.39535896319980496],[114,38,70,0.39489514471487447],[114,38,71,0.3944299463281552],[114,38,72,0.39396500466978557],[114,38,73,0.3935019039697194],[114,38,74,0.39304217220190707],[114,38,75,0.39258727716776654],[114,38,76,0.3921386225189012],[114,38,77,0.39169754371908605],[114,38,78,0.39126530394551184],[114,38,79,0.3908430899292934],[114,39,64,0.39885142885935154],[114,39,65,0.3984569322989913],[114,39,66,0.3980515049170146],[114,39,67,0.39763698685668175],[114,39,68,0.39721518506217424],[114,39,69,0.3967878697491144],[114,39,70,0.39635677081452614],[114,39,71,0.39592357418624513],[114,39,72,0.3954899181117776],[114,39,73,0.3950573893866201],[114,39,74,0.3946275195220053],[114,39,75,0.3942017808521213],[114,39,76,0.3937815825807678],[114,39,77,0.39336826676746606],[114,39,78,0.3929631042530157],[114,39,79,0.3925672905245028],[114,40,64,0.3999645560695493],[114,40,65,0.399606302900095],[114,40,66,0.39923643749669824],[114,40,67,0.398856796872589],[114,40,68,0.39846918565036193],[114,40,69,0.3980753725551113],[114,40,70,0.39767708684720426],[114,40,71,0.39727601469469787],[114,40,72,0.3968737954853996],[114,40,73,0.39647201807858456],[114,40,74,0.3960722169963339],[114,40,75,0.3956758685545415],[114,40,76,0.3952843869335526],[114,40,77,0.3948991201884518],[114,40,78,0.39452134619899315],[114,40,79,0.3941522685591755],[114,41,64,0.4009341543261237],[114,41,65,0.4006120729872116],[114,41,66,0.4002777297017245],[114,41,67,0.39993295799603124],[114,41,68,0.39957955978897],[114,41,69,0.3992193019075822],[114,41,70,0.3988539125426874],[114,41,71,0.3984850776443057],[114,41,72,0.3981144372569265],[114,41,73,0.3977435817946361],[114,41,74,0.3973740482560704],[114,41,75,0.39700731637923936],[114,41,76,0.39664480473618435],[114,41,77,0.39628786676749017],[114,41,78,0.3959377867566407],[114,41,79,0.3955957757442234],[114,42,64,0.4017582198314191],[114,42,65,0.40147222478876154],[114,42,66,0.4011733504120494],[114,42,67,0.40086342638082795],[114,42,68,0.40054425152428286],[114,42,69,0.4002175903595473],[114,42,70,0.3998851695700598],[114,42,71,0.3995486744239824],[114,42,72,0.3992097451326747],[114,42,73,0.3988699731492373],[114,42,74,0.39853089740709347],[114,42,75,0.39819400049865006],[114,42,76,0.3978607047940057],[114,42,77,0.39753236849972134],[114,42,78,0.39721028165764755],[114,42,79,0.39689566208381044],[114,43,64,0.4024348532277916],[114,43,65,0.4021848447662087],[114,43,66,0.4019213725142887],[114,43,67,0.4016462619419564],[114,43,68,0.401361308399433],[114,43,69,0.4010682736780804],[114,43,70,0.40076888251151765],[114,43,71,0.4004648190170141],[114,43,72,0.40015772307715913],[114,43,73,0.3998491866618178],[114,43,74,0.3995407500903461],[114,43,75,0.3992338982341027],[114,43,76,0.39893005665922604],[114,43,77,0.3986305877096943],[114,43,78,0.3983367865306595],[114,43,79,0.3980498770320601],[114,44,64,0.40296226037330485],[114,44,65,0.4027481244149932],[114,44,66,0.4025199737273669],[114,44,67,0.40227962920539356],[114,44,68,0.40202888232791],[114,44,69,0.40176949174096177],[114,44,70,0.4015031797816405],[114,44,71,0.4012316289424267],[114,44,72,0.4009564782760345],[114,44,73,0.4006793197407682],[114,44,74,0.400401694486368],[114,44,75,0.400125089080375],[114,44,76,0.39985093167499103],[114,44,77,0.3995805881144474],[114,44,78,0.3993153579828731],[114,44,79,0.3990564705926703],[114,45,64,0.4033387530653604],[114,45,65,0.4031603610129466],[114,45,66,0.40296743737521246],[114,45,67,0.40276179810458534],[114,45,68,0.4025452304132993],[114,45,69,0.4023194893791765],[114,45,70,0.4020862944921432],[114,45,71,0.4018473261414841],[114,45,72,0.4016042220438348],[114,45,73,0.4013585736119189],[114,45,74,0.4011119222640107],[114,45,75,0.4008657556741501],[114,45,76,0.400621503963088],[114,45,77,0.4003805358299735],[114,45,78,0.40014415462477804],[114,45,79,0.3999135943614581],[114,46,64,0.4035627497122272],[114,46,65,0.40341995831615163],[114,46,66,0.40326215310646135],[114,46,67,0.40309114472350616],[114,46,68,0.4029087157152063],[114,46,69,0.40271661716521556],[114,46,70,0.40251656526206214],[114,46,71,0.40231023780927055],[114,46,72,0.40209927067646345],[114,46,73,0.4018852541914506],[114,46,74,0.4016697294732867],[114,46,75,0.40145418470632277],[114,46,76,0.4012400513552308],[114,46,77,0.4010287003210132],[114,46,78,0.40082143803799103],[114,46,79,0.4006195025117735],[114,47,64,0.4036327759524978],[114,47,65,0.4035254272022747],[114,47,66,0.40340261756119766],[114,47,67,0.4032661519863359],[114,47,68,0.4031178079613984],[114,47,69,0.4029593321472084],[114,47,70,0.40279243697340716],[114,47,71,0.40261879717138915],[114,47,72,0.4024400462484671],[114,47,73,0.402257772903274],[114,47,74,0.4020735173823864],[114,47,75,0.40188876777818855],[114,47,76,0.4017049562679628],[114,47,77,0.4015234552942134],[114,47,78,0.40134557368621987],[114,47,79,0.4011725527228222],[114,48,64,0.40354746522246604],[114,48,65,0.4034753862613686],[114,48,66,0.4033874349847282],[114,48,67,0.403285410293754],[114,48,68,0.4031710842061639],[114,48,69,0.40304619852889156],[114,48,70,0.402912461472283],[114,48,71,0.40277154420578043],[114,48,72,0.4026250773550961],[114,48,73,0.4024746474408799],[114,48,74,0.40232179325886686],[114,48,75,0.4021680022015247],[114,48,76,0.40201470652118343],[114,48,77,0.4018632795346593],[114,48,78,0.40171503176936396],[114,48,79,0.40157120705090604],[114,49,64,0.40330555927141726],[114,49,65,0.4032685623341312],[114,49,66,0.40321531778837777],[114,49,67,0.40314761810583444],[114,49,68,0.4030672294348686],[114,49,69,0.4029758882953892],[114,49,70,0.4028752982154551],[114,49,71,0.40276712630963546],[114,49,72,0.4026529997991283],[114,49,73,0.4025345024736351],[114,49,74,0.40241317109498687],[114,49,75,0.40229049174253023],[114,49,76,0.4021678961002657],[114,49,77,0.4020467576857449],[114,49,78,0.40192838802071845],[114,49,79,0.40181403274354366],[114,50,64,0.40290590862484355],[114,50,65,0.4029037909976381],[114,50,66,0.4028850870573208],[114,50,67,0.40285158247155844],[114,50,68,0.4028050371147305],[114,50,69,0.40274718178482805],[114,50,70,0.4026797148623832],[114,50,71,0.40260429891142663],[114,50,72,0.4025225572224742],[114,50,73,0.4024360702975461],[114,50,74,0.4023463722772083],[114,50,75,0.40225494730965144],[114,50,76,0.40216322586179265],[114,50,77,0.4020725809724106],[114,50,78,0.40198432444730753],[114,50,79,0.40189970299650113],[114,51,64,0.4023474729955704],[114,51,65,0.4023800169985322],[114,51,66,0.40239567300543577],[114,51,67,0.40239621950493293],[114,51,68,0.40238340969179914],[114,51,69,0.4023589682057733],[114,51,70,0.4023245878127107],[114,51,71,0.4022819260280448],[114,51,72,0.4022326016825609],[114,51,73,0.40217819143048156],[114,51,74,0.4021202261998593],[114,51,75,0.40206018758528533],[114,51,76,0.40199950418290376],[114,51,77,0.40193954786774116],[114,51,78,0.40188163001334387],[114,51,79,0.4018269976537273],[114,52,64,0.40162932164280574],[114,52,65,0.40169629463368217],[114,52,66,0.40174611537719174],[114,52,67,0.4017805548077209],[114,52,68,0.4018013590341444],[114,52,69,0.40181024610049093],[114,52,70,0.40180890268921143],[114,52,71,0.40179898076704484],[114,52,72,0.401782094173486],[114,52,73,0.401759815151853],[114,52,74,0.40173367082295386],[114,52,75,0.4017051396013548],[114,52,76,0.4016756475542469],[114,52,77,0.4016465647029144],[114,52,78,0.40161920126680195],[114,52,79,0.40159480385018276],[114,53,64,0.4007506336791163],[114,53,65,0.40085178807831395],[114,53,66,0.4009355637965717],[114,53,67,0.40100372383879046],[114,53,68,0.4010580068212638],[114,53,69,0.4011001237540432],[114,53,70,0.40113175476620405],[114,53,71,0.40115454577400733],[114,53,72,0.4011701050919583],[114,53,73,0.4011799999867625],[114,53,74,0.4011857531741788],[114,53,75,0.4011888392587696],[114,53,76,0.40119068111654665],[114,53,77,0.4011926462205171],[114,53,78,0.4011960429091222],[114,53,79,0.40120211659757726],[114,54,64,0.3997106983253014],[114,54,65,0.3998457716615885],[114,54,66,0.3999632780630062],[114,54,67,0.4000649722300571],[114,54,68,0.4001525848796823],[114,54,69,0.4002278195491934],[114,54,70,0.4002923493434097],[114,54,71,0.4003478136249957],[114,54,72,0.40039581464800067],[114,54,73,0.4004379141345983],[114,54,74,0.40047562979503076],[114,54,75,0.4005104317907522],[114,54,76,0.400543739140773],[114,54,77,0.4005769160712088],[114,54,78,0.4006112683080274],[114,54,79,0.4006480393130005],[114,55,64,0.3985089151132026],[114,55,65,0.3986776300896589],[114,55,66,0.39882862839435157],[114,55,67,0.3989636560490495],[114,55,68,0.3990844354647735],[114,55,69,0.39919266226714906],[114,55,70,0.39929000206527976],[114,55,71,0.399378087164133],[114,55,72,0.39945851322043824],[114,55,73,0.3995328358420989],[114,55,74,0.3996025671311203],[114,55,75,0.3996691721700488],[114,55,76,0.39973406545192447],[114,55,77,0.3997986072537493],[114,55,78,0.39986409995346694],[114,55,79,0.39993178429045867],[114,56,64,0.397144794036439],[114,56,65,0.39734685861620256],[114,56,66,0.3975310956169042],[114,56,67,0.3976992420080955],[114,56,68,0.3978530114887999],[114,56,69,0.397994091334138],[114,56,70,0.3981241391857909],[114,56,71,0.39824477978629513],[114,56,72,0.3983576016571718],[114,56,73,0.3984641537208861],[114,56,74,0.3985659418666454],[114,56,75,0.3986644254600254],[114,56,76,0.39876101379643125],[114,56,77,0.3988570624983925],[114,56,78,0.39895386985669046],[114,56,79,0.3990526731153191],[114,57,64,0.39561795564903046],[114,57,65,0.39585306316038443],[114,57,66,0.3960702713024149],[114,57,67,0.3962713076200867],[114,57,68,0.396457876695132],[114,57,69,0.39663165701378267],[114,57,70,0.39679429777867115],[114,57,71,0.39694741566488784],[114,57,72,0.39709259152020115],[114,57,73,0.3972313670094326],[114,57,74,0.39736524120300054],[114,57,75,0.39749566710961637],[114,57,76,0.3976240481531431],[114,57,77,0.3977517345936165],[114,57,78,0.3978800198924221],[114,57,79,0.3980101370216376],[114,58,64,0.3939281311119655],[114,58,65,0.3941959603723153],[114,58,66,0.3944458578521567],[114,58,67,0.3946795413008819],[114,58,68,0.39489870577870306],[114,58,69,0.39510502054532304],[114,58,70,0.39530012589310826],[114,58,71,0.39548562992475433],[114,58,72,0.39566310527544657],[114,58,73,0.39583408577951074],[114,58,74,0.39600006308156716],[114,58,75,0.3961624831921706],[114,58,76,0.3963227429879476],[114,58,77,0.3964821866562289],[114,58,78,0.3966421020841756],[114,58,79,0.39680371719240015],[114,59,64,0.3920751621876984],[114,59,65,0.3923753776459823],[114,59,66,0.39265766852803263],[114,59,67,0.3929237424183275],[114,59,68,0.3931752844526815],[114,59,69,0.39341395422767467],[114,59,70,0.39364138265492604],[114,59,71,0.393859168760201],[114,59,72,0.3940688764273554],[114,59,73,0.3942720310871099],[114,59,74,0.39447011635067214],[114,59,75,0.39466457058818316],[114,59,76,0.39485678345200403],[114,59,77,0.39504809234483995],[114,59,78,0.3952397788326967],[114,59,79,0.39543306500267794],[114,60,64,0.3900590011825185],[114,60,65,0.3903912530796004],[114,60,66,0.3907056274306677],[114,60,67,0.39100382128784733],[114,60,68,0.39128750946131025],[114,60,69,0.3915583414492706],[114,60,70,0.39181793831317835],[114,60,71,0.3920678894980931],[114,60,72,0.3923097495982458],[114,60,73,0.3925450350677764],[114,60,74,0.39277522087667044],[114,60,75,0.3930017371118664],[114,60,76,0.3932259655235544],[114,60,77,0.39344923601665716],[114,60,78,0.39367282308749696],[114,60,79,0.39389794220564683],[114,61,64,0.3878797108368796],[114,61,65,0.3882436353834693],[114,61,66,0.38858976942456974],[114,61,67,0.38891979911468044],[114,61,68,0.38923538853899414],[114,61,69,0.3895381766637665],[114,61,70,0.3898297742322385],[114,61,71,0.3901117606060943],[114,61,72,0.39038568055246187],[114,61,73,0.390653040976447],[114,61,74,0.39091530759922016],[114,61,75,0.3911739015816322],[114,61,76,0.3914301960933722],[114,61,77,0.3916855128276708],[114,61,78,0.39194111846153645],[114,61,79,0.3921982210615399],[114,62,64,0.3855374641636564],[114,62,65,0.38593268373530404],[114,62,66,0.38631024001032754],[114,62,67,0.38667180788273925],[114,62,68,0.38701904031560463],[114,62,69,0.3873535653115786],[114,62,70,0.38767698282935653],[114,62,71,0.38799086164602387],[114,62,72,0.388296736165313],[114,62,73,0.3885961031717505],[114,62,74,0.3888904185307283],[114,62,75,0.38918109383445704],[114,62,76,0.3894694929938327],[114,62,77,0.3897569287762034],[114,62,78,0.3900446592890394],[114,62,79,0.3903338844095068],[114,63,64,0.3830325442342615],[114,63,65,0.38345866758297337],[114,63,66,0.3838672951437827],[114,63,67,0.3842600901900214],[114,63,68,0.38463869416793983],[114,63,69,0.38500472368719474],[114,63,70,0.3853597674576206],[114,63,71,0.385705383172272],[114,63,72,0.3860430943367378],[114,63,73,0.3863743870447204],[114,63,74,0.3867007066999039],[114,63,75,0.3870234546840784],[114,63,76,0.38734398497154077],[114,63,77,0.3876636006897724],[114,63,78,0.38798355062638273],[114,63,79,0.3883050256823313],[114,64,64,0.38036534391274274],[114,64,65,0.3808219663947641],[114,64,66,0.38126130100228955],[114,64,67,0.3816849990306923],[114,64,68,0.38209469001745167],[114,64,69,0.38249197875236696],[114,64,70,0.38287844223443646],[114,64,71,0.3832556265753773],[114,64,72,0.38362504384980034],[114,64,73,0.3839881688920186],[114,64,74,0.3843464360395287],[114,64,75,0.38470123582311644],[114,64,76,0.3850539116036235],[114,64,77,0.38540575615535855],[114,64,78,0.38575800819615774],[114,64,79,0.3861118488640953],[114,65,64,0.37753636553776115],[114,65,65,0.3780230693570726],[114,65,66,0.37849273369796677],[114,65,67,0.37894699752374095],[114,65,68,0.3793874780741455],[114,65,69,0.3798157678950953],[114,65,70,0.3802334318154265],[114,65,71,0.38064200387068153],[114,65,72,0.38104298417392635],[114,65,73,0.381437835733589],[114,65,74,0.38182798121835004],[114,65,75,0.38221479966904326],[114,65,76,0.38259962315759616],[114,65,77,0.3829837333930024],[114,65,78,0.38336835827432153],[114,65,79,0.3837546683907158],[114,66,64,0.37454622055253295],[114,66,65,0.3750625750196074],[114,66,66,0.3755621789380248],[114,66,67,0.3760466585882913],[114,66,68,0.3765176185267362],[114,66,69,0.3769766386344793],[114,66,70,0.3774252711138355],[114,66,71,0.3778650374321335],[114,66,72,0.3782974252129601],[114,66,73,0.3787238850748096],[114,66,74,0.3791458274171807],[114,66,75,0.3795646191540673],[114,66,76,0.379981580394882],[114,66,77,0.3803979810727979],[114,66,78,0.3808150375205101],[114,66,79,0.3812339089934202],[114,67,64,0.37139562908261115],[114,67,65,0.3719411908879775],[114,67,66,0.37247033163204213],[114,67,67,0.37298466456544654],[114,67,68,0.3734857811789327],[114,67,69,0.3739752482713206],[114,67,70,0.3744546049653158],[114,67,71,0.3749253596711306],[114,67,72,0.375388986997922],[114,67,73,0.3758469246130346],[114,67,74,0.37630057004908274],[114,67,75,0.3767512774588259],[114,67,76,0.3772003543178681],[114,67,77,0.37764905807517524],[114,67,78,0.37809859275140484],[114,67,79,0.3785501054850562],[114,68,64,0.36808541946165485],[114,68,65,0.3686597329638148],[114,68,66,0.36921799544634054],[114,68,67,0.3697618067868113],[114,68,68,0.37029274503200316],[114,68,69,0.3708123634846162],[114,68,70,0.37132218773824044],[114,68,71,0.3718237126605312],[114,68,72,0.37231839932460875],[114,68,73,0.37280767188865815],[114,68,74,0.3732929144237778],[114,68,75,0.37377546769001513],[114,68,76,0.37425662586063446],[114,68,77,0.3747376331946012],[114,68,78,0.37521968065728084],[114,68,79,0.37570390248936075],[114,69,64,0.3646165277051254],[114,69,65,0.3652191252323705],[114,69,66,0.3658060823053964],[114,69,67,0.3663789850896342],[114,69,68,0.3669393978135544],[114,69,69,0.3674888598738866],[114,69,70,0.3680288828894801],[114,69,71,0.36856094770378744],[114,69,72,0.3690865013359754],[114,69,73,0.3696069538806482],[114,69,74,0.3701236753562231],[114,69,75,0.3706379925019052],[114,69,76,0.3711511855232991],[114,69,77,0.37166448478664615],[114,69,78,0.3721790674616843],[114,69,79,0.3726960541131382],[114,70,64,0.360989996931816],[114,70,65,0.36162039909748955],[114,70,66,0.36223561184019804],[114,70,67,0.3628372072784739],[114,70,68,0.3634267354524402],[114,70,69,0.3640057214472456],[114,70,70,0.36457566246556017],[114,70,71,0.36513802484910324],[114,70,72,0.36569424104921644],[114,70,73,0.36624570654645844],[114,70,74,0.36679377671927155],[114,70,75,0.36733976366165577],[114,70,76,0.36788493294989694],[114,70,77,0.368430500358333],[114,70,78,0.3689776285241572],[114,70,79,0.36952742356126533],[114,71,64,0.3572069767333801],[114,71,65,0.3578646927641342],[114,71,66,0.3585077107837107],[114,71,67,0.3591375885335596],[114,71,68,0.35975586149995564],[114,71,69,0.3603640400553756],[114,71,70,0.36096360654935156],[114,71,71,0.36155601234878076],[114,71,72,0.36214267482769547],[114,71,73,0.3627249743064781],[114,71,74,0.36330425094056523],[114,71,75,0.3638818015585806],[114,71,76,0.36445887644994],[114,71,77,0.3650366761019157],[114,71,78,0.3656163478861555],[114,71,79,0.3661989826946681],[114,72,64,0.3532687224917889],[114,72,65,0.3539532505683779],[114,72,66,0.35462361231338163],[114,72,67,0.35528135076576695],[114,72,68,0.3559279864972521],[114,72,69,0.3565650147713355],[114,72,70,0.35719390265223155],[114,72,71,0.35781608606368304],[114,72,72,0.35843296679766423],[114,72,73,0.3590459094729491],[114,72,74,0.35965623844359873],[114,72,75,0.36026523465729865],[114,72,76,0.360874132463597],[114,72,77,0.3614841163720245],[114,72,78,0.3620963177600968],[114,72,79,0.362711811531207],[114,73,64,0.34917659464460743],[114,73,65,0.34988742225476915],[114,73,66,0.3505846553405738],[114,73,67,0.35126982191811074],[114,73,68,0.35194442728886305],[114,73,69,0.3526099512161006],[114,73,70,0.3532678450516058],[114,73,71,0.3539195288127124],[114,73,72,0.3545663882096608],[114,73,73,0.3552097716232518],[114,73,74,0.35585098703285084],[114,73,75,0.3564912988946717],[114,73,76,0.3571319249703918],[114,73,77,0.35777403310608097],[114,73,78,0.35841873796144297],[114,73,79,0.3590670976893775],[114,74,64,0.34493205789828435],[114,74,65,0.34566866220125236],[114,74,66,0.34639228374712583],[114,74,67,0.34710443521393836],[114,74,68,0.3478066062825336],[114,74,69,0.34850026083001706],[114,74,70,0.3491868340739834],[114,74,71,0.3498677296674881],[114,74,72,0.35054431674477543],[114,74,73,0.3512179269177378],[114,74,74,0.35188985122316463],[114,74,75,0.35256133702070486],[114,74,76,0.35323358484159806],[114,74,77,0.35390774518815504],[114,74,78,0.3545849152839875],[114,74,79,0.3552661357749941],[114,75,64,0.340536680389368],[114,75,65,0.3412985285915634],[114,75,66,0.34204804556894497],[114,75,67,0.3427867283517446],[114,75,68,0.3435160506552657],[114,75,69,0.3442374600900926],[114,75,70,0.34495237532351536],[114,75,71,0.3456621831921406],[114,75,72,0.3463682357657003],[114,75,73,0.3470718473620327],[114,75,74,0.34777429151329564],[114,75,75,0.34847679788333263],[114,75,76,0.34918054913625085],[114,75,77,0.34988667775618876],[114,75,78,0.3505962628182748],[114,75,79,0.35131032671078366],[114,76,64,0.3359921327935317],[114,76,65,0.33677868253497883],[114,76,66,0.33755359212652386],[114,76,67,0.3383183426464855],[114,76,68,0.3390743915054659],[114,76,69,0.33982316967300347],[114,76,70,0.34056607885588797],[114,76,71,0.34130448862810947],[114,76,72,0.3420397335124498],[114,76,73,0.34277311001369337],[114,76,74,0.34350587360351703],[114,76,75,0.34423923565697934],[114,76,76,0.3449743603406666],[114,76,77,0.34571236145247664],[114,76,78,0.34645429921303894],[114,76,79,0.3472011770087807],[114,77,64,0.3313001873826222],[114,77,65,0.3321108871336379],[114,77,66,0.3329106771025886],[114,77,67,0.3337010221176099],[114,77,68,0.33448336295140646],[114,77,69,0.335259113564031],[114,77,70,0.33602965829777626],[114,77,71,0.3367963490241526],[114,77,72,0.33756050224295936],[114,77,73,0.33832339613342594],[114,77,74,0.33908626755748517],[114,77,75,0.33985030901509505],[114,77,76,0.34061666555167014],[114,77,77,0.34138643161760107],[114,77,78,0.34216064787986317],[114,77,79,0.34294029798571907],[114,78,64,0.32646271702963736],[114,78,65,0.3272970064973356],[114,78,66,0.32812115556678584],[114,78,67,0.3289366125237082],[114,78,68,0.3297448011759035],[114,78,69,0.33054711811183213],[114,78,70,0.33134492991176445],[114,78,71,0.3321395703114717],[114,78,72,0.33293233731846716],[114,78,73,0.3337244902807723],[114,78,74,0.3345172469082726],[114,78,75,0.3353117802465765],[114,78,76,0.33610921560343954],[114,78,77,0.33691062742773514],[114,78,78,0.3377170361409664],[114,78,79,0.3385294049213328],[114,79,64,0.32148169416149736],[114,79,65,0.3223390047056616],[114,79,66,0.323186982947277],[114,79,67,0.3240270603436518],[114,79,68,0.32486064341708504],[114,79,69,0.32568911102891596],[114,79,70,0.32651381160660753],[114,79,71,0.3273360603238302],[114,79,72,0.3281571362335566],[114,79,73,0.32897827935414026],[114,79,74,0.32980068770844784],[114,79,75,0.3306255143159509],[114,79,76,0.33145386413784794],[114,79,77,0.3322867909751882],[114,79,78,0.333125294320003],[114,79,79,0.3339703161594467],[114,80,64,0.3163591896598557],[114,80,65,0.3172389447177198],[114,80,66,0.3181102139494797],[114,80,67,0.3189744117044604],[114,80,68,0.3198329269054849],[114,80,69,0.3206871203380611],[114,80,70,0.32153832189306575],[114,80,71,0.3223878277628942],[114,80,72,0.32323689759108754],[114,80,73,0.32408675157540645],[114,80,74,0.32493856752442474],[114,80,75,0.3257934778675475],[114,80,76,0.32665256661852227],[114,80,77,0.32751686629242127],[114,80,78,0.3283873547760898],[114,80,79,0.3292649521520763],[114,81,64,0.3110973717098337],[114,81,65,0.3119989872293219],[114,81,66,0.3128930014218445],[114,81,67,0.3137808112557846],[114,81,68,0.3146637877473524],[114,81,69,0.3155432732645665],[114,81,70,0.31642057878520485],[114,81,71,0.3172969811086883],[114,81,72,0.3181737200219109],[114,81,73,0.319051995418986],[114,81,74,0.3199329643749824],[114,81,75,0.320817738173552],[114,81,76,0.3217073792885223],[114,81,77,0.3226028983194248],[114,81,78,0.3235052508809644],[114,81,79,0.324415334446434],[114,82,64,0.3056985045965426],[114,82,65,0.3066213894775127],[114,82,66,0.3075375951685301],[114,82,67,0.3084485009908724],[114,82,68,0.30935545975404194],[114,82,69,0.3102597950741971],[114,82,70,0.3111627986470276],[114,82,71,0.3120657274750347],[114,82,72,0.3129698010492324],[114,82,73,0.3138761984852363],[114,82,74,0.3147860556138166],[114,82,75,0.3157004620258157],[114,82,76,0.3166204580715015],[114,82,77,0.3175470318143342],[114,82,78,0.3184811159391415],[114,82,79,0.31942358461471787],[114,83,64,0.3001649474496525],[114,83,65,0.30110850399269073],[114,83,66,0.302046340709235],[114,83,67,0.3029798190142692],[114,83,68,0.30391027321773856],[114,83,69,0.3048390078570826],[114,83,70,0.3057672949846879],[114,83,71,0.30669637141022393],[114,83,72,0.3076274358978765],[114,83,73,0.3085616463184436],[114,83,74,0.309500116756377],[114,83,75,0.3104439145716599],[114,83,76,0.31139405741660187],[114,83,77,0.3123515102075203],[114,83,78,0.3133171820513111],[114,83,79,0.31429192312691645],[114,84,64,0.2944991529358878],[114,84,65,0.2954627772981988],[114,84,66,0.29642167798606645],[114,84,67,0.29737719825613923],[114,84,68,0.2983306536334006],[114,84,69,0.2992833292574477],[114,84,70,0.30023647718417196],[114,84,71,0.3011913136428038],[114,84,72,0.3021490162483335],[114,84,73,0.3031107211692776],[114,84,74,0.3040775202508692],[114,84,75,0.30505045809356757],[114,84,76,0.30603052908696227],[114,84,77,0.3070186743990481],[114,84,78,0.30801577892086585],[114,84,79,0.3090226681665249],[114,85,64,0.2887036658992973],[114,85,65,0.28968674855723986],[114,85,66,0.29066614001729496],[114,85,67,0.29164316513305344],[114,85,68,0.2926191203667695],[114,85,69,0.29359527114902806],[114,85,70,0.2945728491942988],[114,85,71,0.2955530497723369],[114,85,72,0.29653702893544587],[114,85,73,0.2975259007015675],[114,85,74,0.29852073419328284],[114,85,75,0.2995225507326137],[114,85,76,0.3005323208917041],[114,85,77,0.3015509614993561],[114,85,78,0.3025793326034162],[114,85,79,0.3036182343890266],[114,86,64,0.2827811219495827],[114,86,65,0.28378304816739397],[114,86,66,0.2847823514982779],[114,86,67,0.2857803381555277],[114,86,68,0.2867782852687283],[114,86,69,0.2877774382564495],[114,86,70,0.2887790081553149],[114,86,71,0.2897841689054039],[114,86,72,0.29079405459200325],[114,86,73,0.29180975664367326],[114,86,74,0.29283232098671164],[114,86,75,0.2938627451559067],[114,86,76,0.29490197536165585],[114,86,77,0.295950903513427],[114,86,78,0.2970103641995582],[114,86,79,0.29808113162340766],[114,87,64,0.2767342459983535],[114,87,65,0.27775439630261006],[114,87,66,0.2787730273494181],[114,87,67,0.2797914264821776],[114,87,68,0.2808108512358749],[114,87,69,0.2818325267224378],[114,87,70,0.2828576429729553],[114,87,71,0.28388735223672207],[114,87,72,0.28492276623712376],[114,87,73,0.28596495338432326],[114,87,74,0.28701493594484195],[114,87,75,0.28807368716791293],[114,87,76,0.28914212836869596],[114,87,77,0.2902211259683225],[114,87,78,0.29131148849076993],[114,87,79,0.29241396351657817],[114,88,64,0.2705658507431462],[114,88,65,0.2716036014025087],[114,88,66,0.2726409712110004],[114,88,67,0.27367922842033265],[114,88,68,0.2747196107171554],[114,88,69,0.27576332262070596],[114,88,70,0.2768115328378138],[114,88,71,0.27786537157522523],[114,88,72,0.27892592780926007],[114,88,73,0.2799942465127654],[114,88,74,0.2810713258394544],[114,88,75,0.28215811426551274],[114,88,76,0.28325550768855967],[114,88,77,0.2843643464839311],[114,88,78,0.2854854125182868],[114,88,79,0.2866194261205522],[114,89,64,0.26427883509953076],[114,89,65,0.26533355860931707],[114,89,66,0.26638907388522315],[114,89,67,0.2674466298734267],[114,89,68,0.26850744416687056],[114,89,69,0.26957270041482967],[114,89,70,0.2706435456903359],[114,89,71,0.2717210878154137],[114,89,72,0.2728063926441474],[114,89,73,0.27390048130353817],[114,89,74,0.2750043273922461],[114,89,75,0.2761188541370926],[114,89,76,0.2772449315074137],[114,89,77,0.27838337328723317],[114,89,78,0.27953493410525476],[114,89,79,0.28070030642268434],[114,90,64,0.2578761825810337],[114,90,65,0.258947248152169],[114,90,66,0.26002031172515827],[114,90,67,0.2610966027349001],[114,90,68,0.2621773184437928],[114,90,69,0.26326362136285053],[114,90,70,0.26435663663117104],[114,90,71,0.2654574493537174],[114,90,72,0.2665671018974261],[114,90,73,0.2676865911456059],[114,90,74,0.2688168657107183],[114,90,75,0.2699588231054184],[114,90,76,0.271113306871945],[114,90,77,0.27228110366982744],[114,90,78,0.27346294032191143],[114,90,79,0.27465948081871394],[114,91,64,0.2513609596270877],[114,91,65,0.25244773367897577],[114,91,66,0.2535377449708479],[114,91,67,0.25463220322881563],[114,91,68,0.25573228515659874],[114,91,69,0.2568391318678086],[114,91,70,0.2579538462770897],[114,91,71,0.259077490450071],[114,91,72,0.26021108291214873],[114,91,73,0.261355595916057],[114,91,74,0.2625119526683242],[114,91,75,0.26368102451448827],[114,91,76,0.264863628083162],[114,91,77,0.2660605223889179],[114,91,78,0.2672724058939908],[114,91,79,0.26849991352881114],[114,92,64,0.24473631387871733],[114,92,65,0.24583816053558272],[114,92,66,0.24694451603224807],[114,92,67,0.2480565701969091],[114,92,68,0.24917547895533093],[114,92,69,0.2503023617739244],[114,92,70,0.2514382990621805],[114,92,71,0.2525843295344216],[114,92,72,0.2537414475308829],[114,92,73,0.25491060029808676],[114,92,74,0.25609268522860607],[114,92,75,0.2572885470600876],[114,92,76,0.2584989750336307],[114,92,77,0.2597247000114862],[114,92,78,0.26096639155407675],[114,92,79,0.2622246549563517],[114,93,64,0.23800547240230732],[114,93,65,0.23912175399255028],[114,93,66,0.24024384771936466],[114,93,67,0.24137292333240787],[114,93,68,0.24251011576923046],[114,93,69,0.24365652260876253],[114,93,70,0.2448132014846657],[114,93,71,0.2459811674585037],[114,93,72,0.24716139035275103],[114,93,73,0.24835479204359712],[114,93,74,0.24956224371364552],[114,93,75,0.25078456306437796],[114,93,76,0.252022511488477],[114,93,77,0.25327679120197577],[114,93,78,0.25454804233623307],[114,93,79,0.2558368399897477],[114,94,64,0.23117173986129214],[114,94,65,0.23230181741940853],[114,94,66,0.23343904141942246],[114,94,67,0.23458456136046746],[114,94,68,0.23573949099078298],[114,94,69,0.23690490577123038],[114,94,70,0.23808184029918075],[114,94,71,0.23927128569272893],[114,94,72,0.24047418693525074],[114,94,73,0.2416914401802624],[114,94,74,0.24292389001668324],[114,94,75,0.2441723266943673],[114,94,76,0.24543748331000206],[114,94,77,0.24672003295333994],[114,94,78,0.2480205858137609],[114,94,79,0.24933968624718295],[114,95,64,0.22423849663559464],[114,95,65,0.22538173040620108],[114,95,66,0.22653347522089165],[114,95,67,0.22769486016504634],[114,95,68,0.2288669776058046],[114,95,69,0.23005088066522825],[114,95,70,0.231247580654343],[114,95,71,0.23245804446801574],[114,95,72,0.23368319194068246],[114,95,73,0.23492389316288653],[114,95,74,0.23618096575872807],[114,95,75,0.23745517212409098],[114,95,76,0.2387472166257439],[114,95,77,0.24005774276128278],[114,95,78,0.24138733027991321],[114,95,79,0.2427364922640872],[114,96,64,0.21720919688915],[114,96,65,0.2183649468326669],[114,96,66,0.21953060198471297],[114,96,67,0.22070727086255973],[114,96,68,0.22189602426990446],[114,96,69,0.22309789277929526],[114,96,70,0.22431386417594584],[114,96,71,0.22554488086289387],[114,96,72,0.22679183722752005],[114,96,73,0.22805557696938603],[114,96,74,0.22933689038949445],[114,96,75,0.23063651164083382],[114,96,76,0.23195511594030874],[114,96,77,0.2332933167420199],[114,96,78,0.23465166287189265],[114,96,79,0.23603063562367127],[114,97,64,0.21008736658535712],[114,97,65,0.21125499288489008],[114,97,66,0.21243394736255772],[114,97,67,0.21362531782215172],[114,97,68,0.21483015333116304],[114,97,69,0.21604946171208547],[114,97,70,0.21728420699561848],[114,97,71,0.21853530683572545],[114,97,72,0.2198036298865632],[114,97,73,0.2210899931412392],[114,97,74,0.22239515923250347],[114,97,75,0.22371983369523474],[114,97,76,0.22506466219082133],[114,97,77,0.2264302276934042],[114,97,78,0.2278170476379785],[114,97,79,0.22922557103037033],[114,98,64,0.20287660145026495],[114,98,65,0.20405546501923721],[114,98,66,0.20524710776193608],[114,98,67,0.2064525966323947],[114,98,68,0.2076729587988404],[114,98,69,0.208909179143491],[114,98,70,0.21016219772476516],[114,98,71,0.21143290720185584],[114,98,72,0.21272215022168875],[114,98,73,0.21403071676821828],[114,98,74,0.21535934147417102],[114,98,75,0.21670870089509348],[114,98,76,0.2180794107458069],[114,98,77,0.2194720230992348],[114,98,78,0.22088702354760115],[114,98,79,0.22232482832601452],[114,99,64,0.19558056488385742],[114,99,65,0.1967700278739335],[114,99,66,0.1979737482585125],[114,99,67,0.19919277201478044],[114,99,68,0.20042810425846996],[114,99,69,0.20168070675176636],[114,99,70,0.2029514953741391],[114,99,71,0.20424133755604904],[114,99,72,0.20555104967555254],[114,99,73,0.20688139441775533],[114,99,74,0.20823307809722624],[114,99,75,0.20960674794322603],[114,99,76,0.21100298934785694],[114,99,77,0.21242232307709547],[114,99,78,0.21386520244470925],[114,99,79,0.21533201044907163],[114,100,64,0.18820298581926148],[114,100,65,0.18940241212811418],[114,100,66,0.19061760045545542],[114,100,67,0.19184957568382321],[114,100,68,0.19309932073316813],[114,100,69,0.19436777407648495],[114,100,70,0.19565582721888164],[114,100,71,0.19696432214003834],[114,100,72,0.19829404870007383],[114,100,73,0.19964574200877488],[114,100,74,0.20102007975829905],[114,100,75,0.20241767951920375],[114,100,76,0.20383909599990896],[114,100,77,0.20528481826955663],[114,100,78,0.20675526694426521],[114,100,79,0.20825079133679508],[114,101,64,0.18074765652968589],[114,101,65,0.1819564123081488],[114,101,66,0.18318246028962848],[114,101,67,0.18442680415358972],[114,101,68,0.18569040449096574],[114,101,69,0.18697417632713265],[114,101,70,0.1882789866088324],[114,101,71,0.18960565165499976],[114,101,72,0.19095493457150997],[114,101,73,0.1923275426298009],[114,101,74,0.1937241246094824],[114,101,75,0.19514526810478505],[114,101,76,0.1965914967949539],[114,101,77,0.19806326767855337],[114,101,78,0.19956096827167913],[114,101,79,0.20108491377009446],[114,102,64,0.17321843038346357],[114,102,65,0.17443588454161896],[114,102,66,0.1756721857849956],[114,102,67,0.1769283164910211],[114,102,68,0.17820521479853318],[114,102,69,0.17950377213771335],[114,102,70,0.1808248307244834],[114,102,71,0.182169181019318],[114,102,72,0.18353755915049053],[114,102,73,0.18493064430170614],[114,102,74,0.18634905606423674],[114,102,75,0.1877933517534055],[114,102,76,0.18926402368953255],[114,102,77,0.19076149644330143],[114,102,78,0.192286124045547],[114,102,79,0.1938381871614822],[114,103,64,0.1656192195470177],[114,103,65,0.16684474425876294],[114,103,66,0.16809069475306004],[114,103,67,0.16935803201587307],[114,103,68,0.17064767162111943],[114,103,69,0.17196048126718155],[114,103,70,0.17329727827839536],[114,103,71,0.1746588270714658],[114,103,72,0.17604583658683148],[114,103,73,0.17745895768492653],[114,103,74,0.17889878050745855],[114,103,75,0.18036583180354926],[114,103,76,0.1818605722208465],[114,103,77,0.18338339356157374],[114,103,78,0.18493461600351135],[114,103,79,0.1865144852859293],[114,104,64,0.15795399263555332],[114,104,65,0.15918696384119557],[114,104,66,0.16044196244013942],[114,104,67,0.16171992794707124],[114,104,68,0.16302175326850932],[114,104,69,0.16434828224551257],[114,104,70,0.16570030716188228],[114,104,71,0.16707856621780148],[114,104,72,0.16848374096893637],[114,104,73,0.16991645373094572],[114,104,74,0.17137726494952304],[114,104,75,0.1728666705358088],[114,104,76,0.17438509916729072],[114,104,77,0.17593290955415142],[114,104,78,0.17751038767106048],[114,104,79,0.17911774395443264],[114,105,64,0.15022677231185688],[114,105,65,0.15146657021828064],[114,105,66,0.15273001912186024],[114,105,67,0.15401803699586963],[114,105,68,0.15533149398737828],[114,105,69,0.15667120996578304],[114,105,70,0.15803795203734322],[114,105,71,0.15943243202566482],[114,105,72,0.16085530391816],[114,105,73,0.1623071612784262],[114,105,74,0.16378853462466875],[114,105,75,0.16529988877400736],[114,105,76,0.1668416201527811],[114,105,77,0.16841405407281274],[114,105,78,0.1700174419736315],[114,105,79,0.1716519586306703],[114,106,64,0.14244163283302036],[114,106,65,0.14368764241097393],[114,106,66,0.14495894764468614],[114,106,67,0.14625644490562129],[114,106,68,0.14758098149986187],[114,106,69,0.1489333532220854],[114,106,70,0.1503143018760571],[114,106,71,0.15172451276158427],[114,106,72,0.15316461212795468],[114,106,73,0.15463516459380583],[114,106,74,0.15613667053355235],[114,106,75,0.15766956343020366],[114,106,76,0.15923420719469555],[114,106,77,0.16083089345168905],[114,106,78,0.16245983879184073],[114,106,79,0.16412118199055886],[114,107,64,0.13460269754488458],[114,107,65,0.13585430902293383],[114,107,66,0.13713288091427622],[114,107,67,0.13843928793796484],[114,107,68,0.1397743544881377],[114,107,69,0.14113885219306793],[114,107,70,0.1425334974412405],[114,107,71,0.14395894887440053],[114,107,72,0.14541580484759498],[114,107,73,0.14690460085615908],[114,107,74,0.1484258069297653],[114,107,75,0.1499798249933788],[114,107,76,0.15156698619523246],[114,107,77,0.1531875482017826],[114,107,78,0.15484169245964446],[114,107,79,0.15652952142452414],[114,108,64,0.12671413632459744],[114,108,65,0.1279707456792919],[114,108,66,0.12925599933106968],[114,108,67,0.1305707503058144],[114,108,68,0.13191580002541053],[114,108,69,0.13329189587149737],[114,108,70,0.13469972871675778],[114,108,71,0.13613993042368883],[114,108,72,0.13761307131087447],[114,108,73,0.13911965758671063],[114,108,74,0.14066012875070566],[114,108,75,0.14223485496219201],[114,108,76,0.14384413437656884],[114,108,77,0.14548819044903516],[114,108,78,0.14716716920580974],[114,108,79,0.14888113648285867],[114,109,64,0.118780162971095],[114,109,65,0.12004117241289325],[114,109,66,0.12133252817290252],[114,109,67,0.1226550615529659],[114,109,68,0.12400955095311245],[114,109,69,0.12539671943964942],[114,109,70,0.1268172322812946],[114,109,71,0.12827169445329878],[114,109,72,0.12976064810958],[114,109,73,0.13128457002281452],[114,109,74,0.13284386899261352],[114,109,75,0.13443888322161796],[114,109,76,0.13606987765963263],[114,109,77,0.13773704131575726],[114,109,78,0.13944048453851332],[114,109,79,0.1411802362639863],[114,110,64,0.11080503254329838],[114,110,65,0.11206985099779793],[114,110,66,0.11336673492445071],[114,110,67,0.11469649388010988],[114,110,68,0.11605988320410848],[114,110,69,0.11745760159032348],[114,110,70,0.11889028862778789],[114,110,71,0.12035852230979915],[114,110,72,0.1218628165115449],[114,110,73,0.12340361843619146],[114,110,74,0.12498130602956592],[114,110,75,0.12659618536326128],[114,110,76,0.12824848798628574],[114,110,77,0.1299383682452182],[114,110,78,0.13166590057286398],[114,110,79,0.13343107674543164],[114,111,64,0.10279303864642841],[114,111,65,0.10406108223045085],[114,111,66,0.10536292655390395],[114,111,67,0.10669935941765796],[114,111,68,0.10807111307231437],[114,111,69,0.10947886179388389],[114,111,70,0.11092321942851657],[114,111,71,0.11240473690623243],[114,111,72,0.1139238997236739],[114,111,73,0.115481125395826],[114,111,74,0.1170767608768335],[114,111,75,0.11871107994974617],[114,111,76,0.12038428058531409],[114,111,77,0.12209648226979058],[114,111,78,0.12384772330174215],[114,111,79,0.1256379580578837],[114,112,64,0.09474851066624468],[114,112,65,0.09601920315831508],[114,112,66,0.09732544673666954],[114,112,67,0.09866800744517867],[114,112,68,0.10004759442852296],[114,112,69,0.10146485751112694],[114,112,70,0.10292038474564996],[114,112,71,0.10441469993097974],[114,112,72,0.10594826009974934],[114,112,73,0.10752145297532517],[114,112,74,0.10913459439839457],[114,112,75,0.11078792572298424],[114,112,76,0.11248161118202893],[114,112,77,0.1142157352224541],[114,112,78,0.11599029980976483],[114,112,79,0.11780522170216462],[114,113,64,0.08667581095099464],[114,113,65,0.08794858425577096],[114,113,66,0.08925867302590279],[114,113,67,0.09060682155724326],[114,113,68,0.0919937158822392],[114,113,69,0.09341998135177204],[114,113,70,0.09488618018705508],[114,113,71,0.09639280900153357],[114,113,72,0.09794029629280948],[114,113,73,0.09952899990453595],[114,113,74,0.10115920445841442],[114,113,75,0.10283111875611933],[114,113,76,0.1045448731512773],[114,113,77,0.1063005168914582],[114,113,78,0.10809801543017206],[114,113,79,0.10993724770889973],[114,114,64,0.07857933194151162],[114,114,65,0.07985362654770078],[114,114,66,0.08116701397029064],[114,114,67,0.08252021677610527],[114,114,68,0.08391389788994813],[114,114,69,0.0853486581790025],[114,114,70,0.0868250340077854],[114,114,71,0.08834349476360281],[114,114,72,0.08990444035252765],[114,114,73,0.09150819866584575],[114,114,74,0.09315502301710149],[114,114,75,0.094845089549571],[114,114,76,0.09657849461428514],[114,114,77,0.098355252118564],[114,114,78,0.10017529084505672],[114,114,79,0.1020384517413091],[114,115,64,0.07046349324909135],[114,115,65,0.07173875868040813],[114,115,66,0.0730549061787304],[114,115,67,0.07441263661085606],[114,115,68,0.07581258980945715],[114,115,69,0.07725534215969643],[114,115,70,0.07874140415689423],[114,115,71,0.08027121793519199],[114,115,72,0.08184515476723336],[114,115,73,0.0834635125348086],[114,115,74,0.08512651317059577],[114,115,75,0.08683430007082199],[114,115,76,0.08858693547897367],[114,115,77,0.09038439784051089],[114,115,78,0.09222657912858268],[114,115,79,0.09411328214076764],[114,116,64,0.06233273868142958],[114,116,65,0.06360843394013649],[114,116,66,0.0649268113321747],[114,116,67,0.06628855006333068],[114,116,68,0.06769426690058744],[114,116,69,0.0691445137606222],[114,116,70,0.07063977526984533],[114,116,71,0.07218046629592895],[114,116,72,0.07376692945084695],[114,116,73,0.07539943256536996],[114,116,74,0.0770781661351499],[114,116,75,0.07880324073821887],[114,116,76,0.0805746844240266],[114,116,77,0.08239244007397767],[114,116,78,0.08425636273346221],[114,116,79,0.08616621691540244],[114,117,64,0.05419153321624304],[114,117,65,0.055467127218823575],[114,117,66,0.05678721314227414],[114,117,67,0.058152448580388594],[114,117,68,0.05956342727184005],[114,117,69,0.06102067669022676],[114,117,70,0.06252465560614934],[114,117,71,0.064075751621268],[114,117,72,0.06567427867435921],[114,117,73,0.06732047451931883],[114,117,74,0.06901449817524441],[114,117,75,0.07075642734841986],[114,117,76,0.072546255826332],[114,117,77,0.07438389084367236],[114,117,78,0.0762691504203255],[114,117,79,0.07820176067136253],[114,118,64,0.046044359923020695],[114,118,65,0.047319331927528574],[114,118,66,0.04864061425725852],[114,118,67,0.05000884295301933],[114,118,68,0.051424588773484325],[114,118,69,0.05288835478645959],[114,118,70,0.05440057393267056],[114,118,71,0.05596160656201371],[114,118,72,0.05757173794229686],[114,118,73,0.059231175740411146],[114,118,74,0.06094004747606813],[114,118,75,0.06269839794792881],[114,118,76,0.06450618663224672],[114,118,77,0.06636328505398797],[114,118,78,0.0682694741304204],[114,118,79,0.07022444148719664],[114,119,64,0.03789571683269066],[114,119,65,0.039169556857324594],[114,119,66,0.04049153311484516],[114,119,67,0.041862260162052134],[114,119,68,0.04328228583685073],[114,119,69,0.04475208885042026],[114,119,70,0.04627207635238806],[114,119,71,0.04784258146894965],[114,119,72,0.0494638608139617],[114,119,73,0.051136091972948494],[114,119,74,0.05285937096015986],[114,119,75,0.05463370964850145],[114,119,76,0.05645903317246398],[114,119,77,0.058335177304012775],[114,119,78,0.06026188580142877],[114,119,79,0.06223880773112839],[114,120,64,0.02975011375499992],[114,120,65,0.031022322987447504],[114,120,66,0.03234450074197043],[114,120,67,0.03371724017027489],[114,120,68,0.03514106625962976],[114,120,69,0.03661643342562504],[114,120,70,0.03814372307841213],[114,120,71,0.039723241162373024],[114,120,72,0.041355215669240886],[114,120,73,0.04303979412461445],[114,120,74,0.044777041048003674],[114,120,75,0.04656693538622736],[114,120,76,0.0484093679202896],[114,120,77,0.050304138645697105],[114,120,78,0.052250954126206894],[114,120,79,0.05424942482103379],[114,121,64,0.02161206904401969],[114,121,65,0.022882160241119887],[114,121,66,0.024204057501757414],[114,121,67,0.025578332661365222],[114,121,68,0.027005487937585337],[114,121,69,0.02848595352330674],[114,121,70,0.030020085153664777],[114,121,71,0.0316081616469423],[114,121,72,0.03325038241939987],[114,121,73,0.03494686497397537],[114,121,74,0.036697642362991556],[114,121,75,0.03850266062469193],[114,121,76,0.040361776193730714],[114,121,77,0.04227475328558067],[114,121,78,0.0442412612548469],[114,121,79,0.046260871927517766],[114,122,64,0.013486106311569435],[114,122,65,0.014753604188836866],[114,122,66,0.016074749787512554],[114,122,67,0.0174500937254381],[114,122,68,0.018880115542478204],[114,122,69,0.020365221293539182],[114,122,70,0.021905741116019783],[114,122,71,0.02350192677163654],[114,122,72,0.02515394916265179],[114,122,73,0.026861895822441806],[114,122,74,0.028625768380546146],[114,122,75,0.03044548000201691],[114,122,76,0.0323208528011959],[114,122,77,0.03425161522987891],[114,122,78,0.03623739943986298],[114,122,79,0.03827773861989775],[114,123,64,0.005376751088352394],[114,123,65,0.006641192698913501],[114,123,66,0.00796112666354426],[114,123,67,0.009337082490991355],[114,123,68,0.010769517145992613],[114,123,69,0.012258812641982142],[114,123,70,0.013805273608694657],[114,123,71,0.015409124834615207],[114,123,72,0.017070508784296112],[114,123,73,0.018789483090484005],[114,123,74,0.020566018021197507],[114,123,75,0.022399993921571715],[114,123,76,0.024291198630598476],[114,123,77,0.026239324872724124],[114,123,78,0.02824396762429493],[114,123,79,0.030304621454879388],[114,124,64,-0.002711472566784112],[114,124,65,-0.0014505374643006275],[114,124,66,-1.3226354678269603E-4],[114,124,67,0.0012438577036728016],[114,124,68,0.0026782607900774358],[114,124,69,0.004171303792654513],[114,124,70,0.005723265936307731],[114,124,71,0.007334345133394982],[114,124,72,0.009004655501840042],[114,124,73,0.010734224858512609],[114,124,74,0.012522992188026438],[114,124,75,0.014370805086765914],[114,124,76,0.016277417182274823],[114,124,77,0.01824248552796448],[114,124,78,0.020265567973136167],[114,124,79,0.02234612050834106],[114,125,64,-0.010774045509667485],[114,125,65,-0.0095170540947348],[114,125,66,-0.008200876725962314],[114,125,67,-0.0068250257483438714],[114,125,68,-0.005389088996500702],[114,125,69,-0.003892732203459648],[114,125,70,-0.002335701433605064],[114,125,71,-7.178255398648803E-4],[114,125,72,9.609813548976387E-4],[114,125,73,0.002700717352222437],[114,125,74,0.004501290248269618],[114,125,75,0.0063625149797224],[114,125,76,0.008284111045513076],[114,125,77,0.010265699904328462],[114,125,78,0.012306802347886947],[114,125,79,0.014406835850016786],[114,126,64,-0.018806457005908994],[114,126,65,-0.017553833051658585],[114,126,66,-0.01624017648044096],[114,126,67,-0.014865020362577808],[114,126,68,-0.013427974735603254],[114,126,69,-0.011928729014194117],[114,126,70,-0.010367054423820798],[114,126,71,-0.008742806458173324],[114,126,72,-0.007055927360343106],[114,126,73,-0.005306448627813487],[114,126,74,-0.003494493541122634],[114,126,75,-0.0016202797163813454],[114,126,76,3.158783184864511E-4],[114,126,77,0.0023135665237358216],[114,126,78,0.004372268724022965],[114,126,79,0.0064913639608801255],[114,127,64,-0.02680420827788671],[114,127,65,-0.025556361819068008],[114,127,66,-0.02424563771147603],[114,127,67,-0.022871589603644993],[114,127,68,-0.021433849590748733],[114,127,69,-0.019932130625945954],[114,127,70,-0.01836622895499629],[114,127,71,-0.016736026574205032],[114,127,72,-0.015041493711668297],[114,127,73,-0.013282691331880647],[114,127,74,-0.011459773663561656],[114,127,75,-0.00957299075088791],[114,127,76,-0.007622691028000506],[114,127,77,-0.005609323916823894],[114,127,78,-0.003533442448209523],[114,127,79,-0.001395705906372613],[114,128,64,-0.034762816103810934],[114,128,65,-0.033520143117608814],[114,128,66,-0.032212750238963805],[114,128,67,-0.030840211538050055],[114,128,68,-0.02940218101193459],[114,128,69,-0.027898394997597775],[114,128,70,-0.02632867460777555],[114,128,71,-0.024692928189686936],[114,128,72,-0.022991153806614095],[114,128,73,-0.02122344174240287],[114,128,74,-0.019389977028734684],[114,128,75,-0.017491041995359002],[114,128,76,-0.01552701884315455],[114,128,77,-0.013498392240059442],[114,128,78,-0.011405751939877029],[114,128,79,-0.009249795423933338],[114,129,64,-0.04267781646907265],[114,129,65,-0.041440698569236545],[114,129,66,-0.040137022478445195],[114,129,67,-0.03876638252257081],[114,129,68,-0.03732845443444921],[114,129,69,-0.03582299776881814],[114,129,70,-0.03424985833964245],[114,129,71,-0.032608970679880334],[114,129,72,-0.030900360523664516],[114,129,73,-0.029124147310962134],[114,129,74,-0.027280546714564147],[114,129,75,-0.02536987318959849],[114,129,76,-0.02339254254542944],[114,129,77,-0.021349074539984803],[114,129,78,-0.019240095496520615],[114,129,79,-0.017066340942795022],[114,130,64,-0.05054476826947513],[114,130,65,-0.04931357241421086],[114,130,66,-0.04801398517087585],[114,130,67,-0.0466456209458333],[114,130,68,-0.04520817703127733],[114,130,69,-0.04370143602233412],[114,130,70,-0.042125268256110404],[114,130,71,-0.040479634272751475],[114,130,72,-0.03876458729847665],[114,130,73,-0.0369802757506591],[114,130,74,-0.03512694576480191],[114,130,75,-0.033204943743599724],[114,130,76,-0.031214718927952467],[114,130,77,-0.029156825989973267],[114,130,78,-0.027031927647997556],[114,130,79,-0.024840797303565143],[114,131,64,-0.05835925706654094],[114,131,65,-0.05713433528062356],[114,131,66,-0.055839195165370614],[114,131,67,-0.05447347102327005],[114,131,68,-0.05303688151929087],[114,131,69,-0.05152923210037674],[114,131,70,-0.04995041743645623],[114,131,71,-0.048300423883032684],[114,131,72,-0.04657933196532327],[114,131,73,-0.04478731888401166],[114,131,74,-0.042924661042465395],[114,131,75,-0.04099173659561217],[114,131,76,-0.0389890280203381],[114,131,77,-0.03691712470744768],[114,131,78,-0.03477672557519784],[114,131,79,-0.03256864170437457],[114,132,64,-0.06611689889510652],[114,132,65,-0.06489858800666126],[114,132,66,-0.06360823925511627],[114,132,67,-0.06224550664567374],[114,132,68,-0.06081013001943403],[114,132,69,-0.05930193747550261],[114,132,70,-0.05772084781419129],[114,132,71,-0.05606687300137392],[114,132,72,-0.05434012065396554],[114,132,73,-0.052540796546593715],[114,132,74,-0.05066920713930989],[114,132,75,-0.048725762126533345],[114,132,76,-0.04671097700709448],[114,132,77,-0.04462547567541486],[114,132,78,-0.042469993033840026],[114,132,79,-0.04024537762608571],[114,133,64,-0.07381334412279333],[114,133,65,-0.07260196551520492],[114,133,66,-0.07131673806605765],[114,133,67,-0.06995733528093767],[114,133,68,-0.0685235179704976],[114,133,69,-0.06701513667538994],[114,133,70,-0.06543213411187931],[114,133,71,-0.06377454763818657],[114,133,72,-0.06204251174154318],[114,133,73,-0.06023626054601461],[114,133,74,-0.05835613034094578],[114,133,75,-0.056402562130223766],[114,133,76,-0.05437610420221828],[114,133,77,-0.052277414720442894],[114,133,78,-0.05010726433494561],[114,133,79,-0.047866538814401394],[114,134,64,-0.08144428136156467],[114,134,65,-0.08024014074096308],[114,134,66,-0.07896034999855367],[114,134,67,-0.07760460192918661],[114,134,68,-0.07617267809668449],[114,134,69,-0.07466445126180876],[114,134,70,-0.07307988783048947],[114,134,71,-0.07141905032237827],[114,134,72,-0.06968209985969642],[114,134,73,-0.06786929867643898],[114,134,74,-0.06598101264779088],[114,134,75,-0.06401771383994481],[114,134,76,-0.061979983080185264],[114,134,77,-0.059868512547280206],[114,134,78,-0.057684108382191956],[114,134,79,-0.05542769331907316],[114,135,64,-0.0890054414315608],[114,135,65,-0.0878088286103405],[114,135,66,-0.0865347752222036],[114,135,67,-0.08518299313149491],[114,135,68,-0.0837532844291653],[114,135,69,-0.08224554386396488],[114,135,70,-0.08065976129349539],[114,135,71,-0.07899602415517681],[114,135,72,-0.07725451995710231],[114,135,73,-0.07543553878884424],[114,135,74,-0.07353947585206444],[114,135,75,-0.07156683401111852],[114,135,76,-0.06951822636352167],[114,135,77,-0.06739437883031463],[114,135,78,-0.06519613276634106],[114,135,79,-0.06292444759040428],[114,136,64,-0.09649260137681326],[114,136,65,-0.09530379007363676],[114,136,66,-0.09403575972344236],[114,136,67,-0.0926882410317953],[114,136,68,-0.0912610563812215],[114,136,69,-0.0897541222658167],[114,136,70,-0.08816745174530982],[114,136,71,-0.08650115691864313],[114,136,72,-0.08475545141703911],[114,136,73,-0.08293065291661761],[114,136,74,-0.08102718567041689],[114,136,75,-0.07904558306000875],[114,136,76,-0.07698649016657355],[114,136,77,-0.0748506663614743],[114,136,78,-0.07263898791634515],[114,136,79,-0.07035245063265361],[114,137,64,-0.10390158853305098],[114,137,65,-0.10272083618979344],[114,137,66,-0.10145909940611586],[114,137,67,-0.1001161274921808],[114,137,68,-0.0986917628771885],[114,137,69,-0.0971859435475746],[114,137,70,-0.09559870550427019],[114,137,71,-0.09393018523908536],[114,137,72,-0.09218062223018109],[114,137,73,-0.09035036145670106],[114,137,74,-0.08843985593241022],[114,137,75,-0.08644966925853481],[114,137,76,-0.08438047819566752],[114,137,77,-0.08223307525477819],[114,137,78,-0.08000837130734095],[114,137,79,-0.0777073982145452],[114,138,64,-0.11122828464777212],[114,138,65,-0.1100558322638564],[114,138,66,-0.10880064424521196],[114,138,67,-0.10746248826178839],[114,138,68,-0.10604122653537618],[114,138,69,-0.10453681828156058],[114,138,70,-0.10294932217035146],[114,138,71,-0.10127889880554752],[114,138,72,-0.0995258132228023],[114,138,73,-0.09769043740646155],[114,138,74,-0.09577325282502058],[114,138,75,-0.09377485298539212],[114,138,76,-0.09169594600585418],[114,138,77,-0.08953735720771416],[114,138,78,-0.08730003172570289],[114,138,79,-0.08498503713706285],[114,139,64,-0.11846863005218733],[114,139,65,-0.1173047020367678],[114,139,66,-0.11605630249335186],[114,139,67,-0.1147232171988537],[114,139,68,-0.11330532790456638],[114,139,69,-0.11180261478203324],[114,139,70,-0.11021515888720934],[114,139,71,-0.10854314464297932],[114,139,72,-0.1067868623399928],[114,139,73,-0.10494671065589123],[114,139,74,-0.10302319919277292],[114,139,75,-0.10101695103308628],[114,139,76,-0.0989287053138238],[114,139,77,-0.09675931981904873],[114,139,78,-0.09450977359076995],[114,139,79,-0.09218116955813194],[114,140,64,-0.12561862788537148],[114,140,65,-0.12446343192781428],[114,140,66,-0.12322204494038203],[114,140,67,-0.12189427054629032],[114,140,68,-0.1204800097544323],[114,140,69,-0.11897926340931142],[114,140,70,-0.11739213465889153],[114,140,71,-0.11571883144042483],[114,140,72,-0.11395966898422893],[114,140,73,-0.1121150723354748],[114,140,74,-0.1101855788938404],[114,140,75,-0.10817184097121835],[114,140,76,-0.10607462836734838],[114,140,77,-0.10389483096340657],[114,140,78,-0.10163346133357265],[114,140,79,-0.09929165737453027],[114,141,64,-0.13267434837037184],[114,141,65,-0.1315280753294925],[114,141,66,-0.13029390922580775],[114,141,67,-0.12897167126052633],[114,141,68,-0.12756128141961887],[114,141,69,-0.12606276092795088],[114,141,70,-0.12447623472096503],[114,141,71,-0.12280193393397565],[114,141,72,-0.1210401984090389],[114,141,73,-0.11919147921947071],[114,141,74,-0.11725634121185924],[114,141,75,-0.11523546556576603],[114,141,76,-0.1131296523709805],[114,141,77,-0.11093982322236695],[114,141,78,-0.10866702383231619],[114,141,79,-0.10631242666076912],[114,142,64,-0.1396319331426038],[114,142,65,-0.13849475695510716],[114,142,66,-0.13726800420440743],[114,142,67,-0.13595151339394285],[114,142,68,-0.13454522319782447],[114,142,69,-0.13304917491929757],[114,142,70,-0.13146351496639241],[114,142,71,-0.12978849734482245],[114,142,72,-0.12802448616810003],[114,142,73,-0.12617195818493931],[114,142,74,-0.12423150532378935],[114,142,75,-0.12220383725469575],[114,142,76,-0.12008978396835657],[114,142,77,-0.11789029837240617],[114,142,78,-0.11560645890494614],[114,142,79,-0.11323947216528263],[114,143,64,-0.14648759963014057],[114,143,65,-0.14535967723872434],[114,143,66,-0.1441405143646287],[114,143,67,-0.14282996653050894],[114,143,68,-0.1414279908014816],[114,143,69,-0.1399346482480328],[114,143,70,-0.1383501064257595],[114,143,71,-0.13667464187200817],[114,143,72,-0.13490864261937274],[114,143,73,-0.13305261072612562],[114,143,74,-0.13110716482342755],[114,143,75,-0.12907304267950992],[114,143,76,-0.12695110378069618],[114,143,77,-0.12474233192929851],[114,143,78,-0.12244783785840574],[114,143,79,-0.12006886186352561],[114,144,64,-0.1532376454860921],[114,144,65,-0.15211911678766277],[114,144,66,-0.15090770429996392],[114,144,67,-0.1496032802748184],[114,144,68,-0.14820581986323966],[114,144,69,-0.14671540358289492],[114,144,70,-0.14513221980205326],[114,144,71,-0.14345656724008282],[114,144,72,-0.14168885748446336],[114,144,73,-0.1398296175243835],[114,144,74,-0.13787949230076613],[114,144,75,-0.13583924727292407],[114,144,76,-0.13370977100170456],[114,144,77,-0.1314920777491626],[114,144,78,-0.12918731009477868],[114,144,79,-0.12679674156818244],[114,145,64,-0.15987845307323678],[114,145,65,-0.15876944088769296],[114,145,66,-0.1575659232334664],[114,145,67,-0.15626778879468295],[114,145,68,-0.1548750304954064],[114,145,69,-0.15338774797175314],[114,145,70,-0.15180615006015208],[114,145,71,-0.15013055730181635],[114,145,72,-0.14836140446338664],[114,145,73,-0.1464992430738189],[114,145,74,-0.14454474397736528],[114,145,75,-0.14249869990284003],[114,145,76,-0.14036202804903442],[114,145,77,-0.13813577268632504],[114,145,78,-0.13582110777448086],[114,145,79,-0.13341933959663976],[114,146,64,-0.1664064940005603],[114,146,65,-0.165307104060597],[114,146,66,-0.16411160959506588],[114,146,67,-0.1628199154169454],[114,146,68,-0.16143203190300826],[114,146,69,-0.15994807747067497],[114,146,70,-0.15836828107068346],[114,146,71,-0.15669298469563342],[114,146,72,-0.15492264590437232],[114,146,73,-0.15305784036229308],[114,146,74,-0.1510992643973894],[114,146,75,-0.14904773757226586],[114,146,76,-0.14690420527196435],[114,146,77,-0.14466974130764865],[114,146,78,-0.14234555053615716],[114,146,79,-0.1399329714953914],[114,147,64,-0.17281833371187916],[114,147,65,-0.17172865467426635],[114,147,66,-0.17054129565185605],[114,147,67,-0.16925617727668174],[114,147,68,-0.16787332705064284],[114,147,69,-0.1663928818271777],[114,147,70,-0.16481509030842534],[114,147,71,-0.16314031555793707],[114,147,72,-0.16136903752890408],[114,147,73,-0.1595018556079716],[114,147,74,-0.15753949117448474],[114,147,75,-0.15548279017536426],[114,147,76,-0.15333272571547174],[114,147,77,-0.15109040066350865],[114,147,78,-0.14875705027345887],[114,147,79,-0.14633404482153867],[114,148,64,-0.17911063612671152],[114,148,65,-0.17803073960549987],[114,148,66,-0.17685161219151924],[114,148,67,-0.1755731900199592],[114,148,68,-0.17419551738328853],[114,148,69,-0.17271874921781505],[114,148,70,-0.17114315360541466],[114,148,71,-0.16946911429049272],[114,148,72,-0.1676971332121434],[114,148,73,-0.16582783305157855],[114,148,74,-0.16386195979466722],[114,148,75,-0.16180038530978857],[114,148,76,-0.1596441099408602],[114,148,77,-0.15739426511557408],[114,148,78,-0.1550521159688638],[114,148,79,-0.15261906398156067],[114,149,64,-0.18528016833306526],[114,149,65,-0.18421010895517465],[114,149,66,-0.1830392932585594],[114,149,67,-0.18176767255982162],[114,149,68,-0.18039530760074085],[114,149,69,-0.17892237103977726],[114,149,70,-0.17734914995843287],[114,149,71,-0.17567604838253725],[114,149,72,-0.17390358981841703],[114,149,73,-0.1720324198040265],[114,149,74,-0.1700633084748785],[114,149,75,-0.16799715314497765],[114,149,76,-0.16583498090261573],[114,149,77,-0.16357795122106888],[114,149,78,-0.16122735858421255],[114,149,79,-0.15878463512701502],[114,150,64,-0.19132380533230364],[114,150,65,-0.19026362081594483],[114,150,66,-0.18910118094349926],[114,150,67,-0.187836451885658],[114,150,68,-0.18646951048583538],[114,150,69,-0.18500054675666056],[114,150,70,-0.1834298663910302],[114,150,71,-0.18175789328777603],[114,150,72,-0.17998517209192022],[114,150,73,-0.17811237074958197],[114,150,74,-0.1761402830773865],[114,150,75,-0.17406983134656995],[114,150,76,-0.17190206888164639],[114,150,77,-0.16963818267367103],[114,150,78,-0.16727949600811853],[114,150,79,-0.1648274711073382],[114,151,64,-0.19723853483626053],[114,151,65,-0.19618824609264662],[114,151,66,-0.19503423022521948],[114,151,67,-0.19377646792613035],[114,151,68,-0.1924150517866282],[114,151,69,-0.19095018879857995],[114,151,70,-0.18938220287025642],[114,151,71,-0.18771153735643897],[114,151,72,-0.18593875760281653],[114,151,73,-0.1840645535047406],[114,151,74,-0.18208974208018525],[114,151,75,-0.1800152700571096],[114,151,76,-0.17784221647508436],[114,151,77,-0.17557179530122102],[114,151,78,-0.17320535806042225],[114,151,79,-0.17074439647990902],[114,152,64,-0.20302146211626726],[114,152,65,-0.2019810733750672],[114,152,66,-0.20083551386609855],[114,152,67,-0.19958477846532063],[114,152,68,-0.19822897515219995],[114,152,69,-0.19676832751628548],[114,152,70,-0.19520317727776615],[114,152,71,-0.19353398682205614],[114,152,72,-0.19176134174838777],[114,152,73,-0.18988595343247072],[114,152,74,-0.18790866160307174],[114,152,75,-0.18583043693270507],[114,152,76,-0.18365238364230374],[114,152,77,-0.18137574211990304],[114,152,78,-0.17900189155335644],[114,152,79,-0.17653235257704292],[114,153,64,-0.2086698149042766],[114,153,65,-0.20763931386326107],[114,153,66,-0.20650222736013435],[114,153,67,-0.2052585641122805],[114,153,68,-0.20390844712226108],[114,153,69,-0.20245211618946912],[114,153,70,-0.20088993043547732],[114,153,71,-0.1992223708431411],[114,153,72,-0.1974500428094238],[114,153,73,-0.19557367871201237],[114,153,74,-0.1935941404895707],[114,153,75,-0.19151242223582532],[114,153,76,-0.1893296528073497],[114,153,77,-0.18704709844508316],[114,153,78,-0.184666165409602],[114,153,79,-0.18218840263010028],[114,154,64,-0.21418094834620371],[114,154,65,-0.21316030634554406],[114,154,66,-0.21203169393418209],[114,154,67,-0.21079513332411115],[114,154,68,-0.20945076217069125],[114,154,69,-0.20799883608938396],[114,154,70,-0.2064397311859123],[114,154,71,-0.20477394659990256],[114,154,72,-0.20300210706197552],[114,154,73,-0.2011249654643551],[114,154,74,-0.19914340544484388],[114,154,75,-0.1970584439843578],[114,154,76,-0.19487123401788853],[114,154,77,-0.19258306705892625],[114,154,78,-0.19019537583736246],[114,154,79,-0.18770973695083182],[114,155,64,-0.21955235000720963],[114,155,65,-0.2185415222288769],[114,155,66,-0.21742136960201464],[114,155,67,-0.21619192748229077],[114,155,68,-0.2148533478027227],[114,155,69,-0.21340590159549444],[114,155,70,-0.21184998152693402],[114,155,71,-0.21018610444570485],[114,155,72,-0.20841491394418776],[114,155,73,-0.20653718293311207],[114,155,74,-0.20455381622929036],[114,155,75,-0.20246585315664822],[114,155,76,-0.20027447016041577],[114,155,77,-0.19798098343451653],[114,155,78,-0.19558685156217204],[114,155,79,-0.19309367816968004],[114,156,64,-0.22478164492906594],[114,156,65,-0.22378057062178636],[114,156,66,-0.2226688482713577],[114,156,67,-0.22144652602238724],[114,156,68,-0.220113769705916],[114,156,69,-0.2186708653663051],[114,156,70,-0.21711822180102813],[114,156,71,-0.21545637311341959],[114,156,72,-0.21368598127835736],[114,156,73,-0.21180783872093634],[114,156,74,-0.2098228709079929],[114,156,75,-0.20773213895266163],[114,156,76,-0.20553684223184487],[114,156,77,-0.20323832101661565],[114,156,78,-0.2008380591155844],[114,156,79,-0.19833768653118078],[114,157,64,-0.22986660073973886],[114,157,65,-0.2288752034699575],[114,157,66,-0.22777186690403473],[114,157,67,-0.2265566516173081],[114,157,68,-0.22522973695506898],[114,157,69,-0.22379142356449933],[114,157,70,-0.22224213593926345],[114,157,71,-0.22058242497680947],[114,157,72,-0.21881297054835502],[114,157,73,-0.2169345840816168],[114,157,74,-0.21494821115613882],[114,157,75,-0.2128549341114091],[114,157,76,-0.21065597466763497],[114,157,77,-0.2083526965592074],[114,157,78,-0.2059466081808784],[114,157,79,-0.20343936524660422],[114,158,64,-0.23480513281491355],[114,158,65,-0.23382332074422418],[114,158,66,-0.23272831072893974],[114,158,67,-0.23152017541378744],[114,158,68,-0.2301991072707681],[114,158,69,-0.22876542113611187],[114,158,70,-0.22721955675965055],[114,158,71,-0.22556208136665667],[114,158,72,-0.22379369223212708],[114,158,73,-0.2219152192675684],[114,158,74,-0.2199276276201414],[114,158,75,-0.21783202028435156],[114,158,76,-0.21562964072615953],[114,158,77,-0.21332187551953719],[114,158,78,-0.2109102569954977],[114,158,79,-0.20839646590354954],[114,159,64,-0.239595309491615],[114,159,65,-0.23862297568110247],[114,159,66,-0.23753621850799722],[114,159,67,-0.2363351223222877],[114,159,68,-0.23501989233175136],[114,159,69,-0.23359085714389216],[114,159,70,-0.2320484713200588],[114,159,71,-0.23039331794180196],[114,159,72,-0.22862611118943732],[114,159,73,-0.22674769893288194],[114,159,74,-0.22475906533461343],[114,159,75,-0.2226613334649451],[114,159,76,-0.22045576792948574],[114,159,77,-0.21814377750881264],[114,159,78,-0.21572691781038678],[114,159,79,-0.21320689393265713],[114,160,64,-0.24423535733401902],[114,160,65,-0.24327238007597463],[114,160,66,-0.2421937878552004],[114,160,67,-0.2409996763603902],[114,160,68,-0.23969026314116604],[114,160,69,-0.2382658901549478],[114,160,70,-0.2367270263257819],[114,160,71,-0.23507427011518023],[114,160,72,-0.23330835210494105],[114,160,73,-0.23143013759201858],[114,160,74,-0.22944062919529085],[114,160,75,-0.2273409694744155],[114,160,76,-0.22513244356064932],[114,160,77,-0.22281648179965297],[114,160,78,-0.22039466240631167],[114,160,79,-0.21786871413152575],[114,161,64,-0.24872366645123467],[114,161,65,-0.24776990962869305],[114,161,66,-0.24669938060851293],[114,161,67,-0.245512186049474],[114,161,68,-0.2442085554465102],[114,161,69,-0.242788843682457],[114,161,70,-0.24125353359153612],[114,161,71,-0.23960323853463916],[114,161,72,-0.23783870498637338],[114,161,73,-0.23596081513393874],[114,161,74,-0.23397058948768634],[114,161,75,-0.23186918950354884],[114,161,76,-0.22965792021721376],[114,161,77,-0.22733823289006994],[114,161,78,-0.22491172766694967],[114,161,79,-0.22238015624562124],[114,162,64,-0.2530587958671615],[114,162,65,-0.25211410934171685],[114,162,66,-0.25105152825473165],[114,162,67,-0.24987116986476965],[114,162,68,-0.2485732752133578],[114,162,69,-0.2471582116815454],[114,162,70,-0.2456264755579911],[114,162,71,-0.24397869461864075],[114,162,72,-0.24221563071795438],[114,162,73,-0.24033818239175986],[114,162,74,-0.23834738747157536],[114,162,75,-0.2362444257105949],[114,162,76,-0.23403062142120878],[114,162,77,-0.23170744612408778],[114,162,78,-0.22927652120884978],[114,162,79,-0.2267396206062745],[114,163,64,-0.2572394789425485],[114,163,65,-0.25630369897089766],[114,163,66,-0.2552489374074426],[114,163,67,-0.25407532173892844],[114,163,68,-0.25278310415299154],[114,163,69,-0.2513726640994569],[114,163,70,-0.2498445108629631],[114,163,71,-0.2481992861469725],[114,163,72,-0.24643776666913597],[114,163,73,-0.24456086676807565],[114,163,74,-0.2425696410214392],[114,163,75,-0.2404652868754159],[114,163,76,-0.23824914728558333],[114,163,77,-0.2359227133691184],[114,163,78,-0.23348762706839155],[114,163,79,-0.23094568382590164],[114,164,64,-0.2612646288490039],[114,164,65,-0.26033757852867767],[114,164,66,-0.25929049533781856],[114,164,67,-0.25812351661884847],[114,164,68,-0.2568369053037005],[114,164,69,-0.2554310524797736],[114,164,70,-0.25390647996701976],[114,164,71,-0.2522638429062253],[114,164,72,-0.2505039323584488],[114,164,73,-0.24862767791568874],[114,164,74,-0.24663615032262476],[114,164,75,-0.24453056410962914],[114,164,76,-0.24231228023691576],[114,164,77,-0.23998280874985722],[114,164,78,-0.2375438114454944],[114,164,79,-0.23499710455019052],[114,165,64,-0.26513334409516165],[114,165,65,-0.2642148338398903],[114,165,66,-0.26317527555845877],[114,165,67,-0.2620148160759639],[114,165,68,-0.2607337286659398],[114,165,69,-0.2593324156208786],[114,165,70,-0.2578114108337005],[114,165,71,-0.2561713823902284],[114,165,72,-0.2544131351726385],[114,165,73,-0.25253761347395076],[114,165,74,-0.2505459036234091],[114,165,75,-0.24843923662294476],[114,165,76,-0.24621899079459197],[114,165,77,-0.24388669443888755],[114,165,78,-0.2414440285042736],[114,165,79,-0.2388928292674627],[114,166,64,-0.2688449141048649],[114,166,65,-0.2679347421500372],[114,166,66,-0.26690254346013886],[114,166,67,-0.2657484739698617],[114,166,68,-0.2644728168912184],[114,166,69,-0.26307598528853493],[114,166,70,-0.2615585246642125],[114,166,71,-0.2599211155553176],[114,166,72,-0.2581645761409693],[114,166,73,-0.25628986486058614],[114,166,74,-0.2542980830428484],[114,166,75,-0.2521904775455641],[114,166,76,-0.2499684434063083],[114,166,77,-0.24763352650386894],[114,166,78,-0.24518742623051837],[114,166,79,-0.24263199817506853],[114,167,64,-0.2723988248475333],[114,167,65,-0.27149677778619785],[114,167,66,-0.2704717620016329],[114,167,67,-0.269323942165389],[114,167,68,-0.2680536110248788],[114,167,69,-0.26666119198273563],[114,167,70,-0.26514724168677195],[114,167,71,-0.2635124526305953],[114,167,72,-0.26175765576484966],[114,167,73,-0.2598838231191508],[114,167,74,-0.25789207043456175],[114,167,75,-0.25578365980680207],[114,167,76,-0.25356000234006537],[114,167,77,-0.2512226608114648],[114,167,78,-0.24877335234614217],[114,167,79,-0.24621395110298416],[114,168,64,-0.2757947645205172],[114,168,65,-0.2749006178703842],[114,168,66,-0.2738825974524115],[114,168,67,-0.27274087630305555],[114,168,68,-0.2714757563025745],[114,168,69,-0.2700876707586406],[114,168,70,-0.268577187000393],[114,168,71,-0.26694500898298434],[114,168,72,-0.26519197990258925],[114,168,73,-0.2633190848219442],[114,168,74,-0.26132745330626594],[114,168,75,-0.25921836206974225],[114,168,76,-0.25699323763246307],[114,168,77,-0.25465365898782366],[114,168,78,-0.2522013602804243],[114,168,79,-0.24963823349441594],[114,169,64,-0.27903262928353945],[114,169,65,-0.2781461480854318],[114,169,66,-0.2771349251883166],[114,169,67,-0.2759991416228317],[114,169,68,-0.27473910800054113],[114,169,69,-0.27335526710168634],[114,169,70,-0.2718481964732199],[114,169,71,-0.2702186110371826],[114,169,72,-0.268467365709383],[114,169,73,-0.26659545802845774],[114,169,74,-0.26460403079515105],[114,169,75,-0.2624943747220124],[114,169,76,-0.26026793109338453],[114,169,77,-0.2579262944357009],[114,169,78,-0.2554712151981283],[114,169,79,-0.25290460244350244],[114,170,64,-0.2821125290453047],[114,170,65,-0.28123346849351616],[114,170,66,-0.2802288355402951],[114,170,67,-0.27909881884142196],[114,170,68,-0.27784373733974876],[114,170,69,-0.276464042856963],[114,170,70,-0.27496032269549064],[114,170,71,-0.27333330225059105],[114,170,72,-0.27158384763260945],[114,170,73,-0.26971296829946023],[114,170,74,-0.26772181969918507],[114,170,75,-0.26561170592278116],[114,170,76,-0.26338408236716637],[114,170,77,-0.2610405584083161],[114,170,78,-0.25858290008459106],[114,170,79,-0.25601303279021126],[114,171,64,-0.2850347933020948],[114,171,65,-0.2841628994071057],[114,171,66,-0.28316463969600636],[114,171,67,-0.28204021008283364],[114,171,68,-0.2807899374437447],[114,171,69,-0.27941428221266695],[114,171,70,-0.27791384098694527],[114,171,71,-0.2762893491430415],[114,171,72,-0.2745416834622523],[114,171,73,-0.2726718647665174],[114,171,74,-0.27068106056416275],[114,171,75,-0.26857058770577025],[114,171,76,-0.2663419150500529],[114,171,77,-0.2639966661397517],[114,171,78,-0.2615366218875895],[114,171,79,-0.2589637232722297],[114,172,64,-0.28779997702846305],[114,172,65,-0.286934987312468],[114,172,66,-0.285942875654418],[114,172,67,-0.28482384486234946],[114,172,68,-0.28357822935030697],[114,172,69,-0.2822064977377451],[114,172,70,-0.28070925545879044],[114,172,71,-0.2790872473814271],[114,172,72,-0.2773413604365673],[114,172,73,-0.27547262625707725],[114,172,74,-0.2734822238266069],[114,172,75,-0.27137148213841655],[114,172,76,-0.2691418828640678],[114,172,77,-0.26679506303201406],[114,172,78,-0.2643328177161073],[114,172,79,-0.26175710273398034],[114,173,64,-0.2904088666200757],[114,173,65,-0.2895505108457779],[114,173,66,-0.2885643142334403],[114,173,67,-0.2874504861239592],[114,173,68,-0.2862093680769552],[114,173,69,-0.2848414364737819],[114,173,70,-0.28334730513027484],[114,173,71,-0.2817277279192961],[114,173,72,-0.27998360140303746],[114,173,73,-0.2781159674751552],[114,173,74,-0.2761260160125836],[114,173,75,-0.2740150875372167],[114,173,76,-0.2717846758873358],[114,173,77,-0.2694364308988002],[114,173,78,-0.26697216109604094],[114,173,79,-0.2643938363927951],[114,174,64,-0.292862485888561],[114,174,65,-0.29201048682168484],[114,174,66,-0.29102996513045476],[114,174,67,-0.28992113633110517],[114,174,68,-0.2886843487401747],[114,174,69,-0.287320086080984],[114,174,70,-0.2858289700997295],[114,174,71,-0.28421176319125685],[114,174,72,-0.2824693710344762],[114,174,73,-0.2806028452374889],[114,174,74,-0.2786133859922736],[114,174,75,-0.2765023447391268],[114,174,76,-0.27427122684072447],[114,174,77,-0.2719216942658359],[114,174,78,-0.2694555682827142],[114,174,79,-0.26687483216211794],[114,175,64,-0.2951621021084456],[114,175,65,-0.29431617631442253],[114,175,66,-0.29334108303582307],[114,175,67,-0.29223704361082115],[114,175,68,-0.2910044127284406],[114,175,69,-0.28964368103834814],[114,175,70,-0.28815547777015516],[114,175,71,-0.2865405733622832],[114,175,72,-0.2847998821003642],[114,175,73,-0.2829344647652372],[114,175,74,-0.28094553129039723],[114,175,75,-0.27883444342908337],[114,175,76,-0.27660271743088005],[114,175,77,-0.2742520267278561],[114,175,78,-0.27178420463027353],[114,175,79,-0.26920124703181025],[114,176,64,-0.29730923211623583],[114,176,65,-0.2964690907915155],[114,176,66,-0.29549917379942636],[114,176,67,-0.2943997079513282],[114,176,68,-0.2931710539290936],[114,176,69,-0.29181370889806457],[114,176,70,-0.2903283091294151],[114,176,71,-0.2887156326319724],[114,176,72,-0.2869766017934683],[114,176,73,-0.2851122860312828],[114,176,74,-0.2831239044525371],[114,176,75,-0.2810128285237191],[114,176,76,-0.27878058474971856],[114,176,77,-0.2764288573622985],[114,176,78,-0.2739594910180264],[114,176,79,-0.27137449350562093],[114,177,64,-0.29930564846151286],[114,177,65,-0.29847099829995594],[114,177,66,-0.29750600065011223],[114,177,67,-0.2964108874529495],[114,177,68,-0.29518602500894087],[114,177,69,-0.2938319165940293],[114,177,70,-0.2923492050849027],[114,177,71,-0.2907386755936291],[114,177,72,-0.2890012581116227],[114,177,73,-0.2871380301630089],[114,177,74,-0.2851502194672366],[114,177,75,-0.2830392066111277],[114,177,76,-0.28080652773023973],[114,177,77,-0.2784538771995646],[114,177,78,-0.2759831103335907],[114,177,79,-0.27339624609568536],[114,178,64,-0.30115338561011573],[114,178,65,-0.30032392970491684],[114,178,66,-0.29936359046811434],[114,178,67,-0.29827260463242133],[114,178,68,-0.29705134374865105],[114,178,69,-0.2957003168045349],[114,178,70,-0.2942201728527526],[114,178,71,-0.2926117036482403],[114,178,72,-0.2908758462947333],[114,178,73,-0.2890136859006177],[114,178,74,-0.2870264582439398],[114,178,75,-0.2849155524467616],[114,178,76,-0.2826825136587362],[114,178,77,-0.2803290457499318],[114,178,78,-0.2778570140129265],[114,178,79,-0.2752684478741314],[114,179,64,-0.3028547461994665],[114,179,65,-0.3020301849810678],[114,179,66,-0.3010742401105092],[114,179,67,-0.29998715278065524],[114,179,68,-0.2987692994310056],[114,179,69,-0.2974211943692],[114,179,70,-0.2959434924016595],[114,179,71,-0.29433699147341197],[114,179,72,-0.2926026353170742],[114,179,73,-0.29074151611105614],[114,179,74,-0.2887548771468387],[114,179,75,-0.28664411550551305],[114,179,76,-0.28441078474345627],[114,179,77,-0.28205659758717083],[114,179,78,-0.27958342863730923],[114,179,79,-0.27699331708184505],[114,180,64,-0.3044123073459033],[114,180,65,-0.303592339556344],[114,180,66,-0.3026405227895641],[114,180,67,-0.30155710237381583],[114,180,68,-0.3003424592828595],[114,180,69,-0.2989971127599961],[114,180,70,-0.2975217229511591],[114,180,71,-0.2959170935471126],[114,180,72,-0.2941841744347271],[114,180,73,-0.2923240643574019],[114,180,74,-0.2903380135844783],[114,180,75,-0.2882274265898429],[114,180,76,-0.2859938647395819],[114,180,77,-0.2836390489887266],[114,180,78,-0.2811648625871056],[114,180,79,-0.2785733537942603],[114,181,64,-0.30582892700411723],[114,181,65,-0.30501325070828156],[114,181,66,-0.30406529450408437],[114,181,67,-0.3029853075378097],[114,181,68,-0.301773674970923],[114,181,69,-0.3004309206064739],[114,181,70,-0.2989577095244774],[114,181,71,-0.29735485072633794],[114,181,72,-0.2956232997882736],[114,181,73,-0.2937641615238158],[114,181,74,-0.29177869265523115],[114,181,75,-0.2896683044940568],[114,181,76,-0.28743456563061864],[114,181,77,-0.2850792046325684],[114,181,78,-0.2826041127524509],[114,181,79,-0.28001134664427085],[114,182,64,-0.30710775037871174],[114,182,65,-0.30629606401291953],[114,182,66,-0.3053517005237687],[114,182,67,-0.3042749125662053],[114,182,68,-0.30306608915137045],[114,182,69,-0.3017257582752023],[114,182,70,-0.30025458955595763],[114,182,71,-0.29865339688070225],[114,182,72,-0.29692314106074513],[114,182,73,-0.2950649324960728],[114,182,74,-0.2930800338486468],[114,182,75,-0.29096986272474457],[114,182,76,-0.2887359943662213],[114,182,77,-0.2863801643507181],[114,182,78,-0.2839042713008445],[114,182,79,-0.28131037960228356],[114,183,64,-0.308252216387782],[114,183,65,-0.3074442198461832],[114,183,66,-0.30650318192647386],[114,183,67,-0.30542935849148123],[114,183,68,-0.3042231420731779],[114,183,69,-0.30288506450332475],[114,183,70,-0.3014157995529704],[114,183,71,-0.29981616558086355],[114,183,72,-0.29808712819074257],[114,183,73,-0.2962298028975734],[114,183,74,-0.2942454578025834],[114,183,75,-0.2921355162772822],[114,183,76,-0.2899015596563417],[114,183,77,-0.2875453299393649],[114,183,78,-0.2850687325015634],[114,183,79,-0.28247383881330546],[114,184,64,-0.30926606417861113],[114,184,65,-0.3084614599378339],[114,184,66,-0.30752348218849],[114,184,67,-0.30645238970969935],[114,184,68,-0.3052485782352904],[114,184,69,-0.3039125830863212],[114,184,70,-0.3024450818124008],[114,184,71,-0.3008468968418707],[114,184,72,-0.2991189981408092],[114,184,73,-0.2972625058809283],[114,184,74,-0.2952786931162126],[114,184,75,-0.29316898846849015],[114,184,76,-0.2909349788218102],[114,184,77,-0.28857841202565104],[114,184,78,-0.286101199606988],[114,184,79,-0.28350541949117003],[114,185,64,-0.31015333969544223],[114,185,65,-0.3093518339779483],[114,185,66,-0.3084166538277753],[114,185,67,-0.30734806065856035],[114,185,68,-0.3061464530975706],[114,185,69,-0.3048123696199416],[114,185,70,-0.3033464911916671],[114,185,71,-0.30174964392140036],[114,185,72,-0.30002280172102624],[114,185,73,-0.29816708897508015],[114,185,74,-0.2961837832188583],[114,185,75,-0.29407431782541127],[114,185,76,-0.29184028470129453],[114,185,77,-0.28948343699110024],[114,185,78,-0.28700569179080104],[114,185,79,-0.2844091328698525],[114,186,64,-0.31091840229933443],[114,186,65,-0.31011970627593644],[114,186,66,-0.30918706510016947],[114,186,67,-0.3081207425488537],[114,186,68,-0.3069211398455416],[114,186,69,-0.305588798296314],[114,186,70,-0.3041244019342876],[114,186,71,-0.3025287801728834],[114,186,72,-0.30080291046783014],[114,186,73,-0.29894792098796397],[114,186,74,-0.29696509329467835],[114,186,75,-0.29485586503021355],[114,186,76,-0.29262183261465724],[114,186,77,-0.2902647539516853],[114,186,78,-0.2877865511430673],[114,186,79,-0.285189313211889],[114,187,64,-0.3115659314400798],[114,187,65,-0.3107697624720729],[114,187,66,-0.30983940674855326],[114,187,67,-0.30877513014927416],[114,187,68,-0.3075773362089008],[114,187,69,-0.30624656875421097],[114,187,70,-0.304783514549965],[114,187,71,-0.3031890059535045],[114,187,72,-0.3014640235780379],[114,187,73,-0.2996096989646915],[114,187,74,-0.2976273172631654],[114,187,75,-0.29551831992119515],[114,187,76,-0.29328430738268074],[114,187,77,-0.290927041794521],[114,187,78,-0.2884484497221701],[114,187,79,-0.2858506248738747],[114,188,64,-0.31210093338023537],[114,188,65,-0.3113070163015971],[114,188,66,-0.31037869880501545],[114,188,67,-0.3093162486246629],[114,188,68,-0.30812007133385777],[114,188,69,-0.30679071298351757],[114,188,70,-0.305328862749248],[114,188,71,-0.30373535558712395],[114,188,72,-0.3020111748981257],[114,188,73,-0.3001574552013042],[114,188,74,-0.29817548481551936],[114,188,75,-0.2960667085499449],[114,188,76,-0.29383273040321456],[114,188,77,-0.2914753162712289],[114,188,78,-0.28899639666365895],[114,188,79,-0.2863980694290903],[114,189,64,-0.3125287479712082],[114,189,65,-0.31173681641132167],[114,189,66,-0.31081029744596267],[114,189,67,-0.30974946042760965],[114,189,68,-0.30855471270923274],[114,189,69,-0.30722660228385257],[114,189,70,-0.3057658204327043],[114,189,71,-0.3041732043820653],[114,189,72,-0.3024497399687065],[114,189,73,-0.300596564314044],[114,189,74,-0.29861496850683367],[114,189,75,-0.29650640029460296],[114,189,76,-0.29427246678369035],[114,189,77,-0.29191493714792227],[114,189,78,-0.2894357453459513],[114,189,79,-0.286836992847207],[114,190,64,-0.31285505548143366],[114,190,65,-0.31206485322878463],[114,190,66,-0.311139901900209],[114,190,67,-0.3100804722434556],[114,190,68,-0.3088869731463606],[114,190,69,-0.30755995427737126],[114,190,70,-0.3061001087346473],[114,190,71,-0.3045082757038019],[114,190,72,-0.3027854431242395],[114,190,73,-0.30093275036416867],[114,190,74,-0.2989514909041322],[114,190,75,-0.2968431150292473],[114,190,76,-0.2946092325300316],[114,190,77,-0.2922516154118362],[114,190,78,-0.289772200612917],[114,190,79,-0.2871730927310926],[114,191,64,-0.31308588347663724],[114,191,65,-0.31229716588393963],[114,191,66,-0.31137356141004036],[114,191,67,-0.31031534198868616],[114,191,68,-0.30912291781278256],[114,191,69,-0.30779683997574403],[114,191,70,-0.3063378031214038],[114,191,71,-0.30474664810253804],[114,191,72,-0.30302436464796845],[114,191,73,-0.30117209403831435],[114,191,74,-0.2991911317902439],[114,191,75,-0.29708293034941224],[114,191,76,-0.2948491017919612],[114,191,77,-0.2924914205346082],[114,191,78,-0.29001182605334874],[114,191,79,-0.287412425610726],[114,192,64,-0.3132276137521677],[114,192,65,-0.31244014918337415],[114,192,66,-0.31151768224524157],[114,192,67,-0.31046048586270814],[114,192,68,-0.30926897131972486],[114,192,69,-0.30794369090130536],[114,192,70,-0.306485340544118],[114,192,71,-0.30489476249567316],[114,192,72,-0.3031729479820726],[114,192,73,-0.3013210398843864],[114,192,74,-0.2993403354235158],[114,192,75,-0.29723228885371966],[114,192,76,-0.2949985141646889],[114,192,77,-0.29264078779218894],[114,192,78,-0.29016105133729875],[114,192,79,-0.28756141429419757],[114,193,64,-0.31328698931742316],[114,193,65,-0.31250056063706766],[114,193,66,-0.31157903477010107],[114,193,67,-0.3105226854530212],[114,193,68,-0.3093319248633728],[114,193,69,-0.30800730626238026],[114,193,70,-0.3065495266461008],[114,193,71,-0.30495942940516374],[114,193,72,-0.3032380069930518],[114,193,73,-0.3013864036030013],[114,193,74,-0.2994059178533667],[114,193,75,-0.2972980054816394],[114,193,76,-0.2950642820469971],[114,193,77,-0.2927065256414051],[114,193,78,-0.2902266796093028],[114,193,79,-0.2876268552758202],[114,194,64,-0.3132711214323486],[114,194,65,-0.3124855275376831],[114,194,66,-0.3115647605633841],[114,194,67,-0.3105090948937752],[114,194,68,-0.3093189434199328],[114,194,69,-0.30799486018278455],[114,194,70,-0.3065375430247198],[114,194,71,-0.30494783624977106],[114,194,72,-0.3032267332923285],[114,194,73,-0.30137537939445924],[114,194,74,-0.2993950742916792],[114,194,75,-0.2972872749073706],[114,194,76,-0.2950535980557123],[114,194,77,-0.29269582315315723],[114,194,78,-0.2902158949384772],[114,194,79,-0.2876159262013295],[114,195,64,-0.31318749669602797],[114,195,65,-0.31240255409239703],[114,195,66,-0.31148237959127967],[114,195,67,-0.3104272480777247],[114,195,68,-0.30923757299448973],[114,195,69,-0.3079139089855032],[114,195,70,-0.30645695454783206],[114,195,71,-0.30486755469220816],[114,195,72,-0.30314670361208174],[114,195,73,-0.30129554736126785],[114,195,74,-0.29931538654003886],[114,195,75,-0.29720767898985034],[114,195,76,-0.2949740424965749],[114,195,77,-0.29261625750226905],[114,195,78,-0.2901362698255019],[114,195,79,-0.28753619339019554],[114,196,64,-0.31304398418733526],[114,196,65,-0.3122595286072519],[114,196,66,-0.3113397974333063],[114,196,67,-0.31028506592155436],[114,196,68,-0.3090957479236395],[114,196,69,-0.3077723985305292],[114,196,70,-0.3063157167247472],[114,196,71,-0.3047265480411613],[114,196,72,-0.3030058872362882],[114,196,73,-0.3011548809661877],[114,196,74,-0.2991748304727935],[114,196,75,-0.2970671942788716],[114,196,76,-0.2948335908914812],[114,196,77,-0.29247580151395913],[114,196,78,-0.28999577276646227],[114,196,79,-0.2873956194150129],[114,197,64,-0.3128488426576942],[114,197,65,-0.3120647307240616],[114,197,66,-0.31114531256120836],[114,197,67,-0.31009086368461813],[114,197,68,-0.3089017982319361],[114,197,69,-0.30757867160689734],[114,197,70,-0.30612218313174966],[114,197,71,-0.3045331787082214],[114,197,72,-0.30281265348700814],[114,197,73,-0.30096175454583884],[114,197,74,-0.29898178357597727],[114,197,75,-0.29687419957734484],[114,197,76,-0.2946406215621402],[114,197,77,-0.29228283126698085],[114,197,78,-0.2898027758735955],[114,197,79,-0.2872025707380139],[114,198,64,-0.31261072777589716],[114,198,65,-0.31182683870983774],[114,198,66,-0.31090762367080693],[114,198,67,-0.3098533583410493],[114,198,68,-0.30866445704210743],[114,198,69,-0.30734147537887657],[114,198,70,-0.3058851128921468],[114,198,71,-0.304296215719694],[114,198,72,-0.30257577926587986],[114,198,73,-0.300724950879832],[114,198,74,-0.29874503254205576],[114,198,75,-0.2966374835596639],[114,198,76,-0.29440392327010034],[114,198,77,-0.29204613375338284],[114,198,78,-0.2895660625528924],[114,198,79,-0.2869658254046612],[114,199,64,-0.312338699425018],[114,199,65,-0.31155493679875534],[114,199,66,-0.3106358370668275],[114,199,67,-0.3095816760052673],[114,199,68,-0.3083928680390745],[114,199,69,-0.30706996888634164],[114,199,70,-0.3056136782108647],[114,199,71,-0.3040248422833024],[114,199,72,-0.30230445665084227],[114,199,73,-0.30045366881544444],[114,199,74,-0.2984737809205168],[114,199,75,-0.2963662524462055],[114,199,76,-0.2941327029131775],[114,199,77,-0.29177491459492066],[114,199,78,-0.2892948352385907],[114,199,79,-0.2866945807943506],[114,200,64,-0.3120422290514019],[114,200,65,-0.3112585225866574],[114,200,66,-0.3103394741007013],[114,200,67,-0.30928535941087465],[114,200,68,-0.30809659298775716],[114,200,69,-0.3067737305993232],[114,200,70,-0.3053174719635866],[114,200,71,-0.30372866340978655],[114,200,72,-0.30200830054808503],[114,200,73,-0.3001575309478395],[114,200,74,-0.2981776568243043],[114,200,75,-0.29607013773394997],[114,200,76,-0.2938365932782707],[114,200,77,-0.2914788058161123],[114,200,78,-0.28899872318454056],[114,200,79,-0.2863984614282079],[114,201,64,-0.31173120706573365],[114,201,65,-0.31094751447808344],[114,201,66,-0.3100284786613291],[114,201,67,-0.3089743754429376],[114,201,68,-0.30778561930466586],[114,201,69,-0.3064627660267232],[114,201,70,-0.3050065153404241],[114,201,71,-0.30341771358938174],[114,201,72,-0.3016973563992127],[114,201,73,-0.2998465913558158],[114,201,74,-0.29786672069208175],[114,201,75,-0.2957592039832183],[114,201,76,-0.29352566085056475],[114,201,77,-0.2911678736739255],[114,201,78,-0.28868779031244596],[114,201,79,-0.286087526833984],[114,202,64,-0.3114153258792345],[114,202,65,-0.310631630922638],[114,202,66,-0.3097125928057999],[114,202,67,-0.3086584873565502],[114,202,68,-0.30746972905692427],[114,202,69,-0.30614687368732496],[114,202,70,-0.3046906209791731],[114,202,71,-0.30310181727609764],[114,202,72,-0.3013814582036386],[114,202,73,-0.29953069134752386],[114,202,74,-0.2975508189403753],[114,202,75,-0.29544330055703194],[114,202,76,-0.29320975581836195],[114,202,77,-0.29085196710359396],[114,202,78,-0.2883718822711897],[114,202,79,-0.2857716173882132],[114,203,64,-0.3110952679841915],[114,203,65,-0.3103115245636242],[114,203,66,-0.3093924397421226],[114,203,67,-0.3083382893495996],[114,203,68,-0.30714948786823315],[114,203,69,-0.30582659107658205],[114,203,70,-0.30437029870218923],[114,203,71,-0.30278145708272686],[114,203,72,-0.3010610618356506],[114,203,73,-0.2992102605364302],[114,203,74,-0.2972303554052078],[114,203,75,-0.29512280600207363],[114,203,76,-0.29288923193082894],[114,203,77,-0.29053141555126927],[114,203,78,-0.2880513047000093],[114,203,79,-0.28545101541980156],[114,204,64,-0.310764767244885],[114,204,65,-0.3099808574669223],[114,204,66,-0.3090616123253396],[114,204,67,-0.3080073076573393],[114,204,68,-0.30681835794572654],[114,204,69,-0.3054953189628645],[114,204,70,-0.3040388904231195],[114,204,71,-0.3024499186438456],[114,204,72,-0.3007293992148775],[114,204,73,-0.29887847967659853],[114,204,74,-0.29689846220643545],[114,204,75,-0.29479080631396937],[114,204,76,-0.292557131544534],[114,204,77,-0.2901992201913314],[114,204,78,-0.2877190200160893],[114,204,79,-0.28511864697821154],[114,205,64,-0.310417686080419],[114,205,65,-0.30963342232065394],[114,205,66,-0.30871383603993563],[114,205,67,-0.30765920309128947],[114,205,68,-0.306469937959161],[114,205,69,-0.30514659640303377],[114,205,70,-0.3036898781095353],[114,205,71,-0.30210062935307946],[114,205,72,-0.3003798456650151],[114,205,73,-0.29852867451134846],[114,205,74,-0.29654841797888887],[114,205,75,-0.2944405354700096],[114,205,76,-0.2922066464058922],[114,205,77,-0.28984853293828783],[114,205,78,-0.28736814266981725],[114,205,79,-0.2847675913827613],[114,206,64,-0.3100481986985216],[114,206,65,-0.3092633267827657],[114,206,66,-0.3083431544036924],[114,206,67,-0.30728795744205795],[114,206,68,-0.3060981503856658],[114,206,69,-0.304774288972405],[114,206,70,-0.3033170728417708],[114,206,71,-0.3017273481949191],[114,206,72,-0.30000611046322334],[114,206,73,-0.29815450698540036],[114,206,74,-0.29617383969305666],[114,206,75,-0.2940655678048453],[114,206,76,-0.2918313105291036],[114,206,77,-0.2894728497750024],[114,206,78,-0.286992132872231],[114,206,79,-0.28439127529916897],[114,207,64,-0.309650784550336],[114,207,65,-0.30886498687518427],[114,207,66,-0.30794392230349776],[114,207,67,-0.30688786675908963],[114,207,68,-0.3056972347357102],[114,207,69,-0.3043725819391998],[114,207,70,-0.30291460793811853],[114,207,71,-0.30132415882290275],[114,207,72,-0.29960222987352003],[114,207,73,-0.2977499682356861],[114,207,74,-0.29576867560549636],[114,207,75,-0.2936598109226617],[114,207,76,-0.2914249930722207],[114,207,77,-0.2890660035947564],[114,207,78,-0.28658478940514254],[114,207,79,-0.2839834655197725],[114,208,64,-0.3092202218413238],[114,208,65,-0.3084331204345534],[114,208,66,-0.3075107993881876],[114,208,67,-0.3064535346878814],[114,208,68,-0.3052617408369508],[114,208,69,-0.3039359734972784],[114,208,70,-0.3024769321386841],[114,208,71,-0.3008854626968175],[114,208,72,-0.2991625602395387],[114,208,73,-0.29730937164185245],[114,208,74,-0.29532719826925],[114,208,75,-0.29321749866964675],[114,208,76,-0.29098189127378604],[114,208,77,-0.2886221571041414],[114,208,78,-0.2861402424923394],[114,208,79,-0.2835382618050557],[114,209,64,-0.30875158109827416],[114,209,65,-0.30796274061954587],[114,209,66,-0.307038743518415],[114,209,67,-0.30597986586465586],[114,209,68,-0.3047865221759538],[114,209,69,-0.30345926805714185],[114,209,70,-0.3019988028478915],[114,209,71,-0.3004059722789153],[114,209,72,-0.2986817711366436],[114,209,73,-0.2968273459364472],[114,209,74,-0.2948439976042534],[114,209,75,-0.29273318416674854],[114,209,76,-0.2904965234500353],[114,209,77,-0.2881357957867775],[114,209,78,-0.28565294673185315],[114,209,79,-0.2830500897864707],[114,210,64,-0.30824021879240404],[114,210,65,-0.307449149474735],[114,210,66,-0.3065230042735295],[114,210,67,-0.30546205936848114],[114,210,68,-0.304266729297777],[114,210,69,-0.30293756959519247],[114,210,70,-0.30147527943562513],[114,210,71,-0.2998807042891257],[114,210,72,-0.2981548385833892],[114,210,73,-0.2962988283747783],[114,210,74,-0.2943139740277251],[114,210,75,-0.2922017329027049],[114,210,76,-0.28996372205265153],[114,210,77,-0.2876017209278434],[114,210,78,-0.2851176740892867],[114,210,79,-0.28251369393054504],[114,211,64,-0.3076817710185734],[114,211,65,-0.3068879315510533],[114,211,66,-0.3059591165154939],[114,211,67,-0.30489560223085743],[114,211,68,-0.30369780326343554],[114,211,69,-0.3023662750612762],[114,211,70,-0.30090171659703335],[114,211,71,-0.29930497301929293],[114,211,72,-0.2975770383123447],[114,211,73,-0.29571905796446474],[114,211,74,-0.29373233164456125],[114,211,75,-0.2916183158873731],[114,211,76,-0.2893786267870918],[114,211,77,-0.28701504269943856],[114,211,78,-0.2845295069522167],[114,211,79,-0.2819241305642962],[114,212,64,-0.3070721472306065],[114,212,65,-0.3062749475828219],[114,212,66,-0.3053428940098246],[114,212,67,-0.30427626300276434],[114,212,68,-0.30307546916524186],[114,212,69,-0.30174106784449406],[114,212,70,-0.30027375777098053],[114,212,71,-0.2986743837064245],[114,212,72,-0.2969439391002775],[114,212,73,-0.29508356875467356],[114,212,74,-0.2930945714977241],[114,212,75,-0.2909784028653444],[114,212,76,-0.28873667779148127],[114,212,77,-0.28637117330677375],[114,212,78,-0.2838838312456684],[114,212,79,-0.28127676096194454],[114,213,64,-0.30640752403270033],[114,213,65,-0.3056063282213417],[114,213,66,-0.30467042310354375],[114,213,67,-0.3036000853791502],[114,213,68,-0.30239572970000406],[114,213,69,-0.3010579112972711],[114,213,70,-0.2995873286171369],[114,213,71,-0.2979848259649367],[114,213,72,-0.2962513961576766],[114,213,73,-0.2943881831850238],[114,213,74,-0.2923964848786088],[114,213,75,-0.29027775558983304],[114,213,76,-0.2880336088760522],[114,213,77,-0.28566582019516695],[114,213,78,-0.2831763296086417],[114,213,79,-0.28056724449290604],[114,214,64,-0.30568433902695447],[114,214,65,-0.3048784678250708],[114,214,66,-0.3039380564601689],[114,214,67,-0.30286338188089335],[114,214,68,-0.3016548588001109],[114,214,69,-0.30031304231770795],[114,214,70,-0.29883863055173077],[114,214,71,-0.2972324672779263],[114,214,72,-0.29549554457764693],[114,214,73,-0.2936290054941897],[114,214,74,-0.29163414669741916],[114,214,75,-0.28951242115686504],[114,214,76,-0.28726544082316463],[114,214,77,-0.2848949793178811],[114,214,78,-0.28240297463172004],[114,214,79,-0.2797915318310986],[114,215,64,-0.30489928471699257],[114,215,65,-0.3040880183063659],[114,215,66,-0.3031424068517192],[114,215,67,-0.3020627275942126],[114,215,68,-0.30084939532248045],[114,215,69,-0.29950296499019524],[114,215,70,-0.2980241343419404],[114,215,71,-0.29641374654744523],[114,215,72,-0.29467279284415115],[114,215,73,-0.29280241518817585],[114,215,74,-0.29080390891352514],[114,215,75,-0.2886787253997438],[114,215,76,-0.28642847474787747],[114,215,77,-0.284054928464772],[114,215,78,-0.2815600221557385],[114,215,79,-0.2789458582255334],[114,216,64,-0.3040493024677027],[114,216,65,-0.3032318830348103],[114,216,66,-0.30228034100775636],[114,216,67,-0.3011949539675457],[114,216,68,-0.29997613679539303],[114,216,69,-0.29862444428430834],[114,216,70,-0.2971405737589491],[114,216,71,-0.2955253677037961],[114,216,72,-0.29377981639961726],[114,216,73,-0.29190506056828935],[114,216,74,-0.2899023940258283],[114,216,75,-0.28777326634381606],[114,216,76,-0.28551928551909744],[114,216,77,-0.28314222065177597],[114,216,78,-0.28064400463153205],[114,216,79,-0.2780267368322167],[114,217,64,-0.3031315765210557],[114,217,65,-0.3023072107970898],[114,217,66,-0.30134897352142886],[114,217,67,-0.3002571426658647],[114,217,68,-0.29903213322317546],[114,217,69,-0.29767449981194893],[114,217,70,-0.29618493928962564],[114,217,71,-0.2945642933738195],[114,217,72,-0.2928135512718807],[114,217,73,-0.29093385231877],[114,217,74,-0.28892648862309533],[114,217,75,-0.2867929077214987],[114,217,76,-0.28453471524126683],[114,217,77,-0.2821536775711949],[114,217,78,-0.2796517245407265],[114,217,79,-0.2770309521073221],[114,218,64,-0.30214352806805],[114,218,65,-0.3013113898134643],[114,218,66,-0.30034566081255887],[114,218,67,-0.2992466194824658],[114,218,68,-0.29801468094877526],[114,218,69,-0.2966503996427776],[114,218,70,-0.2951544719068735],[114,218,71,-0.293527738608209],[114,218,72,-0.2917711877605016],[114,218,73,-0.28988595715412513],[114,218,74,-0.2878733369943055],[114,218,75,-0.28573477254761415],[114,218,76,-0.28347186679663394],[114,218,77,-0.28108638310282597],[114,218,78,-0.27858024787762004],[114,218,79,-0.27595555326168253],[114,219,64,-0.30108280937676024],[114,219,65,-0.3002420418108126],[114,219,66,-0.2992679951477569],[114,219,67,-0.2981609483082218],[114,219,68,-0.2969213165742123],[114,219,69,-0.2955496541779181],[114,219,70,-0.29404665689863363],[114,219,71,-0.2924131646678433],[114,219,72,-0.2906501641824405],[114,219,73,-0.28875879152614903],[114,219,74,-0.2867403347989935],[114,219,75,-0.28459623675501367],[114,219,76,-0.28232809744809095],[114,219,77,-0.27993767688591764],[114,219,78,-0.27742689769213313],[114,219,79,-0.274797847776579],[114,220,64,-0.2999472979764657],[114,220,65,-0.29909701615222617],[114,220,66,-0.2981137987175343],[114,220,67,-0.29699792515826395],[114,220,68,-0.295749810938875],[114,220,69,-0.294370010081905],[114,220,70,-0.2928592177555086],[114,220,71,-0.29121827286910007],[114,220,72,-0.28944816067706314],[114,220,73,-0.28755001539059855],[114,220,74,-0.2855251227975588],[114,220,75,-0.28337492289046085],[114,220,76,-0.28110101250254627],[114,220,77,-0.2787051479519218],[114,220,78,-0.2761892476938007],[114,220,79,-0.27355539498079917],[114,221,64,-0.2987350908979052],[114,221,65,-0.2978743840231992],[114,221,66,-0.29688111777046433],[114,221,67,-0.2957555722561469],[114,221,68,-0.2944981631557154],[114,221,69,-0.2931094442729256],[114,221,70,-0.2915901101170616],[114,221,71,-0.2899409984882091],[114,221,72,-0.2881630930705251],[114,221,73,-0.2862575260335769],[114,221,74,-0.284225580641593],[114,221,75,-0.2820686938708252],[114,221,76,-0.27978845903488603],[114,221,77,-0.2773866284180948],[114,221,78,-0.2748651159168555],[114,221,79,-0.2722259996890176],[114,222,64,-0.2974444989696401],[114,222,65,-0.2965724326743956],[114,222,66,-0.29556821680437184],[114,222,67,-0.2944321321754736],[114,222,68,-0.2931645947053185],[114,222,69,-0.29176615797133654],[114,222,70,-0.29023751577676826],[114,222,71,-0.2885795047246166],[114,222,72,-0.28679310679951797],[114,222,73,-0.2848794519576049],[114,222,74,-0.28283982072420455],[114,222,75,-0.28067564679956847],[114,222,76,-0.27838851967250233],[114,222,77,-0.2759801872419255],[114,222,78,-0.27345255844638516],[114,222,79,-0.27080770590147696],[114,223,64,-0.2960740411704893],[114,223,65,-0.29518965972095645],[114,223,66,-0.2941735728145134],[114,223,67,-0.2930260620389459],[114,223,68,-0.2917475435878125],[114,223,69,-0.2903385708064157],[114,223,70,-0.28879983674558507],[114,223,71,-0.28713217672333147],[114,223,72,-0.28533657089433484],[114,223,73,-0.2834141468273398],[114,223,74,-0.28136618209030184],[114,223,75,-0.27919410684348067],[114,223,76,-0.27689950644035066],[114,223,77,-0.274484124036353],[114,223,78,-0.2719498632055217],[114,223,79,-0.26929879056492934],[114,224,64,-0.29462243903809693],[114,224,65,-0.29372476749841225],[114,224,66,-0.2926958695988138],[114,224,67,-0.2915360277749025],[114,224,68,-0.29024565853268247],[114,224,69,-0.2888253149814155],[114,224,70,-0.287275689374197],[114,224,71,-0.2855976156563107],[114,224,72,-0.2837920720213256],[114,224,73,-0.28186018347500985],[114,224,74,-0.2798032244069011],[114,224,75,-0.27762262116973613],[114,224,76,-0.27531995466660153],[114,224,77,-0.2728969629458391],[114,224,78,-0.27035554380372995],[114,224,79,-0.26769775739490775],[114,225,64,-0.2930886111336086],[114,225,65,-0.29217665747516974],[114,225,66,-0.2911339921201288],[114,225,67,-0.2899608984313188],[114,225,68,-0.2886577932664599],[114,225,69,-0.28722522949689044],[114,225,70,-0.2856638985339198],[114,225,71,-0.2839746328628615],[114,225,72,-0.2821584085847103],[114,225,73,-0.2802163479655353],[114,225,74,-0.278149721993433],[114,225,75,-0.2759599529432386],[114,225,76,-0.27364861694886033],[114,225,77,-0.27121744658326963],[114,225,78,-0.26866833344617014],[114,225,79,-0.26600333075929794],[114,226,64,-0.29147166756241205],[114,226,65,-0.2905444247215354],[114,226,66,-0.28948702092549483],[114,226,67,-0.28829974054722374],[114,226,68,-0.28698300083824524],[114,226,69,-0.2855373544322537],[114,226,70,-0.28396349185621084],[114,226,71,-0.282262244049015],[114,226,72,-0.280434584887708],[114,226,73,-0.27848163372129187],[114,226,74,-0.27640465791199886],[114,226,75,-0.2742050753842131],[114,226,76,-0.27188445718090826],[114,226,77,-0.269444530027636],[114,226,78,-0.2668871789040843],[114,226,79,-0.26421444962316376],[114,227,64,-0.28977090455101884],[114,227,65,-0.2888273524353465],[114,227,66,-0.28775422662243955],[114,227,67,-0.286551812581613],[114,227,68,-0.2852205280031407],[114,227,69,-0.2837609252856417],[114,227,70,-0.28217369403086745],[114,227,71,-0.28045966354594765],[114,227,72,-0.27861980535305997],[114,227,73,-0.27665523570659534],[114,227,74,-0.2745672181176608],[114,227,75,-0.2723571658861219],[114,227,76,-0.2700266446400459],[114,227,77,-0.2675773748825806],[114,227,78,-0.2650112345462915],[114,227,79,-0.2623302615549086],[114,228,64,-0.2879857990800533],[114,228,65,-0.2870249065241812],[114,228,66,-0.28593506441231886],[114,228,67,-0.28471655939982177],[114,228,68,-0.28336980966355985],[114,228,69,-0.2818953673720527],[114,228,70,-0.2802939211628781],[114,228,71,-0.2785662986274191],[114,228,72,-0.2767134688029129],[114,228,73,-0.2747365446718735],[114,228,74,-0.2726367856687274],[114,228,75,-0.27041560019387134],[114,228,76,-0.26807454813500287],[114,228,77,-0.2656153433957702],[114,228,78,-0.2630398564317541],[114,228,79,-0.26035011679373876],[114,229,64,-0.2861160035732999],[114,229,65,-0.28513673024409447],[114,229,66,-0.28402916868063566],[114,229,67,-0.2827936068173095],[114,229,68,-0.2814304633683625],[114,229,69,-0.2799402902797081],[114,229,70,-0.278323775187877],[114,229,71,-0.27658174388617407],[114,229,72,-0.2747151627980099],[114,229,73,-0.27272514145747284],[114,229,74,-0.27061293499698635],[114,229,75,-0.2683799466422566],[114,229,76,-0.2660277302143639],[114,229,77,-0.26355799263904256],[114,229,78,-0.26097259646316295],[114,229,79,-0.25827356237837196],[114,230,64,-0.28416134064289766],[114,230,65,-0.2831626388949725],[114,230,66,-0.28203634764442354],[114,230,67,-0.2807827562009467],[114,230,68,-0.2794022838699073],[114,230,69,-0.2778954823847285],[114,230,70,-0.2762630383462914],[114,230,71,-0.27450577566939993],[114,230,72,-0.2726246580362819],[114,230,73,-0.27062079135719397],[114,230,74,-0.26849542623797373],[114,230,75,-0.2662499604547395],[114,230,76,-0.26388594143560273],[114,230,77,-0.26140506874942404],[114,230,78,-0.25880919660163704],[114,230,79,-0.25610033633709006],[114,231,64,-0.28212179789064196],[114,231,65,-0.28110261457246166],[114,231,66,-0.2799565780566595],[114,231,67,-0.27868397912776277],[114,231,68,-0.2772852377389802],[114,231,69,-0.2757609054240828],[114,231,70,-0.2741116677161437],[114,231,71,-0.27233834657319955],[114,231,72,-0.2704419028107996],[114,231,73,-0.2684234385415145],[114,231,74,-0.2662841996212415],[114,231,75,-0.2640255781025157],[114,231,76,-0.26164911469468355],[114,231,77,-0.2591565012309749],[114,231,78,-0.25654958314249543],[114,231,79,-0.25383036193909314],[114,232,64,-0.27999752276533907],[114,232,65,-0.2789568009764204],[114,232,66,-0.27778999996765075],[114,232,67,-0.2764974121010967],[114,232,68,-0.27507945803754286],[114,232,69,-0.2735366891267548],[114,232,70,-0.2718697898044481],[114,232,71,-0.2700795799960223],[114,232,72,-0.2681670175270279],[114,232,73,-0.26613320054043865],[114,232,74,-0.26397936992056414],[114,232,75,-0.261706911723814],[114,232,76,-0.2593173596161702],[114,232,77,-0.2568123973174007],[114,232,78,-0.25419386105204045],[114,232,79,-0.25146374200709076],[114,233,64,-0.2777888174763127],[114,233,65,-0.2767254982759936],[114,233,66,-0.27553691154349214],[114,233,67,-0.2742233513242588],[114,233,68,-0.27278523904940366],[114,233,69,-0.2712231259032294],[114,233,70,-0.26953769519730786],[114,233,71,-0.2677297647511564],[114,233,72,-0.26580028927948485],[114,233,73,-0.26375036278608366],[114,233,74,-0.26158122096418845],[114,233,75,-0.2592942436035345],[114,233,76,-0.2568909570039518],[114,233,77,-0.2543730363955433],[114,233,78,-0.2517423083654624],[114,233,79,-0.24900075329124682],[114,234,64,-0.2754961339630201],[114,234,65,-0.2744091580312633],[114,234,66,-0.2731977639415548],[114,234,67,-0.27186224753165167],[114,234,68,-0.2704030310687664],[114,234,69,-0.2688206655932547],[114,234,70,-0.2671158332686677],[114,234,71,-0.2652893497382389],[114,234,72,-0.2633421664877642],[114,234,73,-0.26127537321495276],[114,234,74,-0.2590902002050838],[114,234,75,-0.2567880207131765],[114,234,76,-0.2543703533525351],[114,234,77,-0.25183886448969717],[114,234,78,-0.2491953706458162],[114,234,79,-0.2464418409044229],[114,235,64,-0.2731200689207116],[114,235,65,-0.272008378171415],[114,235,66,-0.2707731562429396],[114,235,67,-0.2694147008772896],[114,235,68,-0.26793343524659174],[114,235,69,-0.2663299102718112],[114,235,70,-0.26460480694765276],[114,235,71,-0.2627589386737139],[114,235,72,-0.26079325359184935],[114,235,73,-0.2587088369298298],[114,235,74,-0.25650691335111975],[114,235,75,-0.25418884931099295],[114,235,76,-0.25175615541883734],[114,235,77,-0.24921048880668695],[114,235,78,-0.246553655504003],[114,235,79,-0.24378761281865535],[114,236,64,-0.27066135888225173],[114,236,65,-0.2695238980295327],[114,236,66,-0.2682638304420104],[114,236,67,-0.26688145588083323],[114,236,68,-0.2653771984948865],[114,236,69,-0.2637516091134109],[114,236,70,-0.2620053675446169],[114,236,71,-0.26013928488036075],[114,236,72,-0.25815430580684373],[114,236,73,-0.2560515109214144],[114,236,74,-0.2538321190553001],[114,236,75,-0.25149748960248774],[114,236,76,-0.2490491248546033],[114,236,77,-0.24648867234182903],[114,236,78,-0.24381792717987927],[114,236,79,-0.24103883442298857],[114,237,64,-0.2681208753560467],[114,237,65,-0.26695659343397127],[114,237,66,-0.26567066649295634],[114,237,67,-0.26426339643108443],[114,237,68,-0.262735208448873],[114,237,69,-0.2610866533146694],[114,237,70,-0.2593184096358432],[114,237,71,-0.2574312861358401],[114,237,72,-0.2554262239370614],[114,237,73,-0.2533042988496471],[114,237,74,-0.2510667236659916],[114,237,75,-0.2487148504612069],[114,237,76,-0.24625017289938878],[114,237,77,-0.24367432854572124],[114,237,78,-0.24098910118444006],[114,237,79,-0.23819642314261102],[114,238,64,-0.2654996200200118],[114,238,65,-0.2643074718562364],[114,238,66,-0.26299467741331417],[114,238,67,-0.26156154084687433],[114,238,68,-0.26000848848696156],[114,238,69,-0.25833607107508005],[114,238,70,-0.2565449660068272],[114,238,71,-0.2546359795801799],[114,238,72,-0.25261004924940234],[114,238,73,-0.25046824588464633],[114,238,74,-0.24821177603707756],[114,238,75,-0.24584198420974424],[114,238,76,-0.24336035513403764],[114,238,77,-0.2407685160517855],[114,238,78,-0.238068239002997],[114,238,79,-0.23526144311921404],[114,239,64,-0.262798719971713],[114,239,65,-0.26157766761550905],[114,239,66,-0.260237004444583],[114,239,67,-0.25877703699547805],[114,239,68,-0.2571981928086696],[114,239,69,-0.25550102263613295],[114,239,70,-0.2536862026542823],[114,239,71,-0.2517545366823494],[114,239,72,-0.24970695840616164],[114,239,73,-0.2475445336074037],[114,239,74,-0.2452684623981799],[114,239,75,-0.2428800814611105],[114,239,76,-0.24038086629479738],[114,239,77,-0.23777243346470966],[114,239,78,-0.2350565428595025],[114,239,79,-0.23223509995272673],[114,240,64,-0.2600194230345678],[114,240,65,-0.25876843713969966],[114,240,66,-0.2573989122698229],[114,240,67,-0.2559111574684454],[114,240,68,-0.2543056015703683],[114,240,69,-0.25258279537865613],[114,240,70,-0.25074341384675025],[114,240,71,-0.24878825826579598],[114,240,72,-0.24671825845714557],[114,240,73,-0.24453447497011638],[114,240,74,-0.24223810128482737],[114,240,75,-0.2398304660203412],[114,240,76,-0.23731303514795188],[114,240,77,-0.23468741420966632],[114,240,78,-0.2319553505418932],[114,240,79,-0.2291187355042975],[114,241,64,-0.25716309312019814],[114,241,65,-0.25588115428312075],[114,241,66,-0.2544817842883236],[114,241,67,-0.2529652948149351],[114,241,68,-0.25133211607894956],[114,241,69,-0.2495827989784779],[114,241,70,-0.24771801724390852],[114,241,71,-0.24573856959304652],[114,241,72,-0.24364538189119422],[114,241,73,-0.24143950931625313],[114,241,74,-0.23912213852866782],[114,241,75,-0.23669458984644265],[114,241,76,-0.23415831942506826],[114,241,77,-0.23151492144240748],[114,241,78,-0.22876613028855464],[114,241,79,-0.22591382276062477],[114,242,64,-0.25423120564680723],[114,242,65,-0.2529173057006556],[114,242,66,-0.25148711794721534],[114,242,67,-0.24994095683242468],[114,242,68,-0.24827925404328366],[114,242,69,-0.24650256062027387],[114,242,70,-0.2446115490744445],[114,242,71,-0.24260701550923158],[114,242,72,-0.24048988174697528],[114,242,73,-0.23826119746021623],[114,242,74,-0.23592214230758723],[114,242,75,-0.23347402807453677],[114,242,76,-0.2309183008187179],[114,242,77,-0.2282565430200918],[114,242,78,-0.22549047573576242],[114,242,79,-0.22262196075949592],[114,243,64,-0.25122534301372856],[114,243,65,-0.249878486278567],[114,243,66,-0.248416520130179],[114,243,67,-0.24683976191495194],[114,243,68,-0.24514864488362242],[114,243,69,-0.24334372026975837],[114,243,70,-0.2414256593726526],[114,243,71,-0.2393952556446981],[114,243,72,-0.23725342678320815],[114,243,73,-0.23500121682676278],[114,243,74,-0.23263979825589698],[114,243,75,-0.23017047409836866],[114,243,76,-0.22759468003883954],[114,243,77,-0.22491398653301664],[114,243,78,-0.22213010092627272],[114,243,79,-0.21924486957669853],[114,244,64,-0.24814719013208553],[114,244,65,-0.24676639462188643],[114,244,66,-0.24527170260318043],[114,244,67,-0.24366343445881455],[114,244,68,-0.24194202509887863],[114,244,69,-0.24010802600414938],[114,244,70,-0.2381621072736846],[114,244,71,-0.23610505967663642],[114,244,72,-0.23393779670824766],[114,244,73,-0.23166135665011334],[114,244,74,-0.22927690463452033],[114,244,75,-0.22678573471310637],[114,244,76,-0.2241892719296692],[114,244,77,-0.22148907439717458],[114,244,78,-0.21868683537898104],[114,244,79,-0.2157843853742354],[114,245,64,-0.24499853001147376],[114,245,65,-0.24358282859829472],[114,245,66,-0.24205447751715148],[114,245,67,-0.24041380032564919],[114,245,68,-0.23866123369169623],[114,245,69,-0.2367973294008211],[114,245,70,-0.23482275636736694],[114,245,71,-0.23273830264963502],[114,245,72,-0.23054487746893948],[114,245,73,-0.22824351323265768],[114,245,74,-0.2258353675610847],[114,245,75,-0.22332172531833916],[114,245,76,-0.2207040006471458],[114,245,77,-0.2179837390075483],[114,245,78,-0.21516261921956492],[114,245,79,-0.2122424555097454],[114,246,64,-0.24178123940282414],[114,246,65,-0.24032968093865437],[114,246,66,-0.23876675296777305],[114,246,67,-0.23709278236304498],[114,246,68,-0.23530820765147276],[114,246,69,-0.23341358098430565],[114,246,70,-0.2314095701107468],[114,246,71,-0.22929696035532754],[114,246,72,-0.22707665659891374],[114,246,73,-0.2247496852634272],[114,246,74,-0.22231719630009106],[114,246,75,-0.21978046518144634],[114,246,76,-0.21714089489696498],[114,246,77,-0.21440001795231312],[114,246,78,-0.2115594983722766],[114,246,79,-0.20862113370730773],[114,247,64,-0.2384972844973745],[114,247,65,-0.2370089348941169],[114,247,66,-0.23541052861228473],[114,247,67,-0.233702395982619],[114,247,68,-0.2318849774952576],[114,247,69,-0.22995882573156945],[114,247,70,-0.22792460729929287],[114,247,71,-0.2257831047710559],[114,247,72,-0.22353521862623704],[114,247,73,-0.22118196919625288],[114,247,74,-0.21872449861307963],[114,247,75,-0.21616407276125693],[114,247,76,-0.21350208323319908],[114,247,77,-0.21074004928786605],[114,247,78,-0.20787961981280845],[114,247,79,-0.20492257528954494],[114,248,64,-0.2351487166816595],[114,248,65,-0.23362265994972087],[114,248,66,-0.23198789134323416],[114,248,67,-0.23024474479546098],[114,248,68,-0.2283936628664367],[114,248,69,-0.2264351986354709],[114,248,70,-0.22437001759665587],[114,248,71,-0.22219889955745398],[114,248,72,-0.21992274054033067],[114,248,73,-0.21754255468751604],[114,248,74,-0.2150594761686977],[114,248,75,-0.21247476109190355],[114,248,76,-0.2097897894173888],[114,248,77,-0.207006066874586],[114,248,78,-0.2041252268821332],[114,248,79,-0.20114903247093008],[114,249,64,-0.2317376683486866],[114,249,65,-0.23017300759464288],[114,249,66,-0.2285010110193343],[114,249,67,-0.2267220163051229],[114,249,68,-0.22483646819137248],[114,249,69,-0.22284492032657321],[114,249,70,-0.22074803712316415],[114,249,71,-0.2185465956151299],[114,249,72,-0.21624148731833337],[114,249,73,-0.21383372009367074],[114,249,74,-0.21132442001285012],[114,249,75,-0.20871483322705164],[114,249,76,-0.2060063278382861],[114,249,77,-0.2032003957735089],[114,249,78,-0.20029865466150176],[114,249,79,-0.1973028497124799],[114,250,64,-0.228266348765219],[114,250,65,-0.22666220714902752],[114,250,66,-0.2249521362533472],[114,250,67,-0.22313647765806544],[114,250,68,-0.22121567839392264],[114,250,69,-0.21919029275323065],[114,250,70,-0.21706098410297336],[114,250,71,-0.2148285267003638],[114,250,72,-0.2124938075108206],[114,250,73,-0.21005782802845185],[114,250,74,-0.20752170609884424],[114,250,75,-0.2048866777444185],[114,250,76,-0.20215409899216663],[114,250,77,-0.19932544770382732],[114,250,78,-0.19640232540851377],[114,250,79,-0.19338645913774954],[114,251,64,-0.22473703999507444],[114,251,65,-0.22309256164729885],[114,251,66,-0.22134359025690276],[114,251,67,-0.21949047145147405],[114,251,68,-0.2175336546677371],[114,251,69,-0.21547369491985263],[114,251,70,-0.21331125456977174],[114,251,71,-0.2110471050997219],[114,251,72,-0.20868212888678728],[114,251,73,-0.2062173209796706],[114,251,74,-0.2036537908774343],[114,251,75,-0.2009927643104834],[114,251,76,-0.1982355850236046],[114,251,77,-0.1953837165611182],[114,251,78,-0.19243874405415584],[114,251,79,-0.1894023760100232],[114,252,64,-0.22115209287861304],[114,252,65,-0.21946644377813385],[114,252,66,-0.21767776674242956],[114,252,67,-0.21578641159861878],[114,252,68,-0.21379283030651852],[114,252,69,-0.2116975786835268],[114,252,70,-0.20950131813122447],[114,252,71,-0.20720481736377372],[114,252,72,-0.20480895413807743],[114,252,73,-0.20231471698578696],[114,252,74,-0.19972320694695078],[114,252,75,-0.19703563930557633],[114,252,76,-0.19425334532690797],[114,252,77,-0.19137777399648748],[114,252,78,-0.18841049376100494],[114,252,79,-0.18535319427089825],[114,253,64,-0.21751392306833284],[114,253,65,-0.21578629188101095],[114,253,66,-0.2139571258821128],[114,253,67,-0.2120267792516765],[114,253,68,-0.20999570659215827],[114,253,69,-0.20786446460891672],[114,253,70,-0.20563371379207307],[114,253,71,-0.2033042200998244],[114,253,72,-0.20087685664317367],[114,253,73,-0.19835260537216715],[114,253,74,-0.19573255876342777],[114,253,75,-0.19301792150925845],[114,253,76,-0.19021001220811928],[114,253,77,-0.1873102650565439],[114,253,78,-0.18432023154250232],[114,253,79,-0.18124158214016983],[114,254,64,-0.21382500712047592],[114,254,65,-0.21205460599923887],[114,254,66,-0.21018419032378272],[114,254,67,-0.20821411878191443],[114,254,68,-0.2061448487406482],[114,254,69,-0.2039769378813303],[114,254,70,-0.20171104583578392],[114,254,71,-0.19934793582355848],[114,254,72,-0.1968884762902411],[114,254,73,-0.19433364254692498],[114,254,74,-0.19168451841062045],[114,254,75,-0.18894229784588557],[114,254,76,-0.18610828660747736],[114,254,77,-0.183183903884091],[114,254,78,-0.18017068394319236],[114,254,79,-0.1770702777769061],[114,255,64,-0.21008787864282957],[114,255,65,-0.20827394398964916],[114,255,66,-0.20636154126391892],[114,255,67,-0.20435103381742392],[114,255,68,-0.20224288190596018],[114,255,69,-0.2000376442781545],[114,255,70,-0.19773597976494312],[114,255,71,-0.19533864886979302],[114,255,72,-0.19284651535962727],[114,255,73,-0.19026054785654345],[114,255,74,-0.18758182143011654],[114,255,75,-0.18481151919055916],[114,255,76,-0.18195093388254258],[114,255,77,-0.17900146947974427],[114,255,78,-0.1759646427801289],[114,255,79,-0.17284208500192355],[114,256,64,-0.20630512449863292],[114,256,65,-0.2044469176888658],[114,256,66,-0.20249181457768245],[114,256,67,-0.20044018333831548],[114,256,68,-0.19829248724180026],[114,256,69,-0.19604928619856343],[114,256,70,-0.19371123830030362],[114,256,71,-0.19127910136224413],[114,256,72,-0.18875373446571808],[114,256,73,-0.18613609950118282],[114,256,74,-0.18342726271144305],[114,256,75,-0.18062839623536586],[114,256,76,-0.17774077965188795],[114,256,77,-0.1747658015243761],[114,256,78,-0.17170496094535548],[114,256,79,-0.16855986908156062],[114,257,64,-0.2024793810664926],[114,257,65,-0.20057618913605013],[114,257,66,-0.19857769700587358],[114,257,67,-0.1964842778292717],[114,257,68,-0.19429639802113485],[114,257,69,-0.19201461875139242],[114,257,70,-0.18963959743837966],[114,257,71,-0.1871720892422007],[114,257,72,-0.18461294855804733],[114,257,73,-0.1819631305095663],[114,257,74,-0.17922369244205927],[114,257,75,-0.17639579541579703],[114,257,76,-0.17348070569924617],[114,257,77,-0.17047979626227427],[114,257,78,-0.16739454826934108],[114,257,79,-0.16422655257263852],[114,258,64,-0.19861333055649416],[114,258,65,-0.19666446685231287],[114,258,66,-0.1946219223990101],[114,258,67,-0.1924860754896533],[114,258,68,-0.19025739581368895],[114,258,69,-0.18793644590138392],[114,258,70,-0.18552388256778912],[114,258,71,-0.18302045835631298],[114,258,72,-0.18042702298186286],[114,258,73,-0.1777445247736521],[114,258,74,-0.17497401211744945],[114,258,75,-0.1721166348975589],[114,258,76,-0.1691736459383254],[114,258,77,-0.166146402445231],[114,258,78,-0.16303636744559413],[114,258,79,-0.15984511122882672],[114,259,64,-0.19470969738242305],[114,259,65,-0.19271450217670483],[114,259,66,-0.19062726801843355],[114,259,67,-0.18844837850106883],[114,259,68,-0.18617830672131874],[114,259,69,-0.18381761667370466],[114,259,70,-0.18136696464425128],[114,259,71,-0.17882710060339257],[114,259,72,-0.1761988695980516],[114,259,73,-0.17348321314299076],[114,259,74,-0.17068117061120813],[114,259,75,-0.16779388062367323],[114,259,76,-0.1648225824381898],[114,259,77,-0.1617686173374584],[114,259,78,-0.15863343001634322],[114,259,79,-0.1554185699683054],[114,260,64,-0.19077124458998634],[114,260,65,-0.18872908565867685],[114,260,66,-0.1865965508943359],[114,260,67,-0.18437402935229452],[114,260,68,-0.18206199767115266],[114,260,69,-0.17966102141662732],[114,260,70,-0.17717175642412386],[114,260,71,-0.17459495014011867],[114,260,72,-0.17193144296231294],[114,260,73,-0.1691821695786564],[114,260,74,-0.16634816030501093],[114,260,75,-0.16343054242175165],[114,260,76,-0.16043054150909397],[114,260,77,-0.1573494827812144],[114,260,78,-0.15418879241917566],[114,260,79,-0.1509499989026134],[114,261,64,-0.18680077034123854],[114,261,65,-0.18471104350721418],[114,261,66,-0.18253262424091266],[114,261,67,-0.18026590722175656],[114,261,68,-0.17791137276670788],[114,261,69,-0.1754695881225865],[114,261,70,-0.17294120875669738],[114,261,71,-0.17032697964585902],[114,261,72,-0.16762773656379232],[114,261,73,-0.16484440736696893],[114,261,74,-0.16197801327868527],[114,261,75,-0.15902967017166736],[114,261,76,-0.15600058984898718],[114,261,77,-0.1528920813233633],[114,261,78,-0.14970555209485442],[114,261,79,-0.14644250942690262],[114,262,64,-0.18280110445511266],[114,262,65,-0.1806632340965444],[114,262,66,-0.17843837392854145],[114,262,67,-0.17612692441747002],[114,262,68,-0.17372936969688113],[114,262,69,-0.17124627880750548],[114,262,70,-0.16867830693513813],[114,262,71,-0.16602619664650586],[114,262,72,-0.1632907791230751],[114,262,73,-0.16047297539289995],[114,262,74,-0.15757379756027723],[114,262,75,-0.1545943500335138],[114,262,76,-0.15153583075058535],[114,262,77,-0.14839953240276127],[114,262,78,-0.14518684365620255],[114,262,79,-0.14189925037149032],[114,263,64,-0.17877510500395183],[114,263,65,-0.17658854452831585],[114,263,66,-0.17431671501287976],[114,263,67,-0.1719600228743315],[114,263,68,-0.16951895620270507],[114,263,69,-0.16699408594828474],[114,263,70,-0.16438606710597303],[114,263,71,-0.1616956398972128],[114,263,72,-0.15892363094942308],[114,263,73,-0.1560709544730507],[114,263,74,-0.1531386134359975],[114,263,75,-0.15012770073573617],[114,263,76,-0.14703940036888996],[114,263,77,-0.14387498859835085],[114,263,78,-0.14063583511794292],[114,263,79,-0.13732340421459277],[114,264,64,-0.1747256549662582],[114,264,65,-0.1724898872504631],[114,264,66,-0.17017058832110327],[114,264,67,-0.1677681707089842],[114,264,68,-0.16528312660209482],[114,264,69,-0.16271602897868087],[114,264,70,-0.16006753273734392],[114,264,71,-0.1573383758242623],[114,264,72,-0.1545293803574898],[114,264,73,-0.15164145374843585],[114,264,74,-0.1486755898202855],[114,264,75,-0.1456328699236757],[114,264,76,-0.14251446404939738],[114,264,77,-0.1393216319382044],[114,264,78,-0.13605572418773115],[114,264,79,-0.1327181833564824],[114,265,64,-0.17065565893547724],[114,265,65,-0.16837019673257625],[114,265,66,-0.16600295709509832],[114,265,67,-0.16355435883207053],[114,265,68,-0.1610248983723968],[114,265,69,-0.1584151508433813],[114,265,70,-0.15572577114583747],[114,265,71,-0.15295749502587425],[114,265,72,-0.15011114014331778],[114,265,73,-0.1471876071368754],[114,265,74,-0.14418788068579186],[114,265,75,-0.1411130305683232],[114,265,76,-0.13796421271679377],[114,265,77,-0.13474267026931647],[114,265,78,-0.1314497346181796],[114,265,79,-0.1280868264548643],[114,266,64,-0.16656803988495505],[114,266,65,-0.16423242619791328],[114,266,66,-0.16181680369174883],[114,266,67,-0.1593215976180144],[114,266,68,-0.15674730879088095],[114,266,69,-0.15409451461042328],[114,266,70,-0.1513638700820394],[114,266,71,-0.14855610883209697],[114,266,72,-0.14567204411976675],[114,266,73,-0.1427125698451463],[114,266,74,-0.1396786615534285],[114,266,75,-0.13657137743543663],[114,266,76,-0.13339185932429154],[114,266,77,-0.13014133368829484],[114,266,78,-0.12682111262002743],[114,266,79,-0.12343259482162722],[114,267,64,-0.1624657359888838],[114,267,65,-0.1600795444118686],[114,267,66,-0.15761512634013009],[114,267,67,-0.15507291363213932],[114,267,68,-0.1524534116329852],[114,267,69,-0.14975720014175936],[114,267,70,-0.1469849343746134],[114,267,71,-0.14413734592358768],[114,267,72,-0.14121524371116984],[114,267,73,-0.13821951494068774],[114,267,74,-0.13515112604228585],[114,267,75,-0.13201112361481554],[114,267,76,-0.12880063536339814],[114,267,77,-0.12552087103274695],[114,267,78,-0.12217312333624736],[114,267,79,-0.11875876888075948],[114,268,64,-0.15835169749945344],[114,268,65,-0.15591453252711923],[114,268,66,-0.15340093595583187],[114,268,67,-0.15081134641535243],[114,268,68,-0.1481462739285413],[114,268,69,-0.1454063008222033],[114,268,70,-0.1425920826331406],[114,268,71,-0.139704349009513],[114,268,72,-0.13674390460746177],[114,268,73,-0.13371162998310604],[114,268,74,-0.13060848247965617],[114,268,75,-0.1274354971099781],[114,268,76,-0.12419378743436515],[114,268,77,-0.12088454643360447],[114,268,78,-0.11750904737733742],[114,268,79,-0.11406864468767858],[114,269,64,-0.15422888368010917],[114,269,65,-0.1517403809853447],[114,269,66,-0.14917725301230683],[114,269,67,-0.146539945326287],[114,269,68,-0.1438289727758727],[114,269,69,-0.141044920346645],[114,269,70,-0.13818844400960945],[114,269,71,-0.13526027156446396],[114,269,72,-0.13226120347765913],[114,269,73,-0.12919211371536],[114,269,74,-0.1260539505710513],[114,269,75,-0.1228477374881245],[114,269,76,-0.11957457387720016],[114,269,77,-0.11623563592827313],[114,269,78,-0.11283217741768098],[114,269,79,-0.10936553050985826],[114,270,64,-0.1501002597948068],[114,270,65,-0.14756008647541435],[114,270,66,-0.1449471044691359],[114,270,67,-0.14226176644079136],[114,270,68,-0.13950459221365574],[114,270,69,-0.13667616956542522],[114,270,70,-0.13377715501844079],[114,270,71,-0.13080827462426664],[114,270,72,-0.12777032474258554],[114,270,73,-0.12466417281451642],[114,270,74,-0.12149075813009685],[114,270,75,-0.11825109259026906],[114,270,76,-0.11494626146312381],[114,270,77,-0.11157742413448751],[114,270,78,-0.10814581485285568],[114,270,79,-0.10465274346863213],[114,271,64,-0.14596879415347613],[114,271,65,-0.14337664894825175],[114,271,66,-0.140713520757424],[114,271,67,-0.1379798695089861],[114,271,68,-0.13517622015076208],[114,271,69,-0.13230316338809012],[114,271,70,-0.12936135641527602],[114,271,71,-0.12635152364091834],[114,271,72,-0.12327445740706355],[114,271,73,-0.12013101870230136],[114,271,74,-0.11692213786853523],[114,271,75,-0.1136488153017765],[114,271,76,-0.11031212214670771],[114,271,77,-0.10691320098510637],[114,271,78,-0.10345326651812786],[114,271,79,-0.09993360624241154],[114,272,64,-0.14183745521358931],[114,272,65,-0.1391930686882748],[114,272,66,-0.13647953282222164],[114,272,67,-0.13369731496977688],[114,272,68,-0.13084694535397556],[114,272,69,-0.12792901774541615],[114,272,70,-0.12494419013441399],[114,272,71,-0.12189318539653443],[114,272,72,-0.11877679195146496],[114,272,73,-0.11559586441533543],[114,272,74,-0.11235132424622218],[114,272,75,-0.10904416038318387],[114,272,76,-0.10567542987857581],[114,272,77,-0.1022462585237322],[114,272,78,-0.0987578414680163],[114,272,79,-0.09521144383120261],[114,273,64,-0.1377092087377264],[114,273,65,-0.13501234344129998],[114,273,66,-0.1322481692218614],[114,273,67,-0.1294171610227165],[114,273,68,-0.12651985449346875],[114,273,69,-0.12355684660959271],[114,273,70,-0.12052879628478391],[114,273,71,-0.11743642497619322],[114,273,72,-0.1142805172824996],[114,273,73,-0.11106192153493633],[114,273,74,-0.10778155038099896],[114,273,75,-0.10444038136119138],[114,273,76,-0.1010394574785492],[114,273,77,-0.09757988776103493],[114,273,78,-0.09406284781680258],[114,273,79,-0.09048958038229588],[114,274,64,-0.13358701500735015],[114,274,65,-0.1308374655991274],[114,274,66,-0.1280224532844274],[114,274,67,-0.12514246075743252],[114,274,68,-0.12219802924626405],[114,274,69,-0.11918975907278606],[114,274,70,-0.11611831020468089],[114,274,71,-0.11298440279990446],[114,274,72,-0.1097888177434761],[114,274,73,-0.10653239717671881],[114,274,74,-0.10321604501867476],[114,274,75,-0.0998407274800569],[114,274,76,-0.09640747356947321],[114,274,77,-0.09291737559201807],[114,274,78,-0.08937158964022923],[114,274,79,-0.08577133607737475],[114,275,64,-0.1294738260926851],[114,275,65,-0.1266714194406987],[114,275,66,-0.12380540032124832],[114,275,67,-0.1208762593405131],[114,275,68,-0.11788454345756638],[114,275,69,-0.11483085648397345],[114,275,70,-0.11171585957515029],[114,275,71,-0.10854027171359037],[114,275,72,-0.10530487018391743],[114,275,73,-0.10201049103987875],[114,275,74,-0.09865802956300135],[114,275,75,-0.09524844071327698],[114,275,76,-0.09178273957160726],[114,275,77,-0.08826200177410765],[114,275,78,-0.08468736393826581],[114,275,79,-0.08106002408091939],[114,276,64,-0.12537258317859373],[114,276,65,-0.12251717842972071],[114,276,66,-0.1196000148973071],[114,276,67,-0.11662159125974014],[114,276,68,-0.11358246035985803],[114,276,69,-0.11048322964393475],[114,276,70,-0.10732456159190862],[114,276,71,-0.10410717413896298],[114,276,72,-0.10083184108841742],[114,276,73,-0.09749939251604306],[114,276,74,-0.09411071516552466],[114,276,75,-0.0906667528354358],[114,276,76,-0.08716850675745863],[114,276,77,-0.083617035965946],[114,276,78,-0.0800134576588219],[114,276,79,-0.07635894754978584],[114,277,64,-0.12128621394666267],[114,277,65,-0.11837770256896907],[114,277,66,-0.11540928815878215],[114,277,67,-0.11238147762588918],[114,277,68,-0.10929482984997652],[114,277,69,-0.10614995605862504],[114,277,70,-0.10294752019602582],[114,277,71,-0.09968823928252657],[114,277,72,-0.09637288376496728],[114,277,73,-0.09300227785791881],[114,277,74,-0.08957729987554508],[114,277,75,-0.08609888255445869],[114,277,76,-0.0825680133672983],[114,277,77,-0.07898573482712712],[114,277,78,-0.07535314478264832],[114,277,79,-0.07167139670420225],[114,278,64,-0.1172176300133917],[114,278,65,-0.11425593581116461],[114,278,66,-0.11123619521761297],[114,278,67,-0.10815892353198608],[114,278,68,-0.10502468582406427],[114,278,69,-0.10183409725081782],[114,278,70,-0.09858782336325778],[114,278,71,-0.09528658040359134],[114,278,72,-0.0919311355926381],[114,278,73,-0.08852230740762435],[114,278,74,-0.08506096585007111],[114,278,75,-0.08154803270415106],[114,278,76,-0.07798448178523881],[114,278,77,-0.07437133917875599],[114,278,78,-0.07070968346930545],[114,278,79,-0.06700064596006094],[114,279,64,-0.11316972442438183],[114,279,65,-0.11015480352631679],[114,279,66,-0.1070836925929825],[114,279,67,-0.10395691546991298],[114,279,68,-0.10077504357028111],[114,279,69,-0.0975386961299054],[114,279,70,-0.0942485404519145],[114,279,71,-0.09090529214118448],[114,279,72,-0.08750971532850438],[114,279,73,-0.08406262288458904],[114,279,74,-0.08056487662364992],[114,279,75,-0.07701738749690695],[114,279,76,-0.07342111577575777],[114,279,77,-0.06977707122471172],[114,279,78,-0.0660863132640796],[114,279,79,-0.06234995112238689],[114,280,64,-0.10914536920473211],[114,280,65,-0.10607721002574577],[114,280,66,-0.1029547157099312],[114,280,67,-0.09977841880457994],[114,280,68,-0.09654889721949972],[114,280,69,-0.09326677442008191],[114,280,70,-0.08993271960949079],[114,280,71,-0.08654744790008606],[114,280,72,-0.08311172047403731],[114,280,73,-0.07962634473324948],[114,280,74,-0.07609217443830657],[114,280,75,-0.07251010983682082],[114,280,76,-0.06888109778090218],[114,280,77,-0.06520613183385376],[114,280,78,-0.0614862523660869],[114,280,79,-0.05772254664022203],[114,281,64,-0.10514741296553842],[114,281,65,-0.10202603614267691],[114,281,66,-0.0988521764549935],[114,281,67,-0.09562637530555246],[114,281,68,-0.09234921725387063],[114,281,69,-0.08902133014679298],[114,281,70,-0.08564338523794429],[114,281,71,-0.08221609729587476],[114,281,72,-0.07874022470085273],[114,281,73,-0.07521656953042932],[114,281,74,-0.07164597763347502],[114,281,75,-0.06802933869308414],[114,281,76,-0.06436758627805389],[114,281,77,-0.06066169788304887],[114,281,78,-0.05691269495744322],[114,281,79,-0.053121642922804635],[114,282,64,-0.10117867856639412],[114,282,65,-0.09800413686930404],[114,282,66,-0.09477896078875442],[114,282,67,-0.09150370073603015],[114,282,68,-0.08817894807315457],[114,282,69,-0.08480533518134764],[114,282,70,-0.08138353551751348],[114,282,71,-0.07791426365887388],[114,282,72,-0.07439827533570281],[114,282,73,-0.07083636745228694],[114,282,74,-0.06722937809580903],[114,282,75,-0.06357818653355402],[114,282,76,-0.05988371319814334],[114,282,77,-0.056146919660906736],[114,282,78,-0.052368808593384775],[114,282,79,-0.04855042371692769],[114,283,64,-0.09724196083409653],[114,283,65,-0.09401433905053042],[114,283,66,-0.09073792641553513],[114,283,67,-0.08741328249938995],[114,283,68,-0.08404100561903294],[114,283,69,-0.08062173284390872],[114,283,70,-0.07715613998929455],[114,283,71,-0.07364494159721963],[114,283,72,-0.07008889090493547],[114,283,73,-0.0664887798010611],[114,283,74,-0.06284543876909893],[114,283,75,-0.05915973681872261],[114,283,76,-0.05543258140454177],[114,283,77,-0.05166491833245396],[114,283,78,-0.047857731653574154],[114,283,79,-0.04401204354571109],[114,284,64,-0.09334002433745658],[114,284,65,-0.09005943913428088],[114,284,66,-0.08673190051010166],[114,284,67,-0.08335797734318484],[114,284,68,-0.07993827505729112],[114,284,69,-0.07647343556475206],[114,284,70,-0.07296413719646705],[114,284,71,-0.06941109461893957],[114,284,72,-0.06581505873830795],[114,284,73,-0.06217681659149693],[114,284,74,-0.058497191224181844],[114,284,75,-0.054777041555972183],[114,284,76,-0.051017262232515403],[114,284,77,-0.04721878346463165],[114,284,78,-0.043382570854472446],[114,284,79,-0.039509625208668686],[114,285,64,-0.08947560121811104],[114,285,65,-0.08614220097828545],[114,285,66,-0.0827636775012944],[114,285,67,-0.07934060912049526],[114,285,68,-0.07587360851776778],[114,285,69,-0.07236332260368764],[114,285,70,-0.06881043238406001],[114,285,71,-0.06521565281293312],[114,285,72,-0.06157973263204708],[114,285,73,-0.057903454196844145],[114,285,74,-0.05418763328873108],[114,285,75,-0.05043311891400337],[114,285,76,-0.046640793089128246],[114,285,77,-0.04281157061250093],[114,285,78,-0.038946398822663764],[114,285,79,-0.03504625734295652],[114,286,64,-0.08565138907753964],[114,286,65,-0.08226535371353855],[114,286,66,-0.07883601691278638],[114,286,67,-0.07536396660884384],[114,286,68,-0.07184982289228298],[114,286,69,-0.06829423782785887],[114,286,70,-0.06469789525747624],[114,286,71,-0.06106151058907272],[114,286,72,-0.057385830571374086],[114,286,73,-0.05367163305464956],[114,286,74,-0.04991972673715239],[114,286,75,-0.04613095089766264],[114,286,76,-0.04230617511382309],[114,286,77,-0.038446298966386794],[114,286,78,-0.03455225172936319],[114,286,79,-0.030624992046032362],[114,287,64,-0.08187004892018437],[114,287,65,-0.07843158966432878],[114,287,66,-0.07495164126086284],[114,287,67,-0.07143080138656449],[114,287,68,-0.06786969769043699],[114,287,69,-0.06426898754780955],[114,287,70,-0.060629357799664274],[114,287,71,-0.05695152447731408],[114,287,72,-0.053236232512384574],[114,287,73,-0.049484255432230895],[114,287,74,-0.04569639504047068],[114,287,75,-0.041873481083054775],[114,287,76,-0.03801637089956278],[114,287,77,-0.034125949059844285],[114,287,78,-0.030203126985990814],[114,287,79,-0.026248842559610658],[114,288,64,-0.07813420315257463],[114,288,65,-0.07464356232474395],[114,288,66,-0.07111323400912556],[114,288,67,-0.06754382576652826],[114,288,68,-0.06393597295317918],[114,288,69,-0.060290338411716216],[114,288,70,-0.056607612146834185],[114,288,71,-0.0528885109857124],[114,288,72,-0.04913377822317652],[114,288,73,-0.04534418325172512],[114,288,74,-0.04152052117610103],[114,288,75,-0.037663612412831865],[114,288,76,-0.033774302274424656],[114,288,77,-0.029853460538335513],[114,288,78,-0.02590198100070107],[114,288,79,-0.021920781014800744],[114,289,64,-0.07444643363866474],[114,289,65,-0.07090388439185788],[114,289,66,-0.0673234375803326],[114,289,67,-0.06370571078743881],[114,289,68,-0.06005134722436328],[114,289,69,-0.05636101535800664],[114,289,70,-0.05263540852293952],[114,289,71,-0.048875244517566835],[114,289,72,-0.04508126518445296],[114,289,73,-0.04125423597493985],[114,289,74,-0.03739494549773362],[114,289,75,-0.03350420505189022],[114,289,76,-0.02958284814388007],[114,289,77,-0.025631729988855156],[114,289,78,-0.021651726996104348],[114,289,79,-0.017643736238666358],[114,290,64,-0.07080927981121057],[114,290,65,-0.06721512585542591],[114,290,66,-0.06358485142519626],[114,290,67,-0.05991908426251874],[114,290,68,-0.05621847558010737],[114,290,69,-0.05248369962617874],[114,290,70,-0.048715453232739625],[114,290,71,-0.04491445534750657],[114,290,72,-0.04108144654940998],[114,290,73,-0.03721718854781628],[114,290,74,-0.03332246366514005],[114,290,75,-0.029398074303281452],[114,290,76,-0.025444842393564815],[114,290,77,-0.021463608830304598],[114,290,78,-0.01745523288798262],[114,290,79,-0.013420591622007205],[114,291,64,-0.06722523683931203],[114,291,65,-0.06357981214421587],[114,291,66,-0.05990003014826881],[114,291,67,-0.05618652888571732],[114,291,68,-0.05243996771609166],[114,291,69,-0.048661026825955356],[114,291,70,-0.044850406713577096],[114,291,71,-0.041008827656655145],[114,291,72,-0.0371370291630477],[114,291,73,-0.033235769404643595],[114,291,74,-0.029305824634041827],[114,291,75,-0.02534798858447959],[114,291,76,-0.021363071852682214],[114,291,77,-0.01735190126476094],[114,291,78,-0.013315319225143452],[114,291,79,-0.009254183048508224],[114,292,64,-0.06369675385195606],[114,292,65,-0.06000042232880731],[114,292,66,-0.05627148169074633],[114,292,67,-0.05251058039526829],[114,292,68,-0.048718386092620025],[114,292,69,-0.04489558506459926],[114,292,70,-0.041042881645694335],[114,292,71,-0.03716099762669425],[114,292,72,-0.033250671640724455],[114,292,73,-0.029312658531841923],[114,292,74,-0.025347728705855832],[114,292,75,-0.021356667463818063],[114,292,76,-0.01734027431785229],[114,292,77,-0.013299362289451111],[114,292,78,-0.00923475719022357],[114,292,79,-0.005147296885065794],[114,293,64,-0.06022623221775672],[114,293,65,-0.05647938738105904],[114,293,66,-0.05270166557039327],[114,293,67,-0.04889372579480264],[114,293,68,-0.045056244137652884],[114,293,69,-0.04118991313259751],[114,293,70,-0.03729544112129948],[114,293,71,-0.033373551593040035],[114,293,72,-0.029424982506168873],[114,293,73,-0.0254504855915319],[114,293,74,-0.02145082563753875],[114,293,75,-0.017426779757318572],[114,293,76,-0.013379136637630129],[114,293,77,-0.009308695769656677],[114,293,78,-0.005216266661667385],[114,293,79,-0.0011026680335186334],[114,294,64,-0.056816023880796374],[114,294,65,-0.05301908849014664],[114,294,66,-0.04919299117848794],[114,294,67,-0.04533840163191563],[114,294,68,-0.041456004507709227],[114,294,69,-0.037546498747612025],[114,294,70,-0.03361059687227891],[114,294,71,-0.029649024257027576],[114,294,72,-0.025662518388844383],[114,294,73,-0.021651828104783846],[114,294,74,-0.017617712811420008],[114,294,75,-0.013560941685803282],[114,294,76,-0.009482292857584465],[114,294,77,-0.005382552572438581],[114,294,78,-0.0012625143367701597],[114,294,79,0.0028770219563283156],[114,295,64,-0.05346842975248234],[114,295,65,-0.04962185543508334],[114,295,66,-0.04574781613370188],[114,295,67,-0.04184699233409907],[114,295,68,-0.03792007740654847],[114,295,69,-0.033967776856606555],[114,295,70,-0.02999080755646376],[114,295,71,-0.025989896957010802],[114,295,72,-0.021965782280573068],[114,295,73,-0.017919209694452],[114,295,74,-0.013850933464929771],[114,295,75,-0.00976171509219334],[114,295,76,-0.005652322425838088],[114,295,77,-0.0015235287610842196],[114,295,78,0.0026238880843130336],[114,295,79,0.006789146712486413],[114,296,64,-0.05018569815959657],[114,296,65,-0.04628996501390527],[114,296,66,-0.04236844469309528],[114,296,67,-0.038421828602224664],[114,296,68,-0.03445081896181859],[114,296,69,-0.030456127996338553],[114,296,70,-0.026438477102642383],[114,296,71,-0.022398595998570622],[114,296,72,-0.01833722185161249],[114,296,73,-0.014255098387790835],[114,296,74,-0.010152974980419768],[114,296,75,-0.006031605719194991],[114,296,76,-0.0018917484592738953],[114,296,77,0.002265836149519876],[114,296,78,0.0064403856533871845],[114,296,79,0.010631136805165753],[114,297,64,-0.046970023348445786],[114,297,65,-0.04302563952942583],[114,297,66,-0.03905712622013341],[114,297,67,-0.035065185861481024],[114,297,68,-0.031050529659574264],[114,297,69,-0.027013876712117427],[114,297,70,-0.022955953114218525],[114,297,71,-0.01887749104373125],[114,297,72,-0.014779227826086053],[114,297,73,-0.010661904978751024],[114,297,74,-0.006526267234973876],[114,297,75,-0.002373061547268504],[114,297,76,0.0017969639296998574],[114,297,77,0.005983060876694618],[114,297,78,0.01018448186797316],[114,297,79,0.01440048144986418],[114,298,64,-0.04382354404503272],[114,298,65,-0.039831045331479145],[114,298,66,-0.03581605370964151],[114,298,67,-0.03177928276968127],[114,298,68,-0.027721452836578855],[114,298,69,-0.023643290034743344],[114,298,70,-0.019545525331428754],[114,298,71,-0.015428893559096421],[114,298,72,-0.011294132416676025],[114,298,73,-0.007141981449865123],[114,298,74,-0.0029731810101178494],[114,298,75,0.0012115288072111416],[114,298,76,0.0054114092459167165],[114,298,77,0.009625723993048459],[114,298,78,0.013853740304092838],[114,298,79,0.018094730149258234],[114,299,64,-0.04074834207141426],[114,299,65,-0.03670829141582181],[114,299,66,-0.03264736236987107],[114,299,67,-0.028566279783116155],[114,299,68,-0.024465773230568498],[114,299,69,-0.020346576015806715],[114,299,70,-0.016209424152300603],[114,299,71,-0.012055055323089238],[114,299,72,-0.007884207818765851],[114,299,73,-0.003697619453910325],[114,299,74,5.039735383827737E-4],[114,299,75,0.004719837633411425],[114,299,76,0.008949243163559294],[114,299,77,0.013191465488636284],[114,299,78,0.01744578618788778],[114,299,79,0.021711494273698596],[114,300,64,-0.03774644101816172],[114,300,65,-0.03365942807960521],[114,300,66,-0.029553128261586833],[114,300,67,-0.025428277779861237],[114,300,68,-0.021285615588385126],[114,300,69,-0.017125882321253463],[114,300,70,-0.012949819212256755],[114,300,71,-0.008758166992199959],[114,300,72,-0.004551664763935016],[114,300,73,-3.310488552513702E-4],[114,300,74,0.0039029483507352844],[114,300,75,0.008149599607216527],[114,300,76,0.012408184017707123],[114,300,77,0.01667798827229851],[114,300,78,0.02095830790617438],[114,300,79,0.025248448580413085],[114,301,64,-0.034819804972844995],[114,301,65,-0.030686445633340387],[114,301,66,-0.0265353669940976],[114,301,67,-0.022367316740459817],[114,301,68,-0.018183043331899535],[114,301,69,-0.013983294883136672],[114,301,70,-0.009768818022283497],[114,301,71,-0.005540356726158754],[114,301,72,-0.0012986511327225288],[114,301,73,0.002955563669222727],[114,301,74,0.007221558873427604],[114,301,75,0.011498613212204394],[114,301,76,0.015786014235411244],[114,301,77,0.020083059612267327],[114,301,78,0.0243890584560222],[114,301,79,0.028703332671505044],[114,302,64,-0.03197033730470157],[114,302,65,-0.02779127316951801],[114,302,66,-0.023596032478393533],[114,302,67,-0.019385374486146186],[114,302,68,-0.015160057281890845],[114,302,69,-0.010920836609722966],[114,302,70,-0.006668464665834636],[114,302,71,-0.0024036888722076648],[114,302,72,0.0018727493731658072],[114,302,73,0.006160115969388388],[114,302,74,0.010457685409453762],[114,302,75,0.014764742100247068],[114,302,76,0.01908058170611472],[114,302,77,0.02340451251585771],[114,302,78,0.027735856833172142],[114,302,79,0.03207395239056245],[114,303,64,-0.029199879505404015],[114,303,65,-0.024975777387796275],[114,303,66,-0.02073701573730305],[114,303,67,-0.016484365474522263],[114,303,68,-0.012218594439794792],[114,303,69,-0.007940466153864987],[114,303,70,-0.003650738554381074],[114,303,71,6.498372916209315E-4],[114,303,72,0.004960518499298158],[114,303,73,0.009280571701499405],[114,303,74,0.013609274408549447],[114,303,75,0.01794591639182839],[114,303,76,0.02228980109151379],[114,303,77,0.02664024704833879],[114,303,78,0.030996589359390713],[114,303,79,0.035358181157974455],[114,304,64,-0.026510210085860443],[114,304,65,-0.022241761476690172],[114,304,66,-0.017960143772600766],[114,304,67,-0.013666139652617044],[114,304,68,-0.00936052682724806],[114,304,69,-0.005044076739566105],[114,304,70,-7.175532415310687E-4],[114,304,71,0.003618288754293637],[114,304,72,0.007962704647682194],[114,304,73,0.0123149615481967],[114,304,74,0.016674339697517422],[114,304,75,0.021040133916158454],[114,304,76,0.025411655074939518],[114,304,77,0.02978823159106604],[114,304,78,0.034169210948841386],[114,304,79,0.03855396124503718],[114,305,64,-0.02390304352919094],[114,305,65,-0.019590964051906454],[114,305,66,-0.015267178489214241],[114,305,67,-0.010932481367478493],[114,305,68,-0.006587660383582574],[114,305,69,-0.0022334950468936472],[114,305,70,0.0021292447041204206],[114,305,71,0.006499799910473513],[114,305,72,0.010877424026493294],[114,305,73,0.015261384378752817],[114,305,74,0.019650963650475833],[114,305,75,0.02404546139091713],[114,305,76,0.0284441955500919],[114,305,77,0.03284650403870466],[114,305,78,0.03725174631330224],[114,305,79,0.041659304986676554],[114,306,64,-0.021380029299805273],[114,306,65,-0.017025058151250185],[114,306,66,-0.012659815676452375],[114,306,67,-0.008285108334221268],[114,306,68,-0.0039017339211895527],[114,306,69,4.895198448417321E-4],[114,306,70,0.004887876767496864],[114,306,71,0.009292573640210189],[114,306,72,0.013702861740450913],[114,306,73,0.01811800834963738],[114,306,74,0.022537298299117964],[114,306,75,0.0269600355417157],[114,306,76,0.031385544749214324],[114,306,77,0.03581317293563335],[114,306,78,0.0402422911063198],[114,306,79,0.04467229593287871],[114,307,64,-0.018942750908516846],[114,307,65,-0.014545650286035085],[114,307,66,-0.010139684046188542],[114,307,67,-0.005725670661460361],[114,307,68,-0.0013044181386840659],[114,307,69,0.0031232774557083468],[114,307,70,0.007556633496968203],[114,307,71,0.011994882329691807],[114,307,72,0.016437272821913207],[114,307,73,0.020883071945474417],[114,307,74,0.02533156638305418],[114,307,75,0.02978206416134835],[114,307,76,0.034233896310782386],[114,307,77,0.038686418551602555],[114,307,78,0.04313901300637319],[114,307,79,0.047591089938903236],[114,308,64,-0.016592725033829504],[114,308,65,-0.012154279549137427],[114,308,66,-0.007708344328139272],[114,308,67,-0.003255749934274861],[114,308,68,0.001202685307983814],[114,308,69,0.005666156845432764],[114,308,70,0.010133875455555455],[114,308,71,0.01460506883291085],[114,308,72,0.01907898320254023],[114,308,73,0.02355488496024019],[114,308,74,0.02803206234008354],[114,308,75,0.03250982710867874],[114,308,76,0.03698751628655095],[114,308,77,0.041464493896489624],[114,308,78,0.045940152738891196],[114,308,79,0.0504139161941191],[114,309,64,-0.014331400699322386],[114,309,65,-0.009852416779617165],[114,309,66,-0.0053672884221613384],[114,309,67,-8.768583546231168E-4],[114,309,68,0.0036180446765518987],[114,309,69,0.008116607495414319],[114,309,70,0.012618034113491494],[114,309,71,0.017121547374323906],[114,309,72,0.021626390625606548],[114,309,73,0.026131829418783434],[114,309,74,0.03063715323647767],[114,309,75,0.03514167724724608],[114,309,76,0.039644744088042666],[114,309,77,0.04414572567423555],[114,309,78,0.04864402503720555],[114,309,79,0.053139078189549604],[114,310,64,-0.012160158507080604],[114,310,65,-0.0076414637838532196],[114,310,66,-0.0031179386075131515],[114,310,67,0.0014095620608456094],[114,310,68,0.005940198951657788],[114,310,69,0.010473150132533235],[114,310,70,0.015007612682196164],[114,310,71,0.01954280439256527],[114,310,72,0.02407796549902433],[114,310,73,0.02861236043872921],[114,310,74,0.03314527963733892],[114,310,75,0.03767604132365272],[114,310,76,0.04220399337254348],[114,310,77,0.04672851517602861],[114,310,78,0.05124901954250803],[114,310,79,0.05576495462419209],[114,311,64,-0.010080309927289227],[114,311,65,-0.005522752613312726],[114,311,66,-9.616468092024377E-4],[114,311,67,0.0036021402254591828],[114,311,68,0.008167758600114428],[114,311,69,0.012734377494623889],[114,311,70,0.017301186889536316],[114,311,71,0.02186739932508236],[114,311,72,0.026432251688942074],[114,311,73,0.030995007032631194],[114,311,74,0.03555495641689582],[114,311,75,0.040111420785594876],[114,311,76,0.04466375286846269],[114,311,77,0.04921133911259187],[114,311,78,0.053753601642666474],[114,311,79,0.058290000249968235],[114,312,64,-0.008093096643927947],[114,312,65,-0.0034975448988896762],[114,312,66,0.0011003060786458907],[114,312,67,0.005699576669737069],[114,312,68,0.01029940626831699],[114,312,69,0.014898955037682224],[114,312,70,0.01949740569644076],[114,312,71,0.02409396533376397],[114,312,72,0.028687867253993304],[114,312,73,0.03327837285044592],[114,312,74,0.0378647735088108],[114,312,75,0.04244639253961266],[114,312,76,0.04702258714013634],[114,312,77,0.051592750385653335],[114,312,78,0.056156313249978954],[114,312,79,0.0607127466553829],[114,313,64,-0.006199689956516097],[114,313,65,-0.001567031241762648],[114,313,66,0.0030667108124516895],[114,313,67,0.007700644171203155],[114,313,68,0.012333897421833717],[114,313,69,0.016965621584860688],[114,313,70,0.02159499195492391],[114,313,71,0.026221209971616546],[114,313,72,0.03084350512024797],[114,313,73,0.035461136862383474],[114,313,74,0.040073396596554664],[114,313,75,0.04467960964861363],[114,313,76,0.04927913729212785],[114,313,77,0.053871378798654],[114,313,78,0.05845577351792211],[114,313,79,0.06303180298795061],[114,314,64,-0.004401190238021421],[114,314,65,2.676693391130275E-4],[114,314,66,0.004936430361755992],[114,314,67,0.009604188326677823],[114,314,68,0.014270060927060416],[114,314,69,0.018933189917128265],[114,314,70,0.023592743007394015],[114,314,71,0.02824791579036197],[114,314,72,0.03289793369674099],[114,314,73,0.03754205398200802],[114,314,74,0.04217956774371981],[114,314,75,0.04680980196904211],[114,314,76,0.0514321216128967],[114,314,77,0.0560459317065623],[114,314,78,0.06065067949676117],[114,314,79,0.0652458566152532],[114,315,64,-0.002698626448837199],[114,315,65,0.0020055099029768486],[114,315,66,0.006708400414809537],[114,315,67,0.011409128067150567],[114,315,68,0.01610679957504016],[114,315,69,0.020800547305700273],[114,315,70,0.025489531227352064],[114,315,71,0.03017294088906472],[114,315,72,0.034849997431686014],[114,315,73,0.03951995562969568],[114,315,74,0.044182105964381185],[114,315,75,0.04883577672780201],[114,315,76,0.053480336157945174],[114,315,77,0.058115194604907244],[114,315,78,0.06273980672813467],[114,315,79,0.06735367372474449],[114,316,64,-0.0010929557068934115],[114,316,65,0.0036455160266295195],[114,316,66,0.008381629827105552],[114,316,67,0.013114456115162237],[114,316,68,0.017843090547377455],[114,316,69,0.022566655986162865],[114,316,70,0.027284304501405926],[114,316,71,0.03199521940371183],[114,316,72,0.0366986173092968],[114,316,73,0.04139375023637326],[114,316,74,0.046079907733428155],[114,316,75,0.05075641903885808],[114,316,76,0.055422655272365395],[114,316,77,0.0600780316579507],[114,316,78,0.06472200977853335],[114,316,79,0.06935409986222058],[114,317,64,4.149370861771806E-4],[114,317,65,0.005186786187277803],[114,317,66,0.009955201012938841],[114,317,67,0.014719239384783034],[114,317,68,0.019477985824333854],[114,317,69,0.024230553574384306],[114,317,70,0.028976086652691968],[114,317,71,0.03371376193783923],[114,317,72,0.03844279128731165],[114,317,73,0.04316242368763312],[114,317,74,0.047871947436962076],[114,317,75,0.05257069235960918],[114,317,76,0.05725803205288296],[114,317,77,0.06193338616609714],[114,317,78,0.06659622271177282],[114,317,79,0.07124606040905551],[114,318,64,0.0018242395627239283],[114,318,65,0.006628492088758431],[114,318,66,0.011428270279894126],[114,318,67,0.016222619324083504],[114,318,68,0.02101061253500014],[114,318,69,0.02579135342410377],[114,318,70,0.03056397780559411],[114,318,71,0.03532765593409312],[114,318,72,0.04008159467510741],[114,318,73,0.044825039708109804],[114,318,74,0.04955727776264551],[114,318,75,0.054277638886920526],[114,318,76,0.05898549874928227],[114,318,77,0.06368028097242304],[114,318,78,0.06836145950034186],[114,318,79,0.07302856099808328],[114,319,64,0.0031342121506652276],[114,319,65,0.007969878931195523],[114,319,66,0.012800068106315204],[114,319,67,0.017623812200155242],[114,319,68,0.02244017324960451],[114,319,69,0.027248244926259463],[114,319,70,0.03204715469182287],[114,319,71,0.03683606598678879],[114,319,72,0.04161418045246679],[114,319,73,0.04638074018618327],[114,319,74,0.051135030030067474],[114,319,75,0.05587637989287736],[114,319,76,0.06060416710527605],[114,319,77,0.0653178188083913],[114,319,78,0.0700168143756903],[114,319,79,0.07470068786819142],[115,-64,64,-0.09183966376910335],[115,-64,65,-0.09536408287126674],[115,-64,66,-0.09878280218352165],[115,-64,67,-0.10209437343676564],[115,-64,68,-0.10529749727935467],[115,-64,69,-0.10839102876760975],[115,-64,70,-0.11137398291911405],[115,-64,71,-0.1142455403287026],[115,-64,72,-0.11700505284716733],[115,-64,73,-0.11965204932258611],[115,-64,74,-0.1221862414045155],[115,-64,75,-0.12460752941072029],[115,-64,76,-0.12691600825669958],[115,-64,77,-0.1291119734478835],[115,-64,78,-0.13119592713454942],[115,-64,79,-0.13316858422943612],[115,-63,64,-0.08610918184905036],[115,-63,65,-0.08962199500824164],[115,-63,66,-0.09302973275700066],[115,-63,67,-0.09633094353140581],[115,-63,68,-0.09952432409472989],[115,-63,69,-0.10260872501991425],[115,-63,70,-0.10558315623485826],[115,-63,71,-0.10844679263043544],[115,-63,72,-0.11119897973124782],[115,-63,73,-0.11383923942903817],[115,-63,74,-0.11636727577899086],[115,-63,75,-0.11878298085860128],[115,-63,76,-0.12108644068936936],[115,-63,77,-0.12327794122119173],[115,-63,78,-0.1253579743795028],[115,-63,79,-0.1273272441751443],[115,-62,64,-0.0803020271787872],[115,-62,65,-0.08380250143771661],[115,-62,66,-0.08719855015372113],[115,-62,67,-0.09048871838228123],[115,-62,68,-0.09367169889052351],[115,-62,69,-0.09674633763123208],[115,-62,70,-0.09971163927970439],[115,-62,71,-0.10256677283336035],[115,-62,72,-0.10531107727412081],[115,-62,73,-0.10794406729346961],[115,-62,74,-0.11046543908043382],[115,-62,75,-0.11287507617216208],[115,-62,76,-0.11517305536735134],[115,-62,77,-0.11735965270240512],[115,-62,78,-0.11943534949036738],[115,-62,79,-0.12140083842261129],[115,-61,64,-0.07442252781924619],[115,-61,65,-0.0779099373124229],[115,-61,66,-0.08129359628839683],[115,-61,67,-0.08457204633783211],[115,-61,68,-0.08774397612252194],[115,-61,69,-0.0908082268405127],[115,-61,70,-0.0937637977541026],[115,-61,71,-0.09660985178061998],[115,-61,72,-0.09934572114599871],[115,-61,73,-0.10197091310106676],[115,-61,74,-0.10448511570077923],[115,-61,75,-0.10688820364607632],[115,-61,76,-0.10918024418862105],[115,-61,77,-0.11136150309829285],[115,-61,78,-0.11343245069348684],[115,-61,79,-0.11539376793419476],[115,-60,64,-0.06847505485228789],[115,-60,65,-0.07194868128279219],[115,-60,66,-0.07531925703379438],[115,-60,67,-0.07858532014853836],[115,-60,68,-0.08174555507624215],[115,-60,69,-0.0847987981279189],[115,-60,70,-0.08774404299509664],[115,-60,71,-0.09058044633134688],[115,-60,72,-0.09330733339663744],[115,-60,73,-0.09592420376442556],[115,-60,74,-0.09843073709172256],[115,-60,75,-0.10082679895181124],[115,-60,76,-0.10311244672987097],[115,-60,77,-0.1052879355813855],[115,-60,78,-0.10735372445338132],[115,-60,79,-0.10931048216848116],[115,-59,64,-0.06246401745788177],[115,-59,65,-0.06592315056472764],[115,-59,66,-0.0692799572795123],[115,-59,67,-0.0725329720171215],[115,-59,68,-0.07568087490897324],[115,-59,69,-0.07872249724911917],[115,-59,70,-0.08165682700327392],[115,-59,71,-0.08448301438067873],[115,-59,72,-0.08720037746881582],[115,-59,73,-0.08980840793089173],[115,-59,74,-0.09230677676631605],[115,-59,75,-0.09469534013386371],[115,-59,76,-0.09697414523776893],[115,-59,77,-0.09914343627662758],[115,-59,78,-0.10120366045516327],[115,-59,79,-0.10315547405882708],[115,-58,64,-0.05639385786704987],[115,-58,65,-0.05983779588267879],[115,-58,66,-0.0631801558656242],[115,-58,67,-0.06641946852319314],[115,-58,68,-0.06955440956585834],[115,-58,69,-0.07258380514323381],[115,-58,70,-0.07550663734300211],[115,-58,71,-0.07832204975270596],[115,-58,72,-0.08102935308441384],[115,-58,73,-0.08362803086218284],[115,-58,74,-0.08611774517254245],[115,-58,75,-0.08849834247768829],[115,-58,76,-0.09076985949163385],[115,-58,77,-0.0929325291191988],[115,-58,78,-0.09498678645788317],[115,-58,79,-0.09693327486260617],[115,-57,64,-0.05026904619089845],[115,-57,65,-0.05369709628834951],[115,-57,66,-0.057024340391515826],[115,-57,67,-0.06024930542267204],[115,-57,68,-0.06337066257034485],[115,-57,69,-0.0663872327147621],[115,-57,70,-0.06929799191627684],[115,-57,71,-0.07210207696668014],[115,-57,72,-0.07479879100341569],[115,-57,73,-0.07738760918661758],[115,-57,74,-0.0798681844391933],[115,-57,75,-0.08224035324964463],[115,-57,76,-0.08450414153787067],[115,-57,77,-0.08665977058383367],[115,-57,78,-0.0887076630191379],[115,-57,79,-0.09064844888149692],[115,-56,64,-0.0440940751255835],[115,-56,65,-0.0475055538548832],[115,-56,66,-0.05081702189976378],[115,-56,67,-0.054027002321823114],[115,-56,68,-0.05713416168884877],[115,-56,69,-0.06013731548933976],[115,-56,70,-0.06303543361003094],[115,-56,71,-0.06582764587633072],[115,-56,72,-0.06851324765568678],[115,-56,73,-0.07109170552379851],[115,-56,74,-0.0735626629939019],[115,-56,75,-0.07592594630881588],[115,-56,76,-0.07818157029599815],[115,-56,77,-0.080329744285488],[115,-56,78,-0.08237087809078725],[115,-56,79,-0.08430558805265609],[115,-55,64,-0.03787345453305502],[115,-55,65,-0.04126768824636995],[115,-55,66,-0.0445627294348917],[115,-55,67,-0.04775709722575494],[115,-55,68,-0.050849453469477224],[115,-55,69,-0.05383860814316399],[115,-55,70,-0.05672352481674148],[115,-55,71,-0.05950332618212917],[115,-55,72,-0.062177299645363004],[115,-55,73,-0.06474490298159108],[115,-55,74,-0.06720577005316719],[115,-55,75,-0.06955971659053028],[115,-55,76,-0.07180674603611703],[115,-55,77,-0.07394705545118796],[115,-55,78,-0.07598104148561613],[115,-55,79,-0.07790930641061466],[115,-54,64,-0.031611705897890086],[115,-54,65,-0.03498803116298632],[115,-54,66,-0.03826600447732498],[115,-54,67,-0.04144414096169069],[115,-54,68,-0.0445210976551188],[115,-54,69,-0.04749567890640338],[115,-54,70,-0.05036684182865403],[115,-54,71,-0.05313370181681598],[115,-54,72,-0.05579553812816673],[115,-54,73,-0.05835179952570935],[115,-54,74,-0.06080210998468705],[115,-54,75,-0.06314627446190857],[115,-54,76,-0.06538428472813096],[115,-54,77,-0.0675163252633807],[115,-54,78,-0.06954277921525975],[115,-54,79,-0.07146423442021732],[115,-53,64,-0.02531335666006318],[115,-53,65,-0.02867112066161437],[115,-53,66,-0.03193139525238575],[115,-53,67,-0.03509269147685934],[115,-53,68,-0.03815366147075061],[115,-53,69,-0.04111310384043798],[115,-53,70,-0.043969969105466356],[115,-53,71,-0.04672336520403697],[115,-53,72,-0.049372563061499286],[115,-53,73,-0.05191700222176121],[115,-53,74,-0.054356296541845595],[115,-53,75,-0.05669023994928013],[115,-53,76,-0.05891881226257045],[115,-53,77,-0.061042185074633326],[115,-53,78,-0.0630607276992401],[115,-53,79,-0.06497501318044763],[115,-52,64,-0.01898293442348875],[115,-52,65,-0.022321495351780185],[115,-52,66,-0.025563450914163455],[115,-52,67,-0.028707308010843535],[115,-52,68,-0.03175171378479902],[115,-52,69,-0.03469546098876408],[115,-52,70,-0.037537493415307654],[115,-52,71,-0.040276911389922954],[115,-52,72,-0.042912977327139834],[115,-52,73,-0.04544512134958145],[115,-52,74,-0.04787294697018807],[115,-52,75,-0.05019623683730012],[115,-52,76,-0.05241495854284517],[115,-52,77,-0.05452927049350931],[115,-52,78,-0.056539527844942095],[115,-52,79,-0.05844628849897282],[115,-51,64,-0.012624961040656357],[115,-51,65,-0.015943688467223716],[115,-51,66,-0.01916671560458494],[115,-51,67,-0.022292545142702402],[115,-51,68,-0.025319819144870137],[115,-51,69,-0.028247324401884377],[115,-51,70,-0.031073997849336732],[115,-51,71,-0.03379893204793516],[115,-51,72,-0.036421380726875396],[115,-51,73,-0.03894076439017635],[115,-51,74,-0.04135667598620718],[115,-51,75,-0.04366888664009416],[115,-51,76,-0.04587735144925709],[115,-51,77,-0.04798221534194924],[115,-51,78,-0.0499838189988574],[115,-51,79,-0.051882704837732274],[115,-50,64,-0.0062439465732063715],[115,-50,65,-0.009542221812955498],[115,-50,66,-0.01274572238752747],[115,-50,67,-0.015852946712718197],[115,-50,68,-0.018862531687701356],[115,-50,69,-0.02177325803603425],[115,-50,70,-0.02458405570980282],[115,-50,71,-0.02729400935682269],[115,-50,72,-0.029902363850908054],[115,-50,73,-0.03240852988513032],[115,-50,74,-0.03481208962828686],[115,-50,75,-0.03711280244427506],[115,-50,76,-0.03931061067461572],[115,-50,77,-0.04140564548400438],[115,-50,78,-0.04339823276894117],[115,-50,79,-0.045288899129418025],[115,-49,64,1.5561687173182293E-4],[115,-49,65,-0.0031215995876203717],[115,-49,66,-0.006304987057801692],[115,-49,67,-0.009393039618589949],[115,-49,68,-0.012384388923157297],[115,-49,69,-0.015277809525561015],[115,-49,70,-0.01807222427139421],[115,-49,71,-0.020766709751514734],[115,-49,72,-0.023360501818862844],[115,-49,73,-0.025853001168291256],[115,-49,74,-0.02824377897962549],[115,-49,75,-0.030532582623651994],[115,-49,76,-0.032719341431277416],[115,-49,77,-0.034804172525735866],[115,-49,78,-0.036787386717899495],[115,-49,79,-0.038669494464662946],[115,-48,64,0.006569261429096751],[115,-48,65,0.0033136979184935633],[115,-48,66,1.5099817465902277E-4],[115,-48,67,-0.0029173274864141563],[115,-48,68,-0.005889905392605699],[115,-48,69,-0.008765503829302412],[115,-48,70,-0.011543038416214402],[115,-48,71,-0.014221577547288922],[115,-48,72,-0.016800347893734746],[115,-48,73,-0.019278739970079783],[115,-48,74,-0.021656313763479984],[115,-48,75,-0.023932804425978005],[115,-48,76,-0.02610812802995155],[115,-48,77,-0.028182387386634145],[115,-48,78,-0.030155877927756758],[115,-48,79,-0.03202909365028728],[115,-47,64,0.012992549887522742],[115,-47,65,0.009759220749971598],[115,-47,66,0.0066177711255731575],[115,-47,67,0.003569715783720895],[115,-47,68,6.16433798493965E-4],[115,-47,69,-0.0022408367507884552],[115,-47,70,-0.0050010041422142715],[115,-47,71,-0.007663128437043865],[115,-47,72,-0.010226426968605762],[115,-47,73,-0.012690279894248202],[115,-47,74,-0.015054235810559202],[115,-47,75,-0.01731801743155925],[115,-47,76,-0.019481527330102888],[115,-47,77,-0.021544853742374914],[115,-47,78,-0.023508276435524778],[115,-47,79,-0.02537227263842301],[115,-46,64,0.019421082225195452],[115,-46,65,0.01621055583747233],[115,-46,66,0.013090906202209429],[115,-46,67,0.010063652597686268],[115,-46,68,0.007130179573951789],[115,-46,69,0.004291731667893317],[115,-46,70,0.0015494080550831901],[115,-46,71,-0.0010958428615108762],[115,-46,72,-0.0036432289259674677],[115,-46,73,-0.006092119766928472],[115,-46,74,-0.0084420523984029],[115,-46,75,-0.010692736883565535],[115,-46,76,-0.012844062061783235],[115,-46,77,-0.014896101338754963],[115,-46,78,-0.01684911853981197],[115,-46,79,-0.018703573826357345],[115,-45,64,0.025850502269611053],[115,-45,65,0.022663333673289654],[115,-45,66,0.01956602109408434],[115,-45,67,0.016560088372482906],[115,-45,68,0.013646925605832916],[115,-45,69,0.010827783878241348],[115,-45,70,0.008103769927234938],[115,-45,71,0.0054758407472611514],[115,-45,72,0.002944798130020465],[115,-45,73,5.112831417040109E-4],[115,-45,74,-0.0018242294630764766],[115,-45,75,-0.004061436890371639],[115,-45,76,-0.006200214019225214],[115,-45,77,-0.008240619177136366],[115,-45,78,-0.010182899978703697],[115,-45,79,-0.012027499227425853],[115,-44,64,0.03227650448139918],[115,-44,65,0.02911323511143349],[115,-44,66,0.026038783588618664],[115,-44,67,0.02305467836679298],[115,-44,68,0.020162315159225286],[115,-44,69,0.017362951683654648],[115,-44,70,0.0146577023440696],[115,-44,71,0.01204753284931337],[115,-44,72,0.009533254768498756],[115,-44,73,0.007115520023309951],[115,-44,74,0.0047948153169796726],[115,-44,75,0.002571456500232272],[115,-44,76,4.4558287396279095E-4],[115,-44,77,-0.0015828485712378049],[115,-44,78,-0.00351406897875306],[115,-44,79,-0.005348503512790814],[115,-43,64,0.038694840862379065],[115,-43,65,0.03555599829240186],[115,-43,66,0.032504918511922276],[115,-43,67,0.02954313463708036],[115,-43,68,0.026672048062964415],[115,-43,69,0.023892923224087426],[115,-43,70,0.02120688229159018],[115,-43,71,0.01861489980724884],[115,-43,72,0.016117797254274757],[115,-43,73,0.013716237564983302],[115,-43,74,0.011410719565120742],[115,-43,75,0.009201572355137078],[115,-43,76,0.007088949628177632],[115,-43,77,0.005072823924903602],[115,-43,78,0.0031529808250967406],[115,-43,79,0.0013290130760678087],[115,-42,64,0.045101327987514206],[115,-42,65,0.04198742569230607],[115,-42,66,0.03896021479437295],[115,-42,67,0.036021233118907814],[115,-42,68,0.03317188780597313],[115,-42,69,0.03041345008670926],[115,-42,70,0.027747049996250328],[115,-42,71,0.025173671023427713],[115,-42,72,0.02269414469724862],[115,-42,73,0.020309145110225635],[115,-42,74,0.01801918337834607],[115,-42,75,0.01582460203797109],[115,-42,76,0.013725569379434477],[115,-42,77,0.011722073717454484],[115,-42,78,0.009813917598310296],[115,-42,79,0.008000711943805916],[115,-41,64,0.05149185416093871],[115,-41,65,0.04840339129652449],[115,-41,66,0.045400532661162396],[115,-41,67,0.042484820833640025],[115,-41,68,0.039657668759396136],[115,-41,69,0.03692035454274245],[115,-41,70,0.034274016175775746],[115,-41,71,0.03171964620406087],[115,-41,72,0.02925808632907334],[115,-41,73,0.026890021947472698],[115,-41,74,0.024615976627002212],[115,-41,75,0.022436306519298843],[115,-41,76,0.020351194709387288],[115,-41,77,0.018360645501968254],[115,-41,78,0.016464478644457103],[115,-41,79,0.014662323486790863],[115,-40,64,0.05786238669620469],[115,-40,65,0.05479984789803616],[115,-40,66,0.05182181094795857],[115,-40,67,0.04892982322068651],[115,-40,68,0.046125303524675254],[115,-40,69,0.043409536910629765],[115,-40,70,0.04078366941668754],[115,-40,71,0.03824870275035819],[115,-40,72,0.035805488907202254],[115,-40,73,0.03345472472632727],[115,-40,74,0.031196946382493485],[115,-40,75,0.029032523815112232],[115,-40,76,0.026961655093912795],[115,-40,77,0.024984360721386767],[115,-40,78,0.02310047787196623],[115,-40,79,0.021309654567954084],[115,-39,64,0.06420897932044267],[115,-39,65,0.06117283452011957],[115,-39,66,0.058220074541375455],[115,-39,67,0.05535225159497292],[115,-39,68,0.05257079040725732],[115,-39,69,0.04987698304521859],[115,-39,70,0.047271983678210505],[115,-39,71,0.044756803276411516],[115,-39,72,0.0423323042460082],[115,-39,73,0.03999919500118143],[115,-39,74,0.03775802447268406],[115,-39,75,0.03560917655329776],[115,-39,76,0.03355286447994077],[115,-39,77,0.031589125152538866],[115,-39,78,0.029717813389612213],[115,-39,79,0.0279385961206009],[115,-38,64,0.07052777970257917],[115,-38,65,0.06751848396356941],[115,-38,66,0.06459144194439737],[115,-38,67,0.06174821072978676],[115,-38,68,0.058990221016080535],[115,-38,69,0.05631877195311141],[115,-38,70,0.0537350259227144],[115,-38,71,0.051240003253964606],[115,-38,72,0.04883457687512538],[115,-38,73,0.046519466902379736],[115,-38,74,0.04429523516514189],[115,-38,75,0.04216227966823061],[115,-38,76,0.04012082899067804],[115,-38,77,0.03817093662128712],[115,-38,78,0.036312475230889874],[115,-38,79,0.0345451308813286],[115,-37,64,0.0768150371057883],[115,-37,65,0.07383303047860157],[115,-37,66,0.07093213296693068],[115,-37,67,0.06811390656517291],[115,-37,68,0.065379787989015],[115,-37,69,0.06273108353435752],[115,-37,70,0.06016896387286863],[115,-37,71,0.05769445878424839],[115,-37,72,0.055308451825188065],[115,-37,73,0.05301167493509784],[115,-37,74,0.05080470297840112],[115,-37,75,0.04868794822367406],[115,-37,76,0.04666165475940809],[115,-37,77,0.04472589284650419],[115,-37,78,0.04288055320745554],[115,-37,79,0.041125341252235215],[115,-36,64,0.08306711016382806],[115,-36,65,0.08011281756109923],[115,-36,66,0.0772384765411358],[115,-36,67,0.07444565404153147],[115,-36,68,0.0717357928439083],[115,-36,69,0.06911020645013355],[115,-36,70,0.0665700738951539],[115,-36,71,0.06411643449652393],[115,-36,72,0.06175018254061637],[115,-36,73,0.05947206190558607],[115,-36,74,0.057282660620888826],[115,-36,75,0.055182405363627174],[115,-36,76,0.05317155589150846],[115,-36,77,0.051250199412519626],[115,-36,78,0.04941824489127444],[115,-36,79,0.047675417292054934],[115,-35,64,0.0892804747815481],[115,-35,65,0.08635430587348802],[115,-35,66,0.08350691866182791],[115,-35,67,0.08073988505870311],[115,-35,68,0.07805465395552247],[115,-35,69,0.07545254611670515],[115,-35,70,0.07293474901002384],[115,-35,71,0.07050231157362818],[115,-35,72,0.06815613891973638],[115,-35,73,0.06589698697506652],[115,-35,74,0.06372545705780941],[115,-35,75,0.0616419903914156],[115,-35,76,0.059646862554980085],[115,-35,77,0.057740177870330034],[115,-35,78,0.05592186372577246],[115,-35,79,0.05419166483652216],[115,-34,64,0.09545173215936198],[115,-34,65,0.09255408129003173],[115,-34,66,0.08973403045173456],[115,-34,67,0.08699315656033546],[115,-34,68,0.08433291465815662],[115,-34,69,0.08175463282545736],[115,-34,70,0.07925950702850382],[115,-34,71,0.07684859590430915],[115,-34,72,0.07452281548202722],[115,-34,73,0.07228293384107287],[115,-34,74,0.07012956570577178],[115,-34,75,0.06806316697681081],[115,-34,76,0.0660840291992727],[115,-34,77,0.06419227396736171],[115,-34,78,0.06238784726577551],[115,-34,79,0.06067051374774424],[115,-33,64,0.10157761694195644],[115,-33,65,0.09870886306682003],[115,-33,66,0.09591651635188769],[115,-33,67,0.09320215874380244],[115,-33,68,0.0905672514742264],[115,-33,69,0.08801312998927091],[115,-33,70,0.08554099881550659],[115,-33,71,0.08315192636262969],[115,-33,72,0.08084683966277018],[115,-33,73,0.07862651904651397],[115,-33,74,0.0764915927554427],[115,-33,75,0.0744425314914604],[115,-33,76,0.07247964290269349],[115,-33,77,0.07060306600606792],[115,-33,78,0.06881276554652116],[115,-33,79,0.06710852629286868],[115,-32,64,0.10765500549091156],[115,-32,65,0.10481551213612661],[115,-32,66,0.10205122243682163],[115,-32,67,0.09936372339535382],[115,-32,68,0.09675448246847529],[115,-32,69,0.0942248425149157],[115,-32,70,0.09177601667953272],[115,-32,71,0.08940908321410745],[115,-32,72,0.08712498023476967],[115,-32,73,0.0849245004161252],[115,-32,74,0.08280828562188902],[115,-32,75,0.08077682147229337],[115,-32,76,0.07883043184805705],[115,-32,77,0.07696927333102077],[115,-32,78,0.07519332958140423],[115,-32,79,0.07350240565170718],[115,-31,64,0.11368092428138687],[115,-31,65,0.1108710395252871],[115,-31,66,0.10813514485473119],[115,-31,67,0.10547483235064292],[115,-31,68,0.10289157572797081],[115,-31,69,0.10038672530161497],[115,-31,70,0.09796150288891137],[115,-31,71,0.0956169966487479],[115,-31,72,0.09335415585730245],[115,-31,73,0.09117378562046641],[115,-31,74,0.08907654152276834],[115,-31,75,0.08706292421305728],[115,-31,76,0.08513327392673775],[115,-31,77,0.08328776494465884],[115,-31,78,0.0815263999886141],[115,-31,79,0.07984900455347399],[115,-30,64,0.1196525584230318],[115,-30,65,0.11687261490025913],[115,-30,66,0.11416543839275184],[115,-30,67,0.11153262608080028],[115,-30,68,0.10897565796804809],[115,-30,69,0.10649589186594444],[115,-30,70,0.10409455831474479],[115,-30,71,0.10177275544113418],[115,-30,72,0.09953144375245793],[115,-30,73,0.09737144086763039],[115,-30,74,0.09529341618453224],[115,-30,75,0.09329788548415563],[115,-30,76,0.09138520547129125],[115,-30,77,0.08955556825185784],[115,-30,78,0.08780899574683365],[115,-30,79,0.08614533404280666],[115,-29,64,0.1255672603048006],[115,-29,65,0.12281757523354231],[115,-29,66,0.12013942516703557],[115,-29,67,0.11753441240372364],[115,-29,68,0.11500402326387527],[115,-29,69,0.11254962309273842],[115,-29,70,0.11017245120023089],[115,-29,71,0.10787361573724341],[115,-29,72,0.10565408850854108],[115,-29,73,0.1035146997223313],[115,-29,74,0.10145613267631082],[115,-29,75,0.09947891838045009],[115,-29,76,0.09758343011630966],[115,-29,77,0.09576987793298797],[115,-29,78,0.09403830307966166],[115,-29,79,0.09238857237473441],[115,-28,64,0.13142255836384087],[115,-28,65,0.12870343359663006],[115,-28,66,0.12605460343780106],[115,-28,67,0.12347767532076126],[115,-28,68,0.12097414190781464],[115,-28,69,0.1185453761121793],[115,-28,70,0.11619262605653435],[115,-28,71,0.11391700996816756],[115,-28,72,0.11171951101071431],[115,-28,73,0.10960097205255004],[115,-28,74,0.10756209037165543],[115,-28,75,0.10560341229720693],[115,-28,76,0.10372532778769028],[115,-28,77,0.10192806494563633],[115,-28,78,0.1002116844689388],[115,-28,79,0.09857607403877156],[115,-27,64,0.13721616597859698],[115,-27,65,0.13452788807713112],[115,-27,66,0.13190865654948958],[115,-27,67,0.1293600839789263],[115,-27,68,0.12688366939271956],[115,-27,69,0.1244807933032086],[115,-27,70,0.1221527126853521],[115,-27,71,0.11990055589087911],[115,-27,72,0.11772531749901904],[115,-27,73,0.11562785310387869],[115,-27,74,0.11360887403828301],[115,-27,75,0.11166894203432975],[115,-27,76,0.10980846382046017],[115,-27,77,0.10802768565514143],[115,-27,78,0.10632668779712307],[115,-27,79,0.10470537891228193],[115,-26,64,0.14294599048582834],[115,-26,65,0.14028883082026278],[115,-26,66,0.1376994619957328],[115,-26,67,0.13517950175834104],[115,-26,68,0.13273045552086438],[115,-26,69,0.13035371142295693],[115,-26,70,0.12805053532786648],[115,-26,71,0.12582206575573518],[115,-26,72,0.12366930875347071],[115,-26,73,0.12159313270125582],[115,-26,74,0.11959426305551224],[115,-26,75,0.11767327702857056],[115,-26,76,0.11583059820484731],[115,-26,77,0.11406649109362554],[115,-26,78,0.11238105561839973],[115,-26,79,0.11077422154280203],[115,-25,64,0.14861014232169423],[115,-25,65,0.14598435719486758],[115,-25,66,0.14342510060928282],[115,-25,67,0.1409339954850659],[115,-25,68,0.13851255363866377],[115,-25,69,0.13616217086235038],[115,-25,70,0.13388412194024035],[115,-25,71,0.13167955560087763],[115,-25,72,0.12954948940638622],[115,-25,73,0.12749480457825224],[115,-25,74,0.1255162407595516],[115,-25,75,0.12361439071387603],[115,-25,76,0.12178969496075664],[115,-25,77,0.12004243634768486],[115,-25,78,0.11837273455868857],[115,-25,79,0.1167805405594815],[115,-24,64,0.15420694428705428],[115,-24,65,0.1516127750841031],[115,-24,66,0.14908386587705347],[115,-24,67,0.14662184476946105],[115,-24,68,0.14422822999732676],[115,-24,69,0.14190442502803835],[115,-24,70,0.13965171359580808],[115,-24,71,0.13747125467367938],[115,-24,72,0.13536407738209033],[115,-24,73,0.1333310758340549],[115,-24,74,0.1313730039167892],[115,-24,75,0.12949047001002278],[115,-24,76,0.12768393164080438],[115,-24,77,0.125953690074893],[115,-24,78,0.12429988484470045],[115,-24,79,0.12272248821379705],[115,-23,64,0.15973494093668583],[115,-23,65,0.15717261430050156],[115,-23,66,0.15467427337997197],[115,-23,67,0.15224155146977858],[115,-23,68,0.14987597323914803],[115,-23,69,0.14757894985034425],[115,-23,70,0.14535177401365418],[115,-23,71,0.1431956149789333],[115,-23,72,0.14111151346370077],[115,-23,73,0.1391003765178468],[115,-23,74,0.13716297232477626],[115,-23,75,0.13529992493923126],[115,-23,76,0.13351170896159947],[115,-23,77,0.13179864414880338],[115,-23,78,0.13016088996173103],[115,-23,79,0.12859844004922494],[115,-22,64,0.16519290809256726],[115,-22,65,0.16266263612555687],[115,-22,66,0.16019507035779335],[115,-22,67,0.1577918492811412],[115,-22,68,0.1554545040095856],[115,-22,69,0.15318445341738907],[115,-22,70,0.15098299921373626],[115,-22,71,0.14885132095393172],[115,-22,72,0.14679047098714015],[115,-22,73,0.14480136934073273],[115,-22,74,0.14288479854106306],[115,-22,75,0.1410413983709149],[115,-22,76,0.1392716605634302],[115,-22,77,0.13757592343260983],[115,-22,78,0.1359543664403502],[115,-22,79,0.13440700470003186],[115,-21,64,0.17057986248137946],[115,-21,65,0.16808184297398232],[115,-21,66,0.16564524539902892],[115,-21,67,0.1632717134500531],[115,-21,68,0.16096278469527803],[115,-21,69,0.1587198857355414],[115,-21,70,0.15654432729870327],[115,-21,71,0.15443729927059968],[115,-21,72,0.15239986566253483],[115,-21,73,0.1504329595153694],[115,-21,74,0.1485373777400365],[115,-21,75,0.14671377589472046],[115,-21,76,0.14496266289851067],[115,-21,77,0.14328439568162177],[115,-21,78,0.14167917377214445],[115,-21,79,0.14014703381934002],[115,-20,64,0.17589507149591477],[115,-20,65,0.17342948818233384],[115,-20,66,0.17102403825567603],[115,-20,67,0.16868037061413554],[115,-20,68,0.16640002928768827],[115,-20,69,0.16418444861588033],[115,-20,70,0.16203494836209453],[115,-20,71,0.15995272876435773],[115,-20,72,0.15793886552267888],[115,-20,73,0.15599430472297982],[115,-20,74,0.15411985769744674],[115,-20,75,0.15231619582153877],[115,-20,76,0.1505838452474667],[115,-20,77,0.14892318157423134],[115,-20,78,0.14733442445418699],[115,-20,79,0.14581763213614451],[115,-19,64,0.1811380630805668],[115,-19,65,0.17870508592217027],[115,-19,66,0.1763309497829243],[115,-19,67,0.17401730876725952],[115,-19,68,0.17176571337254842],[115,-19,69,0.16957760568684466],[115,-19,70,0.1674543145230959],[115,-19,71,0.1653970504898924],[115,-19,72,0.16340690099874156],[115,-19,73,0.1614848252079285],[115,-19,74,0.15963164890279435],[115,-19,75,0.15784805931266377],[115,-19,76,0.1561345998642394],[115,-19,77,0.15449166487154964],[115,-19,78,0.152919494162417],[115,-19,79,0.15141816764145966],[115,-18,64,0.18630863574102308],[115,-18,65,0.18390842123787388],[115,-18,66,0.1815657520039612],[115,-18,67,0.1792822873501989],[115,-18,68,0.17705958424522983],[115,-18,69,0.1748990925331958],[115,-18,70,0.17280215008797728],[115,-18,71,0.17076997790396398],[115,-18,72,0.16880367512334626],[115,-18,73,0.16690421399998756],[115,-18,74,0.165072434799711],[115,-18,75,0.16330904063722906],[115,-18,76,0.16161459224953534],[115,-18,77,0.15998950270584655],[115,-18,78,0.1584340320540577],[115,-18,79,0.15694828190372823],[115,-17,64,0.19140686867787315],[115,-17,65,0.18903956020884205],[115,-17,66,0.18672849829958793],[115,-17,67,0.1844753474665154],[115,-17,68,0.1822816711517472],[115,-17,69,0.1801489269609995],[115,-17,70,0.17807846183791975],[115,-17,71,0.1760715071749528],[115,-17,72,0.17412917386072335],[115,-17,73,0.17225244726399358],[115,-17,74,0.17044218215403228],[115,-17,75,0.16869909755762214],[115,-17,76,0.16702377155252413],[115,-17,77,0.1654166359974879],[115,-17,78,0.1638779711987719],[115,-17,79,0.16240790051318899],[115,-16,64,0.19643313204430812],[115,-16,65,0.19409886023622513],[115,-16,66,0.19181953372282035],[115,-16,67,0.18959682222384933],[115,-16,68,0.18743229565557373],[115,-16,69,0.1853274193888046],[115,-16,70,0.1832835494434064],[115,-16,71,0.18130192761932218],[115,-16,72,0.17938367656411458],[115,-16,73,0.1775297947770751],[115,-16,74,0.17574115154974312],[115,-16,75,0.17401848184305713],[115,-16,76,0.17236238110096158],[115,-16,77,0.17077330000055257],[115,-16,78,0.16925153913873225],[115,-16,79,0.1677972436553825],[115,-15,64,0.20138809732798957],[115,-15,65,0.19908698045429418],[115,-15,66,0.19683950543855755],[115,-15,67,0.19464734720070032],[115,-15,68,0.19251208213034887],[115,-15,69,0.1904351833651038],[115,-15,70,0.18841801600526675],[115,-15,71,0.1864618322650874],[115,-15,72,0.184567766560519],[115,-15,73,0.18273683053353984],[115,-15,74,0.18096990801288326],[115,-15,75,0.1792677499113925],[115,-15,76,0.1776309690598299],[115,-15,77,0.17606003497722078],[115,-15,78,0.17455526857770287],[115,-15,79,0.17311683681389067],[115,-14,64,0.206272747856879],[115,-14,65,0.20400489226622298],[115,-14,66,0.2017893732881043],[115,-14,67,0.19962787103848267],[115,-14,68,0.19752196837826563],[115,-14,69,0.1954731462118554],[115,-14,70,0.1934827787221507],[115,-14,71,0.1915521285420657],[115,-14,72,0.18968234186255384],[115,-14,73,0.18787444347719562],[115,-14,74,0.18612933176319046],[115,-14,75,0.1844477735989707],[115,-14,76,0.1828303992182666],[115,-14,77,0.18127769700070295],[115,-14,78,0.17979000819889812],[115,-14,79,0.17836752160207403],[115,-13,64,0.21108838942911812],[115,-13,65,0.20885389000437626],[115,-13,66,0.20667042047863915],[115,-13,67,0.20453966615894636],[115,-13,68,0.20246321637422615],[115,-13,69,0.20044255979416492],[115,-13,70,0.1984790796845297],[115,-13,71,0.19657404909900478],[115,-13,72,0.1947286260075306],[115,-13,73,0.19294384836120293],[115,-13,74,0.19122062909357462],[115,-13,75,0.1895597510585758],[115,-13,76,0.1879618619048815],[115,-13,77,0.1864274688868105],[115,-13,78,0.18495693361171983],[115,-13,79,0.18355046672391206],[115,-12,64,0.21583666106710808],[115,-12,65,0.2136356017152573],[115,-12,66,0.2114842643977798],[115,-12,67,0.209384339607119],[115,-12,68,0.20733742313592285],[115,-12,69,0.20534501141627504],[115,-12,70,0.20340849679537787],[115,-12,71,0.20152916274774546],[115,-12,72,0.1997081790238987],[115,-12,73,0.19794659673561554],[115,-12,74,0.19624534337758337],[115,-12,75,0.19460521778566675],[115,-12,76,0.19302688503161924],[115,-12,77,0.19151087125432498],[115,-12,78,0.1900575584275329],[115,-12,79,0.18866717906410224],[115,-11,64,0.22051954589551537],[115,-11,65,0.21835200006883482],[115,-11,66,0.216232867552967],[115,-11,67,0.2141638440194854],[115,-11,68,0.21214653171956044],[115,-11,69,0.21018243484358456],[115,-11,70,0.2082729548172496],[115,-11,71,0.20641938553413075],[115,-11,72,0.20462290852477183],[115,-11,73,0.20288458806232035],[115,-11,74,0.20120536620456753],[115,-11,75,0.19958605777259586],[115,-11,76,0.19802734526587396],[115,-11,77,0.1965297737138738],[115,-11,78,0.19509374546418368],[115,-11,79,0.19371951490712525],[115,-10,64,0.22513938214342222],[115,-10,65,0.22300541339247293],[115,-10,66,0.22091854863589],[115,-10,67,0.218880488717632],[115,-10,68,0.216892842341447],[115,-10,69,0.21495712145092216],[115,-10,70,0.21307473654598175],[115,-10,71,0.2112469919358927],[115,-10,72,0.20947508092876566],[115,-10,73,0.20776008095760856],[115,-10,74,0.20610294864277923],[115,-10,75,0.20450451479104637],[115,-10,76,0.202965479331094],[115,-10,77,0.2014864061855487],[115,-10,78,0.20006771807949753],[115,-10,79,0.19870969128551141],[115,-9,64,0.22969887427047186],[115,-9,65,0.2275985368293112],[115,-9,66,0.22554399371180234],[115,-9,67,0.22353695092720016],[115,-9,68,0.22157902362529724],[115,-9,69,0.21967173149691832],[115,-9,70,0.21781649411086335],[115,-9,71,0.21601462618735656],[115,-9,72,0.21426733280799026],[115,-9,73,0.21257570456221742],[115,-9,74,0.21094071263024394],[115,-9,75,0.2093632038025265],[115,-9,76,0.20784389543571236],[115,-9,77,0.2063833703451008],[115,-9,78,0.20498207163359328],[115,-9,79,0.2036402974571474],[115,-8,64,0.23420110421719853],[115,-8,65,0.23213444362128854],[115,-8,66,0.23011226753391711],[115,-8,67,0.22813628712234335],[115,-8,68,0.22620812397544443],[115,-8,69,0.2243293055246739],[115,-8,70,0.22250126040146978],[115,-8,71,0.22072531373116577],[115,-8,72,0.21900268236339582],[115,-8,73,0.2173344700390457],[115,-8,74,0.21572166249360625],[115,-8,75,0.21416512249712583],[115,-8,76,0.2126655848306075],[115,-8,77,0.21122365119892383],[115,-8,78,0.2098397850802215],[115,-8,79,0.20851430651182612],[115,-7,64,0.23864954277931716],[115,-7,65,0.2366165965165794],[115,-7,66,0.23462682498265774],[115,-7,67,0.23268194449545887],[115,-7,68,0.23078358307572844],[115,-7,69,0.22893327588848966],[115,-7,70,0.22713246062092973],[115,-7,71,0.22538247279678736],[115,-7,72,0.2236845410272349],[115,-7,73,0.22203978219830378],[115,-7,74,0.2204491965947123],[115,-7,75,0.21891366296029158],[115,-7,76,0.2174339334948533],[115,-7,77,0.2160106287875765],[115,-7,78,0.21464423268688027],[115,-7,79,0.21333508710679938],[115,-6,64,0.24304806110607463],[115,-6,65,0.2410488593015503],[115,-6,66,0.23909152262986488],[115,-6,67,0.23717777255229744],[115,-6,68,0.23530924351416815],[115,-6,69,0.23348747840676698],[115,-6,70,0.23171392396572843],[115,-6,71,0.22998992610590774],[115,-6,72,0.2283167251927507],[115,-6,73,0.22669545125020563],[115,-6,74,0.2251271191050367],[115,-6,75,0.22361262346773458],[115,-6,76,0.2221527339498689],[115,-6,77,0.22074809001795737],[115,-6,78,0.21939919588382129],[115,-6,79,0.21810641533144204],[115,-5,64,0.2474009423227862],[115,-5,65,0.24543550845735856],[115,-5,66,0.24351063042808474],[115,-5,67,0.24162803483257622],[115,-5,68,0.23978936253354],[115,-5,69,0.23799616414120128],[115,-5,70,0.23624989543217678],[115,-5,71,0.2345519127048461],[115,-5,72,0.23290346807121798],[115,-5,73,0.23130570468533473],[115,-5,74,0.22975965190808312],[115,-5,75,0.2282662204085958],[115,-5,76,0.2268261972020973],[115,-5,77,0.22544024062426504],[115,-5,78,0.22410887524207757],[115,-5,79,0.22283248670116051],[115,-4,64,0.25171289327731167],[115,-4,65,0.2497812449409474],[115,-4,66,0.2478888435246926],[115,-4,67,0.24603742075584806],[115,-4,68,0.2442286239076148],[115,-4,69,0.24246401130202055],[115,-4,70,0.24074504774929262],[115,-4,71,0.2390730999237326],[115,-4,72,0.2374494316760809],[115,-4,73,0.2358751992824244],[115,-4,74,0.23435144662950325],[115,-4,75,0.2328791003366142],[115,-4,76,0.23145896481395423],[115,-4,77,0.2300917172574799],[115,-4,78,0.2287779025802531],[115,-4,79,0.22751792828028328],[115,-3,64,0.25598905641061775],[115,-3,65,0.25409120609057856],[115,-3,66,0.2522312942009951],[115,-3,67,0.2504110575927695],[115,-3,68,0.2486321499432005],[115,-3,69,0.2468961372794144],[115,-3,70,0.24520449343824136],[115,-3,71,0.24355859546259517],[115,-3,72,0.24195971893434076],[115,-3,73,0.2404090332437031],[115,-3,74,0.23890759679508045],[115,-3,75,0.23745635214944683],[115,-3,76,0.23605612110319962],[115,-3,77,0.23470759970352018],[115,-3,78,0.23341135320021988],[115,-3,79,0.232167810934086],[115,-2,64,0.2602350217514995],[115,-2,65,0.25837097765598965],[115,-2,66,0.2565435639363926],[115,-2,67,0.2547545225618519],[115,-2,68,0.25300551360806867],[115,-2,69,0.25129811080123565],[115,-2,70,0.24963379699841987],[115,-2,71,0.2480139596044464],[115,-2,72,0.24643988592527055],[115,-2,73,0.24491275845789096],[115,-2,74,0.24343365011666718],[115,-2,75,0.24200351939622677],[115,-2,76,0.24062320547081484],[115,-2,77,0.23929342323015923],[115,-2,78,0.23801475825182017],[115,-2,79,0.2367876617100375],[115,-1,64,0.26445683903526923],[115,-1,65,0.26262660595296816],[115,-1,66,0.26083169559739844],[115,-1,67,0.25907385505148994],[115,-1,68,0.25735475078456393],[115,-1,69,0.25567596421677036],[115,-1,70,0.2540389872199764],[115,-1,71,0.25244521755515353],[115,-1,72,0.25089595424625544],[115,-1,73,0.24939239289063397],[115,-1,74,0.24793562090586285],[115,-1,75,0.24652661271314624],[115,-1,76,0.24516622485717432],[115,-1,77,0.24385519106249098],[115,-1,78,0.24259411722634772],[115,-1,79,0.24138347634805468],[115,0,64,0.2686610299465041],[115,0,65,0.26686461014244206],[115,0,66,0.26510220575161436],[115,0,67,0.26337556896736763],[115,0,68,0.2616863726489939],[115,0,69,0.2600362059066736],[115,0,70,0.2584265696228651],[115,0,71,0.25685887191019807],[115,0,72,0.255334423505853],[115,0,73,0.25385443310248146],[115,0,74,0.2524200026155331],[115,0,75,0.2510321223871679],[115,0,76,0.24969166632661532],[115,0,77,0.2483993869870439],[115,0,78,0.2471559105789206],[115,0,79,0.2459617319198626],[115,1,64,0.2728546004859742],[115,1,65,0.27109199463420985],[115,1,66,0.2693620971067845],[115,1,67,0.2676666652053631],[115,1,68,0.2660073781769232],[115,1,69,0.2643858328191968],[115,1,70,0.2628035390225644],[115,1,71,0.2612619152484501],[115,1,72,0.259762283944205],[115,1,73,0.2583058668945288],[115,1,74,0.25689378050930023],[115,1,75,0.2555270310479921],[115,1,76,0.2542065097805317],[115,1,77,0.25293298808467557],[115,1,78,0.2517071124798682],[115,1,79,0.25052939959760046],[115,2,64,0.27704459571288287],[115,2,65,0.27531580452735216],[115,2,66,0.27361841468279074],[115,2,67,0.2719541885879481],[115,2,68,0.2703248118761674],[115,2,69,0.26873188903133016],[115,2,70,0.26717693895025424],[115,2,71,0.2656613904415903],[115,2,72,0.26418657766120884],[115,2,73,0.26275373548412373],[115,2,74,0.261363994812827],[115,2,75,0.2600183778222054],[115,2,76,0.2587177931409042],[115,2,77,0.25746303096920464],[115,2,78,0.2562547581333863],[115,2,79,0.255093513076586],[115,3,64,0.2812315777724297],[115,3,65,0.2795366125459388],[115,3,66,0.2778717421563776],[115,3,67,0.27623873411027033],[115,3,68,0.27463928041772934],[115,3,69,0.27307499323891],[115,3,70,0.2715474004669189],[115,3,71,0.2700579412472218],[115,3,72,0.2686079614335423],[115,3,73,0.2671987089802965],[115,3,74,0.2658313292714397],[115,3,75,0.26450686038589527],[115,3,76,0.2632262282994314],[115,3,77,0.26199024202304994],[115,3,78,0.26079958867786235],[115,3,79,0.25965482850646315],[115,4,64,0.2854108954264186],[115,4,65,0.28374978476100093],[115,4,66,0.2821174636913932],[115,4,67,0.28051570479771204],[115,4,68,0.2789462064418911],[115,4,69,0.2774105884346649],[115,4,70,0.27591038763900855],[115,4,71,0.27444705351007825],[115,4,72,0.2730219435716428],[115,4,73,0.27163631882905176],[115,4,74,0.27029133911861836],[115,4,75,0.26898805839358314],[115,4,76,0.2677274199465279],[115,4,77,0.2665102515683021],[115,4,78,0.26533726064343743],[115,4,79,0.264209029182061],[115,5,64,0.2895777918248106],[115,5,65,0.28795058031798987],[115,5,66,0.2863508552367674],[115,5,67,0.28478039419592316],[115,5,68,0.28324090186900824],[115,5,69,0.28173400567588963],[115,5,70,0.280261251406754],[115,5,71,0.2788240987826126],[115,5,72,0.277423916952301],[115,5,73,0.276061979926015],[115,5,74,0.27473946194526655],[115,5,75,0.273457432789419],[115,5,76,0.27221685301867665],[115,5,77,0.27101856915358813],[115,5,78,0.26986330879104015],[115,5,79,0.26875167565675057],[115,6,64,0.29372754538964085],[115,6,65,0.29213429215521874],[115,6,66,0.2905672250678143],[115,6,67,0.28902812672350453],[115,6,68,0.28751870805228896],[115,6,69,0.28604060402623677],[115,6,70,0.2845953693040961],[115,6,71,0.28318447381240885],[115,6,72,0.28180929826312295],[115,6,73,0.28047112960774456],[115,6,74,0.279171156427913],[115,6,75,0.2779104642625595],[115,6,76,0.2766900308715226],[115,6,77,0.2755107214356811],[115,6,78,0.2743732836935807],[115,6,79,0.273278343014564],[115,7,64,0.2978554725865311],[115,7,65,0.29629624981777286],[115,7,66,0.2947619166413562],[115,7,67,0.293254260567165],[115,7,68,0.29177499871180534],[115,7,69,0.2903257735274049],[115,7,70,0.2889081484668807],[115,7,71,0.28752360358571777],[115,7,72,0.28617353108024984],[115,7,73,0.28485923076248515],[115,7,74,0.2835819054713609],[115,7,75,0.28234265642058604],[115,7,76,0.2811424784829454],[115,7,77,0.27998225541112765],[115,7,78,0.2788627549950514],[115,7,79,0.2777846241556999],[115,8,64,0.3019569306435258],[115,8,65,0.3004318222182851],[115,8,66,0.2989303113972741],[115,8,67,0.2974541905228828],[115,8,68,0.2960051828141031],[115,8,69,0.2945849381160392],[115,8,70,0.29319502858589575],[115,8,71,0.2918369443154826],[115,8,72,0.29051208889023056],[115,8,73,0.28922177488475664],[115,8,74,0.28796721929487035],[115,8,75,0.28674953890616933],[115,8,76,0.28556974559910875],[115,8,77,0.2844287415905991],[115,8,78,0.28332731461211025],[115,8,79,0.28226613302429115],[115,9,64,0.30602732021735757],[115,9,65,0.3045364203446846],[115,9,66,0.30306783150659267],[115,9,67,0.3016233507831803],[115,9,68,0.30020470739752175],[115,9,69,0.298813558485956],[115,9,70,0.297451484804863],[115,9,71,0.29611998637396747],[115,9,72,0.2948204780561624],[115,9,73,0.29355428507389264],[115,9,74,0.29232263846198775],[115,9,75,0.2911266704570968],[115,9,76,0.28996740982360375],[115,9,77,0.28884577711608256],[115,9,78,0.2877625798782681],[115,9,79,0.2867185077785526],[115,10,64,0.31006208800724716],[115,10,65,0.3086054999150246],[115,10,66,0.30716994256620606],[115,10,67,0.3057572176706187],[115,10,68,0.30436906034333183],[115,10,69,0.3030071348957975],[115,10,70,0.3016730305634919],[115,10,71,0.30036825717009613],[115,10,72,0.29909424072820984],[115,10,73,0.29785231897663694],[115,10,74,0.2966437368541342],[115,10,75,0.2954696419097732],[115,10,76,0.29433107964979605],[115,10,77,0.2932289888210234],[115,10,78,0.29216419663079063],[115,10,79,0.29113741390342235],[115,11,64,0.3140567293160272],[115,11,65,0.31263456397917594],[115,11,66,0.31123215624002987],[115,11,67,0.30985131231729734],[115,11,68,0.3084937730924715],[115,11,69,0.3071612099219007],[115,11,70,0.3058552203853775],[115,11,71,0.30457732397128223],[115,11,72,0.3033289576982757],[115,11,73,0.3021114716735775],[115,11,74,0.3009261245877271],[115,11,75,0.2997740791459694],[115,11,76,0.29865639743615274],[115,11,77,0.29757403623319373],[115,11,78,0.29652784224008666],[115,11,79,0.2955185472654662],[115,12,64,0.31800679055869746],[115,12,65,0.31661916546749663],[115,12,66,0.31525003284668973],[115,12,67,0.31390120329046844],[115,12,68,0.31257442330799545],[115,12,69,0.31127137115649045],[115,12,70,0.3099936526108535],[115,12,71,0.3087427966698633],[115,12,72,0.3075202511989429],[115,12,73,0.3063273785095302],[115,12,74,0.30516545087495084],[115,12,75,0.3040356459829343],[115,12,76,0.3029390423246619],[115,12,77,0.3018766145204006],[115,12,78,0.30084922858170005],[115,12,79,0.2998576371101633],[115,13,64,0.3219078717185107],[115,13,65,0.3205549096865756],[115,13,66,0.3192191838938471],[115,13,67,0.3179025091643675],[115,13,68,0.31660663748333623],[115,13,69,0.3153332538513002],[115,13,70,0.3140839720749046],[115,13,71,0.3128603304942419],[115,13,72,0.3116637876467898],[115,13,73,0.31049571786797836],[115,13,74,0.3093574068282821],[115,13,75,0.3082500470069774],[115,13,76,0.3071747331024555],[115,13,77,0.30613245737914374],[115,13,78,0.30512410495101316],[115,13,79,0.30415044900168275],[115,14,64,0.3257556287503745],[115,14,65,0.32443745676183483],[115,14,66,0.32313527455894336],[115,14,67,0.3218509010380413],[115,14,68,0.3205860934961582],[115,14,69,0.31934254350639807],[115,14,70,0.3181218727299146],[115,14,71,0.3169256286645098],[115,14,72,0.31575528032985073],[115,14,73,0.3146122138893402],[115,14,74,0.3134977282085407],[115,14,75,0.3124130303502903],[115,14,76,0.3113592310064004],[115,14,77,0.310337339865989],[115,14,78,0.309348260920428],[115,14,79,0.3083927877049132],[115,15,64,0.3295457759317501],[115,15,65,0.3282625240271739],[115,15,66,0.32699402611654665],[115,15,67,0.3257421049993568],[115,15,68,0.3245085231079898],[115,15,69,0.3232949784044055],[115,15,70,0.3221031002134371],[115,15,71,0.32093444499274415],[115,15,72,0.3197904920394156],[115,15,73,0.31867263913325583],[115,15,74,0.31758219811665894],[115,15,75,0.31652039041120217],[115,15,76,0.31548834247085494],[115,15,77,0.314487081171854],[115,15,78,0.31351752913922293],[115,15,79,0.3125805000099467],[115,16,64,0.3332740881609153],[115,16,65,0.3320258883615195],[115,16,66,0.33079121831216685],[115,16,67,0.3295719045350574],[115,16,68,0.32836971440949825],[115,16,69,0.3271863520899705],[115,16,70,0.32602345436085295],[115,16,71,0.3248825864278371],[115,16,72,0.32376523764602594],[115,16,73,0.3226728171847537],[115,16,74,0.32160664962902763],[115,16,75,0.32056797051772634],[115,16,76,0.31955792181844805],[115,16,77,0.31857754733906146],[115,16,78,0.31762778807593745],[115,16,79,0.31670947749886963],[115,17,64,0.3369364032027646],[115,17,65,0.33572338847245836],[115,17,66,0.3345226916827139],[115,17,67,0.3333361428870408],[115,17,68,0.3321655142115834],[115,17,69,0.3310125157946756],[115,17,70,0.32987879166309325],[115,17,71,0.32876591554503914],[115,17,72,0.3276753866198528],[115,17,73,0.32660862520447936],[115,17,74,0.32556696837660465],[115,17,75,0.32455166553458425],[115,17,76,0.3235638738940652],[115,17,77,0.3226046539213493],[115,17,78,0.3216749647034785],[115,17,79,0.3207756592550508],[115,18,64,0.3405286238819405],[115,18,65,0.339350927126744],[115,18,66,0.3381843498233905],[115,18,67,0.33703072535465034],[115,18,68,0.3358918303820803],[115,18,69,0.3347693808071669],[115,18,70,0.3336650276692131],[115,18,71,0.33258035298000277],[115,18,72,0.3315168654952361],[115,18,73,0.33047599642276854],[115,18,74,0.32945909506756416],[115,18,75,0.32846742441348525],[115,18,76,0.32750215664182264],[115,18,77,0.32656436858661225],[115,18,78,0.32565503712671984],[115,18,79,0.3247750345147009],[115,19,64,0.34404672022339816],[115,19,65,0.3429044733277779],[115,19,66,0.34177216160112256],[115,19,67,0.34065162154308243],[115,19,68,0.33954463412817376],[115,19,69,0.3384529207886088],[115,19,70,0.33737813933392274],[115,19,71,0.33632187980742856],[115,19,72,0.33528566027949375],[115,19,73,0.3342709225776713],[115,19,74,0.3332790279535965],[115,19,75,0.3323112526867703],[115,19,76,0.33136878362513505],[115,19,77,0.3304527136624864],[115,19,78,0.3295640371527051],[115,19,79,0.3287036452608145],[115,20,64,0.3474867315404896],[115,20,65,0.34638006444015834],[115,20,66,0.34528216331461553],[115,20,67,0.34419486755799955],[115,20,68,0.34311996222461616],[115,20,69,0.3420591740335562],[115,20,70,0.3410141673101675],[115,20,71,0.33998653986441113],[115,20,72,0.3389778188060958],[115,20,73,0.3379894562970225],[115,20,74,0.33702282523995236],[115,20,75,0.3360792149045168],[115,20,76,0.3351598264899762],[115,20,77,0.334265768624872],[115,20,78,0.3333980528035541],[115,20,79,0.33255758875959174],[115,21,64,0.3508447684703849],[115,21,65,0.3497738082611059],[115,21,66,0.34871046080085166],[115,21,67,0.3476565681461614],[115,21,68,0.34661391918755835],[115,21,69,0.34558424567605267],[115,21,70,0.34456921818656355],[115,21,71,0.34357044201828696],[115,21,72,0.34258945303200405],[115,21,73,0.3416277134243603],[115,21,74,0.3406866074390338],[115,21,75,0.3397674370149032],[115,21,76,0.3388714173711298],[115,21,77,0.3379996725291935],[115,21,78,0.3371532307718672],[115,21,79,0.3363330200391358],[115,22,64,0.35411701495692705],[115,22,65,0.35308188503886745],[115,22,66,0.3520532314881234],[115,22,67,0.3510328987821723],[115,22,68,0.35002267939409326],[115,22,69,0.3490243098410552],[115,22,70,0.34803946666979146],[115,22,71,0.34706976237908843],[115,22,72,0.34611674127928266],[115,22,73,0.3451818752887973],[115,22,74,0.3442665596676348],[115,22,75,0.34337210868793866],[115,22,76,0.34249975124153587],[115,22,77,0.3416506263845025],[115,22,78,0.3408257788187347],[115,22,79,0.3400261543105335],[115,23,64,0.3572997301809999],[115,23,65,0.35630054943817746],[115,23,66,0.3553067263956896],[115,23,67,0.35432010770142885],[115,23,68,0.35334248914759653],[115,23,69,0.35237561174127013],[115,23,70,0.35142115771203253],[115,23,71,0.3504807464566891],[115,23,72,0.34955593042106775],[115,23,73,0.34864819091893123],[115,23,74,0.34775893388792173],[115,23,75,0.34688948558264737],[115,23,76,0.34604108820482393],[115,23,77,0.3452148954705132],[115,23,78,0.3444119681144426],[115,23,79,0.3436332693314109],[115,24,64,0.3603892504382399],[115,24,65,0.35942613245260513],[115,24,66,0.35846727207987467],[115,24,67,0.357514517879091],[115,24,68,0.35656966868868617],[115,24,69,0.35563446971922064],[115,24,70,0.3547106085832665],[115,24,71,0.3537997112624582],[115,24,72,0.35290333801170765],[115,24,73,0.3520229792006098],[115,24,74,0.3511600510919651],[115,24,75,0.350315891557519],[115,24,76,0.34949175573084135],[115,24,77,0.348688811597381],[115,24,78,0.34790813552168226],[115,24,79,0.34715070771176837],[115,25,64,0.36338199096418045],[115,25,65,0.3624550432638791],[115,25,66,0.3615312725267078],[115,25,67,0.3606125289551701],[115,25,68,0.35970061415189564],[115,25,69,0.358797277234642],[115,25,70,0.35790421088852803],[115,25,71,0.357023047355521],[115,25,72,0.3561553543611754],[115,25,73,0.35530263097864906],[115,25,74,0.3544663034299225],[115,25,75,0.3536477208243241],[115,25,76,0.35284815083427934],[115,25,77,0.35206877530832414],[115,25,78,0.3513106858213662],[115,25,79,0.35057487916220065],[115,26,64,0.36627444770690437],[115,26,65,0.3653837710482626],[115,26,66,0.364495210991176],[115,26,67,0.3636106191058105],[115,26,68,0.36273179946813655],[115,26,69,0.36186050479728027],[115,26,70,0.3609984325301988],[115,26,71,0.3601472208337044],[115,26,72,0.359308444553833],[115,26,73,0.35848361110258326],[115,26,74,0.3576741562819538],[115,26,75,0.35688144004537786],[115,26,76,0.3561067421964769],[115,26,77,0.35535125802517126],[115,26,78,0.3546160938811328],[115,26,79,0.3539022626845844],[115,27,64,0.36906319904704477],[115,27,65,0.3682088867298215],[115,27,66,0.3673556517829276],[115,27,67,0.3665053468606002],[115,27,68,0.3656597782127877],[115,27,69,0.36482070184493026],[115,27,70,0.3639898196151679],[115,27,71,0.3631687752689973],[115,27,72,0.36235915041137273],[115,27,73,0.36156246041627726],[115,27,74,0.36078015027369437],[115,27,75,0.36001359037407576],[115,27,76,0.3592640722302282],[115,27,77,0.3585328041366589],[115,27,78,0.3578209067663618],[115,27,79,0.35712940870505283],[115,28,64,0.37174490746522115],[115,28,65,0.3709270446806703],[115,28,66,0.37010924199851625],[115,28,67,0.36929335286600096],[115,28,68,0.3684811853994975],[115,28,69,0.3676744985668003],[115,28,70,0.366874998306951],[115,28,71,0.36608433358761855],[115,28,72,0.3653040924000322],[115,28,73,0.3645357976914906],[115,28,74,0.3637809032353805],[115,28,75,0.36304078943879603],[115,28,76,0.36231675908768723],[115,28,77,0.3616100330295717],[115,28,78,0.36092174579379643],[115,28,79,0.36025294114935447],[115,29,64,0.3743163211569741],[115,29,65,0.3735349843682605],[115,29,66,0.37275271320025094],[115,29,67,0.3719713615949621],[115,29,68,0.37119273921976825],[115,29,69,0.37041860767227425],[115,29,70,0.36965067662283746],[115,29,71,0.3688905998947609],[115,29,72,0.36813997148215133],[115,29,73,0.36740032150546853],[115,29,74,0.36667311210469855],[115,29,75,0.3659597332702415],[115,29,76,0.3652614986114428],[115,29,77,0.3645796410628023],[115,29,78,0.3639153085278468],[115,29,79,0.3632695594606731],[115,30,64,0.37677427559505683],[115,30,65,0.37602953194957],[115,30,66,0.3752828830415037],[115,30,67,0.37453618300257235],[115,30,68,0.3737912427281754],[115,30,69,0.37304982610491944],[115,30,70,0.3723136461759143],[115,30,71,0.3715843612438592],[115,30,72,0.3708635709119172],[115,30,73,0.37015281206239986],[115,30,74,0.3694535547732007],[115,30,75,0.3687671981720616],[115,30,76,0.3680950662286052],[115,30,77,0.3674384034841669],[115,30,78,0.36679837071941135],[115,30,79,0.3661760405597408],[115,31,64,0.3791156950391624],[115,31,65,0.3784076018122702],[115,31,66,0.37769665683855913],[115,31,67,0.3769847141278308],[115,31,68,0.37627358547329814],[115,31,69,0.3755650367018218],[115,31,70,0.37486078386204746],[115,31,71,0.3741624893504645],[115,31,72,0.37347175797537935],[115,31,73,0.3727901329588289],[115,31,74,0.37211909187637215],[115,31,75,0.3714600425348411],[115,31,76,0.37081431878798915],[115,31,77,0.3701831762900658],[115,31,78,0.36956778818730557],[115,31,79,0.368969240747337],[115,32,64,0.38133759399314043],[115,32,65,0.3806661980629276],[115,32,66,0.3799910290890599],[115,32,67,0.37931394064159335],[115,32,68,0.37863674507442735],[115,32,69,0.3779612097983105],[115,32,70,0.37728905349188513],[115,32,71,0.37662194225078766],[115,32,72,0.37596148567480175],[115,32,73,0.3753092328930856],[115,32,74,0.3746666685274147],[115,32,75,0.3740352085935203],[115,32,76,0.37341619634046036],[115,32,77,0.3728108980280535],[115,32,78,0.3722204986423634],[115,32,79,0.37164609754923916],[115,33,64,0.38343707860958004],[115,33,65,0.3828024159621145],[115,33,66,0.3821630849369203],[115,33,67,0.381520938340566],[115,33,68,0.38087778874391165],[115,33,69,0.3802354047779357],[115,33,70,0.379595507367743],[115,33,71,0.37895976590477387],[115,33,72,0.3783297943572088],[115,33,73,0.3777071473185899],[115,33,74,0.37709331599460405],[115,33,75,0.37648972412810316],[115,33,76,0.37589772386230036],[115,33,77,0.3753185915421741],[115,33,78,0.37475352345406554],[115,33,79,0.37420363150347574],[115,34,64,0.3854113480418274],[115,34,65,0.38481344330649736],[115,34,66,0.38421000158378016],[115,34,67,0.38360287458741593],[115,34,68,0.3829938747552206],[115,34,69,0.3823847715677752],[115,34,70,0.3817772878054507],[115,34,71,0.38117309574378466],[115,34,72,0.3805738132872032],[115,34,73,0.37998100004111174],[115,34,74,0.37939615332230037],[115,34,75,0.3788207041077331],[115,34,76,0.37825601292166944],[115,34,77,0.3777033656611408],[115,34,78,0.3771639693597741],[115,34,79,0.3766389478899647],[115,35,64,0.38725769574348534],[115,35,65,0.38669656175795175],[115,35,66,0.3861290496470463],[115,35,67,0.38555700969705203],[115,35,68,0.38498225385677176],[115,35,69,0.38440655207912],[115,35,70,0.38383162860120806],[115,35,71,0.3832591581629394],[115,35,72,0.3826907621641108],[115,35,73,0.3821280047600396],[115,35,74,0.38157238889566447],[115,35,75,0.38102535227819045],[115,35,76,0.38048826328822294],[115,35,77,0.3799624168294172],[115,35,78,0.37944903011663234],[115,35,79,0.37894923840259487],[115,36,64,0.3889735107152863],[115,36,65,0.3884491481195936],[115,36,66,0.38791759446441204],[115,36,67,0.3873806982689574],[115,36,68,0.38684027063140725],[115,36,69,0.3862980815934232],[115,36,70,0.3857558564433342],[115,36,71,0.38521527195799715],[115,36,72,0.38467795258332926],[115,36,73,0.3841454665535321],[115,36,74,0.38361932194895837],[115,36,75,0.38310096269268745],[115,36,76,0.38259176448575594],[115,36,77,0.3820930306810718],[115,36,78,0.3816059880959992],[115,36,79,0.38113178276361914],[115,37,64,0.3905562786994023],[115,37,65,0.3900686755587902],[115,37,66,0.38957309734491496],[115,37,67,0.38907139046564343],[115,37,68,0.3885653648015872],[115,37,69,0.3880567900935776],[115,37,70,0.38754739226897783],[115,37,71,0.38703884970684654],[115,37,72,0.38653278944194797],[115,37,73,0.38603078330762575],[115,37,74,0.38553434401749803],[115,37,75,0.3850449211860308],[115,37,76,0.3845638972879447],[115,37,77,0.38409258355647735],[115,37,78,0.38363221582049123],[115,37,79,0.3831839502804325],[115,38,64,0.392003583321225],[115,38,65,0.39155271477718684],[115,38,66,0.3910931167665753],[115,38,67,0.390626633237261],[115,38,68,0.390155072480337],[115,38,69,0.38968020354056243],[115,38,70,0.3892037525658265],[115,38,71,0.388727399095645],[115,38,72,0.3882527722886859],[115,38,73,0.3877814470893414],[115,38,74,0.38731494033330294],[115,38,75,0.3868547067921965],[115,38,76,0.38640213515723415],[115,38,77,0.3859585439619023],[115,38,78,0.3855251774436793],[115,38,79,0.3851032013447837],[115,39,64,0.39331310717852724],[115,39,65,0.3928989351276564],[115,39,66,0.3924753095205159],[115,39,67,0.3920440714922715],[115,39,68,0.39160702736785014],[115,39,69,0.39116594509535907],[115,39,70,0.3907225506187165],[115,39,71,0.39027852418950365],[115,39,72,0.38983549661803774],[115,39,73,0.38939504546367926],[115,39,74,0.38895869116433446],[115,39,75,0.3885278931052071],[115,39,76,0.38810404562675593],[115,39,77,0.38768847397188055],[115,39,78,0.3872824301723251],[115,39,79,0.38688708887430423],[115,40,64,0.3944826328780815],[115,40,65,0.3941051056782503],[115,40,66,0.39371743180164526],[115,40,67,0.39332144921426127],[115,40,68,0.3929189618938316],[115,40,69,0.39251173628622016],[115,40,70,0.39210149770122593],[115,40,71,0.3916899266478062],[115,40,72,0.39127865510871923],[115,40,73,0.3908692627545969],[115,40,74,0.39046327309741424],[115,40,75,0.3900621495834039],[115,40,76,0.38966729162537384],[115,40,77,0.3892800305744537],[115,40,78,0.38890162563125424],[115,40,79,0.3885332596964499],[115,41,64,0.3955100440196867],[115,41,65,0.39516909622310076],[115,41,66,0.39481734024585247],[115,41,67,0.3944566105248459],[115,41,68,0.39408870830552595],[115,41,69,0.3937153981212369],[115,41,70,0.3933384042121977],[115,41,71,0.39295940688410386],[115,41,72,0.39258003880635306],[115,41,73,0.39220188124990785],[115,41,74,0.39182646026476176],[115,41,75,0.39145524279705335],[115,41,76,0.39108963274579406],[115,41,77,0.39073096695922593],[115,41,78,0.39038051117080214],[115,41,79,0.39003945587479466],[115,42,64,0.39639332612765665],[115,42,65,0.39608887824032984],[115,42,66,0.3957729929137721],[115,42,67,0.3954475006927223],[115,42,68,0.3951141997014911],[115,42,69,0.39477485214626706],[115,42,70,0.39443118075725436],[115,42,71,0.39408486517065044],[115,42,72,0.3937375382504622],[115,42,73,0.3933907823501718],[115,42,74,0.39304612551422097],[115,42,75,0.3927050376193581],[115,42,76,0.39236892645581006],[115,42,77,0.392039133748301],[115,42,78,0.39171693111690653],[115,42,79,0.3914035159777485],[115,43,64,0.39713056752970705],[115,43,65,0.3968625257968983],[115,43,66,0.39658245022104793],[115,43,67,0.3962921670888002],[115,43,68,0.39599347101104604],[115,43,69,0.39568812144814947],[115,43,70,0.3953778391752293],[115,43,71,0.39506430268750314],[115,43,72,0.3947491445456912],[115,43,73,0.39443394766149076],[115,43,74,0.39412024152309405],[115,43,75,0.3938094983607873],[115,43,76,0.3935031292525992],[115,43,77,0.39320248017001647],[115,43,78,0.39290882796375776],[115,43,79,0.3926233762896103],[115,44,64,0.3977199601832789],[115,44,65,0.3974882164004352],[115,44,66,0.39724387581513865],[115,44,67,0.396988760087453],[115,44,68,0.3967246599194353],[115,44,69,0.396453331603248],[115,44,70,0.39617649350955875],[115,44,71,0.3958958225162298],[115,44,72,0.3956129503772996],[115,44,73,0.3953294600322629],[115,44,74,0.3950468818556273],[115,44,75,0.3947666898467769],[115,44,76,0.39449029776011835],[115,44,77,0.3942190551755232],[115,44,78,0.39395424350905794],[115,44,79,0.39369707196400766],[115,45,64,0.3981598004493072],[115,45,65,0.39796423179805784],[115,45,66,0.3977555373986771],[115,45,67,0.3975355339139011],[115,45,68,0.3973060077387215],[115,45,69,0.39706871157134027],[115,45,70,0.3968253609246497],[115,45,71,0.39657763057824214],[115,45,72,0.3963271509709474],[115,45,73,0.39607550453390855],[115,45,74,0.3958242219641706],[115,45,75,0.3955747784388157],[115,45,76,0.3953285897696181],[115,45,77,0.39508700849823253],[115,45,78,0.39485131993191],[115,45,79,0.3946227381197439],[115,46,64,0.3984484898134002],[115,46,65,0.39828895872214304],[115,46,66,0.39811580749934],[115,46,67,0.39793084743768503],[115,46,68,0.3977358602243647],[115,46,69,0.3975325945348025],[115,46,70,0.3973227625671749],[115,46,71,0.3971080365177031],[115,46,72,0.3968900449967195],[115,46,73,0.3966703693855156],[115,46,74,0.3964505401339533],[115,46,75,0.39623203299886467],[115,46,76,0.3960162652232191],[115,46,77,0.3958045916560703],[115,46,78,0.39559830081327535],[115,46,79,0.39539861087899175],[115,47,64,0.39858453555445394],[115,47,65,0.3984608895830791],[115,47,66,0.39832316418625957],[115,47,67,0.39817316491225807],[115,47,68,0.39801266833751636],[115,47,69,0.39784341868312634],[115,47,70,0.3976671243723293],[115,47,71,0.39748545452904366],[115,47,72,0.39730003541742154],[115,47,73,0.3971124468224405],[115,47,74,0.3969242183715142],[115,47,75,0.39673682579714287],[115,47,76,0.3965516871405876],[115,47,77,0.39637015889657695],[115,47,78,0.3961935320990405],[115,47,79,0.39602302834787345],[115,48,64,0.39856655136070224],[115,48,65,0.3984786231089968],[115,48,66,0.398376191732977],[115,48,67,0.39826105666070116],[115,48,68,0.3981349889530323],[115,48,69,0.39799972794276633],[115,48,70,0.39785697781505047],[115,48,71,0.3977084041290918],[115,48,72,0.3975556302811579],[115,48,73,0.39740023390887225],[115,48,74,0.3972437432367927],[115,48,75,0.39708763336329134],[115,48,76,0.3969333224887187],[115,48,77,0.39678216808486366],[115,48,78,0.3966354630057018],[115,48,79,0.3964944315394371],[115,49,64,0.3983932578931868],[115,49,65,0.3983408649324627],[115,49,66,0.398273581226918],[115,49,67,0.39819319970753697],[115,49,68,0.39810148551318175],[115,49,69,0.3980001726522976],[115,49,70,0.3978909606061777],[115,49,71,0.39777551087378865],[115,49,72,0.39765544345815773],[115,49,73,0.3975323332943248],[115,49,74,0.39740770661884794],[115,49,75,0.3972830372808783],[115,49,76,0.39715974299479223],[115,49,77,0.3970391815343861],[115,49,78,0.39692264686863105],[115,49,79,0.3968113652389911],[115,50,64,0.39806348329666463],[115,50,65,0.39804642812415414],[115,50,66,0.39801413112541084],[115,50,67,0.3979683783566653],[115,50,68,0.3979109286270728],[115,50,69,0.3978435101829033],[115,50,70,0.39776781733357297],[115,50,71,0.3976855070195126],[115,50,72,0.39759819532187557],[115,50,73,0.39750745391408804],[115,50,74,0.3974148064552321],[115,50,75,0.39732172492527407],[115,50,76,0.39722962590212907],[115,50,77,0.3971398667805659],[115,50,78,0.3970537419329494],[115,50,79,0.39697247881182407],[115,51,64,0.39757616365793774],[115,51,65,0.39759423367350044],[115,51,66,0.397596747758233],[115,51,67,0.3975854847154084],[115,51,68,0.3975621966157844],[115,51,69,0.3975286055041826],[115,51,70,0.3974864000481936],[115,51,71,0.3974372321290059],[115,51,72,0.3973827133743595],[115,51,73,0.39732441163362664],[115,51,74,0.3972638473950132],[115,51,75,0.3972024901448895],[115,51,76,0.3971417546692423],[115,51,77,0.3970829972972547],[115,51,78,0.39702751208700826],[115,51,79,0.39697652695331165],[115,52,64,0.39693034341161537],[115,52,65,0.3969833109162992],[115,52,66,0.39702044577669404],[115,52,67,0.3970435191646667],[115,52,68,0.39705427600320564],[115,52,69,0.39705443169527943],[115,52,70,0.3970456687951156],[115,52,71,0.3970296336218978],[115,52,72,0.3970079328158803],[115,52,73,0.39698212983692205],[115,52,74,0.3969537414054379],[115,52,75,0.3969242338857696],[115,52,76,0.39689501961197365],[115,52,77,0.3968674531560291],[115,52,78,0.39684282753846195],[115,52,79,0.3968223703813898],[115,53,64,0.3961251756933132],[115,53,65,0.39621279790931335],[115,53,66,0.39628434854925826],[115,53,67,0.39634159077519726],[115,53,68,0.39638626195259297],[115,53,69,0.396420070401342],[115,53,70,0.39644469208951916],[115,53,71,0.3964617672698385],[115,53,72,0.39647289705883615],[115,53,73,0.39647963995877133],[115,53,74,0.396483508322248],[115,53,75,0.3964859647595558],[115,53,76,0.3964884184887296],[115,53,77,0.3964922216283318],[115,53,78,0.39649866543294976],[115,53,79,0.3965089764714173],[115,54,64,0.3951599226402633],[115,54,65,0.3952819417518232],[115,54,66,0.39538768850368694],[115,54,67,0.3954789176699882],[115,54,68,0.39555735864882013],[115,54,69,0.39562471223529083],[115,54,70,0.39568264733761327],[115,54,71,0.39573279763622043],[115,54,72,0.3957767581859112],[115,54,73,0.3958160819610228],[115,54,74,0.39585227634363507],[115,54,75,0.3958867995548],[115,54,76,0.39592105702880165],[115,54,77,0.3959563977304451],[115,54,78,0.39599411041537236],[115,54,79,0.3960354198334095],[115,55,64,0.39403395563936855],[115,55,65,0.3941900988541654],[115,55,66,0.3943298074157255],[115,55,67,0.39445482733275783],[115,55,68,0.3945668796263491],[115,55,69,0.3946676571249186],[115,55,70,0.3947588212025239],[115,55,71,0.3948419984605108],[115,55,72,0.39491877735250813],[115,55,73,0.39499070475276626],[115,55,74,0.3950592824678457],[115,55,75,0.3951259636916461],[115,55,76,0.3951921494037819],[115,55,77,0.3952591847113054],[115,55,78,0.39532835513377207],[115,55,79,0.39540088283165387],[115,56,64,0.39274675552269356],[115,56,65,0.3929367351532524],[115,56,66,0.3931101566443339],[115,56,67,0.3932687568625749],[115,56,68,0.3934142480429181],[115,56,69,0.3935483146053216],[115,56,70,0.39367260991514347],[115,56,71,0.3937887529871935],[115,56,72,0.39389832513345635],[115,56,73,0.3940028665544806],[115,56,74,0.3941038728744435],[115,56,75,0.3942027916198796],[115,56,76,0.39430101864208045],[115,56,77,0.3943998944831662],[115,56,78,0.3945007006858227],[115,56,79,0.3946046560467125],[115,57,64,0.391297912710355],[115,57,65,0.3915214262750352],[115,57,66,0.39172829731342174],[115,57,67,0.3919202531745626],[115,57,68,0.3920989968989098],[115,57,69,0.39226620405662754],[115,57,70,0.39242351952990795],[115,57,71,0.3925725542392867],[115,57,72,0.39271488181396125],[115,57,73,0.3928520352061051],[115,57,74,0.3929855032491929],[115,57,75,0.39311672716031754],[115,57,76,0.3932470969865132],[115,57,77,0.39337794799507875],[115,57,78,0.3935105570079014],[115,57,79,0.3936461386797848],[115,58,64,0.3896871273008675],[115,58,65,0.38994385764396466],[115,58,66,0.39018390044014173],[115,58,67,0.39040897314674083],[115,58,68,0.39062076920245425],[115,58,69,0.39082095488706703],[115,58,70,0.39101116612554904],[115,58,71,0.3911930052364838],[115,58,72,0.3913680376248403],[115,58,73,0.39153778841907905],[115,58,74,0.3917037390526095],[115,58,75,0.39186732378957767],[115,58,76,0.39202992619499827],[115,58,77,0.3921928755492278],[115,58,78,0.3923574432067768],[115,58,79,0.3925248388994639],[115,59,64,0.3879142091089274],[115,59,65,0.38820382453943375],[115,59,66,0.3884767470097268],[115,59,67,0.3887346837129885],[115,59,68,0.38897931808024633],[115,59,69,0.3892123066613771],[115,59,70,0.3894352759508085],[115,59,71,0.38964981915790353],[115,59,72,0.38985749292203453],[115,59,73,0.3900598139723374],[115,59,74,0.39025825573216494],[115,59,75,0.39045424486821545],[115,59,76,0.39064915778435305],[115,59,77,0.39084431706011546],[115,59,78,0.3910409878339066],[115,59,79,0.39124037413087964],[115,60,64,0.38597907765058226],[115,60,65,0.3863012320991509],[115,60,66,0.38660672799681783],[115,60,67,0.3868972619020775],[115,60,68,0.38717450683403454],[115,60,69,0.38744010917448807],[115,60,70,0.38769568551506717],[115,60,71,0.38794281944940395],[115,60,72,0.3881830583103484],[115,60,73,0.38841790985221847],[115,60,74,0.38864883887810237],[115,60,75,0.3888772638121902],[115,60,76,0.38910455321715076],[115,60,77,0.38933202225654945],[115,60,78,0.3895609291023051],[115,60,79,0.3897924712871903],[115,61,64,0.38388176207586955],[115,61,65,0.3842360952695234],[115,61,66,0.38457384433336483],[115,61,67,0.38489669482285727],[115,61,68,0.3852063089428531],[115,61,69,0.38550432247056715],[115,61,70,0.3857923416239619],[115,61,71,0.3860719398755315],[115,61,72,0.38634465471149015],[115,61,73,0.3866119843363519],[115,61,74,0.38687538432293006],[115,61,75,0.38713626420772096],[115,61,76,0.3873959840316969],[115,61,77,0.38765585082650045],[115,61,78,0.3879171150460382],[115,61,79,0.3881809669434796],[115,62,64,0.38162240104889206],[115,62,65,0.38200853870302337],[115,62,66,0.382378206823069],[115,62,67,0.38273307959555936],[115,62,68,0.38307480801097216],[115,62,69,0.383405016807394],[115,62,70,0.3837253013599634],[115,62,71,0.38403722451608],[115,62,72,0.38434231337638514],[115,62,73,0.38464205602150336],[115,62,74,0.38493789818456997],[115,62,75,0.3852312398695125],[115,62,76,0.38552343191510685],[115,62,77,0.3858157725048055],[115,62,78,0.38610950362233026],[115,62,79,0.38640580745304065],[115,63,64,0.37920124257526755],[115,63,65,0.37961879660247],[115,63,66,0.3800200360023047],[115,63,67,0.3804066232291618],[115,63,68,0.3807801976615036],[115,63,69,0.38114237256600625],[115,63,70,0.38149473200785855],[115,63,71,0.3818388277072002],[115,63,72,0.38217617584170815],[115,63,73,0.38250825379531767],[115,63,74,0.38283649685310456],[115,63,75,0.3831622948422956],[115,63,76,0.3834869887194302],[115,63,77,0.3838118671036655],[115,63,78,0.38413816275622525],[115,63,79,0.38446704900599615],[115,64,64,0.3766186437770666],[115,64,65,0.3770672125123444],[115,64,66,0.37749966194763407],[115,64,67,0.37791764244492276],[115,64,68,0.37832278137577235],[115,64,69,0.37871668010572346],[115,64,70,0.37910091092523784],[115,64,71,0.3794770139271643],[115,64,72,0.37984649383073277],[115,64,73,0.3802108167520629],[115,64,74,0.3805714069212205],[115,64,75,0.3809296433457786],[115,64,76,0.3812868564209139],[115,64,77,0.38164432448602903],[115,64,78,0.382003270327898],[115,64,79,0.3823648576303424],[115,65,64,0.373875070615143],[115,65,65,0.37435423905704013],[115,65,66,0.37481752402981816],[115,65,67,0.3752665634459914],[115,65,68,0.3757029722783614],[115,65,69,0.37612833956445724],[115,65,70,0.37654422535790333],[115,65,71,0.3769521576266991],[115,65,72,0.3773536290984146],[115,65,73,0.3777500940522893],[115,65,74,0.3781429650582677],[115,65,75,0.37853360966292704],[115,65,76,0.3789233470223288],[115,65,77,0.379313444481785],[115,65,78,0.37970511410253516],[115,65,79,0.38009950913534324],[115,66,64,0.37097109755893876],[115,66,65,0.37148043762613114],[115,66,66,0.3719741706144074],[115,66,67,0.37245392163317514],[115,66,68,0.37292129286790837],[115,66,69,0.37337786060438893],[115,66,70,0.37382517220027267],[115,66,71,0.3742647430039607],[115,66,72,0.3746980532207826],[115,66,73,0.3751265447264768],[115,66,74,0.375551617828004],[115,66,75,0.37597462797164627],[115,66,76,0.3763968823984256],[115,66,77,0.37681963674683183],[115,66,78,0.3772440916028563],[115,66,79,0.3776713889973411],[115,67,64,0.36790740720363946],[115,67,65,0.36844647800653524],[115,67,66,0.3689702587087887],[115,67,67,0.36948036126674405],[115,67,68,0.36997837469353684],[115,67,69,0.37046586210289434],[115,67,70,0.3709443577006623],[115,67,71,0.37141536372403944],[115,67,72,0.3718803473285245],[115,67,73,0.3723407374225606],[115,67,74,0.372797921449917],[115,67,75,0.3732532421197551],[115,67,76,0.3737079940844159],[115,67,77,0.3741634205649196],[115,67,78,0.37462070992417057],[115,67,79,0.37508099218788027],[115,68,64,0.3646847898348281],[115,68,65,0.36525313796171854],[115,68,66,0.3658065535558337],[115,68,67,0.36634663507441356],[115,68,68,0.36687495797706193],[115,68,69,0.3673930717888557],[115,68,70,0.36790249711158846],[115,68,71,0.3684047225831292],[115,68,72,0.3689012017849014],[115,68,73,0.3693933500974664],[115,68,74,0.3698825415042536],[115,68,75,0.37037010534338055],[115,68,76,0.37085732300760405],[115,68,77,0.3713454245923884],[115,68,78,0.3718355854920906],[115,68,79,0.37232892294426734],[115,69,64,0.36130414294057567],[115,69,65,0.3619013027578789],[115,69,66,0.3624839281740888],[115,69,67,0.36305360380544816],[115,69,68,0.36361189118091164],[115,69,69,0.36416032582430413],[115,69,70,0.36470041428502925],[115,69,71,0.36523363111730517],[115,69,72,0.365761415807936],[115,69,73,0.3662851696526005],[115,69,74,0.3668062525807021],[115,69,75,0.3673259799287222],[115,69,76,0.3678456191621181],[115,69,77,0.36836638654575315],[115,69,78,0.36888944376285593],[115,69,79,0.36941589448251644],[115,70,64,0.35776647067087686],[115,70,65,0.35839196463702133],[115,70,66,0.35900336284441653],[115,70,67,0.35960223573079586],[115,70,68,0.3601901305216773],[115,70,69,0.3607685683313049],[115,70,70,0.3613390412125609],[115,70,71,0.36190300915582496],[115,70,72,0.36246189703679],[115,70,73,0.36301709151321226],[115,70,74,0.3635699378706467],[115,70,75,0.36412173681710136],[115,70,76,0.3646737412266603],[115,70,77,0.36522715283205454],[115,70,78,0.3657831188661854],[115,70,79,0.3663427286526031],[115,71,64,0.35407288324459574],[115,71,65,0.3547262222370832],[115,71,66,0.35536594454324943],[115,71,67,0.35599360608941333],[115,71,68,0.35661073942944976],[115,71,69,0.35721885086424054],[115,71,70,0.3578194175105221],[115,71,71,0.35841388431910587],[115,71,72,0.359003661042481],[115,71,73,0.35959011915177713],[115,71,74,0.36017458870313873],[115,71,75,0.36075835515344423],[115,71,76,0.3613426561254175],[115,71,77,0.36192867812211693],[115,71,78,0.36251755319079854],[115,71,79,0.36311035553616355],[115,72,64,0.3502245963038484],[115,72,65,0.3509052799590427],[115,72,66,0.351572866322387],[115,72,67,0.35222889648071176],[115,72,68,0.35287488795287203],[115,72,69,0.35351233182742564],[115,72,70,0.35414268985014175],[115,72,71,0.35476739146131164],[115,72,72,0.355387830782875],[115,72,73,0.35600536355533596],[115,72,74,0.35662130402452463],[115,72,75,0.3572369217781327],[115,72,76,0.35785343853207424],[115,72,77,0.35847202486665497],[115,72,78,0.3590937969125475],[115,72,79,0.35971981298658257],[115,73,64,0.3462229302157188],[115,73,65,0.346930447280902],[115,73,66,0.34762542663523005],[115,73,67,0.34830939420302165],[115,73,68,0.3489838521098081],[115,73,69,0.34965027583795105],[115,73,70,0.3503101113325261],[115,73,71,0.35096477205744936],[115,73,72,0.35161563600185386],[115,73,73,0.3522640426366933],[115,73,74,0.3529112898216298],[115,73,75,0.35355863066213056],[115,73,76,0.3542072703168296],[115,73,77,0.35485836275513205],[115,73,78,0.3555130074650641],[115,73,79,0.3561722461113746],[115,74,64,0.34206930932149604],[115,74,65,0.34280313801873735],[115,74,66,0.3435250286096413],[115,74,67,0.3442364915382597],[115,74,68,0.3449390131838108],[115,74,69,0.3456340530339394],[115,74,70,0.34632304080868875],[115,74,71,0.3470073735351551],[115,74,72,0.3476884125728363],[115,74,73,0.348367480589649],[115,74,74,0.3490458584886742],[115,74,75,0.349724782285553],[115,74,76,0.35040543993658924],[115,74,77,0.3510889681175394],[115,74,78,0.3517764489530893],[115,74,79,0.3524689066970248],[115,75,64,0.33776526113335],[115,75,65,0.33852486953472866],[115,75,66,0.339273179267348],[115,75,67,0.34001168498271794],[115,75,68,0.34074185696630427],[115,75,69,0.3414651383281312],[115,75,70,0.3421829421445414],[115,75,71,0.34289664855108914],[115,75,72,0.34360760178657307],[115,75,73,0.3443171071881864],[115,75,74,0.34502642813784407],[115,75,75,0.3457367829596063],[115,75,76,0.3464493417682581],[115,75,77,0.3471652232690233],[115,75,78,0.3478854915084131],[115,75,79,0.3486111525762172],[115,76,64,0.33331241547832596],[115,76,65,0.3340972618920543],[115,76,66,0.3348714886897709],[115,76,67,0.3356365744238573],[115,76,68,0.33639397294437295],[115,76,69,0.33714511060668884],[115,76,70,0.33789138343073466],[115,76,71,0.3386341542118292],[115,76,72,0.3393747495831059],[115,76,73,0.34011445702950655],[115,76,74,0.3408545218534066],[115,76,75,0.3415961440917886],[115,76,76,0.34234047538502577],[115,76,77,0.34308861579725125],[115,76,78,0.3438416105883163],[115,76,79,0.3446004469373445],[115,77,64,0.3287125035898753],[115,77,65,0.3295220369568628],[115,77,66,0.3303216691304902],[115,77,67,0.33111286226331826],[115,77,68,0.3318970534343587],[115,77,69,0.3326756518734242],[115,77,70,0.33345003613755136],[115,77,71,0.3342215512394643],[115,77,72,0.33499150572809167],[115,77,73,0.3357611687211085],[115,77,74,0.33653176688956976],[115,77,75,0.33730448139454794],[115,77,76,0.3380804447758389],[115,77,77,0.3388607377927124],[115,77,78,0.3396463862167092],[115,77,79,0.3404383575764903],[115,78,64,0.3239673571468214],[115,78,65,0.32480101744722534],[115,78,66,0.3256255340742542],[115,78,67,0.3264423524860507],[115,78,68,0.3272528926611759],[115,78,69,0.3280585463393557],[115,78,70,0.32886067421476184],[115,78,71,0.329660603081798],[115,78,72,0.33045962293340025],[115,78,73,0.33125898401182574],[115,78,74,0.3320598938119965],[115,78,75,0.3328635140373088],[115,78,76,0.3336709575079735],[115,78,77,0.334483285021865],[115,78,78,0.33530150216787724],[115,78,79,0.3361265560917974],[115,79,64,0.31907890725963634],[115,79,65,0.3199361259289415],[115,79,66,0.3207849972424029],[115,79,67,0.32162694967543903],[115,79,68,0.3224633857832182],[115,79,69,0.3232956794574727],[115,79,70,0.3241251731363174],[115,79,71,0.32495317496703846],[115,79,72,0.3257809559218654],[115,79,73,0.3266097468666971],[115,79,74,0.3274407355828519],[115,79,75,0.3282750637417491],[115,79,76,0.3291138238325894],[115,79,77,0.329958056043011],[115,79,78,0.3308087450927203],[115,79,79,0.33166681702010703],[115,80,64,0.3140491834042624],[115,80,65,0.31492938375843343],[115,80,66,0.31580207154494],[115,80,67,0.31666865797465465],[115,80,68,0.3175305278630872],[115,80,69,0.3183890369029347],[115,80,70,0.31924550889010817],[115,80,71,0.3201012329032007],[115,80,72,0.320957460436412],[115,80,73,0.3218154024858959],[115,80,74,0.3226762265896065],[115,80,75,0.323541053820546],[115,80,76,0.3244109557334827],[115,80,77,0.325286951265118],[115,80,78,0.32617000358769765],[115,80,79,0.32706101691608147],[115,81,64,0.30888031230336976],[115,81,65,0.30978290997262015],[115,81,66,0.3106788679791468],[115,81,67,0.3115695799941274],[115,81,68,0.31245641278403774],[115,81,69,0.31334070349859966],[115,81,70,0.3142237569126815],[115,81,71,0.3151068426221174],[115,81,72,0.3159911921934566],[115,81,73,0.3168779962676135],[115,81,74,0.31776840161749265],[115,81,75,0.3186635081594892],[115,81,76,0.31956436591893794],[115,81,77,0.32047197194948496],[115,81,78,0.321387267206382],[115,81,79,0.322311133373713],[115,82,64,0.3035745167549143],[115,82,65,0.30449892012563506],[115,82,66,0.30541759447460043],[115,82,67,0.30633191566500173],[115,82,68,0.307243232112004],[115,82,69,0.3081528620857486],[115,82,70,0.3090620909687893],[115,82,71,0.30997216846792597],[115,82,72,0.31088430578045],[115,82,73,0.3117996727147683],[115,82,74,0.3127193947654848],[115,82,75,0.3136445501428351],[115,82,76,0.3145761667565511],[115,82,77,0.3155152191541282],[115,82,78,0.31646262541349424],[115,82,79,0.3174192439900922],[115,83,64,0.2981341144082502],[115,83,65,0.2990797250726415],[115,83,66,0.3000205546848519],[115,83,67,0.30095796103883093],[115,83,68,0.3018932739034593],[115,83,69,0.3028277923402564],[115,83,70,0.30376278197600903],[115,83,71,0.3046994722302787],[115,83,72,0.3056390534978073],[115,83,73,0.306582674285782],[115,83,74,0.3075314383060452],[115,83,75,0.3084864015221385],[115,83,76,0.3094485691512624],[115,83,77,0.31041889262112177],[115,83,78,0.31139826648165636],[115,83,79,0.31238752527167113],[115,84,64,0.29256151648768014],[115,84,65,0.2935277297006306],[115,84,66,0.29449014672564555],[115,84,67,0.29545010703339114],[115,84,68,0.29640892145899156],[115,84,69,0.2973678695340918],[115,84,70,0.2983281967743272],[115,84,71,0.2992911119221623],[115,84,72,0.30025778414511195],[115,84,73,0.30122934018931263],[115,84,74,0.30220686148852427],[115,84,75,0.3031913812284552],[115,84,76,0.3041838813664888],[115,84,77,0.3051852896067845],[115,84,78,0.3061964763307524],[115,84,79,0.30721825148291293],[115,85,64,0.286859226463293],[115,85,65,0.2878454316060488],[115,85,66,0.28882886185953216],[115,85,67,0.28981083812446756],[115,85,68,0.2907926520224492],[115,85,69,0.2917755632420016],[115,85,70,0.2927607968405386],[115,85,71,0.2937495405021808],[115,85,72,0.29474294175144955],[115,85,73,0.29574210512279897],[115,85,74,0.2967480892860722],[115,85,75,0.29776190412777037],[115,85,76,0.2987845077882145],[115,85,77,0.2998168036545745],[115,85,78,0.30085963730975984],[115,85,79,0.30191379343718944],[115,86,64,0.2810298386693689],[115,86,65,0.2820354197195365],[115,86,66,0.28303928312715265],[115,86,67,0.28404273098389116],[115,86,68,0.28504703542593124],[115,86,69,0.28605343599365374],[115,86,70,0.2870631369477318],[115,86,71,0.28807730454157465],[115,86,72,0.28909706425014103],[115,86,73,0.2901234979550864],[115,86,74,0.29115764108632847],[115,86,75,0.29220047971991925],[115,86,76,0.29325294763230575],[115,86,77,0.29431592331095024],[115,86,78,0.29539022692130934],[115,86,79,0.29647661723018465],[115,87,64,0.2750760368702201],[115,87,65,0.2761003728776471],[115,87,66,0.2771240839250625],[115,87,67,0.2781484530636936],[115,87,68,0.2791747326804932],[115,87,69,0.2802041418711073],[115,87,70,0.28123786376973653],[115,87,71,0.28227704283584687],[115,87,72,0.2833227820977492],[115,87,73,0.28437614035300696],[115,87,74,0.2854381293257645],[115,87,75,0.28650971078087584],[115,87,76,0.28759179359492054],[115,87,77,0.2886852307840774],[115,87,78,0.28979081648885363],[115,87,79,0.29090928291568446],[115,88,64,0.26900059277331045],[115,88,65,0.27004305834138687],[115,88,66,0.2710860265299408],[115,88,67,0.27213076112622625],[115,88,68,0.2731784945124131],[115,88,69,0.27423042505145917],[115,88,70,0.275287714430376],[115,88,71,0.27635148496084544],[115,88,72,0.27742281683720493],[115,88,73,0.2785027453517618],[115,88,74,0.2795922580675285],[115,88,75,0.2806922919482586],[115,88,76,0.2818037304458713],[115,88,77,0.2829274005452328],[115,88,78,0.284064069766295],[115,88,79,0.28521444312360456],[115,89,64,0.2628063644899698],[115,89,65,0.2638663302618939],[115,89,66,0.2649279605694967],[115,89,67,0.26599249972055466],[115,89,68,0.2670611598453295],[115,89,69,0.26813511829497405],[115,89,70,0.26921551499783414],[115,89,71,0.27030344977360515],[115,89,72,0.2713999796053606],[115,89,73,0.27250611586941204],[115,89,74,0.2736228215230946],[115,89,75,0.27475100825035526],[115,89,76,0.2758915335652337],[115,89,77,0.2770451978732027],[115,89,78,0.27821274149036945],[115,89,79,0.2793948416205504],[115,90,64,0.25649629494343673],[115,90,65,0.25757312809298827],[115,90,66,0.25865282143981083],[115,90,67,0.2597365996048677],[115,90,68,0.26082565422798976],[115,90,69,0.2619211413784396],[115,90,70,0.26302417892387897],[115,90,71,0.2641358438576963],[115,90,72,0.265257169584712],[115,90,73,0.26638914316522005],[115,90,74,0.26753270251746275],[115,90,75,0.26868873357841283],[115,90,76,0.2698580674229534],[115,90,77,0.2710414773414249],[115,90,78,0.27223967587553777],[115,90,79,0.2734533118126639],[115,91,64,0.25007341022443785],[115,91,65,0.2511664749508037],[115,91,66,0.2522636286693166],[115,91,67,0.2533660761151044],[115,91,68,0.2544749882078118],[115,91,69,0.25559149947394755],[115,91,70,0.2567167054281428],[115,91,71,0.25785165991327696],[115,91,72,0.25899737239949083],[115,91,73,0.2601548052420428],[115,91,74,0.261324870898108],[115,91,75,0.262508429102391],[115,91,76,0.2637062840016462],[115,91,77,0.2649191812480719],[115,91,78,0.2661478050515791],[115,91,79,0.26739277519094795],[115,92,64,0.24354081789401605],[115,92,65,0.24464947592021014],[115,92,66,0.2457634842291362],[115,92,67,0.2468840274795144],[115,92,68,0.24801225564997773],[115,92,69,0.24914928147282236],[115,92,70,0.25029617782718055],[115,92,71,0.2514539750915713],[115,92,72,0.2526236584558478],[115,92,73,0.25380616519249827],[115,92,74,0.25500238188740165],[115,92,75,0.2562131416299046],[115,92,76,0.2574392211623186],[115,92,77,0.2586813379887999],[115,92,78,0.25994014744361427],[115,92,79,0.2612162397188008],[115,93,64,0.23690170523394902],[115,93,65,0.2380253163083706],[115,93,66,0.23915557079011054],[115,93,67,0.240293633079492],[115,93,68,0.241440632002395],[115,93,69,0.2425976582550282],[115,93,70,0.24376576180863802],[115,93,71,0.24494594927410654],[115,93,72,0.2461391812264591],[115,93,73,0.24734636948923633],[115,93,74,0.2485683743788348],[115,93,75,0.24980600190868057],[115,93,76,0.25106000095333414],[115,93,77,0.2523310603724916],[115,93,78,0.2536198060948831],[115,93,79,0.2549267981620813],[115,94,64,0.23015933744460174],[115,94,65,0.23129725984527633],[115,94,66,0.23244314992636825],[115,94,67,0.23359815165652664],[115,94,68,0.23476337250637117],[115,94,69,0.23593988090390516],[115,94,70,0.23712870365037889],[115,94,71,0.23833082329655603],[115,94,72,0.23954717547940393],[115,94,73,0.24077864621916206],[115,94,74,0.24202606917689332],[115,94,75,0.24329022287238158],[115,94,76,0.24457182786247536],[115,94,77,0.2458715438798412],[115,94,78,0.24718996693212805],[115,94,79,0.24852762636155637],[115,95,64,0.22331705579003824],[115,95,65,0.22446864683108306],[115,95,66,0.22562956026525893],[115,95,67,0.22680091946509687],[115,95,68,0.22798381035282916],[115,95,69,0.22917927886605935],[115,95,70,0.2303883283843979],[115,95,71,0.23161191711701654],[115,95,72,0.2328509554511419],[115,95,73,0.23410630326144208],[115,95,74,0.23537876718041328],[115,95,75,0.23666909782962656],[115,95,76,0.23797798701193654],[115,95,77,0.23930606486461603],[115,95,78,0.24065389697341621],[115,95,79,0.24202198144756787],[115,96,64,0.21637827569072973],[115,96,65,0.2175428922305888],[115,96,66,0.21871821558398727],[115,96,67,0.21990534837184442],[115,96,68,0.22110535478439722],[115,96,69,0.2223192580567404],[115,96,70,0.2235480379058518],[115,96,71,0.22479262792905183],[115,96,72,0.22605391296392047],[115,96,73,0.22733272640962143],[115,96,74,0.22862984750974646],[115,96,75,0.22994599859653378],[115,96,76,0.23128184229656729],[115,96,77,0.2326379786979168],[115,96,78,0.23401494247872268],[115,96,79,0.2354131999972357],[115,97,64,0.2093464847636986],[115,97,65,0.21052348371469043],[115,97,66,0.21171260285278687],[115,97,67,0.21291492390086653],[115,97,68,0.21413148914321434],[115,97,69,0.21536329891054865],[115,97,70,0.21661130902704998],[115,97,71,0.21787642821934353],[115,97,72,0.21915951548745533],[115,97,73,0.22046137743769542],[115,97,74,0.22178276557757745],[115,97,75,0.22312437357263165],[115,97,76,0.2244868344652154],[115,97,77,0.22587071785528362],[115,97,78,0.2272765270431205],[115,97,79,0.22870469613404643],[115,98,64,0.2022252408099127],[115,98,65,0.20341397964863323],[115,98,66,0.2046162802244504],[115,98,67,0.20583320322494222],[115,98,68,0.20706576886426628],[115,98,69,0.20831495437728664],[115,98,70,0.20958169147622227],[115,98,71,0.21086686376976654],[115,98,72,0.2121713041447011],[115,98,73,0.21349579210995384],[115,98,74,0.21484105110321366],[115,98,75,0.21620774575995683],[115,98,76,0.21759647914498886],[115,98,77,0.2190077899464672],[115,98,78,0.22044214963240144],[115,98,79,0.22189995956965047],[115,99,64,0.19501816974928393],[115,99,65,0.1962180070274102],[115,99,66,0.1974328749705683],[115,99,67,0.19866381310304748],[115,99,68,0.19991181941460542],[115,99,69,0.20117784786330828],[115,99,70,0.202462805841413],[115,99,71,0.20376755160424032],[115,99,72,0.20509289166206096],[115,99,73,0.20643957813494557],[115,99,74,0.20780830607069256],[115,99,75,0.20919971072568383],[115,99,76,0.21061436480877943],[115,99,77,0.2120527756882093],[115,99,78,0.21351538256146507],[115,99,79,0.2150025535882048],[115,100,64,0.18772896350310336],[115,100,65,0.18893925935813874],[115,100,66,0.1901660813643072],[115,100,67,0.19141044776398833],[115,100,68,0.19267333417828572],[115,100,69,0.19395567111819495],[115,100,70,0.1952583414593344],[115,100,71,0.1965821778801855],[115,100,72,0.19792796026386816],[115,100,73,0.19929641306339757],[115,100,74,0.20068820263054088],[115,100,75,0.2021039345081222],[115,100,76,0.20354415068588377],[115,100,77,0.20500932681986794],[115,100,78,0.20649986941531545],[115,100,79,0.20801611297310135],[115,101,64,0.18036137782371758],[115,101,65,0.1815814944892247],[115,101,66,0.1828196585095369],[115,101,67,0.18407686673596024],[115,101,68,0.18535407228681994],[115,101,69,0.18665218206657075],[115,101,70,0.18797205424898966],[115,101,71,0.1893144957244005],[115,101,72,0.1906802595109519],[115,101,73,0.1920700421298978],[115,101,74,0.19348448094499926],[115,101,75,0.1949241514658927],[115,101,76,0.19638956461553703],[115,101,77,0.19788116396169925],[115,101,78,0.19939932291248025],[115,101,79,0.20094434187589494],[115,102,64,0.1729192300718193],[115,102,65,0.1741485323866825],[115,102,66,0.17539742811667386],[115,102,67,0.17666689262240431],[115,102,68,0.17795785639553036],[115,102,69,0.17927120258542095],[115,102,70,0.18060776449042992],[115,102,71,0.18196832301371735],[115,102,72,0.18335360408364748],[115,102,73,0.18476427603870765],[115,102,74,0.18620094697707112],[115,102,75,0.18766416207064412],[115,102,76,0.1891544008437145],[115,102,77,0.19067207441615808],[115,102,78,0.192217522711206],[115,102,79,0.19379101162778667],[115,103,64,0.16540639694117065],[115,103,65,0.16664425285743212],[115,103,66,0.16790327222506352],[115,103,67,0.16918440882397973],[115,103,68,0.17048857040561016],[115,103,69,0.17181661622673872],[115,103,70,0.1731693545484701],[115,103,71,0.1745475401002664],[115,103,72,0.1759518715090801],[115,103,73,0.17738298869352653],[115,103,74,0.17884147022322372],[115,103,75,0.1803278306431348],[115,103,76,0.18184251776303195],[115,103,77,0.18338590991204023],[115,103,78,0.1849583131582606],[115,103,79,0.1865599584934895],[115,104,64,0.1578268121305651],[115,104,65,0.1590725932193785],[115,104,66,0.16034113087170548],[115,104,67,0.16163335720645905],[115,104,68,0.16295015713170674],[115,104,69,0.16429236588530333],[115,104,70,0.16566076654116785],[115,104,71,0.16705608748115225],[115,104,72,0.16847899983252485],[115,104,73,0.16993011487101606],[115,104,74,0.171409981389548],[115,104,75,0.17291908303248954],[115,104,76,0.17445783559555078],[115,104,77,0.17602658429127888],[115,104,78,0.17762560098015195],[115,104,79,0.17925508136729063],[115,105,64,0.15018446396340784],[115,105,65,0.1514375459186516],[115,105,66,0.15271499970670133],[115,105,67,0.15401773571492305],[115,105,68,0.15534661591539872],[115,105,69,0.15670245141196953],[115,105,70,0.15808599995344408],[115,105,71,0.1594979634129166],[115,105,72,0.16093898523321987],[115,105,73,0.16240964783845868],[115,105,74,0.1639104700117497],[115,105,75,0.16544190423900162],[115,105,76,0.16700433401885872],[115,105,77,0.16859807113876196],[115,105,78,0.1702233529171292],[115,105,79,0.17188033941167197],[115,106,64,0.14248339295472817],[115,106,65,0.1437431560938231],[115,106,66,0.14502892755523966],[115,106,67,0.14634159593407398],[115,106,68,0.14768200018438737],[115,106,69,0.14905092717228186],[115,106,70,0.15044910919565913],[115,106,71,0.15187722147060828],[115,106,72,0.15333587958444855],[115,106,73,0.15482563691536805],[115,106,74,0.15634698201879038],[115,106,75,0.1579003359802998],[115,106,76,0.15948604973524733],[115,106,77,0.1611044013549937],[115,106,78,0.16275559329979034],[115,106,79,0.16443974963831576],[115,107,64,0.1347276893254265],[115,107,65,0.13599351908690227],[115,107,66,0.13728701392592096],[115,107,67,0.13860904059446483],[115,107,68,0.1399604149572023],[115,107,69,0.14134189955021864],[115,107,70,0.1427542011069497],[115,107,71,0.14419796805126056],[115,107,72,0.14567378795769742],[115,107,73,0.1471821849788545],[115,107,74,0.14872361723998406],[115,107,75,0.15029847420068548],[115,107,76,0.15190707398379],[115,107,77,0.1535496606714033],[115,107,78,0.15522640156810075],[115,107,79,0.15693738443129862],[115,108,64,0.12692149046414403],[115,108,65,0.12819277790149508],[115,108,66,0.12949340646580815],[115,108,67,0.1308242210250351],[115,108,68,0.13218601429380772],[115,108,69,0.13357952439744986],[115,108,70,0.1350054324037107],[115,108,71,0.13646435982215932],[115,108,72,0.13795686607126856],[115,108,73,0.13948344591312933],[115,108,74,0.14104452685592928],[115,108,75,0.1426404665240193],[115,108,76,0.1442715499957009],[115,108,77,0.14593798710868106],[115,108,78,0.14763990973320035],[115,108,79,0.14937736901285198],[115,109,64,0.11906897833656543],[115,109,65,0.12034512060794256],[115,109,66,0.12165229836201658],[115,109,67,0.12299133455176342],[115,109,68,0.12436299869192269],[115,109,69,0.12576800442792146],[115,109,70,0.12720700707303434],[115,109,71,0.12868060111372037],[115,109,72,0.13018931768316416],[115,109,73,0.13173362200296285],[115,109,74,0.13331391079309157],[115,109,75,0.134930509649975],[115,109,76,0.1365836703927908],[115,109,77,0.13827356837795846],[115,109,78,0.14000029978181666],[115,109,79,0.14176387885150527],[115,110,64,0.11117437684195047],[115,110,65,0.11245477769522993],[115,110,66,0.11376792568963623],[115,110,67,0.11511462184223176],[115,110,68,0.11649561242884976],[115,110,69,0.11791158655756351],[115,110,70,0.1193631737109036],[115,110,71,0.12085094125676604],[115,110,72,0.12237539192803926],[115,110,73,0.12393696127088882],[115,110,74,0.12553601506183604],[115,110,75,0.1271728466934554],[115,110,76,0.12884767452881685],[115,110,77,0.13056063922462918],[115,110,78,0.13231180102308288],[115,110,79,0.1341011370124136],[115,111,64,0.1032419491172934],[115,111,65,0.10452601937006817],[115,111,66,0.10584456470638787],[115,111,67,0.10719836419650147],[115,111,68,0.1085881408492107],[115,111,69,0.11001455918951775],[115,111,70,0.11147822280553604],[115,111,71,0.11297967186460162],[115,111,72,0.11451938059861555],[115,111,73,0.11609775475855699],[115,111,74,0.11771512903830067],[115,111,75,0.1193717644675657],[115,111,76,0.12106784577412116],[115,111,77,0.12280347871520464],[115,111,78,0.12457868737815125],[115,111,79,0.1263934114502569],[115,112,64,0.09527599478891408],[115,112,65,0.09656315280295003],[115,112,66,0.09788652909381362],[115,112,67,0.09924688078410437],[115,112,68,0.10064490759839323],[115,112,69,0.1020812494446901],[115,112,70,0.10355648396568412],[115,112,71,0.10507112405969515],[115,112,72,0.10662561537136628],[115,112,73,0.10822033375203449],[115,112,74,0.10985558268991935],[115,112,75,0.11153159070995072],[115,112,76,0.1132485087433624],[115,112,77,0.11500640746701002],[115,112,78,0.11680527461241036],[115,112,79,0.11864501224452062],[115,113,64,0.08728084717127604],[115,113,65,0.08857051932097698],[115,113,66,0.08989816714480126],[115,113,67,0.09126452582694394],[115,113,68,0.09267027180150594],[115,113,69,0.09411602033742467],[115,113,70,0.09560232309368688],[115,113,71,0.09712966564475872],[115,113,72,0.09869846497626489],[115,113,73,0.1003090669508544],[115,113,74,0.10196174374439165],[115,113,75,0.10365669125229326],[115,113,76,0.10539402646614049],[115,113,77,0.10717378482052187],[115,113,78,0.1089959175101049],[115,113,79,0.11086028877695786],[115,114,64,0.0792608704134582],[115,114,65,0.08055249154788258],[115,114,66,0.08188385889786487],[115,114,67,0.08325568572853331],[115,114,68,0.08466862518826362],[115,114,69,0.08612326789672292],[115,114,70,0.08762013950369857],[115,114,71,0.08915969821865166],[115,114,72,0.09074233231102347],[115,114,73,0.0923683575812358],[115,114,74,0.09403801480251911],[115,114,75,0.0957514671333945],[115,114,76,0.09750879750093466],[115,114,77,0.09931000595476108],[115,114,78,0.1011550069917761],[115,114,79,0.10304362685164925],[115,115,64,0.07122045659292009],[115,115,65,0.07251347049089402],[115,115,66,0.0738480132178253],[115,115,67,0.0752247761492103],[115,115,68,0.07664438916344879],[115,115,69,0.07810741823265105],[115,115,70,0.0796143629847354],[115,115,71,0.0811656542367521],[115,115,72,0.08276165149946307],[115,115,73,0.08440264045311657],[115,115,74,0.08608883039455639],[115,115,75,0.08782035165548308],[115,115,76,0.08959725299199978],[115,115,77,0.09141949894539658],[115,115,78,0.09328696717417151],[115,115,79,0.09519944575730915],[115,116,64,0.06316402275683514],[115,116,65,0.06445788257470458],[115,116,66,0.06579506482316239],[115,116,67,0.06717623902760539],[115,116,68,0.06860201182321907],[115,116,69,0.07007292454820757],[115,116,70,0.07158945080881468],[115,116,71,0.07315199401606892],[115,116,72,0.07476088489428778],[115,116,73,0.07641637896127318],[115,116,74,0.07811865398034418],[115,116,75,0.07986780738402072],[115,116,76,0.08166385366949153],[115,116,77,0.08350672176582069],[115,116,78,0.08539625237289128],[115,116,79,0.08733219527210662],[115,117,64,0.05509600791062175],[115,117,65,0.056390176622186816],[115,117,66,0.057729471259670095],[115,117,67,0.0591145395479884],[115,117,68,0.06054596491689218],[115,117,69,0.06202426409628303],[115,117,70,0.0635498846838149],[115,117,71,0.06512320268472138],[115,117,72,0.06674452002389464],[115,117,73,0.06841406203015626],[115,117,74,0.0701319748928596],[115,117,75,0.07189832309064131],[115,117,76,0.0737130867924542],[115,117,77,0.07557615923083538],[115,117,78,0.07748734404740792],[115,117,79,0.07944635261063865],[115,118,64,0.04702086995411292],[115,118,65,0.0483148207822891],[115,118,66,0.04965570982085432],[115,118,67,0.05104416305393816],[115,118,68,0.05248074075464998],[115,118,69,0.05396593508214992],[115,118,70,0.05550016765149984],[115,118,71,0.057083787076230685],[115,118,72,0.05871706648365904],[115,118,73,0.060400201002885234],[115,118,74,0.062133305225621216],[115,118,75,0.06391641063965786],[115,118,76,0.06574946303510931],[115,118,77,0.0676323198833858],[115,118,78,0.0695647476888937],[115,118,79,0.07154641931348632],[115,119,64,0.038943082565152165],[115,119,65,0.040236299404900755],[115,119,66,0.04157827441486217],[115,119,67,0.04296961190812282],[115,119,68,0.04441084906094639],[115,119,69,0.04590245351127348],[115,119,70,0.047444820930491294],[115,119,71,0.0490382725684107],[115,119,72,0.05068305277148233],[115,119,73,0.05237932647418564],[115,119,74,0.05412717666373634],[115,119,75,0.0559266018179268],[115,119,76,0.05777751331623021],[115,119,77,0.05967973282412675],[115,119,78,0.06163298965064529],[115,119,79,0.06363691807914812],[115,120,64,0.03086713203041458],[115,120,65,0.03215910986248682],[115,120,66,0.03350167237774132],[115,120,67,0.034895402297987876],[115,120,68,0.0363408137734238],[115,120,69,0.03783834998224117],[115,120,70,0.039388380703993475],[115,120,71,0.04099119986665456],[115,120,72,0.04264702306740392],[115,120,73,0.04435598506707261],[115,120,74,0.04611813725839381],[115,120,75,0.047933445107873285],[115,120,76,0.04980178557141074],[115,120,77,0.051722944483629574],[115,120,78,0.05369661392091035],[115,120,79,0.05572238953815212],[115,121,64,0.022797514023863263],[115,121,65,0.02408775931890106],[115,121,66,0.02543042123343825],[115,121,67,0.0268260609877623],[115,121,68,0.028275169787739474],[115,121,69,0.029778166425218355],[115,121,70,0.031335394852674114],[115,121,71,0.03294712173202907],[115,121,72,0.034613533957683296],[115,121,73,0.03633473615368732],[115,121,74,0.038110748145205764],[115,121,75,0.0399415024040794],[115,121,76,0.04182684146862553],[115,121,77,0.04376651533762849],[115,121,78,0.04576017883851585],[115,121,79,0.04780738896974712],[115,122,64,0.014738730332633954],[115,122,65,0.01602676144517068],[115,122,66,0.017369045400330685],[115,122,67,0.018766122016577347],[115,122,68,0.020218459648104592],[115,122,69,0.0217264527857286],[115,122,70,0.02329041963249978],[115,122,71,0.024910599653969856],[115,122,72,0.02658715110314852],[115,122,73,0.028320148520081134],[115,122,74,0.03010958020619664],[115,122,75,0.0319553456732341],[115,122,76,0.033857253066885196],[115,122,77,0.035815016565106494],[115,122,78,0.037828253751098606],[115,122,79,0.03989648296097387],[115,123,64,0.006695285530144368],[115,123,65,0.007980633082049826],[115,123,66,0.009322072844088702],[115,123,67,0.010720123342493282],[115,123,68,0.012175230183324226],[115,123,69,0.013687763653549456],[115,123,70,0.015258016297319488],[115,123,71,0.016886200467373158],[115,123,72,0.018572445851607167],[115,123,73,0.020316796974742035],[115,123,74,0.02211921067523437],[115,123,75,0.023979553557241295],[115,123,76,0.025897599417777695],[115,123,77,0.02787302664901714],[115,123,78,0.029905415615734232],[115,123,79,0.03199424600791345],[115,124,64,-0.001328316403162666],[115,124,65,-4.61091502504396E-5],[115,124,66,0.0012940316772737659],[115,124,67,0.0026926034328427217],[115,124,68,0.004150029088752227],[115,124,69,0.005666654837136131],[115,124,70,0.0072427476666059865],[115,124,71,0.008878492914493163],[115,124,72,0.010573991794726456],[115,124,73,0.01232925890127512],[115,124,74,0.014144219687310777],[115,124,75,0.016018707919890907],[115,124,76,0.01795246311030696],[115,124,77,0.019945127920046768],[115,124,78,0.021996245542368786],[115,124,79,0.02410525705951483],[115,125,64,-0.009327575511645037],[115,125,65,-0.008048952295356904],[115,125,66,-0.006710553294524857],[115,125,67,-0.005311902199311158],[115,125,68,-0.003852598546043029],[115,125,69,-0.0023323201166299268],[115,125,70,-7.508253618481175E-4],[115,125,71,8.920441514422284E-4],[115,125,72,0.00259636126918239],[115,125,73,0.0043621107550320115],[115,125,74,0.006189186771471955],[115,125,75,0.008077390336894252],[115,125,76,0.01002642675882337],[115,125,77,0.012035903043218443],[115,125,78,0.014105325279853975],[115,125,79,0.016234096003803766],[115,126,64,-0.017297999349065063],[115,126,65,-0.01602339055726304],[115,126,66,-0.014687164080228299],[115,126,67,-0.013288864512810195],[115,126,68,-0.01182811376411208],[115,126,69,-0.010304613457577882],[115,126,70,-0.00871814735448595],[115,126,71,-0.007068583800912465],[115,126,72,-0.005355878198130548],[115,126,73,-0.0035800754965173986],[115,126,74,-0.001741312712812193],[115,126,75,1.6017852907423968E-4],[115,126,76,0.002124069433842468],[115,126,77,0.004149931447130495],[115,126,78,0.006237233644379558],[115,126,79,0.008385340096267235],[115,127,64,-0.025235106515556882],[115,127,65,-0.023964928849679767],[115,127,66,-0.022631293064065472],[115,127,67,-0.021233764509719533],[115,127,68,-0.019771987322041495],[115,127,69,-0.018245686821855456],[115,127,70,-0.016654671939385524],[115,127,71,-0.014998837661247988],[115,127,72,-0.013278167500420324],[115,127,73,-0.011492735989261593],[115,127,74,-0.009642711195427367],[115,127,75,-0.0077283572608785045],[115,127,76,-0.005750036963841132],[115,127,77,-0.003708214303766],[115,127,78,-0.0016034571092909955],[115,127,79,5.635603308183912E-4],[115,128,64,-0.03313443024716711],[115,128,65,-0.03186908639841407],[115,128,66,-0.030538446619838344],[115,128,67,-0.02914209686053193],[115,128,68,-0.027679703325164284],[115,128,69,-0.02615101487621524],[115,128,70,-0.02455586545870403],[115,128,71,-0.022894176547482048],[115,128,72,-0.02116595961704959],[115,128,73,-0.0193713186339739],[115,128,74,-0.017510452571747104],[115,128,75,-0.015583657948289309],[115,128,76,-0.013591331385947925],[115,128,77,-0.011533972194046505],[115,128,78,-0.009412184973983773],[115,128,79,-0.007226682246858962],[115,129,64,-0.0409915220581662],[115,129,65,-0.039731400396975036],[115,129,66,-0.03840414877885229],[115,129,67,-0.03700937358346351],[115,129,68,-0.035546762917261665],[115,129,69,-0.03401608901717923],[115,129,70,-0.03241721067637082],[115,129,71,-0.030750075692069445],[115,129,72,-0.02901472333552524],[115,129,73,-0.027211286844093574],[115,129,74,-0.025339995935320436],[115,129,75,-0.02340117934322128],[115,129,76,-0.021395267376615346],[115,129,77,-0.019322794499556983],[115,129,78,-0.01718440193387505],[115,129,79,-0.014980840283787322],[115,130,64,-0.04880195543573179],[115,130,65,-0.04754742971500975],[115,130,66,-0.04622394495111637],[115,130,67,-0.04483112777743481],[115,130,68,-0.04336868802435723],[115,130,69,-0.041836421124683554],[115,130,70,-0.04023421054062781],[115,130,71,-0.03856203021249893],[115,130,72,-0.036819947029020805],[115,130,73,-0.035008123319360984],[115,130,74,-0.0331268193667138],[115,130,75,-0.0311763959436393],[115,130,76,-0.029157316869010463],[115,130,77,-0.027070151586620295],[115,130,78,-0.02491557776545439],[115,130,79,-0.02269438392159573],[115,131,64,-0.056561329587199616],[115,131,65,-0.05531275865976215],[115,131,66,-0.05399340570000449],[115,131,67,-0.05260291740893791],[115,131,68,-0.0511410251527995],[115,131,69,-0.049607547370394744],[115,131,70,-0.048002392001613936],[115,131,71,-0.04632555893718515],[115,131,72,-0.04457714248963107],[115,131,73,-0.04275733388549796],[115,131,74,-0.04086642377870475],[115,131,75,-0.03890480478520897],[115,131,76,-0.03687297403884737],[115,131,77,-0.03477153576840064],[115,131,78,-0.0326012038958835],[115,131,79,-0.030362804656037246],[115,132,64,-0.0642652732400868],[115,132,65,-0.06302300079076034],[115,132,66,-0.061708130570584774],[115,132,67,-0.06032032915299246],[115,132,68,-0.05885934924183622],[115,132,69,-0.05732503208090767],[115,132,70,-0.055717309884196986],[115,132,71,-0.05403620828696065],[115,132,72,-0.05228184881755993],[115,132,73,-0.050454451390145816],[115,132,74,-0.0485543368180279],[115,132,75,-0.04658192934793415],[115,132,76,-0.044537759215012684],[115,132,77,-0.04242246521862836],[115,132,78,-0.040236797318953355],[115,132,79,-0.03798161925433041],[115,133,64,-0.0719094484944865],[115,133,65,-0.0706738027873327],[115,133,66,-0.06936375197121536],[115,133,67,-0.06797898228778732],[115,133,68,-0.06651926757028048],[115,133,69,-0.06498447165541954],[115,133,70,-0.0633745508156528],[115,133,71,-0.06168955621176608],[115,133,72,-0.059929636365844474],[115,133,73,-0.0580950396546529],[115,133,74,-0.05618611682327801],[115,133,75,-0.054203323519236735],[115,133,76,-0.05214722284690054],[115,133,77,-0.050018487942290246],[115,133,78,-0.04781790456824231],[115,133,79,-0.045546373729919876],[115,134,64,-0.07948955472803271],[115,134,65,-0.07826084836915076],[115,134,66,-0.07695593910860654],[115,134,67,-0.07557453264321301],[115,134,68,-0.0741164237174694],[115,134,69,-0.07258149853808338],[115,134,70,-0.07096973720839117],[115,134,71,-0.06928121618274197],[115,134,72,-0.06751611074081143],[115,134,73,-0.06567469748191512],[115,134,74,-0.06375735683916517],[115,134,75,-0.06176457561367399],[115,134,76,-0.059696949528655785],[115,134,77,-0.0575551858034794],[115,134,78,-0.05534010574767401],[115,134,79,-0.05305264737486093],[115,135,64,-0.08700133255363485],[115,135,65,-0.08577986226999645],[115,135,66,-0.08448040197654705],[115,135,67,-0.08310267660347681],[115,135,68,-0.08164650157870967],[115,135,69,-0.08011178524523499],[115,135,70,-0.07849853129792694],[115,135,71,-0.07680684123991399],[115,135,72,-0.0750369168584657],[115,135,73,-0.07318906272046666],[115,135,74,-0.07126368868732147],[115,135,75,-0.06926131244949174],[115,135,76,-0.06718256208052242],[115,135,77,-0.06502817861060262],[115,135,78,-0.06279901861966897],[115,135,79,-0.06049605685002246],[115,136,64,-0.09444056782958088],[115,136,65,-0.09322661426435785],[115,136,66,-0.09193289539789495],[115,136,67,-0.09055915516340562],[115,136,68,-0.08910522943481503],[115,136,69,-0.08757104844709829],[115,136,70,-0.08595663923569596],[115,136,71,-0.08426212809507716],[115,136,72,-0.08248774305641149],[115,136,73,-0.08063381638442157],[115,136,74,-0.0787007870932609],[115,136,75,-0.07668920348161767],[115,136,76,-0.07459972568690032],[115,136,77,-0.07243312825855086],[115,136,78,-0.07019030275049742],[115,136,79,-0.0678722603327081],[115,137,64,-0.10180309572222213],[115,137,65,-0.10059692324705938],[115,137,66,-0.09930922312004475],[115,137,67,-0.09793975803864419],[115,137,68,-0.09648838407594362],[115,137,69,-0.09495505310417607],[115,137,70,-0.09333981523692769],[115,137,71,-0.09164282129008927],[115,137,72,-0.08986432526151711],[115,137,73,-0.08800468682947538],[115,137,74,-0.08606437386970178],[115,137,75,-0.08404396499130107],[115,137,76,-0.08194415209131767],[115,137,77,-0.07976574292804006],[115,137,78,-0.07750966371303869],[115,137,79,-0.07517696172191124],[115,138,64,-0.10908480482141014],[115,138,65,-0.10788666136610303],[115,138,66,-0.10660524196404353],[115,138,67,-0.10524032782992687],[115,138,68,-0.10379179497990954],[115,138,69,-0.1022596166585028],[115,138,70,-0.10064386578374729],[115,138,71,-0.09894471741074407],[115,138,72,-0.09716245121349665],[115,138,73,-0.09529745398514522],[115,138,74,-0.09335022215642763],[115,138,75,-0.09132136433257554],[115,138,76,-0.08921160384849658],[115,138,77,-0.08702178134229344],[115,138,78,-0.08475285734712334],[115,138,79,-0.08240591490137195],[115,139,64,-0.11628164130829877],[115,139,65,-0.11509175820832951],[115,139,66,-0.11381686602696461],[115,139,67,-0.11245676424102447],[115,139,68,-0.11101134854457839],[115,139,69,-0.10948061327936587],[115,139,70,-0.10786465388311717],[115,139,71,-0.1061636693558361],[115,139,72,-0.10437796474401517],[115,139,73,-0.1025079536428487],[115,139,74,-0.10055416071628964],[115,139,75,-0.09851722423515241],[115,139,76,-0.09639789863311699],[115,139,77,-0.09419705708068071],[115,139,78,-0.09191569407706546],[115,139,79,-0.0895549280600485],[115,140,64,-0.12338961317583963],[115,140,65,-0.12220820503823171],[115,140,66,-0.1209400709378734],[115,140,67,-0.11958502835070817],[115,140,68,-0.11814299237467762],[115,140,69,-0.11661397816383146],[115,140,70,-0.11499810337994876],[115,140,71,-0.1132955906617511],[115,140,72,-0.111506770111658],[115,140,73,-0.10963208180016693],[115,140,74,-0.10767207828769354],[115,140,75,-0.10562742716407858],[115,140,76,-0.10349891360561514],[115,140,77,-0.10128744294964287],[115,140,78,-0.09899404328671979],[115,140,79,-0.0966198680703344],[115,141,64,-0.13040479450172693],[115,141,65,-0.12923205908967195],[115,141,66,-0.12797089816713625],[115,141,67,-0.12662114693847326],[115,141,68,-0.12518273962277682],[115,141,69,-0.12365571189182056],[115,141,70,-0.12204020332513987],[115,141,71,-0.1203364598823281],[115,141,72,-0.11854483639250368],[115,141,73,-0.1166657990610287],[115,141,74,-0.1146999279933123],[115,141,75,-0.11264791973590971],[115,141,76,-0.11051058983476536],[115,141,77,-0.1082888754106528],[115,141,78,-0.10598383775181464],[115,141,79,-0.10359666492377373],[115,142,64,-0.13732332977411643],[115,142,65,-0.13615944791082957],[115,142,66,-0.13490545938939713],[115,142,67,-0.13356121686435796],[115,142,68,-0.13212667338476092],[115,142,69,-0.13060188483607238],[115,142,70,-0.12898701239886146],[115,142,71,-0.1272823250243278],[115,142,72,-0.12548820192664045],[115,142,73,-0.12360513509215587],[115,142,74,-0.12163373180535841],[115,142,75,-0.11957471719172574],[115,142,76,-0.11742893677737609],[115,142,77,-0.11519735906554385],[115,142,78,-0.11288107812988701],[115,142,79,-0.11048131622460267],[115,143,64,-0.1441414382697297],[115,143,65,-0.14298657376199186],[115,143,66,-0.1417399408998392],[115,143,67,-0.14040140950246227],[115,143,68,-0.13897095114941105],[115,143,69,-0.13744864162659565],[115,143,70,-0.13583466338870465],[115,143,71,-0.13412930803811196],[115,143,72,-0.13233297882022765],[115,143,73,-0.13044619313537464],[115,143,74,-0.12846958506702388],[115,143,75,-0.1264039079266006],[115,143,76,-0.12425003681470603],[115,143,77,-0.12200897119881204],[115,143,78,-0.11968183750743044],[115,143,79,-0.11726989174072344],[115,144,64,-0.15085541848453543],[115,144,65,-0.14970971806637856],[115,144,66,-0.14847060808391432],[115,144,67,-0.14713797522836025],[115,144,68,-0.1457118093022821],[115,144,69,-0.14419220566980373],[115,144,70,-0.14257936772288382],[115,144,71,-0.14087360936372928],[115,144,72,-0.1390753575032987],[115,144,73,-0.13718515457598157],[115,144,74,-0.13520366107028126],[115,144,75,-0.1331316580757178],[115,144,76,-0.13097004984579597],[115,144,77,-0.12871986637708954],[115,144,78,-0.12638226600445113],[115,144,79,-0.12395853801231072],[115,145,64,-0.15746165261717338],[115,145,65,-0.15632524591416397],[115,145,66,-0.1550938099407132],[115,145,67,-0.15376724796057262],[115,145,68,-0.15234556768404273],[115,145,69,-0.15082888372250192],[115,145,70,-0.14921742005865468],[115,145,71,-0.1475115125325701],[115,145,72,-0.145711611343469],[115,145,73,-0.1438182835673384],[115,145,74,-0.14183221569020732],[115,145,75,-0.1397542161572951],[115,145,76,-0.13758521793788092],[115,145,77,-0.1353262811059457],[115,145,78,-0.1329785954365913],[115,145,79,-0.13054348301820695],[115,146,64,-0.16395661110477533],[115,146,65,-0.16282961061935264],[115,146,66,-0.1616059836596272],[115,146,67,-0.1602856497557511],[115,146,68,-0.15886863420293296],[115,146,69,-0.15735507052037645],[115,146,70,-0.15574520292560734],[115,146,71,-0.15403938882424706],[115,146,72,-0.15223810131520288],[115,146,73,-0.15034193171134114],[115,146,74,-0.1483515920754902],[115,146,75,-0.14626791777197456],[115,146,76,-0.14409187003353485],[115,146,77,-0.14182453854367927],[115,146,78,-0.13946714403447835],[115,146,79,-0.13702104089976685],[115,147,64,-0.17033685721135938],[115,147,65,-0.16921935832968726],[115,147,66,-0.16800365925047822],[115,147,67,-0.16668969545775625],[115,147,68,-0.16527750950151598],[115,147,69,-0.16376725346116328],[115,147,70,-0.16215919142400748],[115,147,71,-0.16045370197887798],[115,147,72,-0.15865128072481927],[115,147,73,-0.15675254279494544],[115,147,74,-0.1547582253952895],[115,147,75,-0.15266919035885607],[115,147,76,-0.15048642671472745],[115,147,77,-0.14821105327227513],[115,147,78,-0.14584432122047863],[115,147,79,-0.14338761674232547],[115,148,64,-0.1765990516689604],[115,148,65,-0.1754911326897468],[115,148,66,-0.1742834642272817],[115,148,67,-0.17297599740078373],[115,148,68,-0.1715687916778873],[115,148,69,-0.17006201734266124],[115,148,70,-0.16845595797835167],[115,148,71,-0.1667510129649299],[115,148,72,-0.16494769999139436],[115,148,73,-0.16304665758290948],[115,148,74,-0.1610486476426184],[115,148,75,-0.15895455800833191],[115,148,76,-0.1567654050239542],[115,148,77,-0.15448233612568474],[115,148,78,-0.15210663244301037],[115,148,79,-0.14963971141445243],[115,149,64,-0.18273995737116833],[115,149,65,-0.1816416795569088],[115,149,66,-0.18044212834531026],[115,149,67,-0.17914127016621728],[115,149,68,-0.1777391810610096],[115,149,69,-0.17623604915525903],[115,149,70,-0.17463217714580348],[115,149,71,-0.17292798480230176],[115,149,72,-0.17112401148323486],[115,149,73,-0.16922091866642497],[115,149,74,-0.16721949249391288],[115,149,75,-0.16512064633140078],[115,149,76,-0.16292542334211024],[115,149,77,-0.1606349990751067],[115,149,78,-0.15825068406809717],[115,149,79,-0.15577392646466548],[115,150,64,-0.18875644411923231],[115,150,65,-0.18766785177033685],[115,150,66,-0.1864764883916209],[115,150,67,-0.18518233539336526],[115,150,68,-0.18378548504033498],[115,150,69,-0.18228614292913503],[115,150,70,-0.1806846304796732],[115,150,71,-0.17898138744079994],[115,150,72,-0.17717697441008295],[115,150,73,-0.17527207536779532],[115,150,74,-0.17326750022495374],[115,150,75,-0.17116418738561257],[115,150,76,-0.168963206323269],[115,150,77,-0.16666576017142454],[115,150,78,-0.1642731883283126],[115,150,79,-0.16178696907575874],[115,151,64,-0.19464549342090465],[115,151,65,-0.19356661397316055],[115,151,66,-0.1923834930292162],[115,151,67,-0.1910961266442508],[115,151,68,-0.18970462294988966],[115,151,69,-0.18820920463630286],[115,151,70,-0.1866102114481134],[115,151,71,-0.18490810269418034],[115,151,72,-0.18310345977121945],[115,151,73,-0.18119698870133605],[115,151,74,-0.17918952268330757],[115,151,75,-0.17708202465782363],[115,151,76,-0.17487558988653717],[115,151,77,-0.17257144854497142],[115,151,78,-0.17017096832929401],[115,151,79,-0.16767565707692222],[115,152,64,-0.2004042033416843],[115,152,65,-0.1993350474875144],[115,152,66,-0.19816020769450038],[115,152,67,-0.1968796943221205],[115,152,68,-0.19549363100647532],[115,152,69,-0.19400225714716512],[115,152,70,-0.19240593040768839],[115,152,71,-0.1907051292294195],[115,152,72,-0.18890045535913413],[115,152,73,-0.18699263639015462],[115,152,74,-0.1849825283169525],[115,152,75,-0.18287111810341805],[115,152,76,-0.18065952626464654],[115,152,77,-0.1783490094622897],[115,152,78,-0.1759409631134834],[115,152,79,-0.17343692401331234],[115,153,64,-0.20602979340864747],[115,153,65,-0.20497035524261942],[115,153,66,-0.20380381954821802],[115,153,67,-0.2025302106438549],[115,153,68,-0.2011496673021782],[115,153,69,-0.1996624452417587],[115,153,70,-0.1980689196320089],[115,153,71,-0.19636958761140022],[115,153,72,-0.19456507081894236],[115,153,73,-0.19265611793899817],[115,153,74,-0.19064360725927298],[115,153,75,-0.18852854924218476],[115,153,76,-0.18631208910946906],[115,153,77,-0.1839955094400635],[115,153,78,-0.1815802327812841],[115,153,79,-0.1790678242732564],[115,154,64,-0.21151960956698534],[115,154,65,-0.21046986675602775],[115,154,66,-0.20931164247999656],[115,154,67,-0.20804497466640548],[115,154,68,-0.2066700168513098],[115,154,69,-0.20518704067581672],[115,154,70,-0.2035964383955482],[115,154,71,-0.20189872540313236],[115,154,72,-0.20009454276367455],[115,154,73,-0.19818465976329214],[115,154,74,-0.19616997647054513],[115,154,75,-0.194051526310971],[115,154,76,-0.19183047865458003],[115,154,77,-0.18950814141635297],[115,154,78,-0.18708596366975339],[115,154,79,-0.18456553827321953],[115,155,64,-0.21687112918897344],[115,155,65,-0.2158310431677557],[115,155,66,-0.2146811221662116],[115,155,67,-0.21342141736697529],[115,155,68,-0.21205209669149394],[115,155,69,-0.21057344730136518],[115,155,70,-0.20898587811236569],[115,155,71,-0.20728992232123145],[115,155,72,-0.20548623994515802],[115,155,73,-0.20357562037408883],[115,155,74,-0.20155898493563518],[115,155,75,-0.19943738947283218],[115,155,76,-0.19721202693458417],[115,155,77,-0.1948842299788459],[115,155,78,-0.1924554735885513],[115,155,79,-0.1899273777002496],[115,156,64,-0.22208196613550912],[115,156,65,-0.22105148232744254],[115,156,66,-0.21990984118132129],[115,156,67,-0.21865710677708994],[115,156,68,-0.217293461039045],[115,156,69,-0.21581920624199868],[115,156,70,-0.21423476752987491],[115,156,71,-0.21254069544679688],[115,156,72,-0.21073766848063158],[115,156,73,-0.20882649561906597],[115,156,74,-0.20680811891805073],[115,156,75,-0.20468361608282237],[115,156,76,-0.20245420306135264],[115,156,77,-0.20012123665027348],[115,156,78,-0.19768621711329026],[115,156,79,-0.195150790812042],[115,157,64,-0.22714987587036095],[115,157,65,-0.22612892393467598],[115,157,66,-0.22499552416280377],[115,157,67,-0.223749753170693],[115,157,68,-0.22239180649877988],[115,157,69,-0.2209220011229719],[115,157,70,-0.21934077797780105],[115,157,71,-0.21764870449182672],[115,157,72,-0.21584647713523442],[115,157,73,-0.21393492397972036],[115,157,74,-0.21191500727048618],[115,157,75,-0.20978782601056267],[115,157,76,-0.20755461855730684],[115,157,77,-0.20521676523112453],[115,157,78,-0.20277579093642362],[115,157,79,-0.20023336779476886],[115,158,64,-0.23207276062684645],[115,158,65,-0.23106125473220218],[115,158,66,-0.22993604302941995],[115,158,67,-0.22869721430598655],[115,158,68,-0.22734497732797698],[115,158,69,-0.22587966335582654],[115,158,70,-0.22430172867203912],[115,158,71,-0.222611757120889],[115,158,72,-0.2208104626600853],[115,158,73,-0.21889869192446787],[115,158,74,-0.21687742680157762],[115,158,75,-0.21474778701930375],[115,158,76,-0.21251103274546734],[115,158,77,-0.21016856719937838],[115,158,78,-0.20772193927538696],[115,158,79,-0.20517284617838238],[115,159,64,-0.23684867462709536],[115,159,65,-0.23584651375218202],[115,159,66,-0.23472942225295657],[115,159,67,-0.23349750072117714],[115,159,68,-0.23215097075463875],[115,159,69,-0.23069017747771214],[115,159,70,-0.22911559207357568],[115,159,71,-0.22742781432820935],[115,159,72,-0.22562757518611143],[115,159,73,-0.22371573931781275],[115,159,74,-0.22169330769902806],[115,159,75,-0.21956142020164704],[115,159,76,-0.21732135819642617],[115,159,77,-0.21497454716741826],[115,159,78,-0.21252255933815745],[115,159,79,-0.20996711630955944],[115,160,64,-0.24147582935399114],[115,160,65,-0.2404828976155753],[115,160,66,-0.23937384418354446],[115,160,67,-0.23814878108421256],[115,160,68,-0.23680794235015945],[115,160,69,-0.235351686545491],[115,160,70,-0.23378049930256695],[115,160,71,-0.23209499587026206],[115,160,72,-0.23029592367371943],[115,160,73,-0.22838416488567637],[115,160,74,-0.22636073900919518],[115,160,75,-0.2242268054720088],[115,160,76,-0.2219836662323359],[115,160,77,-0.2196327683962077],[115,160,78,-0.21717570684631937],[115,160,79,-0.2146142268823712],[115,161,64,-0.2459525988755772],[115,161,65,-0.2449687658844515],[115,161,66,-0.24386765442833347],[115,161,67,-0.24264938759630295],[115,161,68,-0.24131421145617116],[115,161,69,-0.23986249758441314],[115,161,70,-0.2382947456073523],[115,161,71,-0.23661158575365304],[115,161,72,-0.23481378141809095],[115,161,73,-0.23290223173666869],[115,161,74,-0.2308779741729221],[115,161,75,-0.228742187115617],[115,161,76,-0.22649619248769826],[115,161,77,-0.22414145836652521],[115,161,78,-0.22167960161541878],[115,161,79,-0.21911239052646836],[115,162,64,-0.25027752522202285],[115,162,65,-0.24930264646731592],[115,162,66,-0.24820936728362608],[115,162,67,-0.24699782144931604],[115,162,68,-0.24566826666567265],[115,162,69,-0.2442210870914603],[115,162,70,-0.2426567958885072],[115,162,71,-0.24097603777839427],[115,162,72,-0.23917959161020375],[115,162,73,-0.2372683729394045],[115,162,74,-0.23524343661771385],[115,162,75,-0.23310597939413802],[115,162,76,-0.2308573425270508],[115,162,77,-0.22849901440735],[115,162,78,-0.22603263319270894],[115,162,79,-0.2234599894528787],[115,163,64,-0.2544493238152816],[115,163,65,-0.2534832410775817],[115,163,66,-0.2523976712205972],[115,163,67,-0.2511927583371828],[115,163,68,-0.2498687713585731],[115,163,69,-0.2484261065934874],[115,163,70,-0.2468652902780646],[115,163,71,-0.24518698113669424],[115,163,72,-0.24339197295370674],[115,163,73,-0.24148119715599192],[115,163,74,-0.23945572540639082],[115,163,75,-0.23731677220806258],[115,163,76,-0.2350656975196851],[115,163,77,-0.23270400938152813],[115,163,78,-0.2302333665524171],[115,163,79,-0.2276555811575447],[115,164,64,-0.25846688895119274],[115,164,65,-0.2575094307449447],[115,164,66,-0.2564314344243511],[115,164,67,-0.25523305402106244],[115,164,68,-0.25391456929139544],[115,164,69,-0.25247638825991503],[115,164,70,-0.25091904977365187],[115,164,71,-0.24924322606702187],[115,164,72,-0.24744972533740184],[115,164,73,-0.24553949433144362],[115,164,74,-0.24351362094196227],[115,164,75,-0.24137333681560202],[115,164,76,-0.23912001997114152],[115,164,77,-0.2367551974284735],[115,164,78,-0.23428054784827956],[115,164,79,-0.23169790418235592],[115,165,64,-0.2623292993342229],[115,165,65,-0.2613802813798538],[115,165,66,-0.2603097103865164],[115,165,67,-0.2591177499484646],[115,165,68,-0.2578046902413429],[115,165,69,-0.2563709505701669],[115,165,70,-0.2548170819277493],[115,165,71,-0.2531437695636385],[115,165,72,-0.25135183556352825],[115,165,73,-0.24944224143921256],[115,165,74,-0.24741609072893],[115,165,75,-0.24527463160829588],[115,165,76,-0.24301925951168524],[115,165,77,-0.24065151976410004],[115,165,78,-0.23817311022354726],[115,165,79,-0.2355858839338737],[115,166,64,-0.26603582366472],[115,166,65,-0.2650950493909502],[115,166,66,-0.26403174355124726],[115,166,67,-0.2628460789261985],[115,166,68,-0.26153835570459705],[115,166,69,-0.26010900403572934],[115,166,70,-0.25855858659193076],[115,166,71,-0.25688780114146936],[115,166,72,-0.2550974831317222],[115,166,73,-0.2531886082827174],[115,166,74,-0.25116229519088085],[115,166,75,-0.24901980794319645],[115,166,76,-0.24676255874162867],[115,166,77,-0.24439211053785614],[115,166,78,-0.24191017967833062],[115,166,79,-0.23931863855961422],[115,167,64,-0.2695859262788354],[115,167,65,-0.26865318735563115],[115,167,66,-0.2675969750147881],[115,167,67,-0.26641747084731027],[115,167,68,-0.26511498464900496],[115,167,69,-0.2636899569769834],[115,167,70,-0.2621429617162533],[115,167,71,-0.2604747086564706],[115,167,72,-0.25868604607880863],[115,167,73,-0.2567779633530206],[115,167,74,-0.254751593544536],[115,167,75,-0.25260821603179195],[115,167,76,-0.250349259133662],[115,167,77,-0.24797630274701743],[115,167,78,-0.24549108099444195],[115,167,79,-0.24289548488205526],[115,168,64,-0.2729792728409266],[115,168,65,-0.2720543497435507],[115,168,66,-0.2710050482784142],[115,168,67,-0.2698315584718143],[115,168,68,-0.26853419932096845],[115,168,69,-0.2671134213546251],[115,168,70,-0.2655698092036005],[115,168,71,-0.2639040841813064],[115,168,72,-0.26211710687423495],[115,168,73,-0.26020987974246823],[115,168,74,-0.2581835497300583],[115,168,75,-0.25603941088547755],[115,168,76,-0.253778906992],[115,168,77,-0.251403634208051],[115,168,78,-0.24891534371754576],[115,168,79,-0.24631594439017024],[115,169,64,-0.276215736088533],[115,169,65,-0.27529839869314976],[115,169,66,-0.2742558150548412],[115,169,67,-0.273088183261315],[115,169,68,-0.2717958311066223],[115,169,69,-0.2703792186557652],[115,169,70,-0.268838940819075],[115,169,71,-0.26717572993642547],[115,169,72,-0.2653904583712412],[115,169,73,-0.263484141114379],[115,169,74,-0.26145793839771814],[115,169,75,-0.259313158317667],[115,169,76,-0.25705125946843843],[115,169,77,-0.2546738535851433],[115,169,78,-0.25218270819670907],[115,169,79,-0.2495797492885865],[115,170,64,-0.2792954016300109],[115,170,65,-0.2783854098413038],[115,170,66,-0.2773493411281891],[115,170,67,-0.2761874012676071],[115,170,68,-0.2748999264473987],[115,170,69,-0.2734873858347957],[115,170,70,-0.2719503841545291],[115,170,71,-0.2702896642766265],[115,170,72,-0.2685061098138546],[115,170,73,-0.266600747728882],[115,170,74,-0.26457475095100413],[115,170,75,-0.2624294410026333],[115,170,76,-0.26016629063540975],[115,170,77,-0.2577869264759781],[115,170,78,-0.25529313168144196],[115,170,79,-0.25268684860445567],[115,171,64,-0.28221857379464343],[115,171,65,-0.28131567820589864],[115,171,66,-0.28028591226731536],[115,171,67,-0.27912948907506263],[115,171,68,-0.2778467528097822],[115,171,69,-0.27643818130883724],[115,171,70,-0.27490438864804034],[115,171,71,-0.2732461277329239],[115,171,72,-0.2714642928995181],[115,171,73,-0.26955992252470307],[115,171,74,-0.2675342016459853],[115,171,75,-0.26538846459089127],[115,171,76,-0.26312419761584815],[115,171,77,-0.2607430415545785],[115,171,78,-0.25824679447603827],[115,171,79,-0.2556374143518465],[115,172,64,-0.2849857815353376],[115,172,65,-0.28408972412145317],[115,172,66,-0.2830660401926327],[115,172,67,-0.2819149497969259],[115,172,68,-0.2806368047093726],[115,172,69,-0.2792320910078814],[115,172,70,-0.27770143165845673],[115,172,71,-0.27604558910983157],[115,172,72,-0.27426546789747175],[115,172,73,-0.27236211725702386],[115,172,74,-0.27033673374704714],[115,172,75,-0.2681906638812349],[115,172,76,-0.2659254067699799],[115,172,77,-0.26354261677132784],[115,172,78,-0.26104410615133355],[115,172,79,-0.25843184775377515],[115,173,64,-0.2875977843839592],[115,173,65,-0.2867082992278336],[115,173,66,-0.28569046859645786],[115,173,67,-0.28454451912556145],[115,173,68,-0.2832708097893085],[115,173,69,-0.28186983447967606],[115,173,70,-0.2803422245950512],[115,173,71,-0.27868875163810947],[115,173,72,-0.27691032982293495],[115,173,73,-0.2750080186914581],[115,173,74,-0.27298302573905087],[115,173,75,-0.27083670904948165],[115,173,76,-0.26857057993909006],[115,173,77,-0.2661863056102196],[115,173,78,-0.26368571181392775],[115,173,79,-0.26107078552192686],[115,174,64,-0.29005557845916463],[115,174,65,-0.28917239251192295],[115,174,66,-0.2881601792167534],[115,174,67,-0.28701917143651356],[115,174,68,-0.285749734952906],[115,174,69,-0.2843523710492156],[115,174,70,-0.2828277191021501],[115,174,71,-0.281176559182837],[115,174,72,-0.27939981466694597],[115,174,73,-0.27749855485400676],[115,174,74,-0.27547399759576574],[115,174,75,-0.2733275119337816],[115,174,76,-0.2710606207461207],[115,174,77,-0.2686750034031914],[115,174,78,-0.26617249843273383],[115,174,79,-0.26355510619392175],[115,175,64,-0.2923604025268073],[115,175,65,-0.291483236402322],[115,175,66,-0.29047639796434055],[115,175,67,-0.2893401259464612],[115,175,68,-0.28807479255059265],[115,175,69,-0.2866809060329131],[115,175,70,-0.28515911329881316],[115,175,71,-0.28351020250688885],[115,175,72,-0.2817351056819425],[115,175,73,-0.27983490133706845],[115,175,74,-0.2778108171046645],[115,175,75,-0.2756642323765691],[115,175,76,-0.2733966809531846],[115,175,77,-0.2710098537016292],[115,175,78,-0.2685056012229279],[115,175,79,-0.2658859365282066],[115,176,64,-0.2945137441129808],[115,176,65,-0.2936423129171414],[115,176,66,-0.29264060110364254],[115,176,67,-0.29150885292512163],[115,176,68,-0.29024744662119994],[115,176,69,-0.28885689700751394],[115,176,70,-0.287337858073625],[115,176,71,-0.2856911255898744],[115,176,72,-0.28391763972313944],[115,176,73,-0.2820184876615689],[115,176,74,-0.2799949062481367],[115,176,75,-0.2778482846232191],[115,176,76,-0.27558016687604936],[115,176,77,-0.2731922547050938],[115,176,78,-0.2706864100873667],[115,176,79,-0.26806465795663525],[115,177,64,-0.2965173456695649],[115,177,65,-0.2956513598647539],[115,177,66,-0.2946545214868257],[115,177,67,-0.2935270799609774],[115,177,68,-0.2922694191874773],[115,177,69,-0.29088206013362095],[115,177,70,-0.289365663434465],[115,177,71,-0.28772103200240795],[115,177,72,-0.2859491136455733],[115,177,73,-0.28405100369507175],[115,177,74,-0.28202794764098615],[115,177,75,-0.27988134377727525],[115,177,76,-0.2776127458554628],[115,177,77,-0.27522386574714364],[115,177,78,-0.2727165761153315],[115,177,79,-0.27009291309460026],[115,178,64,-0.29837321079234547],[115,178,65,-0.2975123770975796],[115,178,66,-0.2965201548414135],[115,178,67,-0.2953967982808914],[115,178,68,-0.29414269660590087],[115,178,69,-0.2927583765338996],[115,178,70,-0.2912445049133293],[115,178,71,-0.28960189133578285],[115,178,72,-0.2878314907568835],[115,178,73,-0.2859344061259488],[115,178,74,-0.28391189102428727],[115,178,75,-0.28176535231231914],[115,178,76,-0.27949635278539187],[115,178,77,-0.2771066138383218],[115,178,78,-0.274598018138681],[115,178,79,-0.27197261230878933],[115,179,64,-0.30008361049177124],[115,179,65,-0.2992276328189595],[115,179,66,-0.2982397661114268],[115,179,67,-0.29712026912367606],[115,179,68,-0.29586953597084054],[115,179,69,-0.29448809872602677],[115,179,70,-0.2929766300262622],[115,179,71,-0.29133594568710697],[115,179,72,-0.2895670073258928],[115,179,73,-0.2876709249936642],[115,179,74,-0.2856489598156605],[115,179,75,-0.28350252664054465],[115,179,76,-0.28123319669823255],[115,179,77,-0.2788427002663686],[115,179,78,-0.2763329293454607],[115,179,79,-0.2737059403426304],[115,180,64,-0.30165108951620345],[115,180,65,-0.3007996699429829],[115,180,66,-0.29981589585191804],[115,180,67,-0.2987000301674724],[115,180,68,-0.29745247157293775],[115,180,69,-0.29607375711023853],[115,180,70,-0.29456456478825943],[115,180,71,-0.2929257161997615],[115,180,72,-0.2911581791468453],[115,180,73,-0.28926307027503384],[115,180,74,-0.28724165771582344],[115,180,75,-0.2850953637378938],[115,180,76,-0.2828257674068496],[115,180,77,-0.28043460725351954],[115,180,78,-0.2779237839508405],[115,180,79,-0.2752953629992785],[115,181,64,-0.3030784727277599],[115,181,65,-0.302231312507364],[115,181,66,-0.3012513666769917],[115,181,67,-0.30013890201103954],[115,181,68,-0.2988943214118027],[115,181,69,-0.2975181665115807],[115,181,70,-0.2960111202832396],[115,181,71,-0.2943740096592823],[115,181,72,-0.29260780815939935],[115,181,73,-0.2907136385265632],[115,181,74,-0.2886927753715174],[115,181,75,-0.2865466478258556],[115,181,76,-0.28427684220355265],[115,181,77,-0.28188510467098715],[115,181,78,-0.2793733439254714],[115,181,79,-0.276743633882248],[115,182,64,-0.30436887153077175],[115,182,65,-0.3035256721393872],[115,182,66,-0.302549289761334],[115,182,67,-0.3014399947089743],[115,182,68,-0.30019819376303836],[115,182,69,-0.29882443277687776],[115,182,70,-0.29731939928910533],[115,182,71,-0.29568392514467945],[115,182,72,-0.29391898912439807],[115,182,73,-0.2920257195828737],[115,182,74,-0.29000539709483364],[115,182,75,-0.28785945710994343],[115,182,76,-0.28558949261601607],[115,182,77,-0.2831972568106459],[115,182,78,-0.28068466578128315],[115,182,79,-0.27805380119370726],[115,183,64,-0.3055256903527478],[115,183,65,-0.3046861545748174],[115,183,66,-0.3037130713951457],[115,183,67,-0.3026067143607535],[115,183,68,-0.301367493799498],[115,183,69,-0.29999595942631563],[115,183,70,-0.29849280295778824],[115,183,71,-0.2968588607350946],[115,183,72,-0.29509511635530983],[115,183,73,-0.2932027033111241],[115,183,74,-0.2911829076388267],[115,183,75,-0.2890371705747514],[115,183,76,-0.2867670912200483],[115,183,77,-0.2843744292138164],[115,183,78,-0.281861107414619],[115,183,79,-0.2792292145903341],[115,184,64,-0.3065526331779477],[115,184,65,-0.30571646622987403],[115,184,66,-0.3047464195925782],[115,184,67,-0.30364276975370375],[115,184,68,-0.30240593026686924],[115,184,69,-0.30103645435974136],[115,184,70,-0.2995350375503767],[115,184,71,-0.2979025202718941],[115,184,72,-0.29613989050543965],[115,184,73,-0.2942482864215158],[115,184,74,-0.2922289990295188],[115,184,75,-0.29008347483568486],[115,184,76,-0.287813318509305],[115,184,77,-0.28542029555724735],[115,184,78,-0.2829063350068053],[115,184,79,-0.28027353209682593],[115,185,64,-0.30745371013351663],[115,185,65,-0.30662062082622665],[115,185,66,-0.305653350753627],[115,185,67,-0.3045521790598471],[115,185,68,-0.3033175222135398],[115,185,69,-0.30194993661763025],[115,185,70,-0.3004501212272831],[115,185,71,-0.2988189201761513],[115,185,72,-0.29705732541086693],[115,185,73,-0.29516647933384543],[115,185,74,-0.29314767745425196],[115,185,75,-0.29100237104732163],[115,185,76,-0.28873216982190153],[115,185,77,-0.28633884459625036],[115,185,78,-0.2838243299821128],[115,185,79,-0.28119072707702586],[115,186,64,-0.30823324412819686],[115,186,65,-0.30740294606901897],[115,186,66,-0.30643819637949754],[115,186,67,-0.30533927658664206],[115,186,68,-0.304106605774762],[115,186,69,-0.3027407431967367],[115,186,70,-0.3012423908934633],[115,186,71,-0.29961239632153436],[115,186,72,-0.29785175498911975],[115,186,73,-0.2959616131001137],[115,186,74,-0.293943270206398],[115,186,75,-0.2917981818684192],[115,186,76,-0.28952796232393974],[115,186,77,-0.2871343871650015],[115,186,78,-0.2846193960231218],[115,186,79,-0.28198509526267423],[115,187,64,-0.3088958775435868],[115,187,65,-0.3080680903779004],[115,187,66,-0.307105609841414],[115,187,67,-0.30600871958158815],[115,187,68,-0.3047778410110833],[115,187,69,-0.3034135359204001],[115,187,70,-0.30191650909865864],[115,187,71,-0.3002876109625693],[115,187,72,-0.29852784019356504],[115,187,73,-0.296638346383162],[115,187,74,-0.29462043268639715],[115,187,75,-0.2924755584835357],[115,187,76,-0.29020534204991943],[115,187,77,-0.2878115632339827],[115,187,78,-0.28529616614346287],[115,187,79,-0.2826612618397578],[115,188,64,-0.3094465789780052],[115,188,65,-0.30862102967111915],[115,188,66,-0.30766057320292794],[115,188,67,-0.3065654950907517],[115,188,68,-0.3053362188011046],[115,188,69,-0.30397330836356107],[115,188,70,-0.3024774709927205],[115,188,71,-0.30084955971833527],[115,188,72,-0.29909057602356015],[115,188,73,-0.29720167249139817],[115,188,74,-0.29518415545918775],[115,188,75,-0.2930394876813257],[115,188,76,-0.2907692910000923],[115,188,77,-0.28837534902461626],[115,188,78,-0.2858596098179924],[115,188,79,-0.2832241885925162],[115,189,64,-0.30989065004289973],[115,189,65,-0.30906707420261437],[115,189,66,-0.3081084040956672],[115,189,67,-0.3070149268711524],[115,189,68,-0.30578706778850184],[115,189,69,-0.304425392832431],[115,189,70,-0.30293061133595434],[115,189,71,-0.3013035786115338],[115,189,72,-0.29954529859031764],[115,189,73,-0.2976569264695451],[115,189,74,-0.29563977136796293],[115,189,75,-0.2934952989894476],[115,189,76,-0.2912251342946973],[115,189,77,-0.28883106418103577],[115,189,78,-0.28631504017033826],[115,189,79,-0.2836791811050413],[115,190,64,-0.31023373221183526],[115,190,65,-0.309411875452145],[115,190,66,-0.30845476264855876],[115,190,67,-0.30736268235704767],[115,190,68,-0.3061360613833469],[115,190,69,-0.3047754673988451],[115,190,70,-0.3032816115645176],[115,190,71,-0.30165535116296305],[115,190,72,-0.29989769223850815],[115,190,73,-0.2980097922454503],[115,190,74,-0.2959929627042861],[115,190,75,-0.2938486718661186],[115,190,76,-0.29157854738511224],[115,190,77,-0.28918437899902694],[115,190,78,-0.28666812121785445],[115,190,79,-0.28403189602050793],[115,191,64,-0.3104818137220553],[115,191,65,-0.30966143306844907],[115,191,66,-0.3087056584705222],[115,191,67,-0.3076147796801051],[115,191,68,-0.30638922481772335],[115,191,69,-0.30502956298929906],[115,191,70,-0.3035365069108703],[115,191,71,-0.30191091554139604],[115,191,72,-0.3001537967236031],[115,191,73,-0.29826630983295255],[115,191,74,-0.29624976843456596],[115,191,75,-0.29410564294831265],[115,191,76,-0.29183556332191773],[115,191,77,-0.289441321712132],[115,191,78,-0.2869248751739769],[115,191,79,-0.28428834835802663],[115,192,64,-0.31064123652860665],[115,192,65,-0.3098221018654229],[115,192,66,-0.30886745768661994],[115,192,67,-0.3077775947434558],[115,192,68,-0.3065529422556269],[115,192,69,-0.30519407052865255],[115,192,70,-0.30370169357926236],[115,192,71,-0.3020766717688479],[115,192,72,-0.3003200144449413],[115,192,73,-0.2984328825907899],[115,192,74,-0.29641659148287813],[115,192,75,-0.2942726133565874],[115,192,76,-0.29200258007986046],[115,192,77,-0.2896082858349075],[115,192,78,-0.2870916898079724],[115,192,79,-0.2844549188871127],[115,193,64,-0.31071870331104257],[115,193,65,-0.3099005988713338],[115,193,66,-0.30894689002768116],[115,193,67,-0.30785786834964235],[115,193,68,-0.3066339639571617],[115,193,69,-0.30527574813851976],[115,193,70,-0.30378393597627507],[115,193,71,-0.30215938898125105],[115,193,72,-0.30040311773453676],[115,193,73,-0.2985162845375693],[115,193,74,-0.2965002060701457],[115,193,75,-0.2943563560565602],[115,193,76,-0.2920863679397312],[115,193,77,-0.28969203756335227],[115,193,78,-0.2871753258620906],[115,193,79,-0.2845383615597826],[115,194,64,-0.3107212845326909],[115,194,65,-0.309904010431056],[115,194,66,-0.3089510559733881],[115,194,67,-0.30786271338244897],[115,194,68,-0.30663941349702395],[115,194,69,-0.30528172839033074],[115,194,70,-0.30379037399640485],[115,194,71,-0.3021662127445215],[115,194,72,-0.3004102562016171],[115,194,73,-0.2985236677227815],[115,194,74,-0.29650776510966803],[115,194,75,-0.29436402327701505],[115,194,76,-0.2920940769271476],[115,194,77,-0.2896997232324896],[115,194,78,-0.2871829245261114],[115,194,79,-0.284545811000264],[115,195,64,-0.3106564255525016],[115,195,65,-0.30983979936134065],[115,195,66,-0.30888743394883444],[115,195,67,-0.307799622042626],[115,195,68,-0.30657679503728597],[115,195,69,-0.30521952561307986],[115,195,70,-0.30372853036270164],[115,195,71,-0.3021046724260342],[115,195,72,-0.30034896413290013],[115,195,73,-0.2984625696538764],[115,195,74,-0.29644680765901266],[115,195,75,-0.29430315398465734],[115,195,76,-0.2920332443082503],[115,195,77,-0.2896388768311188],[115,195,78,-0.2871220149693],[115,195,79,-0.28448479005233906],[115,196,64,-0.31053195378944654],[115,196,65,-0.3097158121590957],[115,196,66,-0.3087638875745332],[115,196,67,-0.30767647313748536],[115,196,68,-0.3064540006544504],[115,196,69,-0.3050970432557324],[115,196,70,-0.3036063180224349],[115,196,71,-0.30198268862147704],[115,196,72,-0.3002271679485904],[115,196,73,-0.2983409207793728],[115,196,74,-0.29632526642824353],[115,196,75,-0.29418168141549184],[115,196,76,-0.29191180214229207],[115,196,77,-0.28951742757371246],[115,196,78,-0.2870005219297417],[115,196,79,-0.2843632173842886],[115,197,64,-0.3103560859395136],[115,197,65,-0.30954028626271757],[115,197,66,-0.3085886729699132],[115,197,67,-0.30750153942440583],[115,197,68,-0.30627931772082173],[115,197,69,-0.3049225813043326],[115,197,70,-0.30343204759783127],[115,197,71,-0.30180858063712923],[115,197,72,-0.3000531937141281],[115,197,73,-0.29816705202804317],[115,197,74,-0.2961514753445227],[115,197,75,-0.2940079406628585],[115,197,76,-0.2917380848911564],[115,197,77,-0.2893437075294948],[115,197,78,-0.2868267733610992],[115,197,79,-0.2841894151514811],[115,198,64,-0.3101374352452535],[115,198,65,-0.30932185736642903],[115,198,66,-0.30837044611026454],[115,198,67,-0.30728349500820806],[115,198,68,-0.30606143634015015],[115,198,69,-0.3047048437537715],[115,198,70,-0.30321443489183886],[115,198,71,-0.3015910740275176],[115,198,72,-0.29983577470765876],[115,198,73,-0.29794970240413154],[115,198,74,-0.2959341771730508],[115,198,75,-0.2937906763220932],[115,198,76,-0.29152083708576604],[115,198,77,-0.28912645930866643],[115,198,78,-0.28660950813675046],[115,198,79,-0.2839721167165643],[115,199,64,-0.3098850188179051],[115,199,65,-0.30906956678765507],[115,199,66,-0.308118270237157],[115,199,67,-0.30703142279242357],[115,199,68,-0.30580945683757244],[115,199,69,-0.3044529461342397],[115,199,70,-0.3029626084489475],[115,199,71,-0.30133930818848087],[115,199,72,-0.29958405904323904],[115,199,73,-0.2976980266386323],[115,199,74,-0.2956825311943694],[115,199,75,-0.293539050191833],[115,199,76,-0.2912692210494079],[115,199,77,-0.28887484380579476],[115,199,78,-0.2863578838113334],[115,199,79,-0.2837204744272873],[115,200,64,-0.3096082650120917],[115,200,65,-0.30879286888742485],[115,200,66,-0.30784162332232423],[115,200,67,-0.3067548219844526],[115,200,68,-0.30553289730384536],[115,200,69,-0.30417642309235693],[115,200,70,-0.30268611717105565],[115,200,71,-0.30106284400563255],[115,200,72,-0.29930761734978106],[115,200,73,-0.2974216028966201],[115,200,74,-0.29540612093801144],[115,200,75,-0.29326264903195953],[115,200,76,-0.2909928246779663],[115,200,77,-0.2885984480003696],[115,200,78,-0.2860814844396906],[115,200,79,-0.2834440674519424],[115,201,64,-0.3093170208530809],[115,201,65,-0.30850163854379364],[115,201,66,-0.30755040558500935],[115,201,67,-0.3064636156546021],[115,201,68,-0.30524170119386673],[115,201,69,-0.3038852360269747],[115,201,70,-0.30239493798837624],[115,201,71,-0.3007716715582164],[115,201,72,-0.2990164505057201],[115,201,73,-0.2971304405406262],[115,201,74,-0.29511496197250686],[115,201,75,-0.2929714923781781],[115,201,76,-0.2907016692770569],[115,201,77,-0.2883072928145096],[115,201,78,-0.28579032845320373],[115,201,79,-0.28315290967242146],[115,202,64,-0.30902093570173517],[115,202,65,-0.3082055510152052],[115,202,66,-0.3072543157482489],[115,202,67,-0.3061675235791048],[115,202,68,-0.3049456069493506],[115,202,69,-0.3035891396833529],[115,202,70,-0.30209883961567097],[115,202,71,-0.3004755712264674],[115,202,72,-0.2987203482848929],[115,202,73,-0.2968343365005156],[115,202,74,-0.2948188561826406],[115,202,75,-0.2926753849077147],[115,202,76,-0.2904055601946849],[115,202,77,-0.28801118218834076],[115,202,78,-0.2854942163506655],[115,202,79,-0.28285679616014636],[115,203,64,-0.30872065811028504],[115,203,65,-0.307905224838262],[115,203,66,-0.3069539427493352],[115,203,67,-0.305867105523848],[115,203,68,-0.3046451456035365],[115,203,69,-0.30328863681093476],[115,203,70,-0.3017982969767299],[115,203,71,-0.30017499057512764],[115,203,72,-0.2984197313671897],[115,203,73,-0.29653368505221445],[115,203,74,-0.29451817192701035],[115,203,75,-0.2923746695532522],[115,203,76,-0.29010481543279076],[115,203,77,-0.2877104096909474],[115,203,78,-0.2851934177678149],[115,203,79,-0.28255597311752034],[115,204,64,-0.3084098960187396],[115,204,65,-0.30759429597341303],[115,204,66,-0.3066428531629125],[115,204,67,-0.3055558612749453],[115,204,68,-0.3043337527519312],[115,204,69,-0.30297710141024803],[115,204,70,-0.3014866250674272],[115,204,71,-0.29986318817735824],[115,204,72,-0.2981078044734644],[115,204,73,-0.29622163961992065],[115,204,74,-0.29420601387076284],[115,204,75,-0.29206240473707834],[115,204,76,-0.28979244966215045],[115,204,77,-0.28739794870458535],[115,204,78,-0.2848808672294453],[115,204,79,-0.2822433386073414],[115,205,64,-0.3080824873996353],[115,205,65,-0.30726653249027447],[115,205,66,-0.30631474768895794],[115,205,67,-0.30522742669937586],[115,205,68,-0.30400500196571134],[115,205,69,-0.3026480472915474],[115,205,70,-0.30115728046672297],[115,205,71,-0.2995335659021938],[115,205,72,-0.29777791727286285],[115,205,73,-0.2958915001684511],[115,205,74,-0.293875634752257],[115,205,75,-0.291731798427996],[115,205,76,-0.2894616285145898],[115,205,77,-0.2870669249289374],[115,205,78,-0.28454965287669043],[115,205,79,-0.281911945550984],[115,206,64,-0.30773258328534403],[115,206,65,-0.306916018709118],[115,206,66,-0.3059636463508465],[115,206,67,-0.30487575994222726],[115,206,68,-0.303652791931016],[115,206,69,-0.30229531609935056],[115,206,70,-0.30080405019002066],[115,206,71,-0.2991798585407387],[115,206,72,-0.2974237547263765],[115,206,73,-0.29553690420923784],[115,206,74,-0.2935206269972166],[115,206,75,-0.2913764003100301],[115,206,76,-0.2891058612534001],[115,206,77,-0.28671080950120986],[115,206,78,-0.2841932099856622],[115,206,79,-0.2815551955953901],[115,207,64,-0.30735464119567946],[115,207,65,-0.30653714856762515],[115,207,66,-0.30558388180354923],[115,207,67,-0.3044951346786331],[115,207,68,-0.30327133964691055],[115,207,69,-0.30191307045870375],[115,207,70,-0.3004210447859985],[115,207,71,-0.29879612685581614],[115,207,72,-0.2970393300915435],[115,207,73,-0.29515181976229476],[115,207,74,-0.2931349156401517],[115,207,75,-0.2909900946654732],[115,207,76,-0.2887189936201481],[115,207,77,-0.28632341180881526],[115,207,78,-0.28380531374808227],[115,207,79,-0.2811668318636885],[115,208,64,-0.30694341862185315],[115,208,65,-0.30612461904446076],[115,208,66,-0.3051700926991059],[115,208,67,-0.30408013342341955],[115,208,68,-0.30285517368147485],[115,208,69,-0.30149578717997094],[115,208,70,-0.3000026914923475],[115,208,71,-0.2983767506908859],[115,208,72,-0.29661897798676284],[115,208,73,-0.29473053837812513],[115,208,74,-0.2927127513060359],[115,208,75,-0.2905670933184812],[115,208,76,-0.2882952007423112],[115,208,77,-0.2858988723631424],[115,208,78,-0.28338007211324623],[115,208,79,-0.2807409317673778],[115,209,64,-0.3064939665667721],[115,209,65,-0.3056734236396609],[115,209,66,-0.3047172171093646],[115,209,67,-0.303625640898453],[115,209,68,-0.3023991274860093],[115,209,69,-0.3010382505221405],[115,209,70,-0.29954372745040636],[115,209,71,-0.2979164221382249],[115,209,72,-0.29615734751521794],[115,209,73,-0.2942676682195673],[115,209,74,-0.2922487032522313],[115,209,75,-0.29010192863921036],[115,209,76,-0.2878289801017361],[115,209,77,-0.2854316557344092],[115,209,78,-0.2829119186913154],[115,209,79,-0.28027189988006607],[115,210,64,-0.30600162314166623],[115,210,65,-0.30517884591182143],[115,210,66,-0.3042204860059746],[115,210,67,-0.3031268374576772],[115,210,68,-0.3018983327673481],[115,210,69,-0.300535545514636],[115,210,70,-0.29903919297868364],[115,210,71,-0.29741013876635614],[115,210,72,-0.2956493954483942],[115,210,73,-0.293758127203563],[115,210,74,-0.2917376524706481],[115,210,75,-0.28958944660848585],[115,210,76,-0.2873151445639015],[115,210,77,-0.2849165435475839],[115,210,78,-0.2823956057179222],[115,210,79,-0.2797544608727537],[115,211,64,-0.3054620072190669],[115,211,65,-0.30463645307210907],[115,211,66,-0.3036754167976552],[115,211,67,-0.3025791925698601],[115,211,68,-0.3013482129182994],[115,211,69,-0.2999830513376548],[115,211,70,-0.2984844249052868],[115,211,71,-0.2968531969067496],[115,211,72,-0.2950903794692141],[115,211,73,-0.2931971362028717],[115,211,74,-0.2911747848501619],[115,211,75,-0.28902479994301955],[115,211,76,-0.2867488154680128],[115,211,77,-0.28434862753939705],[115,211,78,-0.28182619708011336],[115,211,79,-0.2791836525106829],[115,212,64,-0.3048710121421283],[115,212,65,-0.3040420896350857],[115,212,66,-0.30307780692473085],[115,212,67,-0.30197845835904336],[115,212,68,-0.30074447650620295],[115,212,69,-0.29937643476102305],[115,212,70,-0.2978750499592502],[115,212,71,-0.29624118499978336],[115,212,72,-0.2944758514747807],[115,212,73,-0.29258021230772213],[115,212,74,-0.29055558439927787],[115,212,75,-0.28840344128117246],[115,212,76,-0.2861254157779167],[115,212,77,-0.283723302676436],[115,212,78,-0.2811990614036195],[115,212,79,-0.27855481871174415],[115,213,64,-0.30422479949027437],[115,213,65,-0.3033918711263317],[115,213,66,-0.3024237275109186],[115,213,67,-0.30132066320267725],[115,213,68,-0.3000831108195927],[115,213,69,-0.29871164364155267],[115,213,70,-0.2972069782207455],[115,213,71,-0.2955699769999546],[115,213,72,-0.2938016509387119],[115,213,73,-0.291903162147383],[115,213,74,-0.28987582652902943],[115,213,75,-0.28772111642924325],[115,213,76,-0.28544066329382],[115,213,77,-0.2830362603343056],[115,213,78,-0.2805098652014357],[115,213,79,-0.27786360266642207],[115,214,64,-0.30351979290120346],[115,214,65,-0.302682177846896],[115,214,66,-0.30170951707239446],[115,214,67,-0.3006021053874711],[115,214,68,-0.2993603754729909],[115,214,69,-0.29798490047893056],[115,214,70,-0.29647639663020553],[115,214,71,-0.2948357258403622],[115,214,72,-0.29306389833309887],[115,214,73,-0.29116207527168636],[115,214,74,-0.2891315713961369],[115,214,75,-0.2869738576683122],[115,214,76,-0.2846905639248426],[115,214,77,-0.2822834815378844],[115,214,78,-0.27975456608374394],[115,214,79,-0.27710594001931466],[115,215,64,-0.30275267194922206],[115,215,65,-0.3019096486945473],[115,215,66,-0.30093177528411574],[115,215,67,-0.299819346822934],[115,215,68,-0.2985727960698076],[115,215,69,-0.2971926960301118],[115,215,70,-0.29567976255633366],[115,215,71,-0.29403485695644327],[115,215,72,-0.2922589886100584],[115,215,73,-0.29035331759247396],[115,215,74,-0.28831915730640234],[115,215,75,-0.2861579771216185],[115,215,76,-0.28387140502237995],[115,215,77,-0.28146123026265024],[115,215,78,-0.27892940602915084],[115,215,79,-0.27627805211219436],[115,216,64,-0.3019203660799329],[115,216,65,-0.30107117504185177],[115,216,66,-0.3000873568034218],[115,216,67,-0.2989692068126283],[115,216,68,-0.2977171579233726],[115,216,69,-0.29633178298224416],[115,216,70,-0.29481379742302505],[115,216,71,-0.2931640618689809],[115,216,72,-0.2913835847429065],[115,216,73,-0.2894735248849927],[115,216,74,-0.2874351941783655],[115,216,75,-0.28527006018248846],[115,216,76,-0.28297974877429766],[115,216,77,-0.28056604679710107],[115,216,78,-0.2780309047172653],[115,216,79,-0.27537643928864064],[115,217,64,-0.3010200486012421],[115,217,65,-0.30016389467104043],[115,217,66,-0.29917336515087645],[115,217,67,-0.2980487558831012],[115,217,68,-0.29679049983606043],[115,217,69,-0.2953991696840843],[115,217,70,-0.29387548039516076],[115,217,71,-0.2922202918263518],[115,217,72,-0.29043461132691495],[115,217,73,-0.2885195963492022],[115,217,74,-0.2864765570671831],[115,217,75,-0.28430695900278513],[115,217,76,-0.2820124256599208],[115,217,77,-0.2795947411662322],[115,217,78,-0.27705585292257595],[115,217,79,-0.27439787426020246],[115,218,64,-0.3000491307307245],[115,218,65,-0.2991851857657062],[115,218,66,-0.2981871466483962],[115,218,67,-0.2970553096705354],[115,218,68,-0.2957901079365526],[115,218,69,-0.29439211393594955],[115,218,70,-0.2928620421233191],[115,218,71,-0.2912007515060513],[115,218,72,-0.2894092482396933],[115,218,73,-0.28748868823103635],[115,218,74,-0.2854403797487721],[115,218,75,-0.28326578604191566],[115,218,76,-0.28096652796586297],[115,218,77,-0.2785443866161128],[115,218,78,-0.27600130596967787],[115,218,79,-0.2733393955341369],[115,219,64,-0.2990052556993352],[115,219,65,-0.2981326609593169],[115,219,66,-0.29712628441464517],[115,219,67,-0.2959864228651028],[115,219,68,-0.294713509575218],[115,219,69,-0.29330811683818947],[115,219,70,-0.29177095854738777],[115,219,71,-0.29010289277548484],[115,219,72,-0.28830492436118227],[115,219,73,-0.28637820750360465],[115,219,74,-0.2843240483642061],[115,219,75,-0.28214390767638575],[115,219,76,-0.27983940336267776],[115,219,77,-0.2774123131595485],[115,219,78,-0.27486457724982527],[115,219,79,-0.27219830090270625],[115,220,64,-0.29788629291143354],[115,220,65,-0.29700416144051656],[115,220,66,-0.2959885924176706],[115,220,67,-0.29483988321299304],[115,220,68,-0.2935584672775875],[115,220,69,-0.29214491669814746],[115,220,70,-0.2905999447590456],[115,220,71,-0.2889244085119925],[115,220,72,-0.28711931135322555],[115,220,73,-0.2851858056083],[115,220,74,-0.28312519512432854],[115,220,75,-0.2809389378698658],[115,220,76,-0.2786286485423005],[115,220,77,-0.2761961011827947],[115,220,78,-0.2736432317987848],[115,220,79,-0.270972140994003],[115,221,64,-0.2966903321611748],[115,221,65,-0.2957977511152593],[115,221,66,-0.2947721095848278],[115,221,67,-0.2936137055761655],[115,221,68,-0.2923229727559672],[115,221,69,-0.2909004829956604],[115,221,70,-0.2893469489231665],[115,221,71,-0.28766322648215736],[115,221,72,-0.28585031749877254],[115,221,73,-0.28390937225586765],[115,221,74,-0.2818416920746396],[115,221,75,-0.27964873190382455],[115,221,76,-0.2773321029163368],[115,221,77,-0.2748935751133774],[115,221,78,-0.27233507993603867],[115,221,79,-0.2696587128843555],[115,222,64,-0.29541567790524315],[115,222,65,-0.29451171082576155],[115,222,66,-0.2934750939699724],[115,222,67,-0.29230612604980666],[115,222,68,-0.2910052409791736],[115,222,69,-0.28957301040708205],[115,222,70,-0.2880101462581254],[115,222,71,-0.28631750328038086],[115,222,72,-0.2844960816006936],[115,222,73,-0.2825470292874137],[115,222,74,-0.2804716449204313],[115,222,75,-0.27827138016870845],[115,222,76,-0.27594784237517134],[115,222,77,-0.27350279714899717],[115,222,78,-0.270938170965318],[115,222,79,-0.2682560537722932],[115,223,64,-0.2940608435918971],[115,223,65,-0.29314453262623463],[115,223,66,-0.292096016977888],[115,223,67,-0.2909155961374543],[115,223,68,-0.2896037043003533],[115,223,69,-0.28816091288778656],[115,223,70,-0.28658793307496666],[115,223,71,-0.2848856183266839],[115,223,72,-0.2830549669401665],[115,223,73,-0.28109712459531366],[115,223,74,-0.27901338691213906],[115,223,75,-0.27680520201562675],[115,223,76,-0.2744741731078636],[115,223,77,-0.2720220610474815],[115,223,78,-0.26945078693642943],[115,223,79,-0.2667624347140326],[115,224,64,-0.2926245460463818],[115,224,65,-0.29169491411545656],[115,224,66,-0.29063355764600773],[115,224,67,-0.2894407769838514],[115,224,68,-0.28811700664295126],[115,224,69,-0.2866628178132197],[115,224,70,-0.285078920875502],[115,224,71,-0.28336616792379987],[115,224,72,-0.28152555529470114],[115,224,73,-0.27955822610408865],[115,224,74,-0.27746547279096667],[115,224,75,-0.2752487396686094],[115,224,76,-0.2729096254828932],[115,224,77,-0.2704498859778458],[115,224,78,-0.26787143646843514],[115,224,79,-0.26517635442055076],[115,225,64,-0.29110569991268953],[115,225,65,-0.29016175282616397],[115,225,66,-0.28908659698340455],[115,225,67,-0.28788053366550637],[115,225,68,-0.2865439977447968],[115,225,69,-0.28507756017847075],[115,225,70,-0.28348193050930837],[115,225,71,-0.28175795937353265],[115,225,72,-0.27990664101577545],[115,225,73,-0.27792911581122015],[115,225,74,-0.2758266727947658],[115,225,75,-0.27360075219741264],[115,225,76,-0.27125294798972954],[115,225,77,-0.26878501043244407],[115,225,78,-0.266198848634168],[115,225,79,-0.2634965331162187],[115,226,64,-0.2895034121516209],[115,226,65,-0.2885441406712147],[115,226,66,-0.2874542123670102],[115,226,67,-0.2862339295389129],[115,226,68,-0.28488372746027246],[115,226,69,-0.28340417685632047],[115,226,70,-0.2817959863895845],[115,226,71,-0.28006000515233587],[115,226,72,-0.27819722516603684],[115,226,73,-0.2762087838878603],[115,226,74,-0.27409596672412073],[115,226,75,-0.27186020955082146],[115,226,76,-0.26950310124117827],[115,226,77,-0.2670263862001543],[115,226,78,-0.2644319669060281],[115,226,79,-0.2617219064589479],[115,227,64,-0.2878169765952229],[115,227,65,-0.2868413584466001],[115,227,66,-0.28573567199513317],[115,227,67,-0.28450022064650715],[115,227,68,-0.28313544012063263],[115,227,69,-0.28164190091384156],[115,227,70,-0.2800203107679411],[115,227,71,-0.2782715171461885],[115,227,72,-0.27639650971614915],[115,227,73,-0.2743964228395148],[115,227,74,-0.27227253806871554],[115,227,75,-0.27002628665053463],[115,227,76,-0.2676592520365858],[115,227,77,-0.2651731724006856],[115,227,78,-0.26256994316314497],[115,227,79,-0.2598516195219318],[115,228,64,-0.28604586855757286],[115,228,65,-0.28505287039127314],[115,228,66,-0.28393042939824886],[115,228,67,-0.28267885018032923],[115,228,68,-0.281298568952446],[115,228,69,-0.2797901559875213],[115,228,70,-0.27815431806809354],[115,228,71,-0.2763919009447373],[115,228,72,-0.27450389180124923],[115,228,73,-0.2724914217266655],[115,228,74,-0.27035576819395557],[115,228,75,-0.2680983575455932],[115,228,76,-0.26572076748586837],[115,228,77,-0.26322472957997034],[115,228,78,-0.26061213175986997],[115,228,79,-0.25788502083694764],[115,229,64,-0.2841897395018581],[115,229,65,-0.283178318803744],[115,229,66,-0.2820381180070074],[115,229,67,-0.28076944300334017],[115,229,68,-0.27937273055410783],[115,229,69,-0.27784855071685244],[115,229,70,-0.2761976092784034],[115,229,71,-0.27442075019465284],[115,229,72,-0.27251895803696324],[115,229,73,-0.27049336044528005],[115,229,74,-0.2683452305877856],[115,229,75,-0.2660759896273035],[115,229,76,-0.26368720919430944],[115,229,77,-0.26118061386658675],[115,229,78,-0.258558083655546],[115,229,79,-0.2558216564991632],[115,230,64,-0.28224841176383775],[115,230,65,-0.2812175187155306],[115,230,66,-0.2800585457775506],[115,230,67,-0.2787718002284808],[115,230,68,-0.2773577194305138],[115,230,69,-0.27581687323648385],[115,230,70,-0.27414996640336353],[115,230,71,-0.27235784101228877],[115,230,72,-0.2704414788950752],[115,230,73,-0.26840200406730286],[115,230,74,-0.26624068516780086],[115,230,75,-0.26395893790474523],[115,230,76,-0.2615583275082244],[115,230,77,-0.259040571189309],[115,230,78,-0.25640754060564863],[115,230,79,-0.2536612643335465],[115,231,64,-0.2802218733316518],[115,231,65,-0.27917045262142437],[115,231,66,-0.27799168987409917],[115,231,67,-0.27668589385543607],[115,231,68,-0.2752535025858548],[115,231,69,-0.27369508572689305],[115,231,70,-0.272011346973983],[115,231,71,-0.2702031264556082],[115,231,72,-0.26827140313880515],[115,231,73,-0.26621729724108467],[115,231,74,-0.26404207264860824],[115,231,75,-0.2617471393408277],[115,231,76,-0.2593340558214474],[115,231,77,-0.2568045315557429],[115,231,78,-0.2541604294142582],[115,231,79,-0.2514037681228357],[115,232,64,-0.2781102726819178],[115,232,65,-0.2770372652665185],[115,232,66,-0.2758376914087516],[115,232,67,-0.2745118614650478],[115,232,68,-0.27306021417447623],[115,232,69,-0.2714833190235204],[115,232,70,-0.2697818786170165],[115,232,71,-0.2679567310553165],[115,232,72,-0.2660088523176404],[115,232,73,-0.2639393586516934],[115,232,74,-0.26174950896938],[115,232,75,-0.25944070724882895],[115,232,76,-0.2570145049425818],[115,232,77,-0.25447260339198463],[115,232,78,-0.2518168562478018],[115,232,79,-0.24904927189700665],[115,233,64,-0.27591391367221807],[115,233,65,-0.27481825849009656],[115,233,66,-0.27359685023859937],[115,233,67,-0.2722500009714761],[115,233,68,-0.2707781502099047],[115,233,69,-0.2691818672844706],[115,233,70,-0.26746185368314146],[115,233,71,-0.2656189454053042],[115,233,72,-0.2636541153218246],[115,233,73,-0.2615684755412109],[115,233,74,-0.2593632797817065],[115,233,75,-0.25703992574953116],[115,233,76,-0.2545999575231227],[115,233,77,-0.2520450679434145],[115,233,78,-0.24937710101017396],[115,233,79,-0.24659805428435033],[115,234,64,-0.27363325048993237],[115,234,65,-0.2725138861263362],[115,234,66,-0.27126961982011066],[115,234,67,-0.2699007654320661],[115,234,68,-0.268407763331996],[115,234,69,-0.26679118271673385],[115,234,70,-0.26505172393403764],[115,234,71,-0.26319022081235754],[115,234,72,-0.26120764299645893],[115,234,73,-0.2591050982889713],[115,234,74,-0.2568838349976986],[115,234,75,-0.25454524428890035],[115,234,76,-0.25209086254640334],[115,234,77,-0.24952237373657582],[115,234,78,-0.24684161177918784],[115,234,79,-0.2440505629241112],[115,235,64,-0.27126888265735205],[115,235,65,-0.2701247489617695],[115,235,66,-0.2688566021207216],[115,235,67,-0.267464757914857],[115,235,68,-0.26594965763214085],[115,235,69,-0.2643118703608649],[115,235,70,-0.2625520952883025],[115,235,71,-0.26067116400506785],[115,235,72,-0.2586700428151463],[115,235,73,-0.2565498350516713],[115,235,74,-0.25431178339827665],[115,235,75,-0.251957272216245],[115,235,76,-0.24948782987729723],[115,235,77,-0.24690513110206924],[115,235,78,-0.24421099930428924],[115,235,79,-0.24140740894061474],[115,236,64,-0.26882155009319364],[115,236,65,-0.2676515897496099],[115,236,66,-0.26635854258774794],[115,236,67,-0.26494272642384553],[115,236,68,-0.2634045835366454],[115,236,69,-0.2617446829342328],[115,236,70,-0.2599637226263217],[115,236,71,-0.2580625319020584],[115,236,72,-0.2560420736133039],[115,236,73,-0.2539034464634746],[115,236,74,-0.2516478873017649],[115,236,75,-0.24927677342297638],[115,236,76,-0.24679162487280004],[115,236,77,-0.24419410675859143],[115,236,78,-0.24148603156565773],[115,236,79,-0.2386693614790143],[115,237,64,-0.26629212823045256],[115,237,65,-0.26509528828089446],[115,237,66,-0.2637763251745673],[115,237,67,-0.2623355588819549],[115,237,68,-0.26077343274823195],[115,237,69,-0.2590905157327945],[115,237,70,-0.2572875046540426],[115,237,71,-0.25536522643947845],[115,237,72,-0.2533246403810837],[115,237,73,-0.2511668403960575],[115,237,74,-0.2488930572927348],[115,237,75,-0.2465046610419136],[115,237,76,-0.24400316305343472],[115,237,77,-0.24139021845805508],[115,237,78,-0.23866762839463573],[115,237,79,-0.23583734230259568],[115,238,64,-0.263681623190539],[115,238,65,-0.2624568565123754],[115,238,66,-0.26111096742400086],[115,238,67,-0.25964427817164093],[115,238,68,-0.25805723324559127],[115,238,69,-0.2563504015913144],[115,238,70,-0.2545244788255757],[115,238,71,-0.2525802894576892],[115,238,72,-0.2505187891158337],[115,238,73,-0.24834106677851975],[115,238,74,-0.24604834701103007],[115,238,75,-0.24364199220706084],[115,238,76,-0.2411235048354049],[115,238,77,-0.23849452969172247],[115,238,78,-0.23575685615541675],[115,238,79,-0.2329124204515668],[115,239,64,-0.2609911670138204],[115,239,65,-0.2597374337512932],[115,239,66,-0.2583636156090311],[115,239,67,-0.25687003723326407],[115,239,68,-0.2552571443411239],[115,239,69,-0.2535255059021748],[115,239,70,-0.25167581632476754],[115,239,71,-0.24970889764728432],[115,239,72,-0.24762570173423804],[115,239,73,-0.2454273124773042],[115,239,74,-0.243114948001109],[115,239,75,-0.24068996287400068],[115,239,76,-0.23815385032364522],[115,239,77,-0.23550824445749308],[115,239,78,-0.23275492248813168],[115,239,79,-0.22989580696348022],[115,240,64,-0.25822201294646285],[115,240,65,-0.2569382818969195],[115,240,66,-0.2555355399307415],[115,240,67,-0.25401411422112374],[115,240,68,-0.2523744517967548],[115,240,69,-0.2506171216926574],[115,240,70,-0.24874281710562562],[115,240,71,-0.24675235755432467],[115,240,72,-0.24464669104401893],[115,240,73,-0.24242689623600833],[115,240,74,-0.2400941846215906],[115,240,75,-0.2376499027007829],[115,240,76,-0.235095534165642],[115,240,77,-0.23243270208822597],[115,240,78,-0.22966317111321788],[115,240,79,-0.22678884965516344],[115,241,64,-0.25537553078366126],[115,241,65,-0.25406078073895666],[115,241,66,-0.2526281297735692],[115,241,67,-0.2510779077172369],[115,241,68,-0.24941056299791198],[115,241,69,-0.2476266647607882],[115,241,70,-0.24572690499168937],[115,241,71,-0.24371210064488447],[115,241,72,-0.24158319577529552],[115,241,73,-0.23934126367517872],[115,241,74,-0.2369875090150949],[115,241,75,-0.23452326998940443],[115,241,76,-0.2319500204661249],[115,241,77,-0.22926937214119458],[115,241,78,-0.22648307669716217],[115,241,79,-0.22359302796625546],[115,242,64,-0.2524532022691294],[115,242,65,-0.2511064233126732],[115,242,66,-0.24964288901774123],[115,242,67,-0.24806293200273644],[115,242,68,-0.24636700218554153],[115,242,69,-0.24455566886961722],[115,242,70,-0.24262962283421474],[115,242,71,-0.24058967842877332],[115,242,72,-0.2384367756714626],[115,242,73,-0.23617198235195602],[115,242,74,-0.23379649613824638],[115,242,75,-0.2313116466877443],[115,242,76,-0.22871889776249033],[115,242,77,-0.22601984934853303],[115,242,78,-0.22321623977948413],[115,242,79,-0.22030994786421143],[115,243,64,-0.24945661655100204],[115,243,65,-0.2480768113109194],[115,243,66,-0.2465814314090483],[115,243,67,-0.2449708123870422],[115,243,68,-0.24324540574631204],[115,243,69,-0.24140578100008636],[115,243,70,-0.23945262772933007],[115,243,71,-0.2373867576425932],[115,243,72,-0.23520910663975259],[115,243,73,-0.23292073687973036],[115,243,74,-0.23052283885199876],[115,243,75,-0.2280167334521156],[115,243,76,-0.22540387406112072],[115,243,77,-0.2226858486288409],[115,243,78,-0.21986438176112166],[115,243,79,-0.21694133681093974],[115,244,64,-0.24638746569408065],[115,244,65,-0.24497365055295894],[115,244,66,-0.24344547598588728],[115,244,67,-0.24180328059473521],[115,244,68,-0.24004751756093867],[115,244,69,-0.23817875666241795],[115,244,70,-0.2361976862940922],[115,244,71,-0.2341051154920596],[115,244,72,-0.23190197596140716],[115,244,73,-0.22958932410773647],[115,244,74,-0.22716834307220912],[115,244,75,-0.22464034477036365],[115,244,76,-0.2220067719345269],[115,244,77,-0.21926920015987328],[115,244,78,-0.2164293399541466],[115,244,79,-0.2134890387909999],[115,245,64,-0.24324754024834294],[115,245,65,-0.24179874651003552],[115,245,66,-0.24023684256348932],[115,245,67,-0.23856217021005321],[115,245,68,-0.23677518441054557],[115,245,69,-0.2348764552659376],[115,245,70,-0.23286667000135952],[115,245,71,-0.23074663495350156],[115,245,72,-0.2285172775613723],[115,245,73,-0.22617964836049875],[115,245,74,-0.2237349229803769],[115,245,75,-0.22118440414541884],[115,245,76,-0.21852952367922351],[115,245,77,-0.2157718445122233],[115,245,78,-0.21291306269271992],[115,245,79,-0.20995500940126677],[115,246,64,-0.24003872487386846],[115,246,65,-0.23855399988782744],[115,246,66,-0.23695744727549084],[115,246,67,-0.23524941217916284],[115,246,68,-0.2334303514412226],[115,246,69,-0.23150083554749157],[115,246,70,-0.22946155057363904],[115,246,71,-0.22731330013470197],[115,246,72,-0.22505700733768041],[115,246,73,-0.22269371673729477],[115,246,74,-0.22022459629470958],[115,246,75,-0.21765093933947466],[115,246,76,-0.21497416653450774],[115,246,77,-0.21219582784417124],[115,246,78,-0.2093176045054571],[115,246,79,-0.20634131100223707],[115,247,64,-0.23676299402210882],[115,247,65,-0.23524140226571688],[115,247,66,-0.23360929817277343],[115,247,67,-0.23186703037013634],[115,247,68,-0.23001505768670305],[115,247,69,-0.22805395105838566],[115,247,70,-0.2259843954358377],[115,247,71,-0.22380719169500196],[115,247,72,-0.22152325855044386],[115,247,73,-0.21913363447155598],[115,247,74,-0.21663947960143914],[115,247,75,-0.21404207767870997],[115,247,76,-0.21134283796205977],[115,247,77,-0.20854329715761588],[115,247,78,-0.20564512134912216],[115,247,79,-0.20265010793089322],[115,248,64,-0.23342240767341527],[115,248,65,-0.2318630317927889],[115,248,66,-0.2301944908794834],[115,248,67,-0.22841713719054435],[115,248,68,-0.22653143164907263],[115,248,69,-0.22453794570975105],[115,248,70,-0.22243736322682084],[115,248,71,-0.2202304823245792],[115,248,72,-0.21791821727036498],[115,248,73,-0.215501600350115],[115,248,74,-0.21298178374629517],[115,248,75,-0.21036004141846176],[115,248,76,-0.20763777098627123],[115,248,77,-0.20481649561499593],[115,248,78,-0.20189786590355674],[115,248,79,-0.19888366177503092],[115,249,64,-0.23001910713098866],[115,249,65,-0.22842104894072401],[115,249,66,-0.22671520430640035],[115,249,67,-0.22490192926282881],[115,249,68,-0.22298168693767917],[115,249,69,-0.22095504937651333],[115,249,70,-0.2188226993699538],[115,249,71,-0.21658543228307015],[115,249,72,-0.21424415788693973],[115,249,73,-0.21179990219247502],[115,249,74,-0.20925380928631254],[115,249,75,-0.2066071431690265],[115,249,76,-0.20386128959548133],[115,249,77,-0.2010177579173803],[115,249,78,-0.19807818292802326],[115,249,79,-0.1950443267092309],[115,250,64,-0.22655531087117353],[115,250,65,-0.22491769231350572],[115,250,66,-0.22317369642157436],[115,250,67,-0.2213236831573835],[115,250,68,-0.21936811796616418],[115,250,69,-0.21730757355987884],[115,250,70,-0.21514273170254583],[115,250,71,-0.21287438499745992],[115,250,72,-0.2105034386762723],[115,250,73,-0.20803091239001859],[115,250,74,-0.2054579420018895],[115,250,75,-0.20278578138200964],[115,250,76,-0.20001580420403775],[115,250,77,-0.19714950574364376],[115,250,78,-0.19418850467887905],[115,250,79,-0.191134544892393],[115,251,64,-0.2230333104500043],[115,251,65,-0.22135527451385167],[115,251,66,-0.21957230007813733],[115,251,67,-0.21768475118324182],[115,251,68,-0.21569309570751694],[115,251,69,-0.2135979071082459],[115,251,70,-0.211399866164095],[115,251,71,-0.20909976271913588],[115,251,72,-0.2066984974284003],[115,251,73,-0.2041970835050554],[115,251,74,-0.2015966484689954],[115,251,75,-0.19889843589711487],[115,251,76,-0.19610380717507558],[115,251,77,-0.19321424325062464],[115,251,78,-0.19023134638847783],[115,251,79,-0.18715684192672322],[115,252,64,-0.21945546646617992],[115,252,65,-0.2177361780665445],[115,252,66,-0.21591341889946847],[115,252,67,-0.2139875572365535],[115,252,68,-0.21195906350733973],[115,252,69,-0.20982851199672325],[115,252,70,-0.20759658254352487],[115,252,71,-0.20526406224029592],[115,252,72,-0.20283184713431945],[115,252,73,-0.20030094392989828],[115,252,74,-0.19767247169172042],[115,252,75,-0.1949476635495735],[115,252,76,-0.19212786840421492],[115,252,77,-0.18921455263445897],[115,252,78,-0.1862093018054921],[115,252,79,-0.18311382237837426],[115,253,64,-0.21582420458038015],[115,253,65,-0.21406285139857656],[115,253,66,-0.21219952322162894],[115,253,67,-0.21023459270676553],[115,253,68,-0.2081685329552293],[115,253,69,-0.20600191916516575],[115,253,70,-0.20373543028531893],[115,253,71,-0.2013698506696192],[115,253,72,-0.19890607173261987],[115,253,73,-0.1963450936058797],[115,253,74,-0.19368802679507469],[115,253,75,-0.19093609383811538],[115,253,76,-0.18809063096407663],[115,253,77,-0.1851530897529976],[115,253,78,-0.18212503879656672],[115,253,79,-0.1790081653596467],[115,254,64,-0.2121420115908329],[115,254,65,-0.21033780487601517],[115,254,66,-0.20843314609296537],[115,254,67,-0.206428412440408],[115,254,68,-0.20432407981418133],[115,254,69,-0.20212072441463036],[115,254,70,-0.19981902435445575],[115,254,71,-0.19741976126709915],[115,254,72,-0.19492382191562618],[115,254,73,-0.19233219980220023],[115,254,74,-0.18964599677793137],[115,254,75,-0.18686642465338033],[115,254,76,-0.18399480680951763],[115,254,77,-0.18103257980920273],[115,254,78,-0.17798129500919257],[115,254,79,-0.17484262017263774],[115,255,64,-0.2084114315653105],[115,255,65,-0.2065636068977701],[115,255,66,-0.20461687933107242],[115,255,67,-0.20257163076267237],[115,255,68,-0.20042834000820564],[115,255,69,-0.19818758436244321],[115,255,70,-0.19585004116033577],[115,255,71,-0.19341648933823435],[115,255,72,-0.19088781099524432],[115,255,73,-0.18826499295481192],[115,255,74,-0.1855491283263181],[115,255,75,-0.18274141806697025],[115,255,76,-0.1798431725437839],[115,255,77,-0.1768558130957235],[115,255,78,-0.1737808735960089],[115,255,79,-0.17062000201454985],[115,256,64,-0.20463506202947113],[115,256,65,-0.20274288004617624],[115,256,66,-0.2007533696370239],[115,256,67,-0.1986669175566942],[115,256,68,-0.19648400566806234],[115,256,69,-0.19420521245578592],[115,256,70,-0.19183121453961105],[115,256,71,-0.18936278818748215],[115,256,72,-0.18680081082841693],[115,256,73,-0.18414626256524025],[115,256,74,-0.18140022768695624],[115,256,75,-0.1785638961810463],[115,256,76,-0.17563856524548727],[115,256,77,-0.17262564080055687],[115,256,78,-0.16952663900043452],[115,256,79,-0.16634318774455814],[115,257,64,-0.20081555021144482],[115,257,65,-0.1988782972942923],[115,257,66,-0.1968453147667693],[115,257,67,-0.19471699440043588],[115,257,68,-0.19249382123501285],[115,257,69,-0.19017637504369567],[115,257,70,-0.18776533179780636],[115,257,71,-0.18526146513087116],[115,257,72,-0.18266564780208117],[115,257,73,-0.17997885315923579],[115,257,74,-0.17720215660094119],[115,257,75,-0.1743367370383586],[115,257,76,-0.17138387835629187],[115,257,77,-0.16834497087368105],[115,257,78,-0.16522151280351605],[115,257,79,-0.16201511171212224],[115,258,64,-0.19695558934285423],[115,258,65,-0.1949725782701056],[115,258,66,-0.19289545975989353],[115,258,67,-0.19072463076136809],[115,258,68,-0.18846057962278873],[115,258,69,-0.18610388750768125],[115,258,70,-0.18365522980994076],[115,258,71,-0.1811153775679737],[115,258,72,-0.17848519887783565],[115,258,73,-0.1757656603054636],[115,258,74,-0.17295782829777395],[115,258,75,-0.17006287059292485],[115,258,76,-0.16708205762952677],[115,258,77,-0.16401676395487486],[115,258,78,-0.16086846963220908],[115,258,79,-0.15763876164696222],[115,259,64,-0.19305791501617786],[115,259,65,-0.1910284855775526],[115,259,66,-0.18890659322564363],[115,259,67,-0.18669264024885202],[115,259,68,-0.1843871184376788],[115,259,69,-0.18199061045085924],[115,259,70,-0.17950379118004767],[115,259,71,-0.1769274291131434],[115,259,72,-0.17426238769621638],[115,259,73,-0.17150962669413117],[115,259,74,-0.1686702035496414],[115,259,75,-0.16574527474124917],[115,259,76,-0.16273609713961967],[115,259,77,-0.15964402936261923],[115,259,78,-0.1564705331289865],[115,259,79,-0.15321717461059214],[115,260,64,-0.1891253015983576],[115,260,65,-0.18704882117425042],[115,260,66,-0.18488154368611953],[115,260,67,-0.18262387692412185],[115,260,68,-0.18027631625662965],[115,260,69,-0.1778394459454984],[115,260,70,-0.17531394045948623],[115,260,71,-0.17270056578590554],[115,260,72,-0.1700001807404709],[115,260,73,-0.16721373827544317],[115,260,74,-0.16434228678583362],[115,260,75,-0.1613869714139745],[115,260,76,-0.1583490353522377],[115,260,77,-0.15522982114397077],[115,260,78,-0.15203077198266274],[115,260,79,-0.1487534330092954],[115,261,64,-0.1851605587008417],[115,261,65,-0.1830364228061402],[115,261,66,-0.18082317597682918],[115,261,67,-0.17852123166806677],[115,261,68,-0.1761310889635661],[115,261,69,-0.1736533338391863],[115,261,70,-0.1710886404242547],[115,261,71,-0.16843777226071321],[115,261,72,-0.16570158356004694],[115,261,73,-0.16288102045809633],[115,261,74,-0.15997712226751515],[115,261,75,-0.15699102272818433],[115,261,76,-0.15392395125535885],[115,261,77,-0.1507772341856214],[115,261,78,-0.14755229602065162],[115,261,79,-0.1442506606687679],[115,262,64,-0.18116652770597197],[115,262,65,-0.1789941604989438],[115,262,66,-0.1767343877045131],[115,262,67,-0.1743876286067143],[115,262,68,-0.1719543861438309],[115,262,69,-0.16943524811951238],[115,262,70,-0.16683088841120214],[115,262,71,-0.1641420681759665],[115,262,72,-0.161369637053687],[115,262,73,-0.15851453436771423],[115,262,74,-0.15557779032274677],[115,262,75,-0.15256052720024593],[115,262,76,-0.1494639605511614],[115,262,77,-0.14628940038604477],[115,262,78,-0.1430382523625548],[115,262,79,-0.13971201897031743],[115,263,64,-0.17714607834961066],[115,263,65,-0.17492493310632984],[115,263,66,-0.17261810576212738],[115,263,67,-0.17022602159431166],[115,263,68,-0.16774918753663348],[115,263,69,-0.16518819333715967],[115,263,70,-0.16254371271302986],[115,263,71,-0.15981650450218332],[115,263,72,-0.15700741381202138],[115,263,73,-0.15411737316510388],[115,263,74,-0.15114740364163948],[115,263,75,-0.14809861601908375],[115,263,76,-0.14497221190862158],[115,263,77,-0.1417694848886052],[115,263,78,-0.1384918216349582],[115,263,79,-0.1351407030485029],[115,264,64,-0.17310210536021908],[115,264,65,-0.1708316649150058],[115,264,66,-0.16847728290120828],[115,264,67,-0.16603939075422042],[115,264,68,-0.16351849954573494],[115,264,69,-0.1609152010876318],[115,264,70,-0.15823016903230863],[115,264,71,-0.15546415996954938],[115,264,72,-0.1526180145198876],[115,264,73,-0.14969265842457086],[115,264,74,-0.14668910363187893],[115,264,75,-0.14360844938011708],[115,264,76,-0.14045188327705294],[115,264,77,-0.13722068237587587],[115,264,78,-0.1339162142476839],[115,264,79,-0.1305399380504576],[115,265,64,-0.16903752515421],[115,265,65,-0.1667173023065534],[115,265,66,-0.1643148943614326],[115,265,67,-0.1618307390774425],[115,265,68,-0.15926535180817902],[115,265,69,-0.15661932655142358],[115,265,70,-0.15389333699432178],[115,265,71,-0.15108813755465889],[115,265,72,-0.14820456441818464],[115,265,73,-0.1452435365720952],[115,265,74,-0.14220605683442417],[115,265,75,-0.13909321287966464],[115,265,76,-0.1359061782603911],[115,265,77,-0.1326462134249593],[115,265,78,-0.12931466673128855],[115,265,79,-0.12591297545668872],[115,266,64,-0.16495527258770926],[115,266,65,-0.16258481047614615],[115,266,66,-0.16013393455751324],[115,266,67,-0.15760308907891724],[115,266,68,-0.15499279382121128],[115,266,69,-0.15230364509278133],[115,266,70,-0.14953631671887763],[115,266,71,-0.14669156102658748],[115,266,72,-0.14377020982540661],[115,266,73,-0.1407731753835184],[115,266,74,-0.1377014513995256],[115,266,75,-0.13455611396996586],[115,266,76,-0.13133832255237354],[115,266,77,-0.1280493209239671],[115,266,78,-0.12469043813596808],[115,266,79,-0.1212630894635125],[115,267,64,-0.1608582977645444],[115,267,65,-0.15843717020796122],[115,267,66,-0.15593741382324278],[115,267,67,-0.15335947951140083],[115,267,68,-0.15070389162719483],[115,267,69,-0.14797124891685626],[115,267,70,-0.14516222545089752],[115,267,71,-0.14227757155210274],[115,267,72,-0.13931811471865962],[115,267,73,-0.13628476054253824],[115,267,74,-0.13317849362286388],[115,267,75,-0.1300003784746157],[115,267,76,-0.12675156043240932],[115,267,77,-0.12343326654944986],[115,267,78,-0.12004680649165506],[115,267,79,-0.11659357342691179],[115,268,64,-0.15674956290067477],[115,268,65,-0.15427737470750963],[115,268,66,-0.15172835521290684],[115,268,67,-0.14910296213714974],[115,268,68,-0.14640172455675232],[115,268,69,-0.1436252437854842],[115,268,70,-0.1407741942500097],[115,268,71,-0.1378493243602465],[115,268,72,-0.13485145737439513],[115,268,73,-0.13178149225875274],[115,268,74,-0.12864040454205056],[115,268,75,-0.1254292471646548],[115,268,76,-0.12214915132238269],[115,268,77,-0.11880132730502307],[115,268,78,-0.11538706532956045],[115,268,79,-0.11190773636806778],[115,269,64,-0.1526320392449651],[115,269,65,-0.15010842649077832],[115,269,66,-0.1475097913599649],[115,269,67,-0.14483659855730807],[115,269,68,-0.14208938203002508],[115,269,69,-0.13926874579148085],[115,269,70,-0.13637536473904277],[115,269,71,-0.13340998546617816],[115,269,72,-0.1303734270687527],[115,269,73,-0.12726658194563883],[115,269,74,-0.12409041659337272],[115,269,75,-0.12084597239520234],[115,269,76,-0.11753436640427861],[115,269,77,-0.1141567921210756],[115,269,78,-0.11071452026504225],[115,269,79,-0.10720889954044716],[115,270,64,-0.14850870405619515],[115,270,65,-0.14593333433007788],[115,270,66,-0.14328476139288748],[115,270,67,-0.14056345709888485],[115,270,68,-0.13776996041593842],[115,270,69,-0.13490487819134356],[115,270,70,-0.13196888591130235],[115,270,71,-0.1289627284541653],[115,270,72,-0.125887220837394],[115,270,73,-0.12274324895835337],[115,270,74,-0.11953177032867174],[115,270,75,-0.1162538148025124],[115,270,76,-0.11291048529850728],[115,270,77,-0.10950295851543984],[115,270,78,-0.10603248564167889],[115,270,79,-0.10250039305832487],[115,271,64,-0.1443825376365132],[115,271,65,-0.14175511025680892],[115,271,66,-0.13905630790836643],[115,271,67,-0.1362866097595405],[115,271,68,-0.13344655994969573],[115,271,69,-0.13053676829657818],[115,271,70,-0.1275579109968581],[115,271,71,-0.12451073131994855],[115,271,72,-0.12139604029505663],[115,271,73,-0.11821471739158051],[115,271,74,-0.11496771119258181],[115,271,75,-0.11165604006168789],[115,271,76,-0.10828079280316572],[115,271,77,-0.10484312931525896],[115,271,78,-0.10134428123678907],[115,271,79,-0.09778555258698174],[115,272,64,-0.14025652042123132],[115,272,65,-0.13757676662104057],[115,272,66,-0.13482747400179051],[115,272,67,-0.13200912921007263],[115,272,68,-0.12912228170838785],[115,272,69,-0.12616754442354344],[115,272,70,-0.1231455943877276],[115,272,71,-0.12005717337236599],[115,272,72,-0.11690308851471631],[115,272,73,-0.11368421293731729],[115,272,74,-0.11040148636001651],[115,272,75,-0.10705591570493683],[115,272,76,-0.10364857569411912],[115,272,77,-0.10018060943993656],[115,272,78,-0.09665322902827689],[115,272,79,-0.09306771609445758],[115,273,64,-0.13613363012485696],[115,273,65,-0.13340131320779414],[115,273,66,-0.13060130035487794],[115,273,67,-0.12773408585449436],[115,273,68,-0.12480022464461005],[115,273,69,-0.12180033290169867],[115,273,70,-0.11873508862184418],[115,273,71,-0.11560523219412516],[115,273,72,-0.11241156696623883],[115,273,73,-0.10915495980247736],[115,273,74,-0.10583634163378453],[115,273,75,-0.10245670800025036],[115,273,76,-0.09901711958578219],[115,273,77,-0.09551870274504703],[115,273,78,-0.09196265002268234],[115,273,79,-0.08835022066473885],[115,274,64,-0.13201683894356886],[115,274,65,-0.12923175441024554],[115,274,66,-0.1263808223806825],[115,274,67,-0.12346454494792064],[115,274,68,-0.12048348267830616],[115,274,69,-0.11743825514047995],[115,274,70,-0.11432954142603508],[115,274,71,-0.11115808066194982],[115,274,72,-0.10792467251475457],[115,274,73,-0.10463017768654553],[115,274,74,-0.10127551840256876],[115,274,75,-0.09786167889074099],[115,274,76,-0.09438970585283735],[115,274,77,-0.09086070892744491],[115,274,78,-0.08727586114467828],[115,274,79,-0.08363639937262218],[115,275,64,-0.12790911081403494],[115,275,65,-0.12507108645974013],[115,275,66,-0.12216906742586425],[115,275,67,-0.11920356377215496],[115,275,68,-0.11617514184672995],[115,275,69,-0.11308442475469177],[115,275,70,-0.10993209281789618],[115,275,71,-0.10671888402598517],[115,275,72,-0.10344559447863905],[115,275,73,-0.10011307881916703],[115,275,74,-0.09672225065915185],[115,275,75,-0.09327408299452106],[115,275,76,-0.08976960861277283],[115,275,77,-0.08620992049145482],[115,275,78,-0.08259617218789256],[115,275,79,-0.07892957822013336],[115,276,64,-0.1238133987284652],[115,276,65,-0.12092229471251248],[115,276,66,-0.11796905203011804],[115,276,67,-0.11495418886886732],[115,276,68,-0.1118782775124123],[115,276,69,-0.10874194474830245],[115,276,70,-0.10554587226645201],[115,276,71,-0.10229079704835198],[115,276,72,-0.09897751174698438],[115,276,73,-0.09560686505755672],[115,276,74,-0.09217976207877132],[115,276,75,-0.08869716466500416],[115,276,76,-0.08516009176912015],[115,276,77,-0.08156961977602273],[115,276,78,-0.07792688282693555],[115,276,79,-0.0742330731343801],[115,277,64,-0.11973264210611101],[115,277,65,-0.11678835099332502],[115,277,66,-0.11378377924297417],[115,277,67,-0.11071945333058153],[115,277,68,-0.10759595162935687],[115,277,69,-0.10441390475686851],[115,277,70,-0.10117399591182424],[115,277,71,-0.09787696120107414],[115,277,72,-0.09452358995679316],[115,277,73,-0.09111472504395857],[115,277,74,-0.08765126315783806],[115,277,75,-0.08413415511186606],[115,277,76,-0.08056440611562954],[115,277,77,-0.0769430760430671],[115,277,78,-0.07327127969087405],[115,277,79,-0.06955018702708154],[115,278,64,-0.11566976422110381],[115,278,65,-0.11267221099591879],[115,278,66,-0.10961623599786524],[115,278,67,-0.10650237414936126],[115,278,68,-0.10333121006735174],[115,278,69,-0.10010337834847338],[115,278,70,-0.09681956384379742],[115,278,71,-0.09348050192326612],[115,278,72,-0.09008697872977756],[115,278,73,-0.08663983142303955],[115,278,74,-0.08313994841290112],[115,278,75,-0.07958826958254583],[115,278,76,-0.07598578650126381],[115,278,77,-0.07233354262690866],[115,278,78,-0.06863263349803006],[115,278,79,-0.06488420691565233],[115,279,64,-0.11162766968653132],[115,279,65,-0.10857681174016937],[115,279,66,-0.10546939054334986],[115,279,67,-0.10230594962308937],[115,279,68,-0.09908707999428845],[115,279,69,-0.0958134203830715],[115,279,70,-0.09248565743917092],[115,279,71,-0.08910452593746832],[115,279,72,-0.0856708089686512],[115,279,73,-0.08218533811910445],[115,279,74,-0.07864899363974259],[115,279,75,-0.07506270460417125],[115,279,76,-0.07142744905589343],[115,279,77,-0.06774425414466356],[115,279,78,-0.06401419625198623],[115,279,79,-0.060238401105721706],[115,280,64,-0.10760924199495914],[115,280,65,-0.10450506908616264],[115,280,66,-0.10134618993170952],[115,280,67,-0.0981331568195552],[115,280,68,-0.0948665673167084],[115,280,69,-0.09154706443046035],[115,280,70,-0.08817533675811812],[115,280,71,-0.08475211862535587],[115,280,72,-0.08127819021314175],[115,280,73,-0.07775437767336041],[115,280,74,-0.0741815532328351],[115,280,75,-0.07056063528614226],[115,280,76,-0.06689258847692803],[115,280,77,-0.06317842376783583],[115,280,78,-0.059419198499036485],[115,280,79,-0.055616016435328486],[115,281,64,-0.1036173411152902],[115,281,65,-0.10045987530507955],[115,281,66,-0.09724955756480869],[115,281,67,-0.09398694909824007],[115,281,68,-0.09067265417846448],[115,281,69,-0.08730732024676574],[115,281,70,-0.08389163799944294],[115,281,71,-0.08042634146270727],[115,281,72,-0.07691220805560828],[115,281,73,-0.07335005864111466],[115,281,74,-0.06974075756504555],[115,281,75,-0.06608521268325424],[115,281,76,-0.06238437537676633],[115,281,77,-0.05863924055498637],[115,281,78,-0.05485084664696099],[115,281,79,-0.05102027558066913],[115,282,64,-0.09965480114586489],[115,282,65,-0.09644409670679083],[115,282,66,-0.09318239079711671],[115,282,67,-0.08987025368969825],[115,282,68,-0.08650829651739278],[115,282,69,-0.08309717130933592],[115,282,70,-0.07963757101462376],[115,282,71,-0.07613022951352211],[115,282,72,-0.07257592161615406],[115,282,73,-0.0689754630487956],[115,282,74,-0.06532971042747021],[115,282,75,-0.06163956121924763],[115,282,76,-0.057905953690948975],[115,282,77,-0.0541298668453693],[115,282,78,-0.05031232034500993],[115,282,79,-0.046454374423285205],[115,283,64,-0.095724428024004],[115,283,65,-0.09246057132436669],[115,283,66,-0.08914755859609863],[115,283,67,-0.0857859693327434],[115,283,68,-0.0823764216802087],[115,283,69,-0.07891957241025938],[115,283,70,-0.07541611688086375],[115,283,71,-0.07186678898351118],[115,283,72,-0.06827236107745749],[115,283,73,-0.06463364391102216],[115,283,74,-0.06095148652963156],[115,283,75,-0.05722677617101396],[115,283,76,-0.05346043814724599],[115,283,77,-0.049653435713764016],[115,283,78,-0.045806769925330115],[115,283,79,-0.041921479478921886],[115,284,64,-0.09182899729189004],[115,284,65,-0.08851210665539888],[115,284,66,-0.0851478992598706],[115,284,67,-0.08173696396933516],[115,284,68,-0.07827992609551976],[115,284,69,-0.07477744730839897],[115,284,70,-0.07123022553303715],[115,284,71,-0.06763899483284547],[115,284,72,-0.06400452527920825],[115,284,73,-0.06032762280760562],[115,284,74,-0.05660912905991994],[115,284,75,-0.052849921213341366],[115,284,76,-0.04905091179556287],[115,284,77,-0.045213048486385354],[115,284,78,-0.04133731390571738],[115,284,79,-0.03742472538794206],[115,285,64,-0.08797125191869085],[115,285,65,-0.08460147746003147],[115,285,66,-0.08118621819201793],[115,285,67,-0.07772607249705987],[115,285,68,-0.0742216730048488],[115,285,69,-0.07067368643983385],[115,285,70,-0.06708281345442624],[115,285,71,-0.06344978844805688],[115,285,72,-0.05977537937204058],[115,285,73,-0.05606038752037673],[115,285,74,-0.05230564730617002],[115,285,75,-0.048512026024088356],[115,285,76,-0.044680423598550956],[115,285,77,-0.040811772317761674],[115,285,78,-0.036907036553577466],[115,285,79,-0.03296721246717982],[115,286,64,-0.08415390017912369],[115,286,65,-0.0807314236159069],[115,286,66,-0.07726528573378133],[115,286,67,-0.07375609457941826],[115,286,68,-0.07020449025188102],[115,286,69,-0.0666111446869252],[115,286,70,-0.06297676142646202],[115,286,71,-0.05930207537330914],[115,286,72,-0.05558785253118265],[115,286,73,-0.051834889730060035],[115,286,74,-0.048044014336595886],[115,286,75,-0.04421608395001242],[115,286,76,-0.04035198608315141],[115,286,77,-0.036452637828807366],[115,286,78,-0.03251898551133009],[115,286,79,-0.028552004323464664],[115,287,64,-0.08037961358835818],[115,287,65,-0.07690464802992253],[115,287,66,-0.07338783505350624],[115,287,67,-0.06982979251381011],[115,287,68,-0.06623116812982635],[115,287,69,-0.06259263920589642],[115,287,70,-0.05891491233736085],[115,287,71,-0.0551987231009273],[115,287,72,-0.05144483572971131],[115,287,73,-0.047654042773078914],[115,287,74,-0.04382716474097137],[115,287,75,-0.0399650497331373],[115,287,76,-0.036068573052955966],[115,287,77,-0.03213863680597309],[115,287,78,-0.028176169483136337],[115,287,79,-0.024182125528699472],[115,288,64,-0.07665102489316397],[115,288,65,-0.07312381460670012],[115,288,66,-0.06955656009325872],[115,288,67,-0.06594988915711827],[115,288,68,-0.0623044572867959],[115,288,69,-0.058620947312825605],[115,288,70,-0.05490006904955397],[115,288,71,-0.05114255892108202],[115,288,72,-0.04734917957130605],[115,288,73,-0.04352071945819069],[115,288,74,-0.03965799243194762],[115,288,75,-0.03576183729755211],[115,288,76,-0.03183311736127695],[115,288,77,-0.027872719961366976],[115,288,78,-0.023881555982839503],[115,288,79,-0.019860559356382118],[115,289,64,-0.07297072611950628],[115,289,65,-0.06939154627397737],[115,289,66,-0.0657741135728166],[115,289,67,-0.06211906590910568],[115,289,68,-0.05842706668940989],[115,289,69,-0.05469880442826894],[115,289,70,-0.05093499232613036],[115,289,71,-0.047136367830852066],[115,289,72,-0.043303692182728754],[115,289,73,-0.0394377499431752],[115,289,74,-0.03553934850673848],[115,289,75,-0.031609317596873104],[115,289,76,-0.027648508745158173],[115,289,77,-0.023657794754078393],[115,289,78,-0.019638069143356668],[115,289,79,-0.015590245579806233],[115,290,64,-0.06934126667641863],[115,290,65,-0.06571042306474664],[115,290,66,-0.06204310505086],[115,290,67,-0.058339960753445746],[115,290,68,-0.054601661644454874],[115,290,69,-0.050828902080332],[115,290,70,-0.047022398816107036],[115,290,71,-0.04318289050247784],[115,290,72,-0.03931113716583881],[115,290,73,-0.035407919671387594],[115,290,74,-0.03147403916898034],[115,290,75,-0.02751031652217456],[115,290,76,-0.023517591720132153],[115,290,77,-0.019496723272509953],[115,290,78,-0.0154485875873219],[115,290,79,-0.01137407833174342],[115,291,64,-0.06576515151627774],[115,291,65,-0.06208298025626843],[115,291,66,-0.058366099043491104],[115,291,67,-0.05461516635651645],[115,291,68,-0.05083086187872324],[115,291,69,-0.04701388596632311],[115,291,70,-0.04316495909866361],[115,291,71,-0.039284821310942186],[115,291,72,-0.0353742316092831],[115,291,73,-0.03143396736831447],[115,291,74,-0.02746482371090833],[115,291,75,-0.023467612870530258],[115,291,76,-0.01944316353586678],[115,291,77,-0.015392320177859131],[115,291,78,-0.011315942359126752],[115,291,79,-0.0072149040257527],[115,292,64,-0.06224483935131653],[115,292,65,-0.05851170656579205],[115,292,66,-0.054745613199913],[115,292,67,-0.05094722822378836],[115,292,68,-0.047117239676860906],[115,292,69,-0.04325635407281231],[115,292,70,-0.03936529578616335],[115,292,71,-0.0354448064207],[115,292,72,-0.03149564415967912],[115,292,73,-0.02751858309795155],[115,292,74,-0.02351441255566253],[115,292,75,-0.019483936373979466],[115,292,76,-0.015427972192513628],[115,292,77,-0.011347350708563853],[115,292,78,-0.007242914918167032],[115,292,79,-0.003115519338925371],[115,293,64,-0.05878274092657221],[115,293,65,-0.05499904240318415],[115,293,66,-0.05118411653546995],[115,293,67,-0.047338642914010354],[115,293,68,-0.0434633180774312],[115,293,69,-0.03955885485430685],[115,293,70,-0.03562598168617134],[115,293,71,-0.031665441931770455],[115,293,72,-0.027677993152507463],[115,293,73,-0.02366440637921985],[115,293,74,-0.019625465359946803],[115,293,75,-0.01556196578914032],[115,293,76,-0.011474714517981599],[115,293,77,-0.00736452874593535],[115,293,78,-0.003232235193524058],[115,293,79,9.213307437059837E-4],[115,294,64,-0.05538121734917009],[115,294,65,-0.05154737818036559],[115,294,66,-0.04768402772194916],[115,294,67,-0.04379185631109077],[115,294,68,-0.03987156912709228],[115,294,69,-0.03592388547043879],[115,294,70,-0.0319495380223668],[115,294,71,-0.02794927208508627],[115,294,72,-0.023923844802607327],[115,294,73,-0.019874024362312948],[115,294,74,-0.0158005891769301],[115,294,75,-0.011704327047360394],[115,294,76,-0.007586034306026043],[115,294,77,-0.0034465149408668405],[115,294,78,7.134203000320333E-4],[115,294,79,0.004892954823207271],[115,295,64,-0.0520425784738628],[115,295,65,-0.048159052677471684],[115,295,66,-0.044247713435059344],[115,295,67,-0.04030926195358944],[115,295,68,-0.03634441219279917],[115,295,69,-0.03235389008157567],[115,295,70,-0.0283384327142588],[115,295,71,-0.024298787527007634],[115,295,72,-0.020235711454182417],[115,295,73,-0.016149970064883126],[115,295,74,-0.012042336679295843],[115,295,75,-0.007913591465309136],[115,295,76,-0.0037645205150573374],[115,295,77,4.040850984764893E-4],[115,295,78,0.004591430284815068],[115,295,79,0.008796716919328096],[115,296,64,-0.048769081344998105],[115,296,65,-0.04483635146591494],[115,296,66,-0.040877486759263684],[115,296,67,-0.03689319942200116],[115,296,68,-0.03288421233221664],[115,296,69,-0.02885125820304145],[115,296,70,-0.024795078715893523],[115,296,71,-0.020716423633194342],[115,296,72,-0.01661604989051059],[115,296,73,-0.012494720668260809],[115,296,74,-0.008353204442637804],[115,296,75,-0.004192274016212166],[115,296,76,-1.2705527868944744E-5],[115,296,77,0.004184722557785542],[115,296,78,0.008399230481566475],[115,296,79,0.012630038241430011],[115,297,64,-0.04556292869482431],[115,297,65,-0.041581505388256765],[115,297,66,-0.03757560564987644],[115,297,67,-0.03354595278373687],[115,297,68,-0.02949327872224644],[115,297,69,-0.025418323117850777],[115,297,70,-0.021321832413456573],[115,297,71,-0.017204558891735],[115,297,72,-0.013067259703257394],[115,297,73,-0.008910695873605212],[115,297,74,-0.004735631289099651],[115,297,75,-5.428316616236106E-4],[115,297,76,0.003666936527818021],[115,297,77,0.007892907106659117],[115,297,78,0.012134315309476382],[115,297,79,0.01639039889786152],[115,298,64,-0.04242626749805417],[115,298,65,-0.03839668909480727],[115,298,66,-0.0343442714523394],[115,298,67,-0.030269749095718224],[115,298,68,-0.026173863145583343],[115,298,69,-0.022057360347870744],[115,298,70,-0.017920992081682893],[115,298,71,-0.013765513345445957],[115,298,72,-0.009591681721304465],[115,298,73,-0.00540025631789888],[115,298,74,-0.00119199669116693],[115,298,75,0.003032338256355252],[115,298,76,0.007271991398086444],[115,298,77,0.011526208527669425],[115,298,78,0.015794239524975898],[115,298,79,0.020075339543874728],[115,299,64,-0.03936118758285328],[115,299,65,-0.03528401963712185],[115,299,66,-0.031185627478849093],[115,299,67,-0.02706675696475972],[115,299,68,-0.02292815853547718],[115,299,69,-0.018770586183587443],[115,299,70,-0.014594796399253554],[115,299,71,-0.010401547093522534],[115,299,72,-0.006191596499276267],[115,299,73,-0.0019657020499700417],[115,299,74,0.0022753807641997803],[115,299,75,0.006530899562220728],[115,299,76,0.010800106260640492],[115,299,77,0.015082258284251408],[115,299,78,0.019376619799105974],[115,299,79,0.02368246296788957],[115,300,64,-0.036369720298166666],[115,300,65,-0.03224555511830782],[115,300,66,-0.028101757642247295],[115,300,67,-0.0239390851656493],[115,300,68,-0.01975829757860987],[115,300,69,-0.01556015627238723],[115,300,70,-0.011345423023087733],[115,300,71,-0.007114858852449002],[115,300,72,-0.002869222865671983],[115,300,73,0.001390728933552715],[115,300,74,0.005664244851187029],[115,300,75,0.00995057873367268],[115,300,76,0.014248991221805778],[115,300,77,0.01855875102751444],[115,300,78,0.02287913623356248],[115,300,79,0.027209435616204793],[115,301,64,-0.03345383723730747],[115,301,65,-0.029283293400063817],[115,301,66,-0.0250946851470955],[115,301,67,-0.020888781316845476],[115,301,68,-0.01666635137600509],[115,301,69,-0.012428164265268646],[115,301,70,-0.00817498722144662],[115,301,71,-0.00390758457608131],[115,301,72,3.7328346948460253E-4],[115,301,73,0.004666862092438398],[115,301,74,0.008972403120594559],[115,301,75,0.013289166327769796],[115,301,76,0.01761642075280147],[115,301,77,0.021953446042064288],[115,301,78,0.026299533815508827],[115,301,79,0.030653989056246174],[115,302,64,-0.030615449017966537],[115,302,65,-0.026399170866610984],[115,302,66,-0.022166371238097157],[115,302,67,-0.017917830613959386],[115,302,68,-0.013654328162140603],[115,302,69,-0.009376640522156376],[115,302,70,-0.005085540566020723],[115,302,71,-7.81796135079376E-4],[115,302,72,0.0035338312472990973],[115,302,73,0.00786058768702693],[115,302,74,0.012197728254963324],[115,302,75,0.016544518346452403],[115,302,76,0.020900235065101604],[115,302,77,0.0252641686306524],[115,302,78,0.029635623810968383],[115,302,79,0.034013921378165723],[115,303,64,-0.027856404118558685],[115,303,65,-0.023595061245433008],[115,303,66,-0.019318714005780373],[115,303,67,-0.015028154620932228],[115,303,68,-0.010724172082173078],[115,303,69,-0.00640755087572678],[115,303,70,-0.0020790696829097216],[115,303,71,0.002260499944404996],[115,303,72,0.006610394933059415],[115,303,73,0.0109698620624726],[115,303,74,0.01533815936346181],[115,303,75,0.019714557541528777],[115,303,76,0.02409834142498239],[115,303,77,0.028488811437749166],[115,303,78,0.03288528509689606],[115,303,79,0.037287098534890685],[115,304,64,-0.025178487770838132],[115,304,65,-0.02087277448475664],[115,304,66,-0.01655354724937283],[115,304,67,-0.012221610118838173],[115,304,68,-0.007877762027203947],[115,304,69,-0.003522795453673226],[115,304,70,8.425049375773604E-4],[115,304,71,0.005217363682858283],[115,304,72,0.009601015929760785],[115,304,73,0.013992708873131799],[115,304,74,0.018391703216607165],[115,304,75,0.022797274659201738],[115,304,76,0.027208715407331895],[115,304,77,0.031625335712120214],[115,304,78,0.03604646543200825],[115,304,79,0.04047145562070036],[115,305,64,-0.022583420908927856],[115,305,65,-0.01823405568791637],[115,305,66,-0.01387263939701688],[115,305,67,-0.00949998801246366],[115,305,68,-0.005116910527740007],[115,305,69,-7.242075595647254E-4],[115,305,70,0.0036773300721460074],[115,305,71,0.008086922790194583],[115,305,72,0.012503803731943576],[115,305,73,0.016927220246934268],[115,305,74,0.021356435420656843],[115,305,75,0.025790729623971685],[115,305,76,0.030229402088557858],[115,305,77,0.03467177250823732],[115,305,78,0.039117182666201275],[115,305,79,0.04356499808816296],[115,306,64,-0.02007285917468608],[115,306,65,-0.015680584104528782],[115,306,66,-0.011277692483245665],[115,306,67,-0.006865012294583396],[115,306,68,-0.0024433627052669084],[115,306,69,0.001986447387782392],[115,306,70,0.006423620836847735],[115,306,71,0.010867373749288048],[115,306,72,0.015316937019929124],[115,306,73,0.019771557889823398],[115,306,74,0.024230501531757598],[115,306,75,0.028693052662001735],[115,306,76,0.03315851717868037],[115,306,77,0.03762622382661267],[115,306,78,0.042095525888647976],[115,306,79,0.046565802903520796],[115,307,64,-0.017648391979348046],[115,307,65,-0.01321397217841317],[115,307,66,-0.008770341183657722],[115,307,67,-0.004318339067867542],[115,307,68,1.4120471812918006E-4],[115,307,69,0.004607472856487604],[115,307,70,0.009079661700584114],[115,307,71,0.013556982840317422],[115,307,72,0.018038664694520735],[115,307,73,0.02252395413033477],[115,307,74,0.0270121181099229],[115,307,75,0.03150244536401716],[115,307,76,0.03599424809268064],[115,307,77,0.0404868636931299],[115,307,78,0.04497965651464622],[115,307,79,0.04947201964059747],[115,308,64,-0.015311541621575477],[115,308,65,-0.010835764652390487],[115,308,66,-0.006352151906925299],[115,308,67,-0.0018615556245595785],[115,308,68,0.0026351843519525145],[115,308,69,0.007137242145200895],[115,308,70,0.01164380743964203],[115,308,71,0.016154087105775747],[115,308,72,0.020667306852024753],[115,308,73,0.025182712904164545],[115,308,74,0.02969957371268725],[115,308,75,0.034217181687587264],[115,308,76,0.038734854960954176],[115,308,77,0.04325193917721591],[115,308,78,0.04776780931106227],[115,308,79,0.052281871513070954],[115,309,64,-0.013063762461843459],[115,309,65,-0.008547437729891832],[115,309,66,-0.004024621944064388],[115,309,67,5.038204161496862E-4],[115,309,68,0.005037039011375324],[115,309,69,0.009574199268186423],[115,309,70,0.014114484033335137],[115,309,71,0.01865709525622368],[115,309,72,0.023201255699669063],[115,309,73,0.027746210678806477],[115,309,74,0.03229122982851798],[115,309,75,0.03683560889887012],[115,309,76,0.041378671578949144],[115,309,77,0.0459197713489365],[115,309,78,0.0504582933604531],[115,309,79,0.054993656345195124],[115,310,64,-0.010906440153108113],[115,310,65,-0.006350398293319126],[115,310,66,-0.0017891786749080485],[115,310,67,0.0027763419131106443],[115,310,68,0.007345302533260933],[115,310,69,0.011916859781952935],[115,310,70,0.016490189500813685],[115,310,71,0.021064488516848265],[115,310,72,0.025638976411480996],[115,310,73,0.030212897318322024],[115,310,74,0.03478552175004937],[115,310,75,0.03935614845388438],[115,310,76,0.04392410629605442],[115,310,77,0.048488756175082234],[115,310,78,0.053049492963932715],[115,310,79,0.0576057474810379],[115,311,64,-0.008840890927877126],[115,311,65,-0.004245983179278601],[115,311,66,3.5282116809097486E-4],[115,311,67,0.004954632950438284],[115,311,68,0.009558580534005559],[115,311,69,0.014163811553302916],[115,311,70,0.01876949467890976],[115,311,71,0.023374821414692964],[115,311,72,0.027979007924490512],[115,311,73,0.03258129688810488],[115,311,74,0.03718095938699888],[115,311,75,0.041777296819170265],[115,311,76,0.046369642843597764],[115,311,77,0.05095736535410081],[115,311,78,0.05553986848264113],[115,311,79,0.060116594632089695],[115,312,64,-0.006868360941614818],[115,312,65,-0.0022354585106224845],[115,312,66,0.0024000921787979274],[115,312,67,0.00703738952704086],[115,312,68,0.011675551109267893],[115,312,69,0.016313715468871032],[115,312,70,0.020951043941090916],[115,312,71,0.02558672250663277],[115,312,72,0.03021996367533275],[115,312,73,0.034850008399716345],[115,312,74,0.03947612801884352],[115,312,75,0.04409762623191417],[115,312,76,0.0487138411020307],[115,312,77,0.05332414708995499],[115,312,78,0.057927957117892406],[115,312,79,0.06252472466332318],[115,313,64,-0.004990025672438558],[115,313,65,-3.2001908525056133E-4],[115,313,66,0.004351420899121938],[115,313,67,0.00902338018850285],[115,313,68,0.013694965475635743],[115,313,69,0.01836530608620185],[115,313,70,0.023033555857573162],[115,313,71,0.027698895048145544],[115,313,72,0.03236053227730119],[115,313,73,0.03701770649584481],[115,313,74,0.041669688987307774],[115,313,75,0.04631578539959248],[115,313,76,0.05095533780735462],[115,313,77,0.05558772680496177],[115,313,78,0.06021237363005838],[115,313,79,0.06482874231775967],[115,314,64,-0.0032069893772125463],[115,314,65,0.0014992121782166634],[115,314,66,0.006205666383415714],[115,314,67,0.01091144660120566],[115,314,68,0.015615648554114694],[115,314,69,0.020317392226248038],[115,314,70,0.025015823796472506],[115,314,71,0.029710117602758213],[115,314,72,0.03439947813772909],[115,314,73,0.03908314207526259],[115,314,74,0.04376038032853902],[115,314,75,0.04843050013900571],[115,314,76,0.05309284719665924],[115,314,77,0.05774680779148092],[115,314,78,0.062391810996057645],[115,314,79,0.06702733087940926],[115,315,64,-0.001520284603949526],[115,315,65,0.0032211847379884917],[115,315,66,0.007961760705645637],[115,315,67,0.012700504068784507],[115,315,68,0.01743649949553494],[115,315,69,0.022168857507390727],[115,315,70,0.02689671646609701],[115,315,71,0.03161924459227047],[115,315,72,0.0363356420158025],[115,315,73,0.04104514285788735],[115,315,74,0.045747017345074775],[115,315,75,0.05044057395481258],[115,315,76,0.05512516159288247],[115,315,77,0.05980017180256397],[115,315,78,0.06446504100555886],[115,315,79,0.06911925277469741],[115,316,64,6.912823941784829E-5],[115,316,65,0.004844920869811115],[115,316,66,0.009618709409265624],[115,316,67,0.01438954199085321],[115,316,68,0.019156492147809456],[115,316,69,0.02391866082090982],[115,316,70,0.02867517839830888],[115,316,71,0.03342520678768371],[115,316,72,0.03816794152073355],[115,316,73,0.0429026138898736],[115,316,74,0.047628493117528786],[115,316,75,0.05234488855748662],[115,316,76,0.0570511519287161],[115,316,77,0.061746679581487274],[115,316,78,0.06643091479582208],[115,316,79,0.0711033501122999],[115,317,64,0.001560361259973081],[115,317,65,0.0063695160509118776],[115,317,66,0.011175591899876713],[115,317,67,0.01597762426408128],[115,317,68,0.020774675465128012],[115,317,69,0.025565836747993093],[115,317,70,0.03035023037304327],[115,317,71,0.035127011740925806],[115,317,72,0.03989537155038225],[115,317,73,0.04465453798882621],[115,317,74,0.04940377895608844],[115,317,75,0.054142404320790094],[115,317,76,0.058869768209750484],[115,317,77,0.06358527133026337],[115,317,78,0.06828836332527485],[115,317,79,0.07297854516148214],[115,318,64,0.002952599398365008],[115,318,65,0.007794139287086083],[115,318,66,0.012631561780573813],[115,318,67,0.0174638896255217],[115,318,68,0.022290173858984463],[115,318,69,0.02710949591817821],[115,318,70,0.03192096978387962],[115,318,71,0.03672374415726179],[115,318,72,0.04151700467022032],[115,318,73,0.046299976129025644],[115,318,74,0.051071924791711604],[115,318,75,0.055832160678653014],[115,318,76,0.06058003991674549],[115,318,77,0.0653149671170169],[115,318,78,0.07003639778570586],[115,318,79,0.07474384076882695],[115,319,64,0.00424510069102374],[115,319,65,0.009118033382977703],[115,319,66,0.013985847130033119],[115,319,67,0.018847551938245027],[115,319,68,0.023702187491093346],[115,319,69,0.028548825309286152],[115,319,70,0.033386570944722305],[115,319,71,0.03821456620845329],[115,319,72,0.043031991432694316],[115,319,73,0.04783806776672453],[115,319,74,0.052632059507083356],[115,319,75,0.057413276461517504],[115,319,76,0.06218107634709058],[115,319,77,0.06693486722228648],[115,319,78,0.07167410995313994],[115,319,79,0.07639832071341504],[116,-64,64,-0.09863549900969637],[116,-64,65,-0.10220132769151358],[116,-64,66,-0.10565953120382143],[116,-64,67,-0.10900865962300277],[116,-64,68,-0.11224741405162308],[116,-64,69,-0.11537465215803722],[116,-64,70,-0.1183893937790953],[116,-64,71,-0.12129082658585588],[116,-64,72,-0.12407831181231577],[116,-64,73,-0.1267513900470807],[116,-64,74,-0.1293097870882034],[116,-64,75,-0.1317534198608704],[116,-64,76,-0.13408240239819447],[116,-64,77,-0.1362970518849853],[116,-64,78,-0.13839789476455],[116,-64,79,-0.1403856729085019],[116,-63,64,-0.09292644337046385],[116,-63,65,-0.09648059754749361],[116,-63,66,-0.09992774225432943],[116,-63,67,-0.10326642436155764],[116,-63,68,-0.10649534118283299],[116,-63,69,-0.10961334600647521],[116,-63,70,-0.11261945369019188],[116,-63,71,-0.1155128463188303],[116,-63,72,-0.11829287892518148],[116,-63,73,-0.12095908527374288],[116,-63,74,-0.12351118370768221],[116,-63,75,-0.12594908305867347],[116,-63,76,-0.1282728886198672],[116,-63,77,-0.13048290818186414],[116,-63,78,-0.13257965813174777],[116,-63,79,-0.13456386961515132],[116,-62,64,-0.08713993691804833],[116,-62,65,-0.09068167895938839],[116,-62,66,-0.09411705308177987],[116,-62,67,-0.09744460286192003],[116,-62,68,-0.10066302171084163],[116,-62,69,-0.10377115839706763],[116,-62,70,-0.1067680226329134],[116,-62,71,-0.10965279072385292],[116,-62,72,-0.1124248112809535],[116,-62,73,-0.11508361099630471],[116,-62,74,-0.11762890048166896],[116,-62,75,-0.12006058017003507],[116,-62,76,-0.12237874628032752],[116,-62,77,-0.12458369684515169],[116,-62,78,-0.12667593780161834],[116,-62,79,-0.12865618914523402],[116,-61,64,-0.08128030252444995],[116,-61,65,-0.08480890193416668],[116,-61,66,-0.08823180050021451],[116,-61,67,-0.09154753841884511],[116,-61,68,-0.0947548050866086],[116,-61,69,-0.09785244461463538],[116,-61,70,-0.10083946140609623],[116,-61,71,-0.10371502579674652],[116,-61,72,-0.10647847975856972],[116,-61,73,-0.10912934266643926],[116,-61,74,-0.11166731712802824],[116,-61,75,-0.11409229487664652],[116,-61,76,-0.11640436272726451],[116,-61,77,-0.1186038085955925],[116,-61,78,-0.12069112758027167],[116,-61,79,-0.12266702810815111],[116,-60,64,-0.07535190661301228],[116,-60,65,-0.07886664050995629],[116,-60,66,-0.08227636581798403],[116,-60,67,-0.08557961926793545],[116,-60,68,-0.08877508613193796],[116,-60,69,-0.09186160572839508],[116,-60,70,-0.09483817699017649],[116,-60,71,-0.09770396409592141],[116,-60,72,-0.10045830216446461],[116,-60,73,-0.1031007030123069],[116,-60,74,-0.10563086097435925],[116,-60,75,-0.1080486587876398],[116,-60,76,-0.11035417353818233],[116,-60,77,-0.1125476826710281],[116,-60,78,-0.11462967006335234],[116,-60,79,-0.11660083216070394],[116,-59,64,-0.06935915423957817],[116,-59,65,-0.07285930782773309],[116,-59,66,-0.07625516990038472],[116,-59,67,-0.07954527363964081],[116,-59,68,-0.082728300085259],[116,-59,69,-0.08580308362992373],[116,-59,70,-0.08876861757775256],[116,-59,71,-0.09162405976593513],[116,-59,72,-0.09436873824952685],[116,-59,73,-0.09700215704930715],[116,-59,74,-0.09952400196293631],[116,-59,75,-0.10193414643909626],[116,-59,76,-0.10423265751486066],[116,-59,77,-0.10641980181617683],[116,-59,78,-0.10849605162150955],[116,-59,79,-0.11046209098861826],[116,-58,64,-0.06330648404919659],[116,-58,65,-0.06679135107809842],[116,-58,66,-0.07017266810694356],[116,-58,67,-0.07344896468748341],[116,-58,68,-0.07661891752121841],[116,-58,69,-0.07968135594455272],[116,-58,70,-0.08263526747720062],[116,-58,71,-0.08547980343375394],[116,-58,72,-0.08821428459842384],[116,-58,73,-0.09083820696287515],[116,-58,74,-0.09335124752738555],[116,-58,75,-0.09575327016500856],[116,-58,76,-0.09804433154899372],[116,-58,77,-0.10022468714334454],[116,-58,78,-0.10229479725655855],[116,-58,79,-0.10425533315853042],[116,-57,64,-0.05719836310870052],[116,-57,65,-0.060667246323470425],[116,-57,66,-0.06403334510367398],[116,-57,67,-0.06729518529082967],[116,-57,68,-0.07045143914441931],[116,-57,69,-0.07350093081651421],[116,-57,70,-0.07644264188967653],[116,-57,71,-0.07927571697804325],[116,-57,72,-0.08199946939161395],[116,-57,73,-0.08461338686365127],[116,-57,74,-0.0871171373414309],[116,-57,75,-0.08951057484002056],[116,-57,76,-0.0917937453593416],[116,-57,77,-0.09396689286438842],[116,-57,78,-0.09603046532865844],[116,-57,79,-0.09798512084076749],[116,-56,64,-0.05103928161500815],[116,-56,65,-0.05449149319553748],[116,-56,66,-0.057841709550153775],[116,-56,67,-0.06108845273206065],[116,-56,68,-0.06423039045714896],[116,-56,69,-0.06726634156769262],[116,-56,70,-0.07019528155934296],[116,-56,71,-0.07301634817133273],[116,-56,72,-0.07572884703990257],[116,-56,73,-0.07833225741486771],[116,-56,74,-0.08082623793955646],[116,-56,75,-0.083210632493802],[116,-56,76,-0.08548547610023927],[116,-56,77,-0.08765100089378486],[116,-56,78,-0.0897076421543509],[116,-56,79,-0.09165604440276709],[116,-55,64,-0.04483374747898616],[116,-55,65,-0.04826860946781619],[116,-55,66,-0.051602288661264484],[116,-55,67,-0.05483330324798008],[116,-55,68,-0.057960316300938564],[116,-55,69,-0.06098214122981349],[116,-55,70,-0.0638977472966723],[116,-55,71,-0.06670626519489997],[116,-55,72,-0.06940699269137263],[116,-55,73,-0.0719994003317933],[116,-55,74,-0.07448313720942201],[116,-55,75,-0.07685803679688286],[116,-55,76,-0.07912412284129955],[116,-55,77,-0.08128161532263811],[116,-55,78,-0.08333093647530432],[116,-55,79,-0.08527271687297511],[116,-54,64,-0.03858628078519011],[116,-54,65,-0.042003125503624616],[116,-54,66,-0.045319622643905655],[116,-54,67,-0.04853428645577218],[116,-54,68,-0.0516457752722661],[116,-54,69,-0.05465289695039366],[116,-54,70,-0.0575546143751311],[116,-54,71,-0.060350051026683116],[116,-54,72,-0.06303849661101235],[116,-54,73,-0.06561941275355443],[116,-54,74,-0.06809243875635018],[116,-54,75,-0.07045739741827717],[116,-54,76,-0.07271430091863285],[116,-54,77,-0.07486335676394795],[116,-54,78,-0.07690497379807548],[116,-54,79,-0.07883976827553962],[116,-53,64,-0.03230140812732496],[116,-53,65,-0.035699578579319824],[116,-53,66,-0.03899825900853149],[116,-53,67,-0.042195959653359205],[116,-53,68,-0.04529133401225427],[116,-53,69,-0.048283184272290613],[116,-53,70,-0.051170466801097936],[116,-53,71,-0.05395229770207266],[116,-53,72,-0.0566279584328816],[116,-53,73,-0.05919690148717405],[116,-53,74,-0.06165875613972993],[116,-53,75,-0.06401333425473432],[116,-53,76,-0.06626063615742328],[116,-53,77,-0.06840085656898087],[116,-53,78,-0.07043439060473766],[116,-53,79,-0.07236183983564715],[116,-52,64,-0.02598365681926762],[116,-52,65,-0.02936250708263477],[116,-52,66,-0.0326427467553444],[116,-52,67,-0.035822881993991196],[116,-52,68,-0.03890156137019307],[116,-52,69,-0.04187758128669272],[116,-52,70,-0.04474989145684649],[116,-52,71,-0.047517600447413266],[116,-52,72,-0.05017998128465395],[116,-52,73,-0.05273647712366525],[116,-52,74,-0.055186706981169675],[116,-52,75,-0.05753047153145319],[116,-52,76,-0.059767758965696194],[116,-52,77,-0.06189875091457797],[116,-52,78,-0.0639238284342033],[116,-52,79,-0.06584357805533025],[116,-51,64,-0.019637548981966346],[116,-51,65,-0.02299644458643424],[116,-51,66,-0.02625763043546614],[116,-51,67,-0.02941960853539094],[116,-51,68,-0.032481022441210095],[116,-51,69,-0.035440662659865674],[116,-51,70,-0.03829747211691803],[116,-51,71,-0.04105055168654115],[116,-51,72,-0.04369916578485322],[116,-51,73,-0.046242748026501745],[116,-51,74,-0.04868090694472471],[116,-51,75,-0.05101343177458273],[116,-51,76,-0.05324029829960364],[116,-51,77,-0.055361674761723934],[116,-51,78,-0.05737792783457252],[116,-51,79,-0.05928962866007581],[116,-50,64,-0.013267595506064045],[116,-50,65,-0.016605913797735794],[116,-50,66,-0.019847444086935062],[116,-50,67,-0.022990684163298414],[116,-50,68,-0.026034272477936105],[116,-50,69,-0.02897699353350769],[116,-50,70,-0.03181778333772589],[116,-50,71,-0.03455573492020014],[116,-50,72,-0.037190103912636885],[116,-50,73,-0.039720314192312256],[116,-50,74,-0.04214596358904432],[116,-50,75,-0.044466829655355866],[116,-50,76,-0.04668287550007],[116,-50,77,-0.04879425568522466],[116,-50,78,-0.0508013221863477],[116,-50,79,-0.05270463041607665],[116,-49,64,-0.006878289890077327],[116,-49,65,-0.010195420381824971],[116,-49,66,-0.013416705045351418],[116,-49,67,-0.016540637389241497],[116,-49,68,-0.01956585067599048],[116,-49,69,-0.022491123298532312],[116,-49,70,-0.025315384220220172],[116,-49,71,-0.028037718478163165],[116,-49,72,-0.03065737274994229],[116,-49,73,-0.03317376098361846],[116,-49,74,-0.03558647009125915],[116,-49,75,-0.03789526570567714],[116,-49,76,-0.0401000980006222],[116,-49,77,-0.042201107574310615],[116,-49,78,-0.04419863139633651],[116,-49,79,-0.04609320881794865],[116,-48,64,-4.7410195445785064E-4],[116,-48,65,-0.0037694466617964606],[116,-48,66,-0.006969907629510552],[116,-48,67,-0.010073974022871024],[116,-48,68,-0.01308027383362198],[116,-48,69,-0.01598757924262162],[116,-48,70,-0.01879481204594946],[116,-48,71,-0.021501049144395545],[116,-48,72,-0.02410552809634181],[116,-48,73,-0.026607652733961817],[116,-48,74,-0.02900699884295377],[116,-48,75,-0.03130331990550772],[116,-48,76,-0.0334965529067448],[116,-48,77,-0.035586824204513534],[116,-48,78,-0.03757445546258942],[116,-48,79,-0.03945996964725629],[116,-47,64,0.0059405285686252585],[116,-47,65,0.0026675548066456],[116,-47,66,-5.115167018526767E-4],[116,-47,67,-0.0035951707186856474],[116,-47,68,-0.006582029885337515],[116,-47,69,-0.009470860071375098],[116,-47,70,-0.01226057578634887],[116,-47,71,-0.014950245655091399],[116,-47,72,-0.017539097956431826],[116,-47,73,-0.020026526225244035],[116,-47,74,-0.022412094918049963],[116,-47,75,-0.024695545141873554],[116,-47,76,-0.0268768004465888],[116,-47,77,-0.028955972680641318],[116,-47,78,-0.03093336791019452],[116,-47,79,-0.03280949240167519],[116,-46,64,0.012361198569946996],[116,-46,65,0.009111167785288532],[116,-46,66,0.005954038896430869],[116,-46,67,0.0028913316030073632],[116,-46,68,-7.557130935531564E-5],[116,-46,69,-0.002945429302897873],[116,-46,70,-0.0057171494850914995],[116,-46,71,-0.008389792069420254],[116,-46,72,-0.010962575899594262],[116,-46,73,-0.013434884037119676],[116,-46,74,-0.015806269412437346],[116,-46,75,-0.018076460539335204],[116,-46,76,-0.020245367292870742],[116,-46,77,-0.022313086750686772],[116,-46,78,-0.024279909097769115],[116,-46,79,-0.026146323594623766],[116,-45,64,0.018783548222004343],[116,-45,65,0.015557019028090702],[116,-45,66,0.01242237303531113],[116,-45,67,0.00938113446057709],[116,-45,68,0.006434691590789132],[116,-45,69,0.003584291463851641],[116,-45,70,8.310344861662822E-4],[116,-45,71,-0.0018241310133103594],[116,-45,72,-0.004380414292460388],[116,-45,73,-0.006837187768769626],[116,-45,74,-0.009193992655682659],[116,-45,75,-0.011450544662248263],[116,-45,76,-0.013606739756292119],[116,-45,77,-0.015662659991003136],[116,-45,78,-0.01761857939497735],[116,-45,79,-0.019474969925701302],[116,-44,64,0.02520326776207449],[116,-44,65,0.022000785080596885],[116,-44,66,0.018889149111011805],[116,-44,67,0.01586988864115335],[116,-44,68,0.012944397530646468],[116,-44,69,0.010113929407107869],[116,-44,70,0.007379592298809801],[116,-44,71,0.004742343203888333],[116,-44,72,0.0022029825960864224],[116,-44,73,-2.3785113289609416E-4],[116,-44,74,-0.0025796872946565186],[116,-44,75,-0.004822228588653998],[116,-44,76,-0.006965356850317184],[116,-44,77,-0.009009138862583477],[116,-44,78,-0.010953832230914062],[116,-44,79,-0.01279989132176551],[116,-43,64,0.031616104399716516],[116,-43,65,0.02843819920426005],[116,-43,66,0.025350086986448472],[116,-43,67,0.022353301156485483],[116,-43,68,0.019449241215435675],[116,-43,69,0.016639167466915183],[116,-43,70,0.0139241956652294],[116,-43,71,0.011305291600038792],[116,-43,72,0.008783265617539726],[116,-43,73,0.0063587670782379035],[116,-43,74,0.004032278751099239],[116,-43,75,0.0018041111443752866],[116,-43,76,-3.256032271349296E-4],[116,-43,77,-0.002356915638268453],[116,-43,78,-0.0042900670131768015],[116,-43,79,-0.006125493848475383],[116,-42,64,0.03801786934838891],[116,-42,65,0.03486505842533505],[116,-42,66,0.03180097005668159],[116,-42,67,0.028827142324237776],[116,-42,68,0.025944980436469423],[116,-42,69,0.02315575145597437],[116,-42,70,0.020460578963389153],[116,-42,71,0.017860437657806538],[116,-42,72,0.015356147893692662],[116,-42,73,0.012948370154379218],[116,-42,74,0.010637599461918446],[116,-42,75,0.00842415972359345],[116,-42,76,0.006308198014851274],[116,-42,77,0.004289678798771734],[116,-42,78,0.0023683780820277223],[116,-42,79,5.438775073545177E-4],[116,-41,64,0.04440444498135043],[116,-41,65,0.04127723070851863],[116,-41,66,0.03823765243955557],[116,-41,67,0.0352872529748941],[116,-41,68,0.03242744329359559],[116,-41,69,0.02965949729689643],[116,-41,70,0.02698454648816906],[116,-41,71,0.024403574589379584],[116,-41,72,0.021917412094027755],[116,-41,73,0.01952673075664657],[116,-41,74,0.01723203801864981],[116,-41,75,0.01503367137081646],[116,-41,76,0.01293179265218447],[116,-41,77,0.010926382285463165],[116,-41,78,0.009017233448921025],[116,-41,79,0.007203946184767829],[116,-40,64,0.050771792111997005],[116,-40,65,0.04767066225548222],[116,-40,66,0.04465606629167451],[116,-40,67,0.041729551784424945],[116,-40,68,0.03889253554380745],[116,-40,69,0.03614629838601191],[116,-40,70,0.033491979829638696],[116,-40,71,0.030930572728472994],[116,-40,72,0.028462917840728408],[116,-40,73,0.026089698334831768],[116,-40,74,0.023811434231542083],[116,-40,75,0.02162847678269164],[116,-40,76,0.01954100278631976],[116,-40,77,0.017549008838310343],[116,-40,78,0.01565230552049013],[116,-40,79,0.013850511525203446],[116,-39,64,0.057115957398325756],[116,-39,65,0.05404138492799082],[116,-39,66,0.05105222924940389],[116,-39,67,0.048150042732403975],[116,-39,68,0.04533624807570891],[116,-39,69,0.042612133083425596],[116,-39,70,0.039978845377944605],[116,-39,71,0.03743738704930277],[116,-39,72,0.03498860924099745],[116,-39,73,0.03263320667232816],[116,-39,74,0.030371712097058023],[116,-39,75,0.028204490698682583],[116,-39,76,0.026131734422074726],[116,-39,77,0.02415345624162135],[116,-39,78,0.022269484365802117],[116,-39,79,0.020479456378235117],[116,-38,64,0.06343308087166977],[116,-38,65,0.06038552379575435],[116,-38,66,0.0574222519950478],[116,-38,67,0.05454482268572158],[116,-38,68,0.05175466450998367],[116,-38,69,0.0490530723294621],[116,-38,70,0.04644120195496282],[116,-38,71,0.04392006481267685],[116,-38,72,0.0414905225468285],[116,-38,73,0.039153281558833686],[116,-38,74,0.03690888748276744],[116,-38,75,0.03475771959741991],[116,-38,76,0.03269998517471806],[116,-38,77,0.03073571376462203],[116,-38,78,0.028864751416452172],[116,-38,79,0.027086754836665228],[116,-37,64,0.0697194035898806],[116,-37,65,0.06669930480918462],[116,-37,66,0.06376234594837171],[116,-37,67,0.06091008910807205],[116,-37,68,0.0581439689260439],[116,-37,69,0.05546528738768308],[116,-37,70,0.05287520857289141],[116,-37,71,0.05037475333938213],[116,-37,72,0.0479647939424116],[116,-37,73,0.045646048591008626],[116,-37,74,0.04341907594049754],[116,-37,75,0.041284269521597694],[116,-37,76,0.039241852105873165],[116,-37,77,0.037291870007645334],[116,-37,78,0.0354341873223204],[116,-37,79,0.03366848010115375],[116,-36,64,0.07597127541460957],[116,-36,65,0.0729790625967105],[116,-36,66,0.07006883108312689],[116,-36,67,0.06724214789486216],[116,-36,68,0.06450045371450785],[116,-36,69,0.06184505771411819],[116,-36,70,0.05927713231943088],[116,-36,71,0.05679770791051264],[116,-36,72,0.05440766745881809],[116,-36,73,0.05210774110073013],[116,-36,74,0.04989850064738499],[116,-36,75,0.047780354031056405],[116,-36,76,0.045753539687881095],[116,-36,77,0.04381812087702941],[116,-36,78,0.0419739799362806],[116,-36,79,0.04022081247402132],[116,-35,64,0.08218516291297595],[116,-35,65,0.079221248386939],[116,-35,66,0.0763381438688604],[116,-35,67,0.07353742133383279],[116,-35,68,0.07082052755579538],[116,-35,69,0.06818877895300524],[116,-35,70,0.0656433563698432],[116,-35,71,0.06318529979503218],[116,-35,72,0.06081550301625438],[116,-35,73,0.05853470821123907],[116,-35,74,0.05634350047512171],[116,-35,75,0.054242302284349786],[116,-35,76,0.05223136789691629],[116,-35,77,0.0503107776890267],[116,-35,78,0.048480432428157694],[116,-35,79,0.04674004748252625],[116,-34,64,0.08835765738341117],[116,-34,65,0.08542243805545291],[116,-34,66,0.08256684533780478],[116,-34,67,0.07979245619118114],[116,-34,68,0.07710072352463038],[116,-34,69,0.07449297105882557],[116,-34,70,0.07197038812567924],[116,-34,71,0.06953402440435641],[116,-34,72,0.06718478459367483],[116,-34,73,0.06492342302096388],[116,-34,74,0.06275053818718423],[116,-34,75,0.060666567248578884],[116,-34,76,0.05867178043464116],[116,-34,77,0.05676627540250556],[116,-34,78,0.05494997152771619],[116,-34,79,0.05322260413139368],[116,-33,64,0.09448548300595483],[116,-33,65,0.09157934029651849],[116,-33,66,0.08875162927711944],[116,-33,67,0.08600393192346079],[116,-33,68,0.0833377073207282],[116,-33,69,0.0807542865449139],[116,-33,70,0.07825486748045085],[116,-33,71,0.07584050957423694],[116,-33,72,0.07351212852603228],[116,-33,73,0.07127049091530502],[116,-33,74,0.06911620876432445],[116,-33,75,0.06704973403777648],[116,-33,76,0.06507135307868239],[116,-33,77,0.06318118098072922],[116,-33,78,0.06137915589696619],[116,-33,79,0.0596650332848887],[116,-32,64,0.10056550511667695],[116,-32,65,0.09768880491937959],[116,-32,66,0.09488933054615833],[116,-32,67,0.0921686690149307],[116,-32,68,0.08952828562533932],[116,-32,69,0.08696951885831117],[116,-32,70,0.08449357521191792],[116,-32,71,0.08210152397361314],[116,-32,72,0.07979429192883503],[116,-32,73,0.07757265800604174],[116,-32,74,0.07543724785798778],[116,-32,75,0.07338852837950705],[116,-32,76,0.0714268021615927],[116,-32,77,0.06955220188187305],[116,-32,78,0.06776468463144636],[116,-32,79,0.06606402617808871],[116,-31,64,0.10659473860637869],[116,-31,65,0.10374783126928866],[116,-31,66,0.10097693351891757],[116,-31,67,0.09828363744050872],[116,-31,68,0.0956694145838003],[116,-31,69,0.09313561088101596],[116,-31,70,0.09068344150114449],[116,-31,71,0.08831398564058779],[116,-31,72,0.08602818125016243],[116,-31,73,0.08382681969852301],[116,-31,74,0.08171054037181735],[116,-31,75,0.07967982520983719],[116,-31,76,0.07773499317845378],[116,-31,77,0.07587619467844098],[116,-31,78,0.07410340589064457],[116,-31,79,0.07241642305751683],[116,-30,64,0.11257035644373203],[116,-30,65,0.10975357677343656],[116,-30,66,0.10701158065182381],[116,-30,67,0.10434596525448914],[116,-30,68,0.10175820841425964],[116,-30,69,0.09924966355779785],[116,-30,70,0.09682155457849073],[116,-30,71,0.09447497064569177],[116,-30,72,0.09221086095030873],[116,-30,73,0.09003002938680238],[116,-30,74,0.08793312917140927],[116,-30,75,0.08592065739684607],[116,-30,76,0.0839929495232915],[116,-30,77,0.08215017380574541],[116,-30,78,0.08039232565772303],[116,-30,79,0.0787192219513051],[116,-29,64,0.11848969832253609],[116,-29,65,0.11570336561145911],[116,-29,66,0.11299058117653993],[116,-29,67,0.11035294730470302],[116,-29,68,0.10779194814224768],[116,-29,69,0.10530894465024543],[116,-29,70,0.10290516949620843],[116,-29,71,0.10058172188210779],[116,-29,72,0.09833956230872198],[116,-29,73,0.09617950727639202],[116,-29,74,0.09410222392198597],[116,-29,75,0.09210822459234003],[116,-29,76,0.09019786135396468],[116,-29,77,0.08837132043911888],[116,-29,78,0.08662861662821175],[116,-29,79,0.08496958756854756],[116,-28,64,0.12435027943326504],[116,-28,65,0.12159469751069285],[116,-28,66,0.1189114199179615],[116,-28,67,0.11630205407228977],[116,-28,68,0.11376809046127023],[116,-28,69,0.11131089761722346],[116,-28,70,0.10893171702781834],[116,-28,71,0.10663165798302854],[116,-28,72,0.10441169235841596],[116,-28,73,0.10227264933480562],[116,-28,74,0.10021521005416545],[116,-28,75,0.09823990221195122],[116,-28,76,0.09634709458570845],[116,-28,77,0.09453699150003325],[116,-28,78,0.09280962722785013],[116,-28,79,0.09116486032802662],[116,-27,64,0.1301497993590407],[116,-27,65,0.12742525666631654],[116,-27,66,0.12477176623754138],[116,-27,67,0.12219094063722569],[116,-27,68,0.11968427671955906],[116,-27,69,0.11725315062188091],[116,-27,70,0.11489881269440838],[116,-27,71,0.1126223823662933],[116,-27,72,0.11042484294799515],[116,-27,73,0.10830703637003924],[116,-27,74,0.10626965785797027],[116,-27,75,0.10431325054376217],[116,-27,76,0.10243820001347648],[116,-27,77,0.10064472879127206],[116,-27,78,0.09893289075972123],[116,-27,79,0.09730256551645644],[116,-26,64,0.1358861510957351],[116,-26,65,0.13319292078608147],[116,-26,66,0.13056948310164462],[116,-26,67,0.12801745576930212],[116,-26,68,0.12553834203268321],[116,-26,69,0.12313352566490354],[116,-26,70,0.12080426591755156],[116,-26,71,0.11855169240599339],[116,-26,72,0.11637679993098837],[116,-26,73,0.11428044323667808],[116,-26,74,0.11226333170476677],[116,-26,75,0.11032602398514768],[116,-26,76,0.1084689225627693],[116,-26,77,0.10669226826084566],[116,-26,78,0.10499613468036684],[116,-26,79,0.10338042257592839],[116,-25,64,0.14155743019635592],[116,-25,65,0.13889577025978295],[116,-25,66,0.13630263627508532],[116,-25,67,0.13377965114471246],[116,-25,68,0.13132832452217202],[116,-25,69,0.1289500478441702],[116,-25,70,0.12664608929899368],[116,-25,71,0.12441758873120634],[116,-25,72,0.1222655524826457],[116,-25,73,0.12019084816978709],[116,-25,74,0.11819419939729192],[116,-25,75,0.11627618040799181],[116,-25,76,0.11443721066910795],[116,-25,77,0.1126775493948059],[116,-25,78,0.11099729000504188],[116,-25,79,0.1093963545207215],[116,-24,64,0.14716194403985838],[116,-24,65,0.1445320974536196],[116,-24,66,0.1419695036399936],[116,-24,67,0.13947579068839144],[116,-24,68,0.13705247468030035],[116,-24,69,0.13470095474095867],[116,-24,70,0.13242250802726718],[116,-24,71,0.13021828465200747],[116,-24,72,0.12808930254435302],[116,-24,73,0.12603644224674115],[116,-24,74,0.1240604416479214],[116,-24,75,0.12216189065243288],[116,-24,76,0.12034122578631035],[116,-24,77,0.11859872473911692],[116,-24,78,0.11693450084226331],[116,-24,79,0.11534849748363085],[116,-23,64,0.1526982212240896],[116,-23,65,0.15010041612914216],[116,-23,66,0.14756858463971356],[116,-23,67,0.14510436004181126],[116,-23,68,0.1427092648607332],[116,-23,69,0.14038470593240082],[116,-23,70,0.13813196941092198],[116,-23,71,0.13595221571245375],[116,-23,72,0.1338464743953537],[116,-23,73,0.13181563897668036],[116,-23,74,0.1298604616848693],[116,-23,75,0.1279815481488279],[116,-23,76,0.1261793520232528],[116,-23,77,0.12445416955026789],[116,-23,78,0.12280613405734131],[116,-23,79,0.12123521039150154],[116,-22,64,0.15816502108301256],[116,-22,65,0.1555994709869436],[116,-22,66,0.15309860984788415],[116,-22,67,0.15066407615638167],[116,-22,68,0.1482973988951829],[116,-22,69,0.1459999926303378],[116,-22,70,0.14377315253852918],[116,-22,71,0.14161804937069578],[116,-22,72,0.13953572435193484],[116,-22,73,0.1375270840177515],[116,-22,74,0.1355928949864753],[116,-22,75,0.13373377866809],[116,-22,76,0.1319502059092792],[116,-22,77,0.1302424915747865],[116,-22,78,0.12861078906504964],[116,-22,79,0.1270550847701255],[116,-21,64,0.16356134332836236],[116,-21,65,0.16102824733523868],[116,-21,66,0.1585585506628513],[116,-21,67,0.1561538970126085],[116,-21,68,0.15381582183623022],[116,-21,69,0.15154574744672922],[116,-21,70,0.1493449780656121],[116,-21,71,0.14721469480636828],[116,-21,72,0.14515595059423247],[116,-21,73,0.14316966502228856],[116,-21,74,0.14125661914373555],[116,-21,75,0.13941745020055807],[116,-21,76,0.137652646288411],[116,-21,77,0.13596254095781024],[116,-21,78,0.13434730775159243],[116,-21,79,0.13280695467865888],[116,-20,64,0.16888643781542334],[116,-20,65,0.16638598088302592],[116,-20,66,0.16394762912710326],[116,-20,67,0.1615730314646966],[116,-20,68,0.15926372982599724],[116,-20,69,0.1570211542853026],[116,-20,70,0.15484661812818512],[116,-20,71,0.15274131285494574],[116,-20,72,0.15070630312033617],[116,-20,73,0.14874252160961332],[116,-20,74,0.1468507638507558],[116,-20,75,0.145031682963075],[116,-20,76,0.14328578434203865],[116,-20,77,0.14161342028039214],[116,-20,78,0.14001478452554483],[116,-20,79,0.13848990677323636],[116,-19,64,0.174139814433102],[116,-19,65,0.17167216765800253],[116,-19,66,0.16926532787190107],[116,-19,67,0.16692094921077294],[116,-19,68,0.16464058009084548],[116,-19,69,0.16242565835961564],[116,-19,70,0.16027750638307925],[116,-19,71,0.1581973260692383],[116,-19,72,0.15618619382787113],[116,-19,73,0.15424505546663203],[116,-19,74,0.15237472102330585],[116,-19,75,0.15057585953445507],[116,-19,76,0.1488489937402705],[116,-19,77,0.14719449472571833],[116,-19,78,0.1456125764979458],[116,-19,79,0.14410329049996173],[116,-18,64,0.1793212531184154],[116,-18,65,0.17688657404935548],[116,-18,66,0.17451140018722733],[116,-18,67,0.17219739088885344],[116,-18,68,0.16994610106222385],[116,-18,69,0.16775897633765924],[116,-18,70,0.16563734817518105],[116,-18,71,0.163582428908153],[116,-18,72,0.16159530672318534],[116,-18,73,0.15967694057635884],[116,-18,74,0.15782815504560455],[116,-18,75,0.15604963511946734],[116,-18,76,0.15434192092207044],[116,-18,77,0.1527054023743718],[116,-18,78,0.15114031379167447],[116,-18,79,0.14964672841740634],[116,-17,64,0.18443081399511074],[116,-17,65,0.1820292469751439],[116,-17,66,0.17968588021676712],[116,-17,67,0.17740237829826178],[116,-17,68,0.1751803026233767],[116,-17,69,0.17302110661270886],[116,-17,70,0.17092613083128771],[116,-17,71,0.16889659805242907],[116,-17,72,0.1669336082578442],[116,-17,73,0.1650381335740675],[116,-17,74,0.16321101314503395],[116,-17,75,0.16145294794103726],[116,-17,76,0.15976449550388427],[116,-17,77,0.15814606462833758],[116,-17,78,0.1565979099798076],[116,-17,79,0.15512012664831087],[116,-16,64,0.1894688476365879],[116,-16,65,0.187100524174441],[116,-16,66,0.18478909327808946],[116,-16,67,0.1825362247466774],[116,-16,68,0.18034348648208565],[116,-16,69,0.1782123397005958],[116,-16,70,0.17614413408075724],[116,-16,71,0.17414010284751846],[116,-16,72,0.17220135779261103],[116,-16,73,0.1703288842312468],[116,-16,74,0.16852353589496338],[116,-16,75,0.16678602976084367],[116,-16,76,0.1651169408169314],[116,-16,77,0.163516696763928],[116,-16,78,0.1619855726531373],[116,-16,79,0.16052368546067142],[116,-15,64,0.19443600545320816],[116,-15,65,0.19210104462432476],[116,-15,66,0.1898216663081207],[116,-15,67,0.1875995455228966],[116,-15,68,0.18543625666953134],[116,-15,69,0.18333326876349176],[116,-15,70,0.18129194060304088],[116,-15,71,0.17931351587370692],[116,-15,72,0.1773991181890031],[116,-15,73,0.17554974606745477],[116,-15,74,0.1737662678457743],[116,-15,75,0.172049416528405],[116,-15,76,0.17039978457325766],[116,-15,77,0.16881781861372547],[116,-15,78,0.16730381411694328],[116,-15,79,0.16585790997830585],[116,-14,64,0.19933325020377568],[116,-14,65,0.19703175908149817],[116,-14,66,0.19478453843368893],[116,-14,67,0.19259326849508818],[116,-14,68,0.19045953016505657],[116,-14,69,0.18838480025998028],[116,-14,70,0.18637044670187486],[116,-14,71,0.1844177236432456],[116,-14,72,0.1825277665281957],[116,-14,73,0.18070158708983852],[116,-14,74,0.17894006828385645],[116,-14,75,0.17724395915842261],[116,-14,76,0.17561386966031511],[116,-14,77,0.17405026537730528],[116,-14,78,0.17255346221678702],[116,-14,79,0.17112362102066292],[116,-13,64,0.20416186663128277],[116,-13,65,0.20189394074863465],[116,-13,66,0.19967897166723236],[116,-13,67,0.19751864483463932],[116,-13,68,0.19541454764692479],[116,-13,69,0.1933681647215132],[116,-13,70,0.19138087310622887],[116,-13,71,0.18945393742459438],[116,-13,72,0.18758850495737533],[116,-13,73,0.18578560066042527],[116,-13,74,0.184046122118675],[116,-13,75,0.18237083443648272],[116,-13,76,0.18076036506417248],[116,-13,77,0.1792151985608451],[116,-13,78,0.17773567129342838],[116,-13,79,0.17632196607197925],[116,-12,64,0.20892347222307117],[116,-12,65,0.20668919606559744],[116,-12,66,0.204506561727828],[116,-12,67,0.20237725986574295],[116,-12,68,0.20030288436922805],[116,-12,69,0.19828492765540606],[116,-12,70,0.19632477589816388],[116,-12,71,0.19442370419392974],[116,-12,72,0.19258287166369537],[116,-12,73,0.19080331649133497],[116,-12,74,0.18908595089806746],[116,-12,75,0.18743155605327533],[116,-12,76,0.18584077692151146],[116,-12,77,0.1843141170457756],[116,-12,78,0.18285193326702587],[116,-12,79,0.18145443037994236],[116,-11,64,0.21362002809513125],[116,-11,65,0.21141947562525643],[116,-11,66,0.20926924898725463],[116,-11,67,0.20717104404044628],[116,-11,68,0.20512646116466104],[116,-11,69,0.20313700057408768],[116,-11,70,0.2012040575673164],[116,-11,71,0.19932891771363193],[116,-11,72,0.19751275197554663],[116,-11,73,0.19575661176762937],[116,-11,74,0.19406142395147608],[116,-11,75,0.19242798576703546],[116,-11,76,0.19085695970011918],[116,-11,77,0.18934886828617936],[116,-11,78,0.18790408885032128],[116,-11,79,0.1865228481835648],[116,-10,64,0.2182538500007608],[116,-10,65,0.21608708521412467],[116,-10,66,0.21396932954132097],[116,-10,67,0.21190228403938516],[116,-10,68,0.20988755557338779],[116,-10,69,0.20792665215083095],[116,-10,70,0.2060209781922362],[116,-10,71,0.20417182973798131],[116,-10,72,0.20238038959137505],[116,-10,73,0.20064772239802597],[116,-10,74,0.19897476966135252],[116,-10,75,0.19736234469444447],[116,-10,76,0.19581112750810759],[116,-10,77,0.19432165963517523],[116,-10,78,0.192894338891052],[116,-10,79,0.1915294140705046],[116,-9,64,0.2228276194634321],[116,-9,65,0.22069469697766197],[116,-9,66,0.2186094664062993],[116,-9,67,0.2165736339980503],[116,-9,68,0.21458881309784616],[116,-9,69,0.21265651950181164],[116,-9,70,0.21077816674842098],[116,-9,71,0.20895506134590358],[116,-9,72,0.20718839793588528],[116,-9,73,0.2054792543933216],[116,-9,74,0.2038285868625731],[116,-9,75,0.20223722472982664],[116,-9,76,0.20070586553170267],[116,-9,77,0.19923506980012462],[116,-9,78,0.19782525584342114],[116,-9,79,0.19647669446367233],[116,-8,64,0.22734439503405868],[116,-8,65,0.22524536071043755],[116,-8,66,0.22319270084066256],[116,-8,67,0.22118812685877953],[116,-8,68,0.21923325858368636],[116,-8,69,0.21732961959468855],[116,-8,70,0.2154786325432465],[116,-8,71,0.2136816144009671],[116,-8,72,0.21193977164383404],[116,-8,73,0.2102541953727236],[116,-8,74,0.20862585637006603],[116,-8,75,0.2070556000928485],[116,-8,76,0.20554414160180512],[116,-8,77,0.20409206042686545],[116,-8,78,0.20269979536883675],[116,-8,79,0.20136763923732726],[116,-7,64,0.23180762367243468],[116,-7,65,0.2297425152709247],[116,-7,66,0.22772246379189243],[116,-7,67,0.2257491858482471],[116,-7,68,0.22382430772660977],[116,-7,69,0.22194936078347383],[116,-7,70,0.22012577677755618],[116,-7,71,0.21835488313839357],[116,-7,72,0.21663789817117318],[116,-7,73,0.2149759261978509],[116,-7,74,0.21336995263441239],[116,-7,75,0.21182083900447612],[116,-7,76,0.21032931788908027],[116,-7,77,0.20889598781272956],[116,-7,78,0.2075213080656726],[116,-7,79,0.20620559346242162],[116,-6,64,0.23622115225294993],[116,-6,65,0.23419000012103053],[116,-6,66,0.23220258746846667],[116,-6,67,0.23026063608055203],[116,-6,68,0.2283657787052159],[116,-6,69,0.22651955446979855],[116,-6,70,0.22472340423401993],[116,-6,71,0.22297866587918924],[116,-6,72,0.22128656953365067],[116,-6,73,0.21964823273451406],[116,-6,74,0.21806465552552978],[116,-6,75,0.2165367154913026],[116,-6,76,0.21506516272768927],[116,-6,77,0.2136506147484558],[116,-6,78,0.2122935513281644],[116,-6,79,0.21099430928130125],[116,-5,64,0.24058923919470465],[116,-5,65,0.2385920669904854],[116,-5,66,0.2366373170371454],[116,-5,67,0.2347267162860336],[116,-5,68,0.23286190393998152],[116,-5,69,0.23104442689070248],[116,-5,70,0.22927573509238564],[116,-5,71,0.22755717687152766],[116,-5,72,0.22588999417300015],[116,-5,73,0.22427531774240517],[116,-5,74,0.22271416224456853],[116,-5,75,0.22120742131837623],[116,-5,76,0.21975586256779112],[116,-5,77,0.21836012248913084],[116,-5,78,0.21702070133457219],[116,-5,79,0.21573795791189831],[116,-4,64,0.24491656621577867],[116,-4,65,0.24295339166584407],[116,-4,66,0.24103132244531278],[116,-4,67,0.2391520906655642],[116,-4,68,0.23731734197812326],[116,-4,69,0.23552863103269361],[116,-4,70,0.2337874168713745],[116,-4,71,0.23209505825912535],[116,-4,72,0.23045280895046238],[116,-4,73,0.228861812892437],[116,-4,74,0.22732309936376105],[116,-4,75,0.22583757805026827],[116,-4,76,0.22440603405655657],[116,-4,77,0.22302912285389387],[116,-4,78,0.22170736516434586],[116,-4,79,0.2204411417811497],[116,-3,64,0.24920825021179627],[116,-3,65,0.24727908590424463],[116,-3,66,0.2453897103685163],[116,-3,67,0.2435418608704618],[116,-3,68,0.24173718950448897],[116,-3,69,0.2399772586722233],[116,-3,70,0.23826353649736065],[116,-3,71,0.2365973921767628],[116,-3,72,0.23498009126778396],[116,-3,73,0.2334127909118826],[116,-3,74,0.231896534994376],[116,-3,75,0.2304322492405313],[116,-3,76,0.22902073624784192],[116,-3,77,0.22766267045455768],[116,-3,78,0.2263585930444466],[116,-3,79,0.22510890678779538],[116,-2,64,0.2534698552588725],[116,-2,65,0.2515747094720064],[116,-2,66,0.24971803628328754],[116,-2,67,0.24790157810811425],[116,-2,68,0.24612699347856037],[116,-2,69,0.24439585254266794],[116,-2,70,0.2427096324999325],[116,-2,71,0.2410697129730328],[116,-2,72,0.2394773713157885],[116,-2,73,0.23793377785740544],[116,-2,74,0.2364399910828643],[116,-2,75,0.23499695274964105],[116,-2,76,0.23360548294061645],[116,-2,77,0.2322662750532386],[116,-2,78,0.23097989072491565],[116,-2,79,0.22974675469464834],[116,-1,64,0.2577074047407307],[116,-1,65,0.2558462823078602],[116,-1,66,0.2540223166650361],[116,-1,67,0.2522372553730919],[116,-1,68,0.25049276339735943],[116,-1,69,0.24879041862759704],[116,-1,70,0.24713170733410916],[116,-1,71,0.24551801956010433],[116,-1,72,0.24395064445029246],[116,-1,73,0.24243076551575748],[116,-1,74,0.24095945583497969],[116,-1,75,0.23953767319119235],[116,-1,76,0.23816625514591827],[116,-1,77,0.2368459140487683],[116,-1,78,0.23557723198346558],[116,-1,79,0.234360655650109],[116,0,64,0.26192739360010303],[116,0,65,0.2601002968109155],[116,0,66,0.2583090413111258],[116,0,67,0.25655537980387216],[116,0,68,0.25484098368436514],[116,0,69,0.25316743858044377],[116,0,70,0.2515362398293282],[116,0,71,0.2499487878906126],[116,0,72,0.24840638369548973],[116,0,73,0.24691022393225992],[116,0,74,0.24546139626798524],[116,0,75,0.24406087450647418],[116,0,76,0.2427095136824563],[116,0,77,0.24140804509200764],[116,0,78,0.2401570712592096],[116,0,79,0.2389570608390429],[116,1,64,0.2661368007145148],[116,1,65,0.2643437302534819],[116,1,66,0.262585185789238],[116,1,67,0.26086292516527554],[116,1,68,0.259178626204553],[116,1,69,0.2575338822706848],[116,1,70,0.25593019776532394],[116,1,71,0.2543689835617861],[116,1,72,0.2528515523749086],[116,1,73,0.25137911406718594],[116,1,74,0.24995277089105894],[116,1,75,0.24857351266753092],[116,1,76,0.24724221190097095],[116,1,77,0.2459596188301737],[116,1,78,0.24472635641564722],[116,1,79,0.2435429152631391],[116,2,64,0.2703426481055834],[116,2,65,0.2685836047049897],[116,2,66,0.26685777210856254],[116,2,67,0.2651669132989518],[116,2,68,0.26351271252559133],[116,2,69,0.2618967708865184],[116,2,70,0.26032060184638955],[116,2,71,0.2587856266907353],[116,2,72,0.2572931699164506],[116,2,73,0.2558444545585627],[116,2,74,0.25444059745315106],[116,2,75,0.2530826044365959],[116,2,76,0.251771365481013],[116,2,77,0.2505076497659443],[116,2,78,0.2492921006862785],[116,2,79,0.24812523079640947],[116,3,64,0.2745455411910485],[116,3,65,0.27282053641660686],[116,3,66,0.2711274277270005],[116,3,67,0.2694679832346488],[116,3,68,0.2678438936057933],[116,3,69,0.2662567676629568],[116,3,70,0.2647081279235975],[116,3,71,0.26319940607500614],[116,3,72,0.26173193838543507],[116,3,73,0.2603069610515071],[116,3,74,0.258925605481778],[116,3,75,0.2575888935166246],[116,3,76,0.2562977325843211],[116,3,77,0.255052910793373],[116,3,78,0.253855091961078],[116,3,79,0.25270481057832817],[116,4,64,0.2787409209515923],[116,4,65,0.27704998410833004],[116,4,66,0.27538962987833876],[116,4,67,0.2737616314794165],[116,4,68,0.27216768596947744],[116,4,69,0.2706094098696697],[116,4,70,0.26908833472369154],[116,4,71,0.2676059025933497],[116,4,72,0.2661634614903528],[116,4,73,0.26476226074438275],[116,4,74,0.2634034463073236],[116,4,75,0.26208805599381335],[116,4,76,0.26081701465798984],[116,4,77,0.25959112930648964],[116,4,78,0.25841108414767944],[116,4,79,0.25727743557712623],[116,5,64,0.2829241202472021],[116,5,65,0.2812672970512555],[116,5,66,0.27963974504394445],[116,5,67,0.27804324250918105],[116,5,68,0.27647949285604656],[116,5,69,0.2749501202626018],[116,5,70,0.2734566652558977],[116,5,71,0.27200058022823026],[116,5,72,0.2705832248896327],[116,5,73,0.26920586165664634],[116,5,74,0.2678696509772527],[116,5,75,0.26657564659213],[116,5,76,0.26532479073210447],[116,5,77,0.26411790925185835],[116,5,78,0.2629557066998709],[116,5,79,0.26183876132460204],[116,6,64,0.2870905034015295],[116,6,65,0.2854678544818207],[116,6,66,0.2838731681854506],[116,6,67,0.28230822780861947],[116,6,68,0.2807747430559936],[116,6,69,0.2792743457052498],[116,6,70,0.2778085852078258],[116,6,71,0.2763789242259171],[116,6,72,0.27498673410571484],[116,6,73,0.27363329028692523],[116,6,74,0.2723197676484557],[116,6,75,0.27104723579042656],[116,6,76,0.26981665425238105],[116,6,77,0.2686288676677572],[116,6,78,0.2674846008545946],[116,6,79,0.26638445384248793],[116,7,64,0.29123546904060793],[116,7,65,0.28964706848328736],[116,7,66,0.28808532566780787],[116,7,67,0.2865520288345882],[116,7,68,0.28504889391351446],[116,7,69,0.2835775602092731],[116,7,70,0.28213958602289396],[116,7,71,0.28073644420954624],[116,7,72,0.27936951767258006],[116,7,73,0.27804009479385533],[116,7,74,0.27674936480024204],[116,7,75,0.27549841306645134],[116,7,76,0.27428821635407064],[116,7,77,0.2731196379868654],[116,7,78,0.2719934229623212],[116,7,79,0.2709101929994377],[116,8,64,0.29535445287842166],[116,8,65,0.2938003868136127],[116,8,66,0.2922716781282839],[116,8,67,0.2907701199250738],[116,8,68,0.2892974342742379],[116,8,69,0.28785526791983096],[116,8,70,0.28644518792210744],[116,8,71,0.28506867723618157],[116,8,72,0.2837271302269419],[116,8,73,0.2824218481202581],[116,8,74,0.2811540343903696],[116,8,75,0.2799247900836094],[116,8,76,0.27873510907834187],[116,8,77,0.2775858732811728],[116,8,78,0.2764778477594079],[116,8,79,0.27541167580977055],[116,9,64,0.29944293044943254],[116,9,65,0.2979232956798222],[116,9,66,0.29642772329152167],[116,9,67,0.2949580111537791],[116,9,68,0.2935158873781819],[116,9,69,0.29210300604575806],[116,9,70,0.2907209428703047],[116,9,71,0.2893711907979896],[116,9,72,0.288055155543213],[116,9,73,0.28677415106077386],[116,9,74,0.28552939495422763],[116,9,75,0.284322003820589],[116,9,76,0.2831529885312578],[116,9,77,0.2820232494492284],[116,9,78,0.280933571582556],[116,9,79,0.27988461967409334],[116,10,64,0.30349641978817077],[116,10,65,0.302011322458985],[116,10,66,0.30054899873075996],[116,10,67,0.2991112511304486],[116,10,68,0.2976998136980466],[116,10,69,0.2963163477346871],[116,10,70,0.29496243748698087],[116,10,71,0.2936395857676366],[116,10,72,0.2923492095123593],[116,10,73,0.29109263527306145],[116,10,74,0.2898710946472828],[116,10,75,0.2886857196439641],[116,10,76,0.28753753798545933],[116,10,77,0.28642746834584176],[116,10,78,0.285356315525483],[116,10,79,0.2843247655619122],[116,11,64,0.3075104840556763],[116,11,65,0.30606003836558315],[116,11,66,0.3046310845750049],[116,11,67,0.30322542974671957],[116,11,68,0.3018448137226225],[116,11,69,0.3004909048929004],[116,11,70,0.2991652959014653],[116,11,71,0.2978694992876868],[116,11,72,0.29660494306441604],[116,11,73,0.2953729662323409],[116,11,74,0.29417481423056346],[116,11,75,0.2930116343235489],[116,11,76,0.29188447092432745],[116,11,77,0.2907942608540083],[116,11,78,0.2897418285375791],[116,11,79,0.28872788113600534],[116,12,64,0.3114807341129017],[116,12,65,0.3100650610653792],[116,12,66,0.30866960616225897],[116,12,67,0.30729618086760657],[116,12,68,0.30594653068543004],[116,12,69,0.30462233095001967],[116,12,70,0.30332518255256924],[116,12,71,0.302056607604114],[116,12,72,0.30081804503478193],[116,12,73,0.29961084612939165],[116,12,74,0.2984362699992966],[116,12,75,0.29729547899061615],[116,12,76,0.29618953402874215],[116,12,77,0.2951193898991745],[116,12,78,0.2940858904646642],[116,12,79,0.2930897638186723],[116,13,64,0.3154028310411736],[116,13,65,0.3140220572358867],[116,13,66,0.312660236638911],[116,13,67,0.31131918496872546],[116,13,68,0.31000065323868914],[116,13,69,0.308706323568641],[116,13,70,0.30743780493280454],[116,13,71,0.3061966288440343],[116,13,72,0.3049842449743954],[116,13,73,0.3038020167121156],[116,13,74,0.30265121665480593],[116,13,75,0.30153302203909205],[116,13,76,0.3004485101065431],[116,13,77,0.29939865340595373],[116,13,78,0.29838431503195584],[116,13,79,0.29740624379997177],[116,14,64,0.3192724886094986],[116,14,65,0.3179267450732231],[116,14,66,0.3165986995050678],[116,14,67,0.3152901717190321],[116,14,68,0.3140029180723983],[116,14,69,0.31273862729868784],[116,14,70,0.3114989162769521],[116,14,71,0.3102853257374295],[116,14,72,0.309099315903566],[116,14,73,0.3079422620704319],[116,14,74,0.30681545011943895],[116,14,75,0.3057200719694909],[116,14,76,0.3046572209644622],[116,14,77,0.30362788719705447],[116,14,78,0.30263295276901325],[116,14,79,0.3016731869877097],[116,15,64,0.323085475688894],[116,15,65,0.3217748967455305],[116,15,66,0.3204807711060106],[116,15,67,0.3192049225092639],[116,15,68,0.31794911247871016],[116,15,69,0.3167150361766743],[116,15,70,0.3155043181951651],[116,15,71,0.31431850828305496],[116,15,72,0.31315907700965157],[116,15,73,0.3120274113647006],[116,15,74,0.31092481029471775],[116,15,75,0.30985248017578776],[116,15,76,0.3088115302227213],[116,15,77,0.3078029678346237],[116,15,78,0.3068276938768532],[116,15,79,0.3058864978993776],[116,16,64,0.32683761861361266],[116,16,65,0.3255623407928283],[116,16,66,0.32430228306964287],[116,16,67,0.3230592729259473],[116,16,68,0.3218350768614672],[116,16,69,0.32063139626973614],[116,16,70,0.31944986325047214],[116,16,71,0.3182920363583897],[116,16,72,0.31715939628844253],[116,16,73,0.3160533414975295],[116,16,74,0.3149751837625709],[116,16,75,0.3139261436750835],[116,16,76,0.3129073460721534],[116,16,77,0.3119198154038549],[116,16,78,0.310964471037095],[116,16,79,0.3100421224958939],[116,17,64,0.3305248034894323],[116,17,65,0.3292849644734741],[116,17,66,0.32805912469010384],[116,17,67,0.32684911517114973],[116,17,68,0.3256567071910746],[116,17,69,0.3244836081646139],[116,17,70,0.3233314574808585],[116,17,71,0.3222018222738148],[116,17,72,0.32109619312943494],[116,17,73,0.32001597972915335],[116,17,74,0.3189625064298328],[116,17,75,0.31793700778025297],[116,17,76,0.3169406239740349],[116,17,77,0.3159743962390545],[116,17,78,0.31503926216332256],[116,17,79,0.31413605095734193],[116,18,64,0.3341429784488052],[116,18,65,0.3329387160570227],[116,18,66,0.3317472452573407],[116,18,67,0.3305704004277631],[116,18,68,0.3294099574044989],[116,18,69,0.3282676294013702],[116,18,70,0.3271450628657126],[116,18,71,0.32604383327079783],[116,18,72,0.324965440844775],[116,18,73,0.3239113062361605],[116,18,74,0.32288276611578937],[116,18,75,0.3218810687153497],[116,18,76,0.3209073693024032],[116,18,77,0.3199627255919384],[116,18,78,0.319048093094439],[116,18,79,0.31816432040047365],[116,19,64,0.3376881558529682],[116,19,65,0.3365196070635887],[116,19,66,0.3353626563327393],[116,19,67,0.3342191411704235],[116,19,68,0.33309084175049625],[116,19,69,0.33197947685194945],[116,19,70,0.3308866997367403],[116,19,71,0.329814093964195],[116,19,72,0.3287631691419806],[116,19,73,0.3277353566136798],[116,19,74,0.3267320050828767],[116,19,75,0.3257543761738781],[116,19,76,0.32480363992897177],[116,19,77,0.32388087024227086],[116,19,78,0.3229870402301229],[116,19,79,0.32212301753809314],[116,20,64,0.3411564144411036],[116,20,65,0.34002371444979834],[116,20,66,0.33890143397090616],[116,20,67,0.3377914134221584],[116,20,68,0.33669543708016264],[116,20,69,0.33561522904366986],[116,20,70,0.33455244913344356],[116,20,71,0.33350868872876027],[116,20,72,0.3324854665405378],[116,20,73,0.3314842243211196],[116,20,74,0.330506322510632],[116,20,75,0.3295530358200296],[116,20,76,0.32862554875073907],[116,20,77,0.32772495105094285],[116,20,78,0.3268522331084865],[116,20,79,0.32600828128041676],[116,21,64,0.3445439014263633],[116,21,65,0.3434471827411471],[116,21,66,0.3423597208874114],[116,21,67,0.34128335895657114],[116,21,68,0.3402198850826142],[116,21,69,0.33917102842745733],[116,21,70,0.3381384551029659],[116,21,71,0.33712376402967037],[116,21,72,0.33612848273217066],[116,21,73,0.33515406307126144],[116,21,74,0.33420187691269265],[116,21,75,0.33327321173268226],[116,21,76,0.33236926616008833],[116,21,77,0.3314911454552857],[116,21,78,0.33063985692572845],[116,21,79,0.32981630527820727],[116,22,64,0.34784683453885495],[116,22,65,0.3467862261108578],[116,22,66,0.3457337285725934],[116,22,67,0.34469118744566124],[116,22,68,0.3436603944658971],[116,22,69,0.34264308359091866],[116,22,70,0.3416409269444094],[116,22,71,0.3406555306971634],[116,22,72,0.3396884308848913],[116,22,73,0.33874108916281187],[116,22,74,0.33781488849695257],[116,22,75,0.3369111287922673],[116,22,76,0.33603102245748434],[116,22,77,0.3351756899067272],[116,22,78,0.3343461549978919],[116,22,79,0.3335433404077853],[116,23,64,0.35106150401567127],[116,23,65,0.35003713040532586],[116,23,66,0.3490197393515066],[116,23,67,0.3480111785533674],[116,23,68,0.34701324308321385],[116,23,69,0.3460276714163455],[116,23,70,0.34505614139770757],[116,23,71,0.3441002661453827],[116,23,72,0.34316158989091594],[116,23,73,0.3422415837565031],[116,23,74,0.3413416414689616],[116,23,75,0.34046307501059425],[116,23,76,0.339607110206858],[116,23,77,0.33877488225088215],[116,23,78,0.3379674311648157],[116,23,79,0.337185697198014],[116,24,64,0.35418427453779083],[116,24,65,0.3531962551159728],[116,24,66,0.35221410838983835],[116,24,67,0.35123968397465116],[116,24,68,0.35027478000428564],[116,24,69,0.34932113918346147],[116,24,70,0.348380444776873],[116,24,71,0.3474543165352379],[116,24,72,0.3465443065582631],[116,24,73,0.3456518950945524],[116,24,74,0.34477848627838137],[116,24,75,0.34392540380344405],[116,24,76,0.343093886533489],[116,24,77,0.342285084049883],[116,24,78,0.3415000521360886],[116,24,79,0.3407397481990601],[116,25,64,0.35721158711393947],[116,25,65,0.35626003529760353],[116,25,66,0.35531326564588456],[116,25,67,0.35437312942022015],[116,25,68,0.3534414275319443],[116,25,69,0.35251990661701316],[116,25,70,0.35161025504771426],[116,25,71,0.3507140988813844],[116,25,72,0.34983299774613025],[116,25,73,0.3489684406635811],[116,25,74,0.3481218418085959],[116,25,75,0.347294536206031],[116,25,76,0.34648777536448383],[116,25,77,0.34570272284705417],[116,25,78,0.3449404497791058],[116,25,79,0.3442019302930365],[116,26,64,0.36013996091148925],[116,26,65,0.3592249834333411],[116,26,66,0.3583137177686658],[116,26,67,0.35740801654696447],[116,26,68,0.3565096831640348],[116,26,69,0.3556204678792812],[116,26,70,0.35474206385010515],[116,26,71,0.3538761031033978],[116,26,72,0.35302415244413116],[116,26,73,0.3521877093010742],[116,26,74,0.351368197509562],[116,26,75,0.3505669630314159],[116,26,76,0.3497852696119374],[116,26,77,0.3490242943740131],[116,26,78,0.34828512334931605],[116,26,79,0.3475687469466087],[116,27,64,0.36296599503423377],[116,27,65,0.36208769124597884],[116,27,66,0.36121204994201495],[116,27,67,0.36034092483394214],[116,27,68,0.35947612150045827],[116,27,69,0.3586193935073445],[116,27,70,0.3577724384646322],[116,27,71,0.3569368940209751],[116,27,72,0.35611433379522034],[116,27,73,0.3553062632452071],[116,27,74,0.35451411547371986],[116,27,75,0.35373924697169384],[116,27,76,0.3529829332985959],[116,27,77,0.3522463647000193],[116,27,78,0.35153064166247466],[116,27,79,0.3508367704053861],[116,28,64,0.3656863702471267],[116,28,65,0.3648448314558353],[116,28,66,0.36400492767472825],[116,28,67,0.36316851340400325],[116,28,68,0.36233739609544824],[116,28,69,0.3615133322951867],[116,28,70,0.36069802372371484],[116,28,71,0.3598931132932516],[116,28,72,0.3591001810623982],[116,28,73,0.35832074012813103],[116,28,74,0.3575562324550609],[116,28,75,0.3568080246420507],[116,28,76,0.3560774036261194],[116,28,77,0.35536557232366617],[116,28,78,0.3546736452090019],[116,28,79,0.3540026438301926],[116,29,64,0.3682978506480491],[116,29,65,0.3674931594851799],[116,29,66,0.36668909853684484],[116,29,67,0.36588752279112025],[116,29,68,0.36509024125514666],[116,29,69,0.3642990131207162],[116,29,70,0.3635155438672671],[116,29,71,0.3627414813023083],[116,29,72,0.3619784115392683],[116,29,73,0.3612278549127927],[116,29,74,0.3604912618314256],[116,29,75,0.35977000856776464],[116,29,76,0.35906539298601703],[116,29,77,0.3583786302069932],[116,29,78,0.35771084821052224],[116,29,79,0.35706308337529663],[116,30,64,0.37079728528646044],[116,30,65,0.3700295151090822],[116,30,66,0.36926139384190937],[116,30,67,0.36849477665327546],[116,30,68,0.36773147378033066],[116,30,69,0.3669732467175456],[116,30,70,0.3662218043427482],[116,30,71,0.36547879898071123],[116,30,72,0.36474582240428943],[116,30,73,0.36402440177312656],[116,30,74,0.36331599550987126],[116,30,75,0.362621989113988],[116,30,76,0.36194369091309353],[116,30,77,0.3612823277518521],[116,30,78,0.36063904061841856],[116,30,79,0.36001488020843114],[116,31,64,0.3731816097290136],[116,31,65,0.37245082405276586],[116,31,66,0.3717187302752951],[116,31,67,0.37098718343098636],[116,31,68,0.3702579946543701],[116,31,69,0.3695329273916152],[116,31,70,0.36881369354968363],[116,31,71,0.36810194958316805],[116,31,72,0.36739929251880826],[116,31,73,0.36670725591770864],[116,31,74,0.3660273057751959],[116,31,75,0.3653608363584001],[116,31,76,0.3647091659814933],[116,31,77,0.364073532718618],[116,31,78,0.3634550900544917],[116,31,79,0.3628549024726948],[116,32,64,0.37544784757219],[116,32,65,0.37475409953552374],[116,32,66,0.37405811146865015],[116,32,67,0.3733617379515292],[116,32,68,0.3726667906764793],[116,32,69,0.37197503468272053],[116,32,70,0.3712881845287217],[116,32,71,0.37060790040236624],[116,32,72,0.3699357841689364],[116,32,73,0.36927337535693444],[116,32,74,0.36862214708168467],[116,32,75,0.36798350190679424],[116,32,76,0.3673587676434114],[116,32,77,0.36674919308731063],[116,32,78,0.3661559436937924],[116,32,79,0.3655800971904027],[116,33,64,0.3775931119018276],[116,33,65,0.37693644376106583],[116,33,66,0.3762766295203312],[116,33,67,0.3756155229787286],[116,33,68,0.3749549360401257],[116,33,69,0.37429663497080856],[116,33,70,0.3736423365950845],[116,33,71,0.3729937044288515],[116,33,72,0.3723523447511304],[116,33,73,0.3717198026135787],[116,33,74,0.3710975577879333],[116,33,75,0.3704870206514562],[116,33,76,0.369889528010322],[116,33,77,0.3693063388609802],[116,33,78,0.3687386300894756],[116,33,79,0.3681874921087367],[116,34,64,0.3796146066996116],[116,34,65,0.3789950493543707],[116,34,66,0.37837146646190284],[116,34,67,0.37774571070838414],[116,34,68,0.37711959385667126],[116,34,69,0.3764948830271171],[116,34,70,0.3758732969164925],[116,34,71,0.3752565019550247],[116,34,72,0.3746461084015524],[116,34,73,0.37404366637681563],[116,34,74,0.37345066183482967],[116,34,75,0.37286851247241176],[116,34,76,0.37229856357680624],[116,34,77,0.371742083811435],[116,34,78,0.3712002609397621],[116,34,79,0.37067419748727687],[116,35,64,0.38150962819657747],[116,35,65,0.3809272007450917],[116,35,66,0.38033989567074644],[116,35,67,0.3797495642093883],[116,35,68,0.37915801762429696],[116,35,69,0.3785670235102102],[116,35,70,0.37797830203561344],[116,35,71,0.3773935221233098],[116,35,72,0.3768142975692663],[116,35,73,0.3762421830997563],[116,35,74,0.37567867036674707],[116,35,75,0.3751251838816011],[116,35,76,0.3745830768870363],[116,35,77,0.37405362716737445],[116,35,78,0.3735380327970621],[116,35,79,0.37303740782747324],[116,36,64,0.3832755661735153],[116,36,65,0.3827302754974018],[116,36,66,0.38217928322866934],[116,36,67,0.38162443881041586],[116,36,68,0.3810675526420957],[116,36,69,0.38051039240679096],[116,36,70,0.37995467933691607],[116,36,71,0.379402084418372],[116,36,72,0.378854224533146],[116,36,73,0.378312658540375],[116,36,74,0.3777788832958251],[116,36,75,0.37725432960985134],[116,36,76,0.3767403581437877],[116,36,77,0.3762382552447916],[116,36,78,0.37574922871913186],[116,36,79,0.37527440354392577],[116,37,64,0.38490990520833757],[116,37,65,0.38440174558634493],[116,37,66,0.3838870892265763],[116,37,67,0.38336778343225436],[116,37,68,0.3828456373693957],[116,37,69,0.3823224184173575],[116,37,70,0.3817998484579965],[116,37,71,0.3812796001034543],[116,37,72,0.3807632928625641],[116,37,73,0.38025248924589783],[116,37,74,0.37974869080940715],[116,37,75,0.37925333413672113],[116,37,76,0.3787677867600499],[116,37,77,0.37829334301972095],[116,37,78,0.3778312198623345],[116,37,79,0.37738255257754644],[116,38,64,0.3864102258704496],[116,38,65,0.38593917862072985],[116,38,66,0.38546086901524357],[116,38,67,0.38497714186581355],[116,38,68,0.38448980473036],[116,38,69,0.3840006242867456],[116,38,70,0.3835113226454204],[116,38,71,0.383023573600876],[116,38,72,0.38253899882190723],[116,38,73,0.38205916398069667],[116,38,74,0.3815855748206821],[116,38,75,0.38111967316326023],[116,38,76,0.3806628328532847],[116,38,77,0.38021635564337947],[116,38,78,0.37978146701705773],[116,38,79,0.3793593119506517],[116,39,64,0.38777420586202527],[116,39,65,0.38734023901247117],[116,39,66,0.3868982744020978],[116,39,67,0.3864501539957137],[116,39,68,0.3859976833637565],[116,39,69,0.3855426280794535],[116,39,70,0.38508671005497436],[116,39,71,0.3846316038165858],[116,39,72,0.3841789327188068],[116,39,73,0.3837302650975799],[116,39,74,0.3832871103624167],[116,39,75,0.38285091502757407],[116,39,76,0.3824230586822157],[116,39,77,0.3820048498995834],[116,39,78,0.3815975220851652],[116,39,79,0.381202229263868],[116,40,64,0.3889996211062726],[116,40,65,0.3886026890924581],[116,40,66,0.3881970547940815],[116,40,67,0.38778455696953773],[116,40,68,0.387366998817987],[116,40,69,0.3869461443998366],[116,40,70,0.3865237149964169],[116,40,71,0.38610138540886],[116,40,72,0.3856807801961806],[116,40,73,0.38526346985257065],[116,40,74,0.3848509669238738],[116,40,75,0.3844447220632863],[116,40,76,0.38404612002624766],[116,40,77,0.38365647560453997],[116,40,78,0.3832770294995853],[116,40,79,0.3829089441349485],[116,41,64,0.39008434678263193],[116,41,65,0.3897243901728988],[116,41,66,0.3893550582865513],[116,41,67,0.388978186312693],[116,41,68,0.38859557469131806],[116,41,69,0.38820898555711436],[116,41,70,0.3878201391226692],[116,41,71,0.3874307100010874],[116,41,72,0.3870423234680197],[116,41,73,0.3866565516631138],[116,41,74,0.3862749097308542],[116,41,75,0.3858988519008383],[116,41,76,0.3855297675074493],[116,41,77,0.3851689769489475],[116,41,78,0.38481772758596866],[116,41,79,0.3844771895794369],[116,42,64,0.39102635830896837],[116,42,65,0.3907033035561993],[116,42,66,0.39037023269827165],[116,42,67,0.39002897698894307],[116,42,68,0.3896813337173769],[116,42,69,0.38932906267525513],[116,42,70,0.38897388256351406],[116,42,71,0.38861746733870706],[116,42,72,0.38826144249899575],[116,42,73,0.3879073813097795],[116,42,74,0.38755680096893375],[116,42,75,0.3872111587116972],[116,42,76,0.38687184785517603],[116,42,77,0.3865401937824814],[116,42,78,0.38621744986649353],[116,42,79,0.38590479333325367],[116,43,64,0.39182373227068834],[116,43,65,0.39153749149030703],[116,43,66,0.3912406265524284],[116,43,67,0.39093496440653686],[116,43,68,0.390622298795837],[116,43,69,0.390304386747661],[116,43,70,0.3899829450037216],[116,43,71,0.3896596463902189],[116,43,72,0.38933611612780006],[116,43,73,0.38901392808138235],[116,43,74,0.38869460094981],[116,43,75,0.3883795943953856],[116,43,76,0.3880703051132419],[116,43,77,0.3877680628405749],[116,43,78,0.38747412630572486],[116,43,79,0.3871896791171135],[116,44,64,0.39247464729682124],[116,44,65,0.3922251180705586],[116,44,66,0.3919643900037078],[116,44,67,0.3916942853699772],[116,44,68,0.3914165939683385],[116,44,69,0.3911330696366976],[116,44,70,0.3908454267056488],[116,44,71,0.3905553363923138],[116,44,72,0.390264423134268],[116,44,73,0.3899742608635608],[116,44,74,0.3896863692208071],[116,44,75,0.38940220970938216],[116,44,76,0.3891231817896934],[116,44,77,0.3888506189135442],[116,44,78,0.3885857844985801],[116,44,79,0.3883298678428248],[116,45,64,0.3929773848830776],[116,45,65,0.3927644500880475],[116,45,66,0.3925397757114516],[116,45,67,0.3923051789774453],[116,45,68,0.39206244533965623],[116,45,69,0.3918133250180848],[116,45,70,0.3915595294763298],[116,45,71,0.39130272783914144],[116,45,72,0.3910445432503016],[116,45,73,0.3907865491708391],[116,45,74,0.3905302656175591],[116,45,75,0.39027715534191576],[116,45,76,0.390028619949204],[116,45,77,0.38978599595808283],[116,45,78,0.38955055080042533],[116,45,79,0.3893234787614969],[116,46,64,0.3933303301618428],[116,46,65,0.39315385782446566],[116,46,66,0.3929651396588465],[116,46,67,0.3927659874638316],[116,46,68,0.39255818194407],[116,46,69,0.3923434692700987],[116,46,70,0.39212355757900463],[116,46,71,0.39190011341566044],[116,46,72,0.3916747581145392],[116,46,73,0.3914490641221129],[116,46,74,0.39122455125981404],[116,46,75,0.39100268292759105],[116,46,76,0.3907848622480302],[116,46,77,0.3905724281510612],[116,46,78,0.39036665139923593],[116,46,79,0.39016873055358764],[116,47,64,0.39353197261913586],[116,47,65,0.39339181579345195],[116,47,66,0.3932389419181771],[116,47,67,0.393075156989408],[116,47,68,0.39290223655696677],[116,47,69,0.39272192230761904],[116,47,70,0.39253591858912207],[116,47,71,0.39234588887510924],[116,47,72,0.39215345217080766],[116,47,73,0.391960179359598],[116,47,74,0.3917675894903966],[116,47,75,0.39157714600588517],[116,47,76,0.39139025291156887],[116,47,77,0.39120825088567146],[116,47,78,0.3910324133298649],[116,47,79,0.3908639423608339],[116,48,64,0.393580906758534],[116,48,65,0.39347690342844666],[116,48,66,0.3933597473621444],[116,48,67,0.3932312383741421],[116,48,68,0.39309314645168364],[116,48,69,0.3929472083610257],[116,48,70,0.39279512419482127],[116,48,71,0.392638553860602],[116,48,72,0.39247911351036247],[116,48,73,0.3923183719112485],[116,48,74,0.39215784675733717],[116,48,75,0.39199900092252726],[116,48,76,0.3918432386545243],[116,48,77,0.3916919017099301],[116,48,78,0.39154626543042903],[116,48,79,0.39140753476007806],[116,49,64,0.3934758327120433],[116,49,65,0.39340780571703304],[116,49,66,0.39332622632122893],[116,49,67,0.39323288777763243],[116,49,68,0.3931295541015592],[116,49,69,0.3930179566999179],[116,49,70,0.392899790941863],[116,49,71,0.39277671267082004],[116,49,72,0.39265033465788707],[116,49,73,0.392522222996611],[116,49,74,0.3923938934391339],[116,49,75,0.39226680767371913],[116,49,76,0.3921423695436487],[116,49,77,0.392021921207496],[116,49,78,0.3919067392407722],[116,49,79,0.39179803067894703],[116,50,64,0.3932155567979354],[116,50,65,0.39318331378178417],[116,50,66,0.39313715518711884],[116,50,67,0.39307886732468267],[116,50,68,0.3930102078272224],[116,50,69,0.3929329023016789],[116,50,70,0.39284864092303606],[116,50,71,0.39275907496982304],[116,50,72,0.3926658133012729],[116,50,73,0.3925704187761411],[116,50,74,0.39247440461317196],[116,50,75,0.39237923069323033],[116,50,76,0.39228629980308205],[116,50,77,0.3921969538208354],[116,50,78,0.3921124698430348],[116,50,79,0.3920340562534133],[116,51,64,0.3927989920255369],[116,51,65,0.39280232540760635],[116,51,66,0.39279141696219116],[116,51,67,0.3927680456765076],[116,51,68,0.39273396238910474],[116,51,69,0.3926908864648785],[116,51,70,0.3926405024120305],[116,51,71,0.39258445644097295],[116,51,72,0.39252435296517857],[116,51,73,0.3924617510439781],[116,51,74,0.3923981607673003],[116,51,75,0.3923350395823605],[116,51,76,0.3922737885622932],[116,51,77,0.39221574861673175],[116,51,78,0.3921621966443315],[116,51,79,0.3921143416272409],[116,52,64,0.3922251585469784],[116,52,65,0.3922638455155789],[116,52,66,0.3922880017550498],[116,52,67,0.39229939854756973],[116,52,68,0.39229977952517825],[116,52,69,0.39229085736750957],[116,52,70,0.3922743104417716],[116,52,71,0.3922517793849666],[116,52,72,0.39222486362835585],[116,52,73,0.39219511786416794],[116,52,74,0.3921640484545489],[116,52,75,0.3921331097827576],[116,52,76,0.39210370054660265],[116,52,77,0.39207715999412385],[116,52,78,0.3920547641015155],[116,52,79,0.3920377216932951],[116,53,64,0.39149318405590827],[116,53,65,0.3915669865833017],[116,53,66,0.3916260072221277],[116,53,67,0.39167200916805806],[116,53,68,0.3917067284339262],[116,53,69,0.3917318705700702],[116,53,70,0.3917491073272294],[116,53,71,0.3917600732619867],[116,53,72,0.39176636228476097],[116,53,73,0.3917695241503475],[116,53,74,0.391771060891008],[116,53,75,0.391772423192109],[116,53,76,0.39177500671030774],[116,53,77,0.39178014833428965],[116,53,78,0.3917891223880514],[116,53,79,0.39180313677673484],[116,54,64,0.39060230413314784],[116,54,65,0.3907109690117245],[116,54,66,0.39080463895533096],[116,54,67,0.39088506869198414],[116,54,68,0.3909539862025288],[116,54,69,0.39101308946347185],[116,54,70,0.39106404313268295],[116,54,71,0.39110847517795533],[116,54,72,0.39114797344842916],[116,54,73,0.39118408218887646],[116,54,74,0.39121829849684897],[116,54,75,0.39125206872268814],[116,54,76,0.3912867848123947],[116,54,77,0.39132378059336437],[116,54,78,0.3913643280029815],[116,54,79,0.39140963326007827],[116,55,64,0.3895518625393173],[116,55,65,0.3896951214384875],[116,55,66,0.38982321081575166],[116,55,67,0.389937876550922],[116,55,68,0.390040838180284],[116,55,69,0.3901337856617931],[116,55,70,0.39021837608345794],[116,55,71,0.39029623031490573],[116,55,72,0.3903689296021313],[116,55,73,0.39043801210542717],[116,55,74,0.3905049693805004],[116,55,75,0.3905712428027699],[116,55,76,0.39063821993484615],[116,55,77,0.39070723083719716],[116,55,78,0.3907795443219939],[116,55,79,0.39085636415014235],[116,56,64,0.38834131145442796],[116,56,65,0.3885188809977678],[116,56,66,0.3886811452134449],[116,56,67,0.3888298407533893],[116,56,68,0.38896667829726317],[116,56,69,0.3890933393398797],[116,56,70,0.3892114729221392],[116,56,71,0.38932269230547506],[116,56,72,0.3894285715898131],[116,56,73,0.3895306422750391],[116,56,74,0.3896303897659842],[116,56,75,0.3897292498209175],[116,56,76,0.3898286049435502],[116,56,77,0.38992978071855566],[116,56,78,0.39003404209059633],[116,56,79,0.39014258958686765],[116,57,64,0.3869702116644024],[116,57,65,0.3871817935265963],[116,57,66,0.3873779733332351],[116,57,67,0.38756047812983463],[116,57,68,0.38773100932816795],[116,57,69,0.387891239515758],[116,57,70,0.38804280920922596],[116,57,71,0.3881873235514856],[116,57,72,0.3883263489527874],[116,57,73,0.38846140967560533],[116,57,74,0.38859398436338255],[116,57,75,0.3887255025131143],[116,57,76,0.3888573408917845],[116,57,77,0.3889908198966506],[116,57,78,0.38912719985937383],[116,57,79,0.38926767729400175],[116,58,64,0.3854382326945778],[116,58,65,0.3856835137176978],[116,58,66,0.38591333530660354],[116,58,67,0.3861294145232807],[116,58,68,0.38633344310143547],[116,58,69,0.3865270842779061],[116,58,70,0.3867119695682727],[116,58,71,0.38688969548665764],[116,58,72,0.38706182020971924],[116,58,73,0.3872298601848324],[116,58,74,0.38739528668247136],[116,58,75,0.38755952229277507],[116,58,76,0.3877239373663075],[116,58,77,0.3878898463990127],[116,58,78,0.38805850436135736],[116,58,79,0.38823110297167107],[116,59,64,0.3837451528901762],[116,59,65,0.3840238052188364],[116,59,66,0.38428698032964026],[116,59,67,0.38453638492560743],[116,59,68,0.3847737006535778],[116,59,69,0.38500058095737183],[116,59,70,0.3852186478755052],[116,59,71,0.38542948878344213],[116,59,72,0.38563465308039513],[116,59,73,0.38583564882066135],[116,59,74,0.386033939289515],[116,59,75,0.38623093952362986],[116,59,76,0.38642801277605227],[116,59,77,0.38662646692571656],[116,59,78,0.3868275508315018],[116,59,79,0.38703245063083613],[116,60,64,0.38189085944368983],[116,60,65,0.3822025406786208],[116,60,66,0.3824987667270131],[116,60,67,0.3827812335594317],[116,60,68,0.383051612328711],[116,60,69,0.3833115462446912],[116,60,70,0.3835626473938663],[116,60,71,0.38380649350393087],[116,60,72,0.3840446246532315],[116,60,73,0.3842785399251125],[116,60,74,0.3845096940071774],[116,60,75,0.3847394937354399],[116,60,76,0.3849692945833816],[116,60,77,0.38520039709591253],[116,60,78,0.38543404326823205],[116,60,79,0.3856714128695941],[116,61,64,0.3798753483692623],[116,61,65,0.3802197017388427],[116,61,66,0.3805486619620298],[116,61,67,0.3808639139056517],[116,61,68,0.3811671178233442],[116,61,69,0.38145990625167736],[116,61,70,0.3817438808515604],[116,61,71,0.38202060919490977],[116,61,72,0.3822916214965898],[116,61,73,0.38255840729161145],[116,61,74,0.382822412057615],[116,61,75,0.3830850337826057],[116,61,76,0.38334761947796414],[116,61,77,0.38361146163672355],[116,61,78,0.383877794637115],[116,61,79,0.38414779109138175],[116,62,64,0.3776987244240359],[116,62,65,0.3780753789733232],[116,62,66,0.37843674259276466],[116,62,67,0.3787844886766347],[116,62,68,0.379120266176403],[116,62,69,0.37944569651805643],[116,62,70,0.3797623704650726],[116,62,71,0.3800718449270322],[116,62,72,0.3803756397138739],[116,62,73,0.380675234235781],[116,62,74,0.3809720641487276],[116,62,75,0.3812675179456475],[116,62,76,0.38156293349325177],[116,62,77,0.38185959451448864],[116,62,78,0.38215872701663933],[116,62,79,0.38246149566506205],[116,63,64,0.37536120097640246],[116,63,65,0.37576977177320386],[116,63,66,0.37616319417418975],[116,63,67,0.3765431297349855],[116,63,68,0.3769112157044305],[116,63,69,0.37726906196289023],[116,63,70,0.37761824790660553],[116,63,71,0.3779603192780575],[116,63,72,0.37829678494235597],[116,63,73,0.37862911360963963],[116,63,74,0.37895873050351625],[116,63,75,0.3792870139755047],[116,63,76,0.37961529206550737],[116,63,77,0.37994483900830145],[116,63,78,0.3802768716860514],[116,63,79,0.38061254602684536],[116,64,64,0.37286309982127],[116,64,65,0.3733031881787931],[116,64,66,0.37372831110641896],[116,64,67,0.3741401179580034],[116,64,68,0.3745402338820669],[116,64,69,0.37493025678089104],[116,64,70,0.37531175421603397],[116,64,71,0.3756862602602512],[116,64,72,0.37605527229582736],[116,64,73,0.3764202477593045],[116,64,74,0.37678260083263926],[116,64,75,0.3771436990807484],[116,64,76,0.3775048600354699],[116,64,77,0.37786734772593367],[116,64,78,0.3782323691553364],[116,64,79,0.3786010707241295],[116,65,64,0.3702048509422507],[116,65,65,0.37067604465787496],[116,65,66,0.37113249642897456],[116,65,67,0.3715758430477353],[116,65,68,0.3720076971677233],[116,65,69,0.3724296442835397],[116,65,70,0.3728432396572928],[116,65,71,0.373250005191866],[116,65,72,0.37365142625099246],[116,65,73,0.37404894842611813],[116,65,74,0.37444397425009035],[116,65,75,0.37483785985762513],[116,65,76,0.37523191159258656],[116,65,77,0.37562738256206724],[116,65,78,0.3760254691372691],[116,65,79,0.37642730740118846],[116,66,64,0.3673869922208504],[116,66,65,0.3678888658305608],[116,66,66,0.3683762615611513],[116,66,67,0.36885080328670766],[116,66,68,0.36931409077452276],[116,66,69,0.3697676966850835],[116,66,70,0.3702131635192736],[116,66,71,0.3706520005127754],[116,66,72,0.3710856804776772],[116,66,73,0.3715156365912686],[116,66,74,0.3719432591320644],[116,66,75,0.37236989216300564],[116,66,76,0.3727968301618725],[116,66,77,0.37322531459890185],[116,66,78,0.373656530461601],[116,66,79,0.3740916027267711],[116,67,64,0.36441016909254076],[116,67,65,0.3649422841405635],[116,67,66,0.365460225988366],[116,67,67,0.3659656052392146],[116,67,68,0.366460008386397],[116,67,69,0.3669449948332998],[116,67,70,0.367422093861115],[116,67,71,0.36789280154414905],[116,67,72,0.3683585776127442],[116,67,73,0.36882084226379686],[116,67,74,0.36928097291891016],[116,67,75,0.3697403009301298],[116,67,76,0.37020010823330185],[116,67,77,0.3706616239490371],[116,67,78,0.3711260209312842],[116,67,79,0.371594412263515],[116,68,64,0.36127513414985457],[116,68,65,0.36183703947303575],[116,68,66,0.36238511689462627],[116,68,67,0.3629209633983059],[116,68,68,0.3634461518194708],[116,68,69,0.3639622278851601],[116,68,70,0.3644707072020224],[116,68,71,0.3649730721923008],[116,68,72,0.3654707689778426],[116,68,73,0.365965204212118],[116,68,74,0.36645774186028934],[116,68,75,0.3669496999272745],[116,68,76,0.3674423471338454],[116,68,77,0.3679368995407494],[116,68,78,0.36843451712084835],[116,68,79,0.36893630027928825],[116,69,64,0.3579827466924476],[116,69,65,0.35857397871891483],[116,69,66,0.35915176874106564],[116,69,67,0.3597176997784126],[116,69,68,0.36027333062868316],[116,69,69,0.3608201929273396],[116,69,70,0.36135978815556047],[116,69,71,0.3618935845966574],[116,69,72,0.36242301424093976],[116,69,73,0.36294946963900443],[116,69,74,0.36347430070349784],[116,69,75,0.36399881145929147],[116,69,76,0.3645242567421121],[116,69,77,0.36505183884561276],[116,69,78,0.36558270411688504],[116,69,79,0.36611793950041616],[116,70,64,0.35453397222403565],[116,70,65,0.35515405528568433],[116,70,66,0.3557611227904539],[116,70,67,0.3563567434535291],[116,70,68,0.35694246165955423],[116,70,69,0.3575197945414871],[116,70,70,0.35809022900833604],[116,70,71,0.3586552187217627],[116,70,72,0.35921618102155456],[116,70,73,0.3597744937999496],[116,70,74,0.3603314923248613],[116,70,75,0.3608884660119388],[116,70,76,0.3614466551455098],[116,70,77,0.36200724754839075],[116,70,78,0.3625713752005613],[116,70,79,0.36314011080671293],[116,71,64,0.35092988189636737],[116,71,65,0.3515783285547121],[116,71,66,0.352214226577842],[116,71,67,0.35283913004110135],[116,71,68,0.3534545685452554],[116,71,69,0.35406204431440536],[116,71,70,0.3546630292432207],[116,71,71,0.3552589618934662],[116,71,72,0.35585124443983446],[116,71,73,0.3564412395650575],[116,71,74,0.3570302673043543],[116,71,75,0.3576196018391431],[116,71,76,0.35821046824006897],[116,71,77,0.35880403915933],[116,71,78,0.35940143147229975],[116,71,79,0.36000370286845507],[116,72,64,0.34717165190016397],[116,72,65,0.3478479632850946],[116,72,66,0.3485122333272704],[116,72,67,0.34916600113155777],[116,72,68,0.34981078114891273],[116,72,69,0.3504480602930795],[116,72,70,0.35107929500704593],[116,72,71,0.3517059082792323],[116,72,72,0.35232928660941887],[116,72,73,0.35295077692439447],[116,72,74,0.3535716834433772],[116,72,75,0.35419326449313604],[116,72,76,0.3548167292728668],[116,72,77,0.35544323456880367],[116,72,78,0.3560738814185643],[116,72,79,0.3567097117252393],[116,73,64,0.34326056280292117],[116,73,65,0.34396422896390566],[116,73,66,0.3446564013144432],[116,73,67,0.3453386036633808],[116,73,68,0.34601233495104733],[116,73,69,0.3466790663844507],[116,73,70,0.34734023852267865],[116,73,71,0.3479972583124724],[116,73,72,0.3486514960739867],[116,73,73,0.34930428243670925],[116,73,74,0.3499569052255993],[116,73,75,0.35061060629736873],[116,73,76,0.35126657832696107],[116,73,77,0.35192596154420774],[116,73,78,0.3525898404206649],[116,73,79,0.3532592403066326],[116,74,64,0.33919799883376067],[116,74,65,0.33992849910303446],[116,74,66,0.34064809317554673],[116,74,67,0.34135828924389855],[116,74,68,0.34206057038232807],[116,74,69,0.3427563917001162],[116,74,70,0.34344717744564435],[116,74,71,0.344134318061075],[116,74,72,0.34481916718766503],[116,74,73,0.34550303862168996],[116,74,74,0.3461872032210337],[116,74,75,0.3468728857623713],[116,74,76,0.3475612617489964],[116,74,77,0.348253454169277],[116,74,78,0.348950530205738],[116,74,79,0.34965349789477795],[116,75,64,0.33498544711524625],[116,75,65,0.33574225048252865],[116,75,66,0.33648877516213394],[116,75,67,0.33722651341571874],[116,75,68,0.3379569321015604],[116,75,69,0.33868146984587305],[116,75,70,0.33940153416522856],[116,75,71,0.34011849854005427],[116,75,72,0.34083369943922],[116,75,73,0.34154843329568574],[116,75,74,0.34226395343327426],[116,75,75,0.3429814669444857],[116,75,76,0.3437021315194142],[116,75,77,0.3444270522257459],[116,75,78,0.34515727823983716],[116,75,79,0.345893799528882],[116,76,64,0.3306244968420519],[116,76,65,0.33140706234033124],[116,76,66,0.3321800163419599],[116,76,67,0.3329448348686902],[116,76,68,0.3337029682187976],[116,76,69,0.33445583815599966],[116,76,70,0.3352048350499406],[116,76,71,0.3359513149682122],[116,76,72,0.336696596719922],[116,76,73,0.33744195885078193],[116,76,74,0.33818863658978204],[116,76,75,0.33893781874736406],[116,76,76,0.3396906445651571],[116,76,77,0.3404482005172538],[116,76,78,0.341211517063025],[116,76,79,0.3419815653514856],[116,77,64,0.32611683840669076],[116,77,65,0.3269246155086177],[116,77,66,0.32772348774597576],[116,77,67,0.3285149145975989],[116,77,68,0.329300329463778],[116,77,69,0.33008113687247076],[116,77,70,0.3308587096375423],[116,77,71,0.3316343859690075],[116,77,72,0.33240946653528336],[116,77,73,0.3331852114774263],[116,77,74,0.33396283737541993],[116,77,75,0.33474351416642567],[116,77,76,0.33552836201506064],[116,77,77,0.336318448135679],[116,77,78,0.3371147835666584],[116,77,79,0.3379183198966989],[116,78,64,0.32146426247220783],[116,78,65,0.32229669149663825],[116,78,66,0.3231209614613868],[116,78,67,0.3239385150055036],[116,78,68,0.32475076829959765],[116,78,69,0.3255591082690207],[116,78,70,0.3263648897695509],[116,78,71,0.3271694327155463],[116,78,72,0.32797401916057806],[116,78,73,0.3287798903305179],[116,78,74,0.3295882436091452],[116,78,75,0.3304002294761854],[116,78,76,0.33121694839784543],[116,78,77,0.332039447669821],[116,78,78,0.3328687182127792],[116,78,79,0.3337056913203218],[116,79,64,0.3166686589917157],[116,79,65,0.3175251715199429],[116,79,66,0.3183743096706523],[116,79,67,0.3192174989525892],[116,79,68,0.32005613798149296],[116,79,69,0.320891595719929],[116,79,70,0.3217252086700951],[116,79,71,0.32255827801957115],[116,79,72,0.32339206674002474],[116,79,73,0.32422779663883966],[116,79,74,0.32506664536374363],[116,79,75,0.3259097433603374],[116,79,76,0.3267581707825949],[116,79,77,0.32761295435631155],[116,79,78,0.32847506419549827],[116,79,79,0.32934541057173217],[116,80,64,0.31173201617499896],[116,80,65,0.312612035476218],[116,80,66,0.31348550363665284],[116,80,67,0.3143538287507652],[116,80,68,0.31521839156096365],[116,80,69,0.31608054271375474],[116,80,70,0.31694159996934634],[116,80,71,0.3178028453646727],[116,80,72,0.3186655223298531],[116,80,73,0.319530832758053],[116,80,74,0.32039993402882117],[116,80,75,0.321273935984808],[116,80,76,0.3221538978619312],[116,80,77,0.32304082517297006],[116,80,78,0.3239356665445816],[116,80,79,0.32483931050775394],[116,81,64,0.3066564194020855],[116,81,65,0.30755936086762675],[116,81,66,0.3084566126339235],[116,81,67,0.30934956510390366],[116,81,68,0.3102395808351266],[116,81,69,0.3111279918119151],[116,81,70,0.3120160966714248],[116,81,71,0.31290515788361795],[116,81,72,0.313796398885152],[116,81,73,0.3146910011671536],[116,81,74,0.3155901013169535],[116,81,75,0.3164947880136804],[116,81,76,0.3174060989777905],[116,81,77,0.3183250178745029],[116,81,78,0.3192524711711434],[116,81,79,0.32018932494840585],[116,82,64,0.30144405008364716],[116,82,65,0.30236932166952357],[116,82,66,0.3032898028258157],[116,82,67,0.30420686599358504],[116,82,68,0.30512185524117375],[116,82,69,0.3060360835519782],[116,82,70,0.3069508300666473],[116,82,71,0.30786733727967097],[116,82,72,0.30878680819037063],[116,82,73,0.3097104034082625],[116,82,74,0.31063923821286654],[116,82,75,0.3115743795678638],[116,82,76,0.3125168430896736],[116,82,77,0.31346758997042445],[116,82,78,0.3144275238553205],[116,82,79,0.31539748767441184],[116,83,64,0.29609718446848254],[116,83,65,0.29704418714578856],[116,83,66,0.29798733608784067],[116,83,67,0.2989279855105982],[116,83,68,0.2998674606961761],[116,83,69,0.3008070552959139],[116,83,70,0.3017480285883613],[116,83,71,0.3026916026921421],[116,83,72,0.3036389597337138],[116,83,73,0.3045912389699871],[116,83,74,0.3055495338658858],[116,83,75,0.3065148891267421],[116,83,76,0.30748829768560476],[116,83,77,0.3084706976454304],[116,83,78,0.3094629691761611],[116,83,79,0.3104659313666973],[116,84,64,0.29061819239796505],[116,84,65,0.29158632061066836],[116,84,66,0.29255156877707567],[116,84,67,0.2935152726320819],[116,84,68,0.29447873838212313],[116,84,69,0.29544324002319056],[116,84,70,0.2964100166142538],[116,84,71,0.29738026950605945],[116,84,72,0.29835515952531844],[116,84,73,0.29933580411424665],[116,84,74,0.30032327442554296],[116,84,75,0.3013185923726952],[116,84,76,0.30232272763569235],[116,84,77,0.3033365946221175],[116,84,78,0.3043610493836191],[116,84,79,0.3053968864877716],[116,85,64,0.28500953600730927],[116,85,65,0.2859981781369775],[116,85,66,0.28698495044748984],[116,85,67,0.28797116994416094],[116,85,68,0.28895812347605243],[116,85,69,0.2899470650685731],[116,85,70,0.2909392132119906],[116,85,71,0.29193574810581596],[116,85,72,0.2929378088590727],[116,85,73,0.29394649064641853],[116,85,74,0.2949628418202037],[116,85,75,0.2959878609783523],[116,85,76,0.29702249398815045],[116,85,77,0.29806763096591193],[116,85,78,0.29912410321251937],[116,85,79,0.3001926801048553],[116,86,64,0.2792737683739319],[116,86,65,0.28028230721093295],[116,86,66,0.2812900225114612],[116,86,67,0.2822982123103508],[116,86,68,0.2833081438255378],[116,86,69,0.2843210508048913],[116,86,70,0.28533813082945425],[116,86,71,0.28636054257306087],[116,86,72,0.2873894030183397],[116,86,73,0.2884257846290692],[116,86,74,0.2894707124789729],[116,86,75,0.29052516133683826],[116,86,76,0.2915900527080431],[116,86,77,0.2926662518324621],[116,86,78,0.2937545646387486],[116,86,79,0.2948557346550096],[116,87,64,0.2734135321127755],[116,87,65,0.2744413453334932],[116,87,66,0.27546941684735754],[116,87,67,0.27649902548559857],[116,87,68,0.27753141856941177],[116,87,69,0.2785678092706534],[116,87,70,0.2796093739294542],[116,87,71,0.2806572493287096],[116,87,72,0.28171252992546314],[116,87,73,0.2827762650391457],[116,87,74,0.2838494559967595],[116,87,75,0.28493305323488904],[116,87,76,0.28602795335862635],[116,87,77,0.28713499615737703],[116,87,78,0.28825496157755115],[116,87,79,0.2893885666521473],[116,88,64,0.2674315579184434],[116,88,65,0.26847801856804865],[116,88,66,0.26952585435302634],[116,88,67,0.2705763246758147],[116,88,68,0.27163065670356795],[116,88,69,0.27269004274235137],[116,88,70,0.27375563756875976],[116,88,71,0.2748285557189215],[116,88,72,0.2759098687349043],[116,88,73,0.2770006023684808],[116,88,74,0.27810173374235037],[116,88,75,0.27921418846869317],[116,88,76,0.280338837725145],[116,88,77,0.2814764952881641],[116,88,78,0.2826279145237861],[116,88,79,0.28379378533578214],[116,89,64,0.2613306630544531],[116,89,65,0.26239514003477216],[116,89,66,0.2634621434455033],[116,89,67,0.2645329130431937],[116,89,68,0.2656086555921511],[116,89,69,0.26669054225176314],[116,89,70,0.2677797059217564],[116,89,71,0.26887723854534834],[116,89,72,0.26998418837031146],[116,89,73,0.2711015571679078],[116,89,74,0.27223029740979066],[116,89,75,0.27337130940274756],[116,89,76,0.27452543838137544],[116,89,77,0.2756934715586569],[116,89,78,0.2768761351344351],[116,89,79,0.2780740912618037],[116,90,64,0.25511374978935075],[116,90,65,0.25619560835137034],[116,90,66,0.257281178506679],[116,90,67,0.2583716801570743],[116,90,68,0.25946829942387495],[116,90,69,0.2605721860479962],[116,90,70,0.26168445074847385],[116,90,71,0.262806162539398],[116,90,72,0.2639383460052685],[116,90,73,0.2650819785347356],[116,90,74,0.26623798751282024],[116,90,75,0.26740724747148836],[116,90,76,0.26859057719866913],[116,90,77,0.26978873680568966],[116,90,78,0.2710024247531182],[116,90,79,0.27223227483503776],[116,91,64,0.248783803779887],[116,91,65,0.24988240602043618],[116,91,66,0.25098593827512816],[116,91,67,0.2520956003905328],[116,91,68,0.2532125576136723],[116,91,69,0.25433793800447246],[116,91,70,0.2554728298071824],[116,91,71,0.2566182787807137],[116,91,72,0.25777528548792095],[116,91,73,0.25894480254378033],[116,91,74,0.2601277318225639],[116,91,75,0.2613249216238822],[116,91,76,0.26253716379768843],[116,91,77,0.2637651908282095],[116,91,78,0.2650096728768071],[116,91,79,0.2662712147837794],[116,92,64,0.24234389240097418],[116,92,65,0.24345859776312576],[116,92,66,0.24457948418381825],[116,92,67,0.24570773126243767],[116,92,68,0.24684448314939458],[116,92,69,0.24799084597057652],[116,92,70,0.2491478852112814],[116,92,71,0.25031662305959124],[116,92,72,0.25149803570920426],[116,92,73,0.25269305062167985],[116,92,74,0.2539025437482002],[116,92,75,0.2551273367107154],[116,92,76,0.25636819394256694],[116,92,77,0.25762581978855864],[116,92,78,0.25890085556447096],[116,92,79,0.26019387657603565],[116,93,64,0.2357971630227594],[116,93,65,0.23692732879948972],[116,93,66,0.23806495864403346],[116,93,67,0.23921121172529003],[116,93,68,0.2403672108838968],[116,93,69,0.24153404006829668],[116,93,70,0.24271274173081012],[116,93,71,0.24390431418366437],[116,93,72,0.2451097089150011],[116,93,73,0.246329827864816],[116,93,74,0.2475655206609356],[116,93,75,0.24881758181489508],[116,93,76,0.2500867478778154],[116,93,77,0.2513736945562457],[116,93,78,0.2526790337879701],[116,93,79,0.25400331077779315],[116,94,64,0.22914684123465992],[116,94,65,0.2302918230753084],[116,94,66,0.23144558327535836],[116,94,67,0.23260926039870486],[116,94,68,0.23378395577235087],[116,94,69,0.23497073093370952],[116,94,70,0.23617060503843],[116,94,71,0.2373845522287059],[116,94,72,0.23861349896207878],[116,94,73,0.2398583213006971],[116,94,74,0.24111984216113344],[116,94,75,0.24239882852462313],[116,94,76,0.24369598860782338],[116,94,77,0.24501196899405958],[116,94,78,0.24634735172505526],[116,94,79,0.24770265135316505],[116,95,64,0.22239622901618875],[116,95,65,0.2235553814352579],[116,95,66,0.2247246570815541],[116,95,67,0.225905173748357],[116,95,68,0.22709801105462313],[116,95,69,0.22830420790313596],[116,95,70,0.22952475989970708],[116,95,71,0.2307606167333768],[116,95,72,0.2320126795176374],[116,95,73,0.2332817980926313],[116,95,74,0.2345687682884325],[116,95,75,0.23587432914926995],[116,95,76,0.23719916011879605],[116,95,77,0.23854387818636247],[116,95,78,0.2399090349943061],[116,95,79,0.24129511390625635],[116,96,64,0.2155487028549035],[116,96,65,0.21672137974273956],[116,96,66,0.21790555457265376],[116,96,67,0.2191023242107249],[116,96,68,0.22031274638303805],[116,96,69,0.22153783714429956],[116,96,70,0.22277856830802423],[116,96,71,0.2240358648382497],[116,96,72,0.2253106022027945],[116,96,73,0.2266036036880159],[116,96,74,0.22791563767517614],[116,96,75,0.2292474148782729],[116,96,76,0.23059958554343984],[116,96,77,0.2319727366098791],[116,96,78,0.23336738883232544],[116,96,79,0.23478399386505971],[116,97,64,0.2086077118113187],[116,97,65,0.20979326694621367],[116,97,66,0.21099172383312134],[116,97,67,0.21220415826347197],[116,97,68,0.21343160589537807],[116,97,69,0.21467505973232584],[116,97,70,0.2159354675639652],[116,97,71,0.21721372936895025],[116,97,72,0.21851069467985088],[116,97,73,0.2198271599100871],[116,97,74,0.22116386564299872],[116,97,75,0.2225214938829036],[116,97,76,0.2239006652682501],[116,97,77,0.22530193624682876],[116,97,78,0.22672579621304],[116,97,79,0.22817266460723384],[116,98,64,0.20157677553059908],[116,98,65,0.2027745630918557],[116,98,66,0.2039866845358919],[116,98,67,0.2052141944412876],[116,98,68,0.20645810623293268],[116,98,69,0.20771938967040857],[116,98,70,0.20899896829899142],[116,98,71,0.21029771686323712],[116,98,72,0.2116164586831581],[116,98,73,0.21295596299295227],[116,98,74,0.2143169422423924],[116,98,75,0.2157000493607299],[116,98,76,0.21710587498321987],[116,98,77,0.21853494464022966],[116,98,78,0.21998771590893057],[116,98,79,0.22146457552758958],[116,99,64,0.19445948220138473],[116,99,65,0.19566885728288352],[116,99,66,0.19689402590264038],[116,99,67,0.19813602129753086],[116,99,68,0.19939583450394732],[116,99,69,0.20067441185548116],[116,99,70,0.2019726524437559],[116,99,71,0.20329140554236447],[116,99,72,0.20463146799393117],[116,99,73,0.205993581560246],[116,99,74,0.20737843023559188],[116,99,75,0.20878663752310928],[116,99,76,0.21021876367431025],[116,99,77,0.21167530289170383],[116,99,78,0.2131566804945288],[116,99,79,0.21466325004761555],[116,100,64,0.1872594864615794],[116,100,65,0.18847980558538954],[116,100,66,0.18971740461011458],[116,100,67,0.1909732953115154],[116,100,68,0.19224844619230375],[116,100,69,0.19354377998873606],[116,100,70,0.1948601711408885],[116,100,71,0.19619844322656277],[116,100,72,0.19755936635884147],[116,100,73,0.19894365454724716],[116,100,74,0.20035196302261815],[116,100,75,0.20178488552555107],[116,100,76,0.20324295155851962],[116,100,77,0.20472662360163046],[116,100,78,0.20623629429201712],[116,100,79,0.20777228356688687],[116,101,64,0.17998050725091225],[116,101,65,0.1812111288804869],[116,101,66,0.18246054264233957],[116,101,67,0.1837297387412421],[116,101,68,0.18501966301124462],[116,101,69,0.18633121443079498],[116,101,70,0.18766524260206763],[116,101,71,0.18902254519444955],[116,101,72,0.1904038653522051],[116,101,73,0.19180988906627006],[116,101,74,0.19324124251029268],[116,101,75,0.19469848934076633],[116,101,76,0.1961821279613672],[116,101,77,0.19769258875145768],[116,101,78,0.1992302312587535],[116,101,79,0.200795341356172],[116,102,64,0.17262632561063984],[116,102,65,0.17386661066313536],[116,102,66,0.17512722508906126],[116,102,67,0.1764091374219462],[116,102,68,0.17771327070250537],[116,102,69,0.17904050000190075],[116,102,70,0.1803916499097351],[116,102,71,0.18176749198673198],[116,102,72,0.18316874218212237],[116,102,73,0.18459605821568809],[116,102,74,0.1860500369245799],[116,102,75,0.18753121157475494],[116,102,76,0.18904004913714678],[116,102,77,0.19057694752852816],[116,102,78,0.19214223281706688],[116,102,79,0.19373615639258962],[116,103,64,0.1652007824302082],[116,103,65,0.1664500947874698],[116,103,66,0.16772129789025092],[116,103,67,0.169015338510281],[116,103,68,0.17033311678067575],[116,103,69,0.1716754837269483],[116,103,70,0.17304323876328337],[116,103,71,0.17443712715402465],[116,103,72,0.1758578374403983],[116,103,73,0.17730599883241593],[116,103,74,0.17878217856608536],[116,103,75,0.18028687922576447],[116,103,76,0.18182053603177672],[116,103,77,0.183383514093248],[116,103,78,0.1849761056261599],[116,103,79,0.18659852713664454],[116,104,64,0.15770777614068632],[116,104,65,0.15896548315843917],[116,104,66,0.16024666552647665],[116,104,67,0.1615522481739477],[116,104,68,0.16288310822260227],[116,104,69,0.16424007252516803],[116,104,70,0.16562391516952119],[116,104,71,0.16703535494859523],[116,104,72,0.16847505279605207],[116,104,73,0.1699436091876625],[116,104,74,0.17144156150852025],[116,104,75,0.17296938138592616],[116,104,76,0.1745274719880618],[116,104,77,0.1761161652884108],[116,104,78,0.1777357192959252],[116,104,79,0.17938631525095977],[116,105,64,0.15015126035534215],[116,105,65,0.15141673337012895],[116,105,66,0.15270728865552013],[116,105,67,0.15402382922714242],[116,105,68,0.1553672091021992],[116,105,69,0.15673823084483018],[116,105,70,0.15813764307779143],[116,105,71,0.1595661379604032],[116,105,72,0.16102434863278353],[116,105,73,0.16251284662631982],[116,105,74,0.16403213924049953],[116,105,75,0.16558266688593892],[116,105,76,0.1671648003937264],[116,105,77,0.1687788382910413],[116,105,78,0.17042500404304406],[116,105,79,0.17210344326106075],[116,106,64,0.14253524145718],[116,106,65,0.14380785629058768],[116,106,66,0.1451071816950517],[116,106,67,0.14643409871164031],[116,106,68,0.14778943817049456],[116,106,69,0.14917397824279255],[116,106,70,0.15058844195955745],[116,106,71,0.15203349469725747],[116,106,72,0.15350974163022074],[116,106,73,0.15501772514981188],[116,106,74,0.15655792225049547],[116,106,75,0.15813074188262044],[116,106,76,0.15973652227204838],[116,106,77,0.16137552820658085],[116,106,78,0.16304794828918573],[116,106,79,0.16475389215804148],[116,107,64,0.13486377613324518],[116,107,65,0.13614291359295644],[116,107,66,0.13745041035117206],[116,107,67,0.1387871254233205],[116,107,68,0.14015386638070587],[116,107,69,0.14155138690869357],[116,107,70,0.1429803843322658],[116,107,71,0.1444414971088933],[116,107,72,0.1459353022887499],[116,107,73,0.14746231294220824],[116,107,74,0.14902297555475197],[116,107,75,0.15061766738913307],[116,107,76,0.15224669381489492],[116,107,77,0.15391028560522385],[116,107,78,0.15560859620112089],[116,107,79,0.1573416989429185],[116,108,64,0.12714096885607357],[116,108,65,0.1284260152332899],[116,108,66,0.12974108909319781],[116,108,67,0.13108702738451444],[116,108,68,0.1324646143587368],[116,108,69,0.13387457913417222],[116,108,70,0.13531759322786308],[116,108,71,0.1367942680553515],[116,108,72,0.13830515239831026],[116,108,73,0.13985072983997865],[116,108,74,0.14143141616853894],[116,108,75,0.14304755674826175],[116,108,76,0.14469942385854045],[116,108,77,0.1463872140007783],[116,108,78,0.14811104517311852],[116,108,79,0.1498709541130453],[116,109,64,0.11937096931210628],[116,109,65,0.1206613168748793],[116,109,66,0.1219833785745123],[116,109,67,0.12333796926199087],[116,109,68,0.12472584981890128],[116,109,69,0.12614772472693064],[116,109,70,0.12760423960578549],[116,109,71,0.12909597871947293],[116,109,72,0.13062346245096762],[116,109,73,0.13218714474520893],[116,109,74,0.13378741052056048],[116,109,75,0.13542457304855965],[116,109,76,0.13709887130208032],[116,109,77,0.13881046727186885],[116,109,78,0.14055944325144665],[116,109,79,0.14234579909040695],[116,110,64,0.11155796977686189],[116,110,65,0.11285301725887426],[116,110,66,0.11418148299927133],[116,110,67,0.11554415973037607],[116,110,68,0.11694178492467833],[116,110,69,0.11837503836943664],[116,110,70,0.11984453971021586],[116,110,71,0.12135084596330897],[116,110,72,0.12289444899706603],[116,110,73,0.12447577298207418],[116,110,74,0.1260951718103201],[116,110,75,0.12775292648316328],[116,110,76,0.1294492424682443],[116,110,77,0.13118424702528503],[116,110,78,0.13295798650078],[116,110,79,0.13477042359159747],[116,111,64,0.10370620243726447],[116,111,65,0.10500535552160156],[116,111,66,0.106339647435365],[116,111,67,0.10770984878140222],[116,111,68,0.10911667359488897],[116,111,69,0.1105607769226607],[116,111,70,0.11204275237200251],[116,111,71,0.11356312962883863],[116,111,72,0.11512237194534986],[116,111,73,0.11672087359696126],[116,111,74,0.11835895730882989],[116,111,75,0.12003687165166421],[116,111,76,0.12175478840699511],[116,111,77,0.12351279990186015],[116,111,78,0.1253109163128966],[116,111,79,0.1271490629398636],[116,112,64,0.0958199366609298],[116,112,65,0.09712260845838294],[116,112,66,0.09846215507343642],[116,112,67,0.09983932497879339],[116,112,68,0.10125480875510162],[116,112,69,0.10270923667465137],[116,112,70,0.10420317625504744],[116,112,71,0.10573712978280048],[116,112,72,0.10731153180686281],[116,112,73,0.10892674660204832],[116,112,74,0.1105830656024746],[116,112,75,0.11228070480484847],[116,112,76,0.11401980214172397],[116,112,77,0.11580041482468928],[116,112,78,0.11762251665747758],[116,112,79,0.11948599531902698],[116,113,64,0.08790347621221106],[116,113,65,0.08920908773365244],[116,113,66,0.09055332443175784],[116,113,67,0.09193691265858078],[116,113,68,0.09336051953406549],[116,113,69,0.09482475053375045],[116,113,70,0.09633014704696113],[116,113,71,0.09787718390543831],[116,113,72,0.09946626688242288],[116,113,73,0.10109773016214102],[116,113,74,0.1027718337798264],[116,113,75,0.1044887610321012],[116,113,76,0.10624861585784229],[116,113,77,0.10805142018949249],[116,113,78,0.10989711127481083],[116,113,79,0.11178553896908677],[116,114,64,0.07996115641542229],[116,114,65,0.08126913703779248],[116,114,66,0.08261750650738664],[116,114,67,0.08400696907527666],[116,114,68,0.08543816840559032],[116,114,69,0.08691168516686532],[116,114,70,0.08842803459440474],[116,114,71,0.0899876640235781],[116,114,72,0.0915909503940936],[116,114,73,0.09323819772518271],[116,114,74,0.0949296345618339],[116,114,75,0.09666541139189627],[116,114,76,0.09844559803418301],[116,114,77,0.10027018099753054],[116,114,78,0.10213906081080992],[116,114,79,0.10405204932391349],[116,115,64,0.07199734126488816],[116,115,65,0.07330712919033622],[116,115,66,0.07465908187324255],[116,115,67,0.07605388149354347],[116,115,68,0.07749214827551981],[116,115,69,0.07897443808244836],[116,115,70,0.08050123998276526],[116,115,71,0.08207297378768419],[116,115,72,0.08368998756029544],[116,115,73,0.0853525550960873],[116,115,74,0.08706087337502566],[116,115,75,0.08881505998501493],[116,115,76,0.09061515051686592],[116,115,77,0.09246109593073104],[116,115,78,0.09435275989400177],[116,115,79,0.09628991609068926],[116,116,64,0.06401642048208595],[116,116,65,0.06532746318980387],[116,116,66,0.06668245772137948],[116,116,67,0.06808206422563634],[116,116,68,0.0695268795140695],[116,116,69,0.07101743465844762],[116,116,70,0.07255419256043327],[116,116,71,0.07413754549316531],[116,116,72,0.07576781261483079],[116,116,73,0.07744523745416237],[116,116,74,0.07916998536800518],[116,116,75,0.08094214097076763],[116,116,76,0.08276170553588985],[116,116,77,0.08462859436928521],[116,116,78,0.08654263415474805],[116,116,79,0.08850356027135614],[116,117,64,0.05602280651951769],[116,117,65,0.05733456120980934],[116,117,66,0.05869206485208467],[116,117,67,0.06009595561424613],[116,117,68,0.06154680693316078],[116,117,69,0.06304512511486915],[116,117,70,0.0645913469073186],[116,117,71,0.0661858370455633],[116,117,72,0.06782888576945384],[116,117,73,0.06952070631375984],[116,117,74,0.0712614323708648],[116,117,75,0.07305111552584892],[116,117,76,0.074889722664093],[116,117,77,0.07677713335135877],[116,117,78,0.07871313718634054],[116,117,79,0.08069743112571681],[116,118,64,0.04802093151174647],[116,118,65,0.04933286554187194],[116,118,66,0.05069235460924287],[116,118,67,0.052100014961185936],[116,118,68,0.05355639670918927],[116,118,69,0.05506198143138186],[116,118,70,0.0566171797480402],[116,118,71,0.05822232887006046],[116,118,72,0.05987769012042249],[116,118,73,0.0615834464285861],[116,118,74,0.06333969979796134],[116,118,75,0.06514646874626684],[116,118,76,0.06700368571891013],[116,118,77,0.068911194475345],[116,118,78,0.07086874744840105],[116,118,79,0.07287600307661368],[116,119,64,0.04001524417338931],[116,119,65,0.041326835484723545],[116,119,66,0.04268779576175241],[116,119,67,0.04409871940170401],[116,119,68,0.04556013325101638],[116,119,69,0.047072494209758786],[116,119,70,0.048636186809576376],[116,119,71,0.05025152076509598],[116,119,72,0.05191872849882234],[116,119,73,0.05363796263946541],[116,119,74,0.05540929349383561],[116,119,75,0.05723270649212764],[116,119,76,0.0591080996067202],[116,119,77,0.06103528074445336],[116,119,78,0.06301396511237478],[116,119,79,0.06504377255697985],[116,120,64,0.03201020664386345],[116,120,65,0.033320944179912715],[116,120,66,0.03468287133079956],[116,120,67,0.036096560724231064],[116,120,68,0.03756251601298666],[116,120,69,0.03908116948095469],[116,120,70,0.04065287962318431],[116,120,71,0.042277928699893885],[116,120,72,0.04395652026446528],[116,120,73,0.045688776665357145],[116,120,74,0.047474736522087224],[116,120,75,0.04931435217508989],[116,120,76,0.05120748710958889],[116,120,77,0.05315391335343883],[116,120,78,0.055153308848927385],[116,120,79,0.05720525479856975],[116,121,64,0.02401029127929527],[116,121,65,0.02531967539411012],[116,121,66,0.026682075363388236],[116,121,67,0.0280980421359609],[116,121,68,0.02956805625337433],[116,121,69,0.031092525457222686],[116,121,70,0.03267178227098411],[116,121,71,0.034306081556306045],[116,121,72,0.03599559804376368],[116,121,73,0.037740423838028725],[116,121,74,0.03954056589759675],[116,121,75,0.04139594348887998],[116,121,76,0.043306385614804654],[116,121,77,0.04527162841786686],[116,121,78,0.04729131255763985],[116,121,79,0.049364980562762395],[116,122,64,0.016019977391386886],[116,122,65,0.01732752024791312],[116,122,66,0.018689909651931735],[116,122,67,0.020107674974066403],[116,122,68,0.021581273738056128],[116,122,69,0.02311108922907007],[116,122,70,0.024697428077012917],[116,122,71,0.02634051781476543],[116,122,72,0.028040504411381284],[116,122,73,0.029797449780183893],[116,122,74,0.03161132926190474],[116,122,75,0.03348202908267517],[116,122,76,0.03540934378700783],[116,122,77,0.03739297364572075],[116,122,78,0.03943252203880249],[116,122,79,0.04152749281324225],[116,123,64,0.008043747933036804],[116,123,65,0.009348973890943857],[116,123,66,0.0107108803996937],[116,123,67,0.012129975362343448],[116,123,68,0.013606693389207558],[116,123,69,0.01514139340684817],[116,123,70,0.016734356242540604],[116,123,71,0.018385782184150823],[116,123,72,0.02009578851545607],[116,123,73,0.021864407026844113],[116,123,74,0.023691581501536274],[116,123,75,0.025577165177147032],[116,123,76,0.02752091818271174],[116,123,77,0.02952250495114367],[116,123,78,0.0315814916071101],[116,123,79,0.0336973433303549],[116,124,64,8.608613112071062E-5],[116,124,65,0.001388532123649866],[116,124,66,0.002749494832490984],[116,124,67,0.004169460813690795],[116,124,68,0.005648841879428768],[116,124,69,0.007187972707383694],[116,124,70,0.00878710842605357],[116,124,71,0.010446422175964032],[116,124,72,0.012166002646799234],[116,124,73,0.01394585159038536],[116,124,74,0.015785881309679617],[116,124,75,0.017685912123568848],[116,124,76,0.01964566980761817],[116,124,77,0.02166478301072161],[116,124,78,0.02374278064765256],[116,124,79,0.02587908926753779],[116,125,64,-0.007848527933766669],[116,125,65,-0.006549312034394517],[116,125,66,-0.005189742243545181],[116,125,67,-0.0037693532217746295],[116,125,68,-0.002287755828900895],[116,125,69,-7.446395145522255E-4],[116,125,70,8.602252677086253E-4],[116,125,71,0.0025269846226232406],[116,125,72,0.004255698751871928],[116,125,73,0.006046339469032103],[116,125,74,0.007898787691016484],[116,125,75,0.009812830905793324],[116,125,76,0.01178816061652832],[116,125,77,0.013824369762104327],[116,125,78,0.0159209501140104],[116,125,79,0.018077289649628958],[116,126,64,-0.015755620800818604],[116,126,65,-0.014460071829895726],[116,126,66,-0.013102331938357414],[116,126,67,-0.011681956863176135],[116,126,68,-0.010198579999247559],[116,126,69,-0.008651914790140436],[116,126,70,-0.007041757141953209],[116,126,71,-0.00536798786033843],[116,126,72,-0.0036305751106674444],[116,126,73,-0.0018295769013980667],[116,126,74,3.485640950251501E-5],[116,126,75,0.0019624795848866006],[116,126,76,0.003952949955643881],[116,126,77,0.006005824844765306],[116,126,78,0.008120558968244818],[116,126,79,0.010296501812848913],[116,127,64,-0.023630729155360297],[116,127,65,-0.022339270314543136],[116,127,66,-0.020983784828086993],[116,127,67,-0.01956384935949529],[116,127,68,-0.018079119691116086],[116,127,69,-0.016529333115369527],[116,127,70,-0.01491431084862116],[116,127,71,-0.013233960467757155],[116,127,72,-0.011488278369437999],[116,127,73,-0.009677352252092652],[116,127,74,-0.007801363620501656],[116,127,75,-0.00586059031316899],[116,127,76,-0.0038554090523386098],[116,127,77,-0.0017862980167026032],[116,127,78,3.4616056319025645E-4],[116,127,79,0.0025412777868598635],[116,128,64,-0.03146940340823701],[116,128,65,-0.03018244393721614],[116,128,66,-0.028829624559145894],[116,128,67,-0.027410542704563057],[116,128,68,-0.02592487638501828],[116,128,69,-0.02437238658505425],[116,128,70,-0.022752919676366057],[116,128,71,-0.0210664098542116],[116,128,72,-0.019312881596037057],[116,128,73,-0.01749245214238737],[116,128,74,-0.015605333999947013],[116,128,75,-0.013651837466909789],[116,128,76,-0.011632373180537225],[116,128,77,-0.009547454686949619],[116,128,78,-0.007397701033156845],[116,128,79,-0.005183839381301625],[116,129,64,-0.039267211328443075],[116,129,65,-0.03798514618989074],[116,129,66,-0.036635391506429194],[116,129,67,-0.03521756530661224],[116,129,68,-0.033731367662414136],[116,129,69,-0.03217658308221505],[116,129,70,-0.03055308292552239],[116,129,71,-0.028860827839483627],[116,129,72,-0.02709987021716398],[116,129,73,-0.025270356677654537],[116,129,74,-0.023372530567859706],[116,129,75,-0.021406734486158263],[116,129,76,-0.019373412827802028],[116,129,77,-0.017273114352092],[116,129,78,-0.015106494771343626],[116,129,79,-0.012874319361610653],[116,130,64,-0.04701974172859558],[116,130,65,-0.04574295130685074],[116,130,66,-0.04439664648527353],[116,130,67,-0.04298046571200348],[116,130,68,-0.04149413094022647],[116,130,69,-0.039937450022423326],[116,130,70,-0.038310319125907766],[116,130,71,-0.03661272516970959],[116,130,72,-0.03484474828277295],[116,130,73,-0.033006564283538986],[116,130,74,-0.031098447180758493],[116,130,75,-0.02912077169573213],[116,130,76,-0.027074015805840346],[116,130,77,-0.024958763309402054],[116,130,78,-0.022775706411876318],[116,130,79,-0.020525648333372448],[116,131,64,-0.05472260820344821],[116,131,65,-0.053451458017397646],[116,131,66,-0.052108974517356466],[116,131,67,-0.05069481638331341],[116,131,68,-0.049208727260131035],[116,131,69,-0.04765053815330522],[116,131,70,-0.04602016984557267],[116,131,71,-0.044317635334415684],[116,131,72,-0.04254304229044803],[116,131,73,-0.0406965955367371],[116,131,74,-0.038778599548916715],[116,131,75,-0.036789460976285215],[116,131,76,-0.034729691183749134],[116,131,77,-0.03259990881465602],[116,131,78,-0.030400842374528447],[116,131,79,-0.028133332835659997],[116,132,64,-0.06237145292164609],[116,132,65,-0.06110629335226214],[116,132,66,-0.059767988650739345],[116,132,67,-0.05835621753198972],[116,132,68,-0.05687074513281387],[116,132,69,-0.055311425409409254],[116,132,70,-0.05367820355528441],[116,132,71,-0.051971118439642194],[116,132,72,-0.050190305066200924],[116,132,73,-0.04833599705251923],[116,132,74,-0.04640852912967308],[116,132,75,-0.0444083396624827],[116,132,76,-0.04233597319014859],[116,132,77,-0.04019208298734134],[116,132,78,-0.03797743364575201],[116,132,79,-0.035692903676074694],[116,133,64,-0.06996195047032511],[116,133,65,-0.06870311650331812],[116,133,66,-0.0673693338336524],[116,133,67,-0.06596030100517591],[116,133,68,-0.06447580443680967],[116,133,69,-0.0629157208220339],[116,133,70,-0.06128001954834561],[116,133,71,-0.059568765136756685],[116,133,72,-0.05778211970129876],[116,133,73,-0.05592034542860158],[116,133,74,-0.0539838070773927],[116,133,75,-0.051972974498116],[116,133,76,-0.04988842517252989],[116,133,77,-0.04773084677332795],[116,133,78,-0.04550103974379016],[116,133,79,-0.043199919897434214],[116,134,64,-0.07748981175275532],[116,134,65,-0.07623762273680013],[116,134,66,-0.07490869084222807],[116,134,67,-0.07350273422690368],[116,134,68,-0.07201956037210966],[116,134,69,-0.07045906848422345],[116,134,70,-0.0688212519159479],[116,134,71,-0.06710620060715589],[116,134,72,-0.06531410354531475],[116,134,73,-0.06344525124556244],[116,134,74,-0.061500038250279276],[116,134,75,-0.059478965648353976],[116,134,76,-0.05738264361400669],[116,134,77,-0.05521179396520526],[116,134,78,-0.05296725274169256],[116,134,79,-0.050649972802587984],[116,135,64,-0.08495078793921973],[116,135,65,-0.08370554736021751],[116,135,66,-0.08238178026236831],[116,135,67,-0.08097922419384895],[116,135,68,-0.07949770746874152],[116,135,69,-0.07793715157111714],[116,135,70,-0.07629757357825495],[116,135,71,-0.07457908860305218],[116,135,72,-0.07278191225560171],[116,135,73,-0.07090636312399934],[116,135,74,-0.06895286527422917],[116,135,75,-0.06692195076932517],[116,135,76,-0.06481426220766995],[116,135,77,-0.06263055528047001],[116,135,78,-0.06037170134842518],[116,135,79,-0.05803869003754769],[116,136,64,-0.09234067447073901],[116,136,65,-0.09110266974257153],[116,136,66,-0.08978436652536181],[116,136,67,-0.08838552152525325],[116,136,68,-0.08690598364992186],[116,136,69,-0.0853456964152659],[116,136,70,-0.08370470037081945],[116,136,71,-0.08198313554394732],[116,136,72,-0.08018124390279047],[116,136,73,-0.07829937183803437],[116,136,74,-0.07633797266333886],[116,136,75,-0.07429760913463646],[116,136,76,-0.07217895598815083],[116,136,77,-0.06998280249718447],[116,136,78,-0.06771005504768368],[116,136,79,-0.06536173973254666],[116,137,64,-0.09965531511584624],[116,137,65,-0.09842481738808295],[116,137,66,-0.09711226199744749],[116,137,67,-0.09571742456722487],[116,137,68,-0.09424017434999343],[116,137,69,-0.09268047663711565],[116,137,70,-0.09103839518654444],[116,137,71,-0.08931409466900464],[116,137,72,-0.08750784313252291],[116,137,73,-0.08562001448537104],[116,137,74,-0.08365109099726742],[116,137,75,-0.08160166581903883],[116,137,76,-0.07947244552060062],[116,137,77,-0.07726425264729764],[116,137,78,-0.07497802829461597],[116,137,79,-0.07261483470123375],[116,138,64,-0.10689060608058631],[116,138,65,-0.10566787006360334],[116,138,66,-0.10436133112350887],[116,138,67,-0.10297078355158695],[116,138,68,-0.10149611668731584],[116,138,69,-0.09993731733084033],[116,138,70,-0.09829447217335852],[116,138,71,-0.09656777024549112],[116,138,72,-0.09475750538359284],[116,138,73,-0.09286407871408253],[116,138,74,-0.0908880011556309],[116,138,75,-0.08882989593940882],[116,138,76,-0.08669050114725796],[116,138,77,-0.08447067226781702],[116,138,78,-0.08217138477062669],[116,138,79,-0.07979373669817014],[116,139,64,-0.1140425001713502],[116,139,65,-0.11282776397932104],[116,139,66,-0.11152749462449973],[116,139,67,-0.11014150480888651],[116,139,68,-0.10866970369172446],[116,139,69,-0.10711209930512466],[116,139,70,-0.10546880098721956],[116,139,71,-0.10374002183289932],[116,139,72,-0.10192608116210311],[116,139,73,-0.10002740700573365],[116,139,74,-0.09804453860903883],[116,139,75,-0.09597812895266122],[116,139,76,-0.0938289472912146],[116,139,77,-0.09159788170942862],[116,139,78,-0.08928594169587667],[116,139,79,-0.08689426073424611],[116,140,64,-0.12110701101087784],[116,140,65,-0.11990049602309483],[116,140,66,-0.11860673374894315],[116,140,67,-0.11722555503589682],[116,140,68,-0.11575688858688549],[116,140,69,-0.11420076337923979],[116,140,70,-0.11255731110077649],[116,140,71,-0.11082676860308438],[116,140,72,-0.10900948037197511],[116,140,73,-0.10710590101517725],[116,140,74,-0.10511659776710625],[116,140,75,-0.10304225301092029],[116,140,76,-0.10088366681771699],[116,140,77,-0.09864175950291043],[116,140,78,-0.09631757419980891],[116,140,79,-0.09391227945034697],[116,141,64,-0.12808021730717856],[116,141,65,-0.12688212804816368],[116,141,66,-0.12559509457824547],[116,141,67,-0.12421896561736034],[116,141,68,-0.12275368912730433],[116,141,69,-0.12119931473415302],[116,141,70,-0.11955599616744172],[116,141,71,-0.11782399371616281],[116,141,72,-0.11600367670155853],[116,141,73,-0.11409552596676997],[116,141,74,-0.11210013638318728],[116,141,75,-0.1100182193737066],[116,141,76,-0.10785060545274783],[116,141,77,-0.10559824678307794],[116,141,78,-0.10326221974944905],[116,141,79,-0.10084372754902027],[116,142,64,-0.1349582671756977],[116,142,65,-0.13376879121456364],[116,142,66,-0.13248869238616112],[116,142,67,-0.13111783700230573],[116,142,68,-0.12965619199030776],[116,142,69,-0.1281038273190077],[116,142,70,-0.12646091844119933],[116,142,71,-0.1247277487525057],[116,142,72,-0.12290471206667075],[116,142,73,-0.12099231510733877],[116,142,74,-0.11899118001616538],[116,142,75,-0.11690204687745964],[116,142,76,-0.11472577625922009],[116,142,77,-0.1124633517705983],[116,142,78,-0.11011588263581262],[116,142,79,-0.10768460628446919],[116,143,64,-0.14173738251434098],[116,143,65,-0.1405566903838612],[116,143,66,-0.13928371605201229],[116,143,67,-0.13791834313454576],[116,143,68,-0.13646055722261807],[116,143,69,-0.13491044831257537],[116,143,70,-0.13326821325176497],[116,143,71,-0.13153415820043313],[116,143,72,-0.1297087011096747],[116,143,73,-0.1277923742155057],[116,143,74,-0.12578582654890402],[116,143,75,-0.12368982646201576],[116,143,76,-0.12150526417038976],[116,143,77,-0.1192331543112799],[116,143,78,-0.11687463851802693],[116,143,79,-0.11443098801048768],[116,144,64,-0.14841386343154772],[116,144,65,-0.14724210856739417],[116,144,66,-0.14597643252786152],[116,144,67,-0.14461673593754887],[116,144,68,-0.14316302274170345],[116,144,69,-0.14161540263988237],[116,144,70,-0.13997409353528345],[116,144,71,-0.13823942399980382],[116,144,72,-0.136411835754791],[116,144,73,-0.1344918861675677],[116,144,74,-0.13248025076355685],[116,144,75,-0.13037772575422435],[116,144,76,-0.1281852305806872],[116,144,77,-0.12590381047303245],[116,144,78,-0.12353463902536244],[116,144,79,-0.12107902078652621],[116,145,64,-0.15498409272757663],[116,145,65,-0.1538214114281844],[116,145,66,-0.15256319135979657],[116,145,67,-0.15120934985384837],[116,145,68,-0.1497599088920749],[116,145,69,-0.14821499754416545],[116,145,70,-0.14657485442073304],[116,145,71,-0.14483983014166157],[116,145,72,-0.14301038981980319],[116,145,73,-0.1410871155600878],[116,145,74,-0.13907070897389273],[116,145,75,-0.13696199370887496],[116,145,76,-0.13476191799411985],[116,145,77,-0.1324715572006545],[116,145,78,-0.13009211641733132],[116,145,79,-0.1276249330420507],[116,146,64,-0.16144454042866097],[116,146,65,-0.16029105183618075],[116,146,66,-0.159040429262985],[116,146,67,-0.1576926064386459],[116,146,68,-0.15624762305618412],[116,146,69,-0.15470562721381875],[116,146,70,-0.15306687787168638],[116,146,71,-0.15133174732360144],[116,146,72,-0.14950072368381762],[116,146,73,-0.14757441338886468],[116,146,74,-0.14555354371430063],[116,146,75,-0.1434389653065825],[116,146,76,-0.14123165472991428],[116,146,77,-0.1389327170281155],[116,146,78,-0.13654338830151702],[116,146,79,-0.13406503829885552],[116,147,64,-0.16779176837420884],[116,147,65,-0.1666475744770064],[116,147,66,-0.16540467475067688],[116,147,67,-0.16406301900778586],[116,147,68,-0.1626226643200963],[116,147,69,-0.1610837774645043],[116,147,70,-0.15944663738361464],[116,147,71,-0.15771163766102037],[116,147,72,-0.1558792890112486],[116,147,73,-0.15395022178444528],[116,147,74,-0.1519251884856443],[116,147,75,-0.14980506630881607],[116,147,76,-0.14759085968556385],[116,147,77,-0.14528370284849734],[116,147,78,-0.1428848624093081],[116,147,79,-0.14039573995150234],[116,148,64,-0.17402243485721103],[116,148,65,-0.1728876205143698],[116,148,66,-0.1716525528173124],[116,148,67,-0.17031719734026096],[116,148,68,-0.1688816281941009],[116,148,69,-0.16734603047659047],[116,148,70,-0.16571070273688326],[116,148,71,-0.1639760594544264],[116,148,72,-0.1621426335321956],[116,148,73,-0.16021107880434937],[116,148,74,-0.15818217255812972],[116,148,75,-0.1560568180702261],[116,148,76,-0.15383604715744947],[116,148,77,-0.15152102274176493],[116,148,78,-0.1491130414296935],[116,148,79,-0.14661353610604777],[116,149,64,-0.18013329931752708],[116,149,65,-0.17900793230581835],[116,149,66,-0.17778078967541378],[116,149,67,-0.1764518524349209],[116,149,68,-0.1750212113879337],[116,149,69,-0.17348906958759036],[116,149,70,-0.17185574480512356],[116,149,71,-0.17012167201246708],[116,149,72,-0.1682874058788818],[116,149,73,-0.16635362328167647],[116,149,74,-0.16432112583086245],[116,149,75,-0.16219084240794324],[116,149,76,-0.15996383171870476],[116,149,77,-0.15764128486003492],[116,149,78,-0.15522452790080066],[116,149,79,-0.15271502447673369],[116,150,64,-0.18612122708821177],[116,150,65,-0.1850053581719865],[116,150,66,-0.18378621754641233],[116,150,67,-0.18246380132154616],[116,150,68,-0.18103821664076902],[116,150,69,-0.1795096841397572],[116,150,70,-0.17787854041913043],[116,150,71,-0.176145240530848],[116,150,72,-0.17431036047831294],[116,150,73,-0.17237459973025604],[116,150,74,-0.1703387837482443],[116,150,75,-0.1682038665280129],[116,150,76,-0.16597093315448275],[116,150,77,-0.16364120237050195],[116,150,78,-0.1612160291593261],[116,150,79,-0.15869690734079667],[116,151,64,-0.1919831941950475],[116,151,65,-0.19087685721951497],[116,151,66,-0.18966577950558927],[116,151,67,-0.18834997192645497],[116,151,68,-0.18692955760615204],[116,151,69,-0.18540477438301073],[116,151,70,-0.18377597728646378],[116,151,71,-0.18204364102730186],[116,151,72,-0.18020836250133043],[116,151,73,-0.17827086330650588],[116,151,74,-0.17623199227339081],[116,151,75,-0.1740927280091279],[116,151,76,-0.17185418145479792],[116,151,77,-0.16951759845619463],[116,151,78,-0.1670843623480356],[116,151,79,-0.1645559965515715],[116,152,64,-0.19771629220895348],[116,152,65,-0.19661950421730057],[116,152,66,-0.19541653438078788],[116,152,67,-0.1941074079923092],[116,152,68,-0.19269226379153392],[116,152,69,-0.19117135643285432],[116,152,70,-0.18954505896641383],[116,152,71,-0.18781386533227828],[116,152,72,-0.1859783928677181],[116,152,73,-0.18403938482767102],[116,152,74,-0.18199771291822608],[116,152,75,-0.1798543798433344],[116,152,76,-0.1776105218646047],[116,152,77,-0.1752674113742203],[116,152,78,-0.17282645948099795],[116,152,79,-0.17028921860954582],[116,153,64,-0.20331773315145063],[116,153,65,-0.20223049452626363],[116,153,66,-0.20103566170508702],[116,153,67,-0.19973327405230068],[116,153,68,-0.19832348555259738],[116,153,69,-0.19680656728347246],[116,153,70,-0.1951829099005128],[116,153,71,-0.1934530261355354],[116,153,72,-0.19161755330755093],[116,153,73,-0.18967725584661987],[116,153,74,-0.18763302783044178],[116,153,75,-0.18548589553388217],[116,153,76,-0.1832370199912976],[116,153,77,-0.18088769957169204],[116,153,78,-0.17843937256673004],[116,153,79,-0.1758936197915586],[116,154,64,-0.20878485445330552],[116,154,65,-0.20770714908275445],[116,154,66,-0.2065204667235513],[116,154,67,-0.20522486045884447],[116,154,68,-0.20382049914249223],[116,154,69,-0.20230766987612536],[116,154,70,-0.2006867804987219],[116,154,71,-0.19895836208875872],[116,154,72,-0.19712307147890484],[116,154,73,-0.1951816937833255],[116,154,74,-0.1931351449374431],[116,154,75,-0.19098447425035314],[116,154,76,-0.18873086696975672],[116,154,77,-0.1863756468594504],[116,154,78,-0.1839202787893851],[116,154,79,-0.18136637133825728],[116,155,64,-0.21411512396607602],[116,155,65,-0.2130469194353204],[116,155,66,-0.21186838545378728],[116,155,67,-0.21057958846649505],[116,155,68,-0.20918071181570497],[116,155,69,-0.20767205822256607],[116,155,70,-0.2060540522810067],[116,155,71,-0.20432724296392524],[116,155,72,-0.20249230614165115],[116,155,73,-0.2005500471127487],[116,155,74,-0.1985014031470016],[116,155,75,-0.19634744604078025],[116,155,76,-0.1940893846846583],[116,155,77,-0.19172856764330726],[116,155,78,-0.189266485747695],[116,155,79,-0.1867047746995396],[116,156,64,-0.21930614502669976],[116,156,65,-0.21824739283497396],[116,156,66,-0.2170769898004401],[116,156,67,-0.21579501536923307],[116,156,68,-0.2144016669866966],[116,156,69,-0.21289726258361896],[116,156,70,-0.21128224307444987],[116,156,71,-0.2095571748675551],[116,156,72,-0.2077227523874764],[116,156,73,-0.20577980060926915],[116,156,74,-0.20372927760475756],[116,156,75,-0.20157227710090864],[116,156,76,-0.1993100310501914],[116,156,77,-0.19694391221295104],[116,156,78,-0.19447543675181878],[116,156,79,-0.19190626683812018],[116,157,64,-0.2243556615752642],[116,157,65,-0.22330629737910213],[116,157,66,-0.22214399272377405],[116,157,67,-0.22086883969225668],[116,157,68,-0.21948104944346192],[116,157,69,-0.21798095470306178],[116,157,70,-0.2163690122660339],[116,157,71,-0.21464580551099266],[116,157,72,-0.2128120469262662],[116,157,73,-0.210868580647799],[116,157,74,-0.20881638500871047],[116,157,75,-0.20665657510072533],[116,157,76,-0.2043904053473229],[116,157,77,-0.20201927208865256],[116,157,78,-0.19954471617822733],[116,157,79,-0.19696842559135963],[116,158,64,-0.22926156332567516],[116,158,65,-0.22822150720873524],[116,158,66,-0.22706725346205436],[116,158,67,-0.22579890643799672],[116,158,68,-0.22441669061571035],[116,158,69,-0.22292095309652382],[116,158,70,-0.22131216611081717],[116,158,71,-0.21959092953643067],[116,158,72,-0.21775797342857206],[116,158,73,-0.21581416056129932],[116,158,74,-0.21376048898041644],[116,158,75,-0.2115980945679865],[116,158,76,-0.2093282536183222],[116,158,77,-0.20695238542549033],[116,158,78,-0.20447205488234899],[116,158,79,-0.20188897509107617],[116,159,64,-0.2340218909893843],[116,159,65,-0.2329910477593331],[116,159,66,-0.23184478280788556],[116,159,67,-0.23058321238651747],[116,159,68,-0.22920657389784405],[116,159,69,-0.22771522839556724],[116,159,70,-0.22610966309565927],[116,159,71,-0.22439049389884003],[116,159,72,-0.2225584679243171],[116,159,73,-0.22061446605486001],[116,159,74,-0.21855950549304803],[116,159,75,-0.21639474232889566],[116,159,76,-0.21412147411871507],[116,159,77,-0.2117411424752541],[116,159,78,-0.20925533566912802],[116,159,79,-0.20666579124149853],[116,160,64,-0.23863484155226755],[116,160,65,-0.23761310106517974],[116,160,66,-0.23647474843860405],[116,160,67,-0.23521991145038923],[116,160,68,-0.23384884002680995],[116,160,69,-0.2323619087470331],[116,160,70,-0.23075961935858647],[116,160,71,-0.2290426033038936],[116,160,72,-0.22721162425783836],[116,160,73,-0.22526758067643027],[116,160,74,-0.22321150835641423],[116,160,75,-0.22104458300602403],[116,160,76,-0.21876812282674496],[116,160,77,-0.21638359110611627],[116,160,78,-0.2138925988215965],[116,160,79,-0.2112969072554488],[116,161,64,-0.24309877360443555],[116,161,65,-0.24208601111717276],[116,161,66,-0.24095548030050284],[116,161,67,-0.23970732008382256],[116,161,68,-0.23834179251462484],[116,161,69,-0.23685928526744504],[116,161,70,-0.23526031416358328],[116,161,71,-0.23354552570167075],[116,161,72,-0.2317156995990426],[116,161,73,-0.2297717513439873],[116,161,74,-0.22771473475871729],[116,161,75,-0.22554584457326166],[116,161,76,-0.22326641901013933],[116,161,77,-0.22087794237985559],[116,161,78,-0.21838204768723424],[116,161,79,-0.21578051924854347],[116,162,64,-0.24741221272307956],[116,162,65,-0.2464082892741044],[116,162,66,-0.2452854760469929],[116,162,67,-0.24404392274615783],[116,162,68,-0.24268390313565746],[116,162,69,-0.24120581755256543],[116,162,70,-0.23961019543091078],[116,162,71,-0.23789769783624137],[116,162,72,-0.23606912001077995],[116,162,73,-0.23412539392924092],[116,162,74,-0.2320675908651536],[116,162,75,-0.2298969239678914],[116,162,76,-0.22761475085026828],[116,162,77,-0.22522257618673913],[116,162,78,-0.22272205432222314],[116,162,79,-0.22011499189150863],[116,163,64,-0.25157385690847855],[116,163,65,-0.2505786197275658],[116,163,66,-0.24946340653082655],[116,163,67,-0.24822837741984793],[116,163,68,-0.24687381746881099],[116,163,69,-0.24540013924223414],[116,163,70,-0.24380788532307618],[116,163,71,-0.2420977308512573],[116,163,72,-0.24027048607256307],[116,163,73,-0.23832709889800552],[116,163,74,-0.23626865747348047],[116,163,75,-0.23409639275992555],[116,163,76,-0.23181168112383588],[116,163,77,-0.2294160469381784],[116,163,78,-0.22691116519372267],[116,163,79,-0.2242988641207423],[116,164,64,-0.2555825820729224],[116,164,65,-0.254595865020225],[116,164,66,-0.25348812135013865],[116,164,67,-0.25225952118267225],[116,164,68,-0.2509103604943459],[116,164,69,-0.24944106364024188],[116,164,70,-0.2478521858862115],[116,164,71,-0.2461444159513051],[116,164,72,-0.24431857856038341],[116,164,73,-0.2423756370069876],[116,164,74,-0.24031669572630643],[116,164,75,-0.23814300287844348],[116,164,76,-0.23585595294184503],[116,164,77,-0.233457089316927],[116,164,78,-0.23094810693991707],[116,164,79,-0.22833085490687033],[116,165,64,-0.25943744758274634],[116,165,65,-0.258459071617675],[116,165,66,-0.2573586544484979],[116,165,67,-0.25613637583439564],[116,165,68,-0.25479254224555203],[116,165,69,-0.25332758938943645],[116,165,70,-0.2517420847470526],[116,165,71,-0.25003673011921557],[116,165,72,-0.24821236418282278],[116,165,73,-0.24626996505719112],[116,165,74,-0.24421065288029964],[116,165,75,-0.2420356923951411],[116,165,76,-0.239746495546045],[116,165,77,-0.23734462408500523],[116,165,78,-0.2348317921880343],[116,165,79,-0.23220986908149943],[116,166,64,-0.26313770185334895],[116,166,65,-0.2621674755337279],[116,166,66,-0.2610742297688454],[116,166,67,-0.25985815357773034],[116,166,68,-0.2585195635151283],[116,166,69,-0.25705890620193184],[116,166,70,-0.2554767608653965],[116,166,71,-0.2537738418892036],[116,166,72,-0.25195100137333104],[116,166,73,-0.2500092317038063],[116,166,74,-0.24794966813218533],[116,166,75,-0.24577359136495402],[116,166,76,-0.24348243016272098],[116,166,77,-0.24107776394922775],[116,166,78,-0.23856132543020703],[116,166,79,-0.23593500322203487],[116,167,64,-0.2666827879973498],[116,167,65,-0.2657205080093039],[116,167,66,-0.26463426696147163],[116,167,67,-0.26342426275376674],[116,167,68,-0.2620908216164407],[116,167,69,-0.2606344006445759],[116,167,70,-0.2590555903421866],[116,167,71,-0.25735511717599313],[116,167,72,-0.25553384613882646],[116,167,73,-0.25359278332274393],[116,167,74,-0.25153307850169115],[116,167,75,-0.24935602772391607],[116,167,76,-0.24706307591399246],[116,167,77,-0.24465581948449322],[116,167,78,-0.24213600895733045],[116,167,79,-0.23950555159471898],[116,168,64,-0.2700723495256997],[116,168,65,-0.2691178012447356],[116,168,66,-0.26803838714584916],[116,168,67,-0.2668343136316764],[116,168,68,-0.2655059161994576],[116,168,69,-0.26405366197949365],[116,168,70,-0.2624781522830455],[116,168,71,-0.2607801251597385],[116,168,72,-0.25896045796443057],[116,168,73,-0.25702016993362287],[116,168,74,-0.2549604247712518],[116,168,75,-0.2527825332440621],[116,168,76,-0.2504879557864258],[116,168,77,-0.24807830511464157],[116,168,78,-0.24555534885073305],[116,168,79,-0.24292101215570605],[116,169,64,-0.27330623610183535],[116,169,65,-0.2723591941855734],[116,169,66,-0.27128641872640624],[116,169,67,-0.2700881242527877],[116,169,68,-0.2687646551214635],[116,169,69,-0.26731648805979014],[116,169,70,-0.2657442347173383],[116,169,71,-0.26404864422683716],[116,169,72,-0.2622306057744298],[116,169,73,-0.26029115117930623],[116,169,74,-0.2582314574825607],[116,169,75,-0.2560528495454696],[116,169,76,-0.25375680265705647],[116,169,77,-0.2513449451509774],[116,169,78,-0.24881906103174722],[116,169,79,-0.24618109261026155],[116,170,64,-0.27638450934896386],[116,170,65,-0.2754447383619839],[116,170,66,-0.27437840326233964],[116,170,67,-0.273185726329118],[116,170,68,-0.27186706037263564],[116,170,69,-0.2704228912805102],[116,170,70,-0.2688538405728642],[116,170,71,-0.26716066796672033],[116,170,72,-0.26534427394955395],[116,170,73,-0.2634057023620725],[116,170,74,-0.2613461429900652],[116,170,75,-0.2591669341655255],[116,170,76,-0.25686956537690664],[116,170,77,-0.2544556798885447],[116,170,78,-0.25192707736927233],[116,170,79,-0.24928571653017673],[116,171,64,-0.2793074487102959],[116,171,65,-0.2783747037815497],[116,171,66,-0.2773146013912653],[116,171,67,-0.27612737119617325],[116,171,68,-0.2748133740562959],[116,171,69,-0.2733731045846576],[116,171,70,-0.27180719370598094],[116,171,71,-0.2701164112244324],[116,171,72,-0.26830166840038006],[116,171,73,-0.26636402053623254],[116,171,74,-0.264304669571209],[116,171,75,-0.26212496668523244],[116,171,76,-0.25982641491181413],[116,171,77,-0.257410671759963],[116,171,78,-0.2548795518451392],[116,171,79,-0.25223502952920884],[116,172,64,-0.2820755573623337],[116,172,65,-0.28114958487559205],[116,172,66,-0.2800954988068377],[116,172,67,-0.27891353582013456],[116,172,68,-0.277604064423954],[116,172,69,-0.27616758752439896],[116,172,70,-0.2746047449872828],[116,172,71,-0.2729163162091177],[116,172,72,-0.27110322269697795],[116,172,73,-0.269166530657312],[116,172,74,-0.2671074535935438],[116,172,75,-0.26492735491266595],[116,172,76,-0.2626277505406831],[116,172,77,-0.2602103115469465],[116,172,78,-0.25767686677739576],[116,172,79,-0.255029405496665],[116,173,64,-0.2846895681812731],[116,173,65,-0.2837701064990593],[116,173,66,-0.28272181229037274],[116,173,67,-0.2815449288594779],[116,173,68,-0.2802398319651902],[116,173,69,-0.27880703237749316],[116,173,70,-0.2772471784428773],[116,173,71,-0.2755610586584598],[116,173,72,-0.27374960425485173],[116,173,73,-0.2718138917878443],[116,173,74,-0.2697551457387557],[116,173,75,-0.267574741123638],[116,173,76,-0.2652742061112099],[116,173,77,-0.2628552246495479],[116,173,78,-0.2603196391015572],[116,173,79,-0.257669452889177],[116,174,64,-0.28715044976237014],[116,174,65,-0.28623722998384316],[116,174,66,-0.28519449579634437],[116,174,67,-0.28402249678088554],[116,174,68,-0.28272161555223907],[116,174,69,-0.2812923703188118],[116,174,70,-0.2797354174511225],[116,174,71,-0.2780515540589362],[116,174,72,-0.27624172057702745],[116,174,73,-0.2743070033596354],[116,174,74,-0.2722486372834647],[116,174,75,-0.2700680083594189],[116,174,76,-0.2677666563529415],[116,174,77,-0.2653462774129922],[116,174,78,-0.262808726709683],[116,174,79,-0.26015602108052327],[116,175,64,-0.2894594124923554],[116,175,65,-0.2885521592456024],[116,175,66,-0.28751474659182563],[116,175,67,-0.2863474300295321],[116,175,68,-0.28505059863934945],[116,175,69,-0.28362477764702343],[116,175,70,-0.2820706309949019],[116,175,71,-0.28038896392196655],[116,175,72,-0.278580725552374],[116,175,73,-0.2766470114925784],[116,175,74,-0.27458906643688086],[116,175,75,-0.2724082867816018],[116,175,76,-0.2701062232477439],[116,175,77,-0.2676845835121763],[116,175,78,-0.2651452348473621],[116,175,79,-0.26249020676958534],[116,176,64,-0.2916179146749571],[116,176,65,-0.29071634694415216],[116,176,66,-0.28968401144994016],[116,176,67,-0.2885211692537992],[116,176,68,-0.2872282155169842],[116,176,69,-0.285805682066507],[116,176,70,-0.28425423996949906],[116,176,71,-0.28257470211601055],[116,176,72,-0.2807680258102129],[116,176,73,-0.27883531537007766],[116,176,74,-0.27677782473537094],[116,176,75,-0.2745969600841678],[116,176,76,-0.27229428245774534],[116,176,77,-0.26987151039389334],[116,176,78,-0.2673305225686595],[116,176,79,-0.26467336044648826],[116,177,64,-0.2936276687093967],[116,177,65,-0.2927315006972865],[116,177,66,-0.29170399289718885],[116,177,67,-0.29054541158429326],[116,177,68,-0.2892561576207243],[116,177,69,-0.28783676902436073],[116,177,70,-0.2862879235459381],[116,177,71,-0.28461044125448864],[116,177,72,-0.28280528713108455],[116,177,73,-0.2808735736709522],[116,177,74,-0.27881656349381034],[116,177,75,-0.2766356719626192],[116,177,76,-0.2743324698106142],[116,177,77,-0.2719086857766534],[116,177,78,-0.2693662092489011],[116,177,79,-0.2667070929168024],[116,178,64,-0.2954906473219331],[116,178,65,-0.29459958934810937],[116,178,66,-0.29357665551472223],[116,178,67,-0.2924221169672315],[116,178,68,-0.2911363798949529],[116,178,69,-0.2897199881025748],[116,178,70,-0.2881736255898605],[116,178,71,-0.28649811913959555],[116,178,72,-0.2846944409137444],[116,178,73,-0.28276371105788745],[116,178,74,-0.28070720031378293],[116,178,75,-0.27852633264025206],[116,178,76,-0.27622268784225235],[116,178,77,-0.27379800420816947],[116,178,78,-0.2712541811553574],[116,178,79,-0.2685932818838691],[116,179,64,-0.2972090898505102],[116,179,65,-0.29632284928592767],[116,179,66,-0.2953042322936237],[116,179,67,-0.2941535145522608],[116,179,68,-0.2928711072113743],[116,179,69,-0.2914575594654333],[116,179,70,-0.28991356113600275],[116,179,71,-0.28823994526206265],[116,179,72,-0.2864376906984504],[116,179,73,-0.28450792472249675],[116,179,74,-0.2824519256486989],[116,179,75,-0.28027112545163135],[116,179,76,-0.2779671123969557],[116,179,77,-0.27554163368056805],[116,179,78,-0.2729965980758977],[116,179,79,-0.2703340785893207],[116,180,64,-0.29878550858237396],[116,180,65,-0.2979037908205737],[116,180,66,-0.2968892310440552],[116,180,67,-0.29574210913456744],[116,180,68,-0.29446284084223195],[116,180,69,-0.29305198036199964],[116,180,70,-0.291510222918128],[116,180,71,-0.28983840735673483],[116,180,72,-0.2880375187463954],[116,180,73,-0.2861086909868519],[116,180,74,-0.2840532094256819],[116,180,75,-0.2818725134831215],[116,180,76,-0.27956819928490895],[116,180,77,-0.2771420223031851],[116,180,78,-0.27459590000546474],[116,180,79,-0.2719319145116429],[116,181,64,-0.30022269514475375],[116,181,65,-0.2993452046102496],[116,181,66,-0.2983344408583739],[116,181,67,-0.2971906876513767],[116,181,68,-0.29591436498832246],[116,181,69,-0.2945060316837894],[116,181,70,-0.2929663879545179],[116,181,71,-0.2912962780140579],[116,181,72,-0.28949669267539035],[116,181,73,-0.2875687719615825],[116,181,74,-0.2855138077243301],[116,181,75,-0.2833332462705811],[116,181,76,-0.2810286909971065],[116,181,77,-0.27860190503304905],[116,181,78,-0.27605481389047615],[116,181,79,-0.2733895081228884],[116,182,64,-0.30152372694862506],[116,182,65,-0.3006501681429149],[116,182,66,-0.29964293862823],[116,182,67,-0.29850232573286195],[116,182,68,-0.2972287533618251],[116,182,69,-0.2958227845776462],[116,182,70,-0.2942851241890364],[116,182,71,-0.2926166213474949],[116,182,72,-0.29081827215181466],[116,182,73,-0.2888912222605614],[116,182,74,-0.2868367695123656],[116,182,75,-0.28465636655423165],[116,182,76,-0.2823516234777238],[116,182,77,-0.27992431046306354],[116,182,78,-0.27737636043116576],[116,182,79,-0.274709871703556],[116,183,64,-0.3026919736854554],[116,183,65,-0.30182205227111625],[116,183,66,-0.3008180956155475],[116,183,67,-0.2996803943073566],[116,183,68,-0.29840937582384075],[116,183,69,-0.29700560711371715],[116,183,70,-0.2954697971876695],[116,183,71,-0.29380279971676804],[116,183,72,-0.29200561563872696],[116,183,73,-0.2900793957720743],[116,183,74,-0.2880254434380738],[116,183,75,-0.28584521709060084],[116,183,76,-0.2835403329538331],[116,183,77,-0.2811125676677929],[116,183,78,-0.2785638609417642],[116,183,79,-0.2758963182155296],[116,184,64,-0.30373110387702806],[116,184,65,-0.30286452780035056],[116,184,66,-0.3018635840774837],[116,184,67,-0.3007285662609719],[116,184,68,-0.29945990507674336],[116,184,69,-0.2980581710086273],[116,184,70,-0.29652407689062943],[116,184,71,-0.29485848050702557],[116,184,72,-0.293062387200239],[116,184,73,-0.2911369524865699],[116,184,74,-0.2890834846796244],[116,184,75,-0.2869034475216383],[116,184,76,-0.2845984628225623],[116,184,77,-0.2821703131069432],[116,184,78,-0.27962094426861783],[116,184,79,-0.276952468233181],[116,185,64,-0.3046450914783002],[116,185,65,-0.3037815721309276],[116,185,66,-0.30278338394532556],[116,185,67,-0.301650823151574],[116,185,68,-0.3003843234112966],[116,185,69,-0.2989844584038107],[116,185,70,-0.2974519444199898],[116,185,71,-0.29578764296388926],[116,185,72,-0.293992563362108],[116,185,73,-0.2920678653809503],[116,185,74,-0.2900148618512368],[116,185,75,-0.28783502130096006],[116,185,76,-0.2855299705956533],[116,185,77,-0.2831014975864975],[116,185,78,-0.2805515537661999],[116,185,79,-0.27788225693258894],[116,186,64,-0.30543822253330744],[116,186,65,-0.3045774759533353],[116,186,66,-0.30358178955733284],[116,186,67,-0.302451461977132],[116,186,68,-0.301186929508546],[116,186,69,-0.29978876869900495],[116,186,70,-0.2982576989428575],[116,186,71,-0.29659458508439407],[116,186,72,-0.29480044002855676],[116,186,73,-0.2928764273594071],[116,186,74,-0.2908238639661963],[116,186,75,-0.2886442226772348],[116,186,76,-0.2863391349014305],[116,186,77,-0.2839103932775202],[116,186,78,-0.28135995433102645],[116,186,79,-0.2786899411388849],[116,187,64,-0.30611510188408986],[116,187,65,-0.30525684999708524],[116,187,66,-0.30426341644550237],[116,187,67,-0.30313510199841087],[116,187,68,-0.30187234529646667],[116,187,69,-0.3004757254408883],[116,187,70,-0.2989459645900554],[116,187,71,-0.2972839305637931],[116,187,72,-0.29549063945529797],[116,187,73,-0.2935672582507859],[116,187,74,-0.29151510745669984],[116,187,75,-0.28933566373468],[116,187,76,-0.28703056254415527],[116,187,77,-0.2846016007925971],[116,187,78,-0.2820507394934516],[116,187,79,-0.27938010643170486],[116,188,64,-0.3066806599326928],[116,188,65,-0.3058246318330947],[116,188,66,-0.304833208176311],[116,188,67,-0.30370669161606656],[116,188,68,-0.30244552286141557],[116,188,69,-0.30105028326691297],[116,188,70,-0.2995216974303748],[116,188,71,-0.2978606357982859],[116,188,72,-0.29606811727881643],[116,188,73,-0.2941453118625247],[116,188,74,-0.29209354325058345],[116,188,75,-0.28991429149073267],[116,188,76,-0.28760919562082166],[116,188,77,-0.285180056319974],[116,188,78,-0.2826288385673983],[116,188,79,-0.2799576743087965],[116,189,64,-0.30714015945618556],[116,189,65,-0.30628609272954255],[116,189,66,-0.30529644324537264],[116,189,67,-0.30417151530208086],[116,189,68,-0.3029117514143307],[116,189,69,-0.30151773490427314],[116,189,70,-0.299990192500332],[116,189,71,-0.29832999694360585],[116,189,72,-0.29653816960185175],[116,189,73,-0.29461588309111664],[116,189,74,-0.29256446390487023],[116,189,75,-0.2903853950508263],[116,189,76,-0.2880803186953297],[116,189,77,-0.2856510388153273],[116,189,78,-0.28309952385796133],[116,189,79,-0.2804279094077251],[116,190,64,-0.30749920247472773],[116,190,65,-0.30664684456123503],[116,190,66,-0.30565874202604937],[116,190,67,-0.30453520058557215],[116,190,68,-0.3032766643117143],[116,190,69,-0.3018837182240439],[116,190,70,-0.30035709088946905],[116,190,71,-0.29869765702950735],[116,190,72,-0.2969064401351127],[116,190,73,-0.2949846150891219],[116,190,74,-0.292933510796178],[116,190,75,-0.29075461282031445],[116,190,76,-0.2884495660300773],[116,190,77,-0.28602017725120865],[116,190,78,-0.28346841792692123],[116,190,79,-0.28079642678571337],[116,191,64,-0.3077637371726831],[116,191,65,-0.30691284677248],[116,191,66,-0.3059260737720081],[116,191,67,-0.30480372509297715],[116,191,68,-0.30354624613139036],[116,191,69,-0.30215422335048703],[116,191,70,-0.30062838688119276],[116,191,71,-0.29896961313014114],[116,191,72,-0.2971789273952211],[116,191,73,-0.29525750648873106],[116,191,74,-0.29320668136797956],[116,191,75,-0.29102793977353103],[116,191,76,-0.28872292887495976],[116,191,77,-0.2862934579241503],[116,191,78,-0.2837415009161607],[116,191,79,-0.2810691992576072],[116,192,64,-0.3079400648727697],[116,192,65,-0.3070904133934498],[116,192,66,-0.30610476367371275],[116,192,67,-0.30498342364259046],[116,192,68,-0.30372683980302995],[116,192,69,-0.30233559982550917],[116,192,70,-0.30081043514913786],[116,192,71,-0.2991522235903109],[116,192,72,-0.2973619919588726],[116,192,73,-0.29544091868186395],[116,192,74,-0.2933903364347019],[116,192,75,-0.2912117347799812],[116,192,76,-0.28890676281376937],[116,192,77,-0.28647723181942797],[116,192,78,-0.2839251179289767],[116,192,79,-0.2812525647919607],[116,193,64,-0.3080348470632551],[116,193,65,-0.3071862201100558],[116,193,66,-0.3062014999688669],[116,193,67,-0.3050809953934802],[116,193,68,-0.30382515379345576],[116,193,69,-0.30243456382829204],[116,193,70,-0.30090995800906983],[116,193,71,-0.299252215307626],[116,193,72,-0.2974623637732301],[116,193,73,-0.29554158315682444],[116,193,74,-0.29349120754268276],[116,193,75,-0.2913127279876747],[116,193,76,-0.2890077951680099],[116,193,77,-0.2865782220334906],[116,193,78,-0.2840259864692961],[116,193,79,-0.28135323396524925],[116,194,64,-0.3080551124781927],[116,194,65,-0.3072073113873198],[116,194,66,-0.3062233411067946],[116,194,67,-0.3051035110487651],[116,194,68,-0.3038482693467146],[116,194,69,-0.30245820545007795],[116,194,70,-0.30093405272631946],[116,194,71,-0.2992766910705349],[116,194,72,-0.2974871495225354],[116,194,73,-0.29556660889149045],[116,194,74,-0.2935164043879702],[116,194,75,-0.29133802826358857],[116,194,76,-0.2890331324581086],[116,194,77,-0.28660353125404603],[116,194,78,-0.28405120393879135],[116,194,79,-0.2813782974742053],[116,195,64,-0.30800826423070427],[116,195,65,-0.3071611076462547],[116,195,66,-0.3061777229667718],[116,195,67,-0.305058420113266],[116,195,68,-0.303803647778934],[116,195,69,-0.30241399602412444],[116,195,70,-0.3008901988787571],[116,195,71,-0.2992331369522566],[116,195,72,-0.29744384005095803],[116,195,73,-0.29552348980306153],[116,195,74,-0.2934734222909804],[116,195,75,-0.29129513069127655],[116,195,76,-0.28899026792204974],[116,195,77,-0.2865606492978173],[116,195,78,-0.2840082551919022],[116,195,79,-0.2813352337062839],[116,196,64,-0.307902086999293],[116,196,65,-0.3070554124942273],[116,196,66,-0.30607246613028416],[116,196,67,-0.3049535582055075],[116,196,68,-0.3036991378279309],[116,196,69,-0.3023097955108073],[116,196,70,-0.30078626577528345],[116,196,71,-0.2991294297605813],[116,196,72,-0.2973403178416453],[116,196,73,-0.29542011225433207],[116,196,74,-0.2933701497279856],[116,196,75,-0.29119192412559336],[116,196,76,-0.28888708909139016],[116,196,77,-0.28645746070594313],[116,196,78,-0.28390502014874075],[116,196,79,-0.2812319163682373],[116,197,64,-0.30774475426721526],[116,197,65,-0.30689842000884804],[116,197,66,-0.30591578320725143],[116,197,67,-0.3047971544241094],[116,197,68,-0.30354298305761884],[116,197,69,-0.30215385993790544],[116,197,70,-0.300630519929877],[116,197,71,-0.29897384454358156],[116,197,72,-0.29718486455202675],[116,197,73,-0.2952647626165332],[116,197,74,-0.2932148759194734],[116,197,75,-0.29103669880458105],[116,197,76,-0.28873188542470973],[116,197,77,-0.28630225239706175],[116,197,78,-0.28374978146592167],[116,197,79,-0.28107662217283436],[116,198,64,-0.3075448356148821],[116,198,65,-0.30669872207534266],[116,198,66,-0.3057162862161744],[116,198,67,-0.30459783876852753],[116,198,68,-0.3033438293171723],[116,198,69,-0.30195484889603164],[116,198,70,-0.30043163259115646],[116,198,71,-0.2987750621511942],[116,198,72,-0.2969861686053207],[116,198,73,-0.29506613488870237],[116,198,74,-0.29301629847533806],[116,198,75,-0.29083815401847113],[116,198,76,-0.28853335599844765],[116,198,77,-0.2861037213780402],[116,198,78,-0.28355123226527246],[116,198,79,-0.28087803858368887],[116,199,64,-0.3073113040653054],[116,199,65,-0.3064653157774353],[116,199,66,-0.30548299401823686],[116,199,67,-0.30436464961416987],[116,199,68,-0.30311073225496676],[116,199,69,-0.3017218330892323],[116,199,70,-0.30019868732748667],[116,199,71,-0.2985421768526978],[116,199,72,-0.2967533328382779],[116,199,73,-0.2948333383736055],[116,199,74,-0.2927835310969279],[116,199,75,-0.2906054058358317],[116,199,76,-0.28830061725515543],[116,199,77,-0.2858709825123702],[116,199,78,-0.2833184839204552],[116,199,79,-0.2806452716182185],[116,200,64,-0.3070535434825913],[116,200,65,-0.30620761084173054],[116,200,66,-0.30522533980534694],[116,200,67,-0.3041070412418785],[116,200,68,-0.30285316488729885],[116,200,69,-0.3014643019407509],[116,200,70,-0.2999411876676158],[116,200,71,-0.298284704010078],[116,200,72,-0.29649588220514567],[116,200,73,-0.29457590541020406],[116,200,74,-0.29252611133594164],[116,200,75,-0.29034799488684904],[116,200,76,-0.28804321080915407],[116,200,77,-0.2856135763462285],[116,200,78,-0.28306107390148616],[116,200,79,-0.2803878537087282],[116,201,64,-0.3067813560234681],[116,201,65,-0.3059354371355938],[116,201,66,-0.3049531786421191],[116,201,67,-0.30383489142177333],[116,201,68,-0.302581025221869],[116,201,69,-0.3011921712539455],[116,201,70,-0.2996690647968424],[116,201,71,-0.2980125878072739],[116,201,72,-0.2962237715378552],[116,201,73,-0.2943037991626627],[116,201,74,-0.29225400841016824],[116,201,75,-0.2900758942037417],[116,201,76,-0.2877711113095943],[116,201,77,-0.2853414769921907],[116,201,78,-0.2827889736771537],[116,201,79,-0.2801157516216132],[116,202,64,-0.30650434657572134],[116,202,65,-0.30565842530274523],[116,202,66,-0.30467616449343404],[116,202,67,-0.3035578750268849],[116,202,68,-0.30230400665069557],[116,202,69,-0.300915150576603],[116,202,70,-0.2993920420835585],[116,202,71,-0.2977355631282953],[116,202,72,-0.29594674496335605],[116,202,73,-0.29402677076264827],[116,202,74,-0.29197697825437663],[116,202,75,-0.2897988623615433],[116,202,76,-0.287494077849889],[116,202,77,-0.28506444198330183],[116,202,78,-0.2825119371867193],[116,202,79,-0.2798387137164754],[116,203,64,-0.3062231304539472],[116,203,65,-0.30537716048208485],[116,203,66,-0.3043948527413287],[116,203,67,-0.3032765181129018],[116,203,68,-0.30202260634457734],[116,203,69,-0.3006337086462707],[116,203,70,-0.29911056029306793],[116,203,71,-0.29745404323574687],[116,203,72,-0.2956651887187568],[116,203,73,-0.2937451799057271],[116,203,74,-0.2916953545123503],[116,203,75,-0.2895172074468364],[116,203,76,-0.28721239345780325],[116,203,77,-0.28478272978963814],[116,203,78,-0.28223019884535006],[116,203,79,-0.27955695085686827],[116,204,64,-0.30593139199897823],[116,204,65,-0.30508525486581806],[116,204,66,-0.30410278602889074],[116,204,67,-0.3029842963768571],[116,204,68,-0.30173023565823087],[116,204,69,-0.300341195076812],[116,204,70,-0.29881790989455403],[116,204,71,-0.29716126204192483],[116,204,72,-0.2953722827357229],[116,204,73,-0.29345215510442313],[116,204,74,-0.2914022168208956],[116,204,75,-0.2892239627426937],[116,204,76,-0.28691904755977815],[116,204,77,-0.2844892884497112],[116,204,78,-0.28193666774034],[116,204,79,-0.2792633355799251],[116,205,64,-0.3056229470155639],[116,205,65,-0.3047764541955559],[116,205,66,-0.30379364257338337],[116,205,67,-0.30267482305384774],[116,205,68,-0.30142044538734925],[116,205,69,-0.30003110076498174],[116,205,70,-0.2985075244210581],[116,205,71,-0.29685059824312654],[116,205,72,-0.2950613533894416],[116,205,73,-0.293140972913961],[116,205,74,-0.2910907943987139],[116,205,75,-0.2889123125937354],[116,205,76,-0.28660718206443736],[116,205,77,-0.2841772198464433],[116,205,78,-0.2816244081079132],[116,205,79,-0.2789508968193096],[116,206,64,-0.30529192554995566],[116,206,65,-0.30444482165433095],[116,206,66,-0.30346142111500185],[116,206,67,-0.30234203486505107],[116,206,68,-0.3010871126586673],[116,206,69,-0.2996972456656539],[116,206,70,-0.2981731690733672],[116,206,71,-0.2965157646961405],[116,206,72,-0.2947260635921599],[116,206,73,-0.29280524868786084],[116,206,74,-0.2907546574096934],[116,206,75,-0.28857578432344966],[116,206,76,-0.2862702837810228],[116,206,77,-0.2838399725746269],[116,206,78,-0.2812868325985032],[116,206,79,-0.27861301351806333],[116,207,64,-0.30493276529176194],[116,207,65,-0.30408473120739254],[116,207,66,-0.3031004341989134],[116,207,67,-0.3019801852433136],[116,207,68,-0.30072443410139227],[116,207,69,-0.29933377191137767],[116,207,70,-0.29780893378996875],[116,207,71,-0.29615080144085626],[116,207,72,-0.29436040577069067],[116,207,73,-0.2924389295125641],[116,207,74,-0.29038770985685525],[116,207,75,-0.28820824108963083],[116,207,76,-0.28590217723847255],[116,207,77,-0.2834713347257586],[116,207,78,-0.28091769502942654],[116,207,79,-0.27824340735116604],[116,208,64,-0.3045402050323819],[116,208,65,-0.30369086100005216],[116,208,66,-0.30270530151480546],[116,208,67,-0.30158383761668095],[116,208,68,-0.3003269190769927],[116,208,69,-0.29893513699069285],[116,208,70,-0.29740922637614675],[116,208,71,-0.29575006878238286],[116,208,72,-0.29395869490377713],[116,208,73,-0.29203628720224706],[116,208,74,-0.2899841825367965],[116,208,75,-0.28780387480061165],[116,208,76,-0.2854970175655718],[116,208,77,-0.28306542673420887],[116,208,78,-0.280511083199137],[116,208,79,-0.2778361355099064],[116,209,64,-0.3041092781800081],[116,209,65,-0.30325818681257377],[116,209,66,-0.30227094329392945],[116,209,67,-0.30114785874986316],[116,209,68,-0.29988938296734324],[116,209,69,-0.2984961069852009],[116,209,70,-0.29696876569221686],[116,209,71,-0.29530824043266923],[116,209,72,-0.2935155616193056],[116,209,73,-0.29159191135381235],[116,209,74,-0.28953862605462655],[116,209,75,-0.2873571990922833],[116,209,76,-0.28504928343217106],[116,209,77,-0.2826166942847209],[116,209,78,-0.28006141176305754],[116,209,79,-0.2773855835480611],[116,210,64,-0.30363530633118885],[116,210,65,-0.30278197557209463],[116,210,66,-0.3017925737636332],[116,210,67,-0.3006674121436248],[116,210,68,-0.29940694052120986],[116,210,69,-0.2980117498653785],[116,210,70,-0.2964825749008858],[116,210,71,-0.294820296711616],[116,210,72,-0.2930259453513552],[116,210,73,-0.29110070246204867],[116,210,74,-0.2890459038993827],[116,210,75,-0.28686304236589233],[116,210,76,-0.28455377005145854],[116,210,77,-0.2821199012812273],[116,210,78,-0.27956341517097405],[116,210,79,-0.27688645828986647],[116,211,64,-0.30311389289896873],[116,211,65,-0.30225777892159933],[116,211,66,-0.30126569465940123],[116,211,67,-0.30013795149211686],[116,211,68,-0.2988749992590989],[116,211,69,-0.2974774288451536],[116,211,70,-0.2959459747737567],[116,211,71,-0.29428151780769607],[116,211,72,-0.292485087557108],[116,211,73,-0.2905578650949773],[116,211,74,-0.28850118557994686],[116,211,75,-0.28631654088663205],[116,211,76,-0.28400558224330885],[116,211,77,-0.2815701228770039],[116,211,78,-0.27901214066601454],[116,211,79,-0.27633378079980564],[116,212,64,-0.30254091679760087],[116,212,65,-0.301681426845938],[116,212,66,-0.3006860887943916],[116,212,67,-0.29955521419814735],[116,212,68,-0.29828925293646025],[116,212,69,-0.2968887957952381],[116,212,70,-0.295354577056973],[116,212,71,-0.2936874770980801],[116,212,72,-0.29188852499360607],[116,212,73,-0.28995890112938105],[116,212,74,-0.2878999398214558],[116,212,75,-0.28571313194302483],[116,212,76,-0.28340012755869803],[116,212,77,-0.28096273856615495],[116,212,78,-0.2784029413452045],[116,212,79,-0.27572287941420226],[116,213,64,-0.30191252618381537],[116,213,65,-0.3010490213548731],[116,213,66,-0.30004981368645944],[116,213,67,-0.2989152149463691],[116,213,68,-0.2976456750652292],[116,213,69,-0.2962417847151976],[116,213,70,-0.2947042778959831],[116,213,71,-0.2930340345282466],[116,213,72,-0.29123208305434534],[116,213,73,-0.28929960304649394],[116,213,74,-0.28723792782218627],[116,213,75,-0.2850485470670744],[116,213,76,-0.2827331094651713],[116,213,77,-0.28029342533641044],[116,213,78,-0.2777314692815823],[116,213,79,-0.2750493828346052],[116,214,64,-0.3012251322546702],[116,214,65,-0.30035693022318277],[116,214,66,-0.29935319524269066],[116,214,67,-0.2982142393344197],[116,214,68,-0.2969405124937363],[116,214,69,-0.2955326052642916],[116,214,70,-0.29399125131945725],[116,214,71,-0.29231733005111005],[116,214,72,-0.2905118691657307],[116,214,73,-0.2885760472878872],[116,214,74,-0.28651119657094803],[116,214,75,-0.2843188053152218],[116,214,76,-0.282000520593391],[116,214,77,-0.2795581508832684],[116,214,78,-0.27699366870790454],[116,214,79,-0.27430921328299285],[116,215,64,-0.30047540310196197],[116,215,65,-0.29960178078779875],[116,215,66,-0.29859282150142397],[116,215,67,-0.29744883756198304],[116,215,68,-0.2961702790449595],[116,215,69,-0.2947577363510562],[116,215,70,-0.2932119427823293],[116,215,71,-0.2915337771256383],[116,215,72,-0.2897242662433711],[116,215,73,-0.28778458767152115],[116,215,74,-0.28571607222495576],[116,215,75,-0.2835202066100768],[116,215,76,-0.2811986360447387],[116,215,77,-0.2787531668854546],[116,215,78,-0.27618576926191507],[116,215,79,-0.27349857971877245],[116,216,64,-0.2996602576232197],[116,216,65,-0.2987804538019969],[116,216,66,-0.2977655364317833],[116,216,67,-0.29661581817779925],[116,216,68,-0.2953317492131422],[116,216,69,-0.2939139197816518],[116,216,70,-0.29236306276798796],[116,216,71,-0.2906800562749844],[116,216,72,-0.2888659262082346],[116,216,73,-0.28692184886798977],[116,216,74,-0.28484915354820695],[116,216,75,-0.28264932514294927],[116,216,76,-0.2803240067599989],[116,216,77,-0.27787500234172224],[116,216,78,-0.27530427929320234],[116,216,79,-0.2726139711175979],[116,217,64,-0.29877685948924537],[116,217,65,-0.2978900773466111],[116,217,66,-0.2968684337906847],[116,217,67,-0.29571224188458656],[116,217,68,-0.294421951918742],[116,217,69,-0.29299815396694395],[116,217,70,-0.2914415804495818],[116,217,71,-0.2897531087040973],[116,217,72,-0.2879337635626287],[116,217,73,-0.28598471993691843],[116,217,74,-0.28390730541032605],[116,217,75,-0.2817030028371439],[116,217,76,-0.27937345294908267],[116,217,77,-0.2769204569689594],[116,217,78,-0.27434597923160786],[116,217,79,-0.2716521498119683],[116,218,64,-0.2978226111682414],[116,218,65,-0.2969280207983055],[116,218,66,-0.29589885103736113],[116,218,67,-0.29473541540191595],[116,218,68,-0.29343816432175085],[116,218,69,-0.2920076876883554],[116,218,70,-0.2904447174104786],[116,218,71,-0.2887501299768517],[116,218,72,-0.2869249490260498],[116,218,73,-0.2849703479235631],[116,218,74,-0.28288765234591984],[116,218,75,-0.28067834287206195],[116,218,76,-0.27834405758183756],[116,218,77,-0.27588659466164145],[116,218,78,-0.2733079150172286],[116,218,79,-0.27061014489365265],[116,219,64,-0.29679514800651186],[116,219,65,-0.2958918888548949],[116,219,66,-0.2948543633053857],[116,219,67,-0.2936828853870225],[116,219,68,-0.29237790569337063],[116,219,69,-0.29094001392247393],[116,219,70,-0.2893699414238641],[116,219,71,-0.28766856375268235],[116,219,72,-0.28583690323088295],[116,219,73,-0.2838761315155862],[116,219,74,-0.2817875721744264],[116,219,75,-0.279572703268092],[116,219,76,-0.2772331599399266],[116,219,77,-0.274770737012617],[116,219,78,-0.2721873915919981],[116,219,79,-0.26948524567792165],[116,220,64,-0.29569233236570747],[116,220,65,-0.2947795156176808],[116,220,66,-0.2937327774321685],[116,220,67,-0.2925524324135269],[116,220,68,-0.2912389313460172],[116,220,69,-0.2897928637243895],[116,220,70,-0.28821496029145155],[116,220,71,-0.286506095582694],[116,220,72,-0.28466729047792316],[116,220,73,-0.28269971475998823],[116,220,74,-0.2806046896804292],[116,220,75,-0.278383690532261],[116,220,76,-0.2760383492297458],[116,220,77,-0.2735704568951942],[116,220,78,-0.27098196645281314],[116,220,79,-0.2682749952295571],[116,221,64,-0.29451224781666274],[116,221,65,-0.29358895873085333],[116,221,66,-0.29253212604597423],[116,221,67,-0.29134206500811244],[116,221,68,-0.29001922662169977],[116,221,69,-0.288564200169806],[116,221,70,-0.28697771574135067],[116,221,71,-0.28526064676529417],[116,221,72,-0.2834140125517708],[116,221,73,-0.28143898084023866],[116,221,74,-0.2793368703544862],[116,221,75,-0.2771091533646962],[116,221,76,-0.2747574582564323],[116,221,77,-0.2722835721065795],[116,221,78,-0.2696894432662623],[116,221,79,-0.26697718395069314],[116,222,64,-0.2932531933898067],[116,222,65,-0.29231849357794126],[116,222,66,-0.29125066171044023],[116,222,67,-0.2900500137451433],[116,222,68,-0.28871700093875685],[116,222,69,-0.2872522123559139],[116,222,70,-0.285656377385076],[116,222,71,-0.28393036826133433],[116,222,72,-0.28207520259607677],[116,222,73,-0.28009204591359227],[116,222,74,-0.27798221419445324],[116,222,75,-0.27574717642587865],[116,222,76,-0.2733885571589415],[116,222,77,-0.2709081390726501],[116,222,78,-0.26830786554493125],[116,222,79,-0.2655898432304641],[116,223,64,-0.2919136778821112],[116,223,65,-0.2909666075352709],[116,223,66,-0.28988685112656143],[116,223,67,-0.28867472539918193],[116,223,68,-0.2873306818969139],[116,223,69,-0.28585530946098026],[116,223,70,-0.2842493367336597],[116,223,71,-0.2825136346687156],[116,223,72,-0.28064921904860674],[116,223,73,-0.27865725300854804],[116,223,74,-0.27653904956726594],[116,223,75,-0.2742960741646493],[116,223,76,-0.2719299472061575],[116,223,77,-0.2694424466140196],[116,223,78,-0.26683551038524966],[116,223,79,-0.2641112391564253],[116,224,64,-0.29049241422063854],[116,224,65,-0.2895319942824983],[116,224,66,-0.28843936939220205],[116,224,67,-0.28721485715547257],[116,224,68,-0.28585890944072356],[116,224,69,-0.28437211486272496],[116,224,70,-0.28275520127293063],[116,224,71,-0.2810090382565287],[116,224,72,-0.27913463963618024],[116,224,73,-0.2771331659825179],[116,224,74,-0.27500592713124383],[116,224,75,-0.2727543847070327],[116,224,76,-0.27038015465409926],[116,224,77,-0.2678850097734642],[116,224,78,-0.2652708822669434],[116,224,79,-0.26253986628780956],[116,225,64,-0.2889883138826608],[116,225,65,-0.2880135481701871],[116,225,66,-0.28690709431910766],[116,225,67,-0.28566927087836114],[116,225,68,-0.2843005300813608],[116,225,69,-0.28280146031545217],[116,225,70,-0.2811727885979327],[116,225,71,-0.27941538305869673],[116,225,72,-0.2775302554294651],[116,225,73,-0.2755185635396783],[116,225,74,-0.2733816138188878],[116,225,75,-0.271120863805852],[116,225,76,-0.26873792466419744],[116,225,77,-0.2662345637046801],[116,225,78,-0.2636127069140668],[116,225,79,-0.2608744414905927],[116,226,64,-0.287400481372313],[116,226,65,-0.28641035864439224],[116,226,66,-0.2852891008073788],[116,226,67,-0.2840370274376137],[116,226,68,-0.28265459117673597],[116,226,69,-0.28114238018589843],[116,226,70,-0.2795011206064417],[116,226,71,-0.27773167902708185],[116,226,72,-0.27583506495757903],[116,226,73,-0.2738124333089599],[116,226,74,-0.2716650868801309],[116,226,75,-0.2693944788510899],[116,226,76,-0.26700221528259627],[116,226,77,-0.2644900576223298],[116,226,78,-0.26185992521756707],[116,226,79,-0.25911389783432437],[116,227,64,-0.2857282087538492],[116,227,65,-0.2847217047283205],[116,227,66,-0.28358465527747545],[116,227,67,-0.2823173810927022],[116,227,68,-0.2809203352699925],[116,227,69,-0.27939410574786905],[116,227,70,-0.27773941775165256],[116,227,71,-0.275957136244128],[116,227,72,-0.2740482683825779],[116,227,73,-0.272013965982252],[116,227,74,-0.2698555279861149],[116,227,75,-0.26757440294107526],[116,227,76,-0.26517219148055826],[116,227,77,-0.26265064881345357],[116,227,78,-0.260011687219463],[116,227,79,-0.25725737855080066],[116,228,64,-0.2839709702414728],[116,228,65,-0.28294704956103833],[116,228,66,-0.2817932101597258],[116,228,67,-0.2805097739350305],[116,228,68,-0.27909719448636583],[116,228,69,-0.2775560595356331],[116,228,70,-0.2758870933540092],[116,228,71,-0.2740911591950097],[116,228,72,-0.27216926173379463],[116,228,73,-0.270122549512791],[116,228,74,-0.26795231739346503],[116,228,75,-0.26566000901445863],[116,228,76,-0.26324721925594075],[116,228,77,-0.260715696710215],[116,228,78,-0.25806734615860105],[116,228,79,-0.2553042310545476],[116,229,64,-0.2821284168456918],[116,229,65,-0.28108603499317897],[116,229,66,-0.2799143984412852],[116,229,67,-0.2786138303880489],[116,229,68,-0.2771847849883461],[116,229,69,-0.27562784975602517],[116,229,70,-0.27394374797212395],[116,229,71,-0.2721333410992357],[116,229,72,-0.27019763120198315],[116,229,73,-0.268137763373679],[116,229,74,-0.2659550281690064],[116,229,75,-0.26365086404292903],[116,229,76,-0.2612268597956886],[116,229,77,-0.2586847570239248],[116,229,78,-0.25602645257793955],[116,229,79,-0.2532540010250597],[116,230,64,-0.2802003710762859],[116,230,65,-0.2791384762397313],[116,230,66,-0.27794802827063647],[116,230,67,-0.27662935176534564],[116,230,68,-0.2751829014892404],[116,230,69,-0.27360926475934466],[116,230,70,-0.2719091638328749],[116,230,71,-0.27008345830179636],[116,230,72,-0.26813314749335004],[116,230,73,-0.26605937287662595],[116,230,74,-0.26386342047501676],[116,230,75,-0.2615467232847616],[116,230,76,-0.25911086369943903],[116,230,77,-0.2565575759404408],[116,230,78,-0.25388874849345244],[116,230,79,-0.25110642655089155],[116,231,64,-0.2781868217018464],[116,231,65,-0.27710435658987853],[116,231,66,-0.2758940776195923],[116,231,67,-0.27455631088667776],[116,231,68,-0.27309151182508795],[116,231,69,-0.27150026756901224],[116,231,70,-0.26978329932064593],[116,231,71,-0.2679414647238183],[116,231,72,-0.26597576024344405],[116,231,73,-0.26388732355087363],[116,231,74,-0.2616774359149743],[116,231,75,-0.2593475245991558],[116,231,76,-0.25689916526419576],[116,231,77,-0.25433408437689786],[116,231,78,-0.2516541616246114],[116,231,79,-0.24886143233555713],[116,232,64,-0.2760879185658338],[116,232,65,-0.27498382217382733],[116,232,66,-0.27375268900274274],[116,232,67,-0.27239484675188264],[116,232,68,-0.27091075158487987],[116,232,69,-0.26930099046992806],[116,232,70,-0.2675662835256488],[116,232,71,-0.2657074863726646],[116,232,72,-0.26372559249083605],[116,232,73,-0.2616217355822441],[116,232,74,-0.2593971919397431],[116,232,75,-0.2570533828213073],[116,232,76,-0.2545918768300145],[116,232,77,-0.25201439229971323],[116,232,78,-0.2493227996863877],[116,232,79,-0.24651912396517894],[116,233,64,-0.27390396745925627],[116,233,65,-0.2727771767867273],[116,233,66,-0.27152416425444903],[116,233,67,-0.270145259272774],[116,233,68,-0.2686409187991786],[116,233,69,-0.26701172965563125],[116,233,70,-0.2652584108514312],[116,233,71,-0.26338181591158816],[116,233,72,-0.2613829352107012],[116,233,73,-0.259262898312418],[116,233,74,-0.25702297631430027],[116,233,75,-0.2546645841983157],[116,233,76,-0.2521892831868062],[116,233,77,-0.24959878310397032],[116,233,78,-0.2468949447428812],[116,233,79,-0.24407978223799498],[116,234,64,-0.2716354250499178],[116,234,65,-0.27048487676963784],[116,234,66,-0.2692089593633411],[116,234,67,-0.267808004062978],[116,234,68,-0.2662824686870964],[116,234,69,-0.2646329399342201],[116,234,70,-0.26286013568152655],[116,234,71,-0.2609649072888901],[116,234,72,-0.25894824190825205],[116,234,73,-0.2568112647983962],[116,234,74,-0.25455524164495824],[116,234,75,-0.2521815808858875],[116,234,76,-0.2496918360422109],[116,234,77,-0.24708770805413816],[116,234,78,-0.24437104762252904],[116,234,79,-0.2415438575556763],[116,235,64,-0.26928289386818094],[116,235,65,-0.268107525947481],[116,235,66,-0.26680767936425154],[116,235,67,-0.26538368728564177],[116,235,68,-0.26383600846156585],[116,235,69,-0.2621652294929635],[116,235,70,-0.2603720671051788],[116,235,71,-0.25845737042651884],[116,235,72,-0.2564221232719599],[116,235,73,-0.2542674464320761],[116,235,74,-0.25199459996701734],[116,235,75,-0.24960498550575938],[116,235,76,-0.24710014855047358],[116,235,77,-0.24448178078605398],[116,235,78,-0.24175172239482567],[116,235,79,-0.23891196437638518],[116,236,64,-0.2668471173493532],[116,236,65,-0.2656458706240904],[116,236,66,-0.2643210732877057],[116,236,67,-0.2628730605591354],[116,236,68,-0.2613022921930215],[116,236,69,-0.25960935472172486],[116,236,70,-0.25779496370226085],[116,236,71,-0.2558599659682268],[116,236,72,-0.25380534188668324],[116,236,73,-0.2516322076200683],[116,236,74,-0.24934181739296835],[116,236,75,-0.2469355657639717],[116,236,76,-0.2444149899024476],[116,236,77,-0.24178177187029448],[116,236,78,-0.23903774090867613],[116,236,79,-0.23618487572969915],[116,237,64,-0.2643289749326463],[116,237,65,-0.26310079463430813],[116,237,66,-0.2617500291669119],[116,237,67,-0.26027701592068997],[116,237,68,-0.2586822157314377],[116,237,69,-0.25696621509514206],[116,237,70,-0.2551297283873347],[116,237,71,-0.25317360008723533],[116,237,72,-0.251098807006648],[116,237,73,-0.24890646052369259],[116,237,74,-0.24659780882118965],[116,237,75,-0.24417423912992953],[116,237,76,-0.2416372799766664],[116,237,77,-0.23898860343688133],[116,237,78,-0.23623002739233212],[116,237,79,-0.23336351779334585],[116,238,64,-0.2617294772166423],[116,238,65,-0.26047331445305955],[116,238,66,-0.259095569102184],[116,238,67,-0.25759658084790693],[116,238,68,-0.25597681168665365],[116,238,69,-0.2542368481134957],[116,238,70,-0.2523774033127789],[116,238,71,-0.2503993193533297],[116,238,72,-0.2483035693882084],[116,238,73,-0.2460912598590862],[116,238,74,-0.24376363270506718],[116,238,75,-0.24132206757618413],[116,238,76,-0.23876808405141292],[116,238,77,-0.236103343861243],[116,238,78,-0.23332965311482845],[116,238,79,-0.2304489645316703],[116,239,64,-0.2590497611713961],[116,239,65,-0.2577645743615403],[116,239,66,-0.25635884438293355],[116,239,67,-0.2548329133382705],[116,239,68,-0.25318724446712193],[116,239,69,-0.251422424302402],[116,239,70,-0.24953916483112537],[116,239,71,-0.24753830565953083],[116,239,72,-0.2454208161825301],[116,239,73,-0.24318779775756327],[116,239,74,-0.24084048588267892],[116,239,75,-0.23838025237907368],[116,239,76,-0.23580860757792788],[116,239,77,-0.2331272025115818],[116,239,78,-0.2303378311090727],[116,239,79,-0.22744243239598472],[116,240,64,-0.25629108540706835],[116,240,65,-0.25497584167040355],[116,240,66,-0.2535411306671146],[116,240,67,-0.2519872970465511],[116,240,68,-0.25031480537696826],[116,240,69,-0.24852424227121517],[116,240,70,-0.24661631851648835],[116,240,71,-0.24459187120822212],[116,240,72,-0.24245186588807688],[116,240,73,-0.240197398686107],[116,240,74,-0.2378296984669266],[116,240,75,-0.23535012898010688],[116,240,76,-0.23276019101464063],[116,240,77,-0.2300615245575227],[116,240,78,-0.22725591095646125],[116,240,79,-0.22434527508667668],[116,241,64,-0.2534548254991692],[116,241,65,-0.25210850200003554],[116,241,66,-0.25064382321821366],[116,241,67,-0.24906113648019235],[116,241,68,-0.24736090777144826],[116,241,69,-0.24554372383023093],[116,241,70,-0.24361029424517733],[116,241,71,-0.24156145355682612],[116,241,72,-0.2393981633629927],[116,241,73,-0.23712151442808993],[116,241,74,-0.23473272879620632],[116,241,75,-0.23223316190818166],[116,241,76,-0.22962430472251305],[116,241,77,-0.2269077858401397],[116,241,78,-0.2240853736331222],[116,241,79,-0.22115897837717335],[116,242,64,-0.25054246937029734],[116,242,65,-0.24916405461779556],[116,242,66,-0.24766843219965695],[116,242,67,-0.24605595225254862],[116,242,68,-0.24432708227067923],[116,242,69,-0.24248240916656227],[116,242,70,-0.24052264133536294],[116,242,71,-0.2384486107228979],[116,242,72,-0.2362612748972508],[116,242,73,-0.23396171912408814],[116,242,74,-0.23155115844548524],[116,242,75,-0.22903093976250544],[116,242,76,-0.2264025439213646],[116,242,77,-0.22366758780322538],[116,242,78,-0.22082782641764442],[116,242,79,-0.2178851549996219],[116,243,64,-0.24755561272851445],[116,243,65,-0.24614410783236707],[116,243,66,-0.2446165780267866],[116,243,67,-0.2429733763941303],[116,243,68,-0.24121497203179387],[116,243,69,-0.23934195207883935],[116,243,70,-0.2373550237459523],[116,243,71,-0.2352550163487951],[116,243,72,-0.23304288334472356],[116,243,73,-0.23071970437294698],[116,243,74,-0.22828668729794432],[116,243,75,-0.22574517025637797],[116,243,76,-0.2230966237073383],[116,243,77,-0.22034265248596396],[116,243,78,-0.21748499786045838],[116,243,79,-0.21452553959245435],[116,244,64,-0.24449595456229467],[116,244,65,-0.24305037444515643],[116,244,66,-0.24148998677633648],[116,244,67,-0.23981514772178603],[116,244,68,-0.23802632807945256],[116,244,69,-0.236124115270669],[116,244,70,-0.2341092153346046],[116,244,71,-0.23198245492585112],[116,244,72,-0.22974478331510484],[116,244,73,-0.22739727439303126],[116,244,74,-0.22494112867711769],[116,244,75,-0.22237767532176445],[116,244,76,-0.21970837413143773],[116,244,77,-0.21693481757693778],[116,244,78,-0.21405873281479604],[116,244,79,-0.2110819837097596],[116,245,64,-0.24136529269196483],[116,245,65,-0.23988466725865554],[116,245,66,-0.23829048565332878],[116,245,67,-0.23658310726573994],[116,245,68,-0.23476300469462696],[116,245,69,-0.23283076570276395],[116,245,70,-0.2307870951748009],[116,245,71,-0.2286328170779678],[116,245,72,-0.22636887642559855],[116,245,73,-0.22399634124356727],[116,245,74,-0.22151640453943633],[116,245,75,-0.2189303862745713],[116,245,76,-0.2162397353390434],[116,245,77,-0.2134460315293748],[116,245,78,-0.21055098752913914],[116,245,79,-0.20755645089237518],[116,246,64,-0.23816551937779074],[116,246,65,-0.23664889464192296],[116,246,66,-0.2350199985155429],[116,246,67,-0.23327919375464068],[116,246,68,-0.23142695486181564],[116,246,69,-0.2294638700039069],[116,246,70,-0.2273906429321294],[116,246,71,-0.22520809490478833],[116,246,72,-0.22291716661253458],[116,246,73,-0.2205189201062473],[116,246,74,-0.2180145407273465],[116,246,75,-0.2154053390407903],[116,246,76,-0.21269275277057775],[116,246,77,-0.20987834873780986],[116,246,78,-0.2069638248013258],[116,246,79,-0.20395101180086772],[116,247,64,-0.2348986169846341],[116,247,65,-0.23334505615311152],[116,247,66,-0.23168054145548667],[116,247,67,-0.2299054391585481],[116,247,68,-0.22802022577461434],[116,247,69,-0.22602548994066973],[116,247,70,-0.22392193429970997],[116,247,71,-0.22171037738437638],[116,247,72,-0.21939175550283896],[116,247,73,-0.21696712462701395],[116,247,74,-0.2144376622829215],[116,247,75,-0.21180466944343368],[116,247,76,-0.2090695724232401],[116,247,77,-0.2062339247760755],[116,247,78,-0.20329940919423484],[116,247,79,-0.20026783941032267],[116,248,64,-0.23156665370309837],[116,248,65,-0.22997523821895416],[116,248,66,-0.22827421843978069],[116,248,67,-0.226463964289769],[116,248,68,-0.2245449543995558],[116,248,69,-0.22251777794579997],[116,248,70,-0.22038313649266805],[116,248,71,-0.21814184583530638],[116,248,72,-0.215794837845261],[116,248,73,-0.21334316231793427],[116,248,74,-0.210787988821875],[116,248,75,-0.2081306085501653],[116,248,76,-0.20537243617371592],[116,248,77,-0.2025150116965312],[116,248,78,-0.19956000231295334],[116,248,79,-0.1965092042668457],[116,249,64,-0.22817177932732313],[116,249,65,-0.22654160987137506],[116,249,66,-0.22480321700612138],[116,249,67,-0.22295697446171003],[116,249,68,-0.2210033630983833],[116,249,69,-0.21894297270544572],[116,249,70,-0.21677650380183],[116,249,71,-0.2145047694383413],[116,249,72,-0.2121286970015379],[116,249,73,-0.2096493300193385],[116,249,74,-0.20706782996815432],[116,249,75,-0.20438547808180574],[116,249,76,-0.20160367716204053],[116,249,77,-0.1987239533907088],[116,249,78,-0.19574795814360846],[116,249,79,-0.19267746980595934],[116,250,64,-0.22471622108935219],[116,250,65,-0.2230464185411456],[116,250,66,-0.22126980401774576],[116,250,67,-0.21938675520566864],[116,250,68,-0.21739775530868344],[116,250,69,-0.2153033948051366],[116,250,70,-0.21310437320655706],[116,250,71,-0.21080150081761617],[116,250,72,-0.20839570049740885],[116,250,73,-0.2058880094221418],[116,250,74,-0.20327958084902464],[116,250,75,-0.20057168588162966],[116,250,76,-0.19776571523653264],[116,250,77,-0.1948631810112914],[116,250,78,-0.19186571845377653],[116,250,79,-0.18877508773280993],[116,251,64,-0.22120227954998167],[116,251,65,-0.21949198590849517],[116,251,66,-0.2176763214753049],[116,251,67,-0.21575566804546764],[116,251,68,-0.2137305112827771],[116,251,69,-0.2116014424344268],[116,251,70,-0.2093691600466231],[116,251,71,-0.20703447168122657],[116,251,72,-0.20459829563338527],[116,251,73,-0.2020616626502486],[116,251,74,-0.19942571765055295],[116,251,75,-0.19669172144535185],[116,251,76,-0.19386105245969554],[116,251,77,-0.19093520845532175],[116,251,78,-0.18791580825437082],[116,251,79,-0.1848045934640794],[116,252,64,-0.21763232454626547],[116,252,65,-0.21588070381084978],[116,252,66,-0.21402518238632068],[116,252,67,-0.21206614633011195],[116,252,68,-0.21000408388505576],[116,252,69,-0.20783958715038064],[116,252,70,-0.2055733537533193],[116,252,71,-0.20320618852141153],[116,252,72,-0.2007390051554594],[116,252,73,-0.19817282790322688],[116,252,74,-0.1955087932336732],[116,252,75,-0.1927481515119953],[116,252,76,-0.18989226867527997],[116,252,77,-0.1869426279088341],[116,252,78,-0.1839008313231969],[116,252,79,-0.1807686016317983],[116,253,64,-0.2140087911955909],[116,253,65,-0.21221503020761878],[116,253,66,-0.21031886669214472],[116,253,67,-0.20832069112438378],[116,253,68,-0.2062209944476725],[116,253,69,-0.2040203696998159],[116,253,70,-0.2017195136396981],[116,253,71,-0.19931922837424043],[116,253,72,-0.1968204229856665],[116,253,73,-0.19422411515916627],[116,253,74,-0.19153143281074747],[116,253,75,-0.18874361571554776],[116,253,76,-0.18586201713641592],[116,253,77,-0.18288810545281864],[116,253,78,-0.17982346579008845],[116,253,79,-0.17666980164896895],[116,254,64,-0.21033417595623372],[116,254,65,-0.20849748520192768],[116,254,66,-0.20655991725232004],[116,254,67,-0.2045218671572761],[116,254,68,-0.20238382868448834],[116,254,69,-0.2001463959002024],[116,254,70,-0.19781026474985508],[116,254,71,-0.19537623463870113],[116,254,72,-0.19284521001239419],[116,254,73,-0.19021820193761307],[116,254,74,-0.18749632968251606],[116,254,75,-0.1846808222973061],[116,254,76,-0.18177302019470687],[116,254,77,-0.17877437673041074],[116,254,78,-0.17568645978351316],[116,254,79,-0.17251095333688793],[116,255,64,-0.20661103274456982],[116,255,65,-0.20473064711948796],[116,255,66,-0.20275093588653198],[116,255,67,-0.2006722988284536],[116,255,68,-0.19849523266346758],[116,255,69,-0.19622033257940996],[116,255,70,-0.19384829376744295],[116,255,71,-0.1913799129553867],[116,255,72,-0.18881608994063936],[116,255,73,-0.18615782912278056],[116,255,74,-0.18340624103563818],[116,255,75,-0.1805625438791031],[116,255,76,-0.1776280650504904],[116,255,77,-0.17460424267550878],[116,255,78,-0.17149262713885371],[116,255,79,-0.1682948826143763],[116,256,64,-0.20284196910886276],[116,256,65,-0.20091714864451082],[116,256,66,-0.19889457947406092],[116,256,67,-0.19677466627265117],[116,256,68,-0.1945579088374284],[116,256,69,-0.19224490357421176],[116,256,70,-0.1898363449833249],[116,256,71,-0.18733302714468647],[116,256,72,-0.1847358452021145],[116,256,73,-0.1820457968469429],[116,256,74,-0.17926398380072694],[116,256,75,-0.17639161329732833],[116,256,76,-0.1734299995641686],[116,256,77,-0.17038056530272405],[116,256,78,-0.16724484316826793],[116,256,79,-0.16402447724881786],[116,257,64,-0.19902964245952148],[116,257,65,-0.19705967301256583],[116,257,66,-0.19499355611063285],[116,257,67,-0.19283170148190631],[116,257,68,-0.19057461213304527],[116,257,69,-0.18822288578744073],[116,257,70,-0.18577721632226107],[116,257,71,-0.1832383952043738],[116,257,72,-0.18060731292509963],[116,257,73,-0.17788496043389979],[116,257,74,-0.17507243057076838],[116,257,75,-0.17217091949762503],[116,257,76,-0.16918172812849552],[116,257,77,-0.16610626355855118],[116,257,78,-0.16294604049201483],[116,257,79,-0.1597026826688932],[116,258,64,-0.19517675635602283],[116,258,65,-0.19316095026057845],[116,258,66,-0.1910506213228642],[116,258,67,-0.18884618448582535],[116,258,68,-0.1865481460983031],[116,258,69,-0.18415710530399798],[116,258,70,-0.18167375542883202],[116,258,71,-0.1790988853667964],[116,258,72,-0.1764333809642442],[116,258,73,-0.17367822640272534],[116,258,74,-0.17083450558013635],[116,258,75,-0.16790340349048227],[116,258,76,-0.16488620760203687],[116,258,77,-0.16178430923397125],[116,258,78,-0.15859920493146074],[116,258,79,-0.1553324978392262],[116,259,64,-0.1912860568504064],[116,259,65,-0.18922375353387277],[116,259,66,-0.18706857434020752],[116,259,67,-0.18482093958978407],[116,259,68,-0.18248135910830698],[116,259,69,-0.18005043356561778],[116,259,70,-0.1775288558125001],[116,259,71,-0.17491741221557078],[116,259,72,-0.1722169839902199],[116,259,73,-0.1694285485316948],[116,259,74,-0.1665531807441002],[116,259,75,-0.1635920543676126],[116,259,76,-0.16054644330369633],[116,259,77,-0.15741772293838807],[116,259,78,-0.15420737146366342],[116,259,79,-0.150916971196838],[116,260,64,-0.1873603288872383],[116,260,65,-0.18525089545015516],[116,260,66,-0.18305025442429235],[116,260,67,-0.18075883167096107],[116,260,68,-0.17837714062934007],[116,260,69,-0.17590578360428089],[116,260,70,-0.17334545305170262],[116,260,71,-0.17069693286167098],[116,260,72,-0.1679610996391141],[116,260,73,-0.16513892398228297],[116,260,74,-0.16223147175871466],[116,260,75,-0.15923990537900945],[116,260,76,-0.1561654850681985],[116,260,77,-0.15300957013477884],[116,260,78,-0.14977362023741791],[116,260,79,-0.1464591966492932],[116,261,64,-0.18340239276024295],[116,261,65,-0.18124522452064062],[116,261,66,-0.1789985372558629],[116,261,67,-0.17666276253240604],[116,261,68,-0.17423841754137803],[116,261,69,-0.1717261063344837],[116,261,70,-0.16912652105718368],[116,261,71,-0.16644044317912188],[116,261,72,-0.16366874472177773],[116,261,73,-0.16081238948344645],[116,261,74,-0.15787243426130826],[116,261,75,-0.15485003007089704],[116,261,76,-0.1517464233627459],[116,261,77,-0.14856295723628377],[116,261,78,-0.1453010726509889],[116,261,79,-0.14196230963476159],[116,262,64,-0.17941510062550586],[116,262,65,-0.17720962162822307],[116,262,66,-0.17491633137921747],[116,262,67,-0.17253566731504533],[116,262,68,-0.17006815051895685],[116,262,69,-0.16751438690426468],[116,262,70,-0.16487506839446414],[116,262,71,-0.16215097410019774],[116,262,72,-0.1593429714930233],[116,262,73,-0.15645201757608734],[116,262,74,-0.15347916005146395],[116,262,75,-0.15042553848447143],[116,262,76,-0.14729238546474344],[116,262,77,-0.144081027764127],[116,262,78,-0.14079288749141766],[116,262,79,-0.13742948324388826],[116,263,64,-0.17540133307114303],[116,263,65,-0.17314699656258487],[116,263,66,-0.1708065747040381],[116,263,67,-0.16838051096751427],[116,263,68,-0.165869330470287],[116,263,69,-0.1632736411048743],[116,263,70,-0.16059413466534],[116,263,71,-0.15783158797001],[116,263,72,-0.15498686398056039],[116,263,73,-0.15206091291758234],[116,263,74,-0.14905477337237905],[116,263,75,-0.14596957341531286],[116,263,76,-0.14280653170047453],[116,263,77,-0.1395669585667491],[116,263,78,-0.1362522571352897],[116,263,79,-0.1328639244033516],[116,264,64,-0.1713639957436539],[116,264,65,-0.16906028461246342],[116,264,66,-0.16667223106483547],[116,264,67,-0.16420028477404186],[116,264,68,-0.16164497503483916],[116,264,69,-0.15900691183931864],[116,264,70,-0.15628678694863624],[116,264,71,-0.1534853749607185],[116,264,72,-0.1506035343739024],[116,264,73,-0.14764220864661437],[116,264,74,-0.14460242725284023],[116,264,75,-0.1414853067337113],[116,264,76,-0.1382920517449695],[116,264,77,-0.13502395610039586],[116,264,78,-0.13168240381120289],[116,264,79,-0.1282688701213544],[116,265,64,-0.16730601603077355],[116,265,65,-0.16495244321489044],[116,265,66,-0.1625162868378201],[116,265,67,-0.1599980029401986],[116,265,68,-0.1573981251392103],[116,265,69,-0.15471726564958377],[116,265,70,-0.15195611630002326],[116,265,71,-0.14911544954516937],[116,265,72,-0.14619611947304667],[116,265,73,-0.14319906280810674],[116,265,74,-0.1401252999096138],[116,265,75,-0.13697593576570166],[116,265,76,-0.13375216098286313],[116,265,77,-0.13045525277095776],[116,265,78,-0.12708657592373512],[116,265,79,-0.12364758379484292],[116,266,64,-0.16323033980096507],[116,266,65,-0.16082644866154516],[116,266,66,-0.1583417476153417],[116,266,67,-0.15577669923664977],[116,266,68,-0.1531318416114154],[116,266,69,-0.15040778930268695],[116,266,70,-0.14760523431104494],[116,266,71,-0.14472494703010896],[116,266,72,-0.14176777719707784],[116,266,73,-0.13873465483841202],[116,266,74,-0.13562659121040332],[116,266,75,-0.13244467973496393],[116,266,76,-0.12919009693039457],[116,266,77,-0.1258641033372157],[116,266,78,-0.12246804443906262],[116,266,79,-0.1190033515786093],[116,267,64,-0.159139928199364],[116,267,65,-0.1566852928620313],[116,267,66,-0.15415163493770906],[116,267,67,-0.15153942370072337],[116,267,68,-0.148849201853411],[116,267,69,-0.1460815864353584],[116,267,70,-0.14323726972715717],[116,267,71,-0.14031702014877384],[116,267,72,-0.1373216831524952],[116,267,73,-0.13425218211055218],[116,267,74,-0.13110951919717034],[116,267,75,-0.12789477626537998],[116,267,76,-0.12460911571834365],[116,267,77,-0.12125378137528497],[116,267,78,-0.11783009933202238],[116,267,79,-0.11433947881606754],[116,268,64,-0.15503775450039736],[116,268,65,-0.15253198016430264],[116,268,66,-0.14994898308261195],[116,268,67,-0.14728923939602034],[116,268,68,-0.14455329657207994],[116,268,69,-0.14174177425758677],[116,268,70,-0.13885536512501423],[116,268,71,-0.1358948357130934],[116,268,72,-0.13286102726149912],[116,268,73,-0.12975485653974994],[116,268,74,-0.12657731667006084],[116,268,75,-0.12332947794449323],[116,268,76,-0.1200124886361495],[116,268,77,-0.11662757580450378],[116,268,78,-0.11317604609486737],[116,268,79,-0.1096592865319514],[116,269,64,-0.15092680101697126],[116,269,65,-0.14836952423213168],[116,269,66,-0.14573683591204173],[116,269,67,-0.14302921922995793],[116,269,68,-0.14024722656856892],[116,269,69,-0.13739148031491727],[116,269,70,-0.13446267364889203],[116,269,71,-0.1314615713253936],[116,269,72,-0.12838901045012774],[116,269,73,-0.12524590124913942],[116,269,74,-0.12203322783182291],[116,269,75,-0.11875204894775465],[116,269,76,-0.11540349873709471],[116,269,77,-0.11198878747465013],[116,269,78,-0.10850920230759553],[116,269,79,-0.10496610798681894],[116,270,64,-0.1468100560661234],[116,270,65,-0.1442009449795137],[116,270,66,-0.1415182437766015],[116,270,67,-0.13876244282914002],[116,270,68,-0.1359340995858701],[116,270,69,-0.13303383930939333],[116,270,70,-0.13006235580613423],[116,270,71,-0.12702041214948945],[116,270,72,-0.12390884139612657],[116,270,73,-0.12072854729553989],[116,270,74,-0.11748050499259932],[116,270,75,-0.11416576172343951],[116,270,76,-0.11078543750443792],[116,270,77,-0.10734072581436871],[116,270,78,-0.10383289426973541],[116,270,79,-0.10026328529324241],[116,271,64,-0.14269051099134905],[116,271,65,-0.14002926556222012],[116,271,66,-0.13729626047742183],[116,271,67,-0.13449199347276908],[116,271,68,-0.13161702721486318],[116,271,69,-0.12867198997936186],[116,271,70,-0.12565757632184654],[116,271,71,-0.1225745477413897],[116,271,72,-0.11942373333678069],[116,271,73,-0.1162060304555218],[116,271,74,-0.11292240533532555],[116,271,75,-0.10957389373846599],[116,271,76,-0.10616160157872812],[116,271,77,-0.10268670554104492],[116,271,78,-0.09915045369382341],[116,271,79,-0.09555416609392114],[116,272,64,-0.13857115724149743],[116,272,65,-0.13585750942639424],[116,272,66,-0.13307394028557312],[116,272,67,-0.13022095508399295],[116,272,68,-0.12729912185871262],[116,272,69,-0.12430907203803138],[116,272,70,-0.12125150105272758],[116,272,71,-0.11812716893950426],[116,272,72,-0.11493690093659609],[116,272,73,-0.11168158807165196],[116,272,74,-0.10836218774162137],[116,272,75,-0.10497972428500213],[116,272,76,-0.10153528954618696],[116,272,77,-0.09803004343200572],[116,272,78,-0.09446521446045758],[116,272,79,-0.09084210030160095],[116,273,64,-0.13445498350613072],[116,273,65,-0.13168869741408284],[116,273,66,-0.12885433501886778],[116,273,67,-0.12595240927907614],[116,273,68,-0.12298349375550555],[116,273,69,-0.11994822317067294],[116,273,70,-0.11684729395992238],[116,273,71,-0.11368146481423763],[116,273,72,-0.11045155721471284],[116,273,73,-0.10715845595880014],[116,273,74,-0.10380310967805417],[116,273,75,-0.10038653134774006],[116,273,76,-0.09690979878803596],[116,273,77,-0.09337405515692992],[116,273,78,-0.08978050943480453],[116,273,79,-0.0861304369006769],[116,274,64,-0.1303449729075588],[116,274,65,-0.1275258449259164],[116,274,66,-0.12464049117626774],[116,274,67,-0.12168943247461517],[116,274,68,-0.11867324805935336],[116,274,69,-0.11559257609068524],[116,274,70,-0.11244811414112527],[116,274,71,-0.10924061967719695],[116,274,72,-0.10597091053228264],[116,274,73,-0.10263986537074071],[116,274,74,-0.09924842414301116],[116,274,75,-0.09579758853207632],[116,274,76,-0.09228842239100943],[116,274,77,-0.08872205217170687],[116,274,78,-0.08509966734480162],[116,274,79,-0.08142252081072265],[116,275,64,-0.12624410024944233],[116,275,65,-0.12337195914083282],[116,275,66,-0.12043544712978965],[116,275,67,-0.11743509305268718],[116,275,68,-0.1143714819798457],[116,275,69,-0.11124525565441301],[116,275,70,-0.10805711292181747],[116,275,71,-0.10480781014990165],[116,275,72,-0.1014981616396935],[116,275,73,-0.09812904002693135],[116,275,74,-0.0947013766740612],[116,275,75,-0.09121616205307664],[116,275,76,-0.08767444611893155],[116,275,77,-0.08407733867362133],[116,275,78,-0.08042600972093278],[116,275,79,-0.07672168981182304],[116,276,64,-0.12215532932186018],[116,276,65,-0.1192300362927361],[116,276,66,-0.11624223037379883],[116,276,67,-0.11319244858382382],[116,276,68,-0.11008128197974754],[116,276,69,-0.10690937603460726],[116,276,70,-0.10367743100552934],[116,276,71,-0.10038620229187956],[116,276,72,-0.09703650078352849],[116,276,73,-0.09362919319935431],[116,276,74,-0.09016520241569209],[116,276,75,-0.08664550778511132],[116,276,76,-0.08307114544524125],[116,276,77,-0.0794432086177484],[116,276,78,-0.07576284789745885],[116,276,79,-0.07203127153159244],[116,277,64,-0.11808161026305142],[116,277,65,-0.1151030590043039],[116,277,66,-0.11206385483190917],[116,277,67,-0.10896454310802833],[116,277,68,-0.10580572103115798],[116,277,69,-0.10258803795274968],[116,277,70,-0.09931219568334992],[116,277,71,-0.09597894878837704],[116,277,72,-0.0925891048734871],[116,277,73,-0.08914352485965144],[116,277,74,-0.08564312324765416],[116,277,75,-0.08208886837239304],[116,277,76,-0.07848178264670097],[116,277,77,-0.07482294279479496],[116,277,78,-0.0711134800753428],[116,277,79,-0.06735458049411691],[116,278,64,-0.11402587697772609],[116,278,65,-0.11099399367783847],[116,278,66,-0.10790331822137983],[116,278,67,-0.10475440447372658],[116,278,68,-0.10154785593002291],[116,278,69,-0.09828432597013143],[116,278,70,-0.09496451810257317],[116,278,71,-0.09158918619757139],[116,278,72,-0.08815913470915399],[116,278,73,-0.08467521888643731],[116,278,74,-0.08113834497379513],[116,278,75,-0.07754947040030297],[116,278,76,-0.0739096039581707],[116,278,77,-0.07021980597026967],[116,278,78,-0.06648118844674861],[116,278,79,-0.06269491523070292],[116,279,64,-0.10999104461184023],[116,279,65,-0.10690578794305261],[116,279,66,-0.10376359947490221],[116,279,67,-0.10056504173454389],[116,279,68,-0.09731072466888935],[116,279,69,-0.09400130583757271],[116,279,70,-0.09063749059436721],[116,279,71,-0.08722003225716896],[116,279,72,-0.08374973226650323],[116,279,73,-0.08022744033267537],[116,279,74,-0.076654054571269],[116,279,75,-0.07303052162738488],[116,279,76,-0.0693578367883293],[116,279,77,-0.06563704408486215],[116,279,78,-0.061869236380995396],[116,279,79,-0.058055555452309504],[116,280,64,-0.10598000708404659],[116,280,65,-0.10284136816200573],[116,280,66,-0.09964765621999194],[116,280,67,-0.09639944260412425],[116,280,68,-0.09309734386812385],[116,280,69,-0.0897420219040082],[116,280,70,-0.08633418406069276],[116,280,71,-0.08287458325061925],[116,280,72,-0.07936401804436344],[116,280,73,-0.07580333275334689],[116,280,74,-0.07219341750035319],[116,280,75,-0.0685352082782435],[116,280,76,-0.06482968699658032],[116,280,77,-0.06107788151626847],[116,280,78,-0.057280865672205306],[116,280,79,-0.05343975928390554],[116,281,64,-0.1019956346737107],[116,281,65,-0.09880363699107991],[116,281,66,-0.09555842231587663],[116,281,67,-0.09226057096888257],[116,281,68,-0.08891070626548087],[116,281,69,-0.08550949458382273],[116,281,70,-0.0820576454203551],[116,281,71,-0.0785559114328272],[116,281,72,-0.07500508847073067],[116,281,73,-0.0714060155932974],[116,281,74,-0.0677595750747535],[116,281,75,-0.0640666923972279],[116,281,76,-0.06032833623102085],[116,281,77,-0.056545518402344674],[116,281,78,-0.05271929384852464],[116,281,79,-0.04885076056063126],[116,282,64,-0.09804077166539654],[116,282,65,-0.09479547099989538],[116,282,66,-0.09149880544777622],[116,282,67,-0.08815136445858518],[116,282,68,-0.08475377826391767],[116,282,69,-0.08130671788283378],[116,282,70,-0.07781089511408329],[116,282,71,-0.07426706251525628],[116,282,72,-0.07067601336881751],[116,282,73,-0.06703858163514803],[116,282,74,-0.06335564189228826],[116,282,75,-0.059628109262787554],[116,282,76,-0.055856939327361854],[116,282,77,-0.052043128025470176],[116,282,78,-0.048187711542802825],[116,282,79,-0.044291766185646786],[116,283,64,-0.09411823405002251],[116,283,65,-0.09081971834737296],[116,283,66,-0.08747168477878703],[116,283,67,-0.08407473207497101],[116,283,68,-0.08062949753786885],[116,283,69,-0.0771366569831346],[116,283,70,-0.07359692466885481],[116,283,71,-0.07001105321064349],[116,283,72,-0.06637983348306314],[116,283,73,-0.06270409450749875],[116,283,74,-0.05898470332617539],[116,283,75,-0.05522256486272942],[116,283,76,-0.05141862176902867],[116,283,77,-0.047573854258358694],[116,283,78,-0.0436892799249628],[116,283,79,-0.03976595354990359],[116,284,64,-0.09023080728258603],[116,284,65,-0.086879196514837],[116,284,66,-0.08347990865926064],[116,284,67,-0.08003355187830519],[116,284,68,-0.07654077069787368],[116,284,69,-0.0730022458866903],[116,284,70,-0.06941869432135572],[116,284,71,-0.06579086883721469],[116,284,72,-0.062119558064989366],[116,284,73,-0.058405586253307495],[116,284,74,-0.05464981307681094],[116,284,75,-0.050853133430260156],[116,284,76,-0.04701647720832702],[116,284,77,-0.04314080907119355],[116,284,78,-0.03922712819594398],[116,284,79,-0.03527646801371914],[116,285,64,-0.08638124409635745],[116,285,65,-0.08297669009605935],[116,285,66,-0.07952629239357772],[116,285,67,-0.07603066873176309],[116,285,68,-0.07249047101344874],[116,285,69,-0.06890638511758002],[116,285,70,-0.0652791307004677],[116,285,71,-0.06160946098229009],[116,285,72,-0.05789816251879551],[116,285,73,-0.0541460549583378],[116,285,74,-0.05035399078392505],[116,285,75,-0.04652285504070272],[116,285,76,-0.042653565048559966],[116,285,77,-0.03874707009997791],[116,285,78,-0.03480435114310654],[116,285,79,-0.030826420450041636],[116,286,64,-0.08257226237374324],[116,286,65,-0.07911494864444862],[116,286,66,-0.07561361606452352],[116,286,67,-0.07206889210385362],[116,286,68,-0.06848143619442165],[116,286,69,-0.0648519394831002],[116,286,70,-0.06118112456900096],[116,286,71,-0.05746974522550227],[116,286,72,-0.053718586106912214],[116,286,73,-0.04992846243989499],[116,286,74,-0.04610021969934239],[116,286,75,-0.04223473326911284],[116,286,76,-0.038332908087325535],[116,286,77,-0.03439567827632756],[116,286,78,-0.03042400675732354],[116,286,79,-0.02641888484963517],[116,287,64,-0.07880654307371737],[116,287,65,-0.07529668457727925],[116,287,66,-0.07174462241515789],[116,287,67,-0.06815099392877366],[116,287,68,-0.06451646623061333],[116,287,69,-0.06084173589361902],[116,287,70,-0.05712752862455986],[116,287,71,-0.053374598921511945],[116,287,72,-0.049583729715401065],[116,287,73,-0.04575573199573893],[116,287,74,-0.04189144442023038],[116,287,75,-0.03799173290867941],[116,287,76,-0.03405749022087687],[116,287,77,-0.030089635518590757],[116,287,78,-0.026089113911647005],[116,287,79,-0.022056895988068093],[116,288,64,-0.07508672821572421],[116,288,65,-0.07152457113686542],[116,288,66,-0.06792201478808382],[116,288,67,-0.0642797065245968],[116,288,68,-0.06059832128977291],[116,288,69,-0.05687856124108029],[116,288,70,-0.05312115535944095],[116,288,71,-0.049326859042119],[116,288,72,-0.04549645367909608],[116,288,73,-0.041630746213067504],[116,288,74,-0.03773056868273106],[116,288,75,-0.03379677774980305],[116,288,76,-0.02983025420943916],[116,288,77,-0.0258319024841841],[116,288,78,-0.02180265010143581],[116,288,79,-0.017743447154393993],[116,289,64,-0.07141541892025974],[116,289,65,-0.06780124040888649],[116,289,66,-0.06414845512232409],[116,289,67,-0.060457720569508155],[116,289,68,-0.05672971967397755],[116,289,69,-0.052965160336376604],[116,289,70,-0.049164774979782916],[116,289,71,-0.04532932007799237],[116,289,72,-0.041459575666712045],[116,289,73,-0.03755634483779774],[116,289,74,-0.033620453216203355],[116,289,75,-0.02965274842008228],[116,289,76,-0.025654099503713584],[116,289,77,-0.021625396383380457],[116,289,78,-0.017567549246183672],[116,289,79,-0.013481487941762627],[116,290,64,-0.06779517350595707],[116,290,65,-0.06412928139768997],[116,290,66,-0.0604265620076293],[116,290,67,-0.056687683135906636],[116,290,68,-0.05291333583431859],[116,290,69,-0.049104233905406774],[116,290,70,-0.04526111338378336],[116,290,71,-0.04138473199983084],[116,290,72,-0.037475868625730435],[116,290,73,-0.0335353227039539],[116,290,74,-0.02956391365788527],[116,290,75,-0.02556248028501429],[116,290,76,-0.02153188013237478],[116,290,77,-0.017472988854351834],[116,290,78,-0.01338669955284591],[116,290,79,-0.009273922099761134],[116,291,64,-0.06422850564330307],[116,291,65,-0.06051123815870019],[116,291,66,-0.05675890879634704],[116,291,67,-0.05297219578250567],[116,291,68,-0.04915179844400436],[116,291,69,-0.04529843664395278],[116,291,70,-0.04141285019911822],[116,291,71,-0.037495798279091996],[116,291,72,-0.0335480587872016],[116,291,73,-0.029570427723302595],[116,291,74,-0.025563718528115315],[116,291,75,-0.021528761409551983],[116,291,76,-0.017466402650703206],[116,291,77,-0.01337750389961087],[116,291,78,-0.009262941440813577],[116,291,79,-0.005123605448632579],[116,292,64,-0.060717882564821773],[116,292,65,-0.05694960798776447],[116,292,66,-0.053148021772683074],[116,292,67,-0.04931381270426127],[116,292,68,-0.04544768852970876],[116,292,69,-0.04155037533120026],[116,292,70,-0.03762261687938631],[116,292,71,-0.03366517396811014],[116,292,72,-0.029678823730282244],[116,292,73,-0.02566435893505145],[116,292,74,-0.02162258726593075],[116,292,75,-0.0175543305803314],[116,292,76,-0.013460424150167516],[116,292,77,-0.009341715883662782],[116,292,78,-0.005199065528342067],[116,292,79,-0.0010333438551787255],[116,293,64,-0.05726572333192054],[116,293,65,-0.05344683966763683],[116,293,66,-0.04959637837955558],[116,293,67,-0.04571503894033102],[116,293,68,-0.04180353766136996],[116,293,69,-0.0378626070021118],[116,293,70,-0.03389299485979072],[116,293,71,-0.029895463839816477],[116,293,72,-0.0258707905067235],[116,293,73,-0.021819764615829823],[116,293,74,-0.017743188325260145],[116,293,75,-0.013641875388791247],[116,293,76,-0.009516650329177478],[116,293,77,-0.005368347592092093],[116,293,78,-0.0011978106806631306],[116,293,79,0.0029941087294219904],[116,294,64,-0.053874397158302306],[116,294,65,-0.05000533177150149],[116,294,66,-0.046106405502943704],[116,294,67,-0.04217832863996469],[116,294,68,-0.0382218262003393],[116,294,69,-0.034237637178550745],[116,294,70,-0.030226513771952873],[116,294,71,-0.026189220586957704],[116,294,72,-0.02212653382520416],[116,294,73,-0.018039240449844438],[116,294,74,-0.013928137331604334],[116,294,75,-0.009794030375075702],[116,294,76,-0.005637733624900054],[116,294,77,-0.001460068351974847],[116,294,78,0.0027381378803329054],[116,294,79,0.006956052169996868],[116,295,64,-0.050546221789858875],[116,295,65,-0.04662743102344935],[116,295,66,-0.0426804778136438],[116,295,67,-0.038706083386237475],[116,295,68,-0.03470498160578972],[116,295,69,-0.030677918159064413],[116,295,70,-0.02662564971776729],[116,295,71,-0.022548943080719072],[116,295,72,-0.01844857429541545],[116,295,73,-0.014325327759115741],[116,295,74,-0.010179995299108957],[116,295,75,-0.006013375232624893],[116,295,76,-0.0018262714060400392],[116,295,77,0.0023805077864826746],[116,295,78,0.006606150404941377],[116,295,79,0.010849841986057096],[116,296,64,-0.047283461941224306],[116,296,65,-0.0433154307160878],[116,296,66,-0.03932091616661469],[116,296,67,-0.03530065057780968],[116,296,68,-0.0312553767995722],[116,296,69,-0.027185847367515656],[116,296,70,-0.023092823602489945],[116,296,71,-0.01897707468894587],[116,296,72,-0.014839376732092499],[116,296,73,-0.010680511793990696],[116,296,74,-0.006501266908229053],[116,296,75,-0.00230243307365198],[116,296,76,0.0019151957732106706],[116,296,77,0.006150823806874234],[116,296,78,0.010403654382810795],[116,296,79,0.014672891128568497],[116,297,64,-0.04408832778889164],[116,297,65,-0.04007156918518966],[116,297,66,-0.036029986057816446],[116,297,67,-0.03196432186861829],[116,297,68,-0.027875328589420087],[116,297,69,-0.023763765760464545],[116,297,70,-0.019630399526957693],[116,297,71,-0.015476001653862523],[116,297,72,-0.011301348518889823],[116,297,73,-0.007107220083831536],[116,297,74,-0.002894398843879528],[116,297,75,0.001336331244595923],[116,297,76,0.0055841858581631015],[116,297,77,0.009848381422199251],[116,297,78,0.014128136248538148],[116,297,79,0.018422671694919554],[116,298,64,-0.040962973520819304],[116,298,65,-0.036898028341300335],[116,298,66,-0.03280989613846212],[116,298,67,-0.028699331665415176],[116,298,68,-0.02456709615041991],[116,298,69,-0.020413956293214658],[116,298,70,-0.016240683238854803],[116,298,71,-0.012048051529201492],[116,298,72,-0.007836838032014196],[116,298,73,-0.003607820847788837],[116,298,74,6.382218060154224E-4],[116,298,75,0.004900512732884797],[116,298,76,0.009178276917649886],[116,298,77,0.013470742709236608],[116,298,78,0.017777143025787534],[116,298,79,0.022096716582182964],[116,299,64,-0.03790949594268807],[116,299,65,-0.03379693225847337],[116,299,66,-0.029662796786853372],[116,299,67,-0.025507855683328508],[116,299,68,-0.02133287956492303],[116,299,69,-0.017138642444703173],[116,299,70,-0.012925920643206495],[116,299,71,-0.008695491676925751],[116,299,72,-0.004448133123798645],[116,299,73,-1.8462146584806438E-4],[116,299,74,0.004094269091388374],[116,299,75,0.008387767822157909],[116,299,76,0.012695108706881973],[116,299,77,0.01701553168149219],[116,299,78,0.02134828390973495],[116,299,79,0.02569262107847229],[116,300,64,-0.0349299331407262],[116,300,65,-0.030770345820045036],[116,300,66,-0.02659077873771032],[116,300,67,-0.02239200955935363],[116,300,68,-0.018174818420807357],[116,300,69,-0.013939986801139954],[116,300,70,-0.009688296372005183],[116,300,71,-0.005420527823448366],[116,300,72,-0.0011374596661209505],[116,300,73,0.003160132989950666],[116,300,74,0.007471479680406373],[116,300,75,0.011795815854918006],[116,300,76,0.01613238416924314],[116,300,77,0.02048043580082253],[116,300,78,0.024839231787943998],[116,300,79,0.029208044392498703],[116,301,64,-0.03202626320102441],[116,301,65,-0.027820273421372395],[116,301,66,-0.023595871768917837],[116,301,67,-0.01935384752369789],[116,301,68,-0.015094990468008766],[116,301,69,-0.010820089698317343],[116,301,70,-0.006529932412887657],[116,301,71,-0.002225302675267493],[116,301,72,0.002093019846415925],[116,301,73,0.006424261164200737],[116,301,74,0.010767654279446818],[116,301,75,0.015122440515910756],[116,301,76,0.019487870877109088],[116,301,77,0.023863207427820835],[116,301,78,0.028247724699756133],[116,301,79,0.032640711121413354],[116,302,64,-0.029200402985501406],[116,302,65,-0.024948657729694255],[116,302,66,-0.0206800434458527],[116,302,67,-0.016395361129142496],[116,302,68,-0.012095410333490264],[116,302,69,-0.007780987922758241],[116,302,70,-0.0034528867970353653],[116,302,71,8.881054058104184E-4],[116,302,72,0.005241207633366744],[116,302,73,0.00960564676655057],[116,302,74,0.013980658992491499],[116,302,75,0.01836549120193138],[116,302,76,0.022759402411508617],[116,302,77,0.027161665210781834],[116,302,78,0.031571567234015246],[116,302,79,0.035988412656751845],[116,303,64,-0.026454206964432386],[116,303,65,-0.022157378501031035],[116,303,66,-0.017845197923202282],[116,303,67,-0.013518478038333042],[116,303,68,-0.009178028294557904],[116,303,69,-0.004824653471612757],[116,303,70,-4.591523462049319E-4],[116,303,71,0.003917683667951043],[116,303,72,0.008305071905483965],[116,303,73,0.012702239859951631],[116,303,74,0.017108426620036105],[116,303,75,0.021522884330849378],[116,303,76,0.025944879680725147],[116,303,77,0.03037369541334428],[116,303,78,0.03480863186522169],[116,303,79,0.0392490085285785],[116,304,64,-0.02378946610547756],[116,304,65,-0.019448251454054613],[116,304,66,-0.015093174804208817],[116,304,67,-0.010725060868931935],[116,304,68,-0.006344729110456726],[116,304,69,-0.0019529923712322227],[116,304,70,0.0024493445211809864],[116,304,71,0.006861486175149428],[116,304,72,0.01128264808198714],[116,304,73,0.015712058088807972],[116,304,74,0.020148957897587052],[116,304,75,0.02459260458992792],[116,304,76,0.029042272177913157],[116,304,77,0.033497253180886935],[116,304,78,0.03795686022819548],[116,304,79,0.042420427687909726],[116,305,64,-0.021207906819351585],[116,305,65,-0.016823027201074467],[116,305,66,-0.012425748057485078],[116,305,67,-0.008016906096779231],[116,305,68,-0.0035973309123934413],[116,305,69,8.321564454254679E-4],[116,305,70,0.005270744924729436],[116,305,71,0.009717634953507862],[116,305,72,0.014172039947905158],[116,305,73,0.018633187846865955],[116,305,74,0.02310032267358764],[116,305,75,0.02757270612327333],[116,305,76,0.032049619177566664],[116,305,77,0.0365303637455135],[116,305,78,0.04101426433107959],[116,305,79,0.04550066972724637],[116,306,64,-0.01871118996205915],[116,306,65,-0.014283390236062541],[116,306,66,-0.009844624991324026],[116,306,67,-0.005395743016984287],[116,306,68,-9.37584151910472E-4],[116,306,69,0.0035290222026415075],[116,306,70,0.008003258597639742],[116,306,71,0.012484321078014962],[116,306,72,0.016971420751572888],[116,306,73,0.021463785384930448],[116,306,74,0.025960661026855528],[116,306,75,0.0304613136585027],[116,306,76,0.03496503087092509],[116,306,77,0.0394711235697117],[116,306,78,0.0439789277067736],[116,306,79,0.04848780603930602],[116,307,64,-0.01630090989363446],[116,307,65,-0.011830957979654645],[116,307,66,-0.007351445285438747],[116,307,67,-0.00286323276288393],[116,307,68,0.0016328293924577492],[116,307,69,0.006135903287097962],[116,307,70,0.010645164903201929],[116,307,71,0.015159805699896937],[116,307,72,0.019679034242352615],[116,307,73,0.024202077858475127],[116,307,74,0.02872818432360466],[116,307,75,0.033256623572698665],[116,307,76,0.037786689440389924],[116,307,77,0.04231770142876168],[116,307,78,0.04684900650286852],[116,307,79,0.051379980914026596],[116,308,64,-0.013978593593516643],[116,308,65,-0.009467279881261878],[116,308,66,-0.004947780080268686],[116,308,67,-4.2096738300392844E-4],[116,308,68,0.004112297550104567],[116,308,69,0.008651168194215485],[116,308,70,0.01319481379208546],[116,308,71,0.017742421014394348],[116,308,72,0.022293195648433177],[116,308,73,0.026846364315001342],[116,308,74,0.03140117621389962],[116,308,75,0.03595690489750243],[116,308,76,0.040512850072797854],[116,308,77,0.04506833943173823],[116,308,78,0.04962273050993035],[116,308,79,0.05417541257368767],[116,309,64,-0.011745699832490832],[116,309,65,-0.007193836578221105],[116,309,66,-0.0026351311237791733],[116,309,67,0.0019295310240488722],[116,309,68,0.006499278634922126],[116,309,69,0.011073256415740293],[116,309,70,0.015650626700497605],[116,309,71,0.020230571169041284],[116,309,72,0.024812292594784777],[116,309,73,0.02939501662122075],[116,309,74,0.03397799356762406],[116,309,75,0.038560500263423086],[116,309,76,0.04314184191163278],[116,309,77,0.04772135398118833],[116,309,78,0.05229840412821127],[116,309,79,0.056872394146228994],[116,310,64,-0.00960361840113895],[116,310,65,-0.005012039111927741],[116,310,66,-4.1492997569811396E-4],[116,310,67,0.004186811116822772],[116,310,68,0.008792302263582547],[116,310,69,0.013400679268642926],[116,310,70,0.01801109738926858],[116,310,71,0.022622733112510077],[116,310,72,0.027234785961331817],[116,310,73,0.031846480330128824],[116,310,74,0.036457067350025116],[116,310,75,0.04106582678342946],[116,310,76,0.04567206894824148],[116,310,77,0.05027513667155131],[116,310,78,0.054874407272858555],[116,310,79,0.05946929457683672],[116,311,64,-0.007553669394922025],[116,311,65,-0.002923228201072242],[116,311,66,0.0017114627306883956],[116,311,67,0.006349493060258449],[116,311,68,0.010989970115401301],[116,311,69,0.015632020665197352],[116,311,70,0.02027479272373582],[116,311,71,0.02491745738388712],[116,311,72,0.029559210681209327],[116,311,73,0.03419927548782965],[116,311,74,0.03883690343669839],[116,311,75,0.043471376875684434],[116,311,76,0.04810201085191233],[116,311,77,0.05272815512617829],[116,311,78,0.05734919621747524],[116,311,79,0.061964559477650616],[116,312,64,-0.005597102555825059],[116,312,65,-9.286735719156586E-4],[116,312,66,0.0037427579692461965],[116,312,67,0.008416269216998049],[116,312,68,0.013090956633853193],[116,312,69,0.017765937824311878],[116,312,70,0.022440353394495988],[116,312,71,0.027113368842452773],[116,312,72,0.031784176479175946],[116,312,73,0.03645199738018902],[116,312,74,0.04111608336808582],[116,312,75,0.04577571902549865],[116,312,76,0.05043022373889336],[116,312,77,0.05507895377302914],[116,312,78,0.05972130437611303],[116,312,79,0.06435671191567258],[116,313,64,-0.0037350966705213817],[116,313,65,9.704266544459106E-4],[116,313,66,0.005677738944260088],[116,313,67,0.01038590478081293],[116,313,68,0.015094009669790465],[116,313,69,0.01980116192416241],[116,313,70,0.024506494579078664],[116,313,71,0.029209167338017913],[116,313,72,0.033908368550237725],[116,313,73,0.03860331721936715],[116,313,74,0.04329326504354347],[116,313,75,0.0479774984865568],[116,313,76,0.05265534088040627],[116,313,77,0.05732615455910264],[116,313,78,0.06198934302375095],[116,313,79,0.06664435313893186],[116,314,64,-0.001968759025164052],[116,314,65,0.0027729465177136897],[116,314,66,0.007515261656142497],[116,314,67,0.012257238352037167],[116,314,68,0.016997951066245326],[116,314,69,0.021736498696009035],[116,314,70,0.02647200654441853],[116,314,71,0.03120362832169493],[116,314,72,0.0359305481783565],[116,314,73,0.04065198277010698],[116,314,74,0.04536718335484996],[116,314,75,0.05007543792128988],[116,314,76,0.054776073349524945],[116,314,77,0.059468457603469055],[116,314,78,0.0641520019551308],[116,314,79,0.06882616324077509],[116,315,64,-2.99124916712884E-4],[116,315,65,0.004477832717012187],[116,315,66,0.009254255409680265],[116,315,67,0.014029182455102249],[116,315,68,0.018801677184916404],[116,315,69,0.023570828959296825],[116,315,70,0.02833575519023096],[116,315,71,0.033095603397205076],[116,315,72,0.0378495532953495],[116,315,73,0.04259681891588363],[116,315,74,0.047336650759264715],[116,315,75,0.05206833798050012],[116,315,76,0.05679121060703002],[116,315,77,0.0615046417890148],[116,315,78,0.06620805008205868],[116,315,79,0.07090090176239258],[116,316,64,0.001272842779140776],[116,316,65,0.00608410505244103],[116,316,66,0.010893723264752686],[116,316,67,0.01570072399810543],[116,316,68,0.020504159374271247],[116,316,69,0.02530310909797004],[116,316,70,0.030096682533216734],[116,316,71,0.03488402081265202],[116,316,72,0.039664298979906976],[116,316,73,0.04443672816484101],[116,316,74,0.04920055779205901],[116,316,75,0.05395507782216502],[116,316,76,0.058699621026160775],[116,316,77,0.06343356529282376],[116,316,78,0.06815633596909576],[116,316,79,0.07286740823350363],[116,317,64,0.0027462539835270416],[116,317,65,0.007590856809635088],[116,317,66,0.012432742429603516],[116,317,67,0.01727092467449634],[116,317,68,0.022104444379347304],[116,317,69,0.026932371478087302],[116,317,70,0.031753807132186285],[116,317,71,0.03656788589284915],[116,317,72,0.04137377789681612],[116,317,73,0.04617069109560659],[116,317,74,0.05095787351861514],[116,317,75,0.055734615569511675],[116,317,76,0.060500252356361056],[116,317,77,0.0652541660552893],[116,317,78,0.06999578830773404],[116,317,79,0.07472460265129618],[116,318,64,0.004120291733336473],[116,318,65,0.008997255087234368],[116,318,66,0.013870464596566906],[116,318,67,0.018738921306781564],[116,318,68,0.023601654693151758],[116,318,69,0.028457724806632195],[116,318,70,0.033306224453996475],[116,318,71,0.038146281412095084],[116,318,72,0.04297706067628623],[116,318,73,0.04779776674287592],[116,318,74,0.05260764592597908],[116,318,75,0.05740598870825098],[116,318,76,0.06219213212590427],[116,318,77,0.0669654621878426],[116,318,78,0.07172541632894253],[116,318,79,0.07647148589750627],[116,319,64,0.00539421244359603],[116,319,65,0.01030254106731901],[116,319,66,0.015206116220303684],[116,319,67,0.020103926132299943],[116,319,68,0.02499498884971496],[116,319,69,0.029878354431579046],[116,319,70,0.0347531071803589],[116,319,71,0.039618367907454405],[116,319,72,0.04447329623343116],[116,319,73,0.04931709292282502],[116,319,74,0.054149002253932044],[116,319,75,0.05896831442303202],[116,319,76,0.06377436798346064],[116,319,77,0.06856655231936029],[116,319,78,0.07334431015414536],[116,319,79,0.07810714009369893],[117,-64,64,-0.10539797059597966],[117,-64,65,-0.10900450366483572],[117,-64,66,-0.11250152567931859],[117,-64,67,-0.1158875852527883],[117,-64,68,-0.11916138408640853],[117,-64,69,-0.12232178255652038],[117,-64,70,-0.12536780536541692],[117,-64,71,-0.12829864725542028],[117,-64,72,-0.1311136787862759],[117,-64,73,-0.13381245217577975],[117,-64,74,-0.1363947072038768],[117,-64,75,-0.13886037717990285],[117,-64,76,-0.14120959497322694],[117,-64,77,-0.14344269910717533],[117,-64,78,-0.14556023991627787],[117,-64,79,-0.14756298576682303],[117,-63,64,-0.09970970201127505],[117,-63,65,-0.10330449600278735],[117,-63,66,-0.10679038623178638],[117,-63,67,-0.11016591819171562],[117,-63,68,-0.11342978988764252],[117,-63,69,-0.11658085741564439],[117,-63,70,-0.11961814060562015],[117,-63,71,-0.12254082872742822],[117,-63,72,-0.12534828626036676],[117,-63,73,-0.12804005872591429],[117,-63,74,-0.13061587858396473],[117,-63,75,-0.13307567119222996],[117,-63,76,-0.13541956082907225],[117,-63,77,-0.13764787677963786],[117,-63,78,-0.13976115948534384],[117,-63,79,-0.14176016675669256],[117,-62,64,-0.09394323114791658],[117,-62,65,-0.0975255439109236],[117,-62,66,-0.10099958640627249],[117,-62,67,-0.10436390091716963],[117,-62,68,-0.10761718163632217],[117,-62,69,-0.11075828023690282],[117,-62,70,-0.11378621150696011],[117,-62,71,-0.116700159047181],[117,-62,72,-0.11949948103202046],[117,-62,73,-0.12218371603411882],[117,-62,74,-0.12475258891223229],[117,-62,75,-0.12720601676236198],[117,-62,76,-0.1295441149323341],[117,-62,77,-0.13176720309970724],[117,-62,78,-0.13387581141305582],[117,-62,79,-0.13587068669660973],[117,-61,64,-0.08810287583122511],[117,-61,65,-0.09167197239062974],[117,-61,66,-0.0951334580541997],[117,-61,67,-0.09848587180609203],[117,-61,68,-0.10172790391221564],[117,-61,69,-0.10485840148233883],[117,-61,70,-0.10787637409566786],[117,-61,71,-0.11078099948980213],[117,-61,72,-0.11357162931308318],[117,-61,73,-0.11624779494024884],[117,-61,74,-0.11880921335163441],[117,-61,75,-0.12125579307558909],[117,-61,76,-0.12358764019437074],[117,-61,77,-0.12580506441339234],[117,-61,78,-0.12790858519386883],[117,-61,79,-0.12989893794884355],[117,-60,64,-0.08219299795021373],[117,-60,65,-0.08574815098974686],[117,-60,66,-0.08919637803930147],[117,-60,67,-0.09253621469674422],[117,-60,68,-0.09576634718864474],[117,-60,69,-0.0988856179230998],[117,-60,70,-0.1018930311060553],[117,-60,71,-0.10478775842102628],[117,-60,72,-0.10756914477223478],[117,-60,73,-0.1102367140910786],[117,-60,74,-0.11279017520616819],[117,-60,75,-0.11522942777660528],[117,-60,76,-0.1175545682887632],[117,-60,77,-0.1197658961164405],[117,-60,78,-0.12186391964444332],[117,-60,79,-0.12384936245556655],[117,-59,64,-0.07621799854262501],[117,-59,65,-0.07975848887808279],[117,-59,66,-0.08319276330402736],[117,-59,67,-0.08651935394641763],[117,-59,68,-0.08973694288191214],[117,-59,69,-0.09284436768099291],[117,-59,70,-0.09584062701460583],[117,-59,71,-0.09872488632422427],[117,-59,72,-0.10149648355535401],[117,-59,73,-0.10415493495439387],[117,-59,74,-0.10669994092908375],[117,-59,75,-0.10913139197222366],[117,-59,76,-0.11144937464891291],[117,-59,77,-0.11365417764718966],[117,-59,78,-0.11574629789211821],[117,-59,79,-0.1177264467233059],[117,-58,64,-0.0701823127553085],[117,-58,65,-0.0737074297978042],[117,-58,66,-0.07712706581038264],[117,-58,67,-0.08043974936315257],[117,-58,68,-0.08364415827433225],[117,-58,69,-0.08673912514325177],[117,-58,70,-0.08972364294689861],[117,-58,71,-0.09259687069990752],[117,-58,72,-0.09535813917801605],[117,-58,73,-0.09800695670489734],[117,-58,74,-0.10054301500260543],[117,-58,75,-0.10296619510531191],[117,-58,76,-0.10527657333658846],[117,-58,77,-0.10747442735011059],[117,-58,78,-0.10956024223383443],[117,-58,79,-0.11153471667762349],[117,-57,64,-0.06409040468026561],[117,-57,65,-0.06759944688903474],[117,-57,66,-0.07100376735552782],[117,-57,67,-0.07430189101179341],[117,-57,68,-0.07749249131118507],[117,-57,69,-0.08057439575083591],[117,-57,70,-0.08354659145769605],[117,-57,71,-0.08640823083804061],[117,-57,72,-0.0891586372904618],[117,-57,73,-0.09179731098226451],[117,-57,74,-0.09432393468949407],[117,-57,75,-0.09673837970027999],[117,-57,76,-0.09904071178174834],[117,-57,77,-0.10123119721037577],[117,-57,78,-0.10331030886584136],[117,-57,79,-0.10527873238835017],[117,-56,64,-0.05794676206621219],[117,-56,65,-0.061439037390506046],[117,-56,66,-0.0648273742619917],[117,-56,67,-0.06811029389422607],[117,-56,68,-0.07128646527144633],[117,-56,69,-0.07435471066011401],[117,-56,70,-0.07731401118404013],[117,-56,71,-0.08016351246300424],[117,-56,72,-0.08290253031487993],[117,-56,73,-0.0855305565211868],[117,-56,74,-0.08804726465629398],[117,-56,75,-0.09045251597996562],[117,-56,76,-0.09274636539349312],[117,-56,77,-0.09492906745929464],[117,-56,78,-0.09700108248403283],[117,-56,79,-0.09896308266522591],[117,-55,64,-0.051755890905497814],[117,-55,65,-0.05523071721510331],[117,-55,66,-0.05860241194233107],[117,-55,67,-0.061869492503639156],[117,-55,68,-0.0650306233121325],[117,-55,69,-0.06808462127777326],[117,-55,70,-0.07103046137119895],[117,-55,71,-0.07386728225105199],[117,-55,72,-0.07659439195484119],[117,-55,73,-0.07921127365324765],[117,-55,74,-0.08171759146810753],[117,-55,75,-0.0841131963537558],[117,-55,76,-0.08639813204197866],[117,-55,77,-0.08857264105045692],[117,-55,78,-0.09063717075474775],[117,-55,79,-0.09259237952378108],[117,-54,64,-0.04552230989669215],[117,-54,65,-0.04897901540062044],[117,-54,66,-0.052333419338555176],[117,-54,67,-0.0555840352531235],[117,-54,68,-0.058729522886573404],[117,-54,69,-0.06176869366926274],[117,-54,70,-0.06470051627177631],[117,-54,71,-0.06752412222057613],[117,-54,72,-0.07023881157720335],[117,-54,73,-0.07284405868094679],[117,-54,74,-0.07533951795521066],[117,-54,75,-0.07772502977726237],[117,-54,76,-0.0800006264116111],[117,-54,77,-0.08216653800690066],[117,-54,78,-0.08422319865635708],[117,-54,79,-0.08617125252177726],[117,-53,64,-0.03925054478269219],[117,-53,65,-0.04268846843556762],[117,-53,66,-0.046024943236162685],[117,-53,67,-0.04925847877845502],[117,-53,68,-0.052387730036461466],[117,-53,69,-0.05541150284062335],[117,-53,70,-0.05832875941783422],[117,-53,71,-0.06113862399502756],[117,-53,72,-0.06384038846633155],[117,-53,73,-0.06643351812371612],[117,-53,74,-0.06891765745135614],[117,-53,75,-0.0712926359833963],[117,-53,76,-0.07355847422537065],[117,-53,77,-0.07571538963915148],[117,-53,78,-0.07776380269147953],[117,-53,79,-0.07970434296605144],[117,-52,64,-0.032945122564180584],[117,-52,65,-0.036363614459871796],[117,-52,66,-0.039681532452622514],[117,-52,67,-0.042897382114896576],[117,-52,68,-0.04600981355751166],[117,-52,69,-0.049017626893536836],[117,-52,70,-0.05191977776585888],[117,-52,71,-0.05471538293832334],[117,-52,72,-0.0574037259504675],[117,-52,73,-0.059984262835763746],[117,-52,74,-0.062456627903598405],[117,-52,75,-0.0648206395846751],[117,-52,76,-0.0670763063400911],[117,-52,77,-0.06922383263396414],[117,-52,78,-0.0712636249696601],[117,-52,79,-0.07319629798960003],[117,-51,64,-0.026610565588755075],[117,-51,65,-0.030008987340786053],[117,-51,66,-0.033307731900620974],[117,-51,67,-0.03650530074834213],[117,-51,68,-0.03960033903905169],[117,-51,69,-0.04259164105391555],[117,-51,70,-0.045478155714893886],[117,-51,71,-0.048258992163066394],[117,-51,72,-0.05093342540057011],[117,-51,73,-0.053500901996066386],[117,-51,74,-0.055961045853963554],[117,-51,75,-0.0583136640470846],[117,-51,76,-0.0605587527130268],[117,-51,77,-0.0626965030140918],[117,-51,78,-0.06472730716083663],[117,-51,79,-0.06665176449922339],[117,-50,64,-0.020251385515580256],[117,-50,65,-0.023629110623857863],[117,-50,66,-0.026908076525925417],[117,-50,67,-0.030086780540645175],[117,-50,68,-0.03316386277739114],[117,-50,69,-0.03613811157387736],[117,-50,70,-0.03900846899768784],[117,-50,71,-0.04177403641142252],[117,-50,72,-0.044434080101475426],[117,-50,73,-0.0469880369703598],[117,-50,74,-0.04943552029280951],[117,-50,75,-0.051776325535344614],[117,-50,76,-0.05401043623954738],[117,-50,77,-0.056138029968929026],[117,-50,78,-0.05815948431943696],[117,-50,79,-0.060075382993578175],[117,-49,64,-0.0138720771553833],[117,-49,65,-0.017228491358778464],[117,-49,66,-0.02048708511968278],[117,-49,67,-0.023646351528960996],[117,-49,68,-0.0267049255627948],[117,-49,69,-0.029661589506935315],[117,-49,70,-0.03251527844467883],[117,-49,71,-0.035265085808477314],[117,-49,72,-0.03791026899519667],[117,-49,73,-0.04045025504494659],[117,-49,74,-0.04288464638369982],[117,-49,75,-0.04521322662939786],[117,-49,76,-0.04743596646178416],[117,-49,77,-0.049553029555849504],[117,-49,78,-0.05156477857893216],[117,-49,79,-0.053471781251458905],[117,-48,64,-0.0074771121861310075],[117,-48,65,-0.0108116138004547],[117,-48,66,-0.014049254005495171],[117,-48,67,-0.017188521599437734],[117,-48,68,-0.020228046340394434],[117,-48,69,-0.023166604356734344],[117,-48,70,-0.0260031236211562],[117,-48,71,-0.02873668948841379],[117,-48,72,-0.03136655029670721],[117,-48,73,-0.03389212303266487],[117,-48,74,-0.036312999060131856],[117,-48,75,-0.03862894991246457],[117,-48,76,-0.04083993314857148],[117,-48,77,-0.04294609827258056],[117,-48,78,-0.044947792717187185],[117,-48,79,-0.04684556789065286],[117,-47,64,-0.0010709327442186556],[117,-47,65,-0.004382932985127597],[117,-47,66,-0.0075990506011013315],[117,-47,67,-0.01071777003508545],[117,-47,68,-0.013737715744871926],[117,-47,69,-0.01665765759916804],[117,-47,70,-0.019476516337425753],[117,-47,71,-0.022193369093339577],[117,-47,72,-0.024807454982032073],[117,-47,73,-0.027318180750842802],[117,-47,74,-0.02972512649394654],[117,-47,75,-0.032028051430492144],[117,-47,76,-0.03422689974650628],[117,-47,77,-0.03632180650044414],[117,-47,78,-0.03831310359243367],[117,-47,79,-0.0402013257971926],[117,-46,64,0.0053420551089879975],[117,-46,65,0.0020531318186176595],[117,-46,66,-0.0011409068545025214],[117,-46,67,-0.0042385409376650696],[117,-46,68,-0.007238389508752219],[117,-46,69,-0.010139216077714175],[117,-46,70,-0.01293993403182081],[117,-46,71,-0.01563961214460141],[117,-46,72,-0.018237480148487695],[117,-46,73,-0.02073293437108048],[117,-46,74,-0.0231255434352593],[117,-46,75,-0.025415054022832506],[117,-46,76,-0.027601396701969927],[117,-46,77,-0.02968469181829758],[117,-46,78,-0.03166525544970511],[117,-46,79,-0.033543605424844025],[117,-45,64,0.011757488044936926],[117,-45,65,0.008492203783629138],[117,-45,66,0.005320787445141417],[117,-45,67,0.0022447634760806023],[117,-45,68,-7.344817446304219E-4],[117,-45,69,-0.003615705272312808],[117,-45,70,-0.006397813026883803],[117,-45,71,-0.009079865286912958],[117,-45,72,-0.011661082247398702],[117,-45,73,-0.014140849641185116],[117,-45,74,-0.016518724424238962],[117,-45,75,-0.01879444052448398],[117,-45,76,-0.02096791465443415],[117,-45,77,-0.023039252187506576],[117,-45,78,-0.02500875309806383],[117,-45,79,-0.02687691796516234],[117,-44,64,0.018171052250155695],[117,-44,65,0.01492995532290875],[117,-44,66,0.01178169148200614],[117,-44,67,0.00872778970400978],[117,-44,68,0.005769641898824784],[117,-44,69,0.0029084975583698602],[117,-44,70,1.4545834144230607E-4],[117,-44,71,-0.002518527405139248],[117,-44,72,-0.005082670189127669],[117,-44,73,-0.0075463449790983406],[117,-44,74,-0.009909096874574308],[117,-44,75,-0.01217064683972835],[117,-44,76,-0.014330897500896111],[117,-44,77,-0.01638993900779029],[117,-44,78,-0.018348054958456372],[117,-44,79,-0.020205728387953092],[117,-43,64,0.024578490333170833],[117,-43,65,0.021362115013450644],[117,-43,66,0.018237520353655223],[117,-43,67,0.015206239914153485],[117,-43,68,0.012269671207264299],[117,-43,69,0.009429070361465675],[117,-43,70,0.006685546721783009],[117,-43,71,0.004040057386438423],[117,-43,72,0.0014934016797498728],[117,-43,73,-9.537844386455774E-4],[117,-43,74,-0.0033010340284564954],[117,-43,75,-0.0055480548869951685],[117,-43,76,-0.007694735331264857],[117,-43,77,-0.009741150043759306],[117,-43,78,-0.011687565982024806],[117,-43,79,-0.013534448351959716],[117,-42,64,0.030975608355745088],[117,-42,65,0.027784474644858226],[117,-42,66,0.024684052136318857],[117,-42,67,0.02167587902593593],[117,-42,68,0.018761358497109693],[117,-42,69,0.015941753400878],[117,-42,70,0.013218180872124785],[117,-42,71,0.010591606882036642],[117,-42,72,0.008062840726791198],[117,-42,73,0.005632529452556656],[117,-42,74,0.003301152216586778],[117,-42,75,0.0010690145847074284],[117,-42,76,-0.0010637572350419289],[117,-42,77,-0.0030972222224939783],[117,-42,78,-0.005031630439216506],[117,-42,79,-0.0068674289861287985],[117,-41,64,0.03735828298860788],[117,-41,65,0.03419289639291623],[117,-41,66,0.031117135075569236],[117,-41,67,0.028132541917220366],[117,-41,68,0.02524052583823888],[117,-41,69,0.022442356494880022],[117,-41,70,0.019739158911605936],[117,-41,71,0.017131908049637046],[117,-41,72,0.014621423311722892],[117,-41,73,0.012208362983206822],[117,-41,74,0.009893218609173915],[117,-41,75,0.00767630930797214],[117,-41,76,0.005557776020878036],[117,-41,77,0.0035375756980153827],[117,-41,78,0.0016154754204867894],[117,-41,79,-2.0895354126815313E-4],[117,-40,64,0.04372246879182495],[117,-40,65,0.04058332011826438],[117,-40,66,0.03753269490254352],[117,-40,67,0.03457214075732973],[117,-40,68,0.031703072403054144],[117,-40,69,0.02892676638048819],[117,-40,70,0.026244355699455713],[117,-40,71,0.02365682442376138],[117,-40,72,0.02116500219232531],[117,-40,73,0.018769558676595244],[117,-40,74,0.016470997974028845],[117,-40,75,0.014269652937935362],[117,-40,76,0.01216567944344571],[117,-40,77,0.01015905058972344],[117,-40,78,0.00824955083837109],[117,-40,79,0.006436770088053323],[117,-39,64,0.05006420561950076],[117,-39,65,0.0469517707898669],[117,-39,66,0.043926742275406716],[117,-39,67,0.040990672465730515],[117,-39,68,0.038144981941623524],[117,-39,69,0.035390954204298386],[117,-39,70,0.032729730340770646],[117,-39,71,0.030162303625437814],[117,-39,72,0.027689514057847142],[117,-39,73,0.025312042836731274],[117,-39,74,0.023030406770098044],[117,-39,75,0.020844952621665525],[117,-39,76,0.018755851393412404],[117,-39,77,0.016763092544355818],[117,-39,78,0.014866478145509121],[117,-39,79,0.013065616971044136],[117,-38,64,0.05637962614895986],[117,-38,65,0.05329436603342175],[117,-38,66,0.05029538034619707],[117,-38,67,0.04738422629652883],[117,-38,68,0.044562330383041804],[117,-38,69,0.04183098313993372],[117,-38,70,0.03919133381927686],[117,-38,71,0.03664438500950851],[117,-38,72,0.03419098719010005],[117,-38,73,0.03183183322247496],[117,-38,74,0.029567452776974146],[117,-38,75,0.02739820669614823],[117,-38,76,0.025324281294153872],[117,-38,77,0.023345682592363692],[117,-38,78,0.02146223049114382],[117,-38,79,0.019673552877820688],[117,-37,64,0.06266496353458062],[117,-37,65,0.05960732380488398],[117,-37,66,0.056634812453231875],[117,-37,67,0.05374899154895196],[117,-37,68,0.05095129356318717],[117,-37,69,0.0482430161322801],[117,-37,70,0.0456253167572509],[117,-37,71,0.0430992074394565],[117,-37,72,0.040665549252411615],[117,-37,73,0.038325046849848166],[117,-37,74,0.036078242909807434],[117,-37,75,0.03392551251504772],[117,-37,76,0.0318670574695431],[117,-37,77,0.029902900551181277],[117,-37,78,0.028032879700618518],[117,-37,79,0.026256642146309406],[117,-36,64,0.06891655918593287],[117,-36,65,0.06588697018875833],[117,-36,66,0.06294134993872524],[117,-36,67,0.060081265403467254],[117,-36,68,0.057308155078523604],[117,-36,69,0.05462332376815571],[117,-36,70,0.05202793730225197],[117,-36,71,0.04952301718939478],[117,-36,72,0.047109435206081796],[117,-36,73,0.04478790792217047],[117,-36,74,0.04255899116234518],[117,-36,75,0.04042307440388537],[117,-36,76,0.03838037511051362],[117,-36,77,0.03643093300243028],[117,-36,78,0.034574604262493036],[117,-36,79,0.032811055678558354],[117,-35,64,0.07513087067050916],[117,-35,65,0.07212974732144273],[117,-35,66,0.06921142009190173],[117,-35,67,0.06637746088382679],[117,-35,68,0.06362931426623553],[117,-35,69,0.0609682922737087],[117,-35,70,0.05839556914095301],[117,-35,71,0.0559121759735145],[117,-35,72,0.053518995354634225],[117,-35,73,0.051216755888314314],[117,-35,74,0.049006026678397485],[117,-35,75,0.046887211743931956],[117,-35,76,0.044860544370607935],[117,-35,77,0.04292608139836662],[117,-35,78,0.041083697445143064],[117,-35,79,0.03933307906675898],[117,-34,64,0.08130447974083876],[117,-34,65,0.07833222143941987],[117,-34,66,0.07544157421740227],[117,-34,67,0.0726341149448263],[117,-34,68,0.06991129431048915],[117,-34,69,0.06727443163832725],[117,-34,70,0.06472470963985955],[117,-34,71,0.06226316910277596],[117,-34,72,0.05989070351565173],[117,-34,73,0.057608053628864564],[117,-34,74,0.055415801951510524],[117,-34,75,0.05331436718459803],[117,-34,76,0.051303998590296995],[117,-34,77,0.049384770297354],[117,-34,78,0.04755657554262649],[117,-34,79,0.045819120848758166],[117,-33,64,0.08743410048625733],[117,-33,65,0.08449109105256747],[117,-33,66,0.08162849582925258],[117,-33,67,0.07884789668605574],[117,-33,68,0.0761507504750929],[117,-33,69,0.0735383838653435],[117,-33,70,0.07101198811319598],[117,-33,71,0.06857261376912271],[117,-33,72,0.06622116532047484],[117,-33,73,0.06395839577046325],[117,-33,74,0.061784901153134286],[117,-33,75,0.05970111498460573],[117,-33,76,0.05770730265035373],[117,-33,77,0.055803555728648035],[117,-33,78,0.053989786250102534],[117,-33,79,0.05226572089334924],[117,-32,64,0.09351658760901094],[117,-32,65,0.09060319524226079],[117,-32,66,0.087769008970069],[117,-32,67,0.08501561569131488],[117,-32,68,0.08234447846222892],[117,-32,69,0.07975693134919959],[117,-32,70,0.07725417421762604],[117,-32,71,0.07483726745688868],[117,-32,72,0.072507126641429],[117,-32,73,0.07026451712800774],[117,-32,74,0.06811004858894365],[117,-32,75,0.06604416948160574],[117,-32,76,0.06406716145394264],[117,-32,77,0.0621791336861538],[117,-32,78,0.06038001716846142],[117,-32,79,0.05866955891499903],[117,-31,64,0.09954894482484256],[117,-31,65,0.09666552208442403],[117,-31,66,0.09386008665565615],[117,-31,67,0.0911342304938434],[117,-31,68,0.08848942289741168],[117,-31,69,0.08592700537923026],[117,-31,70,0.08344818647396568],[117,-31,71,0.08105403648154941],[117,-31,72,0.07874548214673982],[117,-31,73,0.07652330127485507],[117,-31,74,0.07438811728347638],[117,-31,75,0.07234039369039513],[117,-31,76,0.07038042853758597],[117,-31,77,0.06850834875131384],[117,-31,78,0.06672410443832899],[117,-31,79,0.06502746311817287],[117,-30,64,0.1055283333882242],[117,-30,65,0.10267521719768757],[117,-30,66,0.09989885944515609],[117,-30,67,0.09720085716753202],[117,-30,68,0.09458268594083541],[117,-30,69,0.0920456947702255],[117,-30,70,0.08959110091604905],[117,-30,71,0.08721998465598824],[117,-30,72,0.08493328398329836],[117,-30,73,0.08273178924120173],[117,-30,74,0.08061613769324849],[117,-30,75,0.07858680802990625],[117,-30,76,0.07664411481117028],[117,-30,77,0.07478820284529519],[117,-30,78,0.07301904150360905],[117,-30,79,0.07133641897142418],[117,-29,64,0.11145208074191293],[117,-29,65,0.10862959241633041],[117,-29,66,0.10588262413642613],[117,-29,67,0.1032127780437887],[117,-29,68,0.10062153602478274],[117,-29,69,0.09811025461944878],[117,-29,70,0.09568015986642175],[117,-29,71,0.09333234208394248],[117,-29,72,0.09106775058694727],[117,-29,73,0.08888718834030607],[117,-29,74,0.08679130654801892],[117,-29,75,0.08478059917863101],[117,-29,76,0.08285539742666104],[117,-29,77,0.08101586411014117],[117,-29,78,0.07926198800422957],[117,-29,79,0.07759357811091283],[117,-28,64,0.11731768929100139],[117,-28,65,0.11452613458818173],[117,-28,66,0.11180885258681894],[117,-28,67,0.10916745055423127],[117,-28,68,0.10660341671727214],[117,-28,69,0.1041181151902798],[117,-28,70,0.10171278083903568],[117,-28,71,0.09938851408080807],[117,-28,72,0.0971462756204653],[117,-28,73,0.09498688112272902],[117,-28,74,0.09291099582037687],[117,-28,75,0.09091912905865729],[117,-28,76,0.08901162877570479],[117,-28,77,0.08718867591906398],[117,-28,78,0.08545027879827305],[117,-28,79,0.08379626737353196],[117,-27,64,0.12312284530160145],[117,-27,65,0.12036251449761493],[117,-27,66,0.11767520065950299],[117,-27,67,0.11506251619934882],[117,-27,68,0.1125259557120808],[117,-27,69,0.11006689092262922],[117,-27,70,0.10768656556908696],[117,-27,71,0.10538609022194456],[117,-27,72,0.10316643703939021],[117,-27,73,0.10102843445873777],[117,-27,74,0.09897276182380021],[117,-27,75,0.096999943948464],[117,-27,76,0.09511034561625908],[117,-27,77,0.09330416601602487],[117,-27,78,0.09158143311363387],[117,-27,79,0.08994199795978619],[117,-26,64,0.12886542792386335],[117,-26,65,0.12613659591334137],[117,-26,66,0.12347951729502227],[117,-26,67,0.12089580964282909],[117,-26,68,0.11838697394484232],[117,-26,69,0.11595438956981619],[117,-26,70,0.11359930916969085],[117,-26,71,0.11132285351817361],[117,-26,72,0.10912600628537417],[117,-26,73,0.10700960874856325],[117,-26,74,0.10497435443886904],[117,-26,75,0.10302078372416401],[117,-26,76,0.10114927832794329],[117,-26,77,0.09936005578429019],[117,-26,78,0.09765316382889067],[117,-26,79,0.0960284747261132],[117,-25,64,0.13454351833948175],[117,-25,65,0.13184644476115204],[117,-25,66,0.1292198537082514],[117,-25,67,0.12666536793170557],[117,-25,68,0.12418449483537375],[117,-25,69,0.12177862146206642],[117,-25,70,0.11944900941555225],[117,-25,71,0.11719678971862701],[117,-25,72,0.11502295760722847],[117,-25,73,0.11292836726066946],[117,-25,74,0.11091372646779907],[117,-25,75,0.10897959122934986],[117,-25,76,0.10712636029626721],[117,-25,77,0.10535426964412076],[117,-25,78,0.10366338688355503],[117,-25,79,0.10205360560680199],[117,-24,64,0.14015540903383739],[117,-24,65,0.13749033842175618],[117,-24,66,0.13489447271089172],[117,-24,67,0.13236943984247485],[117,-24,68,0.1299167536563809],[117,-24,69,0.12753780889678146],[117,-24,70,0.12523387615377912],[117,-24,71,0.12300609674109708],[117,-24,72,0.12085547750981085],[117,-24,73,0.11878288559818595],[117,-24,74,0.11678904311744409],[117,-24,75,0.11487452177370217],[117,-24,76,0.11303973742589202],[117,-24,77,0.11128494457975069],[117,-24,78,0.10961023081784849],[117,-24,79,0.10801551116566788],[117,-23,64,0.14569961319247304],[117,-23,65,0.1430667751534196],[117,-23,66,0.14050185815920913],[117,-23,67,0.13800649535287957],[117,-23,68,0.13558220702823887],[117,-23,69,0.13323039565527306],[117,-23,70,0.13095234084153562],[117,-23,71,0.12874919422958253],[117,-23,72,0.1266219743304441],[117,-23,73,0.1245715612931968],[117,-23,74,0.12259869161045756],[117,-23,75,0.12070395276004431],[117,-23,76,0.11888777778260984],[117,-23,77,0.11715043979534256],[117,-23,78,0.1154920464416973],[117,-23,79,0.11391253427716963],[117,-22,64,0.15117487422205944],[117,-22,65,0.14857448363955073],[117,-22,66,0.1460407245271661],[117,-22,67,0.1435752352395142],[117,-22,68,0.14117954254000198],[117,-22,69,0.13885505664611808],[117,-22,70,0.13660306621068996],[117,-22,71,0.13442473323918225],[117,-22,72,0.13232108794302522],[117,-22,73,0.13029302352903926],[117,-22,74,0.12834129092477242],[117,-22,75,0.12646649344000238],[117,-22,76,0.12466908136420374],[117,-22,77,0.12294934650007694],[117,-22,78,0.12130741663310052],[117,-22,79,0.11974324993712337],[117,-21,64,0.15658017539599556],[117,-21,65,0.15401243266138587],[117,-21,66,0.15151002660509727],[117,-21,67,0.14907460080139867],[117,-21,68,0.14670768849679405],[117,-21,69,0.1444107076752853],[117,-21,70,0.1421849560596069],[117,-21,71,0.14003160604849418],[117,-21,72,0.13795169958997866],[117,-21,73,0.1359461429907698],[117,-21,74,0.13401570166155075],[117,-21,75,0.13216099479842736],[117,-21,76,0.1303824900003403],[117,-21,77,0.12868049782253166],[117,-21,78,0.12705516626603186],[117,-21,79,0.12550647520317793],[117,-20,64,0.1619147496243376],[117,-20,65,0.1593798408954662],[117,-20,66,0.15690896932361864],[117,-20,67,0.15450378370921458],[117,-20,68,0.15216582379326593],[117,-20,69,0.14989651534272075],[117,-20,70,0.14769716517177311],[117,-20,71,0.14556895609920195],[117,-20,72,0.14351294184173202],[117,-20,73,0.14153004184347662],[117,-20,74,0.13962103604128795],[117,-20,75,0.13778655956625774],[117,-20,76,0.1360270973811747],[117,-20,77,0.13434297885403157],[117,-20,78,0.1327343722675478],[117,-20,79,0.13120127926471925],[117,-19,64,0.16717808934822986],[117,-19,65,0.16467618683607377],[117,-19,66,0.16223701770294296],[117,-19,67,0.15986223598037141],[117,-19,68,0.15755338791329476],[117,-19,69,0.1553119070655652],[117,-19,70,0.1531391093614276],[117,-19,71,0.15103618806302133],[117,-19,72,0.14900420868389785],[117,-19,73,0.14704410383861632],[117,-19,74,0.145156668028244],[117,-19,75,0.14334255236199878],[117,-19,76,0.14160225921484604],[117,-19,77,0.13993613682114225],[117,-19,78,0.138344373804285],[117,-19,79,0.1368269936423897],[117,-18,64,0.1723699565589557],[117,-18,65,0.16990121884275666],[117,-18,66,0.16749390692772648],[117,-18,67,0.16514968008003272],[117,-18,68,0.16287009105605077],[117,-18,69,0.1606565812281313],[117,-18,70,0.15851047564632692],[117,-18,71,0.15643297803613965],[117,-18,72,0.15442516573228093],[117,-18,73,0.1524879845485031],[117,-18,74,0.15062224358333454],[117,-18,75,0.14882860996195046],[117,-18,76,0.147107603513995],[117,-18,77,0.14545959138744435],[117,-18,78,0.14388478259847493],[117,-18,79,0.14238322251735103],[117,-17,64,0.17749039294132707],[117,-17,65,0.17505496531264975],[117,-17,66,0.17267965254715612],[117,-17,67,0.17036611914780841],[117,-17,68,0.16811592438813883],[117,-17,69,0.16593051745834597],[117,-17,70,0.16381123254734742],[117,-17,71,0.16175928386084903],[117,-17,72,0.15977576057542286],[117,-17,73,0.15786162172865326],[117,-17,74,0.15601769104518182],[117,-17,75,0.15424465169888502],[117,-17,76,0.15254304101099914],[117,-17,77,0.15091324508428205],[117,-17,78,0.14935549337317588],[117,-17,79,0.14786985318998724],[117,-16,64,0.1825397301415813],[117,-16,65,0.1801377449777658],[117,-16,66,0.17779456080045186],[117,-16,67,0.17551184735028802],[117,-16,68,0.17329117042198983],[117,-16,69,0.17113398703083393],[117,-16,70,0.1690416405151034],[117,-16,71,0.16701535557454916],[117,-16,72,0.16505623324485397],[117,-16,73,0.16316524580816116],[117,-16,74,0.16134323163950193],[117,-16,75,0.1595908899893479],[117,-16,76,0.15790877570210904],[117,-16,77,0.15629729387066627],[117,-16,78,0.1547566944268991],[117,-16,79,0.153287066668229],[117,-15,64,0.18751860015987187],[117,-15,65,0.1851501773273443],[117,-15,66,0.18283923906787036],[117,-15,67,0.18058746035950268],[117,-15,68,0.17839641352059055],[117,-15,69,0.17626756339673078],[117,-15,70,0.17420226248366932],[117,-15,71,0.17220174598621374],[117,-15,72,0.1702671268131466],[117,-15,73,0.16839939050819963],[117,-15,74,0.16659939011692326],[117,-15,75,0.16486784098967933],[117,-15,76,0.16320531552057527],[117,-15,77,0.16161223782242828],[117,-15,78,0.16008887833772556],[117,-15,79,0.1586353483855929],[117,-14,64,0.1924279458671353],[117,-14,65,0.19009319315503792],[117,-14,66,0.18781460644699066],[117,-14,67,0.18559386595709548],[117,-14,68,0.1834325505283283],[117,-14,69,0.1813321328400027],[117,-14,70,0.17929397455118012],[117,-14,71,0.1773193213800892],[117,-14,72,0.1754092981195433],[117,-14,73,0.1735649035884147],[117,-14,74,0.1717870055190035],[117,-14,75,0.1700763353805247],[117,-14,76,0.168433483138535],[117,-14,77,0.16685889195038806],[117,-14,78,0.16535285279667955],[117,-14,79,0.16391549904870095],[117,-13,64,0.19726903164643106],[117,-13,65,0.19496804523103173],[117,-13,66,0.1927219044543772],[117,-13,67,0.19053229476429445],[117,-13,68,0.18840080152804983],[117,-13,69,0.18632890526037027],[117,-13,70,0.1843179767874109],[117,-13,71,0.18236927234672973],[117,-13,72,0.18048392862325657],[117,-13,73,0.17866295772131668],[117,-13,74,0.17690724207254827],[117,-13,75,0.17521752927993217],[117,-13,76,0.17359442689776283],[117,-13,77,0.17203839714764135],[117,-13,78,0.17054975157045882],[117,-13,79,0.16912864561438523],[117,-12,64,0.20204345415890024],[117,-12,65,0.1997763190992473],[117,-12,66,0.19756270785277097],[117,-12,67,0.19540431109784273],[117,-12,68,0.1933027207244843],[117,-12,69,0.19125942508298854],[117,-12,70,0.18927580416848688],[117,-12,71,0.1873531247415191],[117,-12,72,0.1854925353845973],[117,-12,73,0.1836950614948214],[117,-12,74,0.18196160021238617],[117,-12,75,0.18029291528519964],[117,-12,76,0.17868963186943776],[117,-12,77,0.17715223126612223],[117,-12,78,0.1756810455936847],[117,-12,79,0.17427625239653377],[117,-11,64,0.2067531532340695],[117,-11,65,0.20451994399935114],[117,-11,66,0.202338935603531],[117,-11,67,0.2002118239516023],[117,-11,68,0.19814020745374838],[117,-11,69,0.19612558229460075],[117,-11,70,0.19416933763843902],[117,-11,71,0.1922727507703944],[117,-11,72,0.1904369821736437],[117,-11,73,0.18866307054265252],[117,-11,74,0.1869519277323104],[117,-11,75,0.18530433364317267],[117,-11,76,0.1837209310426383],[117,-11,77,0.18220222032214917],[117,-11,78,0.18074855419037184],[117,-11,79,0.17936013230238335],[117,-10,64,0.21140042288472105],[117,-10,65,0.20920120391379227],[117,-10,66,0.20705286194454786],[117,-10,67,0.20495709810405816],[117,-10,68,0.20291551731916269],[117,-10,69,0.20092962360639266],[117,-10,70,0.19900081529783575],[117,-10,71,0.19713038020300244],[117,-10,72,0.19531949070668086],[117,-10,73,0.1935691988028393],[117,-10,74,0.19188043106441932],[117,-10,75,0.19025398354923362],[117,-10,76,0.18869051664179914],[117,-10,77,0.1871905498311871],[117,-10,78,0.18575445642485866],[117,-10,79,0.1843824581984982],[117,-9,64,0.21598792244617526],[117,-9,65,0.21382274873971496],[117,-9,66,0.21170712759347632],[117,-9,67,0.20964276535156834],[117,-9,68,0.20763127345321963],[117,-9,69,0.2056741637433912],[117,-9,70,0.20377284371933113],[117,-9,71,0.20192861171312793],[117,-9,72,0.20014265201025294],[117,-9,73,0.19841602990414664],[117,-9,74,0.196749686686697],[117,-9,75,0.19514443457481867],[117,-9,76,0.19360095157296664],[117,-9,77,0.19211977627166799],[117,-9,78,0.1907013025820331],[117,-9,79,0.1893457744062671],[117,-8,64,0.2205186878401807],[117,-8,65,0.21838760558594017],[117,-8,66,0.21630475107648262],[117,-8,67,0.21427183586755372],[117,-8,68,0.2122904779059025],[117,-8,69,0.21036219686060575],[117,-8,70,0.20848840939033053],[117,-8,71,0.20667042434659744],[117,-8,72,0.20490943791302918],[117,-8,73,0.20320652868064326],[117,-8,74,0.20156265265903572],[117,-8,75,0.19997863822366313],[117,-8,76,0.19845518099906023],[117,-8,77,0.1969928386780706],[117,-8,78,0.19559202577706092],[117,-8,79,0.1942530083271301],[117,-7,64,0.22499614296318038],[117,-7,65,0.2228991901947862],[117,-7,66,0.22084914018227375],[117,-7,67,0.21884770968739697],[117,-7,68,0.21689652315912222],[117,-7,69,0.21499710808567618],[117,-7,70,0.21315089028253653],[117,-7,71,0.21135918911641738],[117,-7,72,0.20962321266524375],[117,-7,73,0.2079440528141644],[117,-7,74,0.20632268028745948],[117,-7,75,0.20475993961654138],[117,-7,76,0.20325654404389337],[117,-7,77,0.20181307036301854],[117,-7,78,0.20042995369437233],[117,-7,79,0.1991074821972878],[117,-6,64,0.22942411119906236],[117,-6,65,0.22736131848883467],[117,-6,66,0.22534410354151624],[117,-6,67,0.22337418831915856],[117,-6,68,0.22145320376737665],[117,-6,69,0.21958268518813684],[117,-6,70,0.21776406754848276],[117,-6,71,0.21599868072525896],[117,-6,72,0.2142877446858208],[117,-6,73,0.21263236460478252],[117,-6,74,0.21103352591665903],[117,-6,75,0.20949208930460206],[117,-6,76,0.2080087856250693],[117,-6,77,0.20658421076850786],[117,-6,78,0.20521882045601647],[117,-6,79,0.2039129249720033],[117,-5,64,0.23380682705651346],[117,-5,65,0.23177821824276346],[117,-5,66,0.22979386233176757],[117,-5,67,0.22785548648022835],[117,-5,68,0.2259647281247601],[117,-5,69,0.22412313037542053],[117,-5,70,0.22233213734518475],[117,-5,71,0.22059308941541445],[117,-5,72,0.21890721843731176],[117,-5,73,0.2172756428694116],[117,-5,74,0.21569936285096936],[117,-5,75,0.21417925521143732],[117,-5,76,0.21271606841587964],[117,-5,77,0.21131041744639434],[117,-5,78,0.20996277861952028],[117,-5,79,0.2086734843396334],[117,-4,64,0.2381489479307346],[117,-4,65,0.23615454088000154],[117,-4,66,0.23420306210767206],[117,-4,67,0.23229624395967396],[117,-4,68,0.23043573035807208],[117,-4,69,0.22862307221535305],[117,-4,70,0.22685972278465272],[117,-4,71,0.2251470329459725],[117,-4,72,0.2234862464283881],[117,-4,73,0.2218784949682917],[117,-4,74,0.22032479340352817],[117,-4,75,0.21882603470362283],[117,-4,76,0.21738298493594554],[117,-4,77,0.21599627816788058],[117,-4,78,0.21466641130498287],[117,-4,79,0.21339373886512225],[117,-3,64,0.242455565989658],[117,-3,65,0.240495373394348],[117,-3,66,0.23857678475656663],[117,-3,67,0.2367015376064181],[117,-3,68,0.23487128234616828],[117,-3,69,0.23308757768528354],[117,-3,70,0.23135188601141132],[117,-3,71,0.22966556869735633],[117,-3,72,0.22802988134404023],[117,-3,73,0.2264459689594972],[117,-3,74,0.22491486107376746],[117,-3,75,0.22343746678987642],[117,-3,76,0.22201456977075207],[117,-3,77,0.2206468231621509],[117,-3,78,0.21933474445156254],[117,-3,79,0.21807871026310932],[117,-2,64,0.24673222018475022],[117,-2,65,0.2448062503966419],[117,-2,66,0.24292056057958034],[117,-2,67,0.24107689344334338],[117,-2,68,0.23927690586564598],[117,-2,69,0.2375221643479335],[117,-2,70,0.23581414040712056],[117,-2,71,0.2341542059033216],[117,-2,72,0.23254362830356956],[117,-2,73,0.2309835658815651],[117,-2,74,0.22947506285332775],[117,-2,75,0.22801904444893006],[117,-2,76,0.22661631192016973],[117,-2,77,0.225267537484251],[117,-2,78,0.22397325920344624],[117,-2,79,0.22273387580074833],[117,-1,64,0.2509849083861945],[117,-1,65,0.2490931662862687],[117,-1,66,0.24724038049801583],[117,-1,67,0.245428298907101],[117,-1,68,0.24365858486264202],[117,-1,69,0.24193281265375977],[117,-1,70,0.24025246292207159],[117,-1,71,0.23861891801018165],[117,-1,72,0.23703345724615366],[117,-1,73,0.2354972521640163],[117,-1,74,0.2340113616601739],[117,-1,75,0.23257672708589283],[117,-1,76,0.23119416727573228],[117,-1,77,0.2298643735119813],[117,-1,78,0.22858790442507526],[117,-1,79,0.22736518083000457],[117,0,64,0.2552200996425591],[117,0,65,0.2533625875476186],[117,0,66,0.2515427083851258],[117,0,67,0.2497622152137412],[117,0,68,0.24802277785086208],[117,0,69,0.2463259783699303],[117,0,70,0.2446733065336818],[117,0,71,0.24306615516339125],[117,0,72,0.2415058154441022],[117,0,73,0.23999347216588984],[117,0,74,0.23853019890102345],[117,0,75,0.23711695311721415],[117,0,76,0.23575457122679755],[117,0,77,0.2344437635719263],[117,0,78,0.233185109345745],[117,0,79,0.23197905144955444],[117,1,64,0.259444746565059],[117,1,65,0.2576214651715989],[117,1,66,0.25583449352339005],[117,1,67,0.2540855898502727],[117,1,68,0.25237643043594693],[117,1,69,0.2507086051360355],[117,1,70,0.2490836128320884],[117,1,71,0.24750285682158435],[117,1,72,0.24596764014391392],[117,1,73,0.24447916084239907],[117,1,74,0.24303850716221154],[117,1,75,0.24164665268437258],[117,1,76,0.24030445139569556],[117,1,77,0.23901263269473094],[117,1,78,0.2377717963336966],[117,1,79,0.23658240729639668],[117,2,64,0.2636658489593239],[117,2,65,0.2618767990181586],[117,2,66,0.2601227357296678],[117,2,67,0.2584054224937143],[117,2,68,0.2567265420590721],[117,2,69,0.25508769206224124],[117,2,70,0.2534903805022107],[117,2,71,0.2519360211512126],[117,2,72,0.2504259289014643],[117,2,73,0.2489613150479395],[117,2,74,0.2475432825070455],[117,2,75,0.24617282097137727],[117,2,76,0.24485080200041476],[117,2,77,0.24357797404722503],[117,2,78,0.2423549574211472],[117,2,79,0.24118223918646764],[117,3,64,0.2678840556858665],[117,3,65,0.2661292490293779],[117,3,66,0.26440810640031104],[117,3,67,0.26272239635908823],[117,3,68,0.2610738081098219],[117,3,69,0.2594639470598934],[117,3,70,0.2578943303154787],[117,3,71,0.256366382113069],[117,3,72,0.25488142918697526],[117,3,73,0.25344069607286623],[117,3,74,0.2520453003472096],[117,3,75,0.250696247802793],[117,3,76,0.24939442756018504],[117,3,77,0.2481406071152057],[117,3,78,0.24693542732237606],[117,3,79,0.24577939731436094],[117,4,64,0.2720948996385298],[117,4,65,0.27037436625869526],[117,4,66,0.2686861755138109],[117,4,67,0.26703210110026887],[117,4,68,0.26541383865220664],[117,4,69,0.2638330013218701],[117,4,70,0.26229111529592664],[117,4,71,0.26078961524777133],[117,4,72,0.2593298397258219],[117,4,73,0.25791302647784237],[117,4,74,0.2565403077111778],[117,4,75,0.25521270528906315],[117,4,76,0.2539311258628789],[117,4,77,0.25269635594041107],[117,4,78,0.2515090568900975],[117,4,79,0.2503697598812634],[117,5,64,0.27629380311621293],[117,5,65,0.2746075898223664],[117,5,66,0.27295239979420544],[117,5,67,0.271330011824506],[117,5,68,0.2697421279366385],[117,5,69,0.2681903689857484],[117,5,70,0.26667627019589024],[117,5,71,0.26520127663315696],[117,5,72,0.26376673861479893],[117,5,73,0.2623739070543749],[117,5,74,0.2610239287428155],[117,5,75,0.25971784156556277],[117,5,76,0.25845656965565833],[117,5,77,0.2572409184828386],[117,5,78,0.2560715698786177],[117,5,79,0.2549490769973616],[117,6,64,0.2804762161196872],[117,6,65,0.2788243850216104],[117,6,66,0.27720226064733416],[117,6,67,0.27561162683175505],[117,6,68,0.2740541919315],[117,6,69,0.2725315844469713],[117,6,70,0.2710453485803459],[117,6,71,0.2695969397295764],[117,6,72,0.26818771991838297],[117,6,73,0.26681895316228194],[117,6,74,0.2654918007705295],[117,6,75,0.26420731658414637],[117,6,76,0.262966442149892],[117,6,77,0.261770001830253],[117,6,78,0.2606186978494178],[117,6,79,0.25951310527525207],[117,7,64,0.28463761925598124],[117,7,65,0.2830202462901134],[117,7,66,0.2814312671502568],[117,7,67,0.2798724706448038],[117,7,68,0.2783455713927765],[117,7,69,0.2768522054667868],[117,7,70,0.2753939259719611],[117,7,71,0.2739721985608691],[117,7,72,0.2725883968844504],[117,7,73,0.2712437979789816],[117,7,74,0.2699395775889659],[117,7,75,0.2686768054261065],[117,7,76,0.2674564403642371],[117,7,77,0.2662793255702695],[117,7,78,0.265146183571136],[117,7,79,0.26405761125673344],[117,8,64,0.28877352658916233],[117,8,65,0.2871907000874671],[117,8,66,0.28563495898615865],[117,8,67,0.284108096984461],[117,8,68,0.28261183487834035],[117,8,69,0.2811478162244473],[117,8,70,0.27971760294003123],[117,8,71,0.2783226708388662],[117,8,72,0.2769644051031829],[117,8,73,0.27564409569164644],[117,8,74,0.27436293268326767],[117,8,75,0.27312200155740246],[117,8,76,0.27192227840971717],[117,8,77,0.2707646251041784],[117,8,78,0.2696497843610453],[117,8,79,0.2685783747808708],[117,9,64,0.2928794884376233],[117,9,65,0.2913313077386495],[117,9,66,0.28980890932485703],[117,9,67,0.2883140916899156],[117,9,68,0.28684858170699845],[117,9,69,0.2854140303137801],[117,9,70,0.2840120081334144],[117,9,71,0.28264400103153603],[117,9,72,0.28131140560927675],[117,9,73,0.28001552463233825],[117,9,74,0.278757562396008],[117,9,75,0.2775386200262744],[117,9,76,0.27635969071691574],[117,9,77,0.27522165490262657],[117,9,78,0.2741252753681531],[117,9,79,0.2730711922934517],[117,10,64,0.2969510941179789],[117,10,65,0.29543766821965445],[117,10,66,0.2939487276490112],[117,10,67,0.29248607558437684],[117,10,68,0.2910514448624118],[117,10,69,0.2896464936842399],[117,10,70,0.28827280125757493],[117,10,71,0.2869318633748816],[117,10,72,0.2856250879275666],[117,10,73,0.28435379035623576],[117,10,74,0.28311918903691163],[117,10,75,0.2819224006033582],[117,10,76,0.2807644352053973],[117,10,77,0.2796461917032708],[117,10,78,0.27856845279802905],[117,10,79,0.2775318800979513],[117,11,64,0.30098397463535986],[117,11,65,0.2995054208890562],[117,11,66,0.298050062525822],[117,11,67,0.2966197072857763],[117,11,68,0.2952160938416672],[117,11,69,0.2938408875262222],[117,11,70,0.29249567599551274],[117,11,71,0.2911819648283683],[117,11,72,0.2899011730618372],[117,11,73,0.28865462866272956],[117,11,74,0.2874435639351361],[117,11,75,0.2862691108640718],[117,11,76,0.2851322963951259],[117,11,77,0.2840340376501744],[117,11,78,0.282975137079135],[117,11,79,0.2819562775477703],[117,12,64,0.3049738053202131],[117,12,65,0.3035302481656175],[117,12,66,0.302108604324332],[117,12,67,0.30071068596264294],[117,12,68,0.29933823744861365],[117,12,69,0.2979929311007493],[117,12,70,0.2966763628726929],[117,12,71,0.29539004797399426],[117,12,72,0.2941354164269417],[117,12,73,0.2929138085594979],[117,12,74,0.29172647043423056],[117,12,75,0.29057454921338816],[117,12,76,0.2894590884599997],[117,12,77,0.28838102337505994],[117,12,78,0.28734117597077313],[117,12,79,0.28634025017986797],[117,13,64,0.3089163084117089],[117,13,65,0.30750787815204284],[117,13,66,0.30612008787842726],[117,13,67,0.3047547540352545],[117,13,68,0.3034136265320677],[117,13,69,0.3020983845136348],[117,13,70,0.3008106320660801],[117,13,71,0.2995518938591102],[117,13,72,0.2983236107243281],[117,13,73,0.2971271351696724],[117,13,74,0.295963726829879],[117,13,75,0.2948345478531058],[117,13,76,0.29374065822361056],[117,13,77,0.29268301102053296],[117,13,78,0.2916624476127626],[117,13,79,0.2906796927898986],[117,14,64,0.3128072555875365],[117,14,65,0.3114340872046591],[117,14,66,0.31008029509531976],[117,14,67,0.3087476998218433],[117,14,68,0.3074380566686618],[117,14,69,0.30615305143390076],[117,14,70,0.3048942961570504],[117,14,71,0.30366332478276037],[117,14,72,0.30246158876074825],[117,14,73,0.3012904525818625],[117,14,74,0.3001511892501942],[117,14,75,0.29904497569138144],[117,14,76,0.2979728880969913],[117,14,77,0.2969358972050373],[117,14,78,0.2959348635166073],[117,14,79,0.294970532448613],[117,15,64,0.3166424704402736],[117,15,65,0.3153047024492058],[117,15,66,0.3139850575096978],[117,15,67,0.3126853601300425],[117,15,68,0.311407370790527],[117,15,69,0.31015278175663596],[117,15,70,0.3089232128283729],[117,15,71,0.3077202070257361],[117,15,72,0.3065452262103415],[117,15,73,0.30539964664323055],[117,15,74,0.30428475447876147],[117,15,75,0.3032017411947214],[117,15,76,0.30215169895855226],[117,15,77,0.3011356159297413],[117,15,78,0.30015437149835505],[117,15,79,0.29920873145972776],[117,16,64,0.3204178309001927],[117,16,65,0.3191156042426019],[117,16,66,0.31783025878340687],[117,16,67,0.3165636227934365],[117,16,68,0.31531746175766895],[117,16,69,0.31409347421015826],[117,16,70,0.31289328750511924],[117,16,71,0.3117184535242015],[117,16,72,0.31057044431994907],[117,16,73,0.3094506476954792],[117,16,74,0.308360362720284],[117,16,75,0.3073007951822883],[117,16,76,0.306273052976058],[117,16,77,0.30527814142720944],[117,16,78,0.3043169585530008],[117,16,79,0.3033902902591118],[117,17,64,0.3241292716046814],[117,17,65,0.32286272858086407],[117,17,66,0.3216118371508385],[117,17,67,0.3203784291533948],[117,17,68,0.31916427487522],[117,17,69,0.31797107890766113],[117,17,70,0.31680047593968574],[117,17,71,0.3156540264870761],[117,17,72,0.31453321255784805],[117,17,73,0.3134394332539327],[117,17,74,0.31237400030902196],[117,17,75,0.3113381335627117],[117,17,76,0.3103329563708369],[117,17,77,0.3093594909520508],[117,17,78,0.3084186536706256],[117,17,79,0.3075112502554857],[117,18,64,0.3277727862140679],[117,18,65,0.3265420694529671],[117,18,66,0.32532578780981763],[117,18,67,0.32412577648597446],[117,18,68,0.322943810355351],[117,18,69,0.3217815998431285],[117,18,70,0.32064078674070934],[117,18,71,0.3195229399569528],[117,18,72,0.3184295512056811],[117,18,73,0.31736203062949425],[117,18,74,0.3163217023597988],[117,18,75,0.31530980001317643],[117,18,76,0.31432746212399665],[117,18,77,0.31337572751331505],[117,18,78,0.3124555305940445],[117,18,79,0.31156769661240324],[117,19,64,0.33134442967395267],[117,19,65,0.33014968114074966],[117,19,66,0.3289681652580892],[117,19,67,0.3278017203739983],[117,19,68,0.32665212572394914],[117,19,69,0.3255210973316243],[117,19,70,0.3244102838459839],[117,19,71,0.3233212623146624],[117,19,72,0.32225553389369255],[117,19,73,0.32121451949358637],[117,19,74,0.3201995553616852],[117,19,75,0.3192118886009017],[117,19,76,0.3182526726247554],[117,19,77,0.31732296254874975],[117,19,78,0.316423710518073],[117,19,79,0.31555576097162674],[117,20,64,0.3348403204241383],[117,20,65,0.33368168046495533],[117,20,66,0.3325350855754976],[117,20,67,0.3314023770243991],[117,20,68,0.33028533817215333],[117,20,69,0.32918569039405055],[117,20,70,0.3281050889394721],[117,20,71,0.32704511872757625],[117,20,72,0.326007290079365],[117,20,73,0.32499303438616917],[117,20,74,0.324003699714459],[117,20,75,0.3230405463471046],[117,20,76,0.32210474226098806],[117,20,77,0.3211973585410164],[117,20,78,0.3203193647305126],[117,20,79,0.3194716241179974],[117,21,64,0.338256642553968],[117,21,65,0.3371342489772205],[117,21,66,0.33602272865166855],[117,21,67,0.33492392553063727],[117,21,68,0.33383962685255614],[117,21,69,0.33277155908617684],[117,21,70,0.331721383812216],[117,21,71,0.33069069354145014],[117,21,72,0.32968100746925744],[117,21,73,0.32869376716663956],[117,21,74,0.32773033220763614],[117,21,75,0.3267919757332487],[117,21,76,0.3258798799517841],[117,21,77,0.32499513157565885],[117,21,78,0.3241387171946494],[117,21,79,0.3233115185855928],[117,22,64,0.3415896479041729],[117,22,65,0.34050363509810805],[117,22,66,0.3394273403592908],[117,22,67,0.3383626100802956],[117,22,68,0.33731123512017025],[117,22,69,0.3362749467720471],[117,22,70,0.33525541266724856],[117,22,71,0.3342542326159147],[117,22,72,0.33327293438414923],[117,22,73,0.3323129694077129],[117,22,74,0.3313757084421812],[117,22,75,0.3304624371496821],[117,22,76,0.3295743516221199],[117,22,77,0.32871255384093445],[117,22,78,0.3278780470733717],[117,22,79,0.3270717312052783],[117,23,64,0.34483565811530903],[117,23,65,0.3437861562012711],[117,23,66,0.3427452346730858],[117,23,67,0.3417147421079321],[117,23,68,0.34069647271824866],[117,23,69,0.33969216234184696],[117,23,70,0.3387034843685945],[117,23,71,0.33773204560369824],[117,23,72,0.3367793820675803],[117,23,73,0.3358469547323782],[117,23,74,0.33493614519498716],[117,23,75,0.3340482512867548],[117,23,76,0.33318448261974304],[117,23,77,0.3323459560695963],[117,23,78,0.331533691195002],[117,23,79,0.3307486055937482],[117,24,64,0.3479910666226109],[117,24,65,0.3469782006435676],[117,24,66,0.3459727957342829],[117,24,67,0.34497670239301476],[117,24,68,0.3439917179087751],[117,24,69,0.3430195823740499],[117,24,70,0.342061974634176],[117,24,71,0.34112050817339684],[117,24,72,0.3401967269375967],[117,24,73,0.339292101093739],[117,24,74,0.33840802272593185],[117,24,75,0.3375458014682271],[117,24,76,0.33670666007406963],[117,24,77,0.3358917299224356],[117,24,78,0.3351020464606459],[117,24,79,0.33433854458385887],[117,25,64,0.3510523405973531],[117,25,65,0.35007622974122354],[117,25,66,0.34910647986069837],[117,25,67,0.3481449431030315],[117,25,68,0.34719341954772054],[117,25,69,0.3462536532419401],[117,25,70,0.3453273281727193],[117,25,71,0.34441606417589066],[117,25,72,0.3435214127818044],[117,25,73,0.3426448529978368],[117,25,74,0.3417877870276152],[117,25,75,0.3409515359270662],[117,25,76,0.3401373351972015],[117,25,77,0.3393463303136854],[117,25,78,0.3385795721931622],[117,25,79,0.3378380125963572],[117,26,64,0.354016022834795],[117,26,65,0.3530767796921171],[117,26,66,0.3521428175024927],[117,26,67,0.3512159897818529],[117,26,68,0.3502980991051473],[117,26,69,0.34939089316458927],[117,26,70,0.34849606076474465],[117,26,71,0.3476152277544865],[117,26,72,0.3467499528958108],[117,26,73,0.34590172366954286],[117,26,74,0.345071952017858],[117,26,75,0.34426197002371794],[117,26,76,0.3434730255271451],[117,26,77,0.3427062776783698],[117,26,78,0.34196279242783967],[117,26,79,0.3412435379530916],[117,27,64,0.35687873358854916],[117,27,65,0.35597646344402234],[117,27,66,0.35507841514344185],[117,27,67,0.35418644328318305],[117,27,68,0.35330235262998766],[117,27,69,0.3524278942021194],[117,27,70,0.3515647612874668],[117,27,71,0.3507145853986141],[117,27,72,0.34987893216487914],[117,27,73,0.3490592971613402],[117,27,74,0.34825710167478474],[117,27,75,0.3474736884066744],[117,27,76,0.3467103171130511],[117,27,77,0.3459681601814201],[117,27,78,0.34524829814459695],[117,27,79,0.3445517151315213],[117,28,64,0.3596371723514575],[117,28,65,0.35877197250890014],[117,28,66,0.35790995714781143],[117,28,67,0.3570529816491851],[117,28,68,0.35620285265959234],[117,28,69,0.3553613241953423],[117,28,70,0.35453009368369715],[117,28,71,0.35371079794116933],[117,28,72,0.35290500908889166],[117,28,73,0.3521142304050902],[117,28,74,0.35133989211458694],[117,28,75,0.3505833471154303],[117,28,76,0.3498458666425749],[117,28,77,0.349128635868651],[117,28,78,0.34843274944180536],[117,28,79,0.3477592069606219],[117,29,64,0.36228811958304347],[117,29,65,0.3614600787233041],[117,29,66,0.360634207552903],[117,29,67,0.3598123619343536],[117,29,68,0.3589963500741155],[117,29,69,0.35818792864984506],[117,29,70,0.3573887988748227],[117,29,71,0.35660060249957526],[117,29,72,0.3558249177506923],[117,29,73,0.3550632552068592],[117,29,74,0.35431705361204113],[117,29,75,0.35358767562590787],[117,29,76,0.35287640351142985],[117,29,77,0.35218443475967703],[117,29,78,0.35151287765181],[117,29,79,0.3508627467582656],[117,30,64,0.3648284383833954],[117,30,65,0.3640376359547518],[117,30,66,0.3632480118071202],[117,30,67,0.3624614219744816],[117,30,68,0.3616796758955846],[117,30,69,0.3609045325643702],[117,30,70,0.3601376966177004],[117,30,71,0.3593808143604053],[117,30,72,0.35863546972765054],[117,30,73,0.3579031801846433],[117,30,74,0.3571853925636179],[117,30,75,0.3564834788381838],[117,30,76,0.3557987318349707],[117,30,77,0.35513236088260147],[117,30,78,0.3544854873979814],[117,30,79,0.35385914040990757],[117,31,64,0.3672550761135571],[117,31,65,0.3665015817541454],[117,31,66,0.3657482984536393],[117,31,67,0.3649970821008024],[117,31,68,0.3642497430317383],[117,31,69,0.36350804220357097],[117,31,70,0.3627736873055568],[117,31,71,0.3620483288076531],[117,31,72,0.3613335559465332],[117,31,73,0.36063089264907733],[117,31,74,0.3599417933932719],[117,31,75,0.3592676390066064],[117,31,76,0.35860973240189575],[117,31,77,0.3579692942505669],[117,31,78,0.35734745859339045],[117,31,79,0.3567452683886677],[117,32,64,0.36956506596248806],[117,32,65,0.36884893895429716],[117,32,66,0.3681320807597434],[117,32,67,0.3674163467993707],[117,32,68,0.3667035479646945],[117,32,69,0.36599544681520635],[117,32,70,0.3652937537129537],[117,32,71,0.3646001228947121],[117,32,72,0.36391614848174886],[117,32,73,0.36324336042719607],[117,32,74,0.3625832204009785],[117,32,75,0.36193711761237246],[117,32,76,0.3613063645701358],[117,32,77,0.36069219278023706],[117,32,78,0.3600957483811735],[117,32,79,0.35951808771688065],[117,33,64,0.37175552846046067],[117,33,65,0.3710768172144302],[117,33,66,0.370396458291684],[117,33,67,0.3697163063155455],[117,33,68,0.36903817238430964],[117,33,69,0.3683638202916378],[117,33,70,0.3676949626846783],[117,33,71,0.36703325715992596],[117,33,72,0.3663803022968207],[117,33,73,0.36573763362910217],[117,33,74,0.365106719553869],[117,33,75,0.36448895717841406],[117,33,76,0.3638856681047798],[117,33,77,0.3632980941520597],[117,33,78,0.36272739301643636],[117,33,79,0.3621746338689587],[117,34,64,0.3738236729389667],[117,34,65,0.3731824145107276],[117,34,66,0.37253861843514835],[117,34,67,0.37189413820364975],[117,34,68,0.3712507847663076],[117,34,69,0.37061032277570116],[117,34,70,0.3699744667686393],[117,34,71,0.36934487728578447],[117,34,72,0.36872315692916763],[117,34,73,0.3681108463576176],[117,34,74,0.36750942022004784],[117,34,75,0.3669202830266767],[117,34,76,0.3663447649581204],[117,34,77,0.3657841176123909],[117,34,78,0.36523950968978136],[117,34,79,0.36471202261565094],[117,35,64,0.3757667989371839],[117,35,65,0.37516301857297785],[117,35,66,0.3745558378613804],[117,35,67,0.37394710882185855],[117,35,68,0.37333864189522925],[117,35,69,0.3727322022110108],[117,35,70,0.3721295057928192],[117,35,71,0.37153221570182204],[117,35,72,0.3709419381182496],[117,35,73,0.37036021836097943],[117,35,74,0.3697885368451469],[117,35,75,0.36922830497784725],[117,35,76,0.36868086099187747],[117,35,77,0.36814746571754237],[117,35,78,0.3676292982925163],[117,35,79,0.3671274518097619],[117,36,64,0.37758229755488804],[117,36,65,0.3770160082672048],[117,36,66,0.37644548393883903],[117,36,67,0.3758725747721994],[117,36,68,0.3752990903320822],[117,36,69,0.3747267958365721],[117,36,70,0.37415740838616107],[117,36,71,0.37359259313109494],[117,36,72,0.37303395937694966],[117,36,73,0.37248305662845005],[117,36,74,0.37194137057148813],[117,36,75,0.371410318993402],[117,36,76,0.37089124764146625],[117,36,77,0.3703854260196183],[117,36,78,0.36989404312341045],[117,36,79,0.3694182031131912],[117,37,64,0.3792676527518756],[117,37,65,0.37873885492434606],[117,37,66,0.3782050160904614],[117,37,67,0.37766798428572823],[117,37,68,0.37712956782676077],[117,37,69,0.3765915316257721],[117,37,70,0.37605559344346023],[117,37,71,0.3755234200803041],[117,37,72,0.37499662350626495],[117,37,73,0.3744767569289126],[117,37,74,0.3739653107999274],[117,37,75,0.37346370876004464],[117,37,76,0.3729733035223869],[117,37,77,0.37249537269421373],[117,37,78,0.3720311145370743],[117,37,79,0.37158164366537044],[117,38,64,0.3808204425939359],[117,38,65,0.38032912361501764],[117,38,66,0.37983198709657096],[117,38,67,0.37933087855292585],[117,38,68,0.37882760467527643],[117,38,69,0.3783239296697901],[117,38,70,0.37782157153430374],[117,38,71,0.3773221982736118],[117,38,72,0.37682742405335246],[117,38,73,0.37633880529250013],[117,38,74,0.37585783669442663],[117,38,75,0.37538594721658625],[117,38,76,0.3749244959787813],[117,38,77,0.3744747681100272],[117,38,78,0.374037970534012],[117,38,79,0.3736152276931499],[117,39,64,0.3822383404452746],[117,39,65,0.38178447437026974],[117,39,66,0.3813240443433278],[117,39,67,0.3808588929992103],[117,39,68,0.3803908250216939],[117,39,69,0.3799216035053242],[117,39,70,0.3794529462559486],[117,39,71,0.378986522030041],[117,39,72,0.37852394671281553],[117,39,73,0.3780667794351441],[117,39,74,0.3776165186292379],[117,39,75,0.3771745980231481],[117,39,76,0.3767423825740399],[117,39,77,0.37632116434026597],[117,39,78,0.37591215829222424],[117,39,79,0.3755164980620104],[117,40,64,0.38351911610747214],[117,40,65,0.38310266334841325],[117,40,66,0.38267893101680955],[117,40,67,0.38224975850565146],[117,40,68,0.3818169481048641],[117,40,69,0.38138226138671993],[117,40,70,0.38094741553023276],[117,40,71,0.3805140795845487],[117,40,72,0.3800838706713285],[117,40,73,0.3796583501261367],[117,40,74,0.37923901957879996],[117,40,75,0.3788273169727858],[117,40,76,0.37842461252355986],[117,40,77,0.37803220461594467],[117,40,78,0.37765131564046717],[117,40,79,0.37728308776870384],[117,41,64,0.384660636904922],[117,41,65,0.38428154394786507],[117,41,66,0.3838944872426643],[117,41,67,0.3835013025748327],[117,41,68,0.3831037894498919],[117,41,69,0.382703707502446],[117,41,70,0.38230277284445546],[117,41,71,0.38190265435271464],[117,41,72,0.3815049698955355],[117,41,73,0.3811112824986468],[117,41,74,0.38072309645027813],[117,41,75,0.3803418533454711],[117,41,76,0.37996892806958493],[117,41,77,0.37960562472101167],[117,41,78,0.37925317247309515],[117,41,79,0.37891272137525556],[117,42,64,0.38566086871680993],[117,42,65,0.38531906786607373],[117,42,66,0.3849686511713999],[117,42,67,0.3846114504419235],[117,42,68,0.38424926200440757],[117,42,69,0.383883843135982],[117,42,70,0.3835169084362986],[117,42,71,0.3831501261391139],[117,42,72,0.38278511436329454],[117,42,73,0.3824234373032593],[117,42,74,0.382066601358826],[117,42,75,0.38171605120450525],[117,42,76,0.38137316579820724],[117,42,77,0.38103925432938046],[117,42,78,0.38071555210657004],[117,42,79,0.38040321638440666],[117,43,64,0.3865178769555634],[117,43,65,0.38621328610444905],[117,43,66,0.38589946000923536],[117,43,67,0.3855782261308841],[117,43,68,0.38525137721956326],[117,43,69,0.3849206677710375],[117,43,70,0.3845878104227052],[117,43,71,0.38425447228929],[117,43,72,0.3839222712381835],[117,43,73,0.3835927721044523],[117,43,74,0.3832674828454784],[117,43,75,0.38294785063527426],[117,43,76,0.3826352578984384],[117,43,77,0.3823310182837716],[117,43,78,0.38203637257754086],[117,43,79,0.3817524845564012],[117,44,64,0.38722982749181034],[117,44,65,0.38696234991934353],[117,44,66,0.3866850509945558],[117,44,67,0.386399753455851],[117,44,68,0.3861082460757975],[117,44,69,0.3858122801411511],[117,44,70,0.385513565872763],[117,44,71,0.3852137687853765],[117,44,72,0.38491450598731425],[117,44,73,0.38461734242006185],[117,44,74,0.38432378703772574],[117,44,75,0.3840352889263975],[117,44,76,0.383753233363399],[117,44,77,0.3834789378164204],[117,44,78,0.3832136478825463],[117,44,79,0.38295853316717227],[117,45,64,0.38779498752586394],[117,45,65,0.38756451171909523],[117,45,66,0.3873236623199878],[117,45,67,0.38707425696771486],[117,45,68,0.38681808005338747],[117,45,69,0.38655687922368476],[117,45,70,0.3862923618246106],[117,45,71,0.3860261912853865],[117,45,72,0.3857599834424764],[117,45,73,0.38549530280375477],[117,45,74,0.3852336587527918],[117,45,75,0.384976501693292],[117,45,76,0.38472521913365393],[117,45,77,0.3844811317116717],[117,45,78,0.38424548915936585],[117,45,79,0.38401946620795147],[117,46,64,0.3882117264056876],[117,46,65,0.38801812590708806],[117,46,66,0.38781363400004776],[117,46,67,0.3876000628458439],[117,46,68,0.38737919204773563],[117,46,69,0.38715276517816066],[117,46,70,0.3869224862463139],[117,46,71,0.38669001610611375],[117,46,72,0.3864569688045537],[117,46,73,0.38622490787044883],[117,46,74,0.38599534254355466],[117,46,75,0.3857697239440882],[117,46,76,0.38554944118262635],[117,46,77,0.385335817410397],[117,46,78,0.3851301058099528],[117,46,79,0.3849334855262344],[117,47,64,0.3884785163913701],[117,47,65,0.3883216496708624],[117,47,66,0.3881534086843931],[117,47,67,0.38797559973498597],[117,47,68,0.38778999722942664],[117,47,69,0.3875983402289783],[117,47,70,0.38740232894074533],[117,47,71,0.3872036211496814],[117,47,72,0.3870038285912475],[117,47,73,0.38680451326472204],[117,47,74,0.3866071836871481],[117,47,75,0.3864132910879401],[117,47,76,0.38622422554413205],[117,47,77,0.38604131205627673],[117,47,78,0.3858658065649896],[117,47,79,0.385698891908144],[117,48,64,0.3885939333661151],[117,48,65,0.3884736437172768],[117,48,66,0.38834153241668434],[117,48,67,0.38819939952735366],[117,48,68,0.38804901384905877],[117,48,69,0.3878921094925151],[117,48,70,0.38773038239447644],[117,48,71,0.38756548677374875],[117,48,72,0.3873990315281209],[117,48,73,0.3872325765722171],[117,48,74,0.38706762911625625],[117,48,75,0.38690563988573934],[117,48,76,0.38674799928204723],[117,48,77,0.3865960334839582],[117,48,78,0.38645100049008163],[117,48,79,0.3863140861022081],[117,49,64,0.3885566574937218],[117,49,65,0.38847277295369775],[117,49,66,0.38837665533902954],[117,49,67,0.38827009808986435],[117,49,68,0.38815486398682264],[117,49,69,0.3880326817485816],[117,49,70,0.3879052425706503],[117,49,71,0.38777419660533935],[117,49,72,0.38764114938292404],[117,49,73,0.3875076581740062],[117,49,74,0.387375228293062],[117,49,75,0.387245309343193],[117,49,76,0.3871192914020657],[117,49,77,0.3869985011490488],[117,49,78,0.3868841979335421],[117,49,79,0.3867775697845017],[117,50,64,0.388365473822577],[117,50,65,0.3883178071152401],[117,50,66,0.38825753234203353],[117,50,67,0.38818643593656077],[117,50,68,0.38810627424684896],[117,50,69,0.38801877015625574],[117,50,70,0.3879256096458585],[117,50,71,0.3878284382983185],[117,50,72,0.38772885774322907],[117,50,73,0.3876284220439433],[117,50,74,0.3875286340258761],[117,50,75,0.38743094154629404],[117,50,76,0.3873367337055782],[117,50,77,0.3872473369999716],[117,50,78,0.3871640114158022],[117,50,79,0.3870879464651892],[117,51,64,0.38801927283614873],[117,51,65,0.3880076213380473],[117,51,66,0.38798302366044457],[117,51,67,0.38794725884620174],[117,51,68,0.38790207639632013],[117,51,69,0.387849192914091],[117,51,70,0.3877902886910185],[117,51,71,0.38772700423451567],[117,51,72,0.3876609367373727],[117,51,73,0.3875936364890016],[117,51,74,0.3875266032284487],[117,51,75,0.3874612824391861],[117,51,76,0.38739906158567217],[117,51,77,0.38734126629168814],[117,51,78,0.3872891564604455],[117,51,79,0.3872439223364683],[117,52,64,0.387517050949983],[117,52,65,0.3875411966786105],[117,52,66,0.38755209541439617],[117,52,67,0.38755151842502034],[117,52,68,0.3875412079493403],[117,52,69,0.3875228738646882],[117,52,70,0.38749819029624333],[117,52,71,0.3874687921684805],[117,52,72,0.38743627169869127],[117,52,73,0.3874021748325819],[117,52,74,0.38736799762194385],[117,52,75,0.38733518254440175],[117,52,76,0.387305114765233],[117,52,77,0.3872791183412655],[117,52,78,0.38725845236684664],[117,52,79,0.38724430706189034],[117,53,64,0.3868579109552126],[117,53,65,0.38691762057913964],[117,53,66,0.3869638200962538],[117,53,67,0.3869982726146618],[117,53,68,0.38702271269557476],[117,53,69,0.3870388430436491],[117,53,70,0.38704833113971526],[117,53,71,0.387052805815889],[117,53,72,0.3870538537730674],[117,53,73,0.38705301604080905],[117,53,74,0.38705178437959853],[117,53,75,0.3870515976254956],[117,53,76,0.38705383797716764],[117,53,77,0.3870598272253075],[117,53,78,0.3870708229244346],[117,53,79,0.38708801450708125],[117,54,64,0.3860410624085545],[117,54,65,0.3861360872789609],[117,54,66,0.3862173770030466],[117,54,67,0.38628668614528056],[117,54,68,0.38634574117364107],[117,54,69,0.3863962371728896],[117,54,70,0.3864398345005489],[117,54,71,0.3864781553855812],[117,54,72,0.3865127804697701],[117,54,73,0.3865452452918013],[117,54,74,0.3865770367140482],[117,54,75,0.3866095892920578],[117,54,76,0.38664428158673636],[117,54,77,0.38668243241924105],[117,54,78,0.386725297068569],[117,54,79,0.38677406341185117],[117,55,64,0.3850658219688238],[117,55,65,0.38519589817196664],[117,55,66,0.3853120526145063],[117,55,67,0.3854160309338156],[117,55,68,0.3855095510892704],[117,55,69,0.38559430009833084],[117,55,70,0.3856719307156568],[117,55,71,0.38574405805524586],[117,55,72,0.3858122561556011],[117,55,73,0.3858780544879226],[117,55,74,0.3859429344073312],[117,55,75,0.38600832554711384],[117,55,76,0.38607560215599857],[117,55,77,0.386146079378457],[117,55,78,0.38622100947803184],[117,55,79,0.3863015780036936],[117,56,64,0.38393161367995754],[117,56,65,0.3840964621101157],[117,56,66,0.38424724091671125],[117,56,67,0.3843856864274476],[117,56,68,0.38451350767823883],[117,56,69,0.3846323831719699],[117,56,70,0.3847439575806216],[117,56,71,0.384849838390754],[117,56,72,0.38495159249235134],[117,56,73,0.38505074271102346],[117,56,74,0.38514876428357336],[117,56,75,0.38524708127691965],[117,56,76,0.3853470629503801],[117,56,77,0.385450020061318],[117,56,78,0.38555720111414427],[117,56,79,0.38566978855268463],[117,57,64,0.38263796920051796],[117,57,65,0.38283729565294916],[117,57,66,0.3830224436713036],[117,57,67,0.3831951398921996],[117,57,68,0.38335708401403834],[117,57,69,0.3835099455782992],[117,57,70,0.383655360694543],[117,57,71,0.38379492870911325],[117,57,72,0.38393020881754025],[117,57,73,0.38406271662064184],[117,57,74,0.3841939206243319],[117,57,75,0.38432523868312407],[117,57,76,0.3844580343873377],[117,57,77,0.38459361339400633],[117,57,78,0.3847332197014843],[117,57,79,0.38487803186775826],[117,58,64,0.3811845279797214],[117,58,65,0.3814180232631704],[117,58,66,0.3816372706303248],[117,58,67,0.3818439866467327],[117,58,68,0.38203986126032896],[117,58,69,0.382226554605116],[117,58,70,0.3824056937489012],[117,58,71,0.38257886938508023],[117,58,72,0.3827476324684723],[117,58,73,0.38291349079519976],[117,58,74,0.38307790552662535],[117,58,75,0.3832422876573309],[117,58,76,0.38340799442714846],[117,58,77,0.3835763256772412],[117,58,78,0.3837485201502322],[117,58,79,0.38392575173438476],[117,59,64,0.37957103737997944],[117,59,65,0.3798383774482749],[117,59,66,0.3800914396966576],[117,59,67,0.3803319302413185],[117,59,68,0.38056152886816225],[117,59,69,0.38078188585871153],[117,59,70,0.38099461876042584],[117,59,71,0.38120130910142225],[117,59,72,0.38140349904960413],[117,59,73,0.381602688016188],[117,59,74,0.38180032920364826],[117,59,75,0.38199782609805477],[117,59,76,0.3821965289058218],[117,59,77,0.3823977309348612],[117,59,78,0.3826026649201403],[117,59,79,0.38281249929364736],[117,60,64,0.3777973527459058],[117,60,65,0.3780981988481847],[117,60,66,0.3783847770300277],[117,60,67,0.37865878258194796],[117,60,68,0.3789218847179315],[117,60,69,0.3791757234233958],[117,60,70,0.3794219062479278],[117,60,71,0.3796620050427876],[117,60,72,0.3798975526431819],[117,60,73,0.38013003949529933],[117,60,74,0.3803609102281291],[117,60,75,0.38059156017003354],[117,60,76,0.3808233318100953],[117,60,77,0.3810575112042347],[117,60,78,0.3812953243260926],[117,60,79,0.3815379333626849],[117,61,64,0.3758634374198619],[117,61,65,0.37619743626895763],[117,61,66,0.3765172170986372],[117,61,67,0.3768244639996434],[117,61,68,0.3771208352061157],[117,61,69,0.3774079599654254],[117,61,70,0.37768743535316035],[117,61,71,0.3779608230332463],[117,61,72,0.3782296459632089],[117,61,73,0.3784953850445689],[117,61,74,0.37875947571838964],[117,61,75,0.37902330450595134],[117,61,76,0.37928820549456954],[117,61,77,0.37955545676855373],[117,61,78,0.3798262767853033],[117,61,79,0.38010182069654697],[117,62,64,0.37376936270401434],[117,62,65,0.37413614666254785],[117,62,66,0.37448880267640344],[117,62,67,0.3748290032649493],[117,62,68,0.3751583952767947],[117,62,69,0.3754785967813111],[117,62,70,0.37579119390568444],[117,62,71,0.3760977376174791],[117,62,72,0.3763997404527235],[117,62,73,0.37669867318950273],[117,62,74,0.37699596146708636],[117,62,75,0.3772929823505573],[117,62,76,0.3775910608409635],[117,62,77,0.37789146633098913],[117,62,78,0.37819540900614024],[117,62,79,0.37850403619145057],[117,63,64,0.3715153077688459],[117,63,65,0.37191449505255747],[117,63,66,0.37229968478574565],[117,63,67,0.37267253754754687],[117,63,68,0.3730346883978781],[117,63,69,0.37338774379044837],[117,63,70,0.37373327843168597],[117,63,71,0.37407283208556463],[117,63,72,0.3744079063243342],[117,63,73,0.3747399612251432],[117,63,74,0.3750704120125852],[117,63,75,0.37540062564712573],[117,63,76,0.37573191735944256],[117,63,77,0.376065547130667],[117,63,78,0.3764027161185255],[117,63,79,0.37674456302938775],[117,64,64,0.3691015595082246],[117,64,65,0.3695327544060835],[117,64,66,0.36995012258602294],[117,64,67,0.37035531232109065],[117,64,68,0.3707499464821488],[117,64,69,0.37113561947216994],[117,64,70,0.37151389410684016],[117,64,71,0.37188629844145393],[117,64,72,0.3722543225441044],[117,64,73,0.37261941521516],[117,64,74,0.37298298065305363],[117,64,75,0.373346375066348],[117,64,76,0.3737109032321034],[117,64,77,0.3740778150005402],[117,64,78,0.37444830174599336],[117,64,79,0.3748234927641656],[117,65,64,0.3665285123409425],[117,65,65,0.3669913054515732],[117,65,66,0.36744048320753575],[117,65,67,0.3678776812131834],[117,65,68,0.368304509753035],[117,65,69,0.3687225507471385],[117,65,70,0.36913335465314207],[117,65,71,0.369538437315056],[117,65,72,0.36993927675870963],[117,65,73,0.37033730993389086],[117,65,74,0.3707339294032011],[117,65,75,0.37113047997758175],[117,65,76,0.3715282552985443],[117,65,77,0.37192849436709285],[117,65,78,0.3723323780193387],[117,65,79,0.37274102534881204],[117,66,64,0.363796667958801],[117,66,65,0.3642906364427631],[117,66,66,0.36477124153116647],[117,66,67,0.3652401058005645],[117,66,68,0.3656988265551872],[117,66,69,0.3661489728031496],[117,66,70,0.36659208217977324],[117,66,71,0.3670296578180045],[117,66,72,0.3674631651659339],[117,66,73,0.36789402875140215],[117,66,74,0.3683236288937296],[117,66,75,0.368753298362522],[117,66,76,0.3691843189835843],[117,66,77,0.3696179181919351],[117,66,78,0.3700552655319166],[117,66,79,0.3704974691044078],[117,67,64,0.36090663502112724],[117,67,65,0.3614313428685882],[117,67,66,0.36194297991354735],[117,67,67,0.36244315534939714],[117,67,68,0.3629334531097457],[117,67,69,0.36341542886523737],[117,67,70,0.3638906069678999],[117,67,71,0.36436047734299826],[117,67,72,0.3648264923284038],[117,67,73,0.3652900634614616],[117,67,74,0.3657525582133945],[117,67,75,0.36621529667119435],[117,67,76,0.3666795481670345],[117,67,77,0.3671465278551954],[117,67,78,0.3676173932364968],[117,67,79,0.36809324063024773],[117,68,64,0.3578591287958584],[117,68,65,0.3584141271091946],[117,68,66,0.3589563878578868],[117,68,67,0.3594875065007893],[117,68,68,0.36000905321443233],[117,68,69,0.3605225699102117],[117,68,70,0.36102956719952606],[117,68,71,0.36153152130683963],[117,68,72,0.36202987093067973],[117,68,73,0.3625260140525489],[117,68,74,0.3630213046937961],[117,68,75,0.3635170496203899],[117,68,76,0.36401450499563553],[117,68,77,0.36451487298082036],[117,68,78,0.3650192982837881],[117,68,79,0.365528864655448],[117,69,64,0.3546549707471365],[117,69,65,0.3552397980380039],[117,69,66,0.35581226163040136],[117,69,67,0.3563739429014935],[117,69,68,0.35692639788841335],[117,69,69,0.357471154325574],[117,69,70,0.35800970863035225],[117,69,71,0.3585435228371243],[117,69,72,0.3590740214796596],[117,69,73,0.35960258842185483],[117,69,74,0.3601305636368539],[117,69,75,0.3606592399344931],[117,69,76,0.36118985963711586],[117,69,77,0.36172361120374147],[117,69,78,0.3622616258025872],[117,69,79,0.36280497383195054],[117,70,64,0.3512950880693302],[117,70,65,0.3519092705697393],[117,70,66,0.3525115038222696],[117,70,67,0.3531033547797008],[117,70,68,0.35368636496184647],[117,70,69,0.3542620475127289],[117,70,70,0.3548318842065589],[117,70,71,0.355397322402498],[117,70,72,0.3559597719482101],[117,70,73,0.35652060203218594],[117,70,74,0.35708113798488317],[117,70,75,0.3576426580286246],[117,70,76,0.35820638997629595],[117,70,77,0.35877350787883],[117,70,78,0.3593451286214743],[117,70,79,0.35992230846885254],[117,71,64,0.3477805131676345],[117,71,65,0.3484235651545693],[117,71,66,0.3490551228572546],[117,71,67,0.34967673846607883],[117,71,68,0.3502899386102643],[117,71,69,0.3508962214346397],[117,71,70,0.3514970536256562],[117,71,71,0.3520938673866226],[117,71,72,0.35268805736216946],[117,71,73,0.3532809775119191],[117,71,74,0.35387393793341415],[117,71,75,0.35446820163423726],[117,71,76,0.35506498125336905],[117,71,77,0.3556654357317717],[117,71,78,0.3562706669321908],[117,71,79,0.35688171620818976],[117,72,64,0.34411238308518277],[117,72,65,0.34478380721830115],[117,72,66,0.3454442324449346],[117,72,67,0.34609519585999005],[117,72,68,0.3467382088337284],[117,72,69,0.3473747541078623],[117,72,70,0.34800628284134016],[117,72,71,0.3486342116057948],[117,72,72,0.34925991933066103],[117,72,73,0.34988474419794496],[117,72,74,0.3505099804866949],[117,72,75,0.3511368753671055],[117,72,76,0.3517666256443052],[117,72,77,0.35240037445181],[117,72,78,0.35303920789464205],[117,72,79,0.35368415164212175],[117,73,64,0.340291938876572],[117,73,65,0.3409912265485255],[117,73,66,0.34168005097944043],[117,73,67,0.3423599338407909],[117,73,68,0.3430323708806564],[117,73,69,0.3436988290388626],[117,73,70,0.34436074351226087],[117,73,71,0.34501951477011716],[117,73,72,0.34567650551962303],[117,73,73,0.34633303762150436],[117,73,74,0.34699038895578277],[117,73,75,0.3476497902376186],[117,73,76,0.3483124217832856],[117,73,77,0.34897941022626167],[117,73,78,0.34965182518343385],[117,73,79,0.3503306758714251],[117,74,64,0.3363205249279795],[117,74,65,0.3370471566268895],[117,74,66,0.3377639008838762],[117,74,67,0.33847226362438815],[117,74,68,0.3391737246164964],[117,74,69,0.3398697346047908],[117,74,70,0.3405617123948695],[117,74,71,0.3412510418883943],[117,74,72,0.34193906906872223],[117,74,73,0.3426270989370871],[117,74,74,0.34331639239939254],[117,74,75,0.34400816310353716],[117,74,76,0.34470357422732867],[117,74,77,0.34540373521696865],[117,74,78,0.34610969847610396],[117,74,79,0.34682245600545736],[117,75,64,0.3321995882237908],[117,75,65,0.3329530339074211],[117,75,66,0.33369720790034724],[117,75,67,0.334433600064975],[117,75,68,0.3351636738371736],[117,75,69,0.33588886337863244],[117,75,70,0.3366105706802716],[117,75,71,0.33733016261667803],[117,75,72,0.33804896795157807],[117,75,73,0.33876827429431944],[117,75,74,0.3394893250074261],[117,75,75,0.3402133160651445],[117,75,76,0.3409413928630385],[117,75,77,0.3416746469786151],[117,75,78,0.34241411288297796],[117,75,79,0.34316076460351885],[117,76,64,0.3279306775596297],[117,76,65,0.32871039704079086],[117,76,66,0.3294815003254822],[117,76,67,0.3302454609018358],[117,76,68,0.3310037255271957],[117,76,69,0.3317577113986331],[117,76,70,0.33250880327498],[117,76,71,0.33325835055035535],[117,76,72,0.3340076642791906],[117,76,73,0.3347580141527321],[117,76,74,0.335510625427081],[117,76,75,0.3362666758026892],[117,76,76,0.3370272922553707],[117,76,77,0.337793547818807],[117,76,78,0.3385664583185476],[117,76,79,0.3393469790575131],[117,77,64,0.3235154427019906],[117,77,65,0.32432088604471565],[117,77,66,0.3251184081916516],[117,77,67,0.32590946595142034],[117,77,68,0.32669548906262014],[117,77,69,0.32747787738218914],[117,77,70,0.32825799802575933],[117,77,71,0.3290371824599721],[117,77,72,0.32981672354676506],[117,77,73,0.3305978725396038],[117,77,74,0.3313818360317254],[117,77,75,0.33216977285630356],[117,77,76,0.3329627909386032],[117,77,77,0.3337619441000984],[117,77,78,0.3345682288145554],[117,77,79,0.33538258091608886],[117,78,64,0.3189556334943832],[117,78,65,0.319786241420412],[117,78,66,0.32060966239379207],[117,78,67,0.3214273362445976],[117,78,68,0.3222406753587907],[117,78,69,0.3230510618841185],[117,78,70,0.3238598448884762],[117,78,71,0.32466833747070634],[117,78,72,0.3254778138238457],[117,78,73,0.3262895062507918],[117,78,74,0.3271046021324562],[117,78,75,0.32792424084831584],[117,78,76,0.3287495106494279],[117,78,77,0.329581445483884],[117,78,78,0.330421021774704],[117,78,79,0.33126915515017985],[117,79,64,0.31425309890986675],[117,79,65,0.31510830321497696],[117,79,66,0.31595709376171466],[117,79,67,0.31680089310896664],[117,79,68,0.31764109596272416],[117,79,69,0.31847906639919066],[117,79,70,0.319316135040837],[117,79,71,0.32015359618537237],[117,79,72,0.32099270488764364],[117,79,73,0.3218346739944328],[117,79,74,0.3226806711322232],[117,79,75,0.3235318156478429],[117,79,76,0.32438917550205026],[117,79,77,0.3252537641160414],[117,79,78,0.32612653717087575],[117,79,79,0.32700838935983256],[117,80,64,0.3094097860501994],[117,80,65,0.31028901002992176],[117,80,66,0.3111626320781203],[117,80,67,0.3120320571964492],[117,80,68,0.3128986620903688],[117,80,69,0.3137637924091363],[117,80,70,0.3146287599392299],[117,80,71,0.3154948397511729],[117,80,72,0.31636326729977104],[117,80,73,0.31723523547773047],[117,80,74,0.31811189162273323],[117,80,75,0.31899433447787007],[117,80,76,0.3198836111055031],[117,80,77,0.32078071375453343],[117,80,78,0.3216865766810719],[117,80,79,0.3226020729225253],[117,81,64,0.30442773909149745],[117,81,65,0.30533039797575356],[117,81,66,0.30622830504222054],[117,81,67,0.3071228474560597],[117,81,68,0.3080153836086311],[117,81,69,0.3089072403740343],[117,81,70,0.30979971031957126],[117,81,71,0.31069404887009955],[117,81,72,0.31159147142628535],[117,81,73,0.3124931504367287],[117,81,74,0.3134002124240336],[117,81,75,0.3143137349647246],[117,81,76,0.31523474362308257],[117,81,77,0.31616420883887425],[117,81,78,0.3171030427689733],[117,81,79,0.31805209608288687],[117,82,64,0.2993090981762758],[117,82,65,0.30023459957247656],[117,82,66,0.30115623717883233],[117,82,67,0.30207538005172374],[117,82,68,0.3029933679620439],[117,82,69,0.3039115086679499],[117,82,70,0.3048310751420299],[117,82,71,0.3057533027528536],[117,82,72,0.3066793864009163],[117,82,73,0.30761047760894666],[117,82,74,0.3085476815666548],[117,82,75,0.30949205412981806],[117,82,76,0.31044459877378017],[117,82,77,0.31140626350133604],[117,82,78,0.31237793770500333],[117,82,79,0.313360448983691],[117,83,64,0.2940560982521126],[117,83,65,0.2950038425962536],[117,83,66,0.2959486486931896],[117,83,67,0.29689186722538713],[117,83,68,0.2978348190443151],[117,83,69,0.29877879245906136],[117,83,70,0.29972504047986476],[117,83,71,0.3006747780165259],[117,83,72,0.3016291790317101],[117,83,73,0.30258937364910843],[117,83,74,0.30355644521654046],[117,83,75,0.304531427323888],[117,83,76,0.3055153007759408],[117,83,77,0.3065089905201259],[117,83,78,0.30751336252911954],[117,83,79,0.30852922063835286],[117,84,64,0.288671067856825],[117,84,65,0.2896404488721196],[117,84,66,0.29060785427136193],[117,84,67,0.2915746161053048],[117,84,68,0.29254203601464657],[117,84,69,0.2935113825341653],[117,84,70,0.29448388835226913],[117,84,71,0.29546074752592555],[117,84,72,0.2964431126509845],[117,84,73,0.29743209198786136],[117,84,74,0.29842874654266044],[117,84,75,0.2994340871036322],[117,84,76,0.30044907123304254],[117,84,77,0.30147460021442707],[117,84,78,0.3025115159552278],[117,84,79,0.3035605978448269],[117,85,64,0.2831564278500145],[117,85,65,0.284146833012599],[117,85,66,0.28513626182613394],[117,85,67,0.2861260274593642],[117,85,68,0.28711741205868163],[117,85,69,0.28811166406742134],[117,85,70,0.28910999550107974],[117,85,71,0.2901135791784164],[117,85,72,0.29112354590845435],[117,85,73,0.29214098163334273],[117,85,74,0.2931669245271682],[117,85,75,0.2942023620506013],[117,85,76,0.2952482279614612],[117,85,77,0.2963053992811686],[117,85,78,0.2973746932170873],[117,85,79,0.29845686404076666],[117,86,64,0.2775146900912468],[117,86,65,0.2785255011024993],[117,86,66,0.2795363711886152],[117,86,67,0.2805485943937136],[117,86,68,0.281563433094346],[117,86,69,0.28258211533359623],[117,86,70,0.28360583211161183],[117,86,71,0.2846357346325258],[117,86,72,0.28567293150778617],[117,86,73,0.2867184859158537],[117,86,74,0.28777341271835943],[117,86,75,0.2888386755326019],[117,86,76,0.2899151837604727],[117,86,77,0.29100378957377787],[117,86,78,0.2921052848559553],[117,86,79,0.29322039810020106],[117,87,64,0.2717484560647443],[117,87,65,0.2727790493297517],[117,87,66,0.2738107727454539],[117,87,67,0.27484490099656633],[117,87,68,0.27588267642245656],[117,87,69,0.27692530636568724],[117,87,70,0.2779739604774994],[117,87,71,0.27902976798019946],[117,87,72,0.2800938148864631],[117,87,73,0.2811671411755208],[117,87,74,0.2822507379263117],[117,87,75,0.28334554440749127],[117,87,76,0.2844524451243758],[117,87,77,0.28557226682279546],[117,87,78,0.28670577544985365],[117,87,79,0.28785367307160803],[117,88,64,0.26586041545043665],[117,88,65,0.2669101625621497],[117,88,66,0.26796214602150437],[117,88,67,0.26901762092703285],[117,88,68,0.2700778093219507],[117,88,69,0.27114389755677354],[117,88,70,0.272217033609391],[117,88,71,0.27329832436255663],[117,88,72,0.27438883283881066],[117,88,73,0.27548957539279584],[117,88,74,0.27660151886105977],[117,88,75,0.27772557766922135],[117,88,76,0.27886261089659065],[117,88,77,0.28001341929821],[117,88,78,0.2811787422843174],[117,88,79,0.2823592548572438],[117,89,64,0.25985334464167337],[117,89,65,0.2609216128702878],[117,89,66,0.26199325820824937],[117,89,67,0.26306951594928246],[117,89,68,0.2641515875900341],[117,89,69,0.26524063820639543],[117,89,70,0.26633779378779776],[117,89,71,0.2674441385294418],[117,89,72,0.26856071208247734],[117,89,73,0.26968850676209033],[117,89,74,0.27082846471359745],[117,89,75,0.27198147503641856],[117,89,76,0.27314837086602073],[117,89,77,0.2743299264138009],[117,89,78,0.27552685396490717],[117,89,79,0.2767398008340114],[117,90,64,0.25373010520934597],[117,90,65,0.2548162579964459],[117,90,66,0.2559069626377252],[117,90,67,0.25700343441177953],[117,90,68,0.2581068540269966],[117,90,69,0.2592183650112099],[117,90,70,0.2603390710598457],[117,90,71,0.2614700333425237],[117,90,72,0.26261226776812624],[117,90,73,0.2637667422082964],[117,90,74,0.264934373679462],[117,90,75,0.26611602548325763],[117,90,76,0.2673125043054373],[117,90,77,0.2685245572732462],[117,90,78,0.26975286897124917],[117,90,79,0.2709980584156323],[117,91,64,0.2474936423126165],[117,91,65,0.24859703976961958],[117,91,66,0.24970619720214735],[117,91,67,0.25082230967179375],[117,91,68,0.25194653686589136],[117,91,69,0.25308000050011914],[117,91,70,0.25422378168012694],[117,91,71,0.2553789182221356],[117,91,72,0.2565464019325273],[117,91,73,0.25772717584638694],[117,91,74,0.2589221314250918],[117,91,75,0.26013210571282064],[117,91,76,0.2613578784520755],[117,91,77,0.2626001691581852],[117,91,78,0.2638596341527869],[117,91,79,0.2651368635563037],[117,92,64,0.24114698305597432],[117,92,65,0.24226698246641643],[117,92,66,0.24339398271895826],[117,92,67,0.24452915846490855],[117,92,68,0.2456736481468053],[117,92,69,0.24682855141359858],[117,92,70,0.24799492649537613],[117,92,71,0.2491737875375871],[117,92,72,0.2503661018947826],[117,92,73,0.2515727873838279],[117,92,74,0.25279470949669147],[117,92,75,0.254032678572674],[117,92,76,0.25528744693017646],[117,92,77,0.25655970595797284],[117,92,78,0.2578500831659867],[117,92,79,0.25915913919558564],[117,93,64,0.23469323479295517],[117,93,65,0.23582919111815154],[117,93,66,0.23697342124163048],[117,93,67,0.23812707921985568],[117,93,68,0.23929128203604522],[117,93,69,0.24046710702754975],[117,93,70,0.24165558927329833],[117,93,71,0.24285771894126973],[117,93,72,0.244074438596005],[117,93,73,0.2453066404661203],[117,93,74,0.2465551636719206],[117,93,75,0.24782079141298094],[117,93,76,0.24910424811579238],[117,93,77,0.2504061965414392],[117,93,78,0.2517272348533048],[117,93,79,0.25306789364482435],[117,94,64,0.22813558337636788],[117,94,65,0.2292868497639886],[117,94,66,0.23044769431607082],[117,94,67,0.23161925031852484],[117,94,68,0.23280261309009137],[117,94,69,0.23399883742152905],[117,94,70,0.23520893497540005],[117,94,71,0.23643387164640783],[117,94,72,0.23767456488230504],[117,94,73,0.23893188096532791],[117,94,74,0.24020663225426273],[117,94,75,0.24149957438700445],[117,94,76,0.24281140344370994],[117,94,77,0.2441427530705099],[117,94,78,0.24549419156377758],[117,94,79,0.2468662189149725],[117,95,64,0.22147729135485886],[117,95,65,0.22264321964995842],[117,95,66,0.22382006118245704],[117,95,67,0.2250089283009815],[117,95,68,0.22621089446415008],[117,95,69,0.22742699169118508],[117,95,70,0.22865820797365366],[117,95,71,0.2299054846482895],[117,95,72,0.23116971373091624],[117,95,73,0.2324517352114236],[117,95,74,0.2337523343099087],[117,95,75,0.23507223869383692],[117,95,76,0.2364121156563274],[117,95,77,0.23777256925552664],[117,95,78,0.2391541374150698],[117,95,79,0.24055728898564444],[117,96,64,0.21472169611614508],[117,96,65,0.2159016373741819],[117,96,66,0.21709385692283586],[117,96,67,0.2182994460158167],[117,96,68,0.2195194560656296],[117,96,69,0.2207548961052275],[117,96,70,0.22200673021132014],[117,96,71,0.2232758748892978],[117,96,72,0.22456319641978356],[117,96,73,0.22586950816677404],[117,96,74,0.22719556784747186],[117,96,75,0.228542074763672],[117,96,76,0.22990966699480148],[117,96,77,0.23129891855257945],[117,96,78,0.2327103364972944],[117,96,79,0.23414435801571643],[117,97,64,0.20787220797675668],[117,97,65,0.2090655129781404],[117,97,66,0.21027249055432395],[117,97,67,0.21149421071567442],[117,97,68,0.2127317026523846],[117,97,69,0.21398595220677297],[117,97,70,0.21525789930777695],[117,97,71,0.21654843536758922],[117,97,72,0.2178584006404595],[117,97,73,0.21918858154361037],[117,97,74,0.22053970794038397],[117,97,75,0.22191245038546875],[117,97,76,0.22330741733231502],[117,97,77,0.22472515230270212],[117,97,78,0.22616613101845418],[117,97,79,0.2276307584953245],[117,98,64,0.20093230821810817],[117,98,65,0.20213832798381504],[117,98,66,0.20335944306773177],[117,98,67,0.20459670209777747],[117,98,68,0.20585111187555089],[117,98,69,0.20712363485889188],[117,98,70,0.20841518660716904],[117,98,71,0.20972663318924334],[117,98,72,0.21105878855413035],[117,98,73,0.21241241186430931],[117,98,74,0.2137882047917969],[117,98,75,0.21518680877683277],[117,98,76,0.2166088022492883],[117,98,77,0.21805469781275794],[117,98,78,0.21952493939133544],[117,98,79,0.2210198993390885],[117,99,64,0.19390554706924643],[117,99,65,0.19512363337703753],[117,99,66,0.196358265411958],[117,99,67,0.19761047028979356],[117,99,68,0.19888123226731114],[117,99,69,0.200171490234693],[117,99,70,0.2014821351712287],[117,99,71,0.20281400756422008],[117,99,72,0.20416789479111397],[117,99,73,0.20554452846482024],[117,99,74,0.20694458174232438],[117,99,75,0.20836866659644887],[117,99,76,0.20981733105086858],[117,99,77,0.2112910563783455],[117,99,78,0.21279025426217846],[117,99,79,0.214315263920889],[117,100,64,0.18679554163610812],[117,100,65,0.18802504753689014],[117,100,66,0.18927257642398587],[117,100,67,0.19053913378087944],[117,100,68,0.1918256811734299],[117,100,69,0.19313313375178648],[117,100,70,0.19446235771609777],[117,100,71,0.19581416774596572],[117,100,72,0.1971893243936652],[117,100,73,0.19858853144107858],[117,100,74,0.20001243322046464],[117,100,75,0.2014616118989045],[117,100,76,0.20293658472654097],[117,100,77,0.20443780124856825],[117,100,78,0.20596564048097254],[117,100,79,0.20752040805004218],[117,101,64,0.1796059737770977],[117,101,65,0.1808462541109645],[117,101,66,0.1821060607042957],[117,101,67,0.18338637729771506],[117,101,68,0.18468814263037037],[117,101,69,0.18601224795093968],[117,101,70,0.18735953449296744],[117,101,71,0.18873079091448036],[117,101,72,0.190126750701903],[117,101,73,0.19154808953822194],[117,101,74,0.19299542263552028],[117,101,75,0.1944693020317239],[117,101,76,0.195970213851674],[117,101,77,0.19749857553248568],[117,101,78,0.19905473301319215],[117,101,79,0.20063895788869296],[117,102,64,0.1723405879253515],[117,102,65,0.17359099983684279],[117,102,66,0.17486246643805442],[117,102,67,0.1761559496258867],[117,102,68,0.177472365187351],[117,102,69,0.17881258031927816],[117,102,70,0.18017741111289315],[117,102,71,0.18156762000320315],[117,102,72,0.18298391318321822],[117,102,73,0.1844269379829594],[117,102,74,0.18589728021336732],[117,102,75,0.18739546147496078],[117,102,76,0.18892193643135347],[117,102,77,0.1904770900475934],[117,102,78,0.19206123479332143],[117,102,79,0.19367460781076917],[117,103,64,0.16500318885750787],[117,103,65,0.16626309230962366],[117,103,66,0.16754560316190714],[117,103,67,0.1688516613764463],[117,103,68,0.17018215967316885],[117,103,69,0.17153794105786535],[117,103,70,0.17291979631561244],[117,103,71,0.17432846146954267],[117,103,72,0.1757646152049862],[117,103,73,0.1772288762589272],[117,103,74,0.17872180077490296],[117,103,75,0.18024387962318106],[117,103,76,0.18179553568633328],[117,103,77,0.18337712111016513],[117,103,78,0.18498891451999921],[117,103,79,0.1866311182023322],[117,104,64,0.15759763940879506],[117,104,65,0.15886639769530497],[117,104,66,0.16015933947618],[117,104,67,0.16147738269745582],[117,104,68,0.16282139690760145],[117,104,69,0.16419220079346797],[117,104,70,0.16559055968217307],[117,104,71,0.16701718300886614],[117,104,72,0.16847272175039785],[117,104,73,0.169957765824841],[117,104,74,0.17147284145698616],[117,104,75,0.17301840850965083],[117,104,76,0.1745948577809192],[117,104,77,0.17620250826727163],[117,104,78,0.17784160439260127],[117,104,79,0.17951231320314087],[117,105,64,0.1501278581348089],[117,105,65,0.15140483839039154],[117,105,66,0.15270760070286393],[117,105,67,0.15403704093088655],[117,105,68,0.15539400535775183],[117,105,69,0.15677928823487364],[117,105,70,0.1581936292917444],[117,105,71,0.1596377112123094],[117,105,72,0.1611121570777755],[117,105,73,0.1626175277758074],[117,105,74,0.1641543193762317],[117,105,75,0.1657229604730882],[117,105,76,0.16732380949314407],[117,105,77,0.16895715197083333],[117,105,78,0.17062319778961627],[117,105,79,0.17232207838978209],[117,106,64,0.1425978169197965],[117,106,65,0.14388239062754926],[117,106,66,0.14519436648920103],[117,106,67,0.1465346182146927],[117,106,68,0.14790396873916178],[117,106,69,0.14930318777358553],[117,106,70,0.1507329893224283],[117,106,71,0.1521940291682342],[117,106,72,0.15368690232319315],[117,106,73,0.15521214044762066],[117,106,74,0.15677020923548451],[117,106,75,0.15836150576680585],[117,106,76,0.15998635582706044],[117,106,77,0.16164501119353586],[117,106,78,0.16333764688864172],[117,106,79,0.16506435840019668],[117,107,64,0.13501153853125403],[117,107,65,0.1363030820271104],[117,107,66,0.13762366835667733],[117,107,67,0.13897414902986793],[117,107,68,0.14035532356149705],[117,107,69,0.141767937028699],[117,107,70,0.14321267759587764],[117,107,71,0.14469017400713619],[117,107,72,0.14620099304621093],[117,107,73,0.1477456369638518],[117,107,74,0.14932454087277947],[117,107,75,0.15093807011005206],[117,107,76,0.15258651756696084],[117,107,77,0.15427010098641508],[117,107,78,0.155988960227812],[117,107,79,0.1577431544994149],[117,108,64,0.12737309412121717],[117,108,65,0.12867098909480879],[117,108,66,0.12999958719580235],[117,108,67,0.1313597176928582],[117,108,68,0.13275215661918255],[117,108,69,0.13417762433633512],[117,108,70,0.13563678306610238],[117,108,71,0.13713023439038247],[117,108,72,0.13865851671909962],[117,108,73,0.1402221027261017],[117,108,74,0.1418213967531623],[117,108,75,0.14345673218192279],[117,108,76,0.1451283687738953],[117,108,77,0.14683648997848442],[117,108,78,0.1485812002090256],[117,108,79,0.15036252208686218],[117,109,64,0.11968660067406012],[117,109,65,0.1209902346655623],[117,109,66,0.12232625070648895],[117,109,67,0.12369545579315322],[117,109,68,0.12509860242680448],[117,109,69,0.12653638618345087],[117,109,70,0.1280094432522758],[117,109,71,0.1295183479425936],[117,109,72,0.13106361015936863],[117,109,73,0.13264567284724033],[117,109,74,0.13426490940318847],[117,109,75,0.13592162105766292],[117,109,76,0.13761603422430596],[117,109,77,0.13934829781822172],[117,109,78,0.14111848054279275],[117,109,79,0.14292656814506233],[117,110,64,0.11195621840060138],[117,110,65,0.11326498529309897],[117,110,66,0.1146078307838369],[117,110,67,0.11598553957585078],[117,110,68,0.11739884059907957],[117,110,69,0.1188484045858264],[117,110,70,0.12033484161534186],[117,110,71,0.12185869862747295],[117,110,72,0.12342045690540404],[117,110,73,0.1250205295274313],[117,110,74,0.12665925878790446],[117,110,75,0.12833691358716176],[117,110,76,0.13005368679058366],[117,110,77,0.13180969255672315],[117,110,78,0.1336049636345087],[117,110,79,0.13543944862954305],[117,111,64,0.10418614807890919],[117,111,65,0.105499448585823],[117,111,66,0.10684854084970752],[117,111,67,0.10823418726958817],[117,111,68,0.10965709317578004],[117,111,69,0.11111790441061503],[117,111,70,0.11261720487881677],[117,111,71,0.11415551406746954],[117,111,72,0.115733284535601],[117,111,73,0.11735089937332815],[117,111,74,0.11900866963069395],[117,111,75,0.12070683171602403],[117,111,76,0.12244554476392788],[117,111,77,0.12422488797290226],[117,111,78,0.12604485791253273],[117,111,79,0.12790536580031786],[117,112,64,0.09638062834161287],[117,112,65,0.0976978704887208],[117,112,66,0.09905263312989704],[117,112,67,0.10044565635964553],[117,112,68,0.10187762189142385],[117,112,69,0.10334915064326777],[117,112,70,0.10486080029358835],[117,112,71,0.10641306280708485],[117,112,72,0.10800636193079965],[117,112,73,0.10964105066025304],[117,112,74,0.11131740867580109],[117,112,75,0.11303563974902986],[117,112,76,0.11479586911932244],[117,112,77,0.11659814084054992],[117,112,78,0.11844241509788556],[117,112,79,0.12032856549476478],[117,113,64,0.08854393290951917],[117,113,65,0.08986453251111393],[117,113,66,0.09122439587671183],[117,113,67,0.09262424080602416],[117,113,68,0.09406472538952959],[117,113,69,0.09554644559863285],[117,113,70,0.09706993284651538],[117,113,71,0.09863565151962478],[117,113,72,0.10024399647982668],[117,113,73,0.10189529053716018],[117,113,74,0.10358978189333418],[117,113,75,0.10532764155578561],[117,113,76,0.1071089607224297],[117,113,77,0.10893374813705609],[117,113,78,0.11080192741537082],[117,113,79,0.1127133343417035],[117,114,64,0.08068036777195398],[117,114,65,0.08200374890067186],[117,114,66,0.08336815053735908],[117,114,67,0.08477426820691353],[117,114,68,0.08622273638185252],[117,114,69,0.08771412607664314],[117,114,70,0.0892489424132451],[117,114,71,0.0908276221578091],[117,114,72,0.09245053122855917],[117,114,73,0.09411796217479529],[117,114,74,0.09583013162715848],[117,114,75,0.09758717771897546],[117,114,76,0.09938915747881388],[117,114,77,0.1012360441942044],[117,114,78,0.10312772474652548],[117,114,79,0.10506399691707546],[117,115,64,0.07279426831347391],[117,115,65,0.0741198637633349],[117,115,66,0.07548824886780359],[117,115,67,0.07690009690719907],[117,115,68,0.07835601875225123],[117,115,69,0.07985656046224482],[117,115,70,0.08140220085489469],[117,115,71,0.08299334904789274],[117,115,72,0.08463034197215485],[117,115,73,0.08631344185670398],[117,115,74,0.08804283368533461],[117,115,75,0.08981862262486984],[117,115,76,0.09164083142514834],[117,115,77,0.093509397790693],[117,115,78,0.09542417172405943],[117,115,79,0.09738491284088774],[117,116,64,0.06488999638721882],[117,116,65,0.06621724812941499],[117,116,66,0.06758906999235681],[117,116,67,0.06900611305227522],[117,116,68,0.07046896460545238],[117,116,69,0.07197814576983125],[117,116,70,0.07353410905886643],[117,116,71,0.075137235927562],[117,116,72,0.07678783429072289],[117,116,73,0.07848613601335597],[117,116,74,0.08023229437336443],[117,116,75,0.08202638149635227],[117,116,76,0.08386838576266814],[117,116,77,0.08575820918664628],[117,116,78,0.08769566476804214],[117,116,79,0.08968047381568173],[117,117,64,0.05697193733454037],[117,117,65,0.0583002969655102],[117,117,66,0.05967501740863873],[117,117,67,0.06109672758680329],[117,117,68,0.06256599126035078],[117,117,69,0.06408330463182277],[117,117,70,0.06564909392343365],[117,117,71,0.06726371292724631],[117,117,72,0.06892744052807032],[117,117,73,0.07064047819902186],[117,117,74,0.07240294746988774],[117,117,75,0.07421488736810883],[117,117,76,0.07607625183251349],[117,117,77,0.07798690709976086],[117,117,78,0.07994662906348488],[117,117,79,0.08195510060616917],[117,118,64,0.04904449695134083],[117,118,65,0.0503734261326676],[117,118,66,0.05175051593834007],[117,118,67,0.05317637319884666],[117,118,68,0.05465153818827723],[117,118,69,0.056176482231821645],[117,118,70,0.057751605286529895],[117,118,71,0.05937723349527596],[117,118,72,0.06105361671395293],[117,118,73,0.06278092601183549],[117,118,74,0.06455925114525635],[117,118,75,0.06638859800440494],[117,118,76,0.06826888603338893],[117,118,77,0.07019994562350834],[117,118,78,0.07218151547974055],[117,118,79,0.07421323996046131],[117,119,64,0.04111209840091218],[117,119,65,0.04244106929058483],[117,119,66,0.043820008623580486],[117,119,67,0.04524950120917204],[117,119,68,0.04673006389602535],[117,119,69,0.04826214318213623],[117,119,70,0.04984611279853124],[117,119,71,0.051482271266677426],[117,119,72,0.05317083942962714],[117,119,73,0.054911957956832735],[117,119,74,0.05670568482277921],[117,119,75,0.05855199275924611],[117,119,76,0.060450766681331425],[117,119,77,0.06240180108719473],[117,119,78,0.06440479743151517],[117,119,79,0.06645936147268727],[117,120,64,0.0331791790730801],[117,120,65,0.03450767474765376],[117,120,66,0.03588795356866592],[117,120,67,0.03732057840552511],[117,120,68,0.03880604275344274],[117,120,69,0.0403447683454764],[117,120,70,0.041937102738838605],[117,120,71,0.043583316875412725],[117,120,72,0.04528360261650577],[117,120,73,0.04703807025177037],[117,120,74,0.04884674598244576],[117,120,75,0.05070956937872695],[117,120,76,0.05262639081139703],[117,120,77,0.05459696885767945],[117,120,78,0.056620967681302536],[117,120,79,0.05869795438680725],[117,121,64,0.02525018739005286],[117,121,65,0.026577702257246538],[117,121,66,0.027958820727641776],[117,121,67,0.029394083822275707],[117,121,68,0.030883961765983237],[117,121,69,0.03242885160122144],[117,121,70,0.034029074776657287],[117,121,71,0.035684874710457726],[117,121,72,0.037396414328313254],[117,121,73,0.039163773576127436],[117,121,74,0.040986946907521526],[117,121,75,0.04286584074596367],[117,121,76,0.04480027092165767],[117,121,77,0.046789960083147064],[117,121,78,0.04883453508363056],[117,121,79,0.0509335243420132],[117,122,64,0.017329579558774122],[117,122,65,0.018655619760044984],[117,122,66,0.02003708863744641],[117,122,67,0.02147450546523616],[117,122,68,0.022968317292023865],[117,122,69,0.02451889655605921],[117,122,70,0.026126538675774913],[117,122,71,0.027791459615524317],[117,122,72,0.029513793426545976],[117,122,73,0.031293589763084106],[117,122,74,0.033130811373819236],[117,122,75,0.035025331568413975],[117,122,76,0.03697693165931115],[117,122,77,0.03898529837873971],[117,122,78,0.04105002127092494],[117,122,79,0.043170590059524505],[117,123,64,0.009421816269578775],[117,123,65,0.010745900072209769],[117,123,66,0.012127241096460628],[117,123,67,0.013566336981448879],[117,123,68,0.015063611704741908],[117,123,69,0.01661941319879523],[117,123,70,0.01823401094313476],[117,123,71,0.019907593532222323],[117,123,72,0.021640266219033144],[117,123,73,0.023432048434282315],[117,123,74,0.025282871281444852],[117,123,75,0.027192575007382258],[117,123,76,0.029160906448707113],[117,123,77,0.031187516453846098],[117,123,78,0.033271957280791464],[117,123,79,0.0354136799705731],[117,124,64,0.0015313593415531845],[117,124,65,0.0028530175197913343],[117,124,66,0.004233763788853262],[117,124,67,0.005674074274345298],[117,124,68,0.007174349998955054],[117,124,69,0.008734914499733959],[117,124,70,0.01035601142160908],[117,124,71,0.012037802087061067],[117,124,72,0.013780363041998367],[117,124,73,0.015583683577763408],[117,124,74,0.017447663229416488],[117,124,75,0.019372109250109903],[117,124,76,0.021356734061683813],[117,124,77,0.023401152681443604],[117,124,78,0.02550488012511154],[117,124,79,0.027667328785978884],[117,125,64,-0.00633733168559808],[117,125,65,-0.005018555480813314],[117,125,66,-0.003638859145470519],[117,125,67,-0.002197787935920681],[117,125,68,-6.949636572736173E-4],[117,125,69,8.699129544332274E-4],[117,125,70,0.002497059826769843],[117,125,71,0.0041866111220975055],[117,125,72,0.005938614785428231],[117,125,73,0.007753030068891054],[117,125,74,0.009629725032961112],[117,125,75,0.011568474024253206],[117,125,76,0.01356895513001899],[117,125,77,0.01563074760930383],[117,125,78,0.017753329300756793],[117,125,79,0.01993607400712072],[117,126,64,-0.014179803013385006],[117,126,65,-0.012864351896565929],[117,126,66,-0.011486148595527657],[117,126,67,-0.01004475960717277],[117,126,68,-0.008539829426471024],[117,126,69,-0.006971082928372674],[117,126,70,-0.005338327772544171],[117,126,71,-0.0036414568309788287],[117,126,72,-0.0018804506384623165],[117,126,73,-5.537986595094413E-5],[117,126,74,0.0018335921832828284],[117,126,75,0.003786207054545687],[117,126,76,0.005802108599795908],[117,126,77,0.007880840412850976],[117,126,78,0.010021843241719841],[117,126,79,0.012224452378094885],[117,127,64,-0.02199161009965872],[117,127,65,-0.020679913605249733],[117,127,66,-0.019303634018116855],[117,127,67,-0.01786235892453758],[117,127,68,-0.01635575536062661],[117,127,69,-0.014783572194278505],[117,127,70,-0.013145642529461044],[117,127,71,-0.011441886132919743],[117,127,72,-0.009672311883259788],[117,127,73,-0.007837020242478565],[117,127,74,-0.005936205749792478],[117,127,75,-0.003970159537953433],[117,127,76,-0.0019392718719198898],[117,127,77,1.5596529007622095E-4],[117,127,78,0.0023149557130596188],[117,127,79,0.00453699627946591],[117,128,64,-0.029768321227234773],[117,128,65,-0.028460794976888748],[117,128,66,-0.02708685703107988],[117,128,67,-0.02564611590460042],[117,128,68,-0.02413826101530092],[117,128,69,-0.022563065066338983],[117,128,70,-0.020920386450314132],[117,128,71,-0.019210171675347998],[117,128,72,-0.017432457813080005],[117,128,73,-0.015587374968648371],[117,128,74,-0.013675148772499646],[117,128,75,-0.011696102894225735],[117,128,76,-0.00965066157829042],[117,128,77,-0.007539352201687444],[117,128,78,-0.005362807853536045],[117,128,79,-0.003121769936590635],[117,129,64,-0.03750552112620986],[117,129,65,-0.03620256650932352],[117,129,66,-0.034831375061163516],[117,129,67,-0.033391576054587424],[117,129,68,-0.031882881119170814],[117,129,69,-0.030305086624031086],[117,129,70,-0.028658076082077377],[117,129,71,-0.026941822575745178],[117,129,72,-0.02515639120419233],[117,129,73,-0.023301941552014926],[117,129,74,-0.021378730179337557],[117,129,75,-0.019387113133470524],[117,129,76,-0.017327548481997357],[117,129,77,-0.01520059886733327],[117,129,78,-0.013006934082767319],[117,129,79,-0.010747333669952064],[117,130,64,-0.04519881464957881],[117,130,65,-0.043900818517550566],[117,130,66,-0.04253276504608822],[117,130,67,-0.0410943040861802],[117,130,68,-0.03958516929861611],[117,130,69,-0.03800518053764601],[117,130,70,-0.036354246255610345],[117,130,71,-0.034632365928604414],[117,130,72,-0.03283963250314603],[117,130,73,-0.030976234863913987],[117,130,74,-0.02904246032240454],[117,130,75,-0.027038697126701927],[117,130,76,-0.024965436992225642],[117,130,77,-0.022823277653496343],[117,130,78,-0.020612925436929608],[117,130,79,-0.01833519785462523],[117,131,64,-0.05284383050234592],[117,131,65,-0.051551164877015],[117,131,66,-0.05018662719101574],[117,131,67,-0.04874988768415711],[117,131,68,-0.047240701857541256],[117,131,69,-0.045658912858307144],[117,131,70,-0.04400445388490137],[117,131,71,-0.04227735061293458],[117,131,72,-0.040477723641590635],[117,131,73,-0.038605790960662634],[117,131,74,-0.036661870438055355],[117,131,75,-0.03464638232795614],[117,131,76,-0.032559851799534134],[117,131,77,-0.03040291148620955],[117,131,78,-0.028176304055501977],[117,131,79,-0.02588088479942996],[117,132,64,-0.06043622502432766],[117,132,65,-0.059149246821061374],[117,132,66,-0.05778858877961768],[117,132,67,-0.05635394133006155],[117,132,68,-0.054845081612631796],[117,132,69,-0.05326187586381581],[117,132,70,-0.05160428182251109],[117,132,71,-0.04987235115632527],[117,132,72,-0.04806623190799386],[117,132,73,-0.046186170961976636],[117,132,74,-0.04423251653108107],[117,132,75,-0.042205720663312185],[117,132,76,-0.0401063417688069],[117,132,77,-0.03793504716689766],[117,132,78,-0.03569261565331361],[117,132,79,-0.03337994008748779],[117,133,64,-0.06797168602625653],[117,133,65,-0.06669073679214343],[117,133,66,-0.06533430803934948],[117,133,67,-0.06390211018050096],[117,133,68,-0.06239394178365254],[117,133,69,-0.06080969195993047],[117,133,70,-0.05914934277082173],[117,133,71,-0.05741297165517234],[117,133,72,-0.0556007538758595],[117,133,73,-0.05371296498621214],[117,133,74,-0.0517499833160191],[117,133,75,-0.04971229247732856],[117,133,76,-0.047600483889895684],[117,133,77,-0.0454152593263224],[117,133,78,-0.04315743347690093],[117,133,79,-0.0408279365341232],[117,134,64,-0.07544593667938321],[117,134,65,-0.07417134234699585],[117,134,66,-0.07281947806112798],[117,134,67,-0.07139007400027708],[117,134,68,-0.06988294993898425],[117,134,69,-0.06829801763727061],[117,134,70,-0.06663528324929069],[117,134,71,-0.06489484975126258],[117,134,72,-0.06307691938864468],[117,134,73,-0.061181796142628087],[117,134,74,-0.05920988821578854],[117,134,75,-0.05716171053709718],[117,134,76,-0.055037887286151665],[117,134,77,-0.05283915443666898],[117,134,78,-0.05056636231924827],[117,134,79,-0.048220478203375716],[117,135,64,-0.08285473945876531],[117,135,65,-0.08158681011595559],[117,135,66,-0.08023983077360464],[117,135,67,-0.07881355115053901],[117,135,68,-0.07730781199659131],[117,135,69,-0.07572254748404994],[117,135,70,-0.07405778761789927],[117,135,71,-0.0723136606649124],[117,135,72,-0.07049039560156911],[117,135,73,-0.06858832458086306],[117,135,74,-0.06660788541784524],[117,135,75,-0.06454962409410347],[117,135,76,-0.06241419728103714],[117,135,77,-0.06020237488196856],[117,135,78,-0.05791504259310487],[117,135,79,-0.055553204483312135],[117,136,64,-0.09019390013985684],[117,136,65,-0.0889329298160455],[117,136,66,-0.08759114097164555],[117,136,67,-0.0861683026315666],[117,136,68,-0.08466427628003015],[117,136,69,-0.08307901825423603],[117,136,70,-0.0814125821564069],[117,136,71,-0.07966512128426684],[117,136,72,-0.07783689107992486],[117,136,73,-0.07592825159723382],[117,136,74,-0.0739396699874657],[117,136,75,-0.07187172300350542],[117,136,76,-0.0697250995224239],[117,136,77,-0.06750060308646921],[117,136,78,-0.06519915446248925],[117,136,79,-0.06282179421975231],[117,137,64,-0.09745927184860315],[117,137,65,-0.09620553831802447],[117,137,66,-0.09486923039921902],[117,137,67,-0.09345013618039255],[117,137,68,-0.09194813762970344],[117,137,69,-0.09036321299134864],[117,137,70,-0.0886954391996172],[117,137,71,-0.08694499431096658],[117,137,72,-0.08511215995409271],[117,137,73,-0.08319732379806455],[117,137,74,-0.08120098203836412],[117,137,75,-0.0791237419010341],[117,137,76,-0.07696632416479265],[117,137,77,-0.07472956570115752],[117,137,78,-0.07241442203258674],[117,137,79,-0.07002196990861154],[117,138,64,-0.10464675916521182],[117,138,65,-0.10340052376757669],[117,138,66,-0.10206997188687139],[117,138,67,-0.10065491042343433],[117,138,68,-0.09915524156953459],[117,138,69,-0.0975709652080704],[117,138,70,-0.09590218132882777],[117,138,71,-0.09414909246235592],[117,138,72,-0.09231200613143808],[117,138,73,-0.09039133732021554],[117,138,74,-0.08838761096081715],[117,138,75,-0.08630146443769016],[117,138,76,-0.08413365010949514],[117,138,77,-0.0818850378486029],[117,138,78,-0.0795566175982102],[117,138,79,-0.0771495019470333],[117,139,64,-0.11175232228121246],[117,139,65,-0.11051382976025281],[117,139,66,-0.10918929354339624],[117,139,67,-0.10777853908374846],[117,139,68,-0.10628148852867181],[117,139,69,-0.10469816312127711],[117,139,70,-0.10302868561907352],[117,139,71,-0.10127328272984093],[117,139,72,-0.09943228756469769],[117,139,73,-0.09750614210842723],[117,139,74,-0.09549539970690735],[117,139,75,-0.09340072757184925],[117,139,76,-0.09122290930269861],[117,139,77,-0.0889628474257429],[117,139,78,-0.08662156595043935],[117,139,79,-0.08420021294292346],[117,140,64,-0.11877198121014143],[117,140,65,-0.11754145957049522],[117,140,66,-0.11622318300203127],[117,140,67,-0.1148169952432383],[117,140,68,-0.11332283811855581],[117,140,69,-0.11174075394282301],[117,140,70,-0.11007088794250242],[117,140,71,-0.1083134906937343],[117,140,72,-0.10646892057719193],[117,140,73,-0.10453764624980866],[117,140,74,-0.10252024913321756],[117,140,75,-0.10041742591910563],[117,140,76,-0.0982299910913439],[117,140,77,-0.09595887946493165],[117,140,78,-0.09360514874176817],[117,140,79,-0.09116998208321903],[117,141,64,-0.12570182005159414],[117,141,65,-0.12447948043449686],[117,141,66,-0.12316769172093323],[117,141,67,-0.12176631565956941],[117,141,68,-0.1202753134651019],[117,141,69,-0.11869474822583137],[117,141,70,-0.11702478732762644],[117,141,71,-0.11526570489433363],[117,141,72,-0.11341788424460697],[117,141,73,-0.11148182036522325],[117,141,74,-0.10945812240072705],[117,141,75,-0.10734751615960691],[117,141,76,-0.10515084663686491],[117,141,77,-0.10286908055301192],[117,141,78,-0.1005033089095142],[117,141,79,-0.0980547495606432],[117,142,64,-0.13253799130897959],[117,142,65,-0.13132402788722142],[117,142,66,-0.13001893933826225],[117,142,67,-0.12862260513811385],[117,142,68,-0.12713500559632196],[117,142,69,-0.12555622426681723],[117,142,70,-0.12388645037477775],[117,142,71,-0.12212598125956164],[117,142,72,-0.1202752248336828],[117,142,73,-0.11833470205789653],[117,142,74,-0.11630504943223607],[117,142,75,-0.11418702150320736],[117,142,76,-0.11198149338699681],[117,142,77,-0.10968946330873097],[117,142,78,-0.10731205515781084],[117,142,79,-0.10485052105926962],[117,143,64,-0.1392767202605869],[117,143,65,-0.13807131015319785],[117,143,66,-0.13677311808147918],[117,143,67,-0.13538204095854034],[117,143,68,-0.13389807788499986],[117,143,69,-0.13232133256325396],[117,143,70,-0.13065201572738616],[117,143,71,-0.1288904475887821],[117,143,72,-0.12703706029741235],[117,143,73,-0.12509240041886072],[117,143,74,-0.12305713142693209],[117,143,75,-0.12093203621204829],[117,143,76,-0.11871801960528894],[117,143,77,-0.11641611091811699],[117,143,78,-0.11402746649780271],[117,143,79,-0.11155337229851181],[117,144,64,-0.14591430938415284],[117,144,65,-0.14471761259128024],[117,144,66,-0.14342649723105516],[117,144,67,-0.14204087735624105],[117,144,68,-0.14056077054661253],[117,144,69,-0.13898630032677506],[117,144,70,-0.13731769859926335],[117,144,71,-0.13555530809297978],[117,144,72,-0.13369958482694533],[117,144,73,-0.13175110058942696],[117,144,74,-0.12971054543228833],[117,144,75,-0.1275787301807627],[117,144,76,-0.12535658895851198],[117,144,77,-0.12304518172800327],[117,144,78,-0.12064569684623117],[117,144,79,-0.11815945363573144],[117,145,64,-0.15244714283509442],[117,145,65,-0.15125930219353267],[117,145,66,-0.14997542763875227],[117,145,67,-0.14859545005875474],[117,145,68,-0.14711940519265598],[117,145,69,-0.14554743605217657],[117,145,70,-0.14387979535805873],[117,145,71,-0.14211684799146984],[117,145,72,-0.1402590734603596],[117,145,73,-0.13830706838084472],[117,145,74,-0.13626154897345655],[117,145,75,-0.13412335357446314],[117,145,76,-0.1318934451621162],[117,145,77,-0.12957291389786718],[117,145,78,-0.12716297968256896],[117,145,79,-0.12466499472761938],[117,146,64,-0.15887169097806964],[117,146,65,-0.1576928321379053],[117,146,66,-0.15641634630013523],[117,146,67,-0.1550421808768493],[117,146,68,-0.15357038943903878],[117,146,69,-0.152001134141872],[117,146,70,-0.15033468816454854],[117,146,71,-0.14857143816479368],[117,146,72,-0.14671188674796098],[117,146,73,-0.14475665495081125],[117,146,74,-0.1427064847398135],[117,146,75,-0.1405622415241683],[117,146,76,-0.13832491668341096],[117,146,77,-0.13599563010963867],[117,146,78,-0.13357563276437234],[117,146,79,-0.1310663092500166],[117,147,64,-0.16518451497203201],[117,147,65,-0.16401474639486568],[117,147,66,-0.16274578098148684],[117,147,67,-0.16137758235043287],[117,147,68,-0.15991022156971524],[117,147,69,-0.1583438795859834],[117,147,70,-0.1566788496679269],[117,147,71,-0.15491553986397688],[117,147,72,-0.1530544754742793],[117,147,73,-0.15109630153700482],[117,147,74,-0.14904178532883805],[117,147,75,-0.14689181887985325],[117,147,76,-0.14464742150263132],[117,147,77,-0.14230974233565652],[117,147,78,-0.13988006290101507],[117,147,79,-0.13735979967634837],[117,148,64,-0.17138227140894768],[117,148,65,-0.17022168438815577],[117,148,66,-0.1689603549012917],[117,148,67,-0.16759826244946063],[117,148,68,-0.16613549525572047],[117,148,69,-0.16457225269822295],[117,148,70,-0.1629088477572651],[117,148,71,-0.16114570947630757],[117,148,72,-0.1592833854369311],[117,148,73,-0.15732254424779968],[117,148,74,-0.15526397804747294],[117,148,75,-0.15310860502127144],[117,148,76,-0.15085747193205135],[117,148,77,-0.14851175666492833],[117,148,78,-0.14607277078597292],[117,148,79,-0.14354196211482517],[117,149,64,-0.1774617170058468],[117,149,65,-0.17631038570934443],[117,149,66,-0.1750567914659582],[117,149,67,-0.17370092932950654],[117,149,68,-0.1722429043292797],[117,149,69,-0.17068293390723976],[117,149,70,-0.16902135036881194],[117,149,71,-0.1672586033473158],[117,149,72,-0.1653952622820135],[117,149,73,-0.16343201890983905],[117,149,74,-0.1613696897706548],[117,149,75,-0.15920921872623284],[117,149,76,-0.1569516794928285],[117,149,77,-0.1545982781873756],[117,149,78,-0.1521503558873274],[117,149,79,-0.14960939120409666],[117,150,64,-0.18341971335036567],[117,150,65,-0.18227769488633327],[117,150,66,-0.18103191905993987],[117,150,67,-0.17968239614216075],[117,150,68,-0.17822924761315317],[117,150,69,-0.17667270860359463],[117,150,70,-0.17501313034928934],[117,150,71,-0.17325098265910277],[117,150,72,-0.17138685639619644],[117,150,73,-0.16942146597262853],[117,150,74,-0.1673556518571624],[117,150,75,-0.1651903830964906],[117,150,76,-0.16292675984972804],[117,150,77,-0.16056601593621522],[117,150,78,-0.1581095213966509],[117,150,79,-0.1555587850675073],[117,151,64,-0.18925323169995223],[117,151,65,-0.18812056620598727],[117,151,66,-0.1868826758904274],[117,151,67,-0.1855395859004214],[117,151,68,-0.18409143380538395],[117,151,69,-0.18253847204252782],[117,151,70,-0.18088107037536028],[117,151,71,-0.1791197183651988],[117,151,72,-0.17725502785567637],[117,151,73,-0.17528773547030896],[117,151,74,-0.17321870512295912],[117,151,75,-0.1710489305414098],[117,151,76,-0.16877953780389787],[117,151,77,-0.1664117878886503],[117,151,78,-0.16394707923644125],[117,151,79,-0.1613869503261255],[117,152,64,-0.19495935783439733],[117,152,65,-0.19383606859055513],[117,152,66,-0.19260611488626977],[117,152,67,-0.19126953639874833],[117,152,68,-0.18982648641911426],[117,152,69,-0.18827723430218735],[117,152,70,-0.18662216792892972],[117,152,71,-0.18486179618161047],[117,152,72,-0.1829967514316606],[117,152,73,-0.1810277920402874],[117,152,74,-0.17895580487169016],[117,152,75,-0.17678180781908037],[117,152,76,-0.1745069523433661],[117,152,77,-0.17213252602453744],[117,152,78,-0.16965995512577148],[117,152,79,-0.16709080717021596],[117,153,64,-0.20053529696188044],[117,153,65,-0.1994213905280633],[117,153,66,-0.1981994086513177],[117,153,67,-0.19686940518795915],[117,153,68,-0.19543154877765545],[117,153,69,-0.19388612529750127],[117,153,70,-0.19223354032846107],[117,153,71,-0.19047432163424138],[117,153,72,-0.1886091216525636],[117,153,73,-0.18663871999890003],[117,153,74,-0.18456402598252175],[117,153,75,-0.18238608113506038],[117,153,76,-0.1801060617514384],[117,153,77,-0.1777252814432113],[117,153,78,-0.1752451937043381],[117,153,79,-0.1726673944893361],[117,154,64,-0.2059783786786441],[117,154,65,-0.20487384505680395],[117,154,66,-0.20365985447230428],[117,154,67,-0.2023364746050913],[117,154,68,-0.20090388906493306],[117,154,69,-0.19936239984981685],[117,154,70,-0.19771242981643378],[117,154,71,-0.1959545251628083],[117,154,72,-0.19408935792303972],[117,154,73,-0.1921177284742317],[117,154,74,-0.19004056805544323],[117,154,75,-0.18785894129887082],[117,154,76,-0.18557404877311712],[117,154,77,-0.18318722953858801],[117,154,78,-0.18069996371503005],[117,154,79,-0.17811387506117293],[117,155,64,-0.21128606198202737],[117,155,65,-0.2101908748036414],[117,155,66,-0.20898487938098642],[117,155,67,-0.20766815685795315],[117,155,68,-0.20624090543102558],[117,155,69,-0.20470344281202468],[117,155,70,-0.20305620870266405],[117,155,71,-0.20129976728097565],[117,155,72,-0.1994348096995716],[117,155,73,-0.19746215659581712],[117,155,74,-0.1953827606137516],[117,155,75,-0.19319770893796184],[117,155,76,-0.1909082258392707],[117,155,77,-0.18851567523227242],[117,155,78,-0.18602156324473984],[117,155,79,-0.18342754079885437],[117,156,64,-0.2164559403369931],[117,156,65,-0.21537005707627632],[117,156,66,-0.21417204527069011],[117,156,67,-0.2128619991645031],[117,156,68,-0.21144013115294558],[117,156,69,-0.20990677424931492],[117,156,70,-0.20826238456362367],[117,156,71,-0.20650754379284963],[117,156,72,-0.2046429617227573],[117,156,73,-0.20266947874136032],[117,156,74,-0.2005880683638639],[117,156,75,-0.19839983976929687],[117,156,76,-0.19610604034868506],[117,156,77,-0.1937080582648084],[117,156,78,-0.19120742502356103],[117,156,79,-0.18860581805686627],[117,157,64,-0.22148574679629074],[117,157,65,-0.22040910900960664],[117,157,66,-0.21921905406739717],[117,157,67,-0.2179156889471966],[117,157,68,-0.21649923985079345],[117,157,69,-0.21497005467569996],[117,157,70,-0.2133286054979049],[117,157,71,-0.2115754910659695],[117,157,72,-0.20971143930643577],[117,157,73,-0.207737309840613],[117,157,74,-0.20565409651259337],[117,157,75,-0.2034629299286863],[117,157,76,-0.20116508000814448],[117,157,77,-0.19876195854521006],[117,157,78,-0.19625512178250426],[117,157,79,-0.19364627299571469],[117,158,64,-0.2263733591739726],[117,158,65,-0.22530589276590474],[117,158,66,-0.2241237529550908],[117,158,67,-0.22282705908202005],[117,158,68,-0.22141605075900817],[117,158,69,-0.21989109034602217],[117,158,70,-0.21825266543754218],[117,158,71,-0.21650139136051427],[117,158,72,-0.214638013683363],[117,158,73,-0.2126634107361337],[117,158,74,-0.21057859614160834],[117,158,75,-0.20838472135759567],[117,158,76,-0.2060830782302553],[117,158,77,-0.20367510155849466],[117,158,78,-0.20116237166945794],[117,158,79,-0.19854661700505982],[117,159,64,-0.2311168052724244],[117,159,65,-0.2300584207889692],[117,159,66,-0.2288841396555199],[117,159,67,-0.22759409320237023],[117,159,68,-0.2261885340528721],[117,159,69,-0.22466783860360895],[117,159,70,-0.2230325095153548],[117,159,71,-0.22128317821488608],[117,159,72,-0.2194206074076096],[117,159,73,-0.21744569360107824],[117,159,74,-0.21535946963923314],[117,159,75,-0.21316310724758325],[117,159,76,-0.2108579195891721],[117,159,77,-0.20844536383137513],[117,159,78,-0.20592704372354764],[117,159,79,-0.20330471218547197],[117,160,64,-0.23571426816299412],[117,160,65,-0.23466486111234053],[117,160,66,-0.23349836776247535],[117,160,67,-0.23221493105786706],[117,160,68,-0.23081481623035938],[117,160,69,-0.22929841328366218],[117,160,70,-0.2276662394883966],[117,160,71,-0.22591894188775763],[117,160,72,-0.22405729981375766],[117,160,73,-0.22208222741412176],[117,160,74,-0.219994776189681],[117,160,75,-0.21779613754245897],[117,160,76,-0.2154876453343183],[117,160,77,-0.21307077845620181],[117,160,78,-0.21054716340798485],[117,160,79,-0.20791857688890059],[117,161,64,-0.2401640915200146],[117,161,65,-0.2391235427213687],[117,161,66,-0.2379647521303555],[117,161,67,-0.2366878739278906],[117,161,68,-0.23529318554911416],[117,161,69,-0.2337810901721683],[117,161,70,-0.23215211921730305],[117,161,71,-0.23040693485637298],[117,161,72,-0.22854633253268808],[117,161,73,-0.22657124349129132],[117,161,74,-0.22448273731950552],[117,161,75,-0.22228202449794954],[117,161,76,-0.21997045896188638],[117,161,77,-0.21754954067293908],[117,161,78,-0.2150209182011945],[117,161,79,-0.2123863913176487],[117,162,64,-0.24446478500830937],[117,162,65,-0.24343296096922962],[117,162,66,-0.24228177431713194],[117,162,67,-0.24101139008993733],[117,162,68,-0.2396220975186596],[117,162,69,-0.2381143125204297],[117,162,70,-0.23648858020162955],[117,162,71,-0.2347455773711954],[117,162,72,-0.2328861150640612],[117,162,73,-0.23091114107480937],[117,162,74,-0.22882174250136855],[117,162,75,-0.22661914829897067],[117,162,76,-0.2243047318442135],[117,162,77,-0.22188001350927822],[117,162,78,-0.21934666324631402],[117,162,79,-0.2167065031819474],[117,163,64,-0.2486150297243176],[117,163,65,-0.24759178304701857],[117,163,66,-0.24644808808183272],[117,163,67,-0.24518412034292325],[117,163,68,-0.24380018044796137],[117,163,69,-0.24229669661534448],[117,163,70,-0.24067422717131415],[117,163,71,-0.23893346306703744],[117,163,72,-0.23707523040561318],[117,163,73,-0.23510049297907853],[117,163,74,-0.233010354815254],[117,163,75,-0.230806062734632],[117,163,76,-0.22848900891716828],[117,163,77,-0.22606073347901257],[117,163,78,-0.22352292705919974],[117,163,79,-0.22087743341625332],[117,164,64,-0.2526136836905847],[117,164,65,-0.2515988535076772],[117,164,66,-0.2504625249363026],[117,164,67,-0.249204883585192],[117,164,68,-0.2478262410481057],[117,164,69,-0.24632703740518647],[117,164,70,-0.2447078437340141],[117,164,71,-0.24296936463041896],[117,164,72,-0.24111244073901972],[117,164,73,-0.23913805129355925],[117,164,74,-0.23704731666687828],[117,164,75,-0.23484150093072953],[117,164,76,-0.2325220144252924],[117,164,77,-0.23009041633842753],[117,164,78,-0.227548417294686],[117,164,79,-0.22489788195403426],[117,165,64,-0.25645978740382125],[117,165,65,-0.2554531998439462],[117,165,66,-0.2543240997514358],[117,165,67,-0.25307268244741865],[117,165,68,-0.2516992700902799],[117,165,69,-0.25020431418108635],[117,165,70,-0.24858839807851618],[117,165,71,-0.24685223952335766],[117,165,72,-0.24499669317253348],[117,165,73,-0.24302275314273614],[117,165,74,-0.240931555563499],[117,165,75,-0.23872438113992278],[117,165,76,-0.23640265772490288],[117,165,77,-0.23396796290090416],[117,165,78,-0.23142202657130118],[117,165,79,-0.22876673356123123],[117,166,64,-0.26015256943639886],[117,166,65,-0.25915403812021676],[117,166,66,-0.2580320164177514],[117,166,67,-0.2567867089802852],[117,166,68,-0.2554184481189362],[117,166,69,-0.25392769631407996],[117,166,70,-0.2523150487340887],[117,166,71,-0.25058123576345515],[117,166,72,-0.24872712554025722],[117,166,73,-0.24675372650304617],[117,166,74,-0.24466218994698707],[117,166,75,-0.2424538125894664],[117,166,76,-0.24013003914501774],[117,166,77,-0.23769246490960916],[117,166,78,-0.23514283835430516],[117,166,79,-0.23248306372826644],[117,167,64,-0.2636914520914374],[117,167,65,-0.2627007786584412],[117,167,66,-0.26158567356046947],[117,167,67,-0.2603463503970812],[117,167,68,-0.25898315122028737],[117,167,69,-0.2574965490478849],[117,167,70,-0.25588715038593435],[117,167,71,-0.2541556977604431],[117,167,72,-0.252303072258212],[117,167,73,-0.2503302960769258],[117,167,74,-0.24823853508432403],[117,167,75,-0.24602910138665401],[117,167,76,-0.24370345590627152],[117,167,77,-0.2412632109684204],[117,167,78,-0.23871013289721177],[117,167,79,-0.23604614462076268],[117,168,64,-0.26707605711130034],[117,168,65,-0.26609303177790666],[117,168,66,-0.2649846703088977],[117,168,67,-0.2637511948710448],[117,168,68,-0.2623929568459513],[117,168,69,-0.2609104393472138],[117,168,70,-0.2593042597465559],[117,168,71,-0.2575751722089965],[117,168,72,-0.25572407023701416],[117,168,73,-0.25375198922378595],[117,168,74,-0.2516601090153331],[117,168,75,-0.24944975648178613],[117,168,76,-0.24712240809762143],[117,168,77,-0.24467969253091015],[117,168,78,-0.2421233932415997],[117,168,79,-0.23945545108877997],[117,169,64,-0.27030621143958733],[117,169,65,-0.2693306135889728],[117,169,66,-0.26822881212022576],[117,169,67,-0.26700103738753256],[117,169,68,-0.26564764969183474],[117,169,69,-0.2641691418017206],[117,169,70,-0.26256614148312485],[117,169,71,-0.2608394140379059],[117,169,72,-0.25898986485125286],[117,169,73,-0.25701854194800944],[117,169,74,-0.2549266385577399],[117,169,75,-0.2527154956887546],[117,169,76,-0.25038660471094554],[117,169,77,-0.2479416099474715],[117,169,78,-0.24538231127531462],[117,169,79,-0.2427106667346599],[117,170,64,-0.273381953036712],[117,170,65,-0.27241355184085536],[117,170,66,-0.27131811665780714],[117,170,67,-0.2700958856511084],[117,170,68,-0.26874722763234515],[117,170,69,-0.2672726445856629],[117,170,70,-0.26567277420094426],[117,170,71,-0.26394839241570145],[117,170,72,-0.26210041596565403],[117,170,73,-0.26012990494405974],[117,170,74,-0.258038065369645],[117,170,75,-0.2558262517633303],[117,170,76,-0.2534959697336183],[117,170,77,-0.25104887857067737],[117,170,78,-0.24848679384913952],[117,170,79,-0.2458116900395716],[117,171,64,-0.2763035367488782],[117,171,65,-0.2753420918232711],[117,171,66,-0.27425281972374904],[117,171,67,-0.27303596604736546],[117,171,68,-0.2716919077097403],[117,171,69,-0.2702211554730979],[117,171,70,-0.2686243564828136],[117,171,71,-0.2669022968125364],[117,171,72,-0.26505590401784396],[117,171,73,-0.26308624969851147],[117,171,74,-0.26099455206922817],[117,171,75,-0.2587821785389677],[117,171,76,-0.25645064829887176],[117,171,77,-0.2540016349186839],[117,171,78,-0.2514369689517545],[117,171,79,-0.2487586405485681],[117,172,64,-0.27907144023057173],[117,172,65,-0.2781167023220572],[117,172,66,-0.2770333812459228],[117,172,67,-0.2758217296595913],[117,172,68,-0.27448213217873607],[117,172,69,-0.2730151079087215],[117,172,70,-0.27142131298441674],[117,172,71,-0.2697015431184455],[117,172,72,-0.26785673615783134],[117,172,73,-0.26588797464911684],[117,172,74,-0.2637964884117926],[117,172,75,-0.26158365712024256],[117,172,76,-0.2592510128940638],[117,172,77,-0.2568002428967988],[117,172,78,-0.2542331919430969],[117,172,79,-0.2515518651142672],[117,173,64,-0.2816863699206116],[117,173,65,-0.2807380816288175],[117,173,66,-0.2796604913194398],[117,173,67,-0.2784538583403322],[117,173,68,-0.2771185746064164],[117,173,69,-0.2756551671344061],[117,173,70,-0.2740643005857759],[117,173,71,-0.2723467798180318],[117,173,72,-0.2705035524442513],[117,173,73,-0.26853571140096166],[117,173,74,-0.2664444975242024],[117,173,75,-0.2642313021339684],[117,173,76,-0.26189766962689986],[117,173,77,-0.2594453000772534],[117,173,78,-0.25687605184617146],[117,173,79,-0.2541919441992103],[117,174,64,-0.2841492670716249],[117,174,65,-0.283207163604451],[117,174,66,-0.2821350763024586],[117,174,67,-0.28093327083770836],[117,174,68,-0.2796021460273066],[117,174,69,-0.27814223637129165],[117,174,70,-0.2765542145986368],[117,174,71,-0.2748388942214365],[117,174,72,-0.27299723209723326],[117,174,73,-0.27103033099956597],[117,174,74,-0.2689394421965723],[117,174,75,-0.2667259680378544],[117,174,76,-0.2643914645494646],[117,174,77,-0.2619376440370491],[117,174,78,-0.25936637769716886],[117,174,79,-0.25667969823675396],[117,175,64,-0.28646131383302376],[117,175,65,-0.2855251237966434],[117,175,66,-0.28445830496639923],[117,175,67,-0.2832611289765662],[117,175,68,-0.2819340011536915],[117,175,69,-0.28047746305750954],[117,175,70,-0.27889219502985974],[117,175,71,-0.2771790187516717],[117,175,72,-0.27533889980797377],[117,175,73,-0.27337295026100894],[117,175,74,-0.27128243123128637],[117,175,75,-0.26906875548678344],[117,175,76,-0.26673349004014824],[117,175,77,-0.2642783587539481],[117,175,78,-0.2617052449539756],[117,175,79,-0.25901619405057497],[117,176,64,-0.28862393938754016],[117,176,65,-0.28769338561138325],[117,176,66,-0.2866315947006224],[117,176,67,-0.2854388438945221],[117,176,68,-0.28411554464123234],[117,176,69,-0.2826622451416002],[117,176,70,-0.28107963290087645],[117,176,71,-0.27936853728837785],[117,176,72,-0.2775299321050697],[117,176,73,-0.27556493815914007],[117,176,74,-0.27347482584940785],[117,176,75,-0.27126101775676603],[117,176,76,-0.26892509124352226],[117,176,77,-0.2664687810606732],[117,176,78,-0.2638939819631295],[117,176,79,-0.2612027513328502],[117,177,64,-0.2906388261411915],[117,177,65,-0.28971362653836596],[117,177,66,-0.2886566177714456],[117,177,67,-0.287468082332768],[117,177,68,-0.2861484374097568],[117,177,69,-0.28469823743149436],[117,177,70,-0.2831181766230847],[117,177,71,-0.2814090915678731],[117,177,72,-0.2795719637774827],[117,177,73,-0.27760792226974274],[117,177,74,-0.27551824615434595],[117,177,75,-0.27330436722644413],[117,177,76,-0.2709678725680357],[117,177,77,-0.2685105071571846],[117,177,78,-0.265934176485093],[117,177,79,-0.26324094918097696],[117,178,64,-0.2925079159667454],[117,178,65,-0.2915877844303634],[117,178,66,-0.2905353076355659],[117,178,67,-0.28935077298170986],[117,178,68,-0.28803460301928907],[117,178,69,-0.28658735799912305],[117,178,70,-0.2850097384292474],[117,178,71,-0.28330258763956284],[117,178,72,-0.28146689435420635],[117,178,73,-0.27950379527171976],[117,178,74,-0.2774145776528534],[117,178,75,-0.2752006819162127],[117,178,76,-0.2728637042416008],[117,178,77,-0.27040539918110074],[117,178,78,-0.267827682277913],[117,178,79,-0.26513263269290466],[117,179,64,-0.2942334165007454],[117,179,65,-0.2933180638366113],[117,179,66,-0.29226986530794674],[117,179,67,-0.29108911288150097],[117,179,68,-0.28977623410138253],[117,179,69,-0.28833179464072367],[117,179,70,-0.28675650086095916],[117,179,71,-0.2850512023787751],[117,179,72,-0.2832168946406942],[117,179,73,-0.28125472150536657],[117,179,74,-0.27916597783341335],[117,179,75,-0.2769521120850178],[117,179,76,-0.2746147289251315],[117,179,77,-0.27215559183632887],[117,179,78,-0.2695766257393294],[117,179,79,-0.26687991962114177],[117,180,64,-0.2958178074939539],[117,180,65,-0.29490694239008386],[117,180,66,-0.2938627657840335],[117,180,67,-0.29268557387732363],[117,180,68,-0.29137579884561293],[117,180,69,-0.2899340113926979],[117,180,70,-0.28836092331203833],[117,180,71,-0.2866573900558772],[117,180,72,-0.28482441331191033],[117,180,73,-0.282863143587587],[117,180,74,-0.28077488280187424],[117,180,75,-0.27856108688469394],[117,180,76,-0.27622336838388994],[117,180,77,-0.27376349907976294],[117,180,78,-0.2711834126071909],[117,180,79,-0.26848520708529466],[117,181,64,-0.2972638472153196],[117,181,65,-0.2963571772487459],[117,181,66,-0.295316764516395],[117,181,67,-0.2941429091295267],[117,181,68,-0.2928360475413332],[117,181,69,-0.29139675510312035],[117,181,70,-0.2898257486279461],[117,181,71,-0.28812388896177354],[117,181,72,-0.2862921835621016],[117,181,73,-0.2843317890841506],[117,181,74,-0.2822440139744359],[117,181,75,-0.28003032107194137],[117,181,76,-0.2776923302167462],[117,181,77,-0.2752318208661447],[117,181,78,-0.2726507347182784],[117,181,79,-0.26995117834323523],[117,182,64,-0.2985745789094756],[117,182,65,-0.2976718115908048],[117,182,66,-0.2966349039458046],[117,182,67,-0.29546415967863326],[117,182,68,-0.29416001917470713],[117,182,69,-0.29272306205891885],[117,182,70,-0.29115400976124683],[117,182,71,-0.28945372808980485],[117,182,72,-0.28762322981130717],[117,182,73,-0.2856636772390132],[117,182,74,-0.2835763848279995],[117,182,75,-0.2813628217779538],[117,182,76,-0.2790246146433616],[117,182,77,-0.276563549951112],[117,182,78,-0.27398157682555],[117,182,79,-0.27128080962092427],[117,183,64,-0.2997533373076766],[117,183,65,-0.29885418116386],[117,183,66,-0.29782052008666704],[117,183,67,-0.296652661065112],[117,183,68,-0.29535104808091706],[117,183,69,-0.2939162646686213],[117,183,70,-0.29234903648301214],[117,183,71,-0.2906502338739452],[117,183,72,-0.2888208744685058],[117,183,73,-0.286862125760597],[117,183,74,-0.2847753077077836],[117,183,75,-0.2825618953356033],[117,183,76,-0.2802235213492018],[117,183,77,-0.27776197875232833],[117,183,78,-0.2751792234737124],[117,183,79,-0.2724773770007761],[117,184,64,-0.3008037551922669],[117,184,65,-0.2999079208880473],[117,184,66,-0.29887724916687963],[117,184,67,-0.2977120500040157],[117,184,68,-0.2964127706516487],[117,184,69,-0.2949799982007648],[117,184,70,-0.29341446215026046],[117,184,71,-0.29171703698338936],[117,184,72,-0.2898887447514974],[117,184,73,-0.28793075766512244],[117,184,74,-0.2858444006923001],[117,184,75,-0.2836311541642723],[117,184,76,-0.28129265638846823],[117,184,77,-0.27883070626878814],[117,184,78,-0.2762472659332088],[117,184,79,-0.2735444633686711],[117,185,64,-0.30172977001463563],[117,185,65,-0.3008369715131306],[117,185,66,-0.29980903432209216],[117,185,67,-0.2986462711144432],[117,185,68,-0.2973491320978029],[117,185,69,-0.2959182075779313],[117,185,70,-0.2943542305293939],[117,185,71,-0.2926580791734982],[117,185,72,-0.29083077956347336],[117,185,73,-0.2888735081769588],[117,185,74,-0.28678759451564984],[117,185,75,-0.2845745237122945],[117,185,76,-0.2822359391449131],[117,185,77,-0.2797736450582632],[117,185,78,-0.2771896091925853],[117,185,79,-0.27448596541956893],[117,186,64,-0.3025356305666752],[117,186,65,-0.30164558632956096],[117,186,66,-0.3006201323443699],[117,186,67,-0.29945958370383075],[117,186,68,-0.2981643932674509],[117,186,69,-0.29673515422641283],[117,186,70,-0.2951726026756417],[117,186,71,-0.29347762019310275],[117,186,72,-0.291651236426292],[117,186,73,-0.28969463168599385],[117,186,74,-0.2876091395471464],[117,186,75,-0.28539624945701547],[117,186,76,-0.283057609350542],[117,186,77,-0.28059502827289307],[117,186,78,-0.27801047900924303],[117,186,79,-0.27530610072173534],[117,187,64,-0.3032259037057107],[117,187,65,-0.30233833793346776],[117,187,66,-0.30131512048524034],[117,187,67,-0.30015656860705264],[117,187,68,-0.29886313751900595],[117,187,69,-0.29743542298148284],[117,187,70,-0.29587416386848253],[117,187,71,-0.2941802447481452],[117,187,72,-0.2923546984704273],[117,187,73,-0.29039870876200513],[117,187,74,-0.2883136128282454],[117,187,75,-0.28610090396244126],[117,187,76,-0.2837622341621836],[117,187,77,-0.28129941675289594],[117,187,78,-0.2787144290185548],[117,187,79,-0.2760094148395542],[117,188,64,-0.303805481132962],[117,188,65,-0.3029201250456437],[117,188,66,-0.3018989033131738],[117,188,67,-0.3007421350803843],[117,188,68,-0.2994502776496648],[117,188,69,-0.2980239290483331],[117,188,70,-0.29646383060310555],[117,188,71,-0.2947708695217153],[117,188,72,-0.29294608148165113],[117,188,73,-0.29099065322608475],[117,188,74,-0.28890592516683156],[117,188,75,-0.2866933939945392],[117,188,76,-0.2843547152959791],[117,188,77,-0.2818917061784596],[117,188,78,-0.2793063479013962],[117,188,79,-0.2766007885149834],[117,189,64,-0.30427958622547313],[117,189,65,-0.30339617938446184],[117,189,66,-0.30237671962544055],[117,189,67,-0.3012215277502671],[117,189,68,-0.29993106287906124],[117,189,69,-0.2985059250186115],[117,189,70,-0.2969468576378451],[117,189,71,-0.2952547502504165],[117,189,72,-0.2934306410043863],[117,189,73,-0.29147571927905613],[117,189,74,-0.2893913282888053],[117,189,75,-0.28717896769412676],[117,189,76,-0.28484029621973195],[117,189,77,-0.28237713427974687],[117,189,78,-0.2797914666100362],[117,189,79,-0.27708544490759357],[117,190,64,-0.30465378092154827],[117,190,65,-0.30377207259275774],[117,190,66,-0.3027541494143807],[117,190,67,-0.3016003336169105],[117,190,68,-0.3003110858881657],[117,190,69,-0.29888700794259626],[117,190,70,-0.2973288450976276],[117,190,71,-0.2956374888571003],[117,190,72,-0.29381397950176624],[117,190,73,-0.29185950868692034],[117,190,74,-0.28977542204700346],[117,190,75,-0.28756322180737925],[117,190,76,-0.2852245694031521],[117,190,77,-0.28276128810505263],[117,190,78,-0.2801753656524184],[117,190,79,-0.2774689568932215],[117,191,64,-0.30493397265968347],[117,191,65,-0.30405372321867485],[117,191,66,-0.30303712088807644],[117,191,67,-0.30188448911272814],[117,191,68,-0.3005962899134257],[117,191,69,-0.299173126457002],[117,191,70,-0.29761574563342397],[117,191,71,-0.29592504063996206],[117,191,72,-0.2941020535723958],[117,191,73,-0.29214797802332726],[117,191,74,-0.290064161687449],[117,191,75,-0.2878521089739581],[117,191,76,-0.28551348362599227],[117,191,77,-0.28305011134710756],[117,191,78,-0.2804639824348313],[117,191,79,-0.27775725442123744],[117,192,64,-0.30512642137099266],[117,192,65,-0.30424740375045844],[117,192,66,-0.30323191754542045],[117,192,67,-0.3020802872155913],[117,192,68,-0.30079297589613574],[117,192,69,-0.29937058796841043],[117,192,70,-0.29781387163769724],[117,192,71,-0.2961237215179906],[117,192,72,-0.2943011812238022],[117,192,73,-0.2923474459690568],[117,192,74,-0.29026386517291736],[117,192,75,-0.28805194507274645],[117,192,76,-0.2857133513440612],[117,192,77,-0.2832499117275181],[117,192,78,-0.2806636186629513],[117,192,79,-0.2779566319304143],[117,193,64,-0.30523774652513],[117,193,65,-0.30435974770521634],[117,193,66,-0.30334518530559673],[117,193,67,-0.30219438461692283],[117,193,68,-0.3009078096870528],[117,193,69,-0.2994860658923322],[117,193,70,-0.29792990251585805],[117,193,71,-0.296240215332778],[117,193,72,-0.2944180492025922],[117,193,73,-0.2924646006685283],[117,193,74,-0.29038122056383775],[117,193,75,-0.28816941662520346],[117,193,76,-0.2858308561131312],[117,193,77,-0.2833673684393555],[117,193,78,-0.28078094780128027],[117,193,79,-0.27807375582341],[117,194,64,-0.30527493422970864],[117,194,65,-0.30439775677163106],[117,194,66,-0.3033839396919519],[117,194,67,-0.30223380894461094],[117,194,68,-0.300947829306242],[117,194,69,-0.29952660694789357],[117,194,70,-0.2979708920137194],[117,194,71,-0.2962815812066898],[117,194,72,-0.2944597203812984],[117,194,73,-0.2925065071433256],[117,194,74,-0.2904232934565112],[117,194,75,-0.2882115882563283],[117,194,76,-0.28587306007072766],[117,194,77,-0.2834095396478822],[117,194,78,-0.2808230225909566],[117,194,79,-0.2781156719998539],[117,195,64,-0.3052453443832194],[117,195,65,-0.30436880800664046],[117,195,66,-0.30335557307028405],[117,195,67,-0.3022059660407621],[117,195,68,-0.3009204522581721],[117,195,69,-0.29949963850816375],[117,195,70,-0.2979442756009604],[117,195,71,-0.2962552609573964],[117,195,72,-0.29443364120193705],[117,195,73,-0.29248061476274867],[117,195,74,-0.29039753447866545],[117,195,75,-0.2881859102132498],[117,195,76,-0.2858474114758143],[117,195,77,-0.28338387004943155],[117,195,78,-0.2807972826259637],[117,195,79,-0.2780898134480534],[117,196,64,-0.30515671788142995],[117,196,65,-0.3042806610860559],[117,196,66,-0.30326786194151234],[117,196,67,-0.30211864729426385],[117,196,68,-0.3008334829020265],[117,196,69,-0.29941297600608696],[117,196,70,-0.2978578779105756],[117,196,71,-0.29616908656874885],[117,196,72,-0.2943476491762417],[117,196,73,-0.2923947647713694],[117,196,74,-0.2903117868423156],[117,196,75,-0.2881002259414075],[117,196,76,-0.2857617523063445],[117,196,77,-0.28329819848841176],[117,196,78,-0.2807115619876994],[117,196,79,-0.278004007895286],[117,197,64,-0.3050171838773036],[117,197,65,-0.304141465609164],[117,197,66,-0.3031289742887705],[117,197,67,-0.3019800370282011],[117,197,68,-0.30069511987727726],[117,197,69,-0.2992748303960704],[117,197,70,-0.29771992023434946],[117,197,71,-0.29603128771803455],[117,197,72,-0.2942099804426185],[117,197,73,-0.29225719787362925],[117,197,74,-0.2901742939539751],[117,197,75,-0.28796277971837314],[117,197,76,-0.2856243259147253],[117,197,77,-0.28316076563247283],[117,197,78,-0.2805740969379562],[117,197,79,-0.2778664855167273],[117,198,64,-0.30483526709439357],[117,198,65,-0.3039597684572659],[117,198,66,-0.30294747697889124],[117,198,67,-0.30179871994208063],[117,198,68,-0.3005139635844781],[117,198,69,-0.2990938156711833],[117,198,70,-0.297539028074315],[117,198,71,-0.29585049935957597],[117,198,72,-0.2940292773797838],[117,198,73,-0.29207656187543907],[117,198,74,-0.2899937070821712],[117,198,75,-0.2877822243452689],[117,198,76,-0.28544378474114884],[117,198,77,-0.2829802217058064],[117,198,78,-0.2803935336702633],[117,198,79,-0.2776858867029677],[117,199,64,-0.3046198951937429],[117,199,65,-0.303744521206186],[117,199,66,-0.30273234321829234],[117,199,67,-0.30158368860889484],[117,199,68,-0.3002990237213029],[117,199,69,-0.2988789564359894],[117,199,70,-0.2973242387502225],[117,199,71,-0.2956357693646926],[117,199,72,-0.29381459627710516],[117,199,73,-0.2918619193828078],[117,199,74,-0.28977909308229777],[117,199,75,-0.28756762889580467],[117,199,76,-0.28522919808481784],[117,199,77,-0.2827656342805872],[117,199,78,-0.2801789361196231],[117,199,79,-0.27747126988614645],[117,200,64,-0.30438040619428086],[117,200,65,-0.3035050875927352],[117,200,66,-0.30249296006327087],[117,200,67,-0.3013443510270124],[117,200,68,-0.30005972687382054],[117,200,69,-0.29863969553501046],[117,200,70,-0.2970850090630123],[117,200,71,-0.295396566218025],[117,200,72,-0.2935754150616392],[117,200,73,-0.29162275555748973],[117,200,74,-0.2895399421787883],[117,200,75,-0.28732848652293297],[117,200,76,-0.2849900599330589],[117,200,77,-0.28252649612656344],[117,200,78,-0.2799397938306286],[117,200,79,-0.27723211942469295],[117,201,64,-0.304126555946707],[117,201,65,-0.30325125103512796],[117,201,66,-0.30223913598469276],[117,201,67,-0.3010905382268927],[117,201,68,-0.2998059241630041],[117,201,69,-0.29838590173681234],[117,201,70,-0.29683122301428],[117,201,71,-0.29514278677020866],[117,201,72,-0.29332164108186565],[117,201,73,-0.2913689859296472],[117,201,74,-0.289286175804614],[117,201,75,-0.2870747223231097],[117,201,76,-0.2847362968483159],[117,201,77,-0.2822727331187831],[117,201,78,-0.2796860298839612],[117,201,79,-0.2769783535466731],[117,202,64,-0.30386790348771386],[117,202,65,-0.3029925961836102],[117,202,66,-0.3019804788100968],[117,202,67,-0.3008318787990366],[117,202,68,-0.29954726255199293],[117,202,69,-0.2981272380129534],[117,202,70,-0.29657255724799236],[117,202,71,-0.29488411903193346],[117,202,72,-0.29306297144197313],[117,202,73,-0.2911103144583389],[117,202,74,-0.2890275025718263],[117,202,75,-0.2868160473984115],[117,202,76,-0.2844776203008055],[117,202,77,-0.2820140550169826],[117,202,78,-0.2794273502957064],[117,202,79,-0.27671967253900376],[117,203,64,-0.30360503160575736],[117,203,65,-0.3027296754974481],[117,203,66,-0.3017175110907947],[117,203,67,-0.30056886581980713],[117,203,68,-0.2992842060862405],[117,203,69,-0.29786413983227245],[117,203,70,-0.29630941912012],[117,203,71,-0.2946209427186538],[117,203,72,-0.2927997586969744],[117,203,73,-0.2908470670250236],[117,203,74,-0.28876422218107267],[117,203,75,-0.28655273576628704],[117,203,76,-0.28421427912623165],[117,203,77,-0.28175068597935116],[117,203,78,-0.2791639550524456],[117,203,79,-0.27645625272309626],[117,204,64,-0.3033316033488377],[117,204,65,-0.3024560797189608],[117,204,66,-0.30144375386825273],[117,204,67,-0.30029495323823274],[117,204,68,-0.29901014423145467],[117,204,69,-0.29758993478402274],[117,204,70,-0.2960350769450474],[117,204,71,-0.2943464694630987],[117,204,72,-0.2925251603796194],[117,204,73,-0.29057234962937273],[117,204,74,-0.28848939164776466],[117,204,75,-0.2862777979852431],[117,204,76,-0.283939239928637],[117,204,77,-0.2814755511294672],[117,204,78,-0.27888873023925365],[117,204,79,-0.27618094355177003],[117,205,64,-0.3030414146138415],[117,205,65,-0.3021655345333185],[117,205,66,-0.30115286515979844],[117,205,67,-0.3000037339510979],[117,205,68,-0.29871860731178124],[117,205,69,-0.29729809316533784],[117,205,70,-0.295742943533295],[117,205,71,-0.2940540571213257],[117,205,72,-0.2922324819123152],[117,205,73,-0.2902794177664594],[117,205,74,-0.2881962190282352],[117,205,75,-0.28598439714044666],[117,205,76,-0.28364562326520637],[117,205,77,-0.28118173091188936],[117,205,78,-0.2785947185720793],[117,205,79,-0.2758867523614603],[117,206,64,-0.30272857663190766],[117,206,65,-0.301852084168444],[117,206,66,-0.3008388246152943],[117,206,67,-0.2996891254588291],[117,206,68,-0.29840345310761673],[117,206,69,-0.29698241546401616],[117,206,70,-0.2954267645027001],[117,206,71,-0.29373739885616923],[117,206,72,-0.2919153664072206],[117,206,73,-0.2899618668884457],[117,206,74,-0.28787825448859594],[117,206,75,-0.28566604046601807],[117,206,76,-0.2833268957690246],[117,206,77,-0.2808626536632295],[117,206,78,-0.27827531236587444],[117,206,79,-0.27556703768709556],[117,207,64,-0.3023875093459574],[117,207,65,-0.3015100847112864],[117,207,66,-0.30049592677446557],[117,207,67,-0.299345363066188],[117,207,68,-0.29805886000196735],[117,207,69,-0.2966370254528362],[117,207,70,-0.2950806113229699],[117,207,71,-0.29339051613429634],[117,207,72,-0.2915677876180536],[117,207,73,-0.28961362531337054],[117,207,74,-0.28752938317270926],[117,207,75,-0.285316572174373],[117,207,76,-0.28297686294194035],[117,207,77,-0.2805120883706611],[117,207,78,-0.27792424626083556],[117,207,79,-0.2752155019581294],[117,208,64,-0.30201293484502345],[117,208,65,-0.30113419748136616],[117,208,66,-0.30011877438195567],[117,208,67,-0.2989669931411296],[117,208,68,-0.2976793201853938],[117,208,69,-0.2962563633428612],[117,208,70,-0.2946988744196074],[117,208,71,-0.2930077517830031],[117,208,72,-0.2911840429519882],[117,208,73,-0.28922894719435643],[117,208,74,-0.28714381813089784],[117,208,75,-0.2849301663465953],[117,208,76,-0.28258966200874036],[117,208,77,-0.2801241374920018],[117,208,78,-0.2775355900104697],[117,208,79,-0.2748261842566252],[117,209,64,-0.3015998708553652],[117,209,65,-0.3007193824615835],[117,209,66,-0.29970227176010655],[117,209,67,-0.29854886643182243],[117,209,68,-0.2972596329195363],[117,209,69,-0.2958351789957261],[117,209,70,-0.2942762563372042],[117,209,71,-0.29258376310674306],[117,209,72,-0.2907587465416307],[117,209,73,-0.28880240554922987],[117,209,74,-0.28671609330937786],[117,209,75,-0.28450131988383276],[117,209,76,-0.28215975483262734],[117,209,77,-0.2796932298373641],[117,209,78,-0.27710374133147275],[117,209,79,-0.27439345313738595],[117,210,64,-0.3011436242883674],[117,210,65,-0.30026089178628335],[117,210,66,-0.29924161823944784],[117,210,67,-0.2980861314418176],[117,210,68,-0.2967948978592104],[117,210,69,-0.295368525194898],[117,210,70,-0.2938077649620916],[117,210,71,-0.2921135150633778],[117,210,72,-0.29028682237706926],[117,210,73,-0.2883288853505437],[117,210,74,-0.28624105660041],[117,210,75,-0.2840248455197065],[117,210,76,-0.2816819208919916],[117,210,77,-0.2792141135123609],[117,210,78,-0.27662341881541364],[117,210,79,-0.27391199951012113],[117,211,64,-0.30063978484523435],[117,211,65,-0.2997542632865926],[117,211,66,-0.2987323016469151],[117,211,67,-0.2975742278633854],[117,211,68,-0.29628050843309084],[117,211,69,-0.29485175097592464],[117,211,70,-0.29328870680436225],[117,211,71,-0.29159227350017036],[117,211,72,-0.28976349749801156],[117,211,73,-0.2878035766760195],[117,211,74,-0.28571386295318457],[117,211,75,-0.28349586489375156],[117,211,76,-0.28115125031849286],[117,211,77,-0.2786818489228885],[117,211,78,-0.27608965490224],[117,211,79,-0.2733768295836658],[117,212,64,-0.3000842186784767],[117,212,65,-0.2991953140930237],[117,212,66,-0.29817009185179466],[117,212,67,-0.29700888006901505],[117,212,68,-0.2957121452829766],[117,212,69,-0.294280495015669],[117,212,70,-0.2927146803392642],[117,212,71,-0.29101559844951175],[117,212,72,-0.2891842952460064],[117,212,73,-0.2872219679194059],[117,212,74,-0.28512996754543585],[117,212,75,-0.28290980168588375],[117,212,76,-0.2805631369964493],[117,212,77,-0.27809180184147664],[117,212,78,-0.2754977889156002],[117,212,79,-0.27278325787224855],[117,213,64,-0.29947306211017277],[117,213,65,-0.2985801342953287],[117,213,66,-0.29755103436937214],[117,213,67,-0.29638609066105925],[117,213,68,-0.29508576976162326],[117,213,69,-0.29365067908051057],[117,213,70,-0.2920815694079434],[117,213,71,-0.2903793374843645],[117,213,72,-0.28854502857673225],[117,213,73,-0.2865798390617347],[117,213,74,-0.28448511901576734],[117,213,75,-0.282262374811874],[117,213,76,-0.27991327172351466],[117,213,77,-0.27743963653519277],[117,213,78,-0.27484346015996564],[117,213,79,-0.2721269002637896],[117,214,64,-0.29880271540703407],[117,214,65,-0.29790508065963284],[117,214,66,-0.29687144402231824],[117,214,67,-0.29570213407955137],[117,214,68,-0.2943976174891666],[117,214,69,-0.2929585015335434],[117,214,70,-0.29138553667756906],[117,214,71,-0.28967961913345686],[117,214,72,-0.28784179343238125],[117,214,73,-0.28587325500300154],[117,214,74,-0.28377535275671795],[117,214,75,-0.2815495916798607],[117,214,76,-0.2791976354326733],[117,214,77,-0.2767213089551258],[117,214,78,-0.27412260107958053],[117,214,79,-0.27140366715025943],[117,215,64,-0.2980698366122505],[117,215,65,-0.29716677040282125],[117,215,66,-0.2961278986597854],[117,215,67,-0.2949535502681747],[117,215,68,-0.29364419196812064],[117,215,69,-0.2922004309007461],[117,215,70,-0.29062301716081407],[117,215,71,-0.28891284635619496],[117,215,72,-0.28707096217411365],[117,215,73,-0.2850985589542522],[117,215,74,-0.2829969842685456],[117,215,75,-0.2807677415078762],[117,215,76,-0.278412492475527],[117,215,77,-0.2759330599874277],[117,215,78,-0.2733314304792168],[117,215,79,-0.27060975662007214],[117,216,64,-0.29727133543413653],[117,216,65,-0.29636207502420364],[117,216,66,-0.2953172329342373],[117,216,67,-0.2941371383984017],[117,216,68,-0.2928222582569624],[117,216,69,-0.29137319949614504],[117,216,70,-0.28979071179471383],[117,216,71,-0.28807569007732237],[117,216,72,-0.2862291770746068],[117,216,73,-0.2842523658900914],[117,216,74,-0.28214660257374724],[117,216,75,-0.27991338870240756],[117,216,76,-0.27755438396690046],[117,216,77,-0.27507140876593394],[117,216,78,-0.27246644680675514],[117,216,79,-0.26974164771253717],[117,217,64,-0.2964043671915466],[117,217,65,-0.29548811419442145],[117,217,66,-0.294436532135979],[117,217,67,-0.29324995065177206],[117,217,68,-0.29192883670227865],[117,217,69,-0.29047379710594],[117,217,70,-0.2888855810788701],[117,217,71,-0.28716508278129016],[117,217,72,-0.28531334387066176],[117,217,73,-0.28333155606158156],[117,217,74,-0.2812210636922847],[117,217,75,-0.2789833662979584],[117,217,76,-0.2766201211907242],[117,217,77,-0.27413314604632844],[117,217,78,-0.27152442149755707],[117,217,79,-0.26879609373433433],[117,218,64,-0.2954663268160945],[117,218,65,-0.2945422497016368],[117,218,66,-0.2934831260854256],[117,218,67,-0.29228928606034743],[117,218,68,-0.29096119672950893],[117,218,69,-0.2894994647316267],[117,218,70,-0.2879048387730364],[117,218,71,-0.2861782121663762],[117,218,72,-0.2843206253759112],[117,218,73,-0.28233326856957397],[117,218,74,-0.2802174841775549],[117,218,75,-0.2779747694576524],[117,218,76,-0.2756067790672415],[117,218,77,-0.27311532764189317],[117,218,78,-0.2705023923806703],[117,218,79,-0.2677701156380513],[117,219,64,-0.2944548429111695],[117,219,65,-0.2935220794549894],[117,219,66,-0.292454583083094],[117,219,67,-0.2912526844053297],[117,219,68,-0.28991685069227136],[117,219,69,-0.28844768839210644],[117,219,70,-0.28684594565407684],[117,219,71,-0.2851125148585397],[117,219,72,-0.2832484351536092],[117,219,73,-0.2812548949984537],[117,219,74,-0.27913323471308804],[117,219,75,-0.2768849490348638],[117,219,76,-0.27451168968152073],[117,219,77,-0.27201526792082886],[117,219,78,-0.26939765714685115],[117,219,79,-0.2666609954627712],[117,220,64,-0.2933677718677138],[117,220,65,-0.2924254315452933],[117,220,66,-0.2913487039172925],[117,220,67,-0.2901379201738128],[117,220,68,-0.2887935477802436],[117,220,69,-0.2873161929847522],[117,220,70,-0.2857066033322616],[117,220,71,-0.28396567018498564],[117,220,72,-0.28209443124947764],[117,220,73,-0.28009407311027057],[117,220,74,-0.2779659337699474],[117,220,75,-0.2757115051958432],[117,220,76,-0.2733324358732443],[117,220,77,-0.27083053336511487],[117,220,78,-0.268207766878374],[117,220,79,-0.26546626983667887],[117,221,64,-0.2922031920368122],[117,221,65,-0.2912503583630187],[117,221,66,-0.2901635159295535],[117,221,67,-0.28894299657371714],[117,221,68,-0.287589267985645],[117,221,69,-0.28610293620547744],[117,221,70,-0.2844847481269529],[117,221,71,-0.2827355940074803],[117,221,72,-0.2808565099846574],[117,221,73,-0.27884868059930856],[117,221,74,-0.27671344132487874],[117,221,75,-0.2744522811033909],[117,221,76,-0.27206684488782606],[117,221,77,-0.26955893619095994],[117,221,78,-0.26693051964068026],[117,221,79,-0.26418372354173514],[117,222,64,-0.29095939795907644],[117,222,65,-0.28999513077354533],[117,222,66,-0.28889726713779007],[117,222,67,-0.28766613960688825],[117,222,68,-0.28630221612830387],[117,222,69,-0.2848061025277945],[117,222,70,-0.28317854500166206],[117,222,71,-0.28142043261540617],[117,222,72,-0.27953279980874324],[117,222,73,-0.2775168289070675],[117,222,74,-0.27537385263918945],[117,222,75,-0.2731053566615591],[117,222,76,-0.270712982088834],[117,222,77,-0.26819852803082467],[117,222,78,-0.265563954135843],[117,222,79,-0.262811383140403],[117,223,64,-0.2896348946507866],[117,223,65,-0.2886582323496458],[117,223,66,-0.28754842041714446],[117,223,67,-0.28630579220032226],[117,223,68,-0.28493081593927316],[117,223,69,-0.28342409724081896],[117,223,70,-0.2817863815584387],[117,223,71,-0.2800185566785163],[117,223,72,-0.27812165521286825],[117,223,73,-0.27609685709762777],[117,223,74,-0.27394549209832064],[117,223,75,-0.2716690423213406],[117,223,76,-0.26926914473168373],[117,223,77,-0.26674759367697576],[117,223,78,-0.2641063434178148],[117,223,79,-0.26134751066438255],[117,224,64,-0.2882283919468507],[117,224,65,-0.28723835366126416],[117,224,66,-0.28611564773858467],[117,224,67,-0.2848606083955797],[117,224,68,-0.2834737042030526],[117,224,69,-0.2819555405462876],[117,224,70,-0.28030686209165645],[117,224,71,-0.2785285552594502],[117,224,72,-0.2766216507028988],[117,224,73,-0.27458732579345535],[117,224,74,-0.27242690711217665],[117,224,75,-0.2701418729474139],[117,224,76,-0.2677338557986668],[117,224,77,-0.2652046448866393],[117,224,78,-0.2625561886695178],[117,224,79,-0.2597905973654251],[117,225,64,-0.28673879890055676],[117,225,65,-0.2857343866225611],[117,225,66,-0.2845978244652271],[117,225,67,-0.28332944759636436],[117,225,68,-0.2819297249583971],[117,225,69,-0.28039926171456175],[117,225,70,-0.2787388017011685],[117,225,71,-0.276949229885986],[117,225,72,-0.2750315748327148],[117,225,73,-0.2729870111716236],[117,225,74,-0.2708168620761844],[117,225,75,-0.26852260174591447],[117,225,76,-0.26610585789528385],[117,225,77,-0.263568414248723],[117,225,78,-0.26091221304175394],[117,225,79,-0.25813935752819483],[117,226,64,-0.285165218240079],[117,226,65,-0.2841454188961883],[117,226,66,-0.28299402370634186],[117,226,67,-0.28171136887422255],[117,226,68,-0.2802979237576656],[117,226,69,-0.2787542932995739],[117,226,70,-0.2770812204647908],[117,226,71,-0.27527958868298774],[117,226,72,-0.2733504242975313],[117,226,73,-0.27129489902040826],[117,226,74,-0.2691143323930385],[117,226,75,-0.2668101942531884],[117,226,76,-0.26438410720784267],[117,226,77,-0.2618378491120674],[117,226,78,-0.259173355553888],[117,226,79,-0.25639272234513544],[117,227,64,-0.2835069408818057],[117,227,65,-0.2824707283548591],[117,227,66,-0.28130351072911475],[117,227,67,-0.28000562533243734],[117,227,68,-0.2785775419847851],[117,227,69,-0.27701986541279144],[117,227,70,-0.27533333767018653],[117,227,71,-0.2735188405641181],[117,227,72,-0.2715773980873385],[117,227,73,-0.26951017885633144],[117,227,74,-0.26731849855521084],[117,227,75,-0.26500382238560805],[117,227,76,-0.26256776752239686],[117,227,77,-0.26001210557529797],[117,227,78,-0.25733876505638176],[117,227,79,-0.2545498338534218],[117,228,64,-0.28176344050046165],[117,228,65,-0.2807097776001912],[117,228,66,-0.27952573742813525],[117,228,67,-0.2782116585280864],[117,228,68,-0.2767680112317993],[117,228,69,-0.27519540005616805],[117,228,70,-0.27349456610612133],[117,228,71,-0.27166638948329125],[117,228,72,-0.26971189170042664],[117,228,73,-0.26763223810162096],[117,228,74,-0.2654287402881902],[117,228,75,-0.2631028585504134],[117,228,76,-0.26065620430499037],[117,228,77,-0.2580905425382519],[117,228,78,-0.25540779425514737],[117,228,79,-0.2526100389339577],[117,229,64,-0.2799343681559765],[117,229,65,-0.2788622085387664],[117,229,66,-0.2776603368525592],[117,229,67,-0.2763290929522152],[117,229,68,-0.2748689477339509],[117,229,69,-0.27328050551402994],[117,229,70,-0.2715645064130393],[117,229,71,-0.26972182874580986],[117,229,72,-0.2677534914169447],[117,229,73,-0.26566065632203717],[117,229,74,-0.2634446307543997],[117,229,75,-0.2611068698175303],[117,229,76,-0.25864897884315974],[117,229,77,-0.2560727158149213],[117,229,78,-0.25337999379766685],[117,229,79,-0.2505728833723755],[117,230,64,-0.2780195469771818],[117,230,65,-0.2769278370154976],[117,230,66,-0.27570711779103596],[117,230,67,-0.27435773056821144],[117,230,68,-0.27288014686338713],[117,230,69,-0.2712749708039869],[117,230,70,-0.26954294149304736],[117,230,71,-0.2676849353792776],[117,230,72,-0.26570196863258566],[117,230,73,-0.26359519952515387],[117,230,74,-0.26136593081788717],[117,230,75,-0.25901561215245583],[117,230,76,-0.2565458424487822],[117,230,77,-0.25395837230800866],[117,230,78,-0.25125510642097004],[117,230,79,-0.24843810598212235],[117,231,64,-0.2760189669023052],[117,231,65,-0.27490664750426574],[117,231,66,-0.2736660594143614],[117,231,67,-0.27229754540834283],[117,231,68,-0.27080157768144886],[117,231,69,-0.26917876018683096],[117,231,70,-0.26742983097927],[117,231,71,-0.2655556645642506],[117,231,72,-0.2635572742523554],[117,231,73,-0.2614358145190585],[117,231,74,-0.2591925833697438],[117,231,75,-0.256829024710171],[117,231,76,-0.2543467307222338],[117,231,77,-0.25174744424505424],[117,231,78,-0.2490330611614313],[117,231,79,-0.2462056327895985],[117,232,64,-0.27393277947619843],[117,232,65,-0.2727987878557673],[117,232,66,-0.2715373059757987],[117,232,67,-0.27014867822840427],[117,232,68,-0.2686333775494869],[117,232,69,-0.2669920077353626],[117,232,70,-0.2652253057645174],[117,232,71,-0.26333414412456546],[117,232,72,-0.2613195331443702],[117,232,73,-0.2591826233314074],[117,232,74,-0.25692470771419673],[117,232,75,-0.25454722419002274],[117,232,76,-0.2520517578777929],[117,232,77,-0.24944004347607396],[117,232,78,-0.24671396762632547],[117,232,79,-0.24387557128128456],[117,233,64,-0.27176129270440674],[117,233,65,-0.2706045641026774],[117,233,66,-0.2693211615691701],[117,233,67,-0.26791143122057093],[117,233,68,-0.26637584679830817],[117,233,69,-0.26471501196224956],[117,233,70,-0.26292966258936956],[117,233,71,-0.2610206690774509],[117,233,72,-0.25898903865378464],[117,233,73,-0.25683591768894676],[117,233,74,-0.2545625940154763],[117,233,75,-0.2521704992516789],[117,233,76,-0.24966121113040096],[117,233,77,-0.24703645583281708],[117,233,78,-0.24429811032724835],[117,233,79,-0.24144820471296746],[117,234,64,-0.2695049659640306],[117,234,65,-0.2683244353220793],[117,234,66,-0.2670180849446744],[117,234,67,-0.2655862627844179],[117,234,68,-0.2640294434562055],[117,234,69,-0.26234823050687195],[117,234,70,-0.2605433586896314],[117,234,71,-0.25861569624337744],[117,234,72,-0.25656624717680765],[117,234,73,-0.25439615355745016],[117,234,74,-0.25210669780541795],[117,234,75,-0.24969930499211346],[117,234,76,-0.24717554514373064],[117,234,77,-0.24453713554959455],[117,234,78,-0.24178594307535906],[117,234,79,-0.23892398648101532],[117,235,64,-0.26716440497131766],[117,235,65,-0.2659590085551019],[117,235,66,-0.264628684382367],[117,235,67,-0.26317378235603905],[117,235,68,-0.26159477803550824],[117,235,69,-0.259892274881089],[117,235,70,-0.2580670065030929],[117,235,71,-0.2561198389155773],[117,235,72,-0.25405177279473523],[117,235,73,-0.25186394574200544],[117,235,74,-0.24955763455172486],[117,235,75,-0.24713425748355056],[117,235,76,-0.24459537653949415],[117,235,77,-0.2419426997456121],[117,235,78,-0.23917808343837],[117,235,79,-0.23630353455563524],[117,236,64,-0.26474035680610175],[117,236,65,-0.26350903378387625],[117,236,66,-0.2621537126234158],[117,236,67,-0.2606747452953819],[117,236,68,-0.2590726083777687],[117,236,69,-0.25734790527404483],[117,236,70,-0.2555013684357129],[117,236,71,-0.25353386158935487],[117,236,72,-0.2514463819681253],[117,236,73,-0.2492400625477743],[117,236,74,-0.2469161742870185],[117,236,75,-0.24447612837249144],[117,236,76,-0.24192147846811407],[117,236,77,-0.23925392296892833],[117,236,78,-0.23647530725941324],[117,236,79,-0.23358762597623695],[117,237,64,-0.2622337049930329],[117,237,65,-0.2609753989657606],[117,237,66,-0.2595940618590835],[117,237,67,-0.2580900478317456],[117,237,68,-0.2564638345575333],[117,237,69,-0.25471602541596083],[117,237,70,-0.25284735168717365],[117,237,71,-0.2508586747511342],[117,237,72,-0.24875098829105613],[117,237,73,-0.24652542050116677],[117,237,74,-0.24418323629861716],[117,237,75,-0.24172583953976923],[117,237,76,-0.23915477524070294],[117,237,77,-0.236471731801986],[117,237,78,-0.23367854323772375],[117,237,79,-0.230777191408845],[117,238,64,-0.25964546463953353],[117,238,65,-0.25835912512476533],[117,238,66,-0.25695075877736584],[117,238,67,-0.25542072206737476],[117,238,68,-0.2537694938446263],[117,238,69,-0.251997677500843],[117,238,70,-0.2501060031357343],[117,238,71,-0.24809532972717152],[117,238,72,-0.2459666473053983],[117,238,73,-0.2437210791313612],[117,238,74,-0.24135988387897456],[117,238,75,-0.2388844578215572],[117,238,76,-0.23629633702227537],[117,238,77,-0.23359719952863878],[117,238,78,-0.2307888675710681],[117,238,79,-0.22787330976548736],[117,239,64,-0.25697677763061444],[117,239,65,-0.25566136150031304],[117,239,66,-0.2542249596674203],[117,239,67,-0.25266793103928087],[117,239,68,-0.2509907557250862],[117,239,69,-0.2491940371682423],[117,239,70,-0.24727850428252163],[117,239,71,-0.24524501359207185],[117,239,72,-0.24309455137524194],[117,239,73,-0.24082823581230817],[117,239,74,-0.2384473191369163],[117,239,75,-0.23595318979147506],[117,239,76,-0.23334737458633836],[117,239,77,-0.2306315408628199],[117,239,78,-0.22780749866006123],[117,239,79,-0.22487720288570467],[117,240,64,-0.25422890788043484],[117,240,65,-0.2528833807532176],[117,240,66,-0.2514179455816741],[117,240,67,-0.2498329638391823],[117,240,68,-0.24812891698063622],[117,240,69,-0.24630640854395425],[117,240,70,-0.24436616625514407],[117,240,71,-0.2423090441369946],[117,240,72,-0.24013602462135808],[117,240,73,-0.23784822066510392],[117,240,74,-0.23544687786955887],[117,240,75,-0.2329333766036722],[117,240,76,-0.23030923413073945],[117,240,77,-0.2275761067387324],[117,240,78,-0.22473579187425163],[117,240,79,-0.22179023028005773],[117,241,64,-0.2514032366407001],[117,241,65,-0.250026574228977],[117,241,66,-0.24853111755569868],[117,241,67,-0.24691723079164918],[117,241,68,-0.2451853968267831],[117,241,69,-0.24333621933974692],[117,241,70,-0.2413704248707188],[117,241,71,-0.23928886489763912],[117,241,72,-0.237092517915792],[117,241,73,-0.2347824915208231],[117,241,74,-0.23236002449500315],[117,241,75,-0.22982648889698332],[117,241,76,-0.22718339215486738],[117,241,77,-0.22443237916265524],[117,241,78,-0.22157523438007132],[117,241,79,-0.2186138839357321],[117,242,64,-0.24850125786576915],[117,242,65,-0.2470924472782493],[117,242,66,-0.24556599188572614],[117,242,67,-0.24392225869032813],[117,242,68,-0.2421617321094145],[117,242,69,-0.2402850160119887],[117,242,70,-0.23829283575818194],[117,242,71,-0.23618604024187906],[117,242,72,-0.2339656039364516],[117,242,73,-0.2316326289436792],[117,242,74,-0.22918834704566948],[117,242,75,-0.22663412176002273],[117,242,76,-0.22397145039806965],[117,242,77,-0.2212019661262301],[117,242,78,-0.21832744003051097],[117,242,79,-0.21534978318409947],[117,243,64,-0.2455245736346201],[117,243,65,-0.2440826146346633],[117,243,66,-0.2425241954639572],[117,243,67,-0.24084968609239632],[117,243,68,-0.23905957256004629],[117,243,69,-0.23715445897933185],[117,243,70,-0.23513506954003882],[117,243,71,-0.2330022505172039],[117,243,72,-0.23075697228185277],[117,243,73,-0.22840033131467408],[117,243,74,-0.22593355222243305],[117,243,75,-0.22335798975737586],[117,243,76,-0.22067513083945],[117,243,77,-0.21788659658139042],[117,243,78,-0.21499414431668906],[117,243,79,-0.21199966963040262],[117,244,64,-0.2424748896296104],[117,244,65,-0.2409987958498977],[117,244,66,-0.23940746117159328],[117,244,67,-0.23770125867118108],[117,244,68,-0.2358806761096558],[117,244,69,-0.23394631789937947],[117,244,70,-0.23189890707348326],[117,244,71,-0.22973928725789505],[117,244,72,-0.2274684246459482],[117,244,73,-0.2250874099756609],[117,244,74,-0.22259746050949158],[117,244,75,-0.21999992201681895],[117,244,76,-0.21729627075897218],[117,244,77,-0.21448811547686308],[117,244,78,-0.21157719938123565],[117,244,79,-0.20856540214548835],[117,245,64,-0.2393540106719465],[117,245,65,-0.23784281078594538],[117,245,66,-0.23621762332951124],[117,245,67,-0.234478824626856],[117,245,68,-0.23262690426101162],[117,245,69,-0.2306624670042542],[117,245,70,-0.22858623475080053],[117,245,71,-0.226399048451853],[117,245,72,-0.2241018700529539],[117,245,73,-0.22169578443373594],[117,245,74,-0.21918200134987142],[117,245,75,-0.21656185737747513],[117,245,76,-0.21383681785978115],[117,245,77,-0.2110084788561477],[117,245,78,-0.20807856909340483],[117,245,79,-0.2050489519195008],[117,246,64,-0.23616383631402005],[117,246,65,-0.23461657516471957],[117,246,66,-0.23295661320673622],[117,246,67,-0.23118433015537776],[117,246,68,-0.22930021751966356],[117,246,69,-0.227304880495229],[117,246,70,-0.2251990398592172],[117,246,71,-0.22298353386723602],[117,246,72,-0.22065932015234002],[117,246,73,-0.21822747762612682],[117,246,74,-0.21568920838174577],[117,246,75,-0.2130458395990792],[117,246,76,-0.2102988254519127],[117,246,77,-0.20744974901715008],[117,246,78,-0.20450032418608766],[117,246,79,-0.2014523975777026],[117,247,64,-0.23290635648853564],[117,247,65,-0.2313220961749265],[117,247,66,-0.22962645458663866],[117,247,67,-0.22781981497558268],[117,247,68,-0.22590267088351423],[117,247,69,-0.2238756279963402],[117,247,70,-0.22173940600011932],[117,247,71,-0.2194948404388355],[117,247,72,-0.21714288457390285],[117,247,73,-0.21468461124549265],[117,247,74,-0.21212121473547896],[117,247,75,-0.20945401263226537],[117,247,76,-0.20668444769730643],[117,247,77,-0.20381408973338222],[117,247,78,-0.2008446374546381],[117,247,79,-0.19777792035834707],[117,248,64,-0.2295836472143461],[117,248,65,-0.2279614681361194],[117,248,66,-0.226229259390767],[117,248,67,-0.22438740791435918],[117,248,68,-0.22243640939088538],[117,248,69,-0.22037687006689832],[117,248,70,-0.21820950856754973],[117,248,71,-0.21593515771409533],[117,248,72,-0.21355476634283088],[117,248,73,-0.21106940112554884],[117,248,74,-0.20848024839130874],[117,248,75,-0.20578861594978937],[117,248,76,-0.20299593491603285],[117,248,77,-0.2001037615366391],[117,248,78,-0.19711377901742444],[117,248,79,-0.1940277993524998],[117,249,64,-0.22619786635915584],[117,249,65,-0.22453686822009777],[117,249,66,-0.22276722336048604],[117,249,67,-0.22088932255006288],[117,249,68,-0.21890366372724712],[117,249,69,-0.2168108537730643],[117,249,70,-0.21461161028615616],[117,249,71,-0.2123067633589485],[117,249,72,-0.20989725735493836],[117,249,73,-0.2073841526871918],[117,249,74,-0.20476862759784253],[117,249,75,-0.20205197993886237],[117,249,76,-0.19923562895391222],[117,249,77,-0.19632111706133182],[117,249,78,-0.1933101116382827],[117,249,79,-0.19020440680599948],[117,250,64,-0.22275124945901914],[117,250,65,-0.22105055222957531],[117,250,66,-0.21924262179633724],[117,250,67,-0.2173278529140934],[117,250,68,-0.21530674589053023],[117,250,69,-0.21317990831841005],[117,250,70,-0.21094805680850892],[117,250,71,-0.20861201872339097],[117,250,72,-0.20617273391198265],[117,250,73,-0.20363125644503788],[117,250,74,-0.20098875635128233],[117,250,75,-0.19824652135450982],[117,250,76,-0.1954059586114394],[117,250,77,-0.19246859645038972],[117,250,78,-0.1894360861107881],[117,250,79,-0.1863102034834655],[117,251,64,-0.2192461055945384],[117,251,65,-0.21750485043402246],[117,251,66,-0.2156578053550312],[117,251,67,-0.21370536925054096],[117,251,68,-0.2116480449149269],[117,251,69,-0.20948644073337053],[117,251,70,-0.20722127237169197],[117,251,71,-0.2048533644666929],[117,251,72,-0.20238365231696842],[117,251,73,-0.19981318357428013],[117,251,74,-0.19714311993528033],[117,251,75,-0.1943747388338578],[117,251,76,-0.19150943513391439],[117,251,77,-0.18854872282263235],[117,251,78,-0.18549423670424248],[117,251,79,-0.18234773409425242],[117,252,64,-0.21568481332393696],[117,252,65,-0.21390216346286017],[117,252,66,-0.21201519590425044],[117,252,67,-0.2100243138340807],[117,252,68,-0.2079300226533608],[117,252,69,-0.2057329316237656],[117,252,70,-0.20343375551334997],[117,252,71,-0.20103331624243492],[117,252,72,-0.1985325445296252],[117,252,73,-0.19593248153805043],[117,252,74,-0.19323428052161506],[117,252,75,-0.1904392084715365],[117,252,76,-0.1875486477629731],[117,252,77,-0.1845640978018035],[117,252,78,-0.18148717667157077],[117,252,79,-0.17831962278054658],[117,253,64,-0.2120698166729259],[117,253,65,-0.2102449582559217],[117,253,66,-0.20831728243517356],[117,253,67,-0.20628719684603003],[117,253,68,-0.2041552096185394],[117,253,69,-0.20192193097830868],[117,253,70,-0.19958807484710483],[117,253,71,-0.1971544604432781],[117,253,72,-0.19462201388196976],[117,253,73,-0.1919917697751966],[117,253,74,-0.18926487283159565],[117,253,75,-0.18644257945611076],[117,253,76,-0.18352625934942146],[117,253,77,-0.18051739710717463],[117,253,78,-0.17741759381903588],[117,253,79,-0.17422856866751146],[117,254,64,-0.2084036211812667],[117,254,65,-0.20653576407108443],[117,254,66,-0.20456661703262707],[117,254,67,-0.20249659230846895],[117,254,68,-0.20032620088248987],[117,254,69,-0.19805605403499904],[117,254,70,-0.19568686489724096],[117,254,71,-0.19321945000536955],[117,254,72,-0.19065473085384765],[117,254,73,-0.18799373544837106],[117,254,74,-0.18523759985809152],[117,254,75,-0.18238756976742987],[117,254,76,-0.17944500202727165],[117,254,77,-0.1764113662056126],[117,254,78,-0.17328824613766347],[117,254,79,-0.1700773414753728],[117,255,64,-0.20468879000621332],[117,255,65,-0.2027771685492583],[117,255,66,-0.20076581090305312],[117,255,67,-0.19865513407661428],[117,255,68,-0.19644565203476905],[117,255,69,-0.19413797720659082],[117,255,70,-0.19173282199285124],[117,255,71,-0.18923100027257533],[117,255,72,-0.1866334289086563],[117,255,73,-0.18394112925263123],[117,255,74,-0.1811552286483885],[117,255,75,-0.17827696193510223],[117,255,76,-0.17530767294918326],[117,255,77,-0.1722488160253144],[117,255,78,-0.1691019574965812],[117,255,79,-0.1658687771936539],[117,256,64,-0.20092794008274673],[117,256,65,-0.19897181383664053],[117,256,66,-0.19691753046019644],[117,256,67,-0.19476551188935542],[117,256,68,-0.19251627519925563],[117,256,69,-0.1901704340650473],[117,256,70,-0.18772870022135252],[117,256,71,-0.18519188492044975],[117,256,72,-0.18256090038914963],[117,256,73,-0.17983676128445342],[117,256,74,-0.17702058614777139],[117,256,75,-0.17411359885799443],[117,256,76,-0.17111713008320684],[117,256,77,-0.16803261873111186],[117,256,78,-0.16486161339817662],[117,256,79,-0.161605773817456],[117,257,64,-0.197123738340503],[117,257,65,-0.19512239276413845],[117,257,66,-0.19302449346841805],[117,257,67,-0.1908304674778512],[117,257,68,-0.18854083510942227],[117,257,69,-0.18615621138487648],[117,257,70,-0.1836773074412646],[117,257,71,-0.18110493193983324],[117,257,72,-0.1784399924732204],[117,257,73,-0.17568349697105495],[117,257,74,-0.17283655510372964],[117,257,75,-0.16990037968464766],[117,257,76,-0.16687628807072696],[117,257,77,-0.16376570356123488],[117,257,78,-0.16057015679495934],[117,257,79,-0.15729128714567642],[117,258,64,-0.19327889797758346],[117,258,65,-0.19123164508415036],[117,258,66,-0.18908946524382397],[117,258,67,-0.18685279073238203],[117,258,68,-0.18452214524228516],[117,258,69,-0.1820981452455449],[117,258,70,-0.1795815013544556],[117,258,71,-0.17697301968028323],[117,258,72,-0.17427360318986612],[117,258,73,-0.1714842530602314],[117,258,74,-0.16860607003099093],[117,258,75,-0.1656402557548215],[117,258,76,-0.16258811414581187],[117,258,77,-0.1594510527257479],[117,258,78,-0.1562305839683441],[117,258,79,-0.15292832664138034],[117,259,64,-0.18939617479115833],[117,259,65,-0.1873023537646148],[117,259,66,-0.18511525491311892],[117,259,67,-0.18283531592736535],[117,259,68,-0.18046306401093587],[117,259,69,-0.17799911719287886],[117,259,70,-0.17544418563775566],[117,259,71,-0.17279907295324082],[117,259,72,-0.17006467749523757],[117,259,73,-0.16724199367060832],[117,259,74,-0.16433211323728453],[117,259,75,-0.16133622660206315],[117,259,76,-0.1582556241158684],[117,259,77,-0.15509169736655382],[117,259,78,-0.15184594046924993],[117,259,79,-0.14851995135421742],[117,260,64,-0.185478363564759],[117,260,65,-0.1833373413402235],[117,260,66,-0.1811047117300783],[117,260,67,-0.17878091800442775],[117,260,68,-0.17636649101554913],[117,260,69,-0.17386205045934172],[117,260,70,-0.17126830613383126],[117,260,71,-0.16858605919482306],[117,260,72,-0.1658162034086611],[117,260,73,-0.16295972640219603],[117,260,74,-0.1600177109097206],[117,260,75,-0.15699133601718918],[117,260,76,-0.15388187840349055],[117,260,77,-0.15069071357885566],[117,260,78,-0.14741931712040135],[117,260,79,-0.14406926590477348],[117,261,64,-0.18152829451245767],[117,261,65,-0.17933946632099607],[117,261,66,-0.17706072144984203],[117,261,67,-0.17469250891373633],[117,261,68,-0.172235363353073],[117,261,69,-0.1696899062433948],[117,261,70,-0.16705684710152813],[117,261,71,-0.1643369846884507],[117,261,72,-0.16153120820884814],[117,261,73,-0.15864049850746464],[117,261,74,-0.15566592926200423],[117,261,75,-0.1526086681728993],[117,261,76,-0.14946997814971869],[117,261,77,-0.1462512184942918],[117,261,78,-0.14295384608055428],[117,261,79,-0.13957941653107703],[117,262,64,-0.1775488297798381],[117,262,65,-0.17531161965812259],[117,262,66,-0.17298620276093046],[117,262,67,-0.170573034013493],[117,262,68,-0.16807265198549937],[117,262,69,-0.16548568004784353],[117,262,70,-0.16281282752558424],[117,262,71,-0.1600548908472127],[117,262,72,-0.15721275469018647],[117,262,73,-0.1542873931228323],[117,262,74,-0.1512798707423761],[117,262,75,-0.14819134380941468],[117,262,76,-0.1450230613786047],[117,262,77,-0.14177636642564134],[117,262,78,-0.13845269697053664],[117,262,79,-0.135053587197154],[117,263,64,-0.17354286000165392],[117,263,65,-0.17125672126696612],[117,263,66,-0.16888410377487856],[117,263,67,-0.1664254685274819],[117,263,68,-0.16388135816660865],[117,263,69,-0.16125239807705777],[117,263,70,-0.15853929748559864],[117,263,71,-0.15574285055585202],[117,263,72,-0.152863937479003],[117,263,73,-0.1499035255604541],[117,263,74,-0.14686267030216815],[117,263,75,-0.14374251648102637],[117,263,76,-0.14054429922296646],[117,263,77,-0.1372693450729825],[117,263,78,-0.133919073060989],[117,263,79,-0.13049499576351115],[117,264,64,-0.16951330091638805],[117,264,65,-0.16717771660744402],[117,264,66,-0.16475739857370364],[117,264,67,-0.16225281406089254],[117,264,68,-0.15966450992741138],[117,264,69,-0.15699311369329116],[117,264,70,-0.1542393345844859],[117,264,71,-0.1514039645726038],[117,264,72,-0.14848787941002956],[117,264,73,-0.14549203966054658],[117,264,74,-0.14241749172520946],[117,264,75,-0.13926536886379093],[117,264,76,-0.13603689221157],[117,264,77,-0.13273337179154077],[117,264,78,-0.12935620752204524],[117,264,79,-0.12590689021979273],[117,265,64,-0.165463090037534],[117,265,65,-0.16307757332160505],[117,265,66,-0.1606090838150271],[117,265,67,-0.1580580951742322],[117,265,68,-0.15542515862009793],[117,265,69,-0.1527109039319116],[117,265,70,-0.1499160404362248],[117,265,71,-0.14704135799069512],[117,265,72,-0.14408772796287456],[117,265,73,-0.14105610420404946],[117,265,74,-0.13794752401788063],[117,265,75,-0.13476310912417377],[117,265,76,-0.13150406661753994],[117,265,77,-0.12817168992103112],[117,265,78,-0.124767359734751],[117,265,79,-0.1212925449794055],[117,266,64,-0.16139518338173464],[117,266,65,-0.15895927792853898],[117,266,66,-0.15644217539498617],[117,266,67,-0.1538443560154693],[117,266,68,-0.15116637552064],[117,266,69,-0.1484088660756867],[117,266,70,-0.14557253721304597],[117,266,71,-0.1426581767596481],[117,266,72,-0.13966665175865145],[117,266,73,-0.13659890938577512],[117,266,74,-0.13345597785997437],[117,266,75,-0.13023896734879303],[117,266,76,-0.126949070868149],[117,266,77,-0.12358756517664093],[117,266,78,-0.12015581166437317],[117,266,79,-0.11665525723626607],[117,267,64,-0.15731255225359536],[117,267,65,-0.15482583257643578],[117,267,66,-0.1522597051687486],[117,267,67,-0.1496146570102161],[117,267,68,-0.1468912484898519],[117,267,69,-0.14409011428792667],[117,267,70,-0.1412119642518619],[117,267,71,-0.13825758426619333],[117,267,72,-0.13522783711656222],[117,267,73,-0.13212366334784376],[117,267,74,-0.12894608211615083],[117,267,75,-0.12569619203505555],[117,267,76,-0.12237517201578169],[117,267,77,-0.11898428210145134],[117,267,78,-0.1155248642953925],[117,267,79,-0.11199834338346387],[117,268,64,-0.15321818008738974],[117,268,65,-0.15068025185201145],[117,268,66,-0.1480647177288552],[117,268,67,-0.14537207161017834],[117,268,68,-0.14260287869313826],[117,268,69,-0.13975777630472208],[117,268,70,-0.1368374747201747],[117,268,71,-0.13384275797502554],[117,268,72,-0.1307744846706747],[117,268,73,-0.12763358877364406],[117,268,74,-0.12442108040823491],[117,268,75,-0.1211380466429336],[117,268,76,-0.1177856522703169],[117,268,77,-0.11436514058054204],[117,268,78,-0.11087783412842861],[117,268,79,-0.10732513549408562],[117,269,64,-0.14911505934555386],[117,269,65,-0.146525559647201],[117,269,66,-0.14386026724128226],[117,269,67,-0.14111968309976475],[117,269,68,-0.1383043773788229],[117,269,69,-0.13541499018615966],[117,269,70,-0.13245223234134762],[117,269,71,-0.12941688612929314],[117,269,72,-0.12630980604678038],[117,269,73,-0.12313191954220637],[117,269,74,-0.11988422774824131],[117,269,75,-0.11656780620776341],[117,269,76,-0.11318380559281371],[117,269,77,-0.10973345241666099],[117,269,78,-0.1062180497389772],[117,269,79,-0.10263897786408593],[117,270,64,-0.14500618847386737],[117,270,65,-0.14236478608300768],[117,270,66,-0.13964941433911887],[117,270,67,-0.13686058146074698],[117,270,68,-0.1339988627149471],[117,270,69,-0.13106490112641184],[117,270,70,-0.1280594081791333],[117,270,71,-0.12498316451070535],[117,270,72,-0.12183702059922003],[117,270,73,-0.11862189744287277],[117,270,74,-0.11533878723200675],[117,270,75,-0.11198875401394959],[117,270,76,-0.10857293435038357],[117,270,77,-0.10509253796734441],[117,270,78,-0.10154884839784406],[117,270,79,-0.09794322361708385],[117,271,64,-0.1408945689135253],[117,271,65,-0.13820096449072317],[117,271,66,-0.13543522307407208],[117,271,67,-0.1325978602951876],[117,271,68,-0.12968945668475695],[117,271,69,-0.12671065832291767],[117,271,70,-0.1236621774816779],[117,271,71,-0.12054479325948603],[117,271,72,-0.11735935220790283],[117,271,73,-0.11410676895049393],[117,271,74,-0.1107880267936665],[117,271,75,-0.10740417832981025],[117,271,76,-0.10395634603248116],[117,271,77,-0.10044572284372083],[117,271,78,-0.09687357275351044],[117,271,79,-0.09324123137132373],[117,272,64,-0.13678320217000173],[117,272,65,-0.13403712845041182],[117,272,66,-0.13122075792569243],[117,272,67,-0.1283346138065275],[117,272,68,-0.12537928204077048],[117,272,69,-0.12235541190454535],[117,272,70,-0.11926371658489132],[117,272,71,-0.11610497375405837],[117,272,72,-0.1128800261354082],[117,272,73,-0.1095897820610392],[117,272,74,-0.10623521602085528],[117,272,75,-0.10281736920344414],[117,272,76,-0.09933735002849953],[117,272,77,-0.09579633467088111],[117,272,78,-0.09219556757631281],[117,272,79,-0.08853636196868075],[117,273,64,-0.13267508693859575],[117,273,65,-0.12987630888655344],[117,273,66,-0.12700908086821355],[117,273,67,-0.12407393383872334],[117,273,68,-0.12107145931731378],[117,273,69,-0.11800230991862509],[117,273,70,-0.1148671998750711],[117,273,71,-0.11166690555034886],[117,273,72,-0.10840226594405161],[117,273,73,-0.105074183187501],[117,273,74,-0.10168362303051853],[117,273,75,-0.09823161531950342],[117,273,76,-0.09471925446654939],[117,273,77,-0.09114769990969668],[117,273,78,-0.0875181765643166],[117,273,79,-0.08383197526559266],[117,274,64,-0.12857321628687246],[117,274,65,-0.12572153122105495],[117,274,66,-0.12280324849521962],[117,274,67,-0.11981890697365377],[117,274,68,-0.11676910390174766],[117,274,69,-0.11365449537707589],[117,274,70,-0.11047579681100494],[117,274,71,-0.10723378338093731],[117,274,72,-0.1039292904731477],[117,274,73,-0.10056321411632929],[117,274,74,-0.0971365114055664],[117,274,75,-0.09365020091710685],[117,274,76,-0.09010536311366052],[117,274,77,-0.08650314074032323],[117,274,78,-0.08284473921112351],[117,274,79,-0.07913142698615527],[117,275,64,-0.1244805748938928],[117,275,65,-0.12157581258352801],[117,275,66,-0.11860630920203402],[117,275,67,-0.11557261168668431],[117,275,68,-0.112475323164273],[117,275,69,-0.10931510336151207],[117,275,70,-0.10609266900543785],[117,275,71,-0.10280879421393796],[117,275,72,-0.09946431087635332],[117,275,73,-0.09606010902427564],[117,275,74,-0.09259713719225204],[117,275,75,-0.08907640276877549],[117,275,76,-0.0854989723372841],[117,275,77,-0.0818659720072697],[117,275,78,-0.07817858773549219],[117,275,79,-0.07443806563726413],[117,276,64,-0.12040013634612756],[117,276,65,-0.11744215907872368],[117,276,66,-0.11442130042572085],[117,276,67,-0.11133811556028289],[117,276,68,-0.10819321364620532],[117,276,69,-0.10498725818722165],[117,276,70,-0.10172096736579356],[117,276,71,-0.09839511437149945],[117,276,72,-0.09501052771897633],[117,276,73,-0.09156809155553547],[117,276,74,-0.08806874595816083],[117,276,75,-0.08451348722027363],[117,276,76,-0.0809033681279816],[117,276,77,-0.07723949822591608],[117,276,78,-0.07352304407265303],[117,276,79,-0.06975522948568069],[117,277,64,-0.11633486049026537],[117,277,65,-0.1133235631113369],[117,277,66,-0.11025124594291624],[117,277,67,-0.10711847255590395],[117,277,68,-0.1039258583069399],[117,277,69,-0.10067407062623746],[117,277,70,-0.09736382929437404],[117,277,71,-0.09399590670815128],[117,277,72,-0.0905711281354809],[117,277,73,-0.08709037195941716],[117,277,74,-0.08355456991104204],[117,277,75,-0.079964707291591],[117,277,76,-0.07632182318353375],[117,277,77,-0.0726270106507162],[117,277,78,-0.0688814169275569],[117,277,79,-0.06508624359726328],[117,278,64,-0.1122876908428092],[117,278,65,-0.10922300076807645],[117,278,66,-0.10609915322537794],[117,278,67,-0.10291672034403082],[117,278,68,-0.09967632382949515],[117,278,69,-0.09637863518938872],[117,278,70,-0.09302437594792395],[117,278,71,-0.0896143178488808],[117,278,72,-0.08614928304707203],[117,278,73,-0.08263014428842225],[117,278,74,-0.0790578250783644],[117,278,75,-0.07543329983894542],[117,278,76,-0.07175759405435228],[117,278,77,-0.06803178440496593],[117,278,78,-0.06425699888993636],[117,278,79,-0.06043441693824375],[117,279,64,-0.1082615520563589],[117,279,65,-0.10514342925689213],[117,279,66,-0.10196801085315105],[117,279,67,-0.09873587769226966],[117,279,68,-0.09544765798452665],[117,279,69,-0.09210402746722457],[117,279,70,-0.08870570955644969],[117,279,71,-0.08525347548683043],[117,279,72,-0.08174814443924794],[117,279,73,-0.07819058365662379],[117,279,74,-0.07458170854748375],[117,279,75,-0.07092248277769381],[117,279,76,-0.06721391835007706],[117,279,77,-0.06345707567202041],[117,279,78,-0.059653063611062374],[117,279,79,-0.05580303953842913],[117,280,64,-0.10425934744278609],[117,280,65,-0.10108778440357247],[117,280,66,-0.0978607859855612],[117,280,67,-0.0945789419117114],[117,280,68,-0.09124288705303046],[117,280,69,-0.08785330153002968],[117,280,70,-0.0844109108015163],[117,280,71,-0.08091648574083987],[117,280,72,-0.07737084269954725],[117,280,73,-0.07377484355857195],[117,280,74,-0.07012939576665222],[117,280,75,-0.06643545236638176],[117,280,76,-0.06269401200759445],[117,280,77,-0.05890611894819631],[117,280,78,-0.05507286304243386],[117,280,79,-0.05119537971656796],[117,281,64,-0.1002839565531971],[117,281,65,-0.0970589782056055],[117,281,66,-0.09378042188992614],[117,281,67,-0.09044888636145082],[117,281,68,-0.08706501330762406],[117,281,69,-0.0836294873868203],[117,281,70,-0.08014303625390795],[117,281,71,-0.07660643057271838],[117,281,72,-0.07302048401537486],[117,281,73,-0.06938605324860825],[117,281,74,-0.06570403790675056],[117,281,75,-0.061975380551814285],[117,281,76,-0.058201066620355846],[117,281,77,-0.05438212435723799],[117,281,78,-0.05051962473627941],[117,281,79,-0.046614681367761146],[117,282,64,-0.09633823281458415],[117,282,65,-0.09305989644320034],[117,282,66,-0.0897298355278856],[117,282,67,-0.08634865801116004],[117,282,68,-0.08291701255230005],[117,282,69,-0.07943558850321353],[117,282,70,-0.07590511587054638],[117,282,71,-0.07232636526414038],[117,282,72,-0.06870014783179829],[117,282,73,-0.06502731518048216],[117,282,74,-0.061308759283635106],[117,282,75,-0.05754541237503613],[117,282,76,-0.053738246828885616],[117,282,77,-0.04988827502623594],[117,282,78,-0.045996549207756254],[117,282,79,-0.04206416131279994],[117,283,64,-0.09242500122336633],[117,283,65,-0.08909339634767638],[117,283,66,-0.08571191519955595],[117,283,67,-0.08228117506192728],[117,283,68,-0.07880183172086741],[117,283,69,-0.07527457937838739],[117,283,70,-0.07170015055088325],[117,283,71,-0.06807931595338218],[117,283,72,-0.0644128843695358],[117,283,73,-0.06070170250749102],[117,283,74,-0.05694665484132355],[117,283,75,-0.05314866343844915],[117,283,76,-0.04930868777270647],[117,283,77,-0.04542772452322685],[117,283,78,-0.04150680735908041],[117,283,79,-0.03754700670966704],[117,284,64,-0.08854705609572056],[117,284,65,-0.08516230432711619],[117,284,66,-0.08172951824540436],[117,284,67,-0.07824932462525375],[117,284,68,-0.07472238653397062],[117,284,69,-0.0711494031810207],[117,284,70,-0.06753110975265875],[117,284,71,-0.06386827723179128],[117,284,72,-0.06016171220302513],[117,284,73,-0.05641225664303068],[117,284,74,-0.05262078769590489],[117,284,75,-0.04878821743395112],[117,284,76,-0.04491549260356731],[117,284,77,-0.041003594356359474],[117,284,78,-0.0370535379654689],[117,284,79,-0.033066372527082],[117,285,64,-0.08470715887460001],[117,285,65,-0.08126941374918079],[117,285,66,-0.07778546880574194],[117,285,67,-0.07425596046010552],[117,285,68,-0.07068155921458302],[117,285,69,-0.0670629694441093],[117,285,70,-0.06340092916691725],[117,285,71,-0.059696209799878164],[117,285,72,-0.055949615898462035],[117,285,73,-0.052161984881448104],[117,285,74,-0.0483341867400649],[117,285,75,-0.04446712373198505],[117,285,76,-0.04056173005985966],[117,285,77,-0.03661897153451241],[117,285,78,-0.0326398452227811],[117,285,79,-0.028625379079975394],[117,286,64,-0.08090803599364299],[117,286,65,-0.07741748278129076],[117,286,66,-0.07388255563804094],[117,286,67,-0.07030390076823032],[117,286,68,-0.06668219626218544],[117,286,69,-0.06301815181886933],[117,286,70,-0.05931250845249744],[117,286,71,-0.05556603818324968],[117,286,72,-0.05177954371203164],[117,286,73,-0.04795385807941732],[117,286,74,-0.044089844308449255],[117,286,75,-0.04018839503172503],[117,286,76,-0.036250432102452296],[117,286,77,-0.03227690618959378],[117,286,78,-0.02826879635708962],[117,286,79,-0.024227109627125182],[117,287,64,-0.07715237679786874],[117,287,65,-0.07360923228807056],[117,287,66,-0.07002352999197023],[117,287,67,-0.06639592604763028],[117,287,68,-0.06272710628552311],[117,287,69,-0.05901778588762174],[117,287,70,-0.055268709029886454],[117,287,71,-0.05148064850827308],[117,287,72,-0.0476544053482168],[117,287,73,-0.04379080839772473],[117,287,74,-0.03989071390375018],[117,287,75,-0.03595500507228164],[117,287,76,-0.03198459161182535],[117,287,77,-0.02798040926040457],[117,287,78,-0.023943419296062113],[117,287,79,-0.019874608030835267],[117,288,64,-0.07344283152106645],[117,288,65,-0.06984734378595839],[117,288,66,-0.06621110354205315],[117,288,67,-0.06253477700409502],[117,288,68,-0.05881905789383976],[117,288,69,-0.05506466703555474],[117,288,70,-0.05127235193433535],[117,288,71,-0.047442886337366375],[117,288,72,-0.0435770697780824],[117,288,73,-0.03967572710335973],[117,288,74,-0.03573970798341147],[117,288,75,-0.03176988640482237],[117,288,76,-0.027767160146398656],[117,288,77,-0.02373245023795828],[117,288,78,-0.019666700402046627],[117,288,79,-0.015570876478547657],[117,289,64,-0.06978200932008011],[117,289,65,-0.0661344574551894],[117,289,66,-0.06244794637815687],[117,289,67,-0.058723152521004546],[117,289,68,-0.054960777646804404],[117,289,69,-0.05116154838158246],[117,289,70,-0.04732621572845616],[117,289,71,-0.04345555456413838],[117,289,72,-0.03955036311775856],[117,289,73,-0.035611462432137087],[117,289,74,-0.03163969580718015],[117,289,75,-0.027635928225835965],[117,289,76,-0.023601045762285028],[117,289,77,-0.019535954972490416],[117,289,78,-0.015441582267093579],[117,289,79,-0.01131887326662484],[117,290,64,-0.06617247636581919],[117,290,65,-0.06247317020897869],[117,290,66,-0.058736685053636245],[117,290,67,-0.054963707687226],[117,290,68,-0.05115494806295126],[117,290,69,-0.04731113876811782],[117,290,70,-0.043433034474117005],[117,290,71,-0.039521411368191095],[117,290,72,-0.035577066566933435],[117,290,73,-0.03160081751165922],[117,290,74,-0.0275935013453113],[117,290,75,-0.02355597427134684],[117,290,76,-0.01948911089427305],[117,290,77,-0.015393803541960488],[117,290,78,-0.011270961569718463],[117,290,79,-0.007121510646101975],[117,291,64,-0.06261675399112013],[117,291,65,-0.05886603382003072],[117,291,66,-0.05507990069126292],[117,291,67,-0.0512590518832339],[117,291,68,-0.04740420568676304],[117,291,69,-0.04351610080989213],[117,291,70,-0.039595495763767946],[117,291,71,-0.03564316822972158],[117,291,72,-0.03165991440749599],[117,291,73,-0.02764654834476024],[117,291,74,-0.02360390124756942],[117,291,75,-0.01953282077222293],[117,291,76,-0.015434170298184113],[117,291,77,-0.011308828182192254],[117,291,78,-0.0071576869935500165],[117,291,79,-0.002981652730557116],[117,292,64,-0.05911731689529373],[117,292,65,-0.055315553104208964],[117,292,66,-0.05148012714676925],[117,292,67,-0.047611746925282],[117,292,68,-0.04371113921422634],[117,292,69,-0.03977904900164697],[117,292,70,-0.035816238811023],[117,292,71,-0.03182348800374396],[117,292,72,-0.027801592062146108],[117,292,73,-0.023751361853247666],[117,292,74,-0.01967362287283997],[117,292,75,-0.01556921447039003],[117,292,76,-0.011438989054415066],[117,292,77,-0.007283811278461727],[117,292,78,-0.0031045572076718597],[117,292,79,0.0010978865340932897],[117,293,64,-0.055676591405556225],[117,293,65,-0.051824184161564674],[117,293,66,-0.047939849230208886],[117,293,67,-0.044024305267832825],[117,293,68,-0.040078287677065116],[117,293,69,-0.036102547884908215],[117,293,70,-0.03209785260070877],[117,293,71,-0.028064983054145703],[117,293,72,-0.02400473421318755],[117,293,73,-0.01991791398215903],[117,293,74,-0.015805342379571152],[117,293,75,-0.011667850696173765],[117,293,76,-0.007506280632889217],[117,293,77,-0.003321483418759069],[117,293,78,8.856810911120339E-4],[117,293,79,0.005114345337645779],[117,294,64,-0.05229695379524482],[117,294,65,-0.04839433267462606],[117,294,66,-0.044461500985036206],[117,294,67,-0.04049918826414205],[117,294,68,-0.03650813868554957],[117,294,69,-0.03248911027373674],[117,294,70,-0.028442874098274396],[117,294,71,-0.02437021344747188],[117,294,72,-0.02027192298139939],[117,294,73,-0.01614880786442817],[117,294,74,-0.012001682876938827],[117,294,75,-0.007831371506662535],[117,294,76,-0.0036387050193086162],[117,294,77,5.754784913859778E-4],[117,294,78,0.004810335074203614],[117,294,79,0.009065015911618832],[117,295,64,-0.04898072865873658],[117,295,65,-0.04502835226386377],[117,295,66,-0.041047464024815225],[117,295,67,-0.03703880448491255],[117,295,68,-0.03300312672979343],[117,295,69,-0.028941195539369205],[117,295,70,-0.02485378651847439],[117,295,71,-0.020741685206347144],[117,295,72,-0.016605686164891886],[117,295,73,-0.012446592045866137],[117,295,74,-0.008265212636639402],[117,295,75,-0.004062363884992509],[117,295,76,1.6113309739246295E-4],[117,295,77,0.0044044530526136105],[117,295,78,0.008666767615422968],[117,295,79,0.012947246373318663],[117,296,64,-0.045730187343243786],[117,296,65,-0.041728542900510354],[117,296,66,-0.03770006592774203],[117,296,67,-0.03364550809519895],[117,296,68,-0.029565631539723636],[117,296,69,-0.025461207953934153],[117,296,70,-0.021333017653512212],[117,296,71,-0.01718184862272612],[117,296,72,-0.013008495538139916],[117,296,73,-0.008813758770651936],[117,296,74,-0.0045984433655072154],[117,296,75,-3.633580007571524E-4],[117,296,76,0.003890686076188296],[117,296,77,0.008162876133774616],[117,296,78,0.01245239906330492],[117,296,79,0.01675844250775735],[117,297,64,-0.04254754643739686],[117,297,65,-0.03849714937664052],[117,297,66,-0.03442157868888451],[117,297,67,-0.03032159728946962],[117,297,68,-0.026197976503626916],[117,297,69,-0.022051495093147078],[117,297,70,-0.017882938260546807],[117,297,71,-0.013693096630872939],[117,297,72,-0.00948276521109527],[117,297,73,-0.005252742327233301],[117,297,74,-0.0010038285388563328],[117,297,75,0.0032631744685634734],[117,297,76,0.007547465013803545],[117,297,77,0.01184824257240713],[117,297,78,0.01616470895158474],[117,297,79,0.02049606948752808],[117,298,64,-0.039434966316532205],[117,298,65,-0.035336359832432565],[117,298,66,-0.031214217230057503],[117,298,67,-0.027069312784740382],[117,298,68,-0.022902427145188045],[117,298,69,-0.01871434629789842],[117,298,70,-0.014505860508475202],[117,298,71,-0.010277763239982168],[117,298,72,-0.006030850048287906],[117,298,73,-0.0017659174545466214],[117,298,74,0.002516238205546771],[117,298,75,0.006814821955246075],[117,298,76,0.011129041373347234],[117,298,77,0.015458107813743904],[117,298,78,0.019801237647966666],[117,298,79,0.024157653530732487],[117,299,64,-0.03639454974485469],[117,299,65,-0.03224830434077804],[117,299,66,-0.028080137967506497],[117,299,67,-0.023890836371956818],[117,299,68,-0.019681189659197296],[117,299,69,-0.015451991194913722],[117,299,70,-0.011204036484172564],[117,299,71,-0.006938122026624659],[117,299,72,-0.0026550441481002635],[117,299,73,0.0016444021912579015],[117,299,74,0.005959424612688599],[117,299,75,0.01028923455784743],[117,299,76,0.014633048551546436],[117,299,77,0.018990089488054418],[117,299,78,0.023359587940980156],[117,299,79,0.027740783496765148],[117,300,64,-0.03342834053438481],[117,300,65,-0.029235053549153615],[117,300,66,-0.025021437437307267],[117,300,67,-0.020788289525530676],[117,300,68,-0.016536409505832628],[117,300,69,-0.012266598276390824],[117,300,70,-0.00797965675809325],[117,300,71,-0.003676384686920553],[117,300,72,6.424206178800296E-4],[117,300,73,0.0049759655096813515],[117,300,74,0.009323461294791786],[117,300,75,0.013684125536709564],[117,300,76,0.01805718338468219],[117,300,77,0.022441868926425797],[117,300,78,0.02683742656502733],[117,300,79,0.031243112420055796],[117,301,64,-0.03053832226061847],[117,301,65,-0.02629861737867774],[117,301,66,-0.02204015097840844],[117,301,67,-0.01776373207095657],[117,301,68,-0.013470170063441082],[117,301,69,-0.009160273538537177],[117,301,70,-0.004834849009155314],[117,301,71,-4.946996483611125E-4],[117,301,72,0.00385937600551315],[117,301,73,0.008226585368416948],[117,301,74,0.012606143155160485],[117,301,75,0.01699727274852987],[117,301,76,0.02139920759331001],[117,301,77,0.02581119261506558],[117,301,78,0.030232485663705684],[117,301,79,0.03466235898185738],[117,302,64,-0.027726417035054074],[117,302,65,-0.0234409437805117],[117,302,66,-0.01913825147347468],[117,302,67,-0.014819160910669125],[117,302,68,-0.010484491339981986],[117,302,69,-0.0061350591791722725],[117,302,70,-0.001771676709075156],[117,302,71,0.0026048492585518564],[117,302,72,0.006993718738591989],[117,302,73,0.011394139955390566],[117,302,74,0.01580533075121005],[117,302,75,0.020226520019818724],[117,302,76,0.024656949165587867],[117,302,77,0.029095873587947532],[117,302,78,0.03354256419122589],[117,302,79,0.03799630891989748],[117,303,64,-0.024994484334505705],[117,303,65,-0.02066391754952154],[117,303,66,-0.016317648147448238],[117,303,67,-0.011956508808055795],[117,303,68,-0.007581328743046291],[117,303,69,-0.003192932354308159],[117,303,70,0.00120786213393551],[117,303,71,0.00562024406893812],[117,303,72,0.010043411789249272],[117,303,73,0.014476574070391922],[117,303,74,0.01891895159677512],[117,303,75,0.023369778459338256],[117,303,76,0.027828303679304923],[117,303,77,0.03229379275789486],[117,303,78,0.0367655292520197],[117,303,79,0.04124281637598744],[117,304,64,-0.022344319887133767],[117,304,65,-0.01796935919513152],[117,304,66,-0.013580185423757234],[117,304,67,-0.009177643229555787],[117,304,68,-0.004762571908380226],[117,304,69,-3.3580399363550804E-4],[117,304,70,0.004101836172184082],[117,304,71,0.00854953389251701],[117,304,72,0.013006485598364237],[117,304,73,0.017471900356375573],[117,304,74,0.021945001403772226],[117,304,75,0.026425027709599605],[117,304,76,0.030911235562689442],[117,304,77,0.03540290018617961],[117,304,78,0.03989931737861736],[117,304,79,0.04439980518167087],[117,305,64,-0.019777654615338005],[117,305,65,-0.015359023869515539],[117,305,66,-0.010927641838319919],[117,305,67,-0.006484365244992265],[117,305,68,-0.002030043587064906],[117,305,69,0.002434482324931042],[117,305,70,0.006908381856066979],[117,305,71,0.011390836062773708],[117,305,72,0.015881039235807082],[117,305,73,0.020378200470266963],[117,305,74,0.02488154526305433],[117,305,75,0.029390317137254436],[117,305,76,0.03390377929383016],[117,305,77,0.038421216290471294],[117,305,78,0.04294193574762646],[117,305,79,0.04746527008174209],[117,306,64,-0.017296153635434783],[117,306,65,-0.012834600353049452],[117,306,66,-0.008361729011266472],[117,306,67,-0.003878408486061375],[117,306,68,6.145014087277183E-4],[117,306,69,0.005116151441730117],[117,306,70,0.00962570451227781],[117,306,71,0.014142337226397406],[117,306,72,0.018665241500606347],[117,306,73,0.02319362619336121],[117,306,74,0.027726718764543495],[117,306,75,0.03226376696246772],[117,306,76,0.03680404053879885],[117,306,77,0.04134683299122332],[117,306,78,0.045891463333900984],[117,306,79,0.05043727789572225],[117,307,64,-0.014901415314060203],[117,307,65,-0.010397710096961152],[117,307,66,-0.005884090676314138],[117,307,67,-0.0013614381629130992],[117,307,68,0.0031693772014688426],[117,307,69,0.007707497622917628],[117,307,70,0.012252079362719971],[117,307,71,0.016802294373058614],[117,307,72,0.02135733196110865],[117,307,73,0.025916400481382607],[117,307,74,0.030478729056711285],[117,307,75,0.03504356932734213],[117,307,76,0.039610197228545085],[117,307,77,0.04417791479656851],[117,307,78,0.048746052002973175],[117,307,79,0.05331396861736838],[117,308,64,-0.012594970381427963],[117,308,65,-0.00804990632331258],[117,308,66,-0.0034963017679321556],[117,308,67,0.0010649498610407482],[117,308,68,0.005632967785356574],[117,308,69,0.010206885508979663],[117,308,70,0.014785852483981718],[117,308,71,0.019369035805381248],[117,308,72,0.023955621934982796],[117,308,73,0.028544818454057458],[117,308,74,0.03313585584525772],[117,308,75,0.03772798930324331],[117,308,76,0.04232050057441117],[117,308,77,0.04691269982557074],[117,308,78,0.05150392754159329],[117,308,79,0.056093556452058824],[117,309,64,-0.010378281101371817],[117,309,65,-0.005792673182242289],[117,309,66,-0.0011998675662238042],[117,309,67,0.003399229936161763],[117,309,68,0.008003727904823774],[117,309,69,0.012612751004266329],[117,309,70,0.017225441707448677],[117,309,71,0.021840962049186827],[117,309,72,0.02645849540914777],[117,309,73,0.031077248324279147],[117,309,74,0.03569645233106865],[117,309,75,0.04031536583710671],[117,309,76,0.044933276022348395],[117,309,77,0.049549500769914365],[117,309,78,0.05416339062646],[117,309,79,0.05877433079213626],[117,310,64,-0.008252740498120248],[117,310,65,-0.003627424966412232],[117,310,66,0.001003777100531289],[117,310,67,0.005639947435522194],[117,310,68,0.010280183874529114],[117,310,69,0.014923602107607042],[117,310,70,0.019569337460115327],[117,310,71,0.024216546704070932],[117,310,72,0.02886440989968493],[117,310,73,0.033512132266927175],[117,310,74,0.03815894608751379],[117,310,75,0.04280411263678892],[117,310,76,0.04744692414589864],[117,310,77,0.05208670579409597],[117,310,78,0.05672281773120638],[117,310,79,0.061354657130277226],[117,311,64,-0.006219671639919849],[117,311,65,-0.0015555053827806392],[117,311,66,0.0031132685955518047],[117,311,67,0.007785719505620528],[117,311,68,0.012460934340704402],[117,311,69,0.01713801968388004],[117,311,70,0.021816103545964374],[117,311,71,0.02649433723418118],[117,311,72,0.031171897251602354],[117,311,73,0.03584798722720617],[117,311,74,0.040521839876950114],[117,311,75,0.04519271899532673],[117,311,76,0.0498599214778027],[117,311,77,0.054522779373978744],[117,311,78,0.05918066197150065],[117,311,79,0.0638329779107441],[117,312,64,-0.004280326979442181],[117,312,65,4.2181311836624047E-4],[117,312,66,0.005127315155512804],[117,312,67,0.00983523575894224],[117,312,68,0.014544650983926904],[117,312,69,0.019254658176604794],[117,312,70,0.023964377867985248],[117,312,71,0.028672955699267907],[117,312,72,0.03337956437852328],[117,312,73,0.038083405668578124],[117,312,74,0.04278371240650458],[117,312,75,0.04747975055417873],[117,312,76,0.05217082128031117],[117,312,77,0.056856263073785926],[117,312,78,0.061535453888338656],[117,312,79,0.06620781331859654],[117,313,64,-0.002435887750930496],[117,313,65,0.0023033299571689897],[117,313,66,0.007044697514835677],[117,313,67,0.011787258908413728],[117,313,68,0.016530079163366504],[117,313,69,0.021272246261606953],[117,313,70,0.026012873090882613],[117,313,71,0.03075109942605915],[117,313,72,0.03548609394235068],[117,313,73,0.040217056260339945],[117,313,74,0.044943219023188874],[117,313,75,0.049663850005502636],[117,313,76,0.05437825425425166],[117,313,77,0.05908577626158745],[117,313,78,0.06378580216958293],[117,313,79,0.06847776200691993],[117,314,64,-6.874634241935407E-4],[117,314,65,0.004087916980628159],[117,314,66,0.008864269472197567],[117,314,67,0.013640625343637747],[117,314,68,0.01841603850239197],[117,314,69,0.02318958744164043],[117,314,70,0.027960377244355947],[117,314,71,0.0327275416198394],[117,314,72,0.037490244972786385],[117,314,73,0.04224768450472366],[117,314,74,0.046999092348222166],[117,314,75,0.051743737733342926],[117,314,76,0.05648092918672554],[117,314,77,0.06121001676315216],[117,314,78,0.06593039430961925],[117,314,79,0.07064150176193887],[117,315,64,9.639087846476657E-4],[117,315,65,0.005774518961806183],[117,315,66,0.010584958399354472],[117,315,67,0.01539424564900381],[117,315,68,0.020201423415633246],[117,315,69,0.025005560582063657],[117,315,70,0.029805754267049872],[117,315,71,0.03460113191633393],[117,315,72,0.03939085342680723],[117,315,73,0.044174113303623364],[117,315,74,0.04895014285066701],[117,315,75,0.05371821239383548],[117,315,76,0.05847763353754176],[117,315,77,0.0632277614542737],[117,315,78,0.06796799720724006],[117,315,79,0.07269779010612598],[117,316,64,0.0025172643455917687],[117,316,65,0.007362154041736069],[117,316,66,0.012205765692213405],[117,316,67,0.01704710506360868],[117,316,68,0.02188520357743315],[117,316,69,0.02671912038750182],[117,316,70,0.0315479444911069],[117,316,71,0.03637079687382741],[117,316,72,0.041186832688027114],[117,316,73,0.04599524346487535],[117,316,74,0.05079525936030449],[117,316,75,0.05558615143435375],[117,316,76,0.060367233964312234],[117,316,77,0.06513786679149425],[117,316,78,0.06989745770167799],[117,316,79,0.07464546483923024],[117,317,64,0.003971711790448612],[117,317,65,0.008849914114114732],[117,317,66,0.013725767164233071],[117,317,67,0.018598263883068317],[117,317,68,0.02346642433177079],[117,317,69,0.028329297819580934],[117,317,70,0.03318596506740629],[117,317,71,0.03803554040560528],[117,317,72,0.04287717400603286],[117,317,73,0.04771005414818283],[117,317,74,0.05253340951983995],[117,317,75,0.05734651155168946],[117,317,76,0.06214867678630173],[117,317,77,0.06693926928131969],[117,317,78,0.0717177030468843],[117,317,79,0.07648344451731848],[117,318,64,0.005326433031698136],[117,318,65,0.010236965152685296],[117,318,66,0.015144113382056623],[117,318,67,0.020046857803122903],[117,318,68,0.024944207043556793],[117,318,69,0.02983520045563015],[117,318,70,0.03471891033138924],[117,318,71,0.03959444415261126],[117,318,72,0.044460946875587604],[117,318,73,0.049317603250575826],[117,318,74,0.05416364017632977],[117,318,75,0.058998329089157475],[117,318,76,0.06382098838692166],[117,318,77,0.06863098588781463],[117,318,78,0.07342774132393917],[117,318,79,0.07821072886971736],[117,319,64,0.0065806836245645706],[117,319,65,0.011522547481362916],[117,319,66,0.01646002994343121],[117,319,67,0.021392098205088445],[117,319,68,0.026317749391356893],[117,319,69,0.0312360127884089],[117,319,70,0.036145952109523066],[117,319,71,0.04104666779638069],[117,319,72,0.045937299355761296],[117,319,73,0.05081702773146607],[117,319,74,0.05568507771188996],[117,319,75,0.06054072037268407],[117,319,76,0.0653832755549272],[117,319,77,0.07021211437863742],[117,319,78,0.07502666179165438],[117,319,79,0.07982639915391654],[118,-64,64,-0.1121237121303319],[118,-64,65,-0.11577023459384062],[118,-64,66,-0.11930539995249112],[118,-64,67,-0.1227277555456806],[118,-64,68,-0.12603600381481872],[118,-64,69,-0.12922900793713954],[118,-64,70,-0.1323057975231945],[118,-64,71,-0.13526557437793807],[118,-64,72,-0.13810771832541435],[118,-64,73,-0.14083179309696248],[118,-64,74,-0.143437552283182],[118,-64,75,-0.14592494534932288],[118,-64,76,-0.14829412371436668],[118,-64,77,-0.15054544689367133],[118,-64,78,-0.15267948870522818],[118,-64,79,-0.15469704353950875],[118,-63,64,-0.10645558042545311],[118,-63,65,-0.11009030310686374],[118,-63,66,-0.11361426784385475],[118,-63,67,-0.11702601893863795],[118,-63,68,-0.12032425522597356],[118,-63,69,-0.12350783569901536],[118,-63,70,-0.12657578519886314],[118,-63,71,-0.12952730016772618],[118,-63,72,-0.13236175446571552],[118,-63,73,-0.13507870525117727],[118,-63,74,-0.13767789892480875],[118,-63,75,-0.14015927713722232],[118,-63,76,-0.1425229828602259],[118,-63,77,-0.14476936652168793],[118,-63,78,-0.1468989922040388],[118,-63,79,-0.14891264390638903],[118,-62,64,-0.10070852169901123],[118,-62,65,-0.10433069808152262],[118,-62,66,-0.1078427422212549],[118,-62,67,-0.11124319529076865],[118,-62,68,-0.1145307523994542],[118,-62,69,-0.1177042682109738],[118,-62,70,-0.12076276262442809],[118,-62,71,-0.1237054265191635],[118,-62,72,-0.12653162756322645],[118,-62,73,-0.1292409160853838],[118,-62,74,-0.1318330310109468],[118,-62,75,-0.13430790586107133],[118,-62,76,-0.13666567481579128],[118,-62,77,-0.13890667884066177],[118,-62,78,-0.14103147187706688],[118,-62,79,-0.1430408270961563],[118,-61,64,-0.09488684887556198],[118,-61,65,-0.09849573965750291],[118,-61,66,-0.1019951501152907],[118,-61,67,-0.10538361820085429],[118,-61,68,-0.10865983518129463],[118,-61,69,-0.11182265124748403],[118,-61,70,-0.11487108118641687],[118,-61,71,-0.11780431011722181],[118,-61,72,-0.12062169929084143],[118,-61,73,-0.12332279195330487],[118,-61,74,-0.12590731927282506],[118,-61,75,-0.12837520633039168],[118,-61,76,-0.13072657817412514],[118,-61,77,-0.13296176593726217],[118,-61,78,-0.13508131301982162],[118,-61,79,-0.13708598133393346],[118,-60,64,-0.088994919437548],[118,-60,65,-0.09258979301798687],[118,-60,66,-0.09607586406852953],[118,-60,67,-0.09945166723104126],[118,-60,68,-0.10271588981528712],[118,-60,69,-0.10586737739826246],[118,-60,70,-0.1089051394872963],[118,-60,71,-0.11182835524683388],[118,-60,72,-0.11463637928891701],[118,-60,73,-0.11732874752727307],[118,-60,74,-0.119905183095253],[118,-60,75,-0.12236560232728799],[118,-60,76,-0.12471012080413146],[118,-60,77,-0.12693905946174577],[118,-60,78,-0.12905295076390633],[118,-60,79,-0.13105254493847696],[118,-59,64,-0.08303713051411243],[118,-59,65,-0.0866172634688891],[118,-59,66,-0.09008929720558267],[118,-59,67,-0.0934517629681656],[118,-59,68,-0.09670334399597147],[118,-59,69,-0.09984288111333195],[118,-59,70,-0.10286937838300392],[118,-59,71,-0.10578200882330413],[118,-59,72,-0.10858012018895735],[118,-59,73,-0.11126324081558003],[118,-59,74,-0.11383108552802923],[118,-59,75,-0.11628356161229936],[118,-59,76,-0.11862077485121691],[118,-59,77,-0.12084303562381382],[118,-59,78,-0.12295086506842634],[118,-59,79,-0.12494500130949915],[118,-58,64,-0.07701791384505896],[118,-58,65,-0.08058259139277313],[118,-58,66,-0.08403989817741198],[118,-58,67,-0.08738836195888411],[118,-58,68,-0.090626661795017],[118,-58,69,-0.09375363362107703],[118,-58,70,-0.09676827589310588],[118,-58,71,-0.09966975529498323],[118,-58,72,-0.10245741250922324],[118,-58,73,-0.10513076805143096],[118,-58,74,-0.10768952816864485],[118,-58,75,-0.11013359080124574],[118,-58,76,-0.11246305160868886],[118,-58,77,-0.11467821005893453],[118,-58,78,-0.11677957558162444],[118,-58,79,-0.11876787378498732],[118,-57,64,-0.0709417306202762],[118,-57,65,-0.0744902470777733],[118,-57,66,-0.07793214598019682],[118,-57,67,-0.08126595151893445],[118,-57,68,-0.08449033846132048],[118,-57,69,-0.08760413771962894],[118,-57,70,-0.09060634198390438],[118,-57,71,-0.09349611141853531],[118,-57,72,-0.09627277942258894],[118,-57,73,-0.0989358584538218],[118,-57,74,-0.10148504591660124],[118,-57,75,-0.10392023011341034],[118,-57,76,-0.1062414962602014],[118,-57,77,-0.10844913256546607],[118,-57,78,-0.11054363637307307],[118,-57,79,-0.11252572036885711],[118,-56,64,-0.0648130661944849],[118,-56,65,-0.06834472542136838],[118,-56,66,-0.07177054464860688],[118,-56,67,-0.07508904441637088],[118,-56,68,-0.07829889509467247],[118,-56,69,-0.0813989224414211],[118,-56,70,-0.08438811322433937],[118,-56,71,-0.08726562090664247],[118,-56,72,-0.09003077139649973],[118,-56,73,-0.09268306886019162],[118,-56,74,-0.09522220159919792],[118,-56,75,-0.09764804799089277],[118,-56,76,-0.09996068249310608],[118,-56,77,-0.10216038171242192],[118,-56,78,-0.10424763053626873],[118,-56,79,-0.106223128328777],[118,-55,64,-0.05863642467714225],[118,-55,65,-0.062150540508852825],[118,-55,66,-0.06555961782332154],[118,-55,67,-0.06886217342862122],[118,-55,68,-0.0720568731928316],[118,-55,69,-0.07514253759075806],[118,-55,70,-0.07811814731453082],[118,-55,71,-0.08098284894798968],[118,-55,72,-0.08373596070486633],[118,-55,73,-0.0863769782306878],[118,-55,74,-0.08890558046862651],[118,-55,75,-0.09132163558898165],[118,-55,76,-0.0936252069825445],[118,-55,77,-0.0958165593177206],[118,-55,78,-0.097896164661467],[118,-55,79,-0.09986470866401242],[118,-54,64,-0.05241632339781965],[118,-54,65,-0.0559122200668104],[118,-54,66,-0.05930390319311096],[118,-54,67,-0.06258988577367386],[118,-54,68,-0.06576882907231707],[118,-54,69,-0.06883954815471238],[118,-54,70,-0.07180101748727263],[118,-54,71,-0.0746523765998428],[118,-54,72,-0.07739293581221152],[118,-54,73,-0.08002218202436095],[118,-54,74,-0.082539784570685],[118,-54,75,-0.0849456011378561],[118,-54,76,-0.08723968374659807],[118,-54,77,-0.0894222847972358],[118,-54,78,-0.09149386317907637],[118,-54,79,-0.0934550904435979],[118,-53,64,-0.04615728724689583],[118,-53,65,-0.04963429979144607],[118,-53,66,-0.05300794681132415],[118,-53,67,-0.056276737415243194],[118,-53,68,-0.059439328162770755],[118,-53,69,-0.062494528587197395],[118,-53,70,-0.06544130678232285],[118,-53,71,-0.06827879505306567],[118,-53,72,-0.0710062956299149],[118,-53,73,-0.07362328644713478],[118,-53,74,-0.07612942698496139],[118,-53,75,-0.07852456417546605],[118,-53,76,-0.08080873837234204],[118,-53,77,-0.08298218938449076],[118,-53,78,-0.08504536257345718],[118,-53,79,-0.08699891501469015],[118,-52,64,-0.03986384289141054],[118,-52,65,-0.04332131755160806],[118,-52,66,-0.046676297286620594],[118,-52,67,-0.049927287241750884],[118,-52,68,-0.05307293917472222],[118,-52,69,-0.05611205696604671],[118,-52,70,-0.05904360219332927],[118,-52,71,-0.061866699769414835],[118,-52,72,-0.06458064364439386],[118,-52,73,-0.0671849025713841],[118,-52,74,-0.06967912593631886],[118,-52,75,-0.07206314965142369],[118,-52,76,-0.07433700211263428],[118,-52,77,-0.07650091022083338],[118,-52,78,-0.07855530546695355],[118,-52,79,-0.08050083008092856],[118,-51,64,-0.033540512866388816],[118,-51,65,-0.03697780746681634],[118,-51,66,-0.0403134998482646],[118,-51,67,-0.043546091119439856],[118,-51,68,-0.04667422814107558],[118,-51,69,-0.049696709023425156],[118,-51,70,-0.05261248868770951],[118,-51,71,-0.055420684491426786],[118,-51,72,-0.05812058191753722],[118,-51,73,-0.06071164032744558],[118,-51,74,-0.06319349877800484],[118,-51,75,-0.06556598190222951],[118,-51,76,-0.0678291058539684],[118,-51,77,-0.06998308431641254],[118,-51,78,-0.07202833457449154],[118,-51,79,-0.07396548365113276],[118,-50,64,-0.027191809541487588],[118,-50,65,-0.030608293860151847],[118,-50,66,-0.03392409028582999],[118,-50,67,-0.037137695819470906],[118,-50,68,-0.04024775233216893],[118,-50,69,-0.043253052049416874],[118,-50,70,-0.04615254309933081],[118,-50,71,-0.048945335124750855],[118,-50,72,-0.05163070495924216],[118,-50,73,-0.054208102366905875],[118,-50,74,-0.056677155846231564],[118,-50,75,-0.05903767849767794],[118,-50,76,-0.061289673955228885],[118,-50,77,-0.0634333423818052],[118,-50,78,-0.06546908652858074],[118,-50,79,-0.06739751785817971],[118,-49,64,-0.020822228962790734],[118,-49,65,-0.02421728508582721],[118,-49,66,-0.02751258876314233],[118,-49,67,-0.030706632818824908],[118,-49,68,-0.03379805404422642],[118,-49,69,-0.03678563866861562],[118,-49,70,-0.03966832789381658],[118,-49,71,-0.04244522349274871],[118,-49,72,-0.0451155934718761],[118,-49,73,-0.047678877797490804],[118,-49,74,-0.05013469418605099],[118,-49,75,-0.052482843958266634],[118,-49,76,-0.05472331795717911],[118,-49,77,-0.05685630253011187],[118,-49,78,-0.05888218557454372],[118,-49,79,-0.06080156264788272],[118,-48,64,-0.014436244570089185],[118,-48,65,-0.01780926723177545],[118,-48,66,-0.021083493506789952],[118,-48,67,-0.024257411975349696],[118,-48,68,-0.02732965426154732],[118,-48,69,-0.03029900049005252],[118,-48,70,-0.033164384806817715],[118,-48,71,-0.03592490096369849],[118,-48,72,-0.038579807967004],[118,-48,73,-0.04112853578989617],[118,-48,74,-0.043570691148861695],[118,-48,75,-0.045906063343949643],[118,-48,76,-0.048134630163017],[118,-48,77,-0.05025656384986599],[118,-48,78,-0.05227223713632012],[118,-48,79,-0.054182229338215704],[118,-47,64,-0.008038300789470099],[118,-47,65,-0.011388697697088168],[118,-47,66,-0.014641274369039614],[118,-47,67,-0.017794515076779427],[118,-47,68,-0.020847046192251195],[118,-47,69,-0.023797641630294963],[118,-47,70,-0.026645228355074102],[118,-47,71,-0.02938889195043437],[118,-47,72,-0.032027882254208495],[118,-47,73,-0.03456161905638777],[118,-47,74,-0.0369896978613824],[118,-47,75,-0.03931189571406313],[118,-47,76,-0.041528177089829255],[118,-47,77,-0.04363869984858437],[118,-47,78,-0.04564382125266575],[118,-47,79,-0.047544104048709235],[118,-46,64,-0.0016328065010656756],[118,-46,65,-0.004959998644145092],[118,-46,66,-0.008190366264995697],[118,-46,67,-0.011322389263567434],[118,-46,68,-0.014354688677430505],[118,-46,69,-0.017286032109552374],[118,-46,70,-0.020115339220111772],[118,-46,71,-0.02284168728225966],[118,-46,72,-0.02546431680184258],[118,-46,73,-0.027982637201009353],[118,-46,74,-0.03039623256592061],[118,-46,75,-0.03270486745825951],[118,-46,76,-0.03490849279078223],[118,-46,77,-0.037007251766792426],[118,-46,78,-0.03900148588358787],[118,-46,79,-0.040891740999855264],[118,-45,64,0.004775871617723637],[118,-45,65,0.0014724496742473114],[118,-45,66,-0.0017351624843215951],[118,-45,67,-0.004845440325856987],[118,-45,68,-0.007856999474027182],[118,-45,69,-0.010768601121115995],[118,-45,70,-0.013579157504895134],[118,-45,71,-0.01628773744945955],[118,-45,72,-0.018893571970042267],[118,-45,73,-0.021396059941725665],[118,-45,74,-0.02379477383227424],[118,-45,75,-0.026089465498781772],[118,-45,76,-0.02828007204837546],[118,-45,77,-0.030366721762859483],[118,-45,78,-0.032349740087346146],[118,-45,79,-0.0342296556828503],[118,-44,64,0.011183415873685876],[118,-44,65,0.007904315712858878],[118,-44,66,0.004719992122626637],[118,-44,67,0.0016319741255694797],[118,-44,68,-0.0013583484112780209],[118,-44,69,-0.004249730173973898],[118,-44,70,-0.007041075863280066],[118,-44,71,-0.00973144572025475],[118,-44,72,-0.01232006111583639],[118,-44,73,-0.014806310204341755],[118,-44,74,-0.017189753641099648],[118,-44,75,-0.019470130363914206],[118,-44,76,-0.021647363438601075],[118,-44,77,-0.023721565968477965],[118,-44,78,-0.025693047067857022],[118,-44,79,-0.027562317899518796],[118,-43,64,0.017585564464105308],[118,-43,65,0.01433132355735689],[118,-43,66,0.011170808084432271],[118,-43,67,0.008105551614532858],[118,-43,68,0.0051369495794437725],[118,-43,69,0.002266253891572978],[118,-43,70,-5.054325020927841E-4],[118,-43,71,-0.003177161130022421],[118,-43,72,-0.005748143570184938],[118,-43,73,-0.008217757088022859],[118,-43,74,-0.010585550338573446],[118,-43,75,-0.012851249132436737],[118,-43,76,-0.01501476226583065],[118,-43,77,-0.01707618741461403],[118,-43,78,-0.01903581709232849],[118,-43,79,-0.020894144672234716],[118,-42,64,0.023978118507585355],[118,-42,65,0.020749259972607126],[118,-42,66,0.017613058373676327],[118,-42,67,0.014571051880555852],[118,-42,68,0.011624641561055249],[118,-42,69,0.008775086014953137],[118,-42,70,0.0060234959438277835],[118,-42,71,0.0033708286568772117],[118,-42,72,8.178825127184153E-4],[118,-42,73,-0.0016347087027571705],[118,-42,74,-0.003986481462690872],[118,-42,75,-0.00623714824942545],[118,-42,76,-0.00838660336877417],[118,-42,77,-0.010434928828273016],[118,-42,78,-0.0123824002794648],[118,-42,79,-0.014229493024193518],[118,-41,64,0.030356949199563776],[118,-41,65,0.02715398157613047],[118,-41,66,0.024042585597597976],[118,-41,67,0.021024304085992762],[118,-41,68,0.01810054381362769],[118,-41,69,0.015272570153202158],[118,-41,70,0.012541501663795862],[118,-41,71,0.009908304612839758],[118,-41,72,0.00737378743405237],[118,-41,73,0.004938595121415146],[118,-41,74,0.0026032035589772518],[118,-41,75,3.6791378677880626E-4],[118,-41,76,-0.0017671537973351636],[118,-41,77,-0.003802065299901125],[118,-41,78,-0.005737079258067879],[118,-41,79,-0.00757265262985074],[118,-40,64,0.0367180050926631],[118,-40,65,0.033541422136861176],[118,-40,66,0.030455309314504353],[118,-40,67,0.027461214149337],[118,-40,68,0.02456054918384698],[118,-40,69,0.021754586645825413],[118,-40,70,0.01904445305080782],[118,-40,71,0.016431123740480724],[118,-40,72,0.01391541735703683],[118,-40,73,0.011497990253559798],[118,-40,74,0.009179330840221378],[118,-40,75,0.006959753866586982],[118,-40,76,0.004839394639796324],[118,-40,77,0.002818203178729939],[118,-40,78,8.959383041207136E-4],[118,-40,79,-9.278383353740205E-4],[118,-39,64,0.04305731950157454],[118,-39,65,0.039907599998902366],[118,-39,66,0.0368472334756228],[118,-39,67,0.03387777220440058],[118,-39,68,0.03100063456075086],[118,-39,69,0.028217099706334126],[118,-39,70,0.02552830220811997],[118,-39,71,0.022935226593501667],[118,-39,72,0.020438701841349216],[118,-39,73,0.018039395809075986],[118,-39,74,0.015737809595507857],[118,-39,75,0.013534271839845347],[118,-39,76,0.011428932956488502],[118,-39,77,0.009421759305837218],[118,-39,78,0.007512527301019367],[118,-39,79,0.005700817450569828],[118,-38,64,0.04937101803261568],[118,-38,65,0.04624862563042009],[118,-38,66,0.04321445399254087],[118,-38,67,0.04027006018550905],[118,-38,68,0.03741686847789505],[118,-38,69,0.03465616504060287],[118,-38,70,0.03198909258302152],[118,-38,71,0.02941664492511442],[118,-38,72,0.026939661505435808],[118,-38,73,0.02455882182514635],[118,-38,74,0.022274639827821074],[118,-38,75,0.020087458215336418],[118,-38,76,0.017997442699608013],[118,-38,77,0.016004576190290942],[118,-38,78,0.014108652918396802],[118,-38,79,0.012309272495847456],[118,-37,64,0.0556553262381394],[118,-37,65,0.05256070929785406],[118,-37,66,0.049553166430407414],[118,-37,67,0.046634259538888334],[118,-37,68,0.0438054188421233],[118,-37,69,0.04106793759222427],[118,-37,70,0.03842296672798384],[118,-37,71,0.035871509464197704],[118,-37,72,0.03341441581689952],[118,-37,73,0.03105237706458408],[118,-37,74,0.028785920145211974],[118,-37,75,0.026615401989279475],[118,-37,76,0.02454100378872892],[118,-37,77,0.022562725201808242],[118,-37,78,0.020680378493835305],[118,-37,79,0.01889358261388918],[118,-36,64,0.06190657739544636],[118,-36,65,0.058840168865096354],[118,-36,66,0.05585967382654933],[118,-36,67,0.05296665905989495],[118,-36,68,0.05016256078859005],[118,-36,69,0.0474486794145087],[118,-36,70,0.04482617418882873],[118,-36,71,0.0422960578188315],[118,-36,72,0.03985919101060498],[118,-36,73,0.037516276947723415],[118,-36,74,0.03526785570569546],[118,-36,75,0.03311429860246817],[118,-36,76,0.031055802484757145],[118,-36,77,0.029092383950317102],[118,-36,78,0.027223873506105112],[118,-36,79,0.025449909662357273],[118,-35,64,0.0681212204104864],[118,-35,65,0.06508343771792313],[118,-35,66,0.06213039463478942],[118,-35,67,0.0592636628563753],[118,-35,68,0.05648468466232426],[118,-35,69,0.05379476766942204],[118,-35,70,0.05119507952020974],[118,-35,71,0.04868664250750232],[118,-35,72,0.046270328134797034],[118,-35,73,0.043946851612646665],[118,-35,74,0.04171676629079335],[118,-35,75,0.03958045802634358],[118,-35,76,0.03753813948776141],[118,-35,77,0.03558984439478907],[118,-35,78,0.033735421694249146],[118,-35,79,0.03197452967175152],[118,-34,64,0.0742958278461413],[118,-34,65,0.07128707281347368],[118,-34,66,0.06836187079525557],[118,-34,67,0.06552179843794759],[118,-34,68,0.06276830412612744],[118,-34,69,0.06010270275324514],[118,-34,70,0.05752617042819319],[118,-34,71,0.055039739117768716],[118,-34,72,0.052644291225018236],[118,-34,73,0.05034055410353455],[118,-34,74,0.04812909450750458],[118,-34,75,0.04601031297778746],[118,-34,76,0.043984438163800155],[118,-34,77,0.04205152108132004],[118,-34,78,0.040211429306159285],[118,-34,79,0.0384638411037308],[118,-33,64,0.08042710407536302],[118,-33,65,0.07744776285504906],[118,-33,66,0.07455077592995929],[118,-33,67,0.07173772493147967],[118,-33,68,0.06901006439507706],[118,-33,69,0.06636911654923927],[118,-33,70,0.06381606604021905],[118,-33,71,0.06135195459266207],[118,-33,72,0.058977675606105784],[118,-33,73,0.05669396868741983],[118,-33,74,0.05450141411898979],[118,-33,75,0.05240042726291805],[118,-33,76,0.050391252901023864],[118,-33,77,0.0484739595107504],[118,-33,78,0.046648433476931594],[118,-33,79,0.044914373239442806],[118,-32,64,0.08651189355884059],[118,-32,65,0.08356233659190393],[118,-32,66,0.08069392366381256],[118,-32,67,0.07790824142243591],[118,-32,68,0.07520675059731252],[118,-32,69,0.07259078080698056],[118,-32,70,0.07006152530210796],[118,-32,71,0.06762003564449448],[118,-32,72,0.06526721632193389],[118,-32,73,0.06300381929901122],[118,-32,74,0.060830438503630346],[118,-32,75,0.058747504249551885],[118,-32,76,0.05675527759471877],[118,-32,77,0.0548538446354786],[118,-32,78,0.05304311073665924],[118,-32,79,0.05132279469751522],[118,-31,64,0.09254718924735039],[118,-31,65,0.0896277712441873],[118,-31,66,0.08678827607123962],[118,-31,67,0.08403029542224705],[118,-31,68,0.08135529626125182],[118,-31,69,0.07876461564852366],[118,-31,70,0.07625945550227309],[118,-31,71,0.07384087729622735],[118,-31,72,0.07150979669306012],[118,-31,73,0.06926697811374294],[118,-31,74,0.0671130292426213],[118,-31,75,0.06504839546848995],[118,-31,76,0.06307335426144611],[118,-31,77,0.0611880094856333],[118,-31,78,0.05939228564782495],[118,-31,79,0.0576859220818734],[118,-30,64,0.09853014110894931],[118,-30,65,0.09564120105318952],[118,-30,66,0.0928309522485451],[118,-30,67,0.09010099146186445],[118,-30,68,0.08745279192940791],[118,-30,69,0.08488769820155628],[118,-30,70,0.08240692092329671],[118,-30,71,0.08001153155056628],[118,-30,72,0.07770245700243761],[118,-30,73,0.07548047424921767],[118,-30,74,0.07334620483626508],[118,-30,75,0.0713001093437936],[118,-30,76,0.06934248178244995],[118,-30,77,0.06747344392476773],[118,-30,78,0.06569293957245703],[118,-30,79,0.0640007287595491],[118,-29,64,0.10445806478068753],[118,-29,65,0.10159992595657608],[118,-29,66,0.0988192370117118],[118,-29,67,0.09611759981117496],[118,-29,68,0.09349649389847359],[118,-29,69,0.09095727135921505],[118,-29,70,0.08850115162054795],[118,-29,71,0.08612921618645264],[118,-29,72,0.08384240330886561],[118,-29,73,0.08164150259470926],[118,-29,74,0.0795271495486306],[118,-29,75,0.07749982005171996],[118,-29,76,0.07555982477599288],[118,-29,77,0.07370730353474209],[118,-29,78,0.07194221956871683],[118,-29,79,0.07026435376814566],[118,-28,64,0.11032845034501704],[118,-28,65,0.10750142038877886],[118,-28,66,0.104750589719805],[118,-28,67,0.10207756532444934],[118,-28,68,0.09948383308585129],[118,-28,69,0.09697075266674182],[118,-28,70,0.09453955232801248],[118,-28,71,0.09219132368312632],[118,-28,72,0.08992701638835332],[118,-28,73,0.08774743276890229],[118,-28,74,0.08565322238075901],[118,-28,75,0.08364487650848906],[118,-28,76,0.08172272259880176],[118,-28,77,0.07988691862997421],[118,-28,78,0.07813744741709339],[118,-28,79,0.07647411085313771],[118,-27,64,0.11613897123102834],[118,-27,65,0.11334334220668285],[118,-27,66,0.11062265322411913],[118,-27,67,0.10797851641196321],[118,-27,68,0.10541242402276851],[118,-27,69,0.10292574333511684],[118,-27,70,0.10051971149147831],[118,-27,71,0.09819543027190414],[118,-27,72,0.09595386080353763],[118,-27,73,0.09379581820601357],[118,-27,74,0.09172196617255557],[118,-27,75,0.0897328114870325],[118,-27,76,0.08782869847676755],[118,-27,77,0.08600980340119901],[118,-27,78,0.08427612877635404],[118,-27,79,0.08262749763515187],[118,-26,64,0.12188749324022186],[118,-26,65,0.1191235417403117],[118,-26,66,0.11643326294276823],[118,-26,67,0.11381827413749035],[118,-26,68,0.11128007397367501],[118,-26,69,0.1088200373813687],[118,-26,70,0.10643941042877159],[118,-26,71,0.10413930511536518],[118,-26,72,0.10192069410085369],[118,-26,73,0.09978440536998412],[118,-26,74,0.09773111683306124],[118,-26,75,0.09576135086240989],[118,-26,76,0.09387546876458563],[118,-26,77,0.09207366518843108],[118,-26,78,0.09035596246893451],[118,-26,79,0.0887222049069144],[118,-25,64,0.1275720836969645],[118,-25,65,0.12484007096866123],[118,-25,66,0.12218045606087424],[118,-25,67,0.11959486144182119],[118,-25,68,0.11708479218207579],[118,-25,69,0.11465163089571273],[118,-25,70,0.11229663261719824],[118,-25,71,0.11002091961410077],[118,-25,72,0.10782547613560522],[118,-25,73,0.10571114309690188],[118,-25,74,0.10367861269926104],[118,-25,75,0.10172842298605156],[118,-25,76,0.09986095233449943],[118,-25,77,0.09807641388328314],[118,-25,78,0.09637484989592981],[118,-25,79,0.09475612606002692],[118,-24,64,0.13319102072377764],[118,-24,65,0.13049119282083277],[118,-24,66,0.1278624808564982],[118,-24,67,0.1253065124924564],[118,-24,68,0.1228247992429532],[118,-24,69,0.12041873143567083],[118,-24,70,0.118089573108343],[118,-24,71,0.11583845684118077],[118,-24,72,0.11366637852509842],[118,-24,73,0.11157419206580532],[118,-24,74,0.10956260402358098],[118,-24,75,0.10763216818898425],[118,-24,76,0.10578328009429694],[118,-24,77,0.10401617146080011],[118,-24,78,0.10233090458184324],[118,-24,79,0.10072736664172222],[118,-23,64,0.13874280264116012],[118,-23,65,0.13607539060216323],[118,-23,66,0.13347780615201865],[118,-23,67,0.13095168215917352],[118,-23,68,0.12849853660146904],[118,-23,69,0.12611976754686816],[118,-23,70,0.12381664806991988],[118,-23,71,0.1215903211040289],[118,-23,72,0.11944179422952028],[118,-23,73,0.11737193439756188],[118,-23,74,0.11538146258976723],[118,-23,75,0.11347094841372385],[118,-23,76,0.11164080463425263],[118,-23,77,0.10989128164049311],[118,-23,78,0.10822246184877438],[118,-23,79,0.1066342540412919],[118,-22,64,0.1442261574920971],[118,-22,65,0.14159137754550644],[118,-22,66,0.1390251308911048],[118,-22,67,0.13652905561561846],[118,-22,68,0.13410467617810617],[118,-22,69,0.13175339841065792],[118,-22,70,0.12947650445482695],[118,-22,71,0.12727514763386172],[118,-22,72,0.12515034726072627],[118,-22,73,0.12310298338197456],[118,-22,74,0.12113379145729841],[118,-22,75,0.11924335697499655],[118,-22,76,0.117432110003169],[118,-22,77,0.11570031967673111],[118,-22,78,0.11404808862020965],[118,-22,79,0.11247534730633757],[118,-21,64,0.14964005269140102],[118,-21,65,0.14703810648781335],[118,-21,66,0.14450339384143773],[118,-21,67,0.14203755806707463],[118,-21,68,0.13964213012039695],[118,-21,69,0.13731852361873054],[118,-21,70,0.13506802979756283],[118,-21,71,0.13289181240284642],[118,-21,72,0.13079090251908565],[118,-21,73,0.12876619333327277],[118,-21,74,0.12681843483449262],[118,-21,75,0.1249482284494432],[118,-21,76,0.12315602161367556],[118,-21,77,0.12144210227865082],[118,-21,78,0.11980659335457178],[118,-21,79,0.11824944708900931],[118,-20,64,0.15498370479958112],[118,-20,65,0.15241477967170225],[118,-20,66,0.14991178342286826],[118,-20,67,0.14747636460409608],[118,-20,68,0.14511006068092747],[118,-20,69,0.14281429307438998],[118,-20,70,0.14059036213768394],[118,-20,71,0.13843944206865888],[118,-20,72,0.13636257575806832],[118,-20,73,0.1343606695736691],[118,-20,74,0.1324344880799856],[118,-20,75,0.13058464869398423],[118,-20,76,0.12881161627646387],[118,-20,77,0.12711569765925657],[118,-20,78,0.1254970361082004],[118,-20,79,0.12395560572190212],[118,-19,64,0.16025658942140997],[118,-19,65,0.1577208586721932],[118,-19,66,0.15524974766118327],[118,-19,67,0.1528449101821796],[118,-19,68,0.15050789022179123],[118,-19,69,0.14824011702067275],[118,-19,70,0.1460429000704817],[118,-19,71,0.14391742404661967],[118,-19,72,0.14186474367675084],[118,-19,73,0.13988577854515694],[118,-19,74,0.13798130783275586],[118,-19,75,0.13615196499302484],[118,-19,76,0.1343982323636349],[118,-19,77,0.1327204357138927],[118,-19,78,0.1311187387279491],[118,-19,79,0.12959313742379364],[118,-18,64,0.16545845122931024],[118,-18,65,0.16295607444872717],[118,-18,66,0.16051700426760762],[118,-18,67,0.15814289972759998],[118,-18,68,0.155835311345618],[118,-18,69,0.15359567619543724],[118,-18,70,0.15142531292500483],[118,-18,71,0.1493254167095336],[118,-18,72,0.14729705414036787],[118,-18,73,0.14534115804968029],[118,-18,74,0.1434585222708321],[118,-18,75,0.1416497963346297],[118,-18,76,0.13991548010129173],[118,-18,77,0.1382559183282187],[118,-18,78,0.13667129517352505],[118,-18,79,0.13516162863535297],[118,-17,64,0.17058931411127698],[118,-17,65,0.1681204375221843],[118,-17,66,0.16571355084374828],[118,-17,67,0.16337031836911708],[118,-17,68,0.16109229715288598],[118,-17,69,0.15888093211312715],[118,-17,70,0.1567375510691329],[118,-17,71,0.15466335971493894],[118,-17,72,0.15265943652861325],[118,-17,73,0.15072672761737593],[118,-17,74,0.1488660414983769],[118,-17,75,0.1470780438153665],[118,-17,76,0.14536325199107425],[118,-17,77,0.14372202981538407],[118,-17,78,0.14215458196927122],[118,-17,79,0.14066094848451594],[118,-16,64,0.17564949144350417],[118,-16,65,0.173214248277073],[118,-16,66,0.1708396752121577],[118,-16,67,0.16852744179573143],[118,-16,68,0.16627911162568998],[118,-16,69,0.16409613747338636],[118,-16,70,0.16197985634187684],[118,-16,71,0.15993148445994088],[118,-16,72,0.15795211221186733],[118,-16,73,0.15604269900306478],[118,-16,74,0.1542040680613287],[118,-16,75,0.15243690117399822],[118,-16,76,0.15074173336081564],[118,-16,77,0.14911894748258225],[118,-16,78,0.14756876878557035],[118,-16,79,0.14609125938170964],[118,-15,64,0.18063959648780537],[118,-15,65,0.17823810738897494],[118,-15,66,0.17589596587260115],[118,-15,67,0.17361484674057182],[118,-15,68,0.17139632013805817],[118,-15,69,0.16924184669661613],[118,-15,70,0.16715277261299544],[118,-15,71,0.16513032466372202],[118,-15,72,0.16317560515544216],[118,-15,73,0.16128958681108707],[118,-15,74,0.15947310759169497],[118,-15,75,0.15772686545411507],[118,-15,76,0.15605141304441472],[118,-15,77,0.1544471523270794],[118,-15,78,0.1529143291499645],[118,-15,79,0.15145302774502],[118,-14,64,0.18556055291360574],[118,-14,65,0.18319292637703088],[118,-14,66,0.18088332258380857],[118,-14,67,0.17863342159069662],[118,-14,68,0.17644480009259034],[118,-14,69,0.17431892658624448],[118,-14,70,0.17225715646970352],[118,-14,71,0.17026072707750028],[118,-14,72,0.16833075265161446],[118,-14,73,0.16646821924824917],[118,-14,74,0.16467397958026198],[118,-14,75,0.16294874779547597],[118,-14,76,0.16129309419069082],[118,-14,77,0.1597074398614824],[118,-14,78,0.1581920512877557],[118,-14,79,0.15674703485506492],[118,-13,64,0.19041360544460706],[118,-13,65,0.18807993828155833],[118,-13,66,0.185802967070808],[118,-13,67,0.1835843771229062],[118,-13,68,0.18142575168351727],[118,-13,69,0.1793285671178132],[118,-13,70,0.1772941880305704],[118,-13,71,0.17532386232203612],[118,-13,72,0.17341871617955051],[118,-13,73,0.17157974900498385],[118,-13,74,0.16980782827782792],[118,-13,75,0.16810368435416279],[118,-13,76,0.16646790520132293],[118,-13,77,0.1649009310683498],[118,-13,78,0.1634030490921934],[118,-13,79,0.1619743878396801],[118,-12,64,0.1952003306302681],[118,-12,65,0.19290070846695506],[118,-12,66,0.19065645385799035],[118,-12,67,0.18846925736571418],[118,-12,68,0.18634070878633457],[118,-12,69,0.1842722923550304],[118,-12,70,0.18226538188676134],[118,-12,71,0.18032123585284277],[118,-12,72,0.17844099239327416],[118,-12,73,0.17662566426488147],[118,-12,74,0.17487613372511146],[118,-12,75,0.1731931473516991],[118,-12,76,0.1715773107980334],[118,-12,77,0.17002908348430468],[118,-12,78,0.1685487732244022],[118,-12,79,0.16713653078857538],[118,-11,64,0.19992264774182833],[118,-11,65,0.19765714554960734],[118,-11,66,0.19544568122762485],[118,-11,67,0.19328995058720078],[118,-11,68,0.1911915499737239],[118,-11,69,0.18915197149250562],[118,-11,70,0.1871725981703376],[118,-11,71,0.1852546990528111],[118,-11,72,0.18339942423739053],[118,-11,73,0.18160779984229725],[118,-11,74,0.17988072291104562],[118,-11,75,0.17821895625284823],[118,-11,76,0.17662312321871776],[118,-11,77,0.17509370241335132],[118,-11,78,0.17363102234276018],[118,-11,79,0.17223525599766243],[118,-10,64,0.20458282979309628],[118,-10,65,0.20235151245102745],[118,-10,66,0.20017290230405382],[118,-10,67,0.19804870040897038],[118,-10,68,0.19598050965799452],[118,-10,69,0.19396983002539814],[118,-10,70,0.1920180537498437],[118,-10,71,0.19012646045248138],[118,-10,72,0.18829621219079806],[118,-10,73,0.18652834844827437],[118,-10,74,0.1848237810596941],[118,-10,75,0.18318328907231918],[118,-10,76,0.1816075135427624],[118,-10,77,0.1800969522696385],[118,-10,78,0.17865195446196047],[118,-10,79,0.17727271534329703],[118,-9,64,0.20918351468584773],[118,-9,65,0.20698643757606772],[118,-9,66,0.20484073626340538],[118,-9,67,0.20274811704606055],[118,-9,68,0.2007101893598846],[118,-9,69,0.19872846104581643],[118,-9,70,0.1968043335530235],[118,-9,71,0.19493909707780255],[118,-9,72,0.1931339256382293],[118,-9,73,0.19138987208461633],[118,-9,74,0.18970786304562182],[118,-9,75,0.18808869381022242],[118,-9,76,0.18653302314538223],[118,-9,77,0.1850413680494991],[118,-9,78,0.18361409844159493],[118,-9,79,0.18225143178626657],[118,-8,64,0.21372771648002808],[118,-8,65,0.21156492611640287],[118,-8,66,0.20945217966902718],[118,-8,67,0.20739118867299822],[118,-8,68,0.20538356910392142],[118,-8,69,0.20343083666617334],[118,-8,70,0.2015344020168679],[118,-8,71,0.19969556592558024],[118,-8,72,0.19791551436982113],[118,-8,73,0.19619531356631525],[118,-8,74,0.1945359049379325],[118,-8,75,0.1929381000164796],[118,-8,76,0.1914025752811882],[118,-8,77,0.18992986693297864],[118,-8,78,0.18852036560446817],[118,-8,79,0.18717431100573512],[118,-7,64,0.2182188367885327],[118,-7,65,0.2160903714790533],[118,-7,66,0.21401061793240383],[118,-7,67,0.21198129291576784],[118,-7,68,0.21000401894010512],[118,-7,69,0.20808031956925643],[118,-7,70,0.20621161466475146],[118,-7,71,0.20439921556637364],[118,-7,72,0.20264432020847523],[118,-7,73,0.20094800817209424],[118,-7,74,0.19931123567272402],[118,-7,75,0.1977348304839427],[118,-7,76,0.19621948679673784],[118,-7,77,0.19476576001460533],[118,-7,78,0.1933740614843923],[118,-7,79,0.19204465316289676],[118,-6,64,0.22266067629666364],[118,-6,65,0.2205665668400526],[118,-6,66,0.21851983689966648],[118,-6,67,0.2165222084698032],[118,-6,68,0.2145753105920265],[118,-6,69,0.21268067468512464],[118,-6,70,0.21083972981077292],[118,-6,71,0.20905379787495293],[118,-6,72,0.20732408876512054],[118,-6,73,0.20565169542317385],[118,-6,74,0.2040375888540764],[118,-6,75,0.20248261307033677],[118,-6,76,0.2009874799721827],[118,-6,77,0.1995527641635111],[118,-6,78,0.19817889770357888],[118,-6,79,0.19686616479445018],[118,-5,64,0.22705744640639303],[118,-5,65,0.22499771682338365],[118,-5,66,0.22298403456381832],[118,-5,67,0.22101812684412248],[118,-5,68,0.21910162923153964],[118,-5,69,0.21723608099495562],[118,-5,70,0.21542292039142286],[118,-5,71,0.21366347988844425],[118,-5,72,0.21195898132200308],[118,-5,73,0.21031053099039232],[118,-5,74,0.20871911468370097],[118,-5,75,0.2071855926491526],[118,-5,76,0.20571069449214163],[118,-5,77,0.20429501401304218],[118,-5,78,0.20293900397975773],[118,-5,79,0.20164297083602878],[118,-4,64,0.2314137810051824],[118,-4,65,0.22938844930493718],[118,-4,66,0.22740783290242939],[118,-4,67,0.2254736642313605],[118,-4,68,0.22358758537974321],[118,-4,69,0.2217511434615933],[118,-4,70,0.21996578592432514],[118,-4,71,0.218232855791905],[118,-4,72,0.21655358684374915],[118,-4,73,0.21492909872942245],[118,-4,74,0.21336039201899193],[118,-4,75,0.21184834318923518],[118,-4,76,0.21039369954554143],[118,-4,77,0.20899707407958912],[118,-4,78,0.20765894026276155],[118,-4,79,0.20637962677532096],[118,-3,64,0.2357347483595018],[118,-3,65,0.23374382734163446],[118,-3,66,0.23179628984094058],[118,-3,67,0.22989387350384216],[118,-3,68,0.22803822693441234],[118,-3,69,0.22623090508693966],[118,-3,70,0.2244733645942002],[118,-3,71,0.22276695903148025],[118,-3,72,0.22111293411634914],[118,-3,73,0.21951242284423067],[118,-3,74,0.21796644055962977],[118,-3,75,0.21647587996321072],[118,-3,76,0.21504150605457117],[118,-3,77,0.21366395101079227],[118,-3,78,0.21234370900072475],[118,-3,79,0.21108113093503222],[118,-2,64,0.240025863133136],[118,-2,65,0.23806936122580102],[118,-2,66,0.23615491134166833],[118,-2,67,0.23428425633578198],[118,-2,68,0.23245905132396927],[118,-2,69,0.23068085909628144],[118,-2,70,0.22895114546613793],[118,-2,71,0.22727127455522633],[118,-2,72,0.2256425040141511],[118,-2,73,0.22406598017887547],[118,-2,74,0.2225427331628277],[118,-2,75,0.2210736718848495],[118,-2,76,0.21965957903284772],[118,-2,77,0.2183011059632155],[118,-2,78,0.21699876753599245],[118,-2,79,0.21575293688578434],[118,-1,64,0.2442930985300632],[118,-1,65,0.2423710206645796],[118,-1,66,0.2404896636182925],[118,-1,67,0.238650775451398],[118,-1,68,0.2368560177877812],[118,-1,69,0.2351069612493315],[118,-1,70,0.23340508082596223],[118,-1,71,0.23175175118138747],[118,-1,72,0.23014824189464544],[118,-1,73,0.22859571263741507],[118,-1,74,0.22709520828699725],[118,-1,75,0.22564765397514008],[118,-1,76,0.22425385007256404],[118,-1,77,0.222914467109257],[118,-1,78,0.22163004063051261],[118,-1,79,0.22040096598872105],[118,0,64,0.24854289856202033],[118,0,65,0.24665524708449188],[118,0,66,0.24480698547594193],[118,0,67,0.24299986699905185],[118,0,68,0.24123555978288946],[118,0,69,0.23951564227810007],[118,0,70,0.23784159864780063],[118,0,71,0.2362148140942314],[118,0,72,0.2346365701211547],[118,0,73,0.2331080397320462],[118,0,74,0.23163028256395146],[118,0,75,0.23020423995718642],[118,0,76,0.22883072996073528],[118,0,77,0.22751044227342287],[118,0,78,0.2262439331208267],[118,0,79,0.22503162006794197],[118,1,64,0.25278219044086053],[118,1,65,0.2509289660612591],[118,1,66,0.2491138007769848],[118,1,67,0.2473384530515214],[118,1,68,0.2456045975172899],[118,1,69,0.24391382045171028],[118,1,70,0.24226761518897322],[118,1,71,0.24066737746756528],[118,1,72,0.23911440071354007],[118,1,73,0.23760987125958621],[118,1,74,0.23615486349975834],[118,1,75,0.23475033498004938],[118,1,76,0.2333971214246655],[118,1,77,0.2320959316980722],[118,1,78,0.2308473427027783],[118,1,79,0.22965179421287918],[118,2,64,0.2570179525863091],[118,2,65,0.25519915607410526],[118,2,66,0.25341708797300694],[118,2,67,0.25167351194618204],[118,2,68,0.24997010912821588],[118,2,69,0.24830847362204866],[118,2,70,0.24669010793161983],[118,2,71,0.24511641833026898],[118,2,72,0.24358871016488148],[118,2,73,0.24210818309583138],[118,2,74,0.2406759262725856],[118,2,75,0.23929291344515324],[118,2,76,0.2379599980112337],[118,2,77,0.23667790799913657],[118,2,78,0.23544724098644354],[118,2,79,0.23426845895442272],[118,3,64,0.2612508774521719],[118,3,65,0.2594665209001301],[118,3,66,0.2577175625364027],[118,3,67,0.2560057712143061],[118,3,68,0.2543328345607921],[118,3,69,0.252700354494268],[118,3,70,0.2511098426781247],[118,3,71,0.2495627159100206],[118,3,72,0.24806029144691366],[118,3,73,0.24660378226588486],[118,3,74,0.24519429226063139],[118,3,75,0.24383281137379698],[118,3,76,0.24252021066500795],[118,3,77,0.24125723731467763],[118,3,78,0.24004450956355305],[118,3,79,0.2388825115880172],[118,4,64,0.2654765894987761],[118,4,65,0.26372670356965455],[118,4,66,0.26201088682402607],[118,4,67,0.26033091328057534],[118,4,68,0.25868847703313796],[118,4,69,0.2570851877894241],[118,4,70,0.2555225663454535],[118,4,71,0.25400203999574694],[118,4,72,0.25252493787926605],[118,4,73,0.2510924862611461],[118,4,74,0.24970580375009932],[118,4,75,0.2483658964516563],[118,4,76,0.24707365305711482],[118,4,77,0.24582983986825557],[118,4,78,0.2446350957578044],[118,4,79,0.24348992706564865],[118,5,64,0.26969060015242363],[118,5,65,0.2679752327231389],[118,5,66,0.2662926074722764],[118,5,67,0.264644503543999],[118,5,68,0.2630326214579608],[118,5,69,0.26145857866897126],[118,5,70,0.25992390506237145],[118,5,71,0.25843003838517],[118,5,72,0.2569783196129293],[118,5,73,0.2555699882524461],[118,5,74,0.25420617758010516],[118,5,75,0.25288790981607356],[118,5,76,0.25161609123420214],[118,5,77,0.2503915072076993],[118,5,78,0.24921481719055072],[118,5,79,0.24808654963469612],[118,6,64,0.2738884448272506],[118,6,65,0.2722076594539066],[118,6,66,0.2705582920496842],[118,6,67,0.2689421268295421],[118,6,68,0.267360870682604],[118,6,69,0.2658161487528069],[118,6,70,0.26430949995526837],[118,6,71,0.26284237242841546],[118,6,72,0.26141611892186734],[118,6,73,0.26003199212011663],[118,6,74,0.25869113990188686],[118,6,75,0.2573946005353338],[118,6,76,0.2561432978089583],[118,6,77,0.2549380360982936],[118,6,78,0.25377949536834354],[118,6,79,0.25266822611178086],[118,7,64,0.27806568589373337],[118,7,65,0.27641956032011483],[118,7,66,0.2748035321111262],[118,7,67,0.27321939048337124],[118,7,68,0.2716688486241073],[118,7,69,0.2701535392929374],[118,7,70,0.2686750103592257],[118,7,71,0.2672347202752799],[118,7,72,0.2658340334852937],[118,7,73,0.26447421577009195],[118,7,74,0.2631564295275588],[118,7,75,0.2618817289889144],[118,7,76,0.26065105537070715],[118,7,77,0.25946523196258836],[118,7,78,0.25832495915084164],[118,7,79,0.25723080937767673],[118,8,64,0.28221791559315623],[118,8,65,0.28060654030221766],[118,8,66,0.2790239461970882],[118,8,67,0.2774719274127165],[118,8,68,0.2759522033484739],[118,8,69,0.27446641429095664],[118,8,70,0.2730161169725173],[118,8,71,0.2716027800655729],[118,8,72,0.2702277796126802],[118,8,73,0.26889239439241863],[118,8,74,0.2675978012209691],[118,8,75,0.2663450701895429],[118,8,76,0.26513515983753844],[118,8,77,0.26396891226148594],[118,8,78,0.2628470481597536],[118,8,79,0.26177016181302837],[118,9,64,0.28634075889814586],[118,9,65,0.2847642357060343],[118,9,66,0.2832151827780842],[118,9,67,0.2816953990704624],[118,9,68,0.2802066100942542],[118,9,69,0.27875046355944694],[118,9,70,0.27732852495465843],[118,9,71,0.27594227306264973],[118,9,72,0.2745930954116153],[118,9,73,0.27328228366229207],[118,9,74,0.2720110289307732],[118,9,75,0.27078041704718353],[118,9,76,0.2695914237500922],[118,9,77,0.2684449098167226],[118,9,78,0.26734161612893564],[118,9,79,0.26628215867499727],[118,10,64,0.2904298763193818],[118,10,65,0.28888831701152834],[118,10,66,0.2873729231443403],[118,10,67,0.28588549838457555],[118,10,68,0.28442777424055504],[118,10,69,0.28300140572741445],[118,10,70,0.2816079669681138],[118,10,71,0.2802489467302436],[118,10,72,0.2789257438986226],[118,10,73,0.27763966288372727],[118,10,74,0.27639190896583843],[118,10,75,0.27518358357506356],[118,10,76,0.2740156795071084],[118,10,77,0.27288907607485996],[118,10,78,0.2718045341957557],[118,10,79,0.2707626914149485],[118,11,64,0.2944809666582679],[118,11,65,0.29297449166708095],[118,11,66,0.2914928842405276],[118,11,67,0.29003795263214904],[118,11,68,0.28861143421925595],[118,11,69,0.2872149911895364],[118,11,70,0.28585020616343987],[118,11,71,0.28451857775237493],[118,11,72,0.2832215160527133],[118,11,73,0.2819603380756418],[118,11,74,0.2807362631127507],[118,11,75,0.2795504080375099],[118,11,76,0.2784037825425147],[118,11,77,0.2772972843125558],[118,11,78,0.2762316941334943],[118,11,79,0.2752076709369489],[118,12,64,0.2984897697056726],[118,12,65,0.2970185068293708],[118,12,66,0.29557082144565133],[118,12,67,0.29414852625817817],[118,12,68,0.292753364371544],[118,12,69,0.29138700499933273],[118,12,70,0.2900510391079777],[118,12,71,0.2887469749964521],[118,12,72,0.2874762338117885],[118,12,73,0.2862401450004632],[118,12,74,0.2850399416955392],[118,12,75,0.28387675603971607],[118,12,76,0.28275161444416813],[118,12,77,0.28166543278322914],[118,12,78,0.28061901152490043],[118,12,79,0.27961303079719063],[118,13,64,0.3024520688868419],[118,13,65,0.30101615204896015],[118,13,66,0.2996025312982037],[118,13,67,0.2982130236391679],[118,13,68,0.29684937774887044],[118,13,69,0.29551326970636943],[118,13,70,0.29420629865819975],[118,13,71,0.2929299824196681],[118,13,72,0.29168575301199934],[118,13,73,0.2904749521353703],[118,13,74,0.28929882657772954],[118,13,75,0.28815852355954386],[118,13,76,0.2870550860143597],[118,13,77,0.2859894478052339],[118,13,78,0.2849624288770107],[118,13,79,0.28397473034445647],[118,14,64,0.3063636938522641],[118,14,65,0.3049632619013689],[118,14,66,0.3035838541663541],[118,14,67,0.3022272917913507],[118,14,68,0.30089532885810655],[118,14,69,0.29958964813726346],[118,14,70,0.29831185677548444],[118,14,71,0.29706348191846665],[118,14,72,0.295845966269832],[118,14,73,0.29466066358593596],[118,14,74,0.29350883410648826],[118,14,75,0.29239163992112893],[118,14,76,0.2913101402718478],[118,14,77,0.2902652867912998],[118,14,78,0.2892579186769967],[118,14,79,0.2882887578013826],[118,15,64,0.31022052301467135],[118,15,65,0.308855718563821],[118,15,66,0.3075106768633668],[118,15,67,0.3061872230237026],[118,15,68,0.3048871163510851],[118,15,69,0.30361204612068327],[118,15,70,0.30236362728550936],[118,15,71,0.3011433961212673],[118,15,72,0.29995280580711364],[118,15,73,0.2987932219423661],[118,15,74,0.2976659179990591],[118,15,75,0.2965720707104862],[118,15,76,0.2955127553956168],[118,15,77,0.29448894121944397],[118,15,78,0.2935014863892393],[118,15,79,0.29255113328672405],[118,16,64,0.3140184860320442],[118,16,65,0.31268945433752643],[118,16,66,0.3113789352081077],[118,16,67,0.31008875753561743],[118,16,68,0.30882068565839105],[118,16,69,0.3075764151562037],[118,16,70,0.3063575685811219],[118,16,71,0.30516569112431174],[118,16,72,0.3040022462187954],[118,16,73,0.3028686110781918],[118,16,74,0.3017660721713443],[118,16,75,0.3006958206329688],[118,16,76,0.29965894761021644],[118,16,77,0.298656439545203],[118,16,78,0.297689173393482],[118,16,79,0.2967579117784737],[118,17,64,0.31775356623679213],[118,17,65,0.3164604541156787],[118,17,66,0.31518461653081864],[118,17,67,0.3139278859594229],[118,17,68,0.31269203156758196],[118,17,69,0.31147875502719674],[118,17,70,0.310289686268873],[118,17,71,0.30912637917081354],[118,17,72,0.30799030718370024],[118,17,73,0.30688285889160327],[118,17,74,0.30580533350881955],[118,17,75,0.30475893631277307],[118,17,76,0.3037447740128733],[118,17,77,0.30276385005538015],[118,17,78,0.30181705986425844],[118,17,79,0.3009051860180263],[118,18,64,0.3214218030109036],[118,18,65,0.32016475779695386],[118,18,66,0.3189237621239468],[118,18,67,0.3177006518475214],[118,18,68,0.31649720074562143],[118,18,69,0.3153151163575433],[118,18,70,0.31415603575899337],[118,18,71,0.31302152127319144],[118,18,72,0.3119130561180124],[118,18,73,0.3108320399891998],[118,18,74,0.30977978457955996],[118,18,75,0.30875750903426197],[118,18,76,0.3077663353421446],[118,18,77,0.3068072836630783],[118,18,78,0.3058812675913614],[118,18,79,0.30498908935516117],[118,19,64,0.32501929410716773],[118,19,65,0.32379846264461654],[118,19,66,0.3225924696381351],[118,19,67,0.3214031541042609],[118,19,68,0.32023229420563293],[118,19,69,0.31908160311227063],[118,19,70,0.3179527247989197],[118,19,71,0.31684722977849566],[118,19,72,0.3157666107716174],[118,19,73,0.31471227831226745],[118,19,74,0.31368555628948475],[118,19,75,0.3126876774252162],[118,19,76,0.311719778688229],[118,19,77,0.31078289664412895],[118,19,78,0.3098779627414687],[118,19,79,0.3090057985339521],[118,20,64,0.32854219791655576],[118,20,65,0.32735772559132365],[118,20,66,0.32618689542346185],[118,20,67,0.32503154936263073],[118,20,68,0.3238934697180658],[118,20,69,0.3227743750422094],[118,20,70,0.32167591595046735],[118,20,71,0.3205996708771211],[118,20,72,0.31954714176739063],[118,20,73,0.31851974970568075],[118,20,74,0.31751883047991974],[118,20,75,0.3165456300821156],[118,20,76,0.3156013001450302],[118,20,77,0.3146868933150199],[118,20,78,0.31380335856102426],[118,20,79,0.31295153641970835],[118,21,64,0.3319867356815777],[118,21,65,0.3308387654894347],[118,21,66,0.32970325681574275],[118,21,67,0.3285820543055859],[118,21,68,0.32747694416608036],[118,21,69,0.3263896500724766],[118,21,70,0.32532182901044915],[118,21,71,0.324275067054609],[118,21,72,0.32325087508323075],[118,21,73,0.3222506844292254],[118,21,74,0.32127584246727425],[118,21,75,0.3203276081372411],[118,21,76,0.31940714740377],[118,21,77,0.31851552865211213],[118,21,78,0.31765371802016573],[118,21,79,0.3168225746667357],[118,22,64,0.33534919365570875],[118,22,65,0.3342378653069301],[118,22,66,0.33313783436799105],[118,22,67,0.33205094793210366],[118,22,68,0.3309789958452531],[118,22,69,0.3299237066348832],[118,22,70,0.328886743374846],[118,22,71,0.32786969948664224],[118,22,72,0.32687409447694615],[118,22,73,0.3259013696114499],[118,22,74,0.32495288352493723],[118,22,75,0.32402990776770796],[118,22,76,0.32313362228825687],[118,22,77,0.32226511085225423],[118,22,78,0.32142535639781006],[118,22,79,0.32061523632702704],[118,23,64,0.3386259252089726],[118,23,65,0.337551374269021],[118,23,66,0.3364869740271242],[118,23,67,0.335434573768058],[118,23,68,0.3343959667076881],[118,23,69,0.333372885944358],[118,23,70,0.33236700034661776],[118,23,71,0.3313799103773204],[118,23,72,0.3304131438540819],[118,23,73,0.3294681516461336],[118,23,74,0.328546303307487],[118,23,75,0.32764888264652064],[118,23,76,0.32677708323190235],[118,23,77,0.32593200383488924],[118,23,78,0.3251146438079871],[118,23,79,0.32432589839997816],[118,24,64,0.3418133528795033],[118,24,65,0.3407757099452712],[118,24,66,0.3397470892557366],[118,24,67,0.33872934202172844],[118,24,68,0.337724264550354],[118,24,69,0.3367335942192008],[118,24,70,0.3357590053869651],[118,24,71,0.33480210524053156],[118,24,72,0.333864429578499],[118,24,73,0.3329474385311838],[118,24,74,0.3320525122170185],[118,24,75,0.3311809463354558],[118,24,76,0.33033394769629304],[118,24,77,0.32951262968545586],[118,24,78,0.32871800766722725],[118,24,79,0.3279509943229278],[118,25,64,0.3449079703711785],[118,25,65,0.34390736028232793],[118,25,66,0.34291466309903157],[118,25,67,0.3419317316840423],[118,25,68,0.3409603651477403],[118,25,69,0.34000230484526206],[118,25,70,0.3390592303101451],[118,25,71,0.3381327551245143],[118,25,72,0.33722442272580627],[118,25,73,0.33633570215005965],[118,25,74,0.3354679837116927],[118,25,75,0.3346225746198763],[118,25,76,0.3338006945314166],[118,25,77,0.3330034710401887],[118,25,78,0.332231935103106],[118,25,79,0.3314870164026297],[118,26,64,0.347906344497403],[118,26,65,0.34694288558233666],[118,26,66,0.34598625019699386],[118,26,67,0.34503829257362617],[118,26,68,0.3441008143289146],[118,26,69,0.34317556048413184],[118,26,70,0.34226421542191826],[118,26,71,0.3413683987796973],[118,26,72,0.34048966127972624],[118,26,73,0.3396294804958079],[118,26,74,0.3387892565565912],[118,26,75,0.3379703077855601],[118,26,76,0.33717386627763185],[118,26,77,0.33640107341240366],[118,26,78,0.33565297530403027],[118,26,79,0.3349305181877417],[118,27,64,0.35080511707087575],[118,27,65,0.3498789204268756],[118,27,66,0.34895847874163266],[118,27,67,0.3480456473265014],[118,27,68,0.3471422299988107],[118,27,69,0.3462499751251635],[118,27,70,0.3453705716014557],[118,27,71,0.34450564476963846],[118,27,72,0.34365675227122006],[118,27,73,0.34282537983753325],[118,27,74,0.3420129370166959],[118,27,75,0.34122075283736397],[118,27,76,0.3404500714091985],[118,27,77,0.3397020474600842],[118,27,78,0.33897774181008605],[118,27,79,0.3382781167821467],[118,28,64,0.3536010067394311],[118,28,65,0.3527121755464988],[118,28,66,0.3518280523793872],[118,28,67,0.3509504933305105],[118,28,68,0.350081304103837],[118,28,69,0.34922223608142633],[118,28,70,0.34837498232679825],[118,28,71,0.3475411735251566],[118,28,72,0.3467223738604648],[118,28,73,0.34592007682939563],[118,28,74,0.3451357009920907],[118,28,75,0.34437058565981865],[118,28,76,0.34362598651946213],[118,28,77,0.34290307119486746],[118,28,78,0.3422029147450415],[118,28,79,0.34152649509920474],[118,29,64,0.35629081076802127],[118,29,65,0.3554394396359559],[118,29,66,0.3545917520587626],[118,29,67,0.35374960460454724],[118,29,68,0.3529148045418787],[118,29,69,0.352089105929658],[118,29,70,0.3512742056439407],[118,29,71,0.3504717393417333],[118,29,72,0.349683277361758],[118,29,73,0.3489103205622134],[118,29,74,0.3481542960954608],[118,29,75,0.3474165531197311],[118,29,76,0.3466983584477769],[118,29,77,0.34600089213250695],[118,29,78,0.345325242989587],[118,29,79,0.3446724040570158],[118,30,64,0.3588714067666895],[118,30,65,0.3580575811149396],[118,30,66,0.35724643782304566],[118,30,67,0.3564398336224369],[118,30,68,0.3556395770165372],[118,30,69,0.35484742439406025],[118,30,70,0.3540650760793834],[118,30,71,0.3532941723200198],[118,30,72,0.3525362892111889],[118,30,73,0.35179293455750577],[118,30,74,0.35106554367172504],[118,30,75,0.35035547511062975],[118,30,76,0.34966400634799244],[118,30,77,0.348992329384645],[118,30,78,0.34834154629564146],[118,30,79,0.34771266471452117],[118,31,64,0.3613397543646195],[118,31,65,0.36056354983444],[118,31,66,0.3597890505481825],[118,31,67,0.359018113081548],[118,31,68,0.3582525468356911],[118,31,69,0.35749411017402427],[118,31,70,0.3567445064962354],[118,31,71,0.3560053802495394],[118,31,72,0.3552783128771605],[118,31,73,0.35456481870406537],[118,31,74,0.3538663407598901],[118,31,75,0.3531842465391401],[118,31,76,0.3525198236985999],[118,31,77,0.3518742756919841],[118,31,78,0.3512487173418154],[118,31,79,0.35064417034853695],[118,32,64,0.36369289683031514],[118,32,65,0.36295437872877034],[118,32,66,0.3622166136258782],[118,32,67,0.3614814576162006],[118,32,68,0.3607507206544428],[118,32,69,0.36002616271584575],[118,32,70,0.35930948989393574],[118,32,71,0.35860235043565014],[118,32,72,0.35790633071383327],[118,32,73,0.3572229511371268],[118,32,74,0.3565536619971944],[118,32,75,0.35589983925336105],[118,32,76,0.3552627802546045],[118,32,77,0.3546436993989281],[118,32,78,0.35404372373010334],[118,32,79,0.35346388847178906],[118,33,64,0.3659279626377817],[118,33,65,0.36522718541312615],[118,33,66,0.3645262345917851],[118,33,67,0.36382696545573134],[118,33,68,0.36313118816230955],[118,33,69,0.36244066392829366],[118,33,70,0.36175710115144916],[118,33,71,0.3610821514696207],[118,33,72,0.3604174057573416],[118,33,73,0.35976439005998323],[118,33,74,0.35912456146539273],[118,33,75,0.3584993039130907],[118,33,76,0.3578899239409722],[118,33,77,0.357297646369539],[118,33,78,0.3567236099236498],[118,33,79,0.35616886279179594],[118,34,64,0.3680421669787822],[118,34,65,0.3673791737267531],[118,34,66,0.366715106698853],[118,34,67,0.3660518200272911],[118,34,68,0.36539112371473725],[118,34,69,0.364734779842107],[118,34,70,0.364084498714014],[118,34,71,0.36344193494190324],[118,34,72,0.3628086834648626],[118,34,73,0.3621862755081332],[118,34,74,0.36157617447926377],[118,34,75,0.36097977180198365],[118,34,76,0.3603983826877355],[118,34,77,0.35983324184489573],[118,34,78,0.3592854991256721],[118,34,79,0.358756215110683],[118,35,64,0.3700328132212152],[118,35,65,0.3694076352217769],[118,35,66,0.3687805104358922],[118,35,67,0.3681532915034309],[118,35,68,0.3675277879089905],[118,35,69,0.3669057622134742],[118,35,70,0.3662889262235002],[118,35,71,0.36567893709865573],[118,35,72,0.3650773933965976],[118,35,73,0.364485831056014],[118,35,74,0.3639057193173974],[118,35,75,0.36333845658170033],[118,35,76,0.3627853662068156],[118,35,77,0.3622476922419109],[118,35,78,0.36172659509960503],[118,35,79,0.36122314716599013],[118,36,64,0.371897294313504],[118,36,65,0.3713099505975741],[118,36,66,0.37071981499123496],[118,36,67,0.3701287382943511],[118,36,68,0.36953852910429585],[118,36,69,0.3689509500713739],[118,36,70,0.3683677140922484],[118,36,71,0.3677904804413884],[118,36,72,0.3672208508405336],[118,36,73,0.3666603654661932],[118,36,74,0.36611049889513303],[118,36,75,0.36557265598791366],[118,36,76,0.3650481677104296],[118,36,77,0.3645382868934756],[118,36,78,0.36404418393032584],[118,36,79,0.3635669424123357],[118,37,64,0.37363309413505885],[118,37,65,0.3730835910807546],[118,37,66,0.37253047966155695],[118,37,67,0.371975608484887],[118,37,68,0.37142078488630914],[118,37,69,0.370867771208843],[118,37,70,0.37031828102046427],[118,37,71,0.36977397526980615],[118,37,72,0.3692364583800597],[118,37,73,0.3687072742810895],[118,37,74,0.368187902379719],[118,37,75,0.36767975346824844],[118,37,76,0.36718416557115524],[118,37,77,0.3667023997300017],[118,37,78,0.36623563572653844],[118,37,79,0.3657849677440115],[118,38,64,0.3752377887928542],[118,38,65,0.37472611975079423],[118,38,66,0.37421005520590517],[118,38,67,0.3736914412162695],[118,38,68,0.37317208347594777],[118,38,69,0.372653743618221],[118,38,70,0.3721381354572111],[118,38,71,0.3716269211678913],[118,38,72,0.37112170740448547],[118,38,73,0.37062404135727145],[118,38,74,0.3701354067477446],[118,38,75,0.36965721976220306],[118,38,76,0.36919082492370403],[118,38,77,0.368737490902418],[118,38,78,0.3682984062643685],[118,38,79,0.3678746751585633],[118,39,64,0.3767090478640208],[118,39,65,0.37623519281121476],[118,39,66,0.3757561851448266],[118,39,67,0.37527386801255735],[118,39,68,0.3747900450824829],[118,39,69,0.374306476870257],[118,39,70,0.3738248770048897],[118,39,71,0.3733469084331149],[118,39,72,0.37287417956234353],[118,39,73,0.3724082403422177],[118,39,74,0.37195057828472566],[118,39,75,0.37150261442293253],[118,39,76,0.3710656992082819],[118,39,77,0.3706411083464939],[118,39,78,0.37023003857204334],[118,39,79,0.3698336033612304],[118,40,64,0.37804463558453494],[118,40,65,0.3776085608064005],[118,40,66,0.3771666070046844],[118,40,67,0.37672061405182933],[118,40,68,0.3762723832009811],[118,40,69,0.37582367343717427],[118,40,70,0.3753761977673009],[118,40,71,0.374931619448873],[118,40,72,0.37449154815757757],[118,40,73,0.374057536093638],[118,40,74,0.37363107402694273],[118,40,75,0.3732135872809951],[118,40,76,0.37280643165564076],[118,40,77,0.37241088928859567],[118,40,78,0.37202816445576364],[118,40,79,0.37165937931034865],[118,41,64,0.3792424119839544],[118,41,65,0.3788440697839923],[118,41,66,0.3784391535071064],[118,41,67,0.37802949938207875],[118,41,68,0.3776169058540358],[118,41,69,0.37720312995963123],[118,41,70,0.3767898836412269],[118,41,71,0.3763788300000817],[118,41,72,0.3759715794885482],[118,41,73,0.3755696860412867],[118,41,74,0.3751746431454662],[118,41,75,0.3747878798499954],[118,41,76,0.37441075671374857],[118,41,77,0.37404456169280575],[118,41,78,0.37369050596669584],[118,41,79,0.3733497197036497],[118,42,64,0.38030033396625773],[118,42,65,0.3799396624029241],[118,42,66,0.3795717537036293],[118,42,67,0.3791984400818754],[118,42,68,0.37882151677785747],[118,42,69,0.37844273845764775],[118,42,70,0.3780638155516042],[118,42,71,0.37768641053200813],[118,42,72,0.37731213412993225],[118,42,73,0.3769425414913486],[118,42,74,0.3765791282724461],[118,42,75,0.3762233266742009],[118,42,76,0.37587650141616447],[118,42,77,0.3755399456494867],[118,42,78,0.37521487680916654],[118,42,79,0.37490243240553567],[118,43,64,0.38121645633671697],[118,43,65,0.380893378987026],[118,43,66,0.38056243405546175],[118,43,67,0.38022544936571767],[118,43,68,0.37988421655264026],[118,43,69,0.3795404874854139],[118,43,70,0.3791959706302019],[118,43,71,0.3788523273522458],[118,43,72,0.3785111681574278],[118,43,73,0.37817404887330297],[118,43,74,0.3778424667695724],[118,43,75,0.3775178566180398],[118,43,76,0.3772015866920161],[118,43,77,0.3768949547051911],[118,43,78,0.37659918368996337],[118,43,79,0.37631541781523253],[118,44,64,0.38198893277484564],[118,44,65,0.381703358524237],[118,44,66,0.38140931945841117],[118,44,67,0.3811086386341178],[118,44,68,0.38080310367725234],[118,44,69,0.3804944632300301],[118,44,70,0.38018442333785485],[118,44,71,0.37987464377588687],[118,44,72,0.3795667343153123],[118,44,73,0.37926225092931964],[118,44,74,0.37896269193876125],[118,44,75,0.37866949409753214],[118,44,76,0.378384028617639],[118,44,77,0.37810759713397557],[118,44,78,0.37784142760879347],[118,44,79,0.37758667017587677],[118,45,64,0.3826160167534352],[118,45,65,0.3823678396114445],[118,45,66,0.3821106342129901],[118,45,67,0.38184621846844],[118,45,68,0.3815763755882682],[118,45,69,0.3813028505541945],[118,45,70,0.38102734653027065],[118,45,71,0.38075152121391226],[118,45,72,0.3804769831268785],[118,45,73,0.38020528784620783],[118,45,74,0.37993793417508576],[118,45,75,0.37967636025367746],[118,45,76,0.3794219396098987],[118,45,77,0.3791759771501386],[118,45,78,0.378939705089929],[118,45,79,0.37871427882456155],[118,46,64,0.3830960624036359],[118,46,65,0.3828851613449008],[118,46,66,0.3826647029396524],[118,46,67,0.38243649957043924],[118,46,68,0.3822023296232886],[118,46,69,0.3819639339827857],[118,46,70,0.3817230124673541],[118,46,71,0.38148122020473724],[118,46,72,0.3812401639476862],[118,46,73,0.3810013983298555],[118,46,74,0.38076642206189126],[118,46,75,0.3805366740677359],[118,46,76,0.3803135295611295],[118,46,77,0.38009829606231926],[118,46,78,0.37989220935496826],[118,46,79,0.3796964293832721],[118,47,64,0.38342752532611246],[118,47,65,0.3832537641562497],[118,47,66,0.38306995143919365],[118,47,67,0.38287789364653224],[118,47,68,0.3826793639285839],[118,47,69,0.3824760986333753],[118,47,70,0.382269793766085],[118,47,71,0.38206210138895474],[118,47,72,0.3818546259616675],[118,47,73,0.38164892062220057],[118,47,74,0.3814464834081339],[118,47,75,0.38124875341844],[118,47,76,0.381057106915734],[118,47,77,0.38087285336899535],[118,47,78,0.38069723143675505],[118,47,79,0.38053140489075354],[118,48,64,0.3836089633482773],[118,48,65,0.38347219059416837],[118,48,66,0.38332490749831916],[118,48,67,0.38316891423681226],[118,48,68,0.38300597831106886],[118,48,69,0.38283783109067726],[118,48,70,0.3826661642969607],[118,48,71,0.38249262642728354],[118,48,72,0.38231881912009924],[118,48,73,0.3821462934607429],[118,48,74,0.38197654622795485],[118,48,75,0.3818110160811555],[118,48,76,0.3816510796884534],[118,48,77,0.38149804779539903],[118,48,78,0.38135316123447494],[118,48,79,0.3812175868753288],[118,49,64,0.3836390372275803],[118,49,65,0.3835390860515974],[118,49,66,0.383428201640354],[118,49,67,0.38330817748877255],[118,49,68,0.38318077503457504],[118,49,69,0.3830477202249042],[118,49,70,0.3829107000239648],[118,49,71,0.3827713588616851],[118,49,72,0.3826312950234002],[118,49,73,0.38249205698055955],[118,49,74,0.382355139662449],[118,49,75,0.3822219806689423],[118,49,76,0.38209395642426774],[118,49,77,0.3819723782718012],[118,49,78,0.38185848850987547],[118,49,79,0.381753456368615],[118,50,64,0.3835165113008703],[118,50,65,0.38345319943858125],[118,50,66,0.383378567821116],[118,50,67,0.38329440287576594],[118,50,68,0.3832024595604484],[118,50,69,0.3831044579540517],[118,50,70,0.38300207978809175],[118,50,71,0.3828969649196773],[118,50,72,0.38279070774578516],[118,50,73,0.38268485355884996],[118,50,74,0.38258089484365654],[118,50,75,0.38248026751555053],[118,50,76,0.38238434709995445],[118,50,77,0.38229444485319664],[118,50,78,0.3822118038246485],[118,50,79,0.38213759486017407],[118,51,64,0.3832402540798276],[118,51,65,0.38321338380071257],[118,51,66,0.38317484406994606],[118,51,67,0.3831264138601934],[118,51,68,0.3830698412324651],[118,51,69,0.3830068399501111],[118,51,70,0.38293908603442284],[118,51,71,0.38286821426184114],[118,51,72,0.3827958146027721],[118,51,73,0.38272342860201314],[118,51,74,0.38265254570078044],[118,51,75,0.3825845995003516],[118,51,76,0.38252096396730884],[118,51,77,0.38246294958039523],[118,51,78,0.38241179941897463],[118,51,79,0.38236868519310085],[118,52,64,0.3828092387924595],[118,52,65,0.38281859688317543],[118,52,66,0.3828159730758919],[118,52,67,0.3828031385014148],[118,52,68,0.3827818339060579],[118,52,69,0.3827537662891974],[118,52,70,0.3827206054827409],[118,52,71,0.38268398067250875],[118,52,72,0.38264547686152706],[118,52,73,0.3826066312752362],[118,52,74,0.3825689297086081],[118,52,75,0.3825338028151813],[118,52,76,0.38250262233800364],[118,52,77,0.3824766972824928],[118,52,78,0.38245727003120533],[118,52,79,0.3824455124005215],[118,53,64,0.3822225438706717],[118,53,65,0.3822679016404007],[118,53,66,0.38230100271905343],[118,53,67,0.3823236100083949],[118,53,68,0.3823374565218668],[118,53,69,0.3823442420456077],[118,53,70,0.3823456297417008],[118,53,71,0.3823432426936472],[118,53,72,0.3823386603940651],[118,53,73,0.38233341517461633],[118,53,74,0.38232898857815734],[118,53,75,0.3823268076731189],[118,53,76,0.38232824131010856],[118,53,77,0.38233459632074374],[118,53,78,0.382347113658706],[118,53,79,0.38236696448302665],[118,54,64,0.3814793533838965],[118,54,65,0.38156046669131144],[118,54,66,0.3816290865470766],[118,54,67,0.3816869672370672],[118,54,68,0.38173583362359664],[118,54,69,0.38177737782979526],[118,54,70,0.38181325586653897],[118,54,71,0.3818450842019244],[118,54,72,0.381874436273293],[118,54,73,0.38190283894180027],[118,54,74,0.38193176888953545],[118,54,75,0.38196264895918797],[118,54,76,0.3819968444362595],[118,54,77,0.38203565927382677],[118,54,78,0.3820803322598497],[118,54,79,0.38213203312702915],[118,55,64,0.38057895741879577],[118,55,65,0.38069556672018035],[118,55,66,0.3807994841968081],[118,55,67,0.3808924551324309],[118,55,68,0.380976195820197],[118,55,69,0.3810523902702704],[118,55,70,0.3811226868603341],[118,55,71,0.3811886949289676],[118,55,72,0.3812519813119015],[118,55,73,0.38131406682114877],[118,55,74,0.38137642266701477],[118,55,75,0.38144046682298327],[118,55,76,0.38150756033347777],[118,55,77,0.3815790035645031],[118,55,78,0.38165603239716095],[118,55,79,0.38173981436404547],[118,56,64,0.37952075240504185],[118,56,65,0.3796725828230991],[118,56,66,0.37981156176111647],[118,56,67,0.3799394251153847],[118,56,68,0.380057880192366],[118,56,69,0.38016860243943246],[118,56,70,0.3802732321188239],[118,56,71,0.3803733709248175],[118,56,72,0.3804705785441139],[118,56,73,0.3805663691594334],[118,56,74,0.38066220789633287],[118,56,75,0.38075950721323126],[118,56,76,0.3808596232346512],[118,56,77,0.3809638520276761],[118,56,78,0.3810734258216193],[118,56,79,0.3811895091709103],[118,57,64,0.37830424138714114],[118,57,65,0.3784910028000259],[118,57,66,0.3786647921008464],[118,57,67,0.37882733541426405],[118,57,68,0.3789803306433499],[118,57,69,0.3791254442233053],[118,57,70,0.3792643078187474],[118,57,71,0.37939851496455346],[118,57,72,0.37952961765026333],[118,57,73,0.3796591228480396],[118,57,74,0.3797884889841933],[118,57,75,0.3799191223542623],[118,57,76,0.3800523734816511],[118,57,77,0.3801895334198322],[118,57,78,0.38033182999810267],[118,57,79,0.3804804240109052],[118,58,64,0.3769290342423457],[118,58,65,0.3771504213924564],[118,58,66,0.37735875510194705],[118,58,67,0.37755575134112623],[118,58,68,0.37774309819407614],[118,58,69,0.3779224526352108],[118,58,70,0.37809543724975314],[118,58,71,0.37826363689812204],[118,58,72,0.37842859532423306],[118,58,73,0.3785918117077061],[118,58,74,0.37875473715999486],[118,58,75,0.3789187711644191],[118,58,76,0.3790852579601128],[118,58,77,0.3792554828698853],[118,58,78,0.37943066857199237],[118,58,79,0.3796119713158217],[118,59,64,0.37539484784464255],[118,59,65,0.3756505404667075],[118,59,66,0.3758931378777674],[118,59,67,0.37612434551276996],[118,59,68,0.376345841222611],[118,59,69,0.37655927207337536],[118,59,70,0.3767662510898595],[118,59,71,0.3769683539433625],[118,59,72,0.37716711558375193],[118,59,73,0.3773640268157975],[118,59,74,0.377560530819786],[118,59,75,0.3777580196164009],[118,59,76,0.37795783047587606],[118,59,77,0.37816124227142467],[118,59,78,0.3783694717769377],[118,59,79,0.3785836699089584],[118,60,64,0.3737015061747726],[118,60,65,0.3739911691427661],[118,60,66,0.37426773491647064],[118,60,67,0.3745328980164485],[118,60,68,0.3747883256479001],[118,60,69,0.37503565452242543],[118,60,70,0.3752764876244335],[118,60,71,0.3755123909221899],[118,60,72,0.3757448900235074],[118,60,73,0.37597546677606963],[118,60,74,0.37620555581240744],[118,60,75,0.3764365410395054],[118,60,76,0.3766697520730516],[118,60,77,0.3769064606163297],[118,60,78,0.3771478767837492],[118,60,79,0.3773951453690197],[118,61,64,0.3718489403763516],[118,61,65,0.3721722238687751],[118,61,66,0.37248244817363774],[118,61,67,0.37278129652034037],[118,61,68,0.37307042505785565],[118,61,69,0.3733514596988353],[118,61,70,0.3736259929087421],[118,61,71,0.37389558043999505],[118,61,72,0.37416173801113306],[118,61,73,0.37442593793098566],[118,61,74,0.3746896056678752],[118,61,75,0.3749541163638205],[118,61,76,0.3752207912937616],[118,61,77,0.3754908942698021],[118,61,78,0.37576562799046376],[118,61,79,0.37604613033496126],[118,62,64,0.36983718875806715],[118,62,65,0.37019372844112985],[118,62,66,0.37053728711003503],[118,62,67,0.37086953632875685],[118,62,68,0.37119212078176744],[118,62,69,0.37150665514030645],[118,62,70,0.371814720874061],[118,62,71,0.37211786300824035],[118,62,72,0.372417586826051],[118,62,73,0.37271535451656274],[118,62,74,0.37301258176798907],[118,62,75,0.3733106343063502],[118,62,76,0.3736108243795414],[118,62,77,0.3739144071868006],[118,62,78,0.3742225772535714],[118,62,79,0.37453646475176927],[118,63,64,0.3676663967418936],[118,63,65,0.36805581397012965],[118,63,66,0.3684323686744905],[118,63,67,0.36879772038202885],[118,63,68,0.36915350190698426],[118,63,69,0.36950131623902394],[118,63,70,0.36984273337728507],[118,63,71,0.3701792871102013],[118,63,72,0.37051247174112045],[118,63,73,0.3708437387597012],[118,63,74,0.3711744934591166],[118,63,75,0.37150609149902747],[118,63,76,0.3718398354143534],[118,63,77,0.3721769710698305],[118,63,78,0.3725186840603567],[118,63,79,0.372866096057129],[118,64,64,0.3653368167574286],[118,64,65,0.3657587187912843],[118,64,66,0.3661679172319778],[118,64,67,0.3665660592011721],[118,64,68,0.36695476523996173],[118,64,69,0.3673356262188849],[118,64,70,0.36771020019413314],[118,64,71,0.36808000920994344],[118,64,72,0.3684465360471787],[118,64,73,0.3688112209180817],[118,64,74,0.3691754581072364],[118,64,75,0.3695405925586945],[118,64,76,0.36990791640929455],[118,64,77,0.3702786654681689],[118,64,78,0.37065401564243194],[118,64,79,0.37103507930905855],[118,65,64,0.3628488080822637],[118,65,65,0.36330278832219076],[118,65,66,0.363744264436824],[118,65,67,0.3641748707772475],[118,65,68,0.3645962152115943],[118,65,69,0.3650098760566184],[118,65,70,0.36541739895587044],[118,65,71,0.36582029370445845],[118,65,72,0.3662200310204009],[118,65,73,0.3666180392625572],[118,65,74,0.36701570109517145],[118,65,75,0.367414350098982],[118,65,76,0.36781526732892966],[118,65,77,0.3682196778184578],[118,65,78,0.36862874703039683],[118,65,79,0.369043577254443],[118,66,64,0.36020283662846486],[118,66,65,0.3606884748650538],[118,66,66,0.3611618490511139],[118,66,67,0.3616245804054896],[118,66,68,0.3620782637269032],[118,66,69,0.3625244643468679],[118,66,70,0.36296471502961664],[118,66,71,0.3634005128190259],[118,66,72,0.36383331583254397],[118,66,73,0.36426454000210584],[118,66,74,0.36469555576207335],[118,66,75,0.3651276846841506],[118,66,76,0.3655621960593113],[118,66,77,0.36600030342672574],[118,66,78,0.3664431610496842],[118,66,79,0.36689186033852716],[118,67,64,0.3573994746750483],[118,67,65,0.3579163373547405],[118,67,66,0.3584212167081822],[118,67,67,0.35891572046409337],[118,67,68,0.3594014299589736],[118,67,69,0.35987989711112944],[118,67,70,0.3603526413421337],[118,67,71,0.3608211464456998],[118,67,72,0.3612868574039759],[118,67,73,0.36175117715124416],[118,67,74,0.3622154632850616],[118,67,75,0.3626810247247968],[118,67,76,0.363149118317592],[118,67,77,0.36362094539174394],[118,67,78,0.3640976482575006],[118,67,79,0.3645803066552791],[118,68,64,0.3544394005465888],[118,68,65,0.354987041052498],[118,68,66,0.3555230196213216],[118,68,67,0.356048930137788],[118,68,68,0.3565663400872667],[118,68,69,0.35707678755067085],[118,68,70,0.35758177814722014],[118,68,71,0.3580827819250402],[118,68,72,0.35858123019960664],[118,68,73,0.3590785123400175],[118,68,74,0.35957597250313417],[118,68,75,0.36007490631553796],[118,68,76,0.36057655750333933],[118,68,77,0.36108211446982896],[118,68,78,0.36159270682096833],[118,68,79,0.3621094018387261],[118,69,64,0.35132339823790154],[118,69,65,0.3519013571852829],[118,69,66,0.35246801623765506],[118,69,67,0.35302495508614673],[118,69,68,0.3535737269802552],[118,69,69,0.3541158557433819],[118,69,70,0.35465283273665893],[118,69,71,0.3551861137710408],[118,69,72,0.3557171159676744],[118,69,73,0.3562472145665242],[118,69,74,0.3567777396833008],[118,69,75,0.35730997301463063],[118,69,76,0.35784514449151267],[118,69,77,0.3583844288810464],[118,69,78,0.35892894233642825],[118,69,79,0.35947973889522683],[118,70,64,0.34805235698471565],[118,70,65,0.348660162530617],[118,70,66,0.34925707083709],[118,70,67,0.3498446470565484],[118,70,68,0.35042442982230254],[118,70,69,0.3509979282844746],[118,70,70,0.35156661909464004],[118,70,71,0.35213194333917397],[118,70,72,0.35269530342130995],[118,70,73,0.3532580598918917],[118,70,74,0.3538215282288648],[118,70,75,0.35438697556544757],[118,70,76,0.3549556173670235],[118,70,77,0.35552861405674263],[118,70,78,0.3561070675898292],[118,70,79,0.35669201797660377],[118,71,64,0.3446272707804889],[118,71,65,0.3452644389471196],[118,71,66,0.3458911530764994],[118,71,67,0.3465089634419383],[118,71,68,0.3471193936849282],[118,71,69,0.3477239378711747],[118,71,70,0.3483240574958],[118,71,71,0.348921178437693],[118,71,72,0.3495166878630156],[118,71,73,0.35011193107784233],[118,71,74,0.35070820832998656],[118,71,75,0.35130677155994555],[118,71,76,0.35190882110101135],[118,71,77,0.3525155023285337],[118,71,78,0.3531279022583317],[118,71,79,0.35374704609426233],[118,72,64,0.3410492378392993],[118,72,65,0.3417152728506505],[118,72,66,0.342371337479068],[118,72,67,0.34301896678332483],[118,72,68,0.34365966904239764],[118,72,69,0.3442949228313464],[118,72,70,0.3449261740468155],[118,72,71,0.3455548328821307],[118,72,72,0.34618227075199853],[118,72,73,0.3468098171667925],[118,72,74,0.3474387565564714],[118,72,75,0.348070325044066],[118,72,76,0.3487057071687807],[118,72,77,0.3493460325586969],[118,72,78,0.3499923725530716],[118,72,79,0.35064573677424504],[118,73,64,0.337319460004714],[118,73,65,0.33801385463596806],[118,73,66,0.3386988028687076],[118,73,67,0.33937582421691564],[118,73,68,0.3400464112315413],[118,73,69,0.34071202659595223],[118,73,70,0.3413741001714611],[118,73,71,0.34203402599290234],[118,73,72,0.34269315921427035],[118,73,73,0.3433528130043922],[118,73,74,0.34401425539269315],[118,73,75,0.3446787060649825],[118,73,76,0.34534733310931],[118,73,77,0.34602124971187664],[118,73,78,0.34670151080299894],[118,73,79,0.3473891096531336],[118,74,64,0.333439242104813],[118,74,65,0.33416147804407503],[118,74,66,0.3348748317497122],[118,74,67,0.33558080686606506],[118,74,68,0.33628087985597466],[118,74,69,0.3369764971155199],[118,74,70,0.3376690720392921],[118,74,71,0.3383599820361796],[118,74,72,0.33905056549567325],[118,74,73,0.3397421187046664],[118,74,74,0.3404358927148112],[118,74,75,0.3411330901603513],[118,74,76,0.34183486202648816],[118,74,77,0.3425423043682614],[118,74,78,0.3432564549799426],[118,74,79,0.34397829001495106],[118,75,64,0.32940999125328824],[118,75,65,0.33015953947517584],[118,75,66,0.3309008096315775],[118,75,67,0.3316352891779582],[118,75,68,0.3323644381346411],[118,75,69,0.33308968622053836],[118,75,70,0.33381242993788685],[118,75,71,0.3345340296079591],[118,75,72,0.33525580635776087],[118,75,73,0.3359790390576892],[118,75,74,0.33670496121021287],[118,75,75,0.3374347577894944],[118,75,76,0.3381695620320119],[118,75,77,0.3389104521781612],[118,75,78,0.3396584481648361],[118,75,79,0.34041450826899766],[118,76,64,0.3252332160965091],[118,76,65,0.326009537247136],[118,76,66,0.32677822429887726],[118,76,67,0.3275407482049214],[118,76,68,0.3282985521945734],[118,76,69,0.3290530489256806],[118,76,70,0.32980561758853566],[118,76,71,0.33055760096122444],[118,76,72,0.33131030241643333],[118,76,73,0.33206498287968644],[118,76,74,0.3328228577390784],[118,76,75,0.33358509370641776],[118,76,76,0.3343528056298432],[118,76,77,0.3351270532578895],[118,76,78,0.33590883795500404],[118,76,79,0.3366990993685233],[118,77,64,0.32091052600675424],[118,77,65,0.32171307079964273],[118,77,66,0.3225086650263929],[118,77,67,0.32329876283055714],[118,77,68,0.3240847903080659],[118,77,69,0.32486814267804276],[118,77,70,0.3256501814055722],[118,77,71,0.32643223127639037],[118,77,72,0.32721557742351026],[118,77,73,0.328001462305753],[118,77,74,0.32879108263825196],[118,77,75,0.32958558627484374],[118,77,76,0.3303860690424065],[118,77,77,0.33119357152712625],[118,77,78,0.33200907581268957],[118,77,79,0.3328335021704121],[118,78,64,0.3164436302215186],[118,78,65,0.31727183984397533],[118,78,66,0.31809382173940565],[118,78,67,0.3189110129406133],[118,78,68,0.3197248220741717],[118,78,69,0.32053662654931375],[118,78,70,0.3213477696992589],[118,78,71,0.3221595578749421],[118,78,72,0.3229732574911596],[118,78,73,0.3237900920251011],[118,78,74,0.3246112389673382],[118,78,75,0.32543782672517785],[118,78,76,0.3262709314784463],[118,78,77,0.32711157398768304],[118,78,78,0.3279607163547401],[118,78,79,0.3288192587357998],[118,79,64,0.3118343369287763],[118,79,65,0.3126876434582672],[118,79,66,0.3135354841190352],[118,79,67,0.31437927853847064],[118,79,68,0.31522041754440544],[118,79,69,0.3160602603717597],[118,79,70,0.3169001318221118],[118,79,71,0.31774131937615663],[118,79,72,0.31858507025906724],[118,79,73,0.31943258845872746],[118,79,74,0.3202850316969088],[118,79,75,0.3211435083532964],[118,79,76,0.3220090743424334],[118,79,77,0.32288272994356015],[118,79,78,0.323765416583344],[118,79,79,0.32465801357151736],[118,80,64,0.30708455229841947],[118,80,65,0.30796237912848035],[118,80,66,0.3088355406528424],[118,80,67,0.3097054388054632],[118,80,68,0.31057344629286954],[118,80,69,0.3114409038182362],[118,80,70,0.3123091172588769],[118,80,71,0.3131793547971171],[118,80,72,0.31405284400455846],[118,80,73,0.3149307688797055],[118,80,74,0.315814266839028],[118,80,75,0.3167044256613625],[118,80,76,0.317602280385723],[118,80,77,0.31850881016249577],[118,80,78,0.31942493505801905],[118,80,79,0.3203515128125573],[118,81,64,0.30219627945977384],[118,81,65,0.30309804173498867],[118,81,66,0.3039959776305946],[118,81,67,0.3048914711059343],[118,81,68,0.30578587643070376],[118,81,69,0.30668051542613073],[118,81,70,0.3075766746600611],[118,81,71,0.3084756025959223],[118,81,72,0.30937850669557254],[118,81,73,0.31028655047600806],[118,81,74,0.31120085052000157],[118,81,75,0.3121224734405742],[118,81,76,0.31305243279937134],[118,81,77,0.3139916859789189],[118,81,78,0.3149411310087586],[118,81,79,0.3159016033454729],[118,82,64,0.29717161742505804],[118,82,65,0.29809672248464364],[118,82,66,0.2990188780850669],[118,82,67,0.29993944993689925],[118,82,68,0.3008597735647305],[118,82,69,0.3017811515651091],[118,82,70,0.30270485081889187],[118,82,71,0.3036320996579678],[118,82,72,0.3045640849863695],[118,82,73,0.3055019493557388],[118,82,74,0.3064467879952272],[118,82,75,0.30739964579572404],[118,82,76,0.3083615142484921],[118,82,77,0.30933332833818106],[118,82,78,0.3103159633902187],[118,82,79,0.311310231872593],[118,83,64,0.29201275995903087],[118,83,65,0.29296060778856114],[118,83,66,0.2939064206781173],[118,83,67,0.2948515458225528],[118,83,68,0.29579729970053414],[118,83,69,0.29674496534890077],[118,83,70,0.29769578959193854],[118,83,71,0.29865098022552994],[118,83,72,0.299611703156197],[118,83,73,0.3005790794949994],[118,83,74,0.3015541826063725],[118,83,75,0.3025380351117963],[118,83,76,0.3035316058483741],[118,83,77,0.3045358067822931],[118,83,78,0.30555148987716657],[118,83,79,0.30657944391726943],[118,84,64,0.2867219943947142],[118,84,65,0.28769197808551983],[118,84,66,0.288660878531926],[118,84,67,0.28963002415351113],[118,84,68,0.2906007120898638],[118,84,69,0.29157420549101465],[118,84,70,0.29255173076328933],[118,84,71,0.2935344747705465],[118,84,72,0.294523581990814],[118,84,73,0.2955201516282875],[118,84,74,0.2965252346807786],[118,84,75,0.2975398309624984],[118,84,76,0.29856488608225895],[118,84,77,0.299601288377064],[118,84,78,0.30064986580108877],[118,84,79,0.30171138277005966],[118,85,64,0.28130170039504987],[118,85,65,0.282293206610828],[118,85,66,0.2832846180052583],[118,85,67,0.28427724397065024],[118,85,68,0.2852723620222211],[118,85,69,0.2862712151042465],[118,85,70,0.28727500885214496],[118,85,71,0.28828490881045676],[118,85,72,0.2893020376067317],[118,85,73,0.29032747208129145],[118,85,74,0.29136224037295205],[118,85,75,0.29240731896059113],[118,85,76,0.29346362966064543],[118,85,77,0.29453203658050875],[118,85,78,0.29561334302782766],[118,85,79,0.2967082883757104],[118,86,64,0.27575434866075466],[118,86,65,0.27676675811092505],[118,86,66,0.2777800974150133],[118,86,67,0.2787956566937998],[118,86,68,0.27981469356089217],[118,86,69,0.2808384304442383],[118,86,70,0.28186805186408653],[118,86,71,0.28290470166735565],[118,86,72,0.28394948021842853],[118,86,73,0.2850034415463328],[118,86,74,0.28606759044839736],[118,86,75,0.2871428795502683],[118,86,76,0.2882302063223686],[118,86,77,0.28933041005277205],[118,86,78,0.2904442687764905],[118,86,79,0.29157249616118885],[118,87,64,0.2700824995842499],[118,87,65,0.2711151875035925],[118,87,66,0.272149865702936],[118,87,67,0.27318780479517124],[118,87,68,0.2742302422233035],[118,87,69,0.27527837959696555],[118,87,70,0.276333379985896],[118,87,71,0.2773963651703447],[118,87,72,0.27846841284841994],[118,87,73,0.27955055380033866],[118,87,74,0.2806437690096727],[118,87,75,0.2817489867414698],[118,87,76,0.28286707957733626],[118,87,77,0.2839988614074524],[118,87,78,0.2851450843795186],[118,87,79,0.2863064358046453],[118,88,64,0.2642888018495171],[118,88,65,0.2653411384836246],[118,88,66,0.2663965610473429],[118,88,67,0.26745632041737244],[118,88,68,0.2685216336055527],[118,88,69,0.2695936811100089],[118,88,70,0.2706736042237866],[118,88,71,0.2717625023009321],[118,88,72,0.27286142998003626],[118,88,73,0.27397139436520146],[118,88,74,0.27509335216452635],[118,88,75,0.2762282067859839],[118,88,76,0.277376805390784],[118,88,77,0.2785399359041879],[118,88,78,0.27971832398377416],[118,88,79,0.28091262994516997],[118,89,64,0.25837599097817715],[118,89,65,0.2594473420742597],[118,89,66,0.2605229094201607],[118,89,67,0.26160392393630444],[118,89,68,0.2626915819514098],[118,89,69,0.2637870425679012],[118,89,70,0.26489142498533125],[118,89,71,0.26600580578177335],[118,89,72,0.26713121615320073],[118,89,73,0.26826863911081184],[118,89,74,0.2694190066363976],[118,89,75,0.27058319679562515],[118,89,76,0.2717620308093296],[118,89,77,0.2729562700827808],[118,89,78,0.2741666131929258],[118,89,79,0.27539369283362003],[118,90,64,0.25234688782154235],[118,90,65,0.25343661512411986],[118,90,66,0.2545317230890265],[118,90,67,0.2556334224686917],[118,90,68,0.2567428886655425],[118,90,69,0.2578612591113053],[118,90,70,0.25898963060484653],[118,90,71,0.26012905660850966],[118,90,72,0.2612805445029637],[118,90,73,0.26244505280052455],[118,90,74,0.26362348831704513],[118,90,75,0.2648167033022477],[118,90,76,0.2660254925285893],[118,90,77,0.2672505903386291],[118,90,78,0.26849266765089885],[118,90,79,0.2697523289242856],[118,91,64,0.24620439699883923],[118,91,65,0.24731185874985426],[118,91,66,0.24842589906464535],[118,91,67,0.24954770832444087],[118,91,68,0.2506784407711567],[118,91,69,0.2518192119002139],[118,91,70,0.25297109581242294],[118,91,71,0.2541351225248929],[118,91,72,0.25531227524098155],[118,91,73,0.25650348757924535],[118,91,74,0.2577096407614888],[118,91,75,0.2589315607597825],[118,91,76,0.2601700154025435],[118,91,77,0.2614257114396479],[118,91,78,0.2626992915665717],[118,91,79,0.2639913314075758],[118,92,64,0.23995150528132708],[118,92,65,0.24107605672421514],[118,92,66,0.24220841749313402],[118,92,67,0.24334975740355644],[118,92,68,0.24450120931178498],[118,92,69,0.2456638665209046],[118,92,70,0.24683878014633406],[118,92,71,0.24802695644093245],[118,92,72,0.24922935407967808],[118,92,73,0.25044688140387694],[118,92,74,0.2516803936250027],[118,92,75,0.2529306899880347],[118,92,76,0.25419851089439083],[118,92,77,0.2554845349844216],[118,92,78,0.25678937617946396],[118,92,79,0.2581135806834707],[118,93,64,0.23359127992263704],[118,93,65,0.23473227380989067],[118,93,66,0.23588233999367308],[118,93,67,0.23704262753793653],[118,93,68,0.2382142476975425],[118,93,69,0.23939827133696795],[118,93,70,0.24059572630914375],[118,93,71,0.24180759479438088],[118,93,72,0.24303481059940224],[118,93,73,0.24427825641643544],[118,93,74,0.2455387610424722],[118,93,75,0.24681709655855621],[118,93,76,0.24811397546920042],[118,93,77,0.24943004780189704],[118,93,78,0.2507658981667211],[118,93,79,0.2521220427760422],[118,94,64,0.22712686693518533],[118,94,65,0.22828365403894446],[118,94,66,0.22945080794132092],[118,94,67,0.23062945677790064],[118,94,68,0.23182068999570427],[118,94,69,0.23302555578426365],[118,94,70,0.23424505846736457],[118,94,71,0.23548015585541254],[118,94,72,0.2367317565584378],[118,94,73,0.23800071725969646],[118,94,74,0.2392878399499732],[118,94,75,0.24059386912244735],[118,94,76,0.2419194889282203],[118,94,77,0.24326532029247433],[118,94,78,0.24463191799125655],[118,94,79,0.2460197676889067],[118,95,64,0.22056148931249142],[118,95,65,0.22173341893769644],[118,95,66,0.22291704069482152],[118,95,67,0.2241134616232832],[118,95,68,0.22532374916543768],[118,95,69,0.22654892860963938],[118,95,70,0.22778998049450438],[118,95,71,0.22904783797433198],[118,95,72,0.23032338414570228],[118,95,73,0.23161744933520556],[118,95,74,0.2329308083484103],[118,95,75,0.2342641776799288],[118,95,76,0.23561821268468358],[118,95,77,0.23699350471033825],[118,95,78,0.23839057819089104],[118,95,79,0.23980988770144906],[118,96,64,0.21389844519772333],[118,96,65,0.2150848656973678],[118,96,66,0.21628433376972833],[118,96,67,0.2174979351994143],[118,96,68,0.21872671523701023],[118,96,69,0.21997167605373064],[118,96,70,0.22123377415781664],[118,96,71,0.22251391777262813],[118,96,72,0.22381296417645075],[118,96,73,0.22513171700397022],[118,96,74,0.22647092350952525],[118,96,75,0.22783127179199386],[118,96,76,0.22921338798141905],[118,96,77,0.23061783338733532],[118,96,78,0.23204510160879716],[118,96,79,0.2334956156061248],[118,97,64,0.20714110599831795],[118,97,65,0.20834136529033367],[118,97,66,0.20955605695669138],[118,97,67,0.21078624537783322],[118,97,68,0.21203295343531944],[118,97,69,0.21329715997768967],[118,97,70,0.2145797972486048],[118,97,71,0.21588174827722345],[118,97,72,0.21720384423083194],[118,97,73,0.21854686172967885],[118,97,74,0.21991152012412984],[118,97,75,0.22129847873399283],[118,97,76,0.22270833405011986],[118,97,77,0.22414161689825185],[118,97,78,0.2255987895651017],[118,97,79,0.22708024288669387],[118,98,64,0.2002929144464983],[118,98,65,0.2015063605318085],[118,98,66,0.2027356523847285],[118,98,67,0.20398183284155977],[118,98,68,0.20524590224756956],[118,98,69,0.20652881593366762],[118,98,70,0.20783148165590437],[118,98,71,0.20915475699774305],[118,98,72,0.21049944673512483],[118,98,73,0.21186630016427782],[118,98,74,0.21325600839238823],[118,98,75,0.21466920159097747],[118,98,76,0.21610644621210023],[118,98,77,0.21756824216732235],[118,98,78,0.21905501996947674],[118,98,79,0.22056713783721715],[118,99,64,0.19335738260602572],[118,99,65,0.19458336408730306],[118,99,66,0.19582663252982194],[118,99,67,0.19708820909525993],[118,99,68,0.1983690714354311],[118,99,69,0.19967015117938636],[118,99,70,0.2009923313838783],[118,99,71,0.20233644394713818],[118,99,72,0.20370326698598806],[118,99,73,0.20509352217623678],[118,99,74,0.2065078720564777],[118,99,75,0.20794691729513404],[118,99,76,0.20941119392086505],[118,99,77,0.2109011705162923],[118,99,78,0.21241724537504403],[118,99,79,0.21395974362213976],[118,100,64,0.18633808982502686],[118,100,65,0.18757595642569075],[118,100,66,0.18883257816867688],[118,100,67,0.1901089544201453],[118,100,68,0.19140603999152306],[118,100,69,0.1927247426366397],[118,100,70,0.19406592051276556],[118,100,71,0.19543037960550458],[118,100,72,0.19681887111756297],[118,100,73,0.1982320888213422],[118,100,74,0.19967066637547448],[118,100,75,0.20113517460514957],[118,100,76,0.2026261187463385],[118,100,77,0.20414393565388173],[118,100,78,0.20568899097343707],[118,100,79,0.2072615762773054],[118,101,64,0.17923868063470988],[118,101,65,0.18048778371769636],[118,101,66,0.18175713627745793],[118,101,67,0.18304771577342133],[118,101,68,0.18436045404003393],[118,101,69,0.18569623479353925],[118,101,70,0.18705589110319976],[118,101,71,0.18844020282691326],[118,101,72,0.18984989401124774],[118,101,73,0.19128563025583967],[118,101,74,0.19274801604228042],[118,101,75,0.19423759202732954],[118,101,76,0.19575483230057056],[118,101,77,0.19730014160647147],[118,101,78,0.19887385253084422],[118,101,79,0.20047622265172632],[118,102,64,0.17206286259432407],[118,102,65,0.17332255568016702],[118,102,66,0.17460401787585722],[118,102,67,0.17590820463263956],[118,102,68,0.17723602468183353],[118,102,69,0.1785883375508589],[118,102,70,0.17996595104424956],[118,102,71,0.18136961868960377],[118,102,72,0.1828000371484924],[118,102,73,0.18425784359227393],[118,102,74,0.18574361304293685],[118,102,75,0.18725785567881198],[118,102,76,0.18880101410526778],[118,102,77,0.19037346059035193],[118,102,78,0.1919754942653732],[118,102,79,0.19360733829044685],[118,103,64,0.16481440408219233],[118,103,65,0.16608404336594895],[118,103,66,0.1673769958163246],[118,103,67,0.16869419478478048],[118,103,68,0.17003652578390643],[118,103,69,0.17140482401230583],[118,103,70,0.1727998718450101],[118,103,71,0.17422239628937003],[118,103,72,0.17567306640644775],[118,103,73,0.17715249069785488],[118,103,74,0.17866121445816152],[118,103,75,0.18019971709271387],[118,103,76,0.1817684094009785],[118,103,77,0.18336763082537172],[118,103,78,0.18499764666557217],[118,103,79,0.18665864525833847],[118,104,64,0.15749713203262805],[118,104,65,0.15877607689918422],[118,104,66,0.1600799025182698],[118,104,67,0.16140952005988196],[118,104,68,0.16276579171291866],[118,104,69,0.1641495282185338],[118,104,70,0.16556148636956064],[118,104,71,0.16700236647595507],[118,104,72,0.16847280979627866],[118,104,73,0.16997339593516864],[118,104,74,0.1715046402069214],[118,104,75,0.1730669909650242],[118,104,76,0.17466082689775364],[118,104,77,0.17628645428980194],[118,104,78,0.1779441042499263],[118,104,79,0.17963392990464383],[118,105,64,0.1501149296191014],[118,105,65,0.15140254315639112],[118,105,66,0.1527166276476023],[118,105,67,0.15405807200957522],[118,105,68,0.15542771501328134],[118,105,69,0.15682634282525704],[118,105,70,0.15825468651564772],[118,105,71,0.15971341953281215],[118,105,72,0.16120315514450484],[118,105,73,0.1627244438455887],[118,105,74,0.16427777073239935],[118,105,75,0.16586355284359838],[118,105,76,0.16748213646763438],[118,105,77,0.16913379441677157],[118,105,78,0.17081872326768127],[118,105,79,0.17253704056862074],[118,106,64,0.14267173388347676],[118,106,65,0.14396738339315474],[118,106,66,0.145291115741432],[118,106,67,0.14664379753035278],[118,106,68,0.14802624402953451],[118,106,69,0.1494392167252936],[118,106,70,0.15088342083692147],[118,106,71,0.1523595028000596],[118,106,72,0.15386804771719398],[118,106,73,0.15540957677521672],[118,106,74,0.15698454463018113],[118,106,75,0.15859333675908438],[118,106,76,0.16023626677879682],[118,106,77,0.1619135737320993],[118,106,78,0.1636254193408233],[118,106,79,0.16537188522611657],[118,107,64,0.1351715333111307],[118,107,65,0.13647459081622865],[118,107,66,0.137807363777738],[118,107,67,0.13917069643137603],[118,107,68,0.1405653804728605],[118,107,69,0.14199215261434317],[118,107,70,0.14345169210852948],[118,107,71,0.1449446182404377],[118,107,72,0.14647148778681546],[118,107,73,0.14803279244316037],[118,107,74,0.1496289562184761],[118,107,75,0.1512603327975911],[118,107,76,0.15292720287116457],[118,107,77,0.15462977143333817],[118,107,78,0.15636816504702916],[118,107,79,0.15814242907688747],[118,108,64,0.12761836535232446],[118,108,65,0.12892820810142797],[118,108,66,0.13026941869037956],[118,108,67,0.13164281894719543],[118,108,68,0.13304917693209867],[118,108,69,0.13448920450087332],[118,108,70,0.13596355483644573],[118,108,71,0.1374728199486392],[118,108,72,0.13901752814212565],[118,108,73,0.1405981414525176],[118,108,74,0.1422150530507338],[118,108,75,0.14386858461546326],[118,108,76,0.14555898367385595],[118,108,77,0.14728642091039523],[118,108,78,0.1490509874439488],[118,108,79,0.15085269207302193],[118,109,64,0.12001631388964756],[118,109,65,0.12133232485713069],[118,109,66,0.12268137482926827],[118,109,67,0.12406426319520397],[118,109,68,0.12548173432908044],[118,109,69,0.12693447515993328],[118,109,70,0.12842311271034884],[118,109,71,0.1299482116038322],[118,109,72,0.13151027154090672],[118,109,73,0.1331097247438912],[118,109,74,0.13474693337048466],[118,109,75,0.136422186895988],[118,109,76,0.1381356994642865],[118,109,77,0.13988760720754906],[118,109,78,0.1416779655346448],[118,109,79,0.14350674638829608],[118,110,64,0.11236950665133599],[118,110,65,0.11369107503318693],[118,110,66,0.11504737136550236],[118,110,67,0.1164391725776226],[118,110,68,0.11786719931808864],[118,110,69,0.11933211353069717],[118,110,70,0.12083451599985584],[118,110,71,0.12237494386518044],[118,110,72,0.12395386810536035],[118,110,73,0.12557169099123316],[118,110,74,0.12722874350820484],[118,110,75,0.1289252827478377],[118,110,76,0.1306614892687339],[118,110,77,0.13243746442667265],[118,110,78,0.134253227673996],[118,110,79,0.13610871382826606],[118,111,64,0.10468211257085108],[118,111,65,0.1060086342756234],[118,111,66,0.10737158964184984],[118,111,67,0.10877173312840716],[118,111,68,0.11020976162982382],[118,111,69,0.11168631205812268],[118,111,70,0.11320195889449369],[118,111,71,0.1147572117107421],[118,111,72,0.11635251266053753],[118,111,73,0.11798823394040397],[118,111,74,0.11966467522058755],[118,111,75,0.12138206104562588],[118,111,76,0.12314053820474458],[118,111,77,0.1249401730720392],[118,111,78,0.12678094891643843],[118,111,79,0.12866276318147335],[118,112,64,0.09695833909252843],[118,112,65,0.09828921722695472],[118,112,66,0.09965825046839072],[118,112,67,0.101066170804883],[118,112,68,0.10251365135968954],[118,112,69,0.10400130397853352],[118,112,70,0.10552967678722025],[118,112,71,0.10709925171956053],[118,112,72,0.1087104420156223],[118,112,73,0.11036358969025672],[118,112,74,0.11205896297203122],[118,112,75,0.11379675371239323],[118,112,76,0.11557707476519313],[118,112,77,0.11739995733652242],[118,112,78,0.11926534830486418],[118,112,79,0.12117310751157817],[118,113,64,0.08920242942309775],[118,113,65,0.09053707477190148],[118,113,66,0.09191161136311815],[118,113,67,0.0933267487239135],[118,113,68,0.09478313620019918],[118,113,69,0.09628136054893088],[118,113,70,0.09782194350129858],[118,113,71,0.0994053392967485],[118,113,72,0.10103193218786566],[118,113,73,0.10270203391605359],[118,113,74,0.10441588115815487],[118,113,75,0.10617363294382592],[118,113,76,0.10797536804380153],[118,113,77,0.10982108232900173],[118,113,78,0.11171068610047868],[118,113,79,0.11364400139022823],[118,114,64,0.0814186597294897],[118,114,65,0.08275649122892753],[118,114,66,0.08413596373791549],[118,114,67,0.08555776434301149],[118,114,68,0.08702251861791471],[118,114,69,0.08853078822044425],[118,114,70,0.09008306846093234],[118,114,71,0.09167978584197783],[118,114,72,0.09332129556958307],[118,114,73,0.09500787903561703],[118,114,74,0.09673974127174012],[118,114,75,0.09851700837461463],[118,114,76,0.10033972490252552],[118,114,77,0.10220785124337162],[118,114,78,0.10412126095402258],[118,114,79,0.10607973807106474],[118,115,64,0.07361133628257877],[118,115,65,0.07495178148725157],[118,115,66,0.07633563002955696],[118,115,67,0.07776354658604745],[118,115,68,0.07923613297457238],[118,115,69,0.08075392575557377],[118,115,70,0.08231739380532083],[118,115,71,0.08392693586102645],[118,115,72,0.0855828780378719],[118,115,73,0.0872854713178775],[118,115,74,0.08903488901076279],[118,115,75,0.09083122418660955],[118,115,76,0.09267448708046194],[118,115,77,0.09456460246882042],[118,115,78,0.09650140701802046],[118,115,79,0.09848464660452755],[118,116,64,0.06578479254712821],[118,116,65,0.067127288089595],[118,116,66,0.06851496077599989],[118,116,67,0.06994845291382079],[118,116,68,0.07142834259265807],[118,116,69,0.07295514128949054],[118,116,70,0.07452929144639203],[118,116,71,0.07615116402064914],[118,116,72,0.07782105600730643],[118,116,73,0.07953918793407899],[118,116,74,0.08130570132877368],[118,116,75,0.08312065615903425],[118,116,76,0.08498402824454193],[118,116,77,0.0868957066416311],[118,116,78,0.0888554910003096],[118,116,79,0.09086308889371592],[118,117,64,0.05794338621757805],[118,117,65,0.05928737826030778],[118,117,66,0.06067833163760805],[118,117,67,0.06211686633913255],[118,117,68,0.0636035367650748],[118,117,69,0.06513882933503506],[118,117,70,0.06672316006986168],[118,117,71,0.06835687214641245],[118,117,72,0.07004023342526039],[118,117,73,0.07177343395128194],[118,117,74,0.07355658342727311],[118,117,75,0.07538970866040562],[118,117,76,0.07727275098165437],[118,117,77,0.07920556363815862],[118,117,78,0.08118790915850388],[118,117,79,0.08321945669095726],[118,118,64,0.05009149620010622],[118,118,65,0.05143644087930188],[118,118,66,0.05283014036373568],[118,118,67,0.05427319238678896],[118,118,68,0.05576612770933026],[118,118,69,0.057309407731842066],[118,118,70,0.05890342208003979],[118,118,71,0.06054848616392139],[118,118,72,0.062244838710277084],[118,118,73,0.06399263926859389],[118,118,74,0.06579196569050283],[118,118,75,0.06764281158257757],[118,118,76,0.06954508373262186],[118,118,77,0.07149859950940074],[118,118,78,0.07350308423580804],[118,118,79,0.07555816853549974],[118,119,64,0.042233519540752495],[118,119,65,0.04357888340158533],[118,119,66,0.04497480370446355],[118,119,67,0.04642185599833065],[118,119,68,0.04792054746603647],[118,119,69,0.049471314539384914],[118,119,70,0.051074520488183006],[118,119,71,0.052730452983231646],[118,119,72,0.05443932163328602],[118,119,73,0.056201255495921476],[118,119,74,0.05801630056245166],[118,119,75,0.05988441721670956],[118,119,76,0.06180547766782524],[118,119,77,0.06377926335695888],[118,119,78,0.0658054623379809],[118,119,79,0.06788366663212764],[118,120,64,0.03437386829941291],[118,120,65,0.035719128722199955],[118,120,66,0.03711675426729549],[118,120,67,0.03856729838129064],[118,120,68,0.0400712447415304],[118,120,69,0.04162900487374632],[118,120,70,0.043240915744196584],[118,120,71,0.044907237326253735],[118,120,72,0.04662815014146898],[118,120,73,0.04840375277504744],[118,120,74,0.05023405936588421],[118,120,75,0.052118997070967454],[118,120,76,0.054058403504286257],[118,120,77,0.05605202415019944],[118,120,78,0.05809950975125833],[118,120,79,0.0602004136705106],[118,121,64,0.02651696637010381],[118,121,65,0.027861611986962742],[118,121,66,0.0292604373192088],[118,121,67,0.03071397380337937],[118,121,68,0.03222268169500753],[118,121,69,0.033786947688509816],[118,121,70,0.03540708251208169],[118,121,71,0.03708331849754454],[118,121,72,0.03881580712517252],[118,121,73,0.040604616543430616],[118,121,74,0.04244972906377875],[118,121,75,0.044351038630343564],[118,121,76,0.04630834826459834],[118,121,77,0.048321367485006816],[118,121,78,0.05038970970162243],[118,121,79,0.05251288958567224],[118,122,64,0.018667246247290548],[118,122,65,0.020010777348811126],[118,122,66,0.02141030753386247],[118,122,67,0.022866346331397003],[118,122,68,0.02437933066997411],[118,122,69,0.025949622499575664],[118,122,70,0.027577506388930306],[118,122,71,0.02926318709828768],[118,122,72,0.031006787127668856],[118,122,73,0.03280834424052981],[118,122,74,0.03466780896298616],[118,122,75,0.03658504205840596],[118,122,76,0.03855981197750907],[118,122,77,0.040591792283928285],[118,122,78,0.042680559055224276],[118,122,79,0.04482558825938565],[118,123,64,0.010829145738086854],[118,123,65,0.012171074669550974],[118,123,66,0.013570825683761334],[118,123,67,0.015028886514674877],[118,123,68,0.016545670869815288],[118,123,69,0.018121516053699382],[118,123,70,0.019756680567269036],[118,123,71,0.02145134168326368],[118,123,72,0.02320559299756597],[118,123,73,0.02501944195645317],[118,123,74,0.026892807359905402],[118,123,75,0.028825516840775334],[118,123,76,0.030817304319958216],[118,123,77,0.03286780743751794],[118,123,78,0.03497656495976331],[118,123,79,0.037143014162300036],[118,124,64,0.0030071046207205687],[118,124,65,0.00434695616740588],[118,124,66,0.005746455277776175],[118,124,67,0.007206068013441591],[118,124,68,0.008726184977877915],[118,124,69,0.010307118941152937],[118,124,70,0.011949102441146997],[118,124,71,0.01365228536120694],[118,124,72,0.015416732484260454],[118,124,73,0.017242421023326737],[118,124,74,0.019129238128573478],[118,124,75,0.021076978370725752],[118,124,76,0.023085341200964504],[118,124,77,0.025153928387271374],[118,124,78,0.027282241427211806],[118,124,79,0.02946967893718644],[118,125,64,-0.004794438750930052],[118,125,65,-0.003457126989824977],[118,125,66,-0.002058340856177565],[118,125,67,-5.976358280797012E-4],[118,125,68,9.253557218744657E-4],[118,125,69,0.002510922152310302],[118,125,70,0.004159270155774664],[118,125,71,0.005870522338355166],[118,125,72,0.00764471477624562],[118,125,73,0.009481794549192513],[118,125,74,0.011381617250973197],[118,125,75,0.013343944476711611],[118,125,76,0.015368441287166856],[118,125,77,0.01745467364995601],[118,125,78,0.019602105857698393],[118,125,79,0.021810097923113614],[118,126,64,-0.012571050896934388],[118,126,65,-0.011236728146211294],[118,126,66,-0.009839104043506464],[118,126,67,-0.008377755464048675],[118,126,68,-0.006852337617601734],[118,126,69,-0.005262586422045135],[118,126,70,-0.0036083208994924787],[118,126,71,-0.00188944559501536],[118,126,72,-1.0595301793814293E-4],[118,126,73,0.0017420738942269809],[118,126,74,0.0036544592893593686],[118,126,75,0.005630931891622781],[118,126,76,0.007671122469816383],[118,126,77,0.009774561283136474],[118,126,78,0.011940675504341192],[118,126,79,0.014168786620350593],[118,127,64,-0.020318306714640078],[118,127,65,-0.01898740867332982],[118,127,66,-0.017591383289949247],[118,127,67,-0.01612982868445756],[118,127,68,-0.014602422754042],[118,127,69,-0.013008925546289185],[118,127,70,-0.011349181654422225],[118,127,71,-0.009623122634665138],[118,127,72,-0.0078307694457046],[118,127,73,-0.0059722349103165095],[118,127,74,-0.004047726199001955],[118,127,75,-0.002057547335834964],[118,127,76,-2.1017263776013095E-6],[118,127,77,0.002118105292292727],[118,127,78,0.004302463879432783],[118,127,79,0.006550257096393675],[118,128,64,-0.028031793035932506],[118,128,65,-0.026704741540301002],[118,128,66,-0.025310738863430382],[118,128,67,-0.02384940420785353],[118,128,68,-0.022320437997672138],[118,128,69,-0.020723624251604456],[118,128,70,-0.019058832977628115],[118,128,71,-0.017326022589278067],[118,128,72,-0.015525242343574441],[118,128,73,-0.013656634800642942],[118,128,74,-0.011720438304876346],[118,128,75,-0.009716989487836725],[118,128,76,-0.00764672579275405],[118,128,77,-0.005510188020667939],[118,128,78,-0.003308022898223628],[118,128,79,-0.0010409856670836604],[118,129,64,-0.035707112238626326],[118,129,65,-0.034384314938416816],[118,129,66,-0.03299274593095414],[118,129,67,-0.03153204532952947],[118,129,68,-0.030001935913982813],[118,129,69,-0.028402225503899592],[118,129,70,-0.026732809352939202],[118,129,71,-0.024993672564354696],[118,129,72,-0.023184892527675416],[118,129,73,-0.021306641376620084],[118,129,74,-0.01935918846808382],[118,129,75,-0.01734290288240148],[118,129,76,-0.015258255944745502],[118,129,77,-0.013105823767698865],[118,129,78,-0.01088628981501738],[118,129,79,-0.008600447486545426],[118,130,64,-0.043339885911593545],[118,130,65,-0.04202173595997494],[118,130,66,-0.0406329982501471],[118,130,67,-0.039173333624793916],[118,130,68,-0.03764248703774953],[118,130,69,-0.03604028992761221],[118,130,70,-0.03436666261203103],[118,130,71,-0.03262161670272501],[118,130,72,-0.030805257541205222],[118,130,73,-0.02891778665526934],[118,130,74,-0.026959504236108933],[118,130,75,-0.024930811636235894],[118,130,76,-0.02283221388808221],[118,130,77,-0.020664322243317157],[118,130,78,-0.018427856732893932],[118,130,79,-0.016123648747791486],[118,131,64,-0.050925758573820645],[118,131,65,-0.0496126343315032],[118,131,66,-0.048227111915642884],[118,131,67,-0.04676887270751007],[118,131,68,-0.04523768364273251],[118,131,69,-0.043633399585585875],[118,131,70,-0.04195596572350402],[118,131,71,-0.040205419981866664],[118,131,72,-0.03838189545903936],[118,131,73,-0.03648562288172785],[118,131,74,-0.03451693308049697],[118,131,75,-0.03247625948565147],[118,131,76,-0.030364140643337034],[118,131,77,-0.028181222751905932],[118,131,78,-0.02592826221855915],[118,131,79,-0.023606128236228097],[118,132,64,-0.0584604014475919],[118,132,65,-0.05715266620157777],[118,132,66,-0.05577072916050485],[118,132,67,-0.05431429204410321],[118,132,68,-0.05278314356725633],[118,132,69,-0.05117716181522014],[118,132,70,-0.049496316638612314],[118,132,71,-0.04774067206823307],[118,132,72,-0.045910388749688225],[118,132,73,-0.04400572639788214],[118,132,74,-0.04202704627122378],[118,132,75,-0.03997481366574929],[118,132,76,-0.037849600429017305],[118,132,77,-0.03565208749382076],[118,132,78,-0.03338306743172581],[118,132,79,-0.031043447026403936],[118,133,64,-0.06593951628541594],[118,133,65,-0.06463751798284545],[118,133,66,-0.06325952221229969],[118,133,67,-0.061805250822647095],[118,133,68,-0.06027451409527984],[118,133,69,-0.058667213120502826],[118,133,70,-0.05698334219325085],[118,133,71,-0.05522299122819574],[118,133,72,-0.05338634819421473],[118,133,73,-0.05147370156828601],[118,133,74,-0.04948544280865663],[118,133,75,-0.04742206884748401],[118,133,76,-0.045284184602809696],[118,133,77,-0.04307250550990782],[118,133,78,-0.040787860072017845],[118,133,79,-0.03843119243043025],[118,134,64,-0.0733588392508776],[118,134,65,-0.07206291024844158],[118,134,66,-0.07068919720401334],[118,134,67,-0.06923744187722158],[118,134,68,-0.06770747589314818],[118,134,69,-0.06609922312011995],[118,134,70,-0.0644127020663946],[118,134,71,-0.06264802829580063],[118,134,72,-0.060805416862301676],[118,134,73,-0.0588851847635542],[118,134,74,-0.05688775341330132],[118,134,75,-0.05481365113280445],[118,134,76,-0.052663515661172],[118,134,77,-0.050438096684626066],[118,134,78,-0.048138258384720634],[118,134,79,-0.045764982005474075],[118,135,64,-0.08071414485361894],[118,135,65,-0.07942460168299692],[118,135,66,-0.07805549814000445],[118,135,67,-0.0766065956677382],[118,135,68,-0.07507774700222347],[118,135,69,-0.07346889855183569],[118,135,70,-0.07178009279518538],[118,135,71,-0.07001147069752689],[118,135,72,-0.06816327414566514],[118,135,73,-0.06623584840142405],[118,135,74,-0.0642296445735222],[118,135,75,-0.06214522210805906],[118,135,76,-0.05998325129746607],[118,135,77,-0.05774451580796869],[118,135,78,-0.05542991522556928],[118,135,79,-0.053040467620516396],[118,136,64,-0.08800124993805636],[118,136,65,-0.08671839308784712],[118,136,66,-0.08535421091660511],[118,136,67,-0.08390848431483866],[118,136,68,-0.08238108688700074],[118,136,69,-0.08077198733275326],[118,136,70,-0.07908125184627302],[118,136,71,-0.07730904653366122],[118,136,72,-0.07545563984842463],[118,136,73,-0.07352140504509841],[118,136,74,-0.07150682265085118],[118,136,75,-0.0694124829552798],[118,136,76,-0.0672390885182449],[118,136,77,-0.06498745669579575],[118,136,78,-0.06265852218419232],[118,136,79,-0.06025333958199075],[118,137,64,-0.09521601772603638],[118,137,65,-0.09394013144064717],[118,137,66,-0.09258116739757338],[118,137,67,-0.09113892569007809],[118,137,68,-0.08961330053891847],[118,137,69,-0.0880042826756604],[118,137,70,-0.08631196174362032],[118,137,71,-0.08453652871649275],[118,137,72,-0.0826782783346347],[118,137,73,-0.08073761155907455],[118,137,74,-0.07871503804308855],[118,137,75,-0.07661117862154776],[118,137,76,-0.07442676781789315],[118,137,77,-0.07216265636878127],[118,137,78,-0.06981981376641222],[118,137,79,-0.06739933081850402],[118,138,64,-0.10235436191360459],[118,138,65,-0.10108571400956157],[118,138,66,-0.0997322495445706],[118,138,67,-0.09829378756155882],[118,138,68,-0.09677024263603096],[118,138,69,-0.09516162726163457],[118,138,70,-0.0934680542529398],[118,138,71,-0.0916897391654985],[118,138,72,-0.08982700273314737],[118,138,73,-0.08788027332262904],[118,138,74,-0.0858500894053692],[118,138,75,-0.08373710204661577],[118,138,76,-0.08154207741179775],[118,138,77,-0.07926589929014272],[118,138,78,-0.07690957163556777],[118,138,79,-0.0744742211248105],[118,139,64,-0.10941225082150252],[118,139,65,-0.10815109252164712],[118,139,66,-0.10680339360227686],[118,139,67,-0.10536899179463222],[118,139,68,-0.10384782175816065],[118,139,69,-0.1022399174685169],[118,139,70,-0.10054541462237832],[118,139,71,-0.09876455305913523],[118,139,72,-0.09689767919942327],[118,139,73,-0.09494524850057162],[118,139,74,-0.09290782792880314],[118,139,75,-0.09078609844839636],[118,139,76,-0.08858085752766154],[118,139,77,-0.08629302166177533],[118,139,78,-0.08392362891248661],[118,139,79,-0.08147384146465575],[118,140,64,-0.11638571159972011],[118,140,65,-0.11513227738575849],[118,140,66,-0.1137905943384735],[118,140,67,-0.11236051860799756],[118,140,68,-0.11084200465785765],[118,140,69,-0.10923510765559075],[118,140,70,-0.10753998587977964],[118,140,71,-0.10575690314356778],[118,140,72,-0.10388623123461982],[118,140,73,-0.10192845237160397],[118,140,74,-0.09988416167702929],[118,140,75,-0.09775406966664968],[118,140,76,-0.0955390047552872],[118,140,77,-0.09323991577911628],[118,140,78,-0.09085787453442606],[118,140,79,-0.08839407833281887],[118,141,64,-0.12327083448585596],[118,141,65,-0.12202534196972536],[118,141,66,-0.1206899093388486],[118,141,67,-0.11926441088495077],[118,141,68,-0.11774882058692049],[118,141,69,-0.11614321450421183],[118,141,70,-0.11444777318627664],[118,141,71,-0.11266278409808472],[118,141,72,-0.11078864406170807],[118,141,73,-0.1088258617140293],[118,141,74,-0.10677505998042558],[118,141,75,-0.10463697856462362],[118,141,76,-0.1024124764545894],[118,141,77,-0.1001025344444888],[118,141,78,-0.09770825767273916],[118,141,79,-0.09523087817610632],[118,142,64,-0.1300637771176154],[118,142,65,-0.12882642693212798],[118,142,66,-0.1274974633568452],[118,142,67,-0.12607677854010668],[118,142,68,-0.12456436567880236],[118,142,69,-0.12296032141471958],[118,142,70,-0.1212648482465366],[118,142,71,-0.11947825695752723],[118,142,72,-0.11760096905894235],[118,142,73,-0.11563351924914045],[118,142,74,-0.113576557888307],[118,142,75,-0.11143085348896797],[118,142,76,-0.10919729522215393],[118,142,77,-0.10687689543925627],[118,142,78,-0.10447079220958921],[118,142,79,-0.10198025187362059],[118,143,64,-0.13676076889905264],[118,143,65,-0.13553174460828932],[118,143,66,-0.13420945271817242],[118,143,67,-0.1327938029412118],[118,143,68,-0.13128480738651782],[118,143,69,-0.1296825829592395],[118,143,70,-0.12798735377528037],[118,143,71,-0.126199453591347],[118,143,72,-0.12431932825030334],[118,143,73,-0.12234753814190114],[118,143,74,-0.1202847606787214],[118,143,75,-0.11813179278753905],[118,143,76,-0.11588955341596408],[118,143,77,-0.11355908605439946],[118,143,78,-0.11114156127333219],[118,143,79,-0.10863827927591962],[118,144,64,-0.14335811542075594],[118,144,65,-0.14213758345066985],[118,144,66,-0.14082214978016572],[118,144,67,-0.13941174138623602],[118,144,68,-0.13790638897623897],[118,144,69,-0.1363062293905728],[118,144,70,-0.13461150802025623],[118,144,71,-0.13282258123948032],[118,144,72,-0.1309399188530962],[118,144,73,-0.1289641065591125],[118,144,74,-0.1268958484260393],[118,144,75,-0.12473596938528797],[118,144,76,-0.12248541773847921],[118,144,77,-0.12014526767970435],[118,144,78,-0.11771672183275184],[118,144,79,-0.11520111380326081],[118,145,64,-0.14985220293413004],[118,145,65,-0.1486403125238236],[118,145,66,-0.14733190744615954],[118,145,67,-0.14592693163590453],[118,145,68,-0.1444254340767458],[118,145,69,-0.14282757120732792],[118,145,70,-0.14113360934183805],[118,145,71,-0.1393439271052047],[118,145,72,-0.13745901788287096],[118,145,73,-0.13547949228522083],[118,145,74,-0.13340608062649295],[118,145,75,-0.131239635418388],[118,145,76,-0.12898113387823162],[118,145,77,-0.12663168045172535],[118,145,78,-0.12419250935030768],[118,145,79,-0.12166498710308127],[118,146,64,-0.15623950287944255],[118,146,65,-0.15503638605358605],[118,146,66,-0.15373516373453144],[118,146,67,-0.15233579650133222],[118,146,68,-0.15083835128438694],[118,146,69,-0.14924300377496136],[118,146,70,-0.14755004084890555],[118,146,71,-0.14575986300463273],[118,146,72,-0.14387298681532423],[118,146,73,-0.14189004739543365],[118,146,74,-0.1398118008813265],[118,146,75,-0.13763912692626634],[118,146,76,-0.1353730312096002],[118,146,77,-0.13301464796018414],[118,146,78,-0.1305652424940663],[118,146,79,-0.1280262137663858],[118,147,64,-0.16251657646780304],[118,147,65,-0.1613223480306587],[118,147,66,-0.1600284464025964],[118,147,67,-0.15863484848693343],[118,147,68,-0.15714163882372834],[118,147,69,-0.1555490120028965],[118,147,70,-0.15385727509117786],[118,147,71,-0.15206685007302223],[118,147,72,-0.15017827630535796],[118,147,73,-0.1481922129863137],[118,147,74,-0.14610944163773787],[118,147,75,-0.14393086860171356],[118,147,76,-0.1416575275509342],[118,147,77,-0.13929058201297573],[118,147,78,-0.13683132790847963],[118,147,79,-0.1342811961032112],[118,148,64,-0.16868007931723716],[118,148,65,-0.16749483686875188],[118,148,66,-0.166208377625502],[118,148,67,-0.16482069448876657],[118,148,68,-0.16333188926404807],[118,148,69,-0.16174217507788224],[118,148,70,-0.1600518788081653],[118,148,71,-0.15826144352805938],[118,148,72,-0.15637143096344852],[118,148,73,-0.1543825239640133],[118,148,74,-0.15229552898776166],[118,148,75,-0.15011137859922752],[118,148,76,-0.14783113398118797],[118,148,77,-0.14545598745994237],[118,148,78,-0.1429872650441707],[118,148,79,-0.1404264289773256],[118,149,64,-0.17472676614253413],[118,149,65,-0.17355059011696694],[118,149,66,-0.17227167872981164],[118,149,67,-0.1708900405479905],[118,149,68,-0.16940579429135294],[118,149,69,-0.16781917125326906],[118,149,70,-0.1661305177344118],[118,149,71,-0.16434029748979162],[118,149,72,-0.162449094189013],[118,149,73,-0.16045761388982072],[118,149,74,-0.15836668752477667],[118,149,75,-0.15617727340127374],[118,149,76,-0.15389045971474302],[118,149,77,-0.15150746707509588],[118,149,78,-0.14902965104641286],[118,149,79,-0.1464585046998429],[118,150,64,-0.1806534954990191],[118,150,65,-0.17948644922656853],[118,150,66,-0.1782151749819233],[118,150,67,-0.1768396966595892],[118,150,68,-0.1753601495360767],[118,150,69,-0.17377678269435615],[118,150,70,-0.17208996146118571],[118,150,71,-0.17030016985736995],[118,150,72,-0.16840801306091968],[118,150,73,-0.1664142198831844],[118,150,74,-0.1643196452577924],[118,150,75,-0.16212527274261013],[118,150,76,-0.15983221703457418],[118,150,77,-0.15744172649743848],[118,150,78,-0.15495518570244815],[118,150,79,-0.15237411798190525],[118,151,64,-0.1864572345804253],[118,151,65,-0.18529936437231964],[118,151,66,-0.18403580043149936],[118,151,67,-0.18266658163653504],[118,151,68,-0.1811918594566243],[118,151,69,-0.17961190037998243],[118,151,70,-0.17792708835479043],[118,151,71,-0.17613792724276522],[118,151,72,-0.17424504328531876],[118,151,73,-0.17224918758237506],[118,151,74,-0.17015123858368664],[118,151,75,-0.16795220459285798],[118,151,76,-0.16565322628392776],[118,151,77,-0.16325557923055423],[118,151,78,-0.16076067644781877],[118,151,79,-0.15817007094660662],[118,152,64,-0.1921350640705286],[118,152,65,-0.19098639932804629],[118,152,66,-0.18973060280957255],[118,152,67,-0.18836772802905588],[118,152,68,-0.1868979422784358],[118,152,69,-0.18532152906002708],[118,152,70,-0.18363889053115834],[118,152,71,-0.18185054996113015],[118,152,72,-0.17995715420045488],[118,152,73,-0.1779594761624551],[118,152,74,-0.1758584173170551],[118,152,75,-0.17365501019697493],[118,152,76,-0.17135042091618236],[118,152,77,-0.1689459517006422],[118,152,78,-0.16644304343138094],[118,152,79,-0.16384327819982325],[118,153,64,-0.1976841830487326],[118,153,65,-0.1965447363966144],[118,153,66,-0.1952967484815098],[118,153,67,-0.19394028709919153],[118,153,68,-0.1924755349887457],[118,153,69,-0.19090279226900064],[118,153,70,-0.18922247888691468],[118,153,71,-0.18743513707798565],[118,153,72,-0.18554143383865063],[118,153,73,-0.18354216341074525],[118,153,74,-0.18143824977786227],[118,153,75,-0.17923074917381598],[118,153,76,-0.17692085260307056],[118,153,77,-0.1745098883731686],[118,153,78,-0.17199932463918044],[118,153,79,-0.16939077196013042],[118,154,64,-0.20310191394971677],[118,154,65,-0.2019716813944391],[118,154,66,-0.20073152745495604],[118,154,67,-0.19938153385075597],[118,154,68,-0.19792189838716312],[118,154,69,-0.19635293739585136],[118,154,70,-0.19467508818702828],[118,154,71,-0.19288891151335696],[118,154,72,-0.1909950940455769],[118,154,73,-0.18899445085989874],[118,154,74,-0.1868879279370116],[118,154,75,-0.18467660467290814],[118,154,76,-0.1823616964013851],[118,154,77,-0.17994455692825873],[118,154,78,-0.1774266810773123],[118,154,79,-0.17480970724793266],[118,155,64,-0.2083857075768818],[118,155,65,-0.2072646686902494],[118,155,66,-0.2060323584424809],[118,155,67,-0.20468887211443532],[118,155,68,-0.20323442219179744],[118,155,69,-0.20166934080970622],[118,155,70,-0.19999408220877668],[118,155,71,-0.19820922520257833],[118,155,72,-0.1963154756565335],[118,155,73,-0.19431366897831237],[118,155,74,-0.1922047726195587],[118,155,75,-0.18998988858915722],[118,155,76,-0.18767025597789455],[118,155,77,-0.18524725349455762],[118,155,78,-0.18272240201348466],[118,155,79,-0.1800973671335253],[118,156,64,-0.21353314816972402],[118,156,65,-0.21242126629825264],[118,156,66,-0.2111967939790711],[118,156,67,-0.20985983968815647],[118,156,68,-0.2084106302010642],[118,156,69,-0.20684951304169108],[118,156,70,-0.20517695894216403],[118,156,71,-0.2033935643139113],[118,156,72,-0.20150005372988633],[118,156,73,-0.1994972824180159],[118,156,74,-0.19738623876570782],[118,156,75,-0.19516804683562827],[118,156,76,-0.19284396889260558],[118,156,77,-0.19041540794169642],[118,156,78,-0.18788391027743767],[118,156,79,-0.18525116804423258],[118,157,64,-0.21854195852528024],[118,157,65,-0.2174391810258336],[118,157,66,-0.21622252559460275],[118,157,67,-0.21489211353286652],[118,157,68,-0.2134481855113156],[118,157,69,-0.21189110402296585],[118,157,70,-0.21022135584692914],[118,157,71,-0.20843955452311091],[118,157,72,-0.20654644283779233],[118,157,73,-0.20454289532017655],[118,157,74,-0.20242992074973054],[118,157,75,-0.20020866467453824],[118,157,76,-0.19788041194051065],[118,157,77,-0.1954465892315016],[118,157,78,-0.19290876762034337],[118,157,79,-0.19026866513075646],[118,158,64,-0.2234100051733643],[118,158,65,-0.22231626367550472],[118,158,66,-0.22110738904101634],[118,158,67,-0.21978351502344373],[118,158,68,-0.21834489579001248],[118,158,69,-0.21679190837869222],[118,158,70,-0.2151250551658651],[118,158,71,-0.2133449663446625],[118,158,72,-0.21145240241393526],[118,158,73,-0.20944825667793343],[118,158,74,-0.20733355775652718],[118,158,75,-0.20510947210618247],[118,158,76,-0.20277730655154436],[118,158,77,-0.20033851082766685],[118,158,78,-0.19779468013290968],[118,158,79,-0.19514755769245784],[118,159,64,-0.2281353036057514],[118,159,65,-0.22705051430127465],[118,159,66,-0.22584936957435164],[118,159,67,-0.2245320152548972],[118,159,68,-0.2230987186045943],[118,159,69,-0.22154987077810007],[118,159,70,-0.21988598929460956],[118,159,71,-0.21810772051984473],[118,159,72,-0.21621584215843037],[118,159,73,-0.21421126575673077],[118,159,74,-0.21209503921598505],[118,159,75,-0.20986834931594978],[118,159,76,-0.20753252424890312],[118,159,77,-0.20508903616405116],[118,159,78,-0.20253950372235452],[118,159,79,-0.1998856946617289],[118,160,64,-0.23271602355940013],[118,160,65,-0.23164008751951715],[118,160,66,-0.23044660729173227],[118,160,67,-0.2291357404039449],[118,160,68,-0.22770776680714222],[118,160,69,-0.2261630913407312],[118,160,70,-0.22450224620799053],[118,160,71,-0.22272589346171257],[118,160,72,-0.22083482749998984],[118,160,73,-0.21882997757223022],[118,160,74,-0.21671241029522992],[118,160,75,-0.21448333217951643],[118,160,76,-0.21214409216581598],[118,160,77,-0.20969618417168634],[118,160,78,-0.20714124964832925],[118,160,79,-0.20448108014754518],[118,161,64,-0.237150494353499],[118,161,65,-0.2360832978741293],[118,161,66,-0.23489740252308644],[118,161,67,-0.23359297714575689],[118,161,68,-0.2321703139746153],[118,161,69,-0.23062983109865687],[118,161,70,-0.22897207494272254],[118,161,71,-0.2271977227567803],[118,161,72,-0.22530758511512872],[118,161,73,-0.22330260842559246],[118,161,74,-0.22118387744855228],[118,161,75,-0.21895261782601128],[118,161,76,-0.21661019862056186],[118,161,77,-0.2141581348642808],[118,161,78,-0.21159809011758346],[118,161,79,-0.2089318790379845],[118,162,64,-0.24143721028043896],[118,162,65,-0.2403786252560799],[118,162,66,-0.23920022127770424],[118,162,67,-0.2379021781259636],[118,162,68,-0.236484799904764],[118,162,69,-0.2349485175147631],[118,162,70,-0.2332938911365422],[118,162,71,-0.23152161272351168],[118,162,72,-0.22963250850451933],[118,162,73,-0.22762754149622777],[118,162,74,-0.22550781402510722],[118,162,75,-0.22327457025924302],[118,162,76,-0.22092919874982164],[118,162,77,-0.2184732349823264],[118,162,78,-0.2159083639374706],[118,162,79,-0.2132364226618122],[118,163,64,-0.24557483605083474],[118,163,65,-0.24452472037747275],[118,163,66,-0.2433537007457559],[118,163,67,-0.2420619674880553],[118,163,68,-0.24064983616784663],[118,163,69,-0.23911775005723157],[118,163,70,-0.23746628262392067],[118,163,71,-0.2356961400277383],[118,163,72,-0.23380816362661516],[118,163,73,-0.2318033324921419],[118,163,74,-0.2296827659345202],[118,163,75,-0.22744772603711982],[118,163,76,-0.22509962020049956],[118,163,77,-0.22264000369592696],[118,163,78,-0.2200705822284188],[118,163,79,-0.2173932145092583],[118,164,64,-0.24956221229235243],[118,164,65,-0.2485204102998796],[118,164,66,-0.24735665485452807],[118,164,67,-0.24607114645592665],[118,164,68,-0.2446642117139013],[118,164,69,-0.2431363058299708],[118,164,70,-0.24148801508809892],[118,164,71,-0.23972005935476148],[118,164,72,-0.2378332945883005],[118,164,73,-0.2358287153576315],[118,164,74,-0.23370745737014686],[118,164,75,-0.23147080000901965],[118,164,76,-0.22912016887976605],[118,164,77,-0.22665713836610302],[118,164,78,-0.22408343419512444],[118,164,79,-0.22140093601174415],[118,165,64,-0.2533983611025392],[118,165,65,-0.2523647040171406],[118,165,66,-0.25120807987957483],[118,165,67,-0.24992869897176573],[118,165,68,-0.24852689853577214],[118,165,69,-0.2470031452591953],[118,165,70,-0.24535803776964682],[118,165,71,-0.24359230913833863],[118,165,72,-0.24170682939276256],[118,165,73,-0.23970260803852572],[118,165,74,-0.23758079659018827],[118,165,75,-0.23534269111130213],[118,165,76,-0.23298973476351648],[118,165,77,-0.2305235203647792],[118,165,78,-0.22794579295666062],[118,165,79,-0.22525845238075093],[118,166,64,-0.257082491655526],[118,166,65,-0.25605679809250326],[118,166,66,-0.2549071601106482],[118,166,67,-0.2536337973891529],[118,166,68,-0.25223705738776137],[118,166,69,-0.25071741783602197],[118,166,70,-0.24907548923141598],[118,166,71,-0.24731201734641794],[118,166,72,-0.24542788574445618],[118,166,73,-0.24342411830484478],[118,166,74,-0.24130188175652723],[118,166,75,-0.23906248822083465],[118,166,76,-0.23670739776312189],[118,166,77,-0.23423822095331248],[118,166,78,-0.2316567214353782],[118,166,79,-0.22896481850570305],[118,167,64,-0.26061400586275807],[118,167,65,-0.2595960823502531],[118,167,66,-0.2584532735725773],[118,167,67,-0.2571858082215346],[118,167,68,-0.2557940435600584],[118,167,69,-0.2542784679152392],[118,167,70,-0.25263970318004303],[118,167,71,-0.2508785073237847],[118,167,72,-0.24899577691132058],[118,167,73,-0.24699254963103412],[118,167,74,-0.244870006831451],[118,167,75,-0.2426294760666916],[118,167,76,-0.2402724336506209],[118,167,77,-0.23780050721972512],[118,167,78,-0.2352154783047481],[118,167,79,-0.23251928491102614],[118,168,64,-0.2639925040875709],[118,168,65,-0.2629821456216527],[118,168,66,-0.2618459978008948],[118,168,67,-0.26058429794587457],[118,168,68,-0.25919741270876817],[118,168,69,-0.25768584057006727],[118,168,70,-0.25605021434381503],[118,168,71,-0.2542913036914263],[118,168,72,-0.2524100176440546],[118,168,73,-0.25040740713358123],[118,168,74,-0.24828466753206124],[118,168,75,-0.24604314119983728],[118,168,76,-0.24368432004217377],[118,168,77,-0.24120984807445522],[118,168,78,-0.23862152399596281],[118,168,79,-0.23592130377218457],[118,169,64,-0.2672177909136966],[118,169,65,-0.266214781545281],[118,169,66,-0.2650851156723111],[118,169,67,-0.2638290388615827],[118,169,68,-0.2624469267416202],[118,169,69,-0.26093928750299356],[118,169,70,-0.25930676440699074],[118,169,71,-0.25755013830271256],[118,169,72,-0.25567033015254925],[118,169,73,-0.2536684035661143],[118,169,74,-0.2515455673424748],[118,169,75,-0.24930317802088198],[118,169,76,-0.24694274243986392],[118,169,77,-0.2444659203047127],[118,169,78,-0.2418745267633885],[118,169,79,-0.23917053499079854],[118,170,64,-0.27028988096779405],[118,170,65,-0.269293994421856],[118,170,66,-0.2681706212901227],[118,170,67,-0.26692001500480533],[118,170,68,-0.2655425597594534],[118,170,69,-0.26403877301277556],[118,170,70,-0.2624093080006632],[118,170,71,-0.26065495625647694],[118,170,72,-0.2587766501395623],[118,170,73,-0.2567754653720664],[118,170,74,-0.25465262358389285],[118,170,75,-0.2524094948660065],[118,170,76,-0.25004760033193796],[118,170,77,-0.24756861468753122],[118,170,78,-0.2449743688089543],[118,170,79,-0.24226685232892198],[118,171,64,-0.2732090047958122],[118,171,65,-0.2722200051233581],[118,171,66,-0.2711027259243648],[118,171,67,-0.2698574281178897],[118,171,68,-0.26848450405328583],[118,171,69,-0.26698448001742525],[118,171,70,-0.2653580187499782],[118,171,71,-0.2636059219668081],[118,171,72,-0.26172913289144506],[118,171,73,-0.25972873879471514],[118,171,74,-0.2576059735423608],[118,171,75,-0.2553622201508584],[118,171,76,-0.25299901335129393],[118,171,77,-0.2505180421613299],[118,171,78,-0.247921152465289],[118,171,79,-0.2452103496023007],[118,172,64,-0.2759756147933049],[118,172,65,-0.2749932570565684],[118,172,66,-0.2738818640068271],[118,172,67,-0.2726417036741404],[118,172,68,-0.2712731761570871],[118,172,69,-0.26977681613328497],[118,172,70,-0.2681532953778235],[118,172,71,-0.2664034252896743],[118,172,72,-0.26452815942604124],[118,172,73,-0.2625285960447217],[118,172,74,-0.2604059806543252],[118,172,75,-0.2581617085725424],[118,172,76,-0.2557973274923392],[118,172,77,-0.2533145400560959],[118,172,78,-0.2507152064377258],[118,172,79,-0.24800134693271814],[118,173,64,-0.27859039118974316],[118,173,65,-0.27761442218107013],[118,173,66,-0.27650869918097754],[118,173,67,-0.27527349695791115],[118,173,68,-0.27390922295629894],[118,173,69,-0.27241641981024967],[118,173,70,-0.27079576786503656],[118,173,71,-0.26904808770642474],[118,173,72,-0.2671743426978048],[118,173,73,-0.2651756415252079],[118,173,74,-0.2630532407500419],[118,173,75,-0.26080854736975045],[118,173,76,-0.2584431213862598],[118,173,77,-0.25595867838224196],[118,173,78,-0.2533570921052227],[118,173,79,-0.25064039705948316],[118,174,64,-0.28105424808668333],[118,174,65,-0.280084407081572],[118,174,66,-0.2789841304066575],[118,174,67,-0.2777536991999009],[118,174,68,-0.27639352785196747],[118,174,69,-0.2749041665229903],[118,174,70,-0.27328630366699236],[118,174,71,-0.27154076856402587],[118,174,72,-0.2696685338599958],[118,174,73,-0.26767071811423826],[118,174,74,-0.2655485883546961],[118,174,75,-0.26330356264089183],[118,174,76,-0.2609372126345636],[118,174,77,-0.2584512661779925],[118,174,78,-0.25584760988005173],[118,174,79,-0.2531282917099207],[118,175,64,-0.28336833954987717],[118,175,65,-0.2824043590946336],[118,175,66,-0.28130929811962513],[118,175,67,-0.2800834437677211],[118,175,68,-0.2787272169805617],[118,175,69,-0.27724117501826007],[118,175,70,-0.2756260139866471],[118,175,71,-0.27388257137211525],[118,175,72,-0.2720118285840307],[118,175,73,-0.2700149135047819],[118,175,74,-0.26789310304730696],[118,175,75,-0.26564782572030243],[118,175,76,-0.26328066420097795],[118,175,77,-0.2607933579153845],[118,175,78,-0.2581878056263449],[118,175,79,-0.2554660680289357],[118,176,64,-0.2855340657553743],[118,176,65,-0.2845756724898534],[118,176,66,-0.2834855904460051],[118,176,67,-0.28226411241180416],[118,176,68,-0.2809116654895427],[118,176,69,-0.27942881361834193],[118,176,70,-0.277816260104101],[118,176,71,-0.27607485015693234],[118,176,72,-0.27420557343605556],[118,176,73,-0.2722095666022174],[118,176,74,-0.27008811587748205],[118,176,75,-0.26784265961259135],[118,176,76,-0.26547479086175974],[118,176,77,-0.2629862599649352],[118,176,78,-0.26037897713755154],[118,176,79,-0.25765501506772104],[118,177,64,-0.28755307918949],[118,177,65,-0.28659999470538444],[118,177,66,-0.28551464947151706],[118,177,67,-0.284297341566516],[118,177,68,-0.2829485038685464],[118,177,69,-0.28146870658050493],[118,177,70,-0.2798586597625462],[118,177,71,-0.27811921587199195],[118,177,72,-0.2762513723105984],[118,177,73,-0.2742562739792447],[118,177,74,-0.27213521583988964],[118,177,75,-0.2698896454849954],[118,177,76,-0.26752116571428275],[118,177,77,-0.26503153711884886],[118,177,78,-0.26242268067267494],[118,177,79,-0.259696680331469],[118,178,64,-0.289427290902711],[118,178,65,-0.28847923263785147],[118,178,66,-0.28739837756555064],[118,178,67,-0.2861850287065444],[118,178,68,-0.28483962433625654],[118,178,69,-0.2833627405125442],[118,178,70,-0.28175509361067075],[118,178,71,-0.2800175428655719],[118,178,72,-0.2781510929213802],[118,178,73,-0.2761568963882769],[118,178,74,-0.27403625640651463],[118,178,75,-0.2717906292178116],[118,178,76,-0.2694216267439825],[118,178,77,-0.26693101917283524],[118,178,78,-0.26432073755136043],[118,178,79,-0.26159287638616224],[118,179,64,-0.291158876817596],[118,179,65,-0.29021555898672935],[118,179,66,-0.2891389437601487],[118,179,67,-0.2879293387586247],[118,179,68,-0.2865871872830241],[118,179,69,-0.2851130708444588],[118,179,70,-0.2835077117015803],[118,179,71,-0.28177197540507837],[118,179,72,-0.27990687334934417],[118,179,73,-0.2779135653313759],[118,179,74,-0.27579336211676553],[118,179,75,-0.2735477280129659],[118,179,76,-0.2711782834497092],[118,179,77,-0.2686868075665966],[118,179,78,-0.26607524080789835],[118,179,79,-0.2633456875245015],[118,180,64,-0.2927502840905315],[118,180,65,-0.2918114186530423],[118,180,66,-0.29073879018375504],[118,180,67,-0.28953271056846264],[118,180,68,-0.28819362776909363],[118,180,69,-0.286722128356132],[118,180,70,-0.28511894004809646],[118,180,71,-0.2833849342581448],[118,180,72,-0.28152112864775736],[118,180,73,-0.2795286896875844],[118,180,74,-0.277408935225287],[118,180,75,-0.2751633370605824],[118,180,76,-0.2727935235273522],[118,180,77,-0.27030128208284343],[118,180,78,-0.26768856190399526],[118,180,79,-0.2649574764908331],[118,181,64,-0.2942042375274443],[118,181,65,-0.293269535192483],[118,181,66,-0.29220063854983513],[118,181,67,-0.29099786342295064],[118,181,68,-0.2896616620785377],[118,181,69,-0.2881926257611126],[118,181,70,-0.2865914872345311],[118,181,71,-0.2848591233305654],[118,181,72,-0.2829965575044916],[118,181,73,-0.28100496239775896],[118,181,74,-0.2788856624075797],[118,181,75,-0.27664013626364736],[118,181,76,-0.27427001961183906],[118,181,77,-0.2717771076049409],[118,181,78,-0.2691633575004171],[118,181,79,-0.26643089126517217],[118,182,64,-0.2955237460534872],[118,182,65,-0.29459291732296755],[118,182,66,-0.2935274967003749],[118,182,67,-0.2923278036276994],[118,182,68,-0.290994294328915],[118,182,69,-0.28952756434651405],[118,182,70,-0.28792835108495385],[118,182,71,-0.28619753636108125],[118,182,72,-0.28433614896149517],[118,182,73,-0.28234536720692216],[118,182,74,-0.2802265215234456],[118,182,75,-0.2779810970207893],[118,182,76,-0.2756107360775204],[118,182,77,-0.2731172409332022],[118,182,78,-0.27050257628752117],[118,182,79,-0.26776887190634235],[118,183,64,-0.2967121092365931],[118,183,65,-0.29578486548653005],[118,183,66,-0.29472266520416657],[118,183,67,-0.29352583113978137],[118,183,68,-0.29219482313655154],[118,183,69,-0.29073024066892583],[118,183,70,-0.28913282538785234],[118,183,71,-0.2874034636729168],[118,183,72,-0.28554318919135646],[118,183,73,-0.28355318546402675],[118,183,74,-0.28143478843815195],[118,183,75,-0.27918948906707175],[118,183,76,-0.2768189358968426],[118,183,77,-0.2743249376597233],[118,183,78,-0.2717094658745758],[118,183,79,-0.2689746574541255],[118,184,64,-0.2977729238649983],[118,184,65,-0.2968489784656453],[118,184,66,-0.29578974400996916],[118,184,67,-0.29459554625577933],[118,184,68,-0.29326684833753947],[118,184,69,-0.2918042533064428],[118,184,70,-0.2902085066772794],[118,184,71,-0.28848049898216],[118,184,72,-0.2866212683310563],[118,184,73,-0.28463200297923397],[118,184,74,-0.2825140439014189],[118,184,75,-0.2802688873728951],[118,184,76,-0.2778981875574029],[118,184,77,-0.27540375910186354],[118,184,78,-0.27278757973796075],[118,184,79,-0.27005179289052517],[118,185,64,-0.2987100905786929],[118,185,65,-0.29778916005394407],[118,185,66,-0.2967326391545123],[118,185,67,-0.2955408563551044],[118,185,68,-0.2942142777644159],[118,185,69,-0.2927535096667617],[118,185,70,-0.29115930107044863],[118,185,71,-0.28943254626295334],[118,185,72,-0.2875742873728633],[118,185,73,-0.28558571693865953],[118,185,74,-0.28346818048418043],[118,185,75,-0.28122317910096595],[118,185,76,-0.2788523720373485],[118,185,77,-0.2763575792943215],[118,185,78,-0.27374078422821],[118,185,79,-0.27100413616009333],[118,186,64,-0.29952782055480387],[118,186,65,-0.2986096257813291],[118,186,66,-0.29755556952534046],[118,186,67,-0.2963659826985877],[118,186,68,-0.29504133407852573],[118,186,69,-0.2935822328513584],[118,186,70,-0.2919894311617839],[118,186,71,-0.290263826669493],[118,186,72,-0.28840646511238976],[118,186,73,-0.28641854287660296],[118,186,74,-0.2843014095731352],[118,186,75,-0.2820565706213438],[118,186,76,-0.27968568983912445],[118,186,77,-0.2771905920398233],[118,186,78,-0.274573265635907],[118,186,79,-0.27183586524933767],[118,187,64,-0.30023064224688956],[118,187,65,-0.29931490969346497],[118,187,66,-0.2982630736784837],[118,187,67,-0.29707546728232437],[118,187,68,-0.2957525616580481],[118,187,69,-0.29429496857572224],[118,187,70,-0.2927034429734019],[118,187,71,-0.2909788855148221],[118,187,72,-0.289122345153774],[118,187,73,-0.28713502170522853],[118,187,74,-0.28501826842305644],[118,187,75,-0.2827735945845409],[118,187,76,-0.2804026680815491],[118,187,77,-0.27790731801839264],[118,187,78,-0.27528953731640493],[118,187,79,-0.2725514853251805],[118,188,64,-0.3008234081782021],[118,188,65,-0.29990987118569856],[118,188,66,-0.2988600167110056],[118,188,67,-0.29767417974682353],[118,188,68,-0.2963528335417408],[118,188,69,-0.2948965921456995],[118,188,70,-0.2933062129620808],[118,188,71,-0.2915825993064668],[118,188,72,-0.2897268029720508],[118,188,73,-0.28774002680175736],[118,188,74,-0.28562362726692225],[118,188,75,-0.28337911705272933],[118,188,76,-0.28100816765027137],[118,188,77,-0.2785126119552618],[118,188,78,-0.275894446873427],[118,188,79,-0.2731558359325251],[118,189,64,-0.301311301788852],[118,189,65,-0.3003997018913521],[118,189,66,-0.29935159718836457],[118,189,67,-0.2981673243414027],[118,189,68,-0.296847358428341],[118,189,69,-0.29539231548988876],[118,189,70,-0.2938029550826551],[118,189,71,-0.2920801828388586],[118,189,72,-0.29022505303264834],[118,189,73,-0.2882387711531106],[118,189,74,-0.2861226964837996],[118,189,75,-0.2838783446889951],[118,189,76,-0.2815073904065507],[118,189,77,-0.2790116698473636],[118,189,78,-0.2763931834014922],[118,189,79,-0.2736540982508703],[118,190,64,-0.30169984433691566],[118,190,65,-0.30078993262441844],[118,190,66,-0.2997433541266329],[118,190,67,-0.2985604469438672],[118,190,68,-0.2972416877316568],[118,190,69,-0.29578769424811924],[118,190,70,-0.2941992279078731],[118,190,71,-0.29247719634257585],[118,190,72,-0.29062265596804415],[118,190,73,-0.28863681455803614],[118,190,74,-0.2865210338245242],[118,190,75,-0.28427683200467535],[118,190,76,-0.2819058864543891],[118,190,77,-0.27941003624843175],[118,190,78,-0.2767912847871926],[118,190,79,-0.2740518024100065],[118,191,64,-0.30199490185347777],[118,191,65,-0.30108644037665866],[118,191,66,-0.3000411740295571],[118,191,67,-0.2988594421354607],[118,191,68,-0.2975417226913495],[118,191,69,-0.296088634916014],[118,191,70,-0.29450094180470754],[118,191,71,-0.2927795526903978],[118,191,72,-0.29092552581157805],[118,191,73,-0.2889400708867136],[118,191,74,-0.2868245516951622],[118,191,75,-0.28458048866477237],[118,191,76,-0.28220956146601983],[118,191,77,-0.279713611612718],[118,191,78,-0.2770946450693239],[118,191,79,-0.27435483486479106],[118,192,64,-0.3022026921515971],[118,192,65,-0.3012954553690873],[118,192,66,-0.3002512979804598],[118,192,67,-0.2990705603310838],[118,192,68,-0.2977537215393876],[118,192,69,-0.29630140204561806],[118,192,70,-0.29471436616711444],[118,192,71,-0.2929935246601666],[118,192,72,-0.2911399372884089],[118,192,73,-0.2891548153978325],[118,192,74,-0.2870395244982533],[118,192,75,-0.28479558685143436],[118,192,76,-0.28242468406573407],[118,192,77,-0.2799286596973024],[118,192,78,-0.27730952185785673],[118,192,79,-0.2745694458289871],[118,193,64,-0.3023297918892136],[118,193,65,-0.3014235681578632],[118,193,66,-0.300380328788986],[118,193,67,-0.29920041496479055],[118,193,68,-0.2978843067221947],[118,193,69,-0.29643262550211236],[118,193,70,-0.2948461367052507],[118,193,71,-0.29312575225446336],[118,193,72,-0.2912725331636322],[118,193,73,-0.28928769211314964],[118,193,74,-0.2871725960318393],[118,193,75,-0.28492876868551686],[118,193,76,-0.28255789327206116],[118,193,77,-0.28006181502301664],[118,193,78,-0.27744254381176137],[118,193,79,-0.27470225676818705],[118,194,64,-0.30238314368597774],[118,194,65,-0.3014777367945697],[118,194,66,-0.300435238192693],[118,194,67,-0.29925598973055356],[118,194,68,-0.29794047217847164],[118,194,69,-0.2964893077766001],[118,194,70,-0.2949032627911383],[118,194,71,-0.2931832500770911],[118,194,72,-0.2913303316475425],[118,194,73,-0.2893457212495184],[118,194,74,-0.287230786946274],[118,194,75,-0.2849870537062118],[118,194,76,-0.2826162059982926],[118,194,77,-0.2801200903939698],[118,194,78,-0.27750071817567523],[118,194,79,-0.2747602679518013],[118,195,64,-0.30237006329402705],[118,195,65,-0.3014652940409016],[118,195,66,-0.3004233741134904],[118,195,67,-0.29924464587830846],[118,195,68,-0.2979295906727165],[118,195,69,-0.2964788313549771],[118,195,70,-0.29489313486079183],[118,195,71,-0.2931734147663797],[118,195,72,-0.2913207338580589],[118,195,73,-0.28933630670840393],[118,195,74,-0.2872215022588249],[118,195,75,-0.2849778464087618],[118,195,76,-0.28260702461136455],[118,195,77,-0.280110884475688],[118,195,78,-0.2774914383754252],[118,195,79,-0.274750866064132],[118,196,64,-0.3022982468226706],[118,196,65,-0.3013939546377311],[118,196,66,-0.3003524679689046],[118,196,67,-0.2991741295652536],[118,196,68,-0.2978594211844062],[118,196,69,-0.2964089661428625],[118,196,70,-0.29482353187277865],[118,196,71,-0.2931040324852823],[118,196,72,-0.2912515313402825],[118,196,73,-0.28926724362285616],[118,196,74,-0.28715253892603765],[118,196,75,-0.2849089438402257],[118,196,76,-0.28253814454906634],[118,196,77,-0.28004198943183944],[118,196,78,-0.277422491672384],[118,196,79,-0.2746818318745009],[118,197,64,-0.30217577801702966],[118,197,65,-0.30127182262859176],[118,197,66,-0.30023064203821104],[118,197,67,-0.29905257926244533],[118,197,68,-0.29773811635288283],[118,197,69,-0.2962878769466273],[118,197,70,-0.29470262882325615],[118,197,71,-0.29298328646830274],[118,197,72,-0.29113091364323196],[118,197,73,-0.289146725961982],[118,197,74,-0.28703209347391],[118,197,75,-0.284788543253347],[118,197,76,-0.2824177619956221],[118,197,77,-0.27992159861959065],[118,197,78,-0.2773020668766909],[118,197,79,-0.274561347966476],[118,198,64,-0.30201113559059756],[118,198,65,-0.3011073987375428],[118,198,66,-0.30006641688339275],[118,198,67,-0.29888853321664877],[118,198,68,-0.29757422997791205],[118,198,69,-0.29612413101048585],[118,198,70,-0.29453900431744373],[118,198,71,-0.29281976462522386],[118,198,72,-0.2909674759537101],[118,198,73,-0.2889833541928758],[118,198,74,-0.2868687696858311],[118,198,75,-0.2846252498184728],[118,198,76,-0.2822544816156036],[118,198,77,-0.2797583143435508],[118,198,78,-0.2771387621193081],[118,198,79,-0.27439800652615365],[118,199,64,-0.3018132006117318],[118,199,65,-0.3009095878014384],[118,199,66,-0.2998687188249486],[118,199,67,-0.2986909369674664],[118,199,68,-0.29737672457592756],[118,199,69,-0.2959267056096676],[118,199,70,-0.2943416481975555],[118,199,71,-0.2926224672016482],[118,199,72,-0.2907702267873342],[118,199,73,-0.2887861430000348],[118,199,74,-0.2866715863483087],[118,199,75,-0.28442808439355705],[118,199,76,-0.28205732434619646],[118,199,77,-0.2795611556683272],[118,199,78,-0.2769415926829284],[118,199,79,-0.2742008171895215],[118,200,64,-0.3015912639440832],[118,200,65,-0.3006877062565919],[118,200,66,-0.2996468874725464],[118,200,67,-0.2984691509197416],[118,200,68,-0.2971549789919594],[118,200,69,-0.2957049956996688],[118,200,70,-0.29411996922718453],[118,200,71,-0.2924008144963518],[118,200,72,-0.29054859573671554],[118,200,73,-0.2885645290622496],[118,200,74,-0.2864499850544844],[118,200,75,-0.2842064913522384],[118,200,76,-0.2818357352478138],[118,200,77,-0.2793395662896886],[118,200,78,-0.2767199988917334],[118,200,79,-0.2739792149488961],[118,201,64,-0.3013550337409492],[118,201,65,-0.3004514896798324],[118,201,66,-0.2994106833105131],[118,201,67,-0.2982329579712272],[118,201,68,-0.2969187960672445],[118,201,69,-0.29546882162157484],[118,201,70,-0.2938838028321362],[118,201,71,-0.2921646546354436],[118,201,72,-0.2903124412767869],[118,201,73,-0.2883283788869655],[118,201,74,-0.286213838065423],[118,201,75,-0.28397034646998365],[118,201,76,-0.28159959141305535],[118,201,77,-0.2791034224643272],[118,201,78,-0.27648385405999043],[118,201,79,-0.2737430681184301],[118,202,64,-0.3011140218550571],[118,202,65,-0.3002104753944247],[118,202,66,-0.2991696666952063],[118,202,67,-0.29799193909601107],[118,202,68,-0.29667777500239956],[118,202,69,-0.29522779843758473],[118,202,70,-0.29364277759959934],[118,202,71,-0.2919236274249829],[118,202,72,-0.2900714121589547],[118,202,73,-0.28808734793214796],[118,202,74,-0.2859728053437409],[118,202,75,-0.2837293120511919],[118,202,76,-0.2813585553664383],[118,202,77,-0.27886238485859227],[118,202,78,-0.27624281496315894],[118,202,79,-0.2735020275977261],[118,203,64,-0.30086877926838396],[118,203,65,-0.2999651839062395],[118,203,66,-0.2989243280799063],[118,203,67,-0.2977465551301617],[118,203,68,-0.2964323474627739],[118,203,69,-0.2949823290991598],[118,203,70,-0.2933972682335019],[118,203,71,-0.29167807979639016],[118,203,72,-0.28982582802494794],[118,203,73,-0.2878417290395162],[118,203,74,-0.28572715342673893],[118,203,75,-0.28348362882924827],[118,203,76,-0.2811128425418149],[118,203,77,-0.27861664411399545],[118,203,78,-0.2759970479593009],[118,203,79,-0.27325623597083615],[118,204,64,-0.30061295002178856],[118,204,65,-0.2997091868053189],[118,204,66,-0.29866816921355555],[118,204,67,-0.2974902405948576],[118,204,68,-0.29617588335584966],[118,204,69,-0.2947257215119181],[118,204,70,-0.29314052324416784],[118,204,71,-0.291421203462902],[118,204,72,-0.2895688263775833],[118,204,73,-0.28758460807335595],[118,204,74,-0.28546991909396335],[118,204,75,-0.28322628703126884],[118,204,76,-0.28085539912123736],[118,204,77,-0.27835910484641424],[118,204,78,-0.2757394185449248],[118,204,79,-0.27299852202594255],[118,205,64,-0.3003403123435028],[118,205,65,-0.29943619197114935],[118,205,66,-0.29839483017543333],[118,205,67,-0.2972165703211652],[118,205,68,-0.29590189481710505],[118,205,69,-0.29445142766611876],[118,205,70,-0.29286593702179087],[118,205,71,-0.2911463377515575],[118,205,72,-0.28929369400632166],[118,205,73,-0.28730922179662244],[118,205,74,-0.28519429157520304],[118,205,75,-0.28295043082617355],[118,205,76,-0.2805793266606379],[118,205,77,-0.2780828284188128],[118,205,78,-0.27546295027866496],[118,205,79,-0.2727218738710159],[118,206,64,-0.30004496080055043],[118,206,65,-0.2991402268385772],[118,206,66,-0.2980982736977359],[118,206,67,-0.2969194447716581],[118,206,68,-0.2956042224733261],[118,206,69,-0.29415323078464006],[118,206,70,-0.2925672378124409],[118,206,71,-0.29084715835104835],[118,206,72,-0.2889940564512762],[118,206,73,-0.2870091479959993],[118,206,74,-0.2848938032821149],[118,206,75,-0.2826495496090945],[118,206,76,-0.2802780738739964],[118,206,77,-0.2777812251729662],[118,206,78,-0.27516101740925114],[118,206,79,-0.2724196319076796],[118,207,64,-0.2997212996533696],[118,207,65,-0.2988156316909861],[118,207,66,-0.2977727783996267],[118,207,67,-0.29659308321765876],[118,207,68,-0.29527702856534477],[118,207,69,-0.2938252383935144],[118,207,70,-0.29223848073868597],[118,207,71,-0.29051767028469655],[118,207,72,-0.28866387093080415],[118,207,73,-0.2866782983663364],[118,207,74,-0.28456232265172443],[118,207,75,-0.2823174708061257],[118,207,76,-0.279945429401498],[118,207,77,-0.2774480471631571],[118,207,78,-0.27482733757684186],[118,207,79,-0.27208548150223966],[118,208,64,-0.2993640362674431],[118,208,65,-0.2984570530109578],[118,208,66,-0.29741293207923114],[118,208,67,-0.2962320169748621],[118,208,68,-0.29491479012958455],[118,208,69,-0.2934618754516761],[118,208,70,-0.29187404087980795],[118,208,71,-0.2901522009433949],[118,208,72,-0.28829741932940944],[118,208,73,-0.28631091145573273],[118,208,74,-0.2841940470508837],[118,208,75,-0.2819483527403278],[118,208,76,-0.2795755146392287],[118,208,77,-0.2770773809516749],[118,208,78,-0.2744559645764071],[118,208,79,-0.2717134457189936],[118,209,64,-0.2989681745819305],[118,209,65,-0.2980594368884112],[118,209,66,-0.29701362506356643],[118,209,67,-0.2958310826973367],[118,209,68,-0.2945122922384029],[118,209,69,-0.29305787753990775],[118,209,70,-0.29146860641160555],[118,209,71,-0.2897453931785029],[118,209,72,-0.28788930124594936],[118,209,73,-0.2859015456712568],[118,209,74,-0.28378349574168293],[118,209,75,-0.28153667755898515],[118,209,76,-0.2791627766304041],[118,209,77,-0.27666364046611347],[118,209,78,-0.2740412811831562],[118,209,79,-0.2712978781158194],[118,210,64,-0.29852900863529064],[118,210,65,-0.2976180224862107],[118,210,66,-0.29657004361639905],[118,210,67,-0.2953854157298914],[118,210,68,-0.2940646212992222],[118,210,69,-0.2926082841089799],[118,210,70,-0.2910171718057758],[118,210,71,-0.28929219845468723],[118,210,72,-0.2874344271021384],[118,210,73,-0.28544507234529437],[118,210,74,-0.28332550290780456],[118,210,75,-0.28107724422210223],[118,210,76,-0.2787019810181194],[118,210,77,-0.27620155991845263],[118,210,78,-0.2735779920400013],[118,210,79,-0.27083345560203065],[118,211,64,-0.29804211614791487],[118,211,65,-0.29712833556325835],[118,211,66,-0.29607766340404584],[118,211,67,-0.2948904435188269],[118,211,68,-0.2935671584124665],[118,211,69,-0.2921084317870004],[118,211,70,-0.2905150310888891],[118,211,71,-0.2887878700627251],[118,211,72,-0.2869280113113629],[118,211,73,-0.2849366688625413],[118,211,74,-0.28281521074183735],[118,211,75,-0.2805651615521595],[118,211,76,-0.2781882050596377],[118,211,77,-0.27568618678594436],[118,211,78,-0.27306111660707144],[118,211,79,-0.27031517135851413],[118,212,64,-0.2975033521617596],[118,212,65,-0.29658618205506737],[118,212,66,-0.2955322430191122],[118,212,67,-0.2943418790810651],[118,212,68,-0.29301557278829904],[118,212,69,-0.29155394774596677],[118,212,70,-0.28995777116095434],[118,212,71,-0.28822795639226506],[118,212,72,-0.2863655655078047],[118,212,73,-0.28437181184763605],[118,212,74,-0.28224806259354507],[118,212,75,-0.279995841345121],[118,212,76,-0.27761683070221355],[118,212,77,-0.27511287485379765],[118,212,78,-0.2724859821732736],[118,212,79,-0.26973832782014884],[118,213,64,-0.2969088427369704],[118,213,65,-0.2959876417117977],[118,213,66,-0.29492981756215464],[118,213,67,-0.2937357145316406],[118,213,68,-0.2924058152221425],[118,213,69,-0.2909407431275064],[118,213,70,-0.28934126517355774],[118,213,71,-0.2876082942645276],[118,213,72,-0.28574289183585233],[118,213,73,-0.28374627041341494],[118,213,74,-0.28161979617907384],[118,213,75,-0.279364991542678],[118,213,76,-0.2769835377204324],[118,213,77,-0.2744772773196452],[118,213,78,-0.2718482169298835],[118,213,79,-0.2690985297204841],[118,214,64,-0.2962549787055162],[118,214,65,-0.29532906179378504],[118,214,66,-0.2942666922812911],[118,214,67,-0.2930682146695822],[118,214,68,-0.29173411162901164],[118,214,69,-0.2902650065278308],[118,214,70,-0.2886616659676],[118,214,71,-0.2869250023249753],[118,214,72,-0.2850560762998343],[118,214,73,-0.28305609946981836],[118,214,74,-0.2809264368511245],[118,214,75,-0.2786686094657569],[118,214,76,-0.27628429691509604],[118,214,77,-0.27377533995981884],[118,214,78,-0.27114374310619516],[118,214,79,-0.26839167719871093],[118,215,64,-0.29553840948181764],[118,215,65,-0.2946070508245361],[118,215,66,-0.2935394362697382],[118,215,67,-0.2923359106221607],[118,215,68,-0.2909969566366343],[118,215,69,-0.2895231975418848],[118,215,70,-0.2879153995706152],[118,215,71,-0.2861744744959268],[118,215,72,-0.2843014821740455],[118,215,73,-0.28229763309342537],[118,215,74,-0.2801642909300689],[118,215,75,-0.2779029751092684],[118,215,76,-0.2755153633736298],[118,215,77,-0.27300329435741166],[118,215,78,-0.2703687701672042],[118,215,79,-0.2676139589688976],[118,216,64,-0.2947560369303872],[118,216,65,-0.29381847240121395],[118,216,66,-0.29274487622129786],[118,216,67,-0.2915355935475251],[118,216,68,-0.2901911072373813],[118,216,69,-0.28871204036670584],[118,216,70,-0.28709915875368397],[118,216,71,-0.2853533734891396],[118,216,72,-0.2834757434730899],[118,216,73,-0.28146747795763594],[118,216,74,-0.27932993909602943],[118,216,75,-0.2770646444981181],[118,216,76,-0.27467326979203277],[118,216,77,-0.2721576511921495],[118,216,78,-0.26951978807334676],[118,216,79,-0.2667618455515153],[118,217,64,-0.29390500929044816],[118,217,65,-0.29296043906258007],[118,217,66,-0.2918800902437555],[118,217,67,-0.29066430839569224],[118,217,68,-0.2893135764989736],[118,217,69,-0.2878285174639641],[118,217,70,-0.28620989664791463],[118,217,71,-0.28445862437832325],[118,217,72,-0.2825757584825075],[118,217,73,-0.28056250682346995],[118,217,74,-0.2784202298418893],[118,217,75,-0.27615044310444503],[118,217,76,-0.2737548198583377],[118,217,77,-0.2712351935920335],[118,217,78,-0.26859356060226247],[118,217,79,-0.2658320825672167],[118,218,64,-0.2929827151575721],[118,218,65,-0.2920303062144304],[118,218,66,-0.2909424017302349],[118,218,67,-0.28971934772793173],[118,218,68,-0.28836162733400406],[118,218,69,-0.2868698632817225],[118,218,70,-0.28524482042052957],[118,218,71,-0.28348740823162677],[118,218,72,-0.2815986833497228],[118,218,73,-0.27957985209101954],[118,218,74,-0.2774322729872719],[118,218,75,-0.27515745932612956],[118,218,76,-0.2727570816976189],[118,218,77,-0.27023297054679885],[118,218,78,-0.2675871187326163],[118,218,79,-0.2648216840929094],[118,219,64,-0.29198677752232116],[118,219,65,-0.291025666112513],[118,219,66,-0.2899293732884902],[118,219,67,-0.28869824559452795],[118,219,68,-0.28733276632826066],[118,219,69,-0.2858335580354011],[118,219,70,-0.2842013850105394],[118,219,71,-0.2824371558040838],[118,219,72,-0.2805419257353017],[118,219,73,-0.2785168994115438],[118,219,74,-0.2763634332534788],[118,219,75,-0.2740830380265544],[118,219,76,-0.2716773813785379],[118,219,77,-0.2691482903831721],[118,219,78,-0.266497754089972],[118,219,79,-0.2637279260801103],[118,220,64,-0.29091504786586375],[118,220,65,-0.289944341902898],[118,220,66,-0.28883880072810875],[118,220,67,-0.2875987714708954],[118,220,68,-0.28622473762782197],[118,220,69,-0.28471732154791596],[118,220,70,-0.2830772869239814],[118,220,71,-0.28130554128998586],[118,220,72,-0.27940313852448706],[118,220,73,-0.27737128136017275],[118,220,74,-0.2752113238993491],[118,220,75,-0.27292477413558824],[118,220,76,-0.27051329648139055],[118,220,77,-0.26797871430189724],[118,220,78,-0.26532301245467893],[118,220,79,-0.2625483398355464],[118,221,64,-0.28976560031261656],[118,221,65,-0.2887843817198471],[118,221,66,-0.2876687071056738],[118,221,67,-0.2864189242520897],[118,221,68,-0.2850355168849731],[118,221,69,-0.2835191071490448],[118,221,70,-0.28187045808876476],[118,221,71,-0.2800904761352341],[118,221,72,-0.2781802135990614],[118,221,73,-0.276140871169273],[118,221,74,-0.27397380041809904],[118,221,75,-0.2716805063118457],[118,221,76,-0.2692626497277112],[118,221,77,-0.26672204997658255],[118,221,78,-0.2640606873318302],[118,221,79,-0.26128070556406],[118,222,64,-0.2885367258398881],[118,222,65,-0.2875440528411647],[118,222,66,-0.2864173368278655],[118,222,67,-0.2851569263057008],[118,222,68,-0.2837633052629238],[118,222,69,-0.28223709563399524],[118,222,70,-0.28057905976911024],[118,222,71,-0.2787901029096498],[118,222,72,-0.27687127566951997],[118,222,73,-0.2748237765224545],[118,222,74,-0.2726489542951148],[118,222,75,-0.27034831066619847],[118,222,76,-0.2679235026714124],[118,222,77,-0.26537634521434583],[118,222,78,-0.26270881358326637],[118,222,79,-0.2599230459737909],[118,223,64,-0.2872269265444931],[118,223,65,-0.28622183590099615],[118,223,66,-0.28508314981246774],[118,223,67,-0.28381121758309025],[118,223,68,-0.28240652349929174],[118,223,69,-0.28086968928114475],[118,223,70,-0.2792014765395414],[118,223,71,-0.2774027892392067],[118,223,72,-0.2754746761675143],[118,223,73,-0.27341833340917976],[118,223,74,-0.2712351068266652],[118,223,75,-0.26892649454650674],[118,223,76,-0.2664941494514208],[118,223,77,-0.263939881678224],[118,223,78,-0.26126566112159155],[118,223,79,-0.25847361994360285],[118,224,64,-0.28583490996639715],[118,224,65,-0.28481641916013045],[118,224,66,-0.2836648157073386],[118,224,67,-0.2823804497890321],[118,224,68,-0.2809638060284132],[118,224,69,-0.2794155059290099],[118,224,70,-0.27773631031849433],[118,224,71,-0.2759271217982475],[118,224,72,-0.2739889871986303],[118,224,73,-0.2719231000400426],[118,224,74,-0.26973080299959784],[118,224,75,-0.26741359038362833],[118,224,76,-0.2649731106058768],[118,224,77,-0.26241116867140757],[118,224,78,-0.2597297286662632],[118,224,79,-0.2569309162528166],[118,225,64,-0.2843595834693634],[118,225,65,-0.2833266928337861],[118,225,66,-0.2821612081673204],[118,225,67,-0.28086348060973465],[118,225,68,-0.2794339951624554],[118,225,69,-0.277873373112421],[118,225,70,-0.27618237446151805],[118,225,71,-0.27436190036165975],[118,225,72,-0.2724129955554765],[118,225,73,-0.2703368508226871],[118,225,74,-0.2681348054319903],[118,225,75,-0.2658083495986836],[118,225,76,-0.26335912694786856],[118,225,77,-0.2607889369832749],[118,225,78,-0.2580997375617302],[118,225,79,-0.25529364737322324],[118,226,64,-0.2828000486785648],[118,226,65,-0.28175174347683485],[118,226,66,-0.28057139918905016],[118,226,67,-0.27925936799920037],[118,226,68,-0.27781613533128746],[118,226,69,-0.2762423222578606],[118,226,70,-0.27453868791402125],[118,226,71,-0.272706131916967],[118,226,72,-0.27074569679103544],[118,226,73,-0.26865857039832297],[118,226,74,-0.26644608837471395],[118,226,75,-0.26410973657153036],[118,226,76,-0.26165115350265744],[118,226,77,-0.2590721327971839],[118,226,78,-0.2563746256575751],[118,226,79,-0.2535607433233339],[118,227,64,-0.2811555959752309],[118,227,65,-0.2800908484265403],[118,227,66,-0.27889465350373777],[118,227,67,-0.277567364523996],[118,227,68,-0.2761094673811869],[118,227,69,-0.27452158293803774],[118,227,70,-0.272804469423645],[118,227,71,-0.2709590248364102],[118,227,72,-0.268986289352358],[118,227,73,-0.2668874477389166],[118,227,74,-0.26466383177398756],[118,227,75,-0.26231692267052487],[118,227,76,-0.25984835350647173],[118,227,77,-0.25725991166009465],[118,227,78,-0.2545535412507366],[118,227,79,-0.2517313455849417],[118,228,64,-0.2794256990482983],[118,228,65,-0.2783434703027766],[118,228,66,-0.2771304230278864],[118,228,67,-0.2757869117664046],[118,228,68,-0.2743134229323453],[118,228,69,-0.2727105771856688],[118,228,70,-0.27097913181222444],[118,228,71,-0.2691199831089892],[118,228,72,-0.2671341687745663],[118,228,73,-0.2650228703050218],[118,228,74,-0.26278741539488604],[118,228,75,-0.26042928034353996],[118,228,76,-0.2579500924668364],[118,228,77,-0.2553516325139933],[118,228,78,-0.252635837089783],[118,228,79,-0.249804801081967],[118,229,64,-0.27761000950302017],[118,229,65,-0.27650925156567996],[118,229,66,-0.27527834137190443],[118,229,67,-0.2739176347859067],[118,229,68,-0.2724276187951279],[118,229,69,-0.27080891386641404],[118,229,70,-0.2690622763072922],[118,229,71,-0.2671886006324118],[118,229,72,-0.26518892193511334],[118,229,73,-0.26306441826420224],[118,229,74,-0.26081641300575586],[118,229,75,-0.25844637727018327],[118,229,76,-0.25595593228438673],[118,229,77,-0.25334685178906524],[118,229,78,-0.2506210644411787],[118,229,79,-0.24778065622152812],[118,230,64,-0.27570835152661566],[118,230,65,-0.2745880091308205],[118,230,66,-0.2733382184066935],[118,230,67,-0.27195933663908056],[118,230,68,-0.27045185144517403],[118,230,69,-0.2688163831110575],[118,230,70,-0.2670536869332115],[118,230,71,-0.2651646555650413],[118,230,72,-0.2631503213683928],[118,230,73,-0.2610118587701338],[118,230,74,-0.25875058662362593],[118,230,75,-0.256367970575311],[118,230,76,-0.2538656254362571],[118,230,77,-0.2512453175587058],[118,230,78,-0.24850896721764182],[118,230,79,-0.2456586509973353],[118,231,64,-0.27372071661092523],[118,231,65,-0.27257972904185546],[118,231,66,-0.27131003488817784],[118,231,67,-0.2699119929578828],[118,231,68,-0.26838609155729776],[118,231,69,-0.26673295080689385],[118,231,70,-0.26495332496190194],[118,231,71,-0.2630481047378028],[118,231,72,-0.2610183196406568],[118,231,73,-0.25886514030234853],[118,231,74,-0.256589880820575],[118,231,75,-0.25419400110379753],[118,231,76,-0.251679109221006],[118,231,77,-0.24904696375633462],[118,231,78,-0.24629947616854986],[118,231,79,-0.24343871315536503],[118,232,64,-0.271647258332015],[118,232,65,-0.2704845612006077],[118,232,66,-0.2691939371397185],[118,232,67,-0.2677757465862527],[118,232,68,-0.2662304785981361],[118,232,69,-0.2645587531482628],[118,232,70,-0.262761323423097],[118,232,71,-0.26083907812599116],[118,232,72,-0.25879304378518464],[118,232,73,-0.25662438706656254],[118,232,74,-0.254334417090997],[118,232,75,-0.2519245877564985],[118,232,76,-0.24939650006501835],[118,232,77,-0.24675190445394868],[118,232,78,-0.24399270313233368],[118,232,79,-0.2411209524217537],[118,233,64,-0.2694882871868308],[118,233,65,-0.2683028141546723],[118,233,66,-0.26699023179251036],[118,233,67,-0.265550902275142],[118,233,68,-0.2639853154776425],[118,233,69,-0.26229409124633485],[118,233,70,-0.2604779816742402],[118,233,71,-0.2585378733810827],[118,233,72,-0.25647478979780725],[118,233,73,-0.25428989345569053],[118,233,74,-0.2519844882798705],[118,233,75,-0.2495600218875168],[118,233,76,-0.24701808789048874],[118,233,77,-0.24436042820252302],[118,233,78,-0.24158893535096804],[118,233,79,-0.23870565479302175],[118,234,64,-0.26724426548685665],[118,234,65,-0.26603494994250143],[118,234,66,-0.2646993805839212],[118,234,67,-0.26323792143592306],[118,234,68,-0.2616510632593835],[118,234,69,-0.2599394257981035],[118,234,70,-0.25810376002997226],[118,234,71,-0.2561449504225084],[118,234,72,-0.25406401719273997],[118,234,73,-0.2518621185715032],[118,234,74,-0.2495405530719833],[118,234,75,-0.2471007617627229],[118,234,76,-0.24454433054494218],[118,234,77,-0.2418729924342139],[118,234,78,-0.23908862984651047],[118,234,79,-0.23619327688857872],[118,235,64,-0.2649158023087158],[118,235,65,-0.26368157899591327],[118,235,66,-0.2623219952137076],[118,235,67,-0.26083741695211826],[118,235,68,-0.2592283359295737],[118,235,69,-0.25749537181451854],[118,235,70,-0.25563927445114487],[118,235,71,-0.2536609260893188],[118,235,72,-0.2515613436186602],[118,235,73,-0.2493416808068597],[118,235,74,-0.24700323054204965],[118,235,75,-0.2445474270794642],[118,235,76,-0.24197584829222407],[118,235,77,-0.23929021792629301],[118,235,78,-0.2364924078596219],[118,235,79,-0.2335844403654389],[118,236,64,-0.26250364850182817],[118,236,65,-0.2612434551001296],[118,236,66,-0.2598588322582218],[118,236,67,-0.258350148049557],[118,236,68,-0.256717895224965],[118,236,69,-0.25496269340787714],[118,236,70,-0.25308529129347856],[118,236,71,-0.25108656885186265],[118,236,72,-0.2489675395351475],[118,236,73,-0.24672935248863537],[118,236,74,-0.2443732947658359],[118,236,75,-0.24190079354758187],[118,236,76,-0.2393134183650797],[118,236,77,-0.23661288332693764],[118,236,78,-0.23380104935019097],[118,236,79,-0.23087992639527666],[118,237,64,-0.2600086917530725],[118,237,65,-0.25872147041129656],[118,237,66,-0.2573107881425597],[118,237,67,-0.2557770152249148],[118,237,68,-0.25412064551953706],[118,237,69,-0.25234229863842206],[118,237,70,-0.2504427221158123],[118,237,71,-0.24842279358342378],[118,237,72,-0.2462835229494299],[118,237,73,-0.244026054581292],[118,237,74,-0.2416516694922458],[118,237,75,-0.23916178753168416],[118,237,76,-0.23655796957926933],[118,237,77,-0.2338419197428222],[118,237,78,-0.23101548756000623],[118,237,79,-0.22808067020376088],[118,238,64,-0.25743195170838384],[118,238,65,-0.2561166505314203],[118,238,66,-0.2546788941705791],[118,238,67,-0.2531190552325636],[118,238,68,-0.25143762876991993],[118,238,69,-0.24963523442007185],[118,238,70,-0.24771261854787296],[118,238,71,-0.2456706563917458],[118,238,72,-0.24351035421337208],[118,238,73,-0.24123285145101458],[118,238,74,-0.238839422876285],[118,238,75,-0.23633148075459876],[118,238,76,-0.23371057700914666],[118,238,77,-0.23097840538843406],[118,238,78,-0.2281368036374033],[118,238,79,-0.22518775567209381],[118,239,64,-0.25477457515142254],[118,239,65,-0.2534301496408453],[118,239,66,-0.2519643116129233],[118,239,67,-0.25037743612986685],[118,239,68,-0.2486700195196867],[118,239,69,-0.2468426814854282],[118,239,70,-0.24489616721770224],[118,239,71,-0.24283134951058294],[118,239,72,-0.24064923088083656],[118,239,73,-0.23835094569056137],[118,239,74,-0.23593776227305618],[118,239,75,-0.23341108506215158],[118,239,76,-0.2307724567248416],[118,239,77,-0.2280235602972619],[118,239,78,-0.22516622132403008],[118,239,79,-0.22220241000090524],[118,240,64,-0.2520378312392004],[118,240,65,-0.2506632456881722],[118,240,66,-0.24916832685293977],[118,240,67,-0.24755345238080884],[118,240,68,-0.24581911996239814],[118,240,69,-0.24396594940993666],[118,240,70,-0.24199468473862962],[118,240,71,-0.23990619625116294],[118,240,72,-0.23770148262530644],[118,240,73,-0.23538167300470436],[118,240,74,-0.232948029092658],[118,240,75,-0.23040194724914875],[118,240,76,-0.22774496059092975],[118,240,77,-0.2249787410947326],[118,240,78,-0.2221051017036113],[118,240,79,-0.21912599843637348],[118,241,64,-0.249223106794753],[118,241,65,-0.2478173356376956],[118,241,66,-0.24629234659057775],[118,241,67,-0.24464852001804538],[118,241,68,-0.24288635506349343],[118,241,69,-0.24100647169529799],[118,241,70,-0.23900961275587684],[118,241,71,-0.23689664601365013],[118,241,72,-0.23466856621786292],[118,241,73,-0.23232649715635512],[118,241,74,-0.2298716937160855],[118,241,75,-0.22730554394665903],[118,241,76,-0.22462957112668147],[118,241,77,-0.22184543583299443],[118,241,78,-0.21895493801280652],[118,241,79,-0.21596001905867435],[118,242,64,-0.24633190165673535],[118,242,65,-0.2448939307742427],[118,242,66,-0.24333789310414577],[118,242,67,-0.24166417186325106],[118,242,68,-0.23987326774089757],[118,242,69,-0.23796580091200004],[118,242,70,-0.23594251305266833],[118,242,71,-0.2338042693584823],[118,242,72,-0.2315520605653799],[118,242,73,-0.2291870049732445],[118,242,74,-0.22671035047200006],[118,242,75,-0.22412347657045995],[118,242,76,-0.22142789642775762],[118,242,77,-0.21862525888740958],[118,242,78,-0.21571735051402496],[118,242,79,-0.21270609763261916],[118,243,64,-0.24336582408608598],[118,243,65,-0.24189465206555716],[118,243,66,-0.2403065995700724],[118,243,67,-0.2386020528059125],[118,243,68,-0.23678151410449777],[118,243,69,-0.23484560390112097],[118,243,70,-0.2327950627160016],[118,243,71,-0.23063075313773507],[118,243,72,-0.228353661809101],[118,243,73,-0.22596490141531422],[118,243,74,-0.22346571267452342],[118,243,75,-0.2208574663308105],[118,243,76,-0.2181416651495124],[118,243,77,-0.21531994591491888],[118,243,78,-0.21239408143036098],[118,243,79,-0.20936598252064542],[118,244,64,-0.24032658622969638],[118,244,65,-0.23882122558216567],[118,244,66,-0.23720020544060783],[118,244,67,-0.23546391514050236],[118,244,68,-0.23361285875442062],[118,244,69,-0.2316476570353393],[118,244,70,-0.2295690493620074],[118,244,71,-0.22737789568644273],[118,244,72,-0.2250751784835222],[118,244,73,-0.22266200470274689],[118,244,74,-0.2201396077219897],[118,244,75,-0.21750934930347743],[118,244,76,-0.21477272155182958],[118,244,77,-0.21193134887420595],[118,244,78,-0.20898698994257925],[118,244,79,-0.20594153965808792],[118,245,64,-0.23721599964100304],[118,245,65,-0.23567547797464294],[118,245,66,-0.2340205518793822],[118,245,67,-0.23225161396194793],[118,245,68,-0.23036917013802827],[118,245,69,-0.22837384153906315],[118,245,70,-0.22626636642081532],[118,245,71,-0.22404760207379448],[118,245,72,-0.2217185267354974],[118,245,73,-0.21928024150455216],[118,245,74,-0.21673397225656432],[118,245,75,-0.2140810715619268],[118,245,76,-0.21132302060540709],[118,245,77,-0.2084614311075712],[118,245,78,-0.20549804724805465],[118,245,79,-0.20243474759063984],[118,246,64,-0.2340359708576547],[118,246,65,-0.23245933200843027],[118,246,66,-0.23076957725497704],[118,246,67,-0.22896710261955544],[118,246,68,-0.2270524159657884],[118,246,69,-0.2250261388678394],[118,246,70,-0.2228890084810865],[118,246,71,-0.22064187941436253],[118,246,72,-0.21828572560372905],[118,246,73,-0.21582164218786948],[118,246,74,-0.21325084738489797],[118,246,75,-0.2105746843708478],[118,246,76,-0.20779462315965413],[118,246,77,-0.20491226248468586],[118,246,78,-0.20192933168184324],[118,246,79,-0.19884769257417334],[118,247,64,-0.23078849703618565],[118,247,65,-0.22917480215613517],[118,247,66,-0.2274493126924345],[118,247,67,-0.2256124282293105],[118,247,68,-0.22366465868594698],[118,247,69,-0.22160662614697024],[118,247,70,-0.21943906669413615],[118,247,71,-0.21716283223929023],[118,247,72,-0.21477889235856673],[118,247,73,-0.21228833612791254],[118,247,74,-0.2096923739597346],[118,247,75,-0.20699233944093098],[118,247,76,-0.20418969117212304],[118,247,77,-0.20128601460814433],[118,247,78,-0.19828302389979802],[118,247,79,-0.19518256373684117],[118,248,64,-0.227475661643604],[118,248,65,-0.2258239902472241],[118,248,66,-0.22406187768261965],[118,248,67,-0.22218972724447272],[118,248,68,-0.22020805101791174],[118,248,69,-0.21811747166923934],[118,248,70,-0.21591872423755387],[118,248,71,-0.21361265792734485],[118,248,72,-0.21120023790202014],[118,248,73,-0.20868254707845968],[118,248,74,-0.20606078792238325],[118,248,75,-0.2033362842448051],[118,248,76,-0.20051048299938312],[118,248,77,-0.19758495608072102],[118,248,78,-0.1945614021236376],[118,248,79,-0.1914416483033603],[118,249,64,-0.22409963020606416],[118,249,65,-0.22240908117527514],[118,249,66,-0.2206094757496001],[118,249,67,-0.2187012210846263],[118,249,68,-0.21668483154451768],[118,249,69,-0.2145609304519287],[118,249,70,-0.21233025183850007],[118,249,71,-0.2099936421960129],[118,249,72,-0.20755206222816713],[118,249,73,-0.20500658860306975],[118,249,74,-0.2023584157062278],[118,249,75,-0.199608857394313],[118,249,76,-0.1967593487495114],[118,249,77,-0.19381144783451187],[118,249,78,-0.19076683744815015],[118,249,79,-0.18762732688166317],[118,250,64,-0.22066264611453984],[118,250,65,-0.21893233866271045],[118,250,66,-0.217094390175964],[118,250,67,-0.2151492118231112],[118,250,68,-0.21309732036309248],[118,250,69,-0.21093933985303792],[118,250,70,-0.20867600335658798],[118,250,71,-0.20630815465255148],[118,250,72,-0.20383674994386403],[118,250,73,-0.20126285956693846],[118,250,74,-0.19858766970119401],[118,250,75,-0.19581248407904028],[118,250,76,-0.1929387256961208],[118,250,77,-0.1899679385218762],[118,250,78,-0.18690178921044098],[118,250,79,-0.18374206881182886],[118,251,64,-0.2171670264874131],[118,251,65,-0.215396101082918],[118,251,66,-0.21351897978598577],[118,251,67,-0.21153607793274043],[118,251,68,-0.20944791479522973],[118,251,69,-0.20725511524661144],[118,251,70,-0.20495841142626325],[118,251,71,-0.20255864440490157],[118,251,72,-0.20005676584967136],[118,251,73,-0.19745383968929553],[118,251,74,-0.19475104377907226],[118,251,75,-0.19194967156599863],[118,251,76,-0.189051133753821],[118,251,77,-0.18605695996807536],[118,251,78,-0.18296880042113073],[118,251,79,-0.17978842757719005],[118,252,64,-0.21361515809014775],[118,252,65,-0.2118027773399368],[118,252,66,-0.20988567478681486],[118,252,67,-0.20786427008997932],[118,252,68,-0.20573908515544848],[118,252,69,-0.2035107457573605],[118,252,70,-0.201179983158859],[118,252,71,-0.19874763573264742],[118,252,72,-0.19621465058117293],[118,252,73,-0.1935820851565323],[118,252,74,-0.190851108879885],[118,252,75,-0.1880230047606526],[118,252,76,-0.18509917101530604],[118,252,77,-0.18208112268580356],[118,252,78,-0.17897049325768966],[118,252,79,-0.1757690362778146],[118,253,64,-0.21000949331196656],[118,253,65,-0.20815484280562369],[118,253,66,-0.2061969726676014],[118,253,67,-0.20413630703750651],[118,253,68,-0.2019733705786525],[118,253,69,-0.1997087900544851],[118,253,70,-0.1973432959042416],[118,253,71,-0.194877723817933],[118,253,72,-0.1923130163106037],[118,253,73,-0.18965022429597045],[118,253,74,-0.18689050865921109],[118,253,75,-0.1840351418292001],[118,253,76,-0.18108550934997636],[118,253,77,-0.17804311145151674],[118,253,78,-0.17490956461982032],[118,253,79,-0.1716866031662656],[118,254,64,-0.20635254619943755],[118,254,65,-0.20445483531420228],[118,254,66,-0.20245543415646644],[118,254,67,-0.20035477150505288],[118,254,68,-0.19815337490629292],[118,254,69,-0.19585187220460476],[118,254,70,-0.19345099307194658],[118,254,71,-0.1909515705362349],[118,254,72,-0.18835454250868416],[118,254,73,-0.1856609533101653],[118,254,74,-0.18287195519636024],[118,254,75,-0.1799888098820014],[118,254,76,-0.17701289006398913],[118,254,77,-0.1739456809434553],[118,254,78,-0.17078878174678236],[118,254,79,-0.16754390724553325],[118,255,64,-0.2026468885471498],[118,255,65,-0.20070535121438293],[118,255,66,-0.1986636792354985],[118,255,67,-0.19652230618871191],[118,255,68,-0.1942817626314211],[118,255,69,-0.19194267758398176],[118,255,70,-0.18950578001199392],[118,255,71,-0.18697190030718625],[118,255,72,-0.18434197176685274],[118,255,73,-0.18161703207194657],[118,255,74,-0.1787982247635984],[118,255,75,-0.175886800718357],[118,255,76,-0.17288411962193972],[118,255,77,-0.1697916514415625],[118,255,78,-0.16661097789685908],[118,255,79,-0.16334379392934595],[118,256,64,-0.1988951460453942],[118,256,65,-0.19690904147896116],[118,256,66,-0.19482438321368806],[118,256,67,-0.19264160978862727],[118,256,68,-0.1903612549025424],[118,256,69,-0.1879839488499504],[118,256,70,-0.18551041995529766],[118,256,71,-0.18294149600535808],[118,256,72,-0.18027810567981073],[118,256,73,-0.17752127998009726],[118,256,74,-0.17467215365632843],[118,256,75,-0.17173196663253987],[118,256,76,-0.16870206543007926],[118,256,77,-0.16558390458920158],[118,256,78,-0.16237904808887493],[118,256,79,-0.15908917076475826],[118,257,64,-0.19509999448474724],[118,257,65,-0.19306860787179692],[118,257,66,-0.190940272857702],[118,257,67,-0.1887154331049572],[118,257,68,-0.18639462558616804],[118,257,69,-0.1839784819714465],[118,257,70,-0.1814677300135557],[118,257,71,-0.17886319493089198],[118,257,72,-0.17616580078826372],[118,257,73,-0.17337657187556554],[118,257,74,-0.17049663408411764],[118,257,75,-0.16752721628096967],[118,257,76,-0.1644696516809539],[118,257,77,-0.1613253792165617],[118,257,78,-0.1580959449056452],[118,257,79,-0.15478300321690963],[118,258,64,-0.1912641560177506],[118,258,65,-0.18918679917236647],[118,258,66,-0.1870141225806874],[118,258,67,-0.1847465751923122],[118,258,68,-0.1823846973882614],[118,258,69,-0.17992912231883584],[118,258,70,-0.17738057723882983],[118,258,71,-0.17473988484018865],[118,258,72,-0.1720079645820713],[118,258,73,-0.16918583401841675],[118,258,74,-0.16627461012278],[118,258,75,-0.1632755106107429],[118,258,76,-0.1601898552596822],[118,258,77,-0.15701906722596448],[118,258,78,-0.15376467435957852],[118,258,79,-0.15042831051616246],[118,259,64,-0.18739039547759306],[118,259,65,-0.18526640745779455],[118,259,66,-0.18304875068901627],[118,259,67,-0.1807378795725718],[118,259,68,-0.17833433803448617],[118,259,69,-0.1758387608129482],[118,259,70,-0.1732518747427137],[118,259,71,-0.17057450003655328],[118,259,72,-0.1678075515637038],[118,259,73,-0.16495204012542342],[118,259,74,-0.1620090737274132],[118,259,75,-0.15897985884941535],[118,259,76,-0.15586570171176461],[118,259,77,-0.15266800953896903],[118,259,78,-0.1493882918203241],[118,259,79,-0.1460281615675213],[118,260,64,-0.18348151675369373],[118,260,65,-0.18131026444226206],[118,260,66,-0.17904701568686188],[118,260,67,-0.17669223050597282],[118,260,68,-0.17424645650914722],[118,260,69,-0.17171033013320675],[118,260,70,-0.1690845778749821],[118,260,71,-0.16637001752068903],[118,260,72,-0.16356755937189532],[118,260,73,-0.16067820746818545],[118,260,74,-0.1577030608062801],[118,260,75,-0.15464331455592317],[118,260,76,-0.15150026127231497],[118,260,77,-0.14827529210516166],[118,260,78,-0.14496989800435145],[118,260,79,-0.14158567092221525],[118,261,64,-0.17954035922438372],[118,261,65,-0.17732123787399234],[118,261,66,-0.1750118126388127],[118,261,67,-0.17261254932067688],[118,261,68,-0.17012399935303174],[118,261,69,-0.16754680098506164],[118,261,70,-0.1648816804619314],[118,261,71,-0.16212945320125005],[118,261,72,-0.15929102496570768],[118,261,73,-0.15636739303199343],[118,261,74,-0.1533596473557466],[118,261,75,-0.1502689717328644],[118,261,76,-0.14709664495693087],[118,261,77,-0.14384404197284995],[118,261,78,-0.14051263502668487],[118,261,79,-0.13710399481166524],[118,262,64,-0.1755697942465907],[118,262,65,-0.17330222798971395],[118,262,66,-0.17094606959042385],[118,262,67,-0.16850179080071254],[118,262,68,-0.1659699470200494],[118,262,69,-0.1633511784266281],[118,262,70,-0.1606462111043081],[118,262,71,-0.1578558581653502],[118,262,72,-0.1549810208689007],[118,262,73,-0.15202268973532945],[118,262,74,-0.14898194565617723],[118,262,75,-0.14585996100003112],[118,262,76,-0.14265800071409818],[118,262,77,-0.13937742342155568],[118,262,78,-0.13601968251468288],[118,262,79,-0.13258632724373326],[118,263,64,-0.17157272170242088],[118,263,65,-0.16925616402650018],[118,263,66,-0.1668527440465989],[118,263,67,-0.1643629396321909],[118,263,68,-0.1617873102925642],[118,263,69,-0.15912649825441677],[118,263,70,-0.1563812295347164],[118,263,71,-0.1535523150089183],[118,263,72,-0.15064065147449585],[118,263,73,-0.1476472227098965],[118,263,74,-0.14457310052866706],[118,263,75,-0.1414194458290785],[118,263,76,-0.13818750963901183],[118,263,77,-0.13487863415618834],[118,263,78,-0.13149425378374652],[118,263,79,-0.12803589616112782],[118,264,64,-0.1675520666028547],[118,264,65,-0.16518600079119766],[118,264,66,-0.1627348195080236],[118,264,67,-0.16019900690801225],[118,264,68,-0.15757912675564073],[118,264,69,-0.1548758234483839],[118,264,70,-0.15208982303473234],[118,264,71,-0.14922193422712698],[118,264,72,-0.14627304940976793],[118,264,73,-0.14324414564140442],[118,264,74,-0.1401362856528519],[118,264,75,-0.13695061883956966],[118,264,76,-0.1336883822490546],[118,264,77,-0.1303509015631404],[118,264,78,-0.12693959207520034],[118,264,79,-0.12345595966221612],[118,265,64,-0.16351077574837564],[118,265,65,-0.16109471528726538],[118,265,66,-0.15859530206546563],[118,265,67,-0.1560130266908762],[118,265,68,-0.15334845733001795],[118,265,69,-0.15060224067611305],[118,265,70,-0.14777510291153084],[118,265,71,-0.14486785066470387],[118,265,72,-0.14188137196146494],[118,265,73,-0.13881663717091997],[118,265,74,-0.1356746999455946],[118,265,75,-0.13245669815619382],[118,265,76,-0.1291638548207299],[118,265,77,-0.12579747902810262],[118,265,78,-0.12235896685613668],[118,265,79,-0.11884980228403436],[118,266,64,-0.15945181444666667],[118,266,65,-0.15698530339915906],[118,266,66,-0.1544372170520799],[118,266,67,-0.15180805263474262],[118,266,68,-0.14909838286395177],[118,266,69,-0.1463088568562671],[118,266,70,-0.1434402010341752],[118,266,71,-0.14049322002627146],[118,266,72,-0.13746879756140984],[118,266,73,-0.1343678973569301],[118,266,74,-0.1311915640006988],[118,266,75,-0.12794092382731193],[118,266,76,-0.12461718578820297],[118,266,77,-0.12122164231575122],[118,266,78,-0.11775567018138572],[118,266,79,-0.11422073134765126],[118,267,64,-0.15537816328719423],[118,267,65,-0.15286077663407743],[118,267,66,-0.1502636057535326],[118,267,67,-0.1475871546645457],[118,267,68,-0.14483200078373387],[118,267,69,-0.14199879578112362],[118,267,70,-0.1390882664293684],[118,267,71,-0.13610121544651654],[118,267,72,-0.13303852233227959],[118,267,73,-0.12990114419791277],[118,267,74,-0.1266901165894488],[118,267,75,-0.12340655430462294],[118,267,76,-0.12005165220324465],[118,267,77,-0.11662668601110188],[118,267,78,-0.11313301311739621],[118,267,79,-0.10957207336567737],[118,268,64,-0.15129281497289343],[118,268,65,-0.14872415892128932],[118,268,66,-0.1460775221761655],[118,268,67,-0.14335341571439258],[118,268,68,-0.1405524218031191],[118,268,69,-0.13767519479841722],[118,268,70,-0.1347224619369024],[118,268,71,-0.13169502412042655],[118,268,72,-0.1285937566938007],[118,268,73,-0.12541961021566161],[118,268,74,-0.12217361122221387],[118,268,75,-0.11885686298419618],[118,268,76,-0.11547054625682163],[118,268,77,-0.1120159200227756],[118,268,78,-0.10849432222827815],[118,268,79,-0.10490717051216836],[118,269,64,-0.1471987712088566],[118,269,65,-0.14457848346894037],[118,269,66,-0.1418820298730975],[118,269,67,-0.13910992852413817],[118,269,68,-0.13626276669154647],[118,269,69,-0.13334120155238577],[118,269,70,-0.13034596092469497],[118,269,71,-0.1272778439934792],[118,269,72,-0.12413772202925233],[118,269,73,-0.120926539099245],[118,269,74,-0.11764531277100598],[118,269,75,-0.11429513480875358],[118,269,76,-0.1108771718622168],[118,269,77,-0.10739266614805987],[118,269,78,-0.10384293612388917],[118,269,79,-0.10022937715480423],[118,270,64,-0.14309903964791637],[118,270,65,-0.14042678967822836],[118,270,66,-0.13768019882815524],[118,270,67,-0.13485979249422586],[118,270,68,-0.1319661631010522],[118,270,69,-0.12899997078390646],[118,270,70,-0.12596194406330047],[118,270,71,-0.12285288051167526],[118,270,72,-0.11967364741215664],[118,270,73,-0.11642518240948824],[118,270,74,-0.1131084941528745],[118,270,75,-0.10972466293108524],[118,270,76,-0.10627484129956694],[118,270,77,-0.102760254699649],[118,270,78,-0.09918220206984701],[118,270,79,-0.0955420564492252],[118,271,64,-0.13899663089333353],[118,271,65,-0.13627212011516404],[118,271,66,-0.1334751023978441],[118,271,67,-0.1306061105990141],[118,271,68,-0.1276657424520879],[118,271,69,-0.12465466118994267],[118,271,70,-0.12157359616011926],[118,271,71,-0.11842334343163813],[118,271,72,-0.11520476639338911],[118,271,73,-0.11191879634420804],[118,271,74,-0.10856643307436553],[118,271,75,-0.10514874543883096],[118,271,76,-0.10166687192204449],[118,271,77,-0.09812202119429536],[118,271,78,-0.09451547265970289],[118,271,79,-0.09084857699576304],[118,272,64,-0.13489455555848623],[118,272,65,-0.13211751753980855],[118,272,66,-0.12926981431125734],[118,272,67,-0.12635198635847772],[118,272,68,-0.12336463687813559],[118,272,69,-0.12030843234219346],[118,272,70,-0.11718410305319493],[118,272,71,-0.11399244369066652],[118,272,72,-0.11073431384859317],[118,272,73,-0.10741063856408178],[118,272,74,-0.10402240883693709],[118,272,75,-0.10057068214051279],[118,272,76,-0.09705658292357311],[118,272,77,-0.09348130310325936],[118,272,78,-0.08984610254916015],[118,272,79,-0.08615230955844855],[118,273,64,-0.1307958213834538],[118,273,65,-0.12796602199288065],[118,273,66,-0.125067405727812],[118,273,67,-0.12210052086817585],[118,273,68,-0.11906597622901177],[118,273,69,-0.11596444166483177],[118,273,70,-0.1127966485644844],[118,273,71,-0.10956339033663032],[118,273,72,-0.10626552288578389],[118,273,73,-0.1029039650790407],[118,273,74,-0.09947969920320632],[118,273,75,-0.09599377141269921],[118,273,76,-0.0924472921679555],[118,273,77,-0.08884143666443345],[118,273,78,-0.0851774452522161],[118,273,79,-0.08145662384617453],[118,274,64,-0.1267034304087068],[118,274,65,-0.12382066793994984],[118,274,66,-0.12087094235302864],[118,274,67,-0.11785480988770591],[118,274,68,-0.1147728851330782],[118,274,69,-0.11162584147155558],[118,274,70,-0.10841441151282816],[118,274,71,-0.10513938751793223],[118,274,72,-0.10180162181337182],[118,274,73,-0.09840202719541319],[118,274,74,-0.09494157732426756],[118,274,75,-0.09142130710853724],[118,274,76,-0.0878423130796499],[118,274,77,-0.08420575375638228],[118,274,78,-0.08051284999946812],[118,274,79,-0.07676488535625503],[118,275,64,-0.12262037620579663],[118,275,65,-0.11968448147310401],[118,275,66,-0.11668348161224662],[118,275,67,-0.11361794098753081],[118,275,68,-0.1104884801182498],[118,275,69,-0.10729577606184026],[118,275,70,-0.10404056278650625],[118,275,71,-0.100723631533425],[118,275,72,-0.09734583116848933],[118,275,73,-0.09390806852370581],[118,275,74,-0.09041130872796072],[118,275,75,-0.08685657552753329],[118,275,76,-0.08324495159607781],[118,275,77,-0.07957757883417726],[118,275,78,-0.07585565865846222],[118,275,79,-0.07208045228026094],[118,276,64,-0.11854964116494104],[118,276,65,-0.11556047756999016],[118,276,66,-0.11250806988216672],[118,276,67,-0.10939299075407538],[118,276,68,-0.10621586679169076],[118,276,69,-0.10297737887627978],[118,276,70,-0.09967826247526917],[118,276,71,-0.09631930794216914],[118,276,72,-0.0929013608055087],[118,276,73,-0.08942532204690568],[118,276,74,-0.08589214836797548],[118,276,75,-0.08230285244646773],[118,276,76,-0.07865850318134487],[118,276,77,-0.07496022592690854],[118,276,78,-0.07120920271596687],[118,276,79,-0.06740667247201021],[118,277,64,-0.11449419383971476],[118,277,65,-0.11145165741043783],[118,277,66,-0.1083477397804381],[118,277,67,-0.10518302205330649],[118,277,68,-0.10195813707841744],[118,277,69,-0.09867376971124131],[118,277,70,-0.095330657062068],[118,277,71,-0.0919295887332583],[118,277,72,-0.08847140704497786],[118,277,73,-0.08495700724953426],[118,277,74,-0.08138733773402396],[118,277,75,-0.07776340021167627],[118,277,76,-0.0740862499016105],[118,277,77,-0.07035699569711057],[118,277,78,-0.06657680032240992],[118,277,79,-0.06274688047795524],[118,278,64,-0.1104569863487408],[118,278,65,-0.10736100575055907],[118,278,66,-0.10420550751318003],[118,278,67,-0.10099108135268725],[118,278,68,-0.0977183665186992],[118,278,69,-0.09438805199272043],[118,278,70,-0.09100087667436962],[118,278,71,-0.08755762955559898],[118,278,72,-0.08405914988285984],[118,278,73,-0.08050632730733892],[118,278,74,-0.07690010202296477],[118,278,75,-0.07324146489257988],[118,278,76,-0.06953145756198792],[118,278,77,-0.06577117256198356],[118,278,78,-0.06196175339835769],[118,278,79,-0.058104394629845735],[118,279,64,-0.10644095183427693],[118,279,65,-0.10329148835422097],[118,279,66,-0.10008437028033196],[118,279,67,-0.09682019610140113],[118,279,68,-0.09349961162414627],[118,279,69,-0.09012331010928598],[118,279,70,-0.08669203239494905],[118,279,71,-0.08320656700753182],[118,279,72,-0.07966775025996425],[118,279,73,-0.07607646633750509],[118,279,74,-0.07243364737076341],[118,279,75,-0.06874027349634992],[118,279,76,-0.06499737290485857],[118,279,77,-0.06120602187629176],[118,279,78,-0.057367344802921105],[118,279,79,-0.05348251419954708],[118,280,64,-0.1024490019779088],[118,280,65,-0.0992460494821008],[118,280,66,-0.09598730373904801],[118,280,67,-0.09267337216905874],[118,280,68,-0.0893049072927059],[118,280,69,-0.08588260680433851],[118,280,70,-0.08240721363237796],[118,280,71,-0.07887951598651977],[118,280,72,-0.07530034739179592],[118,280,73,-0.07167058670962118],[118,280,74,-0.06799115814552048],[118,280,75,-0.06426303124393817],[118,280,76,-0.0604872208698341],[118,280,77,-0.05666478717717649],[118,280,78,-0.05279683556432274],[118,280,79,-0.0488845166162562],[118,281,64,-0.09848402457323918],[118,281,65,-0.0952276094382164],[118,281,66,-0.09191725952502328],[118,281,67,-0.08855359134277835],[118,281,68,-0.08513726428245394],[118,281,69,-0.08166898062756628],[118,281,70,-0.07814948555110035],[118,281,71,-0.07457956709879021],[118,281,72,-0.07096005615870604],[118,281,73,-0.06729182641727866],[118,281,74,-0.0635757943014495],[118,281,75,-0.059812918907355794],[118,281,76,-0.05600420191524941],[118,281,77,-0.05215068749076174],[118,281,78,-0.04825346217250709],[118,281,79,-0.04431365474598964],[118,282,64,-0.09454888115547949],[118,282,65,-0.0912390621738326],[118,282,66,-0.08787716283165342],[118,282,67,-0.08446380888253874],[118,282,68,-0.08099966674407721],[118,282,69,-0.07748544344549607],[118,282,70,-0.07392188656098542],[118,282,71,-0.07030978412882044],[118,282,72,-0.06664996455623867],[118,282,73,-0.06294329651019648],[118,282,74,-0.05919068879369538],[118,282,75,-0.055393090208089524],[118,282,76,-0.05155148940107024],[118,282,77,-0.0476669147004416],[118,282,78,-0.0437404339336786],[118,282,79,-0.039773154233232744],[118,283,64,-0.09064640468814145],[118,283,65,-0.08728327294894656],[118,283,66,-0.08386991004723465],[118,283,67,-0.08040695113501123],[118,283,68,-0.0768950698122603],[118,283,69,-0.07333497801135352],[118,283,70,-0.06972742586657532],[118,283,71,-0.06607320156888835],[118,283,72,-0.06237313120589061],[118,283,73,-0.05862807858709518],[118,283,74,-0.05483894505421638],[118,283,75,-0.05100666927687986],[118,283,76,-0.047132227033448215],[118,283,77,-0.04321663097707801],[118,283,78,-0.039260930386999016],[118,283,79,-0.0352662109049815],[118,284,64,-0.08677939730672857],[118,284,65,-0.08336307605125015],[118,284,66,-0.07989836645009679],[118,284,67,-0.07638591320576854],[118,284,68,-0.07282639725587009],[118,284,69,-0.06922053559412178],[118,284,70,-0.06556908107592091],[118,284,71,-0.06187282220857693],[118,284,72,-0.05813258292617646],[118,284,73,-0.05434922234920675],[118,284,74,-0.05052363452861819],[118,284,75,-0.046656748174750295],[118,284,76,-0.04274952637080559],[118,284,77,-0.03880296627099322],[118,284,78,-0.034818098783328866],[118,284,79,-0.03079598823705837],[118,285,64,-0.08295062811932913],[118,285,65,-0.07948127257246818],[118,285,66,-0.07596536396157128],[118,285,67,-0.07240355668976378],[118,285,68,-0.06879653918683043],[118,285,69,-0.0651450336666976],[118,285,70,-0.06144979586889471],[118,285,71,-0.05771161478412362],[118,285,72,-0.053931312363887374],[118,285,73,-0.05010974321431033],[118,285,74,-0.046247794273827914],[118,285,75,-0.04234638447517222],[118,285,76,-0.03840646439133702],[118,285,77,-0.03442901586564423],[118,285,78,-0.030415051625897055],[118,285,79,-0.026365614882590344],[118,286,64,-0.07916283106430838],[118,286,65,-0.07564062824227571],[118,286,66,-0.07207369895699645],[118,286,67,-0.06846270746029068],[118,286,68,-0.06480834982790246],[118,286,69,-0.061111353653352546],[118,286,70,-0.057372477725199406],[118,286,71,-0.053592511687834604],[118,286,72,-0.04977227568576492],[118,286,73,-0.045912619991516496],[118,286,74,-0.04201442461683183],[118,286,75,-0.038078598907594075],[118,286,76,-0.03410608112215774],[118,286,77,-0.030097837993206783],[118,286,78,-0.026054864273129502],[118,286,79,-0.02197818226287737],[118,287,64,-0.07541870282500085],[118,287,65,-0.07184387131969094],[118,287,66,-0.06822613013465728],[118,287,67,-0.06456615351631731],[118,287,68,-0.060864645339258255],[118,287,69,-0.057122338736395606],[118,287,70,-0.05333999571196116],[118,287,71,-0.04951840673744956],[118,287,72,-0.045658390330477],[118,287,73,-0.04176079261668553],[118,287,74,-0.03782648687436313],[118,287,75,-0.03385637306221764],[118,287,76,-0.029851377329978557],[118,287,77,-0.025812451511952827],[118,287,78,-0.02174057260352011],[118,287,79,-0.01763674222053563],[118,288,64,-0.07172090080130591],[118,288,65,-0.06809369054184697],[118,288,66,-0.06442537644256227],[118,288,67,-0.06071664288809478],[118,288,68,-0.05696820170375205],[118,288,69,-0.053180791721933296],[118,288,70,-0.04935517833080527],[118,288,71,-0.04549215300535783],[118,288,72,-0.04159253282079217],[118,288,73,-0.03765715994837615],[118,288,74,-0.033686901133434505],[118,288,75,-0.029682647155915315],[118,288,76,-0.025645312273204268],[118,288,77,-0.021575833645314152],[118,288,78,-0.01747517074243357],[118,288,79,-0.013344304734805107],[118,289,64,-0.06807204113839105],[118,289,65,-0.06439273313035035],[118,289,66,-0.06067411506326495],[118,289,67,-0.056916881601253966],[118,289,68,-0.05312175267110117],[118,289,69,-0.04928947296494493],[118,289,70,-0.04542081142463461],[118,289,71,-0.04151656070788451],[118,289,72,-0.03757753663617644],[118,289,73,-0.033604577624549964],[118,289,74,-0.02959854409294127],[118,289,75,-0.0255603178595189],[118,289,76,-0.021490801515684138],[118,289,77,-0.017390917782863002],[118,289,78,-0.0132616088510763],[118,289,79,-0.009103835699256685],[118,290,64,-0.0644746968123322],[118,290,65,-0.0607436028550524],[118,290,66,-0.0569749794565568],[118,290,67,-0.0531695316992116],[118,290,68,-0.049327987760797665],[118,290,69,-0.04545109835349176],[118,290,70,-0.041539636143926334],[118,290,71,-0.037594395154462196],[118,290,72,-0.03361619014562467],[118,290,73,-0.029605855979842],[118,290,74,-0.025564246966146148],[118,290,75,-0.021492236186286345],[118,290,76,-0.01739071480192092],[118,290,77,-0.013260591343016326],[118,290,78,-0.009102790977437825],[118,290,79,-0.004918254761702212],[118,291,64,-0.06093139577281595],[118,291,65,-0.05714885815535897],[118,291,66,-0.053330557460158495],[118,291,67,-0.049477209324015226],[118,291,68,-0.04558955032388201],[118,291,69,-0.041668337352192414],[118,291,70,-0.03771434697268031],[118,291,71,-0.03372837475682364],[118,291,72,-0.029711234600862835],[118,291,73,-0.025663758023535987],[118,291,74,-0.021586793444184543],[118,291,75,-0.017481205441686937],[118,291,76,-0.013347873993881071],[118,291,77,-0.009187693697605609],[118,291,78,-0.005001572969345558],[118,291,79,-7.904332264515312E-4],[118,292,64,-0.057444619142739434],[118,292,65,-0.05361101031891541],[118,292,66,-0.049743389448241526],[118,292,67,-0.04584248285545872],[118,292,68,-0.04190903566340656],[118,292,69,-0.0379438111047902],[118,292,70,-0.033947589813845686],[118,292,71,-0.02992116909803763],[118,292,72,-0.025865362189743585],[118,292,73,-0.02178099747806328],[118,292,74,-0.017668917720406657],[118,292,75,-0.01352997923432206],[118,292,76,-0.009365051069219393],[118,292,77,-0.005175014158124741],[118,292,78,-9.607604494469291E-4],[118,292,79,0.003276807981273666],[118,293,64,-0.054016799474904786],[118,293,65,-0.05013252171786173],[118,293,66,-0.046215966547982046],[118,293,67,-0.04226787110866931],[118,293,68,-0.038288989213794755],[118,293,69,-0.03428009059602169],[118,293,70,-0.030241960134433005],[118,293,71,-0.026175397061600658],[118,293,72,-0.02208121415004749],[118,293,73,-0.017960236878241637],[118,293,74,-0.013813302575776898],[118,293,75,-0.009641259548199915],[118,293,76,-0.005444966181140709],[118,293,77,-0.001225290023881137],[118,293,78,0.003016893147658406],[118,293,79,0.007280700288540901],[118,294,64,-0.050650319065709104],[118,294,65,-0.04671580410256285],[118,294,66,-0.04275072891404544],[118,294,67,-0.03875584159006716],[118,294,68,-0.03473190477899436],[118,294,69,-0.030679694872681212],[118,294,70,-0.026600001170210275],[118,294,71,-0.022493625020479455],[118,294,72,-0.01836137894358525],[118,294,73,-0.014204085731147481],[118,294,74,-0.010022577525219789],[118,294,75,-0.005817694876257051],[118,294,76,-0.0015902857797890912],[118,294,77,0.0026587953080631083],[118,294,78,0.006928688476246184],[118,294,79,0.011218529385637277],[118,295,64,-0.04734750832575001],[118,295,65,-0.04336321695272721],[118,295,66,-0.03935006406091916],[118,295,67,-0.03530880881161144],[118,295,68,-0.03124022282933639],[118,295,69,-0.02714508932379571],[118,295,70,-0.023024202189892512],[118,295,71,-0.018878365086013024],[118,295,72,-0.014708390490509746],[118,295,73,-0.010515098736528075],[118,295,74,-0.006299317024822171],[118,295,75,-0.002061878415031984],[118,295,76,0.002196379204931334],[118,295,77,0.006474614171252238],[118,295,78,0.010771982118350773],[118,295,79,0.01508763707482337],[118,296,64,-0.04411064420751816],[118,296,65,-0.04007706588609253],[118,296,66,-0.03601630525327075],[118,296,67,-0.03192913266351169],[118,296,68,-0.027816328857284786],[118,296,69,-0.02367868402009389],[118,296,70,-0.019516996819011492],[118,296,71,-0.015332073416865447],[118,296,72,-0.011124726464027374],[118,296,73,-0.006895774067948765],[118,296,74,-0.002646038740085399],[118,296,75,0.0016236536793130807],[118,296,76,0.005912475118903818],[118,296,77,0.010219596396302197],[118,296,78,0.014544188360504612],[118,296,79,0.018885423056709358],[118,297,64,-0.040941948690088506],[118,297,65,-0.036859601124586194],[118,297,66,-0.032751729954238626],[118,297,67,-0.02861911684531425],[118,297,68,-0.024462551791980813],[118,297,69,-0.020282832112673108],[118,297,70,-0.01608076142337124],[118,297,71,-0.011857148587930133],[118,297,72,-0.007612806645413098],[118,297,73,-0.0033485517145741134],[118,297,74,9.347981248740284E-4],[118,297,75,0.005236423973721802],[118,297,76,0.009555507277818107],[118,297,77,0.013891231015573588],[118,297,78,0.01824278090843498],[118,297,79,0.02260934665435846],[118,298,64,-0.03784358732072875],[118,298,65,-0.03371301601787875],[118,298,66,-0.029558558331574725],[118,298,67,-0.02538100735527711],[118,298,68,-0.02118116247249717],[118,298,69,-0.016959828290780563],[118,298,70,-0.012717813551999593],[118,298,71,-0.008455930019097946],[118,298,72,-0.004174991339237266],[118,298,73,1.241881165066766E-4],[118,298,74,0.004440794437263529],[118,298,75,0.008774015379818298],[118,298,76,0.013123041599753839],[118,298,77,0.0174870679061433],[118,298,78,0.021865294539814097],[118,298,79,0.026256928475209877],[118,299,64,-0.034817667813592586],[118,299,65,-0.030639445624500133],[118,299,66,-0.026438951821807465],[118,299,67,-0.022216991038208143],[118,299,68,-0.017974372179979207],[118,299,69,-0.0137119072988834],[118,299,70,-0.00943041043977752],[118,299,71,-0.005130696464071875],[118,299,72,-8.135798489896165E-4],[118,299,73,0.0035201265372233267],[118,299,74,0.007869612684509017],[118,299,75,0.012234072714136408],[118,299,76,0.01661270617613595],[118,299,77,0.021004719370885425],[118,299,78,0.02540932669486791],[118,299,79,0.02982575201062941],[118,300,64,-0.031866238705409826],[118,300,65,-0.027640965350428995],[118,300,66,-0.023395011752338588],[118,300,67,-0.019129194191675913],[118,300,68,-0.014844331228578762],[118,300,69,-0.010541242512937893],[118,300,70,-0.006220747569651901],[118,300,71,-0.0018836645591318243],[118,300,72,0.002469190986995405],[118,300,73,0.006837007454835765],[118,300,74,0.011218978462199665],[118,300,75,0.015614304197102413],[118,300,76,0.020022192781163833],[118,300,77,0.024441861657758926],[118,300,78,0.028872539004944315],[118,300,79,0.03331346517318623],[118,301,64,-0.02899128806809948],[118,301,65,-0.024719589645082307],[118,301,66,-0.02042877802139488],[118,301,67,-0.016119681230515007],[118,301,68,-0.011793127615105408],[118,301,69,-0.0074499445757766625],[118,301,70,-0.0030909572943506464],[118,301,71,0.0012830125682300846],[118,301,72,0.005671148199395331],[118,301,73,0.010072638987694116],[118,301,74,0.014486681901168506],[118,301,75,0.018912482890856456],[118,301,76,0.02334925831979724],[118,301,77,0.02779623641738966],[118,301,78,0.03225265875912858],[118,301,79,0.03671778177174505],[118,302,64,-0.02619474227846299],[118,302,65,-0.0218772707548612],[118,302,66,-0.017542227835997848],[118,302,67,-0.013190453409790335],[118,302,68,-0.00882278572755701],[118,302,69,-0.004440060091780808],[118,302,70,-4.310751777072269E-5],[118,302,71,0.00436724663063397],[118,302,72,0.008790184031363883],[118,302,73,0.013224894820274327],[118,302,74,0.017670579033532703],[118,302,75,0.02212644807573361],[118,302,76,0.026591726214121272],[118,302,77,0.03106565209876622],[118,302,78,0.035547480308722235],[118,302,79,0.04003648292419022],[118,303,64,-0.0234784648448728],[118,303,65,-0.01911589753417025],[118,303,66,-0.014737274507864054],[118,303,67,-0.010343447606132074],[118,303,68,-0.005935265112444857],[118,303,69,-0.001513570380749927],[118,303,70,0.002920799564051803],[118,303,71,0.007367015452186362],[118,303,72,0.011824257221695516],[118,303,73,0.016291715497581145],[118,303,74,0.020768593097785254],[118,303,75,0.025254106565499722],[118,303,76,0.02974748772818453],[118,303,77,0.03424798528314354],[118,303,78,0.03875486640968297],[118,303,79,0.04326741840787734],[118,304,64,-0.020844255290891525],[118,304,65,-0.01643729431384231],[118,304,66,-0.012015766307168895],[118,304,67,-0.007580535157372758],[118,304,68,-0.0031324593008409153],[118,304,69,0.0013276097091035888],[118,304,70,0.005798828662461921],[118,304,71,0.01028036417997736],[118,304,72,0.014771394227764283],[118,304,73,0.019271109658993354],[118,304,74,0.023778715783016015],[118,304,75,0.028293433961418563],[118,304,76,0.0328145032313876],[118,304,77,0.0373411819562344],[118,304,78,0.041872749503104004],[118,304,79,0.04640850794789349],[118,305,64,-0.01829384809596345],[118,305,65,-0.01384321982711445],[118,305,66,-0.009379485374320257],[118,305,67,-0.004903520760636208],[118,305,68,-4.161946932992773E-4],[118,305,69,0.004081632928880551],[118,305,70,0.008589112536040198],[118,305,71,0.01310540643554457],[118,305,72,0.01762969038807761],[118,305,73,0.022161155211391642],[118,305,74,0.026699008412097824],[118,305,75,0.031242475844985823],[118,305,76,0.03579080340025765],[118,305,77,0.0403432587185202],[118,305,78,0.044899132933564394],[118,305,79,0.04945774244295509],[118,306,64,-0.015828911693102878],[118,306,65,-0.011335366193076703],[118,306,66,-0.006830146689664224],[118,306,67,-0.002314141428797517],[118,306,68,0.0022117704964295555],[118,306,69,0.006746720697524709],[118,306,70,0.011289853070875155],[118,306,71,0.01584032540638615],[118,306,72,0.020397311024530296],[118,306,73,0.024960000441653495],[118,306,74,0.029527603063925656],[118,306,75,0.03409934890941793],[118,306,76,0.038674490358695864],[118,306,77,0.04325230393377113],[118,306,78,0.04783209210544032],[118,306,79,0.05241318512903478],[118,307,64,-0.01345104752351857],[118,307,65,-0.008915357957532705],[118,307,66,-0.004369397101059935],[118,307,67,1.8593449474865742E-4],[118,307,68,0.00474974723895398],[118,307,69,0.009321164111220102],[118,307,70,0.013899322301318517],[118,307,71,0.01848337487759113],[118,307,72,0.02307249248442564],[118,307,73,0.027665865068583845],[118,307,74,0.032262703634777096],[118,307,75,0.036862242029964784],[118,307,76,0.041463738756768675],[118,307,77,0.046066478815846135],[118,307,78,0.050669775577248374],[118,307,79,0.05527297268078876],[118,308,64,-0.011161789148303798],[118,308,65,-0.006584751191405398],[118,308,66,-0.001998814409457539],[118,308,67,0.002595108262874124],[118,308,68,0.007196116627929905],[118,308,69,0.011803324893517195],[118,308,70,0.01641586337108264],[118,308,71,0.021032880203441837],[118,308,72,0.025653543122118677],[118,308,73,0.030277041234134786],[118,308,74,0.03490258683864582],[118,308,75,0.03952941727289669],[118,308,76,0.04415679678789154],[118,308,77,0.048784018453620126],[118,308,78,0.05341040609386723],[118,308,79,0.05803531625062994],[118,309,64,-0.008962601417124474],[118,309,65,-0.0043450326466151976],[118,309,66,2.8009348759076846E-4],[118,309,67,0.004911851593132427],[118,309,68,0.009549330759956023],[118,309,69,0.014191636286260453],[118,309,70,0.01883789143475441],[118,309,71,0.02348723921906648],[118,309,72,0.02813884422035931],[118,309,73,0.032791894433992344],[118,309,74,0.037445603146626844],[118,309,75,0.04209921084324583],[118,309,76,0.046751987144485696],[118,309,77,0.05140323277411932],[118,309,78,0.056052281556719985],[118,309,79,0.06069850244552859],[118,310,64,-0.006854879693848709],[118,310,65,-0.0021976189693765635],[118,310,66,0.0024658893945448956],[118,310,67,0.007134707477859187],[118,310,68,0.011807913555732616],[118,310,69,0.016484603881378596],[118,310,70,0.02116389449978716],[118,310,71,0.025844923092201752],[118,310,72,0.030526850851396323],[118,310,73,0.03520886438759259],[118,310,74,0.03989017766541719],[118,310,75,0.044570033971365164],[118,310,76,0.04924770791217206],[118,310,77,0.053922507443930526],[118,310,78,0.05859377593198199],[118,310,79,0.06326089424160784],[118,311,64,-0.004839949139236285],[118,311,65,-1.438559710338072E-4],[118,311,66,0.004557207558493828],[118,311,67,0.009262290935832848],[118,311,68,0.013970461522359826],[118,311,69,0.018680806393409383],[118,311,70,0.02339243420883881],[118,311,71,0.028104477114934412],[118,311,72,0.03281609267770946],[118,311,73,0.0375264658474332],[118,311,74,0.042234810954795574],[118,311,75,0.046940373738167646],[118,311,76,0.051642433402364324],[118,311,77,0.05634030470874345],[118,311,78,0.061033340096673216],[118,311,79,0.0657209318363905],[118,312,64,-0.0029190640506249477],[118,312,65,0.0018149820436324238],[118,312,66,0.0065527543518408005],[118,312,67,0.011293289705566104],[118,312,68,0.016035644456843454],[118,312,69,0.020778896372827066],[118,312,70,0.025522146562529976],[118,312,71,0.030264521435494227],[118,312,72,0.03500517469244266],[118,312,73,0.039743289347752814],[118,312,74,0.04447807978415584],[118,312,75,0.049208793839121606],[118,312,76,0.05393471492333565],[118,312,77,0.058655164171103544],[118,312,78,0.0633695026227129],[118,312,79,0.06807713343877614],[118,313,64,-0.001093407258566284],[118,313,65,0.0036776928906710193],[118,313,66,0.008451308897105242],[118,313,67,0.013226464880273514],[118,313,68,0.018002206090855857],[118,313,69,0.022777600860224137],[118,313,70,0.02755174258266968],[118,313,71,0.032323751730147204],[118,313,72,0.03709277789958966],[118,313,73,0.04185800189263163],[118,313,74,0.04661863782814593],[118,313,75,0.05137393528705378],[118,313,76,0.05612318148981427],[118,313,77,0.06086570350642853],[118,313,78,0.06560087049898991],[118,313,79,0.07032809599680243],[118,314,64,6.359104194811754E-4],[118,314,65,0.0054431470636915474],[118,314,66,0.010251723633730364],[118,314,67,0.015060651484403484],[118,314,68,0.019868964676639567],[118,314,69,0.024675721981230136],[118,314,70,0.02948000891583176],[118,314,71,0.0342809398150721],[118,314,72,0.03907765993381049],[118,314,73,0.043869347583389395],[118,314,74,0.04865521630128958],[118,314,75,0.05343451705363739],[118,314,76,0.05820654047098048],[118,314,77,0.06297061911716145],[118,314,78,0.06772612979132206],[118,314,79,0.07247249586306126],[118,315,64,0.002267850668490695],[118,315,65,0.00711028823315174],[118,315,66,0.011952924826988592],[118,315,67,0.01679475899182957],[118,315,68,0.021634813514149004],[118,315,69,0.02647213748226454],[118,315,70,0.03130580837738123],[118,315,71,0.03613493419831981],[118,315,72,0.040958655619981466],[118,315,73,0.04577614818538586],[118,315,74,0.050586624531694435],[118,315,75,0.05538933664966755],[118,315,76,0.06018357817697215],[118,315,77,0.06496868672516859],[118,315,78,0.0697440462404105],[118,315,79,0.07450908939788034],[118,316,64,0.003801448108177702],[118,316,65,0.008678133688138606],[118,316,66,0.013553913018922115],[118,316,67,0.018427771785635705],[118,316,68,0.023298721419361873],[118,316,69,0.02816580120705786],[118,316,70,0.03302808043588207],[118,316,71,0.03788466057178397],[118,316,72,0.042734677472407806],[118,316,73,0.04757730363414897],[118,316,74,0.052411750473774055],[118,316,75,0.05723727064405382],[118,316,76,0.06205316038382411],[118,316,77,0.06685876190230561],[118,316,78,0.07165346579771545],[118,316,79,0.07643671351019166],[118,317,64,0.005235810668356572],[118,317,65,0.010145774720720258],[118,317,66,0.015053763421396443],[118,317,67,0.01995874955957569],[118,317,68,0.024859733133846734],[118,317,69,0.02975574351402313],[118,317,70,0.034645841637970826],[118,317,71,0.039529122243272874],[118,317,72,0.04440471613378619],[118,317,73,0.04927179248092328],[118,317,74,0.05412956116007467],[118,317,75,0.05897727512161868],[118,317,76,0.0638142327969341],[118,317,77,0.06863978053924744],[118,317,78,0.07345331509934688],[118,317,79,0.07825428613618429],[118,318,64,0.0065701199072528416],[118,318,65,0.011512376952774656],[118,318,66,0.016451626251172885],[118,318,67,0.02138682766110947],[118,318,68,0.026316969675482527],[118,318,69,0.031241071634377865],[118,318,70,0.03615818597359369],[118,318,71,0.041067400508575214],[118,318,72,0.04596784075381158],[118,318,73,0.05085867227752855],[118,318,74,0.05573910309209648],[118,318,75,0.06060838607959304],[118,318,76,0.0654658214529438],[118,318,77,0.07031075925246671],[118,318,78,0.07514260187785587],[118,318,79,0.07996080665562472],[118,319,64,0.007803631272820549],[118,319,65,0.01277718060534877],[118,319,66,0.017746727007050322],[118,319,67,0.02271121737607107],[118,319,68,0.027669628630389492],[118,319,69,0.032620969971070835],[118,319,70,0.037564285181664575],[118,319,71,0.042498654963579546],[118,319,72,0.047423199307487174],[118,319,73,0.05233707990058975],[118,319,74,0.05723950257017113],[118,319,75,0.06212971976286946],[118,319,76,0.06700703306009614],[118,319,77,0.0718707957294252],[118,319,78,0.07672041531199039],[118,319,79,0.08155535624590929],[119,-64,64,-0.11880947045858958],[119,-64,65,-0.12249525848657039],[119,-64,66,-0.12606788348423625],[119,-64,67,-0.12952589170350248],[119,-64,68,-0.13286798646484976],[119,-64,69,-0.1360930338362334],[119,-64,70,-0.13920006837595156],[119,-64,71,-0.142188298939376],[119,-64,72,-0.14505711454956272],[119,-64,73,-0.14780609033165248],[119,-64,74,-0.15043499351130696],[119,-64,75,-0.15294378947684473],[119,-64,76,-0.15533264790534151],[119,-64,77,-0.15760194895256818],[119,-64,78,-0.15975228950681608],[119,-64,79,-0.1617844895065883],[119,-63,64,-0.11316081543060696],[119,-63,65,-0.11683474671676686],[119,-63,66,-0.12039610628062947],[119,-63,67,-0.12384343741650583],[119,-63,68,-0.12717543992430003],[119,-63,69,-0.13039097578047476],[119,-63,70,-0.133489074872998],[119,-63,71,-0.13646894080017258],[119,-63,72,-0.1393299567333699],[119,-63,73,-0.14207169134357445],[119,-63,74,-0.14469390479198374],[119,-63,75,-0.14719655478433125],[119,-63,76,-0.1495798026891979],[119,-63,77,-0.1518440197201789],[119,-63,78,-0.15398979318196138],[119,-63,79,-0.1560179327802913],[119,-62,64,-0.1074325354551976],[119,-62,65,-0.1110938592727927],[119,-62,66,-0.11464322954264616],[119,-62,67,-0.1180791865069366],[119,-62,68,-0.12140042632390946],[119,-62,69,-0.12460580673045873],[119,-62,70,-0.127694352768706],[119,-62,71,-0.13066526257648803],[119,-62,72,-0.1335179132417682],[119,-62,73,-0.1362518667208783],[119,-62,74,-0.13886687582084112],[119,-62,75,-0.14136289024543525],[119,-62,76,-0.14374006270526862],[119,-62,77,-0.145998755091731],[119,-62,78,-0.14813954471487933],[119,-62,79,-0.1501632306052294],[119,-61,64,-0.1016289387054945],[119,-61,65,-0.10527691157998886],[119,-61,66,-0.10881357562537108],[119,-61,67,-0.11223746793862188],[119,-61,68,-0.11554728091702404],[119,-61,69,-0.11874186791191577],[119,-61,70,-0.12182024894646837],[119,-61,71,-0.12478161649739106],[119,-61,72,-0.1276253413405778],[119,-61,73,-0.13035097846061205],[119,-61,74,-0.13295827302436813],[119,-61,75,-0.13544716641837728],[119,-61,76,-0.13781780235022434],[119,-61,77,-0.1400705330138441],[119,-61,78,-0.14220592531877096],[119,-61,79,-0.144224767183317],[119,-60,64,-0.09575437838848688],[119,-60,65,-0.09938826458590777],[119,-60,66,-0.10291151287709577],[119,-60,67,-0.10632265712229783],[119,-60,68,-0.10962038584038003],[119,-60,69,-0.11280354785332591],[119,-60,70,-0.11587115799477621],[119,-60,71,-0.11882240288251489],[119,-60,72,-0.12165664675492183],[119,-60,73,-0.12437343737130147],[119,-60,74,-0.12697251197632808],[119,-60,75,-0.12945380332827983],[119,-60,76,-0.13181744579132104],[119,-60,77,-0.1340637814917045],[119,-60,78,-0.13619336653795255],[119,-60,79,-0.138206977304981],[119,-59,64,-0.08981324783750844],[119,-59,65,-0.09343231984317135],[119,-59,66,-0.09694145071296734],[119,-59,67,-0.10033917098045397],[119,-59,68,-0.10362416517055806],[119,-59,69,-0.10679527743438777],[119,-59,70,-0.10985151724810471],[119,-59,71,-0.11279206517576601],[119,-59,72,-0.11561627869615054],[119,-59,73,-0.11832369809348153],[119,-59,74,-0.1209140524122887],[119,-59,75,-0.12338726547607648],[119,-59,76,-0.12574346197006148],[119,-59,77,-0.12798297358785504],[119,-59,78,-0.1301063452421336],[119,-59,79,-0.13211434133928668],[119,-58,64,-0.08380997547967695],[119,-58,65,-0.08741351446681955],[119,-58,66,-0.09090783456267137],[119,-58,67,-0.09429146288578627],[119,-58,68,-0.09756307985363144],[119,-58,69,-0.10072152480728525],[119,-58,70,-0.10376580170022387],[119,-58,71,-0.1066950848510928],[119,-58,72,-0.10950872476048157],[119,-58,73,-0.1122062539916211],[119,-58,74,-0.11478739311523256],[119,-58,75,-0.11725205671820693],[119,-58,76,-0.1196003594763756],[119,-58,77,-0.12183262229123781],[119,-58,78,-0.1239493784907083],[119,-58,79,-0.1259513800938492],[119,-57,64,-0.07774901967861514],[119,-57,65,-0.08133631596647017],[119,-57,66,-0.08481514069248075],[119,-57,67,-0.0881840174735824],[119,-57,68,-0.09144162250833088],[119,-57,69,-0.09458679019107852],[119,-57,70,-0.0976185187902524],[119,-57,71,-0.10053597619063737],[119,-57,72,-0.10333850569968561],[119,-57,73,-0.1060256319177646],[119,-57,74,-0.10859706667257707],[119,-57,75,-0.11105271501743463],[119,-57,76,-0.11339268129363433],[119,-57,77,-0.11561727525682142],[119,-57,78,-0.11772701826738319],[119,-57,79,-0.11972264954485201],[119,-56,64,-0.07163486345229975],[119,-56,65,-0.07520521695313587],[119,-56,66,-0.07866787090151528],[119,-56,67,-0.08202134532788352],[119,-56,68,-0.0852643121025779],[119,-56,69,-0.08839560053906592],[119,-56,70,-0.09141420306130366],[119,-56,71,-0.09431928093512232],[119,-56,72,-0.0971101700636573],[119,-56,73,-0.09978638684673391],[119,-56,74,-0.10234763410444958],[119,-56,75,-0.10479380706462005],[119,-56,76,-0.10712499941435938],[119,-56,77,-0.10934150941565357],[119,-56,78,-0.11144384608499247],[119,-56,79,-0.11343273543702725],[119,-55,64,-0.06547200906587913],[119,-55,65,-0.06902472972055129],[119,-55,66,-0.0724705470920538],[119,-55,67,-0.07580797754127333],[119,-55,68,-0.07903568850322673],[119,-55,69,-0.08215250407895702],[119,-55,70,-0.08515741069156901],[119,-55,71,-0.08804956280631215],[119,-55,72,-0.09082828871472226],[119,-55,73,-0.09349309638274284],[119,-55,74,-0.09604367936305636],[119,-55,75,-0.09847992277130446],[119,-55,76,-0.10080190932645472],[119,-55,77,-0.10300992545518395],[119,-55,78,-0.10510446746033708],[119,-55,79,-0.10708624775343134],[119,-54,64,-0.05926497249977458],[119,-54,65,-0.06279938070130642],[119,-54,66,-0.06622770571421221],[119,-54,67,-0.06954846014859772],[119,-54,68,-0.07276030689932578],[119,-54,69,-0.07586206472617374],[119,-54,70,-0.0788527138981473],[119,-54,71,-0.08173140190185846],[119,-54,72,-0.08449744921398472],[119,-54,73,-0.08715035513772129],[119,-54,74,-0.08968980370346569],[119,-54,75,-0.09211566963340823],[119,-54,76,-0.09442802437028486],[119,-54,77,-0.09662714217017165],[119,-54,78,-0.0987135062593657],[119,-54,79,-0.10068781505533342],[119,-53,64,-0.0530182777929078],[119,-53,65,-0.0565337047976463],[119,-53,66,-0.05994389208483386],[119,-53,67,-0.06324734843446556],[119,-53,68,-0.06644273209874763],[119,-53,69,-0.0695288563701223],[119,-53,70,-0.07250469521346847],[119,-53,71,-0.07536938896238476],[119,-53,72,-0.07812225007956941],[119,-53,73,-0.0807627689812136],[119,-53,74,-0.08329061992564568],[119,-53,75,-0.0857056669658951],[119,-53,76,-0.08800796996644189],[119,-53,77,-0.090197790684023],[119,-53,78,-0.09227559891254211],[119,-53,79,-0.09424207869206769],[119,-52,64,-0.04673645126089787],[119,-52,65,-0.05023223958677003],[119,-52,66,-0.05362365458042917],[119,-52,67,-0.0569092011143697],[119,-52,68,-0.060087532698023916],[119,-52,69,-0.06315745703327302],[119,-52,70,-0.06611794163414952],[119,-52,71,-0.06896811951063664],[119,-52,72,-0.07170729491658734],[119,-52,73,-0.07433494916167216],[119,-52,74,-0.07685074648759249],[119,-52,75,-0.07925454000823651],[119,-52,76,-0.08154637771403517],[119,-52,77,-0.0837265085403911],[119,-52,78,-0.08579538850023316],[119,-52,79,-0.08775368688067231],[119,-51,64,-0.04042401558953945],[119,-51,65,-0.0438995194009425],[119,-51,66,-0.047271538704482974],[119,-51,67,-0.05053857438974163],[119,-51,68,-0.053699275125702495],[119,-51,69,-0.056752442903371114],[119,-51,70,-0.059697038642598343],[119,-51,71,-0.06253218786302406],[119,-51,72,-0.06525718641915212],[119,-51,73,-0.0678715062994738],[119,-51,74,-0.07037480148987418],[119,-51,75,-0.07276691390099688],[119,-51,76,-0.07504787935982715],[119,-51,77,-0.07721793366536533],[119,-51,78,-0.07927751870844113],[119,-51,79,-0.08122728865564932],[119,-50,64,-0.034085483803413696],[119,-50,65,-0.0375400692822746],[119,-50,66,-0.040892081028976346],[119,-50,67,-0.04414001587679228],[119,-50,68,-0.047282517559076864],[119,-50,69,-0.050318382238617954],[119,-50,70,-0.05324656410121675],[119,-50,71,-0.05606618101340166],[119,-50,72,-0.05877652024428759],[119,-50,73,-0.06137704425150714],[119,-50,74,-0.06386739653143325],[119,-50,75,-0.06624740753338487],[119,-50,76,-0.06851710063806238],[119,-50,77,-0.07067669820009137],[119,-50,78,-0.0727266276547256],[119,-50,79,-0.0746675276886859],[119,-49,64,-0.02772535310945823],[119,-49,65,-0.03115839881199267],[119,-49,66,-0.03448980300995175],[119,-49,67,-0.03771805840896347],[119,-49,68,-0.04084180371411017],[119,-49,69,-0.04385982914565789],[119,-49,70,-0.04677108201902658],[119,-49,71,-0.04957467238890889],[119,-49,72,-0.05226987875755629],[119,-49,73,-0.05485615384714837],[119,-49,74,-0.057333130436472035],[119,-49,75,-0.059700627261599304],[119,-49,76,-0.06195865498081188],[119,-49,77,-0.06410742220365018],[119,-49,78,-0.06614734158413804],[119,-49,79,-0.06807903597815845],[119,-48,64,-0.02134809861582998],[119,-48,65,-0.024758995814534113],[119,-48,66,-0.028069204677453996],[119,-48,67,-0.031277213713321816],[119,-48,68,-0.0343816565088938],[119,-48,69,-0.037381317230700595],[119,-48,70,-0.040275136191052385],[119,-48,71,-0.043062215478210875],[119,-48,72,-0.045741824650742946],[119,-48,73,-0.04831340649597293],[119,-48,74,-0.0507765828527621],[119,-48,75,-0.05313116049830224],[119,-48,76,-0.05537713709917125],[119,-48,77,-0.05751470722652985],[119,-48,78,-0.059544268435508974],[119,-48,79,-0.061466427408765845],[119,-47,64,-0.014958166925890248],[119,-47,65,-0.018346319936299205],[119,-47,66,-0.021634758199677973],[119,-47,67,-0.024821965960732606],[119,-47,68,-0.02790657160046761],[119,-47,69,-0.030887353123608574],[119,-47,70,-0.033763243710297264],[119,-47,71,-0.036533337331969284],[119,-47,72,-0.03919689443142571],[119,-47,73,-0.04175334766702343],[119,-47,74,-0.04420230772120404],[119,-47,75,-0.04654356917305491],[119,-47,76,-0.04877711643514615],[119,-47,77,-0.05090312975452571],[119,-47,78,-0.05292199127791919],[119,-47,79,-0.05483429118111416],[119,-46,64,-0.008559969607158546],[119,-46,65,-0.011924796098901513],[119,-46,66,-0.015190901321164962],[119,-46,67,-0.01835676518964835],[119,-46,68,-0.021421010794843376],[119,-46,69,-0.024382409874794786],[119,-46,70,-0.027239888352145747],[119,-46,71,-0.029992531935378985],[119,-46,72,-0.03263959178427156],[119,-46,73,-0.035180490239479556],[119,-46,74,-0.037614826616478525],[119,-46,75,-0.039942383063549136],[119,-46,76,-0.04216313048405673],[119,-46,77,-0.044277234522900555],[119,-46,78,-0.04628506161718593],[119,-46,79,-0.04818718511109388],[119,-45,64,-0.002157876535548775],[119,-45,65,-0.005498807827237329],[119,-45,66,-0.008742030675371604],[119,-45,67,-0.011886020603836478],[119,-45,68,-0.014929395330554707],[119,-45,69,-0.017870920225251274],[119,-45,70,-0.0207095138315202],[119,-45,71,-0.023444253453101194],[119,-45,72,-0.026074380804382735],[119,-45,73,-0.028599307725051815],[119,-45,74,-0.031018621959112314],[119,-45,75,-0.03333209299796469],[119,-45,76,-0.035539677987793006],[119,-45,77,-0.037641527701136934],[119,-45,78,-0.0396379925727014],[119,-45,79,-0.04152962879937738],[119,-44,64,0.004243790885261389],[119,-44,65,9.273095477824178E-4],[119,-44,66,-0.0022924949714480114],[119,-44,67,-0.005414093743891901],[119,-44,68,-0.008436099035577072],[119,-44,69,-0.01135726974954887],[119,-44,70,-0.014176516932633998],[119,-44,71,-0.016892909346430285],[119,-44,72,-0.0195056791025362],[119,-44,73,-0.022014227361942584],[119,-44,74,-0.024418130098804558],[119,-44,75,-0.026717143928292386],[119,-44,76,-0.02891121199876101],[119,-44,77,-0.031000469948120002],[119,-44,78,-0.03298525192445545],[119,-44,79,-0.034866096670876146],[119,-43,64,0.010640766629501863],[119,-43,65,0.007349275812007838],[119,-43,66,0.004153411944937013],[119,-43,67,0.0010547084676436613],[119,-43,68,-0.0019454413574424567],[119,-43,69,-0.004845789871640305],[119,-43,70,-0.007645240511166329],[119,-43,71,-0.01034285336252272],[119,-43,72,-0.012937850782140825],[119,-43,73,-0.015429623080198684],[119,-43,74,-0.01781773426883393],[119,-43,75,-0.020101927874447978],[119,-43,76,-0.022282132814343325],[119,-43,77,-0.02435846933757635],[119,-43,78,-0.026331255030072276],[119,-43,79,-0.028201010883983302],[119,-42,64,0.01702884707969099],[119,-42,65,0.01376287291599998],[119,-42,66,0.010591458156397504],[119,-42,67,0.0075161408072125235],[119,-42,68,0.004538319733110252],[119,-42,69,0.0016592492461990904],[119,-42,70,-0.0011199663691980888],[119,-42,71,-0.0037983783960269246],[119,-42,72,-0.0063751992882525865],[119,-42,73,-0.008849808338798337],[119,-42,74,-0.01122175741189202],[119,-42,75,-0.013490776739518484],[119,-42,76,-0.015656780782217217],[119,-42,77,-0.017719874154109694],[119,-42,78,-0.019680357612201882],[119,-42,79,-0.021538734109941893],[119,-41,64,0.02340389818189259],[119,-41,65,0.02016395214832678],[119,-41,66,0.017017480864424672],[119,-41,67,0.013966026957400568],[119,-41,68,0.011010994965126586],[119,-41,69,0.00815364594146717],[119,-41,70,0.005395091997265511],[119,-41,71,0.0027362907770602796],[119,-41,72,1.7803987152553713E-4],[119,-41,73,-0.0022790288342936504],[119,-41,74,-0.004634454877163741],[119,-41,75,-0.006887954995965284],[119,-41,76,-0.009039428976353792],[119,-41,77,-0.011088965559661768],[119,-41,78,-0.013036848416090097],[119,-41,79,-0.01488356218216802],[119,-40,64,0.02976186272600223],[119,-40,65,0.026548441434355752],[119,-40,66,0.023427393705929056],[119,-40,67,0.02040026684047358],[119,-40,68,0.017468471117218054],[119,-40,69,0.01463327441671769],[119,-40,70,0.011895796778338186],[119,-40,71,0.009257004893464815],[119,-40,72,0.006717706534415724],[119,-40,73,0.0042785449191419245],[119,-40,74,0.0019399930114964992],[119,-40,75,-2.976522426300088E-4],[119,-40,76,-0.0024342757435436013],[119,-40,77,-0.004469950130235434],[119,-40,78,-0.0064049417371722095],[119,-40,79,-0.008239716615365267],[119,-39,64,0.03609876775075482],[119,-39,65,0.03291235276023308],[119,-39,66,0.02981719419541684],[119,-39,67,0.026814844077980737],[119,-39,68,0.02390671849382542],[119,-39,69,0.021094092231716766],[119,-39,70,0.018378093357548697],[119,-39,71,0.015759697724317512],[119,-39,72,0.013239723417790228],[119,-39,73,0.010818825137946297],[119,-39,74,0.008497488515977536],[119,-39,75,0.006276024367141364],[119,-39,76,0.0041545628792329925],[119,-39,77,0.0021330477367915712],[119,-39,78,2.1123018099111768E-4],[119,-39,79,-0.0016113369947576839],[119,-38,64,0.042410732073597246],[119,-38,65,0.03925178972219656],[119,-38,66,0.03618297129295045],[119,-38,67,0.03320583357657181],[119,-38,68,0.03032179852810568],[119,-38,69,0.02753214792262393],[119,-38,70,0.024838017946536173],[119,-38,71,0.022240393724597407],[119,-38,72,0.01974010378260127],[119,-38,73,0.017337814445831157],[119,-38,74,0.01503402417306221],[119,-38,75,0.012829057826402535],[119,-38,76,0.010723060876741575],[119,-38,77,0.00871599354492203],[119,-38,78,0.006807624878585439],[119,-38,79,0.004997526764715099],[119,-37,64,0.04869397394560082],[119,-37,65,0.04556295520139675],[119,-37,66,0.042520913098065494],[119,-37,67,0.03956940924020391],[119,-37,68,0.036709871511625414],[119,-37,69,0.03394358874837067],[119,-37,70,0.03127170534732382],[119,-37,71,0.028695215810514374],[119,-37,72,0.026214959225092427],[119,-37,73,0.02383161367905262],[119,-37,74,0.02154569061249656],[119,-37,75,0.01935752910472266],[119,-37,76,0.0172672900969143],[119,-37,77,0.015274950550537625],[119,-37,78,0.013380297541404018],[119,-37,79,0.011582922289417596],[119,-36,64,0.0549448188310685],[119,-36,65,0.05184215916387669],[119,-36,66,0.04882731466929702],[119,-36,67,0.045901851808386684],[119,-36,68,0.043067204450504715],[119,-36,69,0.04032466856388728],[119,-36,70,0.03767539684181764],[119,-36,71,0.03512039326447414],[119,-36,72,0.03266050759643657],[119,-36,73,0.030296429819933746],[119,-36,74,0.028028684503617507],[119,-36,75,0.02585762510715317],[119,-36,76,0.02378342822139934],[119,-36,77,0.021806087744284053],[119,-36,78,0.01992540899233719],[119,-36,79,0.018141002747896207],[119,-35,64,0.06115970731211828],[119,-35,65,0.05808582658599948],[119,-35,66,0.05509858596960149],[119,-35,67,0.05219955682075661],[119,-35,68,0.04939017904830345],[119,-35,69,0.04667175582046623],[119,-35,70,0.04404544820881995],[119,-35,71,0.041512269767922216],[119,-35,72,0.039073081050594705],[119,-35,73,0.03672858405893342],[119,-35,74,0.034479316630837475],[119,-35,75,0.03232564676234195],[119,-35,76,0.030267766865531454],[119,-35,77,0.028305687962138504],[119,-35,78,0.02643923381278923],[119,-35,79,0.024668034981909948],[119,-34,64,0.0673352031180422],[119,-34,65,0.06429050550511495],[119,-34,66,0.06133125993746735],[119,-34,67,0.05845904270776925],[119,-34,68,0.05567529981543817],[119,-34,69,0.05298134169305335],[119,-34,70,0.050378337868347],[119,-34,71,0.047867311561849646],[119,-34,72,0.04544913422017949],[119,-34,73,0.043124519985046406],[119,-34,74,0.040894020097768324],[119,-34,75,0.038758017239580056],[119,-34,76,0.03671671980751123],[119,-34,77,0.03477015612594381],[119,-34,78,0.03291816859380203],[119,-34,79,0.031160407767397702],[119,-33,64,0.07346800127970565],[119,-33,65,0.07045287519573729],[119,-33,66,0.0675220006839865],[119,-33,67,0.06467695900778492],[119,-33,68,0.06191920230540715],[119,-33,69,0.059250048334742456],[119,-33,70,0.05667067515352997],[119,-33,71,0.05418211573524356],[119,-33,72,0.05178525252060717],[119,-33,73,0.049480811904817346],[119,-33,74,0.04726935866026927],[119,-33,75,0.045151290295063484],[119,-33,76,0.043126831347075845],[119,-33,77,0.04119602761369323],[119,-33,78,0.03935874031717679],[119,-33,79,0.03761464020566796],[119,-32,64,0.07955493640866962],[119,-32,65,0.07656975447090941],[119,-32,66,0.07366761181556158],[119,-32,67,0.07085009471022075],[119,-32,68,0.06811866147749501],[119,-32,69,0.06547463725814262],[119,-32,70,0.06291920870976675],[119,-32,71,0.06045341864114839],[119,-32,72,0.058078160582203275],[119,-32,73,0.05579417328963421],[119,-32,74,0.0536020351880796],[119,-32,75,0.05150215874703412],[119,-32,76,0.04949478479332192],[119,-32,77,0.04757997675922854],[119,-32,78,0.045757614866249186],[119,-32,79,0.04402739024447322],[119,-31,64,0.08559299110118335],[119,-31,65,0.08263811010890831],[119,-31,66,0.07976504488240199],[119,-31,67,0.07697538672492366],[119,-31,68,0.07427060018610931],[119,-31,69,0.0716520178437764],[119,-31,70,0.0691208350212793],[119,-31,71,0.06667810444049393],[119,-31,72,0.06432473081041756],[119,-31,73,0.06206146535145618],[119,-31,74,0.059888900255198885],[119,-31,75,0.057807463079956434],[119,-31,76,0.05581741108184313],[119,-31,77,0.0539188254815085],[119,-31,78,0.05211160566647899],[119,-31,79,0.05039546332912337],[119,-30,64,0.09157930446720963],[119,-30,65,0.08865506540544854],[119,-30,66,0.08581140795296982],[119,-30,67,0.08304992847792347],[119,-30,68,0.08037209779691445],[119,-30,69,0.07777925597566926],[119,-30,70,0.0752726070652443],[119,-30,71,0.07285321377385512],[119,-30,72,0.07052199207431387],[119,-30,73,0.06827970574714348],[119,-30,74,0.06612696085917569],[119,-30,75,0.0640642001778986],[119,-30,76,0.06209169752134436],[119,-30,77,0.060209552043617554],[119,-30,78,0.05841768245602286],[119,-30,79,0.056715821183812576],[119,-29,64,0.09751118078416321],[119,-29,65,0.0946179088510658],[119,-29,66,0.09180397431405374],[119,-29,67,0.0890709786332452],[119,-29,68,0.08642039892943498],[119,-29,69,0.08385358280380362],[119,-29,70,0.08137174309316308],[119,-29,71,0.07897595256081413],[119,-29,72,0.076667138523005],[119,-29,73,0.07444607741105858],[119,-29,74,0.0723133892689759],[119,-29,75,0.07026953218678189],[119,-29,76,0.06831479666940266],[119,-29,77,0.0664492999411761],[119,-29,78,0.06467298018595435],[119,-29,79,0.0629855907228174],[119,-28,64,0.10338609827552914],[119,-28,65,0.10052410293384995],[119,-28,66,0.09774019129664013],[119,-28,67,0.09503596994095065],[119,-28,68,0.0924129223263026],[119,-28,69,0.08987240363361293],[119,-28,70,0.08741563553965115],[119,-28,71,0.08504370092710001],[119,-28,72,0.08275753853020884],[119,-28,73,0.08055793751611062],[119,-28,74,0.07844553200160498],[119,-28,75,0.07642079550567893],[119,-28,76,0.07448403533754988],[119,-28,77,0.07263538692033533],[119,-28,78,0.0708748080503071],[119,-28,79,0.06920207309174986],[119,-27,64,0.10920171801450429],[119,-27,65,0.10637129306766535],[119,-27,66,0.10361768922772452],[119,-27,67,0.10094251821155176],[119,-27,68,0.09834726984928888],[119,-27,69,0.09583330694265657],[119,-27,70,0.09340186005878626],[119,-27,71,0.09105402225964809],[119,-27,72,0.0887907437670673],[119,-27,73,0.08661282656339286],[119,-27,74,0.08452091892763058],[119,-27,75,0.0825155099073025],[119,-27,76,0.0805969237258235],[119,-27,77,0.07876531412549725],[119,-27,78,0.07702065864609176],[119,-27,79,0.0753627528390084],[119,-26,64,0.11495589295236064],[119,-26,65,0.11215731664556372],[119,-26,66,0.10943429050776088],[119,-26,67,0.1067884314164913],[119,-26,68,0.10422123560181806],[119,-26,69,0.10173407352417085],[119,-26,70,0.09932818468770899],[119,-26,71,0.09700467238927357],[119,-26,72,0.09476449840292045],[119,-26,73,0.09260847760010005],[119,-26,74,0.09053727250529464],[119,-26,75,0.08855138778737626],[119,-26,76,0.08665116468647283],[119,-26,77,0.08483677537645129],[119,-26,78,0.08310821726296835],[119,-26,79,0.08146530721711343],[119,-25,64,0.12064667707168397],[119,-25,65,0.11788021221853617],[119,-25,66,0.11518801881390173],[119,-25,67,0.11257171891484785],[119,-25,68,0.11003281517811658],[119,-25,69,0.10757268575765155],[119,-25,70,0.10519257913763536],[119,-25,71,0.10289360890111443],[119,-25,72,0.10067674843419572],[119,-25,73,0.09854282556588367],[119,-25,74,0.0964925171433717],[119,-25,75,0.09452634354304357],[119,-25,76,0.09264466311698227],[119,-25,77,0.0908476665750837],[119,-25,78,0.08913537130273708],[119,-25,79,0.08750761561408893],[119,-24,64,0.1262723346646345],[119,-24,65,0.12353822879975773],[119,-24,66,0.12087710842917954],[119,-24,67,0.1182906008064113],[119,-24,68,0.11578021503914937],[119,-24,69,0.11334733700661903],[119,-24,70,0.11099322421242774],[119,-24,71,0.10871900057299666],[119,-24,72,0.10652565114156065],[119,-24,73,0.10441401676780127],[119,-24,74,0.10238478869292966],[119,-24,75,0.10043850308047275],[119,-24,76,0.09857553548256115],[119,-24,77,0.09679609524181709],[119,-24,78,0.09510021982880268],[119,-24,79,0.09348776911504442],[119,-23,64,0.13183134973593225],[119,-23,65,0.1291298352940221],[119,-23,66,0.12650001369732655],[119,-23,67,0.12394351741083043],[119,-23,68,0.12146186201503739],[119,-23,69,0.11905644114326175],[119,-23,70,0.11672852135442247],[119,-23,71,0.11447923694141338],[119,-23,72,0.11230958467503327],[119,-23,73,0.11022041848354502],[119,-23,74,0.10821244406768038],[119,-23,75,0.10628621345134026],[119,-23,76,0.10444211946779303],[119,-23,77,0.1026803901814668],[119,-23,78,0.10100108324529655],[119,-23,79,0.09940408019364344],[119,-22,64,0.137322435530717],[119,-22,65,0.13465373005251802],[119,-22,66,0.13205541860338676],[119,-22,67,0.1295291388729809],[119,-22,68,0.1270764129341131],[119,-22,69,0.1246986422001094],[119,-22,70,0.1223971023176661],[119,-22,71,0.1201729379952744],[119,-22,72,0.11802715776720474],[119,-22,73,0.11596062869311108],[119,-22,74,0.1139740709930781],[119,-22,75,0.11206805261835762],[119,-22,76,0.11024298375759922],[119,-22,77,0.10849911127866874],[119,-22,78,0.10683651310601683],[119,-22,79,0.10525509253361565],[119,-21,64,0.14274454418743254],[119,-21,65,0.14010885055309863],[119,-21,66,0.13754224648026991],[119,-21,67,0.13504637489470916],[119,-21,68,0.13262276437876197],[119,-21,69,0.13027282414889296],[119,-21,70,0.1279978389687143],[119,-21,71,0.1257989639975794],[119,-21,72,0.12367721957473088],[119,-21,73,0.1216334859390622],[119,-21,74,0.1196684978843201],[119,-21,75,0.11778283934999056],[119,-21,76,0.11597693794767328],[119,-21,77,0.11425105942304103],[119,-21,78,0.11260530205334307],[119,-21,79,0.11103959098047322],[119,-20,64,0.14809687651542658],[119,-20,65,0.14549438320573282],[119,-20,66,0.14295966984093644],[119,-20,67,0.1404943845926374],[119,-20,68,0.13810006256774088],[119,-20,69,0.1357781208062715],[119,-20,70,0.13352985321467803],[119,-20,71,0.13135642543469783],[119,-20,72,0.12925886964777067],[119,-20,73,0.12723807931506348],[119,-20,74,0.125294803852931],[119,-20,75,0.12342964324405414],[119,-20,76,0.12164304258406566],[119,-20,77,0.11993528656375263],[119,-20,78,0.11830649388680214],[119,-20,79,0.11675661162310502],[119,-19,64,0.15337889189743936],[119,-19,65,0.1508097732833129],[119,-19,66,0.14830712033638693],[119,-19,67,0.1458725864822038],[119,-19,68,0.14350771336514256],[119,-19,69,0.14121392586660542],[119,-19,70,0.13899252705869203],[119,-19,71,0.1368446930934305],[119,-19,72,0.13477146802755136],[119,-19,73,0.13277375858287122],[119,-19,74,0.13085232884210563],[119,-19,75,0.1290077948803593],[119,-19,76,0.12724061933209474],[119,-19,77,0.12555110589367835],[119,-19,78,0.12393939376146357],[119,-19,79,0.1224054520054274],[119,-18,64,0.15859031831710246],[119,-18,65,0.15605473497793954],[119,-18,66,0.1535842988395807],[119,-18,67,0.15118066858806467],[119,-18,68,0.14884539241613814],[119,-18,69,0.14657990306190005],[119,-18,70,0.14438551278293243],[119,-18,71,0.14226340826598272],[119,-18,72,0.14021464547218787],[119,-18,73,0.13824014441789978],[119,-18,74,0.13634068389094356],[119,-18,75,0.13451689610254147],[119,-18,76,0.13276926127471722],[119,-18,77,0.13109810216327278],[119,-18,78,0.1295035785162968],[119,-18,79,0.12798568146822553],[119,-17,64,0.1637311625111615],[119,-17,65,0.16122926158239848],[119,-17,66,0.15879118565499273],[119,-17,67,0.15641859868056462],[119,-17,68,0.15411305540919884],[119,-17,69,0.15187599644862626],[119,-17,70,0.1497087432588885],[119,-17,71,0.14761249308255164],[119,-17,72,0.14558831381045756],[119,-17,73,0.14363713878307371],[119,-17,74,0.1417597615272722],[119,-17,75,0.13995683042877127],[119,-17,76,0.13822884334005503],[119,-17,77,0.13657614212385893],[119,-17,78,0.13499890713218776],[119,-17,79,0.13349715162088027],[119,-16,64,0.16880172024659457],[119,-16,65,0.16633363579699945],[119,-16,66,0.16392805085398388],[119,-16,67,0.16158663463845135],[119,-16,68,0.15931094846497662],[119,-16,69,0.15710244082159353],[119,-16,70,0.15496244238506574],[119,-16,71,0.152892160971703],[119,-16,72,0.15089267642371051],[119,-16,73,0.14896493543113531],[119,-16,74,0.14710974628923812],[119,-16,75,0.14532777359152604],[119,-16,76,0.14361953285825724],[119,-16,77,0.14198538510051206],[119,-16,78,0.14042553131979174],[119,-16,79,0.13894000694316033],[119,-15,64,0.17380258672271298],[119,-15,65,0.17136844016186514],[119,-15,66,0.1689954647360694],[119,-15,67,0.1666853349379227],[119,-15,68,0.16443961865193013],[119,-15,69,0.16225977225496524],[119,-15,70,0.16014713565220895],[119,-15,71,0.15810292724863084],[119,-15,72,0.15612823885600302],[119,-15,73,0.15422403053550637],[119,-15,74,0.15239112537576116],[119,-15,75,0.15063020420651307],[119,-15,76,0.14894180024779213],[119,-15,77,0.14732629369463335],[119,-15,78,0.14578390623732085],[119,-15,79,0.1443146955171758],[119,-14,64,0.17873466709802588],[119,-14,65,0.17633456761445243],[119,-14,66,0.17399430841586938],[119,-14,67,0.17171556926778164],[119,-14,68,0.16949992462847274],[119,-14,69,0.16734883877019202],[119,-14,70,0.1652636608358199],[119,-14,71,0.1632456198310711],[119,-14,72,0.1612958195522296],[119,-14,73,0.15941523344947228],[119,-14,74,0.15760469942561595],[119,-14,75,0.1558649145705161],[119,-14,76,0.1541964298309364],[119,-14,77,0.15259964461597775],[119,-14,78,0.15107480133802886],[119,-14,79,0.14962197988925663],[119,-13,64,0.183599187141964],[119,-13,65,0.18123323217239717],[119,-13,66,0.17892578453583174],[119,-13,67,0.17667852927080074],[119,-13,68,0.17449304741174132],[119,-13,69,0.17237081113095942],[119,-13,70,0.17031317881606878],[119,-13,71,0.16832139008296887],[119,-13,72,0.16639656072435027],[119,-13,73,0.1645396775937864],[119,-13,74,0.1627515934252476],[119,-13,75,0.16103302158826516],[119,-13,76,0.15938453077856207],[119,-13,77,0.15780653964424185],[119,-13,78,0.1562993113474983],[119,-13,79,0.1548629480618613],[119,-12,64,0.18839770401161238],[119,-12,65,0.18606597974183825],[119,-12,66,0.18379142810488425],[119,-12,67,0.18157573941144323],[119,-12,68,0.17942050127313858],[119,-12,69,0.17732719376530615],[119,-12,70,0.17529718452525356],[119,-12,71,0.17333172378605521],[119,-12,72,0.17143193934587175],[119,-12,73,0.16959883147285482],[119,-12,74,0.1678332677454738],[119,-12,75,0.166135977828487],[119,-12,76,0.1645075481843814],[119,-12,77,0.16294841672036653],[119,-12,78,0.16145886737088733],[119,-12,79,0.160039024615672],[119,-11,64,0.19313211715317335],[119,-11,65,0.19083469905093897],[119,-11,66,0.18859311746273155],[119,-11,67,0.18640906796966228],[119,-11,68,0.18428414476036237],[119,-11,69,0.18221983581462498],[119,-11,70,0.18021751802252028],[119,-11,71,0.1782784522390437],[119,-11,72,0.17640377827429055],[119,-11,73,0.1745945098192102],[119,-11,74,0.1728515293067837],[119,-11,75,0.17117558270884248],[119,-11,76,0.16956727426835438],[119,-11,77,0.1680270611672623],[119,-11,78,0.16655524812984024],[119,-11,79,0.16515198196158276],[119,-10,64,0.1978046793283863],[119,-10,65,0.19554163270882896],[119,-10,66,0.1933330853700258],[119,-10,67,0.19118073816100245],[119,-10,68,0.18908619184615472],[119,-10,69,0.1870509423097788],[119,-10,70,0.18507637569607427],[119,-10,71,0.18316376348467955],[119,-10,72,0.18131425750173213],[119,-10,73,0.17952888486650476],[119,-10,74,0.17780854287346826],[119,-10,75,0.17615399380998875],[119,-10,76,0.17456585970949445],[119,-10,77,0.1730446170401928],[119,-10,78,0.171590591329302],[119,-10,79,0.17020395172281677],[119,-9,64,0.20241800776574492],[119,-9,65,0.20018938838981593],[119,-9,66,0.1980139302242505],[119,-9,67,0.19589333938284936],[119,-9,68,0.19382922320360996],[119,-9,69,0.1918230854741697],[119,-9,70,0.1898763215927256],[119,-9,71,0.18799021366448254],[119,-9,72,0.18616592553362543],[119,-9,73,0.18440449775086687],[119,-9,74,0.182706842476419],[119,-9,75,0.18107373831860096],[119,-9,76,0.1795058251079118],[119,-9,77,0.17800359860665338],[119,-9,78,0.17656740515406832],[119,-9,79,0.1751974362470089],[119,-8,64,0.20697509543671078],[119,-8,65,0.20478095014305786],[119,-8,66,0.20263862740151972],[119,-8,67,0.20054983858702402],[119,-8,68,0.19851619760824102],[119,-8,69,0.19653921615396464],[119,-8,70,0.1946202988749669],[119,-8,71,0.19276073850138287],[119,-8,72,0.19096171089561598],[119,-8,73,0.18922427004081976],[119,-8,74,0.18754934296480186],[119,-8,75,0.1859377245995626],[119,-8,76,0.18439007257629803],[119,-8,77,0.18290690195595238],[119,-8,78,0.18148857989528477],[119,-8,79,0.18013532024846413],[119,-7,64,0.21147932245669276],[119,-7,65,0.20931968982746918],[119,-7,66,0.20721054072405676],[119,-7,67,0.20515359177848613],[119,-7,68,0.20315046346657017],[119,-7,69,0.20120267537523873],[119,-7,70,0.19931164140534707],[119,-7,71,0.1974786649100133],[119,-7,72,0.19570493376847609],[119,-7,73,0.19399151539552573],[119,-7,74,0.1923393516863614],[119,-7,75,0.19074925389707587],[119,-7,76,0.18922189746060925],[119,-7,77,0.1877578167382492],[119,-7,78,0.1863573997066429],[119,-7,79,0.18502088258033966],[119,-6,64,0.2159344676108942],[119,-6,65,0.21380937867196148],[119,-6,66,0.2117334340534589],[119,-6,67,0.20970835564025847],[119,-6,68,0.2077357704713504],[119,-6,69,0.20581720602814546],[119,-6,70,0.20395408545824933],[119,-6,71,0.202147722734766],[119,-6,72,0.20039931775112219],[119,-6,73,0.19870995135146174],[119,-6,74,0.19708058029646702],[119,-6,75,0.1955120321648084],[119,-6,76,0.19400500019005984],[119,-6,77,0.19256003803316046],[119,-6,78,0.19117755449038953],[119,-6,79,0.1898578081368697],[119,-5,64,0.22034472000515548],[119,-5,65,0.21825419896114817],[119,-5,66,0.21621148300987358],[119,-5,67,0.21421829928469083],[119,-5,68,0.21227628138354426],[119,-5,69,0.2103869646782408],[119,-5,70,0.20855178155920195],[119,-5,71,0.20677205661574327],[119,-5,72,0.20504900175187213],[119,-5,73,0.20338371123765941],[119,-5,74,0.2017771566960338],[119,-5,75,0.20023018202520548],[119,-5,76,0.19874349825655524],[119,-5,77,0.19731767834806824],[119,-5,78,0.1959531519132821],[119,-5,79,0.19465019988576138],[119,-4,64,0.22471469084154294],[119,-4,65,0.2226587558462617],[119,-4,66,0.22064928681683793],[119,-4,67,0.218688016130821],[119,-4,68,0.21677658394080868],[119,-4,69,0.21491653350470752],[119,-4,70,0.21310930645146753],[119,-4,71,0.21135623798234393],[119,-4,72,0.20965855200767824],[119,-4,73,0.20801735621925],[119,-4,74,0.2064336370980543],[119,-4,75,0.20490825485770559],[119,-4,76,0.20344193832330737],[119,-4,77,0.20203527974586688],[119,-4,78,0.20068872955222306],[119,-4,79,0.19940259103049973],[119,-3,64,0.22904942531882833],[119,-3,65,0.2270280892814288],[119,-3,66,0.22505188027192402],[119,-3,67,0.22312253590796938],[119,-3,68,0.22124170289263012],[119,-3,69,0.2194109323656258],[119,-3,70,0.21763167519005355],[119,-3,71,0.2159052771746367],[119,-3,72,0.21423297423149046],[119,-3,73,0.21261588746946225],[119,-3,74,0.21105501822289385],[119,-3,75,0.20955124301601025],[119,-3,76,0.20810530846277697],[119,-3,77,0.20671782610229772],[119,-3,78,0.2053892671697275],[119,-3,79,0.20411995730271248],[119,-2,64,0.23335441465794193],[119,-2,65,0.23136768608538816],[119,-2,66,0.22942474584327677],[119,-2,67,0.2275273367856625],[119,-2,68,0.22567711216219954],[119,-2,69,0.22387563099038033],[119,-2,70,0.22212435336324166],[119,-2,71,0.2204246356926065],[119,-2,72,0.21877772588783884],[119,-2,73,0.2171847584701666],[119,-2,74,0.21564674962244035],[119,-2,75,0.214164592174504],[119,-2,76,0.2127390505240423],[119,-2,77,0.2113707554929679],[119,-2,78,0.21006019911931917],[119,-2,79,0.20880772938468894],[119,-1,64,0.23763560825219332],[119,-1,65,0.2356834921284392],[119,-1,66,0.23377382589183415],[119,-1,67,0.23190835762966366],[119,-1,68,0.23008874713481176],[119,-1,69,0.22831656129898426],[119,-1,70,0.22659326944140779],[119,-1,71,0.22492023857305932],[119,-1,72,0.2232987285964102],[119,-1,73,0.22172988744074085],[119,-1,74,0.2202147461328844],[119,-1,75,0.21875421380359117],[119,-1,76,0.2173490726293622],[119,-1,77,0.21599997270982485],[119,-1,78,0.2147074268806215],[119,-1,79,0.21347180546182654],[119,0,64,0.2418994259423637],[119,0,65,0.2399819246447349],[119,0,66,0.23810553501933363],[119,0,67,0.23627201038422885],[119,0,68,0.23448301707289643],[119,0,69,0.23274012984843517],[119,0,70,0.23104482725325437],[119,0,71,0.22939848689428954],[119,0,72,0.22780238066374126],[119,0,73,0.22625766989537233],[119,0,74,0.22476540045624627],[119,0,75,0.22332649777407743],[119,0,76,0.22194176180005365],[119,0,77,0.2206118619072024],[119,0,78,0.21933733172426906],[119,0,79,0.21811856390511797],[119,1,64,0.24615277041678207],[119,1,65,0.2442698846700222],[119,1,66,0.242426772542227],[119,1,67,0.24062519258069293],[119,1,68,0.23886681765780027],[119,1,69,0.23715323040621394],[119,1,70,0.23548591858956147],[119,1,71,0.23386627040863905],[119,1,72,0.23229556974313448],[119,1,73,0.2307749913289182],[119,1,74,0.22930559587076615],[119,1,75,0.227888325090701],[119,1,76,0.226523996711803],[119,1,77,0.2252132993775633],[119,1,78,0.22395678750675108],[119,1,79,0.2227548760838065],[119,2,64,0.250402599546789],[119,2,65,0.24855433013909806],[119,2,66,0.24674449638152723],[119,2,67,0.24497486204951818],[119,2,68,0.2432471065532077],[119,2,69,0.24156282039361676],[119,2,70,0.239923500554317],[119,2,71,0.23833054582862567],[119,2,72,0.23678525208231882],[119,2,73,0.2352888074519085],[119,2,74,0.23384228747835767],[119,2,75,0.2324466501764081],[119,2,76,0.2311027310393814],[119,2,77,0.2298112379795213],[119,2,78,0.2285727462038486],[119,2,79,0.2273876930255444],[119,3,64,0.2546496495105691],[119,3,65,0.2528360087887661],[119,3,66,0.25105946620385144],[119,3,67,0.2493217907498082],[119,3,68,0.24762466836467117],[119,3,69,0.24596969740771174],[119,3,70,0.24435838407210464],[119,3,71,0.2427921377331198],[119,3,72,0.24127226623183406],[119,3,73,0.23979997109440876],[119,3,74,0.2383763426868022],[119,3,75,0.2370023553050986],[119,3,76,0.23567886220130763],[119,3,77,0.23440659054470658],[119,3,78,0.2331861363186981],[119,3,79,0.23201795915319057],[119,4,64,0.25888963594857384],[119,4,65,0.25711065522992405],[119,4,66,0.2553674363382681],[119,4,67,0.25366175346117026],[119,4,68,0.25199529903891915],[119,4,69,0.2503696792627339],[119,4,70,0.24878640950845132],[119,4,71,0.24724690970574137],[119,4,72,0.24575249964284152],[119,4,73,0.244304394206859],[119,4,74,0.2429036985595101],[119,4,75,0.24155140324847346],[119,4,76,0.24024837925421816],[119,4,77,0.23899537297237505],[119,4,78,0.23779300113162105],[119,4,79,0.23664174564709284],[119,5,64,0.2631181590638279],[119,5,65,0.26137388726704486],[119,5,66,0.2596640429639325],[119,5,67,0.25799040549545516],[119,5,68,0.2563546737628329],[119,5,69,0.2547584617468029],[119,5,70,0.2532032939623662],[119,5,71,0.25169060084906236],[119,5,72,0.2502217140967687],[119,5,73,0.24879786190706465],[119,5,74,0.24742016419003954],[119,5,75,0.2460896276967145],[119,5,76,0.24480714108694057],[119,5,77,0.243573469932844],[119,5,78,0.24238925165778513],[119,5,79,0.24125499041084886],[119,6,64,0.26733083938196833],[119,6,65,0.2656213414747084],[119,6,66,0.2639449394923173],[119,6,67,0.26230341787408035],[119,6,68,0.26069848192544515],[119,6,69,0.25913175335838695],[119,6,70,0.25760476576726243],[119,6,71,0.256118960040197],[119,6,72,0.2546756797059982],[119,6,73,0.25327616621663807],[119,6,74,0.25192155416518414],[119,6,75,0.2506128664393459],[119,6,76,0.24935100931050314],[119,6,77,0.24813676745828173],[119,6,78,0.24697079893065133],[119,6,79,0.2458536300395544],[119,7,64,0.27152332078231917],[119,7,65,0.26984867627247205],[119,7,66,0.2682057996846504],[119,7,67,0.26659648048680673],[119,7,68,0.2650224303168332],[119,7,69,0.26348527854408893],[119,7,70,0.2619865677664224],[119,7,71,0.2605277492427332],[119,7,72,0.2591101782610641],[119,7,73,0.2577351094422685],[119,7,74,0.2564036919791317],[119,7,75,0.25511696481111307],[119,7,76,0.2538758517345744],[119,7,77,0.25268115644856426],[119,7,78,0.2515335575361256],[119,7,79,0.2504336033811422],[119,8,64,0.27569127347450906],[119,8,65,0.2740515749448143],[119,8,66,0.27244232071397495],[119,8,67,0.27086530519470725],[119,8,68,0.269322246270788],[119,8,69,0.2678147808798139],[119,8,70,0.26634446053146354],[119,8,71,0.2649127467613057],[119,8,72,0.26352100652014726],[119,8,73,0.2621705074989623],[119,8,74,0.26086241338928456],[119,8,75,0.25959777907922676],[119,8,76,0.2583775457849956],[119,8,77,0.2572025361179676],[119,8,78,0.25607344908729957],[119,8,79,0.2549908550380827],[119,9,64,0.2798303969207387],[119,9,65,0.27822574860626115],[119,9,66,0.2766502261719436],[119,9,67,0.275105628877437],[119,9,68,0.2735936807513724],[119,9,69,0.27211602619543],[119,9,70,0.2706742255239205],[119,9,71,0.2692697504389248],[119,9,72,0.26790397944098227],[119,9,73,0.2665781931753698],[119,9,74,0.2652935697138575],[119,9,75,0.2640511797720973],[119,9,76,0.2628519818625213],[119,9,77,0.26169681738280937],[119,9,78,0.26058640563990126],[119,9,79,0.25952133880956463],[119,10,64,0.2839364227038049],[119,10,65,0.28236693911180266],[119,10,66,0.28082526902045396],[119,10,67,0.27931321642491563],[119,10,68,0.2778325113834789],[119,10,69,0.27638480564303236],[119,10,70,0.27497166820005375],[119,10,71,0.27359458079717164],[119,10,72,0.2722549333552892],[119,10,73,0.2709540193413123],[119,10,74,0.2696930310713671],[119,10,75,0.2684730549496645],[119,10,76,0.2672950666428871],[119,10,77,0.2661599261901576],[119,10,78,0.2650683730485674],[119,10,79,0.264021021074272],[119,11,64,0.28800511734066675],[119,11,65,0.2864709219123843],[119,11,66,0.2849632344879086],[119,11,67,0.2834838636732013],[119,11,68,0.2820345454271639],[119,11,69,0.2806169387085898],[119,11,70,0.2792326210586615],[119,11,71,0.27788308411903545],[119,11,72,0.27656972908550426],[119,11,73,0.2752938620972797],[119,11,74,0.2740566895617838],[119,11,75,0.27285931341510106],[119,11,76,0.27170272631796977],[119,11,77,0.2705878067873732],[119,11,78,0.2695153142637059],[119,11,79,0.26848588411352386],[119,12,64,0.2920322850416635],[119,12,65,0.2905335088555813],[119,12,66,0.28905994291020976],[119,12,67,0.28761340028466775],[119,12,68,0.2861956226958736],[119,12,69,0.2848082761670853],[119,12,70,0.28345294663200826],[119,12,71,0.2821311354745078],[119,12,72,0.28084425500392274],[119,12,73,0.2795936238660173],[119,12,74,0.2783804623894631],[119,12,75,0.27720588786800004],[119,12,76,0.2760709097781592],[119,12,77,0.27497642493260455],[119,12,78,0.27392321256906843],[119,12,79,0.27291192937489417],[119,13,64,0.29601377041548554],[119,13,65,0.2945505509315612],[119,13,66,0.29311125251659276],[119,13,67,0.2916976925725906],[119,13,68,0.2903116184186645],[119,13,69,0.2889547029812585],[119,13,70,0.2876285404199767],[119,13,71,0.2863346416890397],[119,13,72,0.28507443003436483],[119,13,73,0.2838492364263084],[119,13,74,0.2826602949279636],[119,13,75,0.28150873799916043],[119,13,76,0.2803955917360526],[119,13,77,0.279321771046345],[119,13,78,0.278288074760142],[119,13,79,0.27729518067642583],[119,14,64,0.29994546111967996],[119,14,65,0.2985179409641103],[119,14,66,0.2971130621600741],[119,14,67,0.2957326462699156],[119,14,68,0.29437844604619345],[119,14,69,0.29305214114371864],[119,14,70,0.291755333767214],[119,14,71,0.2904895442546333],[119,14,72,0.28925620659613],[119,14,73,0.28805666388871864],[119,14,74,0.2868921637265195],[119,14,75,0.28576385352673367],[119,14,76,0.28467277579123196],[119,14,77,0.2836198633038152],[119,14,78,0.28260593426312275],[119,14,79,0.28163168735119726],[119,15,64,0.3038232904568736],[119,15,65,0.30243161624691445],[119,15,66,0.3010613139927039],[119,15,67,0.29971420924240083],[119,15,68,0.2983920600006672],[119,15,69,0.29709655246262434],[119,15,70,0.2958292966834654],[119,15,71,0.29459182218375873],[119,15,72,0.2933855734904357],[119,15,73,0.2922119056135015],[119,15,74,0.2910720794583647],[119,15,75,0.289967257173928],[119,15,76,0.2888984974363268],[119,15,77,0.28786675066837125],[119,15,78,0.28687285419467023],[119,15,79,0.28591752733244385],[119,16,64,0.30764323991658027],[119,16,65,0.3062875611249527],[119,16,66,0.304951996085483],[119,16,67,0.30363837414599115],[119,16,68,0.30234845836961144],[119,16,69,0.30108394129078603],[119,16,70,0.2998464406069522],[119,16,71,0.2986374948059573],[119,16,72,0.2974585587291982],[119,16,73,0.2963109990705174],[119,16,74,0.2951960898107604],[119,16,75,0.2941150075881274],[119,16,76,0.29306882700421344],[119,16,77,0.29205851586578885],[119,16,78,0.2910849303622979],[119,16,79,0.29014881017908556],[119,17,64,0.31140134166276745],[119,17,65,0.3100818095211857],[119,17,66,0.3087811449931257],[119,17,67,0.3075011810286084],[119,17,68,0.3062436855436427],[119,17,69,0.30501035719837627],[119,17,70,0.30380282111098145],[119,17,71,0.3026226245073151],[119,17,72,0.30147123230634126],[119,17,73,0.3003500226413571],[119,17,74,0.29926028231692015],[119,17,75,0.2982032022016141],[119,17,76,0.29717987255654504],[119,17,77,0.29619127829962033],[119,17,78,0.2952382942055895],[119,17,79,0.29432168004185577],[119,18,64,0.31509368096697216],[119,18,65,0.3138104474083255],[119,18,66,0.3125448482634531],[119,18,67,0.31129871987614033],[119,18,68,0.31007383479802536],[119,18,69,0.3088718975890284],[119,18,70,0.30769454055356577],[119,18,71,0.306543319412585],[119,18,72,0.30541970891141124],[119,18,73,0.30432509836344374],[119,18,74,0.30326078712960414],[119,18,75,0.3022279800336685],[119,18,76,0.3012277827133801],[119,18,77,0.30026119690739095],[119,18,78,0.29932911567801523],[119,18,79,0.29843231856979974],[119,19,64,0.3187163985870707],[119,19,65,0.3174696152257903],[119,19,66,0.31623924689152383],[119,19,67,0.3150271331027354],[119,19,68,0.3138350508181197],[119,19,69,0.312664710259432],[119,19,70,0.3115177506701603],[119,19,71,0.310395736010068],[119,19,72,0.3093001505856059],[119,19,73,0.30823239461622437],[119,19,74,0.307193779736493],[119,19,75,0.30618552443415686],[119,19,76,0.3052087494240261],[119,19,77,0.30426447295775044],[119,19,78,0.30335360606945583],[119,19,79,0.3024769477572547],[119,20,64,0.32226569309179065],[119,20,65,0.3210555102419374],[119,20,66,0.31986053771859246],[119,20,67,0.31868261798549463],[119,20,68,0.31752353216881607],[119,20,69,0.3163849959025196],[119,20,70,0.3152686551096146],[119,20,71,0.31417608171934713],[119,20,72,0.3131087693203161],[119,20,73,0.3120681287495477],[119,20,74,0.3110554836174413],[119,20,75,0.31007206576870594],[119,20,76,0.3091190106791941],[119,20,77,0.30819735278867605],[119,20,78,0.30730802076953834],[119,20,79,0.3064518327314147],[119,21,64,0.32573782313077804],[119,21,65,0.3245643888613804],[119,21,66,0.3234049757757044],[119,21,67,0.32226142904336785],[119,21,68,0.3211355337077593],[119,21,69,0.32002901055404454],[119,21,70,0.31894351191313863],[119,21,71,0.3178806174016767],[119,21,72,0.3168418295979769],[119,21,73,0.3158285696540263],[119,21,74,0.31484217284340393],[119,21,75,0.31388388404526035],[119,21,76,0.3129548531642587],[119,21,77,0.31205613048652275],[119,21,78,0.3111886619715744],[119,21,79,0.31035328448026817],[119,22,64,0.32912910965031766],[119,22,65,0.3279925688774937],[119,22,66,0.32686887657202696],[119,22,67,0.32575988036035575],[119,22,68,0.32466736894246395],[119,22,69,0.3235930679826585],[119,22,70,0.32253863593638776],[119,22,71,0.3215056598131281],[119,22,72,0.32049565087533466],[119,22,73,0.319510040273487],[119,22,74,0.3185501746171442],[119,22,75,0.31761731148212663],[119,22,76,0.3167126148537313],[119,22,77,0.3158371505060267],[119,22,78,0.3149918813172078],[119,22,79,0.3141776625210196],[119,23,64,0.3324359380547902],[119,23,65,0.33133643167018867],[119,23,66,0.3302486183280043],[119,23,67,0.3291743478531043],[119,23,68,0.3281154123314105],[119,23,69,0.32707354202357186],[119,23,70,0.32605040121475587],[119,23,71,0.3250475840005853],[119,23,72,0.324066610009219],[119,23,73,0.32310892005960357],[119,23,74,0.32217587175581464],[119,23,75,0.32126873501760067],[119,23,76,0.3203886875470405],[119,23,77,0.3195368102313567],[119,23,78,0.3187140824818681],[119,23,79,0.3179213775090889],[119,24,64,0.3356547603136908],[119,24,65,0.33459242434877984],[119,24,66,0.33354064415315315],[119,24,67,0.33250127148270786],[119,24,68,0.33147610152893664],[119,24,69,0.33046686885561427],[119,24,70,0.32947524327168803],[119,24,71,0.3285028256403991],[119,24,72,0.32755114362463195],[119,24,73,0.3266216473685179],[119,24,74,0.3257157051152165],[119,24,75,0.32483459876098103],[119,24,76,0.3239795193454226],[119,24,77,0.3231515624780167],[119,24,78,0.32235172370083165],[119,24,79,0.3215808937874891],[119,25,64,0.3387820970142999],[119,25,65,0.33775706184003906],[119,25,66,0.33674146416859563],[119,25,67,0.3357371574108193],[119,25,68,0.334745939574021],[119,25,69,0.3337695492217913],[119,25,70,0.33280966137011336],[119,25,71,0.33186788331980066],[119,25,72,0.3309457504252514],[119,25,73,0.33004472179955097],[119,25,74,0.3291661759558422],[119,25,75,0.32831140638507134],[119,25,76,0.32748161707002577],[119,25,77,0.32667791793570233],[119,25,78,0.3259013202359924],[119,25,79,0.32515273187668886],[119,26,64,0.34181453936008604],[119,26,65,0.3408269289215135],[119,26,66,0.339847657574409],[119,26,67,0.3388785801001453],[119,26,68,0.3379214970230406],[119,26,69,0.3369781505934208],[119,26,70,0.3360502207070792],[119,26,71,0.3351393207611561],[119,26,72,0.33424699344643594],[119,26,73,0.3333747064760893],[119,26,74,0.332523848250782],[119,26,75,0.33169572346025883],[119,26,76,0.33089154862131487],[119,26,77,0.33011244755219976],[119,26,78,0.32935944678343393],[119,26,79,0.3286334709050464],[119,27,64,0.3447487511146748],[119,27,65,0.3437986821999423],[119,27,66,0.34285587466162254],[119,27,67,0.34192218435915794],[119,27,68,0.3409994140263289],[119,27,69,0.3400893092776736],[119,27,70,0.33919355455141076],[119,27,71,0.338313768988887],[119,27,72,0.3374515022505494],[119,27,73,0.33660823026846537],[119,27,74,0.3357853509353191],[119,27,75,0.33498417972998434],[119,27,76,0.3342059452795929],[119,27,77,0.3334517848581409],[119,27,78,0.33272273982161177],[119,27,79,0.33201975097962794],[119,28,64,0.3475814704914714],[119,28,65,0.3466690520348596],[119,28,66,0.3457628387689536],[119,28,67,0.34486468733111225],[119,28,68,0.34397640234862825],[119,28,69,0.34309973246861225],[119,28,70,0.34223636632449184],[119,28,71,0.34138792843915056],[119,28,72,0.3405559750647031],[119,28,73,0.33974198995892974],[119,28,74,0.33894738009830366],[119,28,75,0.3381734713277033],[119,28,76,0.33742150394673687],[119,28,77,0.3366926282327139],[119,28,78,0.3359878999002499],[119,28,79,0.3353082754975108],[119,29,64,0.3503095119890082],[119,29,65,0.3494348444074548],[119,29,66,0.34856534818435014],[119,29,67,0.3477028804274425],[119,29,68,0.34684924733350814],[119,29,69,0.34600620024180084],[119,29,70,0.34517543162423936],[119,29,71,0.34435857101235434],[119,29,72,0.34355718086099046],[119,29,73,0.3427727523487901],[119,29,74,0.3420067011153882],[119,29,75,0.34126036293541456],[119,29,76,0.3405349893292259],[119,29,77,0.33983174311040754],[119,29,78,0.3391516938700279],[119,29,79,0.3384958133976512],[119,30,64,0.3529297681718642],[119,30,65,0.35209294273453884],[119,30,66,0.3512602779911909],[119,30,67,0.350433631205382],[119,30,68,0.349614809811591],[119,30,69,0.34880556749232716],[119,30,70,0.34800760019211124],[119,30,71,0.3472225420683426],[119,30,72,0.34645196137905027],[119,30,73,0.34569735630755216],[119,30,74,0.344960150723955],[119,30,75,0.34424168988358794],[119,30,76,0.34354323606229425],[119,30,77,0.342865964128621],[119,30,78,0.34221095705288807],[119,30,79,0.3415792013531445],[119,31,64,0.3554392113972401],[119,31,65,0.3546403096276972],[119,31,66,0.3538445818592219],[119,31,67,0.3530538851898885],[119,31,68,0.3522700279526728],[119,31,69,0.3514947658163231],[119,31,70,0.3507297978232343],[119,31,71,0.34997676236434355],[119,31,72,0.3492372330910458],[119,31,73,0.3485127147641519],[119,31,74,0.34780463903982517],[119,31,75,0.34711436019258346],[119,31,76,0.3464431507752986],[119,31,77,0.34579219721622695],[119,31,78,0.3451625953530548],[119,31,79,0.3445553459039684],[119,32,64,0.3578348954872492],[119,32,65,0.3570739885976921],[119,32,66,0.35631529378029514],[119,32,67,0.35556066763994143],[119,32,68,0.3548119190618015],[119,32,69,0.3540708053360484],[119,32,70,0.3533390282197192],[119,32,71,0.3526182299357427],[119,32,72,0.3519099891091299],[119,32,73,0.351215816640348],[119,32,74,0.3505371515158199],[119,32,75,0.3498753565556297],[119,32,76,0.34923171409837017],[119,32,77,0.34860742162316277],[119,32,78,0.3480035873088385],[119,32,79,0.3474212255302848],[119,33,64,0.36011395734678847],[119,33,65,0.3593911057039779],[119,33,66,0.35866952974876853],[119,33,67,0.3579510852590689],[119,33,68,0.3572375813191714],[119,33,69,0.3565307764683935],[119,33,70,0.3558323747870155],[119,33,71,0.35514402191953703],[119,33,72,0.35446730103524576],[119,33,73,0.3538037287261224],[119,33,74,0.35315475084202186],[119,33,75,0.3525217382632106],[119,33,76,0.35190598261019834],[119,33,77,0.35130869189089287],[119,33,78,0.35073098608506664],[119,33,79,0.35017389266614085],[119,34,64,0.3622736185270662],[119,34,65,0.3615888711494045],[119,34,66,0.36090448938664665],[119,34,67,0.3602223278501827],[119,34,68,0.35954419546391203],[119,34,69,0.3588718516368825],[119,34,70,0.35820700237338904],[119,34,71,0.3575512963205481],[119,34,72,0.3569063207533449],[119,34,73,0.3562735974971742],[119,34,74,0.35565457878781875],[119,34,75,0.35505064306894135],[119,34,76,0.3544630907270301],[119,34,77,0.3538931397638268],[119,34,78,0.3533419214062269],[119,34,79,0.35281047565365375],[119,35,64,0.36431118673483526],[119,35,65,0.3636645808201614],[119,35,66,0.3630174575135112],[119,35,67,0.362371669914775],[119,35,68,0.36172902642182625],[119,35,69,0.36109128692722964],[119,35,70,0.3604601589525751],[119,35,71,0.3598372937204547],[119,35,72,0.35922428216408103],[119,35,73,0.358622650874563],[119,35,74,0.35803385798579074],[119,35,75,0.35745928899699775],[119,35,76,0.35690025253294494],[119,35,77,0.35635797604175573],[119,35,78,0.355833601430387],[119,35,79,0.3553281806377459],[119,36,64,0.36622405728721696],[119,36,65,0.3656156177708419],[119,36,66,0.36500580566112517],[119,36,67,0.3643964721963537],[119,36,68,0.3637894248769531],[119,36,69,0.36318642368632437],[119,36,70,0.3625891772494824],[119,36,71,0.36199933892951375],[119,36,72,0.3614185028618495],[119,36,73,0.3608481999263717],[119,36,74,0.3602898936573052],[119,36,75,0.35974497609095957],[119,36,76,0.359214763551271],[119,36,77,0.35870049237316787],[119,36,78,0.35820331456374976],[119,36,79,0.35772429340128636],[119,37,64,0.36800971451218056],[119,37,65,0.3674394536546981],[119,37,66,0.36686699353277424],[119,37,67,0.36629418316818624],[119,37,68,0.36572282878702544],[119,37,69,0.3651546900647155],[119,37,70,0.36459147630901806],[119,37,71,0.36403484258104063],[119,37,72,0.3634863857542429],[119,37,73,0.3629476405114602],[119,37,74,0.3624200752798956],[119,37,75,0.36190508810414707],[119,37,76,0.3614040024572153],[119,37,77,0.36091806298952145],[119,37,78,0.36044843121592085],[119,37,79,0.3599961811407186],[119,38,64,0.369665733094719],[119,38,65,0.3691336500991245],[119,38,66,0.3685985704073918],[119,38,67,0.3680623404653957],[119,38,68,0.3675267648428675],[119,38,69,0.3669936025026412],[119,38,70,0.36646456300808095],[119,38,71,0.3659413026687006],[119,38,72,0.36542542062397565],[119,38,73,0.3649184548653612],[119,38,74,0.364421878196474],[119,38,75,0.3639370941314975],[119,38,76,0.36346543273176213],[119,38,77,0.3630081463805262],[119,38,78,0.36256640549594354],[119,38,79,0.36214129418222724],[119,39,64,0.37118977936862113],[119,39,65,0.3706958600262698],[119,39,66,0.37019817648836034],[119,39,67,0.36969857226130054],[119,39,68,0.3691988498716213],[119,39,69,0.36870076715949085],[119,39,70,0.3682060335106081],[119,39,71,0.36771630602649064],[119,39,72,0.3672331856331543],[119,39,73,0.36675821312819823],[119,39,74,0.3662928651662549],[119,39,75,0.3658385501828628],[119,39,76,0.36539660425671516],[119,39,77,0.36496828691030697],[119,39,78,0.36455477684897236],[119,39,79,0.3641571676383159],[119,40,64,0.3725796125539243],[119,40,65,0.37212382891886187],[119,40,66,0.3716635441970777],[119,40,67,0.3712005985880891],[119,40,68,0.3707367921838969],[119,40,69,0.3702738812867954],[119,40,70,0.3698135746657729],[119,40,71,0.36935752975151337],[119,40,72,0.3689073487699993],[119,40,73,0.36846457481472644],[119,40,74,0.36803068785749526],[119,40,75,0.36760710069783065],[119,40,76,0.3671951548509865],[119,40,77,0.3667961163745585],[119,40,78,0.36641117163369374],[119,40,79,0.3660414230049043],[119,41,64,0.3738330859399913],[119,41,65,0.37341539603119045],[119,41,66,0.3729924994112315],[119,41,67,0.37256623260177113],[119,41,68,0.37213839286478234],[119,41,69,0.3717107345446822],[119,41,70,0.3712849653492688],[119,41,71,0.37086274256947616],[119,41,72,0.3704456692379459],[119,41,73,0.3700352902264288],[119,41,74,0.3696330882819798],[119,41,75,0.3692404800019975],[119,41,76,0.368858811748065],[119,41,77,0.3684893554986171],[119,41,78,0.36813330464042016],[119,41,79,0.36779176969887206],[119,42,64,0.3749481480142771],[119,42,65,0.3745684955453129],[119,42,66,0.37418296264784723],[119,42,67,0.3737933817914709],[119,42,68,0.3734015470087863],[119,42,69,0.3730092102618672],[119,42,70,0.37261807774775396],[119,42,71,0.37222980614299084],[119,42,72,0.37184599878720637],[119,42,73,0.371468201805747],[119,42,74,0.3710979001713329],[119,42,75,0.37073651370477817],[119,42,76,0.37038539301474316],[119,42,77,0.3700458153765346],[119,42,78,0.36971898054994423],[119,42,79,0.36940600653613476],[119,43,64,0.3759228435367075],[119,43,65,0.37558115767240224],[119,43,66,0.37523295019103076],[119,43,67,0.37488004913298434],[119,43,68,0.3745242448986283],[119,43,69,0.3741672866390987],[119,43,70,0.3738108785863675],[119,43,71,0.37345667632258506],[119,43,72,0.37310628298869775],[119,43,73,0.372761245432353],[119,43,74,0.37242305029506106],[119,43,75,0.3720931200386536],[119,43,76,0.37177280891100795],[119,43,77,0.3714633988510537],[119,43,78,0.3711660953330509],[119,43,79,0.37088202315014934],[119,44,64,0.37675531455971445],[119,44,65,0.3764515096992868],[119,44,66,0.37614057516445043],[119,44,67,0.3758243341866433],[119,44,68,0.37550457312792407],[119,44,69,0.3751830378961003],[119,44,70,0.3748614302993689],[119,44,71,0.374541404340475],[119,44,72,0.37422456245038915],[119,44,73,0.37391245166151216],[119,44,74,0.3736065597203805],[119,44,75,0.3733083111399097],[119,44,76,0.3730190631911463],[119,44,77,0.37274010183454165],[119,44,78,0.37247263759074367],[119,44,79,0.3722178013509071],[119,45,64,0.3774438013939443],[119,45,65,0.3771777769801945],[119,45,66,0.37690404854857756],[119,45,67,0.3766244341395091],[119,45,68,0.37634071566778643],[119,45,69,0.3760546353620352],[119,45,70,0.37576789214392003],[119,45,71,0.37548213794712293],[119,45,72,0.3751989739760917],[119,45,73,0.37491994690456554],[119,45,74,0.3746465450138525],[119,45,75,0.3743801942708954],[119,45,76,0.3741222543460948],[119,45,77,0.37387401457090796],[119,45,78,0.37363668983521237],[119,45,79,0.3734114164244413],[119,46,64,0.377986643519589],[119,46,65,0.37775828387365373],[119,46,66,0.3775216801426323],[119,46,67,0.3772786447918375],[119,46,68,0.3770309548772842],[119,46,69,0.3767803485094319],[119,46,70,0.37652852125695085],[119,46,71,0.37627712249051515],[119,46,72,0.3760277516666247],[119,46,73,0.37578195455146196],[119,46,74,0.37554121938476237],[119,46,75,0.37530697298372834],[119,46,76,0.3750805767869626],[119,46,77,0.37486332283843454],[119,46,78,0.3746564297114703],[119,46,79,0.37446103837277467],[119,47,64,0.3783822804433745],[119,47,65,0.37819145462458165],[119,47,66,0.3779918794712682],[119,47,67,0.3777853614878532],[119,47,68,0.37757367245779727],[119,47,69,0.37735854593161],[119,47,70,0.37714167365514706],[119,47,71,0.3769247019382036],[119,47,72,0.37670922796340256],[119,47,73,0.3764967960353845],[119,47,74,0.37628889377028024],[119,47,75,0.3760869482254934],[119,47,76,0.3758923219697691],[119,47,77,0.37570630909356373],[119,47,78,0.37553013115970524],[119,47,79,0.37536493309435426],[119,48,64,0.3786292525012108],[119,48,65,0.37847581419156984],[119,48,66,0.3783131566360056],[119,48,67,0.3781430799908408],[119,48,68,0.3779673503512757],[119,48,69,0.3777876962636161],[119,48,70,0.37760580517807074],[119,48,71,0.37742331984211974],[119,48,72,0.37724183463445193],[119,48,73,0.37706289183948133],[119,48,74,0.37688797786242223],[119,48,75,0.3767185193849486],[119,48,76,0.3765558794614159],[119,48,77,0.37640135355565985],[119,48,78,0.3762561655183622],[119,48,79,0.37612146350499054],[119,49,64,0.37872620160647535],[119,49,65,0.37860998901933474],[119,49,66,0.37848412311137924],[119,49,67,0.37835039730251996],[119,49,68,0.3782105715823676],[119,49,69,0.3780663690466317],[119,49,70,0.37791947237437484],[119,49,71,0.3777715202461208],[119,49,72,0.3776241037028175],[119,49,73,0.3774787624456607],[119,49,74,0.37733698107676317],[119,49,75,0.3772001852806899],[119,49,76,0.37706973794684084],[119,49,77,0.37694693523269485],[119,49,78,0.3768330025679043],[119,49,79,0.37672909059924775],[119,50,64,0.3786718719439546],[119,50,65,0.3785927077563579],[119,50,66,0.37850349248582715],[119,50,67,0.37840601242672833],[119,50,68,0.37830202104444366],[119,50,69,0.37819323553588247],[119,50,70,0.3780813333311395],[119,50,71,0.3779679485362989],[119,50,72,0.37785466831738757],[119,50,73,0.377743029225478],[119,50,74,0.3776345134629338],[119,50,75,0.37753054509080874],[119,50,76,0.3774324861773896],[119,50,77,0.37734163288789024],[119,50,78,0.37725921151528935],[119,50,79,0.37718637445232006],[119,51,64,0.37846511060943544],[119,51,65,0.3784228019177106],[119,51,66,0.37837008114731546],[119,51,67,0.3783087270774115],[119,51,68,0.3782404862295141],[119,51,69,0.37816706945204487],[119,51,70,0.37809014844633054],[119,51,71,0.37801135223405175],[119,51,72,0.3779322635661386],[119,51,73,0.37785441527311836],[119,51,74,0.3777792865569052],[119,51,75,0.3777082992240459],[119,51,76,0.37764281386040854],[119,51,77,0.3775841259473226],[119,51,78,0.37753346191916626],[119,51,79,0.37749197516240274],[119,52,64,0.3781048681949415],[119,52,65,0.3780992064930552],[119,52,66,0.37808280891368895],[119,52,67,0.3780574463309063],[119,52,68,0.37802485790202656],[119,52,69,0.3779867476761368],[119,52,70,0.377944781144363],[119,52,71,0.377900581731897],[119,52,72,0.3778557272317812],[119,52,73,0.37781174618045166],[119,52,74,0.3777701141750367],[119,52,75,0.3777322501324153],[119,52,76,0.37769951249003075],[119,52,77,0.3776731953484639],[119,52,78,0.3776545245557613],[119,52,79,0.37764465373352374],[119,53,64,0.377590199319628],[119,53,65,0.3776209604998366],[119,53,66,0.37764069960776375],[119,53,67,0.3776511792225352],[119,53,68,0.37765413071655907],[119,53,69,0.3776512508879096],[119,53,70,0.37764419853478687],[119,53,71,0.3776345909720497],[119,53,72,0.37762400048982336],[119,53,73,0.37761395075418286],[119,53,74,0.3776059131499089],[119,53,75,0.3776013030653208],[119,53,76,0.37760147611918127],[119,53,77,0.3776077243296785],[119,53,78,0.37762127222548003],[119,53,79,0.3776432728988637],[119,54,64,0.37692026310631355],[119,54,65,0.37698720748164627],[119,54,66,0.37704288157714316],[119,54,67,0.37708903928749204],[119,54,68,0.37712740377939546],[119,54,69,0.3771596641477259],[119,54,70,0.377187472014083],[119,54,71,0.3772124380677486],[119,54,72,0.37723612854904387],[119,54,73,0.3772600616750833],[119,54,74,0.3772857040079315],[119,54,75,0.37731446676515756],[119,54,76,0.37734770207279],[119,54,77,0.37738669916067247],[119,54,78,0.37743268050021617],[119,54,79,0.37748679788455686],[119,55,64,0.3760943236036705],[119,55,65,0.37619719595177414],[119,55,66,0.37628858815877175],[119,55,67,0.3763702450460362],[119,55,68,0.3764438811539923],[119,55,69,0.3765111774219334],[119,55,70,0.376573777810575],[119,55,71,0.3766332858673396],[119,55,72,0.37669126123437596],[119,55,73,0.3767492160993091],[119,55,74,0.37680861158872625],[119,55,75,0.3768708541043949],[119,55,76,0.37693729160221146],[119,55,77,0.3770092098138874],[119,55,78,0.37708782841136435],[119,55,79,0.3771742971139654],[119,56,64,0.3751117501540718],[119,56,65,0.37525027978195186],[119,56,66,0.37537715808823136],[119,56,67,0.37549412043299546],[119,56,68,0.37560287231034195],[119,56,69,0.37570508605173913],[119,56,70,0.37580239747246547],[119,56,71,0.3758964024611206],[119,56,72,0.37598865351221167],[119,56,73,0.3760806562018115],[119,56,74,0.37617386560629645],[119,56,75,0.3762696826641533],[119,56,76,0.3763694504808619],[119,56,77,0.37647445057685475],[119,56,78,0.3765858990785464],[119,56,79,0.3767049428524424],[119,57,64,0.3739720177070647],[119,57,65,0.3741459185362555],[119,57,66,0.3743080358537483],[119,57,67,0.374460095171551],[119,57,68,0.3746037925182053],[119,57,69,0.3747407911655586],[119,57,70,0.3748727182989683],[119,57,71,0.3750011616309247],[119,57,72,0.37512766595810054],[119,57,73,0.37525372966182],[119,57,74,0.3753808011519569],[119,57,75,0.37551027525425196],[119,57,76,0.37564348954105364],[119,57,77,0.37578172060548576],[119,57,78,0.3759261802790344],[119,57,79,0.3760780117925627],[119,58,64,0.37267470707851375],[119,58,65,0.3728836777502087],[119,58,66,0.37308077199495104],[119,58,67,0.3732677050913395],[119,58,68,0.3734461631842477],[119,58,69,0.37361780003487244],[119,58,70,0.37378423371457037],[119,58,71,0.3739470432424712],[119,58,72,0.37410776516687444],[119,58,73,0.37426789009042083],[119,58,74,0.37442885913905355],[119,58,75,0.3745920603747519],[119,58,76,0.3747588251520475],[119,58,77,0.3749304244183228],[119,58,78,0.37510806495788795],[119,58,79,0.3752928855798408],[119,59,64,0.37121950515540064],[119,59,65,0.3714632291550771],[119,59,66,0.37169502334636967],[119,59,67,0.37191659239086666],[119,59,68,0.3721296121330725],[119,59,69,0.3723357263735835],[119,59,70,0.3725365435864164],[119,59,71,0.3727336335804792],[119,59,72,0.37292852410518923],[119,59,73,0.3731226974002305],[119,59,74,0.37331758668946724],[119,59,75,0.3735145726189918],[119,59,76,0.3737149796393224],[119,59,77,0.37392007233174623],[119,59,78,0.3741310516788061],[119,59,79,0.37434905127893514],[119,60,64,0.3696062050462394],[119,60,65,0.3698843508473096],[119,60,66,0.37015055322563384],[119,60,67,0.37040650584418905],[119,60,68,0.37065387383211074],[119,60,69,0.370894290580837],[119,60,70,0.37112935448477913],[119,60,71,0.37136062562650685],[119,60,72,0.3715896224064529],[119,60,73,0.3718178181171283],[119,60,74,0.3720466374618684],[119,60,75,0.37227745301808335],[119,60,76,0.3725115816450312],[119,60,77,0.37275028083611],[119,60,78,0.3729947450156639],[119,60,79,0.3732461017803107],[119,61,64,0.3678347061771718],[119,61,65,0.3681469274031939],[119,61,66,0.36844723156643444],[119,61,67,0.3687373009519268],[119,61,68,0.3690187895604271],[119,61,69,0.3692933199273597],[119,61,70,0.36956247988667],[119,61,71,0.36982781927957037],[119,61,72,0.37009084660818736],[119,61,73,0.37035302563409667],[119,61,74,0.3706157719217714],[119,61,75,0.3708804493269131],[119,61,76,0.3711483664296853],[119,61,77,0.371420772912846],[119,61,78,0.3716988558847744],[119,61,79,0.3719837361473989],[119,62,64,0.36590501433372086],[119,62,65,0.3662509499387007],[119,62,66,0.3665850349962261],[119,62,67,0.3669089400365859],[119,62,68,0.36722430752142243],[119,62,69,0.36753274868530067],[119,62,70,0.3678358403225733],[119,62,71,0.3681351215195261],[119,62,72,0.3684320903318116],[119,62,73,0.36872820040715676],[119,62,74,0.3690248575533739],[119,62,75,0.3693234162516382],[119,62,76,0.3696251761150574],[119,62,77,0.3699313782925272],[119,62,78,0.37024320181786674],[119,62,79,0.37056175990424445],[119,63,64,0.36381724164814666],[119,63,65,0.36419651611446513],[119,63,66,0.3645640468586169],[119,63,67,0.3649214922821381],[119,63,68,0.36527048289938147],[119,63,69,0.36561261820152147],[119,63,70,0.3659494634662534],[119,63,71,0.36628254651316583],[119,63,72,0.3666133544047952],[119,63,73,0.36694333009335056],[119,63,74,0.367273869013135],[119,63,75,0.3676063156186286],[119,63,76,0.36794195986825806],[119,63,77,0.3682820336538458],[119,63,78,0.36862770717573495],[119,63,79,0.36898008526359927],[119,64,64,0.3615716065325016],[119,64,65,0.361983830085999],[119,64,66,0.36238445718053924],[119,64,67,0.3627751337179492],[119,64,68,0.363157477859954],[119,64,69,0.36353307691442477],[119,64,70,0.3639034841677212],[119,64,71,0.3642702156631099],[119,64,72,0.36463474692526665],[119,64,73,0.3649985096308491],[119,64,74,0.3653628882251706],[119,64,75,0.36572921648493456],[119,64,76,0.36609877402705837],[119,64,77,0.36647278276357803],[119,64,78,0.36685240330263186],[119,64,79,0.3672387312955284],[119,65,64,0.3591684335573042],[119,65,65,0.3596132023990543],[119,65,66,0.36004656258412443],[119,65,67,0.3604701471469798],[119,65,68,0.3608855614944968],[119,65,69,0.3612943803142476],[119,65,70,0.36169814442928716],[119,65,71,0.362098357599428],[119,65,72,0.36249648326900547],[119,65,73,0.3628939412611213],[119,65,74,0.3632921044184003],[119,65,75,0.3636922951902132],[119,65,76,0.36409578216639854],[119,65,77,0.36450377655747623],[119,65,78,0.36491742862134513],[119,65,79,0.3653378240364763],[119,66,64,0.35660815327590134],[119,66,65,0.35708504983020867],[119,66,66,0.35755076614334697],[119,66,67,0.3580069220183253],[119,66,68,0.3584551097083404],[119,66,69,0.35889689084688303],[119,66,70,0.3593337933247658],[119,66,71,0.35976730811404994],[119,66,72,0.3601988860388823],[119,66,73,0.36062993449322317],[119,66,74,0.36106181410550553],[119,66,75,0.3614958353501738],[119,66,76,0.36193325510613994],[119,66,77,0.3623752731621429],[119,66,78,0.36282302866901206],[119,66,79,0.3632775965388402],[119,67,64,0.35389130199441254],[119,67,65,0.3543998951725646],[119,67,66,0.35489757718533715],[119,67,67,0.355385954243993],[119,67,68,0.3558666050528788],[119,67,69,0.3563410777611327],[119,67,70,0.3568108868617327],[119,67,71,0.3572775100378691],[119,67,72,0.3577423849566487],[119,67,73,0.3582069060101119],[119,67,74,0.3586724210036045],[119,67,75,0.35914022779145094],[119,67,76,0.3596115708599668],[119,67,77,0.36008763785779835],[119,67,78,0.360569556073588],[119,67,79,0.36105838886097064],[119,68,64,0.3510185214873828],[119,68,65,0.3515583669666904],[119,68,66,0.35208761103648323],[119,68,67,0.3526078459600361],[119,68,68,0.35312063650160624],[119,68,69,0.3536275168995061],[119,68,70,0.35412998778695026],[119,68,71,0.35462951306065404],[119,68,72,0.35512751669719167],[119,68,73,0.3556253795170987],[119,68,74,0.35612443589675713],[119,68,75,0.35662597042801064],[119,68,76,0.357131214525549],[119,68,77,0.3576413429820487],[119,68,78,0.35815747047106666],[119,68,79,0.35868064799769755],[119,69,64,0.34799055865909245],[119,69,65,0.34856119917675166],[119,69,66,0.3491215887132749],[119,69,67,0.3496733052319999],[119,69,68,0.35021789917004725],[119,69,69,0.35075689043252073],[119,69,70,0.3512917653349171],[119,69,71,0.3518239734937231],[119,69,72,0.352354924665208],[119,69,73,0.35288598553239525],[119,69,74,0.35341847644025326],[119,69,75,0.3539536680790516],[119,69,76,0.35449277811592195],[119,69,77,0.3550369677746099],[119,69,78,0.3555873383634176],[119,69,79,0.3561449277513439],[119,70,64,0.34480826515044327],[119,70,65,0.3454092308117492],[119,70,66,0.34600033655780704],[119,70,67,0.3465831457045949],[119,70,68,0.3471591939795059],[119,70,69,0.34772998653642545],[119,70,70,0.34829699491946176],[119,70,71,0.3488616539753041],[119,70,72,0.34942535871422176],[119,70,73,0.34998946111967794],[119,70,74,0.3505552669066123],[119,70,75,0.3511240322283251],[119,70,76,0.3516969603320098],[119,70,77,0.35227519816291986],[119,70,78,0.3528598329171663],[119,70,79,0.3534518885431558],[119,71,64,0.34147259689156345],[119,71,65,0.34210340549201146],[119,71,66,0.3427247858180845],[119,71,67,0.34333828619574147],[119,71,68,0.3439454272647698],[119,71,69,0.34454769901448234],[119,71,70,0.3451465577685174],[119,71,71,0.3457434231187144],[119,71,72,0.34633967480807737],[119,71,73,0.34693664956280257],[119,71,74,0.34753563787342273],[119,71,75,0.34813788072500085],[119,71,76,0.3487445662764209],[119,71,77,0.3493568264887601],[119,71,78,0.349975733702741],[119,71,79,0.3506022971652721],[119,72,64,0.337984613600071],[119,72,65,0.33864477096087664],[119,72,66,0.3392959721730705],[119,72,67,0.3399397502349254],[119,72,68,0.34057761032571193],[119,72,69,0.3412110268617508],[119,72,70,0.34184144050202186],[119,72,71,0.3424702551033036],[119,72,72,0.34309883462485447],[119,72,73,0.3437284999826124],[119,72,74,0.34436052585296584],[119,72,75,0.3449961374260276],[119,72,76,0.3456365071084599],[119,72,77,0.34628275117583573],[119,72,78,0.34693592637453463],[119,72,79,0.3475970264731794],[119,73,64,0.3343454782249009],[119,73,65,0.3350344785414706],[119,73,66,0.3357150352023802],[119,73,67,0.3363886655457682],[119,73,68,0.33705685892269577],[119,73,69,0.33772107377328064],[119,73,70,0.33838273465284713],[119,73,71,0.3390432292080688],[119,73,72,0.33970390510311116],[119,73,73,0.3403660668957527],[119,73,74,0.3410309728635395],[119,73,75,0.3416998317798998],[119,73,76,0.3423737996402725],[119,73,77,0.34305397633823076],[119,73,78,0.3437414022915992],[119,73,79,0.34443705501857447],[119,74,64,0.3305564563358627],[119,74,65,0.3312737825387496],[119,74,66,0.3319832178007902],[119,74,67,0.33268626347298225],[119,74,68,0.3333843927159501],[119,74,69,0.3340790475958773],[119,74,70,0.3347716361309246],[119,74,71,0.3354635292881035],[119,74,72,0.33615605793061787],[119,74,73,0.33685050971564706],[119,74,74,0.33754812594263195],[119,74,75,0.33825009835198366],[119,74,76,0.3389575658742737],[119,74,77,0.3396716113298839],[119,74,78,0.3403932580791165],[119,74,79,0.3411234666227743],[119,75,64,0.3266189154588582],[119,75,65,0.3273640395867338],[119,75,66,0.328101865537489],[119,75,67,0.3288338783536351],[119,75,68,0.32956153464883914],[119,75,69,0.33028625972336895],[119,75,70,0.331009444630493],[119,75,71,0.3317324431938088],[119,75,72,0.33245656897551007],[119,75,73,0.3331830921955674],[119,75,74,0.33391323660188255],[119,75,75,0.33464817629133686],[119,75,76,0.3353890324817925],[119,75,77,0.3361368702350249],[119,75,78,0.3368926951305875],[119,75,79,0.3376574498906158],[119,76,64,0.32253432435664764],[119,76,65,0.3233067079408244],[119,76,66,0.32407242595996305],[119,76,67,0.32483294683261765],[119,76,68,0.32558971027492645],[119,76,69,0.3263441244352704],[119,76,70,0.32709756298036624],[119,76,71,0.3278513621327639],[119,76,72,0.32860681765975985],[119,76,73,0.3293651818136984],[119,76,74,0.3301276602237275],[119,76,75,0.3308954087389221],[119,76,76,0.3316695302228372],[119,76,77,0.3324510712994717],[119,76,78,0.3332410190506374],[119,76,79,0.3340402976647472],[119,77,64,0.3183042522553624],[119,77,65,0.31910334671539753],[119,77,66,0.31989644784270893],[119,77,67,0.3206850071225096],[119,77,68,0.3214704470290185],[119,77,69,0.32225415817903114],[119,77,70,0.3230374964374075],[119,77,71,0.32382177997444456],[119,77,72,0.3246082862751485],[119,77,73,0.3253982491003757],[119,77,74,0.3261928553999104],[119,77,75,0.32699324217739256],[119,77,76,0.3278004933071567],[119,77,77,0.32861563630296237],[119,77,78,0.3294396390386142],[119,77,79,0.3302734064204817],[119,78,64,0.31393036801667407],[119,78,65,0.31475561506658856],[119,78,66,0.3155755803806877],[119,78,67,0.3163916982077518],[119,78,68,0.3172053734421045],[119,78,69,0.3180179787957853],[119,78,70,0.3188308519231261],[119,78,71,0.31964529249770035],[119,78,72,0.32046255924165845],[119,78,73,0.3212838669074173],[119,78,74,0.3221103832117772],[119,78,75,0.32294322572237166],[119,78,76,0.3237834586965179],[119,78,77,0.32463208987244563],[119,78,78,0.325490067212901],[119,78,79,0.32635827560113917],[119,79,64,0.30941443925550316],[119,79,65,0.3102652713201485],[119,79,66,0.31111157232740183],[119,79,67,0.311954758993014],[119,79,68,0.31279621830007825],[119,79,69,0.3136373046894865],[119,79,70,0.3144793372032832],[119,79,71,0.31532359658088427],[119,79,72,0.31617132230817246],[119,79,73,0.31702370961943904],[119,79,74,0.31788190645224645],[119,79,75,0.3187470103551131],[119,79,76,0.3196200653480925],[119,79,77,0.3205020587362215],[119,79,78,0.3213939178758365],[119,79,79,0.32229650689376843],[119,80,64,0.3047583314034839],[119,80,65,0.30563417204458976],[119,80,66,0.3065062710778116],[119,80,67,0.3073760273959686],[119,80,68,0.30824480974645113],[119,80,69,0.30911395393963936],[119,80,70,0.3099847600107154],[119,80,71,0.31085848933483723],[119,80,72,0.31173636169568564],[119,80,73,0.31261955230735394],[119,80,74,0.31350918878965495],[119,80,75,0.3144063480967471],[119,80,76,0.31531205339915047],[119,80,77,0.3162272709191291],[119,80,78,0.31715290671943763],[119,80,79,0.3180898034454439],[119,81,64,0.2999640067180864],[119,81,65,0.30086427106951974],[119,81,66,0.3017616216959912],[119,81,67,0.3026574393843724],[119,81,68,0.30355307432896095],[119,81,69,0.304449843357531],[119,81,70,0.3053490271112794],[119,81,71,0.30625186717863384],[119,81,72,0.3071595631829357],[119,81,73,0.3080732698239652],[119,81,74,0.3089940938733879],[119,81,75,0.3099230911240169],[119,81,76,0.3108612632929697],[119,81,77,0.31180955487869033],[119,81,78,0.3127688499718376],[119,81,79,0.31373996902004864],[119,82,64,0.2950335232372667],[119,82,65,0.2959576184490387],[119,82,66,0.29687966588739906],[119,82,67,0.2978010279573332],[119,82,68,0.29872303598995203],[119,82,69,0.2996469874858384],[119,82,70,0.30057414331279686],[119,82,71,0.3015057248579691],[119,82,72,0.3024429111343303],[119,82,73,0.30338683584153225],[119,82,74,0.3043385843811729],[119,82,75,0.30529919082638884],[119,82,76,0.30626963484584485],[119,82,77,0.307250838582096],[119,82,78,0.3082436634843191],[119,82,79,0.3092489070954285],[119,83,64,0.2899690336798849],[119,83,65,0.2909163593704347],[119,83,66,0.29186254091599617],[119,83,67,0.2928089220709922],[119,83,68,0.29375681500075734],[119,83,69,0.29470749754184167],[119,83,70,0.2956622104172256],[119,83,71,0.29662215440641015],[119,83,72,0.29758848747039834],[119,83,73,0.29856232183153103],[119,83,74,0.299544721008261],[119,83,75,0.30053669680475664],[119,83,76,0.3015392062554132],[119,83,77,0.30255314852424614],[119,83,78,0.30357936175916367],[119,83,79,0.304618619901131],[119,84,64,0.2847727842917794],[119,84,65,0.2857427330080693],[119,84,66,0.28671247846610637],[119,84,67,0.28768334550851543],[119,84,68,0.2886566268399771],[119,84,69,0.289633580304139],[119,84,70,0.2906154261159546],[119,84,71,0.2916033440494109],[119,84,72,0.2925984705806586],[119,84,73,0.2936018959865102],[119,84,74,0.29461466139839254],[119,84,75,0.2956377558116373],[119,84,76,0.2966721130501965],[119,84,77,0.29771860868675126],[119,84,78,0.2987780569182129],[119,84,79,0.2998512073966305],[119,85,64,0.27944711363735913],[119,85,65,0.2804390713223143],[119,85,66,0.2814318034488771],[119,85,67,0.28242661569425864],[119,85,68,0.2834247810155166],[119,85,69,0.2844275369427243],[119,85,70,0.2854360828280857],[119,85,71,0.2864515770509547],[119,85,72,0.28747513417877535],[119,85,73,0.2885078220839061],[119,85,74,0.2895506590164143],[119,85,75,0.29060461063272885],[119,85,76,0.2916705869802315],[119,85,77,0.29274943943775944],[119,85,78,0.29384195761201737],[119,85,79,0.29494886618991356],[119,86,64,0.27399445133697453],[119,86,65,0.27500779780379836],[119,86,66,0.2760229327536028],[119,86,67,0.27704114245235867],[119,86,68,0.2780636798306377],[119,86,69,0.27909176179268474],[119,86,70,0.2801265664819545],[119,86,71,0.2811692305030745],[119,86,72,0.2822208461002489],[119,86,73,0.28328245829206544],[119,86,74,0.28435506196279625],[119,86,75,0.285439598910074],[119,86,76,0.2865369548490282],[119,86,77,0.2876479563728536],[119,86,78,0.28877336786980945],[119,86,79,0.2899138883966599],[119,87,64,0.2684173167499434],[119,87,65,0.2694514261628419],[119,87,66,0.2704883739437859],[119,87,67,0.27152942670963404],[119,87,68,0.2725758170939062],[119,87,69,0.27362874107139606],[119,87,70,0.27468935523977317],[119,87,71,0.27575877405813465],[119,87,72,0.2768380670425218],[119,87,73,0.2779282559183621],[119,87,74,0.279030311729932],[119,87,75,0.28014515190671435],[119,87,76,0.2812736372867438],[119,87,77,0.28241656909690604],[119,87,78,0.2835746858901902],[119,87,79,0.2847486604399103],[119,88,64,0.2627183176030863],[119,88,65,0.2637725589639359],[119,88,66,0.2648307238977923],[119,88,67,0.26589405914264885],[119,88,68,0.26696377677288885],[119,88,69,0.2680410515390744],[119,88,70,0.2691270181652515],[119,88,71,0.2702227686037317],[119,88,72,0.2713293492473645],[119,88,73,0.27244775809926414],[119,88,74,0.2735789419000809],[119,88,75,0.27472379321269724],[119,88,76,0.275883147464436],[119,88,77,0.2770577799467499],[119,88,78,0.2782484027723925],[119,88,79,0.2794556617900832],[119,89,64,0.2569001485650663],[119,89,65,0.257973886205554],[119,89,66,0.25905266739439226],[119,89,67,0.26013771876922936],[119,89,68,0.26123023159189],[119,89,69,0.2623313591029707],[119,89,70,0.2634422138344824],[119,89,71,0.2645638648804973],[119,89,72,0.26569733512581906],[119,89,73,0.26684359843263317],[119,89,74,0.26800357678523573],[119,89,75,0.26917813739271373],[119,89,76,0.2703680897496679],[119,89,77,0.2715741826549473],[119,89,78,0.27279710118839423],[119,89,79,0.27403746364561293],[119,90,64,0.2509655897662838],[119,90,65,0.25205818384505585],[119,90,66,0.25315697564294215],[119,90,67,0.2542631714841914],[119,90,68,0.2553779415734856],[119,90,69,0.2565024173649677],[119,90,70,0.25763768888985156],[119,90,71,0.25878480204256776],[119,90,72,0.2599447558254648],[119,90,73,0.2611184995520223],[119,90,74,0.26230693000867744],[119,90,75,0.26351088857513194],[119,90,76,0.26473115830323657],[119,90,77,0.26596846095441873],[119,90,78,0.2672234539956516],[119,90,79,0.26849672755398246],[119,91,64,0.2449175052645211],[119,91,65,0.24602831226887203],[119,91,66,0.2471465047583981],[119,91,67,0.24827326853946785],[119,91,68,0.24940975252404343],[119,91,69,0.2505570661127665],[119,91,70,0.25171627653716033],[119,91,71,0.25288840616090336],[119,91,72,0.2540744297401927],[119,91,73,0.25527527164315444],[119,91,74,0.25649180302840235],[119,91,75,0.2577248389826118],[119,91,76,0.2589751356172054],[119,91,77,0.26024338712411693],[119,91,78,0.2615302227906331],[119,91,79,0.262836203973327],[119,92,64,0.23875884145606885],[119,92,65,0.23988721470770194],[119,92,66,0.24102419418089516],[119,92,67,0.2421709449683702],[119,92,68,0.24332859446296565],[119,92,69,0.24449822975440172],[119,92,70,0.2456808949856977],[119,92,71,0.24687758866919848],[119,92,72,0.2480892609622277],[119,92,73,0.24931681090232433],[119,92,74,0.2505610836021659],[119,92,75,0.2518228674040436],[119,92,76,0.25310289099398453],[119,92,77,0.2544018204754929],[119,92,78,0.25572025640290263],[119,92,79,0.2570587307743597],[119,93,64,0.23249262543265134],[119,93,65,0.23363791559704475],[119,93,66,0.2347930650402093],[119,93,67,0.23595921795430258],[119,93,68,0.23713747999596832],[119,93,69,0.23832891569639625],[119,93,70,0.2395345458315752],[119,93,71,0.24075534475269414],[119,93,72,0.2419922376767089],[119,93,73,0.24324609793703184],[119,93,74,0.2445177441944465],[119,93,75,0.24580793760811379],[119,93,76,0.24711737896676553],[119,93,77,0.24844670578005312],[119,93,78,0.24979648933004928],[119,93,79,0.25116723168291905],[119,94,64,0.2261219632840072],[119,94,65,0.22728351888291906],[119,94,66,0.2284562184649571],[119,94,67,0.22964118514378118],[119,94,68,0.23083950263225442],[119,94,69,0.232052212665415],[119,94,70,0.23328031238418184],[119,94,71,0.23452475167974873],[119,94,72,0.23578643049868653],[119,94,73,0.23706619610870608],[119,94,74,0.23836484032519206],[119,94,75,0.2396830966983643],[119,94,76,0.24102163766117013],[119,94,77,0.24238107163787248],[119,94,78,0.24376194011333197],[119,94,79,0.24516471466299844],[119,95,64,0.21965003834595936],[119,95,65,0.2208272062726017],[119,95,66,0.2220168338363695],[119,95,67,0.2232200229035972],[119,95,68,0.22443783504541667],[119,95,69,0.22567128897325278],[119,95,70,0.22692135793559623],[119,95,71,0.22818896707600797],[119,95,72,0.22947499075237346],[119,95,73,0.23078024981736012],[119,95,74,0.23210550886018982],[119,95,75,0.2334514734095789],[119,95,76,0.23481878709795412],[119,95,77,0.23620802878690583],[119,95,78,0.2376197096538772],[119,95,79,0.23905427024010667],[119,96,64,0.21308010939429145],[119,96,65,0.21427223543070997],[119,96,66,0.21547816698695507],[119,96,67,0.2166989845224377],[119,96,68,0.21793572727838487],[119,96,69,0.21918939072547056],[119,96,70,0.22046092397326902],[119,96,71,0.2217512271414826],[119,96,72,0.22306114869296362],[119,96,73,0.22439148272848436],[119,96,74,0.22574296624336376],[119,96,75,0.22711627634580894],[119,96,76,0.22851202743707355],[119,96,77,0.22993076835339865],[119,96,78,0.2313729794697334],[119,96,79,0.23283906976525437],[119,97,64,0.20641550878428191],[119,97,65,0.20762193812046909],[119,97,66,0.20884354834390267],[119,97,67,0.21008139835681464],[119,97,68,0.2113365048922677],[119,97,69,0.2126098399735315],[119,97,70,0.2139023283358265],[119,97,71,0.2152148448103876],[119,97,72,0.21654821167086757],[119,97,73,0.21790319594203145],[119,97,74,0.21928050667085658],[119,97,75,0.2206807921598894],[119,97,76,0.2221046371629648],[119,97,77,0.2235525600432547],[119,97,78,0.22502500989364005],[119,97,79,0.22652236361942668],[119,98,64,0.19965964053571597],[119,98,65,0.20087971828999476],[119,98,66,0.2021163810170485],[119,98,67,0.20337066592112732],[119,98,68,0.20464356705891562],[119,98,69,0.20593603281026185],[119,98,70,0.20724896331182208],[119,98,71,0.20858320785357026],[119,98,72,0.20993956223819327],[119,98,73,0.21131876610332345],[119,98,74,0.21272150020672442],[119,98,75,0.21414838367427602],[119,98,76,0.21559997121087238],[119,98,77,0.21707675027419238],[119,98,78,0.21857913821134012],[119,98,79,0.22010747935837627],[119,99,64,0.1928159783637146],[119,99,65,0.19404905010392368],[119,99,66,0.19530013883174202],[119,99,67,0.1965702599221919],[119,99,68,0.19786038459753624],[119,99,69,0.19917143740896898],[119,99,70,0.20050429368176692],[119,99,71,0.20185977692385476],[119,99,72,0.20323865619780268],[119,99,73,0.20464164345620628],[119,99,74,0.2060693908405687],[119,99,75,0.20752248794352862],[119,99,76,0.2090014590345462],[119,99,77,0.2105067602490096],[119,99,78,0.21203877674075972],[119,99,79,0.2135978197980506],[119,100,64,0.1858880636552201],[119,100,65,0.18713347592023177],[119,100,66,0.1883983643064498],[119,100,67,0.1896837222380781],[119,100,68,0.1909904979552045],[119,100,69,0.19231959200605875],[119,100,70,0.19367185470328102],[119,100,71,0.19504808354414876],[119,100,72,0.19644902059478475],[119,100,73,0.19787534983829436],[119,100,74,0.19932769448695287],[119,100,75,0.2008066142582855],[119,100,76,0.20231260261515271],[119,100,77,0.20384608396980497],[119,100,78,0.20540741085190034],[119,100,79,0.20699686104050702],[119,101,64,0.17887950339095193],[119,101,65,0.18013660421205763],[119,101,66,0.18141466657491773],[119,101,67,0.18271466184107316],[119,101,68,0.18403751513108552],[119,101,69,0.1853841028269702],[119,101,70,0.1867552500391852],[119,101,71,0.18815172803812935],[119,101,72,0.18957425165016728],[119,101,73,0.19102347661813096],[119,101,74,0.19249999692642217],[119,101,75,0.19400434209055],[119,101,76,0.19553697441122764],[119,101,77,0.1970982861929803],[119,101,78,0.19868859692726737],[119,101,79,0.20030815044013772],[119,102,64,0.17179396801318741],[119,102,65,0.17306210743488426],[119,102,66,0.17435271925323825],[119,102,67,0.17566675266511816],[119,102,68,0.17700510954471899],[119,102,69,0.17836864195577534],[119,102,70,0.17975814962887954],[119,102,71,0.1811743774038561],[119,102,72,0.1826180126372104],[119,102,73,0.184089682574603],[119,102,74,0.18558995168847064],[119,102,75,0.18711931898063328],[119,102,76,0.18867821525000328],[119,102,77,0.19026700032535832],[119,102,78,0.19188596026317495],[119,102,79,0.19353530451053963],[119,103,64,0.16463518923919834],[119,103,65,0.16591371983890418],[119,103,66,0.16721625825165565],[119,103,67,0.1685437314175537],[119,103,68,0.169897017848196],[119,103,69,0.17127694514827702],[119,103,70,0.1726842875028416],[119,103,71,0.17411976313014188],[119,103,72,0.17558403170011722],[119,103,73,0.17707769171844545],[119,103,74,0.17860127787629093],[119,103,75,0.18015525836558383],[119,103,76,0.1817400321599511],[119,103,77,0.18335592626125868],[119,103,78,0.18500319291175893],[119,103,79,0.1866820067718689],[119,104,64,0.15740695782015135],[119,104,65,0.1586952352263894],[119,104,66,0.16000907953092408],[119,104,67,0.1613493953349842],[119,104,68,0.1627170376820441],[119,104,69,0.16411280958841867],[119,104,70,0.1655374595400596],[119,104,71,0.16699167895550104],[119,104,72,0.168476099614977],[119,104,73,0.16999129105565636],[119,104,74,0.17153775793312143],[119,104,75,0.1731159373489276],[119,104,76,0.17472619614435964],[119,104,77,0.17636882816034521],[119,104,78,0.17804405146352575],[119,104,79,0.17975200553850118],[119,105,64,0.1501131212458417],[119,105,65,0.15141050465441858],[119,105,66,0.15273503680357586],[119,105,67,0.15408759988362342],[119,105,68,0.15546902537517893],[119,105,69,0.15688009158836552],[119,105,70,0.15832152116875847],[119,105,71,0.15979397857002736],[119,105,72,0.16129806749329645],[119,105,73,0.16283432829316963],[119,105,74,0.16440323535054713],[119,105,75,0.16600519441206701],[119,105,76,0.16764053989629146],[119,105,77,0.16930953216659922],[119,105,78,0.17101235477077859],[119,105,79,0.17274911164734208],[119,106,64,0.14275758139507738],[119,106,65,0.14406343408279337],[119,106,66,0.14539803917992788],[119,106,67,0.14676225640394586],[119,106,68,0.1481568935887484],[119,106,69,0.1495827042320821],[119,106,70,0.15104038501024458],[119,106,71,0.1525305732600311],[119,106,72,0.15405384442794584],[119,106,73,0.15561070948662187],[119,106,74,0.1572016123185822],[119,106,75,0.1588269270671675],[119,106,76,0.16048695545475816],[119,106,77,0.16218192406824639],[119,106,78,0.16391198161175408],[119,106,79,0.16567719612662174],[119,107,64,0.13534429213152782],[119,107,65,0.1366579819669509],[119,107,66,0.1380020487586353],[119,107,67,0.139377329699454],[119,107,68,0.14078460890367978],[119,107,69,0.142224614962218],[119,107,70,0.14369801846568103],[119,107,71,0.145205429495248],[119,107,72,0.14674739508133522],[119,107,73,0.148324396630019],[119,107,74,0.14993684731734497],[119,107,75,0.15158508945134974],[119,107,76,0.15326939180192128],[119,107,77,0.1549899468984522],[119,107,78,0.1567468682952885],[119,107,79,0.1585401878049899],[119,108,64,0.12787725684540674],[119,108,65,0.12919815679624047],[119,108,66,0.13055107816216116],[119,108,67,0.1319368355699308],[119,108,68,0.13335618935229843],[119,108,69,0.1348098431106694],[119,108,70,0.1362984412461602],[119,108,71,0.13782256645898278],[119,108,72,0.13938273721618216],[119,108,73,0.14097940518767055],[119,108,74,0.14261295265069251],[119,108,75,0.14428368986254553],[119,108,76,0.14599185240168133],[119,108,77,0.1477375984771483],[119,108,78,0.14952100620636705],[119,108,79,0.15134207086126683],[119,109,64,0.12036052594080843],[119,109,65,0.12168801457738837],[119,109,66,0.12304918801698417],[119,109,67,0.12444483828899916],[119,109,68,0.12587570189384],[119,109,69,0.12734245737263766],[119,109,70,0.12884572284589635],[119,109,71,0.13038605352101323],[119,109,72,0.13196393916869553],[119,109,73,0.13357980156821497],[119,109,74,0.1352339919216361],[119,109,75,0.13692678823684173],[119,109,76,0.1386583926794836],[119,109,77,0.14042892889381164],[119,109,78,0.1422384392923846],[119,109,79,0.14408688231467937],[119,110,64,0.11279819426850068],[119,110,65,0.11413165626295396],[119,110,66,0.11550048437834792],[119,110,67,0.11690544802579023],[119,110,68,0.11834725983365851],[119,110,69,0.11982657322399032],[119,110,70,0.12134397995834179],[119,110,71,0.12290000765305831],[119,110,72,0.12449511726398282],[119,110,73,0.12612970054054112],[119,110,74,0.12780407744934402],[119,110,75,0.12951849356712475],[119,110,76,0.1312731174431428],[119,110,77,0.13306803793100863],[119,110,78,0.13490326148992865],[119,110,79,0.1367787094553895],[119,111,64,0.10519439850456025],[119,111,65,0.10653322512515584],[119,111,66,0.10790911609993209],[119,111,67,0.10932281821110473],[119,111,68,0.11077502018651403],[119,111,69,0.11226635028230336],[119,111,70,0.1137973738356074],[119,111,71,0.11536859078718936],[119,111,72,0.11698043317405504],[119,111,73,0.11863326259198304],[119,111,74,0.12032736762811047],[119,111,75,0.12206296126339206],[119,111,76,0.12384017824506471],[119,111,77,0.1256590724290736],[119,111,78,0.12751961409245222],[119,111,79,0.12942168721568664],[119,112,64,0.09755331447465648],[119,112,65,0.09889690407488455],[119,112,66,0.10027927214826027],[119,112,67,0.10170114284787751],[119,112,68,0.10316318098374921],[119,112,69,0.10466598961139933],[119,112,70,0.10621010759100052],[119,112,71,0.10779600711699816],[119,112,72,0.10942409121824725],[119,112,73,0.11109469122860305],[119,112,74,0.11280806422810163],[119,112,75,0.11456439045455424],[119,112,76,0.11636377068568055],[119,112,77,0.11820622359173966],[119,112,78,0.12009168305865636],[119,112,79,0.12201999548166303],[119,113,64,0.08987915442379474],[119,113,65,0.09122691292570273],[119,113,66,0.09261517886164611],[119,113,67,0.0940446537657505],[119,113,68,0.0955159785241631],[119,113,69,0.09702973096918549],[119,113,70,0.09858642344448493],[119,113,71,0.10018650034132759],[119,113,72,0.10183033560585864],[119,113,73,0.10351823021736895],[119,113,74,0.10525040963768978],[119,113,75,0.10702702123153168],[119,113,76,0.10884813165789803],[119,113,77,0.11071372423253245],[119,113,78,0.11262369626139324],[119,113,79,0.1145778563451782],[119,114,64,0.08217616423192042],[119,114,65,0.08352750560324262],[119,114,66,0.08492109715408785],[119,114,67,0.08635761782016182],[119,114,68,0.08783768456898555],[119,114,69,0.08936184999919788],[119,114,70,0.0909305999114694],[119,114,71,0.09254435085097007],[119,114,72,0.09420344762141519],[119,114,73,0.09590816077062997],[119,114,74,0.09765868404777484],[119,114,75,0.0994551318320443],[119,114,76,0.1012975365329758],[119,114,77,0.10318584596232211],[119,114,78,0.10511992067748133],[119,114,79,0.10709953129651367],[119,115,64,0.07444862057504537],[119,115,65,0.0758029672996568],[119,115,66,0.07720131966376598],[119,115,67,0.07864433403560789],[119,115,68,0.08013260348061219],[119,115,69,0.08166665536550988],[119,115,70,0.08324694893458234],[119,115,71,0.0848738728579913],[119,115,72,0.08654774275221844],[119,115,73,0.08826879867255044],[119,115,74,0.09003720257775544],[119,115,75,0.09185303576676229],[119,115,76,0.0937162962874784],[119,115,77,0.09562689631769866],[119,115,78,0.0975846595181053],[119,115,79,0.09958931835737977],[119,116,64,0.0667008280321566],[119,116,65,0.06805761157338325],[119,116,66,0.06946016784640685],[119,116,67,0.07090913069333943],[119,116,68,0.07240506930535984],[119,116,69,0.0739484858312664],[119,116,70,0.07553981295869411],[119,116,71,0.07717941146794227],[119,116,72,0.07886756775843601],[119,116,73,0.08060449134775971],[119,116,74,0.08239031234340904],[119,116,75,0.08422507888707187],[119,116,76,0.08610875457157113],[119,116,77,0.08804121583043006],[119,116,78,0.09002224930005082],[119,116,79,0.09205154915453106],[119,117,64,0.05893711613755126],[119,117,65,0.060295777393870265],[119,117,66,0.06170198901315743],[119,117,67,0.06315636236313682],[119,117,68,0.06465944279988889],[119,117,69,0.06621170728048803],[119,117,70,0.06781356194883237],[119,117,71,0.06946533969460295],[119,117,72,0.07116729768538277],[119,117,73,0.07291961487186899],[119,117,74,0.07472238946632914],[119,117,75,0.0765756363941048],[119,117,76,0.07847928471830679],[119,117,77,0.08043317503765052],[119,117,78,0.08243705685742808],[119,117,79,0.08449058593364661],[119,118,64,0.05116183637902261],[119,118,65,0.05252182613168632],[119,118,66,0.053931153313393265],[119,118,67,0.055390406879589626],[119,118,68,0.056900108401713834],[119,118,69,0.05846070968357009],[119,118,70,0.0600725903514131],[119,118,71,0.06173605541768212],[119,118,72,0.06345133281841481],[119,118,73,0.06521857092427397],[119,118,74,0.06703783602533675],[119,118,75,0.06890910978945475],[119,118,76,0.0708322866943204],[119,118,77,0.07280717143319615],[119,118,78,0.0748334762943017],[119,118,79,0.07691081851388293],[119,119,64,0.04337935914169405],[119,119,65,0.04474013849380748],[119,119,66,0.04615205066225775],[119,119,67,0.047615662262673164],[119,119,68,0.04913147114360089],[119,119,69,0.05069990400627061],[119,119,70,0.052321313998583474],[119,119,71,0.05399597828326819],[119,119,72,0.05572409558023106],[119,119,73,0.05750578368303705],[119,119,74,0.059341076949668836],[119,119,75,0.061229923767372796],[119,119,76,0.06317218399172697],[119,119,77,0.06516762635989043],[119,119,78,0.06721592587802283],[119,119,79,0.06931666118290553],[119,120,64,0.035594070597305016],[119,120,65,0.03695511140389163],[119,120,66,0.03836908761273794],[119,120,67,0.03983654358243266],[119,120,68,0.04135795351165744],[119,120,69,0.0429337190619965],[119,120,70,0.044564166955485596],[119,120,71,0.0462495465468406],[119,120,72,0.04799002737039282],[119,120,73,0.049785696661666434],[119,120,74,0.05163655685374863],[119,120,75,0.053542523048256796],[119,120,76,0.05550342046104195],[119,120,77,0.05751898184258514],[119,120,78,0.05958884487307603],[119,120,79,0.061712549532208616],[119,121,64,0.02781036953934407],[119,121,65,0.029171154827934476],[119,121,66,0.030586684172670464],[119,121,67,0.03205747976816542],[119,121,68,0.03358399224750713],[119,121,69,0.03516659830777902],[119,121,70,0.036805598310829746],[119,121,71,0.03850121385923094],[119,121,72,0.040253585347449716],[119,121,73,0.04206276948817195],[119,121,74,0.04392873681392717],[119,121,75,0.04585136915381899],[119,121,76,0.047830457085499434],[119,121,77,0.04986569736234586],[119,121,78,0.05195669031582972],[119,121,79,0.05410293723310611],[119,122,64,0.020032664163834313],[119,122,65,0.02139268854510412],[119,122,66,0.02280927056648141],[119,122,67,0.024282910361905774],[119,122,68,0.025814035094353704],[119,122,69,0.027402996583742234],[119,122,70,0.029050068910584925],[119,122,71,0.030755445995340303],[119,122,72,0.03251923915347965],[119,122,73,0.03434147462621023],[119,122,74,0.036222091087005026],[119,122,75,0.03816093712374019],[119,122,76,0.040157768696583884],[119,122,77,0.04221224657159034],[119,122,78,0.044323933729988885],[119,122,79,0.046492292753202547],[119,123,64,0.01226536879556639],[119,123,65,0.013624138863563784],[119,123,66,0.015041283941461037],[119,123,67,0.016517282216013063],[119,123,68,0.018052537486735798],[119,123,69,0.0196473767958682],[119,123,70,0.02130204803458685],[119,123,71,0.023016717525413455],[119,123,72,0.024791467580841275],[119,123,73,0.02662629403811778],[119,123,74,0.028521103770331846],[119,123,75,0.030475712173612335],[119,123,76,0.03248984063057614],[119,123,77,0.03456311394997846],[119,123,78,0.03669505778256554],[119,123,79,0.0388850960131506],[119,124,64,0.0045129005601809435],[119,124,65,0.005869935281671346],[119,124,66,0.0072871650189682],[119,124,67,0.008765046135259413],[119,124,68,0.010303959184366607],[119,124,69,0.011904206542449003],[119,124,70,0.013566010016455687],[119,124,71,0.01528950842926391],[119,124,72,0.01707475518153645],[119,124,73,0.01892171579022528],[119,124,74,0.020830265403880333],[119,124,75,0.022800186294562486],[119,124,76,0.024831165326500204],[119,124,77,0.02692279140145004],[119,124,78,0.029074552880747118],[119,124,79,0.031285834984079997],[119,125,64,-0.0032203239980962417],[119,125,65,-0.0018654929056348135],[119,125,66,-4.4864530962884785E-4],[119,125,67,0.0010306534632210096],[119,125,68,0.002572760849864908],[119,125,69,0.00417795468403781],[119,125,70,0.005846430806633385],[119,125,71,0.007578300653257153],[119,125,72,0.009373588818984757],[119,125,73,0.011232230600262239],[119,125,74,0.013154069514100142],[119,125,75,0.01513885479436139],[119,125,76,0.017186238865286918],[119,125,77,0.019295774792213782],[119,125,78,0.021466913709473623],[119,125,79,0.023699002225508914],[119,126,64,-0.010929892353272741],[119,126,65,-0.009577720055468364],[119,126,66,-0.008161709442479681],[119,126,67,-0.006681447387228201],[119,126,68,-0.0051365994298253614],[119,126,69,-0.003526912143310801],[119,126,70,-0.0018522155216640357],[119,126,71,-1.1242539015288155E-4],[119,126,72,0.0016924541620118028],[119,126,73,0.003562328326646824],[119,126,74,0.005497009099347694],[119,126,75,0.0074962127798224865],[119,126,76,0.009559557449945189],[119,126,77,0.01168656042948868],[119,126,78,0.013876635709527352],[119,126,79,0.016129091363538905],[119,127,64,-0.018611399488556224],[119,127,65,-0.017262327680247103],[119,127,66,-0.015847596581846368],[119,127,67,-0.014366814458923294],[119,127,68,-0.01281966967792969],[119,127,69,-0.01120593307110651],[119,127,70,-0.009525460323183021],[119,127,71,-0.007778194379932324],[119,127,72,-0.005964167878552584],[119,127,73,-0.004083505599941195],[119,127,74,-0.0021364269427064375],[119,127,75,-1.232484191190375E-4],[119,127,76,0.001955613827140379],[119,127,77,0.00409964148139319],[119,127,78,0.006308211496523719],[119,127,79,0.008580593509722845],[119,128,64,-0.02626045144167466],[119,128,65,-0.024914908005762515],[119,128,66,-0.023501886303966102],[119,128,67,-0.022021015831112822],[119,128,68,-0.020472007618447807],[119,128,69,-0.018854656597997232],[119,128,70,-0.017168843988250804],[119,128,71,-0.01541453970122364],[119,128,72,-0.01359180477086741],[119,128,73,-0.0117007938028999],[119,128,74,-0.009741757445896115],[119,128,75,-0.007715044883843447],[119,128,76,-0.005621106350016003],[119,128,77,-0.0034604956622166227],[119,128,78,-0.001233872779391576],[119,128,79,0.0010579936204134777],[119,129,64,-0.03387266890474039],[119,129,65,-0.032531067584261],[119,129,66,-0.031120172184375017],[119,129,67,-0.02963963325605723],[119,129,68,-0.02808918432306562],[119,129,69,-0.02646864424604478],[119,129,70,-0.02477791960747644],[119,129,71,-0.023017007117539956],[119,129,72,-0.02118599604085203],[119,129,73,-0.019285070644154523],[119,129,74,-0.017314512664793003],[119,129,75,-0.015274703800189249],[119,129,76,-0.013166128218163098],[119,129,77,-0.010989375088151565],[119,129,78,-0.008745141133328693],[119,129,79,-0.006434233203600148],[119,130,64,-0.04144369087827132],[119,130,65,-0.04010643096215227],[119,130,66,-0.03869806547830679],[119,130,67,-0.03721826585113108],[119,130,68,-0.035666787913986586],[119,130,69,-0.03404347427331611],[119,130,70,-0.03234825669314256],[119,130,71,-0.030581158500013084],[119,130,72,-0.028742297008357065],[119,130,73,-0.02683188596632846],[119,130,74,-0.02485023802197206],[119,130,75,-0.022797767209922548],[119,130,76,-0.020674991458485725],[119,130,77,-0.018482535117150922],[119,130,78,-0.01622113150454496],[119,130,79,-0.013891625476788905],[119,131,64,-0.04896917837956083],[119,131,65,-0.04763664440253046],[119,131,66,-0.04623119885635518],[119,131,67,-0.044752533846623255],[119,131,68,-0.04320042732287077],[119,131,69,-0.04157474544297668],[119,131,70,-0.039875444957479855],[119,131,71,-0.03810257561388486],[119,131,72,-0.03625628258092062],[119,131,73,-0.03433680889282498],[119,131,74,-0.032344497913496806],[119,131,75,-0.030279795820716604],[119,131,76,-0.02814325411029539],[119,131,77,-0.025935532120194393],[119,131,78,-0.02365739957462476],[119,131,79,-0.021309739148095086],[119,132,64,-0.05644481820559366],[119,132,65,-0.05511737966270924],[119,132,66,-0.05371523019559754],[119,132,67,-0.052238082389427065],[119,132,68,-0.05068573610608096],[119,132,69,-0.04905808084908747],[119,132,70,-0.04735509814802141],[119,132,71,-0.04557686396243665],[119,132,72,-0.043723551105303904],[119,132,73,-0.0417954316860184],[119,132,74,-0.039792879572821516],[119,132,75,-0.03771637287483964],[119,132,76,-0.03556649644359855],[119,132,77,-0.03334394439405275],[119,132,78,-0.0310495226451446],[119,132,79,-0.028684151479858477],[119,133,64,-0.06386632675011561],[119,133,65,-0.06254433782638069],[119,133,66,-0.061145846425794015],[119,133,67,-0.05967058540223824],[119,133,68,-0.058118376315846376],[119,133,69,-0.05648913179871573],[119,133,70,-0.05478285793964799],[119,133,71,-0.052999656687972574],[119,133,72,-0.051139728276427654],[119,133,73,-0.04920337366316596],[119,133,74,-0.04719099699272422],[119,133,75,-0.04510310807616824],[119,133,76,-0.04294032489026045],[119,133,77,-0.040703376095699184],[119,133,78,-0.03839310357444192],[119,133,79,-0.03601046498607152],[119,134,64,-0.07122945387505886],[119,134,65,-0.06991325319059238],[119,134,66,-0.06851876743085172],[119,134,67,-0.06704574949845021],[119,134,68,-0.06549404242753998],[119,134,69,-0.0638635817505524],[119,134,70,-0.06215439788352051],[119,134,71,-0.0603666185300481],[119,134,72,-0.05850047110389289],[119,134,73,-0.056556285170233256],[119,134,74,-0.05453449490546303],[119,134,75,-0.05243564157571301],[119,134,76,-0.05026037603396105],[119,134,77,-0.04800946123577188],[119,134,78,-0.0456837747736758],[119,134,79,-0.043284311430154876],[119,135,64,-0.0785299868365038],[119,135,65,-0.07721989720773359],[119,135,66,-0.07582975000574943],[119,135,67,-0.07435931795293826],[119,135,68,-0.07280846532325713],[119,135,69,-0.07117715031022842],[119,135,70,-0.06946542741308703],[119,135,71,-0.06767344984113544],[119,135,72,-0.06580147193628194],[119,135,73,-0.06384985161382783],[119,135,74,-0.061819052821345144],[119,135,75,-0.05970964801585066],[119,135,76,-0.057522320659132986],[119,135,77,-0.05525786773127239],[119,135,78,-0.05291720226236951],[119,135,79,-0.0505013558824452],[119,136,64,-0.08576375426480232],[119,136,65,-0.08446008248214587],[119,136,66,-0.08307459186853328],[119,136,67,-0.0816070747283495],[119,136,68,-0.08005741633131158],[119,136,69,-0.07842559728194509],[119,136,70,-0.0767116959067814],[119,136,71,-0.07491589065933923],[119,136,72,-0.07303846254285673],[119,136,73,-0.07107979755084959],[119,136,74,-0.0690403891253265],[119,136,75,-0.06692084063287973],[119,136,76,-0.06472186785849343],[119,136,77,-0.06244430151712399],[119,136,78,-0.06008908978305694],[119,136,79,-0.05765730083700682],[119,137,64,-0.09292663019905578],[119,137,65,-0.09162966682155738],[119,137,66,-0.09024913572758908],[119,137,67,-0.08878484855709767],[119,137,68,-0.08723671132185296],[119,137,69,-0.08560472677661712],[119,137,70,-0.08388899680761541],[119,137,71,-0.08208972483836718],[119,137,72,-0.08020721825285004],[119,137,73,-0.07824189083606492],[119,137,74,-0.07619426523184247],[119,137,75,-0.07406497541809554],[119,137,76,-0.07185476919937839],[119,137,77,-0.06956451071678837],[119,137,78,-0.06719518297522531],[119,137,79,-0.06474789038797724],[119,138,64,-0.10001453817612382],[119,138,65,-0.09872455734351637],[119,138,66,-0.0973492734043595],[119,138,67,-0.09588851707923618],[119,138,68,-0.09434221485877281],[119,138,69,-0.09271039137670567],[119,138,70,-0.09099317179983446],[119,138,71,-0.08919078423492444],[119,138,72,-0.087303562152525],[119,138,73,-0.08533194682777567],[119,138,74,-0.08327648979803792],[119,138,75,-0.08113785533756246],[119,138,76,-0.07891682294904412],[119,138,77,-0.07661428987210617],[119,138,78,-0.07423127360873316],[119,138,79,-0.0717689144656074],[119,139,64,-0.10702345537378022],[119,139,65,-0.1057407146364382],[119,139,66,-0.10437095001112529],[119,139,67,-0.10291401103582554],[119,139,68,-0.1013698444075205],[119,139,69,-0.09973849635735077],[119,139,70,-0.09802011504225461],[119,139,71,-0.09621495295314964],[119,139,72,-0.09432336933962138],[119,139,73,-0.09234583265119478],[119,139,74,-0.09028292299502128],[119,139,75,-0.08813533461019629],[119,139,76,-0.08590387835855418],[119,139,77,-0.08358948423198986],[119,139,78,-0.08119320387631634],[119,139,79,-0.0787162131316207],[119,140,64,-0.11394941680834403],[119,140,65,-0.11267415697559258],[119,140,66,-0.11131016818417783],[119,140,67,-0.10985731851812275],[119,140,68,-0.10831557459915298],[119,140,69,-0.10668500396413805],[119,140,70,-0.10496577745860969],[119,140,71,-0.10315817164642005],[119,140,72,-0.10126257123551174],[119,140,73,-0.09927947151986405],[119,140,74,-0.09720948083746117],[119,140,75,-0.095053323044484],[119,140,76,-0.0928118400055854],[119,140,77,-0.09048599410028646],[119,140,78,-0.0880768707455103],[119,140,79,-0.08558568093421715],[119,141,64,-0.12078851958653558],[119,141,65,-0.11952096459378769],[119,141,66,-0.11816299237213457],[119,141,67,-0.11671448927234618],[119,141,68,-0.11517544155037418],[119,141,69,-0.11354593774724864],[119,141,70,-0.11182617108465853],[119,141,71,-0.11001644187628057],[119,141,72,-0.10811715995482374],[119,141,73,-0.10612884711486081],[119,141,74,-0.1040521395712849],[119,141,75,-0.10188779043359986],[119,141,76,-0.09963667219589811],[119,141,77,-0.09729977924256761],[119,141,78,-0.09487823036974585],[119,141,79,-0.09237327132247652],[119,142,64,-0.1275369272118868],[119,142,65,-0.12627728400707228],[119,142,66,-0.1249255531797242],[119,142,67,-0.12348163906034071],[119,142,68,-0.12194554723988793],[119,142,69,-0.12031738695231686],[119,142,70,-0.11859737347238108],[119,142,71,-0.11678583052881741],[119,142,72,-0.11488319273285374],[119,142,73,-0.11289000802212079],[119,142,74,-0.11080694011980252],[119,142,75,-0.10863477100923336],[119,142,76,-0.10637440342379678],[119,142,77,-0.10402686335217215],[119,142,78,-0.10159330255893462],[119,142,79,-0.09907500112047762],[119,143,64,-0.13419087394531848],[119,143,65,-0.13293933239507294],[119,143,66,-0.1315940517666545],[119,143,67,-0.1301549540757576],[119,143,68,-0.12862206394067888],[119,143,69,-0.12699551096761386],[119,143,70,-0.12527553215087517],[119,143,71,-0.12346247428809631],[119,143,72,-0.1215567964103832],[119,143,73,-0.11955907222749251],[119,143,74,-0.11746999258786894],[119,143,75,-0.11529036795375114],[119,143,76,-0.11302113089120425],[119,143,77,-0.11066333857511468],[119,143,78,-0.10821817530916722],[119,143,79,-0.10568695506076364],[119,144,64,-0.14074666922007517],[119,144,65,-0.13950340203615785],[119,144,66,-0.13816476430175761],[119,144,67,-0.1367306954159404],[119,144,68,-0.13520123870841227],[119,144,69,-0.13357654382774442],[119,144,70,-0.1318568691441463],[119,144,71,-0.13004258416685333],[119,144,72,-0.12813417197609478],[119,144,73,-0.126132231669714],[119,144,74,-0.12403748082427724],[119,144,75,-0.12185075797088396],[119,144,76,-0.1195730250855278],[119,144,77,-0.11720537009405152],[119,144,78,-0.11474900939171506],[119,144,79,-0.11220529037732985],[119,145,64,-0.14720070211117853],[119,145,65,-0.1459658647975821],[119,145,66,-0.14463404647256506],[119,145,67,-0.14320520360967548],[119,145,68,-0.1416793979261134],[119,145,69,-0.14005679877401933],[119,145,70,-0.13833768554594883],[119,145,71,-0.1365224500945964],[119,145,72,-0.13461159916673937],[119,145,73,-0.13260575685146758],[119,145,74,-0.13050566704254285],[119,145,75,-0.12831219591509113],[119,145,76,-0.1260263344164857],[119,145,77,-0.12364920077146346],[119,145,78,-0.12118204300148427],[119,145,79,-0.11862624145829981],[119,146,64,-0.15354944585905794],[119,146,65,-0.1523231766802844],[119,146,66,-0.15099833804998342],[119,146,67,-0.14957490320047262],[119,146,68,-0.14805295190478784],[119,146,69,-0.14643267287116368],[119,146,70,-0.1447143661513436],[119,146,71,-0.14289844556278408],[119,146,72,-0.1409854411247241],[119,146,73,-0.13897600150818445],[119,146,74,-0.13687089649974005],[119,146,75,-0.1346710194792723],[119,146,76,-0.13237738991155545],[119,146,77,-0.1299911558517186],[119,146,78,-0.12751359646460092],[119,146,79,-0.12494612455795395],[119,147,64,-0.15978946244754066],[119,147,65,-0.15857188241850362],[119,147,66,-0.15725416750823917],[119,147,67,-0.1558363073855451],[119,147,68,-0.15431839954015691],[119,147,69,-0.15270065168053615],[119,147,70,-0.15098338414514245],[119,147,71,-0.1491670323272528],[119,147,72,-0.1472521491132932],[119,147,73,-0.14523940733476104],[119,147,74,-0.14312960223356408],[119,147,75,-0.14092365394099937],[119,147,76,-0.13862260997021192],[119,147,77,-0.13622764772218798],[119,147,78,-0.13374007700528778],[119,147,79,-0.1311613425682815],[119,148,64,-0.16591740723634818],[119,148,65,-0.16470862013437249],[119,148,66,-0.16339815670025026],[119,148,67,-0.16198602271065043],[119,148,68,-0.16047233302566577],[119,148,69,-0.15885731399001657],[119,148,70,-0.15714130584740094],[119,148,71,-0.15532476516804938],[119,148,72,-0.15340826728945545],[119,148,73,-0.15139250877035382],[119,148,74,-0.1492783098577789],[119,148,75,-0.14706661696742018],[119,148,76,-0.14475850517712197],[119,148,77,-0.14235518073357234],[119,148,78,-0.13985798357219603],[119,148,79,-0.13726838985021195],[119,149,64,-0.17193003364778492],[119,149,65,-0.17073012604717208],[119,149,66,-0.16942702558810763],[119,149,67,-0.16802075382046977],[119,149,68,-0.16651144262144368],[119,149,69,-0.16489933660024192],[119,149,70,-0.16318479551563347],[119,149,71,-0.16136829670635133],[119,149,72,-0.15945043753434196],[119,149,73,-0.15743193784092835],[119,149,74,-0.15531364241572632],[119,149,75,-0.15309652347852232],[119,149,76,-0.15078168317396612],[119,149,77,-0.14837035607911742],[119,149,78,-0.14586391172387192],[119,149,79,-0.14326385712421064],[119,150,64,-0.17782419790777593],[119,150,65,-0.17663323923739838],[119,150,66,-0.1753375970288179],[119,150,67,-0.17393730826468],[119,150,68,-0.17243252147937238],[119,150,69,-0.17082349916734352],[119,150,70,-0.16911062020391177],[119,150,71,-0.16729438227862692],[119,150,72,-0.1653754043411486],[119,150,73,-0.16335442905971753],[119,150,74,-0.16123232529205644],[119,150,75,-0.15901009056890503],[119,150,76,-0.15668885359004825],[119,150,77,-0.15426987673287995],[119,150,78,-0.15175455857351128],[119,150,79,-0.14914443642038955],[119,151,64,-0.18359686384141505],[119,151,65,-0.18241490646581182],[119,151,66,-0.18112680161547734],[119,151,67,-0.17973260135989122],[119,151,68,-0.17823247052442837],[119,151,69,-0.17662668910235735],[119,151,70,-0.17491565467901293],[119,151,71,-0.1730998848682047],[119,151,72,-0.17118001976082942],[119,151,73,-0.16915682438575974],[119,151,74,-0.16703119118284415],[119,151,75,-0.16480414248822928],[119,151,76,-0.16247683303186156],[119,151,77,-0.16005055244720034],[119,151,78,-0.15752672779317034],[119,151,79,-0.15490692608830214],[119,152,64,-0.1892451077227012],[119,152,65,-0.18807218704713713],[119,152,66,-0.18679168257354817],[119,152,67,-0.18540366110711337],[119,152,68,-0.1839083033919734],[119,152,69,-0.1823059065269751],[119,152,70,-0.18059688639328397],[119,152,71,-0.1787817800939241],[119,152,72,-0.17686124840521622],[119,152,73,-0.17483607824018332],[119,152,74,-0.17270718512376027],[119,152,75,-0.17047561568002179],[119,152,76,-0.16814255013127521],[119,152,77,-0.1657093048090652],[119,152,78,-0.1631773346771056],[119,152,79,-0.16054823586609424],[119,153,64,-0.19476612317863728],[119,153,65,-0.19360225777859663],[119,153,66,-0.19232940071241378],[119,153,67,-0.1909476331649368],[119,153,68,-0.18945715142116826],[119,153,69,-0.18785826928581573],[119,153,70,-0.18615142051440836],[119,153,71,-0.18433716125604394],[119,153,72,-0.18241617250773468],[119,153,73,-0.18038926258041932],[119,153,74,-0.17825736957648552],[119,153,75,-0.17602156387900258],[119,153,76,-0.1736830506525292],[119,153,77,-0.17124317235553066],[119,153,78,-0.16870341126441968],[119,153,79,-0.16606539200918857],[119,154,64,-0.20015722614781473],[119,154,65,-0.199002417923396],[119,154,66,-0.19773723943234],[119,154,67,-0.1963617858785479],[119,154,68,-0.1948762687046367],[119,154,69,-0.19328101801534103],[119,154,70,-0.19157648501219127],[119,154,71,-0.18976324443953285],[119,154,72,-0.18784199704184956],[119,154,73,-0.1858135720324684],[119,154,74,-0.18367892957347676],[119,154,75,-0.18143916326706577],[119,154,76,-0.17909550265815477],[119,154,77,-0.17664931574833243],[119,154,78,-0.17410211152113575],[119,154,79,-0.17145554247862616],[119,155,64,-0.20541585989321143],[119,155,65,-0.20427009424888987],[119,155,66,-0.2030126097865601],[119,155,67,-0.2016435153643007],[119,155,68,-0.200163037194098],[119,155,69,-0.19857152126913769],[119,155,70,-0.19686943580209226],[119,155,71,-0.1950573736744653],[119,155,72,-0.19313605489695795],[119,155,73,-0.1911063290809355],[119,155,74,-0.18896917792082113],[119,155,75,-0.18672571768763824],[119,155,76,-0.184377201733544],[119,155,77,-0.18192502300740565],[119,155,78,-0.17937071658142734],[119,155,79,-0.17671596218878838],[119,156,64,-0.21053960006933947],[119,156,65,-0.20940284611956284],[119,156,66,-0.20815305559863007],[119,156,67,-0.2067903506499904],[119,156,68,-0.205314971862115],[119,156,69,-0.20372728069970925],[119,156,70,-0.2020277619456422],[119,156,71,-0.2002170261536642],[119,156,72,-0.19829581211186975],[119,156,73,-0.19626498931698477],[119,156,74,-0.19412556045931284],[119,156,75,-0.19187866391854802],[119,156,76,-0.18952557627031208],[119,156,77,-0.1870677148034562],[119,156,78,-0.18450664004813777],[119,156,79,-0.18184405831464212],[119,157,64,-0.21552615984387768],[119,157,65,-0.21439837064496847],[119,157,66,-0.21315625863518717],[119,157,67,-0.21179995887095937],[119,157,68,-0.21032972592008947],[119,157,69,-0.20874593629690918],[119,157,70,-0.20704909090788215],[119,157,71,-0.20523981750772535],[119,157,72,-0.20331887316601382],[119,157,73,-0.201287146744344],[119,157,74,-0.19914566138388823],[119,157,75,-0.19689557700355131],[119,157,76,-0.19453819280858886],[119,157,77,-0.19207494980971518],[119,157,78,-0.18950743335273446],[119,157,79,-0.18683737565863912],[119,158,64,-0.22037339507351916],[119,158,65,-0.21925450788234313],[119,158,66,-0.21802004383383422],[119,158,67,-0.21667015052176308],[119,158,68,-0.2152050960922265],[119,158,69,-0.21362527168274337],[119,158,70,-0.21193119387154769],[119,158,71,-0.21012350713714567],[119,158,72,-0.20820298632809375],[119,158,73,-0.20617053914308114],[119,158,74,-0.20402720862114454],[119,158,75,-0.20177417564223],[119,158,76,-0.1994127614379544],[119,158,77,-0.1969444301126081],[119,158,78,-0.19437079117441336],[119,158,79,-0.19169360207699726],[119,159,64,-0.2250793095341811],[119,159,65,-0.22396924609405455],[119,159,66,-0.2227423845863078],[119,159,67,-0.2213988847635492],[119,159,68,-0.21993902794563114],[119,159,69,-0.218363219462693],[119,159,70,-0.2166719911081535],[119,159,71,-0.21486600360171548],[119,159,72,-0.2129460490623465],[119,159,73,-0.21091305349131306],[119,159,74,-0.20876807926509844],[119,159,75,-0.2065123276384182],[119,159,76,-0.20414714125718914],[119,159,77,-0.20167400668148638],[119,159,78,-0.19909455691851008],[119,159,79,-0.19641057396551986],[119,160,64,-0.22964206020567235],[119,160,65,-0.22854072705997452],[119,160,66,-0.2273214080770184],[119,160,67,-0.22598427478723948],[119,160,68,-0.22452962127661658],[119,160,69,-0.22295786663365347],[119,160,70,-0.22126955740606913],[119,160,71,-0.21946537006725897],[119,160,72,-0.21754611349249486],[119,160,73,-0.21551273144493333],[119,160,74,-0.21336630507127108],[119,160,75,-0.21110805540725652],[119,160,76,-0.20873934589291332],[119,160,77,-0.20626168489751207],[119,160,78,-0.2036767282543146],[119,160,79,-0.20098628180503864],[119,161,64,-0.23405996261060513],[119,161,65,-0.2329672514445602],[119,161,66,-0.2317554006767515],[119,161,67,-0.23042459323230657],[119,161,68,-0.22897513555302296],[119,161,69,-0.22740746004827128],[119,161,70,-0.22572212755537224],[119,161,71,-0.22391982980951564],[119,161,72,-0.2220013919231827],[119,161,73,-0.21996777487514718],[119,161,74,-0.21782007800889192],[119,161,75,-0.21555954154064794],[119,161,76,-0.2131875490769134],[119,161,77,-0.21070563014149257],[119,161,78,-0.2081154627120686],[119,161,79,-0.20541887576627083],[119,162,64,-0.23833149620764738],[119,162,65,-0.23724728421874808],[119,162,66,-0.23604281339162758],[119,162,67,-0.2347182776612371],[119,162,68,-0.23327399541263483],[119,162,69,-0.23171041193578024],[119,162,70,-0.230028101889581],[119,162,71,-0.228227771775258],[119,162,72,-0.22631026241898944],[119,162,73,-0.22427655146391312],[119,162,74,-0.22212775587131528],[119,162,75,-0.2198651344312227],[119,162,76,-0.2174900902822522],[119,162,77,-0.21500417344075018],[119,162,78,-0.21240908333924846],[119,162,79,-0.20970667137419197],[119,163,64,-0.24245530983924624],[119,163,65,-0.24137946013678313],[119,163,66,-0.24018226736744663],[119,163,67,-0.23886393608981438],[119,163,68,-0.23742479621783252],[119,163,69,-0.23586530547946516],[119,163,70,-0.2341860518843869],[119,163,71,-0.23238775620077168],[119,163,72,-0.23047127444115245],[119,163,73,-0.22843760035741667],[119,163,74,-0.2262878679447783],[119,163,75,-0.2240233539549391],[119,163,76,-0.22164548041828425],[119,163,77,-0.21915581717516253],[119,163,78,-0.2165560844162624],[119,163,79,-0.21384815523204326],[119,164,64,-0.24643022723357433],[119,164,65,-0.24536258926773757],[119,164,66,-0.2441725594491747],[119,164,67,-0.24286035257297234],[119,164,68,-0.24142630966622558],[119,164,69,-0.2398709004505044],[119,164,70,-0.2381947258131485],[119,164,71,-0.23639852028745945],[119,164,72,-0.23448315454175095],[119,164,73,-0.23244963787733197],[119,164,74,-0.2302991207352596],[119,164,75,-0.22803289721206876],[119,164,76,-0.22565240758433847],[119,164,77,-0.22315924084212857],[119,164,78,-0.22055513723130937],[119,164,79,-0.21784199080473654],[119,165,64,-0.2502552525608962],[119,165,65,-0.24919566258191983],[119,165,66,-0.2480126677957667],[119,165,67,-0.24670649284641544],[119,165,68,-0.2452774894574712],[119,165,69,-0.24372613889839034],[119,165,70,-0.24205305445934],[119,165,71,-0.24025898393475364],[119,165,72,-0.23834481211554692],[119,165,73,-0.23631156329006953],[119,165,74,-0.23416040375362435],[119,165,75,-0.2318926443267706],[119,165,76,-0.22950974288226067],[119,165,77,-0.2270133068806508],[119,165,78,-0.22440509591460478],[119,165,79,-0.22168702426184927],[119,166,64,-0.2539295760442275],[119,166,65,-0.25287785759204173],[119,166,66,-0.2517017575501963],[119,166,67,-0.25040151002388167],[119,166,68,-0.24897747701614104],[119,166,69,-0.24743015089779763],[119,166,70,-0.24576015688582442],[119,166,71,-0.24396825553022072],[119,166,72,-0.2420553452093589],[119,166,73,-0.24002246463387433],[119,166,74,-0.2378707953589383],[119,166,75,-0.23560166430511842],[119,166,76,-0.2332165462876865],[119,166,77,-0.2307170665544087],[119,166,78,-0.22810500333184047],[119,166,79,-0.22538229038007807],[119,167,64,-0.2574525796244399],[119,167,65,-0.2564085440492978],[119,167,66,-0.2552391865648519],[119,167,67,-0.25394475035019737],[119,167,68,-0.2525256072708004],[119,167,69,-0.25098226035205584],[119,167,70,-0.24931534626111007],[119,167,71,-0.24752563779700587],[119,167,72,-0.2456140463891161],[119,167,73,-0.24358162460394017],[119,167,74,-0.24142956866009957],[119,167,75,-0.23915922095174091],[119,167,76,-0.23677207258020205],[119,167,77,-0.23426976589398185],[119,167,78,-0.23165409703703066],[119,167,79,-0.22892701850531472],[119,168,64,-0.2608238426796271],[119,168,65,-0.2597872896941775],[119,168,66,-0.25862451118210805],[119,168,67,-0.2573357590099432],[119,168,68,-0.25592141448910743],[119,168,69,-0.25438199085304003],[119,168,70,-0.2527181357424024],[119,168,71,-0.2509306336984325],[119,168,72,-0.2490204086644161],[119,168,73,-0.24698852649534553],[119,168,74,-0.24483619747560503],[119,168,75,-0.24256477884488792],[119,168,76,-0.24017577733220752],[119,168,77,-0.2376708516980307],[119,168,78,-0.2350518152845661],[119,168,79,-0.23232063857414964],[119,169,64,-0.264043147798826],[119,169,65,-0.26301386606209265],[119,169,66,-0.2618574920701663],[119,169,67,-0.26057428599181787],[119,169,68,-0.25916463816902624],[119,169,69,-0.25762907159756987],[119,169,70,-0.255968244415542],[119,169,71,-0.2541829523998511],[119,169,72,-0.2522741314706698],[119,169,73,-0.25024286020390707],[119,169,74,-0.2480903623515397],[119,169,75,-0.24581800937001397],[119,169,76,-0.24342732295656944],[119,169,77,-0.24091997759352735],[119,169,78,-0.23829780310056026],[119,169,79,-0.23556278719489787],[119,170,64,-0.2671104866101728],[119,170,65,-0.2660882543439136],[119,170,66,-0.2649381001142532],[119,170,67,-0.2636602920087916],[119,170,68,-0.2622552289862413],[119,170,69,-0.2607234433604044],[119,170,70,-0.2590656032919175],[119,170,71,-0.25728251528782176],[119,170,72,-0.2553751267089257],[119,170,73,-0.25334452828503473],[119,170,74,-0.2511919566378805],[119,170,75,-0.2489187968119626],[119,170,76,-0.24652658481315748],[119,170,77,-0.24401701015513122],[119,170,78,-0.2413919184135781],[119,170,79,-0.23865331378823806],[119,171,64,-0.27002606566331566],[119,171,65,-0.2690106513012275],[119,171,66,-0.26786652236298725],[119,171,67,-0.2665939544738595],[119,171,68,-0.2651933547975852],[119,171,69,-0.26366526452364936],[119,171,70,-0.2620103613621666],[119,171,71,-0.26022946204644326],[119,171,72,-0.2583235248431829],[119,171,73,-0.2562936520704061],[119,171,74,-0.2541410926229244],[119,171,75,-0.25186724450557396],[119,171,76,-0.24947365737406968],[119,171,77,-0.24696203508351],[119,171,78,-0.24433423824456146],[119,171,79,-0.24159228678727085],[119,172,64,-0.2727903123661958],[119,172,65,-0.2717814752364285],[119,172,66,-0.27064316803002986],[119,172,67,-0.2693756735315107],[119,172,68,-0.26797940670059694],[119,172,69,-0.26645491716268566],[119,172,70,-0.2648028917067784],[119,172,71,-0.2630241567909495],[119,172,72,-0.261119681055314],[119,172,73,-0.25909057784257084],[119,172,74,-0.25693810772595693],[119,172,75,-0.2546636810448205],[119,172,76,-0.25226886044766916],[119,172,77,-0.24975536344273386],[119,172,78,-0.24712506495606568],[119,172,79,-0.24437999989711778],[119,173,64,-0.27540388097624213],[119,173,65,-0.2744013720176951],[119,173,66,-0.2732686745510713],[119,173,67,-0.272006078144963],[119,173,68,-0.27061400514925693],[119,173,69,-0.2690930131886743],[119,173,70,-0.26744379766364923],[119,173,71,-0.2656671942586123],[119,173,72,-0.26376418145763825],[119,173,73,-0.26173588306753603],[119,173,74,-0.2595835707482127],[119,173,75,-0.25730866655052564],[119,173,76,-0.25491274546147646],[119,173,77,-0.2523975379567832],[119,173,78,-0.24976493256085264],[119,173,79,-0.2470169784141072],[119,174,64,-0.27786765864584595],[119,174,65,-0.27687122115871066],[119,174,66,-0.27574391369600904],[119,174,67,-0.27448603223902035],[119,174,68,-0.2730980061257612],[119,174,69,-0.27158040054749355],[119,174,70,-0.269933919052447],[119,174,71,-0.2681594060568194],[119,174,72,-0.2662578493630138],[119,174,73,-0.2642303826851925],[119,174,74,-0.26207828818197954],[119,174,75,-0.25980299899652404],[119,174,76,-0.257406101803779],[119,174,77,-0.25488933936503066],[119,174,78,-0.2522546130897064],[119,174,79,-0.24950398560440534],[119,175,64,-0.2801827715221893],[119,175,65,-0.27919214195320385],[119,175,66,-0.2780699977363956],[119,175,67,-0.27681664089863467],[119,175,68,-0.27543250736840974],[119,175,69,-0.2739181694751873],[119,175,70,-0.27227433845586835],[119,175,71,-0.27050186696840206],[119,175,72,-0.2686017516125181],[119,175,73,-0.2665751354576583],[119,175,74,-0.264423310577937],[119,175,75,-0.2621477205943421],[119,175,76,-0.25974996322403465],[119,175,77,-0.2572317928367821],[119,175,78,-0.25459512301854526],[119,175,79,-0.2518420291421747],[119,176,64,-0.2823505909014866],[119,176,65,-0.2813654996643762],[119,176,66,-0.28024828566822346],[119,176,67,-0.2789992566232312],[119,176,68,-0.2776188546556738],[119,176,69,-0.2761076588099868],[119,176,70,-0.2744663875578429],[119,176,71,-0.2726959013142707],[119,176,72,-0.27079720496078585],[119,176,73,-0.2687714503756041],[119,176,74,-0.2666199389707775],[119,176,75,-0.26434412423645437],[119,176,76,-0.2619456142921326],[119,176,77,-0.25942617444492766],[119,176,78,-0.25678772975488984],[119,176,79,-0.2540323676073162],[119,177,64,-0.2843727394375144],[119,177,65,-0.283392911769076],[119,177,66,-0.2822803894899032],[119,177,67,-0.28103548563666136],[119,177,68,-0.2796586481463047],[119,177,69,-0.2781504623607709],[119,177,70,-0.2765116535385561],[119,177,71,-0.27474308937323166],[119,177,72,-0.2728457825188648],[119,177,73,-0.27082089312242186],[119,177,74,-0.26866973136298433],[119,177,75,-0.2663937599979941],[119,177,76,-0.2639945969163747],[119,177,77,-0.26147401769857725],[119,177,78,-0.2588339581835599],[119,177,79,-0.25607651704266476],[119,178,64,-0.2862510974044896],[119,178,65,-0.28527625425679526],[119,178,66,-0.2841681805355174],[119,178,67,-0.2829271942528624],[119,178,68,-0.28155374877556083],[119,178,69,-0.28004843533203716],[119,178,70,-0.2784119855263618],[119,178,71,-0.27664527385905024],[119,178,72,-0.27474932025466625],[119,178,73,-0.27272529259631284],[119,178,74,-0.2705745092668389],[119,178,75,-0.2682984416969755],[119,178,76,-0.2658987169202539],[119,178,77,-0.26337712013475034],[119,178,78,-0.2607355972716662],[119,178,79,-0.25797625757071074],[119,179,64,-0.28798780901436605],[119,179,65,-0.28701766798354955],[119,179,66,-0.2859137958634035],[119,179,67,-0.2846765152972761],[119,179,68,-0.28330628470760855],[119,179,69,-0.28180370080544614],[119,179,70,-0.2801695011066434],[119,179,71,-0.27840456645482536],[119,179,72,-0.2765099235510655],[119,179,73,-0.27448674749035673],[119,179,74,-0.272336364304712],[119,179,75,-0.2700602535131016],[119,179,76,-0.2676600506780856],[119,179,77,-0.2651375499691775],[119,179,78,-0.26249470673295916],[119,179,79,-0.25973364006990385],[119,180,64,-0.2895852887884054],[119,180,65,-0.28861956508049846],[119,180,66,-0.2875196446999274],[119,180,67,-0.2862858545838908],[119,180,68,-0.2849186578439594],[119,180,69,-0.28341865627779494],[119,180,70,-0.28178659288748276],[119,180,71,-0.2800233544045332],[119,180,72,-0.2781299738215173],[119,180,73,-0.27610763293041407],[119,180,74,-0.2739576648675025],[119,180,75,-0.2716815566650067],[119,180,76,-0.26928095180935374],[119,180,77,-0.2667576528060782],[119,180,78,-0.264113623751397],[119,180,79,-0.2613509929104041],[119,181,64,-0.2910462279831182],[119,181,65,-0.29008463541740614],[119,181,66,-0.28898841493854943],[119,181,67,-0.28775789744800573],[119,181,68,-0.2863935503880408],[119,181,69,-0.2848959802555211],[119,181,70,-0.2832659351222402],[119,181,71,-0.28150430716183794],[119,181,72,-0.2796121351832801],[119,181,73,-0.2775906071709692],[119,181,74,-0.2754410628313245],[119,181,75,-0.27316499614603884],[119,181,76,-0.2707640579318712],[119,181,77,-0.2682400584070097],[119,181,78,-0.2655949697640251],[119,181,79,-0.26283092874937397],[119,182,64,-0.2923736010706015],[119,182,65,-0.29141585312096285],[119,182,66,-0.290323079694195],[119,182,67,-0.2890956153347317],[119,182,68,-0.2877339314659221],[119,182,69,-0.28623863890575696],[119,182,70,-0.2846104903890573],[119,182,71,-0.28285038309619104],[119,182,72,-0.280959361188273],[119,182,73,-0.2789386183489282],[119,182,74,-0.27678950033245564],[119,182,75,-0.2745135075185975],[119,182,76,-0.27211229747377164],[119,182,77,-0.26958768751880635],[119,182,78,-0.2669416573031964],[119,182,79,-0.26417635138583395],[119,183,64,-0.2935706722731618],[119,183,65,-0.2926164831478608],[119,183,66,-0.2915269039128331],[119,183,67,-0.2903022724431328],[119,183,68,-0.28894306380308865],[119,183,69,-0.2874498927638254],[119,183,70,-0.28582351632718606],[119,183,71,-0.2840648362561138],[119,183,72,-0.282174901611456],[119,183,73,-0.2801549112952676],[119,183,74,-0.2780062166004492],[119,183,75,-0.2757303237669263],[119,183,76,-0.2733288965442293],[119,183,77,-0.2708037587605102],[119,183,78,-0.26815689689801725],[119,183,79,-0.265390462674978],[119,184,64,-0.2946410021523238],[119,184,65,-0.29369008791272444],[119,184,66,-0.2926034510363572],[119,184,67,-0.29138143242609815],[119,184,68,-0.2900245104573619],[119,184,69,-0.2885333034972831],[119,184,70,-0.2869085724302364],[119,184,71,-0.28515122318975805],[119,184,72,-0.2832623092968358],[119,184,73,-0.2812430344046346],[119,184,74,-0.27909475484950186],[119,184,75,-0.2768189822084536],[119,184,76,-0.2744173858630059],[119,184,77,-0.27189179556938303],[119,184,78,-0.2692442040351235],[119,184,79,-0.2664767695020419],[119,185,64,-0.2955884542521868],[119,185,65,-0.29464053397085177],[119,185,66,-0.29355658972272647],[119,185,67,-0.29233696514590746],[119,185,68,-0.2909821416079291],[119,185,69,-0.2894927407264626],[119,185,70,-0.28786952689630374],[119,185,71,-0.2861134098227113],[119,185,72,-0.2842254470610557],[119,185,73,-0.2822068465628561],[119,185,74,-0.28005896922804197],[119,185,75,-0.277783331463645],[119,185,76,-0.27538160774878273],[119,185,77,-0.27285563320596407],[119,185,78,-0.2702074061787464],[119,185,79,-0.2674390908156885],[119,186,64,-0.29641720179713094],[119,186,65,-0.29547199875577657],[119,186,66,-0.2943905006213766],[119,186,67,-0.29317305348549905],[119,186,68,-0.2918201414004832],[119,186,69,-0.290332388901522],[119,186,70,-0.2887105635349855],[119,186,71,-0.28695557839304675],[119,186,72,-0.28506849465457385],[119,186,73,-0.2830505241323612],[119,186,74,-0.28090303182654053],[119,186,75,-0.2786275384843726],[119,186,76,-0.2762257231662836],[119,186,77,-0.27369942581818174],[119,186,78,-0.27105064985007044],[119,186,79,-0.26828156472091746],[119,187,64,-0.2971317344438541],[119,187,65,-0.29618897737162764],[119,187,66,-0.2951096832038774],[119,187,67,-0.2938942002154108],[119,187,68,-0.2925430148484556],[119,187,69,-0.29105675423598665],[119,187,70,-0.2894361887312592],[119,187,71,-0.287682234443597],[119,187,72,-0.28579595578040895],[119,187,73,-0.28377856799550116],[119,187,74,-0.2816314397435269],[119,187,75,-0.2793560956407758],[119,187,76,-0.27695421883217],[119,187,77,-0.27442765356449006],[119,187,78,-0.27177840776586526],[119,187,79,-0.26900865563147136],[119,188,64,-0.2977368650877945],[119,188,65,-0.2967962894403393],[119,188,66,-0.29571896264989084],[119,188,67,-0.29450523491645964],[119,188,68,-0.2931555947903939],[119,188,69,-0.29167067169682614],[119,188,70,-0.29005123846628067],[119,188,71,-0.2882982138715098],[119,188,72,-0.28641266517051156],[119,188,73,-0.28439581065581465],[119,188,74,-0.28224902220985704],[119,188,75,-0.27997382786667613],[119,188,76,-0.2775719143797589],[119,188,77,-0.2750451297960935],[119,188,78,-0.27239548603644437],[119,188,79,-0.2696251614817988],[119,189,64,-0.2982377367238743],[119,189,65,-0.2972990860036516],[119,189,66,-0.29622349678836923],[119,189,67,-0.295011320958085],[119,189,68,-0.2936630489034251],[119,189,69,-0.2921793120510138],[119,189,70,-0.29056088539504166],[119,189,71,-0.28880869003501997],[119,189,72,-0.28692379571969306],[119,189,73,-0.2849074233971799],[119,189,74,-0.2827609477711842],[119,189,75,-0.2804858998634753],[119,189,76,-0.27808396958250525],[119,189,77,-0.2755570082981911],[119,189,78,-0.2729070314228893],[119,189,79,-0.27013622099851076],[119,190,64,-0.29863982936160405],[119,190,65,-0.29770285647994044],[119,190,66,-0.2966287830940294],[119,190,67,-0.29541796253240704],[119,190,68,-0.29407088677283644],[119,190,69,-0.2925881889686043],[119,190,70,-0.29097064598091904],[119,190,71,-0.2892191809174769],[119,190,72,-0.2873348656771526],[119,190,73,-0.2853189235008937],[119,190,74,-0.28317273152865496],[119,190,75,-0.28089782336257907],[119,190,76,-0.2784958916362825],[119,190,77,-0.27596879059028034],[119,190,78,-0.2733185386535759],[119,190,79,-0.2705473210313656],[119,191,64,-0.2989489669945403],[119,191,65,-0.29801343567586325],[119,191,66,-0.2969406657390955],[119,191,67,-0.29573101174397765],[119,191,68,-0.29438496701777506],[119,191,69,-0.29290316618231627],[119,191,70,-0.2912863876871129],[119,191,71,-0.2895355563486194],[119,191,72,-0.2876517458955977],[119,191,73,-0.28563618152066084],[119,191,74,-0.2834902424378348],[119,191,75,-0.28121546444634005],[119,191,76,-0.2788135425004582],[119,191,77,-0.2762863332855139],[119,191,78,-0.27363585779999744],[119,191,79,-0.27086430394377703],[119,192,64,-0.2991713246240869],[119,192,65,-0.2982370108528215],[119,192,66,-0.2971653427003048],[119,192,67,-0.29595667575523144],[119,192,68,-0.29461150447304796],[119,192,69,-0.2931304647036207],[119,192,70,-0.2915143362249637],[119,192,71,-0.28976404528308963],[119,192,72,-0.28788066713794336],[119,192,73,-0.2858654286154986],[119,192,74,-0.28371971066584956],[119,192,75,-0.2814450509275058],[119,192,76,-0.2790431462977514],[119,192,77,-0.2765158555091001],[119,192,78,-0.27386520171187145],[119,192,79,-0.27109337506283904],[119,193,64,-0.29931343533765176],[119,193,65,-0.29838012884824217],[119,193,66,-0.29730937292118353],[119,193,67,-0.29610152398763423],[119,193,68,-0.2947570774270436],[119,193,69,-0.293276670095339],[119,193,70,-0.2916610828591599],[119,193,71,-0.2899112431361984],[119,193,72,-0.2880282274416077],[119,193,73,-0.2860132639405547],[119,193,74,-0.28386773500675455],[119,193,75,-0.28159317978719167],[119,193,76,-0.279191296772889],[119,193,77,-0.276663946375757],[119,193,78,-0.2740131535115492],[119,193,79,-0.2712411101888724],[119,194,64,-0.29938219744115047],[119,194,65,-0.2984497032516734],[119,194,66,-0.29737968352958544],[119,194,67,-0.29617249537852885],[119,194,68,-0.2948286349157575],[119,194,69,-0.2933487398007436],[119,194,70,-0.2917335917698234],[119,194,71,-0.2899841191769307],[119,194,72,-0.2881013995403894],[119,194,73,-0.28608666209583855],[119,194,74,-0.2839412903551227],[119,194,75,-0.2816668246713607],[119,194,76,-0.2792649648100446],[119,194,77,-0.27673757252621256],[119,194,78,-0.2740866741477096],[119,194,79,-0.27131446316449215],[119,195,64,-0.29938488164586774],[119,195,65,-0.29845302163570897],[119,195,66,-0.2973835771105088],[119,195,67,-0.2961769056936865],[119,195,68,-0.2948335040729382],[119,195,69,-0.29335401052917676],[119,195,70,-0.29173920747149384],[119,195,71,-0.28999002397820484],[119,195,72,-0.2881075383439433],[119,195,73,-0.2860929806328736],[119,195,74,-0.283947735237865],[119,195,75,-0.2816733434458282],[119,195,76,-0.27927150600908024],[119,195,77,-0.276744085722765],[119,195,78,-0.274093110008357],[119,195,79,-0.2713207735032004],[119,196,64,-0.29932913830965335],[119,196,65,-0.2983977528417088],[119,196,66,-0.29732873903415813],[119,196,67,-0.29612245489553657],[119,196,68,-0.294779397536329],[119,196,69,-0.2933002056981553],[119,196,70,-0.2916856622889744],[119,196,71,-0.2899366969243615],[119,196,72,-0.2880543884748267],[119,196,73,-0.28603996761924744],[119,196,74,-0.2838948194042522],[119,196,75,-0.2816204858097634],[119,196,76,-0.27921866832055653],[119,196,77,-0.2766912305038701],[119,196,78,-0.27404020059309464],[119,196,79,-0.2712677740774825],[119,197,64,-0.29922300473248764],[119,197,65,-0.29829195432036115],[119,197,66,-0.2972232448392974],[119,197,67,-0.29601723456712126],[119,197,68,-0.29467442091004026],[119,197,69,-0.2931954429320064],[119,197,70,-0.29158108389008863],[119,197,71,-0.289832273775916],[119,197,72,-0.2879500918631541],[119,197,73,-0.28593576926109465],[119,197,74,-0.2837906914741879],[119,197,75,-0.28151640096772934],[119,197,76,-0.27911459973955877],[119,197,77,-0.2765871518978067],[119,197,78,-0.2739360862447098],[119,197,79,-0.2711635988664485],[119,198,64,-0.2990749125063833],[119,198,65,-0.2981440795270466],[119,198,66,-0.2970755676718545],[119,198,67,-0.29586973539172723],[119,198,68,-0.29452708028301977],[119,198,69,-0.2930482416169946],[119,198,70,-0.2914340028753042],[119,198,71,-0.28968529429154233],[119,198,72,-0.28780319539882615],[119,198,73,-0.2857889375834828],[119,198,74,-0.2836439066446824],[119,198,75,-0.2813696453602179],[119,198,76,-0.27896785605829544],[119,198,77,-0.276440403195369],[119,198,78,-0.27378931594003963],[119,198,79,-0.2710167907629749],[119,199,64,-0.29889369491964335],[119,199,65,-0.2979629853720265],[119,199,66,-0.29689458577879657],[119,199,67,-0.2956888546882257],[119,199,68,-0.2943462898036405],[119,199,69,-0.2928675305129611],[119,199,70,-0.29125336042424743],[119,199,71,-0.28950470990731036],[119,199,72,-0.2876226586413526],[119,199,73,-0.28560843816871373],[119,199,74,-0.2834634344545587],[119,199,75,-0.28118919045271096],[119,199,76,-0.2787874086774954],[119,199,77,-0.2762599537816216],[119,199,78,-0.2736088551401342],[119,199,79,-0.2708363094403763],[119,200,64,-0.29868859441547035],[119,200,65,-0.2977579397254456],[119,200,66,-0.29668959005727547],[119,200,67,-0.295483904002108],[119,200,68,-0.29414137931039686],[119,200,69,-0.29266265542147074],[119,200,70,-0.29104851599910553],[119,200,71,-0.28929989147316415],[119,200,72,-0.28741786158726246],[119,200,73,-0.2854036579525421],[119,200,74,-0.2832586666073812],[119,200,75,-0.28098443058325273],[119,200,76,-0.2785826524765912],[119,200,77,-0.2760551970266981],[119,200,78,-0.2734040936997121],[119,200,79,-0.2706315392785964],[119,201,64,-0.29846927010491797],[119,201,65,-0.29753862897715333],[119,201,66,-0.29647029165903316],[119,201,67,-0.29526461675221616],[119,201,68,-0.29392210201871305],[119,201,69,-0.29244338691046146],[119,201,70,-0.2908292551049063],[119,201,71,-0.28908063704664433],[119,201,72,-0.2871986124951005],[119,201,73,-0.2851844130783031],[119,201,74,-0.28303942485260203],[119,201,75,-0.28076519086853435],[119,201,76,-0.27836341374269524],[119,201,77,-0.2758359582356492],[119,201,78,-0.2731848538359066],[119,201,79,-0.270412297349915],[119,202,64,-0.2982451853693956],[119,202,65,-0.29731454183555595],[119,202,66,-0.2962462021811335],[119,202,67,-0.2950405250081638],[119,202,68,-0.2936980080789501],[119,202,69,-0.29221929084563614],[119,202,70,-0.2906051569857836],[119,202,71,-0.2888565369440155],[119,202,72,-0.28697451047968736],[119,202,73,-0.28496030922066307],[119,202,74,-0.28281531922302816],[119,202,75,-0.2805410835369543],[119,202,76,-0.2781393047785661],[119,202,77,-0.27561184770785185],[119,202,78,-0.2729607418126354],[119,202,79,-0.2701881838985659],[119,203,64,-0.298016860111307],[119,203,65,-0.2970861675865921],[119,203,66,-0.29601778071873397],[119,203,67,-0.29481205811195654],[119,203,68,-0.29346949752878826],[119,203,69,-0.29199073841958856],[119,203,70,-0.29037656445807813],[119,203,71,-0.28862790608293554],[119,203,72,-0.2867458430454204],[119,203,73,-0.2847316069631005],[119,203,74,-0.2825865838795193],[119,203,75,-0.2803123168300087],[119,203,76,-0.2779105084135095],[119,203,77,-0.27538302337043163],[119,203,78,-0.27273189116657737],[119,203,79,-0.2699593085830807],[119,204,64,-0.2977779216274855],[119,204,65,-0.2968470609429633],[119,204,66,-0.2957785120145807],[119,204,67,-0.2945726334542148],[119,204,68,-0.29322992302530815],[119,204,69,-0.29175102017223453],[119,204,70,-0.29013670855566864],[119,204,71,-0.2883879185940188],[119,204,72,-0.28650573001088686],[119,204,73,-0.28449137438863126],[119,204,74,-0.2823462377278676],[119,204,75,-0.28007186301311526],[119,204,76,-0.27766995278445006],[119,204,77,-0.2751423717151946],[119,204,78,-0.2724911491956722],[119,204,79,-0.2697184819229753],[119,205,64,-0.2975221326941361],[119,205,65,-0.2965909142065487],[119,205,66,-0.2955220204490129],[119,205,67,-0.2943158100500093],[119,205,68,-0.2929727807752418],[119,205,69,-0.2914935720566606],[119,205,70,-0.2898789675274879],[119,205,71,-0.28812989756330354],[119,205,72,-0.28624744182915696],[119,205,73,-0.2842328318327778],[119,205,74,-0.2820874534837243],[119,205,75,-0.27981284965867326],[119,205,76,-0.27741072277271517],[119,205,77,-0.27488293735668423],[119,205,78,-0.27223152264055006],[119,205,79,-0.26945867514282085],[119,206,64,-0.2972435733433635],[119,206,65,-0.2963117401592529],[119,206,66,-0.2952422539872357],[119,206,67,-0.2940354734848786],[119,206,68,-0.2926918964223255],[119,206,69,-0.2912121622107312],[119,206,70,-0.2895970544366948],[119,206,71,-0.28784750340274823],[119,206,72,-0.28596458867386865],[119,206,73,-0.28394954163008357],[119,206,74,-0.28180374802501185],[119,206,75,-0.2795287505505415],[119,206,76,-0.27712625140750813],[119,206,77,-0.27459811488240526],[119,206,78,-0.2719463699301522],[119,206,79,-0.2691732127628692],[119,207,64,-0.2969366341962951],[119,207,65,-0.2960038653345045],[119,207,66,-0.29493347739152054],[119,207,67,-0.2937258290700533],[119,207,68,-0.2923814181478639],[119,207,69,-0.2909008840052997],[119,207,70,-0.2892850101588249],[119,207,71,-0.2875347268005999],[119,207,72,-0.2856511133440762],[119,207,73,-0.2836354009756824],[119,207,74,-0.28148897521243543],[119,207,75,-0.2792133784656864],[119,207,76,-0.2768103126108584],[119,207,77,-0.274281641563212],[119,207,78,-0.27162939385966145],[119,207,79,-0.26885576524659127],[119,208,64,-0.29659600985341217],[119,208,65,-0.2956619233464409],[119,208,66,-0.2945902654915533],[119,208,67,-0.2933813950562716],[119,208,68,-0.29203580983030786],[119,208,69,-0.29055414915183575],[119,208,70,-0.28893719643974414],[119,208,71,-0.28718588173193405],[119,208,72,-0.2853012842296223],[119,208,73,-0.2832846348477268],[119,208,74,-0.2811373187711691],[119,208,75,-0.2788608780173032],[119,208,76,-0.2764570140043282],[119,208,77,-0.27392759012571943],[119,208,78,-0.27127463433070187],[119,208,79,-0.2685003417107168],[119,209,64,-0.29621669234208625],[119,209,65,-0.2952808482767765],[119,209,66,-0.29420749651292466],[119,209,67,-0.2929969959061762],[119,209,68,-0.2916498442638399],[119,209,69,-0.2901666808694674],[119,209,70,-0.2885482890134031],[119,209,71,-0.2867955985293671],[119,209,72,-0.2849096883370318],[119,209,73,-0.2828917889906708],[119,209,74,-0.28074328523371184],[119,209,75,-0.2784657185594063],[119,209,76,-0.2760607897774695],[119,209,77,-0.2735303615867296],[119,209,78,-0.2708764611538068],[119,209,79,-0.2681012826977742],[119,210,64,-0.29579396462130947],[119,210,65,-0.29485586811934505],[119,210,66,-0.2937803454637542],[119,210,67,-0.29256775562528947],[119,210,68,-0.2912185964359574],[119,210,69,-0.28973350711142454],[119,210,70,-0.28811327077938154],[119,210,71,-0.28635881701392407],[119,210,72,-0.28447122437591355],[119,210,73,-0.2824517229593947],[119,210,74,-0.28030169694390417],[119,210,75,-0.2780226871528789],[119,210,76,-0.2756163936180228],[119,210,77,-0.27308467814966564],[119,210,78,-0.2704295669131389],[119,210,79,-0.26765325301111875],[119,211,64,-0.2953233941436364],[119,211,65,-0.29438249828232943],[119,211,66,-0.2933042775794634],[119,211,67,-0.29208909115157733],[119,211,68,-0.29073743686407005],[119,211,69,-0.2892499538509027],[119,211,70,-0.28762742504023864],[119,211,71,-0.2858707796860843],[119,211,72,-0.2839810959058906],[119,211,73,-0.2819596032241919],[119,211,74,-0.2798076851221202],[119,211,75,-0.27752688159299765],[119,211,76,-0.2751188917038728],[119,211,77,-0.2725855761630279],[119,211,78,-0.26992895989348564],[119,211,79,-0.2671512346124656],[119,212,64,-0.2948008264743315],[119,212,65,-0.29385653514817733],[119,212,66,-0.2927750418256937],[119,212,67,-0.29155670580359916],[119,212,68,-0.29020202499110703],[119,212,69,-0.2887116384263402],[119,212,70,-0.28708632879866447],[119,212,71,-0.28532702497699614],[119,212,72,-0.28343480454405134],[119,212,73,-0.2814108963366102],[119,212,74,-0.27925668299163164],[119,212,75,-0.2769737034984283],[119,212,76,-0.27456365575675834],[119,212,77,-0.2720283991408695],[119,212,78,-0.2693699570695197],[119,212,79,-0.26659051958192337],[119,213,64,-0.29422237896770576],[119,213,65,-0.29327404969118487],[119,213,66,-0.29218866445935265],[119,213,67,-0.29096658278722987],[119,213,68,-0.28960830264011717],[119,213,69,-0.2881144629460961],[119,213,70,-0.2864858461144182],[119,213,71,-0.2847233805598458],[119,213,72,-0.2828281432329057],[119,213,73,-0.28080136215613094],[119,213,74,-0.27864441896612757],[119,213,75,-0.27635885146167505],[119,213,76,-0.273946356157716],[119,213,77,-0.2714087908452725],[119,213,78,-0.26874817715731203],[119,213,79,-0.26596670314051185],[119,214,64,-0.2935844345006714],[119,214,65,-0.29263138115277565],[119,214,66,-0.2915414426478157],[119,214,67,-0.290314978760976],[119,214,68,-0.2889524875278898],[119,214,69,-0.2874546077525494],[119,214,70,-0.2858221215210762],[119,214,71,-0.28405595672140915],[119,214,72,-0.28215718956887503],[119,214,73,-0.28012704713771697],[119,214,74,-0.27796690989841566],[119,214,75,-0.2756783142610121],[119,214,76,-0.27326295512429],[119,214,77,-0.27072268843085345],[119,214,78,-0.2680595337281214],[119,214,79,-0.2652756767351909],[119,215,64,-0.2928836352634907],[119,215,65,-0.2919251307744527],[119,215,66,-0.29082993814626],[119,215,67,-0.28959841745986936],[119,215,68,-0.28823106683757294],[119,215,69,-0.28672852494560563],[119,215,70,-0.28509157350257264],[119,215,71,-0.28332113979375984],[119,215,72,-0.28141829919129036],[119,215,73,-0.27938427768020235],[119,215,74,-0.277220454390284],[119,215,75,-0.2749283641338731],[119,215,76,-0.2725096999494815],[119,215,77,-0.2699663156512758],[119,215,78,-0.26730022838444134],[119,215,79,-0.2645136211863778],[119,216,64,-0.29211687660773855],[119,216,65,-0.29115215558844343],[119,216,66,-0.290050971033154],[119,216,67,-0.2888136833779533],[119,216,68,-0.28744079085031005],[119,216,69,-0.28593293196562375],[119,216,70,-0.2842908880295486],[119,216,71,-0.28251558564615964],[119,216,72,-0.280608099231923],[119,216,73,-0.2785696535355462],[119,216,74,-0.2764016261635429],[119,216,75,-0.27410555011172233],[119,216,76,-0.2716831163024611],[119,216,77,-0.26913617612778995],[119,216,78,-0.2664667439983225],[119,216,79,-0.26367699989797366],[119,217,64,-0.29128130095144944],[119,217,65,-0.29030956226600735],[119,217,66,-0.2892016135038653],[119,217,67,-0.28795781550933375],[119,217,68,-0.28657866663586373],[119,217,69,-0.28506480523573563],[119,217,70,-0.28341701215547965],[119,217,71,-0.2816362132370933],[119,217,72,-0.27972348182501283],[119,217,73,-0.2776800412789202],[119,217,74,-0.27550726749221566],[119,217,75,-0.27320669141636966],[119,217,76,-0.2707800015910081],[119,217,77,-0.2682290466797663],[119,217,78,-0.26555583801193816],[119,217,79,-0.2627625521298679],[119,218,64,-0.2903742917414832],[119,218,65,-0.2893947010234402],[119,218,66,-0.2882791837224291],[119,218,67,-0.28702810114782884],[119,218,68,-0.28564195180226115],[119,218,69,-0.28412137386359293],[119,218,70,-0.2824671476726197],[119,218,71,-0.2806801982264896],[119,218,72,-0.27876159767783115],[119,218,73,-0.27671256783966236],[119,218,74,-0.2745344826959133],[119,218,75,-0.27222887091777304],[119,218,76,-0.269797418385719],[119,218,77,-0.2672419707172621],[119,218,78,-0.26456453580043227],[119,218,79,-0.26176728633295465],[119,219,64,-0.289393467473099],[119,219,65,-0.28840515958576574],[119,219,66,-0.2872812397314626],[119,219,67,-0.28602206974520794],[119,219,68,-0.28462814830445216],[119,219,69,-0.2831001134025325],[119,219,70,-0.28143874482774756],[119,219,71,-0.2796449666481142],[119,219,72,-0.2777198497017692],[119,219,73,-0.2756646140930925],[119,219,74,-0.27348063169438486],[119,219,75,-0.27116942865331195],[119,219,76,-0.2687326879059697],[119,219,77,-0.2661722516956083],[119,219,78,-0.263490124097036],[119,219,79,-0.26068847354665525],[119,220,64,-0.2883366757667071],[119,220,65,-0.28733875720808344],[119,220,66,-0.2862055734201957],[119,220,67,-0.28493748682798736],[119,220,68,-0.28353499631194823],[119,220,69,-0.28199873967212485],[119,220,70,-0.28032949609768587],[119,220,71,-0.27852818864210405],[119,220,72,-0.276595886703918],[119,220,73,-0.27453380851314924],[119,220,74,-0.27234332362320846],[119,220,75,-0.2700259554085036],[119,220,76,-0.26758338356760136],[119,220,77,-0.2650174466319847],[119,220,78,-0.26233014448042247],[119,220,79,-0.259523640858907],[119,221,64,-0.28720198750184633],[119,221,65,-0.28619353875462106],[119,221,66,-0.2850502045506651],[119,221,67,-0.2837723479728327],[119,221,68,-0.2823604681354903],[119,221,69,-0.2808152026381596],[119,221,70,-0.279137330024643],[119,221,71,-0.2773277722476931],[119,221,72,-0.27538759713919103],[119,221,73,-0.2733180208859063],[119,221,74,-0.2711204105106757],[119,221,75,-0.2687962863592087],[119,221,76,-0.2663473245923791],[119,221,77,-0.26377535968403454],[119,221,78,-0.26108238692435015],[119,221,79,-0.25827056492867795],[119,222,64,-0.2859876910083694],[119,222,65,-0.2849677688354727],[119,222,66,-0.2838133748420568],[119,222,67,-0.2825248728405496],[119,222,68,-0.2811027622127287],[119,222,69,-0.27954768035204636],[119,222,70,-0.2778604051113569],[119,222,71,-0.2760418572561095],[119,222,72,-0.2740931029229695],[119,222,73,-0.27201535608394456],[119,222,74,-0.26980998101584797],[119,222,75,-0.26747849477531205],[119,222,76,-0.2650225696792067],[119,222,77,-0.2624440357904987],[119,222,78,-0.2597448834095748],[119,222,79,-0.25692726557098045],[119,223,64,-0.28469228631480026],[119,223,65,-0.2836599260009872],[119,223,66,-0.2824935421131569],[119,223,67,-0.28119349926862525],[119,223,68,-0.27976029715287665],[119,223,69,-0.2781945729495947],[119,223,70,-0.27649710377600667],[119,223,71,-0.27466880912360925],[119,223,72,-0.2727107533042361],[119,223,73,-0.27062414790154443],[119,223,74,-0.26841035422775106],[119,223,75,-0.2660708857858348],[119,223,76,-0.26360741073705674],[119,223,77,-0.2610217543738338],[119,223,78,-0.25831590159799245],[119,223,79,-0.25549199940435063],[119,224,64,-0.28331447945392263],[119,224,65,-0.28226869699386836],[119,224,66,-0.281089374482974],[119,224,67,-0.2797768774223829],[119,224,68,-0.27833170584040157],[119,224,69,-0.2767544967092369],[119,224,70,-0.2750460263669512],[119,224,71,-0.27320721294470607],[119,224,72,-0.271239118799255],[119,224,73,-0.26914295295075985],[119,224,74,-0.2669200735257663],[119,224,75,-0.26457199020554867],[119,224,76,-0.2621003666796822],[119,224,77,-0.2595070231048734],[119,224,78,-0.2567939385690786],[119,224,79,-0.2539632535608555],[119,225,64,-0.2818531768255774],[119,225,65,-0.2807929710589595],[119,225,66,-0.2795997446295083],[119,225,67,-0.2782738640047244],[119,225,68,-0.27681582959772577],[119,225,69,-0.2752262781696654],[119,225,70,-0.273505985237272],[119,225,71,-0.271655867485575],[119,225,72,-0.269676985185777],[119,225,73,-0.2675705446183516],[119,225,74,-0.26533790050119677],[119,225,75,-0.262980558423059],[119,225,76,-0.2605001772820814],[119,225,77,-0.2578985717295119],[119,225,78,-0.25517771461859573],[119,225,79,-0.2523397394586019],[119,226,64,-0.28030747961662483],[119,226,65,-0.2792318343106738],[119,226,66,-0.2780237241066229],[119,226,67,-0.27668351652441836],[119,226,68,-0.275211712406896],[119,226,69,-0.2736089483068437],[119,226,70,-0.27187599887907565],[119,226,71,-0.27001377927758297],[119,226,72,-0.26802334755772383],[119,226,73,-0.26590590708353035],[119,226,74,-0.2636628089399614],[119,226,75,-0.26129555435031815],[119,226,76,-0.2588057970986749],[119,226,77,-0.2561953459573626],[119,226,78,-0.2534661671195253],[119,226,79,-0.2506203866367043],[119,227,64,-0.2786766782781448],[119,227,65,-0.2775845641581406],[119,227,66,-0.2763605777190947],[119,227,67,-0.27500508762300535],[119,227,68,-0.27351859519029653],[119,227,69,-0.2719017367704665],[119,227,70,-0.27015528611763084],[119,227,71,-0.2682801567710248],[119,227,72,-0.26627740444042824],[119,227,73,-0.26414822939659277],[119,227,74,-0.2618939788664958],[119,227,75,-0.25951614943364243],[119,227,76,-0.257016389443267],[119,227,77,-0.2543965014124677],[119,227,78,-0.25165844444530117],[119,227,79,-0.24880433665278545],[119,228,64,-0.2769602470598459],[119,228,65,-0.27585062378803726],[119,228,66,-0.2746097579558099],[119,228,67,-0.273238019460294],[119,228,68,-0.27173591015037146],[119,228,69,-0.2701040661798333],[119,228,70,-0.26834326036530864],[119,228,71,-0.26645440454903035],[119,228,72,-0.2644385519663969],[119,228,73,-0.26229689961841174],[119,228,74,-0.2600307906488254],[119,228,75,-0.2576417167262035],[119,228,76,-0.2551313204307645],[119,228,77,-0.25250139764603075],[119,228,78,-0.24975389995531327],[119,228,79,-0.24689093704298115],[119,229,64,-0.2751578386016321],[119,229,65,-0.2740296567050612],[119,229,66,-0.27277089948105593],[119,229,67,-0.2713819381583933],[119,229,68,-0.2698632751683113],[119,229,69,-0.2682155464790912],[119,229,70,-0.2664395239352768],[119,229,71,-0.2645361176015957],[119,229,72,-0.2625063781115473],[119,229,73,-0.26035149902073396],[119,229,74,-0.25807281916476255],[119,229,75,-0.25567182502193786],[119,229,76,-0.25315015308059574],[119,229,77,-0.25050959221111446],[119,229,78,-0.247752086042629],[119,229,79,-0.24487973534439422],[119,230,64,-0.27326927858241656],[119,230,65,-0.2721214813301218],[119,230,66,-0.27084381368400057],[119,230,67,-0.2694366483043713],[119,230,68,-0.26790048826178514],[119,230,69,-0.2662359693519307],[119,230,70,-0.26444386241503415],[119,230,71,-0.26252507565982175],[119,230,72,-0.26048065699200573],[119,230,73,-0.25831179634737533],[119,230,74,-0.2560198280293142],[119,230,75,-0.25360623305097096],[119,230,76,-0.25107264148192665],[119,230,77,-0.24842083479940147],[119,230,78,-0.2456527482440204],[119,230,79,-0.24277047318009048],[119,231,64,-0.2712945604261393],[119,231,65,-0.27012608565622154],[119,231,66,-0.26882848328631337],[119,231,67,-0.2674021275115027],[119,231,68,-0.26584752210168816],[119,231,69,-0.26416530269569793],[119,231,70,-0.26235623909975025],[119,231,71,-0.2604212375903284],[119,231,72,-0.2583613432214297],[119,231,73,-0.2561777421362702],[119,231,74,-0.2538717638832644],[119,231,75,-0.2514448837365121],[119,231,76,-0.24889872502062982],[119,231,77,-0.2462350614399723],[119,231,78,-0.24345581941226557],[119,231,79,-0.2405630804065989],[119,232,64,-0.2692338400649421],[119,232,65,-0.26804362196196607],[119,232,66,-0.26672505700788085],[119,232,67,-0.2652785210390466],[119,232,68,-0.2637045185878407],[119,232,69,-0.26200368515486716],[119,232,70,-0.2601767894853496],[119,232,71,-0.25822473584978245],[119,232,72,-0.25614856632879657],[119,232,73,-0.25394946310232247],[119,232,74,-0.2516287507428714],[119,232,75,-0.24918789851316447],[119,232,76,-0.246628522667949],[119,232,77,-0.24395238876004688],[119,232,78,-0.2411614139506557],[119,232,79,-0.23825766932385217],[119,233,64,-0.2670874307595914],[119,233,65,-0.2658744015828065],[119,233,66,-0.2645338442907098],[119,233,67,-0.26306613647065824],[119,233,68,-0.26147178348374533],[119,233,69,-0.2597514207139734],[119,233,70,-0.2579058158214448],[119,233,71,-0.25593587099964266],[119,233,72,-0.25384262523675993],[119,233,73,-0.2516272565811595],[119,233,74,-0.24929108441078496],[119,233,75,-0.24683557170675308],[119,233,76,-0.2442623273309663],[119,233,77,-0.2415731083077911],[119,233,78,-0.23876982210982123],[119,233,79,-0.23585452894767767],[119,234,64,-0.2648557979771097],[119,234,65,-0.26361888973996483],[119,234,66,-0.26225531008097813],[119,234,67,-0.26076543845138755],[119,234,68,-0.2591497811103536],[119,234,69,-0.2574089733499627],[119,234,70,-0.255543781724074],[119,234,71,-0.25355510628107836],[119,234,72,-0.25144398280053115],[119,234,73,-0.24921158503374197],[119,234,74,-0.24685922694813656],[119,234,75,-0.24438836497562644],[119,234,76,-0.24180060026482375],[119,234,77,-0.23909768093714545],[119,234,78,-0.23628150434682582],[119,234,79,-0.233354119344792],[119,235,64,-0.2625395543255533],[119,235,65,-0.2612777004269867],[119,235,66,-0.2598900696691703],[119,235,67,-0.25837704348320356],[119,235,68,-0.25673912909878227],[119,235,69,-0.25497696174389484],[119,235,70,-0.2530913068481768],[119,235,71,-0.2510830622499952],[119,235,72,-0.24895326040721943],[119,235,73,-0.24670307061176755],[119,235,74,-0.2443338012077374],[119,235,75,-0.2418469018133632],[119,235,76,-0.2392439655466323],[119,235,77,-0.23652673125460533],[119,235,78,-0.23369708574646308],[119,235,79,-0.23075706603022983],[119,236,64,-0.26013945454604925],[119,236,65,-0.2588515913540298],[119,236,66,-0.25743888358840783],[119,236,67,-0.25590171477915746],[119,236,68,-0.2542405932020917],[119,236,69,-0.25245615405211264],[119,236,70,-0.25054916161992524],[119,236,71,-0.2485205114722857],[119,236,72,-0.24637123263574745],[119,236,73,-0.24410248978398352],[119,236,74,-0.2417155854285047],[119,236,75,-0.239211962113008],[119,236,76,-0.23659320461119082],[119,236,77,-0.2338610421280779],[119,236,78,-0.2310173505048786],[119,236,79,-0.22806415442732864],[119,237,64,-0.2576563905620365],[119,237,65,-0.25634145894983684],[119,237,66,-0.2549026525709277],[119,237,67,-0.25334035717613335],[119,237,68,-0.2516550821660748],[119,237,69,-0.24984746273683045],[119,237,70,-0.2479182620288587],[119,237,71,-0.2458683732792536],[119,237,72,-0.24369882197729154],[119,237,73,-0.24141076802335748],[119,237,74,-0.23900550789106012],[119,237,75,-0.23648447679277618],[119,237,76,-0.23384925084845953],[119,237,77,-0.2311015492577576],[119,237,78,-0.22824323647545885],[119,237,79,-0.22527632439021883],[119,238,64,-0.2550913865856501],[119,238,65,-0.25374833342132974],[119,238,66,-0.25228241256263817],[119,238,67,-0.2506940121061194],[119,238,68,-0.24898364265898876],[119,238,69,-0.24715193945606528],[119,238,70,-0.24519966447975206],[119,238,71,-0.24312770858313637],[119,238,72,-0.24093709361617277],[119,238,73,-0.23862897455503262],[119,238,74,-0.23620464163442867],[119,238,75,-0.23366552248316108],[119,238,76,-0.231013184262714],[119,238,77,-0.22824933580894902],[119,238,78,-0.22537582977691706],[119,238,79,-0.2223946647887387],[119,239,64,-0.25244559428137625],[119,239,65,-0.2510733738709511],[119,239,66,-0.24957932979588515],[119,239,67,-0.2479638526261292],[119,239,68,-0.24622745426036263],[119,239,69,-0.24437077001305452],[119,239,70,-0.24239456070435217],[119,239,71,-0.24029971475287049],[119,239,72,-0.23808725027134137],[119,239,73,-0.235758317165209],[119,239,74,-0.23331419923398156],[119,239,75,-0.23075631627558135],[119,239,76,-0.22808622619352414],[119,239,77,-0.22530562710697855],[119,239,78,-0.22241635946371796],[119,239,79,-0.21942040815592478],[119,240,64,-0.24972028798686707],[119,240,65,-0.24831786347164808],[119,240,66,-0.24679469592031777],[119,240,67,-0.24515117850666723],[119,240,68,-0.24338782450877006],[119,240,69,-0.24150526936503813],[119,240,70,-0.23950427273287134],[119,240,71,-0.23738572054997897],[119,240,72,-0.23515062709833234],[119,240,73,-0.23280013707083225],[119,240,74,-0.23033552764050202],[119,240,75,-0.22775821053245116],[119,240,76,-0.22506973409843745],[119,240,77,-0.2222717853940771],[119,240,78,-0.21936619225872134],[119,240,79,-0.2163549253979511],[119,241,64,-0.24691685999100765],[119,241,65,-0.24548320469958262],[119,241,66,-0.2439299231919443],[119,241,67,-0.24225741137882184],[119,241,68,-0.24046618400865416],[119,241,69,-0.23855687669150338],[119,241,70,-0.23653024792532573],[119,241,71,-0.23438718112467483],[119,241,72,-0.23212868665179276],[119,241,73,-0.22975590385018374],[119,241,74,-0.2272701030804678],[119,241,75,-0.22467268775876903],[119,241,76,-0.22196519639746193],[119,241,77,-0.21914930464832905],[119,241,78,-0.2162268273481407],[119,241,79,-0.2131997205666193],[119,242,64,-0.2440368158691052],[119,242,65,-0.24257091462444502],[119,242,66,-0.24098653972024708],[119,242,67,-0.23928408993986383],[119,242,68,-0.23746408159607968],[119,242,69,-0.23552715052175732],[119,242,70,-0.23347405406259225],[119,242,71,-0.2313056730720492],[119,242,72,-0.22902301390844126],[119,242,73,-0.2266272104342406],[119,242,74,-0.2241195260174209],[119,242,75,-0.22150135553508687],[119,242,76,-0.21877422737921404],[119,242,77,-0.21593980546454727],[119,242,78,-0.2129998912386789],[119,242,79,-0.209956425694258],[119,243,64,-0.24108176987535168],[119,243,65,-0.2395826202575192],[119,243,66,-0.23796618477351317],[119,243,67,-0.2362328652174973],[119,243,68,-0.2343831795635627],[119,243,69,-0.23241776392198565],[119,243,70,-0.2303373744973347],[119,243,71,-0.22814288954850226],[119,243,72,-0.2258353113506223],[119,243,73,-0.22341576815896047],[119,243,74,-0.22088551617457786],[119,243,75,-0.2182459415120257],[119,243,76,-0.21549856216889096],[119,243,77,-0.21264502999724388],[119,243,78,-0.20968713267700678],[119,243,79,-0.20662679569119557],[119,244,64,-0.23805344039249343],[119,244,65,-0.23652005395743314],[119,244,66,-0.23487060414230698],[119,244,67,-0.23310549589269858],[119,244,68,-0.2312252489439114],[119,244,69,-0.22923049974172482],[119,244,70,-0.22712200336473387],[119,244,71,-0.22490063544834316],[119,244,72,-0.22256739411038207],[119,244,73,-0.22012340187842439],[119,244,74,-0.21756990761861483],[119,244,75,-0.21490828846625953],[119,244,76,-0.21214005175799888],[119,244,77,-0.20926683696561776],[119,244,78,-0.20629041763150813],[119,244,79,-0.2032127033057377],[119,245,64,-0.23495364543862773],[119,245,65,-0.23338504889351352],[119,245,66,-0.2317016455610098],[119,245,67,-0.22990384368106076],[119,245,68,-0.22799216485299278],[119,245,69,-0.22596724591966688],[119,245,70,-0.22382984085293545],[119,245,71,-0.22158082264047818],[119,245,72,-0.2192211851739816],[119,245,73,-0.21675204513874902],[119,245,74,-0.21417464390453755],[119,245,75,-0.21149034941788536],[119,245,76,-0.20870065809574412],[119,245,77,-0.20580719672047287],[119,245,78,-0.20281172433620598],[119,245,79,-0.19971613414655265],[119,246,64,-0.23178429823127633],[119,246,65,-0.230179534566898],[119,246,66,-0.2284612541875748],[119,246,67,-0.22662986877279578],[119,246,68,-0.22468590189158488],[119,246,69,-0.22262999084895385],[119,246,70,-0.2204628885333748],[119,246,71,-0.21818546526534477],[119,246,72,-0.2157987106470095],[119,246,73,-0.21330373541293202],[119,246,74,-0.21070177328180018],[119,246,75,-0.207994182809342],[119,246,76,-0.2051824492422596],[119,246,77,-0.20226818637323607],[119,246,78,-0.1992531383970345],[119,246,79,-0.1961391817676419],[119,247,64,-0.2285474028086656],[119,247,65,-0.22690553238933253],[119,247,66,-0.2251514681414284],[119,247,67,-0.22328562533132656],[119,247,68,-0.2213085296062386],[119,247,69,-0.21922081880188804],[119,247,70,-0.21702324475090418],[119,247,71,-0.21471667509201753],[119,247,72,-0.2123020950800163],[119,247,73,-0.2097806093965533],[119,247,74,-0.2071534439615983],[119,247,75,-0.20442194774580214],[119,247,76,-0.20158759458358255],[119,247,77,-0.19865198498699244],[119,247,78,-0.19561684796038137],[119,247,79,-0.19248404281580866],[119,248,64,-0.2252450497081293],[119,248,65,-0.2235651513195679],[119,248,66,-0.22177441409943044],[119,248,67,-0.21987325705037575],[119,248,68,-0.21786220800906164],[119,248,69,-0.2157419054139671],[119,248,70,-0.21351310007363256],[119,248,71,-0.2111766569353949],[119,248,72,-0.20873355685457928],[119,248,73,-0.20618489836424048],[119,248,74,-0.20353189944524075],[119,248,75,-0.20077589929693818],[119,248,76,-0.1979183601082921],[119,248,77,-0.1949608688294462],[119,248,78,-0.19190513894380135],[119,248,79,-0.18875301224053354],[119,249,64,-0.22187941170179382],[119,249,65,-0.22016058355751822],[119,249,66,-0.21833230295005635],[119,249,67,-0.21639499276972218],[119,249,68,-0.2143491831565908],[119,249,69,-0.21219551322741603],[119,249,70,-0.2099347328026484],[119,249,71,-0.20756770413363734],[119,249,72,-0.20509540362997425],[119,249,73,-0.2025189235870739],[119,249,74,-0.19983947391377654],[119,249,75,-0.19705838386024843],[119,249,76,-0.1941771037459865],[119,249,77,-0.19119720668798612],[119,249,78,-0.18812039032908456],[119,249,79,-0.18494847856643815],[119,250,64,-0.2184527395894693],[119,250,65,-0.2166941002961048],[119,250,66,-0.2148274255057262],[119,250,67,-0.21285314214954276],[119,250,68,-0.21077178278767705],[119,250,69,-0.2085839872941334],[119,250,70,-0.20629050454154474],[119,250,71,-0.2038921940857793],[119,250,72,-0.2013900278503684],[119,250,73,-0.19878509181084758],[119,250,74,-0.19607858767879593],[119,250,75,-0.1932718345858525],[119,250,76,-0.19036627076751345],[119,250,77,-0.18736345524676856],[119,250,78,-0.18426506951759314],[119,250,79,-0.18107291922824897],[119,251,64,-0.21496735804865796],[119,251,65,-0.21316804753069507],[119,251,66,-0.21126214827318457],[119,251,67,-0.20925009140324813],[119,251,68,-0.20713241202028376],[119,251,69,-0.2049097508379587],[119,251,70,-0.20258285582565028],[119,251,71,-0.20015258384941348],[119,251,72,-0.19761990231243798],[119,251,73,-0.19498589079508732],[119,251,74,-0.19225174269430356],[119,251,75,-0.18941876686265857],[119,251,76,-0.18648838924685218],[119,251,77,-0.18346215452572023],[119,251,78,-0.1803417277477647],[119,251,79,-0.17712889596816095],[119,252,64,-0.21142566154185094],[119,252,65,-0.20958484192630733],[119,252,66,-0.2076389092821117],[119,252,67,-0.20558829908899146],[119,252,68,-0.2034335491073827],[119,252,69,-0.20117530097644026],[119,252,70,-0.19881430181115067],[119,252,71,-0.1963514057986353],[119,252,72,-0.1937875757935974],[119,252,73,-0.19112388491301502],[119,252,74,-0.18836151812985447],[119,252,75,-0.18550177386609257],[119,252,76,-0.18254606558484276],[119,252,77,-0.17949592338165177],[119,252,78,-0.17635299557497575],[119,252,79,-0.173119050295795],[119,253,64,-0.20783011028103032],[119,253,65,-0.20594696674250168],[119,253,66,-0.20396021397187758],[119,253,67,-0.20187029195976064],[119,253,68,-0.19967774125185878],[119,253,69,-0.1973832045020183],[119,253,70,-0.19498742802401092],[119,253,71,-0.19249126334215783],[119,253,72,-0.1898956687407508],[119,253,73,-0.1872017108123688],[119,253,74,-0.18441056600486205],[119,253,75,-0.1815235221672994],[119,253,76,-0.17854198009466682],[119,253,77,-0.17546745507138806],[119,253,78,-0.1723015784136731],[119,253,79,-0.16904609901065637],[119,254,64,-0.20418322624928398],[119,254,65,-0.2022569678158599],[119,254,66,-0.2002286311363458],[119,254,67,-0.1980986608719632],[119,254,68,-0.19586760048032603],[119,254,69,-0.1935360937225244],[119,254,70,-0.19110488616859878],[119,254,71,-0.18857482670149633],[119,254,72,-0.18594686901946367],[119,254,73,-0.18322207313697558],[119,254,74,-0.18040160688397378],[119,254,75,-0.1774867474037093],[119,254,76,-0.17447888264897726],[119,254,77,-0.1713795128768144],[119,254,78,-0.16819025214166683],[119,254,79,-0.16491282978698718],[119,255,64,-0.20048758927971289],[119,255,65,-0.19851744960023798],[119,255,66,-0.19644678892690914],[119,255,67,-0.1942760567526829],[119,255,68,-0.1920057995760443],[119,255,69,-0.18963666236118493],[119,255,70,-0.18716938999620314],[119,255,71,-0.1846048287494172],[119,255,72,-0.1819439277237488],[119,255,73,-0.1791877403092736],[119,255,74,-0.17633742563371524],[119,255,75,-0.17339425001117292],[119,255,76,-0.170359588388877],[119,255,77,-0.16723492579203614],[119,255,78,-0.16402185876678887],[119,255,79,-0.1607220968212174],[119,256,64,-0.19674583319154465],[119,256,65,-0.1947310712647029],[119,256,66,-0.19261737091367231],[119,256,67,-0.1904051866255273],[119,256,68,-0.18809506807084553],[119,256,69,-0.18568766151604227],[119,256,70,-0.18318371123335414],[119,256,71,-0.18058406090855694],[119,256,72,-0.1778896550463761],[119,256,73,-0.17510154037369163],[119,256,74,-0.17222086724030483],[119,256,75,-0.16924889101756618],[119,256,76,-0.16618697349465184],[119,256,77,-0.16303658427255774],[119,256,78,-0.1597993021558195],[119,256,79,-0.15647681654191747],[119,257,64,-0.19296064198335477],[119,257,65,-0.19090054284905467],[119,257,66,-0.18874311220467566],[119,257,67,-0.18648880969495674],[119,257,68,-0.1841381882959665],[119,257,69,-0.18169189567868393],[119,257,70,-0.1791506755698397],[119,257,71,-0.17651536911010657],[119,257,72,-0.17378691620959785],[119,257,73,-0.17096635690077588],[119,257,74,-0.16805483268853372],[119,257,75,-0.16505358789775693],[119,257,76,-0.16196397101814602],[119,257,77,-0.15878743604637124],[119,257,78,-0.1555255438255696],[119,257,79,-0.15217996338213957],[119,258,64,-0.18913474608358477],[119,258,65,-0.18702862147712518],[119,258,66,-0.18482679562336024],[119,258,67,-0.18252973348929435],[119,258,68,-0.18013799149198678],[119,258,69,-0.17765221881248505],[119,258,70,-0.175073158706621],[119,258,71,-0.172401649812765],[119,258,72,-0.16963862745649322],[119,258,73,-0.16678512495227116],[119,258,74,-0.16384227490191572],[119,258,75,-0.16081131049014463],[119,258,76,-0.1576935667769923],[119,258,77,-0.15449048198716298],[119,258,78,-0.1512035987963345],[119,258,79,-0.14783456561436353],[119,259,64,-0.18527091865826623],[119,259,65,-0.18311810762776204],[119,259,66,-0.18087124794417458],[119,259,67,-0.17853081006232335],[119,259,68,-0.17609735397777648],[119,259,69,-0.1735715304902633],[119,259,70,-0.17095408246354882],[119,259,71,-0.16824584608186183],[119,259,72,-0.1654477521028349],[119,259,73,-0.16256082710705888],[119,259,74,-0.15958619474401076],[119,259,75,-0.1565250769746701],[119,259,76,-0.15337879531059556],[119,259,77,-0.15014877204954102],[119,259,78,-0.14683653150761494],[119,259,79,-0.1434437012479418],[119,260,64,-0.1813719719758491],[119,260,65,-0.1791718414633925],[119,260,66,-0.17687933618622237],[119,260,67,-0.1744949322533642],[119,260,68,-0.1720191933783456],[119,260,69,-0.16945277209124254],[119,260,70,-0.16679641094677433],[119,260,71,-0.1640509437285424],[119,260,72,-0.16121729664936835],[119,260,73,-0.15829648954783831],[119,260,74,-0.15528963708080712],[119,260,75,-0.15219794991218194],[119,260,76,-0.14902273589775505],[119,260,77,-0.14576540126616522],[119,260,78,-0.1424274517959898],[119,260,79,-0.13901049398893117],[119,261,64,-0.17744075382933122],[119,261,65,-0.17519269921636887],[119,261,66,-0.1728539639651535],[119,261,67,-0.1704250300060367],[119,261,68,-0.1679064649118039],[119,261,69,-0.1652989230575299],[119,261,70,-0.16260314677606164],[119,261,71,-0.15981996750922517],[119,261,72,-0.15695030695471446],[119,261,73,-0.1539951782087674],[119,261,74,-0.15095568690437933],[119,261,75,-0.14783303234538148],[119,261,76,-0.1446285086361464],[119,261,77,-0.14134350580700272],[119,261,78,-0.1379795109353646],[119,261,79,-0.13453810926253196],[119,262,64,-0.17348014401559175],[119,262,65,-0.17118358963299773],[119,262,66,-0.16879806790319674],[119,262,67,-0.16632406674560646],[119,262,68,-0.1637621577353282],[119,262,69,-0.16111299721000805],[119,262,70,-0.15837732737190063],[119,262,71,-0.15555597738522792],[119,262,72,-0.15264986446879386],[119,262,73,-0.14965999498395743],[119,262,74,-0.146587465517718],[119,262,75,-0.14343346396123552],[119,262,76,-0.14019927058355341],[119,262,77,-0.13688625910060154],[119,262,78,-0.13349589773948628],[119,262,79,-0.13002975029802644],[119,263,64,-0.1694930508718272],[119,263,65,-0.16714745047514806],[119,263,66,-0.1647146140972307],[119,263,67,-0.16219503581481104],[119,263,68,-0.15958929135003047],[119,263,69,-0.15689803912353023],[119,263,70,-0.15412202130231112],[119,263,71,-0.15126206484245425],[119,263,72,-0.14831908252665948],[119,263,73,-0.14529407399671096],[119,263,74,-0.14218812678061588],[119,263,75,-0.13900241731474533],[119,263,76,-0.13573821196074004],[119,263,77,-0.13239686801726402],[119,263,78,-0.12897983472660762],[119,263,79,-0.12548865427610062],[119,264,64,-0.16548240786930368],[119,264,65,-0.16308724507965372],[119,264,66,-0.16060659464511312],[119,264,67,-0.15804095696838505],[119,264,68,-0.15539091206495043],[119,264,69,-0.15265712056164676],[119,264,70,-0.14984032468956532],[119,264,71,-0.1469413492713662],[119,264,72,-0.14396110270297008],[119,264,73,-0.14090057792973282],[119,264,74,-0.13776085341684685],[119,264,75,-0.13454309411430693],[119,264,76,-0.131248552416194],[119,264,77,-0.1278785691143638],[119,264,78,-0.12443457434654254],[119,264,79,-0.12091808853878966],[119,265,64,-0.16145117026424205],[119,265,65,-0.15900595897533015],[119,265,66,-0.15647702423008047],[119,265,67,-0.15386487292609763],[119,265,68,-0.15117008951998334],[119,265,69,-0.14839333697067192],[119,265,70,-0.1455353576766354],[119,265,71,-0.14259697440705354],[119,265,72,-0.1395790912269098],[119,265,73,-0.13648269441612043],[119,265,74,-0.13330885338243714],[119,265,75,-0.13005872156846499],[119,265,76,-0.1267335373525465],[119,265,77,-0.12333462494359926],[119,265,78,-0.11986339526991019],[119,265,79,-0.11632134686184536],[119,266,64,-0.15740231180597775],[119,266,65,-0.15490659655774225],[119,266,66,-0.15232893676335996],[119,266,67,-0.14966984598444588],[119,266,68,-0.14692991326788585],[119,266,69,-0.14410980403323326],[119,266,70,-0.1412102609535147],[119,266,71,-0.13823210482954335],[119,266,72,-0.13517623545769908],[119,266,73,-0.13204363249128215],[119,266,74,-0.12883535629518372],[119,266,75,-0.12555254879421046],[119,266,76,-0.12219643431481847],[119,266,77,-0.1187683204203423],[119,266,78,-0.11526959873972009],[119,266,79,-0.11170174578967729],[119,267,64,-0.15333882150220735],[119,267,65,-0.1507921778215371],[119,267,66,-0.14816538208480712],[119,267,67,-0.14545895468681197],[119,267,68,-0.14267348941517022],[119,267,69,-0.13980965428111358],[119,267,70,-0.136868192343214],[119,267,71,-0.133849922524155],[119,267,72,-0.13075574042050186],[119,267,73,-0.1275866191055825],[119,267,74,-0.12434360992521304],[119,267,75,-0.1210278432866177],[119,267,76,-0.11764052944028791],[119,267,77,-0.11418295925487176],[119,267,78,-0.110656504985093],[119,267,79,-0.10706262103266223],[119,268,64,-0.14926370044154186],[119,268,65,-0.14666573515056358],[119,268,66,-0.14398942272178977],[119,268,67,-0.14123529055230993],[119,268,68,-0.13840393732211093],[119,268,69,-0.1354960337676121],[119,268,70,-0.13251232344766656],[119,268,71,-0.12945362350213158],[119,268,72,-0.12632082540296324],[119,268,73,-0.12311489569795109],[119,268,74,-0.11983687674682192],[119,268,75,-0.11648788745006478],[119,268,76,-0.1130691239702224],[119,268,77,-0.10958186044573842],[119,268,78,-0.10602744969736178],[119,268,79,-0.10240732392706858],[119,269,64,-0.1451799586732634],[119,269,65,-0.1425303101656728],[119,269,66,-0.13980413070621317],[119,269,67,-0.1370019548632176],[119,269,68,-0.13412438636175883],[119,269,69,-0.13117209879931774],[119,269,70,-0.12814583635343318],[119,269,71,-0.12504641448144233],[119,269,72,-0.1218747206122649],[119,269,73,-0.11863171483034668],[119,269,74,-0.11531843055148877],[119,269,75,-0.11193597519092163],[119,269,76,-0.10848553082336199],[119,269,77,-0.10496835483514605],[119,269,78,-0.10138578056843778],[119,269,79,-0.09773921795747698],[119,270,64,-0.14109061214418123],[119,270,65,-0.13838895063009715],[119,270,66,-0.13561258444958274],[119,270,67,-0.13276205551088244],[119,270,68,-0.12983797273785497],[119,270,69,-0.12684101272718534],[119,270,70,-0.12377192039709267],[119,270,71,-0.12063150962763763],[119,270,72,-0.11742066389258865],[119,270,73,-0.11414033688295822],[119,270,74,-0.11079155312193778],[119,270,75,-0.10737540857159023],[119,270,76,-0.10389307123103608],[119,270,77,-0.10034578172622982],[119,270,78,-0.09673485389132397],[119,270,79,-0.09306167534158205],[119,271,64,-0.13699867969279528],[119,271,65,-0.13424470741261363],[119,271,66,-0.1314178656763122],[119,271,67,-0.12851870390031978],[119,271,68,-0.1255478363618563],[119,271,69,-0.12250594279713162],[119,271,70,-0.11939376899054427],[119,271,71,-0.1162121273549861],[119,271,72,-0.11296189750320929],[119,271,73,-0.1096440268103725],[119,271,74,-0.10625953096748697],[119,271,75,-0.1028094945261277],[119,271,76,-0.0992950714341449],[119,271,77,-0.09571748556246878],[119,271,78,-0.092078031223009],[119,271,79,-0.08837807367760808],[119,272,64,-0.13290718010066177],[119,272,65,-0.1301006315083908],[119,272,66,-0.12722305641517595],[119,272,67,-0.1242750119133939],[119,272,68,-0.1212571177889718],[119,272,69,-0.11817005706004441],[119,272,70,-0.11501457650610775],[119,272,71,-0.11179148718777737],[119,272,72,-0.10850166495710867],[119,272,73,-0.10514605095859536],[119,272,74,-0.10172565212056456],[119,272,75,-0.09824154163733839],[119,272,76,-0.09469485944189315],[119,272,77,-0.09108681266911195],[119,272,78,-0.08741867610962789],[119,272,79,-0.08369179265422372],[119,273,64,-0.12881912920085892],[119,273,65,-0.1259597711174112],[119,273,66,-0.12303123604879479],[119,273,67,-0.12003408893047385],[119,273,68,-0.11696895521309286],[119,273,69,-0.11383652134109234],[119,273,70,-0.11063753522131009],[119,273,71,-0.10737280668168164],[119,273,72,-0.10404320791999383],[119,273,73,-0.10064967394280938],[119,273,74,-0.09719320299427903],[119,273,75,-0.09367485697521594],[119,273,76,-0.09009576185215523],[119,273,77,-0.08645710805650286],[119,273,78,-0.08276015087376648],[119,273,79,-0.0790062108228346],[119,274,64,-0.12473753704375923],[119,274,65,-0.121825168780681],[119,274,66,-0.11884547842137083],[119,274,67,-0.1157990389107818],[119,274,68,-0.11268648152084193],[119,274,69,-0.10950849626855691],[119,274,70,-0.10626583232358333],[119,274,71,-0.10295929840538848],[119,274,72,-0.09958976316994733],[119,274,73,-0.09615815558609897],[119,274,74,-0.09266546530127379],[119,274,75,-0.08911274299697097],[119,274,76,-0.08550110073370676],[119,274,77,-0.08183171228553737],[119,274,78,-0.07810581346415096],[119,274,79,-0.07432470243249184],[119,275,64,-0.12066540512000545],[119,275,65,-0.11769985857412185],[119,275,66,-0.11466884900456381],[119,275,67,-0.11157295753132401],[119,275,68,-0.10841282140462627],[119,275,69,-0.10518913436207611],[119,275,70,-0.10190264697476054],[119,275,71,-0.09855416698241332],[119,275,72,-0.09514455961759755],[119,275,73,-0.09167474791902919],[119,275,74,-0.08814571303374896],[119,275,75,-0.08455849450852498],[119,275,76,-0.08091419057020754],[119,275,77,-0.07721395839513684],[119,275,78,-0.07345901436759966],[119,275,79,-0.06965063432729918],[119,276,64,-0.11660572364058552],[119,276,65,-0.11358686336003765],[119,276,66,-0.11050440212140294],[119,276,67,-0.10735892938429714],[119,276,68,-0.10415108853458938],[119,276,69,-0.10088157718018936],[119,276,70,-0.09755114743525883],[119,276,71,-0.09416060619295902],[119,276,72,-0.09071081538669262],[119,276,73,-0.08720269223996074],[119,276,74,-0.08363720950453774],[119,276,75,-0.08001539568735638],[119,276,76,-0.07633833526581602],[119,276,77,-0.07260716889161745],[119,276,78,-0.06882309358312216],[119,276,79,-0.06498736290619744],[119,277,64,-0.11256146887421392],[119,277,65,-0.10948919209636987],[119,277,66,-0.10635517822844598],[119,277,67,-0.10316002523318563],[119,277,68,-0.09990438278967828],[119,277,69,-0.09658895252740463],[119,277,70,-0.0932144882481723],[119,277,71,-0.08978179613605769],[119,277,72,-0.08629173495530873],[119,277,73,-0.08274521623633246],[119,277,74,-0.07914320444946626],[119,277,75,-0.07548671716693078],[119,277,76,-0.07177682521267098],[119,277,77,-0.06801465280019459],[119,277,78,-0.06420137765840095],[119,277,79,-0.060338231145365906],[119,278,64,-0.10853560054191741],[119,278,65,-0.10540983720363395],[119,278,66,-0.10222420125608145],[119,278,67,-0.0989792993274432],[119,278,68,-0.09567578754771827],[119,278,69,-0.09231437172067625],[119,278,70,-0.08889580748316384],[119,278,71,-0.08542090045188],[119,278,72,-0.08189050635757494],[119,278,73,-0.07830553116679645],[119,278,74,-0.07466693119088236],[119,278,75,-0.07097571318259788],[119,278,76,-0.06723293442012307],[119,278,77,-0.06343970277850058],[119,278,78,-0.05959717678853693],[119,278,79,-0.05570656568312099],[119,279,64,-0.10453105926871925],[119,279,65,-0.10135177198943168],[119,279,66,-0.09811447600686529],[119,279,67,-0.09481978677564917],[119,279,68,-0.09146836703438338],[119,279,69,-0.08806092691518552],[119,279,70,-0.0845982240400443],[119,279,71,-0.08108106360410011],[119,279,72,-0.07751029844580509],[119,279,73,-0.07388682910409128],[119,279,74,-0.0702116038622374],[119,279,75,-0.06648561877884152],[119,279,76,-0.06270991770559953],[119,279,77,-0.05888559229200241],[119,279,78,-0.0550137819769419],[119,279,79,-0.05109567396719361],[119,280,64,-0.1005507640926307],[119,280,65,-0.09731794813075162],[119,280,66,-0.09402898561210576],[119,280,67,-0.09068450097735614],[119,280,68,-0.08728516373128459],[119,280,69,-0.08383168848964284],[119,280,70,-0.08032483501226195],[119,280,71,-0.07676540822253985],[119,280,72,-0.07315425821326221],[119,280,73,-0.06949228023888249],[119,280,74,-0.06578041469395268],[119,280,75,-0.06201964707811225],[119,280,76,-0.058211007947335636],[119,280,77,-0.054355572851549905],[119,280,78,-0.050454462258613386],[119,280,79,-0.04650884146462314],[119,281,64,-0.09659761003084466],[119,281,65,-0.09331129321394921],[119,281,66,-0.08997068904658928],[119,281,67,-0.08657643111352004],[119,281,68,-0.08312919584306178],[119,281,69,-0.07962970249099971],[119,281,70,-0.07607871311018793],[119,281,71,-0.07247703250598014],[119,281,72,-0.06882550817743877],[119,281,73,-0.06512503024445315],[119,281,74,-0.06137653136045235],[119,281,75,-0.057580986611127094],[119,281,76,-0.053739413398854186],[119,281,77,-0.04985287131293997],[119,281,78,-0.04592246198567229],[119,281,79,-0.04194932893414721],[119,282,64,-0.09267446570303095],[119,282,65,-0.08933470833230617],[119,282,66,-0.08594251870134367],[119,282,67,-0.08249853969540816],[119,282,68,-0.07900345482337712],[119,282,69,-0.07545798813846522],[119,282,70,-0.07186290414409369],[119,282,71,-0.06821900768502986],[119,282,72,-0.06452714382374697],[119,282,73,-0.06078819770213589],[119,282,74,-0.05700309438825374],[119,282,75,-0.053172798708523816],[119,282,76,-0.04929831506508131],[119,282,77,-0.04538068723838018],[119,282,78,-0.04142099817505024],[119,282,79,-0.03742036976097274],[119,283,64,-0.0887841710119367],[119,283,65,-0.08539106574137484],[119,283,66,-0.0819473780146478],[119,283,67,-0.07845376017219607],[119,283,68,-0.07491090296002123],[119,283,69,-0.0713195353870425],[119,283,70,-0.06768042456703449],[119,283,71,-0.06399437554527276],[119,283,72,-0.060262231109837694],[119,283,73,-0.05648487158771004],[119,283,74,-0.052663214625337795],[119,283,75,-0.04879821495409575],[119,283,76,-0.044890864140326725],[119,283,77,-0.04094219032008323],[119,283,78,-0.036953257918556415],[119,283,79,-0.032925167354160956],[119,284,64,-0.08492953488118876],[119,284,65,-0.08148320657200264],[119,284,66,-0.07798813916118202],[119,284,67,-0.0744449945971471],[119,284,68,-0.07085447101902503],[119,284,69,-0.06721730255047537],[119,284,70,-0.06353425907753141],[119,284,71,-0.059806146010580374],[119,284,72,-0.05603380403043817],[119,284,73,-0.0522181088186493],[119,284,74,-0.048359970771688854],[119,284,75,-0.044460334699494564],[119,284,76,-0.04052017950801262],[119,284,77,-0.036540517865876476],[119,284,78,-0.032522395855208386],[119,284,79,-0.028466892606510474],[119,285,64,-0.08111333305019947],[119,285,65,-0.0776139386009384],[119,285,66,-0.0740676407992173],[119,285,67,-0.07047511135227114],[119,285,68,-0.06683705594767342],[119,285,69,-0.06315421398350118],[119,285,70,-0.05942735828194454],[119,285,71,-0.055657294786485206],[119,285,72,-0.05184486224259882],[119,285,73,-0.047990931862111896],[119,285,74,-0.044096406970890345],[119,285,75,-0.04016222264028832],[119,285,76,-0.03618934530203935],[119,285,77,-0.03217877234671157],[119,285,78,-0.02813153170571356],[119,285,79,-0.024048681416819928],[119,286,64,-0.0773383059263767],[119,286,65,-0.07378603407922049],[119,286,66,-0.07018868587605004],[119,286,67,-0.06654694293167193],[119,286,68,-0.06286151863663172],[119,286,69,-0.05913315782362105],[119,286,70,-0.0553626364167526],[119,286,71,-0.0515507610638303],[119,286,72,-0.04769836875156874],[119,286,73,-0.04380632640389476],[119,286,74,-0.039875530463002684],[119,286,75,-0.035906906453599424],[119,286,76,-0.03190140853001544],[119,286,77,-0.02786001900630586],[119,286,78,-0.02378374786932852],[119,286,79,-0.019673632274766567],[119,287,64,-0.07360715649453345],[119,287,65,-0.0700022276182457],[119,287,66,-0.06635403949157598],[119,287,67,-0.06266328378347416],[119,287,68,-0.058930681741075186],[119,287,69,-0.05515698379228076],[119,287,70,-0.05134296913062916],[119,287,71,-0.0474894452825832],[119,287,72,-0.04359724765718817],[119,287,73,-0.03966723907823669],[119,287,74,-0.03570030929860585],[119,287,75,-0.031697374497208886],[119,287,76,-0.027659376758233822],[119,287,77,-0.023587283532795045],[119,287,78,-0.01948208708298238],[119,287,79,-0.015344803908278443],[119,288,64,-0.06992254828340624],[119,288,65,-0.0662652141334221],[119,288,66,-0.06256642681990723],[119,288,67,-0.05882688821023552],[119,288,68,-0.05504732756072536],[119,288,69,-0.05122850105536031],[119,288,70,-0.04737119132621423],[119,288,71,-0.043476206955714664],[119,288,72,-0.039544381960694375],[119,288,73,-0.03557657525836924],[119,288,74,-0.03157367011390497],[119,288,75,-0.027536573570019596],[119,288,76,-0.023466215858290562],[119,288,77,-0.01936354979229249],[119,288,78,-0.015229550142552811],[119,288,79,-0.01106521299329366],[119,289,64,-0.06628710338948268],[119,289,65,-0.06257764684561257],[119,289,66,-0.05882853108924124],[119,289,67,-0.055040468328052455],[119,289,68,-0.051214195979005506],[119,289,69,-0.0473504761431896],[119,289,70,-0.04345009506179898],[119,289,71,-0.03951386255336026],[119,289,72,-0.03554261143216364],[119,289,73,-0.03153719690803697],[119,289,74,-0.027498495967123032],[119,289,75,-0.023427406734108674],[119,289,76,-0.01932484781557342],[119,289,77,-0.015191757624585578],[119,289,78,-0.011029093686530628],[119,289,79,-0.006837831926140625],[119,290,64,-0.06270340055796966],[119,290,65,-0.05894213534019452],[119,290,66,-0.05514299161980596],[119,290,67,-0.05130669208418401],[119,290,68,-0.047433982461134894],[119,290,69,-0.043525630929907744],[119,290,70,-0.0395824275127421],[119,290,71,-0.035605183447081384],[119,290,72,-0.03159473053840248],[119,290,73,-0.02755192049380134],[119,290,74,-0.023477624235992367],[119,290,75,-0.019372731198174703],[119,290,76,-0.015238148599429291],[119,290,77,-0.011074800700775711],[119,290,78,-0.00688362804187434],[119,290,79,-0.0026655866583422394],[119,291,64,-0.05917397332102445],[119,291,65,-0.055361243683864914],[119,291,66,-0.05151240192000997],[119,291,67,-0.047628181333321584],[119,291,68,-0.04370933611129571],[119,291,69,-0.03975664067229964],[119,291,70,-0.03577088899274916],[119,291,71,-0.03175289391435973],[119,291,72,-0.027703486431425228],[119,291,73,-0.023623514958263536],[119,291,74,-0.019513844576481865],[119,291,75,-0.015375356262523204],[119,291,76,-0.011208946095150552],[119,291,77,-0.007015524443002297],[119,291,78,-0.0027960151322014015],[119,291,79,0.0014486454060110565],[119,292,64,-0.05570130819308872],[119,292,65,-0.05183748859902229],[119,292,66,-0.04793930784062961],[119,292,67,-0.044007509972337294],[119,292,68,-0.04004285778869762],[119,292,69,-0.03604613210793567],[119,292,70,-0.03201813103484205],[119,292,71,-0.02795966920314874],[119,292,72,-0.0238715769973383],[119,292,73,-0.01975469975402791],[119,292,74,-0.015609896942580359],[119,292,75,-0.011438041325403742],[119,292,76,-0.007240018097595696],[119,292,77,-0.0030167240060667844],[119,292,78,0.0012309335518752018],[119,292,79,0.005502037450509367],[119,293,64,-0.0522878429235174],[119,293,65,-0.04837333769592575],[119,293,66,-0.04442620578723269],[119,293,67,-0.04044720213371136],[119,293,68,-0.03643709828274838],[119,293,69,-0.03239668161282125],[119,293,70,-0.028326754532226384],[119,293,71,-0.024228133656694434],[119,293,72,-0.020101648965844737],[119,293,73,-0.015948142938620152],[119,293,74,-0.011768469667351678],[119,293,75,-0.007563493950920097],[119,293,76,-0.003334090366664655],[119,293,77,9.188576788227154E-4],[119,293,78,0.0051944589200375035],[119,293,79,0.009491815224066655],[119,294,64,-0.04893596480640819],[119,294,65,-0.04497120776253141],[119,294,66,-0.040975540990741244],[119,294,67,-0.03694973043753995],[119,294,68,-0.0328945565472261],[119,294,69,-0.028810813418455733],[119,294,70,-0.0246993079389541],[119,294,71,-0.02056085889851908],[119,294,72,-0.01639629608026527],[119,294,73,-0.012206459330254257],[119,294,74,-0.007992197605154808],[119,294,75,-0.0037543679984043954],[119,294,76,5.061652554785578E-4],[119,294,77,0.0047885317982942766],[119,294,78,0.009091856187293662],[119,294,79,0.013415258956069293],[119,295,64,-0.045648009047546886],[119,295,65,-0.041633463111923216],[119,295,66,-0.03758970583604718],[119,295,67,-0.033517514302035784],[119,295,68,-0.029417677993367808],[119,295,69,-0.025290997888209668],[119,295,70,-0.021138285530291928],[119,295,71,-0.0169603620774791],[119,295,72,-0.012758057327981728],[119,295,73,-0.008532208724356824],[119,295,74,-0.00428366033493606],[119,295,75,-1.3261813160872493E-5],[119,295,76,0.004278132665532661],[119,295,77,0.008589665489140016],[119,295,78,0.012920476716843876],[119,295,79,0.017269705209128405],[119,296,64,-0.04242625718864493],[119,296,65,-0.038362413987515304],[119,296,66,-0.03427103824885916],[119,296,67,-0.030152918312704377],[119,296,68,-0.026008852842057714],[119,296,69,-0.021839649853208645],[119,296,70,-0.01764612572298245],[119,296,71,-0.01342910417308621],[119,296,72,-0.009189415231497411],[119,296,73,-0.004927894171040073],[119,296,74,-6.453804247883582E-4],[119,296,75,0.0036572835212223126],[119,296,76,0.007979253258335955],[119,296,77,0.012319683608526685],[119,296,78,0.016677729800579952],[119,296,79,0.0210525486692328],[119,297,64,-0.03927293558877627],[119,297,65,-0.035160315025931574],[119,297,66,-0.03102182014068916],[119,297,67,-0.02685825065009989],[119,297,68,-0.02267041453501774],[119,297,69,-0.018459127007624296],[119,297,70,-0.014225209455301327],[119,297,71,-0.009969488360993442],[119,297,72,-0.005692794200011633],[119,297,73,-0.001395960313425218],[119,297,74,0.0029201782423237954],[119,297,75,0.007254785869098057],[119,297,76,0.01160702762439593],[119,297,77,0.015976070442194554],[119,297,78,0.02036108437732477],[119,297,79,0.02476124387340685],[119,298,64,-0.03619021396293594],[119,298,65,-0.03202936377748533],[119,298,66,-0.027844275911896296],[119,298,67,-0.023635761576079842],[119,298,68,-0.019404638204919597],[119,298,69,-0.015151728363290984],[119,298,70,-0.010877858626824902],[119,298,71,-0.006583858438558354],[119,298,72,-0.0022705589414241667],[119,298,73,0.002061208213272922],[119,298,74,0.006410612081763092],[119,298,75,0.01077682366760914],[119,298,76,0.015159017185763082],[119,298,77,0.019556371350735444],[119,298,78,0.023968070688901125],[119,298,79,0.028393306874967113],[119,299,64,-0.03318020397788482],[119,299,65,-0.02897169928442459],[119,299,66,-0.024740571012957534],[119,299,67,-0.020487641978728467],[119,299,68,-0.016213739204590266],[119,299,69,-0.0119196927638218],[119,299,70,-0.007606334598084984],[119,299,71,-0.0032744973106655154],[119,299,72,0.0010749870650507073],[119,299,73,0.005441288321717412],[119,299,74,0.009823579359156107],[119,299,75,0.014221037489976454],[119,299,76,0.018632845770059935],[119,299,77,0.023058194353759942],[119,299,78,0.027496281873841094],[119,299,79,0.031946316846184555],[119,300,64,-0.03024495790519486],[119,300,65,-0.02598940071685505],[119,300,66,-0.021712810563877562],[119,300,67,-0.017416021975861833],[119,300,68,-0.013099871695221685],[119,300,69,-0.008765197458133922],[119,300,70,-0.004412836750020757],[119,300,71,-4.3625535713430474E-5],[119,300,72,0.004341603035753899],[119,300,73,0.008742019951569785],[119,300,74,0.01315680168116383],[119,300,75,0.01758513154732083],[119,300,76,0.02202620112276294],[119,300,77,0.026479211652051537],[119,300,78,0.030943375498832523],[119,300,79,0.03541791761845198],[119,301,64,-0.027386467331419785],[119,301,65,-0.02308448606626856],[119,301,66,-0.018763038031660656],[119,301,67,-0.014422969577034976],[119,301,68,-0.01006512729350532],[119,301,69,-0.005690356733302551],[119,301,70,-0.0012995011031447373],[119,301,71,0.0031066000683155244],[119,301,72,0.00752711228901819],[119,301,73,0.011961207487845519],[119,301,74,0.016408065425171103],[119,301,75,0.020866875129106878],[119,301,76,0.025336836357823796],[119,301,77,0.029817161087795717],[119,301,78,0.03430707502799228],[119,301,79,0.03880581916004527],[119,302,64,-0.024606661925548518],[119,302,65,-0.020258910896831416],[119,302,66,-0.015893233966006],[119,302,67,-0.01151048940421474],[119,302,68,-0.0071115337778562306],[119,302,69,-0.0026972206069112888],[119,302,70,0.001731601003407036],[119,302,71,0.006174087757531694],[119,302,72,0.01062940359099839],[119,302,73,0.015096721118328672],[119,302,74,0.019575223107718698],[119,302,75,0.024064103982028323],[119,302,76,0.02856257134644954],[119,302,77,0.03306984754270224],[119,302,78,0.037585171229783214],[119,302,79,0.042107798991293965],[119,303,64,-0.021907408263656693],[119,303,65,-0.01751456715435032],[119,303,66,-0.013105314793139082],[119,303,67,-0.008680521471031667],[119,303,68,-0.004241053853639738],[119,303,69,2.1222642119079517E-4],[119,303,70,0.0046784641730308225],[119,303,71,0.00915681213565098],[119,303,72,0.013646432440987781],[119,303,73,0.018146498130138702],[119,303,74,0.022656194691770826],[119,303,75,0.027174721627430627],[119,303,76,0.03170129404413861],[119,303,77,0.0362351442741165],[119,303,78,0.04077552352167091],[119,303,79,0.04532170353725995],[119,304,64,-0.019290508710692298],[119,304,65,-0.014853282032850527],[119,304,66,-0.01040113166771468],[119,304,67,-0.005934940020542152],[119,304,68,-0.0014555839773310528],[119,304,69,0.003036066557794738],[119,304,70,0.007539150153087971],[119,304,71,0.012052815367417341],[119,304,72,0.016576222296292756],[119,304,73,0.02110854414552315],[119,304,74,0.025648968832893606],[119,304,75,0.03019670061734544],[119,304,76,0.03475096175604678],[119,304,77,0.0393109941891977],[119,304,78,0.04387606125259798],[119,304,79,0.048445449418000636],[119,305,64,-0.016757700359535332],[119,305,65,-0.012276816898905996],[119,305,66,-0.007782469382933518],[119,305,67,-0.0032755524216483804],[119,305,68,0.001243046760244084],[119,305,69,0.005772449845749712],[119,305,70,0.010311788976461893],[119,305,71,0.014860208331778764],[119,305,72,0.01941686573650994],[119,305,73,0.02398093429671793],[119,305,74,0.02855160406418357],[119,305,75,0.03312808372897681],[119,305,76,0.03770960234052129],[119,305,77,0.04229541105699766],[119,305,78,0.04688478492311132],[119,305,79,0.0514770246762506],[119,306,64,-0.014310654027257102],[119,306,65,-0.009786866273649737],[119,306,66,-0.005251045338797829],[119,306,67,-7.040981240985893E-4],[119,306,68,0.0038530776916642882],[119,306,69,0.008419595233972586],[119,306,70,0.012994580043319763],[119,306,71,0.017577171714899656],[119,306,72,0.022166525567287772],[119,306,73,0.02676181433995864],[119,306,74,0.031362229920031424],[119,306,75,0.03596698509772138],[119,306,76,0.040575315350888964],[119,306,77,0.04518648065852867],[119,306,78,0.04979976734322664],[119,306,79,0.0544144899426097],[119,307,64,-0.011950973308519387],[119,307,65,-0.007385056872399792],[119,307,66,-0.0028085085684429675],[119,307,67,0.0017777523279968802],[119,307,68,0.006372817571729528],[119,307,69,0.010975791588114611],[119,307,70,0.015585793143145704],[119,307,71,0.020201957043076313],[119,307,72,0.024823435863640726],[119,307,73,0.02944940170871202],[119,307,74,0.034079047998790454],[119,307,75,0.03871159128879706],[119,307,76,0.04334627311556836],[119,307,77,0.04798236187489116],[119,307,78,0.05261915472810684],[119,307,79,0.05725597953830952],[119,308,64,-0.00968019368624181],[119,308,65,-0.0050729467020333985],[119,308,66,-4.564388226775337E-4],[119,308,67,0.0041683982239975395],[119,308,68,0.008800645517201722],[119,308,69,0.013439398641746252],[119,308,70,0.018083769416903706],[119,308,71,0.022732887655411788],[119,308,72,0.027385902952671494],[119,308,73,0.03204198650598068],[119,308,74,0.03670033296420061],[119,308,75,0.04136016230732609],[119,308,76,0.04602072175635673],[119,308,77,0.05068128771330879],[119,308,78,0.05534116773139601],[119,308,79,0.059999702515405096],[119,309,64,-0.007499781699467946],[119,309,65,-0.0028520242160397086],[119,309,66,0.001803654287338051],[119,309,67,0.006466309555984685],[119,309,68,0.011135011887543345],[119,309,69,0.015808847888133984],[119,309,70,0.020486922259405474],[119,309,71,0.025168359616328267],[119,309,72,0.029852306335778817],[119,309,73,0.034537932435759436],[119,309,74,0.03922443348564934],[119,309,75,0.04391103254695662],[119,309,76,0.04859698214497066],[119,309,77,0.0532815662711527],[119,309,78,0.05796410241629532],[119,309,79,0.06264394363447279],[119,310,64,-0.005411134168378462],[119,310,65,-7.237075271951804E-4],[119,310,66,0.00397033208933073],[119,310,67,0.008670027829491736],[119,310,68,0.013374439106709338],[119,310,69,0.01808264341266791],[119,310,70,0.022793738161944382],[119,310,71,0.027506842567974796],[119,310,72,0.032221099550410776],[119,310,73,0.03693567767370515],[119,310,74,0.04164977311732879],[119,310,75,0.04636261167708214],[119,310,76,0.05107345079790444],[119,310,77,0.055781581638018995],[119,310,78,0.06048633116444199],[119,310,79,0.0651870642798801],[119,311,64,-0.0034155774765660535],[119,311,65,0.0013106563220191686],[119,311,66,0.006042227590951396],[119,311,67,0.01077816681558684],[119,311,68,0.015517522425870373],[119,311,69,0.020259362665813616],[119,311,70,0.02500277749506323],[119,311,71,0.02974688052240168],[119,311,72,0.0344908109712323],[119,311,73,0.039233735676885914],[119,311,74,0.04397485111615672],[119,311,75,0.0487133854685243],[119,311,76,0.0534486007094694],[119,311,77,0.058179794735719534],[119,311,78,0.06290630352245322],[119,311,79,0.06762750331248686],[119,312,64,-0.0015143669105082552],[119,312,65,0.0032497920313227513],[119,312,66,0.00801804616267389],[119,312,67,0.012789413244379016],[119,312,68,0.017562930627134127],[119,312,69,0.022337657176656867],[119,312,70,0.027112675231530575],[119,312,71,0.031887092593573044],[119,312,72,0.03666004455077987],[119,312,73,0.04143069593268357],[119,312,74,0.0461982431985337],[119,312,75,0.050961916557754144],[119,312,76,0.055720982123088264],[119,312,77,0.06047474409626398],[119,312,78,0.06522254698621122],[119,312,79,0.0699637778598543],[119,313,64,2.9131394380498E-4],[119,313,65,0.005092496656909834],[119,313,66,0.009896566162603981],[119,313,67,0.014702527439992424],[119,313,68,0.01950940666831262],[119,313,69,0.024316253207090757],[119,313,70,0.029122141609572452],[119,313,71,0.03392617366926588],[119,313,72,0.03872748049965252],[119,313,73,0.0435252246469003],[119,313,74,0.04831860223598915],[119,313,75,0.05310684514970293],[119,313,76,0.05788922324089851],[119,313,77,0.06266504657788483],[119,313,78,0.06743366772294396],[119,313,79,0.07219448404401674],[119,314,64,0.002000353746985317],[119,314,65,0.006837640167984993],[119,314,66,0.011676639503088712],[119,314,67,0.016516343896897184],[119,314,68,0.021355768268622732],[119,314,69,0.026193952346530686],[119,314,70,0.03102996273624245],[119,314,71,0.03586289502273954],[119,314,72,0.04069187590612067],[119,314,73,0.04551606537094785],[119,314,74,0.05033465888959354],[119,314,75,0.055146889659039244],[119,314,76,0.059952030871539164],[119,314,77,0.06474939801898047],[119,314,78,0.06953835123097263],[119,314,79,0.07431829764668738],[119,315,64,0.003611713895188162],[119,315,65,0.008484165945649519],[119,315,66,0.013357192159216658],[119,315,67,0.018229771797692598],[119,315,68,0.023100908435415984],[119,315,69,0.027969632047251503],[119,315,70,0.03283500113103066],[119,315,71,0.03769610486427433],[119,315,72,0.04255206529525357],[119,315,73,0.04740203956822295],[119,315,74,0.05224522218323985],[119,315,75,0.05708084729001711],[119,315,76,0.06190819101622655],[119,315,77,0.06672657383008196],[119,315,78,0.07153536293723503],[119,315,79,0.0763339747120069],[119,316,64,0.005124428951824855],[119,316,65,0.010031091224077887],[119,316,66,0.014937224619147899],[119,316,67,0.01984179547227649],[119,316,68,0.02474379593186954],[119,316,69,0.029642246100283987],[119,316,70,0.034536196209641795],[119,316,71,0.039424728832509165],[119,316,72,0.04430696112749438],[119,316,73,0.049182047119596006],[119,316,74,0.054049180015722675],[119,316,75,0.05890759455482256],[119,316,76,0.06375656939304614],[119,316,77,0.06859542952376929],[119,316,78,0.07342354873250961],[119,316,79,0.07824035208675892],[119,317,64,0.006537607022117781],[119,317,65,0.011477507474059429],[119,317,66,0.016415812276351277],[119,317,67,0.021351474798479708],[119,317,68,0.02628347568572248],[119,317,69,0.031210825051948998],[119,317,70,0.03613256470802606],[119,317,71,0.041047770425666236],[119,317,72,0.04595555423677092],[119,317,73,0.050855066768102586],[119,317,74,0.05574549961170447],[119,317,75,0.06062608773050801],[119,317,76,0.06549611189955071],[119,317,77,0.07035490118263046],[119,317,78,0.07520183544443215],[119,317,79,0.08003634789814643],[119,318,64,0.007850430070406922],[119,318,65,0.012822580728813787],[119,318,66,0.017792105763652227],[119,318,67,0.022757945544072233],[119,318,68,0.02771906913895686],[119,318,69,0.03267447656093281],[119,318,70,0.03762320104656369],[119,318,71,0.042564311372556174],[119,318,72,0.04749691420803684],[119,318,73,0.05242015650273041],[119,318,74,0.0573332279114597],[119,318,75,0.06223536325440643],[119,318,76,0.06712584501355537],[119,318,77,0.07200400586515038],[119,318,78,0.07686923124819428],[119,318,79,0.08172096196901546],[119,319,64,0.009062154180261961],[119,319,65,0.014065551852131514],[119,319,66,0.019065331229147497],[119,319,67,0.02406041965019176],[119,319,68,0.029049774538479234],[119,319,69,0.03403238569595751],[119,319,70,0.03900727763445638],[119,319,71,0.043973511943424],[119,319,72,0.04893018969430049],[119,319,73,0.053876453881362085],[119,319,74,0.05881149189945975],[119,319,75,0.06373453805808482],[119,319,76,0.06864487613219067],[119,319,77,0.0735418419495927],[119,319,78,0.0784248260149846],[119,319,79,0.08329327617058974],[120,-64,64,-0.12545211319985838],[120,-64,65,-0.12917643512167798],[120,-64,66,-0.1327858284528478],[120,-64,67,-0.13627883854156553],[120,-64,68,-0.13965416972329825],[120,-64,69,-0.14291069104345178],[120,-64,70,-0.14604744204426445],[120,-64,71,-0.14906363861582816],[120,-64,72,-0.15195867891124681],[120,-64,73,-0.15473214932585333],[120,-64,74,-0.1573838305407228],[120,-64,75,-0.15991370363014612],[120,-64,76,-0.16232195623333423],[120,-64,77,-0.1646089887902218],[120,-64,78,-0.1667754208414205],[120,-64,79,-0.16882209739230114],[120,-63,64,-0.11982226557401898],[120,-63,65,-0.12353467741539625],[120,-63,66,-0.127132744403316],[120,-63,67,-0.13061500900480205],[120,-63,68,-0.1339801721174414],[120,-63,69,-0.1372270987841322],[120,-63,70,-0.14035482397207766],[120,-63,71,-0.14336255841592238],[120,-63,72,-0.14624969452505576],[120,-63,73,-0.1490158123549844],[120,-63,74,-0.15166068564302626],[120,-63,75,-0.154184287907984],[120,-63,76,-0.1565867986140702],[120,-63,77,-0.1588686093989512],[120,-63,78,-0.16103033036595904],[120,-63,79,-0.1630727964404577],[120,-62,64,-0.11411212195500098],[120,-62,65,-0.11781186893583129],[120,-62,66,-0.12139788197939927],[120,-62,67,-0.12486870057504817],[120,-62,68,-0.12822302205913716],[120,-62,69,-0.13145970732142365],[120,-62,70,-0.13457778657570796],[120,-62,71,-0.1375764651946445],[120,-62,72,-0.1404551296087333],[120,-62,73,-0.14321335326940832],[120,-62,74,-0.1458509026764594],[120,-62,75,-0.14836774346946147],[120,-62,76,-0.15076404658346831],[120,-62,77,-0.15304019446884787],[120,-62,78,-0.15519678737530862],[120,-62,79,-0.15723464970009338],[120,-61,64,-0.10832598591704179],[120,-61,65,-0.11201232054456078],[120,-61,66,-0.1155855590092455],[120,-61,67,-0.11904423772769412],[120,-61,68,-0.12238705035344344],[120,-61,69,-0.12561285347454354],[120,-61,70,-0.12872067237541251],[120,-61,71,-0.13170970686287586],[120,-61,72,-0.13457933715640968],[120,-61,73,-0.13732912984249535],[120,-61,74,-0.13995884389333302],[120,-61,75,-0.1424684367495752],[120,-61,76,-0.14485807046735122],[120,-61,77,-0.1471281179294478],[120,-61,78,-0.14927916912070316],[120,-61,79,-0.15131203746758515],[120,-60,64,-0.10246820652593303],[120,-60,65,-0.10614038908571544],[120,-60,66,-0.10970013977698412],[120,-60,67,-0.11314599185003282],[120,-60,68,-0.11647663515581486],[120,-60,69,-0.11969092183427021],[120,-60,70,-0.12278787206695363],[120,-60,71,-0.12576667989386725],[120,-60,72,-0.12862671909451517],[120,-60,73,-0.13136754913308757],[120,-60,74,-0.13398892116802574],[120,-60,75,-0.13649078412562465],[120,-60,76,-0.13887329083794486],[120,-60,77,-0.1411368042449026],[120,-60,78,-0.1432819036605879],[120,-60,79,-0.14530939110379215],[120,-59,64,-0.0965431734350699],[120,-59,65,-0.10020047247235297],[120,-59,66,-0.10374603009983852],[120,-59,67,-0.10717837630952354],[120,-59,68,-0.11049619703192437],[120,-59,69,-0.11369833981472544],[120,-59,70,-0.11678381956575101],[120,-59,71,-0.11975182436015563],[120,-59,72,-0.12260172131185842],[120,-59,73,-0.12533306250912624],[120,-59,74,-0.12794559101455316],[120,-59,75,-0.13043924692910025],[120,-59,76,-0.13281417352046265],[120,-59,77,-0.13507072341563042],[120,-59,78,-0.13720946485770136],[120,-59,79,-0.13923118802691792],[120,-58,64,-0.09055531185627719],[120,-58,65,-0.09419700464714076],[120,-58,66,-0.09772767227909662],[120,-58,67,-0.10114584139547578],[120,-58,68,-0.10445019389048693],[120,-58,69,-0.10763957257776591],[120,-58,70,-0.11071298692325737],[120,-58,71,-0.1136696188423425],[120,-58,72,-0.11650882856122213],[120,-58,73,-0.1192301605424737],[120,-58,74,-0.12183334947501645],[120,-58,75,-0.12431832632816087],[120,-58,76,-0.12668522446999986],[120,-58,77,-0.1289343858500165],[120,-58,78,-0.1310663672459571],[120,-58,79,-0.13308194657495198],[120,-57,64,-0.08450907740572966],[120,-57,65,-0.08813445041766244],[120,-57,66,-0.09164953992525171],[120,-57,67,-0.09505286913447175],[120,-57,68,-0.09834311578941246],[120,-57,69,-0.1015191178303021],[120,-57,70,-0.10457987911588473],[120,-57,71,-0.10752457521006109],[120,-57,72,-0.11035255923280118],[120,-57,73,-0.11306336777524906],[120,-57,74,-0.11565672687925688],[120,-57,75,-0.11813255808101841],[120,-57,76,-0.12049098451906337],[120,-57,77,-0.12273233710648568],[120,-57,78,-0.12485716076745867],[120,-57,79,-0.12686622073801024],[120,-56,64,-0.07840895082481958],[120,-56,65,-0.08201730016620223],[120,-56,66,-0.08551613265716984],[120,-56,67,-0.08890396797938538],[120,-56,68,-0.09217947961513095],[120,-56,69,-0.09534150049439505],[120,-56,70,-0.09838902870632826],[120,-56,71,-0.10132123327498077],[120,-56,72,-0.1041374599993321],[120,-56,73,-0.10683723735752693],[120,-56,74,-0.10942028247556213],[120,-56,75,-0.1118865071600863],[120,-56,76,-0.11423602399558253],[120,-56,77,-0.11646915250579948],[120,-56,78,-0.11858642537948993],[120,-56,79,-0.1205885947604246],[120,-55,64,-0.07225943257581369],[120,-55,65,-0.07585006443384823],[120,-55,66,-0.07933197067512676],[120,-55,67,-0.08270366737182988],[120,-55,68,-0.08596382363493915],[120,-55,69,-0.08911126724997587],[120,-55,70,-0.09214499037713053],[120,-55,71,-0.09506415531568624],[120,-55,72,-0.09786810033275628],[120,-55,73,-0.10055634555624426],[120,-55,74,-0.10312859893226956],[120,-55,75,-0.10558476224672719],[120,-55,76,-0.10792493721124652],[120,-55,77,-0.11014943161341484],[120,-55,78,-0.11225876553132608],[120,-55,79,-0.11425367761242455],[120,-54,64,-0.06606503731260749],[120,-54,65,-0.0696372683792249],[120,-54,66,-0.07310158920801813],[120,-54,67,-0.07645651217835292],[120,-54,68,-0.07970070192267353],[120,-54,69,-0.0828329809504943],[120,-54,70,-0.08585233533679815],[120,-54,71,-0.08875792047474873],[120,-54,72,-0.09154906689272857],[120,-54,73,-0.09422528613562098],[120,-54,74,-0.09678627671057405],[120,-54,75,-0.09923193009691422],[120,-54,76,-0.101562336820477],[120,-54,77,-0.10377779259221931],[120,-54,78,-0.10587880451117493],[120,-54,79,-0.10786609733171981],[120,-53,64,-0.05983028822642811],[120,-53,65,-0.06338344611170232],[120,-53,66,-0.06682953283460069],[120,-53,67,-0.07016705700022408],[120,-53,68,-0.07339467865756244],[120,-53,69,-0.07651121491134627],[120,-53,70,-0.07951564559831792],[120,-53,71,-0.08240711902783493],[120,-53,72,-0.08518495778681634],[120,-53,73,-0.08784866460894969],[120,-53,74,-0.09039792830839466],[120,-53,75,-0.09283262977765605],[120,-53,76,-0.09515284804988644],[120,-53,77,-0.0973588664254934],[120,-53,78,-0.0994511786630996],[120,-53,79,-0.1014304952348346],[120,-52,64,-0.053559711266321974],[120,-52,65,-0.05709313489892154],[120,-52,66,-0.06052034967859243],[120,-52,67,-0.06383986035664913],[120,-52,68,-0.06705032229609087],[120,-52,69,-0.07015054707092117],[120,-52,70,-0.07313950812990755],[120,-52,71,-0.07601634652468703],[120,-52,72,-0.0787803767022296],[120,-52,73,-0.08143109236158363],[120,-52,74,-0.08396817237512766],[120,-52,75,-0.08639148677401409],[120,-52,76,-0.08870110279805421],[120,-52,77,-0.0908972910099265],[120,-52,78,-0.09298053147375351],[120,-52,79,-0.09495151999802642],[120,-51,64,-0.04725782923474264],[120,-51,65,-0.05077086924895102],[120,-51,66,-0.054178585477955066],[120,-51,67,-0.05747947874173498],[120,-51,68,-0.06067219961719572],[120,-51,69,-0.06375555402457811],[120,-51,70,-0.06672850887832293],[120,-51,71,-0.06959019780229714],[120,-51,72,-0.07233992690939728],[120,-51,73,-0.07497718064544545],[120,-51,74,-0.07750162769761149],[120,-51,75,-0.07991312696704111],[120,-51,76,-0.08221173360594403],[120,-51,77,-0.0843977051190159],[120,-51,78,-0.08647150752925081],[120,-51,79,-0.0884338216081133],[120,-50,64,-0.04092915575808964],[120,-50,65,-0.044421174866922764],[120,-50,66,-0.047808777528205226],[120,-50,67,-0.0510904605550464],[120,-50,68,-0.0542648696406437],[120,-50,69,-0.05733080493140896],[120,-50,70,-0.06028722666456576],[120,-50,71,-0.06313326087012283],[120,-50,72,-0.06586820513724057],[120,-50,73,-0.06849153444490597],[120,-50,74,-0.07100290705714962],[120,-50,75,-0.07340217048248232],[120,-50,76,-0.07568936749780875],[120,-50,77,-0.07786474223669182],[120,-50,78,-0.07992874634201952],[120,-50,79,-0.08188204518305087],[120,-49,64,-0.034578189132024595],[120,-49,65,-0.038048562485977544],[120,-49,66,-0.041415448499580676],[120,-49,67,-0.0446773399055882],[120,-49,68,-0.04783287741841313],[120,-49,69,-0.05088085529360675],[120,-49,70,-0.053820226951821426],[120,-49,71,-0.056650110667164744],[120,-49,72,-0.059369795319964],[120,-49,73,-0.06197874621385324],[120,-49,74,-0.06447661095741541],[120,-49,75,-0.06686322541006207],[120,-49,76,-0.06913861969240487],[120,-49,77,-0.07130302426099178],[120,-49,78,-0.07335687604746166],[120,-49,79,-0.07530082466209143],[120,-48,64,-0.028209406041897145],[120,-48,65,-0.03165752157284918],[120,-48,66,-0.03500310012839636],[120,-48,67,-0.038244630289539394],[120,-48,68,-0.0413807476994168],[120,-48,69,-0.04441024060877885],[120,-48,70,-0.0473320554859582],[120,-48,71,-0.05014530269124928],[120,-48,72,-0.05284926221570785],[120,-48,73,-0.05544338948429295],[120,-48,74,-0.05792732122357569],[120,-48,75,-0.06030088139370149],[120,-48,76,-0.06256408718485884],[120,-48,77,-0.06471715507812625],[120,-48,78,-0.06676050697075331],[120,-48,79,-0.06869477636585197],[120,-47,64,-0.021827255158113568],[120,-47,65,-0.025252513907921492],[120,-47,66,-0.028576206782420455],[120,-47,67,-0.03179681814157831],[120,-47,68,-0.03491297846739738],[120,-47,69,-0.03792346989503326],[120,-47,70,-0.0408272318084244],[120,-47,71,-0.04362336650034315],[120,-47,72,-0.046311144896884704],[120,-47,73,-0.048890012346309186],[120,-47,74,-0.05135959447246674],[120,-47,75,-0.05371970309249119],[120,-47,76,-0.055970342199011425],[120,-47,77,-0.058111714006760185],[120,-47,78,-0.060144225063627266],[120,-47,79,-0.06206849242613732],[120,-46,64,-0.015436150606288557],[120,-46,65,-0.01883796703960039],[120,-46,66,-0.02213920890011367],[120,-46,67,-0.025338356259633654],[120,-46,68,-0.02843403435183456],[120,-46,69,-0.031425019088681005],[120,-46,70,-0.03431024264137472],[120,-46,71,-0.03708879908573759],[120,-46,72,-0.03975995011204403],[120,-46,73,-0.0423231307992229],[120,-46,74,-0.04477795545365526],[120,-46,75,-0.047124223512254204],[120,-46,76,-0.04936192551007845],[120,-46,77,-0.05149124911235403],[120,-46,78,-0.053512585210957364],[120,-46,79,-0.055426534085335266],[120,-45,64,-0.009040465312502355],[120,-45,65,-0.01241826761331899],[120,-45,66,-0.015696506304050617],[120,-45,67,-0.018873657103387176],[120,-45,68,-0.02194833991218803],[120,-45,69,-0.024919324314874536],[120,-45,70,-0.02778553514536053],[120,-45,71,-0.030546058117431385],[120,-45,72,-0.03320014551958861],[120,-45,73,-0.035747221974276155],[120,-45,74,-0.03818689026171518],[120,-45,75,-0.040518937208036454],[120,-45,76,-0.042743339637957845],[120,-45,77,-0.044860270391886004],[120,-45,78,-0.046870104407491175],[120,-45,79,-0.048773424865731774],[120,-44,64,-0.002644524223504696],[120,-44,65,-0.005997754575022829],[120,-44,66,-0.009252451388369609],[120,-44,67,-0.012407085966368525],[120,-44,68,-0.015460272795317476],[120,-44,69,-0.018410775031028503],[120,-44,70,-0.021257510049416117],[120,-44,71,-0.02399955506155016],[120,-44,72,-0.02663615279318432],[120,-44,73,-0.029166717228681915],[120,-44,74,-0.03159083941956131],[120,-44,75,-0.033908293357354236],[120,-44,76,-0.036119041911020444],[120,-44,77,-0.03822324282880141],[120,-44,78,-0.04022125480455774],[120,-44,79,-0.0421136436085735],[120,-43,64,0.0037474025983021964],[120,-43,65,4.192877510391657E-4],[120,-43,66,-0.0028113421800765037],[120,-43,67,-0.005942954021472824],[120,-43,68,-0.008974156765909291],[120,-43,69,-0.011903707042845602],[120,-43,70,-0.014730514653375382],[120,-43,71,-0.017453648169632796],[120,-43,72,-0.02007234059869034],[120,-43,73,-0.02258599511086612],[120,-43,74,-0.02499419083266252],[120,-43,75,-0.027296688704032235],[120,-43,76,-0.029493437400212263],[120,-43,77,-0.03158457931800884],[120,-43,78,-0.033570456626581646],[120,-43,79,-0.035451617382704415],[120,-42,64,0.010131107004771156],[120,-42,65,0.006828636709879654],[120,-42,66,0.00362258472545951],[120,-42,67,5.144887597641201E-4],[120,-42,68,-0.0024942546102444396],[120,-42,69,-0.005402395393290349],[120,-42,70,-0.008208835702752548],[120,-42,71,-0.010912635340119436],[120,-42,72,-0.013513017442947306],[120,-42,73,-0.016009374197241022],[120,-42,74,-0.01840127261447755],[120,-42,75,-0.020688460372968898],[120,-42,76,-0.022870871723807085],[120,-42,77,-0.024948633461270964],[120,-42,78,-0.02692207095774468],[120,-42,79,-0.028791714263125656],[120,-41,64,0.016502449916975692],[120,-41,65,0.01322613848887133],[120,-41,66,0.010045161354993337],[120,-41,67,0.00696106081430814],[120,-41,68,0.003975239086863369],[120,-41,69,0.0010889528756675704],[120,-41,70,-0.0016966921360148657],[120,-41,71,-0.004380746851869732],[120,-41,72,-0.006962424394251432],[120,-41,73,-0.009441105800337635],[120,-41,74,-0.011816345782937887],[120,-41,75,-0.014087878555654854],[120,-41,76,-0.016255623722637114],[120,-41,77,-0.01831969223280805],[120,-41,78,-0.020280392398617342],[120,-41,79,-0.022138235979294096],[120,-40,64,0.022857368605390005],[120,-40,65,0.01960771541652262],[120,-40,66,0.01645229567402373],[120,-40,67,0.01339265632133324],[120,-40,68,0.010430205292113026],[120,-40,69,0.007566206088690741],[120,-40,70,0.004801772295905393],[120,-40,71,0.0021378620304417506],[120,-40,72,-4.247276743589712E-4],[120,-40,73,-0.002885366548138313],[120,-40,74,-0.005243596827822827],[120,-40,75,-0.007499139066290739],[120,-40,76,-0.00965189800564381],[120,-40,77,-0.01170196851496419],[120,-40,78,-0.013649641592608175],[120,-40,79,-0.015495410433009282],[120,-39,64,0.029191884094967202],[120,-39,65,0.025969373386627637],[120,-39,66,0.02283997902923529],[120,-39,67,0.019805252662184913],[120,-39,68,0.01686660800043205],[120,-39,69,0.014025315429777807],[120,-39,70,0.011282496537546649],[120,-39,71,0.008639118578741334],[120,-39,72,0.006095988877662495],[120,-39,73,0.0036537491650673326],[120,-39,74,0.001312869850656151],[120,-39,75,-9.263557688207191E-4],[120,-39,76,-0.003063817366068422],[120,-39,77,-0.005099593504251709],[120,-39,78,-0.007033957622545106],[120,-39,79,-0.008867384086206131],[120,-38,64,0.03550210869526815],[120,-38,65,0.03230720940793341],[120,-38,66,0.029204293716910246],[120,-38,67,0.026194918006747003],[120,-38,68,0.023280501838510714],[120,-38,69,0.020462322562184942],[120,-38,70,0.017741509864449445],[120,-38,71,0.01511904025192723],[120,-38,72,0.012595731469884686],[120,-38,73,0.010172236856460515],[120,-38,74,0.007849039632211507],[120,-38,75,0.005626447125268275],[120,-38,76,0.0035045849318678934],[120,-38,77,0.0014833910123763783],[120,-38,78,-4.373902772444316E-4],[120,-38,79,-0.002258214218503918],[120,-37,64,0.041784253655811066],[120,-37,65,0.03861741927949702],[120,-37,66,0.035541420677484004],[120,-37,67,0.03255781902638477],[120,-37,68,0.02966803979533006],[120,-37,69,0.0268733673757382],[120,-37,70,0.02417493964645967],[120,-37,71,0.021573742474378266],[120,-37,72,0.01907060415045203],[120,-37,73,0.016666189761276873],[120,-37,74,0.014360995495954487],[120,-37,75,0.012155342888559684],[120,-37,76,0.010049372995974748],[120,-37,77,0.008043040511203858],[120,-37,78,0.006136107812120817],[120,-37,79,0.004328138945672189],[120,-36,64,0.04803463694629628],[120,-36,65,0.04489630539138978],[120,-36,66,0.041847647315896186],[120,-36,67,0.03889022873311854],[120,-36,68,0.036025481079333455],[120,-36,69,0.03325469586118679],[120,-36,70,0.030579019238453187],[120,-36,71,0.02799944654224218],[120,-36,72,0.025516816728637592],[120,-36,73,0.02313180676784432],[120,-36,74,0.020844925968633965],[120,-36,75,0.018656510238377666],[120,-36,76,0.016566716278436755],[120,-36,77,0.014575515715023357],[120,-36,78,0.012682689165484762],[120,-36,79,0.010887820240032431],[120,-35,64,0.05424969116199252],[120,-35,65,0.051140284651031376],[120,-35,66,0.04811937544802536],[120,-35,67,0.04518853444531212],[120,-35,68,0.04234919910253154],[120,-35,69,0.03960266811188795],[120,-35,70,0.03695009599876875],[120,-35,71,0.03439248765779912],[120,-35,72,0.03193069282432037],[120,-35,73,0.029565400481366688],[120,-35,74,0.02729713320193028],[120,-35,75,0.025126241426806417],[120,-35,76,0.023052897677783513],[120,-35,77,0.02107709070629571],[120,-35,78,0.01919861957749014],[120,-35,79,0.01741708768972794],[120,-34,64,0.060425971554076474],[120,-34,65,0.05734589653494637],[120,-34,66,0.054353129372996745],[120,-34,67,0.05144924587967059],[120,-34,68,0.048635689591328135],[120,-34,69,0.04591376645260925],[120,-34,70,0.043284639435142935],[120,-34,71,0.04074932309168444],[120,-34,72,0.03830867804566651],[120,-34,73,0.03596340541623977],[120,-34,74,0.03371404117859422],[120,-34,75,0.031560950459847636],[120,-34,76,0.029504321770273845],[120,-34,77,0.027544161169982817],[120,-34,78,0.025680286371004724],[120,-34,79,0.02391232077480132],[120,-33,64,0.06656016418519806],[120,-33,65,0.0635098112662188],[120,-33,66,0.06054556407163969],[120,-33,67,0.05766900336981884],[120,-33,68,0.0548815788243463],[120,-33,69,0.052184603695730525],[120,-33,70,0.04957924947842096],[120,-33,71,0.04706654047325287],[120,-33,72,0.04464734829529615],[120,-33,73,0.04232238631718244],[120,-33,74,0.040092204047708524],[120,-33,75,0.0379571814459948],[120,-33,76,0.03591752317097696],[120,-33,77,0.033973252766338224],[120,-33,78,0.032124206780839826],[120,-33,79,0.03037002882406903],[120,-32,64,0.07264909420994803],[120,-32,65,0.06962883811731557],[120,-32,66,0.06669347353076627],[120,-32,67,0.06384458621113676],[120,-32,68,0.06108363199692468],[120,-32,69,0.05841193152451096],[120,-32,70,0.05583066488371369],[120,-32,71,0.053340866208751225],[120,-32,72,0.05094341820460391],[120,-32,73,0.048639046608844994],[120,-32,74,0.04642831458874008],[120,-32,75,0.04431161707389153],[120,-32,76,0.04228917502420959],[120,-32,77,0.04036102963331578],[120,-32,78,0.038527036467334685],[120,-32,79,0.03678685953909511],[120,-31,64,0.07868973428037984],[120,-31,65,0.07569993383843576],[120,-31,66,0.07279379919342643],[120,-31,67,0.06997292113200271],[120,-31,68,0.0672387617124357],[120,-31,69,0.06459264900357953],[120,-31,70,0.062035771759157976],[120,-31,71,0.05956917402745354],[120,-31,72,0.0571937496963868],[120,-31,73,0.05491023697405606],[120,-31,74,0.052719212804538285],[120,-31,75,0.0506210872192282],[120,-31,76,0.04861609762349395],[120,-31,77,0.04670430301875794],[120,-31,78,0.04488557815995908],[120,-31,79,0.043159607648415865],[120,-30,64,0.08467921307674553],[120,-30,65,0.08172021121154394],[120,-30,66,0.07884363853529874],[120,-30,67,0.07605109089160778],[120,-30,68,0.07334403660059519],[120,-30,69,0.07072381121681004],[120,-30,70,0.06819161222244086],[120,-30,71,0.0657484936559265],[120,-30,72,0.06339536067594675],[120,-30,73,0.06113296406086888],[120,-30,74,0.058961894643446366],[120,-30,75,0.056882577681048097],[120,-30,76,0.05489526716119708],[120,-30,77,0.053000040042526564],[120,-30,78,0.05119679043111003],[120,-30,79,0.04948522369218433],[120,-29,64,0.09061482396312426],[120,-29,65,0.08768694772976449],[120,-29,66,0.08484025376689541],[120,-29,67,0.08207634300401634],[120,-29,68,0.07939669006242855],[120,-29,69,0.07680263803225396],[120,-29,70,0.07429539318476341],[120,-29,71,0.07187601962009293],[120,-29,72,0.0695454338503364],[120,-29,73,0.06730439931808085],[120,-29,74,0.06515352085019299],[120,-29,75,0.06309323904712427],[120,-29,76,0.06112382460752186],[120,-29,77,0.05924537258824658],[120,-29,78,0.0574577965997598],[120,-29,79,0.05576082293689655],[120,-28,64,0.09649403376811716],[120,-28,65,0.09359759440231374],[120,-28,66,0.0907810806617535],[120,-28,67,0.08804609858864676],[120,-28,68,0.08539412914207567],[120,-28,69,0.0828265229943077],[120,-28,70,0.08034449526241405],[120,-28,71,0.07794912017527078],[120,-28,72,0.07564132567592396],[120,-28,73,0.07342188795939752],[120,-28,74,0.07129142594574056],[120,-28,75,0.06925039568858915],[120,-28,76,0.0672990847190248],[120,-28,77,0.06543760632483564],[120,-28,78,0.06366589376513898],[120,-28,79,0.061983694420380986],[120,-27,64,0.10231449169074358],[120,-27,65,0.0994497846851008],[120,-27,66,0.0966637375107503],[120,-27,67,0.09395796134731138],[120,-27,68,0.09133394352556923],[120,-27,69,0.0887930423432508],[120,-27,70,0.08633648181610021],[120,-27,71,0.08396534636432773],[120,-27,72,0.0816805754344212],[120,-27,73,0.07948295805638828],[120,-27,74,0.07737312733623658],[120,-27,75,0.0753515548839584],[120,-27,76,0.07341854517680702],[120,-27,77,0.07157422985797024],[120,-27,78,0.06981856197059633],[120,-27,79,0.06815131012719366],[120,-26,64,0.10807403833124207],[120,-26,65,0.10524134353670656],[120,-26,66,0.10248603420224511],[120,-26,67,0.09980972666751287],[120,-26,68,0.09721391466628615],[120,-26,69,0.09469996416185733],[120,-26,70,0.0922691081177246],[120,-26,71,0.08992244120364878],[120,-26,72,0.08766091443706558],[120,-26,73,0.08548532975992351],[120,-26,74,0.08339633455075435],[120,-26,75,0.08139441607224007],[120,-26,76,0.0794798958540669],[120,-26,77,0.0776529240111703],[120,-26,78,0.07591347349732624],[120,-26,79,0.07426133429410908],[120,-25,64,0.11377071484692958],[120,-25,65,0.11097029659988544],[120,-25,66,0.10824598142819786],[120,-25,67,0.10559939085215475],[120,-25,68,0.10303202503722664],[120,-25,69,0.10054525764922817],[120,-25,70,0.09814033064476912],[120,-25,71,0.09581834899706776],[120,-25,72,0.09358027535711388],[120,-25,73,0.09142692465025082],[120,-25,74,0.08935895860798504],[120,-25,75,0.08737688023528678],[120,-25,76,0.0854810282131715],[120,-25,77,0.0836715712366668],[120,-25,78,0.08194850228811934],[120,-25,79,0.08031163284586451],[120,-24,64,0.1194027722332629],[120,-24,65,0.11663487950874574],[120,-24,66,0.1139418000164154],[120,-24,67,0.11132516047581065],[120,-24,68,0.10878646751027055],[120,-24,69,0.10632710252200239],[120,-24,70,0.10394831650243364],[120,-24,71,0.10165122477792021],[120,-24,72,0.09943680169080127],[120,-24,73,0.09730587521586331],[120,-24,74,0.09525912151203197],[120,-24,75,0.09329705940954514],[120,-24,76,0.09142004483240418],[120,-24,77,0.08962826515620337],[120,-24,78,0.08792173350129517],[120,-24,79,0.08630028296131353],[120,-23,64,0.1249686807298086],[120,-23,65,0.1222335473213012],[120,-23,66,0.11957193038862401],[120,-23,67,0.11698546186725423],[120,-23,68,0.11447565486210676],[120,-23,69,0.11204389854263719],[120,-23,70,0.1096914529732248],[120,-23,71,0.107419443878907],[120,-23,72,0.10522885734645426],[120,-23,73,0.1031205344608509],[120,-23,74,0.10109516587699785],[120,-23,75,0.0991532863268908],[120,-23,76,0.0972952690620732],[120,-23,77,0.09552132023146143],[120,-23,78,0.09383147319450091],[120,-23,79,0.09222558276967485],[120,-22,64,0.13046713935126708],[120,-22,65,0.12776498407755277],[120,-22,66,0.12513504214451954],[120,-22,67,0.12257895071839964],[120,-22,68,0.12009822940699011],[120,-22,69,0.11769427517491304],[120,-22,70,0.11536835719414973],[120,-22,71,0.11312161162992329],[120,-22,72,0.11095503636191673],[120,-22,73,0.10886948564089094],[120,-22,74,0.1068656646805215],[120,-22,75,0.10494412418470611],[120,-22,76,0.10310525481014099],[120,-22,77,0.10134928156426548],[120,-22,78,0.09967625813853409],[120,-22,79,0.09808606117703456],[120,-21,64,0.1358970855437056],[120,-21,65,0.13322811248324362],[120,-21,66,0.13063004377194654],[120,-21,67,0.12810452181980536],[120,-21,68,0.1256530727564783],[120,-21,69,0.12327710136681691],[120,-21,70,0.12097788596166681],[120,-21,71,0.118756573184011],[120,-21,72,0.11661417275044161],[120,-21,73,0.11455155212803192],[120,-21,74,0.11256943114641971],[120,-21,75,0.110668376545358],[120,-21,76,0.10884879645752932],[120,-21,77,0.10711093482672562],[120,-21,78,0.10545486576135021],[120,-21,79,0.10388048782326131],[120,-20,64,0.14125770496568668],[120,-20,65,0.1386221037189841],[120,-20,66,0.1360560924828953],[120,-20,67,0.1335613189224295],[120,-20,68,0.1311393157058327],[120,-20,69,0.1287914954604873],[120,-20,70,0.1265191456640805],[120,-20,71,0.12432342347111236],[120,-20,72,0.12220535047472991],[120,-20,73,0.12016580740395322],[120,-20,74,0.1182055287561139],[120,-20,75,0.1163250973647525],[120,-20,76,0.1145249389027796],[120,-20,77,0.11280531632099511],[120,-20,78,0.11116632422192663],[120,-20,79,0.10960788316900671],[120,-19,64,0.1465484413944682],[120,-19,65,0.14394638737491416],[120,-19,66,0.14141260417549062],[120,-19,67,0.13894874472580765],[120,-19,68,0.13655634824726082],[120,-19,69,0.13423683522939722],[120,-19,70,0.13199150234154966],[120,-19,71,0.12982151727980495],[120,-19,72,0.1277279135492948],[120,-19,73,0.12571158518187575],[120,-19,74,0.12377328138901722],[120,-19,75,0.12191360115014527],[120,-19,76,0.12013298773624537],[120,-19,77,0.11843172316882034],[120,-19,78,0.11680992261416512],[120,-19,79,0.11526752871297319],[120,-18,64,0.15176900675739446],[120,-18,65,0.1492006615110295],[120,-18,66,0.14669926352209472],[120,-18,67,0.14426647099278345],[120,-18,68,0.14190382971012383],[120,-18,69,0.13961276804290157],[120,-18,70,0.13739459187384517],[120,-18,71,0.13525047946714241],[120,-18,72,0.13318147627127808],[120,-18,73,0.13118848965725372],[120,-18,74,0.12927228359201726],[120,-18,75,0.12743347324733878],[120,-18,76,0.1256725195439471],[120,-18,77,0.12398972363101646],[120,-18,78,0.12238522130096363],[120,-18,79,0.12085897733957995],[120,-17,64,0.156919391288195],[120,-17,65,0.15438490284288364],[120,-17,66,0.15191603418323762],[120,-17,67,0.14951444879049414],[120,-17,68,0.14718169902781753],[120,-17,69,0.14491922115785494],[120,-17,70,0.14272833029555376],[120,-17,71,0.14061021529630835],[120,-17,72,0.13856593357942193],[120,-17,73,0.13659640588694966],[120,-17,74,0.13470241097774693],[120,-17,75,0.1328845802569636],[120,-17,76,0.13114339234079175],[120,-17,77,0.12947916755656308],[120,-17,78,0.1278920623781551],[120,-17,79,0.126382063796724],[120,-16,64,0.16199987380835945],[120,-16,65,0.15949937705283446],[120,-16,66,0.1570631691475438],[120,-16,67,0.15469291885779213],[120,-16,68,0.1523901851315017],[120,-16,69,0.15015641213747322],[120,-16,70,0.1479929242389082],[120,-16,71,0.1459009209022557],[120,-16,72,0.14388147154137354],[120,-16,73,0.14193551029706641],[120,-16,74,0.14006383075182827],[120,-16,75,0.13826708058002457],[120,-16,76,0.13654575613332876],[120,-16,77,0.13490019696150368],[120,-16,78,0.1333305802684891],[120,-16,79,0.13183691530381492],[120,-15,64,0.16701103213367663],[120,-15,65,0.16454464922692957],[120,-15,66,0.16214122119774887],[120,-15,67,0.15980242209918438],[120,-15,68,0.15752981747076544],[120,-15,69,0.15532485939753393],[120,-15,70,0.15318888150433396],[120,-15,71,0.15112309388542644],[120,-15,72,0.14912857796941326],[120,-15,73,0.14720628131953617],[120,-15,74,0.1453570123691783],[120,-15,75,0.1435814350928033],[120,-15,76,0.14188006361214456],[120,-15,77,0.14025325673773814],[120,-15,78,0.13870121244575906],[120,-15,79,0.13722396229017975],[120,-14,64,0.17195375360572052],[120,-14,65,0.16952159441720216],[120,-14,66,0.16715105350257997],[120,-14,67,0.16484381020507244],[120,-14,68,0.16260143666100768],[120,-14,69,0.16042539287968338],[120,-14,70,0.15831702175848494],[120,-14,71,0.15627754403332272],[120,-14,72,0.15430805316437912],[120,-14,73,0.15240951015722648],[120,-14,74,0.15058273831914726],[120,-14,75,0.14882841795088675],[120,-14,76,0.14714708097365736],[120,-14,77,0.14553910549147986],[120,-14,78,0.1440047102888301],[120,-14,79,0.14254394926360314],[120,-13,64,0.17682924574837566],[120,-13,65,0.17443140832948023],[120,-13,66,0.17209385033459834],[120,-13,67,0.16981825639838777],[120,-13,68,0.16760620525762704],[120,-13,69,0.16545916485195555],[120,-13,70,0.16337848735986782],[120,-13,71,0.16136540417002676],[120,-13,72,0.15942102078788523],[120,-13,73,0.15754631167767352],[120,-13,74,0.15574211503959012],[120,-13,75,0.15400912752242257],[120,-13,76,0.15234789887141487],[120,-13,77,0.15075882651147476],[120,-13,78,0.1492421500656802],[120,-13,79,0.14779794580910377],[120,-12,64,0.1816390470495558],[120,-12,65,0.17927561813685677],[120,-12,66,0.17697112791415703],[120,-12,67,0.17472726630777435],[120,-12,68,0.1725456186571782],[120,-12,69,0.17042766083665206],[120,-12,70,0.16837475431220972],[120,-12,71,0.16638814113382971],[120,-12,72,0.16446893886299396],[120,-12,73,0.16261813543559245],[120,-12,74,0.1608365839600301],[120,-12,75,0.15912499745075837],[120,-12,76,0.15748394349705597],[120,-12,77,0.1559138388671456],[120,-12,78,0.15441494404760714],[120,-12,79,0.152987357718109],[120,-11,64,0.186385037867832],[120,-11,65,0.18405609341854157],[120,-11,66,0.18178474537918998],[120,-11,67,0.17957268896703793],[120,-11,68,0.17742151612520607],[120,-11,69,0.17533271066529887],[120,-11,70,0.17330764334528237],[120,-11,71,0.17134756688267527],[120,-11,72,0.16945361090304745],[120,-11,73,0.16762677682387817],[120,-11,74,0.16586793267361788],[120,-11,75,0.1641778078461733],[120,-11,76,0.16255698779063932],[120,-11,77,0.161005908636363],[120,-11,78,0.15952485175330755],[120,-11,79,0.1581139382477298],[120,-10,64,0.1910694514642004],[120,-10,65,0.1887750572243192],[120,-10,66,0.1865369158810607],[120,-10,67,0.18435672794108637],[120,-10,68,0.18223609195098922],[120,-10,69,0.18017649966091076],[120,-10,70,0.17817933112341156],[120,-10,71,0.1762458497276551],[120,-10,72,0.17437719716889555],[120,-10,73,0.17257438835332528],[120,-10,74,0.1708383062381258],[120,-10,75,0.16916969660693693],[120,-10,76,0.167569162780575],[120,-10,77,0.16603716026308113],[120,-10,78,0.16457399132306738],[120,-10,79,0.16317979951037376],[120,-9,64,0.19569488515883104],[120,-9,65,0.19343509726445907],[120,-9,66,0.1912302178063121],[120,-9,67,0.18908195257820692],[120,-9,68,0.18699190672903554],[120,-9,69,0.1849615799474026],[120,-9,70,0.18299236158151622],[120,-9,71,0.1810855256943915],[120,-9,72,0.1792422260543559],[120,-9,73,0.17746349106091375],[120,-9,74,0.17575021860581297],[120,-9,75,0.17410317086952964],[120,-9,76,0.17252296905299902],[120,-9,77,0.17101008804467654],[120,-9,78,0.16956485102289498],[120,-9,79,0.16818742399353304],[120,-8,64,0.20026431161299285],[120,-8,65,0.19803917722527387],[120,-8,66,0.19586760612451892],[120,-8,67,0.1937513093888774],[120,-8,68,0.19169189876752624],[120,-8,69,0.18969088188635008],[120,-8,70,0.18774965738887506],[120,-8,71,0.18586951001251417],[120,-8,72,0.18405160560011335],[120,-8,73,0.1822969860468555],[120,-8,74,0.18060656418236654],[120,-8,75,0.1789811185882384],[120,-8,76,0.17742128835079574],[120,-8,77,0.17592756774919405],[120,-8,78,0.17450030087881263],[120,-8,79,0.17313967620995574],[120,-7,64,0.2047810902359265],[120,-7,65,0.20259064821009087],[120,-7,66,0.20045242386200335],[120,-7,67,0.19836813355087612],[120,-7,68,0.19633939562347513],[120,-7,69,0.19436772564086136],[120,-7,70,0.19245453154038428],[120,-7,71,0.1906011087329874],[120,-7,72,0.18880863513581392],[120,-7,73,0.18707816614016726],[120,-7,74,0.18541062951467646],[120,-7,75,0.18380682024387418],[120,-7,76,0.18226739530202096],[120,-7,77,0.18079286836225728],[120,-7,78,0.17938360444105061],[120,-7,79,0.1780398144779517],[120,-6,64,0.20924897871676806],[120,-6,65,0.20709326030574837],[120,-6,66,0.20498841370152654],[120,-6,67,0.20293616054079877],[120,-6,68,0.20093812576470993],[120,-6,69,0.19899583286666833],[120,-6,70,0.19711069907541445],[120,-6,71,0.19528403047340015],[120,-6,72,0.1935170170504661],[120,-6,73,0.191810727692876],[120,-6,74,0.19016610510755316],[120,-6,75,0.1885839606817301],[120,-6,76,0.18706496927784277],[120,-6,77,0.18560966396375256],[120,-6,78,0.18421843067826393],[120,-6,79,0.18289150283194766],[120,-5,64,0.2136721446816492],[120,-5,65,0.2115511742747347],[120,-5,66,0.2094797297080767],[120,-5,67,0.2074595378921087],[120,-5,68,0.20549223035880226],[120,-5,69,0.2035793385305653],[120,-5,70,0.20172228892439636],[120,-5,71,0.19992239829134573],[120,-5,72,0.19818086869127827],[120,-5,73,0.1964987825029888],[120,-5,74,0.1948770973695232],[120,-5,75,0.19331664107890767],[120,-5,76,0.1918181063801262],[120,-5,77,0.1903820457344232],[120,-5,78,0.1890088660019008],[120,-5,79,0.187698823063424],[120,-4,64,0.2180551774757259],[120,-4,65,0.21596897337272947],[120,-4,66,0.21393094918050803],[120,-4,67,0.21194283707946782],[120,-4,68,0.2100062751886943],[120,-4,69,0.20812280285594165],[120,-4,70,0.20629385588287752],[120,-4,71,0.20452076168563682],[120,-4,72,0.20280473439067392],[120,-4,73,0.20114686986596864],[120,-4,74,0.1995481406874371],[120,-4,75,0.19800939104075133],[120,-4,76,0.19653133155840508],[120,-4,77,0.19511453409210577],[120,-4,78,0.1937594264204605],[120,-4,79,0.1924662868919691],[120,-3,64,0.22240310007027886],[120,-3,65,0.22035167529168131],[120,-3,66,0.21834708462916974],[120,-3,67,0.2163910655294944],[120,-3,68,0.21448526269516766],[120,-3,69,0.21263122339555207],[120,-3,70,0.2108303927131997],[120,-3,71,0.2090841087255012],[120,-3,72,0.20739359762163423],[120,-3,73,0.20575996875486235],[120,-3,74,0.20418420963004313],[120,-3,75,0.20266718082654078],[120,-3,76,0.2012096108563861],[120,-3,77,0.19981209095776375],[120,-3,78,0.19847506982379037],[120,-3,79,0.19719884826660206],[120,-2,64,0.22672138109497142],[120,-2,65,0.2247047442285175],[120,-2,66,0.22273359587961972],[120,-2,67,0.2208096787580357],[120,-2,68,0.21893464414624209],[120,-2,69,0.21711004723161853],[120,-2,70,0.21533734237388535],[120,-2,71,0.2136178783078504],[120,-2,72,0.21195289328145672],[120,-2,73,0.2103435101291764],[120,-2,74,0.20879073128061776],[120,-2,75,0.20729543370453452],[120,-2,76,0.20585836378808453],[120,-2,77,0.20448013215141048],[120,-2,78,0.20316120839751783],[120,-2,79,0.20190191579745798],[120,-1,64,0.23101594699505434],[120,-1,65,0.22903410307926775],[120,-1,66,0.2270964023021993],[120,-1,67,0.2252045926337396],[120,-1,68,0.22336033193328975],[120,-1,69,0.2215651833030412],[120,-1,70,0.2198206103765139],[120,-1,71,0.21812797254240068],[120,-1,72,0.21648852010371267],[120,-1,73,0.21490338937227438],[120,-1,74,0.213373597698428],[120,-1,75,0.21190003843614003],[120,-1,76,0.21048347584335814],[120,-1,77,0.2091245399176921],[120,-1,78,0.20782372116738845],[120,-1,79,0.20658136531761162],[120,0,64,0.2352931943136256],[120,0,65,0.2333461457587136],[120,0,66,0.2314418951675894],[120,0,67,0.2295821957680364],[120,0,68,0.22776871199397364],[120,0,69,0.22600301485983487],[120,0,70,0.22428657727020307],[120,0,71,0.22262076926475693],[120,0,72,0.22100685319851165],[120,0,73,0.2194459788574139],[120,0,74,0.21793917850914435],[120,0,75,0.21648736188932283],[120,0,76,0.21509131112296354],[120,0,77,0.21375167558125419],[120,0,78,0.2124689666736288],[120,0,79,0.21124355257514793],[120,1,64,0.2395600020990578],[120,1,65,0.23764774964567303],[120,1,66,0.2357769501284538],[120,1,67,0.2339493620316443],[120,1,68,0.2321666563621274],[120,1,69,0.2304304120449],[120,1,70,0.22874211125380672],[120,1,71,0.2271031346775828],[120,1,72,0.2255147567211956],[120,1,73,0.22397814064253496],[120,1,74,0.22249433362431525],[120,1,75,0.22106426178137883],[120,1,76,0.21968872510324766],[120,1,77,0.21836839233200223],[120,1,78,0.21710379577545158],[120,1,79,0.21589532605561068],[120,2,64,0.24382330851816708],[120,2,65,0.24194585297326265],[120,2,66,0.24010850541648587],[120,2,67,0.23831302958749567],[120,2,68,0.23656110306502998],[120,2,69,0.234854312683482],[120,2,70,0.23319414988473097],[120,2,71,0.2315820060052839],[120,2,72,0.23001916749871565],[120,2,73,0.22850681109345639],[120,2,74,0.22704599888579424],[120,2,75,0.225637673368275],[120,2,76,0.22428265239335443],[120,2,77,0.22298162407237365],[120,2,78,0.2217351416098281],[120,2,79,0.22054361807294476],[120,3,64,0.24808389358549426],[120,3,65,0.24624124754358123],[120,3,66,0.2444373649916326],[120,3,67,0.2426740149150508],[120,3,68,0.24095288145451466],[120,3,69,0.23927555934365874],[120,3,70,0.2376435492820146],[120,3,71,0.23605825324326046],[120,3,72,0.23452096971876857],[120,3,73,0.23303288889650164],[120,3,74,0.23159508777512572],[120,3,75,0.2302085252135181],[120,3,76,0.22887403691552932],[120,3,77,0.2275923303500681],[120,3,78,0.2263639796064818],[120,3,79,0.22518942018524202],[120,4,64,0.25233756369693106],[120,4,65,0.2505297591134233],[120,4,66,0.24875937471060594],[120,4,67,0.24702818469449456],[120,4,68,0.2453378797419124],[120,4,69,0.24369006245930147],[120,4,70,0.2420862427767957],[120,4,71,0.2405278332776022],[120,4,72,0.23901614446268482],[120,4,73,0.23755237995079437],[120,4,74,0.2361376316137177],[120,4,75,0.2347728746469222],[120,4,76,0.2334589625754565],[120,4,77,0.232196622195174],[120,4,78,0.2309864484492523],[120,4,79,0.22982889924002137],[120,5,64,0.25658000744368775],[120,5,65,0.2548070942531725],[120,5,66,0.2530702598877511],[120,5,67,0.25137128373359574],[120,5,68,0.24971186296210768],[120,5,69,0.24809360800989533],[120,5,70,0.24651803799401778],[120,5,71,0.24498657606253904],[120,5,72,0.2435005446803853],[120,5,73,0.24206116085055052],[120,5,74,0.2406695312705257],[120,5,75,0.23932664742412335],[120,5,76,0.23803338060856027],[120,5,77,0.2367904768968656],[120,5,78,0.23559855203558844],[120,5,79,0.23445808627781317],[120,6,64,0.2608069301241627],[120,6,65,0.2590689746708886],[120,6,66,0.25736575942075846],[120,6,67,0.2556990688846448],[120,6,68,0.2540706066714883],[120,6,69,0.2524819909894926],[120,6,70,0.25093475008258914],[120,6,71,0.24943031760221518],[120,6,72,0.24797002791440026],[120,6,73,0.24655511134220232],[120,6,74,0.2451866893433734],[120,6,75,0.24386576962342243],[120,6,76,0.24259324118393943],[120,6,77,0.2413698693062527],[120,6,78,0.24019629047038205],[120,6,79,0.23907300720931024],[120,7,64,0.2650140568360303],[120,7,65,0.26331114034851105],[120,7,66,0.26164162896974374],[120,7,67,0.2600073122651714],[120,7,68,0.2584099002090674],[120,7,69,0.25685101870700844],[120,7,70,0.2553322050536217],[120,7,71,0.25385490332565325],[120,7,72,0.25242045971034816],[120,7,73,0.2510301177691868],[120,7,74,0.24968501363685636],[120,7,75,0.24838617115562334],[120,7,76,0.24713449694497702],[120,7,77,0.24593077540660424],[120,7,78,0.24477566366467418],[120,7,79,0.24366968644144082],[120,8,64,0.26919713551346963],[120,8,65,0.26752935262273014],[120,8,66,0.26589364408054306],[120,8,67,0.2642918044224448],[120,8,68,0.26272554990097197],[120,8,69,0.26119651402948213],[120,8,70,0.2597062430612592],[120,8,71,0.25825619140394507],[120,8,72,0.25684771696929304],[120,8,73,0.25548207645828386],[120,8,74,0.2541604205814855],[120,8,75,0.25288378921482113],[120,8,76,0.25165310649061556],[120,8,77,0.2504691758239824],[120,8,78,0.24933267487452693],[120,8,79,0.24824415044337478],[120,9,64,0.27335193990964124],[120,9,65,0.27171939721063926],[120,9,66,0.27011760325233763],[120,9,67,0.26854835744186983],[120,9,68,0.26701338220840976],[120,9,69,0.26551431856842206],[120,9,70,0.26405272162620647],[120,9,71,0.2626300560097812],[120,9,72,0.2612476912420968],[120,9,73,0.2599068970476226],[120,9,74,0.2586088385941894],[120,9,75,0.2573545716702489],[120,9,76,0.2561450377974226],[120,9,77,0.25498105927840153],[120,9,78,0.2538633341801725],[120,9,79,0.2527924312525811],[120,10,64,0.2774742725245219],[120,10,65,0.27587708718027354],[120,10,66,0.2743093309497137],[120,10,67,0.272772807999385],[120,10,68,0.27126924681922643],[120,10,69,0.2698002958093406],[120,10,70,0.26836751880207127],[120,10,71,0.26697239051943206],[120,10,72,0.2656162919658786],[120,10,73,0.2643005057564676],[120,10,74,0.2630262113802853],[120,10,75,0.26179448039930625],[120,10,76,0.26060627158255384],[120,10,77,0.2594624259756263],[120,10,78,0.2583636619055625],[120,10,79,0.25731056992105705],[120,11,64,0.2815599674778781],[120,11,65,0.2799982658658193],[120,11,66,0.2784646805589413],[120,11,67,0.27696102035764614],[120,11,68,0.2754890196828288],[120,11,69,0.2740503341842603],[120,11,70,0.2726465362842961],[120,11,71,0.2712791106569545],[120,11,72,0.2699494496423548],[120,11,73,0.2686588485965572],[120,11,74,0.2674085011766918],[120,11,75,0.2661994945615318],[120,11,76,0.26503280460738776],[120,11,77,0.2639092909393818],[120,11,78,0.26282969197807926],[120,11,79,0.2617946199014874],[120,12,64,0.28560489332749267],[120,12,65,0.2840788097276043],[120,12,66,0.2825795372885821],[120,12,67,0.28110888930610395],[120,12,68,0.2796686059885896],[120,12,69,0.2782603500873008],[120,12,70,0.2768857024617902],[120,12,71,0.27554615758073886],[120,12,72,0.27424311895817427],[120,12,73,0.2729778945251106],[120,12,74,0.271751691936499],[120,12,75,0.27056561381364164],[120,12,76,0.26942065292194706],[120,12,77,0.2683176872840866],[120,12,78,0.26725747522852905],[120,12,79,0.26624065037346073],[120,13,64,0.2896049558327421],[120,13,65,0.2881146311569719],[120,13,66,0.2866498210145301],[120,13,67,0.285212343045084],[120,13,68,0.28380394308783696],[120,13,69,0.28242629083345616],[120,13,70,0.28108097541137467],[120,13,71,0.2797695009125048],[120,13,72,0.2784932818473584],[120,13,73,0.2772536385396118],[120,13,74,0.2760517924550077],[120,13,75,0.2748888614657418],[120,13,76,0.27376585505021767],[120,13,77,0.27268366942822697],[120,13,78,0.27164308263153003],[120,13,79,0.2706447495098488],[120,14,64,0.29355610066330773],[120,14,65,0.2921016812258178],[120,14,66,0.2906714890692628],[120,14,67,0.2892673460136402],[120,14,68,0.2878910033592033],[120,14,69,0.2865441375603318],[120,14,70,0.28522834583480444],[120,14,71,0.28394514170851287],[120,14,72,0.28269595049561125],[120,14,73,0.28148210471413654],[120,14,74,0.280304839436998],[120,14,75,0.27916528757847775],[120,14,76,0.2780644751161292],[120,14,77,0.27700331624812785],[120,14,78,0.2759826084860535],[120,14,79,0.2750030276831124],[120,15,64,0.29745431605320516],[120,15,65,0.29603595238097413],[120,15,66,0.2946405389754886],[120,15,67,0.2932699016613738],[120,15,68,0.291925797017524],[120,15,69,0.2906099080730336],[120,15,70,0.2893238399385647],[120,15,71,0.28806911537318913],[120,15,72,0.2868471702866984],[120,15,73,0.2856593491774192],[120,15,74,0.28450690050543004],[120,15,75,0.28339097200132274],[120,15,76,0.282312605910394],[120,15,77,0.2812727341723248],[120,15,78,0.280272173536322],[120,15,79,0.2793116206117339],[120,16,64,0.30129563539999416],[120,16,65,0.299913481083307],[120,16,66,0.2985530111240552],[120,16,67,0.297216055164078],[120,16,68,0.29590437486614485],[120,16,69,0.2946196596320694],[120,16,70,0.2933635222562986],[120,16,71,0.2921374945150155],[120,16,72,0.29094302269074723],[120,16,73,0.28978146303251534],[120,16,74,0.2886540771514282],[120,16,75,0.28756202735185327],[120,16,76,0.28650637189806055],[120,16,77,0.28548806021638845],[120,16,78,0.2845079280329127],[120,16,79,0.2835666924466269],[120,17,64,0.3050761398093502],[120,17,65,0.30373035039170365],[120,17,66,0.3024049913962971],[120,17,67,0.3011018960833896],[120,17,68,0.2998228309928234],[120,17,69,0.29856949168444574],[120,17,70,0.2973434984140511],[120,17,71,0.296146391744879],[120,17,72,0.29497962809466016],[120,17,73,0.29384457521824875],[120,17,74,0.29274250762574],[120,17,75,0.2916746019362106],[120,17,76,0.2906419321669723],[120,17,77,0.2896454649583934],[120,17,78,0.28868605473426506],[120,17,79,0.2877644387977219],[120,18,64,0.3087919605847824],[120,18,65,0.3074826924917374],[120,18,66,0.30619261373060913],[120,18,67,0.3049235609702324],[120,18,68,0.303677305409004],[120,18,69,0.30245554853774165],[120,18,70,0.3012599178381098],[120,18,71,0.3000919624166508],[120,18,72,0.2989531485744142],[120,18,73,0.29784485531221755],[120,18,74,0.2967683697714449],[120,18,75,0.29572488261051305],[120,18,76,0.29471548331690306],[120,18,77,0.2937411554548048],[120,18,78,0.29280277184835707],[120,18,79,0.2919010897004907],[120,19,64,0.31243928166260476],[120,19,65,0.31116669116911533],[120,19,66,0.30991206263334986],[120,19,67,0.3086772359121557],[120,19,68,0.30746398663257496],[120,19,69,0.3062740219772656],[120,19,70,0.305108976405548],[120,19,71,0.3039704073101091],[120,19,72,0.3028597906093583],[120,19,73,0.3017785162754702],[120,19,74,0.3007278837980192],[120,19,75,0.29970909758333564],[120,19,76,0.2987232622894807],[120,19,77,0.2977713780968898],[120,19,78,0.2968543359146657],[120,19,79,0.295972912522527],[120,20,64,0.31601434199224937],[120,20,65,0.31477858422799965],[120,20,66,0.3135595756341688],[120,20,67,0.31235915902466704],[120,20,68,0.3111791142142015],[120,20,69,0.31002115382639184],[120,20,70,0.30888691903757015],[120,20,71,0.3077779752562996],[120,20,72,0.30669580773860483],[120,20,73,0.3056418171389489],[120,20,74,0.30461731499686245],[120,20,75,0.3036235191593542],[120,20,76,0.30266154913899973],[120,20,77,0.301732421407761],[120,20,78,0.30083704462651184],[120,20,79,0.29997621481028286],[120,21,64,0.3195134378617337],[120,21,65,0.31831466585401186],[120,21,66,0.31713144568556395],[120,21,67,0.31596562288635655],[120,21,68,0.3148189812070385],[120,21,69,0.31369323844987856],[120,21,70,0.3125900422354555],[120,21,71,0.31151096570513337],[120,21,72,0.3104575031593131],[120,21,73,0.309431065631497],[120,21,74,0.30843297639807365],[120,21,75,0.3074644664239477],[120,21,76,0.3065266697439157],[120,21,77,0.305620618779837],[120,21,78,0.30474723959357997],[120,21,79,0.30390734707575034],[120,22,64,0.32293292516837957],[120,22,65,0.3217712889220185],[120,22,66,0.32062402350676905],[120,22,67,0.3194929769179221],[120,22,68,0.3183799365799245],[120,22,69,0.3172866252002686],[120,22,70,0.3162146965592078],[120,22,71,0.315165731235328],[120,22,72,0.3141412322669702],[120,22,73,0.31314262074953597],[120,22,74,0.3121712313685885],[120,22,75,0.3112283078688675],[120,22,76,0.31031499845912586],[120,22,77,0.3094323511528326],[120,22,78,0.3085813090447217],[120,22,79,0.3077627055231989],[120,23,64,0.3262692216348696],[120,23,65,0.32514486724878755],[120,23,66,0.32403371987206087],[120,23,67,0.32293762970517764],[120,23,68,0.32185838757414664],[120,23,69,0.32079772080746627],[120,23,70,0.31975728904899875],[120,23,71,0.3187386800067803],[120,23,72,0.3177434051377612],[120,23,73,0.3167728952685057],[120,23,74,0.31582849615176867],[120,23,75,0.31491146395906483],[120,23,76,0.31402296070913743],[120,23,77,0.31316404963237227],[120,23,78,0.3123356904711384],[120,23,79,0.31153873471606347],[120,24,64,0.32951880897046243],[120,24,65,0.32843187779033],[120,24,66,0.32735700784329913],[120,24,67,0.3262960512658633],[120,24,68,0.3252508020035906],[120,24,69,0.3242229917112977],[120,24,70,0.32321428558921705],[120,24,71,0.3222262781551833],[120,24,72,0.3212604889528368],[120,24,73,0.3203183581958719],[120,24,74,0.31940124234824935],[120,24,75,0.31851040964048355],[120,24,76,0.3176470355219175],[120,24,77,0.3168121980490285],[120,24,78,0.3160068732097447],[120,24,79,0.3152319301837833],[120,25,64,0.33267823497746013],[120,25,65,0.33162886278402687],[120,25,66,0.33059042494680047],[120,25,67,0.32956477526035344],[120,25,68,0.3285537104983717],[120,25,69,0.32755896633715864],[120,25,70,0.32658221321522357],[120,25,71,0.32562505212898407],[120,25,72,0.32468901036457715],[120,25,73,0.3237755371658061],[120,25,74,0.3228859993381464],[120,25,75,0.3220216767889175],[120,25,76,0.32118375800353577],[120,25,77,0.3203733354578885],[120,25,78,0.31959140096681415],[120,25,79,0.3188388409686955],[120,26,64,0.3357441156030079],[120,26,65,0.3347324318356168],[120,26,66,0.33373057529462224],[120,26,67,0.33274040114634335],[120,26,68,0.3317637086920325],[120,26,69,0.33080223731482766],[120,26,70,0.32985766236289293],[120,26,71,0.3289315909687709],[120,26,72,0.3280255578049417],[120,26,73,0.3271410207756201],[120,26,74,0.32627935664470986],[120,26,75,0.3254418566000237],[120,26,76,0.3246297217536827],[120,26,77,0.3238440585787387],[120,26,78,0.3230858742820012],[120,26,79,0.32235607211307576],[120,27,64,0.33871313693605626],[120,27,65,0.33773926395087817],[120,27,66,0.33677413165008807],[120,27,67,0.33581959627734365],[120,27,68,0.3348774593521282],[120,27,69,0.3339494636402724],[120,27,70,0.3330372890607689],[120,27,71,0.3321425485289063],[120,27,72,0.3312667837357188],[120,27,73,0.3304114608637761],[120,27,74,0.3295779662392421],[120,27,75,0.3287676019203023],[120,27,76,0.32798158122188],[120,27,77,0.32722102417668014],[120,27,78,0.32648695293254576],[120,27,79,0.3257802870861325],[120,28,64,0.34158205714957957],[120,28,65,0.34064610951209545],[120,28,66,0.33971783743764644],[120,28,67,0.3387990979450715],[120,28,68,0.33789169445429773],[120,28,69,0.3369973727805419],[120,28,70,0.33611781706492283],[120,28,71,0.33525464564150603],[120,28,72,0.3344094068407764],[120,28,73,0.33358357472956796],[120,28,74,0.3327785447873749],[120,28,75,0.33199562951914613],[120,28,76,0.33123605400448164],[120,28,77,0.3305009513832723],[120,28,78,0.32979135827776496],[120,28,79,0.32910821015106007],[120,29,64,0.3443477083881152],[120,29,65,0.3434497921993791],[120,29,66,0.3425585086971318],[120,29,67,0.34167571536581637],[120,29,68,0.34080321719989015],[120,29,69,0.3399427627218176],[120,29,70,0.3390960399365964],[120,29,71,0.3382646722228357],[120,29,72,0.33745021416038706],[120,29,73,0.3366541472945507],[120,29,74,0.33587787583678785],[120,29,75,0.33512272230203505],[120,29,76,0.3343899230825446],[120,29,77,0.33368062395828874],[120,29,78,0.3329958755439099],[120,29,79,0.3323366286722277],[120,30,64,0.3470069986004763],[120,30,65,0.3461472108566879],[120,30,66,0.345293035982276],[120,30,67,0.3444463316106166],[120,30,68,0.34360890397698923],[120,30,69,0.34278250396046533],[120,30,70,0.3419688230624594],[120,30,71,0.34116948932196395],[120,30,72,0.3403860631674633],[120,30,73,0.33962003320555284],[120,30,74,0.3388728119461955],[120,30,75,0.33814573146470733],[120,30,76,0.33744003900039854],[120,30,77,0.33675689249190827],[120,30,78,0.3360973560492153],[120,30,79,0.33546239536233274],[120,31,64,0.3495569133177183],[120,31,65,0.34873534130263417],[120,31,66,0.34791838620355037],[120,31,67,0.34710790547933745],[120,31,68,0.346305706264922],[120,31,69,0.34551354143717117],[120,31,70,0.34473310561757686],[120,31,71,0.3439660311117599],[120,31,72,0.34321388378579215],[120,31,73,0.34247815887935895],[120,31,74,0.3417602767556973],[120,31,75,0.34106157858839853],[120,31,76,0.34038332198500526],[120,31,77,0.3397266765474381],[120,31,78,0.3390927193692346],[120,31,79,0.33848243046961085],[120,32,64,0.35199451737642007],[120,32,65,0.35121123808613686],[120,32,66,0.35043160441540605],[120,32,67,0.3496574733187116],[120,32,68,0.3488906524823155],[120,32,69,0.3481328964142321],[120,32,70,0.34738590247114676],[120,32,71,0.34665130682230066],[120,32,72,0.3459306803503377],[120,32,73,0.345225524489135],[120,32,74,0.34453726699855747],[120,32,75,0.3438672576762186],[120,32,76,0.3432167640061825],[120,32,77,0.342586966744638],[120,32,78,0.3419789554425332],[120,32,79,0.3413937239051751],[120,33,64,0.35431695658714585],[120,33,65,0.35357203618678257],[120,33,66,0.3528298155477686],[120,33,67,0.3520921507842016],[120,33,68,0.35136084977855947],[120,33,69,0.3506376682958507],[120,33,70,0.3499243060348658],[120,33,71,0.3492224026165445],[120,33,72,0.3485335335094606],[120,33,73,0.34785920589244096],[120,33,74,0.3472008544542638],[120,33,75,0.3465598371305136],[120,33,76,0.34593743077753125],[120,33,77,0.3453348267834899],[120,33,78,0.34475312661658236],[120,33,79,0.34419333731032736],[120,34,64,0.35652145934816004],[120,34,65,0.35581495265997204],[120,34,66,0.355110226081867],[120,34,67,0.3544091345457625],[120,34,68,0.3537134857687528],[120,34,69,0.35302503639151905],[120,34,70,0.3523454880540007],[120,34,71,0.3516764834083457],[120,34,72,0.3510196020691375],[120,34,73,0.3503763565009177],[120,34,74,0.34974818784294864],[120,34,75,0.34913646167129436],[120,34,76,0.34854246369815683],[120,34,77,0.3479673954084983],[120,34,78,0.3474123696339375],[120,34,79,0.3468784060639251],[120,35,64,0.3586053382044508],[120,35,65,0.35793728822690396],[120,35,66,0.3572701256704495],[120,35,67,0.35660570393755797],[120,35,68,0.35594583021219073],[120,35,69,0.3552922616225438],[120,35,70,0.3546467013412244],[120,35,71,0.3540107946228747],[120,35,72,0.3533861247792405],[120,35,73,0.3527742090917045],[120,35,74,0.35217649466123135],[120,35,75,0.3515943541957968],[120,35,76,0.35102908173524194],[120,35,77,0.35048188831358396],[120,35,78,0.3499538975587688],[120,35,79,0.34944614122987194],[120,36,64,0.3605659913519397],[120,36,65,0.35993642880927645],[120,36,66,0.35930688870226457],[120,36,67,0.35867922255150886],[120,36,68,0.3580552366342652],[120,36,69,0.35743668817158825],[120,36,70,0.35682528145308745],[120,36,71,0.35622266389930907],[120,36,72,0.35563042206174056],[120,36,73,0.35505007756045553],[120,36,74,0.35448308295934894],[120,36,75,0.35393081757903266],[120,36,76,0.3533945832473349],[120,36,77,0.35287559998743157],[120,36,78,0.3523750016435977],[120,36,79,0.351893831444585],[120,37,64,0.36240090408694753],[120,37,65,0.36180984700877383],[120,37,66,0.361217975810875],[120,37,67,0.360627139774739],[120,37,68,0.36003914389185043],[120,37,69,0.35945574507530065],[120,37,70,0.3588786483091947],[120,37,71,0.3583095027358684],[120,37,72,0.3577498976809134],[120,37,73,0.3572013586160283],[120,37,74,0.35666534305964664],[120,37,75,0.3561432364154101],[120,37,76,0.35563634774842984],[120,37,77,0.3551459054993675],[120,37,78,0.3546730531363211],[120,37,79,0.35421884474452164],[120,38,64,0.3641076502009571],[120,38,65,0.36355510353138143],[120,38,66,0.36300093532784994],[120,38,67,0.3624469922709694],[120,38,68,0.36189507768221885],[120,38,69,0.3613469477600767],[120,38,70,0.36080430775413985],[120,38,71,0.3602688080772449],[120,38,72,0.35974204035559343],[120,38,73,0.3592255334168952],[120,38,74,0.3587207492164851],[120,38,75,0.35822907870147475],[120,38,76,0.3577518376128906],[120,38,77,0.35729026222582355],[120,38,78,0.3568455050275763],[120,38,79,0.3564186303338176],[120,39,64,0.36568389332056883],[120,39,65,0.3651698485564232],[120,39,66,0.3646534046802272],[120,39,67,0.3641364054057449],[120,39,68,0.3636206519953752],[120,39,69,0.3631078995208419],[120,39,70,0.3625998530620762],[120,39,71,0.3620981638443075],[120,39,72,0.3616044253133581],[120,39,73,0.3611201691491574],[120,39,74,0.36064686121743433],[120,39,75,0.3601858974596458],[120,39,76,0.35973859972109395],[120,39,77,0.3593062115172559],[120,39,78,0.3588898937383164],[120,39,79,0.358490720291908],[120,40,64,0.3671273881927378],[120,40,65,0.3666518230504109],[120,40,66,0.36617311173233535],[120,40,67,0.3656930946155902],[120,40,68,0.3652135705099053],[120,40,69,0.3647362929429494],[120,40,70,0.36426296638402594],[120,40,71,0.36379524240618355],[120,40,72,0.3633347157867446],[120,40,73,0.3628829205462615],[120,40,74,0.36244132592586487],[120,40,75,0.3620113323030552],[120,40,76,0.3615942670458957],[120,40,77,0.3611913803056296],[120,40,78,0.3608038407477084],[120,40,79,0.36043273122124014],[120,41,64,0.36843598191523297],[120,41,65,0.36799886002564564],[120,41,66,0.36755787607191714],[120,41,67,0.36711486672103255],[120,41,68,0.3666716279322726],[120,41,69,0.3662299112671318],[120,41,70,0.365791420137861],[120,41,71,0.36535780599464696],[120,41,72,0.3649306644514275],[120,41,73,0.3645115313503533],[120,41,74,0.36410187876486205],[120,41,75,0.3637031109414146],[120,41,76,0.3633165601798521],[120,41,77,0.36294348265239496],[120,41,78,0.36258505416127473],[120,41,79,0.36224236583500374],[120,42,64,0.3696076151123875],[120,42,65,0.3692088857436412],[120,42,66,0.36880561024062325],[120,42,67,0.36839962118356046],[120,42,68,0.36799271127964056],[120,42,69,0.36758662969757694],[120,42,70,0.36718307834103076],[120,42,71,0.366783708060895],[120,42,72,0.366390114806442],[120,42,73,0.3660038357153461],[120,42,74,0.36562634514254644],[120,42,75,0.3652590506279991],[120,42,76,0.36490328880327705],[120,42,77,0.36456032123704163],[120,42,78,0.36423133021937343],[120,42,79,0.3639174144849685],[120,43,64,0.37064032305605754],[120,43,65,0.37027992086328576],[120,43,66,0.36991432090879195],[120,43,67,0.36954535130643773],[120,43,68,0.36917480110612916],[120,43,69,0.36880441665304353],[120,43,70,0.3684358978859479],[120,43,71,0.3680708945746172],[120,43,72,0.36771100249635297],[120,43,73,0.3673577595516101],[120,43,74,0.3670126418187047],[120,43,75,0.3666770595476427],[120,43,76,0.3663523530930368],[120,43,77,0.3660397887861281],[120,43,78,0.3657405547459043],[120,43,79,0.36545575662932067],[120,44,64,0.37153223673183833],[120,44,65,0.37121008153379076],[120,44,66,0.37088210999456506],[120,44,67,0.3705501453794152],[120,44,68,0.37021597267255835],[120,44,69,0.3698813349610637],[120,44,70,0.3695479297580807],[120,44,71,0.36921740526541147],[120,44,72,0.3688913565754264],[120,44,73,0.3685713218123349],[120,44,74,0.36825877821278086],[120,44,75,0.36795513814580505],[120,44,76,0.36766174507213756],[120,44,77,0.36737986944284273],[120,44,78,0.3671107045373048],[120,44,79,0.3668553622405596],[120,45,64,0.3722815838505523],[120,45,65,0.37199758043244313],[120,45,66,0.3717071757273559],[120,45,67,0.3714121877673673],[120,45,68,0.37111439705969745],[120,45,69,0.37081554299525527],[120,45,70,0.3705173201967784],[120,45,71,0.3702213748065685],[120,45,72,0.369929300713826],[120,45,73,0.36964263572158995],[120,45,74,0.36936285765326027],[120,45,75,0.36909138039873424],[120,45,76,0.3688295499001324],[120,45,77,0.36857864007712665],[120,45,78,0.3683398486918624],[120,45,79,0.36811429315348265],[120,46,64,0.3728866898049591],[120,46,65,0.3726407277471095],[120,46,66,0.37238781365561635],[120,46,67,0.37212975994278846],[120,46,68,0.3718683422249611],[120,46,69,0.3716052957556836],[120,46,70,0.371342311798762],[120,46,71,0.3710810339411618],[120,46,72,0.3708230543457688],[120,46,73,0.3705699099440185],[120,46,74,0.37032307856836966],[120,46,75,0.3700839750246543],[120,46,76,0.36985394710427716],[120,46,77,0.3696342715362809],[120,46,78,0.3694261498792676],[120,46,79,0.36923070435318095],[120,47,64,0.3733459785717212],[120,47,65,0.37313793210352375],[120,47,66,0.37292241759893746],[120,47,67,0.3727012414621932],[120,47,68,0.3724761740025919],[120,47,69,0.37224894589230906],[120,47,70,0.3720212445643246],[120,47,71,0.3717947105504829],[120,47,72,0.3715709337596821],[120,47,73,0.3713514496962011],[120,47,74,0.371137735618143],[120,47,75,0.37093120663602275],[120,47,76,0.3707332117514766],[120,47,77,0.3705450298361071],[120,47,78,0.3703678655504531],[120,47,79,0.37020284520309465],[120,48,64,0.37365797355863173],[120,48,65,0.37348770143737164],[120,48,66,0.37330948054449403],[120,48,67,0.3731251108864251],[120,48,68,0.3729363570473375],[120,48,69,0.3727449446715366],[120,48,70,0.37255255688625155],[120,48,71,0.3723608306648355],[120,48,72,0.3721713531303745],[120,48,73,0.37198565779971093],[120,48,74,0.37180522076786426],[120,48,75,0.3716314568328739],[120,48,76,0.37146571556104346],[120,48,77,0.3713092772925968],[120,48,78,0.37116334908774196],[120,48,79,0.37102906061314533],[120,49,64,0.37382129839707445],[120,49,65,0.3736886438111333],[120,49,66,0.3735475954877965],[120,49,67,0.3733999466448407],[120,49,68,0.3732474557215867],[120,49,69,0.37309184288582187],[120,49,70,0.37293478648141837],[120,49,71,0.37277791941664523],[120,49,72,0.37262282549317793],[120,49,73,0.3724710356758081],[120,49,74,0.3723240243028408],[120,49,75,0.3721832052371981],[120,49,76,0.37204992795821196],[120,49,77,0.37192547359411854],[120,49,78,0.371811050895244],[120,49,79,0.37170779214789124],[120,50,64,0.373834677679739],[120,50,65,0.37373946817571463],[120,50,66,0.3736354562177788],[120,50,67,0.3735244278433942],[120,50,68,0.37340813492598957],[120,50,69,0.37328829170636674],[120,50,70,0.373166571265098],[120,50,71,0.37304460193591477],[120,50,72,0.37292396366008895],[120,50,73,0.3728061842818089],[120,50,74,0.3726927357845407],[120,50,75,0.3725850304683893],[120,50,76,0.372484417068447],[120,50,77,0.37239217681413606],[120,50,78,0.37230951942954216],[120,50,79,0.3722375790747404],[120,51,64,0.37369693764358913],[120,51,65,0.3736389850768592],[120,51,66,0.3735718580462172],[120,51,67,0.3734973350166211],[120,51,68,0.3734171608735644],[120,51,69,0.3733330434789026],[120,51,70,0.3732466501679759],[120,51,71,0.3731596041880274],[120,51,72,0.3730734810779165],[120,51,73,0.37298980498913226],[120,51,74,0.3729100449480965],[120,51,75,0.37283561105977037],[120,51,76,0.37276785065255025],[120,51,77,0.3727080443644666],[120,51,78,0.3726574021706722],[120,51,79,0.3726170593522319],[120,52,64,0.37340700679807104],[120,52,65,0.3733861073063335],[120,52,66,0.37335569848146904],[120,52,67,0.37331755082350804],[120,52,68,0.3732734018072713],[120,52,69,0.3732249524625436],[120,52,70,0.37317386389585594],[120,52,71,0.373121753753876],[120,52,72,0.3730701926284071],[120,52,73,0.37302070040299684],[120,52,74,0.37297474254115115],[120,52,75,0.3729337263161615],[120,52,76,0.3728989969825364],[120,52,77,0.37287183388904505],[120,52,78,0.37285344653336616],[120,52,79,0.37284497055834864],[120,53,64,0.37296391649858107],[120,53,65,0.37297985049789817],[120,53,66,0.3729859778465465],[120,53,67,0.372984060687263],[120,53,68,0.3729758286610733],[120,53,69,0.37296297551172847],[120,53,70,0.3729471556320728],[120,53,71,0.3729299805523394],[120,53,72,0.3729130153703749],[120,53,73,0.3728977751237949],[120,53,74,0.37288572110406626],[120,53,75,0.372878257112522],[120,53,76,0.37287672565830104],[120,53,77,0.37288240409822243],[120,53,78,0.37289650071858327],[120,53,79,0.37292015075889084],[120,54,64,0.3723668014651707],[120,54,65,0.37241933366805025],[120,54,66,0.3724617998415104],[120,54,67,0.3724959533789738],[120,54,68,0.37252351566446934],[120,54,69,0.3725461727012387],[120,54,70,0.37256557168260457],[120,54,71,0.37258331750509377],[120,54,72,0.37260096922382113],[120,54,73,0.3726200364501291],[120,54,74,0.37264197569148794],[120,54,75,0.37266818663365264],[120,54,76,0.37270000836507744],[120,54,77,0.3727387155435903],[120,54,78,0.3727855145053232],[120,54,79,0.3728415393159036],[120,55,64,0.37161490024650684],[120,55,65,0.37170377970154955],[120,55,66,0.37178237205019526],[120,55,67,0.37185242154516274],[120,55,68,0.37191564089050816],[120,55,69,0.3719737078942982],[120,55,70,0.37202826206388306],[120,55,71,0.3720809011437624],[120,55,72,0.372133177596047],[120,55,73,0.3721865950235146],[120,55,74,0.37224260453526326],[120,55,75,0.37230260105495794],[120,55,76,0.37236791957167165],[120,55,77,0.3724398313333247],[120,55,78,0.37251953998271525],[120,55,79,0.37260817763614934],[120,56,64,0.3707075556290892],[120,56,65,0.3708325157817305],[120,56,66,0.37094700639126926],[120,56,67,0.371052762179244],[120,56,68,0.37115148674728893],[120,56,69,0.37124484925376156],[120,56,70,0.3713344810333158],[120,56,71,0.37142197215941175],[120,56,72,0.3715088679497689],[120,56,73,0.37159666541475533],[120,56,74,0.3716868096487228],[120,56,75,0.3717806901642777],[120,56,76,0.3718796371694931],[120,56,77,0.3719849177880631],[120,56,78,0.37209773222239395],[120,56,79,0.37221920985964],[120,57,64,0.36964421499169375],[120,57,65,0.3698049737655744],[120,57,66,0.3699551195136031],[120,57,67,0.37009637703685494],[120,57,68,0.3702304404129211],[120,57,69,0.3703589696963673],[120,57,70,0.3704835875624912],[120,57,71,0.370605875894372],[120,57,72,0.3707273723132124],[120,57,73,0.370849566651973],[120,57,74,0.37097389737230496],[120,57,75,0.37110174792477063],[120,57,76,0.3712344430523589],[120,57,77,0.371373245037296],[120,57,78,0.37151934989114666],[120,57,79,0.3716738834882123],[120,58,64,0.3684244306050845],[120,58,65,0.3686206905035764],[120,58,66,0.36880623313598093],[120,58,67,0.36898277299509785],[120,58,68,0.3691519942139787],[120,58,69,0.3693155472900834],[120,58,70,0.36947504575309853],[120,58,71,0.3696320627764065],[120,58,72,0.3697881277322109],[120,58,73,0.3699447226903124],[120,58,74,0.37010327886054617],[120,58,75,0.37026517297886685],[120,58,76,0.3704317236370901],[120,58,77,0.37060418755629],[120,58,78,0.37078375580384765],[120,58,79,0.37097154995415876],[120,59,64,0.3670478598769795],[120,59,65,0.3672793081043991],[120,59,66,0.36749997433114756],[120,59,67,0.36771156235568225],[120,59,68,0.36791574594743875],[120,59,69,0.36811416559454313],[120,59,70,0.36830842519555435],[120,59,71,0.3685000886952287],[120,59,72,0.36869067666430705],[120,59,73,0.36888166282332147],[120,59,74,0.3690744705104344],[120,59,75,0.36927046909329214],[120,59,76,0.36947097032490317],[120,59,77,0.3696772246435432],[120,59,78,0.36989041741667883],[120,59,79,0.37011166512891935],[120,60,64,0.3655142655422352],[120,60,65,0.3657805741442741],[120,60,66,0.36603607575415087],[120,60,67,0.3662824630919309],[120,60,68,0.3665213991460706],[120,60,69,0.3667545139445316],[120,60,70,0.36698340127030493],[120,60,71,0.3672096153213307],[120,60,72,0.3674346673148202],[120,60,73,0.36766002203597153],[120,60,74,0.36788709433109523],[120,60,75,0.36811724554513037],[120,60,76,0.3683517799035625],[120,60,77,0.36859194083874436],[120,60,78,0.3688389072606116],[120,60,79,0.36909378977180357],[120,61,64,0.3638235157983062],[120,61,65,0.3641243418212097],[120,61,66,0.3644143758150399],[120,61,67,0.3646952990397073],[120,61,68,0.3649687632873281],[120,61,69,0.3652363876765798],[120,61,70,0.3654997553918513],[120,61,71,0.36576041036717305],[120,61,72,0.3660198539149326],[120,61,73,0.36627954129936696],[120,61,74,0.3665408782548532],[120,61,75,0.3668052174489683],[120,61,76,0.3670738548903389],[120,61,77,0.36734802628127494],[120,61,78,0.36762890331518544],[120,61,79,0.36791758991878115],[120,62,64,0.3619755843859643],[120,62,65,0.36231057005398615],[120,62,66,0.3626348187958983],[120,62,67,0.36295000003224404],[120,62,68,0.3632577539457284],[120,62,69,0.3635596882986447],[120,62,70,0.3638573751954848],[120,62,71,0.3641523477907226],[120,62,72,0.36444609694177466],[120,62,73,0.36474006780712787],[120,62,74,0.3650356563896585],[120,62,75,0.36533420602511135],[120,62,76,0.3656370038157599],[120,62,77,0.3659452770092432],[120,62,78,0.3662601893225749],[120,62,79,0.36658283721133245],[120,63,64,0.35997055061521865],[120,63,65,0.3603393235258864],[120,63,66,0.3606974549121617],[120,63,67,0.36104660197882243],[120,63,68,0.3613883928886681],[120,63,69,0.3617244236028324],[120,63,70,0.36205625466668256],[120,63,71,0.3623854079412884],[120,63,72,0.3627133632804689],[120,63,73,0.36304155515340253],[120,63,74,0.3633713692128325],[120,63,75,0.363704138808825],[120,63,76,0.3640411414481127],[120,63,77,0.36438359519901053],[120,63,78,0.3647326550419042],[120,63,79,0.3650894091653175],[120,64,64,0.3578085993365353],[120,64,65,0.3582107726732512],[120,64,66,0.35860244031830735],[120,64,67,0.3589852468873924],[120,64,68,0.359360808115761],[120,64,69,0.35973070772124305],[120,64,70,0.36009649421324685],[120,64,71,0.3604596776477388],[120,64,72,0.3608217263282051],[120,64,73,0.36118406345258586],[120,64,74,0.3615480637062074],[120,64,75,0.36191504980067735],[120,64,76,0.3622862889587673],[120,64,77,0.3626629893452771],[120,64,78,0.3630462964438762],[120,64,79,0.36343728937993147],[120,65,64,0.355490020857272],[120,65,65,0.3559251936187847],[120,65,66,0.3563500370578442],[120,65,67,0.3567661828310561],[120,65,68,0.35717523384162697],[120,65,69,0.35757876112486964],[120,65,70,0.35797830068011804],[120,65,71,0.35837535024902967],[120,65,72,0.3587713660402867],[120,65,73,0.3591677594006779],[120,65,74,0.35956589343259837],[120,65,75,0.35996707955791923],[120,65,76,0.3603725740282629],[120,65,77,0.3607835743816703],[120,65,78,0.3612012158456605],[120,65,79,0.36162656768668855],[120,66,64,0.3530152108034032],[120,66,65,0.35348296804967666],[120,66,66,0.35394061295766593],[120,66,67,0.3543897638584832],[120,66,68,0.3548320104221947],[120,66,69,0.3552689105656137],[120,66,70,0.35570198730692315],[120,66,71,0.35613272556710734],[120,66,72,0.35656256891820176],[120,66,73,0.35699291627834384],[120,66,74,0.35742511855366266],[120,66,75,0.3578604752269593],[120,66,76,0.3583002308932106],[120,66,77,0.3587455717418888],[120,66,78,0.35919762198609095],[120,66,79,0.35965744023848867],[120,67,64,0.35038466992642536],[120,67,65,0.3508845830404374],[120,67,66,0.3513746414666674],[120,67,67,0.3518564498481559],[120,67,68,0.35233158422442085],[120,67,69,0.3528015889613191],[120,67,70,0.35326797362816564],[120,67,71,0.35373220982208897],[120,67,72,0.35419572793963205],[120,67,73,0.3546599138955808],[120,67,74,0.3551261057890601],[120,67,75,0.3555955905168455],[120,67,76,0.3560696003339274],[120,67,77,0.35654930936131723],[120,67,78,0.3570358300410915],[120,67,79,0.3575302095386827],[120,68,64,0.34759900385556947],[120,68,65,0.3481306308205701],[120,68,66,0.3486527014387446],[120,68,67,0.3491668063065634],[120,68,68,0.3496745074395413],[120,68,69,0.3501773352239411],[120,68,70,0.35067678531616764],[120,68,71,0.3511743154898337],[120,68,72,0.35167134243050446],[120,68,73,0.3521692384781026],[120,68,74,0.35266932831701636],[120,68,75,0.3531728856138571],[120,68,76,0.35368112960290177],[120,68,77,0.35419522161921263],[120,68,78,0.354716261579428],[120,68,79,0.3552452844102348],[120,69,64,0.3446589227952701],[120,69,65,0.3452218084870279],[120,69,66,0.34577547686012944],[120,69,67,0.3463215041102974],[120,69,68,0.34686143783980894],[120,69,69,0.3473967940308028],[120,69,70,0.3479290539667214],[120,69,71,0.34845966110186133],[120,69,72,0.34899001787904604],[120,69,73,0.34952148249539705],[120,69,74,0.35005536561625195],[120,69,75,0.3505929270371677],[120,69,76,0.3511353722940546],[120,69,77,0.3516838492214234],[120,69,78,0.35223944445874705],[120,69,79,0.3528031799049437],[120,70,64,0.34156524116780973],[120,70,65,0.34215891766137985],[120,70,66,0.3427437565209812],[120,70,67,0.3433213191919725],[120,70,68,0.3438931384786399],[120,70,69,0.34446071553886526],[120,70,70,0.3450255168273738],[120,70,71,0.34558897098754104],[120,70,72,0.34615246569176517],[120,70,73,0.3467173444303866],[120,70,74,0.34728490324920114],[120,70,75,0.34785638743550584],[120,70,76,0.3484329881527204],[120,70,77,0.3490158390235715],[120,70,78,0.34960601266183644],[120,70,79,0.3502045171526556],[120,71,64,0.33831887720128206],[120,71,65,0.33894286409182295],[120,71,66,0.3395584336313726],[120,71,67,0.34016713217010497],[120,71,68,0.3407704773343049],[120,71,69,0.34136995504214107],[120,71,70,0.3419670164684757],[120,71,71,0.3425630749586833],[120,71,72,0.34315950289149055],[120,71,73,0.34375762849081437],[120,71,74,0.3443587325866494],[120,71,75,0.3449640453249388],[120,71,76,0.3455747428264754],[120,71,77,0.3461919437948179],[120,71,78,0.3468167060732208],[120,71,79,0.3474500231505855],[120,72,64,0.33492085246281084],[120,72,65,0.3355746571999817],[120,72,66,0.33622050538161097],[120,72,67,0.3368599279228959],[120,72,68,0.3374944268971056],[120,72,69,0.3381254725721996],[120,72,70,0.33875450039694066],[120,72,71,0.3393829079364783],[120,72,72,0.3400120517574111],[120,72,73,0.34064324426230724],[120,72,74,0.34127775047373365],[120,72,75,0.3419167847677274],[120,72,76,0.3425615075567573],[120,72,77,0.34321302192215997],[120,72,78,0.34387237019604755],[120,72,79,0.3445405304926976],[120,73,64,0.3313722913369337],[120,73,65,0.33205540957240254],[120,73,66,0.33273107244680455],[120,73,67,0.33340079510582366],[120,73,68,0.3340660636999495],[120,73,69,0.3347283324416698],[120,73,70,0.3353890206126242],[120,73,71,0.3360495095206933],[120,73,72,0.33671113940703234],[120,73,73,0.3373752063030261],[120,73,74,0.33804295883722196],[120,73,75,0.338715594992166],[120,73,76,0.3393942588111975],[120,73,77,0.3400800370551814],[120,73,78,0.3407739558091789],[120,73,79,0.3414769770390653],[120,74,64,0.3276744204493147],[120,74,65,0.32838633639690723],[120,74,66,0.32909133843583444],[120,74,67,0.32979092561321066],[120,74,68,0.3304865677924792],[120,74,69,0.3311797027309017],[120,74,70,0.33187173310748014],[120,74,71,0.33256402350128506],[120,74,72,0.33325789732019984],[120,74,73,0.33395463368005684],[120,74,74,0.33465546423422277],[120,74,75,0.3353615699535586],[120,74,76,0.3360740778568079],[120,74,77,0.33679405769139553],[120,74,78,0.33752251856463455],[120,74,79,0.3382604055253516],[120,75,64,0.3238285680357149],[120,75,65,0.32456875484373404],[120,75,66,0.32530260928466326],[120,75,67,0.32603161398369085],[120,75,68,0.32675722215868985],[120,75,69,0.3274808547177176],[120,75,70,0.32820389730742683],[120,75,71,0.32892769731235827],[120,75,72,0.3296535608051273],[120,75,73,0.3303827494474765],[120,75,74,0.331116477342258],[120,75,75,0.33185590783626384],[120,75,76,0.33260215027396284],[120,75,77,0.33335625670212343],[120,75,78,0.33411921852532234],[120,75,79,0.33489196311234876],[120,76,64,0.31983616325611375],[120,76,65,0.32060408339136104],[120,76,66,0.3213662925938746],[120,76,67,0.3221242567494773],[120,76,68,0.3228794120779299],[120,76,69,0.3236331622501495],[120,76,70,0.32438687545682077],[120,76,71,0.3251418814283717],[120,76,72,0.32589946840632456],[120,76,73,0.32666088006599453],[120,76,74,0.3274273123906028],[120,76,75,0.32819991049671665],[120,76,76,0.32897976541107943],[120,76,77,0.32976791079880896],[120,76,78,0.33056531964296365],[120,76,79,0.33137290087548565],[120,77,64,0.31569873545417293],[120,77,65,0.31649384109720113],[120,77,66,0.3172838969106331],[120,77,67,0.31807035172961406],[120,77,68,0.3188546244294711],[120,77,69,0.3196381010623476],[120,77,70,0.32042213194572117],[120,77,71,0.3212080287027709],[120,77,72,0.3219970612546095],[120,77,73,0.32279045476434864],[120,77,74,0.32358938653306746],[120,77,75,0.32439498284759394],[120,77,76,0.3252083157801652],[120,77,77,0.32603039993994254],[120,77,78,0.32686218917638155],[120,77,79,0.327704573234467],[120,78,64,0.31141791336195646],[120,78,65,0.3122396468130839],[120,78,66,0.3130570309549774],[120,78,67,0.3138714972671301],[120,78,68,0.31468444694056436],[120,78,69,0.31549724803357737],[120,78,70,0.31631123257986116],[120,78,71,0.31712769364896587],[120,78,72,0.31794788235911964],[120,78,73,0.3187730048423729],[120,78,74,0.31960421916214166],[120,78,75,0.3204426321830526],[120,78,76,0.3212892963931613],[120,78,77,0.3221452066785173],[120,78,78,0.3230112970500766],[120,78,79,0.3238884373229719],[120,79,64,0.30699542424979154],[120,79,65,0.3078432183454087],[120,79,66,0.3086874027903366],[120,79,67,0.3095293914099807],[120,79,68,0.31037056737786894],[120,79,69,0.3112122803901923],[120,79,70,0.3120558437932188],[120,79,71,0.31290253166354776],[120,79,72,0.31375357584121677],[120,79,73,0.3146101629156324],[120,79,74,0.3154734311643962],[120,79,75,0.3163444674449299],[120,79,76,0.3172243040389706],[120,79,77,0.31811391544991163],[120,79,78,0.31901421515298645],[120,79,79,0.31992605229830895],[120,80,64,0.3024330930214827],[120,80,65,0.30330637156018125],[120,80,66,0.3041768189384748],[120,80,67,0.3050458310359858],[120,80,68,0.30591477268246137],[120,80,69,0.30678497485078904],[120,80,70,0.30765773180338746],[120,80,71,0.3085342981919398],[120,80,72,0.3094158861104833],[120,80,73,0.31030366210182136],[120,80,74,0.3111987441173363],[120,80,75,0.3121021984301019],[120,80,76,0.31301503650136797],[120,80,77,0.3139382118003923],[120,80,78,0.31487261657761895],[120,80,79,0.3158190785912142],[120,81,64,0.29773284125478167],[120,81,65,0.2986310194328354],[120,81,66,0.29952718343877166],[120,81,67,0.3004227109216686],[120,81,68,0.3013189480483306],[120,81,69,0.30221720671444996],[120,81,70,0.3031187617096537],[120,81,71,0.30402484783639694],[120,81,72,0.3049366569827201],[120,81,73,0.30585533514883456],[120,81,74,0.306781979427618],[120,81,75,0.307717634938912],[120,81,76,0.30866329171770174],[120,81,77,0.30961988155614806],[120,81,78,0.31058827479947293],[120,81,79,0.3115692770957091],[120,82,64,0.2928966861869876],[120,82,65,0.29381917104271693],[120,82,66,0.2947404968517128],[120,82,67,0.29566202275487274],[120,82,68,0.29658507594423467],[120,82,69,0.2975109488919519],[120,82,70,0.29844089653366446],[120,82,71,0.2993761334062295],[120,82,72,0.3003178307398252],[120,82,73,0.30126711350439495],[120,82,74,0.3022250574105107],[120,82,75,0.3031926858645515],[120,82,76,0.3041709668782727],[120,82,77,0.3051608099327412],[120,82,78,0.3061630627966319],[120,82,79,0.30717850829890236],[120,83,64,0.28792673964591153],[120,83,65,0.288872930512461],[120,83,66,0.28981885520682105],[120,83,67,0.290765854091385],[120,83,68,0.29171523507915015],[120,83,69,0.29266827088016734],[120,83,70,0.2936261962029033],[120,83,71,0.2945902049104756],[120,83,72,0.29556144713177707],[120,83,73,0.29654102632745416],[120,83,74,0.29752999631082255],[120,83,75,0.29852935822360943],[120,83,76,0.2995400574666042],[120,83,77,0.3005629805851881],[120,83,78,0.3015989521097424],[120,83,79,0.3026487313509477],[120,84,64,0.2828252069260959],[120,84,65,0.2837944958921542],[120,84,66,0.2847644488949234],[120,84,67,0.28573638725546074],[120,84,68,0.2867115993112044],[120,84,69,0.2876913376795529],[120,84,70,0.2886768164768766],[120,84,71,0.2896692084929205],[120,84,72,0.29066964232061665],[120,84,73,0.29167919944126797],[120,84,74,0.292698911265189],[120,84,75,0.2937297561276929],[120,84,76,0.2947726562405046],[120,84,77,0.2958284745985728],[120,84,78,0.29689801184227965],[120,84,79,0.2979820030750599],[120,85,64,0.2775943856101549],[120,85,65,0.2785861579881493],[120,85,66,0.27957956150461605],[120,85,67,0.28057589818411466],[120,85,68,0.28157643649996245],[120,85,69,0.28258240865459405],[120,85,70,0.2835950078158744],[120,85,71,0.28461538530932884],[120,85,72,0.2856446477663026],[120,85,73,0.28668385422801534],[120,85,74,0.2877340132055963],[120,85,75,0.28879607969598725],[120,85,76,0.28987095215379505],[120,85,77,0.29095946941906503],[120,85,78,0.29206240760097557],[120,85,79,0.29318047691746485],[120,86,64,0.27223666433548843],[120,86,65,0.27325029913678245],[120,86,66,0.27426656860318255],[120,86,67,0.2752867552154304],[120,86,68,0.27631210730231415],[120,86,69,0.27734383633745163],[120,86,70,0.278383114192555],[120,86,71,0.2794310703471379],[120,86,72,0.2804887890546783],[120,86,73,0.28155730646520255],[120,86,74,0.2826376077043783],[120,86,75,0.2837306239089979],[120,86,76,0.28483722921894045],[120,86,77,0.2859582377255803],[120,86,78,0.28709440037664224],[120,86,79,0.28824640183751626],[120,87,64,0.2667545215062511],[120,87,65,0.267789391922877],[120,87,66,0.2688279364618452],[120,87,67,0.26987141782076973],[120,87,68,0.27092106391184567],[120,87,69,0.27197806517469725],[120,87,70,0.27304357184623684],[120,87,71,0.2741186911874955],[120,87,72,0.27520448466744063],[120,87,73,0.276301965103742],[120,87,74,0.27741209376057774],[120,87,75,0.27853577740336066],[120,87,76,0.279673865310472],[120,87,77,0.2808271462419709],[120,87,78,0.28199634536528173],[120,87,79,0.28318212113786945],[120,88,64,0.26115052395043326],[120,88,65,0.26220599784288806],[120,88,66,0.2632662207252076],[120,88,67,0.26433243528073996],[120,88,68,0.2654058487415553],[120,88,69,0.26648763021699334],[120,88,70,0.2675789079797558],[120,88,71,0.2686807667095032],[120,88,72,0.2697942446939703],[120,88,73,0.2709203309875632],[120,88,74,0.2720599625275302],[120,88,75,0.27321402120758403],[120,88,76,0.27438333090906497],[120,88,77,0.2755686544896132],[120,88,78,0.27677069072935],[120,88,79,0.277990071234581],[120,89,64,0.25542732552234065],[120,89,65,0.256502765912977],[120,89,66,0.2575840650251736],[120,89,67,0.2586724453052045],[120,89,68,0.259769093050195],[120,89,69,0.2608751557520018],[120,89,70,0.2619917393991724],[120,89,71,0.2631199057369442],[120,89,72,0.2642606694852998],[120,89,73,0.26541499551503667],[120,89,74,0.26658379598194937],[120,89,75,0.2677679274189967],[120,89,76,0.26896818778654563],[120,89,77,0.2701853134806612],[120,89,78,0.27141997629943904],[120,89,79,0.2726727803673979],[120,90,64,0.2495876656502316],[120,90,65,0.2506824312217737],[120,90,66,0.25178419953910414],[120,90,67,0.2528941725970961],[120,90,68,0.2540135155120007],[120,90,69,0.25514335388028503],[120,90,70,0.25628477109608916],[120,90,71,0.25743880562726174],[120,90,72,0.2586064482499887],[120,90,73,0.2597886392419755],[120,90,74,0.2609862655342805],[120,90,75,0.2622001578216713],[120,90,76,0.26343108763159573],[120,90,77,0.2646797643517381],[120,90,78,0.2659468322161559],[120,90,79,0.2672328672500147],[120,91,64,0.24363436782930148],[120,91,65,0.24474781342801566],[120,91,66,0.24586943949239715],[120,91,67,0.24700042736022226],[120,91,68,0.24814192072999802],[120,91,69,0.2492950230343824],[120,91,70,0.25046079477276595],[120,91,71,0.25164025080297114],[120,91,72,0.25283435759208733],[120,91,73,0.2540440304263982],[120,91,74,0.25527013058050374],[120,91,75,0.2565134624455032],[120,91,76,0.2577747706163362],[120,91,77,0.2590547369382473],[120,91,78,0.260353977512374],[120,91,79,0.2616730396604734],[120,92,64,0.2375703380597494],[120,92,65,0.23870181520280037],[120,92,66,0.23984268360523178],[120,92,67,0.24099410375079902],[120,92,68,0.24215719769262153],[120,92,69,0.2433330464408055],[120,92,70,0.24452268730977278],[120,92,71,0.24572711122524915],[120,92,72,0.24694725999093323],[120,92,73,0.2481840235147981],[120,92,74,0.2494382369951345],[120,92,75,0.2507106780661948],[120,92,76,0.2520020639035393],[120,92,77,0.25331304828904955],[120,92,78,0.25464421863560815],[120,92,79,0.2559960929714596],[120,93,64,0.23139856323024188],[120,93,65,0.23254742061676484],[120,93,66,0.23370691248378614],[120,93,67,0.23487817827302646],[120,93,68,0.2360623181739603],[120,93,69,0.2372603905252599],[120,93,70,0.2384734091764897],[120,93,71,0.23970234081000658],[120,93,72,0.24094810222308524],[120,93,73,0.24221155757022153],[120,93,74,0.2434935155657224],[120,93,75,0.2447947266464421],[120,93,76,0.2461158800947661],[120,93,77,0.24745760112180654],[120,93,78,0.24882044791080965],[120,93,79,0.2502049086207899],[120,94,64,0.2251221094466316],[120,94,65,0.22628769347204888],[120,94,66,0.2274651869557882],[120,94,67,0.22865570811856273],[120,94,68,0.22986033507748613],[120,94,69,0.231080103260952],[120,94,70,0.2323160027843116],[120,94,71,0.2335689757863039],[120,94,72,0.2348399137262577],[120,94,73,0.23612965464201824],[120,94,74,0.23743898036871014],[120,94,75,0.23876861371818986],[120,94,76,0.24011921561929528],[120,94,77,0.24149138221885347],[120,94,78,0.24288564194344686],[120,94,79,0.24430245252195404],[120,95,64,0.21874412030576426],[120,95,65,0.21992577557887974],[120,95,66,0.22112064635023634],[120,95,67,0.22232982944973478],[120,95,68,0.22355438072310282],[120,95,69,0.22479531245982146],[120,95,70,0.22605359078240012],[120,95,71,0.22733013299695248],[120,95,72,0.2286258049050927],[120,95,73,0.22994141807710483],[120,95,74,0.23127772708649763],[120,95,75,0.23263542670579757],[120,95,76,0.23401514906368626],[120,95,77,0.23541746076344705],[120,95,78,0.23684285996271687],[120,95,79,0.23829177341456237],[120,96,64,0.21226781511469225],[120,96,65,0.213464884977091],[120,96,66,0.21467650672160174],[120,96,67,0.2159037556267981],[120,96,68,0.2171476650778298],[120,96,69,0.2184092240070076],[120,96,70,0.21968937429628746],[120,96,71,0.22098900814160477],[120,96,72,0.22230896537907963],[120,96,73,0.2236500307730449],[120,96,74,0.22501293126601085],[120,96,75,0.22639833319041613],[120,96,76,0.2278068394422757],[120,96,77,0.22923898661668551],[120,96,78,0.23069524210518422],[120,96,79,0.23217600115498888],[120,97,64,0.20569648705514162],[120,97,65,0.2069083141024265],[120,97,66,0.2081360590183659],[120,97,67,0.20938077537909572],[120,97,68,0.21064347392996807],[120,97,69,0.21192512003840247],[120,97,70,0.2132266311091886],[120,97,71,0.2145488739621907],[120,97,72,0.21589266217247344],[120,97,73,0.21725875337280254],[120,97,74,0.21864784651863278],[120,97,75,0.22006057911543464],[120,97,76,0.22149752440846687],[120,97,77,0.22295918853495994],[120,97,78,0.2244460076387057],[120,97,79,0.22595834494707367],[120,98,64,0.19903350129306147],[120,98,65,0.20025942789745654],[120,98,66,0.2015026671957168],[120,98,67,0.20276425091994565],[120,98,68,0.20404516700658099],[120,98,69,0.2053463570611202],[120,98,70,0.20666871378584972],[120,98,71,0.2080130783705284],[120,98,72,0.20938023784604454],[120,98,73,0.21077092240099893],[120,98,74,0.21218580266133003],[120,98,75,0.21362548693282696],[120,98,76,0.21509051840664317],[120,98,77,0.21658137232777136],[120,98,78,0.21809845312647852],[120,98,79,0.21964209151271824],[120,99,64,0.19228229303358552],[120,99,65,0.19352166186743663],[120,99,66,0.1947797662727379],[120,99,67,0.19605761600558502],[120,99,68,0.19735617603461436],[120,99,69,0.19867636401720834],[120,99,70,0.20001904773925844],[120,99,71,0.20138504251843453],[120,99,72,0.20277510857098185],[120,99,73,0.20418994834199572],[120,99,74,0.2056302037992922],[120,99,75,0.2070964536907201],[120,99,76,0.20858921076502485],[120,99,77,0.21010891895622863],[120,99,78,0.21165595053152192],[120,99,79,0.21323060320268733],[120,100,64,0.18544636552124905],[120,100,65,0.18669852008095122],[120,100,66,0.18797086033392923],[120,100,67,0.1892643739380137],[120,100,68,0.19058000274550163],[120,100,69,0.19191864029044664],[120,100,70,0.19328112924006136],[120,100,71,0.19466825881017896],[120,100,72,0.19608076214479686],[120,100,73,0.19751931365964975],[120,100,74,0.19898452634993496],[120,100,75,0.20047694906203012],[120,100,76,0.2019970637293173],[120,100,77,0.20354528257207727],[120,100,78,0.20512194526144795],[120,100,79,0.20672731604746897],[120,101,64,0.17852928798527856],[120,101,65,0.1797935731151622],[120,101,66,0.18107952047488213],[120,101,67,0.1823880955115586],[120,101,68,0.18372021682307388],[120,101,69,0.1850767536560532],[120,101,70,0.1864585233685102],[120,101,71,0.187866288857107],[120,101,72,0.18930075594904927],[120,101,73,0.190762570758565],[120,101,74,0.19225231700808854],[120,101,75,0.19377051331399192],[120,101,76,0.19531761043697632],[120,101,77,0.19689398849708628],[120,101,78,0.19849995415334326],[120,101,79,0.20013573774801935],[120,102,64,0.17153469353030443],[120,102,65,0.17281045594600764],[120,102,66,0.1741093826924528],[120,102,67,0.1754324169035023],[120,102,68,0.17678045379511936],[120,102,69,0.1781543381736418],[120,102,70,0.17955486190927805],[120,102,71,0.18098276137476832],[120,102,72,0.18243871484923624],[120,102,73,0.18392333988717724],[120,102,74,0.1854371906527087],[120,102,75,0.18698075521891772],[120,102,76,0.1885544528324244],[120,102,77,0.19015863114312376],[120,102,78,0.1917935633990978],[120,102,79,0.19345944560672312],[120,103,64,0.16446627697232352],[120,103,65,0.1657528657831842],[120,103,66,0.1670641457192676],[120,103,67,0.1684010375086109],[120,103,68,0.1697644128684242],[120,103,69,0.1711550920232645],[120,103,70,0.1725738411889821],[120,103,71,0.1740213700223905],[120,103,72,0.17549832903667822],[120,103,73,0.17700530698251116],[120,103,74,0.17854282819495026],[120,103,75,0.1801113499060218],[120,103,76,0.1817112595230574],[120,103,77,0.18334287187276294],[120,103,78,0.18500642641101583],[120,103,79,0.18670208439840952],[120,104,64,0.1573277926197344],[120,104,65,0.15862455984972984],[120,104,66,0.15994756880237687],[120,104,67,0.16129771771737583],[120,104,68,0.16267585470711643],[120,104,69,0.16408277528435694],[120,104,70,0.16551921985622808],[120,104,71,0.1669858711845132],[120,104,72,0.16848335181222557],[120,104,73,0.17001222145642708],[120,104,74,0.17157297436741903],[120,104,75,0.1731660366541357],[120,104,76,0.174791763575863],[120,104,77,0.17645043680023959],[120,104,78,0.17814226162753827],[120,104,79,0.17986736418124977],[120,105,64,0.1501230519997958],[120,105,65,0.15142935310656075],[120,105,66,0.15276346942641317],[120,105,67,0.1541262766383273],[120,105,68,0.15551859915466043],[120,105,69,0.1569412076579404],[120,105,70,0.15839481660453258],[120,105,71,0.15988008169513623],[120,105,72,0.1613975973121291],[120,105,73,0.16294789392370818],[120,105,74,0.16453143545495463],[120,105,75,0.16614861662565417],[120,105,76,0.16779976025499577],[120,105,77,0.16948511453310505],[120,105,78,0.17120485025941207],[120,105,79,0.1729590580478731],[120,106,64,0.14285592153033977],[120,106,65,0.14417111592179355],[120,106,66,0.14551572098107923],[120,106,67,0.14689058976424452],[120,106,68,0.1482965228993368],[120,106,69,0.14973426613190782],[120,106,70,0.15120450783794953],[120,106,71,0.15270787650420975],[120,106,72,0.15424493817591167],[120,106,73,0.15581619387181767],[120,106,74,0.1574220769667723],[120,106,75,0.15906295054155145],[120,106,76,0.16073910470014197],[120,106,77,0.16245075385440866],[120,106,78,0.16419803397614657],[120,106,79,0.16598099981654124],[120,107,64,0.13553032013654764],[120,107,65,0.13685377168466117],[120,107,66,0.13820825037278295],[120,107,67,0.13959458658207718],[120,107,68,0.14101355708301622],[120,107,69,0.14246588258920934],[120,107,70,0.1439522252792147],[120,107,71,0.14547318628628259],[120,107,72,0.14702930315605162],[120,107,73,0.14862104727214248],[120,107,74,0.15024882124978095],[120,107,75,0.15191295629727813],[120,107,76,0.15361370954549153],[120,107,77,0.15535126134522637],[120,107,78,0.15712571253257185],[120,107,79,0.15893708166219556],[120,108,64,0.12815021681315875],[120,108,65,0.12948129436438904],[120,108,66,0.13084503558077737],[120,108,67,0.13224224812694185],[120,108,68,0.13367368485359316],[120,108,69,0.13514004135929752],[120,108,70,0.13664195352077296],[120,108,71,0.13817999499166733],[120,108,72,0.13975467466983832],[120,108,73,0.14136643413308125],[120,108,74,0.1430156450434354],[120,108,75,0.1447026065198987],[120,108,76,0.14642754247967155],[120,108,77,0.14819059894789138],[120,108,78,0.14999184133585186],[120,108,79,0.15183125168773165],[120,109,64,0.12071962813193005],[120,109,65,0.12205770601385663],[120,109,66,0.1234301031576357],[120,109,67,0.12483760448001652],[120,109,68,0.12628093886090197],[120,109,69,0.12776077671265879],[120,109,70,0.12927772751850886],[120,109,71,0.13083233733994992],[120,109,72,0.1324250862932279],[120,109,73,0.13405638599480335],[120,109,74,0.1357265769759483],[120,109,75,0.137435926066296],[120,109,76,0.13918462374646978],[120,109,77,0.14097278146975234],[120,109,78,0.14280042895278572],[120,109,79,0.14466751143532974],[120,110,64,0.11324261569415706],[120,110,65,0.11458707421784597],[120,110,66,0.11596752567386281],[120,110,67,0.11738473221013995],[120,110,68,0.11883939869592264],[120,110,69,0.12033217029823723],[120,110,70,0.12186363002799167],[120,110,71,0.12343429625564967],[120,110,72,0.12504462019650348],[120,110,73,0.1266949833654883],[120,110,74,0.1283856950016734],[120,110,75,0.13011698946225247],[120,110,76,0.13188902358615995],[120,110,77,0.13370187402727468],[120,110,78,0.13555553455720076],[120,110,79,0.13744991333765416],[120,111,64,0.10572328352862903],[120,111,65,0.10707350948625921],[120,111,66,0.10846141910702106],[120,111,67,0.10988775175949267],[120,111,68,0.11135318827365209],[120,111,69,0.1128583485241253],[120,111,70,0.11440378898360698],[120,111,71,0.11599000024640338],[120,111,72,0.11761740452211678],[120,111,73,0.11928635309941538],[120,111,74,0.12099712378002764],[120,111,75,0.12274991828277748],[120,111,76,0.12454485961779349],[120,111,77,0.12638198943084644],[120,111,78,0.1282612653178124],[120,111,79,0.13018255810928447],[120,112,64,0.09816577543483757],[120,112,65,0.09952116259211552],[120,112,66,0.10091594017518862],[120,112,67,0.10235082477317353],[120,112,68,0.10382647315945676],[120,112,69,0.10534347988133758],[120,112,70,0.10690237482039106],[120,112,71,0.1085036207234919],[120,112,72,0.11014761070452506],[120,112,73,0.11183466571672313],[120,112,74,0.11356503199577217],[120,112,75,0.11533887847350016],[120,112,76,0.1171562941622814],[120,112,77,0.11901728551011426],[120,112,78,0.12092177372636448],[120,112,79,0.12286959207820208],[120,113,64,0.09057427227124049],[120,113,65,0.09193422185413674],[120,113,66,0.09333528361454968],[120,113,67,0.09477815137247952],[120,113,68,0.09626345783871099],[120,113,69,0.09779177221047597],[120,113,70,0.09936359773837744],[120,113,71,0.1009793692645139],[120,113,72,0.10263945073183223],[120,113,73,0.10434413266464548],[120,113,74,0.1060936296204621],[120,113,75,0.10788807761293584],[120,113,76,0.10972753150607356],[120,113,77,0.11161196237965587],[120,113,78,0.1135412548658643],[120,113,79,0.11551520445714236],[120,114,64,0.08295298918898775],[120,114,65,0.08431691036432426],[120,114,66,0.08572367940152842],[120,114,67,0.08717396737229133],[120,114,68,0.08866838293012752],[120,114,69,0.09020746991168499],[120,114,70,0.09179170490985317],[120,114,71,0.09342149481860995],[120,114,72,0.09509717434963494],[120,114,73,0.09681900352062489],[120,114,74,0.09858716511545923],[120,114,75,0.10040176211602386],[120,114,76,0.10226281510583002],[120,114,77,0.10417025964538462],[120,114,78,0.10612394361930472],[120,114,79,0.10812362455520363],[120,115,64,0.07530617281076751],[120,115,65,0.07667348316018568],[120,115,66,0.07808538991911929],[120,115,67,0.07954254144222422],[120,115,68,0.08104552234243712],[120,115,69,0.08259485109756187],[120,115,70,0.0841909776291907],[120,115,71,0.08583428085389783],[120,115,72,0.08752506620673467],[120,115,73,0.08926356313696382],[120,115,74,0.09104992257617606],[120,115,75,0.09288421437860195],[120,115,76,0.09476642473375402],[120,115,77,0.0966964535513542],[120,115,78,0.09867411181854113],[120,115,79,0.10069911892938471],[120,116,64,0.06763809835503343],[120,116,65,0.06900822434187348],[120,116,66,0.07042470706767778],[120,116,67,0.0718881722118056],[120,116,68,0.07339918037467857],[120,116,69,0.07495822468927815],[120,116,70,0.07656572840551079],[120,116,71,0.07822204244737696],[120,116,72,0.07992744294297527],[120,116,73,0.08168212872727443],[120,116,74,0.08348621881780471],[120,116,75,0.08533974986307263],[120,116,76,0.08724267356383952],[120,116,77,0.08919485406721755],[120,116,78,0.09119606533357849],[120,116,79,0.09324598847630017],[120,117,64,0.05995306670525885],[120,117,65,0.06132544413388136],[120,117,66,0.06274594931981764],[120,117,67,0.06421518531932507],[120,117,68,0.06573368875974683],[120,117,69,0.06730192745556168],[120,117,70,0.06892029799782612],[120,117,71,0.0705891233169535],[120,117,72,0.0723086502188543],[120,117,73,0.07407904689437544],[120,117,74,0.0759004004021856],[120,117,75,0.07777271412491471],[120,117,76,0.07969590519868602],[120,117,77,0.08166980191599377],[120,117,78,0.08369414110192269],[120,117,79,0.08576856546373501],[120,118,64,0.052255401424641024],[120,118,65,0.053629475891719736],[120,118,66,0.0550534587198358],[120,118,67,0.056527930404778104],[120,118,68,0.058053403651619706],[120,118,69,0.05963032099495946],[120,118,70,0.06125905239308632],[120,118,71,0.06293989279600098],[120,118,72,0.06467305968732878],[120,118,73,0.06645869060005383],[120,118,74,0.0682968406062272],[120,118,75,0.07018747978045414],[120,118,76,0.07213049063729765],[120,118,77,0.07412566554255617],[120,118,78,0.07617270409840698],[120,118,79,0.07827121050244334],[120,119,64,0.044549445716048575],[120,119,65,0.045924673053365894],[120,119,66,0.04735159782745946],[120,119,67,0.04883077804670061],[120,119,68,0.05036270255605685],[120,119,69,0.05194778866117711],[120,119,70,0.053586379726918765],[120,119,71,0.055278742750257626],[120,119,72,0.05702506590760825],[120,119,73,0.05882545607648865],[120,119,74,0.06067993633168117],[120,119,75,0.06258844341569386],[120,119,76,0.06455082518366151],[120,119,77,0.06656683802264146],[120,119,78,0.06863614424529663],[120,119,79,0.07075830945799666],[120,120,64,0.03683955932702715],[120,120,65,0.03821540603530138],[120,120,66,0.039644746605730474],[120,120,67,0.04112811664270427],[120,120,68,0.04266598120458864],[120,120,69,0.044258732431306624],[120,120,70,0.045906687146879455],[120,120,71,0.04761008443687004],[120,120,72,0.049369083200753394],[120,120,73,0.05118375967915101],[120,120,74,0.05305410495607926],[120,120,75,0.054980022436015685],[120,120,76,0.05696132529592496],[120,120,77,0.05899773391219526],[120,120,78,0.061088873262483745],[120,120,79,0.06323427030249468],[120,121,64,0.02913011540024585],[120,121,65,0.03050605907352183],[120,121,66,0.03193729925340827],[120,121,67,0.03342434923409959],[120,121,68,0.034967650372173475],[120,121,69,0.03656756971732911],[120,121,70,0.03822439761859725],[120,121,71,0.03993834530596779],[120,121,72,0.04170954244745878],[120,121,73,0.04353803468156253],[120,121,74,0.04542378112522183],[120,121,75,0.04736665185713673],[120,121,76,0.04936642537654562],[120,121,77,0.05142278603743233],[120,121,78,0.05353532145815382],[120,121,79,0.05570351990651745],[120,122,64,0.021425497269194682],[120,122,65,0.022801027009326624],[120,122,66,0.024233660981703986],[120,122,67,0.02572389027441424],[120,122,68,0.0272721326383365],[120,122,69,0.02887873012069886],[120,122,70,0.030543946674620737],[120,122,71,0.03226796574457974],[120,122,72,0.03405088782783244],[120,122,73,0.03589272801172111],[120,122,74,0.03779341348702103],[120,122,75,0.039752781037128315],[120,122,76,0.04177057450323235],[120,122,77,0.04384644222542333],[120,122,78,0.04597993445973281],[120,122,79,0.048170500771131275],[120,123,64,0.013730095198934367],[120,123,65,0.015104712019692379],[120,123,66,0.016538244735143426],[120,123,67,0.018031162341609397],[120,123,68,0.019583859091590494],[120,123,69,0.021196652129813143],[120,123,70,0.02286977910577015],[120,123,71,0.024603395762691715],[120,123,72,0.026397573502973448],[120,123,73,0.02825229692999892],[120,123,74,0.03016746136650672],[120,123,75,0.03214287034930485],[120,123,76,0.03417823310047374],[120,123,77,0.03627316197501296],[120,123,78,0.038427169884922896],[120,123,79,0.04063966769975269],[120,124,64,0.006048303072289984],[120,124,65,0.007421520292619166],[120,124,66,0.008855467856953958],[120,124,67,0.010350592794384605],[120,124,68,0.011907265977530057],[120,124,69,0.013525779760756085],[120,124,70,0.01520634559538514],[120,124,71,0.01694909162183822],[120,124,72,0.01875406023873749],[120,124,73,0.02062120564890013],[120,124,74,0.022550391382381907],[120,124,75,0.024541387796367164],[120,124,76,0.026593869552049454],[120,124,77,0.028707413068455923],[120,124,78,0.03088149395320905],[120,124,79,0.033115484410256135],[120,125,64,-0.0016154849787048953],[120,125,65,-2.4414135274036797E-4],[120,125,66,0.0011897486987816897],[120,125,67,0.002686610372378939],[120,125,68,0.004246791290406282],[120,125,69,0.0058705591411277736],[120,125,70,0.007558099296274934],[120,125,71,0.009309512406036169],[120,125,72,0.011124811971499615],[120,125,73,0.013003921894487735],[120,125,74,0.014946674004935101],[120,125,75,0.016952805565610518],[120,125,76,0.019021956754324387],[120,125,77,0.021153668123579217],[120,125,78,0.023347378037650968],[120,125,79,0.025602420087135314],[120,126,64,-0.009256877996311585],[120,126,65,-0.007887868901372108],[120,126,66,-0.006454496825463729],[120,126,67,-0.004956358259931681],[120,126,68,-0.0033931286920175774],[120,126,69,-0.0017645649632455074],[120,126,70,-7.050764982641233E-5],[120,126,71,0.001689116534857149],[120,126,72,0.0035142923157122086],[120,126,73,0.0054049134092799545],[120,126,74,0.007360780055114868],[120,126,75,0.009381596524999813],[120,126,76,0.011466968610137185],[120,126,77,0.013616401086275154],[120,126,78,0.01582929515675635],[120,126,79,0.018104945873522515],[120,127,64,-0.016871491675147288],[120,127,65,-0.015505264632715343],[120,127,66,-0.014072858741239092],[120,127,67,-0.012573892025246391],[120,127,68,-0.011008062929936502],[120,127,69,-0.009375152678322674],[120,127,70,-0.0076750276499093495],[120,127,71,-0.005907641780962369],[120,127,72,-0.004073038986345812],[120,127,73,-0.0021713556029918646],[120,127,74,-2.028228548470734E-4],[120,127,75,0.0018322306605018657],[120,127,76,0.003933376463666094],[120,127,77,0.006100083663712508],[120,127,78,0.00833171640683239],[120,127,79,0.010627531303450732],[120,128,64,-0.02445495189499336],[120,128,65,-0.023091940666199684],[120,128,66,-0.021660936570670142],[120,128,67,-0.02016157900155835],[120,128,68,-0.018593589199493943],[120,128,69,-0.016956772608779147],[120,128,70,-0.015251021254637176],[120,128,71,-0.013476316141574185],[120,128,72,-0.011632729672826247],[120,128,73,-0.009720428090957633],[120,128,74,-0.007739673939455183],[120,128,75,-0.005690828545520832],[120,128,76,-0.003574354523920298],[120,128,77,-0.0013908183019282205],[120,128,78,8.59107334614917E-4],[120,128,79,0.0031746406741705036],[120,129,64,-0.03200289830855285],[120,129,65,-0.030643522562193937],[120,129,66,-0.02921434294572056],[120,129,67,-0.027715020046572336],[120,129,68,-0.026145297727489303],[120,129,69,-0.024505005482050146],[120,129,70,-0.022794060810784722],[120,129,71,-0.021012471617925632],[120,129,72,-0.01916033862876887],[120,129,73,-0.017237857827711256],[120,129,74,-0.015245322916806248],[120,129,75,-0.013183127795044824],[120,129,76,-0.011051769058215033],[120,129,77,-0.008851848519383032],[120,129,78,-0.00658407575001152],[120,129,79,-0.004249270641675462],[120,130,64,-0.03951098798376351],[120,130,65,-0.03815565297798773],[120,130,66,-0.0367287072768423],[120,130,67,-0.03522983247803735],[120,130,68,-0.033658794882413745],[120,130,69,-0.03201544784910282],[120,130,70,-0.030299734170787462],[120,130,71,-0.028511688469135987],[120,130,72,-0.026651439610372085],[120,130,73,-0.024719213141053853],[120,130,74,-0.022715333743899113],[120,130,75,-0.020640227713867976],[120,130,76,-0.01849442545435309],[120,130,77,-0.01627856399352179],[120,130,78,-0.01399338952082485],[120,130,79,-0.011639759943634087],[120,131,64,-0.04697489910086283],[120,131,65,-0.045623995378989646],[120,131,66,-0.04419967947729564],[120,131,67,-0.04270165381018298],[120,131,68,-0.04112970692200635],[120,131,69,-0.03948371584212329],[120,131,70,-0.03776364845958502],[120,131,71,-0.035969565917532864],[120,131,72,-0.03410162502726888],[120,131,73,-0.03216008070206988],[120,131,74,-0.030145288410585502],[120,131,75,-0.02805770665002738],[120,131,76,-0.02589789943900256],[120,131,77,-0.02366653883003611],[120,131,78,-0.021364407441794464],[120,131,79,-0.018992401010973436],[120,132,64,-0.05439033470439558],[120,132,65,-0.0530442378053394],[120,132,66,-0.051622933743334154],[120,132,67,-0.05012614554645467],[120,132,68,-0.04855368379752378],[120,132,69,-0.046905448989318366],[120,132,70,-0.045181433898958234],[120,132,71,-0.04338172598154222],[120,132,72,-0.04150650978299952],[120,132,73,-0.03955606937222811],[120,132,74,-0.03753079079235755],[120,132,75,-0.03543116453134565],[120,132,76,-0.03325778801176027],[120,132,77,-0.031011368099793768],[120,132,78,-0.028692723633518158],[120,132,79,-0.026302787970348462],[120,133,64,-0.06175302650978154],[120,133,65,-0.06041209669355074],[120,133,66,-0.05899417238987281],[120,133,67,-0.057498997028163856],[120,133,68,-0.055926403014341264],[120,133,69,-0.054276314086442956],[120,133,70,-0.05254874768897344],[120,133,71,-0.05074381736604838],[120,133,72,-0.04886173517330139],[120,133,73,-0.046902814108625956],[120,133,74,-0.044867470561588685],[120,133,75,-0.04275622678172608],[120,133,76,-0.04056971336557458],[120,133,77,-0.03830867176247876],[120,133,78,-0.03597395679919235],[120,133,79,-0.03356653922323061],[120,134,64,-0.06905873876463509],[120,134,65,-0.06772332075337417],[120,134,66,-0.06630912974182657],[120,134,67,-0.06481592933924307],[120,134,68,-0.0632435735490745],[120,134,69,-0.06159200912524743],[120,134,70,-0.059861277946724356],[120,134,71,-0.05805151941041509],[120,134,72,-0.05616297284240368],[120,134,73,-0.05419597992756686],[120,134,74,-0.05215098715741695],[120,134,75,-0.05002854829638348],[120,134,76,-0.047829326866380084],[120,134,77,-0.0455540986497075],[120,134,78,-0.04320375421030054],[120,134,79,-0.04077930143328279],[120,135,64,-0.07630327216502575],[120,135,65,-0.07497369490007189],[120,135,66,-0.07356357608131348],[120,135,67,-0.07207269926730053],[120,135,68,-0.07050093982341377],[120,135,69,-0.06884826727903515],[120,135,70,-0.06711474770256687],[120,135,71,-0.06530054609435931],[120,135,72,-0.06340592879751816],[120,135,73,-0.061431265926661704],[120,135,74,-0.05937703381446535],[120,135,75,-0.05724381747620322],[120,135,76,-0.05503231309213763],[120,135,77,-0.052743330507806],[120,135,78,-0.0503777957522088],[120,135,79,-0.047936753573871616],[120,136,64,-0.08348246782629642],[120,136,65,-0.08215904424172005],[120,136,66,-0.08075332165033555],[120,136,67,-0.07926510332058345],[120,136,68,-0.07769428573428583],[120,136,69,-0.07604086094494544],[120,136,70,-0.0743049189534557],[120,136,71,-0.0724866501012914],[120,136,72,-0.0705863474811429],[120,136,73,-0.06860440936507062],[120,136,74,-0.0665413416500098],[120,136,75,-0.06439776032084521],[120,136,76,-0.06217439393089741],[120,136,77,-0.059872086099873933],[120,136,78,-0.057491798029292274],[120,136,79,-0.0550346110353388],[120,137,64,-0.09059221130864359],[120,137,65,-0.08927523812174054],[120,137,66,-0.08787422070914341],[120,137,67,-0.08638898180105947],[120,137,68,-0.08481943874054798],[120,137,69,-0.08316560584316401],[120,137,70,-0.08142759677359157],[120,137,71,-0.07960562693932693],[120,137,72,-0.0777000159013832],[120,137,73,-0.07571118980208691],[120,137,74,-0.07363968380980201],[120,137,75,-0.07148614458079361],[120,137,76,-0.06925133273808137],[120,137,77,-0.0669361253673304],[120,137,78,-0.06454151852978651],[120,137,79,-0.06206862979222538],[120,138,64,-0.09762843669762278],[120,138,65,-0.09631819421683208],[120,138,66,-0.09492217565044814],[120,138,67,-0.09344022293378029],[120,138,68,-0.09187227400637799],[120,138,69,-0.09021836517323134],[120,138,70,-0.08847863348254392],[120,138,71,-0.08665331912013607],[120,138,72,-0.08474276782045087],[120,138,73,-0.08274743329423229],[120,138,74,-0.08066787967271316],[120,138,75,-0.07850478396852156],[120,138,76,-0.07625893855316235],[120,138,77,-0.07393125365111075],[120,138,78,-0.07152275985053735],[120,138,79,-0.06903461063062521],[120,139,64,-0.10458713073920645],[120,139,65,-0.10328388268991906],[120,139,66,-0.10189314116910497],[120,139,67,-0.10041476705214891],[120,139,68,-0.09884871860098665],[120,139,69,-0.09719505382706661],[120,139,70,-0.09545393287047033],[120,139,71,-0.0936256203952529],[120,139,72,-0.09171048800097292],[120,139,73,-0.08970901665048292],[120,139,74,-0.08762179911381829],[120,139,75,-0.08544954242839176],[120,139,76,-0.08319307037535117],[120,139,77,-0.08085332597213879],[120,139,78,-0.0784313739812682],[120,139,79,-0.07592840343528184],[120,140,64,-0.11146433702971525],[120,140,65,-0.1101683303984452],[120,140,66,-0.10878312848759375],[120,140,67,-0.10730861083941756],[120,140,68,-0.10574475575497388],[120,140,69,-0.10409164265903548],[120,140,70,-0.10234945448075883],[120,140,71,-0.10051848005016872],[120,140,72,-0.09859911651042619],[120,140,73,-0.0965918717459534],[120,140,74,-0.09449736682625065],[120,140,75,-0.0923163384656166],[120,140,76,-0.09004964149862449],[120,140,77,-0.0876982513713962],[120,140,78,-0.08526326664868933],[120,140,79,-0.08274591153675914],[120,141,64,-0.11825616026037711],[120,141,65,-0.11696762515776682],[120,141,66,-0.11558820963704819],[120,141,67,-0.11411781162616796],[120,141,68,-0.11255642917308373],[120,141,69,-0.1109041628128139],[120,141,70,-0.10916121794984723],[120,141,71,-0.1073279072559652],[120,141,72,-0.10540465308345748],[120,141,73,-0.10339198989379061],[120,141,74,-0.1012905667015751],[120,141,75,-0.09910114953403637],[120,141,76,-0.09682462390584468],[120,141,77,-0.09446199730934568],[120,141,78,-0.09201440172020647],[120,141,79,-0.08948309611843819],[120,142,64,-0.1249587705168399],[120,142,65,-0.1236779200599658],[120,142,66,-0.1223045217941583],[120,142,67,-0.12083849174409933],[120,142,68,-0.1192798474036818],[120,142,69,-0.1176287101053729],[120,142,70,-0.11588530740454062],[120,142,71,-0.11404997547880835],[120,142,72,-0.11212316154240898],[120,142,73,-0.11010542627560327],[120,142,74,-0.1079974462690072],[120,142,75,-0.10580001648303139],[120,142,76,-0.10351405272229186],[120,142,77,-0.1011405941250273],[120,142,78,-0.09868080566754711],[120,142,79,-0.09613598068365992],[120,143,64,-0.13156840763325206],[120,143,65,-0.1302954378477028],[120,143,66,-0.12892827167356546],[120,143,67,-0.12746684293573962],[120,143,68,-0.1259111882645736],[120,143,69,-0.12426144946769846],[120,143,70,-0.12251787591644803],[120,143,71,-0.12068082694692261],[120,143,72,-0.11875077427566849],[120,143,73,-0.11672830443004123],[120,143,74,-0.11461412119309367],[120,143,75,-0.11240904806319396],[120,143,76,-0.1101140307282319],[120,143,77,-0.10773013955445132],[120,143,78,-0.10525857208992573],[120,143,79,-0.10270065558263863],[120,144,64,-0.1380813856011036],[120,144,65,-0.1368164753433001],[120,144,66,-0.13545573997593463],[120,144,67,-0.13399913082027237],[120,144,68,-0.13244670332535013],[120,144,69,-0.13079861944244053],[120,144,70,-0.12905515001372447],[120,144,71,-0.12721667717523366],[120,144,72,-0.12528369677403428],[120,144,73,-0.12325682079971878],[120,144,74,-0.12113677983004689],[120,144,75,-0.11892442549094306],[120,144,76,-0.11662073293070652],[120,144,77,-0.11422680330847146],[120,144,78,-0.11174386629693789],[120,144,79,-0.10917328259932868],[120,145,64,-0.14449409703298233],[120,145,65,-0.14323740793320783],[120,145,66,-0.1418832858918676],[120,145,67,-0.14043169941563216],[120,145,68,-0.1388827224464222],[120,145,69,-0.13723653673864622],[120,145,70,-0.13549343425027804],[120,145,71,-0.1336538195478384],[120,145,72,-0.13171821222524993],[120,145,73,-0.12968724933663345],[120,145,74,-0.12756168784288457],[120,145,75,-0.1253424070722422],[120,145,76,-0.1230304111946996],[120,145,77,-0.12062683171029998],[120,145,78,-0.11813292995133606],[120,145,79,-0.1155500995984059],[120,146,64,-0.15080301768091453],[120,146,65,-0.14955469410752753],[120,146,66,-0.14820735166131938],[120,146,67,-0.14676097571654134],[120,146,68,-0.14521565837440786],[120,146,69,-0.14357160084324339],[120,146,70,-0.141829115832108],[120,146,71,-0.13998862995796757],[120,146,72,-0.13805068616637872],[120,146,73,-0.13601594616575374],[120,146,74,-0.13388519287505019],[120,146,75,-0.1316593328850879],[120,146,76,-0.1293393989333539],[120,146,77,-0.12692655239232875],[120,146,78,-0.12442208577135938],[120,146,79,-0.1218274252320285],[120,147,64,-0.15700471100945845],[120,147,65,-0.15576488005475497],[120,147,66,-0.15442446718869007],[120,147,67,-0.15298347432865322],[120,147,68,-0.151442011394043],[120,147,69,-0.14980029868944644],[120,147,70,-0.14805866930094436],[120,147,71,-0.1462175715056131],[120,147,72,-0.1442775711941845],[120,147,73,-0.142239354306941],[120,147,74,-0.14010372928267623],[120,147,75,-0.13787162952093823],[120,147,76,-0.13554411585740433],[120,147,77,-0.13312237905242919],[120,147,78,-0.13060774229278593],[120,147,79,-0.12800166370655175],[120,148,64,-0.16309583282371054],[120,148,65,-0.16186460431190797],[120,148,66,-0.16053125471374952],[120,148,67,-0.1590958021589629],[120,148,68,-0.15755837403677653],[120,148,69,-0.15591920938224235],[120,148,70,-0.15417866127534774],[120,148,71,-0.15233719925297595],[120,148,72,-0.15039541173368265],[120,148,73,-0.14835400845536584],[120,148,74,-0.146213822925654],[120,148,75,-0.14397581488523747],[120,148,76,-0.14164107278398375],[120,148,77,-0.13921081626988718],[120,148,78,-0.13668639869086308],[120,148,79,-0.13406930960934726],[120,149,64,-0.16907313595190365],[120,149,65,-0.16785060246971462],[120,149,66,-0.16652443353807544],[120,149,67,-0.16509466316216537],[120,149,68,-0.16356143584572536],[120,149,69,-0.1619250089806371],[120,149,70,-0.16018575524894885],[120,149,71,-0.15834416503741833],[120,149,72,-0.15640084886453498],[120,149,73,-0.15435653982009978],[120,149,74,-0.15221209601718877],[120,149,75,-0.14996850305672227],[120,149,76,-0.1476268765044878],[120,149,77,-0.14518846438065391],[120,149,78,-0.14265464966180064],[120,149,79,-0.14002695279541533],[120,150,64,-0.17493347498275302],[120,150,65,-0.17371971193301838],[120,150,66,-0.17240082480716357],[120,150,67,-0.17097686314311555],[120,150,68,-0.16944798819715012],[120,150,69,-0.1678144753368166],[120,150,70,-0.16607671644598276],[120,150,71,-0.1642352223420721],[120,150,72,-0.16229062520544868],[120,150,73,-0.16024368102103637],[120,150,74,-0.15809527203199214],[120,150,75,-0.1558464092056604],[120,150,76,-0.1534982347116477],[120,150,77,-0.15105202441206977],[120,150,78,-0.14850919036398003],[120,150,79,-0.14587128333394173],[120,151,64,-0.18067381105771685],[120,151,65,-0.17946887673656964],[120,151,66,-0.17815735634836793],[120,151,67,-0.1767393146155578],[120,151,68,-0.1752149291786136],[120,151,69,-0.1735844929923912],[120,151,70,-0.17184841673428786],[120,151,71,-0.17000723122427208],[120,151,72,-0.1680615898567439],[120,151,73,-0.1660122710443086],[120,151,74,-0.16386018067328745],[120,151,75,-0.161606354571189],[120,151,76,-0.15925196098598227],[120,151,77,-0.15679830307722353],[120,151,78,-0.15424682141904356],[120,151,79,-0.15159909651496295],[120,152,64,-0.18629121671784044],[120,152,65,-0.18509515241587016],[120,152,66,-0.18379106756435326],[120,152,67,-0.18237904171679697],[120,152,68,-0.1808592685234962],[120,152,69,-0.1792320581313933],[120,152,70,-0.17749783959543508],[120,152,71,-0.17565716330148573],[120,152,72,-0.1737107034007629],[120,152,73,-0.17165926025587586],[120,152,74,-0.1695037628982876],[120,152,75,-0.16724527149742785],[120,152,76,-0.1648849798412998],[120,152,77,-0.16242421782862437],[120,152,78,-0.15986445397254134],[120,152,79,-0.15720729791581867],[120,153,64,-0.1917828808053722],[120,153,65,-0.19059571093325522],[120,153,66,-0.18929911438223268],[120,153,67,-0.18789318517848852],[120,153,68,-0.18637813260204805],[120,153,69,-0.18475428359021007],[120,153,70,-0.18302208515217377],[120,153,71,-0.18118210679491709],[120,153,72,-0.17923504296029935],[120,153,73,-0.17718171547345818],[120,153,74,-0.1750230760023348],[120,153,75,-0.1727602085285418],[120,153,76,-0.17039433182942554],[120,153,77,-0.167926801971363],[120,153,78,-0.16535911481431043],[120,153,79,-0.16269290852756368],[120,154,64,-0.19714611342025778],[120,154,65,-0.19596784565933068],[120,154,66,-0.1946787742585132],[120,154,67,-0.1932790073536711],[120,154,68,-0.1917687694690965],[120,154,69,-0.190148403924568],[120,154,70,-0.18841837525330996],[120,154,71,-0.18657927163091015],[120,154,72,-0.1846318073151676],[120,154,73,-0.18257682509693818],[120,154,74,-0.18041529876181917],[120,154,75,-0.17814833556287824],[120,154,76,-0.17577717870428422],[120,154,77,-0.17330320983587932],[120,154,78,-0.1707279515587088],[120,154,79,-0.16805306994146574],[120,155,64,-0.20237835093125334],[120,155,65,-0.20120897640949187],[120,155,66,-0.19992745123957478],[120,155,67,-0.19853389729976612],[120,155,68,-0.1970285539681378],[120,155,69,-0.19541178053329955],[120,155,70,-0.1936840586157451],[120,155,71,-0.1918459945998715],[120,155,72,-0.18989832207664126],[120,155,73,-0.18784190429695968],[120,155,74,-0.18567773663560172],[120,155,75,-0.18340694906590083],[120,155,76,-0.18103080864505228],[120,155,77,-0.17855072201007272],[120,155,78,-0.17596823788443117],[120,155,79,-0.1732850495953111],[120,156,64,-0.20747716104178715],[120,156,65,-0.2063166545356664],[120,156,66,-0.2050426810778213],[120,156,67,-0.2036553759176828],[120,156,68,-0.20215499289195016],[120,156,69,-0.20054190683903028],[120,156,70,-0.19881661602381562],[120,156,71,-0.19697974457285583],[120,156,72,-0.195032044919897],[120,156,73,-0.19297440026185864],[120,156,74,-0.1908078270250818],[120,156,75,-0.18853347734206372],[120,156,76,-0.18615264153852962],[120,156,77,-0.18366675063088111],[120,156,78,-0.18107737883404307],[120,156,79,-0.17838624607966025],[120,157,64,-0.21244024791070992],[120,157,65,-0.21128856807341012],[120,157,66,-0.2100221364036452],[120,157,67,-0.20864110114716872],[120,157,68,-0.2071457301998645],[120,157,69,-0.20553641352591978],[120,157,70,-0.20381366558606628],[120,157,71,-0.20197812777595048],[120,157,72,-0.20003057087460152],[120,157,73,-0.19797189750306543],[120,157,74,-0.1958031445930455],[120,157,75,-0.19352548586575868],[120,157,76,-0.19114023432086025],[120,157,77,-0.18864884473547772],[120,157,78,-0.18605291617337316],[120,157,79,-0.18335419450418822],[120,158,64,-0.21726545732765679],[120,158,65,-0.2161225469440894],[120,158,66,-0.21486363195291802],[120,158,67,-0.21348887321812238],[120,158,68,-0.2119985522914185],[120,158,69,-0.2103930738341826],[120,158,70,-0.208672968049183],[120,158,71,-0.20683889312217996],[120,158,72,-0.20489163767336405],[120,158,73,-0.20283212321870014],[120,158,74,-0.2006614066410185],[120,158,75,-0.19838068267105913],[120,158,76,-0.19599128637832752],[120,158,77,-0.19349469567179778],[120,158,78,-0.19089253381048354],[120,158,79,-0.18818657192383204],[120,159,64,-0.22195078194317464],[120,159,65,-0.22081656821229567],[120,159,66,-0.2195651298501755],[120,159,67,-0.2181966399580314],[120,159,68,-0.2167113933365452],[120,159,69,-0.21510980891154508],[120,159,70,-0.21339243216924242],[120,159,71,-0.21155993760108793],[120,159,72,-0.209613131158211],[120,159,73,-0.20755295271551732],[120,159,74,-0.20538047854527708],[120,159,75,-0.20309692380041844],[120,159,76,-0.20070364500738103],[120,159,77,-0.19820214256856095],[120,159,78,-0.19559406327437678],[120,159,79,-0.19288120282490495],[120,160,64,-0.2264943665537098],[120,160,65,-0.2253687613985892],[120,160,66,-0.2241247449475765],[120,160,67,-0.22276250215562043],[120,160,68,-0.2212823406623925],[120,160,69,-0.2196846932217259],[120,160,70,-0.21797012014036388],[120,160,71,-0.21613931172608614],[120,160,72,-0.21419309074517356],[120,160,73,-0.2121324148892898],[120,160,74,-0.2099583792516102],[120,160,75,-0.20767221881241238],[120,160,76,-0.20527531093398144],[120,160,77,-0.20276917786486937],[120,160,78,-0.20015548925352644],[120,160,79,-0.19743606467126162],[120,161,64,-0.2308945134412358],[120,161,65,-0.22977741384735628],[120,161,66,-0.2285407502194311],[120,161,67,-0.22718471898049875],[120,161,68,-0.22570964019655437],[120,161,69,-0.22411596000973],[120,161,70,-0.22240425308055567],[120,161,71,-0.22057522503935845],[120,161,72,-0.21862971494677164],[120,161,73,-0.21656869776341958],[120,161,74,-0.2143932868286199],[120,161,75,-0.21210473634830962],[120,161,76,-0.20970444389205556],[120,161,77,-0.2071939528991793],[120,161,78,-0.2045749551940227],[120,161,79,-0.20184929351030867],[120,162,64,-0.23514968776762957],[120,162,65,-0.23404097614988062],[120,162,66,-0.23281158221239073],[120,162,67,-0.23146171345890754],[120,162,68,-0.22999170196681795],[120,162,69,-0.22840200682405343],[120,162,70,-0.2266932165748492],[120,162,71,-0.22486605167441764],[120,162,72,-0.2229213669525001],[120,162,73,-0.22086015408587523],[120,162,74,-0.21868354407965396],[120,162,75,-0.21639280975757513],[120,162,76,-0.21398936826115666],[120,162,77,-0.2114747835577364],[120,162,78,-0.2088507689574297],[120,162,79,-0.20611918963895137],[120,163,64,-0.2392585230239116],[120,163,65,-0.2381580676227525],[120,163,66,-0.23693584655143207],[120,163,67,-0.23559207800568938],[120,163,68,-0.23412710565754913],[120,163,69,-0.23254140109592525],[120,163,70,-0.2308355662758571],[120,163,71,-0.2290103359764427],[120,163,72,-0.22706658026743587],[120,163,73,-0.2250053069845792],[120,163,74,-0.22282766421350575],[120,163,75,-0.22053494278242747],[120,163,76,-0.21812857876345704],[120,163,77,-0.21561015598260536],[120,163,78,-0.21298140853847702],[120,163,79,-0.21024422332961124],[120,164,64,-0.243219826534117],[120,164,65,-0.242127481841373],[120,164,66,-0.24091232350138436],[120,164,67,-0.23957458001223864],[120,164,68,-0.23811460622247504],[120,164,69,-0.2365328857753447],[120,164,70,-0.23483003356149568],[120,164,71,-0.2330067981801498],[120,164,72,-0.2310640644087273],[120,164,73,-0.22900285568100454],[120,164,74,-0.22682433657362822],[120,164,75,-0.22452981530120764],[120,164,76,-0.2221207462198308],[120,164,77,-0.2195987323390497],[120,164,78,-0.21696552784235057],[120,164,79,-0.2142230406160628],[120,165,64,-0.24703258501398295],[120,165,65,-0.24594819222875175],[120,165,66,-0.2447399735842013],[120,165,67,-0.24340816749062932],[120,165,68,-0.24195313955405717],[120,165,69,-0.24037538502410383],[120,165,70,-0.23867553125008434],[120,165,71,-0.23685434014539608],[120,165,72,-0.23491271066015773],[120,165,73,-0.23285168126217426],[120,165,74,-0.23067243242606372],[120,165,75,-0.2283762891307558],[120,165,76,-0.2259647233652199],[120,165,77,-0.22343935664245473],[120,165,78,-0.22080196252176798],[120,165,79,-0.21805446913929094],[120,166,64,-0.2506959701843311],[120,166,65,-0.24961935769946175],[120,166,66,-0.24841794325184596],[120,166,67,-0.2470919747737872],[120,166,68,-0.24564182820932612],[120,166,69,-0.24406800996567413],[120,166,70,-0.2423711593726786],[120,166,71,-0.24055205115038514],[120,166,72,-0.23861159788465736],[120,166,73,-0.2365508525109351],[120,166,74,-0.23437101080595713],[120,166,75,-0.23207341388766745],[120,166,76,-0.22965955072315514],[120,166,77,-0.22713106064466748],[120,166,78,-0.22448973587371734],[120,166,79,-0.221737524053235],[120,167,64,-0.2542093444392972],[120,167,65,-0.25314032835891753],[120,167,66,-0.25194557061494505],[120,167,67,-0.2506253282718669],[120,167,68,-0.24917998719233736],[120,167,69,-0.24761006449210687],[120,167,70,-0.2459162110028047],[120,167,71,-0.24409921374263],[120,167,72,-0.2421599983949182],[120,167,73,-0.24009963179466198],[120,167,74,-0.2379193244228125],[120,167,75,-0.23562043290858115],[120,167,76,-0.23320446253958904],[120,167,77,-0.23067306977990842],[120,167,78,-0.228028064796011],[120,167,79,-0.22527141399058115],[120,168,64,-0.2575722665692227],[120,168,65,-0.2565106512577807],[120,168,66,-0.2553223912270265],[120,168,67,-0.2540077522846462],[120,168,68,-0.2525671297930564],[120,168,69,-0.2510010511277637],[120,168,70,-0.24931017814339917],[120,168,71,-0.24749530964748945],[120,168,72,-0.2455573838819245],[120,168,73,-0.24349748101220636],[120,168,74,-0.24131682562430168],[120,168,75,-0.23901678922931824],[120,168,76,-0.23659889277585566],[120,168,77,-0.2340648091700699],[120,168,78,-0.23141636580347147],[120,168,79,-0.22865554708841074],[120,169,64,-0.26078449753830024],[120,169,65,-0.25973007620159105],[120,169,66,-0.25854814392443115],[120,169,67,-0.2572389748700252],[120,169,68,-0.25580297348277026],[120,169,69,-0.2542406769499693],[120,169,70,-0.25255275767105256],[120,169,71,-0.25074002573436605],[120,169,72,-0.2488034314014922],[120,169,73,-0.246744067599181],[120,169,74,-0.24456317241871994],[120,169,75,-0.24226213162295884],[120,169,76,-0.23984248116084272],[120,169,77,-0.2373059096894896],[120,169,78,-0.23465426110383658],[120,169,79,-0.23188953707380255],[120,170,64,-0.2638460063170579],[120,170,65,-0.2627985616157059],[120,170,66,-0.26162277672198764],[120,170,67,-0.2603189337687254],[120,170,68,-0.25888744586610735],[120,170,69,-0.2573288595666715],[120,170,70,-0.25564385733763917],[120,170,71,-0.25383326004065576],[120,170,72,-0.2518980294189034],[120,170,73,-0.2498392705916661],[120,170,74,-0.24765823455617497],[120,170,75,-0.24535632069694668],[120,170,76,-0.24293507930247193],[120,170,77,-0.2403962140892908],[120,170,78,-0.23774158473347473],[120,170,79,-0.23497320940946864],[120,171,64,-0.2667569757694994],[120,171,65,-0.265716280465365],[120,171,66,-0.2645464527642606],[120,171,67,-0.2632477823849937],[120,171,68,-0.2618206906894829],[120,171,69,-0.2602657331509237],[120,171,70,-0.2585836018291515],[120,171,71,-0.2567751278532613],[120,171,72,-0.25484128391144933],[120,171,73,-0.25278318674815325],[120,171,74,-0.2506020996683227],[120,171,75,-0.2482994350490324],[120,171,76,-0.2458767568582928],[120,171,77,-0.24333578318109716],[120,171,78,-0.24067838875272307],[120,171,79,-0.23790660749924342],[120,172,64,-0.26951780859501206],[120,172,65,-0.2684836262309933],[120,172,66,-0.26731955633249094],[120,172,67,-0.2660258958234324],[120,172,68,-0.2646030739060844],[120,172,69,-0.26305165453230483],[120,172,70,-0.2613723388818483],[120,172,71,-0.25956596784778496],[120,172,72,-0.25763352452899846],[120,172,73,-0.25557613672983925],[120,172,74,-0.2533950794667639],[120,172,75,-0.25109177748217437],[120,172,76,-0.24866780776531228],[120,172,77,-0.2461249020802443],[120,172,78,-0.24346494950096087],[120,172,79,-0.24068999895353982],[120,173,64,-0.27212913332509303],[120,173,65,-0.27110121893879124],[120,173,66,-0.2699426989072742],[120,173,67,-0.2686538769820008],[120,173,68,-0.2672351897974429],[120,173,69,-0.26568720934532386],[120,173,70,-0.26401064545577024],[120,173,71,-0.26220634828544753],[120,173,72,-0.2602753108126349],[120,173,73,-0.2582186713393214],[120,173,74,-0.25603771600015224],[120,173,75,-0.25373388127844154],[120,173,76,-0.2513087565291018],[120,173,77,-0.24876408650853],[120,173,78,-0.24610177391147237],[120,173,79,-0.2433238819148188],[120,174,64,-0.2745918103747528],[120,174,65,-0.2735699112464717],[120,174,66,-0.27241672528683814],[120,174,67,-0.27113256270104924],[120,174,68,-0.26971786715145496],[120,174,69,-0.26817321823467],[120,174,70,-0.2664993339654801],[120,174,71,-0.2646970732675973],[120,174,72,-0.2627674384712311],[120,174,73,-0.2607115778175506],[120,174,74,-0.25853078796987217],[120,174,75,-0.2562265165317814],[120,174,76,-0.25380036457204735],[120,174,77,-0.2512540891563656],[120,174,78,-0.24858960588595147],[120,174,79,-0.245808991442933],[120,175,64,-0.2769069381486733],[120,175,65,-0.2758907945842236],[120,175,66,-0.2747427197609962],[120,175,67,-0.27346302996846483],[120,175,68,-0.2720521754969273],[120,175,69,-0.2705107431173879],[120,175,70,-0.26883945856810654],[120,175,71,-0.26703918904788226],[120,175,72,-0.2651109457160289],[120,175,73,-0.26305588619912523],[120,175,74,-0.26087531710436496],[120,175,75,-0.25857069653972764],[120,175,76,-0.25614363664081763],[120,175,77,-0.25359590610441063],[120,175,78,-0.2509294327287338],[120,175,79,-0.24814630596042397],[120,176,64,-0.2790758592021855],[120,176,65,-0.27806520535096035],[120,176,66,-0.2769220123408418],[120,176,67,-0.2756466021809859],[120,176,68,-0.2742394313947122],[120,176,69,-0.2727010935020353],[120,176,70,-0.27103232150875267],[120,176,71,-0.2692339904021507],[120,176,72,-0.2673071196532957],[120,176,73,-0.26525287572598033],[120,176,74,-0.26307257459216415],[120,176,75,-0.2607676842541149],[120,176,76,-0.2583398272731122],[120,176,77,-0.2557907833047417],[120,176,78,-0.25312249164081146],[120,176,79,-0.2503370537578343],[120,177,64,-0.2811001664569267],[120,177,65,-0.28009473116572337],[120,177,66,-0.27895618504404307],[120,177,67,-0.2776848554615572],[120,177,68,-0.2762812047852926],[120,177,69,-0.2747458328646938],[120,177,70,-0.2730794795231344],[120,177,71,-0.27128302705594454],[120,177,72,-0.26935750273491355],[120,177,73,-0.2673040813193467],[120,177,74,-0.26512408757350725],[120,177,75,-0.2628189987906582],[120,177,76,-0.2603904473235562],[120,177,77,-0.25784022312143473],[120,177,78,-0.2551702762735013],[120,177,79,-0.25238271955889735],[120,178,64,-0.2829817094712562],[120,178,65,-0.2819812171743079],[120,178,66,-0.28084707823581834],[120,178,67,-0.279579625032795],[120,178,68,-0.2781793253928967],[120,178,69,-0.276646785081901],[120,178,70,-0.27498275029752406],[120,178,71,-0.2731881101696576],[120,178,72,-0.27126389926698324],[120,178,73,-0.26921130011004246],[120,178,74,-0.26703164569059556],[120,178,75,-0.2647264219974774],[120,178,76,-0.26229727054881313],[120,178,77,-0.2597459909306217],[120,178,78,-0.25707454334183466],[120,178,79,-0.25428505114568234],[120,179,64,-0.28472260076548483],[120,179,65,-0.2837267724111774],[120,179,66,-0.282596797025646],[120,179,67,-0.2813330116466214],[120,179,68,-0.27993588918619605],[120,179,69,-0.2784060409205694],[120,179,70,-0.2767442189860565],[120,179,71,-0.2749513188814211],[120,179,72,-0.2730283819764967],[120,179,73,-0.2709765980271698],[120,179,74,-0.26879730769656285],[120,179,75,-0.26649200508262305],[120,179,76,-0.26406234025197817],[120,179,77,-0.2615101217800905],[120,179,78,-0.25883731929773446],[120,179,79,-0.2560460660437499],[120,180,64,-0.2863252222017799],[120,180,65,-0.2853337762165207],[120,180,66,-0.284207717719572],[120,180,67,-0.2829473880699297],[120,180,68,-0.28155326489544963],[120,180,69,-0.2800259645847446],[120,180,70,-0.27836624478525684],[120,180,71,-0.2765750069075721],[120,180,72,-0.2746532986359379],[120,180,73,-0.2726023164450595],[120,180,74,-0.2704234081230098],[120,180,75,-0.2681180753004626],[120,180,76,-0.26568797598610816],[120,180,77,-0.2631349271082811],[120,180,78,-0.26046090706283154],[120,180,79,-0.2576680582671823],[120,181,64,-0.2877922314188458],[120,181,65,-0.28680488470855325],[120,181,66,-0.2856824943282126],[120,181,67,-0.2844254056263775],[120,181,68,-0.28303410058619316],[120,181,69,-0.2815092003193089],[120,181,70,-0.27985146756589285],[120,181,71,-0.2780618092008085],[120,181,72,-0.2761412787459173],[120,181,73,-0.2740910788885824],[120,181,74,-0.2719125640062088],[120,181,75,-0.26960724269702785],[120,181,76,-0.2671767803169882],[120,181,77,-0.26462300152278095],[120,181,78,-0.26194789282102793],[120,181,79,-0.25915360512358276],[120,182,64,-0.28912656832139483],[120,182,65,-0.2881430373110818],[120,182,66,-0.28702406513047085],[120,182,67,-0.2857700007943301],[120,182,68,-0.28438133028949064],[120,182,69,-0.2828586790706429],[120,182,70,-0.28120281456216545],[120,182,71,-0.27941464866604504],[120,182,72,-0.27749524027584804],[120,182,73,-0.27544579779682754],[120,182,74,-0.2732676816719901],[120,182,75,-0.27096240691434126],[120,182,76,-0.26853164564515863],[120,182,77,-0.26597722963833637],[120,182,78,-0.26330115287081746],[120,182,79,-0.2605055740790655],[120,183,64,-0.29033146162430934],[120,183,65,-0.2893514633362281],[120,183,66,-0.28823565929286443],[120,183,67,-0.28698440186084484],[120,183,68,-0.2855981806886464],[120,183,69,-0.28407762520414714],[120,183,70,-0.28242350711813924],[120,183,71,-0.28063674293386975],[120,183,72,-0.2787183964625711],[120,183,73,-0.27666968134505665],[120,183,74,-0.2744919635792158],[120,183,75,-0.2721867640536183],[120,183,76,-0.269755761087089],[120,183,77,-0.2672007929742791],[120,183,78,-0.26452386053726684],[120,183,79,-0.2617271296831326],[120,184,64,-0.2914104354515904],[120,184,65,-0.29043368862240737],[120,184,66,-0.2893208035445618],[120,184,67,-0.28807213563179934],[120,184,68,-0.28668817786247447],[120,184,69,-0.28516956327871656],[120,184,70,-0.28351706749150296],[120,184,71,-0.2817316111916972],[120,184,72,-0.2798142626670199],[120,184,73,-0.27776624032502684],[120,184,74,-0.27558891522192475],[120,184,75,-0.2732838135974426],[120,184,76,-0.27085261941560623],[120,184,77,-0.2682971769114594],[120,184,78,-0.2656194931437508],[120,184,79,-0.26282174055353513],[120,185,64,-0.29236731599005195],[120,185,65,-0.29139354222752567],[120,185,66,-0.2902833289080844],[120,185,67,-0.28903703419811966],[120,185,68,-0.28765515408508224],[120,185,69,-0.2861383248781295],[120,185,70,-0.28448732571462965],[120,185,71,-0.2827030810725767],[120,185,72,-0.2807866632888856],[120,185,73,-0.2787392950836396],[120,185,74,-0.2765623520901267],[120,185,75,-0.27425736539087275],[120,185,76,-0.2718260240595295],[120,185,77,-0.269270177708654],[120,185,78,-0.26659183904340034],[120,185,79,-0.26379318642107485],[120,186,64,-0.29320623819776825],[120,186,65,-0.2922351631773976],[120,186,66,-0.29112737748568485],[120,186,67,-0.28988324175811764],[120,186,68,-0.2885032546821811],[120,186,69,-0.28698805549935813],[120,186,70,-0.2853384265129334],[120,186,71,-0.28355529560166604],[120,186,72,-0.28163973873929116],[120,186,73,-0.27959298251992903],[120,186,74,-0.2774164066892333],[120,186,75,-0.27511154668148996],[120,186,76,-0.27268009616252376],[120,186,77,-0.27012390957844745],[120,186,78,-0.26744500471027655],[120,186,79,-0.26464556523436045],[120,187,64,-0.2939316525672523],[120,187,65,-0.2929630072693651],[120,187,66,-0.29185740930137616],[120,187,67,-0.29061522149591035],[120,187,68,-0.28923694494389507],[120,187,69,-0.28772322149777696],[120,187,70,-0.28607483628050634],[120,187,71,-0.28429272020034313],[120,187,72,-0.28237795247145137],[120,187,73,-0.2803317631403597],[120,187,74,-0.2781555356181179],[120,187,75,-0.2758508092183619],[120,187,76,-0.27341928170114504],[120,187,77,-0.27086281182256844],[120,187,78,-0.26818342189023747],[120,187,79,-0.2653833003244883],[120,188,64,-0.2945483319434189],[120,188,65,-0.2935818539311712],[120,188,66,-0.29247820919866796],[120,188,67,-0.29123776251598577],[120,188,68,-0.2898610170941266],[120,188,69,-0.28834861708932547],[120,188,70,-0.2867013501130884],[120,188,71,-0.2849201497480146],[120,188,72,-0.2830060980693706],[120,188,73,-0.2809604281724931],[120,188,74,-0.27878452670585074],[120,188,75,-0.2764799364099777],[120,188,76,-0.2740483586621355],[120,188,77,-0.2714916560267383],[120,188,78,-0.26881185481156455],[120,188,79,-0.26601114762970646],[120,189,64,-0.2950613783962732],[120,189,65,-0.2940968131350298],[120,189,66,-0.2929948937939486],[120,189,67,-0.2917559868338404],[120,189,68,-0.29038059731641563],[120,189,69,-0.2888693714095619],[120,189,70,-0.28722309889830977],[120,189,71,-0.2854427157015593],[120,189,72,-0.283529306394523],[120,189,73,-0.28148410673696156],[120,189,74,-0.2793085062070525],[120,189,75,-0.27700405054109367],[120,189,76,-0.2745724442789056],[120,189,77,-0.27201555331496197],[120,189,78,-0.26933540745527773],[120,189,79,-0.26653420297999975],[120,190,64,-0.2954762301483588],[120,190,65,-0.2945133323669209],[120,190,66,-0.2934129184855484],[120,190,67,-0.2921753564227375],[120,190,68,-0.2908011528363331],[120,190,69,-0.289290955629646],[120,190,70,-0.2876455564632395],[120,190,71,-0.2858658932724407],[120,190,72,-0.2839530527905446],[120,190,73,-0.2819082730777839],[120,190,74,-0.2797329460559004],[120,190,75,-0.27742862004852764],[120,190,76,-0.27499700232724034],[120,190,77,-0.2724399616633092],[120,190,78,-0.26975953088518045],[120,190,79,-0.26695790944163444],[120,191,64,-0.2957986685569567],[120,191,65,-0.2948372036511142],[120,191,66,-0.2937380845184775],[120,191,67,-0.29250168031657187],[120,191,68,-0.29112849906039073],[120,191,69,-0.28961919012924286],[120,191,70,-0.28797454677923817],[120,191,71,-0.28619550866148236],[120,191,72,-0.2842831643459359],[120,191,73,-0.2822387538510166],[120,191,74,-0.28006367117878017],[120,191,75,-0.27775946685588804],[120,191,76,-0.2753278504802207],[120,191,77,-0.2727706932731683],[120,191,78,-0.2700900306376274],[120,191,79,-0.267288064721649],[120,192,64,-0.29603482515103696],[120,192,65,-0.2950745706299044],[120,192,66,-0.29397654610483126],[120,192,67,-0.29274112176883293],[120,192,68,-0.29136880677147614],[120,192,69,-0.28986025172634045],[120,192,70,-0.288216251224102],[120,192,71,-0.28643774635130204],[120,192,72,-0.2845258272147644],[120,192,73,-0.28248173547173405],[120,192,74,-0.2803068668655765],[120,192,75,-0.2780027737672416],[120,192,76,-0.2755711677223559],[120,192,77,-0.2730139220039719],[120,192,78,-0.2703330741710036],[120,192,79,-0.26753082863229316],[120,193,64,-0.2961911887229587],[120,193,65,-0.295231935698575],[120,193,66,-0.2941348175998735],[120,193,67,-0.2929002054676836],[120,193,68,-0.29152860938080694],[120,193,69,-0.2900206809639927],[120,193,70,-0.2883772159015118],[120,193,71,-0.28659915645640854],[120,193,72,-0.2846875939953767],[120,193,73,-0.2826437715193464],[120,193,74,-0.2804690861996134],[120,193,75,-0.27816509191971783],[120,193,76,-0.2757335018229342],[120,193,77,-0.2731761908654031],[120,193,78,-0.27049519837493263],[120,193,79,-0.26769273061541576],[120,194,64,-0.29627461247492015],[120,194,65,-0.2953161671955755],[120,194,66,-0.29421978073378685],[120,194,67,-0.2929858248071354],[120,194,68,-0.29161481023640634],[120,194,69,-0.2901073894539732],[120,194,70,-0.2884643590177767],[120,194,71,-0.2866866621309583],[120,194,72,-0.2847753911671148],[120,194,73,-0.2827317902012463],[120,194,74,-0.28055725754623273],[120,194,75,-0.2782533482950501],[120,194,76,-0.27582177686858367],[120,194,77,-0.27326441956906933],[120,194,78,-0.27058331713919437],[120,194,79,-0.2677806773267989],[120,195,64,-0.29629232122017246],[120,195,65,-0.29533450664793326],[120,195,66,-0.2942386918991051],[120,195,67,-0.2930052492143437],[120,195,68,-0.29163468998810715],[120,195,69,-0.29012766727736394],[120,195,70,-0.2884849783158846],[120,195,71,-0.28670756703417943],[120,195,72,-0.28479652658504595],[120,195,73,-0.28275310187479985],[120,195,74,-0.2805786921000265],[120,195,75,-0.27827485329006163],[120,195,76,-0.2758433008550556],[120,195,77,-0.2732859121396636],[120,195,78,-0.2706047289823764],[120,195,79,-0.26780196028044867],[120,196,64,-0.29625191863895883],[120,196,65,-0.29529457607186294],[120,196,66,-0.29419918949380086],[120,196,67,-0.2929661315329869],[120,196,68,-0.29159591400906026],[120,196,69,-0.29008919044203707],[120,196,70,-0.28844675856683577],[120,196,71,-0.28666956285344225],[120,196,72,-0.2847586970326792],[120,196,73,-0.28271540662764993],[120,196,74,-0.28054109149069484],[120,196,75,-0.2782373083460703],[120,196,76,-0.2758057733382072],[120,196,77,-0.273248364585581],[120,196,78,-0.27056712474022315],[120,196,79,-0.26776426355281646],[120,197,64,-0.29616139458923374],[120,197,65,-0.2952043853286218],[120,197,66,-0.2941093013200653],[120,197,67,-0.29287651546277416],[120,197,68,-0.29150653987378594],[120,197,69,-0.29000002839708416],[120,197,70,-0.28835777911829386],[120,197,71,-0.28658073688500885],[120,197,72,-0.2846699958327128],[120,197,73,-0.28262680191637846],[120,197,74,-0.2804525554475681],[120,197,75,-0.2781488136372551],[120,197,76,-0.2757172931442151],[120,197,77,-0.27315987262903185],[120,197,78,-0.27047859531372864],[120,197,79,-0.26767567154698946],[120,198,64,-0.29602913247211393],[120,198,65,-0.295072339535571],[120,198,66,-0.2939774520387476],[120,198,67,-0.2927448430550482],[120,198,68,-0.2913750248927315],[120,198,69,-0.289868651604145],[120,198,70,-0.28822652150052575],[120,198,71,-0.2864495796724319],[120,198,72,-0.2845389205157689],[120,198,73,-0.28249579026348304],[120,198,74,-0.28032158952276154],[120,198,75,-0.2780178758179418],[120,198,76,-0.2755863661389951],[120,198,77,-0.2730289394956148],[120,198,78,-0.2703476394769323],[120,198,79,-0.26754467681681515],[120,199,64,-0.2958639166520882],[120,199,65,-0.2949072465324608],[120,199,66,-0.29381247067947125],[120,199,67,-0.2925799622644908],[120,199,68,-0.2912102337033563],[120,199,69,-0.28970393916566506],[120,199,70,-0.2880618770896398],[120,199,71,-0.2862849927026194],[120,199,72,-0.2843743805471419],[120,199,73,-0.2823312870126965],[120,199,74,-0.2801571128729744],[120,199,75,-0.2778534158288346],[120,199,76,-0.2754219130568353],[120,199,77,-0.2728644837633719],[120,199,78,-0.2701831717444402],[120,199,79,-0.2673801879509793],[120,200,64,-0.29567493993197713],[120,200,65,-0.29471832440293977],[120,200,66,-0.2936235982064228],[120,200,67,-0.29239113455694554],[120,200,68,-0.29102144591773815],[120,200,69,-0.289515186510068],[120,200,70,-0.2878731548281287],[120,200,71,-0.28609629615955967],[120,200,72,-0.2841857051115543],[120,200,73,-0.2821426281426366],[120,200,74,-0.27996846609993753],[120,200,75,-0.2776647767621828],[120,200,76,-0.27523327738824743],[120,200,77,-0.272675847271316],[120,200,78,-0.2699945302986666],[120,200,79,-0.2671915375170333],[120,201,64,-0.29547181108264176],[120,201,65,-0.29451520905127915],[120,201,66,-0.2934204951398104],[120,201,67,-0.2921880425733324],[120,201,68,-0.2908183638266978],[120,201,69,-0.28931211313384664],[120,201,70,-0.28767008900270363],[120,201,71,-0.28589323673570444],[120,201,72,-0.2839826509559099],[120,201,73,-0.2819395781387882],[120,201,74,-0.27976541914949815],[120,201,75,-0.2774617317858825],[120,201,76,-0.2750302333270285],[120,201,77,-0.2724728030874324],[120,201,78,-0.26979148497678984],[120,201,79,-0.26698849006536296],[120,202,64,-0.29526394377265996],[120,202,65,-0.2943073393290905],[120,202,66,-0.2932126230753319],[120,202,67,-0.29198016823686024],[120,202,68,-0.2906104872888233],[120,202,69,-0.2891042344653698],[120,202,70,-0.2874622082745436],[120,202,71,-0.28568535401880746],[120,202,72,-0.28377476632115484],[120,202,73,-0.28173169165689105],[120,202,74,-0.2795575308909115],[120,202,75,-0.27725384182069357],[120,202,76,-0.2748223417248551],[120,202,77,-0.2722649099173159],[120,202,78,-0.2695835903070848],[120,202,79,-0.2667805939636255],[120,203,64,-0.2950518275580464],[120,203,65,-0.29409517404210617],[120,203,66,-0.29300041049617187],[120,203,67,-0.29176791014792813],[120,203,68,-0.29039818547276486],[120,203,69,-0.28889189070305965],[120,203,70,-0.2872498243430247],[120,203,71,-0.2854729316891843],[120,203,72,-0.28356230735643784],[120,203,73,-0.28151919780979295],[120,203,74,-0.27934500390159556],[120,203,75,-0.27704128341447376],[120,203,76,-0.27460975360984685],[120,203,77,-0.27205229378203644],[120,203,78,-0.2693709478180064],[120,203,79,-0.2665679267626765],[120,204,64,-0.29482907523022706],[120,204,65,-0.2938722532760121],[120,204,66,-0.29277732740048923],[120,204,67,-0.2915446708390663],[120,204,68,-0.2901747960681058],[120,204,69,-0.2886683573140456],[120,204,70,-0.2870261530680862],[120,204,71,-0.28524912860650153],[120,204,72,-0.2833383785165413],[120,204,73,-0.2812951492279967],[120,204,74,-0.2791208415502662],[120,204,75,-0.2768170132151304],[120,204,76,-0.27438538142509317],[120,204,77,-0.27182782540732486],[120,204,78,-0.2691463889732295],[120,204,79,-0.26634328308358834],[120,205,64,-0.29458943630555],[120,205,65,-0.2936322559585892],[120,205,66,-0.2925369846841174],[120,205,67,-0.29130399573429744],[120,205,68,-0.28993380158787874],[120,205,69,-0.2884270564589754],[120,205,70,-0.28678455881140896],[120,205,71,-0.28500725387867076],[120,205,72,-0.28309623618947577],[120,205,73,-0.2810527520989752],[120,205,74,-0.2788782023254689],[120,205,75,-0.2765741444928229],[120,205,76,-0.2741422956784526],[120,205,77,-0.27158453496690405],[120,205,78,-0.26890290600905853],[120,205,79,-0.26609961958691],[120,206,64,-0.2943269783867991],[120,206,65,-0.29336918233523],[120,206,66,-0.29227331767213915],[120,206,67,-0.2910397576790372],[120,206,68,-0.28966901483933205],[120,206,69,-0.2881617433465178],[120,206,70,-0.28651874161792146],[120,206,71,-0.28474095481406914],[120,206,72,-0.28282947736363684],[120,206,73,-0.2807855554940586],[120,206,74,-0.27861058976762754],[120,206,75,-0.27630613762330125],[120,206,76,-0.2738739159240672],[120,206,77,-0.2713158035099015],[120,206,78,-0.26863384375634936],[120,206,79,-0.265830247138673],[120,207,64,-0.29403608047620944],[120,207,65,-0.2930773472201633],[120,207,66,-0.29198057931064947],[120,207,67,-0.2907461500747245],[120,207,68,-0.28937457200375094],[120,207,69,-0.2878664992606865],[120,207,70,-0.28622273019292477],[120,207,71,-0.28444420985075025],[120,207,72,-0.28253203251137093],[120,207,73,-0.2804874442086026],[120,207,74,-0.2783118452680414],[120,207,75,-0.27600679284793195],[120,207,76,-0.27357400348559113],[120,207,77,-0.2710153556494209],[120,207,78,-0.2683328922965327],[120,207,79,-0.26552882343593676],[120,208,64,-0.2937114263458894],[120,208,65,-0.2927513733055588],[120,208,66,-0.29165333341686206],[120,208,67,-0.29041768007224034],[120,208,68,-0.28904492577548946],[120,208,69,-0.2875357246477803],[120,208,70,-0.2858908749392223],[120,208,71,-0.2841113215460316],[120,208,72,-0.282198158533269],[120,208,73,-0.28015263166322213],[120,208,74,-0.2779761409292645],[120,208,75,-0.27567024309540544],[120,208,76,-0.2732366542413841],[120,208,77,-0.27067725231334483],[120,208,78,-0.26799407968011735],[120,208,79,-0.26518934569505037],[120,209,64,-0.2933479979656387],[120,209,65,-0.2923861845285136],[120,209,66,-0.291286447987559],[120,209,67,-0.2900491618241109],[120,209,68,-0.28867483856021325],[120,209,69,-0.2871641322629409],[120,209,70,-0.2855178410542557],[120,209,71,-0.28373690962645715],[120,209,72,-0.2818224317631902],[120,209,73,-0.27977565286608463],[120,209,74,-0.2775979724868627],[120,209,75,-0.2752909468651239],[120,209,76,-0.2728562914716647],[120,209,77,-0.270295883557366],[120,209,78,-0.267611764707674],[120,209,79,-0.26480614340262665],[120,210,64,-0.29294106898815686],[120,210,65,-0.2919769994959065],[120,210,66,-0.2908750885658674],[120,210,67,-0.2896357097954829],[120,210,68,-0.2882593757323393],[120,210,69,-0.2867467403763121],[120,210,70,-0.28509860168723067],[120,210,71,-0.28331590409812213],[120,210,72,-0.2813997410339971],[120,210,73,-0.2793513574362544],[120,210,74,-0.27717215229253733],[120,210,75,-0.27486368117225424],[120,210,76,-0.27242765876761654],[120,210,77,-0.26986596144023334],[120,210,78,-0.26718062977328305],[120,210,79,-0.2643738711292145],[120,211,64,-0.29248619829165545],[120,211,65,-0.2915193249671366],[120,211,66,-0.29041471166638644],[120,211,67,-0.28917273213389005],[120,211,68,-0.28779389895169016],[120,211,69,-0.28627886603882347],[120,211,70,-0.28462843115625536],[120,211,71,-0.28284353841737686],[120,211,72,-0.280925280804025],[120,211,73,-0.27887490268810333],[120,211,74,-0.27669380235863583],[120,211,75,-0.2743835345544664],[120,211,76,-0.2719458130024591],[120,211,77,-0.26938251296123483],[120,211,78,-0.26669567377046766],[120,211,79,-0.2638875014056914],[120,212,64,-0.29197922357987216],[120,212,65,-0.291008949394744],[120,212,66,-0.2899010582586534],[120,212,67,-0.2886559240978035],[120,212,68,-0.2872740595393589],[120,212,69,-0.2857561184075875],[120,212,70,-0.28410289822547974],[120,212,71,-0.2823153427219064],[120,212,72,-0.28039454434427835],[120,212,73,-0.2783417467767839],[120,212,74,-0.27615834746403733],[120,212,75,-0.2738459001403506],[120,212,76,-0.27140611736448317],[120,212,77,-0.2688408730599062],[120,212,78,-0.26615220506060455],[120,212,79,-0.2633423176623664],[120,213,64,-0.291416255039467],[120,213,65,-0.2904419365228933],[120,213,66,-0.28933014730893714],[120,213,67,-0.28808126154395264],[120,213,68,-0.28669579191276684],[120,213,69,-0.2851743921308987],[120,213,70,-0.2835178594422266],[120,213,71,-0.28172713712216857],[120,213,72,-0.2798033169863372],[120,213,73,-0.2777476419047472],[120,213,74,-0.2755615083214057],[120,213,75,-0.27324646877949854],[120,213,76,-0.27080423445203117],[120,213,77,-0.26823667767795356],[120,213,78,-0.2655458345037983],[120,213,79,-0.26273390723078005],[120,214,64,-0.29079366905483117],[120,214,65,-0.2898146190437497],[120,214,66,-0.288698269380385],[120,214,67,-0.2874449944734405],[120,214,68,-0.28605530707994253],[120,214,69,-0.2845298607928589],[120,214,70,-0.282869452534136],[120,214,71,-0.2810750250532168],[120,214,72,-0.2791476694310028],[120,214,73,-0.27708862758933506],[120,214,74,-0.27489929480582875],[120,214,75,-0.27258122223427317],[120,214,76,-0.2701361194304511],[120,214,77,-0.2675658568834155],[120,214,78,-0.2648724685522448],[120,214,79,-0.2620581544082289],[120,215,64,-0.29010810198028514],[120,215,65,-0.2891235923117227],[120,215,66,-0.28800198029149804],[120,215,67,-0.28674364063663393],[120,215,68,-0.2853490861929987],[120,215,69,-0.28381897041760684],[120,215,70,-0.2821540898663024],[120,215,71,-0.280355386686888],[120,215,72,-0.2784239511176584],[120,215,73,-0.2763610239914206],[120,215,74,-0.2741679992448285],[120,215,75,-0.2718464264332474],[120,215,76,-0.26939801325100154],[120,215,77,-0.26682462805704266],[120,215,78,-0.26412830240606056],[120,215,79,-0.2613112335849881],[120,216,64,-0.28935644396968263],[120,216,65,-0.28836570811559903],[120,216,66,-0.28723809483295837],[120,216,67,-0.2859739791968463],[120,216,68,-0.284573874160828],[120,216,69,-0.28303843303317433],[120,216,70,-0.28136845195842763],[120,216,71,-0.27956487240437145],[120,216,72,-0.2776287836543654],[120,216,73,-0.27556142530512173],[120,216,74,-0.27336418976975707],[120,216,75,-0.271038624786331],[120,216,76,-0.2685864359317276],[120,216,77,-0.26600948914091416],[120,216,78,-0.2633098132316021],[120,216,79,-0.26048960243425945],[120,217,64,-0.2885358328633951],[120,217,65,-0.2875380685085345],[120,217,66,-0.2864036805427762],[120,217,67,-0.285133044452783],[120,217,68,-0.2837266733209849],[120,217,69,-0.28218522029493376],[120,217,70,-0.28050948106195084],[120,217,71,-0.27870039632913124],[120,217,72,-0.2767590543086643],[120,217,73,-0.27468669320855155],[120,217,74,-0.27248470372854894],[120,217,75,-0.2701546315615524],[120,217,76,-0.26769817990027556],[120,217,77,-0.2651172119492595],[120,217,78,-0.26241375344223783],[120,217,79,-0.25958999516480386],[120,218,64,-0.2876436481327096],[120,218,65,-0.2866380196959383],[120,218,66,-0.2854960515397913],[120,218,67,-0.28421811961978705],[120,218,68,-0.2828047371707927],[120,218,69,-0.28125655716867726],[120,218,70,-0.2795743747972024],[120,218,71,-0.277759129920217],[120,218,72,-0.27581190955911716],[120,218,73,-0.27373395037564574],[120,218,74,-0.27152664115986835],[120,218,75,-0.2691915253235351],[120,218,76,-0.26673030339868453],[120,218,77,-0.2641448355415247],[120,218,78,-0.2614371440416159],[120,218,79,-0.2586094158363048],[120,219,64,-0.2866775048816268],[120,219,65,-0.2856631459812399],[120,219,66,-0.2845127624155188],[120,219,67,-0.2832267306698687],[120,219,68,-0.2818055641576602],[120,219,69,-0.2802499156733127],[120,219,70,-0.2785605798505585],[120,219,71,-0.2767384956259512],[120,219,72,-0.2747847487075774],[120,219,73,-0.27270057404905346],[120,219,74,-0.2704873583286349],[120,219,75,-0.2681466424336544],[120,219,76,-0.26568012395014273],[120,219,77,-0.2630896596576665],[120,219,78,-0.2603772680294092],[120,219,79,-0.2575451317374433],[120,220,64,-0.2856352479060337],[120,220,65,-0.28461126376950907],[120,220,66,-0.2834516021843083],[120,220,67,-0.282156640230495],[120,220,68,-0.28072689152858177],[120,220,69,-0.2791630086831485],[120,220,70,-0.2774657857315772],[120,220,71,-0.2756361605979619],[120,220,72,-0.2736752175521603],[120,220,73,-0.2715841896740613],[120,220,74,-0.2693644613229019],[120,220,75,-0.2670175706118453],[120,220,76,-0.2645452118876762],[120,220,77,-0.2619492382156494],[120,220,78,-0.2592316638695128],[120,220,79,-0.25639466682665835],[120,221,64,-0.28451494581029413],[120,221,65,-0.2834804156289755],[120,221,66,-0.2823105882918666],[120,221,67,-0.2810058415421822],[120,221,68,-0.2795666892388653],[120,221,69,-0.277993783789814],[120,221,70,-0.2762879185901538],[120,221,71,-0.27445003046561156],[120,221,72,-0.27248120212095883],[120,221,73,-0.2703826645935997],[120,221,74,-0.26815579971213344],[120,221,75,-0.2658021425601088],[120,221,76,-0.2633233839448209],[120,221,77,-0.26072137287118924],[120,221,78,-0.25799811902073944],[120,221,79,-0.255155795235638],[120,222,64,-0.2833148851812429],[120,222,65,-0.2822688644104293],[120,222,66,-0.28108796068212105],[120,222,67,-0.2797725524748762],[120,222,68,-0.2783231539200738],[120,222,69,-0.2767404172237983],[120,222,70,-0.275025135093687],[120,222,71,-0.2731782431708021],[120,222,72,-0.2712008224664907],[120,222,73,-0.2690941018043126],[120,222,74,-0.26685946026686247],[120,222,75,-0.26449842964770187],[120,222,76,-0.26201269690825957],[120,222,77,-0.2594041066397299],[120,222,78,-0.2566746635299961],[120,222,79,-0.2538265348355284],[120,223,64,-0.28203356481954533],[120,223,65,-0.2809750874244712],[120,223,66,-0.27978217592239474],[120,223,67,-0.2784552096030831],[120,223,68,-0.2769947029071409],[120,223,69,-0.2754013078355708],[120,223,70,-0.2736758163642129],[120,223,71,-0.27181916286311947],[120,223,72,-0.2698324265208354],[120,223,73,-0.26771683377365596],[120,223,74,-0.26547376073969287],[120,223,75,-0.26310473565796855],[120,223,76,-0.26061144133238523],[120,223,77,-0.25799571758061135],[120,223,78,-0.2552595636879029],[120,223,79,-0.25240514086581634],[120,224,64,-0.28066969002848274],[120,224,65,-0.2795977706766648],[120,224,66,-0.27839190138694503],[120,224,67,-0.27705246233981173],[120,224,68,-0.2755799683247231],[120,224,69,-0.27397507113634445],[120,224,70,-0.27223856197556917],[120,224,71,-0.2703713738553808],[120,224,72,-0.2683745840115278],[120,224,73,-0.2662494163180813],[120,224,74,-0.26399724370770883],[120,224,75,-0.26161959059687956],[120,224,76,-0.2591181353158537],[120,224,77,-0.2564947125434941],[120,224,78,-0.25375131574691956],[120,224,79,-0.25089009962595443],[120,225,64,-0.27922216696014057],[120,225,65,-0.27813580316057407],[120,225,66,-0.27691600949885053],[120,225,67,-0.2755631671293025],[120,225,68,-0.2740777912327629],[120,225,69,-0.2724605333984562],[120,225,70,-0.2707121840105675],[120,225,71,-0.2688336746395561],[120,225,72,-0.26682608043817735],[120,225,73,-0.2646906225422878],[120,225,74,-0.2624286704762636],[120,225,75,-0.26004174456325146],[120,225,76,-0.2575315183401009],[120,225,77,-0.2548998209770159],[120,225,78,-0.2521486397019508],[120,225,79,-0.2492801222296983],[120,226,64,-0.277690097018956],[120,226,65,-0.27658827120864016],[120,226,66,-0.27535357203019584],[120,226,67,-0.2739863816985],[120,226,68,-0.27248721583122226],[120,226,69,-0.27085672581532394],[120,226,70,-0.2690957011781282],[120,226,71,-0.2672050719630258],[120,226,72,-0.2651859111097764],[120,226,73,-0.2630394368394898],[120,226,74,-0.2607670150441067],[120,226,75,-0.25837016168060567],[120,226,76,-0.2558505451697809],[120,226,77,-0.2532099887996324],[120,226,78,-0.2504504731333892],[120,226,79,-0.24757413842211606],[120,227,64,-0.2760727713226978],[120,227,65,-0.27495445290096976],[120,227,66,-0.2737038544606326],[120,227,67,-0.2723213593673457],[120,227,68,-0.27080748372405683],[120,227,69,-0.26916287872105127],[120,227,70,-0.2673883329904527],[120,227,71,-0.2654847749652437],[120,227,72,-0.2634532752427665],[120,227,73,-0.26129504895278355],[120,227,74,-0.2590114581299239],[120,227,75,-0.2566040140907363],[120,227,76,-0.2540743798151992],[120,227,77,-0.25142437233272286],[120,227,78,-0.24865596511266985],[120,227,79,-0.24577129045934254],[120,228,64,-0.2743696652208486],[120,228,65,-0.27323381253200696],[120,228,66,-0.2719663103942841],[120,228,67,-0.27056754341785405],[120,228,68,-0.2690380282424034],[120,228,69,-0.26737841586965183],[120,228,70,-0.2655894940002016],[120,228,71,-0.26367218937477954],[120,228,72,-0.2616275701198355],[120,228,73,-0.2594568480975762],[120,228,74,-0.257161381260258],[120,228,75,-0.25474267600896416],[120,228,76,-0.25220238955671126],[120,228,77,-0.2495423322959247],[120,228,78,-0.24676447017030778],[120,228,79,-0.2438709270510505],[120,229,64,-0.2725804328703407],[120,229,65,-0.2714259951350376],[120,229,66,-0.27014057603494357],[120,229,67,-0.26872456152192936],[120,229,68,-0.2671784688269283],[120,229,69,-0.2655029487738406],[120,229,70,-0.2636987880976308],[120,229,71,-0.26176691176668476],[120,229,72,-0.2597083853093919],[120,229,73,-0.2575244171450273],[120,229,74,-0.25521636091876054],[120,229,75,-0.2527857178410172],[120,229,76,-0.2502341390310332],[120,229,77,-0.24756342786464924],[120,229,78,-0.24477554232636134],[120,229,79,-0.24187259736558175],[120,230,64,-0.27070490186873],[120,230,65,-0.26953082106461435],[120,230,66,-0.2682264647196566],[120,230,67,-0.26679222022800575],[120,230,68,-0.2652286054694266],[120,230,69,-0.2635362711034823],[120,230,70,-0.2617160028677705],[120,230,71,-0.2597687238802763],[120,230,72,-0.25769549694580807],[120,230,73,-0.2554975268665943],[120,230,74,-0.25317616275686305],[120,230,75,-0.250732900361633],[120,230,76,-0.2481693843795576],[120,230,77,-0.2454874107898658],[120,230,78,-0.24268892918341878],[120,230,79,-0.23977604509783412],[120,231,64,-0.26874306794477265],[120,231,65,-0.26754828063686087],[120,231,66,-0.266223961510642],[120,231,67,-0.2647704995064736],[120,231,68,-0.26318841321363096],[120,231,69,-0.26147835314365675],[120,231,70,-0.259641104007612],[120,231,71,-0.2576775869972947],[120,231,72,-0.2555888620703919],[120,231,73,-0.2533761302396418],[120,231,74,-0.2510407358658292],[120,231,75,-0.24858416895484192],[120,231,76,-0.24600806745863113],[120,231,77,-0.24331421958011767],[120,231,78,-0.2405045660820636],[120,231,79,-0.2375812025998636],[120,232,64,-0.26669508970634925],[120,232,65,-0.26547852882760725],[120,232,66,-0.26413321784550703],[120,232,67,-0.262659547353838],[120,232,68,-0.261058036715178],[120,232,69,-0.2593293363122874],[120,232,70,-0.2574742298032425],[120,232,71,-0.255493636380383],[120,232,72,-0.2533886130330294],[120,232,73,-0.25116035681405513],[120,232,74,-0.24881020711013102],[120,232,75,-0.24633964791587415],[120,232,76,-0.24375031011174153],[120,232,77,-0.24104397374570963],[120,232,78,-0.23822257031876248],[120,232,79,-0.2352881850741403],[120,233,64,-0.26456128344583274],[120,233,65,-0.26332188002844736],[120,233,66,-0.2619545462458457],[120,233,67,-0.2604596744557077],[120,233,68,-0.25883778486082976],[120,233,69,-0.2570895277374303],[120,233,70,-0.2552156856670327],[120,233,71,-0.25321717577198743],[120,233,72,-0.251095051954604],[120,233,73,-0.2488505071399656],[120,233,74,-0.24648487552225107],[120,233,75,-0.2439996348147927],[120,233,76,-0.24139640850371147],[120,233,77,-0.2386769681051728],[120,233,78,-0.2358432354262805],[120,233,79,-0.23289728482956618],[120,234,64,-0.26234211800285934],[120,234,65,-0.2610788028606802],[120,234,66,-0.2596884150841826],[120,234,67,-0.2581713489085713],[120,234,68,-0.2565281254469055],[120,234,69,-0.2547593948941844],[120,234,70,-0.25286593873482954],[120,234,71,-0.2508486719536339],[120,234,72,-0.2487086452501418],[120,234,73,-0.24644704725653888],[120,234,74,-0.24406520675886745],[120,234,75,-0.24156459492180848],[120,234,76,-0.23894682751686003],[120,234,77,-0.23621366715396042],[120,234,78,-0.23336702551657673],[120,234,79,-0.2304089656002084],[120,235,64,-0.26003820968444025],[120,235,65,-0.2587499150470718],[120,235,66,-0.257335443409199],[120,235,67,-0.2557951910002969],[120,235,68,-0.2541296799168655],[120,235,69,-0.25233956030115345],[120,235,70,-0.25042561252309303],[120,235,71,-0.24838874936551836],[120,235,72,-0.2462300182126257],[120,235,73,-0.243950603241762],[120,235,74,-0.24155182761835303],[120,235,75,-0.2390351556942122],[120,235,76,-0.23640219520906047],[120,235,77,-0.23365469949530837],[120,235,78,-0.23079456968611523],[120,235,79,-0.22782385692667995],[120,236,64,-0.2576503172425251],[120,236,65,-0.2563359783415482],[120,236,66,-0.25489639582935164],[120,236,67,-0.25333196804947133],[120,236,68,-0.2516432181581544],[120,236,69,-0.249830796276579],[120,236,70,-0.2478954816460902],[120,236,71,-0.24583818478652497],[120,236,72,-0.24365994965758575],[120,236,73,-0.2413619558233474],[120,236,74,-0.23894552061971008],[120,236,75,-0.2364121013250382],[120,236,76,-0.23376329733381773],[120,236,77,-0.23100085233338008],[120,236,78,-0.22812665648370944],[120,236,79,-0.22514274860028838],[120,237,64,-0.2551793369089659],[120,237,65,-0.25383789351677166],[120,237,66,-0.25237217745483653],[120,237,67,-0.25078258930352393],[120,237,68,-0.2490696533582576],[120,237,69,-0.24723401975409165],[120,237,70,-0.245276466593095],[120,237,71,-0.24319790207462133],[120,237,72,-0.24099936662842403],[120,237,73,-0.2386820350507014],[120,237,74,-0.23624721864288556],[120,237,75,-0.23369636735341248],[120,237,76,-0.2310310719223092],[120,237,77,-0.22825306602864215],[120,237,78,-0.2253642284408488],[120,237,79,-0.2223665851699015],[120,238,64,-0.2526262974878183],[120,238,65,-0.25125669540953055],[120,238,66,-0.2497638288978269],[120,238,67,-0.2481481008955705],[120,238,68,-0.2464100369199005],[120,238,69,-0.24455028715800997],[120,238,70,-0.24256962856552589],[120,238,71,-0.24046896696755937],[120,238,72,-0.23824933916239277],[120,238,73,-0.23591191502788345],[120,238,74,-0.23345799963039604],[120,238,75,-0.23088903533650806],[120,238,76,-0.22820660392731684],[120,238,77,-0.2254124287153978],[120,238,78,-0.22250837666443113],[120,238,79,-0.21949646051145022],[120,239,64,-0.24999235550510457],[120,239,65,-0.24859354802407607],[120,239,66,-0.2470725213311208],[120,239,67,-0.24542968086010664],[120,239,68,-0.24366555343552254],[120,239,69,-0.24178078933832414],[120,239,70,-0.23977616437415472],[120,239,71,-0.23765258194401973],[120,239,72,-0.23541107511737247],[120,239,73,-0.23305280870769784],[120,239,74,-0.23057908135040106],[120,239,75,-0.22799132758324947],[120,239,76,-0.22529111992919415],[120,239,77,-0.22248017098162054],[120,239,78,-0.219560335492046],[120,239,79,-0.2165336124602194],[120,240,64,-0.24727879041593692],[120,240,65,-0.2458497396932927],[120,240,66,-0.24429955160508487],[120,240,67,-0.24262863420744385],[120,240,68,-0.24083751572091916],[120,240,69,-0.2389268465652482],[120,240,70,-0.23689740139627458],[120,240,71,-0.2347500811450851],[120,240,72,-0.23248591505932814],[120,240,73,-0.2301060627468009],[120,240,74,-0.22761181622110926],[120,240,75,-0.22500460194965077],[120,240,76,-0.22228598290374546],[120,240,77,-0.21945766061096728],[120,240,78,-0.21652147720968928],[120,240,79,-0.2134794175058009],[120,241,64,-0.24448699986907907],[120,241,65,-0.24302667829779545],[120,241,66,-0.2414463374229835],[120,241,67,-0.23974638805697301],[120,241,68,-0.23792735990813352],[120,241,69,-0.23598990358343575],[120,241,70,-0.2339347925929176],[120,241,71,-0.23176292535613274],[120,241,72,-0.22947532721053865],[120,241,73,-0.22707315242191473],[120,241,74,-0.22455768619660998],[120,241,75,-0.22193034669587774],[120,241,76,-0.21919268705211659],[120,241,77,-0.21634639738706973],[120,241,78,-0.21339330683200208],[120,241,79,-0.21033538554980613],[120,242,64,-0.24161849502883237],[120,242,65,-0.24012588654282319],[120,242,66,-0.23851441257456873],[120,242,67,-0.23678448682912945],[120,242,68,-0.2349366405974792],[120,242,69,-0.23297152472572613],[120,242,70,-0.23088991158599115],[120,242,71,-0.22869269704901707],[120,242,72,-0.22638090245846942],[120,242,73,-0.22395567660701765],[120,242,74,-0.22141829771399635],[120,242,75,-0.21877017540490384],[120,242,76,-0.21601285269255832],[120,242,77,-0.21314800795996347],[120,242,78,-0.21017745694490142],[120,242,79,-0.20710315472620455],[120,243,64,-0.23867489595438418],[120,243,65,-0.23714899729308137],[120,243,66,-0.2355054222280789],[120,243,67,-0.2337445874962134],[120,243,68,-0.2318670260688368],[120,243,69,-0.22987338908657629],[120,243,70,-0.2277644477954901],[120,243,71,-0.22554109548469736],[120,243,72,-0.22320434942544032],[120,243,73,-0.2207553528116677],[120,243,74,-0.21819537670194045],[120,243,75,-0.2155258219629147],[120,243,76,-0.21274822121422576],[120,243,77,-0.2098642407748208],[120,243,78,-0.20687568261076106],[120,243,79,-0.20378448628444523],[120,244,64,-0.23565792703655963],[120,244,65,-0.23409774896546431],[120,244,66,-0.23242111828058087],[120,244,67,-0.2306284548919948],[120,244,68,-0.22872029355216594],[120,244,69,-0.22669728575511072],[120,244,70,-0.22456020163671342],[120,244,71,-0.22230993187624104],[120,244,72,-0.21994748959902344],[120,244,73,-0.21747401228038854],[120,244,74,-0.21489076365064796],[120,244,75,-0.21219913560139703],[120,244,76,-0.20940065009294195],[120,244,77,-0.2064969610629127],[120,244,78,-0.20348985633607497],[120,244,79,-0.20038125953529506],[120,245,64,-0.232569412491894],[120,245,65,-0.230973980979579],[120,245,66,-0.22926335476657234],[120,245,67,-0.227437957080022],[120,245,68,-0.22549832455714036],[120,245,69,-0.22344510910770388],[120,245,70,-0.22127907977740302],[120,245,71,-0.21900112461211785],[120,245,72,-0.21661225252308358],[120,245,73,-0.21411359515303208],[120,245,74,-0.21150640874310744],[120,245,75,-0.20879207600081706],[120,245,76,-0.20597210796883503],[120,245,77,-0.20304814589471265],[120,245,78,-0.20002196310150866],[120,245,79,-0.19689546685929926],[120,246,64,-0.2294112719141762],[120,246,65,-0.22777962926622175],[120,246,66,-0.22603408332500108],[120,246,67,-0.22417506078079008],[120,246,68,-0.22220310026207146],[120,246,69,-0.2201188541602549],[120,246,70,-0.21792309045496094],[120,246,71,-0.21561669453994503],[120,246,72,-0.21320067104962181],[120,246,73,-0.21067614568628246],[120,246,74,-0.20804436704779505],[120,246,75,-0.2053067084560587],[120,246,76,-0.2024646697860194],[120,246,77,-0.1995198792953079],[120,246,78,-0.19647409545451144],[120,246,79,-0.19332920877803605],[120,247,64,-0.22618551588339464],[120,247,65,-0.22451672183373517],[120,247,66,-0.2227353487246253],[120,247,67,-0.22084182685769538],[120,247,68,-0.21883669696204],[120,247,69,-0.2167206119800782],[120,247,70,-0.21449433885367453],[120,247,71,-0.2121587603106092],[120,247,72,-0.20971487665134914],[120,247,73,-0.2071638075362202],[120,247,74,-0.20450679377276193],[120,247,75,-0.20174519910354205],[120,247,76,-0.19888051199423817],[120,247,77,-0.19591434742204294],[120,247,78,-0.19284844866440853],[120,247,79,-0.18968468908808522],[120,248,64,-0.22289424163199711],[120,248,65,-0.22118737439216107],[120,248,66,-0.21936928444763115],[120,248,67,-0.21744040586168578],[120,248,68,-0.2154012815761509],[120,248,69,-0.21325256515732405],[120,248,70,-0.21099502254185543],[120,248,71,-0.2086295337826708],[120,248,72,-0.2061570947948942],[120,248,73,-0.20357881910185982],[120,248,74,-0.20089593958100704],[120,248,75,-0.19810981020992846],[120,248,76,-0.19522190781237703],[120,248,77,-0.19223383380429504],[120,248,78,-0.18914731593987588],[120,248,79,-0.18596421005761332],[120,249,64,-0.21953962876863042],[120,249,65,-0.21779378603535116],[120,249,66,-0.21593810833166904],[120,249,67,-0.21397303363477893],[120,249,68,-0.21189910721407745],[120,249,69,-0.2097169833360938],[120,249,70,-0.2074274269690637],[120,249,71,-0.20503131548722942],[120,249,72,-0.20252964037482302],[120,249,73,-0.1999235089298299],[120,249,74,-0.19721414596731457],[120,249,75,-0.19440289552258871],[120,249,76,-0.1914912225540233],[120,249,77,-0.18848071464556693],[120,249,78,-0.18537308370898287],[120,249,79,-0.18217016768576033],[120,250,64,-0.21612393505927763],[120,250,65,-0.2143382349809586],[120,250,66,-0.21244411827023602],[120,250,67,-0.21044202697236503],[120,250,68,-0.20833250880181697],[120,250,69,-0.20611621880517395],[120,250,70,-0.20379392102334093],[120,250,71,-0.20136649015316],[120,250,72,-0.19883491320838664],[120,250,73,-0.19620029118011972],[120,250,74,-0.19346384069647127],[120,250,75,-0.19062689568175428],[120,250,76,-0.18769090901499186],[120,250,77,-0.184657454187808],[120,250,78,-0.18152822696171222],[120,250,79,-0.17830504702473748],[120,251,64,-0.21264949226570884],[120,251,65,-0.210823074368221],[120,251,66,-0.20888968797130453],[120,251,67,-0.2068497793441998],[120,251,68,-0.20470389876656225],[120,251,69,-0.20245270214829214],[120,251,70,-0.2000969526483486],[120,251,71,-0.1976375222926331],[120,251,72,-0.1950753935908992],[120,251,73,-0.19241166115278774],[120,251,74,-0.1896475333027644],[120,251,75,-0.18678433369424585],[120,251,76,-0.18382350292271132],[120,251,77,-0.18076660013786516],[120,251,78,-0.1776153046548602],[120,251,79,-0.174371417564539],[120,252,64,-0.20911870204141292],[120,252,65,-0.2072507281137037],[120,252,66,-0.2052772627743807],[120,252,67,-0.20319875667427256],[120,252,68,-0.2010157627808692],[120,252,69,-0.19872893795407476],[120,252,70,-0.19633904452060202],[120,252,71,-0.193846951847094],[120,252,72,-0.19125363791193162],[120,252,73,-0.18856019087582276],[120,252,74,-0.18576781065095138],[120,252,75,-0.182877810468975],[120,252,76,-0.1798916184476651],[120,252,77,-0.17681077915625498],[120,252,78,-0.1736369551795075],[120,252,79,-0.17037192868045892],[120,253,64,-0.20553403188493036],[120,253,65,-0.20362368682492793],[120,253,66,-0.20160935552590264],[120,253,67,-0.19949149317945492],[120,253,68,-0.19727065556603474],[120,253,69,-0.19494750058562343],[120,253,70,-0.19252278978670634],[120,253,71,-0.18999738989362025],[120,253,72,-0.1873722743322348],[120,253,73,-0.18464852475406812],[120,253,74,-0.1818273325586064],[120,253,75,-0.17891000041412475],[120,253,76,-0.1758979437767969],[120,253,77,-0.17279269240816364],[120,253,78,-0.16959589189096902],[120,253,79,-0.1663093051433202],[120,254,64,-0.20189801115049166],[120,254,65,-0.19994450377178058],[120,254,66,-0.19788854251288646],[120,254,67,-0.195730587266841],[120,254,68,-0.19347119675458568],[120,254,69,-0.19111103000960672],[120,254,70,-0.18865084786050013],[120,254,71,-0.18609151441155064],[120,254,72,-0.18343399852128583],[120,254,73,-0.18067937527910427],[120,254,74,-0.17782882747974582],[120,254,75,-0.17488364709590487],[120,254,76,-0.1718452367487716],[120,254,77,-0.16871511117657279],[120,254,78,-0.1654948987011179],[120,254,79,-0.1621863426923118],[120,255,64,-0.19821322711614375],[120,255,65,-0.19621579091589475],[120,255,66,-0.19411745945500147],[120,255,67,-0.19191869748996004],[120,255,68,-0.189620066812069],[120,255,69,-0.18722222768506092],[120,255,70,-0.18472594028029288],[120,255,71,-0.1821320661095842],[120,255,72,-0.17944156945565798],[120,255,73,-0.17665551880028973],[120,255,74,-0.1737750882499267],[120,255,75,-0.17080155895908422],[120,255,76,-0.16773632055129828],[120,255,77,-0.16458087253770948],[120,255,78,-0.16133682573328512],[120,255,79,-0.15800590367063527],[120,256,64,-0.19448232110927566],[120,256,65,-0.19244021499790898],[120,256,66,-0.19029879755498835],[120,256,67,-0.18805853856377602],[120,256,68,-0.18572000301805236],[120,256,69,-0.18328385251180696],[120,256,70,-0.18075084662611046],[120,256,71,-0.17812184431325423],[120,256,72,-0.1753978052781172],[120,256,73,-0.1725797913568627],[120,256,74,-0.16966896789272584],[120,256,75,-0.16666660510920212],[120,256,76,-0.16357407948041314],[120,256,77,-0.16039287509872768],[120,256,78,-0.15712458503963966],[120,256,79,-0.15377091272386634],[120,257,64,-0.19070798468944689],[120,257,65,-0.18862049368250955],[120,257,66,-0.1864352996073198],[120,257,67,-0.1841528774383706],[120,257,68,-0.18177379550623057],[120,257,69,-0.17929871683838028],[120,257,70,-0.17672840049683797],[120,257,71,-0.1740637029126697],[120,257,72,-0.17130557921733885],[120,257,73,-0.1684550845709989],[120,257,74,-0.1655133754874899],[120,257,75,-0.16248171115634985],[120,257,76,-0.1593614547616189],[120,257,77,-0.15615407479750648],[120,257,78,-0.15286114638093562],[120,257,79,-0.14948435256091552],[120,258,64,-0.1868929558887078],[120,258,65,-0.18475939176144274],[120,258,66,-0.182529756165294],[120,258,67,-0.18020452943150422],[120,258,68,-0.17778428336383933],[120,258,69,-0.17526968252967307],[120,258,70,-0.1726614855474662],[120,258,71,-0.16996054637073288],[120,258,72,-0.16716781556845273],[120,258,73,-0.1642843416020306],[120,258,74,-0.161311272098565],[120,258,75,-0.15824985512073486],[120,258,76,-0.1551014404330852],[120,258,77,-0.1518674807647813],[120,258,78,-0.14854953306884178],[120,258,79,-0.14514925977780824],[120,259,64,-0.1830400155093173],[120,259,65,-0.18085971741440998],[120,259,66,-0.17858500176647252],[120,259,67,-0.17621635441996397],[120,259,68,-0.17375435079027574],[120,259,69,-0.17119965709419227],[120,259,70,-0.16855303158634116],[120,259,71,-0.16581532579172775],[120,259,72,-0.16298748573431193],[120,259,73,-0.16007055316172747],[120,259,74,-0.1570656667659066],[120,259,75,-0.1539740633999207],[120,259,76,-0.15079707929081382],[120,259,77,-0.1475361512485024],[120,259,78,-0.14419281787074956],[120,259,79,-0.14076872074417268],[120,260,64,-0.1791519834787626],[120,260,65,-0.17692431852773882],[120,260,66,-0.17460391121635416],[120,260,67,-0.17219125308959005],[120,260,68,-0.1696869233148261],[120,260,69,-0.16709158987082762],[120,260,70,-0.16440601073231076],[120,260,71,-0.1616310350501779],[120,260,72,-0.15876760432738252],[120,260,73,-0.15581675359052816],[120,260,74,-0.1527796125569555],[120,260,75,-0.14965740679763734],[120,260,76,-0.1464514588956516],[120,260,77,-0.1431631896003095],[120,260,78,-0.1397941189769462],[120,260,79,-0.13634586755233102],[120,261,64,-0.17523171526227188],[120,261,65,-0.1729560790710305],[120,261,66,-0.17058939593048972],[120,261,67,-0.16813216324418628],[120,261,68,-0.1655849640736986],[120,261,69,-0.16294846827533493],[120,261,70,-0.16022343363197766],[120,261,71,-0.15741070698017817],[120,261,72,-0.1545112253324606],[120,261,73,-0.1515260169949385],[120,261,74,-0.14845620267999887],[120,261,75,-0.1453029966143744],[120,261,76,-0.14206770764237298],[120,261,77,-0.1387517403243418],[120,261,78,-0.13535659603037226],[120,261,79,-0.1318838740292062],[120,262,64,-0.171282098332726],[120,262,65,-0.16895791553168737],[120,262,66,-0.16654440033493562],[120,262,67,-0.16404205617321432],[120,262,68,-0.1614514701462692],[120,262,69,-0.15877331410643558],[120,262,70,-0.1560083457369535],[120,262,71,-0.15315740962510227],[120,262,72,-0.15022143833011709],[120,262,73,-0.14720145344599034],[120,262,74,-0.14409856665890858],[120,262,75,-0.14091398079965256],[120,262,76,-0.1376489908907232],[120,262,77,-0.13430498518827438],[120,262,78,-0.130883446218859],[120,262,79,-0.1273859518109433],[120,263,64,-0.1673060486978677],[120,263,65,-0.1649327734072154],[120,263,66,-0.1624718983249454],[120,263,67,-0.15992393307816571],[120,263,68,-0.15728946895042462],[120,263,69,-0.15456917991142255],[120,263,70,-0.15176382364101004],[120,263,71,-0.14887424254757242],[120,263,72,-0.14590136478075671],[120,263,73,-0.14284620523864833],[120,263,74,-0.13970986656914558],[120,263,75,-0.1364935401658603],[120,263,76,-0.13319850715830817],[120,263,77,-0.12982613939646986],[120,263,78,-0.1263779004297253],[120,263,79,-0.12285534648012414],[120,264,64,-0.16330650748501935],[120,264,65,-0.1608836237555169],[120,264,66,-0.15837488978211312],[120,264,67,-0.15578082155783163],[120,264,68,-0.1531020146972329],[120,264,69,-0.1503391454114973],[120,264,70,-0.14749297147734908],[120,264,71,-0.1445643331999218],[120,264,72,-0.1415541543695223],[120,264,73,-0.13846344321239956],[120,264,74,-0.13529329333526352],[120,264,75,-0.13204488466389042],[120,264,76,-0.12871948437557001],[120,264,77,-0.1253184478254778],[120,264,78,-0.12184321946697846],[120,264,79,-0.1182953337658193],[120,265,64,-0.15928643758313066],[120,265,65,-0.15681345980299322],[120,265,66,-0.15425639714978762],[120,265,67,-0.1516157721522859],[120,265,68,-0.14889218490474754],[120,265,69,-0.1460863139866494],[120,265,70,-0.14319891737580204],[120,265,71,-0.1402308333549559],[120,265,72,-0.13718298141185142],[120,265,73,-0.13405636313282615],[120,265,74,-0.13085206308971314],[120,265,75,-0.12757124972037875],[120,265,76,-0.1242151762026445],[120,265,77,-0.12078518132168764],[120,265,78,-0.1172826903309146],[120,265,79,-0.11370921580627413],[120,266,64,-0.15524882034229243],[120,266,65,-0.1527252936105944],[120,266,66,-0.15011946206689647],[120,266,67,-0.1474318549457201],[120,266,68,-0.1446630769710921],[120,266,69,-0.14181380922022235],[120,266,70,-0.13888480998010683],[120,266,71,-0.13587691559715964],[120,266,72,-0.13279104131983022],[120,266,73,-0.12962818213431476],[120,266,74,-0.12638941359310196],[120,266,75,-0.12307589263669422],[120,266,76,-0.11968885840825749],[120,266,77,-0.11622963306128353],[120,266,78,-0.1126996225602705],[120,266,79,-0.1091003174743797],[120,267,64,-0.1511966523305331],[120,267,65,-0.14862215279762947],[120,267,66,-0.1459671420599909],[120,267,67,-0.14323215622794333],[120,267,68,-0.14041780480663107],[120,267,69,-0.13752477150297043],[120,267,70,-0.13455381502506047],[120,267,71,-0.13150576987415463],[120,267,72,-0.1283815471291483],[120,267,73,-0.12518213522369798],[120,267,74,-0.12190860071569926],[120,267,75,-0.11856208904948029],[120,267,76,-0.11514382531044964],[120,267,77,-0.11165511497229424],[120,267,78,-0.10809734463672399],[120,267,79,-0.10447198276572617],[120,268,64,-0.147132942148116],[120,268,65,-0.1445070773235601],[120,268,66,-0.1418025072937361],[120,268,67,-0.13901977521477027],[120,268,68,-0.13615949552545592],[120,268,69,-0.13322235469683935],[120,268,70,-0.1302091119737867],[120,268,71,-0.12712060010863546],[120,268,72,-0.12395772608688949],[120,268,73,-0.1207214718450671],[120,268,74,-0.11741289498043572],[120,268,75,-0.11403312945298427],[120,268,76,-0.1105833862793788],[120,268,77,-0.10706495421898826],[120,268,78,-0.10347920045198516],[120,268,79,-0.09982757124948083],[120,269,64,-0.1430607072992341],[120,269,65,-0.14038311632767042],[120,269,66,-0.13762863737974063],[120,269,67,-0.13479782082719238],[120,269,68,-0.13189128619607848],[120,269,69,-0.12890972285835967],[120,269,70,-0.12585389071500275],[120,269,71,-0.12272462087068325],[120,269,72,-0.11952281630004707],[120,269,73,-0.11624945250564672],[120,269,74,-0.11290557816727598],[120,269,75,-0.10949231578306673],[120,269,76,-0.1060108623020804],[120,269,77,-0.1024624897484922],[120,269,78,-0.09884854583736535],[120,269,79,-0.0951704545819772],[120,270,64,-0.13898297112099794],[120,270,65,-0.13625332502651116],[120,270,66,-0.13344861824361887],[120,270,67,-0.13056940852922272],[120,270,68,-0.12761632065122214],[120,270,69,-0.12459004702154408],[120,270,70,-0.12149134832017972],[120,270,71,-0.11832105411033483],[120,270,72,-0.11508006344465094],[120,270,73,-0.11176934546261158],[120,270,74,-0.10838993997885643],[120,270,75,-0.10494295806276915],[120,270,76,-0.10142958260907159],[120,270,77,-0.09785106889952011],[120,270,78,-0.09420874515570182],[120,270,79,-0.09050401308289546],[120,271,64,-0.1349027597699256],[120,271,65,-0.1321207616693244],[120,271,66,-0.1292655390504983],[120,271,67,-0.1263376572246323],[120,271,68,-0.12333774635692907],[120,271,69,-0.12026650204050776],[120,271,70,-0.1171246858608126],[120,271,71,-0.11391312595063857],[120,271,72,-0.11063271753573167],[120,271,73,-0.10728442347107925],[120,271,74,-0.10386927476761026],[120,271,75,-0.10038837110967469],[120,271,76,-0.09684288136303176],[120,271,77,-0.09323404407344443],[120,271,78,-0.08956316795587882],[120,271,79,-0.08583163237426988],[120,272,64,-0.13082309926582936],[120,272,65,-0.12798848455134804],[120,272,66,-0.1250824891888675],[120,272,67,-0.1221056862124672],[120,272,68,-0.11905871134087442],[120,272,69,-0.11594226349170289],[120,272,70,-0.11275710528569488],[120,272,71,-0.10950406354108105],[120,272,72,-0.10618402975800839],[120,272,73,-0.10279796059315932],[120,272,74,-0.09934687832427275],[120,272,75,-0.09583187130494641],[120,272,76,-0.09225409440944166],[120,272,77,-0.08861476946759372],[120,272,78,-0.08491518568982281],[120,272,79,-0.08115670008220838],[120,273,64,-0.12674701259299664],[120,273,65,-0.12385954908489055],[120,273,66,-0.12090255531265476],[120,273,67,-0.1178766122012408],[120,273,68,-0.11478236117977919],[120,273,69,-0.11162050463565532],[120,273,70,-0.10839180635808132],[120,273,71,-0.10509709197127343],[120,273,72,-0.10173724935718975],[120,273,73,-0.0983132290679497],[120,273,74,-0.09482604472764516],[120,273,75,-0.09127677342392371],[120,273,76,-0.0876665560890662],[120,273,77,-0.08399659787065861],[120,273,78,-0.08026816849185558],[120,273,79,-0.0764826026011996],[120,274,64,-0.12267751685887102],[120,274,65,-0.11973700492839012],[120,274,66,-0.11672881844175381],[120,274,67,-0.1136535463820163],[120,274,68,-0.11051183604613685],[120,274,69,-0.10730439343842546],[120,274,70,-0.10403198365296462],[120,274,71,-0.10069543124512231],[120,274,72,-0.09729562059210944],[120,274,73,-0.09383349624270448],[120,274,74,-0.09031006325585061],[120,274,75,-0.0867263875285132],[120,274,76,-0.08308359611251309],[120,274,77,-0.07938287752044026],[120,274,78,-0.07562548202064201],[120,274,79,-0.07181272192125149],[120,275,64,-0.11861762051013197],[120,275,65,-0.11562389317335053],[120,275,66,-0.11256435112088897],[120,275,67,-0.10943959156027105],[120,275,68,-0.10625026781415048],[120,275,69,-0.10299708965268328],[120,275,70,-0.09968082361435415],[120,275,71,-0.09630229331537249],[120,275,72,-0.09286237974758954],[120,275,73,-0.08936202156506251],[120,275,74,-0.08580221535896804],[120,275,75,-0.0821840159212553],[120,275,76,-0.07850853649675138],[120,275,77,-0.07477694902382703],[120,275,78,-0.07099048436361322],[120,275,79,-0.067150432517738],[120,276,64,-0.11457032060606748],[120,276,65,-0.1115232435890493],[120,276,66,-0.1084122146367108],[120,276,67,-0.10523783934643555],[120,276,68,-0.1020007772247643],[120,276,69,-0.09870174195828424],[120,276,70,-0.09534150167244415],[120,276,71,-0.09192087917840919],[120,276,72,-0.08844075220791126],[120,276,73,-0.08490205363621872],[120,276,74,-0.08130577169292502],[120,276,75,-0.07765295016095086],[120,276,76,-0.07394468856347197],[120,276,77,-0.07018214233887621],[120,276,78,-0.06636652300374724],[120,276,79,-0.06249909830383671],[120,277,64,-0.11053860014944772],[120,277,65,-0.10743807192522964],[120,277,66,-0.10427545629334023],[120,277,67,-0.10105136740532239],[120,277,68,-0.0977664711100133],[120,277,69,-0.09442148516257193],[120,277,70,-0.09101717942089549],[120,277,71,-0.08755437602954413],[120,277,72,-0.08403394959112648],[120,277,73,-0.08045682732527121],[120,277,74,-0.07682398921488315],[120,277,75,-0.07313646814008107],[120,277,76,-0.06939534999952507],[120,277,77,-0.06560177381924254],[120,277,78,-0.06175693184894371],[120,277,79,-0.05786206964579549],[120,278,64,-0.10652542547479643],[120,278,65,-0.10337137727266776],[120,278,66,-0.1001571067462495],[120,278,67,-0.09688323676433747],[120,278,68,-0.09355043967657967],[120,278,69,-0.09015943746029104],[120,278,70,-0.08671100185411862],[120,278,71,-0.08320595447867463],[120,278,72,-0.07964516694409157],[120,278,73,-0.0760295609446251],[120,278,74,-0.0723601083400004],[120,278,75,-0.06863783122390266],[120,278,76,-0.06486380197931735],[120,278,77,-0.0610391433208296],[120,278,78,-0.0571650283238751],[120,278,79,-0.05324268044090802],[120,279,64,-0.10253374369395613],[120,279,65,-0.0993261394815157],[120,279,66,-0.09606017739437739],[120,279,67,-0.0927364891803662],[120,279,68,-0.08935575384844618],[120,279,69,-0.08591869775300587],[120,279,70,-0.08242609466444772],[120,279,71,-0.07887876582620101],[120,279,72,-0.07527757999811302],[120,279,73,-0.07162345348634308],[120,279,74,-0.06791735015945377],[120,279,75,-0.06416028145110497],[120,279,76,-0.06035330634905095],[120,279,77,-0.05649753137055219],[120,279,78,-0.052594110524194604],[120,279,79,-0.04864424525808109],[120,280,64,-0.09856648019915476],[120,280,65,-0.09530531663762415],[120,280,66,-0.09198765783068957],[120,280,67,-0.08861414456554934],[120,280,68,-0.08518546266886734],[120,280,69,-0.08170234302824181],[120,280,70,-0.07816556159942734],[120,280,71,-0.07457593939943002],[120,280,72,-0.07093434248543179],[120,280,73,-0.06724168191966845],[120,280,74,-0.06349891371995403],[120,280,75,-0.05970703879625883],[120,280,76,-0.055867102873040475],[120,280,77,-0.05198019639744056],[120,280,78,-0.04804745443333913],[120,280,79,-0.044070056541230085],[120,281,64,-0.094626536223467],[120,281,65,-0.0913118425967433],[120,281,66,-0.08794251335107656],[120,281,67,-0.08451919847183953],[120,281,68,-0.08104259076154408],[120,281,69,-0.07751342579823833],[120,281,70,-0.07393248187909934],[120,281,71,-0.07030057994934663],[120,281,72,-0.0666185835164278],[120,281,73,-0.06288739854960618],[120,281,74,-0.0591079733646358],[120,281,75,-0.055281298493940145],[120,281,76,-0.051408406541986085],[120,281,77,-0.04749037202597012],[120,281,78,-0.04352831120180628],[120,281,79,-0.0395233818753829],[120,282,64,-0.0907167864585745],[120,282,65,-0.08734862457649789],[120,282,66,-0.08392768252148769],[120,282,67,-0.08045461963423611],[120,282,68,-0.07693013585090164],[120,282,69,-0.0733549715982087],[120,282,70,-0.06972990767318349],[120,282,71,-0.06605576510765054],[120,282,72,-0.06233340501744211],[120,282,73,-0.0585637284364513],[120,282,74,-0.05474767613521064],[120,282,75,-0.05088622842441759],[120,282,76,-0.046980404943094356],[120,282,77,-0.04303126443150118],[120,282,78,-0.03903990448879158],[120,282,79,-0.035007461315376964],[120,283,64,-0.08684007673002253],[120,283,65,-0.0834185408063437],[120,283,66,-0.07994607480350813],[120,283,67,-0.07642334757290697],[120,283,68,-0.07285106634167898],[120,283,69,-0.06922997654432084],[120,283,70,-0.06556086163836816],[120,283,71,-0.0618445429042731],[120,283,72,-0.058081879229431255],[120,283,73,-0.054273766876489105],[120,283,74,-0.05042113923561081],[120,283,75,-0.04652496656113003],[120,283,76,-0.042586255692271535],[120,283,77,-0.038606049758061756],[120,283,78,-0.03458542786641816],[120,283,79,-0.030525504777383416],[120,284,64,-0.08299922172987462],[120,284,65,-0.07952443823539923],[120,284,66,-0.076000568238274],[120,284,67,-0.07242829025409148],[120,284,68,-0.06880831895772554],[120,284,69,-0.0651414049512905],[120,284,70,-0.06142833451560209],[120,284,71,-0.05766992934526566],[120,284,72,-0.0538670462673464],[120,284,73,-0.050020576943752504],[120,284,74,-0.046131447557007155],[120,284,75,-0.042200618479839413],[120,284,76,-0.03822908392827595],[120,284,77,-0.03421787159835327],[120,284,78,-0.0301680422864406],[120,284,79,-0.02608068949313941],[120,285,64,-0.07919700280666453],[120,285,65,-0.07566913029805544],[120,285,66,-0.07209400718862469],[120,285,67,-0.06847232180968277],[120,285,68,-0.06480479643989956],[120,285,69,-0.06109218700948188],[120,285,70,-0.057335282787280756],[120,285,71,-0.053534906050951986],[120,285,72,-0.04969191174012785],[120,285,73,-0.04580718709272916],[120,285,74,-0.04188165126409321],[120,285,75,-0.03791625492934833],[120,285,76,-0.0339119798687173],[120,285,77,-0.02986983853586994],[120,285,78,-0.02579087360931101],[120,285,79,-0.021676157526775236],[120,286,64,-0.07543616581284576],[120,286,65,-0.07185539473756422],[120,286,66,-0.06822920013969724],[120,286,67,-0.06455828031569641],[120,286,68,-0.060843365303279245],[120,286,69,-0.057085216521728654],[120,286,70,-0.05328462639454204],[120,286,71,-0.04944241795456106],[120,286,72,-0.0455594444315327],[120,286,73,-0.041636588822238196],[120,286,74,-0.03767476344285697],[120,286,75,-0.03367490946400628],[120,286,76,-0.029637996428129504],[120,286,77,-0.02556502174935829],[120,286,78,-0.021457010195835624],[120,286,79,-0.017315013354467224],[120,287,64,-0.07171941900963705],[120,287,65,-0.068085971487501],[120,287,66,-0.06440891755785708],[120,287,67,-0.060688965629518477],[120,287,68,-0.056926853653578774],[120,287,69,-0.05312334869976518],[120,287,70,-0.04927924651456145],[120,287,71,-0.04539537106122982],[120,287,72,-0.041472574041686194],[120,287,73,-0.037511734400363234],[120,287,74,-0.033513757809727096],[120,287,75,-0.02947957613789129],[120,287,76,-0.02541014689799881],[120,287,77,-0.02130645267949921],[120,287,78,-0.01716950056130498],[120,287,79,-0.013000321506797502],[120,288,64,-0.06804943102916808],[120,288,65,-0.06436356061101045],[120,288,66,-0.06063588980787085],[120,288,67,-0.056867137285837366],[120,288,68,-0.05305804906266956],[120,288,69,-0.049209398020170936],[120,288,70,-0.04532198339774576],[120,288,71,-0.041396630267273304],[120,288,72,-0.0374341889892503],[120,288,73,-0.03343553465033988],[120,288,74,-0.029401566481988217],[120,288,75,-0.0253332072605581],[120,288,76,-0.02123140268864554],[120,288,77,-0.017097120757707973],[120,288,78,-0.012931351091989729],[120,288,79,-0.008735104273712463],[120,289,64,-0.06442882889413135],[120,289,65,-0.060690820298035325],[120,289,66,-0.05691280512852662],[120,289,67,-0.053095512451468097],[120,289,68,-0.04923969650342247],[120,289,69,-0.0453461361400401],[120,289,70,-0.04141563426504369],[120,289,71,-0.03744901723994376],[120,289,72,-0.03344713427443588],[120,289,73,-0.029410856797618873],[120,289,74,-0.02534107780969208],[120,289,75,-0.021238711214585343],[120,289,76,-0.017104691133184247],[120,289,77,-0.012939971197280908],[120,289,78,-0.008745523824235324],[120,289,79,-0.004522339472315534],[120,290,64,-0.06086019609476637],[120,290,65,-0.05707036492036063],[120,290,66,-0.05324230766652949],[120,290,67,-0.049376763938893564],[120,290,68,-0.04547449634368894],[120,290,69,-0.04153628987219865],[120,290,70,-0.03756295126518963],[120,290,71,-0.03355530835749165],[120,290,72,-0.02951420940266808],[120,290,73,-0.025440522377919467],[120,290,74,-0.0213351342688744],[120,290,75,-0.017198950334726015],[120,290,76,-0.013032893353372793],[120,290,77,-0.00883790284669636],[120,290,78,-0.004614934285959715],[120,290,79,-3.649582772949078E-4],[120,291,64,-0.05734607072330336],[120,291,65,-0.05350476314459615],[120,291,66,-0.049626995568798266],[120,291,67,-0.04571351827865111],[120,291,68,-0.041765102399554194],[120,291,69,-0.037782539220099026],[120,291,70,-0.03376663949201511],[120,291,71,-0.029718232709665837],[120,291,72,-0.025638166369044035],[120,291,73,-0.021527305206408914],[120,291,74,-0.017386530416216323],[120,291,75,-0.01321673884880431],[120,291,76,-0.009018842187489995],[120,291,77,-0.004793766105211206],[120,291,78,-5.424494006965874E-4],[120,291,79,0.003734156885867146],[120,292,64,-0.05388894366570249],[120,292,65,-0.049996536102934114],[120,292,66,-0.046069419132997225],[120,292,67,-0.04210835385039616],[120,292,68,-0.03811412004769027],[120,292,69,-0.0340875154722203],[120,292,70,-0.030029355061652357],[120,292,71,-0.025940470158475004],[120,292,72,-0.021821707703403026],[120,292,73,-0.017673929407828554],[120,292,74,-0.013498010904968383],[120,292,75,-0.009294840880173932],[120,292,76,-0.005065320180057065],[120,292,77,-8.103609005669365E-4],[120,292,78,0.0034691145460013506],[120,292,79,0.0077721743850937275],[120,293,64,-0.050491256850882904],[120,293,65,-0.046548155621878196],[120,293,66,-0.04257207901650234],[120,293,67,-0.03856379907284413],[120,293,68,-0.03452410439701309],[120,293,69,-0.030453799356180616],[120,293,70,-0.026353703249839433],[120,293,71,-0.022224649459421264],[120,293,72,-0.018067484576222537],[120,293,73,-0.013883067507781871],[120,293,74,-0.009672268562354813],[120,293,75,-0.005435968511957073],[120,293,76,-0.0011750576336244933],[120,293,77,0.0031095652709724475],[120,293,78,0.007416993877578215],[120,293,79,0.011746315363095672],[120,294,64,-0.04715540155734632],[120,294,65,-0.04316204250884592],[120,294,66,-0.03913742450370242],[120,294,67,-0.0350823306524911],[120,294,68,-0.030997558519544124],[120,294,69,-0.02688391925245852],[120,294,70,-0.02274223668922308],[120,294,71,-0.018573346443103142],[120,294,72,-0.014378094965235566],[120,294,73,-0.01015733858507735],[120,294,74,-0.005911942528350339],[120,294,75,-0.001642779912956957],[120,294,76,0.0026492692774864185],[120,294,77,0.006963319242360225],[120,294,78,0.01129847943501687],[120,294,79,0.01565385565604742],[120,295,64,-0.04388371677711128],[120,295,65,-0.039840564896563235],[120,295,66,-0.03576785183155262],[120,295,67,-0.03166637189102764],[120,295,68,-0.027536931740386864],[120,295,69,-0.023380349467637687],[120,295,70,-0.019197453626571173],[120,295,71,-0.01498908225709536],[120,295,72,-0.010756081882676724],[120,295,73,-0.006499306485036008],[120,295,74,-0.0022196164557369003],[120,295,75,0.0020821224748516637],[120,295,76,0.006405040331578821],[120,295,77,0.010748264011379516],[120,295,78,0.015110918423006214],[120,295,79,0.019492127649654384],[120,296,64,-0.04067848763713329],[120,296,65,-0.036586036645422954],[120,296,66,-0.0324657025735549],[120,296,67,-0.028318291051625366],[120,296,68,-0.024144617987003958],[120,296,69,-0.019945508567356315],[120,296,70,-0.01572179624008034],[120,296,71,-0.011474321668297302],[120,296,72,-0.007203931663349983],[120,296,73,-0.0029114780939535068],[120,296,74,0.001402183228365203],[120,296,75,0.005736193687055385],[120,296,76,0.010089693021918422],[120,296,77,0.014461820513929927],[120,296,78,0.018851716193529974],[120,296,79,0.023258522072407598],[120,297,64,-0.03754194387811827],[120,297,65,-0.03340071580372023],[120,297,66,-0.029233262082076855],[120,297,67,-0.025040399784003353],[120,297,68,-0.020822954197697058],[120,297,69,-0.01658175776886893],[120,297,70,-0.01231764901668303],[120,297,71,-0.008031471425649056],[120,297,72,-0.0037240723134166626],[120,297,73,6.036983253795702E-4],[120,297,74,0.004950988999592537],[120,297,75,0.009316947925862837],[120,297,76,0.01370072425711294],[120,297,77,0.018101469335090825],[120,297,78,0.022518337966984048],[120,297,79,0.026950489726133106],[120,298,64,-0.034476258390653006],[120,298,65,-0.030286803125680925],[120,298,66,-0.026072757988924042],[120,298,67,-0.02183495160819153],[120,298,68,-0.017574218789208867],[120,298,69,-0.013291399393132647],[120,298,70,-0.00898733718926753],[120,298,71,-0.004662878683131616],[120,298,72,-3.188719198188583E-4],[120,298,73,0.0040438347371914915],[120,298,74,0.008424393852149645],[120,298,75,0.012821960187580278],[120,298,76,0.01723569199962751],[120,298,77,0.021664752358053332],[120,298,78,0.026108310490911585],[120,298,79,0.03056554315392576],[120,299,64,-0.03148354580881582],[120,299,65,-0.027246440647453157],[120,299,66,-0.022986358764338077],[120,299,67,-0.018704140457162878],[120,299,68,-0.014400630183618493],[120,299,69,-0.010076675376596969],[120,299,70,-0.005733125233989687],[120,299,71,-0.0013708294832283502],[120,299,72,0.0030093628794823843],[120,299,73,0.007406604875089873],[120,299,74,0.011820052853150076],[120,299,75,0.016248867828317894],[120,299,76,0.020692216842244003],[120,299,77,0.025149274350730402],[120,299,78,0.029619223636167],[120,299,79,0.034101258245277655],[120,300,64,-0.02856586116117958],[120,300,65,-0.024281710320971914],[120,300,66,-0.01997617233432969],[120,300,67,-0.015650099278244414],[120,300,68,-0.011304345394441015],[120,300,69,-0.006939765842602419],[120,300,70,-0.002557215427582457],[120,300,71,0.0018424526992443097],[120,300,72,0.006258388364547361],[120,300,73,0.010689745723367665],[120,300,74,0.015135684635584915],[120,300,75,0.019595372068022324],[120,300,76,0.02406798352256541],[120,300,77,0.02855270449014487],[120,300,78,0.03304873193060704],[120,300,79,0.037555275778499625],[120,301,64,-0.025725198579139373],[120,301,65,-0.021394632705624937],[120,301,66,-0.017044244756273044],[120,301,67,-0.01267489869323115],[120,301,68,-0.00828745867185366],[120,301,69,-0.0038827877323117307],[120,301,70,5.382535354149787E-4],[120,301,71,0.004974808353017803],[120,301,72,0.009426025141858047],[120,301,73,0.013891058937334815],[120,301,74,0.018369072830000593],[120,301,75,0.022859239432919815],[120,301,76,0.027360742375647784],[120,301,77,0.031872777824679656],[120,301,78,0.036394556030395084],[120,301,79,0.04092530290052293],[120,302,64,-0.022963490062711648],[120,302,65,-0.01858716571787427],[120,302,66,-0.014192558952918943],[120,302,67,-0.00978054571736324],[120,302,68,-0.005352000207210352],[120,302,69,-9.077934953374764E-4],[120,302,70,0.0035512078653426246],[120,302,71,0.008024143265795826],[120,302,72,0.01251015949190864],[120,302,73,0.01700841220250388],[120,302,74,0.021518067434712997],[120,302,75,0.02603830313619481],[120,302,76,0.03056831072458341],[120,302,77,0.03510729667401228],[120,302,78,0.039654484128739405],[120,302,79,0.04420911454390033],[120,303,64,-0.020282604303729822],[120,303,65,-0.015861203438752018],[120,303,66,-0.011423033504743427],[120,303,67,-0.006968982537081605],[120,303,68,-0.0024999348967605787],[120,303,69,0.001983230160021364],[120,303,70,0.006479639940107051],[120,303,71,0.010988429799309682],[120,303,72,0.015508744656074646],[120,303,73,0.020039740532721232],[120,303,74,0.024580586124648845],[120,303,75,0.029130464396995036],[120,303,76,0.03368857420912902],[120,303,77,0.03825413196682734],[120,303,78,0.042826373302158535],[120,303,79,0.047404554781100505],[120,304,64,-0.01768434556636574],[120,304,65,-0.01321857497916274],[120,304,66,-0.00873752150056375],[120,304,67,-0.004242085346493012],[120,304,68,2.6683883550018394E-4],[120,304,69,0.004788363457002998],[120,304,70,0.009321609507943064],[120,304,71,0.013865708104079891],[120,304,72,0.018419802062836672],[120,304,73,0.022983047507316275],[120,304,74,0.027554615498890107],[120,304,75,0.032133693697841685],[120,304,76,0.03671948805245398],[120,304,77,0.041311224516384554],[120,304,78,0.045908150794354396],[120,304,79,0.050509538116177005],[120,305,64,-0.015170452625121159],[120,305,65,-0.010661043403136134],[120,305,66,-0.006137809446567426],[120,305,67,-0.0016016632426918975],[120,305,68,0.0029464901556958724],[120,305,69,0.007505754680918155],[120,305,70,0.012075244830096126],[120,305,71,0.016654087273725793],[120,305,72,0.021241422493198967],[120,305,73,0.025836406447113106],[120,305,74,0.030438212266761033],[120,305,75,0.0350460319802797],[120,305,76,0.03965907826584812],[120,305,77,0.044276586233777795],[120,305,78,0.04889781523752409],[120,305,79,0.05352205071364139],[120,306,64,-0.012742597760211662],[120,306,65,-0.008190304708952247],[120,306,66,-0.0036256162336747097],[120,306,67,9.505428201397291E-4],[120,306,68,0.0055372568787338435],[120,306,69,0.01013362125007447],[120,306,70,0.014738743763507402],[120,306,71,0.01935174643890921],[120,306,72,0.023971767185389563],[120,306,73,0.02859796152938563],[120,306,74,0.033229504372543114],[120,306,75,0.03786559177885773],[120,306,76,0.042505442791472656],[120,306,77,0.04714830127897257],[120,306,78,0.05179343781120191],[120,306,79,0.05644015156463289],[120,307,64,-0.010402385810285956],[120,307,65,-0.0058079868680819685],[120,307,66,-0.0012025921631783412],[120,307,67,0.003412861017915665],[120,307,68,0.008037446467827586],[120,307,69,0.012670250727156662],[120,307,70,0.017310374783565473],[120,307,71,0.02195693580097373],[120,307,72,0.02660906887890454],[120,307,73,0.031265928841826204],[120,307,74,0.035926692058885365],[120,307,75,0.04059055829350227],[120,307,76,0.04525675258322633],[120,307,77,0.049924527149691325],[120,307,78,0.05459316333869828],[120,307,79,0.05926197359045156],[120,308,64,-0.008151353282606293],[120,308,65,-0.0035156489220692644],[120,308,66,0.0011296819692145563],[120,308,67,0.005783689584979407],[120,308,68,0.010445436974744794],[120,308,69,0.015114001770922737],[120,308,70,0.019788477946786565],[120,308,71,0.024467977605142792],[120,308,72,0.029151632797757836],[120,308,73,0.033838597375381405],[120,308,74,0.038528048868765055],[120,308,75,0.04321919040014299],[120,308,76,0.04791125262557612],[120,308,77,0.05260349570799766],[120,308,78,0.05729521132098832],[120,308,79,0.061985724683306806],[120,309,64,-0.005990967520623433],[120,309,65,-0.0013147801372880158],[120,309,66,0.0033696957310016887],[120,309,67,0.008061497683659387],[120,309,68,0.01275967792085135],[120,309,69,0.017463305028291104],[120,309,70,0.02217146579349598],[120,309,71,0.026883267053347926],[120,309,72,0.03159783757300874],[120,309,73,0.03631432995603259],[120,309,74,0.04103192258607513],[120,309,75,0.045749821599663676],[120,309,76,0.0504672628904322],[120,309,77,0.055183514144657664],[120,309,78,0.05989787690812681],[120,309,79,0.06460968868435847],[120,310,64,-0.003922625928891657],[120,310,65,7.932007824816845E-4],[120,310,66,0.005516009852227249],[120,310,67,0.010244826215101477],[120,310,68,0.014978691119009777],[120,310,69,0.01971666396687584],[120,310,70,0.02445782419057152],[120,310,71,0.02920127315674946],[120,310,72,0.03394613610463039],[120,310,73,0.03869156411558278],[120,310,74,0.04343673611490158],[120,310,75,0.04818086090524429],[120,310,76,0.052923179232131023],[120,310,77,0.0576629658813438],[120,310,78,0.062399531808256636],[120,310,79,0.06713222629911803],[120,311,64,-0.001947655255439787],[120,311,65,0.0028069464255399135],[120,311,66,0.007567256966421895],[120,311,67,0.01233228857125776],[120,311,68,0.017101071436207677],[120,311,69,0.021872655647844907],[120,311,70,0.026646113114119296],[120,311,71,0.031420539527819924],[120,311,72,0.036195056362587394],[120,311,73,0.04096881290131692],[120,311,74,0.04574098829735655],[120,311,75,0.050510793667957965],[120,311,76,0.05527747422038916],[120,311,77,0.060040311410542876],[120,311,78,0.06479862513407098],[120,311,79,0.06955177595006926],[120,312,64,-6.731093153583556E-5],[120,312,65,0.00472518134388028],[120,312,66,0.009522142293209065],[120,312,67,0.014322571328098138],[120,312,68,0.019125487496984075],[120,312,69,0.02392993143916973],[120,312,70,0.028734967372154807],[120,312,71,0.033539685112059486],[120,312,72,0.0383432021271939],[120,312,73,0.04314466562460888],[120,312,74,0.04794325467003992],[120,312,75,0.052738182340695744],[120,312,76,0.057528697911303495],[120,312,77,0.06231408907324312],[120,312,78,0.06709368418680386],[120,312,79,0.07186685456658343],[120,313,64,0.001717223531201434],[120,313,65,0.00654670266697592],[120,313,66,0.011379444262622995],[120,313,67,0.016214434880090584],[120,313,68,0.021050682327701492],[120,313,69,0.02588721766931519],[120,313,70,0.030723097267334132],[120,313,71,0.03555740485939618],[120,313,72,0.040389253668803596],[120,313,73,0.045217788548524845],[120,313,74,0.05004218815918214],[120,313,75,0.054861667180474555],[120,313,76,0.059675478556449224],[120,313,77,0.06448291577445478],[120,313,78,0.06928331517780628],[120,313,79,0.07407605831218667],[120,314,64,0.0034048370862363037],[120,314,65,0.00827038065763111],[120,314,66,0.013138015081029658],[120,314,67,0.018006714015841058],[120,314,68,0.022875473941551344],[120,314,69,0.027743316221254893],[120,314,70,0.03260928919962407],[120,314,71,0.037472470335150054],[120,314,72,0.042331968366711714],[120,314,73,0.04718692551430434],[120,314,74,0.05203651971434528],[120,314,75,0.056879966889000794],[120,314,76,0.06171652324995336],[120,314,77,0.06654548763643728],[120,314,78,0.07136620388757667],[120,314,79,0.07617806324904738],[120,315,64,0.00499449164018545],[120,315,65,0.009895159209987778],[120,315,66,0.01479678123874155],[120,315,67,0.01969831843498529],[120,315,68,0.02459875586438634],[120,315,69,0.029497105066908974],[120,315,70,0.03439240620900494],[120,315,71,0.03928373027066251],[120,315,72,0.04417018126736916],[120,315,73,0.049050898506819235],[120,315,74,0.0539250588807855],[120,315,75,0.058791879191597646],[120,315,76,0.06365061851364587],[120,315,77,0.06850058058974015],[120,315,78,0.07334111626235668],[120,315,79,0.07817162593979551],[120,316,64,0.006485222483462533],[120,316,65,0.011420056289626751],[120,316,66,0.0163547439592657],[120,316,67,0.021288233206267576],[120,316,68,0.026219497601317004],[120,316,69,0.03114753874193721],[120,316,70,0.036071388458141174],[120,316,71,0.04099011105352232],[120,316,72,0.04590280558184112],[120,316,73,0.05080860815894023],[120,316,74,0.05570669431040673],[120,316,75,0.060596281354421355],[120,316,76,0.06547663082021857],[120,316,77,0.07034705090198276],[120,316,78,0.07520689894821561],[120,316,79,0.08005558398659621],[120,317,64,0.007876138663569704],[120,317,65,0.012844164315837403],[120,317,66,0.017810979590257903],[120,317,67,0.022775519166887692],[120,317,68,0.027736745044149358],[120,317,69,0.03269364876096931],[120,317,70,0.03764525365510127],[120,317,71,0.04259061715747059],[120,317,72,0.047528833122592956],[120,317,73,0.052459034194899556],[120,317,74,0.05738039421139121],[120,317,75,0.06229213064005629],[120,317,76,0.06719350705447949],[120,317,77,0.07208383564446594],[120,317,78,0.07696247976271595],[120,317,79,0.08182885650757127],[120,318,64,0.009166423300949939],[120,318,65,0.014166650485965937],[120,318,66,0.019164639936095407],[120,318,67,0.024159313263017596],[120,318,68,0.0291496208195699],[120,318,69,0.03413454397317417],[120,318,70,0.039113097416027365],[120,318,71,0.044084331511886204],[120,318,72,0.04904733467950281],[120,318,73,0.05400123581254199],[120,318,74,0.05894520673640333],[120,318,75,0.0638784647013817],[120,318,76,0.06880027491259505],[120,318,77,0.07370995309650286],[120,318,78,0.07860686810404965],[120,318,79,0.08349044455045698],[120,319,64,0.010355333847447246],[120,319,65,0.015386757041892352],[120,319,66,0.020414952532114505],[120,319,67,0.02543882883154469],[120,319,68,0.030457324578129608],[120,319,69,0.035469410858222944],[120,319,70,0.040474093567810815],[120,319,71,0.045470415810904746],[120,319,72,0.05045746033515658],[120,319,73,0.05543435200452557],[120,319,74,0.06040026030942358],[120,319,75,0.06535440191376937],[120,319,76,0.07029604323938132],[120,319,77,0.07522450308753303],[120,319,78,0.08013915529770574],[120,319,79,0.08503943144356013],[121,-64,64,-0.13204863639170716],[121,-64,65,-0.13581075372938012],[121,-64,66,-0.13945621746915804],[121,-64,67,-0.14298357223642777],[121,-64,68,-0.14639152351456575],[121,-64,69,-0.14967894341003585],[121,-64,70,-0.15284487648196188],[121,-64,71,-0.155888545636077],[121,-64,72,-0.15880935808306806],[121,-64,73,-0.16160691136122218],[121,-64,74,-0.1642809994236255],[121,-64,75,-0.1668316187895752],[121,-64,76,-0.16925897476046914],[121,-64,77,-0.17156348770004914],[121,-64,78,-0.17374579937904422],[121,-64,79,-0.1758067793841961],[121,-63,64,-0.1264369188144907],[121,-63,65,-0.13018707622927606],[121,-63,66,-0.13382115649633486],[121,-63,67,-0.13733770143316437],[121,-63,68,-0.14073541316458305],[121,-63,69,-0.1440131598799299],[121,-63,70,-0.14716998165475526],[121,-63,71,-0.15020509633691037],[121,-63,72,-0.15311790549704574],[121,-63,73,-0.15590800044343667],[121,-63,74,-0.15857516830137397],[121,-63,75,-0.16111939815678888],[121,-63,76,-0.16354088726437555],[121,-63,77,-0.16584004732008328],[121,-63,78,-0.16801751079803118],[121,-63,79,-0.1700741373518182],[121,-62,64,-0.12074426110925784],[121,-62,65,-0.12448169992495361],[121,-62,66,-0.12810366552170582],[121,-62,67,-0.13160869681071863],[121,-62,68,-0.134995492432734],[121,-62,69,-0.13826291650688238],[121,-62,70,-0.14141000444404406],[121,-62,71,-0.1444359688246244],[121,-62,72,-0.1473402053407611],[121,-62,73,-0.1501222988028731],[121,-62,74,-0.1527820292107943],[121,-62,75,-0.15531937788916172],[121,-62,76,-0.15773453368731571],[121,-62,77,-0.1600278992435934],[121,-62,78,-0.16220009731405727],[121,-62,79,-0.16425197716564277],[121,-61,64,-0.11497496240680938],[121,-61,65,-0.11869893126778586],[121,-61,66,-0.12230805799807964],[121,-61,67,-0.12580087850562183],[121,-61,68,-0.12917608782329104],[121,-61,69,-0.1324325458489699],[121,-61,70,-0.13556928315013062],[121,-61,71,-0.13858550683285453],[121,-61,72,-0.14148060647529825],[121,-61,73,-0.1442541601255205],[121,-61,74,-0.1469059403639159],[121,-61,75,-0.14943592042991394],[121,-61,76,-0.15184428041321574],[121,-61,77,-0.15413141350943627],[121,-61,78,-0.1562979323402025],[121,-61,79,-0.1583446753376888],[121,-60,64,-0.1091333677688966],[121,-60,65,-0.11284312313363709],[121,-60,66,-0.11643869427852493],[121,-60,67,-0.1199186140127253],[121,-60,68,-0.12328157363927661],[121,-60,69,-0.12652642868591735],[121,-60,70,-0.12965220470045347],[121,-60,71,-0.13265810311058002],[121,-60,72,-0.13554350714816743],[121,-60,73,-0.1383079878379272],[121,-60,74,-0.14095131005069794],[121,-60,75,-0.1434734386210199],[121,-60,76,-0.14587454452926196],[121,-60,77,-0.14815501114817065],[121,-60,78,-0.15031544055389867],[121,-60,79,-0.15235665990148006],[121,-59,64,-0.1032238632877247],[121,-59,65,-0.10691866991264687],[121,-59,66,-0.11049997669684708],[121,-59,67,-0.11396631325677642],[121,-59,68,-0.11731636704554937],[121,-59,69,-0.12054898907410094],[121,-59,70,-0.12366319969690276],[121,-59,71,-0.1266581944621532],[121,-59,72,-0.12953335002644595],[121,-59,73,-0.1322882301338374],[121,-59,74,-0.13492259165955245],[121,-59,75,-0.13743639071799463],[121,-59,76,-0.13982978883532748],[121,-59,77,-0.14210315918649474],[121,-59,78,-0.14425709289673694],[121,-59,79,-0.14629240540757404],[121,-58,64,-0.09725087106005825],[121,-58,65,-0.10093000247314532],[121,-58,66,-0.10449634452173917],[121,-58,67,-0.10794842353723766],[121,-58,68,-0.11128492300471371],[121,-58,69,-0.11450468927396928],[121,-58,70,-0.11760673733517868],[121,-58,71,-0.12059025665900869],[121,-58,72,-0.12345461710124561],[121,-58,73,-0.12619937487183008],[121,-58,74,-0.12882427856855405],[121,-58,75,-0.1313292752750741],[121,-58,76,-0.1337145167235151],[121,-58,77,-0.13598036552153148],[121,-58,78,-0.13812740144387892],[121,-58,79,-0.14015642778847226],[121,-57,64,-0.09121884403624869],[121,-57,65,-0.09488158300001526],[121,-57,66,-0.09843226878493061],[121,-57,67,-0.10186942434666535],[121,-57,68,-0.10519172908617003],[121,-57,69,-0.10839802455021141],[121,-57,70,-0.11148732019650831],[121,-57,71,-0.1144587992233661],[121,-57,72,-0.11731182446383226],[121,-57,73,-0.12004594434427884],[121,-57,74,-0.12266089890766085],[121,-57,75,-0.12515662590110932],[121,-57,76,-0.12753326692813283],[121,-57,77,-0.12979117366529214],[121,-57,78,-0.13193091414339975],[121,-57,79,-0.1339532790932274],[121,-56,64,-0.08513226074403157],[121,-56,65,-0.08877789970735506],[121,-56,66,-0.09231224698318063],[121,-56,67,-0.09573382206249581],[121,-56,68,-0.09904130014816281],[121,-56,69,-0.10223351784451662],[121,-56,70,-0.10530947891157749],[121,-56,71,-0.10826836008378271],[121,-56,72,-0.11110951695324855],[121,-56,73,-0.1138324899174854],[121,-56,74,-0.11643701019179509],[121,-56,75,-0.11892300588602867],[121,-56,76,-0.12129060814596238],[121,-56,77,-0.12354015735916468],[121,-56,78,-0.12567220942540824],[121,-56,79,-0.12768754209160216],[121,-55,64,-0.07899561988694237],[121,-55,65,-0.08262346142528787],[121,-55,66,-0.08614079765396265],[121,-55,67,-0.0895461445120902],[121,-55,68,-0.09283817289265905],[121,-55,69,-0.09601571432076983],[121,-55,70,-0.0990777666965158],[121,-55,71,-0.10202350010239603],[121,-55,72,-0.10485226267527759],[121,-55,73,-0.10756358654282483],[121,-55,74,-0.11015719382462708],[121,-55,75,-0.11263300269770571],[121,-55,76,-0.11499113352665014],[121,-55,77,-0.11723191505826858],[121,-55,78,-0.11935589068079144],[121,-55,79,-0.12136382474761864],[121,-54,64,-0.07281343481765556],[121,-54,65,-0.0764227920612186],[121,-54,66,-0.07992245482514537],[121,-54,67,-0.08331093541133949],[121,-54,68,-0.08658690029337601],[121,-54,69,-0.0897491757829948],[121,-54,70,-0.09279675376124341],[121,-54,71,-0.09572879747416652],[121,-54,72,-0.09854464739306201],[121,-54,73,-0.10124382713921942],[121,-54,74,-0.10382604947337182],[121,-54,75,-0.10629122234954391],[121,-54,76,-0.10863945503354389],[121,-54,77,-0.11087106428598748],[121,-54,78,-0.11298658060988798],[121,-54,79,-0.11498675456280805],[121,-53,64,-0.06659022788609503],[121,-53,65,-0.07018042493539489],[121,-53,66,-0.07366176233852262],[121,-53,67,-0.07703274867668097],[121,-53,68,-0.08029204589680139],[121,-53,69,-0.0834384749658913],[121,-53,70,-0.08647102159003628],[121,-53,71,-0.08938884199797059],[121,-53,72,-0.09219126878922657],[121,-53,73,-0.0948778168467842],[121,-53,74,-0.09744818931444732],[121,-53,75,-0.09990228363863118],[121,-53,76,-0.10224019767481496],[121,-53,77,-0.1044622358585302],[121,-53,78,-0.10656891544094593],[121,-53,79,-0.10856097278901622],[121,-52,64,-0.06033052466215971],[121,-52,65,-0.06390089699060686],[121,-52,66,-0.06736326804702897],[121,-52,67,-0.07071614261036463],[121,-52,68,-0.07395817799604687],[121,-52,69,-0.07708818969780362],[121,-52,70,-0.08010515709413668],[121,-52,71,-0.08300822921937656],[121,-52,72,-0.08579673059933757],[121,-52,73,-0.0884701671514817],[121,-52,74,-0.09102823214982925],[121,-52,75,-0.0934708122542951],[121,-52,76,-0.09579799360470231],[121,-52,77,-0.09801006797935075],[121,-52,78,-0.10010753901819269],[121,-52,79,-0.10209112851059055],[121,-51,64,-0.05403884803337111],[121,-51,65,-0.05758874287634108],[121,-51,66,-0.06103151788595351],[121,-51,67,-0.06436567395928716],[121,-51,68,-0.06758986367784692],[121,-51,69,-0.07070289693643772],[121,-51,70,-0.07370374663673174],[121,-51,71,-0.07659155444542753],[121,-51,72,-0.07936563661702101],[121,-51,73,-0.08202548988110459],[121,-51,74,-0.08457079739442419],[121,-51,75,-0.08700143475737787],[121,-51,76,-0.08931747609520568],[121,-51,77,-0.09151920020375137],[121,-51,78,-0.09360709675984358],[121,-51,79,-0.09558187259627415],[121,-50,64,-0.04771971217730209],[121,-50,65,-0.051248488907239875],[121,-50,66,-0.0546710498180073],[121,-50,67,-0.05798589184723646],[121,-50,68,-0.061191662742558384],[121,-50,69,-0.06428716667717804],[121,-50,70,-0.06727136993015159],[121,-50,71,-0.07014340663127294],[121,-50,72,-0.07290258457058563],[121,-50,73,-0.07554839107243716],[121,-50,74,-0.07808049893430657],[121,-50,75,-0.08049877243008452],[121,-50,76,-0.08280327337806459],[121,-50,77,-0.08499426727351655],[121,-50,78,-0.08707222948589421],[121,-50,79,-0.08903785152065624],[121,-49,64,-0.04137761640860571],[121,-49,65,-0.044884646895689495],[121,-49,66,-0.04828638765206705],[121,-49,67,-0.05158133158038092],[121,-49,68,-0.054768121496980626],[121,-49,69,-0.05784555573382488],[121,-49,70,-0.060812593805102955],[121,-49,71,-0.06366836213847937],[121,-49,72,-0.06641215987097693],[121,-49,73,-0.06904346470941636],[121,-49,74,-0.07156193885564277],[121,-49,75,-0.0739674349962216],[121,-49,76,-0.07626000235685448],[121,-49,77,-0.07843989282139663],[121,-49,78,-0.0805075671155181],[121,-49,79,-0.08246370105499667],[121,-48,64,-0.03501703890098096],[121,-48,65,-0.038501707858875966],[121,-48,66,-0.04188203473592744],[121,-48,67,-0.045156508326333444],[121,-48,68,-0.0483237664203352],[121,-48,69,-0.051382601392092386],[121,-48,70,-0.05433196585228517],[121,-48,71,-0.057170978365354896],[121,-48,72,-0.059898929231397835],[121,-48,73,-0.06251528633262915],[121,-48,74,-0.06501970104464472],[121,-48,75,-0.06741201421216936],[121,-48,76,-0.06969226218953706],[121,-48,77,-0.07186068294578574],[121,-48,78,-0.07391772223441184],[121,-48,79,-0.07586403982776735],[121,-47,64,-0.028642430283907006],[121,-47,65,-0.032104135600133255],[121,-47,66,-0.03546246752289939],[121,-47,67,-0.038715910666619724],[121,-47,68,-0.04186309770323371],[121,-47,69,-0.044902814935696145],[121,-47,70,-0.047834007936211176],[121,-47,71,-0.050655787249115125],[121,-47,72,-0.05336743415842726],[121,-47,73,-0.05596840651998258],[121,-47,74,-0.05845834465837796],[121,-47,75,-0.06083707732841537],[121,-47,76,-0.06310462774129277],[121,-47,77,-0.0652612196554212],[121,-47,78,-0.06730728353191595],[121,-47,79,-0.0692434627547418],[121,-46,64,-0.022258207113988515],[121,-46,65,-0.025696360164431997],[121,-46,66,-0.029032129012087515],[121,-46,67,-0.03226399402239788],[121,-46,68,-0.03539058265947592],[121,-46,69,-0.03841067504486906],[121,-46,70,-0.04132320958107705],[121,-46,71,-0.04412728863973525],[121,-46,72,-0.04682218431447349],[121,-46,73,-0.04940734423837634],[121,-46,74,-0.05188239746626355],[121,-46,75,-0.05424716042148514],[121,-46,76,-0.05650164290747428],[121,-46,77,-0.05864605418393998],[121,-46,78,-0.06068080910774731],[121,-46,79,-0.06260653433846464],[121,-45,64,-0.01586874522122761],[121,-45,65,-0.019282771168325663],[121,-45,66,-0.02259542206267684],[121,-45,67,-0.02580517395374382],[121,-45,68,-0.028910649010999823],[121,-45,69,-0.031910621067631206],[121,-45,70,-0.03480402122900372],[121,-45,71,-0.0375899435458078],[121,-45,72,-0.040267650751892314],[121,-45,73,-0.042836580066711316],[121,-45,74,-0.04529634906260471],[121,-45,75,-0.047646761596603415],[121,-45,76,-0.04988781380700913],[121,-45,77,-0.05201970017462254],[121,-45,78,-0.0540428196486743],[121,-45,79,-0.05595778183743372],[121,-44,64,-0.009478372930075252],[121,-44,65,-0.012867711004197702],[121,-44,66,-0.01615670258206392],[121,-44,67,-0.01934381933235163],[121,-44,68,-0.02242767804582735],[121,-44,69,-0.025407046163655744],[121,-44,70,-0.028280847370490636],[121,-44,71,-0.031048167252251457],[121,-44,72,-0.033708259018605746],[121,-44,73,-0.036260549290072275],[121,-44,74,-0.038704643949972195],[121,-44,75,-0.041040334060919004],[121,-44,76,-0.04326760184609024],[121,-44,77,-0.045386626735164914],[121,-44,78,-0.04739779147497292],[121,-44,79,-0.0493016883048345],[121,-43,64,-0.0030913641550808224],[121,-43,65,-0.006455467918642599],[121,-43,66,-0.009720272587667611],[121,-43,67,-0.012884245387475013],[121,-43,68,-0.015945997648831756],[121,-43,69,-0.01890429032055696],[121,-43,70,-0.021758039546912356],[121,-43,71,-0.02450632230969685],[121,-43,72,-0.027148382135052218],[121,-43,73,-0.02968363486490766],[121,-43,74,-0.032111674493279785],[121,-43,75,-0.034432279067124205],[121,-43,76,-0.036645416651982066],[121,-43,77,-0.038751251362302286],[121,-43,78,-0.04075014945648869],[121,-43,79,-0.04264268549664829],[121,-42,64,0.003288068628516605],[121,-42,65,-5.0268965309463454E-5],[121,-42,66,-0.0032903731427514904],[121,-42,67,-0.0064307066254435385],[121,-42,68,-0.009469875205667],[121,-42,69,-0.012406633242938891],[121,-42,70,-0.01523988922539421],[121,-42,71,-0.017968711395885295],[121,-42,72,-0.020592333442804422],[121,-42,73,-0.023110160255554346],[121,-42,74,-0.02552177374488751],[121,-42,75,-0.02782693872780806],[121,-42,76,-0.030025608877280785],[121,-42,77,-0.03211793273662489],[121,-42,78,-0.034104259798646286],[121,-42,79,-0.03598514664948238],[121,-41,64,0.00965578153943436],[121,-41,65,0.006343727167959945],[121,-41,66,0.00312882283391569],[121,-41,67,1.2610377415289697E-5],[121,-41,68,-0.0030035103796804963],[121,-41,69,-0.005918287114030418],[121,-41,70,-0.008730620545890022],[121,-41,71,-0.01143957004891194],[121,-41,72,-0.01404435932468362],[121,-41,73,-0.01654438214192422],[121,-41,74,-0.018939208140558716],[121,-41,75,-0.021228588700368256],[121,-41,76,-0.02341246287445653],[121,-41,77,-0.025490963387415078],[121,-41,78,-0.027464422698234126],[121,-41,79,-0.029333379127939985],[121,-40,64,0.01600770657037698],[121,-40,65,0.012722437457849067],[121,-40,66,0.00953321788471051],[121,-40,67,0.006441594308602361],[121,-40,68,0.003448972238337844],[121,-40,69,5.566107702439371E-4],[121,-40,70,-0.002234382940316082],[121,-40,71,-0.004923059272152974],[121,-40,72,-0.007508631796212639],[121,-40,73,-0.009990482998203709],[121,-40,74,-0.012368170066116235],[121,-40,75,-0.014641430742324602],[121,-40,76,-0.016810189240519136],[121,-40,77,-0.018874562227345626],[121,-40,78,-0.020834864868803704],[121,-40,79,-0.02269161694137878],[121,-39,64,0.022339858993140504],[121,-39,65,0.019081861969834635],[121,-39,66,0.01591879745580438],[121,-39,67,0.012852216579709919],[121,-39,68,0.009883530607260549],[121,-39,69,0.007014005494447972],[121,-39,70,0.004244756375952341],[121,-39,71,0.0015767419888012002],[121,-39,72,-9.892409687268788E-4],[121,-39,73,-0.0034525635428812596],[121,-39,74,-0.005812770295114844],[121,-39,75,-0.00806958513735756],[121,-39,76,-0.010222917232127648],[121,-39,77,-0.012272866957360185],[121,-39,78,-0.01421973193600623],[121,-39,79,-0.01606401313037542],[121,-38,64,0.028648344888941746],[121,-38,65,0.02541809140814677],[121,-38,66,0.02228163746596412],[121,-38,67,0.019240538913266936],[121,-38,68,0.01629621283972771],[121,-38,69,0.01344993214421697],[121,-38,70,0.010702820040363381],[121,-38,71,0.008055844497361297],[121,-38,72,0.005509812616007692],[121,-38,73,0.0030653649400484984],[121,-38,74,7.229697026210902E-4],[121,-38,75,-0.0015170829919154416],[121,-38,76,-0.003654687050994254],[121,-38,77,-0.005689926341584939],[121,-38,78,-0.0076230807027146685],[121,-38,79,-0.009454632022746101],[121,-37,64,0.03492936880414221],[121,-37,65,0.031727314791597405],[121,-37,66,0.02861791200167274],[121,-37,67,0.02560272105634498],[121,-37,68,0.022683164933431477],[121,-37,69,0.01986052355441692],[121,-37,70,0.017135928307433823],[121,-37,71,0.014510356505478272],[121,-37,72,0.011984625779847602],[121,-37,73,0.009559388408878933],[121,-37,74,0.007235125581770974],[121,-37,75,0.0050121415977865125],[121,-37,76,0.0028905580006005627],[121,-37,77,8.703076479091854E-4],[121,-37,78,-0.0010488712837500858],[121,-37,79,-0.002867441358941236],[121,-36,64,0.04117924153101993],[121,-36,65,0.03800582725493229],[121,-36,66,0.03492390113822608],[121,-36,67,0.03193502862057129],[121,-36,68,0.029040638629223015],[121,-36,69,0.02624201818453198],[121,-36,70,0.02354030694059761],[121,-36,71,0.020936491661149637],[121,-36,72,0.018431400630641193],[121,-36,73,0.016025698000631916],[121,-36,74,0.013719878071248748],[121,-36,75,0.011514259508015656],[121,-36,76,0.00940897949382069],[121,-36,77,0.007403987816133273],[121,-36,78,0.005499040889426654],[121,-36,79,0.0036936957128248515],[121,-35,64,0.04739438801387874],[121,-35,65,0.044250037975986034],[121,-35,66,0.04119599888708947],[121,-35,67,0.038233841048840755],[121,-35,68,0.035364999396338526],[121,-35,69,0.032590768121563585],[121,-35,70,0.02991229523195349],[121,-35,71,0.027330577044192172],[121,-35,72,0.024846452613205172],[121,-35,73,0.022460598096434303],[121,-35,74,0.02017352105318304],[121,-35,75,0.017985554679319504],[121,-35,76,0.015896851977110327],[121,-35,77,0.013907379860294888],[121,-35,78,0.012016913194355938],[121,-35,79,0.010225028772005818],[121,-34,64,0.053571355380283125],[121,-34,65,0.05045647822843957],[121,-34,66,0.04743072126930736],[121,-34,67,0.04449565970851599],[121,-34,68,0.04165273454452778],[121,-34,69,0.03890324721023719],[121,-34,70,0.03624835414969818],[121,-34,71,0.033689061330059666],[121,-34,72,0.031226218688698237],[121,-34,73,0.02886051451562155],[121,-34,74,0.02659246977093388],[121,-34,75,0.024422432337651512],[121,-34,76,0.02235057120963957],[121,-34,77,0.02037687061478144],[121,-34,78,0.01850112407333593],[121,-34,79,0.016722928391501246],[121,-33,64,0.05970682109769421],[121,-33,65,0.05662180956045004],[121,-33,66,0.0536247145152422],[121,-33,67,0.05071711611138929],[121,-33,68,0.04790046146336602],[121,-33,69,0.04517605931078916],[121,-33,70,0.04254507461352375],[121,-33,71,0.0400085230819921],[121,-33,72,0.03756726564266977],[121,-33,73,0.03522200283884391],[121,-33,74,0.0329732691664274],[121,-33,75,0.030821427345113284],[121,-33,76,0.028766662524643216],[121,-33,77,0.02680897642630009],[121,-33,78,0.02494818141958044],[121,-33,79,0.02318389453406644],[121,-32,64,0.06579760125518053],[121,-32,65,0.06274283209882658],[121,-32,66,0.05977476339031018],[121,-32,67,0.05689498026008244],[121,-32,68,0.05410493598841848],[121,-32,69,0.051405946684005666],[121,-32,70,0.048799185897647646],[121,-32,71,0.04628567917116089],[121,-32,72,0.04386629852145152],[121,-32,73,0.04154175685984629],[121,-32,74,0.039312602346472936],[121,-32,75,0.037179212679971596],[121,-32,76,0.03514178932231238],[121,-32,77,0.03320035165883184],[121,-32,78,0.03135473109343856],[121,-32,79,0.029604565079012213],[121,-31,64,0.07184065897035863],[121,-31,65,0.06881649297890746],[121,-31,66,0.06587779964687501],[121,-31,67,0.06302616912103542],[121,-31,68,0.06026306089441047],[121,-31,69,0.057589798503668854],[121,-31,70,0.05500756416163188],[121,-31,71,0.052517393324965855],[121,-31,72,0.050120169197047426],[121,-31,73,0.04781661716607444],[121,-31,74,0.04560729917822026],[121,-31,75,0.04349260804611066],[121,-31,76,0.04147276169240122],[121,-31,77,0.039547797328563505],[121,-31,78,0.03771756556883521],[121,-31,79,0.03598172447935666],[121,-30,64,0.07783311292172046],[121,-30,65,0.07483989490029797],[121,-30,66,0.07193091060245416],[121,-30,67,0.06910775522424528],[121,-30,68,0.06637189451556957],[121,-30,69,0.06372465949657269],[121,-30,70,0.061167241109153614],[121,-30,71,0.05870068480364998],[121,-30,72,0.056325885060688585],[121,-30,73,0.05404357984827557],[121,-30,74,0.05185434501392261],[121,-30,75,0.04975858861208826],[121,-30,76,0.047756545166714015],[121,-30,77,0.04584826986896007],[121,-30,78,0.04403363271010041],[121,-30,79,0.042312312549595776],[121,-29,64,0.08377224600602806],[121,-29,65,0.08081030480814733],[121,-29,66,0.07793134784391897],[121,-29,67,0.07513697538943476],[121,-29,68,0.07242865949281019],[121,-29,69,0.06980773870978174],[121,-29,70,0.0672754127744013],[121,-29,71,0.06483273720490146],[121,-29,72,0.06248061784472103],[121,-29,73,0.060219805338761145],[121,-29,74,0.05805088954467397],[121,-29,75,0.05597429387945718],[121,-29,76,0.053990269601137064],[121,-29,77,0.05209889002564583],[121,-29,78,0.05030004467885141],[121,-29,79,0.04859343338375621],[121,-28,64,0.08965551412094841],[121,-28,65,0.08672516270013564],[121,-28,66,0.08387653605785739],[121,-28,67,0.08111123957881916],[121,-28,68,0.078430751647937],[121,-28,69,0.07583641840530775],[121,-28,70,0.0733294484362681],[121,-28,71,0.07091090739661854],[121,-28,72,0.0685817125730025],[121,-28,73,0.06634262737850782],[121,-28,74,0.06419425578329674],[121,-28,75,0.0621370366805335],[121,-28,76,0.06017123818739534],[121,-28,77,0.058296951881271375],[121,-28,78,0.05651408697110638],[121,-28,79,0.054822364403909196],[121,-27,64,0.09548055507306341],[121,-27,65,0.09258209055931077],[121,-27,66,0.08976408198724328],[121,-27,67,0.0870281398766134],[121,-27,68,0.08437574898500566],[121,-27,69,0.08180826308234446],[121,-27,70,0.07932689966048823],[121,-27,71,0.07693273457798122],[121,-27,72,0.07462669663995392],[121,-27,73,0.07240956211324134],[121,-27,74,0.0702819491765233],[121,-27,75,0.06824431230575556],[121,-27,76,0.06629693659467895],[121,-27,77,0.06443993201051113],[121,-27,78,0.062673227584776],[121,-27,79,0.06099656553929356],[121,-26,64,0.10124519761095885],[121,-26,65,0.09837890141247563],[121,-26,66,0.09559178351410635],[121,-26,67,0.0928854595949794],[121,-26,68,0.09026142081853994],[121,-26,69,0.08772102862675668],[121,-26,70,0.08526550946940714],[121,-26,71,0.0828959494685193],[121,-26,72,0.08061328901795284],[121,-26,73,0.0784183173181936],[121,-26,74,0.0763116668461643],[121,-26,75,0.0742938077603219],[121,-26,76,0.07236504224082507],[121,-26,77,0.0705254987648799],[121,-26,78,0.0687751263172186],[121,-26,79,0.06711368853573052],[121,-25,64,0.1069474705835457],[121,-25,65,0.10411360851427798],[121,-25,66,0.10135763886836069],[121,-25,67,0.09868118250656288],[121,-25,68,0.09608573702875833],[121,-25,69,0.09357267158797844],[121,-25,70,0.09114322163954325],[121,-25,71,0.0887984836253386],[121,-25,72,0.08653940959323136],[121,-25,73,0.08436680175168976],[121,-25,74,0.08228130695941738],[121,-25,75,0.08028341115026638],[121,-25,76,0.07837343369321681],[121,-25,77,0.07655152168752832],[121,-25,78,0.07481764419301884],[121,-25,79,0.07317158639549315],[121,-24,64,0.1125856122237574],[121,-24,65,0.10978443465715093],[121,-24,66,0.10705985596293799],[121,-24,67,0.10441350220377543],[121,-24,68,0.10184687744396026],[121,-24,69,0.09936135858347361],[121,-24,70,0.09695819012709384],[121,-24,71,0.09463847888865318],[121,-24,72,0.0924031886304264],[121,-24,73,0.09025313463772078],[121,-24,74,0.08818897822847438],[121,-24,75,0.08621122119812674],[121,-24,76,0.08432020019955433],[121,-24,77,0.0825160810581701],[121,-24,78,0.0807988530221474],[121,-24,79,0.07916832294778586],[121,-23,64,0.11815807955732949],[121,-23,65,0.115389821606806],[121,-23,66,0.11269686185492644],[121,-23,67,0.11008083158451276],[121,-23,68,0.10754324134977011],[121,-23,69,0.10508547583044947],[121,-23,70,0.10270878862107569],[121,-23,71,0.10041429695531656],[121,-23,72,0.09820297636547703],[121,-23,73,0.0960756552771902],[121,-23,74,0.09403300953911364],[121,-23,75,0.09207555688789248],[121,-23,76,0.09020365134818209],[121,-23,77,0.0884174775678307],[121,-23,78,0.08671704508818245],[121,-23,79,0.08510218254951774],[121,-22,64,0.12366355793680806],[121,-22,65,0.12092843966342859],[121,-22,66,0.11826731233286436],[121,-22,67,0.11568181246446818],[121,-22,68,0.11317345712538995],[121,-22,69,0.1107436388049804],[121,-22,70,0.10839362022425747],[121,-22,71,0.1061245290805104],[121,-22,72,0.10393735272702309],[121,-22,73,0.10183293278799],[121,-22,74,0.09981195970843515],[121,-22,75,0.09787496723939093],[121,-22,76,0.09602232685813261],[121,-22,77,0.09425424212357125],[121,-22,78,0.09257074296675905],[121,-22,79,0.09097167991652921],[121,-21,64,0.12910097070093962],[121,-21,65,0.1263991973487254],[121,-21,66,0.12377010163034297],[121,-21,67,0.12121532531618817],[121,-21,68,0.11873639200701502],[121,-21,69,0.116334702028695],[121,-21,70,0.11401152726203756],[121,-21,71,0.11176800590774061],[121,-21,72,0.10960513718646003],[121,-21,73,0.10752377597406515],[121,-21,74,0.10552462737189461],[121,-21,75,0.10360824121226697],[121,-21,76,0.10177500649904503],[121,-21,77,0.10002514578335164],[121,-21,78,0.09835870947439618],[121,-21,79,0.09677557008543136],[121,-20,64,0.1344694889591328],[121,-20,65,0.1318012512185165],[121,-20,66,0.12920437226560566],[121,-20,67,0.12668049913456025],[121,-20,68,0.1242311619780968],[121,-20,69,0.12185776898270972],[121,-20,70,0.11956160121894921],[121,-20,71,0.11734380742682615],[121,-20,72,0.11520539873633251],[121,-20,73,0.11314724332314274],[121,-20,74,0.11117006099931426],[121,-20,75,0.1092744177392364],[121,-20,76,0.10746072014063146],[121,-20,77,0.10572920982070122],[121,-20,78,0.1040799577473831],[121,-20,79,0.10251285850573133],[121,-19,64,0.1397685415011628],[121,-19,65,0.13713401580104279],[121,-19,66,0.13456952500731567],[121,-19,67,0.1320767214289048],[121,-19,68,0.12965714178662957],[121,-19,69,0.1273122021489841],[121,-19,70,0.1250431928029705],[121,-19,71,0.12285127306005561],[121,-19,72,0.12073746599724033],[121,-19,73,0.11870265313330453],[121,-19,74,0.11674756904005001],[121,-19,75,0.11487279588878796],[121,-19,76,0.11307875793187305],[121,-19,77,0.11136571591938282],[121,-19,78,0.10973376145090097],[121,-19,79,0.1081828112624229],[121,-18,64,0.14499782483224388],[121,-18,65,0.14239717366111226],[121,-18,66,0.13986522896661824],[121,-18,67,0.1374036483417993],[121,-18,68,0.13501397508958568],[121,-18,69,0.13269763317922612],[121,-18,70,0.1304559221377649],[121,-18,71,0.12829001187664013],[121,-18,72,0.12620093745339045],[121,-18,73,0.12418959376853389],[121,-18,74,0.12225673019744476],[121,-18,75,0.12040294515746708],[121,-18,76,0.11862868061007581],[121,-18,77,0.11693421649817737],[121,-18,78,0.11531966511851244],[121,-18,79,0.11378496542917771],[121,-17,64,0.1501573133331806],[121,-17,65,0.14759068558979882],[121,-17,66,0.14509143181520834],[121,-17,67,0.14266121489434025],[121,-17,68,0.1403015847242064],[121,-17,69,0.13801397319105246],[121,-17,70,0.1357996890825598],[121,-17,71,0.13365991293516588],[121,-17,72,0.13159569181649133],[121,-17,73,0.12960793404293536],[121,-17,74,0.1276974038322648],[121,-17,75,0.12586471589144044],[121,-17,76,0.12411032993948501],[121,-17,77,0.12243454516548935],[121,-17,78,0.12083749462171767],[121,-17,79,0.1193191395518286],[121,-16,64,0.1552472695457714],[121,-16,65,0.15271480091986323],[121,-16,66,0.15024837012957337],[121,-16,67,0.14784964535801826],[121,-16,68,0.14552018310632375],[121,-16,69,0.1432614231915782],[121,-16,70,0.14107468367983322],[121,-16,71,0.13896115575422086],[121,-16,72,0.1369218985181726],[121,-16,73,0.13495783373380577],[121,-16,74,0.13306974049530162],[121,-16,75,0.13125824983751688],[121,-16,76,0.12952383927963396],[121,-16,77,0.1278668273039485],[121,-16,78,0.1262873677697519],[121,-16,79,0.12478544426232774],[121,-15,64,0.1602682545835492],[121,-15,65,0.15777006796698567],[121,-15,66,0.15533657986150373],[121,-15,67,0.15296946375329612],[121,-15,68,0.1506702827558023],[121,-15,69,0.14844048462852721],[121,-15,70,0.14628139673090834],[121,-15,71,0.14419422091129241],[121,-15,72,0.14218002833101673],[121,-15,73,0.14023975422365043],[121,-15,74,0.13837419258923034],[121,-15,75,0.13658399082372297],[121,-15,76,0.134869644283527],[121,-15,77,0.13323149078510754],[121,-15,78,0.1316697050397252],[121,-15,79,0.13018429302327583],[121,-14,64,0.16522113866764299],[121,-14,65,0.16275734459658964],[121,-14,66,0.16035690693464655],[121,-14,67,0.158021504474665],[121,-14,68,0.15575270694887722],[121,-14,69,0.15355197006863897],[121,-14,70,0.15142063049921983],[121,-14,71,0.14935990076970151],[121,-14,72,0.14737086411797773],[121,-14,73,0.14545446927091266],[121,-14,74,0.14361152515949183],[121,-14,75,0.1418426955691966],[121,-14,76,0.14014849372541727],[121,-14,77,0.13852927681399674],[121,-14,78,0.136985240436865],[121,-14,79,0.1355164130027835],[121,-13,64,0.17010711178785354],[121,-13,65,0.16767780891635242],[121,-13,66,0.1653105179671992],[121,-13,67,0.1630069230422767],[121,-13,68,0.1607686004974861],[121,-13,69,0.15859701400346604],[121,-13,70,0.15649350954135754],[121,-13,71,0.15445931033367677],[121,-13,72,0.15249551171028508],[121,-13,73,0.15060307590951816],[121,-13,74,0.14878282681430388],[121,-13,75,0.14703544462350326],[121,-13,76,0.14536146045828735],[121,-13,77,0.14376125090364278],[121,-13,78,0.14223503248496683],[121,-13,79,0.14078285607977137],[121,-12,64,0.17492769448909484],[121,-12,65,0.17253297009455382],[121,-12,66,0.17019891112089813],[121,-12,67,0.16792720698030683],[121,-12,68,0.16571944065574873],[121,-12,69,0.16357708378272195],[121,-12,70,0.1615014916660401],[121,-12,71,0.1594938982317241],[121,-12,72,0.15755541091398972],[121,-12,73,0.15568700547739112],[121,-12,74,0.153889520773955],[121,-12,75,0.15216365343553206],[121,-12,76,0.1505099525011856],[121,-12,77,0.1489288139797057],[121,-12,78,0.14742047534721303],[121,-12,79,0.14598500997986708],[121,-11,64,0.1796847487829215],[121,-11,65,0.17732467930398266],[121,-11,66,0.17502392707601566],[121,-11,67,0.17278418682176178],[121,-11,68,0.17060704815330807],[121,-11,69,0.16849399067488846],[121,-11,70,0.16644637902072978],[121,-11,71,0.16446545782800126],[121,-11,72,0.1625523466448603],[121,-11,73,0.16070803477365025],[121,-11,74,0.15893337604908964],[121,-11,75,0.15722908355167653],[121,-11,76,0.15559572425612778],[121,-11,77,0.15403371361494356],[121,-11,78,0.15254331007705946],[121,-11,79,0.15112460954160212],[121,-10,64,0.18438048918436734],[121,-10,65,0.1820551407916262],[121,-10,66,0.17978776013259612],[121,-10,67,0.17758004723995957],[121,-10,68,0.17543359835576378],[121,-10,69,0.1733499010553159],[121,-10,70,0.17133032930612246],[121,-10,71,0.1693761384619309],[121,-10,72,0.16748846019186636],[121,-10,73,0.16566829734471855],[121,-10,74,0.16391651874822044],[121,-10,75,0.1622338539435385],[121,-10,76,0.16062088785479922],[121,-10,77,0.15907805539373765],[121,-10,78,0.1576056359994331],[121,-10,79,0.1562037481131473],[121,-9,64,0.1890174938739394],[121,-9,65,0.18672692307398764],[121,-9,66,0.18449296943777216],[121,-9,67,0.1823173383065282],[121,-9,68,0.18020163255203925],[121,-9,69,0.17814734772165486],[121,-9,70,0.17615586711835052],[121,-9,71,0.1742284568158906],[121,-9,72,0.17236626060908355],[121,-9,73,0.17057029489918685],[121,-9,74,0.16884144351430408],[121,-9,75,0.16718045246499003],[121,-9,76,0.16558792463489314],[121,-9,77,0.1640643144065176],[121,-9,78,0.16260992222207238],[121,-9,79,0.16122488907942178],[121,-8,64,0.19359871598496403],[121,-8,65,0.19134297025822744],[121,-8,66,0.18914249033936015],[121,-8,67,0.1869989868761175],[121,-8,68,0.18491406936888144],[121,-8,69,0.18288924133682205],[121,-8,70,0.18092589541910253],[121,-8,71,0.17902530841118458],[121,-8,72,0.17718863623622783],[121,-8,73,0.1754169088516343],[121,-8,74,0.17371102509058878],[121,-8,75,0.17207174743880216],[121,-8,76,0.17049969674629417],[121,-8,77,0.16899534687429285],[121,-8,78,0.16755901927722194],[121,-8,79,0.16619087751978678],[121,-7,64,0.1981274950160522],[121,-7,65,0.1959066134888966],[121,-7,66,0.19373964586549985],[121,-7,67,0.1916283080975918],[121,-7,68,0.18957421631225757],[121,-7,69,0.18757888199926254],[121,-7,70,0.18564370713341893],[121,-7,71,0.1837699792320553],[121,-7,72,0.18195886634757508],[121,-7,73,0.18021141199516322],[121,-7,74,0.17852853001548585],[121,-7,75,0.17691099937259325],[121,-7,76,0.17535945888686022],[121,-7,77,0.17387440190304448],[121,-7,78,0.17245617089343057],[121,-7,79,0.17110495199607234],[121,-6,64,0.20260756836879212],[121,-6,65,0.20042158252036713],[121,-6,66,0.19828815833044666],[121,-6,67,0.1962090170518095],[121,-6,68,0.19418578143575727],[121,-6,69,0.1922199709406146],[121,-6,70,0.19031299687527503],[121,-6,71,0.18846615747784445],[121,-6,72,0.18668063292937798],[121,-6,73,0.18495748030276038],[121,-6,74,0.1832976284465807],[121,-6,75,0.1817018728042099],[121,-6,76,0.1801708701679149],[121,-6,77,0.17870513336808924],[121,-6,78,0.17730502589757036],[121,-6,79,0.17597075647105387],[121,-5,64,0.20704308301079022],[121,-5,65,0.20489201741508645],[121,-5,66,0.20279216106664055],[121,-5,67,0.20074524051611697],[121,-5,68,0.19875288513612566],[121,-5,69,0.19681662235090958],[121,-5,70,0.1949378728010771],[121,-5,71,0.19311794544343475],[121,-5,72,0.191358032585909],[121,-5,73,0.1896592048576139],[121,-5,74,0.1880224061139112],[121,-5,75,0.18644844827667373],[121,-5,76,0.18493800610958377],[121,-5,77,0.18349161192854946],[121,-5,78,0.18210965024720505],[121,-5,79,0.18079235235750946],[121,-4,64,0.21143860726381558],[121,-4,65,0.20932248036740475],[121,-4,66,0.2072562102828025],[121,-4,67,0.2052415288553039],[121,-4,68,0.20328007207567733],[121,-4,69,0.2013733753310467],[121,-4,70,0.19952286859081936],[121,-4,71,0.19772987152771293],[121,-4,72,0.19599558857387167],[121,-4,73,0.19432110391212742],[121,-4,74,0.19270737640225521],[121,-4,75,0.19115523444242843],[121,-4,76,0.189665370765711],[121,-4,77,0.1882383371716656],[121,-4,78,0.18687453919304775],[121,-4,79,0.18557423069759538],[121,-3,64,0.21579914271719092],[121,-3,65,0.21371796765312068],[121,-3,66,0.21168529704820205],[121,-3,67,0.20970286803916527],[121,-3,68,0.20777232323173178],[121,-3,69,0.20589520597269417],[121,-3,70,0.20407295555704574],[121,-3,71,0.2023069023702031],[121,-3,72,0.20059826296532768],[121,-3,73,0.19894813507577924],[121,-3,74,0.1973574925625753],[121,-3,75,0.19582718029704171],[121,-3,76,0.19435790897850536],[121,-3,77,0.19295024988709952],[121,-3,78,0.1916046295716547],[121,-3,79,0.19032132447268868],[121,-2,64,0.2201301362665128],[121,-2,65,0.21808392170483137],[121,-2,66,0.21608485940318423],[121,-2,67,0.21413469178676092],[121,-2,68,0.2122350680731665],[121,-2,69,0.21038753956570477],[121,-2,70,0.20859355488170717],[121,-2,71,0.20685445511596245],[121,-2,72,0.20517146893923388],[121,-2,73,0.20354570763192004],[121,-2,74,0.20197816005271307],[121,-2,75,0.20046968754245154],[121,-2,76,0.19902101876301448],[121,-2,77,0.19763274447132728],[121,-2,78,0.1963053122284557],[121,-2,79,0.19503902104379423],[121,-1,64,0.22443749227749588],[121,-1,65,0.22242624331287497],[121,-1,66,0.22046079459574197],[121,-1,67,0.21854289383715242],[121,-1,68,0.21667419686386402],[121,-1,69,0.21485626293282356],[121,-1,70,0.21309054998069932],[121,-1,71,0.21137840980851386],[121,-1,72,0.2097210832013643],[121,-1,73,0.20811969498328586],[121,-1,74,0.20657524900711222],[121,-1,75,0.20508862307953446],[121,-1,76,0.2036605638211928],[121,-1,77,0.20229168146189025],[121,-1,78,0.20098244457088532],[121,-1,79,0.1997331747222857],[121,0,64,0.22872758487504274],[121,0,65,0.2267513039519724],[121,0,66,0.2248194714442432],[121,0,67,0.2229338403467337],[121,0,68,0.22109607309316892],[121,0,69,0.2193077368918086],[121,0,70,0.2175702989961853],[121,0,71,0.21588512191093623],[121,0,72,0.2142534585327317],[121,0,73,0.21267644722633672],[121,0,74,0.21115510683567917],[121,0,75,0.20969033163010742],[121,0,76,0.2082828861856887],[121,0,77,0.20693340020162343],[121,0,78,0.20564236325174168],[121,0,79,0.20441011947109955],[121,1,64,0.23300727035765678],[121,1,65,0.2310659582336858],[121,1,66,0.22916774282642471],[121,1,67,0.22731438241326252],[121,1,68,0.22550754603346568],[121,1,69,0.22374880884507176],[121,1,70,0.2220396474168267],[121,1,71,0.22038143495522267],[121,1,72,0.21877543646662745],[121,1,73,0.21722280385454806],[121,1,74,0.21572457095190467],[121,1,75,0.21428164848848796],[121,1,76,0.21289481899346174],[121,1,77,0.21156473163297884],[121,1,78,0.21029189698288175],[121,1,79,0.20907668173649996],[121,2,64,0.23728346803671663],[121,2,65,0.23537712553752232],[121,2,66,0.23351252813133927],[121,2,67,0.2316914393770514],[121,2,68,0.22991553491839845],[121,2,69,0.2281863978620684],[121,2,70,0.2265055140908414],[121,2,71,0.22487426751182893],[121,2,72,0.22329393523980612],[121,2,73,0.2217656827156802],[121,2,74,0.22029055875996506],[121,2,75,0.218869490561444],[121,2,76,0.21750327860087482],[121,2,77,0.2161925915098084],[121,2,78,0.21493796086449313],[121,2,79,0.2137397759148757],[121,3,64,0.241557001856337],[121,3,65,0.23968564181773633],[121,3,66,0.23785467569266194],[121,3,67,0.23606587231176346],[121,3,68,0.23432091391328247],[121,3,69,0.23262139154235884],[121,3,70,0.2309688003853858],[121,3,71,0.22936453503946386],[121,3,72,0.22780988471694497],[121,3,73,0.22630602838511615],[121,3,74,0.22485402984088732],[121,3,75,0.22345483272066857],[121,3,76,0.22210925544528903],[121,3,77,0.22081798610003156],[121,3,78,0.21958157724975158],[121,3,79,0.2184004406890936],[121,4,64,0.24582376850630033],[121,4,65,0.2439874235054318],[121,4,66,0.24219012241323773],[121,4,67,0.2404336393068388],[121,4,68,0.23871966299304148],[121,4,69,0.23704979242887936],[121,4,70,0.2354255320772063],[121,4,71,0.23384828719738926],[121,4,72,0.2323193590710927],[121,4,73,0.23083994016320175],[121,4,74,0.22941110921775276],[121,4,75,0.22803382628905233],[121,4,76,0.226708927707841],[121,4,77,0.22543712098257174],[121,4,78,0.22421897963577453],[121,4,79,0.22305493797551934],[121,5,64,0.2500795445410058],[121,5,65,0.24827826550230253],[121,5,66,0.24651468229849943],[121,5,67,0.24479057421247158],[121,5,68,0.24310763657779283],[121,5,69,0.24146747622055142],[121,5,70,0.23987160683622],[121,5,71,0.2383214443016275],[121,5,72,0.2368183019220248],[121,5,73,0.2353633856132903],[121,5,74,0.23395778901914688],[121,5,75,0.2326024885635677],[121,5,76,0.23129833843822933],[121,5,77,0.230046065525082],[121,5,78,0.22884626425400767],[121,5,79,0.2276993913955795],[121,6,64,0.25432011965731804],[121,6,65,0.25255397426651605],[121,6,66,0.250824179339997],[121,6,67,0.24913251931057745],[121,6,68,0.24748069598124484],[121,6,69,0.24587032398829817],[121,6,70,0.24430292619954763],[121,6,71,0.2427799290476187],[121,6,72,0.2413026577983549],[121,6,73,0.2398723317543625],[121,6,74,0.23849005939357226],[121,6,75,0.23715683344299165],[121,6,76,0.23587352588750965],[121,6,77,0.23464088291382046],[121,6,78,0.23345951978944135],[121,6,79,0.2323299156768317],[121,7,64,0.2585412998461079],[121,7,65,0.25681037100867693],[121,7,66,0.255114450754535],[121,7,67,0.2534553285958587],[121,7,68,0.25183471273244373],[121,7,69,0.25025422553623194],[121,7,70,0.2487153989709045],[121,7,71,0.247219669946586],[121,7,72,0.24576837560965148],[121,7,73,0.2443627485676806],[121,7,74,0.24300391204943683],[121,7,75,0.24169287500003966],[121,7,76,0.24043052711119672],[121,7,77,0.23921763378656014],[121,7,78,0.23805483104218084],[121,7,79,0.23694262034207403],[121,8,64,0.2627389104885484],[121,8,65,0.26104329483207317],[121,8,66,0.2593813501671382],[121,8,67,0.25775487100026107],[121,8,68,0.2561655718404947],[121,8,69,0.2546150827054149],[121,8,70,0.2531049445621829],[121,8,71,0.25163660470372645],[121,8,72,0.250211412060032],[121,8,73,0.24883061244459093],[121,8,74,0.24749534373587978],[121,8,75,0.24620663099404094],[121,8,76,0.2449653815126298],[121,8,77,0.24377237980549715],[121,8,78,0.2426282825287739],[121,8,79,0.24153361333797696],[121,9,64,0.2669087993972786],[121,9,65,0.26524860581731735],[121,9,66,0.2636207507379595],[121,9,67,0.26202703356093565],[121,9,68,0.2604691750023691],[121,9,69,0.25894881262030733],[121,9,70,0.2574674962773398],[121,9,71,0.2560266835383443],[121,9,72,0.2546277350033549],[121,9,73,0.2532719095755944],[121,9,74,0.2519603596645526],[121,9,75,0.25069412632427235],[121,9,76,0.2494741343267174],[121,9,77,0.24830118717028038],[121,9,78,0.24717596202340908],[121,9,79,0.24609900460335965],[121,10,64,0.27104683980253896],[121,10,65,0.26942218805148793],[121,10,66,0.26782854823323393],[121,10,67,0.2662677245318139],[121,10,68,0.26474144375390946],[121,10,69,0.2632513508780145],[121,10,70,0.2617990045387028],[121,10,71,0.26038587244603756],[121,10,72,0.25901332674011673],[121,10,73,0.2576826392807947],[121,10,74,0.25639497687246565],[121,10,75,0.2551513964240674],[121,10,76,0.25395284004417895],[121,10,77,0.2528001300712739],[121,10,78,0.25169396403910416],[121,10,79,0.2506349095772258],[121,11,64,0.2751489332830647],[121,11,65,0.273559952601557],[121,11,66,0.2720006640400646],[121,11,67,0.2704728764385767],[121,11,68,0.2689783225638093],[121,11,69,0.26751865468010755],[121,11,70,0.2660954400554669],[121,11,71,0.2647101564027124],[121,11,72,0.2633641872558313],[121,11,73,0.26205881728149727],[121,11,74,0.2607952275256764],[121,11,75,0.2595744905954665],[121,11,76,0.2583975657760506],[121,11,77,0.25726529408282045],[121,11,78,0.25617839324865],[121,11,79,0.2551374526463247],[121,12,64,0.27921101264184633],[121,12,65,0.2776578404322115],[121,12,66,0.2761330481251481],[121,12,67,0.2746384490771286],[121,12,68,0.2731757818706808],[121,12,69,0.27174670590713307],[121,12,70,0.2703527969344987],[121,12,71,0.26899554251053975],[121,12,72,0.26767633740100455],[121,12,73,0.2663964789130771],[121,12,74,0.26515716216392926],[121,12,75,0.263959475284527],[121,12,76,0.26280439455857035],[121,12,77,0.2616927794966259],[121,12,78,0.2606253678454271],[121,12,79,0.2596027705323545],[121,13,64,0.28322904472685967],[121,13,65,0.2817118252681736],[121,13,66,0.28022168193754704],[121,13,67,0.2787604324556828],[121,13,68,0.2773298210633168],[121,13,69,0.27593151413591815],[121,13,70,0.2745670957335549],[121,13,71,0.2732380630859634],[121,13,72,0.2719458220128149],[121,13,73,0.27069168227922075],[121,13,74,0.26947685288636297],[121,13,75,0.26830243729740494],[121,13,76,0.2671694285985594],[121,13,77,0.2660787045953742],[121,13,78,0.2650310228442105],[121,13,79,0.26402701561892505],[121,14,64,0.2871990331965451],[121,14,65,0.2857179164007974],[121,14,66,0.28426258125528275],[121,14,67,0.282834849680231],[121,14,68,0.281436471403918],[121,14,69,0.28006911959944014],[121,14,70,0.2787343864566835],[121,14,71,0.2774337786895254],[121,14,72,0.2761687129782639],[121,14,73,0.2749405113473111],[121,14,74,0.2737503964780455],[121,14,75,0.2725994869569694],[121,14,76,0.2714887924590548],[121,14,77,0.27041920886633486],[121,14,78,0.26939151332171796],[121,14,79,0.2684063592180336],[121,15,64,0.2911170212302216],[121,15,65,0.28967216143912794],[121,15,66,0.28825179897593833],[121,15,67,0.2868577597835877],[121,15,68,0.28549179889447956],[121,15,69,0.2841555960894567],[121,15,70,0.28285075149200234],[121,15,71,0.28157878109770684],[121,15,72,0.2803411122389948],[121,15,73,0.27913907898515067],[121,15,74,0.2779739174775368],[121,15,75,0.2768467612001496],[121,15,76,0.27575863618539853],[121,15,77,0.27471045615516326],[121,15,78,0.27370301759710775],[121,15,79,0.2727369947762597],[121,16,64,0.29497909418329854],[121,16,65,0.2935706490052868],[121,16,66,0.2921854278511328],[121,16,67,0.29082526049787016],[121,16,68,0.28949190708619277],[121,16,69,0.28818705380175064],[121,16,70,0.286912308491713],[121,16,71,0.28566919621663717],[121,16,72,0.28445915473763556],[121,16,73,0.28328352993887895],[121,16,74,0.28214357118533295],[121,16,75,0.2810404266158682],[121,16,76,0.27997513837163357],[121,16,77,0.2789486377597459],[121,16,78,0.2779617403522744],[121,16,79,0.2770151410205291],[121,17,64,0.2987813821874651],[121,17,65,0.29740951137436256],[121,17,66,0.29605960316504815],[121,17,67,0.2947334909705951],[121,17,68,0.29343293983204966],[121,17,69,0.2921596421241795],[121,17,70,0.2909152131945357],[121,17,71,0.289701186937863],[121,17,72,0.28851901130585256],[121,17,73,0.2873700437522736],[121,17,74,0.2862555466133833],[121,17,75,0.28517668242375294],[121,17,76,0.2841345091674008],[121,17,77,0.2831299754642858],[121,17,78,0.2821639156921388],[121,17,79,0.2812370450436425],[121,18,64,0.30252006269564286],[121,18,65,0.3011849270585931],[121,18,66,0.29987050535679255],[121,18,67,0.2985786344241774],[121,18,68,0.29731108398242845],[121,18,69,0.2960695523673052],[121,18,70,0.2948556621903434],[121,18,71,0.2936709559359508],[121,18,72,0.2925168914938933],[121,18,73,0.29139483762720936],[121,18,74,0.2903060693754524],[121,18,75,0.2892517633933978],[121,18,76,0.28823299322510604],[121,18,77,0.2872507245133951],[121,18,78,0.2863058101447012],[121,18,79,0.28539898532933494],[121,19,64,0.3061913629718083],[121,19,65,0.3048931233359443],[121,19,66,0.30361436258670704],[121,19,67,0.3023569207589342],[121,19,68,0.30112257202376874],[121,19,69,0.29991302043771345],[121,19,70,0.2987298956271039],[121,19,71,0.2975747484080335],[121,19,72,0.2964490463417255],[121,19,73,0.295354169225385],[121,19,74,0.294291404518438],[121,19,75,0.2932619427042851],[121,19,76,0.2922668725874699],[121,19,77,0.29130717652630966],[121,19,78,0.29038372560096815],[121,19,79,0.28949727471698156],[121,20,64,0.30979156252577433],[121,20,65,0.3085303787231772],[121,20,66,0.3072874532467077],[121,20,67,0.30606462909969095],[121,20,68,0.30486368466043096],[121,20,69,0.3036863294541199],[121,20,70,0.30253419986022667],[121,20,71,0.30140885475539886],[121,20,72,0.30031177109187185],[121,20,73,0.29924433941141815],[121,20,74,0.2982078592947453],[121,20,75,0.29720353474646954],[121,20,76,0.29623246951556287],[121,20,77,0.29529566235132493],[121,20,78,0.29439400219485723],[121,20,79,0.29352826330605075],[121,21,64,0.31331699549274106],[121,21,65,0.31209302539321226],[121,21,66,0.3108861084144693],[121,21,67,0.3096980902857923],[121,21,68,0.3085307533395427],[121,21,69,0.30738581230606105],[121,21,70,0.3062649100441133],[121,21,71,0.30516961320691627],[121,21,72,0.30410140784373735],[121,21,73,0.3030616949371007],[121,21,74,0.30205178587551074],[121,21,75,0.30107289786181557],[121,21,76,0.3001261492571128],[121,21,77,0.2992125548602453],[121,21,78,0.2983330211228679],[121,21,79,0.29748834130009283],[121,22,64,0.31676405295771615],[121,22,65,0.31557745153688943],[121,22,66,0.3144067142515514],[121,22,67,0.31325368930462],[121,22,68,0.3121201627189342],[121,22,69,0.31100785415527643],[121,22,70,0.30991841266601644],[121,22,71,0.308853412384408],[121,22,72,0.30781434814953296],[121,22,73,0.3068026310669244],[121,22,74,0.3058195840047816],[121,22,75,0.3048664370258966],[121,22,76,0.30394432275519745],[121,22,77,0.30305427168295385],[121,22,78,0.30219720740362777],[121,22,79,0.30137394179037497],[121,23,64,0.32012918522488953],[121,23,65,0.3189801036692124],[121,23,66,0.31784571434555653],[121,23,67,0.316727867668707],[121,23,68,0.31562835307825365],[121,23,69,0.3145488948798705],[121,23,70,0.3134911480222978],[121,23,71,0.3124566938100569],[121,23,72,0.3114470355518913],[121,23,73,0.3104635941449675],[121,23,74,0.30950770359474716],[121,23,75,0.3085806064706504],[121,23,76,0.3076834492974152],[121,23,77,0.3068172778822004],[121,23,78,0.30598303257741133],[121,23,79,0.30518154347925824],[121,24,64,0.32340890403178185],[121,24,65,0.32229748887989385],[121,24,66,0.32119961199613295],[121,24,67,0.3201171257362612],[121,24,68,0.31905182267307347],[121,24,69,0.31800543146106586],[121,24,70,0.31697961263689534],[121,24,71,0.3159759543556574],[121,24,72,0.31499596806297775],[121,24,73,0.31404108410294834],[121,24,74,0.3131126472618238],[121,24,75,0.312211912247593],[121,24,76,0.3113400391053354],[121,24,77,0.3104980885684057],[121,24,78,0.30968701734542925],[121,24,79,0.3089076733431158],[121,25,64,0.326599784708263],[121,25,65,0.3255261770282982],[121,25,66,0.32446497244492284],[121,25,67,0.32341802497519767],[121,25,68,0.3223871300320871],[121,25,69,0.32137402031264706],[121,25,70,0.3203803616220985],[121,25,71,0.31940774863381205],[121,25,72,0.31845770058520073],[121,25,73,0.3175316569095488],[121,25,74,0.31663097280369723],[121,25,75,0.3157569147316954],[121,25,76,0.31491065586433226],[121,25,77,0.31409327145458865],[121,25,78,0.31330573414899426],[121,25,79,0.3125489092348965],[121,26,64,0.32969846828051896],[121,26,65,0.32866280288286137],[121,26,66,0.32763842504953333],[121,26,67,0.3266271901707596],[121,26,68,0.3256308961974787],[121,26,69,0.3246512795531788],[121,26,70,0.3236900109817179],[121,26,71,0.3227486913311578],[121,26,72,0.3218288472736058],[121,26,73,0.32093192696109263],[121,26,74,0.32005929561740953],[121,26,75,0.31921223106600993],[121,26,76,0.31839191919389204],[121,26,77,0.31759944935150397],[121,26,78,0.3168358096886528],[121,26,79,0.31610188242642673],[121,27,64,0.33270166351979885],[121,27,65,0.3317040682048182],[121,27,66,0.33071666540136113],[121,27,67,0.3297413115765557],[121,27,68,0.32877980690829073],[121,27,69,0.32783389122082135],[121,27,70,0.32690523985646885],[121,27,71,0.3259954594834416],[121,27,72,0.3251060838397722],[121,27,73,0.32423856941339735],[121,27,74,0.32339429105830625],[121,27,75,0.3225745375468609],[121,27,76,0.32178050705820516],[121,27,77,0.32101330260280353],[121,27,78,0.3202739273830933],[121,27,79,0.3195632800902569],[121,28,64,0.335606148936032],[121,28,65,0.3346467437763277],[121,28,66,0.3336964573873603],[121,28,67,0.33275714700910636],[121,28,68,0.33183061472688163],[121,28,69,0.3309186034308365],[121,28,70,0.330022792711664],[121,28,71,0.32914479469254226],[121,28,72,0.32828614979730936],[121,28,73,0.3274483224548956],[121,28,74,0.3266326967399412],[121,28,75,0.3258405719496991],[121,28,76,0.3250731581171426],[121,28,77,0.32433157146031927],[121,28,78,0.32361682976793205],[121,28,79,0.32292984772115596],[121,29,64,0.33840877471638625],[121,29,65,0.3374876713730683],[121,29,66,0.33657463519582853],[121,29,67,0.3356715238859721],[121,29,68,0.3347801411085499],[121,29,69,0.33390223247586154],[121,29,70,0.3330394814672933],[121,29,71,0.3321935052855145],[121,29,72,0.33136585064902896],[121,29,73,0.3305579895211056],[121,29,74,0.32977131477501936],[121,29,75,0.3290071357956979],[121,29,76,0.3282666740176986],[121,29,77,0.32755105839955206],[121,29,78,0.3268613208344572],[121,29,79,0.32619839149733504],[121,30,64,0.3411064646086135],[121,30,65,0.3402237656811469],[121,30,66,0.3393481052660512],[121,30,67,0.33848134120730383],[121,30,68,0.3376252784141625],[121,30,69,0.3367816648687863],[121,30,70,0.33595218757032397],[121,30,71,0.33513846841549005],[121,30,72,0.33434206001562794],[121,30,73,0.33356444145028047],[121,30,74,0.33280701395720513],[121,30,75,0.3320710965589222],[121,30,76,0.33135792162572514],[121,30,77,0.33066863037518823],[121,30,78,0.33000426830815655],[121,30,79,0.32936578058122457],[121,31,64,0.3436962177492656],[121,31,65,0.3428520161584075],[121,31,66,0.3420138481818917],[121,31,67,0.3411835714809039],[121,31,68,0.3403629918658742],[121,31,69,0.33955385932832277],[121,31,70,0.3387578640093118],[121,31,71,0.3379766321045248],[121,31,72,0.33721172170596964],[121,31,73,0.33646461858032856],[121,31,74,0.33573673188389147],[121,31,75,0.33502938981415964],[121,31,76,0.3343438351980511],[121,31,77,0.333681221016741],[121,31,78,0.33304260586712303],[121,31,79,0.3324289493598982],[121,32,64,0.34617511043684424],[121,32,65,0.34536948884020086],[121,32,66,0.34456892050938964],[121,32,67,0.3437752625908603],[121,32,68,0.3429903214460056],[121,32,69,0.34221584870733307],[121,32,70,0.3414535372713898],[121,32,71,0.34070501722846025],[121,32,72,0.3399718517290356],[121,32,73,0.3392555327870747],[121,32,74,0.3385574770199963],[121,32,75,0.3378790213254875],[121,32,76,0.3372214184950599],[121,32,77,0.33658583276438714],[121,32,78,0.33597333530041085],[121,32,79,0.3353848996252196],[121,33,64,0.3485402978497446],[121,33,65,0.34777332808947636],[121,33,66,0.34701045657822716],[121,33,67,0.34625353960961164],[121,33,68,0.3455043837389321],[121,33,69,0.3447647418637699],[121,33,70,0.34403630924148626],[121,33,71,0.34332071944365034],[121,33,72,0.3426195402473934],[121,33,73,0.3419342694637079],[121,33,74,0.34126633070263485],[121,33,75,0.3406170690754186],[121,33,76,0.33998774683356603],[121,33,77,0.3393795389448415],[121,33,78,0.3387935286061833],[121,33,79,0.338230702693549],[121,34,64,0.35078901570907084],[121,34,65,0.3500607582912735],[121,34,66,0.34933567020713974],[121,34,67,0.34861560655352236],[121,34,68,0.347902373716066],[121,34,69,0.34719772547430844],[121,34,70,0.34650335904385304],[121,34,71,0.34582091105563345],[121,34,72,0.34515195347226435],[121,34,73,0.3444979894415011],[121,34,74,0.34386044908675023],[121,34,75,0.34324068523471013],[121,34,76,0.34263996908007793],[121,34,77,0.34205948578735507],[121,34,78,0.3415003300297377],[121,34,79,0.3409635014650974],[121,35,64,0.35291858188637654],[121,35,65,0.35222908549166543],[121,35,66,0.3515418563733278],[121,35,67,0.35085874808202244],[121,35,68,0.3501815664639869],[121,35,69,0.3495120657907291],[121,35,70,0.34885194482596427],[121,35,71,0.34820284282981223],[121,35,72,0.3475663355002531],[121,35,73,0.34694393085186165],[121,35,74,0.3463370650317654],[121,35,75,0.345747098072901],[121,35,76,0.34517530958450954],[121,35,77,0.3446228943799009],[121,35,78,0.3440909580414735],[121,35,79,0.3435805124229959],[121,36,64,0.35492639795620695],[121,36,65,0.3542756989810344],[121,36,66,0.3536263928257443],[121,36,67,0.3529803311401879],[121,36,68,0.35233931885559255],[121,36,69,0.3517051103389206],[121,36,70,0.3510794054846514],[121,36,71,0.35046384574400463],[121,36,72,0.34986001009160095],[121,36,73,0.3492694109295791],[121,36,74,0.348693489929118],[121,36,75,0.34813361380943453],[121,36,76,0.3475910700542001],[121,36,77,0.34706706256540565],[121,36,78,0.34656270725466026],[121,36,79,0.34607902757193193],[121,37,64,0.3568099506935146],[121,37,65,0.35619807282174554],[121,37,66,0.35558674164232673],[121,37,67,0.3549778065448286],[121,37,68,0.35437307116434297],[121,37,69,0.35377428956057533],[121,37,70,0.3531831623345499],[121,37,71,0.35260133268294286],[121,37,72,0.35203038239004086],[121,37,73,0.3514718277573424],[121,37,74,0.3509271154707539],[121,37,75,0.3503976184054461],[121,37,76,0.3498846313683198],[121,37,77,0.34938936677810484],[121,37,78,0.348912950283082],[121,37,79,0.3484564163164344],[121,38,64,0.35856681351598896],[121,38,65,0.35799376732026517],[121,38,66,0.3574204507312216],[121,38,67,0.3568487105141357],[121,38,68,0.35628034862164354],[121,38,69,0.3557171183976261],[121,38,70,0.35516072071890625],[121,38,71,0.35461280007476914],[121,38,72,0.3540749405843036],[121,38,73,0.35354866195158235],[121,38,74,0.3530354153586337],[121,38,75,0.3525365792962692],[121,38,76,0.35205345533271565],[121,38,77,0.3515872638200774],[121,38,78,0.35113913953861753],[121,38,79,0.35071012727886414],[121,39,64,0.36019464787119443],[121,39,65,0.35966043044361407],[121,39,66,0.3591251552758886],[121,39,67,0.3585906661407702],[121,39,68,0.3580587629172529],[121,39,69,0.35753119781930665],[121,39,70,0.3570096715626262],[121,39,71,0.35649582946940783],[121,39,72,0.3559912575111527],[121,39,73,0.3554974782895108],[121,39,74,0.35501594695512473],[121,39,75,0.3545480470645305],[121,39,76,0.3540950863750683],[121,39,77,0.35365829257782877],[121,39,78,0.3532388089686218],[121,39,79,0.35283769005697474],[121,40,64,0.3616912045686069],[121,40,65,0.36119579918024725],[121,40,66,0.360698579124178],[121,40,67,0.36020138480849073],[121,40,68,0.3597060136428133],[121,40,69,0.35921421629193595],[121,40,70,0.3587276928676646],[121,40,71,0.35824808905891603],[121,40,72,0.35777699220005177],[121,40,73,0.3573159272774657],[121,40,74,0.35686635287438584],[121,40,75,0.3564296570539438],[121,40,76,0.35600715318046955],[121,40,77,0.3556000756790327],[121,40,78,0.3552095757332205],[121,40,79,0.35483671692115826],[121,41,64,0.3630543250564894],[121,41,65,0.36259770084530085],[121,41,66,0.3621385361213205],[121,41,67,0.3616786675522571],[121,41,68,0.3612198896784375],[121,41,69,0.36076395119135846],[121,41,70,0.3603125511506906],[121,41,71,0.359867335139744],[121,41,72,0.3594298913593952],[121,41,73,0.359001746660488],[121,41,74,0.358584362514672],[121,41,75,0.3581791309237289],[121,41,76,0.35778737026734553],[121,41,77,0.3574103210893564],[121,41,78,0.35704914182244285],[121,41,79,0.35670490445129754],[121,42,64,0.3642819426436743],[121,42,65,0.3638640543302748],[121,42,66,0.3634429313869003],[121,42,67,0.3630204063618834],[121,42,68,0.3625982705224287],[121,42,69,0.3621782701581191],[121,42,70,0.36176210282310517],[121,42,71,0.3613514135169862],[121,42,72,0.36094779080438355],[121,42,73,0.36055276287321625],[121,42,74,0.3601677935316465],[121,42,75,0.35979427814374176],[121,42,76,0.35943353950381424],[121,42,77,0.3590868236494593],[121,42,78,0.35875529561328207],[121,42,79,0.3584400351133181],[121,43,64,0.36537208366617296],[121,43,65,0.36499287129706803],[121,43,66,0.36460976253572597],[121,43,67,0.3642245854291506],[121,43,68,0.36383912756404274],[121,43,69,0.36345513239527993],[121,43,70,0.3630742955133186],[121,43,71,0.36269826085052637],[121,43,72,0.36232861682644557],[121,43,73,0.3619668924319972],[121,43,74,0.36161455325259517],[121,43,75,0.36127299743021374],[121,43,76,0.3609435515643724],[121,43,77,0.3606274665520587],[121,43,78,0.3603259133665765],[121,43,79,0.3600399787753292],[121,44,64,0.3663228685986552],[121,44,65,0.365982257316414],[121,44,66,0.3656371208426483],[121,44,67,0.3652892823384318],[121,44,68,0.3649405252993436],[121,44,69,0.3645925899089306],[121,44,70,0.36424716933134005],[121,44,71,0.36390590594313077],[121,44,72,0.36357038750426196],[121,44,73,0.3632421432682697],[121,44,74,0.36292264003160235],[121,44,75,0.362613278122155],[121,44,76,0.36231538732696944],[121,44,77,0.3620302227591195],[121,44,78,0.36175896066376956],[121,44,79,0.3615026941634143],[121,45,64,0.36713251311082234],[121,45,65,0.36683041295073676],[121,45,66,0.36652319235134445],[121,45,67,0.36621266920084883],[121,45,68,0.36590062249017546],[121,45,69,0.3655887886914163],[121,45,70,0.36527885807570315],[121,45,71,0.36497247097051466],[121,45,72,0.3646712139564171],[121,45,73,0.36437661600324756],[121,45,74,0.3640901445457151],[121,45,75,0.3638132014984533],[121,45,76,0.3635471192104975],[121,45,77,0.3632931563592008],[121,45,78,0.3630524937835808],[121,45,79,0.36282623025710353],[121,46,64,0.3677993290686147],[121,46,65,0.36753563478136964],[121,46,66,0.36726625892701126],[121,46,67,0.3669930137319013],[121,46,68,0.3667176732661866],[121,46,69,0.36644196984721766],[121,46,70,0.3661675903826617],[121,46,71,0.3658961726533142],[121,46,72,0.365629301535608],[121,46,73,0.3653685051638302],[121,46,74,0.36511525103202147],[121,46,75,0.36487094203559145],[121,46,76,0.3646369124526227],[121,46,77,0.36441442386487877],[121,46,78,0.36420466101850757],[121,46,79,0.3640087276244459],[121,47,64,0.3683217254802926],[121,47,65,0.36809631638017426],[121,47,66,0.36786469925300436],[121,47,67,0.36762868027260526],[121,47,68,0.3673900281699477],[121,47,69,0.3671504706615253],[121,47,70,0.3669116908176978],[121,47,71,0.3666753233710055],[121,47,72,0.3664429509644551],[121,47,73,0.36621610033978547],[121,47,74,0.3659962384656905],[121,47,75,0.3657847686060298],[121,47,76,0.365583026328002],[121,47,77,0.3653922754502952],[121,47,78,0.36521370393120534],[121,47,79,0.3650484196967309],[121,48,64,0.3686982093873977],[121,48,65,0.3685109492255696],[121,48,66,0.3683169897714349],[121,48,67,0.3681181307541558],[121,48,68,0.36791613514517546],[121,48,69,0.3677127256115205],[121,48,70,0.367509580909355],[121,48,71,0.367308332217787],[121,48,72,0.36711055941293],[121,48,73,0.366917787282222],[121,48,74,0.3667314816789887],[121,48,75,0.3665530456172725],[121,48,76,0.3663838153069069],[121,48,77,0.36622505612885026],[121,48,78,0.36607795855076963],[121,48,79,0.365943633982881],[121,49,64,0.3689273867005606],[121,49,65,0.36877812356293405],[121,49,66,0.3686217055676838],[121,49,67,0.36845992560607],[121,49,68,0.36829454046801924],[121,49,69,0.36812726732031886],[121,49,70,0.36795978012535235],[121,49,71,0.3677937060003778],[121,49,72,0.3676306215173513],[121,49,73,0.3674720489432989],[121,49,74,0.367319452421223],[121,49,75,0.3671742340915635],[121,49,76,0.3670377301541973],[121,49,77,0.36691120687098466],[121,49,78,0.3667958565088577],[121,49,79,0.36669279322345505],[121,50,64,0.36900796298018146],[121,50,65,0.3688965292094083],[121,50,66,0.3687775211988643],[121,50,67,0.36865272460784193],[121,50,68,0.3685238896214415],[121,50,69,0.3683927274536084],[121,50,70,0.3682609067910113],[121,50,71,0.36813005017776274],[121,50,72,0.3680017303409825],[121,50,73,0.36787746645720876],[121,50,74,0.36775872035964285],[121,50,75,0.36764689268624795],[121,50,76,0.367543318968683],[121,50,77,0.36744926566208497],[121,50,78,0.36736592611569],[121,50,79,0.36729441648430095],[121,51,64,0.3689387441619803],[121,51,65,0.368864956303097],[121,51,66,0.3687832114662284],[121,51,67,0.36869528768410836],[121,51,68,0.3686029281126929],[121,51,69,0.36850783755898286],[121,51,70,0.3684116789499963],[121,51,71,0.3683160697428908],[121,51,72,0.3682225782762358],[121,51,73,0.3681327200624378],[121,51,74,0.3680479540213114],[121,51,75,0.3679696786548064],[121,51,76,0.36789922816288007],[121,51,77,0.36783786850052486],[121,51,78,0.367786793375942],[121,51,79,0.36774712018986866],[121,52,64,0.36871863722740467],[121,52,65,0.3686822959966545],[121,52,66,0.36863765213150423],[121,52,67,0.3685864756433075],[121,52,68,0.3685305022338616],[121,52,69,0.3684714298479493],[121,52,70,0.36841091516734736],[121,52,71,0.3683505700462992],[121,52,72,0.36829195788845437],[121,52,73,0.36823658996527603],[121,52,74,0.3681859216759107],[121,52,75,0.368141348748529],[121,52,76,0.368104203383128],[121,52,77,0.3680757503358037],[121,52,78,0.36805718294448625],[121,52,79,0.36804961909614436],[121,53,64,0.3683466508189105],[121,53,65,0.3683475410952717],[121,53,66,0.36833982057718084],[121,53,67,0.36832525085984946],[121,53,68,0.3683055597655163],[121,53,69,0.36828243792063015],[121,53,70,0.3682575352748255],[121,53,71,0.3682324575616859],[121,53,72,0.3682087627012984],[121,53,73,0.3681879571445995],[121,53,74,0.36817149215950906],[121,53,75,0.36816076005885645],[121,53,76,0.36815709037009553],[121,53,77,0.36816174594681156],[121,53,78,0.36817591902201613],[121,53,79,0.3682007272032348],[121,54,64,0.36782189580010094],[121,54,65,0.3678597866390497],[121,54,66,0.3678887964107251],[121,54,67,0.3679106778997856],[121,54,68,0.36792715062343273],[121,54,69,0.3679398974331489],[121,54,70,0.3679505610585607],[121,54,71,0.3679607405934222],[121,54,72,0.36797198792372343],[121,54,73,0.36798580409791953],[121,54,74,0.3680036356392832],[121,54,75,0.36802687080038077],[121,54,76,0.36805683575966897],[121,54,77,0.36809479076021634],[121,54,78,0.3681419261905454],[121,54,79,0.3681993586076],[121,55,64,0.36714358576073347],[121,55,65,0.36721823042977],[121,55,66,0.3672837620127422],[121,55,67,0.36734192408998256],[121,55,68,0.3673944274484053],[121,55,69,0.36744294670770156],[121,55,70,0.367489116889003],[121,55,71,0.3675345299260042],[121,55,72,0.36758073111855133],[121,55,73,0.36762921552869143],[121,55,74,0.36768142431918827],[121,55,75,0.367738741034499],[121,55,76,0.36780248782421365],[121,55,77,0.3678739216089608],[121,55,78,0.367954230188773],[121,55,79,0.3680445282939184],[121,56,64,0.366311037466602],[121,56,65,0.3664221735020645],[121,56,66,0.36652400302908184],[121,56,67,0.36661826003080866],[121,56,68,0.3667066461391528],[121,56,69,0.3667908272853223],[121,56,70,0.366872430293187],[121,56,71,0.36695303941545165],[121,56,72,0.36703419281264166],[121,56,73,0.36711737897489805],[121,56,74,0.36720403308658955],[121,56,75,0.36729553333373266],[121,56,76,0.36739319715422375],[121,56,77,0.3674982774308863],[121,56,78,0.3676119586273262],[121,56,79,0.3677353528666035],[121,57,64,0.36532367125426285],[121,57,65,0.3654710205389622],[121,57,66,0.3656089088068669],[121,57,67,0.3657390600523061],[121,57,68,0.36586316632829663],[121,57,69,0.365982884421322],[121,57,70,0.36609983246928657],[121,57,71,0.36621558652263586],[121,57,72,0.3663316770486472],[121,57,73,0.36644958537888583],[121,57,74,0.36657074009983626],[121,57,75,0.3666965133866964],[121,57,76,0.36682821728034276],[121,57,77,0.3669670999074658],[121,57,78,0.36711434164387147],[121,57,79,0.36727105122095527],[121,58,64,0.3641810113706435],[121,58,65,0.36436428023184214],[121,58,66,0.36453797277447525],[121,58,67,0.3647038026138818],[121,58,68,0.3648634518014341],[121,58,69,0.3650185675234232],[121,58,70,0.365170758743485],[121,58,71,0.3653215927885569],[121,58,72,0.3654725918783709],[121,58,73,0.36562522959847477],[121,58,74,0.3657809273167956],[121,58,75,0.3659410505437299],[121,58,76,0.36610690523576883],[121,58,77,0.3662797340426598],[121,58,78,0.3664607124980984],[121,58,79,0.36665094515395746],[121,59,64,0.36288268625752357],[121,59,65,0.36310156558478907],[121,59,66,0.3633107927654693],[121,59,67,0.36351207064750773],[121,59,68,0.3637070708593084],[121,59,69,0.3638974305325906],[121,59,70,0.3640847489691579],[121,59,71,0.3642705842515704],[121,59,72,0.3644564497977256],[121,59,73,0.3646438108593405],[121,59,74,0.3648340809643487],[121,59,75,0.36502861830319683],[121,59,76,0.36522872205904855],[121,59,77,0.36543562868189805],[121,59,78,0.3656505081065857],[121,59,79,0.3658744599147251],[121,60,64,0.36142842878085013],[121,60,65,0.3616825941633104],[121,60,66,0.36192707128643486],[121,60,67,0.3621635518443983],[121,60,68,0.362393696623036],[121,60,69,0.3626191322465206],[121,60,70,0.3628414478683353],[121,60,71,0.36306219180652943],[121,60,72,0.3632828681232644],[121,60,73,0.3635049331486395],[121,60,74,0.3637297919488165],[121,60,75,0.3639587947384203],[121,60,76,0.3641932332372301],[121,60,77,0.3644343369711595],[121,60,78,0.36468326951752],[121,60,79,0.364941124694576],[121,61,64,0.35981807640494584],[121,61,65,0.3601071882874747],[121,61,66,0.36038661572878594],[121,61,67,0.36065803888521525],[121,61,68,0.36092310728244403],[121,61,69,0.36118343658584107],[121,61,70,0.36144060531549027],[121,61,71,0.36169615150588896],[121,61,72,0.3619515693103247],[121,61,73,0.3622083055499185],[121,61,74,0.3624677562073585],[121,61,75,0.3627312628652942],[121,61,76,0.36300010908941205],[121,61,77,0.3632755167561861],[121,61,78,0.36355864232530194],[121,61,79,0.36385057305675944],[121,62,64,0.35805157131159066],[121,62,65,0.3583752751694501],[121,62,66,0.3586893385245158],[121,62,67,0.35899542961378467],[121,62,68,0.3592951862875027],[121,62,69,0.3595902128030055],[121,62,70,0.3598820765636409],[121,62,71,0.3601723048027593],[121,62,72,0.36046238121277585],[121,62,73,0.3607537425192968],[121,62,74,0.3610477750003315],[121,62,75,0.36134581095056095],[121,62,76,0.3616491250906816],[121,62,77,0.3619589309218232],[121,62,78,0.3622763770250327],[121,62,79,0.36260254330583463],[121,63,64,0.3561289604639255],[121,63,65,0.3564868869953942],[121,63,66,0.3568352572458472],[121,63,67,0.35717572715427703],[121,63,68,0.35750992248280333],[121,63,69,0.3578394356338348],[121,63,70,0.3581658224127192],[121,63,71,0.35849059873586236],[121,63,72,0.3588152372843241],[121,63,73,0.35914116410287894],[121,63,74,0.359469755144569],[121,63,75,0.35980233276071366],[121,63,76,0.3601401621363993],[121,63,77,0.36048444767144566],[121,63,78,0.36083632930684195],[121,63,79,0.3611968787966624],[121,64,64,0.3540503956152664],[121,64,65,0.35444216095178227],[121,64,66,0.3548244946488652],[121,64,67,0.35519903997193436],[121,64,68,0.3555674101851647],[121,64,69,0.3559311853917869],[121,64,70,0.356291909320284],[121,64,71,0.356651086056469],[121,64,72,0.3570101767214502],[121,64,73,0.35737059609546984],[121,64,74,0.35773370918764813],[121,64,75,0.35810082775159213],[121,64,76,0.35847320674689764],[121,64,77,0.35885204074653543],[121,64,78,0.35923846029012063],[121,64,79,0.3596335281830697],[121,65,64,0.35181613326275607],[121,65,65,0.35224133919609896],[121,65,66,0.35265727866106145],[121,65,67,0.35306558187727266],[121,65,68,0.3534678492042994],[121,65,69,0.3538656480048865],[121,65,70,0.3542605094545142],[121,65,71,0.35465392529725137],[121,65,72,0.35504734454791714],[121,65,73,0.3554421701405307],[121,65,74,0.3558397555230874],[121,65,75,0.35624140119861414],[121,65,76,0.3566483512125379],[121,65,77,0.35706178958635565],[121,65,78,0.3574828366976038],[121,65,79,0.35791254560613633],[121,66,64,0.3494265345459169],[121,66,65,0.34988476877196173],[121,66,66,0.3503339423128541],[121,66,67,0.350775671973825],[121,66,68,0.35121154480659983],[121,66,69,0.3516431149953759],[121,66,70,0.35207190068953975],[121,66,71,0.35249938078310916],[121,66,72,0.3529269916409039],[121,66,73,0.35335612377143255],[121,66,74,0.35378811844652935],[121,66,75,0.35422426426769543],[121,66,76,0.35466579367917717],[121,66,77,0.35511387942777156],[121,66,78,0.35556963096935673],[121,66,79,0.356034090822153],[121,67,64,0.34688206509000585],[121,67,65,0.3473729014685728],[121,67,66,0.347854923612985],[121,67,67,0.34832973454932575],[121,67,68,0.3487989076219522],[121,67,69,0.3492639834019925],[121,67,70,0.34972646654302],[121,67,71,0.35018782258387976],[121,67,72,0.35064947469867835],[121,67,73,0.3511128003939191],[121,67,74,0.3515791281528215],[121,67,75,0.352049734026775],[121,67,76,0.3525258381739617],[121,67,77,0.35300860134514],[121,67,78,0.35349912131658073],[121,67,79,0.35399842927017133],[121,68,64,0.34418329479428966],[121,68,65,0.34470629362461963],[121,68,66,0.34522076536790935],[121,68,67,0.34572829891045287],[121,68,68,0.3462304534936862],[121,68,69,0.34672875564498523],[121,68,70,0.34722469605607587],[121,68,71,0.3477197264090385],[121,68,72,0.3482152561499122],[121,68,73,0.34871264920988343],[121,68,74,0.34921322067409766],[121,68,75,0.34971823339804425],[121,68,76,0.3502288945715476],[121,68,77,0.35074635223035844],[121,68,78,0.3512716917153367],[121,68,79,0.3518059320792398],[121,69,64,0.3413308975651936],[121,69,65,0.34188560587657635],[121,69,66,0.342432114945134],[121,69,67,0.3429719991610799],[121,69,68,0.3435068032716214],[121,69,69,0.3440380393338244],[121,69,70,0.3445671836155363],[121,69,71,0.34509567344434733],[121,69,72,0.34562490400459844],[121,69,73,0.3461562250824163],[121,69,74,0.3466909377588201],[121,69,75,0.3472302910508425],[121,69,76,0.34777547850070634],[121,69,77,0.34832763471304207],[121,69,78,0.3488878318401464],[121,69,79,0.34945707601528875],[121,70,64,0.3383256509942446],[121,70,65,0.3389116028513285],[121,70,66,0.3394897239804249],[121,70,67,0.34006157392396585],[121,70,68,0.3406286825481303],[121,70,69,0.3411925470175322],[121,70,70,0.34175462871842266],[121,70,71,0.3423163501303799],[121,70,72,0.3428790916464991],[121,70,73,0.34344418834205864],[121,70,74,0.34401292669171313],[121,70,75,0.34458654123514987],[121,70,76,0.34516621119125224],[121,70,77,0.3457530570207583],[121,70,78,0.34634813693740973],[121,70,79,0.346952443367601],[121,71,64,0.3351684359809466],[121,71,65,0.33578515280325794],[121,71,66,0.33639444802901936],[121,71,67,0.33699786600601134],[121,71,68,0.337596921337352],[121,71,69,0.33819309587776203],[121,71,70,0.3387878356788006],[121,71,71,0.33938254788304856],[121,71,72,0.3399785975672479],[121,71,73,0.3405773045343766],[121,71,74,0.34117994005470864],[121,71,75,0.3417877235557939],[121,71,76,0.342401819261405],[121,71,77,0.34302333277943564],[121,71,78,0.3436533076387478],[121,71,79,0.3442927217749785],[121,72,64,0.33186023630052974],[121,72,65,0.33250722719572695],[121,72,66,0.3331472461607867],[121,72,67,0.3337818220070276],[121,72,68,0.33441245369750094],[121,72,69,0.33504060736457325],[121,72,70,0.335667713276945],[121,72,71,0.33629516275607957],[121,72,72,0.33692430504205506],[121,72,73,0.3375564441088113],[121,72,74,0.3381928354288519],[121,72,75,0.33883468268732575],[121,72,76,0.33948313444554157],[121,72,77,0.3401392807538979],[121,72,78,0.3408041497142267],[121,72,79,0.3414787039915593],[121,73,64,0.3284021381164818],[121,73,65,0.32907890022687647],[121,73,66,0.3297491804992463],[121,73,67,0.3304144918719286],[121,73,68,0.3310763172961807],[121,73,69,0.33173610677481336],[121,73,70,0.3323952743507308],[121,73,71,0.3330551950453535],[121,73,72,0.33371720174693],[121,73,73,0.33438258204871785],[121,73,74,0.33505257503708785],[121,73,75,0.33572836802947864],[121,73,76,0.33641109326225394],[121,73,77,0.33710182452844617],[121,73,78,0.3378015737653829],[121,73,79,0.3385112875922073],[121,74,64,0.32479532943802336],[121,74,65,0.3255013482998936],[121,74,66,0.3262014157046025],[121,74,67,0.32689702838650353],[121,74,68,0.3275896529188611],[121,74,69,0.32828072277326137],[121,74,70,0.3289716353294047],[121,74,71,0.32966374883525806],[121,74,72,0.3303583793175717],[121,74,73,0.33105679744274125],[121,74,74,0.3317602253280698],[121,74,75,0.33246983330335517],[121,74,76,0.33318673662285686],[121,74,77,0.33391199212762496],[121,74,78,0.33464659485818804],[121,74,79,0.3353914746176111],[121,75,64,0.32104109952245785],[121,75,65,0.32177584943768117],[121,75,66,0.32250521840072766],[121,75,67,0.3232306866167008],[121,75,68,0.323953703920449],[121,75,69,0.3246756868564671],[121,75,70,0.3253980157096681],[121,75,71,0.32612203148699126],[121,75,72,0.32684903284986067],[121,75,73,0.32758027299746606],[121,75,74,0.3283169565009305],[121,75,75,0.32906023608828117],[121,75,76,0.3298112093802832],[121,75,77,0.3305709155771164],[121,75,78,0.33134033209589375],[121,75,79,0.33212037115903165],[121,76,64,0.3171408382222905],[121,76,65,0.31790378264182695],[121,76,66,0.31866195654599017],[121,76,67,0.3194168232913247],[121,76,68,0.3201698156198534],[121,76,69,0.3209223327591849],[121,76,70,0.32167573747397515],[121,76,71,0.3224313530687157],[121,76,72,0.323190460341857],[121,76,73,0.3239542944912431],[121,76,74,0.32472404197091964],[121,76,75,0.3255008372992319],[121,76,76,0.3262857598182738],[121,76,77,0.3270798304046665],[121,76,78,0.3278840081316667],[121,76,79,0.328699186882612],[121,77,64,0.3130960352773048],[121,77,65,0.3138866271960554],[121,77,66,0.31467309874811344],[121,77,67,0.31545689612832223],[121,77,68,0.3162394346377255],[121,77,69,0.3170220958035814],[121,77,70,0.3178062244512232],[121,77,71,0.31859312572773857],[121,77,72,0.31938406207747827],[121,77,73,0.3201802501693659],[121,77,74,0.32098285777607716],[121,77,75,0.32179300060499816],[121,77,76,0.32261173908102964],[121,77,77,0.323440075081212],[121,77,78,0.32427894862117346],[121,77,79,0.3251292344934073],[121,78,64,0.3089082795515112],[121,78,65,0.3097259619140812],[121,78,66,0.31054021352297945],[121,78,67,0.3113524631045833],[121,78,68,0.31216410817729157],[121,78,69,0.3129765121911385],[121,78,70,0.3137910016197542],[121,78,71,0.3146088630046414],[121,78,72,0.31543133995177797],[121,78,73,0.3162596300805194],[121,78,74,0.31709488192486784],[121,78,75,0.31793819178701915],[121,78,76,0.3187906005432506],[121,78,77,0.319653090402131],[121,78,78,0.32052658161504766],[121,78,79,0.3214119291390641],[121,79,64,0.30457925821485576],[121,79,65,0.30542346433175077],[121,79,66,0.3062649684972689],[121,79,67,0.30710518166914047],[121,79,68,0.30794548324816995],[121,79,69,0.30878721823713917],[121,79,70,0.3096316943525609],[121,79,71,0.3104801790892491],[121,79,72,0.31133389673772044],[121,79,73,0.3121940253543952],[121,79,74,0.3130616936846717],[121,79,75,0.3139379780387756],[121,79,76,0.31482389912045866],[121,79,77,0.31572041880851703],[121,79,78,0.3166284368911335],[121,79,79,0.31754878775304984],[121,80,64,0.30011075586989716],[121,80,65,0.3009809098436782],[121,80,66,0.301849129555142],[121,80,67,0.30271680789997246],[121,80,68,0.3035853058333734],[121,80,69,0.3044559495479407],[121,80,70,0.305330027604895],[121,80,71,0.3062087880186375],[121,80,72,0.3070934352946447],[121,80,73,0.3079851274206688],[121,80,74,0.3088849728113211],[121,80,75,0.3097940272059362],[121,80,76,0.3107132905197931],[121,80,77,0.3116437036486638],[121,80,78,0.3125861452266927],[121,80,79,0.31354142833761434],[121,81,64,0.29550465362335354],[121,81,65,0.2964001707842818],[121,81,66,0.297294559928864],[121,81,67,0.29818919560431856],[121,81,68,0.2990854199994044],[121,81,69,0.29998454014093895],[121,81,70,0.3008878250441873],[121,81,71,0.3017965028170884],[121,81,72,0.30271175771833064],[121,81,73,0.30363472716924617],[121,81,74,0.30456649871959873],[121,81,75,0.3055081069671671],[121,81,76,0.30646053043119303],[121,81,77,0.3074246883796734],[121,81,78,0.3084014376104913],[121,81,79,0.3093915691864],[121,82,64,0.2907629281024017],[121,82,65,0.29168321545309867],[121,82,66,0.2926032192332575],[121,82,67,0.2935242953623825],[121,82,68,0.29444776694932406],[121,82,69,0.2953749215071091],[121,82,70,0.2963070081221617],[121,82,71,0.2972452345778746],[121,82,72,0.2981907644325499],[121,82,73,0.2991447140516692],[121,82,74,0.30010814959458143],[121,82,75,0.3010820839554944],[121,82,76,0.30206747365885384],[121,82,77,0.30306521570907863],[121,82,78,0.3040761443946537],[121,82,79,0.30510102804659167],[121,83,64,0.28588765041595265],[121,83,65,0.28683210708460427],[121,83,66,0.2877771624442039],[121,83,67,0.28872415351465175],[121,83,68,0.28967438401901635],[121,83,69,0.2906291216163409],[121,83,70,0.2915895950893612],[121,83,71,0.29255699148709413],[121,83,72,0.2935324532223159],[121,83,73,0.29451707512389147],[121,83,74,0.2955119014440402],[121,83,75,0.296517922820428],[121,83,76,0.29753607319316555],[121,83,77,0.29856722667668434],[121,83,78,0.2996121943864906],[121,83,79,0.3006717212208088],[121,84,64,0.2808809850607999],[121,84,65,0.28184900276243263],[121,84,66,0.2828185388210927],[121,84,67,0.2837909110927267],[121,84,68,0.2847674036165463],[121,84,69,0.28574926386546823],[121,84,70,0.2867376999519877],[121,84,71,0.28773387778945103],[121,84,72,0.28873891820873865],[121,84,73,0.28975389403032537],[121,84,74,0.29077982709180306],[121,84,75,0.29181768523075113],[121,84,76,0.29286837922303977],[121,84,77,0.2939327596765352],[121,84,78,0.29501161388020664],[121,84,79,0.29610566260864757],[121,85,64,0.27574518877250653],[121,85,65,0.27673615227786363],[121,85,66,0.27772959077308373],[121,85,67,0.27872680269352884],[121,85,68,0.27972905210448035],[121,85,69,0.280737565968861],[121,85,70,0.28175353137092257],[121,85,71,0.28277809269585674],[121,85,72,0.2838123487653494],[121,85,73,0.2848573499290359],[121,85,74,0.2859140951119503],[121,85,75,0.2869835288178496],[121,85,76,0.28806653808849814],[121,85,77,0.2891639494188839],[121,85,78,0.29027652562836326],[121,85,79,0.2914049626877507],[121,86,64,0.27048260932128104],[121,86,65,0.2714958969328264],[121,86,66,0.2725126526694317],[121,86,67,0.27353415529713576],[121,86,68,0.2745616486254133],[121,86,69,0.2755963387918259],[121,86,70,0.2766393915031716],[121,86,71,0.27769192923308983],[121,86,72,0.27875502837614013],[121,86,73,0.27982971635831533],[121,86,74,0.2809169687040799],[121,86,75,0.2820177060598148],[121,86,76,0.2831327911737552],[121,86,77,0.28426302583239116],[121,86,78,0.28540914775332915],[121,86,79,0.2865718274346302],[121,87,64,0.2650956842527247],[121,87,65,0.26613066828730236],[121,87,66,0.2671701495937564],[121,87,67,0.2682153870281244],[121,87,68,0.26926760387058823],[121,87,69,0.27032798512669753],[121,87,70,0.2713976747856227],[121,87,71,0.27247777303540366],[121,87,72,0.27356933343520284],[121,87,73,0.2746733600445309],[121,87,74,0.2757908045095322],[121,87,75,0.2769225631062112],[121,87,76,0.27806947374068813],[121,87,77,0.2792323129064511],[121,87,78,0.28041179259860705],[121,87,79,0.2816085571851412],[121,88,64,0.25958693957330914],[121,88,65,0.2606429868509865],[121,88,66,0.26170459604211804],[121,88,67,0.26277300586028474],[121,88,68,0.26384941879146956],[121,88,69,0.26493499841148527],[121,88,70,0.26603086666097503],[121,88,71,0.26713810107794334],[121,88,72,0.2682577319878325],[121,88,73,0.26939073965110705],[121,88,74,0.2705380513684397],[121,88,75,0.27170053854337495],[121,88,76,0.2728790137025588],[121,88,77,0.2740742274735075],[121,88,78,0.2752868655199081],[121,88,79,0.2765175454344718],[121,89,64,0.2539589883808667],[121,89,65,0.25503546071948974],[121,89,66,0.25611859456517844],[121,89,67,0.25720960826498546],[121,89,68,0.2583096832545474],[121,89,69,0.2594199613913519],[121,89,70,0.2605415422461178],[121,89,71,0.2616754803522478],[121,89,72,0.2628227824133679],[121,89,73,0.26398440446891513],[121,89,74,0.26516124901787086],[121,89,75,0.2663541621005089],[121,89,76,0.2675639303382556],[121,89,77,0.268791277931626],[121,89,78,0.27003686361623735],[121,89,79,0.2713012775769126],[121,90,64,0.24821452943985842],[121,90,65,0.24931078415484523],[121,90,66,0.25041483435421374],[121,90,67,0.2515278778029517],[121,90,68,0.2526510746391408],[121,90,69,0.2537855447226901],[121,90,70,0.2549323649427271],[121,90,71,0.2560925664836045],[121,90,72,0.25726713204953944],[121,90,73,0.258456993047843],[121,90,74,0.2596630267308412],[121,90,75,0.2608860532963538],[121,90,76,0.2621268329468298],[121,90,77,0.2633860629071023],[121,90,78,0.2646643744007653],[121,90,79,0.2659623295851853],[121,91,64,0.24235634570160053],[121,91,65,0.24347173611050335],[121,91,66,0.24459608977116135],[121,91,67,0.24573058365964462],[121,91,68,0.24687635637838143],[121,91,69,0.2480345055199807],[121,91,70,0.24920608499026084],[121,91,71,0.25039210229044],[121,91,72,0.25159351575850575],[121,91,73,0.2528112317697214],[121,91,74,0.25404610189637056],[121,91,75,0.25529892002660676],[121,91,76,0.256570419442504],[121,91,77,0.25786126985727653],[121,91,78,0.2591720744116649],[121,91,79,0.2605033666295039],[121,92,64,0.23638730276919567],[121,92,65,0.2375211787005583],[121,92,66,0.2386652188224441],[121,92,67,0.23982057912398141],[121,92,68,0.2409883764431226],[121,92,69,0.24216968584517692],[121,92,70,0.24336553796109978],[121,92,71,0.2445769162854914],[121,92,72,0.2458047544343253],[121,92,73,0.24704993336235923],[121,92,74,0.24831327854033772],[121,92,75,0.24959555709184394],[121,92,76,0.2508974748899053],[121,92,77,0.2522196736133143],[121,92,78,0.25356272776266586],[121,92,79,0.2549271416361263],[121,93,64,0.23031034730747474],[121,93,65,0.23146205561351207],[121,93,66,0.23262516157687954],[121,93,67,0.23380080001070452],[121,93,68,0.2349900657690787],[121,93,69,0.23619401113991859],[121,93,70,0.23741364319813502],[121,93,71,0.23864992111906144],[121,93,72,0.239903753452164],[121,93,73,0.2411759953549843],[121,93,74,0.24246744578742588],[121,93,75,0.24377884466624022],[121,93,76,0.24511086997981685],[121,93,77,0.24646413486324137],[121,93,78,0.2478391846336191],[121,93,79,0.24923649378568297],[121,94,64,0.22412850539780801],[121,94,65,0.22529739047043762],[121,94,66,0.22647893852753287],[121,94,67,0.227674263026259],[121,94,68,0.22888443662705518],[121,94,69,0.23011048860043837],[121,94,70,0.23135340219466688],[121,94,71,0.23261411196421905],[121,94,72,0.23389350105910292],[121,94,73,0.2351923984749542],[121,94,74,0.2365115762640294],[121,94,75,0.23785174670695186],[121,94,76,0.2392135594453142],[121,94,77,0.24059759857510232],[121,94,78,0.24200437970093758],[121,94,79,0.24343434695115485],[121,95,64,0.21784488083762707],[121,95,65,0.2190302851273799],[121,95,66,0.22022964889735475],[121,95,67,0.22144406407801911],[121,95,68,0.22267458093611175],[121,95,69,0.22392220549500014],[121,95,70,0.2251878969164545],[121,95,71,0.2264725648437883],[121,95,72,0.2277770667063882],[121,95,73,0.22910220498558215],[121,95,74,0.2304487244419618],[121,95,75,0.23181730930400857],[121,95,76,0.23320858041813336],[121,95,77,0.23462309236009005],[121,95,78,0.23606133050776318],[121,95,79,0.23752370807534667],[121,96,64,0.2114626533849645],[121,96,65,0.21266391792230213],[121,96,66,0.21388046888891082],[121,96,67,0.21511337652717175],[121,96,68,0.21636366851996222],[121,96,69,0.2176323274241767],[121,96,70,0.21892028806622094],[121,96,71,0.22022843489942906],[121,96,72,0.22155759932342428],[121,96,73,0.22290855696537581],[121,96,74,0.22428202492326488],[121,96,75,0.22567865897101064],[121,96,76,0.22709905072556452],[121,96,77,0.22854372477593698],[121,96,78,0.23001313577415106],[121,96,79,0.23150766548814566],[121,97,64,0.2049850769478654],[121,97,65,0.20620154186643258],[121,97,66,0.20743464987805663],[121,97,67,0.2086854493851079],[121,97,68,0.20995494530646708],[121,97,69,0.21124409652381793],[121,97,70,0.21255381329047007],[121,97,71,0.21388495460266266],[121,97,72,0.2152383255333678],[121,97,73,0.21661467452854766],[121,97,74,0.21801469066597823],[121,97,75,0.2194390008764895],[121,97,76,0.2208881671277323],[121,97,77,0.22236268357043193],[121,97,78,0.22386297364713037],[121,97,79,0.22538938716343004],[121,98,64,0.1984154777184997],[121,98,65,0.19964648277983915],[121,98,66,0.2008955165513885],[121,98,67,0.2021636054531561],[121,98,68,0.20345173147004952],[121,98,69,0.20476082961054481],[121,98,70,0.20609178532844524],[121,98,71,0.20744543190767917],[121,98,72,0.20882254781015563],[121,98,73,0.21022385398663096],[121,98,74,0.21165001115070153],[121,98,75,0.2131016170157703],[121,98,76,0.21457920349509735],[121,98,77,0.21608323386489797],[121,98,78,0.21761409989048291],[121,98,79,0.21917211891546412],[121,99,64,0.19175725225230011],[121,99,65,0.1930021373715594],[121,99,66,0.1942664649877937],[121,99,67,0.19555123940597902],[121,99,68,0.19685741951735714],[121,99,69,0.1981859162700887],[121,99,70,0.1995375901035522],[121,99,71,0.20091324834624213],[121,99,72,0.20231364257728368],[121,99,73,0.2037394659515171],[121,99,74,0.20519135048826687],[121,99,75,0.2066698643236447],[121,99,76,0.20817550892649384],[121,99,77,0.20970871627794047],[121,99,78,0.21126984601454685],[121,99,79,0.2128591825350875],[121,100,64,0.18501386549197346],[121,100,65,0.18627197126412887],[121,100,66,0.1875509606839474],[121,100,67,0.1888518158184796],[121,100,68,0.19017547231601567],[121,100,69,0.1915228168883234],[121,100,70,0.1928946847570932],[121,100,71,0.19429185706454116],[121,100,72,0.1957150582481878],[121,100,73,0.19716495337976497],[121,100,74,0.19864214546837067],[121,100,75,0.20014717272771165],[121,100,76,0.20168050580755142],[121,100,77,0.20324254498932198],[121,100,78,0.2048336173458981],[121,100,79,0.2064539738655537],[121,101,64,0.1781888487362035],[121,101,65,0.17945951696233137],[121,101,66,0.1807525365235758],[121,101,67,0.1820688671360413],[121,101,68,0.18340942106629876],[121,101,69,0.18477506062481291],[121,101,70,0.18616659562413534],[121,101,71,0.1875847808018153],[121,101,72,0.18903031320804775],[121,101,73,0.1905038295580076],[121,101,74,0.1920059035489911],[121,101,75,0.19353704314220765],[121,101,76,0.19509768780933273],[121,101,77,0.19668820574378787],[121,101,78,0.1983088910367405],[121,101,79,0.1999599608178469],[121,102,64,0.1712857975533883],[121,102,65,0.17256837176651124],[121,102,66,0.17387479069082873],[121,102,67,0.17520599158843786],[121,102,68,0.17656286321605147],[121,102,69,0.17794624332921494],[121,102,70,0.1793569161518515],[121,102,71,0.1807956098110844],[121,102,72,0.18226299373735494],[121,102,73,0.18375967602978788],[121,102,74,0.18528620078692332],[121,102,75,0.18684304540265873],[121,102,76,0.18843061782751258],[121,102,77,0.19004925379517312],[121,102,78,0.1916992140143291],[121,102,79,0.19338068132580238],[121,103,64,0.16430836964024864],[121,103,65,0.16560219563028394],[121,103,66,0.16692138452759542],[121,103,67,0.16826685104725425],[121,103,68,0.16963946031870436],[121,103,69,0.17104002540037283],[121,103,70,0.17246930476017042],[121,103,71,0.17392799972182527],[121,103,72,0.175416751877076],[121,103,73,0.17693614046366601],[121,103,74,0.17848667970927273],[121,103,75,0.18006881614119757],[121,103,76,0.18168292586194257],[121,103,77,0.1833293117906319],[121,103,78,0.18500820087027142],[121,103,79,0.18671974124087354],[121,104,64,0.15726028262512465],[121,104,65,0.15856470896246166],[121,104,66,0.15989604033458404],[121,104,67,0.16125516882663332],[121,104,68,0.1626429358341981],[121,104,69,0.1640601295879216],[121,104,70,0.1655074826445566],[121,104,71,0.16698566934441572],[121,104,72,0.16849530323523793],[121,104,73,0.17003693446241835],[121,104,74,0.17161104712572944],[121,104,75,0.173218056602364],[121,104,76,0.1748583068364249],[121,104,77,0.176532067594815],[121,104,78,0.17823953168953033],[121,104,79,0.17998081216637302],[121,105,64,0.15014531181631025],[121,105,65,0.151459690373549],[121,105,66,0.15280253911651348],[121,105,67,0.15417472742769972],[121,105,68,0.1555770728731684],[121,105,69,0.15701033873675196],[121,105,70,0.15847523152126808],[121,105,71,0.15997239841668837],[121,105,72,0.16150242473528004],[121,105,73,0.16306583131367092],[121,105,74,0.16466307188196494],[121,105,75,0.1662945303997369],[121,105,76,0.16796051835903308],[121,105,77,0.16966127205433224],[121,105,78,0.17139694981946652],[121,105,79,0.17316762923152218],[121,106,64,0.14296728789526053],[121,106,65,0.14429097436663335],[121,106,66,0.1456447182712498],[121,106,67,0.14702936622649376],[121,106,68,0.14844571188422012],[121,106,69,0.1498944934741649],[121,106,70,0.1513763913149227],[121,106,71,0.15289202529243323],[121,106,72,0.154441952306003],[121,106,73,0.1560266636818049],[121,106,74,0.15764658255398795],[121,106,75,0.1593020612132242],[121,106,76,0.1609933784228187],[121,106,77,0.1627207367023385],[121,106,78,0.16448425957875867],[121,106,79,0.1662839888051474],[121,107,64,0.13573009455447937],[121,107,65,0.13706244897248904],[121,107,66,0.13842646922270074],[121,107,67,0.1398229791052265],[121,107,68,0.1412527482841075],[121,107,69,0.1427164898395341],[121,107,70,0.14421485778818927],[121,107,71,0.14574844457165903],[121,107,72,0.14731777851293415],[121,107,73,0.14892332124094643],[121,107,74,0.15056546508327395],[121,107,75,0.152244530426838],[121,107,76,0.1539607630467214],[121,107,77,0.15571433140306162],[121,107,78,0.15750532390602023],[121,107,79,0.15933374614884527],[121,108,64,0.12843766608045398],[121,108,65,0.12977805332925268],[121,108,66,0.13115173499782756],[121,108,67,0.1325595120272165],[121,108,68,0.1340021300311789],[121,108,69,0.135480276856831],[121,108,70,0.13699458011396243],[121,108,71,0.138545604672974],[121,108,72,0.14013385013146346],[121,108,73,0.14175974824940013],[121,108,74,0.14342366035302545],[121,108,75,0.14512587470730087],[121,108,76,0.1468666038570312],[121,108,77,0.14864598193662126],[121,108,78,0.15046406194846057],[121,108,79,0.15232081300996092],[121,109,64,0.12109398488145906],[121,109,65,0.12244177520649735],[121,109,66,0.12382450774760229],[121,109,67,0.12524296055533768],[121,109,68,0.1266978551419125],[121,109,69,0.12818985404984246],[121,109,70,0.12971955838984517],[121,109,71,0.13128750534791123],[121,109,72,0.13289416566157897],[121,109,73,0.1345399410653506],[121,109,74,0.13622516170538873],[121,109,75,0.13795008352331528],[121,109,76,0.13971488560923906],[121,109,77,0.14151966752397166],[121,109,78,0.14336444659042452],[121,109,79,0.14524915515421466],[121,110,64,0.1137030789600369],[121,110,65,0.11505764847351163],[121,110,66,0.11644882621171632],[121,110,67,0.11787736731378085],[121,110,68,0.11934396915035156],[121,110,69,0.12084926889988895],[121,110,70,0.1223938410947516],[121,110,71,0.12397819513700953],[121,110,72,0.125602772784011],[121,110,73,0.12726794560364557],[121,110,74,0.12897401239944012],[121,110,75,0.130721196605308],[121,110,76,0.13250964365008044],[121,110,77,0.13433941829177898],[121,110,78,0.1362105019216217],[121,110,79,0.13812278983778953],[121,111,64,0.10626901933053184],[121,111,65,0.10762975051215828],[121,111,66,0.10902877312741432],[121,111,67,0.11046681939350683],[121,111,68,0.11194456251080986],[121,111,69,0.11346261424641169],[121,111,70,0.11502152248799857],[121,111,71,0.11662176876801944],[121,111,72,0.1182637657581539],[121,111,73,0.11994785473402714],[121,111,74,0.12167430301030874],[121,111,75,0.12344330134601439],[121,111,76,0.1252549613201423],[121,111,77,0.12710931267759856],[121,111,78,0.12900630064540874],[121,111,79,0.1309457832192406],[121,112,64,0.0987959173814893],[121,112,65,0.10016219957412792],[121,112,66,0.10156847258226892],[121,112,67,0.10301544570120341],[121,112,68,0.10450376794366711],[121,112,69,0.10603402563025155],[121,112,70,0.10760673995070352],[121,112,71,0.10922236449605144],[121,112,72,0.11088128276158515],[121,112,73,0.11258380562062986],[121,112,74,0.114330168769253],[121,112,75,0.11612053014172358],[121,112,76,0.11795496729685218],[121,112,77,0.11983347477517065],[121,112,78,0.121755961426945],[121,112,79,0.12372224771104928],[121,113,64,0.09128792218273157],[121,113,65,0.09265915208239706],[121,113,66,0.09407208731070693],[121,113,67,0.09552741425155897],[121,113,68,0.09702575772406058],[121,113,69,0.09856767857942456],[121,113,70,0.10015367126930069],[121,113,71,0.10178416138547858],[121,113,72,0.10345950317099156],[121,113,73,0.10517997700255771],[121,113,74,0.10694578684450667],[121,113,75,0.10875705767399607],[121,113,76,0.11061383287766191],[121,113,77,0.11251607161965188],[121,113,78,0.11446364618103794],[121,113,79,0.11645633927063614],[121,114,64,0.08374921773751043],[121,114,65,0.08512479987728855],[121,114,66,0.0865438159346838],[121,114,67,0.088006929403248],[121,114,68,0.08951474091387218],[121,114,69,0.0910677858377924],[121,114,70,0.09266653186156903],[121,114,71,0.09431137653398675],[121,114,72,0.09600264478489556],[121,114,73,0.09774058641593447],[121,114,74,0.099525373563282],[121,114,75,0.10135709813224436],[121,114,76,0.1032357692038155],[121,114,77,0.10516131041316779],[121,114,78,0.1071335573000638],[121,114,79,0.10915225463121986],[121,115,64,0.07618402017939552],[121,115,65,0.07756336740679953],[121,115,66,0.07898789014817098],[121,115,67,0.08045822903829375],[121,115,68,0.08197496053667719],[121,115,69,0.08353859453629509],[121,115,70,0.08514957194484063],[121,115,71,0.0868082622384404],[121,115,72,0.08851496098785372],[121,115,73,0.09026988735709096],[121,115,74,0.09207318157460376],[121,115,75,0.09392490237684997],[121,115,76,0.09582502442437485],[121,115,77,0.09777343569036018],[121,115,78,0.0997699348216382],[121,115,79,0.10181422847219596],[121,116,64,0.06859657491416182],[121,116,65,0.06997910886145225],[121,116,66,0.07140857184571331],[121,116,67,0.0728855816850667],[121,116,68,0.07441069069590611],[121,116,69,0.0759843833069983],[121,116,70,0.07760707364664154],[121,116,71,0.07927910310281944],[121,116,72,0.08100073785637596],[121,116,73,0.08277216638715101],[121,116,74,0.08459349695322299],[121,116,75,0.08646475504306422],[121,116,76,0.08838588080075116],[121,116,77,0.09035672642418002],[121,116,78,0.09237705353628473],[121,116,79,0.09444653052928337],[121,117,64,0.06099115370632052],[121,117,65,0.062376305253319886],[121,117,66,0.06381015019470715],[121,117,67,0.0652932835845671],[121,117,68,0.06682623363587786],[121,117,69,0.06840945933961112],[121,117,70,0.07004334805742363],[121,117,71,0.07172821308787869],[121,117,72,0.07346429120622372],[121,117,73,0.07525174017766273],[121,117,74,0.07709063624427037],[121,117,75,0.078980971585354],[121,117,76,0.08092265175140417],[121,117,77,0.08291549307158547],[121,117,78,0.08495922003476503],[121,117,79,0.08705346264410324],[121,118,64,0.05337205171071563],[121,118,65,0.054759261439643714],[121,118,66,0.05619693865181613],[121,118,67,0.05768565570040807],[121,118,68,0.059225916746114216],[121,118,69,0.060818155380886474],[121,118,70,0.062462732225794126],[121,118,71,0.0641599325029461],[121,118,72,0.06590996358149909],[121,118,73,0.06771295249769271],[121,118,74,0.06956894344905712],[121,118,75,0.07147789526260012],[121,118,76,0.073439678837113],[121,118,77,0.07545407455954961],[121,118,78,0.07752076969547167],[121,118,79,0.07963935575359049],[121,119,64,0.04574358444898147],[121,119,65,0.047132303090839656],[121,119,66,0.04857327192332228],[121,119,67,0.05006704067230161],[121,119,68,0.05161408950873886],[121,119,69,0.053214826676705074],[121,119,70,0.05486958609604936],[121,119,71,0.05657862493965693],[121,119,72,0.058342121185323614],[121,119,73,0.06016017114218147],[121,119,74,0.06203278695182579],[121,119,75,0.06395989406395025],[121,119,76,0.06594132868662633],[121,119,77,0.06797683521118514],[121,119,78,0.07006606361169204],[121,119,79,0.0722085668190453],[121,120,64,0.03811008473067379],[121,120,65,0.03949977360270718],[121,120,66,0.040943502869225656],[121,120,67,0.04244179971285389],[121,120,68,0.043995120388770126],[121,120,69,0.04560384785665633],[121,120,70,0.04726828938782185],[121,120,71,0.048988674147440014],[121,120,72,0.05076515075192317],[121,120,73,0.05259778480137456],[121,120,74,0.05448655638726552],[121,120,75,0.05643135757514206],[121,120,76,0.0584319898625022],[121,120,77,0.06048816161179826],[121,120,78,0.06259948545855587],[121,120,79,0.06476547569464114],[121,121,64,0.030475899519460337],[121,121,65,0.03186603095322377],[121,121,66,0.03331199935147616],[121,121,67,0.034814309448060854],[121,121,68,0.036373393667693155],[121,121,69,0.037989609761495124],[121,121,70,0.039663238418224334],[121,121,71,0.041394480851134896],[121,121,72,0.043183456360496864],[121,121,73,0.04503019987171114],[121,121,74,0.04693465944917152],[121,121,75,0.04889669378567418],[121,121,76,0.05091606966751783],[121,121,77,0.05299245941524966],[121,121,78,0.05512543830004568],[121,121,79,0.057314481935761497],[121,122,64,0.022845386744175855],[121,122,65,0.024235444503733716],[121,122,66,0.025683141026145218],[121,122,67,0.027188958701304555],[121,122,68,0.0287533062201189],[121,122,69,0.030376516213289295],[121,122,70,0.032058842866299564],[121,122,71,0.03380045951055244],[121,122,72,0.03560145619068228],[121,122,73,0.0374618372079758],[121,122,74,0.039381518640057234],[121,122,75,0.041360325836636236],[121,122,76,0.04339799089146146],[121,122,77,0.04549415009043478],[121,122,78,0.04764834133587781],[121,122,79,0.049860001546982],[121,123,64,0.015222912054548454],[121,123,65,0.01661239174433543],[121,123,66,0.018061316079342804],[121,123,67,0.019570145220660806],[121,123,68,0.021139264233335453],[121,123,69,0.02276898072805872],[121,123,70,0.024459522479581164],[121,123,71,0.026211035021781237],[121,123,72,0.028023579219421668],[121,123,73,0.02989712881652573],[121,123,74,0.03183156796152942],[121,123,75,0.033826688709006514],[121,123,76,0.03588218849811087],[121,123,77,0.03799766760769119],[121,123,78,0.040172626588067306],[121,123,79,0.0424064636695034],[121,124,64,0.007612845521986489],[121,124,65,0.009001254983856177],[121,124,66,0.010450917907267099],[121,124,67,0.011962272349904768],[121,124,68,0.013535679870137596],[121,124,69,0.015171423171291776],[121,124,70,0.016869703723151996],[121,124,71,0.018630639360628476],[121,124,72,0.020454261859614742],[121,124,73,0.02234051448997365],[121,124,74,0.024289249545805913],[121,124,75,0.02630022585279601],[121,124,76,0.028373106252783553],[121,124,77,0.030507455065513445],[121,124,78,0.03270273552755398],[121,124,79,0.03495830720841664],[121,125,64,1.9558285230536487E-5],[121,125,65,0.0014064179842216973],[121,125,66,0.0028563417401967217],[121,125,67,0.004369745643020839],[121,125,68,0.005946967874747355],[121,125,69,0.007588266356154616],[121,125,70,0.009293816371010566],[121,125,71,0.01106370816800295],[121,125,72,0.012897944540367412],[121,125,73,0.0147964383831386],[121,125,74,0.016759010228191262],[121,125,75,0.01878538575685673],[121,125,76,0.020875193290269323],[121,125,77,0.02302796125739015],[121,125,78,0.025243115640702696],[121,125,79,0.02751997739961276],[121,126,64,-0.007552580859324198],[121,126,65,-0.006167737460976874],[121,126,66,-0.004718018789775735],[121,126,67,-0.0032030305779796597],[121,126,68,-0.0016224578783788912],[121,126,69,2.3932584188313122E-5],[121,126,70,0.0017362900395445635],[121,126,71,0.0035146772770453527],[121,126,72,0.005359068228641517],[121,126,73,0.007269345530067084],[121,126,74,0.009245298060308826],[121,126,75,0.01128661845915191],[121,126,76,0.013392900622948067],[121,126,77,0.01556363717856235],[121,126,78,0.017798216935484334],[121,126,79,0.020095922316142545],[121,127,64,-0.0150992089222447],[121,127,65,-0.013716835003328431],[121,127,66,-0.012267775136873826],[121,127,67,-0.01075165672153966],[121,127,68,-0.009168187892458657],[121,127,69,-0.007517159871112233],[121,127,70,-0.0057984493364929834],[121,127,71,-0.004012020817609319],[121,127,72,-0.0021579291073096085],[121,127,73,-2.3632169748799559E-4],[121,127,74,0.0017525587644809937],[121,127,75,0.0038083719978766473],[121,127,76,0.00593067758948107],[121,127,77,0.008118932473096363],[121,127,78,0.010372488387719647],[121,127,79,0.012690589314411027],[121,128,64,-0.022615972240813798],[121,128,65,-0.021236507272053506],[121,128,66,-0.019788547385829025],[121,128,67,-0.01827174148153854],[121,128,68,-0.016685820613208224],[121,128,69,-0.01503060033803194],[121,128,70,-0.013305983085706519],[121,128,71,-0.011511960548626132],[121,128,72,-0.009648616092908902],[121,128,73,-0.007716127190320554],[121,128,74,-0.005714767870938275],[121,128,75,-0.0036449111967608028],[121,128,76,-0.0015070317561184376],[121,128,77,6.98291821071173E-4],[121,128,78,0.0029703743271952687],[121,128,79,0.005308421420011644],[121,129,64,-0.030098530054107453],[121,129,65,-0.028722399462253634],[121,129,66,-0.02727596785232511],[121,129,67,-0.025758905448956537],[121,129,68,-0.024170966050771625],[121,129,69,-0.022511989377875574],[121,129,70,-0.020781903439664795],[121,129,71,-0.018980726923015556],[121,129,72,-0.017108571600822242],[121,129,73,-0.015165644760952945],[121,129,74,-0.013152251655466296],[121,129,75,-0.011068797970290478],[121,129,76,-0.008915792315224769],[121,129,77,-0.006693848734303454],[121,129,78,-0.004403689236535113],[121,129,79,-0.0020461463469826358],[121,130,64,-0.03754255813301943],[121,130,65,-0.03617017297858083],[121,130,66,-0.03472568473931237],[121,130,67,-0.03320878477985134],[121,130,68,-0.03161924945837413],[121,130,69,-0.029956942473329584],[121,130,70,-0.028221817230013713],[121,130,71,-0.026413919227049387],[121,130,72,-0.024533388462739114],[121,130,73,-0.02258046186136209],[121,130,74,-0.02055547571925609],[121,130,75,-0.0184588681708876],[121,130,76,-0.016291181674769506],[121,130,77,-0.014053065519264774],[121,130,78,-0.011745278348292976],[121,130,79,-0.00936869070690105],[121,131,64,-0.04494375246541671],[121,131,65,-0.04357550913450703],[121,131,66,-0.04213336584938121],[121,131,67,-0.04061703491982438],[121,131,68,-0.03902631506788712],[121,131,69,-0.03736109377413721],[121,131,70,-0.03562134964328323],[121,131,71,-0.03380715478923313],[121,131,72,-0.03191867723955888],[121,131,73,-0.029956183359437394],[121,131,74,-0.02792004029490114],[121,131,75,-0.02581071843561622],[121,131,76,-0.023628793897032097],[121,131,77,-0.021374951021953192],[121,131,78,-0.01904998490154075],[121,131,79,-0.01665480391571106],[121,132,64,-0.052297832996620275],[121,132,65,-0.0509341129073948],[121,132,66,-0.04949470235338582],[121,132,67,-0.04797933438517543],[121,132,68,-0.04638782988249768],[121,132,69,-0.04472009990027703],[121,132,70,-0.04297614803357819],[121,132,71,-0.04115607280152678],[121,132,72,-0.03926007005017251],[121,132,73,-0.0372884353743651],[121,132,74,-0.0352415665584801],[121,132,75,-0.03311996603620515],[121,132,76,-0.030924243369237492],[121,132,77,-0.028655117744939673],[121,132,78,-0.02631342049296259],[121,132,79,-0.02390009762080092],[121,133,64,-0.059600547424834116],[121,133,65,-0.05824171674898404],[121,133,66,-0.0568054126149411],[121,133,67,-0.05529138860036631],[121,133,68,-0.05369948752610243],[121,133,69,-0.0520296438022636],[121,133,70,-0.050281885792776926],[121,133,71,-0.048456338198439086],[121,133,72,-0.04655322445845933],[121,133,73,-0.04457286917055803],[121,133,74,-0.04251570052945752],[121,133,75,-0.04038225278397778],[121,133,76,-0.038173168712586136],[121,133,77,-0.03588920211744817],[121,133,78,-0.033531220336989076],[121,133,79,-0.031100206776931927],[121,134,64,-0.06684767505170475],[121,134,65,-0.06549408445148464],[121,134,66,-0.06406124607097796],[121,134,67,-0.06254893379197646],[121,134,68,-0.0609570121496158],[121,134,69,-0.059285438678765456],[121,134,70,-0.05753426627842384],[121,134,71,-0.05570364559417673],[121,134,72,-0.0537938274186921],[121,134,73,-0.05180516511031985],[121,134,74,-0.04973811702963271],[121,134,75,-0.04759324899412376],[121,134,76,-0.045371236750905486],[121,134,77,-0.04307286846745939],[121,134,78,-0.04069904724044748],[121,134,79,-0.038250793622549684],[121,135,64,-0.07403503068820583],[121,135,65,-0.07268701506946651],[121,135,66,-0.0712579871685487],[121,135,67,-0.06974774093934777],[121,135,68,-0.06815616239437983],[121,135,69,-0.06648323195172123],[121,135,70,-0.06472902679950565],[121,135,71,-0.0628937232780441],[121,135,72,-0.060977599279533834],[121,135,73,-0.05898103666543164],[121,135,74,-0.05690452370132226],[121,135,75,-0.054748657509499754],[121,135,76,-0.05251414653910702],[121,135,77,-0.05020181305388305],[121,135,78,-0.04781259563752582],[121,135,79,-0.045347551716637624],[121,136,64,-0.08115846861546827],[121,136,65,-0.07981634689716266],[121,136,66,-0.07839145935750302],[121,136,67,-0.07688361978153169],[121,136,68,-0.07529273541229764],[121,136,69,-0.07361880929858011],[121,136,70,-0.07186194265973245],[121,136,71,-0.07002233726770968],[121,136,72,-0.06810029784625027],[121,136,73,-0.06609623448728452],[121,136,74,-0.06401066508439912],[121,136,75,-0.06184421778358007],[121,136,76,-0.059597633451074605],[121,136,77,-0.05727176815842405],[121,136,78,-0.05486759568467625],[121,136,79,-0.05238621003574129],[121,137,64,-0.08821388660074869],[121,137,65,-0.08687796150138916],[121,137,66,-0.08545752913922999],[121,137,67,-0.08395242288074034],[121,137,68,-0.08236257094288624],[121,137,69,-0.08068799874186317],[121,137,70,-0.07892883125852068],[121,137,71,-0.07708529542054021],[121,137,72,-0.07515772250133634],[121,137,73,-0.07314655053575225],[121,137,74,-0.07105232675238637],[121,137,75,-0.06887571002275994],[121,137,76,-0.06661747332717993],[121,137,77,-0.06427850623733633],[121,137,78,-0.06185981741565405],[121,137,79,-0.05936253713135442],[121,138,64,-0.09519722996871294],[121,138,65,-0.0938677878102474],[121,138,66,-0.09245211017163935],[121,138,67,-0.09095004974247367],[121,138,68,-0.08936155544742386],[121,138,69,-0.08768667479621417],[121,138,70,-0.08592555624984866],[121,138,71,-0.08407845160317051],[121,138,72,-0.08214571838372253],[121,138,73,-0.08012782226697712],[121,138,74,-0.07802533950777346],[121,138,75,-0.07583895938817509],[121,138,76,-0.07356948668159458],[121,138,77,-0.07121784413323584],[121,138,78,-0.0687850749568597],[121,138,79,-0.06627234534784188],[121,139,64,-0.10210449572765146],[121,139,65,-0.10078180625723165],[121,139,66,-0.09937116743000118],[121,139,67,-0.09787245099193698],[121,139,68,-0.09628562629980608],[121,139,69,-0.0946107626725643],[121,139,70,-0.09284803175860645],[121,139,71,-0.09099770991893141],[121,139,72,-0.08906018062619048],[121,139,73,-0.08703593687968869],[121,139,74,-0.08492558363617964],[121,139,75,-0.08272984025666064],[121,139,76,-0.08044954296902207],[121,139,77,-0.0780856473465944],[121,139,78,-0.07563923080260682],[121,139,79,-0.07311149510051806],[121,140,64,-0.10893173675095313],[121,140,65,-0.10761605298106791],[121,140,66,-0.10621072142397003],[121,140,67,-0.10471563260708239],[121,140,68,-0.1031307760344411],[121,140,69,-0.10145624253973062],[121,140,70,-0.0996922266547624],[121,140,71,-0.09783902899345909],[121,140,72,-0.09589705865131104],[121,140,73,-0.09386683562038012],[121,140,74,-0.09174899321968522],[121,140,75,-0.08954428054117847],[121,140,76,-0.08725356491117042],[121,140,77,-0.08487783436723895],[121,140,78,-0.0824182001506445],[121,140,79,-0.07987589921420557],[121,141,64,-0.11567506601359023],[121,141,65,-0.11436662408103582],[121,141,66,-0.11296685247054716],[121,141,67,-0.11147566020802191],[121,141,68,-0.10989305665093607],[121,141,69,-0.10821915384320879],[121,141,70,-0.1064541688851054],[121,141,71,-0.1045984263182429],[121,141,72,-0.10265236052567206],[121,141,73,-0.10061651814709915],[121,141,74,-0.09849156050908936],[121,141,75,-0.09627826607046153],[121,141,76,-0.09397753288272681],[121,141,77,-0.09159038106561102],[121,141,78,-0.0891179552976813],[121,141,79,-0.0865615273220306],[121,142,64,-0.12233066088393896],[121,142,65,-0.12102967992809743],[121,142,66,-0.11963570502330223],[121,142,67,-0.11814866340313479],[121,142,68,-0.11656858397589587],[121,142,69,-0.11489559968147756],[121,142,70,-0.11312994986287817],[121,142,71,-0.11127198265243121],[121,142,72,-0.10932215737270679],[121,142,73,-0.107281046952169],[121,142,74,-0.10514934035541212],[121,142,75,-0.1029278450281994],[121,142,76,-0.10061748935714765],[121,142,77,-0.09821932514410558],[121,142,78,-0.09573453009523736],[121,142,79,-0.09316441032477407],[121,143,64,-0.12889476747055495],[121,143,65,-0.12760144953145292],[121,143,66,-0.12621349205747612],[121,143,67,-0.1247308401914956],[121,143,68,-0.12315354208145746],[121,143,69,-0.1214817512394335],[121,143,70,-0.11971572891492865],[121,143,71,-0.11785584648251457],[121,143,72,-0.11590258784374974],[121,143,73,-0.11385655184346877],[121,143,74,-0.11171845470026509],[121,143,75,-0.1094891324513857],[121,143,76,-0.10716954341189044],[121,143,77,-0.10476077064811307],[121,143,78,-0.1022640244654458],[121,143,79,-0.09968064491039952],[121,144,64,-0.1353637050240878],[121,144,65,-0.1340782349607087],[121,144,66,-0.13269649951115114],[121,144,67,-0.1312184614218005],[121,144,68,-0.1296441877607425],[121,144,69,-0.1279738522791517],[121,144,70,-0.1262077377865618],[121,144,71,-0.12434623854007776],[121,144,72,-0.12238986264750384],[121,144,73,-0.1203392344844526],[121,144,74,-0.11819509712527343],[121,144,75,-0.11595831478801588],[121,144,76,-0.11362987529327295],[121,144,77,-0.11121089253695216],[121,144,78,-0.10870260897698647],[121,144,79,-0.10610639813394918],[121,145,64,-0.14173387039449747],[121,145,65,-0.14045641582381863],[121,145,66,-0.1390810907826454],[121,145,67,-0.13760787530795704],[121,145,68,-0.13603685506039032],[121,145,69,-0.13436822368812062],[121,145,70,-0.13260228520425077],[121,145,71,-0.13073945637777473],[121,145,72,-0.12878026913808038],[121,145,73,-0.1267253729930674],[121,145,74,-0.12457553746071137],[121,145,75,-0.12233165451428873],[121,145,76,-0.11999474104111663],[121,145,77,-0.11756594131484377],[121,145,78,-0.11504652948131378],[121,145,79,-0.11243791205795683],[121,146,64,-0.1480017425432374],[121,146,65,-0.14673245380046374],[121,146,66,-0.14536371128380388],[121,146,67,-0.1438955120010037],[121,146,68,-0.14232795986983793],[121,146,69,-0.14066126808462331],[121,146,70,-0.138895761495879],[121,146,71,-0.13703187900319425],[121,146,72,-0.13507017596127513],[121,146,73,-0.13301132659924353],[121,146,74,-0.13085612645301603],[121,146,75,-0.12860549481098438],[121,146,76,-0.1262604771728424],[121,146,77,-0.12382224772160733],[121,146,78,-0.12129211180884358],[121,146,79,-0.11867150845305685],[121,147,64,-0.15416388711057505],[121,147,65,-0.15290289723104278],[121,147,66,-0.15154089304934903],[121,147,67,-0.15007788821752588],[121,147,68,-0.14851400456751362],[121,147,69,-0.14684947448043717],[121,147,70,-0.14508464326867665],[121,147,71,-0.14321997157078847],[121,147,72,-0.14125603775925344],[121,147,73,-0.1391935403611153],[121,147,74,-0.13703330049135165],[121,147,75,-0.13477626429918532],[121,147,76,-0.13242350542719106],[121,147,77,-0.12997622748323545],[121,147,78,-0.127435766525273],[121,147,79,-0.12480359355894943],[121,148,64,-0.16021696103820693],[121,148,65,-0.15896438576142635],[121,148,66,-0.15760925940245318],[121,148,67,-0.15615161192473093],[121,148,68,-0.15459158272410856],[121,148,69,-0.1529294230010042],[121,148,70,-0.1511654981450128],[121,148,71,-0.14930029013202162],[121,148,72,-0.1473343999338006],[121,148,73,-0.14526854994014238],[121,148,74,-0.1431035863933794],[121,148,75,-0.14084048183550235],[121,148,76,-0.13848033756772027],[121,148,77,-0.13602438612251266],[121,148,78,-0.13347399374818425],[121,148,79,-0.13083066290588385],[121,149,64,-0.1661577172468498],[121,149,65,-0.1649136550431637],[121,149,66,-0.16356552967621385],[121,149,67,-0.16211338708185752],[121,149,68,-0.16055738386259988],[121,149,69,-0.15889778966275825],[121,149,70,-0.15713498955572758],[121,149,71,-0.1552694864434172],[121,149,72,-0.15330190346782202],[121,149,73,-0.15123298643480465],[121,149,74,-0.149063606249916],[121,149,75,-0.14679476136647762],[121,149,76,-0.14442758024576785],[121,149,77,-0.14196332382935895],[121,149,78,-0.13940338802362007],[121,149,79,-0.13674930619634384],[121,150,64,-0.17198300936896316],[121,150,65,-0.17074754148928883],[121,150,66,-0.16940652399118672],[121,150,67,-0.16796001843808217],[121,150,68,-0.16640819827518694],[121,150,69,-0.1647513512077613],[121,150,70,-0.16298988159115135],[121,150,71,-0.16112431283266293],[121,150,72,-0.1591552898052413],[121,150,73,-0.1570835812730289],[121,150,74,-0.1549100823286359],[121,150,75,-0.15263581684233318],[121,150,76,-0.15026193992302772],[121,150,77,-0.1477897403910502],[121,150,78,-0.14522064326278428],[121,150,79,-0.1425562122470837],[121,151,64,-0.1776897965367693],[121,151,65,-0.17646298708589836],[121,151,66,-0.17512916808913848],[121,151,67,-0.17368841638708088],[121,151,68,-0.17214092189730135],[121,151,69,-0.17048698999581557],[121,151,70,-0.1687270439099845],[121,151,71,-0.16686162712293562],[121,151,72,-0.16489140578946826],[121,151,73,-0.16281717116351346],[121,151,74,-0.1606398420369819],[121,151,75,-0.15836046719021857],[121,151,76,-0.15598022785390941],[121,151,77,-0.15350044018248332],[121,151,78,-0.15092255773902996],[121,151,79,-0.14824817399168544],[121,152,64,-0.18327514822524205],[121,152,65,-0.1820570442591709],[121,152,66,-0.1807304982226995],[121,152,67,-0.17929560187792304],[121,152,68,-0.1777525612383688],[121,152,69,-0.17610169895372496],[121,152,70,-0.1743434567057065],[121,152,71,-0.17247839761512207],[121,152,72,-0.1705072086601105],[121,152,73,-0.16843070310562003],[121,152,74,-0.1662498229439584],[121,152,75,-0.16396564134663727],[121,152,76,-0.16157936512735482],[121,152,77,-0.15909233721615856],[121,152,78,-0.15650603914481154],[121,152,79,-0.15382209354330956],[121,153,64,-0.18873624915024634],[121,153,65,-0.1875268807980065],[121,153,66,-0.18620766610108896],[121,153,67,-0.18477871138247803],[121,153,68,-0.1832402383694971],[121,153,69,-0.18159258658188393],[121,153,70,-0.1798362157306953],[121,153,71,-0.1779717081281118],[121,153,72,-0.17599977110810106],[121,153,73,-0.1739212394580203],[121,153,74,-0.17173707786098635],[121,153,75,-0.1694483833492303],[121,153,76,-0.1670563877682868],[121,153,77,-0.16456246025205945],[121,153,78,-0.1619681097087805],[121,153,79,-0.15927498731781853],[121,154,64,-0.19407040422194688],[121,154,65,-0.1928697848324089],[121,154,66,-0.19155794389203595],[121,154,67,-0.19013500191944988],[121,154,68,-0.18860119596821345],[121,154,69,-0.18695688201831306],[121,154,70,-0.18520253737817616],[121,154,71,-0.18333876309728647],[121,154,72,-0.18136628638936836],[121,154,73,-0.1792859630662066],[121,154,74,-0.1770987799819379],[121,154,75,-0.17480585748803312],[121,154,76,-0.1724084518988136],[121,154,77,-0.16990795796754732],[121,154,78,-0.16730591137314144],[121,154,79,-0.16460399121738878],[121,155,64,-0.19927504355321024],[121,155,65,-0.1980831698673351],[121,155,66,-0.19677872927962292],[121,155,67,-0.19536185613477175],[121,155,68,-0.1938328024199769],[121,155,69,-0.19219194015987362],[121,155,70,-0.19043976382172567],[121,155,71,-0.18857689273092593],[121,155,72,-0.18660407349677333],[121,155,73,-0.18452218244860008],[121,155,74,-0.18233222808207994],[121,155,75,-0.18003535351594002],[121,155,76,-0.17763283895891624],[121,155,77,-0.17512610418700048],[121,155,78,-0.1725167110309982],[121,155,79,-0.16980636587434683],[121,156,64,-0.20434772752314712],[121,156,65,-0.20316457987215375],[121,156,66,-0.20186755057818995],[121,156,67,-0.20045678743849615],[121,156,68,-0.1989325569766056],[121,156,69,-0.19729524684079058],[121,156,70,-0.19554536821247503],[121,156,71,-0.19368355822467775],[121,156,72,-0.19171058239045224],[121,156,73,-0.189627337041397],[121,156,74,-0.18743485177606722],[121,156,75,-0.18513429191850816],[121,156,76,-0.18272696098675356],[121,156,77,-0.1802143031713367],[121,156,78,-0.17759790582382906],[121,156,79,-0.17487950195536017],[121,157,64,-0.2092861518959206],[121,157,65,-0.20811169442584365],[121,157,66,-0.20682207190243662],[121,157,67,-0.20541744519831862],[121,157,68,-0.20389809497175326],[121,157,69,-0.20226442406862954],[121,157,70,-0.20051695993414087],[121,157,71,-0.19865635703422002],[121,157,72,-0.19668339928670187],[121,157,73,-0.19459900250228312],[121,157,74,-0.19240421683511444],[121,157,75,-0.19010022924323833],[121,157,76,-0.1876883659587265],[121,157,77,-0.1851700949675522],[121,157,78,-0.18254702849922344],[121,157,79,-0.17982092552612394],[121,158,64,-0.21408815299455197],[121,158,65,-0.21292233391766224],[121,158,66,-0.21164009839344233],[121,158,67,-0.21024161998945612],[121,158,68,-0.20872719309316035],[121,158,69,-0.20709723531744595],[121,158,70,-0.20535228991561394],[121,158,71,-0.20349302820584403],[121,158,72,-0.20152025200512969],[121,158,73,-0.19943489607274367],[121,158,74,-0.19723803056307754],[121,158,75,-0.19493086348806143],[121,158,76,-0.1925147431890204],[121,158,77,-0.18999116081800338],[121,158,78,-0.18736175282860956],[121,158,79,-0.18462830347626136],[121,159,64,-0.21875171292987805],[121,159,65,-0.21759446480343558],[121,159,66,-0.21631958150076713],[121,159,67,-0.21492724890103998],[121,159,68,-0.21341777471183465],[121,159,69,-0.21179159087826238],[121,159,70,-0.21004925600125712],[121,159,71,-0.20819145776511294],[121,159,72,-0.2062190153742265],[121,159,73,-0.20413288199912427],[121,159,74,-0.20193414723159853],[121,159,75,-0.19962403954918018],[121,159,76,-0.19720392878878512],[121,159,77,-0.1946753286295868],[121,159,78,-0.19203989908512398],[121,159,79,-0.18929944900460516],[121,160,64,-0.22327496488474496],[121,160,65,-0.2221262049175593],[121,160,66,-0.22085862432071368],[121,160,67,-0.21947242089910723],[121,160,68,-0.21796791526825177],[121,160,69,-0.21634555326696658],[121,160,70,-0.21460590837900595],[121,160,71,-0.21274968416368234],[121,160,72,-0.2107777166954513],[121,160,73,-0.20869097701253225],[121,160,74,-0.20649057357440026],[121,160,75,-0.20417775472835653],[121,160,76,-0.20175391118503982],[121,160,77,-0.19922057850290686],[121,160,78,-0.19657943958171253],[121,160,79,-0.19383232716493415],[121,161,64,-0.2276561984532337],[121,161,65,-0.2265158288405018],[121,161,66,-0.2252554869905482],[121,161,67,-0.2238753822459868],[121,161,68,-0.22237584771536123],[121,161,69,-0.22075734268941527],[121,161,70,-0.21902045506605594],[121,161,71,-0.21716590378407763],[121,161,72,-0.21519454126561044],[121,161,73,-0.21310735586736718],[121,161,74,-0.21090547434052265],[121,161,75,-0.20859016429943933],[121,161,76,-0.2061628366990894],[121,161,77,-0.20362504832121753],[121,161,78,-0.20097850426925812],[121,161,79,-0.19822506047196542],[121,162,64,-0.23189386503501108],[121,162,65,-0.23076177332190628],[121,162,66,-0.22950859213877062],[121,162,67,-0.22813454197616778],[121,162,68,-0.22663996801850084],[121,162,69,-0.2250253425638441],[121,162,70,-0.22329126745223826],[121,162,71,-0.22143847650251902],[121,162,72,-0.2194678379576417],[121,162,73,-0.21738035693857483],[121,162,74,-0.2151771779065984],[121,162,75,-0.21285958713421949],[121,162,76,-0.21042901518455792],[121,162,77,-0.20788703939924003],[121,162,78,-0.20523538639482197],[121,162,79,-0.2024759345676962],[121,163,64,-0.23598658328493238],[121,163,65,-0.2348626427594147],[121,163,66,-0.2336165303915646],[121,163,67,-0.2322484774287873],[121,163,68,-0.23075884071234143],[121,163,69,-0.22914810510070882],[121,163,70,-0.22741688590120812],[121,163,71,-0.22556593130992575],[121,163,72,-0.2235961248599163],[121,163,73,-0.22150848787775845],[121,163,74,-0.2193041819482915],[121,163,75,-0.21698451138775143],[121,163,76,-0.21455092572515588],[121,163,77,-0.2120050221919786],[121,163,78,-0.20934854822013338],[121,163,79,-0.20658340394821895],[121,164,64,-0.23993314461765658],[121,164,65,-0.2388172147329769],[121,164,66,-0.23757806593518238],[121,164,67,-0.23621593983648603],[121,164,68,-0.23473120451461982],[121,164,69,-0.23312435693971267],[121,164,70,-0.23139602540920334],[121,164,71,-0.22954697199085272],[121,164,72,-0.22757809497382342],[121,164,73,-0.22549043132789615],[121,164,74,-0.22328515917065894],[121,164,75,-0.22096360024288408],[121,164,76,-0.21852722239194244],[121,164,77,-0.21597764206329473],[121,164,78,-0.21331662680008268],[121,164,79,-0.2105460977507705],[121,165,64,-0.2437325187674595],[121,165,65,-0.24262444559483298],[121,165,66,-0.2413921421344608],[121,165,67,-0.24003585997083043],[121,165,68,-0.23855597799685557],[121,165,69,-0.23695300484422133],[121,165,70,-0.2352275813215663],[121,165,71,-0.23338048286055701],[121,165,72,-0.23141262196982904],[121,165,73,-0.22932505069686293],[121,165,74,-0.2271189630976269],[121,165,75,-0.22479569771420915],[121,165,76,-0.2223567400602795],[121,165,77,-0.21980372511443025],[121,165,78,-0.2171384398214098],[121,165,79,-0.21436282560120712],[121,166,64,-0.2473838594031299],[121,166,65,-0.24628347611504486],[121,166,66,-0.24505788720733634],[121,166,67,-0.24370735384417186],[121,166,68,-0.24223226531192166],[121,166,69,-0.2406331414529257],[121,166,70,-0.23891063510690325],[121,166,71,-0.23706553456006318],[121,166,72,-0.23509876600188273],[121,166,73,-0.23301139598962972],[121,166,74,-0.2308046339204568],[121,166,75,-0.22847983451128784],[121,166,76,-0.22603850028634498],[121,166,77,-0.2234822840723556],[121,166,78,-0.2208129915014616],[121,166,79,-0.2180325835217789],[121,167,64,-0.250886509798092],[121,167,65,-0.24979363718273107],[121,167,66,-0.24857461995552044],[121,167,67,-0.24722972846809999],[121,167,68,-0.24575936197862835],[121,167,69,-0.24416405108892025],[121,167,70,-0.24244446018903532],[121,167,71,-0.24060138990938595],[121,167,72,-0.23863577958032534],[121,167,73,-0.23654870969929376],[121,167,74,-0.23434140440535167],[121,167,75,-0.23201523396131785],[121,167,76,-0.2295717172433629],[121,167,77,-0.22701252423809715],[121,167,78,-0.22433947854717362],[121,167,79,-0.22155455989935946],[121,168,64,-0.2542400085555756],[121,168,65,-0.253154455562819],[121,168,66,-0.2519418555511449],[121,168,67,-0.25060248766830096],[121,168,68,-0.2491367607231284],[121,168,69,-0.24754521562600362],[121,168,70,-0.24582852783655518],[121,168,71,-0.2439875098187222],[121,168,72,-0.24202311350311445],[121,168,73,-0.23993643275675336],[121,168,74,-0.23772870586002448],[121,168,75,-0.23540131799105413],[121,168,76,-0.23295580371736602],[121,168,77,-0.2303938494948542],[121,168,78,-0.2277172961740933],[121,168,79,-0.2249281415139408],[121,169,64,-0.25744409538892254],[121,169,65,-0.2563656597084065],[121,169,66,-0.2551593113794691],[121,169,67,-0.25382533795591655],[121,169,68,-0.25236415737724005],[121,169,69,-0.2507763204122939],[121,169,70,-0.24906251311008087],[121,169,71,-0.24722355925770345],[121,169,72,-0.24526042284545546],[121,169,73,-0.24317421053911992],[121,169,74,-0.24096617415931088],[121,169,75,-0.23863771316807103],[121,169,76,-0.23619037716257896],[121,169,77,-0.2336258683760034],[121,169,78,-0.23094604418552744],[121,169,79,-0.22815291962749118],[121,170,64,-0.26049871695711535],[121,170,65,-0.2594271856288175],[121,170,66,-0.2582269129377386],[121,170,67,-0.2568981944554857],[121,170,68,-0.2554414568337712],[121,170,69,-0.25385726025124866],[121,170,70,-0.25214630086729406],[121,170,71,-0.25030941328279854],[121,170,72,-0.2483475730079312],[121,170,73,-0.24626189893695438],[121,170,74,-0.24405365582991956],[121,170,75,-0.2417242568014556],[121,170,76,-0.23927526581650982],[121,170,77,-0.23670840019307238],[121,170,78,-0.2340255331119102],[121,170,79,-0.23122869613325903],[121,171,64,-0.26340403275534663],[121,171,65,-0.2623391828131699],[121,171,66,-0.26114479979000493],[121,171,67,-0.2598211868892879],[121,171,68,-0.2583687790586636],[121,171,69,-0.2567881454398966],[121,171,70,-0.2550799918255756],[121,171,71,-0.25324516312267464],[121,171,72,-0.2512846458229345],[121,171,73,-0.2491995704801414],[121,171,74,-0.24699121419413306],[121,171,75,-0.2446610031017472],[121,171,76,-0.24221051487456713],[121,171,77,-0.23964148122349815],[121,171,78,-0.23695579041020154],[121,171,79,-0.2341554897653345],[121,172,64,-0.2661604210607379],[121,172,65,-0.2651020202095661],[121,172,66,-0.26391333157802654],[121,172,67,-0.26259466561819866],[121,172,68,-0.26114646516006434],[121,172,69,-0.25956930786440713],[121,172,70,-0.2578639086823554],[121,172,71,-0.25603112232164005],[121,172,72,-0.25407194571952996],[121,172,73,-0.25198752052251405],[121,172,74,-0.2497791355725716],[121,172,75,-0.24744822940023603],[121,172,76,-0.24499639272431317],[121,172,77,-0.2424253709582861],[121,172,78,-0.23973706672342965],[121,172,79,-0.23693354236858966],[121,173,64,-0.26876848493326044],[121,173,65,-0.2677162922599562],[121,173,66,-0.26653309408829373],[121,173,67,-0.26521920773910757],[121,173,68,-0.26377508351438106],[121,173,69,-0.2622013071530338],[121,173,70,-0.2604986022932214],[121,173,71,-0.25866783294120876],[121,173,72,-0.2567100059467833],[121,173,73,-0.2546262734852829],[121,173,74,-0.2524179355460703],[121,173,75,-0.2500864424276671],[121,173,76,-0.2476333972394026],[121,173,77,-0.24506055840961616],[121,173,78,-0.24236984220042845],[121,173,79,-0.23956332522904178],[121,174,64,-0.2712290582717177],[121,174,65,-0.27018282499053636],[121,174,66,-0.2690049053750426],[121,174,67,-0.2676956232387606],[121,174,68,-0.26625543594917345],[121,174,69,-0.26468493688629957],[121,174,70,-0.2629848579076536],[121,174,71,-0.2611560718196515],[121,174,72,-0.259199594855425],[121,174,73,-0.25711658915912294],[121,174,74,-0.2549083652765304],[121,174,75,-0.2525763846522161],[121,174,76,-0.25012226213307],[121,174,77,-0.2475477684782591],[121,174,78,-0.24485483287562815],[121,174,79,-0.24204554546449897],[121,175,64,-0.27354321192486575],[121,175,65,-0.27250268215775597],[121,175,66,-0.2713298219393334],[121,175,67,-0.2700249612041019],[121,175,68,-0.26858856398296793],[121,175,69,-0.2670212308645006],[121,175,70,-0.2653237014624533],[121,175,71,-0.2634968568896109],[121,175,72,-0.26154172223792227],[121,175,73,-0.25945946906500117],[121,175,74,-0.2572514178868187],[121,175,75,-0.25491904067680937],[121,175,76,-0.25246396337123933],[121,175,77,-0.2498879683808759],[121,175,78,-0.24719299710897924],[121,175,79,-0.2443811524755698],[121,176,64,-0.27571225985773506],[121,176,65,-0.27467717144999904],[121,176,66,-0.2735091449642535],[121,176,67,-0.2722085160891754],[121,176,68,-0.2707757551220469],[121,176,69,-0.26921146943258734],[121,176,70,-0.2675164059329357],[121,176,71,-0.2656914535538404],[121,176,72,-0.26373764572702507],[121,176,73,-0.261656162873805],[121,176,74,-0.25944833489978425],[121,176,75,-0.25711564369585094],[121,176,76,-0.25465972564532025],[121,176,77,-0.25208237413726775],[121,176,78,-0.24938554208606734],[121,176,79,-0.24657134445709383],[121,177,64,-0.277737765373017],[121,177,65,-0.2767078507448022],[121,177,66,-0.27554442660611556],[121,177,67,-0.2742478340384592],[121,177,68,-0.2728185492140863],[121,177,69,-0.27125718586229297],[121,177,70,-0.26956449774174907],[121,177,71,-0.2677413811189351],[121,177,72,-0.2657888772526452],[121,177,73,-0.2637081748846358],[121,177,74,-0.26150061273624814],[121,177,75,-0.259167682011223],[121,177,76,-0.25671102890455644],[121,177,77,-0.2541324571174385],[121,177,78,-0.2514339303782913],[121,177,79,-0.24861757496986459],[121,178,64,-0.27962154738759115],[121,178,65,-0.2785965344216855],[121,178,66,-0.2774374763417179],[121,178,67,-0.2761447192666947],[121,178,68,-0.27471874485871073],[121,178,69,-0.273160172791577],[121,178,70,-0.27146976322539373],[121,178,71,-0.2696484192871259],[121,178,72,-0.26769718955715016],[121,178,73,-0.26561727056184237],[121,178,74,-0.2634100092720477],[121,178,75,-0.2610769056076345],[121,178,76,-0.25861961494799834],[121,178,77,-0.2560399506485429],[121,178,78,-0.2533398865631684],[121,178,79,-0.25052155957271105],[121,179,64,-0.28136568676425144],[121,179,65,-0.2803452997306538],[121,179,66,-0.2791903673717311],[121,179,67,-0.27790124049528264],[121,179,68,-0.2764784058750266],[121,179,69,-0.27492248872144864],[121,179,70,-0.2732342551584982],[121,179,71,-0.27141461470619577],[121,179,72,-0.269464622769122],[121,179,73,-0.26738548313085453],[121,179,74,-0.26517855045419136],[121,179,75,-0.26284533278737376],[121,179,76,-0.2603874940761587],[121,179,77,-0.2578068566817827],[121,179,78,-0.25510540390483727],[121,179,79,-0.25228528251500326],[121,180,64,-0.28297253269848854],[121,180,65,-0.2819564932162274],[121,180,66,-0.28080544308006994],[121,180,67,-0.27951973744509206],[121,180,68,-0.27809986782599183],[121,180,69,-0.27654646457002674],[121,180,70,-0.27486029933571776],[121,180,71,-0.27304228757738147],[121,180,72,-0.2710934910354518],[121,180,73,-0.2690151202326718],[121,180,74,-0.2668085369759824],[121,180,75,-0.2644752568643255],[121,180,76,-0.2620169518022144],[121,180,77,-0.25943545251910693],[121,180,78,-0.25673275109460636],[121,180,79,-0.25391100348943896],[121,181,64,-0.2844447091604334],[121,181,65,-0.28343273719710516],[121,181,66,-0.2822853235493459],[121,181,67,-0.2810028273857964],[121,181,68,-0.27958574459972574],[121,181,69,-0.2780347102839352],[121,181,70,-0.2763505012113491],[121,181,71,-0.2745340383213548],[121,181,72,-0.2725863892118561],[121,181,73,-0.27050877063711476],[121,181,74,-0.2683025510112145],[121,181,75,-0.26596925291735707],[121,181,76,-0.26351055562284975],[121,181,77,-0.26092829759981684],[121,181,78,-0.2582244790516586],[121,181,79,-0.25540126444521094],[121,182,64,-0.2857851213919741],[121,182,65,-0.28477693630147294],[121,182,66,-0.2836329121324257],[121,182,67,-0.28235341174174],[121,182,68,-0.2809389350477691],[121,182,69,-0.27939012150705467],[121,182,70,-0.27770775259668024],[121,182,71,-0.2758927543023062],[121,182,72,-0.2739461996118444],[121,182,73,-0.27186931101484857],[121,182,74,-0.26966346300745425],[121,182,75,-0.2673301846030831],[121,182,76,-0.26487116184876225],[121,182,77,-0.26228824034709697],[121,182,78,-0.25958342778392085],[121,182,79,-0.25675889646157146],[121,183,64,-0.28699696245894724],[121,183,65,-0.2859922840578588],[121,183,66,-0.2848514020799854],[121,183,67,-0.28357468275424413],[121,183,68,-0.28216262968020234],[121,183,69,-0.280615886306526],[121,183,70,-0.27893523841497825],[121,183,71,-0.277121616610027],[121,183,72,-0.27517609881403216],[121,183,73,-0.27309991276808154],[121,183,74,-0.27089443853830886],[121,183,75,-0.2685612110279131],[121,183,76,-0.266101922494725],[121,183,77,-0.2635184250743635],[121,183,78,-0.2608127333090021],[121,183,79,-0.25798702668169626],[121,184,64,-0.28808371985849834],[121,184,65,-0.2870822695416304],[121,184,66,-0.28594428322416165],[121,184,67,-0.28467013020044163],[121,184,68,-0.2832603174177054],[121,184,69,-0.28171549195610057],[121,184,70,-0.28003644351420187],[121,184,71,-0.2782241069000809],[121,184,72,-0.27627956452788893],[121,184,73,-0.27420404892003303],[121,184,74,-0.2719989452147762],[121,184,75,-0.26966579367947474],[121,184,76,-0.2672062922293069],[121,184,77,-0.2646222989515312],[121,184,78,-0.26191583463529333],[121,184,79,-0.25908908530693797],[121,185,64,-0.28904918218157205],[121,185,65,-0.2880506840770921],[121,185,66,-0.2869153487182591],[121,185,67,-0.28564354816860527],[121,185,68,-0.284235792400535],[121,185,69,-0.2826927317768003],[121,185,70,-0.28101515953740963],[121,185,71,-0.2792040142920367],[121,185,72,-0.277260382517892],[121,185,73,-0.27518550106313133],[121,185,74,-0.27298075965563573],[121,185,75,-0.27064770341737443],[121,185,76,-0.26818803538420644],[121,185,77,-0.26560361903115726],[121,185,78,-0.26289648080319117],[121,185,79,-0.26006881265143433],[121,186,64,-0.28989744583054067],[121,186,65,-0.2889016279951937],[121,186,66,-0.287768701832519],[121,186,67,-0.286499041889971],[121,186,68,-0.28509316085440983],[121,186,69,-0.2835517120348938],[121,186,70,-0.28187549185086],[121,186,71,-0.2800654423257565],[121,186,72,-0.27812265358608734],[121,186,73,-0.2760483663659493],[121,186,74,-0.2738439745168898],[121,186,75,-0.2715110275233018],[121,186,76,-0.269051233023207],[121,186,77,-0.26646645933446833],[121,186,78,-0.2637587379864491],[121,186,79,-0.26093026625707494],[121,187,64,-0.2906329217919429],[121,187,65,-0.2896395174468229],[121,187,66,-0.28850876280592863],[121,187,67,-0.28724103462704087],[121,187,68,-0.2858368480132941],[121,187,69,-0.28429685889716294],[121,187,70,-0.28262186652979004],[121,187,71,-0.2808128159757247],[121,187,72,-0.27887080061303215],[121,187,73,-0.2767970646388508],[121,187,74,-0.2745930055802287],[121,187,75,-0.2722601768104541],[121,187,76,-0.2698002900707326],[121,187,77,-0.2672152179972497],[121,187,78,-0.26450699665363797],[121,187,79,-0.26167782806880346],[121,188,64,-0.29126034246439503],[121,188,65,-0.2902690912717387],[121,188,66,-0.2891402757541254],[121,188,67,-0.28787427461841175],[121,188,68,-0.2864716050991264],[121,188,69,-0.28493292544351945],[121,188,70,-0.28325903740192104],[121,188,71,-0.2814508887234709],[121,188,72,-0.27950957565718093],[121,188,73,-0.27743634545840956],[121,188,74,-0.27523259890057716],[121,188,75,-0.27289989279233695],[121,188,76,-0.27043994250005743],[121,188,77,-0.2678546244756499],[121,188,78,-0.2651459787897661],[121,188,79,-0.26231621167031605],[121,189,64,-0.29178476854160895],[121,189,65,-0.2907954179230876],[121,189,66,-0.2896683156333334],[121,189,67,-0.2884038420800773],[121,189,68,-0.28700251635843566],[121,189,69,-0.28546499873690523],[121,189,70,-0.2837920931486325],[121,189,71,-0.28198474968802245],[121,189,72,-0.28004406711264773],[121,189,73,-0.2779712953505351],[121,189,74,-0.27576783801266347],[121,189,75,-0.27343525491088194],[121,189,76,-0.27097526458110854],[121,189,77,-0.2683897468118407],[121,189,78,-0.2656807451780038],[121,189,79,-0.26285046958008407],[121,190,64,-0.2922115959505507],[121,190,65,-0.2912239024475296],[121,190,66,-0.29009829526037145],[121,190,67,-0.28883515626323264],[121,190,68,-0.28743500615588125],[121,190,69,-0.28589850695051766],[121,190,70,-0.28422646446384137],[121,190,71,-0.2824198308144287],[121,190,72,-0.28047970692538404],[121,190,73,-0.2784073450323399],[121,190,74,-0.27620415119663844],[121,190,75,-0.2738716878239097],[121,190,76,-0.27141167618789674],[121,190,77,-0.26882599895956805],[121,190,78,-0.2661167027415383],[121,190,79,-0.26328600060774954],[121,191,64,-0.29254656284474145],[121,191,65,-0.2915602935209797],[121,191,66,-0.29043597238872165],[121,191,67,-0.28917398256857796],[121,191,68,-0.2877748461247075],[121,191,69,-0.2862392265523491],[121,191,70,-0.2845679312705772],[121,191,71,-0.28276191412034246],[121,191,72,-0.28082227786776426],[121,191,73,-0.27875027671274555],[121,191,74,-0.27654731880274963],[121,191,75,-0.2742149687519434],[121,191,76,-0.2717549501655707],[121,191,77,-0.2691691481695847],[121,191,78,-0.26645961194556556],[121,191,79,-0.26362855727087564],[121,192,64,-0.292795756652683],[121,192,65,-0.2918106905399467],[121,192,66,-0.2906874568406558],[121,192,67,-0.28942643971711424],[121,192,68,-0.288028162374107],[121,192,69,-0.2864932895470339],[121,192,70,-0.28482262999524766],[121,192,71,-0.28301713900065884],[121,192,72,-0.28107792087157135],[121,192,73,-0.27900623145182046],[121,192,74,-0.27680348063505267],[121,192,75,-0.2744712348843541],[121,192,76,-0.2720112197570871],[121,192,77,-0.26942532243496575],[121,192,78,-0.2667155942593995],[121,192,79,-0.26388425327205134],[121,193,64,-0.29296562118142433],[121,193,65,-0.291981550768484],[121,193,66,-0.2908592176954238],[121,193,67,-0.2895990069774381],[121,193,68,-0.28820144275350423],[121,193,69,-0.28666719077501523],[121,193,70,-0.28499706089960486],[121,193,71,-0.28319200959021695],[121,193,72,-0.2812531424193938],[121,193,73,-0.27918171657885105],[121,193,74,-0.27697914339417473],[121,193,75,-0.27464699084485333],[121,193,76,-0.27218698608950054],[121,193,77,-0.26960101799630265],[121,193,78,-0.26689113967871536],[121,193,79,-0.2640595710363597],[121,194,64,-0.2930629637752591],[121,194,65,-0.2920796965407446],[121,194,66,-0.29095809053350175],[121,194,67,-0.2896985314495295],[121,194,68,-0.2883015441737441],[121,194,69,-0.2867677952690192],[121,194,70,-0.28509809547039966],[121,194,71,-0.28329340218455334],[121,194,72,-0.28135482199442186],[121,194,73,-0.27928361316915007],[121,194,74,-0.27708118817912286],[121,194,75,-0.2747491162163247],[121,194,76,-0.27228912571987585],[121,194,77,-0.26970310690678134],[121,194,78,-0.26699311430791595],[121,194,79,-0.2641613693091962],[121,195,64,-0.2930949625295668],[121,195,65,-0.29211232251914876],[121,195,66,-0.2909912847369075],[121,195,67,-0.2897322354050452],[121,195,68,-0.28833569998521036],[121,195,69,-0.2868023456678527],[121,195,70,-0.2851329838667448],[121,195,71,-0.2833285727187298],[121,195,72,-0.2813902195886602],[121,195,73,-0.27931918357960295],[121,195,74,-0.277116878048144],[121,195,75,-0.27478487312500455],[121,195,76,-0.2723248982408244],[121,195,77,-0.26973884465714815],[121,195,78,-0.26702876800263686],[121,195,79,-0.2641968908144575],[121,196,64,-0.2930691735597679],[121,196,65,-0.29208700300814416],[121,196,66,-0.2909663908455583],[121,196,67,-0.2897077236840887],[121,196,68,-0.28831152741283195],[121,196,69,-0.2867784696874953],[121,196,70,-0.28510936242514906],[121,196,71,-0.2833051643041964],[121,196,72,-0.2813669832695276],[121,196,73,-0.2792960790429352],[121,196,74,-0.27709386563861693],[121,196,75,-0.2747619138839865],[121,196,76,-0.27230195394564405],[121,196,77,-0.2697158778605394],[121,196,78,-0.26700574207235617],[121,196,79,-0.26417376997306474],[121,197,64,-0.29299353832543873],[121,197,65,-0.2920116993235904],[121,197,66,-0.2908913879697118],[121,197,67,-0.28963299114849883],[121,197,68,-0.2882370350480292],[121,197,69,-0.28670418764952654],[121,197,70,-0.28503526122227263],[121,197,71,-0.2832312148237367],[121,197,72,-0.2812931568048834],[121,197,73,-0.27922234732073314],[121,197,74,-0.27702020084601053],[121,197,75,-0.2746882886960904],[121,197,76,-0.27222834155310116],[121,197,77,-0.26964225199721603],[121,197,78,-0.2669320770431586],[121,197,79,-0.264100040681871],[121,198,64,-0.29287639100954355],[121,198,65,-0.291894767217737],[121,198,66,-0.29077465125845237],[121,198,67,-0.2895164301916199],[121,198,68,-0.28812063039755986],[121,198,69,-0.28658792006685296],[121,198,70,-0.2849191116953612],[121,198,71,-0.28311516458445996],[121,198,72,-0.28117718734644404],[121,198,73,-0.2791064404151853],[121,198,74,-0.27690433856187413],[121,198,75,-0.2745724534160553],[121,198,76,-0.27211251599181685],[121,198,77,-0.26952641921916476],[121,198,78,-0.2668162204806086],[121,198,79,-0.2639841441529077],[121,199,64,-0.29272646595280816],[121,199,65,-0.2917449643598151],[121,199,66,-0.2906249594242427],[121,199,67,-0.289366838304574],[121,199,68,-0.2879711274892792],[121,199,69,-0.28643849528675036],[121,199,70,-0.2847697543203801],[121,199,71,-0.2829658640288538],[121,199,72,-0.28102793317161257],[121,199,73,-0.27895722233956466],[121,199,74,-0.2767551464708816],[121,199,75,-0.2744232773720836],[121,199,76,-0.27196334624427854],[121,199,77,-0.2693772462145846],[121,199,78,-0.26666703487276044],[121,199,79,-0.26383493681299597],[121,200,64,-0.2925529051432266],[121,200,65,-0.2915714578722325],[121,200,66,-0.2904515023235361],[121,200,67,-0.2891934256990263],[121,200,68,-0.2877977545348196],[121,200,69,-0.2862651571912236],[121,200,70,-0.2845964463478432],[121,200,71,-0.2827925815038983],[121,200,72,-0.2808546714837111],[121,200,73,-0.2787839769474447],[121,200,74,-0.2765819129069189],[121,200,75,-0.27425005124672275],[121,200,76,-0.2717901232504727],[121,200,77,-0.2692040221322578],[121,200,78,-0.26649380557329005],[121,200,79,-0.26366169826371433],[121,201,64,-0.29236526576069977],[121,201,65,-0.2913838319223744],[121,201,66,-0.2902638885934473],[121,201,67,-0.2890058229864473],[121,201,68,-0.28761016164917586],[121,201,69,-0.2860775729546734],[121,201,70,-0.28440886959633593],[121,201,71,-0.282605011088236],[121,201,72,-0.28066710627061897],[121,201,73,-0.27859641582064587],[121,201,74,-0.27639435476821694],[121,201,75,-0.2740624950170869],[121,201,76,-0.27160256787113224],[121,201,77,-0.2690164665657985],[121,201,78,-0.26630624880475706],[121,201,79,-0.26347413930172137],[121,202,64,-0.29217291056556105],[121,202,65,-0.29119147430932124],[121,202,66,-0.29007152863252805],[121,202,67,-0.288813460748093],[121,202,68,-0.28741779720411464],[121,202,69,-0.2858852063738445],[121,202,70,-0.2842165009507991],[121,202,71,-0.2824126404490803],[121,202,72,-0.2804747337088682],[121,202,73,-0.2784040414071616],[121,202,74,-0.27620197857359785],[121,202,75,-0.27387011711156817],[121,202,76,-0.2714101883244794],[121,202,77,-0.2688240854472008],[121,202,78,-0.2661138661827177],[121,202,79,-0.26328175524394326],[121,203,64,-0.29197629950590065],[121,203,65,-0.2909948141035794],[121,203,66,-0.28987482106337203],[121,203,67,-0.2886167076004179],[121,203,68,-0.2872210002630746],[121,203,69,-0.2856883674228363],[121,203,70,-0.2840196217693983],[121,203,71,-0.2822157228109309],[121,203,72,-0.2802777793795229],[121,203,73,-0.27820705214187536],[121,203,74,-0.27600495611507225],[121,203,75,-0.27367306318764717],[121,203,76,-0.2712131046457963],[121,203,77,-0.2686269737047752],[121,203,78,-0.2659167280455036],[121,203,79,-0.2630845923563264],[121,204,64,-0.2917690330799241],[121,204,65,-0.29078737898759066],[121,204,66,-0.28966722337448625],[121,204,67,-0.2884089534635432],[121,204,68,-0.28701309580415],[121,204,69,-0.28548031876190916],[121,204,70,-0.28381143501353934],[121,204,71,-0.28200740404698554],[121,204,72,-0.2800693346666987],[121,204,73,-0.27799848750416334],[121,204,74,-0.27579627753350233],[121,204,75,-0.2734642765923756],[121,204,76,-0.27100421590802415],[121,204,77,-0.26841798862849764],[121,204,78,-0.2657076523590879],[121,204,79,-0.2628754317039186],[121,205,64,-0.29154484970995387],[121,205,65,-0.2905628366920864],[121,205,66,-0.2894423351650579],[121,205,67,-0.2881837323687043],[121,205,68,-0.286787554854927],[121,205,69,-0.2852544709771081],[121,205,70,-0.2835852933846653],[121,205,71,-0.28178098152281483],[121,205,72,-0.2798426441375005],[121,205,73,-0.2777715417855682],[121,205,74,-0.275569089350016],[121,205,75,-0.27323685856053526],[121,205,76,-0.27077658051919573],[121,205,77,-0.2681901482313104],[121,205,78,-0.2654796191415054],[121,205,79,-0.26264721767494315],[121,206,64,-0.2912978066496441],[121,206,65,-0.2903151770168566],[121,206,66,-0.2891940812212832],[121,206,67,-0.2879349065323664],[121,206,68,-0.28653817950688654],[121,206,69,-0.28500456847778377],[121,206,70,-0.28333488604812007],[121,206,71,-0.28153009159024134],[121,206,72,-0.2795912937501037],[121,206,73,-0.27751975295684106],[121,206,74,-0.2753168839374045],[121,206,75,-0.2729842582364881],[121,206,76,-0.2705236067415948],[121,206,77,-0.2679368222132794],[121,206,78,-0.26522596182059055],[121,206,79,-0.26239324968166444],[121,207,64,-0.2910222732782749],[121,207,65,-0.2900387050630904],[121,207,66,-0.28891670468909414],[121,207,67,-0.2876566594716722],[121,207,68,-0.2862590959758978],[121,207,69,-0.2847246825044525],[121,207,70,-0.28305423159067955],[121,207,71,-0.28124870249683287],[121,207,72,-0.2793092037174838],[121,207,73,-0.2772369954881627],[121,207,74,-0.2750334922990667],[121,207,75,-0.2727002654140477],[121,207,76,-0.2702390453947343],[121,207,77,-0.26765172462982556],[121,207,78,-0.26494035986957665],[121,207,79,-0.26210717476543066],[121,208,64,-0.29071292445263497],[121,208,65,-0.28972803452378626],[121,208,66,-0.2886047603054176],[121,208,67,-0.287343489178865],[121,208,68,-0.28594474772211786],[121,208,69,-0.2844092041964684],[121,208,70,-0.28273767103828473],[121,208,71,-0.28093110735597027],[121,208,72,-0.27899062143207465],[121,208,73,-0.2769174732306271],[121,208,74,-0.27471307690953195],[121,208,75,-0.2723790033382316],[121,208,76,-0.26991698262049857],[121,208,77,-0.2673289066223885],[121,208,78,-0.2646168315053772],[121,208,79,-0.261782980264635],[121,209,64,-0.29036473391649065],[121,209,65,-0.2893780810322303],[121,209,66,-0.28825310768796497],[121,209,67,-0.2869902013546882],[121,209,68,-0.28558988862928947],[121,209,69,-0.2840528377195032],[121,209,70,-0.2823798609339718],[121,209,71,-0.2805719171774834],[121,209,72,-0.2786301144513471],[121,209,73,-0.27655571235898313],[121,209,74,-0.27435012461656016],[121,209,75,-0.27201492156889195],[121,209,76,-0.2695518327104489],[121,209,77,-0.26696274921151963],[121,209,78,-0.26424972644954736],[121,209,79,-0.2614149865455896],[121,210,64,-0.2899729677676278],[121,210,65,-0.2889840555685297],[121,210,66,-0.28785690468354075],[121,210,67,-0.2865919027007481],[121,210,68,-0.28518957624343],[121,210,69,-0.28365059345282384],[121,210,70,-0.2819757664759912],[121,210,71,-0.28016605395884586],[121,210,72,-0.27822256354430186],[121,210,73,-0.2761465543756241],[121,210,74,-0.2739394396048097],[121,210,75,-0.27160278890621425],[121,210,76,-0.26913833099527906],[121,210,77,-0.26654795615239324],[121,210,78,-0.2638337187519155],[121,210,79,-0.2609978397963053],[121,211,64,-0.28953317798248623],[121,211,65,-0.28854145792421926],[121,211,66,-0.2874116007748867],[121,211,67,-0.286143994270856],[121,211,68,-0.28473916507092734],[121,211,69,-0.2831977812363847],[121,211,70,-0.28152065471612775],[121,211,71,-0.27970874383694444],[121,211,72,-0.2777631557988891],[121,211,73,-0.27568514917584286],[121,211,74,-0.2734761364210858],[121,211,75,-0.27113768637809765],[121,211,76,-0.2686715267964398],[121,211,77,-0.26607954685275326],[121,211,78,-0.26336379967689927],[121,211,79,-0.2605265048831904],[121,212,64,-0.2890411959983772],[121,212,65,-0.2880460702249349],[121,212,66,-0.2869129305460567],[121,212,67,-0.2856421648813464],[121,212,68,-0.2842342999360341],[121,212,69,-0.2826900036777278],[121,212,70,-0.2810100878182207],[121,212,71,-0.27919551030041934],[121,212,72,-0.27724737779035313],[121,212,73,-0.2751669481743445],[121,212,74,-0.2729556330611681],[121,212,75,-0.27061500028941676],[121,212,76,-0.26814677643992524],[121,212,77,-0.26555284935328916],[121,212,78,-0.2628352706525028],[121,212,79,-0.2599962582706652],[121,213,64,-0.2884931263532745],[121,213,65,-0.28749395051113946],[121,213,66,-0.286356907206307],[121,213,67,-0.2850823845803546],[121,213,68,-0.28367090939775164],[121,213,69,-0.2821231495186769],[121,213,70,-0.2804399163768668],[121,213,71,-0.2786221674625581],[121,213,72,-0.2766710088104838],[121,213,73,-0.27458769749300405],[121,213,74,-0.27237364411819964],[121,213,75,-0.27003041533314376],[121,213,76,-0.26755973633220664],[121,213,77,-0.2649634933704278],[121,213,78,-0.26224373628197994],[121,213,79,-0.25940268100367614],[121,214,64,-0.28788534038320057],[121,214,65,-0.2868814263769277],[121,214,66,-0.28573981617252664],[121,214,67,-0.2844608981760801],[121,214,68,-0.28304519922612303],[121,214,69,-0.2814933870618519],[121,214,70,-0.27980627279633286],[121,214,71,-0.27798481339477066],[121,214,72,-0.276030114157803],[121,214,73,-0.2739434312098946],[121,214,74,-0.27172617399266497],[121,214,75,-0.26937990776336274],[121,214,76,-0.2669063560983398],[121,214,77,-0.26430740340156333],[121,214,78,-0.2615850974181878],[121,214,79,-0.2587416517531367],[121,215,64,-0.28721446997718614],[121,215,65,-0.2862050886668853],[121,215,66,-0.28505820871018994],[121,215,67,-0.28377421882401443],[121,215,68,-0.282353645937917],[121,215,69,-0.2807971576569801],[121,215,70,-0.279105564729654],[121,215,71,-0.27727982352062297],[121,215,72,-0.2753210384886632],[121,215,73,-0.2732304646695618],[121,215,74,-0.27100951016393415],[121,215,75,-0.2686597386301496],[121,215,76,-0.266182871782224],[121,215,77,-0.2635807918927092],[121,215,78,-0.26085554430060987],[121,215,79,-0.2580093399242712],[121,216,64,-0.2864774013898266],[121,216,65,-0.2854617852310275],[121,216,66,-0.284308895632845],[121,216,67,-0.2830191216731518],[121,216,68,-0.28159299039172236],[121,216,69,-0.2800311692470264],[121,216,70,-0.2783344685779414],[121,216,71,-0.27650384407044937],[121,216,72,-0.27454039922927853],[121,216,73,-0.2724453878545692],[121,216,74,-0.270220216523393],[121,216,75,-0.26786644707634055],[121,216,76,-0.26538579910903204],[121,216,77,-0.262780152468586],[121,216,78,-0.26005154975506983],[121,216,79,-0.2572021988278833],[121,217,64,-0.28567126911140084],[121,217,65,-0.28464861473777914],[121,217,66,-0.28348894106011313],[121,217,67,-0.28219263757115387],[121,217,68,-0.2807602314424208],[121,217,69,-0.279192389974108],[121,217,70,-0.2774899230498652],[121,217,71,-0.27565378559651266],[121,217,72,-0.2736850800486563],[121,217,73,-0.27158505881827766],[121,217,74,-0.26935512676912965],[121,217,75,-0.26699684369615573],[121,217,76,-0.2645119268097813],[121,217,77,-0.26190225322511806],[121,217,78,-0.2591698624561023],[121,217,79,-0.2563169589145178],[121,218,64,-0.28479344979558907],[121,218,65,-0.2837629205450397],[121,218,66,-0.28259565623423133],[121,218,67,-0.2812920468285033],[121,218,68,-0.27985261965507513],[121,218,69,-0.2782780418452353],[121,218,70,-0.2765691227813488],[121,218,71,-0.2747268165487481],[121,218,72,-0.27275222439246694],[121,218,73,-0.27064659717889983],[121,218,74,-0.2684113378622116],[121,218,75,-0.2660480039557169],[121,218,76,-0.2635583100080803],[121,218,77,-0.2609441300843741],[121,218,78,-0.2582075002520181],[121,218,79,-0.25535062107155004],[121,219,64,-0.28384155624477914],[121,219,65,-0.282802284629314],[121,219,66,-0.2816265933951274],[121,219,67,-0.2803148730416325],[121,219,68,-0.27886765107821954],[121,219,69,-0.2772855944578594],[121,219,70,-0.2755695120154654],[121,219,71,-0.2737203569110783],[121,219,72,-0.27173922907783776],[121,219,73,-0.2696273776748155],[121,219,74,-0.26738620354454223],[121,219,75,-0.26501726167544437],[121,219,76,-0.26252226366904075],[121,219,77,-0.2599030802119392],[121,219,78,-0.25716174355265387],[121,219,79,-0.25430044998319457],[121,220,64,-0.28281343145293114],[121,220,65,-0.2817645215728869],[121,220,66,-0.28057953971399896],[121,220,67,-0.2792588769750026],[121,220,68,-0.2778030610765252],[121,220,69,-0.276212758785205],[121,220,70,-0.2744887783425032],[121,220,71,-0.2726320718982723],[121,220,72,-0.2706437379490444],[121,220,73,-0.268525023781118],[121,220,74,-0.2662773279182684],[121,220,75,-0.26390220257430563],[121,220,76,-0.26140135611032445],[121,220,77,-0.25877665549668905],[121,220,78,-0.25603012877977194],[121,220,79,-0.2531639675534],[121,221,64,-0.2817071427060476],[121,221,65,-0.28064767260908174],[121,221,66,-0.2794525112854417],[121,221,67,-0.2781220505021761],[121,221,68,-0.2766568182228858],[121,221,69,-0.2750574810214297],[121,221,70,-0.2733248465002518],[121,221,71,-0.2714598657133922],[121,221,72,-0.26946363559414466],[121,221,73,-0.26733740138744067],[121,221,74,-0.2650825590867846],[121,221,75,-0.2627006578759624],[121,221,76,-0.26019340257537216],[121,221,77,-0.25756265609301365],[121,221,78,-0.254810441880163],[121,221,79,-0.25193894639167824],[121,222,64,-0.2805209757402297],[121,222,65,-0.27944999972559004],[121,222,66,-0.2782437471781103],[121,222,67,-0.27690261060586563],[121,222,68,-0.27542711824990607],[121,222,69,-0.27381793648659436],[121,222,70,-0.27207587223448615],[121,222,71,-0.27020187536581364],[121,222,72,-0.2681970411225373],[121,222,73,-0.2660626125370441],[121,222,74,-0.263799982857317],[121,222,75,-0.26141069797679883],[121,222,76,-0.2588964588687981],[121,222,77,-0.256259124025475],[121,222,78,-0.2535007119014312],[121,222,79,-0.25062340336185396],[121,223,64,-0.2792534289572891],[121,223,65,-0.27816997982583525],[121,223,66,-0.27695170354387755],[121,223,67,-0.2755989934369263],[121,223,68,-0.27411237806075894],[121,223,69,-0.2724925235914104],[121,223,70,-0.2707402362196174],[121,223,71,-0.2688564645497814],[121,223,72,-0.26684230200341186],[121,223,73,-0.26469898922712876],[121,223,74,-0.2624279165050515],[121,223,75,-0.2600306261757933],[121,223,76,-0.25750881505391254],[121,223,77,-0.25486433685585685],[121,223,78,-0.25209920463042423],[121,223,79,-0.24921559319369224],[121,224,64,-0.2779032076979693],[121,224,65,-0.2768062989484291],[121,224,66,-0.2755750477855491],[121,224,67,-0.27420984843234797],[121,224,68,-0.2727112297994694],[121,224,69,-0.27107985786182],[121,224,70,-0.2693165380395668],[121,224,71,-0.26742221758356133],[121,224,72,-0.2653979879651468],[121,224,73,-0.2632450872704337],[121,224,74,-0.2609649025988655],[121,224,75,-0.25855897246629667],[121,224,76,-0.2560289892124338],[121,224,77,-0.25337680141267516],[121,224,78,-0.2506044162943727],[121,224,79,-0.24771400215746897],[121,225,64,-0.276469218572753],[121,225,65,-0.27535784654469775],[121,225,66,-0.27411265278311014],[121,225,67,-0.2727340324922244],[121,225,68,-0.2712225149806009],[121,225,69,-0.26957876602338826],[121,225,70,-0.2678035902288418],[121,225,71,-0.26589793340916446],[121,225,72,-0.2638628849556348],[121,225,73,-0.26169968021809664],[121,225,74,-0.2594097028886394],[121,225,75,-0.25699448738969033],[121,225,76,-0.25445572126636473],[121,225,77,-0.25179524758311733],[121,225,78,-0.24901506732471068],[121,225,79,-0.2461173418014595],[121,226,64,-0.27495056385022],[121,226,65,-0.27382370981423587],[121,226,66,-0.2725635911784644],[121,226,67,-0.27117060421565775],[121,226,68,-0.2696452786783037],[121,226,69,-0.26798828014546516],[121,226,70,-0.266200412373768],[121,226,71,-0.26428261965260014],[121,226,72,-0.2622359891634889],[121,226,73,-0.2600617533437314],[121,226,74,-0.25776129225410516],[121,226,75,-0.255336135950882],[121,226,76,-0.25278796686199123],[121,226,77,-0.2501186221673719],[121,226,78,-0.2473300961835373],[121,226,79,-0.24442454275230086],[121,227,64,-0.27334653590301994],[121,227,65,-0.27220316809856004],[121,227,66,-0.2709271297187348],[121,227,67,-0.269518818195672],[121,227,68,-0.2679787637747971],[121,227,69,-0.2663076318451869],[121,227,70,-0.26450622527395506],[121,227,71,-0.26257548674473274],[121,227,72,-0.2605165011002072],[121,227,73,-0.2583304976888001],[121,227,74,-0.25601885271530533],[121,227,75,-0.2535830915957149],[121,227,76,-0.2510248913160761],[121,227,77,-0.24834608279542103],[121,227,78,-0.2455486532527903],[121,227,79,-0.24263474857830125],[121,228,64,-0.2716566117114315],[121,228,65,-0.270495687332832],[121,228,66,-0.2692027236580965],[121,228,67,-0.2677781193731009],[121,228,68,-0.26622240526825425],[121,228,69,-0.2645362465512898],[121,228,70,-0.2627204451639611],[121,228,71,-0.2607759421027094],[121,228,72,-0.25870381974326195],[121,228,73,-0.2565053041692451],[121,228,74,-0.2541817675046326],[121,228,75,-0.2517347302502557],[121,228,76,-0.24916586362421966],[121,228,77,-0.24647699190626593],[121,228,78,-0.24367009478610568],[121,228,79,-0.24074730971567038],[121,229,64,-0.26988044742446615],[121,229,65,-0.26870091455560274],[121,229,66,-0.2673900112180956],[121,229,67,-0.2659481374494068],[121,229,68,-0.26437582464004183],[121,229,69,-0.26267373782768577],[121,229,70,-0.2608426779951093],[121,229,71,-0.2588835843719117],[121,229,72,-0.25679753674006434],[121,229,73,-0.25458575774333214],[121,229,74,-0.2522496152003979],[121,229,75,-0.2497906244219148],[121,229,76,-0.24721045053133195],[121,229,77,-0.24451091078953224],[121,229,78,-0.2416939769233064],[121,229,79,-0.23876177745761284],[121,230,64,-0.2680178729785908],[121,230,65,-0.266818672476663],[121,230,66,-0.2654888081065354],[121,230,67,-0.2640286813585121],[121,230,68,-0.2624388242814],[121,230,69,-0.26071990175688675],[121,230,70,-0.25887271377754195],[121,230,71,-0.2568981977285155],[121,230,72,-0.2547974306728943],[121,230,73,-0.2525716316407952],[121,230,74,-0.2502221639220179],[121,230,75,-0.24775053736248498],[121,230,76,-0.24515841066431132],[121,230,77,-0.24244759368954782],[121,230,78,-0.23962004976761442],[121,230,79,-0.2366778980063805],[121,231,64,-0.26606888677404206],[121,231,65,-0.2648489541029635],[121,231,66,-0.26349910209489724],[121,231,67,-0.2620197337976087],[121,231,68,-0.26041138197952585],[121,231,69,-0.25867471138323894],[121,231,70,-0.25681052098247614],[121,231,71,-0.2548197462426238],[121,231,72,-0.25270346138475397],[121,231,73,-0.2504628816532407],[121,231,74,-0.24809936558678192],[121,231,75,-0.24561441729306066],[121,231,76,-0.24300968872688566],[121,231,77,-0.24028698197185216],[121,231,78,-0.23744825152554605],[121,231,79,-0.2344956065882412],[121,232,64,-0.2640336504086712],[121,232,65,-0.26279191742254937],[121,232,66,-0.2614210476542367],[121,232,67,-0.2599214458168897],[121,232,68,-0.25829364546300404],[121,232,69,-0.2565383112159132],[121,232,70,-0.2546562410046037],[121,232,71,-0.2526483683019157],[121,232,72,-0.2505157643660919],[121,232,73,-0.24825964048575688],[121,232,74,-0.24588135022813973],[121,232,75,-0.24338239169078224],[121,232,76,-0.24076440975656166],[121,232,77,-0.23802919835207936],[121,232,78,-0.23517870270942987],[121,232,79,-0.2322150216313067],[121,233,64,-0.26191248346942275],[121,233,65,-0.2606478801466078],[121,233,66,-0.2592549606496579],[121,233,67,-0.25773413146830026],[121,233,68,-0.2560859270066852],[121,233,69,-0.2543110117917501],[121,233,70,-0.25241018268473414],[121,233,71,-0.2503843710959104],[121,233,72,-0.24823464520249638],[121,233,73,-0.2459622121698296],[121,233,74,-0.24356842037561743],[121,233,75,-0.24105476163750394],[121,233,76,-0.238422873443785],[121,233,77,-0.23567454118731979],[121,233,78,-0.23281170040265609],[121,233,79,-0.22983643900632422],[121,234,64,-0.2597058583813968],[121,234,65,-0.2584173145095846],[121,234,66,-0.25700131309331886],[121,234,67,-0.25545826251326786],[121,234,68,-0.2537886980959675],[121,234,69,-0.2519932842979167],[121,234,70,-0.2500728168926417],[121,234,71,-0.24802822516080514],[121,234,72,-0.24586057408331474],[121,234,73,-0.24357106653752092],[121,234,74,-0.24116104549631123],[121,234,75,-0.23863199623034592],[121,234,76,-0.23598554851326492],[121,234,77,-0.2332234788299138],[121,234,78,-0.2303477125876079],[121,234,79,-0.22736032633038694],[121,235,64,-0.2574143953144422],[121,235,65,-0.2561008421273092],[121,235,66,-0.2546607279559089],[121,235,67,-0.25309446318934514],[121,235,68,-0.25140258415041883],[121,235,69,-0.24958575525431048],[121,235,70,-0.24764477117004602],[121,235,71,-0.24558055898482],[121,235,72,-0.24339418037113525],[121,235,73,-0.2410868337568427],[121,235,74,-0.23865985649789634],[121,235,75,-0.23611472705405911],[121,235,76,-0.23345306716739844],[121,235,77,-0.23067664404361232],[121,235,78,-0.2277873725362095],[121,235,79,-0.22478731733349333],[121,236,64,-0.2550388571473847],[121,236,65,-0.2536992289132397],[121,236,66,-0.25223397403670833],[121,236,67,-0.2506435050358832],[121,236,68,-0.2489283593068532],[121,236,69,-0.24708920125582723],[121,236,70,-0.24512682443384848],[121,236,71,-0.2430421536741686],[121,236,72,-0.24083624723224528],[121,236,73,-0.2385102989284461],[121,236,74,-0.2360656402932696],[121,236,75,-0.2335037427153267],[121,236,76,-0.23082621959191363],[121,236,77,-0.22803482848222267],[121,236,78,-0.22513147326321137],[121,236,79,-0.22211820628808077],[121,237,64,-0.25258014448984234],[121,237,65,-0.2512133800527758],[121,237,66,-0.24972196089218013],[121,237,67,-0.24810630177867965],[121,237,68,-0.2463669412618098],[121,237,69,-0.24450454377443753],[121,237,70,-0.24251990173956595],[121,237,71,-0.24041393767959784],[121,237,72,-0.23818770632801678],[121,237,73,-0.2358423967435711],[121,237,74,-0.23337933442677128],[121,237,75,-0.2307999834389448],[121,237,76,-0.22810594852367683],[121,237,77,-0.22529897723068704],[121,237,78,-0.22238096204215851],[121,237,79,-0.21935394250147533],[121,238,64,-0.25003929076156395],[121,238,65,-0.24864433503557504],[121,238,66,-0.24712573382302694],[121,238,67,-0.24548390427353617],[121,238,68,-0.24371938617336786],[121,238,69,-0.24183284402100624],[121,238,70,-0.23982506910489698],[121,238,71,-0.23769698158343266],[121,238,72,-0.23544963256714502],[121,238,73,-0.23308420620318715],[121,238,74,-0.2306020217619148],[121,238,75,-0.22800453572581203],[121,238,76,-0.2252933438805924],[121,238,77,-0.2224701834085191],[121,238,78,-0.21953693498396853],[121,238,79,-0.2164956248711849],[121,239,64,-0.2474174573294159],[121,239,65,-0.24599326274600097],[121,239,66,-0.24444646891984456],[121,239,67,-0.2427774955088584],[121,239,68,-0.24098688362242793],[121,239,69,-0.23907529786698956],[121,239,70,-0.2370435283935547],[121,239,71,-0.23489249294725656],[121,239,72,-0.23262323891888037],[121,239,73,-0.2302369453984625],[121,239,74,-0.22773492523076388],[121,239,75,-0.22511862707286923],[121,239,76,-0.2223896374537362],[121,239,77,-0.21954968283574394],[121,239,78,-0.2166006316782606],[121,239,79,-0.21354449650318152],[121,240,64,-0.24471592870191206],[121,240,65,-0.2432614566115957],[121,240,66,-0.24168546816726166],[121,240,67,-0.2399883856671854],[121,240,68,-0.238170751633351],[121,240,69,-0.23623323082589287],[121,240,70,-0.2341766122592509],[121,240,71,-0.23200181122011765],[121,240,72,-0.22970987128713816],[121,240,73,-0.22730196635244582],[121,240,74,-0.22477940264484186],[121,240,75,-0.2221436207548696],[121,240,76,-0.2193961976616049],[121,240,77,-0.21653884876121798],[121,240,78,-0.21357342989731953],[121,240,79,-0.21050193939304818],[121,241,64,-0.24193610778137253],[121,241,65,-0.24045032980966308],[121,241,66,-0.2388441546066533],[121,241,67,-0.23711800724573806],[121,241,68,-0.2352724317540419],[121,241,69,-0.23330809309458533],[121,241,70,-0.2312257791499257],[121,241,71,-0.22902640270735009],[121,241,72,-0.22671100344557626],[121,241,73,-0.2242807499230537],[121,241,74,-0.22173694156766377],[121,241,75,-0.21908101066807473],[121,241,76,-0.21631452436657383],[121,241,77,-0.21343918665342743],[121,241,78,-0.21045684036278678],[121,241,79,-0.20736946917009225],[121,242,64,-0.23907951117358794],[121,242,65,-0.237561410531838],[121,242,66,-0.23592406755730377],[121,242,67,-0.23416791023586214],[121,242,68,-0.23229348419535223],[121,242,69,-0.2303014546543375],[121,242,70,-0.22819260837209077],[121,242,71,-0.22596785559987975],[121,242,72,-0.22362823203351234],[121,242,73,-0.221174900767232],[121,242,74,-0.2186091542487596],[121,242,75,-0.21593241623574277],[121,242,76,-0.21314624375343105],[121,242,77,-0.21025232905362856],[121,242,78,-0.2072525015749429],[121,242,79,-0.20414872990428146],[121,243,64,-0.23614776455513564],[121,243,65,-0.23459633730679008],[121,243,66,-0.2329268578961684],[121,243,67,-0.23113975736151204],[121,243,68,-0.22923558302995206],[121,243,69,-0.22721500043173937],[121,243,70,-0.22507879521544027],[121,243,71,-0.22282787506417112],[121,243,72,-0.22046327161283485],[121,243,73,-0.21798614236644676],[121,243,74,-0.21539777261934778],[121,243,75,-0.21269957737556677],[121,243,76,-0.20989310327014654],[121,243,77,-0.20698003049149105],[121,243,78,-0.2039621747047462],[121,243,79,-0.20084148897617182],[121,244,64,-0.2331425980982823],[121,244,65,-0.23155685438099705],[121,244,66,-0.2298542833961652],[121,244,67,-0.22803531937671317],[121,244,68,-0.22610051145060506],[121,244,69,-0.2240505255194265],[121,244,70,-0.22188614613766222],[121,244,71,-0.21960827839274533],[121,244,72,-0.2172179497858383],[121,244,73,-0.21471631211343667],[121,244,74,-0.212104643349588],[121,244,75,-0.20938434952899387],[121,244,76,-0.2065569666308058],[121,244,77,-0.20362416246317216],[121,244,78,-0.2005877385485526],[121,244,79,-0.19744963200975163],[121,245,64,-0.23006584195339397],[121,245,65,-0.22844480715750404],[121,245,66,-0.22670820412291848],[121,245,67,-0.22485647042191648],[121,245,68,-0.22289015708776239],[121,245,69,-0.22080993045653396],[121,245,70,-0.2186165740093653],[121,245,71,-0.2163109902151833],[121,245,72,-0.21389420237389878],[121,245,73,-0.2113673564601397],[121,245,74,-0.20873172296732467],[121,245,75,-0.20598869875233694],[121,245,76,-0.20313980888061867],[121,245,77,-0.20018670847173514],[121,245,78,-0.1971311845454281],[121,245,79,-0.19397515786811215],[121,246,64,-0.22691942178900482],[121,246,65,-0.22526213769282566],[121,246,66,-0.22349057789010573],[121,246,67,-0.22160518343940427],[121,246,68,-0.21960650738663368],[121,246,69,-0.21749521656903503],[121,246,70,-0.2152720934192801],[121,246,71,-0.21293803776977793],[121,246,72,-0.21049406865714948],[121,246,73,-0.20794132612695804],[121,246,74,-0.20528107303848808],[121,246,75,-0.20251469686984347],[121,246,76,-0.19964371152317184],[121,246,77,-0.19666975913007567],[121,246,78,-0.1935946118572236],[121,246,79,-0.19042017371211573],[121,247,64,-0.2237053543894698],[121,247,65,-0.22201088025191384],[121,247,66,-0.22020345577333622],[121,247,67,-0.21828352564767017],[121,247,68,-0.21625164504365813],[121,247,69,-0.21410848136988858],[121,247,70,-0.21185481603965994],[121,247,71,-0.20949154623575472],[121,247,72,-0.20701968667508186],[121,247,73,-0.20444037137328075],[121,247,74,-0.20175485540907412],[121,247,75,-0.19896451668864545],[121,247,76,-0.19607085770984412],[121,247,77,-0.19307550732628198],[121,247,78,-0.18998022251133084],[121,247,79,-0.18678689012197935],[121,248,64,-0.22042574331012244],[121,248,65,-0.21869315692111035],[121,248,66,-0.21684897768247424],[121,248,67,-0.21489365407468897],[121,248,68,-0.21282774350229228],[121,248,69,-0.21065191401890826],[121,248,70,-0.2083669460517915],[121,248,71,-0.20597373412597464],[121,248,72,-0.20347328858797875],[121,248,73,-0.20086673732917837],[121,248,74,-0.19815532750860942],[121,248,75,-0.1953404272754945],[121,248,76,-0.19242352749129243],[121,248,77,-0.18940624345132917],[121,248,78,-0.1862903166060259],[121,248,79,-0.18307761628167962],[121,249,64,-0.21708277459009262],[121,249,65,-0.2153111732792432],[121,249,66,-0.21342936799257162],[121,249,67,-0.21143781115024085],[121,249,68,-0.20933706250827744],[121,249,69,-0.2071277908425222],[121,249,70,-0.2048107756317854],[121,249,71,-0.20238690874028864],[121,249,72,-0.19985719609935482],[121,249,73,-0.19722275938843803],[121,249,74,-0.19448483771527858],[121,249,75,-0.19164478929546203],[121,249,76,-0.18870409313118552],[121,249,77,-0.185664350689291],[121,249,78,-0.18252728757857917],[121,249,79,-0.1792947552263604],[121,250,64,-0.2136787125227131],[121,250,65,-0.211867214126793],[121,250,66,-0.20994693123333297],[121,250,67,-0.20791832035721147],[121,250,68,-0.20578194372430947],[121,250,69,-0.20353847091334143],[121,250,70,-0.2011886804965669],[121,250,71,-0.19873346167946349],[121,250,72,-0.19617381593932226],[121,250,73,-0.19351085866286066],[121,250,74,-0.19074582078263203],[121,250,75,-0.18788005041251843],[121,250,76,-0.18491501448210235],[121,250,77,-0.181852300369983],[121,250,78,-0.1786936175360483],[121,250,79,-0.17544079915265676],[121,251,64,-0.21021589548342173],[121,251,65,-0.2083636392730352],[121,251,66,-0.20640404783701805],[121,251,67,-0.20433758194177543],[121,251,68,-0.2021648064040179],[121,251,69,-0.19988639168944444],[121,251,70,-0.19750311550997024],[121,251,71,-0.1950158644195823],[121,251,72,-0.1924256354087832],[121,251,73,-0.18973353749771993],[121,251,74,-0.18694079332777214],[121,251,75,-0.18404874075189315],[121,251,76,-0.18105883442349335],[121,251,77,-0.1779726473839356],[121,251,78,-0.17479187264865126],[121,251,79,-0.1715183247918335],[121,252,64,-0.20669673181533116],[121,252,65,-0.20480287938133435],[121,252,66,-0.20280316994496195],[121,252,67,-0.20069806868264028],[121,252,68,-0.19848814312543184],[121,252,69,-0.1961740647135578],[121,252,70,-0.19375661034911917],[121,252,71,-0.19123666394710304],[121,252,72,-0.18861521798463454],[121,252,73,-0.1858933750485703],[121,252,74,-0.18307234938120787],[121,252,75,-0.1801534684244046],[121,252,76,-0.1771381743618976],[121,252,77,-0.1740280256598894],[121,252,78,-0.17082469860591354],[121,252,79,-0.1675299888459335],[121,253,64,-0.20312369577238681],[121,253,65,-0.2011874318725052],[121,253,66,-0.199146817272624],[121,253,67,-0.19700232171926546],[121,253,68,-0.19475451558384704],[121,253,69,-0.19240407137204563],[121,253,70,-0.18995176523100665],[121,253,71,-0.18739847845448854],[121,253,72,-0.1847451989858978],[121,253,73,-0.18199302291931618],[121,253,74,-0.17914315599828834],[121,253,75,-0.1761969151126701],[121,253,76,-0.1731557297933224],[121,253,77,-0.17002114370472188],[121,253,78,-0.16679481613549585],[121,253,79,-0.163478523486841],[121,254,64,-0.19949932352001443],[121,254,65,-0.1975198568861482],[121,254,66,-0.19543757303307263],[121,254,67,-0.19325294643896074],[121,254,68,-0.19096655044399802],[121,254,69,-0.1885790587136097],[121,254,70,-0.18609124669917376],[121,254,71,-0.18350399309630516],[121,254,72,-0.18081828130067124],[121,254,73,-0.17803520086143731],[121,254,74,-0.17515594893211184],[121,254,75,-0.17218183171908985],[121,254,76,-0.1691142659276822],[121,254,77,-0.16595478020569954],[121,254,78,-0.16270501658459924],[121,254,79,-0.15936673191815465],[121,255,64,-0.19582620919344335],[121,255,65,-0.19380277330013873],[121,255,66,-0.19167807991908964],[121,255,67,-0.18945260842304923],[121,255,68,-0.18712693525172042],[121,255,69,-0.1847017353278908],[121,255,70,-0.18217778347067937],[121,255,71,-0.1795559558059855],[121,255,72,-0.17683723117409883],[121,255,73,-0.1740226925345697],[121,255,74,-0.17111352836810723],[121,255,75,-0.16811103407580774],[121,255,76,-0.16501661337549667],[121,255,77,-0.16183177969525653],[121,255,78,-0.15855815756414648],[121,255,79,-0.15519748400007527],[121,256,64,-0.19210700101361228],[121,256,65,-0.190038854808185],[121,256,66,-0.18787103614380563],[121,256,67,-0.18560402945200505],[121,256,68,-0.18323841440501676],[121,256,69,-0.1807748672838792],[121,256,70,-0.17821416234326937],[121,256,71,-0.17555717317316144],[121,256,72,-0.1728048740572644],[121,256,73,-0.1699583413283448],[121,256,74,-0.16701875472019395],[121,256,75,-0.16398739871655],[121,256,76,-0.16086566389675283],[121,256,77,-0.15765504827820498],[121,256,78,-0.15435715865564792],[121,256,79,-0.15097371193720877],[121,257,64,-0.1883443974605667],[121,257,65,-0.18623082605535524],[121,257,66,-0.18401919153976554],[121,257,67,-0.18170998356946677],[121,257,68,-0.17930378518442008],[121,257,69,-0.17680127412802998],[121,257,70,-0.17420322416263984],[121,257,71,-0.17151050638146215],[121,257,72,-0.1687240905169033],[121,257,73,-0.16584504624538343],[121,257,74,-0.16287454448841254],[121,257,75,-0.15981385871023562],[121,257,76,-0.15666436621182034],[121,257,77,-0.1534275494212658],[121,257,78,-0.1501049971806352],[121,257,79,-0.1466984060291744],[121,258,64,-0.1845411435045306],[121,258,65,-0.1823814588317637],[121,258,66,-0.1801253437166187],[121,258,67,-0.1777732932053196],[121,258,68,-0.17532589384285557],[121,258,69,-0.17278382494228683],[121,258,70,-0.17014785984999653],[121,258,71,-0.16741886720698052],[121,258,72,-0.164597812206136],[121,258,73,-0.16168575784564782],[121,258,74,-0.15868386617823416],[121,258,75,-0.15559339955656598],[121,258,76,-0.15241572187463304],[121,258,77,-0.149152299805131],[121,258,78,-0.14580470403288065],[121,258,79,-0.14237461048423217],[121,259,64,-0.1807000268945652],[121,259,65,-0.1784935683243234],[121,259,66,-0.17619233427733905],[121,259,67,-0.17379682535775215],[121,259,68,-0.1713076317549015],[121,259,69,-0.16872543446191018],[121,259,70,-0.16605100648981191],[121,259,71,-0.16328521407730923],[121,259,72,-0.16042901789612585],[121,259,73,-0.15748347425205245],[121,259,74,-0.1544497362814451],[121,259,75,-0.15132905514349365],[121,259,76,-0.14812278120803063],[121,259,77,-0.14483236523895776],[121,259,78,-0.14145935957329697],[121,259,79,-0.1380054192958241],[121,260,64,-0.17682387450471193],[121,260,65,-0.1745700094264664],[121,260,66,-0.17222304509287256],[121,260,67,-0.1697834878341848],[121,260,68,-0.1672519316253478],[121,260,69,-0.1646290592530123],[121,260,70,-0.161915643477675],[121,260,71,-0.1591125481910386],[121,260,72,-0.1562207295685507],[121,260,73,-0.15324123721722593],[121,260,74,-0.1501752153185023],[121,260,75,-0.14702390376645808],[121,260,76,-0.14378863930115338],[121,260,77,-0.14047085663717712],[121,260,78,-0.13707208958740358],[121,260,79,-0.13359397218191937],[121,261,64,-0.17291554873781645],[121,261,65,-0.1706136731060256],[121,261,66,-0.16822039463541255],[121,261,67,-0.1657362255512702],[121,261,68,-0.16316176375725377],[121,261,69,-0.16049769394999858],[121,261,70,-0.15774478872843878],[121,261,71,-0.15490390969792578],[121,261,72,-0.1519760085691011],[121,261,73,-0.14896212825163385],[121,261,74,-0.14586340394256703],[121,261,75,-0.14268106420960536],[121,261,76,-0.13941643206910403],[121,261,77,-0.13607092605884163],[121,261,78,-0.13264606130558143],[121,261,79,-0.1291434505873792],[121,262,64,-0.16897794398693655],[121,262,65,-0.16662748283118345],[121,262,66,-0.16418733437020439],[121,262,67,-0.16165801689386972],[121,262,68,-0.1590401323794069],[121,262,69,-0.15633436755281804],[121,262,70,-0.15354149494456681],[121,262,71,-0.1506623739396344],[121,262,72,-0.14769795182190087],[121,262,73,-0.1446492648129613],[121,262,74,-0.14151743910511755],[121,262,75,-0.13830369188888558],[121,262,76,-0.1350093323747713],[121,262,77,-0.13163576280940076],[121,262,78,-0.1281844794860073],[121,262,79,-0.12465707374923884],[121,263,64,-0.1650139831542336],[121,263,65,-0.16261439105438447],[121,263,66,-0.16012684520577586],[121,263,67,-0.15755187013289634],[121,263,68,-0.1548900720330741],[121,263,69,-0.15214213978391383],[121,263,70,-0.14930884594456711],[121,263,71,-0.14639104775093204],[121,263,72,-0.14338968810474073],[121,263,73,-0.14030579655664227],[121,263,74,-0.13714049028302544],[121,263,75,-0.13389497505691522],[121,263,76,-0.13057054621270286],[121,263,77,-0.12716858960478994],[121,263,78,-0.12369058256015297],[121,263,79,-0.12013809482478721],[121,264,64,-0.1610266142275582],[121,264,65,-0.15857737575442443],[121,264,66,-0.1560419340028079],[121,264,67,-0.15342081990224715],[121,264,68,-0.15071464401826962],[121,264,69,-0.14792409750509794],[121,264,70,-0.1450499530517423],[121,264,71,-0.14209306582157577],[121,264,72,-0.1390543743853508],[121,264,73,-0.1359349016477674],[121,264,74,-0.13273575576733015],[121,264,75,-0.12945813106983894],[121,264,76,-0.12610330895526078],[121,264,77,-0.12267265879807465],[121,264,78,-0.11916763884108783],[121,264,79,-0.11558979708268474],[121,265,64,-0.157018806914552],[121,265,65,-0.15451943703653742],[121,265,66,-0.15193563014146722],[121,265,67,-0.14926792373463743],[121,265,68,-0.14651693289934953],[121,265,69,-0.14368335119416054],[121,265,70,-0.1407679515430625],[121,265,71,-0.13777158711869164],[121,265,72,-0.13469519221852488],[121,265,73,-0.13153978313417392],[121,265,74,-0.12830645901351417],[121,265,75,-0.12499640271599227],[121,265,76,-0.12161088166086315],[121,265,77,-0.11815124866844351],[121,265,78,-0.11461894279438384],[121,265,79,-0.1110154901569188],[121,266,64,-0.1529935493344004],[121,266,65,-0.15044359379061628],[121,266,66,-0.14781098214733446],[121,266,67,-0.14509625865647863],[121,266,68,-0.14230004307007788],[121,266,69,-0.13942303148135915],[121,266,70,-0.13646599715830826],[121,266,71,-0.13342979136979688],[121,266,72,-0.13031534420423663],[121,266,73,-0.1271236653808691],[121,266,74,-0.1238558450534279],[121,266,75,-0.12051305460651768],[121,266,76,-0.11709654744446263],[121,266,77,-0.11360765977270743],[121,266,78,-0.11004781137177644],[121,266,79,-0.10641850636374994],[121,267,64,-0.14895384476705592],[121,267,65,-0.14635288040738265],[121,267,66,-0.14367105437574434],[121,267,67,-0.1409089178416113],[121,267,68,-0.13806709537797107],[121,267,69,-0.1351462857455924],[121,267,70,-0.13214726266928628],[121,267,71,-0.12907087560626435],[121,267,72,-0.12591805050655425],[121,267,73,-0.12268979056558421],[121,267,74,-0.11938717696866541],[121,267,75,-0.11601136962772896],[121,267,76,-0.11256360791005576],[121,267,77,-0.10904521135909612],[121,267,78,-0.10545758040737335],[121,267,79,-0.101802197081438],[121,268,64,-0.14490270846014458],[121,268,65,-0.14225034355272548],[121,268,66,-0.1395189237547595],[121,268,67,-0.13670900732411562],[121,268,68,-0.13382122380814854],[121,268,69,-0.13085627477048906],[121,268,70,-0.12781493450935189],[121,268,71,-0.12469805076746665],[121,268,72,-0.12150654543358747],[121,268,73,-0.11824141523569653],[121,268,74,-0.1149037324256269],[121,268,75,-0.11149464545546472],[121,268,76,-0.10801537964546865],[121,268,77,-0.10446723784359896],[121,268,78,-0.10085160107665808],[121,268,79,-0.0971699291930016],[121,269,64,-0.14084316449345946],[121,269,65,-0.1381390390001057],[121,269,66,-0.13535767658667158],[121,269,67,-0.13249964277009557],[121,269,68,-0.12956557222658283],[121,269,69,-0.1265561694603039],[121,269,70,-0.12347220946312665],[121,269,71,-0.120314538365487],[121,269,72,-0.11708407407835514],[121,269,73,-0.11378180692641138],[121,269,74,-0.11040880027215694],[121,269,75,-0.10696619113132144],[121,269,76,-0.10345519077930254],[121,269,77,-0.09987708534873263],[121,269,78,-0.09623323641817155],[121,269,79,-0.09252508159188733],[121,270,64,-0.1367782427009308],[121,270,65,-0.13402202852092027],[121,270,66,-0.13119040540792515],[121,270,67,-0.12828394630832862],[121,270,68,-0.12530329118263905],[121,270,69,-0.12224914761551059],[121,270,70,-0.1191222914163022],[121,270,71,-0.11592356721028646],[121,270,72,-0.1126538890204618],[121,270,73,-0.10931424084008484],[121,270,74,-0.10590567719564453],[121,270,75,-0.10242932370064423],[121,270,76,-0.09888637759992408],[121,270,77,-0.0952781083046198],[121,270,78,-0.09160585791775583],[121,270,79,-0.08787104175043642],[121,271,64,-0.1327109756502845],[121,271,65,-0.12990237683303552],[121,271,66,-0.1270202059076755],[121,271,67,-0.12406504341999436],[121,271,68,-0.12103753477112222],[121,271,69,-0.11793839076830986],[121,271,70,-0.11476838816574997],[121,271,71,-0.11152837019554962],[121,271,72,-0.10821924708880759],[121,271,73,-0.10484199658691767],[121,271,74,-0.10139766444281056],[121,271,75,-0.09788736491251027],[121,271,76,-0.09431228123673063],[121,271,77,-0.09067366611261152],[121,271,78,-0.08697284215559142],[121,271,79,-0.08321120235137969],[121,272,64,-0.12864439568028335],[121,272,65,-0.1257831486073871],[121,272,66,-0.12285017390487396],[121,272,67,-0.11984605988737673],[121,272,68,-0.11677145755372281],[121,272,69,-0.11362708107794506],[121,272,70,-0.1104137082898276],[121,272,71,-0.10713218114509754],[121,272,72,-0.10378340618521897],[121,272,73,-0.10036835498690638],[121,272,74,-0.09688806460107297],[121,272,75,-0.09334363798158912],[121,272,76,-0.08973624440357669],[121,272,77,-0.08606711987133736],[121,272,78,-0.08233756751591415],[121,272,79,-0.07854895798224698],[121,273,64,-0.12458153199544802],[121,273,65,-0.12166740553253774],[121,273,66,-0.11868340238377584],[121,273,67,-0.11563011880143065],[121,273,68,-0.11250821153975255],[121,273,69,-0.10931839828571333],[121,273,70,-0.10606145807876899],[121,273,71,-0.1027382317197576],[121,273,72,-0.09934962216888754],[121,273,73,-0.09589659493293629],[121,273,74,-0.09238017844136936],[121,273,75,-0.08880146441176207],[121,273,76,-0.08516160820424362],[121,273,77,-0.08146182916506567],[121,273,78,-0.07770341095929151],[121,273,79,-0.07388770189256988],[121,274,64,-0.12052540781846444],[121,274,65,-0.11755820343740647],[121,274,66,-0.11452297858808153],[121,274,67,-0.11142033762842873],[121,274,68,-0.10825094322638712],[121,274,69,-0.10501551672989323],[121,274,70,-0.10171483852538254],[121,274,71,-0.09834974838491012],[121,274,72,-0.09492114580184258],[121,274,73,-0.09142999031524585],[121,274,74,-0.08787730182267184],[121,274,75,-0.084264160881734],[121,274,76,-0.08059170900018597],[121,274,77,-0.07686114891460771],[121,274,78,-0.07307374485769513],[121,274,79,-0.06923082281411574],[121,275,64,-0.11647903760017514],[121,275,65,-0.11345858947206244],[121,275,66,-0.11037198117360697],[121,275,67,-0.107219825335581],[121,275,68,-0.10400279069830842],[121,275,69,-0.10072160242047967],[121,275,70,-0.09737704237594524],[121,275,71,-0.09396994943860498],[121,275,72,-0.09050121975534514],[121,275,73,-0.0869718070071479],[121,275,74,-0.08338272265807589],[121,275,75,-0.07973503619252176],[121,275,76,-0.07602987534043809],[121,275,77,-0.07226842629065083],[121,275,78,-0.06845193389225185],[121,275,79,-0.06458170184403494],[121,276,64,-0.1124454242870494],[121,276,65,-0.10937159934647778],[121,276,66,-0.10623347741937461],[121,276,67,-0.10303167957551895],[121,276,68,-0.09976688078663526],[121,276,69,-0.09643981017361353],[121,276,70,-0.0930512512411803],[121,276,71,-0.08960204210013173],[121,276,72,-0.08609307567708857],[121,276,73,-0.08252529991189295],[121,276,74,-0.07889971794234901],[121,276,75,-0.07521738827670177],[121,276,76,-0.07147942495356396],[121,276,77,-0.0676869976893994],[121,276,78,-0.06384133201355396],[121,276,79,-0.0599437093908014],[121,277,64,-0.10842755664634096],[121,277,65,-0.10530025462745196],[121,277,66,-0.10211052049733943],[121,277,67,-0.09885898392986059],[121,277,68,-0.09554632628736254],[121,277,69,-0.09217328080592985],[121,277,70,-0.08874063276754324],[121,277,71,-0.08524921965926974],[121,277,72,-0.08169993131943465],[121,277,73,-0.07809371007090365],[121,277,74,-0.07443155084117059],[121,277,75,-0.0707145012696504],[121,277,76,-0.06694366180188371],[121,277,77,-0.06312018577076212],[121,277,78,-0.05924527946476649],[121,277,79,-0.05532020218318462],[121,278,64,-0.10442840664882747],[121,278,65,-0.10124756009359914],[121,278,66,-0.0980061468006424],[121,278,67,-0.09470480521174679],[121,278,68,-0.09134422323919927],[121,278,69,-0.0879251383887093],[121,278,70,-0.08444833786870293],[121,278,71,-0.08091465868610581],[121,278,72,-0.07732498772856938],[121,278,73,-0.0736802618332657],[121,278,74,-0.06998146784194498],[121,278,75,-0.06622964264266001],[121,278,76,-0.062425873197860304],[121,278,77,-0.058571296558965535],[121,278,78,-0.054667099867411584],[121,278,79,-0.050714520342134695],[121,279,64,-0.10045092690903207],[121,279,65,-0.09721650114829705],[121,279,66,-0.09392337333028616],[121,279,67,-0.09057219082724377],[121,279,68,-0.08716364826069517],[121,279,69,-0.08369848756172998],[121,279,70,-0.08017749801710794],[121,279,71,-0.07660151630130685],[121,279,72,-0.07297142649446764],[121,279,73,-0.0692881600863623],[121,279,74,-0.0655526959660766],[121,279,75,-0.061766060397815514],[121,279,76,-0.057929326982530116],[121,279,77,-0.05404361660547874],[121,279,78,-0.050110097369714],[121,279,79,-0.04612998451546141],[121,280,64,-0.09649804818312996],[121,280,65,-0.09321004129080585],[121,280,66,-0.08986519514044522],[121,280,67,-0.08646416619582586],[121,280,68,-0.08300765594687659],[121,280,69,-0.07949641090703269],[121,280,70,-0.07593122259586027],[121,280,71,-0.07231292750707274],[121,280,72,-0.06864240706189112],[121,280,73,-0.06492058754787866],[121,280,74,-0.06114844004293468],[121,280,75,-0.05732698032486333],[121,280,76,-0.05345726876620993],[121,280,77,-0.049540410214481856],[121,280,78,-0.04557755385774215],[121,280,79,-0.04156989307554393],[121,281,64,-0.09257267692443699],[121,281,65,-0.08923111964544927],[121,281,66,-0.08583458284230217],[121,281,67,-0.08238373222982837],[121,281,68,-0.0788792763252783],[121,281,69,-0.07532196638249211],[121,281,70,-0.0717125963107827],[121,281,71,-0.0680520025786539],[121,281,72,-0.06434106410230617],[121,281,73,-0.06058070211906208],[121,281,74,-0.05677188004539069],[121,281,75,-0.05291560331995393],[121,281,76,-0.04901291923136286],[121,281,77,-0.04506491673076107],[121,281,78,-0.041072726229226086],[121,281,79,-0.03703751937995353],[121,282,64,-0.08867769289638155],[121,282,65,-0.08528264854875961],[121,282,66,-0.08183448016630912],[121,282,67,-0.07833386287276922],[121,282,68,-0.07478151237126829],[121,282,69,-0.07117818481508781],[121,282,70,-0.06752467666257489],[121,282,71,-0.0638218245163284],[121,282,72,-0.060070504946612535],[121,282,73,-0.05627163429912779],[121,282,74,-0.052426168486819635],[121,282,75,-0.04853510276614892],[121,282,76,-0.04459947149751026],[121,282,77,-0.04062034788991603],[121,282,78,-0.03659884372993838],[121,282,79,-0.03253610909487098],[121,283,64,-0.08481594684316046],[121,283,65,-0.08136751119479035],[121,283,66,-0.07786780158308099],[121,283,67,-0.07431750269674836],[121,283,68,-0.0707173375828784],[121,283,69,-0.06706806745408861],[121,283,70,-0.06337049147927315],[121,283,71,-0.05962544655805585],[121,283,72,-0.0558338070789034],[121,283,73,-0.05199648466103318],[121,283,74,-0.0481144278797892],[121,283,75,-0.04418862197591683],[121,283,76,-0.040220088548418464],[121,283,77,-0.036209885231110295],[121,283,78,-0.032159105352868755],[121,283,79,-0.02806887758153459],[121,284,64,-0.08099025821797678],[121,284,65,-0.07748855933849197],[121,284,66,-0.07393742998281505],[121,284,67,-0.0703375645588184],[121,284,68,-0.06668969361503191],[121,284,69,-0.06299458358404253],[121,284,70,-0.059253036508905954],[121,284,71,-0.055465889752696285],[121,284,72,-0.05163401569114523],[121,284,73,-0.04775832138850766],[121,284,74,-0.04383974825632242],[121,284,75,-0.03987927169550404],[121,284,76,-0.035877900721444755],[121,284,77,-0.03183667757224712],[121,284,78,-0.027756677300076193],[121,284,79,-0.02363900734559954],[121,285,64,-0.07720341296876221],[121,285,65,-0.07364861105705267],[121,285,66,-0.07004621441313774],[121,285,67,-0.06639692731622426],[121,285,68,-0.06270148797306485],[121,285,69,-0.05896066819746737],[121,285,70,-0.05517527307223824],[121,285,71,-0.05134614059369089],[121,285,72,-0.04747414129867053],[121,285,73,-0.04356017787422958],[121,285,74,-0.03960518474962463],[121,285,75,-0.03561012767107069],[121,285,76,-0.03157600325893031],[121,285,77,-0.02750383854746047],[121,285,78,-0.02339469050710416],[121,285,79,-0.01924964554929487],[121,286,64,-0.07345816138158237],[121,286,65,-0.06985044856940528],[121,286,66,-0.06619696787558169],[121,286,67,-0.06249843360072019],[121,286,68,-0.05875559176575296],[121,286,69,-0.05496921972745486],[121,286,70,-0.051140125775818834],[121,286,71,-0.04726914871341695],[121,286,72,-0.04335715741669985],[121,286,73,-0.039405050379370504],[121,286,74,-0.03541375523749807],[121,286,75,-0.03138422827681492],[121,286,76,-0.02731745392186727],[121,286,77,-0.023214444207147078],[121,286,78,-0.01907623823019025],[121,286,79,-0.01490390158660923],[121,287,64,-0.06975721598162254],[121,287,65,-0.06609681611379639],[121,287,66,-0.06239246518058772],[121,287,67,-0.058644887651856575],[121,287,68,-0.05485483751773235],[121,287,69,-0.051023097840077136],[121,287,70,-0.04715048028522206],[121,287,71,-0.04323782463810821],[121,287,72,-0.03928599829778351],[121,287,73,-0.03529589575439332],[121,287,74,-0.031268438047327374],[121,287,75,-0.027204572204970273],[121,287,76,-0.023105270665722738],[121,287,77,-0.018971530680422594],[121,287,78,-0.014804373696150092],[121,287,79,-0.010604844721386258],[121,288,64,-0.06610324949166249],[121,288,65,-0.06239041788332428],[121,288,66,-0.058635440860938026],[121,288,67,-0.05483905320914001],[121,288,68,-0.05100201704122104],[121,288,69,-0.04712512128649979],[121,288,70,-0.04320918115838199],[121,288,71,-0.03925503760323931],[121,288,72,-0.03526355673005885],[121,288,73,-0.03123562922100262],[121,288,74,-0.027172169722535222],[121,288,75,-0.023074116217572577],[121,288,76,-0.018942429378315417],[121,288,77,-0.014778091899897067],[121,288,78,-0.010582107814830322],[121,288,79,-0.006355501788222473],[121,289,64,-0.062498892848240006],[121,289,65,-0.05873391601964956],[121,289,66,-0.05492858714382634],[121,289,67,-0.051083651463276925],[121,289,68,-0.047199879367249564],[121,289,69,-0.043278065815014144],[121,289,70,-0.039319029739237926],[121,289,71,-0.03532361342959295],[121,289,72,-0.031292681896545604],[121,289,73,-0.027227122215468663],[121,289,74,-0.023127842850731023],[121,289,75,-0.018995772960222257],[121,289,76,-0.014831861679972691],[121,289,77,-0.010637077388999133],[121,289,78,-0.0064124069543620155],[121,289,79,-0.0021588549564013626],[121,290,64,-0.05894673327533459],[121,290,65,-0.05512992866470651],[121,290,66,-0.05127455198139089],[121,290,67,-0.04738135906632379],[121,290,68,-0.04345112873622409],[121,290,69,-0.039484662142807964],[121,290,70,-0.03548278211150685],[121,290,71,-0.03144633245982578],[121,290,72,-0.02737617729529246],[121,290,73,-0.02327320029313837],[121,290,74,-0.01913830395336444],[121,290,75,-0.014972408837651885],[121,290,76,-0.010776452785775853],[121,290,77,-0.006551390111655037],[121,290,78,-0.0022981907790192713],[121,290,79,0.001982160443333797],[121,291,64,-0.055449312415695534],[121,291,65,-0.051581028070541296],[121,291,66,-0.04767593713983817],[121,291,67,-0.043734806200873444],[121,291,68,-0.039758422647952596],[121,291,69,-0.03574759398760838],[121,291,70,-0.03170314711271832],[121,291,71,-0.02762592755566806],[121,291,72,-0.023516798720511684],[121,291,73,-0.019376641094270924],[121,291,74,-0.015206351437022286],[121,291,75,-0.011006841951238328],[121,291,76,-0.006779039430035605],[121,291,77,-0.002523884384464964],[121,291,78,0.001757669850173671],[121,291,79,0.006064658029022646],[121,292,64,-0.052009124519651645],[121,292,65,-0.0480897387671122],[121,292,66,-0.044135296346990927],[121,292,67,-0.04014657470810851],[121,292,68,-0.03612436997096255],[121,292,69,-0.03206949615902255],[121,292,70,-0.02798278440833543],[121,292,71,-0.02386508215558031],[121,292,72,-0.01971725230452348],[121,292,73,-0.015540172371017125],[121,292,74,-0.011334733606186392],[121,292,75,-0.007101840098276968],[121,292,76,-0.0028424078528112573],[121,292,77,0.0014426361488093231],[121,292,78,0.005752354912274188],[121,292,79,0.010085802414936534],[121,293,64,-0.04862861469159718],[121,293,65,-0.044658535788248604],[121,293,66,-0.04065513349845881],[121,293,67,-0.03661919627492366],[121,293,68,-0.032551529111315175],[121,293,69,-0.028452952709783652],[121,293,70,-0.024324302626171607],[121,293,71,-0.020166428393077834],[121,293,72,-0.015980192620722616],[121,293,73,-0.0117664700757589],[121,293,74,-0.007526146737670741],[121,293,75,-0.003260118833235792],[121,293,76,0.0010307081513039607],[121,293,77,0.005345420480223517],[121,293,78,0.009683097200468144],[121,293,79,0.014042811196006727],[121,294,64,-0.04531017719405636],[121,294,65,-0.04128984295567131],[121,294,66,-0.03723790092233292],[121,294,67,-0.0331551506800164],[121,294,68,-0.029042406240814014],[121,294,69,-0.024900495146799193],[121,294,70,-0.020730257550999415],[121,294,71,-0.016532545275618996],[121,294,72,-0.012308220847461943],[121,294,73,-0.008058156510700715],[121,294,74,-0.003783233216629475],[121,294,75,5.156604091176298E-4],[121,294,76,0.004837629122241741],[121,294,77,0.009181772138207298],[121,294,78,0.013547184233442977],[121,294,79,0.017932956869343958],[121,295,64,-0.0420561538092466],[121,295,65,-0.03798603122099084],[121,295,66,-0.03388599770232158],[121,295,67,-0.02975686409886151],[121,295,68,-0.025599453584522217],[121,295,69,-0.021414600701914588],[121,295,70,-0.017203150379262913],[121,295,71,-0.01296595692396732],[121,295,72,-0.00870388299276291],[121,295,73,-0.004417798538623202],[121,295,74,-1.0857973404374E-4],[121,295,75,0.0042228921288106624],[121,295,76,0.00857573176145529],[121,295,77,0.012949051025790442],[121,295,78,0.01734196010418179],[121,295,79,0.021753568692945285],[121,296,64,-0.038868832258311586],[121,296,65,-0.034749417065859364],[121,296,66,-0.030601768059502765],[121,296,67,-0.02642670746774896],[121,296,68,-0.02222506776777057],[121,296,69,-0.017997690662576102],[121,296,70,-0.013745426034080105],[121,296,71,-0.00946913087221618],[121,296,72,-0.005169668180042816],[121,296,73,-8.479058549903801E-4],[121,296,74,0.003495284454118272],[121,296,75,0.007859028513784769],[121,296,76,0.012242450696656013],[121,296,77,0.01664467519630257],[121,296,78,0.021064827265977984],[121,296,79,0.025502034481386465],[121,297,64,-0.035750444678134694],[121,297,65,-0.03158226096018446],[121,297,66,-0.027387499792601966],[121,297,67,-0.023166994906791444],[121,297,68,-0.018921588222560543],[121,297,69,-0.014652128762297073],[121,297,70,-0.010359471540438286],[121,297,71,-0.006044476428377854],[121,297,72,-0.0017080069947600779],[121,297,73,0.002649070678689927],[121,297,74,0.007025889206169242],[121,297,75,0.011421581131141903],[121,297,76,0.01583528018439323],[121,297,77,0.02026612256664813],[121,297,78,0.024713248255775172],[121,297,79,0.02917580233860477],[121,298,64,-0.03270316615565448],[121,298,65,-0.028486765878325063],[121,298,66,-0.024245422776714362],[121,298,67,-0.01997998220181932],[121,298,68,-0.015691295653281118],[121,298,69,-0.011380219630843721],[121,298,70,-0.007047614460496926],[121,298,71,-0.0026943430954508713],[121,298,72,0.0016787301081095246],[121,298,73,0.006070740640338711],[121,298,74,0.010480825112487747],[121,298,75,0.014908122556607228],[121,298,76,0.01935177575056731],[121,298,77,0.023810932568248275],[121,298,78,0.02828474735492386],[121,298,79,0.03277238232786487],[121,299,64,-0.029729113319846137],[121,299,65,-0.025465075873436695],[121,299,66,-0.02117770752063996],[121,299,67,-0.016867865345334486],[121,299,68,-0.012536410561910537],[121,299,69,-0.008184207304315662],[121,299,70,-0.0038121213891765815],[121,299,71,5.789809468552606E-4],[121,299,72,0.0049882343355846515],[121,299,73,0.009414775591430544],[121,299,74,0.013857745051634653],[121,299,75,0.018316287942022086],[121,299,76,0.02278955576868784],[121,299,77,0.027276707735459836],[121,299,78,0.03177691218716378],[121,299,79,0.03628934807871455],[121,300,64,-0.02683034299128266],[121,300,65,-0.02251927470987828],[121,300,66,-0.01818646378274375],[121,300,67,-0.013832779136433729],[121,300,68,-0.009459091832613925],[121,300,69,-0.005066273795029337],[121,300,70,-6.55196509939511E-4],[121,300,71,0.0037732702998301074],[121,300,72,0.008218260027272196],[121,300,73,0.012678910559864302],[121,300,74,0.017154365684897747],[121,300,75,0.02164377652096383],[121,300,76,0.026146302975974922],[121,300,77,0.030661115231570318],[121,300,78,0.0351873952539314],[121,300,79,0.039724338331032005],[121,301,64,-0.024008850889202987],[121,301,65,-0.019651384553605905],[121,301,66,-0.015273739245265025],[121,301,67,-0.010876795839624864],[121,301,68,-0.006461435375659172],[121,301,69,-0.0020285377211266657],[121,301,70,0.0024210197893153075],[121,301,71,0.006886363742990238],[121,301,72,0.011366626065124927],[121,301,73,0.01586094546166243],[121,301,74,0.02036846888934775],[121,301,75,0.0248883530525764],[121,301,76,0.029419765927388333],[121,301,77,0.03396188831245413],[121,301,78,0.03851391540707866],[121,301,79,0.04307505841624923],[121,302,64,-0.02126657039624247],[121,302,65,-0.016863364720712093],[121,302,66,-0.01244151824723582],[121,302,67,-0.00800192390269703],[121,302,68,-0.0035454728308131483],[121,302,69,9.269470039269777E-4],[121,302,70,0.0054144522400778085],[121,302,71,0.009916165570652741],[121,302,72,0.014431217222191681],[121,302,73,0.018958746461326843],[121,302,74,0.023497903129231165],[121,302,75,0.02804784920343661],[121,302,76,0.03260776038740693],[121,302,77,0.03717682772771092],[121,302,78,0.041754259258822424],[121,302,79,0.04633928167557197],[121,303,64,-0.018605371380739616],[121,303,65,-0.014157110484023605],[121,303,66,-0.009691720575921593],[121,303,67,-0.005210106733558642],[121,303,68,-7.131703301327874E-4],[121,303,69,0.0037981924220429914],[121,303,70,0.008323091956860927],[121,303,71,0.01286064686794722],[121,303,72,0.01740998545045166],[121,303,73,0.02197024727094212],[121,303,74,0.026540584765792963],[121,303,75,0.031120164867548795],[121,303,76,0.03570817065965251],[121,303,77,0.04030380305938191],[121,303,78,0.04490628252902091],[121,303,79,0.04951485081529165],[121,304,64,-0.016027059076560678],[121,304,65,-0.01153445193769599],[121,304,66,-0.0070262003167198845],[121,304,67,-0.0025032215359761293],[121,304,68,0.0020335726799185433],[121,304,69,0.006583277721476604],[121,304,70,0.011144997640713071],[121,304,71,0.01571784672633573],[121,304,72,0.02030095110780402],[121,304,73,0.02489345038809976],[121,304,74,0.0294944993056018],[121,304,75,0.03410326942454185],[121,304,76,0.03871895085443368],[121,304,77,0.04334075399831838],[121,304,78,0.047967911329852723],[121,304,79,0.052599679199265656],[121,305,64,-0.013533373020574923],[121,305,65,-0.008997152919943815],[121,305,66,-0.004446744761660014],[121,305,67,1.169217956404605E-4],[121,305,68,0.004692924556881195],[121,305,69,0.009280350367912579],[121,305,70,0.013878296722458626],[121,305,71,0.01848587339848748],[121,305,72,0.02310220412405819],[121,305,73,0.02772642827248627],[121,305,74,0.032357702587220746],[121,305,75,0.03699520293590996],[121,305,76,0.041638126094047434],[121,305,77,0.04628569155804152],[121,305,78,0.05093714338773523],[121,305,79,0.05559175207840207],[121,306,64,-0.0111259860477112],[121,306,65,-0.006546909993832329],[121,306,66,-0.001955073376425729],[121,306,67,0.002648581722484295],[121,306,68,0.007263122521314447],[121,306,69,0.01188762717574799],[121,306,70,0.016521186445746183],[121,306,71,0.021162905392590553],[121,306,72,0.02581190510600774],[121,306,73,0.030467324461218373],[121,306,74,0.03512832190630654],[121,306,75,0.039794077279380835],[121,306,76,0.04446379365592524],[121,306,77,0.049136699226178075],[121,306,78,0.053812049202568546],[121,306,79,0.05848912775723547],[121,307,64,-0.008806503343534444],[121,307,65,-0.0041853514860705],[121,307,66,4.4716317415769563E-4],[121,307,67,0.005090086048690809],[121,307,68,0.009742473656480358],[121,307,69,0.014403395319636546],[121,307,70,0.01907193488996941],[121,307,71,0.02374719250616541],[121,307,72,0.02842828638165243],[121,307,73,0.03311435462299306],[121,307,74,0.03780455707920563],[121,307,75,0.0424980772214805],[121,307,76,0.04719412405369179],[121,307,77,0.05189193405354316],[121,307,78,0.056590773144375994],[121,307,79,0.061289938697665164],[121,308,64,-0.006576461554469615],[121,308,65,-0.0019140365839334789],[121,308,66,0.0027583839420419615],[121,308,67,0.007439832849636709],[121,308,68,0.012129355848559203],[121,308,69,0.0168260132861566],[121,308,70,0.02152888193292165],[121,308,71,0.02623705679923983],[121,308,72,0.03094965298342839],[121,308,73,0.03566580755090694],[121,308,74,0.04038468144490179],[121,308,75,0.04510546142814757],[121,308,76,0.0498273620559888],[121,308,77,0.05454962768071972],[121,308,78,0.05927153448719029],[121,308,79,0.06399239255970393],[121,309,64,-0.004437327955605419],[121,309,65,2.6554550975241287E-4],[121,309,66,0.004977078553351361],[121,309,67,0.00969629134127118],[121,309,68,0.01442221866747187],[121,309,69,0.019153911765677364],[121,309,70,0.023890440153258904],[121,309,71,0.028630893506960853],[121,309,72,0.03337438357052107],[121,309,73,0.03812004609402406],[121,309,74,0.042867042805392455],[121,309,75,0.04761456341347575],[121,309,76,0.05236182764314297],[121,309,77,0.057108087302214894],[121,309,78,0.06185262838026581],[121,309,79,0.06659477317931826],[121,310,64,-0.0023904996760246433],[121,310,65,0.0023519763636182384],[121,310,66,0.007101808007307045],[121,310,67,0.011858002690533012],[121,310,68,0.01661958418836275],[121,310,69,0.021385594484479617],[121,310,70,0.026155095672828463],[121,310,71,0.03092717189170162],[121,310,72,0.03570093129032069],[121,310,73,0.040475508027750726],[121,310,74,0.045250064304554985],[121,310,75,0.05002379242664566],[121,310,76,0.05479591690174],[121,310,77,0.059565696568256346],[121,310,78,0.06433242675668009],[121,310,79,0.06909544148342381],[121,311,64,-4.373029817758972E-4],[121,311,65,0.004343909046636563],[121,311,66,0.009131205416564078],[121,311,67,0.013923580766734542],[121,311,68,0.01872004775362189],[121,311,69,0.023519638977006624],[121,311,70,0.028321408938737927],[121,311,71,0.03312443603453648],[121,311,72,0.03792782457889146],[121,311,73,0.04273070686288742],[121,311,74,0.04753224524537132],[121,311,75,0.052331634276912925],[121,311,76,0.057128102856970106],[121,311,77,0.061920916424091574],[121,311,78,0.06670937917918843],[121,311,79,0.07149283634189843],[121,312,64,0.0014210073835758952],[121,312,65,0.006240068798945189],[121,312,66,0.01106397668902502],[121,312,67,0.015891712833977112],[121,312,68,0.02072227867551421],[121,312,69,0.02555469729831425],[121,312,70,0.030388015445232924],[121,312,71,0.0352213055661533],[121,312,72,0.04005366790052481],[121,312,73,0.04488423259342901],[121,312,74,0.049712161845581956],[121,312,75,0.054536652096725355],[121,312,76,0.05935693624281864],[121,312,77,0.06417228588686529],[121,312,78,0.06898201362340385],[121,312,79,0.07378547535668728],[121,313,64,0.0031832488008649434],[121,313,65,0.008039253644655298],[121,313,66,0.012898901151175576],[121,313,67,0.017761160184645755],[121,313,68,0.022625020879460597],[121,313,69,0.027489496676766867],[121,313,70,0.032353626395433766],[121,313,71,0.03721647633725371],[121,313,72,0.042077142426426906],[121,313,73,0.046934752383163914],[121,313,74,0.05178846793182214],[121,313,75,0.05663748704302113],[121,313,76,0.061481046210154544],[121,313,77,0.06631842276012856],[121,313,78,0.07114893719836005],[121,313,79,0.07597195558805528],[121,314,64,0.004848311319599979],[121,314,65,0.009740334946539156],[121,314,66,0.014634832112835588],[121,314,67,0.019530758713873275],[121,314,68,0.024427093487862844],[121,314,69,0.029322840106867254],[121,314,70,0.03421702930281312],[121,314,71,0.03910872102832297],[121,314,72,0.043997006652421955],[121,314,73,0.048881011190953005],[121,314,74,0.0537598955721178],[121,314,75,0.0586328589365859],[121,314,76,0.06349914097259246],[121,314,77,0.06835802428585297],[121,314,78,0.07320883680432747],[121,314,79,0.0780509542178584],[121,315,64,0.006415158144690958],[121,315,65,0.011342257902684727],[121,315,66,0.016270697373414397],[121,315,67,0.021199419435064967],[121,315,68,0.026127391344563156],[121,315,69,0.031053606882314816],[121,315,70,0.03597708853251533],[121,315,71,0.0408968896988694],[121,315,72,0.04581209695577268],[121,315,73,0.05072183233478961],[121,315,74,0.05562525564684501],[121,315,75,0.06052156683957169],[121,315,76,0.0654100083902342],[121,315,77,0.07028986773405721],[121,315,78,0.07516047972799192],[121,315,79,0.08002122914994286],[121,316,64,0.00788282606556251],[121,316,65,0.012844041985056981],[121,316,66,0.017805499669610064],[121,316,67,0.02276612893642152],[121,316,68,0.027724885479875477],[121,316,69,0.03268075306922685],[121,316,70,0.03763274578244727],[121,316,71,0.04257991027606406],[121,316,72,0.04752132809104595],[121,316,73,0.05245611799456848],[121,316,74,0.057383438358080185],[121,316,75,0.06230248957110615],[121,316,76,0.06721251649121468],[121,316,77,0.07211281092997185],[121,316,78,0.07700271417491913],[121,316,79,0.08188161954759587],[121,317,64,0.009250425827730807],[121,317,65,0.0142447813200417],[121,317,66,0.01923831706462764],[121,317,67,0.02422994977853843],[121,317,68,0.029218623516267528],[121,317,69,0.03420331191960396],[121,317,70,0.03918302050422545],[121,317,71,0.04415678898286601],[121,317,72,0.04912369362511121],[121,317,73,0.054082849653653425],[121,317,74,0.05903341367743034],[121,317,75,0.06397458616108082],[121,317,76,0.06890561393114461],[121,317,77,0.07382579271883241],[121,317,78,0.07873446973939874],[121,317,79,0.08363104630814136],[121,318,64,0.010517142446754058],[121,318,65,0.01554364501087932],[121,318,66,0.020568303278824085],[121,318,67,0.025590020832985616],[121,318,68,0.030607730014597156],[121,318,69,0.0356203942249409],[121,318,70,0.040627010263877744],[121,318,71,0.045626610705529924],[121,318,72,0.0506182663111682],[121,318,73,0.055601088479136335],[121,318,74,0.06057423173223703],[121,318,75,0.06553689624201131],[121,318,76,0.07048833039034025],[121,318,77,0.07542783336819306],[121,318,78,0.08035475781155679],[121,318,79,0.08526851247456907],[121,319,64,0.011682235464606144],[121,319,65,0.016739877402041164],[121,319,66,0.021794687961833564],[121,319,67,0.026845557561922778],[121,319,68,0.0318914067609575],[121,319,69,0.036931188610038995],[121,319,70,0.04196389104235773],[121,319,71,0.04698853930055455],[121,319,72,0.05200419840186077],[121,319,73,0.057009975640847366],[121,319,74,0.062005023130211834],[121,319,75,0.0669885403790293],[121,319,76,0.07195977690890051],[121,319,77,0.07691803490781973],[121,319,78,0.08186267192179736],[121,319,79,0.08679310358425874],[122,-64,64,-0.13859617225076482],[122,-64,65,-0.14239534078821947],[122,-64,66,-0.14607617140787488],[122,-64,67,-0.14963720819021353],[122,-64,68,-0.15307715789637655],[122,-64,69,-0.1563948957743555],[122,-64,70,-0.15958947142990032],[122,-64,71,-0.16266011476204556],[122,-64,72,-0.16560624196327045],[122,-64,73,-0.16842746158419963],[122,-64,74,-0.17112358066310196],[122,-64,75,-0.17369461091983385],[122,-64,76,-0.1761407750145083],[122,-64,77,-0.17846251287075365],[122,-64,78,-0.18066048806361412],[122,-64,79,-0.18273559427206987],[122,-63,64,-0.1330019003200238],[122,-63,65,-0.13678906246256317],[122,-63,66,-0.14045845613605645],[122,-63,67,-0.14400862268324277],[122,-63,68,-0.14743826558265793],[122,-63,69,-0.15074625624695215],[122,-63,70,-0.15393163988593528],[122,-63,71,-0.15699364143426175],[122,-63,72,-0.1599316715437633],[122,-63,73,-0.16274533264034363],[122,-63,74,-0.16543442504568284],[122,-63,75,-0.16799895316340885],[122,-63,76,-0.1704391317300109],[122,-63,77,-0.17275539213035562],[122,-63,78,-0.17494838877786678],[122,-63,79,-0.17701900555934236],[122,-62,64,-0.12732607103502858],[122,-62,65,-0.13110046436809197],[122,-62,66,-0.13475768644626474],[122,-62,67,-0.13829627577432546],[122,-62,68,-0.14171493242061162],[122,-62,69,-0.14501252380700347],[122,-62,70,-0.14818809056366022],[122,-62,71,-0.15124085244840735],[122,-62,72,-0.15417021433078903],[122,-62,73,-0.15697577224070236],[122,-62,74,-0.15965731948185524],[122,-62,75,-0.16221485280971126],[122,-62,76,-0.16464857867418892],[122,-62,77,-0.16695891952698594],[122,-62,78,-0.16914652019358234],[122,-62,79,-0.17121225430989462],[122,-61,64,-0.12157297924126498],[122,-61,65,-0.12533384870224062],[122,-61,66,-0.128978171570322],[122,-61,67,-0.1325044834135144],[122,-61,68,-0.13591148076407078],[122,-61,69,-0.1391980268996984],[122,-61,70,-0.14236315768953234],[122,-61,71,-0.14540608750477768],[122,-61,72,-0.14832621519403633],[122,-61,73,-0.15112313012322665],[122,-61,74,-0.1537966182803504],[122,-61,75,-0.15634666844475598],[122,-61,76,-0.15877347842117961],[122,-61,77,-0.1610774613384237],[122,-61,78,-0.16325925201273195],[122,-61,79,-0.16531971337583262],[122,-60,64,-0.11574696613626367],[122,-60,65,-0.11949356451047055],[122,-60,66,-0.12312426806609078],[122,-60,67,-0.12663760933701262],[122,-60,68,-0.13003228119531207],[122,-60,69,-0.13330714262323928],[122,-60,70,-0.13646122454998855],[122,-60,71,-0.13949373575315072],[122,-60,72,-0.14240406882486822],[122,-60,73,-0.14519180620260053],[122,-60,74,-0.14785672626474988],[122,-60,75,-0.15039880949080453],[122,-60,76,-0.15281824468627137],[122,-60,77,-0.15511543527226557],[122,-60,78,-0.1572910056398117],[122,-60,79,-0.159345807568831],[122,-59,64,-0.10985241437244198],[122,-59,65,-0.11358400277934899],[122,-59,66,-0.1172003749012035],[122,-59,67,-0.12070006014196155],[122,-59,68,-0.1240817475913022],[122,-59,69,-0.1273442917869554],[122,-59,70,-0.1304867185418288],[122,-59,71,-0.13350823083583407],[122,-59,72,-0.13640821477242993],[122,-59,73,-0.13918624559979564],[122,-59,74,-0.14184209379687618],[122,-59,75,-0.14437573122396408],[122,-59,76,-0.14678733733808613],[122,-59,77,-0.14907730547306275],[122,-59,78,-0.1512462491842962],[122,-59,79,-0.15329500865825763],[122,-58,64,-0.10389374303438448],[122,-58,65,-0.10760959140359372],[122,-58,66,-0.11121092841029712],[122,-58,67,-0.11469628023429412],[122,-58,68,-0.11806433206259737],[122,-58,69,-0.12131393384166689],[122,-58,70,-0.12444410609446233],[122,-58,71,-0.12745404580221031],[122,-58,72,-0.130343132350903],[122,-58,73,-0.13311093354244385],[122,-58,74,-0.1357572116706811],[122,-58,75,-0.13828192966199282],[122,-58,76,-0.14068525728069292],[122,-58,77,-0.14296757739912758],[122,-58,78,-0.14512949233251116],[122,-58,79,-0.1471718302384839],[122,-57,64,-0.09787540249087445],[122,-57,65,-0.10157479002739522],[122,-57,66,-0.10516039712607195],[122,-57,67,-0.10863074664997607],[122,-57,68,-0.11198451976520685],[122,-57,69,-0.11522056168261241],[122,-57,70,-0.11833788746433638],[122,-57,71,-0.12133568789510008],[122,-57,72,-0.12421333541822999],[122,-57,73,-0.12697039013634803],[122,-57,74,-0.12960660587696426],[122,-57,75,-0.13212193632263702],[122,-57,76,-0.134516541205971],[122,-57,77,-0.13679079256932003],[122,-57,78,-0.13894528108924353],[122,-57,79,-0.1409808224657032],[122,-56,64,-0.09180186912153665],[122,-56,65,-0.09548408475987191],[122,-56,66,-0.09905327648402906],[122,-56,67,-0.10250796374948412],[122,-56,68,-0.1058468235852772],[122,-56,69,-0.10906869632479599],[122,-56,70,-0.11217259140139935],[122,-56,71,-0.1151576932087921],[122,-56,72,-0.11802336702616056],[122,-56,73,-0.12076916500798374],[122,-56,74,-0.1233948322387648],[122,-56,75,-0.1259003128523457],[122,-56,76,-0.12828575621607197],[122,-56,77,-0.1305515231796779],[122,-56,78,-0.13269819238894542],[122,-56,79,-0.1347265666641113],[122,-55,64,-0.08567763991792543],[122,-55,65,-0.08934198276450134],[122,-55,66,-0.09289408340072391],[122,-55,67,-0.09633245778536825],[122,-55,68,-0.09965577869643727],[122,-55,69,-0.1028628814505923],[122,-55,70,-0.10595276968744038],[122,-55,71,-0.10892462121858582],[122,-55,72,-0.11177779394145748],[122,-55,73,-0.11451183181782931],[122,-55,74,-0.1171264709172729],[122,-55,75,-0.11962164552520804],[122,-55,76,-0.12199749431582241],[122,-55,77,-0.12425436658971978],[122,-55,78,-0.12639282857636513],[122,-55,79,-0.12841366980128366],[122,-54,64,-0.07950722695937285],[122,-54,65,-0.08315300672283366],[122,-54,66,-0.08668735072584843],[122,-54,67,-0.09010877134320072],[122,-54,68,-0.09341593699011419],[122,-54,69,-0.09660767782992274],[122,-54,70,-0.0996829915466142],[122,-54,71,-0.10264104918214945],[122,-54,72,-0.10548120103857483],[122,-54,73,-0.10820298264484085],[122,-54,74,-0.11080612078856678],[122,-54,75,-0.11329053961242153],[122,-54,76,-0.1156563667753816],[122,-54,77,-0.11790393967874135],[122,-54,78,-0.12003381175692229],[122,-54,79,-0.12204675883306582],[122,-53,64,-0.07329515176344392],[122,-53,65,-0.07692168917233966],[122,-53,66,-0.08043762156799183],[122,-53,67,-0.08384145765576756],[122,-53,68,-0.08713186137866946],[122,-53,69,-0.09030765761284942],[122,-53,70,-0.09336783792800218],[122,-53,71,-0.0963115664125549],[122,-53,72,-0.09913818556366127],[122,-53,73,-0.10184722224191622],[122,-53,74,-0.10443839369103158],[122,-53,75,-0.10691161362214152],[122,-53,76,-0.10926699836300102],[122,-53,77,-0.11150487307194623],[122,-53,78,-0.11362577801667684],[122,-53,79,-0.11563047491782497],[122,-52,64,-0.06704593951083626],[122,-52,65,-0.0706525667182274],[122,-52,66,-0.0741494434939145],[122,-52,67,-0.07753507479033406],[122,-52,68,-0.08080811997119253],[122,-52,69,-0.08396739849442314],[122,-52,70,-0.0870118956600423],[122,-52,71,-0.08994076842281062],[122,-52,72,-0.09275335126971496],[122,-52,73,-0.09544916216218569],[122,-52,74,-0.09802790854328614],[122,-52,75,-0.10048949340954838],[122,-52,76,-0.10283402144771414],[122,-52,77,-0.10506180523625408],[122,-52,78,-0.1071733715117198],[122,-52,79,-0.10916946749989664],[122,-51,64,-0.06076411314504093],[122,-51,65,-0.0643501741195478],[122,-51,66,-0.06782736260165179],[122,-51,67,-0.07119417970930564],[122,-51,68,-0.0744492801222656],[122,-51,69,-0.0775914777521064],[122,-51,70,-0.08061975147715195],[122,-51,71,-0.08353325094222308],[122,-51,72,-0.08633130242321863],[122,-51,73,-0.08901341475644708],[122,-51,74,-0.09157928533294368],[122,-51,75,-0.0940288061574458],[122,-51,76,-0.09636206997229024],[122,-51,77,-0.09857937644609904],[122,-51,78,-0.10068123842731347],[122,-51,79,-0.10266838826254387],[122,-50,64,-0.054454187346613114],[122,-50,65,-0.05801903824943322],[122,-50,66,-0.06147591746729952],[122,-50,67,-0.06482332220412967],[122,-50,68,-0.06805990235355452],[122,-50,69,-0.07118446615561491],[122,-50,70,-0.07419598591838539],[122,-50,71,-0.07709360380442842],[122,-50,72,-0.07987663768209663],[122,-50,73,-0.08254458704159662],[122,-50,74,-0.08509713897605442],[122,-50,75,-0.0875341742272504],[122,-50,76,-0.08985577329628769],[122,-50,77,-0.09206222261906893],[122,-50,78,-0.09415402080662505],[122,-50,79,-0.0961318849502828],[122,-49,64,-0.048120662381880286],[122,-49,65,-0.051663671929302546],[122,-49,66,-0.05509963296530618],[122,-49,67,-0.058427038702266065],[122,-49,68,-0.06164453414804649],[122,-49,69,-0.0647509217490092],[122,-49,70,-0.0677451670979562],[122,-49,71,-0.07062640470692139],[122,-49,72,-0.07339394384481956],[122,-49,73,-0.07604727443987369],[122,-49,74,-0.07858607304704901],[122,-49,75,-0.0810102088801794],[122,-49,76,-0.08331974990903568],[122,-49,77,-0.08551496902121025],[122,-49,78,-0.08759635024887713],[122,-49,79,-0.08956459506039383],[122,-48,64,-0.04176801782642148],[122,-48,65,-0.045288567637358446],[122,-48,66,-0.04870301396260257],[122,-48,67,-0.05200984594756042],[122,-48,68,-0.05520770361727212],[122,-48,69,-0.05829538350536523],[122,-48,70,-0.061271844347957516],[122,-48,71,-0.06413621284241777],[122,-48,72,-0.06688778947099971],[122,-48,73,-0.06952605438926451],[122,-48,74,-0.07205067337952509],[122,-48,75,-0.07446150386899386],[122,-48,76,-0.07675860101288245],[122,-48,77,-0.07894222384233673],[122,-48,78,-0.08101284147725407],[122,-48,79,-0.08297113940395717],[122,-47,64,-0.0354007061631455],[122,-47,65,-0.038898191091214174],[122,-47,66,-0.042290538886406326],[122,-47,67,-0.04557623455385218],[122,-47,68,-0.04875391304134025],[122,-47,69,-0.051822364853860825],[122,-47,70,-0.05478054173311364],[122,-47,71,-0.05762756240188183],[122,-47,72,-0.060362718373294766],[122,-47,73,-0.06298547982488967],[122,-47,74,-0.06549550153770878],[122,-47,75,-0.06789262890010883],[122,-47,76,-0.07017690397653986],[122,-47,77,-0.07234857164116915],[122,-47,78,-0.07440808577639668],[122,-47,79,-0.07635611553624466],[122,-46,64,-0.029023146254816168],[122,-46,65,-0.03249697470448998],[122,-46,66,-0.03586665316553783],[122,-46,67,-0.03913066243165719],[122,-46,68,-0.04228763228163024],[122,-46,69,-0.04533634707911349],[122,-46,70,-0.04827575143739815],[122,-46,71,-0.0511049559490544],[122,-46,72,-0.05382324298047225],[122,-46,73,-0.056430072531215236],[122,-46,74,-0.0589250881584199],[122,-46,75,-0.06130812296592203],[122,-46,76,-0.06357920565836173],[122,-46,77,-0.06573856666014632],[122,-46,78,-0.06778664429931747],[122,-46,79,-0.06972409105630284],[122,-45,64,-0.022639716691340572],[122,-45,65,-0.026089310917698727],[122,-45,66,-0.029435762545570898],[122,-45,67,-0.0326775480882463],[122,-45,68,-0.035813292066461555],[122,-45,69,-0.03884177259309596],[122,-45,70,-0.04176192702284898],[122,-45,71,-0.04457285766681274],[122,-45,72,-0.04727383757195258],[122,-45,73,-0.04986431636541311],[122,-45,74,-0.052343926163880394],[122,-45,75,-0.05471248754768199],[122,-45,76,-0.05697001559988146],[122,-45,77,-0.0591167260102341],[122,-45,78,-0.06115304124406806],[122,-45,79,-0.06307959677605712],[122,-44,64,-0.01625474901166446],[122,-44,65,-0.01967954540326544],[122,-44,66,-0.02300222627766091],[122,-44,67,-0.026221263800965566],[122,-44,68,-0.02933527714958184],[122,-44,69,-0.03234303807947059],[122,-44,70,-0.035243476560416154],[122,-44,71,-0.03803568647519684],[122,-44,72,-0.040718931383672774],[122,-44,73,-0.04329265035171492],[122,-44,74,-0.04575646384519627],[122,-44,75,-0.048110179688737764],[122,-44,76,-0.05035379908945292],[122,-44,77,-0.05248752272557289],[122,-44,78,-0.054511756900002095],[122,-44,79,-0.056427119758776456],[122,-43,64,-0.009872520800106144],[122,-43,65,-0.01327197014450976],[122,-43,66,-0.016570350180880267],[122,-43,67,-0.019766128663624594],[122,-43,68,-0.0228579193413061],[122,-43,69,-0.0258444875101701],[122,-43,70,-0.028724755632674404],[122,-43,71,-0.03149780902093424],[122,-43,72,-0.0341629015850996],[122,-43,73,-0.0367194616465798],[122,-43,74,-0.039167097816345864],[122,-43,75,-0.04150560493799327],[122,-43,76,-0.04373497009581939],[122,-43,77,-0.04585537868779033],[122,-43,78,-0.04786722056344561],[122,-43,79,-0.049771096226724376],[122,-42,64,-0.0034972486574617045],[122,-42,65,-0.006870816388926726],[122,-42,66,-0.010144379578394869],[122,-42,67,-0.013316401506288211],[122,-42,68,-0.016385490412639814],[122,-42,69,-0.019350405034563534],[122,-42,70,-0.022210060208734728],[122,-42,71,-0.024963532538800348],[122,-42,72,-0.02761006612772976],[122,-42,73,-0.03014907837502312],[122,-42,74,-0.03258016583900891],[122,-42,75,-0.03490311016391223],[122,-42,76,-0.03711788407194849],[122,-42,77,-0.039224657420315334],[122,-42,78,-0.04122380332313702],[122,-42,79,-0.04311590433833545],[122,-41,64,0.0028669189532916084],[122,-41,65,-4.802474755895014E-4],[122,-41,66,-0.003728492107308745],[122,-41,67,-0.006876273688299572],[122,-41,68,-0.009922194872214019],[122,-41,69,-0.012865007741029943],[122,-41,70,-0.01570361939118381],[122,-41,71,-0.018437097584638518],[122,-41,72,-0.021064676464903065],[122,-41,73,-0.023585762337923866],[122,-41,74,-0.025999939518067783],[122,-41,75,-0.02830697623889511],[122,-41,76,-0.030506830628960535],[122,-41,77,-0.032599656752527406],[122,-41,78,-0.03458581071524214],[122,-41,79,-0.03646585683474668],[122,-40,64,0.009215908986842658],[122,-40,65,0.005895648463470904],[122,-40,66,0.002673209597971904],[122,-40,67,-4.4986176438477354E-4],[122,-40,68,-0.0034721626158786822],[122,-40,69,-0.006392438290792279],[122,-40,70,-0.009209588034897576],[122,-40,71,-0.011922670639888389],[122,-40,72,-0.014530910142775522],[122,-40,73,-0.017033701590162043],[122,-40,74,-0.019430616867621042],[122,-40,75,-0.021721410593872004],[122,-40,76,-0.02390602607999648],[122,-40,77,-0.02598460135357583],[122,-40,78,-0.027957475247800123],[122,-40,79,-0.029825193555523044],[122,-39,64,0.015545731220634407],[122,-39,65,0.012252865927601553],[122,-39,66,0.009056705348546523],[122,-39,67,0.005958799975854245],[122,-39,68,0.0029605585507286314],[122,-39,69,6.324257567780212E-5],[122,-39,70,-0.0027320392380418834],[122,-39,71,-0.00542433658793795],[122,-39,72,-0.008012863262765735],[122,-39,73,-0.010497002889901852],[122,-39,74,-0.012876314747829687],[122,-39,75,-0.01515053964343327],[122,-39,76,-0.017319605854340225],[122,-39,77,-0.019383635136195454],[122,-39,78,-0.021342948794915606],[122,-39,79,-0.023198073823900045],[122,-38,64,0.0218524857853426],[122,-38,65,0.018587489597729157],[122,-38,66,0.015418064970147749],[122,-38,67,0.012345767095200189],[122,-38,68,0.009372010516792595],[122,-38,69,0.006498063659833853],[122,-38,70,0.003725043294886876],[122,-38,71,0.001053908937851733],[122,-38,72,-0.0015145428153292562],[122,-38,73,-0.003979684018867502],[122,-38,74,-0.006341061172444262],[122,-38,75,-0.008598401081344242],[122,-38,76,-0.0107516167816476],[122,-38,77,-0.01280081353036211],[122,-38,78,-0.014746294860545017],[122,-38,79,-0.016588568701390694],[122,-37,64,0.028132370820913466],[122,-37,65,0.024895702012595056],[122,-37,66,0.021753455998759996],[122,-37,67,0.01870719272301391],[122,-37,68,0.015758332598279745],[122,-37,69,0.012908151053980133],[122,-37,70,0.010157773018158012],[122,-37,71,0.0075081673346252265],[122,-37,72,0.004960141115121441],[122,-37,73,0.002514334026562759],[122,-37,74,1.7121251316454256E-4],[122,-37,75,-0.002068936046265568],[122,-37,76,-0.004206009246099929],[122,-37,77,-0.006240095626612763],[122,-37,78,-0.008171480711700152],[122,-37,79,-0.010000653111574942],[122,-36,64,0.034381690257819564],[122,-36,65,0.031173791370679882],[122,-36,66,0.028059151502384583],[122,-36,67,0.025039335396008222],[122,-36,68,0.022115769396899854],[122,-36,69,0.0192897360175992],[122,-36,70,0.01656236843768888],[122,-36,71,0.013934644938661811],[122,-36,72,0.01140738327379287],[122,-36,73,0.008981234973091001],[122,-36,74,0.006656679583116554],[122,-36,75,0.004434018841961929],[122,-36,76,0.002313370789156277],[122,-36,77,2.9466381061349356E-4],[122,-36,78,-0.0016223693814254592],[122,-36,79,-0.0034381978334365737],[122,-35,64,0.04059686172381405],[122,-35,65,0.037418159458106226],[122,-35,66,0.034331538029235054],[122,-35,67,0.031338567025894104],[122,-35,68,0.028440678786356144],[122,-35,69,0.025639162981372365],[122,-35,70,0.022935161132001558],[122,-35,71,0.020329661062444604],[122,-35,72,0.017823491287877857],[122,-35,73,0.015417315337354243],[122,-35,74,0.013111626011567123],[122,-35,75,0.010906739575764712],[122,-35,76,0.008802789887582319],[122,-35,77,0.006799722459910562],[122,-35,78,0.004897288458746596],[122,-35,79,0.003095038636056202],[122,-34,64,0.04677442457598113],[122,-34,65,0.04362532970230615],[122,-34,66,0.040567123682157535],[122,-34,67,0.03760138099368504],[122,-34,68,0.0347295400256763],[122,-34,69,0.03195289767867948],[122,-34,70,0.02927260390104358],[122,-34,71,0.026689656159961328],[122,-34,72,0.024204893847498576],[122,-34,73,0.021818992621687627],[122,-34,74,0.01953245868247322],[122,-34,75,0.017345622982800624],[122,-34,76,0.015258635374616802],[122,-34,77,0.013271458689895987],[122,-34,78,0.011383862756644714],[122,-34,79,0.009595418349904739],[122,-33,64,0.052911048058350896],[122,-33,65,0.04979195535173153],[122,-33,66,0.046762546319547904],[122,-33,67,0.043824400370938155],[122,-33,68,0.040978961999899366],[122,-33,69,0.03822753540485779],[122,-33,70,0.035571279043152604],[122,-33,71,0.03301120012051162],[122,-33,72,0.03054814901550873],[122,-33,73,0.028182813639075932],[122,-33,74,0.025915713728861367],[122,-33,75,0.02374719507872225],[122,-33,76,0.021677423703122867],[122,-33,77,0.019706379936550444],[122,-33,78,0.017833852467900257],[122,-33,79,0.01605943230985596],[122,-32,64,0.059003539584757236],[122,-32,65,0.05591482778127932],[122,-32,66,0.05291458188243958],[122,-32,67,0.05000438626760495],[122,-32,68,0.04718569158778918],[122,-32,69,0.044459809403889494],[122,-32,70,0.04182790675983028],[122,-32,71,0.039291000690693245],[122,-32,72,0.03684995266581903],[122,-32,73,0.03450546296695867],[122,-32,74,0.032258065001263825],[122,-32,75,0.030108119549403844],[122,-32,76,0.02805580894858084],[122,-32,77,0.026101131210556017],[122,-32,78,0.024243894074638783],[122,-32,79,0.022483708995661877],[122,-31,64,0.06504885314708897],[122,-31,65,0.06199088492358562],[122,-31,66,0.05902015284791673],[122,-31,67,0.056138246306642436],[122,-31,68,0.053346622156730694],[122,-31,69,0.050646599382670576],[122,-31,70,0.04803935368848411],[122,-31,71,0.04552591202471801],[122,-31,72,0.04310714705040197],[122,-31,73,0.040783771530047086],[122,-31,74,0.038556332665478976],[122,-31,75,0.03642520636278879],[122,-31,76,0.03439059143417755],[122,-31,77,0.032452503734802796],[122,-31,78,0.030610770234582474],[122,-31,79,0.028865023024978065],[122,-30,64,0.07104409784909682],[122,-30,65,0.06801721982634945],[122,-30,66,0.06507633680901381],[122,-30,67,0.06222304322554961],[122,-30,68,0.05945880218497035],[122,-30,69,0.05678494015302937],[122,-30,70,0.05420264156329968],[122,-30,71,0.05171294336322707],[122,-30,72,0.04931672949514465],[122,-30,73,0.047014725312317984],[122,-30,74,0.044807491929821475],[122,-30,75,0.042695420510525106],[122,-30,76,0.040678726485967376],[122,-30,77,0.03875744371222478],[122,-30,78,0.03693141856073223],[122,-30,79,0.03520030394407603],[122,-29,64,0.07698654656543258],[122,-29,65,0.07399108933536325],[122,-29,66,0.07108037518077515],[122,-29,67,0.06825600360450279],[122,-29,68,0.06551944401087428],[122,-29,69,0.06287203040116096],[122,-29,70,0.060314956003914566],[122,-29,71,0.05784926784027222],[122,-29,72,0.05547586122421477],[122,-29,73,0.05319547419785209],[122,-29,74,0.051008681901532404],[122,-29,75,0.04891589087905479],[122,-29,76,0.04691733331776349],[122,-29,77,0.0450130612236318],[122,-29,78,0.04320294053129081],[122,-29,79,0.041486645149024226],[122,-28,64,0.08287364472609315],[122,-28,65,0.07990992290342225],[122,-28,66,0.07702968203265359],[122,-28,67,0.07423452672126507],[122,-28,68,0.07152593270937968],[122,-28,69,0.0689052415846576],[122,-28,70,0.06637365543207097],[122,-28,71,0.06393223141864002],[122,-28,72,0.06158187631311829],[122,-28,73,0.059323340940695246],[122,-28,74,0.057157214572522874],[122,-28,75,0.05508391925033451],[122,-28,76,0.05310370404594211],[122,-28,77,0.05121663925571662],[122,-28,78,0.04942261053000774],[122,-28,79,0.047721312937524574],[122,-27,64,0.08870301922640877],[122,-27,65,0.08577133152525218],[122,-27,66,0.0829218530473792],[122,-27,67,0.08015619353300629],[122,-27,68,0.07747583509577838],[122,-27,69,0.07488212695727359],[122,-27,70,0.07237628011638564],[122,-27,71,0.06995936195366359],[122,-27,72,0.0676322907705913],[122,-27,73,0.06539583026388363],[122,-27,74,0.06325058393459793],[122,-27,75,0.061196989432333315],[122,-27,76,0.05923531283430217],[122,-27,77,0.05736564285938073],[122,-27,78,0.05558788501709233],[122,-27,79,0.05390175569154587],[122,-26,64,0.09447248746227443],[122,-26,65,0.09157311679815539],[122,-26,66,0.0887546746060055],[122,-26,67,0.08601877578473638],[122,-26,68,0.0833669088565312],[122,-26,69,0.08080043072112064],[122,-26,70,0.07832056134493581],[122,-26,71,0.07592837838520983],[122,-26,72,0.07362481174901869],[122,-26,73,0.07141063808732695],[122,-26,74,0.0692864752238499],[122,-26,75,0.06725277651899475],[122,-26,76,0.06530982516867023],[122,-26,77,0.06345772843806907],[122,-26,78,0.06169641183037855],[122,-26,79,0.06002561319044264],[122,-25,64,0.10018006649077926],[122,-25,65,0.0973132801085278],[122,-25,66,0.09452613299927992],[122,-25,67,0.09182024524450205],[122,-25,68,0.08919711180726575],[122,-25,69,0.08665809730644936],[122,-25,70,0.08420443072581074],[122,-25,71,0.0818372000580051],[122,-25,72,0.07955734688353522],[122,-25,73,0.0773656608847042],[122,-25,74,0.07526277429437822],[122,-25,75,0.07324915627982376],[122,-25,76,0.07132510726140817],[122,-25,77,0.06949075316626874],[122,-25,78,0.06774603961690517],[122,-25,79,0.066090726054717],[122,-24,64,0.10582398231638002],[122,-24,65,0.10299003194439627],[122,-24,66,0.10023442376549363],[122,-24,67,0.09755878306549837],[122,-24,68,0.09496461127810962],[122,-24,69,0.0924532807791677],[122,-24,70,0.09002602961578998],[122,-24,71,0.08768395617044633],[122,-24,72,0.08542801375996367],[122,-24,73,0.08325900516952822],[122,-24,74,0.0811775771214921],[122,-24,75,0.07918421467925074],[122,-24,76,0.07727923558597938],[122,-24,77,0.07546278453833277],[122,-24,78,0.07373482739506376],[122,-24,79,0.0720951453205827],[122,-23,64,0.1114026793023214],[122,-23,65,0.10860180133367481],[122,-23,66,0.10587796115450288],[122,-23,67,0.10323278927479274],[122,-23,68,0.10066779362605449],[122,-23,69,0.09818435437579132],[122,-23,70,0.09578371867683055],[122,-23,71,0.09346699535159209],[122,-23,72,0.09123514951127965],[122,-23,73,0.08908899711006646],[122,-23,74,0.08702919943408172],[122,-23,75,0.08505625752546253],[122,-23,76,0.08317050654126101],[122,-23,77,0.08137211004730927],[122,-23,78,0.0796610542470021],[122,-23,79,0.07803714214501256],[122,-22,64,0.11691482970745215],[122,-22,65,0.11414724540829191],[122,-22,66,0.11145538771808083],[122,-22,67,0.10884089238881367],[122,-22,68,0.10630527387450428],[122,-22,69,0.1038499201659786],[122,-22,70,0.1014760875605275],[122,-22,71,0.09918489536648989],[122,-22,72,0.09697732054275932],[122,-22,73,0.09485419227327585],[122,-22,74,0.0928161864763184],[122,-22,75,0.09086382024885742],[122,-22,76,0.08899744624575767],[122,-22,77,0.08721724699393818],[122,-22,78,0.08552322914144073],[122,-22,79,0.08391521764143206],[122,-21,64,0.12235934334858811],[122,-21,65,0.11962525909434074],[122,-21,66,0.11696558402674462],[122,-21,67,0.11438195915575555],[122,-21,68,0.11187590548016013],[122,-21,69,0.10944881884280677],[122,-21,70,0.10710196472069478],[122,-21,71,0.10483647294999165],[122,-21,72,0.10265333238596663],[122,-21,73,0.1005533854979076],[122,-21,74,0.09853732289883688],[122,-21,75,0.09660567781027873],[122,-21,76,0.09475882046187889],[122,-21,77,0.09299695242597239],[122,-21,78,0.09132010088706022],[122,-21,79,0.08972811284621429],[122,-20,64,0.12773537738811425],[122,-20,65,0.12503498492793896],[122,-20,66,0.12240767851275103],[122,-20,67,0.11985510442458824],[122,-20,68,0.11737879022692865],[122,-20,69,0.11498013964046905],[122,-20,70,0.1126604273537557],[122,-20,71,0.11042079376874192],[122,-20,72,0.10826223968125814],[122,-20,73,0.10618562089646144],[122,-20,74,0.10419164277908033],[122,-20,75,0.10228085473870929],[122,-20,76,0.10045364464994966],[122,-20,77,0.09871023320749772],[122,-20,78,0.09705066821613617],[122,-20,79,0.09547481881565245],[122,-19,64,0.13304234624699363],[122,-19,65,0.1303758229969738],[122,-19,66,0.12778105743943224],[122,-19,67,0.12525970114084284],[122,-19,68,0.12281328824702675],[122,-19,69,0.12044323037957272],[122,-19,70,0.1181508114671117],[122,-19,71,0.11593718251151208],[122,-19,72,0.11380335628898486],[122,-19,73,0.11175020198616459],[122,-19,74,0.10977843977098545],[122,-19,75,0.10788863529859916],[122,-19,76,0.10608119415214035],[122,-19,77,0.10435635621843276],[122,-19,78,0.10271418999859849],[122,-19,79,0.10115458685358869],[122,-18,64,0.13827993164331354],[122,-18,65,0.1356474410088554],[122,-18,66,0.1330853749969949],[122,-18,67,0.1305953904693029],[122,-18,68,0.12817902816940963],[122,-18,69,0.125837707640161],[122,-18,70,0.12357272207562475],[122,-18,71,0.12138523310801375],[122,-18,72,0.1192762655295182],[122,-18,73,0.11724670194910991],[122,-18,74,0.11529727738413753],[122,-18,75,0.11342857378696336],[122,-18,76,0.11164101450644237],[122,-18,77,0.10993485868433983],[122,-18,78,0.10831019558665045],[122,-18,79,0.1067669388698339],[122,-17,64,0.1434480927560734],[122,-17,65,0.14084978448398822],[122,-17,66,0.13832056352449607],[122,-17,67,0.1358620920433049],[122,-17,68,0.13347591739523057],[122,-17,69,0.13116346706216808],[122,-17,70,0.12892604352591108],[122,-17,71,0.12676481907588832],[122,-17,72,0.12468083055180434],[122,-17,73,0.12267497402124838],[122,-17,74,0.12074799939209546],[122,-17,75,0.11890050495994331],[122,-17,76,0.11713293189038887],[122,-17,77,0.11544555863624273],[122,-17,78,0.11383849528964074],[122,-17,79,0.11231167786907059],[122,-16,64,0.14854707651439258],[122,-16,65,0.14598308707513608],[122,-16,66,0.1434868438581638],[122,-16,67,0.1410600143408257],[122,-16,68,0.13870415250050472],[122,-16,69,0.1364206937734781],[122,-16,70,0.13421094994862592],[122,-16,71,0.13207610399605463],[122,-16,72,0.13001720483061951],[122,-16,73,0.12803516201041698],[122,-16,74,0.12613074037006455],[122,-16,75,0.12430455458901324],[122,-16,76,0.12255706369469954],[122,-16,77,0.12088856550063132],[122,-16,78,0.1192991909793697],[122,-16,79,0.11778889857042119],[122,-15,64,0.15357742801222274],[122,-15,65,0.15104788101276512],[122,-15,66,0.14858473580615772],[122,-15,67,0.1461896651874448],[122,-15,68,0.14386422976606794],[122,-15,69,0.14160987294568417],[122,-15,70,0.1394279158388313],[122,-15,71,0.13731955211650293],[122,-15,72,0.13528584279262534],[122,-15,73,0.13332771094349571],[122,-15,74,0.13144593636201118],[122,-15,75,0.12964115014692545],[122,-15,76,0.12791382922694394],[122,-15,77,0.12626429081975044],[122,-15,78,0.12469268682592582],[122,-15,79,0.12319899815777868],[122,-14,64,0.15854000104834431],[122,-14,65,0.15604500767614737],[122,-14,66,0.15361506874954145],[122,-14,67,0.151251862385957],[122,-14,68,0.1489569558346059],[122,-14,69,0.1467318004773165],[122,-14,70,0.14457772676421377],[122,-14,71,0.14249593908430924],[122,-14,72,0.1404875105709884],[122,-14,73,0.13855337784245836],[122,-14,74,0.13669433567698652],[122,-14,75,0.13491103162316098],[122,-14,76,0.13320396054499062],[122,-14,77,0.13157345910193308],[122,-14,78,0.13001970016381503],[122,-14,79,0.12854268716065909],[122,-13,64,0.1634359687917457],[122,-13,65,0.1609756282903183],[122,-13,66,0.15857899236956685],[122,-13,67,0.15624774447273515],[122,-13,68,0.15398345849485284],[122,-13,69,0.1517875938046408],[122,-13,70,0.14966149020126007],[122,-13,71,0.14760636280596706],[122,-13,72,0.14562329688866682],[122,-13,73,0.1437132426294241],[122,-13,74,0.14187700981476314],[122,-13,75,0.14011526246898798],[122,-13,76,0.1384285134203408],[122,-13,77,0.13681711880208702],[122,-13,78,0.1352812724884881],[122,-13,79,0.13382100046568424],[122,-12,64,0.1682668345725329],[122,-12,65,0.16584123474904278],[122,-12,66,0.16347798750142306],[122,-12,67,0.16117878160099386],[122,-12,68,0.1589451975931102],[122,-12,69,0.15677870284018225],[122,-12,70,0.15468064649953872],[122,-12,71,0.1526522544361958],[122,-12,72,0.15069462407052303],[122,-12,73,0.14880871916086225],[122,-12,74,0.1469953645209382],[122,-12,75,0.14525524067228546],[122,-12,76,0.14358887843151225],[122,-12,77,0.1419966534324888],[122,-12,78,0.14047878058342522],[122,-12,79,0.13903530845885315],[122,-11,64,0.17303444279809244],[122,-11,65,0.1706436605635051],[122,-11,66,0.168313877114164],[122,-11,67,0.16604678655067218],[122,-11,68,0.16384397607180468],[122,-11,69,0.16170692103868478],[122,-11,70,0.15963697997380155],[122,-11,71,0.15763538949493383],[122,-11,72,0.15570325918396621],[122,-11,73,0.15384156639066027],[122,-11,74,0.15205115097121458],[122,-11,75,0.15033270996183978],[122,-11,76,0.14868679218716896],[122,-11,77,0.14711379280359227],[122,-11,78,0.1456139477774786],[122,-11,79,0.14418732829830117],[122,-10,64,0.17774098999473043],[122,-10,65,0.1753850919369515],[122,-10,66,0.1730888374170464],[122,-10,67,0.17085392586516124],[122,-10,68,0.16868195113530993],[122,-10,69,0.16657439659074003],[122,-10,70,0.16453263012413988],[122,-10,71,0.1625578991127491],[122,-10,72,0.16065132530836357],[122,-10,73,0.15881389966228987],[122,-10,74,0.15704647708509178],[122,-10,75,0.15534977114134751],[122,-10,76,0.15372434867924323],[122,-10,77,0.15217062439508822],[122,-10,78,0.15068885533271648],[122,-10,79,0.14927913531779147],[122,-9,64,0.18238903597463418],[122,-9,65,0.1800680789651291],[122,-9,66,0.17780540909211806],[122,-9,67,0.1756027311147218],[122,-9,68,0.1734616455428779],[122,-9,69,0.17138364374392534],[122,-9,70,0.1693701029840292],[122,-9,71,0.16742228140450832],[122,-9,72,0.16554131293305574],[122,-9,73,0.1637282021299079],[122,-9,74,0.16198381896880576],[122,-9,75,0.1603088935529644],[122,-9,76,0.1587040107658788],[122,-9,77,0.15716960485705],[122,-9,78,0.1557059539625968],[122,-9,79,0.1543131745607701],[122,-8,64,0.18698151512835093],[122,-8,65,0.18469554696271662],[122,-8,66,0.1824665086532561],[122,-8,67,0.18029611028678927],[122,-8,68,0.17818595902887768],[122,-8,69,0.17613755425165067],[122,-8,70,0.17415228259647175],[122,-8,71,0.17223141297150624],[122,-8,72,0.17037609148418253],[122,-8,73,0.168587336308599],[122,-8,74,0.16686603248772502],[122,-8,75,0.16521292667060605],[122,-8,76,0.16362862178440785],[122,-8,77,0.16211357164137685],[122,-8,78,0.16066807548068862],[122,-8,79,0.15929227244519473],[122,-7,64,0.1915217478425535],[122,-7,65,0.18927080791551532],[122,-7,66,0.18707543993141929],[122,-7,67,0.1849373593029302],[122,-7,68,0.1828581798501051],[122,-7,69,0.18083940894947903],[122,-7,70,0.17888244261799136],[122,-7,71,0.17698856053181522],[122,-7,72,0.17515892098007546],[122,-7,73,0.17339455575351548],[122,-7,74,0.17169636496795515],[122,-7,75,0.17006511182275452],[122,-7,76,0.16850141729411228],[122,-7,77,0.16700575476328394],[122,-7,78,0.16557844457968418],[122,-7,79,0.16421964855888938],[122,-6,64,0.19601345204319742],[122,-6,65,0.19379757205850612],[122,-6,66,0.19163590568622357],[122,-6,67,0.18953017366255986],[122,-6,68,0.18748199646027242],[122,-6,69,0.18549288945902587],[122,-6,70,0.1835642580505943],[122,-6,71,0.18169739267896456],[122,-6,72,0.1798934638153289],[122,-6,73,0.17815351686802505],[122,-6,74,0.17647846702726766],[122,-6,75,0.17486909404488382],[122,-6,76,0.17332603694888427],[122,-6,77,0.17184978869295342],[122,-6,78,0.1704406907408217],[122,-6,79,0.16909892758553868],[122,-5,64,0.200460754864194],[122,-5,65,0.19827995957989897],[122,-5,66,0.19615201934396598],[122,-5,67,0.19407866021354558],[122,-5,68,0.192061509311804],[122,-5,69,0.1901020900195699],[122,-5,70,0.1882018171018225],[122,-5,71,0.1863619917690802],[122,-5,72,0.18458379667367975],[122,-5,73,0.18286829084100042],[122,-5,74,0.18121640453548027],[122,-5,75,0.17962893406163571],[122,-5,76,0.17810653649991737],[122,-5,77,0.17664972437748183],[122,-5,78,0.1752588602738483],[122,-5,79,0.17393415136145418],[122,-4,64,0.204868204441354],[122,-4,65,0.2027225124509221],[122,-4,66,0.20062831686184457],[122,-4,67,0.19858734904944442],[122,-4,68,0.19660124278468638],[122,-4,69,0.19467152944711597],[122,-4,70,0.1927996331726436],[122,-4,71,0.19098686593622527],[122,-4,72,0.18923442256943612],[122,-4,73,0.18754337571298618],[122,-4,74,0.18591467070403156],[122,-4,75,0.18434912039848506],[122,-4,76,0.182847399928164],[122,-4,77,0.181410041392855],[122,-4,78,0.18003742848726112],[122,-4,79,0.17872979106284959],[122,-3,64,0.20924078183173955],[122,-3,65,0.20713020638150026],[122,-3,66,0.205069768718522],[122,-3,67,0.20306120553352158],[122,-3,68,0.20110615724251546],[122,-3,69,0.19920616322105877],[122,-3,70,0.19736265697332567],[122,-3,71,0.19557696123609158],[122,-3,72,0.19385028301760376],[122,-3,73,0.19218370857139566],[122,-3,74,0.19057819830489708],[122,-3,75,0.18903458162304132],[122,-3,76,0.18755355170671262],[122,-3,77,0.18613566022610606],[122,-3,78,0.18478131198897452],[122,-3,79,0.18349075952377147],[122,-2,64,0.21358391305851765],[122,-2,65,0.21150846290190406],[122,-2,66,0.2094817920311176],[122,-2,67,0.2075056424496351],[122,-2,68,0.205581661215836],[122,-2,69,0.2037113956985387],[122,-2,70,0.2018962887673872],[122,-2,71,0.20013767391813186],[122,-2,72,0.19843677033280405],[122,-2,73,0.19679467787482918],[122,-2,74,0.19521237201893982],[122,-2,75,0.19369069871608535],[122,-2,76,0.19223036919317615],[122,-2,77,0.19083195468774938],[122,-2,78,0.1894958811175127],[122,-2,79,0.1882224236847907],[122,-1,64,0.21790348128109838],[122,-1,65,0.2158631615701596],[122,-1,66,0.2138702627984148],[122,-1,67,0.2119265322797761],[122,-1,68,0.21003362371254708],[122,-1,69,0.20819309245626827],[122,-1,70,0.2064063907434004],[122,-1,71,0.20467486282591263],[122,-1,72,0.20299974005675792],[122,-1,73,0.2013821359062884],[122,-1,74,0.1998230409134738],[122,-1,75,0.19832331757210908],[122,-1,76,0.1968836951518671],[122,-1,77,0.19550476445426168],[122,-1,78,0.19418697250349604],[122,-1,79,0.19293061717221227],[122,0,64,0.22220583909066838],[122,0,65,0.22020065230532893],[122,0,66,0.2182415282703971],[122,0,67,0.21633021960836718],[122,0,68,0.2144683866554955],[122,0,69,0.21265759275994256],[122,0,70,0.21089929951476383],[122,0,71,0.2091948619257995],[122,0,72,0.20754552351445188],[122,0,73,0.20595241135540598],[122,0,74,0.20441653104914825],[122,0,75,0.20293876162948077],[122,0,76,0.20151985040587228],[122,0,77,0.20016040774072807],[122,0,78,0.1988609017615386],[122,0,79,0.19762165300793277],[122,1,64,0.22649782093123194],[122,1,65,0.22452776784677142],[122,1,66,0.22260241944421644],[122,1,67,0.220723533653445],[122,1,68,0.21889277744736302],[122,1,69,0.21711172216135144],[122,1,70,0.21538183874755867],[122,1,71,0.21370449296409288],[122,1,72,0.2120809404991032],[122,1,73,0.21051232202980064],[122,1,74,0.20899965821628308],[122,1,75,0.20754384463034858],[122,1,76,0.2061456466191517],[122,1,77,0.2048056941037738],[122,1,78,0.20352447631267767],[122,1,79,0.20230233645005957],[122,2,64,0.23078632811187705],[122,2,65,0.22885140957262107],[122,2,66,0.22695983771722872],[122,2,67,0.22511337578197788],[122,2,68,0.22331369737539142],[122,2,69,0.2215623818189849],[122,2,70,0.2198609094228633],[122,2,71,0.2182106566962161],[122,2,72,0.21661289149270146],[122,2,73,0.21506876809077113],[122,2,74,0.21357932220879694],[122,2,75,0.21214546595518902],[122,2,76,0.21076798271335462],[122,2,77,0.20944752196157124],[122,2,78,0.2081845940277447],[122,2,79,0.2069795647790651],[122,3,64,0.2350722285811475],[122,3,65,0.2331724576578138],[122,3,66,0.23131467585893817],[122,3,67,0.22950065171741063],[122,3,68,0.22773206546735003],[122,3,69,0.22601050440616377],[122,3,70,0.22433745819145856],[122,3,71,0.22271431407284725],[122,3,72,0.22114235205864874],[122,3,73,0.21962274001752513],[122,3,74,0.21815652871492364],[122,3,75,0.216744646784509],[122,3,76,0.2153878956344366],[122,3,77,0.2140869442885419],[122,3,78,0.212842324162413],[122,3,79,0.21165442377436217],[122,4,64,0.23935150882584366],[122,4,65,0.23748691870082972],[122,4,66,0.2356629613014395],[122,4,67,0.23388141043172828],[122,4,68,0.2321439529253384],[122,4,69,0.23045218402889756],[122,4,70,0.2288076027202659],[122,4,71,0.22721160696168485],[122,4,72,0.225665488887816],[122,4,73,0.22417042992872038],[122,4,74,0.22272749586764418],[122,4,75,0.22133763183379274],[122,4,76,0.2200016572299499],[122,4,77,0.21872026059501248],[122,4,78,0.21749399440140926],[122,4,79,0.21632326978742045],[122,5,64,0.2436200329035914],[122,5,65,0.24179067546507804],[122,5,66,0.24000059626213355],[122,5,67,0.23825157432901534],[122,5,68,0.2365453030568766],[122,5,69,0.23488338559854016],[122,5,70,0.23326733020812518],[122,5,71,0.23169854551557645],[122,5,72,0.23017833573608715],[122,5,73,0.22870789581446194],[122,5,74,0.22728830650429122],[122,5,75,0.22592052938211438],[122,5,76,0.2246054017964304],[122,5,77,0.22334363175162575],[122,5,78,0.2221357927267903],[122,5,79,0.22098231842943372],[122,6,64,0.24787367450127662],[122,6,65,0.2460796187412822],[122,6,66,0.24432348939986637],[122,6,67,0.24260707068533854],[122,6,68,0.24093206248871224],[122,6,69,0.23930007580990742],[122,6,70,0.23771262811880978],[122,6,71,0.23617113865123585],[122,6,72,0.23467692363979642],[122,6,73,0.2332311914797025],[122,6,74,0.23183503782938686],[122,6,75,0.23048944064611843],[122,6,76,0.22919525515646766],[122,6,77,0.22795320876169167],[122,6,78,0.2267638958780127],[122,6,79,0.2256277727118],[122,7,64,0.2521083201444772],[122,7,65,0.25034965060163195],[122,7,66,0.24862755911254236],[122,7,67,0.24694383498856293],[122,7,68,0.24530018454758773],[122,7,69,0.24369822656174234],[122,7,70,0.24213948763994442],[122,7,71,0.24062539754537215],[122,7,72,0.23915728444783846],[122,7,73,0.23773637011111048],[122,7,74,0.23636376501505518],[122,7,75,0.23504046341277895],[122,7,76,0.2337673383226243],[122,7,77,0.23254513645509522],[122,7,78,0.23137447307467762],[122,7,79,0.2302558267965713],[122,8,64,0.2563198723512854],[122,8,65,0.2545966875978489],[122,8,66,0.25290873677819425],[122,8,67,0.25125781422118987],[122,8,68,0.24964563258360595],[122,8,69,0.24807381831937686],[122,8,70,0.24654390708373486],[122,8,71,0.2450573390722659],[122,8,72,0.2436154542948743],[122,8,73,0.24221948778470304],[122,8,74,0.24087056474188828],[122,8,75,0.23956969561231278],[122,8,76,0.23831777110122998],[122,8,77,0.23711555712181798],[122,8,78,0.23596368967864179],[122,8,79,0.2348626696860322],[122,9,64,0.2605042527306303],[122,9,65,0.25881666390327973],[122,9,66,0.2571629699396251],[122,9,67,0.25554497008632376],[122,9,68,0.25396438323630904],[122,9,69,0.25242284341970483],[122,9,70,0.2509218952296255],[122,9,71,0.24946298918290644],[122,9,72,0.2480474770157542],[122,9,73,0.24667660691436366],[122,9,74,0.24535151868037952],[122,9,75,0.24407323883136822],[122,9,76,0.24284267563616913],[122,9,77,0.24166061408518813],[122,9,78,0.24052771079560897],[122,9,79,0.2394444888515337],[122,10,64,0.26465740502520746],[122,10,65,0.26300553439912067],[122,10,66,0.261386225432726],[122,10,67,0.2598012821768844],[122,10,68,0.258252429643579],[122,10,69,0.2567413093185776],[122,10,70,0.2552694746089963],[122,10,71,0.253838386225804],[122,10,72,0.2524494075012642],[122,10,73,0.25110379964135393],[122,10,74,0.2498027169130438],[122,10,75,0.24854720176659972],[122,10,76,0.24733817989277773],[122,10,77,0.24617645521497766],[122,10,78,0.24506270481632486],[122,10,79,0.24399747380169556],[122,11,64,0.2687752980987988],[122,11,65,0.2671592777045599],[122,11,66,0.2655744924582551],[122,11,67,0.26402275108783635],[122,11,68,0.2625057845931392],[122,11,69,0.26102524178039715],[122,11,70,0.25958268473167245],[122,11,71,0.25817958420924847],[122,11,72,0.2568173149949726],[122,11,73,0.2554971511645955],[122,11,74,0.2542202612969883],[122,11,75,0.25298770361839845],[122,11,76,0.2518004210816156],[122,11,77,0.25065923638011256],[122,11,78,0.24956484689713365],[122,11,79,0.2485178195897414],[122,12,64,0.2728539288680949],[122,12,65,0.2712738991509454],[122,12,66,0.2697237855971859],[122,12,67,0.268205401471553],[122,12,68,0.26672048361676975],[122,12,69,0.26527068801002013],[122,12,70,0.2638575852543642],[122,12,71,0.2624826560051316],[122,12,72,0.26114728633129125],[122,12,73,0.2598527630118334],[122,12,74,0.25860026876705494],[122,12,75,0.25739087742489963],[122,12,76,0.25622554902223327],[122,12,77,0.2551051248411126],[122,12,78,0.2540303223800213],[122,12,79,0.253001730260089],[122,13,64,0.2768893251791197],[122,13,65,0.2753454337000837],[122,13,66,0.2738301477697315],[122,13,67,0.27234528503641925],[122,13,68,0.2708925880273415],[122,13,69,0.26947371972708406],[122,13,70,0.26809025909114137],[122,13,71,0.26674369649443985],[122,13,72,0.26543542911485957],[122,13,73,0.26416675625179525],[122,13,74,0.2629388745796436],[122,13,75,0.261752873336372],[122,13,76,0.26060972944704625],[122,13,77,0.259510302582376],[122,13,78,0.2584553301522549],[122,13,79,0.25744542223430467],[122,14,64,0.28087754862803893],[122,14,65,0.27936994880644644],[122,14,66,0.2778896531378198],[122,14,67,0.27643848348844524],[122,14,68,0.2750181878984428],[122,14,69,0.27363043618251864],[122,14,70,0.2722768154657135],[122,14,71,0.27095882565418505],[122,14,72,0.2696778748410191],[122,14,73,0.2684352746471064],[122,14,74,0.2672322354969793],[122,14,75,0.26606986182975595],[122,14,76,0.2649491472450731],[122,14,77,0.26387096958406714],[122,14,78,0.2628360859453774],[122,14,79,0.2618451276361848],[122,15,64,0.2848146973265372],[122,15,65,0.28334354722347066],[122,15,66,0.28189840995120696],[122,15,67,0.2804811114160832],[122,15,68,0.27909340498678803],[122,15,69,0.27773696711744245],[122,15,70,0.276413392905709],[122,15,71,0.2751241915859711],[122,15,72,0.2738707819575734],[122,15,73,0.2726544877481627],[122,15,74,0.2714765329120225],[122,15,75,0.2703380368635476],[122,15,76,0.2692400096457439],[122,15,77,0.2681833470338073],[122,15,78,0.2671688255737612],[122,15,79,0.26619709755616155],[122,16,64,0.28869690861162606],[122,16,65,0.2872623697538178],[122,16,66,0.28585256333709286],[122,16,67,0.2844693191181055],[122,16,68,0.28311439559727014],[122,16,69,0.28178947566429885],[122,16,70,0.2804961621788107],[122,16,71,0.27923597348604745],[122,16,72,0.27801033886769005],[122,16,73,0.2768205939278132],[122,16,74,0.27566797591387493],[122,16,75,0.27455361897288344],[122,16,76,0.273478549342627],[122,16,77,0.27244368047802414],[122,16,78,0.2714498081125699],[122,16,79,0.2704976052548888],[122,17,64,0.29252036170006424],[122,17,65,0.291122597943769],[122,17,66,0.28974829803341806],[122,17,67,0.28839929537473075],[122,17,68,0.28707735339083884],[122,17,69,0.2857841611904181],[122,17,70,0.28452132917093514],[122,17,71,0.2832903845570451],[122,17,72,0.2820927668741342],[122,17,73,0.2809298233570441],[122,17,74,0.2798028042938766],[122,17,75,0.27871285830501763],[122,17,76,0.2776610275572704],[122,17,77,0.2766482429131512],[122,17,78,0.2756753190153271],[122,17,79,0.27474294930620247],[122,18,64,0.29628128028717504],[122,18,65,0.2949204567215441],[122,18,66,0.29358184106562774],[122,18,67,0.29226727016177423],[122,18,68,0.2909785121349869],[122,18,69,0.28971726208378523],[122,18,70,0.2884851377062325],[122,18,71,0.28728367486116374],[122,18,72,0.2861143230646071],[122,18,73,0.2849784409214375],[122,18,74,0.28387729149216007],[122,18,75,0.2828120375949626],[122,18,76,0.28178373704292586],[122,18,77,0.2807933378164472],[122,18,78,0.2798416731708544],[122,18,79,0.27892945667922],[122,19,64,0.29997593509016696],[122,19,65,0.2986522169796479],[122,19,66,0.29734946436700616],[122,19,67,0.2960695173079353],[122,19,68,0.29481414839695064],[122,19,69,0.29358505848112],[122,19,70,0.29238387230901614],[122,19,71,0.2912121341149244],[122,19,72,0.2900713031383006],[122,19,73,0.28896274907851377],[122,19,74,0.287887747484778],[122,19,75,0.2868474750814043],[122,19,76,0.2858430050282684],[122,19,77,0.28487530211654666],[122,19,78,0.28394521789969696],[122,19,79,0.28305348575969547],[122,20,64,0.30360064633604744],[122,20,65,0.30231419810133814],[122,20,66,0.3010474873426792],[122,20,67,0.2998023570953126],[122,20,68,0.29858058417972105],[122,20,69,0.2973838749383679],[122,20,70,0.29621386090771906],[122,20,71,0.2950720944255839],[122,20,72,0.29396004417376603],[122,20,73,0.2928790906560609],[122,20,74,0.29183052161150264],[122,20,75,0.29081552736299415],[122,20,76,0.289835196101213],[122,20,77,0.28889050910384706],[122,20,78,0.2879823358901363],[122,20,79,0.28711142931073197],[122,21,64,0.3071517861939403],[122,21,65,0.30590277043102077],[122,21,66,0.3046722793770855],[122,21,67,0.3034621588029516],[122,21,68,0.3022741895006671],[122,21,69,0.30111008304339926],[122,21,70,0.2999714774806756],[122,21,71,0.2988599329690072],[122,21,72,0.2977769273378939],[122,21,73,0.2967238515912394],[122,21,74,0.29570200534408814],[122,21,75,0.2947125921948077],[122,21,76,0.29375671503261824],[122,21,77,0.29283537128051723],[122,21,78,0.291949448073579],[122,21,79,0.2910997173726388],[122,22,64,0.3106257811519058],[122,22,65,0.3094143576886727],[122,22,66,0.3082202622850208],[122,22,67,0.30704534319352644],[122,22,68,0.30589138491287193],[122,22,69,0.30476010397102316],[122,22,70,0.3036531446438332],[122,22,71,0.30257207460910507],[122,22,72,0.3015183805361073],[122,22,73,0.3004934636105752],[122,22,74,0.299498634995107],[122,22,75,0.2985351112250796],[122,22,76,0.29760400953998567],[122,22,77,0.29670634315023947],[122,22,78,0.29584301643943156],[122,22,79,0.29501482010204194],[122,23,64,0.31401911433834906],[122,23,65,0.312845439328382],[122,23,66,0.3116879127063434],[122,23,67,0.31054838494324627],[122,23,68,0.309428643969278],[122,23,69,0.3083304109804046],[122,23,70,0.30725533618048584],[122,23,71,0.30620499445892746],[122,23,72,0.3051808810038682],[122,23,73,0.3041844068509306],[122,23,74,0.3032168943674514],[122,23,75,0.3022795726723087],[122,23,76,0.30137357299125206],[122,23,77,0.3004999239477818],[122,23,78,0.2996595467895583],[122,23,79,0.29885325055035006],[122,24,64,0.31732832778783726],[122,24,65,0.31619255284081865],[122,24,66,0.3150717644441542],[122,24,67,0.31396781501479853],[122,24,68,0.3128824956294449],[122,24,69,0.3118175318546971],[122,24,70,0.31077457951283755],[122,24,71,0.30975522038322184],[122,24,72,0.30876095783929497],[122,24,73,0.30779321242125846],[122,24,74,0.30685331734430493],[122,24,75,0.3059425139425361],[122,24,76,0.30506194704847217],[122,24,77,0.30421266030819677],[122,24,78,0.30339559143212],[122,24,79,0.3026115673813671],[122,25,64,0.320550024651419],[122,25,65,0.31945229599973596],[122,25,66,0.3183684107465508],[122,25,67,0.31730022297342597],[122,25,68,0.3162495266090258],[122,25,69,0.31521805128298913],[122,25,70,0.3142074581154963],[122,25,71,0.31321933544255415],[122,25,72,0.31225519447699923],[122,25,73,0.31131646490524356],[122,25,74,0.310404490419686],[122,25,75,0.3095205241868986],[122,25,76,0.3086657242514993],[122,25,77,0.30784114887575525],[122,25,78,0.30704775181489846],[122,25,79,0.30628637752816146],[122,26,64,0.3236808713515274],[122,26,65,0.32262132905258023],[122,26,66,0.3215745065320351],[122,26,67,0.3205422592462243],[122,26,68,0.31952638367204095],[122,26,69,0.31852861318464853],[122,26,70,0.3175506138709839],[122,26,71,0.3165939802790833],[122,26,72,0.31566023110322455],[122,26,73,0.3147508048049162],[122,26,74,0.3138670551696532],[122,26,75,0.313010246799548],[122,26,76,0.31218155054175095],[122,26,77,0.3113820388527026],[122,26,78,0.3106126810981996],[122,26,79,0.3098743387892823],[122,27,64,0.32671759968129627],[122,27,65,0.3256963768550395],[122,27,66,0.3246867705584035],[122,27,67,0.3236906373244796],[122,27,68,0.3227097758657754],[122,27,69,0.32174592297588767],[122,27,70,0.32080074936708225],[122,27,71,0.31987585544380254],[122,27,72,0.3189727670121064],[122,27,73,0.3180929309250557],[122,27,74,0.31723771066398393],[122,27,75,0.31640838185574705],[122,27,76,0.3156061277258725],[122,27,77,0.31483203448764946],[122,27,78,0.3140870866671412],[122,27,79,0.3133721623641295],[122,28,64,0.3296570088483808],[122,28,65,0.3286742309496219],[122,28,66,0.32770198753520874],[122,28,67,0.3267421359091437],[122,28,68,0.32579647669839107],[122,28,69,0.32486674977864327],[122,28,70,0.3239546301361087],[122,28,71,0.3230617236653475],[122,28,72,0.32218956290314893],[122,28,73,0.3213396026984796],[122,28,74,0.3205132158184278],[122,28,75,0.3197116884902438],[122,28,76,0.318936215879398],[122,28,77,0.31818789750369536],[122,28,78,0.317467732583429],[122,28,79,0.31677661532758106],[122,29,64,0.3324959674633533],[122,29,65,0.33155175158833555],[122,29,66,0.33061701017987205],[122,29,67,0.3296936009995192],[122,29,68,0.3287833262593327],[122,29,69,0.32788792857184695],[122,29,70,0.3270090868362035],[122,29,71,0.32614841206044826],[122,29,72,0.32530744311999826],[122,29,73,0.3244876424523007],[122,29,74,0.3236903916876128],[122,29,75,0.32291698721600237],[122,29,76,0.3221686356904898],[122,29,77,0.321446449466371],[122,29,78,0.32075144197670247],[122,29,79,0.3200845230439594],[122,30,64,0.33523141547251983],[122,30,65,0.3343258696993154],[122,30,66,0.33342876121728066],[122,30,67,0.33254194792499453],[122,30,68,0.3316672332823616],[122,30,69,0.3308063622849243],[122,30,70,0.3299610173744561],[122,30,71,0.32913281428585595],[122,30,72,0.32832329783034364],[122,30,73,0.3275339376149785],[122,30,74,0.32676612369843344],[122,30,75,0.3260211621831193],[122,30,76,0.325300270743583],[122,30,77,0.32460457409121857],[122,30,78,0.3239350993752738],[122,30,79,0.3232927715201596],[122,31,64,0.3378603660352411],[122,31,65,0.33699358879747754],[122,31,66,0.33613423532296133],[122,31,67,0.3352841633199152],[122,31,68,0.33444517715130684],[122,31,69,0.33361902383360686],[122,31,70,0.33280738897196616],[122,31,71,0.33201189263183734],[122,31,72,0.3312340851470348],[122,31,73,0.33047544286425834],[122,31,74,0.32973736382401275],[122,31,75,0.3290211633780167],[122,31,76,0.32832806974302575],[122,31,77,0.32765921949110816],[122,31,78,0.32701565297635465],[122,31,79,0.32639830969803346],[122,32,64,0.3403799073458212],[122,32,65,0.33955198683927124],[122,32,66,0.3387305010098927],[122,32,67,0.3379173070416577],[122,32,68,0.337114209848601],[122,32,69,0.33632295809813006],[122,32,70,0.33554524017090387],[122,32,71,0.3347826800573036],[122,32,72,0.33403683319048993],[122,32,73,0.3333091822160696],[122,32,74,0.33260113269830976],[122,32,75,0.331914008762986],[122,32,76,0.3312490486767944],[122,32,77,0.3306074003633626],[122,32,78,0.32999011685584456],[122,32,79,0.3293981516861075],[122,33,64,0.3427872043998251],[122,33,65,0.3419982180213808],[122,33,66,0.3412147024588135],[122,33,67,0.34043851403176145],[122,33,68,0.33967145784645164],[122,33,69,0.3389152838436639],[122,33,70,0.3381716827834206],[122,33,71,0.33744228216642413],[122,33,72,0.3367286420922368],[122,33,73,0.3360322510542267],[122,33,74,0.3353545216712168],[122,33,75,0.3346967863559236],[122,33,76,0.33406029292011624],[122,33,77,0.33344620011653026],[122,33,78,0.33285557311752156],[122,33,79,0.3322893789304676],[122,34,64,0.345079500704899],[122,34,65,0.3443295145234603],[122,34,66,0.3435840612921057],[122,34,67,0.3428449961201961],[122,34,68,0.3421141239407309],[122,34,69,0.3413931955830606],[122,34,70,0.3406839037824923],[122,34,71,0.3399878791268049],[122,34,72,0.339306685939673],[122,34,73,0.3386418181010179],[122,34,74,0.3379946948042304],[122,34,75,0.33736665625034395],[122,34,76,0.3367589592790933],[122,34,77,0.3361727729368927],[122,34,78,0.3356091739817183],[122,34,79,0.3350691423249024],[122,35,64,0.3472541199361535],[122,35,65,0.34654318819495267],[122,35,66,0.345835878291308],[122,35,67,0.3451340437728248],[122,35,68,0.3444394890276405],[122,35,69,0.3437539653819765],[122,35,70,0.3430791671347546],[122,35,71,0.34241672752929697],[122,35,72,0.3417682146621059],[122,35,73,0.3411351273287441],[122,35,74,0.34051889080676034],[122,35,75,0.33992085257573523],[122,35,76,0.3393422779743878],[122,35,77,0.33878434579477296],[122,35,78,0.3382481438135558],[122,35,79,0.33773466426036985],[122,36,64,0.34930846753597916],[122,36,65,0.34863663218587093],[122,36,66,0.3479675350581348],[122,36,67,0.34730302778193156],[122,36,68,0.34664491382302204],[122,36,69,0.34599494460623703],[122,36,70,0.34535481557519715],[122,36,71,0.3447261621892942],[122,36,72,0.3441105558579361],[122,36,73,0.3435094998120701],[122,36,74,0.34292442491293523],[122,36,75,0.3423566853981144],[122,36,76,0.34180755456482814],[122,36,77,0.3412782203905003],[122,36,78,0.3407697810905821],[122,36,79,0.34028324061364085],[122,37,64,0.35124003225837064],[122,37,65,0.35060732252161025],[122,37,66,0.34997649561906796],[122,37,67,0.349349400899887],[122,37,68,0.34872784052438455],[122,37,69,0.3481135656115182],[122,37,70,0.3475082723237891],[122,37,71,0.34691359788959936],[122,37,72,0.34633111656305876],[122,37,73,0.3457623355212618],[122,37,74,0.3452086906989833],[122,37,75,0.3446715425608613],[122,37,76,0.3441521718110125],[122,37,77,0.3436517750401089],[122,37,78,0.34317146030990187],[122,37,79,0.34271224267520023],[122,38,64,0.35304638765779917],[122,38,65,0.3524528196218361],[122,38,66,0.3518603079735735],[122,38,67,0.3512706994159982],[122,38,68,0.350685794415699],[122,38,69,0.35010734337539295],[122,38,70,0.34953704274409014],[122,38,71,0.34897653106490834],[122,38,72,0.34842738496053693],[122,38,73,0.3478911150563676],[122,38,74,0.34736916184124195],[122,38,75,0.3468628914658848],[122,38,76,0.3463735914789674],[122,38,77,0.34590246650083045],[122,38,78,0.3454506338348509],[122,38,79,0.34501911901646304],[122,39,64,0.35472519352252607],[122,39,65,0.3541707697633394],[122,39,66,0.35361660558582325],[122,39,67,0.35306454467642917],[122,39,68,0.35251638541484154],[122,39,69,0.35197387707162586],[122,39,70,0.3514387159437212],[122,39,71,0.3509125414277894],[122,39,72,0.350396932031421],[122,39,73,0.34989340132221186],[122,39,74,0.34940339381466695],[122,39,75,0.3489282807949927],[122,39,76,0.34846935608372887],[122,39,77,0.34802783173624335],[122,39,78,0.347604833681081],[122,39,79,0.3472013972961706],[122,40,64,0.35627419725245063],[122,40,65,0.35575890648694874],[122,40,66,0.3552431088200235],[122,40,67,0.3547286445472875],[122,40,68,0.3542173095637851],[122,40,69,0.3537108515868133],[122,40,70,0.353210966316801],[122,40,71,0.3527192935362621],[122,40,72,0.3522374131468188],[122,40,73,0.35176684114431145],[122,40,74,0.35130902553195104],[122,40,75,0.35086534217157495],[122,40,76,0.3504370905729563],[122,40,77,0.35002548962119423],[122,40,78,0.3496316732421701],[122,40,79,0.3492566860060792],[122,41,64,0.35769123518142765],[122,41,65,0.3572150519484423],[122,41,66,0.3567376263192824],[122,41,67,0.35626079482081324],[122,41,68,0.35578635046147256],[122,41,69,0.3553160389793041],[122,41,70,0.3548515550282777],[122,41,71,0.35439453830290435],[122,41,72,0.35394656960114756],[122,41,73,0.35350916682564076],[122,41,74,0.35308378092317755],[122,41,75,0.3526717917625228],[122,41,76,0.3522745039505056],[122,41,77,0.35189314258641363],[122,41,78,0.35152884895467956],[122,41,79,0.3511826761558661],[122,42,64,0.3589742338441301],[122,42,65,0.3585371182135272],[122,42,66,0.3580980563280921],[122,42,67,0.3576588805647467],[122,42,68,0.35722138063944964],[122,42,69,0.35678729988047964],[122,42,70,0.356358331440237],[122,42,71,0.3559361144455735],[122,42,72,0.3555222300866498],[122,42,73,0.35511819764433245],[122,42,74,0.354725470456096],[122,42,75,0.35434543182047845],[122,42,76,0.35397939084005003],[122,42,77,0.35362857820291727],[122,42,78,0.35329414190275077],[122,42,79,0.3529771428973446],[122,43,64,0.3601212111873685],[122,43,65,0.35972310849680267],[122,43,66,0.35932238795833804],[122,43,67,0.3589208774147816],[122,43,68,0.3585203628801645],[122,43,69,0.3581225848382978],[122,43,70,0.35772923448009086],[122,43,71,0.35734194987963785],[122,43,72,0.3569623121090739],[122,43,73,0.35659184129221],[122,43,74,0.3562319925969173],[122,43,75,0.355884152166303],[122,43,76,0.355549632988642],[122,43,77,0.3552296707060851],[122,43,78,0.35492541936213184],[122,43,79,0.35463794708787616],[122,44,64,0.3611302777259168],[122,44,65,0.36077111834475495],[122,44,66,0.36040870239888195],[122,44,67,0.3600448528101585],[122,44,68,0.3596813514779862],[122,44,69,0.35931993560315423],[122,44,70,0.35896229395069834],[122,44,71,0.35861006305177845],[122,44,72,0.35826482334457405],[122,44,73,0.35792809525421043],[122,44,74,0.3576013352116837],[122,44,75,0.3572859316118251],[122,44,76,0.35698320071027423],[122,44,77,0.35669438245947577],[122,44,78,0.356420636283693],[122,44,79,0.35616303679304206],[122,45,64,0.36199963764286497],[122,45,65,0.3616793367628056],[122,45,66,0.361355174068746],[122,45,67,0.3610289671724182],[122,45,68,0.3607024934429655],[122,45,69,0.360377486356086],[122,45,70,0.36005563178244854],[122,45,71,0.3597385642153844],[122,45,72,0.359427862937858],[122,45,73,0.3591250481287243],[122,45,74,0.358831576908244],[122,45,75,0.35854883932289916],[122,45,76,0.35827815426947224],[122,45,77,0.35802076535841093],[122,45,78,0.3577778367164654],[122,45,79,0.3575504487286069],[122,46,64,0.3627275898344403],[122,46,65,0.3624460472863531],[122,46,66,0.3621600717138306],[122,46,67,0.36187147502725386],[122,46,68,0.36158202964727393],[122,46,69,0.3612934648792506],[122,46,70,0.3610074632272311],[122,46,71,0.3607256566474727],[122,46,72,0.3604496227415106],[122,46,73,0.36018088088877837],[122,46,74,0.3599208883187587],[122,46,75,0.3596710361226949],[122,46,76,0.3594326452048382],[122,46,77,0.3592069621732455],[122,46,78,0.3589951551701184],[122,46,79,0.3587983096416895],[122,47,64,0.36331252889933496],[122,47,65,0.3630696289958455],[122,47,66,0.36282175944720974],[122,47,67,0.3625707260695008],[122,47,68,0.36231829591436043],[122,47,69,0.36206619366872084],[122,47,70,0.3618160979943431],[122,47,71,0.36156963780717577],[122,47,72,0.36132838849653415],[122,47,73,0.36109386808410887],[122,47,74,0.36086753332277965],[122,47,75,0.36065077573526655],[122,47,76,0.36044491759259323],[122,47,77,0.3602512078323756],[122,47,78,0.36007081791692785],[122,47,79,0.3599048376311934],[122,48,64,0.3637529460725487],[122,48,65,0.36354855747589776],[122,48,66,0.36333869773301386],[122,48,67,0.3631251661712773],[122,48,68,0.362909724050841],[122,48,69,0.362694090989613],[122,48,70,0.36247994132834327],[122,48,71,0.36226890043581284],[122,48,72,0.3620625409541305],[122,48,73,0.361862378984141],[122,48,74,0.36166987021092506],[122,48,75,0.361486405969421],[122,48,76,0.3613133092501418],[122,48,77,0.36115183064500356],[122,48,78,0.3610031442332553],[122,48,79,0.3608683434075183],[122,49,64,0.3640474301037128],[122,49,65,0.3638814057184107],[122,49,66,0.3637094443138589],[122,49,67,0.3635333383332342],[122,49,68,0.3633548428210759],[122,49,69,0.36317567187349975],[122,49,70,0.36299749502880774],[122,49,71,0.36282193359849635],[122,49,72,0.3626505569386639],[122,49,73,0.3624848786618217],[122,49,74,0.3623263527890942],[122,49,75,0.36217636984282847],[122,49,76,0.36203625287959673],[122,49,77,0.36190725346360186],[122,49,78,0.3617905475804773],[122,49,79,0.3616872314914902],[122,50,64,0.36419466807991746],[122,50,65,0.3640668449697236],[122,50,66,0.36393265508185235],[122,50,67,0.3637938835789416],[122,50,68,0.36365227886446627],[122,50,69,0.36350954905814026],[122,50,70,0.36336735841202006],[122,50,71,0.36322732366730615],[122,50,72,0.3630910103518465],[122,50,73,0.36295992901834395],[122,50,74,0.36283553142325736],[122,50,75,0.3627192066464118],[122,50,76,0.3626122771513042],[122,50,77,0.3625159947861128],[122,50,78,0.3624315367254055],[122,50,79,0.36236000135255053],[122,51,64,0.36419344619304717],[122,51,65,0.3641036455217981],[122,51,66,0.3640070848931757],[122,51,67,0.36390554179241785],[122,51,68,0.3638007575554708],[122,51,69,0.3636944338695314],[122,51,70,0.36358822921459877],[122,51,71,0.3634837552460374],[122,51,72,0.3633825731181496],[122,51,73,0.36328618974876437],[122,51,74,0.3631960540248299],[122,51,75,0.3631135529490256],[122,51,76,0.3630400077273782],[122,51,77,0.36297666979789567],[122,51,78,0.36292471680020655],[122,51,79,0.3628852484862155],[122,52,64,0.3640426504516039],[122,52,65,0.3639906774474162],[122,52,66,0.36393158832622463],[122,52,67,0.36386715249877466],[122,52,68,0.36379910380632285],[122,52,69,0.3637291370462552],[122,52,70,0.3636589044390373],[122,52,71,0.3635900120364923],[122,52,72,0.36352401607141027],[122,52,73,0.363462419248488],[122,52,74,0.36340666697659735],[122,52,75,0.3633581435423864],[122,52,76,0.36331816822520824],[122,52,77,0.3632879913533824],[122,52,78,0.36326879030178405],[122,52,79,0.36326166543076555],[122,53,64,0.3637412673370387],[122,53,65,0.3637269112794122],[122,53,66,0.3637051203833253],[122,53,67,0.3636776555880038],[122,53,68,0.36364624281246516],[122,53,69,0.3636125695061442],[122,53,70,0.36357828114117724],[122,53,71,0.36354497764634275],[122,53,72,0.363514209782659],[122,53,73,0.36348747546064153],[122,53,74,0.3634662159992146],[122,53,75,0.3634518123262845],[122,53,76,0.36344558112096614],[122,53,77,0.3634487708974711],[122,53,78,0.36346255803064953],[122,53,79,0.36348804272319307],[122,54,64,0.3632883844045755],[122,54,65,0.363311418633923],[122,54,66,0.3633267371360169],[122,54,67,0.3633360919818902],[122,54,68,0.36334120074069554],[122,54,69,0.3633437430552555],[122,54,70,0.36334535715960975],[122,54,71,0.3633476363385519],[122,54,72,0.363352125329162],[122,54,73,0.3633603166643312],[122,54,74,0.3633736469582802],[122,54,75,0.36339349313407127],[122,54,76,0.3634211685931116],[122,54,77,0.3634579193266536],[122,54,78,0.3635049199692838],[122,54,79,0.3635632697944101],[122,55,64,0.3626831908285368],[122,55,65,0.362743372777666],[122,55,66,0.362795596313902],[122,55,67,0.36284160424405665],[122,55,68,0.36288310536002166],[122,55,69,0.36292177103915335],[122,55,70,0.3629592317869984],[122,55,71,0.3629970737223547],[122,55,72,0.36303683500467004],[122,55,73,0.36308000220377745],[122,55,74,0.3631280066119702],[122,55,75,0.3631822204984113],[122,55,76,0.3632439533058812],[122,55,77,0.36331444778986444],[122,55,78,0.36339487609997057],[122,55,79,0.3634863358036958],[122,56,64,0.3619249778921769],[122,56,65,0.36202204913924874],[122,56,66,0.36211095783707503],[122,56,67,0.36219343713314756],[122,56,68,0.3622711866152365],[122,56,69,0.36234586893650844],[122,56,70,0.36241910638333796],[122,56,71,0.36249247738580587],[122,56,72,0.3625675129708894],[122,56,73,0.36264569315833906],[122,56,74,0.36272844329924914],[122,56,75,0.36281713035731467],[122,56,76,0.36291305913277777],[122,56,77,0.3630174684290665],[122,56,78,0.3631315271621196],[122,56,79,0.3632563304124047],[122,57,64,0.361013139421996],[122,57,65,0.36114682576448753],[122,57,66,0.36127218429210284],[122,57,67,0.36139093809912803],[122,57,68,0.3615047771431903],[122,57,69,0.3616153548949964],[122,57,70,0.36172428493112707],[122,57,71,0.3618331374698782],[122,57,72,0.3619434358501546],[122,57,73,0.36205665295340983],[122,57,74,0.36217420756864205],[122,57,75,0.3622974607004341],[122,57,76,0.3624277118200467],[122,57,77,0.3625661950595606],[122,57,78,0.3627140753490688],[122,57,79,0.3628724444969207],[122,58,64,0.3599471721665679],[122,58,65,0.36011718371576373],[122,58,66,0.3602787413515868],[122,58,67,0.360433557722727],[122,58,68,0.3605833127317856],[122,58,69,0.3607296502095138],[122,58,70,0.360874174532476],[122,58,71,0.3610184471841287],[122,58,72,0.3611639832593202],[122,58,73,0.36131224791220395],[122,58,74,0.3614646527475784],[122,58,75,0.3616225521556383],[122,58,76,0.3617872395901465],[122,58,77,0.3619599437900265],[122,58,78,0.3621418249443693],[122,58,79,0.3623339708008645],[122,59,64,0.3587266761198742],[122,59,65,0.358932707415412],[122,59,66,0.35913019813730185],[122,59,67,0.35932085009801806],[122,59,68,0.35950633272169097],[122,59,69,0.35968827974271356],[122,59,70,0.3598682858481495],[122,59,71,0.36004790326393454],[122,59,72,0.36022863828487417],[122,59,73,0.36041194774843044],[122,59,74,0.3605992354523146],[122,59,75,0.36079184851586454],[122,59,76,0.36099107368522154],[122,59,77,0.36119813358230174],[122,59,78,0.3614141828975615],[122,59,79,0.3616403045265606],[122,60,64,0.3573513547891097],[122,60,65,0.35759308493310693],[122,60,66,0.3578262275268767],[122,60,67,0.3580524731581056],[122,60,68,0.3582734803507415],[122,60,69,0.3584908722878254],[122,60,70,0.35870623347851177],[122,60,71,0.358921106369266],[122,60,72,0.3591369878992412],[122,60,73,0.35935532599982933],[122,60,74,0.35957751603840304],[122,60,75,0.35980489720622644],[122,60,76,0.3600387488505474],[122,60,77,0.3602802867508724],[122,60,78,0.36053065933941686],[122,60,79,0.36079094386573896],[122,61,64,0.35582101540701055],[122,61,65,0.35609810821729715],[122,61,66,0.3563666064040668],[122,61,67,0.3566281889439653],[122,61,68,0.3568845030410722],[122,61,69,0.3571371608738073],[122,61,70,0.35738773628641907],[122,61,71,0.3576377614250402],[122,61,72,0.357888723318318],[122,61,73,0.358142060402607],[122,61,74,0.35839915899174823],[122,61,75,0.35866134969140684],[122,61,76,0.3589299037579847],[122,61,77,0.35920602940210666],[122,61,78,0.3594908680366755],[122,61,79,0.35978549046950165],[122,62,64,0.35413556908869204],[122,62,65,0.354447673270674],[122,62,66,0.3547512158526044],[122,62,67,0.35504786381642284],[122,62,68,0.3553392526289717],[122,62,69,0.35562698301281614],[122,62,70,0.3559126176620456],[122,62,71,0.35619767790304346],[122,62,72,0.35648364030022855],[122,62,73,0.3567719332067618],[122,62,74,0.3570639332602379],[122,62,75,0.3573609618233335],[122,62,76,0.3576642813694333],[122,62,77,0.35797509181322684],[122,62,78,0.35829452678627455],[122,62,79,0.35862364985754885],[122,63,64,0.3522950309329418],[122,63,65,0.35264178026962356],[122,63,66,0.3529800412935778],[122,63,67,0.35331146861122603],[122,63,68,0.3536376855374094],[122,63,69,0.3539602808899499],[122,63,70,0.35428080572960235],[122,63,71,0.3546007700453793],[122,63,72,0.35492163938525867],[122,63,73,0.3552448314322588],[122,63,74,0.35557171252591135],[122,63,75,0.3559035941290939],[122,63,76,0.3562417292402487],[122,63,77,0.35658730875098055],[122,63,78,0.35694145774902963],[122,63,79,0.357305231766628],[122,64,64,0.3502995200680583],[122,64,65,0.35068053362774676],[122,64,66,0.35105317256642105],[122,64,67,0.3514190787372888],[122,64,68,0.3517798628913143],[122,64,69,0.35213710149534105],[122,64,70,0.35249233349601783],[122,64,71,0.35284705702951547],[122,64,72,0.35320272607703873],[122,64,73,0.3535607470661208],[122,64,74,0.35392247541773103],[122,64,75,0.3542892120391562],[122,64,76,0.3546621997626826],[122,64,77,0.3550426197300726],[122,64,78,0.3554315877228299],[122,64,79,0.3558301504382644],[122,65,64,0.3481492596421586],[122,65,65,0.3485641420033775],[122,65,66,0.3489708039534469],[122,65,67,0.34937087421804],[122,65,68,0.3497659505755405],[122,65,69,0.35015759669853297],[122,65,70,0.3505473389415229],[122,65,71,0.3509366630748658],[122,65,72,0.3513270109649165],[122,65,73,0.35171977720037956],[122,65,74,0.35211630566489915],[122,65,75,0.35251788605584033],[122,65,76,0.3529257503492954],[122,65,77,0.3533410692113058],[122,65,78,0.3537649483552954],[122,65,79,0.35419842484572395],[122,66,64,0.3458445767580224],[122,66,65,0.3462929182511601],[122,66,66,0.3467332341479818],[122,66,67,0.34716713967593804],[122,66,68,0.3475962192355764],[122,66,69,0.3480220232652019],[122,66,70,0.3484460650521944],[122,66,71,0.34886981749096735],[122,66,72,0.34929470978757327],[122,66,73,0.34972212411093956],[122,66,74,0.3501533921907744],[122,66,75,0.3505897918620916],[122,66,76,0.3510325435563908],[122,66,77,0.35148280673948074],[122,66,78,0.3519416762959445],[122,66,79,0.35241017886025394],[122,67,64,0.3433859023523736],[122,67,65,0.34386727931759126],[122,67,66,0.34434086616601145],[122,67,67,0.34480826426005695],[122,67,68,0.3452710442209096],[122,67,69,0.34573074281612937],[122,67,70,0.34618885979436825],[122,67,71,0.34664685466716155],[122,67,72,0.34710614343779983],[122,67,73,0.34756809527727084],[122,67,74,0.3480340291473045],[122,67,75,0.3485052103704749],[122,67,76,0.3489828471473919],[122,67,77,0.34946808702097387],[122,67,78,0.3499620132877971],[122,67,79,0.35046564135653036],[122,68,64,0.3407737710197134],[122,68,65,0.3412877460806398],[122,68,66,0.34179420720144604],[122,68,67,0.3422947415168557],[122,68,68,0.342790905471152],[122,68,69,0.3432842217285368],[122,68,70,0.3437761760310296],[122,68,71,0.34426821400388397],[122,68,72,0.34476173790853043],[122,68,73,0.3452581033430293],[122,68,74,0.345758615890073],[122,68,75,0.3462645277124853],[122,68,76,0.34677703409625416],[122,68,77,0.34729726994108956],[122,68,78,0.3478263061984993],[122,68,79,0.3483651462573945],[122,69,64,0.33800882078066147],[122,69,65,0.3385549431333982],[122,69,66,0.3390938684249624],[122,69,67,0.3396271692040853],[122,69,68,0.3401563873448843],[122,69,69,0.3406830309797358],[122,69,70,0.34120857138013494],[122,69,71,0.34173443978552404],[122,69,72,0.34226202418009827],[122,69,73,0.3427926660175674],[122,69,74,0.34332765689392164],[122,69,75,0.34386823516813825],[122,69,76,0.34441558253087734],[122,69,77,0.34497082052114747],[122,69,78,0.3455350069909414],[122,69,79,0.34610913251785136],[122,70,64,0.3350917927947271],[122,70,65,0.33566959851169254],[122,70,66,0.33624056472634906],[122,70,67,0.3368062490477619],[122,70,68,0.33736817839114885],[122,70,69,0.33792784593302605],[122,70,70,0.3384867080147992],[122,70,71,0.33904618099478157],[122,70,72,0.3396076380486418],[122,70,73,0.3401724059182664],[122,70,74,0.34074176160908165],[122,70,75,0.3413169290357742],[122,70,76,0.34189907561645355],[122,70,77,0.34248930881524364],[122,70,78,0.34308867263330023],[122,70,79,0.34369814404826243],[122,71,64,0.33202353101764487],[122,71,65,0.3326325433657802],[122,71,66,0.33323511440048115],[122,71,67,0.3338327864423334],[122,71,68,0.3344270710637135],[122,71,69,0.3350194460659621],[122,71,70,0.3356113524054691],[122,71,71,0.33620419106864385],[122,71,72,0.336799319895782],[122,71,73,0.3373980503538061],[122,71,74,0.3380016442579311],[122,71,75,0.3386113104421895],[122,71,76,0.3392282013788608],[122,71,77,0.3398534097467939],[122,71,78,0.34048796494861666],[122,71,79,0.34113282957684354],[122,72,64,0.3288049818032176],[122,72,65,0.32944471157608124],[122,72,66,0.33007843877687515],[122,72,67,0.33070769009398476],[122,72,68,0.3313339613780556],[122,72,69,0.33195871464094084],[122,72,70,0.3325833750040301],[122,72,71,0.33320932759593147],[122,72,72,0.33383791439952],[122,72,73,0.3344704310483273],[122,72,74,0.3351081235723276],[122,72,75,0.3357521850930486],[122,72,76,0.33640375246805876],[122,72,77,0.33706390288481486],[122,72,78,0.33773365040386505],[122,72,79,0.3384139424514207],[122,73,64,0.3254371934495769],[122,73,65,0.32610713931285473],[122,73,66,0.32677156179273215],[122,73,67,0.3274319716069973],[122,73,68,0.3280898485109819],[122,73,69,0.32874663831802087],[122,73,70,0.32940374986976606],[122,73,71,0.3300625519563308],[122,73,72,0.33072437018627454],[122,73,73,0.33139048380640235],[122,73,74,0.33206212247143835],[122,73,75,0.3327404629634969],[122,73,76,0.33342662586140637],[122,73,77,0.334121672159866],[122,73,78,0.33482659983843643],[122,73,79,0.33554234038037156],[122,74,64,0.3219213156900217],[122,74,65,0.3226209645399756],[122,74,66,0.3233156095096246],[122,74,67,0.32400674501331245],[122,74,68,0.32469583434303223],[122,74,69,0.3253843067101252],[122,74,70,0.32607355423731577],[122,74,71,0.3267649289010579],[122,74,72,0.32745973942420153],[122,74,73,0.3281592481189559],[122,74,74,0.32886466768020695],[122,74,75,0.3295771579291138],[122,74,76,0.33029782250703743],[122,74,77,0.3310277055197851],[122,74,78,0.3317677881321682],[122,74,79,0.3325189851128815],[122,75,64,0.31825859912836196],[122,75,65,0.31898742646274497],[122,75,66,0.31971180957376133],[122,75,67,0.32043322624523596],[122,75,68,0.321153122943603],[122,75,69,0.3218729118805627],[122,75,70,0.32259396802656576],[122,75,71,0.32331762607509135],[122,75,72,0.32404517735773525],[122,75,73,0.3247778667100779],[122,75,74,0.3255168892883977],[122,75,75,0.3262633873371452],[122,75,76,0.3270184469072391],[122,75,77,0.3277830945251637],[122,75,78,0.32855829381286555],[122,75,79,0.32934494205846],[122,76,64,0.31445039461867],[122,76,65,0.3152078649196339],[122,76,66,0.3159614906197299],[122,76,67,0.31671273255118254],[122,76,68,0.3174630199986932],[122,76,69,0.318213747782771],[122,76,70,0.31896627329438076],[122,76,71,0.31972191348087986],[122,76,72,0.3204819417832552],[122,76,73,0.32124758502463224],[122,76,74,0.3220200202501234],[122,76,75,0.32280037151792634],[122,76,76,0.32358970664173947],[122,76,77,0.3243890338844684],[122,76,78,0.3251992986032248],[122,76,79,0.32602137984562785],[122,77,64,0.31049815258962077],[122,77,65,0.31128371971813895],[122,77,66,0.3120660816178955],[122,77,67,0.312846681854638],[122,77,68,0.3136269321814489],[122,77,69,0.3144082096424541],[122,77,70,0.3151918536283458],[122,77,71,0.3159791628836932],[122,77,72,0.3167713924660497],[122,77,73,0.3175697506568298],[122,77,74,0.31837539582402286],[122,77,75,0.3191894332366554],[122,77,76,0.3200129118310663],[122,77,77,0.3208468209289707],[122,77,78,0.32169208690731566],[122,77,79,0.3225495698199339],[122,78,64,0.30640342231333684],[122,78,65,0.3072165299146713],[122,78,66,0.3080271111653755],[122,78,67,0.30883659205626046],[122,78,68,0.309646366465425],[122,78,69,0.31045779328203815],[122,78,70,0.3112721934824419],[122,78,71,0.31209084715854196],[122,78,72,0.3129149904984986],[122,78,73,0.3137458127196898],[122,78,74,0.3145844529540148],[122,78,75,0.3154319970854479],[122,78,76,0.3162894745399063],[122,78,77,0.3171578550274139],[122,78,78,0.3180380452365547],[122,78,79,0.3189308854812293],[122,79,64,0.3021678511186308],[122,79,65,0.3030079330383676],[122,79,66,0.3038462067204822],[122,79,67,0.3046840802790123],[122,79,68,0.30552292938045955],[122,79,69,0.306364094387338],[122,79,70,0.30720887745455067],[122,79,71,0.30805853957856055],[122,79,72,0.30891429759937217],[122,79,73,0.30977732115528955],[122,79,74,0.3106487295905258],[122,79,75,0.3115295888155677],[122,79,76,0.31242090812036405],[122,79,77,0.31332363694031673],[122,79,78,0.31423866157506847],[122,79,79,0.31516680186010354],[122,80,64,0.29779318354884693],[122,80,65,0.29865966425902524],[122,80,66,0.2995250937808325],[122,80,67,0.30039086205651966],[122,80,68,0.3012583262113569],[122,80,69,0.30212880771663],[122,80,70,0.3030035895059794],[122,80,71,0.30388391304504536],[122,80,72,0.30477097535443665],[122,80,73,0.3056659259859868],[122,80,74,0.306569863952377],[122,80,75,0.30748383461002327],[122,80,76,0.30840882649530343],[122,80,77,0.3093457681140956],[122,80,78,0.3102955246846293],[122,80,79,0.31125889483365976],[122,81,64,0.2932812604642072],[122,81,65,0.29417355549906904],[122,81,66,0.2950655950050327],[122,81,67,0.2959587504645712],[122,81,68,0.2968543601392882],[122,81,69,0.29775372625204094],[122,81,70,0.2986581121229208],[122,81,71,0.2995687392590606],[122,81,72,0.30048678439827914],[122,81,73,0.30141337650653255],[122,81,74,0.302349593729248],[122,81,75,0.30329646029644136],[122,81,76,0.30425494338168757],[122,81,77,0.3052259499149235],[122,81,78,0.30621032334907894],[122,81,79,0.30720884038054747],[122,82,64,0.2886340180885455],[122,82,65,0.28955153448943055],[122,82,66,0.2904696292778217],[122,82,67,0.29138965519563625],[122,82,68,0.29231293132579506],[122,82,69,0.2932407402931394],[122,82,70,0.29417432541973104],[122,82,71,0.2951148878344977],[122,82,72,0.29606358353723894],[122,82,73,0.2970215204169586],[122,82,74,0.2979897552246046],[122,82,75,0.2989692905001095],[122,82,76,0.2999610714538098],[122,82,77,0.3009659828022161],[122,82,78,0.30198484555813404],[122,82,79,0.3030184137751477],[122,83,64,0.2838534870006493],[122,83,65,0.28479562376956163],[122,83,66,0.2857392107188905],[122,83,67,0.28668558157662294],[122,83,68,0.28763603593960974],[122,83,69,0.2885918364929423],[122,83,70,0.2895542061842385],[122,83,71,0.2905243253527996],[122,83,72,0.2915033288136538],[122,83,73,0.29249230289645145],[122,83,74,0.2934922824392946],[122,83,75,0.29450424773739137],[122,83,76,0.295529121446616],[122,83,77,0.2965677654419458],[122,83,78,0.29762097763077255],[122,83,79,0.2986894887211057],[122,84,64,0.27894179107010864],[122,84,65,0.27990793963147986],[122,84,66,0.28087644763527886],[122,84,67,0.2818486295297734],[122,84,68,0.28282576512619634],[122,84,69,0.2838090968362396],[122,84,70,0.28479982686498795],[122,84,71,0.28579911435925376],[122,84,72,0.2868080725113289],[122,84,73,0.2878277656181153],[122,84,74,0.28885920609572346],[122,84,75,0.2899033514494228],[122,84,76,0.2909611011990284],[122,84,77,0.29203329375969395],[122,84,78,0.29312070327811035],[122,84,79,0.2942240364241239],[122,85,64,0.27390114633754037],[122,85,65,0.2748906910077157],[122,85,66,0.27588354141721716],[122,85,67,0.2768809924765697],[122,85,68,0.2778843039198815],[122,85,69,0.27889469756010815],[122,85,70,0.2799133545002904],[122,85,71,0.28094141230072733],[122,85,72,0.2819799621020982],[122,85,73,0.28303004570449897],[122,85,74,0.28409265260247885],[122,85,75,0.28516871697596324],[122,85,76,0.28625911463714493],[122,85,77,0.2873646599333176],[122,85,78,0.288486102605647],[122,85,79,0.28962412460389464],[122,86,64,0.2687338598394312],[122,86,65,0.2697461783034043],[122,86,66,0.27076278537765774],[122,86,67,0.27178495618488857],[122,86,68,0.2728139300988144],[122,86,69,0.2738509080168532],[122,86,70,0.27489704958931754],[122,86,71,0.2759534704050778],[122,86,72,0.27702123913371457],[122,86,73,0.27810137462412],[122,86,74,0.27919484295963914],[122,86,75,0.2803025544696324],[122,86,76,0.28142536069754553],[122,86,77,0.2825640513254574],[122,86,78,0.28371935105510393],[122,86,79,0.28489191644539164],[122,87,64,0.2634423283774885],[122,87,65,0.26447679217240994],[122,87,66,0.26551656353538095],[122,87,67,0.26656289755929496],[122,87,68,0.26761701298264545],[122,87,69,0.26868008947926714],[122,87,70,0.26975326490512763],[122,87,71,0.27083763250213266],[122,87,72,0.2719342380589593],[122,87,73,0.2730440770288776],[122,87,74,0.2741680916046564],[122,87,75,0.27530716775042663],[122,87,76,0.2764621321905962],[122,87,77,0.27763374935578083],[122,87,78,0.278822718285753],[122,87,79,0.28002966948942165],[122,88,64,0.25802903723235493],[122,88,65,0.25908501223734065],[122,88,66,0.2601473493415386],[122,88,67,0.26121728337433386],[122,88,68,0.26229601217278686],[122,88,69,0.26338469388806796],[122,88,70,0.2644844442494909],[122,88,71,0.26559633378610115],[122,88,72,0.2667213850058364],[122,88,73,0.26786056953222037],[122,88,74,0.2690148051986822],[122,88,75,0.27018495310038115],[122,88,76,0.2713718146036215],[122,88,77,0.27257612831283196],[122,88,78,0.27379856699510396],[122,88,79,0.2750397344623057],[122,89,64,0.25249655882197],[122,89,65,0.25357340575373527],[122,89,66,0.25465770434991],[122,89,67,0.25575066895109966],[122,89,68,0.2568534762355261],[122,89,69,0.2579672625417904],[122,89,70,0.25909312114978145],[122,89,71,0.2602320995196863],[122,89,72,0.2613851964891203],[122,89,73,0.26255335942833447],[122,89,74,0.26373748135360064],[122,89,75,0.26493839799864194],[122,89,76,0.26615688484420597],[122,89,77,0.267393654105746],[122,89,78,0.26864935167920845],[122,89,79,0.26992455404494436],[122,90,64,0.24684755130434097],[122,90,65,0.24794462621818586],[122,90,66,0.2490502768306407],[122,90,67,0.25016569677684675],[122,90,68,0.25129204132776595],[122,90,69,0.2524304247289011],[122,90,70,0.25358191749771064],[122,90,71,0.25474754367967456],[122,90,72,0.25592827806302965],[122,90,73,0.25712504335213165],[122,90,74,0.2583387072995452],[122,90,75,0.25957007979672764],[122,90,76,0.26081990992340603],[122,90,77,0.26208888295561095],[122,90,78,0.2633776173323665],[122,90,79,0.2646866615810541],[122,91,64,0.24108475712490904],[122,91,65,0.24220141192057995],[122,91,66,0.2433278003276439],[122,91,67,0.24446509506782746],[122,91,68,0.24561442976556863],[122,91,69,0.2467768963023168],[122,91,70,0.24795354213008008],[122,91,71,0.24914536754417688],[122,91,72,0.2503533229152082],[122,91,73,0.25157830588020824],[122,91,74,0.25282115849307596],[122,91,75,0.2540826643341525],[122,91,76,0.255363545579043],[122,91,77,0.2566644600266478],[122,91,78,0.2579859980864027],[122,91,79,0.2593286797247437],[122,92,64,0.23521100150825358],[122,92,65,0.23634658444020795],[122,92,66,0.23749309215940967],[122,92,67,0.23865167627510073],[122,92,68,0.23982344853525436],[122,92,69,0.24100947819607535],[122,92,70,0.24221078935130355],[122,92,71,0.2434283582212757],[122,92,72,0.24466311040176147],[122,92,73,0.24591591807253335],[122,92,74,0.24718759716577168],[122,92,75,0.24847890449416998],[122,92,76,0.24979053483883779],[122,92,77,0.25112311799696985],[122,92,78,0.25247721578927634],[122,92,79,0.253853319027193],[122,93,64,0.22922919089443872],[122,93,65,0.23038304708603835],[122,93,66,0.23154905186352862],[122,93,67,0.23272833553361524],[122,93,68,0.23392198774735176],[122,93,69,0.2351310548844575],[122,93,70,0.23635653739799692],[122,93,71,0.23759938711937137],[122,93,72,0.23886050452364488],[122,93,73,0.24014073595515628],[122,93,74,0.24144087081352733],[122,93,75,0.242761638699924],[122,93,76,0.2441037065236739],[122,93,77,0.24546767556920573],[122,93,78,0.24685407852330654],[122,93,79,0.2482633764627159],[122,94,64,0.22314231131986492],[122,94,65,0.2243137832810224],[122,94,66,0.22549865958478688],[122,94,67,0.22669804905442778],[122,94,68,0.22791301903326577],[122,94,69,0.2291445927834243],[122,94,70,0.23039374684549813],[122,94,71,0.23166140835909538],[122,94,72,0.23294845234427053],[122,94,73,0.2342556989438021],[122,94,74,0.23558391062642609],[122,94,75,0.2369337893508791],[122,94,76,0.23830597369085788],[122,94,77,0.2397010359208575],[122,94,78,0.2411194790628871],[122,94,79,0.24256173389408064],[122,95,64,0.2169534267424661],[122,95,65,0.21814185489027146],[122,95,66,0.21934497440667908],[122,95,67,0.22056387245990097],[122,95,68,0.22179959388450612],[122,95,69,0.22305313859421347],[122,95,70,0.22432545895616574],[122,95,71,0.22561745712663467],[122,95,72,0.22692998234817785],[122,95,73,0.2282638282082004],[122,95,74,0.2296197298590319],[122,95,75,0.23099836119937478],[122,95,76,0.23240033201722649],[122,95,77,0.2338261850942429],[122,95,78,0.23527639327153793],[122,95,79,0.23675135647693885],[122,96,64,0.21066567731155636],[122,96,65,0.21187040049340905],[122,96,66,0.21309113262663915],[122,96,67,0.21432893906218298],[122,96,68,0.21558484193477523],[122,96,69,0.21685981758939432],[122,96,70,0.21815479396974985],[122,96,71,0.2194706479687636],[122,96,72,0.22080820274106322],[122,96,73,0.22216822497744193],[122,96,74,0.22355142214139667],[122,96,75,0.22495843966759693],[122,96,76,0.2263898581223902],[122,96,77,0.22784619032631015],[122,96,78,0.229327878438582],[122,96,79,0.23083529100364547],[122,97,64,0.20428227758218273],[122,97,65,0.20550263360095436],[122,97,66,0.20674034597484714],[122,97,67,0.20799645808482237],[122,97,68,0.2092719691847753],[122,97,69,0.21056783184123962],[122,97,70,0.21188494933569735],[122,97,71,0.2132241730294433],[122,97,72,0.21458629969102772],[122,97,73,0.21597206878622388],[122,97,74,0.21738215973064118],[122,97,75,0.2188171891048279],[122,97,76,0.22027770783197548],[122,97,77,0.22176419831818805],[122,97,78,0.2232770715553104],[122,97,79,0.224816664186339],[122,98,64,0.19780651467381422],[122,98,65,0.19904184081456844],[122,98,66,0.20029589977644335],[122,98,67,0.20156971282735547],[122,98,68,0.20286425616956555],[122,98,69,0.20418045839224708],[122,98,70,0.20551919788722328],[122,98,71,0.2068813002278237],[122,98,72,0.20826753551088156],[122,98,73,0.20967861566182022],[122,98,74,0.21111519170294918],[122,98,75,0.21257785098481252],[122,98,76,0.21406711438070475],[122,98,77,0.21558343344431152],[122,98,78,0.21712718753047777],[122,98,79,0.21869868087911803],[122,99,64,0.19124174637369012],[122,99,65,0.19249137993148446],[122,99,66,0.19376115105746877],[122,99,67,0.19505205877318077],[122,99,68,0.19636505606878896],[122,99,69,0.19770104736812788],[122,99,70,0.19906088595746618],[122,99,71,0.20044537137796092],[122,99,72,0.20185524678181455],[122,99,73,0.2032911962520873],[122,99,74,0.2047538420862825],[122,99,75,0.20624374204355012],[122,99,76,0.2077613865556201],[122,99,77,0.20930719590142782],[122,99,78,0.21088151734542865],[122,99,79,0.2124846222396216],[122,100,64,0.18459139918467177],[122,100,65,0.18585467799296812],[122,100,66,0.18713952659438127],[122,100,67,0.18844692164057192],[122,100,68,0.18977779275961698],[122,100,69,0.19113302003311178],[122,100,70,0.19251343143757554],[122,100,71,0.19391980025010275],[122,100,72,0.1953528424182865],[122,100,73,0.19681321389435874],[122,100,74,0.19830150793367252],[122,100,75,0.19981825235736317],[122,100,76,0.2013639067793075],[122,100,77,0.20293885979733844],[122,100,78,0.204543426148715],[122,100,79,0.20617784382986526],[122,101,64,0.17785896631742587],[122,101,65,0.1791352292766345],[122,101,66,0.18043452090697182],[122,101,67,0.18175779537665337],[122,101,68,0.18310595881223646],[122,101,69,0.18447986678739486],[122,101,70,0.18588032177655844],[122,101,71,0.1873080705733678],[122,101,72,0.18876380167396295],[122,101,73,0.19024814262505685],[122,101,74,0.1917616573369142],[122,101,75,0.19330484336107645],[122,101,76,0.19487812913294877],[122,101,77,0.19648187117920823],[122,101,78,0.19811635129003274],[122,101,79,0.19978177365616867],[122,102,64,0.17104800562727185],[122,102,65,0.17233659323295536],[122,102,66,0.1736496941950154],[122,102,67,0.17498824009467118],[122,102,68,0.17635311342821552],[122,102,69,0.1777451451070613],[122,102,70,0.17916511192321816],[122,102,71,0.18061373398014963],[122,102,72,0.18209167208902954],[122,102,73,0.18359952513034827],[122,102,74,0.18513782738099133],[122,102,75,0.1867070458066279],[122,102,76,0.18830757731952752],[122,102,77,0.18993974600176322],[122,102,78,0.19160380029380103],[122,102,79,0.1932999101484938],[122,103,64,0.16416213749553565],[122,103,65,0.16546239236579657],[122,103,66,0.16678867021849553],[122,103,67,0.16814187995440233],[122,103,68,0.16952288032158402],[122,103,69,0.17093247742632134],[122,103,70,0.17237142221002322],[122,103,71,0.17384040789208643],[122,103,72,0.17534006737872082],[122,103,73,0.17687097063768692],[122,103,74,0.17843362203907515],[122,103,75,0.18002845766195769],[122,103,76,0.18165584256703238],[122,103,77,0.18331606803522332],[122,103,78,0.18500934877222824],[122,103,79,0.186735820079038],[122,104,64,0.15720504265522434],[122,104,65,0.1585163100568065],[122,104,66,0.1598551341212232],[122,104,67,0.16122240098551965],[122,104,68,0.16261894554245393],[122,104,69,0.1640455489618861],[122,104,70,0.16550293617873113],[122,104,71,0.16699177334741994],[122,104,72,0.16851266526289266],[122,104,73,0.17006615274806852],[122,104,74,0.17165271000792265],[122,104,75,0.17327274194999903],[122,104,76,0.17492658147148393],[122,104,77,0.17661448671279645],[122,104,78,0.17833663827769392],[122,104,79,0.1800931364199138],[122,105,64,0.15018045996137602],[122,105,65,0.15150208833399975],[122,105,66,0.152852830198198],[122,105,67,0.15423354885426],[122,105,68,0.15564505524352035],[122,105,69,0.15708810547982244],[122,105,70,0.15856339834810873],[122,105,71,0.16007157277008405],[122,105,72,0.16161320523697592],[122,105,73,0.16318880720933515],[122,105,74,0.16479882248400818],[122,105,75,0.16644362452810996],[122,105,76,0.1681235137801212],[122,105,77,0.16983871491806746],[122,105,78,0.1715893740947777],[122,105,79,0.17337555614024286],[122,106,64,0.1430921841059108],[122,106,65,0.14442352558437188],[122,106,66,0.14578555960654044],[122,106,67,0.14717912657322713],[122,106,68,0.1486050133892804],[122,106,69,0.15006395100472314],[122,106,70,0.15155661192358333],[122,106,71,0.15308360768035956],[122,106,72,0.1546454862841467],[122,106,73,0.15624272963036623],[122,106,74,0.15787575088023187],[122,106,75,0.15954489180777987],[122,106,76,0.16125042011458407],[122,106,77,0.16299252671212128],[122,106,78,0.16477132297177532],[122,106,79,0.16658683794250762],[122,107,64,0.13594406327680164],[122,107,65,0.137284474210358],[122,107,66,0.13865717801981492],[122,107,67,0.14006299215414897],[122,107,68,0.14150267940778438],[122,107,69,0.14297694547100898],[122,107,70,0.14448643644864367],[122,107,71,0.14603173634691224],[122,107,72,0.14761336452853302],[122,107,73,0.14923177313597563],[122,107,74,0.15088734448301944],[122,107,75,0.1525803884144346],[122,107,76,0.15431113963391557],[122,107,77,0.1560797550002222],[122,107,78,0.1578863107915252],[122,107,79,0.15973079993798095],[122,108,64,0.12873999676192277],[122,108,65,0.13008883823049477],[122,108,66,0.13147159322609925],[122,108,67,0.13288905620393987],[122,108,68,0.13434196578527535],[122,108,69,0.13583100231671674],[122,108,70,0.1373567853983414],[122,108,71,0.13891987138056705],[122,108,72,0.14052075082980947],[122,108,73,0.14215984596286574],[122,108,74,0.143837508050163],[122,108,75,0.14555401478768698],[122,108,76,0.1473095676377278],[122,108,77,0.14910428913839324],[122,108,78,0.15093822018188724],[122,108,79,0.15281131726157915],[122,109,64,0.12148393249740108],[122,109,65,0.1228405708241112],[122,109,66,0.12423276266962668],[122,109,67,0.12566127946390165],[122,109,68,0.127126835603544],[122,109,69,0.12863008601960213],[122,109,70,0.13017162371472563],[122,109,71,0.13175197726964732],[122,109,72,0.1333716083190079],[122,109,73,0.13503090899646708],[122,109,74,0.13673019934923764],[122,109,75,0.13846972472186247],[122,109,76,0.14024965310936588],[122,109,77,0.14207007247973152],[122,109,78,0.14393098806570948],[122,109,79,0.14583231962596954],[122,110,64,0.11417986456028173],[122,110,65,0.1155436718198588],[122,110,66,0.11694469093581195],[122,110,67,0.11838367029186758],[122,110,68,0.11986130001981143],[122,110,69,0.1213782095753686],[122,110,70,0.12293496528401904],[122,110,71,0.12453206785669191],[122,110,72,0.1261699498753599],[122,110,73,0.12784897324847755],[122,110,74,0.12956942663640303],[122,110,75,0.1313315228466186],[122,110,76,0.13313539619888265],[122,110,77,0.1349810998602708],[122,110,78,0.1368686031500983],[122,110,79,0.13879778881475208],[122,111,64,0.10683183060587492],[122,111,65,0.10820218512845076],[122,111,66,0.10961142718002947],[122,111,67,0.11106028208766489],[122,111,68,0.11254941568950727],[122,111,69,0.11407943191838915],[122,111,70,0.1156508703559036],[122,111,71,0.11726420375691532],[122,111,72,0.1189198355445309],[122,111,73,0.12061809727546602],[122,111,74,0.12235924607595505],[122,111,75,0.12414346204801302],[122,111,76,0.1259708456461875],[122,111,77,0.12784141502475366],[122,111,78,0.12975510335534873],[122,111,79,0.13171175611506997],[122,112,64,0.09944390924960728],[122,112,65,0.10082019611942783],[122,112,66,0.10223706249996345],[122,112,67,0.1036952106617064],[122,112,68,0.105195282131759],[122,112,69,0.10673785528474],[122,112,70,0.108323442904734],[122,112,71,0.10995248971823002],[122,112,72,0.11162536989807142],[122,112,73,0.11334238453835888],[122,112,74,0.11510375910044651],[122,112,75,0.11690964082984878],[122,112,76,0.11876009614418676],[122,112,77,0.12065510799213491],[122,112,78,0.1225945731833587],[122,112,79,0.1245782996894722],[122,113,64,0.09202021739318256],[122,113,65,0.09340182894176235],[122,113,66,0.09482572725133981],[122,113,67,0.0962925915465298],[122,113,68,0.09780303903740989],[122,113,69,0.09935762251735891],[122,113,70,0.10095682793249405],[122,113,71,0.10260107192264523],[122,113,72,0.1042906993338959],[122,113,73,0.10602598070262448],[122,113,74,0.10780710971119528],[122,113,75,0.10963420061510759],[122,113,76,0.11150728564173745],[122,113,77,0.11342631236063211],[122,113,78,0.11539114102534642],[122,113,79,0.11740154188685004],[122,114,64,0.08456490749544998],[122,114,65,0.08595124378869401],[122,114,66,0.08738158830743231],[122,114,67,0.08885659725167372],[122,114,68,0.09037686351995261],[122,114,69,0.09194291431371993],[122,114,70,0.09355520871388295],[122,114,71,0.09521413522943134],[122,114,72,0.0969200093181769],[122,114,73,0.0986730708795448],[122,114,74,0.10047348171956327],[122,114,75,0.10232132298785812],[122,114,76,0.10421659258679328],[122,114,77,0.10615920255270822],[122,114,78,0.10814897640924975],[122,114,79,0.1101856464928227],[122,115,64,0.07708216478764679],[122,115,65,0.07847263410646593],[122,115,66,0.07990884626201594],[122,115,67,0.08139143446156061],[122,115,68,0.08292096730905119],[122,115,69,0.08449794641569297],[122,115,70,0.08612280398320676],[122,115,71,0.08779590035972229],[122,115,72,0.08951752156833248],[122,115,73,0.0912878768082458],[122,115,74,0.09310709592868072],[122,115,75,0.09497522687531468],[122,115,76,0.09689223310942285],[122,115,77,0.09885799099966086],[122,115,78,0.100872287186488],[122,115,79,0.1029348159192554],[122,116,64,0.06957620443326806],[122,116,65,0.07097022374721484],[122,116,66,0.07241173257601541],[122,116,67,0.07390134117663882],[122,116,68,0.07543959388690269],[122,116,69,0.07702696674184362],[122,116,70,0.07866386506332212],[122,116,71,0.08035062102280494],[122,116,72,0.08208749117735076],[122,116,73,0.08387465397873606],[122,116,74,0.08571220725586787],[122,116,75,0.08760016567029444],[122,116,76,0.08953845814494643],[122,116,77,0.09152692526606815],[122,116,78,0.09356531665833046],[122,116,79,0.09565328833315312],[122,117,64,0.062051268632221435],[122,117,65,0.06344826406566811],[122,117,66,0.06489450666750751],[122,117,67,0.06639058379744062],[122,117,68,0.06793701556709525],[122,117,69,0.06953425246182615],[122,117,70,0.07118267293629366],[122,117,71,0.0728825809837575],[122,117,72,0.07463420367911439],[122,117,73,0.07643768869561496],[122,117,74,0.07829310179541099],[122,117,75,0.08020042429373453],[122,117,76,0.08215955049685308],[122,117,77,0.08417028511375196],[122,117,78,0.08623234064153862],[122,117,79,0.08834533472459771],[122,118,64,0.0545116236696741],[122,118,65,0.055911030960064445],[122,118,66,0.057361452945488],[122,118,67,0.05886345415196803],[122,118,68,0.060417530516373],[122,118,69,0.06202410701328309],[122,118,70,0.06368353525617199],[122,118,71,0.06539609107284045],[122,118,72,0.0671619720551313],[122,118,73,0.06898129508285761],[122,118,74,0.07085409382210062],[122,118,75,0.07278031619767417],[122,118,76,0.07475982183990282],[122,118,77,0.07679237950566259],[122,118,78,0.07887766447368116],[122,118,79,0.08101525591412445],[122,119,64,0.04696155690939846],[122,119,65,0.04836282185709384],[122,119,66,0.049816877787203784],[122,119,67,0.05132426646620375],[122,119,68,0.052885459719109185],[122,119,69,0.054500857061050845],[122,119,70,0.05617078330369457],[122,119,71,0.057895486136447294],[122,119,72,0.05967513368247618],[122,119,73,0.0615098120294757],[122,119,74,0.0633995227353345],[122,119,75,0.06534418030850536],[122,119,76,0.06734360966321823],[122,119,77,0.06939754354948974],[122,119,78,0.07150561995792715],[122,119,79,0.07366737949934887],[122,120,64,0.039405373731426],[122,120,65,0.04080795264067366],[122,120,66,0.0422651064588665],[122,120,67,0.04377735427756696],[122,120,68,0.045345143884302],[122,120,69,0.046968849398487056],[122,120,70,0.04864876888272612],[122,120,71,0.05038512192942657],[122,120,72,0.05217804722275615],[122,120,73,0.054027600075875815],[122,120,74,0.055933749943604116],[122,120,75,0.05789637791031066],[122,120,76,0.05991527415318215],[122,120,77,0.06199013538081727],[122,120,78,0.06412056224713963],[122,120,79,0.06630605674066092],[122,121,64,0.03184739441439022],[122,121,65,0.03325075452494097],[122,121,66,0.03471047998012178],[122,121,67,0.03622706729168945],[122,121,68,0.03780094029547271],[122,121,69,0.039432447791298175],[122,121,70,0.04112186115881372],[122,121,71,0.04286937194915491],[122,121,72,0.044675089452476946],[122,121,73,0.046539038241287356],[122,121,74,0.04846115568973597],[122,121,75,0.05044128946865828],[122,121,76,0.05247919501651649],[122,121,77,0.05457453298619441],[122,121,78,0.056726866667635434],[122,121,79,0.05893565938635503],[122,122,64,0.024291950962372744],[122,122,65,0.025695570871269613],[122,122,66,0.02715735193209251],[122,122,67,0.028677768182323427],[122,122,68,0.030257219603276597],[122,122,69,0.031896029763678835],[122,122,70,0.03359444343967155],[122,122,71,0.03535262421117258],[122,122,72,0.03717065203462594],[122,122,73,0.039048520792073604],[122,122,74,0.040986135816703906],[122,122,75,0.04298331139467404],[122,122,76,0.04503976824335343],[122,122,77,0.04715513096593782],[122,122,78,0.049328925482430064],[122,122,79,0.05156057643701517],[122,123,64,0.016743383876052897],[122,123,65,0.018146753949120353],[122,123,66,0.01961008520879659],[122,123,67,0.021133829334190557],[122,123,68,0.022718362560631755],[122,123,69,0.024363983326567806],[122,123,70,0.02607090989739863],[122,123,71,0.027839277966187015],[122,123,72,0.029669138231274927],[122,123,73,0.03156045395073559],[122,123,74,0.03351309847381967],[122,123,75,0.03552685274919365],[122,123,76,0.03760140281011104],[122,123,77,0.03973633723647407],[122,123,78,0.041931144593777114],[122,123,79,0.044185210848960654],[122,124,64,0.00920603886854976],[122,124,65,0.010608661641107964],[122,124,66,0.01207304871232473],[122,124,67,0.01359962952914967],[122,124,68,0.015188756700753314],[122,124,69,0.016840703648407396],[122,124,70,0.01855566223281535],[122,124,71,0.0203337403588294],[122,124,72,0.022174959557585416],[122,124,73,0.02407925254598431],[122,124,74,0.026046460763681334],[122,124,75,0.028076331887376238],[122,124,76,0.030168517322549104],[122,124,77,0.0323225696725995],[122,124,78,0.0345379401853767],[122,124,79,0.03681397617713389],[122,125,64,0.0016842635257660055],[122,125,65,0.003085654092094048],[122,125,66,0.004550613991590624],[122,125,67,0.006079550575502468],[122,125,68,0.007672792957900132],[122,125,69,0.009330589668213651],[122,125,70,0.01105310628172862],[122,125,71,0.01284042302797328],[122,125,72,0.014692532377030498],[122,125,73,0.016609336603702674],[122,125,74,0.018590645329693567],[122,125,75,0.02063617304359311],[122,125,76,0.022745536598820504],[122,125,77,0.024918252689471898],[122,125,78,0.027153735304069393],[122,125,79,0.02945129315723949],[122,126,64,-0.005817596088965149],[122,126,65,-0.004417909697888023],[122,126,66,-0.0029528481755449754],[122,126,67,-0.0014220261197667172],[122,126,68,1.7486223063900574E-4],[122,126,69,0.0018380406507635394],[122,126,70,0.0035676485629300148],[122,126,71,0.0053637386484217675],[122,126,72,0.0072262744376356824],[122,126,73,0.009155127878592628],[122,126,74,0.011150076883962079],[122,126,75,0.013210802856396975],[122,126,76,0.015336888192323928],[122,126,77,0.017527813764141698],[122,126,78,0.019782956380823058],[122,126,79,0.022101586226946468],[122,127,64,-0.013295198885538206],[122,127,65,-0.01189767533649111],[122,127,66,-0.010432971256387202],[122,127,67,-0.008900723035426994],[122,127,68,-0.00730064811198583],[122,127,69,-0.005632547315714942],[122,127,70,-0.0038963072316871017],[122,127,71,-0.0020919025856536155],[122,127,72,-2.1939865037501338E-4],[122,127,73,0.0017210463268969578],[122,127,74,0.003729178675950906],[122,127,75,0.005804646833953542],[122,127,76,0.007946998854738596],[122,127,77,0.010155679897000947],[122,127,78,0.012430029691389843],[122,127,79,0.014769279986530215],[122,128,64,-0.02074421225323786],[122,128,65,-0.019349296557887197],[122,128,66,-0.017885396493953376],[122,128,67,-0.016352170077304162],[122,128,68,-0.014749357781572714],[122,128,69,-0.013076784879542558],[122,128,70,-0.011334363805084569],[122,128,71,-0.009522096535711788],[122,128,72,-0.007640076995721667],[122,128,73,-0.005688493479996115],[122,128,74,-0.003667631098294266],[122,128,75,-0.001577874240253907],[122,128,76,5.802909390529853E-4],[122,128,77,0.0028062740129627395],[122,128,78,0.005099377756447865],[122,128,79,0.007458795598767276],[122,129,64,-0.028160315622587917],[122,129,65,-0.02676843879776558],[122,129,66,-0.02530577649413812],[122,129,67,-0.023772008176642934],[122,129,68,-0.022166897178958367],[122,129,69,-0.02049029304346872],[122,129,70,-0.01874213388129664],[122,129,71,-0.01692244875246951],[122,129,72,-0.015031360066185995],[122,129,73,-0.013069086001253782],[122,129,74,-0.011035942946539645],[122,129,75,-0.008932347961636555],[122,129,76,-0.006758821257602299],[122,129,77,-0.004515988697816442],[122,129,78,-0.0022045843189627545],[122,129,79,1.7454712789388704E-4],[122,130,64,-0.035539204082516984],[122,130,65,-0.034150782824117765],[122,130,66,-0.032689778869121944],[122,130,67,-0.031155892945152308],[122,130,68,-0.029548911059918193],[122,130,69,-0.02786870684005216],[122,130,70,-0.026115243889536455],[122,130,71,-0.02428857816778207],[122,130,72,-0.022388860387327902],[122,130,73,-0.02041633843123436],[122,130,74,-0.018371359790005815],[122,130,75,-0.016254374018252138],[122,130,76,-0.014065935210943348],[122,130,77,-0.01180670449930099],[122,130,78,-0.009477452566335254],[122,130,79,-0.007079062181998497],[122,131,64,-0.0428765920530203],[122,131,65,-0.04149202842399491],[122,131,66,-0.04003308993720911],[122,131,67,-0.03849949838691391],[122,131,68,-0.036891062258147644],[122,131,69,-0.03520767906472999],[122,131,70,-0.03344933770637082],[122,131,71,-0.031616120844957574],[122,131,72,-0.029708207299989686],[122,131,73,-0.027725874463234157],[122,131,74,-0.02566950073243368],[122,131,75,-0.02353956796428336],[122,131,76,-0.021336663946526002],[122,131,77,-0.019061484889206892],[122,131,78,-0.016714837935107085],[122,131,79,-0.014297643689313078],[122,132,64,-0.05016821701351204],[122,132,65,-0.048787898146430364],[122,132,66,-0.04733141847928635],[122,132,67,-0.04579852066735113],[122,132,68,-0.044189035465724946],[122,132,69,-0.04250288406676539],[122,132,70,-0.04074008045615807],[122,132,71,-0.03890073378770231],[122,132,72,-0.036985050776774164],[122,132,73,-0.03499333811254324],[122,132,74,-0.03292600488877451],[122,132,75,-0.030783565053432604],[122,132,76,-0.02856663987693331],[122,132,77,-0.026275960439090862],[122,132,78,-0.023912370134774652],[122,132,79,-0.02147682719823263],[122,133,64,-0.057409843286491236],[122,133,65,-0.05603414110114935],[122,133,66,-0.05458049955152322],[122,133,67,-0.05304868193887691],[122,133,68,-0.05143854107067258],[122,133,69,-0.04975002159769715],[122,133,70,-0.04798316236937239],[122,133,71,-0.04613809880731612],[122,133,72,-0.04421506529712227],[122,133,73,-0.042214397598430486],[122,133,74,-0.04013653527312211],[122,133,75,-0.03798202413185525],[122,133,76,-0.03575151869878568],[122,133,77,-0.033445784694524416],[122,133,78,-0.031065701537339563],[122,133,79,-0.028612264862568515],[122,134,64,-0.06459726587670778],[122,134,65,-0.06322653681325274],[122,134,66,-0.06177609835450415],[122,134,67,-0.06024573422341262],[122,134,68,-0.0586353190518073],[122,134,69,-0.05694482071748008],[122,134,70,-0.05517430269900048],[122,134,71,-0.05332392644832684],[122,134,72,-0.05139395378117895],[122,134,73,-0.049384749285248164],[122,134,74,-0.04729678274607729],[122,134,75,-0.04513063159082409],[122,134,76,-0.042886983349758157],[122,134,77,-0.04056663813553729],[122,134,78,-0.03817051114027403],[122,134,79,-0.03569963515035646],[122,135,64,-0.07172631436601673],[122,135,65,-0.0703608991340644],[122,135,66,-0.06891401415897991],[122,135,67,-0.06738546335196205],[122,135,68,-0.06577514293106612],[122,135,69,-0.06408304375849971],[122,135,70,-0.06230925369519902],[122,135,71,-0.06045395997275094],[122,135,72,-0.05851745158263322],[122,135,73,-0.05650012168284002],[122,135,74,-0.054402470021728266],[122,135,75,-0.05222510537930414],[122,135,76,-0.049968748025788434],[122,135,77,-0.047634232197518056],[122,135,78,-0.045222508590185284],[122,135,79,-0.042734646869387216],[122,136,64,-0.07879285686354287],[122,136,65,-0.07743308020776274],[122,136,66,-0.0759900842878588],[122,136,67,-0.0744636929608623],[122,136,68,-0.07285382378292937],[122,136,69,-0.07116049034709071],[122,136,70,-0.06938380463783522],[122,136,71,-0.0675239794026038],[122,136,72,-0.06558133054015469],[122,136,73,-0.06355627950587595],[122,136,74,-0.06144935573387533],[122,136,75,-0.05926119907606853],[122,136,76,-0.05699256225810656],[122,136,77,-0.054644313352195106],[122,136,78,-0.05221743826681302],[122,136,79,-0.04971304325329562],[122,137,64,-0.08579280401135536],[122,137,65,-0.08443897449399618],[122,137,66,-0.08300018815463739],[122,137,67,-0.08147628854491418],[122,137,68,-0.07986721430114263],[122,137,69,-0.0781730014827493],[122,137,70,-0.07639378592710977],[122,137,71,-0.07452980562085632],[122,137,72,-0.07258140308762584],[122,137,73,-0.07054902779231664],[122,137,74,-0.06843323856169359],[122,137,75,-0.06623470602154968],[122,137,76,-0.06395421505027798],[122,137,77,-0.06159266724889878],[122,137,78,-0.05915108342754993],[122,137,79,-0.05663060610840853],[122,138,64,-0.09272211304581668],[122,138,65,-0.09137452284664804],[122,138,66,-0.08994025135843664],[122,138,67,-0.08841916156755658],[122,138,68,-0.08681121292289928],[122,138,69,-0.08511646367521342],[122,138,70,-0.08333507323242673],[122,138,71,-0.08146730453100715],[122,138,72,-0.0795135264233362],[122,138,73,-0.07747421608116789],[122,138,74,-0.07534996141500205],[122,138,75,-0.07314146350959128],[122,138,76,-0.07084953907542957],[122,138,77,-0.06847512291626512],[122,138,78,-0.06601927041265376],[122,138,79,-0.063483160021513],[122,139,64,-0.0995767919142353],[122,139,65,-0.09823571664837771],[122,139,66,-0.09680624983527253],[122,139,67,-0.09528827362770731],[122,139,68,-0.09368176801011319],[122,139,69,-0.0919868131390319],[122,139,70,-0.0902035916991395],[122,139,71,-0.08833239127489256],[122,139,72,-0.08637360673776606],[122,139,73,-0.08432774264915366],[122,139,74,-0.08219541567876432],[122,139,75,-0.07997735703873188],[122,139,76,-0.07767441493328309],[122,139,77,-0.07528755702401324],[122,139,78,-0.07281787291077957],[122,139,79,-0.07026657662817415],[122,140,64,-0.10635290344713766],[122,140,65,-0.10501860200125868],[122,140,66,-0.10359421406587588],[122,140,67,-0.1020796406835971],[122,140,68,-0.10047488208810318],[122,140,69,-0.09878004004594587],[122,140,70,-0.09699532021348878],[122,140,71,-0.09512103450905907],[122,140,72,-0.09315760350027613],[122,140,73,-0.09110555880663007],[122,140,74,-0.08896554551714408],[122,140,75,-0.08673832462333442],[122,140,76,-0.08442477546731852],[122,140,77,-0.08202589820511497],[122,140,78,-0.07954281628514903],[122,140,79,-0.07697677894192545],[122,141,64,-0.11304656958592374],[122,141,65,-0.11171928397327135],[122,141,66,-0.1103002333398253],[122,141,67,-0.10878933733335128],[122,141,68,-0.10718661614144187],[122,141,69,-0.10549219283483857],[122,141,70,-0.10370629572549672],[122,141,71,-0.10182926073945386],[122,141,72,-0.09986153380446683],[122,141,73,-0.09780367325249673],[122,141,74,-0.09565635223686908],[122,141,75,-0.09342036116432606],[122,141,76,-0.09109661014182402],[122,141,77,-0.08868613143811299],[122,141,78,-0.0861900819601189],[122,141,79,-0.08360974574408464],[122,142,64,-0.11965397566621794],[122,142,65,-0.11833393090096678],[122,142,66,-0.11692046007630619],[122,142,67,-0.11541350115263771],[122,142,68,-0.11381309396729278],[122,142,69,-0.11211938257957244],[122,142,70,-0.11033261763012925],[122,142,71,-0.10845315871475081],[122,142,72,-0.10648147677251985],[122,142,73,-0.10441815648842157],[122,142,74,-0.10226389871022379],[122,142,75,-0.10001952287986016],[122,142,76,-0.09768596947914943],[122,142,77,-0.09526430248990803],[122,142,78,-0.09275571186846043],[122,142,79,-0.0901615160345145],[122,143,64,-0.12617137475654416],[122,143,65,-0.1248587787479285],[122,143,66,-0.12345111420112576],[122,143,67,-0.12194833708900321],[122,143,68,-0.12035050658585544],[122,143,69,-0.1186577874143393],[122,143,70,-0.11687045220635361],[122,143,71,-0.11498888387793749],[122,143,72,-0.11301357801814949],[122,143,73,-0.11094514529200517],[122,143,74,-0.1087843138572977],[122,143,75,-0.10653193179552933],[122,143,76,-0.10418896955679013],[122,143,77,-0.10175652241863631],[122,143,78,-0.09923581295898132],[122,143,79,-0.09662819354295527],[122,144,64,-0.13259509205250752],[122,144,65,-0.1312901355192161],[122,144,66,-0.12988848758016158],[122,144,67,-0.12839012191308696],[122,144,68,-0.12679511670810772],[122,144,69,-0.12510365701670345],[122,144,70,-0.12331603711427741],[122,144,71,-0.12143266287634957],[122,144,72,-0.11945405416834753],[122,144,73,-0.11738084724907227],[122,144,74,-0.11521379718766778],[122,144,75,-0.11295378029431302],[122,144,76,-0.11060179656448299],[122,144,77,-0.10815897213682701],[122,144,78,-0.10562656176467089],[122,144,79,-0.10300595130111234],[122,145,64,-0.1389215293266397],[122,145,65,-0.13762438573194613],[122,145,66,-0.1362289485094077],[122,145,67,-0.1347352087268684],[122,145,68,-0.13314326326099812],[122,145,69,-0.1314533171485014],[122,145,70,-0.1296656859505224],[122,145,71,-0.12778079813030507],[122,145,72,-0.12579919744407841],[122,145,73,-0.12372154534524238],[122,145,74,-0.12154862340167871],[122,145,75,-0.11928133572641408],[122,145,76,-0.11692071142147697],[122,145,77,-0.11446790703499043],[122,145,78,-0.11192420903152345],[122,145,79,-0.10929103627565395],[122,146,64,-0.14514716943358186],[122,146,65,-0.14385799494168472],[122,146,66,-0.1424689462612856],[122,146,67,-0.14098003152861327],[122,146,68,-0.13939136596976065],[122,146,69,-0.13770317425426437],[122,146,70,-0.1359157928615078],[122,146,71,-0.1340296724600143],[122,146,72,-0.13204538029959856],[122,146,73,-0.12996360261645212],[122,146,74,-0.1277851470509862],[122,146,75,-0.12551094507866112],[122,146,76,-0.12314205445363968],[122,146,77,-0.12067966166531341],[122,146,78,-0.11812508440771752],[122,146,79,-0.11547977406179233],[122,147,64,-0.1512685808707681],[122,147,65,-0.14998751432481494],[122,147,66,-0.14860501568738882],[122,147,67,-0.14712110983469417],[122,147,68,-0.14553592999752163],[122,147,69,-0.1438497201173332],[122,147,70,-0.1420628372148085],[122,147,71,-0.1401757537709296],[122,147,72,-0.13818906012056043],[122,147,73,-0.1361034668585992],[122,147,74,-0.13391980725853758],[122,147,75,-0.131639039703637],[122,147,76,-0.12926225013057935],[122,147,77,-0.12679065448562676],[122,147,78,-0.12422560119331238],[122,147,79,-0.12156857363761708],[122,148,64,-0.15728242239476953],[122,148,65,-0.15600958531704012],[122,148,66,-0.15463378187781507],[122,148,67,-0.1531550533584386],[122,148,68,-0.15157355064235434],[122,148,69,-0.14988953657382054],[122,148,70,-0.14810338832874415],[122,148,71,-0.14621559979769483],[122,148,72,-0.1442267839810667],[122,148,73,-0.14213767539646405],[122,148,74,-0.13994913249813812],[122,148,75,-0.13766214010869604],[122,148,76,-0.1352778118629292],[122,148,77,-0.13279739266380153],[122,148,78,-0.1302222611506192],[122,148,79,-0.12755393217933364],[122,149,64,-0.16318544769298182],[122,149,65,-0.1619209443077041],[122,149,66,-0.1605519648767756],[122,149,67,-0.15907856674568777],[122,149,68,-0.1575009180914605],[122,149,69,-0.15581930028410873],[122,149,70,-0.15403411025988778],[122,149,71,-0.1521458629063741],[122,149,72,-0.15015519345935324],[122,149,73,-0.14806285991158796],[122,149,74,-0.14586974543329467],[122,149,75,-0.1435768608045519],[122,149,76,-0.14118534685948292],[122,149,77,-0.13869647694225884],[122,149,78,-0.1361116593749364],[122,149,79,-0.13343243993709308],[122,150,64,-0.168974510110811],[122,150,65,-0.1677184273900837],[122,150,66,-0.16635638445463086],[122,150,67,-0.16488845436722144],[122,150,68,-0.1633148222326425],[122,150,69,-0.16163578756203079],[122,150,70,-0.1598517666486402],[122,150,71,-0.15796329495511918],[122,150,72,-0.15597102951225572],[122,150,73,-0.15387575132927067],[122,150,74,-0.15167836781548572],[122,150,75,-0.1493799152135883],[122,150,76,-0.14698156104433568],[122,150,77,-0.14448460656274686],[122,150,78,-0.14189048922579695],[122,150,79,-0.13920078517156842],[122,151,64,-0.1746465674345189],[122,151,65,-0.17339897516781677],[122,151,66,-0.1720439649365173],[122,151,67,-0.17058162516820974],[122,151,68,-0.16901215752322096],[122,151,69,-0.16733587926190374],[122,151,70,-0.16555322562304198],[122,151,71,-0.16366475221343402],[122,151,72,-0.16167113740862238],[122,151,73,-0.15957318476484272],[122,151,74,-0.15737182544202455],[122,151,75,-0.15506812063806008],[122,151,76,-0.15266326403419017],[122,151,77,-0.15015858425155015],[122,151,78,-0.14755554731889176],[122,151,79,-0.1448557591514389],[122,152,64,-0.18019868672940964],[122,152,65,-0.17895963761714218],[122,152,66,-0.177611740087243],[122,152,67,-0.17615509757437664],[122,152,68,-0.17458992791607808],[122,152,69,-0.1729165657230889],[122,152,70,-0.17113546476049346],[122,152,71,-0.16924720033971818],[122,152,72,-0.16725247172135604],[122,152,73,-0.16515210452889661],[122,152,74,-0.1629470531731897],[122,152,75,-0.16063840328785717],[122,152,76,-0.15822737417551014],[122,152,77,-0.15571532126480336],[122,152,78,-0.15310373857835113],[122,152,79,-0.1503942612114597],[122,153,64,-0.18562804923352716],[122,153,65,-0.18439757900512999],[122,153,66,-0.1830568580526285],[122,153,67,-0.18160600445503994],[122,153,68,-0.18004525184300502],[122,153,69,-0.17837495177225482],[122,153,70,-0.17659557610756427],[122,153,71,-0.17470771941726104],[122,153,72,-0.17271210137825155],[122,153,73,-0.17060956919164583],[122,153,74,-0.16840110000880082],[122,153,75,-0.1660878033680121],[122,153,76,-0.16367092364169422],[122,153,77,-0.16115184249409387],[122,153,78,-0.15853208134955588],[122,153,79,-0.15581330387129433],[122,154,64,-0.19093195530698948],[122,154,65,-0.18971008286401936],[122,154,66,-0.1883765863574135],[122,154,67,-0.18693159814315718],[122,154,68,-0.18537536725546933],[122,154,69,-0.18370826178346555],[122,154,70,-0.1819307712580075],[122,154,71,-0.18004350904880906],[122,154,72,-0.17804721477175856],[122,154,73,-0.1759427567065368],[122,154,74,-0.17373113422436104],[122,154,75,-0.1714134802260675],[122,154,76,-0.16899106359038907],[122,154,77,-0.1664652916324646],[122,154,78,-0.1638377125725986],[122,154,79,-0.16111001801522828],[122,155,64,-0.19610782943668725],[122,155,65,-0.1948945570213938],[122,155,66,-0.1935683169594533],[122,155,67,-0.19212925551210236],[122,155,68,-0.19057763672253503],[122,155,69,-0.18891384479581919],[122,155,70,-0.18713838648871184],[122,155,71,-0.18525189350943738],[122,155,72,-0.18325512492739027],[122,155,73,-0.1811489695928442],[122,155,74,-0.1789344485664912],[122,155,75,-0.17661271755903385],[122,155,76,-0.1741850693806748],[122,155,77,-0.1716529364005519],[122,155,78,-0.16901789301612735],[122,155,79,-0.16628165813249562],[122,156,64,-0.2011532252964804],[122,156,65,-0.19994853868633367],[122,156,66,-0.19862957136035164],[122,156,67,-0.19719648310931215],[122,156,68,-0.19564955258606986],[122,156,69,-0.19398917968877794],[122,156,70,-0.19221588795372613],[122,156,71,-0.19033032695785612],[122,156,72,-0.18833327473092387],[122,156,73,-0.1862256401773793],[122,156,74,-0.18400846550779737],[122,156,75,-0.18168292868007718],[122,156,76,-0.17925034585025834],[122,156,77,-0.17671217383299453],[122,156,78,-0.17407001257170363],[122,156,79,-0.17132560761835236],[122,157,64,-0.2060658308630341],[122,157,65,-0.2048696995916779],[122,157,66,-0.20355800577265737],[122,157,67,-0.20213092234693486],[122,157,68,-0.2005887421733773],[122,157,69,-0.19893188041532395],[122,157,70,-0.1971608769364933],[122,157,71,-0.19527639870629676],[122,157,72,-0.19327924221452053],[122,157,73,-0.1911703358954563],[122,157,74,-0.18895074256130306],[122,157,75,-0.18662166184506812],[122,157,76,-0.1841844326528067],[122,157,77,-0.18164053562524685],[122,157,78,-0.1789915956088174],[122,157,79,-0.17623938413603302],[122,158,64,-0.21084347358701416],[122,158,65,-0.20965585119212116],[122,158,66,-0.20835141634335275],[122,158,67,-0.20693035474921007],[122,158,68,-0.20539297306697724],[122,158,69,-0.2037397012926636],[122,158,70,-0.201971095160019],[122,158,71,-0.20008783854869294],[122,158,72,-0.19809074590149445],[122,158,73,-0.19598076465083403],[122,158,74,-0.1937589776541767],[122,158,75,-0.1914266056387195],[122,158,76,-0.18898500965515108],[122,158,77,-0.18643569354052558],[122,158,78,-0.1837803063902761],[122,158,79,-0.18102064503931992],[122,159,64,-0.21548412561980146],[122,159,65,-0.21430494991830473],[122,159,66,-0.21300774443379045],[122,159,67,-0.2115927072567343],[122,159,68,-0.21006015843169246],[122,159,69,-0.20841054235064016],[122,159,70,-0.20664443015512812],[122,159,71,-0.20476252214732105],[122,159,72,-0.20276565020988468],[122,159,73,-0.20065478023479555],[122,159,74,-0.19843101456090417],[122,159,75,-0.19609559442046898],[122,159,76,-0.19364990239451374],[122,159,77,-0.191095464877041],[122,159,78,-0.18843395454813128],[122,159,79,-0.18566719285587285],[122,160,64,-0.21998590909580928],[122,160,65,-0.21881510248698255],[122,160,66,-0.2175250819561655],[122,160,67,-0.21611605758769814],[122,160,68,-0.21458836239912482],[122,160,69,-0.21294245473793927],[122,160,70,-0.2111789206869008],[122,160,71,-0.20929847647798228],[122,160,72,-0.20730197091492153],[122,160,73,-0.20519038780444476],[122,160,74,-0.20296484839599638],[122,160,75,-0.20062661383019276],[122,160,76,-0.1981770875958465],[122,160,77,-0.1956178179956053],[122,160,78,-0.19295050062022245],[122,160,79,-0.1901769808314141],[122,161,64,-0.22434710147019798],[122,161,65,-0.22318457126706293],[122,161,66,-0.22190167676631223],[122,161,67,-0.22049863965588734],[122,161,68,-0.21897580550931817],[122,161,69,-0.21733364618587947],[122,161,70,-0.21557276223907473],[122,161,71,-0.21369388533351685],[122,161,72,-0.21169788067016815],[122,161,73,-0.20958574942001884],[122,161,74,-0.20735863116602626],[122,161,75,-0.20501780635354216],[122,161,76,-0.20256469874907124],[122,161,77,-0.20000087790740284],[122,161,78,-0.197328061647137],[122,161,79,-0.1945481185345549],[122,162,64,-0.22856614091208116],[122,162,65,-0.22741177970161075],[122,162,66,-0.2261359381129242],[122,162,67,-0.2247388490455432],[122,162,68,-0.22322087020969816],[122,162,69,-0.22158248652988355],[122,162,70,-0.21982431255651524],[122,162,71,-0.2179470948857527],[122,162,72,-0.21595171458745022],[122,162,73,-0.2138391896413121],[122,162,74,-0.21161067738108486],[122,162,75,-0.20926747694699954],[122,162,76,-0.20681103174631887],[122,162,77,-0.2042429319220267],[122,162,78,-0.20156491682967725],[122,162,79,-0.1987788775223639],[122,163,64,-0.2326416317533503],[122,163,65,-0.23149531778594812],[122,163,66,-0.23022644214332377],[122,163,67,-0.2288352485432137],[122,163,68,-0.22732210641142048],[122,163,69,-0.22568751328875747],[122,163,70,-0.2239320972458717],[122,163,71,-0.22205661930600806],[122,163,72,-0.2200619758756811],[122,163,73,-0.2179492011833306],[122,163,74,-0.21571946972578893],[122,163,75,-0.21337409872277935],[122,163,76,-0.2109145505792953],[122,163,77,-0.20834243535589947],[122,163,78,-0.20565951324696286],[122,163,79,-0.20286769706679952],[122,164,64,-0.2365723499928758],[122,164,65,-0.2354339476015994],[122,164,66,-0.23417193746553755],[122,164,67,-0.23278657372634226],[122,164,68,-0.23127823710287942],[122,164,69,-0.22964743730153536],[122,164,70,-0.227894815434188],[122,164,71,-0.22602114644390858],[122,164,72,-0.22402734153835635],[122,164,73,-0.22191445063094206],[122,164,74,-0.219683664789593],[122,164,75,-0.2173363186933318],[122,164,76,-0.21487389309652583],[122,164,77,-0.2122980173008412],[122,164,78,-0.20961047163492463],[122,164,79,-0.20681318994176556],[122,165,64,-0.24035724885627707],[122,165,65,-0.23922660890628644],[122,165,66,-0.23797135076686948],[122,165,67,-0.23659173860879856],[122,165,68,-0.23508816402057797],[122,165,69,-0.23346114842208154],[122,165,70,-0.2317113454856501],[122,165,71,-0.22983954356471314],[122,165,72,-0.22784666812990007],[122,165,73,-0.22573378421271395],[122,165,74,-0.22350209885660344],[122,165,75,-0.22115296357564374],[122,165,76,-0.2186878768206807],[122,165,77,-0.2161084864529783],[122,165,78,-0.21341659222538678],[122,165,79,-0.21061414827098712],[122,166,64,-0.24399546441113518],[122,166,65,-0.24287242477983528],[122,166,66,-0.24162379248885135],[122,166,67,-0.2402498413432188],[122,166,68,-0.23875097337722273],[122,166,69,-0.2371277212713241],[122,166,70,-0.23538075077635157],[122,166,71,-0.23351086314502023],[122,166,72,-0.23151899757074212],[122,166,73,-0.22940623363380852],[122,166,74,-0.22717379375476499],[122,166,75,-0.22482304565520816],[122,166,76,-0.22235550482584554],[122,166,77,-0.2197728370018608],[122,166,78,-0.21707686064560616],[122,166,79,-0.21426954943657317],[122,167,64,-0.2474863212378029],[122,167,65,-0.24637070732615685],[122,167,66,-0.24512856255871507],[122,167,67,-0.24376016998031014],[122,167,68,-0.24226594164720805],[122,167,69,-0.24064642104727652],[122,167,70,-0.2389022855272288],[122,167,71,-0.23703434872700857],[122,167,72,-0.23504356302127904],[122,167,73,-0.23293102196809257],[122,167,74,-0.23069796276457166],[122,167,75,-0.22834576870981804],[122,167,76,-0.22587597167489804],[122,167,77,-0.22329025457995],[122,167,78,-0.22059045387842546],[122,167,79,-0.2177785620484246],[122,168,64,-0.25082933815562636],[122,168,65,-0.24972096343111383],[122,168,66,-0.248485156177212],[122,168,67,-0.2471222082849358],[122,168,68,-0.2456325414092969],[122,168,69,-0.24401670939265752],[122,168,70,-0.24227540069497833],[122,168,71,-0.24040944083103033],[122,168,72,-0.23841979481453035],[122,168,73,-0.2363075696092788],[122,168,74,-0.23407401658712745],[122,168,75,-0.23172053399299886],[122,168,76,-0.22924866941680166],[122,168,77,-0.22666012227228538],[122,168,78,-0.22395674628285633],[122,168,79,-0.2211405519743027],[122,169,64,-0.25402423400466956],[122,169,65,-0.2529229005763639],[122,169,66,-0.2516932696628621],[122,169,67,-0.2503356416090703],[122,169,68,-0.24885044724659255],[122,169,69,-0.24723825032020452],[122,169,70,-0.24549974992105184],[122,169,71,-0.24363578292664245],[122,169,72,-0.24164732644758857],[122,169,73,-0.23953550028118253],[122,169,74,-0.23730156937163172],[122,169,75,-0.23494694627717205],[122,169,76,-0.2324731936439084],[122,169,77,-0.22988202668642488],[122,169,78,-0.22717531567518034],[122,169,79,-0.224355088430647],[122,170,64,-0.25707093348302856],[122,170,65,-0.2559764327092666],[122,170,66,-0.2547528063527241],[122,170,67,-0.25340036282171374],[122,170,68,-0.2519195417038881],[122,170,69,-0.2503109161957643],[122,170,70,-0.24857519553881224],[122,170,71,-0.24671322746216806],[122,170,72,-0.24472600063194072],[122,170,73,-0.2426146471071886],[122,170,74,-0.24038044480238985],[122,170,75,-0.23802481995663083],[122,170,76,-0.23554934960935991],[122,170,77,-0.23295576408274465],[122,170,78,-0.23024594947065624],[122,170,79,-0.22742195013423105],[122,171,64,-0.25996957303954904],[122,171,65,-0.258881686168669],[122,171,66,-0.25766388255950046],[122,171,67,-0.25631647829557536],[122,171,68,-0.25483992130220534],[122,171,69,-0.25323479377897895],[122,171,70,-0.25150181463866605],[122,171,71,-0.2496418419525982],[122,171,72,-0.24765587540248324],[122,171,73,-0.24554505873873778],[122,171,74,-0.2433106822451574],[122,171,75,-0.2409541852101531],[122,171,76,-0.23847715840439543],[122,171,77,-0.23588134656491078],[122,171,78,-0.23316865088564742],[122,171,79,-0.23034113151446778],[122,172,64,-0.26272050682206305],[122,172,65,-0.2616390056666851],[122,172,66,-0.26042683358508945],[122,172,67,-0.25908431395064613],[122,172,68,-0.2576119026106436],[122,172,69,-0.2560101903216755],[122,172,70,-0.2542799051912872],[122,172,71,-0.2524219151259526],[122,172,72,-0.2504372302853407],[122,172,73,-0.24832700554294873],[122,172,74,-0.2460925429529327],[122,172,75,-0.24373529422335394],[122,172,76,-0.24125686319568873],[122,172,77,-0.23865900833064146],[122,172,78,-0.23594364520028654],[122,172,79,-0.23311284898648377],[122,173,64,-0.26532431268119283],[122,173,65,-0.2642489603265138],[122,173,66,-0.26304221979063624],[122,173,67,-0.26170442135470506],[122,173,68,-0.26023602837557913],[122,173,69,-0.2586376397240153],[122,173,70,-0.2569099922289798],[122,173,71,-0.2550539631281443],[122,173,72,-0.25307057252453735],[122,173,73,-0.2509609858494245],[122,173,74,-0.24872651633124732],[122,173,75,-0.24636862747083643],[122,173,76,-0.24388893552275492],[122,173,77,-0.24128921198280462],[122,173,78,-0.2385713860817209],[122,173,79,-0.23573754728500562],[122,174,64,-0.26778179822957937],[122,174,65,-0.2667123497761601],[122,174,66,-0.26551083272294007],[122,174,67,-0.26417758388062085],[122,174,68,-0.26271307370707975],[122,174,69,-0.2611179087482578],[122,174,70,-0.2593928340850422],[122,174,71,-0.2575387357862088],[122,174,72,-0.2555566433673828],[122,174,73,-0.2534477322561035],[122,174,74,-0.2512133262628129],[122,174,75,-0.24885490005799193],[122,174,76,-0.24637408165529395],[122,174,77,-0.24377265490071198],[122,174,78,-0.2410525619678029],[122,174,79,-0.23821590585892127],[122,175,64,-0.27009400695662156],[122,175,65,-0.269030210298138],[122,175,66,-0.2678337012972982],[122,175,67,-0.2665048229205266],[122,175,68,-0.26504405232261574],[122,175,69,-0.26345200329021734],[122,175,70,-0.2617294286912065],[122,175,71,-0.25987722292997883],[122,175,72,-0.25789642440865035],[122,175,73,-0.2557882179942311],[122,175,74,-0.25355393749160604],[122,175,75,-0.25119506812253767],[122,175,76,-0.24871324901054415],[122,175,77,-0.24611027567168853],[122,175,78,-0.24338810251130272],[122,175,79,-0.24054884532659704],[122,176,64,-0.27226222439877523],[122,176,65,-0.2712038210352079],[122,176,66,-0.27001209803684434],[122,176,67,-0.2686874041569284],[122,176,68,-0.26723022284811915],[122,176,69,-0.2656411747084786],[122,176,70,-0.2639210199332175],[122,176,71,-0.26207066077226204],[122,176,72,-0.2600911439936048],[122,176,73,-0.2579836633525161],[122,176,74,-0.2557495620664475],[122,176,75,-0.2533903352958433],[122,176,76,-0.25090763263070837],[122,176,77,-0.24830326058297758],[122,176,78,-0.24557918508470145],[122,176,79,-0.24273753399200304],[122,177,64,-0.27428798436528823],[122,177,65,-0.27323471025202783],[122,177,66,-0.2720475453682524],[122,177,67,-0.2707268438906161],[122,177,68,-0.2692730951762682],[122,177,69,-0.26768692621122947],[122,177,70,-0.2659691040644183],[122,177,71,-0.26412053834739024],[122,177,72,-0.26214228367975323],[122,177,73,-0.26003554216033664],[122,177,74,-0.25780166584394737],[122,177,75,-0.2554421592239188],[122,177,76,-0.2529586817203202],[122,177,77,-0.2503530501738487],[122,177,78,-0.24762724134543712],[122,177,79,-0.24478339442152386],[122,178,64,-0.2761730752194418],[122,178,65,-0.2751246616527785],[122,178,66,-0.2739418219738742],[122,178,67,-0.2726249154254451],[122,178,68,-0.2711744368820602],[122,178,69,-0.26959101930079143],[122,178,70,-0.2678754361774124],[122,178,71,-0.26602860400821204],[122,178,72,-0.2640515847573838],[122,178,73,-0.26194558833006876],[122,178,74,-0.2597119750508806],[122,178,75,-0.25735225814813445],[122,178,76,-0.254868106243622],[122,178,77,-0.2522613458479802],[122,178,78,-0.24953396386167004],[122,178,79,-0.24668811008151836],[122,179,64,-0.27791954621535375],[122,179,65,-0.27687572075483224],[122,179,66,-0.27569696920037245],[122,179,67,-0.2743836555100525],[122,179,68,-0.27293627969574097],[122,179,69,-0.27135548027590295],[122,179,70,-0.26964203673386233],[122,179,71,-0.2677968719815882],[122,179,72,-0.26582105482895957],[122,179,73,-0.26371580245859394],[122,179,74,-0.26148248290606635],[122,179,75,-0.2591226175457325],[122,179,76,-0.25663788358201356],[122,179,77,-0.2540301165461758],[122,179,78,-0.2513013127986289],[122,179,79,-0.24845363203669546],[122,180,64,-0.27952971389020853],[122,180,65,-0.27849020131831737],[122,180,66,-0.2773152975237092],[122,180,67,-0.27600537083636556],[122,180,68,-0.2745609260329426],[122,180,69,-0.2729826067916147],[122,180,70,-0.27127119815228806],[122,180,71,-0.2694276289822509],[122,180,72,-0.2674529744472188],[122,180,73,-0.2653484584878546],[122,180,74,-0.2631154563015937],[122,180,75,-0.2607554968299899],[122,180,76,-0.25827026525143215],[122,180,77,-0.25566160547927563],[122,180,78,-0.25293152266540075],[122,180,79,-0.25008218570915874],[122,181,64,-0.28100616851200966],[122,181,65,-0.27997069183168133],[122,181,66,-0.2787993930705883],[122,181,67,-0.27749264459500245],[122,181,68,-0.2760509555821361],[122,181,69,-0.2744749744769013],[122,181,70,-0.2727654914539591],[122,181,71,-0.2709234408851252],[122,181,72,-0.26894990381209094],[122,181,73,-0.26684611042454354],[122,181,74,-0.26461344254350816],[122,181,75,-0.2622534361101321],[122,181,76,-0.25976778367976405],[122,181,77,-0.2571583369213626],[122,181,78,-0.2544271091222592],[122,181,79,-0.2515762776982242],[122,182,64,-0.2823517805828767],[122,182,65,-0.281320062053274],[122,182,66,-0.2801521241963709],[122,182,67,-0.27884834308758155],[122,182,68,-0.2774092319494099],[122,182,69,-0.27583544361000023],[122,182,70,-0.2741277729669035],[122,182,71,-0.27228715945612825],[122,182,72,-0.27031468952643545],[122,182,73,-0.2682115991189573],[122,182,74,-0.2659792761519665],[122,182,75,-0.2636192630110171],[122,182,76,-0.2611332590443034],[122,182,77,-0.25852312306327774],[122,182,78,-0.2557908758485522],[122,182,79,-0.25293870266102725],[122,183,64,-0.28356970739777876],[122,183,65,-0.28254146960883786],[122,183,66,-0.2813766481193579],[122,183,67,-0.28007562239583994],[122,183,68,-0.2786389093604802],[122,183,69,-0.2770671658513828],[122,183,70,-0.27536119108792734],[122,183,71,-0.273521929141351],[122,183,72,-0.2715504714105116],[122,183,73,-0.2694480591029037],[122,183,74,-0.2672160857207656],[122,183,75,-0.2648560995524838],[122,183,76,-0.2623698061691567],[122,183,77,-0.259759070926346],[122,183,78,-0.25702592147104586],[122,183,79,-0.25417255025381735],[122,184,64,-0.2846633996588047],[122,184,65,-0.28363836664501507],[122,184,66,-0.28247641761154174],[122,184,67,-0.28117793510765476],[122,184,68,-0.27974343942001867],[122,184,69,-0.2781735910344457],[122,184,70,-0.2764691931027419],[122,184,71,-0.274631193914709],[122,184,72,-0.27266068937526555],[122,184,73,-0.2705589254867634],[122,184,74,-0.2683273008363325],[122,184,75,-0.26596736908846386],[122,184,76,-0.26348084148269213],[122,184,77,-0.26086958933640736],[122,184,78,-0.2581356465528202],[122,184,79,-0.25528121213403476],[122,185,64,-0.2856366081449304],[122,185,65,-0.2846145065388196],[122,185,66,-0.28345518774578315],[122,185,67,-0.2821590370999284],[122,185,68,-0.2807265779282686],[122,185,69,-0.2791584740138914],[122,185,70,-0.27745553206416196],[122,185,71,-0.27561870418403034],[122,185,72,-0.27364909035440454],[122,185,73,-0.27154794091566437],[122,185,74,-0.26931665905614544],[122,185,75,-0.2669568033058153],[122,185,76,-0.264470090034988],[122,185,77,-0.26185839595811444],[122,185,78,-0.25912376064267684],[122,185,79,-0.25626838902313076],[122,186,64,-0.2864933904372873],[122,186,65,-0.2854739506630902],[122,186,66,-0.2843170226994203],[122,186,67,-0.2830229943783441],[122,186,68,-0.2815923917549491],[122,186,69,-0.28002588157179886],[122,186,70,-0.2783242737283763],[122,186,71,-0.2764885237555835],[122,186,72,-0.27451973529525664],[122,186,73,-0.2724191625847737],[122,186,74,-0.2701882129465858],[122,186,75,-0.2678284492828903],[122,186,76,-0.2653415925752929],[122,186,77,-0.2627295243895008],[122,186,78,-0.25999428938506775],[122,186,79,-0.2571380978301403],[122,187,64,-0.2872381176999116],[122,187,65,-0.2862210752078945],[122,187,66,-0.2850663026142878],[122,187,67,-0.2837741899739705],[122,187,68,-0.28234526577042596],[122,187,69,-0.280780199381361],[122,187,70,-0.2790798035492724],[122,187,71,-0.2772450368570243],[122,187,72,-0.2752770062083977],[122,187,73,-0.2731769693136905],[122,187,74,-0.27094633718020056],[122,187,75,-0.26858667660780144],[122,187,76,-0.26609971268946986],[122,187,77,-0.2634873313167986],[122,187,78,-0.26075158169051815],[122,187,79,-0.2578946788359786],[122,188,64,-0.28787548151602793],[122,188,65,-0.28686057805794374],[122,188,66,-0.28570773051320375],[122,188,67,-0.28441733089676957],[122,188,68,-0.2829899098342076],[122,188,69,-0.2814261390283508],[122,188,70,-0.27972683373086926],[122,188,71,-0.2778929552188152],[122,188,72,-0.2759256132761],[122,188,73,-0.2738260686799884],[122,188,74,-0.27159573569243134],[122,188,75,-0.2692361845564589],[122,188,76,-0.26674914399748606],[122,188,77,-0.2641365037295641],[122,188,78,-0.26140031696660404],[122,188,79,-0.25854280293852283],[122,189,64,-0.2884105007798078],[122,189,65,-0.28739748572595747],[122,189,66,-0.2862463392728567],[122,189,67,-0.2849574551459423],[122,189,68,-0.2835313658406988],[122,189,69,-0.2819687450902447],[122,189,70,-0.28027041033779365],[122,189,71,-0.27843732521405595],[122,189,72,-0.27647060201954266],[122,189,73,-0.2743715042118484],[122,189,74,-0.2721414488977455],[122,189,75,-0.26978200933030183],[122,189,76,-0.26729491741087874],[122,189,77,-0.2646820661960423],[122,189,78,-0.26194551240941544],[122,189,79,-0.2590874789584158],[122,190,64,-0.28884852864363675],[122,190,65,-0.2878371603420078],[122,190,66,-0.2866874986531365],[122,190,67,-0.2853999387771585],[122,190,68,-0.2839750148222563],[122,190,69,-0.28241340227305056],[122,190,70,-0.2807159204638422],[122,190,71,-0.27888353505676555],[122,190,72,-0.2769173605248144],[122,190,73,-0.27481866263982013],[122,190,74,-0.2725888609652113],[122,190,75,-0.2702295313537699],[122,190,76,-0.267742408450239],[122,190,77,-0.26512938819881515],[122,190,78,-0.2623925303555519],[122,190,79,-0.2595340610056238],[122,191,64,-0.2891952595208842],[122,191,65,-0.2881853066988459],[122,191,66,-0.2870369223828949],[122,191,67,-0.28575050302665184],[122,191,68,-0.2843265841095295],[122,191,69,-0.2827658426058208],[122,191,70,-0.2810690994586159],[122,191,71,-0.27923732205860086],[122,191,72,-0.2772716267277091],[122,191,73,-0.27517328120770135],[122,191,74,-0.27294370715350125],[122,191,75,-0.2705844826315025],[122,191,76,-0.26809734462270607],[122,191,77,-0.2654841915307179],[122,191,78,-0.2627470856946311],[122,191,79,-0.25988825590674713],[122,192,64,-0.2894567361441701],[122,192,65,-0.28844797935319455],[122,192,66,-0.2873006753021362],[122,192,67,-0.28601522149218206],[122,192,68,-0.28459215454908837],[122,192,69,-0.28303215269285786],[122,192,70,-0.2813360382122263],[122,192,71,-0.27950477994401235],[122,192,72,-0.27753949575730164],[122,192,73,-0.27544145504253337],[122,192,74,-0.2732120812053269],[122,192,75,-0.27085295416526145],[122,192,76,-0.26836581285946204],[122,192,77,-0.2657525577510257],[122,192,78,-0.263015253342316],[122,192,79,-0.2601561306930733],[122,193,64,-0.28963935667913676],[122,193,65,-0.2886315897830227],[122,193,66,-0.2874851805606379],[122,193,67,-0.28620052737086865],[122,193,68,-0.28477816777834375],[122,193,69,-0.28321878102360687],[122,193,70,-0.2815231904980744],[122,193,71,-0.2796923662238435],[122,193,72,-0.2777274273383169],[122,193,73,-0.27562964458371353],[122,193,74,-0.2734004428013055],[122,193,75,-0.2710414034305879],[122,193,76,-0.2685542670132396],[122,193,77,-0.2659409357019107],[122,193,78,-0.2632034757738585],[122,193,79,-0.26034412014938446],[122,194,64,-0.28974988189371564],[122,194,65,-0.2887429136007881],[122,194,66,-0.2875972268730044],[122,194,67,-0.286313220753889],[122,194,68,-0.2848914335577486],[122,194,69,-0.28333254534023833],[122,194,70,-0.281637380373704],[122,194,71,-0.27980690962736177],[122,194,72,-0.27784225325227796],[122,194,73,-0.27574468307122657],[122,194,74,-0.2735156250732558],[122,194,75,-0.2711566619131771],[122,194,76,-0.26866953541583105],[122,194,77,-0.26605614908516695],[122,194,78,-0.26331857061815855],[122,194,79,-0.2604590344235054],[122,195,64,-0.2897954423829051],[122,195,65,-0.2887890978226689],[122,195,66,-0.2876439758301549],[122,195,67,-0.28636047597805625],[122,195,68,-0.28493913716029995],[122,195,69,-0.2833806400629274],[122,195,70,-0.281685809639734],[122,195,71,-0.27985561759274147],[122,195,72,-0.27789118485745656],[122,195,73,-0.27579378409300015],[122,195,74,-0.27356484217693344],[122,195,75,-0.27120594270499687],[122,195,76,-0.2687188284956177],[122,195,77,-0.26610540409921757],[122,195,78,-0.2633677383123505],[122,195,79,-0.26050806669661186],[122,196,64,-0.2897835458490313],[122,196,65,-0.28877766819374584],[122,196,66,-0.28763296926722903],[122,196,67,-0.28634984903424476],[122,196,68,-0.2849288468183101],[122,196,69,-0.2833706437728062],[122,196,70,-0.28167606535684686],[122,196,71,-0.2798460838159651],[122,196,72,-0.27788182066758627],[122,196,73,-0.27578454919135964],[122,196,74,-0.273555696924178],[122,196,75,-0.2711968481601097],[122,196,76,-0.2687097464550826],[122,196,77,-0.2660962971363686],[122,196,78,-0.2633585698168862],[122,196,79,-0.26049880091426914],[122,197,64,-0.28972208443752956],[122,197,65,-0.28871653656918617],[122,197,66,-0.2875721366879408],[122,197,67,-0.28628928503270823],[122,197,68,-0.2848685212274855],[122,197,69,-0.28331052675262636],[122,197,70,-0.2816161274208703],[122,197,71,-0.27978629585818515],[122,197,72,-0.2778221539893888],[122,197,73,-0.27572497552862274],[122,197,74,-0.2734961884745162],[122,197,75,-0.2711373776102468],[122,197,76,-0.2686502870083567],[122,197,77,-0.2660368225403589],[122,197,78,-0.26329905439115875],[122,197,79,-0.26043921957823746],[122,198,64,-0.28961934212821305],[122,198,65,-0.28861400835138473],[122,198,66,-0.28746980274535217],[122,198,67,-0.28618712572525096],[122,198,68,-0.2847665171082824],[122,198,69,-0.2832086585850956],[122,198,70,-0.281514376195921],[122,198,71,-0.2796846428115134],[122,198,72,-0.2777205806188692],[122,198,73,-0.2756234636117991],[122,198,74,-0.27339472008617816],[122,198,75,-0.2710359351400953],[122,198,76,-0.26854885317875543],[122,198,77,-0.2659353804241643],[122,198,78,-0.26319758742962884],[122,198,79,-0.26033771159901387],[122,199,64,-0.28948400218204806],[122,199,65,-0.28847878998308696],[122,199,66,-0.2873346947790808],[122,199,67,-0.2860521170842718],[122,199,68,-0.2846315968245533],[122,199,69,-0.2830738158089128],[122,199,70,-0.2813796002056238],[122,199,71,-0.2795499230232482],[122,199,72,-0.2775859065964075],[122,199,73,-0.2754888250764096],[122,199,74,-0.27326010692655134],[122,199,75,-0.2709013374223168],[122,199,76,-0.26841426115632816],[122,199,77,-0.2658007845480783],[122,199,78,-0.26306297835847137],[122,199,79,-0.26020308020912664],[122,200,64,-0.28932515464342645],[122,200,65,-0.2883199964964861],[122,200,66,-0.28717595040893984],[122,200,67,-0.28589341693867953],[122,200,68,-0.28447293605948343],[122,200,69,-0.28291518963248785],[122,200,70,-0.28122100388240445],[122,200,71,-0.27939135187854747],[122,200,72,-0.2774273560206332],[122,200,73,-0.2753302905294258],[122,200,74,-0.2731015839420664],[122,200,75,-0.270742821612294],[122,200,76,-0.2682557482154161],[122,200,77,-0.26564227025806064],[122,200,78,-0.2629044585927417],[122,200,79,-0.26004455093717715],[122,201,64,-0.2891523038979412],[122,201,65,-0.28814715911829225],[122,201,66,-0.28700312518500437],[122,201,67,-0.28572060266667043],[122,201,68,-0.28430013154881084],[122,201,69,-0.2827423937053526],[122,201,70,-0.2810482153748529],[122,201,71,-0.2792185696415339],[122,201,72,-0.27725457892108585],[122,201,73,-0.2751575174513219],[122,201,74,-0.27292881378751066],[122,201,75,-0.27057005330260375],[122,201,76,-0.26808298069221015],[122,201,77,-0.26546950248435697],[122,201,78,-0.26273168955405624],[122,201,79,-0.25987177964262853],[122,202,64,-0.2889747606485561],[122,202,65,-0.2879696134457055],[122,202,66,-0.2868255771593843],[122,202,67,-0.2855430523585696],[122,202,68,-0.2841225790290821],[122,202,69,-0.28256483904506113],[122,202,70,-0.2808706586451877],[122,202,71,-0.27904101091371414],[122,202,72,-0.2770770182662672],[122,202,73,-0.27497995494049854],[122,202,74,-0.27275124949141594],[122,202,75,-0.27039248729160725],[122,202,76,-0.2679054130362134],[122,202,77,-0.26529193325268496],[122,202,78,-0.2625541188153473],[122,202,79,-0.2596942074647217],[122,203,64,-0.28879295597815857],[122,203,65,-0.2877877595632111],[122,203,66,-0.28664367584965134],[122,203,67,-0.28536110540870474],[122,203,68,-0.28394058822646717],[122,203,69,-0.28238280617533507],[122,203,70,-0.28068858549017905],[122,203,71,-0.2788588992493274],[122,203,72,-0.27689486986032064],[122,203,73,-0.274797771550514],[122,203,74,-0.2725690328623598],[122,203,75,-0.27021023915358255],[122,203,76,-0.2677231351021033],[122,203,77,-0.2651096272157465],[122,203,78,-0.2623717863467546],[122,203,79,-0.2595118502110605],[122,204,64,-0.2886004802755441],[122,204,65,-0.28759511494526735],[122,204,66,-0.28645086844096046],[122,204,67,-0.28516814134170976],[122,204,68,-0.2837474736347013],[122,204,69,-0.2821895471864885],[122,204,70,-0.28049518821900354],[122,204,71,-0.2786653697903776],[122,204,72,-0.27670121428052985],[122,204,73,-0.27460399588160467],[122,204,74,-0.27237514309308686],[122,204,75,-0.27001624122180923],[122,204,76,-0.2675290348867071],[122,204,77,-0.264915430528356],[122,204,78,-0.2621774989233142],[122,204,79,-0.25931747770322366],[122,205,64,-0.28839106300661177],[122,205,65,-0.2873853382742466],[122,205,66,-0.2862407453952257],[122,205,67,-0.2849576849656863],[122,205,68,-0.28353669697545425],[122,205,69,-0.2819784632789676],[122,205,70,-0.28028381007094116],[122,205,71,-0.2784537103668384],[122,205,72,-0.2764892864881088],[122,205,73,-0.27439181255227185],[122,205,74,-0.2721627169676767],[122,205,75,-0.26980358493315093],[122,205,76,-0.2673161609423962],[122,205,77,-0.26470235129316166],[122,205,78,-0.2619642266012233],[122,205,79,-0.2591040243191156],[122,206,64,-0.2881587531288613],[122,206,65,-0.2871524109679018],[122,206,66,-0.28600722303352943],[122,206,67,-0.2847235899517431],[122,206,68,-0.2833020517174675],[122,206,69,-0.2817432901648834],[122,206,70,-0.28004813144249585],[122,206,71,-0.2782175484930056],[122,206,72,-0.2762526635379431],[122,206,73,-0.27415475056714267],[122,206,74,-0.271925237832891],[122,206,75,-0.26956571034895993],[122,206,76,-0.2670779123943805],[122,206,77,-0.2644637500219944],[122,206,78,-0.2617252935718033],[122,206,79,-0.25886478018907],[122,207,64,-0.2878979123683333],[122,207,65,-0.2868906303942036],[122,207,66,-0.2857445366911987],[122,207,67,-0.2844600319316538],[122,207,68,-0.2830376561191259],[122,207,69,-0.28147809105782096],[122,207,70,-0.2797821628267535],[122,207,71,-0.2779508442587013],[122,207,72,-0.27598525742391855],[122,207,73,-0.273886676118683],[122,207,74,-0.2716565283585095],[122,207,75,-0.2692963988762441],[122,207,76,-0.26680803162489297],[122,207,77,-0.26419333228522035],[122,207,78,-0.2614543707781418],[122,207,79,-0.25859338378186114],[122,208,64,-0.287603208554317],[122,208,65,-0.28659460314442475],[122,208,66,-0.2854472339315962],[122,208,67,-0.28416150165467446],[122,208,68,-0.28273794633061644],[122,208,69,-0.28117724972264546],[122,208,70,-0.27948023781312814],[122,208,71,-0.27764788328123724],[122,208,72,-0.2756813079853653],[122,208,73,-0.2735817854503626],[122,208,74,-0.2713507433594341],[122,208,75,-0.2689897660509083],[122,208,76,-0.26650059701973083],[122,208,77,-0.26388514142372],[122,208,78,-0.26114546859460974],[122,208,79,-0.258283814553825],[122,209,64,-0.2872696090118172],[122,209,65,-0.28625923836447087],[122,209,66,-0.28511016781861964],[122,209,67,-0.2838227982035163],[122,209,68,-0.2823976695556707],[122,209,69,-0.28083546358529965],[122,209,70,-0.2791370061474897],[122,209,71,-0.27730326971813435],[122,209,72,-0.2753353758746099],[122,209,73,-0.273234597781266],[122,209,74,-0.27100236267956146],[122,209,75,-0.2686402543830617],[122,209,76,-0.2661500157771495],[122,209,77,-0.26353355132348677],[122,209,78,-0.2607929295692505],[122,209,79,-0.25793038566109106],[122,210,64,-0.28689237401177714],[122,210,65,-0.2858797411444466],[122,210,66,-0.2847284902479025],[122,210,67,-0.28343902226946494],[122,210,68,-0.2820118772728798],[122,210,69,-0.28044773690258373],[122,210,70,-0.2787474268526652],[122,210,71,-0.2769119193405868],[122,210,72,-0.2749423355856303],[122,210,73,-0.2728399482921423],[122,210,74,-0.2706061841374102],[122,210,75,-0.26824262626438444],[122,210,76,-0.2657510167791012],[122,210,77,-0.2631332592528385],[122,210,78,-0.260391421229034],[122,210,79,-0.25752773673491036],[122,211,64,-0.2864670502790668],[122,211,65,-0.2854516059664729],[122,211,66,-0.2842976453367304],[122,211,67,-0.2830055694866611],[122,211,68,-0.28157591851659947],[122,211,69,-0.2800093739919338],[122,211,70,-0.2783067614093291],[122,211,71,-0.27646905266768884],[122,211,72,-0.2744973685438249],[122,211,73,-0.2723929811729061],[122,211,74,-0.2701573165335215],[122,211,75,-0.26779195693756985],[122,211,76,-0.265298643524831],[122,211,77,-0.2626792787622545],[122,211,78,-0.2599359289479879],[122,211,79,-0.25707082672009707],[122,212,64,-0.2859894645582347],[122,212,65,-0.28497061021075043],[122,212,66,-0.28381336287266634],[122,212,67,-0.2825181238255374],[122,212,68,-0.28108543321743706],[122,212,69,-0.27951597252119265],[122,212,70,-0.27781056699727613],[122,212,71,-0.2759701881614166],[122,212,72,-0.2739959562568929],[122,212,73,-0.2718891427315868],[122,212,74,-0.26965117271962635],[122,212,75,-0.26728362752783263],[122,212,76,-0.2647882471268279],[122,212,77,-0.2621669326468359],[122,212,78,-0.259421748878202],[122,212,79,-0.2565549267765812],[122,213,64,-0.28545571723700913],[122,213,65,-0.2844328077198549],[122,213,66,-0.28327165182087544],[122,213,67,-0.28197265104539826],[122,213,68,-0.28053634560231167],[122,213,69,-0.27896341685835946],[122,213,70,-0.2772546897970658],[122,213,71,-0.27541113548235263],[122,213,72,-0.2734338735268119],[122,213,73,-0.27132417456471214],[122,213,74,-0.2690834627295653],[122,213,75,-0.26671331813647503],[122,213,76,-0.2642154793691145],[122,213,77,-0.26159184597137297],[122,213,78,-0.2588444809436936],[122,213,79,-0.25597561324405327],[122,214,64,-0.28486217602757136],[122,214,65,-0.2838345224212885],[122,214,66,-0.2826687938901673],[122,214,67,-0.2813653922061655],[122,214,68,-0.2799248576541039],[122,214,69,-0.27834787148134266],[122,214,70,-0.2766352583520578],[122,214,71,-0.2747879888061763],[122,214,72,-0.27280718172293617],[122,214,73,-0.27069410678914785],[122,214,74,-0.26845018697198597],[122,214,75,-0.26607700099652987],[122,214,76,-0.26357628582790193],[122,214,77,-0.2609499391580442],[122,214,78,-0.25820002189715385],[122,214,79,-0.25532876066972954],[122,215,64,-0.28420546970558214],[122,215,65,-0.28317234200826635],[122,215,66,-0.2820013371577407],[122,215,67,-0.2806928572392716],[122,215,68,-0.27924744263088297],[122,215,69,-0.27766577444769514],[122,215,70,-0.2759486769908226],[122,215,71,-0.2740971202009008],[122,215,72,-0.27211222211619435],[122,215,73,-0.2699952513353765],[122,215,74,-0.26774762948479647],[122,215,75,-0.26537093369046294],[122,215,76,-0.26286689905458704],[122,215,77,-0.2602374211367281],[122,215,78,-0.2574845584395603],[122,215,79,-0.25461053489921437],[122,216,64,-0.28348248190698],[122,216,65,-0.2824431116787607],[122,216,66,-0.28126608975264666],[122,216,67,-0.2799518185777158],[122,216,68,-0.2785008386447255],[122,216,69,-0.2769138309243513],[122,216,70,-0.27519161930994496],[122,216,71,-0.2733351730648744],[122,216,72,-0.2713456092744101],[122,216,73,-0.26922419530223307],[122,216,74,-0.2669723512513962],[122,216,75,-0.26459165242995397],[122,216,76,-0.2620838318211137],[122,216,77,-0.25945078255794496],[122,216,78,-0.25669456040266914],[122,216,79,-0.25381738623048244],[122,217,64,-0.28269034498252],[122,217,65,-0.28164392793276516],[122,217,66,-0.280460113597941],[122,217,67,-0.27913930484525806],[122,217,68,-0.2776820423000945],[122,217,69,-0.27608900677733605],[122,217,70,-0.274361021717187],[122,217,71,-0.27249905562551757],[122,217,72,-0.27050422451870704],[122,217,73,-0.26837779437306397],[122,217,74,-0.26612118357864967],[122,217,75,-0.26373596539772404],[122,217,76,-0.26122387042766537],[122,217,77,-0.2585867890683987],[122,217,78,-0.2558267739943605],[122,217,79,-0.2529460426309451],[122,218,64,-0.2818264339100901],[122,218,65,-0.2807721324278226],[122,218,66,-0.27958071821156116],[122,218,67,-0.2782525946047816],[122,218,68,-0.27678830239181984],[122,218,69,-0.2751885222214788],[122,218,70,-0.27345407703505176],[122,218,71,-0.27158593449882806],[122,218,72,-0.26958520944104336],[122,218,73,-0.2674531662933509],[122,218,74,-0.26519122153664365],[122,218,75,-0.2628009461514462],[122,218,76,-0.26028406807272486],[122,218,77,-0.25764247464915513],[122,218,78,-0.2548782151068708],[122,218,79,-0.25199350301764134],[122,219,64,-0.28088836026479125],[122,219,65,-0.2798253058927994],[122,219,66,-0.2786254545659155],[122,219,67,-0.2772892101658133],[122,219,68,-0.2758171136626607],[122,219,69,-0.27420984553012406],[122,219,70,-0.27246822816472926],[122,219,71,-0.27059322830964627],[122,219,72,-0.268585959482856],[122,219,73,-0.2664476844097823],[122,219,74,-0.26417981746021224],[122,219,75,-0.26178392708972686],[122,219,76,-0.2592617382854917],[122,219,77,-0.25661513501644395],[122,219,78,-0.25384616268790106],[122,219,79,-0.2509570306005394],[122,220,64,-0.27987396624675576],[122,220,65,-0.27880126209987965],[122,220,66,-0.2775921090061567],[122,220,67,-0.2762469114511763],[122,220,68,-0.27476621062042883],[122,220,69,-0.27315068680480803],[122,220,70,-0.2714011618104034],[122,220,71,-0.26951860137264905],[122,220,72,-0.26750411757479],[122,220,73,-0.2653589712707466],[122,220,74,-0.26308457451220113],[122,220,75,-0.2606824929801297],[122,220,76,-0.2581544484206255],[122,220,77,-0.25550232108505566],[122,220,78,-0.2527281521745707],[122,220,79,-0.24983414628891953],[122,221,64,-0.27878131876674583],[122,221,65,-0.2776980418948246],[122,221,66,-0.27647869722718565],[122,221,67,-0.27512368992281644],[122,221,68,-0.2736335614147123],[122,221,69,-0.27200899180494664],[122,221,70,-0.2702508022639577],[122,221,71,-0.26835995743412],[122,221,72,-0.26633756783755924],[122,221,73,-0.2641848922882931],[122,221,74,-0.2619033403085218],[122,221,75,-0.2594944745492881],[122,221,76,-0.25696001321536244],[122,221,77,-0.2543018324943801],[122,221,78,-0.2515219689902656],[122,221,79,-0.2486226221608855],[122,222,64,-0.27760870358951883],[122,222,65,-0.2765139072854812],[122,222,66,-0.27528345830936773],[122,222,67,-0.27391776256678935],[122,222,68,-0.27241736177318854],[122,222,69,-0.27078293583752044],[122,222,70,-0.2690153052500709],[122,222,71,-0.2671154334744781],[122,222,72,-0.2650844293439192],[122,222,73,-0.26292354946154317],[122,222,74,-0.2606342006049709],[122,222,75,-0.2582179421350903],[122,222,76,-0.2556764884089897],[122,222,77,-0.2530117111970709],[122,222,78,-0.2502256421043627],[122,222,79,-0.24732047499598886],[122,223,64,-0.27635461953492246],[122,223,65,-0.275247335588503],[122,223,66,-0.27400484881292697],[122,223,67,-0.27262756593736936],[122,223,68,-0.2711160289974851],[122,223,69,-0.26947091770671805],[122,223,70,-0.2676930518316606],[122,223,71,-0.265783393571529],[122,223,72,-0.26374304994171804],[122,223,73,-0.26157327516151396],[122,223,74,-0.2592754730457879],[122,223,75,-0.2568511994008973],[122,223,76,-0.25430216442463927],[122,223,77,-0.2516302351102956],[122,223,78,-0.2488374376547926],[122,223,79,-0.24592595987092603],[122,224,64,-0.2750177727367783],[122,224,65,-0.27389701363434427],[122,224,66,-0.27264153693107707],[122,224,67,-0.27125175026034243],[122,224,68,-0.26972819601865317],[122,224,69,-0.2680715537235998],[122,224,70,-0.2662826423757382],[122,224,71,-0.26436242282449984],[122,224,72,-0.26231200013808464],[122,224,73,-0.2601326259774195],[122,224,74,-0.25782570097400204],[122,224,75,-0.25539277711185915],[122,224,76,-0.2528355601134613],[122,224,77,-0.2501559118296366],[122,224,78,-0.2473558526335028],[122,224,79,-0.24443756381837234],[122,225,64,-0.27359707095952945],[122,225,65,-0.2724618320305008],[122,225,66,-0.2711923967018647],[122,225,67,-0.26978917359545707],[122,225,68,-0.26825270551222535],[122,225,69,-0.26658367177575437],[122,225,70,-0.26478289057964854],[122,225,71,-0.2628513213388315],[122,225,72,-0.26079006704473007],[122,225,73,-0.25860037662441915],[122,225,74,-0.2562836473035518],[122,225,75,-0.25384142697330114],[122,225,76,-0.25127541656115615],[122,225,77,-0.24858747240561596],[122,225,78,-0.24577960863479953],[122,225,79,-0.24285399954892684],[122,226,64,-0.27209161797261505],[122,226,65,-0.27094087948295864],[122,226,66,-0.26965650227868465],[122,226,67,-0.26823889605799256],[122,226,68,-0.2666886040728187],[122,226,69,-0.2650063054569123],[122,226,70,-0.26319281755765433],[122,226,71,-0.26124909827168763],[122,226,72,-0.25917624838431896],[122,226,73,-0.2569755139127745],[122,226,74,-0.25464828845312937],[122,226,75,-0.25219611553113885],[122,226,76,-0.24962069095681727],[122,226,77,-0.24692386518280007],[122,226,78,-0.24410764566651755],[122,226,79,-0.24117419923612526],[122,227,64,-0.27050070798263626],[122,227,65,-0.2693334371759222],[122,227,66,-0.26803312225953835],[122,227,67,-0.2666001740995161],[122,227,68,-0.26503513644835486],[122,227,69,-0.2633386882565817],[122,227,70,-0.2615116459879373],[122,227,71,-0.25955496593825345],[122,227,72,-0.25746974655798716],[122,227,73,-0.2552572307784884],[122,227,74,-0.2529188083418258],[122,227,75,-0.25045601813439644],[122,227,76,-0.2478705505241633],[122,227,77,-0.24516424970156292],[122,227,78,-0.24233911602410163],[122,227,79,-0.2393973083645955],[122,228,64,-0.2688238201232894],[122,228,65,-0.26763897320978725],[122,228,66,-0.26632171407500294],[122,228,67,-0.26487245484779876],[122,228,68,-0.2632917398338642],[122,228,69,-0.2615802478096809],[122,228,70,-0.2597387943199835],[122,228,71,-0.25776833397879206],[122,228,72,-0.2556699627739696],[122,228,73,-0.2534449203753917],[122,228,74,-0.25109459244654686],[122,228,75,-0.24862051295979437],[122,228,76,-0.24602436651512594],[122,228,77,-0.24330799066247044],[122,228,78,-0.24047337822756165],[122,228,79,-0.23752267964132456],[122,229,64,-0.2670606130030164],[122,229,65,-0.26585713709731873],[122,229,66,-0.2645219184348687],[122,229,67,-0.26305537050584216],[122,229,68,-0.26145803822483105],[122,229,69,-0.2597306002061174],[122,229,70,-0.25787387104230874],[122,229,71,-0.25588880358641153],[122,229,72,-0.2537764912372944],[122,229,73,-0.25153817022863334],[122,229,74,-0.2491752219211466],[122,229,75,-0.2466891750983614],[122,229,76,-0.24408170826574394],[122,229,77,-0.24135465195324124],[122,229,78,-0.23850999102125325],[122,229,79,-0.2355498669699858],[122,230,64,-0.2652109193104566],[122,230,65,-0.2639877543181105],[122,230,66,-0.26263355383352316],[122,230,67,-0.26114873281010054],[122,230,68,-0.25953383683015885],[122,230,69,-0.25778954436039914],[122,230,70,-0.25591666901060406],[122,230,71,-0.25391616179562615],[122,230,72,-0.2517891134006275],[122,230,73,-0.24953675644965578],[122,230,74,-0.24716046777737022],[122,230,75,-0.24466177070415407],[122,230,76,-0.24204233731445124],[122,230,77,-0.23930399073836972],[122,230,78,-0.2364487074365741],[122,230,79,-0.23347861948841642],[122,231,64,-0.2632747404776624],[122,231,65,-0.2620308209312936],[122,231,66,-0.26065661111404903],[122,231,67,-0.259152527547862],[122,231,68,-0.2575191165447236],[122,231,69,-0.25575705644124147],[122,231,70,-0.2538671598362696],[122,231,71,-0.251850375831679],[122,231,72,-0.2497077922762292],[122,231,73,-0.2474406380126234],[122,231,74,-0.2450502851275651],[122,231,75,-0.2425382512050488],[122,231,76,-0.23990620158272324],[122,231,77,-0.23715595161137304],[122,231,78,-0.23428946891753555],[122,231,79,-0.23130887566920688],[122,232,64,-0.261252241401028],[122,232,65,-0.25998649824644005],[122,232,66,-0.25859124809098055],[122,232,67,-0.25706690913373254],[122,232,68,-0.25541402848145744],[122,232,69,-0.2536332843611122],[122,232,70,-0.2517254883352773],[122,232,71,-0.24969158752056486],[122,232,72,-0.24753266680896913],[122,232,73,-0.24524995109224168],[122,232,74,-0.24284480748910553],[122,232,75,-0.24031874757554716],[122,232,76,-0.23767342961801996],[122,232,77,-0.23491066080960543],[122,232,78,-0.2320323995091519],[122,232,79,-0.22904075748334185],[122,233,64,-0.2591437452200247],[122,233,65,-0.2578551075527562],[122,233,66,-0.2564377842318162],[122,233,67,-0.25489219524532425],[122,233,68,-0.25321888856306285],[122,233,69,-0.25141854232581873],[122,233,70,-0.2494919670374649],[122,233,71,-0.2474401077598567],[122,233,72,-0.24526404631049903],[122,233,73,-0.24296500346307315],[122,233,74,-0.24054434115063061],[122,233,75,-0.23800356467169959],[122,233,76,-0.23534432489913215],[122,233,77,-0.2325684204917423],[122,233,78,-0.22967780010875238],[122,233,79,-0.22667456462700009],[122,234,64,-0.25694972815370165],[122,234,65,-0.2556371249065259],[122,234,66,-0.254196695397243],[122,234,67,-0.25262886151809993],[122,234,68,-0.25093417217331204],[122,234,69,-0.24911330544408705],[122,234,70,-0.2471670707562148],[122,234,71,-0.245096411050291],[122,234,72,-0.24290240495453774],[122,234,73,-0.24058626896030333],[122,234,74,-0.2381493596000539],[122,234,75,-0.23559317562809945],[122,234,76,-0.23291936020388415],[122,234,77,-0.23012970307788982],[122,234,78,-0.2272261427801695],[122,234,79,-0.22421076881146584],[122,235,64,-0.2546708143948907],[122,235,65,-0.25333317597673943],[122,235,66,-0.2518686086400135],[122,235,67,-0.2502775362993176],[122,235,68,-0.24856050886787162],[122,235,69,-0.2467182043970766],[122,235,70,-0.24475143121845666],[122,235,71,-0.24266113008804946],[122,235,72,-0.24044837633320748],[122,235,73,-0.2381143820018924],[122,235,74,-0.23566049801427524],[122,235,75,-0.23308821631688337],[122,235,76,-0.2303991720391272],[122,235,77,-0.22759514565225192],[122,235,78,-0.22467806513073596],[122,235,79,-0.2216500081160846],[122,236,64,-0.252307771062227],[122,236,65,-0.2509440309490225],[122,236,66,-0.24945429706258637],[122,236,67,-0.24783899546118138],[122,236,68,-0.2460986771447634],[122,236,69,-0.2442340201679396],[122,236,70,-0.24224583175510783],[122,236,71,-0.24013505041784855],[122,236,72,-0.23790274807453327],[122,236,73,-0.23555013217222975],[122,236,74,-0.23307854781071813],[122,236,75,-0.2304894798688586],[122,236,76,-0.22778455513314277],[122,236,77,-0.22496554442847716],[122,236,78,-0.22203436475121352],[122,236,79,-0.21899308140438423],[122,237,64,-0.2498615032099324],[122,237,65,-0.24847059948781114],[122,237,66,-0.24695467473347654],[122,237,67,-0.24531415727315287],[122,237,68,-0.24354959927441167],[122,237,69,-0.24166167883137601],[122,237,70,-0.2396512020518985],[122,237,71,-0.2375191051467903],[122,237,72,-0.23526645652105815],[122,237,73,-0.23289445886723847],[122,237,74,-0.23040445126063358],[122,237,75,-0.2277979112566979],[122,237,76,-0.22507645699040324],[122,237,77,-0.22224184927762836],[122,237,78,-0.21929599371859665],[122,237,79,-0.21624094280330897],[122,238,64,-0.2473330488952994],[122,238,65,-0.24591392575670934],[122,238,66,-0.24437079166225484],[122,238,67,-0.24270407733335253],[122,238,68,-0.24091433618920777],[122,238,69,-0.23900224640311396],[122,238,70,-0.23696861296051452],[122,238,71,-0.23481436971889957],[122,238,72,-0.23254058146949885],[122,238,73,-0.2301484460008586],[122,238,74,-0.22763929616410317],[122,238,75,-0.22501460194013811],[122,238,76,-0.22227597250861408],[122,238,77,-0.21942515831870535],[122,238,78,-0.21646405316171924],[122,238,79,-0.213394696245489],[122,239,64,-0.24472357430400193],[122,239,65,-0.24327518349715815],[122,239,66,-0.24170382883332053],[122,239,67,-0.24000994355918415],[122,239,68,-0.23819408243272577],[122,239,69,-0.23625692374945229],[122,239,70,-0.23419927137019048],[122,239,71,-0.23202205675048682],[122,239,72,-0.22972634097158295],[122,239,73,-0.22731331677304867],[122,239,74,-0.2247843105868802],[122,239,75,-0.22214078457331465],[122,239,76,-0.21938433865818396],[122,239,77,-0.21651671257186011],[122,239,78,-0.2135397878898062],[122,239,79,-0.21045559007469328],[122,240,64,-0.24203436893312613],[122,240,65,-0.2405556711653064],[122,240,66,-0.2389550932983432],[122,240,67,-0.2372330712370726],[122,240,68,-0.23539016116847833],[122,240,69,-0.23342704155674976],[122,240,70,-0.23134451513964283],[122,240,71,-0.22914351092622343],[122,240,72,-0.22682508619595054],[122,240,73,-0.22439042849918878],[122,240,74,-0.22184085765894979],[122,240,75,-0.2191778277741212],[122,240,76,-0.21640292922400006],[122,240,77,-0.2135178906741867],[122,240,78,-0.2105245810838532],[122,240,79,-0.2074250117143418],[122,241,64,-0.23926684083200622],[122,241,65,-0.23775680712717218],[122,241,66,-0.2361260133274582],[122,241,67,-0.23437489813139956],[122,241,68,-0.23250401924829966],[122,241,69,-0.23051405536095249],[122,241,70,-0.22840580808943156],[122,241,71,-0.22618020395601512],[122,241,72,-0.22383829635121222],[122,241,73,-0.22138126750097586],[122,241,74,-0.21881043043490378],[122,241,75,-0.21612723095568376],[122,241,76,-0.2133332496096041],[122,241,77,-0.210430203658182],[122,241,78,-0.20741994905092354],[122,241,79,-0.2043044823991752],[122,242,64,-0.2364225119007457],[122,242,65,-0.2348801249119693],[122,242,66,-0.23321813361909038],[122,242,67,-0.23143697965251842],[122,242,68,-0.2295372223402311],[122,242,69,-0.22751954063703195],[122,242,70,-0.2253847350546211],[122,242,71,-0.2231337295925513],[122,242,72,-0.22076757367003452],[122,242,73,-0.21828744405868472],[122,242,74,-0.21569464681599637],[122,242,75,-0.21299061921981743],[122,242,76,-0.21017693170363716],[122,242,77,-0.20725528979273855],[122,242,78,-0.20422753604123556],[122,242,79,-0.2010956519699454],[122,243,64,-0.23350301324656575],[122,243,65,-0.23192726852374634],[122,243,66,-0.23023311056855866],[122,243,67,-0.2284209840839896],[122,243,68,-0.22649145011605876],[122,243,69,-0.22444518794848378],[122,243,70,-0.222282996997895],[122,243,71,-0.2200057987096784],[122,243,72,-0.2176146384544062],[122,243,73,-0.21511068742494543],[122,243,74,-0.212495244534039],[122,243,75,-0.2097697383126257],[122,243,76,-0.20693572880870914],[122,243,77,-0.20399490948683552],[122,243,78,-0.20094910912819297],[122,243,79,-0.19780029373128782],[122,244,64,-0.23051008059791767],[122,244,65,-0.22889998781127496],[122,244,66,-0.2271727075953902],[122,244,67,-0.2253286878689763],[122,244,68,-0.22336849149843752],[122,244,69,-0.22129279815682268],[122,244,70,-0.2191024061830571],[122,244,71,-0.2167982344415328],[122,244,72,-0.21438132418201716],[122,244,73,-0.21185284089997047],[122,244,74,-0.20921407619706378],[122,244,75,-0.20646644964216865],[122,244,76,-0.20361151063262561],[122,244,77,-0.2006509402558504],[122,244,78,-0.19758655315129336],[122,244,79,-0.19442029937270566],[122,245,64,-0.22744554977628295],[122,245,65,-0.22580013389610365],[122,245,66,-0.22403879052926712],[122,245,67,-0.22216197095571644],[122,245,68,-0.22017023996751672],[122,245,69,-0.21806427769098757],[122,245,70,-0.21584488140883173],[122,245,71,-0.21351296738234526],[122,245,72,-0.21106957267366488],[122,245,73,-0.20851585696814745],[122,245,74,-0.20585310439666904],[122,245,75,-0.203082725358117],[122,245,76,-0.200206258341882],[122,245,77,-0.19722537175040888],[122,245,78,-0.19414186572182168],[122,245,79,-0.19095767395257512],[122,246,64,-0.22431135222580434],[122,246,65,-0.22262965465893014],[122,246,66,-0.22083332305475567],[122,246,67,-0.21892281220222298],[122,246,68,-0.21689868892722497],[122,246,69,-0.21476163387681524],[122,246,70,-0.21251244330312635],[122,246,71,-0.21015203084708034],[122,246,72,-0.20768142932184863],[122,246,73,-0.20510179249615512],[122,246,74,-0.20241439687721086],[122,246,75,-0.19962064349355169],[122,246,76,-0.19672205967759027],[122,246,77,-0.19372030084793534],[122,246,78,-0.1906171522914989],[122,246,79,-0.18741453094533966],[122,247,64,-0.2211095106006834],[122,247,65,-0.2193905902842228],[122,247,66,-0.217558362214749],[122,247,67,-0.21561328484014552],[122,247,68,-0.21355592713114102],[122,247,69,-0.21138697032650866],[122,247,70,-0.20910720967767638],[122,247,71,-0.2067175561928316],[122,247,72,-0.20421903838047628],[122,247,73,-0.20161280399253],[122,247,74,-0.19890012176676264],[122,247,75,-0.19608238316883675],[122,247,76,-0.19316110413376308],[122,247,77,-0.19013792680682684],[122,247,78,-0.18701462128400392],[122,247,79,-0.18379308735181543],[122,248,64,-0.2178421344102569],[122,248,65,-0.2160850688630026],[122,248,66,-0.2142160539725343],[122,248,67,-0.21223555199769928],[122,248,68,-0.21014413416786026],[122,248,69,-0.20794248238800972],[122,248,70,-0.20563139094298777],[122,248,71,-0.20321176820088527],[122,248,72,-0.20068463831559302],[122,248,73,-0.19805114292858939],[122,248,74,-0.1953125428697512],[122,248,75,-0.19247021985746748],[122,248,76,-0.18952567819785782],[122,248,77,-0.18648054648315704],[122,248,78,-0.18333657928927827],[122,248,79,-0.1800956588725121],[122,249,64,-0.21451141572191357],[122,249,65,-0.21271530205394884],[122,249,66,-0.21080862883264972],[122,249,67,-0.2087918622818321],[122,249,68,-0.20666557600602686],[122,249,69,-0.2044304526544476],[122,249,70,-0.20208728558374345],[122,249,71,-0.19963698051962242],[122,249,72,-0.19708055721730267],[122,249,73,-0.1944191511208876],[122,249,74,-0.1916540150214444],[122,249,75,-0.18878652071407354],[122,249,76,-0.18581816065376155],[122,249,77,-0.18275054961008774],[122,249,78,-0.17958542632078922],[122,249,79,-0.17632465514414852],[122,250,64,-0.21111962492177416],[122,250,65,-0.209283580802753],[122,250,66,-0.2073383975204527],[122,250,67,-0.20528454541954844],[122,250,68,-0.20312260059895093],[122,250,69,-0.20085324653357972],[122,250,70,-0.19847727569459594],[122,250,71,-0.19599559116817844],[122,250,72,-0.19340920827280284],[122,250,73,-0.19071925617511953],[122,250,74,-0.18792697950420723],[122,250,75,-0.18503373996449302],[122,250,76,-0.18204101794713057],[122,250,77,-0.1789504141399041],[122,250,78,-0.17576365113566805],[122,250,79,-0.17248257503927988],[122,251,64,-0.20766910653304604],[122,251,65,-0.20579227111962906],[122,251,66,-0.20380774672030932],[122,251,67,-0.20171600795829903],[122,251,68,-0.19951763354871666],[122,251,69,-0.1972133078771342],[122,251,70,-0.19480382257624962],[122,251,71,-0.19229007810076504],[122,251,72,-0.18967308530043492],[122,251,73,-0.18695396699137778],[122,251,74,-0.18413395952542777],[122,251,75,-0.1812144143578175],[122,251,76,-0.17819679961298585],[122,251,77,-0.17508270164857376],[122,251,78,-0.17187382661762363],[122,251,79,-0.16857200202893363],[122,252,64,-0.2041622750922244],[122,252,65,-0.20224380991515267],[122,252,66,-0.2002191348725777],[122,252,67,-0.1980887290256118],[122,252,68,-0.19585317382996092],[122,252,69,-0.19351315467023067],[122,252,70,-0.19106946239201317],[122,252,71,-0.18852299483183554],[122,252,72,-0.18587475834493372],[122,252,73,-0.183125869330946],[122,252,74,-0.18027755575730164],[122,252,75,-0.1773311586805978],[122,252,76,-0.17428813376575492],[122,252,77,-0.17115005280301943],[122,252,78,-0.16791860522282143],[122,252,79,-0.16459559960844694],[122,253,64,-0.2006016110830544],[122,253,65,-0.19864070089434793],[122,253,66,-0.19657508802930324],[122,253,67,-0.1944052561478805],[122,253,68,-0.19213178957323696],[122,253,69,-0.18975537478079552],[122,253,70,-0.18727680188473794],[122,253,71,-0.1846969661220088],[122,253,72,-0.1820168693337897],[122,253,73,-0.1792376214445408],[122,253,74,-0.17636044193838352],[122,253,75,-0.1733866613331182],[122,253,76,-0.17031772265166778],[122,253,77,-0.16715518289101405],[122,253,78,-0.1639007144886374],[122,253,79,-0.1605561067864153],[122,254,64,-0.19698965692816672],[122,254,65,-0.19498551050892576],[122,254,66,-0.19287819576852927],[122,254,67,-0.1906682011282136],[122,254,68,-0.18835611390786489],[122,254,69,-0.1859426217688725],[122,254,70,-0.1834285141540405],[122,254,71,-0.18081468372464893],[122,254,72,-0.17810212779462153],[122,254,73,-0.1752919497619022],[122,254,74,-0.17238536053680498],[122,254,75,-0.16938367996764025],[122,254,76,-0.16628833826340406],[122,254,77,-0.16310087741359636],[122,254,78,-0.1598229526051812],[122,254,79,-0.15645633363664357],[122,255,64,-0.1933290130385592],[122,255,65,-0.19128086396785615],[122,255,66,-0.18913110716740777],[122,255,67,-0.18688023598352943],[122,255,68,-0.18452884086445598],[122,255,69,-0.1820776107560178],[122,255,70,-0.1795273344940021],[122,255,71,-0.17687890219329439],[122,255,72,-0.17413330663375337],[122,255,73,-0.17129164464292457],[122,255,74,-0.16835511847535367],[122,255,75,-0.16532503718880887],[122,255,76,-0.16220281801719105],[122,255,77,-0.158989987740203],[122,255,78,-0.15568818404979046],[122,255,79,-0.1522991569133063],[122,256,64,-0.18962233392084538],[122,256,65,-0.18752944130618787],[122,256,66,-0.18533652683402013],[122,256,67,-0.18304408894080954],[122,256,68,-0.18065272133702337],[122,256,69,-0.1781631143546878],[122,256,70,-0.175576056291251],[122,256,71,-0.1728924347498455],[122,256,72,-0.17011323797590427],[122,256,73,-0.16723955619023695],[122,256,74,-0.16427258291832192],[122,256,75,-0.16121361631613018],[122,256,76,-0.15806406049225608],[122,256,77,-0.1548254268264263],[122,256,78,-0.1514993352844004],[122,256,79,-0.14808751572921497],[122,257,64,-0.18587232434216594],[122,257,65,-0.18373397351201537],[122,257,66,-0.18149721099781063],[122,257,67,-0.17916254049240643],[122,257,68,-0.17673055910457347],[122,257,69,-0.17420195865751942],[122,257,70,-0.17157752698332773],[122,257,71,-0.16885814921340275],[122,257,72,-0.1660448090648835],[122,257,73,-0.1631385901231266],[122,257,74,-0.16014067712001434],[122,257,75,-0.15705235720840993],[122,257,76,-0.1538750212325254],[122,257,77,-0.15061016499428292],[122,257,78,-0.1472593905156765],[122,257,79,-0.1438244072970879],[122,258,64,-0.18208173555295704],[122,258,65,-0.17989723871178442],[122,258,66,-0.17761596365882282],[122,258,67,-0.1752384195106046],[122,258,68,-0.17276520691237862],[122,258,69,-0.17019701928669856],[122,258,70,-0.1675346440775286],[122,258,71,-0.16477896398995984],[122,258,72,-0.16193095822549514],[122,258,73,-0.15899170371300753],[122,258,74,-0.15596237633512489],[122,258,75,-0.15284425215036357],[122,258,76,-0.14963870861077877],[122,258,77,-0.14634722577520964],[122,258,78,-0.14297138751812494],[122,258,79,-0.13951288273402984],[122,259,64,-0.17825336156747829],[122,259,65,-0.1760220584138435],[122,259,66,-0.17369563279564781],[122,259,67,-0.1712745994213356],[122,259,68,-0.16875956261283154],[122,259,69,-0.1661512175033198],[122,259,70,-0.16345035123013446],[122,259,71,-0.16065784412285333],[122,259,72,-0.1577746708865545],[122,259,73,-0.15480190178033987],[122,259,74,-0.15174070379087867],[122,259,75,-0.14859234180129388],[122,259,76,-0.14535817975515786],[122,259,77,-0.14203968181567816],[122,259,78,-0.13863841352007622],[122,259,79,-0.13515604292912098],[122,260,64,-0.17439003550200693],[122,260,65,-0.17211129381014006],[122,260,66,-0.1697391066319786],[122,260,67,-0.16727399443694824],[122,260,68,-0.16471656536578178],[122,260,69,-0.16206751637663835],[122,260,70,-0.15932763438591746],[122,260,71,-0.1564977974038615],[122,260,72,-0.15357897566490641],[122,260,73,-0.1505722327528849],[122,260,74,-0.1474787267208335],[122,260,75,-0.14429971120572838],[122,260,76,-0.1410365365379173],[122,260,77,-0.13769065084532328],[122,260,78,-0.13426360115242963],[122,260,79,-0.13075703447400333],[122,261,64,-0.17049462597088716],[122,261,65,-0.16816784213625924],[122,261,66,-0.16574930996197457],[122,261,67,-0.16323955584823174],[122,261,68,-0.16063919189855197],[122,261,69,-0.15794891701340863],[122,261,70,-0.1551695179781291],[122,261,71,-0.1523018705451596],[122,261,72,-0.14934694051065794],[122,261,73,-0.14630578478551415],[122,261,74,-0.14317955246055059],[122,261,75,-0.13996948586623031],[122,261,76,-0.13667692162663536],[122,261,77,-0.1333032917077961],[122,261,78,-0.1298501244603779],[122,261,79,-0.12631904565668084],[122,262,64,-0.16657003354034172],[122,262,65,-0.1641946330897075],[122,262,66,-0.1617292005343336],[122,262,67,-0.1591742683755959],[122,262,68,-0.15653045282554062],[122,262,69,-0.15379845484722127],[122,262,70,-0.1509790611888755],[122,262,71,-0.14807314541203298],[122,262,72,-0.14508166891352042],[122,262,73,-0.14200568194146307],[122,262,74,-0.13884632460503338],[122,262,75,-0.13560482787827716],[122,262,76,-0.13228251459777807],[122,262,77,-0.12888080045424177],[122,262,78,-0.1254011949780055],[122,262,79,-0.12184530251843007],[122,263,64,-0.16261918723994567],[122,263,65,-0.16019462530633827],[122,263,66,-0.15768176549497126],[122,263,67,-0.1550811465793009],[122,263,68,-0.15239338902729888],[122,263,69,-0.1496191959877199],[122,263,70,-0.14675935426976383],[122,263,71,-0.14381473531623495],[122,263,72,-0.14078629617015215],[122,263,73,-0.13767508043492327],[122,263,74,-0.13448221922782028],[122,263,75,-0.1312089321270969],[122,263,76,-0.12785652811250342],[122,263,77,-0.12442640649928144],[122,263,78,-0.12092005786564469],[122,263,79,-0.11733906497370195],[122,264,64,-0.1586450411319697],[122,264,65,-0.1561708028951344],[122,264,66,-0.1536100178885222],[122,264,67,-0.15096323132895706],[122,264,68,-0.14823106808930753],[122,264,69,-0.14541423362992867],[122,264,70,-0.14251351492305103],[122,264,71,-0.13952978137021838],[122,264,72,-0.13646398571273],[122,264,73,-0.13331716493519924],[122,264,74,-0.1300904411619634],[122,264,75,-0.12678502254669172],[122,264,76,-0.12340220415494019],[122,264,77,-0.11994336883974122],[122,264,78,-0.11640998811022768],[122,264,79,-0.11280362299325797],[122,265,64,-0.15465057093841883],[122,265,65,-0.15212617203116668],[122,265,66,-0.14951699321847933],[122,265,67,-0.14682358633210874],[122,265,68,-0.14404658080026345],[122,265,69,-0.14118668452349947],[122,265,70,-0.13824468474309975],[122,265,71,-0.13522144890204935],[122,265,72,-0.13211792549855667],[122,265,73,-0.12893514493223868],[122,265,74,-0.12567422034270026],[122,265,75,-0.122336348440856],[122,265,76,-0.11892281033274521],[122,265,77,-0.11543497233592304],[122,265,78,-0.11187428678843553],[122,265,79,-0.10824229285033404],[122,266,64,-0.15063877072589837],[122,266,65,-0.1480637576068643],[122,266,66,-0.145405746066114],[122,266,67,-0.14266529472204365],[122,266,68,-0.1398430377100205],[122,266,69,-0.13693968550202057],[122,266,70,-0.13395602571829168],[122,266,71,-0.13089292393114843],[122,266,72,-0.1277513244608504],[122,266,73,-0.12453225116368277],[122,266,74,-0.12123680821196364],[122,266,75,-0.11786618086633621],[122,266,76,-0.11442163624008572],[122,266,77,-0.11090452405557472],[122,266,78,-0.10731627739279348],[122,266,79,-0.10365841342999133],[122,267,64,-0.1466126496481277],[122,267,65,-0.14398659994141538],[122,267,66,-0.1412793467679856],[122,267,67,-0.13849145570463817],[122,267,68,-0.1356235657469922],[122,267,69,-0.13267639007219661],[122,267,70,-0.12965071679319723],[122,267,71,-0.12654740970466166],[122,267,72,-0.12336740902052057],[122,267,73,-0.1201117321032365],[122,267,74,-0.11678147418453177],[122,267,75,-0.11337780907792966],[122,267,76,-0.10990198988284938],[122,267,77,-0.10635534968034838],[122,267,78,-0.10273930222051025],[122,267,79,-0.0990553426014415],[122,268,64,-0.14257522874631684],[122,268,65,-0.1398977515485127],[122,268,66,-0.1371408781522649],[122,268,67,-0.13430518126446295],[122,268,68,-0.13139130489524298],[122,268,69,-0.12839996506312684],[122,268,70,-0.12533195049123824],[122,268,71,-0.12218812329469886],[122,268,72,-0.1189694196591618],[122,268,73,-0.11567685051059728],[122,268,74,-0.11231150217605518],[122,268,75,-0.1088745370357661],[122,268,76,-0.10536719416631724],[122,268,77,-0.10179078997499597],[122,268,78,-0.09814671882530379],[122,268,79,-0.09443645365359726],[122,269,64,-0.13852953780730298],[122,269,65,-0.13580027396234606],[122,269,66,-0.13299343233376704],[122,269,67,-0.1301095929300431],[122,269,68,-0.12714940493116234],[122,269,69,-0.12411358733557482],[122,269,70,-0.12100292959773223],[122,269,71,-0.11781829225632257],[122,269,72,-0.114560607553158],[122,269,73,-0.11123088004282905],[122,269,74,-0.10783018719284959],[122,269,75,-0.10435967997465495],[122,269,76,-0.10082058344519113],[122,269,77,-0.09721419731918468],[122,269,78,-0.09354189653209805],[122,269,79,-0.0898051317937274],[122,270,64,-0.13447861227934627],[122,270,65,-0.131697234621732],[122,270,66,-0.12884010756758574],[122,270,67,-0.12590781859816574],[122,270,68,-0.12290102221961186],[122,270,69,-0.11982044055111962],[122,270,70,-0.11666686390320619],[122,270,71,-0.11344115134618243],[122,270,72,-0.11014423126878209],[122,270,73,-0.10677710192706935],[122,270,74,-0.10334083198333932],[122,270,75,-0.09983656103538441],[122,270,76,-0.0962655001358555],[122,270,77,-0.09262893230181402],[122,270,78,-0.08892821301447545],[122,270,79,-0.08516477070910289],[122,271,64,-0.1304254902457878],[122,271,65,-0.12759170381259327],[122,271,66,-0.12468400516154282],[122,271,67,-0.12170298941744884],[122,271,68,-0.11864931656976208],[122,271,69,-0.11552371200140571],[122,271,70,-0.1123269670072039],[122,271,71,-0.10905993930201358],[122,271,72,-0.10572355351851737],[122,271,73,-0.1023188016947934],[122,271,74,-0.0988467437513792],[122,271,75,-0.0953085079582024],[122,271,76,-0.09170529139110706],[122,271,77,-0.08803836037807106],[122,271,78,-0.08430905093511559],[122,271,79,-0.08051876919186579],[122,272,64,-0.1263732094564693],[122,272,65,-0.12348675166868095],[122,272,66,-0.12052822644734462],[122,272,67,-0.11749823673106435],[122,272,68,-0.11439744815051062],[122,272,69,-0.11122658949738551],[122,272,70,-0.10798645318247319],[122,272,71,-0.10467789568288999],[122,272,72,-0.10130183797848685],[122,272,73,-0.09785926597752603],[122,272,74,-0.09435123093134179],[122,272,75,-0.09077884983836515],[122,272,76,-0.08714330583723673],[122,272,77,-0.08344584858910431],[122,272,78,-0.07968779464910714],[122,272,79,-0.07587052782700499],[122,273,64,-0.12232480441680882],[122,273,65,-0.11938544523043643],[122,273,66,-0.11637586981034259],[122,273,67,-0.11329668907850804],[122,273,68,-0.11014857446537507],[122,273,69,-0.10693225831844139],[122,273,70,-0.10364853429942533],[122,273,71,-0.10029825777011869],[122,273,72,-0.09688234616687885],[122,273,73,-0.09340177936388344],[122,273,74,-0.08985760002485432],[122,273,75,-0.08625091394363593],[122,273,76,-0.08258289037334571],[122,273,77,-0.07885476234420025],[122,273,78,-0.07506782697001207],[122,273,79,-0.07122344574332107],[122,274,64,-0.11828330353474198],[122,274,65,-0.11529084556220198],[122,274,66,-0.11223002777810653],[122,274,67,-0.10910146925663095],[122,274,68,-0.10590584738707387],[122,274,69,-0.10264389822160846],[122,274,70,-0.09931641681108483],[122,274,71,-0.09592425752900097],[122,274,72,-0.09246833438359381],[122,274,73,-0.08894962131817524],[122,274,74,-0.08536915249941585],[122,274,75,-0.08172802259396622],[122,274,76,-0.07802738703313056],[122,274,77,-0.074268462265697],[122,274,78,-0.07045252599891927],[122,274,79,-0.06658091742761435],[122,275,64,-0.11425172632542296],[122,275,65,-0.11120600492767435],[122,275,66,-0.10809378416770732],[122,275,67,-0.10491569143982565],[122,275,68,-0.10167241025169077],[122,275,69,-0.09836468051078873],[122,275,70,-0.09499329879842255],[122,275,71,-0.09155911863134719],[122,275,72,-0.08806305071100001],[122,275,73,-0.08450606316045195],[122,275,74,-0.08088918174877802],[122,275,75,-0.07721349010324446],[122,275,76,-0.07348012990901948],[122,275,77,-0.06969030109651764],[122,275,78,-0.06584526201636937],[122,275,79,-0.06194632960198143],[122,276,64,-0.1102330806735825],[122,276,65,-0.10713396402349856],[122,276,66,-0.10397021129160156],[122,276,67,-0.1007424583592586],[122,276,68,-0.09745139501231087],[122,276,69,-0.09409776516584456],[122,276,70,-0.09068236707595723],[122,276,71,-0.08720605353863309],[122,276,72,-0.08366973207568473],[122,276,73,-0.0800743651078834],[122,276,74,-0.07642097011497723],[122,276,75,-0.07271061978299509],[122,276,76,-0.06894444213854373],[122,276,77,-0.06512362067020577],[122,276,78,-0.06124939443703281],[122,276,79,-0.05732305816409794],[122,277,64,-0.10623036015375092],[122,277,65,-0.10307774927120911],[122,277,66,-0.09986236722233],[122,277,67,-0.09658485854136462],[122,277,68,-0.09324591945234789],[122,277,69,-0.08984629803179434],[122,277,70,-0.08638679435785118],[122,277,71,-0.08286826064602315],[122,277,72,-0.07929160137142655],[122,277,73,-0.07565777337769714],[122,277,74,-0.07196778597224462],[122,277,75,-0.06822270100826011],[122,277,76,-0.06442363295317693],[122,277,77,-0.06057174894369771],[122,277,78,-0.056668268827376744],[122,277,79,-0.052714465190727255],[122,278,64,-0.1022465414082398],[122,278,65,-0.09904037016741585],[122,278,66,-0.0957732931159253],[122,278,67,-0.09244596360549506],[122,278,68,-0.0890590844584524],[122,278,69,-0.08561340806799711],[122,278,70,-0.08210973648438585],[122,278,71,-0.07854892148714604],[122,278,72,-0.07493186464327711],[122,278,73,-0.07125951735156189],[122,278,74,-0.06753288087268267],[122,278,75,-0.06375300634554731],[122,278,76,-0.05992099478952673],[122,278,77,-0.05603799709271501],[122,278,78,-0.05210521398620355],[122,278,79,-0.04812389600433575],[122,279,64,-0.09828458158278375],[122,279,65,-0.09502481669212853],[122,279,66,-0.09170601059392175],[122,279,67,-0.08832882562061384],[122,279,68,-0.08489397135289378],[122,279,69,-0.08140220465721953],[122,279,70,-0.07785432970870881],[122,279,71,-0.0742511979995148],[122,279,72,-0.0705937083326379],[122,279,73,-0.0668828068013031],[122,279,74,-0.06311948675359036],[122,279,75,-0.0593047887427301],[122,279,76,-0.05543980046276037],[122,279,77,-0.05152565666965897],[122,279,78,-0.047563539087942364],[122,279,79,-0.043554676302695494],[122,280,64,-0.09434741582004408],[122,280,65,-0.09103405677543053],[122,280,66,-0.08766351918417936],[122,280,67,-0.08423647452125449],[122,280,68,-0.08075363928563262],[122,280,69,-0.0772157749748027],[122,280,70,-0.07362368804407332],[122,280,71,-0.06997822985081059],[122,280,72,-0.06628029658355933],[122,280,73,-0.0625308291761777],[122,280,74,-0.05873081320666934],[122,280,75,-0.05488127878112975],[122,280,76,-0.050983300402500153],[122,280,77,-0.047037996824242756],[122,280,78,-0.043046530888930346],[122,280,79,-0.03901010935171295],[122,281,64,-0.09043795481087241],[122,281,65,-0.0870710338223944],[122,281,66,-0.0836487938204144],[122,281,67,-0.08017191558262993],[122,281,68,-0.07664112268597173],[122,281,69,-0.07305718141781797],[122,281,70,-0.06942090067145673],[122,281,71,-0.06573313182592039],[122,281,72,-0.061994768610146245],[122,281,73,-0.058206746951592725],[122,281,74,-0.054370044808992046],[122,281,75,-0.05048568198966241],[122,281,76,-0.04655471995106775],[122,281,77,-0.04257826158674094],[122,281,78,-0.0385574509965631],[122,281,79,-0.03449347324136204],[122,282,64,-0.08655908240323451],[122,282,65,-0.0831386642961397],[122,282,66,-0.0796647824003367],[122,282,67,-0.07613812695479305],[122,282,68,-0.07255942877368599],[122,282,69,-0.06892945909410775],[122,282,70,-0.0652490294074532],[122,282,71,-0.06151899127461902],[122,282,72,-0.05774023612496282],[122,282,73,-0.05391369503915905],[122,282,74,-0.05004033851562373],[122,282,75,-0.04612117622094042],[122,282,76,-0.04215725672396681],[122,282,77,-0.03814966721374474],[122,282,78,-0.034099533201201404],[122,282,79,-0.030008018204608244],[122,283,64,-0.08271365326899627],[122,283,65,-0.07923983535923723],[122,283,66,-0.07571440340259739],[122,283,67,-0.07213805725605521],[122,283,68,-0.06851153512983749],[122,283,69,-0.06483561337142241],[122,283,70,-0.06111110623265659],[122,283,71,-0.057338865620115365],[122,283,72,-0.053519780828656216],[122,283,73,-0.049654778258301446],[122,283,74,-0.04574482111412198],[122,283,75,-0.041790909089554296],[122,283,76,-0.037794078032832246],[122,283,77,-0.033755399596652524],[122,283,78,-0.02967598087106571],[122,283,79,-0.025556963999555815],[122,284,64,-0.07890449062846788],[122,284,65,-0.07537740257335529],[122,284,66,-0.07180054356244442],[122,284,67,-0.06817462322555884],[122,284,68,-0.06450038732717234],[122,284,69,-0.06077861748654867],[122,284,70,-0.057010130880422394],[122,284,71,-0.05319577992835073],[122,284,72,-0.04933645196068709],[122,284,73,-0.04543306886931342],[122,284,74,-0.041486586740798026],[122,284,75,-0.03749799547241933],[122,284,76,-0.0334683183707285],[122,284,77,-0.029398611732777746],[122,284,78,-0.02528996440999859],[122,284,79,-0.021143497354699614],[122,285,64,-0.07513438403261125],[122,285,65,-0.07155418765705085],[122,285,66,-0.06792605560598536],[122,285,67,-0.06425070743490108],[122,285,68,-0.06052889661999533],[122,285,69,-0.056761410214322405],[122,285,70,-0.05294906848590597],[122,285,71,-0.049092724537944],[122,285,72,-0.04519326391106221],[122,285,73,-0.041251604167748146],[122,285,74,-0.03726869445863548],[122,285,75,-0.033245515071078396],[122,285,76,-0.029183076959689108],[122,285,77,-0.025082421258964677],[122,285,78,-0.020944618777987534],[122,285,79,-0.016770769477170655],[122,286,64,-0.07140608720310662],[122,286,65,-0.06777297630190396],[122,286,66,-0.06409375604325998],[122,286,67,-0.060369156059015744],[122,286,68,-0.05659993769373051],[122,286,69,-0.05278689359673833],[122,286,70,-0.04893084729558833],[122,286,71,-0.04503265275099966],[122,286,72,-0.04109319389328275],[122,286,73,-0.03711338414036505],[122,286,74,-0.033094165897082056],[122,286,75,-0.029036510036183405],[122,286,76,-0.024941415360719116],[122,286,77,-0.020809908047936615],[122,286,78,-0.01664304107467124],[122,286,79,-0.012441893624201256],[122,287,64,-0.06772231593017808],[122,287,65,-0.06403651604689489],[122,287,66,-0.06030642302001979],[122,287,67,-0.056532776706206045],[122,287,68,-0.05271634647406126],[122,287,69,-0.04885793073204758],[122,287,70,-0.04495835643718191],[122,287,71,-0.04101847858466584],[122,287,72,-0.037039179678400175],[122,287,73,-0.033021369182518856],[122,287,74,-0.02896598295360564],[122,287,75,-0.024873982654041032],[122,287,76,-0.02074635514614792],[122,287,77,-0.016584111867262358],[122,287,78,-0.012388288185715579],[122,287,79,-0.008159942737696185],[122,288,64,-0.064085746028085],[122,288,65,-0.06034751421092813],[122,288,66,-0.056566794228117445],[122,288,67,-0.052744336307234435],[122,288,68,-0.04888091799555205],[122,288,69,-0.044977343623745863],[122,288,70,-0.041034443749814326],[122,288,71,-0.03705307458334517],[122,288,72,-0.03303411739007578],[122,288,73,-0.028978477876890396],[122,288,74,-0.024887085556907995],[122,288,75,-0.020760893095118083],[122,288,76,-0.01660087563422516],[122,288,77,-0.012408030100832718],[122,288,78,-0.00818337449195125],[122,288,79,-0.003927947141798893],[122,289,64,-0.06049901134847904],[122,289,65,-0.05670863588370828],[122,289,66,-0.052877564874714456],[122,289,67,-0.04900655906367557],[122,289,68,-0.04509640432996384],[122,289,69,-0.04114791108966387],[122,289,70,-0.03716191367470889],[122,289,71,-0.03313926969177278],[122,289,72,-0.029080859360865796],[122,289,73,-0.02498758483377836],[122,289,74,-0.02086036949202233],[122,289,75,-0.016700157224733336],[122,289,76,-0.012507911686189171],[122,289,77,-0.00828461553307877],[122,289,78,-0.0040312696415048255],[122,289,79,2.5110769631214724E-4],[122,290,64,-0.05696470185146024],[122,290,65,-0.05312250197479562],[122,290,66,-0.04924138571013145],[122,290,67,-0.04532212445535888],[122,290,68,-0.041365512574083996],[122,290,69,-0.03737236673098235],[122,290,70,-0.03334352520617756],[122,290,71,-0.02927984718878132],[122,290,72,-0.0251822120495456],[122,290,73,-0.02105151859276852],[122,290,74,-0.016888684287104938],[122,290,75,-0.012694644475744782],[122,290,76,-0.008470351565614764],[122,290,77,-0.004216774195737072],[122,290,78,6.51036152720108E-5],[122,290,79,0.004374283342593738],[122,291,64,-0.053485361734453285],[122,291,65,-0.04959168732096653],[122,291,66,-0.045660861114469986],[122,291,67,-0.04169366530702831],[122,291,68,-0.03769090289720256],[122,291,69,-0.03365339696130196],[122,291,70,-0.029581989903061295],[122,291,71,-0.025477542681885568],[122,291,72,-0.021340934019608987],[122,291,73,-0.017173059585914724],[122,291,74,-0.012974831162059275],[122,291,75,-0.008747175783372446],[122,291,76,-0.004491034860182791],[122,291,77,-2.073632773046119E-4],[122,291,78,0.004102871527930957],[122,291,79,0.00843869050913168],[122,292,64,-0.05006348761874441],[122,292,65,-0.04611871885171681],[122,292,66,-0.0421385472428388],[122,292,67,-0.03812376591405103],[122,292,68,-0.034075186648063915],[122,292,69,-0.029993639095596214],[122,292,70,-0.02587996996044331],[122,292,71,-0.02173504216251057],[122,292,72,-0.017559733978766146],[122,292,73,-0.013354938162253971],[122,292,74,-0.009121561038812731],[122,292,75,-0.004860521581974114],[122,292,76,-5.727504656853899E-4],[122,292,77,0.003740810905002251],[122,292,78,0.00807921138530232],[122,292,79,0.012441491104144359],[122,293,64,-0.04670152679386999],[122,293,65,-0.04270607381310071],[122,293,66,-0.03867695022938247],[122,293,67,-0.03461496022737698],[122,293,68,-0.03052092452149613],[122,293,69,-0.026395679499253755],[122,293,70,-0.022240076341841913],[122,293,71,-0.01805498012207518],[122,293,72,-0.013841268879650176],[122,293,73,-0.009599832673868325],[122,293,74,-0.005331572613460289],[122,293,75,-0.001037399863990901],[122,293,76,0.003281765367511791],[122,293,77,0.007624994870564339],[122,293,78,0.011991353491891288],[122,293,79,0.016379900218774085],[122,294,64,-0.04340187551976327],[122,294,65,-0.03935617804981084],[122,294,66,-0.03527852445001578],[122,294,67,-0.03116973009764748],[122,294,68,-0.02703062478461954],[122,294,69,-0.02286205179710618],[122,294,70,-0.01866486697178206],[122,294,71,-0.01443993772882414],[122,294,72,-0.010188142081629104],[122,294,73,-0.005910367623389728],[122,294,74,-0.0016075104901694809],[122,294,75,0.0027195256990428796],[122,294,76,0.007069830925659895],[122,294,77,0.011442489878059278],[122,294,78,0.015836583081408298],[122,294,79,0.020251188050774444],[122,295,64,-0.040166877386575636],[122,295,65,-0.036071404345415586],[122,295,66,-0.031945670843777696],[122,295,67,-0.027790503578371525],[122,295,68,-0.02360674156254594],[122,295,69,-0.019395235142357747],[122,295,70,-0.01515684498865548],[122,295,71,-0.010892441065323083],[122,295,72,-0.006602901573632594],[122,295,73,-0.002289111872853855],[122,295,74,0.002048036623245278],[122,295,75,0.006407647573521302],[122,295,76,0.010788820860562542],[122,295,77,0.015190653765640938],[122,295,78,0.019612242167525884],[122,295,79,0.024052681765192083],[122,296,64,-0.036998821732345935],[122,296,65,-0.03285407082092824],[122,296,66,-0.028680735292984136],[122,296,67,-0.02447965328834445],[122,296,68,-0.02025167318375201],[122,296,69,-0.015997652545595972],[122,296,70,-0.011718457058056395],[122,296,71,-0.00741495942680033],[122,296,72,-0.003088038258182782],[122,296,73,0.0012614230859022135],[122,296,74,0.005632537657886835],[122,296,75,0.010024416118621746],[122,296,76,0.014436167956061355],[122,296,77,0.018866902728397736],[122,296,78,0.023315731331664563],[122,296,79,0.02778176729183937],[122,297,64,-0.033899942118427034],[122,297,65,-0.029706439391616588],[122,297,66,-0.02548600706208444],[122,297,67,-0.021239494833219658],[122,297,68,-0.016967760585030203],[122,297,69,-0.012671669263791707],[122,297,70,-0.008352091746495025],[122,297,71,-0.004009903680241067],[122,297,72,3.540157034696567E-4],[122,297,73,0.004738784799401749],[122,297,74,0.009143520864576996],[122,297,75,0.013567341279097755],[122,297,76,0.018009364832172386],[122,297,77,0.022468713033196197],[122,297,78,0.02694451144791009],[122,297,79,0.03143589105966495],[122,298,64,-0.03087241486259236],[122,298,65,-0.026630714281975304],[122,298,66,-0.02236371729514529],[122,298,67,-0.018072285286149223],[122,298,68,-0.013757285775937461],[122,298,69,-0.009419591249202316],[122,298,70,-0.005060077955405709],[122,298,71,-6.796246841460768E-4],[122,298,72,0.0037208884851894497],[122,298,73,0.00814058145933326],[122,298,74,0.012578575432984948],[122,298,75,0.01703399421609563],[122,298,76,0.021505965586963896],[122,298,77,0.025993622670996495],[122,298,78,0.03049610534515386],[122,298,79,0.035012561668111425],[122,299,64,-0.027918357629985804],[122,299,65,-0.02362904059902471],[122,299,66,-0.019316037572125286],[122,299,67,-0.014980221727664916],[122,299,68,-0.010622470362910717],[122,299,69,-0.006243663658353979],[122,299,70,-0.0018446834156247774],[122,299,71,0.0025735882308650856],[122,299,72,0.00701027012860185],[122,299,73,0.011464483447819404],[122,299,74,0.015935353048898766],[122,299,75,0.020422008875812053],[122,299,76,0.02492358737598882],[122,299,77,0.02943923294645487],[122,299,78,0.033968099406266966],[122,299,79,0.038509351495271106],[122,300,64,-0.0250398280818278],[122,300,65,-0.02070350296385018],[122,300,66,-0.016345078523855888],[122,300,67,-0.011965439844710213],[122,300,68,-0.007565474132961762],[122,300,69,-0.0031460694210110746],[122,300,70,0.001291886757753699],[122,300,71,0.005747508720700734],[122,300,72,0.010219914014632785],[122,300,73,0.014708224821243267],[122,300,74,0.01921156938973439],[122,300,75,0.02372908349608771],[122,300,76,0.02825991192936797],[122,300,77,0.03280321000490896],[122,300,78,0.03735814510440544],[122,300,79,0.04192389824293854],[122,301,64,-0.02223882258180799],[122,301,65,-0.017856124201308853],[122,301,66,-0.013452888505652669],[122,301,67,-0.009030012588747076],[122,301,68,-0.004588393696873742],[122,301,69,-1.2892786905484635E-4],[122,301,70,0.004347491450222101],[122,301,71,0.008839974825772343],[122,301,72,0.013347638274023233],[122,301,73,0.017869604732713793],[122,301,74,0.022405005558366622],[122,301,75,0.026952982051020657],[122,301,76,0.03151268700660977],[122,301,77,0.03608328629683149],[122,301,78,0.04066396047653411],[122,301,79,0.045253906418645476],[122,302,64,-0.0195172749603142],[122,302,65,-0.015088864088059296],[122,302,66,-0.010641452329714408],[122,302,67,-0.00617594889309888],[122,302,68,-0.0016932611920605217],[122,302,69,0.002805706574563298],[122,302,70,0.007320054872239034],[122,302,71,0.011848890308130994],[122,302,72,0.01639132713665016],[122,302,73,0.020946488792999693],[122,302,74,0.025513509455107088],[122,302,75,0.03009153563342505],[122,302,76,0.03467972778898877],[122,302,77,0.039277261979574866],[122,302,78,0.043883331533987484],[122,302,79,0.048497148754498204],[122,303,64,-0.0168770553364191],[122,303,65,-0.012403618158828903],[122,303,66,-0.007912690056225496],[122,303,67,-0.003405192449441187],[122,303,68,0.0011179569549961818],[122,303,69,0.005655845646884352],[122,303,70,0.010207567823231645],[122,303,71,0.014772225927855587],[122,303,72,0.019348932219743493],[122,303,73,0.023936810370021877],[122,303,74,0.028534997087922762],[122,303,75,0.03314264377522724],[122,303,76,0.037758918209577774],[122,303,77,0.042383006256500294],[122,303,78,0.047014113610165734],[122,303,79,0.0516514675629136],[122,304,64,-0.014319968997558878],[122,304,65,-0.009802216570857525],[122,304,66,-0.005268455843097744],[122,304,67,-7.19620543378026E-4],[122,304,68,0.003843361206800829],[122,304,69,0.008419568436084452],[122,304,70,0.013008088895291361],[122,304,71,0.017608020658760014],[122,304,72,0.022218473755069745],[122,304,73,0.026838571826977894],[122,304,74,0.03146745382096647],[122,304,75,0.03610427570587425],[122,304,76,0.040748212221006636],[122,304,77,0.0453984586535677],[122,304,78,0.050054232645438304],[122,304,79,0.05471477602932942],[122,305,64,-0.011847755337041434],[122,305,65,-0.0072864230266552945],[122,305,66,-0.00271053685449142],[122,305,67,0.001878957050757371],[122,305,68,0.006481120033241947],[122,305,69,0.011095022512554346],[122,305,70,0.01571974561641177],[122,305,71,0.02035438284327195],[122,305,72,0.024998041754930034],[122,305,73,0.029649845698941468],[122,305,74,0.034308935561264256],[122,305,75,0.03897447154859435],[122,305,76,0.04364563500078962],[122,305,77,0.0483216302332234],[122,305,78,0.05300168640909553],[122,305,79,0.057685059441725105],[122,306,64,-0.009462086849313503],[122,306,65,-0.004857933755000193],[122,306,66,-2.406522280412153E-4],[122,306,67,0.0043887991159485],[122,306,68,0.009029470970412418],[122,306,69,0.013680424999989817],[122,306,70,0.018340735533349126],[122,306,71,0.02300949128655922],[122,306,72,0.02768579711705279],[122,306,73,0.03236877580802125],[122,306,74,0.03705756988364056],[122,306,75,0.04175134345459576],[122,306,76,0.046449284094303676],[122,306,77,0.05115060474567325],[122,306,78,0.05585454565843142],[122,306,79,0.06056037635704011],[122,307,64,-0.007164568182924321],[122,307,65,-0.0025183765501170657],[122,307,66,0.0021395478992737096],[122,307,67,0.0068082339794548336],[122,307,68,0.011486721619913903],[122,307,69,0.016174063586560504],[122,307,70,0.020869327234169642],[122,307,71,0.025571596289973048],[122,307,72,0.030279972668447896],[122,307,73,0.034993578317144065],[122,307,74,0.03971155709395121],[122,307,75,0.04443307667527],[122,307,76,0.04915733049548916],[122,307,77,0.05388353971760812],[122,307,78,0.058610955235031015],[122,307,79,0.06333885970456049],[122,308,64,-0.00495673525131534],[122,308,65,-2.69309869164229E-4],[122,308,66,0.00442848330648489],[122,308,67,0.009135660440548199],[122,308,68,0.01385125058851263],[122,308,69,0.01857429747601759],[122,308,70,0.02330386131034532],[122,308,71,0.028039020623665013],[122,308,72,0.03277887414808043],[122,308,73,0.03752254272232046],[122,308,74,0.042269171230477715],[122,308,75,0.04701793057225476],[122,308,76,0.051768019665123705],[122,308,77,0.05651866747823564],[122,308,78,0.061269135098109107],[122,308,79,0.06601871782612219],[122,309,64,-0.002840054401364714],[122,309,65,0.0018877780120385781],[122,309,66,0.0066246445452861],[122,309,67,0.01136954863909994],[122,309,68,0.0161215083682162],[122,309,69,0.02087955827881588],[122,309,70,0.02564275125847268],[122,309,71,0.030410160438455444],[122,309,72,0.035180881128440325],[122,309,73,0.03995403278346921],[122,309,74,0.04472876100356102],[122,309,75,0.04950423956543458],[122,309,76,0.054279672486748434],[122,309,77,0.05905429612269608],[122,309,78,0.0638273812949829],[122,309,79,0.06859823545321257],[122,310,64,-8.159216396394359E-4],[122,310,65,0.0039514697850965425],[122,310,66,0.008726593738033916],[122,310,67,0.013508440865072288],[122,310,68,0.018296018156829075],[122,310,69,0.02308835084330549],[122,310,70,0.027884484321671524],[122,310,71,0.032683486117009025],[122,310,72,0.03748444787606599],[122,310,73,0.042286487393859484],[122,310,74,0.04708875067353545],[122,310,75,0.05189041401893921],[122,310,76,0.05669068616030919],[122,310,77,0.06148881041292453],[122,310,78,0.06628406686874055],[122,310,79,0.0710757746210326],[122,311,64,0.0011143380835369615],[122,311,65,0.005920419836822732],[122,311,66,0.010732965316980175],[122,311,67,0.015550952308793983],[122,311,68,0.02037337661886522],[122,311,69,0.02519925402687012],[122,311,70,0.03002762227053879],[122,311,71,0.03485754306419277],[122,311,72,0.03968810415089424],[122,311,73,0.04451842138804263],[122,311,74,0.04934764086683045],[122,311,75,0.054174941065009044],[122,311,76,0.05899953503337728],[122,311,77,0.06382067261582595],[122,311,78,0.06863764270296861],[122,311,79,0.07344977551938284],[122,312,64,0.002949471532258968],[122,312,65,0.007793354918782289],[122,312,66,0.01264246670480089],[122,312,67,0.017495771752087802],[122,312,68,0.022352254586883363],[122,312,69,0.02721092140708002],[122,312,70,0.032070802123725844],[122,312,71,0.03693095243668505],[122,312,72,0.04179045594450734],[122,312,73,0.0466484262883424],[122,312,74,0.05150400933031382],[122,312,75,0.05635638536579764],[122,312,76,0.061204771370024696],[122,312,77,0.0660484232788343],[122,312,78,0.07088663830361443],[122,312,79,0.07571875728044844],[122,313,64,0.00468829778550213],[122,313,65,0.009569074758641619],[122,313,66,0.01445387893646699],[122,313,67,0.019341662200293555],[122,313,68,0.02423139770329183],[122,313,69,0.029122081932905844],[122,313,70,0.03401273680818806],[122,313,71,0.03890241181188421],[122,313,72,0.04379018615732505],[122,313,73,0.048675170989956204],[122,313,74,0.05355651162392479],[122,313,75,0.0584333898131654],[122,313,76,0.06330502605740398],[122,313,77,0.06817068194291126],[122,313,78,0.07302966251803483],[122,313,79,0.07788131870353643],[122,314,64,0.006329708779769502],[122,314,65,0.011246452613218258],[122,314,66,0.016166057222349442],[122,314,67,0.021087461455079545],[122,314,68,0.026009627002513858],[122,314,69,0.0309315405158839],[122,314,70,0.03585221575899203],[122,314,71,0.040770695796002135],[122,314,72,0.04568605521462679],[122,314,73,0.050597402384546936],[122,314,74,0.05550388175148016],[122,314,75,0.06040467616634104],[122,314,76,0.06529900924991253],[122,314,77,0.07018614779285837],[122,314,78,0.07506540419110824],[122,314,79,0.0799361389166394],[122,315,64,0.00787266979401087],[122,315,65,0.012824435763319],[122,315,66,0.01777793145264947],[122,315,67,0.022732082628132935],[122,315,68,0.027685839433605336],[122,315,69,0.032638178561323145],[122,315,70,0.037588105458776805],[122,315,71,0.04253465657143907],[122,315,72,0.04747690162150109],[122,315,73,0.0524139459224269],[122,315,74,0.0573449327297513],[122,315,75,0.062269045627554864],[122,315,76,0.06718551095104203],[122,315,77,0.07209360024504874],[122,315,78,0.07699263275851306],[122,315,79,0.08188197797493171],[122,316,64,0.009316219876752546],[122,316,65,0.01430204595030643],[122,316,66,0.01928850664309137],[122,316,67,0.024274514595667263],[122,316,68,0.029259008323260283],[122,316,69,0.03424095443949349],[122,316,70,0.03921934991680298],[122,316,71,0.044193224383374724],[122,316,72,0.049161642456654275],[122,316,73,0.05412370611326328],[122,316,74,0.059078557095744694],[122,316,75,0.06402537935557132],[122,316,76,0.06896340153284364],[122,316,77,0.0738918994725046],[122,316,78,0.07881019877710208],[122,316,79,0.08371767739612515],[122,317,64,0.010659472215511806],[122,317,65,0.015678379754466953],[122,317,66,0.020696863321954834],[122,317,67,0.025713822393823388],[122,317,68,0.030728183779284185],[122,317,69,0.03573890389687137],[122,317,70,0.04074497108767125],[122,317,71,0.04574540796565418],[122,317,72,0.05073927380516338],[122,317,73,0.05572566696539147],[122,317,74,0.060703727352271225],[122,317,75,0.06567263891720954],[122,317,76,0.07063163219309648],[122,317,77,0.07557998686741099],[122,317,78,0.08051703439246058],[122,317,79,0.0854421606327741],[122,318,64,0.011901614448408593],[122,318,65,0.01695260891509237],[122,318,66,0.02200215785835266],[122,318,67,0.027049147554870173],[122,318,68,0.032092493034439395],[122,318,69,0.037131140407348745],[122,318,70,0.04216406922961061],[122,318,71,0.04719029490587365],[122,318,72,0.05220887113007047],[122,318,73,0.05721889236363284],[122,318,74,0.06221949635169924],[122,318,75,0.06720986667674611],[122,318,76,0.07218923535007174],[122,318,77,0.07715688544095758],[122,318,78,0.08211215374354067],[122,318,79,0.08705443348142111],[122,319,64,0.013041908918022649],[122,319,65,0.01812398059232423],[122,319,66,0.02320362273180926],[122,319,67,0.028279708384258667],[122,319,68,0.03335114073071607],[122,319,69,0.038416855463458466],[122,319,70,0.04347582320239435],[122,319,71,0.04852705194971821],[122,319,72,0.05356958958287669],[122,319,73,0.058602526385674314],[122,319,74,0.06362499761795162],[122,319,75,0.06863618612325795],[122,319,76,0.07363532497495437],[122,319,77,0.07862170016056774],[122,319,78,0.08359465330443316],[122,319,79,0.08855358442864378],[123,-64,64,-0.14509199704865683],[123,-64,65,-0.1489274679375645],[123,-64,66,-0.1526429573550382],[123,-64,67,-0.1562370090114269],[123,-64,68,-0.15970833107234417],[123,-64,69,-0.16305580200462944],[123,-64,70,-0.16627847648725202],[123,-64,71,-0.16937559138706404],[123,-64,72,-0.17234657179941537],[123,-64,73,-0.17519103715353657],[123,-64,74,-0.17790880738295178],[123,-64,75,-0.18049990916056313],[123,-64,76,-0.18296458219868916],[123,-64,77,-0.1853032856139225],[123,-64,78,-0.18751670435685852],[123,-64,79,-0.1896057557066726],[123,-63,64,-0.13951448038127512],[123,-63,65,-0.1433379016472316],[123,-63,66,-0.14704190417609608],[123,-63,67,-0.15062502900749142],[123,-63,68,-0.15408598109702076],[123,-63,69,-0.15742363515437297],[123,-63,70,-0.16063704154638714],[123,-63,71,-0.16372543226498093],[123,-63,72,-0.16668822695995456],[123,-63,73,-0.16952503903658567],[123,-63,74,-0.17223568181826132],[123,-63,75,-0.1748201747738033],[123,-63,76,-0.17727874980976221],[123,-63,77,-0.17961185762754506],[123,-63,78,-0.18182017414543128],[123,-63,79,-0.1839046069854522],[123,-62,64,-0.1338548160057048],[123,-62,65,-0.13766542165379292],[123,-62,66,-0.14135719933854307],[123,-62,67,-0.14492868732690556],[123,-62,68,-0.14837858723489594],[123,-62,69,-0.15170576985738893],[123,-62,70,-0.1549092810628866],[123,-62,71,-0.15798834775316573],[123,-62,72,-0.16094238388781812],[123,-62,73,-0.16377099657359628],[123,-62,74,-0.16647399221881032],[123,-62,75,-0.16905138275243703],[123,-62,76,-0.17150339190821107],[123,-62,77,-0.17383046157356452],[123,-62,78,-0.17603325820347482],[123,-62,79,-0.1781126792991865],[123,-61,64,-0.1281172946426291],[123,-61,65,-0.13191432605944842],[123,-61,66,-0.13559314801004874],[123,-61,67,-0.1391522958881457],[123,-61,68,-0.1425904678422809],[123,-61,69,-0.145906530596851],[123,-61,70,-0.14909952533812976],[123,-61,71,-0.15216867366518327],[123,-61,72,-0.15511338360569504],[123,-61,73,-0.15793325569660777],[123,-61,74,-0.16062808912983728],[123,-61,75,-0.16319788796271006],[123,-61,76,-0.16564286739339873],[123,-61,77,-0.16796346010122432],[123,-61,78,-0.1701603226518762],[123,-61,79,-0.17223434196752851],[123,-60,64,-0.12230625376758586],[123,-60,65,-0.1260889602195724],[123,-60,66,-0.12975410309162339],[123,-60,67,-0.13330021480510879],[123,-60,68,-0.13672598991498142],[123,-60,69,-0.14003029092159902],[123,-60,70,-0.1432121541475515],[123,-60,71,-0.14627079567939905],[123,-60,72,-0.14920561737433213],[123,-60,73,-0.1520162129316679],[123,-60,74,-0.15470237402942832],[123,-60,75,-0.15726409652566087],[123,-60,76,-0.15970158672477197],[123,-60,77,-0.16201526770873953],[123,-60,78,-0.16420578573326305],[123,-60,79,-0.1662740166888197],[123,-59,64,-0.1164260727170322],[123,-59,65,-0.12019371183897753],[123,-59,66,-0.12384446030448959],[123,-59,67,-0.12737684746499567],[123,-59,68,-0.130789564157601],[123,-59,69,-0.1340814685072642],[123,-59,70,-0.1372515917939895],[123,-59,71,-0.14029914438494417],[123,-59,72,-0.14322352173151498],[123,-59,73,-0.14602431043121344],[123,-59,74,-0.14870129435468105],[123,-59,75,-0.15125446083744698],[123,-59,76,-0.15368400693671758],[123,-59,77,-0.15599034575305815],[123,-59,78,-0.1581741128170273],[123,-59,79,-0.1602361725407313],[123,-58,64,-0.11048116766868987],[123,-58,65,-0.11423300594197927],[123,-58,66,-0.1178686531502956],[123,-58,67,-0.12138663547910078],[123,-58,68,-0.12478563992532898],[123,-58,69,-0.12806452008947666],[123,-58,70,-0.13122230203272667],[123,-58,71,-0.1342581901990093],[123,-58,72,-0.1371715734020178],[123,-58,73,-0.13996203087708836],[123,-58,74,-0.14262933839819092],[123,-58,75,-0.14517347445969442],[123,-58,76,-0.14759462652316913],[123,-58,77,-0.14989319732910322],[123,-58,78,-0.15206981127358243],[123,-58,79,-0.15412532084990604],[123,-57,64,-0.10447598649648393],[123,-57,65,-0.10821129971658083],[123,-57,66,-0.11183114774498992],[123,-57,67,-0.11533405350682169],[123,-57,68,-0.11871870003852536],[123,-57,69,-0.12198393626946513],[123,-57,70,-0.12512878286854456],[123,-57,71,-0.12815243815578248],[123,-57,72,-0.1310542840788571],[123,-57,73,-0.1338338922545288],[123,-57,74,-0.13649103007519126],[123,-57,75,-0.13902566688020412],[123,-57,76,-0.14143798019228515],[123,-57,77,-0.14372836201882555],[123,-57,78,-0.14589742521818283],[123,-57,79,-0.1479460099309282],[123,-56,64,-0.09841500349993093],[123,-56,65,-0.10213307723262921],[123,-56,66,-0.10573643752621098],[123,-56,67,-0.10922360395274344],[123,-56,68,-0.11259325546996257],[123,-56,69,-0.11584423619191175],[123,-56,70,-0.11897556122464259],[123,-56,71,-0.12198642256688297],[123,-56,72,-0.12487619507568393],[123,-56,73,-0.12764444249696416],[123,-56,74,-0.13029092356119032],[123,-56,75,-0.13281559814385924],[123,-56,76,-0.135218633491049],[123,-56,77,-0.13750041050991102],[123,-56,78,-0.1396615301241496],[123,-56,79,-0.14170281969447296],[123,-55,64,-0.0923027140078192],[123,-55,65,-0.0960028440337869],[123,-55,66,-0.09958903783403295],[123,-55,67,-0.10305981153664001],[123,-55,68,-0.1064138399045591],[123,-55,69,-0.10964996209489397],[123,-55,70,-0.11276718748326231],[123,-55,71,-0.11576470155313534],[123,-55,72,-0.11864187185017439],[123,-55,73,-0.12139825400147275],[123,-55,74,-0.12403359779995271],[123,-55,75,-0.12654785335357455],[123,-55,76,-0.1289411772996305],[123,-55,77,-0.13121393908398948],[123,-55,78,-0.13336672730535015],[123,-55,79,-0.13540035612447143],[123,-54,64,-0.08614362885648652],[123,-54,65,-0.08982512160362544],[123,-54,66,-0.09339348036537687],[123,-54,67,-0.09684721773670113],[123,-54,68,-0.10018500417191878],[123,-54,69,-0.10340567373223075],[123,-54,70,-0.10650822989832753],[123,-54,71,-0.10949185144799223],[123,-54,72,-0.11235589839871074],[123,-54,73,-0.11509991801520514],[123,-54,74,-0.11772365088213144],[123,-54,75,-0.12022703704160409],[123,-54,76,-0.12261022219582107],[123,-54,77,-0.12487356397464988],[123,-54,78,-0.1270176382682363],[123,-54,79,-0.12904324562460534],[123,-53,64,-0.07994226874254773],[123,-53,65,-0.08360444170569292],[123,-53,66,-0.08715430750193587],[123,-53,67,-0.09059037510583412],[123,-53,68,-0.0939113105515248],[123,-53,69,-0.09711594266807833],[123,-53,70,-0.10020326887995312],[123,-53,71,-0.10317246107245426],[123,-53,72,-0.10602287152221757],[123,-53,73,-0.10875403889262547],[123,-53,74,-0.11136569429440235],[123,-53,75,-0.11385776741105003],[123,-53,76,-0.11623039268939583],[123,-53,77,-0.1184839155951165],[123,-53,78,-0.1206188989332947],[123,-53,79,-0.12263612923398504],[123,-52,64,-0.07370315844991038],[123,-52,65,-0.0773453405973904],[123,-52,66,-0.0808760665114534],[123,-52,67,-0.0842938414608777],[123,-52,68,-0.0875973269504211],[123,-52,69,-0.09078534644361214],[123,-52,70,-0.09385689115064955],[123,-52,71,-0.09681112588132434],[123,-52,72,-0.09964739496297759],[123,-52,73,-0.10236522822340188],[123,-52,74,-0.1049643470389352],[123,-52,75,-0.10744467044741068],[123,-52,76,-0.10980632132622892],[123,-52,77,-0.11204963263541745],[123,-52,78,-0.11417515372574238],[123,-52,79,-0.11618365671183328],[123,-51,64,-0.06743082095139075],[123,-51,65,-0.07105235311797564],[123,-51,66,-0.0745633036226685],[123,-51,67,-0.07796217394504501],[123,-51,68,-0.0812476209537063],[123,-51,69,-0.08441846261611419],[123,-51,70,-0.08747368377355147],[123,-51,71,-0.09041244198111442],[123,-51,72,-0.0932340734127527],[123,-51,73,-0.0959380988312688],[123,-51,74,-0.09852422962351948],[123,-51,75,-0.1009923739004881],[123,-51,76,-0.10334264266248683],[123,-51,77,-0.10557535602936763],[123,-51,78,-0.1076910495357879],[123,-51,79,-0.10969048049150931],[123,-50,64,-0.06112977138478204],[123,-50,65,-0.0647300066505403],[123,-50,66,-0.06822055797377824],[123,-50,67,-0.07159992296344353],[123,-50,68,-0.07486675374767715],[123,-50,69,-0.07801986267031269],[123,-50,70,-0.08105822805251295],[123,-50,71,-0.08398100001945163],[123,-50,72,-0.08678750639205346],[123,-50,73,-0.08947725864370881],[123,-50,74,-0.0920499579221975],[123,-50,75,-0.09450550113650003],[123,-50,76,-0.0968439871087513],[123,-50,77,-0.09906572279121129],[123,-50,78,-0.1011712295483056],[123,-50,79,-0.10316124950371064],[123,-49,64,-0.05480451090320293],[123,-49,65,-0.058382814957792406],[123,-49,66,-0.06185235543424661],[123,-49,67,-0.06521162599150021],[123,-49,68,-0.06845927391546158],[123,-49,69,-0.07159410580180181],[123,-49,70,-0.07461509330389471],[123,-49,71,-0.07752137894581179],[123,-49,72,-0.08031228200038865],[123,-49,73,-0.08298730443227698],[123,-49,74,-0.08554613690622037],[123,-49,75,-0.0879886648602245],[123,-49,76,-0.09031497464388671],[123,-49,77,-0.09252535972175058],[123,-49,78,-0.09462032694174516],[123,-49,79,-0.09660060286867989],[123,-48,64,-0.04845952040005619],[123,-48,65,-0.05201527189197108],[123,-48,66,-0.05546320230028812],[123,-48,67,-0.05880180125662415],[123,-48,68,-0.062029711105463625],[123,-48,69,-0.06514573257287459],[123,-48,70,-0.06814883050038256],[123,-48,71,-0.07103813964391392],[123,-48,72,-0.07381297053782099],[123,-48,73,-0.07647281542390583],[123,-48,74,-0.07901735424567624],[123,-48,75,-0.08144646070751194],[123,-48,76,-0.08376020839899778],[123,-48,77,-0.08595887698429783],[123,-48,78,-0.08804295845662069],[123,-48,79,-0.09001316345775523],[123,-47,64,-0.04209925410843118],[123,-47,65,-0.04563184497873052],[123,-47,66,-0.04905757886386286],[123,-47,67,-0.052374941292938404],[123,-47,68,-0.05558256957245933],[123,-47,69,-0.058679258440600734],[123,-47,70,-0.061663965786664],[123,-47,71,-0.0645358184356073],[123,-47,72,-0.06729411799767315],[123,-47,73,-0.06993834678302135],[123,-47,74,-0.07246817378160963],[123,-47,75,-0.07488346070799368],[123,-47,76,-0.07718426811130474],[123,-47,77,-0.07937086155028017],[123,-47,78,-0.08144371783339954],[123,-47,79,-0.08340353132409639],[123,-46,64,-0.035728133074792945],[123,-46,65,-0.03923696887483208],[123,-46,66,-0.04263993285501999],[123,-46,67,-0.04593550636892396],[123,-46,68,-0.049122321591179796],[123,-46,69,-0.052199167156990134],[123,-46,70,-0.05516499386680418],[123,-46,71,-0.05801892045609036],[123,-46,72,-0.06076023943020814],[123,-46,73,-0.06338842296430791],[123,-46,74,-0.06590312886847838],[123,-46,75,-0.06830420661783065],[123,-46,76,-0.07059170344777121],[123,-46,77,-0.07276587051433558],[123,-46,78,-0.0748271691196386],[123,-46,79,-0.07677627700241652],[123,-45,64,-0.029350538507276203],[123,-45,65,-0.032835038699966845],[123,-45,66,-0.036214672757915234],[123,-45,67,-0.03948791778829419],[123,-45,68,-0.04265340074270685],[123,-45,69,-0.04570990404156372],[123,-45,70,-0.048656371263648523],[123,-45,71,-0.0514919129007857],[123,-45,72,-0.054215812177623834],[123,-45,73,-0.05682753093644943],[123,-45,74,-0.059326715587266876],[123,-45,75,-0.061713203122820914],[123,-45,76,-0.06398702719881832],[123,-45,77,-0.06614842427922574],[123,-45,78,-0.06819783984668859],[123,-45,79,-0.07013593467805679],[123,-44,64,-0.022970804998428074],[123,-44,65,-0.026430403242548528],[123,-44,66,-0.029786161000342593],[123,-44,67,-0.03303655106394654],[123,-44,68,-0.03618019507352266],[123,-44,69,-0.03921586912617803],[123,-44,70,-0.042142509450085575],[123,-44,71,-0.04495921814371506],[123,-44,72,-0.04766526898018941],[123,-44,73,-0.05026011327668578],[123,-44,74,-0.05274338582910776],[123,-44,75,-0.05511491091171483],[123,-44,76,-0.057374708341960234],[123,-44,77,-0.059522999610410965],[123,-44,78,-0.061560214075808806],[123,-44,79,-0.06348699522523815],[123,-43,64,-0.01659321362223276],[123,-43,65,-0.02002735803931399],[123,-43,66,-0.02335870701660947],[123,-43,67,-0.02658572896481759],[123,-43,68,-0.02970704012704084],[123,-43,69,-0.03272141017192476],[123,-43,70,-0.03562776785200905],[123,-43,71,-0.03842520672719718],[123,-43,72,-0.041112990953363404],[123,-43,73,-0.04369056113601322],[123,-43,74,-0.04615754024922469],[123,-43,75,-0.04851373961955874],[123,-43,76,-0.05075916497518518],[123,-43,77,-0.052894022560105336],[123,-43,78,-0.05491872531351982],[123,-43,79,-0.05683389911431713],[123,-42,64,-0.010221984905746107],[123,-42,65,-0.013630138329055352],[123,-42,66,-0.01693656018409251],[123,-42,67,-0.020139714435977618],[123,-42,68,-0.023238211847957158],[123,-42,69,-0.02623081555844886],[123,-42,70,-0.02911644672330571],[123,-42,71,-0.031894190223211716],[123,-42,72,-0.03456330043622169],[123,-42,73,-0.037123207075366316],[123,-42,74,-0.03957352109154655],[123,-42,75,-0.04191404064140647],[123,-42,76,-0.044144757120432976],[123,-42,77,-0.04626586126116039],[123,-42,78,-0.04827774929653139],[123,-42,79,-0.050181029188386406],[123,-41,64,-0.003861271675171807],[123,-41,65,-0.007242911880319003],[123,-41,66,-0.010523902633297721],[123,-41,67,-0.013702703391791915],[123,-41,68,-0.01677791935924544],[123,-41,69,-0.019748307045506674],[123,-41,70,-0.022612779892702606],[123,-41,71,-0.025370413966250616],[123,-41,72,-0.028020453711027238],[123,-41,73,-0.030562317772609315],[123,-41,74,-0.03299560488381492],[123,-41,75,-0.03532009981623119],[123,-41,76,-0.037535779396980384],[123,-41,77,-0.03964281859059793],[123,-41,78,-0.04164159664607614],[123,-41,79,-0.043532703309048904],[123,-40,64,0.002484848223770375],[123,-40,65,-8.697716929176869E-4],[123,-40,66,-0.004124841931278045],[123,-40,67,-0.007278817381998315],[123,-40,68,-0.010330297611645611],[123,-40,69,-0.013278032406615958],[123,-40,70,-0.016120927382317962],[123,-40,71,-0.018858049657507592],[123,-40,72,-0.02148863359378539],[123,-40,73,-0.024012086600178506],[123,-40,74,-0.026427995003027505],[123,-40,75,-0.028736129980873937],[123,-40,76,-0.030936453564590738],[123,-40,77,-0.03302912470263686],[123,-40,78,-0.03501450539148521],[123,-40,79,-0.03689316687120081],[123,-39,64,0.008812379330878306],[123,-39,65,0.005485271426432181],[123,-39,66,0.00225659636128428],[123,-39,67,-8.72096131009914E-4],[123,-39,68,-0.0038993999059599993],[123,-39,69,-0.006824057935106875],[123,-39,70,-0.009644967898230328],[123,-39,71,-0.012361187840717713],[123,-39,72,-0.014971941896102514],[123,-39,73,-0.017476626073697377],[123,-39,74,-0.019874814111540462],[123,-39,75,-0.022166263394351127],[123,-39,76,-0.024350920936737408],[123,-39,77,-0.026428929431535853],[123,-39,78,-0.02840063336333487],[123,-39,79,-0.030266585187155304],[123,-38,64,0.015117416102047088],[123,-38,65,0.011818296414499274],[123,-38,66,0.008616476259475814],[123,-38,67,0.005513510049700576],[123,-38,68,0.002510809711993911],[123,-38,69,-3.903608224296029E-4],[123,-38,70,-0.0031888911929172092],[123,-38,71,-0.0058838302494997885],[123,-38,72,-0.008474391758194866],[123,-38,73,-0.010959960171411098],[123,-38,74,-0.013340096463674067],[123,-38,75,-0.015614544032371391],[123,-38,76,-0.017783234663756864],[123,-38,77,-0.019846294564096034],[123,-38,78,-0.021804050456002755],[123,-38,79,-0.023657035739942933],[123,-37,64,0.02139615056556954],[123,-37,65,0.018125479628119723],[123,-37,66,0.014950959050206158],[123,-37,67,0.011874147976314586],[123,-37,68,0.008896464183949404],[123,-37,69,0.006019178591461505],[123,-37,70,0.0032434097006145413],[123,-37,71,5.701179739769913E-4],[123,-37,72,-0.0019998998528744094],[123,-37,73,-0.004466016524262928],[123,-37,74,-0.00682778008264584],[123,-37,75,-0.009084919751879417],[123,-37,76,-0.011237351885748592],[123,-37,77,-0.013285185981648628],[123,-37,78,-0.01522873075946285],[123,-37,79,-0.01706850030561813],[123,-36,64,0.0276448801038085],[123,-36,65,0.02440310264663159],[123,-36,66,0.021256311114568383],[123,-36,67,0.01820606943412606],[123,-36,68,0.0152538012989204],[123,-36,69,0.012400784695291267],[123,-36,70,0.009648146362650545],[123,-36,71,0.006996856188647316],[123,-36,72,0.004447721539136862],[123,-36,73,0.002001381523030754],[123,-36,74,-3.416988081879069E-4],[123,-36,75,-0.002581234325986781],[123,-36,76,-0.004717125755580254],[123,-36,77,-0.006749465671883392],[123,-36,78,-0.008678544560671964],[123,-36,79,-0.010504856944926644],[123,-35,64,0.03386001536053118],[123,-35,65,0.030647560200445012],[123,-35,66,0.027528911876794737],[123,-35,67,0.024505639146035207],[123,-35,68,0.02157917168039114],[123,-35,69,0.018750794611509414],[123,-35,70,0.01602164300883857],[123,-35,71,0.013392696292816808],[123,-35,72,0.010864772582856563],[123,-35,73,0.008438522980202534],[123,-35,74,0.006114425785447963],[123,-35,75,0.003892780651005734],[123,-35,76,0.001773702668297239],[123,-35,77,-2.4288361022262173E-4],[123,-35,78,-0.0021572502142551686],[123,-35,79,-0.00396987186403841],[123,-34,64,0.04003808827369404],[123,-34,65,0.036855368225539364],[123,-34,66,0.03376526187959794],[123,-34,67,0.030769342867867033],[123,-34,68,0.027869046900749428],[123,-34,69,0.025065666328983105],[123,-34,70,0.022360344640290797],[123,-34,71,0.01975407089083092],[123,-34,72,0.01724767407143979],[123,-34,73,0.014841817408735691],[123,-34,74,0.012536992600880037],[123,-34,75,0.010333513988280196],[123,-34,76,0.0082315126590079],[123,-34,77,0.006230930489042774],[123,-34,78,0.004331514117296598],[123,-34,79,0.0025328088554380512],[123,-33,64,0.04617576023395176],[123,-33,65,0.04302317204416328],[123,-33,66,0.0399619909861727],[123,-33,67,0.03699379561079019],[123,-33,68,0.03412002772324407],[123,-33,69,0.031341986963617785],[123,-33,70,0.02866082532199865],[123,-33,71,0.026077541588424236],[123,-33,72,0.023592975737609545],[123,-33,73,0.02120780324853222],[123,-33,74,0.01892252935866623],[123,-33,75,0.016737483253151053],[123,-33,76,0.014652812188668873],[123,-33,77,0.012668475552141456],[123,-33,78,0.01078423885419899],[123,-33,79,0.008999667657444421],[123,-32,64,0.05226983036856836],[123,-32,65,0.04914775467141064],[123,-32,66,0.04611586670853085],[123,-32,67,0.04317574999050877],[123,-32,68,0.040328852471135046],[123,-32,69,0.03757648114657275],[123,-32,70,0.03491979658922928],[123,-32,71,0.032359807416415975],[123,-32,72,0.029897364693783124],[123,-32,73,0.027533156273606862],[123,-32,74,0.025267701067716697],[123,-32,75,0.0231013432553534],[123,-32,76,0.021034246425728154],[123,-32,77,0.019066387655393258],[123,-32,78,0.017197551520380272],[123,-32,79,0.015427324043126522],[123,-31,64,0.058317243950879005],[123,-31,65,0.05522604524782504],[123,-31,66,0.052223802662323404],[123,-31,67,0.04931210470338154],[123,-31,68,0.046492405524191316],[123,-31,69,0.04376601954022907],[123,-31,70,0.041134115982057406],[123,-31,71,0.0385977133829114],[123,-31,72,0.03615767400105274],[123,-31,73,0.03381469817696858],[123,-31,74,0.031569318625206066],[123,-31,75,0.029421894661131542],[123,-31,76,0.027372606362382146],[123,-31,77,0.02542144866512508],[123,-31,78,0.02356822539507797],[123,-31,79,0.021812543233309833],[123,-30,64,0.06431510093546555],[123,-30,65,0.06125512759819418],[123,-30,66,0.05828286714831121],[123,-30,67,0.05539991312962789],[123,-30,68,0.052607725942701355],[123,-30,69,0.04990762748207189],[123,-30,70,0.04730079570819845],[123,-30,71,0.04478825915417062],[123,-30,72,0.04237089136718364],[123,-30,73,0.04004940528485201],[123,-30,74,0.0378243475461536],[123,-30,75,0.035696092737290575],[123,-30,76,0.03366483757223859],[123,-30,77,0.03173059500809716],[123,-30,78,0.029893188295194828],[123,-30,79,0.028152244961968775],[123,-29,64,0.07026066461872427],[123,-29,65,0.06723224891621304],[123,-29,66,0.06429029186016078],[123,-29,67,0.061436392063300205],[123,-29,68,0.05867201621866569],[123,-29,69,0.05599849375616017],[123,-29,70,0.053417011433814165],[123,-29,71,0.05092860786381648],[123,-29,72,0.04853416797330157],[123,-29,73,0.04623441739997025],[123,-29,74,0.044029916822336035],[123,-29,75,0.04192105622488029],[123,-29,76,0.039908049097892584],[123,-29,77,0.037990926572105566],[123,-29,78,0.03616953148807822],[123,-29,79,0.03444351240034982],[123,-28,64,0.07615137042499565],[123,-28,65,0.07315482857518452],[123,-28,66,0.0702434807187371],[123,-28,67,0.06741893056919179],[123,-28,68,0.0646826511543509],[123,-28,69,0.062035979492358395],[123,-28,70,0.05948011120246455],[123,-28,71,0.057016095050556936],[123,-28,72,0.054644827429443876],[123,-28,73,0.052367046773962755],[123,-28,74,0.05018332791071267],[123,-28,75,0.048094076342687475],[123,-28,76,0.046099522468590726],[123,-28,77,0.044199715736937706],[123,-28,78,0.042394518734901965],[123,-28,79,0.04068360121192782],[123,-27,64,0.08198483481839602],[123,-27,65,0.07902046706489996],[123,-27,66,0.0761400188330339],[123,-27,67,0.07334509896682284],[123,-27,68,0.07063718686834097],[123,-27,69,0.06801762719347137],[123,-27,70,0.06548762448234913],[123,-27,71,0.06304823772456547],[123,-27,72,0.06070037485911828],[123,-27,73,0.058444787209183224],[123,-27,74,0.05628206385150525],[123,-27,75,0.0542126259206831],[123,-27,76,0.052236720848132245],[123,-27,77,0.05035441653582895],[123,-27,78,0.04856559546479611],[123,-27,79,0.0468699487383456],[123,-26,64,0.08775886434005264],[123,-26,65,0.08482695505439841],[123,-26,66,0.08197768158744012],[123,-26,67,0.07921265794120158],[123,-26,68,0.07653336992878534],[123,-26,69,0.07394116988997768],[123,-26,70,0.07143727134153222],[123,-26,71,0.06902274356220961],[123,-26,72,0.06669850611256012],[123,-26,73,0.0644653232895196],[123,-26,74,0.06232379851562386],[123,-26,75,0.06027436866311009],[123,-26,76,0.0583172983126905],[123,-26,77,0.056452673947105514],[123,-26,78,0.054680398079410164],[123,-26,79,0.05300018331601575],[123,-25,64,0.0934714647708933],[123,-25,65,0.09057228258075745],[123,-25,66,0.08775444385549647],[123,-25,67,0.08501956778051478],[123,-25,68,0.08236914661399852],[123,-25,69,0.07980454042251817],[123,-25,70,0.07732697175130676],[123,-25,71,0.07493752022928835],[123,-25,72,0.07263711710884657],[123,-25,73,0.07042653974040014],[123,-25,74,0.06830640598159432],[123,-25,75,0.06627716854137244],[123,-25,76,0.06433910925871877],[123,-25,77,0.06249233331617199],[123,-25,78,0.060736763388071435],[123,-25,79,0.05907213372355191],[123,-24,64,0.09912085042013996],[123,-24,65,0.0962546483640635],[123,-24,66,0.09346848934028973],[123,-24,67,0.09076399774089727],[123,-24,68,0.08814267230055961],[123,-24,69,0.08560588085228815],[123,-24,70,0.08315485501784947],[123,-24,71,0.08079068483292728],[123,-24,72,0.07851431330702097],[123,-24,73,0.07632653091814545],[123,-24,74,0.07422797004214521],[123,-24,75,0.07221909931688231],[123,-24,76,0.07030021794109154],[123,-24,77,0.06847144990800347],[123,-24,78,0.06673273817369407],[123,-24,79,0.06508383876018076],[123,-23,64,0.10470545353920568],[123,-23,65,0.10187246924826332],[123,-23,66,0.09911822004118553],[123,-23,67,0.09644433553797849],[123,-23,68,0.09385232097860996],[123,-23,69,0.09134355199903021],[123,-23,70,0.08891926934186056],[123,-23,71,0.08658057350182535],[123,-23,72,0.08432841930591506],[123,-23,73,0.08216361042834774],[123,-23,74,0.08008679384013961],[123,-23,75,0.078098454193547],[123,-23,76,0.07619890814117025],[123,-23,77,0.07438829858982288],[123,-23,78,0.07266658888912203],[123,-23,79,0.07103355695482183],[123,-22,64,0.1102239338611477],[123,-22,65,0.10742438976804669],[123,-22,66,0.10470226584705078],[123,-22,67,0.10205919696535692],[123,-22,68,0.09949669489450108],[123,-22,69,0.09701614310678086],[123,-22,70,0.09461879150634223],[123,-22,71,0.09230575109500783],[123,-22,72,0.09007798857283034],[123,-22,73,0.08793632087344205],[123,-22,74,0.08588140963401036],[123,-22,75,0.08391375560005931],[123,-22,76,0.08203369296495056],[123,-22,77,0.08024138364412559],[123,-22,78,0.0785368114840661],[123,-22,79,0.07691977640599246],[123,-21,64,0.11567518826582435],[123,-21,65,0.11290929184191079],[123,-21,66,0.11021949425611577],[123,-21,67,0.10760743564015762],[123,-21,68,0.10507463432094644],[123,-21,69,0.10262248163752463],[123,-21,70,0.10025223669267125],[123,-21,71,0.0979650210392411],[123,-21,72,0.09576181330122813],[123,-21,73,0.09364344372961952],[123,-21,74,0.09161058869285477],[123,-21,75,0.08966376510214469],[123,-21,76,0.08780332477144859],[123,-21,77,0.08602944871220775],[123,-21,78,0.08434214136279494],[123,-21,79,0.08274122475269874],[123,-20,64,0.1210583605704495],[123,-20,65,0.11832630459109628],[123,-20,66,0.11566902022216663],[123,-20,67,0.11308815287535667],[123,-20,68,0.11058522745436061],[123,-20,69,0.10816164319243915],[123,-20,70,0.10581866842464593],[123,-20,71,0.10355743529478956],[123,-20,72,0.10137893439711354],[123,-20,73,0.0992840093527656],[123,-20,74,0.09727335132086756],[123,-20,75,0.09534749344444393],[123,-20,76,0.09350680523100308],[123,-20,77,0.09175148686787349],[123,-20,78,0.09008156347225194],[123,-20,79,0.08849687927598326],[123,-19,64,0.1263728514457142],[123,-19,65,0.12367481428456983],[123,-19,66,0.1210502161272402],[123,-19,67,0.1185007076790473],[123,-19,68,0.11602782043956428],[123,-19,69,0.11363296156090696],[123,-19,70,0.11131740864068684],[123,-19,71,0.10908230444969214],[123,-19,72,0.10692865159428788],[123,-19,73,0.10485730711359775],[123,-19,74,0.10286897701128905],[123,-19,75,0.10096421072220885],[123,-19,76,0.09914339551367213],[123,-19,77,0.09740675082150185],[123,-19,78,0.09575432252077776],[123,-19,79,0.09418597713131382],[123,-18,64,0.13161832845759958],[123,-18,65,0.1289544744101725],[123,-18,66,0.126362721880945],[123,-18,67,0.12384472688077597],[123,-18,68,0.12140202752197715],[123,-18,69,0.11903603889742276],[123,-18,70,0.1167480478943167],[123,-18,71,0.11453920794268779],[123,-18,72,0.11241053369859888],[123,-18,73,0.11036289566213664],[123,-18,74,0.10839701473000096],[123,-18,75,0.10651345668294354],[123,-18,76,0.10471262660785541],[123,-18,77,0.10299476325460388],[123,-18,78,0.10135993332757454],[123,-18,79,0.09980802571194192],[123,-17,64,0.13679473623459493],[123,-17,65,0.1341652158716502],[123,-17,66,0.13160645514612168],[123,-17,67,0.12912011538465196],[123,-17,68,0.12670774132700924],[123,-17,69,0.1243707560260976],[123,-17,70,0.12211045568262413],[123,-17,71,0.11992800441448936],[123,-17,72,0.11782442896089118],[123,-17,73,0.11580061332120561],[123,-17,74,0.11385729332846595],[123,-17,75,0.1119950511576876],[123,-17,76,0.11021430976884028],[123,-17,77,0.10851532728456625],[123,-17,78,0.10689819130260281],[123,-17,79,0.10536281314292917],[123,-16,64,0.14190230676049043],[123,-16,65,0.13930725731173454],[123,-16,66,0.13678162169101105],[123,-16,67,0.13432706654940818],[123,-16,68,0.13194514326682116],[123,-16,69,0.1296372828729393],[123,-16,70,0.12740479090288703],[123,-16,71,0.1252488421875867],[123,-16,72,0.1231704755788331],[123,-16,73,0.12117058860914132],[123,-16,74,0.11924993208619239],[123,-16,75,0.11740910462212095],[123,-16,76,0.1156485470974491],[123,-16,77,0.11396853705976306],[123,-16,78,0.11236918305709398],[123,-16,79,0.11085041890601777],[123,-15,64,0.14694156979283401],[123,-15,65,0.1443811155613658],[123,-15,66,0.14188872586802326],[123,-15,67,0.1394660726955017],[123,-15,68,0.13711471407454934],[123,-15,69,0.13483608902599842],[123,-15,70,0.13263151243744786],[123,-15,71,0.13050216987466845],[123,-15,72,0.12844911232771394],[123,-15,73,0.1264732508918064],[123,-15,74,0.12457535138281728],[123,-15,75,0.12275602888758597],[123,-15,76,0.12101574224888578],[123,-15,77,0.11935478848512893],[123,-15,78,0.11777329714477314],[123,-15,79,0.1162712245954477],[123,-14,64,0.15191336340683093],[123,-14,65,0.1493876162148342],[123,-14,66,0.14692858121888241],[123,-14,67,0.14453793573902896],[123,-14,68,0.14221724446576445],[123,-14,69,0.13996795442315169],[123,-14,70,0.13779138986661266],[123,-14,71,0.135688747115434],[123,-14,72,0.13366108931997966],[123,-14,73,0.13170934116367228],[123,-14,74,0.12983428349957216],[123,-14,75,0.12803654792178976],[123,-14,76,0.1263166112715438],[123,-14,77,0.1246747900779579],[123,-14,78,0.12311123493355636],[123,-14,79,0.12162592480447698],[123,-13,64,0.15681884466478435],[123,-13,65,0.15432790433093713],[123,-13,66,0.1519023212062457],[123,-13,67,0.14954377795255558],[123,-13,68,0.14725384592726665],[123,-13,69,0.14503398016762592],[123,-13,70,0.14288551430967222],[123,-13,71,0.14080965544189672],[123,-13,72,0.13880747889360978],[123,-13,73,0.13687992295807527],[123,-13,74,0.1350277835502396],[123,-13,75,0.13325170879929382],[123,-13,76,0.13155219357588066],[123,-13,77,0.12992957395403515],[123,-13,78,0.12838402160782625],[123,-13,79,0.12691553814271306],[123,-12,64,0.16165950041122357],[123,-12,65,0.1592034552603041],[123,-12,66,0.15681141007194854],[123,-12,67,0.15448505285301162],[123,-12,68,0.15222596163336855],[123,-12,69,0.15003559947141254],[123,-12,70,0.14791530939420372],[123,-12,71,0.14586630927233324],[123,-12,72,0.14388968662949175],[123,-12,73,0.14198639338680263],[123,-12,74,0.14015724054175205],[123,-12,75,0.13840289278194684],[123,-12,76,0.1367238630335177],[123,-12,77,0.13512050694425548],[123,-12,78,0.13359301730144546],[123,-12,79,0.1321414183844154],[123,-11,64,0.16643715819344596],[123,-11,65,0.16401608559860748],[123,-11,66,0.1616576538215927],[123,-11,67,0.15936355621637],[123,-11,68,0.1571353774893819],[123,-11,69,0.15497458872628822],[123,-11,70,0.1528825423533603],[123,-11,71,0.15086046703358957],[123,-11,72,0.14890946249749837],[123,-11,73,0.14703049430871473],[123,-11,74,0.14522438856414344],[123,-11,75,0.14349182652896308],[123,-11,76,0.14183333920626695],[123,-11,77,0.14024930184143647],[123,-11,78,0.1387399283612103],[123,-11,79,0.13730526574746804],[123,-10,64,0.1711539973076912],[123,-10,65,0.16876796426588547],[123,-10,66,0.16644321133570505],[123,-10,67,0.16418143721933443],[123,-10,68,0.16198423330253542],[123,-10,69,0.15985307870267196],[123,-10,70,0.1577893352513844],[123,-10,71,0.15579424241197715],[123,-10,72,0.15386891213150833],[123,-10,73,0.1520143236276401],[123,-10,74,0.15023131811008794],[123,-10,75,0.14852059343689095],[123,-10,76,0.14688269870532733],[123,-10,77,0.14531802877756117],[123,-10,78,0.14382681874098335],[123,-10,79,0.14240913830326563],[123,-9,64,0.1758125599707978],[123,-9,65,0.17346162371182172],[123,-9,66,0.1711706056073118],[123,-9,67,0.16894120970788273],[123,-9,68,0.16677503408016903],[123,-9,69,0.16467356587615922],[123,-9,70,0.16263817633718114],[123,-9,71,0.16067011573259704],[123,-9,72,0.15877050823320193],[123,-9,73,0.1569403467193805],[123,-9,74,0.15518048752386238],[123,-9,75,0.15349164510929847],[123,-9,76,0.15187438668048003],[123,-9,77,0.15032912673128884],[123,-9,78,0.14885612152634153],[123,-9,79,0.1474554635173444],[123,-8,64,0.18041576261753567],[123,-8,65,0.1780999712471778],[123,-8,66,0.1758427351061218],[123,-8,67,0.17364576359285988],[123,-8,68,0.17151066145540017],[123,-8,69,0.1694389238819346],[123,-8,70,0.16743193152615832],[123,-8,71,0.16549094546729803],[123,-8,72,0.1636171021048427],[123,-8,73,0.1618114079880315],[123,-8,74,0.16007473457994148],[123,-8,75,0.15840781295639295],[123,-8,76,0.15681122843949813],[123,-8,77,0.15528541516594063],[123,-8,78,0.15383065058994727],[123,-8,79,0.15244704992097047],[123,-7,64,0.18496690732338106],[123,-7,65,0.18268630050114643],[123,-7,66,0.18046288526909038],[123,-7,67,0.17829837637238977],[123,-7,68,0.1761943852400295],[123,-7,69,0.1741524150968239],[123,-7,70,0.17217385601008905],[123,-7,71,0.17025997987102437],[123,-7,72,0.16841193531079612],[123,-7,73,0.16663074255137522],[123,-7,74,0.16491728819097784],[123,-7,75,0.16327231992432023],[123,-7,76,0.1616964411975178],[123,-7,77,0.16019010579771253],[123,-7,78,0.15875361237739505],[123,-7,79,0.15738709891343428],[123,-6,64,0.18946969335284514],[123,-6,65,0.1872243030047308],[123,-6,66,0.18503474011746557],[123,-6,67,0.1829027247812095],[123,-6,68,0.18082987510479076],[123,-6,69,0.17881770234909555],[123,-6,70,0.1768676059951093],[123,-6,71,0.17498086874666663],[123,-6,72,0.173158651467902],[123,-6,73,0.1714019880554557],[123,-6,74,0.16971178024528033],[123,-6,75,0.16808879235426222],[123,-6,76,0.16653364595648656],[123,-6,77,0.1650468144942301],[123,-6,78,0.1636286178236478],[123,-6,79,0.16227921669516676],[123,-5,64,0.19392822883347416],[123,-5,65,0.191718079900276],[123,-5,66,0.18956239400044717],[123,-5,67,0.18746289656705717],[123,-5,68,0.18542121238707532],[123,-5,69,0.1834388607561398],[123,-5,70,0.1815172505679793],[123,-5,71,0.17965767533854238],[123,-5,72,0.17786130816482804],[123,-5,73,0.17612919661846993],[123,-5,74,0.17446225757392275],[123,-5,75,0.17286127197146095],[123,-5,76,0.17132687951482217],[123,-5,77,0.16985957330357737],[123,-5,78,0.16845969440019437],[123,-5,79,0.16712742633180966],[123,-4,64,0.19834704255527913],[123,-4,65,0.196172153776904],[123,-4,66,0.19405036346520355],[123,-4,67,0.1919834023938557],[123,-4,68,0.1899729020258749],[123,-4,69,0.18802038968976953],[123,-4,70,0.1861272836903508],[123,-4,71,0.18429488835425167],[123,-4,72,0.18252438901014434],[123,-4,73,0.18081684690371147],[123,-4,74,0.17917319404722065],[123,-4,75,0.17759422800390967],[123,-4,76,0.17608060660701608],[123,-4,77,0.17463284261353473],[123,-4,78,0.17325129829266628],[123,-4,79,0.17193617994897648],[123,-3,64,0.20273109589573324],[123,-3,65,0.20059148063199272],[123,-3,66,0.19850359925339411],[123,-3,67,0.19646918787184264],[123,-3,68,0.19448988462409067],[123,-3,69,0.19256722486928868],[123,-3,70,0.1907026363211879],[123,-3,71,0.18889743411505266],[123,-3,72,0.1871528158092708],[123,-3,73,0.18546985632171775],[123,-3,74,0.1838495028007252],[123,-3,75,0.18229256943085703],[123,-3,76,0.18079973217333312],[123,-3,77,0.17937152344117757],[123,-3,78,0.17800832670906142],[123,-3,79,0.17671037105785103],[123,-2,64,0.2070857948704279],[123,-2,65,0.2049814619587922],[123,-2,66,0.20292749842428515],[123,-2,67,0.2009256457147326],[123,-2,68,0.19897754863829697],[123,-2,69,0.19708475058242214],[123,-2,70,0.1952486886674346],[123,-2,71,0.19347068883485086],[123,-2,72,0.1917519608703866],[123,-2,73,0.19009359336171439],[123,-2,74,0.1884965485908302],[123,-2,75,0.18696165736122505],[123,-2,76,0.18548961375970419],[123,-2,77,0.18408096985293332],[123,-2,78,0.1827361303186733],[123,-2,79,0.1814553470117275],[123,-1,64,0.2114170023091717],[123,-1,65,0.209347956959958],[123,-1,66,0.20732791660424055],[123,-1,67,0.2053586280236963],[123,-1,68,0.20344174269574322],[123,-1,69,0.20157881203388395],[123,-1,70,0.1997712825627047],[123,-1,71,0.19802049102758024],[123,-1,72,0.19632765943908115],[123,-1,73,0.19469389005212945],[123,-1,74,0.1931201602797632],[123,-1,75,0.1916073175417059],[123,-1,76,0.1901560740475824],[123,-1,77,0.1887670015148626],[123,-1,78,0.1874405258214955],[123,-1,79,0.1861769215932526],[123,0,64,0.21573105015764482],[123,0,65,0.21369729488711642],[123,0,66,0.21171118036270364],[123,0,67,0.20977445869826583],[123,0,68,0.20788878803870314],[123,0,69,0.2060557278216979],[123,0,70,0.20427673397411117],[123,0,71,0.20255315404308716],[123,0,72,0.20088622226185748],[123,0,73,0.19927705455029576],[123,0,74,0.1977266434500804],[123,0,75,0.19623585299466106],[123,0,76,0.19480541351387481],[123,0,77,0.19343591637328517],[123,0,78,0.19212780864821666],[123,0,79,0.1908813877324942],[123,1,64,0.22003475190471722],[123,1,65,0.2180362875065729],[123,1,66,0.21608409971477893],[123,1,67,0.21417994597428458],[123,1,68,0.21232549109629006],[123,1,69,0.21052230254138615],[123,1,70,0.2087718456373483],[123,1,71,0.207075478731639],[123,1,72,0.20543444827861157],[123,1,73,0.20384988386145964],[123,1,74,0.20232279314878088],[123,1,75,0.20085405678594015],[123,1,76,0.1994444232210837],[123,1,77,0.1980945034658761],[123,1,78,0.1968047657909331],[123,1,79,0.19557553035595832],[123,2,64,0.22433499171320037],[123,2,65,0.22237181905029102],[123,2,66,0.2204535589201344],[123,2,67,0.21858197409781754],[123,2,68,0.21675873605984153],[123,2,69,0.2149854202886583],[123,2,70,0.2132635015118639],[123,2,71,0.2115943488760993],[123,2,72,0.20997922105565137],[123,2,73,0.20841926129580257],[123,2,74,0.2069154923907921],[123,2,75,0.20546881159657782],[123,2,76,0.2040799854782488],[123,2,77,0.2027496446921614],[123,2,78,0.20147827870276924],[123,2,79,0.2002662304341607],[123,3,64,0.22863268159299066],[123,3,65,0.22670481396452102],[123,3,66,0.22482049522834968],[123,3,67,0.22298149347985818],[123,3,68,0.22118948685078088],[123,3,69,0.21944605883514834],[123,3,70,0.21775269354988958],[123,3,71,0.21611077093014186],[123,3,72,0.21452156185926208],[123,3,73,0.21298622323358352],[123,3,74,0.21150579296178917],[123,3,75,0.21008118489908267],[123,3,76,0.20871318371601155],[123,3,77,0.20740243970201422],[123,3,78,0.20614946350366015],[123,3,79,0.20495462079759974],[123,4,64,0.2329238972973502],[123,4,65,0.23103136847449057],[123,4,66,0.22918102605018342],[123,4,67,0.22737464341451463],[123,4,68,0.22561390532825365],[123,4,69,0.22390040327023075],[123,4,70,0.2222356307193738],[123,4,71,0.22062097837145445],[123,4,72,0.21905772929053535],[123,4,73,0.21754705399516583],[123,4,74,0.21609000547919377],[123,4,75,0.21468751416737653],[123,4,76,0.2133403828056445],[123,4,77,0.21204928128609013],[123,4,78,0.21081474140665213],[123,4,79,0.20963715156550777],[123,5,64,0.23720458989378596],[123,5,65,0.2353474527023306],[123,5,66,0.23353114130247288],[123,5,67,0.23175743433780793],[123,5,68,0.23002802315592485],[123,5,69,0.22834450717725718],[123,5,70,0.2267083891985956],[123,5,71,0.22512107063131281],[123,5,72,0.22358384667429076],[123,5,73,0.22209790142159824],[123,5,74,0.2206643029047891],[123,5,75,0.21928399806999754],[123,5,76,0.21795780768969264],[123,5,77,0.2166864212091577],[123,5,78,0.21547039152766667],[123,5,79,0.21431012971437302],[123,6,64,0.2414707166181035],[123,6,65,0.23964904132109716],[123,6,66,0.23786683385211177],[123,6,67,0.23612587805178442],[123,6,68,0.2344278717965962],[123,6,69,0.23277442238924861],[123,6,70,0.2311670418837085],[123,6,71,0.2296071423449677],[123,6,72,0.2280960310435084],[123,6,73,0.22663490558452237],[123,6,74,0.22522484897175632],[123,6,75,0.2238668246061568],[123,6,76,0.2225616712191767],[123,6,77,0.22131009774081245],[123,6,78,0.22011267810234136],[123,6,79,0.2189698459737749],[123,7,64,0.24571824414017246],[123,7,65,0.2439321168655399],[123,7,66,0.24218410287055558],[123,7,67,0.24047599112149148],[123,7,68,0.23880948595038776],[123,7,69,0.23718620246702382],[123,7,70,0.23560766190556082],[123,7,71,0.2340752869059064],[123,7,72,0.23259039672979098],[123,7,73,0.231154202411603],[123,7,74,0.2297678018438547],[123,7,75,0.22843217479745603],[123,7,76,0.2271481778766531],[123,7,77,0.22591653940870404],[123,7,78,0.22473785426826165],[123,7,79,0.22361257863647455],[123,8,64,0.24994315177373216],[123,8,65,0.248192672986435],[123,8,66,0.2464789571314328],[123,8,67,0.24480379821461812],[123,8,68,0.2431689069351644],[123,8,69,0.24157590611916746],[123,8,70,0.2400263260879668],[123,8,71,0.23852159996119715],[123,8,72,0.2370630588945596],[123,8,73,0.23565192725235928],[123,8,74,0.2342893177146831],[123,8,75,0.23297622631939097],[123,8,76,0.23171352743878182],[123,8,77,0.23050196869100448],[123,8,78,0.22934216578618216],[123,8,79,0.2282345973072657],[123,9,64,0.25414143463034844],[123,9,65,0.25242671764859204],[123,9,66,0.2507474182513717],[123,9,67,0.2491053353839131],[123,9,68,0.2475021860093154],[123,9,69,0.2459396005639488],[123,9,70,0.24441911834754615],[123,9,71,0.2429421828480347],[123,9,72,0.24151013700109802],[123,9,73,0.24012421838451425],[123,9,74,0.23878555434714743],[123,9,75,0.23749515707276092],[123,9,76,0.23625391857851774],[123,9,77,0.23506260564823456],[123,9,78,0.2339218547003623],[123,9,79,0.23283216659070527],[123,10,64,0.2583091067176286],[123,10,65,0.25663027627264445],[123,10,66,0.254985523874153],[123,10,67,0.2533766532924892],[123,10,68,0.2518053876370016],[123,10,69,0.25027336483330465],[123,10,70,0.24878213303524155],[123,10,71,0.24733314597159778],[123,10,72,0.2459277582275623],[123,10,73,0.24456722046097468],[123,10,74,0.24325267455324406],[123,10,75,0.24198514869509913],[123,10,76,0.24076555240704212],[123,10,77,0.2395946714945687],[123,10,78,0.2384731629381296],[123,10,79,0.23740154971784222],[123,11,64,0.2624422039814791],[123,11,65,0.2607993948204032],[123,11,66,0.2591893307979687],[123,11,67,0.25761382038179254],[123,11,68,0.25607459269564475],[123,11,69,0.2545732930186621],[123,11,70,0.2531114782192897],[123,11,71,0.25169061212399135],[123,11,72,0.2503120608207239],[123,11,73,0.248977087897215],[123,11,74,0.24768684961393062],[123,11,75,0.24644239001188972],[123,11,76,0.24524463595520052],[123,11,77,0.2440943921083809],[123,11,78,0.24299233584843638],[123,11,79,0.24193901211170554],[123,12,64,0.2665367872925138],[123,12,65,0.2649301428238873],[123,12,66,0.26335491804589783],[123,12,67,0.2618129259823501],[123,12,68,0.26030590162577405],[123,12,69,0.25883549745871265],[123,12,70,0.2574032789097598],[123,12,71,0.2560107197443886],[123,12,72,0.25465919739056353],[123,12,73,0.2533499881991775],[123,12,74,0.2520842626391996],[123,12,75,0.2508630804276918],[123,12,76,0.2496873855945666],[123,12,77,0.24855800148215146],[123,12,78,0.24747562567953008],[123,12,79,0.24644082489167496],[123,13,64,0.27058894537671885],[123,13,65,0.2690186163581338],[123,13,66,0.2674783898797052],[123,13,67,0.26597008336740136],[123,13,68,0.2644954375233355],[123,13,69,0.2630561118692488],[123,13,70,0.2616536802247691],[123,13,71,0.2602896261204845],[123,13,72,0.25896533814582673],[123,13,73,0.2576821052318035],[123,13,74,0.2564411118684683],[123,13,75,0.255243433257282],[123,13,76,0.2540900303982431],[123,13,77,0.2529817451118468],[123,13,78,0.25191929499584886],[123,13,79,0.2509032683168446],[123,14,64,0.2745947976901502],[123,14,65,0.2730609409575631],[123,14,66,0.2715558787567371],[123,14,67,0.27008143274918545],[123,14,68,0.26863934917423493],[123,14,69,0.2672312944148298],[123,14,70,0.26585885049814145],[123,14,71,0.264523510531023],[123,14,72,0.2632266740703028],[123,14,73,0.2619696424279559],[123,14,74,0.26075361391104374],[123,14,75,0.259579678996574],[123,14,76,0.258448815441159],[123,14,77,0.25736188332553256],[123,14,78,0.2563196200339012],[123,14,79,0.25532263516813936],[123,15,64,0.2785504972378513],[123,15,65,0.27705327447608946],[123,15,66,0.27558354823010367],[123,15,67,0.2741431442180769],[123,15,68,0.2727338140313087],[123,15,69,0.2713572307224711],[123,15,70,0.2700149843287053],[123,15,71,0.2687085773295977],[123,15,72,0.2674394200400287],[123,15,73,0.2662088259379335],[123,15,74,0.26501800692686645],[123,15,75,0.2638680685335182],[123,15,76,0.26276000504006675],[123,15,77,0.261694694551421],[123,15,78,0.2606728939973323],[123,15,79,0.2596952340693853],[123,16,64,0.28245223333685365],[123,16,65,0.2809918098908361],[123,16,66,0.27955759579200795],[123,16,67,0.2781514206244271],[123,16,68,0.2767750411335781],[123,16,69,0.27543013683721523],[123,16,70,0.27411830557108724],[123,16,71,0.27284105896957944],[123,16,72,0.27159981788126897],[123,16,73,0.2703959077194296],[123,16,74,0.269230553747382],[123,16,75,0.2681048762988327],[123,16,76,0.2670198859330889],[123,16,77,0.26597647852520373],[123,16,78,0.26497543029102877],[123,16,79,0.2640173927471854],[123,17,64,0.28629623432343976],[123,17,65,0.28487277804963834],[123,17,66,0.28347425566040607],[123,17,67,0.2821025004032986],[123,17,68,0.28075927396797584],[123,17,69,0.27944626211977164],[123,17,70,0.27816507026818965],[123,17,71,0.276917218970362],[123,17,72,0.27570413936946503],[123,17,73,0.27452716856812875],[123,17,74,0.273387544936737],[123,17,75,0.2722864033567609],[123,17,76,0.2712247703990113],[123,17,77,0.27020355943686736],[123,17,78,0.26922356569445693],[123,17,79,0.26828546122979974],[123,18,64,0.2900787702044545],[123,18,65,0.28869245036211744],[123,18,66,0.2873298015087787],[123,18,67,0.2859926603418698],[123,18,68,0.2846827932733215],[123,18,69,0.28340189208600114],[123,18,70,0.2821515695251274],[123,18,71,0.2809333548246983],[123,18,72,0.27974868916892515],[123,18,73,0.2785989210887102],[123,18,74,0.2774853017930674],[123,18,75,0.2764089804356231],[123,18,76,0.2753709993160884],[123,18,77,0.2743722890167563],[123,18,78,0.27341366347400115],[123,18,79,0.27249581498479086],[123,19,64,0.2937961552527701],[123,19,65,0.2924471414344313],[123,19,66,0.2911205491391217],[123,19,67,0.2898182182896197],[123,19,68,0.28854191978665433],[123,19,69,0.2872933511883551],[123,19,70,0.28607413232473444],[123,19,71,0.2848858008472396],[123,19,72,0.2837298077133666],[123,19,73,0.28260751260637307],[123,19,74,0.28152017928999107],[123,19,75,0.2804689708982747],[123,19,76,0.2794549451604755],[123,19,77,0.2784790495609982],[123,19,78,0.2775421164344159],[123,19,79,0.27664485799555205],[123,20,64,0.29744475054699726],[123,20,65,0.2961332116477963],[123,20,66,0.294842859098251],[123,20,67,0.29357553581138696],[123,20,68,0.2923330169320211],[123,20,69,0.2911170055393671],[123,20,70,0.289929128284737],[123,20,71,0.2887709309643739],[123,20,72,0.2876438740274096],[123,20,73,0.2865493280189804],[123,20,74,0.2854885689584082],[123,20,75,0.284462773652575],[123,20,76,0.2834730149443894],[123,20,77,0.2825202568963945],[123,20,78,0.28160534990949615],[123,20,79,0.28072902577682207],[123,21,64,0.3010209664552491],[123,21,65,0.2997470696805845],[123,21,66,0.29849313923722265],[123,21,67,0.2972610207831055],[123,21,68,0.29605249345151763],[123,21,69,0.29486926557699344],[123,21,70,0.29371297035639077],[123,21,71,0.2925851614451615],[123,21,72,0.29148730848881654],[123,21,73,0.2904207925896165],[123,21,74,0.2893869017083967],[123,21,75,0.2883868260016528],[123,21,76,0.28742165309378676],[123,21,77,0.2864923632845626],[123,21,78,0.28559982469175066],[123,21,79,0.2847447883289704],[123,22,64,0.30452126506305854],[123,22,65,0.30328517497409746],[123,22,66,0.30206784721397417],[123,22,67,0.3008711299303196],[123,22,68,0.29969680597868753],[123,22,69,0.29854658867190903],[123,22,70,0.2974221174646884],[123,22,71,0.2963249535734717],[123,22,72,0.29525657553158363],[123,22,73,0.294218374679664],[123,22,74,0.2932116505913149],[123,22,75,0.2922376064340814],[123,22,76,0.29129734426566845],[123,22,77,0.29039186026544134],[123,22,78,0.2895220399011898],[123,22,79,0.28868865303116514],[123,23,64,0.3079421625455377],[123,23,65,0.30674404014210704],[123,23,66,0.30556349293927243],[123,23,67,0.3044023713095683],[123,23,68,0.3032624615543719],[123,23,69,0.30214548167684974],[123,23,70,0.3010530770902277],[123,23,71,0.29998681626141543],[123,23,72,0.29894818628997916],[123,23,73,0.2979385884224966],[123,23,74,0.29695933350220377],[123,23,75,0.29601163735405633],[123,23,76,0.29509661610510834],[123,23,77,0.294215281440256],[123,23,78,0.29336853579332683],[123,23,79,0.29255716747352273],[123,24,64,0.3112802314835937],[123,24,65,0.31012023332397526],[123,24,66,0.3089766409657843],[123,24,67,0.30785130673245115],[123,24,68,0.3067460200848157],[123,24,69,0.3056625034178097],[123,24,70,0.3046024077925505],[123,24,71,0.30356730860387865],[123,24,72,0.30255870118333217],[123,24,73,0.3015779963375889],[123,24,74,0.3006265158222923],[123,24,75,0.2997054877513774],[123,24,76,0.2988160419418036],[123,24,77,0.2979592051937404],[123,24,78,0.2971358965061866],[123,24,79,0.2963469222280321],[123,25,64,0.3145321031243006],[123,25,65,0.3134103804814532],[123,25,66,0.31230391282036674],[123,25,67,0.311214554132474],[123,25,68,0.31014409674213467],[123,25,69,0.30909426712719373],[123,25,70,0.30806672167504934],[123,25,71,0.30706304237425824],[123,25,72,0.3060847324416739],[123,25,73,0.3051332118851472],[123,25,74,0.3042098130017077],[123,25,75,0.3033157758113382],[123,25,76,0.3024522434262526],[123,25,77,0.30162025735572207],[123,25,78,0.3008207527464298],[123,25,79,0.3000545535583632],[123,26,64,0.317694469585504],[123,26,65,0.31661116763923813],[123,26,66,0.3155419892796592],[123,26,67,0.3144887898747589],[123,26,68,0.313453364307224],[123,26,69,0.3124374428190107],[123,26,70,0.31144268679153264],[123,26,71,0.3104706844614874],[123,26,72,0.30952294657232],[123,26,73,0.30860090196134954],[123,26,74,0.3077058930824817],[123,26,75,0.30683917146461426],[123,26,76,0.3060018931056504],[123,26,77,0.3051951138021619],[123,26,78,0.304419784414684],[123,26,79,0.3036767460686503],[123,27,64,0.32076408600449163],[123,27,65,0.31971934306911826],[123,27,66,0.31868761258880374],[123,27,67,0.3176707510084399],[123,27,68,0.31667055545493217],[123,27,69,0.3156887596059272],[123,27,70,0.3147270294942627],[123,27,71,0.3137869592481676],[123,27,72,0.3128700667672085],[123,27,73,0.3119777893340086],[123,27,74,0.31111147916166354],[123,27,75,0.3102723988769602],[123,27,76,0.30946171693931196],[123,27,77,0.3086805029954556],[123,27,78,0.3079297231698883],[123,27,79,0.3072102352910566],[123,28,64,0.3237377726308172],[123,28,65,0.32273171941779477],[123,28,66,0.32173758862338503],[123,28,67,0.32075723746183993],[123,28,68,0.3197924649815942],[123,28,69,0.31884500795827686],[123,28,70,0.31791653672356485],[123,28,71,0.3170086509299036],[123,28,72,0.31612287525109195],[123,28,73,0.31526065501875605],[123,28,74,0.3144233517946405],[123,28,75,0.3136122388788157],[123,28,76,0.3128284967537237],[123,28,77,0.31207320846409986],[123,28,78,0.31134735493275456],[123,28,79,0.3106518102122228],[123,29,64,0.32661241686335296],[123,29,65,0.32564517577845736],[123,29,66,0.32468878899466624],[123,29,67,0.32374511418050517],[123,29,68,0.32281595197500057],[123,29,69,0.32190304190510416],[123,29,70,0.3210080582390863],[123,29,71,0.3201326057759213],[123,29,72,0.31927821557066216],[123,29,73,0.31844634059583005],[123,29,74,0.31763835133874546],[123,29,75,0.3168555313349024],[123,29,76,0.31609907263730486],[123,29,77,0.315370071221805],[123,29,78,0.314669522328427],[123,29,79,0.31399831573868386],[123,30,64,0.32938497523141225],[123,30,65,0.3284566597059519],[123,30,66,0.3275381530979588],[123,30,67,0.3266313132079316],[123,30,68,0.32573794192663763],[123,30,69,0.32485978117707465],[123,30,70,0.32399850879253556],[123,30,71,0.32315573433079847],[123,30,72,0.3223329948244392],[123,30,73,0.3215317504672907],[123,30,74,0.3207533802369796],[123,30,75,0.3199991774536368],[123,30,76,0.3192703452747042],[123,30,77,0.3185679921258771],[123,30,78,0.31789312706816397],[123,30,79,0.31724665510107386],[123,31,64,0.3320524753200279],[123,31,65,0.33116318917562765],[123,31,66,0.3302826901042131],[123,31,67,0.32941283570907365],[123,31,68,0.32855542878628785],[123,31,69,0.32771221329134204],[123,31,70,0.3268848702419932],[123,31,71,0.32607501355739943],[123,31,72,0.3252841858335125],[123,31,73,0.32451385405475913],[123,31,74,0.32376540524194175],[123,31,75,0.3230401420364523],[123,31,76,0.32233927822072483],[123,31,77,0.32166393417496436],[123,31,78,0.32101513227013484],[123,31,79,0.32039379219721503],[123,32,64,0.3346120176394505],[123,32,65,0.33376185448592893],[123,32,66,0.332919480894897],[123,32,67,0.33208675393670145],[123,32,68,0.3312654769590584],[123,32,69,0.33045739557844106],[123,32,70,0.3296641936078645],[123,32,71,0.3288874889210844],[123,32,72,0.3281288292532096],[123,32,73,0.3273896879377506],[123,32,74,0.32667145958003857],[123,32,75,0.32597545566710523],[123,32,76,0.3253029001139519],[123,32,77,0.3246549247462433],[123,32,78,0.32403256471940983],[123,32,79,0.3234367538741678],[123,33,64,0.3370607774387245],[123,33,65,0.33624982010458737],[123,33,66,0.33544567994001534],[123,33,67,0.33465021314045934],[123,33,68,0.33386522324468804],[123,33,69,0.3330924571510553],[123,33,70,0.33233360107031984],[123,33,71,0.33159027641503935],[123,33,72,0.33086403562553435],[123,33,73,0.33015635793244447],[123,33,74,0.32946864505581575],[123,33,75,0.32880221684080346],[123,33,76,0.3281583068299227],[123,33,77,0.32753805777188094],[123,33,78,0.3269425170669773],[123,33,79,0.3263726321490762],[123,34,64,0.3393960064634204],[123,34,65,0.33862432645849366],[123,34,66,0.337858517119352],[123,34,67,0.33710043341870555],[123,34,68,0.3363518787192156],[123,34,69,0.33561460081474165],[123,34,70,0.33489028790830805],[123,34,71,0.3341805645268108],[123,34,72,0.33348698737245935],[123,34,73,0.3328110411109768],[123,34,74,0.3321541340964974],[123,34,75,0.331517594033245],[123,34,76,0.33090266357392445],[123,34,77,0.33031049585486216],[123,34,78,0.3297421499678777],[123,34,79,0.3291985863688968],[123,35,64,0.34161503465757886],[123,35,65,0.3408826916673056],[123,35,66,0.3401552994869898],[123,35,67,0.33943471151319327],[123,35,68,0.3387227305590667],[123,35,69,0.33802110492067233],[123,35,70,0.3373315243802017],[123,35,71,0.33665561614610584],[123,35,72,0.33599494073013686],[123,35,73,0.3353509877613195],[123,35,74,0.3347251717367975],[123,35,75,0.3341188277096319],[123,35,76,0.3335332069134888],[123,35,77,0.3329694723242486],[123,35,78,0.33242869415852244],[123,35,79,0.3319118453090825],[123,36,64,0.34371527180974026],[123,36,65,0.34302231322066473],[123,36,66,0.3423334129789816],[123,36,67,0.34165042254646],[123,36,68,0.3409751438074282],[123,36,69,0.34030932516026],[123,36,70,0.33965465754593976],[123,36,71,0.3390127704137222],[123,36,72,0.338385227623887],[123,36,73,0.3377735232876044],[123,36,74,0.33717907754386056],[123,36,75,0.3366032322735156],[123,36,76,0.3360472467504342],[123,36,77,0.3355122932297216],[123,36,78,0.3349994524730473],[123,36,79,0.33450970921106754],[123,37,64,0.34569420914313126],[123,37,65,0.34504066959909274],[123,37,66,0.34439032406424175],[123,37,67,0.34374502170199955],[123,37,68,0.34310656308298393],[123,37,69,0.34247669630174],[123,37,70,0.341857113030742],[123,37,71,0.34124944451168165],[123,37,72,0.3406552574840414],[123,37,73,0.3400760500509701],[123,37,74,0.3395132474824109],[123,37,75,0.3389681979555514],[123,37,76,0.33844216823253886],[123,37,77,0.3379363392754902],[123,37,78,0.33745180179878387],[123,37,79,0.33698955175863854],[123,38,64,0.3475494208500538],[123,38,65,0.34693532183861575],[123,38,66,0.3463235813387089],[123,38,67,0.34571604584726534],[123,38,68,0.34511451423106027],[123,38,69,0.34452073386876114],[123,38,70,0.34393639673044846],[123,38,71,0.3433631353946225],[123,38,72,0.3428025190026959],[123,38,73,0.3422560491509865],[123,38,74,0.341725155720165],[123,38,75,0.3412111926422214],[123,38,76,0.34071543360489925],[123,38,77,0.34023906769362283],[123,38,78,0.3397831949709061],[123,38,79,0.33934882199324945],[123,39,64,0.3492785655703641],[123,39,65,0.34870391503900044],[123,39,66,0.3481308170626619],[123,39,67,0.3475611150993867],[123,39,68,0.34699660591706305],[123,39,69,0.3464390357608634],[123,39,70,0.34589009645835755],[123,39,71,0.34535142146232234],[123,39,72,0.3448245818312437],[123,39,73,0.34431108214752765],[123,39,74,0.34381235637337615],[123,39,75,0.34332976364438894],[123,39,76,0.3428645840008414],[123,39,77,0.34241801405666455],[123,39,78,0.34199116260611506],[123,39,79,0.34158504616814167],[123,40,64,0.3508793878141371],[123,40,65,0.3503441798156999],[123,40,66,0.34980974864128817],[123,40,67,0.34927793433369814],[123,40,68,0.34875053116230625],[123,40,69,0.3482292838159437],[123,40,70,0.34771588353367033],[123,40,71,0.3472119641734602],[123,40,72,0.3467190982187981],[123,40,73,0.34623879272320085],[123,40,74,0.3457724851926225],[123,40,75,0.34532153940580057],[123,40,76,0.3448872411724968],[123,40,77,0.34447079402965697],[123,40,78,0.3440733148754777],[123,40,79,0.3436958295413872],[123,41,64,0.3523497193284528],[123,41,65,0.3518539336954448],[123,41,66,0.3513581800484372],[123,41,67,0.35086429463501445],[123,41,68,0.3503740688221644],[123,41,69,0.3498892453146434],[123,41,70,0.3494115143114679],[123,41,71,0.34894250960054346],[123,41,72,0.3484838045914306],[123,41,73,0.3480369082862605],[123,41,74,0.3476032611887625],[123,41,75,0.3471842311514565],[123,41,76,0.3467811091609669],[123,41,77,0.34639510506148097],[123,41,78,0.3460273432163406],[123,41,79,0.3456788581077734],[123,42,64,0.3536874804083782],[123,42,65,0.35323108245555424],[123,42,66,0.35277400319363905],[123,42,67,0.3523180746917307],[123,42,68,0.35186508500662994],[123,42,69,0.3514167744267365],[123,42,70,0.3509748316543074],[123,42,71,0.3505408899260875],[123,42,72,0.3501165230723121],[123,42,73,0.34970324151409193],[123,42,74,0.349302488199148],[123,42,75,0.3489156344759425],[123,42,76,0.34854397590616837],[123,42,77,0.3481887280156169],[123,42,78,0.34785102198341333],[123,42,79,0.34753190026962744],[123,43,64,0.3548906811520567],[123,43,65,0.35447362140687677],[123,43,66,0.35405519923229223],[123,43,67,0.3536372421326523],[123,43,68,0.3532215344431783],[123,43,69,0.35280981359942265],[123,43,70,0.35240376634533516],[123,43,71,0.35200502487994423],[123,43,72,0.35161516294265305],[123,43,73,0.3512356918371627],[123,43,74,0.3508680563939881],[123,43,75,0.3505136308716132],[123,43,76,0.35017371479624837],[123,43,77,0.3498495287402098],[123,43,78,0.34954221003890934],[123,43,79,0.34925280844646395],[123,44,64,0.35595742265995445],[123,44,65,0.3555796366204125],[123,44,66,0.3551998398190758],[123,44,67,0.3548198548066089],[123,44,68,0.3544414617819943],[123,44,69,0.354066394887578],[123,44,70,0.3536963384429739],[123,44,71,0.35333292311783626],[123,44,72,0.35297772204349986],[123,44,73,0.3526322468634968],[123,44,74,0.35229794372292206],[123,44,75,0.35197618919668733],[123,44,76,0.3516682861566309],[123,44,77,0.35137545957750127],[123,44,78,0.35109885228180376],[123,44,79,0.3508395206235188],[123,45,64,0.3568858981782872],[123,45,65,0.3565473060976392],[123,45,66,0.35620608830460776],[123,45,67,0.3558640620048759],[123,45,68,0.3555230028435877],[123,45,69,0.3551846412259922],[123,45,70,0.3548506585772099],[123,45,71,0.3545226835411265],[123,45,72,0.3542022881184166],[123,45,73,0.3538909837437038],[123,45,74,0.35359021730183215],[123,45,75,0.3533013670832857],[123,45,76,0.3530257386787253],[123,45,77,0.3527645608126602],[123,45,78,0.35251898111624447],[123,45,79,0.35229006183920447],[123,46,64,0.3576743941865636],[123,46,65,0.3573749008844786],[123,46,66,0.3570722008752848],[123,46,67,0.35676810562633743],[123,46,68,0.3564643858087255],[123,46,69,0.35616276764351906],[123,46,70,0.35586492918740936],[123,46,71,0.3555724965577466],[123,46,72,0.35528704009697654],[123,46,73,0.35501007047648414],[123,46,74,0.3547430347398178],[123,46,75,0.35448731228533203],[123,46,76,0.35424421078821655],[123,46,77,0.35401496206193034],[123,46,78,0.3538007178590299],[123,46,79,0.3536025456113994],[123,47,64,0.35832129142928715],[123,47,65,0.3580607861289438],[123,47,66,0.3577965276363452],[123,47,67,0.35753032128543144],[123,47,68,0.3572639323507271],[123,47,69,0.3569990824191858],[123,47,70,0.35673744570170735],[123,47,71,0.3564806452843317],[123,47,72,0.35623024931910974],[123,47,73,0.3559877671546585],[123,47,74,0.35575464540637836],[123,47,75,0.3555322639663647],[123,47,76,0.3553219319529856],[123,47,77,0.3551248836001425],[123,47,78,0.3549422740862046],[123,47,79,0.354775175302623],[123,48,64,0.35882506589182545],[123,48,65,0.35860342208247986],[123,48,66,0.35837751363816805],[123,48,67,0.35814913936289394],[123,48,68,0.35792005871013677],[123,48,69,0.3576919881802775],[123,48,70,0.35746659765798744],[123,48,71,0.35724550668957983],[123,48,72,0.3570302807003257],[123,48,73,0.3568224271517415],[123,48,74,0.35662339163882684],[123,48,75,0.35643455392728246],[123,48,76,0.3562572239306826],[123,48,77,0.3560926376276178],[123,48,78,0.35594195291879777],[123,48,79,0.3558062454241223],[123,49,64,0.3591842897204097],[123,49,65,0.35900136504495567],[123,49,66,0.35881369984576433],[123,49,67,0.3586230859992534],[123,49,68,0.35843127671172403],[123,49,69,0.35823998294234594],[123,49,70,0.3580508697664],[123,49,71,0.35786555267878006],[123,49,72,0.357685593837756],[123,49,73,0.35751249824900155],[123,49,74,0.3573477098898733],[123,49,75,0.35719260777396095],[123,49,76,0.357048501955891],[123,49,77,0.3569166294763956],[123,49,78,0.35679815024763817],[123,49,79,0.35669414287880263],[123,50,64,0.35939763208629005],[123,50,65,0.3592532682533364],[123,50,66,0.3591037240514915],[123,50,67,0.358950784031109],[123,50,68,0.3587961947238474],[123,50,69,0.3586416610911776],[123,50,70,0.35848884291345406],[123,50,71,0.35833935111954907],[123,50,72,0.3581947440570533],[123,50,73,0.3580565237030455],[123,50,74,0.357926131815419],[123,50,75,0.35780494602478297],[123,50,76,0.3576942758669224],[123,50,77,0.35759535875582793],[123,50,78,0.35750935589728716],[123,50,79,0.35743734814304423],[123,51,64,0.35946385999405006],[123,51,65,0.35935788271403923],[123,51,66,0.3592463217309927],[123,51,67,0.3591309538701958],[123,51,68,0.35901351856018326],[123,51,69,0.35889571430672507],[123,51,70,0.35877919510768846],[123,51,71,0.35866556680877804],[123,51,72,0.3585563834001546],[123,51,73,0.35845314325393574],[123,51,74,0.3583572853025688],[123,51,75,0.3582701851580895],[123,51,76,0.3581931511722539],[123,51,77,0.3581274204375535],[123,51,78,0.3580741547291046],[123,51,79,0.3580344363874199],[123,52,64,0.3593818390340591],[123,52,65,0.35931405797894994],[123,52,66,0.35924032684233936],[123,52,67,0.35916241432521134],[123,52,68,0.3590820523237953],[123,52,69,0.35900093242897435],[123,52,70,0.3589207023668928],[123,52,71,0.3588429623807632],[123,52,72,0.3587692615538751],[123,52,73,0.35870109407380557],[123,52,74,0.35863989543782576],[123,52,75,0.3585870385995145],[123,52,76,0.35854383005656676],[123,52,77,0.3585115058798073],[123,52,78,0.35849122768340086],[123,52,79,0.3584840785362668],[123,53,64,0.3591505340790845],[123,53,65,0.35912074286512174],[123,53,66,0.35908467256839727],[123,53,67,0.3590440833664271],[123,53,68,0.3590006991935658],[123,53,69,0.35895620426577124],[123,53,70,0.35891223954690166],[123,53,71,0.3588703991565413],[123,53,72,0.3588322267193592],[123,53,73,0.3587992116559986],[123,53,74,0.3587727854154954],[123,53,75,0.3587543176492317],[123,53,76,0.3587451123264156],[123,53,77,0.35874640379109657],[123,53,78,0.35875935276070836],[123,53,79,0.3587850422661456],[123,54,64,0.3587690099250478],[123,54,65,0.35877698611814435],[123,54,66,0.35877839200240613],[123,54,67,0.3587749788330744],[123,54,68,0.3587684621529821],[123,54,69,0.35876051834260025],[123,54,70,0.35875278111195774],[123,54,71,0.35874683793442724],[123,54,72,0.3587442264223833],[123,54,73,0.35874643064473],[123,54,74,0.35875487738629785],[123,54,75,0.35877093234911217],[123,54,76,0.35879589629552944],[123,54,77,0.35883100113324584],[123,54,78,0.35887740594217316],[123,54,79,0.35893619294318796],[123,55,64,0.35823643187593335],[123,55,65,0.35828193701918676],[123,55,66,0.3583206187767739],[123,55,67,0.35835421908350384],[123,55,68,0.3583844446612733],[123,55,69,0.3584129635943097],[123,55,70,0.35844140184663503],[123,55,71,0.35847133972174405],[123,55,72,0.35850430826450186],[123,55,73,0.35854178560525674],[123,55,74,0.35858519324617233],[123,55,75,0.35863589228977644],[123,55,76,0.3586951796097251],[123,55,77,0.3587642839637877],[123,55,78,0.35884436204904535],[123,55,79,0.3589364944993103],[123,56,64,0.3575520662728547],[123,56,65,0.3576348459357217],[123,56,66,0.357710587635094],[123,56,67,0.3577810235881288],[123,56,68,0.3578478512669112],[123,56,69,0.3579127299987974],[123,56,70,0.35797727750933617],[123,56,71,0.3580430664077597],[123,56,72,0.3581116206150494],[123,56,73,0.35818441173457216],[123,56,74,0.35826285536529306],[123,56,75,0.35834830735755846],[123,56,76,0.3584420600114512],[123,56,77,0.3585453382177215],[123,56,78,0.35865929554128817],[123,56,79,0.35878501024731485],[123,57,64,0.3567152809672542],[123,57,65,0.35683506481590843],[123,57,66,0.3569476349473653],[123,57,67,0.35705471346513296],[123,57,68,0.35715798816345257],[123,57,69,0.3572591091526359],[123,57,70,0.35735968542734653],[123,57,71,0.3574612813778133],[123,57,72,0.357565413243984],[123,57,73,0.3576735455126109],[123,57,74,0.3577870872572796],[123,57,75,0.35790738842136965],[123,57,76,0.35803573604395245],[123,57,77,0.3581733504286281],[123,57,78,0.3583213812552964],[123,57,79,0.3584809036348675],[123,58,64,0.3557255457382671],[123,58,65,0.35588204762666165],[123,58,66,0.3560311991684377],[123,58,67,0.356174711958962],[123,58,68,0.3563142636877449],[123,58,69,0.3564514947886568],[123,58,70,0.35658800503346],[123,58,71,0.35672535006864614],[123,58,72,0.35686503789558444],[123,58,73,0.357008525293974],[123,58,74,0.3571572141886127],[123,58,75,0.3573124479594678],[123,58,76,0.3574755076950574],[123,58,77,0.35764760838914245],[123,58,78,0.3578298950807238],[123,58,79,0.3580234389373532],[123,59,64,0.3545824326542415],[123,59,65,0.35477535073540056],[123,59,66,0.35496082123968126],[123,59,67,0.35514054486160007],[123,59,68,0.3553161887604951],[123,59,69,0.3554893832354942],[123,59,70,0.3556617183441797],[123,59,71,0.3558347404649389],[123,59,72,0.3560099488030044],[123,59,73,0.3561887918401796],[123,59,74,0.3563726637282605],[123,59,75,0.3565629006261395],[123,59,76,0.35676077698059866],[123,59,77,0.35696750175079517],[123,59,78,0.35718421457643157],[123,59,79,0.35741198188961926],[123,60,64,0.3532856163783834],[123,60,65,0.3535146332354475],[123,60,66,0.35373614493384614],[123,60,67,0.3539518408765977],[123,60,68,0.3541633772691688],[123,60,69,0.3543723738190576],[123,60,70,0.35458041037946303],[123,60,71,0.354789023537027],[123,60,72,0.3549997031436555],[123,60,73,0.3552138887924101],[123,60,74,0.3554329662374884],[123,60,75,0.355658263758269],[123,60,76,0.3558910484674386],[123,60,77,0.3561325225631962],[123,60,78,0.35638381952553116],[123,60,79,0.35664600025658294],[123,61,64,0.35183487441857386],[123,61,65,0.3520996572151209],[123,61,66,0.35235691714315986],[123,61,67,0.3526083319258968],[123,61,68,0.35285554639326455],[123,61,69,0.3531001692059742],[123,61,70,0.35334376952405006],[123,61,71,0.3535878736198325],[123,61,72,0.35383396143545626],[123,61,73,0.3540834630847939],[123,61,74,0.35433775529988487],[123,61,75,0.35459815782182524],[123,61,76,0.3548659297361333],[123,61,77,0.35514226575259067],[123,61,78,0.3554282924295515],[123,61,79,0.35572506434272944],[123,62,64,0.35023008732134514],[123,62,65,0.35053028797051095],[123,62,66,0.3508229881106478],[123,62,67,0.35110985339943956],[123,62,68,0.3513925168719509],[123,62,69,0.3516725756889917],[123,62,70,0.3519515878303673],[123,62,71,0.3522310687330015],[123,62,72,0.352512487873938],[123,62,73,0.3527972652982097],[123,62,74,0.3530867680915993],[123,62,75,0.35338230679826155],[123,62,76,0.3536851317832266],[123,62,77,0.35399642953978144],[123,62,78,0.35431731894172375],[123,62,79,0.3546488474404963],[123,63,64,0.34847123880996783],[123,63,65,0.34880649416189147],[123,63,66,0.34913431160463343],[123,63,67,0.3494563443475168],[123,63,68,0.3497742132140221],[123,63,69,0.3500895034142969],[123,63,70,0.3504037612629633],[123,63,71,0.35071849084220896],[123,63,72,0.35103515061016777],[123,63,73,0.35135514995457884],[123,63,74,0.3516798456917498],[123,63,75,0.3520105385107902],[123,63,76,0.3523484693631399],[123,63,77,0.3526948157973836],[123,63,78,0.35305068823935176],[123,63,79,0.35341712621751187],[123,64,64,0.34655841586672986],[123,64,65,0.34692834791384475],[123,64,66,0.34729094503649244],[123,64,67,0.3476478476159317],[123,64,68,0.3480006638502464],[123,64,69,0.34835096655082304],[123,64,70,0.34870028988454604],[123,64,71,0.3490501260616957],[123,64,72,0.34940192196955394],[123,64,73,0.34975707575170567],[123,64,74,0.3501169333330657],[123,64,75,0.35048278489059237],[123,64,76,0.3508558612697148],[123,64,77,0.3512373303464662],[123,64,78,0.3516282933353203],[123,64,79,0.35202978104273885],[123,65,64,0.3444918087593387],[123,65,65,0.34489602485903526],[123,65,66,0.3452930495215977],[123,65,67,0.345684509923914],[123,65,68,0.34607200122804493],[123,65,69,0.3464570834014843],[123,65,70,0.3468412779835633],[123,65,71,0.3472260647979827],[123,65,72,0.3476128786114795],[123,65,73,0.34800310573861415],[123,65,74,0.3483980805927115],[123,65,75,0.3487990821829112],[123,65,76,0.34920733055736003],[123,65,77,0.3496239831925353],[123,65,78,0.35005013132869767],[123,65,79,0.35048679625148027],[123,66,64,0.3422717110115088],[123,66,65,0.3427098041256903],[123,66,66,0.3431408898835142],[123,66,67,0.3435665818848436],[123,66,68,0.34398846184855697],[123,66,69,0.34440807645639404],[123,66,70,0.34482693414338056],[123,66,71,0.3452465018348134],[123,66,72,0.3456682016298134],[123,66,73,0.34609340743143124],[123,66,74,0.3465234415233417],[123,66,75,0.3469595710930793],[123,66,76,0.3474030047018491],[123,66,77,0.3478548887009023],[123,66,78,0.34831630359447374],[123,66,79,0.34878826034928945],[123,67,64,0.33989851931763926],[123,67,65,0.340370068268697],[123,67,66,0.3408348346013512],[123,67,67,0.34129441796969384],[123,67,68,0.34175038624600496],[123,67,69,0.34220427238797907],[123,67,70,0.3426575712529713],[123,67,71,0.34311173635924375],[123,67,72,0.3435681765942207],[123,67,73,0.3440282528697354],[123,67,74,0.34449327472430735],[123,67,75,0.3449644968724],[123,67,76,0.3454431157006939],[123,67,77,0.3459302657113652],[123,67,78,0.3464270159123659],[123,67,79,0.3469343661547153],[123,68,64,0.33737273340169394],[123,68,65,0.33787730314442244],[123,68,66,0.3383753557003801],[123,68,67,0.338868476413299],[123,68,68,0.33935821890946183],[123,68,69,0.3398461019880934],[123,68,70,0.3403336064592195],[123,68,71,0.340822171928975],[123,68,72,0.3413131935323651],[123,68,73,0.34180801861346677],[123,68,74,0.3423079433531086],[123,68,75,0.3428142093439765],[123,68,76,0.343328000113183],[123,68,77,0.3438504375922888],[123,68,78,0.34438257853477366],[123,68,79,0.3449254108809643],[123,69,64,0.33469495582023895],[123,69,65,0.33523209772921625],[123,69,66,0.33576302858587603],[123,69,67,0.3362893190634065],[123,69,68,0.3368125081469808],[123,69,69,0.3373341000470895],[123,69,70,0.3378555610607964],[123,69,71,0.33837831638089366],[123,69,72,0.33890374685296887],[123,69,73,0.3394331856803614],[123,69,74,0.339967915077056],[123,69,75,0.34050916286845156],[123,69,76,0.34105809904005024],[123,69,77,0.3416158322340521],[123,69,78,0.3421834061938521],[123,69,79,0.34276179615644975],[123,70,64,0.3318658917095636],[123,70,65,0.33243514388152107],[123,70,66,0.33299853182011097],[123,70,67,0.333557611172441],[123,70,68,0.3341139058920166],[123,70,69,0.3346689051747819],[123,70,70,0.3352240603435422],[123,70,71,0.3357807816807502],[123,70,72,0.33634043520966217],[123,70,73,0.33690433942384423],[123,70,74,0.337473761965077],[123,70,75,0.3380499162495961],[123,70,76,0.3386339580427127],[123,70,77,0.33922698198179996],[123,70,78,0.3398300180476441],[123,70,79,0.3404440279841671],[123,71,64,0.3288863484770158],[123,71,65,0.329487236047719],[123,71,66,0.33008264684262256],[123,71,67,0.3306741211321045],[123,71,68,0.33126316745226214],[123,71,69,0.3318512595634169],[123,71,70,0.33243983335747085],[123,71,71,0.3330302837140922],[123,71,72,0.3336239613057379],[123,71,73,0.3342221693514934],[123,71,74,0.33482616031977847],[123,71,75,0.33543713257985497],[123,71,76,0.3360562270021821],[123,71,77,0.33668452350760464],[123,71,78,0.3373230375653722],[123,71,79,0.3379727166399979],[123,72,64,0.32575723543649404],[123,72,65,0.32638927091165937],[123,72,66,0.327016257633708],[123,72,67,0.3276397201507618],[123,72,68,0.32826115120084554],[123,72,69,0.32888200869260464],[123,72,70,0.32950371263535044],[123,72,71,0.3301276420184059],[123,72,72,0.33075513163976344],[123,72,73,0.3313874688840307],[123,72,74,0.3320258904497192],[123,72,75,0.3326715790258047],[123,72,76,0.3333256599176104],[123,72,77,0.3339891976219962],[123,72,78,0.33466319235185127],[123,72,79,0.33534857650990113],[123,73,64,0.3224795633880122],[123,73,65,0.32314224698778315],[123,73,66,0.32380035032105614],[123,73,67,0.32445538187352485],[123,73,68,0.3251088182098093],[123,73,69,0.32576210097612757],[123,73,70,0.3264166338527749],[123,73,71,0.3270737794563827],[123,73,72,0.32773485619196924],[123,73,73,0.32840113505475743],[123,73,74,0.3290738363818153],[123,73,75,0.3297541265534475],[123,73,76,0.33044311464438875],[123,73,77,0.33114184902478294],[123,73,78,0.3318513139109454],[123,73,79,0.33257242586591834],[123,74,64,0.31905444414148915],[123,74,65,0.31974726415799554],[123,74,66,0.32043601272966893],[123,74,67,0.3211221819451857],[123,74,68,0.3218072318260139],[123,74,69,0.32249258735077063],[123,74,70,0.32317963542987305],[123,74,71,0.32386972183045415],[123,74,72,0.324564148051556],[123,74,73,0.3252641681495742],[123,74,74,0.3259709855140131],[123,74,75,0.3266857495934745],[123,74,76,0.3274095525719355],[123,74,77,0.3281434259952967],[123,74,78,0.3288883373481992],[123,74,79,0.3296451865811201],[123,75,64,0.3154830899846964],[123,75,65,0.31620552315221906],[123,75,66,0.3169244338750066],[123,75,67,0.3176412975159345],[123,75,68,0.3183575571894046],[123,75,69,0.3190746208071107],[123,75,70,0.3197938580745904],[123,75,71,0.32051659743853345],[123,75,72,0.32124412298485744],[123,75,73,0.3219776712875265],[123,75,74,0.322718428208173],[123,75,75,0.32346752564644154],[123,75,76,0.32422603824111546],[123,75,77,0.32499498002200355],[123,75,78,0.3257753010125873],[123,75,79,0.32656788378343826],[123,76,64,0.31176681309526605],[123,76,65,0.3125183249725324],[123,76,66,0.31326690339925933],[123,76,67,0.31401400668976487],[123,76,68,0.3147610606935466],[123,76,69,0.31550945586217227],[123,76,70,0.31626054426745315],[123,76,71,0.31701563657087106],[123,76,72,0.3177759989442696],[123,76,73,0.31854284994178417],[123,76,74,0.3193173573230734],[123,76,75,0.32010063482776874],[123,76,76,0.32089373890120265],[123,76,77,0.32169766537139555],[123,76,78,0.3225133460772983],[123,76,79,0.3233416454483027],[123,77,64,0.30790702489693533],[123,77,65,0.3086870702610679],[123,77,66,0.30946481095092115],[123,77,67,0.31024168791573997],[123,77,68,0.3110191093885972],[123,77,69,0.31179844797411616],[123,77,70,0.3125810376879791],[123,77,71,0.31336817094819064],[123,77,72,0.3141610955181092],[123,77,73,0.31496101140121646],[123,77,74,0.31576906768769475],[123,77,75,0.316586359352721],[123,77,76,0.3174139240065432],[123,77,77,0.3182527385963174],[123,77,78,0.3191037160597032],[123,77,79,0.3199677019302282],[123,78,64,0.3039052353599485],[123,78,65,0.30471325861159093],[123,78,66,0.3055196455075856],[123,78,67,0.30632581932204206],[123,78,68,0.3071331703266409],[123,78,69,0.30794305289888796],[123,78,70,0.30875678258266304],[123,78,71,0.30957563310103103],[123,78,72,0.31040083332132784],[123,78,73,0.3112335641724924],[123,78,74,0.3120749555147136],[123,78,75,0.31292608296130153],[123,78,76,0.31378796465284886],[123,78,77,0.31466155798365947],[123,78,78,0.31554775628044357],[123,78,79,0.3164473854332898],[123,79,64,0.2997630522455093],[123,79,65,0.3005984878246525],[123,79,66,0.30143299464185874],[123,79,67,0.3022679779927],[123,79,68,0.30310480984928134],[123,79,69,0.30394482598871986],[123,79,70,0.3047893230744313],[123,79,71,0.30563955569019086],[123,79,72,0.3064967333269824],[123,79,73,0.3073620173226044],[123,79,74,0.3082365177541059],[123,79,75,0.3091212902829571],[123,79,76,0.31001733295302353],[123,79,77,0.31092558294131956],[123,79,78,0.31184691326154124],[123,79,79,0.3127821294203888],[123,80,64,0.29548218029448],[123,80,65,0.29634445310651314],[123,80,66,0.2972065437305841],[123,80,67,0.29806983918718755],[123,80,68,0.2989356928176822],[123,80,69,0.2998054214326791],[123,80,70,0.3006803024137564],[123,80,71,0.30156157076846557],[123,80,72,0.3024504161386439],[123,80,73,0.30334797976199845],[123,80,74,0.30425535138704213],[123,80,75,0.305173566141277],[123,80,76,0.30610360135270115],[123,80,77,0.307046373324612],[123,80,78,0.3080027340637054],[123,80,79,0.3089734679614827],[123,81,64,0.29106442036023744],[123,81,65,0.2919529462117466],[123,81,66,0.2928420751072891],[123,81,67,0.29373317550280476],[123,81,68,0.2946275817849696],[123,81,69,0.2955265914391729],[123,81,70,0.2964314621713434],[123,81,71,0.29734340898358896],[123,81,72,0.2982636012036635],[123,81,73,0.29919315946822916],[123,81,74,0.30013315265999096],[123,81,75,0.30108459479860206],[123,81,76,0.30204844188541313],[123,81,77,0.30302558870204144],[123,81,78,0.3040168655627574],[123,81,79,0.30502303502070083],[123,82,64,0.2865116684855702],[123,82,65,0.28742585452940766],[123,82,66,0.2883414671577397],[123,82,67,0.2892598559797278],[123,82,68,0.2901823361108823],[123,82,69,0.2911101853603],[123,82,70,0.29204464137227826],[123,82,71,0.2929868987222683],[123,82,72,0.2939381059671835],[123,82,73,0.2948993626500274],[123,82,74,0.29587171625892317],[123,82,75,0.29685615914043784],[123,82,76,0.29785362536727916],[123,82,77,0.29886498756033664],[123,82,78,0.2998910536650682],[123,82,79,0.3009325636822424],[123,83,64,0.28182591492383124],[123,83,65,0.28276516011298103],[123,83,66,0.2837066933588156],[123,83,67,0.2846518451489389],[123,83,68,0.28560191101887966],[123,83,69,0.28655814875825525],[123,83,70,0.2875217755718428],[123,83,71,0.28849396519552095],[123,83,72,0.28947584496709744],[123,83,73,0.2904684928519857],[123,83,74,0.29147293442381583],[123,83,75,0.2924901397998697],[123,83,76,0.29352102053141904],[123,83,77,0.29456642644893993],[123,83,78,0.2956271424622023],[123,83,79,0.29670388531524666],[123,84,64,0.27700924310425035],[123,84,65,0.27797293865401096],[123,84,66,0.2789398212606091],[123,84,67,0.27991120202294073],[123,84,68,0.2808883565956134],[123,84,69,0.28187252241369476],[123,84,70,0.28286489587290553],[123,84,71,0.2838666294652169],[123,84,72,0.28487882886986804],[123,84,73,0.28590254999976805],[123,84,74,0.28693879600336814],[123,84,75,0.2879885142218902],[123,84,76,0.28905259310199555],[123,84,77,0.29013185906386374],[123,84,78,0.291227073324681],[123,84,79,0.29233892867755196],[123,85,64,0.272063828541273],[123,85,65,0.27305135839928346],[123,85,66,0.2740430114116195],[123,85,67,0.27504007902912736],[123,85,68,0.27604381673263356],[123,85,69,0.27705544127593307],[123,85,70,0.2780761278847602],[123,85,71,0.27910700741170313],[123,85,72,0.2801491634470775],[123,85,73,0.28120362938572185],[123,85,74,0.2822713854498031],[123,85,75,0.2833533556675176],[123,85,76,0.2844504048077684],[123,85,77,0.28556333527079447],[123,85,78,0.286692883934746],[123,85,79,0.2878397189582227],[123,86,64,0.26699193768816964],[123,86,65,0.2680026790118003],[123,86,66,0.2690185162272799],[123,86,67,0.2700407208860467],[123,86,68,0.2710705280105662],[123,86,69,0.2721091333552077],[123,86,70,0.2731576906236445],[123,86,71,0.27421730864274085],[123,86,72,0.27528904849294056],[123,86,73,0.27637392059511784],[123,86,74,0.27747288175398416],[123,86,75,0.27858683215792873],[123,86,76,0.2797166123353808],[123,86,77,0.2808630000676642],[123,86,78,0.2820267072583414],[123,86,79,0.2832083767590623],[123,87,64,0.2617959267348008],[123,87,65,0.2628292503754335],[123,87,66,0.2638686788017073],[123,87,67,0.2649154634224467],[123,87,68,0.2659708185256514],[123,87,69,0.267035918556901],[123,87,70,0.26811189535483226],[123,87,71,0.2691998353436478],[123,87,72,0.27030077668267205],[123,87,73,0.27141570637291507],[123,87,74,0.27254555732073904],[123,87,75,0.2736912053585032],[123,87,76,0.27485346622227647],[123,87,77,0.276033092486588],[123,87,78,0.277230770456214],[123,87,79,0.27844711701501346],[123,88,64,0.2564782403494019],[123,88,65,0.25753351134312374],[123,88,66,0.25859593166253764],[123,88,67,0.25966673233896886],[123,88,68,0.26074710665850864],[123,88,69,0.26183820745758646],[123,88,70,0.2629411443761648],[123,88,71,0.2640569810685133],[123,88,72,0.2651867323715797],[123,88,73,0.26633136143091696],[123,88,74,0.2674917767842636],[123,88,75,0.2686688294026491],[123,88,76,0.269863309689118],[123,88,77,0.2710759444350401],[123,88,78,0.2723073937340048],[123,88,79,0.27355824785331584],[123,89,64,0.25104141036466177],[123,89,65,0.2521179884288943],[123,89,66,0.25320279546912006],[123,89,67,0.2542970419127578],[123,89,68,0.255401899785396],[123,89,69,0.25651850002316545],[123,89,70,0.2576479297432869],[123,89,71,0.25879122947275],[123,89,72,0.25994939033514197],[123,89,73,0.26112335119558155],[123,89,74,0.26231399576386166],[123,89,75,0.2635221496556671],[123,89,76,0.2647485774119626],[123,89,77,0.26599397947652037],[123,89,78,0.2672589891315823],[123,89,79,0.2685441693916758],[123,90,64,0.2454880544078643],[123,90,65,0.24658529444345292],[123,90,66,0.2476918776538395],[123,90,67,0.24880899364476297],[123,90,68,0.24993779293174104],[123,90,69,0.2510793842688718],[123,90,70,0.2522348319363652],[123,90,71,0.2534051529867616],[123,90,72,0.25459131444985283],[123,90,73,0.2557942304962655],[123,90,74,0.2570147595598065],[123,90,75,0.2582537014184383],[123,90,76,0.25951179423397985],[123,90,77,0.2607897115505012],[123,90,78,0.26208805925140816],[123,90,79,0.2634073724752347],[123,91,64,0.23982087447527345],[123,91,65,0.24093812707356074],[123,91,66,0.24206587100674856],[123,91,67,0.24320527484990712],[123,91,68,0.24435746736811562],[123,91,69,0.2455235348613177],[123,91,70,0.2467045184684639],[123,91,71,0.24790141143089808],[123,91,72,0.24911515631500494],[123,91,73,0.250346642194075],[123,91,74,0.2515967017894919],[123,91,75,0.2528661085711039],[123,91,76,0.25415557381688086],[123,91,77,0.2554657436318199],[123,91,78,0.2567971959261004],[123,91,79,0.25815043735250326],[123,92,64,0.23404265545051148],[123,92,65,0.23517926740491724],[123,92,66,0.23632755220325866],[123,92,67,0.2374886571898764],[123,92,68,0.23866368914841235],[123,92,69,0.2398537116623381],[123,92,70,0.24105974243533204],[123,92,71,0.24228275057145873],[123,92,72,0.24352365381516994],[123,92,73,0.2447833157510819],[123,92,74,0.24606254296363567],[123,92,75,0.24736208215650063],[123,92,76,0.2486826172318229],[123,92,77,0.2500247663292828],[123,92,78,0.2513890788249609],[123,92,79,0.2527760322900283],[123,93,64,0.22815626356722749],[123,93,65,0.22931157838885963],[123,93,66,0.23047978027518598],[123,93,67,0.23166199514882502],[123,93,68,0.2328593075905131],[123,93,69,0.23407275821492324],[123,93,70,0.235303341006895],[123,93,71,0.23655200061802897],[123,93,72,0.23781962962366382],[123,93,73,0.23910706574019175],[123,93,74,0.24041508900281944],[123,93,75,0.24174441890363285],[123,93,76,0.2430957114900692],[123,93,77,0.24446955642376028],[123,93,78,0.24586647399974537],[123,93,79,0.2472869121260705],[123,94,64,0.22216464481592194],[123,94,65,0.2233380032527415],[123,94,66,0.2245254950250192],[123,94,67,0.22572822445186108],[123,94,68,0.22694725369931795],[123,94,69,0.22818360017110836],[123,94,70,0.2294382338603172],[123,94,71,0.23071207466202215],[123,94,72,0.23200598964686692],[123,94,73,0.23332079029553526],[123,94,74,0.2346572296942364],[123,94,75,0.23601599969105602],[123,94,76,0.23739772801327896],[123,94,77,0.23880297534564704],[123,94,78,0.2402322323695495],[123,94,79,0.24168591676316503],[123,95,64,0.21607082329477018],[123,95,65,0.21726156385383436],[123,95,66,0.2184677153832529],[123,95,67,0.21969036042615983],[123,95,68,0.22093053853197983],[123,95,69,0.2221892436616668],[123,95,70,0.22346742155448335],[123,95,71,0.2247659670562731],[123,95,72,0.22608572140924627],[123,95,73,0.22742746950322962],[123,95,74,0.22879193708849532],[123,95,75,0.23017978795001914],[123,95,76,0.2315916210432764],[123,95,77,0.23302796759153804],[123,95,78,0.23448928814466552],[123,95,79,0.2359759695994214],[123,96,64,0.20987789950474472],[123,96,65,0.21108535897705089],[123,96,66,0.21230953770908395],[123,96,67,0.2135514963049993],[123,96,68,0.21481225150564043],[123,96,69,0.2160927736079002],[123,96,70,0.21739398384619096],[123,96,71,0.2187167517359745],[123,96,72,0.22006189237937113],[123,96,73,0.22143016373280078],[123,96,74,0.22282226383676984],[123,96,75,0.22423882800765388],[123,96,76,0.22568042599158455],[123,96,77,0.22714755908040474],[123,96,78,0.2286406571896879],[123,96,79,0.23016007589884113],[123,97,64,0.20358904858889368],[123,97,65,0.2048125625763489],[123,97,66,0.20605413403432987],[123,97,67,0.2073148014745786],[123,97,68,0.20859555864752655],[123,97,69,0.20989735197538567],[123,97,70,0.21122107794791545],[123,97,71,0.21256758048081864],[123,97,72,0.21393764823678418],[123,97,73,0.21533201190912915],[123,97,74,0.21675134146815633],[123,97,75,0.21819624337007387],[123,97,76,0.21966725772858897],[123,97,77,0.22116485544913583],[123,97,78,0.22268943532573776],[123,97,79,0.22424132110052009],[123,98,64,0.19720751851561014],[123,98,65,0.1984464219596488],[123,98,66,0.19970475025040457],[123,98,67,0.2009835196634535],[123,98,68,0.20228370078724373],[123,98,69,0.20360621596951795],[123,98,70,0.2049519367269842],[123,98,71,0.20632168111818178],[123,98,72,0.20771621107956567],[123,98,73,0.2091362297247567],[123,98,74,0.2105823786070789],[123,98,75,0.2120552349452262],[123,98,76,0.21355530881217266],[123,98,77,0.21508304028728653],[123,98,78,0.2166387965716468],[123,98,79,0.21822286906658062],[123,99,64,0.1907366282062078],[123,99,65,0.1919902559175818],[123,99,66,0.19326470423866476],[123,99,67,0.1945609670749044],[123,99,68,0.19587999169157916],[123,99,69,0.19722267617315714],[123,99,70,0.19858986684647112],[123,99,71,0.19998235566766048],[123,99,72,0.2014008775728997],[123,99,73,0.20284610779286338],[123,99,74,0.20431865913104869],[123,99,75,0.20581907920579595],[123,99,76,0.20734784765612324],[123,99,77,0.20890537331133457],[123,99,78,0.21049199132440055],[123,99,79,0.21210796026912943],[123,100,64,0.1841797656066535],[123,100,65,0.1854474527959173],[123,100,66,0.1867373839439797],[123,100,67,0.18805053046208547],[123,100,68,0.1893878161416659],[123,100,69,0.19075011462623348],[123,100,70,0.19213824684766345],[123,100,71,0.19355297842681268],[123,100,72,0.1949950170384957],[123,100,73,0.19646500974076658],[123,100,74,0.19796354026863056],[123,100,75,0.19949112629202248],[123,100,76,0.2010482166381703],[123,100,77,0.2026351884783027],[123,100,78,0.20425234447869917],[123,100,79,0.2058999099161013],[123,101,64,0.177540385703282],[123,101,65,0.17882146851149794],[123,101,66,0.18012624539134814],[123,101,67,0.18145566514578387],[123,101,68,0.18281062795233471],[123,101,69,0.18419198284713834],[123,101,70,0.185600525173929],[123,101,71,0.1870369939979334],[123,101,72,0.18850206948469506],[123,101,73,0.1899963702437743],[123,101,74,0.19152045063745016],[123,101,75,0.19307479805425842],[123,101,76,0.1946598301474859],[123,101,77,0.1962758920385797],[123,101,78,0.19792325348546985],[123,101,79,0.19960210601582334],[123,102,64,0.17082200848282603],[123,102,65,0.17211582451201185],[123,102,66,0.17343481064589633],[123,102,67,0.17477989297511892],[123,102,68,0.17615194793398492],[123,102,69,0.17755179979622976],[123,102,70,0.17898021813631287],[123,102,71,0.18043791525619068],[123,102,72,0.181925543577588],[123,102,73,0.1834436929997159],[123,102,74,0.1849928882225626],[123,102,75,0.18657358603559138],[123,102,76,0.18818617257196535],[123,102,77,0.18983096052825787],[123,102,78,0.19150818634964722],[123,102,79,0.19321800738061395],[123,103,64,0.16402821683660102],[123,103,65,0.1653341056794438],[123,103,66,0.16666666571609634],[123,103,67,0.16802680023102212],[123,103,68,0.1694153617968145],[123,103,69,0.17083314978129338],[123,103,70,0.1722809078207042],[123,103,71,0.17375932125896537],[123,103,72,0.17526901455298477],[123,103,73,0.17681054864399437],[123,103,74,0.1783844182950277],[123,103,75,0.17999104939437555],[123,103,76,0.18163079622513806],[123,103,77,0.18330393870083528],[123,103,78,0.18501067956707007],[123,103,79,0.18675114156926648],[123,104,64,0.15716265440866772],[123,104,65,0.1584799581770281],[123,104,66,0.15982545840002788],[123,104,67,0.16120003547232165],[123,104,68,0.16260451799723308],[123,104,69,0.16403968030478505],[123,104,70,0.16550623993639996],[123,104,71,0.16700485509621965],[123,104,72,0.16853612206906604],[123,104,73,0.17010057260498734],[123,104,74,0.17169867127052046],[123,104,75,0.17333081276649986],[123,104,76,0.17499731921253425],[123,104,77,0.1766984373981108],[123,104,78,0.17843433600032377],[123,104,79,0.1802051027682473],[123,105,64,0.15022902338831512],[123,105,65,0.15155708724004457],[123,105,66,0.15291489607502579],[123,105,67,0.15430330732477138],[123,105,68,0.155723125526799],[123,105,69,0.15717509985319245],[123,105,70,0.15865992160640108],[123,105,71,0.16017822168223222],[123,105,72,0.16173056800004976],[123,105,73,0.16331746290013088],[123,105,74,0.16493934050830789],[123,105,75,0.16659656406772633],[123,105,76,0.1682894232378394],[123,105,77,0.17001813136060218],[123,105,78,0.1717828226938568],[123,105,79,0.17358354961193523],[123,106,64,0.14323108224669756],[123,106,65,0.1445692549102935],[123,106,66,0.14593874343054725],[123,106,67,0.147340382212862],[123,106,68,0.14877495164351556],[123,106,69,0.15024317562835215],[123,106,70,0.15174571909928075],[123,106,71,0.15328318548853553],[123,106,72,0.15485611417071093],[123,106,73,0.15646497787252467],[123,106,74,0.15811018005043365],[123,106,75,0.1597920522359358],[123,106,76,0.1615108513486771],[123,106,77,0.16326675697732684],[123,106,78,0.16505986862821304],[123,106,79,0.16689020294174428],[123,107,64,0.13617264341744523],[123,107,65,0.13752027771406594],[123,107,66,0.13890082014407834],[123,107,67,0.1403150820342301],[123,107,68,0.14176381954530493],[123,107,69,0.1432477312205438],[123,107,70,0.1447674555024429],[123,107,71,0.14632356821787862],[123,107,72,0.14791658003157765],[123,107,73,0.1495469338678811],[123,107,74,0.15121500230093038],[123,107,75,0.15292108491310702],[123,107,76,0.15466540562184344],[123,107,77,0.15644810997477282],[123,107,78,0.15826926241320477],[123,107,79,0.16012884350395634],[123,108,64,0.12905757092159975],[123,108,65,0.13041402428396437],[123,108,66,0.1318049985004306],[123,108,67,0.13323128177701848],[123,108,68,0.13469360598601138],[123,108,69,0.13619264422370797],[123,108,70,0.1377290083371196],[123,108,71,0.13930324641955966],[123,108,72,0.14091584027514614],[123,108,73,0.14256720285216157],[123,108,74,0.14425767564540704],[123,108,75,0.14598752606736964],[123,108,76,0.14775694478833418],[123,108,77,0.14956604304539528],[123,108,78,0.1514148499203649],[123,108,79,0.15330330958660066],[123,109,64,0.12188977793670469],[123,109,65,0.12325441292440042],[123,109,66,0.12465520095425864],[123,109,67,0.12609290708001758],[123,109,68,0.12756823883376434],[123,109,69,0.1290818437926205],[123,109,70,0.13063430711494017],[123,109,71,0.1322261490459638],[123,109,72,0.13385782239295124],[123,109,73,0.13552970996973596],[123,109,74,0.13724212201084007],[123,109,75,0.13899529355496654],[123,109,76,0.140789381798001],[123,109,77,0.1426244634154793],[123,109,78,0.14450053185451556],[123,109,79,0.14641749459521658],[123,110,64,0.11467322430986271],[123,110,65,0.11604540912058375],[123,110,66,0.11745539763560964],[123,110,67,0.11890393173539915],[123,110,68,0.12039169457151255],[123,110,69,0.12191930814183632],[123,110,70,0.12348733083588409],[123,110,71,0.12509625495011678],[123,110,72,0.12674650417330546],[123,110,73,0.12843843104187802],[123,110,74,0.13017231436539117],[123,110,75,0.13194835662194165],[123,110,76,0.13376668132365171],[123,110,77,0.13562733035218222],[123,110,78,0.13753026126427093],[123,110,79,0.13947534456732003],[123,111,64,0.10741191401512507],[123,111,65,0.10879102299136667],[123,111,66,0.11020960379887101],[123,111,67,0.11166837513440825],[123,111,68,0.11316799574009484],[123,111,69,0.11470906198676528],[123,111,70,0.11629210542798069],[123,111,71,0.1179175903246184],[123,111,72,0.11958591114006517],[123,111,73,0.12129739000595646],[123,111,74,0.12305227415860137],[123,111,75,0.12485073334590968],[123,111,76,0.12669285720495221],[123,111,77,0.1285786526101132],[123,111,78,0.13050804099182645],[123,111,79,0.13248085562592338],[123,112,64,0.10010989255503305],[123,112,65,0.10149530668576373],[123,112,66,0.10292187721493545],[123,112,67,0.10439029965583285],[123,112,68,0.10590120832366684],[123,112,69,0.10745517392670112],[123,112,70,0.10905270112857685],[123,112,71,0.11069422608177593],[123,112,72,0.11238011393224884],[123,112,73,0.11411065629514505],[123,112,74,0.11588606870179202],[123,112,75,0.11770648801773181],[123,112,76,0.11957196983195317],[123,112,77,0.12148248581727267],[123,112,78,0.12343792106186058],[123,112,79,0.12543807137193697],[123,113,64,0.09277124430612543],[123,113,65,0.09416235172296139],[123,113,66,0.0955963155063968],[123,113,67,0.09707380799706589],[123,113,68,0.09859543907729912],[123,113,69,0.10016175376961856],[123,113,70,0.10177322980698739],[123,113,71,0.10343027517475445],[123,113,72,0.10513322562432148],[123,113,73,0.10688234215846854],[123,113,74,0.10867780848848502],[123,113,75,0.11051972846291608],[123,113,76,0.11240812346806],[123,113,77,0.11434292980017241],[123,113,78,0.1163239960093716],[123,113,79,0.11835108021527141],[123,114,64,0.08540008980879948],[123,114,65,0.08679628627620495],[123,114,66,0.08823705342616728],[123,114,67,0.08972304044814688],[123,114,68,0.09125483279713364],[123,114,69,0.09283294979912537],[123,114,70,0.09445784222891507],[123,114,71,0.09612988986012727],[123,114,72,0.09784939898753114],[123,114,73,0.0996165999215658],[123,114,74,0.10143164445522712],[123,114,75,0.10329460330312146],[123,114,76,0.10520546351282661],[123,114,77,0.10716412584851298],[123,114,78,0.10917040214682061],[123,114,79,0.11122401264501702],[123,115,64,0.07800058300120122],[123,115,65,0.07940127240023775],[123,115,66,0.08084826007918605],[123,115,67,0.08234217210845673],[123,115,68,0.08388356953277143],[123,115,69,0.08547294598324279],[123,115,70,0.08711072526231467],[123,115,71,0.08879725890150453],[123,115,72,0.09053282369197141],[123,115,73,0.09231761918784975],[123,115,74,0.09415176518249446],[123,115,75,0.09603529915744591],[123,115,76,0.09796817370425154],[123,115,77,0.0999502539191014],[123,115,78,0.10198131477026812],[123,115,79,0.1040610384383826],[123,116,64,0.07057690839739034],[123,116,65,0.07198150320253971],[123,116,66,0.0734341360874719],[123,116,67,0.07493541004631665],[123,116,68,0.07648586174214339],[123,116,69,0.07808595912526434],[123,116,70,0.07973609902494888],[123,116,71,0.08143660471448544],[123,116,72,0.08318772344962067],[123,116,73,0.08498962398030907],[123,116,74,0.08684239403592553],[123,116,75,0.08874603778374429],[123,116,76,0.09070047326082337],[123,116,77,0.09270552977925095],[123,116,78,0.0947609453047451],[123,116,79,0.09686636380863722],[123,117,64,0.06313327820944487],[123,117,65,0.06454119995802687],[123,117,66,0.06599891069817726],[123,117,67,0.06750699040114877],[123,117,68,0.0690659513885209],[123,117,69,0.07067623595635392],[123,117,70,0.07233821397329843],[123,117,71,0.07405218045259876],[123,117,72,0.07581835309801749],[123,117,73,0.07763686982361628],[123,117,74,0.07950778624754479],[123,117,75,0.08143107315964038],[123,117,76,0.08340661396297921],[123,117,77,0.08543420208933344],[123,117,78,0.08751353838852799],[123,117,79,0.08964422849172488],[123,118,64,0.05567392941390631],[123,118,65,0.05708460916761848],[123,118,66,0.05854683883505246],[123,118,67,0.06006117542860656],[123,118,68,0.061628106980076036],[123,118,69,0.06324805017028712],[123,118,70,0.06492134793323168],[123,118,71,0.06664826703463289],[123,118,72,0.06842899562497778],[123,118,73,0.07026364076694408],[123,118,74,0.0721522259373798],[123,118,75,0.07409468850363332],[123,118,76,0.07609087717437674],[123,118,77,0.07814054942487791],[123,118,78,0.08024336889671208],[123,118,79,0.08239890277194417],[123,119,64,0.048203120762375096],[123,119,65,0.0496159995604738],[123,119,66,0.05108219809312137],[123,119,67,0.0526022504884785],[123,119,68,0.05417662055179129],[123,119,69,0.05580569940014135],[123,119,70,0.05748980307223539],[123,119,71,0.05922917011316242],[123,119,72,0.061023959134157146],[123,119,73,0.06287424634729505],[123,119,74,0.06478002307527747],[123,119,75,0.06674119323610578],[123,119,76,0.06875757080278738],[123,119,77,0.07082887723802639],[123,119,78,0.07295473890389398],[123,119,79,0.07513468444650623],[123,120,64,0.04072512973606607],[123,120,65,0.04213965903971684],[123,120,66,0.043609285676387],[123,120,67,0.04513452097518056],[123,120,68,0.046715804589539445],[123,120,69,0.04835350213675099],[123,120,70,0.05004790281302718],[123,120,71,0.05179921698408685],[123,120,72,0.053607573751278004],[123,120,73,0.05547301849316394],[123,120,74,0.05739551038273705],[123,120,75,0.059374919880052335],[123,120,76,0.06141102620042793],[123,120,77,0.06350351475816568],[123,120,78,0.06565197458578304],[123,120,79,0.06785589572878814],[123,121,64,0.033244249444704665],[123,121,65,0.03465989157202215],[123,121,66,0.036132415278940344],[123,121,67,0.03766230919121255],[123,121,68,0.03924998889670417],[123,121,69,0.04089579458930098],[123,121,70,0.04259998868892079],[123,121,71,0.04436275343755669],[123,121,72,0.04618418847139094],[123,121,73,0.048064308368902575],[123,121,74,0.050003040175132185],[123,121,75,0.052000220901896876],[123,121,76,0.054055595004102064],[123,121,77,0.05616881183210276],[123,121,78,0.05833942306010653],[123,121,79,0.06056688009065003],[123,122,64,0.025764785469574114],[123,122,65,0.027181014020876026],[123,122,66,0.028655913909286235],[123,122,67,0.030189951163393236],[123,122,68,0.031783517403157824],[123,122,69,0.0334369274878743],[123,122,70,0.035150417140758894],[123,122,71,0.03692414055009752],[123,122,72,0.038758167946988276],[123,122,73,0.04065248315960346],[123,122,74,0.04260698114413547],[123,122,75,0.04462146549221735],[123,122,76,0.04669564591496589],[123,122,77,0.04882913570360037],[123,122,78,0.051021449166628874],[123,122,79,0.05327199904363222],[123,123,64,0.018291052650521222],[123,123,65,0.019707352923320876],[123,123,66,0.021184118657694984],[123,123,67,0.022721793401679347],[123,123,68,0.024320744916403514],[123,123,69,0.025981262827759866],[123,123,70,0.027703556255222472],[123,123,71,0.02948775141774518],[123,123,72,0.031333889216775934],[123,123,73,0.03324192279631133],[123,123,74,0.035211715080157524],[123,123,75,0.037243036286185194],[123,123,76,0.039335561417729537],[123,123,77,0.04148886773208571],[123,123,78,0.043702432186094486],[123,123,79,0.04597562885884565],[123,124,64,0.01082737181730381],[123,124,65,0.012243241210563527],[123,124,66,0.01372137340695917],[123,124,67,0.015262189600951603],[123,124,68,0.016866033815259862],[123,124,69,0.018533170555900758],[123,124,70,0.020263782444894907],[123,124,71,0.02205796783056746],[123,124,72,0.023915738375483997],[123,124,73,0.025837016621939823],[123,124,74,0.027821633535175083],[123,124,75,0.02986932602409753],[123,124,76,0.03197973443966895],[123,124,77,0.03415240005090281],[123,124,78,0.03638676249846806],[123,124,79,0.038682157225926495],[123,125,64,0.0033780664650887027],[123,125,65,0.004793014872258694],[123,125,66,0.006272025486368182],[123,125,67,0.007815497285578399],[123,125,68,0.009423750685905397],[123,125,69,0.011097025199298005],[123,125,70,0.01283547706989474],[123,125,71,0.014639176888387007],[123,125,72,0.016508107184527887],[123,125,73,0.018442159997707597],[123,125,74,0.020441134425764007],[123,125,75,0.022504734151814976],[123,125,76,0.024632564949264246],[123,125,77,0.02682413216492896],[123,125,78,0.02907883818028778],[123,125,79,0.031395979850872946],[123,126,64,-0.004052540626090395],[123,126,65,-0.0026389904357251304],[123,126,66,-0.0011595777312931599],[123,126,67,3.8607439656390685E-4],[123,126,68,0.001998262900083203],[123,126,69,0.003677202435171445],[123,126,70,0.005423023000883487],[123,126,71,0.007235767557511874],[123,126,72,0.009115389623328474],[123,126,73,0.01106175084989991],[123,126,74,0.013074618576144226],[123,126,75,0.01515366336091617],[123,126,76,0.017298456494270975],[123,126,77,0.01950846748735846],[123,126,78,0.021783061540942894],[123,126,79,0.024121496992572045],[123,127,64,-0.011460130827535275],[123,127,65,-0.01004844283967532],[123,127,66,-0.00856909228933933],[123,127,67,-0.007021724178337019],[123,127,68,-0.005406064864148297],[123,127,69,-0.0037219243967359095],[123,127,70,-0.0019691988761708634],[123,127,71,-1.4787283114525707E-4],[123,127,72,0.0017419783816696732],[123,127,73,0.0037001861573373596],[123,127,74,0.0057264862016152],[123,127,75,0.007820516068941519],[123,127,76,0.009981812679603519],[123,127,77,0.012209809816036366],[123,127,78,0.014503835598246972],[123,127,79,0.016863109938393905],[123,128,64,-0.018840393153934598],[123,128,65,-0.017431017752731814],[123,128,66,-0.01595218116356356],[123,128,67,-0.014403550131728116],[123,128,68,-0.012784874159308512],[123,128,69,-0.011095987839901622],[123,128,70,-0.009336813213663864],[123,128,71,-0.007507362142748386],[123,128,72,-0.0056077387070929685],[123,128,73,-0.0036381416206382466],[123,128,74,-0.0015988666678058427],[123,128,75,5.096908395455513E-4],[123,128,76,0.0026870335848430127],[123,128,77,0.004932559749147969],[123,128,78,0.007245560493125192],[123,128,79,0.009625217418663845],[123,129,64,-0.02618902781145327],[123,129,65,-0.024782401436095447],[123,129,66,-0.023304517835588623],[123,129,67,-0.02175506532109217],[123,129,68,-0.02013381636322298],[123,129,69,-0.018440629925004948],[123,129,70,-0.01667545381464486],[123,129,71,-0.0148383270582092],[123,129,72,-0.012929382292162894],[123,129,73,-0.010948848175847625],[123,129,74,-0.008897051823729352],[123,129,75,-0.006774421257634611],[123,129,76,-0.004581487878817958],[123,129,77,-0.002318888959913057],[123,129,78,1.2629843227252024E-5],[123,129,79,0.002412211959830879],[123,130,64,-0.03350174980148524],[123,130,65,-0.03209829461637981],[123,130,66,-0.03062178992281639],[123,130,67,-0.029071945410349187],[123,130,68,-0.027448556331209573],[123,130,69,-0.025751505831770216],[123,130,70,-0.023980767303357076],[123,130,71,-0.022136406752472193],[123,130,72,-0.02021858519039832],[123,130,73,-0.01822756104225709],[123,130,74,-0.016163692575353217],[123,130,75,-0.014027440347021636],[123,130,76,-0.011819369671822955],[123,130,77,-0.009540153108137828],[123,130,78,-0.007190572964166586],[123,130,79,-0.004771523823303148],[123,131,64,-0.04077429258025367],[123,131,65,-0.03937441615928383],[123,131,66,-0.037899702865158424],[123,131,67,-0.036349883568637],[123,131,68,-0.03472477610590741],[123,131,69,-0.03302428760885623],[123,131,70,-0.031248416854208205],[123,131,71,-0.029397256631599866],[123,131,72,-0.027470996130555814],[123,131,73,-0.025469923346440715],[123,131,74,-0.023394427505217696],[123,131,75,-0.02124500150723352],[123,131,76,-0.019022244389872878],[123,131,77,-0.016726863809132464],[123,131,78,-0.014359678540124099],[123,131,79,-0.011921620996471649],[123,132,64,-0.04800241177444875],[123,132,65,-0.046606506799779845],[123,132,66,-0.04513398366873911],[123,132,67,-0.04358459422650196],[123,132,68,-0.04195817868494056],[123,132,69,-0.04025466795198129],[123,132,70,-0.038474085979361416],[123,132,71,-0.0366165521288454],[123,132,72,-0.03468228355687353],[123,132,73,-0.03267159761771243],[123,132,74,-0.030584914284943476],[123,132,75,-0.02842275859150034],[123,132,76,-0.02618576308810905],[123,132,77,-0.023874670320172986],[123,132,78,-0.021490335323114174],[123,132,79,-0.01903372813613824],[123,133,64,-0.055181888952528735],[123,133,65,-0.053790332928441265],[123,133,66,-0.05232038470619671],[123,133,67,-0.05077181688912846],[123,133,68,-0.04914449184603764],[123,133,69,-0.04743836403991131],[123,133,70,-0.04565348237457578],[123,133,71,-0.04378999255934124],[123,133,72,-0.04184813949161681],[123,133,73,-0.0398282696575567],[123,133,74,-0.03773083355058371],[123,133,75,-0.03555638810799222],[123,133,76,-0.03330559916549036],[123,133,77,-0.030979243929718958],[123,133,78,-0.02857821346876488],[123,133,79,-0.02610351522062737],[123,134,64,-0.06230853545187087],[123,134,65,-0.06092169043409601],[123,134,66,-0.05945468757376815],[123,134,67,-0.057907320006791885],[123,134,68,-0.056279472029800104],[123,134,69,-0.05457112142849685],[123,134,70,-0.05278234182347907],[123,134,71,-0.05091330503358882],[123,134,72,-0.04896428345677739],[123,134,73,-0.04693565246854081],[123,134,74,-0.044827892837773664],[123,134,75,-0.042641593160243074],[123,134,76,-0.04037745230954359],[123,134,77,-0.03803628190556685],[123,134,78,-0.03561900880051061],[123,134,79,-0.033126677582377084],[123,135,64,-0.06937819626195718],[123,135,65,-0.0679964086029925],[123,135,66,-0.0665327070053433],[123,135,67,-0.06498690490272041],[123,135,68,-0.06335890828029822],[123,135,69,-0.06164871800294214],[123,135,70,-0.059856432160460216],[123,135,71,-0.057982248429933825],[123,135,72,-0.056026466455107116],[123,135,73,-0.05398949024289601],[123,135,74,-0.051871830576861955],[123,135,75,-0.04967410744785339],[123,135,76,-0.047397052501676806],[123,135,77,-0.04504151150382785],[123,135,78,-0.04260844682131071],[123,135,79,-0.04009893992149427],[123,136,64,-0.07638675396322259],[123,136,65,-0.07501035407410184],[123,136,66,-0.07355029484311604],[123,136,67,-0.07200640975799277],[123,136,68,-0.07037862624312641],[123,136,69,-0.06866696798793703],[123,136,70,-0.06687155729180772],[123,136,71,-0.06499261742565554],[123,136,72,-0.06303047501011438],[123,136,73,-0.06098556241039366],[123,136,74,-0.05885842014765308],[123,136,75,-0.05664969932710229],[123,136,76,-0.054360164082681406],[123,136,77,-0.05199069403835932],[123,136,78,-0.049542286786070644],[123,136,79,-0.047016060380246416],[123,137,64,-0.08333013272175993],[123,137,65,-0.0819594348507563],[123,137,66,-0.08050334406502668],[123,137,67,-0.07896171365366833],[123,137,68,-0.07733449222111033],[123,137,69,-0.0756217260158435],[123,137,70,-0.07382356127528944],[123,137,71,-0.07194024658686515],[123,137,72,-0.06997213526522061],[123,137,73,-0.06791968774571233],[123,137,74,-0.06578347399395568],[123,137,75,-0.06356417593166197],[123,137,76,-0.061262589878618434],[123,137,77,-0.058879629010846424],[123,137,78,-0.05641632583496048],[123,137,79,-0.053873834678680566],[123,138,64,-0.0902043023400485],[123,138,65,-0.08883960436878635],[123,138,66,-0.08738779286916287],[123,138,67,-0.08584874067031412],[123,138,68,-0.08422241728783397],[123,138,69,-0.08250889125310523],[123,138,70,-0.0807083324583393],[123,138,71,-0.07882101451737844],[123,138,72,-0.07684731714223914],[123,138,73,-0.07478772853546078],[123,138,74,-0.07264284779810071],[123,138,75,-0.07041338735358216],[123,138,76,-0.06810017538725399],[123,138,77,-0.06570415830169596],[123,138,78,-0.06322640318779349],[123,138,79,-0.06066810031153502],[123,139,64,-0.09700528236333517],[123,139,65,-0.09564686562078606],[123,139,66,-0.09419962881474653],[123,139,67,-0.09266346404455816],[123,139,68,-0.09103836145861299],[123,139,69,-0.08932441158450799],[123,139,70,-0.08752180767448192],[123,139,71,-0.08563084806619259],[123,139,72,-0.08365193855880948],[123,139,73,-0.08158559480448735],[123,139,74,-0.0794324447150615],[123,139,75,-0.07719323088417207],[123,139,76,-0.07486881302467474],[123,139,77,-0.07246017042137354],[123,139,78,-0.0699684043990978],[123,139,79,-0.06739474080607699],[123,140,64,-0.10372914624198559],[123,140,65,-0.1023772753368265],[123,140,66,-0.10093489302002578],[123,140,67,-0.09940191038298718],[123,140,68,-0.09777833791923596],[123,140,69,-0.09606428785560917],[123,140,70,-0.0942599764983093],[123,140,71,-0.09236572659388442],[123,140,72,-0.09038196970510204],[123,140,73,-0.08830924860179257],[123,140,74,-0.08614821966649167],[123,140,75,-0.08389965531509813],[123,140,76,-0.0815644464323999],[123,140,77,-0.07914360482250404],[123,140,78,-0.07663826567419674],[123,140,79,-0.0740496900411799],[123,141,64,-0.1103720255495656],[123,141,65,-0.10902694822137426],[123,141,66,-0.10758968441683137],[123,141,67,-0.10606016393314877],[123,141,68,-0.10443841731222914],[123,141,69,-0.10272457817309588],[123,141,70,-0.10091888555877382],[123,141,71,-0.09902168629768948],[123,141,72,-0.09703343737955372],[123,141,73,-0.094954708345805],[123,141,74,-0.09278618369444125],[123,141,75,-0.09052866529945924],[123,141,76,-0.08818307484474996],[123,141,77,-0.08575045627249156],[123,141,78,-0.08323197824605888],[123,141,79,-0.08062893662740334],[123,142,64,-0.11693011425696709],[123,142,65,-0.1155920612467326],[123,142,66,-0.11416016406211349],[123,142,67,-0.11263437091197326],[123,142,68,-0.11101473208096357],[123,142,69,-0.10930140226338769],[123,142,70,-0.10749464291110888],[123,142,71,-0.10559482459558012],[123,142,72,-0.10360242938395092],[123,142,73,-0.1015180532293356],[123,142,74,-0.09934240837506603],[123,142,75,-0.0970763257731505],[123,142,76,-0.0947207575167881],[123,142,77,-0.09227677928697531],[123,142,78,-0.08974559281323091],[123,142,79,-0.08712852834838625],[123,143,64,-0.12339967306220889],[123,143,65,-0.12206885800263167],[123,143,66,-0.12064255950608493],[123,143,67,-0.11912074389124161],[123,143,68,-0.1175034808712303],[123,143,69,-0.1157909458891111],[123,143,70,-0.11398342246700843],[123,143,71,-0.11208130456896515],[123,143,72,-0.11008509897748531],[123,143,73,-0.10799542768383841],[123,143,74,-0.10581303029195732],[123,143,75,-0.10353876643614845],[123,143,76,-0.10117361821245974],[123,143,77,-0.0987186926237511],[123,143,78,-0.096175224038484],[123,143,79,-0.0935445766631876],[123,144,64,-0.1297770337760915],[123,144,65,-0.12845365310215184],[123,144,66,-0.12703316921715524],[123,144,67,-0.12551556624028537],[123,144,68,-0.12390093299046634],[123,144,69,-0.12218946532362818],[123,144,70,-0.1203814684832436],[123,144,71,-0.11847735946419924],[123,144,72,-0.11647766938996829],[123,144,73,-0.11438304590316084],[123,144,74,-0.11219425556927876],[123,144,75,-0.1099121862938971],[123,144,76,-0.10753784975311775],[123,144,77,-0.10507238383733875],[123,144,78,-0.10251705510835563],[123,144,79,-0.09987326126975382],[123,145,64,-0.13605860376386558],[123,145,65,-0.13474283664413467],[123,145,66,-0.13332836706381213],[123,145,67,-0.13181519662607066],[123,145,68,-0.13020343292479009],[123,145,69,-0.12849329188377767],[123,145,70,-0.12668510010888034],[123,145,71,-0.1247792972530547],[123,145,72,-0.12277643839435781],[123,145,73,-0.12067719642693975],[123,145,74,-0.11848236446485938],[123,145,75,-0.11619285825895109],[123,145,76,-0.11380971862658296],[123,145,77,-0.11133411389435299],[123,145,78,-0.10876734235374008],[123,145,79,-0.10611083472966565],[123,146,64,-0.14224087044258482],[123,146,65,-0.14093287873175642],[123,146,66,-0.13952460685312174],[123,146,67,-0.13801607357034318],[123,146,68,-0.1364074049135161],[123,146,69,-0.13469883652049797],[123,146,70,-0.1328907159907613],[123,146,71,-0.13098350525183022],[123,146,72,-0.12897778293827156],[123,146,73,-0.12687424678331416],[123,146,74,-0.1246737160229231],[123,146,75,-0.12237713381255177],[123,146,76,-0.11998556965641904],[123,146,77,-0.1175002218493505],[123,146,78,-0.11492241993120611],[123,146,79,-0.11225362715384624],[123,147,64,-0.14832040583431172],[123,147,65,-0.14702033404742954],[123,147,66,-0.145618426926016],[123,147,67,-0.1441147200639995],[123,147,68,-0.142509357581318],[123,147,69,-0.14080259446750376],[123,147,70,-0.13899479893742683],[123,147,71,-0.1370864547992635],[123,147,72,-0.13507816383465365],[123,147,73,-0.13297064819112625],[123,147,74,-0.13076475278661626],[123,147,75,-0.12846144772629953],[123,147,76,-0.1260618307315864],[123,147,77,-0.12356712958132166],[123,147,78,-0.12097870456520476],[123,147,79,-0.11829805094938972],[123,148,64,-0.15429387117532944],[123,148,65,-0.15300184648418824],[123,148,66,-0.15160645480952095],[123,148,67,-0.15010774823883744],[123,148,68,-0.1485058886281937],[123,148,69,-0.1468011499481654],[123,148,70,-0.1449939206416273],[123,148,71,-0.14308470599340273],[123,148,72,-0.14107413051174966],[123,148,73,-0.13896294032175938],[123,148,74,-0.1367520055704925],[123,148,75,-0.13444232284407975],[123,148,76,-0.13203501759662795],[123,148,77,-0.1295313465909762],[123,148,78,-0.12693270035132176],[123,148,79,-0.12424060562766748],[123,149,64,-0.16015802158104853],[123,149,65,-0.158874153833244],[123,149,66,-0.15748541192561405],[123,149,67,-0.15599186409637844],[123,149,68,-0.15439368957692157],[123,149,69,-0.1526911809402849],[123,149,70,-0.15088474646111127],[123,149,71,-0.14897491248712202],[123,149,72,-0.14696232582207702],[123,149,73,-0.14484775612030742],[123,149,74,-0.14263209829263845],[123,149,75,-0.1403163749239299],[123,149,76,-0.13790173870207767],[123,149,77,-0.13538947485852015],[123,149,78,-0.13278100362026612],[123,149,79,-0.13007788267340215],[123,150,64,-0.16590971076676042],[123,150,65,-0.16463409252786476],[123,150,66,-0.16325211835686348],[123,150,67,-0.1617638722939062],[123,150,68,-0.16016955057815685],[123,150,69,-0.15846946399891293],[123,150,70,-0.15666404025784708],[123,150,71,-0.1547538263424365],[123,150,72,-0.15273949091054118],[123,150,73,-0.15062182668621948],[123,150,74,-0.1484017528665934],[123,150,75,-0.14608031753999595],[123,150,76,-0.14365870011524118],[123,150,77,-0.14113821376206392],[123,150,78,-0.1385203078627406],[123,150,79,-0.1358065704748559],[123,151,64,-0.17154589582439794],[123,151,65,-0.17027860244373771],[123,151,66,-0.16890349766900714],[123,151,67,-0.16742068098789176],[123,151,68,-0.1658303652733315],[123,151,69,-0.16413287913737717],[123,151,70,-0.1623286692958349],[123,151,71,-0.16041830294377601],[123,151,72,-0.15840247014186426],[123,151,73,-0.15628198621359002],[123,151,74,-0.15405779415322773],[123,151,75,-0.1517309670447461],[123,151,76,-0.14930271049151211],[123,151,77,-0.1467743650568345],[123,151,78,-0.14414740871536313],[123,151,79,-0.14142345931530043],[123,152,64,-0.17706364205498704],[123,152,65,-0.1758047317554995],[123,152,66,-0.17443658179015908],[123,152,67,-0.1729593067344789],[123,152,68,-0.17137313571504376],[123,152,69,-0.16967841476619638],[123,152,70,-0.16787560919719247],[123,152,71,-0.16596530596990144],[123,152,72,-0.16394821608700227],[123,152,73,-0.16182517699076915],[123,152,74,-0.1595971549722559],[123,152,75,-0.15726524759111793],[123,152,76,-0.15483068610590334],[123,152,77,-0.1522948379148663],[123,152,78,-0.14965920900731355],[123,152,79,-0.14692544642544603],[123,153,64,-0.18246012785695986],[123,153,65,-0.1812096418496042],[123,153,66,-0.17984851594681073],[123,153,67,-0.1783768794472086],[123,153,68,-0.17679497734509853],[123,153,69,-0.1751031726900556],[123,153,70,-0.17330194895668816],[123,153,71,-0.17139191242463192],[123,153,72,-0.16937379456872648],[123,153,73,-0.16724845445947],[123,153,74,-0.16501688117356283],[123,153,75,-0.1626801962147746],[123,153,76,-0.1602396559449698],[123,153,77,-0.15769665402534516],[123,153,78,-0.15505272386788527],[123,153,79,-0.15230954109700634],[123,154,64,-0.18773264967045122],[123,154,65,-0.18649061229365138],[123,154,66,-0.18513656365675057],[123,154,67,-0.18367064741209882],[123,154,68,-0.18209312403033195],[123,154,69,-0.18040437316296487],[123,154,70,-0.17860489601484097],[123,154,71,-0.17669531772650993],[123,154,72,-0.17467638976648792],[123,154,73,-0.17254899233349197],[123,154,74,-0.17031413676845952],[123,154,75,-0.16797296797658967],[123,154,76,-0.16552676685923917],[123,154,77,-0.16297695275572666],[123,154,78,-0.1603250858950548],[123,154,79,-0.1575728698575133],[123,155,64,-0.1928786269773074],[123,155,65,-0.1916450458619029],[123,155,66,-0.19029811177863087],[123,155,67,-0.18883798235981364],[123,155,68,-0.1872649331559424],[123,155,69,-0.18557936000132902],[123,155,70,-0.183781781389317],[123,155,71,-0.1818728408571283],[123,155,72,-0.17985330938029842],[123,155,73,-0.1777240877767905],[123,155,74,-0.17548620912060064],[123,155,75,-0.17314084116509088],[123,155,76,-0.1706892887758813],[123,155,77,-0.1681329963733591],[123,155,78,-0.16547355038480682],[123,155,79,-0.16271268170612097],[123,156,64,-0.19789560735694756],[123,156,65,-0.19667047361712775],[123,156,66,-0.19533067561831874],[123,156,67,-0.19387638459505319],[123,156,68,-0.19230789077646737],[123,156,69,-0.19062560575506615],[123,156,70,-0.18883006486476117],[123,156,71,-0.18692192956826048],[123,156,72,-0.1849019898537605],[123,156,73,-0.18277116664102966],[123,156,74,-0.18053051419669996],[123,156,75,-0.17818122255899949],[123,156,76,-0.17572461997175848],[123,156,77,-0.17316217532774736],[123,156,78,-0.17049550062134722],[123,156,79,-0.16772635341052644],[123,157,64,-0.2027812715982058],[123,157,65,-0.201564560048906],[123,157,66,-0.20023190409216718],[123,157,67,-0.1987834881833066],[123,157,68,-0.19721961682454048],[123,157,69,-0.19554071693690867],[123,157,70,-0.19374734024119578],[123,157,71,-0.19184016564792605],[123,157,72,-0.18982000165638457],[123,157,73,-0.18768778876275372],[123,157,74,-0.18544460187717926],[123,157,75,-0.1830916527500014],[123,157,76,-0.18063029240698314],[123,157,77,-0.17806201359359208],[123,157,78,-0.17538845322833974],[123,157,79,-0.17261139486514876],[123,158,64,-0.20753343886688802],[123,158,65,-0.2063251082681219],[123,158,66,-0.20499958494693105],[123,158,67,-0.20355706619468672],[123,158,68,-0.20199787037715522],[123,158,69,-0.2003224393096169],[123,158,70,-0.19853134064071687],[123,158,71,-0.19662527024511778],[123,158,72,-0.19460505462491673],[123,158,73,-0.19247165331990124],[123,158,74,-0.19022616132647463],[123,158,75,-0.18786981152547289],[123,158,76,-0.18540397711871437],[123,158,77,-0.18283017407433022],[123,158,78,-0.18015006358089203],[123,158,79,-0.17736545451028884],[123,159,64,-0.21215007192919288],[123,159,65,-0.2109500652577989],[123,159,66,-0.20963165003648287],[123,159,67,-0.20819503600500644],[123,159,68,-0.20664055497959022],[123,159,69,-0.20496866323125473],[123,159,70,-0.2031799438726376],[123,159,71,-0.20127510925334946],[123,159,72,-0.1992550033638355],[123,159,73,-0.19712060424782063],[123,159,74,-0.19487302642315962],[123,159,75,-0.19251352331132143],[123,159,76,-0.19004348967534856],[123,159,77,-0.187464464066336],[123,159,78,-0.18477813127844833],[123,159,79,-0.1819863248124276],[123,160,64,-0.21662928243108637],[123,160,65,-0.21543752718036357],[123,160,66,-0.21412618065541789],[123,160,67,-0.21269546465418243],[123,160,68,-0.21114572402708298],[123,160,69,-0.2094774290586192],[123,160,70,-0.20769117785717273],[123,160,71,-0.20578769875310376],[123,160,72,-0.20376785270510211],[123,160,73,-0.201632635714871],[123,160,74,-0.1993831812499668],[123,160,75,-0.19702076267502133],[123,160,76,-0.19454679569118827],[123,160,77,-0.1919628407838606],[123,160,78,-0.18927060567867304],[123,160,79,-0.1864719478057466],[123,161,64,-0.22096933623342163],[123,161,65,-0.2197857447411331],[123,161,66,-0.21848141292933765],[123,161,67,-0.21705657426175784],[123,161,68,-0.21551158620404498],[123,161,69,-0.2138469326086121],[123,161,70,-0.21206322610744788],[123,161,71,-0.2101612105129811],[123,161,72,-0.20814176322695666],[123,161,73,-0.20600589765740118],[123,161,74,-0.20375476564350536],[123,161,75,-0.20138965988864466],[123,161,76,-0.19891201640138478],[123,161,77,-0.1963234169445135],[123,161,78,-0.193625591492119],[123,161,79,-0.19082042069466676],[123,162,64,-0.22516865880290093],[123,162,65,-0.22399312860811826],[123,162,66,-0.22269574326190977],[123,162,67,-0.22127674749964066],[123,162,68,-0.2197365109809144],[123,162,69,-0.21807553067765506],[123,162,70,-0.21629443326993802],[123,162,71,-0.21439397754963851],[123,162,72,-0.2123750568318571],[123,162,73,-0.21023870137420397],[123,162,74,-0.20798608080376557],[123,162,75,-0.20561850655197678],[123,162,76,-0.20313743429724596],[123,162,77,-0.2005444664153725],[123,162,78,-0.1978413544377765],[123,162,79,-0.19503000151749872],[123,163,64,-0.22922584065900298],[123,163,65,-0.2280582548882708],[123,163,66,-0.22676773383882842],[123,163,67,-0.2253545331221828],[123,163,68,-0.2238190341687678],[123,163,69,-0.2221617466192659],[123,163,70,-0.22038331072345474],[123,163,71,-0.21848449974664774],[123,163,72,-0.21646622238368707],[123,163,73,-0.21432952518057125],[123,163,74,-0.21207559496354067],[123,163,75,-0.20970576127584595],[123,163,76,-0.20722149882204188],[123,163,77,-0.2046244299198534],[123,163,78,-0.2019163269596278],[123,163,79,-0.19909911487133025],[123,164,64,-0.2331396428766358],[123,164,65,-0.23197987065993397],[123,164,66,-0.23069611818843594],[123,164,67,-0.22928865155335898],[123,164,68,-0.2277578635314571],[123,164,69,-0.22610427597956306],[123,164,70,-0.2243285422364435],[123,164,71,-0.2224314495320303],[123,164,72,-0.2204139214039882],[123,164,73,-0.21827702012170502],[123,164,74,-0.21602194911751982],[123,164,75,-0.21365005542542126],[123,164,76,-0.21116283212705733],[123,164,77,-0.2085619208050965],[123,164,78,-0.20584911400396544],[123,164,79,-0.20302635769791155],[123,165,64,-0.23690900264470993],[123,165,65,-0.23575689956168433],[123,165,66,-0.23447980679919544],[123,165,67,-0.23307800053123806],[123,165,68,-0.2315518844554575],[123,165,69,-0.2299019921908847],[123,165,70,-0.22812898968278372],[123,165,71,-0.2262336776146614],[123,165,72,-0.22421699382741422],[123,165,73,-0.22208001574568348],[123,165,74,-0.21982396281124894],[123,165,75,-0.2174501989236799],[123,165,76,-0.2149602348880939],[123,165,77,-0.21235573087005954],[123,165,78,-0.20963849885766905],[123,165,79,-0.2068105051307284],[123,166,64,-0.24053303888050115],[123,166,65,-0.23938844743744547],[123,166,66,-0.2381178927938905],[123,166,67,-0.23672166080961932],[123,166,68,-0.23520016567730295],[123,166,69,-0.23355395232339948],[123,166,70,-0.23178369881596328],[123,166,71,-0.2298902187794185],[123,166,72,-0.22787446381627463],[123,166,73,-0.22573752593584895],[123,166,74,-0.22348063998983103],[123,166,75,-0.22110518611490648],[123,166,76,-0.21861269218228785],[123,166,77,-0.21600483625419675],[123,166,78,-0.2132834490473119],[123,166,79,-0.2104505164031395],[123,167,64,-0.24401105789995914],[123,167,65,-0.24287380803802006],[123,167,66,-0.24160965766070552],[123,167,67,-0.24021890191698914],[123,167,68,-0.2387019650687644],[123,167,69,-0.23705940289486127],[123,167,70,-0.23529190510178377],[123,167,71,-0.23340029774122484],[123,167,72,-0.23138554563432878],[123,167,73,-0.22924875480277696],[123,167,74,-0.22699117490652032],[123,167,75,-0.2246142016883863],[123,167,76,-0.22211937942540083],[123,167,77,-0.21950840338687239],[123,167,78,-0.21678312229925212],[123,167,79,-0.2139455408177291],[123,168,64,-0.24734255914377778],[123,168,65,-0.24621246877886405],[123,168,66,-0.24495457704100065],[123,168,67,-0.24356918797261395],[123,168,68,-0.24205673547958295],[123,168,69,-0.2404177857383233],[123,168,70,-0.23865303960941187],[123,168,71,-0.23676333505780756],[123,168,72,-0.23474964957964073],[123,168,73,-0.23261310263563817],[123,168,74,-0.23035495809102502],[123,168,75,-0.22797662666210705],[123,168,76,-0.2254796683693998],[123,168,77,-0.22286579499732717],[123,168,78,-0.2201368725605256],[123,168,79,-0.21729492377669213],[123,169,64,-0.2505272409593178],[123,169,65,-0.24940411655418404],[123,169,66,-0.24815232657387243],[123,169,67,-0.24677218355985664],[123,169,68,-0.24526413063785057],[123,169,69,-0.2436287439279039],[123,169,70,-0.2418667349608632],[123,169,71,-0.2399789531012585],[123,169,72,-0.23796638797658431],[123,169,73,-0.23583017191304667],[123,169,74,-0.23357158237760955],[123,169,75,-0.23119204442655472],[123,169,76,-0.22869313316041218],[123,169,77,-0.22607657618528798],[123,169,78,-0.22334425608062636],[123,169,79,-0.2204982128733436],[123,170,64,-0.2535650064384657],[123,170,65,-0.2524486436074522],[123,170,66,-0.25120278779758864],[123,170,67,-0.2498277596568068],[123,170,68,-0.24832401110812508],[123,170,69,-0.24669212776268867],[123,170,70,-0.2449328313390121],[123,170,71,-0.2430469820884823],[123,170,72,-0.24103558122709245],[123,170,73,-0.23889977337347756],[123,170,74,-0.23664084899308546],[123,170,75,-0.23426024684869629],[123,170,76,-0.23175955645714985],[123,170,77,-0.2291405205523045],[123,170,78,-0.22640503755426833],[123,170,79,-0.2235551640448341],[123,171,64,-0.25645596931124726],[123,171,65,-0.25534615345815137],[123,171,66,-0.2541060541077099],[123,171,67,-0.2527359996240388],[123,171,68,-0.2512364503070935],[123,171,69,-0.24960800080858458],[123,171,70,-0.24785138255393646],[123,171,71,-0.24596746617035314],[123,171,72,-0.2439572639209564],[123,171,73,-0.24182193214507353],[123,171,74,-0.23956277370449996],[123,171,75,-0.23718124043595934],[123,171,76,-0.23467893560960962],[123,171,77,-0.23205761639363365],[123,171,78,-0.2293191963249348],[123,171,79,-0.22646574778589235],[123,172,64,-0.2592004598953098],[123,172,65,-0.2580969668848613],[123,172,66,-0.2568624367720129],[123,172,67,-0.25549720524960984],[123,172,68,-0.2540017405768986],[123,172,69,-0.2523766459982404],[123,172,70,-0.25062266216771456],[123,172,71,-0.2487406695796862],[123,172,72,-0.2467316910052959],[123,172,73,-0.24459689393495043],[123,172,74,-0.24233759302664393],[123,172,75,-0.23995525256032646],[123,172,76,-0.23745148889817147],[123,172,77,-0.2348280729507789],[123,172,78,-0.2320869326493391],[123,172,79,-0.22923015542370517],[123,173,64,-0.26179903110131597],[123,173,65,-0.2607016279647393],[123,173,66,-0.25947247100226445],[123,173,67,-0.25811190285134844],[123,173,68,-0.2566203993161764],[123,173,69,-0.25499857178908136],[123,173,70,-0.2532471696777222],[123,173,71,-0.25136708283808096],[123,173,72,-0.24935934401324555],[123,173,73,-0.24722513127805246],[123,173,74,-0.24496577048942003],[123,173,75,-0.2425827377425911],[123,173,76,-0.24007766183313373],[123,173,77,-0.23745232672473848],[123,173,78,-0.2347086740228359],[123,173,79,-0.23184880545398412],[123,174,64,-0.2642524644941182],[123,174,65,-0.2631609101692527],[123,174,66,-0.26193692208270447],[123,174,67,-0.2605808494362948],[123,174,68,-0.25909317516866526],[123,174,69,-0.25747451837931934],[123,174,70,-0.2557256367582884],[123,174,71,-0.2538474290214864],[123,174,72,-0.25184093735171786],[123,174,73,-0.24970734984541576],[123,174,74,-0.24744800296493663],[123,174,75,-0.24506438399663388],[123,174,76,-0.2425581335145578],[123,174,77,-0.23993104784982033],[123,174,78,-0.2371850815656491],[123,174,79,-0.23432234993807877],[123,175,64,-0.2665617764097846],[123,175,65,-0.26547582251624247],[123,175,66,-0.264256791555321],[123,175,67,-0.26290503891736594],[123,175,68,-0.26142105426946527],[123,175,69,-0.259805463982016],[123,175,70,-0.2580590335607924],[123,175,71,-0.25618267008457696],[123,175,72,-0.25417742464832294],[123,175,73,-0.25204449481192226],[123,175,74,-0.2497852270544061],[123,175,75,-0.24740111923380115],[123,175,76,-0.24489382305248808],[123,175,77,-0.24226514652810138],[123,175,78,-0.23951705646999444],[123,175,79,-0.23665168096121691],[123,176,64,-0.2687282241285416],[123,176,65,-0.26764761577837703],[123,176,66,-0.26643332346197124],[123,176,67,-0.2650857083873138],[123,176,68,-0.2636052665490075],[123,176,69,-0.261992631157259],[123,176,70,-0.26024857507225607],[123,176,71,-0.258374013243992],[123,176,72,-0.25637000515750286],[123,176,73,-0.25423775728359765],[123,176,74,-0.2519786255349016],[123,176,75,-0.24959411772744178],[123,176,76,-0.24708589604761722],[123,176,77,-0.24445577952459518],[123,176,78,-0.24170574650815424],[123,176,79,-0.23883793715192914],[123,177,64,-0.2707533121034966],[123,177,65,-0.2696777887478652],[123,177,66,-0.26846801064322023],[123,177,67,-0.2671243444498371],[123,177,68,-0.2656472920946015],[123,177,69,-0.2640374932023194],[123,177,70,-0.262295727532305],[123,177,71,-0.2604229174203091],[123,177,72,-0.25842013022574983],[123,177,73,-0.2562885807843276],[123,177,74,-0.2540296338658483],[123,177,75,-0.251644806637475],[123,177,76,-0.24913577113225904],[123,177,77,-0.24650435672298798],[123,177,78,-0.24375255260137318],[123,177,79,-0.24088251026252616],[123,178,64,-0.2726387982452161],[123,178,65,-0.27156809455750064],[123,178,66,-0.27036260109396837],[123,178,67,-0.26902268960792086],[123,178,68,-0.2675488675696306],[123,178,69,-0.2659417805998614],[123,178,70,-0.2642022149085662],[123,178,71,-0.26233109973882396],[123,178,72,-0.2603295098159788],[123,178,73,-0.2581986678020609],[123,178,74,-0.2559399467553142],[123,178,75,-0.2535548725950538],[123,178,76,-0.25104512657169986],[123,178,77,-0.2484125477420257],[123,178,78,-0.24565913544964812],[123,178,79,-0.24278705181070304],[123,179,64,-0.2743867002622169],[123,179,65,-0.27332054705809383],[123,179,66,-0.27211910437592646],[123,179,67,-0.27078274870946606],[123,179,68,-0.26931199269045913],[123,179,69,-0.2677074875242661],[123,179,70,-0.26597002543056414],[123,179,71,-0.26410054208919365],[123,179,72,-0.2621001190911164],[123,179,73,-0.2599699863945575],[123,179,74,-0.2577115247861629],[123,179,75,-0.2553262683473926],[123,179,76,-0.25281590692599387],[123,179,77,-0.25018228861259995],[123,179,78,-0.24742742222246983],[123,179,79,-0.24455347978232667],[123,180,64,-0.27599930205723133],[123,180,65,-0.27493742725215653],[123,180,66,-0.27373979808679916],[123,180,67,-0.2724067954500651],[123,180,68,-0.2709389367609063],[123,180,69,-0.26933687840592624],[123,180,70,-0.2676014181819746],[123,180,71,-0.26573349774380683],[123,180,72,-0.2637342050567628],[123,180,73,-0.2616047768545461],[123,180,74,-0.25934660110192964],[123,180,75,-0.25696121946260997],[123,180,76,-0.2544503297720577],[123,180,77,-0.2518157885154031],[123,180,78,-0.24905961331037796],[123,180,79,-0.24618398539526776],[123,181,64,-0.27747916017934626],[123,181,65,-0.2764212897839351],[123,181,66,-0.2752272343862763],[123,181,67,-0.27389737893302457],[123,181,68,-0.2724322452643907],[123,181,69,-0.27083249455361225],[123,181,70,-0.26909892975133487],[123,181,71,-0.26723249803497595],[123,181,72,-0.2652342932630287],[123,181,73,-0.2631055584343869],[123,181,74,-0.26084768815251613],[123,181,75,-0.2584622310946936],[123,181,76,-0.25595089248616276],[123,181,77,-0.2533155365792451],[123,181,78,-0.25055818913742733],[123,181,79,-0.2476810399243785],[123,182,64,-0.27882911033202984],[123,182,65,-0.2777749694858097],[123,182,66,-0.2765842465788485],[123,182,67,-0.2752573302866548],[123,182,68,-0.2737947465137589],[123,182,69,-0.27219716083493073],[123,182,70,-0.27046538094123074],[123,182,71,-0.26860035909097557],[123,182,72,-0.26660319456556425],[123,182,73,-0.2644751361302575],[123,182,74,-0.2622175844997271],[123,182,75,-0.25983209480860026],[123,182,76,-0.25732037908684746],[123,182,77,-0.2546843087400523],[123,182,78,-0.25192591703458467],[123,182,79,-0.2490474015876296],[123,183,64,-0.280052273936951],[123,183,65,-0.2790015879809613],[123,183,66,-0.2778139557533468],[123,183,67,-0.27648976933871916],[123,183,68,-0.27502955835870047],[123,183,69,-0.27343399241476607],[123,183,70,-0.27170388353585306],[123,183,71,-0.26984018863081605],[123,183,72,-0.2678440119456773],[123,183,73,-0.26571660752576276],[123,183,74,-0.2634593816825407],[123,183,75,-0.26107389546538995],[123,183,76,-0.25856186713814366],[123,183,77,-0.25592517466044673],[123,183,78,-0.2531658581739533],[123,183,79,-0.2502861224933097],[123,184,64,-0.28115206475367993],[123,184,65,-0.28010456034239495],[123,184,66,-0.2789197774792995],[123,184,67,-0.2775981113481437],[123,184,68,-0.2761400949508408],[123,184,69,-0.2745464015518092],[123,184,70,-0.2728178471270246],[123,184,71,-0.27095539281785597],[123,184,72,-0.2689601473896367],[123,184,73,-0.2668333696950589],[123,184,74,-0.2645764711422126],[123,184,75,-0.26219101816749146],[123,184,76,-0.2596787347132139],[123,184,77,-0.2570415047099992],[123,184,78,-0.25428137456391897],[123,184,79,-0.25140055564837693],[123,185,64,-0.2821321955552357],[123,185,65,-0.28108760180829095],[123,185,66,-0.2799054285600707],[123,185,67,-0.2785860737939464],[123,185,68,-0.277130073566476],[123,185,69,-0.27553810445312765],[123,185,70,-0.2738109859986565],[123,185,71,-0.27194968317221146],[123,185,72,-0.26995530882712326],[123,185,73,-0.2678291261654602],[123,185,74,-0.2655725512071738],[123,185,75,-0.26318715526405667],[123,185,76,-0.2606746674183621],[123,185,77,-0.2580369770061208],[123,185,78,-0.25527613610518307],[123,185,79,-0.25239436202793064],[123,186,64,-0.2829966848594848],[123,186,65,-0.28195473455367703],[123,186,66,-0.2807749338427835],[123,186,67,-0.27945768322139053],[123,186,68,-0.2780035214869552],[123,186,69,-0.2764131281867881],[123,186,70,-0.2746873260696392],[123,186,71,-0.2728270835419657],[123,186,72,-0.27083351712883175],[123,186,73,-0.2687078939395272],[123,186,74,-0.26645163413772754],[123,186,75,-0.26406631341641595],[123,186,76,-0.26155366547741965],[123,186,77,-0.2589155845155947],[123,186,78,-0.2561541277076841],[123,186,79,-0.2532715177058015],[123,187,64,-0.28374986371636757],[123,187,65,-0.28271029451841156],[123,187,66,-0.28153263308500664],[123,187,67,-0.28021728214534136],[123,187,68,-0.2787647829366845],[123,187,69,-0.27717581765250343],[123,187,70,-0.27545121189514643],[123,187,71,-0.27359193713316166],[123,187,72,-0.27159911316320373],[123,187,73,-0.2694740105766186],[123,187,74,-0.26721805323052217],[123,187,75,-0.26483282072360315],[123,187,76,-0.26232005087649],[123,187,77,-0.2596816422167286],[123,187,78,-0.25691965646838755],[123,187,79,-0.25403632104624385],[123,188,64,-0.28439638255101074],[123,188,65,-0.28335893829152425],[123,188,66,-0.2821831878782598],[123,188,67,-0.2808695360108834],[123,188,68,-0.2794185260788147],[123,188,69,-0.2778308426103666],[123,188,70,-0.27610731372640873],[123,188,71,-0.2742489135986289],[123,188,72,-0.27225676491234585],[123,188,73,-0.27013214133395935],[123,188,74,-0.2678764699828591],[123,188,75,-0.2654913339080158],[123,188,76,-0.2629784745691024],[123,188,77,-0.260339794322184],[123,188,78,-0.25757735890999933],[123,188,79,-0.2546933999567842],[123,189,64,-0.28494121806266104],[123,189,65,-0.28390565005185564],[123,189,66,-0.2827315886282763],[123,189,67,-0.2814194402111301],[123,189,68,-0.2799697500685433],[123,189,69,-0.2783832047676027],[123,189,70,-0.276660634628891],[123,189,71,-0.2748030161855848],[123,189,72,-0.2728114746470707],[123,189,73,-0.27068728636716644],[123,189,74,-0.2684318813167673],[123,189,75,-0.2660468455611398],[123,189,76,-0.26353392374171514],[123,189,77,-0.2608950215624155],[123,189,78,-0.2581322082805404],[123,189,79,-0.2552477192021603],[123,190,64,-0.28538968017947774],[123,190,65,-0.2843557485650339],[123,190,66,-0.2831831615920575],[123,190,67,-0.28187232716226995],[123,190,68,-0.28042379216407265],[123,190,69,-0.2788382449233796],[123,190,70,-0.277116517658915],[123,190,71,-0.27525958894204483],[123,190,72,-0.2732685861610983],[123,190,73,-0.27114478799026487],[123,190,74,-0.2688896268628881],[123,190,75,-0.26650469144938016],[123,190,76,-0.26399172913960434],[123,190,77,-0.26135264852976314],[123,190,78,-0.2585895219138191],[123,190,79,-0.25570458777939165],[123,191,64,-0.2857474190691771],[123,191,65,-0.28471489423677776],[123,191,66,-0.2835435759717161],[123,191,67,-0.2822338734358373],[123,191,68,-0.280786334895216],[123,191,69,-0.2792016501716703],[123,191,70,-0.2774806530987174],[123,191,71,-0.2756243239820383],[123,191,72,-0.27363379206441063],[123,191,73,-0.2715103379951883],[123,191,74,-0.26925539630415796],[123,191,75,-0.2668705578799896],[123,191,76,-0.2643575724531312],[123,191,77,-0.26171835108318586],[123,191,78,-0.25895496865079415],[123,191,79,-0.25606966635397377],[123,192,64,-0.2860204322055221],[123,192,65,-0.28498909622252233],[123,192,66,-0.28381885106509563],[123,192,67,-0.2825101069482012],[123,192,68,-0.28106341328964213],[123,192,69,-0.27947946116215694],[123,192,70,-0.27775908574993513],[123,192,71,-0.27590326880961835],[123,192,72,-0.2739131411357518],[123,192,73,-0.2717899850307606],[123,192,74,-0.26953523677928526],[123,192,75,-0.2671504891270873],[123,192,76,-0.2646374937643817],[123,192,77,-0.2619981638136306],[123,192,78,-0.25923457632182245],[123,192,79,-0.2563489747571863],[123,193,64,-0.2862150714906655],[123,193,65,-0.28518471959337377],[123,193,66,-0.284015363473181],[123,193,67,-0.2827074142072844],[123,193,68,-0.28126142215677075],[123,193,69,-0.27967807941918965],[123,193,70,-0.2779582222855316],[123,193,71,-0.2761028337016782],[123,193,72,-0.27411304573428275],[123,193,73,-0.27199014204116156],[123,193,74,-0.2697355603460281],[123,193,75,-0.26735089491777686],[123,193,76,-0.26483789905418453],[123,193,77,-0.2621984875700484],[123,193,78,-0.25943473928979865],[123,193,79,-0.2565488995445274],[123,194,64,-0.28633805043333815],[123,194,65,-0.285308492558386],[123,194,66,-0.28413985436428657],[123,194,67,-0.2828325476164988],[123,194,68,-0.2813871234293076],[123,194,69,-0.2798042747187859],[123,194,70,-0.2780848386601483],[123,194,71,-0.27622979914956314],[123,194,72,-0.27424028927038313],[123,194,73,-0.2721175937638731],[123,194,74,-0.2698631515042659],[123,194,75,-0.2674785579783576],[123,194,76,-0.2649655677695042],[123,194,77,-0.26232609704604337],[123,194,78,-0.25956222605417867],[123,194,79,-0.2566762016152643],[123,195,64,-0.28639645138289815],[123,195,65,-0.28536751374317537],[123,195,66,-0.2841994367950401],[123,195,67,-0.2828926328359179],[123,195,68,-0.28144765356243673],[123,195,69,-0.27986519252369424],[123,195,70,-0.2781460875789047],[123,195,71,-0.2762913233594958],[123,195,72,-0.27430203373561435],[123,195,73,-0.2721795042871168],[123,195,74,-0.26992517477887956],[123,195,75,-0.2675406416406383],[123,195,76,-0.2650276604512175],[123,195,77,-0.26238814842717606],[123,195,78,-0.2596241869159047],[123,195,79,-0.2567380238931135],[123,196,64,-0.28639773281920755],[123,196,65,-0.2853692595248388],[123,196,66,-0.2842016030881299],[123,196,67,-0.2828951762006505],[123,196,68,-0.2814505309906361],[123,196,69,-0.27986836147648053],[123,196,70,-0.27814950602460775],[123,196,71,-0.2762949498117805],[123,196,72,-0.27430582729181163],[123,196,73,-0.2721834246667556],[123,196,74,-0.2699291823624079],[123,196,75,-0.2675446975083289],[123,196,76,-0.26503172642224904],[123,196,77,-0.2623921870988847],[123,196,78,-0.25962816170319514],[123,196,79,-0.2567418990680238],[123,197,64,-0.2863497366983847],[123,197,65,-0.2853215914232229],[123,197,66,-0.2841542322668593],[123,197,67,-0.2828480721964637],[123,197,68,-0.28140366364216163],[123,197,69,-0.27982170095068915],[123,197,70,-0.27810302284342125],[123,197,71,-0.2762486148788317],[123,197,72,-0.274259611919352],[123,197,73,-0.2721373006027016],[123,197,74,-0.26988312181752594],[123,197,75,-0.2674986731835486],[123,197,76,-0.2649857115361043],[123,197,77,-0.2623461554150719],[123,197,78,-0.25958208755824874],[123,197,79,-0.256695757399101],[123,198,64,-0.28626069585438774],[123,198,65,-0.28523276354850324],[123,198,66,-0.28406559754647054],[123,198,67,-0.2827596109926114],[123,198,68,-0.2813153565111627],[123,198,69,-0.279733528660037],[123,198,70,-0.27801496638895207],[123,198,71,-0.2761606555019914],[123,198,72,-0.2741717311245566],[123,198,73,-0.2720494801747909],[123,198,74,-0.2697953438393057],[123,198,75,-0.26741092005341804],[123,198,76,-0.26489796598576465],[123,198,77,-0.26225840052731575],[123,198,78,-0.2594943067848223],[123,198,79,-0.2566079345786394],[123,199,64,-0.2861392414564562],[123,199,65,-0.28511143010509477],[123,199,66,-0.2839443738822567],[123,199,67,-0.28263848603189445],[123,199,68,-0.2811943192874464],[123,199,69,-0.2796125683256596],[123,199,70,-0.27789407222477547],[123,199,71,-0.27603981692714785],[123,199,72,-0.2740509377062488],[123,199,73,-0.2719287216381465],[123,199,74,-0.26967461007727966],[123,199,75,-0.2672902011367465],[123,199,76,-0.2647772521729642],[123,199,77,-0.26213768227472756],[123,199,78,-0.2593735747567002],[123,199,79,-0.25648717965727896],[123,200,64,-0.28599441052239905],[123,200,65,-0.28496665295188894],[123,200,66,-0.2837996455744596],[123,200,67,-0.2824938016779429],[123,200,68,-0.2810496740438879],[123,200,69,-0.27946795740140784],[123,200,70,-0.27774949088539436],[123,200,71,-0.275895260499159],[123,200,72,-0.2739064015814643],[123,200,73,-0.27178420127802394],[123,200,74,-0.26953010101730157],[123,200,75,-0.26714569899081975],[123,200,76,-0.2646327526378417],[123,200,77,-0.26199318113444936],[123,200,78,-0.2592290678870547],[123,200,79,-0.2563426630302813],[123,201,64,-0.285835653487732],[123,201,65,-0.28480790921881294],[123,201,66,-0.28364091392994595],[123,201,67,-0.28233508091972015],[123,201,68,-0.28089096298148153],[123,201,69,-0.27930925485718805],[123,201,70,-0.27759079569562894],[123,201,71,-0.27573657151507336],[123,201,72,-0.2737477176703069],[123,201,73,-0.2716255213241381],[123,201,74,-0.26937142392320235],[123,201,75,-0.2669870236782771],[123,201,76,-0.26447407804896716],[123,201,77,-0.2618345062327899],[123,201,78,-0.25907039165869017],[123,201,79,-0.2561839844849264],[123,202,64,-0.28567222789534685],[123,202,65,-0.2846444811983556],[123,202,66,-0.28347748355169156],[123,202,67,-0.2821716482543314],[123,202,68,-0.2807275280999232],[123,202,69,-0.27914581783063985],[123,202,70,-0.27742735659539586],[123,202,71,-0.27557313041249243],[123,202,72,-0.2735842746366529],[123,202,73,-0.27146207643052633],[123,202,74,-0.2692079772404876],[123,202,75,-0.26682357527695155],[123,202,76,-0.26431062799905536],[123,202,77,-0.26167105460374096],[123,202,78,-0.2589069385192654],[123,202,79,-0.25602052990308877],[123,203,64,-0.28550453670884235],[123,203,65,-0.2844767407413368],[123,203,66,-0.2833096956109311],[123,203,67,-0.2820038146188698],[123,203,68,-0.2805596505590937],[123,203,69,-0.27897789817204655],[123,203,70,-0.27725939660284427],[123,203,71,-0.27540513186387316],[123,203,72,-0.2734162393017763],[123,203,73,-0.27129400606890897],[123,203,74,-0.26903987359909043],[123,203,75,-0.26665544008786957],[123,203,76,-0.26414246297715704],[123,203,77,-0.2615028614442584],[123,203,78,-0.2587387188953354],[123,203,79,-0.25585228546324223],[123,204,64,-0.2853261623610873],[123,204,65,-0.28429819727902217],[123,204,66,-0.28313098916515567],[123,204,67,-0.2818249513286609],[123,204,68,-0.28038063656462775],[123,204,69,-0.27879873960770685],[123,204,70,-0.27708009959011703],[123,204,71,-0.27522570250407796],[123,204,72,-0.2732366836686331],[123,204,73,-0.2711143302009381],[123,204,74,-0.26886008349184554],[123,204,75,-0.26647554168600274],[123,204,76,-0.26396246216631325],[123,204,77,-0.2613227640428013],[123,204,78,-0.2585585306459003],[123,204,79,-0.25567201202411693],[123,205,64,-0.2851308274690344],[123,205,65,-0.28410250256384817],[123,205,66,-0.2829349476679782],[123,205,67,-0.2816285761077937],[123,205,68,-0.28018394068115104],[123,205,69,-0.2786017361106937],[123,205,70,-0.27688280150151134],[123,205,71,-0.2750281228032243],[123,205,72,-0.2730388352764538],[123,205,73,-0.27091622596375653],[123,205,74,-0.268661736164853],[123,205,75,-0.26627696391636624],[123,205,76,-0.2637636664759233],[123,205,77,-0.2611237628106555],[123,205,78,-0.25835933609012196],[123,205,79,-0.2554726361836055],[123,206,64,-0.28491257471796805],[123,206,65,-0.28388363166592645],[123,206,66,-0.28271548101983834],[123,206,67,-0.28140853613618666],[123,206,68,-0.2799633498181473],[123,206,69,-0.2783806167682944],[123,206,70,-0.2766611760456634],[123,206,71,-0.2748060135272322],[123,206,72,-0.27281626437378714],[123,206,73,-0.27069321550024794],[123,206,74,-0.2684383080502828],[123,206,75,-0.26605313987542945],[123,206,76,-0.26353946801857586],[123,206,77,-0.2608992112018347],[123,206,78,-0.2581344523188379],[123,206,79,-0.2552474409313997],[123,207,64,-0.2846657601224457],[123,207,65,-0.28363587617173935],[123,207,66,-0.282466818706801],[123,207,67,-0.28115900113083714],[123,207,68,-0.2797129762559959],[123,207,69,-0.27812943875516793],[123,207,70,-0.2764092276181377],[123,207,71,-0.27455332861214865],[123,207,72,-0.27256287674684465],[123,207,73,-0.2704391587436673],[123,207,74,-0.2681836155095336],[123,207,75,-0.26579784461501754],[123,207,76,-0.26328360277688256],[123,207,77,-0.2606428083450022],[123,207,78,-0.25787754379369576],[123,207,79,-0.2549900582174254],[123,208,64,-0.28438504634517314],[123,208,65,-0.283353837441253],[123,208,66,-0.28218350299824113],[123,208,67,-0.28087445648640297],[123,208,68,-0.2794272507317709],[123,208,69,-0.277842580366669],[123,208,70,-0.27612128428457827],[123,208,71,-0.274264348099409],[123,208,72,-0.2722729066091394],[123,208,73,-0.2701482462639012],[123,208,74,-0.26789180763833953],[123,208,75,-0.26550518790846467],[123,208,76,-0.2629901433328484],[123,208,77,-0.26034859173820024],[123,208,78,-0.2575826150093481],[123,208,79,-0.2546944615835728],[123,209,64,-0.28406539607380954],[123,209,65,-0.2830324199234465],[123,209,66,-0.2818603822034086],[123,209,67,-0.2805496964751124],[123,209,68,-0.2791009155847973],[123,209,69,-0.2775147341123436],[123,209,70,-0.2757919908244214],[123,209,71,-0.27393367113203293],[123,209,72,-0.27194090955241157],[123,209,73,-0.26981499217535587],[123,209,74,-0.2675573591338253],[123,209,75,-0.26516960707901793],[123,209,76,-0.26265349165978014],[123,209,77,-0.26001093000638476],[123,209,78,-0.25724400321870333],[123,209,79,-0.25435495885871906],[123,210,64,-0.28370206545569676],[123,210,65,-0.2826668245302487],[123,210,66,-0.2814926039868666],[123,210,67,-0.2801798175059942],[123,210,68,-0.27872901796195504],[123,210,69,-0.27714089986958124],[123,210,70,-0.2754163018351571],[123,210,71,-0.27355620901174227],[123,210,72,-0.27156175555883577],[123,210,73,-0.26943422710646125],[123,210,74,-0.2671750632234984],[123,210,75,-0.2647858598904821],[123,210,76,-0.26226837197671826],[123,210,77,-0.25962451572175393],[123,210,78,-0.25685637122122584],[123,210,79,-0.2539661849170356],[123,211,64,-0.28329059759052344],[123,211,65,-0.2822525420688945],[123,211,66,-0.281075608742817],[123,211,67,-0.27976021144344154],[123,211,68,-0.2783069030827465],[123,211,69,-0.27671637809743943],[123,211,70,-0.2749894748971561],[123,211,71,-0.27312717831701905],[123,211,72,-0.2711306220745211],[123,211,73,-0.2690010912308083],[123,211,74,-0.26674002465619384],[123,211,75,-0.26434901750011885],[123,211,76,-0.2618298236654125],[123,211,77,-0.25918435828688746],[123,211,78,-0.2564147002142957],[123,211,79,-0.2535230944995922],[123,212,64,-0.28282681608092186],[123,212,65,-0.28178534673269895],[123,212,66,-0.28060512302830687],[123,212,67,-0.2792865589851057],[123,212,68,-0.27783020756412236],[123,212,69,-0.27623676311063927],[123,212,70,-0.27450706379905754],[123,212,71,-0.2726420940820976],[123,212,72,-0.27064298714430157],[123,212,73,-0.2685110273599136],[123,212,74,-0.2662476527549671],[123,212,75,-0.26385445747379754],[123,212,76,-0.26133319424983203],[123,212,77,-0.25868577688069094],[123,212,78,-0.25591428270762795],[123,212,79,-0.25302095509925593],[123,213,64,-0.28230681864098306],[123,213,65,-0.28126128965023367],[123,213,66,-0.28007715305530656],[123,213,67,-0.27875482309910715],[123,213,68,-0.2772948528050525],[123,213,69,-0.27569793641371343],[123,213,70,-0.27396491182370286],[123,213,71,-0.2720967630368758],[123,213,72,-0.2700946226078035],[123,213,73,-0.26795977409759864],[123,213,74,-0.2656936545319214],[123,213,75,-0.26329785686338303],[123,213,76,-0.2607741324381998],[123,213,77,-0.2581243934671321],[123,213,78,-0.2553507155007352],[123,213,79,-0.25245533990886826],[123,214,64,-0.281726970762713],[123,214,65,-0.28067669249293015],[123,214,66,-0.2794879782416769],[123,214,67,-0.27816124252058305],[123,214,68,-0.2766970384308636],[123,214,69,-0.2750960600953338],[123,214,70,-0.27335914509464054],[123,214,71,-0.2714872769077721],[123,214,72,-0.2694815873568104],[123,214,73,-0.2673433590560048],[123,214,74,-0.26507402786499157],[123,214,75,-0.2626751853463828],[123,214,76,-0.26014858122757134],[123,214,77,-0.25749612586679116],[123,214,78,-0.2547198927234562],[123,214,79,-0.2518221208327269],[123,215,64,-0.2810838994404119],[123,215,65,-0.28002814114108854],[123,215,66,-0.27883414482101054],[123,215,67,-0.2775023253075575],[123,215,68,-0.2760332357973261],[123,215,69,-0.27442757028279685],[123,215,70,-0.2726861659831801],[123,215,71,-0.270810005779504],[123,215,72,-0.2688002206539095],[123,215,73,-0.2666580921332271],[123,215,74,-0.2643850547366666],[123,215,75,-0.26198269842783584],[123,215,76,-0.25945277107094145],[123,215,77,-0.25679718089120707],[123,215,78,-0.2540179989395335],[123,215,79,-0.25111746156135006],[123,216,64,-0.2803744869529925],[123,216,65,-0.2793124794083127],[123,216,66,-0.27811245951136365],[123,216,67,-0.27677484245614736],[123,216,68,-0.27530018155450786],[123,216,69,-0.2736891706566864],[123,216,70,-0.2719426465760155],[123,216,71,-0.27006159151781217],[123,216,72,-0.2680471355124352],[123,216,73,-0.26590055885258446],[123,216,74,-0.2636232945346684],[123,216,75,-0.2612169307044605],[123,216,76,-0.258683213106895],[123,216,77,-0.2560240475400376],[123,216,78,-0.2532415023132568],[123,216,79,-0.2503378107095441],[123,217,64,-0.2795958647042104],[123,217,65,-0.27852680282433995],[123,217,66,-0.27731998324284945],[123,217,67,-0.27597582157507916],[123,217,68,-0.27449487127036476],[123,217,69,-0.2728778260256838],[123,217,70,-0.2711255222033886],[123,217,71,-0.26923894125309444],[123,217,72,-0.26721921213768196],[123,217,73,-0.26506761376349475],[123,217,74,-0.26278557741455655],[123,217,75,-0.26037468919103124],[123,217,76,-0.25783669245177254],[123,217,77,-0.25517349026100244],[123,217,78,-0.2523871478391414],[123,217,79,-0.24947989501774082],[123,218,64,-0.2787454071208395],[123,218,65,-0.2776684524763011],[123,218,66,-0.2764540249441275],[123,218,67,-0.27510254061954653],[123,218,68,-0.27361455311410365],[123,218,69,-0.27199075596155986],[123,218,70,-0.270231985027825],[123,218,71,-0.26833922092498963],[123,218,72,-0.2663135914294199],[123,218,73,-0.26415637390399227],[123,218,74,-0.2618689977242955],[123,218,75,-0.2594530467090206],[123,218,76,-0.25691026155438745],[123,218,77,-0.25424254227264664],[123,218,78,-0.2514519506346793],[123,218,79,-0.248540712616645],[123,219,64,-0.277820725608781],[123,219,65,-0.27673500890839897],[123,219,66,-0.27551213538777664],[123,219,67,-0.27415252168440163],[123,219,68,-0.2726567215993041],[123,219,69,-0.2710254284943374],[123,219,70,-0.26925947769343317],[123,219,71,-0.26735984888789643],[123,219,72,-0.26532766854570256],[123,219,73,-0.2631642123248752],[123,219,74,-0.26087090749077113],[123,219,75,-0.25844933533749304],[123,219,76,-0.25590123361327954],[123,219,77,-0.2532284989499103],[123,219,78,-0.2504331892961491],[123,219,79,-0.24751752635517543],[123,220,64,-0.2768196625670786],[123,220,65,-0.27572428607997723],[123,220,66,-0.27449210109452515],[123,220,67,-0.27312352485664804],[123,220,68,-0.27161911138677464],[123,220,69,-0.2699795538675963],[123,220,70,-0.2682056870357381],[123,220,71,-0.2662984895774002],[123,220,72,-0.2642590865279376],[123,220,73,-0.26208875167545265],[123,220,74,-0.2597889099682281],[123,220,75,-0.2573611399262232],[123,220,76,-0.25480717605648007],[123,220,77,-0.25212891127247705],[123,220,78,-0.24932839931745665],[123,220,79,-0.24640785719167357],[123,221,64,-0.27574028545988494],[123,221,65,-0.2746343253820259],[123,221,66,-0.27339193829638264],[123,221,67,-0.2720135421272848],[123,221,68,-0.2704996911471844],[123,221,69,-0.26885107835396604],[123,221,70,-0.26706853785209306],[123,221,71,-0.2651530472376533],[123,221,72,-0.26310572998726744],[123,221,73,-0.2609278578509401],[123,221,74,-0.25862085324867545],[123,221,75,-0.2561862916710852],[123,221,76,-0.2536259040838317],[123,221,77,-0.2509415793359473],[123,221,78,-0.24813536657205293],[123,221,79,-0.2452094776484246],[123,222,64,-0.2745808809463617],[123,222,65,-0.2734633897121038],[123,222,66,-0.2722098869586559],[123,222,67,-0.2708207913624797],[123,222,68,-0.26929665748345677],[123,222,69,-0.26763817813078916],[123,222,70,-0.2658461867326565],[123,222,71,-0.26392165970969195],[123,222,72,-0.2618657188522414],[123,222,73,-0.25967963370148484],[123,222,74,-0.25736482393424265],[123,222,75,-0.25492286175169365],[123,222,76,-0.25235547427184857],[123,222,77,-0.24966454592582044],[123,222,78,-0.24685212085791275],[123,222,79,-0.24392040532947645],[123,223,64,-0.2733399490684806],[123,223,65,-0.2722099576076479],[123,223,66,-0.2709444048608157],[123,223,67,-0.26954371033404256],[123,223,68,-0.26800842891288823],[123,223,69,-0.2663392532159208],[123,223,70,-0.26453701595189405],[123,223,71,-0.262602692280654],[123,223,72,-0.26053740217774446],[123,223,73,-0.25834241280278547],[123,223,74,-0.2560191408714493],[123,223,75,-0.2535691550312633],[123,223,76,-0.25099417824107806],[123,223,77,-0.24829609015424692],[123,223,78,-0.24547692950553635],[123,223,79,-0.24253889650171623],[123,224,64,-0.2720161974967803],[123,224,65,-0.270872717437722],[123,224,66,-0.2695941617362708],[123,224,67,-0.268180950809252],[123,224,68,-0.2666336399090513],[123,224,69,-0.26495292146372285],[123,224,70,-0.26313962742066865],[123,224,71,-0.26119473159395734],[123,224,72,-0.25911935201524294],[123,224,73,-0.25691475328836477],[123,224,74,-0.2545823489474498],[123,224,75,-0.2521237038187455],[123,224,76,-0.24954053638602613],[123,224,77,-0.2468347211596138],[123,224,78,-0.24400829104903565],[123,224,79,-0.24106343973926836],[123,225,64,-0.270608535834058],[123,225,65,-0.2694505616531858],[123,225,66,-0.26815803347102685],[123,225,67,-0.266731372700014],[123,225,68,-0.26517113500345835],[123,225,69,-0.2634780126212274],[123,225,70,-0.26165283669889283],[123,225,71,-0.25969657962041404],[123,225,72,-0.2576103573443207],[123,225,73,-0.2553954317434739],[123,225,74,-0.25305321294822736],[123,225,75,-0.25058526169321693],[123,225,76,-0.24799329166762163],[123,225,77,-0.24527917186893644],[123,225,78,-0.24244492896028058],[123,225,79,-0.23949274963118905],[123,226,64,-0.26911606997695525],[123,226,65,-0.2679425810952417],[123,226,66,-0.2666350963611893],[123,226,67,-0.2651940382713126],[123,226,68,-0.2636199629469438],[123,226,69,-0.26191356244443165],[123,226,70,-0.26007566706870133],[123,226,71,-0.2581072476902392],[123,226,72,-0.25600941806546673],[123,226,73,-0.25378343716058294],[123,226,74,-0.25143071147869733],[123,226,75,-0.24895279739048026],[123,226,76,-0.24635140346817597],[123,226,77,-0.24362839282301663],[123,226,78,-0.24078578544606177],[123,226,79,-0.23782576055241167],[123,227,64,-0.2675380965355064],[123,227,65,-0.2663480593624298],[123,227,66,-0.2650246214293803],[123,227,67,-0.26356820640902145],[123,227,68,-0.261979370930838],[123,227,69,-0.26025880687479175],[123,227,70,-0.2584073436682174],[123,227,71,-0.256425950586027],[123,227,72,-0.2543157390541848],[123,227,73,-0.252077964956533],[123,227,74,-0.24971403094478972],[123,227,75,-0.24722548875194716],[123,227,76,-0.2446140415089133],[123,227,77,-0.24188154606443812],[123,227,78,-0.23903001530834533],[123,227,79,-0.23606162049802204],[123,228,64,-0.2658740973106216],[123,228,65,-0.26466646723604137],[123,228,66,-0.26332606880004117],[123,228,67,-0.2618533269470471],[123,228,68,-0.2602487988679013],[123,228,69,-0.258513176275889],[123,228,70,-0.25664728768588196],[123,228,71,-0.254652100696663],[123,228,72,-0.2525287242763955],[123,228,73,-0.2502784110513181],[123,228,74,-0.24790255959748408],[123,228,75,-0.24540271673577663],[123,228,76,-0.24278057983004042],[123,228,77,-0.2400379990883712],[123,228,78,-0.23717697986758657],[123,228,79,-0.23419968498082733],[123,229,64,-0.26412373382945686],[123,229,65,-0.2628974571639048],[123,229,66,-0.2615390821335697],[123,229,67,-0.26004903505375676],[123,229,68,-0.25842787373297005],[123,229,69,-0.2566762897302177],[123,229,70,-0.25479511061529625],[123,229,71,-0.2527853022321235],[123,229,72,-0.2506479709650806],[123,229,73,-0.24838436600844693],[123,229,74,-0.24599588163874264],[123,229,75,-0.24348405949021434],[123,229,76,-0.24085059083330262],[123,229,77,-0.23809731885613328],[123,229,78,-0.23522624094905487],[123,229,79,-0.23223951099217188],[123,230,64,-0.2622868419387545],[123,230,65,-0.2610408578026251],[123,230,66,-0.25966348311938214],[123,230,67,-0.258155145677775],[123,230,68,-0.25651640396340136],[123,230,69,-0.25474794939618095],[123,230,70,-0.25285060857066477],[123,230,71,-0.2508253454992493],[123,230,72,-0.2486732638582584],[123,230,73,-0.24639560923697446],[123,230,74,-0.2439937713894338],[123,230,75,-0.2414692864892244],[123,230,76,-0.23882383938711993],[123,230,77,-0.2360592658715972],[123,230,78,-0.233177554932255],[123,230,79,-0.23018085102608754],[123,231,64,-0.26036342645611654],[123,231,65,-0.25909666861824265],[123,231,66,-0.257699266027856],[123,231,67,-0.2561716480531109],[123,231,68,-0.25451437391927634],[123,231,69,-0.25272813492525714],[123,231,70,-0.2508137566628006],[123,231,71,-0.24877220123845578],[123,231,72,-0.24660456949824971],[123,231,73,-0.2443121032551604],[123,231,74,-0.24189618751920494],[123,231,75,-0.23935835273037487],[123,231,76,-0.23670027699426077],[123,231,77,-0.23392378832040595],[123,231,78,-0.23103086686341046],[123,231,79,-0.22802364716673962],[123,232,64,-0.2583536558791606],[123,232,65,-0.2570650545452584],[123,232,66,-0.2556465923211063],[123,232,67,-0.25409870026356496],[123,232,68,-0.2524219384033116],[123,232,69,-0.2506169979392827],[123,232,70,-0.24868470343563853],[123,232,71,-0.24662601502132364],[123,232,72,-0.24444203059218061],[123,232,73,-0.24213398801570452],[123,232,74,-0.23970326733824798],[123,232,75,-0.23715139299491772],[123,232,76,-0.23448003602199707],[123,232,77,-0.23169101627193855],[123,232,78,-0.22878630463094807],[123,232,79,-0.2257680252391111],[123,233,64,-0.2562578571526516],[123,233,65,-0.2549463407041179],[123,233,66,-0.25350578532268775],[123,233,67,-0.25193662386650817],[123,233,68,-0.25023941724057275],[123,233,69,-0.24841485656794837],[123,233,70,-0.24646376536335468],[123,233,71,-0.24438710170917],[123,233,72,-0.2421859604338229],[123,233,73,-0.23986157529265462],[123,233,74,-0.23741532115106267],[123,233,75,-0.23484871617016911],[123,233,76,-0.23216342399484347],[123,233,77,-0.2293612559441286],[123,233,78,-0.2264441732040885],[123,233,79,-0.22341428902302884],[123,234,64,-0.2540765104935655],[123,234,65,-0.252741007177116],[123,234,66,-0.25127732494618227],[123,234,67,-0.24968589857599577],[123,234,68,-0.24796728991794958],[123,234,69,-0.2461221900464674],[123,234,70,-0.2441514214080479],[123,234,71,-0.24205593997255614],[123,234,72,-0.23983683738672423],[123,234,73,-0.2374953431299448],[123,234,74,-0.2350328266721673],[123,234,75,-0.23245079963414117],[123,234,76,-0.22975091794983704],[123,234,77,-0.2269349840310917],[123,234,78,-0.2240049489344973],[123,234,79,-0.22096291453048678],[123,235,64,-0.2518102442740314],[123,235,65,-0.2504496838426591],[123,235,66,-0.24896184248261033],[123,235,67,-0.2473471570051501],[123,235,68,-0.24560619028333008],[123,235,69,-0.24373963337335214],[123,235,70,-0.24174830763792332],[123,235,71,-0.2396331668716689],[123,235,72,-0.23739529942856918],[123,235,73,-0.23503593035150128],[123,235,74,-0.23255642350369743],[123,235,75,-0.22995828370236382],[123,235,76,-0.22724315885428958],[123,235,77,-0.224412842093494],[123,235,78,-0.22146927392093008],[123,235,79,-0.21841454434619778],[123,236,64,-0.24945982996225247],[123,236,65,-0.24807314526799606],[123,236,66,-0.24656011544677636],[123,236,67,-0.24492117946792624],[123,236,68,-0.24315690130458512],[123,236,69,-0.24126797202841166],[123,236,70,-0.23925521190608812],[123,236,71,-0.23711957249769078],[123,236,72,-0.2348621387568841],[123,236,73,-0.23248413113302924],[123,236,74,-0.22998690767500718],[123,236,75,-0.2273719661370115],[123,236,76,-0.22464094608613216],[123,236,77,-0.22179563101178357],[123,236,78,-0.21883795043699172],[123,236,79,-0.21576998203149678],[123,237,64,-0.2470261771213641],[123,237,65,-0.2456123056603673],[123,237,66,-0.24407306248249916],[123,237,67,-0.24240888884020817],[123,237,68,-0.24062034988831438],[123,237,69,-0.23870813675092084],[123,237,70,-0.23667306858991077],[123,237,71,-0.2345160946751036],[123,237,72,-0.23223829645603267],[123,237,73,-0.2298408896354298],[123,237,74,-0.22732522624422058],[123,237,75,-0.22469279671828424],[123,237,76,-0.22194523197679927],[123,237,77,-0.2190843055022278],[123,237,78,-0.2161119354219554],[123,237,79,-0.21303018659153938],[123,238,64,-0.24451032846615794],[123,238,65,-0.24306821387650535],[123,238,66,-0.24150173832665955],[123,238,67,-0.2398113454801709],[123,238,68,-0.237997601758283],[123,238,69,-0.23606119837789108],[123,238,70,-0.23400295339087274],[123,238,71,-0.23182381372486272],[123,238,72,-0.2295248572254346],[123,238,73,-0.2271072946997763],[123,238,74,-0.22457247196166108],[123,238,75,-0.22192187187796852],[123,238,76,-0.2191571164165782],[123,238,77,-0.21627996869568733],[123,238,78,-0.21329233503456868],[123,238,79,-0.2101962670057239],[123,239,64,-0.24191345497780326],[123,239,65,-0.24044204849061934],[123,239,66,-0.23884732883219595],[123,239,67,-0.2371297422080374],[123,239,68,-0.2352898563936855],[123,239,69,-0.2333283627425773],[123,239,70,-0.2312460781950504],[123,239,71,-0.22904394728857103],[123,239,72,-0.2267230441691428],[123,239,73,-0.22428457460398843],[123,239,74,-0.22172987799530042],[123,239,75,-0.21906042939532056],[123,239,76,-0.2162778415225679],[123,239,77,-0.21338386677926613],[123,239,78,-0.2103803992699893],[123,239,79,-0.20726947682147778],[123,240,64,-0.23923685107645798],[123,240,65,-0.23773511292075022],[123,240,66,-0.23611114604993877],[123,240,67,-0.23436539934512113],[123,240,68,-0.23249844202712233],[123,240,69,-0.2305109656331079],[123,240,70,-0.22840378599410982],[123,240,71,-0.22617784521354178],[123,240,72,-0.22383421364666412],[123,240,73,-0.22137409188108637],[123,240,74,-0.21879881271810786],[123,240,75,-0.2161098431551537],[123,240,76,-0.2133087863691253],[123,240,77,-0.21039738370071925],[123,240,78,-0.20737751663973014],[123,240,79,-0.20425120881129089],[123,241,64,-0.23648192985185346],[123,241,65,-0.23494883061358718],[123,241,66,-0.23329462336937223],[123,241,67,-0.2315197598122435],[123,241,68,-0.2296248107023796],[123,241,69,-0.22761046781132988],[123,241,70,-0.2254775458669095],[123,241,71,-0.22322698449884337],[123,241,72,-0.22085985018511645],[123,241,73,-0.21837733819912053],[123,241,74,-0.21578077455739497],[123,241,75,-0.2130716179682226],[123,241,76,-0.2102514617808967],[123,241,77,-0.20732203593571408],[123,241,78,-0.20428520891471047],[123,241,79,-0.2011429896930904],[123,242,64,-0.23365021835173228],[123,242,65,-0.23208474028762083],[123,242,66,-0.23039931071819575],[123,242,67,-0.22859438428739765],[123,242,68,-0.2266705333918848],[123,242,69,-0.22462845009173737],[123,242,70,-0.22246894802157835],[123,242,71,-0.22019296430219093],[123,242,72,-0.21780156145259044],[123,242,73,-0.2152959293026423],[123,242,74,-0.212677386906021],[123,242,75,-0.20994738445377248],[123,242,76,-0.2071075051882978],[123,242,77,-0.20415946731780898],[123,242,78,-0.2011051259312765],[123,242,79,-0.19794647491382023],[123,243,64,-0.23074335292828496],[123,243,65,-0.22914449123477865],[123,243,66,-0.22742686982083682],[123,243,67,-0.2255909464228122],[123,243,68,-0.2236372951739899],[123,243,69,-0.2215666084806398],[123,243,70,-0.21937969889822506],[123,243,71,-0.21707750100784484],[123,243,72,-0.2146610732928721],[123,243,73,-0.21213160001587528],[123,243,74,-0.20949039309561934],[123,243,75,-0.20673889398441136],[123,243,76,-0.2038786755456038],[123,243,77,-0.20091144393131044],[123,243,78,-0.19783904046035306],[123,243,79,-0.19466344349638875],[123,244,64,-0.22776307464251833],[123,244,65,-0.22612983868047964],[123,244,66,-0.22437906951584696],[123,244,67,-0.22251122812134394],[123,244,68,-0.22052689047001373],[123,244,69,-0.218426749375499],[123,244,70,-0.2162116163322082],[123,244,71,-0.21388242335544394],[123,244,72,-0.21144022482145675],[123,244,73,-0.20888619930751373],[123,244,74,-0.20622165143177285],[123,244,75,-0.20344801369323406],[123,244,76,-0.20056684831157645],[123,244,77,-0.19757984906693793],[123,244,78,-0.19448884313965453],[123,244,79,-0.19129579294991106],[123,245,64,-0.22471122472647975],[123,245,65,-0.22304263920202583],[123,245,66,-0.22125778113210115],[123,245,67,-0.21935711487212162],[123,245,68,-0.21734121834096232],[123,245,69,-0.21521078482435418],[123,245,70,-0.21296662477788608],[123,245,71,-0.2106096676296898],[123,245,72,-0.20814096358276934],[123,245,73,-0.20556168541706699],[123,245,74,-0.2028731302910527],[123,245,75,-0.20007672154311296],[123,245,76,-0.19717401049254346],[123,245,77,-0.19416667824020684],[123,245,78,-0.1910565374688672],[123,245,79,-0.18784553424315886],[123,246,64,-0.2215897401034833],[123,246,65,-0.21988484620548343],[123,246,66,-0.21806497392395285],[123,246,67,-0.21613059114559285],[123,246,68,-0.21408227784408207],[123,246,69,-0.21192072784548965],[123,246,70,-0.20964675059300153],[123,246,71,-0.20726127291104224],[123,246,72,-0.20476534076875152],[123,246,73,-0.20216012104290715],[123,246,74,-0.19944690328008297],[123,246,75,-0.19662710145831674],[123,246,76,-0.1937022557480923],[123,246,77,-0.19067403427269702],[123,246,78,-0.18754423486796856],[123,246,79,-0.18431478684138336],[123,247,64,-0.21840064896627065],[123,247,65,-0.21665850546098153],[123,247,66,-0.21480271056527211],[123,247,67,-0.21283373584790122],[123,247,68,-0.21075216344917247],[123,247,69,-0.20855868780727338],[123,247,70,-0.20625411738362887],[123,247,71,-0.20383937638735006],[123,247,72,-0.20131550649873964],[123,247,73,-0.19868366859194697],[123,247,74,-0.1959451444565551],[123,247,75,-0.19310133851838307],[123,247,76,-0.19015377955930224],[123,247,77,-0.1871041224361285],[123,247,78,-0.18395414979860603],[123,247,79,-0.18070577380643393],[123,248,64,-0.21514606641301992],[123,248,65,-0.21336575069634334],[123,248,66,-0.21147314270228235],[123,248,67,-0.20946871783450893],[123,248,68,-0.20735306051457025],[123,248,69,-0.2051268658680765],[123,248,70,-0.20279094140959408],[123,248,71,-0.2003462087263267],[123,248,72,-0.19779370516054462],[123,248,73,-0.1951345854908555],[123,248,74,-0.19237012361209915],[123,248,75,-0.18950171421414952],[123,248,76,-0.18653087445942185],[123,248,77,-0.1834592456591494],[123,248,78,-0.18028859494844107],[123,248,79,-0.17702081696007677],[123,249,64,-0.21182819014136334],[123,249,65,-0.21000879924921279],[123,249,66,-0.20807850656535753],[123,249,67,-0.20603779148322754],[123,249,68,-0.2038872408229736],[123,249,69,-0.20162755047644232],[123,249,70,-0.19925952705053585],[123,249,71,-0.19678408950904336],[123,249,72,-0.1942022708129021],[123,249,73,-0.1915152195589842],[123,249,74,-0.18872420161718795],[123,249,75,-0.18583060176612054],[123,249,76,-0.18283592532716764],[123,249,77,-0.17974179979701554],[123,249,78,-0.17654997647863668],[123,249,79,-0.1732623321106942],[123,250,64,-0.2084492962003387],[123,250,65,-0.20658994777759632],[123,250,66,-0.204621118639703],[123,250,67,-0.20254329232657908],[123,250,68,-0.20035705817702354],[123,250,69,-0.19806311293142465],[123,250,70,-0.19566226233252937],[123,250,71,-0.19315542272435704],[123,250,72,-0.19054362264921665],[123,250,73,-0.18782800444292302],[123,250,74,-0.1850098258279893],[123,250,75,-0.18209046150508612],[123,250,76,-0.1790714047425599],[123,250,77,-0.17595426896407673],[123,250,78,-0.17274078933440307],[123,250,79,-0.16943282434327922],[123,251,64,-0.20501173480018364],[123,251,65,-0.20311156802873565],[123,251,66,-0.2011033713948286],[123,251,67,-0.19898763274339748],[123,251,68,-0.19676494405455436],[123,251,69,-0.19443600300300323],[123,251,70,-0.19200161451517606],[123,251,71,-0.189462692324178],[123,251,72,-0.18682026052249834],[123,251,73,-0.18407545511258738],[123,251,74,-0.18122952555507077],[123,251,75,-0.17828383631489542],[123,251,76,-0.17523986840519934],[123,251,77,-0.17209922092897],[123,251,78,-0.16886361261850413],[123,251,79,-0.16553488337262345],[123,252,64,-0.20151792618014497],[123,252,65,-0.19957610266647696],[123,252,66,-0.1975277290729891],[123,252,67,-0.19537329770984324],[123,252,68,-0.19311340332368643],[123,252,69,-0.19074874461275304],[123,252,70,-0.1882801257393425],[123,252,71,-0.1857084578397601],[123,252,72,-0.183034760531679],[123,252,73,-0.1802601634190235],[123,252,74,-0.1773859075941422],[123,252,75,-0.1744133471375704],[123,252,76,-0.1713439506151695],[123,252,77,-0.1681793025727103],[123,252,78,-0.16492110502791202],[123,252,79,-0.1615711789598926],[123,253,64,-0.19797035653422024],[123,253,65,-0.19598606115705947],[123,253,66,-0.19389672353650678],[123,253,67,-0.19170284060974901],[123,253,68,-0.1894050100176783],[123,253,69,-0.1870039315746832],[123,253,70,-0.18450040873545848],[123,253,71,-0.18189535005892565],[123,253,72,-0.1791897706692196],[123,253,73,-0.1763847937138412],[123,253,74,-0.17348165181874675],[123,253,75,-0.17048168854067214],[123,253,76,-0.1673863598164781],[123,253,77,-0.16419723540958742],[123,253,78,-0.16091600035352183],[123,253,79,-0.1575444563924957],[123,254,64,-0.19437157399473826],[123,254,65,-0.19234401571322585],[123,254,66,-0.19021295017388207],[123,254,67,-0.18797887910419908],[123,254,68,-0.18564240316944192],[123,254,69,-0.18320422339614773],[123,254,70,-0.1806651425922794],[123,254,71,-0.17802606676412613],[123,254,72,-0.17528800652990606],[123,254,73,-0.17245207853017408],[123,254,74,-0.16951950683479877],[123,254,75,-0.16649162434681475],[123,254,76,-0.16336987420293048],[123,254,77,-0.16015581117076438],[123,254,78,-0.15685110304281857],[123,254,79,-0.15345753202714452],[123,255,64,-0.1907241846739594],[123,255,65,-0.1886525972968377],[123,255,66,-0.18647906386487612],[123,255,67,-0.1842040910605287],[123,255,68,-0.18182828270590462],[123,255,69,-0.179352341139015],[123,255,70,-0.17677706858629982],[123,255,71,-0.17410336853152814],[123,255,72,-0.17133224708103023],[123,255,73,-0.1684648143253621],[123,255,74,-0.16550228569716485],[123,255,75,-0.1624459833255283],[123,255,76,-0.15929733738663832],[123,255,77,-0.15605788745077898],[123,255,78,-0.15272928382569972],[123,255,79,-0.1493132888963029],[123,256,64,-0.18703084876360665],[123,256,65,-0.18491449167990748],[123,256,66,-0.1826977750044756],[123,256,67,-0.18038121054065287],[123,256,68,-0.17796540540213224],[123,256,69,-0.17545106334100857],[123,256,70,-0.1728389860717291],[123,256,71,-0.17013007459103652],[123,256,72,-0.16732533049386056],[123,256,73,-0.16442585728526293],[123,256,74,-0.16143286168819282],[123,256,75,-0.1583476549473697],[123,256,76,-0.1551716541290633],[123,256,77,-0.15190638341685114],[123,256,78,-0.14855347540335795],[123,256,79,-0.14511467237793352],[123,257,64,-0.18329427669223392],[123,257,65,-0.18113243556394998],[123,257,66,-0.17887184558564073],[123,257,67,-0.17651302384862588],[123,257,68,-0.17405658089510823],[123,257,69,-0.1715032219971111],[123,257,70,-0.16885374843092377],[123,257,71,-0.16610905874714665],[123,257,72,-0.1632701500362982],[123,257,73,-0.16033811919008384],[123,257,74,-0.15731416415808408],[123,257,75,-0.1541995852001809],[123,257,76,-0.15099578613449127],[123,257,77,-0.1477042755808876],[123,257,78,-0.14432666820010953],[123,257,79,-0.14086468592842527],[123,258,64,-0.17951722534061587],[123,258,65,-0.17730921275784062],[123,258,66,-0.1750040853410305],[123,258,67,-0.17260236563762354],[123,258,68,-0.17010466775736632],[123,258,69,-0.16751169860123694],[123,258,70,-0.16482425908547743],[123,258,71,-0.16204324536082781],[123,258,72,-0.15916965002692102],[123,258,73,-0.15620456334194321],[123,258,74,-0.15314917442731218],[123,258,75,-0.15000477246769683],[123,258,76,-0.14677274790614386],[123,258,77,-0.14345459363439372],[123,258,78,-0.14005190617838625],[123,258,79,-0.13656638687892075],[123,259,64,-0.1757024943150704],[123,259,65,-0.1734476504140936],[123,259,66,-0.1710973479436081],[123,259,67,-0.16865211507625588],[123,259,68,-0.1661125696303824],[123,259,69,-0.16347942024806983],[123,259,70,-0.16075346756787223],[123,259,71,-0.1579356053923432],[123,259,72,-0.15502682185031896],[123,259,73,-0.15202820055405797],[123,259,74,-0.14894092175099083],[123,259,75,-0.14576626347040456],[123,259,76,-0.14250560266482704],[123,259,77,-0.13916041634619075],[123,259,78,-0.13573228271678223],[123,259,79,-0.13222288229493484],[123,260,64,-0.17185292227861215],[123,260,65,-0.16955061532345184],[123,260,66,-0.16715452726602897],[123,260,67,-0.16466519207410657],[123,260,68,-0.16208323141761977],[123,260,69,-0.15940935579496673],[123,260,70,-0.15664436565358275],[123,260,71,-0.1537891525048944],[123,260,72,-0.1508447000336094],[123,260,73,-0.14781208520145012],[123,260,74,-0.1446924793450789],[123,260,75,-0.1414871492685431],[123,260,76,-0.13819745833000374],[123,260,77,-0.13482486752282752],[123,260,78,-0.1313709365510482],[123,260,79,-0.12783732489915622],[123,261,64,-0.1679713833401345],[123,261,65,-0.16562101026799236],[123,261,66,-0.16317855369900597],[123,261,67,-0.16064455356669838],[123,261,68,-0.1580196355374317],[123,261,69,-0.1553045120841272],[123,261,70,-0.15249998355384242],[123,261,71,-0.14960693922930274],[123,261,72,-0.14662635838434557],[123,261,73,-0.14355931133338468],[123,261,74,-0.1404069604746388],[123,261,75,-0.13717056132745842],[123,261,76,-0.1338514635635104],[123,261,77,-0.13045111203190174],[123,261,78,-0.12697104777824864],[123,261,79,-0.1234129090576479],[123,262,64,-0.16406078350151976],[123,262,65,-0.16166177043264462],[123,262,66,-0.15917239052855803],[123,262,67,-0.15659318985978932],[123,262,68,-0.1539247982357213],[123,262,69,-0.15116793022493374],[123,262,70,-0.14832338616896934],[123,262,71,-0.14539205318962423],[123,262,72,-0.1423749061897146],[123,262,73,-0.13927300884743443],[123,262,74,-0.13608751460404084],[123,262,75,-0.13281966764520875],[123,262,76,-0.12947080387580778],[123,262,77,-0.12604235188818835],[123,262,78,-0.12253583392397654],[123,262,79,-0.11895286682934203],[123,263,64,-0.160124057162583],[123,263,65,-0.15767585987502442],[123,263,66,-0.1551390303720353],[123,263,67,-0.15251412103289225],[123,263,68,-0.14980176595825428],[123,263,69,-0.1470026819363494],[123,263,70,-0.1441176694021431],[123,263,71,-0.14114761338958876],[123,263,72,-0.13809348447691439],[123,263,73,-0.134956339725061],[123,263,74,-0.13173732360900403],[123,263,75,-0.12843766894230735],[123,263,76,-0.12505869779465584],[123,263,77,-0.12160182240245665],[123,263,78,-0.11806854607251038],[123,263,79,-0.11446046407871147],[123,264,64,-0.1561641636840525],[123,264,65,-0.15366626805379346],[123,264,66,-0.1510814916731389],[123,264,67,-0.14841039340223544],[123,264,68,-0.1456536117828412],[123,264,69,-0.14281186594960193],[123,264,70,-0.13988595653385877],[123,264,71,-0.1368767665600894],[123,264,72,-0.1337852623349371],[123,264,73,-0.13061249432894156],[123,264,74,-0.12735959805070407],[123,264,75,-0.12402779491383747],[123,264,76,-0.12061839309644429],[123,264,77,-0.11713278839321595],[123,264,78,-0.11357246506015178],[123,264,79,-0.1099389966518593],[123,265,64,-0.15218408400841593],[123,265,65,-0.14963600641536462],[123,265,66,-0.14700281525575176],[123,265,67,-0.14428507604298318],[123,265,68,-0.14148343191120893],[123,265,69,-0.13859860447096145],[123,265,70,-0.13563139465686702],[123,265,71,-0.1325826835675335],[123,265,72,-0.12945343329756925],[123,265,73,-0.12624468776184872],[123,265,74,-0.12295757351175302],[123,265,75,-0.11959330054373962],[123,265,76,-0.11615316309998491],[123,265,77,-0.11263854046118837],[123,265,78,-0.10905089773154208],[123,265,79,-0.1053917866158231],[123,266,64,-0.14818681733876232],[123,266,65,-0.14558810503909153],[123,266,66,-0.14290606093671993],[123,266,67,-0.14014125737085276],[123,266,68,-0.13729434222069659],[123,266,69,-0.13436603970475697],[123,266,70,-0.13135715117174535],[123,266,71,-0.1282685558831962],[123,266,72,-0.1251012117877519],[123,266,73,-0.12185615628723007],[123,266,74,-0.11853450699420004],[123,266,75,-0.1151374624814252],[123,266,76,-0.1116663030229128],[123,266,77,-0.10812239132666218],[123,266,78,-0.10450717325911218],[123,266,79,-0.10082217856124781],[123,267,64,-0.1441753778754421],[123,267,65,-0.14152560934075759],[123,267,66,-0.13879430419739708],[123,267,67,-0.1359820417829422],[123,267,68,-0.13308947487559014],[123,267,69,-0.13011733043643914],[123,267,70,-0.127066410342906],[123,267,71,-0.12393759211338579],[123,267,72,-0.12073182962310564],[123,267,73,-0.1174501538112881],[123,267,74,-0.1140936733793525],[123,267,75,-0.11066357548051003],[123,267,76,-0.10716112640049474],[123,267,77,-0.10358767222951892],[123,267,78,-0.09994463952545785],[123,267,79,-0.09623353596822087],[123,268,64,-0.14015279161075628],[123,268,65,-0.13745157683458104],[123,268,66,-0.13467063291417386],[123,268,67,-0.13181054635798983],[123,268,68,-0.1288719749983201],[123,268,69,-0.1258556486759167],[123,268,70,-0.12276236991527067],[123,268,71,-0.11959301459065008],[123,268,72,-0.11634853258285371],[123,268,73,-0.1130299484267977],[123,268,74,-0.10963836194965432],[123,268,75,-0.10617494889991203],[123,268,76,-0.10264096156708596],[123,268,77,-0.09903772939217909],[123,268,78,-0.09536665956888712],[123,268,79,-0.0916292376355145],[123,269,64,-0.13612209318157886],[123,269,65,-0.13336907395363717],[123,269,66,-0.13053814414788906],[123,269,67,-0.12762989761596377],[123,269,68,-0.12464499740041385],[123,269,69,-0.12158417636106039],[123,269,70,-0.11844823779150476],[123,269,71,-0.1152380560259138],[123,269,72,-0.11195457703603345],[123,269,73,-0.10859881901854945],[123,269,74,-0.1051718729725119],[123,269,75,-0.1016749032671953],[123,269,76,-0.09810914820012284],[123,269,77,-0.09447592054535231],[123,269,78,-0.0907766080920222],[123,269,79,-0.0870126741731197],[123,270,64,-0.1320863227798032],[123,270,65,-0.12928117292858876],[123,270,66,-0.12639994099201313],[123,270,67,-0.12344322833687027],[123,270,68,-0.12041170337309948],[123,270,69,-0.11730610212126391],[123,270,70,-0.11412722876969872],[123,270,71,-0.11087595622143881],[123,270,72,-0.10755322663088202],[123,270,73,-0.10416005193030548],[123,270,74,-0.10069751434595048],[123,270,75,-0.09716676690405102],[123,270,76,-0.09356903392653132],[123,270,77,-0.08990561151647186],[123,270,78,-0.08617786803334093],[123,270,79,-0.08238724455795471],[123,271,64,-0.128048523120823],[123,271,65,-0.1251909487249352],[123,271,66,-0.12225912947982004],[123,271,67,-0.11925367443899654],[123,271,68,-0.11617525753776975],[123,271,69,-0.1130246181012794],[123,271,70,-0.10980256134171795],[123,271,71,-0.10650995884482595],[123,271,72,-0.1031477490456234],[123,271,73,-0.09971693769349305],[123,271,74,-0.09621859830633034],[123,271,75,-0.09265387261413827],[123,271,76,-0.08902397099178838],[123,271,77,-0.08533017288105105],[123,271,78,-0.08157382720188927],[123,271,79,-0.07775635275298098],[123,272,64,-0.12401173646994201],[123,272,65,-0.12110147603867727],[123,272,66,-0.11811881555043707],[123,272,67,-0.11506437191648222],[123,272,68,-0.11193882475620542],[123,272,69,-0.1087429168452207],[123,272,70,-0.10547745455211127],[123,272,71,-0.10214330826394918],[123,272,72,-0.09874141280054183],[123,272,73,-0.09527276781752425],[123,272,74,-0.09173843819800925],[123,272,75,-0.08813955443317573],[123,272,76,-0.0844773129915154],[123,272,77,-0.08075297667684084],[123,272,78,-0.0769678749750502],[123,272,79,-0.07312340438961185],[123,273,64,-0.11997900172661052],[123,273,65,-0.11701582635029034],[123,273,66,-0.11398210207367093],[123,273,67,-0.11087845383610956],[123,273,68,-0.10770556710044438],[123,273,69,-0.10446418824062159],[123,273,70,-0.1011551249174662],[123,273,71,-0.09777924644270969],[123,273,72,-0.09433748413123016],[123,273,73,-0.0908308316416272],[123,273,74,-0.08726034530483534],[123,273,75,-0.08362714444116587],[123,273,76,-0.0799324116654907],[123,273,77,-0.07617739318067479],[123,273,78,-0.07236339905924954],[123,273,79,-0.06849180351329304],[123,274,64,-0.11595335156669506],[123,274,65,-0.11293706503721729],[123,274,66,-0.10985208593381851],[123,274,67,-0.10669904739352937],[123,274,68,-0.10347864088251585],[123,274,69,-0.10019161652277186],[123,274,70,-0.09683878340643398],[123,274,71,-0.09342100989783347],[123,274,72,-0.08993922392323928],[123,274,73,-0.08639441324841646],[123,274,74,-0.08278762574370058],[123,274,75,-0.0791199696369822],[123,274,76,-0.075392613754312],[123,274,77,-0.07160678774823309],[123,274,78,-0.06776378231383512],[123,274,79,-0.0638649493924941],[123,275,64,-0.11193780964267741],[123,275,65,-0.10886824854477545],[123,275,66,-0.10573185517235834],[123,275,67,-0.10252927102881376],[123,275,68,-0.099261193743931],[123,275,69,-0.09592837733921772],[123,275,70,-0.09253163248031165],[123,275,71,-0.08907182671660158],[123,275,72,-0.08554988470801411],[123,275,73,-0.08196678843908833],[123,275,74,-0.07832357742003943],[123,275,75,-0.07462134887520638],[123,275,76,-0.07086125791859299],[123,275,77,-0.06704451771660991],[123,275,78,-0.06317239963801108],[123,275,79,-0.059246233390989334],[123,276,64,-0.1079353878416805],[123,276,65,-0.10481242161537307],[123,276,66,-0.10162448618941672],[123,276,67,-0.09837223160122949],[123,276,68,-0.09505636180482047],[123,276,69,-0.09167763487432057],[123,276,70,-0.08823686319407259],[123,276,71,-0.08473491363539948],[123,276,72,-0.08117270772000451],[123,276,73,-0.07755122177012824],[123,276,74,-0.07387148704515889],[123,276,75,-0.07013458986509674],[123,276,76,-0.06634167172057809],[123,276,77,-0.06249392936956699],[123,276,78,-0.05859261492070955],[123,276,79,-0.054639035903313704],[123,277,64,-0.10394908360152677],[123,277,65,-0.10077261457624542],[123,277,66,-0.09753304100421978],[123,277,67,-0.09423102162344577],[123,277,68,-0.09086726687293745],[123,277,69,-0.08744253903409033],[123,277,70,-0.08395765235806518],[123,277,71,-0.08041347317931014],[123,277,72,-0.07681092001517709],[123,277,73,-0.0731509636517571],[123,277,74,-0.06943462721562849],[123,277,75,-0.06566298623192224],[123,277,76,-0.061837168668407494],[123,277,77,-0.05795835496570706],[123,277,78,-0.05402777805363557],[123,277,79,-0.05004672335362609],[123,278,64,-0.09998187728472635],[123,278,65,-0.096751840685604],[123,278,66,-0.09346056457442464],[123,278,67,-0.09010871655506891],[123,278,68,-0.08669701371241495],[123,278,69,-0.08322622269118563],[123,278,70,-0.07969715976026975],[123,278,71,-0.07611069086263911],[123,278,72,-0.07246773165081333],[123,278,73,-0.06876924750800278],[123,278,74,-0.06501625355461588],[123,278,75,-0.06120981464054326],[123,278,76,-0.05735104532291585],[123,278,77,-0.053441109829449274],[123,278,78,-0.0494812220073666],[123,278,79,-0.04547264525786543],[123,279,64,-0.09603672961029253],[123,279,65,-0.09275309353709693],[123,279,66,-0.08941008217422708],[123,279,67,-0.0860083721553987],[123,279,68,-0.08254868737217336],[123,279,69,-0.07903179898997059],[123,279,70,-0.07545852544900344],[123,279,71,-0.07182973245025998],[123,279,72,-0.06814633292648398],[123,279,73,-0.06440928699828347],[123,279,74,-0.06061960191505339],[123,279,75,-0.05677833198112692],[123,279,76,-0.05288657846684991],[123,279,77,-0.048945489504692796],[123,279,78,-0.04495625997039093],[123,279,79,-0.04092013134907946],[123,280,64,-0.09211657914358956],[123,280,65,-0.08877934452278785],[123,280,66,-0.08538459683145366],[123,280,67,-0.08193302189561824],[123,280,68,-0.07842535057419087],[123,280,69,-0.07486235871184849],[123,280,70,-0.07124486707629363],[123,280,71,-0.0675737412800036],[123,280,72,-0.0638498916864228],[123,280,73,-0.060074273300730674],[123,280,74,-0.056247885644865714],[123,280,75,-0.052371772617225865],[123,280,76,-0.04844702233673598],[123,280,77,-0.044474766971398794],[123,280,78,-0.040456182551318054],[123,280,79,-0.03639248876616297],[123,281,64,-0.08822433984410866],[123,281,65,-0.0848335403545471],[123,281,66,-0.08138708682353302],[123,281,67,-0.07788567443031003],[123,281,68,-0.07433004116152825],[123,281,69,-0.07072096770075798],[123,281,70,-0.06705927730180794],[123,281,71,-0.0633458356459764],[123,281,72,-0.059581550683186324],[123,281,73,-0.055767372457135034],[123,281,74,-0.05190429291414017],[123,281,75,-0.04799334569610342],[123,281,76,-0.04403560591728023],[123,281,77,-0.04003218992497415],[123,281,78,-0.035984255044142766],[123,281,79,-0.03189299930588552],[123,282,64,-0.08436289867107422],[123,282,65,-0.0809186006437565],[123,282,66,-0.07742050323224542],[123,282,67,-0.07386931112819567],[123,282,68,-0.07026576960600628],[123,282,69,-0.06661066434873197],[123,282,70,-0.06290482125723501],[123,282,71,-0.05914910624270403],[123,282,72,-0.05534442500249226],[123,282,73,-0.051491722779408],[123,282,74,-0.04759198410413262],[123,282,75,-0.04364623252119576],[123,282,76,-0.03965553029818997],[123,282,77,-0.035620978118345026],[123,282,78,-0.03154371475645101],[123,282,79,-0.027424916738096217],[123,283,64,-0.08053511324707985],[123,283,65,-0.0770374155395307],[123,283,66,-0.07348776755745479],[123,283,67,-0.06988688366230794],[123,283,68,-0.06623551657574295],[123,283,69,-0.06253445714172767],[123,283,70,-0.05878453407133216],[123,283,71,-0.05498661367031432],[123,283,72,-0.0511415995494553],[123,283,73,-0.047250432317779534],[123,283,74,-0.043314089258330135],[123,283,75,-0.039333583986935206],[123,283,76,-0.0353099660936429],[123,283,77,-0.031244320766947553],[123,283,78,-0.027137768400795126],[123,283,79,-0.02299146418433423],[123,284,64,-0.07674380957965327],[123,284,65,-0.0731928434253502],[123,284,66,-0.06959176938972],[123,284,67,-0.06594131165948791],[123,284,68,-0.0622422305624471],[123,284,69,-0.058495322265622485],[123,284,70,-0.054701418455528394],[123,284,71,-0.050861386000651154],[123,284,72,-0.04697612659610839],[123,284,73,-0.043046576390619984],[123,284,74,-0.039073705595458585],[123,284,75,-0.035058518075820444],[123,284,76,-0.031002050924289537],[123,284,77,-0.02690537401651999],[123,284,78,-0.02276958954912367],[123,284,79,-0.018595831559730658],[123,285,64,-0.07299177984065264],[123,285,65,-0.06938770867401123],[123,285,66,-0.06573536414168607],[123,285,67,-0.062035480409108446],[123,285,68,-0.058288825568363845],[123,285,69,-0.05449620127227178],[123,285,70,-0.050658442349981514],[123,285,71,-0.04677641640421443],[123,285,72,-0.04285102339010505],[123,285,73,-0.038883195175778346],[123,285,74,-0.034873895084325396],[123,285,75,-0.030824117417624752],[123,285,76,-0.02673488696167789],[123,285,77,-0.022607258473585856],[123,285,78,-0.01844231615015321],[123,285,79,-0.014241173078087033],[123,286,64,-0.06928178020369152],[123,286,65,-0.0656247994610887],[123,286,66,-0.061921370838456724],[123,286,67,-0.05817223863122806],[123,286,68,-0.0543781788530808],[123,286,69,-0.050539998805837955],[123,286,70,-0.04665853663029909],[123,286,71,-0.042734660838137956],[123,286,72,-0.03876926982481688],[123,286,73,-0.034763291363656135],[123,286,74,-0.030717682080719427],[123,286,75,-0.026633426910964347],[123,286,76,-0.022511538535324865],[123,286,77,-0.0183530567988536],[123,286,78,-0.014159048109909728],[123,286,79,-0.009930604820360373],[123,287,64,-0.06561652873949142],[123,287,65,-0.06190686563681186],[123,287,66,-0.05815256996684487],[123,287,67,-0.054354396304068936],[123,287,68,-0.050513128740087954],[123,287,69,-0.04662958038928375],[123,287,70,-0.04270459287481526],[123,287,71,-0.03873903579509827],[123,287,72,-0.03473380617071653],[123,287,73,-0.030689827871903497],[123,287,74,-0.02660805102625316],[123,287,75,-0.02248945140711242],[123,287,76,-0.018335029802319325],[123,287,77,-0.014145811363416111],[123,287,78,-0.009922844935322278],[123,287,79,-0.005667202366436336],[123,288,64,-0.06199870336906971],[123,288,65,-0.05823661665625854],[123,288,66,-0.05443170138340647],[123,288,67,-0.05058472255072527],[123,288,68,-0.04669647248299383],[123,288,69,-0.042767770270930816],[123,288,70,-0.038799461192324025],[123,288,71,-0.03479241611305134],[123,288,72,-0.030747530867944628],[123,288,73,-0.026665725621636577],[123,288,74,-0.022547944209045517],[123,288,75,-0.01839515345595552],[123,288,76,-0.01420834247935232],[123,288,77,-0.009988521967645742],[123,288,78,-0.005736723440763564],[123,288,79,-0.0014539984900847347],[123,289,64,-0.05843093987496259],[123,289,65,-0.05461671956807068],[123,289,66,-0.05076146228146311],[123,289,67,-0.046865943585307934],[123,289,68,-0.042930964191609106],[123,289,69,-0.03895734933129741],[123,289,70,-0.03494594811048435],[123,289,71,-0.030897632846016376],[123,289,72,-0.02681329838027957],[123,289,73,-0.022693861375396723],[123,289,74,-0.018540259586467878],[123,289,75,-0.014353451114316934],[123,289,76,-0.010134413637400613],[123,289,77,-0.005884143623012622],[123,289,78,-0.001603655517766811],[123,289,79,0.002706019082671818],[123,290,64,-0.05491582997031533],[123,290,65,-0.05104979706152046],[123,290,66,-0.04714450521694025],[123,290,67,-0.0432007407183522],[123,290,68,-0.03921931281772084],[123,290,69,-0.03520105305003554],[123,290,70,-0.031146814524716182],[123,290,71,-0.027057471195723742],[123,290,72,-0.0229339171103268],[123,290,73,-0.01877706563666609],[123,290,74,-0.01458784866976584],[123,290,75,-0.01036721581645822],[123,290,76,-0.006116133558874137],[123,290,77,-0.0018355843966346708],[123,290,78,0.002473434032273625],[123,290,79,0.006809909851970414],[123,291,64,-0.051455919425962365],[123,291,65,-0.0475384255720524],[123,291,66,-0.04358343619314731],[123,291,67,-0.039591748421614725],[123,291,68,-0.03556418020068505],[123,291,69,-0.031501569533098184],[123,291,70,-0.02740477370771882],[123,291,71,-0.023274668504259383],[123,291,72,-0.01911214737606068],[123,291,73,-0.014918120611074809],[123,291,74,-0.010693514470693721],[123,291,75,-0.006439270306896838],[123,291,76,-0.0021563436573651396],[123,291,77,0.0021542966813009323],[123,291,78,0.006491669602277705],[123,291,79,0.010854782659159096],[123,292,64,-0.048053706255337],[123,292,65,-0.04408513344513751],[123,292,66,-0.04008081280433587],[123,292,67,-0.036041552452094505],[123,292,68,-0.03196817917267114],[123,292,69,-0.027861537599966735],[123,292,70,-0.023722489379440548],[123,292,71,-0.01955191230753292],[123,292,72,-0.01535069944854528],[123,292,73,-0.011119758229123172],[123,292,74,-0.006860009509983028],[123,292,75,-0.0025723866353595803],[123,292,76,0.0017421655401815839],[123,292,77,0.00608269164742728],[123,292,78,0.010448226820714612],[123,292,79,0.014837797738673497],[123,293,64,-0.04471163895740246],[123,293,65,-0.040692399158635234],[123,293,66,-0.0366391424382313],[123,293,67,-0.03255268803547606],[123,293,68,-0.02843387172375797],[123,293,69,-0.024283544931141543],[123,293,70,-0.02010257383770392],[123,293,71,-0.015891838449776513],[123,293,72,-0.011652231651041539],[123,293,73,-0.00738465823062992],[123,293,74,-0.003090033887858473],[123,293,75,0.0012307157859126339],[123,293,76,0.005576656348660891],[123,293,77,0.009946845572180257],[123,293,78,0.014340334529677617],[123,293,79,0.018756168706515863],[123,294,64,-0.0414321148175083],[123,294,65,-0.03736264960356514],[123,294,66,-0.033260880537440946],[123,294,67,-0.029127638108896126],[123,294,68,-0.024963767226782257],[123,294,69,-0.020770126275795206],[123,294,70,-0.016547586149385937],[123,294,71,-0.01229702925897197],[123,294,72,-0.008019348519399422],[123,294,73,-0.003715446310802409],[123,294,74,6.137665835043715E-4],[123,294,75,0.004967372062615577],[123,294,76,0.009344445817469016],[123,294,77,0.013744058463981551],[123,294,78,0.018165276699907182],[123,294,79,0.02260716448544653],[123,295,64,-0.038217478266093355],[123,295,65,-0.03409825842320846],[123,295,66,-0.029948428919656142],[123,295,67,-0.025768831622950156],[123,295,68,-0.021560320721854376],[123,295,69,-0.017323761719502048],[123,295,70,-0.013060030402064993],[123,295,71,-0.008770011783117426],[123,295,72,-0.0044545990236436045],[123,295,73,-1.1469232783796468E-4],[123,295,74,0.00424880218567035],[123,295,75,0.008634973636679352],[123,295,76,0.013042907560727734],[123,295,77,0.017471687110716103],[123,295,78,0.021920394282857122],[123,295,79,0.026388111166983266],[123,296,64,-0.035070019295403265],[123,296,65,-0.030901544410710177],[123,296,66,-0.02670413415682256],[123,296,67,-0.022478641903115687],[123,296,68,-0.01822593126072053],[123,296,69,-0.013946875012225399],[123,296,70,-0.009642354016318938],[123,296,71,-0.005313256087519716],[123,296,72,-9.604748509418476E-4],[123,296,73,0.0034150914277537026],[123,296,74,0.007812541037594115],[123,296,75,0.012230970042220637],[123,296,76,0.016669473524876147],[123,296,77,0.021127146858307605],[123,296,78,0.025603086999605493],[123,296,79,0.030096393810008767],[123,297,64,-0.03199197193413554],[123,297,65,-0.027774769965093246],[123,297,66,-0.023530286013187796],[123,297,67,-0.019259385070500262],[123,297,68,-0.014962940310878442],[123,297,69,-0.010641831956468603],[123,297,70,-0.006296946118578159],[123,297,71,-0.0019291736130157555],[123,297,72,0.0024605912501419053],[123,297,73,0.006871451902205616],[123,297,74,0.01130251077732676],[123,297,75,0.01575287059924904],[123,297,76,0.020221635693731116],[123,297,77,0.02470791332649383],[123,297,78,0.029210815066713455],[123,297,79,0.03372945817608962],[123,298,64,-0.02898551277993419],[123,298,65,-0.024720139605605485],[123,298,66,-0.02042911594214715],[123,298,67,-0.016113318521833286],[123,298,68,-0.011773630219364312],[123,298,69,-0.007410938855506408],[123,298,70,-0.0030261359744503807],[123,298,71,0.0013798844049621312],[123,298,72,0.005806227064196132],[123,298,73,0.010251996886012582],[123,298,74,0.01471630018186721],[123,298,75,0.0191982460452165],[123,298,76,0.02369694773110577],[123,298,77,0.02821152406189182],[123,298,78,0.03274110085912209],[123,298,79,0.03728481240159872],[123,299,64,-0.026052759589895058],[123,299,65,-0.021739798544563496],[123,299,66,-0.017402795642052736],[123,299,67,-0.013042639468869868],[123,299,68,-0.0086602227363817],[123,299,69,-0.0042564410218694365],[123,299,70,1.6780851730880536E-4],[123,299,71,0.004611628456299935],[123,299,72,0.009074122442132508],[123,299,73,0.013554396559734817],[123,299,74,0.01805156072497662],[123,299,75,0.022564730104225807],[123,299,76,0.027093026560800607],[123,299,77,0.031635580128166196],[123,299,78,0.03619153050989965],[123,299,79,0.040760028606450414],[123,300,64,-0.023195769928998092],[123,300,65,-0.018835831318607915],[123,300,66,-0.014453435670900447],[123,300,67,-0.010049483537119597],[123,300,68,-0.0056248775986834434],[123,300,69,-0.001180521345992079],[123,300,70,0.0032826822702700584],[123,300,71,0.007763832215187193],[123,300,72,0.012262030773072148],[123,300,73,0.016776384978178467],[123,300,74,0.021306008073049672],[123,300,75,0.025850020993993285],[123,300,76,0.030407553884063063],[123,300,77,0.0349777476333971],[123,300,78,0.03955975544693595],[123,300,79,0.04415274443954822],[123,301,64,-0.020416539876394628],[123,301,65,-0.016010260478296706],[123,301,66,-0.011583084119819037],[123,301,67,-0.007135923423823541],[123,301,68,-0.0026696911726304673],[123,301,69,0.0018147010750538504],[123,301,70,0.006316344395327814],[123,301,71,0.010834333938252429],[123,301,72,0.015367770395028214],[123,301,73,0.019915761493035568],[123,301,74,0.024477423519126323],[123,301,75,0.029051882870649807],[123,301,76,0.033638277634600575],[123,301,77,0.038235759194733376],[123,301,78,0.04284349386667067],[123,301,79,0.04746066456102929],[123,302,64,-0.01771700278970059],[123,302,65,-0.013265045336190748],[123,302,66,-0.008793725345518935],[123,302,67,-0.004303967615339483],[123,302,68,2.0330484291246342E-4],[123,302,69,0.004727172248576984],[123,302,70,0.009266719525056595],[123,302,71,0.013821037801683112],[123,302,72,0.018389225944215437],[123,302,73,0.02297039211381245],[123,302,74,0.027563655354870223],[123,302,75,0.03216814721120492],[123,302,76,0.03678301337097005],[123,302,77,0.04140741534015285],[123,302,78,0.0460405321446755],[123,302,79,0.05068156206112767],[123,303,64,-0.01509902812721534],[123,303,65,-0.01060208077334935],[123,303,66,-0.006087278761616773],[123,303,67,-0.0015555591638497478],[123,303,68,0.002992144653929576],[123,303,69,0.007554904537122633],[123,303,70,0.01213179907751328],[123,303,71,0.016721915177417595],[123,303,72,0.02132434964307702],[123,303,73,0.02593821080713745],[123,303,74,0.03056262018060671],[123,303,75,0.035196714133767605],[123,303,76,0.039839645606438524],[123,303,77,0.044490585847424685],[123,303,78,0.04914872618318644],[123,303,79,0.05381327981575086],[123,304,64,-0.012564420328002514],[123,304,65,-0.008023196104171274],[123,304,66,-0.003465597688770536],[123,304,67,0.0011074254766741095],[123,304,68,0.005694929548922027],[123,304,69,0.010295977849235544],[123,304,70,0.014909642459555799],[123,304,71,0.019535005848480957],[123,304,72,0.02417116252709936],[123,304,73,0.02881722073451956],[123,304,74,0.03347230415349205],[123,304,75,0.038135553655596295],[123,304,76,0.04280612907638793],[123,304,77,0.0474832110203479],[123,304,78,0.05216600269566039],[123,304,79,0.05685373177884565],[123,305,64,-0.01011491774997027],[123,305,65,-0.005530153999720967],[123,305,66,-9.304682637658393E-4],[123,305,67,0.0036831775551067515],[123,305,68,0.008309829016746477],[123,305,69,0.012948540769981306],[123,305,70,0.017598378209527123],[123,305,71,0.022258419163311303],[123,305,72,0.026927755610261884],[123,305,73,0.031605495428403435],[123,305,74,0.03629076417365812],[123,305,75,0.04098270688882063],[123,305,76,0.04568048994310523],[123,305,77,0.05038330290210563],[123,305,78,0.05509036042819476],[123,305,79,0.05980090421139018],[123,306,64,-0.007752191665876915],[123,306,65,-0.003124649469464693],[123,306,66,0.0015163915925206842],[123,306,67,0.006169957068480888],[123,306,68,0.01083508180470183],[123,306,69,0.015510811631306118],[123,306,70,0.02019620507938577],[123,306,71,0.024890335129159162],[123,306,72,0.029592290989203456],[123,306,73,0.03430117990660318],[123,306,74,0.03901612900841581],[123,306,75,0.04373628717391916],[123,306,76,0.04846082693804277],[123,306,77,0.05318894642582085],[123,306,78,0.05791987131789609],[123,306,79,0.06265285684709893],[123,307,64,-0.005477845317205535],[123,307,65,-8.083089013592101E-4],[123,307,66,0.003873333148341644],[123,307,67,0.008566093748036033],[123,307,68,0.013268996916924528],[123,307,69,0.01798107952229594],[123,307,70,0.022701393056345047],[123,307,71,0.027429005444622526],[123,307,72,0.03216300288617037],[123,307,73,0.03690249172518061],[123,307,74,0.04164660035458277],[123,307,75,0.04639448115101944],[123,307,76,0.05114531244161596],[123,307,77,0.05589830050238109],[123,307,78,0.06065268158826627],[123,307,79,0.06540772399491042],[123,308,64,-0.003293413026030839],[123,308,65,0.0014173108395815828],[123,308,66,0.006138777775353675],[123,308,67,0.010869987985873901],[123,308,68,0.015609954552961304],[123,308,69,0.02035770523920201],[123,308,70,0.025112284323885424],[123,308,71,0.029872754471180755],[123,308,72,0.03463819863060563],[123,308,73,0.03940772196962622],[123,308,74,0.04418045383879379],[123,308,75,0.04895554976887656],[123,308,76,0.053732193500393544],[123,308,77,0.05850959904538647],[123,308,78,0.06328701278145893],[123,308,79,0.06806371557810763],[123,309,64,-0.0012003593648124006],[123,309,65,0.003550723254309149],[123,309,66,0.008311217804015655],[123,309,67,0.013080111702289655],[123,309,68,0.017856406986589128],[123,309,69,0.02263912217530281],[123,309,70,0.02742729416221225],[123,309,71,0.0322199801437998],[123,309,72,0.03701625957945545],[123,309,73,0.041815236184419416],[123,309,74,0.04661603995586959],[123,309,75,0.05141782923160808],[123,309,76,0.05621979278175704],[123,309,77,0.06102115193329785],[123,309,78,0.06582116272748398],[123,309,79,0.07061911811015184],[123,310,64,7.999216159380873E-4],[123,310,65,0.005590512994404898],[123,310,66,0.010389217320164568],[123,310,67,0.015195009153834982],[123,310,68,0.020006879384939086],[123,310,69,0.024823837150661415],[123,310,70,0.029644911788216696],[123,310,71,0.03446915482066833],[123,310,72,0.03929564197624989],[123,310,73,0.04412347524102597],[123,310,74,0.0489517849453034],[123,310,75,0.05377973188324414],[123,310,76,0.058606509466092416],[123,310,77,0.06343134590884916],[123,310,78,0.06825350645042438],[123,310,79,0.07307229560729146],[123,311,64,0.0027061071020017397],[123,311,65,0.00753533658827224],[123,311,66,0.012371412902651174],[123,311,67,0.017213297681992465],[123,311,68,0.022059970567802095],[123,311,69,0.026910431181653163],[123,311,70,0.0317637011348155],[123,311,71,0.036618826071937324],[123,311,72,0.04147487774883195],[123,311,73,0.04633095614420511],[123,311,74,0.05118619160573641],[123,311,75,0.0560397470299628],[123,311,76,0.060890820076379],[123,311,77,0.06573864541558745],[123,311,78,0.07058249701152793],[123,311,79,0.07542169043781154],[123,312,64,0.00451694617187412],[123,312,65,0.009383923108918918],[123,312,66,0.014256514302100759],[123,312,67,0.019133668402527934],[123,312,68,0.024014353707183966],[123,312,69,0.02889756019033253],[123,312,70,0.03378230156973733],[123,312,71,0.03866761740753351],[123,312,72,0.04355257524580425],[123,312,73,0.0484362727766966],[123,312,74,0.053317840047493],[123,312,75,0.05819644170008259],[123,312,76,0.06307127924525067],[123,312,77,0.06794159337161632],[123,312,78,0.07280666628925019],[123,312,79,0.07766582410799608],[123,313,64,0.006231260395302363],[123,313,65,0.011135074783373472],[123,313,66,0.016043305060842783],[123,313,67,0.020954886835565456],[123,313,68,0.025868776967155283],[123,313,69,0.030783955653685663],[123,313,70,0.03569942855380391],[123,313,71,0.04061422894409408],[123,313,72,0.045527419911742084],[123,313,73,0.05043809658233679],[123,313,74,0.05534538838322485],[123,313,75,0.06024846134186168],[123,313,76,0.06514652041957819],[123,313,77,0.07003881188059236],[123,313,78,0.07492462569629874],[123,313,79,0.07980329798485833],[123,314,64,0.007847944373840468],[123,314,65,0.012787667543632392],[123,314,66,0.01773064307390408],[123,314,67,0.022675793476277642],[123,314,68,0.027622064083886927],[123,314,69,0.032568425192657124],[123,314,70,0.037513874238592745],[123,314,71,0.04245743801090862],[123,314,72,0.04739817490105744],[123,314,73,0.052335177187487064],[123,314,74,0.057267573356547335],[123,314,75,0.062194530458985736],[123,314,76,0.0671152565024542],[123,314,77,0.07202900287985475],[123,314,78,0.07693506683355741],[123,314,79,0.08183279395551321],[123,315,64,0.009365966223504912],[123,315,65,0.014340651519224687],[123,315,66,0.01931746109115476],[123,315,67,0.024295304306281892],[123,315,68,0.029273114885963694],[123,315,69,0.03424985310104542],[123,315,70,0.03922450800357702],[123,315,71,0.04419609969496499],[123,315,72,0.04916368163061138],[123,315,73,0.05412634296087354],[123,315,74,0.0590832109087667],[123,315,75,0.06403345318384401],[123,315,76,0.06897628043268086],[123,315,77,0.07391094872578888],[123,315,78,0.07883676208099327],[123,315,79,0.08375307502329679],[123,316,64,0.010784367999474367],[123,316,65,0.015793051471334613],[123,316,66,0.020802767160545577],[123,316,67,0.025812411245680594],[123,316,68,0.03082090575491231],[123,316,69,0.035827200814201765],[123,316,70,0.04083027693267685],[123,316,71,0.04582914732503243],[123,316,72,0.05082286027100766],[123,316,73,0.055810501511769445],[123,316,74,0.06079119668362937],[123,316,75,0.06576411378852434],[123,316,76,0.07072846570169042],[123,316,77,0.07568351271635387],[123,316,78,0.0806285651254742],[123,316,79,0.08556298584056135],[123,317,64,0.012102266062903266],[123,317,65,0.017143967168555235],[123,317,66,0.02218564501251094],[123,317,67,0.02722618254582035],[123,317,68,0.032264490026021025],[123,317,69,0.03729950731761186],[123,317,70,0.042330206230301426],[123,317,71,0.04735559289486302],[123,317,72,0.0523747101766501],[123,317,73,0.05738664012660388],[123,317,74,0.06239050647017841],[123,317,75,0.06738547713361359],[123,317,76,0.07237076680798607],[123,317,77,0.07734563955086224],[123,317,78,0.08230941142558737],[123,317,79,0.08726145317823383],[123,318,64,0.013318851389764103],[123,318,65,0.018392573704184734],[123,318,66,0.023465254385448248],[123,318,67,0.028535763122679747],[123,318,68,0.03360299832935815],[123,318,69,0.038665889495264644],[123,318,70,0.04372339957678731],[123,318,71,0.04877452742541355],[123,318,72,0.053818310254463736],[123,318,73,0.058853826143896504],[123,318,74,0.06388019658361482],[123,318,75,0.06889658905469864],[123,318,76,0.07390221964899721],[123,318,77,0.0788963557269041],[123,318,78,0.08387831861334935],[123,318,79,0.0888474863320313],[123,319,64,0.014433389821766618],[123,319,65,0.01953812175511549],[123,319,66,0.024640831292324028],[123,319,67,0.02974037483093664],[123,319,68,0.034835638871041574],[123,319,69,0.03992554241786256],[123,319,70,0.045009039423284575],[123,319,71,0.05008512126614384],[123,319,72,0.055152819271336306],[123,319,73,0.06021120726757409],[123,319,74,0.06525940418422035],[123,319,75,0.07029657668662681],[123,319,76,0.07532194185040844],[123,319,77,0.08033476987447702],[123,319,78,0.08533438683286956],[123,319,79,0.0903201774653927],[124,-64,64,-0.1515335391033279],[124,-64,65,-0.15540456000589198],[124,-64,66,-0.15915399667164742],[124,-64,67,-0.16278039261230148],[124,-64,68,-0.1662824575214289],[124,-64,69,-0.16965907315887974],[124,-64,70,-0.17290929930034737],[124,-64,71,-0.17603237975200492],[124,-64,72,-0.1790277484302194],[124,-64,73,-0.18189503550625385],[124,-64,74,-0.1846340736162141],[124,-64,75,-0.18724490413588823],[124,-64,76,-0.1897277835207547],[124,-64,77,-0.19208318971102922],[124,-64,78,-0.19431182860179985],[124,-64,79,-0.19641464057822766],[124,-63,64,-0.1459720824408225],[124,-63,65,-0.14983101360947537],[124,-63,66,-0.15356891684921958],[124,-63,67,-0.1571843330649425],[124,-63,68,-0.16067596880945867],[124,-63,69,-0.1640427021600801],[124,-63,70,-0.16728358866036575],[124,-63,71,-0.17039786732695217],[124,-63,72,-0.17338496672147397],[124,-63,73,-0.17624451108749128],[124,-63,74,-0.17897632655267282],[124,-63,75,-0.18158044739588775],[124,-63,76,-0.1840571223794818],[124,-63,77,-0.18640682114660378],[124,-63,78,-0.1886302406836382],[124,-63,79,-0.19072831184771566],[124,-62,64,-0.1403279145173565],[124,-62,65,-0.14417398653486768],[124,-62,66,-0.14789961523207795],[124,-62,67,-0.15150333880346012],[124,-62,68,-0.15498386052960111],[124,-62,69,-0.1583400546454793],[124,-62,70,-0.1615709722739357],[124,-62,71,-0.16467584742423602],[124,-62,72,-0.16765410305574469],[124,-62,73,-0.1705053572066142],[124,-62,74,-0.17322942918774675],[124,-62,75,-0.17582634584167833],[124,-62,76,-0.1782963478666617],[124,-62,77,-0.18063989620581467],[124,-62,78,-0.18285767850138657],[124,-62,79,-0.18495061561412074],[124,-61,64,-0.13460532209142284],[124,-61,65,-0.1384377729498858],[124,-61,66,-0.14215039308276844],[124,-61,67,-0.14574171787190138],[124,-61,68,-0.14921044719584886],[124,-61,69,-0.15255545128943937],[124,-61,70,-0.1557757766685044],[124,-61,71,-0.1588706521197205],[124,-61,72,-0.16183949475557913],[124,-61,73,-0.16468191613438443],[124,-61,74,-0.16739772844553813],[124,-61,75,-0.16998695075976167],[124,-61,76,-0.1724498153445302],[124,-61,77,-0.17478677404458587],[124,-61,78,-0.17699850472758538],[124,-61,79,-0.1790859177948545],[124,-60,64,-0.1288086390609381],[124,-60,65,-0.13262671466232678],[124,-60,66,-0.13632559978604386],[124,-60,67,-0.13990382690048142],[124,-60,68,-0.14336009235414293],[124,-60,69,-0.1466932622259749],[124,-60,70,-0.14990237824092334],[124,-60,71,-0.15298666375061076],[124,-60,72,-0.1559455297791481],[124,-60,73,-0.15877858113399368],[124,-60,74,-0.1614856225821112],[124,-60,75,-0.16406666509107848],[124,-60,76,-0.16652193213542277],[124,-60,77,-0.16885186606804892],[124,-60,78,-0.17105713455681593],[124,-60,79,-0.1731386370862329],[124,-59,64,-0.12294224157241307],[124,-59,65,-0.12674519621929803],[124,-59,66,-0.1304296279387589],[124,-59,67,-0.1339940661864547],[124,-59,68,-0.13743720365462442],[124,-59,69,-0.1407579021127846],[124,-59,70,-0.14395519831365766],[124,-59,71,-0.14702830996423533],[124,-59,72,-0.14997664176199355],[124,-59,73,-0.15279979149616674],[124,-59,74,-0.15549755621433237],[124,-59,75,-0.15806993845396278],[124,-59,76,-0.1605171525392166],[124,-59,77,-0.16283963094283627],[124,-59,78,-0.16503803071320633],[124,-59,79,-0.16711323996654848],[124,-58,64,-0.1170105430042494],[124,-58,65,-0.12079763988019532],[124,-58,66,-0.12446690831295937],[124,-58,67,-0.1280168746477306],[124,-58,68,-0.13144622779620396],[124,-58,69,-0.1347538250671989],[124,-58,70,-0.13793869806252423],[124,-58,71,-0.1410000586379916],[124,-58,72,-0.1439373049295909],[124,-58,73,-0.14675002744474264],[124,-58,74,-0.1494380152188709],[124,-58,75,-0.15200126203695774],[124,-58,76,-0.15443997272035004],[124,-58,77,-0.15675456947868738],[124,-58,78,-0.1589456983270029],[124,-58,79,-0.16101423556797334],[124,-57,64,-0.11101798882448188],[124,-57,65,-0.11478850046364641],[124,-57,66,-0.11844190469247018],[124,-57,67,-0.12197672464955955],[124,-57,68,-0.12539164534378044],[124,-57,69,-0.12868551947436524],[124,-57,70,-0.131857373316284],[124,-57,71,-0.13490641267077175],[124,-57,72,-0.1378320288810364],[124,-57,73,-0.14063380491305],[124,-57,74,-0.14331152150168047],[124,-57,75,-0.145865163361814],[124,-57,76,-0.1482949254647441],[124,-57,77,-0.1506012193796945],[124,-57,78,-0.15278467968052822],[124,-57,79,-0.15484617041761806],[124,-56,64,-0.10496905132281742],[124,-56,65,-0.10872226006827579],[124,-56,66,-0.11235910858285003],[124,-56,67,-0.11587811670413328],[124,-56,68,-0.11927796541794866],[124,-56,69,-0.12255750266752374],[124,-56,70,-0.1257157492279355],[124,-56,71,-0.1287519046457286],[124,-56,72,-0.13166535324372586],[124,-56,73,-0.13445567019093652],[124,-56,74,-0.13712262763781402],[124,-56,75,-0.1396662009165217],[124,-56,76,-0.14208657480647502],[124,-56,77,-0.14438414986503023],[124,-56,78,-0.14655954882337552],[124,-56,79,-0.14861362304759296],[124,-55,64,-0.09886822421681607],[124,-55,65,-0.1026034226671314],[124,-55,66,-0.10622303379454501],[124,-55,67,-0.10972557404294603],[124,-55,68,-0.11310972025704902],[124,-55,69,-0.11637431548021526],[124,-55,70,-0.11951837481755312],[124,-55,71,-0.12254109136420743],[124,-55,72,-0.12544184219885024],[124,-55,73,-0.12822019444228605],[124,-55,74,-0.1308759113814153],[124,-55,75,-0.13340895865822033],[124,-55,76,-0.1358195105240403],[124,-55,77,-0.13810795615900517],[124,-55,78,-0.1402749060566839],[124,-55,79,-0.14232119847391655],[124,-54,64,-0.09272001713252076],[124,-54,65,-0.09643650857607922],[124,-54,66,-0.1000382108995519],[124,-54,67,-0.10352363706222578],[124,-54,68,-0.10689145965185853],[124,-54,69,-0.11014051667072833],[124,-54,70,-0.11326981738698061],[124,-54,71,-0.11627854825117223],[124,-54,72,-0.11916607887802999],[124,-54,73,-0.12193196809333773],[124,-54,74,-0.12457597004619136],[124,-54,75,-0.12709804038629025],[124,-54,76,-0.12949834250652925],[124,-54,77,-0.13177725385076455],[124,-54,78,-0.13393537228680052],[124,-54,79,-0.13597352254457884],[124,-53,64,-0.08652894995938287],[124,-53,65,-0.09022604879602147],[124,-53,66,-0.09380918156144336],[124,-53,67,-0.0972768576412848],[124,-53,68,-0.10062774525278018],[124,-53,69,-0.10386067721863879],[124,-53,70,-0.10697465680622664],[124,-53,71,-0.10996886363196157],[124,-53,72,-0.11284265963093143],[124,-53,73,-0.1155955950916554],[124,-53,74,-0.11822741475622267],[124,-53,75,-0.12073806398548281],[124,-53,76,-0.12312769498954657],[124,-53,77,-0.12539667312347136],[124,-53,78,-0.12754558324818366],[124,-53,79,-0.1295752361566127],[124,-52,64,-0.08029954707932885],[124,-52,65,-0.08397657922876978],[124,-52,66,-0.08754049273858944],[124,-52,67,-0.09098979333362212],[124,-52,68,-0.09432314474936376],[124,-52,69,-0.09753937449327565],[124,-52,70,-0.10063747967140257],[124,-52,71,-0.10361663288021772],[124,-52,72,-0.10647618816370319],[124,-52,73,-0.10921568703558138],[124,-52,74,-0.1118348645669407],[124,-52,75,-0.11433365553892105],[124,-52,76,-0.11671220066072285],[124,-52,77,-0.11897085285281328],[124,-52,78,-0.12111018359537884],[124,-52,79,-0.1231309893420034],[124,-51,64,-0.07403633147027278],[124,-51,65,-0.07769263476689237],[124,-51,66,-0.08123669076089335],[124,-51,67,-0.08466700143110317],[124,-51,68,-0.08798222592247684],[124,-51,69,-0.09118118629443217],[124,-51,70,-0.09426287333451622],[124,-51,71,-0.09722645243730454],[124,-51,72,-0.10007126954855028],[124,-51,73,-0.10279685717449727],[124,-51,74,-0.1054029404565946],[124,-51,75,-0.10788944331128603],[124,-51,76,-0.1102564946351342],[124,-51,77,-0.11250443457515036],[124,-51,78,-0.11463382086438623],[124,-51,79,-0.11664543522275972],[124,-50,64,-0.06774381868393442],[124,-50,65,-0.0713787432573848],[124,-50,66,-0.074902315279889],[124,-50,67,-0.07831303290105696],[124,-50,68,-0.08160955056897068],[124,-50,69,-0.0847906847651686],[124,-50,70,-0.08785541980497302],[124,-50,71,-0.09080291370306048],[124,-50,72,-0.09363250410429513],[124,-50,73,-0.09634371427973543],[124,-50,74,-0.0989362591880546],[124,-50,75,-0.10141005160204619],[124,-50,76,-0.10376520830047686],[124,-50,77,-0.10600205632515491],[124,-50,78,-0.1081211393032726],[124,-50,79,-0.11012322383499296],[124,-49,64,-0.06142651069778404],[124,-49,65,-0.06503941933898916],[124,-49,66,-0.06854189309202885],[124,-49,67,-0.07193242619612272],[124,-49,68,-0.07520966829867481],[124,-49,69,-0.07837243017653506],[124,-49,70,-0.08141968952260725],[124,-49,71,-0.08435059679771717],[124,-49,72,-0.08716448114774888],[124,-49,73,-0.08986085638596952],[124,-49,74,-0.0924394270407769],[124,-49,75,-0.09490009446854497],[124,-49,76,-0.09724296303182223],[124,-49,77,-0.09946834634276425],[124,-49,78,-0.10157677357184569],[124,-49,79,-0.10356899582182866],[124,-48,64,-0.055088889641447425],[124,-48,65,-0.058679158153496225],[124,-48,66,-0.06215993183549595],[124,-48,67,-0.06552970093717825],[124,-48,68,-0.06878711020404826],[124,-48,69,-0.0719309645845484],[124,-48,70,-0.07496023500258442],[124,-48,71,-0.07787406419531595],[124,-48,72,-0.08067177261623082],[124,-48,73,-0.08335286440341738],[124,-48,74,-0.08591703341326729],[124,-48,75,-0.0883641693192887],[124,-48,76,-0.09069436377628737],[124,-48,77,-0.09290791664978526],[124,-48,78,-0.09500534231073188],[124,-48,79,-0.09698737599548712],[124,-47,64,-0.048735411397405115],[124,-47,65,-0.05230242893086312],[124,-47,66,-0.055760913560367054],[124,-47,67,-0.05910935146918095],[124,-47,68,-0.0623463824023186],[124,-47,69,-0.06547080535925331],[124,-47,70,-0.06848158435199603],[124,-47,71,-0.07137785422845178],[124,-47,72,-0.07415892656106804],[124,-47,73,-0.07682429560069193],[124,-47,74,-0.07937364429586957],[124,-47,75,-0.0818068503772651],[124,-47,76,-0.08412399250745684],[124,-47,77,-0.08632535649598261],[124,-47,78,-0.0884114415796905],[124,-47,79,-0.09038296676836599],[124,-46,64,-0.04237049907582646],[124,-46,65,-0.0459136684479865],[124,-46,66,-0.04934928817197548],[124,-46,67,-0.05267584028976202],[124,-46,68,-0.05589195944995595],[124,-46,69,-0.05899643858571002],[124,-46,70,-0.061988234657999186],[124,-46,71,-0.06486647446418947],[124,-46,72,-0.06763046051190802],[124,-46,73,-0.07027967695813153],[124,-46,74,-0.07281379561372836],[124,-46,75,-0.07523268201312938],[124,-46,76,-0.07753640154938546],[124,-46,77,-0.07972522567448714],[124,-46,78,-0.0817996381649948],[124,-46,79,-0.0837603414529593],[124,-45,64,-0.03599853636385808],[124,-45,65,-0.0395172743614528],[124,-45,66,-0.042929466747789635],[124,-45,67,-0.04623359135089988],[124,-45,68,-0.049428277629797734],[124,-45,69,-0.05251231233722975],[124,-45,70,-0.055484645247812825],[124,-45,71,-0.058344394951470036],[124,-45,72,-0.06109085471217768],[124,-45,73,-0.06372349839194202],[124,-45,74,-0.06624198644023738],[124,-45,75,-0.0686461719485828],[124,-45,76,-0.07093610677051854],[124,-45,77,-0.07311204770684931],[124,-45,78,-0.07517446275621187],[124,-45,79,-0.07712403743094098],[124,-44,64,-0.02962386074921164],[124,-44,65,-0.03311759841410811],[124,-44,66,-0.03650581472765124],[124,-44,67,-0.03978698323350849],[124,-44,68,-0.04295972811066773],[124,-44,69,-0.04602282982069994],[124,-44,70,-0.04897523082041977],[124,-44,71,-0.05181604133985307],[124,-44,72,-0.05454454522552543],[124,-44,73,-0.05716020584899062],[124,-44,74,-0.05966267208082787],[124,-44,75,-0.062051784329791304],[124,-44,76,-0.0643275806473621],[124,-44,77,-0.06649030289758295],[124,-44,78,-0.06854040299222453],[124,-44,79,-0.07047854919125851],[124,-43,64,-0.02325075661788112],[124,-43,65,-0.02671893951528026],[124,-43,66,-0.030082644977205253],[124,-43,67,-0.03334034219477666],[124,-43,68,-0.036490649979323164],[124,-43,69,-0.03953234239383152],[124,-43,70,-0.04246435444980201],[124,-43,71,-0.04528578786942272],[124,-43,72,-0.047995916913072145],[124,-43,73,-0.05059419427207135],[124,-43,74,-0.053080257026914324],[124,-43,75,-0.0554539326706589],[124,-43,76,-0.05771524519773108],[124,-43,77,-0.05986442125802016],[124,-43,78,-0.06190189637631427],[124,-43,79,-0.06382832123705162],[124,-42,64,-0.01688344822632004],[124,-42,65,-0.020325536694982493],[124,-42,66,-0.02366421072485214],[124,-42,67,-0.026897935088588842],[124,-42,68,-0.030025323145059346],[124,-42,69,-0.03304514245465784],[124,-42,70,-0.035956320460042046],[124,-42,71,-0.03875795023219275],[124,-42,72,-0.04144929628181482],[124,-42,73,-0.044029800435993915],[124,-42,74,-0.04649908778034162],[124,-42,75,-0.04885697266630851],[124,-42,76,-0.05110346478392236],[124,-42,77,-0.05323877529982357],[124,-42,78,-0.05526332306064985],[124,-42,79,-0.057177740861749315],[124,-41,64,-0.010526092547910926],[124,-41,65,-0.013941561931928859],[124,-41,66,-0.017254698372053623],[124,-41,67,-0.020463962158857485],[124,-41,68,-0.023567961116801373],[124,-41,69,-0.026565456203118898],[124,-41,70,-0.029455367172121494],[124,-41,71,-0.03223677830483829],[124,-41,72,-0.03490894420400281],[124,-41,73,-0.037471295654308956],[124,-41,74,-0.03992344554815763],[124,-41,75,-0.042265194876585976],[124,-41,76,-0.04449653878562698],[124,-41,77,-0.04661767269797479],[124,-41,78,-0.04862899850001012],[124,-41,79,-0.050531130794159385],[124,-40,64,-0.004182771993573975],[124,-40,65,-0.007571112855213391],[124,-40,66,-0.010858220176837352],[124,-40,67,-0.014042549705611362],[124,-40,68,-0.017122703652532212],[124,-40,69,-0.0200974362745735],[124,-40,70,-0.022965659522262705],[124,-40,71,-0.025726448752600772],[124,-40,72,-0.028379048507337634],[124,-40,73,-0.030922878356522854],[124,-40,74,-0.03335753880755776],[124,-40,75,-0.03568281727943856],[124,-40,76,-0.03789869414243563],[124,-40,77,-0.04000534882308915],[124,-40,78,-0.0420031659745741],[124,-40,79,-0.043892741712403094],[124,-39,64,0.0021425129931752496],[124,-39,65,-0.0012182053199584209],[124,-39,66,-0.004478806810814917],[124,-39,67,-0.00763774262415895],[124,-39,68,-0.010693609281368643],[124,-39,69,-0.013645154245555569],[124,-39,70,-0.01649128155212498],[124,-39,71,-0.01923105750468257],[124,-39,72,-0.021863716436309022],[124,-39,73,-0.024388666536117265],[124,-39,74,-0.026805495741316965],[124,-39,75,-0.029113977694479543],[124,-39,76,-0.031314077766248505],[124,-39,77,-0.03340595914337219],[124,-39,78,-0.03538998898211354],[124,-39,79,-0.037266744627009074],[124,-38,64,0.008445851466864829],[124,-38,65,0.005113234143214407],[124,-38,66,0.0018796002104367604],[124,-38,67,-0.001253496817170574],[124,-38,68,-0.004284647698135191],[124,-38,69,-0.00721259301162569],[124,-38,70,-0.010036228770710753],[124,-38,71,-0.012754612100976948],[124,-38,72,-0.015366966984519115],[124,-38,73,-0.017872690069222763],[124,-38,74,-0.02027135654356016],[124,-38,75,-0.02256272607659693],[124,-38,76,-0.02474674882344763],[124,-38,77,-0.02682357149606729],[124,-38,78,-0.028793543499421315],[124,-38,79,-0.030657223133017553],[124,-37,64,0.014723429636577468],[124,-37,65,0.011419376005058934],[124,-37,66,0.008213156223803808],[124,-37,67,0.005106328520490089],[124,-37,68,0.002100307969735593],[124,-37,69,-8.036390371390922E-4],[124,-37,70,-0.0036044003878015207],[124,-37,71,-0.006301023909963788],[124,-37,72,-0.008892723097816857],[124,-37,73,-0.011378882903766985],[124,-37,74,-0.013759065595692732],[124,-37,75,-0.016033016679417034],[124,-37,76,-0.018200670886641124],[124,-37,77,-0.02026215822821631],[124,-37,78,-0.022217810112805547],[124,-37,79,-0.024068165530913288],[124,-36,64,0.020971538647984733],[124,-36,65,0.017696495540584167],[124,-36,66,0.01451812124152596],[124,-36,67,0.011437978743835897],[124,-36,68,0.008457489022630438],[124,-36,69,0.005577925522714411],[124,-36,70,0.002800408580721281],[124,-36,71,1.2589978188137785E-4],[124,-36,72,-0.002444803748597568],[124,-36,73,-0.00491107511945843],[124,-36,74,-0.007272463512846383],[124,-36,75,-0.009528700088990427],[124,-36,76,-0.011679703956346543],[124,-36,77,-0.013725588207090578],[124,-36,78,-0.015666666018006592],[124,-36,79,-0.017503456816748697],[124,-35,64,0.027186582491191547],[124,-35,65,0.023940980758223374],[124,-35,66,0.020790867900835064],[124,-35,67,0.017737811727019825],[124,-35,68,0.01478323917679547],[124,-35,69,0.011928430827889747],[124,-35,70,0.009174515335963807],[124,-35,71,0.006522463809454759],[124,-35,72,0.003973084119025527],[124,-35,73,0.0015270151416971744],[124,-35,74,-8.15279060547236E-4],[124,-35,75,-0.003053515127396489],[124,-35,76,-0.00518759635231425],[124,-35,77,-0.0072176186999971526],[124,-35,78,-0.009143876889236346],[124,-35,79,-0.01096687054115908],[124,-34,64,0.03336508603418409],[124,-34,65,0.030149340455081886],[124,-34,66,0.02702788954013613],[124,-34,67,0.02400230595957853],[124,-34,68,0.021074022679781645],[124,-34,69,0.018244327487277],[124,-34,70,0.015514357447300675],[124,-34,71,0.01288509329695442],[124,-34,72,0.010357353772964983],[124,-34,73,0.007931789874122575],[124,-34,74,0.005608879058179861],[124,-34,75,0.0033889193735116008],[124,-34,76,0.001272023525294208],[124,-34,77,-7.418871236739566E-4],[124,-34,78,-0.0026530886175623047],[124,-34,79,-0.004462060537485657],[124,-33,64,0.03950370318215224],[124,-33,65,0.03631821239853994],[124,-33,66,0.03322580840200129],[124,-33,67,0.030228068769932115],[124,-33,68,0.027326432553570812],[124,-33,69,0.024522194820576604],[124,-33,70,0.021816501132132404],[124,-33,71,0.019210341954654875],[124,-33,72,0.016704547006098136],[124,-33,73,0.01429977953692807],[124,-33,74,0.011996530545553719],[124,-33,75,0.009795112928509653],[124,-33,76,0.0076956555651556124],[124,-33,77,0.005698097337007657],[124,-33,78,0.003802181081653755],[124,-33,79,0.0020074474812769028],[124,-32,64,0.045599225162362145],[124,-32,65,0.04244437163388559],[124,-32,66,0.03938138396265212],[124,-32,67,0.036411844675815264],[124,-32,68,0.03353719896505325],[124,-32,69,0.030758749247931205],[124,-32,70,0.02807764966378301],[124,-32,71,0.025494900504192786],[124,-32,72,0.023011342578066474],[124,-32,73,0.020627651511364142],[124,-32,74,0.018344331981288264],[124,-32,75,0.01616171188521298],[124,-32,76,0.014079936444125751],[124,-32,77,0.012098962240696065],[124,-32,78,0.01021855119192061],[124,-32,79,0.008438264456370526],[124,-31,64,0.05164858893473501],[124,-31,65,0.048524738918127586],[124,-31,66,0.045491521388084655],[124,-31,67,0.04255052386178926],[124,-31,68,0.03970319772401143],[124,-31,69,0.036950852807468904],[124,-31,70,0.034294651907697316],[124,-31,71,0.031735605232519504],[124,-31,72,0.02927456478609447],[124,-31,73,0.026912218687625056],[124,-31,74,0.024649085424513495],[124,-31,75,0.022485508040253066],[124,-31,76,0.02042164825682724],[124,-31,77,0.018457480531727688],[124,-31,78,0.016592786049546282],[124,-31,79,0.014827146648159872],[124,-30,64,0.05764888572828519],[124,-30,65,0.05455638928015161],[124,-30,66,0.05155328011699711],[124,-30,67,0.04864115078400033],[124,-30,68,0.04582145890877409],[124,-30,69,0.0430955218009208],[124,-30,70,0.040464510986100155],[124,-30,71,0.03792944667468423],[124,-30,72,0.035491192164991414],[124,-30,73,0.03315044818117063],[124,-30,74,0.03090774714552902],[124,-30,75,0.028763447385590446],[124,-30,76,0.02671772727565569],[124,-30,77,0.02477057931297655],[124,-30,78,0.022921804128496648],[124,-30,79,0.02117100443218367],[124,-29,64,0.06359736970310459],[124,-29,65,0.060536560706896614],[124,-29,66,0.057563882570195624],[124,-29,67,0.05468093290185971],[124,-29,68,0.05188917561921169],[124,-29,69,0.049189935566987475],[124,-29,70,0.04658439307078843],[124,-29,71,0.04407357842512105],[124,-29,72,0.04165836631600628],[124,-29,73,0.039339470178234026],[124,-29,74,0.03711743648706034],[124,-29,75,0.03499263898462468],[124,-29,76,0.032965272840866366],[124,-29,77,0.031035348749050007],[124,-29,78,0.029202686955852264],[124,-29,79,0.027466911226033508],[124,-28,64,0.06949146673805773],[124,-28,65,0.06646266295572345],[124,-28,66,0.06352072298665501],[124,-28,67,0.060667249536814016],[124,-28,68,0.057903712857249934],[124,-28,69,0.055231445382624034],[124,-28,70,0.05265163630423275],[124,-28,71,0.05016532607761226],[124,-28,72,0.04777340086470916],[124,-28,73,0.045476586910690786],[124,-28,74,0.04327544485519286],[124,-28,75,0.04117036397828311],[124,-28,76,0.03916155638091956],[124,-28,77,0.037249051100010866],[124,-28,78,0.0354326881580358],[124,-28,79,0.033712112547239714],[124,-27,64,0.0753287833443308],[124,-27,65,0.07233228649311396],[124,-27,66,0.0694213763863688],[124,-27,67,0.06659766085835273],[124,-27,68,0.06386261653503988],[124,-27,69,0.06121758349239215],[124,-27,70,0.058663759849129526],[124,-27,71,0.05620219629407264],[124,-27,72,0.053833790548049265],[124,-27,73,0.051559281760435116],[124,-27,74,0.04937924484012779],[124,-27,75,0.047294084721231755],[124,-27,76,0.04530403056323218],[124,-27,77,0.04340912988576895],[124,-27,78,0.04160924263796151],[124,-27,79,0.039904035202310895],[124,-26,64,0.08110711570453333],[124,-26,65,0.0781432115594024],[124,-26,66,0.07526360765969098],[124,-26,67,0.07246991699694638],[124,-26,68,0.0697636226104833],[124,-26,69,0.06714607226556857],[124,-26,70,0.06461847306609825],[124,-26,71,0.062181886001846376],[124,-26,72,0.05983722043027162],[124,-26,73,0.057585228492952334],[124,-26,74,0.055426499466453394],[124,-26,75,0.053361454047897605],[124,-26,76,0.051390338575022065],[124,-26,77,0.04951321918083018],[124,-26,78,0.047729975882791376],[124,-26,79,0.046040296606611686],[124,-25,64,0.08682445883750656],[124,-25,65,0.08389341735969114],[124,-25,66,0.0810453807833218],[124,-25,67,0.07828196728406878],[124,-25,68,0.07560466635026708],[124,-25,69,0.07301483348116744],[124,-25,70,0.07051368481967846],[124,-25,71,0.06810229171967463],[124,-25,72,0.06578157524785821],[124,-25,73,0.06355230062024575],[124,-25,74,0.06141507157308346],[124,-25,75,0.05937032466845937],[124,-25,76,0.05741832353440168],[124,-25,77,0.055559153039563824],[124,-25,78,0.05379271340245595],[124,-25,79,0.05211871423524095],[124,-24,64,0.092479015888985],[124,-24,65,0.0895810913810986],[124,-24,66,0.0867648681630877],[124,-24,67,0.08403196961945847],[124,-24,68,0.08138389172055616],[124,-24,69,0.07882199774102949],[124,-24,70,0.07634751291278186],[124,-24,71,0.07396151901248493],[124,-24,72,0.07166494888364217],[124,-24,73,0.06945858089327317],[124,-24,74,0.06734303332302272],[124,-24,75,0.06531875869496406],[124,-24,76,0.06338603803188236],[124,-24,77,0.06154497505214207],[124,-24,78,0.0597954902990977],[124,-24,79,0.05813731520506482],[124,-23,64,0.09806920754781312],[124,-23,65,0.09520463883604025],[124,-23,66,0.09242046010321259],[124,-23,67,0.08971829996530944],[124,-23,68,0.08709966090504284],[124,-23,69,0.08456591401066949],[124,-23,70,0.08211829364928769],[124,-23,71,0.07975789207469419],[124,-23,72,0.0774856539697859],[124,-23,73,0.07530237092357794],[124,-23,74,0.07320867584264557],[124,-23,75,0.0712050372972548],[124,-23,76,0.06929175380196873],[124,-23,77,0.06746894803083736],[124,-23,78,0.06573656096712388],[124,-23,79,0.0640943459875889],[124,-22,64,0.10359368158786786],[124,-22,65,0.1007626922316941],[124,-22,66,0.09801077440223294],[124,-22,67,0.09533956196755022],[124,-22,68,0.09275056395050496],[124,-22,69,0.09024515928803734],[124,-22,70,0.08782459152494015],[124,-22,71,0.08548996344218296],[124,-22,72,0.0832422316197815],[124,-22,73,0.0810822009342782],[124,-22,74,0.07901051899064493],[124,-22,75,0.07702767048886738],[124,-22,76,0.07513397152500678],[124,-22,77,0.07332956382683775],[124,-22,78,0.07161440892402082],[124,-22,79,0.06998828225283049],[124,-21,64,0.10905132253583616],[124,-21,65,0.10625412106580068],[124,-21,66,0.10353466607570982],[124,-21,67,0.10089459670435863],[124,-21,68,0.09833542854002397],[124,-21,69,0.09585854840034846],[124,-21,70,0.09346520904670119],[124,-21,71,0.09115652383309214],[124,-21,72,0.08893346128962587],[124,-21,73,0.08679683964056428],[124,-21,74,0.08474732125680728],[124,-21,75,0.08278540704305482],[124,-21,76,0.08091143075944007],[124,-21,77,0.07912555327773652],[124,-21,78,0.0774277567720979],[124,-21,79,0.07581783884434878],[124,-20,64,0.11444126146454148],[124,-20,65,0.11167804164848705],[124,-20,66,0.10899123720542303],[124,-20,67,0.1063824925616027],[124,-20,68,0.10385332989355356],[124,-20,69,0.10140514392866273],[124,-20,70,0.09903919668023942],[124,-20,71,0.09675661211712738],[124,-20,72,0.09455837076785423],[124,-20,73,0.09244530425938491],[124,-20,74,0.09041808979029442],[124,-20,75,0.08847724453861483],[124,-20,76,0.08662312000415151],[124,-20,77,0.08485589628537271],[124,-20,78,0.08317557629082617],[124,-20,79,0.0815819798851053],[124,-19,64,0.1197628859119848],[124,-19,65,0.11703382705028931],[124,-19,66,0.11437984691522274],[124,-19,67,0.11180259523537928],[124,-19,68,0.1093036007960062],[124,-19,69,0.10688426626039249],[124,-19,70,0.10454586292573387],[124,-19,71,0.10228952541354464],[124,-19,72,0.10011624629460403],[124,-19,73,0.09802687064850246],[124,-19,74,0.09602209055760791],[124,-19,75,0.09410243953569886],[124,-19,76,0.09226828689106936],[124,-19,77,0.09051983202420066],[124,-19,78,0.08885709865995806],[124,-19,79,0.08727992901433679],[124,-18,64,0.12501584992623294],[124,-18,65,0.12232111717649574],[124,-18,66,0.11970012147366449],[124,-18,67,0.11715451786177766],[124,-18,68,0.11468584175299057],[124,-18,69,0.11229550376986308],[124,-18,70,0.10998478452211868],[124,-18,71,0.10775482931794811],[124,-18,72,0.10560664280984577],[124,-18,73,0.10354108357504499],[124,-18,74,0.10155885863036607],[124,-18,75,0.09966051788173569],[124,-18,76,0.09784644850816948],[124,-18,77,0.09611686928032137],[124,-18,78,0.09447182481355765],[124,-18,79,0.09291117975557361],[124,-17,64,0.13020008423585794],[124,-17,65,0.12753982896752103],[124,-17,66,0.1249519645231345],[124,-17,67,0.12243815127357449],[124,-17,68,0.11999993127390285],[124,-17,69,0.11763872312663415],[124,-17,70,0.11535581677947382],[124,-17,71,0.11315236825760033],[124,-17,72,0.1110293943304762],[124,-17,73,0.10898776711325342],[124,-17,74,0.10702820860259654],[124,-17,75,0.1051512851471662],[124,-17,76,0.10335740185256947],[124,-17,77,0.10164679692087286],[124,-17,78,0.10001953592463753],[124,-17,79,0.0984755060154956],[124,-16,64,0.1353158065461033],[124,-16,65,0.13269016672548817],[124,-16,66,0.13013556743563903],[124,-16,67,0.1276536743840364],[124,-16,68,0.12524603628254805],[124,-16,69,0.12291407973175272],[124,-16,70,0.12065910403973568],[124,-16,71,0.11848227597542427],[124,-16,72,0.11638462445645026],[124,-16,73,0.11436703517160651],[124,-16,74,0.11243024513771704],[124,-16,75,0.11057483719116679],[124,-16,76,0.10880123441389633],[124,-16,77,0.10710969449395613],[124,-16,78,0.10550030402058197],[124,-16,79,0.10397297271380912],[124,-15,64,0.14036353196086626],[124,-15,65,0.13777263256710082],[124,-15,66,0.13525141979534994],[124,-15,67,0.13280156469791804],[124,-15,68,0.13042462265538035],[124,-15,69,0.12812202828203523],[124,-15,70,0.12589509026582357],[124,-15,71,0.12374498614278684],[124,-15,72,0.12167275700605362],[124,-15,73,0.11967930214941269],[124,-15,74,0.11776537364530315],[124,-15,75,0.11593157085745986],[124,-15,76,0.1141783348880212],[124,-15,77,0.11250594295919691],[124,-15,78,0.11091450272945391],[124,-15,79,0.10940394654423868],[124,-14,64,0.14534408353027184],[124,-14,65,0.14278803700258913],[124,-14,66,0.14030032000767978],[124,-14,67,0.13788260894943127],[124,-14,68,0.1355364658871393],[124,-14,69,0.13326333346214614],[124,-14,70,0.13106452975894756],[124,-14,71,0.12894124310083688],[124,-14,72,0.12689452678007362],[124,-14,73,0.12492529372263939],[124,-14,74,0.12303431108740914],[124,-14,75,0.12122219479997365],[124,-14,76,0.11948940402092567],[124,-14,77,0.11783623554870282],[124,-14,78,0.11626281815694706],[124,-14,79,0.11476910686639963],[124,-13,64,0.1502586029239379],[124,-13,65,0.14773750964082388],[124,-13,66,0.14528338603498503],[124,-13,67,0.14289791386728645],[124,-13,68,0.14058266188397817],[124,-13,69,0.1383390807645749],[124,-13,70,0.13616849800420505],[124,-13,71,0.13407211273049535],[124,-13,72,0.13205099045497726],[124,-13,73,0.13010605775908068],[124,-13,74,0.12823809691454136],[124,-13,75,0.1264477404384563],[124,-13,76,0.12473546558280524],[124,-13,77,0.12310158875852273],[124,-13,78,0.12154625989408852],[124,-13,79,0.12006945672865188],[124,-12,64,0.15510856123008188],[124,-12,65,0.15262251002075033],[124,-12,66,0.15020206625905108],[124,-12,67,0.14784891706695436],[124,-12,68,0.14556463788423923],[124,-12,69,0.1433506874376662],[124,-12,70,0.1412084026446151],[124,-12,71,0.13913899345125758],[124,-12,72,0.1371435376052521],[124,-12,73,0.13522297536302152],[124,-12,74,0.13337810413144602],[124,-12,75,0.13160957304420273],[124,-12,76,0.1299178774725671],[124,-12,77,0.1283033534707667],[124,-12,78,0.12676617215585229],[124,-12,79,0.1253063340220979],[124,-11,64,0.15989576988018783],[124,-11,65,0.15744483856885994],[124,-11,66,0.15505815047007543],[124,-11,67,0.1527373980698684],[124,-11,68,0.1504841635065911],[124,-11,69,0.14829991356141559],[124,-11,70,0.1461859945833045],[124,-11,71,0.14414362734851338],[124,-11,72,0.14217390185461476],[124,-11,73,0.14027777204910308],[124,-11,74,0.1384560504924156],[124,-11,75,0.13670940295559697],[124,-11,76,0.135038342952425],[124,-11,77,0.1334432262060894],[124,-11,78,0.13192424505038303],[124,-11,79,0.13048142276542551],[124,-10,64,0.16462239169945825],[124,-10,65,0.1622066476829298],[124,-10,66,0.15985378098237402],[124,-10,67,0.15756548944979365],[124,-10,68,0.15534336192575582],[124,-10,69,0.1531888732512604],[124,-10,70,0.15110337921407868],[124,-10,71,0.14908811142962097],[124,-10,72,0.1471441721563257],[124,-10,73,0.14527252904562915],[124,-10,74,0.14347400982634861],[124,-10,75,0.14174929692370963],[124,-10,76,0.14009892201283336],[124,-10,77,0.13852326050677466],[124,-10,78,0.13702252597907327],[124,-10,79,0.1355967645208357],[124,-9,64,0.1692909520828999],[124,-9,65,0.16691045294186757],[124,-9,66,0.16459146387665846],[124,-9,67,0.1623356881062048],[124,-9,68,0.16014472117566847],[124,-9,69,0.15802004598970842],[124,-9,70,0.15596302778021442],[124,-9,71,0.1539749090085717],[124,-9,72,0.15205680420244572],[124,-9,73,0.1502096947271454],[124,-9,74,0.14843442349140157],[124,-9,75,0.14673168958778582],[124,-9,76,0.14510204286759076],[124,-9,77,0.1435458784502589],[124,-9,78,0.142063431167325],[124,-9,79,0.14065476994088744],[124,-8,64,0.1739043502972335],[124,-8,65,0.17155914444186537],[124,-8,66,0.16927408036907943],[124,-8,67,0.1670508666648738],[124,-8,68,0.16489110558027087],[124,-8,69,0.16279628808600533],[124,-8,70,0.1607677888616802],[124,-8,71,0.15880686121945298],[124,-8,72,0.1569146319622413],[124,-8,73,0.1550920961765041],[124,-8,74,0.15334011195944175],[124,-8,75,0.1516593950808316],[124,-8,76,0.1500505135793263],[124,-8,77,0.14851388229330076],[124,-8,78,0.14704975732620995],[124,-8,79,0.14565823044647597],[124,-7,64,0.17846587090840005],[124,-7,65,0.17615599825862394],[124,-7,66,0.17390489830680023],[124,-7,67,0.17171428500543073],[124,-7,68,0.16958576731169916],[124,-7,69,0.1675208442636008],[124,-7,70,0.1655208999905412],[124,-7,71,0.16358719865846327],[124,-7,72,0.1617208793494933],[124,-7,73,0.15992295087616337],[124,-7,74,0.1581942865300502],[124,-7,75,0.15653561876505084],[124,-7,76,0.15494753381511872],[124,-7,77,0.1534304662465491],[124,-7,78,0.1519846934447736],[124,-7,79,0.15061033003568636],[124,-6,64,0.18297919533476736],[124,-6,65,0.180704688035758],[124,-6,66,0.17848758379021257],[124,-6,67,0.17632960191600466],[124,-6,68,0.17423235807597615],[124,-6,69,0.17219735937552505],[124,-6,70,0.17022599939466143],[124,-6,71,0.1683195531545918],[124,-6,72,0.16647917201882256],[124,-6,73,0.1647058785288369],[124,-6,74,0.16300056117419215],[124,-6,75,0.1613639690972486],[124,-6,76,0.1597967067323619],[124,-6,77,0.15829922837962207],[124,-6,78,0.1568718327131039],[124,-6,79,0.15551465722364421],[124,-5,64,0.1874484135261626],[124,-5,65,0.18520929669950548],[124,-5,66,0.18302621292191557],[124,-5,67,0.18090088687507222],[124,-5,68,0.17883494092633534],[124,-5,69,0.1768298902478015],[124,-5,70,0.17488713786982957],[124,-5,71,0.17300796966909493],[124,-5,72,0.17119354929116126],[124,-5,73,0.16944491300762554],[124,-5,74,0.16776296450768424],[124,-5,75,0.1661484696243296],[124,-5,76,0.16460205099500957],[124,-5,77,0.16312418265683393],[124,-5,78,0.16171518457629153],[124,-5,79,0.16037521711349378],[124,-4,64,0.19187803576848195],[124,-4,65,0.1896743282994925],[124,-4,66,0.1875252836822099],[124,-4,67,0.1854326319602625],[124,-4,68,0.18339800220392266],[124,-4,69,0.1814229176506419],[124,-4,70,0.179508790780054],[124,-4,71,0.17765691832350716],[124,-4,72,0.1758684762081123],[124,-4,73,0.17414451443536716],[124,-4,74,0.17248595189419758],[124,-4,75,0.17089357110863201],[124,-4,76,0.16936801291993686],[124,-4,77,0.16790977110329963],[124,-4,78,0.16651918691902134],[124,-4,79,0.16519644359823682],[124,-3,64,0.19627300461402108],[124,-3,65,0.194104719975696],[124,-3,66,0.19198972793125102],[124,-3,67,0.18992976388426008],[124,-3,68,0.1879264636060206],[124,-3,69,0.18598135839756968],[124,-3,70,0.18409587018617235],[124,-3,71,0.1822713065563355],[124,-3,72,0.18050885571534225],[124,-3,73,0.17880958139335534],[124,-3,74,0.17717441767794506],[124,-3,75,0.17560416378324395],[124,-3,76,0.17409947875356635],[124,-3,77,0.17266087610157232],[124,-3,78,0.17128871838094362],[124,-3,79,0.169983211693586],[124,-2,64,0.20063870693761265],[124,-2,65,0.1985058540516953],[124,-2,66,0.1964249235379495],[124,-2,67,0.19439765615790094],[124,-2,68,0.1924256943818885],[124,-2,69,0.19051057757256384],[124,-2,70,0.18865373710286804],[124,-2,71,0.18685649140853378],[124,-2,72,0.18512004097510404],[124,-2,73,0.18344546325952227],[124,-2,74,0.18183370754614903],[124,-2,75,0.18028558973740083],[124,-2,76,0.17880178707885652],[124,-2,77,0.17738283281890854],[124,-2,78,0.17602911080292316],[124,-2,79,0.17474085000192918],[124,-1,64,0.20498098611836013],[124,-1,65,0.2028835702539944],[124,-1,66,0.2008367066354031],[124,-1,67,0.1988421413802387],[124,-1,68,0.19690152365599523],[124,-1,69,0.19501640088499983],[124,-1,70,0.19318821388387442],[124,-1,71,0.19141829193752846],[124,-1,72,0.18970784780766448],[124,-1,73,0.188057972675858],[124,-1,74,0.1864696310210615],[124,-1,75,0.1849436554317314],[124,-1,76,0.18348074135242376],[124,-1,77,0.18208144176493113],[124,-1,78,0.18074616180393266],[124,-1,79,0.17947515330717134],[124,0,64,0.2093061543470741],[124,0,65,0.20724417805752782],[124,0,66,0.20523138400297325],[124,0,67,0.20326952365569484],[124,0,68,0.20136025287876191],[124,0,69,0.199505127152506],[124,0,70,0.1977055967354754],[124,0,71,0.19596300175991166],[124,0,72,0.19427856726174964],[124,0,73,0.19265339814518212],[124,0,74,0.19108847408165308],[124,0,75,0.18958464434347522],[124,0,76,0.1881426225719125],[124,0,77,0.18676298147980586],[124,0,78,0.1854461474887137],[124,0,79,0.18419239530057474],[124,1,64,0.2136210050595262],[124,1,65,0.21159446915746194],[124,1,66,0.20961574557511486],[124,1,67,0.20768659113841104],[124,1,68,0.20580866840492495],[124,1,69,0.20398354091184656],[124,1,70,0.20221266835842244],[124,1,71,0.20049740172292285],[124,1,72,0.19883897831412956],[124,1,73,0.1972385167573879],[124,1,74,0.19569701191509137],[124,1,75,0.19421532974178513],[124,1,76,0.19279420207373832],[124,1,77,0.19143422135305865],[124,1,78,0.19013583528632094],[124,1,79,0.18889934143771903],[124,2,64,0.21793240612990017],[124,2,65,0.2159413114965255],[124,2,66,0.21399665932964895],[124,2,67,0.21210021180791594],[124,2,68,0.21025363818244036],[124,2,69,0.2084585100462597],[124,2,70,0.20671629653826584],[124,2,71,0.20502835948166154],[124,2,72,0.2033959484569361],[124,2,73,0.20182019580940802],[124,2,74,0.20030211159119782],[124,2,75,0.19884257843782138],[124,2,76,0.19744234637925107],[124,2,77,0.19610202758551942],[124,2,78,0.19482209104683657],[124,2,79,0.19360285718823267],[124,3,64,0.22224131366890487],[124,3,65,0.22028567382549835],[124,3,66,0.21837510702310603],[124,3,67,0.2165113807831981],[124,3,68,0.2146961710403159],[124,3,69,0.21293105743302487],[124,3,70,0.21121751852934534],[124,3,71,0.20955692698670947],[124,3,72,0.20795054464643592],[124,3,73,0.20639951756277386],[124,3,74,0.20490487096637655],[124,3,75,0.20346750416239523],[124,3,76,0.20208818536304118],[124,3,77,0.20076754645469297],[124,3,78,0.19950607769951378],[124,3,79,0.1983041223715969],[124,4,64,0.22654389213376092],[124,4,65,0.2246237414237805],[124,4,66,0.22274729546238115],[124,4,67,0.2209163270881317],[124,4,68,0.21913251889268592],[124,4,69,0.21739745853325998],[124,4,70,0.21571263397958895],[124,4,71,0.21407942869541152],[124,4,72,0.21249911675447442],[124,4,73,0.21097285789110298],[124,4,74,0.20950169248520822],[124,4,75,0.20808653648190967],[124,4,76,0.206728176245632],[124,4,77,0.20542726334874406],[124,4,78,0.20418430929471154],[124,4,79,0.2029996801757772],[124,5,64,0.23083617907680154],[124,5,65,0.22895157123752197],[124,5,66,0.22710930171950783],[124,5,67,0.2253111486370153],[124,5,68,0.22355880119640537],[124,5,69,0.22185385503018884],[124,5,70,0.2201978074655514],[124,5,71,0.21859205272740811],[124,5,72,0.2170378770759811],[124,5,73,0.21553645387894538],[124,5,74,0.21408883861801276],[124,5,75,0.21269596383013478],[124,5,76,0.21135863398317967],[124,5,77,0.21007752028615534],[124,5,78,0.20885315543394867],[124,5,79,0.2076859282865935],[124,6,64,0.23511421481057876],[124,6,65,0.23326522134081118],[124,6,66,0.23145720237910183],[124,6,67,0.2296919412586278],[124,6,68,0.2279711337422714],[124,6,69,0.22629638337828417],[124,6,70,0.22466919679043706],[124,6,71,0.2230909789027048],[124,6,72,0.22156302809847517],[124,6,73,0.2200865313143303],[124,6,74,0.21866255906827203],[124,6,75,0.21729206042256688],[124,6,76,0.21597585788107143],[124,6,77,0.21471464222110592],[124,6,78,0.21350896725984803],[124,6,79,0.2123592445552599],[124,7,64,0.23937404572840498],[124,7,65,0.2375607543014947],[124,7,66,0.2357870769481799],[124,7,67,0.2340548021487754],[124,7,68,0.2323656321490245],[124,7,69,0.23072117833745043],[124,7,70,0.22912295655720216],[124,7,71,0.22757238235243793],[124,7,72,0.22607076614924126],[124,7,73,0.22461930837111332],[124,7,74,0.2232190944889163],[124,7,75,0.2218710900054407],[124,7,76,0.22057613537445997],[124,7,77,0.21933494085433847],[124,7,78,0.21814808129616503],[124,7,79,0.2170159908664262],[124,8,64,0.24361172756860366],[124,8,65,0.24183424049022512],[124,8,66,0.2400950112087495],[124,8,67,0.23839583326516323],[124,8,68,0.23673841529924855],[124,8,69,0.235124376448704],[124,8,70,0.2335552416827661],[124,8,71,0.23203243707037657],[124,8,72,0.23055728498289196],[124,8,73,0.22913099923137548],[124,8,74,0.2277546801383491],[124,8,75,0.22642930954417817],[124,8,76,0.22515574574794983],[124,8,77,0.22393471838291368],[124,8,78,0.22276682322645724],[124,8,79,0.22165251694462684],[124,9,64,0.24782332862257817],[124,9,65,0.24608176133284926],[124,9,66,0.24437710051327782],[124,9,67,0.24271114466470695],[124,9,68,0.241085608717289],[124,9,69,0.2395021194514635],[124,9,70,0.23796221085344682],[124,9,71,0.23646731940528165],[124,9,72,0.23501877930943538],[124,9,73,0.2336178176479935],[124,9,74,0.23226554947632605],[124,9,75,0.230962972851393],[124,9,76,0.22971096379455813],[124,9,77,0.22851027118897382],[124,9,78,0.22736151161151263],[124,9,79,0.2262651640992538],[124,10,64,0.2520049328868071],[124,10,65,0.2502994125062471],[124,10,66,0.24862945302315104],[124,10,67,0.24699685778339409],[124,10,68,0.24540334788929746],[124,10,69,0.2438505576425622],[124,10,70,0.2423400299217331],[124,10,71,0.24087321149423235],[124,10,72,0.23945144826295894],[124,10,73,0.23807598044749534],[124,10,74,0.23674793769980218],[124,10,75,0.23546833415456525],[124,10,76,0.2342380634140644],[124,10,77,0.23305789346762928],[124,10,78,0.23192846154565194],[124,10,79,0.23085026890817417],[124,11,64,0.2561526431585506],[124,11,65,0.25448330707739925],[124,11,66,0.25284819288990307],[124,11,67,0.2512491086584719],[124,11,68,0.2496877815251784],[124,11,69,0.2481658531767601],[124,11,70,0.24668487524416605],[124,11,71,0.2452463046366929],[124,11,72,0.24385149881070334],[124,11,73,0.2425017109729687],[124,11,74,0.24119808521851738],[124,11,75,0.23994165160315406],[124,11,76,0.23873332115051626],[124,11,77,0.2375738807937351],[124,11,78,0.23646398825167403],[124,11,79,0.23540416683975374],[124,12,64,0.26026258407537506],[124,12,65,0.2586295785857965],[124,12,66,0.2570294633793265],[124,12,67,0.25546405109307463],[124,12,68,0.2539350747625542],[124,12,69,0.2524441833088651],[124,12,70,0.25099293696044567],[124,12,71,0.2495828026094355],[124,12,72,0.24821514910264036],[124,12,73,0.24689124246714156],[124,12,74,0.2456122410704369],[124,12,75,0.24437919071526737],[124,12,76,0.24319301966900697],[124,12,77,0.24205453362767693],[124,12,78,0.24096441061455665],[124,12,79,0.2399231958134057],[124,13,64,0.26433090509860324],[124,13,65,0.2627343840692967],[124,13,66,0.26116942993856923],[124,13,67,0.2596378597633995],[124,13,68,0.25814141231285376],[124,13,69,0.2566817435775758],[124,13,70,0.2552604222138716],[124,13,71,0.2538789249224287],[124,13,72,0.2525386317616649],[124,13,73,0.25124082139574544],[124,13,74,0.2499866662771581],[124,13,75,0.24877722776399813],[124,13,76,0.2476134511718433],[124,13,77,0.24649616076027692],[124,13,78,0.24542605465403367],[124,13,79,0.24440369969878284],[124,14,64,0.2683537834404636],[124,14,65,0.2667939070332017],[124,14,66,0.26526428320599404],[124,14,67,0.2637667332681979],[124,14,68,0.26230300154929387],[124,14,69,0.26087475093081225],[124,14,70,0.259483558312884],[124,14,71,0.2581309100154565],[124,14,72,0.2568181971141682],[124,14,73,0.255546710710922],[124,14,74,0.25431763713904487],[124,14,75,0.25313205310319],[124,14,76,0.25199092075385493],[124,14,77,0.25089508269658023],[124,14,78,0.24984525693580095],[124,14,79,0.24884203175336306],[124,15,64,0.2723274269351297],[124,15,65,0.2708043603627451],[124,15,66,0.26931024196398656],[124,15,67,0.26784689712077897],[124,15,68,0.2664160755369504],[124,15,69,0.26501944679272926],[124,15,70,0.263658595833901],[124,15,71,0.2623350183956653],[124,15,72,0.2610501163611863],[124,15,73,0.25980519305487426],[124,15,74,0.2586014484702917],[124,15,75,0.25743997443283245],[124,15,76,0.2563217496970541],[124,15,77,0.2552476349787248],[124,15,78,0.2542183679215566],[124,15,79,0.25323455799863814],[124,16,64,0.27624807685350794],[124,16,65,0.274761989178852],[124,16,66,0.27330355603457596],[124,16,67,0.2718746066833809],[124,16,68,0.27047689600477287],[124,16,69,0.2691121000722692],[124,16,70,0.267781811665308],[124,16,71,0.2664875357158943],[124,16,72,0.26523068468998007],[124,16,73,0.26401257390361593],[124,16,74,0.26283441677376645],[124,16,75,0.26169732000393675],[124,16,76,0.26060227870449465],[124,16,77,0.25955017144774356],[124,16,78,0.2585417552577239],[124,16,79,0.25757766053475345],[124,17,64,0.2801120106619591],[124,17,65,0.2786630736373522],[124,17,66,0.27724050911805],[124,17,67,0.27584615004409685],[124,17,68,0.27448175625973037],[124,17,69,0.2731490101134433],[124,17,70,0.27184951199279006],[124,17,71,0.27058477579397866],[124,17,72,0.2693562243262395],[124,17,73,0.26816518465100997],[124,17,74,0.2670128833558294],[124,17,75,0.26590044176308947],[124,17,76,0.2648288710735241],[124,17,77,0.2637990674444964],[124,17,78,0.2628118070030583],[124,17,79,0.26186774079379455],[124,18,64,0.28391554472473396],[124,18,65,0.2825039316714295],[124,18,66,0.2811174215743456],[124,18,67,0.2797578508361334],[124,18,68,0.27842698404286936],[124,18,69,0.27712650958711565],[124,18,70,0.2758580352257783],[124,18,71,0.2746230835728001],[124,18,72,0.2734230875266818],[124,18,73,0.27225938563286795],[124,18,74,0.2711332173808959],[124,18,75,0.2700457184364487],[124,18,76,0.26899791580819865],[124,18,77,0.26799072294949916],[124,18,78,0.2670249347948986],[124,18,79,0.2661012227314892],[124,19,64,0.2876550369502303],[124,19,65,0.2862809216774149],[124,19,66,0.2849306531473224],[124,19,67,0.28360607099951224],[124,19,68,0.2823089443273873],[124,19,69,0.2810409673244015],[124,19,70,0.27980375486512415],[124,19,71,0.27859883802119345],[124,19,72,0.27742765951215503],[124,19,73,0.27629156909122193],[124,19,74,0.2751918188658544],[124,19,75,0.2741295585532984],[124,19,76,0.27310583067097305],[124,19,77,0.2721215656617611],[124,19,78,0.27117757695417816],[124,19,79,0.27027455595743466],[124,20,64,0.29132688938116635],[124,20,65,0.2899904451440167],[124,20,66,0.28867660563201525],[124,20,67,0.28738721348530777],[124,20,68,0.2861240420588221],[124,20,69,0.2848887910917755],[124,20,70,0.2836830823120985],[124,20,71,0.2825084549758113],[124,20,72,0.2813663613413496],[124,20,73,0.28025816207887033],[124,20,74,0.2791851216144434],[124,20,75,0.2781484034092628],[124,20,76,0.27714906517376875],[124,20,77,0.2761880540167358],[124,20,78,0.2752662015293033],[124,20,79,0.2743842188039585],[124,21,64,0.294927550728473],[124,21,65,0.29362894922479055],[124,21,66,0.29235172548466587],[124,21,67,0.29109772490222263],[124,21,68,0.2898687248371565],[124,21,69,0.2886664303076891],[124,21,70,0.2874924696185096],[124,21,71,0.2863483899237385],[124,21,72,0.2852356527249072],[124,21,73,0.2841556293039872],[124,21,74,0.28310959609137604],[124,21,75,0.2820987299689678],[124,21,76,0.28112410350820655],[124,21,77,0.28018668014317233],[124,21,78,0.27928730927867956],[124,21,79,0.2784267213333959],[124,22,64,0.29845351884900817],[124,22,65,0.2971929292539556],[124,22,66,0.2959525063756385],[124,22,67,0.2947340981056065],[124,22,68,0.29353948554093956],[124,22,69,0.29237037870080007],[124,22,70,0.2912284121780502],[124,22,71,0.290115140725965],[124,22,72,0.28903203478003686],[124,22,73,0.2879804759149057],[124,22,74,0.2869617522363205],[124,22,75,0.2859770537082608],[124,22,76,0.2850274674151166],[124,22,77,0.2841139727589759],[124,22,78,0.2832374365919996],[124,22,79,0.28239860828389435],[124,23,64,0.3019013431671818],[124,23,65,0.30067893120563915],[124,23,66,0.2994754916853087],[124,23,67,0.2982928747290059],[124,23,68,0.2971328648935188],[124,23,69,0.2959971769099097],[124,23,70,0.2948874513589623],[124,23,71,0.29380525028180937],[124,23,72,0.29275205272573274],[124,23,73,0.29172925022516943],[124,23,74,0.29073814221783517],[124,23,75,0.2897799313960855],[124,23,76,0.2888557189934204],[124,23,77,0.28796650000617663],[124,23,78,0.287113158350392],[124,23,79,0.2862964619538459],[124,24,64,0.3052676270403045],[124,24,65,0.30408355409637056],[124,24,66,0.302917276942737],[124,24,67,0.3017706476580566],[124,24,68,0.30064545397119163],[124,24,69,0.2995434150254115],[124,24,70,0.29846617707782813],[124,24,71,0.2974153091340993],[124,24,72,0.29639229851839427],[124,24,73,0.29539854637865315],[124,24,74,0.2944353631270547],[124,24,75,0.2935039638158089],[124,24,76,0.29260546344818283],[124,24,77,0.2917408722248041],[124,24,78,0.2909110907252228],[124,24,79,0.29011690502474163],[124,25,64,0.30854903006776047],[124,25,65,0.3074034523309171],[124,25,66,0.3062745122072263],[124,25,67,0.3051640634468199],[124,25,68,0.30407389665337475],[124,25,69,0.3030057350723546],[124,25,70,0.3019612303145883],[124,25,71,0.30094195801520923],[124,25,72,0.29994941342795495],[124,25,73,0.29898500695485714],[124,25,74,0.298050059611234],[124,25,75,0.29714579842610656],[124,25,76,0.29627335177794173],[124,25,77,0.29543374466577055],[124,25,78,0.29462789391566047],[124,25,79,0.2938566033225533],[124,26,64,0.31174227034408214],[124,26,65,0.3106353379915461],[124,26,66,0.3095439043928471],[124,26,67,0.30846982467664397],[124,26,68,0.3074148920148783],[124,26,69,0.3063808334352074],[124,26,70,0.30536930556887404],[124,26,71,0.3043818903340438],[124,26,72,0.3034200905546057],[124,26,73,0.30248532551446383],[124,26,74,0.3015789264472397],[124,26,75,0.30070213196149786],[124,26,76,0.29985608340140335],[124,26,77,0.29904182014285785],[124,26,78,0.298260274825094],[124,26,79,0.2975122685177371],[124,27,64,0.31484412665575706],[124,27,65,0.3137759830705396],[124,27,66,0.3127222195357529],[124,27,67,0.31168469225737355],[124,27,68,0.310665196660105],[124,27,69,0.30966546322413885],[124,27,70,0.3086871532574692],[124,27,71,0.30773185460378333],[124,27,72,0.3068010772859267],[124,27,73,0.30589624908497],[124,27,74,0.30501871105479933],[124,27,75,0.3041697129723381],[124,27,76,0.30335040872331404],[124,27,77,0.3025618516236145],[124,27,78,0.30180498967621155],[124,27,79,0.30108066076366463],[124,28,64,0.31785144062185794],[124,28,65,0.3168222216460532],[124,28,66,0.31580628500437957],[124,28,67,0.3148054876710042],[124,28,68,0.31382162699926747],[124,28,69,0.3128564365829156],[124,28,70,0.3119115820530022],[124,28,71,0.31098865681048743],[124,28,72,0.31008917769452876],[124,28,73,0.3092145805864926],[124,28,74,0.3083662159496079],[124,28,75,0.3075453443043703],[124,28,76,0.3067531316396093],[124,28,77,0.305990644759263],[124,28,78,0.30525884656484054],[124,28,79,0.3045585912735825],[124,29,64,0.3207611187785681],[124,29,65,0.319770952001393],[124,29,66,0.3187929916526068],[124,29,67,0.3178290951578538],[124,29,68,0.31688106146670453],[124,29,69,0.3159506269384916],[124,29,70,0.3150394611639428],[124,29,71,0.31414916272263743],[124,29,72,0.313281254876282],[124,29,73,0.31243718119783026],[124,29,74,0.31161830113637634],[124,29,75,0.3108258855179196],[124,29,76,0.31006111198192315],[124,29,77,0.3093250603537035],[124,29,78,0.3086187079526366],[124,29,79,0.3079429248361867],[124,30,64,0.3235701346074459],[124,30,65,0.3226191386875528],[124,30,66,0.3216792959157149],[124,30,67,0.3207524638450912],[124,30,68,0.31984044268112716],[124,30,69,0.318944971192123],[124,30,70,0.31806772255573745],[124,30,71,0.3172103001414472],[124,30,72,0.3163742332289601],[124,30,73,0.31556097266260713],[124,30,74,0.314771886441643],[124,30,75,0.31400825524655146],[124,30,76,0.31327126790127885],[124,30,77,0.3125620167714341],[124,30,78,0.3118814930984379],[124,30,79,0.31123058226963074],[124,31,64,0.32627553050751196],[124,31,65,0.3253638145290949],[124,31,66,0.3244622218492279],[124,31,67,0.3235726098177072],[124,31,68,0.3226967795478849],[124,31,69,0.32183647185209785],[124,31,70,0.3209933631131732],[124,31,71,0.32016906109203286],[124,31,72,0.3193651006713938],[124,31,73,0.31858293953558986],[124,31,74,0.3178239537864441],[124,31,75,0.3170894334952895],[124,31,76,0.31638057819105836],[124,31,77,0.31569849228448194],[124,31,78,0.3150441804283821],[124,31,79,0.31441854281406295],[124,32,64,0.32887441971122594],[124,32,65,0.32800208257344243],[124,32,66,0.32713886311070894],[124,32,67,0.32628661813199716],[124,32,68,0.32544714930332275],[124,32,69,0.32462219910815243],[124,32,70,0.3238134467440405],[124,32,71,0.32302250395551374],[124,32,72,0.3222509108032048],[124,32,73,0.32150013136925415],[124,32,74,0.3207715493989178],[124,32,75,0.3200664638784692],[124,32,76,0.3193860845493239],[124,32,77,0.318731527358424],[124,32,78,0.3181038098448646],[124,32,79,0.3175038464627712],[124,33,64,0.33136398814420737],[124,33,65,0.3305311179834384],[124,33,66,0.32970638488435977],[124,33,67,0.3288916447714072],[124,33,68,0.32808869950107566],[124,33,69,0.3272992928474191],[124,33,70,0.3265251064239406],[124,33,71,0.32576775554188886],[124,33,72,0.3250287850049623],[124,33,73,0.32430966484043994],[124,33,74,0.32361178596667867],[124,33,75,0.3229364557970615],[124,33,76,0.3222848937803295],[124,33,77,0.32165822687733037],[124,33,78,0.32105748497416897],[124,33,79,0.32048359623176864],[124,34,64,0.3337414962287819],[124,34,65,0.3329481698732495],[124,34,66,0.3321620257485071],[124,34,67,0.33138491854482355],[124,34,68,0.33061864994038337],[124,34,69,0.32986496461198983],[124,34,70,0.3291255461823228],[124,34,71,0.32840201310377315],[124,34,72,0.3276959144788494],[124,34,73,0.3270087258171807],[124,34,74,0.32634184472905203],[124,34,75,0.3256965865555586],[124,34,76,0.3250741799353101],[124,34,77,0.3244757623077194],[124,34,78,0.3239023753528614],[124,34,79,0.32335496036790856],[124,35,64,0.33600428063140714],[124,35,65,0.3352505630876727],[124,35,66,0.33450309948603224],[124,35,67,0.3337637429273651],[124,35,68,0.3330342945364877],[124,35,69,0.3323164994981577],[124,35,70,0.3316120430298122],[124,35,71,0.33092254629105594],[124,35,72,0.33024956222990115],[124,35,73,0.3295945713657735],[124,35,74,0.3289589775092332],[124,35,75,0.3283441034184847],[124,35,76,0.32775118639261547],[124,35,77,0.32718137380159484],[124,35,78,0.3266357185530173],[124,35,79,0.3261151744955994],[124,36,64,0.3381497559538519],[124,36,65,0.3374356999247169],[124,36,66,0.33672699683761304],[124,36,67,0.33602549784354774],[124,36,68,0.33533300313297537],[124,36,69,0.33465125799719864],[124,36,70,0.3339819488266893],[124,36,71,0.3333266990463442],[124,36,72,0.33268706498767414],[124,36,73,0.33206453169794653],[124,36,74,0.3314605086862258],[124,36,75,0.3308763256063867],[124,36,76,0.3303132278770418],[124,36,77,0.3297723722384126],[124,36,78,0.32925482224612895],[124,36,79,0.3287615437019679],[124,37,64,0.34017541636820015],[124,37,65,0.33950106180152956],[124,37,66,0.33883118719785393],[124,37,67,0.338167641392892],[124,37,68,0.33751222325614183],[124,37,69,0.33686667777776824],[124,37,70,0.3362326920926014],[124,37,71,0.3356118914412641],[124,37,72,0.3350058350684255],[124,37,73,0.3344160120582003],[124,37,74,0.33384383710663934],[124,37,75,0.33329064623138654],[124,37,76,0.3327576924184419],[124,37,77,0.3322461412060606],[124,37,78,0.33175706620577605],[124,37,79,0.3312914445605522],[124,38,64,0.34207883719572685],[124,38,65,0.34144421086371746],[124,38,66,0.34081322025434907],[124,38,67,0.34018771151802546],[124,38,68,0.3395694818114286],[124,38,69,0.3389602754099695],[124,38,70,0.3383617797575538],[124,38,71,0.3377756214536785],[124,38,72,0.3372033621778556],[124,38,73,0.3366464945513815],[124,38,74,0.33610643793640355],[124,38,75,0.3355845341723501],[124,38,76,0.33508204324967],[124,38,77,0.33460013892091117],[124,38,78,0.3341399042491221],[124,38,79,0.33370232709358616],[124,39,64,0.3438576764295296],[124,39,65,0.343262791537946],[124,39,66,0.3426707275695626],[124,39,67,0.3420833276151598],[124,39,68,0.3415023867218092],[124,39,69,0.340929648030961],[124,39,70,0.34036679885405796],[124,39,71,0.33981546668568946],[124,39,72,0.339277215154284],[124,39,73,0.33875353991035645],[124,39,74,0.3382458644522648],[124,39,75,0.3377555358895385],[124,39,76,0.3372838206437287],[124,39,77,0.3368319000868056],[124,39,78,0.33640086611709136],[124,39,79,0.3359917166727342],[124,40,64,0.3455096762010162],[124,40,65,0.3449545320279136],[124,40,66,0.3444014241056268],[124,40,67,0.3438521920870432],[124,40,68,0.34330862850822885],[124,40,69,0.3427724749522172],[124,40,70,0.34224541815054305],[124,40,71,0.3417290860225356],[124,40,72,0.3412250436523706],[124,40,73,0.3407347892038941],[124,40,74,0.3402597497731765],[124,40,75,0.3398012771788573],[124,40,76,0.33936064369022917],[124,40,77,0.3389390376930901],[124,40,78,0.3385375592933493],[124,40,79,0.33815721585839437],[124,41,64,0.34703266419018],[124,41,65,0.34651724575363674],[124,41,66,0.3460031096919885],[124,41,67,0.34549209183831997],[124,41,68,0.344985981812028],[124,41,69,0.34448651920836454],[124,41,70,0.34399538972595617],[124,41,71,0.34351422123230974],[124,41,72,0.3430445797673049],[124,41,73,0.34258796548468506],[124,41,74,0.3421458085315101],[124,41,75,0.3417194648656231],[124,41,76,0.34131021201108774],[124,41,77,0.3409192447516203],[124,41,78,0.34054767076200326],[124,41,79,0.3401965061774884],[124,42,64,0.34842455497974023],[124,42,65,0.3479488327341228],[124,42,66,0.3474736704359844],[124,42,67,0.3470008997133793],[124,42,68,0.3465323068594315],[124,42,69,0.34606962904768024],[124,42,70,0.3456145504856406],[124,42,71,0.3451686985065857],[124,42,72,0.34473363959955305],[124,42,73,0.34431087537758587],[124,42,74,0.3439018384841738],[124,42,75,0.34350788843794283],[124,42,76,0.3431303074155544],[124,42,77,0.34277029597283426],[124,42,78,0.34242896870412065],[124,42,79,0.34210734983983915],[124,43,64,0.34968335135305806],[124,43,65,0.34924728091333734],[124,43,66,0.34881108007625156],[124,43,67,0.3483765758765947],[124,43,68,0.34794555086800527],[124,43,69,0.3475197393641533],[124,43,70,0.3471008236183872],[124,43,71,0.34669042994184873],[124,43,72,0.34629012476005866],[124,43,73,0.3459014106079812],[124,43,74,0.34552572206353394],[124,43,75,0.3451644216195944],[124,43,76,0.3448187954944583],[124,43,77,0.3444900493807755],[124,43,78,0.3441793041329505],[124,43,79,0.3438875913930148],[124,44,64,0.350807145535876],[124,44,65,0.35041066742951854],[124,44,66,0.35001340127902325],[124,44,67,0.34961716913500895],[124,44,68,0.3492237493951359],[124,44,69,0.34883487307116223],[124,44,70,0.348452219994715],[124,44,71,0.34807741496178635],[124,44,72,0.34771202381595157],[124,44,73,0.34735754947032105],[124,44,74,0.3470154278681955],[124,44,75,0.34668702388246764],[124,44,76,0.34637362715373254],[124,44,77,0.34607644786713077],[124,44,78,0.3457966124679085],[124,44,79,0.34553515931570494],[124,45,64,0.35179412038190794],[124,45,65,0.35143715982786283],[124,45,66,0.35107878687733785],[124,45,67,0.3507208182034912],[124,45,68,0.35036502762855837],[124,45,69,0.35001314241679715],[124,45,70,0.3496668395064133],[124,45,71,0.34932774168047254],[124,45,72,0.3489974136767987],[124,45,73,0.34867735823686885],[124,45,74,0.34836901209367627],[124,45,75,0.3480737418986007],[124,45,76,0.3477928400872536],[124,45,77,0.3475275206843167],[124,45,78,0.34727891504736264],[124,45,79,0.34704806754966677],[124,46,64,0.3526425505022125],[124,46,65,0.35232501721651627],[124,46,66,0.35200548105309265],[124,46,67,0.35168575291229576],[124,46,68,0.35136760161886216],[124,46,69,0.35105275024075583],[124,46,70,0.35074287234726625],[124,46,71,0.350439588206364],[124,46,72,0.3501444609213176],[124,46,73,0.3498589925065754],[124,46,74,0.3495846199028913],[124,46,75,0.34932271093172806],[124,46,76,0.34907456018890765],[124,46,77,0.3488413848775276],[124,46,78,0.34862432058013254],[124,46,79,0.34842441697014725],[124,47,64,0.35335080333839175],[124,47,65,0.3530725913659112],[124,47,66,0.3527918204619829],[124,47,67,0.35251029535706535],[124,47,68,0.35222977945401984],[124,47,69,0.35195199117285514],[124,47,70,0.35167860023500735],[124,47,71,0.351411223887159],[124,47,72,0.35115142306459907],[124,47,73,0.3509006984941296],[124,47,74,0.35066048673649836],[124,47,75,0.3504321561683883],[124,47,76,0.3502170029039362],[124,47,77,0.3500162466557983],[124,47,78,0.3498310265357516],[124,47,79,0.34966239679483846],[124,48,64,0.3539173401796296],[124,48,65,0.3536783277514659],[124,48,66,0.3534362353013443],[124,48,67,0.3531928609912972],[124,48,68,0.3529499623759542],[124,48,69,0.35270925277317783],[124,48,70,0.35247239757452486],[124,48,71,0.352241010495537],[124,48,72,0.35201664976586133],[124,48,73,0.3518008142592083],[124,48,74,0.35159493956312576],[124,48,75,0.3514003939886181],[124,48,76,0.35121847451958654],[124,48,77,0.3510504027021049],[124,48,78,0.35089732047352085],[124,48,79,0.3507602859313914],[124,49,64,0.35434071712352355],[124,49,65,0.35414076653959836],[124,49,66,0.35393725032084977],[124,49,67,0.3537319596612202],[124,49,68,0.3535266458390933],[124,49,69,0.3533230166138019],[124,49,70,0.35312273256225984],[124,49,71,0.3529274033557223],[124,49,72,0.35273858397667635],[124,49,73,0.35255777087586315],[124,49,74,0.35238639806942085],[124,49,75,0.3522258331761661],[124,49,76,0.3520773733949988],[124,49,77,0.35194224142243774],[124,49,78,0.3518215813102845],[124,49,79,0.3517164542634171],[124,50,64,0.35461958598074256],[124,50,65,0.3544585435170873],[124,50,66,0.35429348577609243],[124,50,67,0.3541261965831175],[124,50,68,0.3539584205109486],[124,50,69,0.35379185930214735],[124,50,70,0.3536281682318348],[124,50,71,0.35346895241091003],[124,50,72,0.353315763029706],[124,50,73,0.3531700935420844],[124,50,74,0.3530333757899601],[124,50,75,0.35290697606827015],[124,50,76,0.35279219113037286],[124,50,77,0.3526902441338885],[124,50,78,0.35260228052697107],[124,50,79,0.3525293638750208],[124,51,64,0.3547526951235129],[124,51,65,0.3546303909637838],[124,51,66,0.3545036583250609],[124,51,67,0.3543742732631011],[124,51,68,0.35424397321472056],[124,51,69,0.3541144534459463],[124,51,70,0.35398736344092196],[124,51,71,0.3538643032315619],[124,51,72,0.3537468196679597],[124,51,73,0.35363640262955265],[124,51,74,0.35353448117703057],[124,51,75,0.35344241964500556],[124,51,76,0.35336151367542923],[124,51,77,0.35329298619176575],[124,51,78,0.35323798331391343],[124,51,79,0.35319757021388354],[124,52,64,0.3547388902779093],[124,52,65,0.3546551384686489],[124,52,66,0.35456658186747947],[124,52,67,0.3544749883593075],[124,52,68,0.35438208781390323],[124,52,69,0.3542895685598072],[124,52,70,0.3541990737993149],[124,52,71,0.35411219796453625],[124,52,72,0.35403048301453355],[124,52,73,0.35395541467353864],[124,52,74,0.35388841861024256],[124,52,75,0.3538308565581686],[124,52,76,0.3537840223771169],[124,52,77,0.3537491380556921],[124,52,78,0.35372734965490243],[124,52,79,0.35371972319284173],[124,53,64,0.35457711525997143],[124,53,65,0.35453171368913816],[124,53,66,0.35448116832703525],[124,53,67,0.3544272384865399],[124,53,68,0.354371646038912],[124,53,69,0.35431607191339565],[124,53,70,0.3542621525382321],[124,53,71,0.35421147622308247],[124,53,72,0.35416557948286087],[124,53,73,0.3541259433029801],[124,53,74,0.3540939893460048],[124,53,75,0.3540710760997192],[124,53,76,0.35405849496660247],[124,53,77,0.3540574662947171],[124,53,78,0.35406913535000567],[124,53,79,0.3540945682300011],[124,54,64,0.35426641265563796],[124,54,65,0.3542591430539258],[124,54,66,0.3542464283764857],[124,54,67,0.35423001896335016],[124,54,68,0.3542116282557276],[124,54,69,0.3541929293212284],[124,54,70,0.3541755513208467],[124,54,71,0.35416107591769147],[124,54,72,0.3541510336274717],[124,54,73,0.3541469001107354],[124,54,74,0.354150092406858],[124,54,75,0.3541619651097879],[124,54,76,0.35418380648553993],[124,54,77,0.35421683453144615],[124,54,78,0.35426219297715444],[124,54,79,0.35432094722738516],[124,55,64,0.353805924444496],[124,55,65,0.3538365524089655],[124,55,66,0.35386147210564245],[124,55,67,0.35388242450155416],[124,55,68,0.3539011141765499],[124,55,69,0.3539192058740719],[124,55,70,0.3539383209940329],[124,55,71,0.35396003402779375],[124,55,72,0.35398586893524586],[124,55,73,0.35401729546399585],[124,55,74,0.3540557254106536],[124,55,75,0.35410250882422434],[124,55,76,0.3541589301516007],[124,55,77,0.35422620432516266],[124,55,78,0.35430547279247515],[124,55,79,0.354397799488094],[124,56,64,0.353194892567357],[124,56,65,0.3532631676068993],[124,56,66,0.35332550963224263],[124,56,67,0.35338364983819315],[124,56,68,0.35343928351247555],[124,56,69,0.353494066611958],[124,56,70,0.3535496122813433],[124,56,71,0.3536074873143204],[124,56,72,0.35366920855717754],[124,56,73,0.35373623925487674],[124,56,74,0.3538099853395922],[124,56,75,0.35389179166170937],[124,56,76,0.3539829381632838],[124,56,77,0.35408463599396645],[124,56,78,0.354198023569386],[124,56,79,0.35432416257199706],[124,57,64,0.3524326594376384],[124,57,65,0.3525383150397938],[124,57,66,0.35263785165568867],[124,57,67,0.3527329903099236],[124,57,68,0.35282541656818045],[124,57,69,0.35291677713880115],[124,57,70,0.35300867641720146],[124,57,71,0.35310267297310977],[124,57,72,0.35320027598063664],[124,57,73,0.3533029415911715],[124,57,74,0.35341206924911156],[124,57,75,0.35352899795041726],[124,57,76,0.3536550024439956],[124,57,77,0.353791289375916],[124,57,78,0.3539389933764506],[124,57,79,0.3540991730899492],[124,58,64,0.35151866839657187],[124,58,65,0.35166142211522405],[124,58,66,0.351797909953676],[124,58,67,0.35192984236985136],[124,58,68,0.35205889477862257],[124,58,69,0.35218670417863174],[124,58,70,0.3523148657223223],[124,58,71,0.3524449292291728],[124,58,72,0.352578395642136],[124,58,73,0.35271671342727773],[124,58,74,0.35286127491662866],[124,58,75,0.3530134125942327],[124,58,76,0.3531743953254014],[124,58,77,0.3533454245291756],[124,58,78,0.353527630293987],[124,58,79,0.35372206743652873],[124,59,64,0.3504524641122389],[124,59,65,0.3506320176757072],[124,59,66,0.3508051978217078],[124,59,67,0.3509737040468127],[124,59,68,0.35113920118777003],[124,59,69,0.351303316073446],[124,59,70,0.3514676341203631],[124,59,71,0.35163369587182114],[124,59,72,0.35180299348060967],[124,59,73,0.35197696713530136],[124,59,74,0.3521570014301438],[124,59,75,0.3523444216785294],[124,59,76,0.3525404901700567],[124,59,77,0.3527464023711796],[124,59,78,0.3529632830694429],[124,59,79,0.35319218246130857],[124,60,64,0.34923369292239903],[124,60,65,0.3494497323614497],[124,60,66,0.34965933045546793],[124,60,67,0.3498641753470717],[124,60,68,0.3500659208693204],[124,60,69,0.3502661832226476],[124,60,70,0.35046653759577917],[124,60,71,0.35066851473062954],[124,60,72,0.3508735974311764],[124,60,73,0.35108321701631195],[124,60,74,0.35129874971668085],[124,60,75,0.3515215130154895],[124,60,76,0.3517527619332972],[124,60,77,0.35199368525678715],[124,60,78,0.3522454017115152],[124,60,79,0.3525089560786405],[124,61,64,0.34786210312115806],[124,61,65,0.34811429891645623],[124,61,66,0.34836002527609167],[124,61,67,0.3486009585984735],[124,61,68,0.34883874128945525],[124,61,69,0.34907497846411406],[124,61,70,0.34931123459291824],[124,61,71,0.34954903009226834],[124,61,72,0.3497898378594212],[124,61,73,0.3500350797517828],[124,61,74,0.350286123010595],[124,61,75,0.35054427662898735],[124,61,76,0.35081078766441137],[124,61,77,0.351086837495456],[124,61,78,0.3513735380230374],[124,61,79,0.3516719278159717],[124,62,64,0.34633754518946214],[124,62,65,0.34662555243798615],[124,62,66,0.3469071021983254],[124,62,67,0.34718385873704555],[124,62,68,0.34745745261161565],[124,62,69,0.34772947739688326],[124,62,70,0.3480014863563451],[124,62,71,0.3482749890581993],[124,62,72,0.3485514479361864],[124,62,73,0.34883227479520684],[124,62,74,0.34911882726174054],[124,62,75,0.3494124051790365],[124,62,76,0.3497142469470938],[124,62,77,0.35002552580743035],[124,62,78,0.3503473460726323],[124,62,79,0.35068073930069515],[124,63,64,0.3446599719693737],[124,63,65,0.344983430569313],[124,63,66,0.3453004838415305],[124,63,67,0.3456127835360012],[124,63,68,0.3459219479432614],[124,63,69,0.34622955864541627],[124,63,70,0.34653715721236045],[124,63,71,0.34684624184319324],[124,63,72,0.3471582639528385],[124,63,73,0.3474746247038551],[124,63,74,0.3477966714834647],[124,63,75,0.34812569432576423],[124,63,76,0.34846292227914444],[124,63,77,0.34880951971891017],[124,63,78,0.3491665826050985],[124,63,79,0.3495351346855009],[124,64,64,0.34282943878220395],[124,64,65,0.34318797363586284],[124,64,66,0.3435401956836042],[124,64,67,0.343887743777219],[124,64,68,0.3442322235246789],[124,64,69,0.3445752040655051],[124,64,70,0.3449182147917732],[124,64,71,0.34526274201473484],[124,64,72,0.34561022557706716],[124,64,73,0.3459620554107329],[124,64,74,0.34631956804048414],[124,64,75,0.3466840430329685],[124,64,76,0.34705669939146677],[124,64,77,0.3474386918962541],[124,64,78,0.3478311073905798],[124,64,79,0.3482349610122763],[124,65,64,0.34084610349043937],[124,65,65,0.34123932472466734],[124,65,66,0.3416263661577566],[124,65,67,0.3420088533651361],[124,65,68,0.34238837885978257],[124,65,69,0.34276649889176847],[124,65,70,0.3431447301938766],[124,65,71,0.3435245466732616],[124,65,72,0.3439073760491679],[124,65,73,0.34429459643668786],[124,65,74,0.34468753287659554],[124,65,75,0.3450874538112101],[124,65,76,0.34549556750632204],[124,65,77,0.3459130184191714],[124,65,78,0.3463408835124756],[124,65,79,0.3467801685145152],[124,66,64,0.3387102265035192],[124,66,65,0.3391377297071894],[124,66,66,0.3395592266921994],[124,66,67,0.33997632938311195],[124,66,68,0.340390616788961],[124,66,69,0.34080363182678686],[124,66,70,0.34121687809167633],[124,66,71,0.3416318165732855],[124,66,72,0.34204986231885687],[124,66,73,0.34247238104271394],[124,66,74,0.34290068568226684],[124,66,75,0.3433360329004872],[124,66,76,0.3437796195348801],[124,66,77,0.344232578992947],[124,66,78,0.34469597759413395],[124,66,79,0.34517081085827617],[124,67,64,0.3364221707273739],[124,67,65,0.3368835372054324],[124,67,66,0.33733911169265945],[124,67,67,0.3377904920921762],[124,67,68,0.33823924350388657],[124,67,69,0.3386868950717979],[124,67,70,0.339134936778291],[124,67,71,0.33958481618531794],[124,67,72,0.34003793512253894],[124,67,73,0.34049564632237717],[124,67,74,0.3409592500020351],[124,67,75,0.341429990392417],[124,67,76,0.34190905221399875],[124,67,77,0.3423975570996286],[124,67,78,0.34289655996426005],[124,67,79,0.3434070453216237],[124,68,64,0.3339824014578314],[124,68,65,0.334477198501438],[124,68,66,0.33496645846781925],[124,68,67,0.33545176487226097],[124,68,68,0.33593466850438497],[124,68,69,0.3364166842990442],[124,68,70,0.3368992881546192],[124,68,71,0.33738391369869414],[124,68,72,0.3378719490011206],[124,68,73,0.33836473323445365],[124,68,74,0.3388635532817975],[124,68,75,0.339369640292012],[124,68,76,0.3398841661823128],[124,68,77,0.34040824008825865],[124,68,78,0.34094290476111844],[124,68,79,0.3414891329126295],[124,69,64,0.33139148621784964],[124,69,65,0.3319192673901308],[124,69,66,0.3324418070976458],[124,69,67,0.33296067410588004],[124,69,68,0.3334774044973272],[124,69,69,0.33399349856574023],[124,69,70,0.3345104176582391],[124,69,71,0.33502958096525726],[124,69,72,0.3355523622583356],[124,69,73,0.33608008657574207],[124,69,74,0.33661402685596453],[124,69,75,0.33715540051901766],[124,69,76,0.3377053659956045],[124,69,77,0.33826501920412155],[124,69,78,0.33883538997550144],[124,69,79,0.33941743842590727],[124,70,64,0.3286500945385028],[124,70,65,0.32921039997544],[124,70,66,0.3297658002445365],[124,70,67,0.33031784900418376],[124,70,68,0.33086806723747736],[124,70,69,0.33141794016959025],[124,70,70,0.3319689141334702],[124,70,71,0.33252239338384115],[124,70,72,0.33307973685951464],[124,70,73,0.3336422548939929],[124,70,74,0.3342112058744102],[124,70,75,0.3347877928487517],[124,70,76,0.3353731600813926],[124,70,77,0.335968389556944],[124,70,78,0.33657449743240403],[124,70,79,0.33719243043762115],[124,71,64,0.32575899768384586],[124,71,65,0.32635135440982144],[124,71,66,0.3269391829074034],[124,71,67,0.3275240213755116],[124,71,68,0.32810737531041156],[124,71,69,0.32869071444597087],[124,71,70,0.32927546964271603],[124,71,71,0.32986302972565995],[124,71,72,0.33045473827091343],[124,71,73,0.33105189034105764],[124,71,74,0.3316557291693285],[124,71,75,0.33226744279254705],[124,71,76,0.3328881606328423],[124,71,77,0.3335189500281529],[124,71,78,0.33416081271150344],[124,71,79,0.3348146812390664],[124,72,64,0.3227190683196073],[124,72,65,0.32334299057712534],[124,72,66,0.323962802118646],[124,72,67,0.3245800253363903],[124,72,68,0.32519614985746026],[124,72,69,0.32581262950673395],[124,72,70,0.3264308792190366],[124,72,71,0.3270522719005611],[124,72,72,0.32767813523955025],[124,72,73,0.32830974846621613],[124,72,74,0.3289483390619504],[124,72,75,0.3295950794177577],[124,72,76,0.33025108344195775],[124,72,77,0.3309174031171466],[124,72,78,0.3315950250064067],[124,72,79,0.3322848667087829],[124,73,64,0.3195312801256218],[124,73,65,0.3201862697187304],[124,73,66,0.32083760658392935],[124,73,67,0.321486796964896],[124,73,68,0.32213531424259345],[124,73,69,0.32278459592054565],[124,73,70,0.3234360405598732],[124,73,71,0.3240910046640624],[124,73,72,0.32475079951347974],[124,73,73,0.32541668794960593],[124,73,74,0.3260898811090479],[124,73,75,0.326771535107253],[124,73,76,0.3274627476719803],[124,73,77,0.3281645547265102],[124,73,78,0.3288779269225908],[124,73,79,0.3296037661231308],[124,74,64,0.31619670735215455],[124,74,65,0.3168822540030891],[124,74,66,0.31756464626491226],[124,74,67,0.3182453738965265],[124,74,68,0.3189258936613898],[124,74,69,0.3196076263349057],[124,74,70,0.32029195366206514],[124,74,71,0.32098021526531006],[124,74,72,0.3216737055026331],[124,74,73,0.3223736702758856],[124,74,74,0.32308130378935423],[124,74,75,0.32379774525852967],[124,74,76,0.32452407556912066],[124,74,77,0.3252613138862973],[124,74,78,0.3260104142141614],[124,74,79,0.32677226190545083],[124,75,64,0.3127165243200527],[124,75,65,0.31343210603862004],[124,75,66,0.3141450719048642],[124,75,67,0.3148568948625184],[124,75,68,0.31556901469202825],[124,75,69,0.31628283503978327],[124,75,70,0.31699972039809593],[124,75,71,0.31772099303589846],[124,75,72,0.31844792988017145],[124,75,73,0.31918175934807497],[124,75,74,0.31992365812984686],[124,75,75,0.3206747479223848],[124,75,76,0.32143609211357216],[124,75,77,0.32220869241732786],[124,75,78,0.3229934854593772],[124,75,79,0.32379133931375625],[124,76,64,0.3090920048646256],[124,76,65,0.30983708832985385],[124,76,66,0.3105801344970752],[124,76,67,0.3113225991705178],[124,76,68,0.31206590478821195],[124,76,69,0.31281143747278095],[124,76,70,0.3135605440334815],[124,76,71,0.31431452891946277],[124,76,72,0.31507465112425936],[124,76,73,0.315842121041486],[124,76,74,0.31661809727180334],[124,76,75,0.3174036833810664],[124,76,76,0.3181999246097194],[124,76,77,0.3190078045334152],[124,76,78,0.31982824167485735],[124,76,79,0.32066208606687646],[124,77,64,0.3053245217234287],[124,77,65,0.306098562677002],[124,77,66,0.3068711846962286],[124,77,67,0.30764382612777075],[124,77,68,0.30841789171418615],[124,77,69,0.3091947496659873],[124,77,70,0.30997572868545975],[124,77,71,0.3107621149422046],[124,77,72,0.3115551490004213],[124,77,73,0.312356022697899],[124,77,74,0.3131658759767869],[124,77,75,0.31398579366605195],[124,77,76,0.3148168022156912],[124,77,77,0.3156598663826746],[124,77,78,0.3165158858686179],[124,77,79,0.31738569190919574],[124,78,64,0.30141554586787267],[124,78,65,0.3022179895188727],[124,78,66,0.3030196721726608],[124,78,67,0.30382201440676015],[124,78,68,0.30462640292178006],[124,78,69,0.30543418763444813],[124,78,70,0.3062466787229118],[124,78,71,0.30706514362427867],[124,78,72,0.3078908039844069],[124,78,73,0.3087248325599167],[124,78,74,0.3095683500724935],[124,78,75,0.3104224220153904],[124,78,76,0.3112880554121956],[124,78,77,0.3121661955278452],[124,78,78,0.3130577225318743],[124,78,79,0.3139634481139245],[124,79,64,0.2973666457785529],[124,79,65,0.29819692721902963],[124,79,66,0.29902714490940474],[124,79,67,0.2998587013531841],[124,79,68,0.30069296486936875],[124,79,69,0.30153126670615327],[124,79,70,0.30237489810741225],[124,79,71,0.3032251073319418],[124,79,72,0.3040830966254684],[124,79,73,0.3049500191453957],[124,79,74,0.3058269758383613],[124,79,75,0.3067150122705079],[124,79,76,0.30761511541053843],[124,79,77,0.30852821036553146],[124,79,78,0.309455157069515],[124,79,79,0.31039674692481045],[124,80,64,0.2931794866644917],[124,80,65,0.2940370312953844],[124,80,66,0.2948952484422058],[124,80,67,0.2957555222364662],[124,80,68,0.29661920228294114],[124,80,69,0.2974876007937249],[124,80,70,0.29836198967559363],[124,80,71,0.2992435975706453],[124,80,72,0.30013360685022966],[124,80,73,0.3010331505621371],[124,80,74,0.301943309331121],[124,80,75,0.30286510821265544],[124,80,76,0.303799513499998],[124,80,77,0.3047474294845369],[124,80,78,0.3057096951694165],[124,80,79,0.3066870809364566],[124,81,64,0.28885582962620604],[124,81,65,0.28974005359313537],[124,81,66,0.2906257250424254],[124,81,67,0.2915142094427102],[124,81,68,0.2924068373591907],[124,81,69,0.29330490160772227],[124,81,70,0.2942096543627403],[124,81,71,0.29512230421898866],[124,81,72,0.2960440132070653],[124,81,73,0.2969758937627519],[124,81,74,0.2979190056502069],[124,81,75,0.2988743528389165],[124,81,76,0.2998428803344811],[124,81,77,0.3008254709632098],[124,81,78,0.30182294211052235],[124,81,79,0.3028360424131703],[124,82,64,0.2843975307624854],[124,82,65,0.28530784140093945],[124,82,66,0.2862204128427168],[124,82,67,0.28713659160998806],[124,82,68,0.2880576889105162],[124,82,69,0.2889849778114527],[124,82,70,0.28991969036750276],[124,82,71,0.29086301470342524],[124,82,72,0.2918160920508812],[124,82,73,0.2927800137395965],[124,82,74,0.29375581814291996],[124,82,75,0.2947444875776706],[124,82,76,0.29574694515835087],[124,82,77,0.2967640516057002],[124,82,78,0.29779660200958524],[124,82,79,0.29884532254624363],[124,83,64,0.2798065402210922],[124,83,65,0.28074233651052805],[124,83,66,0.2816812449056854],[124,83,67,0.28262459270616785],[124,83,68,0.28357367145213913],[124,83,69,0.2845297341174936],[124,83,70,0.2854939922579347],[124,83,71,0.28646761311392077],[124,83,72,0.28745171666849684],[124,83,73,0.288447372659974],[124,83,74,0.2894555975495427],[124,83,75,0.2904773514437072],[124,83,76,0.29151353497162447],[124,83,77,0.29256498611731674],[124,83,78,0.2936324770067583],[124,83,79,0.29471671064984867],[124,84,64,0.2750849011932893],[124,84,65,0.27604557421966913],[124,84,66,0.2770102482354354],[124,84,67,0.2779802310491892],[124,84,68,0.278956794231244],[124,84,69,0.2799411703258327],[124,84,70,0.2809345500187621],[124,84,71,0.2819380792604752],[124,84,72,0.28295285634453826],[124,84,73,0.28397992894151486],[124,84,74,0.2850202910883145],[124,84,75,0.28607488013290205],[124,84,76,0.2871445736344487],[124,84,77,0.28823018621889984],[124,84,78,0.28933246638995347],[124,84,79,0.2904520932954674],[124,85,64,0.270234748852065],[124,85,65,0.2712196822783523],[124,85,66,0.2722095427318788],[124,85,67,0.2732056182696573],[124,85,68,0.274209160198017],[124,85,69,0.27522138030350196],[124,85,70,0.2762434480397598],[124,85,71,0.2772764876703837],[124,85,72,0.27832157536772084],[124,85,73,0.2793797362676118],[124,85,74,0.2804519414801487],[124,85,75,0.28153910505633617],[124,85,76,0.2826420809107395],[124,85,77,0.28376165970009026],[124,85,78,0.28489856565784893],[124,85,79,0.28605345338473753],[124,86,64,0.26525830923429317],[124,86,65,0.2662668797784272],[124,86,66,0.26728134008803894],[124,86,67,0.2683029582159921],[124,86,68,0.2693329649188141],[124,86,69,0.2703725509059347],[124,86,70,0.2714228640454628],[124,86,71,0.2724850065264628],[124,86,72,0.2735600319777457],[124,86,73,0.27464894254313665],[124,86,74,0.27575268591331115],[124,86,75,0.2768721523140783],[124,86,76,0.2780081714511995],[124,86,77,0.27916150941171275],[124,86,78,0.2803328655217591],[124,86,79,0.2815228691609285],[124,87,64,0.2601578980667182],[124,87,65,0.26118947598659],[124,87,66,0.26222794263024063],[124,87,67,0.2632745458020202],[124,87,68,0.264330495431349],[124,87,69,0.26539696083993947],[124,87,70,0.2664750679661084],[124,87,71,0.2675658965461384],[124,87,72,0.2686704772527052],[124,87,73,0.26978978879033133],[124,87,74,0.27092475494796037],[124,87,75,0.2720762416085272],[124,87,76,0.2732450537156159],[124,87,77,0.274431932197172],[124,87,78,0.27563755084627006],[124,87,79,0.2768625131589486],[124,88,64,0.2549359195356298],[124,88,65,0.2559898691205805],[124,88,66,0.25705174210105286],[124,88,67,0.25812276579688037],[124,88,68,0.2592041290417726],[124,88,69,0.26029697946815894],[124,88,70,0.2614024207496768],[124,88,71,0.262521509801264],[124,88,72,0.2636552539368702],[124,88,73,0.2648046079847477],[124,88,74,0.2659704713604182],[124,88,75,0.26715368509718906],[124,88,76,0.2683550288343095],[124,88,77,0.26957521776273785],[124,88,78,0.2708148995285148],[124,88,79,0.27207465109376067],[124,89,64,0.24959486500049569],[124,89,65,0.25067054506886016],[124,89,66,0.2517552183852504],[124,89,67,0.2528500915575041],[124,89,68,0.2539563320639037],[124,89,69,0.25507506555527515],[124,89,70,0.2562073731152905],[124,89,71,0.2573542884789284],[124,89,72,0.2585167952091134],[124,89,73,0.25969582383148937],[124,89,74,0.2608922489274278],[124,89,75,0.26210688618514],[124,89,76,0.2633404894089889],[124,89,77,0.2645937474869663],[124,89,78,0.2658672813163346],[124,89,79,0.26716164068744924],[124,90,64,0.24413731165132962],[124,90,65,0.24523407605354436],[124,90,66,0.24634093817857164],[124,90,67,0.24745908370345246],[124,90,68,0.24858965850039202],[124,90,69,0.24973376595574384],[124,90,70,0.2508924642477558],[124,90,71,0.2520667635830359],[124,90,72,0.25325762339175517],[124,90,73,0.2544659494815437],[124,90,74,0.25569259115018383],[124,90,75,0.25693833825696455],[124,90,76,0.25820391825279604],[124,90,77,0.2594899931690496],[124,90,78,0.2607971565651213],[124,90,79,0.2621259304347366],[124,91,64,0.23856592110996705],[124,91,65,0.2396831192367663],[124,91,66,0.2408115535994464],[124,91,67,0.2419523887342798],[124,91,68,0.2431067486659866],[124,91,69,0.2442757142432261],[124,91,70,0.24546032043341576],[124,91,71,0.24666155357683028],[124,91,72,0.24788034860000094],[124,91,73,0.24911758618836985],[124,91,74,0.2503740899183041],[124,91,75,0.25165062334833393],[124,91,76,0.25294788706971133],[124,91,77,0.25426651571625847],[124,91,78,0.2556070749335016],[124,91,79,0.2569700583071072],[124,92,64,0.2328834379750052],[124,92,65,0.23402041527022605],[124,92,66,0.2351698007434501],[124,92,67,0.23633273758918502],[124,92,68,0.2375103277526666],[124,92,69,0.23870362928148062],[124,92,70,0.23991365363707554],[124,92,71,0.24114136296612118],[124,92,72,0.24238766733173184],[124,92,73,0.24365342190450828],[124,92,74,0.24493942411350672],[124,92,75,0.24624641075699288],[124,92,76,0.24757505507308453],[124,92,77,0.24892596377024623],[124,92,78,0.25029967401763503],[124,92,79,0.2516966503953141],[124,93,64,0.2270926883107001],[124,93,65,0.22824878678821744],[124,93,66,0.2294184981807755],[124,93,67,0.23060294414923532],[124,93,68,0.23180320433692345],[124,93,69,0.23302031373700025],[124,93,70,0.23425526002028632],[124,93,71,0.2355089808235007],[124,93,72,0.23678236099793198],[124,93,73,0.23807622981849308],[124,93,74,0.23939135815327167],[124,93,75,0.24072845559343142],[124,93,76,0.24208816754356893],[124,93,77,0.2434710722724891],[124,93,78,0.24487767792439963],[124,93,79,0.2463084194905381],[124,94,64,0.22119657807968587],[124,94,65,0.22237113684399984],[124,94,66,0.22356054539658918],[124,94,67,0.22476590368203583],[124,94,68,0.2259882688290634],[124,94,69,0.22722865253326469],[124,94,70,0.22848801840085714],[124,94,71,0.22976727925341878],[124,94,72,0.231067294393625],[124,94,73,0.23238886683193832],[124,94,74,0.2337327404743627],[124,94,75,0.23509959727111707],[124,94,76,0.2364900543263329],[124,94,77,0.23790466096874008],[124,94,78,0.23934389578333942],[124,94,79,0.2408081636040777],[124,95,64,0.21519809151936542],[124,95,65,0.21639044728936185],[124,95,66,0.21759892117412036],[124,95,67,0.21882459122868947],[124,95,68,0.22006849186437905],[124,95,69,0.221331611246457],[124,95,70,0.2226148886534456],[124,95,71,0.22391921179796842],[124,95,72,0.22524541410916898],[124,95,73,0.22659427197665166],[124,95,74,0.22796650195605944],[124,95,75,0.22936275793613903],[124,95,76,0.2307836282674029],[124,95,77,0.23222963285234793],[124,95,78,0.23370122019723205],[124,95,79,0.2351987644254246],[124,96,64,0.20910028946226378],[124,96,65,0.21030977709767082],[124,96,66,0.21153668192077468],[124,96,67,0.21278205993333943],[124,96,68,0.21404692263647945],[124,96,69,0.21533223444293426],[124,96,70,0.2166389100515138],[124,96,71,0.21796781178366775],[124,96,72,0.21931974688219663],[124,96,73,0.2206954647720582],[124,96,74,0.22209565428338268],[124,96,75,0.22352094083654717],[124,96,76,0.22497188358941778],[124,96,77,0.22644897254672197],[124,96,78,0.2279526256315496],[124,96,79,0.22948318571900023],[124,97,64,0.20290630760020717],[124,97,65,0.20413226063026713],[124,97,66,0.20537695993713445],[124,97,67,0.20664143931515688],[124,97,68,0.2079266871726419],[124,97,69,0.20923364395831373],[124,97,70,0.2105631995505144],[124,97,71,0.21191619060910188],[124,97,72,0.21329339789006413],[124,97,73,0.21469554352279907],[124,97,74,0.2161232882501799],[124,97,75,0.21757722863125029],[124,97,76,0.21905789420666083],[124,97,77,0.2205657446268099],[124,97,78,0.2221011667426851],[124,97,79,0.22366447165942466],[124,98,64,0.19661935469216218],[124,98,65,0.19786110584604272],[124,98,66,0.19912296162868126],[124,98,67,0.20040593348261054],[124,98,68,0.20171098655102337],[124,98,69,0.20303903711801513],[124,98,70,0.20439095001214486],[124,98,71,0.20576753597326636],[124,98,72,0.20716954898265105],[124,98,73,0.20859768355634917],[124,98,74,0.21005257200191252],[124,98,75,0.2115347816383193],[124,98,76,0.21304481197921515],[124,98,77,0.21458309187943297],[124,98,78,0.21614997664478675],[124,98,79,0.21774574510516104],[124,99,64,0.19024271071604787],[124,99,65,0.19149959245451226],[124,99,66,0.19277796566055305],[124,99,67,0.19407881929032772],[124,99,68,0.19540309506003933],[124,99,69,0.19675168489956468],[124,99,70,0.1981254283699772],[124,99,71,0.19952511004491452],[124,99,72,0.2009514568558124],[124,99,73,0.20240513540095223],[124,99,74,0.20388674921844502],[124,99,75,0.20539683602299208],[124,99,76,0.20693586490653776],[124,99,77,0.20850423350277425],[124,99,78,0.21010226511549707],[124,99,79,0.21173020581083057],[124,100,64,0.18377972496437178],[124,100,65,0.18505107001223092],[124,100,66,0.18634532105518636],[124,100,67,0.18766344443839994],[124,100,68,0.18900635829976414],[124,100,69,0.1903749300365148],[124,100,70,0.19176997373631643],[124,100,71,0.19319224757276643],[124,100,72,0.1946424511653415],[124,100,73,0.19612122290373268],[124,100,74,0.1976291372366934],[124,100,75,0.19916670192523878],[124,100,76,0.20073435526031208],[124,100,77,0.20233246324488058],[124,100,78,0.20396131674045553],[124,100,79,0.20562112857805886],[124,101,64,0.17723381408352018],[124,101,65,0.1785189559623871],[124,101,66,0.1798284452326745],[124,101,67,0.18116322551396274],[124,101,68,0.18252419122518265],[124,101,69,0.18391218506381174],[124,101,70,0.1853279954501199],[124,101,71,0.18677235393640934],[124,101,72,0.18824593258127292],[124,101,73,0.18974934128881588],[124,101,74,0.1912831251129684],[124,101,75,0.19284776152672273],[124,101,76,0.19444365765641547],[124,101,77,0.19607114748101384],[124,101,78,0.197730488996402],[124,101,79,0.19942186134469014],[124,102,64,0.17060846005702723],[124,102,65,0.17190673361789638],[124,102,66,0.17323082199416673],[124,102,67,0.17458164597537468],[124,102,68,0.17596007613161813],[124,102,69,0.1773669303049336],[124,102,70,0.17880297106630022],[124,102,71,0.1802689031382127],[124,102,72,0.18176537078284888],[124,102,73,0.1832929551557766],[124,102,74,0.1848521716253277],[124,102,75,0.1864434670574724],[124,102,76,0.1880672170663139],[124,102,77,0.1897237232301635],[124,102,78,0.1914132102731923],[124,102,79,0.19313582321268052],[124,103,64,0.1639072081326683],[124,103,65,0.16521795008784057],[124,103,66,0.16655599944815264],[124,103,67,0.16792225407884032],[124,103,68,0.1693175605821795],[124,103,69,0.1707427118006425],[124,103,70,0.17219844428625541],[124,103,71,0.1736854357361008],[124,103,72,0.1752043023939921],[124,103,73,0.17675559641826055],[124,103,74,0.1783398032157878],[124,103,75,0.17995733874211245],[124,103,76,0.18160854676773386],[124,103,77,0.1832936961105715],[124,103,78,0.18501297783457737],[124,103,79,0.18676650241452092],[124,104,64,0.15713366469320178],[124,104,65,0.15845621414707706],[124,104,66,0.15980758787945648],[124,104,67,0.1611886607473012],[124,104,68,0.16260025527705596],[124,104,69,0.16404313917918012],[124,104,70,0.1655180228294551],[124,104,71,0.16702555671701425],[124,104,72,0.1685663288591166],[124,104,73,0.1701408621826116],[124,104,74,0.1717496118722232],[124,104,75,0.17339296268548438],[124,104,76,0.17507122623444338],[124,104,77,0.17678463823410084],[124,104,78,0.1785333557175765],[124,104,79,0.18031745421802292],[124,105,64,0.15029149507109524],[124,105,65,0.15162519404935448],[124,105,66,0.15298925756127868],[124,105,67,0.15438453738193353],[124,105,68,0.15581183186499198],[124,105,69,0.157271883468237],[124,105,70,0.15876537624641557],[124,105,71,0.16029293331138922],[124,105,72,0.16185511425960503],[124,105,73,0.16345241256683002],[124,105,74,0.1650852529502823],[124,105,75,0.16675398869798447],[124,105,76,0.16845889896546623],[124,105,77,0.1702001860397716],[124,105,78,0.17197797257076958],[124,105,79,0.17379229876978924],[124,106,64,0.14338442130707618],[124,106,65,0.14472861528377312],[124,106,66,0.14610473651012124],[124,106,67,0.14751361361608661],[124,106,68,0.14895602069678243],[124,106,69,0.15043267484853873],[124,106,70,0.15194423367290089],[124,106,71,0.15349129274849566],[124,106,72,0.1550743830707933],[124,106,73,0.15669396845970668],[124,106,74,0.15835044293516098],[124,106,75,0.16004412806045953],[124,106,76,0.1617752702535733],[124,106,77,0.1635440380663084],[124,106,78,0.16535051943135137],[124,106,79,0.16719471887721293],[124,107,64,0.13641621985232438],[124,107,65,0.13777025827441047],[124,107,66,0.13915780818341872],[124,107,67,0.14057967501148722],[124,107,68,0.14203660852060873],[124,107,69,0.14352930034886774],[124,107,70,0.14505838152517714],[124,107,71,0.1466244199524584],[124,107,72,0.14822791785928807],[124,107,73,0.14986930921995445],[124,107,74,0.15154895714305944],[124,107,75,0.15326715122848894],[124,107,76,0.15502410489287743],[124,107,77,0.15681995266352733],[124,107,78,0.15865474744077618],[124,107,79,0.16052845772883573],[124,108,64,0.129390719214656],[124,108,65,0.13075395602345874],[124,108,66,0.13215230912022186],[124,108,67,0.13358656069705294],[124,108,68,0.1350574361195624],[124,108,69,0.13656560148286578],[124,108,70,0.1381116611366583],[124,108,71,0.13969615517930212],[124,108,72,0.14131955692095516],[124,108,73,0.142982270315678],[124,108,74,0.14468462736266052],[124,108,75,0.14642688547638671],[124,108,76,0.14820922482586701],[124,108,77,0.1500317456428948],[124,108,78,0.15189446549932467],[124,108,79,0.1537973165533938],[124,109,64,0.12231179754853094],[124,109,65,0.12368359169770704],[124,109,66,0.1250921265247646],[124,109,67,0.12653816095014936],[124,109,68,0.1280223958911873],[124,109,69,0.12954547182745335],[124,109,70,0.1311079663357806],[124,109,71,0.13271039159485465],[124,109,72,0.13435319185941708],[124,109,73,0.1360367409040194],[124,109,74,0.13776133943646607],[124,109,75,0.13952721248076522],[124,109,76,0.14133450672971698],[124,109,77,0.14318328786709839],[124,109,78,0.14507353785943627],[124,109,79,0.14700515221739646],[124,110,64,0.115183380188697],[124,110,65,0.11656309615818333],[124,110,66,0.11798119579273192],[124,110,67,0.11943841472010486],[124,110,68,0.12093542936885832],[124,110,69,0.12247285454267753],[124,110,70,0.1240512409649226],[124,110,71,0.12567107279332745],[124,110,72,0.1273327651048755],[124,110,73,0.12903666135079483],[124,110,74,0.1307830307818107],[124,110,75,0.13257206584347414],[124,110,76,0.1344038795416973],[124,110,77,0.13627850277845072],[124,110,78,0.1381958816576216],[124,110,79,0.1401558747610534],[124,111,64,0.10800943712783145],[124,111,65,0.10939644543331367],[124,111,66,0.1108234979805846],[124,111,67,0.11229130709434293],[124,111,68,0.1138005246853524],[124,111,69,0.11535173983334879],[124,111,70,0.1169454763407235],[124,111,71,0.11858219025692646],[124,111,72,0.12026226737361312],[124,111,73,0.12198602069047637],[124,111,74,0.12375368785190322],[124,111,75,0.12556542855427222],[124,111,76,0.12742132192402622],[124,111,77,0.12932136386647208],[124,111,78,0.13126546438530845],[124,111,79,0.13325344487290014],[124,112,64,0.1007939804380042],[124,112,65,0.10218765813542513],[124,112,66,0.10362305721776816],[124,112,67,0.10510086670695407],[124,112,68,0.10662171397843756],[124,112,69,0.1081861623522905],[124,112,70,0.10979470865562846],[124,112,71,0.11144778075631917],[124,112,72,0.11314573506800074],[124,112,73,0.11488885402634708],[124,112,74,0.11667734353672449],[124,112,75,0.11851133039305184],[124,112,76,0.12039085966800006],[124,112,77,0.12231589207448418],[124,112,78,0.12428630129844631],[124,112,79,0.12630187130295045],[124,113,64,0.09354106163577453],[124,113,65,0.09494079282040502],[124,113,66,0.09638393806161727],[124,113,67,0.09787116308952515],[124,113,68,0.09940307073829546],[124,113,69,0.10098019854501705],[124,113,70,0.10260301632047664],[124,113,71,0.10427192369177701],[124,113,72,0.1059872476168282],[124,113,73,0.10774923987064472],[124,113,74,0.10955807450359978],[124,113,75,0.11141384527144266],[124,113,76,0.1133165630372161],[124,113,77,0.11526615314503169],[124,113,78,0.11726245276569308],[124,113,79,0.11930520821419799],[124,114,64,0.08625476899131057],[124,114,65,0.08765994529090254],[124,114,66,0.0891102427953438],[124,114,67,0.090606303964608],[124,114,68,0.09214870709715967],[124,114,69,0.09373796393622225],[124,114,70,0.0953745172485117],[124,114,71,0.09705873837537099],[124,114,72,0.09879092475633733],[124,114,73,0.1005712974250747],[124,114,74,0.10239999847782227],[124,114,75,0.10427708851416567],[124,114,76,0.1062025440502663],[124,114,77,0.10817625490450855],[124,114,78,0.11019802155555508],[124,114,79,0.11226755247283732],[124,115,64,0.07893922478120408],[124,115,65,0.0803492458427486],[124,115,66,0.08180610866878224],[124,115,67,0.08331043248150505],[124,115,68,0.0848627710608485],[124,115,69,0.0864636103577584],[124,115,70,0.08811336608049586],[124,115,71,0.08981238125390056],[124,115,72,0.09156092375163816],[124,115,73,0.09335918380137309],[124,115,74,0.0952072714630115],[124,115,75,0.09710521407982392],[124,115,76,0.09905295370258277],[124,115,77,0.10105034448667266],[124,115,78,0.10309715006216646],[124,115,79,0.10519304087689346],[124,116,64,0.07159858248522921],[124,116,65,0.07301285645484096],[124,116,66,0.07447570508214013],[124,116,67,0.07598772439461837],[124,116,68,0.07754944368243838],[124,116,69,0.07916132311834884],[124,116,70,0.08082375135117165],[124,116,71,0.08253704307280291],[124,116,72,0.08430143655875277],[124,116,73,0.08611709118216271],[124,116,74,0.08798408490144805],[124,116,75,0.08990241172137009],[124,116,76,0.09187197912768053],[124,116,77,0.09389260549528888],[124,116,78,0.09596401746994976],[124,116,79,0.09808584732349568],[124,117,64,0.06423702392670955],[124,117,65,0.06565496792215791],[124,117,66,0.06712323071241882],[124,117,67,0.06864238518402804],[124,117,68,0.07021293617774099],[124,117,69,0.07183531811470228],[124,117,70,0.07350989259673713],[124,117,71,0.07523694598070674],[124,117,72,0.07701668692695335],[124,117,73,0.07884924392177145],[124,117,74,0.08073466277405433],[124,117,75,0.0826729040859211],[124,117,76,0.08466384069746519],[124,117,77,0.08670725510557559],[124,117,78,0.0888028368568286],[124,117,79,0.09095017991447507],[124,118,64,0.05685875635689297],[124,118,65,0.05827979693230373],[124,118,66,0.05975291058290372],[124,118,67,0.06127864711869735],[124,118,68,0.06285748698298782],[124,118,69,0.06448983888442655],[124,118,70,0.06617603740373446],[124,118,71,0.0679163405750291],[124,118,72,0.06971092744179247],[124,118,73,0.071559895587407],[124,118,74,0.07346325864041714],[124,118,75,0.07542094375431607],[124,118,76,0.07743278906199991],[124,118,77,0.07949854110484195],[124,118,78,0.08161785223638424],[124,118,79,0.0837902780006694],[124,119,64,0.04946800948314278],[124,119,65,0.05089158308539021],[124,119,66,0.052368993075533],[124,119,67,0.053900766262115596],[124,119,68,0.05548735875452482],[124,119,69,0.05712915360054993],[124,119,70,0.0588264583991594],[124,119,71,0.06057950288842562],[124,119,72,0.062388436508633904],[124,119,73,0.06425332594050043],[124,119,74,0.06617415261866072],[124,119,75,0.06815081022022496],[124,119,76,0.07018310212854234],[124,119,77,0.07227073887213159],[124,119,78,0.074413335538767],[124,119,79,0.07661040916475181],[124,120,64,0.042069032440762266],[124,120,65,0.04349458585707361],[124,120,66,0.0449757468859589],[124,120,67,0.046513019420192314],[124,120,68,0.048106835310339546],[124,120,69,0.04975755200746795],[124,120,70,0.05146545018160892],[124,120,71,0.05323073131590916],[124,120,72,0.05505351527650337],[124,120,73,0.056933837858035796],[124,120,74,0.058871648304990865],[124,120,75,0.06086680680862944],[124,120,76,0.06291908197967266],[124,120,77,0.06502814829669051],[124,120,78,0.06719358353018595],[124,120,79,0.06941486614240366],[124,121,64,0.03466609070882315],[124,121,65,0.03609308150511631],[124,121,66,0.03757745792167816],[124,121,67,0.03911970103177731],[124,121,68,0.04072021851378782],[124,121,69,0.04237934229868623],[124,121,70,0.04409732619383827],[124,121,71,0.045874343483008895],[124,121,72,0.04771048450262627],[124,121,73,0.04960575419423252],[124,121,74,0.051560069633275696],[124,121,75,0.05357325753404274],[124,121,76,0.05564505173087564],[124,121,77,0.05777509063562536],[124,121,78,0.05996291467133685],[124,121,79,0.06220796368219428],[124,122,64,0.027263462969813412],[124,122,65,0.028691359919291448],[124,122,66,0.03017842614303956],[124,122,67,0.031725120001619755],[124,122,68,0.03333182509933719],[124,122,69,0.03499884793617464],[124,122,70,0.03672641553654227],[124,122,71,0.03851467305478473],[124,122,72,0.04036368135747104],[124,122,73,0.04227341458240014],[124,122,74,0.04424375767448163],[124,122,75,0.0462745038982838],[124,122,76,0.048365352327397804],[124,122,77,0.05051590531056904],[124,122,78,0.0527256659145906],[124,122,79,0.05499403534398506],[124,123,64,0.019865437912916006],[124,123,65,0.02129372141443764],[124,123,66,0.022782962346947877],[124,123,67,0.02433359647557748],[124,123,68,0.025945983440138265],[124,123,69,0.027620404411143662],[124,123,70,0.02935705972317154],[124,123,71,0.031156066485509393],[124,123,72,0.03301745617010754],[124,123,73,0.03494117217677528],[124,123,74,0.03692706737577711],[124,123,75,0.03897490162762085],[124,123,76,0.04108433928019073],[124,123,77,0.04325494664317031],[124,123,78,0.0454861894397548],[124,123,79,0.04777743023567782],[124,124,64,0.012476310981292094],[124,124,65,0.013904473467041212],[124,124,66,0.015395384893630293],[124,124,67,0.016949458558451647],[124,124,68,0.01856703025779649],[124,124,69,0.02024835594661789],[124,124,70,0.021993609376160128],[124,124,71,0.023802879709389546],[124,124,72,0.02567616911425552],[124,124,73,0.027613390334714105],[124,124,74,0.029614364239673452],[124,124,75,0.031678817349654276],[124,124,76,0.03380637934131148],[124,124,77,0.03599658052977128],[124,124,78,0.03824884932877648],[124,124,79,0.040562509688667925],[124,125,64,0.0051003810631853885],[124,125,65,0.006527927395160837],[124,125,66,0.008020016376288353],[124,125,67,0.009577038974263319],[124,125,68,0.011199307274164183],[124,125,69,0.012887052141622557],[124,125,70,0.014640420864378001],[124,125,71,0.016459474772146265],[124,125,72,0.018344186834838627],[124,125,73,0.02029443923905605],[124,125,74,0.022310020943024145],[124,125,75,0.024390625209756656],[124,125,76,0.02653584711859791],[124,125,77,0.02874518105509727],[124,125,78,0.031018018179205575],[124,125,79,0.03335364387182682],[124,126,64,-0.002258052873344907],[124,126,65,-8.316050184978829E-4],[124,126,66,6.611802334383077E-4],[124,126,67,0.00222067166877582],[124,126,68,0.00384715780495426],[124,126,69,0.005540844556789604],[124,126,70,0.007301852881616666],[124,126,71,0.009130216403257618],[124,126,72,0.011025879014851747],[124,126,73,0.012988692460470741],[124,126,74,0.015018413895686367],[124,126,75,0.017114703426878042],[124,126,76,0.019277121629428517],[124,126,77,0.021505127044764594],[124,126,78,0.023798073656229657],[124,126,79,0.026155208343822012],[124,127,64,-0.009594695201684877],[124,127,65,-0.008169814959980481],[124,127,66,-0.006676802695679718],[124,127,67,-0.005115311645353171],[124,127,68,-0.003485076704438761],[124,127,69,-0.0017859167582372493],[124,127,70,-1.7737033512266187E-5],[124,127,71,0.0018194685292461932],[124,127,72,0.003725614882920558],[124,127,73,0.005700523460159146],[124,127,74,0.007743919739225502],[124,127,75,0.009855430789094344],[124,127,76,0.01203458279394154],[124,127,77,0.014280798556982388],[124,127,78,0.016593394983650867],[124,127,79,0.018971580544148048],[124,128,64,-0.01690525711410784],[124,128,65,-0.01548240007413948],[124,128,66,-0.013989617672812371],[124,128,67,-0.012426585000982815],[124,128,68,-0.010793060201104598],[124,128,69,-0.00908888679578701],[124,128,70,-0.007313996036455772],[124,128,71,-0.005468409272180619],[124,128,72,-0.0035522403386364365],[124,128,73,-0.0015656979672735716],[124,128,74,4.909117854717815E-4],[124,128,75,0.002617183088709507],[124,128,76,0.00481260786752602],[124,128,77,0.007076573313260837],[124,128,78,0.009408359373623276],[124,128,79,0.011807136222681813],[124,129,64,-0.024185460155583316],[124,129,65,-0.02276506801153888],[124,129,66,-0.021272959619709653],[124,129,67,-0.019708831746646394],[124,129,68,-0.01807246560495357],[124,129,69,-0.016363729179721065],[124,129,70,-0.014582579574561438],[124,129,71,-0.012729065377320437],[124,129,72,-0.01080332904542769],[124,129,73,-0.008805609310960194],[124,129,74,-0.006736243605253267],[124,129,75,-0.0045956705032729195],[124,129,76,-0.0023844321875974295],[124,129,77,-1.031769320566367E-4],[124,129,78,0.002247338394963272],[124,129,79,0.004666245807580571],[124,130,64,-0.031431039813585304],[124,130,65,-0.030013540031832542],[124,130,66,-0.02852253673407823],[124,130,67,-0.02695774817408758],[124,130,68,-0.025318978446853047],[124,130,69,-0.023606119813200266],[124,130,70,-0.021819155043510396],[124,130,71,-0.019958159780628537],[124,130,72,-0.018023304921921723],[124,130,73,-0.01601485902056321],[124,130,74,-0.01393319070587451],[124,130,75,-0.011778771122940013],[124,130,76,-0.009552176391343647],[124,130,77,-0.007254090083072651],[124,130,78,-0.004885305719600774],[124,130,79,-0.002446729288114402],[124,131,64,-0.03863774916407825],[124,131,65,-0.037223554663801894],[124,131,66,-0.035734074162651175],[124,131,67,-0.03416904720335501],[124,131,68,-0.032528300564746204],[124,131,69,-0.03081175058483676],[124,131,70,-0.029019405502525797],[124,131,71,-0.027151367818012306],[124,131,72,-0.025207836671874317],[124,131,73,-0.02318911024289183],[124,131,74,-0.021095588164445456],[124,131,75,-0.018927773959703798],[124,131,76,-0.016686277495452373],[124,131,77,-0.014371817454605806],[124,131,78,-0.011985223827416847],[124,131,79,-0.009527440421346789],[124,132,64,-0.04580136257387102],[124,132,65,-0.04439087142223819],[124,132,66,-0.04290331773156486],[124,132,67,-0.04133846212564496],[124,132,68,-0.039696153857942895],[124,132,69,-0.0379763331334243],[124,132,70,-0.03617903344854345],[124,132,71,-0.03430438394945834],[124,132,72,-0.03235261180843807],[124,132,73,-0.03032404461853555],[124,132,74,-0.028219112806360025],[124,132,75,-0.026038352063163517],[124,132,76,-0.023782405794090855],[124,132,77,-0.02145202758563669],[124,132,78,-0.019048083691324935],[124,132,79,-0.016571555535571103],[124,133,64,-0.0529176794589683],[124,133,65,-0.051511274581302446],[124,133,66,-0.05002603773367065],[124,133,67,-0.04846175040351974],[124,133,68,-0.04681828409920863],[124,133,69,-0.04509560267087176],[124,133,70,-0.043293764648974054],[124,133,71,-0.04141292560062004],[124,133,72,-0.039453340503584844],[124,133,73,-0.037415366138144],[124,133,74,-0.03529946349652946],[124,133,75,-0.03310620021023336],[124,133,76,-0.030836252995000923],[124,133,77,-0.028490410113565567],[124,133,78,-0.026069573856131734],[124,133,79,-0.02357476303857442],[124,134,64,-0.059982528099103316],[124,134,65,-0.058580577004542334],[124,134,66,-0.0570980327729671],[124,134,67,-0.05553469752869067],[124,134,68,-0.05389046480484028],[124,134,69,-0.052165321863527514],[124,134,70,-0.05035935203324449],[124,134,71,-0.048472737063551485],[124,134,72,-0.04650575949702451],[124,134,73,-0.044458805058537165],[124,134,74,-0.04233236506170446],[124,134,75,-0.040127038832712514],[124,134,76,-0.037843536151374146],[124,134,77,-0.03548267970946206],[124,134,78,-0.03304540758632735],[124,134,79,-0.0305327757417706],[124,135,64,-0.06699176950863639],[124,135,65,-0.06559462403175653],[124,135,66,-0.06411513366633581],[124,135,67,-0.06255312093754206],[124,135,68,-0.06090850116290958],[124,135,69,-0.05918128477207696],[124,135,70,-0.05737157964329509],[124,135,71,-0.055479593456769116],[124,135,72,-0.05350563606480463],[124,135,73,-0.051450121878830024],[124,135,74,-0.049313572273126605],[124,135,75,-0.04709661800548559],[124,135,76,-0.04480000165463538],[124,135,77,-0.042424580074489904],[124,135,78,-0.039971326865224976],[124,135,79,-0.03744133486115142],[124,136,64,-0.07394130136344812],[124,136,65,-0.07254929742232996],[124,136,66,-0.07107320740221068],[124,136,67,-0.0695128739840346],[124,136,68,-0.06786823401930475],[124,136,69,-0.0661393208496438],[124,136,70,-0.06432626664267238],[124,136,71,-0.06242930474427533],[124,136,72,-0.060448772047219435],[124,136,73,-0.05838511137619962],[124,136,74,-0.05623887388914173],[124,136,75,-0.054010721494982206],[124,136,76,-0.05170142928777077],[124,136,77,-0.04931188799714048],[124,136,78,-0.04684310645516021],[124,136,79,-0.044296214079530105],[124,137,64,-0.08082706198402345],[124,137,65,-0.07944051935523899],[124,137,66,-0.07796816115637595],[124,137,67,-0.07640984997017541],[124,137,68,-0.0747655439217656],[124,137,69,-0.07303529899828787],[124,137,70,-0.07121927138440187],[124,137,71,-0.06931771981373214],[124,137,72,-0.06733100793622526],[124,137,73,-0.06525960670149256],[124,137,74,-0.06310409675796647],[124,137,75,-0.06086517086809007],[124,137,76,-0.05854363633938919],[124,137,77,-0.0561404174714667],[124,137,78,-0.05365655801893787],[124,137,79,-0.05109322367026592],[124,138,64,-0.08764503437488758],[124,138,65,-0.08626425648588743],[124,138,66,-0.08479594636505516],[124,138,67,-0.08323998623422368],[124,138,68,-0.08159635522207409],[124,138,69,-0.07986513168406661],[124,138,70,-0.07804649553781295],[124,138,71,-0.07614073061395554],[124,138,72,-0.07414822702252322],[124,138,73,-0.07206948353483289],[124,138,74,-0.06990510998077315],[124,138,75,-0.06765582966168426],[124,138,76,-0.06532248177868383],[124,138,77,-0.0629060238764807],[124,138,78,-0.06040753430269363],[124,138,79,-0.05782821468263433],[124,139,64,-0.09439125032002971],[124,139,65,-0.09301652405940741],[124,139,66,-0.09155256285492586],[124,139,67,-0.08999926829626037],[124,139,68,-0.08835664023603618],[124,139,69,-0.08662477911028921],[124,139,70,-0.08480388827394214],[124,139,71,-0.08289427635135849],[124,139,72,-0.08089635960194319],[124,139,73,-0.07881066430086492],[124,139,74,-0.0766378291347265],[124,139,75,-0.07437860761240844],[124,139,76,-0.07203387049092624],[124,139,77,-0.0696046082163505],[124,139,78,-0.06709193337980135],[124,139,79,-0.06449708318847969],[124,140,64,-0.10106179453462605],[124,140,65,-0.0996933900807403],[124,140,66,-0.09823406303037241],[124,140,67,-0.09668373406144082],[124,140,68,-0.09504242346156588],[124,140,69,-0.09331025344928023],[124,140,70,-0.09148745050983442],[124,140,71,-0.08957434774565742],[124,140,72,-0.08757138724144498],[124,140,73,-0.08547912244394718],[124,140,74,-0.083298220556285],[124,140,75,-0.08102946494701846],[124,140,76,-0.07867375757380568],[124,140,77,-0.07623212142170754],[124,140,78,-0.07370570295614265],[124,140,79,-0.0710957745904599],[124,141,64,-0.10765280887282735],[124,141,65,-0.10629097954125866],[124,141,66,-0.10483655611774179],[124,141,67,-0.10328947808068878],[124,141,68,-0.10164978585463613],[124,141,69,-0.09991762313241548],[124,141,70,-0.09809323921150215],[124,141,71,-0.09617699134461],[124,141,72,-0.09416934710449643],[124,141,73,-0.09207088676305686],[124,141,74,-0.08988230568453204],[124,141,75,-0.08760441673305597],[124,141,76,-0.08523815269438029],[124,141,77,-0.08278456871183015],[124,141,78,-0.08024484473649973],[124,141,79,-0.07762028799164933],[124,142,64,-0.11416049659192218],[124,142,65,-0.11280547870224222],[124,142,66,-0.11135621246691207],[124,142,67,-0.1098126558691469],[124,142,68,-0.10817486916340957],[124,142,69,-0.10644301719873961],[124,142,70,-0.10461737175585373],[124,142,71,-0.10269831389808781],[124,142,72,-0.10068633633614354],[124,142,73,-0.0985820458067187],[124,142,74,-0.09638616546484502],[124,142,75,-0.09409953729015863],[124,142,76,-0.09172312450694609],[124,142,77,-0.08925801401801259],[124,142,78,-0.08670541885238425],[124,142,79,-0.08406668062680822],[124,143,64,-0.12058112667250587],[124,143,65,-0.11923313943483937],[124,143,66,-0.11778926790980637],[124,143,67,-0.11624948828201331],[124,143,68,-0.11461388032017716],[124,143,69,-0.11288262970180041],[124,143,70,-0.11105603035122391],[124,143,71,-0.10913448679112159],[124,143,72,-0.10711851650740067],[124,143,73,-0.10500875232758988],[124,143,74,-0.10280594481253769],[124,143,75,-0.10051096466164189],[124,143,76,-0.09812480513146238],[124,143,77,-0.09564858446775248],[124,143,78,-0.09308354835093147],[124,143,79,-0.09043107235495473],[124,144,64,-0.12691103819483684],[124,144,65,-0.1255702836166941],[124,144,66,-0.1241320281760333],[124,144,67,-0.12259626594794704],[124,144,68,-0.12096309589128884],[124,144,69,-0.11923272417487762],[124,144,70,-0.11740546651668926],[124,144,71,-0.11548175053609933],[124,144,72,-0.11346211811914464],[124,144,73,-0.11134722779688011],[124,144,74,-0.10913785713665436],[124,144,75,-0.10683490514653315],[124,144,76,-0.10443939469270747],[124,144,77,-0.1019524749299382],[124,144,78,-0.09937542374504715],[124,144,79,-0.09670965021341682],[124,145,64,-0.13314664477153793],[124,145,65,-0.13181330758539567],[124,145,66,-0.13038087336580917],[124,145,67,-0.12884935376019457],[124,145,68,-0.12721886658523085],[124,145,69,-0.1254896381547641],[124,145,70,-0.12366200562031715],[124,145,71,-0.1217364193242686],[124,145,72,-0.1197134451656674],[124,145,73,-0.11759376697876334],[124,145,74,-0.11537818892407281],[124,145,75,-0.11306763789221042],[124,145,76,-0.11066316592032543],[124,145,77,-0.10816595262118944],[124,145,78,-0.10557730762495143],[124,145,79,-0.10289867303352018],[124,146,64,-0.13928443903631404],[124,146,65,-0.1379586866484227],[124,146,66,-0.13653226247983474],[124,146,67,-0.13500519542511535],[124,146,68,-0.13337762181852264],[124,146,69,-0.13164978776377223],[124,146,70,-0.12982205147603398],[124,146,71,-0.1278948856362242],[124,146,72,-0.12586887975756056],[124,146,73,-0.12374474256445833],[124,146,74,-0.12152330438358794],[124,146,75,-0.11920551954732594],[124,146,76,-0.11679246880943539],[124,146,77,-0.11428536177302628],[124,146,78,-0.1116855393308066],[124,146,79,-0.10899447611758872],[124,147,64,-0.1453209971888545],[124,147,65,-0.1440029796497534],[124,147,66,-0.14258273800629806],[124,147,67,-0.1410603180682729],[124,147,68,-0.13943587433960336],[124,147,69,-0.13770967235013343],[124,147,70,-0.1358820909992663],[124,147,71,-0.13395362491154117],[124,147,72,-0.1319248868041012],[124,147,73,-0.12979660986614072],[124,147,74,-0.1275696501501482],[124,147,75,-0.12524498897517578],[124,147,76,-0.12282373534197355],[124,147,77,-0.12030712836003798],[124,147,78,-0.117696539686587],[124,147,79,-0.11499347597742249],[124,148,64,-0.15125298359607453],[124,148,65,-0.14994283359328875],[124,148,66,-0.14852893056514982],[124,148,67,-0.14701133689824064],[124,148,68,-0.14539022491085773],[124,148,69,-0.14366587918694262],[124,148,70,-0.14183869892152],[124,148,71,-0.1399092002777116],[124,148,72,-0.13787801875528827],[124,148,73,-0.13574591157084082],[124,148,74,-0.1335137600493912],[124,148,75,-0.1311825720276718],[124,148,76,-0.12875348426891497],[124,148,77,-0.12622776488919607],[124,148,78,-0.12360681579534794],[124,148,79,-0.12089217513440531],[124,149,64,-0.15707715544938217],[124,149,65,-0.15577498832278314],[124,149,66,-0.154367563609348],[124,149,67,-0.1528549599278184],[124,149,68,-0.15123736704847213],[124,149,69,-0.1495150882293399],[124,149,70,-0.147688542563578],[124,149,71,-0.14575826733807107],[124,149,72,-0.14372492040322382],[124,149,73,-0.1415892825540188],[124,149,74,-0.13935225992217282],[124,149,75,-0.13701488637960513],[124,149,76,-0.13457832595307306],[124,149,77,-0.1320438752500086],[124,149,78,-0.12941296589558038],[124,149,79,-0.12668716698093563],[124,150,64,-0.16279036747812436],[124,150,65,-0.16149628125843152],[124,150,66,-0.16009545818321558],[124,150,67,-0.15858799275280389],[124,150,68,-0.1569740918202741],[124,150,69,-0.15525407693007598],[124,150,70,-0.15342838666747272],[124,150,71,-0.1514975790188684],[124,150,72,-0.14946233374298434],[124,150,73,-0.14732345475296593],[124,150,74,-0.14508187250923987],[124,150,75,-0.1427386464233502],[124,150,76,-0.1402949672726186],[124,150,77,-0.13775215962566367],[124,150,78,-0.1351116842788087],[124,150,79,-0.13237514070332645],[124,151,64,-0.16838957671937294],[124,151,65,-0.167103652190274],[124,151,66,-0.1657095377380794],[124,151,67,-0.16420734338848686],[124,151,68,-0.16259729270171197],[124,151,69,-0.16087972511362858],[124,151,70,-0.15905509828739528],[124,151,71,-0.1571239904756384],[124,151,72,-0.15508710289315197],[124,151,73,-0.1529452621001941],[124,151,74,-0.1506994223962057],[124,151,75,-0.14835066822417464],[124,151,76,-0.14590021658548846],[124,151,77,-0.14334941946532387],[124,151,78,-0.14069976626858283],[124,151,79,-0.1379528862663395],[124,152,64,-0.17387184734373118],[124,152,65,-0.1725941481281018],[124,152,66,-0.17120683300486716],[124,152,67,-0.169710027163542],[124,152,68,-0.1681039704896623],[124,152,69,-0.1663890199085457],[124,152,70,-0.16456565173921722],[124,152,71,-0.1626344640585612],[124,152,72,-0.16059617907567625],[124,152,73,-0.15845164551649638],[124,152,74,-0.1562018410185151],[124,152,75,-0.15384787453583115],[124,152,76,-0.15139098875435897],[124,152,77,-0.14883256251725296],[124,152,78,-0.14617411326055618],[124,152,79,-0.1434172994590358],[124,153,64,-0.17923435553733746],[124,153,65,-0.1779649282080361],[124,153,66,-0.17658448692383966],[124,153,67,-0.17509317167149874],[124,153,68,-0.17349123827423152],[124,153,69,-0.17177906073819482],[124,153,70,-0.1699571336088056],[124,153,71,-0.16802607433698002],[124,153,72,-0.16598662565525157],[124,153,73,-0.1638396579638507],[124,153,74,-0.16158617172656586],[124,153,75,-0.15922729987661344],[124,153,76,-0.15676431023236226],[124,153,77,-0.1541986079229506],[124,153,78,-0.15153173782381912],[124,153,79,-0.14876538700211162],[124,154,64,-0.18447439444018043],[124,154,65,-0.1832132686558977],[124,154,66,-0.1818397596315724],[124,154,67,-0.180354021779905],[124,154,68,-0.17875632646867978],[124,154,69,-0.17704706437003004],[124,154,70,-0.1752267478192453],[124,154,71,-0.17329601318319465],[124,154,72,-0.17125562323832022],[124,154,73,-0.169106469558287],[124,154,74,-0.1668495749111103],[124,154,75,-0.1644860956659845],[124,154,76,-0.1620173242096602],[124,154,77,-0.15944469137241013],[124,154,78,-0.1567697688636034],[124,154,79,-0.15399427171684388],[124,155,64,-0.1895893791404628],[124,155,65,-0.18833656780710484],[124,155,66,-0.1869700335049247],[124,155,67,-0.18548994469691438],[124,155,68,-0.1838965878971891],[124,155,69,-0.18219037002311822],[124,155,70,-0.1803718207567031],[124,155,71,-0.17844159491526934],[124,155,72,-0.17640047483143662],[124,155,73,-0.17424937274244634],[124,155,74,-0.17198933318866905],[124,155,75,-0.16962153542151814],[124,155,76,-0.16714729582061305],[124,155,77,-0.16456807032023557],[124,155,78,-0.16188545684509714],[124,155,79,-0.159101197755374],[124,156,64,-0.19457685172514394],[124,156,65,-0.19333235118322722],[124,156,66,-0.1919728182621283],[124,156,67,-0.19049843509543896],[124,156,68,-0.18890950294061892],[124,156,69,-0.18720644453405255],[124,156,70,-0.18538980645506864],[124,156,71,-0.18346026149898287],[124,156,72,-0.18141861105913148],[124,156,73,-0.1792657875179744],[124,156,74,-0.1770028566470897],[124,156,75,-0.17463102001628494],[124,156,76,-0.17215161741167329],[124,156,77,-0.16956612926275072],[124,156,78,-0.16687617907849972],[124,156,79,-0.16408353589246827],[124,157,64,-0.19943448638680106],[124,157,65,-0.19819827662533718],[124,157,66,-0.19684575612112853],[124,157,67,-0.19537712029499532],[124,157,68,-0.1937926847403808],[124,157,69,-0.1920928875813892],[124,157,70,-0.19027829183950506],[124,157,71,-0.18834958780905908],[124,157,72,-0.18630759544140318],[124,157,73,-0.18415326673787713],[124,157,74,-0.18188768815138578],[124,157,75,-0.17951208299681742],[124,157,76,-0.17702781387014166],[124,157,77,-0.17443638507623604],[124,157,78,-0.17173944506545225],[124,157,79,-0.16893878887888558],[124,158,64,-0.20416009458653228],[124,158,65,-0.20293213948388156],[124,158,66,-0.20158662701490926],[124,158,67,-0.200123765500974],[124,158,68,-0.19854388446015947],[124,158,69,-0.19684743696833806],[124,158,70,-0.19503500202864077],[124,158,71,-0.19310728694940693],[124,158,72,-0.19106512973057044],[124,158,73,-0.18890950145856789],[124,158,74,-0.18664150870958662],[124,158,75,-0.18426239596138416],[124,158,76,-0.18177354801351542],[124,158,77,-0.17917649241601907],[124,158,78,-0.1764729019065735],[124,158,79,-0.1736645968560836],[124,159,64,-0.20875163027305887],[124,159,65,-0.2075318778652312],[124,159,66,-0.20619335386395488],[124,159,67,-0.2047362791014885],[124,159,68,-0.20316099660563458],[124,159,69,-0.20146797396385807],[124,159,70,-0.19965780569555192],[124,159,71,-0.1977312156325205],[124,159,72,-0.19568905930763747],[124,159,73,-0.19353232635176443],[124,159,74,-0.19126214289874788],[124,159,75,-0.1888797739987249],[124,159,76,-0.18638662603957656],[124,159,77,-0.18378424917657787],[124,159,78,-0.18107433977025555],[124,159,79,-0.17825874283241583],[124,160,64,-0.21320719515811304],[124,160,65,-0.2119955779349929],[124,160,66,-0.21066400790593265],[124,160,67,-0.20921271802188868],[124,160,68,-0.20764206440229127],[124,160,69,-0.20595252870224623],[124,160,70,-0.20414472048762522],[124,160,71,-0.20221937961812753],[124,160,72,-0.20017737863825802],[124,160,73,-0.19801972517631639],[124,160,74,-0.19574756435121277],[124,160,75,-0.19336218118733417],[124,160,76,-0.19086500303731369],[124,160,77,-0.18825760201273511],[124,160,78,-0.18554169742279958],[124,160,79,-0.18271915822090656],[124,161,64,-0.21752504404789963],[124,161,65,-0.21632147927787682],[124,161,66,-0.21499681408239424],[124,161,67,-0.21355129313672927],[124,161,68,-0.2119852852311107],[124,161,69,-0.2102992856410113],[124,161,70,-0.2084939185050949],[124,161,71,-0.20656993921088163],[124,161,72,-0.2045282367880933],[124,161,73,-0.2023698363097607],[124,161,74,-0.2000959013009146],[124,161,75,-0.19770773615508652],[124,161,76,-0.1952067885584654],[124,161,77,-0.19259465192174563],[124,161,78,-0.18987306781969637],[124,161,79,-0.1870439284383969],[124,162,64,-0.22170359023073638],[124,162,65,-0.22050798031421726],[124,162,66,-0.2191901564825871],[124,162,67,-0.21775037473929715],[124,162,68,-0.2161890161222374],[124,162,69,-0.2145065890771305],[124,162,70,-0.21270373183834457],[124,162,71,-0.2107812148171896],[124,162,72,-0.20873994299765875],[124,162,73,-0.20658095833969692],[124,162,74,-0.20430544218981872],[124,162,75,-0.20191471769929892],[124,162,76,-0.19941025224978481],[124,162,77,-0.19679365988636754],[124,162,78,-0.19406670375813517],[124,162,79,-0.19123129856615928],[124,163,64,-0.22574141092098687],[124,163,65,-0.2245536437732687],[124,163,66,-0.22324258384450268],[124,163,67,-0.2218084980688091],[124,163,68,-0.220251779306748],[124,163,69,-0.218572948721811],[124,163,70,-0.21677265816410696],[124,163,71,-0.21485169256130188],[124,163,72,-0.2128109723167816],[124,163,73,-0.21065155571511296],[124,163,74,-0.20837464133462713],[124,163,75,-0.205981570467354],[124,163,76,-0.20347382954614635],[124,163,77,-0.20085305257904096],[124,163,78,-0.19812102359087302],[124,163,79,-0.19527967907209953],[124,164,64,-0.22963725275905722],[124,164,65,-0.2284572022230389],[124,164,66,-0.22715281511292174],[124,164,67,-0.22572436889505432],[124,164,68,-0.22417226782628086],[124,164,69,-0.22249704533351877],[124,164,70,-0.22069936640031207],[124,164,71,-0.21878002996042467],[124,164,72,-0.21673997129843492],[124,164,73,-0.21458026445741274],[124,164,74,-0.21230212465350484],[124,164,75,-0.20990691069764766],[124,164,76,-0.20739612742425706],[124,164,77,-0.20477142812693716],[124,164,78,-0.20203461700122205],[124,164,79,-0.19918765159431395],[124,165,64,-0.23339003736763642],[124,165,65,-0.23221756365684987],[124,165,66,-0.23091974505464685],[124,165,67,-0.22949686916066314],[124,165,68,-0.2279493512007189],[124,165,69,-0.22627773640946336],[124,165,70,-0.22448270241978363],[124,165,71,-0.22256506165904655],[124,165,72,-0.2205257637521334],[124,165,73,-0.21836589793134775],[124,165,74,-0.21608669545302261],[124,165,75,-0.2136895320210479],[124,165,76,-0.21117593021716474],[124,165,77,-0.20854756193807023],[124,165,78,-0.2058062508393489],[124,165,79,-0.2029539747861877],[124,166,64,-0.23699886696406758],[124,166,65,-0.2358338171365022],[124,166,66,-0.23454244993079842],[124,166,67,-0.23312506268088007],[124,166,68,-0.2315820811537994],[124,166,69,-0.22991406193541775],[124,166,70,-0.22812169482265143],[124,166,71,-0.2262058052223508],[124,166,72,-0.22416735655677034],[124,166,73,-0.22200745267571553],[124,166,74,-0.2197273402751867],[124,166,75,-0.2173284113227426],[124,166,76,-0.21481220548943336],[124,166,77,-0.21218041258834242],[124,166,78,-0.209434875019755],[124,166,79,-0.2065775902229121],[124,167,64,-0.2404630300289886],[124,167,65,-0.23930523849219354],[124,167,66,-0.23802019322632484],[124,167,67,-0.23660820090099477],[124,167,68,-0.23506969739680372],[124,167,69,-0.2334052501940208],[124,167,70,-0.23161556076763945],[124,167,71,-0.22970146698887162],[124,167,72,-0.22766394553304592],[124,167,73,-0.2255041142939893],[124,167,74,-0.22322323480471207],[124,167,75,-0.22082271466462766],[124,167,76,-0.21830410997314453],[124,167,77,-0.21566912776967762],[124,167,78,-0.2129196284800975],[124,167,79,-0.2100576283695692],[124,168,64,-0.24378200703107378],[124,168,65,-0.24263129607901024],[124,168,66,-0.24135243143654628],[124,168,67,-0.23994572871124575],[124,168,68,-0.23841163347014427],[124,168,69,-0.2367507236313834],[124,168,70,-0.2349637118620389],[124,168,71,-0.23305144798220612],[124,168,72,-0.23101492137530477],[124,168,73,-0.22885526340468443],[124,168,74,-0.2265737498363528],[124,168,75,-0.22417180326805364],[124,168,76,-0.2216509955645365],[124,168,77,-0.21901305029906193],[124,168,78,-0.21625984520116204],[124,168,79,-0.2133934146106088],[124,169,64,-0.2469554762079531],[124,169,65,-0.2458116565900803],[124,169,66,-0.24453881991081883],[124,169,67,-0.24313729031928866],[124,169,68,-0.2416075226429385],[124,169,69,-0.23995010478208334],[124,169,70,-0.23816576011046164],[124,169,71,-0.23625534988187413],[124,169,72,-0.23421987564287094],[124,169,73,-0.23206048165156257],[124,169,74,-0.22977845730238133],[124,169,75,-0.22737523955701722],[124,169,76,-0.2248524153813719],[124,169,77,-0.22221172418857515],[124,169,78,-0.21945506028808037],[124,169,79,-0.21658447534079528],[124,170,64,-0.24998331940340535],[124,170,65,-0.24884619092647542],[124,170,66,-0.24757921875340783],[124,170,67,-0.24618273518031197],[124,170,68,-0.24465720387065404],[124,170,69,-0.2430032222526426],[124,170,70,-0.241221523922459],[124,170,71,-0.2393129810534117],[124,170,72,-0.2372786068109689],[124,170,73,-0.2351195577737496],[124,170,74,-0.23283713636030257],[124,170,75,-0.23043279326188926],[124,170,76,-0.22790812988112374],[124,170,77,-0.22526490077650796],[124,170,78,-0.22250501611287787],[124,170,79,-0.21963054411772365],[124,171,64,-0.2528656279606336],[124,171,65,-0.2517349801236747],[124,171,66,-0.2504736987813846],[124,171,67,-0.2490821239846196],[124,171,68,-0.24756072781064486],[124,171,69,-0.24591011676329333],[124,171,70,-0.2441310341788191],[124,171,71,-0.24222436263751446],[124,171,72,-0.24019112638104456],[124,171,73,-0.2380324937355911],[124,171,74,-0.2357497795406175],[124,171,75,-0.23334444758349016],[124,171,76,-0.23081811303979116],[124,171,77,-0.22817254491937233],[124,171,78,-0.22540966851816724],[124,171,79,-0.22253156787571127],[124,172,64,-0.2556027086717435],[124,172,65,-0.2544783213347107],[124,172,66,-0.25322254753966167],[124,172,67,-0.2518357347027952],[124,172,68,-0.25031836289568754],[124,172,69,-0.24867104724815448],[124,172,70,-0.24689454035666092],[124,172,71,-0.2449897346983433],[124,172,72,-0.2429576650506019],[124,172,73,-0.24079951091635288],[124,172,74,-0.2385165989547534],[124,172,75,-0.2361104054176305],[124,172,76,-0.23358255859145904],[124,172,77,-0.23093484124492536],[124,172,78,-0.2281691930821017],[124,172,79,-0.22528771320118346],[124,173,64,-0.25819508978346606],[124,173,65,-0.2570767338700358],[124,173,66,-0.2558262753732121],[124,173,67,-0.25444406868848835],[124,173,68,-0.25293060146557045],[124,173,69,-0.25128649701386396],[124,173,70,-0.24951251671336883],[124,173,71,-0.24760956243104248],[124,173,72,-0.24557867894259955],[124,173,73,-0.24342105635982048],[124,173,74,-0.241138032563201],[124,173,75,-0.2387310956401597],[124,173,76,-0.23620188632865524],[124,173,77,-0.23355220046624814],[124,173,78,-0.23078399144463513],[124,173,79,-0.22789937266959936],[124,174,64,-0.2606435270589893],[124,174,65,-0.2595309652939797],[124,174,66,-0.2582856215563387],[124,174,67,-0.25690785683869444],[124,174,68,-0.2553981659565927],[124,174,69,-0.25375717995652525],[124,174,70,-0.25198566852923],[124,174,71,-0.25008454242832967],[124,174,72,-0.24805485589427334],[124,174,73,-0.24589780908365344],[124,174,74,-0.24361475050373105],[124,174,75,-0.2412071794523888],[124,174,76,-0.23867674846335585],[124,174,77,-0.23602526575674954],[124,174,78,-0.23325469769495322],[124,174,79,-0.23036717124377937],[124,175,64,-0.2629490098959776],[124,175,65,-0.26184199757786963],[124,175,66,-0.26060156047906413],[124,175,67,-0.2592280658115965],[124,175,68,-0.25772201514905324],[124,175,69,-0.2560840468370503],[124,175,70,-0.254314938408857],[124,175,71,-0.25241560900623616],[124,175,72,-0.2503871218054595],[124,175,73,-0.24823068644857504],[124,175,74,-0.24594766147975844],[124,175,75,-0.24353955678696437],[124,175,76,-0.24100803604872956],[124,175,77,-0.23835491918616247],[124,175,78,-0.23558218482014814],[124,175,79,-0.23269197273371311],[124,176,64,-0.265112767500836],[124,176,65,-0.26401105330987507],[124,176,66,-0.26277530789070813],[124,176,67,-0.2614059043020365],[124,176,68,-0.2599033504727891],[124,176,69,-0.25826829161495557],[124,176,70,-0.25650151264144694],[124,176,71,-0.2546039405890572],[124,176,72,-0.25257664704647875],[124,176,73,-0.2504208505874589],[124,176,74,-0.24813791920891737],[124,176,75,-0.24572937277425044],[124,176,76,-0.24319688546166784],[124,176,77,-0.24054228821760004],[124,176,78,-0.2377675712152032],[124,176,79,-0.23487488631790676],[124,177,64,-0.26713627511909044],[124,177,65,-0.26603960196144705],[124,177,66,-0.26480832720051795],[124,177,67,-0.2634428293744797],[124,177,68,-0.26194362237063185],[124,177,69,-0.26031135784048176],[124,177,70,-0.2585468276197531],[124,177,71,-0.25665096615338023],[124,177,72,-0.2546248529254499],[124,177,73,-0.252469714894175],[124,177,74,-0.25018692893171746],[124,177,75,-0.24777802426908957],[124,177,76,-0.2452446849459804],[124,177,77,-0.2425887522655391],[124,177,78,-0.2398122272541494],[124,177,79,-0.2369172731261362],[124,178,64,-0.2690212603219514],[124,178,65,-0.2679293662104203],[124,178,66,-0.2667023358354209],[124,178,67,-0.2653405528535443],[124,178,68,-0.2638445367198511],[124,178,69,-0.26221494510510657],[124,178,70,-0.26045257631783536],[124,178,71,-0.25855837173126417],[124,178,72,-0.25653341821510556],[124,178,73,-0.25437895057227367],[124,178,74,-0.2520963539803488],[124,178,75,-0.24968716643801425],[124,178,76,-0.2471530812163193],[124,178,77,-0.2444959493147969],[124,178,78,-0.24171778192246918],[124,178,79,-0.23882075288368332],[124,179,64,-0.2707697093491248],[124,179,65,-0.2696823283208396],[124,179,66,-0.2684593116549622],[124,179,67,-0.2671010477721567],[124,179,68,-0.26560806131165016],[124,179,69,-0.26398101555051123],[124,179,70,-0.2622207148276535],[124,179,71,-0.2603281069726274],[124,179,72,-0.2583042857391663],[124,179,73,-0.25615049324356176],[124,179,74,-0.25386812240769885],[124,179,75,-0.2514587194069662],[124,179,76,-0.2489239861228958],[124,179,77,-0.24626578260056875],[124,179,78,-0.24348612951080773],[124,179,79,-0.24058721061710742],[124,180,64,-0.2723838735077295],[124,180,65,-0.2713007365793708],[124,180,66,-0.2700814994232883],[124,180,67,-0.26872655487719377],[124,180,68,-0.26723643238856687],[124,180,69,-0.2656118004358624],[124,180,70,-0.26385346895435846],[124,180,71,-0.26196239176670544],[124,180,72,-0.25993966901813836],[124,180,73,-0.2577865496164342],[124,180,74,-0.25550443367643927],[124,180,75,-0.25309487496938543],[124,180,76,-0.25055958337684814],[124,180,77,-0.24790042734938],[124,180,78,-0.2451194363698478],[124,180,79,-0.24221880342141788],[124,181,64,-0.27386627562741717],[124,181,65,-0.2727871117883942],[124,181,66,-0.2715714173382696],[124,181,67,-0.27021958919270916],[124,181,68,-0.2687321612398852],[124,181,69,-0.2671098067635038],[124,181,70,-0.26535334087038676],[124,181,71,-0.26346372292267706],[124,181,72,-0.2614420589746289],[124,181,73,-0.25928960421405767],[124,181,74,-0.25700776540828096],[124,181,75,-0.25459810335477095],[124,181,76,-0.25206233533636113],[124,181,77,-0.2494023375810549],[124,181,78,-0.2466201477264518],[124,181,79,-0.24371796728874462],[124,182,64,-0.27521971657171695],[124,182,65,-0.27414425381580143],[124,182,66,-0.27293186361778865],[124,182,67,-0.27158294664075977],[124,182,68,-0.27009804085507105],[124,182,69,-0.26847782396308273],[124,182,70,-0.2667231158283694],[124,182,71,-0.2648348809094788],[124,182,72,-0.2628142306982014],[124,182,73,-0.26066242616242796],[124,182,74,-0.2583808801934204],[124,182,75,-0.25597116005772313],[124,182,76,-0.2534349898535533],[124,182,77,-0.25077425297172007],[124,182,78,-0.2479909945610853],[124,182,79,-0.245087423998524],[124,183,64,-0.2764472818055004],[124,183,65,-0.2753752482013885],[124,183,66,-0.27416592314308497],[124,183,67,-0.2728197107197383],[124,183,68,-0.2713371526351327],[124,183,69,-0.2697189306340022],[124,183,70,-0.26796586893275864],[124,183,71,-0.26607893665470095],[124,183,72,-0.26405925026966426],[124,183,73,-0.26190807603819477],[124,183,74,-0.25962683246006724],[124,183,75,-0.25721709272737403],[124,183,76,-0.25468058718203146],[124,183,77,-0.25201920577773984],[124,183,78,-0.24923500054642334],[124,183,79,-0.24633018806909945],[124,184,64,-0.27755234801866135],[124,184,65,-0.2764834728199438],[124,184,66,-0.27527697415925423],[124,184,67,-0.27393325924029654],[124,184,68,-0.2724528731619994],[124,184,69,-0.270836501346298],[124,184,70,-0.26908497197026493],[124,184,71,-0.267199258402666],[124,184,72,-0.2651804816448917],[124,184,73,-0.2630299127763511],[124,184,74,-0.2607489754041543],[124,184,75,-0.258339248117297],[124,184,76,-0.25580246694520636],[124,184,77,-0.25314052782067786],[124,184,78,-0.2503554890472306],[124,184,79,-0.2474495737708311],[124,185,64,-0.27853858980597435],[124,185,65,-0.2774726046009953],[124,185,66,-0.276268695032865],[124,185,67,-0.2749272711188283],[124,185,68,-0.2734488810258826],[124,185,69,-0.271834213499902],[124,185,70,-0.27008410029906615],[124,185,71,-0.26819951863164926],[124,185,72,-0.266181593598138],[124,185,73,-0.26403160063775066],[124,185,74,-0.2617509679791923],[124,185,75,-0.25934127909585625],[124,185,76,-0.25680427516533166],[124,185,77,-0.2541418575332487],[124,185,78,-0.25135609018148286],[124,185,79,-0.248449202200677],[124,186,64,-0.2794099864031365],[124,186,65,-0.27834662630521545],[124,186,66,-0.27714507106669417],[124,186,67,-0.27580573322851654],[124,186,68,-0.2743291637106211],[124,186,69,-0.2727160542422976],[124,186,70,-0.27096723979679516],[124,186,71,-0.2690837010302428],[124,186,72,-0.2670665667248494],[124,186,73,-0.2649171162364551],[124,186,74,-0.26263678194626827],[124,186,75,-0.2602271517170043],[124,186,76,-0.2576899713532741],[124,186,77,-0.25502714706626384],[124,186,78,-0.25224074794272944],[124,186,79,-0.2493330084182498],[124,187,64,-0.2801708284789688],[124,187,65,-0.27910983335746575],[124,187,66,-0.2779104013715651],[124,187,67,-0.2765729473079179],[124,187,68,-0.2750980245369914],[124,187,69,-0.27348632744454104],[124,187,70,-0.2717386938672841],[124,187,71,-0.2698561075328485],[124,187,72,-0.26783970050395145],[124,187,73,-0.2656907556268906],[124,187,74,-0.26341070898417296],[124,187,75,-0.2610011523515049],[124,187,76,-0.258463835658985],[124,187,77,-0.25580066945654856],[124,187,78,-0.25301372738367633],[124,187,79,-0.25010524864332717],[124,188,64,-0.28082572498383507],[124,188,65,-0.2797668407365399],[124,188,66,-0.2785693057953387],[124,188,67,-0.27723353692714736],[124,188,68,-0.27576008966403875],[124,188,69,-0.27414966073571034],[124,188,70,-0.2724030905061191],[124,188,71,-0.2705213654143481],[124,188,72,-0.26850562041966797],[124,188,73,-0.26635714145087186],[124,188,74,-0.26407736785970803],[124,188,75,-0.2616678948786344],[124,188,76,-0.25913047608274264],[124,188,77,-0.25646702585588765],[124,188,78,-0.2536796218610493],[124,188,79,-0.2507705075148753],[124,189,64,-0.28137961005421497],[124,189,65,-0.2803225899215347],[124,189,66,-0.2791267319089955],[124,189,67,-0.2777924545115942],[124,189,68,-0.2763203151483612],[124,189,69,-0.2747110125957145],[124,189,70,-0.272965389424943],[124,189,71,-0.2710844344438925],[124,189,72,-0.2690692851428098],[124,189,73,-0.26692123014442704],[124,189,74,-0.26464171165811157],[124,189,75,-0.26223232793830287],[124,189,76,-0.25969483574708596],[124,189,77,-0.25703115282093747],[124,189,78,-0.2542433603416683],[124,189,79,-0.25133370541151445],[124,190,64,-0.28183774997346667],[124,190,65,-0.28078235589489287],[124,190,66,-0.2795879620498506],[124,190,67,-0.2782549884232104],[124,190,68,-0.27678399406139387],[124,190,69,-0.2751756795065027],[124,190,70,-0.27343088923454684],[124,190,71,-0.27155061409784775],[124,190,72,-0.2695359937715692],[124,190,73,-0.2673883192044616],[124,190,74,-0.2651090350736408],[124,190,75,-0.26269974224362713],[124,190,76,-0.2601622002294899],[124,190,77,-0.25749832966413677],[124,190,78,-0.25471021476977274],[124,190,79,-0.2518001058334737],[124,191,64,-0.2822057501887748],[124,191,65,-0.2811517542021079],[124,191,66,-0.279958620421888],[124,191,67,-0.2786267700993613],[124,191,68,-0.27715676366467434],[124,191,69,-0.2755493031616648],[124,191,70,-0.27380523468673734],[124,191,71,-0.2719255508318842],[124,191,72,-0.2699113931318121],[124,191,73,-0.2677640545152554],[124,191,74,-0.2654849817603028],[124,191,75,-0.2630757779539553],[124,191,76,-0.26053820495576874],[124,191,77,-0.25787418586561706],[124,191,78,-0.2550858074955952],[124,191,79,-0.2521753228460204],[124,192,64,-0.2824895623842736],[124,192,65,-0.2814367480680845],[124,192,66,-0.2802446802532095],[124,192,67,-0.2789137812492348],[124,192,68,-0.2774446126430917],[124,192,69,-0.2758378777344179],[124,192,70,-0.2740944239749781],[124,192,71,-0.27221524541221165],[124,192,72,-0.27020148513686437],[124,192,73,-0.26805443773478677],[124,192,74,-0.2657755517427258],[124,192,75,-0.2633664321083278],[124,192,76,-0.26082884265420436],[124,192,77,-0.25816470854609685],[124,192,78,-0.25537611876516797],[124,192,79,-0.25246532858435955],[124,193,64,-0.2826954916103579],[124,193,65,-0.2816436555701599],[124,193,66,-0.2804524710106123],[124,193,67,-0.2791223611078144],[124,193,68,-0.27765388839612304],[124,193,69,-0.27604775720398467],[124,193,70,-0.2743048160938104],[124,193,71,-0.2724260603059603],[124,193,72,-0.27041263420679695],[124,193,73,-0.26826583374088764],[124,193,74,-0.265987108887183],[124,193,75,-0.26357806611939194],[124,193,76,-0.26104047087040105],[124,193,77,-0.258376250000777],[124,193,78,-0.25558749427137684],[124,193,79,-0.25267646082001394],[124,194,64,-0.2828302034691693],[124,194,65,-0.28177915686778765],[124,194,66,-0.2805886856712766],[124,194,67,-0.27925921374741003],[124,194,68,-0.27779130438704946],[124,194,69,-0.2761856627403585],[124,194,70,-0.27444313825704625],[124,194,71,-0.2725647271307047],[124,194,72,-0.2705515747472046],[124,194,73,-0.2684049781372273],[124,194,74,-0.26612638843275616],[124,194,75,-0.263717413327754],[124,194,76,-0.2611798195428702],[124,194,77,-0.25851553529421967],[124,194,78,-0.2557266527662534],[124,194,79,-0.25281543058867306],[124,195,64,-0.2829007313562756],[124,195,65,-0.2818503014888837],[124,195,66,-0.28066038805158655],[124,195,67,-0.2793314154467613],[124,195,68,-0.2778639475501695],[124,195,69,-0.2762586901474696],[124,195,70,-0.27451649337474904],[124,195,71,-0.27263835416314186],[124,195,72,-0.27062541868749035],[124,195,73,-0.2684789848191359],[124,195,74,-0.266200504582658],[124,195,75,-0.26379158661678836],[124,195,76,-0.2612539986393473],[124,195,77,-0.25858966991623644],[124,195,78,-0.2558006937345185],[124,195,79,-0.2528893298795273],[124,196,64,-0.2829144837585116],[124,196,65,-0.28186451567281934],[124,196,66,-0.2806750201930518],[124,196,67,-0.2793464221176829],[124,196,68,-0.2778792857559754],[124,196,69,-0.2762743173647175],[124,196,70,-0.2745323675889709],[124,196,71,-0.2726544339068986],[124,196,72,-0.2706416630786287],[124,196,73,-0.26849535359923815],[124,196,74,-0.2662169581556796],[124,196,75,-0.26380808608787454],[124,196,76,-0.26127050585381906],[124,196,77,-0.25860614749874433],[124,196,78,-0.2558171051283493],[124,196,79,-0.25290563938606037],[124,197,64,-0.2828792516080225],[124,197,65,-0.2818296097700924],[124,197,66,-0.28064040980536886],[124,197,67,-0.27931207678929115],[124,197,68,-0.2778451753343373],[124,197,69,-0.27624041202691973],[124,197,70,-0.27449863786828754],[124,197,71,-0.27262085071950193],[124,197,72,-0.270608197750445],[124,197,73,-0.26846197789293846],[124,197,74,-0.2661836442978074],[124,197,75,-0.2637748067960961],[124,197,76,-0.2612372343642999],[124,197,77,-0.25857285759364],[124,197,78,-0.2557837711634082],[124,197,79,-0.25287223631833455],[124,198,64,-0.282803215692478],[124,198,65,-0.2817537856986462],[124,198,66,-0.28056477776659094],[124,198,67,-0.279236617149781],[124,198,68,-0.27776986865565745],[124,198,69,-0.27616523908263346],[124,198,70,-0.27442357966109765],[124,198,71,-0.27254588849848516],[124,198,72,-0.27053331302838035],[124,198,73,-0.268387152463726],[124,198,74,-0.2661088602539722],[124,198,75,-0.26370004654637835],[124,198,76,-0.26116248065132197],[124,198,77,-0.258498093511651],[124,198,78,-0.2557089801761028],[124,198,79,-0.2527974022767394],[124,199,64,-0.28269495412146806],[124,199,65,-0.28164564445685203],[124,199,66,-0.280456745680421],[124,199,67,-0.27912868314576755],[124,199,68,-0.2776620217700141],[124,199,69,-0.2760574684708721],[124,199,70,-0.2743158746077021],[124,199,71,-0.27243823842664094],[124,199,72,-0.27042570750975603],[124,199,73,-0.2682795812283084],[124,199,74,-0.26600131319994924],[124,199,75,-0.26359251375006965],[124,199,76,-0.26105495237715615],[124,199,77,-0.2583905602221861],[124,199,78,-0.25560143254208834],[124,199,79,-0.2526898311872202],[124,200,64,-0.2825634498490849],[124,200,65,-0.28151419369315256],[124,200,66,-0.28032534349062455],[124,200,67,-0.278997324639189],[124,200,68,-0.2775307021042903],[124,200,69,-0.2759261828562112],[124,200,70,-0.2741846183111598],[124,200,71,-0.27230700677642095],[124,200,72,-0.2702944958995346],[124,200,73,-0.268148385121582],[124,200,74,-0.26587012813440347],[124,200,75,-0.2634613353419707],[124,200,76,-0.2609237763257618],[124,200,77,-0.25825938231417656],[124,200,78,-0.25547024865601664],[124,200,79,-0.2525586372979781],[124,201,64,-0.2824180982526797],[124,201,65,-0.281368855332363],[124,201,66,-0.2801800171525598],[124,201,67,-0.2788520091217692],[124,201,68,-0.277385396217284],[124,201,69,-0.27578088542228196],[124,201,70,-0.27403932816691734],[124,201,71,-0.2721617227734793],[124,201,72,-0.2701492169055757],[124,201,73,-0.2680031100214255],[124,201,74,-0.2657248558310814],[124,201,75,-0.2633160647578078],[124,201,76,-0.26077850640346123],[124,201,77,-0.25811411201791],[124,201,78,-0.255324976972519],[124,201,79,-0.25241336323764785],[124,202,64,-0.2822681026588528],[124,202,65,-0.28121885730600404],[124,202,66,-0.2800300167640398],[124,202,67,-0.27870200644184884],[124,202,68,-0.2772353913170279],[124,202,69,-0.27563087837297207],[124,202,70,-0.27388931903996216],[124,202,71,-0.2720117116403217],[124,202,72,-0.2699992038375978],[124,202,73,-0.26785309508985033],[124,202,74,-0.2655748391068735],[124,202,75,-0.26316604631157003],[124,202,76,-0.26062848630532887],[124,202,77,-0.25796409033744305],[124,202,78,-0.25517495377859134],[124,202,79,-0.2522633385983334],[124,203,64,-0.2821138386599249],[124,203,65,-0.28106454398563807],[124,203,66,-0.27987565591065],[124,203,67,-0.2785475998461361],[124,203,68,-0.2770809407700038],[124,203,69,-0.27547638566393295],[124,203,70,-0.273734785954419],[124,203,71,-0.27185713995787963],[124,203,72,-0.2698445953297891],[124,203,73,-0.2676984515179185],[124,203,74,-0.2654201622195085],[124,203,75,-0.26301133784259445],[124,203,76,-0.2604737479713355],[124,203,77,-0.25780932383538147],[124,203,78,-0.2550201607833058],[124,203,79,-0.25210852076004964],[124,204,64,-0.28194888285403874],[124,204,65,-0.2808994188916899],[124,204,66,-0.27971036766531854],[124,204,67,-0.27838215459409554],[124,204,68,-0.2769153446571362],[124,204,69,-0.2753106448303785],[124,204,70,-0.2735689065274638],[124,204,71,-0.2716911280446781],[124,204,72,-0.26967845700992155],[124,204,73,-0.267532192835783],[124,204,74,-0.26525378917654374],[124,204,75,-0.2628448563893352],[124,204,76,-0.2603071639992982],[124,204,77,-0.25764264316877883],[124,204,78,-0.25485338917058986],[124,204,79,-0.25194166386528205],[124,205,64,-0.28176695308464716],[124,205,65,-0.28071712893290257],[124,205,66,-0.2795277305700026],[124,205,67,-0.278199183432458],[124,205,68,-0.2767320525022775],[124,205,69,-0.2751270447435028],[124,205,70,-0.2733850115427391],[124,205,71,-0.2715069511537487],[124,205,72,-0.2694940111460662],[124,205,73,-0.26734749085771925],[124,205,74,-0.2650688438518751],[124,205,75,-0.26265968037763976],[124,205,76,-0.2601217698348537],[124,205,77,-0.2574570432429263],[124,205,78,-0.254667595713729],[124,205,79,-0.25175568892849887],[124,206,64,-0.28156208775789926],[124,206,65,-0.28051164483513624],[124,206,66,-0.27932165011782517],[124,206,67,-0.277992529072839],[124,206,68,-0.27652484668772714],[124,206,69,-0.2749193099066549],[124,206,70,-0.2731767700703357],[124,206,71,-0.2712982253600221],[124,206,72,-0.2692848232455154],[124,206,73,-0.26713786293727426],[124,206,74,-0.2648587978424487],[124,206,75,-0.2624492380250594],[124,206,76,-0.2599109526701724],[124,206,77,-0.25724587255210607],[124,206,78,-0.2544560925066943],[124,206,79,-0.25154387390755695],[124,207,64,-0.2813286390889168],[124,207,65,-0.2802772543252682],[124,207,66,-0.2790863518769504],[124,207,67,-0.2777563572579418],[124,207,68,-0.27628783546510505],[124,207,69,-0.27468149341321824],[124,207,70,-0.2729381823739978],[124,207,71,-0.27105890041916736],[124,207,72,-0.26904479486754496],[124,207,73,-0.26689716473622027],[124,207,74,-0.26461746319565094],[124,207,75,-0.26220730002890025],[124,207,76,-0.2596684440948611],[124,207,77,-0.2570028257955096],[124,207,78,-0.2542125395472056],[124,207,79,-0.25129984625599666],[124,208,64,-0.28106126640616613],[124,208,65,-0.28000855537367075],[124,208,66,-0.27881637467350784],[124,208,67,-0.2774851498872579],[124,208,68,-0.27601544602615224],[124,208,69,-0.27440796996482764],[124,208,70,-0.27266357287905885],[124,208,71,-0.2707832526875342],[124,208,72,-0.2687681564976365],[124,208,73,-0.2666195830553074],[124,208,74,-0.26433898519882304],[124,208,75,-0.2619279723166995],[124,208,76,-0.25938831280957997],[124,208,77,-0.2567219365561384],[124,208,78,-0.2539309373830263],[124,208,79,-0.2510175755388102],[124,209,64,-0.2807549295139218],[124,209,65,-0.27970044949526984],[124,209,66,-0.2785065638335611],[124,209,67,-0.2771736982022589],[124,209,68,-0.27570241763345604],[124,209,69,-0.2740934289499203],[124,209,70,-0.2723475832011065],[124,209,71,-0.2704658781032012],[124,209,72,-0.26844946048315965],[124,209,73,-0.26629962872681623],[124,209,74,-0.2640178352308924],[124,209,75,-0.26160568885912583],[124,209,76,-0.2590649574023671],[124,209,77,-0.2563975700426835],[124,209,78,-0.25360561982149266],[124,209,79,-0.25069136611167575],[124,210,64,-0.280404882112814],[124,210,65,-0.27934813510917067],[124,210,66,-0.27815206448411267],[124,210,67,-0.27681709603107685],[124,210,68,-0.27534379481108895],[124,210,69,-0.2737328675826147],[124,210,70,-0.27198516523536487],[124,210,71,-0.27010168522811506],[124,210,72,-0.2680835740305054],[124,210,73,-0.26593212956889767],[124,210,74,-0.26364880367611576],[124,210,75,-0.2612352045452917],[124,210,76,-0.25869309918766503],[124,210,77,-0.2560244158943745],[124,210,78,-0.25323124670226393],[124,210,79,-0.2503158498636542],[124,211,64,-0.28000666527847184],[124,211,65,-0.2789471009568676],[124,211,66,-0.2777483149131592],[124,211,67,-0.2764107330926793],[124,211,68,-0.2749349205951743],[124,211,69,-0.2733215841019272],[124,211,70,-0.2715715743068101],[124,211,71,-0.2696858883513382],[124,211,72,-0.26766567226368154],[124,211,73,-0.2655122234017171],[124,211,74,-0.26322699289994556],[124,211,75,-0.2608115881204952],[124,211,76,-0.25826777510806],[124,211,77,-0.2555974810488123],[124,211,78,-0.25280279673331085],[124,211,79,-0.2498859790233562],[124,212,64,-0.27955610099826156],[124,212,65,-0.2784931195790322],[124,212,66,-0.27729103998879356],[124,212,67,-0.2759502883605415],[124,212,68,-0.27447142984438067],[124,212,69,-0.2728551710313257],[124,212,70,-0.27110236238101526],[124,212,71,-0.2692140006534005],[124,212,72,-0.2671912313443706],[124,212,73,-0.2650353511253969],[124,212,74,-0.26274781028701677],[124,212,75,-0.26033021518638455],[124,212,76,-0.25778433069873197],[124,212,77,-0.2551120826727822],[124,212,78,-0.2523155603901359],[124,212,79,-0.24939701902858125],[124,213,64,-0.2790492857661012],[124,213,65,-0.27798224085086765],[124,213,66,-0.2767762446373373],[124,213,67,-0.2754317234857987],[124,213,68,-0.2739492426103216],[124,213,69,-0.2723295084986047],[124,213,70,-0.27057337133570925],[124,213,71,-0.26868182743173885],[124,213,72,-0.26665602165343216],[124,213,73,-0.26449724985974354],[124,213,74,-0.26220696134123944],[124,213,75,-0.25978676126353295],[124,213,76,-0.25723841311460216],[124,213,77,-0.2545638411560337],[124,213,78,-0.2517651328782131],[124,213,79,-0.24884454145941126],[124,214,64,-0.27848258423538097],[124,214,65,-0.2774107855760496],[124,214,66,-0.2762002073805311],[124,214,67,-0.27485127627990247],[124,214,68,-0.27336455756789424],[124,214,69,-0.2717407576161063],[124,214,70,-0.2699807262930738],[124,214,71,-0.2680854593872515],[124,214,72,-0.26605610103387567],[124,214,73,-0.2638939461457843],[124,214,74,-0.26160044284802153],[124,214,75,-0.25917719491644675],[124,214,76,-0.256625964220198],[124,214,77,-0.2539486731680469],[124,214,78,-0.2511474071586699],[124,214,79,-0.24822441703478249],[124,215,64,-0.2778526229299635],[124,215,65,-0.2767753391392379],[124,215,66,-0.2755594739317597],[124,215,67,-0.27420545425676046],[124,215,68,-0.27271384550552813],[124,215,69,-0.27108535392126487],[124,215,70,-0.26932082901276055],[124,215,71,-0.26742126597194515],[124,215,72,-0.2653878080952832],[124,215,73,-0.26322174920909136],[124,215,74,-0.2609245360986002],[124,215,75,-0.25849777094098636],[124,215,76,-0.2559432137422205],[124,215,77,-0.253262784777772],[124,215,78,-0.25045856703719094],[124,215,79,-0.2475328086725178],[124,216,64,-0.27715628401328696],[124,216,65,-0.27607274521717406],[124,216,66,-0.2748508508513309],[124,216,67,-0.2734910282343811],[124,216,68,-0.2719938428753691],[124,216,69,-0.2703600008774989],[124,216,70,-0.26859035134564346],[124,216,71,-0.2666858887976923],[124,216,72,-0.2646477555797002],[124,216,73,-0.26247724428491404],[124,216,74,-0.26017580017650377],[124,216,75,-0.25774502361422],[124,216,76,-0.2551866724848285],[124,216,77,-0.2525026646363542],[124,216,78,-0.24969508031616428],[124,216,79,-0.24676616461283607],[124,217,64,-0.27639069911554004],[124,217,65,-0.27530009954833734],[124,217,66,-0.27407139926078117],[124,217,67,-0.2727050259959899],[124,217,68,-0.2712015454033663],[124,217,69,-0.26956166343541454],[124,217,70,-0.2677862287482786],[124,217,71,-0.2658762351060734],[124,217,72,-0.26383282378896566],[124,217,73,-0.2616572860050883],[124,217,74,-0.2593510653061091],[124,217,75,-0.2569157600066798],[124,217,76,-0.25435312560761236],[124,217,77,-0.25166507722281806],[124,217,78,-0.24885369201003793],[124,217,79,-0.24592121160530978],[124,218,64,-0.2755532432189426],[124,218,65,-0.2744547437611925],[124,218,66,-0.2732184286162389],[124,218,67,-0.2718447260106541],[124,218,68,-0.27033420175929523],[124,218,69,-0.26868756165435903],[124,218,70,-0.26690565385810816],[124,218,71,-0.2649894712993337],[124,218,72,-0.2629401540735149],[124,218,73,-0.260758991846758],[124,218,74,-0.25844742626333583],[124,218,75,-0.25600705335705454],[124,218,76,-0.2534396259662913],[124,218,77,-0.25074705615274573],[124,218,78,-0.247931417623923],[124,218,79,-0.24499494815930467],[124,219,64,-0.2746415286011208],[124,219,65,-0.2735342592610185],[124,219,66,-0.27228949054083607],[124,219,67,-0.2709076512134043],[124,219,68,-0.26938930728670873],[124,219,69,-0.26773516438431255],[124,219,70,-0.265946070129392],[124,219,71,-0.26402301653244586],[124,219,72,-0.26196714238264485],[124,219,73,-0.2597797356428979],[124,219,74,-0.2574622358484604],[124,219,75,-0.2550162365093077],[124,219,76,-0.2524434875161232],[124,219,77,-0.24974589754993548],[124,219,78,-0.24692553649543136],[124,219,79,-0.24398463785789282],[124,220,64,-0.27365339883655004],[124,220,65,-0.27253646117529007],[124,220,66,-0.27128237271614075],[124,220,67,-0.2698915628448234],[124,220,68,-0.26836459779278543],[124,220,69,-0.2667021830080889],[124,220,70,-0.26490516552984356],[124,220,71,-0.2629745363662499],[124,220,72,-0.2609114328762132],[124,220,73,-0.25871714115460875],[124,220,74,-0.2563930984210231],[124,220,75,-0.253940895412194],[124,220,76,-0.25136227877799655],[124,220,77,-0.24865915348101442],[124,220,78,-0.2458335851997191],[124,220,79,-0.24288780273520616],[124,221,64,-0.27258692285610986],[124,221,65,-0.27145939235765715],[124,221,66,-0.2701950928326533],[124,221,67,-0.2687944543501498],[124,221,68,-0.267258043398122],[124,221,69,-0.26558656524389035],[124,221,70,-0.26378086629801345],[124,221,71,-0.26184193648171616],[124,221,72,-0.25977091159781607],[124,221,73,-0.25756907570522936],[124,221,74,-0.2552378634968768],[124,221,75,-0.25277886268121763],[124,221,76,-0.25019381636725413],[124,221,77,-0.2474846254530504],[124,221,78,-0.24465335101778307],[124,221,79,-0.2417022167172792],[124,222,64,-0.27144038906473156],[124,222,65,-0.2703013174505047],[124,222,66,-0.2690258925993516],[124,222,67,-0.267614545337877],[124,222,68,-0.26606784244645043],[124,222,69,-0.2643864890082013],[124,222,70,-0.2625713307614028],[124,222,71,-0.2606233564553121],[124,222,72,-0.25854370020942863],[124,222,73,-0.25633364387625146],[124,222,74,-0.25399461940735557],[124,222,75,-0.2515282112230166],[124,222,76,-0.24893615858522744],[124,222,77,-0.24622035797414465],[124,222,78,-0.24338286546799182],[124,222,79,-0.24042589912636525],[124,223,64,-0.27021229951711034],[124,223,65,-0.2690607170060605],[124,223,66,-0.26777323181225],[124,223,67,-0.26635027559781554],[124,223,68,-0.26479241547425025],[124,223,69,-0.2631003563389853],[124,223,70,-0.26127494321527367],[124,223,71,-0.259317163595442],[124,223,72,-0.257228149787473],[124,223,73,-0.2550091812649997],[124,223,74,-0.2526616870205308],[124,223,75,-0.25018724792213864],[124,223,76,-0.2475875990734484],[124,223,77,-0.24486463217697296],[124,223,78,-0.24202039790081553],[124,223,79,-0.23905710824868664],[124,224,64,-0.26890136415153254],[124,224,65,-0.2677362816661055],[124,224,66,-0.26643578248202926],[124,224,67,-0.2650002991786752],[124,224,68,-0.2634303992403073],[124,224,69,-0.2617267873792418],[124,224,70,-0.25989030786221345],[124,224,71,-0.2579219468400147],[124,224,72,-0.25582283468037137],[124,224,73,-0.2535942483041358],[124,224,74,-0.2512376135246148],[124,224,75,-0.24875450739026528],[124,224,76,-0.2461466605305982],[124,224,77,-0.24341595950533135],[124,224,78,-0.24056444915681519],[124,224,79,-0.23759433496568072],[124,225,64,-0.26750649508179847],[124,225,65,-0.26632690640026657],[124,225,66,-0.2650124230207147],[124,225,67,-0.26356347852514195],[124,225,68,-0.26198064081520067],[124,225,69,-0.26026461442090243],[124,225,70,-0.25841624281242936],[124,225,71,-0.2564365107151152],[124,225,72,-0.25432654642756114],[124,225,73,-0.25208762414296504],[124,225,74,-0.24972116627348417],[124,225,75,-0.24722874577786313],[124,225,76,-0.24461208849216753],[124,225,77,-0.24187307546366343],[124,225,78,-0.23901374528786834],[124,225,79,-0.2360362964487197],[124,226,64,-0.2660268009472013],[124,226,65,-0.26483168480284824],[124,226,66,-0.2635022324873617],[124,226,67,-0.26203887867441367],[124,226,68,-0.26044219173067507],[124,226,69,-0.2587128760090227],[124,226,70,-0.25685177414473337],[124,226,71,-0.2548598693547445],[124,226,72,-0.25273828773993245],[124,226,73,-0.2504883005905004],[124,226,74,-0.24811132669428482],[124,226,75,-0.24560893464821798],[124,226,76,-0.24298284517278756],[124,226,77,-0.24023493342952962],[124,226,78,-0.237367231341584],[124,226,79,-0.23438192991725615],[124,227,64,-0.2644615813206279],[124,227,65,-0.2632499034482756],[124,227,66,-0.2619044848928199],[124,227,67,-0.2604257615122587],[124,227,68,-0.25881430218896917],[124,227,69,-0.25707081110634167],[124,227,70,-0.2551961300282879],[124,227,71,-0.25319124058168996],[124,227,72,-0.25105726654175553],[124,227,73,-0.24879547612035957],[124,227,74,-0.24640728425718939],[124,227,75,-0.2438942549139259],[124,227,76,-0.24125810337130316],[124,227,77,-0.23850069852908562],[124,227,78,-0.2356240652089857],[124,227,79,-0.2326303864604734],[124,228,64,-0.26281032117475633],[124,228,65,-0.2615810363051181],[124,228,66,-0.2602186435635434],[124,228,67,-0.25872358008857443],[124,228,68,-0.2570964153320694],[124,228,69,-0.2553378533181808],[124,228,70,-0.25344873490508124],[124,228,71,-0.25143004004950575],[124,228,72,-0.24928289007407212],[124,228,73,-0.2470085499374619],[124,228,74,-0.24460843050727743],[124,228,75,-0.2420840908358104],[124,228,76,-0.23943724043856074],[124,228,77,-0.23666974157554665],[124,228,78,-0.2337836115354308],[124,228,79,-0.23078102492240815],[124,229,64,-0.26107268540630124],[124,229,65,-0.259824739208648],[124,229,66,-0.2584443555644039],[124,229,67,-0.25693197299239245],[124,229,68,-0.25528816157084555],[124,229,69,-0.2535136251776303],[124,229,70,-0.2516092037330868],[124,229,71,-0.24957587544554793],[124,229,72,-0.24741475905950072],[124,229,73,-0.24512711610647875],[124,229,74,-0.24271435315848766],[124,229,75,-0.24017802408421607],[124,229,76,-0.23751983230785567],[124,229,77,-0.23474163307058182],[124,229,78,-0.23184543569471128],[124,229,79,-0.2288334058504926],[124,230,64,-0.25924851341839006],[124,230,65,-0.2579808443920133],[124,230,66,-0.25658144618058765],[124,230,67,-0.2550507587864177],[124,230,68,-0.25338935297414544],[124,230,69,-0.2515979324911122],[124,230,70,-0.2496773362901903],[124,230,71,-0.24762854075515206],[124,230,72,-0.24545266192854032],[124,230,73,-0.24315095774212048],[124,230,74,-0.24072483024973035],[124,230,75,-0.23817582786276525],[124,230,76,-0.23550564758813386],[124,230,77,-0.23271613726872853],[124,230,78,-0.22980929782643134],[124,230,79,-0.22678728550760774],[124,231,64,-0.2573378137610325],[124,231,65,-0.2560493550759949],[124,231,66,-0.25462991345853936],[124,231,67,-0.2530799305010647],[124,231,68,-0.2513999777178191],[124,231,69,-0.2495907587442796],[124,231,70,-0.24765311153884528],[124,231,71,-0.2455880105869187],[124,231,72,-0.24339656910733598],[124,231,73,-0.24108004126122717],[124,231,74,-0.2386398243631228],[124,231,75,-0.23607746109454197],[124,231,76,-0.23339464171990254],[124,231,77,-0.23059320630479097],[124,231,78,-0.22767514693661828],[124,231,79,-0.22464260994760987],[124,232,64,-0.25534075882963514],[124,232,65,-0.2540304401172889],[124,232,66,-0.2525899228059023],[124,232,67,-0.2510196501879346],[124,232,68,-0.249320194593614],[124,232,69,-0.2474922595682013],[124,232,70,-0.245536682051409],[124,232,71,-0.24345443455904658],[124,232,72,-0.2412466273668531],[124,232,73,-0.23891451069660252],[124,232,74,-0.23645947690428992],[124,232,75,-0.23388306267064474],[124,232,76,-0.23118695119379906],[124,232,77,-0.22837297438416138],[124,232,78,-0.22544311506151082],[124,232,79,-0.22239950915426832],[124,233,64,-0.2532576796216499],[124,233,65,-0.25192442871541243],[124,233,66,-0.25046180165054743],[124,233,67,-0.2488702435328345],[124,233,68,-0.24715032757803912],[124,233,69,-0.2453027572659241],[124,233,70,-0.2433283684962474],[124,233,71,-0.24122813174681557],[124,233,72,-0.23900315423355611],[124,233,73,-0.23665468207269258],[124,233,74,-0.23418410244483212],[124,233,75,-0.2315929457612087],[124,233,76,-0.22888288783191557],[124,233,77,-0.22605575203616968],[124,233,78,-0.22311351149463],[124,233,79,-0.22005829124372278],[124,234,64,-0.2510890605513192],[124,234,65,-0.2497318051781917],[124,234,66,-0.24824603415865198],[124,234,67,-0.24663219452829055],[124,234,68,-0.24489086046115682],[124,234,69,-0.24302273539937702],[124,234,70,-0.24102865418457564],[124,234,71,-0.2389095851911779],[124,234,72,-0.23666663246155073],[124,234,73,-0.234301037843069],[124,234,74,-0.23181418312691493],[124,234,75,-0.22920759218885733],[124,234,76,-0.2264829331318382],[124,234,77,-0.2236420204304158],[124,234,78,-0.22068681707708315],[124,234,79,-0.21761943673041262],[124,235,64,-0.24883553432245642],[124,235,65,-0.24745320374576985],[124,235,66,-0.24594325601176525],[124,235,67,-0.24430614020549835],[124,235,68,-0.2425424315352399],[124,235,69,-0.24065283343654897],[124,235,70,-0.23863817967796452],[124,235,71,-0.23649943646838945],[124,235,72,-0.23423770456612492],[124,235,73,-0.23185422138964595],[124,235,74,-0.22935036312991863],[124,235,75,-0.2267276468645124],[124,235,76,-0.22398773267333205],[124,235,77,-0.22113242575601888],[124,235,78,-0.2181636785510389],[124,235,79,-0.21508359285641132],[124,236,64,-0.2464978768593692],[124,236,65,-0.24508940347324526],[124,236,66,-0.24355424924297164],[124,236,67,-0.24189286542582034],[124,236,68,-0.2401058283434041],[124,236,69,-0.23819384145905587],[124,236,70,-0.23615773745663005],[124,236,71,-0.2339984803207985],[124,236,72,-0.2317171674188041],[124,236,73,-0.22931503158375344],[124,236,74,-0.22679344319926054],[124,236,75,-0.22415391228568438],[124,236,76,-0.2213980905877938],[124,236,77,-0.2185277736639012],[124,236,78,-0.21554490297649065],[124,236,79,-0.21245156798428677],[124,237,64,-0.24407700229587792],[124,237,65,-0.24264132317189058],[124,237,66,-0.24107993713210218],[124,237,67,-0.23939329773177775],[124,237,68,-0.23758198248816798],[124,237,69,-0.2356466949300453],[124,237,70,-0.23358826664845223],[124,237,71,-0.2314076593487422],[124,237,72,-0.2291059669038682],[124,237,73,-0.2266844174090098],[124,237,74,-0.22414437523734054],[124,237,75,-0.22148734309718865],[124,237,76,-0.21871496409041447],[124,237,77,-0.21582902377205504],[124,237,78,-0.212831452211255],[124,237,79,-0.20972432605343394],[124,238,64,-0.24157395802236403],[124,238,65,-0.24011001640888585],[124,238,66,-0.23852137915992766],[124,238,67,-0.23680850225747352],[124,238,68,-0.23497196449987123],[124,238,69,-0.23301246952236998],[124,238,70,-0.23093084781865814],[124,238,71,-0.22872805876347568],[124,238,72,-0.22640519263626135],[124,238,73,-0.22396347264592453],[124,238,74,-0.22140425695653843],[124,238,75,-0.21872904071421595],[124,238,76,-0.2159394580749855],[124,238,77,-0.21303728423371926],[124,238,78,-0.21002443745413246],[124,238,79,-0.2069029810998061],[124,239,64,-0.23898991979097461],[124,239,65,-0.23749666656569646],[124,239,66,-0.23587976602146143],[124,239,67,-0.23413967669857494],[124,239,68,-0.23227697876508357],[124,239,69,-0.23029237600716568],[124,239,70,-0.22818669782029877],[124,239,71,-0.2259609012012752],[124,239,72,-0.22361607274103068],[124,239,73,-0.22115343061837123],[124,239,74,-0.21857432659439924],[124,239,75,-0.2158802480078963],[124,239,76,-0.21307281977148274],[124,239,77,-0.2101538063686057],[124,239,78,-0.20712511385137267],[124,239,79,-0.20398879183918583],[124,240,64,-0.2363261868788774],[124,240,65,-0.23480258195498604],[124,240,66,-0.23315641469826764],[124,240,67,-0.23138814634174765],[124,240,68,-0.2294983585148942],[124,240,69,-0.22748775520271824],[124,240,70,-0.2253571647054109],[124,240,71,-0.2231075415985989],[124,240,72,-0.22073996869417778],[124,240,73,-0.2182556590018112],[124,240,74,-0.21565595769089396],[124,240,75,-0.21294234405324097],[124,240,76,-0.21011643346631648],[124,240,77,-0.20717997935706],[124,240,78,-0.20413487516632478],[124,240,79,-0.20098315631388064],[124,241,64,-0.23358417730965086],[124,241,65,-0.23202919099615038],[124,241,66,-0.23035276358985612],[124,241,67,-0.22855535915362546],[124,241,68,-0.22663756087316878],[124,241,69,-0.22460007298371176],[124,241,70,-0.22244372269695234],[124,241,71,-0.2201694621283956],[124,241,72,-0.21777837022501823],[124,241,73,-0.2152716546933625],[124,241,74,-0.21265065392784555],[124,241,75,-0.2099168389395537],[124,241,76,-0.2070718152853358],[124,241,77,-0.20411732499724777],[124,241,78,-0.20105524851236745],[124,241,79,-0.19788760660293248],[124,242,64,-0.23076542313268955],[124,242,65,-0.2291780374493525],[124,242,66,-0.2274703677040435],[124,242,67,-0.22564288092919715],[124,242,68,-0.22369616196465059],[124,242,69,-0.22163091535072987],[124,242,70,-0.2194479672213827],[124,242,71,-0.21714826719743274],[124,242,72,-0.21473289027991493],[124,242,73,-0.21220303874358415],[124,242,74,-0.20956004403038941],[124,242,75,-0.20680536864318022],[124,242,76,-0.20394060803945901],[124,242,77,-0.2009674925252335],[124,242,78,-0.19788788914898536],[124,242,79,-0.19470380359571093],[124,243,64,-0.22787156576076562],[124,243,65,-0.2262507757082013],[124,243,66,-0.22451089390642898],[124,243,67,-0.22265239049975338],[124,243,68,-0.22067585208305218],[124,243,69,-0.21858198356016179],[124,243,70,-0.2163716100020412],[124,243,71,-0.21404567850480005],[124,243,72,-0.21160526004754288],[124,243,73,-0.20905155135012787],[124,243,74,-0.2063858767306257],[124,243,75,-0.20360968996275264],[124,243,76,-0.20072457613308536],[124,243,77,-0.19773225349811352],[124,243,78,-0.19463457534115036],[124,243,79,-0.19143353182904832],[124,244,64,-0.2249043513656871],[124,244,65,-0.2232491661510101],[124,244,66,-0.2214761162289155],[124,244,67,-0.21958567500032766],[124,244,68,-0.21757843091907447],[124,244,69,-0.21545508931444468],[124,244,70,-0.2132164742132565],[124,244,71,-0.21086353016151493],[124,244,72,-0.20839732404561517],[124,244,73,-0.20581904691319197],[124,244,74,-0.20313001579339318],[124,244,75,-0.2003316755168607],[124,244,76,-0.19742560053521818],[124,244,77,-0.19441349674012898],[124,244,78,-0.19129720328193733],[124,244,79,-0.18807869438784652],[124,245,64,-0.22186562633197005],[124,245,65,-0.22017507055055796],[124,245,66,-0.21836791123719868],[124,245,67,-0.21644462519655672],[124,245,68,-0.21440580284826838],[124,245,69,-0.21225215001256137],[124,245,70,-0.20998448969510197],[124,245,71,-0.20760376387115054],[124,245,72,-0.205111035268986],[124,245,73,-0.2025074891526898],[124,245,74,-0.19979443510407835],[124,245,75,-0.19697330880405894],[124,245,76,-0.1940456738132137],[124,245,77,-0.1910132233516726],[124,245,78,-0.18787778207828754],[124,245,79,-0.18464130786906485],[124,246,64,-0.21875733276867437],[124,246,65,-0.21703044754249878],[124,246,66,-0.21518825345737447],[124,246,67,-0.21323123087110396],[124,246,68,-0.2111599722788967],[124,246,69,-0.20897518406094828],[124,246,70,-0.20667768822895405],[124,246,71,-0.20426842417164348],[124,246,72,-0.2017484503992898],[124,246,73,-0.19911894628729432],[124,246,74,-0.1963812138186225],[124,246,75,-0.19353667932537943],[124,246,76,-0.19058689522931938],[124,246,77,-0.18753354178135562],[124,246,78,-0.18437842880008226],[124,246,79,-0.18112349740926093],[124,247,64,-0.21558150407933563],[124,247,65,-0.21381734815235298],[124,247,66,-0.21193921086159417],[124,247,67,-0.2099475762695816],[124,247,68,-0.20784303905971935],[124,247,69,-0.20562630624473943],[124,247,70,-0.20329819887378375],[124,247,71,-0.2008596537382048],[124,247,72,-0.19831172507604355],[124,247,73,-0.19565558627528212],[124,247,74,-0.19289253157564978],[124,247,75,-0.19002397776926605],[124,247,76,-0.18705146589992094],[124,247,77,-0.18397666296105553],[124,247,78,-0.1808013635924528],[124,247,79,-0.17752749177559735],[124,248,64,-0.21234026058990452],[124,248,65,-0.21053791138099298],[124,248,66,-0.2086229404126807],[124,248,67,-0.20659583560588113],[124,248,68,-0.20445719394761785],[124,248,69,-0.2022077231592605],[124,248,70,-0.19984824336308582],[124,248,71,-0.19737968874724754],[124,248,72,-0.19480310922911703],[124,248,73,-0.19211967211708847],[124,248,74,-0.18933066377062635],[124,248,75,-0.18643749125884435],[124,248,76,-0.18344168401741234],[124,248,77,-0.18034489550385036],[124,248,78,-0.17714890485122947],[124,248,79,-0.1738556185202298],[124,249,64,-0.20903580523485787],[124,249,65,-0.20719435984878487],[124,249,66,-0.20524168366786877],[124,249,67,-0.20317826862707655],[124,249,68,-0.2010047141352248],[124,249,69,-0.19872172870193894],[124,249,70,-0.19633013156261936],[124,249,71,-0.1938308543014986],[124,249,72,-0.19122494247274957],[124,249,73,-0.18851355721974217],[124,249,74,-0.18569797689222078],[124,249,75,-0.18277959866169857],[124,249,76,-0.1797599401348572],[124,249,77,-0.17664064096501997],[124,249,78,-0.1734234644617101],[124,249,79,-0.17011029919824772],[124,250,64,-0.20567041930140184],[124,250,65,-0.20378899549831098],[124,250,66,-0.20179776244159275],[124,250,67,-0.19969721623782466],[124,250,68,-0.19748795883847747],[124,250,69,-0.1951706996245497],[124,250,70,-0.19274625698887826],[124,250,71,-0.1902155599162152],[124,250,72,-0.18757964956102424],[124,250,73,-0.18483968082310187],[124,250,74,-0.1819969239207887],[124,250,75,-0.17905276596207198],[124,250,76,-0.1760087125133637],[124,250,77,-0.17286638916602803],[124,250,78,-0.16962754310066108],[124,250,79,-0.1662940446490867],[124,251,64,-0.20224645823168141],[124,251,65,-0.2003241953555812],[124,251,66,-0.19829357452723118],[124,251,67,-0.1961550961841677],[124,251,68,-0.19390936494400468],[124,251,69,-0.1915570911457054],[124,251,70,-0.18909909238819744],[124,251,71,-0.18653629506641178],[124,251,72,-0.18386973590471034],[124,251,73,-0.1811005634877959],[124,251,74,-0.1782300397888792],[124,251,75,-0.17525954169539693],[124,251,76,-0.17219056253207266],[124,251,77,-0.1690247135813847],[124,251,78,-0.16576372560145491],[124,251,79,-0.16240945034131182],[124,252,64,-0.19876634748316402],[124,252,65,-0.19680240734990734],[124,252,66,-0.1947315894779793],[124,252,67,-0.19255439879691638],[124,252,68,-0.1902714427165232],[124,252,69,-0.1878834326237686],[124,252,70,-0.18539118537667254],[124,252,71,-0.18279562479527667],[124,252,72,-0.1800977831496523],[124,252,73,-0.17729880264504938],[124,252,74,-0.17439993690395084],[124,252,75,-0.1714025524453371],[124,252,76,-0.16830813016094381],[124,252,77,-0.16511826678858166],[124,252,78,-0.16183467638253046],[124,252,79,-0.15845919178096213],[124,253,64,-0.19523257844711644],[124,253,65,-0.19322614619235512],[124,253,66,-0.1911143444467701],[124,253,67,-0.18889768279452623],[124,253,68,-0.18657677156616037],[124,253,69,-0.184152323290099],[124,253,70,-0.18162515414081226],[124,253,71,-0.17899618538369333],[124,253,72,-0.17626644481662146],[124,253,73,-0.17343706820831117],[124,253,74,-0.1705093007332107],[124,253,75,-0.1674844984032552],[124,253,76,-0.16436412949625756],[124,253,77,-0.16114977598100766],[124,253,78,-0.15784313493908808],[124,253,79,-0.1544460199833655],[124,254,64,-0.1916477044250824],[124,254,65,-0.189597989312683],[124,254,66,-0.187444440085146],[124,254,67,-0.18518757114537543],[124,254,68,-0.18282799587560206],[124,254,69,-0.18036642804254077],[124,254,70,-0.17780368319881923],[124,254,71,-0.1751406800807669],[124,254,72,-0.1723784420025256],[124,254,73,-0.16951809824657949],[124,254,74,-0.16656088545046976],[124,254,75,-0.16350814899000088],[124,254,76,-0.1603613443587204],[124,254,77,-0.15712203854374052],[124,254,78,-0.15379191139791404],[124,254,79,-0.15037275700831942],[124,255,64,-0.18801433666354006],[124,255,65,-0.18592057285494756],[124,255,66,-0.18372453650126508],[124,255,67,-0.18142674698962458],[124,255,68,-0.17902782088725894],[124,255,69,-0.17652847329933596],[124,255,70,-0.17392951922269084],[124,255,71,-0.1712318748955456],[124,255,72,-0.1684365591431749],[124,255,73,-0.16554469471962063],[124,255,74,-0.1625575096452142],[124,255,75,-0.1594763385402208],[124,255,76,-0.15630262395437955],[124,255,77,-0.15303791769241626],[124,255,78,-0.14968388213553352],[124,255,79,-0.14624229155883828],[124,256,64,-0.18433514044665178],[124,256,65,-0.18219658773168596],[124,256,66,-0.17995734927695328],[124,256,67,-0.17761794962057204],[124,256,68,-0.17517900865035385],[124,256,69,-0.1726412429133733],[124,256,70,-0.17000546692105145],[124,256,71,-0.1672725944498467],[124,256,72,-0.1644436398375061],[124,256,73,-0.16151971927498643],[124,256,74,-0.1585020520937982],[124,256,75,-0.1553919620490899],[124,256,76,-0.15219087859824665],[124,256,77,-0.14890033817507753],[124,256,78,-0.1455219854595985],[124,256,79,-0.14205757464337077],[124,257,64,-0.18061283124701044],[124,257,65,-0.17842877573658278],[124,257,66,-0.1761456455437056],[124,257,67,-0.1737639705254045],[124,257,68,-0.1712843740278358],[124,257,69,-0.1687075741466727],[124,257,70,-0.16603438498260953],[124,257,71,-0.16326571789208288],[124,257,72,-0.16040258273316388],[124,257,73,-0.15744608910672675],[124,257,74,-0.15439744759264884],[124,257,75,-0.15125797098136218],[124,257,76,-0.14802907550052558],[124,257,77,-0.144712282036895],[124,257,78,-0.14130921735339952],[124,257,79,-0.13782161530137882],[124,258,64,-0.17685017093457067],[124,258,65,-0.17461992571580487],[124,258,66,-0.17229224011782485],[124,258,67,-0.16986764948553512],[124,258,68,-0.16734678076331122],[124,258,69,-0.1647303537053001],[124,258,70,-0.16201918208043886],[124,258,71,-0.15921417487228856],[124,258,72,-0.15631633747364043],[124,258,73,-0.15332677287599872],[124,258,74,-0.15024668285369291],[124,258,75,-0.14707736914294434],[124,258,76,-0.14382023461565052],[124,258,77,-0.14047678444797052],[124,258,78,-0.1370486272837126],[124,258,79,-0.13353747639248703],[124,259,64,-0.1730499640436709],[124,259,65,-0.17077286979791573],[124,259,66,-0.1683999916946054],[124,259,67,-0.16593187073643634],[124,259,68,-0.16336913760789984],[124,259,69,-0.16071251383461782],[124,259,70,-0.15796281293699077],[124,259,71,-0.1551209415782499],[124,259,72,-0.15218790070687427],[124,259,73,-0.14916478669347505],[124,259,74,-0.14605279246190217],[124,259,75,-0.14285320861489303],[124,259,76,-0.13956742455403537],[124,259,77,-0.1361969295941181],[124,259,78,-0.132743314071878],[124,259,79,-0.12920827044910232],[124,260,64,-0.16921505409804977],[124,260,65,-0.1668904796822691],[124,260,66,-0.16447179910146337],[124,260,67,-0.1619595591868651],[124,260,68,-0.1593543945069119],[124,260,69,-0.15665702847476626],[124,260,70,-0.15386827444972728],[124,260,71,-0.15098903683263165],[124,260,72,-0.14802031215520173],[124,260,73,-0.14496319016344383],[124,260,74,-0.1418188548948497],[124,260,75,-0.138588585749727],[124,260,76,-0.13527375855642199],[124,260,77,-0.13187584663051627],[124,260,78,-0.12839642182800148],[124,260,79,-0.12483715559239128],[124,261,64,-0.16534831999404964],[124,261,65,-0.16297566298607524],[124,261,66,-0.16051059761020758],[124,261,67,-0.1579536766976778],[124,261,68,-0.15530553884654708],[124,261,69,-0.15256690947658003],[124,261,70,-0.14973860187758337],[124,261,71,-0.1468215182513083],[124,261,72,-0.1438166507468715],[124,261,73,-0.14072508248980758],[124,261,74,-0.1375479886044907],[124,261,75,-0.13428663723026557],[124,261,76,-0.13094239053104273],[124,261,77,-0.12751670569844298],[124,261,78,-0.12401113594849256],[124,261,79,-0.12042733151183216],[124,262,64,-0.16145267244191142],[124,262,65,-0.15903135965004495],[124,262,66,-0.15651935530835626],[124,262,67,-0.1539172184201416],[124,262,68,-0.15122559176051703],[124,262,69,-0.14844520287783958],[124,262,70,-0.1455768650881588],[124,262,71,-0.1426214784627971],[124,262,72,-0.13958003080901704],[124,262,73,-0.1364535986438829],[124,262,74,-0.13324334816106082],[124,262,75,-0.12995053619089125],[124,262,76,-0.126576511153495],[124,262,77,-0.12312271400499164],[124,262,78,-0.11959067917683658],[124,262,79,-0.11598203550823699],[124,263,64,-0.15753105046506105],[124,263,65,-0.15506053840251077],[124,263,66,-0.1525010695293953],[124,263,67,-0.14985320919363299],[124,263,68,-0.14711760449648653],[124,263,69,-0.14429498523975037],[124,263,70,-0.14138616486552696],[124,263,71,-0.13839204138868744],[124,263,72,-0.13531359832197937],[124,263,73,-0.1321519055938869],[124,263,74,-0.12890812045898398],[124,263,75,-0.12558348840112288],[124,263,76,-0.12217934402920955],[124,263,77,-0.11869711196565153],[124,263,78,-0.11513830772748379],[124,263,79,-0.11150453860012666],[124,264,64,-0.15358641795759698],[124,264,65,-0.15106619328223625],[124,264,66,-0.14845876334219338],[124,264,67,-0.14576470000294312],[124,264,68,-0.14298465484255096],[124,264,69,-0.14011936004387293],[124,264,70,-0.13716962927889087],[124,264,71,-0.13413635858528666],[124,264,72,-0.1310205272352074],[124,264,73,-0.12782319859633962],[124,264,74,-0.12454552098501925],[124,264,75,-0.12118872851173268],[124,264,76,-0.11775414191875144],[124,264,77,-0.11424316940999046],[124,264,78,-0.11065730747309288],[124,264,79,-0.10699814169369848],[124,265,64,-0.14962176029980095],[124,265,65,-0.14705134021973265],[124,265,66,-0.1443954820993923],[124,265,67,-0.14165476449500686],[124,265,68,-0.13882984361356776],[124,265,69,-0.1359214541493141],[124,265,70,-0.132930410111893],[124,265,71,-0.12985760564629767],[124,265,72,-0.126704015844544],[124,265,73,-0.12347069754919204],[124,265,74,-0.12015879014845049],[124,265,75,-0.11676951636320981],[124,265,76,-0.11330418302575446],[124,265,77,-0.10976418185023884],[124,265,78,-0.10615099019493113],[124,265,79,-0.10246617181618539],[124,266,64,-0.14564008103180764],[124,266,65,-0.14301901367722297],[124,266,66,-0.14031429004491136],[124,266,67,-0.13752649555519403],[124,266,68,-0.13465629119747874],[124,266,69,-0.13170441431032626],[124,266,70,-0.12867167935272295],[124,266,71,-0.12555897866667004],[124,266,72,-0.12236728323104129],[124,266,73,-0.11909764340682355],[124,266,74,-0.11575118967346992],[124,266,75,-0.1123291333567219],[124,266,76,-0.10883276734763869],[124,266,77,-0.10526346681292847],[124,266,78,-0.1016226898965808],[124,266,79,-0.09791197841275989],[124,267,64,-0.14164439858525207],[124,267,65,-0.13897226334706586],[124,267,66,-0.1362182669803781],[124,267,67,-0.13338300194297487],[124,267,68,-0.13046713416143774],[124,267,69,-0.12747140375411609],[124,267,70,-0.12439662574483212],[124,267,71,-0.12124369076742941],[124,267,72,-0.1180135657611141],[124,267,73,-0.11470729465671159],[124,267,74,-0.11132599905355411],[124,267,75,-0.10787087888737085],[124,267,76,-0.10434321308890837],[124,267,77,-0.10074436023338074],[124,267,78,-0.09707575918074635],[124,267,79,-0.09333892970677415],[124,268,64,-0.13763774307310772],[124,268,65,-0.13491415090886127],[124,268,66,-0.13211050499070764],[124,268,67,-0.12922740498718377],[124,268,68,-0.12626552191796542],[124,268,69,-0.12322559881909828],[124,268,70,-0.1201084513984827],[124,268,71,-0.11691496868171752],[124,268,72,-0.1136461136482586],[124,268,73,-0.1103029238580105],[124,268,74,-0.10688651206806898],[124,268,75,-0.10339806683998387],[124,268,76,-0.0998388531372737],[124,268,77,-0.09621021291328669],[124,268,78,-0.09251356568940994],[124,268,79,-0.0887504091235845],[124,269,64,-0.1336231531376177],[124,269,65,-0.13084774684513045],[124,269,66,-0.12799410522872645],[124,269,67,-0.125062835340776],[124,269,68,-0.12205461345102736],[124,269,69,-0.11897018565348061],[124,269,70,-0.11581036846302267],[124,269,71,-0.11257604940193544],[124,269,72,-0.10926818757623014],[124,269,73,-0.10588781424192634],[124,269,74,-0.10243603336099338],[124,269,75,-0.09891402214732531],[124,269,76,-0.0953230316024779],[124,269,77,-0.09166438704126528],[124,269,78,-0.0879394886072154],[124,269,79,-0.08414981177784403],[124,270,64,-0.12960367285621294],[124,270,65,-0.1267761273154714],[124,270,66,-0.12387217475873458],[124,270,67,-0.1208924297949685],[124,270,68,-0.11783757410192658],[124,270,69,-0.11470835697407428],[124,270,70,-0.11150559585977837],[124,270,71,-0.10823017688787528],[124,270,72,-0.10488305538356774],[124,270,73,-0.10146525637377551],[124,270,74,-0.09797787508164746],[124,270,75,-0.09442207741061681],[124,270,76,-0.09079910041772005],[124,270,77,-0.08711025277628309],[124,270,78,-0.08335691522796729],[124,270,79,-0.07954054102414243],[124,271,64,-0.12558234870562274],[124,271,65,-0.12270237108939203],[124,271,66,-0.11974782345921559],[124,271,67,-0.11671932815298108],[124,271,68,-0.11361757241522497],[124,271,69,-0.11044330888554621],[124,271,70,-0.10719735607578296],[124,271,71,-0.1038805988360636],[124,271,72,-0.10049398880968724],[124,271,73,-0.09703854487695313],[124,271,74,-0.09351535358765112],[124,271,75,-0.0899255695825914],[124,271,76,-0.08627041600389862],[124,271,77,-0.0825511848941668],[124,271,78,-0.0787692375844764],[124,271,79,-0.07492600507123276],[124,272,64,-0.12156222658407728],[124,272,65,-0.11862955653772211],[124,272,66,-0.115624160984592],[124,272,67,-0.11254667016326902],[124,272,68,-0.10939777704458725],[124,272,69,-0.10617823776000535],[124,272,70,-0.10288887201823027],[124,272,71,-0.09953056351020767],[124,272,72,-0.09610426030243191],[124,272,73,-0.09261097521869771],[124,272,74,-0.08905178621000037],[124,272,75,-0.08542783671297105],[124,272,76,-0.08174033599656344],[124,272,77,-0.07799055949709416],[124,272,78,-0.07417984914163628],[124,272,79,-0.0703096136597241],[124,273,64,-0.11754634889149734],[124,273,65,-0.11456075868249621],[124,273,66,-0.11150429378591808],[124,273,67,-0.10837759251214091],[124,273,68,-0.10518135371843934],[124,273,69,-0.10191633717681226],[124,273,70,-0.09858336392954636],[124,273,71,-0.09518331663262986],[124,273,72,-0.09171713988696989],[124,273,73,-0.08818584055753853],[124,273,74,-0.08459048808014813],[124,273,75,-0.0809322147562489],[124,273,76,-0.07721221603546063],[124,273,77,-0.07343175078594494],[124,273,78,-0.06959214155261145],[124,273,79,-0.06569477480312336],[124,274,64,-0.11353775166787733],[124,274,65,-0.11049904630551777],[124,274,66,-0.10739132219072123],[124,274,67,-0.10421522587597609],[124,274,68,-0.10097146226565601],[124,274,69,-0.09766079492283208],[124,274,70,-0.09428404636329657],[124,274,71,-0.0908420983369147],[124,274,72,-0.0873358920962598],[124,274,73,-0.08376642865265399],[124,274,74,-0.08013476901931565],[124,274,75,-0.07644203444200792],[124,274,76,-0.07268940661690027],[124,274,77,-0.06887812789574616],[124,274,78,-0.06500950147837542],[124,274,79,-0.06108489159246189],[124,275,64,-0.10953946178975876],[124,275,65,-0.10644747911550012],[124,275,66,-0.10328833754188865],[124,275,67,-0.10006269203293333],[124,275,68,-0.09677125370117085],[124,275,69,-0.09341479005302028],[124,275,70,-0.08999412522081846],[124,275,71,-0.0865101401816577],[124,275,72,-0.08296377296297569],[124,275,73,-0.07935601883502563],[124,275,74,-0.0756879304899219],[124,275,75,-0.07196061820766236],[124,275,76,-0.06817525000883162],[124,275,77,-0.06433305179409488],[124,275,78,-0.06043530747047737],[124,275,79,-0.05648335906438984],[124,276,64,-0.10555449422469243],[124,276,65,-0.102409104973679],[124,276,66,-0.09919841939549079],[124,276,67,-0.095923101034046],[124,276,68,-0.09258386737140067],[124,276,69,-0.08918149001123232],[124,276,70,-0.08571679484847239],[124,276,71,-0.08219066222520333],[124,276,72,-0.0786040270727763],[124,276,73,-0.07495787904027457],[124,276,74,-0.07125326260901682],[124,276,75,-0.06749127719350378],[124,276,76,-0.06367307722851145],[124,276,77,-0.05979987224244182],[124,276,78,-0.05587292691692203],[124,276,79,-0.05189356113261906],[124,277,64,-0.10158584934389236],[124,277,65,-0.09838695717810686],[124,277,66,-0.09512463277775435],[124,277,67,-0.09179954843391536],[124,277,68,-0.0884124281596988],[124,277,69,-0.0849640478114772],[124,277,70,-0.08145523519572695],[124,277,71,-0.07788687016159473],[124,277,72,-0.07425988467914452],[124,277,73,-0.07057526290341004],[124,277,74,-0.06683404122394587],[124,277,75,-0.06303730830028381],[124,277,76,-0.059186205082994936],[124,277,77,-0.055281924820467954],[124,277,78,-0.051325713051398325],[124,277,79,-0.047318867582950175],[124,278,64,-0.09763651029298187],[124,278,65,-0.09438405180652237],[124,278,66,-0.09107002550107951],[124,278,67,-0.08769511258089574],[124,278,68,-0.08426004375173163],[124,278,69,-0.08076559927950239],[124,278,70,-0.07721260903397126],[124,278,71,-0.07360195251762569],[124,278,72,-0.06993455887968475],[124,278,73,-0.06621140691537136],[124,278,74,-0.06243352505013161],[124,278,75,-0.05860199130921884],[124,278,76,-0.05471793327233415],[124,278,77,-0.050782528013440076],[124,278,78,-0.046797002025737056],[124,278,79,-0.04276263113176826],[124,279,64,-0.09370944042072671],[124,279,65,-0.09040338511769347],[124,279,66,-0.08703762553899502],[124,279,67,-0.08361285196666662],[124,279,68,-0.0801298019606686],[124,279,69,-0.07658926035460417],[124,279,70,-0.0729920592359442],[124,279,71,-0.06933907791088129],[124,279,72,-0.06563124285376593],[124,279,73,-0.06186952764125586],[124,279,74,-0.0580549528708606],[124,279,75,-0.05418858606430038],[124,279,76,-0.05027154155537017],[124,279,77,-0.04630498036242603],[124,279,78,-0.04229011004548194],[124,279,79,-0.038228184547886124],[124,280,64,-0.08980758076596185],[124,280,65,-0.08644793101144133],[124,280,66,-0.08303043846026259],[124,280,67,-0.07955580263540252],[124,280,68,-0.07602476811240227],[124,280,69,-0.07243812445188136],[124,280,70,-0.06879670611599936],[124,280,71,-0.06510139236899215],[124,280,72,-0.06135310716173392],[124,280,73,-0.05755281900045539],[124,280,74,-0.053701540799300784],[124,280,75,-0.049800329717142655],[124,280,76,-0.04585028697834759],[124,280,77,-0.04185255767760454],[124,280,78,-0.037808330568809945],[124,280,79,-0.03371883783797419],[124,281,64,-0.08593384760260742],[124,281,65,-0.0825206385472384],[124,281,66,-0.0790514449220236],[124,281,67,-0.07552697565243344],[124,281,68,-0.07194798249068929],[124,281,69,-0.0683152598848189],[124,281,70,-0.06462964483109457],[124,281,71,-0.06089201670998723],[124,281,72,-0.05710329710558093],[124,281,73,-0.05326444960858795],[124,281,74,-0.04937647960263425],[124,281,75,-0.045440434034248744],[124,281,76,-0.041457401166235086],[124,281,77,-0.037428510314550856],[124,281,78,-0.033354931568678026],[124,281,79,-0.029237875495454424],[124,282,64,-0.08209113004267593],[124,282,65,-0.0786244295212824],[124,282,66,-0.07510359822188756],[124,282,67,-0.0715293546322951],[124,282,68,-0.06790245784210841],[124,282,69,-0.06422370734810029],[124,282,70,-0.06049394284240228],[124,282,71,-0.05671404398363955],[124,282,72,-0.05288493015096307],[124,282,73,-0.049007560181115295],[124,282,74,-0.04508293208819952],[124,282,75,-0.04111208276658723],[124,282,76,-0.03709608767664263],[124,282,77,-0.033036060513386756],[124,282,78,-0.028933152858087785],[124,282,79,-0.024788553812746805],[124,283,64,-0.0782822876974692],[124,283,65,-0.07476219610224905],[124,283,66,-0.07118982190916612],[124,283,67,-0.06756589332637453],[124,283,68,-0.06389117694104518],[124,283,69,-0.06016647746085968],[124,283,70,-0.0563926374377518],[124,283,71,-0.052570536974022586],[124,283,72,-0.048701093410784935],[124,283,73,-0.04478526099886898],[124,283,74,-0.04082403055185946],[124,283,75,-0.036818429081702464],[124,283,76,-0.032769519416558146],[124,283,77,-0.028678399801020382],[124,283,78,-0.024546203478695128],[124,283,79,-0.020374098257099627],[124,284,64,-0.07451014839686604],[124,284,65,-0.07093679852561963],[124,284,66,-0.06731300745515095],[124,284,67,-0.06363951327004641],[124,284,68,-0.059917090214598956],[124,284,69,-0.056146548370266114],[124,284,70,-0.05232873331479787],[124,284,71,-0.04846452576316557],[124,284,72,-0.04455484119024189],[124,284,73,-0.04060062943537057],[124,284,74,-0.036602874288488074],[124,284,75,-0.03256259305824466],[124,284,76,-0.028480836121791697],[124,284,77,-0.024358686456365075],[124,284,78,-0.02019725915264814],[124,284,79,-0.015997700909883283],[124,285,64,-0.07077750596660198],[124,285,65,-0.0671510628464852],[124,285,66,-0.06347601198233382],[124,285,67,-0.059753101489201044],[124,285,68,-0.05598311342730783],[124,285,69,-0.05216686341533594],[124,285,70,-0.04830520022481044],[124,285,71,-0.04439900535570368],[124,285,72,-0.0404491925932115],[124,285,73,-0.0364567075458401],[124,285,74,-0.03242252716446514],[124,285,75,-0.028347659242810713],[124,285,76,-0.024233141899016652],[124,285,77,-0.02008004303842098],[124,285,78,-0.015889459797543637],[124,285,79,-0.011662517969239672],[124,286,64,-0.0670871180637381],[124,286,65,-0.06340777875102926],[124,286,66,-0.05968165605277245],[124,286,67,-0.055909508266365926],[124,286,68,-0.05209212542589939],[124,286,69,-0.04823032885118553],[124,286,70,-0.04432497067729621],[124,286,71,-0.04037693336473697],[124,286,72,-0.03638712919021109],[124,286,73,-0.032356499718111026],[124,286,74,-0.028286015252397795],[124,286,75,-0.02417667426931877],[124,286,76,-0.02002950283062971],[124,286,77,-0.015845553977448384],[124,286,78,-0.011625907104727523],[124,286,79,-0.007371667316312253],[124,287,64,-0.06344170407021857],[124,287,65,-0.0597096974265823],[124,287,66,-0.055932721515496914],[124,287,67,-0.05211154496631751],[124,287,68,-0.04824696594396155],[124,287,69,-0.044339811633613085],[124,287,70,-0.04039093770534394],[124,287,71,-0.03640122775878715],[124,287,72,-0.032371592747811095],[124,287,73,-0.028302970385337967],[124,287,74,-0.02419632452795792],[124,287,75,-0.020052644540800052],[124,287,76,-0.015872944642316644],[124,287,77,-0.011658263229115617],[124,287,78,-0.007409662180822119],[124,287,79,-0.003128226144940044],[124,288,64,-0.05984394304442486],[124,288,65,-0.056059529490159576],[124,288,66,-0.05223194941286374],[124,288,67,-0.04836198192108765],[124,288,68,-0.04445043346643654],[124,288,69,-0.04049813726391485],[124,288,70,-0.03650595269159612],[124,288,71,-0.032474764669753464],[124,288,72,-0.02840548301940274],[124,288,73,-0.024299041800397853],[124,288,74,-0.020156398628732447],[124,288,75,-0.01597853397350668],[124,288,76,-0.011766450433219694],[124,288,77,-0.007521171991516612],[124,288,78,-0.0032437432523766685],[124,288,79,0.0010647713452899277],[124,289,64,-0.05629647173092489],[124,289,65,-0.05245994297568107],[124,289,66,-0.04858203794606214],[124,289,67,-0.04466354637457112],[124,289,68,-0.040705283154146815],[124,289,69,-0.03670808769414624],[124,289,70,-0.032672823255058325],[124,289,71,-0.028600376262084476],[124,289,72,-0.024491655597538048],[124,289,73,-0.020347591872203752],[124,289,74,-0.016169136675307394],[124,289,75,-0.011957261803559882],[124,289,76,-0.007712958468930997],[124,289,77,-0.0034372364852859882],[124,289,78,8.688765661315212E-4],[124,289,79,0.005204336192400766],[124,290,64,-0.05280188262825106],[124,290,65,-0.0489135613797044],[124,290,66,-0.04498564049959847],[124,290,67,-0.0410189204865605],[124,290,68,-0.0370142248281779],[124,290,69,-0.032972399292649446],[124,290,70,-0.028894311198569028],[124,290,71,-0.024780848662981775],[124,290,72,-0.0206329198276598],[124,290,73,-0.016451452063745153],[124,290,74,-0.012237391154401284],[124,290,75,-0.007991700455947631],[124,290,76,-0.0037153600371234163],[124,290,77,5.906342033797085E-4],[124,290,78,0.004925271441137247],[124,290,79,0.009287526851990774],[124,291,64,-0.049362722114828866],[124,291,65,-0.045422961765795744],[124,291,66,-0.04144536372488722],[124,291,67,-0.037430739396335844],[124,291,68,-0.03337992101424658],[124,291,69,-0.029293760869978785],[124,291,70,-0.0251731305170598],[124,291,71,-0.021018919953770893],[124,291,72,-0.01683203678335532],[124,291,73,-0.012613405351992513],[124,291,74,-0.008363965864182282],[124,291,75,-0.004084673476012574],[124,291,76,2.2350263404213866E-4],[124,291,77,0.0045595802166546184],[124,291,78,0.00892256492552812],[124,291,79,0.013311451313660433],[124,292,64,-0.045981488632895834],[124,292,65,-0.041990672927376155],[124,292,66,-0.03796376568278326],[124,292,67,-0.03390158934564261],[124,292,68,-0.029804985046885224],[124,292,69,-0.025674811765053318],[124,292,70,-0.021511945466434285],[124,292,71,-0.01731727822226503],[124,292,72,-0.01309171730295719],[124,292,73,-0.008836184249486984],[124,292,74,-0.004551613921591591],[124,292,75,-2.389535232485973E-4],[124,292,76,0.004100838394915679],[124,292,77,0.008466792956152908],[124,292,78,0.01285793200106966],[124,292,79,0.01727326915408836],[124,293,64,-0.042660630930602766],[124,293,65,-0.038619173609236584],[124,293,66,-0.03454335404525055],[124,293,67,-0.030434005861256386],[124,293,68,-0.026291979233645013],[124,293,69,-0.02211813999173945],[124,293,70,-0.01791336869327198],[124,293,71,-0.01367855967632775],[124,293,72,-0.009414620087703024],[124,293,73,-0.005122468887827941],[124,293,74,-8.030358318865394E-4],[124,293,75,0.0035427395723793276],[124,293,76,0.007913909130545627],[124,293,77,0.012309517050916957],[124,293,78,0.016728601057495657],[124,293,79,0.021170193526535444],[124,294,64,-0.03940254636220125],[124,294,65,-0.035310890787625115],[124,294,66,-0.031186584356071023],[124,294,67,-0.027030471997036343],[124,294,68,-0.022843413079216612],[124,294,69,-0.01862628044576263],[124,294,70,-0.014379959425254177],[124,294,71,-0.010105346818533409],[124,294,72,-0.005803349861348145],[124,294,73,-0.0014748851629522858],[124,294,74,0.0028791223797026005],[124,294,75,0.007257740691697628],[124,294,76,0.011660031654162045],[124,294,77,0.016085052262431898],[124,294,78,0.02053185580837115],[124,294,79,0.024999493086885288],[124,295,64,-0.03620957924623827],[124,295,65,-0.03206819800882668],[124,295,66,-0.02789585835051174],[124,295,67,-0.023693416635382908],[124,295,68,-0.0194617415693846],[124,295,69,-0.015201713171863737],[124,295,70,-0.010914221722225087],[124,295,71,-0.006600166681837591],[124,295,72,-0.002260455591143698],[124,295,73,0.0021039970578821537],[124,295,74,0.006492270974293446],[124,295,75,0.010903441245259798],[124,295,76,0.015336579538048747],[124,295,77,0.019790755326758974],[124,295,78,0.024265037143823845],[124,295,79,0.028758493856315584],[124,296,64,-0.03308401928192706],[124,296,65,-0.028893413786405878],[124,296,66,-0.024673522334122747],[124,296,67,-0.020425212848277294],[124,296,68,-0.016149363514994478],[124,296,69,-0.01184686169137987],[124,296,70,-0.0075186027880728284],[124,296,71,-0.0031654891264409207],[124,296,72,0.0012115712296329878],[124,296,73,0.00561166566722196],[124,296,74,0.010033878243457084],[124,296,75,0.014477290929764783],[124,296,76,0.018940984881609155],[124,296,77,0.02342404173359368],[124,296,78,0.027925544919944673],[124,296,79,0.032444581020403054],[124,297,64,-0.030028100023604842],[124,297,65,-0.025788800057022346],[124,297,66,-0.021521865620575828],[124,297,67,-0.0172281763178099],[124,297,68,-0.012908619955837933],[124,297,69,-0.008564091390154613],[124,297,70,-0.00419549134333265],[124,297,71,1.962748022486388E-4],[124,297,72,0.004610298237694016],[124,297,73,0.00904566798675048],[124,297,74,0.013501472191210298],[124,297,75,0.017976799422056697],[124,297,76,0.022470740016727733],[124,297,77,0.026982387442349418],[124,297,78,0.031510839684961725],[124,297,79,0.03605520066476442],[124,298,64,-0.02704399741320279],[124,298,65,-0.022756560694743258],[124,298,66,-0.018443119028465668],[124,298,67,-0.014104563816117743],[124,298,68,-0.009741792624376869],[124,298,69,-0.00535570796669764],[124,298,70,-9.472160584305112E-4],[124,298,71,0.003482774454639681],[124,298,72,0.007933353794386186],[124,298,73,0.012403612374912082],[124,298,74,0.01689264215397978],[124,298,75,0.02139953801079402],[124,298,76,0.025923399150515322],[124,298,77,0.03046333053535564],[124,298,78,0.03501844434227693],[124,298,79,0.039587861447323694],[124,299,64,-0.0241338283708864],[124,299,65,-0.01979884008401378],[124,299,66,-0.015439453437237294],[124,299,67,-0.011056571744898838],[124,299,68,-0.006651102469474188],[124,299,69,-0.002223955940763564],[124,299,70,0.00222395595225916],[124,299,71,0.006691721096791323],[124,299,72,0.01117842851878971],[124,299,73,0.015683169772649663],[124,299,74,0.020205040358357136],[124,299,75,0.024743141165604957],[124,299,76,0.029296579945253587],[124,299,77,0.033864472807985456],[124,299,78,0.03844594575017749],[124,299,79,0.04304013620701742],[124,300,64,-0.02129964944378393],[124,300,65,-0.01691772175120112],[124,300,66,-0.012512978402154436],[124,300,67,-0.008086334734415404],[124,300,68,-0.003638708240043864],[124,300,69,8.289827777387127E-4],[124,300,70,0.005315820575632721],[124,300,71,0.009820889369150154],[124,300,72,0.014343276759362117],[124,300,73,0.01888207518734898],[124,300,74,0.023436383416739703],[124,300,75,0.02800530804382565],[124,300,76,0.03258796503563419],[124,300,77,0.03718348129580889],[124,300,78,0.04179099625832047],[124,300,79,0.04640966350903676],[124,301,64,-0.018543455512731004],[124,301,65,-0.01411522705463919],[124,301,66,-0.009665740828234765],[124,301,67,-0.00519592430191116],[124,301,68,-7.067051285441217E-4],[124,301,69,0.003800990259583789],[124,301,70,0.008326238084431621],[124,301,71,0.012868118684267415],[124,301,72,0.01742571800420726],[124,301,73,0.021998129115070465],[124,301,74,0.026584453760938643],[124,301,75,0.03118380393490173],[124,301,76,0.03579530348337809],[124,301,77,0.040418089738855356],[124,301,78,0.04505131518107498],[124,301,79,0.049694149126690235],[124,302,64,-0.01586717855718112],[124,302,65,-0.011393313933327917],[124,302,66,-0.006899723703307568],[124,302,67,-0.0023873475696005626],[124,302,68,0.002142876525527075],[124,302,69,0.006690013866651901],[124,302,70,0.01125313446100714],[124,302,71,0.015831314563331443],[124,302,72,0.020423638229802324],[124,302,73,0.02502919890089858],[124,302,74,0.029647101013582568],[124,302,75,0.03427646164228142],[124,302,76,0.038916412169057196],[124,302,77,0.04356609998281067],[124,302,78,0.04822469020754404],[124,302,79,0.05289136745970935],[124,303,64,-0.013272686478203802],[124,303,65,-0.008753875714203335],[124,303,66,-0.004216844890109983],[124,303,67,3.374539578537873E-4],[124,303,68,0.004908072472218816],[124,303,69,0.009494067502022505],[124,303,70,0.01409450266036361],[124,303,71,0.01870844991160432],[124,303,72,0.023334991188271585],[124,303,73,0.02797322003749956],[124,303,74,0.032622243297408406],[124,303,75,0.03728118280289263],[124,303,76,0.041949177121214],[124,303,77,0.046625383317240955],[124,303,78,0.051308978748361087],[124,303,79,0.05599916288909276],[124,304,64,-0.01076178197950549],[124,304,65,-0.006198739977917957],[124,304,66,-0.0016189559773588254],[124,304,67,0.002976605556442542],[124,304,68,0.007586985727862637],[124,304,69,0.012211232799806584],[124,304,70,0.01684840381254838],[124,304,71,0.021497566232830598],[124,304,72,0.02615779963327683],[124,304,73,0.030828197401958336],[124,304,74,0.03550786848251121],[124,304,75,0.04019593914427522],[124,304,76,0.04489155478285104],[124,304,77,0.04959388175091775],[124,304,78,0.05430210921933545],[124,304,79,0.059015451068562326],[124,305,64,-0.008336201506609244],[124,305,65,-0.0037296674832658794],[124,305,66,8.921588100638499E-4],[124,305,67,0.005528300386346793],[124,305,68,0.01017778769181426],[124,305,69,0.014839660254572083],[124,305,70,0.019512968364240966],[124,305,71,0.024196774782469923],[124,305,72,0.028890156484374672],[124,305,73,0.0335922064307418],[124,305,74,0.03830203537139827],[124,305,75,0.04301877367921344],[124,305,76,0.047741573215133136],[124,305,77,0.05246960922408558],[124,305,78,0.05720208226178683],[124,305,79,0.06193822015247116],[124,306,64,-0.005997614244122533],[124,306,65,-0.0013483511501815766],[124,306,66,0.003314783641884707],[124,306,67,0.007990800535986022],[124,306,68,0.012678719203275908],[124,306,69,0.017377570290439036],[124,306,70,0.022086397159619],[124,306,71,0.026804257659832312],[124,306,72,0.0315302259299188],[124,306,73,0.03626339423286873],[124,306,74,0.041002874821928874],[124,306,75,0.04574780183795096],[124,306,76,0.050497333238385025],[124,306,77,0.055250652757756036],[124,306,78,0.06000697189965196],[124,306,79,0.06476553196024853],[124,307,64,-0.003747621171033999],[124,307,65,9.435848987468382E-4],[124,307,66,0.005647272054232877],[124,307,67,0.010362438006638497],[124,307,68,0.015088091538261891],[124,307,69,0.019823254269907754],[124,307,70,0.024566962460565202],[124,307,71,0.029318268839179602],[124,307,72,0.03407624446857346],[124,307,73,0.038839980641353085],[124,307,74,0.043608590808207066],[124,307,75,0.04838121253805489],[124,307,76,0.05315700951045333],[124,307,77,0.05793517354009619],[124,307,78,0.06271492663343528],[124,307,79,0.06749552307745059],[124,308,64,-0.0015877541741631876],[124,308,65,0.0031445862381245734],[124,308,66,0.007888047862324318],[124,308,67,0.012641615637504246],[124,308,68,0.017404287346575703],[124,308,69,0.02217507544228632],[124,308,70,0.026953008906079455],[124,308,71,0.03173713513965696],[124,308,72,0.036526521889299085],[124,308,73,0.04132025920277997],[124,308,74,0.04611746141928483],[124,308,75,0.05091726919178638],[124,308,76,0.05571885154228724],[124,308,77,0.06052140794976599],[124,308,78,0.06532417047085398],[124,308,79,0.07012640589326946],[124,309,64,4.805247803022217E-4],[124,309,65,0.005253168981023695],[124,309,66,0.010035606014107558],[124,309,67,0.014826807971278895],[124,309,68,0.01962576152886903],[124,309,69,0.02443146983178761],[124,309,70,0.029242954410968566],[124,309,71,0.03405925713412751],[124,309,72,0.03887944218988447],[124,309,73,0.043702598105088114],[124,309,74,0.048527839795751815],[124,309,75,0.05335431065105421],[124,309,76,0.0581811846508154],[124,309,77,0.06300766851628276],[124,309,78,0.06783300389425657],[124,309,79,0.07265646957457965],[124,310,64,0.0024558244172340274],[124,310,65,0.007267920561736543],[124,310,66,0.012088513384921687],[124,310,67,0.016916562060293086],[124,310,68,0.021751042053837044],[124,310,69,0.026590947065353754],[124,310,70,0.03143529100386956],[124,310,71,0.036283109996966365],[124,310,72,0.041133464434082626],[124,310,73,0.045985441043619915],[124,310,74,0.05083815500427033],[124,310,75,0.05569075209001052],[124,310,76,0.060542410849179884],[124,310,77,0.06539234481747296],[124,310,78,0.07023980476487746],[124,310,79,0.07508408097658327],[124,311,64,0.004336824864843089],[124,311,65,0.009187500459894318],[124,311,66,0.014045409513051707],[124,311,67,0.018909498213100645],[124,311,68,0.02377873071543131],[124,311,69,0.028652091140084768],[124,311,70,0.033528585604485],[124,311,71,0.03840724429069095],[124,311,72,0.04328712354722496],[124,311,73,0.048167308025309205],[124,311,74,0.05304691284992791],[124,311,75,0.057925085825159386],[124,311,76,0.06280100967419533],[124,311,77,0.06767390431387915],[124,311,78,0.07254302916379318],[124,311,79,0.07740768548992007],[124,312,64,0.006122278308874074],[124,312,65,0.011010640866014637],[124,312,66,0.015905007276245983],[124,312,67,0.020804310681579175],[124,312,68,0.025707503830155506],[124,312,69,0.030613561130339473],[124,312,70,0.03552148074009674],[124,312,71,0.040430286691495385],[124,312,72,0.045339031050383824],[124,312,73,0.05024679611107813],[124,312,74,0.05515269662647736],[124,312,75,0.0600558820730495],[124,312,76,0.06495553895110578],[124,312,77,0.06985089312019584],[124,312,78,0.07474121216965313],[124,312,79,0.07962580782431582],[124,313,64,0.007811009588755913],[124,313,65,0.01273614728851935],[124,313,66,0.017666093509238034],[124,313,67,0.022599768288587604],[124,313,68,0.02753611287448958],[124,313,69,0.03247409183455345],[124,313,70,0.0374126952014051],[124,313,71,0.04235094065373626],[124,313,72,0.04728787573312958],[124,313,73,0.05222258009649133],[124,313,74,0.057154167804513406],[124,313,75,0.06208178964560061],[124,313,76,0.06700463549568947],[124,313,77,0.07192193671378308],[124,313,78,0.0768329685732374],[124,313,79,0.08173705272882115],[124,314,64,0.009401916735607557],[124,314,65,0.01436289910212235],[124,314,66,0.019327529562168502],[124,314,67,0.024294714996075814],[124,314,68,0.029263385062334307],[124,314,69,0.03423249436166634],[124,314,70,0.03920102463758304],[124,314,71,0.044167987013257665],[124,314,72,0.04913242426476952],[124,314,73,0.054093413130552825],[124,314,74,0.05905006665746976],[124,314,75,0.06400153658294597],[124,314,76,0.06894701575359213],[124,314,77,0.07388574058013905],[124,314,78,0.07881699352871926],[124,314,79,0.083740105648518],[124,315,64,0.0108939714521855],[124,315,65,0.015889850037671974],[124,315,66,0.02088825179999701],[124,315,67,0.025888070413734462],[124,315,68,0.030888223862567565],[124,315,69,0.03588765665724883],[124,315,70,0.040885342090637905],[124,315,71,0.04588028452964957],[124,315,72,0.05087152174416523],[124,315,73,0.05585812727274095],[124,315,74,0.06083921282553509],[124,315,75,0.0658139307238895],[124,315,76,0.07078147637698987],[124,315,77,0.07574109079543317],[124,315,78,0.08069206314173477],[124,315,79,0.08563373331779678],[124,316,64,0.012286219534713455],[124,316,65,0.017316028613389337],[124,316,66,0.02234727204284173],[124,316,67,0.02737883024812457],[124,316,68,0.03240960945664964],[124,316,69,0.037438543969267685],[124,316,70,0.042464598469017595],[124,316,71,0.04748677036737592],[124,316,72,0.05250409218806046],[124,316,73,0.057515633988216935],[124,316,74,0.06252050581741969],[124,316,75,0.06751786021391065],[124,316,76,0.07250689473851119],[124,316,77,0.07748685454602808],[124,316,78,0.08245703499418958],[124,316,79,0.08741678429013389],[124,317,64,0.013577781236664144],[124,317,65,0.0186405385075753],[124,317,66,0.02370367794732009],[124,317,67,0.028766066692360426],[124,317,68,0.03382659913635319],[124,317,69,0.038884199253564594],[124,317,70,0.043937822960538386],[124,317,71,0.04898646051585001],[124,317,72,0.05402913895800174],[124,317,73,0.05906492458128723],[124,317,74,0.0640929254500553],[124,317,75,0.06911229395079954],[124,317,76,0.07412222938250512],[124,317,77,0.07912198058507813],[124,317,78,0.08411084860588913],[124,317,79,0.08908818940445637],[124,318,64,0.014767851574410795],[124,318,65,0.019862558872697805],[124,318,66,0.02495663332880413],[124,318,67,0.030048928756257504],[124,318,68,0.0351383276415268],[124,318,69,0.040223743518956995],[124,318,70,0.045304123384541456],[124,318,71,0.0503784501483624],[124,318,72,0.055445745125754675],[124,318,73,0.06050507056702112],[124,318,74,0.06555553222613011],[124,318,75,0.07059628196782136],[124,318,76,0.07562652041355078],[124,318,77,0.08064549962610071],[124,318,78,0.08565252583288696],[124,318,79,0.09064696218798773],[124,319,64,0.01585570057479377],[124,319,65,0.02098134459091089],[124,319,66,0.02610537842463806],[124,319,67,0.03122664253699514],[124,319,68,0.03634400743794414],[124,319,69,0.041456376112011945],[124,319,70,0.04656268648332906],[124,319,71,0.051661913919915675],[124,319,72,0.0567530737772689],[124,319,73,0.06183522398107966],[124,319,74,0.06690746764951222],[124,319,75,0.07196895575446746],[124,319,76,0.07701888982226673],[124,319,77,0.08205652467357655],[124,319,78,0.08708117120261147],[124,319,79,0.09209219919563519],[125,-64,64,-0.1579183868857229],[125,-64,65,-0.16182420315483748],[125,-64,66,-0.1656068731734388],[125,-64,67,-0.16926494042267193],[125,-64,68,-0.17279711624427085],[125,-64,69,-0.17620228576209773],[125,-64,70,-0.17947951386905314],[125,-64,71,-0.1826280512792593],[125,-64,72,-0.18564734064552768],[125,-64,73,-0.18853702274202144],[125,-64,74,-0.1912969427123722],[125,-64,75,-0.19392715638288816],[125,-64,76,-0.1964279366411481],[125,-64,77,-0.19879977987983155],[125,-64,78,-0.20104341250585023],[125,-64,79,-0.2031597975147479],[125,-63,64,-0.15237229123822948],[125,-63,65,-0.15626598065231045],[125,-63,66,-0.16003707398583433],[125,-63,67,-0.1636841121739404],[125,-63,68,-0.16720580348352454],[125,-63,69,-0.17060102942696198],[125,-63,70,-0.17386885074121872],[125,-63,71,-0.177008513432245],[125,-63,72,-0.18001945488466808],[125,-63,73,-0.18290131003669496],[125,-63,74,-0.18565391762047734],[125,-63,75,-0.18827732646758988],[125,-63,76,-0.19077180187989962],[125,-63,77,-0.19313783206568913],[125,-63,78,-0.19537613464109138],[125,-63,79,-0.19748766319681232],[125,-62,64,-0.14674294747130023],[125,-62,65,-0.15062373734866552],[125,-62,66,-0.15438250986479551],[125,-62,67,-0.15801780330366266],[125,-62,68,-0.1615283227240608],[125,-62,69,-0.16491294586505534],[125,-62,70,-0.16817072911683084],[125,-62,71,-0.17130091355683463],[125,-62,72,-0.1743029310512325],[125,-62,73,-0.17717641042159094],[125,-62,74,-0.17992118367702836],[125,-62,75,-0.18253729231149884],[125,-62,76,-0.1850249936664763],[125,-62,77,-0.18738476735890686],[125,-62,78,-0.1896173217744881],[125,-62,79,-0.1917236006262426],[125,-61,64,-0.14103463854565168],[125,-61,65,-0.1449017636400376],[125,-61,66,-0.1486474783286733],[125,-61,67,-0.1522703181405506],[125,-61,68,-0.1557689847947521],[125,-61,69,-0.1591423520971711],[125,-61,70,-0.16238947190263697],[125,-61,71,-0.1655095801423545],[125,-61,72,-0.1685021029166659],[125,-61,73,-0.17136666265305145],[125,-61,74,-0.1741030843296144],[125,-61,75,-0.17671140176370925],[125,-61,76,-0.17919186396598286],[125,-61,77,-0.18154494155970113],[125,-61,78,-0.18377133326540895],[125,-61,79,-0.18587197245090248],[125,-60,64,-0.13525169492782352],[125,-60,65,-0.13910439793107632],[125,-60,66,-0.14283632538852264],[125,-60,67,-0.14644600997177837],[125,-60,68,-0.14993214993034543],[125,-60,69,-0.15329361497914573],[125,-60,70,-0.1565294522514793],[125,-60,71,-0.159638892317302],[125,-60,72,-0.16262135526684485],[125,-60,73,-0.16547645685947898],[125,-60,74,-0.1682040147380831],[125,-60,75,-0.17080405470856175],[125,-60,76,-0.17327681708479403],[125,-60,77,-0.1756227630988757],[125,-60,78,-0.1778425813767115],[125,-60,79,-0.17993719447893008],[125,-59,64,-0.12939848970232948],[125,-59,65,-0.13323602173721893],[125,-59,66,-0.1369534406409083],[125,-59,67,-0.1405492761267253],[125,-59,68,-0.14402222284654287],[125,-59,69,-0.14737114626868264],[125,-59,70,-0.15059508862125692],[125,-59,71,-0.15369327490083973],[125,-59,72,-0.15666511894649593],[125,-59,73,-0.15951022957906502],[125,-59,74,-0.16222841680596067],[125,-59,75,-0.16481969809113461],[125,-59,76,-0.16728430469048328],[125,-59,77,-0.16962268805255865],[125,-59,78,-0.17183552628464382],[125,-59,79,-0.173923730684161],[125,-58,64,-0.12347943355779412],[125,-58,65,-0.12730105466047104],[125,-58,66,-0.13100325223375298],[125,-58,67,-0.1345845529333155],[125,-58,68,-0.13804364768725808],[125,-58,69,-0.14137939756394102],[125,-58,70,-0.14459083970526365],[125,-58,71,-0.14767719332529583],[125,-58,72,-0.1506378657742683],[125,-58,73,-0.15347245866783743],[125,-58,74,-0.15618077408187492],[125,-58,75,-0.15876282081243442],[125,-58,76,-0.161218820701174],[125,-58,77,-0.16354921502609365],[125,-58,78,-0.1657546709576494],[125,-58,79,-0.16783608808021666],[125,-57,64,-0.1174989696473906],[125,-57,65,-0.12130394923900722],[125,-57,66,-0.12499022170554652],[125,-57,67,-0.12855631054727668],[125,-57,68,-0.1320009028443654],[125,-57,69,-0.13532285511421027],[125,-57,70,-0.13852119923422612],[125,-57,71,-0.14159514842999354],[125,-57,72,-0.14454410332878054],[125,-57,73,-0.14736765807834895],[125,-57,74,-0.1500656065313013],[125,-57,75,-0.1526379484946121],[125,-57,76,-0.15508489604462827],[125,-57,77,-0.1574068799074],[125,-57,78,-0.15960455590439637],[125,-57,79,-0.1616788114635822],[125,-56,64,-0.11146156832343301],[125,-56,65,-0.11524918567044617],[125,-56,66,-0.11891883869776554],[125,-56,67,-0.12246904765416733],[125,-56,68,-0.12589849564978883],[125,-56,69,-0.12920603450252366],[125,-56,70,-0.13239069064988873],[125,-56,71,-0.13545167112625922],[125,-56,72,-0.1383883696054944],[125,-56,73,-0.1412003725088573],[125,-56,74,-0.14388746517848294],[125,-56,75,-0.14644963811604939],[125,-56,76,-0.14888709328692595],[125,-56,77,-0.1512002504896629],[125,-56,78,-0.15338975379088016],[125,-56,79,-0.15545647802552565],[125,-55,64,-0.10537172174596932],[125,-55,65,-0.10914126640864474],[125,-55,66,-0.11279361554035061],[125,-55,67,-0.11632728604401621],[125,-55,68,-0.11974095693978426],[125,-55,69,-0.12303347520005237],[125,-55,70,-0.1262038616499913],[125,-55,71,-0.1292513169334506],[125,-55,72,-0.13217522754425926],[125,-55,73,-0.13497517192283748],[125,-55,74,-0.13765092661836553],[125,-55,75,-0.14020247251616624],[125,-55,76,-0.142630001130579],[125,-55,77,-0.14493392096318458],[125,-55,78,-0.1471148639264399],[125,-55,79,-0.1491736918326979],[125,-54,64,-0.0992339383656744],[125,-54,65,-0.10298471063431447],[125,-54,66,-0.10661908171054568],[125,-54,67,-0.11013556505888111],[125,-54,68,-0.11353283549171356],[125,-54,69,-0.11680973499258562],[125,-54,70,-0.11996527860494843],[125,-54,71,-0.12299866038631602],[125,-54,72,-0.12590925942782916],[125,-54,73,-0.12869664593913843],[125,-54,74,-0.13136058739885925],[125,-54,75,-0.13390105477024816],[125,-54,76,-0.13631822878238453],[125,-54,77,-0.13861250627671173],[125,-54,78,-0.1407845066190041],[125,-54,79,-0.1428350781767257],[125,-53,64,-0.09305273728090424],[125,-53,65,-0.09678404859931533],[125,-53,66,-0.10039977816495205],[125,-53,67,-0.10389843591317993],[125,-53,68,-0.10727869233316334],[125,-53,69,-0.11053938427895282],[125,-53,70,-0.11367952084607635],[125,-53,71,-0.11669828931353377],[125,-53,72,-0.11959506115121188],[125,-53,73,-0.12236939809263159],[125,-53,74,-0.12502105827327592],[125,-53,75,-0.12755000243415282],[125,-53,76,-0.1299564001908715],[125,-53,77,-0.13224063636809258],[125,-53,78,-0.13440331739941103],[125,-53,79,-0.13644527779264448],[125,-52,64,-0.0868326424687399],[125,-52,65,-0.09054381584446225],[125,-52,66,-0.09414025154463157],[125,-52,67,-0.09762045588662693],[125,-52,68,-0.10098309492324808],[125,-52,69,-0.10422700024121934],[125,-52,70,-0.10735117482521073],[125,-52,71,-0.11035479898726841],[125,-52,72,-0.11323723636168082],[125,-52,73,-0.11599803996518776],[125,-52,74,-0.11863695832277499],[125,-52,75,-0.12115394165872384],[125,-52,76,-0.12354914815317608],[125,-52,77,-0.12582295026409007],[125,-52,78,-0.12797594111463595],[125,-52,79,-0.1300089409460099],[125,-51,64,-0.08057817689034041],[125,-51,65,-0.08426854729115785],[125,-51,66,-0.0878450482535772],[125,-51,67,-0.09130618239009303],[125,-51,68,-0.09465061120641127],[125,-51,69,-0.09787716088697684],[125,-51,70,-0.10098482814602472],[125,-51,71,-0.10397278614405792],[125,-51,72,-0.10684039046976657],[125,-51,73,-0.10958718518730093],[125,-51,74,-0.11221290894914204],[125,-51,75,-0.11471750117423685],[125,-51,76,-0.11710110829166032],[125,-51,77,-0.11936409004967674],[125,-51,78,-0.12150702589025353],[125,-51,79,-0.12353072138900356],[125,-50,64,-0.07429385647045572],[125,-50,65,-0.07796277120670614],[125,-50,66,-0.08151870841039999],[125,-50,67,-0.08496016690423946],[125,-50,68,-0.08828580353857474],[125,-50,69,-0.09149443896357035],[125,-50,70,-0.09458506346690132],[125,-50,71,-0.09755684287688804],[125,-50,72,-0.10040912453108009],[125,-50,73,-0.10314144331020814],[125,-50,74,-0.10575352773774238],[125,-50,75,-0.10824530614472194],[125,-50,76,-0.11061691290012698],[125,-50,77,-0.11286869470665739],[125,-50,78,-0.11500121696197496],[125,-50,79,-0.11701527018538238],[125,-49,64,-0.06798418395092176],[125,-49,65,-0.07163100304312786],[125,-49,66,-0.07516575967305972],[125,-49,67,-0.07858694879075034],[125,-49,68,-0.08189322248546027],[125,-49,69,-0.08508339574409796],[125,-49,70,-0.08815645227518609],[125,-49,71,-0.09111155039826946],[125,-49,72,-0.09394802899878885],[125,-49,73,-0.09666541354832836],[125,-49,74,-0.09926342219047879],[125,-49,75,-0.10174197189198708],[125,-49,76,-0.1041011846594524],[125,-49,77,-0.1063413938214437],[125,-49,78,-0.10846315037608645],[125,-49,79,-0.11046722940409981],[125,-48,64,-0.0616536426184785],[125,-48,65,-0.06527773914981638],[125,-48,66,-0.06879071093696842],[125,-48,67,-0.07219104897649875],[125,-48,68,-0.075477400493422],[125,-48,69,-0.07864857468551001],[125,-48,70,-0.08170354853315054],[125,-48,71,-0.08464147267466404],[125,-48,72,-0.08746167734708943],[125,-48,73,-0.0901636783923575],[125,-48,74,-0.0927471833290876],[125,-48,75,-0.09521209748968262],[125,-48,76,-0.09755853022297756],[125,-48,77,-0.09978680116231953],[125,-48,78,-0.10189744655913069],[125,-48,79,-0.10389122568192655],[125,-47,64,-0.05530668990672971],[125,-47,65,-0.05890745035986078],[125,-47,66,-0.06239804590630538],[125,-47,67,-0.06577696351047624],[125,-47,68,-0.06904284543261852],[125,-47,69,-0.07219449495864005],[125,-47,70,-0.07523088219550278],[125,-47,71,-0.07815114993207994],[125,-47,72,-0.08095461956549455],[125,-47,73,-0.083640797092851],[125,-47,74,-0.08620937916860516],[125,-47,75,-0.08866025922723497],[125,-47,76,-0.09099353367148111],[125,-47,77,-0.09320950812602413],[125,-47,78,-0.09530870375665579],[125,-47,79,-0.09729186365491382],[125,-46,64,-0.048947750872106566],[125,-46,65,-0.05252457544988276],[125,-46,66,-0.05599221653838027],[125,-46,67,-0.05934915699332988],[125,-46,68,-0.06259403401236319],[125,-46,69,-0.06572564485001298],[125,-46,70,-0.068742952598282],[125,-46,71,-0.07164509203268632],[125,-46,72,-0.07443137552378776],[125,-46,73,-0.0771012990141352],[125,-46,74,-0.07965454806084227],[125,-46,75,-0.08209100394348723],[125,-46,76,-0.08441074983758245],[125,-46,77,-0.08661407705349644],[125,-46,78,-0.08870149134087191],[125,-46,79,-0.09067371925852497],[125,-45,64,-0.042581211544130415],[125,-45,65,-0.046133514473702064],[125,-45,66,-0.049577636361365585],[125,-45,67,-0.052912055879824615],[125,-45,68,-0.05613540506897907],[125,-45,69,-0.05924647503574665],[125,-45,70,-0.06224422171946209],[125,-45,71,-0.06512777172276096],[125,-45,72,-0.06789642820796171],[125,-45,73,-0.07054967685886337],[125,-45,74,-0.0730871919081919],[125,-45,75,-0.0755088422303738],[125,-45,76,-0.077814697499892],[125,-45,77,-0.08000503441509965],[125,-45,78,-0.08208034298754385],[125,-45,79,-0.08404133289677251],[125,-44,64,-0.03621141214984103],[125,-44,65,-0.03973862196968281],[125,-44,66,-0.04315867366524395],[125,-44,67,-0.046470041654077976],[125,-44,68,-0.049671352725999984],[125,-44,69,-0.05276139172739358],[125,-44,70,-0.055739107311103764],[125,-44,71,-0.058603617751822434],[125,-44,72,-0.0613542168269825],[125,-44,73,-0.06399037976307287],[125,-44,74,-0.06651176924761548],[125,-44,75,-0.06891824150647341],[125,-44,76,-0.07120985244675448],[125,-44,77,-0.07338686386517723],[125,-44,78,-0.07544974972195861],[125,-44,79,-0.07739920248019394],[125,-43,64,-0.02984264021220684],[125,-43,65,-0.033344200041578564],[125,-43,66,-0.03673964456579859],[125,-43,67,-0.04002744387739354],[125,-43,68,-0.043206219426544235],[125,-43,69,-0.046274749689550476],[125,-43,70,-0.04923197590288808],[125,-43,71,-0.052077007862768476],[125,-43,72,-0.054809129790211686],[125,-43,73,-0.057427806261555414],[125,-43,74,-0.059932688204626716],[125,-43,75,-0.06232361896025951],[125,-43,76,-0.06460064040941094],[125,-43,77,-0.06676399916575415],[125,-43,78,-0.06881415283379555],[125,-43,79,-0.07075177633249508],[125,-42,64,-0.023479123522854084],[125,-42,65,-0.026954491313221807],[125,-42,66,-0.030324805941980948],[125,-42,67,-0.033588533109027985],[125,-42,68,-0.03674428883819836],[125,-42,69,-0.039790845129569985],[125,-42,70,-0.04272713567736408],[125,-42,71,-0.04555226165335802],[125,-42,72,-0.048265497555820214],[125,-42,73,-0.05086629712388879],[125,-42,74,-0.05335429931762059],[125,-42,75,-0.055729334363393224],[125,-42,76,-0.05799142986491901],[125,-42,77,-0.060140816979734835],[125,-42,78,-0.06217793666123428],[125,-42,79,-0.0641034459662031],[125,-41,64,-0.01712502298894303],[125,-41,65,-0.020573671756875744],[125,-41,66,-0.02391834824648209],[125,-41,67,-0.027157513699720415],[125,-41,68,-0.030289778630239073],[125,-41,69,-0.033313908459204344],[125,-41,70,-0.03622882921673709],[125,-41,71,-0.03903363330886711],[125,-41,72,-0.04172758535002008],[125,-41,73,-0.04431012806095225],[125,-41,74,-0.04678088823236548],[125,-41,75,-0.049139682753885694],[125,-41,76,-0.051386524708655235],[125,-41,77,-0.05352162953341599],[125,-41,78,-0.05554542124413553],[125,-41,79,-0.057458538727151565],[125,-40,64,-0.010784425354042337],[125,-40,65,-0.01420584339510711],[125,-40,66,-0.017524388189360307],[125,-40,67,-0.020738516457833645],[125,-40,68,-0.023846833123039035],[125,-40,69,-0.026848096928025367],[125,-40,70,-0.029741226121047903],[125,-40,71,-0.032525304205763605],[125,-40,72,-0.03519958575696469],[125,-40,73,-0.03776350230177161],[125,-40,74,-0.040216668266511935],[125,-40,75,-0.042558886988967815],[125,-40,76,-0.04479015679624865],[125,-40,77,-0.04691067714816155],[125,-40,78,-0.0489208548461304],[125,-40,79,-0.05082131030764159],[125,-39,64,-0.004461335793309984],[125,-39,65,-0.007855026876480209],[125,-39,66,-0.011146961295033453],[125,-39,67,-0.014335591188414765],[125,-39,68,-0.017419515809970143],[125,-39,69,-0.020397487128937297],[125,-39,70,-0.023268415498055917],[125,-39,71,-0.02603137538671152],[125,-39,72,-0.028685611179625647],[125,-39,73,-0.031230543041012804],[125,-39,74,-0.03366577284442751],[125,-39,75,-0.03599109016799262],[125,-39,76,-0.03820647835525759],[125,-39,77,-0.04031212064155765],[125,-39,78,-0.04230840634593758],[125,-39,79,-0.04419593712860315],[125,-38,64,0.0018403296171695116],[125,-38,65,-0.0015251539249340196],[125,-38,66,-0.004790014332485493],[125,-38,67,-0.007952699105031269],[125,-38,68,-0.011011801751657724],[125,-38,69,-0.013966067375632218],[125,-38,70,-0.01681439832467413],[125,-38,71,-0.019555859906763895],[125,-38,72,-0.022189686171506406],[125,-38,73,-0.024715285756968464],[125,-38,74,-0.027132247802211795],[125,-38,75,-0.029440347925218102],[125,-38,76,-0.031639554266444936],[125,-38,77,-0.033730033597897835],[125,-38,78,-0.03571215749776613],[125,-38,79,-0.03758650859059898],[125,-37,64,0.008116751557056934],[125,-37,65,0.004779940337336974],[125,-37,66,0.0015426023814792966],[125,-37,67,-0.0015937051142077552],[125,-37,68,-0.004627569842406198],[125,-37,69,-0.007557729951810477],[125,-37,70,-0.010383079679783469],[125,-37,71,-0.013102675050559065],[125,-37,72,-0.01571573963900519],[125,-37,73,-0.018221670399866552],[125,-37,74,-0.02062004356271352],[125,-37,75,-0.022910620592283992],[125,-37,76,-0.0250933542144689],[125,-37,77,-0.027168394507817162],[125,-37,78,-0.02913609506061221],[125,-37,79,-0.03099701919349429],[125,-36,64,0.01436421524410103],[125,-36,65,0.011056525193148814],[125,-36,66,0.007847142805593177],[125,-36,67,0.0047376300271914085],[125,-36,68,0.0017294050508487313],[125,-36,69,-0.001176263232522179],[125,-36,70,-0.003978260848778503],[125,-36,71,-0.006675634420880705],[125,-36,72,-0.009267596914788956],[125,-36,73,-0.011753533450852283],[125,-36,74,-0.014133007180902046],[125,-36,75,-0.01640576523075299],[125,-36,76,-0.018571744708348548],[125,-36,77,-0.020631078777436196],[125,-36,78,-0.022584102796817107],[125,-36,79,-0.024431360525152823],[125,-35,64,0.02057911834243309],[125,-35,65,0.017300982260028297],[125,-35,66,0.014119973124377516],[125,-35,67,0.01103765768191689],[125,-35,68,0.008055460077353915],[125,-35,69,0.0051746563226651165],[125,-35,70,0.002396368700448681],[125,-35,71,-2.784398982829117E-4],[125,-35,72,-0.0028489717018832517],[125,-35,73,-0.005314599851348634],[125,-35,74,-0.007674874259305131],[125,-35,75,-0.009929527534410898],[125,-35,76,-0.012078480971408734],[125,-35,77,-0.014121850606714781],[125,-35,78,-0.01605995333958732],[125,-35,79,-0.01789331311885911],[125,-34,64,0.026757978996607923],[125,-34,65,0.02350981354613768],[125,-34,66,0.02035757982508246],[125,-34,67,0.01730284942941973],[125,-34,68,0.014347052518906334],[125,-34,69,0.011491472304457906],[125,-34,70,0.008737239469873925],[125,-34,71,0.006085326528000312],[125,-34,72,0.003536542111310048],[125,-34,73,0.001091525196985521],[125,-34,74,-0.0012492607337212247],[125,-34,75,-0.003485533601544022],[125,-34,76,-0.005617198700918702],[125,-34,77,-0.0076443547372371246],[125,-34,78,-0.009567299929691964],[125,-34,79,-0.011386538179687156],[125,-33,64,0.032897443991660724],[125,-33,65,0.029679649632700755],[125,-33,66,0.026556577901587608],[125,-33,67,0.023529805290341876],[125,-33,68,0.020600768034052752],[125,-33,69,0.017770756616868333],[125,-33,70,0.015040910212331782],[125,-33,71,0.012412211058144718],[125,-33,72,0.009885478765346956],[125,-33,73,0.007461364561986983],[125,-33,74,0.005140345471071783],[125,-33,75,0.0029227184230871117],[125,-33,76,8.085943028581788E-4],[125,-33,77,-0.0012021080691382302],[125,-33,78,-0.0031096680210543903],[125,-33,79,-0.004914569179526929],[125,-32,64,0.03899429703886104],[125,-32,65,0.035807257982600205],[125,-32,66,0.03271371918493737],[125,-32,67,0.029715262078086058],[125,-32,68,0.026813329029790167],[125,-32,69,0.024009217868152577],[125,-32,70,0.021304076340804],[125,-32,71,0.018698896508493434],[125,-32,72,0.016194509073090613],[125,-32,73,0.013791577640070662],[125,-32,74,0.011490592915277209],[125,-32,75,0.009291866836246054],[125,-32,76,0.0071955266378662674],[125,-32,77,0.005201508852486936],[125,-32,78,0.0033095532444242792],[125,-32,79,0.0015191966788904443],[125,-31,64,0.045045467187311394],[125,-31,65,0.04188955137530326],[125,-31,66,0.0388259008006665],[125,-31,67,0.0358561018776149],[125,-31,68,0.03298160316092369],[125,-31,69,0.030203709889812136],[125,-31,70,0.027523578466158716],[125,-31,71,0.024942210867133885],[125,-31,72,0.022460448992238535],[125,-31,73,0.02007896894482175],[125,-31,74,0.017798275247867368],[125,-31,75,0.015618694994342208],[125,-31,76,0.013540371931869855],[125,-31,77,0.011563260481849524],[125,-31,78,0.009687119692967427],[125,-31,79,0.007911507129126916],[125,-30,64,0.051048037361551724],[125,-30,65,0.047923596468273266],[125,-30,66,0.0448901737530738],[125,-30,67,0.04194936065164534],[125,-30,68,0.039102611957243516],[125,-30,69,0.03635124038382287],[125,-30,70,0.03369641106350596],[125,-30,71,0.031139135978461963],[125,-30,72,0.02868026832718784],[125,-30,73,0.02632049682526194],[125,-30,74,0.024060339940364273],[125,-30,75,0.021900140061848927],[125,-30,76,0.019840057604642802],[125,-30,77,0.017880065047578997],[125,-30,78,0.016019940906121466],[125,-30,79,0.014259263639501807],[125,-29,64,0.056999253024850316],[125,-29,65,0.05390662248454903],[125,-29,66,0.05090375163612182],[125,-29,67,0.047992236973912084],[125,-29,68,0.04517353957819492],[125,-29,69,0.0424489796977624],[125,-29,70,0.03981973126683924],[125,-29,71,0.037286816356404295],[125,-29,72,0.03485109955990895],[125,-29,73,0.03251328231346218],[125,-29,74,0.03027389715028006],[125,-29,75,0.028133301889680773],[125,-29,76,0.026091673760401002],[125,-29,77,0.02414900345834381],[125,-29,78,0.02230508913871143],[125,-29,79,0.020559530342547427],[125,-28,64,0.06289653096835157],[125,-28,65,0.059836030026658715],[125,-28,66,0.05686401947113784],[125,-28,67,0.053982100889672924],[125,-28,68,0.0511917416952159],[125,-28,69,0.048494269728010964],[125,-28,70,0.045890867792139356],[125,-28,71,0.04338256812647123],[125,-28,72,0.04097024681000472],[125,-28,73,0.0386546181016707],[125,-28,74,0.03643622871439578],[125,-28,75,0.03431545202370756],[125,-28,76,0.03229248221065495],[125,-28,77,0.030367328339157562],[125,-28,78,0.028539808367734287],[125,-28,79,0.02680954309563599],[125,-27,64,0.06873746822621851],[125,-27,65,0.06570940001700953],[125,-27,66,0.0627685426714506],[125,-27,67,0.05991650290359529],[125,-27,68,0.05715475450188201],[125,-27,69,0.05448463295116801],[125,-27,70,0.05190732998908398],[125,-27,71,0.04942388809678666],[125,-27,72,0.047035194924099355],[125,-27,73,0.04474197764910859],[125,-27,74,0.04254479727202087],[125,-27,75,0.04044404284355174],[125,-27,76,0.03843992562762921],[125,-27,77,0.03653247319852071],[125,-27,78,0.03472152347233515],[125,-27,79,0.03300671867292537],[125,-26,64,0.07451985111647019],[125,-26,65,0.07152450276445677],[125,-26,66,0.06861507613366624],[125,-26,67,0.06579318309472582],[125,-26,68,0.06306030385155559],[125,-26,69,0.060417781583379626],[125,-26,70,0.05786681702105312],[125,-26,71,0.05540846295778523],[125,-26,72,0.053043618694244676],[125,-26,73,0.05077302441811826],[125,-26,74,0.0485972555179246],[125,-26,75,0.04651671683135672],[125,-26,76,0.04453163682793515],[125,-26,77,0.04264206172607998],[125,-26,78,0.04084784954455478],[125,-26,79,0.039148664088306084],[125,-25,64,0.08024166440767178],[125,-25,65,0.07727930715719944],[125,-25,66,0.07440157345573428],[125,-25,67,0.07161008035869099],[125,-25,68,0.06890631452269569],[125,-25,69,0.06629162686773038],[125,-25,70,0.06376722717359029],[125,-25,71,0.06133417861073309],[125,-25,72,0.058993392205506034],[125,-25,73,0.05674562123982385],[125,-25,74,0.054591455585096704],[125,-25,75,0.05253131597068439],[125,-25,76,0.05056544818665676],[125,-25,77,0.0486939172209685],[125,-25,78,0.04691660133100439],[125,-25,79,0.045233186049512764],[125,-24,64,0.08590110061161838],[125,-24,65,0.08297198998215405],[125,-24,66,0.08012619628195505],[125,-24,67,0.07736534177728471],[125,-24,68,0.07469091961197594],[125,-24,69,0.07210428848985362],[125,-24,70,0.06960666729147036],[125,-24,71,0.06719912962522856],[125,-24,72,0.0648825983128779],[125,-24,73,0.06265783980945816],[125,-24,74,0.06052545855749225],[125,-24,75,0.05848589127569781],[125,-24,76,0.05653940118200462],[125,-24,77,0.05468607215098087],[125,-24,78,0.05292580280562709],[125,-24,79,0.051258300543555735],[125,-23,64,0.09149656940171724],[125,-23,65,0.08860094537050767],[125,-23,66,0.08578732377462484],[125,-23,67,0.0830573321151361],[125,-23,68,0.08041247005490937],[125,-23,69,0.07785410412145266],[125,-23,70,0.0753834623440649],[125,-23,71,0.07300162882536942],[125,-23,72,0.07070953824721915],[125,-23,73,0.06850797031104461],[125,-23,74,0.06639754411244836],[125,-23,75,0.06437871245031568],[125,-23,76,0.06245175607022502],[125,-23,77,0.060616777842268044],[125,-23,78,0.058873696873229964],[125,-23,79,0.05722224255315589],[125,-22,64,0.09702670715721995],[125,-22,65,0.09416479436959801],[125,-22,66,0.09138356221247201],[125,-22,67,0.08868464344361071],[125,-22,68,0.08606954427413127],[125,-22,69,0.08353963909188777],[125,-22,70,0.08109616511916351],[125,-22,71,0.07874021700474554],[125,-22,72,0.07647274135036741],[125,-22,73,0.07429453117159046],[125,-22,74,0.07220622029293067],[125,-22,75,0.07020827767749538],[125,-22,76,0.0683010016909209],[125,-22,77,0.06648451429971236],[125,-22,78,0.06475875520394447],[125,-22,79,0.06312347590434286],[125,-21,64,0.10249038663345267],[125,-21,65,0.09966239464127402],[125,-21,66,0.0969137547160368],[125,-21,67,0.09424610489209961],[125,-21,68,0.09166095795549523],[125,-21,69,0.08915969618798225],[125,-21,70,0.08674356604540157],[125,-21,71,0.0844136727704109],[125,-21,72,0.0821709749395848],[125,-21,73,0.08001627894495023],[125,-21,74,0.07795023340976504],[125,-21,75,0.0759733235388047],[125,-21,76,0.0740858654029436],[125,-21,77,0.07228800015813985],[125,-21,78,0.07057968819877569],[125,-21,79,0.06896070324537518],[125,-20,64,0.10788672675773514],[125,-20,65,0.10509285028642756],[125,-20,66,0.10237699109967913],[125,-20,67,0.0997407925263808],[125,-20,68,0.09718577395166494],[125,-20,69,0.09471332558173196],[125,-20,70,0.09232470314298125],[125,-20,71,0.09002102251551691],[125,-20,72,0.08780325430101665],[125,-20,73,0.08567221832503258],[125,-20,74,0.08362857807353441],[125,-20,75,0.08167283506395484],[125,-20,76,0.07980532315053157],[125,-20,77,0.07802620276404493],[125,-20,78,0.07633545508591266],[125,-20,79,0.07473287615665714],[125,-19,64,0.11321510255116318],[125,-19,65,0.11045552179586382],[125,-19,66,0.10777261785039205],[125,-19,67,0.10516803935422703],[125,-19,68,0.10264331231337886],[125,-19,69,0.10019983488609274],[125,-19,70,0.09783887210285691],[125,-19,71,0.09556155052078164],[125,-19,72,0.09336885281233986],[125,-19,73,0.09126161228853591],[125,-19,74,0.08924050735631617],[125,-19,75,0.08730605591047824],[125,-19,76,0.08545860965987373],[125,-19,77,0.08369834838800605],[125,-19,78,0.08202527414798111],[125,-19,79,0.0804392053918297],[125,-18,64,0.11847515517637508],[125,-18,65,0.1157500361276409],[125,-18,66,0.11310024823354414],[125,-18,67,0.11052744545838844],[125,-18,68,0.10803316044851374],[125,-18,69,0.105618799338975],[125,-18,70,0.10328563649451783],[125,-18,71,0.10103480918492691],[125,-18,72,0.098867312194731],[125,-18,73,0.09678399236733548],[125,-18,74,0.09478554308339437],[125,-18,75,0.0928724986736772],[125,-18,76,0.09104522876623034],[125,-18,77,0.08930393256792712],[125,-18,78,0.08764863308037196],[125,-18,79,0.08607917125017206],[125,-17,64,0.12366680211101633],[125,-17,65,0.12097629691058587],[125,-17,66,0.11835977252526009],[125,-17,67,0.11581888825665387],[125,-17,68,0.1133551834086527],[125,-17,69,0.11097007211514798],[125,-17,70,0.1086648381020685],[125,-17,71,0.10644062938378263],[125,-17,72,0.10429845289385509],[125,-17,73,0.1022391690502279],[125,-17,74,0.10026348625464176],[125,-17,75,0.09837195532654708],[125,-17,76,0.09656496387130864],[125,-17,77,0.09484273058279835],[125,-17,78,0.09320529948033729],[125,-17,79,0.09165253408000607],[125,-16,64,0.12879024744707346],[125,-16,65,0.12613449477415972],[125,-16,66,0.12355136837161096],[125,-16,67,0.12104253288916844],[125,-16,68,0.11860953430333265],[125,-16,69,0.11625379476623066],[125,-16,70,0.11397660738878324],[125,-16,71,0.11177913095823644],[125,-16,72,0.10966238459005018],[125,-16,73,0.1076272423142055],[125,-16,74,0.1056744275957523],[125,-16,75,0.10380450778984551],[125,-16,76,0.10201788853107008],[125,-16,77,0.10031480805715598],[125,-16,78,0.0986953314670379],[125,-16,79,0.09715934491328326],[125,-15,64,0.13384599231616479],[125,-15,65,0.13122511780476165],[125,-15,66,0.12867551127470744],[125,-15,67,0.12619884273309567],[125,-15,68,0.12379666484206298],[125,-15,69,0.12147040778886153],[125,-15,70,0.1192213740902287],[125,-15,71,0.11705073333112204],[125,-15,72,0.11495951683780647],[125,-15,73,0.11294861228536013],[125,-15,74,0.11101875823941998],[125,-15,75,0.10917053863241122],[125,-15,76,0.10740437717406859],[125,-15,77,0.10572053169633933],[125,-15,78,0.10411908843263695],[125,-15,79,0.10259995623145424],[125,-14,64,0.13883484544056868],[125,-14,65,0.13624896212824955],[125,-14,66,0.13373298520547106],[125,-14,67,0.13128859004439986],[125,-14,68,0.12891733600388844],[125,-14,69,0.12662066132081606],[125,-14,70,0.12439987793572405],[125,-14,71,0.12225616625281421],[125,-14,72,0.12019056983430143],[125,-14,73,0.11820399002917858],[125,-14,74,0.11629718053622451],[125,-14,75,0.11447074190149109],[125,-14,76,0.11272511595008083],[125,-14,77,0.11106058015230758],[125,-14,78,0.10947724192420205],[125,-14,79,0.10797503286238008],[125,-13,64,0.14375793381008495],[125,-13,65,0.14120714261877332],[125,-13,66,0.13872489334317817],[125,-13,67,0.13631286672684584],[125,-13,68,0.13397262883459493],[125,-13,69,0.13170562596517787],[125,-13,70,0.12951317949823915],[125,-13,71,0.1273964806756338],[125,-13,72,0.1253565853170988],[125,-13,73,0.123394408470336],[125,-13,74,0.12151071899533583],[125,-13,75,0.11970613408318054],[125,-13,76,0.11798111370913422],[125,-13,77,0.1163359550201174],[125,-13,78,0.11477078665652207],[125,-13,79,0.11328556300839066],[125,-12,64,0.14861671348487937],[125,-12,65,0.14610110373407503],[125,-12,66,0.14365266894193407],[125,-12,67,0.1412730952283734],[125,-12,68,0.13896395537171358],[125,-12,69,0.13672670374271123],[125,-12,70,0.13456267117288756],[125,-12,71,0.13247305975721702],[125,-12,72,0.1304589375911659],[125,-12,73,0.12852123344214217],[125,-12,74,0.12666073135518663],[125,-12,75,0.12487806519313849],[125,-12,76,0.12317371311109115],[125,-12,77,0.12154799196522736],[125,-12,78,0.12000105165599606],[125,-12,79,0.118532869405652],[125,-11,64,0.15341298052403363],[125,-11,65,0.1509326304769706],[125,-11,66,0.14851808632379015],[125,-11,67,0.14617103956455513],[125,-11,68,0.14389306969703486],[125,-11,69,0.14168563917215204],[125,-11,70,0.13955008828372306],[125,-11,71,0.1374876299925588],[125,-11,72,0.1354993446849143],[125,-11,73,0.13358617486534818],[125,-11,74,0.13174891978382264],[125,-11,75,0.12998822999727744],[125,-11,76,0.12830460186549175],[125,-11,77,0.1266983719813244],[125,-11,78,0.12516971153529832],[125,-11,79,0.12371862061454053],[125,-10,64,0.15814888204002242],[125,-10,65,0.15570385948324317],[125,-10,66,0.15332327199873452],[125,-10,67,0.1510088164693726],[125,-10,68,0.148762079116865],[125,-10,69,0.14658453047864772],[125,-10,70,0.14447752031907402],[125,-10,71,0.142442272474965],[125,-10,72,0.14047987963550523],[125,-10,73,0.13859129805654946],[125,-10,74,0.13677734220916882],[125,-10,75,0.13503867936266856],[125,-10,76,0.13337582410189486],[125,-10,77,0.1317891327789179],[125,-10,78,0.13027879789905827],[125,-10,79,0.1288448424412686],[125,-9,64,0.16282692737896642],[125,-9,65,0.160417290235788],[125,-9,66,0.15807071591139576],[125,-9,67,0.15578890667314926],[125,-9,68,0.15357345546986356],[125,-9,69,0.15142584093018308],[125,-9,70,0.14934742229525366],[125,-9,71,0.14733943428574936],[125,-9,72,0.14540298190325007],[125,-9,73,0.14353903516602173],[125,-9,74,0.14174842377904262],[125,-9,75,0.14003183173849632],[125,-9,76,0.13838979187055322],[125,-9,77,0.13682268030453015],[125,-9,78,0.13533071088038828],[125,-9,79,0.13391392949059044],[125,-8,64,0.16744999942685457],[125,-8,65,0.1650757964052113],[125,-8,66,0.16276328281466224],[125,-8,67,0.16051416630784288],[125,-8,68,0.15833004656266592],[125,-8,69,0.156212410302201],[125,-8,70,0.15416262624885113],[125,-8,71,0.15218194001288532],[125,-8,72,0.15027146891531873],[125,-8,73,0.1484321967451978],[125,-8,74,0.14666496845112909],[125,-8,75,0.1449704847672736],[125,-8,76,0.14334929677363117],[125,-8,77,0.14180180039069934],[125,-8,78,0.14032823080847423],[125,-8,79,0.13892865684980493],[125,-7,64,0.17202136604150253],[125,-7,65,0.16968263731664457],[125,-7,66,0.16740422376997943],[125,-7,67,0.16518783843945606],[125,-7,68,0.16303508773304998],[125,-7,69,0.16094746647017066],[125,-7,70,0.15892635285736179],[125,-7,71,0.1569730033983613],[125,-7,72,0.15508854773850556],[125,-7,73,0.15327398344353826],[125,-7,74,0.1515301707126644],[125,-7,75,0.14985782702606665],[125,-7,76,0.1482575217267137],[125,-7,77,0.14672967053654096],[125,-7,78,0.1452745300069731],[125,-7,79,0.14389219190380031],[125,-6,64,0.17654469161035824],[125,-6,65,0.174241469542883],[125,-6,66,0.17199718777443296],[125,-6,67,0.16981356472767906],[125,-6,68,0.16769221354075803],[125,-6,69,0.1656346371302182],[125,-6,70,0.16364222318826505],[125,-6,71,0.1617162391143605],[125,-6,72,0.15985782688116956],[125,-6,73,0.15806799783491],[125,-6,74,0.15634762742994557],[125,-6,75,0.15469744989784506],[125,-6,76,0.15311805285072744],[125,-6,77,0.15160987181898344],[125,-6,78,0.15017318472333618],[125,-6,79,0.14880810628125685],[125,-5,64,0.1810240487342729],[125,-5,65,0.1787563586239762],[125,-5,66,0.17654623351474397],[125,-5,67,0.17439539721288821],[125,-5,68,0.17230546958609916],[125,-5,69,0.1702779616479474],[125,-5,70,0.1683142705766828],[125,-5,71,0.16641567466838747],[125,-5,72,0.16458332822447708],[125,-5,73,0.16281825637360203],[125,-5,74,0.16112134982779724],[125,-5,75,0.15949335957308997],[125,-5,76,0.1579348914944001],[125,-5,77,0.15644640093481277],[125,-5,78,0.1550281871891912],[125,-5,79,0.1536803879321441],[125,-4,64,0.18546393003699502],[125,-4,65,0.18323179091301545],[125,-4,66,0.18105584124792684],[125,-4,67,0.17893781023024657],[125,-4,68,0.17687932445608157],[125,-4,69,0.17488190303519302],[125,-4,70,0.17294695263135829],[125,-4,71,0.1710757624370871],[125,-4,72,0.16926949908268607],[125,-4,73,0.16752920147972117],[125,-4,74,0.16585577559873066],[125,-4,75,0.16424998918139444],[125,-4,76,0.16271246638699643],[125,-4,77,0.1612436823732588],[125,-4,78,0.1598439578115155],[125,-4,79,0.15851345333624156],[125,-3,64,0.1898692601005264],[125,-3,65,0.1876726855482671],[125,-3,66,0.18553092480874978],[125,-3,67,0.183445712451055],[125,-3,68,0.1814186817982164],[125,-3,69,0.17945136005485374],[125,-3,70,0.17754516336910253],[125,-3,71,0.17570139182890165],[125,-3,72,0.17392122439262436],[125,-3,73,0.17220571375411065],[125,-3,74,0.1705557811419478],[125,-3,75,0.16897221105320892],[125,-3,76,0.16745564592148277],[125,-3,77,0.16600658071927554],[125,-3,78,0.1646253574947535],[125,-3,79,0.1633121598428382],[125,-2,64,0.19424540752642883],[125,-2,65,0.19208440655173808],[125,-2,66,0.18997684374409307],[125,-2,67,0.18792445905144173],[125,-2,68,0.18592889252208833],[125,-2,69,0.1839916794538986],[125,-2,70,0.18211424547780442],[125,-2,71,0.1802979015756606],[125,-2,72,0.1785438390324514],[125,-2,73,0.17685312432289202],[125,-2,74,0.17522669393228474],[125,-2,75,0.17366534911182685],[125,-2,76,0.1721697505682135],[125,-2,77,0.1707404130876119],[125,-2,78,0.16937770009397468],[125,-2,79,0.16808181814170764],[125,-1,64,0.19859819712286964],[125,-1,65,0.19647277505395622],[125,-1,66,0.19439941557398388],[125,-1,67,0.19237986400817186],[125,-1,68,0.19041576712846775],[125,-1,69,0.18850866832432356],[125,-1,70,0.18666000270777672],[125,-1,71,0.18487109215287945],[125,-1,72,0.18314314026948053],[125,-1,73,0.18147722731140148],[125,-1,74,0.1798743050188648],[125,-1,75,0.1783351913953788],[125,-1,76,0.1768605654189115],[125,-1,77,0.17545096168744145],[125,-1,78,0.1741067649988416],[125,-1,79,0.17282820486512485],[125,0,64,0.2029339222175135],[125,0,65,0.20084408164508194],[125,0,66,0.19880492817941997],[125,0,67,0.1968182125216904],[125,0,68,0.19488558816608448],[125,0,69,0.19300860659217212],[125,0,70,0.19118871239155566],[125,0,71,0.18942723832887842],[125,0,72,0.1877254003371771],[125,0,73,0.18608429244763403],[125,0,74,0.18450488165358103],[125,0,75,0.18298800270895788],[125,0,76,0.18153435286106168],[125,0,77,0.18014448651767012],[125,0,78,0.17881880984850462],[125,0,79,0.17755757532104488],[125,1,64,0.20725935709637477],[125,1,65,0.20520509885245797],[125,1,66,0.2032001523170991],[125,1,67,0.2012462735665128],[125,1,68,0.19934512281617212],[125,1,69,0.19749825963473489],[125,1,70,0.19570713809227147],[125,1,71,0.19397310184284722],[125,1,72,0.1922973791414515],[125,1,73,0.19068107779532217],[125,1,74,0.1891251800495264],[125,1,75,0.18763053740699187],[125,1,76,0.18619786538283245],[125,1,77,0.1848277381930452],[125,1,78,0.18352058337754718],[125,1,79,0.18227667635756695],[125,2,64,0.21158135420302415],[125,2,65,0.20956267918697224],[125,2,66,0.207591940539392],[125,2,67,0.20567089971065466],[125,2,68,0.20380122363658082],[125,2,69,0.20198447997394042],[125,2,70,0.20022213227025676],[125,2,71,0.19851553506796427],[125,2,72,0.19686592894291133],[125,2,73,0.1952744354772612],[125,2,74,0.19374205216664797],[125,2,75,0.19226964726178264],[125,2,76,0.19085795454435395],[125,2,77,0.18950756803730118],[125,2,78,0.18821893664942613],[125,2,79,0.1869923587543596],[125,3,64,0.21590091377148657],[125,3,65,0.2139178357202488],[125,3,66,0.21198131911980944],[125,3,67,0.21009313078475444],[125,3,68,0.20825494436109848],[125,3,69,0.20646833558337085],[125,3,70,0.20473477746600455],[125,3,71,0.20305563542908],[125,3,72,0.201432162358416],[125,3,73,0.19986549360005534],[125,3,74,0.19835664188900992],[125,3,75,0.19690649221245182],[125,3,76,0.19551579660720408],[125,3,77,0.1941851688916001],[125,3,78,0.19291507933168417],[125,3,79,0.19170584924176703],[125,4,64,0.22021428837032164],[125,4,65,0.21826684218318393],[125,4,66,0.21636458364877198],[125,4,67,0.2145092849200333],[125,4,68,0.2127026263267533],[125,4,69,0.21094619165425166],[125,4,70,0.20924146335638516],[125,4,71,0.2075898177029063],[125,4,72,0.20599251986116796],[125,4,73,0.204450718912227],[125,4,74,0.20296544280120543],[125,4,75,0.20153759322210174],[125,4,76,0.20016794043689845],[125,4,77,0.19885711802904404],[125,4,78,0.19760561759127404],[125,4,79,0.19641378334778858],[125,5,64,0.22451760148169564],[125,5,65,0.22260584178131737],[125,5,66,0.22073789777935848],[125,5,67,0.21891554692551318],[125,5,68,0.21714047619075727],[125,5,69,0.21541427736769847],[125,5,70,0.21373844230523587],[125,5,71,0.21211435807757673],[125,5,72,0.21054330208760264],[125,5,73,0.20902643710463453],[125,5,74,0.207564806236461],[125,5,75,0.2061593278358146],[125,5,76,0.20481079034115113],[125,5,77,0.20351984705180082],[125,5,78,0.20228701083746548],[125,5,79,0.20111264878207036],[125,6,64,0.22880697599333566],[125,6,65,0.22693097547908236],[125,6,66,0.22509742129420396],[125,6,67,0.22330809612809743],[125,6,68,0.22156469353450103],[125,6,69,0.219868813253555],[125,6,70,0.218221956468175],[125,6,71,0.21662552099478583],[125,6,72,0.21508079640841105],[125,6,73,0.2135889591021608],[125,6,74,0.2121510672809913],[125,6,75,0.21076805588991376],[125,6,76,0.20944073147650843],[125,6,77,0.20816976698781875],[125,6,78,0.2069556965015903],[125,6,79,0.20579890989187255],[125,7,64,0.23307853757229624],[125,7,65,0.23123838541911312],[125,7,66,0.22943931356906055],[125,7,67,0.22768310987910245],[125,7,68,0.2259714744117749],[125,7,69,0.22430601477902623],[125,7,70,0.22268824142037413],[125,7,71,0.22111956281543288],[125,7,72,0.2196012806307972],[125,7,73,0.21813458480133407],[125,7,74,0.21672054854575018],[125,7,75,0.21536012331661392],[125,7,76,0.21405413368469117],[125,7,77,0.21280327215766248],[125,7,78,0.2116080939331949],[125,7,79,0.2104690115863801],[125,8,64,0.23732841798212068],[125,8,65,0.2355242182844634],[125,8,66,0.23375973697880803],[125,8,67,0.23203676700279507],[125,8,68,0.23035701483856974],[125,8,69,0.2287220958784819],[125,8,70,0.22713352972511236],[125,8,71,0.22559273542567648],[125,8,72,0.22410102664079423],[125,8,73,0.22265960674767393],[125,8,74,0.22126956387758268],[125,8,75,0.21993186588777647],[125,8,76,0.21864735526775425],[125,8,77,0.21741674397990118],[125,8,78,0.21624060823449365],[125,8,79,0.21511938319908042],[125,9,64,0.2415527583435046],[125,9,65,0.2397846286038478],[125,9,66,0.23805486024602585],[125,9,67,0.2363652511870482],[125,9,68,0.23471751422457154],[125,9,69,0.23311327242455016],[125,9,70,0.23155405444322874],[125,9,71,0.23004128978351857],[125,9,72,0.2285763039857549],[125,9,73,0.22716031375287649],[125,9,74,0.22579442200990318],[125,9,75,0.22447961289788565],[125,9,76,0.2232167467021876],[125,9,77,0.2220065547151705],[125,9,78,0.2208496340332481],[125,9,79,0.2197464422883313],[125,10,64,0.24574771233857218],[125,10,65,0.244015782000017],[125,10,66,0.24232086173223732],[125,10,67,0.24066475431622614],[125,10,68,0.2390491787464603],[125,10,69,0.23747576564060746],[125,10,70,0.2359460525835867],[125,10,71,0.23446147940602946],[125,10,72,0.23302338339713424],[125,10,73,0.23163299445195573],[125,10,74,0.2302914301530109],[125,10,75,0.22899969078636617],[125,10,76,0.22775865429207454],[125,10,77,0.2265690711490257],[125,10,78,0.225431559194186],[125,10,79,0.22434659837623516],[125,11,64,0.24990944935854742],[125,11,65,0.2482138583810446],[125,11,66,0.2465539326716037],[125,11,67,0.24493147974607454],[125,11,68,0.24334822466279077],[125,11,69,0.24180580545444263],[125,11,70,0.2403057684943224],[125,11,71,0.23884956379698596],[125,11,72,0.23743854025332856],[125,11,73,0.2360739408001089],[125,11,74,0.2347568975238119],[125,11,75,0.2334884266990055],[125,11,76,0.23226942376106863],[125,11,77,0.23110065821334835],[125,11,78,0.22998276846872356],[125,11,79,0.2289162566255848],[125,12,64,0.25403415759492837],[125,12,65,0.25237505507463925],[125,12,66,0.2507502803471802],[125,12,67,0.249161645520731],[125,12,68,0.24761088157056577],[125,12,69,0.24609963379320965],[125,12,70,0.24462945719499168],[125,12,71,0.2432018118150378],[125,12,72,0.24181805798269373],[125,12,73,0.24047945150942374],[125,12,74,0.23918713881506448],[125,12,75,0.23794215198859814],[125,12,76,0.23674540378331455],[125,12,77,0.23559768254642688],[125,12,78,0.23449964708311322],[125,12,79,0.23345182145499688],[125,13,64,0.25811804707427205],[125,13,65,0.2564955899055867],[125,13,66,0.2549061312098418],[125,13,67,0.2533514875319618],[125,13,68,0.2518333956036133],[125,13,69,0.25035350781977433],[125,13,70,0.2489133876497271],[125,13,71,0.24751450498251343],[125,13,72,0.24615823140684945],[125,13,73,0.24484583542553728],[125,13,74,0.243578477604262],[125,13,75,0.24235720565492935],[125,13,76,0.2411829494534209],[125,13,77,0.24005651599182665],[125,13,78,0.23897858426512897],[125,13,79,0.2379497000923525],[125,14,64,0.2621573526363641],[125,14,65,0.26057170421609377],[125,14,66,0.2590177339396501],[125,14,67,0.25749726262039524],[125,14,68,0.25601203257253363],[125,14,69,0.2545637031102281],[125,14,70,0.2531538459811674],[125,14,71,0.25178394073462984],[125,14,72,0.2504553700240325],[125,14,73,0.24916941484401045],[125,14,74,0.2479272497019096],[125,14,75,0.24672993772385166],[125,14,76,0.24557842569524468],[125,14,77,0.24447353903580216],[125,14,78,0.2434159767090447],[125,14,79,0.24240630606629554],[125,15,64,0.26614833685596145],[125,15,65,0.26459966582922906],[125,15,66,0.263081362449852],[125,15,67,0.26159525161894415],[125,15,68,0.2601430810464125],[125,15,69,0.2587265167727575],[125,15,70,0.2573471386253606],[125,15,71,0.2560064356093023],[125,15,72,0.25470580123270126],[125,15,73,0.2534465287666167],[125,15,74,0.2522298064394018],[125,15,75,0.2510567125656609],[125,15,76,0.24992821060969062],[125,15,77,0.24884514418346038],[125,15,78,0.24780823197911395],[125,15,79,0.24681806263599715],[125,16,64,0.27008729290797096],[125,16,65,0.26857577195531507],[125,16,66,0.26709331883337045],[125,16,67,0.26564176233827763],[125,16,68,0.26422285537615653],[125,16,69,0.2628382705077319],[125,16,70,0.2614895954274917],[125,16,71,0.26017832837741073],[125,16,72,0.2589058734952408],[125,16,73,0.25767353609739785],[125,16,74,0.2564825178963457],[125,16,75,0.2553339121526203],[125,16,76,0.2542286987613768],[125,16,77,0.2531677392735211],[125,16,78,0.25215177185139515],[125,16,79,0.2511814061590347],[125,17,64,0.27397054737624393],[125,17,65,0.2724963520414595],[125,17,66,0.27104993625197144],[125,17,67,0.2696331324945261],[125,17,68,0.26824769865963827],[125,17,69,0.26689531360919394],[125,17,70,0.2655775726786272],[125,17,71,0.26429598311371266],[125,17,72,0.26305195944196436],[125,17,73,0.2618468187786812],[125,17,74,0.2606817760675326],[125,17,75,0.25955793925582876],[125,17,76,0.2584763044043621],[125,17,77,0.2574377507318739],[125,17,78,0.2564430355941257],[125,17,79,0.2554927893975828],[125,18,64,0.27779446300577126],[125,18,65,0.27635777056400385],[125,18,66,0.2749475817678884],[125,18,67,0.2735657325789979],[125,18,68,0.27221398564842897],[125,18,69,0.27089402590752926],[125,18,70,0.26960745609325176],[125,18,71,0.2683557922081749],[125,18,72,0.26714045891518035],[125,18,73,0.26596278486682695],[125,18,74,0.2648239979693182],[125,18,75,0.26372522058120296],[125,18,76,0.2626674646466998],[125,18,77,0.2616516267636963],[125,18,78,0.2606784831864048],[125,18,79,0.259748684762681],[125,19,64,0.28155544139838473],[125,19,65,0.28015642976399957],[125,19,66,0.278782659118009],[125,19,67,0.2774359686700182],[125,19,68,0.27611812559622556],[125,19,69,0.27483082065342607],[125,19,70,0.27357566372770237],[125,19,71,0.2723541793178365],[125,19,72,0.27116780195343676],[125,19,73,0.27001787154781776],[125,19,74,0.26890562868553],[125,19,75,0.2678322098446812],[125,19,76,0.2667986425539352],[125,19,77,0.2658058404842461],[125,19,78,0.2648545984753021],[125,19,79,0.2639455874966925],[125,20,64,0.2852499256520584],[125,20,65,0.2838887723258044],[125,20,66,0.2825516114307228],[125,20,67,0.2812402851869842],[125,20,68,0.2799565650490723],[125,20,69,0.2787021473432221],[125,20,70,0.27747864883960516],[125,20,71,0.27628760225930055],[125,20,72,0.2751304517160445],[125,20,73,0.27400854809279307],[125,20,74,0.2729231443530024],[125,20,75,0.2718753907867576],[125,20,76,0.27086633019164763],[125,20,77,0.2698968929884341],[125,20,78,0.2689678922714964],[125,20,79,0.26808001879405957],[125,21,64,0.28887440294361566],[125,21,65,0.2875512839986012],[125,21,66,0.2862509238852303],[125,21,67,0.284975167586437],[125,21,68,0.28372579057717323],[125,21,69,0.28250449448543496],[125,21,70,0.281312902688105],[125,21,71,0.28015255584165055],[125,21,72,0.2790249073476697],[125,21,73,0.2779313187533184],[125,21,74,0.2768730550865266],[125,21,75,0.27585128012613114],[125,21,76,0.27486705160682334],[125,21,77,0.2739213163589617],[125,21,78,0.273014905383228],[125,21,79,0.2721485288601377],[125,22,64,0.29242540705494124],[125,22,65,0.2911404961609445],[125,22,66,0.28987712631341517],[125,22,67,0.28863714500025545],[125,22,68,0.2874223314483999],[125,22,69,0.2862343923085818],[125,22,70,0.28507495727499677],[125,22,71,0.28394557463989645],[125,22,72,0.28284770678310545],[125,22,73,0.28178272559649603],[125,22,74,0.2807519078433276],[125,22,75,0.27975643045257925],[125,22,76,0.27879736574817204],[125,22,77,0.2778756766131325],[125,22,78,0.2769922115886766],[125,22,79,0.27614769990822263],[125,23,64,0.2958995208427897],[125,23,65,0.29465298832842235],[125,23,66,0.29342679574437125],[125,23,67,0.29222279281606167],[125,23,68,0.29104276224358855],[125,23,69,0.2898884154103818],[125,23,70,0.28876138802685186],[125,23,71,0.28766323570904645],[125,23,72,0.28659542949231614],[125,23,73,0.28555935128001664],[125,23,74,0.28455628922716314],[125,23,75,0.28358743305915635],[125,23,76,0.28265386932548286],[125,23,77,0.2817565765884407],[125,23,78,0.2808964205468651],[125,23,79,0.2800741490948686],[125,24,64,0.2992933786520033],[125,24,65,0.2980853906042451],[125,24,66,0.29689655889139704],[125,24,67,0.29572873519964776],[125,24,68,0.2945837054134321],[125,24,69,0.2934631853481476],[125,24,70,0.2923688164179429],[125,24,71,0.29130216123860686],[125,24,72,0.29026469916555636],[125,24,73,0.28925782176694975],[125,24,74,0.28828282823184365],[125,24,75,0.28734092071351],[125,24,76,0.28643319960781727],[125,24,77,0.2855606587667272],[125,24,78,0.28472418064688104],[125,24,79,0.28392453139329027],[125,25,64,0.30260366867223615],[125,25,65,0.3014343860728636],[125,25,66,0.3002830945815528],[125,25,67,0.29915164755952506],[125,25,68,0.2980418337770697],[125,25,69,0.2969553731704656],[125,25,70,0.2958939125340709],[125,25,71,0.2948590211476126],[125,25,72,0.2938521863386688],[125,25,73,0.29287480898037654],[125,25,74,0.29192819892427835],[125,25,75,0.29101357036842534],[125,25,76,0.2901320371606441],[125,25,77,0.28928460803701234],[125,25,78,0.2884721817955248],[125,25,79,0.2876955424049577],[125,26,64,0.3058271352382691],[125,26,65,0.3046967131366945],[125,26,66,0.30358313612786814],[125,26,67,0.302488258953679],[125,26,68,0.3014138729624582],[125,26,69,0.30036170189025374],[125,26,70,0.2993333975773814],[125,26,71,0.2983305356202774],[125,26,72,0.29735461095864985],[125,26,73,0.2964070333979584],[125,26,74,0.29548912306713837],[125,26,75,0.294602105811686],[125,26,76,0.2937471085220099],[125,26,77,0.29292515439709804],[125,26,78,0.29213715814347707],[125,26,79,0.29138392110947703],[125,27,64,0.30896058107373814],[125,27,65,0.30786916779578116],[125,27,66,0.3067934736440199],[125,27,67,0.30573535443835187],[125,27,68,0.30469660378834473],[125,27,69,0.30367894889901326],[125,27,70,0.3026840463119847],[125,27,71,0.30171347758207845],[125,27,72,0.30076874488929534],[125,27,73,0.29985126658624767],[125,27,74,0.2989623726809464],[125,27,75,0.2981033002550597],[125,27,76,0.29727518881755105],[125,27,77,0.29647907559374376],[125,27,78,0.29571589074979077],[125,27,79,0.2949864525525607],[125,28,64,0.31200086947837186],[125,28,65,0.3109486058704815],[125,28,66,0.30991095630157656],[125,28,67,0.3088897773589471],[125,28,68,0.3078868645879375],[125,28,69,0.3069039483223707],[125,28,70,0.30594268945047925],[125,28,71,0.3050046751163709],[125,28,72,0.30409141435702486],[125,28,73,0.30320433367484445],[125,28,74,0.30234477254569253],[125,28,75,0.30151397886251174],[125,28,76,0.3007131043144484],[125,28,77,0.29994319970151984],[125,28,78,0.2992052101848084],[125,28,79,0.29849997047218996],[125,29,64,0.31494492645881084],[125,29,65,0.31393194516725825],[125,29,66,0.3129324945298838],[125,29,67,0.31194843158313346],[125,29,68,0.31098155347435147],[125,29,69,0.3100335933169903],[125,29,70,0.30910621598145616],[125,29,71,0.3082010138216171],[125,29,72,0.30731950233696764],[125,29,73,0.30646311577047974],[125,29,74,0.3056332026420611],[125,29,75,0.3048310212177288],[125,29,76,0.3040577349144112],[125,29,77,0.3033144076404232],[125,29,78,0.3026019990715942],[125,29,79,0.3019213598630581],[125,30,64,0.31778974280284844],[125,30,65,0.3168161675874111],[125,30,66,0.31585506215842835],[125,30,67,0.31490828367598317],[125,30,68,0.313977630547662],[125,30,69,0.3130648383086862],[125,30,70,0.31217157543781626],[125,30,71,0.31129943910905383],[125,30,72,0.3104499508791358],[125,30,73,0.3096245523108489],[125,30,74,0.30882460053208993],[125,30,75,0.308051363730774],[125,30,76,0.30730601658550843],[125,30,77,0.3065896356320738],[125,30,78,0.3059031945656949],[125,30,79,0.30524755947910875],[125,31,64,0.3205323760971805],[125,31,65,0.31959832117883485],[125,31,66,0.3186756985017676],[125,31,67,0.3177663650172324],[125,31,68,0.31687212004365667],[125,31,69,0.3159947011718264],[125,31,70,0.31513578010598875],[125,31,71,0.31429695844089384],[125,31,72,0.3134797633747753],[125,31,73,0.3126856433582906],[125,31,74,0.3119159636793564],[125,31,75,0.3111720019839702],[125,31,76,0.3104549437329437],[125,31,77,0.30976587759458785],[125,31,78,0.3091057907733288],[125,31,79,0.30847556427426714],[125,32,64,0.32316995268872967],[125,32,65,0.3222755221308743],[125,32,66,0.32139151038709435],[125,32,67,0.320519773860734],[125,32,68,0.31966211242435455],[125,32,69,0.3188202653500992],[125,32,70,0.3179959071761253],[125,32,71,0.31719064350913156],[125,32,72,0.3164060067629721],[125,32,73,0.3156434518333853],[125,32,74,0.31490435170876757],[125,32,75,0.31418999301708517],[125,32,76,0.31350157150885205],[125,32,77,0.3128401874762074],[125,32,78,0.31220684110807995],[125,32,79,0.31160242778144415],[125,33,64,0.3256996695893982],[125,33,65,0.32484495671212704],[125,33,66,0.323999674124286],[125,33,67,0.32316567733595103],[125,33,68,0.3223447664101421],[125,33,69,0.3215386819184867],[125,33,70,0.32074910083311264],[125,33,71,0.3199776323547952],[125,33,72,0.319225813677352],[125,33,73,0.31849510568831146],[125,33,74,0.31778688860578863],[125,33,75,0.31710245755165756],[125,33,76,0.31644301806095054],[125,33,77,0.31580968152751704],[125,33,78,0.31520346058592985],[125,33,79,0.3146252644296435],[125,34,64,0.32811879632433083],[125,34,65,0.32730388315127323],[125,34,66,0.32649743741852044],[125,34,67,0.3257013133915738],[125,34,68,0.32491731095360504],[125,34,69,0.3241471715865302],[125,34,70,0.32339257428848744],[125,34,71,0.32265513142773344],[125,34,72,0.32193638453295936],[125,34,73,0.32123780002004665],[125,34,74,0.3205607648552004],[125,34,75,0.3199065821545488],[125,34,76,0.31927646672013416],[125,34,77,0.318671540512338],[125,34,78,0.3180928280587165],[125,34,79,0.3175412517992619],[125,35,64,0.33042467672374226],[125,35,65,0.3296496334609942],[125,35,66,0.32888212122551813],[125,35,67,0.328123992681321],[125,35,68,0.32737704715512206],[125,35,69,0.3266430266429506],[125,35,70,0.3259236117533192],[125,35,71,0.325220417586998],[125,35,72,0.3245349895533831],[125,35,73,0.32386879912348077],[125,35,74,0.3232232395194517],[125,35,75,0.3225996213407909],[125,35,76,0.32199916812708446],[125,35,77,0.3214230118573702],[125,35,78,0.32087218838609227],[125,35,79,0.32034763281565387],[125,36,64,0.33261473065818403],[125,36,65,0.33187961520484544],[125,36,66,0.33115112154927834],[125,36,67,0.3304311003917882],[125,36,68,0.3297213501200814],[125,36,69,0.32902361284148285],[125,36,70,0.3283395703519185],[125,36,71,0.32767084004168173],[125,36,72,0.3270189707379824],[125,36,73,0.3263854384842957],[125,36,74,0.3257716422564575],[125,36,75,0.32517889961558205],[125,36,76,0.3246084422977403],[125,36,77,0.32406141174043007],[125,36,78,0.32353885454582487],[125,36,79,0.3230417178808075],[125,37,64,0.33468645571731875],[125,37,65,0.33399131320715963],[125,37,66,0.3333019111823804],[125,37,67,0.3326200980124226],[125,37,68,0.331947670757795],[125,37,69,0.3312863712280045],[125,37,70,0.330637881976449],[125,37,71,0.33000382223228913],[125,37,72,0.32938574376929486],[125,37,73,0.3287851267116884],[125,37,74,0.3282033752769281],[125,37,75,0.32764181345550825],[125,37,76,0.3271016806277142],[125,37,77,0.32658412711736523],[125,37,78,0.3260902096825285],[125,37,79,0.3256208869432138],[125,38,64,0.3366374288322525],[125,38,65,0.3359822912060269],[125,38,66,0.3353320413889039],[125,38,67,0.33468852504767055],[125,38,68,0.33405353752216504],[125,38,69,0.3334288199090074],[125,38,70,0.33281605508249823],[125,38,71,0.33221686365269665],[125,38,72,0.33163279986068017],[125,38,73,0.33106534741099936],[125,38,74,0.3305159152412823],[125,38,75,0.32998583322905306],[125,38,76,0.32947634783571295],[125,38,77,0.32898861768770965],[125,38,78,0.3285237090948825],[125,38,79,0.3280825915059921],[125,39,64,0.338465307841309],[125,39,65,0.33785019344923506],[125,39,66,0.3372391435298452],[125,39,67,0.33663400067117855],[125,39,68,0.33603655809397603],[125,39,69,0.33544855576129046],[125,39,70,0.33487167642547583],[125,39,71,0.3343075416125698],[125,39,72,0.3337577075440682],[125,39,73,0.33322366099610795],[125,39,74,0.33270681509601124],[125,39,75,0.3322085050562565],[125,39,76,0.3317299838458226],[125,39,77,0.3312724177989346],[125,39,78,0.3308368821611982],[125,39,79,0.330424356573128],[125,40,64,0.34016783299934156],[125,40,65,0.3395927462332697],[125,40,66,0.33902093063113237],[125,40,67,0.3384542253221494],[125,40,68,0.33789442100491895],[125,40,69,0.337343256082976],[125,40,70,0.33680241273795186],[125,40,71,0.33627351294034835],[125,40,72,0.3357581143979239],[125,40,73,0.33525770644170977],[125,40,74,0.334773705849608],[125,40,75,0.33430745260763794],[125,40,76,0.3338602056087759],[125,40,77,0.33343313828941784],[125,40,78,0.33302733420345165],[125,40,79,0.3326437825339445],[125,41,64,0.34174282843051995],[125,41,65,0.34120775938530556],[125,41,66,0.3406751988941693],[125,41,67,0.3401469822437849],[125,41,68,0.3396248972032755],[125,41,69,0.33911068018578044],[125,41,70,0.33860601234785725],[125,41,71,0.3381125156267248],[125,41,72,0.33763174871535134],[125,41,73,0.33716520297539837],[125,41,74,0.33671429828798183],[125,41,75,0.3362803788423059],[125,41,76,0.3358647088621228],[125,41,77,0.33546846827004634],[125,41,78,0.33509274828970137],[125,41,79,0.33473854698572264],[125,42,64,0.3431882035246673],[125,42,65,0.34269312768827176],[125,42,66,0.3421998291489924],[125,42,67,0.3417101389638976],[125,42,68,0.3412258415613474],[125,42,69,0.3407486709286245],[125,42,70,0.3402803067376374],[125,42,71,0.339822370408706],[125,42,72,0.33937642111242866],[125,42,73,0.33894395170964514],[125,42,74,0.3385263846294552],[125,42,75,0.3381250676853483],[125,42,76,0.33774126982939906],[125,42,77,0.33737617684455296],[125,42,78,0.3370308869749904],[125,42,79,0.3367064064945744],[125,43,64,0.3445019542770561],[125,43,65,0.34404683224889154],[125,43,66,0.3435927882499402],[125,43,67,0.3431416487175912],[125,43,68,0.3426951943245303],[125,43,69,0.34225515619247915],[125,43,70,0.341823212044253],[125,43,71,0.3414009822941494],[125,43,72,0.3409900260766669],[125,43,73,0.3405918372135642],[125,43,74,0.34020784011922733],[125,43,75,0.3398393856443913],[125,43,76,0.33948774685817806],[125,43,77,0.33915411476847035],[125,43,78,0.33883959398061303],[125,43,79,0.3385451982944456],[125,44,64,0.3456821645717129],[125,44,65,0.3452669418087531],[125,44,66,0.3448521304138914],[125,44,67,0.34443955181206654],[125,44,68,0.3440309825020862],[125,44,69,0.3436281502965051],[125,44,70,0.3432327305000845],[125,44,71,0.342846342026835],[125,44,72,0.34247054345564826],[125,44,73,0.342106829024525],[125,44,74,0.34175662456336786],[125,44,75,0.3414212833653857],[125,44,76,0.3411020819970691],[125,44,77,0.3408002160467617],[125,44,78,0.3405167958118114],[125,44,79,0.3402528419243134],[125,45,64,0.34672700740825935],[125,45,65,0.3463516139984363],[125,45,66,0.34597599850109684],[125,45,67,0.3456019769335804],[125,45,68,0.34523132119964506],[125,45,69,0.3448657553555152],[125,45,70,0.344506951814773],[125,45,71,0.34415652749210124],[125,45,72,0.34381603988588033],[125,45,73,0.34348698309964476],[125,45,74,0.3431707838023744],[125,45,75,0.34286879712765805],[125,45,76,0.3425823025116976],[125,45,77,0.34231249947016995],[125,45,78,0.34206050331393856],[125,45,79,0.3418273408036191],[125,46,64,0.34763474607222083],[125,46,65,0.3472990965346243],[125,46,66,0.34696262523853716],[125,46,67,0.34662714239648235],[125,46,68,0.346294414893361],[125,46,69,0.34596616257868285],[125,46,70,0.34564405449791724],[125,46,71,0.3453297050629686],[125,46,72,0.34502467016178134],[125,46,73,0.34473044320707785],[125,46,74,0.34444845112420747],[125,46,75,0.34418005027814014],[125,46,76,0.3439265223395769],[125,46,77,0.3436890700901918],[125,46,78,0.3434688131669971],[125,46,79,0.34326678374583963],[125,47,64,0.34840373524884494],[125,47,65,0.3481077283602474],[125,47,66,0.34781033438584663],[125,47,67,0.3475133573343781],[125,47,68,0.34721855864576623],[125,47,69,0.3469276535095437],[125,47,70,0.34664230712267585],[125,47,71,0.34636413088679585],[125,47,72,0.346094678544848],[125,47,73,0.3458354422571511],[125,47,74,0.34558784861685493],[125,47,75,0.34535325460482547],[125,47,76,0.3451329434839287],[125,47,77,0.34492812063273104],[125,47,78,0.3447399093186064],[125,47,79,0.34456934641025566],[125,48,64,0.3490324220804448],[125,48,65,0.3487759407276704],[125,48,66,0.3485175418438221],[125,48,67,0.3482590228334339],[125,48,68,0.34800213926334583],[125,48,69,0.34774860120730977],[125,48,70,0.3475000695302949],[125,48,71,0.3472581521124928],[125,48,72,0.3470244000130268],[125,48,73,0.3468003035733696],[125,48,74,0.3465872884604509],[125,48,75,0.3463867116494817],[125,48,76,0.3461998573464723],[125,48,77,0.34602793285045874],[125,48,78,0.3458720643554267],[125,48,79,0.34573329269194303],[125,49,64,0.34951934716722133],[125,49,65,0.34930225822487715],[125,49,66,0.3490827567054673],[125,49,67,0.34886263300777165],[125,49,68,0.3486436363957742],[125,49,69,0.34842747136944113],[125,49,70,0.34821579397550156],[125,49,71,0.3480102080582288],[125,49,72,0.3478122614502277],[125,49,73,0.3476234421032297],[125,49,74,0.3474451741588813],[125,49,75,0.34727881395954907],[125,49,76,0.34712564599911944],[125,49,77,0.34698687881380824],[125,49,78,0.34686364081297],[125,49,79,0.346756976049914],[125,50,64,0.349863145511595],[125,50,65,0.34968529974468676],[125,50,66,0.3495045822496031],[125,50,67,0.34932277601698786],[125,50,68,0.3491416235768533],[125,50,69,0.34896282339550944],[125,50,70,0.348788026212804],[125,50,71,0.3486188313196755],[125,50,72,0.3484567827760201],[125,50,73,0.3483033655688774],[125,50,74,0.3481600017109204],[125,50,75,0.34802804627926925],[125,50,76,0.3479087833946135],[125,50,77,0.34780342214065085],[125,50,78,0.3477130924238376],[125,50,79,0.347638840773455],[125,51,64,0.3500625474060521],[125,51,65,0.3499237793970018],[125,51,66,0.349781716877054],[125,51,67,0.3496381350258051],[125,51,68,0.3494947692071575],[125,51,69,0.34935331139236425],[125,51,70,0.3492154065237052],[125,51,71,0.3490826488187946],[125,51,72,0.3489565780155218],[125,51,73,0.3488386755576284],[125,51,74,0.3487303607209091],[125,51,75,0.3486329866800569],[125,51,76,0.34854783651613125],[125,51,77,0.34847611916466636],[125,51,78,0.34841896530440625],[125,51,79,0.3483774231866772],[125,52,64,0.3501163792644797],[125,52,65,0.35001650736406653],[125,52,66,0.34991295498937747],[125,52,67,0.34980748910582393],[125,52,68,0.3497018374783535],[125,52,69,0.34959768512056655],[125,52,70,0.34949667068479384],[125,52,71,0.34940038279313235],[125,52,72,0.3493103563094413],[125,52,73,0.3492280685523024],[125,52,74,0.3491549354489333],[125,52,75,0.34909230763006904],[125,52,76,0.34904146646579737],[125,52,77,0.3490036200423602],[125,52,78,0.3489798990799091],[125,52,79,0.34897135279122754],[125,53,64,0.35002356439701154],[125,53,65,0.3499623906987538],[125,53,66,0.3498971878101629],[125,53,67,0.3498297140793993],[125,53,68,0.34976168923922013],[125,53,69,0.3496947908821157],[125,53,70,0.34963065087674217],[125,53,71,0.3495708517256484],[125,53,72,0.34951692286430136],[125,53,73,0.34947033690140783],[125,53,74,0.34943250580053065],[125,53,75,0.34940477700300465],[125,53,76,0.3493884294921459],[125,53,77,0.34938466979876037],[125,53,78,0.3493946279479464],[125,53,79,0.349419353347196],[125,54,64,0.34978312372837683],[125,54,65,0.34976043406587576],[125,54,66,0.3497334041488931],[125,54,67,0.34970378330563767],[125,54,68,0.349673282803365],[125,54,69,0.3496435723494671],[125,54,70,0.3496162765342046],[125,54,71,0.34959297121507904],[125,54,72,0.3495751798428461],[125,54,73,0.34956436972917243],[125,54,74,0.34956194825592996],[125,54,75,0.34956925902613634],[125,54,76,0.34958757795653117],[125,54,77,0.34961810931179954],[125,54,78,0.34966198168043106],[125,54,79,0.3497202438922251],[125,55,64,0.3493941764597479],[125,55,65,0.3494097404265142],[125,55,66,0.34942069110736096],[125,55,67,0.34942876840850623],[125,55,68,0.349435674698627],[125,55,69,0.3494430713358281],[125,55,70,0.34945257513660777],[125,55,71,0.3494657547868165],[125,55,72,0.34948412719461097],[125,55,73,0.3495091537854027],[125,55,74,0.34954223673880047],[125,55,75,0.34958471516755],[125,55,76,0.3496378612384644],[125,55,77,0.349702876235353],[125,55,78,0.3497808865639416],[125,55,79,0.34987293969879074],[125,56,64,0.34885594067410053],[125,56,65,0.34890951166537987],[125,56,66,0.34895823472865556],[125,56,67,0.3490038399470663],[125,56,68,0.3490480203581783],[125,56,69,0.34909242850674765],[125,56,70,0.3491386729398439],[125,56,71,0.34918831464432565],[125,56,72,0.3492428634266761],[125,56,73,0.34930377423519154],[125,56,74,0.34937244342453044],[125,56,75,0.3494502049626163],[125,56,76,0.34953832657989586],[125,56,77,0.34963800586095817],[125,56,78,0.3497503662785042],[125,56,79,0.3498764531696798],[125,57,64,0.34816773388506433],[125,57,65,0.34825904916118466],[125,57,66,0.34834532058869916],[125,57,67,0.3484282680278169],[125,57,68,0.34850957475331223],[125,57,69,0.3485908840329859],[125,57,70,0.3486737956488574],[125,57,71,0.3487598623610807],[125,57,72,0.34885058631458876],[125,57,73,0.3489474153884618],[125,57,74,0.349051739488027],[125,57,75,0.3491648867796803],[125,57,76,0.34928811986843633],[125,57,77,0.34942263191820633],[125,57,78,0.3495695427147998],[125,57,79,0.34972989467165727],[125,58,64,0.3473289735292848],[125,58,65,0.3474577543000438],[125,58,66,0.34758133433035143],[125,58,67,0.3477014228591603],[125,58,68,0.3478196929679283],[125,58,69,0.3479377781846722],[125,58,70,0.3480572690311309],[125,58,71,0.3481797095130318],[125,58,72,0.34830659355346344],[125,58,73,0.3484393613693497],[125,58,74,0.34857939579103603],[125,58,75,0.34872801852497415],[125,58,76,0.3488864863595144],[125,58,77,0.3490559873138037],[125,58,78,0.34923763672978736],[125,58,79,0.34943247330731814],[125,59,64,0.3463391774022965],[125,59,65,0.34650512893190843],[125,59,66,0.3466657621400826],[125,59,67,0.34682277524799365],[125,59,68,0.3469778307147172],[125,59,69,0.34713255186675784],[125,59,70,0.34728851947107675],[125,59,71,0.34744726825160677],[125,59,72,0.34761028334926236],[125,59,73,0.3477789967254358],[125,59,74,0.34795478350899345],[125,59,75,0.3481389582867577],[125,59,76,0.3483327713374803],[125,59,77,0.34853740480931206],[125,59,78,0.3487539688407584],[125,59,79,0.3489834976251341],[125,60,64,0.34519796403787584],[125,60,65,0.34540077576999867],[125,60,66,0.3455981911671856],[125,60,67,0.3457918970383975],[125,60,68,0.3459835447930192],[125,60,69,0.3461747470957369],[125,60,70,0.34636707446530957],[125,60,71,0.34656205181722377],[125,60,72,0.34676115495023696],[125,60,73,0.346965806976801],[125,60,74,0.3471773746973844],[125,60,75,0.3473971649186689],[125,60,76,0.34762642071563776],[125,60,77,0.3478663176375508],[125,60,78,0.3481179598578042],[125,60,79,0.34838237626767965],[125,61,64,0.3439050530309171],[125,61,65,0.34414439873327796],[125,61,66,0.3443783098855682],[125,61,67,0.3446084614924592],[125,61,68,0.34483649348839207],[125,61,69,0.34506400741766685],[125,61,70,0.3452925630588295],[125,61,71,0.34552367499334324],[125,61,72,0.3457588091185538],[125,61,73,0.3459993791049344],[125,61,74,0.346246742797635],[125,61,75,0.3465021985623068],[125,61,76,0.34676698157522146],[125,61,77,0.34704226005768046],[125,61,78,0.34732913145471067],[125,61,79,0.34762861855805377],[125,62,64,0.3424602653038189],[125,62,65,0.3427358032319585],[125,62,66,0.34300590839811296],[125,62,67,0.34327224361322156],[125,62,68,0.34353643691387853],[125,62,69,0.34380007826748504],[125,62,70,0.34406471622211166],[125,62,71,0.3443318545010565],[125,62,72,0.34460294854210616],[125,62,73,0.3448794019814876],[125,62,74,0.3451625630825351],[125,62,75,0.3454537211090433],[125,62,76,0.34575410264332374],[125,62,77,0.34606486784896473],[125,62,78,0.34638710667828565],[125,62,79,0.3467218350244965],[125,63,64,0.34086352331633873],[125,63,65,0.3411748963959955],[125,63,66,0.34148087868356514],[125,63,67,0.34178312040971726],[125,63,68,0.3420832372929361],[125,63,69,0.3423828072695788],[125,63,70,0.3426833671690639],[125,63,71,0.3429864093341722],[125,63,72,0.3432933781864708],[125,63,73,0.34360566673684334],[125,63,74,0.3439246130411576],[125,63,75,0.34425149660103327],[125,63,76,0.3445875347097348],[125,63,77,0.34493387874318365],[125,63,78,0.34529161039608425],[125,63,79,0.3456617378631742],[125,64,64,0.3391148512189891],[125,64,65,0.33946168724663905],[125,64,66,0.3398032147860167],[125,64,67,0.34014107110415415],[125,64,68,0.34047685918409143],[125,64,69,0.34081214447967567],[125,64,70,0.3411484516159125],[125,64,71,0.34148726103486016],[125,64,72,0.34183000558706805],[125,64,73,0.34217806706855114],[125,64,74,0.3425327727033258],[125,64,75,0.3428953915714721],[125,64,76,0.34326713098274686],[125,64,77,0.34364913279574155],[125,64,78,0.3440424696825817],[125,64,79,0.3444481413391736],[125,65,64,0.33721437494991013],[125,65,65,0.33759628681098663],[125,65,66,0.3379730129469292],[125,65,67,0.33834617728119676],[125,65,68,0.3387173696472676],[125,65,69,0.33908814256799746],[125,65,70,0.3394600079809669],[125,65,71,0.33983443390980295],[125,65,72,0.34021284108147937],[125,65,73,0.34059659948958476],[125,65,74,0.34098702490358745],[125,65,75,0.3413853753240589],[125,65,76,0.3417928473838812],[125,65,77,0.3422105726954333],[125,65,78,0.34263961414375144],[125,65,79,0.3430809621256713],[125,66,64,0.33516232227527976],[125,66,65,0.3355789081795891],[125,66,66,0.3359904716797465],[125,66,67,0.3363986229793959],[125,66,68,0.3368049383518322],[125,66,69,0.33721095694373016],[125,66,70,0.3376181775253081],[125,66,71,0.3380280551869024],[125,66,72,0.33844199798196484],[125,66,73,0.3388613635164652],[125,66,74,0.33928745548473477],[125,66,75,0.3397215201517062],[125,66,76,0.34016474278157904],[125,66,77,0.34061824401290564],[125,66,78,0.3410830761800905],[125,66,79,0.3415602195813132],[125,67,64,0.33295902277317097],[125,67,65,0.3334098665070261],[125,67,66,0.3338558917870175],[125,67,67,0.33429869472468304],[125,67,68,0.3347398376262876],[125,67,69,0.33518084582073004],[125,67,70,0.335623204434328],[125,67,71,0.3360683551124658],[125,67,72,0.33651769268810994],[125,67,73,0.33697256179717927],[125,67,74,0.3374342534408044],[125,67,75,0.337904001494429],[125,67,76,0.3383829791637877],[125,67,77,0.3388722953877499],[125,67,78,0.33937299118802566],[125,67,79,0.33988603596574396],[125,68,64,0.33060490776095963],[125,68,65,0.33108957895554947],[125,68,66,0.33156967632012513],[125,68,67,0.3320467815060274],[125,68,68,0.3325224424496991],[125,68,69,0.33299817022455835],[125,68,70,0.3334754358402078],[125,68,71,0.3339556669889597],[125,68,72,0.33444024473968653],[125,68,73,0.3349305001789758],[125,68,74,0.33542771099963586],[125,68,75,0.33593309803649307],[125,68,76,0.33644782174952326],[125,68,77,0.33697297865430276],[125,68,78,0.3375095976997773],[125,68,79,0.3380586365933579],[125,69,64,0.32810051016624286],[125,69,65,0.32861856458175853],[125,69,66,0.3291323304815821],[125,69,67,0.3296433746932188],[125,69,68,0.33015323038482086],[125,69,69,0.33066339394080985],[125,69,70,0.3311753217853004],[125,69,71,0.3316904271533],[125,69,72,0.33221007680969594],[125,69,73,0.33273558771600964],[125,69,74,0.3332682236449618],[125,69,75,0.3338091917427932],[125,69,76,0.3343596390393793],[125,69,77,0.33492064890612727],[125,69,78,0.3354932374616529],[125,69,79,0.33607834992524577],[125,70,64,0.3254464643411993],[125,70,65,0.3259974441662363],[125,70,66,0.32654446146982974],[125,70,67,0.32708906789670866],[125,70,68,0.3276327814528588],[125,70,69,0.3281770834046708],[125,70,70,0.3287234151263567],[125,70,71,0.32927317489561186],[125,70,72,0.32982771463753335],[125,70,73,0.3303883366167718],[125,70,74,0.3309562900779667],[125,70,75,0.33153276783440144],[125,70,76,0.33211890280492373],[125,70,77,0.3327157644991162],[125,70,78,0.3333243554507145],[125,70,79,0.33394560759928377],[125,71,64,0.32264350582050993],[125,71,65,0.3232269399862655],[125,71,66,0.3238067782666534],[125,71,67,0.32438455676962347],[125,71,68,0.3249617779499796],[125,71,69,0.32553990753181616],[125,71,70,0.3261203713797],[125,71,71,0.326704552318571],[125,71,72,0.3272937869023762],[125,71,73,0.3278893621314105],[125,71,74,0.3284925121184178],[125,71,75,0.32910441470338614],[125,71,76,0.32972618801708253],[125,71,77,0.33035888699331417],[125,71,78,0.33100349982991323],[125,71,79,0.33166094439845295],[125,72,64,0.31969247102279097],[125,72,65,0.32030787553157625],[125,72,66,0.32092009136716637],[125,72,67,0.3215306387519057],[125,72,68,0.3221410042055207],[125,72,69,0.32275263749060146],[125,72,70,0.3233669485073074],[125,72,71,0.32398530413727866],[125,72,72,0.32460902503675737],[125,72,73,0.3252393823788988],[125,72,74,0.32587759454532716],[125,72,75,0.32652482376686176],[125,72,76,0.32718217271346917],[125,72,77,0.32785068103342097],[125,72,78,0.328531321841656],[125,72,79,0.3292249981573575],[125,73,64,0.31659429689545526],[125,73,65,0.3172411751630436],[125,73,66,0.3178853124522838],[125,73,67,0.31852821275649934],[125,73,68,0.3191713462818238],[125,73,69,0.3198161464154707],[125,73,70,0.32046400664372077],[125,73,71,0.3211162774195977],[125,73,72,0.32177426298024464],[125,73,73,0.32243921811397724],[125,73,74,0.323112344877069],[125,73,75,0.3237947892601959],[125,73,76,0.3244876378045928],[125,73,77,0.32519191416790516],[125,73,78,0.3259085756397317],[125,73,79,0.3266385096068708],[125,74,64,0.3133500205031475],[125,74,65,0.3140278637144759],[125,74,66,0.31470345400382493],[125,74,67,0.31537827879772257],[125,74,68,0.3160537916158257],[125,74,69,0.31673140906171793],[125,74,70,0.3174125077639195],[125,74,71,0.31809842126707877],[125,74,72,0.3187904368733599],[125,74,73,0.31948979243399794],[125,74,74,0.32019767309108393],[125,74,75,0.3209152079695],[125,74,76,0.32164346681906175],[125,74,77,0.32238345660684803],[125,74,78,0.3231361180597184],[125,74,79,0.3239023221570259],[125,75,64,0.3099607785596904],[125,75,65,0.31066906603743555],[125,75,66,0.3113756288621853],[125,75,67,0.31208193756176417],[125,75,68,0.3127894286023522],[125,75,69,0.3134995014015408],[125,75,70,0.31421351529209884],[125,75,71,0.31493278643642253],[125,75,72,0.31565858469167873],[125,75,73,0.31639213042561687],[125,75,74,0.31713459128311117],[125,75,75,0.3178870789033501],[125,75,76,0.3186506455877359],[125,75,77,0.31942628091846925],[125,75,78,0.3202149083278216],[125,75,79,0.32101738161810334],[125,76,64,0.3064278069034485],[125,76,65,0.3071660064889964],[125,76,66,0.3079030497264851],[125,76,67,0.3086403899192156],[125,76,68,0.30937944611902146],[125,76,69,0.3101216001613007],[125,76,70,0.3108681936512674],[125,76,71,0.3116205249013899],[125,76,72,0.3123798458200288],[125,76,73,0.313147358751249],[125,76,74,0.31392421326586706],[125,76,75,0.31471150290365274],[125,76,76,0.3155102618667431],[125,76,77,0.31632146166425035],[125,76,78,0.31714600770806073],[125,76,79,0.3179847358598353],[125,77,64,0.30275243991627687],[125,77,65,0.3035200083626062],[125,77,66,0.30428702859735945],[125,77,67,0.30505493637980086],[125,77,68,0.3058251329929182],[125,77,69,0.3065989823001457],[125,77,70,0.3073778077538167],[125,77,71,0.30816288935531455],[125,77,72,0.3089554605669361],[125,77,73,0.3097567051754355],[125,77,74,0.3105677541073203],[125,77,75,0.31138968219580726],[125,77,76,0.31222350489950523],[125,77,77,0.31307017497280115],[125,77,78,0.3139305790879479],[125,77,79,0.31480553440886694],[125,78,64,0.2989361098859804],[125,78,65,0.29973249326197826],[125,78,66,0.3005289761623169],[125,78,67,0.30132697648922974],[125,78,68,0.30212787740896996],[125,78,69,0.30293302442992825],[125,78,70,0.3037437224329973],[125,78,71,0.3045612326541514],[125,78,72,0.3053867696192539],[125,78,73,0.30622149803106075],[125,78,74,0.3070665296084954],[125,78,75,0.30792291987809683],[125,78,76,0.3087916649177117],[125,78,77,0.3096736980524065],[125,78,78,0.310569886502598],[125,78,79,0.31148102798441313],[125,79,64,0.29498034631218084],[125,79,65,0.2958049804179117],[125,79,66,0.2966304011235646],[125,79,67,0.2974580081680769],[125,79,68,0.2982891662599212],[125,79,69,0.29912520217631566],[125,79,70,0.2999674018152023],[125,79,71,0.30081700719996185],[125,79,72,0.30167521343687786],[125,79,73,0.3025431656253189],[125,79,74,0.3034219557207126],[125,79,75,0.30431261935021503],[125,79,76,0.3052161325811452],[125,79,77,0.3061334086421611],[125,79,78,0.30706529459717546],[125,79,79,0.30801256797202237],[125,80,64,0.29088677515577865],[125,80,65,0.29173908594822523],[125,80,66,0.29259290946848526],[125,80,67,0.2934496269928676],[125,80,68,0.2943105844380912],[125,80,69,0.29517708948127713],[125,80,70,0.2960504086332349],[125,80,71,0.29693176426501244],[125,80,72,0.2978223315877214],[125,80,73,0.29872323558560643],[125,80,74,0.2996355479024332],[125,80,75,0.3005602836810983],[125,80,76,0.30149839835653014],[125,80,77,0.3024507844018578],[125,80,78,0.30341826802784566],[125,80,79,0.304401605835607],[125,81,64,0.28665711803192523],[125,81,65,0.2875365220607213],[125,81,66,0.2884182036826821],[125,81,67,0.28930352541928867],[125,81,68,0.2901938140688311],[125,81,69,0.2910903578468621],[125,81,70,0.2919944034804809],[125,81,71,0.2929071532564088],[125,81,72,0.2938297620228725],[125,81,73,0.29476333414526085],[125,81,74,0.29570892041563507],[125,81,75,0.29666751491598786],[125,81,76,0.2976400518353264],[125,81,77,0.2986274022405552],[125,81,78,0.29963037080115473],[125,81,79,0.30064969246767037],[125,82,64,0.2822931913463933],[125,82,65,0.28319909619906825],[125,82,66,0.2841080819054806],[125,82,67,0.2850214919474141],[125,82,68,0.28594063368557066],[125,82,69,0.28686677552016415],[125,82,70,0.287801144005879],[125,82,71,0.28874492092115667],[125,82,72,0.28969924029182614],[125,82,73,0.2906651853690419],[125,82,74,0.29164378556161324],[125,82,75,0.29263601332261613],[125,82,76,0.2936427809903657],[125,82,77,0.2946649375837239],[125,82,78,0.29570326555173865],[125,82,79,0.29675847747762885],[125,83,64,0.2777969053755517],[125,83,65,0.278728710131806],[125,83,66,0.2796644370280924],[125,83,67,0.28060541022914676],[125,83,68,0.281552917346658],[125,83,69,0.28250820661966936],[125,83,70,0.28347248404988534],[125,83,71,0.2844469104918465],[125,83,72,0.2854325986979881],[125,83,73,0.28643061031854644],[125,83,74,0.28744195285639607],[125,83,75,0.28846757657671007],[125,83,76,0.2895083713715212],[125,83,77,0.2905651635791565],[125,83,78,0.2916387127585453],[125,83,79,0.29272970841841284],[125,84,64,0.2731702632898513],[125,84,65,0.27412735898438306],[125,84,66,0.27508925573434717],[125,84,67,0.2760572581177878],[125,84,68,0.2770326336938994],[125,84,69,0.27801661020289836],[125,84,70,0.27901037272134416],[125,84,71,0.2800150607728732],[125,84,72,0.28103176539436064],[125,84,73,0.2820615261574717],[125,84,74,0.28310532814569267],[125,84,75,0.28416409888672434],[125,84,76,0.28523870524032247],[125,84,77,0.286329950241557],[125,84,78,0.28743856989948624],[125,84,79,0.28856522995126316],[125,85,64,0.26841536012069744],[125,85,65,0.2693971302140993],[125,85,66,0.2703846174838706],[125,85,67,0.27137910665960696],[125,85,68,0.27238184495267737],[125,85,69,0.2733940392752209],[125,85,70,0.2744168534151431],[125,85,71,0.27545140516707234],[125,85,72,0.2764987634192917],[125,85,73,0.27755994519660865],[125,85,74,0.27863591265925347],[125,85,75,0.2797275700576866],[125,85,76,0.28083576064340227],[125,85,77,0.2819612635356975],[125,85,78,0.2831047905444063],[125,85,79,0.2842669829486118],[125,86,64,0.26353438167093907],[125,86,65,0.26454020252818516],[125,86,66,0.26555269343793486],[125,86,67,0.2665731190276432],[125,86,68,0.2676027058738727],[125,86,69,0.2686426397400673],[125,86,70,0.26969406277087643],[125,86,71,0.270758070642991],[125,86,72,0.27183570967250753],[125,86,73,0.272927973878781],[125,86,74,0.2740358020048582],[125,86,75,0.27516007449437285],[125,86,76,0.2763016104249867],[125,86,77,0.2774611643983501],[125,86,78,0.2786394233865773],[125,86,79,0.27983700353525315],[125,87,64,0.2585296033688669],[125,87,65,0.2595588447449094],[125,87,66,0.26059574532787755],[125,87,67,0.2616415493976285],[125,87,68,0.26269746261748594],[125,87,69,0.26376464929043253],[125,87,70,0.2648442295724114],[125,87,71,0.26593727664269295],[125,87,72,0.267044813831326],[125,87,73,0.26816781170363146],[125,87,74,0.2693071851018344],[125,87,75,0.27046379014370964],[125,87,76,0.2716384211783319],[125,87,77,0.27283180769889803],[125,87,78,0.27404461121262086],[125,87,79,0.27527742206770944],[125,88,64,0.2534033890655898],[125,88,65,0.25445541459758525],[125,88,66,0.2555161242659558],[125,88,67,0.2565867417659073],[125,88,68,0.2576684515778286],[125,88,69,0.25876239624154374],[125,88,70,0.25986967358823176],[125,88,71,0.2609913339299707],[125,88,72,0.2621283772069244],[125,88,73,0.26328175009212884],[125,88,74,0.26445234305397836],[125,88,75,0.2656409873762817],[125,88,76,0.2668484521359813],[125,88,77,0.26807544113850346],[125,88,78,0.2693225898107397],[125,88,79,0.27059046205167137],[125,89,64,0.24815818977605136],[125,89,65,0.24923235748173575],[125,89,66,0.2503162694988994],[125,89,67,0.25141112870960713],[125,89,68,0.2525180981505412],[125,89,69,0.2536382983049478],[125,89,70,0.25477280435281147],[125,89,71,0.255922643379217],[125,89,72,0.25708879154091413],[125,89,73,0.2582721711910444],[125,89,74,0.25947364796212957],[125,89,75,0.2606940278071903],[125,89,76,0.26193405399909037],[125,89,77,0.2631944040880745],[125,89,78,0.26447568681749595],[125,89,79,0.26577843899775205],[125,90,64,0.2427965423634665],[125,90,65,0.24389220514519888],[125,90,66,0.24499870710394045],[125,90,67,0.24611723008884576],[125,90,68,0.24724891544122327],[125,90,69,0.2483948613038045],[125,90,70,0.24955611988880574],[125,90,71,0.2507336947047424],[125,90,72,0.25192853774200974],[125,90,73,0.25314154661719024],[125,90,74,0.2543735616761878],[125,90,75,0.25562536305605543],[125,90,76,0.25689766770561434],[125,90,77,0.25819112636482844],[125,90,78,0.2595063205029363],[125,90,79,0.2608437592153535],[125,91,64,0.23732106816735096],[125,91,65,0.23843757432134555],[125,91,66,0.2395660486274946],[125,91,67,0.2407076516911453],[125,91,68,0.2418635029158444],[125,91,69,0.24303467782955349],[125,91,70,0.24422220537022737],[125,91,71,0.24542706513070883],[125,91,72,0.24665018456295978],[125,91,73,0.24789243614158235],[125,91,74,0.2491546344867387],[125,91,75,0.25043753344632685],[125,91,76,0.25174182313751686],[125,91,77,0.2530681269476104],[125,91,78,0.25441699849422306],[125,91,79,0.2557889185448049],[125,92,64,0.23173447157490223],[125,92,65,0.23287116530516824],[125,92,66,0.2340209896662515],[125,92,67,0.23518508381781283],[125,92,68,0.23636454499269724],[125,92,69,0.237560425839718],[125,92,70,0.23877373172637198],[125,92,71,0.24000541800144215],[125,92,72,0.24125638721750536],[125,92,73,0.24252748631329918],[125,92,74,0.24381950375605732],[125,92,75,0.2451331666436703],[125,92,76,0.2464691377667761],[125,92,77,0.24782801263074328],[125,92,78,0.24921031643754593],[125,92,79,0.25061650102754784],[125,93,64,0.22603953853601874],[125,93,65,0.22719576047252812],[125,93,66,0.22836630839096153],[125,93,67,0.22955229981257283],[125,93,68,0.2307548095761789],[125,93,69,0.2319748671971286],[125,93,70,0.23321345418677447],[125,93,71,0.23447150133240358],[125,93,72,0.23574988593764523],[125,93,73,0.23704942902330872],[125,93,74,0.2383708924887621],[125,93,75,0.23971497623370763],[125,93,76,0.2410823152404578],[125,93,77,0.2424734766166765],[125,93,78,0.24388895659858317],[125,93,79,0.24532917751463756],[125,94,64,0.22023913502182788],[125,94,65,0.22141422274242994],[125,94,66,0.22260486401278834],[125,94,67,0.22381215453232337],[125,94,68,0.2250371465322688],[125,94,69,0.22628084615043786],[125,94,70,0.22754421076706743],[125,94,71,0.2288281463016939],[125,94,72,0.2301335044710794],[125,94,73,0.23146108000814142],[125,94,74,0.23281160784199834],[125,94,75,0.23418576023898297],[125,94,76,0.23558414390473204],[125,94,77,0.23700729704731316],[125,94,78,0.23845568640138903],[125,94,79,0.2399297042134359],[125,95,64,0.21433620542657159],[125,95,65,0.21552949398217422],[125,95,66,0.2167395951920777],[125,95,67,0.21796758275986527],[125,95,68,0.21921448610555605],[125,95,69,0.22048128775577797],[125,95,70,0.2217689206955954],[125,95,71,0.22307826568194333],[125,95,72,0.22441014851868785],[125,95,73,0.2257653372932632],[125,95,74,0.2271445395750029],[125,95,75,0.22854839957501216],[125,95,76,0.2299774952676909],[125,95,77,0.23143233547387204],[125,95,78,0.2329133569055698],[125,95,79,0.2344209211723584],[125,96,64,0.20833377091313737],[125,96,65,0.2095445933556757],[125,96,66,0.2107735183898296],[125,96,67,0.21202159755889022],[125,96,68,0.21328983727810102],[125,96,69,0.21457919623984545],[125,96,70,0.21589058278106643],[125,96,71,0.21722485221286836],[125,96,72,0.21858280411232206],[125,96,73,0.21996517957642525],[125,96,74,0.22137265843832987],[125,96,75,0.22280585644569084],[125,96,76,0.22426532240124103],[125,96,77,0.22575153526555714],[125,96,78,0.22726490122201354],[125,96,79,0.2288057507039432],[125,97,64,0.20223492770209978],[125,97,65,0.2034626156148096],[125,97,66,0.20470972616173755],[125,97,67,0.2059772885710932],[125,97,68,0.2072662860699953],[125,97,69,0.20857765330427824],[125,97,70,0.2099122737211081],[125,97,71,0.2112709769143603],[125,97,72,0.21265453593277772],[125,97,73,0.21406366455086018],[125,97,74,0.21549901450260328],[125,97,75,0.2169611726779322],[125,97,76,0.218450658281942],[125,97,77,0.2199679199569059],[125,97,78,0.22151333286705022],[125,97,79,0.2230871957461139],[125,98,64,0.19604284530410943],[125,98,65,0.19728672933362745],[125,98,66,0.19855138539463507],[125,98,67,0.19983782025524977],[125,98,68,0.201146993781463],[125,98,69,0.20247981637116647],[125,98,70,0.2038371463515692],[125,98,71,0.20521978733995333],[125,98,72,0.2066284855677909],[125,98,73,0.20806392716816874],[125,98,74,0.20952673542664518],[125,98,75,0.21101746799537735],[125,98,76,0.21253661407063534],[125,98,77,0.21408459153366388],[125,98,78,0.2156617440548887],[125,98,79,0.21726833816148705],[125,99,64,0.1897607646959374],[125,99,65,0.19102017508574665],[125,99,66,0.19230173548565382],[125,99,67,0.19360643006856038],[125,99,68,0.1949351951768024],[125,99,69,0.19628891676999866],[125,99,70,0.19766842783686778],[125,99,71,0.19907450577096486],[125,99,72,0.2005078697103579],[125,99,73,0.20196917784119306],[125,99,74,0.203459024665271],[125,99,75,0.2049779382314736],[125,99,76,0.20652637733115747],[125,99,77,0.20810472865747476],[125,99,78,0.20971330392861792],[125,99,79,0.211352336975009],[125,100,64,0.1833919964400284],[125,100,65,0.18466626356476795],[125,100,66,0.18596408646394896],[125,100,67,0.18728642659011885],[125,100,68,0.18863419661002878],[125,100,69,0.19000825786590086],[125,100,70,0.19140941780124404],[125,100,71,0.19283842735117113],[125,100,72,0.19429597829723538],[125,100,73,0.19578270058673553],[125,100,74,0.19729915961661337],[125,100,75,0.19884585348178152],[125,100,76,0.20042321018799836],[125,100,77,0.20203158482924993],[125,100,78,0.20367125672963765],[125,100,79,0.20534242654978935],[125,101,64,0.17693991874739506],[125,101,65,0.17822837364755534],[125,101,66,0.17954181705482353],[125,101,67,0.18088118758633737],[125,101,68,0.1822473740920479],[125,101,69,0.18364121312900045],[125,101,70,0.1850634864007492],[125,101,71,0.18651491816185],[125,101,72,0.187996172587456],[125,101,73,0.18950785110795965],[125,101,74,0.19105048970881183],[125,101,75,0.19262455619534763],[125,101,76,0.19423044742274237],[125,101,77,0.1958684864910551],[125,101,78,0.1975389199053572],[125,101,79,0.19924191470096753],[125,102,64,0.17040797548417425],[125,102,65,0.1717099504006963],[125,102,66,0.17303837268657263],[125,102,67,0.17439415801864783],[125,102,68,0.17577817129968015],[125,102,69,0.17719122414523503],[125,102,70,0.17863407233629142],[125,102,71,0.18010741323750862],[125,102,72,0.18161188318117522],[125,102,73,0.18314805481678675],[125,102,74,0.18471643442637936],[125,102,75,0.18631745920545273],[125,102,76,0.18795149450960236],[125,102,77,0.1896188310668217],[125,102,78,0.19131968215546857],[125,102,79,0.1930541807479198],[125,103,64,0.16379967412169216],[125,103,65,0.1651145030299906],[125,103,66,0.1664572634398943],[125,103,67,0.16782884799332476],[125,103,68,0.1692300975263833],[125,103,69,0.17066179856845093],[125,103,70,0.17212468080758253],[125,103,71,0.1736194145221417],[125,103,72,0.17514660797869847],[125,103,73,0.1767068047961362],[125,103,74,0.17830048127609543],[125,103,75,0.17992804369958715],[125,103,76,0.18158982558989656],[125,103,77,0.18328608494173643],[125,103,78,0.18501700141664623],[125,103,79,0.18678267350465988],[125,104,64,0.15711858362986475],[125,104,65,0.15844560277279457],[125,104,66,0.15980206193969315],[125,104,67,0.16118883065326084],[125,104,68,0.16260672557450118],[125,104,69,0.1640565080136236],[125,104,70,0.16553888140781842],[125,104,71,0.16705448876585405],[125,104,72,0.16860391007951758],[125,104,73,0.17018765970184313],[125,104,74,0.17180618369225997],[125,104,75,0.17345985712848788],[125,104,76,0.17514898138530444],[125,104,77,0.17687378138014181],[125,104,78,0.1786344027855099],[125,104,79,0.1804309092082682],[125,105,64,0.1503683323142656],[125,105,65,0.1517068807335522],[125,105,66,0.1530764011896103],[125,105,67,0.1544777400120222],[125,105,68,0.1559116895893688],[125,105,69,0.15737898589152632],[125,105,70,0.1588803059594192],[125,105,71,0.16041626536217168],[125,105,72,0.16198741562168445],[125,105,73,0.16359424160457642],[125,105,74,0.16523715888162915],[125,105,75,0.16691651105455513],[125,105,76,0.16863256705021895],[125,105,77,0.170385518382268],[125,105,78,0.17217547638016784],[125,105,79,0.1740024693856672],[125,106,64,0.14355260559670263],[125,106,65,0.1449020256623545],[125,106,66,0.1462839723491181],[125,106,67,0.14769926873002837],[125,106,68,0.1491486828351148],[125,106,69,0.15063292518469013],[125,106,70,0.15215264629067204],[125,106,71,0.15370843412588509],[125,106,72,0.15530081156136366],[125,106,73,0.15693023377160098],[125,106,74,0.1585970856078781],[125,106,75,0.16030167893949704],[125,106,76,0.16204424996304395],[125,106,77,0.1638249564796418],[125,106,78,0.1656438751401863],[125,106,79,0.16750099865858925],[125,107,64,0.13667514373912432],[125,107,65,0.13803478167634825],[125,107,66,0.1394285224530047],[125,107,67,0.14085716583267566],[125,107,68,0.14232145541198593],[125,107,69,0.14382207616447862],[125,107,70,0.14535965195310113],[125,107,71,0.14693474301124965],[125,107,72,0.14854784339239152],[125,107,73,0.1501993783882119],[125,107,74,0.15188970191541906],[125,107,75,0.1536190938710295],[125,107,76,0.15538775745626265],[125,107,77,0.15719581646900177],[125,107,78,0.15904331256481602],[125,107,79,0.16093020248656914],[125,108,64,0.12973973951119977],[125,108,65,0.13110894592433825],[125,108,66,0.13251385207358846],[125,108,67,0.13395523437074947],[125,108,68,0.13543381191553228],[125,108,69,0.13695024404961814],[125,108,70,0.1385051278799036],[125,108,71,0.14009899577088109],[125,108,72,0.1417323128061746],[125,108,73,0.143405474219174],[125,108,74,0.14511880279290634],[125,108,75,0.14687254622896256],[125,108,76,0.1486668744856104],[125,108,77,0.15050187708504964],[125,108,78,0.15237756038980593],[125,108,79,0.15429384484828623],[125,109,64,0.12275023580140682],[125,109,65,0.12412836619441764],[125,109,66,0.12554381292549865],[125,109,67,0.12699732902295796],[125,109,68,0.12848960903749118],[125,109,69,0.13002128660601853],[125,109,70,0.1315929319852877],[125,109,71,0.13320504955518375],[125,109,72,0.13485807529177102],[125,109,73,0.13655237421000693],[125,109,74,0.13828823777626953],[125,109,75,0.14006588129051406],[125,109,76,0.14188544123819063],[125,109,77,0.14374697261188013],[125,109,78,0.14565044620264234],[125,109,79,0.14759574586110175],[125,110,64,0.11571052317144448],[125,110,65,0.11709693846444041],[125,110,66,0.11852230541283848],[125,110,67,0.11998735364040697],[125,110,68,0.12149275310818547],[125,110,69,0.12303911168770293],[125,110,70,0.12462697270453266],[125,110,71,0.12625681245212883],[125,110,72,0.12792903767596803],[125,110,73,0.1296439830279345],[125,110,74,0.13140190849109473],[125,110,75,0.13320299677467246],[125,110,76,0.13504735067935808],[125,110,77,0.1369349904329097],[125,110,78,0.1388658509960397],[125,110,79,0.14083977933861264],[125,111,64,0.10862453735432503],[125,111,65,0.11001860439569605],[125,111,66,0.11145327611908629],[125,111,67,0.11292925873336596],[125,111,68,0.11444719758079064],[125,111,69,0.11600767471919904],[125,111,70,0.1176112064751208],[125,111,71,0.11925824096773552],[125,111,72,0.12094915560370972],[125,111,73,0.12268425454284698],[125,111,74,0.1244637661347],[125,111,75,0.1262878403259528],[125,111,76,0.12815654603871002],[125,111,77,0.13006986851964836],[125,111,78,0.1320277066600236],[125,111,79,0.13402987028656277],[125,112,64,0.10149625669597223],[125,112,65,0.10289734876960793],[125,112,66,0.10434071523955896],[125,112,67,0.10582703890015732],[125,112,68,0.10735694045729749],[125,112,69,0.1089309761192197],[125,112,70,0.1105496351587697],[125,112,71,0.11221333744708101],[125,112,72,0.11392243095870203],[125,112,73,0.1156771892481071],[125,112,74,0.11747780889773685],[125,112,75,0.11932440693737845],[125,112,76,0.12121701823502218],[125,112,77,0.12315559285914829],[125,112,78,0.1251399934124397],[125,112,79,0.1271699923369466],[125,113,64,0.09432969954014181],[125,113,65,0.09573719686727317],[125,113,66,0.09718865395625748],[125,113,67,0.09868473019798135],[125,113,68,0.10022602165598782],[125,113,69,0.10181305866544915],[125,113,70,0.10344630340418343],[125,113,71,0.10512614743565962],[125,113,72,0.10685290922401391],[125,113,73,0.10862683162101688],[125,113,74,0.11044807932513678],[125,113,75,0.11231673631250827],[125,113,76,0.11423280323994511],[125,113,77,0.11619619481994864],[125,113,78,0.11820673716770935],[125,113,79,0.120264165120127],[125,114,64,0.08712892155704505],[125,114,65,0.08854221179222749],[125,114,66,0.09000116175547196],[125,114,67,0.09150640745605887],[125,114,68,0.09305852032080125],[125,114,69,0.09465800480081549],[125,114,70,0.09630529595090026],[125,114,71,0.09800075698146787],[125,114,72,0.09974467678305099],[125,114,73,0.10153726742332186],[125,114,74,0.10337866161677628],[125,114,75,0.10526891016688161],[125,114,76,0.10720797938083632],[125,114,77,0.10919574845688651],[125,114,78,0.1112320068442022],[125,114,79,0.11331645157533382],[125,115,64,0.07989801301535504],[125,115,65,0.08131649173611072],[125,115,66,0.08278234368782794],[125,115,67,0.08429618153077117],[125,115,68,0.08585855207227572],[125,115,69,0.08746993388092811],[125,115,70,0.08913073487391732],[125,115,71,0.09084128987749651],[125,115,72,0.09260185816058403],[125,115,73,0.09441262094143638],[125,115,74,0.09627367886754618],[125,115,75,0.0981850494685681],[125,115,76,0.10014666458241289],[125,115,77,0.10215836775446496],[125,115,78,0.10421991160991456],[125,115,79,0.10633095519923597],[125,116,64,0.07264109599784058],[125,116,65,0.07406416718747899],[125,116,66,0.07553633757101752],[125,116,67,0.07705819650304196],[125,116,68,0.078630266200304],[125,116,69,0.08025299936292674],[125,116,70,0.08192677676933774],[125,116,71,0.08365190484487345],[125,116,72,0.08542861320407763],[125,116,73,0.08725705216663127],[125,116,74,0.08913729024706557],[125,116,75,0.09106931161805959],[125,116,76,0.09305301354746554],[125,116,77,0.09508820380901323],[125,116,78,0.09717459806668982],[125,116,79,0.09931181723282112],[125,117,64,0.06536232156029437],[125,117,65,0.06678939808343326],[125,117,66,0.06826731113488388],[125,117,67,0.06979662681762899],[125,117,68,0.07137784279837645],[125,117,69,0.07301138593540718],[125,117,70,0.07469760988070767],[125,117,71,0.07643679265632747],[125,117,72,0.07822913420498429],[125,117,73,0.08007475391485647],[125,117,74,0.08197368811871325],[125,117,75,0.08392588756718361],[125,117,76,0.08593121487630673],[125,117,77,0.08798944194931729],[125,117,78,0.09010024737266042],[125,117,79,0.09226321378626279],[125,118,64,0.05806586683415377],[125,118,65,0.05949637090445736],[125,118,66,0.06097945910925395],[125,118,67,0.06251567436472122],[125,118,68,0.06410548983970243],[125,118,69,0.06574930658982298],[125,118,70,0.06744745116643969],[125,118,71,0.06920017320036681],[125,118,72,0.07100764296040185],[125,118,73,0.07286994888658826],[125,118,74,0.07478709509836745],[125,118,75,0.07675899887742083],[125,118,76,0.07878548812534358],[125,118,77,0.08086629879610646],[125,118,78,0.08300107230329495],[125,118,79,0.08518935290215862],[125,119,64,0.050755932072621246],[125,119,65,0.05218929571227676],[125,119,66,0.05367700025433175],[125,119,67,0.05521956550365148],[125,119,68,0.05681744019502433],[125,119,69,0.05847099963316932],[125,119,70,0.06018054330812883],[125,119,71,0.061946292485981214],[125,119,72,0.06376838777490323],[125,119,73,0.06564688666651541],[125,119,74,0.06758176105266456],[125,119,75,0.06957289471744266],[125,119,76,0.07162008080458637],[125,119,77,0.07372301926021024],[125,119,78,0.07588131425086536],[125,119,79,0.0780944715569557],[125,120,64,0.04343673764010414],[125,120,65,0.04487240313055768],[125,120,66,0.04636417433346629],[125,120,67,0.047912548028544055],[125,120,68,0.04951794859193959],[125,120,69,0.051180725641771396],[125,120,70,0.05290115165958731],[125,120,71,0.05467941958769085],[125,120,72,0.05651564040235846],[125,120,73,0.05840984066288313],[125,120,74,0.06036196003660094],[125,120,75,0.062371848799693264],[125,120,76,0.06443926531391714],[125,120,77,0.06656387347920834],[125,120,78,0.06874524016215744],[125,120,79,0.0709828326003844],[125,121,64,0.03611252094534467],[125,121,65,0.03754994126881134],[125,121,66,0.03904523902866769],[125,121,67,0.04059888807626233],[125,121,68,0.04221128851610079],[125,121,69,0.04388276435654137],[125,121,70,0.04561356113695797],[125,121,71,0.04740384353130439],[125,121,72,0.049253692928113824],[125,121,73,0.05116310498685911],[125,121,74,0.053131987170838],[125,121,75,0.05516015625637327],[125,121,76,0.05724733581847763],[125,121,77,0.059393153692933964],[125,121,78,0.06159713941478495],[125,121,79,0.06385872163326167],[125,122,64,0.02878753331805045],[125,122,65,0.03022617258932503],[125,122,66,0.03172446679868396],[125,122,67,0.03328286697647831],[125,122,68,0.03490174905410859],[125,122,69,0.03658141151952482],[125,122,70,0.03832207304972757],[125,122,71,0.04012387012020718],[125,122,72,0.04198685459134943],[125,122,73,0.04391099127174103],[125,122,74,0.04589615545853143],[125,122,75,0.04794213045464579],[125,122,76,0.050048605062997464],[125,122,77,0.05221517105765083],[125,122,78,0.05444132063192664],[125,122,79,0.056726443823483574],[125,123,64,0.02146603682884457],[125,123,65,0.022905370716926055],[125,123,66,0.02440614167945221],[125,123,67,0.02596877804367065],[125,123,68,0.02759363167791251],[125,123,69,0.02928097565154497],[125,123,70,0.031031001872452557],[125,123,71,0.032843818701988714],[125,123,72,0.03471944854742337],[125,123,73,0.03665782543181961],[125,123,74,0.0386587925414984],[125,123,75,0.04072209975088403],[125,123,76,0.04284740112487917],[125,123,77,0.04503425239871928],[125,123,78,0.047282108435302894],[125,123,79,0.049590320660025444],[125,124,64,0.014152301052902938],[125,124,65,0.01559181719195707],[125,124,66,0.01709455602729759],[125,124,67,0.018660923311427324],[125,124,68,0.020291246971088972],[125,124,69,0.021985774771320243],[125,124,70,0.023744671957566355],[125,124,71,0.025568018875785192],[125,124,72,0.027455808570576834],[125,124,73,0.02940794436126426],[125,124,74,0.031424237396090904],[125,124,75,0.033504404184322434],[125,124,76,0.035648064106402755],[125,124,77,0.037854736902117936],[125,124,78,0.04012384013675807],[125,124,79,0.0424546866453096],[125,125,64,0.006850599777097899],[125,125,65,0.008289798166275508],[125,125,66,0.009794007204694255],[125,125,67,0.011363610208868224],[125,125,68,0.012998911296813964],[125,125,69,0.014700133055869147],[125,125,70,0.01646741418908748],[125,125,71,0.0183008071401497],[125,125,72,0.020200275696815817],[125,125,73,0.02216569257285228],[125,125,74,0.02419683696859365],[125,125,75,0.026293392109930758],[125,125,76,0.02845494276587357],[125,125,77,0.03068097274463999],[125,125,78,0.032970862368266296],[125,125,79,0.035323885925766074],[125,126,64,-4.3479234954413304E-4],[125,126,65,0.0010036010420859665],[125,126,66,0.002508794208399223],[125,126,67,0.004081148178996297],[125,126,68,0.005720943407342527],[125,126,69,0.007428377442013967],[125,126,70,0.009203562577038249],[125,126,71,0.011046523481262449],[125,126,72,0.012957194806780592],[125,126,73,0.014935418776350073],[125,126,74,0.016980942749957983],[125,126,75,0.01909341677032883],[125,126,76,0.02127239108752299],[125,126,77,0.023517313662576256],[125,126,78,0.025827527650175153],[125,126,79,0.028202268860397672],[125,127,64,-0.007699603221693718],[125,127,65,-0.006262488946015443],[125,127,66,-0.00475678575966465],[125,127,67,-0.003182154760644873],[125,127,68,-0.0015383390046352918],[125,127,69,1.7483416935692997E-4],[125,127,70,0.0019574507929458473],[125,127,71,0.0038095079018548583],[125,127,72,0.005730911148975615],[125,127,73,0.007721472396920892],[125,127,74,0.009780907290243834],[125,127,75,0.011908832807103531],[125,127,76,0.014104764790532243],[125,127,77,0.01636811545925565],[125,127,78,0.018698190898056466],[125,127,79,0.021094188527714608],[125,128,64,-0.014939566740067689],[125,128,65,-0.013504192205974319],[125,128,66,-0.011998440778965946],[125,128,67,-0.010421995515198623],[125,128,68,-0.00877462281294239],[125,128,69,-0.007056174735457055],[125,128,70,-0.005266591353756733],[125,128,71,-0.003405903109337527],[125,128,72,-0.0014742331968257139],[125,128,73,5.282000333712844E-4],[125,128,74,0.00260108065258402],[125,128,75,0.004743992711350842],[125,128,76,0.006956417776995405],[125,128,77,0.00923773245125814],[125,128,78,0.011587205867979122],[125,128,79,0.014003997170860094],[125,129,64,-0.02215042633045816],[125,129,65,-0.020717238320373976],[125,129,66,-0.019211887754544632],[125,129,67,-0.017634079467785613],[125,129,68,-0.015983603023356885],[125,129,69,-0.014260335033374982],[125,129,70,-0.012464241498616468],[125,129,71,-0.010595380167781276],[125,129,72,-0.008653902916183953],[125,129,73,-0.006640058143944305],[125,129,74,-0.004554193193512135],[125,129,75,-0.0023967567867415607],[125,129,76,-1.6830148135993372E-4],[125,129,77,0.0021305138531182433],[125,129,78,0.004498921540023293],[125,129,79,0.006936042580742985],[125,130,64,-0.029327938519077335],[125,130,65,-0.02789736963532463],[125,130,66,-0.02639285601844854],[125,130,67,-0.024814124092496614],[125,130,68,-0.023160986397175565],[125,130,69,-0.02143334390610363],[125,130,70,-0.019631188363967267],[125,130,71,-0.017754604642640226],[125,130,72,-0.015803773116241482],[125,130,73,-0.01377897205519818],[125,130,74,-0.011680580039150512],[125,130,75,-0.009509078388911352],[125,130,76,-0.007265053617332207],[125,130,77,-0.0049491998991180175],[125,130,78,-0.0025623215596045634],[125,130,79,-1.0533558246117458E-4],[125,131,64,-0.0364678765643941],[125,131,65,-0.03504034490632846],[125,131,66,-0.033537090988606244],[125,131,67,-0.031957862625265565],[125,131,68,-0.03030249513308625],[125,131,69,-0.028570913647986584],[125,131,70,-0.026763135459834553],[125,131,71,-0.024879272365739835],[125,131,72,-0.022919533041792062],[125,131,73,-0.020884225433323356],[125,131,74,-0.01877375916352031],[125,131,75,-0.016588647960611103],[125,131,76,-0.01432951210346567],[125,131,77,-0.011997080885662315],[125,131,78,-0.009592195098028222],[125,131,79,-0.007115809529621098],[125,132,64,-0.043566034145655186],[125,132,65,-0.042141943001304694],[125,132,66,-0.04064035788532361],[125,132,67,-0.0390610477928065],[125,132,68,-0.03740387060752881],[125,132,69,-0.03566877541677982],[125,132,70,-0.033855804844128645],[125,132,71,-0.03196509740019038],[125,132,72,-0.02999688985135973],[125,132,73,-0.02795151960658615],[125,132,74,-0.025829427122022075],[125,132,75,-0.023631158323760948],[125,132,76,-0.021357367048512654],[125,132,77,-0.019008817502261577],[125,132,78,-0.016586386736921477],[125,132,79,-0.014091067144947789],[125,133,64,-0.05061822910771818],[125,133,65,-0.0491979666604111],[125,133,66,-0.04769844550503621],[125,133,67,-0.0461194555992519],[125,133,68,-0.04446087717318048],[125,133,69,-0.042722683042959786],[125,133,70,-0.04090494094175556],[125,133,71,-0.03900781586829927],[125,133,72,-0.03703157245291955],[125,133,73,-0.0349765773411429],[125,133,74,-0.03284330159469073],[125,133,75,-0.03063232311009434],[125,133,76,-0.028344329054773354],[125,133,77,-0.025980118320622747],[125,133,78,-0.023540603995122145],[125,133,79,-0.021026815849929048],[125,134,64,-0.057620307262380654],[125,134,65,-0.0562042463128406],[125,134,66,-0.0547071700515005],[125,134,67,-0.05312888917067371],[125,134,68,-0.05146930601575017],[125,134,69,-0.04972841689774321],[125,134,70,-0.047906314422830665],[125,134,71,-0.04600318983895435],[125,134,72,-0.04401933539944569],[125,134,73,-0.04195514674375311],[125,134,74,-0.039811125295098115],[125,134,75,-0.037587880675284846],[125,134,76,-0.0352861331365012],[125,134,77,-0.03290671601016515],[125,134,78,-0.030450578172824483],[125,134,79,-0.027918786529073536],[125,135,64,-0.06456814624639107],[125,135,65,-0.06315664395077869],[125,135,66,-0.06166237902460636],[125,135,67,-0.06008518265766705],[125,135,68,-0.05842497906926025],[125,135,69,-0.05668178782000388],[125,135,70,-0.05485572614017731],[125,135,71,-0.05294701127466517],[125,135,72,-0.05095596284446424],[125,135,73,-0.048883005224833576],[125,135,74,-0.046728669939912315],[125,135,75,-0.04449359807402897],[125,135,76,-0.04217854269954502],[125,135,77,-0.03978437132127932],[125,135,78,-0.03731206833752909],[125,135,79,-0.03476273751764436],[125,136,64,-0.0714576594357681],[125,136,65,-0.07005105706015202],[125,136,66,-0.06855995516644398],[125,136,67,-0.06698420519563231],[125,136,68,-0.06532375298945181],[125,136,69,-0.06357864110171796],[125,136,70,-0.06174901112574205],[125,136,71,-0.05983510603788866],[125,136,72,-0.057837272557247243],[125,136,73,-0.05575596352149137],[125,136,74,-0.05359174027875091],[125,136,75,-0.05134527509572484],[125,136,76,-0.04901735358187176],[125,136,77,-0.04660887712973183],[125,136,78,-0.04412086537138682],[125,136,79,-0.041554458651023585],[125,137,64,-0.07828479991662796],[125,137,65,-0.0768834226083629],[125,137,66,-0.07539582046481708],[125,137,67,-0.07382186492294807],[125,137,68,-0.07216152318550395],[125,137,69,-0.07041486053213186],[125,137,70,-0.06858204264611989],[125,137,71,-0.06666333795683754],[125,137,72,-0.06465911999784124],[125,137,73,-0.06256986978072221],[125,137,74,-0.06039617818452059],[125,137,75,-0.05813874836093402],[125,137,76,-0.05579839815515686],[125,137,77,-0.05337606254240457],[125,137,78,-0.050872796080129734],[125,137,79,-0.04828977537589585],[125,138,64,-0.0850455645126762],[125,138,65,-0.08364972108917135],[125,138,66,-0.08216594021436596],[125,138,67,-0.08059411305719533],[125,138,68,-0.0789342279102323],[125,138,69,-0.0771863725008124],[125,138,70,-0.075350736317353],[125,138,71,-0.07342761295093136],[125,138,72,-0.07141740245208927],[125,138,73,-0.06932061370293996],[125,138,74,-0.06713786680440326],[125,138,75,-0.06486989547879418],[125,138,76,-0.06251754948760457],[125,138,77,-0.06008179706452921],[125,138,78,-0.057563727363745376],[125,138,79,-0.054964552923410404],[125,139,64,-0.09173599786900499],[125,139,65,-0.09034598062435995],[125,139,66,-0.08886632713493536],[125,139,67,-0.08729694802907106],[125,139,68,-0.08563785240839916],[125,139,69,-0.0838891501592196],[125,139,70,-0.08205105427863724],[125,139,71,-0.08012388321552533],[125,139,72,-0.07810806322628494],[125,139,73,-0.0760041307454723],[125,139,74,-0.07381273477112626],[125,139,75,-0.07153463926501358],[125,139,76,-0.06917072556763781],[125,139,77,-0.0667219948280594],[125,139,78,-0.0641895704485389],[125,139,79,-0.061574700543963745],[125,140,64,-0.09835219659250372],[125,140,65,-0.09696828112249445],[125,140,66,-0.09549304554750004],[125,140,67,-0.09392641967430215],[125,140,68,-0.09226843312344946],[125,140,69,-0.09051921764110848],[125,140,70,-0.08867900942524876],[125,140,71,-0.08674815146623183],[125,140,72,-0.08472709590177063],[125,140,73,-0.08261640638633505],[125,140,74,-0.08041676047482826],[125,140,75,-0.07812895202076109],[125,140,76,-0.07575389358876405],[125,140,77,-0.07329261888148553],[125,140,78,-0.0707462851808891],[125,140,79,-0.06811617580391016],[125,141,64,-0.10489031344864874],[125,141,65,-0.10351275849454467],[125,141,66,-0.10204221560741189],[125,141,67,-0.10047863348332398],[125,141,68,-0.09882206196243759],[125,141,69,-0.09707265434152967],[125,141,70,-0.0952306697004559],[125,141,71,-0.09329647524259443],[125,141,72,-0.09127054864924355],[125,141,73,-0.08915348044804927],[125,141,74,-0.0869459763952859],[125,141,75,-0.08464885987221904],[125,141,76,-0.08226307429538826],[125,141,77,-0.07978968554086052],[125,141,78,-0.07722988438246481],[125,141,79,-0.07458498894396937],[125,142,64,-0.11134656161498435],[125,142,65,-0.10997560892667324],[125,142,66,-0.10851001759527645],[125,142,67,-0.10694975490903413],[125,142,68,-0.10529489061945274],[125,142,69,-0.10354559925473539],[125,142,70,-0.10170216244672603],[125,142,71,-0.09976497127143003],[125,142,72,-0.09773452860307752],[125,142,73,-0.09561145148180972],[125,142,74,-0.09339647349480962],[125,142,75,-0.09109044717110348],[125,142,76,-0.08869434638987639],[125,142,77,-0.08620926880234547],[125,142,78,-0.08363643826721012],[125,142,79,-0.08097720729963209],[125,143,64,-0.11771721899092491],[125,143,65,-0.11635309320983],[125,143,66,-0.11489269626509802],[125,143,67,-0.11333601373225355],[125,143,68,-0.11168313495717663],[125,143,69,-0.10993425537062362],[125,143,70,-0.10808967881585985],[125,143,71,-0.10614981988946715],[125,143,72,-0.10411520629529702],[125,143,73,-0.10198648121164033],[125,143,74,-0.0997644056714424],[125,143,75,-0.09744986095578978],[125,143,76,-0.09504385100050594],[125,143,77,-0.09254750481590801],[125,143,78,-0.08996207891973496],[125,143,79,-0.08728895978320794],[125,144,64,-0.12399863256405941],[125,144,65,-0.12264154112632797],[125,144,66,-0.12118656524986715],[125,144,67,-0.11963370848507693],[125,144,68,-0.11798307944675734],[125,144,69,-0.11623489412990573],[125,144,70,-0.11438947823823342],[125,144,71,-0.11244726952546491],[125,144,72,-0.1104088201493848],[125,144,73,-0.10827479903871662],[125,144,74,-0.10604599427264472],[125,144,75,-0.10372331547322111],[125,144,76,-0.10130779621048636],[125,144,77,-0.09880059642035599],[125,144,78,-0.09620300483528854],[125,144,79,-0.09351644142769078],[125,145,64,-0.130187222833116],[125,145,65,-0.12883735589355672],[125,145,66,-0.12738801152474788],[125,145,67,-0.12583921093226547],[125,145,68,-0.12419108166614712],[125,145,69,-0.12244385993814466],[125,145,70,-0.1205978929513063],[125,145,71,-0.11865364124196254],[125,145,72,-0.11661168103407116],[125,145,73,-0.11447270660600628],[125,145,74,-0.11223753266961345],[125,145,75,-0.10990709676175636],[125,145,76,-0.10748246164819686],[125,145,77,-0.104964817739856],[125,145,78,-0.10235548552146856],[125,145,79,-0.09965591799259221],[125,146,64,-0.13627948828725756],[125,146,65,-0.13493701866451213],[125,146,66,-0.13349349992754278],[125,146,67,-0.1319489706103596],[125,146,68,-0.1303035768565889],[125,146,69,-0.12855757473834595],[125,146,70,-0.1267113325870638],[125,146,71,-0.12476533333634277],[125,146,72,-0.1227201768767876],[125,146,73,-0.12057658242291003],[125,146,74,-0.11833539089191969],[125,146,75,-0.11599756729463095],[125,146,76,-0.1135642031383256],[125,146,77,-0.11103651884161991],[125,146,78,-0.1084158661613488],[125,146,79,-0.10570373063142635],[125,147,64,-0.14227200994187894],[125,147,65,-0.14093709308530422],[125,147,66,-0.13949957773659816],[125,147,67,-0.137959519424676],[125,147,68,-0.1363170825374076],[125,147,69,-0.13457254264226637],[125,147,70,-0.1327262888185693],[125,147,71,-0.13077882600136626],[125,147,72,-0.12873077733694993],[125,147,73,-0.12658288655006322],[125,147,74,-0.1243360203226247],[125,147,75,-0.12199117068420118],[125,147,76,-0.11954945741407108],[125,147,77,-0.11701213045491998],[125,147,78,-0.114380572338185],[125,147,79,-0.11165630062101028],[125,148,64,-0.1481614559310549],[125,148,65,-0.14683422990979833],[125,148,66,-0.14540287930630358],[125,148,67,-0.14386747630434293],[125,148,68,-0.14222820317926854],[125,148,69,-0.14048535462058875],[125,148,70,-0.13863934006577028],[125,148,71,-0.13669068604533618],[125,148,72,-0.13464003853921924],[125,148,73,-0.1324881653444543],[125,148,74,-0.1302359584540277],[125,148,75,-0.12788443644711778],[125,148,76,-0.12543474689055956],[125,148,77,-0.12288816875158448],[125,148,78,-0.12024611482185255],[125,148,79,-0.11751013415272715],[125,149,64,-0.15394458615633255],[125,149,65,-0.15262517167107958],[125,149,66,-0.15120013075987815],[125,149,67,-0.1496695519150637],[125,149,68,-0.1480336349355882],[125,149,69,-0.14629269325165917],[125,149,70,-0.14444715626025573],[125,149,71,-0.14249757167158317],[125,149,72,-0.14044460786643598],[125,149,73,-0.13828905626454646],[125,149,74,-0.1360318337037404],[125,149,75,-0.1336739848301277],[125,149,76,-0.13121668449917023],[125,149,77,-0.1286612401876729],[125,149,78,-0.1260090944167095],[125,149,79,-0.12326182718544942],[125,150,64,-0.15961825699201537],[125,150,65,-0.15830675740989064],[125,150,66,-0.15688815473959028],[125,150,67,-0.15536255342975847],[125,150,68,-0.15373017043224457],[125,150,69,-0.15199133752893412],[125,150,70,-0.15014650366911042],[125,150,71,-0.14819623731741505],[125,150,72,-0.1461412288123738],[125,150,73,-0.1439822927355613],[125,150,74,-0.14172037029123197],[125,150,75,-0.13935653169664497],[125,150,76,-0.13689197858291835],[125,150,77,-0.13432804640646756],[125,150,78,-0.13166620687103459],[125,150,79,-0.1289080703602704],[125,151,64,-0.165179426047104],[125,151,65,-0.16387592746020496],[125,151,66,-0.16246387521457561],[125,151,67,-0.1609433893572475],[125,151,68,-0.15931470361575972],[125,151,69,-0.1575781677272976],[125,151,70,-0.1557342497780282],[125,151,71,-0.15378353855270177],[125,151,72,-0.1517267458944802],[125,151,73,-0.14956470907507502],[125,151,74,-0.14729839317501303],[125,151,75,-0.1449288934742623],[125,151,76,-0.1424574378530553],[125,151,77,-0.139885389202957],[125,151,78,-0.1372142478481948],[125,151,79,-0.13444565397720376],[125,152,64,-0.17062515698357184],[125,152,65,-0.16932972829161763],[125,152,66,-0.16792432234593346],[125,152,67,-0.16640907442865582],[125,152,68,-0.16478423465962355],[125,152,69,-0.16305017032793456],[125,152,70,-0.16120736823337212],[125,152,71,-0.15925643703776904],[125,152,72,-0.15719810962627767],[125,152,73,-0.15503324547861796],[125,152,74,-0.15276283305013372],[125,152,75,-0.15038799216287757],[125,152,76,-0.14790997640657078],[125,152,77,-0.1453301755494818],[125,152,78,-0.14265011795923854],[125,152,79,-0.13987147303353387],[125,153,64,-0.17595262439115256],[125,153,65,-0.1746653174087257],[125,153,66,-0.1732666374092764],[125,153,67,-0.1717567345417127],[125,153,68,-0.17013587492894022],[125,153,69,-0.16840444300193036],[125,153,70,-0.16656294384334536],[125,153,71,-0.1646120055407828],[125,153,72,-0.1625523815496075],[125,153,73,-0.1603849530654472],[125,153,74,-0.15811073140617582],[125,153,75,-0.15573086040361162],[125,153,76,-0.1532466188047712],[125,153,77,-0.15065942268272614],[125,153,78,-0.14797082785707505],[125,153,79,-0.14518253232399392],[125,154,64,-0.18115911871875578],[125,154,65,-0.17987996830761932],[125,154,66,-0.17848807777484932],[125,154,67,-0.17698361176306832],[125,154,68,-0.17536685200351476],[125,154,69,-0.17363819965271454],[125,154,70,-0.1717981776383981],[125,154,71,-0.16984743301473204],[125,154,72,-0.16778673932682842],[125,154,73,-0.1656169989846098],[125,154,74,-0.1633392456458519],[125,154,75,-0.16095464660863612],[125,154,76,-0.15846450521304645],[125,154,77,-0.15587026325216335],[125,154,78,-0.15317350339236246],[125,154,79,-0.15037595160288442],[125,155,64,-0.18624205126224247],[125,155,65,-0.184971075489212],[125,155,66,-0.18358602194495344],[125,155,67,-0.18208706938835373],[125,155,68,-0.18047451475911114],[125,155,69,-0.178748775517086],[125,155,70,-0.1769103919906012],[125,155,71,-0.17496002973375369],[125,155,72,-0.17289848189270585],[125,155,73,-0.17072667158103216],[125,155,74,-0.1684456542639482],[125,155,75,-0.16605662015164402],[125,155,76,-0.1635608966015668],[125,155,77,-0.1609599505296977],[125,155,78,-0.1582553908308394],[125,155,79,-0.1554489708078688],[125,156,64,-0.19119895920870245],[125,156,65,-0.18993615952955256],[125,156,66,-0.18855797464880986],[125,156,67,-0.18706459706012635],[125,156,68,-0.1854563385070147],[125,156,69,-0.18373363232494966],[125,156,70,-0.18189703579212435],[125,156,71,-0.1799472324889302],[125,156,72,-0.1778850346661256],[125,156,73,-0.17571138562176947],[125,156,74,-0.17342736208674492],[125,156,75,-0.17103417661909848],[125,156,76,-0.16853318000703787],[125,156,77,-0.16592586368063333],[125,156,78,-0.16321386213223676],[125,156,79,-0.16039895534558002],[125,157,64,-0.19602751073735503],[125,157,65,-0.1947728722072425],[125,157,66,-0.19340157199499308],[125,157,67,-0.19191381594382828],[125,157,68,-0.1903099301920409],[125,157,69,-0.18859036351790237],[125,157,70,-0.18675568969294587],[125,157,71,-0.1848066098436899],[125,157,72,-0.18274395482176875],[125,157,73,-0.18056868758254807],[125,157,74,-0.17828190557204593],[125,157,75,-0.17588484312239028],[125,157,76,-0.17337887385565187],[125,157,77,-0.17076551309610055],[125,157,78,-0.16804642029089545],[125,157,79,-0.16522340143917424],[125,158,64,-0.20072551017681595],[125,158,65,-0.1994790016876985],[125,158,66,-0.1981145866811702],[125,158,67,-0.1966324839614939],[125,158,68,-0.19503303364870883],[125,158,69,-0.19331669952639297],[125,158,70,-0.1914840713975302],[125,158,71,-0.18953586744854545],[125,158,72,-0.1874729366214719],[125,158,73,-0.18529626099433183],[125,158,74,-0.18300695816955226],[125,158,75,-0.18060628367063936],[125,158,76,-0.17809563334696188],[125,158,77,-0.17547654578667693],[125,158,78,-0.1727507047378274],[125,158,79,-0.16991994153755585],[125,159,64,-0.205290903218874],[125,159,65,-0.20405247776440472],[125,159,66,-0.20269493326129162],[125,159,67,-0.2012185010833517],[125,159,68,-0.19962353491574114],[125,159,69,-0.19791051310561503],[125,159,70,-0.19608004102062504],[125,159,71,-0.19413285341532227],[125,159,72,-0.1920698168054299],[125,159,73,-0.18989193185006437],[125,159,74,-0.1876003357417262],[125,159,75,-0.1851963046042897],[125,159,76,-0.18268125589883244],[125,159,77,-0.1800567508373503],[125,159,78,-0.17732449680437123],[125,159,79,-0.17448634978643163],[125,160,64,-0.20972178218886606],[125,160,65,-0.20849137715724642],[125,160,66,-0.20714067347032583],[125,160,67,-0.20566991467741247],[125,160,68,-0.20407946760897255],[125,160,69,-0.2023698247302146],[125,160,70,-0.2005416065022595],[125,160,71,-0.19859556375095822],[125,160,72,-0.19653258004332663],[125,160,73,-0.19435367407167214],[125,160,74,-0.19206000204523588],[125,160,75,-0.1896528600895795],[125,160,76,-0.1871336866535558],[125,160,77,-0.18450406492390914],[125,160,78,-0.181765725247525],[125,160,79,-0.1789205475612784],[125,161,64,-0.214016391372449],[125,161,65,-0.2127939288677161],[125,161,66,-0.21145002160632775],[125,161,67,-0.2099849249168384],[125,161,68,-0.20839901835246233],[125,161,69,-0.20669280804760748],[125,161,70,-0.20486692908174342],[125,161,71,-0.20292214785067542],[125,161,72,-0.2008593644451867],[125,161,73,-0.1986796150371276],[125,161,74,-0.19638407427277638],[125,161,75,-0.1939740576736939],[125,161,76,-0.1914510240449222],[125,161,77,-0.18881657789056183],[125,161,78,-0.18607247183675457],[125,161,79,-0.18322060906201998],[125,162,64,-0.21817313239885672],[125,162,65,-0.2169585195910907],[125,162,66,-0.21562134996994042],[125,162,67,-0.21416189024518184],[125,162,68,-0.2125805322679054],[125,162,69,-0.2108777953900033],[125,162,70,-0.20905432883076114],[125,162,71,-0.207110914050616],[125,162,72,-0.20504846713204405],[125,162,73,-0.20286804116766122],[125,162,74,-0.2005708286553558],[125,162,75,-0.1981581639006802],[125,162,76,-0.1956315254263472],[125,162,77,-0.19299253838887054],[125,162,78,-0.19024297700237125],[125,162,79,-0.18738476696950324],[125,163,64,-0.22219056968077133],[125,163,65,-0.22098369918569927],[125,163,66,-0.21965319436144704],[125,163,67,-0.21819933289962679],[125,163,68,-0.2166225185224666],[125,163,69,-0.21492328334525856],[125,163,70,-0.21310229024568184],[125,163,71,-0.2111603352400655],[125,163,72,-0.20909834986655285],[125,163,73,-0.20691740357525024],[125,163,74,-0.20461870612517863],[125,163,75,-0.20220360998825926],[125,163,76,-0.19967361276017115],[125,163,77,-0.1970303595781303],[125,163,78,-0.19427564554560228],[125,163,79,-0.19141141816390672],[125,164,64,-0.22606743591056777],[125,164,65,-0.22486818619904647],[125,164,66,-0.22354425963514402],[125,164,67,-0.22209594449198522],[125,164,68,-0.22052365593479928],[125,164,69,-0.21882793838632064],[125,164,70,-0.21700946789884867],[125,164,71,-0.21506905453302583],[125,164,72,-0.2130076447432987],[125,164,73,-0.21082632377014487],[125,164,74,-0.20852631803888133],[125,164,75,-0.206108997565291],[125,164,76,-0.20357587836789914],[125,164,77,-0.20092862488695273],[125,164,78,-0.1981690524101153],[125,164,79,-0.1952991295048332],[125,165,64,-0.22980263761312436],[125,165,65,-0.2286108734509803],[125,165,66,-0.22729342531121743],[125,165,67,-0.22585059164764798],[125,165,68,-0.22428279863943867],[125,165,69,-0.22259060255945307],[125,165,70,-0.2207746921490399],[125,165,71,-0.21883589099932976],[125,165,72,-0.21677515993900476],[125,165,73,-0.21459359942862222],[125,165,74,-0.2122924519613143],[125,165,75,-0.20987310447008778],[125,165,76,-0.20733709074156992],[125,165,77,-0.2046860938362436],[125,165,78,-0.20192194851518896],[125,165,79,-0.1990466436732844],[125,166,64,-0.23339526075507],[125,166,65,-0.23221083367377982],[125,166,66,-0.23089975124500284],[125,166,67,-0.22946232170235636],[125,166,68,-0.22789898180944457],[125,166,69,-0.2262102992311178],[125,166,70,-0.2243969749109741],[125,166,71,-0.22245984545517006],[125,166,72,-0.22039988552250267],[125,166,73,-0.21821821022084287],[125,166,74,-0.21591607750974318],[125,166,75,-0.21349489060944393],[125,166,76,-0.21095620041612728],[125,166,77,-0.20830170792345304],[125,166,78,-0.20553326665040328],[125,166,79,-0.20265288507538626],[125,167,64,-0.23684457641062573],[125,167,65,-0.235667325209315],[125,167,66,-0.23436248335377652],[125,167,67,-0.23293036845695314],[125,167,68,-0.23137142743744732],[125,167,69,-0.2296862388936649],[125,167,70,-0.2278755154840102],[125,167,71,-0.22594010631319505],[125,167,72,-0.2238809993246278],[125,167,73,-0.22169932369896184],[125,167,74,-0.21939635225862186],[125,167,75,-0.21697350387854109],[125,167,76,-0.21443234590294702],[125,167,77,-0.21177459656824327],[125,167,78,-0.20900212743200275],[125,167,79,-0.20611696580802563],[125,168,64,-0.2401500464838544],[125,168,65,-0.2389797977630962],[125,168,66,-0.237681059400902],[125,168,67,-0.23625415798992944],[125,168,68,-0.2346995501749124],[125,168,69,-0.23301782502965063],[125,168,70,-0.23120970643986605],[125,168,71,-0.22927605549199093],[125,168,72,-0.227217872867849],[125,168,73,-0.22503630124531337],[125,168,74,-0.22273262770475954],[125,168,75,-0.22030828614154196],[125,168,76,-0.21776485968433834],[125,168,77,-0.21510408311940254],[125,168,78,-0.21232784532074678],[125,168,79,-0.20943819168620625],[125,169,64,-0.24331132948740897],[125,169,65,-0.2421478982153027],[125,169,66,-0.2408551148374135],[125,169,67,-0.239433314527852],[125,169,68,-0.2378829632297137],[125,169,69,-0.23620466003486784],[125,169,70,-0.23439913956943803],[125,169,71,-0.23246727438503767],[125,169,72,-0.23041007735572494],[125,169,73,-0.2282287040807559],[125,169,74,-0.22592445529296057],[125,169,75,-0.22349877927296546],[125,169,76,-0.22095327426910738],[125,169,77,-0.2182896909230816],[125,169,78,-0.21550993470134372],[125,169,79,-0.2126160683322179],[125,170,64,-0.24632828637786486],[125,170,65,-0.24517147648887516],[125,170,66,-0.24388448870112844],[125,170,67,-0.24246766637376393],[125,170,68,-0.24092148432210259],[125,170,69,-0.23924655120018135],[125,170,70,-0.2374436118888117],[125,170,71,-0.2355135498892258],[125,170,72,-0.2334573897222756],[125,170,73,-0.23127629933326554],[125,170,74,-0.22897159250223453],[125,170,75,-0.22654473125992436],[125,170,76,-0.22399732830926855],[125,170,77,-0.22133114945245047],[125,170,78,-0.21854811602354662],[125,170,79,-0.21565030732670842],[125,171,64,-0.24920098644745448],[125,171,65,-0.24805059147449116],[125,171,66,-0.24676922957310188],[125,171,67,-0.24535725189336943],[125,171,68,-0.24381514169888763],[125,171,69,-0.24214351675197887],[125,171,70,-0.240343131704278],[125,171,71,-0.2384148804927474],[125,171,72,-0.23635979874108293],[125,171,73,-0.23417906616659534],[125,171,74,-0.23187400899238642],[125,171,75,-0.22944610236504714],[125,171,76,-0.2268969727777228],[125,171,77,-0.2242284004985846],[125,171,78,-0.22144232200473113],[125,171,79,-0.21854083242146827],[125,172,64,-0.25192971327231595],[125,172,65,-0.25078551701253426],[125,172,66,-0.2495096015915389],[125,172,67,-0.24810232555912182],[125,172,68,-0.24656418020594062],[125,172,69,-0.24489579195135414],[125,172,70,-0.24309792473647163],[125,172,71,-0.24117148242248287],[125,172,72,-0.2391175111942314],[125,172,73,-0.23693720196910972],[125,172,74,-0.23463189281110175],[125,172,75,-0.23220307135019558],[125,172,76,-0.22965237720701293],[125,172,77,-0.22698160442269577],[125,172,78,-0.22419270389407087],[125,172,79,-0.22128778581404518],[125,173,64,-0.2545149707173029],[125,173,65,-0.2533767479321063],[125,173,66,-0.2521060905232102],[125,173,67,-0.250703364052254],[125,173,68,-0.2491690674190724],[125,173,69,-0.2475038352520701],[125,173,70,-0.24570844030367422],[125,173,71,-0.24378379585092014],[125,173,72,-0.24173095810114287],[125,173,73,-0.23955112860284555],[125,173,74,-0.2372456566615747],[125,173,75,-0.234816041761023],[125,173,76,-0.23226393598920592],[125,173,77,-0.2295911464697563],[125,173,78,-0.22679963779835233],[125,173,79,-0.2238915344842335],[125,174,64,-0.2569574889972198],[125,174,65,-0.2558250061469437],[125,174,66,-0.25455940989223313],[125,174,67,-0.2531610724226234],[125,174,68,-0.251630499833145],[125,174,69,-0.24996833451716094],[125,174,70,-0.24817535756414777],[125,174,71,-0.24625249116247594],[125,174,72,-0.24420080100716124],[125,174,73,-0.24202149871266132],[125,174,74,-0.23971594423054177],[125,174,75,-0.2372856482722393],[125,174,76,-0.23473227473676272],[125,174,77,-0.23205764314337884],[125,174,78,-0.2292637310692962],[125,174,79,-0.2263526765923065],[125,175,64,-0.2592582307945569],[125,175,65,-0.2581312468083151],[125,175,66,-0.25687050716629956],[125,175,67,-0.25547639030644187],[125,175,68,-0.25394940910949626],[125,175,69,-0.25229021329425483],[125,175,70,-0.250499591817576],[125,175,71,-0.24857847527929466],[125,175,72,-0.2465279383319685],[125,175,73,-0.244349202095549],[125,175,74,-0.2420436365767954],[125,175,75,-0.23961276309365764],[125,175,76,-0.23705825670447433],[125,175,77,-0.23438194864202488],[125,175,78,-0.2315858287524607],[125,175,79,-0.22867204793906037],[125,176,64,-0.26141839743378836],[125,176,65,-0.2602966645149616],[125,176,66,-0.25904057000040204],[125,176,67,-0.25765049820194996],[125,176,68,-0.2561269683817333],[125,176,69,-0.25447063714967144],[125,176,70,-0.2526823008656709],[125,176,71,-0.2507628980465839],[125,176,72,-0.24871351177788847],[125,176,73,-0.24653537213017218],[125,176,74,-0.24422985858024182],[125,176,75,-0.24179850243708412],[125,176,76,-0.23924298927252197],[125,176,77,-0.23656516135660988],[125,176,78,-0.23376702009778605],[125,176,79,-0.23085072848773414],[125,177,64,-0.26343943511209855],[125,177,65,-0.26232269957994603],[125,177,66,-0.26107103253793706],[125,177,67,-0.25968482380291],[125,177,68,-0.25816459861976826],[125,177,69,-0.25651102006117144],[125,177,70,-0.25472489143181465],[125,177,71,-0.2528071586773548],[125,177,72,-0.2507589127979504],[125,177,73,-0.2485813922664959],[125,177,74,-0.24627598545136786],[125,177,75,-0.243844233043915],[125,177,76,-0.24128783049053237],[125,177,77,-0.23860863042936398],[125,177,78,-0.23580864513165012],[125,177,79,-0.23289004894767873],[125,178,64,-0.26532304118661],[125,178,65,-0.2642110443544845],[125,178,66,-0.26296358176924706],[125,178,67,-0.2615810483899845],[125,178,68,-0.2600639750521647],[125,178,69,-0.2584130308694188],[125,178,70,-0.2566290256398086],[125,178,71,-0.2547129122566396],[125,178,72,-0.25266578912378135],[125,178,73,-0.25048890257558143],[125,178,74,-0.24818364930118975],[125,178,75,-0.2457515787735205],[125,178,76,-0.2431943956826983],[125,178,77,-0.24051396237402656],[125,178,78,-0.23771230129050436],[125,178,79,-0.23479159741983469],[125,179,64,-0.26707117051817153],[125,179,65,-0.2659636496088176],[125,179,66,-0.2647201639476686],[125,179,67,-0.2633411132800594],[125,179,68,-0.261827033646855],[125,179,69,-0.2601785997882221],[125,179,70,-0.2583966275517874],[125,179,71,-0.25648207630524644],[125,179,72,-0.2544360513533864],[125,179,73,-0.2522598063596049],[125,179,74,-0.24995474577174392],[125,179,75,-0.24752242725246598],[125,179,76,-0.24496456411402023],[125,179,77,-0.24228302775743316],[125,179,78,-0.2394798501161528],[125,179,79,-0.2365572261040907],[125,180,64,-0.2686860418715684],[125,180,65,-0.2675827309699851],[125,180,66,-0.26634299106294135],[125,180,67,-0.2649672263333732],[125,180,68,-0.2634559776500882],[125,180,69,-0.26180992497341626],[125,180,70,-0.26002988976515995],[125,180,71,-0.2581168374029099],[125,180,72,-0.25607187959868083],[125,180,73,-0.25389627682196014],[125,180,74,-0.2515914407269779],[125,180,75,-0.24915893658443744],[125,180,76,-0.24660048571753945],[125,180,77,-0.2439179679423512],[125,180,78,-0.24111342401253144],[125,180,79,-0.2381890580683731],[125,181,64,-0.2701701443722506],[125,181,65,-0.2690707754165984],[125,181,66,-0.26783454737208034],[125,181,67,-0.26646186851855636],[125,181,68,-0.26495328418371145],[125,181,69,-0.263309479150478],[125,181,70,-0.261531280068676],[125,181,71,-0.25961965787093677],[125,181,72,-0.2575757301928676],[125,181,73,-0.2554007637975434],[125,181,74,-0.253096177004144],[125,181,75,-0.250663542120966],[125,181,76,-0.24810458788264955],[125,181,77,-0.24542120189166683],[125,181,78,-0.24261543306408706],[125,181,79,-0.23968949407957507],[125,182,64,-0.2715262440196019],[125,182,65,-0.2704305478306337],[125,182,66,-0.26919759598772797],[125,182,67,-0.2678278005355872],[125,182,68,-0.2663217109007944],[125,182,69,-0.26468001630089777],[125,182,70,-0.2629035481576353],[125,182,71,-0.2609932825143686],[125,182,72,-0.2589503424576832],[125,182,73,-0.256776000543242],[125,182,74,-0.2544716812257094],[125,182,75,-0.2520389632929735],[125,182,76,-0.24947958230451273],[125,182,77,-0.2467954330339439],[125,182,78,-0.24398857191577838],[125,182,79,-0.24106121949633297],[125,183,64,-0.2727573902566409],[125,183,65,-0.27166509760613866],[125,183,66,-0.2704351855238849],[125,183,67,-0.26906806949657414],[125,183,68,-0.26756430269950426],[125,183,69,-0.26592457840720407],[125,183,70,-0.26414973240813877],[125,183,71,-0.26224074542355114],[125,183,72,-0.26019874553040667],[125,183,73,-0.2580250105885198],[125,183,74,-0.2557209706716844],[125,183,75,-0.2532882105030331],[125,183,76,-0.2507284718944742],[125,183,77,-0.24804365619024338],[125,183,78,-0.24523582671459],[125,183,79,-0.2423072112235568],[125,184,64,-0.2738669225962559],[125,184,65,-0.2727777653149531],[125,184,66,-0.2715506567991105],[125,184,67,-0.2701860156644518],[125,184,68,-0.26868439849531967],[125,184,69,-0.26704650225673565],[125,184,70,-0.2652731667104742],[125,184,71,-0.2633653768352139],[125,184,72,-0.26132426525072816],[125,184,73,-0.25915111464619744],[125,184,74,-0.2568473602124609],[125,184,75,-0.2544145920784404],[125,184,76,-0.2518545577515745],[125,184,77,-0.2491691645623083],[125,184,78,-0.24636048211265837],[125,184,79,-0.243430744728804],[125,185,64,-0.27485847730393265],[125,185,65,-0.2737721894294023],[125,185,66,-0.2725476495971647],[125,185,67,-0.2711852792495577],[125,185,68,-0.26968563805155044],[125,185,69,-0.268049426304124],[125,185,70,-0.26627748736160384],[125,185,71,-0.26437081005301855],[125,185,72,-0.2623305311074401],[125,185,73,-0.2601579375833888],[125,185,74,-0.2578544693021272],[125,185,75,-0.2554217212850636],[125,185,76,-0.25286144619511586],[125,185,77,-0.2501755567820725],[125,185,78,-0.24736612833197347],[125,185,79,-0.24443540112046258],[125,186,64,-0.2757359941369787],[125,186,65,-0.2746523131019659],[125,186,66,-0.27343010948508384],[125,186,67,-0.272069807264089],[125,186,68,-0.27057196886816215],[125,186,69,-0.26893729759248974],[125,186,70,-0.26716664001675194],[125,186,71,-0.2652609884275796],[125,186,72,-0.26322148324495154],[125,186,73,-0.2610494154525995],[125,186,74,-0.2587462290322571],[125,186,75,-0.25631352340196556],[125,186,76,-0.25375305585829233],[125,186,77,-0.2510667440224952],[125,186,78,-0.2482566682906574],[125,186,79,-0.2453250742877453],[125,187,64,-0.2765037231402242],[125,187,65,-0.2754223910019078],[125,187,66,-0.2742022946886784],[125,187,67,-0.272843860434425],[125,187,68,-0.27134765312888953],[125,187,69,-0.26971437873333426],[125,187,70,-0.26794488670007455],[125,187,71,-0.26604017239593714],[125,187,72,-0.26400137952961034],[125,187,73,-0.2618298025829635],[125,187,74,-0.25952688924615963],[125,187,75,-0.2570942428567883],[125,187,76,-0.25453362484285913],[125,187,77,-0.25184695716970396],[125,187,78,-0.2490363247908003],[125,187,79,-0.24610397810247442],[125,188,64,-0.27716623149825514],[125,188,65,-0.2760869962089152],[125,188,66,-0.274868783025503],[125,188,67,-0.27351202017136345],[125,188,68,-0.2720172747066918],[125,188,69,-0.2703852549451764],[125,188,70,-0.26861681287446815],[125,188,71,-0.2667129465805379],[125,188,72,-0.26467480267588417],[125,188,73,-0.262503678731675],[125,188,74,-0.26020102571364045],[125,188,75,-0.2577684504219476],[125,188,76,-0.2552077179348997],[125,188,77,-0.2525207540565009],[125,188,78,-0.24970964776790672],[125,188,79,-0.2467766536827145],[125,189,64,-0.2777284104441152],[125,189,65,-0.2766510271636866],[125,189,66,-0.27543447889523776],[125,189,67,-0.2740791955982128],[125,189,68,-0.2725857462274869],[125,189,69,-0.2709548411508793],[125,189,70,-0.26918733457045074],[125,189,71,-0.2672842269476603],[125,189,72,-0.26524666743233805],[125,189,73,-0.2630759562955538],[125,189,74,-0.2607735473662104],[125,189,75,-0.25834105047157796],[125,189,76,-0.25578023388162263],[125,189,77,-0.2530930267571657],[125,189,78,-0.25028152160189643],[125,189,79,-0.2473479767181871],[125,190,64,-0.2781954822245136],[125,190,65,-0.2771197146755082],[125,190,66,-0.2759046203275196],[125,190,67,-0.2745506306367749],[125,190,68,-0.2730583161922019],[125,190,69,-0.27142838913369716],[125,190,70,-0.2696617055741549],[125,190,71,-0.26775926802532324],[125,190,72,-0.26572222782744603],[125,190,73,-0.2635518875827777],[125,190,74,-0.2612497035927843],[125,190,75,-0.2588172882992642],[125,190,76,-0.2562564127292313],[125,190,77,-0.253569008943598],[125,190,78,-0.25075717248968565],[125,190,79,-0.24782316485750577],[125,191,64,-0.27857300712153066],[125,191,65,-0.27749862898680877],[125,191,66,-0.2762847860872112],[125,191,67,-0.2749319111512143],[125,191,68,-0.273440576157132],[125,191,69,-0.27181149475203814],[125,191,70,-0.2700455246744252],[125,191,71,-0.2681436701806651],[125,191,72,-0.2661070844752337],[125,191,73,-0.26393707214477957],[125,191,74,-0.26163509159585696],[125,191,75,-0.25920275749655375],[125,191,76,-0.2566418432218557],[125,191,77,-0.2539542833027869],[125,191,78,-0.25114217587935206],[125,191,79,-0.24820778515722652],[125,192,64,-0.27886689053081826],[125,192,65,-0.2777936868946863],[125,192,66,-0.27658090283710723],[125,192,67,-0.2752289721498027],[125,192,68,-0.27373846797260515],[125,192,69,-0.27211010521293955],[125,192,70,-0.2703447429690138],[125,192,71,-0.26844338695679726],[125,192,72,-0.26640719194073625],[125,192,73,-0.2642374641682971],[125,192,74,-0.2619356638081526],[125,192,75,-0.2595034073922411],[125,192,76,-0.25694247026154116],[125,192,77,-0.2542547890156056],[125,192,78,-0.2514424639658719],[125,192,79,-0.24850776159270282],[125,193,64,-0.27908339009629923],[125,193,65,-0.2780111589294161],[125,193,66,-0.2767992523580829],[125,193,67,-0.2754481050445501],[125,193,68,-0.2739582910799535],[125,193,69,-0.2723305264042547],[125,193,70,-0.2705656712298812],[125,193,71,-0.26866473246912814],[125,193,72,-0.2666288661652887],[125,193,73,-0.26445937992758983],[125,193,74,-0.26215773536975706],[125,193,75,-0.2597255505524335],[125,193,76,-0.25716460242930017],[125,193,77,-0.2544768292969357],[125,193,78,-0.25166433324843707],[125,193,79,-0.2487293826307564],[125,194,64,-0.2792291229013577],[125,194,65,-0.2781576765899323],[125,194,66,-0.27694647882667545],[125,194,67,-0.27559596496871563],[125,194,68,-0.27410670986678976],[125,194,69,-0.27247943028555566],[125,194,70,-0.27071498732759425],[125,194,71,-0.26881438886115827],[125,194,72,-0.266778791951636],[125,194,73,-0.26460950529680827],[125,194,74,-0.2623079916657193],[125,194,75,-0.25987587034139104],[125,194,76,-0.25731491956722163],[125,194,77,-0.25462707899711345],[125,194,78,-0.2518144521493474],[125,194,79,-0.24887930886415732],[125,195,64,-0.27931107271653965],[125,195,65,-0.27824023963629574],[125,195,66,-0.2770295961501159],[125,195,67,-0.2756795781522082],[125,195,68,-0.2741907610806019],[125,195,69,-0.2725638623377554],[125,195,70,-0.27079974371483884],[125,195,71,-0.2688994138197579],[125,195,72,-0.26686403050887864],[125,195,73,-0.26469490332253554],[125,195,74,-0.26239349592414607],[125,195,75,-0.25996142854315474],[125,195,76,-0.25740048042165287],[125,195,77,-0.25471259226471743],[125,195,78,-0.251899868694486],[125,195,79,-0.2489645807079205],[125,196,64,-0.2793365973037286],[125,196,65,-0.2782662234391201],[125,196,66,-0.2770559953587812],[125,196,67,-0.27570634935485117],[125,196,68,-0.27421786130063364],[125,196,69,-0.27259124907142573],[125,196,70,-0.2708273749690132],[125,196,71,-0.2689272481498982],[125,196,72,-0.2668920270572238],[125,196,73,-0.26472302185646945],[125,196,74,-0.2624216968747496],[125,196,75,-0.2599896730439304],[125,196,76,-0.257428730347419],[125,196,77,-0.2547408102706594],[125,196,78,-0.2519280182553596],[125,196,79,-0.24899262615740037],[125,197,64,-0.27931343577683987],[125,197,65,-0.27824338638599677],[125,197,66,-0.2770334520561053],[125,197,67,-0.27568406935755074],[125,197,68,-0.2741958144680935],[125,197,69,-0.2725694055938507],[125,197,70,-0.27080570539394433],[125,197,71,-0.26890572340887475],[125,197,72,-0.2668706184925831],[125,197,73,-0.2647017012482852],[125,197,74,-0.26240043646789624],[125,197,75,-0.259968445575275],[125,197,76,-0.25740750907312926],[125,197,77,-0.254719568993627],[125,197,78,-0.25190673135273167],[125,197,79,-0.2489712686082125],[125,198,64,-0.27924971601899884],[125,198,65,-0.2781798773448835],[125,198,66,-0.2769701339259155],[125,198,67,-0.27562092251133385],[125,198,68,-0.2741328194746594],[125,198,69,-0.27250654323477996],[125,198,70,-0.2707429566806967],[125,198,71,-0.2688430695999914],[125,198,72,-0.2668080411109821],[125,198,73,-0.26463918209864445],[125,198,74,-0.2623379576541205],[125,198,75,-0.2599059895180448],[125,198,76,-0.25734505852752754],[125,198,77,-0.2546571070668404],[125,198,78,-0.2518442415218223],[125,198,79,-0.24890873473795772],[125,199,64,-0.279153962156219],[125,199,65,-0.27808424318447167],[125,199,66,-0.276874608297214],[125,199,67,-0.275525494344271],[125,199,68,-0.27403747780929333],[125,199,69,-0.2724112772309004],[125,199,70,-0.27064775562748233],[125,199,71,-0.26874792292572125],[125,199,72,-0.26671293839279964],[125,199,73,-0.2645441130723706],[125,199,74,-0.26224291222411833],[125,199,75,-0.25981095776712637],[125,199,76,-0.2572500307269091],[125,199,77,-0.2545620736861379],[125,199,78,-0.2517491932390885],[125,199,79,-0.24881366244975878],[125,200,64,-0.27903510208757754],[125,200,65,-0.27796543635153637],[125,200,66,-0.27675584976639533],[125,200,67,-0.27540677922628065],[125,200,68,-0.2739188012633613],[125,200,69,-0.27229263446901986],[125,200,70,-0.27052914191867705],[125,200,71,-0.26862933360033925],[125,200,72,-0.26659436884682985],[125,200,73,-0.26442555877178164],[125,200,74,-0.26212436870921796],[125,200,75,-0.2596924206569444],[125,200,76,-0.2571314957235975],[125,200,77,-0.25444353657939134],[125,200,78,-0.25163064991058315],[125,200,79,-0.24869510887760904],[125,201,64,-0.2789024750718857],[125,201,65,-0.2778328225052553],[125,201,66,-0.2766232478769036],[125,201,67,-0.27527418809181714],[125,201,68,-0.2737862196940628],[125,201,69,-0.272160061287964],[125,201,70,-0.27039657596293354],[125,201,71,-0.2684967737220251],[125,201,72,-0.2664618139141708],[125,201,73,-0.26429300767018127],[125,201,74,-0.2619918203423284],[125,201,75,-0.25955987394774593],[125,201,76,-0.25699894961548053],[125,201,77,-0.2543109900372452],[125,201,78,-0.2514981019218877],[125,201,79,-0.24856255845353037],[125,202,64,-0.27876522920971025],[125,202,65,-0.27769557420649527],[125,202,66,-0.2764859972120135],[125,202,67,-0.27513693513164306],[125,202,68,-0.2736489645097576],[125,202,69,-0.2720228039508997],[125,202,70,-0.2702593165446101],[125,202,71,-0.26835951229397903],[125,202,72,-0.2663245505478793],[125,202,73,-0.2641557424369634],[125,202,74,-0.2618545533132465],[125,202,75,-0.2594226051935006],[125,202,76,-0.25686167920630654],[125,202,77,-0.25417371804280187],[125,202,78,-0.25136082841114826],[125,202,79,-0.24842528349466908],[125,203,64,-0.27862371347107673],[125,203,65,-0.2775540091028815],[125,203,66,-0.27634438453320653],[125,203,67,-0.27499527666973633],[125,203,68,-0.2735072620571709],[125,203,69,-0.2718810592983537],[125,203,70,-0.2701175314790525],[125,203,71,-0.2682176885964628],[125,203,72,-0.2661826899913933],[125,203,73,-0.2640138467842136],[125,203,74,-0.2617126243143896],[125,203,75,-0.25928064458382705],[125,203,76,-0.2567196887038762],[125,203,77,-0.25403169934602754],[125,203,78,-0.2512187831963312],[125,203,79,-0.24828321341348258],[125,204,64,-0.27847150070634885],[125,204,65,-0.27740162690193393],[125,204,66,-0.27619183903737554],[125,204,67,-0.2748425740284186],[125,204,68,-0.2733544084210311],[125,204,69,-0.2717280608123671],[125,204,70,-0.2699643942753852],[125,204,71,-0.26806441878718723],[125,204,72,-0.2660292936610382],[125,204,73,-0.2638603299821477],[125,204,74,-0.26155899304703656],[125,204,75,-0.2591269048067131],[125,204,76,-0.25656584631350565],[125,204,77,-0.2538777601715898],[125,204,78,-0.2510647529912341],[125,204,79,-0.24812909784671333],[125,205,64,-0.2783023060269907],[125,205,65,-0.2772320717208455],[125,205,66,-0.27602193641721073],[125,205,67,-0.27467233704931293],[125,205,68,-0.2731838501661409],[125,205,69,-0.2715571943530647],[125,205,70,-0.26979323265610555],[125,205,71,-0.2678929750099235],[125,205,72,-0.2658575806694845],[125,205,73,-0.26368836064548673],[125,205,74,-0.26138678014336925],[125,205,75,-0.2589544610061296],[125,205,76,-0.2563931841607924],[125,205,77,-0.2537048920685737],[125,205,78,-0.25089169117875876],[125,205,79,-0.2479558543862468],[125,206,64,-0.2781101655204048],[125,206,65,-0.2770393119117701],[125,206,66,-0.27582857973885055],[125,206,67,-0.2744784059654807],[125,206,68,-0.2729893671464113],[125,206,69,-0.27136218184733274],[125,206,70,-0.26959771306854563],[125,206,71,-0.26769697067234477],[125,206,72,-0.2656611138140793],[125,206,73,-0.2634914533769678],[125,206,74,-0.26118945441049113],[125,206,75,-0.2587567385725904],[125,206,76,-0.2561950865755135],[125,206,77,-0.25350644063535066],[125,206,78,-0.250692906925282],[125,206,79,-0.24775675803248687],[125,207,64,-0.2778894294828641],[125,207,65,-0.27681763323225295],[125,207,66,-0.27560599255216744],[125,207,67,-0.27425494445392373],[125,207,68,-0.2727650655019266],[125,207,69,-0.2711370742327833],[125,207,70,-0.26937183357806127],[125,207,71,-0.26747035329075197],[125,207,72,-0.2654337923754041],[125,207,73,-0.26326346152200686],[125,207,74,-0.260960825543445],[125,207,75,-0.25852750581675144],[125,207,76,-0.2559652827280038],[125,207,77,-0.25327609812090335],[125,207,78,-0.2504620577490594],[125,207,79,-0.24752543373193014],[125,208,64,-0.2776347557106915],[125,208,65,-0.2765616320743961],[125,208,66,-0.27534871206026046],[125,208,67,-0.27399643274773844],[125,208,68,-0.2725053707160896],[125,208,69,-0.27087624446221226],[125,208,70,-0.2691099168221117],[125,208,71,-0.2672073973960667],[125,208,72,-0.26516984497745544],[125,208,73,-0.2629985699853241],[125,208,74,-0.2606950369005179],[125,208,75,-0.25826086670560133],[125,208,76,-0.2556978393284135],[125,208,77,-0.25300789608929763],[125,208,78,-0.25019314215202726],[125,208,79,-0.24725584897837993],[125,209,64,-0.2773411028496827],[125,209,65,-0.2762662087527532],[125,209,66,-0.2750515823481462],[125,209,67,-0.27369766080792046],[125,209,68,-0.2722050207328509],[125,209,69,-0.27057438056855265],[125,209,70,-0.26880660302522563],[125,209,71,-0.2669026975010854],[125,209,72,-0.2648638225094464],[125,209,73,-0.26269128810952924],[125,209,74,-0.2603865583408256],[125,209,75,-0.2579512536612367],[125,209,76,-0.25538715338883655],[125,209,77,-0.2526961981472984],[125,209,78,-0.24988049231500442],[125,209,79,-0.24694230647779436],[125,210,64,-0.2770037238027667],[125,210,65,-0.2759265608509499],[125,210,66,-0.2747097476706426],[125,210,67,-0.27335372155480997],[125,210,68,-0.27185905913400865],[125,210,69,-0.2702264787903127],[125,210,70,-0.26845684307484674],[125,210,71,-0.2665511611289908],[125,210,72,-0.26451059110922026],[125,210,73,-0.2623364426156597],[125,210,74,-0.2600301791241729],[125,210,75,-0.25759342042221745],[125,210,76,-0.2550279450483073],[125,210,77,-0.2523356927351206],[125,210,78,-0.24951876685628183],[125,210,79,-0.24657943687676198],[125,211,64,-0.2766181591959147],[125,211,65,-0.27553817662704105],[125,211,66,-0.27431864579945686],[125,211,67,-0.2729600041591933],[125,211,68,-0.27146282837659486],[125,211,69,-0.2698278367575101],[125,211,70,-0.2680558916580713],[125,211,71,-0.2661480019031268],[125,211,72,-0.2641053252082899],[125,211,73,-0.26192917060568266],[125,211,74,-0.2596210008731996],[125,211,75,-0.2571824349675138],[125,211,76,-0.25461525046067435],[125,211,77,-0.2519213859803314],[125,211,78,-0.24910294365361574],[125,211,79,-0.24616219155461638],[125,212,64,-0.2761802309022955],[125,212,65,-0.2750968284775992],[125,212,66,-0.2738740014294758],[125,212,67,-0.2725121873930537],[125,212,68,-0.2710119630903435],[125,212,69,-0.2693740467381034],[125,212,70,-0.2675993004592746],[125,212,71,-0.26568873269804283],[125,212,72,-0.2636435006384976],[125,212,73,-0.26146491262696037],[125,212,74,-0.25915443059781174],[125,212,75,-0.256713672503039],[125,212,76,-0.25414441474535043],[125,212,77,-0.25144859461489666],[125,212,78,-0.24862831272962083],[125,212,79,-0.2456858354791891],[125,213,64,-0.27568603562466276],[125,213,65,-0.2745985664605245],[125,213,66,-0.27337181964424306],[125,213,67,-0.27200623303996097],[125,213,68,-0.2705023834352265],[125,213,69,-0.2688609889449022],[125,213,70,-0.2670829114186106],[125,213,71,-0.26516915885178505],[125,213,72,-0.2631208878002853],[125,213,73,-0.2609394057986607],[125,213,74,-0.25862617378188024],[125,213,75,-0.25618280851075903],[125,213,76,-0.25361108500092366],[125,213,77,-0.25091293895535716],[125,213,78,-0.24809046920054656],[125,213,79,-0.2451459401261823],[125,214,64,-0.27513193853599693],[125,214,65,-0.2740397118765945],[125,214,66,-0.27280837944064773],[125,214,67,-0.27143837936512005],[125,214,68,-0.26993028851908263],[125,214,69,-0.26828482490298133],[125,214,70,-0.26650285005141117],[125,214,71,-0.2645853714394607],[125,214,72,-0.2625335448925933],[125,214,73,-0.2603486770001403],[125,214,74,-0.2580322275322334],[125,214,75,-0.2555858118603971],[125,214,76,-0.25301120338165195],[125,214,77,-0.2503103359461637],[125,214,78,-0.24748530628846377],[125,214,79,-0.24453837646218957],[125,215,64,-0.2745145669783835],[125,215,65,-0.27341685090973944],[125,215,66,-0.27218022731280334],[125,215,67,-0.27080513464506173],[125,215,68,-0.26929214987531536],[125,215,69,-0.26764199087758056],[125,215,70,-0.2658555188284619],[125,215,71,-0.2639337406080593],[125,215,72,-0.2618778112043716],[125,215,73,-0.25968903612127847],[125,215,74,-0.2573688737899228],[125,215,75,-0.25491893798371734],[125,215,76,-0.25234100023682404],[125,215,77,-0.2496369922661439],[125,215,78,-0.24680900839683928],[125,215,79,-0.2438593079913416],[125,216,64,-0.27383080422014405],[125,216,65,-0.272726828326056],[125,216,66,-0.2714841708951369],[125,216,67,-0.2701032707569919],[125,216,68,-0.26858470500068377],[125,216,69,-0.26692919136250426],[125,216,70,-0.2651375906171758],[125,216,71,-0.2632109089725433],[125,216,72,-0.2611503004677219],[125,216,73,-0.2589570693747799],[125,216,74,-0.2566326726037802],[125,216,75,-0.2541787221114039],[125,216,76,-0.25159698731300306],[125,216,77,-0.24888939749812344],[125,216,78,-0.24605804424951716],[125,216,79,-0.24310518386559643],[125,217,64,-0.27307778327119314],[125,217,65,-0.2719667412315353],[125,217,66,-0.2707172726646585],[125,217,67,-0.2693298168277707],[125,217,68,-0.2678049509531525],[125,217,69,-0.2661433926289979],[125,217,70,-0.26434600218363347],[125,217,71,-0.26241378507318314],[125,217,72,-0.2603478942726386],[125,217,73,-0.2581496326704187],[125,217,74,-0.255820455466237],[125,217,75,-0.25336197257250626],[125,217,76,-0.2507759510191232],[125,217,77,-0.24806431736167323],[125,217,78,-0.2452291600930795],[125,217,79,-0.2422727320586452],[125,218,64,-0.27225288075665366],[125,218,65,-0.2711339328885354],[125,218,66,-0.269876843702445],[125,218,67,-0.26848205294255567],[125,218,68,-0.2669501380098379],[125,218,69,-0.2652818163351287],[125,218,70,-0.263477947755525],[125,218,71,-0.261539536894169],[125,218,72,-0.259467735543386],[125,218,73,-0.2572638450512559],[125,218,74,-0.2549293187114393],[125,218,75,-0.25246576415648747],[125,218,76,-0.24987494575447688],[125,218,77,-0.24715878700901206],[125,218,78,-0.2443193729626173],[125,218,79,-0.24135895260346718],[125,219,64,-0.27135371084871884],[125,219,65,-0.27022598659098906],[125,219,66,-0.2689604375143263],[125,219,67,-0.2675575039130982],[125,219,68,-0.266017763385037],[125,219,69,-0.26434193319566446],[125,219,70,-0.26253087264598174],[125,219,71,-0.26058558544348864],[125,219,72,-0.2585072220764981],[125,219,73,-0.25629708219182157],[125,219,74,-0.2539566169756503],[125,219,75,-0.251487431537859],[125,219,76,-0.2488912872995762],[125,219,77,-0.24617010438406028],[125,219,78,-0.24332596401090467],[125,219,79,-0.24036111089352274],[125,220,64,-0.2703781192567357],[125,220,65,-0.26924071959831797],[125,220,66,-0.26796584391074785],[125,220,67,-0.26655393310566433],[125,220,68,-0.2650055650083126],[125,220,69,-0.26332145671242],[125,220,70,-0.26150246693827095],[125,220,71,-0.25954959839404357],[125,220,72,-0.2574640001403745],[125,220,73,-0.2552469699582308],[125,220,74,-0.2528999567199065],[125,220,75,-0.25042456276337977],[125,220,76,-0.24782254626986489],[125,220,77,-0.24509582364460814],[125,220,78,-0.24224647190094228],[125,220,79,-0.23927673104755676],[125,221,64,-0.2693241772755508],[125,221,65,-0.2681761771281007],[125,221,66,-0.26689108294585373],[125,221,67,-0.2654693363286261],[125,221,68,-0.26391151536267987],[125,221,69,-0.2622183369651172],[125,221,70,-0.2603906592313976],[125,221,71,-0.2584294837860466],[125,221,72,-0.2563359581365161],[125,221,73,-0.2541113780302795],[125,221,74,-0.25175718981497985],[125,221,75,-0.24927499280186083],[125,221,76,-0.24666654163232404],[125,221,77,-0.24393374864765238],[125,221,78,-0.24107868626192264],[125,221,79,-0.23810358933805598],[125,222,64,-0.26819017589210536],[125,222,65,-0.26703062640747166],[125,222,66,-0.26573439891577066],[125,222,67,-0.2643019357797046],[125,222,68,-0.2627338153828761],[125,222,69,-0.2610307544627404],[125,222,70,-0.2591936104465957],[125,222,71,-0.2572233837906881],[125,222,72,-0.25512122032238516],[125,222,73,-0.2528884135855062],[125,222,74,-0.25052640718862196],[125,222,75,-0.24803679715656024],[125,222,76,-0.24542133428495427],[125,222,77,-0.2426819264978789],[125,222,78,-0.23982064120859437],[125,222,79,-0.2368397076833476],[125,223,64,-0.26697461995024363],[125,223,65,-0.2658025507832251],[125,223,66,-0.26449425441606444],[125,223,67,-0.2630501740528328],[125,223,68,-0.2614708884136806],[125,223,69,-0.2597571140553553],[125,223,70,-0.25790970769467647],[125,223,71,-0.2559296685350311],[125,223,72,-0.25381814059585517],[125,223,73,-0.2515764150451796],[125,223,74,-0.24920593253506174],[125,223,75,-0.2467082855401328],[125,223,76,-0.24408522069910144],[125,223,77,-0.24133864115925685],[125,223,78,-0.23847060892399208],[125,223,79,-0.23548334720329755],[125,224,64,-0.26567622237379207],[125,224,65,-0.26449064389067467],[125,224,66,-0.2631693244584201],[125,224,67,-0.2617127082046955],[125,224,68,-0.2601213742283409],[125,224,69,-0.2583960389064466],[125,224,70,-0.2565375582042897],[125,224,71,-0.2545469299881985],[125,224,72,-0.2524252963413063],[125,224,73,-0.25017394588227504],[125,224,74,-0.2477943160868099],[125,224,75,-0.24528799561219328],[125,224,76,-0.24265672662468174],[125,224,77,-0.23990240712980537],[125,224,78,-0.23702709330559313],[125,224,79,-0.23403300183867415],[125,225,64,-0.26429389844788453],[125,225,65,-0.2630938038812479],[125,225,66,-0.2617584906465269],[125,225,67,-0.2602884038809188],[125,225,68,-0.25868412310708466],[125,225,69,-0.25694636452575215],[125,225,70,-0.2550759833110763],[125,225,71,-0.25307397590882397],[125,225,72,-0.25094148233734526],[125,225,73,-0.24867978849141337],[125,225,74,-0.2462903284487501],[125,225,75,-0.24377468677947045],[125,225,76,-0.24113460085828575],[125,225,77,-0.23837196317950748],[125,225,78,-0.23548882367487367],[125,225,79,-0.23248739203414848],[125,226,64,-0.2628267601584977],[125,226,65,-0.2616111277087766],[125,226,66,-0.26026083541112566],[125,226,67,-0.2587763295018757],[125,226,68,-0.2571581899756723],[125,226,69,-0.2554071328625521],[125,226,70,-0.25352401250766854],[125,226,71,-0.2515098238537289],[125,226,72,-0.24936570472610797],[125,226,73,-0.2470929381207222],[125,226,74,-0.2446929544944736],[125,226,75,-0.24216733405850754],[125,226,76,-0.2395178090741158],[125,226,77,-0.2367462661513291],[125,226,78,-0.23385474855022403],[125,226,79,-0.23084545848489058],[125,227,64,-0.26127411059026173],[125,227,65,-0.26004190547455],[125,227,66,-0.2586756363042886],[125,227,67,-0.25717575050817243],[125,227,68,-0.2555428286040661],[125,227,69,-0.2537775864594862],[125,227,70,-0.2518808775546133],[125,227,71,-0.24985369524789625],[125,227,72,-0.2476971750442164],[125,227,73,-0.2454125968656906],[125,227,74,-0.24300138732492893],[125,227,75,-0.24046512200098447],[125,227,76,-0.2378055277178318],[125,227,77,-0.23502448482541616],[125,227,78,-0.23212402948329747],[125,227,79,-0.22910635594683637],[125,228,64,-0.25963543838251746],[125,228,65,-0.2583856148311032],[125,228,66,-0.257002360352903],[125,228,67,-0.25548612366578705],[125,228,68,-0.25383748586518007],[125,228,69,-0.25205716266686407],[125,228,70,-0.2501460066521818],[125,228,71,-0.24810500951570902],[125,228,72,-0.24593530431535693],[125,228,73,-0.2436381677249878],[125,228,74,-0.24121502228935843],[125,228,75,-0.23866743868162965],[125,228,76,-0.2359971379632757],[125,228,77,-0.23320599384644025],[125,228,78,-0.2302960349587576],[125,228,79,-0.22726944711059238],[125,229,64,-0.2579104122435776],[125,229,65,-0.2566419154446947],[125,229,66,-0.2552406584713113],[125,229,67,-0.2537070914308164],[125,229,68,-0.25204179605367016],[125,229,69,-0.2502454879174275],[125,229,70,-0.24831901867302597],[125,229,71,-0.24626337827340783],[125,229,72,-0.244079697204437],[125,229,73,-0.2417692487181956],[125,229,74,-0.2393334510684706],[125,229,75,-0.2367738697486732],[125,229,76,-0.23409221973202254],[125,229,77,-0.2312903677140412],[125,229,78,-0.22837033435738052],[125,229,79,-0.22533429653892845],[125,230,64,-0.25609887552326893],[125,230,65,-0.2548106435165538],[125,230,66,-0.25339035993318926],[125,230,67,-0.25183847637390844],[125,230,68,-0.25015557526484067],[125,230,69,-0.24834237206164445],[125,230,70,-0.24639971745575984],[125,230,71,-0.24432859958285114],[125,230,72,-0.2421301462334018],[125,230,73,-0.23980562706554376],[125,230,74,-0.23735645581993525],[125,230,75,-0.2347841925369264],[125,230,76,-0.23209054577584576],[125,230,77,-0.22927737483645572],[125,230,78,-0.22634669198259294],[125,230,79,-0.22330066466794918],[125,231,64,-0.2542008408437225],[125,231,65,-0.25289180636286224],[125,231,66,-0.25145146690262943],[125,231,67,-0.24988027566435145],[125,231,68,-0.24817881583363777],[125,231,69,-0.24634780276349866],[125,231,70,-0.24438808615943075],[125,231,71,-0.24230065226654185],[125,231,72,-0.24008662605867293],[125,231,73,-0.2377472734296059],[125,231,74,-0.2352840033861645],[125,231,75,-0.23269837024345297],[125,231,76,-0.2299920758220626],[125,231,77,-0.22716697164729405],[125,231,78,-0.22422506115041463],[125,231,79,-0.2211685018719015],[125,232,64,-0.25221648478835945],[125,232,65,-0.25088557705341885],[125,232,66,-0.2494241490243726],[125,232,67,-0.24783265561376022],[125,232,68,-0.2461116808336722],[125,232,69,-0.24426193995672252],[125,232,70,-0.24228428167882832],[125,232,71,-0.24017969028386454],[125,232,72,-0.237949287810158],[125,232,73,-0.2355943362189057],[125,232,74,-0.23311623956432348],[125,232,75,-0.23051654616577344],[125,232,76,-0.2277969507816977],[125,232,77,-0.22495929678540694],[125,232,78,-0.22200557834274282],[125,232,79,-0.2189379425915654],[125,233,64,-0.2501461426491659],[125,233,65,-0.24879228910908124],[125,233,66,-0.24730873807328613],[125,233,67,-0.24569594627945734],[125,233,68,-0.24395449863636687],[125,233,69,-0.2420851103615692],[125,233,70,-0.24008862912072537],[125,233,71,-0.2379660371686333],[125,233,72,-0.23571845349192688],[125,233,73,-0.23334713595353007],[125,233,74,-0.2308534834386703],[125,233,75,-0.22823903800270262],[125,233,76,-0.2255054870205695],[125,233,77,-0.2226546653379451],[125,233,78,-0.21968855742408433],[125,233,79,-0.21660929952632746],[125,234,64,-0.2479903032322145],[125,234,65,-0.24661243125794097],[125,234,66,-0.2451057226630451],[125,234,67,-0.24347063612750985],[125,234,68,-0.24170775753019214],[125,234,69,-0.2398178020620807],[125,234,70,-0.23780161634101038],[125,234,71,-0.2356601805279055],[125,234,72,-0.2333946104445117],[125,234,73,-0.23100615969270555],[125,234,74,-0.2284962217751827],[125,234,75,-0.22586633221778063],[125,234,76,-0.22311817069325557],[125,234,77,-0.22025356314656752],[125,234,78,-0.21727448392168947],[125,234,79,-0.21418305788989445],[125,235,64,-0.24574960372137677],[125,235,65,-0.24434664225017544],[125,235,66,-0.24281574301395703],[125,235,67,-0.24115736675535626],[125,235,68,-0.23937210039992107],[125,235,69,-0.237460659143792],[125,235,70,-0.23542388854264895],[125,235,71,-0.23326276660199974],[125,235,72,-0.2309784058687686],[125,235,73,-0.2285720555242755],[125,235,74,-0.226045103478406],[125,235,75,-0.22339907846522666],[125,235,76,-0.22063565213986902],[125,235,77,-0.21775664117673188],[125,235,78,-0.2147640093690214],[125,235,79,-0.21165986972957962],[125,236,64,-0.24342482460032888],[125,236,65,-0.24199570573168294],[125,236,66,-0.2404395857800392],[125,236,67,-0.23875692767413736],[125,236,68,-0.23694831946601957],[125,236,69,-0.2350144763919806],[125,236,70,-0.23295624293458506],[125,236,71,-0.2307745948858302],[125,236,72,-0.22847064141141382],[125,236,73,-0.22604562711619303],[125,236,74,-0.22350093411063887],[125,236,75,-0.22083808407853767],[125,236,76,-0.21805874034576622],[125,236,77,-0.215164709950186],[125,236,78,-0.2121579457126801],[125,236,79,-0.2090405483092802],[125,237,64,-0.24101688463280657],[125,237,65,-0.2395605451764521],[125,237,66,-0.23797817893529838],[125,237,67,-0.23627025115067857],[125,237,68,-0.234437351084121],[125,237,69,-0.2324801940504141],[125,237,70,-0.23039962345153353],[125,237,71,-0.22819661281150827],[125,237,72,-0.2258722678121844],[125,237,73,-0.22342782832997632],[125,237,74,-0.2208646704734043],[125,237,75,-0.2181843086216757],[125,237,76,-0.2153883974641313],[125,237,77,-0.2124787340406068],[125,237,78,-0.20945725978272844],[125,237,79,-0.2063260625560952],[125,238,64,-0.23852683590104162],[125,238,65,-0.23704221887760102],[125,238,66,-0.2354325867191479],[125,238,67,-0.23369840710905998],[125,238,68,-0.23184027060451617],[125,238,69,-0.22985889264052395],[125,238,70,-0.22775511553459482],[125,238,71,-0.22552991049214033],[125,238,72,-0.22318437961255289],[125,238,73,-0.22071975789605813],[125,238,74,-0.21813741525113617],[125,238,75,-0.21543885850277422],[125,238,76,-0.21262573340136648],[125,238,77,-0.20969982663231446],[125,238,78,-0.2066630678263467],[125,238,79,-0.20351753157050811],[125,239,64,-0.23595585890250814],[125,239,65,-0.234441914997213],[125,239,66,-0.23280400464109163],[125,239,67,-0.23104259809190197],[125,239,68,-0.22915828729179244],[125,239,69,-0.22715178784114287],[125,239,70,-0.2250239409728243],[125,239,71,-0.22277571552695796],[125,239,72,-0.22040820992613175],[125,239,73,-0.21792265415116507],[125,239,74,-0.2153204117172175],[125,239,75,-0.2126029816505033],[125,239,76,-0.2097720004654281],[125,239,77,-0.2068292441422046],[125,239,78,-0.2037766301049574],[125,239,79,-0.2006162192002774],[125,240,64,-0.2333052577048722],[125,240,65,-0.2317609466748628],[125,240,66,-0.23009375454456504],[125,240,67,-0.22830415428125705],[125,240,68,-0.22639273930450987],[125,240,69,-0.22436022542868916],[125,240,70,-0.22220745280564547],[125,240,71,-0.2199353878676663],[125,240,72,-0.2175451252706534],[125,240,73,-0.2150378898376133],[125,240,74,-0.21241503850225718],[125,240,75,-0.20967806225297392],[125,240,76,-0.20682858807699045],[125,240,77,-0.20386838090477521],[125,240,78,-0.20079934555470036],[125,240,79,-0.19762352867791555],[125,241,64,-0.23057645515922787],[125,241,65,-0.2290007471949178],[125,241,66,-0.2273032797300203],[125,241,67,-0.22548452857919876],[125,241,68,-0.22354508873500323],[125,241,69,-0.22148567627789217],[125,241,70,-0.21930713028619608],[125,241,71,-0.2170104147461024],[125,241,72,-0.21459662046161887],[125,241,73,-0.21206696696460936],[125,241,74,-0.20942280442469408],[125,241,75,-0.2066656155592792],[125,241,76,-0.2037970175435313],[125,241,77,-0.20081876392035014],[125,241,78,-0.19773274651035722],[125,241,79,-0.19454099732185237],[125,242,64,-0.22777098817150243],[125,242,65,-0.2261628652124934],[125,242,66,-0.22443414013713392],[125,242,67,-0.22258529174797725],[125,242,68,-0.22061691670918482],[125,242,69,-0.21852973142292864],[125,242,70,-0.216324573905481],[125,242,71,-0.2140024056630737],[125,242,72,-0.21156431356748207],[125,242,73,-0.20901151173142973],[125,242,74,-0.2063453433836011],[125,242,75,-0.20356728274353508],[125,242,76,-0.20067893689620686],[125,242,77,-0.19768204766635766],[125,242,78,-0.19457849349258438],[125,242,79,-0.19137029130114713],[125,243,64,-0.22489050303217073],[125,243,65,-0.22324896003820638],[125,243,66,-0.22148800758628107],[125,243,67,-0.21960812760989634],[125,243,68,-0.21760991854649703],[125,243,69,-0.21549409717912194],[125,243,70,-0.21326150047747927],[125,243,71,-0.2109130874385291],[125,243,72,-0.20844994092652758],[125,243,73,-0.20587326951263107],[125,243,74,-0.20318440931384307],[125,243,75,-0.2003848258315819],[125,243,76,-0.1974761157896735],[125,243,77,-0.19446000897182847],[125,243,78,-0.1913383700586192],[125,243,79,-0.18811320046390867],[125,244,64,-0.22193675080421738],[125,244,65,-0.22026079698166356],[125,244,66,-0.2184666610792131],[125,244,67,-0.21655482830684059],[125,244,68,-0.21452589897994745],[125,244,69,-0.21238059032513745],[125,244,70,-0.21011973828514496],[125,244,71,-0.20774429932299765],[125,244,72,-0.20525535222537017],[125,244,73,-0.20265409990522365],[125,244,74,-0.19994187120351903],[125,244,75,-0.19712012269027523],[125,244,76,-0.1941904404647854],[125,244,77,-0.19115454195504145],[125,244,78,-0.18801427771638746],[125,244,79,-0.18477163322935553],[125,245,64,-0.21891158276926737],[125,245,65,-0.21720024275360417],[125,245,66,-0.21537198215885722],[125,245,67,-0.21342728961937485],[125,245,68,-0.21136676743614646],[125,245,69,-0.20919113334559059],[125,245,70,-0.20690122228721153],[125,245,71,-0.20449798817020803],[125,245,72,-0.20198250563899411],[125,245,73,-0.19935597183772358],[125,245,74,-0.19661970817360386],[125,245,75,-0.19377516207927914],[125,245,76,-0.19082390877408362],[125,245,77,-0.18776765302422638],[125,245,78,-0.1846082309019227],[125,245,79,-0.18134761154342405],[125,246,64,-0.2158169459320326],[125,246,65,-0.2140692609268472],[125,246,66,-0.2122059503283904],[125,246,67,-0.2102275063455672],[125,246,68,-0.20813453337550014],[125,246,69,-0.20592774973422479],[125,246,70,-0.2036079893859608],[125,246,71,-0.20117620367104605],[125,246,72,-0.19863346303248963],[125,246,73,-0.19598095874124044],[125,246,74,-0.19322000461995192],[125,246,75,-0.19035203876552598],[125,246,76,-0.18737862527023685],[125,246,77,-0.1843014559414945],[125,246,78,-0.18112235202026417],[125,246,79,-0.17784326589809385],[125,247,64,-0.21265487858300547],[125,247,65,-0.21086990745597334],[125,247,66,-0.20897063852951492],[125,247,67,-0.20695756773946472],[125,247,68,-0.20483130169248653],[125,247,69,-0.20259255935758358],[125,247,70,-0.20024217375588238],[125,247,71,-0.19778109364878083],[125,247,72,-0.19521038522441303],[125,247,73,-0.19253123378253156],[125,247,74,-0.18974494541758313],[125,247,75,-0.18685294870026525],[125,247,76,-0.18385679635736085],[125,247,77,-0.18075816694991298],[125,247,78,-0.1775588665497556],[125,247,79,-0.17426083041435003],[125,248,64,-0.20942750591931558],[125,248,65,-0.20760432625565517],[125,248,66,-0.20566820867985114],[125,248,67,-0.20361965300913398],[125,248,68,-0.2014592681759274],[125,248,69,-0.19918777387909137],[125,248,70,-0.19680600223313238],[125,248,71,-0.1943148994154641],[125,248,72,-0.19171552731167918],[125,248,73,-0.1890090651589249],[125,248,74,-0.18619681118716436],[125,248,75,-0.18328018425860937],[125,248,76,-0.1802607255051195],[125,248,77,-0.17714009996363478],[125,248,78,-0.17392009820965004],[125,248,79,-0.17060263798869024],[125,249,64,-0.2061370357239085],[125,249,65,-0.2042747448377984],[125,249,66,-0.20230090726961014],[125,249,67,-0.2002160268744333],[125,249,68,-0.1980207150294222],[125,249,69,-0.19571569224370877],[125,249,70,-0.1933017897659618],[125,249,71,-0.19077995118967683],[125,249,72,-0.1881512340561583],[125,249,73,-0.18541681145528777],[125,249,74,-0.18257797362385642],[125,249,75,-0.1796361295417508],[125,249,76,-0.1765928085257874],[125,249,77,-0.17344966182125776],[125,249,78,-0.17020846419120061],[125,249,79,-0.16687111550335199],[125,250,64,-0.2027857541029704],[125,250,65,-0.2008834700074158],[125,250,66,-0.19887106101746777],[125,250,67,-0.19674903518443354],[125,250,68,-0.1945180064518638],[125,250,69,-0.1921786962230828],[125,250,70,-0.1897319349260359],[125,250,71,-0.18717866357554003],[125,250,72,-0.18451993533289512],[125,250,73,-0.18175691706295782],[125,250,74,-0.17889089088844567],[125,250,75,-0.17592325574177015],[125,250,76,-0.17285552891418698],[125,250,77,-0.16968934760233167],[125,250,78,-0.16642647045214964],[125,250,79,-0.16306877910017947],[125,251,64,-0.199376021281512],[125,251,65,-0.1974328836171474],[125,251,66,-0.19538107258555115],[125,251,67,-0.19322110059440334],[125,251,68,-0.1909535842779464],[125,251,69,-0.18857924602109932],[125,251,70,-0.18609891548054702],[125,251,71,-0.18351353110289603],[125,251,72,-0.18082414163985594],[125,251,73,-0.17803190766054033],[125,251,74,-0.1751381030606649],[125,251,75,-0.17214411656893336],[125,251,76,-0.16905145325040594],[125,251,77,-0.16586173600691168],[125,251,78,-0.1625767070745202],[125,251,79,-0.15919822951802787],[125,252,64,-0.19591026745727785],[125,252,65,-0.19392543838059317],[125,252,66,-0.1918334163537091],[125,252,67,-0.18963471830252576],[125,252,68,-0.18732996367883914],[125,252,69,-0.1849198759400167],[125,252,70,-0.18240528402530265],[125,252,71,-0.17978712382884265],[125,252,72,-0.17706643966938418],[125,252,73,-0.1742443857567545],[125,252,74,-0.1713222276548828],[125,252,75,-0.16830134374166783],[125,252,76,-0.1651832266654778],[125,252,77,-0.16196948479834938],[125,252,78,-0.15866184368589809],[125,252,79,-0.1552621474938941],[125,253,64,-0.19239098871290378],[125,253,65,-0.19036365374438202],[125,253,66,-0.18823063425298475],[125,253,67,-0.1859924518462699],[125,253,68,-0.1836497289229425],[125,253,69,-0.18120319010709252],[125,253,70,-0.17865366367870428],[125,253,71,-0.17600208300052944],[125,253,72,-0.17324948794128037],[125,253,73,-0.17039702629524411],[125,253,74,-0.16744595519808303],[125,253,75,-0.16439764253912703],[125,253,76,-0.16125356836993998],[125,253,77,-0.15801532630922976],[125,253,78,-0.15468462494411261],[125,253,79,-0.15126328922768806],[125,254,64,-0.18882074298622553],[125,254,65,-0.1867501118188784],[125,254,66,-0.1845753316581959],[125,254,67,-0.18229692895831573],[125,254,68,-0.17991552919663156],[125,254,69,-0.17743185826161023],[125,254,70,-0.17484674383651422],[125,254,71,-0.17216111677912171],[125,254,72,-0.16937601249740197],[125,254,73,-0.1664925723212468],[125,254,74,-0.16351204487002102],[125,254,75,-0.16043578741624187],[125,254,76,-0.1572652672451651],[125,254,77,-0.15400206301035024],[125,254,78,-0.15064786608521463],[125,254,79,-0.14720448191053237],[125,255,64,-0.18520214609892194],[125,255,65,-0.18308745336771004],[125,255,66,-0.1808701733398036],[125,255,67,-0.17855083748221978],[125,255,68,-0.17613007448516893],[125,255,69,-0.17360861160248808],[125,255,70,-0.17098727598760421],[125,255,71,-0.16826699602512007],[125,255,72,-0.16544880265798],[125,255,73,-0.16253383071032046],[125,255,74,-0.1595233202057612],[125,255,75,-0.15641861768145382],[125,255,76,-0.15322117749766107],[125,255,77,-0.14993256314294168],[125,255,78,-0.14655444853494892],[125,255,79,-0.14308861931679973],[125,256,64,-0.18153786784340176],[125,256,65,-0.17937837385602806],[125,256,66,-0.17711787947498348],[125,256,67,-0.17475692134773296],[125,256,68,-0.17229613151370254],[125,256,69,-0.1697362386963852],[125,256,70,-0.16707806959059246],[125,256,71,-0.164322550144944],[125,256,72,-0.16147070683955655],[125,256,73,-0.15852366795903072],[125,256,74,-0.15548266486049755],[125,256,75,-0.15234903323703797],[125,256,76,-0.14912421437624956],[125,256,77,-0.14580975641403648],[125,256,78,-0.14240731558362751],[125,256,79,-0.13891865745978393],[125,257,64,-0.17783062812784067],[125,257,65,-0.17562561955740386],[125,257,66,-0.17332122171779885],[125,257,67,-0.17091797660566826],[125,257,68,-0.16841651974824334],[125,257,69,-0.1658175814461998],[125,257,70,-0.16312198801126587],[125,257,71,-0.16033066299867826],[125,257,72,-0.15744462843444085],[125,257,73,-0.15446500603749502],[125,257,74,-0.1513930184365514],[125,257,75,-0.1482299903819061],[125,257,76,-0.14497734995201084],[125,257,77,-0.141636629754873],[125,257,78,-0.1382094681242937],[125,257,79,-0.134697610310901],[125,258,64,-0.17408319317955506],[125,258,65,-0.17183198371954944],[125,258,66,-0.16948301932866883],[125,258,67,-0.16703684752251458],[125,258,68,-0.16449410745681997],[125,258,69,-0.16185553112015616],[125,258,70,-0.15912194452098838],[125,258,71,-0.1562942688691772],[125,258,72,-0.1533735217518843],[125,258,73,-0.15036081830398718],[125,258,74,-0.14725737237275316],[125,258,75,-0.14406449767709967],[125,258,76,-0.14078360896120445],[125,258,77,-0.1374162231425473],[125,258,78,-0.13396396045438563],[125,258,79,-0.13042854558262706],[125,259,64,-0.17029837180661955],[125,259,65,-0.16800030278876976],[125,259,66,-0.16560613536303648],[125,259,67,-0.16311642273469962],[125,259,68,-0.1605318078307142],[125,259,69,-0.1578530244413875],[125,259,70,-0.15508089835599537],[125,259,71,-0.15221634849243626],[125,259,72,-0.14926038802087727],[125,259,73,-0.14621412548150214],[125,259,74,-0.14307876589610585],[125,259,75,-0.13985561187386802],[125,259,76,-0.13654606471106656],[125,259,77,-0.13315162548481063],[125,259,78,-0.12967389614080083],[125,259,79,-0.12611458057507408],[125,260,64,-0.16647901171763274],[125,260,65,-0.16413345269304958],[125,260,66,-0.16169347291913705],[125,260,67,-0.15915963146240275],[125,260,68,-0.15653257516567698],[125,260,69,-0.15381303973790766],[125,260,70,-0.1510018508374738],[125,260,71,-0.14809992514911974],[125,260,72,-0.1451082714544606],[125,260,73,-0.1420279916961753],[125,260,74,-0.13886028203562362],[125,260,75,-0.13560643390422716],[125,260,76,-0.1322678350483696],[125,260,77,-0.1288459705679007],[125,260,78,-0.12534242394824702],[125,260,79,-0.1217588780860891],[125,261,64,-0.1626279958998208],[125,261,65,-0.1602343451839655],[125,261,66,-0.15774797144506425],[125,261,67,-0.15516943978311454],[125,261,68,-0.1524994011033209],[125,261,69,-0.14973859315317495],[125,261,70,-0.14688784155262724],[125,261,71,-0.14394806081745204],[125,261,72,-0.14092025537575914],[125,261,73,-0.13780552057776452],[125,261,74,-0.13460504369855758],[125,261,75,-0.1313201049342081],[125,261,76,-0.12795207839096345],[125,261,77,-0.12450243306762376],[125,261,78,-0.1209727338310973],[125,261,79,-0.11736464238509492],[125,262,64,-0.1587482390553867],[125,262,65,-0.15630592423733258],[125,262,66,-0.15377260310503504],[125,262,67,-0.15114884696484676],[125,262,68,-0.14843531093259738],[125,262,69,-0.14563273491715262],[125,262,70,-0.1427419445966307],[125,262,71,-0.13976385238737477],[125,262,72,-0.13669945840563796],[125,262,73,-0.13354985142209325],[125,262,74,-0.13031620980890318],[125,262,75,-0.1269998024796945],[125,262,76,-0.12360198982219006],[125,262,77,-0.12012422462358108],[125,262,78,-0.11656805298864492],[125,262,79,-0.11293511525056893],[125,263,64,-0.15484268409600338],[125,263,65,-0.15235116251247866],[125,263,66,-0.149770369204754],[125,263,67,-0.14710088185888887],[125,263,68,-0.14434335995124653],[125,263,69,-0.14149854567775277],[125,263,70,-0.13856726487536525],[125,263,71,-0.13555042793585698],[125,263,72,-0.1324490307118688],[125,263,73,-0.12926415541534425],[125,263,74,-0.12599697150807865],[125,263,75,-0.12264873658473335],[125,263,76,-0.11922079724806056],[125,263,77,-0.11571458997642736],[125,263,78,-0.1121316419836419],[125,263,79,-0.10847357207104069],[125,264,64,-0.1509142986956596],[125,264,65,-0.1483730578703621],[125,264,66,-0.14574429667608763],[125,264,67,-0.1430285993523258],[125,264,68,-0.14022662988744422],[125,264,69,-0.13733913289289135],[125,264,70,-0.13436693446915499],[125,264,71,-0.13131094306358537],[125,264,72,-0.1281721503200352],[125,264,73,-0.12495163192043124],[125,264,74,-0.12165054841800776],[125,264,75,-0.11827014606255509],[125,264,76,-0.11481175761742718],[125,264,77,-0.11127680316839594],[125,264,78,-0.10766679092435782],[125,264,79,-0.10398331800984922],[125,265,64,-0.1469660719016841],[125,265,65,-0.14437462995035266],[125,265,66,-0.1416974346208706],[125,265,67,-0.1389350768801364],[125,265,68,-0.1360882253814572],[125,265,69,-0.13315762728296315],[125,265,70,-0.1301441090573202],[125,265,71,-0.12704857729284624],[125,265,72,-0.12387201948598608],[125,265,73,-0.12061550482525901],[125,265,74,-0.1172801849664078],[125,265,75,-0.1138672947991039],[125,265,76,-0.11037815320495376],[125,265,77,-0.10681416380689052],[125,265,78,-0.10317681570996096],[125,265,79,-0.09946768423345964],[125,266,64,-0.14300101080407818],[125,266,65,-0.14035891680581097],[125,266,66,-0.13763285091397875],[125,266,67,-0.13482341099701034],[125,266,68,-0.1319312705274493],[125,266,69,-0.1289571793438809],[125,266,70,-0.12590196440368756],[125,266,71,-0.12276653052673947],[125,266,72,-0.11955186112998012],[125,266,73,-0.11625901895301494],[125,266,74,-0.11288914677443468],[125,266,75,-0.10944346811922956],[125,266,76,-0.10592328795703498],[125,266,77,-0.10232999339129867],[125,266,78,-0.0986650543393725],[125,266,79,-0.09493002420348823],[125,267,64,-0.13902213726298207],[125,267,65,-0.1363289715982834],[125,267,66,-0.13355362886548755],[125,267,67,-0.13069671400869598],[125,267,68,-0.12775890547524926],[125,267,69,-0.12474095592048767],[125,267,70,-0.12164369290286675],[125,267,71,-0.11846801956953523],[125,267,72,-0.1152149153323282],[125,267,73,-0.11188543653429545],[125,267,74,-0.10848071710648338],[125,267,75,-0.105001969215338],[125,267,76,-0.10145048390046163],[125,267,77,-0.09782763170281877],[125,267,78,-0.09413486328338982],[125,267,79,-0.09037371003223549],[125,268,64,-0.13503248469448254],[125,268,65,-0.13228785935053278],[125,268,66,-0.12946286394213097],[125,268,67,-0.12655811066310313],[125,268,68,-0.12357428309230395],[125,268,69,-0.120512136840566],[125,268,70,-0.11737250018752082],[125,268,71,-0.11415627470839879],[125,268,72,-0.1108644358907645],[125,268,73,-0.10749803374130401],[125,268,74,-0.10405819338238226],[125,268,75,-0.10054611563874177],[125,268,76,-0.09696307761407197],[125,268,77,-0.09331043325754507],[125,268,78,-0.08958961392031878],[125,268,79,-0.08580212890196626],[125,269,64,-0.13103509491466664],[125,269,65,-0.1282386537582963],[125,269,66,-0.1253636605479616],[125,269,67,-0.12241073490105325],[125,269,68,-0.11938056568571109],[125,269,69,-0.1162739116093427],[125,269,70,-0.11309160179652217],[125,269,71,-0.10983453635638013],[125,269,72,-0.10650368693943812],[125,269,73,-0.10310009728400765],[125,269,74,-0.0996248837518674],[125,269,75,-0.09607923585359457],[125,269,76,-0.09246441676327577],[125,269,77,-0.08878176382269648],[125,269,78,-0.08503268903500688],[125,269,79,-0.08121867954782547],[125,270,64,-0.1270330150418157],[125,270,65,-0.12418443406067448],[125,270,66,-0.12125912886410384],[125,270,67,-0.11825772666657319],[125,270,68,-0.11518092178422557],[125,270,69,-0.11202947616437514],[125,270,70,-0.10880421990388744],[125,270,71,-0.10550605175655331],[125,270,72,-0.10213593962941153],[125,270,73,-0.09869492106813987],[125,270,74,-0.0951841037312261],[125,270,75,-0.0916046658532983],[125,270,76,-0.08795785669733752],[125,270,77,-0.08424499699587262],[125,270,78,-0.08046747938115428],[125,270,79,-0.0766267688042715],[125,271,64,-0.12302929445694416],[125,271,65,-0.12012828196935016],[125,271,66,-0.1171523817478114],[125,271,67,-0.11410222877694398],[125,271,68,-0.11097852298045113],[125,271,69,-0.107782029691038],[125,271,70,-0.10451358010870426],[125,271,71,-0.1011740717475274],[125,271,72,-0.09776446887089013],[125,271,73,-0.09428580291527527],[125,271,74,-0.0907391729023333],[125,271,75,-0.08712574583960919],[125,271,76,-0.083446757109646],[125,271,77,-0.07970351084756766],[125,271,78,-0.075897380307138],[125,271,79,-0.07202980821525762],[125,272,64,-0.11902698182258287],[125,272,65,-0.11607327865654127],[125,272,66,-0.11304653169072287],[125,272,67,-0.1099473838523965],[125,272,68,-0.1067765408331125],[125,272,69,-0.10353477149850299],[125,272,70,-0.10022290828594765],[125,272,71,-0.09684184759022074],[125,272,72,-0.09339255013707176],[125,272,73,-0.0898760413448631],[125,272,74,-0.08629341167396992],[125,272,75,-0.08264581696432954],[125,272,76,-0.07893447876085663],[125,272,77,-0.07516068462682812],[125,272,78,-0.07132578844523318],[125,272,79,-0.06743121070805069],[125,273,64,-0.11502912215970285],[125,273,65,-0.11202250180157886],[125,273,66,-0.10894468783621225],[125,273,67,-0.10579633130535088],[125,273,68,-0.10257814382929903],[125,273,69,-0.09929089795610047],[125,273,70,-0.09593542749806955],[125,273,71,-0.09251262785578507],[125,273,72,-0.0890234563295027],[125,273,73,-0.08546893241810716],[125,273,74,-0.08185013810530795],[125,273,75,-0.07816821813346991],[125,273,76,-0.07442438026479176],[125,273,77,-0.07061989552993714],[125,273,78,-0.06675609846411379],[125,273,79,-0.06283438733056407],[125,274,64,-0.11103875398298407],[125,274,65,-0.1079790226963192],[125,274,66,-0.10484995305604294],[125,274,67,-0.1016522043894108],[125,274,68,-0.09838649440689617],[125,274,69,-0.09505359949028369],[125,274,70,-0.09165435496758623],[125,274,71,-0.08818965537490187],[125,274,72,-0.08466045470516526],[125,274,73,-0.08106776664391674],[125,274,74,-0.07741266479178982],[125,274,75,-0.073696282874112],[125,274,76,-0.0699198149373288],[125,274,77,-0.06608451553235789],[125,274,78,-0.06219169988486739],[125,274,79,-0.05824274405244262],[125,275,64,-0.1070589064943287],[125,275,65,-0.10394590340928755],[125,275,66,-0.10076542108622039],[125,275,67,-0.09751812730800524],[125,275,68,-0.09420474603709555],[125,275,69,-0.09082605764208268],[125,275,70,-0.08738289911055064],[125,275,71,-0.08387616424834132],[125,275,72,-0.08030680386518446],[125,275,73,-0.07667582594681738],[125,275,74,-0.07298429581328975],[125,275,75,-0.06923333626385614],[125,275,76,-0.06542412770816036],[125,275,77,-0.06155790828381996],[125,275,78,-0.057635973960405984],[125,275,79,-0.05365967862978144],[125,276,64,-0.1030925968345146],[125,276,65,-0.09992619400844766],[125,276,66,-0.0966941737219395],[125,276,67,-0.09339721238257359],[125,276,68,-0.09003604036687746],[125,276,69,-0.08661144218494288],[125,276,70,-0.08312425663080059],[125,276,71,-0.07957537691867089],[125,276,72,-0.07596575080504253],[125,276,73,-0.07229638069670735],[125,276,74,-0.0685683237444411],[125,276,75,-0.06478269192274039],[125,276,76,-0.060940652095312575],[125,276,77,-0.0570434260664322],[125,276,78,-0.0530922906181559],[125,276,79,-0.04908857753336071],[125,277,64,-0.09914282739319458],[125,277,65,-0.09592292984280582],[125,277,66,-0.09263927807183486],[125,277,67,-0.089292557280505],[125,277,68,-0.08588350442168097],[125,277,69,-0.08241290830316439],[125,277,70,-0.07888160967520386],[125,277,71,-0.0752905013033377],[125,277,72,-0.07164052802652382],[125,277,73,-0.06793268680068548],[125,277,74,-0.06416802672735916],[125,277,75,-0.06034764906785872],[125,277,76,-0.0564727072426508],[125,277,77,-0.05254440681605532],[125,277,78,-0.04856400546626277],[125,277,79,-0.044532812940632716],[125,278,64,-0.09521258317713827],[125,278,65,-0.09193912888274575],[125,278,66,-0.08860378387143025],[125,278,67,-0.0852072423027263],[125,278,68,-0.08175024786815177],[125,278,69,-0.07823359383083195],[125,278,70,-0.07465812304978786],[125,278,71,-0.0710247279890111],[125,278,72,-0.06733435071127913],[125,278,73,-0.06358798285683875],[125,278,74,-0.059786665606644085],[125,278,75,-0.055931489630564823],[125,278,76,-0.052023595020257773],[125,278,77,-0.04806417120681655],[125,278,78,-0.044054456863191094],[125,278,79,-0.039995739791341356],[125,279,64,-0.09130482923661659],[125,279,65,-0.08797778911898979],[125,279,66,-0.08459072085568348],[125,279,67,-0.08114432773083308],[125,279,68,-0.07763936033686508],[125,279,69,-0.07407661655113018],[125,279,70,-0.07045694149664627],[125,279,71,-0.06678122748707738],[125,279,72,-0.06305041395589772],[125,279,73,-0.05926548736987519],[125,279,74,-0.055427481126552214],[125,279,75,-0.05153747543614817],[125,279,76,-0.04759659718757053],[125,279,77,-0.04360601979865214],[125,279,78,-0.039566963050605586],[125,279,79,-0.035480692906658895],[125,280,64,-0.08742250815013108],[125,280,65,-0.08404188602039586],[125,280,66,-0.08060309619083295],[125,280,67,-0.07710685123397443],[125,280,68,-0.07355390880523288],[125,280,69,-0.06994507155625784],[125,280,70,-0.06628118703184255],[125,280,71,-0.06256314755050707],[125,280,72,-0.05879189006871166],[125,280,73,-0.05496839602882986],[125,280,74,-0.051093691190561064],[125,280,75,-0.04716884544620786],[125,280,76,-0.04319497261950356],[125,280,77,-0.039173230248108426],[125,280,78,-0.035104819349764615],[125,280,79,-0.030990984172075298],[125,281,64,-0.0835685375673842],[125,281,65,-0.0801343700504808],[125,281,66,-0.0766438919654438],[125,281,67,-0.07309782533538589],[125,281,68,-0.06949693504049037],[125,281,69,-0.06584202866783351],[125,281,70,-0.06213395634419483],[125,281,71,-0.05837361055198076],[125,281,72,-0.05456192592821496],[125,281,73,-0.05069987904672657],[125,281,74,-0.04678848818321407],[125,281,75,-0.042828813063612026],[125,281,76,-0.03882195459544446],[125,281,77,-0.03476905458228435],[125,281,78,-0.030671295421309086],[125,281,79,-0.02652989978391701],[125,282,64,-0.07974580781039525],[125,282,65,-0.07625816424257653],[125,282,66,-0.07271606274054915],[125,282,67,-0.06912023493846736],[125,282,68,-0.06547145310265817],[125,282,69,-0.061770529917687333],[125,282,70,-0.05801831825484394],[125,282,71,-0.054215710923171456],[125,282,72,-0.0503636404029964],[125,282,73,-0.04646307856209042],[125,282,74,-0.042515036354136115],[125,282,75,-0.03852056349993088],[125,282,76,-0.034480748151009544],[125,282,77,-0.030396716535804613],[125,282,78,-0.02626963258833498],[125,282,79,-0.02210069755938837],[125,283,64,-0.07595717953295911],[125,283,65,-0.07241616183381672],[125,283,66,-0.06882253315909498],[125,283,67,-0.06517703491261329],[125,283,68,-0.06148044690768811],[125,283,69,-0.05773358708925114],[125,283,70,-0.053937311237811925],[125,283,71,-0.05009251265539438],[125,283,72,-0.0462001218333995],[125,283,73,-0.042261106102529256],[125,283,74,-0.03827646926444045],[125,283,75,-0.03424725120556671],[125,283,76,-0.03017452749278493],[125,283,77,-0.026059408951048357],[125,283,78,-0.021903041222975317],[125,283,79,-0.01770660431035953],[125,284,64,-0.07220548143834554],[125,284,65,-0.0686112239578518],[125,284,66,-0.06496619561458078],[125,284,67,-0.06127114773869019],[125,284,68,-0.05752686785068739],[125,284,69,-0.053734179319438746],[125,284,70,-0.04989394100144584],[125,284,71,-0.04600704686151896],[125,284,72,-0.04207442557480012],[125,284,73,-0.03809704011027176],[125,284,74,-0.03407588729541605],[125,284,75,-0.03001199736246879],[125,284,76,-0.025906433475939072],[125,284,77,-0.021760291241520235],[125,284,78,-0.017574698196378802],[125,284,79,-0.013350813280788465],[125,285,64,-0.06849350805514659],[125,285,65,-0.06484617739619741],[125,285,66,-0.0611499079787996],[125,285,67,-0.057405461214061704],[125,285,68,-0.0536136324891206],[125,285,69,-0.0497752507609156],[125,285,70,-0.04589117813064386],[125,285,71,-0.041962309399036],[125,285,72,-0.037989571602397576],[125,285,73,-0.03397392352955797],[125,285,74,-0.02991635521938607],[125,285,75,-0.02581788743932309],[125,285,76,-0.02167957114459773],[125,285,77,-0.01750248691825365],[125,285,78,-0.01328774439197275],[125,285,79,-0.009036481647663491],[125,286,64,-0.06482401757146403],[125,286,65,-0.061123812388412274],[125,286,66,-0.05737649138887929],[125,286,67,-0.0535828262173641],[125,286,68,-0.049743620286193946],[125,286,69,-0.045859708304963165],[125,286,70,-0.04193195579007131],[125,286,71,-0.03796125855449298],[125,286,72,-0.03394854217773183],[125,286,73,-0.029894761456096736],[125,286,74,-0.025800899832958163],[125,286,75,-0.021667968809439025],[125,286,76,-0.01749700733520268],[125,286,77,-0.013289081179467699],[125,286,78,-0.009045282282234779],[125,286,79,-0.004766728085693284],[125,287,64,-0.061199729727338115],[125,287,65,-0.05744688050100402],[125,287,66,-0.053648728093517645],[125,287,67,-0.04980605453292816],[125,287,68,-0.04591967141431616],[125,287,69,-0.04199041936483508],[125,287,70,-0.03801916748826134],[125,287,71,-0.03400681278918877],[125,287,72,-0.02995427957681776],[125,287,73,-0.0258625188484799],[125,287,74,-0.021732507652552052],[125,287,75,-0.017565248431218344],[125,287,76,-0.013361768342740471],[125,287,77,-0.0091231185633657],[125,287,78,-0.004850373568859395],[125,287,79,-5.446303956283538E-4],[125,288,64,-0.05762332376532675],[125,288,65,-0.053818092554971025],[125,288,66,-0.049969359358323195],[125,288,67,-0.046077916734752006],[125,288,68,-0.04214458461854184],[125,288,69,-0.03817020971950347],[125,288,70,-0.034155664902500604],[125,288,71,-0.030101848546028764],[125,288,72,-0.02600968387979638],[125,288,73,-0.021880118301451784],[125,288,74,-0.017714122672104204],[125,288,75,-0.013512690591104132],[125,288,76,-0.009276837649737857],[125,288,77,-0.005007600663969269],[125,288,78,-7.060368862130961E-4],[125,288,79,0.0036267768038919235],[125,289,64,-0.05409743643943132],[125,289,65,-0.05024011661218061],[125,289,66,-0.046341083430460506],[125,289,67,-0.04240114013023197],[125,289,68,-0.038421115140203466],[125,289,69,-0.034401861418010465],[125,289,70,-0.0303442557647135],[125,289,71,-0.02624919811775439],[125,289,72,-0.022117610822319334],[125,289,73,-0.017950437881252918],[125,289,74,-0.013748644183169956],[125,289,75,-0.009513214709233248],[125,289,76,-0.0052451537182489905],[125,289,77,-9.454839102153445E-4],[125,289,78,0.0033847544316933376],[125,289,79,0.007744504320737922],[125,290,64,-0.0506246600822052],[125,290,65,-0.04671557602041526],[125,290,66,-0.04276655356243128],[125,290,67,-0.03877840676347641],[125,290,68,-0.034751972700557576],[125,290,69,-0.03068811074424377],[125,290,70,-0.026587701808164693],[125,290,71,-0.02245164757636775],[125,290,72,-0.01828086970848533],[125,290,73,-0.014076309022855005],[125,290,74,-0.009838924657237291],[125,290,75,-0.00556969320760381],[125,290,76,-0.0012696078446435555],[125,290,77,0.003060322591875775],[125,290,78,0.007419074520908481],[125,290,79,0.011805610570125469],[125,291,64,-0.0472075407301637],[125,291,65,-0.043247047517209036],[125,291,66,-0.039248376095115556],[125,291,67,-0.03521235147833118],[125,291,68,-0.03113981954457351],[125,291,69,-0.027031646242269475],[125,291,70,-0.02288871677511317],[125,291,71,-0.01871193476388197],[125,291,72,-0.014502221385460673],[125,291,73,-0.01026051448921983],[125,291,74,-0.0059877676903880295],[125,291,75,-0.0016849494408960053],[125,291,76,0.0026469579226633677],[125,291,77,0.007006959153820269],[125,291,78,0.011394047093776644],[125,291,79,0.015807203691749344],[125,292,64,-0.04384857630733949],[125,292,65,-0.03983705939231502],[125,292,66,-0.035789108599910135],[125,292,67,-0.03170556004094999],[125,292,68,-0.027587268544697757],[125,292,69,-0.02343510680205005],[125,292,70,-0.019249964485245047],[125,292,71,-0.015032747344226244],[125,292,72,-0.010784376279610597],[125,292,73,-0.006505786392407925],[125,292,74,-0.0021979260101293308],[125,292,75,0.002138244310234294],[125,292,76,0.006501752802722027],[125,292,77,0.010891617536261333],[125,292,78,0.015306847481893676],[125,292,79,0.019746443603397473],[125,293,64,-0.04055021486717114],[125,293,65,-0.03648808970899442],[125,293,66,-0.03239125808015894],[125,293,67,-0.028260567322107494],[125,293,68,-0.02409688136479221],[125,293,69,-0.0199010798057509],[125,293,70,-0.015674056965088695],[125,293,71,-0.011416720916510026],[125,293,72,-0.00712999249434898],[125,293,73,-0.0028148042767462966],[125,293,74,0.001527900455392861],[125,293,75,0.005897168783173812],[125,293,76,0.010292039238583295],[125,293,77,0.014711542917313886],[125,293,78,0.019154704615561513],[125,293,79,0.023620543990826637],[125,294,64,-0.0373148528926312],[125,294,65,-0.033202564584032146],[125,294,66,-0.029057279231778116],[125,294,67,-0.02487985553915731],[125,294,68,-0.02067116668414884],[125,294,69,-0.01643209933453535],[125,294,70,-0.012163552638313452],[125,294,71,-0.007866437189545689],[125,294,72,-0.0035416739696036564],[125,294,73,8.098067360491207E-4],[125,294,74,0.005187066445903346],[125,294,75,0.009589159614789206],[125,294,76,0.014015134790965236],[125,294,77,0.018464035797769104],[125,294,78,0.022934902939849344],[125,294,79,0.02742677423400798],[125,295,64,-0.03414483365451493],[125,295,65,-0.029982856526399954],[125,295,66,-0.025789572762994928],[125,295,67,-0.021565852557551862],[125,295,68,-0.017312578481495755],[125,295,69,-0.013030644435762656],[125,295,70,-0.008720954576823786],[125,295,71,-0.004384422217541872],[125,295,72,-2.1968702809085916E-5],[125,295,73,0.004365477739883897],[125,295,74,0.008776983175319927],[125,295,75,0.01321160916037302],[125,295,76,0.0176684139691419],[125,295,77,0.02214645384325306],[125,295,78,0.026644784267355615],[125,295,79,0.031162461269836086],[125,296,64,-0.03104244562805608],[125,296,65,-0.02683128283473374],[125,296,66,-0.022590483773372708],[125,296,67,-0.018320930252098938],[125,296,68,-0.014023514379172416],[125,296,69,-0.009699137450767878],[125,296,70,-0.005348708812830158],[125,296,71,-9.731446971502355E-4],[125,296,72,0.0034266329683887986],[125,296,73,0.007849697775243913],[125,296,74,0.012295120075699426],[125,296,75,0.016761968249908554],[125,296,76,0.021249309998863125],[125,296,77,0.025756213663144262],[125,296,78,0.030281749567475133],[125,296,79,0.03482499139110572],[125,297,64,-0.028009920967784444],[125,297,65,-0.023750104053541013],[125,297,66,-0.019462300192031545],[125,297,67,-0.015147402927864442],[125,297,68,-0.010806314047381527],[125,297,69,-0.00643994240313181],[125,297,70,-0.0020492027118046846],[125,297,71,0.0023649856742275904],[125,297,72,0.006801700021810159],[125,297,73,0.011260015498196066],[125,297,74,0.015739006478905748],[125,297,75,0.02023774788175145],[125,297,76,0.024755316527403953],[125,297,77,0.029290792526350945],[125,297,78,0.03384326069227192],[125,297,79,0.038411811981856475],[125,298,64,-0.025049434040547047],[125,298,65,-0.02074152248805737],[125,298,66,-0.016407251274987253],[125,298,67,-0.012047525800640405],[125,298,68,-0.007663257668436785],[125,298,69,-0.0032553634473574677],[125,298,70,0.0011752365937646447],[125,298,71,0.00562761977895912],[125,298,72,0.01010086234488805],[125,298,73,0.014594040787519733],[125,298,74,0.01910623323608611],[125,298,75,0.02363652085381742],[125,298,76,0.028183989265832883],[125,298,77,0.03274773001403758],[125,298,78,0.03732684203904838],[125,298,79,0.04192043318917757],[125,299,64,-0.02216310001685254],[125,299,65,-0.017807680777914933],[125,299,66,-0.013427506161771005],[125,299,67,-0.009023493537146592],[125,299,68,-0.004596564461175345],[125,299,69,-1.4764337812506884E-4],[125,299,70,0.0043223437096457165],[125,299,71,0.008812470598350254],[125,299,72,0.013321812267107068],[125,299,73,0.017849446289789503],[125,299,74,0.022394454274776286],[125,299,75,0.0269559233320912],[125,299,76,0.031532947568314575],[125,299,77,0.03612462960911484],[125,299,78,0.04073008214942389],[125,299,79,0.04534842953128415],[125,300,64,-0.019352973520456715],[125,300,65,-0.014950660529538667],[125,300,66,-0.010525172491245426],[125,300,67,-0.006077438854875952],[125,300,68,-0.0016083912654459576],[125,300,69,0.002881037799964993],[125,300,70,0.00738991642425172],[125,300,71,0.011917314670556116],[125,300,72,0.01646230603082554],[125,300,73,0.021023968902501786],[125,300,74,0.025601388093727584],[125,300,75,0.030193656356555403],[125,300,76,0.03479987594854421],[125,300,77,0.03941916022259075],[125,300,78,0.04405063524502026],[125,300,79,0.048693441441963164],[125,301,64,-0.01662104733611658],[125,301,65,-0.012172481007198449],[125,301,66,-0.007702295076543755],[125,301,67,-0.003211431181513201],[125,301,68,0.0012991688134006002],[125,301,69,0.005828564242235566],[125,301,70,0.01037581709222489],[125,301,71,0.014939993487310937],[125,301,72,0.019520165200560623],[125,301,73,0.024115411195325297],[125,301,74,0.0287248191955367],[125,301,75,0.033347487284616735],[125,301,76,0.03798252553339313],[125,301,77,0.04262905765686403],[125,301,78,0.047286222699837385],[125,301,79,0.0519531767514722],[125,302,64,-0.013969251175664176],[125,302,65,-0.009475097882867514],[125,302,66,-0.004960854639284581],[125,302,67,-4.274753740791254E-4],[125,302,68,0.004124087699862399],[125,302,69,0.008692885573203881],[125,302,70,0.013277973957052217],[125,302,71,0.01787841482931421],[125,302,72,0.022493278010570564],[125,302,73,0.027121642769308958],[125,302,74,0.03176259945691001],[125,302,75,0.03641525117186206],[125,302,76,0.04107871545359625],[125,302,77,0.04575212600578724],[125,302,78,0.050434634449143693],[125,302,79,0.0551254121037162],[125,303,64,-0.011399450502318477],[125,303,65,-0.00686040204480769],[125,303,66,-0.002302766602982644],[125,303,67,0.0022724895022795105],[125,303,68,0.006864403583561772],[125,303,69,0.011472018135364942],[125,303,70,0.016094382412799695],[125,303,71,0.020730554040358964],[125,303,72,0.0253796006508222],[125,303,73,0.030040601554133604],[125,303,74,0.03471264943665035],[125,303,75,0.03939485209023233],[125,303,76,0.044086334171570055],[125,303,77,0.048786238991591395],[125,303,78,0.05349373033497472],[125,303,79,0.05820799430979426],[125,304,64,-0.008913445413174792],[125,304,65,-0.004330218464817659],[125,304,66,2.7012005441166636E-4],[125,304,67,0.004886591335921937],[125,304,68,0.009518222094511785],[125,304,69,0.014164046177554493],[125,304,70,0.018823106205033385],[125,304,71,0.023494455240272334],[125,304,72,0.02817715849141341],[125,304,73,0.03287029504348206],[125,304,74,0.03757295962143936],[125,304,75,0.042284264383688625],[125,304,76,0.04700334074643618],[125,304,77,0.051729341238745744],[125,304,78,0.05646144138831374],[125,304,79,0.06119884163799243],[125,305,64,-0.006512969580005004],[125,305,65,-0.0018863051242808022],[125,305,66,0.0027560238887016555],[125,305,67,0.007413026070625155],[125,305,68,0.012083717418231173],[125,305,69,0.016767122982746935],[125,305,70,0.02146227857077968],[125,305,71,0.02616823247651864],[125,305,72,0.030884047245299858],[125,305,73,0.03560880146837133],[125,305,74,0.0403415916092614],[125,305,75,0.04508153386121399],[125,305,76,0.04982776603609307],[125,305,77,0.05457944948459477],[125,305,78,0.059335771047795555],[125,305,79,0.06409594504006086],[125,306,64,-0.004199689248298381],[125,306,65,4.6964800106027646E-4],[125,306,66,0.005153232018440309],[125,306,67,0.009850058747850846],[125,306,68,0.014559133350782554],[125,306,69,0.01927947193536486],[125,306,70,0.02401010331760421],[125,306,71,0.02875007081454546],[125,306,72,0.033498434069407106],[125,306,73,0.038254270908531104],[125,306,74,0.04301667923055014],[125,306,75,0.04778477892723377],[125,306,76,0.0525577138364181],[125,306,77,0.05733465372685614],[125,306,78,0.06211479631501727],[125,306,79,0.06689736931386189],[125,307,64,-0.001975202294484609],[125,307,65,0.002736019897659602],[125,307,66,0.007460101094788396],[125,307,67,0.01219602448942736],[125,307,68,0.016942784293797024],[125,307,69,0.021699387528161543],[125,307,70,0.026464855841870208],[125,307,71,0.031238227366934206],[125,307,72,0.03601855860419069],[125,307,73,0.04080492634189132],[125,307,74,0.04559642960712365],[125,307,75,0.050392191649520995],[125,307,76,0.05519136195766925],[125,307,77,0.0599931183080467],[125,307,78,0.0647966688465247],[125,307,79,0.06960125420245611],[125,308,64,1.5896265853829888E-4],[125,308,65,0.004911259411930442],[125,308,66,0.009675058212110794],[125,308,67,0.014449329420517638],[125,308,68,0.019233056189351568],[125,308,69,0.024025236308545722],[125,308,70,0.028824884086043702],[125,308,71,0.03363103226122133],[125,308,72,0.03844273395150762],[125,308,73,0.04325906463204057],[125,308,74,0.04807912414876757],[125,308,75,0.05290203876444401],[125,308,76,0.05772696323794055],[125,308,77,0.06255308293669362],[125,308,78,0.06737961598232872],[125,308,79,0.07220581542948111],[125,309,64,0.002201347067635001],[125,309,65,0.006993886089281358],[125,309,66,0.011796601759376087],[125,309,67,0.016608451532942957],[125,309,68,0.021428407394771594],[125,309,69,0.02625545776441683],[125,309,70,0.031088609435116238],[125,309,71,0.03592688954646052],[125,309,72,0.04076934759087254],[125,309,73,0.04561505745372954],[125,309,74,0.05046311948754123],[125,309,75,0.055312662619632996],[125,309,76,0.06016284649374869],[125,309,77,0.06501286364540505],[125,309,78,0.06986194171102858],[125,309,79,0.07470934567089921],[125,310,64,0.004150563237476507],[125,310,65,0.008982490954476355],[125,310,66,0.013823302212414929],[125,310,67,0.0186719414889146],[125,310,68,0.023527369497412035],[125,310,69,0.028388565149568168],[125,310,70,0.03325452755220161],[125,310,71,0.03812427803858509],[125,310,72,0.042996862234156094],[125,310,73,0.04787135215647792],[125,310,74,0.05274684834986608],[125,310,75,0.05762248205412494],[125,310,76,0.06249741740781242],[125,310,77,0.06737085368586368],[125,310,78,0.07224202757160436],[125,310,79,0.07711021546317863],[125,311,64,0.006005295030282742],[125,311,65,0.010875737233207741],[125,311,66,0.015753802866920755],[125,311,67,0.020638423365058153],[125,311,68,0.025528548069298704],[125,311,69,0.030423146248536606],[125,311,70,0.035321209153184804],[125,311,71,0.040221752104445285],[125,311,72,0.04512381661860025],[125,311,73,0.05002647256615737],[125,311,74,0.05492882036626753],[125,311,75,0.05982999321585654],[125,311,76,0.06472915935389147],[125,311,77,0.06962552436060984],[125,311,78,0.07451833349174522],[125,311,79,0.07940687404777173],[125,312,64,0.0077642985173288215],[125,312,65,0.012672361014943082],[125,312,66,0.017586820512256074],[125,312,67,0.022506595336794485],[125,312,68,0.027430623361694786],[125,312,69,0.032357864080966026],[125,312,70,0.0372873007204899],[125,312,71,0.04221794238458915],[125,312,72,0.04714882623821999],[125,312,73,0.05207901972462156],[125,312,74,0.057007622818841655],[125,312,75,0.0619337703165784],[125,312,76,0.06685663415875931],[125,312,77,0.07177542579168761],[125,312,78,0.07668939856278628],[125,312,79,0.08159785015196513],[125,313,64,0.009426402572251136],[125,313,65,0.014371171857089582],[125,313,66,0.01932114604610813],[125,313,67,0.024275230303120482],[125,313,68,0.029232350939637747],[125,313,69,0.03419145754552852],[125,313,70,0.039151525156013875],[125,313,71,0.04411155645483414],[125,313,72,0.0490705840136382],[125,313,73,0.054027672567430476],[125,313,74,0.05898192132649546],[125,313,75,0.06393246632423723],[125,313,76,0.068878482801358],[125,313,77,0.07381918762620318],[125,313,78,0.07875384175130579],[125,313,79,0.08368175270615302],[125,314,64,0.010990509406060306],[125,314,65,0.015971053330372312],[125,314,66,0.020955645029891473],[125,314,67,0.025943176451685507],[125,314,68,0.030932562256340695],[125,314,69,0.03592274200329661],[125,314,70,0.040912682373115114],[125,314,71,0.045901379426517175],[125,314,72,0.05088786090024133],[125,314,73,0.055871188539554834],[125,314,74,0.06085046046784351],[125,314,75,0.06582481359271117],[125,314,76,0.07079342604901712],[125,314,77,0.07575551967867697],[125,314,78,0.08071036254726083],[125,314,79,0.08565727149741167],[125,315,64,0.012455595043940254],[125,315,65,0.017470963505515164],[125,315,66,0.0224892581849825],[125,315,67,0.02750935776425248],[125,315,68,0.032530165167545616],[125,315,69,0.03755060980065683],[125,315,70,0.04256964982775083],[125,315,71,0.04758627448551861],[125,315,72,0.05259950643475056],[125,315,73,0.05760840414915677],[125,315,74,0.06261206434186059],[125,315,75,0.06760962442899604],[125,315,76,0.07260026503083786],[125,315,77,0.07758321251028996],[125,315,78,0.08255774154876477],[125,315,79,0.08752317775947785],[125,316,64,0.013820709743777082],[125,316,65,0.01886993538116337],[125,316,66,0.02392100182972784],[125,316,67,0.028972774462481282],[125,316,68,0.03402414438576992],[125,316,69,0.039074030731702375],[125,316,70,0.04412138298869861],[125,316,71,0.049165183369992926],[125,316,72,0.0542044492201437],[125,316,73,0.05923823545938123],[125,316,74,0.06426563706622143],[125,316,75,0.0692857915977734],[125,316,76,0.07429788174817104],[125,316,77,0.0793011379449545],[125,316,78,0.08429484098343415],[125,316,79,0.08927832469906039],[125,317,64,0.015084978356488504],[125,317,65,0.02016707725311928],[125,317,66,0.025249968257299],[125,317,67,0.030332503394110033],[125,317,68,0.03541356187451988],[125,317,69,0.04049205244018117],[125,317,70,0.04556691574694022],[125,317,71,0.05063712678688839],[125,317,72,0.055701697349006984],[125,317,73,0.06075967851823835],[125,317,74,0.06581016321341149],[125,317,75,0.07085228876344685],[125,317,76,0.07588523952227574],[125,317,77,0.08090824952229514],[125,317,78,0.08592060516639391],[125,317,79,0.09092164795857194],[125,318,64,0.016247600628068876],[125,318,65,0.021361573024805958],[125,318,66,0.026475326054305443],[125,318,67,0.031587698359444055],[125,318,68,0.03669755718237927],[125,318,69,0.04180380076090667],[125,318,70,0.04690536076411392],[125,318,71,0.052001204767157416],[125,318,72,0.0570903387652211],[125,318,73,0.062171809726479815],[125,318,74,0.06724470818450715],[125,318,75,0.07230817086954205],[125,318,76,0.07736138337905546],[125,318,77,0.08240358288743665],[125,318,78,0.08743406089483441],[125,318,79,0.09245216601517584],[125,319,64,0.017307851443398026],[125,319,65,0.022452682459008055],[125,319,66,0.0275963203602152],[125,319,67,0.032737590378203896],[125,319,68,0.03787534771702672],[125,319,69,0.04300848000068502],[125,319,70,0.0481359097600878],[125,319,71,0.053256596959713964],[125,319,72,0.058369541564034594],[125,319,73,0.06347378614352273],[125,319,74,0.06856841852068407],[125,319,75,0.07365257445553028],[125,319,76,0.07872544037092918],[125,319,77,0.08378625611765614],[125,319,78,0.08883431777918002],[125,319,79,0.09386898051620671],[126,-64,64,-0.16424429724187473],[126,-64,65,-0.16818415313904445],[126,-64,66,-0.1719993414268488],[126,-64,67,-0.17568840572040134],[126,-64,68,-0.17925005912643222],[126,-64,69,-0.1826831902006596],[126,-64,70,-0.18598686897072492],[126,-64,71,-0.18916035302459877],[126,-64,72,-0.19220309366446453],[126,-64,73,-0.1951147421259969],[126,-64,74,-0.1978951558632841],[126,-64,75,-0.20054440489904413],[126,-64,76,-0.20306277824041763],[126,-64,77,-0.20545079036019576],[126,-64,78,-0.20770918774354197],[126,-64,79,-0.2098389555001815],[126,-63,64,-0.15871286107094051],[126,-63,65,-0.16264055585441528],[126,-63,66,-0.16644412734910907],[126,-63,67,-0.17012211668187427],[126,-63,68,-0.17367323394722123],[126,-63,69,-0.1770963641568929],[126,-63,70,-0.1803905732550195],[126,-63,71,-0.18355511419875237],[126,-63,72,-0.1865894331043898],[126,-63,73,-0.18949317545891065],[126,-63,74,-0.19226619239715848],[126,-63,75,-0.1949085470443419],[126,-63,76,-0.19742052092411255],[126,-63,77,-0.19980262043209773],[126,-63,78,-0.20205558337493712],[126,-63,79,-0.20418038557479756],[126,-62,64,-0.1530976664729221],[126,-62,65,-0.15701242435401364],[126,-62,66,-0.160803632052391],[126,-62,67,-0.16446982809999677],[126,-62,68,-0.1680097194441531],[126,-62,69,-0.17142218738888082],[126,-62,70,-0.17470629360180556],[126,-62,71,-0.17786128618655683],[126,-62,72,-0.18088660582067306],[126,-62,73,-0.18378189195892203],[126,-62,74,-0.18654698910229006],[126,-62,75,-0.18918195313229247],[126,-62,76,-0.1916870577108778],[126,-62,77,-0.19406280074579962],[126,-62,78,-0.19630991092149963],[126,-62,79,-0.1984293542954858],[126,-61,64,-0.1474029927766669],[126,-61,65,-0.15130404542653908],[126,-61,66,-0.1550821494733713],[126,-61,67,-0.15873584074887903],[126,-61,68,-0.16226382291986785],[126,-61,69,-0.16566497342082975],[126,-61,70,-0.16893834945214659],[126,-61,71,-0.17208319404379546],[126,-61,72,-0.17509894218457078],[126,-61,73,-0.1779852270167348],[126,-61,74,-0.18074188609634878],[126,-61,75,-0.18336896771893518],[126,-61,76,-0.18586673731074987],[126,-61,77,-0.18823568388552747],[126,-61,78,-0.19047652656675362],[126,-61,79,-0.19259022117544689],[126,-60,64,-0.14163316716516594],[126,-60,65,-0.1455197542195561],[126,-60,66,-0.14928402239365146],[126,-60,67,-0.15292450471502916],[126,-60,68,-0.15643990143836772],[126,-60,69,-0.1598290859688738],[126,-60,70,-0.16309111085132688],[126,-60,71,-0.16622521382463473],[126,-60,72,-0.16923082394192002],[126,-60,73,-0.17210756775604585],[126,-60,74,-0.17485527557083258],[126,-60,75,-0.17747398775761858],[126,-60,76,-0.17996396113744229],[126,-60,77,-0.1823256754287088],[126,-60,78,-0.18455983976039514],[126,-60,79,-0.18666739925077513],[126,-59,64,-0.13579255979056226],[126,-59,65,-0.13966392934459337],[126,-59,66,-0.14341363753535807],[126,-59,67,-0.14704021448384896],[126,-59,68,-0.15054235690281692],[126,-59,69,-0.15391893401057954],[126,-59,70,-0.1571689935104552],[126,-59,71,-0.16029176763572228],[126,-59,72,-0.16328667926011975],[126,-59,73,-0.166153348073797],[126,-59,74,-0.16889159682496946],[126,-59,75,-0.1715014576269267],[126,-59,76,-0.17398317833067312],[126,-59,77,-0.17633722896306547],[126,-59,78,-0.17856430823050284],[126,-59,79,-0.18066535008814044],[126,-58,64,-0.12988557876301188],[126,-58,65,-0.13374098785561328],[126,-58,66,-0.13747542052963946],[126,-58,67,-0.14108740389858787],[126,-58,68,-0.14457563100537352],[126,-58,69,-0.14793896672607199],[126,-58,70,-0.1511764537393021],[126,-58,71,-0.15428731856114597],[126,-58,72,-0.15727097764561782],[126,-58,73,-0.16012704355059615],[126,-58,74,-0.16285533116947204],[126,-58,75,-0.1654558640281607],[126,-58,76,-0.16792888064775713],[126,-58,77,-0.17027484097269907],[126,-58,78,-0.17249443286449506],[126,-58,79,-0.17458857866098687],[126,-57,64,-0.12391666501370835],[126,-57,65,-0.12775538010116105],[126,-57,66,-0.13147383075838703],[126,-57,67,-0.13507054099207805],[126,-57,68,-0.1385442000493725],[126,-57,69,-0.1418936683111034],[126,-57,70,-0.1451179832506888],[126,-57,71,-0.14821636545857264],[126,-57,72,-0.15118822473222782],[126,-57,73,-0.15403316623163077],[126,-57,74,-0.1567509967004631],[126,-57,75,-0.15934173075268876],[126,-57,76,-0.16180559722478616],[126,-57,77,-0.16414304559349846],[126,-57,78,-0.16635475245915843],[126,-57,79,-0.16844162809455931],[126,-56,64,-0.11789028703192894],[126,-56,65,-0.12171158445005426],[126,-56,66,-0.12541335606903092],[126,-56,67,-0.12899412269109],[126,-56,68,-0.13245256964370677],[126,-56,69,-0.1357875526619151],[126,-56,70,-0.1389981038362782],[126,-56,71,-0.14208343762641862],[126,-56,72,-0.1450429569401217],[126,-56,73,-0.14787625927792147],[126,-56,74,-0.15058314294342412],[126,-56,75,-0.15316361331901773],[126,-56,76,-0.15561788920724717],[126,-56,77,-0.1579464092377194],[126,-56,78,-0.16014983833959162],[126,-56,79,-0.1622290742796194],[126,-55,64,-0.11181093547594212],[126,-55,65,-0.1156141018904524],[126,-55,66,-0.11929850736224834],[126,-55,67,-0.12286266939316737],[126,-55,68,-0.12630526926925756],[126,-55,69,-0.12962515793173657],[126,-55,70,-0.13282136191361626],[126,-55,71,-0.13589308934189648],[126,-55,72,-0.13883973600534305],[126,-55,73,-0.14166089148776106],[126,-55,74,-0.14435634536701225],[126,-55,75,-0.14692609347943164],[126,-55,76,-0.14937034424991902],[126,-55,77,-0.15168952508757283],[126,-55,78,-0.15388428884691407],[126,-55,79,-0.15595552035468507],[126,-54,64,-0.1056831176580858],[126,-54,65,-0.10946745050261275],[126,-54,66,-0.11313381305290093],[126,-54,67,-0.11668071941623626],[126,-54,68,-0.12010684671767569],[126,-54,69,-0.12341104095922972],[126,-54,70,-0.12659232294472544],[126,-54,71,-0.1296498942702431],[126,-54,72,-0.13258314338015154],[126,-54,73,-0.13539165168864753],[126,-54,74,-0.13807519976704963],[126,-54,75,-0.1406337735965011],[126,-54,76,-0.14306757088635969],[126,-54,77,-0.14537700745813742],[126,-54,78,-0.14756272369504297],[126,-54,79,-0.14962559105710738],[126,-53,64,-0.09951135190386262],[126,-53,65,-0.10327615980518368],[126,-53,66,-0.10692381340404156],[126,-53,67,-0.11045282332084527],[126,-53,68,-0.1138618624023644],[126,-53,69,-0.11714977156872708],[126,-53,70,-0.12031556572610436],[126,-53,71,-0.1233584397449834],[126,-53,72,-0.12627777450404554],[126,-53,73,-0.12907314299955908],[126,-53,74,-0.13174431652053764],[126,-53,75,-0.13429127088931825],[126,-53,76,-0.13671419276783325],[126,-53,77,-0.13901348602944508],[126,-53,78,-0.14118977819639356],[126,-53,79,-0.1432439269428345],[126,-52,64,-0.09330016178489853],[126,-52,65,-0.09704476497487735],[126,-52,66,-0.10067305473383881],[126,-52,67,-0.10418353810487369],[126,-52,68,-0.10757488354150657],[126,-52,69,-0.11084592674210214],[126,-52,70,-0.113995676549969],[126,-52,71,-0.11702332091906253],[126,-52,72,-0.11992823294530108],[126,-52,73,-0.12270997696340968],[126,-52,74,-0.12536831470953447],[126,-52,75,-0.1279032115492894],[126,-52,76,-0.13031484277150995],[126,-52,77,-0.1326035999475701],[126,-52,78,-0.1347700973563326],[126,-52,79,-0.13681517847469338],[126,-51,64,-0.08705407022606904],[126,-51,65,-0.0907778009398289],[126,-51,66,-0.09438608349572297],[126,-51,67,-0.09787742127102028],[126,-51,68,-0.1012504782134438],[126,-51,69,-0.10450408466258909],[126,-51,70,-0.10763724323705226],[126,-51,71,-0.1106491347871631],[126,-51,72,-0.11353912441334346],[126,-51,73,-0.11630676755000147],[126,-51,74,-0.118951816115206],[126,-51,75,-0.12147422472580605],[126,-51,76,-0.12387415697825954],[126,-51,77,-0.12615199179504633],[126,-51,78,-0.12830832983671026],[126,-51,79,-0.13034399997951673],[126,-50,64,-0.08077759348665037],[126,-50,65,-0.08447979634649716],[126,-50,66,-0.08806744023161306],[126,-50,67,-0.09153902476692544],[126,-50,68,-0.09489320928426204],[126,-50,69,-0.0981288186303978],[126,-50,70,-0.10124484904081155],[126,-50,71,-0.10424047407906278],[126,-50,72,-0.10711505064180127],[126,-50,73,-0.10986812502932175],[126,-50,74,-0.11249943908191029],[126,-50,75,-0.11500893638163978],[126,-50,76,-0.11739676851989056],[126,-50,77,-0.11966330143045956],[126,-50,78,-0.12180912178831171],[126,-50,79,-0.12383504347395269],[126,-49,64,-0.07447523501532227],[126,-49,65,-0.07815526739993606],[126,-49,66,-0.08172165339804704],[126,-49,67,-0.08517288879775053],[126,-49,68,-0.08850762820741265],[126,-49,69,-0.09172469084995583],[126,-49,70,-0.0948230664228702],[126,-49,71,-0.09780192102384877],[126,-49,72,-0.1006606031420667],[126,-49,73,-0.10339864971501445],[126,-49,74,-0.10601579225112956],[126,-49,75,-0.10851196301789201],[126,-49,76,-0.11088730129564861],[126,-49,77,-0.113142159697036],[126,-49,78,-0.11527711055205869],[126,-49,79,-0.11729295235879222],[126,-48,64,-0.06815147917935005],[126,-48,65,-0.07180871157776236],[126,-48,66,-0.07535323306554798],[126,-48,67,-0.07878353551155415],[126,-48,68,-0.0820982686956947],[126,-48,69,-0.08529624608910413],[126,-48,70,-0.08837645070002575],[126,-48,71,-0.09133804098533238],[126,-48,72,-0.0941803568277021],[126,-48,73,-0.09690292557835345],[126,-48,74,-0.09950546816559247],[126,-48,75,-0.10198790526882706],[126,-48,76,-0.10435036355832361],[126,-48,77,-0.10659318200056878],[126,-48,78,-0.10871691822929508],[126,-48,79,-0.110722354982143],[126,-47,64,-0.061810784867782576],[126,-47,65,-0.06544460121765794],[126,-47,66,-0.06896666449105848],[126,-47,67,-0.07237546255728378],[126,-47,68,-0.07566964026543743],[126,-47,69,-0.07884800521008639],[126,-47,70,-0.08190953356265918],[126,-47,71,-0.08485337596848896],[126,-47,72,-0.08767886350951459],[126,-47,73,-0.09038551373255888],[126,-47,74,-0.09297303674341584],[126,-47,75,-0.09544134136642557],[126,-47,76,-0.0977905413697896],[126,-47,77,-0.10002096175650865],[126,-47,78,-0.10213314512098792],[126,-47,79,-0.104127858071287],[126,-46,64,-0.05545757896850767],[126,-46,65,-0.05906737697824671],[126,-46,66,-0.06256640156328952],[126,-46,67,-0.06595313651524137],[126,-46,68,-0.06922622165272074],[126,-46,69,-0.07238445857216513],[126,-46,70,-0.07542681646438454],[126,-46,71,-0.07835243799676683],[126,-46,72,-0.08116064526115141],[126,-46,73,-0.08385094578728636],[126,-46,74,-0.08642303862210421],[126,-46,75,-0.08887682047449197],[126,-46,76,-0.0912123919258142],[126,-46,77,-0.09343006370606277],[126,-46,78,-0.09553036303568208],[126,-46,79,-0.0975140400330533],[126,-45,64,-0.04909624971948334],[126,-45,65,-0.05268144117366358],[126,-45,66,-0.056156860121295504],[126,-45,67,-0.059520986200331305],[126,-45,68,-0.06277245410195587],[126,-45,69,-0.06591005930619176],[126,-45,70,-0.0689327638832572],[126,-45,71,-0.07183970236058679],[126,-45,72,-0.0746301876555262],[126,-45,73,-0.07730371707362105],[126,-45,74,-0.07985997837273129],[126,-45,75,-0.08229885589264763],[126,-45,76,-0.08462043675046971],[126,-45,77,-0.08682501710161816],[126,-45,78,-0.08891310846653333],[126,-45,79,-0.090885444123037],[126,-44,64,-0.042731139933987805],[126,-44,65,-0.04629115098166514],[126,-44,66,-0.04974241114612665],[126,-44,67,-0.0530833958379362],[126,-44,68,-0.05631273452666852],[126,-44,69,-0.0594292164609721],[126,-44,70,-0.06243179645439445],[126,-44,71,-0.06531960073687637],[126,-44,72,-0.06809193287192894],[126,-44,73,-0.07074827973941322],[126,-44,74,-0.07328831758415022],[126,-44,75,-0.07571191813004585],[126,-44,76,-0.07801915475998011],[126,-44,77,-0.08021030876134394],[126,-44,78,-0.0822858756372653],[126,-44,79,-0.08424657148350778],[126,-43,64,-0.036366540099724176],[126,-43,65,-0.03990081152510527],[126,-43,66,-0.04332737382538576],[126,-43,67,-0.04664469811225702],[126,-43,68,-0.04985140854231551],[126,-43,69,-0.05294628802125423],[126,-43,70,-0.05592828397382221],[126,-43,71,-0.05879651417946341],[126,-43,72,-0.06155027267364288],[126,-43,73,-0.0641890357147854],[126,-43,74,-0.06671246781705165],[126,-43,75,-0.06912042784863504],[126,-43,76,-0.07141297519583711],[126,-43,77,-0.07359037599278706],[126,-43,78,-0.07565310941686954],[126,-43,79,-0.07760187404982477],[126,-42,64,-0.030006681352102937],[126,-42,65,-0.03351466882711418],[126,-42,66,-0.0369160084910225],[126,-42,67,-0.04020916708744171],[126,-42,68,-0.04339276337146758],[126,-42,69,-0.04646557379767624],[126,-42,70,-0.04942653827389687],[126,-42,71,-0.05227476598066971],[126,-42,72,-0.05500954125640345],[126,-42,73,-0.057630329548147397],[126,-42,74,-0.06013678342821149],[126,-42,75,-0.06252874867631553],[126,-42,76,-0.06480627042751785],[126,-42,77,-0.06696959938580671],[126,-42,78,-0.06901919810339541],[126,-42,79,-0.07095574732570642],[126,-41,64,-0.023655728321540948],[126,-41,65,-0.02713690263980617],[126,-41,66,-0.030512509430193013],[126,-41,67,-0.03378101100133679],[126,-41,68,-0.03694102062118754],[126,-41,69,-0.03999130818850283],[126,-41,70,-0.04293080597012133],[126,-41,71,-0.04575861440392903],[126,-41,72,-0.048474007967531096],[126,-41,73,-0.05107644111254783],[126,-41,74,-0.053565554264762616],[126,-41,75,-0.05594117988980718],[126,-41,76,-0.05820334862463772],[126,-41,77,-0.060352295474673245],[126,-41,78,-0.06238846607665183],[126,-41,79,-0.0643125230271796],[126,-40,64,-0.0173177718546198],[126,-40,65,-0.020771619146365827],[126,-40,66,-0.024120997569036517],[126,-40,67,-0.02736436493171024],[126,-40,68,-0.030500328932450915],[126,-40,69,-0.033527652812991304],[126,-40,70,-0.03644526107920487],[126,-40,71,-0.039252245287275445],[126,-40,72,-0.041947869895580636],[126,-40,73,-0.04453157818220599],[126,-40,74,-0.047002998228317217],[126,-40,75,-0.04936194896708024],[126,-40,76,-0.0516084462983738],[126,-40,77,-0.05374270926917446],[126,-40,78,-0.05576516631966566],[126,-40,79,-0.05767646159504747],[126,-39,64,-0.010996821609414065],[126,-39,65,-0.014422843536825214],[126,-39,66,-0.017745513029676196],[126,-39,67,-0.02096328333525277],[126,-39,68,-0.02407475650192137],[126,-39,69,-0.027078689016709956],[126,-39,70,-0.029973997508683237],[126,-39,71,-0.03275976451802165],[126,-39,72,-0.03543524433082279],[126,-39,73,-0.037999868879538656],[126,-39,74,-0.040453253709278436],[126,-39,75,-0.04279520400966419],[126,-39,76,-0.04502572071248834],[126,-39,77,-0.04714500665504873],[126,-39,78,-0.04915347280921534],[126,-39,79,-0.05105174457620132],[126,-38,64,-0.004696798524846724],[126,-38,65,-0.008094512457380687],[126,-38,66,-0.011390007560298843],[126,-38,67,-0.01458173245921468],[126,-38,68,-0.017668283475934743],[126,-38,69,-0.02064841024865316],[126,-38,70,-0.023521021417944654],[126,-38,71,-0.026285190378470658],[126,-38,72,-0.028940161096410733],[126,-38,73,-0.0314853539925396],[126,-38,74,-0.03392037189117447],[126,-38,75,-0.036245006034680616],[126,-38,76,-0.03845924216378871],[126,-38,77,-0.04056326666359322],[126,-38,78,-0.042557472775288874],[126,-38,79,-0.0444424668736203],[126,-37,64,0.0015784728361081246],[126,-37,65,-0.0017904663330793325],[126,-37,66,-0.005058336838139166],[126,-37,67,-0.00822358262550038],[126,-37,68,-0.011284794216512739],[126,-37,69,-0.014240714309978308],[126,-37,70,-0.017090243450490816],[126,-37,71,-0.019832445762490103],[126,-37,72,-0.02246655475005066],[126,-37,73,-0.024991979162322098],[126,-37,74,-0.027408308924843583],[126,-37,75,-0.02971532113642794],[126,-37,76,-0.031912986131857],[126,-37,77,-0.034001473610269284],[126,-37,78,-0.035981158829290094],[126,-37,79,-0.03785262886488128],[126,-36,64,0.007825272069022837],[126,-36,65,0.004485558435779358],[126,-36,66,0.0012457473542839548],[126,-36,67,-0.0018926003875716635],[126,-36,68,-0.004928069439759097],[126,-36,69,-0.007859395474720032],[126,-36,70,-0.010685470837782263],[126,-36,71,-0.013405350263300364],[126,-36,72,-0.016018256656535113],[126,-36,73,-0.01852358694119005],[126,-36,74,-0.0209209179728298],[126,-36,75,-0.023210012517872136],[126,-36,76,-0.0253908252983982],[126,-36,77,-0.027463509102661265],[126,-36,78,-0.029428420961344348],[126,-36,79,-0.031286128389539924],[126,-35,64,0.01403999083670382],[126,-35,65,0.01072993740381345],[126,-35,66,0.007518605079966156],[126,-35,67,0.004407559440130826],[126,-35,68,0.001398221773649344],[126,-35,69,-0.0015081364821863952],[126,-35,70,-0.004310399374377161],[126,-35,71,-0.007007612132183594],[126,-35,72,-0.009598986930841713],[126,-35,73,-0.012083908720940784],[126,-35,74,-0.01446194112368615],[126,-35,75,-0.01673283239174539],[126,-35,76,-0.018896521435915692],[126,-35,77,-0.02095314391749603],[126,-35,78,-0.022903038406414167],[126,-35,79,-0.0247467526050823],[126,-34,64,0.020219140903759758],[126,-34,65,0.016939166137091344],[126,-34,66,0.013756716325042162],[126,-34,67,0.01067336188003365],[126,-34,68,0.007690530095671555],[126,-34,69,0.004809499598747657],[126,-34,70,0.002031394735422465],[126,-34,71,-6.428201083282792E-4],[126,-34,72,-0.0032123462520154966],[126,-34,73,-0.005676556531610366],[126,-34,74,-0.008035001176406986],[126,-34,75,-0.010287413751473018],[126,-34,76,-0.012433717165928226],[126,-34,77,-0.01447402974693357],[126,-34,78,-0.016408671379438577],[126,-34,79,-0.018238169711665808],[126,-33,64,0.026359362297323274],[126,-33,65,0.023109868396300248],[126,-33,66,0.01995668920351079],[126,-33,67,0.016901400016827495],[126,-33,68,0.013945434196081852],[126,-33,69,0.011090077633731155],[126,-33,70,0.008336463159698604],[126,-33,71,0.005685564880472449],[126,-33,72,0.003138192452452171],[126,-33,73,6.949852896155351E-4],[126,-33,74,-0.0016435932947047593],[126,-33,75,-0.0038772620116417356],[126,-33,76,-0.006005927586445581],[126,-33,77,-0.008029690813851187],[126,-33,78,-0.009948852679210085],[126,-33,79,-0.011763920545364237],[126,-32,64,0.03245743159360248],[126,-32,65,0.029238804446225952],[126,-32,66,0.02611526828873545],[126,-32,67,0.023088403350078],[126,-32,68,0.02015964911529533],[126,-32,69,0.017330298815077194],[126,-32,70,0.014601493849485614],[126,-32,71,0.011974218145933802],[126,-32,72,0.00944929245140591],[126,-32,73,0.007027368558992553],[126,-32,74,0.004708923468532911],[126,-32,75,0.002494253481651554],[126,-32,76,3.8346823096169214E-4],[126,-32,77,-0.0016235153564537752],[126,-32,78,-0.003526979161330268],[126,-32,79,-0.005327410040256053],[126,-31,64,0.0385102703304141],[126,-31,65,0.03532287949169832],[126,-31,66,0.03222934307186853],[126,-31,67,0.029231246274211364],[126,-31,68,0.026330034764992072],[126,-31,69,0.02352700918211237],[126,-31,70,0.020823319577935928],[126,-31,71,0.018219959796361707],[126,-31,72,0.015717761784134643],[126,-31,73,0.013317389836467797],[126,-31,74,0.0110193347767642],[126,-31,75,0.008823908070730857],[126,-31,76,0.006731235874653851],[126,-31,77,0.004741253017944813],[126,-31,78,0.0028536969199164375],[126,-31,79,0.0010681014408038259],[126,-30,64,0.044514953545857994],[126,-30,65,0.04135915224015774],[126,-30,66,0.03829595654736939],[126,-30,67,0.035326956686034694],[126,-30,68,0.0324536045567021],[126,-30,69,0.029677208269895394],[126,-30,70,0.026998926608245877],[126,-30,71,0.024419763422868],[126,-30,72,0.021940561963966987],[126,-30,73,0.01956199914575396],[126,-30,74,0.017284579745456496],[126,-30,75,0.015108630536716516],[126,-30,76,0.013034294357144205],[126,-30,77,0.01106152411013972],[126,-30,78,0.009190076700937633],[126,-30,79,0.0074195069068964115],[126,-29,64,0.05046871844281342],[126,-29,65,0.04734484359052815],[126,-29,66,0.04431231392528456],[126,-29,67,0.041372724719464626],[126,-29,68,0.03852753415802668],[126,-29,69,0.03577805788597854],[126,-29,70,0.03312546349001477],[126,-29,71,0.030570764914390036],[126,-29,72,0.028114816811022236],[126,-29,73,0.02575830882389607],[126,-29,74,0.02350175980756186],[126,-29,75,0.021345511980013],[126,-29,76,0.01928972500971793],[126,-29,77,0.017334370036914182],[126,-29,78,0.015479223629122685],[126,-29,79,0.01372386167089934],[126,-28,64,0.05636897317942724],[126,-28,65,0.05327734544856089],[126,-28,66,0.0502757914704649],[126,-28,67,0.04736591160763959],[126,-28,68,0.04454917037666861],[126,-28,69,0.041826891015387946],[126,-28,70,0.0392002499842109],[126,-28,71,0.03667027140168877],[126,-28,72,0.03423782141429532],[126,-28,73,0.03190360250050761],[126,-28,74,0.029668147708978743],[126,-28,75,0.0275318148310848],[126,-28,76,0.02549478050762144],[126,-28,77,0.023557034269760857],[126,-28,78,0.02171837251422115],[126,-28,79,0.01997839241267274],[126,-27,64,0.06221330578573203],[126,-27,65,0.05915422966879491],[126,-27,66,0.05618394546886507],[126,-27,67,0.05330405867255528],[126,-27,68,0.05051604017241329],[126,-27,69,0.04782122085396112],[126,-27,70,0.045220786116886735],[126,-27,71,0.042715770330468805],[126,-27,72,0.040307051223219204],[126,-27,73,0.037995344206819937],[126,-27,74,0.03578119663414758],[126,-27,75,0.03366498199166723],[126,-27,76,0.03164689402597398],[126,-27,77,0.029726940804588597],[126,-27,78,0.027904938710963],[126,-27,79,0.026180506373720602],[126,-26,64,0.06799949320609644],[126,-26,65,0.06497325712282775],[126,-26,66,0.0620345213206136],[126,-26,67,0.0591848964419206],[126,-26,68,0.05642585979675552],[126,-26,69,0.05375874996974028],[126,-26,70,0.051184761361339204],[126,-26,71,0.04870493866331371],[126,-26,72,0.046320171268393606],[126,-26,73,0.04403118761423497],[126,-26,74,0.04183854946146692],[126,-26,75,0.0397426461061009],[126,-26,76,0.037743688526083785],[126,-26,77,0.03584170346210391],[126,-26,78,0.03403652743260133],[126,-26,79,0.03232780068300867],[126,-25,64,0.07372551046766163],[126,-25,65,0.07073238689405603],[126,-25,66,0.06782546276001689],[126,-25,67,0.06500635389338927],[126,-25,68,0.0622765440603289],[126,-25,69,0.059637379592574535],[126,-25,70,0.05709006394886684],[126,-25,71,0.0546356522105923],[126,-25,72,0.052275045511639195],[126,-25,73,0.05000898540253906],[126,-25,74,0.047838048148690304],[126,-25,75,0.0457626389629443],[126,-25,76,0.04378298617232956],[126,-25,77,0.041899135319025116],[126,-25,78,0.04011094319553754],[126,-25,79,0.038418071814102506],[126,-24,64,0.07938953997490683],[126,-24,65,0.07642978559902791],[126,-24,66,0.07355492120264262],[126,-24,67,0.07076656782631596],[126,-24,68,0.06806621572828708],[126,-24,69,0.0654552190320834],[126,-24,70,0.06293479030828164],[126,-24,71,0.06050599509048871],[126,-24,72,0.05816974632553251],[126,-24,73,0.055926798757933494],[126,-24,74,0.053777743248457854],[126,-24,75,0.05172300102702709],[126,-24,76,0.04976281787976411],[126,-24,77,0.04789725827028479],[126,-24,78,0.04612619939519058],[126,-24,79,0.04444932517378053],[126,-23,64,0.08498998093005161],[126,-23,65,0.08206383683511387],[126,-23,66,0.07922126521917816],[126,-23,67,0.07646389236073481],[126,-23,68,0.07379321504333236],[126,-23,69,0.07121059522367545],[126,-23,70,0.06871725463386313],[126,-23,71,0.06631426931784923],[126,-23,72,0.0640025641021067],[126,-23,73,0.06178290700056788],[126,-23,74,0.05965590355364936],[126,-23,75,0.057621991101622805],[126,-23,76,0.05568143299212491],[126,-23,77,0.053834312721908084],[126,-23,78,0.05208052801278762],[126,-23,79,0.050419784821807645],[126,-22,64,0.09052545887943975],[126,-22,65,0.0876331507546404],[126,-22,66,0.08482309013622125],[126,-22,67,0.08209690856371155],[126,-22,68,0.07945610937654679],[126,-22,69,0.07690206240277586],[126,-22,70,0.07443599858191219],[126,-22,71,0.07205900452199909],[126,-22,72,0.06977201699087898],[126,-22,73,0.06757581734173612],[126,-22,74,0.06547102587271802],[126,-22,75,0.06345809612090436],[126,-22,76,0.06153730909040944],[126,-22,77,0.059708767414721975],[126,-22,78,0.057972389453240236],[126,-22,79,0.05632790332202453],[126,-21,64,0.09599483538605869],[126,-21,65,0.09313657376564388],[126,-21,66,0.09035922776415128],[126,-21,67,0.08766443420322534],[126,-21,68,0.08505370300617565],[126,-21,69,0.08252841190741889],[126,-21,70,0.08008980109606012],[126,-21,71,0.07773896779368572],[126,-21,72,0.07547686076635984],[126,-21,73,0.07330427477088797],[126,-21,74,0.0712218449351607],[126,-21,75,0.06923004107283981],[126,-21,76,0.06732916193217486],[126,-21,77,0.06551932937905691],[126,-21,78,0.06380048251426396],[126,-21,79,0.06217237172491841],[126,-20,64,0.10139721782788447],[126,-20,65,0.09857319835892853],[126,-20,66,0.09582875625177067],[126,-20,67,0.09316553362926139],[126,-20,68,0.09058504702405279],[126,-20,69,0.08808868210888543],[126,-20,70,0.08567768836101153],[126,-20,71,0.08335317366083039],[126,-20,72,0.08111609882472015],[126,-20,73,0.0789672720721395],[126,-20,74,0.07690734342680339],[126,-20,75,0.07493679905219963],[126,-20,76,0.07305595552123545],[126,-20,77,0.07126495402011568],[126,-20,78,0.06956375448641194],[126,-20,79,0.06795212968134279],[126,-19,64,0.10673196932222173],[126,-19,65,0.10394237306160548],[126,-19,66,0.10123101006788737],[126,-19,67,0.09859952778229308],[126,-19,68,0.0960494493698385],[126,-19,69,0.09358216847056322],[126,-19,70,0.0911989438849019],[126,-19,71,0.08890089419326208],[126,-19,72,0.08668899230979887],[126,-19,73,0.08456405997045535],[126,-19,74,0.0825267621550766],[126,-19,75,0.08057760144386106],[126,-19,76,0.07871691230793942],[126,-19,77,0.07694485533418416],[126,-19,78,0.07526141138420817],[126,-19,79,0.07366637568756873],[126,-18,64,0.11199871877616774],[126,-18,65,0.10924371251723497],[126,-18,66,0.10656559010996747],[126,-18,67,0.10396600432927794],[126,-18,68,0.10144648499319864],[126,-18,69,0.09900843373515844],[126,-18,70,0.09665311871039362],[126,-18,71,0.0943816692365661],[126,-18,72,0.09219507036857666],[126,-18,73,0.09009415740763638],[126,-18,74,0.08807961034441825],[126,-18,75,0.08615194823653616],[126,-18,76,0.0843115235201547],[126,-18,77,0.08255851625582522],[126,-18,78,0.08089292830850814],[126,-18,79,0.0793145774618016],[126,-17,64,0.11719737106290662],[126,-17,65,0.11447710769228259],[126,-17,66,0.1118323739395638],[126,-17,67,0.1092648279268742],[126,-17,68,0.10677600614363292],[126,-17,69,0.10436731823996015],[126,-17,70,0.10204004175421666],[126,-17,71,0.09979531677474751],[126,-17,72,0.0976341405358182],[126,-17,73,0.09555736194781106],[126,-17,74,0.09356567606149468],[126,-17,75,0.09165961846662352],[126,-17,76,0.08983955962466328],[126,-17,77,0.08810569913574151],[126,-17,78,0.0864580599397845],[126,-17,79,0.08489648245185588],[126,-16,64,0.12232811732400917],[126,-16,65,0.1196427362090633],[126,-16,66,0.11703152614469536],[126,-16,67,0.11449615061205287],[126,-16,68,0.1120381527881209],[126,-16,69,0.10965895036033568],[126,-16,70,0.10735983027533036],[126,-16,71,0.10514194342188377],[126,-16,72,0.1030062992480607],[126,-16,73,0.10095376031260761],[126,-16,74,0.09898503677042425],[126,-16,75,0.09710068079236067],[126,-16,76,0.0953010809191378],[126,-16,77,0.09358645634949458],[126,-16,78,0.09195685116251728],[126,-16,79,0.09041212847416924],[126,-15,64,0.1273914453978272],[126,-15,65,0.12474107280526048],[126,-15,66,0.12216350882926674],[126,-15,67,0.11966042232019669],[126,-15,68,0.11723336315668631],[126,-15,69,0.11488375708154808],[126,-15,70,0.11261290047179551],[126,-15,71,0.11042195504286689],[126,-15,72,0.1083119424870409],[126,-15,73,0.10628373904610433],[126,-15,74,0.10433807001809658],[126,-15,75,0.10247550419837481],[126,-15,76,0.10069644825480473],[126,-15,77,0.09900114103717372],[126,-15,78,0.09738964782078519],[126,-15,79,0.09586185448425355],[126,-14,64,0.13238815037375717],[126,-14,65,0.129772899919799],[126,-14,66,0.12722909222930423],[126,-14,67,0.1247584015304588],[126,-14,68,0.1223623844156434],[126,-14,69,0.1200424746986668],[126,-14,70,0.1177999782061312],[126,-14,71,0.11563606750299571],[126,-14,72,0.11355177655233073],[126,-14,73,0.11154799530932191],[126,-14,74,0.10962546424935093],[126,-14,75,0.10778476883039523],[126,-14,76,0.10602633388955052],[126,-14,77,0.1043504179737762],[126,-14,78,0.10275710760482071],[126,-14,79,0.10124631147834362],[126,-13,64,0.13731934527247458],[126,-13,65,0.13473931840516906],[126,-13,66,0.13222936545610586],[126,-13,67,0.1297911660384805],[126,-13,68,0.1274262834686316],[126,-13,69,0.12513615964467273],[126,-13,70,0.12292210985925467],[126,-13,71,0.12078531754652566],[126,-13,72,0.11872682896328113],[126,-13,73,0.11674754780436036],[126,-13,74,0.11484822975212139],[126,-13,75,0.11302947696023069],[126,-13,76,0.11129173247157731],[126,-13,77,0.10963527457040656],[126,-13,78,0.10806021106863273],[126,-13,79,0.10656647352634863],[126,-12,64,0.14218647185228772],[126,-12,65,0.1396417583663524],[126,-12,66,0.13716574736645892],[126,-12,67,0.13476012385662284],[126,-12,68,0.13242645788558982],[126,-12,69,0.13016619944691243],[126,-12,70,0.1279806733131611],[126,-12,71,0.12587107380433082],[126,-12,72,0.1238384594904337],[126,-12,73,0.12188374782834155],[126,-12,74,0.12000770973270247],[126,-12,75,0.11821096408117238],[126,-12,76,0.11649397215377055],[126,-12,77,0.11485703200645192],[126,-12,78,0.11330027277885857],[126,-12,79,0.11182364893626817],[126,-11,64,0.14699131154132994],[126,-11,65,0.14448199012606988],[126,-11,66,0.1420399975596397],[126,-11,67,0.13966702424142452],[126,-11,68,0.137364646959382],[126,-11,69,0.13513432381161117],[126,-11,70,0.1329773890620528],[126,-11,71,0.1308950479303852],[126,-11,72,0.12888837131610564],[126,-11,73,0.12695829045685902],[126,-11,74,0.12510559152084288],[126,-11,75,0.12333091013352315],[126,-11,76,0.12163472583847412],[126,-11,77,0.12001735649243539],[126,-11,78,0.1184789525945451],[126,-11,79,0.11701949154977076],[126,-10,64,0.15173599649581704],[126,-10,65,0.14926213531657506],[126,-10,66,0.1468542275014263],[126,-10,67,0.14451396884851653],[126,-10,68,0.14224294289030892],[126,-10,69,0.14004261583668076],[126,-10,70,0.1379143314521506],[126,-10,71,0.1358593058673001],[126,-10,72,0.1338786223243824],[126,-10,73,0.13197322585717408],[126,-10,74,0.13014391790490443],[126,-10,75,0.1283913508604949],[126,-10,76,0.12671602255292103],[126,-10,77,0.12511827066379078],[126,-10,78,0.12359826707809929],[126,-10,79,0.12215601216917882],[126,-9,64,0.15642302078421366],[126,-9,65,0.15398467809783922],[126,-9,66,0.15161091177496322],[126,-9,67,0.14930342301483612],[126,-9,68,0.1470638020983429],[126,-9,69,0.14489352335265715],[126,-9,70,0.14279394005002644],[126,-9,71,0.1407662792407537],[126,-9,72,0.1388116365203601],[126,-9,73,0.1369309707309947],[126,-9,74,0.13512509859692023],[126,-9,75,0.13339468929430587],[126,-9,76,0.13174025895514518],[126,-9,77,0.13016216510538658],[126,-9,78,0.12866060103724197],[126,-9,79,0.1272355901156894],[126,-8,64,0.16105525169750579],[126,-8,65,0.15865247650232672],[126,-8,66,0.1563128994586811],[126,-8,67,0.15403822716833948],[126,-8,68,0.15183005666328964],[126,-8,69,0.14968987039197468],[126,-8,70,0.1476190311396649],[126,-8,71,0.14561877688301983],[126,-8,72,0.14369021557883732],[126,-8,73,0.14183431988704387],[126,-8,74,0.14005192182776327],[126,-8,75,0.1383437073726913],[126,-8,76,0.13671021097059344],[126,-8,77,0.13515181000701704],[126,-8,78,0.13366871919817935],[126,-8,79,0.13226098491904892],[126,-7,64,0.1656359411853463],[126,-7,65,0.16326877390612138],[126,-7,66,0.1609634256310324],[126,-7,67,0.15872160836497495],[126,-7,68,0.1565449258926357],[126,-7,69,0.15443486878633517],[126,-7,70,0.1523928093480037],[126,-7,71,0.1504199964853511],[126,-7,72,0.14851755052221827],[126,-7,73,0.1466864579431716],[126,-7,74,0.14492756607217638],[126,-7,75,0.14324157768557344],[126,-7,76,0.1416290455591802],[126,-7,77,0.14009036694960453],[126,-7,78,0.13862577800973486],[126,-7,79,0.13723534813842309],[126,-6,64,0.1701687374181784],[126,-6,65,0.1678372106265179],[126,-6,66,0.16556612300215223],[126,-6,67,0.16335719195302734],[126,-6,68,0.16121202801719525],[126,-6,69,0.15913212989227943],[126,-6,70,0.15711887939907287],[126,-6,71,0.15517353637932874],[126,-6,72,0.15329723352773383],[126,-6,73,0.1514909711581236],[126,-6,74,0.1497556119037765],[126,-6,75,0.14809187535201085],[126,-6,76,0.14650033261290452],[126,-6,77,0.14498140082222988],[126,-6,78,0.14353533757856263],[126,-6,79,0.14216223531458172],[126,-5,64,0.1746576964754667],[126,-5,65,0.17236183564619856],[126,-5,66,0.17012503367257203],[126,-5,67,0.16794901336495915],[126,-5,68,0.16583539201467856],[126,-5,69,0.1637856764450959],[126,-5,70,0.16180125799685618],[126,-5,71,0.15988340744730856],[126,-5,72,0.15803326986411514],[126,-5,73,0.15625185939309771],[126,-5,74,0.1545400539801679],[126,-5,75,0.15289859002755524],[126,-5,76,0.15132805698416163],[126,-5,77,0.1498288918701276],[126,-5,78,0.14840137373557372],[126,-5,79,0.147045618053534],[126,-4,64,0.17910729415977988],[126,-4,65,0.17684711846374757],[126,-4,66,0.1746446210187318],[126,-4,67,0.17250153003649626],[126,-4,68,0.17041946956093268],[126,-4,69,0.1683999545408036],[126,-4,70,0.16644438583661914],[126,-4,71,0.1645540451617058],[126,-4,72,0.16273008995745775],[126,-4,73,0.16097354820282728],[126,-4,74,0.15928531315789773],[126,-4,75,0.15766613804175444],[126,-4,76,0.15611663064448222],[126,-4,77,0.15463724787337274],[126,-4,78,0.1532282902333092],[126,-4,79,0.1518898962413412],[126,-3,64,0.1835224379368755],[126,-3,65,0.18129796107064666],[126,-3,66,0.17912978170543692],[126,-3,67,0.17701963345310234],[126,-3,68,0.17496914710899603],[126,-3,69,0.17297984574635972],[126,-3,70,0.17105313974485148],[126,-3,71,0.16919032175326387],[126,-3,72,0.16739256158642535],[126,-3,73,0.16566090105633902],[126,-3,74,0.16399624873740726],[126,-3,75,0.1623993746659499],[126,-3,76,0.16087090497385137],[126,-3,77,0.15941131645641782],[126,-3,78,0.15802093107440973],[126,-3,79,0.15669991039026576],[126,-2,64,0.18790847900187013],[126,-2,65,0.18571971005483978],[126,-2,66,0.18358585782534997],[126,-2,67,0.18150866132393406],[126,-2,68,0.1794897580960617],[126,-2,69,0.17753067933818445],[126,-2,70,0.17563284494791565],[126,-2,71,0.17379755850840362],[126,-2,72,0.17202600220688624],[126,-2,73,0.17031923168748297],[126,-2,74,0.16867817083807302],[126,-2,75,0.1671036065114665],[126,-2,76,0.1655961831807059],[126,-2,77,0.1641563975285748],[126,-2,78,0.16278459297128411],[126,-2,79,0.16148095411634933],[126,-1,64,0.19227122447128175],[126,-1,65,0.19011816883065258],[126,-1,66,0.18801864916529853],[126,-1,67,0.1859744098830559],[126,-1,68,0.18398709527812718],[126,-1,69,0.18205824466877873],[126,-1,70,0.18018928746917917],[126,-1,71,0.1783815381954268],[126,-1,72,0.1766361914057597],[126,-1,73,0.17495431657500438],[126,-1,74,0.17333685290310763],[126,-1,75,0.1717846040579648],[126,-1,76,0.17029823285237544],[126,-1,77,0.168878255855207],[126,-1,78,0.16752503793673834],[126,-1,79,0.16623878674819015],[126,0,64,0.19661694970105714],[126,0,65,0.1944996099951768],[126,0,66,0.19243442559951174],[126,0,67,0.19042314631803126],[126,0,68,0.18846742319244325],[126,0,69,0.18656880366155082],[126,0,70,0.18472872665474482],[126,0,71,0.18294851761968867],[126,0,72,0.1812293834841845],[126,0,73,0.17957240755227655],[126,0,74,0.1779785443344417],[126,0,75,0.1764486143120726],[126,0,76,0.1749832986360882],[126,0,77,0.1735831337597562],[126,0,78,0.17224850600568964],[126,0,79,0.17097964606703642],[126,1,64,0.20095241073069103],[126,1,65,0.1988707878112318],[126,1,66,0.19683993960990065],[126,1,67,0.19486162132599816],[126,1,68,0.19293749074787991],[126,1,69,0.1910691034339671],[126,1,70,0.18925790782789653],[126,1,71,0.1875052403078602],[126,1,72,0.18581232017012927],[126,1,73,0.18418024454681214],[126,1,74,0.18260998325770228],[126,1,75,0.18110237359641668],[126,1,76,0.17965811505066343],[126,1,77,0.17827776395671935],[126,1,78,0.1769617280880833],[126,1,79,0.17571026117832134],[126,2,64,0.20528444543021152],[126,2,65,0.20323854021441234],[126,2,66,0.20124202917902767],[126,2,67,0.1992966729178225],[126,2,68,0.19740413596489426],[126,2,69,0.19556598199734077],[126,2,70,0.19378366897206623],[126,2,71,0.19205854419677804],[126,2,72,0.19039183933516735],[126,2,73,0.188784665346323],[126,2,74,0.18723800735823826],[126,2,75,0.18575271947560368],[126,2,76,0.18432951952173315],[126,2,77,0.18296898371469772],[126,2,78,0.18167154127763585],[126,2,79,0.18043746898325463],[126,3,64,0.20961409816305976],[126,3,65,0.2076039245971547],[126,3,66,0.2056417650911303],[126,3,67,0.2037293856232284],[126,3,68,0.20186845746309812],[126,3,69,0.2000605523961292],[126,3,70,0.19830713788192622],[126,3,71,0.19660957214697317],[126,3,72,0.1949690992114831],[126,3,73,0.1933868438504791],[126,3,74,0.19186380648897117],[126,3,75,0.19040085803141726],[126,3,76,0.18899873462532002],[126,3,77,0.18765803235902878],[126,3,78,0.18637920189372092],[126,3,79,0.1851625430295737],[126,4,64,0.21393770898832454],[126,4,65,0.21196330251101791],[126,4,66,0.2100355310794183],[126,4,67,0.20815616603027454],[126,4,68,0.2063268853422624],[126,4,69,0.20454926888201197],[126,4,70,0.20282479358427763],[126,4,71,0.2011548285662993],[126,4,72,0.19954063017634938],[126,4,73,0.19798333697651227],[126,4,74,0.19648396465956175],[126,4,75,0.19504340090012284],[126,4,76,0.1936624001399685],[126,4,77,0.19234157830752652],[126,4,78,0.19108140747156344],[126,4,79,0.18988221042906206],[126,5,64,0.21825148673494055],[126,5,65,0.21631290282825577],[126,5,66,0.21441957677584733],[126,5,67,0.2125732852311657],[126,5,68,0.21077571283917063],[126,5,69,0.20902844750409688],[126,5,70,0.20733297559136088],[126,5,71,0.20569067706366662],[126,5,72,0.20410282055129525],[126,5,73,0.20257055835663051],[126,5,74,0.20109492139278573],[126,5,75,0.19967681405651438],[126,5,76,0.19831700903526162],[126,5,77,0.19701614204842455],[126,5,78,0.19577470652279383],[126,5,79,0.1945930482021908],[126,6,64,0.22255163633660713],[126,6,65,0.22064894886535025],[126,6,66,0.2187901446137861],[126,6,67,0.2169770054947633],[126,6,68,0.2152112227608759],[126,6,69,0.21349439229402145],[126,6,70,0.21182800982910832],[126,6,71,0.21021346611196245],[126,6,72,0.2086520419914234],[126,6,73,0.20714490344567993],[126,6,74,0.20569309654270984],[126,6,75,0.2042975423350093],[126,6,76,0.2029590316884642],[126,6,77,0.20167822004543645],[126,6,78,0.20045562212203372],[126,6,79,0.19929160653957956],[126,7,64,0.2268343622572374],[126,7,65,0.22496766185425143],[126,7,66,0.22314347334375406],[126,7,67,0.22136358382552912],[126,7,68,0.2196296910855573],[126,7,69,0.21794339890744063],[126,7,70,0.21630621231798008],[126,7,71,0.21471953276695965],[126,7,72,0.21318465324112534],[126,7,73,0.21170275331240884],[126,7,74,0.21027489412026235],[126,7,75,0.20890201328828806],[126,7,76,0.2075849197750146],[126,7,77,0.20632428865889596],[126,7,78,0.20512065585749928],[126,7,79,0.20397441278089623],[126,8,64,0.23109587185950342],[126,8,65,0.2292652643562283],[126,8,66,0.22747580149130475],[126,8,67,0.22572927546416588],[126,8,68,0.22402739050465115],[126,8,69,0.22237175820637667],[126,8,70,0.22076389279427155],[126,8,71,0.21920520632632579],[126,8,72,0.21769700382954316],[126,8,73,0.21624047837014426],[126,8,74,0.2148367060578934],[126,8,75,0.21348664098472359],[126,8,76,0.21219111009752067],[126,8,77,0.21095080800513444],[126,8,78,0.2097662917195896],[126,8,79,0.20863797533150874],[126,9,64,0.23533237871658452],[126,9,65,0.23353798361844297],[126,9,66,0.2317833707571687],[126,9,67,0.23007033733007687],[126,9,68,0.2284005939063699],[126,9,69,0.22677575978255093],[126,9,70,0.22519735827201293],[126,9,71,0.22366681192885218],[126,9,72,0.22218543770589638],[126,9,73,0.22075444204699524],[126,9,74,0.2193749159134445],[126,9,75,0.21804782974472015],[126,9,76,0.21677402835338144],[126,9,77,0.21555422575421423],[126,9,78,0.21438899992758242],[126,9,79,0.21327878751700402],[126,10,64,0.23954010586723112],[126,10,65,0.23778205487335757],[126,10,66,0.23606242935976723],[126,10,67,0.23438303140574746],[126,10,68,0.23274557780072125],[126,10,69,0.23115169542180725],[126,10,70,0.22960291654557063],[126,10,71,0.22810067409401236],[126,10,72,0.22664629681478776],[126,10,73,0.22524100439570027],[126,10,74,0.22388590251334484],[126,10,75,0.22258197781607414],[126,10,76,0.2213300928411478],[126,10,77,0.22013098086613692],[126,10,78,0.21898524069455028],[126,10,79,0.21789333137569933],[126,11,64,0.24371528901392392],[126,11,65,0.24199372458075313],[126,11,66,0.24030923531987286],[126,11,67,0.2386636280628313],[126,11,68,0.23705862568580172],[126,11,69,0.2354958625094018],[126,11,70,0.23397687963272495],[126,11,71,0.23250312020162667],[126,11,72,0.2310759246112568],[126,11,73,0.22969652564288567],[126,11,74,0.22836604353489875],[126,11,75,0.2270854809881282],[126,11,76,0.22585571810538962],[126,11,77,0.22467750726528812],[126,11,78,0.22355146793026504],[126,11,79,0.22247808138890246],[126,12,64,0.24785417966423734],[126,12,65,0.24616925361247188],[126,12,66,0.24452005968753043],[126,12,67,0.24290840933005092],[126,12,68,0.2413360313554792],[126,12,69,0.23980456737627287],[126,12,70,0.23831556715833857],[126,12,71,0.23687048391174348],[126,12,72,0.23547066951569895],[126,12,73,0.23411736967785401],[126,12,74,0.2328117190277833],[126,12,75,0.23155473614483246],[126,12,76,0.23034731852018775],[126,12,77,0.22919023745323963],[126,12,78,0.22808413288220786],[126,12,79,0.22702950814904355],[126,13,64,0.2519530482155168],[126,13,65,0.250304920379991],[126,13,66,0.24869118971134702],[126,13,67,0.24711367210302115],[126,13,68,0.24557410214857295],[126,13,69,0.24407412858640226],[126,13,70,0.24261530967872497],[126,13,71,0.2411991085248516],[126,13,72,0.2398268883087613],[126,13,73,0.23849990748101157],[126,13,74,0.23721931487487058],[126,13,75,0.23598614475682866],[126,13,76,0.234801311811364],[126,13,77,0.23366560606002484],[126,13,78,0.2325796877148003],[126,13,79,0.23154408196579446],[126,14,64,0.2560081869826398],[126,14,65,0.2543970239045976],[126,14,66,0.25281893194991706],[126,14,67,0.2512757312957654],[126,14,68,0.24976916213929928],[126,14,69,0.24830088016503044],[126,14,70,0.24687245194648333],[126,14,71,0.24548535028218416],[126,14,72,0.24414094946597586],[126,14,73,0.2428405204916999],[126,14,74,0.24158522619212952],[126,14,75,0.24037611631231404],[126,14,76,0.2392141225172063],[126,14,77,0.2381000533336376],[126,14,78,0.23703458902661068],[126,14,79,0.236018276409928],[126,15,64,0.26001591316905365],[126,15,65,0.2584418868303585],[126,15,66,0.2568996153255816],[126,15,67,0.2553909229341191],[126,15,68,0.2539175552691765],[126,15,69,0.25248117476792714],[126,15,70,0.25108335611599675],[126,15,71,0.2497255816063157],[126,15,72,0.24840923643233265],[126,15,73,0.24713560391562728],[126,15,74,0.24590586066781456],[126,15,75,0.2447210716868896],[126,15,76,0.24358218538789478],[126,15,77,0.24249002856796775],[126,15,78,0.24144530130574304],[126,15,79,0.24044857179512324],[126,16,64,0.26397257178094957],[126,16,65,0.26243585837974337],[126,16,66,0.26092959412037503],[126,16,67,0.259455607190875],[126,16,68,0.25801564842024766],[126,16,69,0.2566113867915679],[126,16,70,0.2552444048894469],[126,16,71,0.2539161942819043],[126,16,72,0.2526281508366419],[126,16,73,0.25138156997175726],[126,16,74,0.2501776418407884],[126,16,75,0.24901744645224083],[126,16,76,0.24790194872347504],[126,16,77,0.24683199346901552],[126,16,78,0.24580830032325507],[126,16,79,0.24483145859756805],[126,17,64,0.2678745384847538],[126,17,65,0.2663753172520844],[126,17,66,0.26490525091434686],[126,17,67,0.2634661713628617],[126,17,68,0.26205983442980785],[126,17,69,0.2606879154244096],[126,17,70,0.2593520046035394],[126,17,71,0.2580536025767714],[126,17,72,0.25679411564588345],[126,17,73,0.2555748510788441],[126,17,74,0.25439701231817674],[126,17,75,0.25326169412385074],[126,17,76,0.2521698776505795],[126,17,77,0.25112242545958546],[126,17,78,0.2501200764648065],[126,17,79,0.24916344081355501],[126,18,64,0.271718222407722],[126,18,65,0.2702566744646559],[126,18,66,0.2688229994660379],[126,18,67,0.26741903278972784],[126,18,68,0.2660465350464124],[126,18,69,0.26470718763903806],[126,18,70,0.263402588256709],[126,18,71,0.2621342463030899],[126,18,72,0.2609035782593079],[126,18,73,0.2597119029813875],[126,18,74,0.2585604369321205],[126,18,75,0.2574502893475071],[126,18,76,0.25638245733766035],[126,18,77,0.25535782092222664],[126,18,78,0.25437713800029893],[126,18,79,0.25344103925483497],[126,19,64,0.2755000688817402],[126,19,65,0.2740763761364772],[126,19,66,0.27267928753521764],[126,19,67,0.2713106417145448],[126,19,68,0.26997220382727616],[126,19,69,0.2686656611252967],[126,19,70,0.2673926184769171],[126,19,71,0.2661545938187942],[126,19,72,0.26495301354240547],[126,19,73,0.2637892078151169],[126,19,74,0.26266440583574036],[126,19,75,0.26157973102472165],[126,19,76,0.260536196148848],[126,19,77,0.25953469838052784],[126,19,78,0.258576014291623],[126,19,79,0.257660794781842],[126,20,64,0.27921656213042817],[126,20,65,0.2778309062149391],[126,20,66,0.2764705996479807],[126,20,67,0.27513748408632355],[126,20,68,0.27383332897715995],[126,20,69,0.27255982716449745],[126,20,70,0.27131859043014295],[126,20,71,0.27011114496930944],[126,20,72,0.2689389268008436],[126,20,73,0.26780327711210755],[126,20,74,0.26670543753841536],[126,20,75,0.2656465453771628],[126,20,76,0.26462762873653956],[126,20,77,0.2636496016188783],[126,20,78,0.26271325893861946],[126,20,79,0.26181927147489875],[126,21,64,0.28286422789934906],[126,21,65,0.28151678914505057],[126,21,66,0.2801934598040014],[126,21,67,0.2788960843042432],[126,21,68,0.27762643612854343],[126,21,69,0.2763862134445085],[126,21,70,0.2751770346693581],[126,21,71,0.27400043396939494],[126,21,72,0.27285785669416074],[126,21,73,0.27175065474531934],[126,21,74,0.2706800818801643],[126,21,75,0.2696472889498875],[126,21,76,0.26865331907250306],[126,21,77,0.2676991027404755],[126,21,78,0.2667854528630339],[126,21,79,0.2659130597431811],[126,22,64,0.28643963602942574],[126,22,65,0.2851305924814128],[126,22,66,0.2838444341260495],[126,22,67,0.28258300790369706],[126,22,68,0.28134809106318814],[126,22,69,0.28014138681582174],[126,22,70,0.27896451992409543],[126,22,71,0.2778190322252081],[126,22,72,0.2767063780893289],[126,22,73,0.2756279198126657],[126,22,74,0.2745849229452378],[126,22,75,0.27357855155348526],[126,22,76,0.27260986341760823],[126,22,77,0.27167980516369006],[126,22,78,0.2707892073305814],[126,22,79,0.26993877937155475],[126,23,64,0.28993940297365633],[126,23,65,0.28866892944300837],[126,23,66,0.2874201334518613],[126,23,67,0.2861948641842482],[126,23,68,0.284994902375184],[126,23,69,0.2838219559887005],[126,23,70,0.2826776558307037],[126,23,71,0.2815635510966842],[126,23,72,0.2804811048542783],[126,23,73,0.2794316894607095],[126,23,74,0.27841658191502217],[126,23,75,0.2774369591452301],[126,23,76,0.27649389323028173],[126,23,77,0.2755883465568922],[126,23,78,0.2747211669112182],[126,23,79,0.2738930825053884],[126,24,64,0.2933601942569381],[126,24,65,0.2921284614106186],[126,24,66,0.29091721586817165],[126,24,67,0.28972830877930206],[126,24,68,0.2885635240752859],[126,24,69,0.28742457417120487],[126,24,70,0.2863130956030939],[126,24,71,0.2852306446000344],[126,24,72,0.284178692591185],[126,24,73,0.2831586216477866],[126,24,74,0.28217171986004796],[126,24,75,0.28121917664903767],[126,24,76,0.2803020780134835],[126,24,77,0.2794214017115268],[126,24,78,0.2785780123774134],[126,24,79,0.2777726565731291],[126,25,64,0.29669872687910165],[126,25,65,0.29550590036696667],[126,25,66,0.29433238918701],[126,25,67,0.2931800461675966],[126,25,68,0.29205065813664133],[126,25,69,0.290945941648201],[126,25,70,0.2898675386440777],[126,25,71,0.288817012050464],[126,25,72,0.2877958413096267],[126,25,73,0.2868054178466586],[126,25,74,0.28584704047121184],[126,25,75,0.2849219107143341],[126,25,76,0.28403112810030867],[126,25,77,0.28317568535354976],[126,25,78,0.2823564635405303],[126,25,79,0.2815742271467523],[126,26,64,0.2999517716612355],[126,26,65,0.29879801127967104],[126,26,66,0.29766241336434385],[126,26,67,0.29654683212659605],[126,26,68,0.295453056981996],[126,26,69,0.2943828083014427],[126,26,70,0.29333773309738737],[126,26,71,0.29231940064520245],[126,26,72,0.2913292980396949],[126,26,73,0.29036882568678934],[126,26,74,0.2894392927303037],[126,26,75,0.2885419124139272],[126,26,76,0.28767779737831073],[126,26,77,0.2868479548933174],[126,26,78,0.28605328202540864],[126,26,79,0.28529456074018106],[126,27,64,0.303116155535127],[126,27,65,0.3020016144268316],[126,27,66,0.30090410286089003],[126,27,67,0.2998254761276077],[126,27,68,0.29876752591219496],[126,27,69,0.2977319760705364],[126,27,70,0.2967204783401918],[126,27,71,0.29573460798665585],[126,27,72,0.29477585938487577],[126,27,73,0.2938456415360522],[126,27,74,0.2929452735196437],[126,27,75,0.29207597988068834],[126,27,76,0.291238885952349],[126,27,77,0.2904350131137315],[126,27,78,0.2896652739829535],[126,27,79,0.2889304675454733],[126,28,64,0.30618876377591264],[126,28,65,0.30511358766534374],[126,28,66,0.30405432894519047],[126,28,67,0.30301284367271636],[126,28,68,0.3019909254760747],[126,28,69,0.3009903013548925],[126,28,70,0.3000126274162064],[126,28,71,0.29905948454578035],[126,28,72,0.29813237401479964],[126,28,73,0.29723271302196835],[126,28,74,0.2963618301709342],[126,28,75,0.29552096088314667],[126,28,76,0.294711242746063],[126,28,77,0.2939337107967461],[126,28,78,0.29318929274083283],[126,28,79,0.29247880410688537],[126,29,64,0.30916654217801237],[126,29,65,0.3081308686420142],[126,29,66,0.3071100219390275],[126,29,67,0.306105858573616],[126,29,68,0.30512017378182793],[126,29,69,0.3041546973567385],[126,29,70,0.30321108940947683],[126,29,71,0.3022909360657615],[126,29,72,0.30139574509794004],[126,29,73,0.3005269414925622],[126,29,74,0.2996858629534083],[126,29,75,0.29887375534007893],[126,29,76,0.29809176804206206],[126,29,77,0.29734094928831895],[126,29,78,0.29662224139237076],[126,29,79,0.29593647593289585],[126,30,64,0.31204649917418703],[126,30,65,0.31105045694731803],[126,30,66,0.3100681734050152],[126,30,67,0.30910150517217083],[126,30,68,0.3081522487496682],[126,30,69,0.3072221363650264],[126,30,70,0.30631283175866636],[126,30,71,0.3054259259058211],[126,30,72,0.3045629326740888],[126,30,73,0.30372528441665286],[126,30,74,0.3029143275010972],[126,30,75,0.3021313177739172],[126,30,76,0.3013774159606444],[126,30,77,0.300653683001628],[126,30,78,0.2999610753234534],[126,30,79,0.29930044004600637],[126,31,64,0.3148257078978055],[126,31,65,0.3138694162118816],[126,31,66,0.3129258382764541],[126,31,67,0.31199683050279403],[126,31,68,0.31108419030588824],[126,31,69,0.3101896519803235],[126,31,70,0.3093148825119352],[126,31,71,0.3084614773252471],[126,31,72,0.30763095596669804],[126,31,73,0.3068247577236786],[126,31,74,0.30604423717931134],[126,31,75,0.3052906597030673],[126,31,76,0.3045651968771447],[126,31,77,0.30386892185864706],[126,31,78,0.30320280467754285],[126,31,79,0.30256770747041734],[126,32,64,0.3175013081883883],[126,32,65,0.3165848761457623],[126,32,66,0.3156801369295192],[126,32,67,0.31478894639671706],[126,32,68,0.313913102518382],[126,32,69,0.31305434128075976],[126,32,70,0.3122143325224896],[126,32,71,0.3113946757077206],[126,32,72,0.3105968956351674],[126,32,73,0.3098224380831302],[126,32,74,0.30907266539041084],[126,32,75,0.30834885197321815],[126,32,76,0.3076521797779893],[126,32,77,0.30698373367016146],[126,32,78,0.3063444967588813],[126,32,79,0.30573534565765775],[126,33,64,0.32007050854028146],[126,33,65,0.31919403452037554],[126,33,66,0.31832825719763036],[126,33,67,0.31747503152799544],[126,33,68,0.31663615567347453],[126,33,69,0.3158133669288752],[126,33,70,0.3150083375846391],[126,33,71,0.31422267072577825],[126,33,72,0.3134578959669118],[126,33,73,0.31271546512342746],[126,33,74,0.3119967478187025],[126,33,75,0.31130302702747426],[126,33,76,0.31063549455528683],[126,33,77,0.3099952464540535],[126,33,78,0.3093832783737137],[126,33,79,0.3088004808499982],[126,34,64,0.3225305879945409],[126,34,65,0.3216941590931473],[126,34,66,0.32086745632808733],[126,34,67,0.32005233340133177],[126,34,68,0.31925058829414577],[126,34,69,0.31846395921945186],[126,34,70,0.3176941205104477],[126,34,71,0.31694267844549817],[126,34,72,0.3162111670092981],[126,34,73,0.31550104359032977],[126,34,74,0.3148136846145507],[126,34,75,0.3141503811153997],[126,34,76,0.3135123342400505],[126,34,77,0.3129006506919492],[126,34,78,0.31231633810961873],[126,34,79,0.31176030038173996],[126,35,64,0.3248788979740847],[126,35,65,0.32408258947495777],[126,35,66,0.32329506288102877],[126,35,67,0.32251817028178287],[126,35,68,0.32175370909970935],[126,35,69,0.3210034180683942],[126,35,70,0.32026897314704617],[126,35,71,0.3195519833714745],[126,35,72,0.31885398664151826],[126,35,73,0.3181764454449465],[126,35,74,0.3175207425177696],[126,35,75,0.3168881764410462],[126,35,76,0.316279957174116],[126,35,77,0.31569720152429626],[126,35,78,0.31514092855302356],[126,35,79,0.31461205491844935],[126,36,64,0.3271128640619846],[126,36,65,0.32635673894023665],[126,36,66,0.3256084785705834],[126,36,67,0.3248699330662087],[126,36,68,0.3241428989068083],[126,36,69,0.3234291149425174],[126,36,70,0.32273025833445945],[126,36,71,0.3220479404319354],[126,36,72,0.3213837025862509],[126,36,73,0.3207390119011996],[126,36,74,0.3201152569201501],[126,36,75,0.31951374324980986],[126,36,76,0.31893568912060694],[126,36,77,0.3183822208837202],[126,36,78,0.3178543684447421],[126,36,79,0.31735306063398483],[126,37,64,0.32922998772296574],[126,37,65,0.328514096179788],[126,37,66,0.3278051800482835],[126,37,67,0.32710508709654235],[126,37,68,0.3264156124718044],[126,37,69,0.32573849473032],[126,37,70,0.3250754118040306],[126,37,71,0.3244279769040857],[126,37,72,0.3237977343611925],[126,37,73,0.3231861554028198],[126,37,74,0.32259463386719933],[126,37,75,0.32202448185420246],[126,37,76,0.321476925313029],[126,37,77,0.3209530995667408],[126,37,78,0.3204540447736253],[126,37,79,0.31998070132539735],[126,38,64,0.3312278479681697],[126,38,65,0.3305522269963953],[126,38,66,0.3298827206287971],[126,38,67,0.32922117391493233],[126,38,68,0.3285693802746138],[126,38,69,0.3279290775537974],[126,38,70,0.32730194401749513],[126,38,71,0.32668959427972766],[126,38,72,0.3260935751705167],[126,38,73,0.3255153615399341],[126,38,74,0.3249563519991562],[126,38,75,0.324417864598596],[126,38,76,0.32390113244305296],[126,38,77,0.3234072992439132],[126,38,78,0.32293741480838417],[126,38,79,0.32249243046577175],[126,39,64,0.33310410296305587],[126,39,65,0.3324687759430816],[126,39,66,0.3318387319578521],[126,39,67,0.33121581296063124],[126,39,68,0.33060181024386215],[126,39,69,0.32999846052116505],[126,39,70,0.32940744194657434],[126,39,71,0.3288303700710301],[126,39,72,0.3282687937361231],[126,39,73,0.3277241909051081],[126,39,74,0.32719796443114046],[126,39,75,0.3266914377627994],[126,39,76,0.3262058505868467],[126,39,77,0.32574235440824745],[126,39,78,0.3253020080674391],[126,39,79,0.32488577319485806],[126,40,64,0.33485649157854613],[126,40,65,0.3342614679041324],[126,40,66,0.3336709256224578],[126,40,67,0.3330867032087388],[126,40,68,0.33251058942346856],[126,40,69,0.33194431942060143],[126,40,70,0.3313895707931996],[126,40,71,0.3308479595565559],[126,40,72,0.330321036068794],[126,40,73,0.32981028088895903],[126,40,74,0.32931710057255414],[126,40,75,0.32884282340458726],[126,40,76,0.32838869507007434],[126,40,77,0.32795587426202855],[126,40,78,0.3275454282269209],[126,40,79,0.32715832824762],[126,41,64,0.336482834885343],[126,41,65,0.3359281096188085],[126,41,66,0.3353770947033543],[126,41,67,0.33483162475072475],[126,41,68,0.3342934855805808],[126,41,69,0.3337644103549364],[126,41,70,0.33324607565029113],[126,41,71,0.33274009746747113],[126,41,72,0.332248027179178],[126,41,73,0.33177134741525843],[126,41,74,0.33131146788565585],[126,41,75,0.3308697211410985],[126,41,76,0.33044735827147975],[126,41,77,0.3300455445419543],[126,41,78,0.3296653549667369],[126,41,79,0.3293077698206134],[126,42,64,0.33798103759150144],[126,42,65,0.3374665911478316],[126,42,66,0.3369551152697706],[126,42,67,0.33644844031681964],[126,42,68,0.3359483487549546],[126,42,69,0.3354565713173734],[126,42,70,0.3349747831031822],[126,42,71,0.33450459961403073],[126,42,72,0.33404757272869523],[126,42,73,0.33360518661562344],[126,42,74,0.3331788535834025],[126,42,75,0.33276990986920296],[126,42,76,0.33237961136515703],[126,42,77,0.33200912928269116],[126,42,78,0.3316595457548045],[126,42,79,0.331331849376299],[126,43,64,0.3393490894231602],[126,43,65,0.3388748872825463],[126,43,66,0.33840294781639524],[126,43,67,0.3379350967401692],[126,43,68,0.3374731127496683],[126,43,69,0.33701872370814057],[126,43,70,0.33657360277158077],[126,43,71,0.3361393644522264],[126,43,72,0.33571756062025293],[126,43,73,0.33530967644367893],[126,43,74,0.3349171262664455],[126,43,75,0.3345412494247203],[126,43,76,0.33418330600138485],[126,43,77,0.33384447251872795],[126,43,78,0.3335258375693328],[126,43,79,0.3332283973851652],[126,44,64,0.3405850664484832],[126,44,65,0.34015105889680936],[126,44,66,0.339718638642612],[126,44,67,0.33928962636281007],[126,44,68,0.33886579656323196],[126,44,69,0.3384488737921272],[126,44,70,0.33804052879212676],[126,44,71,0.3376423745906603],[126,44,72,0.3372559625288306],[126,44,73,0.3368827782287548],[126,44,74,0.33652423749934196],[126,44,75,0.336181682180551],[126,44,76,0.33585637592609213],[126,44,77,0.3355494999245923],[126,44,78,0.335262148559213],[126,44,79,0.33499532500572843],[126,45,64,0.3416871323448394],[126,45,65,0.34129325424163764],[126,45,66,0.3409003211740287],[126,45,67,0.3405101483834958],[126,45,68,0.3401245057631225],[126,45,69,0.3397451140975376],[126,45,70,0.3393736412415782],[126,45,71,0.33901169823767646],[126,45,72,0.3386608353719709],[126,45,73,0.3383225381691528],[126,45,74,0.3379982233260174],[126,45,75,0.33768923458376104],[126,45,76,0.33739683853899133],[126,45,77,0.33712222039346734],[126,45,78,0.33686647964256144],[126,45,79,0.336630625702449],[126,46,64,0.34265353960915124],[126,46,65,0.34229971018254035],[126,46,66,0.34194621722622853],[126,46,67,0.3415948701472971],[126,46,68,0.3412474338006638],[126,46,69,0.3409056247554839],[126,46,70,0.3405711075005453],[126,46,71,0.3402454905886653],[126,46,72,0.3399303227200887],[126,46,73,0.3396270887648951],[126,46,74,0.3393372057243919],[126,46,75,0.33906201863152596],[126,46,76,0.33880279639028665],[126,46,77,0.3385607275541167],[126,46,78,0.33833691604331884],[126,46,79,0.3381323768014685],[126,47,64,0.3434826307114541],[126,47,65,0.34316875337957975],[126,47,66,0.3428546382107853],[126,47,67,0.3425420883770227],[126,47,68,0.342232863267303],[126,47,69,0.34192867478056366],[126,47,70,0.34163118355781863],[126,47,71,0.3413419951535942],[126,47,72,0.3410626561466522],[126,47,73,0.34079465019000854],[126,47,74,0.340539394000222],[126,47,75,0.34029823328598885],[126,47,76,0.34007243861601355],[126,47,77,0.339863201226172],[126,47,78,0.33967162876595836],[126,47,79,0.33949874098422284],[126,48,64,0.34417283919168334],[126,48,65,0.3438988014101802],[126,48,66,0.34362398628356366],[126,48,67,0.34335019034648107],[126,48,68,0.34307916709229996],[126,48,69,0.342812623292446],[126,48,70,0.3425522152553182],[126,48,71,0.34229954502478416],[126,48,72,0.3420561565182579],[126,48,73,0.3418235316043664],[126,48,74,0.3416030861201834],[126,48,75,0.34139616582806137],[126,48,76,0.3412040423120346],[126,48,77,0.34102790881381034],[126,48,78,0.340868876008338],[126,48,79,0.34072796771896213],[126,49,64,0.3447226906996409],[126,49,65,0.3444883638346305],[126,49,66,0.34425275543525014],[126,49,67,0.3440176549955256],[126,49,68,0.3437848096817745],[126,49,69,0.3435559206784051],[126,49,70,0.34333263947359816],[126,49,71,0.343116564084872],[126,49,72,0.34290923522453437],[126,49,73,0.3427121324050243],[126,49,74,0.34252666998412806],[126,49,75,0.3423541931500936],[126,49,76,0.3421959738466224],[126,49,77,0.34205320663775135],[126,49,78,0.34192700451261576],[126,49,79,0.341818394630102],[126,50,64,0.34513080397817125],[126,50,65,0.344936043204317],[126,50,66,0.3447395325241488],[126,50,67,0.3445430539869221],[126,50,68,0.3443483479991486],[126,50,69,0.3441571096968403],[126,50,70,0.343970985257948],[126,50,71,0.3437915681549968],[126,50,72,0.34362039534791883],[126,50,73,0.3434589434170905],[126,50,74,0.3433086246365556],[126,50,75,0.3431707829874596],[126,50,76,0.3430466901116722],[126,50,77,0.34293754120561437],[126,50,78,0.3428444508542784],[126,50,79,0.34276844880544977],[126,51,64,0.34539589178955726],[126,51,65,0.34524053601269267],[126,51,66,0.3450829982512529],[126,51,67,0.3449250527050446],[126,51,68,0.3447684325869913],[126,51,69,0.34461482652179304],[126,51,70,0.34446587488510316],[126,51,71,0.344323166083223],[126,51,72,0.34418823277331556],[126,51,73,0.3440625480241436],[126,51,74,0.34394752141731777],[126,51,75,0.3438444950890737],[126,51,76,0.3437547397125612],[126,51,77,0.3436794504206582],[126,51,78,0.34361974266929973],[126,51,79,0.3435766480413288],[126,52,64,0.3455167617851031],[126,52,65,0.34540063358895084],[126,52,66,0.34528192807755453],[126,52,67,0.34516241119636704],[126,52,68,0.3450438085302325],[126,52,69,0.3449278017284222],[126,52,70,0.34481602487052077],[126,52,71,0.3447100607731588],[126,52,72,0.3446114372375956],[126,52,73,0.34452162323815516],[126,52,74,0.3444420250515041],[126,52,75,0.34437398232678684],[126,52,76,0.34431876409660467],[126,52,77,0.3442775647288482],[126,52,78,0.3442514998193751],[126,52,79,0.3442416020255421],[126,53,64,0.3454923173179293],[126,53,65,0.34541522293443006],[126,53,66,0.3453351930836229],[126,53,67,0.3452539850517762],[126,53,68,0.3451733163607709],[126,53,69,0.3450948612194664],[126,53,70,0.34502024691625466],[126,53,71,0.3449510501527998],[126,53,72,0.3448887933189678],[126,53,73,0.34483494070894594],[126,53,74,0.34479089467854557],[126,53,75,0.3447579917436998],[126,53,76,0.34473749862014336],[126,53,77,0.3447306082042856],[126,53,78,0.3447384354952681],[126,53,79,0.34476201345821367],[126,54,64,0.34532155819897487],[126,54,65,0.3452832875017424],[126,54,66,0.34524176077144436],[126,54,67,0.34519872623070236],[126,54,68,0.3451558929034748],[126,54,69,0.3451149270926914],[126,54,70,0.34507744879942515],[126,54,71,0.3450450280835976],[126,54,72,0.3450191813662218],[126,54,73,0.34500136767318007],[126,54,74,0.34499298482053786],[126,54,75,0.344995365541394],[126,54,76,0.34500977355426476],[126,54,77,0.3450373995730079],[126,54,78,0.3450793572582767],[126,54,79,0.34513667911051576],[126,55,64,0.3450035813961979],[126,55,65,0.34500390791661995],[126,55,66,0.34500069580851345],[126,55,67,0.3449956838270569],[126,55,68,0.344990572063562],[126,55,69,0.34498701844930746],[126,55,70,0.3449866352012688],[126,55,71,0.34499098520973526],[126,55,72,0.3450015783678221],[126,55,73,0.34501986784287375],[126,55,74,0.3450472462897582],[126,55,75,0.3450850420060555],[126,55,76,0.3451345150291345],[126,55,77,0.3451968531751264],[126,55,78,0.34527316801978536],[126,55,79,0.3453644908212456],[126,56,64,0.3445375816769893],[126,56,65,0.3445762626424903],[126,56,66,0.34461116071419234],[126,56,67,0.3446440047769911],[126,56,68,0.3446764855553738],[126,56,69,0.34471025214337403],[126,56,70,0.34474690847678485],[126,56,71,0.344788009747627],[126,56,72,0.344835058760875],[126,56,73,0.34488950223343806],[126,56,74,0.3449527270354],[126,56,75,0.34502605637351447],[126,56,76,0.34511074591695545],[126,56,77,0.3452079798653281],[126,56,78,0.34531886695893127],[126,56,79,0.3454444364312822],[126,57,64,0.3439228521937811],[126,57,65,0.3439996285877652],[126,57,66,0.3440724164883195],[126,57,67,0.34414293450846134],[126,57,68,0.3442128635725319],[126,57,69,0.3442838434721773],[126,57,70,0.34435746936496625],[126,57,71,0.3444352882156335],[126,57,72,0.3445187951799548],[126,57,73,0.34460942993124916],[126,57,74,0.34470857292951473],[126,57,75,0.3448175416331918],[126,57,76,0.34493758665355445],[126,57,77,0.3450698878517354],[126,57,78,0.3452155503783768],[126,57,79,0.34537560065591477],[126,58,64,0.34315878501286534],[126,58,65,0.34327338165585874],[126,58,66,0.34338382318208227],[126,58,67,0.34349181753261315],[126,58,68,0.34359903539948333],[126,58,69,0.34370710680758987],[126,58,70,0.3438176176396216],[126,58,71,0.34393210610399333],[126,58,72,0.3440520591457942],[126,58,73,0.3441789088007429],[126,58,74,0.34431402849216075],[126,58,75,0.3444587292709502],[126,58,76,0.34461425599858514],[126,58,77,0.3447817834731159],[126,58,78,0.3449624124981811],[126,58,79,0.3451571658950351],[126,59,64,0.34224487158642586],[126,59,65,0.34239699723793393],[126,59,66,0.3425448404111572],[126,59,67,0.3426900979769848],[126,59,68,0.34283442996444224],[126,59,69,0.34297945616841763],[126,59,70,0.34312675270079396],[126,59,71,0.34327784848498005],[126,59,72,0.34343422169384463],[126,59,73,0.34359729613104517],[126,59,74,0.3437684375557679],[126,59,75,0.3439489499508597],[126,59,76,0.344140071734363],[126,59,77,0.34434297191445545],[126,59,78,0.34455874618778404],[126,59,79,0.34478841298120744],[126,60,64,0.34118070316775284],[126,60,65,0.341370050648352],[126,60,66,0.34155502781108776],[126,60,67,0.3417373200605086],[126,60,68,0.341918576333701],[126,60,69,0.34210040573370765],[126,60,70,0.3422843741067527],[126,60,71,0.3424720005632629],[126,60,72,0.342664753942688],[126,60,73,0.3428640492221169],[126,60,74,0.34307124386869936],[126,60,75,0.34328763413586033],[126,60,76,0.3435144513033139],[126,60,77,0.34375285786087817],[126,60,78,0.34400394363608616],[126,60,79,0.3442687218656],[126,61,64,0.3399659711696802],[126,61,65,0.3401922175028617],[126,61,66,0.34041404543493836],[126,61,67,0.34063312851033956],[126,61,68,0.340851104147342],[126,61,69,0.3410695702970502],[126,61,70,0.3412900820465883],[126,61,71,0.34151414816649445],[126,61,72,0.34174322760232156],[126,61,73,0.3419787259104353],[126,61,74,0.3422219916380308],[126,61,75,0.3424743126473402],[126,61,76,0.3427369123840506],[126,61,77,0.3430109460899273],[126,61,78,0.3432974969596392],[126,61,79,0.34359757224179166],[126,62,64,0.33860046746623534],[126,62,65,0.33886327403951744],[126,62,66,0.3391216540932152],[126,62,67,0.3393772689205059],[126,62,68,0.3396317439963459],[126,62,69,0.3398866656618671],[126,62,70,0.34014357775340254],[126,62,71,0.34040397817612633],[126,62,72,0.3406693154223135],[126,62,73,0.340940985034212],[126,62,74,0.34122032601154656],[126,62,75,0.3415086171636274],[126,62,76,0.34180707340608285],[126,62,77,0.34211684200221104],[126,62,78,0.34243899874894757],[126,62,79,0.3427745441074556],[126,63,64,0.33708408463746004],[126,63,65,0.33738309738228867],[126,63,66,0.33767771563601323],[126,63,67,0.33796958805234456],[126,63,68,0.3382603277410572],[126,63,69,0.33855150897765085],[126,63,70,0.3388446638580625],[126,63,71,0.339141278898413],[126,63,72,0.3394427915797984],[126,63,73,0.3397505868381117],[126,63,74,0.3400659934989202],[126,63,75,0.34039028065736865],[126,63,76,0.34072465400312724],[126,63,77,0.34107025209038105],[126,63,78,0.3414281425528569],[126,63,79,0.3417993182638937],[126,64,64,0.3354168161574711],[126,64,65,0.3357516657474258],[126,64,66,0.33608219317745686],[126,64,67,0.3364100340767797],[126,64,68,0.3367367887710676],[126,64,69,0.3370640190172133],[126,64,70,0.3373932446835706],[126,64,71,0.33772594037566284],[126,64,72,0.3380635320073615],[126,64,73,0.33840739331752556],[126,64,74,0.33875884233212894],[126,64,75,0.3391191377718372],[126,64,76,0.3394894754050628],[126,64,77,0.3398709843464901],[126,64,78,0.34026472330106505],[126,64,79,0.3406716767534609],[126,65,64,0.3335987565257034],[126,65,65,0.33396905859252524],[126,65,66,0.33433515126237623],[126,65,67,0.3346986567583976],[126,65,68,0.3350611622064684],[126,65,69,0.33542421639489284],[126,65,70,0.3357893264800069],[126,65,71,0.3361579546376876],[126,65,72,0.3365315146607688],[126,65,73,0.33691136850235537],[126,65,74,0.33729882276506085],[126,65,75,0.33769512513613353],[126,65,76,0.3381014607684958],[126,65,77,0.3385189486076897],[126,65,78,0.3389486376647262],[126,65,79,0.33939150323484546],[126,66,64,0.3316301013413868],[126,66,65,0.33203545670834794],[126,66,66,0.332436755975273],[126,66,67,0.33283560758136166],[126,66,68,0.33323358504051553],[126,66,69,0.33363222372576956],[126,66,70,0.3340330176000864],[126,66,71,0.33443741589349596],[126,66,72,0.33484681972658864],[126,66,73,0.335262578680348],[126,66,74,0.335685987312354],[126,66,75,0.3361182816193171],[126,66,76,0.33656063544596915],[126,66,77,0.33701415684030667],[126,66,78,0.3374798843551805],[126,66,79,0.33795878329624107],[126,67,64,0.3295111473211769],[126,67,65,0.3299511422533085],[126,67,66,0.33038727499149445],[126,67,67,0.3308211398170926],[126,67,68,0.3312542962236359],[126,67,69,0.33168826572581234],[126,67,70,0.3321245286152598],[126,67,71,0.33256452066315867],[126,67,72,0.333009629769629],[126,67,73,0.3334611925599162],[126,67,74,0.33392049092740417],[126,67,75,0.3343887485234042],[126,67,76,0.3348671271937569],[126,67,77,0.33535672336223604],[126,67,78,0.3358585643607501],[126,67,79,0.3363736047063512],[126,68,64,0.32724229226003376],[126,68,65,0.3277164987307309],[126,68,66,0.32818707757070853],[126,68,67,0.3286556085338055],[126,68,68,0.3291236366888621],[126,68,69,0.32959266925304403],[126,68,70,0.3300641723724431],[126,68,71,0.3305395678499312],[126,68,72,0.3310202298202795],[126,68,73,0.3315074813725237],[126,68,74,0.3320025911196154],[126,68,75,0.3325067697153081],[126,68,76,0.3330211663183144],[126,68,77,0.33354686500372294],[126,68,78,0.3340848811216732],[126,68,79,0.3346361576032954],[126,69,64,0.3248240349353142],[126,69,65,0.32533201090883435],[126,69,66,0.3258366344926471],[126,69,67,0.326339470547868],[126,69,68,0.326842049318661],[126,69,69,0.32734586328969595],[126,69,70,0.3278523639913445],[126,69,71,0.3283629587525997],[126,69,72,0.32887900740172327],[126,69,73,0.3294018189146035],[126,69,74,0.3299326480108685],[126,69,75,0.3304726916976958],[126,69,76,0.3310230857613602],[126,69,77,0.3315849012065075],[126,69,78,0.3321591406431498],[126,69,79,0.3327467346213928],[126,70,64,0.3222569749540082],[126,70,65,0.32279826468338235],[126,70,66,0.3233365179350492],[126,70,67,0.3238732843169148],[126,70,68,0.32441007885309603],[126,70,69,0.3249483788652843],[126,70,70,0.3254896208023258],[126,70,71,0.32603519701799333],[126,70,72,0.3265864524969596],[126,70,73,0.32714468152895426],[126,70,74,0.3277111243311469],[126,70,75,0.32828696361870024],[126,70,76,0.3288733211235326],[126,70,77,0.32947125406127886],[126,70,78,0.33008175154644526],[126,70,79,0.3307057309557695],[126,71,64,0.3195418125432363],[126,71,65,0.32011594688311007],[126,71,66,0.32068740129391715],[126,71,67,0.3212577097748309],[126,71,68,0.321828371739426],[126,71,69,0.3224008489207193],[126,71,70,0.3229765622249051],[126,71,71,0.3235568885337621],[126,71,72,0.32414315745574074],[126,71,73,0.324736648025711],[126,71,74,0.32533858535341886],[126,71,75,0.32595013722058863],[126,71,76,0.3265724106267138],[126,71,77,0.3272064482835274],[126,71,78,0.3278532250581425],[126,71,79,0.3285136443648785],[126,72,64,0.3166793482839604],[126,72,65,0.31728584501788204],[126,72,66,0.31789005894604105],[126,72,67,0.318493508108555],[126,72,68,0.31909767592310273],[126,72,69,0.31970400811339983],[126,72,70,0.3203139095868548],[126,72,71,0.32092874126138127],[126,72,72,0.3215498168413782],[126,72,73,0.32217839954285177],[126,72,74,0.3228156987677371],[126,72,75,0.3234628667273447],[126,72,76,0.3241209950149866],[126,72,77,0.3247911111277628],[126,72,78,0.3254741749375064],[126,72,79,0.32617107511089777],[126,73,64,0.31367048278782533],[126,73,65,0.3143088469695008],[126,73,66,0.3149453659537107],[126,73,67,0.31558154147662953],[126,73,68,0.3162188405800861],[126,73,69,0.3168586925632222],[126,73,70,0.3175024858838249],[126,73,71,0.3181515650093081],[126,73,72,0.3188072272173501],[126,73,73,0.3194707193461684],[126,73,74,0.32014323449448273],[126,73,75,0.3208259086710975],[126,73,76,0.32151981739415225],[126,73,77,0.3222259722400267],[126,73,78,0.3229453173418947],[126,73,79,0.32367872583794005],[126,74,64,0.3105162163172759],[126,74,65,0.31118594062530647],[126,74,66,0.3118542977117536],[126,74,67,0.312522772669629],[126,74,68,0.3131928157906114],[126,74,69,0.31386583953962954],[126,74,70,0.3145432154796176],[126,74,71,0.3152262711464169],[126,74,72,0.31591628687383305],[126,74,73,0.3166144925688241],[126,74,74,0.31732206443688027],[126,74,75,0.3180401216575157],[126,74,76,0.3187697230099296],[126,74,77,0.3195118634488171],[126,74,78,0.32026747063032845],[126,74,79,0.32103740138818726],[126,75,64,0.3072176483488841],[126,75,65,0.30791821345450465],[126,75,66,0.3086179295368395],[126,75,67,0.3093182647124104],[126,75,68,0.31002065215435226],[126,75,69,0.31072648708965034],[126,75,70,0.31143712374705784],[126,75,71,0.3121538722556608],[126,75,72,0.3128779954941034],[126,75,73,0.31361070589044693],[126,75,74,0.3143531621727259],[126,75,75,0.3151064660701176],[126,75,76,0.3158716589647859],[126,75,77,0.31664971849437834],[126,75,78,0.3174415551051756],[126,75,79,0.3182480085559024],[126,76,64,0.3037759770797991],[126,76,65,0.3045068520271371],[126,76,66,0.30523743619896204],[126,76,67,0.3059691804080969],[126,76,68,0.30670350034689053],[126,76,69,0.3074417736068361],[126,76,70,0.3081853366493776],[126,76,71,0.3089354817278731],[126,76,72,0.3096934537607289],[126,76,73,0.3104604471556759],[126,76,74,0.31123760258525335],[126,76,75,0.31202600371341455],[126,76,76,0.31282667387331653],[126,76,77,0.313640572696273],[126,76,78,0.314468592691868],[126,76,79,0.31531155577924247],[126,77,64,0.3001924988774811],[126,77,65,0.30095314147585084],[126,77,66,0.3017140913952582],[126,77,67,0.3024767818239521],[126,77,68,0.3032426106176507],[126,77,69,0.30401293734125456],[126,77,70,0.30478908026226226],[126,77,71,0.3055723132958599],[126,77,72,0.3063638629016946],[126,77,73,0.3071649049323052],[126,77,74,0.3079765614332773],[126,77,75,0.30879989739503244],[126,77,76,0.309635917456319],[126,77,77,0.310485562559379],[126,77,78,0.3113497065567919],[126,77,79,0.3122291527700063],[126,78,64,0.2964686076726466],[126,78,65,0.29725846490039887],[126,78,66,0.2980492671660926],[126,78,67,0.29884242971907676],[126,78,68,0.299639332229229],[126,78,69,0.3004413158504683],[126,78,70,0.3012496802364943],[126,78,71,0.3020656805087183],[126,78,72,0.3028905241764007],[126,78,73,0.3037253680089646],[126,78,74,0.304571314860554],[126,78,75,0.30542941044674854],[126,78,76,0.3063006400734969],[126,78,77,0.3071859253182496],[126,78,78,0.3080861206632881],[126,78,79,0.309002010081261],[126,79,64,0.29260579429532574],[126,79,65,0.2934243027147705],[126,79,66,0.29424443325330957],[126,79,67,0.2950675829138273],[126,79,68,0.29589511283801867],[126,79,69,0.2967283453914049],[126,79,70,0.2975685612010978],[126,79,71,0.29841699614628353],[126,79,72,0.29927483830143764],[126,79,73,0.30014322483224043],[126,79,74,0.30102323884426635],[126,79,75,0.3019159061843505],[126,79,76,0.3028221921947031],[126,79,77,0.3037429984197473],[126,79,78,0.30467915926567835],[126,79,79,0.3056314386127577],[126,80,64,0.28860564575421377],[126,80,65,0.289452231937132],[126,80,66,0.29030115640083365],[126,80,67,0.2911537976011359],[126,80,68,0.2920114978163108],[126,80,69,0.292875560253291],[126,80,70,0.29374724610715786],[126,80,71,0.294627771573879],[126,80,72,0.2955183048163067],[126,80,73,0.2964199628834076],[126,80,74,0.29733380858279784],[126,80,75,0.2982608473064849],[126,80,76,0.29920202380988764],[126,80,77,0.300158218944111],[126,80,78,0.30113024634147256],[126,80,79,0.30211884905429354],[126,81,64,0.28446984445923407],[126,81,65,0.28534392542249887],[126,81,66,0.28622109959753333],[126,81,67,0.2871027265996525],[126,81,68,0.28799012951578884],[126,81,69,0.28888459203157324],[126,81,70,0.28978735551223594],[126,81,71,0.29069961603729005],[126,81,72,0.29162252138901346],[126,81,73,0.2925571679946951],[126,81,74,0.2935045978227243],[126,81,75,0.29446579523242],[126,81,76,0.29544168377767477],[126,81,77,0.29643312296438834],[126,81,78,0.29744090496168857],[126,81,79,0.2984657512669521],[126,82,64,0.2802001673872029],[126,82,65,0.28110115103802624],[126,82,66,0.28200602126224467],[126,82,67,0.28291611854859855],[126,82,68,0.2838327464723104],[126,82,69,0.28475716884271945],[126,82,70,0.2856906068052759],[126,82,71,0.2866342358978579],[126,82,72,0.2875891830614265],[126,82,73,0.2885565236049842],[126,82,74,0.28953727812491814],[126,82,75,0.29053240937862135],[126,82,76,0.2915428191124701],[126,82,77,0.29256934484412916],[126,82,78,0.29361275659918556],[126,82,79,0.29467375360212134],[126,83,64,0.27579848519079797],[126,83,65,0.276725770781121],[126,83,66,0.27765777437115075],[126,83,67,0.27859581704453323],[126,83,68,0.2795411825521736],[126,83,69,0.28049511448009395],[126,83,70,0.281458813372195],[126,83,71,0.28243343380788566],[126,83,72,0.2834200814345938],[126,83,73,0.28441980995512545],[126,83,74,0.2854336180699532],[126,83,75,0.2864624463743266],[126,83,76,0.2875071742102816],[126,83,77,0.28856861647352516],[126,83,78,0.28964752037518915],[126,83,79,0.2907445621584709],[126,84,64,0.27126676125074056],[126,84,65,0.27221973984028563],[126,84,66,0.2731783055274277],[126,84,67,0.27414375971994054],[126,84,68,0.27511736603977854],[126,84,69,0.2761003475108217],[126,84,70,0.27709388370207244],[126,84,71,0.2780991078262695],[126,84,72,0.27911710379393073],[126,84,73,0.2801489032227923],[126,84,74,0.28119548240272796],[126,84,75,0.282257759216035],[126,84,76,0.28333659001317124],[126,84,77,0.2844327664439126],[126,84,78,0.2855470122439311],[126,84,79,0.2866799799768055],[126,85,64,0.2666070506710659],[126,85,65,0.2675851055985684],[126,85,66,0.2685696539730372],[126,85,67,0.2695619772635184],[126,85,68,0.27056331866656386],[126,85,69,0.2715748803135186],[126,85,70,0.27259782043381586],[126,85,71,0.2736332504742379],[126,85,72,0.27468223217416254],[126,85,73,0.2757457745967538],[126,85,74,0.27682483111618816],[126,85,75,0.27792029636079907],[126,85,76,0.27903300311222423],[126,85,77,0.28016371916052685],[126,85,78,0.28131314411528796],[126,85,79,0.28248190617268654],[126,86,64,0.2618214992177106],[126,86,65,0.26282400657984806],[126,86,66,0.26383395054288683],[126,86,67,0.2648525923823909],[126,86,68,0.2658811545814399],[126,86,69,0.2669208180571109],[126,86,70,0.26797271934352473],[126,86,71,0.2690379477314149],[126,86,72,0.270117542364237],[126,86,73,0.2712124892907788],[126,86,74,0.27232371847436365],[126,86,75,0.2734521007585255],[126,86,76,0.2745984447892448],[126,86,77,0.27576349389371313],[126,86,78,0.27694792291562687],[126,86,79,0.2781523350070227],[126,87,64,0.25691234220031156],[126,87,65,0.2579386713378472],[126,87,66,0.25897341656125644],[126,87,67,0.26001781870614005],[126,87,68,0.26107307926261536],[126,87,69,0.2621403576206386],[126,87,70,0.2632207682724508],[126,87,71,0.26431537797210714],[126,87,72,0.2654252028521056],[126,87,73,0.26655120549707567],[126,87,74,0.2676942919746208],[126,87,75,0.26885530882319186],[126,87,76,0.27003503999708023],[126,87,77,0.2712342037685006],[126,87,78,0.27245344958676143],[126,87,79,0.2736933548945376],[126,88,64,0.2518819032970847],[126,88,65,0.25293141728774476],[126,88,66,0.25399036268036157],[126,88,67,0.2550599596325316],[126,88,68,0.2561413883706912],[126,88,69,0.2572357864539193],[126,88,70,0.2583442459954264],[126,88,71,0.25946781084168985],[126,88,72,0.2606074737092523],[126,88,73,0.261764173279141],[126,88,74,0.26293879124900665],[126,88,75,0.2641321493428538],[126,88,76,0.26534500627845514],[126,88,77,0.26657805469241774],[126,88,78,0.26783191802290024],[126,88,79,0.26910714734999497],[126,89,64,0.24673259332304454],[126,89,65,0.24780464948064582],[126,89,66,0.24888718766130846],[126,89,67,0.24998140711518588],[126,89,68,0.2510884665432729],[126,89,69,0.2522094813793222],[126,89,70,0.2533455210300145],[126,89,71,0.25449760607334104],[126,89,72,0.25566670541521397],[126,89,73,0.256853733404265],[126,89,74,0.2580595469049295],[126,89,75,0.2592849423286871],[126,89,76,0.2605306526235532],[126,89,77,0.2617973442217882],[126,89,78,0.2630856139458228],[126,89,79,0.26439598587241614],[126,90,64,0.24146690894134615],[126,90,65,0.2425608593206925],[126,90,66,0.24366637709722758],[126,90,67,0.2447846403929834],[126,90,68,0.24591678613089127],[126,90,69,0.24706390733444167],[126,90,70,0.24822705038616838],[126,90,71,0.24940721224491277],[126,90,72,0.25060533762188597],[126,90,73,0.25182231611548583],[126,90,74,0.2530589793049714],[126,90,75,0.25431609780286035],[126,90,76,0.255594378266147],[126,90,77,0.2568944603663068],[126,90,78,0.25821691371808625],[126,90,79,0.25956223476709395],[126,91,64,0.23608743131792],[126,91,65,0.23720262322498467],[126,91,66,0.23833050207875384],[126,91,67,0.23947222466137144],[126,91,68,0.24062890587439723],[126,91,69,0.2418016160558369],[126,91,70,0.24299137825656603],[126,91,71,0.24419916547610765],[126,91,72,0.24542589785777746],[126,91,73,0.24667243984315668],[126,91,74,0.2479395972859934],[126,91,75,0.2492281145253984],[126,91,76,0.2505386714184327],[126,91,77,0.2518718803320537],[126,91,78,0.25322828309441797],[126,91,79,0.2546083479055567],[126,92,64,0.230596824719162],[126,92,65,0.23173260122607464],[126,92,66,0.23288221780161686],[126,92,67,0.23404680968533537],[126,92,68,0.2352274695235963],[126,92,69,0.23642524470360385],[126,92,70,0.2376411346473895],[126,92,71,0.23887608806572574],[126,92,72,0.2401310001719853],[126,92,73,0.24140670985589646],[126,92,74,0.2427039968173071],[126,92,75,0.24402357865981222],[126,92,76,0.24536610794434904],[126,92,77,0.24673216920272495],[126,92,78,0.24812227591107455],[126,92,79,0.24953686742326514],[126,93,64,0.22499783505296184],[126,93,65,0.2261535355173178],[126,93,66,0.227324262116623],[126,93,67,0.2285111283543181],[126,93,68,0.22971520439740228],[126,93,69,0.2309375144270579],[126,93,70,0.23217903394982226],[126,93,71,0.2334406870692609],[126,93,72,0.23472334371816062],[126,93,73,0.23602781685119645],[126,93,74,0.2373548595981826],[126,93,75,0.23870516237776257],[126,93,76,0.24007934997164448],[126,93,77,0.241477978559343],[126,93,78,0.24290153271342918],[126,93,79,0.24435042235530252],[126,94,64,0.21929328835294054],[126,94,65,0.22046824894094913],[126,94,66,0.22165945402190107],[126,94,67,0.22286799517895695],[126,94,68,0.22409491988538405],[126,94,69,0.22534122887140018],[126,94,70,0.22660787345214262],[126,94,71,0.2278957528167172],[126,94,72,0.22920571127834483],[126,94,73,0.23053853548555947],[126,94,74,0.23189495159456963],[126,94,75,0.23327562240263594],[126,94,76,0.2346811444425715],[126,94,77,0.2361120450383286],[126,94,78,0.23756877932166948],[126,94,79,0.23905172720993872],[126,95,64,0.21348608920575],[126,95,65,0.21467964341874157],[126,95,66,0.21589069209726502],[126,95,67,0.21712030472949273],[126,95,68,0.21836950589055715],[126,95,69,0.21963927262522304],[126,95,70,0.22093053179226518],[126,95,71,0.22224415737050585],[126,95,72,0.22358096772652947],[126,95,73,0.2249417228440283],[126,95,74,0.22632712151489198],[126,95,75,0.2277377984918924],[126,95,76,0.22917432160307127],[126,95,77,0.23063718882779355],[126,95,78,0.23212682533446521],[126,95,79,0.2336435804799325],[126,96,64,0.20757921912171728],[126,96,65,0.20879069832552472],[126,96,66,0.21002095288097467],[126,96,67,0.2112710300161329],[126,96,68,0.21254193121370285],[126,96,69,0.21383460960913286],[126,96,70,0.21514996735100977],[126,96,71,0.2164888529236948],[126,96,72,0.21785205843221667],[126,96,73,0.21924031684937728],[126,96,74,0.2206542992251837],[126,96,75,0.22209461185845447],[126,96,76,0.22356179343071214],[126,96,77,0.2250563121023213],[126,96,78,0.2265785625708735],[126,96,79,0.22812886309183372],[126,97,64,0.20157573484870017],[126,97,65,0.20280446880543473],[126,97,66,0.20405328918876264],[126,97,67,0.20532322081123416],[126,97,68,0.20661524187908037],[126,97,69,0.20793028140535802],[126,97,70,0.20926921658596603],[126,97,71,0.2106328701384832],[126,97,72,0.21202200760384943],[126,97,73,0.21343733461083825],[126,97,74,0.21487949410344148],[126,97,75,0.21634906353100947],[126,97,76,0.21784655200125874],[126,97,77,0.21937239739611009],[126,97,78,0.220926963450354],[126,97,79,0.22251053679316163],[126,98,64,0.19547876662899466],[126,98,65,0.19672408403073205],[126,98,66,0.1979908283749674],[126,98,67,0.19928000191314826],[126,98,68,0.2005925594013755],[126,98,69,0.20192940552818717],[126,98,70,0.20329139230579807],[126,98,71,0.20467931642474502],[126,98,72,0.2060939165719577],[126,98,73,0.20753587071220536],[126,98,74,0.20900579333303965],[126,98,75,0.21050423265307472],[126,98,76,0.21203166779372024],[126,98,77,0.2135885059143275],[126,98,78,0.21517507931074625],[126,98,79,0.21679164247731175],[126,99,64,0.1892915163995969],[126,99,65,0.19055274540349315],[126,99,66,0.19183677053607462],[126,99,67,0.19314457135202956],[126,99,68,0.19447707899418554],[126,99,69,0.1958351736355325],[126,99,70,0.19721968188528488],[126,99,71,0.19863137415893434],[126,99,72,0.20007096201231273],[126,99,73,0.20153909543961357],[126,99,74,0.20303636013549653],[126,99,75,0.20456327472111174],[126,99,76,0.20612028793416187],[126,99,77,0.20770777578296146],[126,99,78,0.2093260386644919],[126,99,79,0.21097529844647012],[126,100,64,0.18301725593567525],[126,100,65,0.18429372470002847],[126,100,66,0.18559438665652345],[126,100,67,0.1869201985374626],[126,100,68,0.18827206771989602],[126,100,69,0.189650849681479],[126,100,70,0.19105734542095554],[126,100,71,0.19249229884321617],[126,100,72,0.1939563941089515],[126,100,73,0.1954502529488486],[126,100,74,0.19697443194245662],[126,100,75,0.1985294197615553],[126,100,76,0.20011563437814778],[126,100,77,0.2017334202370344],[126,100,78,0.20338304539296764],[126,100,79,0.20506469861240606],[126,101,64,0.17665932493708647],[126,101,65,0.17795036215786453],[126,101,66,0.1792670166966115],[126,101,67,0.18061022234774493],[126,101,68,0.18198086258078755],[126,101,69,0.18337976800965533],[126,101,70,0.18480771382715766],[126,101,71,0.18626541720465684],[126,101,72,0.18775353465690864],[126,101,73,0.18927265937203097],[126,101,74,0.1908233185067268],[126,101,75,0.1924059704465954],[126,101,76,0.1940210020316529],[126,101,77,0.19566872574701932],[126,101,78,0.19734937687877185],[126,101,79,0.19906311063498255],[126,102,64,0.17022112905825565],[126,102,65,0.17152606450560476],[126,102,66,0.17285806762281603],[126,102,67,0.1742180491611396],[126,102,68,0.1756068685516856],[126,102,69,0.17702533138773874],[126,102,70,0.17847418687286865],[126,102,71,0.17995412523478616],[126,102,72,0.18146577510496553],[126,102,73,0.18300970086397905],[126,102,74,0.18458639995267334],[126,102,75,0.1861963001490181],[126,102,76,0.18783975681074855],[126,102,77,0.18951705008376213],[126,102,78,0.19122838207626414],[126,102,79,0.19297387399868526],[126,103,64,0.16370613788126265],[126,103,65,0.1650243029355174],[126,103,66,0.16637101138037902],[126,103,67,0.16774715082894648],[126,103,68,0.16915355655400183],[126,103,69,0.17059100898294371],[126,103,70,0.17206023115910168],[126,103,71,0.17356188616938273],[126,103,72,0.17509657453826738],[126,103,73,0.1766648315881043],[126,103,74,0.17826712476583234],[126,103,75,0.17990385093595856],[126,103,76,0.1815753336399169],[126,103,77,0.183281820321765],[126,103,78,0.18502347952021564],[126,103,79,0.18680039802702608],[126,104,64,0.15711788283197092],[126,104,65,0.15844861101868202],[126,104,66,0.15980938280798584],[126,104,67,0.16120106259022365],[126,104,68,0.16262446137100006],[126,104,69,0.1640803342783274],[126,104,70,0.16556937803673866],[126,104,71,0.16709222840831361],[126,104,72,0.16864945760064337],[126,104,73,0.17024157164167464],[126,104,74,0.17186900772156932],[126,104,75,0.17353213150140312],[126,104,76,0.17523123438882915],[126,104,77,0.1769665307806662],[126,104,78,0.17873815527240577],[126,104,79,0.18054615983466055],[126,105,64,0.1504599550395216],[126,105,65,0.15180258256301904],[126,105,66,0.15317677749486497],[126,105,67,0.154583380928484],[126,105,68,0.15602317950461003],[126,105,69,0.15749690293023533],[126,105,70,0.15900522146511187],[126,105,71,0.1605487433757518],[126,105,72,0.16212801235694813],[126,105,73,0.16374350492076156],[126,105,74,0.16539562775310546],[126,105,75,0.16708471503775457],[126,105,76,0.16881102574790358],[126,105,77,0.1705747409052329],[126,105,78,0.17237596080647888],[126,105,79,0.17421470221752922],[126,106,64,0.143736003139037],[126,106,65,0.14508986941404828],[126,106,66,0.146476849580152],[126,106,67,0.14789776137021016],[126,106,68,0.14935336697363355],[126,106,69,0.15084437056672884],[126,106,70,0.15237141581118052],[126,106,71,0.15393508332061562],[126,106,72,0.1555358880952733],[126,106,73,0.15717427692472102],[126,106,74,0.15885062575875608],[126,106,75,0.1605652370463106],[126,106,76,0.16231833704249188],[126,106,77,0.16411007308371311],[126,106,78,0.16594051083091077],[126,106,79,0.16780963148087275],[126,107,64,0.13694973101735974],[126,107,65,0.13831417919819788],[126,107,66,0.1397133094943417],[126,107,67,0.1411479162250146],[126,107,68,0.1426187370531697],[126,107,69,0.1441264505268266],[126,107,70,0.14567167358912797],[126,107,71,0.14725495905705865],[126,107,72,0.14887679306885393],[126,107,73,0.15053759250003523],[126,107,74,0.1522377023482146],[126,107,75,0.15397739308648412],[126,107,76,0.15575685798552358],[126,107,77,0.15757621040437997],[126,107,78,0.15943548104991684],[126,107,79,0.1613346152049568],[126,108,64,0.13010489550216275],[126,108,65,0.13147927300900497],[126,108,66,0.13288992164316682],[126,108,67,0.13433761226778007],[126,108,68,0.13582305795559224],[126,108,69,0.13734691154088874],[126,108,70,0.1389097631407144],[126,108,71,0.14051213764534154],[126,108,72,0.14215449217800452],[126,108,73,0.1438372135238451],[126,108,74,0.1455606155282066],[126,108,75,0.1473249364640946],[126,108,76,0.14913033636893652],[126,108,77,0.15097689435059375],[126,108,78,0.15286460586262518],[126,108,79,0.15479337994882442],[126,109,64,0.12320530399426943],[126,109,65,0.12458896303604261],[126,109,66,0.1260105020337412],[126,109,67,0.1274706683626194],[126,109,68,0.1289701504529217],[126,109,69,0.13050957535198582],[126,109,70,0.1320895062562235],[126,109,71,0.13371044001292703],[126,109,72,0.13537280459192325],[126,109,73,0.13707695652701601],[126,109,74,0.13882317832735847],[126,109,75,0.14061167585857098],[126,109,76,0.14244257569373525],[126,109,77,0.1443159224342243],[126,109,78,0.14623167600036008],[126,109,79,0.14818970889192534],[126,110,64,0.11625481204300259],[126,110,65,0.11764711013639378],[126,110,66,0.11907891584278485],[126,110,67,0.1205509530284723],[126,110,68,0.12206388544040758],[126,110,69,0.12361831427807424],[126,110,70,0.12521477573582468],[126,110,71,0.12685373851561854],[126,110,72,0.12853560131018615],[126,110,73,0.130260690256558],[126,110,74,0.13202925636010393],[126,110,75,0.13384147288889126],[126,110,76,0.135697432738502],[126,110,77,0.13759714576725895],[126,110,78,0.1395405361018603],[126,110,79,0.1415274394134448],[126,111,64,0.10925732086491119],[126,111,65,0.1106576213490213],[126,111,66,0.11209907492728222],[126,111,67,0.11358238194669223],[126,111,68,0.11510818144167262],[126,111,69,0.11667704871532047],[126,111,70,0.11828949289169632],[126,111,71,0.11994595443908779],[126,111,72,0.12164680266427652],[126,111,73,0.12339233317774456],[126,111,74,0.12518276532996692],[126,111,75,0.1270182396185992],[126,111,76,0.12889881506669942],[126,111,77,0.13082446657193414],[126,111,78,0.13279508222677006],[126,111,79,0.13481046060967067],[126,112,64,0.10221677480570612],[126,112,65,0.10362444735186294],[126,112,66,0.1050749352774028],[126,112,67,0.10656891541044694],[126,112,68,0.10810700205524648],[126,112,69,0.10968974458241026],[126,112,70,0.11131762499074138],[126,112,71,0.1129910554406231],[126,112,72,0.1147103757589818],[126,112,73,0.11647585091576124],[126,112,74,0.11828766847205918],[126,112,75,0.12014593599973111],[126,112,76,0.12205067847259976],[126,112,77,0.12400183562922651],[126,112,78,0.12599925930723777],[126,112,79,0.1280427107492324],[126,113,64,0.09513715874521933],[126,113,65,0.09655157986147128],[126,113,66,0.09801049441150161],[126,113,67,0.09951455571575762],[126,113,68,0.10106435334230984],[126,113,69,0.10266041070565818],[126,113,70,0.10430318263771637],[126,113,71,0.10599305293091948],[126,113,72,0.10773033185347625],[126,113,73,0.10951525363670644],[126,113,74,0.11134797393461038],[126,113,75,0.11322856725547586],[126,113,76,0.11515702436566422],[126,113,77,0.1171332496655263],[126,113,78,0.11915705853744663],[126,113,79,0.12122817466603886],[126,114,64,0.08802249544576868],[126,114,65,0.08944304897557315],[126,114,66,0.09090978871357586],[126,114,67,0.0924233444945467],[126,114,68,0.09398428115602175],[126,114,69,0.09559309614529293],[126,114,70,0.09725021709914433],[126,114,71,0.09895599939628003],[126,114,72,0.10071072368246398],[126,114,73,0.10251459336831475],[126,114,74,0.10436773209989997],[126,114,75,0.1062701812019361],[126,114,76,0.1082218970937367],[126,114,77,0.11022274867785797],[126,114,78,0.11227251470144134],[126,114,79,0.11437088109027582],[126,115,64,0.08087684284360541],[126,115,65,0.08230292045823107],[126,115,66,0.08377689071286187],[126,115,67,0.0852993599893827],[126,115,68,0.08687086841211661],[126,115,69,0.08849188746260445],[126,115,70,0.09016281756769995],[126,115,71,0.09188398566091865],[126,115,72,0.09365564271706689],[126,115,73,0.09547796126008973],[126,115,74,0.09735103284428309],[126,115,75,0.09927486550867975],[126,115,76,0.10124938120474564],[126,115,77,0.10327441319734121],[126,115,78,0.10534970343894445],[126,115,79,0.10747489991715914],[126,116,64,0.07370429128369066],[126,116,65,0.07513529296785337],[126,116,66,0.07661590630581416],[126,116,67,0.07814671427016084],[126,116,68,0.07972823230101045],[126,116,69,0.08136090592819173],[126,116,70,0.08304510836730528],[126,116,71,0.08478113808960142],[126,116,72,0.0865692163656992],[126,116,73,0.08840948478308541],[126,116,74,0.09030200273754496],[126,116,75,0.09224674489832008],[126,116,76,0.09424359864714899],[126,116,77,0.09629236149112747],[126,116,78,0.09839273844939633],[126,116,79,0.10054433941367641],[126,117,64,0.06650896069747003],[126,117,65,0.067944295227717],[126,117,66,0.06943097192013609],[126,117,67,0.07096955039239145],[126,117,68,0.07256052144109038],[126,117,69,0.0742043046709851],[126,117,70,0.07590124609861137],[126,117,71,0.07765161573030133],[126,117,72,0.07945560511459898],[126,117,73,0.08131332486901305],[126,117,74,0.0832248021812611],[126,117,75,0.08518997828480118],[126,117,76,0.08720870590880125],[126,117,77,0.08928074670249142],[126,117,78,0.09140576863390065],[126,117,79,0.09358334336299917],[126,118,64,0.05929499772403929],[126,118,65,0.06073408313940143],[126,118,66,0.062226251621258],[126,118,67,0.06377203949748927],[126,118,68,0.06537191297357486],[126,118,69,0.06702626576843351],[126,118,70,0.06873541672525346],[126,118,71,0.07049960739725558],[126,118,72,0.0723189996084121],[126,118,73,0.07419367298905805],[126,118,74,0.07612362248655125],[126,118,75,0.07810875585077365],[126,118,76,0.08014889109462553],[126,118,77,0.08224375392946004],[126,118,78,0.08439297517545458],[126,118,79,0.08659608814694641],[126,119,64,0.052066572774512265],[126,119,65,0.05350883683894225],[126,119,66,0.05500593416106919],[126,119,67,0.056558377854874],[126,119,68,0.058166609598762686],[126,119,69,0.059830997277668274],[126,119,70,0.06155183260069341],[126,119,71,0.06332932869423791],[126,119,72,0.06516361767063344],[126,119,73,0.06705474817222279],[126,119,74,0.0690026828910385],[126,119,75,0.0710072960638754],[126,119,76,0.07306837094290736],[126,119,77,0.07518559724179485],[126,119,78,0.07735856855728296],[126,119,79,0.0795867797663139],[126,120,64,0.04482787703941221],[126,120,65,0.046272757695524525],[126,120,66,0.04777422996872932],[126,120,67,0.04933278384570283],[126,120,68,0.05094883655348481],[126,120,69,0.052622730207465995],[126,120,70,0.05435472943547137],[126,120,71,0.056145018977868166],[126,120,72,0.05799370126373454],[126,120,73,0.059900793963017895],[126,120,74,0.06186622751483917],[126,120,75,0.06388984263174302],[126,120,76,0.06597138778003314],[126,120,77,0.06811051663615286],[126,120,78,0.07030678551909902],[126,120,79,0.07255965079889992],[126,121,64,0.03758311943944953],[126,121,65,0.03903006525308367],[126,121,66,0.04053536808392044],[126,121,67,0.04209949488860082],[126,121,68,0.04372283853012682],[126,121,69,0.04540571543137234],[126,121,70,0.04714836320522797],[126,121,71,0.04895093826132124],[126,121,72,0.050813513389334874],[126,121,73,0.05273607531885993],[126,121,74,0.05471852225594159],[126,121,75,0.05676066139610736],[126,121,76,0.058862206414031504],[126,121,77,0.06102277492978214],[126,121,78,0.0632418859516487],[126,121,79,0.06551895729557544],[126,122,64,0.03033652351950561],[126,122,65,0.03178499411462632],[126,122,66,0.03329359303235885],[126,122,67,0.034862764307203864],[126,122,68,0.036492876537042473],[126,122,69,0.0381842205418052],[126,122,70,0.039937006999317515],[126,122,71,0.04175136405825447],[126,122,72,0.04362733492823723],[126,122,73,0.04556487544700072],[126,122,74,0.04756385162479382],[126,122,75,0.04962403716580077],[126,122,76,0.051745110966738284],[126,122,77,0.053926654592573287],[126,122,78,0.05616814972936124],[126,122,79,0.05846897561422826],[126,123,64,0.023092324285637567],[126,123,65,0.02454179076909263],[126,123,66,0.026053161643382117],[126,123,67,0.02762685813933391],[126,123,68,0.029263224700165402],[126,123,69,0.030962526644955468],[126,123,70,0.032724947809826155],[126,123,71,0.03455058816676859],[126,123,72,0.036439461420145536],[126,123,73,0.0383914925807981],[126,123,74,0.04040651551791996],[126,123,75,0.04248427048848902],[126,123,76,0.044624401644405065],[126,123,77,0.0468264545172874],[126,123,78,0.04908987348092264],[126,123,79,0.05141399919139511],[126,124,64,0.015854764985469394],[126,124,65,0.01730471036112169],[126,124,66,0.01881833980997749],[126,124,67,0.02039605188816951],[126,124,68,0.02203816700619654],[126,124,69,0.023744925096847558],[126,124,70,0.025516483261362688],[126,124,71,0.027352913393769662],[126,124,72,0.029254199783426804],[126,124,73,0.031220236695697512],[126,124,74,0.033250825930924766],[126,124,75,0.03534567436148983],[126,124,76,0.03750439144710904],[126,124,77,0.03972648672831758],[126,124,78,0.04201136729813548],[126,124,79,0.04435833525194377],[126,125,64,0.008628093831792194],[126,125,65,0.010078013403544417],[126,125,66,0.011593399191072828],[126,125,67,0.01317462721523377],[126,125,68,0.014821993987178872],[126,125,69,0.01653571418038402],[126,125,70,0.018315918281441412],[126,125,71,0.020162650219550993],[126,125,72,0.022075864974740234],[126,125,73,0.02405542616474532],[126,125,74,0.026101103610711385],[126,125,75,0.02821257088150586],[126,125,76,0.030389402816791256],[126,125,77,0.03263107302881174],[126,125,78,0.03493695138288455],[126,125,79,0.037306301456627944],[126,126,64,0.001416560669181055],[126,126,65,0.0028659624324099964],[126,126,66,0.004382613855898887],[126,126,67,0.0059668685750097206],[126,126,68,0.007618999346272859],[126,126,69,0.009339195723181204],[126,126,70,0.011127561711268608],[126,126,71,0.012984113402405684],[126,126,72,0.01490877658834433],[126,126,73,0.016901384353440796],[126,126,74,0.018961674646721605],[126,126,75,0.021089287833076065],[126,126,76,0.023283764223732573],[126,126,77,0.025544541585965086],[126,126,78,0.027870952632025103],[126,126,79,0.030262222487328794],[126,127,64,-0.0057755864159978465],[126,127,65,-0.004327181395077928],[126,127,66,-0.002809743129203568],[126,127,67,-0.0012229402084457108],[126,127,68,4.3347652510605794E-4],[126,127,69,0.0021596716565706053],[126,127,70,0.0039557228573017245],[126,127,71,0.00582161852364349],[126,127,72,0.007757255395451468],[126,127,73,0.009762436154303833],[126,127,74,0.011836867001569829],[126,127,75,0.01398015521612117],[126,127,76,0.016191806691835953],[126,127,77,0.018471223454852415],[126,127,78,0.020817701160557478],[126,127,79,0.02323042657034835],[126,128,64,-0.012944104542374824],[126,128,65,-0.011497161759904118],[126,128,66,-0.009979403171718193],[126,128,67,-0.008390519423073672],[126,128,68,-0.006730284787491159],[126,128,69,-0.004998559484420628],[126,128,70,-0.003195292016600404],[126,128,71,-0.0013205215271772097],[126,128,72,6.256198234468879E-4],[126,128,73,0.0026429044609656005],[126,128,74,0.004731006980885688],[126,128,75,0.006889501712394996],[126,128,76,0.009117860262532362],[126,128,77,0.011415449040614312],[126,128,78,0.013781526762906005],[126,128,79,0.016215241937572622],[126,129,64,-0.020084759537343122],[126,129,65,-0.018639730698044032],[126,129,66,-0.017122105681810273],[126,129,67,-0.015531597008752729],[126,129,68,-0.013868002205543406],[126,129,69,-0.012131206120293059],[126,129,70,-0.010321183256620792],[126,129,71,-0.008438000126979817],[126,129,72,-0.006481817625210162],[126,129,73,-0.004452893418389947],[126,129,74,-0.0023515843578163498],[126,129,75,-1.7834890933643432E-4],[126,129,76,0.0020662503971299317],[126,129,77,0.004381544498822887],[126,129,78,0.006766755312125339],[126,129,79,0.009220993225326879],[126,130,64,-0.027193329497439245],[126,130,65,-0.025750652174362565],[126,130,66,-0.02423360165874544],[126,130,67,-0.022641912155245136],[126,130,68,-0.02097540425442157],[126,130,69,-0.019233987245137474],[126,130,70,-0.01741766144565715],[126,130,71,-0.015526520553502676],[126,130,72,-0.013560754014042664],[126,130,73,-0.011520649407880335],[126,130,74,-0.009406594856877226],[126,130,75,-0.007219081449028719],[126,130,76,-0.004958705682035491],[126,130,77,-0.0026261719256231997],[126,130,78,-2.2229490261416185E-4],[126,130,79,0.002251997811276385],[126,131,64,-0.0342656084055164],[126,131,65,-0.032825705713788955],[126,131,66,-0.03130965733504576],[126,131,67,-0.02971721895832624],[126,131,68,-0.028048234037943653],[126,131,69,-0.02630263610371608],[126,131,70,-0.024480451089403665],[126,131,71,-0.022581799679413317],[126,131,72,-0.02060689967374496],[126,131,73,-0.01855606837124868],[126,131,74,-0.016429724971024462],[126,131,75,-0.014228392992184924],[126,131,76,-0.011952702711823915],[126,131,77,-0.009603393621240963],[126,131,78,-0.0071813169004297794],[126,131,79,-0.004687437910798731],[126,132,64,-0.041297409804895824],[126,132,65,-0.039860690089949524],[126,132,66,-0.03834605787857048],[126,132,67,-0.0367532901342813],[126,132,68,-0.03508225296426959],[126,132,69,-0.033332903927746904],[126,132,70,-0.03150529436202554],[126,132,71,-0.029599571726384832],[126,132,72,-0.027615981963690306],[126,132,73,-0.025554871879840402],[126,132,74,-0.02341669154087378],[126,132,75,-0.021201996687952862],[126,132,76,-0.018911451170071758],[126,132,77,-0.016545829394532974],[126,132,78,-0.014106018795207342],[126,132,79,-0.011593022318539203],[126,133,64,-0.04828457053013224],[126,133,65,-0.04685142707089962],[126,133,66,-0.04533861115215565],[126,133,67,-0.043745920792408466],[126,133,68,-0.042073244530229315],[126,133,69,-0.04032056373102655],[126,133,70,-0.03848795491106172],[126,133,71,-0.036575592078776364],[126,133,72,-0.03458374909339368],[126,133,73,-0.032512802040872923],[126,133,74,-0.030363231627042353],[126,133,75,-0.028135625588135316],[126,133,76,-0.025830681118569787],[126,133,77,-0.02344920731602096],[126,133,78,-0.020992127643798653],[126,133,79,-0.018460482410492474],[126,134,64,-0.05522295449457526],[126,134,65,-0.053793765222132195],[126,134,66,-0.05228315153099661],[126,134,67,-0.05069093226570853],[126,134,68,-0.04901701816426218],[126,134,69,-0.047261414163576876],[126,134,70,-0.04542422172174143],[126,134,71,-0.043505641157094654],[126,134,72,-0.041505974004113155],[126,134,73,-0.039425625386178664],[126,134,74,-0.03726510640505476],[126,134,75,-0.035025036547294164],[126,134,76,-0.03270614610741862],[126,134,77,-0.03030927862792332],[126,134,78,-0.027835393356112514],[126,134,79,-0.025285567717731494],[126,135,64,-0.062108456534905376],[126,135,65,-0.06068358376704153],[126,135,66,-0.05917554377794898],[126,135,67,-0.05758417599993837],[126,135,68,-0.05590941312814868],[126,135,69,-0.05415128342498865],[126,135,70,-0.05230991304088728],[126,135,71,-0.05038552835141763],[126,135,72,-0.04837845831076293],[126,135,73,-0.0462891368215983],[126,135,74,-0.04411810512121661],[126,135,75,-0.04186601418412328],[126,135,76,-0.03953362714093833],[126,135,77,-0.037121821713656966],[126,135,78,-0.03463159266728055],[126,135,79,-0.03206405427777814],[126,136,64,-0.06893700631228283],[126,136,65,-0.06751679650448661],[126,136,66,-0.06601168697639093],[126,136,67,-0.06442153750067003],[126,136,68,-0.06274630247717383],[126,136,69,-0.06098603323660501],[126,136,70,-0.059140880360049386],[126,136,71,-0.05721109601441943],[126,136,72,-0.05519703630378581],[126,136,73,-0.053099163636665336],[126,136,74,-0.050918049109098695],[126,136,75,-0.048654374903735476],[126,136,76,-0.04630893670477387],[126,136,77,-0.04388264612879955],[126,136,78,-0.04137653317153689],[126,136,79,-0.038791748670476855],[126,137,64,-0.0757045722703007],[126,137,65,-0.07428935578363438],[126,137,66,-0.07278751852083176],[126,137,67,-0.07119894033854246],[126,137,68,-0.06952359707890843],[126,137,69,-0.06776156287273427],[126,137,70,-0.06591301245805692],[126,137,71,-0.0639782235141837],[126,137,72,-0.06195757901116428],[126,137,73,-0.059851569574771446],[126,137,74,-0.0576607958668206],[126,137,75,-0.05538597098104647],[126,137,76,-0.0530279228543854],[126,137,77,-0.05058759669370527],[126,137,78,-0.048066057418000296],[126,137,79,-0.04546449211600878],[126,138,64,-0.08240716564989958],[126,138,65,-0.08099725653625411],[126,138,66,-0.07949901816543192],[126,138,67,-0.07791235021286769],[126,138,68,-0.07623724969077383],[126,138,69,-0.07447381325104963],[126,138,70,-0.07262223950314795],[126,138,71,-0.07068283134696851],[126,138,72,-0.06865599832073987],[126,138,73,-0.06654225896397048],[126,138,74,-0.06434224319529191],[126,138,75,-0.06205669470542108],[126,138,76,-0.05968647336508193],[126,138,77,-0.057232557647933446],[126,138,78,-0.05469604706851905],[126,138,79,-0.05207816463519743],[126,139,64,-0.08904084456088857],[126,139,65,-0.08763654036609358],[126,139,66,-0.08614221213007134],[126,139,67,-0.08455777907323303],[126,139,68,-0.08288325909602556],[126,139,69,-0.08111877108181953],[126,139,70,-0.07926453721431936],[126,139,71,-0.07732088530956271],[126,139,72,-0.07528825116247662],[126,139,73,-0.07316718090806529],[126,139,74,-0.07095833339705415],[126,139,75,-0.06866248258621976],[126,139,76,-0.06628051994324169],[126,139,77,-0.06381345686612694],[126,139,78,-0.06126242711722041],[126,139,79,-0.05862868927175924],[126,140,64,-0.09560171811037621],[126,140,65,-0.09420329969565155],[126,140,66,-0.09271317726427597],[126,140,67,-0.0911312892994034],[126,140,68,-0.08945767429846752],[126,140,69,-0.08769247307627615],[126,140,70,-0.08583593108220322],[126,140,71,-0.08388840073154014],[126,140,72,-0.08185034375097633],[126,140,73,-0.07972233353828373],[126,140,74,-0.0775050575360311],[126,140,75,-0.07519931961955484],[126,140,76,-0.07280604249902478],[126,140,77,-0.07032627013565507],[126,140,78,-0.0677611701720714],[126,140,79,-0.0651120363767983],[126,141,64,-0.10208595058788161],[126,141,65,-0.10069368197011241],[126,141,66,-0.09920804526876958],[126,141,67,-0.09762899793929614],[126,141,68,-0.09595659877566132],[126,141,69,-0.09419101021388543],[126,141,70,-0.09233250064923892],[126,141,71,-0.09038144676718207],[126,141,72,-0.08833833588801476],[126,141,73,-0.0862037683253093],[126,141,74,-0.0839784597579517],[126,141,75,-0.08166324361602251],[126,141,76,-0.07925907348034833],[126,141,77,-0.07676702549578274],[126,141,78,-0.07418830079822092],[126,141,79,-0.07152422795531432],[126,142,64,-0.10848976570743263],[126,142,65,-0.10710389391874597],[126,142,66,-0.1056230069749563],[126,142,67,-0.10404708100533044],[126,142,68,-0.1023761947909414],[126,142,69,-0.10061053206883264],[126,142,70,-0.09875038384944446],[126,142,71,-0.09679615074736947],[126,142,72,-0.09474834532540521],[126,142,73,-0.09260759445197686],[126,142,74,-0.09037464167175846],[126,142,75,-0.08805034958971791],[126,142,76,-0.08563570226842543],[126,142,77,-0.08313180763867356],[126,142,78,-0.08053989992342259],[126,142,79,-0.07786134207503215],[126,143,64,-0.11480945090628325],[126,143,65,-0.11343020587341568],[126,143,66,-0.11195431668197287],[126,143,67,-0.11038177782879188],[126,143,68,-0.10871268776386644],[126,143,69,-0.10694725119535131],[126,143,70,-0.10508578140742719],[126,143,71,-0.10312870259108886],[126,143,72,-0.10107655218782496],[126,143,73,-0.098929983246267],[126,143,74,-0.09668976679162955],[126,143,75,-0.09435679420817045],[126,143,76,-0.09193207963451178],[126,143,77,-0.08941676237186602],[126,143,78,-0.08681210930518479],[126,143,79,-0.08411951733718848],[126,144,64,-0.12104136170043844],[126,144,65,-0.11966895614436857],[126,144,66,-0.11819829655148706],[126,144,67,-0.11662939547238849],[126,144,68,-0.1149623706992925],[126,144,69,-0.11319744757208383],[126,144,70,-0.11133496129681231],[126,144,71,-0.10937535927672393],[126,144,72,-0.10731920345578483],[126,144,73,-0.10516717267477937],[126,144,74,-0.10292006503980278],[126,144,75,-0.10057880030337762],[126,144,76,-0.09814442225803421],[126,144,77,-0.09561810114240143],[126,144,78,-0.0930011360598223],[126,144,79,-0.09029495740945492],[126,145,64,-0.1271819260971262],[126,145,65,-0.12581655545346182],[126,145,66,-0.12435134106039758],[126,145,67,-0.12278631320115119],[126,145,68,-0.12112160867521682],[126,145,69,-0.11935747310561795],[126,145,70,-0.11749426325823786],[126,145,71,-0.11553244937328977],[126,145,72,-0.11347261750889359],[126,145,73,-0.11131547189683755],[126,145,74,-0.10906183731034713],[126,145,75,-0.10671266144408931],[126,145,76,-0.10426901730625249],[126,145,77,-0.10173210562274959],[126,145,78,-0.09910325725355673],[126,145,79,-0.09638393562114989],[126,146,64,-0.13322764906391016],[126,146,65,-0.13186949142450666],[126,146,66,-0.1304099215111112],[126,146,67,-0.1288489870113606],[126,146,68,-0.12718684338907194],[126,146,69,-0.12542375619288504],[126,146,70,-0.1235601033766025],[126,146,71,-0.12159637763128872],[126,146,72,-0.11953318872909802],[126,146,73,-0.11737126587890523],[126,146,74,-0.11511146009356421],[126,146,75,-0.11275474656902484],[126,146,76,-0.11030222707514081],[126,146,77,-0.10775513235822465],[126,146,78,-0.10511482455535814],[126,146,79,-0.10238279962041874],[126,147,64,-0.13917511705459595],[126,147,65,-0.1378243331308907],[126,147,66,-0.13637059059956702],[126,147,67,-0.1348139542176614],[126,147,68,-0.13315459776263683],[126,147,69,-0.13139280634258044],[126,147,70,-0.1295289787177235],[126,147,71,-0.12756362963334966],[126,147,72,-0.1254973921640612],[126,147,73,-0.12333102006947672],[126,147,74,-0.12106539016118512],[126,147,75,-0.11870150468118423],[126,147,76,-0.11624049369164446],[126,147,77,-0.11368361747604239],[126,147,78,-0.11103226895167928],[126,147,79,-0.10828797609354845],[126,148,64,-0.14502100259208894],[126,148,65,-0.14367773570063447],[126,148,66,-0.1422299870411543],[126,148,67,-0.14067783809851642],[126,148,68,-0.13902148060571218],[126,148,69,-0.13726121885575893],[126,148,70,-0.1353974720245622],[126,148,71,-0.1334307765048054],[126,148,72,-0.13136178825083167],[126,148,73,-0.12919128513459577],[126,148,74,-0.12692016931250893],[126,148,75,-0.12454946960340596],[126,148,76,-0.12208034387747135],[126,148,77,-0.11951408145617692],[126,148,78,-0.11685210552323988],[126,148,79,-0.11409597554656281],[126,149,64,-0.15076206890789423],[126,149,65,-0.14942644497856938],[126,149,66,-0.1479848402542161],[126,149,67,-0.14643735259969592],[126,149,68,-0.14478419133825948],[126,149,69,-0.14302567956529866],[126,149,70,-0.1411622564727053],[126,149,71,-0.13919447968389886],[126,149,72,-0.13712302759949546],[126,149,73,-0.13494870175369178],[126,149,74,-0.13267242918118516],[126,149,75,-0.13029526479486375],[126,149,76,-0.12781839377410253],[126,149,77,-0.1252431339637119],[126,149,78,-0.12257093828355647],[126,149,79,-0.11980339714879917],[126,150,64,-0.15639517463840868],[126,150,65,-0.15506730224579313],[126,150,66,-0.153631975101296],[126,150,67,-0.15208930709594737],[126,150,68,-0.15043952477114342],[126,150,69,-0.14868296963438166],[126,150,70,-0.14682010048525385],[126,150,71,-0.1448514957517686],[126,150,72,-0.142777855836963],[126,150,73,-0.14060000547588702],[126,150,74,-0.13831889610277726],[126,150,75,-0.13593560822865425],[126,150,76,-0.13345135382918105],[126,150,77,-0.13086747874282778],[126,150,78,-0.12818546507936013],[126,150,79,-0.12540693363860878],[126,151,64,-0.16191727857816374],[126,151,65,-0.16059724899655725],[126,151,66,-0.1591683166882779],[126,151,67,-0.15763061121100974],[126,151,68,-0.15598437594565062],[126,151,69,-0.15422997041415176],[126,151,70,-0.15236787260728002],[126,151,71,-0.15039868132237322],[126,151,72,-0.14832311851104618],[126,151,73,-0.14614203163693218],[126,151,74,-0.14385639604327982],[126,151,75,-0.14146731733063211],[126,151,76,-0.13897603374443124],[126,151,77,-0.13638391857259324],[126,151,78,-0.13369248255306798],[126,151,79,-0.1309033762913442],[126,152,64,-0.16732544448970765],[126,152,65,-0.16601333177227517],[126,152,66,-0.16459089522110948],[126,152,67,-0.163058279695653],[126,152,68,-0.1614157450314554],[126,152,69,-0.1596636683602355],[126,152,70,-0.15780254643953595],[126,152,71,-0.1558329979920402],[126,152,72,-0.15375576605451413],[126,152,73,-0.15157172033645527],[126,152,74,-0.14928185958826468],[126,152,75,-0.14688731397917953],[126,152,76,-0.1443893474847966],[126,152,77,-0.1417893602842415],[126,152,78,-0.13908889116699175],[126,152,79,-0.1362896199493192],[126,153,64,-0.1726168459702936],[126,153,65,-0.17131270705281798],[126,153,66,-0.16989685092028306],[126,153,67,-0.1683694373639203],[126,153,68,-0.16673074228321572],[126,153,69,-0.16498116000829555],[126,153,70,-0.16312120563158505],[126,153,71,-0.16115151734880895],[126,153,72,-0.15907285880930133],[126,153,73,-0.1568861214756967],[126,153,74,-0.15459232699283199],[126,153,75,-0.15219262956608093],[126,153,76,-0.1496883183489679],[126,153,77,-0.14708081984010302],[126,153,78,-0.14437170028945312],[126,153,79,-0.14156266811391216],[126,154,64,-0.17778877137549554],[126,154,65,-0.1764926462052221],[126,154,66,-0.17508343899318246],[126,154,67,-0.1735613240876831],[126,154,68,-0.17192659305591207],[126,154,69,-0.17017965700873727],[126,154,70,-0.16832104893447541],[126,154,71,-0.1663514260416885],[126,154,72,-0.16427157211097732],[126,154,73,-0.1620823998558495],[126,154,74,-0.1597849532924841],[126,154,75,-0.1573804101186217],[126,154,76,-0.15487008410141878],[126,154,77,-0.15225542747431497],[126,154,78,-0.1495380333429267],[126,154,79,-0.14671963809992727],[126,155,64,-0.18283862879948454],[126,155,65,-0.18155054048953945],[126,155,66,-0.1801480346640416],[126,155,67,-0.17863129984925175],[126,155,68,-0.17700064287866224],[126,155,69,-0.17525649122029996],[126,155,70,-0.17339939531269222],[126,155,71,-0.17143003090956332],[126,155,72,-0.1693492014332234],[126,155,73,-0.16715784033673264],[126,155,74,-0.1648570134746561],[126,155,75,-0.1624479214826453],[126,155,76,-0.15993190216568354],[126,155,77,-0.15731043289503854],[126,155,78,-0.1545851330139426],[126,155,79,-0.1517577662519548],[126,156,64,-0.18776395111210042],[126,156,65,-0.18648390612196297],[126,156,66,-0.1850881382616435],[126,156,67,-0.18357684985216904],[126,156,68,-0.18195036258715191],[126,156,69,-0.18020911986266974],[126,156,70,-0.17835368911551475],[126,156,71,-0.17638476416987958],[126,156,72,-0.17430316759244446],[126,156,73,-0.17210985305594384],[126,156,74,-0.16980590771103576],[126,156,75,-0.16739255456670077],[126,156,76,-0.16487115487901194],[126,156,77,-0.1622432105483228],[126,156,78,-0.15951036652488526],[126,156,79,-0.1566744132228618],[126,157,64,-0.19256240105285372],[126,157,65,-0.19129038939536525],[126,157,66,-0.18990138036489124],[126,157,67,-0.18839558969032533],[126,157,68,-0.18677335351480795],[126,157,69,-0.1850351307282473],[126,157,70,-0.18318150530792432],[126,157,71,-0.181213188667251],[126,157,72,-0.1791310220126472],[126,157,73,-0.17693597870861133],[126,157,74,-0.17462916665081119],[126,157,75,-0.17221183064741863],[126,157,76,-0.1696853548085343],[126,157,77,-0.167051264943743],[126,157,78,-0.1643112309678204],[126,157,79,-0.16146706931454102],[126,158,64,-0.19723177638158207],[126,158,65,-0.19596777185697645],[126,158,66,-0.1945855270059842],[126,158,67,-0.19308527057512093],[126,158,68,-0.19146735274244975],[126,158,69,-0.18973224745279726],[126,158,70,-0.18788055476077947],[126,158,71,-0.18591300318170478],[126,158,72,-0.183830452050322],[126,158,73,-0.18163389388748596],[126,158,74,-0.17932445677456832],[126,158,75,-0.17690340673583993],[126,158,76,-0.17437215012866414],[126,158,77,-0.17173223604155052],[126,158,78,-0.16898535870007902],[126,158,79,-0.16613335988065914],[126,159,64,-0.20177001508592363],[126,159,65,-0.20051397554335726],[126,159,66,-0.199138484931354],[126,159,67,-0.19764378462083343],[126,159,68,-0.1960302384065682],[126,159,69,-0.19429833484513637],[126,159,70,-0.19244868960042283],[126,159,71,-0.19048204779673195],[126,159,72,-0.188399286379476],[126,159,73,-0.18620141648351962],[126,159,74,-0.18388958580900017],[126,159,75,-0.1814650810048558],[126,159,76,-0.1789293300598982],[126,159,77,-0.17628390470147748],[126,159,78,-0.17353052280175607],[126,159,79,-0.17067105079154743],[126,160,64,-0.20617520064568207],[126,160,65,-0.20492706827275098],[126,160,66,-0.20355830692043864],[126,160,67,-0.20206917018826975],[126,160,68,-0.20046003506631915],[126,160,69,-0.19873140427594305],[126,160,70,-0.19688390861779814],[126,160,71,-0.194918309327217],[126,160,72,-0.19283550043690212],[126,160,73,-0.1906365111470184],[126,160,74,-0.18832250820250562],[126,160,75,-0.18589479827784106],[126,160,76,-0.18335483036909006],[126,160,77,-0.18070419819329264],[126,160,78,-0.17794464259520104],[126,160,79,-0.1750780539613248],[126,161,64,-0.21044556735388908],[126,161,65,-0.20920526899460723],[126,161,66,-0.20784319716209965],[126,161,67,-0.20635961728650276],[126,161,68,-0.20475491912902655],[126,161,69,-0.20302961912548567],[126,161,70,-0.2011843627368748],[126,161,71,-0.19921992680705092],[126,161,72,-0.19713722192748473],[126,161,73,-0.19493729480916588],[126,161,74,-0.19262133066147746],[126,161,75,-0.1901906555782743],[126,161,76,-0.18764673893100092],[126,161,77,-0.18499119576889678],[126,161,78,-0.18222578922630683],[126,161,79,-0.17935243293704972],[126,162,64,-0.2145795056946509],[126,162,65,-0.2133469531963812],[126,162,66,-0.21199151668876925],[126,162,67,-0.21051347303278822],[126,162,68,-0.20891322433429105],[126,162,69,-0.20719130029036292],[126,162,70,-0.20534836054247652],[126,162,71,-0.2033851970365158],[126,162,72,-0.20130273638963192],[126,162,73,-0.19910204226401096],[126,162,74,-0.1967843177473757],[126,162,75,-0.1943509077404484],[126,162,76,-0.1918033013512176],[126,162,77,-0.189143134296052],[126,162,78,-0.18637219130768068],[126,162,79,-0.18349240854999171],[126,163,64,-0.21857556777790565],[126,163,65,-0.21735065836771916],[126,163,66,-0.21600178886845411],[126,163,67,-0.21452924717077715],[126,163,68,-0.21293344729682373],[126,163,69,-0.21121493174937922],[126,163,70,-0.2093743738676328],[126,163,71,-0.20741258018956776],[126,163,72,-0.2053304928209576],[126,163,73,-0.20312919181104105],[126,163,74,-0.2008098975347019],[126,163,75,-0.19837397308138127],[126,163,76,-0.19582292665056233],[126,163,77,-0.193158413953874],[126,163,78,-0.19038224062382791],[126,163,79,-0.18749636462914887],[126,164,64,-0.22243247283085466],[126,164,65,-0.22121508952180247],[126,164,66,-0.2198727049543585],[126,164,67,-0.21840561764679778],[126,164,68,-0.21681425310777258],[126,164,69,-0.2150991661883198],[126,164,70,-0.21326104344022168],[126,164,71,-0.21130070548078095],[126,164,72,-0.2092191093639818],[126,164,73,-0.20701735095810825],[126,164,74,-0.20469666732964775],[126,164,75,-0.20225843913370256],[126,164,76,-0.1997041930107578],[126,164,77,-0.19703560398984232],[126,164,78,-0.19425449789810767],[126,164,79,-0.1913628537767732],[126,165,64,-0.2261491127462567],[126,165,65,-0.22493912477403744],[126,165,66,-0.22360312969231555],[126,165,67,-0.22214143624438787],[126,165,68,-0.2205544809947283],[126,165,69,-0.21884283068381394],[126,165,70,-0.21700718458908952],[126,165,71,-0.21504837689213974],[126,165,72,-0.21296737905202967],[126,165,73,-0.2107653021848941],[126,165,74,-0.20844339944959822],[126,165,75,-0.20600306843969685],[126,165,76,-0.203445853581534],[126,165,77,-0.2007734485385263],[126,165,78,-0.197987698621652],[126,165,79,-0.19509060320609328],[126,166,64,-0.22972455768745892],[126,166,65,-0.22852182097796214],[126,166,66,-0.22719210698590175],[126,166,67,-0.22573573427695537],[126,166,68,-0.22415315004028413],[126,166,69,-0.2224449324461586],[126,166,70,-0.2206117930095226],[126,166,71,-0.2186545789595571],[126,166,72,-0.21657427561521292],[126,166,73,-0.21437200876678808],[126,166,74,-0.21204904706337147],[126,166,75,-0.20960680440638435],[126,166,76,-0.20704684234905846],[126,166,77,-0.20437087250189478],[126,166,78,-0.20158075894412197],[126,166,79,-0.1986785206411108],[126,167,64,-0.23315806175031906],[126,167,65,-0.23196241941852835],[126,167,66,-0.2306388656193893],[126,167,67,-0.22918772833872314],[126,167,68,-0.22760946495930445],[126,167,69,-0.2259046646212629],[126,167,70,-0.22407405058822638],[126,167,71,-0.22211848261927003],[126,167,72,-0.2200389593466422],[126,167,73,-0.2178366206593365],[126,167,74,-0.21551275009234094],[126,167,75,-0.2130687772217854],[126,167,76,-0.21050628006583416],[126,167,77,-0.2078269874913653],[126,167,78,-0.20503278162645433],[126,167,79,-0.20212570027861743],[126,168,64,-0.23644906868183502],[126,168,65,-0.2352603515625722],[126,168,66,-0.23394282503834918],[126,168,67,-0.23249682611376765],[126,168,68,-0.23092282193471791],[126,168,69,-0.22922141215152125],[126,168,70,-0.22739333128762595],[126,168,71,-0.2254394511139296],[126,168,72,-0.22336078302868523],[126,168,73,-0.2211584804430745],[126,168,74,-0.2188338411722659],[126,168,75,-0.21638830983219337],[126,168,76,-0.2138234802418877],[126,168,77,-0.21114109783141166],[126,168,78,-0.20834306205541497],[126,168,79,-0.20543142881226162],[126,169,64,-0.23959721765557185],[126,169,65,-0.23841524486656518],[126,169,66,-0.2371036011879991],[126,169,67,-0.23566263224324935],[126,169,68,-0.23409281451192476],[126,169,69,-0.23239475769570894],[126,169,70,-0.23056920708957995],[126,169,71,-0.22861704595847498],[126,169,72,-0.22653929791936733],[126,169,73,-0.22433712932883032],[126,169,74,-0.22201185167590987],[126,169,75,-0.2195649239805404],[126,169,76,-0.21699795519733744],[126,169,77,-0.2143127066248155],[126,169,78,-0.2115110943200511],[126,169,79,-0.2085951915187394],[126,170,64,-0.24260234910397116],[126,170,65,-0.2414269286417282],[126,170,66,-0.24012101240937955],[126,170,67,-0.23868495425091452],[126,170,68,-0.23711923955190417],[126,170,69,-0.23542448760799106],[126,170,70,-0.23360145399859222],[126,170,71,-0.23165103296587797],[126,170,72,-0.22957425979899226],[126,170,73,-0.22737231322359452],[126,170,74,-0.2250465177965416],[126,170,75,-0.22259834630594233],[126,170,76,-0.2200294221764234],[126,170,77,-0.21734152187965028],[126,170,78,-0.21453657735012432],[126,170,79,-0.21161667840620746],[126,171,64,-0.24546451060736107],[126,171,65,-0.24429543997633008],[126,171,66,-0.24299508539317483],[126,171,67,-0.24156380852668857],[126,171,68,-0.24000210324283888],[126,171,69,-0.23831059797584941],[126,171,70,-0.2364900581043392],[126,171,71,-0.23454138833257443],[126,171,72,-0.23246563507680507],[126,171,73,-0.23026398885676103],[126,171,74,-0.22793778669212894],[126,171,75,-0.2254885145042418],[126,171,76,-0.22291780952282148],[126,171,77,-0.22022746269781412],[126,171,78,-0.21741942111634338],[126,171,79,-0.21449579042473121],[126,172,64,-0.24818396283977917],[126,172,65,-0.24702102971528017],[126,172,66,-0.2457260611912936],[126,172,67,-0.2442994263684728],[126,172,68,-0.24274162717037018],[126,172,69,-0.24105330071705378],[126,172,70,-0.23923522170362366],[126,172,71,-0.23728830478369478],[126,172,72,-0.23521360695781002],[126,172,73,-0.2330123299668614],[126,172,74,-0.23068582269034232],[126,172,75,-0.22823558354966045],[126,172,76,-0.22566326291634864],[126,172,77,-0.22297066552522526],[126,172,78,-0.22015975289251244],[126,172,79,-0.21723264573887524],[126,173,64,-0.2507611855716536],[126,173,65,-0.2496041684970618],[126,173,66,-0.2483144012862557],[126,173,67,-0.24689226008219156],[126,173,68,-0.24533825444653046],[126,173,69,-0.2436530297357148],[126,173,70,-0.24183736948180612],[126,173,71,-0.23989219777814363],[126,173,72,-0.2378185816697881],[126,173,73,-0.2356177335488362],[126,173,74,-0.23329101355441662],[126,173,75,-0.23083993197760844],[126,173,76,-0.22826615167111153],[126,173,77,-0.22557149046372416],[126,173,78,-0.22275792357963575],[126,173,79,-0.2198275860624962],[126,174,64,-0.2531968837292109],[126,174,65,-0.25204555284787467],[126,174,66,-0.2507607937182458],[126,174,67,-0.249342989139954],[126,174,68,-0.2477926558972139],[126,174,69,-0.24611044713728747],[126,174,70,-0.24429715475357416],[126,174,71,-0.24235371177338694],[126,174,72,-0.240281194750379],[126,174,73,-0.2380808261617039],[126,174,74,-0.23575397680972632],[126,174,75,-0.23330216822851546],[126,174,76,-0.23072707509495982],[126,174,77,-0.22803052764455],[126,174,78,-0.225214514091847],[126,174,79,-0.22228118305558564],[126,175,64,-0.2554919935106804],[126,175,65,-0.2543461113330556],[126,175,66,-0.25306615926991416],[126,175,67,-0.2516525263964058],[126,175,68,-0.25010573630826793],[126,175,69,-0.24842644950259873],[126,175,70,-0.24661546576312465],[126,175,71,-0.2446737265500284],[126,175,72,-0.24260231739430316],[126,175,73,-0.24040247029671047],[126,175,74,-0.23807556613116154],[126,175,75,-0.23562313705275695],[126,175,76,-0.23304686891031878],[126,175,77,-0.23034860366346466],[126,175,78,-0.22753034180423848],[126,175,79,-0.22459424478325307],[126,176,64,-0.2576476885593598],[126,176,65,-0.25650701076584137],[126,176,66,-0.25523165770898326],[126,176,67,-0.25382202436333057],[126,176,68,-0.25227864073025763],[126,176,69,-0.2506021742209603],[126,176,70,-0.24879343204382276],[126,176,71,-0.2468533635962309],[126,176,72,-0.2447830628607871],[126,176,73,-0.24258377080601268],[126,176,74,-0.24025687779135618],[126,176,75,-0.23780392597673683],[126,176,76,-0.2352266117364653],[126,176,77,-0.23252678807758442],[126,176,78,-0.2297064670626492],[126,176,79,-0.22676782223690095],[126,177,64,-0.2596653861934076],[126,177,65,-0.2585296624733462],[126,177,66,-0.257258694088526],[126,177,67,-0.25585288154237174],[126,177,68,-0.2543127608417789],[126,177,69,-0.25263900588223454],[126,177,70,-0.2508324308372054],[126,177,71,-0.24889399255185407],[126,177,72,-0.24682479294105264],[126,177,73,-0.2446260813917679],[126,177,74,-0.24229925716964162],[126,177,75,-0.23984587182999773],[126,177,76,-0.23726763163311126],[126,177,77,-0.2345663999637897],[126,177,78,-0.23174419975528116],[126,177,79,-0.22880321591746133],[126,178,64,-0.26154675369243807],[126,178,65,-0.26041572861981366],[126,178,66,-0.25914892510499155],[126,178,67,-0.2577467488159436],[126,178,68,-0.2562097413713845],[126,178,69,-0.2545385827279264],[126,178,70,-0.25273409357139565],[126,178,71,-0.2507972377123783],[126,178,72,-0.2487291244859534],[126,178,73,-0.24653101115570086],[126,178,74,-0.24420430532179505],[126,178,75,-0.24175056733342415],[126,178,76,-0.23917151270536874],[126,178,77,-0.23646901453878477],[126,178,78,-0.23364510594621424],[126,178,79,-0.23070198248077056],[126,179,64,-0.2632937146409715],[126,179,65,-0.262167128587218],[126,179,66,-0.2609042655140349],[126,179,67,-0.2595055358963919],[126,179,68,-0.25797148657819124],[126,179,69,-0.25630280316135856],[126,179,70,-0.2545003123989966],[126,179,71,-0.25256498459267385],[126,179,72,-0.2504979359938053],[126,179,73,-0.24830043120920586],[126,179,74,-0.24597388561064248],[126,179,75,-0.2435198677486068],[126,179,76,-0.2409401017701558],[126,179,77,-0.23823646984086055],[126,179,78,-0.23541101457088232],[126,179,79,-0.23246594144513255],[126,180,64,-0.26490845532860663],[126,180,65,-0.2637860454130607],[126,180,66,-0.26252689460401235],[126,180,67,-0.26113141783326566],[126,180,68,-0.25960016679102027],[126,180,69,-0.25793383231679234],[126,180,70,-0.25613324679431526],[126,180,71,-0.2541993865504799],[126,180,72,-0.25213337425828075],[126,180,73,-0.24993648134384683],[126,180,74,-0.2476101303973779],[126,180,75,-0.24515589758821843],[126,180,76,-0.24257551508390407],[126,180,77,-0.23987087347323133],[126,180,78,-0.237044024193366],[126,180,79,-0.23409718196094031],[126,181,64,-0.26639343120701087],[126,181,65,-0.26527493228547006],[126,181,66,-0.26401926272723997],[126,181,67,-0.26262684157879834],[126,181,68,-0.26109822500617297],[126,181,69,-0.25943410868759176],[126,181,70,-0.25763533021002305],[126,181,71,-0.2557028714696836],[126,181,72,-0.25363786107646236],[126,181,73,-0.25144157676235046],[126,181,74,-0.24911544779369565],[126,181,75,-0.246661057387508],[126,181,76,-0.24408014513166254],[126,181,77,-0.2413746094090362],[126,181,78,-0.23854650982560466],[126,181,79,-0.23559806964245],[126,182,64,-0.2677513734037462],[126,182,65,-0.266636519095622],[126,182,66,-0.2653840978890356],[126,182,67,-0.2639945326116131],[126,182,68,-0.26246838354386437],[126,182,69,-0.2608063508134497],[126,182,70,-0.2590092767932678],[126,182,71,-0.25707814850342836],[126,182,72,-0.25501410001707214],[126,182,73,-0.25281841487011647],[126,182,74,-0.2504925284747551],[126,182,75,-0.24803803053692952],[126,182,76,-0.24545666747762485],[126,182,77,-0.24275034485802394],[126,182,78,-0.23992112980854674],[126,182,79,-0.23697125346172354],[126,183,64,-0.2689852952928309],[126,183,65,-0.26787381904737173],[126,183,66,-0.2666244123944399],[126,183,67,-0.2652375016185585],[126,183,68,-0.2637136507632024],[126,183,69,-0.2620535640265743],[126,183,70,-0.2602580881611334],[126,183,71,-0.25832821487694013],[126,183,72,-0.2562650832487775],[126,183,73,-0.2540699821271366],[126,183,74,-0.25174435255287664],[126,183,75,-0.24928979017579833],[126,183,76,-0.2467080476769664],[126,183,77,-0.24400103719482535],[126,183,78,-0.2411708327551304],[126,183,79,-0.2382196727046435],[126,184,64,-0.27009849912212924],[126,184,65,-0.26899013532420224],[126,184,66,-0.26774350955271287],[126,184,67,-0.26635905123475845],[126,184,68,-0.26483732783581804],[126,184,69,-0.2631790472569284],[126,184,70,-0.2613850602355461],[126,184,71,-0.2594563627501686],[126,184,72,-0.25739409842866723],[126,184,73,-0.25519956096041974],[126,184,74,-0.25287419651206067],[126,184,75,-0.2504196061470768],[126,184,76,-0.24783754824909576],[126,184,77,-0.24512994094889984],[126,184,78,-0.2422988645551959],[126,184,79,-0.23934656398908893],[126,185,64,-0.2710945826975333],[126,185,65,-0.2699890678134437],[126,185,66,-0.26874499043956823],[126,185,67,-0.2673627828418489],[126,185,68,-0.26584301557810364],[126,185,69,-0.2641863998964875],[126,185,70,-0.2623937901375869],[126,185,71,-0.2604661861402141],[126,185,72,-0.25840473565086053],[126,185,73,-0.2562107367368893],[126,185,74,-0.2538856402032955],[126,185,75,-0.2514310520132492],[126,185,76,-0.24884873571227883],[126,185,77,-0.24614061485612482],[126,185,78,-0.24330877544229024],[126,185,79,-0.24035546834524024],[126,186,64,-0.2719774461239418],[126,186,65,-0.27087451988777245],[126,186,66,-0.2696327607171489],[126,186,67,-0.26825260342439994],[126,186,68,-0.26673462134206305],[126,186,69,-0.2650795287225197],[126,186,70,-0.2632881831412155],[126,186,71,-0.26136158790352904],[126,186,72,-0.25930089445525095],[126,186,73,-0.25710740479674987],[126,186,74,-0.2547825739006577],[126,186,75,-0.2523280121332875],[126,186,76,-0.24974548767963944],[126,186,77,-0.24703692897202978],[126,186,78,-0.2442044271223649],[126,186,79,-0.24125023835801385],[126,187,64,-0.2727512986030124],[126,187,65,-0.27165070524396695],[126,187,66,-0.2704110375117237],[126,187,67,-0.26903273248450266],[126,187,68,-0.2675163659647547],[126,187,69,-0.2658626548798637],[126,187,70,-0.26407245968638404],[126,187,71,-0.2621467867778873],[126,187,72,-0.2600867908963701],[126,187,73,-0.257893777547308],[126,187,74,-0.2555692054181813],[126,187,75,-0.25311468880069043],[126,187,76,-0.2505320000165159],[126,187,77,-0.2478230718466531],[126,187,78,-0.24498999996435145],[126,187,79,-0.24203504537160514],[126,188,64,-0.273420665287746],[126,188,65,-0.27232215479897526],[126,188,66,-0.2710843563491597],[126,188,67,-0.26970770901457763],[126,188,68,-0.268192790776383],[126,188,69,-0.2665403209222642],[126,188,70,-0.264751162451597],[126,188,71,-0.2628263244841681],[126,188,72,-0.2607669646724189],[126,188,73,-0.25857439161729967],[126,188,74,-0.2562500672875535],[126,188,75,-0.253795609442651],[126,188,76,-0.25121279405923147],[126,188,77,-0.2485035577610789],[126,188,78,-0.2456700002526645],[126,188,79,-0.24271438675619839],[126,189,64,-0.27399039419383575],[126,189,65,-0.2728937236432323],[126,189,66,-0.27165757814810787],[126,189,67,-0.270282398528342],[126,189,68,-0.26876876466697264],[126,189,69,-0.2671173979126996],[126,189,70,-0.26532916348585345],[126,189,71,-0.2634050728878954],[126,189,72,-0.2613462863144089],[126,189,73,-0.2591541150716635],[126,189,74,-0.25683002399657506],[126,189,75,-0.2543756338802855],[126,189,76,-0.2517927238952101],[126,189,77,-0.24908323402558996],[126,189,78,-0.24624926750157383],[126,189,79,-0.24329309323677673],[126,190,64,-0.2744656631678237],[126,190,65,-0.27337059805126596],[126,190,66,-0.2721358962709378],[126,190,67,-0.2707620001499704],[126,190,68,-0.2692494912116652],[126,190,69,-0.2675990925827393],[126,190,70,-0.26581167140000783],[126,190,71,-0.26388824122056886],[126,190,72,-0.2618299644354489],[126,190,73,-0.2596381546867924],[126,190,74,-0.25731427928841843],[126,190,75,-0.25485996164996616],[126,190,76,-0.25227698370448093],[126,190,77,-0.24956728833947373],[126,190,78,-0.2467329818314804],[126,190,79,-0.24377633628407303],[126,191,64,-0.2748519869120528],[126,191,65,-0.27375830254957945],[126,191,66,-0.272524843632418],[126,191,67,-0.27115205376144624],[126,191,68,-0.26964051585463233],[126,191,69,-0.2679909545509236],[126,191,70,-0.26620423861754583],[126,191,71,-0.26428138336077867],[126,191,72,-0.26222355304016964],[126,191,73,-0.2600320632862644],[126,191,74,-0.25770838352168157],[126,191,75,-0.2552541393857497],[126,191,76,-0.2526711151625608],[126,191,77,-0.24996125621247323],[126,191,78,-0.247126671407088],[126,191,79,-0.24416963556765214],[126,192,64,-0.27515522406641013],[126,192,65,-0.2740627070418088],[126,192,66,-0.2728302998661314],[126,192,67,-0.2714584472080922],[126,192,68,-0.26994773315159315],[126,192,69,-0.2682988836001602],[126,192,70,-0.2665127686847638],[126,192,71,-0.2645904051750987],[126,192,72,-0.2625329588942803],[126,192,73,-0.26034174713703717],[126,192,74,-0.25801824109122573],[126,192,75,-0.25556406826288913],[126,192,76,-0.2529810149047078],[126,192,77,-0.2502710284478824],[126,192,78,-0.247436219937469],[126,192,79,-0.24447886647111783],[126,193,64,-0.2753815843468709],[126,193,65,-0.2742900339911615],[126,193,66,-0.2730584985486345],[126,193,67,-0.27168742356229114],[126,193,68,-0.2701773940709523],[126,193,69,-0.26852913701414616],[126,193,70,-0.26674352364036513],[126,193,71,-0.26482157191876576],[126,193,72,-0.26276444895426565],[126,193,73,-0.26057347340612136],[126,193,74,-0.2582501179098119],[126,193,75,-0.25579601150244724],[126,193,76,-0.2532129420515562],[126,193,77,-0.25050285868728306],[126,193,78,-0.2476678742380254],[126,193,79,-0.2447102676694547],[126,194,64,-0.2755376357408289],[126,194,65,-0.2744468656601273],[126,194,66,-0.2732160344813549],[126,194,67,-0.27184558844538975],[126,194,68,-0.27033611335354146],[126,194,69,-0.26868833697280214],[126,194,70,-0.26690313144446],[126,194,71,-0.26498151569613704],[126,194,72,-0.262924657857214],[126,194,73,-0.26073387767772027],[126,194,74,-0.25841064895051735],[126,194,75,-0.2559566019369939],[126,194,76,-0.25337352579612393],[126,194,77,-0.2506633710169258],[126,194,78,-0.2478282518543421],[126,194,79,-0.24487044876849517],[126,195,64,-0.27563031175923847],[126,195,65,-0.2745401514074777],[126,195,66,-0.2733098710302385],[126,195,67,-0.2719399174077971],[126,195,68,-0.27043087693098755],[126,195,69,-0.26878347800674274],[126,195,70,-0.2669985934669874],[126,195,71,-0.26507724298093893],[126,195,72,-0.2630205954707917],[126,195,73,-0.2608299715308535],[126,195,74,-0.25850684584996153],[126,195,75,-0.2560528496374074],[126,195,76,-0.2534697730522064],[126,195,77,-0.2507595676357637],[126,195,78,-0.247924348747947],[126,195,79,-0.24496639800652542],[126,196,64,-0.2756669187455282],[126,196,65,-0.2745772150425221],[126,196,66,-0.27334734752312206],[126,196,67,-0.2719777633672509],[126,196,68,-0.2704690494026718],[126,196,69,-0.26882193451074565],[126,196,70,-0.26703729203552895],[126,196,71,-0.26511614219628066],[126,196,72,-0.2630596545033369],[126,196,73,-0.2608691501774324],[126,196,74,-0.25854610457229765],[126,196,75,-0.2560921496007492],[126,196,76,-0.2535090761641273],[126,196,77,-0.25079883658511104],[126,196,78,-0.2479635470439432],[126,196,79,-0.24500549001800542],[126,197,64,-0.2756551432413311],[126,197,65,-0.2745657622366655],[126,197,66,-0.27333618670486104],[126,197,67,-0.2719668641052887],[126,197,68,-0.27045838157132396],[126,197,69,-0.2688114683162597],[126,197,70,-0.26702699804255225],[126,197,71,-0.2651059913544703],[126,197,72,-0.2630496181741062],[126,197,73,-0.2608592001608312],[126,197,74,-0.25853621313401765],[126,197,75,-0.2560822894992524],[126,197,76,-0.25349922067788744],[126,197,77,-0.2507889595399684],[126,197,78,-0.24795362284056222],[126,197,79,-0.24499549365943418],[126,198,64,-0.27560305940900054],[126,198,65,-0.27451388799222665],[126,198,66,-0.2732845022501934],[126,198,67,-0.27191534982189547],[126,198,68,-0.2704070180372141],[126,198,69,-0.2687602363229272],[126,198,70,-0.2669758786120551],[126,198,71,-0.26505496575660015],[126,198,72,-0.2629986679436488],[126,198,73,-0.2608083071149141],[126,198,74,-0.25848535938953854],[126,198,75,-0.2560314574903879],[126,198,76,-0.25344839317367807],[126,198,77,-0.2507381196619759],[126,198,78,-0.24790275408059514],[126,198,79,-0.24494457989733953],[126,199,64,-0.27551913651092197],[126,199,65,-0.27443008416854076],[126,199,66,-0.27320080633434185],[126,199,67,-0.2718317507483392],[126,199,68,-0.2703235048509627],[126,199,69,-0.2686767981891248],[126,199,70,-0.2668925048256199],[126,199,71,-0.2649716457519179],[126,199,72,-0.26291539130431896],[126,199,73,-0.26072506358354197],[126,199,74,-0.25840213887757857],[126,199,75,-0.2559482500880286],[126,199,76,-0.2533651891597739],[126,199,77,-0.2506549095140185],[126,199,78,-0.24781952848472444],[126,199,79,-0.2448613297583937],[126,200,64,-0.275412246445619],[126,200,65,-0.2743232470653384],[126,200,66,-0.27309401726135996],[126,200,67,-0.27172500481818995],[126,200,68,-0.2702167972249615],[126,200,69,-0.2685701240815265],[126,200,70,-0.26678585950788125],[126,200,71,-0.2648650245569819],[126,200,72,-0.26280878963092325],[126,200,73,-0.2606184769005493],[126,200,74,-0.25829556272832677],[126,200,75,-0.2558416800947043],[126,200,76,-0.2532586210278016],[126,200,77,-0.2505483390364712],[126,200,78,-0.24771295154675155],[126,200,79,-0.24475474234166483],[126,201,64,-0.27529167134065835],[126,201,65,-0.2742026850633992],[126,201,66,-0.2729734671502182],[126,201,67,-0.2716044653965285],[126,201,68,-0.27009626730340597],[126,201,69,-0.26844960248368743],[126,201,70,-0.26666534507140216],[126,201,71,-0.2647445161345944],[126,201,72,-0.2626882860915052],[126,201,73,-0.26049797713019174],[126,201,74,-0.2581750656314037],[126,201,75,-0.2557211845949483],[126,201,76,-0.2531381260693849],[126,201,77,-0.25042784358508985],[126,201,78,-0.24759245459071622],[126,201,79,-0.24463424289299374],[126,202,64,-0.27516650310723867],[126,202,65,-0.2740775143897427],[126,202,66,-0.2728482941068515],[126,202,67,-0.2714792900543721],[126,202,68,-0.26997108973368855],[126,202,69,-0.2683244227578594],[126,202,70,-0.26654016326104346],[126,202,71,-0.26461933231132295],[126,202,72,-0.262563100326881],[126,202,73,-0.2603727894956186],[126,202,74,-0.25804987619802866],[126,202,75,-0.25559599343355877],[126,202,76,-0.2530129332503025],[126,202,77,-0.2503026491780621],[126,202,78,-0.24746725866480457],[126,202,79,-0.24450904551646013],[126,203,64,-0.27503706484187573],[126,203,65,-0.2739480267231209],[126,203,66,-0.2727187588298662],[126,203,67,-0.2713497089602437],[126,203,68,-0.26984146461598124],[126,203,69,-0.2681947554084535],[126,203,70,-0.2664104554680602],[126,203,71,-0.26448958585700033],[126,203,72,-0.26243331698540295],[126,203,73,-0.26024297103089367],[126,203,74,-0.25792002436142236],[126,203,75,-0.25546610996157426],[126,203,76,-0.2528830198622132],[126,203,77,-0.2501727075734942],[126,203,78,-0.24733729052126918],[126,203,79,-0.24437905248683578],[126,204,64,-0.27489692769788154],[126,204,65,-0.27380772001968523],[126,204,66,-0.2725782887120748],[126,204,67,-0.2712090815813085],[126,204,68,-0.26970068613044107],[126,204,69,-0.26805383196521115],[126,204,70,-0.26626939320325693],[126,204,71,-0.2643483908867249],[126,204,72,-0.2622919953982352],[126,204,73,-0.26010152888028126],[126,204,74,-0.2577784676578887],[126,204,75,-0.2553244446647587],[126,204,76,-0.25274125187274],[126,204,77,-0.2500308427246708],[126,204,78,-0.24719533457061216],[126,204,79,-0.2442370111074228],[126,205,64,-0.27473980606038817],[126,205,65,-0.273650237621197],[126,205,66,-0.27242045862310194],[126,205,67,-0.27105091688998173],[126,205,68,-0.26954219992803985],[126,205,69,-0.26789503733134634],[126,205,70,-0.2661103031907047],[126,205,71,-0.2641890185059087],[126,205,72,-0.2621323536013548],[126,205,73,-0.25994163054508623],[126,205,74,-0.2576183255710939],[126,205,75,-0.25516407150509834],[126,205,76,-0.2525806601936609],[126,205,77,-0.24987004493665854],[126,205,78,-0.24703434292315152],[126,205,79,-0.24407583767058827],[126,206,64,-0.27455973562391656],[126,206,65,-0.27346954744195895],[126,206,66,-0.2722391711475832],[126,206,67,-0.2708690545955176],[126,206,68,-0.26935978529794913],[126,206,69,-0.2677120928294695],[126,206,70,-0.26592685123533955],[126,206,71,-0.26400508144314494],[126,206,72,-0.2619479536777978],[126,206,73,-0.2597567898799702],[126,206,74,-0.2574330661277775],[126,206,75,-0.2549784150619422],[126,206,76,-0.2523946283142777],[126,206,77,-0.2496836589395386],[126,206,78,-0.24684762385065318],[126,206,79,-0.24388880625729348],[126,207,64,-0.2743510666132616],[126,207,65,-0.27325993512708413],[126,207,66,-0.2720286496831812],[126,207,67,-0.27065765818413456],[126,207,68,-0.2691475481521264],[126,207,69,-0.2674990491329745],[126,207,70,-0.2657130351034833],[126,207,71,-0.26379052688217697],[126,207,72,-0.26173269454337444],[126,207,73,-0.25954085983468866],[126,207,74,-0.25721649859777074],[126,207,75,-0.25476124319252724],[126,207,76,-0.25217688492465384],[126,207,77,-0.24946537647652522],[126,207,78,-0.24662883434146565],[126,207,79,-0.24366954126134732],[126,208,64,-0.27410845706276865],[126,208,65,-0.2730159972696453],[126,208,66,-0.2717834315979536],[126,208,67,-0.27041120801894114],[126,208,68,-0.2688999140701306],[126,208,69,-0.2672502792580719],[126,208,70,-0.2654631774644033],[126,208,71,-0.26353962935528363],[126,208,72,-0.2614808047941597],[126,208,73,-0.2592880252579478],[126,208,74,-0.2569627662564534],[126,208,75,-0.254506659755253],[126,208,76,-0.251921496601885],[126,208,77,-0.24920922895538922],[126,208,78,-0.24637197271921507],[126,208,79,-0.24341200997745338],[126,209,64,-0.2738268661540014],[126,209,65,-0.27273263468670206],[126,209,66,-0.27149836144706674],[126,209,67,-0.27012449449965836],[126,209,68,-0.2686116214041705],[126,209,69,-0.26696047161646586],[126,209,70,-0.2651719188929128],[126,209,71,-0.2632469836980801],[126,209,72,-0.26118683561575673],[126,209,73,-0.2589927957633732],[126,209,74,-0.2566663392096493],[126,209,75,-0.25420909739569386],[126,209,76,-0.25162286055940064],[126,209,77,-0.24890958016318054],[126,209,78,-0.2460713713250542],[126,209,79,-0.24311051525305227],[126,210,64,-0.2735015476117889],[126,210,65,-0.27240504575419755],[126,210,66,-0.2711685842488496],[126,210,67,-0.26979261128213416],[126,210,68,-0.26827771444437454],[126,210,69,-0.26662462312866675],[126,210,70,-0.26483421093300075],[126,210,71,-0.26290749806572666],[126,210,72,-0.2608456537543281],[126,210,73,-0.25864999865758553],[126,210,74,-0.25632200728094934],[126,210,75,-0.25386331039534904],[126,210,76,-0.25127569745928613],[126,210,77,-0.2485611190442466],[126,210,78,-0.24572168926345928],[126,210,79,-0.24275968820394733],[126,211,64,-0.2731280431586667],[126,211,65,-0.27202871980073806],[126,211,66,-0.27078953882019896],[126,211,67,-0.2694109485576588],[126,211,68,-0.26789353664429405],[126,211,69,-0.2662380323979504],[126,211,70,-0.26444530922250464],[126,211,71,-0.26251638701055535],[126,211,72,-0.2604524345494026],[126,211,73,-0.2582547719303959],[126,211,74,-0.2559248729614768],[126,211,75,-0.25346436758313673],[126,211,76,-0.25087504428764096],[126,211,77,-0.24815885254155268],[126,211,78,-0.2453179052115857],[126,211,79,-0.2423544809937298],[126,212,64,-0.27270217602770985],[126,212,65,-0.2715994305602498],[126,212,66,-0.27035695117133385],[126,212,67,-0.2689751863920806],[126,212,68,-0.2674547239066397],[126,212,69,-0.2657962929449641],[126,212,70,-0.2640007666788221],[126,212,71,-0.2620691646211146],[126,212,72,-0.26000265502845776],[126,212,73,-0.25780255730711377],[126,212,74,-0.2554703444220897],[126,212,75,-0.25300764530963316],[126,212,76,-0.25041624729296763],[126,212,77,-0.24769809850130864],[126,212,78,-0.24485531029218222],[126,212,79,-0.24189015967699656],[126,213,64,-0.27222004453374127],[126,213,65,-0.27111322968350404],[126,213,66,-0.26986682795988326],[126,213,67,-0.26848128812470684],[126,213,68,-0.2669571979292338],[126,213,69,-0.2652952865029625],[126,213,70,-0.26349642674565177],[126,213,71,-0.26156163772261654],[126,213,72,-0.259492087063266],[126,213,73,-0.25728909336296035],[126,213,74,-0.25495412858800937],[126,213,75,-0.2524888204840403],[126,213,76,-0.24989495498757852],[126,213,77,-0.24717447864088093],[126,213,78,-0.24432950101004636],[126,213,79,-0.24136229710635038],[126,214,64,-0.27167801570294003],[126,214,65,-0.2705664403085263],[126,214,66,-0.26931545000433343],[126,214,67,-0.2679254938270125],[126,214,68,-0.26639715961120325],[126,214,69,-0.2647311763736978],[126,214,70,-0.2629284167007788],[126,214,71,-0.26098989913880777],[126,214,72,-0.2589167905880192],[126,214,73,-0.2567104086996025],[126,214,74,-0.25437222427589434],[126,214,75,-0.2519038636739078],[126,214,76,-0.24930711121204285],[126,214,77,-0.24658391158001802],[126,214,78,-0.2437363722520458],[126,214,79,-0.24076676590320256],[126,215,64,-0.27107271896083074],[126,215,65,-0.2699556506898777],[126,215,66,-0.26869936585681187],[126,215,67,-0.2673043138211386],[126,215,68,-0.2657710825193963],[126,215,69,-0.2641004008439434],[126,215,70,-0.2622931410248923],[126,215,71,-0.26035032101524913],[126,215,72,-0.2582731068792242],[126,215,73,-0.2560628151837959],[126,215,74,-0.2537209153933436],[126,215,75,-0.2512490322675851],[126,215,76,-0.2486489482626546],[126,215,77,-0.24592260593536674],[126,215,78,-0.2430721103506872],[126,215,79,-0.24009973149236008],[126,216,64,-0.27040103987867015],[126,216,65,-0.2692777078868218],[126,216,66,-0.2680153854352284],[126,216,67,-0.26661452225819904],[126,216,68,-0.265075706415033],[126,216,69,-0.2633996666626718],[126,216,70,-0.26158727483145094],[126,216,71,-0.2596395482040176],[126,216,72,-0.2575576518973768],[126,216,73,-0.2553429012481472],[126,216,74,-0.25299676420084494],[126,216,75,-0.25052086369942816],[126,216,76,-0.24791698008194096],[126,216,77,-0.2451870534783005],[126,216,78,-0.24233318621124822],[126,216,79,-0.2393576452004157],[126,217,64,-0.26966011397820466],[126,217,65,-0.26852971151034877],[126,217,66,-0.26726057371474443],[126,217,67,-0.2658531507563622],[126,217,68,-0.2643080308405721],[126,217,69,-0.2626259425788555],[126,217,70,-0.26080775735756456],[126,217,71,-0.258854491709804],[126,217,72,-0.2567673096903905],[126,217,73,-0.2545475252539745],[126,217,74,-0.25219660463614135],[126,217,75,-0.24971616873772629],[126,217,76,-0.24710799551217943],[126,217,77,-0.24437402235602657],[126,217,78,-0.24151634850244574],[126,217,79,-0.23853723741791066],[126,218,64,-0.26884732059482963],[126,218,65,-0.2677090075290933],[126,218,66,-0.2664322444786026],[126,218,67,-0.26501748209874865],[126,218,68,-0.26346530876681895],[126,218,69,-0.2617764529399256],[126,218,70,-0.2599517855159318],[126,218,71,-0.2579923221974414],[126,218,72,-0.25589922585881497],[126,218,73,-0.25367380891629354],[126,218,74,-0.25131753570104787],[126,218,75,-0.24883202483538647],[126,218,76,-0.24621905161196056],[126,218,77,-0.24348055037601046],[126,218,78,-0.24061861691067354],[126,218,79,-0.23763551082530487],[126,219,64,-0.26796027679914236],[126,219,65,-0.2668131821341304],[126,219,66,-0.2655279541283062],[126,219,67,-0.26410504399112733],[126,219,68,-0.2625450403002647],[126,219,69,-0.2608486713508765],[126,219,70,-0.2590168075078165],[126,219,71,-0.25705046356084904],[126,219,72,-0.25495080108282775],[126,219,73,-0.2527191307909217],[126,219,74,-0.2503569149107082],[126,219,75,-0.24786576954336204],[126,219,76,-0.24524746703578304],[126,219,77,-0.24250393835370365],[126,219,78,-0.23963727545779834],[126,219,79,-0.23664973368274445],[126,220,64,-0.26699683137685837],[126,220,65,-0.2658400556626268],[126,220,66,-0.2645454955531227],[126,220,67,-0.263113602879385],[126,220,68,-0.2615449664506355],[126,220,69,-0.2598403143939897],[126,220,70,-0.2580005164970388],[126,220,71,-0.2560265865533691],[126,220,72,-0.2539196847109777],[126,220,73,-0.2516811198236717],[126,220,74,-0.24931235180526368],[126,220,75,-0.24681499398679874],[126,220,76,-0.2441908154766539],[126,220,77,-0.24144174352354741],[126,220,78,-0.23856986588248597],[126,220,79,-0.23557743318359536],[126,221,64,-0.2659550588671378],[126,221,65,-0.26478767658038826],[126,221,66,-0.26348289205895314],[126,221,67,-0.2620411578268158],[126,221,68,-0.26046306295868704],[126,221,69,-0.25874933540922074],[126,221,70,-0.2569008443450246],[126,221,71,-0.254918602479536],[126,221,72,-0.25280376841072016],[126,221,73,-0.2505576489616784],[126,221,74,-0.24818170152397845],[126,221,75,-0.24567753640394374],[126,221,76,-0.24304691917173926],[126,221,77,-0.24029177301329696],[126,221,78,-0.23741418108510215],[126,221,79,-0.23441638887179184],[126,222,64,-0.264833253659302],[126,222,65,-0.26365431552328766],[126,222,66,-0.2623383913565518],[126,222,67,-0.2608859344512079],[126,222,68,-0.2592975341842344],[126,222,69,-0.25757391833523247],[126,222,70,-0.25571595540689585],[126,222,71,-0.2537246569482656],[126,222,72,-0.25160117988072894],[126,222,73,-0.24934682882684334],[126,222,74,-0.24696305844180577],[126,222,75,-0.2444514757477978],[126,222,76,-0.24181384247104765],[126,222,77,-0.23905207738165157],[126,222,78,-0.23616825863617397],[126,222,79,-0.23316462612298072],[126,223,64,-0.26362992414791264],[126,223,65,-0.26243845939754096],[126,223,66,-0.2611104596090631],[126,223,67,-0.2596463789217015],[126,223,68,-0.25804680705438177],[126,223,69,-0.2563124716110422],[126,223,70,-0.2544442403885693],[126,223,71,-0.2524431236874286],[126,223,72,-0.25031027662495176],[126,223,73,-0.24804700145136294],[126,223,74,-0.24565474986835922],[126,223,75,-0.2431351253504811],[126,223,76,-0.24048988546911343],[126,223,77,-0.23772094421915324],[126,223,78,-0.2348303743483734],[126,223,79,-0.23182040968942774],[126,224,64,-0.2623437869462615],[126,224,65,-0.26113880553888613],[126,224,66,-0.25979777553893113],[126,224,67,-0.25832115201546846],[126,224,68,-0.2567095250720056],[126,224,69,-0.2549636221383359],[126,224,70,-0.2530843102649193],[126,224,71,-0.2510725984198634],[126,224,72,-0.24892963978846516],[126,224,73,-0.2466567340753958],[126,224,74,-0.24425532980934606],[126,224,75,-0.2417270266503655],[126,224,76,-0.23907357769973447],[126,224,77,-0.23629689181241242],[126,224,78,-0.23339903591208222],[126,224,79,-0.23038223730874297],[126,225,64,-0.26097376115825477],[126,225,65,-0.25975425593064183],[126,225,66,-0.25839922459415876],[126,225,67,-0.2569091232341929],[126,225,68,-0.25528454238447384],[126,225,69,-0.2535262093044316],[126,225,70,-0.2516349902589824],[126,225,71,-0.24961189280080975],[126,225,72,-0.24745806805510484],[126,225,73,-0.24517481300684796],[126,225,74,-0.24276357279044414],[126,225,75,-0.24022594298195288],[126,225,76,-0.23756367189374628],[126,225,77,-0.23477866287163995],[126,225,78,-0.2318729765945181],[126,225,79,-0.22884883337640383],[126,226,64,-0.25951896270865005],[126,226,65,-0.2582839114806097],[126,226,66,-0.2569138931738796],[126,226,67,-0.25540936498031397],[126,226,68,-0.2537709179125558],[126,226,69,-0.2519992790658476],[126,226,70,-0.25009531388216266],[126,226,71,-0.24806002841671737],[126,226,72,-0.24589457160683448],[126,226,73,-0.24360023754323512],[126,226,74,-0.24117846774357343],[126,226,75,-0.2386308534284578],[126,226,76,-0.23595913779978472],[126,226,77,-0.2331652183214391],[126,226,78,-0.23025114900237498],[126,226,79,-0.22721914268203147],[126,227,64,-0.25797869873171453],[126,227,65,-0.2567270663568829],[126,227,66,-0.2553410629133055],[126,227,67,-0.2538211467930984],[126,227,68,-0.2521679095395959],[126,227,69,-0.25038207809254687],[126,227,70,-0.24846451703550776],[126,227,71,-0.24641623084550424],[126,227,72,-0.24423836614491856],[126,227,73,-0.24193221395568987],[126,227,74,-0.23949921195564083],[126,227,75,-0.23694094673716515],[126,227,76,-0.2342591560681152],[126,227,77,-0.23145573115493523],[126,227,78,-0.2285327189080537],[126,227,79,-0.22549232420949505],[126,228,64,-0.25635246201827233],[126,228,65,-0.25508320238253834],[126,228,66,-0.25368020502802824],[126,228,67,-0.2521439296445128],[126,228,68,-0.25047496836091954],[126,228,69,-0.24867404797282722],[126,228,70,-0.24674203217202828],[126,228,71,-0.2446799237782331],[126,228,72,-0.24248886697287275],[126,228,73,-0.24017014953508986],[126,228,74,-0.23772520507972328],[126,228,75,-0.2351556152975327],[126,228,76,-0.2324631121974935],[126,228,77,-0.2296495803512073],[126,228,78,-0.22671705913945106],[126,228,79,-0.22366774500081266],[126,229,64,-0.25463992552110426],[126,229,65,-0.25335198348916066],[126,229,66,-0.2519309747176218],[126,229,67,-0.2503773602948528],[126,229,68,-0.2486917329934264],[126,229,69,-0.24687481947881385],[126,229,70,-0.2449274825200093],[126,229,71,-0.24285072320215673],[126,229,72,-0.24064568314114498],[126,229,73,-0.2383136467002509],[126,229,74,-0.23585604320864373],[126,229,75,-0.23327444918199314],[126,229,76,-0.23057059054501106],[126,229,77,-0.227746344855976],[126,229,78,-0.2248037435332585],[126,229,79,-0.22174497408379812],[126,230,64,-0.25284093691876897],[126,230,65,-0.25153325022928563],[126,230,66,-0.2500932056286338],[126,230,67,-0.24852126570820743],[126,230,68,-0.24681802394545083],[126,230,69,-0.244984206892631],[126,230,70,-0.24302067636740043],[126,230,71,-0.24092843164522093],[126,230,72,-0.23870861165360702],[126,230,73,-0.23636249716827806],[126,230,74,-0.2338915130110243],[126,230,75,-0.2312972302495343],[126,230,76,-0.22858136839901244],[126,230,77,-0.22574579762563396],[126,230,78,-0.22279254095185708],[126,230,79,-0.21972377646354424],[126,231,64,-0.25095551323781917],[126,231,65,-0.24962701434772117],[126,231,66,-0.24816690437692313],[126,231,67,-0.24657564752772476],[126,231,68,-0.24485383804685823],[126,231,69,-0.243002202393222],[126,231,70,-0.24102160140724904],[126,231,71,-0.23891303248198348],[126,231,72,-0.23667763173582534],[126,231,73,-0.2343166761870319],[126,231,74,-0.23183158592977837],[126,231,75,-0.22922392631202926],[126,231,76,-0.2264954101150457],[126,231,77,-0.22364789973457977],[126,231,78,-0.22068340936377084],[126,231,79,-0.2176041071777005],[126,232,64,-0.24898383553335823],[126,232,65,-0.24763345341169785],[126,232,66,-0.24615224512929978],[126,232,67,-0.24454067661062562],[126,232,68,-0.24279934293931837],[126,232,69,-0.24092897050376305],[126,232,70,-0.2389304191441186],[126,232,71,-0.23680468430089707],[126,232,72,-0.23455289916505206],[126,232,73,-0.23217633682965733],[126,232,74,-0.22967641244298898],[126,232,75,-0.2270546853632528],[126,232,76,-0.224312861314789],[126,232,77,-0.22145279454580047],[126,232,78,-0.21847648998762303],[126,232,79,-0.21538610541549275],[126,233,64,-0.24692624362802973],[126,233,65,-0.24555290549994213],[126,233,66,-0.24404956424455249],[126,233,67,-0.24241668762306046],[126,233,68,-0.24065487162685595],[126,233,69,-0.23876484259976416],[126,233,70,-0.2367474593615927],[126,233,71,-0.23460371533305613],[126,233,72,-0.23233474066203774],[126,233,73,-0.22994180435127443],[126,233,74,-0.2274263163872704],[126,233,75,-0.22478982987069018],[126,233,76,-0.22203404314805697],[126,233,77,-0.21916080194480303],[126,233,78,-0.21617210149969468],[126,233,79,-0.21307008870058186],[126,234,64,-0.24478323090939846],[126,234,65,-0.2433858639506301],[126,234,66,-0.24185935497382993],[126,234,67,-0.24020417369476832],[126,234,68,-0.23842091708663415],[126,234,69,-0.23651031147781842],[126,234,70,-0.23447321465082172],[126,234,71,-0.23231061794235863],[126,234,72,-0.2300236483446213],[126,234,73,-0.2276135706077861],[126,234,74,-0.22508178934357037],[126,234,75,-0.22242985113008962],[126,234,76,-0.21965944661783898],[126,234,77,-0.21677241263685076],[126,234,78,-0.21377073430504423],[126,234,79,-0.21065654713772197],[126,235,64,-0.24255543918566658],[126,235,65,-0.24113297216816243],[126,235,66,-0.23958226222031098],[126,235,67,-0.2379037811334751],[126,235,68,-0.23609812693991006],[126,235,69,-0.23416602598493663],[126,235,70,-0.23210833500004813],[126,235,71,-0.22992604317702747],[126,235,72,-0.22762027424303255],[126,235,73,-0.22519228853674056],[126,235,74,-0.22264348508535015],[126,235,75,-0.21997540368269752],[126,235,76,-0.21718972696830896],[126,235,77,-0.2142882825074398],[126,235,78,-0.21127304487211906],[126,235,79,-0.20814613772315005],[126,236,64,-0.2402436535998289],[126,236,65,-0.23879501848886853],[126,236,66,-0.23721907735827508],[126,236,67,-0.23551630419914393],[126,236,68,-0.2336872981832746],[126,236,69,-0.2317327857085787],[126,236,70,-0.22965362244522547],[126,236,71,-0.2274507953825985],[126,236,72,-0.22512542487702436],[126,236,73,-0.22267876670036257],[126,236,74,-0.2201122140892544],[126,236,75,-0.2174272997952914],[126,236,76,-0.21462569813591914],[126,236,77,-0.21170922704613293],[126,236,78,-0.20867985013098012],[126,236,79,-0.20553967871882206],[126,237,64,-0.23784879760222166],[126,237,65,-0.2363729311055921],[126,237,66,-0.23477073311152175],[126,237,67,-0.23304267993802563],[126,237,68,-0.23118937198012357],[126,237,69,-0.22921153572733077],[126,237,70,-0.2271100257816766],[126,237,71,-0.2248858268763284],[126,237,72,-0.22254005589478165],[126,237,73,-0.22007396389070222],[126,237,74,-0.21748893810822456],[126,237,75,-0.2147865040029584],[126,237,76,-0.21196832726352866],[126,237,77,-0.20903621583369691],[126,237,78,-0.2059921219350852],[126,237,79,-0.20283814409045076],[126,238,64,-0.23537192798139617],[126,238,65,-0.23386777305109052],[126,238,66,-0.23223829849107536],[126,238,67,-0.2304839830764428],[126,238,68,-0.22860542851229526],[126,238,69,-0.2266033614221621],[126,238,70,-0.22447863533672774],[126,238,71,-0.2222322326829521],[126,238,72,-0.2198652667735368],[126,238,73,-0.21737898379683196],[126,238,74,-0.21477476480697855],[126,238,75,-0.21205412771454746],[126,238,76,-0.2092187292774933],[126,238,77,-0.20627036709247437],[126,238,78,-0.20321098158655804],[126,238,79,-0.2000426580092639],[126,239,64,-0.23281422995344858],[126,239,65,-0.23128073724037868],[126,239,66,-0.2296229737923018],[126,239,67,-0.2278414209744405],[126,239,68,-0.22593668189200677],[126,239,69,-0.22390948334839256],[126,239,70,-0.2217606778034481],[126,239,71,-0.21949124533192244],[126,239,72,-0.21710229558202898],[126,239,73,-0.21459506973422504],[126,239,74,-0.2119709424599996],[126,239,75,-0.2092314238809354],[126,239,76,-0.2063781615278576],[126,239,77,-0.20341294230012608],[126,239,78,-0.20033769442508575],[126,239,79,-0.19715448941762947],[126,240,64,-0.23017701230969723],[126,240,65,-0.22861314157190715],[126,240,66,-0.226926085651332],[126,240,67,-0.22511632863919062],[126,240,68,-0.22318447513397432],[126,240,69,-0.22113125216826135],[126,240,70,-0.2189575111353833],[126,240,71,-0.21666422971602162],[126,240,72,-0.21425251380469124],[126,240,73,-0.21172359943620633],[126,240,74,-0.20907885471191756],[126,240,75,-0.20631978172598953],[126,240,76,-0.2034480184915306],[126,240,77,-0.20046534086663126],[126,240,78,-0.1973736644803249],[126,240,79,-0.19417504665842833],[126,241,64,-0.2274617026227903],[126,241,65,-0.22586642408766322],[126,241,66,-0.22414908216087426],[126,241,67,-0.22231016379823842],[126,241,68,-0.22035027518781114],[126,241,69,-0.21827014364418174],[126,241,70,-0.21607061950237472],[126,241,71,-0.21375267801143527],[126,241,72,-0.2113174212276595],[126,241,73,-0.20876607990756246],[126,241,74,-0.20610001540037182],[126,241,75,-0.20332072154031922],[126,241,76,-0.20042982653853958],[126,241,77,-0.19742909487463378],[126,241,78,-0.19432042918791137],[126,241,79,-0.19110587216826624],[126,242,64,-0.22466984251112876],[126,242,65,-0.22304213819206986],[126,242,66,-0.22129352804529756],[126,242,67,-0.21942450203246977],[126,242,68,-0.21743566803057424],[126,242,69,-0.2153277536925623],[126,242,70,-0.2131016083073345],[126,242,71,-0.21075820465915707],[126,242,72,-0.2082986408864711],[126,242,73,-0.2057241423401831],[126,242,74,-0.2030360634412297],[126,242,75,-0.20023588953768656],[126,242,76,-0.19732523876122943],[126,242,77,-0.19430586388300697],[126,242,78,-0.19117965416893945],[126,242,79,-0.18794863723439625],[126,243,64,-0.22180308296174123],[126,243,65,-0.22014194792983066],[126,243,66,-0.21836109989512797],[126,243,67,-0.21646103196894162],[126,243,68,-0.2144423538196094],[126,243,69,-0.21230579349833756],[126,243,70,-0.210052199264129],[126,243,71,-0.20768254140788112],[126,243,72,-0.20519791407560783],[126,243,73,-0.20259953709088696],[126,243,74,-0.1998887577763121],[126,243,75,-0.19706705277422987],[126,243,76,-0.1941360298665642],[126,243,77,-0.1910974297937903],[126,243,78,-0.18795312807307019],[126,243,79,-0.18470513681550538],[126,244,64,-0.21886317971155322],[126,244,65,-0.21716762332265394],[126,244,66,-0.21535358146089512],[126,244,67,-0.21342155053351608],[126,244,68,-0.21137214210563016],[126,244,69,-0.209206084690146],[126,244,70,-0.20692422553650458],[126,244,71,-0.20452753241830968],[126,244,72,-0.20201709541981616],[126,244,73,-0.19939412872136641],[126,244,74,-0.19665997238355937],[126,244,75,-0.19381609413043321],[126,244,76,-0.19086409113146274],[126,244,77,-0.18780569178243223],[126,244,78,-0.18464275748519865],[126,244,79,-0.18137728442629852],[126,245,64,-0.2158519886869682],[126,245,65,-0.2141210357647786],[126,245,66,-0.2122728590062486],[126,245,67,-0.21030795826321047],[126,245,68,-0.2082269471059457],[126,245,69,-0.20603055457607344],[126,245,70,-0.20371962693796908],[126,245,71,-0.20129512942879735],[126,245,72,-0.19875814800711877],[126,245,73,-0.19610989110016264],[126,245,74,-0.19335169134955132],[126,245,75,-0.1904850073557549],[126,245,76,-0.18751142542107946],[126,245,77,-0.1844326612912479],[126,245,78,-0.18125056189558975],[126,245,79,-0.177967107085791],[126,246,64,-0.2127714615019094],[126,246,65,-0.2110041534774485],[126,246,66,-0.20912091672049438],[126,246,67,-0.20712225467842305],[126,246,68,-0.2050087830379963],[126,246,69,-0.20278123144011162],[126,246,70,-0.20044044519279025],[126,246,71,-0.19798738698248586],[126,246,72,-0.19542313858367655],[126,246,73,-0.19274890256683275],[126,246,74,-0.1899660040045421],[126,246,75,-0.18707589217607568],[126,246,76,-0.18408014227019487],[126,246,77,-0.18098045708625876],[126,246,78,-0.17777866873365133],[126,246,79,-0.17447674032947347],[126,247,64,-0.20962364101425446],[126,247,65,-0.207819037022269],[126,247,66,-0.2058998321904819],[126,247,67,-0.20386653371495667],[126,247,68,-0.2017197595131176],[126,247,69,-0.1994602398992661],[126,247,70,-0.19708881925803345],[126,247,71,-0.1946064577158556],[126,247,72,-0.1920142328104275],[126,247,73,-0.18931334115823395],[126,247,74,-0.18650510011993504],[126,247,75,-0.18359094946389343],[126,247,76,-0.1805724530276389],[126,247,77,-0.17745130037733625],[126,247,78,-0.17422930846526563],[126,247,79,-0.17090842328527378],[126,248,64,-0.20641065694057592],[126,248,65,-0.20456783487335728],[126,248,66,-0.20261177193175306],[126,248,67,-0.20054297921575737],[126,248,68,-0.19836207699045427],[126,248,69,-0.19606979632122024],[126,248,70,-0.19366698070655208],[126,248,71,-0.19115458770860727],[126,248,72,-0.18853369058141134],[126,248,73,-0.18580547989683371],[126,248,74,-0.18297126516810536],[126,248,75,-0.18003247647116882],[126,248,76,-0.17699066606365543],[126,248,77,-0.17384751000155407],[126,248,78,-0.17060480975358283],[126,248,79,-0.16726449381322095],[126,249,64,-0.20313472152935008],[126,249,65,-0.20125277904844896],[126,249,66,-0.1992589869791197],[126,249,67,-0.19715386048253059],[126,249,68,-0.19493802229118062],[126,249,69,-0.1926122043027244],[126,249,70,-0.19017724917109868],[126,249,71,-0.18763411189503965],[126,249,72,-0.18498386140395062],[126,249,73,-0.18222768214121754],[126,249,74,-0.1793668756447434],[126,249,75,-0.17640286212499934],[126,249,76,-0.17333718204037973],[126,249,77,-0.17017149766993023],[126,249,78,-0.1669075946834594],[126,249,79,-0.1635473837089877],[126,250,64,-0.19979812529255636],[126,250,65,-0.19787618079888392],[126,250,66,-0.19584380853659],[126,250,67,-0.193701527887157],[126,250,68,-0.19144996417295468],[126,250,69,-0.18908985020863123],[126,250,70,-0.18662202784947568],[126,250,71,-0.18404744953684482],[126,250,72,-0.18136717984060813],[126,250,73,-0.17858239699871292],[126,250,74,-0.17569439445363877],[126,250,75,-0.1727045823860376],[126,250,76,-0.16961448924535139],[126,250,77,-0.16642576327747138],[126,250,78,-0.16314017404945114],[126,250,79,-0.1597596139712304],[126,251,64,-0.19640323279557814],[126,251,65,-0.19444042635838354],[126,251,66,-0.19236864368655116],[126,251,67,-0.19018840854281827],[126,251,68,-0.18790034896451469],[126,251,69,-0.18550519877148297],[126,251,70,-0.1830037990706347],[126,251,71,-0.1803970997572275],[126,251,72,-0.1776861610128243],[126,251,73,-0.17487215480003537],[126,251,74,-0.1719563663538055],[126,251,75,-0.16894019566955643],[126,251,76,-0.16582515898796046],[126,251,77,-0.16261289027642079],[126,251,78,-0.1593051427072677],[126,251,79,-0.1559037901326239],[126,252,64,-0.19295247850557795],[126,252,65,-0.19094797275078845],[126,252,66,-0.18883597115838813],[126,252,67,-0.1866170020350052],[126,252,68,-0.18429169626058595],[126,252,69,-0.18186078875182887],[126,252,70,-0.17932511992190014],[126,252,71,-0.17668563713652585],[126,252,72,-0.1739433961664183],[126,252,73,-0.17109956263613457],[126,252,74,-0.16815541346913487],[126,252,75,-0.1651123383293469],[126,252,76,-0.16197184105901385],[126,252,77,-0.1587355411129019],[126,252,78,-0.1554051749888733],[126,252,79,-0.1519825976547825],[126,253,64,-0.18944836269826149],[126,253,65,-0.1874013436566741],[126,253,66,-0.18524833715644717],[126,253,67,-0.1829898762123242],[126,253,68,-0.1806265946770258],[126,253,69,-0.17815922865918854],[126,253,70,-0.17558861793723335],[126,253,71,-0.17291570736925088],[126,253,72,-0.17014154829886263],[126,253,73,-0.1672672999571606],[126,253,74,-0.16429423086048656],[126,253,75,-0.16122372020436015],[126,253,76,-0.1580572592533367],[126,253,77,-0.15479645272686282],[126,253,78,-0.1514430201811442],[126,253,79,-0.14799879738697752],[126,254,64,-0.18589344742293956],[126,254,65,-0.18380312533875515],[126,254,66,-0.18160835124725544],[126,254,67,-0.1793096630370118],[126,254,68,-0.17690769766609937],[126,254,69,-0.1744031925335625],[126,254,70,-0.17179698684643996],[126,254,71,-0.1690900229824417],[126,254,72,-0.16628334784823473],[126,254,73,-0.1633781142334435],[126,254,74,-0.16037558216011827],[126,254,75,-0.157277120227993],[126,254,76,-0.1540842069553],[126,254,77,-0.15079843211522126],[126,254,78,-0.14742149806798177],[126,254,79,-0.14395522108854308],[126,255,64,-0.1822903525260693],[126,255,65,-0.1801559626262526],[126,255,66,-0.1779186823061778],[126,255,67,-0.17557905449533234],[126,255,68,-0.17313771939207828],[126,255,69,-0.1705954157876789],[126,255,70,-0.16795298238550704],[126,255,71,-0.1652113591155313],[126,255,72,-0.16237158844403654],[126,255,73,-0.15943481667868065],[126,255,74,-0.15640229526864713],[126,255,75,-0.1532753821002092],[126,255,76,-0.15005554278747757],[126,255,77,-0.14674435195840818],[126,255,78,-0.14334349453607642],[126,255,79,-0.13985476701517652],[126,256,64,-0.17864175173318164],[126,256,65,-0.17646255495814167],[126,256,66,-0.17418205452342006],[126,256,67,-0.1718007985677783],[126,256,68,-0.16931943066707023],[126,256,69,-0.16673869110988337],[126,256,70,-0.16405941816797953],[126,256,71,-0.16128254936162822],[126,256,72,-0.15840912271978758],[126,256,73,-0.15544027803524252],[126,256,74,-0.15237725811444836],[126,256,75,-0.14922141002240563],[126,256,76,-0.14597418632233272],[126,256,77,-0.14263714631021385],[126,256,78,-0.13921195724423008],[126,256,79,-0.13570039556903069],[126,257,64,-0.17495036878910686],[126,257,65,-0.17272565248518124],[126,257,66,-0.1704012434692841],[126,257,67,-0.16797769525897022],[126,257,68,-0.16545565494697978],[126,257,69,-0.16283586442757447],[126,257,70,-0.16011916161727735],[126,257,71,-0.1573064816701104],[126,257,72,-0.15439885818729077],[126,257,73,-0.15139742442148718],[126,257,74,-0.14830341447538953],[126,257,75,-0.14511816449491732],[126,257,76,-0.14184311385683135],[126,257,77,-0.13847980635082868],[126,257,78,-0.13502989135612709],[126,257,79,-0.13149512501249472],[126,258,64,-0.1712189736566786],[126,258,65,-0.16894805223091203],[126,258,66,-0.16657907221886342],[126,258,67,-0.16411259268744738],[126,258,68,-0.16154926438779438],[126,258,69,-0.1588898309313781],[126,258,70,-0.15613512996014356],[126,258,71,-0.1532860943107338],[126,258,72,-0.15034375317276938],[126,258,73,-0.1473092332412892],[126,258,74,-0.1441837598630994],[126,258,75,-0.14096865817736248],[126,258,76,-0.13766535425018545],[126,258,77,-0.1342753762032881],[126,258,78,-0.13080035533676193],[126,258,79,-0.1272420272458702],[126,259,64,-0.1674503787738283],[126,259,65,-0.16513259431153549],[126,259,66,-0.16271840753608507],[126,259,67,-0.16020838323525866],[126,259,68,-0.15760317596210127],[126,259,69,-0.15490353115996447],[126,259,70,-0.152110286281136],[126,259,71,-0.1492243718991565],[126,259,72,-0.14624681281477953],[126,259,73,-0.14317872915568297],[126,259,74,-0.14002133746967538],[126,259,75,-0.1367759518117339],[126,259,76,-0.13344398482462838],[126,259,77,-0.13002694881321852],[126,259,78,-0.12652645681242602],[126,259,79,-0.12294422364884061],[126,260,64,-0.16364743536897108],[126,260,65,-0.1612821582145682],[126,260,66,-0.15882215611700207],[126,260,67,-0.15626799975725014],[126,260,68,-0.15362034763573207],[126,260,69,-0.15087994714540903],[126,260,70,-0.14804763563805085],[126,260,71,-0.14512434148377173],[126,260,72,-0.14211108512378923],[126,260,73,-0.13900898011651497],[126,260,74,-0.13581923417672165],[126,260,75,-0.13254315020812113],[126,260,76,-0.1291821273291116],[126,260,77,-0.12573766189177576],[126,260,78,-0.12221134849413628],[126,260,79,-0.11860488098562572],[126,261,64,-0.15981302983487577],[126,261,65,-0.1573996591364734],[126,261,66,-0.1548932608925252],[126,261,67,-0.15229441185024784],[126,261,68,-0.14960377460473712],[126,261,69,-0.14682209861929313],[126,261,70,-0.14395022123848578],[126,261,71,-0.1409890686940598],[126,261,72,-0.13793965710363443],[126,261,73,-0.13480309346231167],[126,261,74,-0.1315805766269258],[126,261,75,-0.12827339829328233],[126,261,76,-0.12488294396613553],[126,261,77,-0.12141069392198978],[126,261,78,-0.11785822416472863],[126,261,79,-0.11422720737403447],[126,262,64,-0.15595008016092282],[126,262,65,-0.15348804437916663],[126,262,66,-0.15093469739050636],[126,262,67,-0.14829062218203903],[126,262,68,-0.1455564855925881],[126,262,69,-0.1427330392794504],[126,262,70,-0.13982112067744273],[126,262,71,-0.13682165395035262],[126,262,72,-0.13373565093474882],[126,262,73,-0.13056421207626262],[126,262,74,-0.12730852735807469],[126,262,75,-0.12396987722195701],[126,262,76,-0.1205496334816133],[126,262,77,-0.11704926022841133],[126,262,78,-0.1134703147295058],[126,262,79,-0.10981444831831105],[126,263,64,-0.152061532423654],[126,263,65,-0.1495502898053006],[126,263,66,-0.14694947015706555],[126,263,67,-0.1442596628800481],[126,263,68,-0.1414815392075085],[126,263,69,-0.1386158531172504],[126,263,70,-0.13566344223586102],[126,263,71,-0.132625228734909],[126,263,72,-0.12950222021905816],[126,263,73,-0.12629551060620842],[126,263,74,-0.12300628099939703],[126,263,75,-0.11963580055081008],[126,263,76,-0.11618542731764986],[126,263,77,-0.1126566091099484],[126,263,78,-0.10905088433032706],[126,263,79,-0.10536988280566323],[126,264,64,-0.14815035733581622],[126,264,65,-0.14558939635253532],[126,264,66,-0.14294060923737362],[126,264,67,-0.1402045919799228],[126,264,68,-0.13738202036014568],[126,264,69,-0.13447365080564017],[126,264,70,-0.13148032124030573],[126,264,71,-0.12840295192451828],[126,264,72,-0.12524254628676607],[126,264,73,-0.1220001917468615],[126,264,74,-0.11867706053046034],[126,264,75,-0.11527441047523879],[126,264,76,-0.1117935858284751],[126,264,77,-0.10823601803612243],[126,264,78,-0.1046032265233775],[126,264,79,-0.10089681946670359],[126,265,64,-0.14421954685373028],[126,265,65,-0.14160838660661973],[126,265,66,-0.13891116671571668],[126,265,67,-0.13612848993384735],[126,265,68,-0.13326103674140338],[126,265,69,-0.13030956614775785],[126,265,70,-0.12727491648362216],[126,265,71,-0.12415800618444944],[126,265,72,-0.12095983456484055],[126,265,73,-0.11768148258406624],[126,265,74,-0.11432411360243228],[126,265,75,-0.11088897412884718],[126,265,76,-0.10737739455933043],[126,265,77,-0.10379078990655316],[126,265,78,-0.10013066052041458],[126,265,79,-0.09639859279961044],[126,266,64,-0.14027211084311303],[126,266,65,-0.1376103014334154],[126,266,66,-0.13486421331497334],[126,266,67,-0.13203445617872367],[126,266,68,-0.1291217153605726],[126,266,69,-0.12612675258626066],[126,266,70,-0.12305040670669898],[126,266,71,-0.1198935944238842],[126,266,72,-0.11665731100734605],[126,266,73,-0.11334263100124703],[126,266,74,-0.10995070892185188],[126,266,75,-0.10648277994573507],[126,266,76,-0.102940160588459],[126,266,77,-0.09932424937381795],[126,266,78,-0.09563652749364648],[126,266,79,-0.09187855945815554],[126,267,64,-0.1363110738031756],[126,267,65,-0.13359819666968498],[126,267,66,-0.13080283505532336],[126,267,67,-0.12792560576403195],[126,267,68,-0.12496719914357424],[126,267,69,-0.1219283797731745],[126,267,70,-0.11880998714114949],[126,267,71,-0.11561293631264441],[126,267,72,-0.11233821858742477],[126,267,73,-0.10898690214784518],[126,267,74,-0.1055601326967111],[126,267,75,-0.10205913408540424],[126,267,76,-0.09848520893200119],[126,267,77,-0.09483973922948336],[126,267,78,-0.0911241869440359],[126,267,79,-0.08734009460339576],[126,268,64,-0.13233947164921123],[126,268,65,-0.12957513987285818],[126,268,66,-0.12673012997240585],[126,268,67,-0.12380506603959324],[126,268,68,-0.1208006435915367],[126,268,69,-0.1177176302004942],[126,268,70,-0.11455686611313642],[126,268,71,-0.11131926485944155],[126,268,72,-0.10800581385116098],[126,268,73,-0.10461757496997964],[126,268,74,-0.1011556851450851],[126,268,75,-0.09762135692051715],[126,268,76,-0.09401587901202829],[126,268,77,-0.09034061685355183],[126,268,78,-0.08659701313327339],[126,268,79,-0.08278658831927294],[126,269,64,-0.12836034855356915],[126,269,65,-0.12554420712967462],[126,269,66,-0.1226492048948229],[126,269,67,-0.11967597340312736],[126,269,68,-0.11662521349960125],[126,269,69,-0.1134976958914255],[126,269,70,-0.11029426170823586],[126,269,71,-0.10701582305154023],[126,269,72,-0.10366336353321742],[126,269,73,-0.10023793880322063],[126,269,74,-0.09674067706619638],[126,269,75,-0.0931727795873965],[126,269,76,-0.08953552118760955],[126,269,77,-0.08583025072720679],[126,269,78,-0.08205839157930472],[126,269,79,-0.07822144209200455],[126,270,64,-0.12437675384491848],[126,270,65,-0.12150847992360064],[126,270,66,-0.11856317228088625],[126,270,67,-0.1155414701075052],[126,270,68,-0.11244407973585047],[126,270,69,-0.10927177515216152],[126,270,70,-0.10602539849722853],[126,270,71,-0.10270586055572622],[126,270,72,-0.09931414123413435],[126,270,73,-0.09585129002736492],[126,270,74,-0.09231842647380412],[126,270,75,-0.0887167405991538],[126,270,76,-0.08504749334879058],[126,270,77,-0.08131201700874463],[126,270,78,-0.07751171561529652],[126,270,79,-0.07364806535315105],[126,271,64,-0.12039173896599781],[126,271,65,-0.11747104206122438],[126,271,66,-0.11447514711481371],[126,271,67,-0.11140470112789991],[126,271,68,-0.10826041608057191],[126,271,69,-0.10504306938441005],[126,271,70,-0.10175350432303748],[126,271,71,-0.09839263048079716],[126,271,72,-0.09496142415950976],[126,271,73,-0.09146092878343498],[126,271,74,-0.08789225529214095],[126,271,75,-0.08425658252166995],[126,271,76,-0.08055515757371645],[126,271,77,-0.07678929617292019],[126,271,78,-0.07296038301227148],[126,271,79,-0.06906987208659127],[126,272,64,-0.1164083544897554],[126,272,65,-0.11343497665752883],[126,272,66,-0.1103882438622707],[126,272,67,-0.10726881108873693],[126,272,68,-0.10407739612575079],[126,272,69,-0.10081477995856136],[126,272,70,-0.09748180714870291],[126,272,71,-0.0940793862014686],[126,272,72,-0.09060848992095383],[126,272,73,-0.08707015575279187],[126,272,74,-0.08346548611428439],[126,272,75,-0.07979564871231859],[126,272,76,-0.07606187684878357],[126,272,77,-0.07226546971359143],[126,272,78,-0.06840779266529867],[126,272,79,-0.06449027749928887],[126,273,64,-0.11242964719377463],[126,273,65,-0.10940336317993665],[126,273,66,-0.10630557348515457],[126,273,67,-0.10313694125033424],[126,273,68,-0.09989819023468383],[126,273,69,-0.09659010514739186],[126,273,70,-0.09321353196628468],[126,273,71,-0.089769378243582],[126,273,72,-0.08625861339870328],[126,273,73,-0.08268226899824804],[126,273,74,-0.0790414390228526],[126,273,75,-0.07533728012131558],[126,273,76,-0.07157101185170495],[126,273,77,-0.06774391690955095],[126,273,78,-0.06385734134312032],[126,273,79,-0.05991269475573574],[126,274,64,-0.10845865719318898],[126,274,65,-0.10537927455133517],[126,274,66,-0.1022302405158283],[126,274,67,-0.09901222655544517],[126,274,68,-0.09572596256192978],[126,274,69,-0.09237223712051718],[126,274,70,-0.08895189776691165],[126,274,71,-0.08546585123083839],[126,274,72,-0.08191506366612],[126,274,73,-0.07830056086740567],[126,274,74,-0.07462342847324699],[126,274,75,-0.0708848121559233],[126,274,76,-0.06708591779771989],[126,274,77,-0.06322801165376951],[126,274,78,-0.05931242050144986],[126,274,79,-0.05534053177630194],[126,275,64,-0.1044984151319856],[126,275,65,-0.1013657743119783],[126,275,66,-0.09816534019070094],[126,275,67,-0.09489779273559829],[126,275,68,-0.0915638681334876],[126,275,69,-0.08816435899948755],[126,275,70,-0.08470011457186832],[126,275,71,-0.08117204089294444],[126,275,72,-0.07758110097596171],[126,275,73,-0.07392831495810731],[126,275,74,-0.07021476023933226],[126,275,75,-0.06644157160739628],[126,275,76,-0.06260994134883174],[126,275,77,-0.0587211193459421],[126,275,78,-0.054776413159823956],[126,275,79,-0.05077718809937931],[126,276,64,-0.10055193943259455],[126,276,65,-0.09736591384016052],[126,276,66,-0.09411395564304931],[126,276,67,-0.09079675347712757],[126,276,68,-0.08741504998709743],[126,276,69,-0.08396964197341766],[126,276,70,-0.0804613805246086],[126,276,71,-0.07689117113506277],[126,276,72,-0.07325997380831334],[126,276,73,-0.0695688031458877],[126,276,74,-0.06581872842143754],[126,276,75,-0.0620108736405528],[126,276,76,-0.058146417585960175],[126,276,77,-0.05422659384821671],[126,276,78,-0.05025269084189138],[126,276,79,-0.046226051807199575],[126,277,64,-0.09662223360396771],[126,277,65,-0.09338272963187205],[126,277,66,-0.09007915515528975],[126,277,67,-0.08671220764710563],[126,277,68,-0.08328263637287675],[126,277,69,-0.07979124247536618],[126,277,70,-0.07623887904391669],[126,277,71,-0.07262645116878702],[126,277,72,-0.06895491598040243],[126,277,73,-0.06522528267365074],[126,277,74,-0.06143861251690652],[126,277,75,-0.05759601884620236],[126,277,76,-0.053698667044237036],[126,277,77,-0.049747774504338926],[126,277,78,-0.04574461057937357],[126,277,79,-0.041690496515560393],[126,278,64,-0.09271228360804612],[126,278,65,-0.08941924063932793],[126,278,66,-0.08606398947059613],[126,278,67,-0.0826472365790733],[126,278,68,-0.07916973801418514],[126,278,69,-0.0756322994193579],[126,278,70,-0.0720357760381049],[126,278,71,-0.06838107270452837],[126,278,72,-0.06466914381818661],[126,278,73,-0.06090099330345766],[126,278,74,-0.057077674553083824],[126,278,75,-0.05320029035631285],[126,278,76,-0.049269992811330265],[126,278,77,-0.045287983222096095],[126,278,78,-0.041255511979577664],[126,278,79,-0.03717387842734443],[126,279,64,-0.08882505528451334],[126,279,65,-0.08547844566827312],[126,279,66,-0.08207148916375956],[126,279,67,-0.07860490141846027],[126,279,68,-0.0750794454286115],[126,279,69,-0.07149593149793976],[126,279,70,-0.06785521718013932],[126,279,71,-0.0641582072052092],[126,279,72,-0.06040585338960214],[126,279,73,-0.05659915453031872],[126,279,74,-0.05273915628262282],[126,279,75,-0.04882695102180562],[126,279,76,-0.04486367768868332],[126,279,77,-0.04085052161894587],[126,279,78,-0.03678871435634895],[126,279,79,-0.03267953344971297],[126,280,64,-0.08496349183403856],[126,280,65,-0.08156332083426632],[126,280,66,-0.07810466207149902],[126,280,67,-0.07458824052790941],[126,280,68,-0.07101482630929706],[126,280,69,-0.0673852345404885],[126,280,70,-0.06370032524391289],[126,280,71,-0.05996100320147746],[126,280,72,-0.056168217799696885],[126,280,73,-0.05232296285820753],[126,280,74,-0.048426276441343896],[126,280,75,-0.04447924065320574],[126,280,76,-0.040482981415897124],[126,280,77,-0.03643866823106068],[126,280,78,-0.03234751392469293],[126,280,79,-0.028210774375208636],[126,281,64,-0.08113051135990651],[126,281,65,-0.0776768170778373],[126,281,66,-0.07416649078211496],[126,281,67,-0.07060026695239396],[126,281,68,-0.06697892296648444],[126,281,69,-0.06330327893215648],[126,281,70,-0.05957419750155207],[126,281,71,-0.05579258366833584],[126,281,72,-0.051959384547532406],[126,281,73,-0.04807558913818771],[126,281,74,-0.04414222806852519],[126,281,75,-0.0401603733240295],[126,281,76,-0.036131137958139437],[126,281,77,-0.03205567578566959],[126,281,78,-0.027935181058949543],[126,281,79,-0.023770888126648404],[126,282,64,-0.07732900446793617],[126,282,65,-0.07382185773842304],[126,282,66,-0.07025993018438936],[126,282,67,-0.06664396594403105],[126,282,68,-0.06297474982919399],[126,282,69,-0.05925310709335774],[126,282,70,-0.0554799031816578],[126,282,71,-0.051656043463076506],[126,282,72,-0.047782472944752186],[126,282,73,-0.04386017596854397],[126,282,74,-0.03989017588951954],[126,282,75,-0.03587353473680499],[126,282,76,-0.03181135285647252],[126,282,77,-0.02770476853658821],[126,282,78,-0.023554957614408956],[126,282,79,-0.01936313306569465],[126,283,64,-0.07356183192488741],[126,283,65,-0.07000133618727894],[126,283,66,-0.06638790507593273],[126,283,67,-0.06272229254679479],[126,283,68,-0.0590052910072309],[126,283,69,-0.05523773101999957],[126,283,70,-0.051420480988686956],[126,283,71,-0.04755444682473747],[126,283,72,-0.043640571596029853],[126,283,73,-0.039679835157134136],[126,283,74,-0.03567325376091823],[126,283,75,-0.031621879651942686],[126,283,76,-0.027526800641320126],[126,283,77,-0.023389139663161418],[126,283,78,-0.01921005431259548],[126,283,79,-0.014990736365333046],[126,284,64,-0.06983182237525343],[126,284,65,-0.06621811351926615],[126,284,66,-0.06255330783087582],[126,284,67,-0.058838169241023086],[126,284,68,-0.05507349791342131],[126,284,69,-0.05126012988435613],[126,284,70,-0.04739893668337175],[126,284,71,-0.04349082493497186],[126,284,72,-0.03953673594128815],[126,284,73,-0.035537645245854566],[126,284,74,-0.03149456217814839],[126,284,75,-0.02740852937934629],[126,284,76,-0.023280622308963883],[126,284,77,-0.019111948732503936],[126,284,78,-0.01490364819010287],[126,284,79,-0.01065689144613996],[126,285,64,-0.06614177011634531],[126,285,65,-0.06247501630341701],[126,285,66,-0.05875899612680813],[126,285,67,-0.05499448364762355],[126,285,68,-0.05118228694597471],[126,285,69,-0.047323247696481],[126,285,70,-0.043418240724072465],[126,285,71,-0.03946817354022564],[126,285,72,-0.035473985859585055],[126,285,73,-0.03143664909710919],[126,285,74,-0.02735716584539777],[126,285,75,-0.02323656933265611],[126,285,76,-0.019075922860956773],[126,285,77,-0.0148763192249311],[126,285,78,-0.010638880110874244],[126,285,79,-0.006364755476231221],[126,286,64,-0.06249443293186191],[126,286,65,-0.058774834392475744],[126,286,66,-0.05500779073116288],[126,286,67,-0.05119408629217434],[126,286,68,-0.047334537231178225],[126,286,69,-0.04342999102636583],[126,286,70,-0.0394813259692702],[126,286,71,-0.03548945063543471],[126,286,72,-0.031455303334878365],[126,286,73,-0.027379851542501443],[126,286,74,-0.023264091308085155],[126,286,75,-0.019109046646341804],[126,286,76,-0.014915768906678062],[126,286,77,-0.010685336122800093],[126,286,78,-0.006418852342146036],[126,286,79,-0.0021174469351148417],[126,287,64,-0.058892529983844394],[126,287,65,-0.05512031879131346],[126,287,66,-0.05130247334694457],[126,287,67,-0.047439788428821544],[126,287,68,-0.04353308842631698],[126,287,69,-0.03958322678673831],[126,287,70,-0.03559108544109685],[126,287,71,-0.0315575742091346],[126,287,72,-0.027483630183560398],[126,287,73,-0.023370217093635487],[126,287,74,-0.019218324647762103],[126,287,75,-0.01502896785553473],[126,287,76,-0.010803186328913361],[126,287,77,-0.006542043562648786],[126,287,78,-0.002246626193945944],[126,287,79,0.002081956758667236],[126,288,64,-0.0553387397629278],[126,288,65,-0.05151417958412477],[126,288,66,-0.04764578451770843],[126,288,67,-0.043734359923876504],[126,288,68,-0.039780738582725295],[126,288,69,-0.035785780076404594],[126,288,70,-0.03175037014980037],[126,288,71,-0.027675420049881577],[126,288,72,-0.023561865843663266],[126,288,73,-0.019410667714927166],[126,288,74,-0.015222809239348378],[126,288,75,-0.010999296638495942],[126,288,76,-0.00674115801235789],[126,288,77,-0.002449442550527925],[126,288,78,0.001874780277964394],[126,288,79,0.006230421556212118],[126,289,64,-0.051835698097082494],[126,289,65,-0.04795908392060694],[126,289,66,-0.04404042159199187],[126,289,67,-0.04008052719931662],[126,289,68,-0.03608024206917618],[126,289,69,-0.03204043208434318],[126,289,70,-0.027961986979360254],[126,289,71,-0.023845819614201264],[126,289,72,-0.019692865225950124],[126,289,73,-0.015504080658643088],[126,289,74,-0.011280443570917897],[126,289,75,-0.007022951621941637],[126,289,76,-0.0027326216352669963],[126,289,77,0.0015895112592476945],[126,289,78,0.0059423945054715155],[126,289,79,0.010324959023017694],[126,290,64,-0.048385996218683086],[126,290,65,-0.0444576540609527],[126,290,66,-0.04048903674702797],[126,290,67,-0.03648097123602009],[126,290,68,-0.032434307555435166],[126,290,69,-0.028349918054376033],[126,290,70,-0.02422869663407326],[126,290,71,-0.02007155795588411],[126,290,72,-0.01587943662671118],[126,290,73,-0.011653286361984955],[126,290,74,-0.007394079125851216],[126,290,75,-0.0031028042490408303],[126,290,76,0.0012195324759342874],[126,290,77,0.005571909722119794],[126,290,78,0.009953291578009837],[126,290,79,0.014362628520023346],[126,291,64,-0.04499217889002419],[126,291,65,-0.041012465479778604],[126,291,66,-0.03699423507186719],[126,291,67,-0.03293832563685817],[126,291,68,-0.0288455960561039],[126,291,69,-0.0247169253105452],[126,291,70,-0.0205532116462398],[126,291,71,-0.016355371716758382],[126,291,72,-0.012124339702397013],[126,291,73,-0.007861066406350897],[126,291,74,-0.0035665183274909695],[126,291,75,7.58323289779983E-4],[126,291,76,0.0051124634289467785],[126,291,77,0.009494894297938039],[126,291,78,0.013904596348839088],[126,291,79,0.018340539320789967],[126,292,64,-0.04165674258712565],[126,292,65,-0.03762604502883146],[126,292,66,-0.03355857270974241],[126,292,67,-0.029455174749482033],[126,292,68,-0.02531671903459079],[126,292,69,-0.021144091343026084],[126,292,70,-0.01693819444478209],[126,292,71,-0.012699947178771126],[126,292,72,-0.00843028350591607],[126,292,73,-0.004130151538602106],[126,292,74,1.994874538785163E-4],[126,292,75,0.004557660063402386],[126,292,76,0.00894338178497392],[126,292,77,0.013355658082426086],[126,292,78,0.01779348547788115],[126,292,79,0.0222558526650031],[126,293,64,-0.03838213374201585],[126,293,65,-0.034300869158661595],[126,293,66,-0.030184555059873552],[126,293,67,-0.02603405184900029],[126,293,68,-0.021850236567403092],[126,293,69,-0.017634001954779377],[126,293,70,-0.013386255484996334],[126,293,71,-0.009107918377579127],[126,293,72,-0.004799924584803522],[126,293,73,-4.6321975454050035E-4],[126,293,74,0.0039012398315145524],[126,293,75,0.008292488343738524],[126,293,76,0.012709551514969691],[126,293,77,0.017151447775243717],[126,293,78,0.02161718941089885],[126,293,79,0.026105783748078926],[126,294,64,-0.03517074704339909],[126,294,65,-0.031039362199168086],[126,294,66,-0.02687463503861362],[126,294,67,-0.022677437380448334],[126,294,68,-0.0184486555686654],[126,294,69,-0.014189189468841013],[126,294,70,-0.009899951439337251],[126,294,71,-0.0055818652775513344],[126,294,72,-0.0012358651411577964],[126,294,73,0.0031371055555036442],[126,294,74,0.007536095270267912],[126,294,75,0.011960145486718005],[126,294,76,0.016408291892859653],[126,294,77,0.020879565584753568],[126,294,78,0.025372994295125448],[126,294,79,0.029887603646982633],[126,295,64,-0.032024923795627894],[126,295,65,-0.027843894698938],[126,295,66,-0.02363121139985558],[126,295,67,-0.019387757260969293],[126,295,68,-0.01511442807477878],[126,295,69,-0.010812130996165445],[126,295,70,-0.00648178344915161],[126,295,71,-0.0021243120080935984],[126,295,72,0.002259348746741177],[126,295,73,0.006668257399063751],[126,295,74,0.0111014668922928],[126,295,75,0.015558025750626758],[126,295,76,0.02003697932582943],[126,295,77,0.02453737106958391],[126,295,78,0.02905824383143535],[126,295,79,0.03359864118235238],[126,296,64,-0.028946950336148997],[126,296,65,-0.02471678182354635],[126,296,66,-0.020456627114872894],[126,296,67,-0.016167381241879386],[126,296,68,-0.011849949589398293],[126,296,69,-0.007505246764202916],[126,296,70,-0.003134195437539178],[126,296,71,0.001262274838519803],[126,296,72,0.005683228840948448],[126,296,73,0.010127726911722368],[126,296,74,0.014594826220225093],[126,296,75,0.01908358205160962],[126,296,76,0.023593049121486673],[126,296,77,0.028122282916793154],[126,296,78,0.032670341062863525],[126,296,79,0.037236284716731294],[126,297,64,-0.025939056511331993],[126,297,65,-0.021660281812729748],[126,297,66,-0.01735316781150177],[126,297,67,-0.013018621330526059],[126,297,68,-0.008657557488635545],[126,297,69,-0.00427089850611341],[126,297,70,1.4042751675198695E-4],[126,297,71,0.004575487847904569],[126,297,72,0.00903334639860201],[126,297,73,0.013513065025186718],[126,297,74,0.018013704857929372],[126,297,75,0.022534327656435857],[126,297,76,0.027073997191998295],[126,297,77,0.031631780656739605],[126,297,78,0.03620675009957386],[126,297,79,0.04079798388901218],[126,298,64,-0.02300341421061032],[126,298,65,-0.01867659449635796],[126,298,66,-0.014323060272589783],[126,298,67,-0.009943730271862919],[126,298,68,-0.005539529486407846],[126,298,69,-0.0011113879105413005],[126,298,70,0.0033397607444771854],[126,298,71,0.007812980362996463],[126,298,72,0.012307333764983872],[126,298,73,0.016821884073339136],[126,298,74,0.021355696108897926],[126,298,75,0.02590783781261178],[126,298,76,0.03047738169528843],[126,298,77,0.03506340631474031],[126,298,78,0.039664997780364225],[126,298,79,0.04428125128518156],[126,299,64,-0.020142135959087676],[126,299,65,-0.015767859869361148],[126,299,66,-0.011368470993871907],[126,299,67,-0.006944900089902589],[126,299,68,-0.0024980821601000014],[126,299,69,0.001971044867883978],[126,299,70,0.006461541489924741],[126,299,71,0.010972468001980228],[126,299,72,0.01550288590472209],[126,299,73,0.020051859336085325],[126,299,74,0.024618456532124786],[126,299,75,0.029201751315663382],[126,299,76,0.03380082461311613],[126,299,77,0.038414765999339226],[126,299,78,0.043042675270525986],[126,299,79,0.047683664045178584],[126,300,64,-0.017357273568530382],[126,300,65,-0.012936156725531292],[126,300,66,-0.008491504801189077],[126,300,67,-0.004024260688964158],[126,300,68,4.646304635484502E-4],[126,300,69,0.004974222637408203],[126,300,70,0.009503570353910647],[126,300,71,0.01405173011480839],[126,300,72,0.018617761871223153],[126,300,73,0.023200730521093595],[126,300,74,0.027799707435547473],[126,300,75,0.032413772013680335],[126,300,76,0.03704201326612784],[126,300,77,0.041683531427278694],[126,300,78,0.04633743959615172],[126,300,79,0.05100286540596562],[126,301,64,-0.014650816846674755],[126,301,65,-0.010183501350125919],[126,301,66,-0.0056942035269787195],[126,301,67,-0.0011838785146409334],[126,301,68,0.00334651826240414],[126,301,69,0.00789603253744764],[126,301,70,0.012463712675815683],[126,301,71,0.017048611178386016],[126,301,72,0.02164978621441274],[126,301,73,0.026266303183502693],[126,301,74,0.03089723630713541],[126,301,75,0.035541670249203225],[126,301,76,0.040198701765965086],[126,301,77,0.044867441385255336],[126,301,78,0.049547015114975085],[126,301,79,0.054236566180892634],[126,302,64,-0.012024692364996092],[126,302,65,-0.007511846271423386],[126,302,66,-0.0029785447461862236],[126,302,67,0.0015742447253575854],[126,302,68,0.006145556312593847],[126,302,69,0.010734427346164019],[126,302,70,0.015339899854504669],[126,302,71,0.01996102213026041],[126,302,72,0.024596850326622566],[126,302,73,0.029246450083434204],[126,302,74,0.03390889818345904],[126,302,75,0.03858328423828479],[126,302,76,0.043268712404257906],[126,302,77,0.0479643031282911],[126,302,78,0.052669194923569355],[126,302,79,0.05738254617518246],[126,303,64,-0.009480762284862769],[126,303,65,-0.004923079071151196],[126,303,66,-3.4644057151986436E-4],[126,303,67,0.004248173280570507],[126,303,68,0.00885978612193299],[126,303,69,0.013487426727399802],[126,303,70,0.018130130608212107],[126,303,71,0.02278694164090048],[126,303,72,0.02745691372670783],[126,303,73,0.0321391124813947],[126,303,74,0.036832616955827145],[126,303,75,0.04153652138681393],[126,303,76,0.046249936978593],[126,303,77,0.050971993714807214],[126,303,78,0.05570184220099563],[126,303,79,0.060438655537628],[126,304,64,-0.007020823242011247],[126,304,65,-0.0024190212537231453],[126,304,66,0.0022002634920173124],[126,304,67,0.006836038517423296],[126,304,68,0.011487316803195959],[126,304,69,0.016153118417043075],[126,304,70,0.020832472173463356],[126,304,71,0.025524417324635645],[126,304,72,0.030228005282467114],[126,304,73,0.03494230137164127],[126,304,74,0.03966638661406391],[126,304,75,0.04439935954417583],[126,304,76,0.04914033805553043],[126,304,77,0.053888461278476726],[126,304,78,0.058642891488975946],[126,304,79,0.0634028160485763],[126,305,64,-0.004646605289477929],[126,305,65,-1.4271744214876952E-6],[126,305,66,0.004659789633178989],[126,305,67,0.00933604001899804],[126,305,68,0.014026326187085695],[126,305,69,0.01872965934867758],[126,305,70,0.02344506144288482],[126,305,71,0.028171566889106124],[126,305,72,0.03290822437121431],[126,305,73,0.03765409865335688],[126,305,74,0.042408272427773626],[126,305,75,0.04716984819409317],[126,305,76,0.05193795017051271],[126,305,77,0.056711726236697964],[126,305,78,0.06149034990843227],[126,305,79,0.06627302234404049],[126,306,64,-0.0023597708989133263],[126,306,65,0.0023280169735473387],[126,306,66,0.007030428761186518],[126,306,67,0.0117464466250101],[126,306,68,0.01647506187497875],[126,306,69,0.021215276718593953],[126,306,70,0.025966106041980127],[126,306,71,0.030726579223303678],[126,306,72,0.035495741978581505],[126,306,73,0.04027265823971752],[126,306,74,0.04505641206517329],[126,306,75,0.04984610958272979],[126,306,76,0.05464088096474941],[126,306,77,0.059439882435771856],[126,306,78,0.06424229831247474],[126,306,79,0.0690473430760237],[126,307,64,-1.61914020226743E-4],[126,307,65,0.004567694113182735],[126,307,66,0.009310541473153577],[126,307,67,0.014065597412051538],[126,307,68,0.01883184223150452],[126,307,69,0.023608268990223683],[126,307,70,0.02839388534493563],[126,307,71,0.03318771542426423],[126,307,72,0.03798880173561756],[126,307,73,0.04279620710491398],[126,307,74,0.04760901664955867],[126,307,75,0.05242633978412391],[126,307,76,0.057247312259142424],[126,307,77,0.06207109823285056],[126,307,78,0.0668968923759083],[126,307,79,0.07172392200912256],[126,308,64,0.0019454408003212048],[126,308,65,0.0067160571788796725],[126,308,66,0.011498558962102813],[126,308,67,0.016291902613972904],[126,308,68,0.021095057316830854],[126,308,69,0.025907006837864427],[126,308,70,0.030726751429320492],[126,308,71,0.035553309762278974],[126,308,72,0.04038572089404495],[126,308,73,0.04522304626899085],[126,308,74,0.05006437175326421],[126,308,75,0.05490880970280833],[126,308,76,0.05975550106511099],[126,308,77,0.06460361751451373],[126,308,78,0.06945236362111111],[126,308,79,0.07430097905326614],[126,309,64,0.003960839243641837],[126,309,65,0.008771629952747141],[126,309,66,0.013592983865640416],[126,309,67,0.018423844482472557],[126,309,68,0.023263169758724854],[126,309,69,0.028109934029767344],[126,309,70,0.03296312996975487],[126,309,71,0.037821770584696074],[126,309,72,0.042684891239748585],[126,309,73,0.047551551720578],[126,309,74,0.05242083832919127],[126,309,75,0.057291866013695084],[126,309,76,0.062163780532392215],[126,309,77,0.06703576065204882],[126,309,78,0.07190702038036421],[126,309,79,0.07677681123266605],[126,310,64,0.005882897983006147],[126,310,65,0.01073300784210357],[126,310,66,0.015592391055338745],[126,310,67,0.02045997808794535],[126,310,68,0.025334715564441695],[126,310,69,0.0302155682506393],[126,310,70,0.03510152107059854],[126,310,71,0.039991581158367054],[126,310,72,0.044884779944552894],[126,310,73,0.04978017527756863],[126,310,74,0.054676853579962825],[126,310,75,0.05957393203928078],[126,310,76,0.06447056083387515],[126,310,77,0.06936592539349594],[126,310,78,0.07425924869469067],[126,310,79,0.07914979359104023],[126,311,64,0.007710305390790179],[126,311,65,0.012598858598040205],[126,311,66,0.017495428366717358],[126,311,67,0.022398932060476107],[126,311,68,0.027308304872325995],[126,311,69,0.032222501863444206],[126,311,70,0.03714050003754192],[126,311,71,0.042061300450619205],[126,311,72,0.04698393035616323],[126,311,73,0.051907445385622974],[126,311,74,0.05683093176457851],[126,311,75,0.06175350856404643],[126,311,76,0.06667432998734193],[126,311,77,0.07159258769232658],[126,311,78,0.07650751314907402],[126,311,79,0.08141838003297758],[126,312,64,0.00944182218683741],[126,312,65,0.01436792297511258],[126,312,66,0.01930081726988228],[126,312,67,0.024239409271041804],[126,312,68,0.02918262264318884],[126,312,69,0.034129402610566614],[126,312,70,0.03907871808816535],[126,312,71,0.04402956384881768],[126,312,72,0.0489809627263417],[126,312,73,0.05393196785456296],[126,312,74,0.058881664942639286],[126,312,75,0.0638291745861228],[126,312,76,0.0687736546141842],[126,312,77,0.073714302472828],[126,312,78,0.07865035764412917],[126,312,79,0.08358110410151594],[126,313,64,0.011076282028477075],[126,313,65,0.016039015332201728],[126,313,66,0.021007353480865673],[126,313,67,0.02598018745296453],[126,313,68,0.03095642929150552],[126,313,69,0.03593501425438189],[126,313,70,0.04091490300151089],[126,313,71,0.045895083818566496],[126,313,72,0.05087457487736077],[126,313,73,0.055852426532707514],[126,313,74,0.06082772365618998],[126,313,75,0.06579958800626728],[126,313,76,0.07076718063514603],[126,313,77,0.07572970433224316],[126,313,78,0.0806864061042733],[126,313,79,0.08563657969198463],[126,314,64,0.012612592042104298],[126,314,65,0.017611024174446974],[126,314,66,0.022613907513566955],[126,314,67,0.027620119763513737],[126,314,68,0.03262856125632804],[126,314,69,0.03763815715712883],[126,314,70,0.04264785970656053],[126,314,71,0.047656650500435827],[126,314,72,0.052663542806626926],[126,314,73,0.057667583919034454],[126,314,74,0.06266785754906462],[126,314,75,0.0676634862540397],[126,314,76,0.07265363390297538],[126,314,77,0.07763750817954707],[126,314,78,0.08261436312228071],[126,314,79,0.08758350170199042],[126,315,64,0.014049733296401745],[126,315,65,0.019082912636331356],[126,315,66,0.024119425172378653],[126,315,67,0.029158135285742126],[126,315,68,0.034197931512002316],[126,315,69,0.03923772880017243],[126,315,70,0.04427647080970892],[126,315,71,0.04931313224531103],[126,315,72,0.05434672122956524],[126,315,73,0.05937628171326509],[126,315,74,0.06440089592383294],[126,315,75,0.06941968685127242],[126,315,76,0.07443182077208327],[126,315,77,0.07943650981096159],[126,315,78,0.08443301454031962],[126,315,79,0.08942064661764959],[126,316,64,0.015386761217147576],[126,316,65,0.020453718905866697],[126,316,66,0.025522927985439453],[126,316,67,0.030593239470499495],[126,316,68,0.0356635300186271],[126,316,69,0.040732704242596035],[126,316,70,0.04579969706117232],[126,316,71,0.05086347608829658],[126,316,72,0.055923044060703114],[126,316,73,0.06097744130380531],[126,316,74,0.06602574823627944],[126,316,75,0.07106708791276864],[126,316,76,0.07610062860514274],[126,316,77,0.08112558642213716],[126,316,78,0.08614122796740337],[126,316,79,0.09114687303599533],[126,317,64,0.01662280594367685],[126,317,65,0.021722556589942627],[126,317,66,0.02682351357858473],[126,317,67,0.031924514518692354],[126,317,68,0.03702442411233159],[126,317,69,0.042122136519197384],[126,317,70,0.04721657776040536],[126,317,71,0.05230670816125635],[126,317,72,0.057391524833028645],[126,317,73,0.062470064193623],[126,317,74,0.06754140452749749],[126,317,75,0.0726046685843105],[126,317,76,0.07765902621670973],[126,317,77,0.08270369705708752],[126,317,78,0.08773795323333938],[126,317,79,0.09276112212364646],[126,318,64,0.017757072626916254],[126,318,65,0.022888615020760006],[126,318,66,0.028020355989910456],[126,318,67,0.03315111970370582],[126,318,68,0.0382797588352794],[126,318,69,0.04340515697779926],[126,318,70,0.04852623110043697],[126,318,71,0.05364193404389267],[126,318,72,0.058751257055532496],[126,318,73,0.06385323236396648],[126,318,74,0.06894693579349984],[126,318,75,0.07403148941787882],[126,318,76,0.07910606425376718],[126,318,77,0.08416988299377487],[126,318,78,0.08922222277907574],[126,318,79,0.09426241801163329],[126,319,64,0.018788841669036743],[126,319,65,0.02395115950339513],[126,319,66,0.02911270592499718],[126,319,67,0.034272291634036],[126,319,68,0.03942875720545169],[126,319,69,0.0445809755559243],[126,319,70,0.049727854451177195],[126,319,71,0.05486833905341984],[126,319,72,0.060001414508983414],[126,319,73,0.065126108575977],[126,319,74,0.07024149429240212],[126,319,75,0.0753466926841389],[126,319,76,0.08044087551324783],[126,319,77,0.08552326806640381],[126,319,78,0.09059315198349943],[126,319,79,0.09564986812644075],[127,-64,64,-0.1705092037303304],[127,-64,65,-0.17448234368175564],[127,-64,66,-0.17832933516110505],[127,-64,67,-0.18204872207830336],[127,-64,68,-0.1856392194184907],[127,-64,69,-0.18909971923393165],[127,-64,70,-0.1924292967016732],[127,-64,71,-0.19562721624685786],[127,-64,72,-0.1986929377317026],[127,-64,73,-0.20162612271005265],[127,-64,74,-0.20442664074776884],[127,-64,75,-0.2070945758085917],[127,-64,76,-0.20963023270576697],[127,-64,77,-0.21203414361929074],[127,-64,78,-0.21430707467883714],[127,-64,79,-0.21645003261233287],[127,-63,64,-0.1649917241709522],[127,-63,65,-0.16895267148514626],[127,-63,66,-0.17278800908665592],[127,-63,67,-0.17649627845184845],[127,-63,68,-0.18007619161298516],[127,-63,69,-0.18352663714235362],[127,-63,70,-0.18684668620216394],[127,-63,71,-0.19003559866010655],[127,-63,72,-0.19309282927058868],[127,-63,73,-0.19601803392155892],[127,-63,74,-0.19881107594717107],[127,-63,75,-0.2014720325059426],[127,-63,76,-0.20400120102467856],[127,-63,77,-0.20639910570803333],[127,-63,78,-0.20866650411375798],[127,-63,79,-0.21080439379361415],[127,-62,64,-0.1593900022467032],[127,-62,65,-0.1633379781847658],[127,-62,66,-0.16716091217870288],[127,-62,67,-0.17085734316326717],[127,-62,68,-0.17442598008126098],[127,-62,69,-0.17786570785942568],[127,-62,70,-0.18117559345010859],[127,-62,71,-0.18435489193860044],[127,-62,72,-0.18740305271616253],[127,-62,73,-0.19031972571865363],[127,-62,74,-0.1931047677310087],[127,-62,75,-0.19575824875721592],[127,-62,76,-0.19828045845608266],[127,-62,77,-0.20067191264263518],[127,-62,78,-0.2029333598552281],[127,-62,79,-0.20506578798832265],[127,-61,64,-0.15370831382164074],[127,-61,65,-0.1576425471273435],[127,-61,66,-0.16145233495603795],[127,-61,67,-0.16513621359412367],[127,-61,68,-0.168692888759983],[127,-61,69,-0.1721212415711677],[127,-61,70,-0.17542033457737194],[127,-61,71,-0.17858941785909044],[127,-61,72,-0.1816279351919745],[127,-61,73,-0.18453553027679837],[127,-61,74,-0.18731205303528742],[127,-61,75,-0.18995756597146074],[127,-61,76,-0.19247235059876344],[127,-61,77,-0.19485691393285332],[127,-61,78,-0.19711199505010246],[127,-61,79,-0.19923857171177906],[127,-60,64,-0.1479509829443254],[127,-60,65,-0.15187071035076372],[127,-60,66,-0.15566661711644791],[127,-60,67,-0.1593372367740742],[127,-60,68,-0.16288127168435085],[127,-60,69,-0.16629759899402785],[127,-60,70,-0.16958527665972],[127,-60,71,-0.17274354953742677],[127,-60,72,-0.17577185553776253],[127,-60,73,-0.17866983184680207],[127,-60,74,-0.18143732121280642],[127,-60,75,-0.1840743782984665],[127,-60,76,-0.18658127609895037],[127,-60,77,-0.18895851242561612],[127,-60,78,-0.19120681645544624],[127,-60,79,-0.19332715534617861],[127,-59,64,-0.14212237696556296],[127,-59,65,-0.14602684369186725],[127,-59,66,-0.14980814263498043],[127,-59,67,-0.15346480446999866],[127,-59,68,-0.1569955280684986],[127,-59,69,-0.16039918644695228],[127,-59,70,-0.16367483278095452],[127,-59,71,-0.16682170648515082],[127,-59,72,-0.16983923935888767],[127,-59,73,-0.1727270617974923],[127,-59,74,-0.1754850090694362],[127,-59,75,-0.1781131276590321],[127,-59,76,-0.1806116816749439],[127,-59,77,-0.18298115932436998],[127,-59,78,-0.185222279452962],[127,-59,79,-0.1873359981504472],[127,-58,64,-0.13622690152987094],[127,-58,65,-0.1401153617674915],[127,-58,66,-0.14388133473497977],[127,-58,67,-0.14752334814746093],[127,-58,68,-0.15104009725779566],[127,-58,69,-0.15443045079494366],[127,-58,70,-0.1576934569681444],[127,-58,71,-0.16082834953680814],[127,-58,72,-0.16383455394614166],[127,-58,73,-0.16671169352841364],[127,-58,74,-0.16945959577011127],[127,-58,75,-0.17207829864464264],[127,-58,76,-0.17456805701086242],[127,-58,77,-0.17692934907728064],[127,-58,78,-0.17916288293201554],[127,-58,79,-0.18126960313846152],[127,-57,64,-0.13026899544098258],[127,-57,65,-0.1341407128290647],[127,-57,66,-0.1378906507322185],[127,-57,67,-0.14151733380480946],[127,-57,68,-0.1450194535533611],[127,-57,69,-0.14839587426442424],[127,-57,70,-0.15164563899826966],[127,-57,71,-0.1547679756483058],[127,-57,72,-0.15776230306623762],[127,-57,73,-0.16062823725287612],[127,-57,74,-0.1633655976148498],[127,-57,75,-0.16597441328687057],[127,-57,76,-0.1684549295198331],[127,-57,77,-0.17080761413460754],[127,-57,78,-0.17303316404158742],[127,-57,79,-0.17513251182596012],[127,-56,64,-0.12425312540123934],[127,-56,65,-0.1281073734906063],[127,-56,66,-0.1318405767519617],[127,-56,67,-0.13545125667977387],[127,-56,68,-0.13893810090864567],[127,-56,69,-0.14229996913025622],[127,-56,70,-0.14553589907613307],[127,-56,71,-0.1486451125661611],[127,-56,72,-0.15162702162283992],[127,-56,73,-0.1544812346512051],[127,-56,74,-0.15720756268465763],[127,-56,75,-0.15980602569636015],[127,-56,76,-0.1622768589764737],[127,-56,77,-0.16462051957510193],[127,-56,78,-0.16683769281099436],[127,-56,79,-0.16892929884598673],[127,-55,64,-0.1181837806247229],[127,-55,65,-0.1220198433299805],[127,-55,66,-0.1257356223188263],[127,-55,67,-0.12932963582840218],[127,-55,68,-0.13280056749792413],[127,-55,69,-0.13614727227426515],[127,-55,70,-0.13936878238338224],[127,-55,71,-0.14246431336748677],[127,-55,72,-0.14543327018797592],[127,-55,73,-0.14827525339403347],[127,-55,74,-0.15099006535715187],[127,-55,75,-0.15357771657122865],[127,-55,76,-0.1560384320185143],[127,-55,77,-0.15837265760127572],[127,-55,78,-0.1605810666392281],[127,-55,79,-0.16266456643271687],[127,-54,64,-0.11206546732442435],[127,-54,65,-0.11588263936370524],[127,-54,66,-0.11958031481972597],[127,-54,67,-0.12315700857664247],[127,-54,68,-0.12661140015700634],[127,-54,69,-0.1299423396155699],[127,-54,70,-0.13314885349894634],[127,-54,71,-0.13623015087102175],[127,-54,72,-0.13918562940413604],[127,-54,73,-0.1420148815359471],[127,-54,74,-0.14471770069221912],[127,-54,75,-0.14729408757520013],[127,-54,76,-0.1497442565178584],[127,-54,77,-0.1520686419038414],[127,-54,78,-0.1542679046532177],[127,-54,79,-0.15634293877397187],[127,-53,64,-0.10590270307330796],[127,-53,65,-0.10970029039516949],[127,-53,66,-0.11337919383976192],[127,-53,67,-0.11693792484442045],[127,-53,68,-0.120375158696016],[127,-53,69,-0.12368974041257297],[127,-53,70,-0.1268806906907448],[127,-53,71,-0.12994721191905467],[127,-53,72,-0.13288869425691474],[127,-53,73,-0.13570472177933224],[127,-53,74,-0.13839507868755674],[127,-53,75,-0.14095975558532003],[127,-53,76,-0.1433989558209442],[127,-53,77,-0.14571310189518605],[127,-53,78,-0.14790284193486747],[127,-53,79,-0.14996905623227352],[127,-52,64,-0.0997000110391042],[127,-52,65,-0.10347733123609926],[127,-52,66,-0.1071368053708962],[127,-52,67,-0.11067694134205275],[127,-52,68,-0.11409641008407723],[127,-52,69,-0.11739405143644643],[127,-52,70,-0.12056888007849631],[127,-52,71,-0.12362009153008202],[127,-52,72,-0.1265470682180252],[127,-52,73,-0.1293493856082617],[127,-52,74,-0.1320268184039326],[127,-52,75,-0.13457934680908268],[127,-52,76,-0.1370071628582331],[127,-52,77,-0.1393106768116985],[127,-52,78,-0.141490523616704],[127,-52,79,-0.14354756943427005],[127,-51,64,-0.09346191409314719],[127,-51,65,-0.0972182968015799],[127,-51,66,-0.10085769589371618],[127,-51,67,-0.10437861563931006],[127,-51,68,-0.10777972250621981],[127,-51,69,-0.11105985101642957],[127,-51,70,-0.11421800966795181],[127,-51,71,-0.11725338692250886],[127,-51,72,-0.12016535725900956],[127,-51,73,-0.12295348729273559],[127,-51,74,-0.12561754196047836],[127,-51,75,-0.1281574907712959],[127,-51,76,-0.13057351412314755],[127,-51,77,-0.1328660096852854],[127,-51,78,-0.1350355988464519],[127,-51,79,-0.13708313322885846],[127,-50,64,-0.08719292879310725],[127,-50,65,-0.09092771607849437],[127,-50,66,-0.09454640633214861],[127,-50,67,-0.09804750010697605],[127,-50,68,-0.10142965929235825],[127,-50,69,-0.10469171295678903],[127,-50,70,-0.10783266325639673],[127,-50,71,-0.11085169140925355],[127,-50,72,-0.1137481637354898],[127,-50,73,-0.11652163776312774],[127,-50,74,-0.1191718683998717],[127,-50,75,-0.12169881417052741],[127,-50,76,-0.1241026435203082],[127,-50,77,-0.12638374118390883],[127,-50,78,-0.12854271462038858],[127,-50,79,-0.13058040051384645],[127,-49,64,-0.08089755923944553],[127,-49,65,-0.08461010596719554],[127,-49,66,-0.08820746588094597],[127,-49,67,-0.09168813573073575],[127,-49,68,-0.09505077271816631],[127,-49,69,-0.09829420032526626],[127,-49,70,-0.10141741420924943],[127,-49,71,-0.10441958816306884],[127,-49,72,-0.10730008014178605],[127,-49,73,-0.11005843835466333],[127,-49,74,-0.11269440742322567],[127,-49,75,-0.11520793460495604],[127,-49,76,-0.11759917608289072],[127,-49,77,-0.11986850332098375],[127,-49,78,-0.12201650948529608],[127,-49,79,-0.12404401593097947],[127,-48,64,-0.0745802908059231],[127,-48,65,-0.07826996499675176],[127,-48,66,-0.0818453857062752],[127,-48,67,-0.08530504579772136],[127,-48,68,-0.08864759767818509],[127,-48,69,-0.09187185911334694],[127,-48,70,-0.09497681910809053],[127,-48,71,-0.09796164385292716],[127,-48,72,-0.10082568273623937],[127,-48,73,-0.1035684744222598],[127,-48,74,-0.10618975299502531],[127,-48,75,-0.10868945416797227],[127,-48,76,-0.11106772155944167],[127,-48,77,-0.11332491303396086],[127,-48,78,-0.11546160710935682],[127,-48,79,-0.11747860942967425],[127,-47,64,-0.06824558374399592],[127,-47,65,-0.07191176691359169],[127,-47,66,-0.07546465251924817],[127,-47,67,-0.0789027294555501],[127,-47,68,-0.08222464523099204],[127,-47,69,-0.08542921176818297],[127,-47,70,-0.08851541126995488],[127,-47,71,-0.09148240215128856],[127,-47,72,-0.09432952503706626],[127,-47,73,-0.0970563088255666],[127,-47,74,-0.0996624768179426],[127,-47,75,-0.10214795291334833],[127,-47,76,-0.10451286786998648],[127,-47,77,-0.10675756563193461],[127,-47,78,-0.10888260972181585],[127,-47,79,-0.11088878969928029],[127,-46,64,-0.06189786666093855],[127,-46,65,-0.06553995414339864],[127,-46,66,-0.0690697220222285],[127,-46,67,-0.07248565514369232],[127,-46,68,-0.07578639601627579],[127,-46,69,-0.07897075059601133],[127,-46,70,-0.08203769413772577],[127,-46,71,-0.08498637711210355],[127,-46,72,-0.08781613118858933],[127,-46,73,-0.09052647528403979],[127,-46,74,-0.09311712167736363],[127,-46,75,-0.09558798218982445],[127,-46,76,-0.09793917443126077],[127,-46,77,-0.10017102811210588],[127,-46,78,-0.10228409142124839],[127,-46,79,-0.10427913746971917],[127,-45,64,-0.05554152987201799],[127,-45,65,-0.059158931126564895],[127,-45,66,-0.06266501222823795],[127,-45,67,-0.06605825389749587],[127,-45,68,-0.0693372935441332],[127,-45,69,-0.07250093103738542],[127,-45,70,-0.07554813454195419],[127,-45,71,-0.07847804641986433],[127,-45,72,-0.08128998919816333],[127,-45,73,-0.08398347160237662],[127,-45,74,-0.0865581946559626],[127,-45,75,-0.08901405784543193],[127,-45,76,-0.09135116535139975],[127,-45,77,-0.09356983234543459],[127,-45,78,-0.0956705913527649],[127,-45,79,-0.09765419868081504],[127,-44,64,-0.04918091862655605],[127,-44,65,-0.05277305752705719],[127,-44,66,-0.05625489665330907],[127,-44,67,-0.05962491252470381],[127,-44,68,-0.06288173735644187],[127,-44,69,-0.06602416481406892],[127,-44,70,-0.0690511558339465],[127,-44,71,-0.07196184450955356],[127,-44,72,-0.07475554404364215],[127,-44,73,-0.07743175276615522],[127,-44,74,-0.07999016021815075],[127,-44,75,-0.08243065330139987],[127,-44,76,-0.08475332249391976],[127,-44,77,-0.08695846813131636],[127,-44,78,-0.08904660675398968],[127,-44,79,-0.09101847752017189],[127,-43,64,-0.042820326207718806],[127,-43,65,-0.046386641314519084],[127,-43,66,-0.0498436973816071],[127,-43,67,-0.05318996665430287],[127,-43,68,-0.0564240760601219],[127,-43,69,-0.05954481294741598],[127,-43,70,-0.06255113088994879],[127,-43,71,-0.06544215555731481],[127,-43,72,-0.06821719065121346],[127,-43,73,-0.07087572390750041],[127,-43,74,-0.07341743316424343],[127,-43,75,-0.07584219249546442],[127,-43,76,-0.078150078410822],[127,-43,77,-0.0803413761211127],[127,-43,78,-0.08241658586963718],[127,-43,79,-0.08437642932940959],[127,-42,64,-0.03646398690635777],[127,-42,65,-0.040003931719946983],[127,-42,66,-0.04343567800366155],[127,-42,67,-0.04675769365802673],[127,-42,68,-0.04996860023263805],[127,-42,69,-0.0530671786485748],[127,-42,70,-0.05605237498676208],[127,-42,71,-0.058923306342180126],[127,-42,72,-0.061679266743936756],[127,-42,73,-0.06431973314112005],[127,-42,74,-0.06684437145466782],[127,-42,75,-0.06925304269492671],[127,-42,76,-0.07154580914515873],[127,-42,77,-0.07372294061087359],[127,-42,78,-0.07578492073503307],[127,-42,79,-0.07773245337910595],[127,-41,64,-0.03011606886873719],[127,-41,65,-0.03362911206476371],[127,-41,66,-0.037035036427528256],[127,-41,67,-0.04033230544435262],[127,-41,68,-0.04351953519955665],[127,-41,69,-0.04659550008034152],[127,-41,70,-0.04955913854861804],[127,-41,71,-0.052409558978690596],[127,-41,72,-0.05514604556081337],[127,-41,73,-0.057768064270532604],[127,-41,74,-0.06027526890405022],[127,-41,75,-0.06266750717928327],[127,-41,76,-0.06494482690288261],[127,-41,77,-0.06710748220307727],[127,-41,78,-0.06915593982840096],[127,-41,79,-0.07109088551227472],[127,-40,64,-0.02378066681799229],[127,-40,65,-0.027266292463141717],[127,-40,66,-0.030645897562742497],[127,-40,67,-0.03391794112483004],[127,-40,68,-0.037081033684013276],[127,-40,69,-0.04013394299051454],[127,-40,70,-0.0430755997651614],[127,-40,71,-0.04590510352024135],[127,-40,72,-0.048621728446234025],[127,-40,73,-0.05122492936433787],[127,-40,74,-0.053714347745019486],[127,-40,75,-0.05608981779227118],[127,-40,76,-0.05835137259383161],[127,-40,77,-0.060499250337235355],[127,-40,78,-0.06253390059175712],[127,-40,79,-0.06445599065621255],[127,-39,64,-0.01746179464963349],[127,-39,65,-0.020919502397888756],[127,-39,66,-0.02427230587735829],[127,-39,67,-0.027518659553062763],[127,-39,68,-0.03065716832840215],[127,-39,69,-0.03368659321705769],[127,-39,70,-0.036605857080852955],[127,-39,71,-0.03941405043348212],[127,-39,72,-0.04211043731012043],[127,-39,73,-0.04469446120284004],[127,-39,74,-0.0471657510620489],[127,-39,75,-0.049524127363649306],[127,-39,76,-0.05176960824215904],[127,-39,77,-0.053902415689676686],[127,-39,78,-0.05592298182073774],[127,-39,79,-0.05783195520304085],[127,-38,64,-0.011163377900944016],[127,-38,65,-0.014592683169739828],[127,-38,66,-0.01791821782794023],[127,-38,67,-0.021138431736186902],[127,-38,68,-0.024251924088134036],[127,-38,69,-0.02725744906492744],[127,-38,70,-0.030153921555644336],[127,-38,71,-0.032940422943611214],[127,-38,72,-0.0356162069586079],[127,-38,73,-0.03818070559488029],[127,-38,74,-0.040633535095185636],[127,-38,75,-0.04297450200056219],[127,-38,76,-0.045203609266067035],[127,-38,77,-0.047321062442363115],[127,-38,78,-0.049327275923203406],[127,-38,79,-0.05122287925879476],[127,-37,64,-0.0048892460941010185],[127,-37,65,-0.008289680219893736],[127,-37,66,-0.011587494162325962],[127,-37,67,-0.01478113311867657],[127,-37,68,-0.017869190497296628],[127,-37,69,-0.020850413554387215],[127,-37,70,-0.02372370909674626],[127,-37,71,-0.026488149250394444],[127,-37,72,-0.029142977295096184],[127,-37,73,-0.03168761356469474],[127,-37,74,-0.03412166141348416],[127,-37,75,-0.03644491324831223],[127,-37,76,-0.03865735662665648],[127,-37,77,-0.04075918042055471],[127,-37,78,-0.042750781046443254],[127,-37,79,-0.0446327687608703],[127,-36,64,0.0013568750466325108],[127,-36,65,-0.0020142353261307644],[127,-36,66,-0.005283892095510279],[127,-36,67,-0.008450535738825593],[127,-36,68,-0.011512753806557696],[127,-36,69,-0.014469286541161308],[127,-36,70,-0.01731903256184808],[127,-36,71,-0.020061054615256424],[127,-36,72,-0.022694585392020294],[127,-36,73,-0.02521903340915921],[127,-36,74,-0.027633988958509326],[127,-36,75,-0.029939230120890392],[127,-36,76,-0.03213472884625346],[127,-36,77,-0.03422065709968691],[127,-36,78,-0.03619739307333436],[127,-36,79,-0.03806552746419656],[127,-35,64,0.007571371503935831],[127,-35,65,0.004230021327768063],[127,-35,66,9.889426416371805E-4],[127,-35,67,-0.0021503002576132024],[127,-35,68,-0.005186288993029864],[127,-35,69,-0.00811775670813486],[127,-35,70,-0.010943593733491075],[127,-35,71,-0.013662853319157509],[127,-35,72,-0.016274757433048737],[127,-35,73,-0.018778702625120824],[127,-35,74,-0.0211742659576043],[127,-35,75,-0.023461211000976978],[127,-35,76,-0.025639493895923238],[127,-35,77,-0.02770926948115815],[127,-35,78,-0.029670897487166337],[127,-35,79,-0.03152494879583201],[127,-34,64,0.013750749002464424],[127,-34,65,0.010439579209095107],[127,-34,66,0.007227483880612895],[127,-34,67,0.00411603213983025],[127,-34,68,0.0011066483576970265],[127,-34,69,-0.001799393428815299],[127,-34,70,-0.004600975164811727],[127,-34,71,-0.007297140491466014],[127,-34,72,-0.009887100525923564],[127,-34,73,-0.012370239707036768],[127,-34,74,-0.014746121707148285],[127,-34,75,-0.017014495409624186],[127,-34,76,-0.019175300952374852],[127,-34,77,-0.021228675837248523],[127,-34,78,-0.023174961105340786],[127,-34,79,-0.025014707578204454],[127,-33,64,0.019891641170167063],[127,-33,65,0.016611055620056714],[127,-33,66,0.013428333220749433],[127,-33,67,0.01034504797044078],[127,-33,68,0.0073626302976324],[127,-33,69,0.0044823614977246296],[127,-33,70,0.0017053681036249824],[127,-33,71,-9.67383809545419E-4],[127,-33,72,-0.0035350943856604644],[127,-33,73,-0.0059971358146327924],[127,-33,74,-0.008353058225512244],[127,-33,75,-0.010602595645337831],[127,-33,76,-0.012745672023984356],[127,-33,77,-0.01478240732488223],[127,-33,78,-0.016713123681662667],[127,-33,79,-0.018538351620705162],[127,-32,64,0.02599081782556134],[127,-32,65,0.02274120400805335],[127,-32,66,0.019588228361594906],[127,-32,67,0.01653346980678705],[127,-32,68,0.013578364890238115],[127,-32,69,0.010724202240093073],[127,-32,70,0.007972116955572428],[127,-32,71,0.0053230849306079575],[127,-32,72,0.002777917111557837],[127,-32,73,3.372536890789979E-4],[127,-32,74,-0.0019984417760543494],[127,-32,75,-0.004228888292895694],[127,-32,76,-0.00635399344626586],[127,-32,77,-0.00837385946857383],[127,-32,78,-0.010288789377565832],[127,-32,79,-0.012099293179981374],[127,-31,64,0.03204519339111633],[127,-31,65,0.028826922402555688],[127,-31,66,0.025704051562347452],[127,-31,67,0.02267816475814166],[127,-31,68,0.019750704712217515],[127,-31,69,0.01692296745616584],[127,-31,70,0.014196096739579889],[127,-31,71,0.011571078372835886],[127,-31,72,0.009048734503948497],[127,-31,73,0.00662971782958266],[127,-31,74,0.004314505740002694],[127,-31,75,0.00210339439825713],[127,-31,76,-3.5072466377794598E-6],[127,-31,77,-0.002006283512398621],[127,-31,78,-0.003905218102109309],[127,-31,79,-0.005700800288764851],[127,-30,64,0.03805183543290758],[127,-30,65,0.03486526197873241],[127,-30,66,0.031772838228512734],[127,-30,67,0.028776153079222544],[127,-30,68,0.02587665548339768],[127,-30,69,0.023075648943181704],[127,-30,70,0.020374285938373093],[127,-30,71,0.01777356228855953],[127,-30,72,0.01527431144932534],[127,-30,73,0.01287719874260651],[127,-30,74,0.010582715520983],[127,-30,75,0.008391173266200314],[127,-30,76,0.006302697621686448],[127,-30,77,0.004317222359179973],[127,-30,78,0.002434483279421973],[127,-30,79,6.540120469314958E-4],[127,-29,64,0.044007973326220196],[127,-29,65,0.04085343574751277],[127,-29,66,0.0377917856254566],[127,-29,67,0.0348246169062737],[127,-29,68,0.031953384824385034],[127,-29,69,0.029179400416015855],[127,-29,70,0.026503824966799927],[127,-29,71,0.023927664393465498],[127,-29,72,0.02145176355959133],[127,-29,73,0.019076800525505755],[127,-29,74,0.016803280732120007],[127,-29,75,0.014631531118986185],[127,-29,76,0.012561694176346783],[127,-29,77,0.010593721931292155],[127,-29,78,0.008727369867975288],[127,-29,79,0.006962190781910738],[127,-28,64,0.049911007047271694],[127,-28,65,0.04678882737225065],[127,-28,66,0.04375826171902775],[127,-28,67,0.04082090912066483],[127,-28,68,0.03797823114216159],[127,-28,69,0.03523154641380588],[127,-28,70,0.03258202509852415],[127,-28,71,0.030030683293306937],[127,-28,72,0.0275783773647037],[127,-28,73,0.025225798218453166],[127,-28,74,0.02297346550304835],[127,-28,75,0.02082172174751895],[127,-28,76,0.0187707264332041],[127,-28,77,0.01682044999962684],[127,-28,78,0.014970667784425906],[127,-28,79,0.013220953897363441],[127,-27,64,0.05575851609119442],[127,-27,65,0.05266900011213438],[127,-27,66,0.049669814143388114],[127,-27,67,0.04676256234014475],[127,-27,68,0.04394871264376843],[127,-27,69,0.04122959133507487],[127,-27,70,0.038606377521603896],[127,-27,71,0.03608009755896735],[127,-27,72,0.033651619406256605],[127,-27,73,0.03132164691558725],[127,-27,74,0.029090714055573175],[127,-27,75,0.026959179069013794],[127,-27,76,0.02492721856456881],[127,-27,77,0.022994821542532407],[127,-27,78,0.021161783354658015],[127,-27,79,0.0194276995980589],[127,-26,64,0.06154826851597639],[127,-26,65,0.05849170589203767],[127,-26,66,0.05552417929575404],[127,-26,67,0.052647298037450385],[127,-26,68,0.04986253647776917],[127,-26,69,0.047171228601041615],[127,-26,70,0.044574562522652794],[127,-26,71,0.04207357493047659],[127,-26,72,0.039669145460370925],[127,-26,73,0.0373619910058024],[127,-26,74,0.03515265996140016],[127,-26,75,0.03304152640071811],[127,-26,76,0.031028784187982605],[127,-26,77,0.029114441023933457],[127,-26,78,0.02729831242571601],[127,-26,79,0.025580015640843445],[127,-25,64,0.06727823011251688],[127,-25,65,0.06425489449896826],[127,-25,66,0.061319291558195155],[127,-25,67,0.058473035786422045],[127,-25,68,0.055717608003649555],[127,-25,69,0.053054349947280754],[127,-25,70,0.050484458799735954],[127,-25,71,0.04800898165013778],[127,-25,72,0.04562880989004936],[127,-25,73,0.04334467354334259],[127,-25,74,0.041157135529989675],[127,-25,75,0.03906658586406164],[127,-25,76,0.03707323578570765],[127,-25,77,0.03517711182722649],[127,-25,78,0.03337804981318482],[127,-25,79,0.0316756887946017],[127,-24,64,0.07294657370094049],[127,-24,65,0.06995672290526089],[127,-24,66,0.06705329264664717],[127,-24,67,0.06423790263577833],[127,-24,68,0.06151204018930434],[127,-24,69,0.058877054843874954],[127,-24,70,0.056334152904157],[127,-24,71,0.05388439192491579],[127,-24,72,0.051528675127150425],[127,-24,73,0.049267745748352354],[127,-24,74,0.047102181326688086],[127,-24,75,0.04503238791938269],[127,-24,76,0.043058594255083404],[127,-24,77,0.041180845820311784],[127,-24,78,0.03939899887995857],[127,-24,79,0.03771271443184421],[127,-23,64,0.07855168855287253],[127,-23,65,0.07559556471821527],[127,-23,66,0.07272454108683213],[127,-23,67,0.06994024261024567],[127,-23,68,0.06724416313630588],[127,-23,69,0.06463766004376281],[127,-23,70,0.06212194881082522],[127,-23,71,0.05969809751778177],[127,-23,72,0.05736702128367066],[127,-23,73,0.055129476637071795],[127,-23,74,0.05298605582082194],[127,-23,75,0.05093718103092315],[127,-23,76,0.04898309858943395],[127,-23,77,0.04712387305144172],[127,-23,78,0.045359381246078745],[127,-23,79,0.043689306251598836],[127,-22,64,0.08409218993982936],[127,-22,65,0.0811700197563292],[127,-22,66,0.07833162181723974],[127,-22,67,0.0755786263391941],[127,-22,68,0.07291253373310835],[127,-22,69,0.07033470925942831],[127,-22,70,0.0678463776173609],[127,-22,71,0.06544861746816555],[127,-22,72,0.06314235589249151],[127,-22,73,0.060928362781835],[127,-22,74,0.05880724516391567],[127,-22,75,0.05677944146224756],[127,-22,76,0.05484521568968459],[127,-22,77,0.05300465157604983],[127,-22,78,0.05125764662980303],[127,-22,79,0.049603906133767195],[127,-21,64,0.08956692880786632],[127,-21,65,0.08667892375227992],[127,-21,66,0.08387335591932288],[127,-21,67,0.0811518608129358],[127,-21,68,0.0785159454363421],[127,-21,69,0.07596698296809246],[127,-21,70,0.07350620737209002],[127,-21,71,0.07113470794167431],[127,-21,72,0.06885342377774928],[127,-21,73,0.06666313820102632],[127,-21,74,0.06456447309818891],[127,-21,75,0.06255788320224343],[127,-21,76,0.060643650306847374],[127,-21,77,0.05882187741471534],[127,-21,78,0.05709248282006374],[127,-21,79,0.05545519412510935],[127,-20,64,0.0949750015781834],[127,-20,65,0.09212135818234124],[127,-20,66,0.08934881047459331],[127,-20,67,0.086658999266368],[127,-20,68,0.08405343817988065],[127,-20,69,0.08153350834508621],[127,-20,70,0.07910045303061419],[127,-20,71,0.07675537220875694],[127,-20,72,0.0744992170545018],[127,-20,73,0.07233278437867574],[127,-20,74,0.07025671099500819],[127,-20,75,0.06827146802138107],[127,-20,76,0.06637735511504872],[127,-20,77,0.0645744946419391],[127,-20,78,0.06286282577998736],[127,-20,79,0.061242098556523294],[127,-19,64,0.1003157600738539],[127,-19,65,0.09749666022240866],[127,-19,66,0.09475730854879005],[127,-19,67,0.09209935119013779],[127,-19,68,0.08952430841185621],[127,-19,69,0.08703356932558193],[127,-19,70,0.08462838654112903],[127,-19,71,0.08230987075248997],[127,-19,72,0.08007898525787593],[127,-19,73,0.07793654041386555],[127,-19,74,0.07588318802347538],[127,-19,75,0.0739194156584091],[127,-19,76,0.07204554091527993],[127,-19,77,0.07026170560590972],[127,-19,78,0.06856786988165775],[127,-19,79,0.0669638062918041],[127,-18,64,0.10558882157280103],[127,-18,65,0.1028044328307599],[127,-18,66,0.10009843930325024],[127,-18,67,0.09747249246945355],[127,-18,68,0.0949281192597532],[127,-18,69,0.09246671679481056],[127,-18,70,0.0900895470586206],[127,-18,71,0.08779773150561798],[127,-18,72,0.08559224560182166],[127,-18,73,0.08347391330008813],[127,-18,74,0.08144340144928097],[127,-18,75,0.07950121413762024],[127,-18,76,0.07764768697000302],[127,-18,77,0.07588298127939508],[127,-18,78,0.07420707827225659],[127,-18,79,0.0726197731080147],[127,-17,64,0.1107940789867381],[127,-17,65,0.10804455495725873],[127,-17,66,0.10537206823318657],[127,-17,67,0.102778275650251],[127,-17,68,0.1002647108232797],[127,-17,69,0.09783277890647046],[127,-17,70,0.09548375128764408],[127,-17,71,0.09321876021654385],[127,-17,72,0.09103879336717435],[127,-17,73,0.08894468833424307],[127,-17,74,0.08693712706352197],[127,-17,75,0.0850166302163834],[127,-17,76,0.0831835514683057],[127,-17,77,0.08143807174145079],[127,-17,78,0.07978019337127085],[127,-17,79,0.07820973420716304],[127,-16,64,0.11593171116623946],[127,-16,65,0.11321719187917445],[127,-16,66,0.11057834753304563],[127,-16,67,0.1080168403328865],[127,-16,68,0.1055342105951983],[127,-16,69,0.10313187152950054],[127,-16,70,0.1008111039538574],[127,-16,71,0.09857305094445301],[127,-16,72,0.0964187124192013],[127,-16,73,0.0943489396554601],[127,-16,74,0.09236442974166226],[127,-16,75,0.09046571996311781],[127,-16,76,0.08865318212178819],[127,-16,77,0.08692701679012771],[127,-16,78,0.08528724749895378],[127,-16,79,0.08373371485936376],[127,-15,64,0.12100219333203333],[127,-15,65,0.11832280566370945],[127,-15,66,0.11571772658904156],[127,-15,67,0.11318862369345062],[127,-15,68,0.11073704401020401],[127,-15,69,0.108364408823313],[127,-15,70,0.10607200840440778],[127,-15,71,0.10386099668365834],[127,-15,72,0.10173238585473043],[127,-15,73,0.0996870409138404],[127,-15,74,0.09772567413273059],[127,-15,75,0.0958488394658118],[127,-15,76,0.09405692689127598],[127,-15,77,0.09235015668627611],[127,-15,78,0.09072857363613251],[127,-15,79,0.08919204117758517],[127,-14,64,0.12600630763229415],[127,-14,65,0.12336216575700709],[127,-14,66,0.12079096259863276],[127,-14,67,0.11829437113247532],[127,-14,68,0.11587394512162164],[127,-14,69,0.11353111394125426],[127,-14,70,0.1112671773369357],[127,-14,71,0.10908330011694112],[127,-14,72,0.10698050677862403],[127,-14,73,0.10495967606887846],[127,-14,74,0.10302153547852233],[127,-14,75,0.10116665567084437],[127,-14,76,0.09939544484412255],[127,-14,77,0.09770814302820607],[127,-14,78,0.09610481631512435],[127,-14,79,0.09458535102374077],[127,-13,64,0.13094515382603233],[127,-13,65,0.1283363596997421],[127,-13,66,0.12579913131704812],[127,-13,67,0.12333514705113113],[127,-13,68,0.12094596740602526],[127,-13,69,0.11863302986239721],[127,-13,70,0.11639764365730176],[127,-13,71,0.11424098449798248],[127,-13,72,0.11216408920970267],[127,-13,73,0.11016785031767451],[127,-13,74,0.10825301056290693],[127,-13,75,0.106420157352216],[127,-13,76,0.10466971714220574],[127,-13,77,0.10300194975731147],[127,-13,78,0.10141694264186951],[127,-13,79,0.09991460504622962],[127,-12,64,0.1358201600927309],[127,-12,65,0.1332468039694441],[127,-12,66,0.1307436379310093],[127,-12,67,0.1283123457550739],[127,-12,68,0.12595449469593045],[127,-12,69,0.12367153035181677],[127,-12,70,0.12146477146619084],[127,-12,71,0.11933540466304904],[127,-12,72,0.11728447911627637],[127,-12,73,0.11531290115308912],[127,-12,74,0.11342142879140138],[127,-12,75,0.11161066621134796],[127,-12,76,0.10988105816077898],[127,-12,77,0.10823288429481692],[127,-12,78,0.1066662534494367],[127,-12,79,0.10518109784908936],[127,-11,64,0.14063309396795098],[127,-11,65,0.138095254949268],[127,-11,66,0.13562622805936897],[127,-11,67,0.13322770248564797],[127,-11,68,0.1309012522402756],[127,-11,69,0.12864833104906348],[127,-11,70,0.12647026717430054],[127,-11,71,0.12436825817163577],[127,-11,72,0.12234336558098735],[127,-11,73,0.12039650955154846],[127,-11,74,0.11852846340071155],[127,-11,75,0.11673984810715121],[127,-11,76,0.1150311267378773],[127,-11,77,0.11340259880934722],[127,-11,78,0.11185439458260493],[127,-11,79,0.11038646929245821],[127,-10,64,0.1453860734051271],[127,-10,65,0.14288382002344546],[127,-10,66,0.14044899888089113],[127,-10,67,0.13808330457868156],[127,-10,68,0.135788317892921],[127,-10,69,0.13356550068506368],[127,-10,70,0.13141619074635302],[127,-10,71,0.12934159657630195],[127,-10,72,0.1273427920952046],[127,-10,73,0.12542071129073695],[127,-10,74,0.12357614279848184],[127,-10,75,0.12180972441660809],[127,-10,76,0.12012193755451883],[127,-10,77,0.11851310161556194],[127,-10,78,0.116983368313761],[127,-10,79,0.11553271592458991],[127,-9,64,0.15008157796340316],[127,-9,65,0.14761496879925418],[127,-9,66,0.14521441038901595],[127,-9,67,0.1428816027507126],[127,-9,68,0.14061813342900553],[127,-9,69,0.13842547242728898],[127,-9,70,0.13630496707376205],[127,-9,71,0.13425783682154113],[127,-9,72,0.1322851679828021],[127,-9,73,0.13038790839701253],[127,-9,74,0.12856686203308687],[127,-9,75,0.12682268352569426],[127,-9,76,0.12515587264553696],[127,-9,77,0.1235667687036871],[127,-9,78,0.12205554488994819],[127,-9,79,0.12062220254525358],[127,-8,64,0.1547224601216991],[127,-8,65,0.15229154445570758],[127,-8,66,0.14992529677381194],[127,-8,67,0.14762542251284705],[127,-8,68,0.14539351598936645],[127,-8,69,0.1432310553533962],[127,-8,70,0.14113939747616733],[127,-8,71,0.13911977277188559],[127,-8,72,0.13717327995353246],[127,-8,73,0.13530088072275448],[127,-8,74,0.1335033943936753],[127,-8,75,0.13178149245086057],[127,-8,76,0.1301356930412515],[127,-8,77,0.12856635540015793],[127,-8,78,0.1270736742112738],[127,-8,79,0.1256576739007308],[127,-7,64,0.15931195671878107],[127,-7,65,0.1569167752187265],[127,-7,66,0.15458487793087317],[127,-7,67,0.15231797571201122],[127,-7,68,0.15011766965277906],[127,-7,69,0.1479854460530986],[127,-7,70,0.14592267133158665],[127,-7,71,0.14393058686900617],[127,-7,72,0.1420103037857473],[127,-7,73,0.1401627976533938],[127,-7,74,0.1383889031402168],[127,-7,75,0.13668930859081585],[127,-7,76,0.13506455053973176],[127,-7,77,0.13351500815911743],[127,-7,78,0.13204089764042903],[127,-7,79,0.1306422665101592],[127,-6,64,0.1638537005194366],[127,-6,65,0.16149428596290416],[127,-6,66,0.15919677109727526],[127,-6,67,0.15696287219970662],[127,-6,68,0.1547941971361283],[127,-6,69,0.15269224035837625],[127,-6,70,0.15065837783530078],[127,-6,71,0.14869386191791645],[127,-6,72,0.1467998161385774],[127,-6,73,0.144977229944243],[127,-6,74,0.14322695336366642],[127,-6,75,0.141549691608732],[127,-6,76,0.13994599960976362],[127,-6,77,0.1384162764848904],[127,-6,78,0.13696075994343415],[127,-6,79,0.13557952062333467],[127,-5,64,0.1683517319068849],[127,-5,65,0.1660281099399885],[127,-5,66,0.16376500261471438],[127,-5,67,0.16156413162839656],[127,-5,68,0.15942711162263912],[127,-5,69,0.15735544520215805],[127,-5,70,0.15535051788760246],[127,-5,71,0.15341359300241209],[127,-5,72,0.15154580649370597],[127,-5,73,0.14974816168725436],[127,-5,74,0.14802152397637947],[127,-5,75,0.14636661544500162],[127,-5,76,0.1447840094246552],[127,-5,77,0.14327412498556513],[127,-5,78,0.14183722136174082],[127,-5,79,0.14047339231011202],[127,-4,64,0.17281051070116915],[127,-4,65,0.17052270063382835],[127,-4,66,0.16829401981957626],[127,-4,67,0.1661261953752694],[127,-4,68,0.16402084871791156],[127,-4,69,0.16197949060521577],[127,-4,70,0.1600035161101443],[127,-4,71,0.15809419952948744],[127,-4,72,0.1562526892264703],[127,-4,73,0.1544800024074453],[127,-4,74,0.15277701983251235],[127,-4,75,0.15114448046028295],[127,-4,76,0.14958297602661652],[127,-4,77,0.14809294555741348],[127,-4,78,0.14667466981543065],[127,-4,79,0.145328265681132],[127,-3,64,0.17723492810367503],[127,-3,65,0.17498294374193402],[127,-3,66,0.17278870306008187],[127,-3,67,0.17065393859352218],[127,-3,68,0.16858027853390567],[127,-3,69,0.16656924179141708],[127,-3,70,0.1646222329910425],[127,-3,71,0.16274053740287409],[127,-3,72,0.16092531580644398],[127,-3,73,0.1591775992891411],[127,-3,74,0.1574982839785588],[127,-3,75,0.15588812570898458],[127,-3,76,0.15434773462186135],[127,-3,77,0.15287756970030708],[127,-3,78,0.15147793323765413],[127,-3,79,0.15014896524002752],[127,-2,64,0.18163031876786606],[127,-2,65,0.17941416928373488],[127,-2,66,0.17725437784059872],[127,-2,67,0.17515268239126058],[127,-2,68,0.17311071790096844],[127,-2,69,0.17113001143143236],[127,-2,70,0.16921197715882175],[127,-2,71,0.16735791132580102],[127,-2,72,0.16556898712759383],[127,-2,73,0.16384624953212912],[127,-2,74,0.16219061003412083],[127,-2,75,0.16060284134328473],[127,-2,76,0.15908357200653278],[127,-2,77,0.15763328096422036],[127,-2,78,0.15625229204041624],[127,-2,79,0.15494076836721082],[127,-1,64,0.1860024729960178],[127,-1,65,0.18382216383532168],[127,-1,66,0.18169682709290003],[127,-1,67,0.17962820613778996],[127,-1,68,0.17761794270768239],[127,-1,69,0.17566757201467087],[127,-1,70,0.17377851778498188],[127,-1,71,0.17195208723274413],[127,-1,72,0.17018946596778206],[127,-1,73,0.16849171283749764],[127,-1,74,0.1668597547026801],[127,-1,75,0.1652943811474562],[127,-1,76,0.16379623912321617],[127,-1,77,0.1623658275265939],[127,-1,78,0.16100349171146788],[127,-1,79,0.15970941793500204],[127,0,64,0.1903576490620642],[127,0,65,0.18821318289078348],[127,0,66,0.18612230357448412],[127,0,67,0.18408675989741474],[127,0,68,0.18210820036864728],[127,0,69,0.18018816834955997],[127,0,70,0.17832809711530062],[127,0,71,0.17652930485028617],[127,0,72,0.17479298957773448],[127,0,73,0.17312022402327465],[127,0,74,0.1715119504124928],[127,0,75,0.16996897520261411],[127,0,76,0.16849196374816255],[127,0,77,0.16708143490067318],[127,0,78,0.1657377555424271],[127,0,79,0.16446113505422533],[127,1,64,0.19470258566066734],[127,1,65,0.19259396335025392],[127,1,66,0.19053754239406828],[127,1,67,0.1885350769908577],[127,1,68,0.18658822242031448],[127,1,69,0.18469853019228855],[127,1,70,0.18286744312998648],[127,1,71,0.18109629038720376],[127,1,72,0.1793862823995891],[127,1,73,0.1777385057699884],[127,1,74,0.17615391808772374],[127,1,75,0.17463334268200847],[127,1,76,0.17317746330934036],[127,1,77,0.17178681877494695],[127,1,78,0.1704617974882534],[127,1,79,0.16920263195239027],[127,2,64,0.19904410694309715],[127,2,65,0.1969713294283828],[127,2,66,0.19494936781794558],[127,2,67,0.19297998172418895],[127,2,68,0.19106483319654788],[127,2,69,0.1892054818924349],[127,2,70,0.18740338018217162],[127,2,71,0.18565986818795632],[127,2,72,0.18397616875686207],[127,2,73,0.1823533823679122],[127,2,74,0.18079248197309616],[127,2,75,0.17929430777251754],[127,2,76,0.17785956192351937],[127,2,77,0.17648880318386528],[127,2,78,0.17518244148894124],[127,2,79,0.1739407324629958],[127,3,64,0.20338330139249206],[127,3,65,0.20134638282263895],[127,3,66,0.19935889511914673],[127,3,67,0.19742260329804717],[127,3,68,0.19553917616829186],[127,3,69,0.19371018152444341],[127,3,70,0.19193708127335052],[127,3,71,0.19022122649486206],[127,3,72,0.18856385243656948],[127,3,73,0.18696607344262905],[127,3,74,0.18542887781652384],[127,3,75,0.18395312261795738],[127,3,76,0.18253952839372645],[127,3,77,0.18118867384264847],[127,3,78,0.17990099041451224],[127,3,79,0.1786767568430635],[127,4,64,0.20771659591150016],[127,4,65,0.20571557224829495],[127,4,66,0.20376259550686815],[127,4,67,0.20185943608080015],[127,4,68,0.20000776951194288],[127,4,69,0.19820917170488073],[127,4,70,0.1964651140753817],[127,4,71,0.19477695863288447],[127,4,72,0.1931459529970163],[127,4,73,0.19157322534819243],[127,4,74,0.19005977931215468],[127,4,75,0.18860648877864494],[127,4,76,0.18721409265405653],[127,4,77,0.1858831895481431],[127,4,78,0.1846142323947494],[127,4,79,0.18340752300658159],[127,5,64,0.21204028406665043],[127,5,65,0.21007521162557496],[127,5,66,0.20815680396374636],[127,5,67,0.2062868368103128],[127,5,68,0.20446699239713373],[127,5,69,0.20269885469505755],[127,5,70,0.2009839045841907],[127,5,71,0.19932351495820455],[127,5,72,0.19771894576267735],[127,5,73,0.1961713389675166],[127,5,74,0.1946817134733274],[127,5,75,0.19325095995191255],[127,5,76,0.19187983562075694],[127,5,77,0.19056895895157],[127,5,78,0.18931880431285197],[127,5,79,0.18812969654650358],[127,6,64,0.21635065228264028],[127,6,65,0.2144216060589783],[127,6,66,0.212537845000903],[127,6,67,0.21070115011558466],[127,6,68,0.20891321026603527],[127,6,69,0.20717561742925916],[127,6,70,0.20548986188839946],[127,6,71,0.20385732735892914],[127,6,72,0.2022792860488769],[127,6,73,0.20075689365314087],[127,6,74,0.19929118428174952],[127,6,75,0.19788306532225985],[127,6,76,0.19653331223614334],[127,6,77,0.19524256328923184],[127,6,78,0.19401131421619455],[127,6,79,0.19283991281905932],[127,7,64,0.22064398331793478],[127,7,65,0.21875105535890882],[127,7,66,0.21690203622430082],[127,7,67,0.21509871212653642],[127,7,68,0.21334277848527328],[127,7,69,0.21163583520749896],[127,7,70,0.20997938190162946],[127,7,71,0.2083748130256584],[127,7,72,0.20682341296934892],[127,7,73,0.2053263510705141],[127,7,74,0.20388467656525655],[127,7,75,0.20249931347234773],[127,7,76,0.20117105541160019],[127,7,77,0.19990056035630832],[127,7,78,0.1986883453197238],[127,7,79,0.1975347809755824],[127,8,64,0.22491655968317759],[127,8,65,0.22305985750562807],[127,8,66,0.2212456918429624],[127,8,67,0.21947585402520875],[127,8,68,0.21775204593882902],[127,8,69,0.21607587532884653],[127,8,70,0.21444885103498446],[127,8,71,0.21287237816186344],[127,8,72,0.21134775318324917],[127,8,73,0.20987615898039758],[127,8,74,0.20845865981436784],[127,8,75,0.2070961962324812],[127,8,76,0.20578957990878444],[127,8,77,0.20453948841858638],[127,8,78,0.2033464599470406],[127,8,79,0.20221088793178488],[127,9,64,0.2291646670025248],[127,9,65,0.2273443120556523],[127,9,66,0.22556512611916124],[127,9,67,0.2238289055384889],[127,9,68,0.22213735856204087],[127,9,69,0.2204921006654461],[127,9,70,0.21889464980983508],[127,9,71,0.21734642163418672],[127,9,72,0.21584872458173776],[127,9,73,0.2144027549604991],[127,9,74,0.21300959193775293],[127,9,75,0.21167019246870566],[127,9,76,0.21038538615915592],[127,9,77,0.20915587006224912],[127,9,78,0.20798220340928564],[127,9,79,0.2068648022746008],[127,10,64,0.23338459731801103],[127,10,65,0.23160072349069372],[127,10,66,0.22985665676069877],[127,10,67,0.22815419837247652],[127,10,68,0.22649506281681642],[127,10,69,0.22488087317733718],[127,10,70,0.22331315641101301],[127,10,71,0.22179333856278516],[127,10,72,0.22032273991424778],[127,10,73,0.21890257006645586],[127,10,74,0.21753392295673024],[127,10,75,0.21621777180962887],[127,10,76,0.21495496402195102],[127,10,77,0.21374621598183918],[127,10,78,0.2125921078219516],[127,10,79,0.21149307810671925],[127,11,64,0.23757265233672786],[127,11,65,0.2358254045089337],[127,11,66,0.23411660825504288],[127,11,67,0.23244806958826314],[127,11,68,0.23082150910783117],[127,11,69,0.22923855736785093],[127,11,70,0.22770075018019087],[127,11,71,0.22620952385148152],[127,11,72,0.22476621035420652],[127,11,73,0.22337203243193382],[127,11,74,0.222028098638559],[127,11,75,0.22073539831173694],[127,11,76,0.2194947964803613],[127,11,77,0.21830702870615926],[127,11,78,0.21717269585937737],[127,11,79,0.2160922588285663],[127,12,64,0.24172514662092665],[127,12,65,0.24001467925873443],[127,12,66,0.238341315145441],[127,12,67,0.23670686491924187],[127,12,68,0.235113055139827],[127,12,69,0.23356152367969718],[127,12,70,0.2320538150495588],[127,12,71,0.23059137565784105],[127,12,72,0.22917554900432968],[127,12,73,0.22780757080795944],[127,12,74,0.22648856406864581],[127,12,75,0.22521953406332074],[127,12,76,0.22400136327604014],[127,12,77,0.22283480626223207],[127,12,78,0.22172048444705061],[127,12,79,0.22065888085785668],[127,13,64,0.24583841072115148],[127,13,65,0.24416488651489598],[127,13,66,0.2425271252491168],[127,13,67,0.24092694203005144],[127,13,68,0.23936606921612041],[127,13,69,0.23784615183185265],[127,13,70,0.23636874291591414],[127,13,71,0.23493529880328812],[127,13,72,0.23354717434159566],[127,13,73,0.23220561804160023],[127,13,74,0.23091176716177997],[127,13,75,0.22966664272712745],[127,13,76,0.22847114448204975],[127,13,77,0.22732604577743043],[127,13,78,0.22623198839183],[127,13,79,0.22518947728683247],[127,14,64,0.24990879425217366],[127,14,65,0.24827238279723451],[127,14,66,0.24667040281731684],[127,14,67,0.24510467371692618],[127,14,68,0.2435769334780865],[127,14,69,0.24208883409701298],[127,14,70,0.24064193695492214],[127,14,71,0.23923770812302048],[127,14,72,0.23787751360166687],[127,14,73,0.2365626144937476],[127,14,74,0.23529416211215037],[127,14,75,0.23407319302149654],[127,14,76,0.2329006240140029],[127,14,77,0.23177724701953772],[127,14,78,0.2307037239498434],[127,14,79,0.2296805814769387],[127,15,64,0.25393266891192234],[127,15,65,0.2523335454316683],[127,15,66,0.25076753163740545],[127,15,67,0.24923645104964653],[127,15,68,0.24774204708581476],[127,15,69,0.24628597851981027],[127,15,70,0.24486981487575],[127,15,71,0.24349503175592335],[127,15,72,0.24216300610295383],[127,15,73,0.24087501139621037],[127,15,74,0.23963221278235491],[127,15,75,0.23843566214017875],[127,15,76,0.23728629307960825],[127,15,77,0.2361849158749384],[127,15,78,0.23513221233226744],[127,15,79,0.23412873059114891],[127,16,64,0.2579064314432663],[127,16,65,0.25634477555367485],[127,16,66,0.2548149180768615],[127,16,67,0.253318686454944],[127,16,68,0.25185782933979345],[127,16,69,0.25043401207564536],[127,16,70,0.2490488121159266],[127,16,71,0.2477037143743362],[127,16,72,0.2464001065101754],[127,16,73,0.24513927414796616],[127,16,74,0.24392239603124577],[127,16,75,0.24275053911069366],[127,16,76,0.24162465356646468],[127,16,77,0.24054556776479263],[127,16,78,0.2395139831488361],[127,16,79,0.23853046906377928],[127,17,64,0.2618265065388351],[127,17,65,0.26030250105430036],[127,17,66,0.25880899406936525],[127,17,67,0.2573478167415517],[127,17,68,0.2559207227438102],[127,17,69,0.2545293837703318],[127,17,70,0.25317538497661995],[127,17,71,0.2518602203538651],[127,17,72,0.2505852880376132],[127,17,73,0.24935188555076665],[127,17,74,0.24816120498081184],[127,17,75,0.24701432809142015],[127,17,76,0.2459122213683047],[127,17,77,0.24485573099939162],[127,17,78,0.24384557778927973],[127,17,79,0.242882352008002],[127,18,64,0.26568934968865676],[127,18,65,0.2642031794685048],[127,18,66,0.26274622004275383],[127,18,67,0.26132030606667506],[127,18,68,0.2599271960088455],[127,18,69,0.25856856768031816],[127,18,70,0.25724601369810435],[127,18,71,0.2559610368830109],[127,18,72,0.254715045591822],[127,18,73,0.2535093489838661],[127,18,74,0.25234515222186155],[127,18,75,0.25122355160718535],[127,18,76,0.2501455296494519],[127,18,77,0.24911195007045545],[127,18,78,0.248123552742455],[127,18,79,0.2471809485608112],[127,19,64,0.2694914499707226],[127,19,65,0.26804330080594796],[127,19,66,0.2666230877889522],[127,19,67,0.265232648843992],[127,19,68,0.26387374699806626],[127,19,69,0.26254806593360447],[127,19,70,0.2612572054755285],[127,19,71,0.26000267701272367],[127,19,72,0.258785898853915],[127,19,73,0.2576081915179836],[127,19,74,0.25647077295862125],[127,19,75,0.2553747537234661],[127,19,76,0.25432113204760337],[127,19,77,0.253310788881491],[127,19,78,0.25234448285328215],[127,19,79,0.25142284516556024],[127,20,64,0.2732293327845727],[127,20,65,0.2718193903243124],[127,20,66,0.2704361232759781],[127,20,67,0.2690813725932822],[127,20,68,0.26775690561302173],[127,20,69,0.26646441163145007],[127,20,70,0.26520549741508403],[127,20,71,0.26398168264598804],[127,20,72,0.26279439530152326],[127,20,73,0.26164496696860345],[127,20,74,0.260534628092353],[127,20,75,0.2594645031593075],[127,20,76,0.25843560581504693],[127,20,77,0.2574488339163135],[127,20,78,0.2565049645175948],[127,20,79,0.255604648792179],[127,21,64,0.2768995625277026],[127,21,65,0.2755280112449663],[127,21,66,0.2741818894018193],[127,21,67,0.27286304073147866],[127,21,68,0.2715732366208343],[127,21,69,0.27031417171066563],[127,21,70,0.2690874594303687],[127,21,71,0.2678946274672264],[127,21,72,0.2667371131702179],[127,21,73,0.26561625888840223],[127,21,74,0.264533307243776],[127,21,75,0.2634893963387444],[127,21,76,0.2624855548980927],[127,21,77,0.26152269734551675],[127,21,78,0.2606016188146852],[127,21,79,0.25972299009484706],[127,22,64,0.2804987452148984],[127,22,65,0.2791657674110664],[127,22,66,0.2778569886902866],[127,22,67,0.27657425530525226],[127,22,68,0.2753193424224923],[127,22,69,0.2740939497466002],[127,22,70,0.27289969707904943],[127,22,71,0.271738119811631],[127,22,72,0.2706106643545062],[127,22,73,0.2695186834989094],[127,22,74,0.26846343171440573],[127,22,75,0.2674460603808344],[127,22,76,0.26646761295483423],[127,22,77,0.2655290200710009],[127,22,78,0.2646310945776568],[127,22,79,0.26377452650724165],[127,23,64,0.2840235310405857],[127,23,65,0.2827293058881953],[127,23,66,0.28145806592893685],[127,23,67,0.2802116596652165],[127,23,68,0.27899186576233914],[127,23,69,0.27780038869691226],[127,23,70,0.27663885433992286],[127,23,71,0.27550880547452017],[127,23,72,0.27441169724849646],[127,23,73,0.2733488925615031],[127,23,74,0.272321657386905],[127,23,75,0.27133115602840563],[127,23,76,0.27037844631133584],[127,23,77,0.26946447470866147],[127,23,78,0.2685900714016858],[127,23,79,0.2677559452754564],[127,24,64,0.2874706168840066],[127,24,65,0.28621531950734075],[127,24,66,0.28498181074887124],[127,24,67,0.28377194108156384],[127,24,68,0.28258749237856245],[127,24,69,0.2814301735859332],[127,24,70,0.2803016163301738],[127,24,71,0.2792033704605181],[127,24,72,0.27813689952603216],[127,24,73,0.2771035761875341],[127,24,74,0.2761046775642468],[127,24,75,0.27514138051530856],[127,24,76,0.2742147568560417],[127,24,77,0.27332576850902995],[127,24,78,0.27247526258998056],[127,24,79,0.2716639664283852],[127,25,64,0.2908367487573246],[127,25,65,0.2896205493503175],[127,25,66,0.288424960146512],[127,25,67,0.28725183330123105],[127,25,68,0.2861029535947858],[127,25,69,0.28498003412972306],[127,25,70,0.2838847119629347],[127,25,71,0.2828185436726638],[127,25,72,0.2817830008603983],[127,25,73,0.2807794655876875],[127,25,74,0.27980922574779127],[127,25,75,0.2788734703722833],[127,25,76,0.2779732848725133],[127,25,77,0.2771096462159733],[127,25,78,0.2762834180375511],[127,25,79,0.27549534568567713],[127,26,64,0.2941187241967367],[127,26,65,0.29294178717771674],[127,26,66,0.2917843009474415],[127,26,67,0.2906481190466827],[127,26,68,0.28953502885285143],[127,26,69,0.28844674730190667],[127,26,70,0.2873849165452366],[127,26,71,0.286351099541538],[127,26,72,0.2853467755836928],[127,26,73,0.28437333576067086],[127,26,74,0.283432078354373],[127,26,75,0.282524204171534],[127,26,76,0.28165081181058826],[127,26,77,0.2808128928635496],[127,26,78,0.2800113270528798],[127,26,79,0.27924687730335995],[127,27,64,0.29731339459642153],[127,27,65,0.2961758777992032],[127,27,66,0.2950566722121231],[127,27,67,0.2939576324561295],[127,27,68,0.2928805481866069],[127,27,69,0.29182713984010705],[127,27,70,0.29079905431616315],[127,27,71,0.28979786059422],[127,27,72,0.2888250452856713],[127,27,73,0.287882008121038],[127,27,74,0.28697005737220255],[127,27,75,0.2860904052098126],[127,27,76,0.2852441629957661],[127,27,77,0.2844323365108187],[127,27,78,0.2836558211172979],[127,27,79,0.2829153968569322],[127,28,64,0.3004176674854125],[127,28,65,0.29931972138625557],[127,28,66,0.29823896758360113],[127,28,67,0.29717726146527673],[127,28,68,0.2961363946367975],[127,28,69,0.29511809069307027],[127,28,70,0.2941240009253074],[127,28,71,0.2931556999631735],[127,28,72,0.2922146813521651],[127,28,73,0.2913023530662498],[127,28,74,0.2904200329556836],[127,28,75,0.28956894413012063],[127,28,76,0.2887502102769223],[127,28,77,0.28796485091471435],[127,28,78,0.28721377658216973],[127,28,79,0.2864977839620268],[127,29,64,0.30342850874747523],[127,29,65,0.30237027572742803],[127,29,66,0.30132813757725513],[127,29,67,0.3003039501306849],[127,29,68,0.2992995066071396],[127,29,69,0.29831653340856756],[127,29,70,0.2973566858516118],[127,29,71,0.29642154383514363],[127,29,72,0.29551260744315805],[127,29,73,0.29463129248305514],[127,29,74,0.2937789259592349],[127,29,75,0.2929567414821077],[127,29,76,0.29216587461243854],[127,29,77,0.2914073581410654],[127,29,78,0.2906821173039739],[127,29,79,0.2899909649327386],[127,30,64,0.30634294478382446],[127,30,65,0.3053245584259649],[127,30,66,0.3043211918124452],[127,30,67,0.30333470089457015],[127,30,68,0.3023668801614084],[127,30,69,0.30141945846189655],[127,30,70,0.30049409476241906],[127,30,71,0.29959237383989173],[127,30,72,0.2987158019103419],[127,30,73,0.2978658021930149],[127,30,74,0.2970437104099302],[127,30,75,0.29625077022099117],[127,30,76,0.29548812859456525],[127,30,77,0.2947568311135772],[127,30,78,0.2940578172170959],[127,30,79,0.293391915377424],[127,31,64,0.3091580646187678],[127,31,65,0.30817964903986084],[127,31,66,0.30721520118613294],[127,31,67,0.3062665767911371],[127,31,68,0.30533557126162775],[127,31,69,0.3044239155250785],[127,31,70,0.3035332718128256],[127,31,71,0.30266522937885687],[127,31,72,0.3018213001542471],[127,31,73,0.30100291433726145],[127,31,74,0.3002114159190581],[127,31,75,0.29944805814508824],[127,31,76,0.29871399891211253],[127,31,77,0.29801029610087715],[127,31,78,0.29733790284442774],[127,31,79,0.2966976627320749],[127,32,64,0.3118710219483466],[127,32,65,0.3109326911644323],[127,32,66,0.3100072999885534],[127,32,67,0.30909670359451513],[127,32,68,0.3082026979474368],[127,32,69,0.30732701567682263],[127,32,70,0.3064713218854108],[127,32,71,0.3056372098938249],[127,32,72,0.3048261969210235],[127,32,73,0.3040397197005729],[127,32,74,0.303279130032675],[127,32,75,0.3025456902720429],[127,32,76,0.3018405687515518],[127,32,77,0.30116483514169884],[127,32,78,0.30051945574586],[127,32,79,0.2999052887313483],[127,33,64,0.3144790371318222],[127,33,65,0.313580894457252],[127,33,66,0.3126946879607819],[127,33,67,0.3118222719081418],[127,33,68,0.3109654424564764],[127,33,69,0.31012593355309825],[127,33,70,0.30930541277018486],[127,33,71,0.30850547707543835],[127,33,72,0.3077276485387077],[127,33,73,0.30697336997459646],[127,33,74,0.3062440005209868],[127,33,75,0.30554081115357723],[127,33,76,0.3048649801363538],[127,33,77,0.3042175884080376],[127,33,78,0.3035996149044886],[127,33,79,0.303011931817075],[127,34,64,0.31697939912609124],[127,34,65,0.31612153660552694],[127,34,66,0.31527463229427916],[127,34,67,0.31444053919568005],[127,34,68,0.31362105328587847],[127,34,69,0.31281790943840293],[127,34,70,0.312032777284838],[127,34,71,0.3112672570116367],[127,34,72,0.3105228750930663],[127,34,73,0.30980107996030765],[127,34,74,0.3091032376066491],[127,34,75,0.30843062712885727],[127,34,76,0.3077844362046588],[127,34,77,0.3071657565063663],[127,34,78,0.3065755790506328],[127,34,79,0.30601478948434396],[127,35,64,0.31936946736308824],[127,35,65,0.31855196523598145],[127,35,66,0.31774446957247854],[127,35,67,0.316948831753529],[127,35,68,0.3161668471949248],[127,35,69,0.31540025129778887],[127,35,70,0.3146507153353602],[127,35,71,0.31391984227609504],[127,35,72,0.31320916254307946],[127,35,73,0.31252012970977755],[127,35,74,0.3118541161320525],[127,35,75,0.31121240851654586],[127,35,76,0.3105962034253468],[127,35,77,0.31000660271698527],[127,35,78,0.309444608923735],[127,35,79,0.30891112056523234],[127,36,64,0.32164667357004273],[127,36,65,0.3208695997671104],[127,36,66,0.32010160765427503],[127,36,67,0.3193445466247924],[127,36,68,0.3186002111487322],[127,36,69,0.31787033674950665],[127,36,70,0.31715659591688483],[127,36,71,0.31646059395651044],[127,36,72,0.31578386477592196],[127,36,73,0.31512786660709435],[127,36,74,0.3144939776654454],[127,36,75,0.3138834917453868],[127,36,76,0.31329761375235377],[127,36,77,0.31273745517134927],[127,36,78,0.3122040294719842],[127,36,79,0.3116982474500253],[127,37,64,0.32380852353266526],[127,37,65,0.3230719332038756],[127,37,66,0.32234352749949535],[127,37,67,0.3216251534547779],[127,37,68,0.32091860420304186],[127,37,69,0.3202256149783439],[127,37,70,0.31954785905483546],[127,37,71,0.31888694362282116],[127,37,72,0.3182444056015166],[127,37,73,0.3176217073885243],[127,37,74,0.3170202325459746],[127,37,75,0.31644128142340505],[127,37,76,0.3158860667173194],[127,37,77,0.31535570896745585],[127,37,78,0.31485123198975135],[127,37,79,0.31437355824600866],[127,38,64,0.32585259880131184],[127,38,65,0.32515653387490046],[127,38,66,0.32446778493639894],[127,38,67,0.32378819628808475],[127,38,68,0.3231195593301696],[127,38,69,0.32246360858971407],[127,38,70,0.32182201768643387],[127,38,71,0.321196395235413],[127,38,72,0.3205882806867237],[127,38,73,0.31999914010197],[127,38,74,0.3194303618677035],[127,38,75,0.3188832523457844],[127,38,76,0.3183590314606263],[127,38,77,0.31785882822335987],[127,38,78,0.3173836761928963],[127,38,79,0.31693450887390145],[127,39,64,0.32777655834000724],[127,39,65,0.3271210471120351],[127,39,66,0.32647201237108564],[127,39,67,0.32583129530714905],[127,39,68,0.3252006851859844],[127,39,69,0.3245819154043656],[127,39,70,0.32397665948243476],[127,39,71,0.32338652699317866],[127,39,72,0.32281305942902633],[127,39,73,0.32225772600558555],[127,39,74,0.32172191940246925],[127,39,75,0.32120695144127825],[127,39,76,0.320714048700688],[127,39,77,0.3202443480686652],[127,39,78,0.3197988922318024],[127,39,79,0.3193786251017784],[127,40,64,0.32957814011842707],[127,40,65,0.32896319687240105],[127,40,66,0.32835392043891654],[127,40,67,0.327752148512356],[127,40,68,0.32715966781802713],[127,40,69,0.3265782101938202],[127,40,70,0.3260094486091999],[127,40,71,0.3254549931215441],[127,40,72,0.3249163867698277],[127,40,73,0.32439510140566974],[127,40,74,0.323892533461695],[127,40,75,0.3234099996572768],[127,40,76,0.3229487326416066],[127,40,77,0.3225098765741195],[127,40,78,0.32209448264226154],[127,40,79,0.321703504516606],[127,41,64,0.33125516264677224],[127,41,65,0.3306807873028401],[127,41,66,0.3301112995978741],[127,41,67,0.32954853334364587],[127,41,68,0.3289942723146936],[127,41,69,0.328450246356466],[127,41,70,0.3279181274310345],[127,41,71,0.3273995256003835],[127,41,72,0.3268959849472827],[127,41,73,0.3264089794337521],[127,41,74,0.32593990869707856],[127,41,75,0.32549009378344423],[127,41,76,0.3250607728191162],[127,41,77,0.3246530966192261],[127,41,78,0.32426812423412255],[127,41,79,0.32390681843330954],[127,42,64,0.3328055264536166],[127,42,65,0.33227170424685504],[127,42,66,0.3317420216639507],[127,42,67,0.33121830824370024],[127,42,68,0.3307023443955714],[127,42,69,0.3301958575343972],[127,42,70,0.3297005181528797],[127,42,71,0.32921793583191816],[127,42,72,0.3287496551887573],[127,42,73,0.32829715176297314],[127,42,74,0.32786182784025336],[127,42,75,0.3274450082140294],[127,42,76,0.3270479358849152],[127,42,77,0.3266717676979751],[127,42,78,0.32631756991781075],[127,42,79,0.3259863137414724],[127,43,64,0.33422721550662826],[127,43,65,0.33373391669394054],[127,43,66,0.3332440412884591],[127,43,67,0.3327594141626052],[127,43,68,0.3322818119428253],[127,43,69,0.3318129591708884],[127,43,70,0.3313545244032495],[127,43,71,0.33090811624848493],[127,43,72,0.33047527934280324],[127,43,73,0.33005749026364045],[127,43,74,0.32965615338130594],[127,43,75,0.3292725966487291],[127,43,76,0.3289080673292634],[127,43,77,0.3285637276625735],[127,43,78,0.3282406504685904],[127,43,79,0.3279398146895451],[127,44,64,0.33551829857622195],[127,44,65,0.33506547817135823],[127,44,66,0.3346153973773239],[127,44,67,0.3341698760040484],[127,44,68,0.33373068647368637],[127,44,69,0.33329955000856737],[127,44,70,0.33287813275747097],[127,44,71,0.3324680418602369],[127,44,72,0.3320708214507086],[127,44,73,0.3316879485980229],[127,44,74,0.3313208291862128],[127,44,75,0.3309707937321669],[127,44,76,0.3306390931419122],[127,44,77,0.33032689440523594],[127,44,78,0.3300352762286396],[127,44,79,0.3297652246066291],[127,45,64,0.33667693054216696],[127,45,65,0.3362645280783876],[127,45,66,0.33585421445238395],[127,45,67,0.3354478040130794],[127,45,68,0.3350470645540803],[127,45,69,0.33465371352831447],[127,45,70,0.3342694142012654],[127,45,71,0.3338957717428099],[127,45,72,0.33353432925766047],[127,45,73,0.3331865637544224],[127,45,74,0.33285388205323263],[127,45,75,0.3325376166320285],[127,45,76,0.33223902141140416],[127,45,77,0.33195926747808113],[127,45,78,0.3316994387469758],[127,45,79,0.33146052756187716],[127,46,64,0.33770135364308107],[127,46,65,0.33732929296297487],[127,46,66,0.33695870395462646],[127,46,67,0.33659139510535724],[127,46,68,0.3362291291533114],[127,46,69,0.3358736193288103],[127,46,70,0.33552652553458123],[127,46,71,0.33518945046486937],[127,46,72,0.3348639356634328],[127,46,73,0.33455145752042886],[127,46,74,0.33425342320816603],[127,46,75,0.3339711665557581],[127,46,76,0.33370594386264985],[127,46,77,0.3334589296510325],[127,46,78,0.33323121235713665],[127,46,79,0.3330237899614129],[127,47,64,0.3385898986688528],[127,47,65,0.3382580877408292],[127,47,66,0.33792716548940305],[127,47,67,0.3375989341379312],[127,47,68,0.3372751509398535],[127,47,69,0.3369575244467782],[127,47,70,0.3366477107157336],[127,47,71,0.3363473094555895],[127,47,72,0.33605786011264843],[127,47,73,0.33578083789541746],[127,47,74,0.33551764973853226],[127,47,75,0.33526963020587236],[127,47,76,0.3350380373328346],[127,47,77,0.33482404840778396],[127,47,78,0.33462875569267114],[127,47,79,0.3344531620828239],[127,48,64,0.33934098609601104],[127,48,65,0.33904931685698203],[127,48,66,0.33875798801364465],[127,48,67,0.33846879512157646],[127,48,68,0.33818348951826727],[127,48,69,0.3379037746179461],[127,48,70,0.33763130214587167],[127,48,71,0.3373676683120873],[127,48,72,0.33711440992464603],[127,48,73,0.3368730004423083],[127,48,74,0.3366448459666942],[127,48,75,0.33643128117391946],[127,48,76,0.3362335651856876],[127,48,77,0.3360528773798576],[127,48,78,0.33589031314047296],[127,48,79,0.3357468795472634],[127,49,64,0.33995312716599035],[127,49,65,0.3397014753897558],[127,49,66,0.33944965096502133],[127,49,67,0.33919944237462496],[127,49,68,0.33895259460718496],[127,49,69,0.3387108054786654],[127,49,70,0.3384757218937098],[127,49,71,0.33824893604674844],[127,49,72,0.33803198156287856],[127,49,73,0.3378263295785244],[127,49,74,0.33763338476185845],[127,49,75,0.33745448127300953],[127,49,76,0.33729087866403634],[127,49,77,0.3371437577186785],[127,49,78,0.3370142162318786],[127,49,79,0.33690326472907967],[127,50,64,0.3404249249063238],[127,50,65,0.3402131500971802],[127,50,66,0.34000072533308107],[127,50,67,0.33978943161833075],[127,50,68,0.3395810071584018],[127,50,69,0.3393771437082247],[127,50,70,0.33917948286056476],[127,50,71,0.3389896122744832],[127,50,72,0.33880906184389015],[127,50,73,0.3386392998061879],[127,50,74,0.33848172879099375],[127,50,75,0.33833768180896334],[127,50,76,0.338208418180692],[127,50,77,0.3380951194057128],[127,50,78,0.33799888497157543],[127,50,79,0.33792072810301954],[127,51,64,0.3407550750947749],[127,51,65,0.34058302040585964],[127,51,66,0.340409874672379],[127,51,67,0.3402374110137799],[127,51,68,0.3400673604170825],[127,51,69,0.33990140811187364],[127,51,70,0.33974118988570967],[127,51,71,0.3395882883399304],[127,51,72,0.3394442290858844],[127,51,73,0.33931047688157134],[127,51,74,0.33918843170868784],[127,51,75,0.3390794247900942],[127,51,76,0.33898471454768697],[127,51,77,0.3389054825006883],[127,51,78,0.3388428291043428],[127,51,79,0.33879776952903096],[127,52,64,0.34094236716637205],[127,52,65,0.3408098593422627],[127,52,66,0.340675856057561],[127,52,67,0.3405421221403056],[127,52,68,0.34041038092304743],[127,52,69,0.34028231064451175],[127,52,70,0.3401595407920041],[127,52,71,0.3400436483845594],[127,52,72,0.33993615419683565],[127,52,73,0.33983851892375583],[127,52,74,0.3397521392858873],[127,52,75,0.33967834407557373],[127,52,76,0.3396183901438062],[127,52,77,0.3395734583278422],[127,52,78,0.33954464931956696],[127,52,79,0.3395329794746011],[127,53,64,0.3409856850633753],[127,53,65,0.3408925344064575],[127,53,66,0.34079752098042676],[127,53,67,0.3407024009154385],[127,53,68,0.3406088894531634],[127,53,69,0.3405186573750758],[127,53,70,0.34043332737182774],[127,53,71,0.3403544703537064],[127,53,72,0.34028360170217975],[127,53,73,0.3402221774625282],[127,53,74,0.3401715904775595],[127,53,75,0.3401331664624144],[127,53,76,0.3401081600204531],[127,53,77,0.34009775060023284],[127,53,78,0.3401030383935666],[127,53,79,0.34012504017467254],[127,54,64,0.340884008028167],[127,54,65,0.34083000838828853],[127,54,66,0.3407738161889729],[127,54,67,0.34071717845638927],[127,54,68,0.3406618019048405],[127,54,69,0.340609349391623],[127,54,70,0.3405614363133225],[127,54,71,0.34051962694354465],[127,54,72,0.3404854307120828],[127,54,73,0.3404602984255223],[127,54,74,0.3404456184292787],[127,54,75,0.3404427127110752],[127,54,76,0.34045283294585327],[127,54,77,0.34047715648212207],[127,54,78,0.3405167822697415],[127,54,79,0.3405727267291438],[127,55,64,0.34063641133905875],[127,55,65,0.3406213401259858],[127,55,66,0.3406037844683994],[127,55,67,0.3405854818830489],[127,55,68,0.3405681301206185],[127,55,69,0.34055338364709264],[127,55,70,0.3405428500669195],[127,55,71,0.34053808648796535],[127,55,72,0.3405405958282673],[127,55,73,0.3405518230645783],[127,55,74,0.34057315142270844],[127,55,75,0.34060589850966183],[127,55,76,0.3406513123875653],[127,55,77,0.340710567589397],[127,55,78,0.3407847610765037],[127,55,79,0.34087490813791943],[127,56,64,0.34024206698902926],[127,56,65,0.34026568520721956],[127,56,66,0.34028656536409857],[127,56,67,0.34030643506252395],[127,56,68,0.34032698265385786],[127,56,69,0.3403498537457645],[127,56,70,0.34037664765217146],[127,56,71,0.34040891378539295],[127,56,72,0.34044814799041456],[127,56,73,0.34049578882134063],[127,56,74,0.34055321376000514],[127,56,75,0.34062173537674323],[127,56,76,0.3407025974333251],[127,56,77,0.3407969709280537],[127,56,78,0.34090595008302177],[127,56,79,0.34103054827353596],[127,57,64,0.3397002443073752],[127,57,65,0.33976229661258683],[127,57,66,0.3398213958466103],[127,57,67,0.3398792592951919],[127,57,68,0.3399375654755272],[127,57,69,0.33999795067040295],[127,57,70,0.34006200540488163],[127,57,71,0.34013127086552164],[127,57,72,0.34020723526213625],[127,57,73,0.3402913301320897],[127,57,74,0.34038492658713393],[127,57,75,0.3404893315027819],[127,57,76,0.34060578365021654],[127,57,77,0.3407354497707433],[127,57,78,0.34087942059277565],[127,57,79,0.34103870679136244],[127,58,64,0.33901031052429087],[127,58,65,0.3391105253015395],[127,58,66,0.3392076109185534],[127,58,67,0.3393032739422872],[127,58,68,0.3393991826220888],[127,58,69,0.3394969634500905],[127,58,70,0.3395981976645277],[127,58,71,0.33970441769597576],[127,58,72,0.33981710355651307],[127,58,73,0.339937679171801],[127,58,74,0.3400675086560943],[127,58,75,0.3402078925301668],[127,58,76,0.3403600638821616],[127,58,77,0.34052518447136615],[127,58,78,0.34070434077490497],[127,58,79,0.3408985399773614],[127,59,64,0.3381717312783761],[127,59,65,0.3383098207407593],[127,59,66,0.33844464416353853],[127,59,67,0.33857789699501945],[127,59,68,0.33871123678449117],[127,59,69,0.33884627976875814],[127,59,70,0.33898459740199316],[127,59,71,0.3391277128289032],[127,59,72,0.33927709730121036],[127,59,73,0.3394341665374456],[127,59,74,0.33960027702606355],[127,59,75,0.3397767222718661],[127,59,76,0.33996472898574304],[127,59,77,0.34016545321772884],[127,59,78,0.34037997643337237],[127,59,79,0.3406093015334247],[127,60,64,0.3371840710670485],[127,60,65,0.33735973137495345],[127,60,66,0.33753202823703654],[127,60,67,0.337702645585204],[127,60,68,0.3378732298382455],[127,60,69,0.33804538651438953],[127,60,70,0.33822067678758255],[127,60,71,0.3384006139874792],[127,60,72,0.3385866600431522],[127,60,73,0.3387802218705105],[127,60,74,0.3389826477034448],[127,60,75,0.33919522336867963],[127,60,76,0.3394191685043426],[127,60,77,0.3396556327222533],[127,60,78,0.3399056917139226],[127,60,79,0.34017034330027474],[127,61,64,0.3360469936398943],[127,61,65,0.3362599050401018],[127,61,66,0.3364693952992345],[127,61,67,0.33667713643743125],[127,61,68,0.3368847633146117],[127,61,69,0.33709387026892723],[127,61,70,0.3373060076993434],[127,61,71,0.337522678592346],[127,61,72,0.33774533499277204],[127,61,73,0.3379753744187592],[127,61,74,0.3382141362208332],[127,61,75,0.33846289788510714],[127,61,76,0.3387228712806103],[127,61,77,0.33899519885074236],[127,61,78,0.3392809497488508],[127,61,79,0.33958111591793483],[127,62,64,0.33476026233494816],[127,62,65,0.335010089319153],[127,62,66,0.33525647738987274],[127,62,67,0.33550108626277064],[127,62,68,0.3357455388128926],[127,62,69,0.33599141773887375],[127,62,70,0.3362402621716961],[127,62,71,0.33649356422798365],[127,62,72,0.3367527655078424],[127,62,73,0.3370192535372335],[127,62,74,0.33729435815490205],[127,62,75,0.33757934784383525],[127,62,76,0.33787542600726445],[127,62,77,0.3381837271892133],[127,62,78,0.3385053132395818],[127,62,79,0.33884116942377746],[127,63,64,0.3333237403578656],[127,63,65,0.3336101318401272],[127,63,66,0.33389310674502615],[127,63,67,0.33417431209397386],[127,63,68,0.334455358353798],[127,63,69,0.334737816126558],[127,63,70,0.3350232127843346],[127,63,71,0.33531302904898197],[127,63,72,0.33560869551685],[127,63,73,0.335911589128463],[127,63,74,0.3362230295831811],[127,63,75,0.33654427569881273],[127,63,76,0.33687652171619886],[127,63,77,0.3372208935487653],[127,63,78,0.33757844497703654],[127,63,79,0.33795015378812326],[127,64,64,0.33173739100404975],[127,64,65,0.3320599805166887],[127,64,66,0.33237921605588966],[127,64,67,0.33269673156223317],[127,64,68,0.333014124673937],[127,64,69,0.33333295344211555],[127,64,70,0.33365473299145176],[127,64,71,0.3339809321262623],[127,64,72,0.33431296988196424],[127,64,73,0.3346522120219314],[127,64,74,0.334999967479767],[127,64,75,0.3353574847469578],[127,64,76,0.33572594820593316],[127,64,77,0.3361064744085247],[127,64,78,0.33650010829982113],[127,64,79,0.3369078193874264],[127,65,64,0.3300012778236796],[127,65,65,0.3303596837311393],[127,65,66,0.33071483866951595],[127,65,67,0.3310683631154492],[127,65,68,0.33142184146139053],[127,65,69,0.33177681875614196],[127,65,70,0.33213479739124585],[127,65,71,0.3324972337332073],[127,65,72,0.33286553470156],[127,65,73,0.3332410542927595],[127,65,74,0.333625090049935],[127,65,75,0.334018879478461],[127,65,76,0.3344235964073745],[127,65,77,0.33484034729663326],[127,65,78,0.3352701674902073],[127,65,79,0.3357140174150173],[127,66,64,0.3281155647296903],[127,66,65,0.3285093904598744],[127,66,66,0.32890010873155673],[127,66,67,0.3292893261780501],[127,66,68,0.32967861353240846],[127,66,69,0.33006950239306143],[127,66,70,0.3304634819357495],[127,66,71,0.3308619955717401],[127,66,72,0.3312664375523337],[127,66,73,0.3316781495196429],[127,66,74,0.33209841700368214],[127,66,75,0.33252846586572],[127,66,76,0.33296945868792743],[127,66,77,0.33342249110931255],[127,66,78,0.3338885881079386],[127,66,79,0.3343687002294328],[127,67,64,0.32608051604862465],[127,67,65,0.32650935034123285],[127,67,66,0.3269352612709262],[127,67,67,0.3273598412522929],[127,67,68,0.32778464694916043],[127,67,69,0.3282111960651378],[127,67,70,0.3286409640809129],[127,67,71,0.3290753809382858],[127,67,72,0.329515827670947],[127,67,73,0.3299636329819826],[127,67,74,0.3304200697681461],[127,67,75,0.3308863515908468],[127,67,76,0.33136362909388817],[127,67,77,0.3318529863679498],[127,67,78,0.33235543726180417],[127,67,79,0.3328719216402821],[127,68,64,0.3238964965144515],[127,68,65,0.32435991368582434],[127,68,66,0.3248206322264823],[127,68,67,0.3252802299611307],[127,68,68,0.3257402490786241],[127,68,69,0.32620219294721553],[127,68,70,0.3266675228770227],[127,68,71,0.32713765482969354],[127,68,72,0.32761395607527655],[127,68,73,0.32809774179628154],[127,68,74,0.3285902716389689],[127,68,75,0.32909274621181617],[127,68,76,0.3296063035311979],[127,68,77,0.33013201541426934],[127,68,78,0.33067088381904874],[127,68,79,0.3312238371317095],[127,69,64,0.32156397120531277],[127,69,65,0.3220615314293047],[127,69,66,0.3225566584156864],[127,69,67,0.3230509150326143],[127,69,68,0.3235458285925801],[127,69,69,0.3240428876921554],[127,69,70,0.3245435389994261],[127,69,71,0.3250491839890912],[127,69,72,0.32556117562523945],[127,69,73,0.3260808149917813],[127,69,74,0.32660934787058093],[127,69,75,0.3271479612672341],[127,69,76,0.32769777988452703],[127,69,77,0.3282598625435692],[127,69,78,0.32883519855259324],[127,69,79,0.3294247040234336],[127,70,64,0.3190835054231363],[127,70,65,0.31961475502753256],[127,70,66,0.3201438774451821],[127,70,67,0.3206724202257668],[127,70,68,0.32120189540865185],[127,70,69,0.32173377638690825],[127,70,70,0.32226949471950056],[127,70,71,0.32281043689161476],[127,70,72,0.3233579410231404],[127,70,73,0.323913293525282],[127,70,74,0.3244777257053495],[127,70,75,0.32505241031966664],[127,70,76,0.3256384580746386],[127,70,77,0.32623691407596844],[127,70,78,0.32684875422601617],[127,70,79,0.32747488156931287],[127,71,64,0.3164557645162253],[127,71,65,0.31702023629421716],[127,71,66,0.31758292756339906],[127,71,67,0.3181453701980348],[127,71,68,0.31870906057249476],[127,71,69,0.3192754564493261],[127,71,70,0.3198459738159709],[127,71,71,0.32042198367010855],[127,71,72,0.32100480875363246],[127,71,73,0.3215957202352399],[127,71,74,0.32219593434168414],[127,71,75,0.32280660893762414],[127,71,76,0.3234288400541193],[127,71,77,0.32406365836575246],[127,71,78,0.32471202561637985],[127,71,79,0.3253748309935181],[127,72,64,0.31368151364477753],[127,72,65,0.31427872718101424],[127,72,66,0.3148745474551382],[127,72,67,0.31547049031427554],[127,72,68,0.3160680360810919],[127,72,69,0.31666862646567073],[127,72,70,0.3172736614265315],[127,72,71,0.317884495980759],[127,72,72,0.3185024369632578],[127,72,73,0.31912873973510586],[127,72,74,0.319764604841063],[127,72,75,0.3204111746161636],[127,72,76,0.3210695297414431],[127,72,77,0.32174068574878256],[127,72,78,0.32242558947486966],[127,72,79,0.3231251154642844],[127,73,64,0.31076161748925824],[127,73,65,0.3113910794999902],[127,73,66,0.3120195759780629],[127,73,67,0.3126486063972044],[127,73,68,0.31327963464708275],[127,73,69,0.31391408596874737],[127,73,70,0.31455334383970235],[127,73,71,0.3151987468085907],[127,73,72,0.31585158527949475],[127,73,73,0.31651309824583385],[127,73,74,0.31718446997391136],[127,73,75,0.31786682663604104],[127,73,76,0.3185612328933011],[127,73,77,0.31926868842790546],[127,73,78,0.3199901244251819],[127,73,79,0.3207264000051737],[127,74,64,0.30769703990176056],[127,74,65,0.3083582445885912],[127,74,66,0.30901895184122774],[127,74,67,0.30968064441943055],[127,74,68,0.3103447694042536],[127,74,69,0.31101273515678773],[127,74,70,0.31168590822704456],[127,74,71,0.3123656102129453],[127,74,72,0.31305311456943324],[127,74,73,0.31374964336768063],[127,74,74,0.31445636400444943],[127,74,75,0.31517438586153],[127,74,76,0.3159047569153124],[127,74,77,0.31664846029647187],[127,74,78,0.31740641079976695],[127,74,79,0.3181794513439602],[127,75,64,0.3044888435002977],[127,75,65,0.3051812729170575],[127,75,66,0.3058737132255875],[127,75,67,0.30656763013703026],[127,75,68,0.3072644535541329],[127,75,69,0.30796557455303153],[127,75,70,0.3086723423156799],[127,75,71,0.3093860610128944],[127,75,72,0.31010798663802797],[127,75,73,0.3108393237912447],[127,75,74,0.3115812224144594],[127,75,75,0.3123347744768591],[127,75,76,0.31310101061106543],[127,75,77,0.3138808966999199],[127,75,78,0.3146753304138876],[127,75,79,0.3154851376990916],[127,76,64,0.30113818920593444],[127,76,65,0.30186131363819724],[127,76,66,0.30258499734640215],[127,76,67,0.3033106886645652],[127,76,68,0.30403979995361063],[127,76,69,0.3047737046059189],[127,76,70,0.3055137340010344],[127,76,71,0.30626117441250233],[127,76,72,0.30701726386584705],[127,76,73,0.3077831889476649],[127,76,74,0.30856008156589537],[127,76,75,0.30934901566118655],[127,76,76,0.3101510038694161],[127,76,77,0.31096699413534606],[127,76,78,0.31179786627741146],[127,76,79,0.3126444285036518],[127,77,64,0.2976463357229211],[127,77,65,0.29839961407967547],[127,77,66,0.2991540399576889],[127,77,67,0.29991104399170565],[127,77,68,0.300672020643728],[127,77,69,0.3014383252300469],[127,77,70,0.302211270899951],[127,77,71,0.3029921255660839],[127,77,72,0.30378210878646106],[127,77,73,0.3045823885981207],[127,77,74,0.305394078302472],[127,77,75,0.30621823320225505],[127,77,76,0.3070558472901764],[127,77,77,0.3079078498891973],[127,77,78,0.30877510224447324],[127,77,79,0.30965839406695717],[127,78,64,0.2940146389617552],[127,78,65,0.29479751917874747],[127,78,66,0.29558217479865656],[127,78,67,0.29637001844138566],[127,78,68,0.29716242631957446],[127,78,69,0.29796073528782135],[127,78,70,0.29876623984410783],[127,78,71,0.2995801890833954],[127,78,72,0.30040378360340897],[127,78,73,0.3012381723625729],[127,78,74,0.3020844494901748],[127,78,75,0.30294365104866144],[127,78,76,0.30381675174813516],[127,78,77,0.3047046616130278],[127,78,78,0.3056082226009499],[127,78,79,0.3065282051737277],[127,79,64,0.29024455140507527],[127,79,65,0.29105647085934283],[127,79,66,0.291870832982023],[127,79,67,0.2926890320693972],[127,79,68,0.29351242574119585],[127,79,69,0.2943423320117118],[127,79,70,0.2951800263136478],[127,79,71,0.2960267384746655],[127,79,72,0.2968836496466488],[127,79,73,0.29775188918765116],[127,79,74,0.29863253149659874],[127,79,75,0.29952659280065674],[127,79,76,0.3004350278953233],[127,79,77,0.3013587268372323],[127,79,78,0.30229851158966026],[127,79,79,0.30325513262075043],[127,80,64,0.28633762141656544],[127,80,65,0.2871780073516726],[127,80,66,0.2880215423243922],[127,80,67,0.28886960200559714],[127,80,68,0.28972352508568516],[127,80,69,0.29058461036727823],[127,80,70,0.29145411381119013],[127,80,71,0.2923332455356311],[127,80,72,0.29322316676866045],[127,80,73,0.29412498675385657],[127,80,74,0.2950397596092807],[127,80,75,0.29596848113963437],[127,80,76,0.29691208560168125],[127,80,77,0.2978714424229117],[127,80,78,0.298847352873445],[127,80,79,0.2998405466911854],[127,81,64,0.2822954924927881],[127,81,65,0.28316376245428376],[127,81,66,0.284035926618612],[127,81,67,0.2849133417366462],[127,81,68,0.28579732724037954],[127,81,69,0.2866891623568951],[127,81,70,0.28759008317614554],[127,81,71,0.28850127967250694],[127,81,72,0.2894238926801228],[127,81,73,0.29035901082200116],[127,81,74,0.2913076673929488],[127,81,75,0.2922708371962345],[127,81,76,0.2932494333340584],[127,81,77,0.29424430395180234],[127,81,78,0.2952562289360582],[127,81,79,0.29628591656644765],[127,82,64,0.27811990245783963],[127,82,65,0.27901546473845157],[127,82,66,0.2799157048480054],[127,82,67,0.2808219603301779],[127,82,68,0.2817355310370582],[127,82,69,0.28265767626406746],[127,82,70,0.28358961183923354],[127,82,71,0.28453250716678347],[127,82,72,0.2854874822250686],[127,82,73,0.28645560451878826],[127,82,74,0.28743788598559455],[127,82,75,0.28843527985696804],[127,82,76,0.2894486774734455],[127,82,77,0.2904789050541722],[127,82,78,0.29152672042077477],[127,82,79,0.2925928096755709],[127,83,64,0.2738126826010251],[127,83,65,0.2747349366951064],[127,83,66,0.27566269034267177],[127,83,67,0.2765972616005892],[127,83,68,0.2775399304273338],[127,83,69,0.27849193583852894],[127,83,70,0.27945447301739124],[127,83,71,0.2804286903800418],[127,83,72,0.2814156865956984],[127,83,73,0.2824165075617138],[127,83,74,0.2834321433335444],[127,83,75,0.284463525009538],[127,83,76,0.28551152157062115],[127,83,77,0.28657693667485934],[127,83,78,0.2876605054068875],[127,83,79,0.2887628909822235],[127,84,64,0.2693757567574638],[127,84,65,0.2703240938242087],[127,84,66,0.2712787898777688],[127,84,67,0.27224114321636494],[127,84,68,0.2732124135991503],[127,84,69,0.27419381942203813],[127,84,70,0.27518653484898686],[127,84,71,0.27619168689870177],[127,84,72,0.27721035248677256],[127,84,73,0.2782435554232078],[127,84,74,0.27929226336545304],[127,84,75,0.2803573847267803],[127,84,76,0.2814397655401294],[127,84,77,0.28254018627737515],[127,84,78,0.2836593586240163],[127,84,79,0.28479792220930167],[127,85,64,0.26481114033150366],[127,85,65,0.2657849436664491],[127,85,66,0.26676600271365736],[127,85,67,0.2677555957488197],[127,85,68,0.2687549620342693],[127,85,69,0.26976529901475454],[127,85,70,0.27078775946922373],[127,85,71,0.27182344861858665],[127,85,72,0.2728734211894666],[127,85,73,0.27393867843390407],[127,85,74,0.2750201651051043],[127,85,75,0.27611876638910937],[127,85,76,0.27723530479248054],[127,85,77,0.27837053698596187],[127,85,78,0.27952515060412225],[127,85,79,0.28069976100099203],[127,86,64,0.26012093926316976],[127,86,65,0.26111958477749675],[127,86,66,0.26212641957812655],[127,86,67,0.26314270166247294],[127,86,68,0.26416964950696364],[127,86,69,0.26520843928240934],[127,86,70,0.2662602020259469],[127,86,71,0.26732602076951806],[127,86,72,0.26840692762489904],[127,86,73,0.269503900825243],[127,86,74,0.27061786172322544],[127,86,75,0.27174967174567527],[127,86,76,0.27290012930477536],[127,86,77,0.2740699666658052],[127,86,78,0.27525984677142257],[127,86,79,0.27647036002249903],[127,87,64,0.2553073489375386],[127,87,65,0.25633020564469167],[127,87,66,0.2573622215905996],[127,87,67,0.2584046342469582],[127,87,68,0.2594586410238135],[127,87,69,0.2605253965041725],[127,87,70,0.2616060096357544],[127,87,71,0.2627015408798399],[127,87,72,0.2638129993172355],[127,87,73,0.2649413397113136],[127,87,74,0.2660874595282216],[127,87,75,0.2672521959141376],[127,87,76,0.26843632262966133],[127,87,77,0.26964054694130984],[127,87,78,0.2708655064701164],[127,87,79,0.2721117659973481],[127,88,64,0.25037265303691625],[127,88,65,0.25141908354605635],[127,88,66,0.2524756791281929],[127,88,67,0.25354365649033916],[127,88,68,0.254624191704485],[127,88,69,0.25571841746109064],[127,88,70,0.25682742028028904],[127,88,71,0.25795223768075354],[127,88,72,0.2590938553062473],[127,88,73,0.2602532040098137],[127,88,74,0.2614311568957078],[127,88,75,0.26262852631893624],[127,88,76,0.2638460608425018],[127,88,77,0.2650844421523203],[127,88,78,0.2663442819298071],[127,88,79,0.26762611868214853],[127,89,64,0.2453192223360703],[127,89,65,0.24638858335187663],[127,89,66,0.24746915063387942],[127,89,67,0.24856211989408328],[127,89,68,0.24966864560373625],[127,89,69,0.25078983826534296],[127,89,70,0.25192676164295624],[127,89,71,0.25308042995070335],[127,89,72,0.25425180499956535],[127,89,73,0.2554417933023672],[127,89,74,0.256651243137079],[127,89,75,0.25788094156829555],[127,89,76,0.2591316114269917],[127,89,77,0.26040390824852],[127,89,78,0.26169841716884645],[127,89,79,0.2630156497790445],[127,90,64,0.24014951344030402],[127,90,65,0.24124115626864198],[127,90,66,0.24234508136654662],[127,90,67,0.2434624632294832],[127,90,68,0.24459443447444373],[127,90,69,0.24574208313010915],[127,90,70,0.24690644988586216],[127,90,71,0.24808852529960934],[127,90,72,0.24928924696442817],[127,90,73,0.2505094966339979],[127,90,74,0.2517500973069158],[127,90,75,0.25301181026976405],[127,90,76,0.25429533209902483],[127,90,77,0.2556012916218117],[127,90,78,0.25693024683541243],[127,90,79,0.2582826817856623],[127,91,64,0.23486606746654043],[127,91,65,0.2359793385255107],[127,91,66,0.23710600209311283],[127,91,67,0.23824721123569065],[127,91,68,0.23940407647181328],[127,91,69,0.24057766308021017],[127,91,70,0.24176898836713462],[127,91,71,0.24297901889311047],[127,91,72,0.2442086676590814],[127,91,73,0.24545879125191777],[127,91,74,0.24673018694938675],[127,91,75,0.24802358978444622],[127,91,76,0.24933966956896603],[127,91,77,0.25067902787683705],[127,91,78,0.25204219498647135],[127,91,79,0.25342962678270603],[127,92,64,0.22947150866718097],[127,92,65,0.23060575000306727],[127,92,66,0.23175452772247215],[127,92,67,0.23291897325913222],[127,92,68,0.2341001747985445],[127,92,69,0.23529917460329558],[127,92,70,0.23651696629839813],[127,92,71,0.23775449211658883],[127,92,72,0.23901264010360695],[127,92,73,0.2402922412834087],[127,92,74,0.24159406678342182],[127,92,75,0.24291882491970562],[127,92,76,0.24426715824211137],[127,92,77,0.24563964053941362],[127,92,78,0.24703677380440692],[127,92,79,0.24845898515898768],[127,93,64,0.22396854299701927],[127,93,65,0.22512309280464904],[127,93,66,0.22629335588154276],[127,93,67,0.22748044183458144],[127,93,68,0.22868541629122396],[127,93,69,0.22990929824184747],[127,93,70,0.23115305734267527],[127,93,71,0.23241761117924647],[127,93,72,0.23370382249044785],[127,93,73,0.23501249635305954],[127,93,74,0.2363443773269247],[127,93,75,0.23770014656060084],[127,93,76,0.23908041885759573],[127,93,77,0.24048573970315168],[127,93,78,0.24191658225157753],[127,93,79,0.24337334427414486],[127,94,64,0.21835995662308066],[127,94,65,0.21953414977011637],[127,94,66,0.2207252654332933],[127,94,67,0.22193439120776226],[127,94,68,0.22316256994782163],[127,94,69,0.2244107971258798],[127,94,70,0.2256800181525906],[127,94,71,0.22697112565811156],[127,94,72,0.22828495673450644],[127,94,73,0.22962229013924323],[127,94,74,0.23098384345990108],[127,94,75,0.2323702702399389],[127,94,76,0.23378215706563044],[127,94,77,0.2352200206141325],[127,94,78,0.2366843046626811],[127,94,79,0.2381753770589355],[127,95,64,0.2126486143772452],[127,95,65,0.21384178293192113],[127,95,66,0.21505311493660306],[127,95,67,0.21628367579934166],[127,95,68,0.21753448539614761],[127,95,69,0.2188065154461875],[127,95,70,0.22010068684873546],[127,95,71,0.2214178669818334],[127,95,72,0.2227588669626781],[127,95,73,0.22412443886968847],[127,95,74,0.22551527292636664],[127,95,75,0.22693199464680275],[127,95,76,0.22837516194293256],[127,95,77,0.2298452621935102],[127,95,78,0.23134270927479478],[127,95,79,0.23286784055296716],[127,96,64,0.20683745815192928],[127,96,65,0.20804893191375173],[127,96,66,0.20927984104823305],[127,96,67,0.21053122861058332],[127,96,68,0.21180409130354394],[127,96,69,0.21309937686842173],[127,96,70,0.21441798143846535],[127,96,71,0.21576074685453522],[127,96,72,0.217128457943087],[127,96,73,0.21852183975641826],[127,96,74,0.2199415547752977],[127,96,75,0.22138820007382187],[127,96,76,0.22286230444660993],[127,96,77,0.2243643254983005],[127,96,78,0.2258946466953463],[127,96,79,0.22745357438012692],[127,97,64,0.20092950523869857],[127,97,65,0.20215861227162285],[127,97,66,0.20340845686677633],[127,97,67,0.2046800595705371],[127,97,68,0.20597439372768145],[127,97,69,0.20729238288785967],[127,97,70,0.2086348981750012],[127,97,71,0.21000275561959963],[127,97,72,0.21139671345389827],[127,97,73,0.2128174693699259],[127,97,74,0.21426565774050277],[127,97,75,0.2157418468030583],[127,97,76,0.21724653580637698],[127,97,77,0.218780152120231],[127,97,78,0.22034304830789792],[127,97,79,0.22193549916158356],[127,98,64,0.19492784660965107],[127,98,65,0.19617391377725418],[127,98,66,0.19744205021843303],[127,98,67,0.19873325382460483],[127,98,68,0.20004847440830736],[127,98,69,0.201388611124717],[127,98,70,0.20275450985668325],[127,98,71,0.20414696056323134],[127,98,72,0.20556669459155397],[127,98,73,0.2070143819524397],[127,98,74,0.2084906285592607],[127,98,75,0.20999597343035992],[127,98,76,0.2115308858549535],[127,98,77,0.2130957625225084],[127,98,78,0.21469092461559286],[127,98,79,0.2163166148662204],[127,99,64,0.18883564514187112],[127,99,65,0.19009799864403476],[127,99,66,0.1913837818849048],[127,99,67,0.19269396996477944],[127,99,68,0.19402948900023698],[127,99,69,0.19539121356029315],[127,99,70,0.19677996406666454],[127,99,71,0.1981965041580887],[127,99,72,0.1996415380187217],[127,99,73,0.20111570767056025],[127,99,74,0.20261959023001413],[127,99,75,0.2041536951284646],[127,99,76,0.20571846129692684],[127,99,77,0.20731425431477768],[127,99,78,0.20894136352254405],[127,99,79,0.21059999909877325],[127,100,64,0.18265613378481177],[127,100,65,0.18393409969543073],[127,100,66,0.18523688377326836],[127,100,67,0.1865654382014172],[127,100,68,0.18792066524745005],[127,100,69,0.1893034147138123],[127,100,70,0.19071448135291025],[127,100,71,0.19215460224684605],[127,100,72,0.19362445415181834],[127,100,73,0.19512465080713765],[127,100,74,0.19665574020898058],[127,100,75,0.19821820184871936],[127,100,76,0.1998124439159456],[127,100,77,0.20143880046614715],[127,100,78,0.2030975285530351],[127,100,79,0.20478880532554328],[127,101,64,0.17639261367044062],[127,101,65,0.1776855184756761],[127,101,66,0.1790046570276656],[127,101,67,0.1803509584763789],[127,101,68,0.18172530109812984],[127,101,69,0.18312850975979833],[127,101,70,0.18456135334833923],[127,101,71,0.18602454216552594],[127,101,72,0.18751872528795066],[127,101,73,0.189044487892227],[127,101,74,0.19060234854552316],[127,101,75,0.19219275646125955],[127,101,76,0.19381608872008815],[127,101,77,0.19547264745611703],[127,101,78,0.19716265700837393],[127,101,79,0.1988862610375312],[127,102,64,0.17004845216646503],[127,102,65,0.1713556233030546],[127,102,66,0.17269047008312188],[127,102,67,0.17405389851785363],[127,102,68,0.1754467627609544],[127,102,69,0.17686986258629128],[127,102,70,0.17832394083141556],[127,102,71,0.17980968080690884],[127,102,72,0.1813277036715754],[127,102,73,0.1828785657734266],[127,102,74,0.18446275595658568],[127,102,75,0.18608069283394602],[127,102,76,0.18773272202570207],[127,102,77,0.18941911336371375],[127,102,78,0.19114005806170015],[127,102,79,0.1928956658512847],[127,103,64,0.16362708087248246],[127,103,65,0.164947847265627],[127,103,66,0.16629775666134172],[127,103,67,0.16767769183671227],[127,103,68,0.16908848270249155],[127,103,69,0.17053090379375807],[127,103,70,0.17200567172704323],[127,103,71,0.17351344262387108],[127,103,72,0.1750548095007351],[127,103,73,0.17663029962545412],[127,103,74,0.17824037184004227],[127,103,75,0.17988541384991763],[127,103,76,0.1815657394795755],[127,103,77,0.1832815858946843],[127,103,78,0.1850331107905998],[127,103,79,0.18682038954732105],[127,104,64,0.15713199355889296],[127,104,65,0.15846568615923295],[127,104,66,0.1598300137083158],[127,104,67,0.1612258356642277],[127,104,68,0.16265395758553142],[127,104,69,0.16411512863453187],[127,104,70,0.16561003904759836],[127,104,71,0.16713931757248945],[127,104,72,0.16870352887270296],[127,104,73,0.17030317089879532],[127,104,74,0.1719386722268041],[127,104,75,0.1736103893635968],[127,104,76,0.17531860401927546],[127,104,77,0.177063520346592],[127,104,78,0.17884526214737084],[127,104,79,0.18066387004596296],[127,105,64,0.15056674404889137],[127,105,65,0.15191269636809168],[127,105,66,0.15329079927406175],[127,105,67,0.15470188883147945],[127,105,68,0.15614674614867619],[127,105,69,0.15762609489309837],[127,105,70,0.15914059877441716],[127,105,71,0.1606908589952259],[127,105,72,0.16227741166935533],[127,105,73,0.16390072520774196],[127,105,74,0.16556119767199212],[127,105,75,0.1672591540954595],[127,105,76,0.16899484377196566],[127,105,77,0.17076843751212178],[127,105,78,0.17258002486724527],[127,105,79,0.17442961132089646],[127,106,64,0.1439349440433898],[127,106,65,0.14529249268784677],[127,106,66,0.14668373033434168],[127,106,67,0.14810946959029148],[127,106,68,0.14957046702703347],[127,106,69,0.15106742070707663],[127,106,70,0.1526009676795857],[127,106,71,0.15417168144404408],[127,106,72,0.1557800693821182],[127,106,73,0.15742657015766615],[127,106,74,0.15911155108502884],[127,106,75,0.1608353054654208],[127,106,76,0.16259804989155324],[127,106,77,0.16439992152044564],[127,106,78,0.16624097531441961],[127,106,79,0.16812118125030118],[127,107,64,0.1372402608886919],[127,107,65,0.1386087460908803],[127,107,66,0.1400124805541872],[127,107,67,0.14145225337552814],[127,107,68,0.14292879651384238],[127,107,69,0.14444278232872232],[127,107,70,0.1459948210878641],[127,107,71,0.1475854584432832],[127,107,72,0.14921517287631758],[127,107,73,0.1508843731113635],[127,107,74,0.15259339549847734],[127,107,75,0.15434250136466665],[127,107,76,0.156131874333999],[127,107,77,0.15796161761648492],[127,107,78,0.15983175126573157],[127,107,79,0.16174220940539003],[127,108,64,0.1304864152872569],[127,108,65,0.13186518143423276],[127,108,66,0.13328077799356125],[127,108,67,0.13473397050908315],[127,108,68,0.1362254662633619],[127,108,69,0.13775591182728453],[127,108,70,0.13932589057906886],[127,108,71,0.1409359201926203],[127,108,72,0.14258645009526383],[127,108,73,0.14427785889478956],[127,108,74,0.146010451775955],[127,108,75,0.14778445786625732],[127,108,76,0.14960002757111146],[127,108,77,0.15145722987838617],[127,108,78,0.1533560496322965],[127,108,79,0.15529638477667573],[127,109,64,0.12367717895138997],[127,109,65,0.12506557510996424],[127,109,66,0.12649240275499968],[127,109,67,0.12795840384539892],[127,109,68,0.12946426093486324],[127,109,69,0.1310105947320564],[127,109,70,0.13259796163076037],[127,109,71,0.1342268512099637],[127,109,72,0.13589768370390837],[127,109,73,0.13761080744203436],[127,109,74,0.1393664962589648],[127,109,75,0.1411649468743454],[127,109,76,0.14300627624267154],[127,109,77,0.14489051887305937],[127,109,78,0.14681762411895527],[127,109,79,0.14878745343781014],[127,110,64,0.11681637219968216],[127,110,65,0.1182137526377825],[127,110,66,0.11965118457305168],[127,110,67,0.12112938635834058],[127,110,68,0.12264901577754828],[127,110,69,0.12421066761594263],[127,110,70,0.12581487120105628],[127,110,71,0.12746208791409752],[127,110,72,0.12915270867190093],[127,110,73,0.13088705137935752],[127,110,74,0.13266535835246857],[127,110,75,0.13448779371183428],[127,110,76,0.13635444074671277],[127,110,77,0.1382652992496048],[127,110,78,0.1402202828213598],[127,110,79,0.14221921614682692],[127,111,64,0.10990786149654352],[127,111,65,0.11131358620028003],[127,111,66,0.11276100034586534],[127,111,67,0.1142507986697675],[127,111,68,0.11578361415673805],[127,111,69,0.11736001561988668],[127,111,70,0.11898050525191128],[127,111,71,0.12064551614742158],[127,111,72,0.12235540979638432],[127,111,73,0.12411047354862614],[127,111,74,0.1259109180495417],[127,111,75,0.12775687464681523],[127,111,76,0.12964839276829293],[127,111,77,0.1315854372709615],[127,111,78,0.13356788576102635],[127,111,79,0.13559552588511742],[127,112,64,0.10295555693466257],[127,112,65,0.10436899212061279],[127,112,66,0.10582577160875012],[127,112,67,0.10732656651963429],[127,112,68,0.10887198502116163],[127,112,69,0.11046256991799008],[127,112,70,0.11209879621269875],[127,112,71,0.11378106863861875],[127,112,72,0.11550971916436165],[127,112,73,0.11728500446998524],[127,112,74,0.11910710339494174],[127,112,75,0.12097611435761613],[127,112,76,0.1228920527465946],[127,112,77,0.12485484828361548],[127,112,78,0.12686434235819832],[127,112,79,0.12892028533397776],[127,113,64,0.09596340966021105],[127,113,65,0.09738392828244219],[127,113,66,0.0988494619495357],[127,113,67,0.100360658177444],[127,113,68,0.10191810031117021],[127,113,69,0.10352230512314603],[127,113,70,0.10517372038391692],[127,113,71,0.10687272240507406],[127,113,72,0.10861961355446098],[127,113,73,0.11041461974358996],[127,113,74,0.11225788788741836],[127,113,75,0.11414948333628921],[127,113,76,0.11608938728017759],[127,113,77,0.1180774941251938],[127,113,78,0.12011360884234185],[127,113,79,0.12219744428855595],[127,114,64,0.08893540924116711],[127,114,65,0.09036239149250891],[127,114,66,0.09183607436609992],[127,114,67,0.09335708179542102],[127,114,68,0.09492597230824251],[127,114,69,0.09654323663355552],[127,114,70,0.09820929528138261],[127,114,71,0.0999244960954091],[127,114,72,0.10168911177845974],[127,114,73,0.10350333739075995],[127,114,74,0.1053672878211267],[127,114,75,0.10728099523089946],[127,114,76,0.10924440647074685],[127,114,77,0.11125738047030381],[127,114,78,0.11331968560063616],[127,114,79,0.11543099700955578],[127,115,64,0.08187558097844283],[127,115,65,0.0833084147855302],[127,115,66,0.084789648565752],[127,115,67,0.08631988270309504],[127,115,68,0.08789965092547325],[127,115,69,0.08952941791981661],[127,115,70,0.09120957692061127],[127,115,71,0.09294044727182732],[127,115,72,0.09472227196226513],[127,115,73,0.09655521513425075],[127,115,74,0.09843935956583671],[127,115,75,0.10037470412630711],[127,115,76,0.10236116120513084],[127,115,77,0.10439855411431465],[127,115,78,0.10648661446415225],[127,115,79,0.10862497951239503],[127,116,64,0.07478798316005547],[127,116,65,0.0762260646716546],[127,116,66,0.07771425820671074],[127,116,67,0.07925314064353228],[127,116,68,0.08084322093928026],[127,116,69,0.08248493775282295],[127,116,70,0.0841786570416106],[127,116,71,0.08592466963250284],[127,116,72,0.08772318876658125],[127,116,73,0.08957434761787819],[127,116,74,0.09147819678617636],[127,116,75,0.0934347017636808],[127,116,76,0.09544374037570275],[127,116,77,0.09750510019531311],[127,116,78,0.09961847593195589],[127,116,79,0.10178346679405126],[127,117,64,0.06767670425801914],[127,117,65,0.06911943832615364],[127,117,66,0.07061400808135276],[127,117,67,0.07216096695089058],[127,117,68,0.0737607991620085],[127,117,69,0.0754139173721497],[127,117,70,0.07712066027377418],[127,117,71,0.07888129017369294],[127,117,72,0.08069599054694832],[127,117,73,0.0825648635651729],[127,117,74,0.0844879275995859],[127,117,75,0.08646511469841994],[127,117,76,0.08849626803892802],[127,117,77,0.09058113935391865],[127,117,78,0.09271938633281718],[127,117,79,0.0949105699972787],[127,118,64,0.06054586006834056],[127,118,65,0.06199266072173554],[127,118,66,0.06349303124161859],[127,118,67,0.06504750166968482],[127,118,68,0.06665653155581647],[127,118,69,0.06832050759531133],[127,118,70,0.07003974124125317],[127,118,71,0.07181446629195859],[127,118,72,0.0736448364535306],[127,118,73,0.07553092287745039],[127,118,74,0.0774727116733655],[127,118,75,0.07947010139686911],[127,118,76,0.08152290051241667],[127,118,77,0.08363082483133305],[127,118,78,0.08579349492490262],[127,118,79,0.08801043351257332],[127,119,64,0.05339959079393736],[127,119,65,0.05484988170329491],[127,119,66,0.05635548606638907],[127,119,67,0.05791691061557791],[127,119,68,0.05953459028765784],[127,119,69,0.06120888586770684],[127,119,70,0.06294008160862447],[127,119,71,0.06472838282630516],[127,119,72,0.0665739134704727],[127,119,73,0.06847671367110847],[127,119,74,0.07043673726063449],[127,119,75,0.072453849271639],[127,119,76,0.07452782341029857],[127,119,77,0.07665833950544465],[127,119,78,0.07884498093326997],[127,119,79,0.08108723201770257],[127,120,64,0.046242058070297964],[127,120,65,0.04769527300492188],[127,120,66,0.0492055532706559],[127,120,67,0.05077338237751777],[127,120,68,0.052399170725184685],[127,120,69,0.05408325325307528],[127,120,70,0.055825887066679514],[127,120,71,0.057627249040073714],[127,120,72,0.05948743339464879],[127,120,73,0.06140644925398392],[127,120,74,0.0633842181750256],[127,120,75,0.06542057165536236],[127,120,76,0.06751524861674701],[127,120,77,0.06966789286481478],[127,120,78,0.0718780505249933],[127,120,79,0.07414516745463262],[127,121,64,0.03907744193424528],[127,121,65,0.040533025209531004],[127,121,66,0.04204743285684698],[127,121,67,0.04362112526158324],[127,121,68,0.04525448837392876],[127,121,69,0.04694783136482028],[127,121,70,0.04870138425868781],[127,121,71,0.05051529554293144],[127,121,72,0.05238962975415873],[127,121,73,0.05432436504111521],[127,121,74,0.05631939070446884],[127,121,75,0.058374504713236464],[127,121,76,0.06048941119800455],[127,121,77,0.06266371792089487],[127,121,78,0.06489693372226835],[127,121,79,0.06718846594419658],[127,122,64,0.031909937735623006],[127,122,65,0.033367344650928166],[127,122,66,0.034885341008124515],[127,122,67,0.03646436417635601],[127,122,68,0.03810477575558141],[127,122,69,0.03980685923802463],[127,122,70,0.0415708176469633],[127,122,71,0.04339677115279328],[127,122,72,0.04528475466639592],[127,122,73,0.04723471540974189],[127,122,74,0.04924651046389106],[127,122,75,0.05131990429417799],[127,122,76,0.053454566252735036],[127,122,77,0.05565006805830286],[127,122,78,0.05790588125332219],[127,122,79,0.06022137463833588],[127,123,64,0.0247437529917236],[127,123,65,0.0262024502581355],[127,123,66,0.027723506923476082],[127,123,67,0.02930733745963915],[127,123,68,0.030954279227193626],[127,123,69,0.03266459014197309],[127,123,70,0.03443844631954307],[127,123,71,0.036275939697481885],[127,123,72,0.03817707563550354],[127,123,73,0.040141770493354545],[127,123,74,0.04216984918664535],[127,123,75,0.044261042720406985],[127,123,76,0.04641498570052072],[127,123,77,0.04863121382297708],[127,123,78,0.05090916134095136],[127,123,79,0.05324815850973086],[127,124,64,0.0175831041848179],[127,124,65,0.019042570342334808],[127,124,66,0.020566169594958383],[127,124,67,0.02215429364688193],[127,124,68,0.02380725574165221],[127,124,69,0.025525288333544505],[127,124,70,0.027308540737347897],[127,124,71,0.029157076756496925],[127,124,72,0.03107087228958072],[127,124,73,0.03304981291515663],[127,124,74,0.03509369145503538],[127,124,75,0.03720220551582121],[127,124,76,0.03937495500886301],[127,124,77,0.041611439648563286],[127,124,78,0.04391105642904081],[127,124,79,0.046273097079176706],[127,125,64,0.010432213502612364],[127,125,65,0.01189193932625321],[127,125,66,0.013417574526919829],[127,125,67,0.015009488181135566],[127,125,68,0.016667969549259865],[127,125,69,0.018393225751296205],[127,125,70,0.02018537942164167],[127,125,71,0.022044466342709845],[127,125,72,0.023970433057460494],[127,125,73,0.025963134460761594],[127,125,74,0.02802233136975074],[127,125,75,0.030147688072982293],[127,125,76,0.032338769858510474],[127,125,77,0.03459504052086182],[127,125,78,0.0369158598468885],[127,125,79,0.03930048108053319],[127,126,64,0.0032953055214419713],[127,126,65,0.004754794415802732],[127,126,66,0.006281970397008174],[127,126,67,0.007877180064350231],[127,126,68,0.00954068884022874],[127,126,69,0.011272678650053214],[127,126,70,0.013073245581604942],[127,126,71,0.014942397523799555],[127,126,72,0.016880051784875172],[127,126,73,0.018886032689939047],[127,126,74,0.020960069158037054],[127,126,75,0.02310179225852993],[127,126,76,0.025310732746929965],[127,126,77,0.02758631858015015],[127,126,78,0.029927872411157574],[127,126,79,0.03233460906306018],[127,127,64,-0.0038233961674302153],[127,127,65,-0.002364627785659823],[127,127,66,-8.363943406606289E-4],[127,127,67,7.616284503828563E-4],[127,127,68,0.0024296823284564173],[127,127,69,0.004167924176369353],[127,127,70,0.005976423682390153],[127,127,71,0.00785516098379635],[127,127,72,0.009804024290371194],[127,127,73,0.011822807487774867],[127,127,74,0.013911207720955776],[127,127,75,0.01606882295738732],[127,127,76,0.018295149530282773],[127,127,77,0.02058957966174002],[127,127,78,0.022951398965807335],[127,127,79,0.02537978393150342],[127,128,64,-0.010919672388589707],[127,128,65,-0.009462094720630976],[127,128,66,-0.00793327491036544],[127,128,67,-0.006332910820469162],[127,128,68,-0.004660784223600389],[127,128,69,-0.002916763115321186],[127,128,70,-0.0011008040465273483],[127,128,71,7.870455245494457E-4],[127,128,72,0.0027466448607967875],[127,128,73,0.004777757555064044],[127,128,74,0.00688004911955864],[127,128,75,0.00905308455557674],[127,128,76,0.011296325903726645],[127,128,77,0.013609129774592943],[127,128,78,0.015990744859834427],[127,128,79,0.018440309423747303],[127,129,64,-0.017989311870507785],[127,129,65,-0.01653338137850513],[127,129,66,-0.015004433727844102],[127,129,67,-0.013402188745585963],[127,129,68,-0.011726451539131544],[127,129,69,-0.009977114806044685],[127,129,70,-0.00815416116287726],[127,129,71,-0.006257665493058728],[127,129,72,-0.004287797313823116],[127,129,73,-0.0022448231622432813],[127,129,74,-1.2910900020368654E-4],[127,129,75,0.0020588773614674816],[127,129,76,0.00431856381986373],[127,129,77,0.006649271517814359],[127,129,78,0.00905021236263659],[127,129,79,0.011520486525861795],[127,130,64,-0.025028114790475064],[127,130,65,-0.023574273853996908],[127,130,66,-0.022045643971211115],[127,130,67,-0.020441966742440143],[127,130,68,-0.018763070419903882],[127,130,69,-0.01700887221476055],[127,130,70,-0.01517938062264923],[127,130,71,-0.013274697767796995],[127,130,72,-0.011295021765662439],[127,130,73,-0.009240649104187426],[127,130,74,-0.007111977043485429],[127,130,75,-0.004909506034190936],[127,130,76,-0.002633842154309729],[127,130,77,-2.856995646209892E-4],[127,130,78,0.0021340970173598928],[127,130,79,0.004624609824892101],[127,131,64,-0.03203189637661252],[127,131,65,-0.030580572963126884],[127,131,66,-0.02905269320989501],[127,131,67,-0.027448020289480124],[127,131,68,-0.025766405398088832],[127,131,69,-0.0240077900601412],[127,131,70,-0.022172208450844444],[127,131,71,-0.020259789736841505],[127,131,72,-0.01827076043489817],[127,131,73,-0.0162054467887065],[127,131,74,-0.014064277163631012],[127,131,75,-0.011847784459620536],[127,131,76,-0.009556608542127032],[127,131,77,-0.00719149869108382],[127,131,78,-0.004753316067948821],[127,131,79,-0.0022430362007812565],[127,132,64,-0.03899649056713672],[127,132,65,-0.037548097916945467],[127,132,66,-0.036021387091785484],[127,132,67,-0.03441614262566839],[127,132,68,-0.03273223844717288],[127,132,69,-0.03096964018184445],[127,132,70,-0.02912840747211165],[127,132,71,-0.027208696314787728],[127,132,72,-0.02521076141612466],[127,132,73,-0.023134958564495434],[127,132,74,-0.02098174702053157],[127,132,75,-0.01875169192493753],[127,132,76,-0.01644546672382663],[127,132,77,-0.014063855611626375],[127,132,78,-0.011607755991562496],[127,132,79,-0.009078180953687287],[127,133,64,-0.04591775372652818],[127,133,65,-0.04447269005264198],[127,133,66,-0.042947553088227175],[127,133,67,-0.04134214850831375],[127,133,68,-0.03965637275158851],[127,133,69,-0.03789021532091741],[127,133,70,-0.0360437611009049],[127,133,71,-0.03411719269255775],[127,133,72,-0.03211079276501916],[127,133,73,-0.030024946424450416],[127,133,74,-0.027860143599885867],[127,133,75,-0.02561698144628588],[127,133,76,-0.02329616676462809],[127,133,77,-0.020898518439086744],[127,133,78,-0.018424969891311704],[127,133,79,-0.01587657155176847],[127,134,64,-0.05279156841877364],[127,134,65,-0.05135021662221306],[127,134,66,-0.04982704429703866],[127,134,67,-0.04822187802937583],[127,134,68,-0.0465346365352477],[127,134,69,-0.044765332959509685],[127,134,70,-0.042914077191344324],[127,134,71,-0.04098107819638519],[127,134,72,-0.038966646365440005],[127,134,73,-0.03687119587988408],[127,134,74,-0.03469524709355354],[127,134,75,-0.03243942893136198],[127,134,76,-0.030104481304481068],[127,134,77,-0.027691257542135306],[127,134,78,-0.02520072684002106],[127,134,79,-0.02263397672531353],[127,135,64,-0.05961384723786545],[127,135,65,-0.05817657463887138],[127,135,66,-0.05665574330373957],[127,135,67,-0.05505120049042189],[127,135,68,-0.053362886949154364],[127,135,69,-0.05159083922007823],[127,135,70,-0.04973519194695597],[127,135,71,-0.047796180207049455],[127,135,72,-0.04577414185712847],[127,135,73,-0.04366951989568357],[127,135,74,-0.04148286484116903],[127,135,75,-0.03921483712650353],[127,135,76,-0.03686620950966657],[127,135,77,-0.034437869500441476],[127,135,78,-0.031930821803314746],[127,135,79,-0.029346190776496583],[127,136,64,-0.06638053669519761],[127,136,65,-0.06494769478083662],[127,136,66,-0.06342956610061923],[127,136,67,-0.06182601833587542],[127,136,68,-0.06013701401773697],[127,136,69,-0.05836261282371902],[127,136,70,-0.056502973889934194],[127,136,71,-0.05455835813900822],[127,136,72,-0.052529130623665155],[127,136,73,-0.05041576288605787],[127,136,74,-0.04821883533266591],[127,136,75,-0.04593903962499213],[127,136,76,-0.043577181085895034],[127,136,77,-0.04113418112160494],[127,136,78,-0.03861107965943822],[127,136,79,-0.03600903760117102],[127,137,64,-0.07308762116404632],[127,137,65,-0.07165954535269059],[127,137,66,-0.07014446606384361],[127,137,67,-0.06854227114474576],[127,137,68,-0.06685294464408931],[127,137,69,-0.065076569107819],[127,137,70,-0.06321332789011247],[127,137,71,-0.06126350747961029],[127,137,72,-0.0592274998408614],[127,137,73,-0.057105804771058755],[127,137,74,-0.054899032271893855],[127,137,75,-0.052607904936750605],[127,137,76,-0.05023326035308551],[127,137,77,-0.04777605352003844],[127,137,78,-0.04523735928128547],[127,137,79,-0.04261837477309993],[127,138,64,-0.07973112688129547],[127,138,65,-0.07830813630446765],[127,138,66,-0.07679643798875213],[127,138,67,-0.07519593968099714],[127,138,68,-0.07350664667428108],[127,138,69,-0.07172866410318568],[127,138,70,-0.06986219925380432],[127,138,71,-0.06790756388855246],[127,138,72,-0.06586517658574831],[127,138,73,-0.06373556509403788],[127,138,74,-0.06151936870149166],[127,138,75,-0.059217340619596714],[127,138,76,-0.05683035038198714],[127,138,77,-0.05435938625795911],[127,138,78,-0.05180555768078465],[127,138,79,-0.04917009769078373],[127,139,64,-0.08630712600604962],[127,139,65,-0.08488952330810962],[127,139,66,-0.08338152218299366],[127,139,67,-0.0817830500022021],[127,139,68,-0.08009413302037771],[127,139,69,-0.07831489867029673],[127,139,70,-0.07644557787215489],[127,139,71,-0.07448650735721896],[127,139,72,-0.07243813200580729],[127,139,73,-0.07030100719967969],[127,139,74,-0.06807580118865675],[127,139,75,-0.06576329747169951],[127,139,76,-0.0633643971922857],[127,139,77,-0.060880121548134936],[127,139,78,-0.05831161421529185],[127,139,79,-0.0556601437865305],[127,140,64,-0.0928117407354404],[127,140,65,-0.09139981189160307],[127,140,66,-0.08989580861780433],[127,140,67,-0.08829967762678259],[127,140,68,-0.08661146584247859],[127,140,69,-0.08483132269497629],[127,140,70,-0.08295950242931183],[127,140,71,-0.08099636642821373],[127,140,72,-0.078942385548745],[127,140,73,-0.07679814247291883],[127,140,74,-0.07456433407211749],[127,140,75,-0.07224177378553742],[127,140,76,-0.06983139401250194],[127,140,77,-0.06733424851869052],[127,140,78,-0.06475151485629638],[127,140,79,-0.06208449679807315],[127,141,64,-0.09924114747739499],[127,141,65,-0.09783516163056039],[127,141,66,-0.09633544113719517],[127,141,67,-0.09474195175960998],[127,141,68,-0.09305476078954034],[127,141,69,-0.09127403934326783],[127,141,70,-0.08940006467018213],[127,141,71,-0.0874332224748543],[127,141,72,-0.08537400925258598],[127,141,73,-0.0832230346385121],[127,141,74,-0.08098102377008021],[127,141,75,-0.07864881966313542],[127,141,76,-0.07622738560144915],[127,141,77,-0.07371780753974078],[127,141,78,-0.07112129652020427],[127,141,79,-0.0684391911025023],[127,142,64,-0.10559158108067057],[127,142,65,-0.10419179039755067],[127,142,66,-0.1026966217253582],[127,142,67,-0.1011060595762664],[127,142,68,-0.09942019129929103],[127,142,69,-0.09763920937580484],[127,142,70,-0.09576341372808006],[127,142,71,-0.09379321404092489],[127,142,72,-0.09172913209638112],[127,142,73,-0.08957180412156218],[127,142,74,-0.0873219831494485],[127,142,75,-0.08498054139287636],[127,142,76,-0.0825484726315544],[127,142,77,-0.08002689461215706],[127,142,78,-0.07741705146150801],[127,142,79,-0.07472031611281715],[127,143,64,-0.11185933912179635],[127,143,65,-0.11046597866882335],[127,143,66,-0.10897561483192464],[127,143,67,-0.10738825056560852],[127,143,68,-0.10570399295687327],[127,143,69,-0.1039230555213233],[127,143,70,-0.10204576051190661],[127,143,71,-0.10007254124033815],[127,143,72,-0.09800394441117832],[127,143,73,-0.0958406324686425],[127,143,74,-0.09358338595596294],[127,143,75,-0.09123310588753497],[127,143,76,-0.08879081613368478],[127,143,77,-0.08625766581810568],[127,143,78,-0.08363493172797964],[127,143,79,-0.0809240207367401],[127,144,64,-0.11804078624909797],[127,144,65,-0.11665407388859694],[127,144,66,-0.11516875175525931],[127,144,67,-0.11358484093081156],[127,144,68,-0.11190246791239655],[127,144,69,-0.11012186690948944],[127,144,70,-0.1082433821530362],[127,144,71,-0.10626747021687699],[127,144,72,-0.10419470235142847],[127,144,73,-0.10202576682969422],[127,144,74,-0.09976147130543267],[127,144,75,-0.09740274518370629],[127,144,76,-0.09495064200365466],[127,144,77,-0.09240634183353857],[127,144,78,-0.08977115367806665],[127,144,79,-0.08704651789796725],[127,145,64,-0.12413235858395877],[127,145,65,-0.12275249489106743],[127,145,66,-0.12127243508393548],[127,145,67,-0.11969221804904107],[127,145,68,-0.11801198935754542],[127,145,69,-0.11623200356319663],[127,145,70,-0.1143526265120639],[127,145,71,-0.11237433766416838],[127,145,72,-0.11029773242697893],[127,145,73,-0.10812352450084806],[127,145,74,-0.10585254823621126],[127,145,75,-0.10348576100278006],[127,145,76,-0.10102424557056511],[127,145,77,-0.09846921250277996],[127,145,78,-0.09582200256063866],[127,145,79,-0.0930840891200041],[127,146,64,-0.13013056817899527],[127,146,65,-0.12875773637981958],[127,146,66,-0.12728314319608036],[127,146,67,-0.12570684498944196],[127,146,68,-0.12402900606093248],[127,146,69,-0.12224990095001287],[127,146,70,-0.12036991674509434],[127,146,71,-0.1183895554055725],[127,146,72,-0.1163094360953385],[127,146,73,-0.1141302975278542],[127,146,74,-0.1118530003226017],[127,146,75,-0.10947852937314861],[127,146,76,-0.10700799622665913],[127,146,77,-0.10444264147490212],[127,146,78,-0.10178383715677253],[127,146,79,-0.09903308917227949],[127,147,64,-0.13603200753331834],[127,147,65,-0.1346663734648006],[127,147,66,-0.13319743481674617],[127,147,67,-0.13162526508960048],[127,147,68,-0.12995004696235235],[127,147,69,-0.12817207459294166],[127,147,70,-0.12629175592973574],[127,147,71,-0.12430961503415039],[127,147,72,-0.12222629441437527],[127,147,73,-0.12004255737028346],[127,147,74,-0.11775929034935029],[127,147,75,-0.11537750531380386],[127,147,76,-0.11289834211885474],[127,147,77,-0.11032307090204474],[127,147,78,-0.10765309448373483],[127,147,79,-0.10488995077868624],[127,148,64,-0.14183335416501797],[127,148,65,-0.14047506625700745],[127,148,66,-0.13901195363346375],[127,148,67,-0.13744410659063244],[127,148,68,-0.13577172582609054],[127,148,69,-0.13399512474064645],[127,148,70,-0.13211473175094735],[127,148,71,-0.13013109261285993],[127,148,72,-0.1280448727555944],[127,148,73,-0.12585685962664717],[127,148,74,-0.12356796504738032],[127,148,75,-0.12117922757947808],[127,148,76,-0.1186918149021059],[127,148,77,-0.11610702619983004],[127,148,78,-0.11342629456130904],[127,148,79,-0.11065118938871066],[127,149,64,-0.1475313752405799],[127,149,65,-0.14618056452058747],[127,149,66,-0.14472343296966883],[127,149,67,-0.14316008733059515],[127,149,68,-0.14149074595298217],[127,149,69,-0.13971574109683504],[127,149,70,-0.13783552124643916],[127,149,71,-0.13585065343467273],[127,149,72,-0.13376182557770155],[127,149,73,-0.13156984882013467],[127,149,74,-0.1292756598904652],[127,149,75,-0.12688032346702416],[127,149,76,-0.12438503455428573],[127,149,77,-0.12179112086957211],[127,149,78,-0.11910004524017337],[127,149,79,-0.11631340801083845],[127,150,64,-0.15312293226137264],[127,150,65,-0.15177971238249188],[127,150,66,-0.1503287005161522],[127,150,67,-0.14877001949636537],[127,150,68,-0.14710390495136894],[127,150,69,-0.1453307076089495],[127,150,70,-0.1434508956117707],[127,150,71,-0.1414650568427689],[127,150,72,-0.1393739012605859],[127,150,73,-0.13717826324511506],[127,150,74,-0.13487910395298008],[127,150,75,-0.13247751368318106],[127,150,76,-0.12997471425274487],[127,150,77,-0.12737206138242396],[127,150,78,-0.12467104709246346],[127,150,79,-0.12187330210839065],[127,151,64,-0.15860498580736937],[127,151,65,-0.1572694530998523],[127,151,66,-0.15582468312069298],[127,151,67,-0.15427081443415036],[127,151,68,-0.15260809956711074],[127,151,69,-0.15083690731632415],[127,151,70,-0.1489577250653037],[127,151,71,-0.14697116111095332],[127,151,72,-0.14487794699989365],[127,151,73,-0.14267893987456137],[127,151,74,-0.1403751248289007],[127,151,75,-0.13796761727388407],[127,151,76,-0.13545766531269599],[127,151,77,-0.1328466521256264],[127,151,78,-0.13013609836469286],[127,151,79,-0.12732766455794542],[127,152,64,-0.1639746003377882],[127,152,65,-0.16264683388475343],[127,152,66,-0.1612084116355592],[127,152,67,-0.15965948751831016],[127,152,68,-0.15800033057234364],[127,152,69,-0.15623132725749656],[127,152,70,-0.15435298377270434],[127,152,71,-0.15236592838399898],[127,152,72,-0.15027091376187274],[127,152,73,-0.1480688193280849],[127,152,74,-0.14576065361173107],[127,152,75,-0.1433475566148097],[127,152,76,-0.14083080218711952],[127,152,77,-0.13821180041054004],[127,152,78,-0.13549209999270506],[127,152,79,-0.13267339067003114],[127,153,64,-0.1692289490488258],[127,153,65,-0.16790901078658949],[127,153,66,-0.16647702582305024],[127,153,67,-0.16493316307867],[127,153,68,-0.1632777077131503],[127,153,69,-0.16151106343684107],[127,153,70,-0.15963375483115672],[127,153,71,-0.15764642967807252],[127,153,72,-0.15554986129866077],[127,153,73,-0.15334495090075106],[127,153,74,-0.15103272993553118],[127,153,75,-0.14861436246332071],[127,153,76,-0.14609114752835628],[127,153,77,-0.14346452154263678],[127,153,78,-0.1407360606788396],[127,153,79,-0.13790748327226976],[127,154,64,-0.1743653187885943],[127,154,65,-0.173053253632103],[127,154,66,-0.17162777931919382],[127,154,67,-0.17008907938643314],[127,154,68,-0.16843745471626181],[127,154,69,-0.16667332585064443],[127,154,70,-0.16479723531341073],[127,154,71,-0.16280984994136727],[127,154,72,-0.1607119632241344],[127,154,73,-0.15850449765279295],[127,154,74,-0.15618850707716236],[127,154,75,-0.15376517907193332],[127,154,76,-0.15123583731150514],[127,154,77,-0.14860194395356274],[127,154,78,-0.14586510203141956],[127,154,79,-0.14302705785507297],[127,155,64,-0.17938111502900722],[127,155,65,-0.17807695102285825],[127,155,66,-0.17665804465533708],[127,155,67,-0.17512459369843447],[127,155,68,-0.17347691435452828],[127,155,69,-0.17171544357235824],[127,155,70,-0.16984074137139638],[127,155,71,-0.1678534931746769],[127,155,72,-0.1657545121500532],[127,155,73,-0.16354474155995746],[127,155,74,-0.16122525711948554],[127,155,75,-0.15879726936303962],[127,155,76,-0.15626212601936174],[127,155,77,-0.15362131439501236],[127,155,78,-0.15087646376630304],[127,155,79,-0.14802934777964416],[127,156,64,-0.18427386689473912],[127,156,65,-0.18297761539027357],[127,156,66,-0.1815653183377638],[127,156,67,-0.18003718735986785],[127,156,68,-0.17839355357128894],[127,156,69,-0.17663486989716304],[127,156,70,-0.17476171339954283],[127,156,71,-0.1727747876120469],[127,156,72,-0.17067492488263958],[127,156,73,-0.16846308872462257],[127,156,74,-0.16614037617565214],[127,156,75,-0.1637080201650205],[127,156,76,-0.1611673918890355],[127,156,77,-0.1585200031945465],[127,156,78,-0.15576750897063196],[127,156,79,-0.15291170954840527],[127,157,64,-0.1890412322493964],[127,157,65,-0.187752888108345],[127,157,66,-0.1863472259854727],[127,157,67,-0.1848244709656175],[127,157,68,-0.18318496866377687],[127,157,69,-0.18142918754597326],[127,157,70,-0.17955772125792968],[127,157,71,-0.17757129096162838],[127,157,72,-0.17547074767971216],[127,157,73,-0.17325707464780993],[127,157,74,-0.1709313896746052],[127,157,75,-0.16849494750987914],[127,157,76,-0.16594914222036905],[127,157,77,-0.16329550957348504],[127,157,78,-0.16053572942890304],[127,157,79,-0.1576716281379913],[127,158,64,-0.19368100283863077],[127,158,65,-0.19240054466380152],[127,158,66,-0.191001527525841],[127,158,67,-0.18948418957992696],[127,158,68,-0.18784889052528975],[127,158,69,-0.18609611392861936],[127,158,70,-0.18422646955500444],[127,158,71,-0.18224069570647727],[127,158,72,-0.18013966156812233],[127,158,73,-0.17792436956183422],[127,158,74,-0.17559595770754188],[127,158,75,-0.17315570199213104],[127,158,76,-0.17060501874590117],[127,158,77,-0.16794546702660818],[127,158,78,-0.16517875101110469],[127,158,79,-0.16230672239453692],[127,159,64,-0.1981911094903427],[127,159,65,-0.19691849988382992],[127,159,66,-0.195526122448339],[127,159,67,-0.1940142280145597],[127,159,68,-0.1923831899462749],[127,159,69,-0.19063350646635502],[127,159,70,-0.18876580299002077],[127,159,71,-0.18678083446544147],[127,159,72,-0.18467948772163234],[127,159,73,-0.1824627838237316],[127,159,74,-0.18013188043547412],[127,159,75,-0.17768807418909827],[127,159,76,-0.175132803062519],[127,159,77,-0.1724676487638176],[127,159,78,-0.1696943391230613],[127,159,79,-0.1668147504914127],[127,160,64,-0.20256962737206885],[127,160,65,-0.20130481322147076],[127,160,66,-0.19991905511636276],[127,160,67,-0.19841261616552908],[127,160,68,-0.19678588297442],[127,160,69,-0.1950393679737783],[127,160,70,-0.19317371175527487],[127,160,71,-0.19118968541422232],[127,160,72,-0.18908819289932666],[127,160,73,-0.18687027336956064],[127,160,74,-0.18453710355797737],[127,160,75,-0.18209000014269405],[127,160,76,-0.179530422124887],[127,160,77,-0.17685997321384161],[127,160,78,-0.17408040421907567],[127,160,79,-0.17119361544949274],[127,161,64,-0.20681478130534003],[127,161,65,-0.2055576940984648],[127,161,66,-0.20417852013699922],[127,161,67,-0.20267753440820457],[127,161,68,-0.2010551363335411],[127,161,69,-0.19931185209995883],[127,161,70,-0.19744833699794817],[127,161,71,-0.19546537776641504],[127,161,72,-0.19336389494435025],[127,161,73,-0.1911449452293671],[127,161,74,-0.1888097238429286],[127,161,75,-0.18635956690249766],[127,161,76,-0.18379595380044833],[127,161,77,-0.18112050958978132],[127,161,78,-0.1783350073766642],[127,161,79,-0.17544137071974997],[127,162,64,-0.21092495113711185],[127,162,65,-0.20967550730565965],[127,162,66,-0.2083028677888058],[127,162,67,-0.20680731905087968],[127,162,68,-0.20518927290136368],[127,162,69,-0.20344926882887016],[127,162,70,-0.20158797634163705],[127,162,71,-0.19960619731460916],[127,162,72,-0.1975048683430708],[127,162,73,-0.19528506310290816],[127,162,74,-0.1929479947173196],[127,162,75,-0.1904950181302083],[127,162,76,-0.1879276324860948],[127,162,77,-0.18524748351659526],[127,162,78,-0.1824563659334809],[127,162,79,-0.17955622582827635],[127,163,64,-0.21489867716838407],[127,163,65,-0.21365677846108977],[127,163,66,-0.21229060950773115],[127,163,67,-0.21080046784692763],[127,163,68,-0.20918677724631896],[127,163,69,-0.20745009003924442],[127,163,70,-0.2055910894677052],[127,163,71,-0.2036105920316843],[127,163,72,-0.20150954984478375],[127,163,73,-0.1992890529962592],[127,163,74,-0.19695033191927458],[127,163,75,-0.19449475976560393],[127,163,76,-0.19192385478662388],[127,163,77,-0.1892392827206365],[127,163,78,-0.18644285918654768],[127,163,79,-0.18353655208384834],[127,164,64,-0.21873466563977917],[127,164,65,-0.21750019952549304],[127,164,66,-0.21614042343094186],[127,164,67,-0.21465564556531003],[127,164,68,-0.21304630122312107],[127,164,69,-0.21131295512361836],[127,164,70,-0.20945630375621183],[127,164,71,-0.20747717773205654],[127,164,72,-0.20537654414172624],[127,164,73,-0.2031555089190652],[127,164,74,-0.20081531921103135],[127,164,75,-0.19835736575376983],[127,164,76,-0.19578318525475047],[127,164,77,-0.19309446278101683],[127,164,78,-0.1902930341535639],[127,164,79,-0.18738088834779965],[127,165,64,-0.22243179427426352],[127,165,65,-0.2212046343754629],[127,165,66,-0.21985115999874172],[127,165,67,-0.21837168961962483],[127,165,68,-0.21676666962731073],[127,165,69,-0.21503667666675697],[127,165,70,-0.2131824199866117],[127,165,71,-0.21120474379306609],[127,165,72,-0.20910462960959098],[127,165,73,-0.20688319864263005],[127,165,74,-0.2045417141530801],[127,165,75,-0.2020815838337814],[127,165,76,-0.19950436219286216],[127,165,77,-0.1968117529429788],[127,165,78,-0.19400561139647265],[127,165,79,-0.19108794686639508],[127,166,64,-0.2259891178768888],[127,166,65,-0.22476912443409658],[127,166,66,-0.2234218476144627],[127,166,67,-0.22194761575556998],[127,166,68,-0.22034688590864515],[127,166,69,-0.21862024618332965],[127,166,70,-0.21676841809809788],[127,166,71,-0.2147922589363881],[127,166,72,-0.21269276410840998],[127,166,73,-0.21047106951871342],[127,166,74,-0.20812845393932966],[127,166,75,-0.20566634138872264],[127,166,76,-0.20308630351639056],[127,166,77,-0.20039006199315623],[127,166,78,-0.19757949090716975],[127,166,79,-0.19465661916557642],[127,167,64,-0.22940587399170598],[127,167,65,-0.2281928943593059],[127,167,66,-0.2268516983624732],[127,167,67,-0.22538262379697538],[127,167,68,-0.22378613794348],[127,167,69,-0.2220628399149921],[127,167,70,-0.22021346300974431],[127,167,71,-0.21823887706960488],[127,167,72,-0.2161400908439649],[127,167,73,-0.21391825435919098],[127,167,74,-0.21157466129345692],[127,167,75,-0.2091107513571866],[127,167,76,-0.2065281126789531],[127,167,77,-0.20382848419686994],[127,167,78,-0.2010137580555007],[127,167,79,-0.19808598200823546],[127,168,64,-0.23268148861566962],[127,168,65,-0.2314753577895986],[127,168,66,-0.23014011378412935],[127,168,67,-0.2286761034502205],[127,168,68,-0.22708380386596994],[127,168,69,-0.22536382468669203],[127,168,70,-0.22351691050025946],[127,168,71,-0.22154394318777526],[127,168,72,-0.21944594428954034],[127,168,73,-0.21722407737639549],[127,168,74,-0.21487965042625745],[127,168,75,-0.21241411820607992],[127,168,76,-0.20982908465908168],[127,168,77,-0.20712630529728204],[127,168,78,-0.20430768959936552],[127,168,79,-0.2013753034138286],[127,169,64,-0.23581558196962238],[127,169,65,-0.23461612314742375],[127,169,66,-0.23328669071175268],[127,169,67,-0.23182764016712654],[127,169,68,-0.23023945795816836],[127,169,69,-0.22852276382228776],[127,169,70,-0.22667831314744558],[127,169,71,-0.22470699933507343],[127,169,72,-0.22260985616810858],[127,169,73,-0.2203880601842253],[127,169,74,-0.21804293305408196],[127,169,75,-0.21557594396481727],[127,169,76,-0.21298871200863068],[127,169,77,-0.21028300857649562],[127,169,78,-0.20746075975702305],[127,169,79,-0.20452404874042696],[127,170,64,-0.23880797432644063],[127,170,65,-0.23761499950016562],[127,170,66,-0.23629122716072193],[127,170,67,-0.23483702106640936],[127,170,68,-0.23325287659911687],[127,170,69,-0.23153942311956255],[127,170,70,-0.22969742632744716],[127,170,71,-0.22772779062659387],[127,170,72,-0.22563156149503227],[127,170,73,-0.22340992786011016],[127,170,74,-0.22106422447845198],[127,170,75,-0.21859593432099567],[127,170,76,-0.2160066909629449],[127,170,77,-0.21329828097868386],[127,170,78,-0.2104726463416744],[127,170,79,-0.20753188682928358],[127,171,64,-0.24165869189616773],[127,171,65,-0.24047200247860412],[127,171,66,-0.23915372827949655],[127,171,67,-0.2377042409135106],[127,171,68,-0.2361240442727408],[127,171,69,-0.23441377688445753],[127,171,70,-0.23257421427360692],[127,171,71,-0.23060627133013611],[127,171,72,-0.22851100468110275],[127,171,73,-0.226289615067649],[127,171,74,-0.22394344972666425],[127,171,75,-0.22147400477736034],[127,171,76,-0.21888292761260764],[127,171,77,-0.21617201929506846],[127,171,78,-0.21334323695815116],[127,171,79,-0.21039869621173535],[127,172,64,-0.24436797276823707],[127,172,65,-0.2431873602529543],[127,172,66,-0.24187441235768392],[127,172,67,-0.2404295081589185],[127,172,68,-0.2388531596346637],[127,172,69,-0.2371460140246312],[127,172,70,-0.2353088561950396],[127,172,71,-0.2333426110080814],[127,172,72,-0.2312483456960257],[127,172,73,-0.22902727224003283],[127,172,74,-0.22668074975350094],[127,172,75,-0.22421028687017952],[127,172,76,-0.22161754413688395],[127,172,77,-0.21890433641085916],[127,172,78,-0.21607263526181109],[127,172,79,-0.21312457137855667],[127,173,64,-0.24693627291084175],[127,173,65,-0.2457615195665307],[127,173,66,-0.24445371689219764],[127,173,67,-0.24301325103502858],[127,173,68,-0.24144064163798673],[127,173,69,-0.23973654420239476],[127,173,70,-0.2379017524549737],[127,173,71,-0.23593720071940816],[127,173,72,-0.23384396629240123],[127,173,73,-0.2316232718242972],[127,173,74,-0.22927648770409426],[127,173,75,-0.22680513444907524],[127,173,76,-0.22421088509890008],[127,173,77,-0.22149556761420108],[127,173,78,-0.21866116727970053],[127,173,79,-0.21570982911180547],[127,174,64,-0.24936427222730606],[127,174,65,-0.2481951518269021],[127,174,66,-0.2468923047113719],[127,174,67,-0.24545612371140113],[127,174,68,-0.24388713571789766],[127,174,69,-0.2421860040468855],[127,174,70,-0.24035353080872357],[127,174,71,-0.2383906592817141],[127,174,72,-0.2362984762900634],[127,174,73,-0.2340782145862763],[127,174,74,-0.23173125523780258],[127,174,75,-0.229259130018168],[127,174,76,-0.22666352380242882],[127,174,77,-0.22394627696699376],[127,174,78,-0.22110938779383404],[127,174,79,-0.2181550148790301],[127,175,64,-0.2516528806695413],[127,175,65,-0.2504891592546137],[127,175,66,-0.2491910701571044],[127,175,67,-0.24775901250850252],[127,175,68,-0.2461935200351858],[127,175,69,-0.24449526342555583],[127,175,70,-0.2426650527013663],[127,175,71,-0.24070383959331354],[127,175,72,-0.23861271992085364],[127,175,73,-0.23639293597632227],[127,175,74,-0.23404587891318096],[127,175,75,-0.23157309113861946],[127,175,76,-0.22897626871035226],[127,175,77,-0.22625726373765875],[127,175,78,-0.22341808678667663],[127,175,79,-0.22046090928991302],[127,176,64,-0.2538032444086419],[127,176,65,-0.2526446810895284],[127,176,66,-0.25135114532509106],[127,176,67,-0.24992304216997696],[127,176,68,-0.248360911778721],[127,176,69,-0.24666543177503775],[127,176,70,-0.24483741962518546],[127,176,71,-0.24287783501547666],[127,176,72,-0.24078778223388841],[127,176,73,-0.2385685125558612],[127,176,74,-0.23622142663410295],[127,176,75,-0.23374807689262622],[127,176,76,-0.23115016992486626],[127,176,77,-0.22842956889591326],[127,176,78,-0.22558829594888763],[127,176,79,-0.22262853461540577],[127,177,64,-0.25581675206249177],[127,177,65,-0.2546630998546713],[127,177,66,-0.25337390636302126],[127,177,67,-0.2519495821933304],[127,177,68,-0.25039067352676836],[127,177,69,-0.24869786449124898],[127,177,70,-0.24687197953675188],[127,177,71,-0.24491398581467683],[127,177,72,-0.24282499556119097],[127,177,73,-0.24060626848464806],[127,177,74,-0.2382592141569012],[127,177,75,-0.2357853944087398],[127,177,76,-0.23318652572929],[127,177,77,-0.23046448166942202],[127,177,78,-0.22762129524918706],[127,177,79,-0.22465916136923136],[127,178,64,-0.2576950409804546],[127,178,65,-0.25654604767763367],[127,178,66,-0.2552609798268024],[127,178,67,-0.25384025321908643],[127,178,68,-0.2522844196672067],[127,178,69,-0.25059416937881773],[127,178,70,-0.24877033333370635],[127,178,71,-0.24681388566491558],[127,178,72,-0.2447259460437573],[127,178,73,-0.2425077820687931],[127,178,74,-0.24016081165860326],[127,178,75,-0.23768660544857623],[127,178,76,-0.23508688919155685],[127,178,77,-0.23236354616239652],[127,178,78,-0.22951861956643005],[127,178,79,-0.22655431495182177],[127,179,64,-0.25944000358520203],[127,179,65,-0.2582954126696033],[127,179,66,-0.2570142490948746],[127,179,67,-0.255596933478484],[127,179,68,-0.2540440228767131],[127,179,69,-0.25235621315987733],[127,179,70,-0.25053434139131237],[127,179,71,-0.24857938821018855],[127,179,72,-0.24649248021811554],[127,179,73,-0.2442748923696204],[127,179,74,-0.24192805036631382],[127,179,75,-0.23945353305498307],[127,179,76,-0.23685307482944418],[127,179,77,-0.23412856803620097],[127,179,78,-0.23128206538393103],[127,179,79,-0.2283157823567481],[127,180,64,-0.26105379377154636],[127,180,65,-0.2599133453618817],[127,180,66,-0.25863586084047796],[127,180,67,-0.25722176529956897],[127,180,68,-0.2556716206587729],[127,180,69,-0.2539861280420995],[127,180,70,-0.25216613015863265],[127,180,71,-0.25021261368694936],[127,180,72,-0.24812671166324107],[127,180,73,-0.2459097058732176],[127,180,74,-0.24356302924761208],[127,180,75,-0.2410882682615182],[127,180,76,-0.2384871653374021],[127,180,77,-0.23576162125182631],[127,180,78,-0.2329136975459165],[127,180,79,-0.2299456189395087],[127,181,64,-0.26253883336237216],[127,181,65,-0.26140226519998466],[127,181,66,-0.26012823156196885],[127,181,67,-0.2587171616717827],[127,181,68,-0.2571696219406119],[127,181,69,-0.2554863183460597],[127,181,70,-0.2536680988144321],[127,181,71,-0.2517159556066728],[127,181,72,-0.24963102770792323],[127,181,73,-0.2474146032207778],[127,181,74,-0.24506812176205883],[127,181,75,-0.2425931768633437],[127,181,76,-0.23999151837507926],[127,181,77,-0.23726505487433147],[127,181,78,-0.23441585607618898],[127,181,79,-0.23144615524876955],[127,182,64,-0.26389781862168693],[127,182,65,-0.2627648670953454],[127,182,66,-0.2614940541712013],[127,182,67,-0.26008581286906574],[127,182,68,-0.2585407137290736],[127,182,69,-0.25685946719195496],[127,182,70,-0.25504292598282197],[127,182,71,-0.2530920874985333],[127,182,72,-0.2510080961986064],[127,182,73,-0.24879224599974814],[127,182,74,-0.24644598267383133],[127,182,75,-0.24397090624954698],[127,182,76,-0.2413687734175669],[127,182,77,-0.23864149993926842],[127,182,78,-0.23579116305903292],[127,182,79,-0.23282000392007762],[127,183,64,-0.2651337268246895],[127,183,65,-0.26400412803451845],[127,183,66,-0.26273630463987807],[127,183,67,-0.2613306931313728],[127,183,68,-0.25978786782533536],[127,183,69,-0.25810854324557087],[127,183,70,-0.25629357650854756],[127,183,71,-0.2543439697120985],[127,183,72,-0.2522608723275972],[127,183,73,-0.25004558359568674],[127,183,74,-0.24769955492538553],[127,183,75,-0.24522439229679527],[127,183,76,-0.24262185866725616],[127,183,77,-0.2398938763809899],[127,183,78,-0.23704252958225203],[127,183,79,-0.23407006663194407],[127,184,64,-0.26624982288494625],[127,184,65,-0.26512331374597886],[127,184,66,-0.263858248703959],[127,184,67,-0.2624550674046954],[127,184,68,-0.26091434759855847],[127,184,69,-0.259236807523593],[127,184,70,-0.2574233082920101],[127,184,71,-0.25547485628013],[127,184,72,-0.2533926055217366],[127,184,73,-0.2511778601049204],[127,184,74,-0.24883207657223805],[127,184,75,-0.24635686632441012],[127,184,76,-0.24375399802740272],[127,184,77,-0.2410254000229356],[127,184,78,-0.2381731627424366],[127,184,79,-0.23519954112439334],[127,185,64,-0.26724966603864597],[127,185,65,-0.2661259854244792],[127,185,66,-0.264863448626095],[127,185,67,-0.26346249813955347],[127,185,68,-0.26192371481843835],[127,185,69,-0.2602478202582279],[127,185,70,-0.25843567918398735],[127,185,71,-0.2564883018414591],[127,185,72,-0.25440684639150124],[127,185,73,-0.2521926213079668],[127,185,74,-0.24984708777883535],[127,185,75,-0.24737186211083084],[127,185,76,-0.24476871813736656],[127,185,77,-0.24203958962985705],[127,185,78,-0.23918657271242383],[127,185,79,-0.2362119282799383],[127,186,64,-0.2681371165859303],[127,186,65,-0.26701600651296786],[127,186,66,-0.26575577001608663],[127,186,67,-0.26435685214796134],[127,186,68,-0.2628198365466541],[127,186,69,-0.26114544782113147],[127,186,70,-0.25933455394005867],[127,186,71,-0.2573881686239352],[127,186,72,-0.255307453740534],[127,186,73,-0.25309372170372524],[127,186,74,-0.25074843787550716],[127,186,75,-0.24827322297146703],[127,186,76,-0.24566985546952458],[127,186,77,-0.24294027402198815],[127,186,78,-0.2400865798709525],[127,186,79,-0.2371110392669893],[127,187,64,-0.26891634268928044],[127,187,65,-0.26779754954205015],[127,187,66,-0.26653938870935023],[127,187,67,-0.2651423075188465],[127,187,68,-0.26360689208720056],[127,187,69,-0.26193386970663224],[127,187,70,-0.2601241112347086],[127,187,71,-0.2581786334874313],[127,187,72,-0.25609860163558307],[127,187,73,-0.2538853316044143],[127,187,74,-0.2515402924764888],[127,187,75,-0.24906510889792044],[127,187,76,-0.24646156348784032],[127,187,77,-0.2437315992511372],[127,187,78,-0.24087732199449463],[127,187,79,-0.2379010027456706],[127,188,64,-0.2695918272290192],[127,188,65,-0.26847510302704325],[127,188,66,-0.26721879770344725],[127,188,67,-0.265823360591975],[127,188,68,-0.2642893799956555],[127,188,69,-0.26261758557429615],[127,188,70,-0.2608088507351699],[127,188,71,-0.258864195026957],[127,188,72,-0.25678478653690884],[127,188,73,-0.25457194429131147],[127,188,74,-0.2522271406590676],[127,188,75,-0.24975200375863282],[127,188,76,-0.2471483198681399],[127,188,77,-0.24441803583875976],[127,188,78,-0.24156326151131646],[127,188,79,-0.23858627213610795],[127,189,64,-0.2701683747158591],[127,189,65,-0.2690534784225669],[127,189,66,-0.2677988141526073],[127,189,67,-0.2664048329903248],[127,189,68,-0.26487212514732017],[127,189,69,-0.2632014223507767],[127,189,70,-0.26139360023493974],[127,189,71,-0.25944968073582153],[127,189,72,-0.25737083448909204],[127,189,73,-0.2551583832312342],[127,189,74,-0.2528138022037849],[127,189,75,-0.2503387225608944],[127,189,76,-0.2477349337800404],[127,189,77,-0.24500438607594455],[127,189,78,-0.2421491928177063],[127,189,79,-0.23917163294911314],[127,190,64,-0.270651118260539],[127,190,65,-0.2695378171347027],[127,190,66,-0.26828458642029285],[127,190,67,-0.26689187871093767],[127,190,68,-0.2653602858642711],[127,190,69,-0.2636905413909846],[127,190,70,-0.26188352284700733],[127,190,71,-0.25994025422887945],[127,190,72,-0.2578619083722806],[127,190,73,-0.2556498093537961],[127,190,74,-0.2533054348957371],[127,190,75,-0.2508304187742515],[127,190,76,-0.24822655323055764],[127,190,77,-0.24549579138535282],[127,190,78,-0.24264024965640862],[127,190,79,-0.23966221017931333],[127,191,64,-0.2710455266005418],[127,191,65,-0.2699335975907182],[127,191,66,-0.2686816011897879],[127,191,67,-0.26728999127425024],[127,191,68,-0.26575936110131204],[127,191,69,-0.26409044569856777],[127,191,70,-0.2622841242567848],[127,191,71,-0.2603414225258528],[127,191,72,-0.2582635152138699],[127,191,73,-0.2560517283894329],[127,191,74,-0.2537075418869664],[127,191,75,-0.2512325917153069],[127,191,76,-0.24862867246939424],[127,191,77,-0.24589773974510465],[127,191,78,-0.2430419125572536],[127,191,79,-0.24006347576071307],[127,192,64,-0.27135741118388135],[127,192,65,-0.27024664236634777],[127,192,66,-0.2689956906328116],[127,192,67,-0.2676050109318907],[127,192,68,-0.26607519769082744],[127,192,69,-0.2644069872057032],[127,192,70,-0.2626012600347368],[127,192,71,-0.2606590433947271],[127,192,72,-0.2585815135606083],[127,192,73,-0.2563699982681945],[127,192,74,-0.25402597911993363],[127,192,75,-0.2515510939939053],[127,192,76,-0.24894713945589653],[127,192,77,-0.2462160731746038],[127,192,78,-0.2433600163399806],[127,192,79,-0.24038125608467964],[127,193,64,-0.2715929333099736],[127,193,65,-0.2704831253706379],[127,193,66,-0.26923303963616096],[127,193,67,-0.26784313193295406],[127,193,68,-0.2663139976465364],[127,193,69,-0.2646463741121967],[127,193,70,-0.26284114300871575],[127,193,71,-0.2608993327552219],[127,193,72,-0.25882212091113843],[127,193,73,-0.2566108365793024],[127,193,74,-0.25426696281208216],[127,193,75,-0.25179213902071096],[127,193,76,-0.24918816338769245],[127,193,77,-0.2464569952823087],[127,193,78,-0.24360075767925715],[127,193,79,-0.24062173958036803],[127,194,64,-0.27175861132757906],[127,194,65,-0.27064957908834864],[127,194,66,-0.26940019308637486],[127,194,67,-0.2680109098487439],[127,194,68,-0.26648232552614526],[127,194,69,-0.26481517828389245],[127,194,70,-0.26301035069599266],[127,194,71,-0.2610688721423359],[127,194,72,-0.25899192120895986],[127,194,73,-0.2567808280914782],[127,194,74,-0.2544370770014849],[127,194,75,-0.25196230857617263],[127,194,76,-0.24935832229099775],[127,194,77,-0.24662707887544277],[127,194,78,-0.2437707027318914],[127,194,79,-0.24079148435756814],[127,195,64,-0.2718613278898354],[127,195,65,-0.2707529018799294],[127,195,66,-0.2695040632124368],[127,195,67,-0.26811526895600124],[127,195,68,-0.26658711585291195],[127,195,69,-0.2649203427104043],[127,195,70,-0.2631158327950036],[127,195,71,-0.2611746162299744],[127,195,72,-0.2590978723958387],[127,195,73,-0.2568869323340418],[127,195,74,-0.25454328115359026],[127,195,75,-0.2520685604408869],[127,195,76,-0.2494645706726073],[127,195,77,-0.24673327363166042],[127,195,78,-0.24387679482625046],[127,195,79,-0.24089742591199637],[127,196,64,-0.2719083372663442],[127,196,65,-0.2708003653390342],[127,196,66,-0.26955193698648305],[127,196,67,-0.26816350967858327],[127,196,68,-0.2666356805960902],[127,196,69,-0.26496918902213573],[127,196,70,-0.2631649187367754],[127,196,71,-0.2612239004146357],[127,196,72,-0.25914731402562197],[127,196,73,-0.2569364912387653],[127,196,74,-0.25459291782903337],[127,196,75,-0.25211823608733386],[127,196,76,-0.2495142472335462],[127,196,77,-0.2467829138326345],[127,196,78,-0.2439263622138531],[127,196,79,-0.24094688489299787],[127,197,64,-0.2719072727123598],[127,197,65,-0.27079962170761984],[127,197,66,-0.26955148358255954],[127,197,67,-0.2681633160876381],[127,197,68,-0.2666357167102986],[127,197,69,-0.26496942506663324],[127,197,70,-0.26316532529607606],[127,197,71,-0.2612244484591898],[127,197,72,-0.25914797493850705],[127,197,73,-0.25693723684250924],[127,197,74,-0.2545937204125589],[127,197,75,-0.25211906843302123],[127,197,76,-0.24951508264441102],[127,197,77,-0.2467837261596112],[127,197,78,-0.2439271258831791],[127,197,79,-0.24094757493369978],[127,198,64,-0.27186615389504043],[127,198,65,-0.2707587113485931],[127,198,66,-0.26951076189339185],[127,198,67,-0.26812276346023967],[127,198,68,-0.2665953137337749],[127,198,69,-0.26492915254423766],[127,198,70,-0.26312516426225585],[127,198,71,-0.26118438019672263],[127,198,72,-0.2591079809957282],[127,198,73,-0.2568972990506191],[127,198,74,-0.25455382090301537],[127,198,75,-0.2520791896550081],[127,198,76,-0.24947520738237938],[127,198,77,-0.24674383755089158],[127,198,78,-0.24388720743566406],[127,198,79,-0.240907610543584],[127,199,64,-0.2717933943767824],[127,199,65,-0.2706860702760233],[127,199,66,-0.26943822810518614],[127,199,67,-0.2680503258964989],[127,199,68,-0.2665229614455378],[127,199,69,-0.2648568747030491],[127,199,70,-0.2630529501697899],[127,199,71,-0.2611122192944584],[127,199,72,-0.2590358628746743],[127,199,73,-0.25682521346108833],[127,199,74,-0.2544817577644438],[127,199,75,-0.2520071390658194],[127,199,76,-0.2494031596298919],[127,199,77,-0.24667178312126625],[127,199,78,-0.24381513702388813],[127,199,79,-0.24083551506349565],[127,200,64,-0.2716978091556296],[127,200,65,-0.27059053774291364],[127,200,66,-0.26934274333045394],[127,200,67,-0.26795488399514844],[127,200,68,-0.2664275575814474],[127,200,69,-0.26476150409320165],[127,200,70,-0.2629576080885262],[127,200,71,-0.2610169010777542],[127,200,72,-0.25894056392444087],[127,200,73,-0.2567299292494918],[127,200,74,-0.2543864838382496],[127,200,75,-0.2519118710507513],[127,200,76,-0.24930789323501523],[127,200,77,-0.2465765141433861],[127,200,78,-0.2437198613519651],[127,200,79,-0.24074022868307932],[127,201,64,-0.2715886222627599],[127,201,65,-0.2704813638865359],[127,201,66,-0.26923358129886565],[127,201,67,-0.2678457325875975],[127,201,68,-0.26631841560916714],[127,201,69,-0.26465237038045],[127,201,70,-0.2628484814736327],[127,201,71,-0.26090778041417284],[127,201,72,-0.2588314480818066],[127,201,73,-0.2566208171146853],[127,201,74,-0.25427737431646347],[127,201,75,-0.251802763066566],[127,201,76,-0.24919878573347498],[127,201,77,-0.24646740609108153],[127,201,78,-0.24361075173812197],[127,201,79,-0.2406311165206475],[127,202,64,-0.2714748685029318],[127,202,65,-0.27036760768321433],[127,202,66,-0.26911982272263746],[127,202,67,-0.2677319717094455],[127,202,68,-0.26620465250038483],[127,202,69,-0.2645386051125538],[127,202,70,-0.2627347141182712],[127,202,71,-0.2607940110430337],[127,202,72,-0.2587176767665206],[127,202,73,-0.25650704392672885],[127,202,74,-0.25416359932705757],[127,202,75,-0.25168898634657255],[127,202,76,-0.2490850073532912],[127,202,77,-0.2463536261205309],[127,202,78,-0.24349697024634265],[127,202,79,-0.2405173335759785],[127,203,64,-0.2713568458465472],[127,203,65,-0.2702495355964286],[127,203,66,-0.26900170299719506],[127,203,67,-0.26761380613943386],[127,203,68,-0.26608644288025274],[127,203,69,-0.26442035323508173],[127,203,70,-0.2626164217724942],[127,203,71,-0.2606756800121173],[127,203,72,-0.25859930882558646],[127,203,73,-0.2563886408406335],[127,203,74,-0.25404516284812184],[127,203,75,-0.2515705182122605],[127,203,76,-0.2489665092838419],[127,203,77,-0.2462350998165378],[127,203,78,-0.24337841738628452],[127,203,79,-0.24039875581369974],[127,204,64,-0.2712281257623895],[127,204,65,-0.27012064585410966],[127,204,66,-0.2688726497446592],[127,204,67,-0.26748459553281545],[127,204,68,-0.2659570810770723],[127,204,69,-0.2642908463872786],[127,204,70,-0.26248677601929615],[127,204,71,-0.26054590147274315],[127,204,72,-0.2584694035917856],[127,204,73,-0.2562586149690559],[127,204,74,-0.25391502235252095],[127,204,75,-0.2514402690555271],[127,204,76,-0.24883615736986608],[127,204,77,-0.24610465098190182],[127,204,78,-0.24324787739178122],[127,204,79,-0.24026813033567773],[127,205,64,-0.2710824238771459],[127,205,65,-0.2699745830007525],[127,205,66,-0.26872623899965786],[127,205,67,-0.26733784999039734],[127,205,68,-0.2658100138347419],[127,205,69,-0.2641434705309892],[127,205,70,-0.2623391046082729],[127,205,71,-0.26039794752395495],[127,205,72,-0.258321180064062],[127,205,73,-0.25611013474684907],[127,205,74,-0.25376629822930774],[127,205,75,-0.25129131371685165],[127,205,76,-0.24868698337601858],[127,205,77,-0.24595527075023205],[127,205,78,-0.24309830317864378],[127,205,79,-0.24011837421800775],[127,206,64,-0.27091377738195577],[127,206,65,-0.2698053164121236],[127,206,66,-0.2685563747740982],[127,206,67,-0.26716741061550353],[127,206,68,-0.26563902180431576],[127,206,69,-0.26397194831955817],[127,206,70,-0.2621670746450092],[127,206,71,-0.2602254321659895],[127,206,72,-0.25814820156919027],[127,206,73,-0.25593671524562245],[127,206,74,-0.25359245969650956],[127,206,75,-0.2511170779423513],[127,206,76,-0.2485123719350002],[127,206,77,-0.24578030497279557],[127,206,78,-0.24292300411877177],[127,206,79,-0.23994276262189607],[127,207,64,-0.27071653824252717],[127,207,65,-0.2696071334426563],[127,207,66,-0.26835728214420773],[127,207,67,-0.2669674425430254],[127,207,68,-0.2654382125174214],[127,207,69,-0.26377033201796096],[127,207,70,-0.2619646854602541],[127,207,71,-0.2600223041208194],[127,207,72,-0.257944368535985],[127,207,73,-0.2557322109039023],[127,207,74,-0.2533873174894983],[127,207,75,-0.25091133103259144],[127,207,76,-0.24830605315901655],[127,207,77,-0.2455734467947983],[127,207,78,-0.24271563858339507],[127,207,79,-0.23973492130596463],[127,208,64,-0.27048536646778387],[127,208,65,-0.26937463263186456],[127,208,66,-0.26812350039706445],[127,208,67,-0.26673242802841357],[127,208,68,-0.2652020134200501],[127,208,69,-0.2635329964837211],[127,208,70,-0.2617262615402812],[127,208,71,-0.2597828397142563],[127,208,72,-0.25770391133143267],[127,208,73,-0.2554908083195536],[127,208,74,-0.25314501661194344],[127,208,75,-0.25066817855428836],[127,208,76,-0.24806209531441603],[127,208,77,-0.2453287292951155],[127,208,78,-0.24247020655001983],[127,208,79,-0.23948881920250076],[127,209,64,-0.2702152234370362],[127,209,65,-0.2691027169697715],[127,209,66,-0.2678498762366135],[127,209,67,-0.266457159596608],[127,209,68,-0.2649251649667187],[127,209,69,-0.26325463220861234],[127,209,70,-0.26144644551843044],[127,209,71,-0.2595016358196134],[127,209,72,-0.25742138315873986],[127,209,73,-0.25520701910446075],[127,209,74,-0.2528600291493506],[127,209,75,-0.2503820551149014],[127,209,76,-0.24777489755950677],[127,209,77,-0.24504051818947292],[127,209,78,-0.2421810422730808],[127,209,79,-0.23919876105764937],[127,210,64,-0.26990136528567155],[127,210,65,-0.26878658722134563],[127,210,66,-0.26753155704916154],[127,210,67,-0.2661367332508974],[127,210,68,-0.2646027137749949],[127,210,69,-0.26293023842114105],[127,210,70,-0.2611201912278228],[127,210,71,-0.25917360286291935],[127,210,72,-0.2570916530172931],[127,210,73,-0.25487567280146195],[127,210,74,-0.2525271471451729],[127,210,75,-0.2500477172001041],[127,210,76,-0.24743918274554166],[127,210,77,-0.24470350459706824],[127,210,78,-0.24184280701828842],[127,210,79,-0.23885938013553976],[127,211,64,-0.26953933634937466],[127,211,65,-0.26842173530995816],[127,211,66,-0.26716398422836274],[127,211,67,-0.26576654174172254],[127,211,68,-0.2642300058403977],[127,211,69,-0.2625551162498151],[127,211,70,-0.26074275681526116],[127,211,71,-0.25879395788969495],[127,211,72,-0.256709898724541],[127,211,73,-0.2544919098635452],[127,211,74,-0.2521414755395116],[127,211,75,-0.24966023607415166],[127,211,76,-0.24704999028088714],[127,211,77,-0.24431269787064758],[127,211,78,-0.24145048186068563],[127,211,79,-0.23846563098635898],[127,212,64,-0.26912496266687436],[127,212,65,-0.2680039377598553],[127,212,66,-0.26674288655969114],[127,212,67,-0.2653422678954165],[127,212,68,-0.26380267981167005],[127,212,69,-0.26212486194720186],[127,212,70,-0.26030969791631287],[127,212,71,-0.25835821769328926],[127,212,72,-0.25627159999979543],[127,212,73,-0.2540511746953068],[127,212,74,-0.2516984251704004],[127,212,75,-0.2492149907431368],[127,212,76,-0.2466026690583697],[127,212,77,-0.24386341849003124],[127,212,78,-0.24099936054640925],[127,212,79,-0.23801278227836997],[127,213,64,-0.26865434554120615],[127,213,65,-0.26752924919763643],[127,213,66,-0.26626427366438765],[127,213,67,-0.26485987800287336],[127,213,68,-0.26331666032641055],[127,213,69,-0.2616353601747592],[127,213,70,-0.2598168608915641],[127,213,71,-0.25786219200476523],[127,213,72,-0.25577253160993985],[127,213,73,-0.25354920875665665],[127,213,74,-0.2511937058376611],[127,213,75,-0.24870766098112307],[127,213,76,-0.24609287044578887],[127,213,77,-0.24335129101907715],[127,213,78,-0.2404850424181434],[127,213,79,-0.2374964096938592],[127,214,64,-0.26812385515950843],[127,214,65,-0.2669939959127544],[127,214,66,-0.26572442950290376],[127,214,67,-0.2643156152681634],[127,214,68,-0.2627681514070871],[127,214,69,-0.2610827773484611],[127,214,70,-0.25926037612406183],[127,214,71,-0.2573019767443504],[127,214,72,-0.2552087565770643],[127,214,73,-0.2529820437287933],[127,214,74,-0.2506233194293507],[127,214,75,-0.24813422041917732],[127,214,76,-0.2455165413396171],[127,214,77,-0.24277223712610407],[127,214,78,-0.23990342540428733],[127,214,79,-0.23691238888903732],[127,215,64,-0.2675301242713375],[127,215,65,-0.2663947694770269],[127,215,66,-0.265119905937821],[127,215,67,-0.26370599331707745],[127,215,68,-0.26215362991741054],[127,215,69,-0.26046355504520013],[127,215,70,-0.258636651377932],[127,215,71,-0.2566739473344407],[127,215,72,-0.2545766194480116],[127,215,73,-0.252345994742429],[127,215,74,-0.24998355311078524],[127,215,75,-0.24749092969728204],[127,215,76,-0.24486991728186858],[127,215,77,-0.242122468667754],[127,215,78,-0.23925069907181873],[127,215,79,-0.23625688851787363],[127,216,64,-0.2668700419255169],[127,216,65,-0.2657284204231678],[127,216,66,-0.26444751635626773],[127,216,67,-0.26302778976561936],[127,216,68,-0.26146983907909205],[127,216,69,-0.25977440346998615],[127,216,70,-0.2579423652181857],[127,216,71,-0.2559747520741711],[127,216,72,-0.253872739625849],[127,216,73,-0.25163765366828494],[127,216,74,-0.24927097257615483],[127,216,75,-0.24677432967914648],[127,216,76,-0.24414951564015608],[127,216,77,-0.241398480836314],[127,216,78,-0.23852333774286993],[127,216,79,-0.23552636331988164],[127,217,64,-0.2661407472654931],[127,217,65,-0.2649920519823187],[127,217,66,-0.26370432935180155],[127,217,67,-0.2622780398484159],[127,217,68,-0.2607137820489479],[127,217,69,-0.259012294983908],[127,217,70,-0.25717446049168813],[127,217,71,-0.2552013055755258],[127,217,72,-0.25309400476324095],[127,217,73,-0.25085388246982454],[127,217,74,-0.24848241536270044],[127,217,75,-0.24598123472988664],[127,217,76,-0.24335212885090418],[127,217,77,-0.24059704537046844],[127,217,78,-0.2377180936749893],[127,217,79,-0.23471754727182892],[127,218,64,-0.26533962338323325],[127,218,65,-0.2641830138806076],[127,218,66,-0.2628876624657921],[127,218,67,-0.2614540301070807],[127,218,68,-0.2598827155563931],[127,218,69,-0.2581744576928984],[127,218,70,-0.25633013786932357],[127,218,71,-0.25435078226102126],[127,218,72,-0.25223756421775145],[127,218,73,-0.2499918066182628],[127,218,74,-0.24761498422749184],[127,218,75,-0.2451087260566086],[127,218,76,-0.2424748177257554],[127,218,77,-0.23971520382951228],[127,218,78,-0.2368319903051197],[127,218,79,-0.23382744680340173],[127,219,64,-0.2644642912316466],[127,219,65,-0.263298896194726],[127,219,66,-0.2619950759882923],[127,219,67,-0.2605532921385145],[127,219,68,-0.25897414360130644],[127,219,69,-0.2572583690972825],[127,219,70,-0.2554068494493429],[127,219,71,-0.2534206099229509],[127,219,72,-0.2513008225690695],[127,219,73,-0.24904880856983513],[127,219,74,-0.24666604058678654],[127,219,75,-0.24415414511188405],[127,219,76,-0.24151490482115645],[127,219,77,-0.23875026093101914],[127,219,78,-0.23586231555728487],[127,219,79,-0.23285333407681663],[127,220,64,-0.263512603595514],[127,220,65,-0.26233752326649884],[127,220,66,-0.2610243668183725],[127,220,67,-0.25957359640312494],[127,220,68,-0.2579858112122425],[127,220,69,-0.25626174980209293],[127,220,70,-0.2544022924218695],[127,220,71,-0.2524084633441639],[127,220,72,-0.2502814331981271],[127,220,73,-0.24802252130530333],[127,220,74,-0.24563319801795136],[127,220,75,-0.24311508706008866],[127,220,76,-0.2404699678710971],[127,220,77,-0.23769977795193153],[127,220,78,-0.23480661521395496],[127,220,79,-0.23179274033034925],[127,221,64,-0.2624826391209576],[127,221,65,-0.2612969476764866],[127,221,66,-0.25997356238395997],[127,221,67,-0.2585129460929997],[127,221,68,-0.2569156982650359],[127,221,69,-0.2551825572881842],[127,221,70,-0.2533144027946056],[127,221,71,-0.25131225798042367],[127,221,72,-0.2491772919281553],[127,221,73,-0.24691082193174008],[127,221,74,-0.2445143158239842],[127,221,75,-0.24198939430665234],[127,221,76,-0.23933783328304747],[127,221,77,-0.23656156619312152],[127,221,78,-0.23366268635113585],[127,221,79,-0.23064344928582492],[127,222,64,-0.26137269640344163],[127,222,65,-0.2601754442766092],[127,222,66,-0.2588409146211663],[127,222,67,-0.2573695710600208],[127,222,68,-0.2557620133617773],[127,222,69,-0.25401897974414],[127,222,70,-0.2521413491797222],[127,222,71,-0.2501301437043265],[127,222,72,-0.24798653072766175],[127,222,73,-0.24571182534657598],[127,222,74,-0.24330749266062313],[127,222,75,-0.24077515009019756],[127,222,76,-0.2381165696970753],[127,222,77,-0.23533368050740455],[127,222,78,-0.23242857083716628],[127,222,79,-0.2294034906200565],[127,223,64,-0.2601812881342702],[127,223,65,-0.2589715042817523],[127,223,66,-0.25762489401307265],[127,223,67,-0.25614192180389017],[127,223,68,-0.25452318777013194],[127,223,69,-0.25276942995893437],[127,223,70,-0.2508815266419021],[127,223,71,-0.24886049861075055],[127,223,72,-0.24670751147529624],[127,223,73,-0.24442387796387532],[127,223,74,-0.2420110602260075],[127,223,75,-0.23947067213754003],[127,223,76,-0.23680448160811052],[127,223,77,-0.23401441289096947],[127,223,78,-0.231102548895187],[127,223,79,-0.22807113350019204],[127,224,64,-0.2589071353056336],[127,224,65,-0.25768382942041723],[127,224,66,-0.2563241836880259],[127,224,67,-0.25482866352011413],[127,224,68,-0.2531978694230538],[127,224,69,-0.25143253927540155],[127,224,70,-0.24953355060758664],[127,224,71,-0.24750192288388728],[127,224,72,-0.24533881978665928],[127,224,73,-0.24304555150289775],[127,224,74,-0.240623577012948],[127,224,75,-0.238074506381601],[127,224,76,-0.23540010305141224],[127,224,77,-0.23260228613828515],[127,224,78,-0.22968313272934193],[127,224,79,-0.22664488018303197],[127,225,64,-0.25754916147418494],[127,225,65,-0.2563113261443869],[127,225,66,-0.25493767357742336],[127,225,67,-0.25342867020793136],[127,225,68,-0.2517849169788742],[127,225,69,-0.2500071516044986],[127,225,70,-0.24809625083541087],[127,225,71,-0.24605323272583712],[127,225,72,-0.24387925890303275],[127,225,73,-0.24157563683892225],[127,225,74,-0.23914382212378316],[127,225,75,-0.23658542074221378],[127,225,76,-0.2339021913512196],[127,225,77,-0.23109604756046065],[127,225,78,-0.22816906021468475],[127,225,79,-0.22512345967829317],[127,226,64,-0.2561064870831079],[127,226,65,-0.2548530998973728],[127,226,66,-0.2534644546329483],[127,226,67,-0.25194101883814357],[127,226,68,-0.25028339394172516],[127,226,69,-0.24849231750031286],[127,226,70,-0.2465686654477791],[127,226,71,-0.2445134543467251],[127,226,72,-0.2423278436419921],[127,226,73,-0.24001313791629375],[127,226,74,-0.2375707891477815],[127,226,75,-0.23500239896978148],[127,226,76,-0.23230972093253888],[127,226,77,-0.2294946627670148],[127,226,78,-0.22655928865075337],[127,226,79,-0.2235058214757749],[127,227,64,-0.2545784238427392],[127,227,65,-0.2533084494427086],[127,227,66,-0.2519038131033229],[127,227,67,-0.25036498358091186],[127,227,68,-0.24869256284236474],[127,227,69,-0.24688728829588924],[127,227,70,-0.24495003502365775],[127,227,71,-0.24288181801640907],[127,227,72,-0.2406837944099669],[127,227,73,-0.23835726572376081],[127,227,74,-0.2359036801011588],[127,227,75,-0.23332463455185493],[127,227,76,-0.23062187719614413],[127,227,77,-0.22779730951112898],[127,227,78,-0.2248529885788807],[127,227,79,-0.22179112933650313],[127,228,64,-0.2529644691697217],[127,228,65,-0.25167686125006106],[127,228,66,-0.2502552248705494],[127,228,67,-0.24870003009349917],[127,228,68,-0.24701187947937775],[127,228,69,-0.24519151029984532],[127,228,70,-0.24323979675254948],[127,228,71,-0.2411577521777487],[127,228,72,-0.2389465312767265],[127,228,73,-0.23660743233207782],[127,228,74,-0.234141899429683],[127,228,75,-0.23155152468260642],[127,228,76,-0.2288380504567573],[127,228,77,-0.2260033715983535],[127,228,78,-0.22304953766321278],[127,228,79,-0.21997875514782006],[127,229,64,-0.2512643006846411],[127,229,65,-0.2499580039411159],[127,229,66,-0.24851834984559762],[127,229,67,-0.24694580986790382],[127,229,68,-0.24524098722070342],[127,229,69,-0.24340461905372834],[127,229,70,-0.24143757864960702],[127,229,71,-0.2393408776213911],[127,229,72,-0.2371156681117359],[127,229,73,-0.23476324499382062],[127,229,74,-0.23228504807381578],[127,229,75,-0.22968266429514372],[127,229,76,-0.22695782994436187],[127,229,77,-0.22411243285871674],[127,229,78,-0.22114851463538765],[127,229,79,-0.21806827284236963],[127,230,64,-0.2494777707682253],[127,230,65,-0.24815172279431674],[127,230,66,-0.24669302642361257],[127,230,67,-0.24510215463847085],[127,230,68,-0.2433797113655729],[127,230,69,-0.2415264336501971],[127,230,70,-0.23954319383196754],[127,230,71,-0.2374310017221527],[127,230,72,-0.2351910067824725],[127,230,73,-0.23282450030550272],[127,230,74,-0.23033291759647945],[127,230,75,-0.22771784015675534],[127,230,76,-0.22498099786873305],[127,230,77,-0.22212427118232436],[127,230,78,-0.2191496933029553],[127,230,79,-0.2160594523810675],[127,231,64,-0.2476049011760736],[127,231,65,-0.24625803430861992],[127,231,66,-0.24477926599861544],[127,231,67,-0.24316907084944517],[127,231,68,-0.24142805356682118],[127,231,69,-0.23955695111199127],[127,231,70,-0.23755663485626954],[127,231,71,-0.2354281127369645],[127,231,72,-0.23317253141466243],[127,231,73,-0.2307911784319533],[127,231,74,-0.22828548437340768],[127,231,75,-0.22565702502704887],[127,231,76,-0.2229075235471515],[127,231,77,-0.22003885261841116],[127,231,78,-0.21705303662150888],[127,231,79,-0.21395225380001748],[127,232,64,-0.24564587771186275],[127,232,65,-0.2442771208262201],[127,232,66,-0.2427772475376384],[127,232,67,-0.24114673418241173],[127,232,68,-0.23938618631351982],[127,232,69,-0.23749634083163695],[127,232,70,-0.23547806811730265],[127,232,71,-0.23333237416432573],[127,232,72,-0.23106040271438366],[127,232,73,-0.22866343739290362],[127,232,74,-0.2261429038460292],[127,232,75,-0.22350037187892435],[127,232,76,-0.22073755759523994],[127,232,77,-0.217856325537791],[127,232,78,-0.21485869083046572],[127,232,79,-0.2117468213213154],[127,233,64,-0.24360104495912305],[127,233,65,-0.24220932521433214],[127,233,66,-0.24068731221439188],[127,233,67,-0.23903548414371967],[127,233,68,-0.23725444747402624],[127,233,69,-0.23534493907198362],[127,233,70,-0.23330782830788332],[127,233,71,-0.23114411916535993],[127,233,72,-0.22885495235213593],[127,233,73,-0.22644160741188035],[127,233,74,-0.22390550483698124],[127,233,75,-0.22124820818248447],[127,233,76,-0.21847142618102533],[127,233,77,-0.2155770148588002],[127,233,78,-0.21256697965259852],[127,233,79,-0.20944347752784565],[127,234,64,-0.24147090107154312],[127,234,65,-0.24005514560599361],[127,234,66,-0.23850995810242004],[127,234,67,-0.23683581871184634],[127,234,68,-0.2350333348994067],[127,234,69,-0.23310324352752754],[127,234,70,-0.23104641293991612],[127,234,71,-0.22886384504643686],[127,234,72,-0.22655667740882968],[127,234,73,-0.22412618532736084],[127,234,74,-0.22157378392820914],[127,234,75,-0.2189010302518385],[127,234,76,-0.21610962534218436],[127,234,77,-0.2132014163366991],[127,234,78,-0.21017839855727904],[127,234,79,-0.20704271760202364],[127,235,64,-0.23925609262174619],[127,235,65,-0.2378152301998263],[127,235,66,-0.23624583492768847],[127,235,67,-0.23454838904464492],[127,235,68,-0.232723501087175],[127,235,69,-0.23077190794646663],[127,235,70,-0.22869447692657752],[127,235,71,-0.2264922078032926],[127,235,72,-0.2241662348836363],[127,235,73,-0.22171782906612936],[127,235,74,-0.21914839990158985],[127,235,75,-0.21645949765473482],[127,235,76,-0.21365281536640401],[127,235,77,-0.21073019091645673],[127,235,78,-0.20769360908735957],[127,235,79,-0.20454520362841855],[127,236,64,-0.23695740950864186],[127,236,65,-0.2354903721188647],[127,236,66,-0.23389573888070647],[127,236,67,-0.2321739942465798],[127,236,68,-0.23032574790545168],[127,236,69,-0.22835173681359044],[127,236,70,-0.22625282722573548],[127,236,71,-0.2240300167267627],[127,236,72,-0.22168443626380996],[127,236,73,-0.21921735217894733],[127,236,74,-0.2166301682421935],[127,236,75,-0.2139244276851362],[127,236,76,-0.21110181523497606],[127,236,77,-0.20816415914904507],[127,236,78,-0.20511343324981934],[127,236,79,-0.20195175896037676],[127,237,64,-0.23457577992330791],[127,237,65,-0.2330815043284027],[127,237,66,-0.2314606074881408],[127,237,67,-0.22971357619590393],[127,237,68,-0.22784102137750006],[127,237,69,-0.22584368009396094],[127,237,70,-0.22372241754455224],[127,237,71,-0.22147822907007808],[127,237,72,-0.21911224215643077],[127,237,73,-0.216625718438486],[127,237,74,-0.2140200557041303],[127,237,75,-0.21129678989868994],[127,237,76,-0.20845759712957346],[127,237,77,-0.20550429567118367],[127,237,78,-0.20243884797011502],[127,237,79,-0.19926336265058942],[127,238,64,-0.23211226537333507],[127,238,65,-0.23058969461279422],[127,238,66,-0.22894151454385248],[127,238,67,-0.22716821443171153],[127,238,68,-0.22527040652656938],[127,238,69,-0.22324882803731239],[127,238,70,-0.221104343105205],[127,238,71,-0.21883794477765306],[127,238,72,-0.216450756982001],[127,238,73,-0.21394403649945348],[127,238,74,-0.21131917493891572],[127,238,75,-0.20857770071101756],[127,238,76,-0.20572128100213527],[127,238,77,-0.2027517237484655],[127,238,78,-0.19967097961016878],[127,238,79,-0.1964811439455354],[127,239,64,-0.2295680557657639],[127,239,65,-0.22801614061133302],[127,239,66,-0.22633966509948455],[127,239,67,-0.22453912110099372],[127,239,68,-0.22261512228117286],[127,239,69,-0.22056840604330652],[127,239,70,-0.21839983547185415],[127,239,71,-0.21611040127550285],[127,239,72,-0.2137012237300272],[127,239,73,-0.2111735546210487],[127,239,74,-0.20852877918648616],[127,239,75,-0.20576841805896573],[127,239,76,-0.20289412920800176],[127,239,77,-0.1999077098820048],[127,239,78,-0.1968110985501328],[127,239,79,-0.1936063768439379],[127,240,64,-0.22694446454850414],[127,240,65,-0.22536216491310812],[127,240,66,-0.22365639051449548],[127,240,67,-0.22182763596559063],[127,240,68,-0.2198765164406984],[127,240,69,-0.217803769587528],[127,240,70,-0.2156102574387514],[127,240,71,-0.2132969683231738],[127,240,72,-0.21086501877647823],[127,240,73,-0.20831565545163322],[127,240,74,-0.20565025702875572],[127,240,75,-0.20287033612469996],[127,240,76,-0.19997754120218048],[127,240,77,-0.19697365847848725],[127,240,78,-0.19386061383380926],[127,240,79,-0.19064047471911827],[127,241,64,-0.22424292391032474],[127,241,65,-0.22262921021091653],[127,241,66,-0.22089314356571998],[127,241,67,-0.21903522146912513],[127,241,68,-0.21705606070143046],[127,241,69,-0.21495639920831056],[127,241,70,-0.2127370979795723],[127,241,71,-0.21039914292727946],[127,241,72,-0.20794364676320543],[127,241,73,-0.20537185087570564],[127,241,74,-0.20268512720579968],[127,241,75,-0.1998849801227346],[127,241,76,-0.19697304829883766],[127,241,77,-0.19395110658371728],[127,241,78,-0.19082106787782582],[127,241,79,-0.1875849850053396],[127,242,64,-0.22146498003929227],[127,242,65,-0.21981883451411555],[127,242,66,-0.21805149361634102],[127,242,67,-0.21616345786379632],[127,242,68,-0.21415534574286754],[127,242,69,-0.21202789555426993],[127,242,70,-0.20978196725785225],[127,242,71,-0.20741854431651463],[127,242,72,-0.2049387355392006],[127,242,73,-0.20234377692305627],[127,242,74,-0.19963503349454093],[127,242,75,-0.196814001149769],[127,242,76,-0.19388230849388477],[127,242,77,-0.19084171867953115],[127,242,78,-0.18769413124442758],[127,242,79,-0.18444158394800825],[127,243,64,-0.21861228843980096],[127,243,65,-0.21693270642055495],[127,243,66,-0.21513312184441258],[127,243,67,-0.213214038397178],[127,243,68,-0.21117607637447555],[127,243,69,-0.20901997449268894],[127,243,70,-0.2067465916986697],[127,243,71,-0.20435690897829628],[127,243,72,-0.20185203116384254],[127,243,73,-0.19923318874024998],[127,243,74,-0.19650173965008855],[127,243,75,-0.1936591710974831],[127,243,76,-0.19070710135081137],[127,243,77,-0.18764728154422994],[127,243,78,-0.1844815974780467],[127,243,79,-0.18121207141789064],[127,244,64,-0.21568660930813188],[127,244,65,-0.21397260044752997],[127,244,66,-0.21213981653087233],[127,244,67,-0.21018876455895819],[127,244,68,-0.20812006674281724],[127,244,69,-0.20593446227869217],[127,244,70,-0.2036328091215165],[127,244,71,-0.20121608575696848],[127,244,72,-0.19868539297206267],[127,244,73,-0.1960419556243721],[127,244,74,-0.1932871244096631],[127,244,75,-0.19042237762822622],[127,244,76,-0.18744932294970262],[127,244,77,-0.18436969917646662],[127,244,78,-0.181185378005581],[127,244,79,-0.17789836578927598],[127,245,64,-0.21268980296646056],[127,245,65,-0.21094039242166962],[127,245,66,-0.20907346840696261],[127,245,67,-0.2070895413875382],[127,245,68,-0.2049892355989723],[127,245,69,-0.2027732907851263],[127,245,70,-0.2004425639342673],[127,245,71,-0.19799803101348323],[127,245,72,-0.19544078870135084],[127,245,73,-0.19277205611895254],[127,245,74,-0.1899931765590236],[127,245,75,-0.18710561921351143],[127,245,76,-0.1841109808993482],[127,245,77,-0.18101098778249725],[127,245,78,-0.17780749710028898],[127,245,79,-0.17450249888199687],[127,246,64,-0.2096238253554641],[127,246,65,-0.20783805492791696],[127,246,66,-0.20593606606121095],[127,246,67,-0.20391837283664382],[127,246,68,-0.20178560162640413],[127,246,69,-0.19953849279330027],[127,246,70,-0.1971779023884076],[127,246,71,-0.1947048038467184],[127,246,72,-0.19212028968075257],[127,246,73,-0.18942557317222564],[127,246,74,-0.18662199006155344],[127,246,75,-0.18371100023547693],[127,246,76,-0.18069418941260906],[127,246,77,-0.17757327082696228],[127,246,78,-0.1743500869094723],[127,246,79,-0.1710266109674723],[127,247,64,-0.20649072358545528],[127,247,65,-0.20466765281752342],[127,247,66,-0.2027296914058987],[127,247,67,-0.20067735720187618],[127,247,68,-0.19851127882919928],[127,247,69,-0.19623219734451502],[127,247,70,-0.1938409678954448],[127,247,71,-0.19133856137635552],[127,247,72,-0.18872606608178977],[127,247,73,-0.18600468935765346],[127,247,74,-0.18317575924993357],[127,247,75,-0.1802407261512402],[127,247,76,-0.17720116444496448],[127,247,77,-0.17405877414711723],[127,247,78,-0.17081538254586204],[127,247,79,-0.1674729458386961],[127,248,64,-0.20329263154596167],[127,248,65,-0.20143133877497887],[127,248,66,-0.19945651520293406],[127,248,67,-0.1973686826071186],[127,248,68,-0.19516847198059395],[127,248,69,-0.1928566251522914],[127,248,70,-0.1904339964044145],[127,248,71,-0.18790155408723097],[127,248,72,-0.18526038223121233],[127,248,73,-0.18251168215661984],[127,248,74,-0.17965677408030978],[127,248,75,-0.1766970987200509],[127,248,76,-0.17363421889614616],[127,248,77,-0.17046982113042586],[127,248,78,-0.16720571724262134],[127,248,79,-0.1638438459440772],[127,249,64,-0.200031765573908],[127,249,65,-0.19813134894403506],[127,249,66,-0.19611879264928833],[127,249,67,-0.19399462255095834],[127,249,68,-0.19175947213195144],[127,249,69,-0.18941408407546656],[127,249,70,-0.18695931184065118],[127,249,71,-0.18439612123532811],[127,249,72,-0.18172559198574778],[127,249,73,-0.1789489193034678],[127,249,74,-0.1760674154491274],[127,249,75,-0.17308251129341867],[127,249,76,-0.1699957578750374],[127,249,77,-0.16680882795568586],[127,249,78,-0.1635235175721359],[127,249,79,-0.1601417475853084],[127,250,64,-0.19671042018032536],[127,250,65,-0.19476999861274447],[127,250,66,-0.19271885902192165],[127,250,67,-0.19055753151305077],[127,250,68,-0.18828665218211305],[127,250,69,-0.18590696465207557],[127,250,70,-0.1834193216057397],[127,250,71,-0.18082468631532966],[127,250,72,-0.17812413416877637],[127,250,73,-0.17531885419279902],[127,250,74,-0.17241015057255082],[127,250,75,-0.16939944416813135],[127,250,76,-0.16628827402774948],[127,250,77,-0.16307829889760694],[127,250,78,-0.15977129872851203],[127,250,79,-0.1563691761791811],[127,251,64,-0.19333096383550197],[127,251,65,-0.19134967795743085],[127,251,66,-0.18925912538210632],[127,251,67,-0.18705984062033143],[127,251,68,-0.18475246250703015],[127,251,69,-0.18233773569393086],[127,251,70,-0.17981651213856054],[127,251,71,-0.17718975258963865],[127,251,72,-0.174458528068827],[127,251,73,-0.17162402134893917],[127,251,74,-0.1686875284283723],[127,251,75,-0.16565046000206796],[127,251,76,-0.1625143429287832],[127,251,77,-0.159280821694743],[127,251,78,-0.15595165987368387],[127,251,79,-0.15252874158324436],[127,252,64,-0.18989583481274086],[127,252,65,-0.18787284784575553],[127,252,66,-0.185742074339321],[127,252,67,-0.1835040533732517],[127,252,68,-0.1811594266498533],[127,252,69,-0.17870893994207127],[127,252,70,-0.1761534445376005],[127,252,71,-0.1734938986790442],[127,252,72,-0.170731369000083],[127,252,73,-0.16786703195775243],[127,252,74,-0.1649021752605948],[127,252,75,-0.1618381992929916],[127,252,76,-0.1586766185354569],[127,252,77,-0.15541906298096408],[127,252,78,-0.1520672795473137],[127,252,79,-0.14862313348550105],[127,253,64,-0.18640753709064434],[127,253,65,-0.18434203569880225],[127,253,66,-0.18217025587463176],[127,253,67,-0.17989274143195277],[127,253,68,-0.17751013707139307],[127,253,69,-0.17502318978299936],[127,253,70,-0.1724327502444477],[127,253,71,-0.1697397742149498],[127,253,72,-0.16694532392480654],[127,253,73,-0.1640505694607166],[127,253,74,-0.16105679014659768],[127,253,75,-0.1579653759202322],[127,253,76,-0.15477782870551582],[127,253,77,-0.15149576378038043],[127,253,78,-0.14812091114040182],[127,253,79,-0.14465511685804655],[127,254,64,-0.18286863631383687],[127,254,65,-0.18075983141208618],[127,254,66,-0.17854628322346738],[127,254,67,-0.17622854046228587],[127,254,68,-0.1738072509608598],[127,254,69,-0.17128316302560853],[127,254,70,-0.16865712678837275],[127,254,71,-0.16593009555306204],[127,254,72,-0.1631031271375838],[127,254,73,-0.1601773852111602],[127,254,74,-0.15715414062678812],[127,254,75,-0.1540347727491599],[127,254,76,-0.15082077077781764],[127,254,77,-0.14751373506561505],[127,254,78,-0.14411537843249644],[127,254,79,-0.14062752747454932],[127,255,64,-0.17928175581229622],[127,255,65,-0.17712888333566512],[127,255,66,-0.17487282881797023],[127,255,67,-0.17251414604185977],[127,255,68,-0.1700534861070624],[127,255,69,-0.16749159873898767],[127,255,70,-0.16482933359218155],[127,255,71,-0.16206764154873265],[127,255,72,-0.1592075760115833],[127,255,73,-0.15625029419285352],[127,255,74,-0.15319705839693032],[127,255,75,-0.15004923729864272],[127,255,76,-0.14680830721629312],[127,255,77,-0.1434758533796212],[127,255,78,-0.14005357119270678],[127,255,79,-0.1365432674917718],[127,256,64,-0.1756495726792161],[127,256,65,-0.17345189431326835],[127,256,66,-0.1711526202888322],[127,256,67,-0.16875230962602544],[127,256,68,-0.16625161682998024],[127,256,69,-0.16365129315101123],[127,256,70,-0.1609521878392528],[127,256,71,-0.15815524939386005],[127,256,72,-0.15526152680673166],[127,256,73,-0.15227217080085997],[127,256,74,-0.14918843506305857],[127,256,75,-0.14601167747139365],[127,256,76,-0.14274336131708476],[127,256,77,-0.13938505652095223],[127,256,78,-0.13593844084442108],[127,256,79,-0.13240530109503457],[127,257,64,-0.1719748139072973],[127,257,65,-0.1697316177803454],[127,257,66,-0.16738843652652413],[127,257,67,-0.16494583457370537],[127,257,68,-0.16240446997260982],[127,257,69,-0.1597650956076178],[127,257,70,-0.15702856040165503],[127,257,71,-0.1541958105152481],[127,257,72,-0.15126789053970802],[127,257,73,-0.14824594468454566],[127,257,74,-0.14513121795887163],[127,257,75,-0.14192505734710537],[127,257,76,-0.1386289129787589],[127,257,77,-0.13524433929237456],[127,257,78,-0.13177299619362304],[127,257,79,-0.12821665020751827],[127,258,64,-0.16826025258365696],[127,258,65,-0.16597085392122257],[127,258,66,-0.16358310380210028],[127,258,67,-0.16109757223325039],[127,258,68,-0.1585149209532739],[127,258,69,-0.15583590459296692],[127,258,70,-0.15306137182954271],[127,258,71,-0.15019226653462314],[127,258,72,-0.14722962891595287],[127,258,73,-0.14417459665294552],[127,258,74,-0.14102840602580735],[127,258,75,-0.13779239303857072],[127,258,76,-0.13446799453579716],[127,258,77,-0.13105674931303168],[127,258,78,-0.12756029922101497],[127,258,79,-0.12398039026360885],[127,259,64,-0.16450870414326468],[127,259,65,-0.16217244588527402],[127,259,66,-0.15973949194749276],[127,259,67,-0.1572104180882377],[127,259,68,-0.15458588987830485],[127,259,69,-0.15186666381038427],[127,259,70,-0.149053588401734],[127,259,71,-0.14614760529020804],[127,259,72,-0.14314975032359722],[127,259,73,-0.14006115464239138],[127,259,74,-0.13688304575570376],[127,259,75,-0.13361674861069694],[127,259,76,-0.13026368665526566],[127,259,77,-0.1268253828940582],[127,259,78,-0.12330346093784494],[127,259,79,-0.11969964604618821],[127,260,64,-0.16072302268080596],[127,260,65,-0.15833927606201237],[127,260,66,-0.15586051059519107],[127,260,67,-0.15328730796310697],[127,260,68,-0.15062033771499672],[127,260,69,-0.14786035832398942],[127,260,70,-0.14500821823736654],[127,260,71,-0.1420648569197533],[127,260,72,-0.13903130588920526],[127,260,73,-0.1359086897462939],[127,260,74,-0.132698227195935],[127,260,75,-0.1294012320622986],[127,260,76,-0.12601911429655382],[127,260,77,-0.12255338097753476],[127,260,78,-0.11900563730532998],[127,260,79,-0.11537758758775551],[127,261,64,-0.15690609732116712],[127,261,65,-0.15447426241528844],[127,261,66,-0.15194910547750462],[127,261,67,-0.149331214288829],[127,261,68,-0.14662126252502622],[127,261,69,-0.14382001076120765],[127,261,70,-0.14092830746883434],[127,261,71,-0.13794709000522676],[127,261,72,-0.13487738559553458],[127,261,73,-0.13172031230728443],[127,261,74,-0.128477080017234],[127,261,75,-0.12514899137088448],[127,261,76,-0.12173744273439618],[127,261,77,-0.1182439251389974],[127,261,78,-0.11467002521788855],[127,261,79,-0.11101742613559923],[127,262,64,-0.15306084864844482],[127,262,65,-0.1505803548765064],[127,262,66,-0.14800825478531132],[127,262,67,-0.14534514242851543],[127,262,68,-0.14259169575824643],[127,262,69,-0.1397486775760674],[127,262,70,-0.13681693647590754],[127,262,71,-0.13379740777906196],[127,262,72,-0.1306911144612185],[127,262,73,-0.12749916807161976],[127,262,74,-0.12422276964409934],[127,262,75,-0.120863210600335],[127,262,76,-0.11742187364507112],[127,262,77,-0.11390023365339652],[127,262,78,-0.11029985855007751],[127,262,79,-0.10662241018091162],[127,263,64,-0.1491902251933836],[127,263,65,-0.14666053179675526],[127,263,66,-0.14404096558619078],[127,263,67,-0.1413321270628609],[127,263,68,-0.13853469860674505],[127,263,69,-0.1356494453731797],[127,263,70,-0.1326772161809251],[127,263,71,-0.12961894439186045],[127,263,72,-0.1264756487822552],[127,263,73,-0.1232484344057353],[127,263,74,-0.11993849344767377],[127,263,75,-0.11654710607135599],[127,263,76,-0.11307564125566827],[127,263,77,-0.10952555762439348],[127,263,78,-0.10589840426712199],[127,263,79,-0.10219582155173218],[127,264,64,-0.14529719997944562],[127,264,65,-0.14271779645806332],[127,264,66,-0.14005027030215328],[127,264,67,-0.1372952286356372],[127,264,68,-0.13445335841938955],[127,264,69,-0.1315254272926143],[127,264,70,-0.12851228440528695],[127,264,71,-0.12541486124176637],[127,264,72,-0.12223417243553475],[127,264,73,-0.1189713165751764],[127,264,74,-0.11562747700132686],[127,264,75,-0.11220392259494433],[127,264,76,-0.10870200855665102],[127,264,77,-0.10512317717722763],[127,264,78,-0.10146895859926913],[127,264,79,-0.09774097156995709],[127,265,64,-0.14138476712734],[127,265,65,-0.13875517364360052],[127,265,66,-0.13603922324678797],[127,265,67,-0.13323752985905452],[127,265,68,-0.13035078517666954],[127,265,69,-0.12737975945549318],[127,265,70,-0.12432530228705269],[127,265,71,-0.12118834336532958],[127,265,72,-0.11796989324421009],[127,265,73,-0.11467104408571682],[127,265,74,-0.11129297039874514],[127,265,75,-0.10783692976866477],[127,265,76,-0.10430426357752526],[127,265,77,-0.10069639771495775],[127,265,78,-0.09701484327977261],[127,265,79,-0.09326119727221477],[127,266,64,-0.13745593851814358],[127,266,65,-0.1347757062669649],[127,266,66,-0.13201089722196202],[127,266,67,-0.12916213227912848],[127,266,68,-0.1262301080259829],[127,266,69,-0.1232155974704367],[127,266,70,-0.12011945075979513],[127,266,71,-0.11694259588999834],[127,266,72,-0.11368603940505834],[127,266,73,-0.1103508670868073],[127,266,74,-0.10693824463467944],[127,266,75,-0.1034494183358915],[127,266,76,-0.09988571572575694],[127,266,77,-0.09624854623822598],[127,266,78,-0.09253940184665449],[127,266,79,-0.08875985769475842],[127,267,64,-0.13351374051483472],[127,267,65,-0.1307824520603661],[127,267,66,-0.1279683801738925],[127,267,67,-0.12507215290086982],[127,267,68,-0.12209447187717198],[127,267,69,-0.11903611300067768],[127,267,70,-0.11589792709251112],[127,267,71,-0.11268084054804794],[127,267,72,-0.10938585597763728],[127,267,73,-0.10601405283716125],[127,267,74,-0.10256658804814867],[127,267,75,-0.09904469660781218],[127,267,76,-0.0954496921887415],[127,267,77,-0.09178296772834482],[127,267,78,-0.0880459960080433],[127,267,79,-0.08424033022217398],[127,268,64,-0.1295612107424523],[127,268,65,-0.1267784803219294],[127,268,66,-0.12391477190880529],[127,268,67,-0.1209707208735128],[127,268,68,-0.11794703405853535],[127,268,69,-0.11484449039206401],[127,268,70,-0.11166394149082326],[127,268,71,-0.10840631225217728],[127,268,72,-0.10507260143546793],[127,268,73,-0.1016638822327075],[127,268,74,-0.09818130282833787],[127,268,75,-0.09462608694843161],[127,268,76,-0.09099953439906283],[127,268,77,-0.08730302159394421],[127,268,78,-0.08353800207132933],[127,268,79,-0.07970600700014158],[127,269,64,-0.12560139492677863],[127,269,65,-0.12276686872201059],[127,269,66,-0.11985318086807817],[127,269,67,-0.11686097423568192],[127,269,68,-0.11379096103321029],[127,269,69,-0.1106439233618477],[127,269,70,-0.10742071375935913],[127,269,71,-0.10412225573266087],[127,269,72,-0.1007495442791349],[127,269,73,-0.0973036463968035],[127,269,74,-0.09378570158307858],[127,269,75,-0.09019692232246307],[127,269,76,-0.08653859456292873],[127,269,77,-0.0828120781810684],[127,269,78,-0.07901880743602274],[127,269,79,-0.07516029141214087],[127,270,64,-0.1216373437914483],[127,270,65,-0.11875070016842465],[127,270,66,-0.11578672096276732],[127,270,67,-0.11274605672039084],[127,270,68,-0.1096294251758187],[127,270,69,-0.10643761174814992],[127,270,70,-0.10317147002520383],[127,270,71,-0.09983192223595189],[127,270,72,-0.09641995971119316],[127,270,73,-0.09293664333259355],[127,270,74,-0.08938310396979754],[127,270,75,-0.08576054290599572],[127,270,76,-0.08207023225166843],[127,270,77,-0.07831351534660524],[127,270,78,-0.07449180715019993],[127,270,79,-0.07060659461998037],[127,271,64,-0.11767211001368005],[127,271,65,-0.11473305973079129],[127,271,66,-0.11171850846771997],[127,271,67,-0.10862911462008157],[127,271,68,-0.10546560160958873],[127,271,69,-0.10222875832031736],[127,271,70,-0.09891943952264132],[127,271,71,-0.09553856628494989],[127,271,72,-0.09208712637310157],[127,271,73,-0.08856617463773792],[127,271,74,-0.08497683338916057],[127,271,75,-0.0813202927601615],[127,271,76,-0.07759781105652125],[127,271,77,-0.07381071509527837],[127,271,78,-0.06996040053076708],[127,271,79,-0.06604833216838507],[127,272,64,-0.11370874523853525],[127,272,65,-0.11071703162389324],[127,272,66,-0.1076516589751747],[127,272,67,-0.10451329371160162],[127,272,68,-0.10130266510384622],[127,272,69,-0.09802056565006295],[127,272,70,-0.09466785143907441],[127,272,71,-0.09124544250082761],[127,272,72,-0.08775432314407472],[127,272,73,-0.08419554228140014],[127,272,74,-0.08057021374129786],[127,272,75,-0.07687951656769032],[127,272,76,-0.07312469530660126],[127,272,77,-0.06930706028008776],[127,272,78,-0.06542798784742782],[127,272,79,-0.06148892065352418],[127,273,64,-0.10975029715159912],[127,273,65,-0.1067056962499478],[127,273,66,-0.10358928440773985],[127,273,67,-0.1004017362410119],[127,273,68,-0.0971437870317699],[127,273,69,-0.09381623304328413],[127,273,70,-0.09041993182201741],[127,273,71,-0.08695580248630524],[127,273,72,-0.08342482600173917],[127,273,73,-0.07982804544338007],[127,273,74,-0.07616656624449847],[127,273,75,-0.07244155643223982],[127,273,76,-0.068654246849924],[127,273,77,-0.06480593136608326],[127,273,78,-0.0608979670702372],[127,273,79,-0.05693177445536507],[127,274,64,-0.10579980661028754],[127,274,65,-0.10270212729999417],[127,274,66,-0.09953449009096332],[127,274,67,-0.09629757796843752],[127,274,68,-0.09299213238862236],[127,274,69,-0.08961895353277105],[127,274,70,-0.08617890054737715],[127,274,71,-0.08267289177059167],[127,274,72,-0.07910190494481956],[127,274,73,-0.07546697741561842],[127,274,74,-0.07176920631659928],[127,274,75,-0.06800974874072618],[127,274,76,-0.06418982189772399],[127,274,77,-0.06031070325769988],[127,274,78,-0.05637373068097429],[127,274,79,-0.05238030253408377],[127,275,64,-0.10186030483367958],[127,275,65,-0.09870938891429598],[127,275,66,-0.09549037188538562],[127,275,67,-0.09220394527285447],[127,275,68,-0.08885085687035127],[127,275,69,-0.08543191093170122],[127,275,70,-0.08194796834891388],[127,275,71,-0.07839994681588436],[127,275,72,-0.07478882097773948],[127,275,73,-0.07111562256595794],[127,275,74,-0.06738144051895567],[127,275,75,-0.06358742108854198],[127,275,76,-0.05973476793194893],[127,275,77,-0.05582474218954375],[127,275,78,-0.05185866254821819],[127,275,79,-0.04783790529041754],[127,276,64,-0.09793481065077242],[127,276,65,-0.09473053290165423],[127,276,66,-0.09146001337797488],[127,276,67,-0.08812395231670811],[127,276,68,-0.08472310401245359],[127,276,69,-0.08125827694780868],[127,276,70,-0.07773033390877437],[127,276,71,-0.07414019208531569],[127,276,72,-0.07048882315703014],[127,276,73,-0.06677725336405227],[127,276,74,-0.06300656356288209],[127,276,75,-0.05917788926755024],[127,276,76,-0.05529242067581547],[127,276,77,-0.05135140268050792],[127,276,78,-0.04735613486601037],[127,276,79,-0.04330797148984211],[127,277,64,-0.09402632780736259],[127,277,65,-0.0907685960178386],[127,277,66,-0.08744648313315034],[127,277,67,-0.08406069827057361],[127,277,68,-0.0806120023893161],[127,277,69,-0.07710120835844647],[127,277,70,-0.07352918100931244],[127,277,71,-0.069896837172568],[127,277,72,-0.06620514569976621],[127,277,73,-0.0624551274696441],[127,277,74,-0.05864785537878525],[127,277,75,-0.05478445431707707],[127,277,76,-0.05086610112765605],[127,277,77,-0.046894024551453584],[127,277,78,-0.04286950515633642],[127,277,79,-0.038793875250805854],[127,278,64,-0.090137842331452],[127,278,65,-0.0868265973030315],[127,278,66,-0.08345283200329012],[127,278,67,-0.08001726459775271],[127,278,68,-0.07652066287392534],[127,278,69,-0.07296384424643232],[127,278,70,-0.06934767574609069],[127,278,71,-0.06567307399304506],[127,278,72,-0.06194100515391776],[127,278,73,-0.05815248488310182],[127,278,74,-0.05430857824788077],[127,278,75,-0.050410399637794256],[127,278,76,-0.046459112657942],[127,278,77,-0.042455930006337905],[127,278,78,-0.038402113335309684],[127,278,79,-0.034298973096905994],[127,279,64,-0.08627231995707713],[127,279,65,-0.08290753547818525],[127,279,66,-0.07948209049862154],[127,279,67,-0.07599671239870331],[127,279,68,-0.07245217595784226],[127,279,69,-0.06884930329657152],[127,279,70,-0.06518896380195327],[127,279,71,-0.06147207403649274],[127,279,72,-0.057699597630510246],[127,279,73,-0.05387254515810358],[127,279,74,-0.049991973996378836],[127,279,75,-0.046058988168375004],[127,279,76,-0.04207473816936852],[127,279,77,-0.03804042077667563],[127,279,78,-0.033957278842942695],[127,279,79,-0.02982660107289048],[127,280,64,-0.08243270360676519],[127,280,65,-0.07901438640049557],[127,280,66,-0.07553726621669948],[127,280,67,-0.07200207981550999],[127,280,68,-0.06840960913165184],[127,280,69,-0.06476068115307182],[127,280,70,-0.061056167782388315],[127,280,71,-0.05729698568128633],[127,280,72,-0.05348409609781074],[127,280,73,-0.04961850467668977],[127,280,74,-0.04570126125236401],[127,280,75,-0.04173345962515168],[127,280,76,-0.037716237320231605],[127,280,77,-0.03365077532956384],[127,280,78,-0.029538297836738392],[127,280,79,-0.025380071924715475],[127,281,64,-0.07862191093251197],[127,281,65,-0.07515010057788735],[127,281,66,-0.07162134133136766],[127,281,67,-0.06803637949628977],[127,281,68,-0.06439600432578141],[127,281,69,-0.06070104783774055],[127,281,70,-0.05695238461206703],[127,281,71,-0.053150931570273785],[127,281,72,-0.04929764773743056],[127,281,73,-0.045393533986574086],[127,281,74,-0.0414396327652552],[127,281,75,-0.03743702780465935],[127,281,76,-0.03338684381097806],[127,281,77,-0.029290246139152598],[127,281,78,-0.025148440448979792],[127,281,79,-0.02096267234354504],[127,282,64,-0.07484283191518748],[127,282,65,-0.07131760074241628],[127,282,66,-0.06773727014110564],[127,282,67,-0.06410259611943342],[127,282,68,-0.060414375411585786],[127,282,69,-0.056673445228861974],[127,282,70,-0.05288068299245979],[127,282,71,-0.049037006048070875],[127,282,72,-0.04514337136223656],[127,282,73,-0.04120077520060289],[127,282,74,-0.03721025278773826],[127,282,75,-0.03317287794895718],[127,282,76,-0.029089762733822744],[127,282,77,-0.02496205702145221],[127,282,78,-0.020790948107613227],[127,282,79,-0.016577660273577044],[127,283,64,-0.07109832652256504],[127,283,65,-0.06751977948278448],[127,283,66,-0.0638879766769605],[127,283,67,-0.060203683977885336],[127,283,68,-0.056467705762905995],[127,283,69,-0.05268088460096365],[127,283,70,-0.048844100920737044],[127,283,71,-0.04495827266002039],[127,283,72,-0.04102435489628814],[127,283,73,-0.03704333945858301],[127,283,74,-0.03301625452039081],[127,283,75,-0.028944164173948073],[127,283,76,-0.024828167985652405],[127,283,77,-0.020669400532701054],[127,283,78,-0.016469030920945038],[127,283,79,-0.012228262283925373],[127,284,64,-0.06739122242587253],[127,284,65,-0.06375949693586824],[127,284,66,-0.060076352369963226],[127,284,67,-0.05634256462335935],[127,284,68,-0.052558945877996255],[127,284,69,-0.048726344225365814],[127,284,70,-0.044845643269848634],[127,284,71,-0.04091776171270817],[127,284,72,-0.03694365291668983],[127,284,73,-0.032924304451366015],[127,284,74,-0.02886073761888669],[127,284,75,-0.02475400696058505],[127,284,76,-0.02060519974410535],[127,284,77,-0.016415435431179792],[127,284,78,-0.01218586512604164],[127,284,79,-0.007917671004441296],[127,285,64,-0.0637243127747737],[127,285,65,-0.060039578537164295],[127,285,66,-0.05630525377793072],[127,285,67,-0.05252212457039085],[127,285,68,-0.0486910110617198],[127,285,69,-0.044812767031412126],[127,285,70,-0.04088827942968132],[127,285,71,-0.03691846789593195],[127,285,72,-0.03290428425725467],[127,285,73,-0.028846712007083997],[127,285,74,-0.024746765763675516],[127,285,75,-0.02060549070885731],[127,285,76,-0.016423962006718557],[127,285,77,-0.012203284202363968],[127,285,78,-0.007944590600720974],[127,285,79,-0.003649042625365473],[127,286,64,-0.06010035403097008],[127,286,65,-0.05636281283034658],[127,286,66,-0.05257750037185288],[127,286,67,-0.048745213060427145],[127,286,68,-0.04486677916821624],[127,286,69,-0.04094305832858894],[127,286,70,-0.036974941009499135],[127,286,71,-0.03296334796633285],[127,286,72,-0.028909229674191878],[127,286,73,-0.02481356573975191],[127,286,74,-0.020677364292352063],[127,286,75,-0.01650166135477249],[127,286,76,-0.012287520193360407],[127,286,77,-0.008036030647635084],[127,286,78,-0.0037483084393579447],[127,286,79,5.745055389669851E-4],[127,287,64,-0.05652206386032543],[127,287,65,-0.05273194933583655],[127,287,66,-0.04889587238176135],[127,287,67,-0.04501463988585147],[127,287,68,-0.04108908840393655],[127,287,69,-0.037120083589424896],[127,287,70,-0.033108519601562164],[127,287,71,-0.029055318492583276],[127,287,72,-0.02496142957370842],[127,287,73,-0.020827828760124706],[127,287,74,-0.01665551789460487],[127,287,75,-0.012445524050224838],[127,287,76,-0.008198898811838135],[127,287,77,-0.003916717536437825],[127,287,78,3.999214076084445E-4],[127,287,79,0.004749897422482691],[127,288,64,-0.05299211908342369],[127,288,65,-0.04914969647829409],[127,288,66,-0.04526310870198935],[127,288,67,-0.04133317327384822],[127,288,68,-0.03736073519095112],[127,288,69,-0.033346666293077865],[127,288,70,-0.029291864605826362],[127,288,71,-0.02519725366203035],[127,288,72,-0.021063781801426013],[127,288,73,-0.01689242144871128],[127,288,74,-0.012684168369643811],[127,288,75,-0.008440040905647234],[127,288,76,-0.0041610791865767105],[127,288,77,1.516556782216183E-4],[127,288,78,0.004497082430573174],[127,288,79,0.008874100515891353],[127,289,64,-0.04951315368475295],[127,289,65,-0.04561871957322605],[127,289,66,-0.0416819048560223],[127,289,67,-0.037703537830312106],[127,289,68,-0.033684472090735135],[127,289,69,-0.02962558582981481],[127,289,70,-0.02552778111593368],[127,289,71,-0.02139198314901075],[127,289,72,-0.017219139493829305],[127,289,73,-0.013010219291160197],[127,289,74,-0.008766212446324223],[127,289,75,-0.0044881287956664295],[127,289,76,-1.7699725059061588E-4],[127,289,77,0.004166135080709565],[127,289,78,0.008540203793839934],[127,289,79,0.01294412811114723],[127,290,64,-0.04608775688035427],[127,290,65,-0.042141638872548265],[127,290,66,-0.03815491102076948],[127,290,67,-0.034128412543630054],[127,290,68,-0.030063005788260294],[127,290,69,-0.025959575466211388],[127,290,70,-0.021819027866316926],[127,290,71,-0.01764229004465545],[127,290,72,-0.013430308991562168],[127,290,73,-0.00918405077583645],[127,290,74,-0.0049044996657848505],[127,290,75,-5.926572275776754E-4],[127,290,76,0.003750458599436818],[127,290,77,0.008123814450322175],[127,290,78,0.012526362505065086],[127,290,79,0.01695704148203972],[127,291,64,-0.042718471244053535],[127,291,65,-0.03872102766922092],[127,291,66,-0.03468473011038245],[127,291,67,-0.030610428848461907],[127,291,68,-0.026498995136517933],[127,291,69,-0.022351320371198136],[127,291,70,-0.018168315240548155],[127,291,71,-0.013950908848316845],[127,291,72,-0.00970004781470754],[127,291,73,-0.005416695353721829],[127,291,74,-0.0011018303267335272],[127,291,75,0.003243553727226317],[127,291,76,0.00761844958483085],[127,291,77,0.012021837355326748],[127,291,78,0.016452685520929294],[127,291,79,0.020909952000773724],[127,292,64,-0.039407790892120015],[127,292,65,-0.03535941046079921],[127,292,66,-0.03127391591945683],[127,292,67,-0.027152168749354916],[127,292,68,-0.022995049261308437],[127,292,69,-0.018803455702786603],[127,292,70,-0.014578303340761462],[127,292,71,-0.010320523520446573],[127,292,72,-0.006031062699874884],[127,292,73,-0.001710881460464303],[127,292,74,0.0026390465067957503],[127,292,75,0.007017735439050016],[127,292,76,0.011424188563537968],[127,292,77,0.015857399183667298],[127,292,78,0.020316351789220644],[127,292,79,0.024800023190724246],[127,293,64,-0.036158159726539685],[127,293,65,-0.032059261172088654],[127,293,66,-0.027924971325811593],[127,293,67,-0.023756163004389153],[127,293,68,-0.01955372572649572],[127,293,69,-0.015318564755675002],[127,293,70,-0.01105160011835224],[127,293,71,-0.006753765597128342],[127,293,72,-0.0024260076993042334],[127,293,73,0.0019307153992143278],[127,293,74,0.006315434935002501],[127,293,75,0.010727172662700096],[127,293,76,0.01516494198546034],[127,293,77,0.019627749110119996],[127,293,78,0.024114594227111152],[127,293,79,0.02862447271514368],[127,294,64,-0.03297196973680819],[127,294,65,-0.028823001436810852],[127,294,66,-0.02464034655274891],[127,294,67,-0.020424889368754806],[127,294,68,-0.016177528759626414],[127,294,69,-0.01189917716963415],[127,294,70,-0.007590759565852673],[127,294,71,-0.003253212366164396],[127,294,72,0.001112517658117651],[127,294,73,0.005505474504856944],[127,294,74,0.009924694089302868],[127,294,75,0.014369205417407133],[127,294,76,0.018838031784617806],[127,294,77,0.023330192000004094],[127,294,78,0.02784470163573391],[127,294,79,0.03238057430193354],[127,295,64,-0.029851559360167937],[127,295,65,-0.025652998938200944],[127,295,66,-0.021422437490714444],[127,295,67,-0.01716077089818105],[127,295,68,-0.012868907537832958],[127,295,69,-0.008547767198590003],[127,295,70,-0.004198279969898744],[127,295,71,1.7861489536968866E-4],[127,295,72,0.004581970144014874],[127,295,73,0.009010831711443318],[127,295,74,0.013464239936822678],[127,295,75,0.01794123080395274],[127,295,76,0.0224408372082273],[127,295,77,0.02696209024953984],[127,295,78,0.03150402055115424],[127,295,79,0.03606565960457017],[127,296,64,-0.026799211900452258],[127,296,65,-0.022551565808703017],[127,296,66,-0.018273584078529678],[127,296,67,-0.013966174312389487],[127,296,68,-0.009630254534194332],[127,296,69,-0.005266752040579331],[127,296,70,-8.766022254672046E-4],[127,296,71,0.003539252621922062],[127,296,72,0.007979864545669457],[127,296,73,0.01244428117820931],[127,296,74,0.016931547022215],[127,296,75,0.021440704758814294],[127,296,76,0.025970796582510808],[127,296,77,0.030520865562662355],[127,296,78,0.035089957031539415],[127,296,79,0.03967711999899176],[127,297,64,-0.0238171540054523],[127,297,65,-0.01952095708867818],[127,297,66,-0.015196068744104466],[127,297,67,-0.010843408418479944],[127,297,68,-0.0064639039244640956],[127,297,69,-0.0020584902284873224],[127,297,70,0.0023718917887094043],[127,297,71,0.0068262965987058305],[127,297,72,0.011303775319256387],[127,297,73,0.01580337703521277],[127,297,74,0.020324150146898284],[127,297,75,0.024865143745424145],[127,297,76,0.029425409015328738],[127,297,77,0.034004000664389314],[127,297,78,0.03859997838062884],[127,297,79,0.043212408316546894],[127,298,64,-0.02090755420273034],[127,298,65,-0.016563369244046874],[127,298,66,-0.0121921149045566],[127,298,67,-0.0077947225941737835],[127,298,68,-0.003372130054085834],[127,298,69,0.0010747199185142248],[127,298,70,0.005544880773632993],[127,298,71,0.010037403539469206],[127,298,72,0.014551338181245738],[127,298,73,0.019085734987726283],[127,298,74,0.023639645985801094],[127,298,75,0.028212126382630397],[127,298,76,0.032802236035727836],[127,298,77,0.03740904095083254],[127,298,78,0.04203161480759324],[127,298,79,0.04666904051309288],[127,299,64,-0.018072521494037],[127,299,65,-0.013680938743026783],[127,299,66,-0.009263885525895618],[127,299,67,-0.0048223053310744585],[127,299,68,-3.571459656615608E-4],[127,299,69,0.004130641782660233],[127,299,70,0.008640105512263484],[127,299,71,0.013170292602620079],[127,299,72,0.017720251637802373],[127,299,73,0.022289033858285033],[127,299,74,0.026875694641435986],[127,299,75,0.031479295010179965],[127,299,76,0.03609890317022058],[127,299,77,0.04073359607566818],[127,299,78,0.04538246102309717],[127,299,79,0.05004459727406133],[127,300,64,-0.015314104008250028],[127,300,65,-0.010875740691880575],[127,300,66,-0.006413481742189905],[127,300,67,-0.0019282828378631156],[127,300,68,0.002578898013212365],[127,300,69,0.0071071018745037795],[127,300,70,0.011655370310566106],[127,300,71,0.016222746845797616],[127,300,72,0.020808278452270304],[127,300,73,0.02541101706647793],[127,300,74,0.030030021135393846],[127,300,75,0.03466435719131631],[127,300,76,0.03931310145589221],[127,300,77,0.04397534147316387],[127,300,78,0.048650177771663645],[127,300,79,0.05333672555558394],[127,301,64,-0.0126342877127653],[127,301,65,-0.008149787529605462],[127,301,66,-0.003642941534143261],[127,301,67,8.852822966455426E-4],[127,301,68,0.005433915621817657],[127,301,69,0.010001991199122456],[127,301,70,0.01458854437745745],[127,301,71,0.01919261461896499],[127,301,72,0.02381324705082175],[127,301,73,0.028449494046563644],[127,301,74,0.03310041683734037],[127,301,75,0.037765087152573915],[127,301,76,0.04244258889041523],[127,301,77,0.04713201981784149],[127,301,78,0.051832493300419745],[127,301,79,0.05654314006176463],[127,302,64,-0.010034995183486571],[127,302,65,-0.0055050277817116355],[127,302,66,-9.54238467232877E-4],[127,302,67,0.003616392380433143],[127,302,68,0.008205885957736955],[127,302,69,0.012813266561459612],[127,302,70,0.01743756314349023],[127,302,71,0.02207781089586316],[127,302,72,0.026733052866106572],[127,302,73,0.03140234160274384],[127,302,74,0.03608474083134503],[127,302,75,0.040779327160598663],[127,302,76,0.045485191818801285],[127,302,77,0.05020144242060553],[127,302,78,0.05492720476405333],[127,302,79,0.05966162465792148],[127,303,64,-0.007518084433335587],[127,303,65,-0.0029433448730113616],[127,303,66,0.0016507195106718314],[127,303,67,0.006263115835274833],[127,303,68,0.010892854707911888],[127,303,69,0.015538951810886787],[127,303,70,0.0202004295183632],[127,303,71,0.02487631854391198],[127,303,72,0.02956565961898899],[127,303,73,0.034267505202183114],[127,303,74,0.03898092121963378],[127,303,75,0.04370498883608605],[127,303,76,0.0484388062569819],[127,303,77,0.05318149056142865],[127,303,78,0.057932179566070885],[127,303,79,0.06269003371989249],[127,304,64,-0.005085347799222128],[127,304,65,-4.66555999354655E-4],[127,304,66,0.004170091212273129],[127,304,67,0.008823588353868518],[127,304,68,0.013492935319400738],[127,304,69,0.018177139025052056],[127,304,70,0.02287521508732176],[127,304,71,0.027586189532625184],[127,304,72,0.03230910053844082],[127,304,73,0.03704300020584471],[127,304,74,0.04178695636383454],[127,304,75,0.04654005440490658],[127,304,76,0.05130139915228836],[127,304,77,0.05607011675866542],[127,304,78,0.06084535663643012],[127,304,79,0.06562629341947823],[127,305,64,-0.0027385108876045836],[127,305,65,0.0019235889415507067],[127,305,66,0.00660210329425432],[127,305,67,0.011296013996956593],[127,305,68,0.016004310109694678],[127,305,69,0.020725989632871335],[127,305,70,0.0254600612463054],[127,305,71,0.030205546080394313],[127,305,72,0.034961479519442326],[127,305,73,0.0397269130369917],[127,305,74,0.04450091606356352],[127,305,75,0.04928257788626611],[127,305,76,0.05407100958067761],[127,305,77,0.058865345974839764],[127,305,78,0.06366474764539065],[127,305,79,0.0684684029458628],[127,306,64,-4.7923157857322415E-4],[127,306,65,0.004225408360310923],[127,306,66,0.00894505128120891],[127,306,67,0.013678666230515713],[127,306,68,0.01842523131666894],[127,306,69,0.023183735476740682],[127,306,70,0.027953180275919316],[127,306,71,0.032732581739718894],[127,306,72,0.03752097221897092],[127,306,73,0.04231740228743467],[127,306,74,0.04712094267243512],[127,306,75,0.05193068621798281],[127,306,76,0.05674574988078588],[127,306,77,0.061565276758988555],[127,306,78,0.0663884381536656],[127,306,79,0.07121443566309832],[127,307,64,0.001690900911602771],[127,307,65,0.006437289927061326],[127,307,66,0.011197300530144484],[127,307,67,0.015969888903070793],[127,307,68,0.02075402208822589],[127,307,69,0.025548679814026823],[127,307,70,0.03035285635428997],[127,307,71,0.035165562420943826],[127,307,72,0.0399858270901384],[127,307,73,0.04481269976158758],[127,307,74,0.049645252151556594],[127,307,75,0.05448258031894438],[127,307,76,0.059323806724874285],[127,307,77,0.06416808232562636],[127,307,78,0.06901458869894089],[127,307,79,0.07386254020371873],[127,308,64,0.0037703669093412592],[127,308,65,0.008557691463607651],[127,308,66,0.013357287135440557],[127,308,67,0.01816809716300903],[127,308,68,0.02298907741150516],[127,308,69,0.027819198257709135],[127,308,70,0.03265744650867507],[127,308,71,0.037502827354373096],[127,308,72,0.04235436635434352],[127,308,73,0.04721111145819661],[127,308,74,0.05207213506037231],[127,308,75,0.056936536088607964],[127,308,76,0.061803442126528454],[127,308,77,0.06667201157019173],[127,308,78,0.07154143581861971],[127,308,79,0.0764109414983393],[127,309,64,0.005757717104093757],[127,309,65,0.010585141776555652],[127,309,66,0.015423518774323852],[127,309,67,0.020271778315961726],[127,309,68,0.025128864981726333],[127,309,69,0.029993739656240595],[127,309,70,0.034865381505896464],[127,309,71,0.03974278999082877],[127,309,72,0.04462498691151218],[127,309,73,0.04951101848981547],[127,309,74,0.0543999574849299],[127,309,75,0.05929090534361571],[127,309,76,0.06418299438518447],[127,309,77,0.0690753900210484],[127,309,78,0.07396729300886766],[127,309,79,0.07885794174131996],[127,310,64,0.007651573310218596],[127,310,65,0.012518241431480365],[127,310,66,0.017394575492914635],[127,310,67,0.022279492622303512],[127,310,68,0.027171926010719896],[127,310,69,0.03207082691268223],[127,310,70,0.03697516668165189],[127,310,71,0.041883938840712176],[127,310,72,0.046796161188479124],[127,310,73,0.05171087794008157],[127,310,74,0.05662716190362527],[127,310,75,0.0615441166915847],[127,310,76,0.06646087896754198],[127,310,77,0.07137662072810268],[127,310,78,0.07629055162001959],[127,310,79,0.08120192129255024],[127,311,64,0.009450629170275865],[127,311,65,0.014355663468025845],[127,311,66,0.01926911043273001],[127,311,67,0.024189874034658332],[127,311,68,0.029116875975028225],[127,311,69,0.03404905774299355],[127,311,70,0.038985382708585925],[127,311,71,0.043924838251445456],[127,311,72,0.04886643792539207],[127,311,73,0.053809223658672675],[127,311,74,0.05875226799030343],[127,311,75,0.06369467634194512],[127,311,76,0.06863558932573555],[127,311,77,0.07357418508790635],[127,311,78,0.0785096816882166],[127,311,79,0.0834413395152276],[127,312,64,0.011153650799802031],[127,312,65,0.01609615405599514],[127,312,66,0.02104585049770885],[127,312,67,0.026001630875473566],[127,312,68,0.030962405303643345],[127,312,69,0.03592710537354461],[127,312,70,0.040894686303185976],[127,312,71,0.045864129123361866],[127,312,72,0.05083444290020345],[127,312,73,0.0558046669940097],[127,312,74,0.060773873354782015],[127,312,75,0.06574116885389568],[127,312,76,0.07070569765233492],[127,312,77,0.0756666436053183],[127,312,78,0.08062323270334686],[127,312,79,0.08557473554969919],[127,313,64,0.012759477373604305],[127,313,65,0.017738533092471337],[127,313,66,0.022723596961796808],[127,313,67,0.027713546454704516],[127,313,68,0.032707280005422],[127,313,69,0.037703719177891865],[127,313,70,0.04270181087154806],[127,313,71,0.047700529564087754],[127,313,72,0.05269887959129642],[127,313,73,0.0576958974637532],[127,313,74,0.06269065422084609],[127,313,75,0.06768225782152516],[127,313,76,0.07266985557222336],[127,313,77,0.07765263659177121],[127,313,78,0.08262983431333717],[127,313,79,0.08760072902341831],[127,314,64,0.014267021653480066],[127,314,65,0.01928169473987283],[127,314,66,0.0243012260169944],[127,314,67,0.029324479627507616],[127,314,68,0.034350342236076276],[127,314,69,0.03937772525271496],[127,314,70,0.044405567093905585],[127,314,71,0.04943283548130996],[127,314,72,0.054458529778135714],[127,314,73,0.05948168336298279],[127,314,74,0.06450136604160081],[127,314,75,0.06951668649598447],[127,314,76,0.07452679477123722],[127,314,77,0.07953088480002884],[127,314,78,0.08452819696467978],[127,314,79,0.08951802069689588],[127,315,64,0.015675270457440174],[127,315,65,0.02072460790502427],[127,315,66,0.025777689261950204],[127,315,67,0.0308333652920295],[127,315,68,0.035890510804826706],[127,315,69,0.04094802693300069],[127,315,70,0.04600484344801134],[127,315,71,0.05105992111401897],[127,315,72,0.056112254080035534],[127,315,73,0.06116087231015216],[127,315,74,0.06620484405227722],[127,315,75,0.07124327834480731],[127,315,76,0.07627532756166588],[127,315,77,0.08130018999553185],[127,315,78,0.08631711247929305],[127,315,79,0.09132539304574758],[127,316,64,0.016983285070383144],[127,316,65,0.022066316659187582],[127,316,66,0.027152014131043095],[127,316,67,0.032239214827231105],[127,316,68,0.037326781620657334],[127,316,69,0.042413605246415825],[127,316,70,0.047498606671310256],[127,316,71,0.052580739502165436],[127,316,72,0.057658992432980616],[127,316,73,0.06273239173075665],[127,316,74,0.06780000376042641],[127,316,75,0.07286093754831185],[127,316,76,0.07791434738454331],[127,316,77,0.08295943546426285],[127,316,78,0.08799545456764646],[127,316,79,0.09302171077876817],[127,317,64,0.018190201596285732],[127,317,65,0.023305940599120195],[127,317,66,0.028423304264022953],[127,317,67,0.03354111647081995],[127,317,68,0.03865822807824687],[127,317,69,0.04377351930694062],[127,317,70,0.04888590216197988],[127,317,71,0.05399432289480641],[127,317,72,0.05909776450457899],[127,317,73,0.0641952492787905],[127,317,74,0.06928584137358065],[127,317,75,0.07436864943316462],[127,317,76,0.07944282924881466],[127,317,77,0.0845075864572167],[127,317,78,0.08956217927823623],[127,317,79,0.09460592129211595],[127,318,64,0.019295231251828526],[127,318,65,0.024442675149079884],[127,318,66,0.029590739816124173],[127,318,67,0.034738235637203047],[127,318,68,0.03988400138348605],[127,318,69,0.04502690664767495],[127,318,70,0.0501658543187444],[127,318,71,0.05529978309664904],[127,318,72,0.06042767004705196],[127,318,73,0.06554853319590029],[127,318,74,0.0706614341642865],[127,318,75,0.07576548084300966],[127,318,76,0.08085983010727796],[127,318,77,0.08594369057137252],[127,318,78,0.09101632538330712],[127,318,79,0.09607705505950742],[127,319,64,0.02029766060150595],[127,319,65,0.025475791803821424],[127,319,66,0.030653577708703333],[127,319,67,0.03582981517551104],[127,319,68,0.041003330818633804],[127,319,69,0.04617298349286805],[127,319,70,0.05133766681951815],[127,319,71,0.056496311753044176],[127,319,72,0.061647889188314264],[127,319,73,0.06679141260828719],[127,319,74,0.07192594077256295],[127,319,75,0.07705058044621699],[127,319,76,0.08216448916935717],[127,319,77,0.08726687806722597],[127,319,78,0.09235701470088092],[127,319,79,0.09743422595847742]] diff --git a/pumpkin-world/assets/perlin_7_4.json b/pumpkin-world/assets/perlin_7_4.json new file mode 100644 index 000000000..ec5b70ee4 --- /dev/null +++ b/pumpkin-world/assets/perlin_7_4.json @@ -0,0 +1 @@ +[[112,-64,64,-0.07589852783195594],[112,-64,65,-0.07934756492138495],[112,-64,66,-0.0826948639317705],[112,-64,67,-0.08593899072924904],[112,-64,68,-0.08907865549637528],[112,-64,69,-0.09211271809950228],[112,-64,70,-0.09504019351795212],[112,-64,71,-0.09786025733488402],[112,-64,72,-0.1005722512898779],[112,-64,73,-0.10317568889314677],[112,-64,74,-0.10567026110161026],[112,-64,75,-0.10805584205651442],[112,-64,76,-0.11033249488284391],[112,-64,77,-0.1125004775504096],[112,-64,78,-0.11456024879665883],[112,-64,79,-0.11651247411118493],[112,-63,64,-0.0702317908543506],[112,-63,65,-0.07366993035924052],[112,-63,66,-0.07700696534429285],[112,-63,67,-0.08024145816715522],[112,-63,68,-0.08337211490698637],[112,-63,69,-0.08639779072402543],[112,-63,70,-0.08931749528098498],[112,-63,71,-0.09213039822617775],[112,-63,72,-0.09483583473839052],[112,-63,73,-0.09743331113342513],[112,-63,74,-0.09992251053253365],[112,-63,75,-0.10230329859243359],[112,-63,76,-0.10457572929715375],[112,-63,77,-0.1067400508115861],[112,-63,78,-0.1087967113967977],[112,-63,79,-0.1107463653870766],[112,-62,64,-0.06448874257452575],[112,-62,65,-0.06791525873959203],[112,-62,66,-0.07124132856238119],[112,-62,67,-0.07446551081254693],[112,-62,68,-0.07758650736184414],[112,-62,69,-0.08060316853546456],[112,-62,70,-0.08351449852523318],[112,-62,71,-0.08631966086456866],[112,-62,72,-0.0890179839652282],[112,-62,73,-0.09160896671575336],[112,-62,74,-0.09409228414184323],[112,-62,75,-0.09646779312834208],[112,-62,76,-0.09873553820309244],[112,-62,77,-0.1008957573825282],[112,-62,78,-0.1029488880790621],[112,-62,79,-0.10489557307024044],[112,-61,64,-0.0586736856910699],[112,-61,65,-0.06208785955917795],[112,-61,66,-0.0654022695508728],[112,-61,67,-0.06861547076992758],[112,-61,68,-0.07172616077861671],[112,-61,69,-0.07473318494040393],[112,-61,70,-0.07763554182452237],[112,-61,71,-0.08043238867235425],[112,-61,72,-0.08312304692562844],[112,-61,73,-0.08570700781635154],[112,-61,74,-0.0881839380187005],[112,-61,75,-0.09055368536256447],[112,-61,76,-0.09281628460898339],[112,-61,77,-0.09497196328736313],[112,-61,78,-0.09702114759451541],[112,-61,79,-0.09896446835550199],[112,-60,64,-0.05279096573016928],[112,-60,65,-0.056192085614849674],[112,-60,66,-0.059494148031395966],[112,-60,67,-0.0626957043414812],[112,-60,68,-0.06579544769782097],[112,-60,69,-0.06879221837780303],[112,-60,70,-0.07168500917903897],[112,-60,71,-0.07447297087675175],[112,-60,72,-0.07715541774301138],[112,-60,73,-0.07973183312773835],[112,-60,74,-0.0822018751017024],[112,-60,75,-0.0845653821612018],[112,-60,76,-0.08682237899467371],[112,-60,77,-0.08897308231111467],[112,-60,78,-0.09101790673035715],[112,-60,79,-0.09295747073518501],[112,-59,64,-0.046844966151440404],[112,-59,65,-0.05023232810033207],[112,-59,66,-0.05352136257047535],[112,-59,67,-0.05671061710693748],[112,-59,68,-0.05979878035485908],[112,-59,69,-0.0627846873836162],[112,-59,70,-0.06566732507293915],[112,-59,71,-0.06844583756089817],[112,-59,72,-0.07111953175377106],[112,-59,73,-0.07368788289770967],[112,-59,74,-0.07615054021243473],[112,-59,75,-0.07850733258664422],[112,-59,76,-0.0807582743353853],[112,-59,77,-0.08290357101926638],[112,-59,78,-0.08494362532556254],[112,-59,79,-0.08687904301118676],[112,-58,64,-0.04084010333021981],[112,-58,65,-0.04421301157899449],[112,-58,66,-0.04748834554321568],[112,-58,67,-0.050664648878602336],[112,-58,68,-0.05374060562682503],[112,-58,69,-0.05671504552980233],[112,-58,70,-0.05958694940598397],[112,-58,71,-0.06235545458853253],[112,-58,72,-0.06501986042541996],[112,-58,73,-0.06757963384135535],[112,-58,74,-0.07003441496176976],[112,-58,75,-0.07238402279855094],[112,-58,76,-0.07462846099776921],[112,-58,77,-0.07676792364927931],[112,-58,78,-0.07880280115824356],[112,-58,79,-0.08073368617855603],[112,-57,64,-0.03478082141662753],[112,-57,65,-0.03813858883294596],[112,-57,66,-0.04139955797288353],[112,-57,67,-0.044562268531872506],[112,-57,68,-0.04762539985440106],[112,-57,69,-0.05058777623804611],[112,-57,70,-0.053448372299526814],[112,-57,71,-0.056206318402685085],[112,-57,72,-0.05886090614841377],[112,-57,73,-0.061411593926446684],[112,-57,74,-0.06385801252923784],[112,-57,75,-0.06619997082761997],[112,-57,76,-0.06843746150848817],[112,-57,77,-0.07057066687438829],[112,-57,78,-0.07259996470505836],[112,-57,79,-0.0745259341809047],[112,-56,64,-0.02867158707125894],[112,-56,65,-0.03201353558831299],[112,-56,66,-0.035259484246237593],[112,-56,67,-0.03840796871108876],[112,-56,68,-0.041457663538694844],[112,-56,69,-0.044407387468041626],[112,-56,70,-0.047256108776701056],[112,-56,71,-0.050002950698222914],[112,-56,72,-0.05264719690150166],[112,-56,73,-0.05518829703203754],[112,-56,74,-0.057625872315316684],[112,-56,75,-0.05995972122200177],[112,-56,76,-0.06218982519517691],[112,-56,77,-0.06431635443952977],[112,-56,78,-0.06633967377251715],[112,-56,79,-0.06826034853749419],[112,-55,64,-0.022516884077344423],[112,-55,65,-0.025842345116537047],[112,-55,66,-0.029072626704452875],[112,-55,67,-0.03220626041056596],[112,-55,68,-0.03524191591286119],[112,-55,69,-0.03817840628018121],[112,-55,70,-0.04101469331665042],[112,-55,71,-0.04374989296809162],[112,-55,72,-0.046383280790446846],[112,-55,73,-0.048914297480122215],[112,-55,74,-0.05134255446648406],[112,-55,75,-0.05366783956619159],[112,-55,76,-0.05589012269961835],[112,-55,77,-0.058009561669237764],[112,-55,78,-0.06002650800002307],[112,-55,79,-0.06194151284184124],[112,-54,64,-0.016321207829686712],[112,-54,65,-0.019629522712004688],[112,-54,66,-0.022843500109942405],[112,-54,67,-0.025961667431113722],[112,-54,68,-0.02898268938881443],[112,-54,69,-0.03190537327295684],[112,-54,70,-0.03472867428311077],[112,-54,71,-0.03745170092356587],[112,-54,72,-0.040073720460426454],[112,-54,73,-0.04259416444066344],[112,-54,74,-0.045012634273341345],[112,-54,75,-0.04732890687271696],[112,-54,76,-0.049542940363452415],[112,-54,77,-0.05165487984782202],[112,-54,78,-0.05366506323496478],[112,-54,79,-0.05557402713215831],[112,-53,64,-0.010089059700227332],[112,-53,65,-0.013379580045856487],[112,-53,66,-0.016576625988933946],[112,-53,67,-0.01967872071189325],[112,-53,68,-0.022684523878884866],[112,-53,69,-0.025592836894928306],[112,-53,70,-0.028402608227197867],[112,-53,71,-0.03111293878835808],[112,-53,72,-0.033723087381962724],[112,-53,73,-0.03623247620983627],[112,-53,74,-0.038640696441661904],[112,-53,75,-0.04094751384646933],[112,-53,76,-0.04315287448626293],[112,-53,77,-0.04525691047167779],[112,-53,78,-0.04725994577970538],[112,-53,79,-0.04916250213347051],[112,-52,64,-0.003824941280076488],[112,-52,65,-0.007097029395813803],[112,-52,66,-0.010276526849629652],[112,-52,67,-0.01336195253744854],[112,-52,68,-0.01635196099225311],[112,-52,69,-0.019245347631088427],[112,-52,70,-0.02204105406422807],[112,-52,71,-0.024738173466418822],[112,-52,72,-0.027335956010214657],[112,-52,73,-0.02983381436132493],[112,-52,74,-0.03223132923619365],[112,-52,75,-0.0345282550215078],[112,-52,76,-0.03672452545587579],[112,-52,77,-0.038820259373559374],[112,-52,78,-0.04081576651030361],[112,-52,79,-0.042711553371248434],[112,-51,64,0.0024666515016756874],[112,-51,65,-7.863777523402504E-4],[112,-51,66,-0.003947720276272326],[112,-51,67,-0.007015890620229892],[112,-51,68,-0.009989538106480178],[112,-51,69,-0.012867452063946794],[112,-51,70,-0.015648567124899593],[112,-51,71,-0.018331968583748637],[112,-51,72,-0.020916897817956803],[112,-51,73,-0.023402757770991767],[112,-51,74,-0.025789118497538177],[112,-51,75,-0.02807572277066539],[112,-51,76,-0.030262491751193776],[112,-51,77,-0.032349530719139596],[112,-51,78,-0.03433713486728873],[112,-51,79,-0.036225795156876184],[112,-50,64,0.008781234382517544],[112,-50,65,0.00554787919901556],[112,-50,66,0.0024052871010366017],[112,-50,67,-6.450520584574404E-4],[112,-50,68,-0.003601782313982893],[112,-50,69,-0.006463686809180302],[112,-50,70,-0.009229693080675228],[112,-50,71,-0.011898878404071],[112,-50,72,-0.014470475202087552],[112,-50,73,-0.016943876514765366],[112,-50,74,-0.01931864153195617],[112,-50,75,-0.021594501187797155],[112,-50,76,-0.02377136381740963],[112,-50,77,-0.025849320875702908],[112,-50,78,-0.027828652718334457],[112,-50,79,-0.029709834444801353],[112,-49,64,0.01511434089461805],[112,-49,65,0.011901263219265656],[112,-49,66,0.00877800576093768],[112,-49,67,0.005746062830849663],[112,-49,68,0.0028067957567204926],[112,-49,69,-3.857232567483493E-5],[112,-49,70,-0.0027889617431969826],[112,-49,71,-0.005443441618188771],[112,-49,72,-0.008001235263494721],[112,-49,73,-0.01046172563957326],[112,-49,74,-0.012824460873918975],[112,-49,75,-0.015089159842497035],[112,-49,76,-0.017255717813426164],[112,-49,77,-0.019324212152794784],[112,-49,78,-0.021294908092657328],[112,-49,79,-0.023168264561190255],[112,-48,64,0.021461528616136705],[112,-48,65,0.018269319781287097],[112,-48,66,0.015165969569503557],[112,-48,67,0.01215297680334082],[112,-48,68,0.009231708244658576],[112,-48,69,0.006403393399705193],[112,-48,70,0.0036691192619340285],[112,-48,71,0.0010298249926378178],[112,-48,72,-0.0015137034606135247],[112,-48,73,-0.003960838807656519],[112,-48,74,-0.0063111179217483215],[112,-48,75,-0.00856424740762285],[112,-48,76,-0.010720109231818764],[112,-48,77,-0.012778766415165843],[112,-48,78,-0.014740468787478145],[112,-48,79,-0.016605658804430656],[112,-47,64,0.02781838554591476],[112,-47,65,0.024647624458950412],[112,-47,66,0.02156474218318205],[112,-47,67,0.018571242103473384],[112,-47,68,0.015668496485119587],[112,-47,69,0.012857741292790159],[112,-47,70,0.010140070947181723],[112,-47,71,0.007516433019461588],[112,-47,72,0.004987622863491192],[112,-47,73,0.0025542781859045904],[112,-47,74,2.168735538295996E-4],[112,-47,75,-0.0020242851594576283],[112,-47,76,-0.004169066391171317],[112,-47,77,-0.006217518567842917],[112,-47,78,-0.008169875846374963],[112,-47,79,-0.01002656391730572],[112,-46,64,0.034180536601699174],[112,-46,65,0.031031789440231217],[112,-46,66,0.027969923576153577],[112,-46,67,0.024996447005474653],[112,-46,68,0.022112737563585116],[112,-46,69,0.019320037758379205],[112,-46,70,0.016619449541062425],[112,-46,71,0.014011929014726698],[112,-46,72,0.011498281080681294],[112,-46,73,0.00907915402261461],[112,-46,74,0.006755034028373186],[112,-46,75,0.004526239649654817],[112,-46,76,0.002392916199376871],[112,-46,77,3.550300868395695E-4],[112,-46,78,-0.0015876369093655862],[112,-46,79,-0.0034354934306823903],[112,-45,64,0.04054365024158424],[112,-45,65,0.037417470163986666],[112,-45,66,0.034377156691780986],[112,-45,67,0.03142422247881116],[112,-45,68,0.028560050994566488],[112,-45,69,0.025785891371793768],[112,-45,70,0.023102853191771966],[112,-45,71,0.02051190120733315],[112,-45,72,0.018013850003612664],[112,-45,73,0.015609358596608613],[112,-45,74,0.013298924969336823],[112,-45,75,0.011082880545872142],[112,-45,76,0.00896138460304674],[112,-45,77,0.006934418619916727],[112,-45,78,0.0050017805649505975],[112,-45,79,0.0031630791209621423],[112,-44,64,0.04690344520882628],[112,-44,65,0.043800372080549654],[112,-44,66,0.04078213421831034],[112,-44,67,0.037850248978320455],[112,-44,68,0.035006105525496545],[112,-44,69,0.032250959695865555],[112,-44,70,0.02958592879661115],[112,-44,71,0.02701198634384261],[112,-44,72,0.02452995673807412],[112,-44,73,0.022140509877484615],[112,-44,74,0.019844155708756084],[112,-44,75,0.017641238715772833],[112,-44,76,0.01553193234595529],[112,-44,77,0.013516233374339048],[112,-44,78,0.011593956205356082],[112,-44,79,0.009764727112332783],[112,-43,64,0.05325569740019731],[112,-43,65,0.05017625753631216],[112,-43,66,0.04718060548898817],[112,-43,67,0.04427026335917372],[112,-43,68,0.0414466260658517],[112,-43,69,0.03871095622353493],[112,-43,70,0.03606437895737935],[112,-43,71,0.033507876655999747],[112,-43,72,0.031042283661970038],[112,-43,73,0.02866828090008755],[112,-43,74,0.026386390443189023],[112,-43,75,0.02419697001580856],[112,-43,76,0.022100207435446495],[112,-43,77,0.020096114991563496],[112,-43,78,0.018184523762251326],[112,-43,79,0.016365077868604083],[112,-42,64,0.05959624685755094],[112,-42,65,0.05654095278196658],[112,-42,66,0.053568383506268136],[112,-42,67,0.050680065916338335],[112,-42,68,0.04787740074116642],[112,-42,69,0.045161657445718206],[112,-42,70,0.042533969061404386],[112,-42,71,0.03999532695423036],[112,-42,72,0.03754657553060836],[112,-42,73,0.035188406880912626],[112,-42,74,0.032921355360566174],[112,-42,75,0.03074579210894557],[112,-42,76,0.028661919505879263],[112,-42,77,0.02666976556584566],[112,-42,78,0.024769178269830494],[112,-42,79,0.022959819834860173],[112,-41,64,0.06592100488276853],[112,-41,65,0.06289035510457419],[112,-41,66,0.059941352090273625],[112,-41,67,0.05707552754871148],[112,-41,68,0.05429428807211589],[112,-41,69,0.051598910044621915],[112,-41,70,0.048990534488375204],[112,-41,71,0.046470161847292135],[112,-41,72,0.04403864670846769],[112,-41,73,0.04169669246130003],[112,-41,74,0.03944484589412944],[112,-41,75,0.03728349172867518],[112,-41,76,0.035212847092042865],[112,-41,77,0.03323295592641218],[112,-41,78,0.031343683336364725],[112,-41,79,0.029544709873864483],[112,-40,64,0.07222596127623415],[112,-40,65,0.06922044008361139],[112,-40,66,0.0662954731516695],[112,-40,67,0.06345259704807338],[112,-40,68,0.060693224278813185],[112,-40,69,0.05801863821265274],[112,-40,70,0.05542998794313514],[112,-40,71,0.05292828308822861],[112,-40,72,0.05051438852759793],[112,-40,73,0.048189019077572226],[112,-40,74,0.04595273410361089],[112,-40,75,0.04380593207054251],[112,-40,76,0.041748845030357806],[112,-40,77,0.0397815330476633],[112,-40,78,0.037903878562752125],[112,-40,79,0.036115580692311466],[112,-39,64,0.07850719169853393],[112,-39,65,0.07552726897068518],[112,-39,66,0.07262679408863204],[112,-39,67,0.0698073085125529],[112,-39,68,0.06707023071001605],[112,-39,69,0.06441685109661122],[112,-39,70,0.06184832691412079],[112,-39,71,0.05936567704631279],[112,-39,72,0.056969776772336944],[112,-39,73,0.05466135245780357],[112,-39,74,0.052440976183335763],[112,-39,75,0.050309060310879006],[112,-39,76,0.04826585198754396],[112,-39,77,0.046311427587091614],[112,-39,78,0.044445687089016195],[112,-39,79,0.04266834839524558],[112,-38,64,0.08476086515552306],[112,-38,65,0.08180699619306542],[112,-38,66,0.078931455308065],[112,-38,67,0.07613578888475203],[112,-38,68,0.07342142139738539],[112,-38,69,0.07078965036731966],[112,-38,70,0.06824164125759513],[112,-38,71,0.06577842230512965],[112,-38,72,0.06340087929049698],[112,-38,73,0.06110975024536647],[112,-38,74,0.058905620097400746],[112,-38,75,0.05678891525289087],[112,-38,76,0.05475989811690607],[112,-38,77,0.052818661551067625],[112,-38,78,0.050965123268902235],[112,-38,79,0.049199020168794516],[112,-37,64,0.0909832516069331],[112,-37,65,0.08805587698120443],[112,-37,66,0.085205697871235],[112,-37,67,0.08243426561470146],[112,-37,68,0.07974301073497236],[112,-37,69,0.07713323791485516],[112,-37,70,0.07460612090784802],[112,-37,71,0.07216269738697545],[112,-37,72,0.06980386373119263],[112,-37,73,0.06753036974943427],[112,-37,74,0.06534281334210301],[112,-37,75,0.06324163510027692],[112,-37,76,0.061227112842414555],[112,-37,77,0.0592993560886671],[112,-37,78,0.057458300472750135],[112,-37,79,0.055703702091398744],[112,-36,64,0.09717072969817675],[112,-36,65,0.09427027511990005],[112,-36,66,0.09144587126347858],[112,-36,67,0.08869907444730085],[112,-36,68,0.08603132128358582],[112,-36,69,0.08344392366904241],[112,-36,70,0.08093806371301893],[112,-36,71,0.07851478860321681],[112,-36,72,0.07617500540896016],[112,-36,73,0.0739194758220868],[112,-36,74,0.07174881083526763],[112,-36,75,0.06966346535802359],[112,-36,76,0.06766373277022697],[112,-36,77,0.06574973941318762],[112,-36,78,0.06392143901828795],[112,-36,79,0.062178607073179126],[112,-35,64,0.10331979461563257],[112,-35,65,0.10044667082338687],[112,-35,66,0.09764844128826777],[112,-35,67,0.09492666733453192],[112,-35,68,0.09228279170032727],[112,-35,69,0.08971813354549185],[112,-35,70,0.0872338833968247],[112,-35,71,0.08483109803090694],[112,-35,72,0.08251069529445954],[112,-35,73,0.08027344886230925],[112,-35,74,0.0781199829327639],[112,-35,75,0.07605076686067092],[112,-35,76,0.07406610972794148],[112,-35,77,0.07216615485164624],[112,-35,78,0.07035087422964026],[112,-35,79,0.0686200629237349],[112,-34,64,0.10942706606520392],[112,-34,65,0.10658166873414932],[112,-34,66,0.10380999808542768],[112,-34,67,0.10111362047223282],[112,-34,68,0.09849398479308324],[112,-34,69,0.09595241751697425],[112,-34,70,0.09349011764598847],[112,-34,71,0.09110815161544128],[112,-34,72,0.08880744813154651],[112,-34,73,0.08658879294667321],[112,-34,74,0.0844528235719999],[112,-34,75,0.08240002392783197],[112,-34,76,0.08043071893137221],[112,-34,77,0.07854506902204539],[112,-34,78,0.07674306462433689],[112,-34,79,0.07502452054816311],[112,-33,64,0.11548929637442329],[112,-33,65,0.11267200604572625],[112,-33,66,0.1099272642737752],[112,-33,67,0.10725664246171063],[112,-33,68,0.10466159570025146],[112,-33,69,0.10214345781040746],[112,-33,70,0.09970343632363943],[112,-33,71,0.09734260739953482],[112,-33,72,0.09506191068099223],[112,-33,73,0.09286214408697879],[112,-33,74,0.09074395854267281],[112,-33,75,0.08870785264725234],[112,-33,76,0.08675416727912377],[112,-33,77,0.08488308013868717],[112,-33,78,0.08309460022860371],[112,-33,79,0.08138856227157598],[112,-32,64,0.12150337871777928],[112,-32,65,0.11871456074918574],[112,-32,66,0.11599710321785928],[112,-32,67,0.11335258259586534],[112,-32,68,0.11078246019537275],[112,-32,69,0.10828807722912837],[112,-32,70,0.10587064980836058],[112,-32,71,0.10353126387818834],[112,-32,72,0.10127087009052238],[112,-32,73,0.09909027861452546],[112,-32,74,0.09699015388444376],[112,-32,75,0.09497100928507052],[112,-32,76,0.09303320177463248],[112,-32,77,0.09117692644520337],[112,-32,78,0.08940221102060031],[112,-32,79,0.08770891029178307],[112,-31,64,0.12746635546541818],[112,-31,65,0.12470636000342283],[112,-31,66,0.12201652741895141],[112,-31,67,0.11939843926997562],[112,-31,68,0.11685356311682371],[112,-31,69,0.11438324760060214],[112,-31,70,0.11198871745903594],[112,-31,71,0.10967106847980013],[112,-31,72,0.10743126239132794],[112,-31,73,0.10527012169116778],[112,-31,74,0.10318832441169434],[112,-31,75,0.10118639882343916],[112,-31,76,0.09926471807583259],[112,-31,77,0.09742349477545587],[112,-31,78,0.0956627755017635],[112,-31,79,0.09398243526029659],[112,-30,64,0.1333754266553785],[112,-30,65,0.13064458862943584],[112,-30,66,0.12798270703044679],[112,-30,67,0.12539136851731347],[112,-30,68,0.12287204692272946],[112,-30,69,0.12042609834973228],[112,-30,70,0.11805475620565975],[112,-30,71,0.11575912617358419],[112,-30,72,0.11354018112121311],[112,-30,73,0.1113987559473203],[112,-30,74,0.10933554236552456],[112,-30,75,0.10735108362567092],[112,-30,76,0.10544576917260962],[112,-30,77,0.10361982924247426],[112,-30,78,0.10187332939641824],[112,-30,79,0.100206164991825],[112,-29,64,0.13922795858904002],[112,-29,65,0.13652659772826548],[112,-29,66,0.1338929784973587],[112,-29,67,0.13132869266925762],[112,-29,68,0.1288352203707741],[112,-29,69,0.1264139251974461],[112,-29,70,0.12406604926578213],[112,-29,71,0.12179270820297228],[112,-29,72,0.11959488607405133],[112,-29,73,0.11747343024658174],[112,-29,74,0.11542904619267103],[112,-29,75,0.11346229222857895],[112,-29,76,0.11157357419171154],[112,-29,77,0.1097631400551008],[112,-29,78,0.10803107447932958],[112,-29,79,0.10637729330192047],[112,-28,64,0.14502149254995922],[112,-28,65,0.14234991342276704],[112,-28,66,0.13974485332007258],[112,-28,67,0.13720790914008485],[112,-28,68,0.13474056732308282],[112,-28,69,0.13234419898472938],[112,-28,70,0.13002005498676694],[112,-28,71,0.1277692609451685],[112,-28,72,0.12559281217572738],[112,-28,73,0.12349156857715649],[112,-28,74,0.12146624945151108],[112,-28,75,0.11951742826218681],[112,-28,76,0.11764552732929612],[112,-28,77,0.11585081246251538],[112,-28,78,0.1141333875313687],[112,-28,79,0.11249318897296201],[112,-27,64,0.150753753646223],[112,-27,65,0.1481122457233489],[112,-27,66,0.14553602694250034],[112,-27,67,0.1430266993365722],[112,-27,68,0.14058575567631182],[112,-27,69,0.1382145746222494],[112,-27,70,0.13591441581399877],[112,-27,71,0.1336864148970014],[112,-27,72,0.1315315784867005],[112,-27,73,0.1294507790702113],[112,-27,74,0.12744474984530418],[112,-27,75,0.12551407949695403],[112,-27,76,0.12365920691125287],[112,-27,77,0.1218804158267871],[112,-27,78,0.12017782942343669],[112,-27,79,0.11855140484861337],[112,-26,64,0.15642265977603176],[112,-26,65,0.15381149751738643],[112,-26,66,0.15126438776433837],[112,-26,67,0.14878293769211504],[112,-26,68,0.1463686464166487],[112,-26,69,0.14402290016526587],[112,-26,70,0.14174696738473846],[112,-26,71,0.1395419937867689],[112,-26,72,0.13740899733089218],[112,-26,73,0.1353488631448646],[112,-26,74,0.13336233838235778],[112,-26,75,0.13145002701820363],[112,-26,76,0.12961238458099578],[112,-26,77,0.12784971282314372],[112,-26,78,0.12616215432833833],[112,-26,79,0.12454968705644787],[112,-25,64,0.1620263307166584],[112,-25,65,0.15944577368245982],[112,-25,66,0.15692802627757774],[112,-25,67,0.1544747008255114],[112,-25,68,0.1520873027998748],[112,-25,69,0.1497672260139813],[112,-25,70,0.14751574774778298],[112,-25,71,0.14533402381223104],[112,-25,72,0.1432230835510463],[112,-25,73,0.14118382477996438],[112,-25,74,0.13921700866327746],[112,-25,75,0.1373232545279166],[112,-25,76,0.1355030346148819],[112,-25,77,0.1337566687681131],[112,-25,78,0.13208431906076468],[112,-25,79,0.13048598435890024],[112,-24,64,0.16756309733692976],[112,-24,65,0.16501339032356166],[112,-24,66,0.16252524432741744],[112,-24,67,0.1601002768245614],[112,-24,68,0.15773999965663854],[112,-24,69,0.1554458142394839],[112,-24,70,0.15321900670907518],[112,-24,71,0.15106074300489913],[112,-24,72,0.14897206389071826],[112,-24,73,0.14695387991280318],[112,-24,74,0.14500696629545107],[112,-24,75,0.1431319577740383],[112,-24,76,0.1413293433654086],[112,-24,77,0.13959946107569488],[112,-24,78,0.13794249254553437],[112,-24,79,0.1363584576326946],[112,-23,64,0.17303151093293534],[112,-23,65,0.17051288413397958],[112,-23,66,0.1680545644972804],[112,-23,67,0.1656581746541813],[112,-23,68,0.16332523282263978],[112,-23,69,0.16105714803497706],[112,-23,70,0.15885521530296542],[112,-23,71,0.15672061072032073],[112,-23,72,0.154654386502585],[112,-23,73,0.15265746596446694],[112,-23,74,0.15073063843446188],[112,-23,75,0.1488745541069929],[112,-23,76,0.1470897188318826],[112,-23,77,0.14537648884124887],[112,-23,78,0.1437350654137849],[112,-23,79,0.14216548947644225],[112,-22,64,0.1784303526871156],[112,-22,65,0.17594302188000321],[112,-22,66,0.17351473961808328],[112,-22,67,0.17114713368918688],[112,-22,68,0.1688417286938768],[112,-22,69,0.16659994129245081],[112,-22,70,0.16442307538927492],[112,-22,71,0.16231231725451045],[112,-22,72,0.16026873058322932],[112,-22,73,0.1582932514919725],[112,-22,74,0.15638668345258488],[112,-22,75,0.15454969216356063],[112,-22,76,0.15278280035871283],[112,-22,77,0.15108638255325724],[112,-22,78,0.1494606597272743],[112,-22,79,0.14790569394656428],[112,-21,64,0.183758643250872],[112,-21,65,0.1813028100096029],[112,-21,66,0.17890476240191056],[112,-21,67,0.17656613337188987],[112,-21,68,0.17428845390710423],[112,-21,69,0.17207314830494547],[112,-21,70,0.16992152937631244],[112,-21,71,0.1678347935866823],[112,-21,72,0.16581401613455593],[112,-21,73,0.16386014596734377],[112,-21,74,0.1619740007345183],[112,-21,75,0.16015626167827146],[112,-21,76,0.15840746846148634],[112,-21,77,0.15672801393311742],[112,-21,78,0.15511813883094117],[112,-21,79,0.153577926421693],[112,-20,64,0.18901565245039686],[112,-20,65,0.18659150438477545],[112,-20,66,0.18422387519978334],[112,-20,67,0.18191440299420492],[112,-20,68,0.17966462514519677],[112,-20,69,0.17747597359409406],[112,-20,70,0.17534977006953478],[112,-20,71,0.1732872212479657],[112,-20,72,0.17128941385151775],[112,-20,73,0.16935730968331342],[112,-20,74,0.16749174060003713],[112,-20,75,0.1656934034219978],[112,-20,76,0.16396285478050499],[112,-20,77,0.16230050590264333],[112,-20,78,0.16070661733341074],[112,-20,79,0.15918129359523614],[112,-19,64,0.19420090911589638],[112,-19,65,0.19180862013772704],[112,-19,66,0.18947157988369479],[112,-19,67,0.18719143160443552],[112,-19,68,0.1849697190675852],[112,-19,69,0.1828078818631218],[112,-19,70,0.18070725064602067],[112,-19,71,0.17866904231628344],[112,-19,72,0.17669435513633225],[112,-19,73,0.17478416378582706],[112,-19,74,0.17293931435374077],[112,-19,75,0.1711605192679222],[112,-19,76,0.16944835216196252],[112,-19,77,0.16780324267945612],[112,-19,78,0.16622547121561837],[112,-19,79,0.1647151635962768],[112,-18,64,0.19931421103432012],[112,-18,65,0.1969539416510141],[112,-18,66,0.19464764785303668],[112,-18,67,0.19239697803886213],[112,-18,68,0.19020348236589335],[112,-18,69,0.18806860807542092],[112,-18,70,0.18599369475488614],[112,-18,71,0.18397996953751605],[112,-18,72,0.1820285422393143],[112,-18,73,0.18014040043347124],[112,-18,74,0.178316404462026],[112,-18,75,0.17655728238501012],[112,-18,76,0.174863624866888],[112,-18,77,0.17323588000038836],[112,-18,78,0.17167434806768367],[112,-18,79,0.17017917623894085],[112,-17,64,0.20435563502532128],[112,-17,65,0.20202753266135942],[112,-17,66,0.19975213016512827],[112,-17,67,0.19753108107784634],[112,-17,68,0.19536594194448542],[112,-17,69,0.1932581676584153],[112,-17,70,0.1912091067433499],[112,-17,71,0.1892199965726582],[112,-17,72,0.1872919585260271],[112,-17,73,0.1854259930835369],[112,-17,74,0.18362297485698598],[112,-17,75,0.18188364755868658],[112,-17,76,0.18020861890755957],[112,-17,77,0.17859835547260727],[112,-17,78,0.1770531774537345],[112,-17,79,0.17557325339993268],[112,-16,64,0.2093255471406147],[112,-16,65,0.2070297464873132],[112,-16,66,0.20478536779001988],[112,-16,67,0.20259406972662353],[112,-16,68,0.20045741522609606],[112,-16,69,0.1983768668328879],[112,-16,70,0.19635378200862164],[112,-16,71,0.19438940837114527],[112,-16,72,0.19248487887093269],[112,-16,73,0.19064120690489084],[112,-16,74,0.18885928136741326],[112,-16,75,0.1871398616388995],[112,-16,76,0.1854835725115659],[112,-16,77,0.18389089905263367],[112,-16,78,0.18236218140485838],[112,-16,79,0.1808976095244169],[112,-15,64,0.21422461298681472],[112,-15,65,0.2119612363808434],[112,-15,66,0.20974800198965815],[112,-15,67,0.2075865736208684],[112,-15,68,0.20547852058263094],[112,-15,69,0.20342531306785538],[112,-15,70,0.2014283174757021],[112,-15,71,0.19948879167043665],[112,-15,72,0.1976078801776271],[112,-15,73,0.1957866093177436],[112,-15,74,0.19402588227699957],[112,-15,75,0.19232647411565473],[112,-15,76,0.19068902671360533],[112,-15,77,0.18911404365334694],[112,-15,78,0.18760188504027486],[112,-15,79,0.18615276226033706],[112,-14,64,0.21905380817154307],[112,-14,65,0.21682296600264184],[112,-14,66,0.2146409848211951],[112,-14,67,0.2125095335568169],[112,-14,68,0.21043018789091883],[112,-14,69,0.20840442566077388],[112,-14,70,0.20643362220087302],[112,-14,71,0.20451904562163192],[112,-14,72,0.20266185202543785],[112,-14,73,0.2008630806600934],[112,-14,74,0.19912364900950053],[112,-14,75,0.19744434782179987],[112,-14,76,0.19582583607479598],[112,-14,77,0.1942686358787482],[112,-14,78,0.1927731273164981],[112,-14,79,0.19133954322094426],[112,-13,64,0.22381442887289826],[112,-13,65,0.22161622002123715],[112,-13,66,0.21946558976453379],[112,-13,67,0.21736421214603963],[112,-13,68,0.21531366921350892],[112,-13,69,0.21331544644316802],[112,-13,70,0.21137092810097446],[112,-13,71,0.20948139254122133],[112,-13,72,0.2076480074424809],[112,-13,73,0.20587182498093926],[112,-13,74,0.20415377694096892],[112,-13,75,0.20249466976315433],[112,-13,76,0.200895179529596],[112,-13,77,0.19935584688658248],[112,-13,78,0.1978770719045908],[112,-13,79,0.19645910887563245],[112,-12,64,0.22850810253243115],[112,-12,65,0.2263426148360661],[112,-12,66,0.2242234224742644],[112,-12,67,0.22215220459501528],[112,-12,68,0.22013054960466683],[112,-12,69,0.21815995061183835],[112,-12,70,0.21624180080861966],[112,-12,71,0.2143773887891175],[112,-12,72,0.21256789380533114],[112,-12,73,0.21081438096042082],[112,-12,74,0.20911779633921102],[112,-12,75,0.20747896207613992],[112,-12,76,0.20589857136048917],[112,-12,77,0.2043771833789748],[112,-12,78,0.20291521819566527],[112,-12,79,0.2015129515692421],[112,-11,64,0.2331367986713596],[112,-11,65,0.23100410942422622],[112,-11,66,0.22891643165570819],[112,-11,67,0.226875449609228],[112,-11,68,0.224882758041288],[112,-11,69,0.22293985768536162],[112,-11,70,0.22104815065306815],[112,-11,71,0.21920893577268974],[112,-11,72,0.21742340386502013],[112,-11,73,0.21569263295659757],[112,-11,74,0.21401758343017419],[112,-11,75,0.21239909311262706],[112,-11,76,0.21083787230014794],[112,-11,77,0.20933449872079013],[112,-11,78,0.20788941243434123],[112,-11,79,0.2065029106695353],[112,-10,64,0.23770283983023477],[112,-10,65,0.23560301631112968],[112,-10,66,0.2335469200652971],[112,-10,67,0.23153624042200993],[112,-10,68,0.22957257847895218],[112,-10,69,0.22765744258611587],[112,-10,70,0.2257922437669796],[112,-10,71,0.22397829107702683],[112,-10,72,0.22221678689959334],[112,-10,73,0.22050882217909706],[112,-10,74,0.2188553715915026],[112,-10,75,0.21725728865222382],[112,-10,76,0.2157153007613044],[112,-10,77,0.2142300041859515],[112,-10,78,0.2128018589803946],[112,-10,79,0.21143118384308068],[112,-9,64,0.2422089126319138],[112,-9,65,0.2401420126649113],[112,-9,66,0.2381175556351326],[112,-9,67,0.23613723594797786],[112,-9,68,0.23420266103296772],[112,-9,69,0.23231534684766886],[112,-9,70,0.23047671331889885],[112,-9,71,0.22868807972127125],[112,-9,72,0.22695065999306463],[112,-9,73,0.22526555798947467],[112,-9,74,0.22363376267309787],[112,-9,75,0.22205614324185208],[112,-9,76,0.2205334441941713],[112,-9,77,0.2190662803315543],[112,-9,78,0.21765513169843442],[112,-9,79,0.21630033845938534],[112,-8,64,0.24665807896802583],[112,-8,65,0.24462415151477523],[112,-8,66,0.24263138272191676],[112,-8,67,0.24068147206125468],[112,-8,68,0.2387760332845974],[112,-8,69,0.2369165899477288],[112,-8,70,0.23510457087166126],[112,-8,71,0.23334130554122257],[112,-8,72,0.23162801944097056],[112,-8,73,0.22996582932848408],[112,-8,74,0.22835573844488755],[112,-8,75,0.22679863166280956],[112,-8,76,0.22529527057161325],[112,-8,77,0.22384628849998034],[112,-8,78,0.22245218547581458],[112,-8,79,0.22111332312347742],[112,-7,64,0.2510537873087063],[112,-7,65,0.24905287309305946],[112,-7,66,0.24709183348002983],[112,-7,67,0.24517237299824934],[112,-7,68,0.24329611171223597],[112,-7,69,0.24146458076642674],[112,-7,70,0.23967921786649082],[112,-7,71,0.2379413626979775],[112,-7,72,0.23625225228228786],[112,-7,73,0.23461301627002196],[112,-7,74,0.23302467217156186],[112,-7,75,0.23148812052508116],[112,-7,76,0.23000414000183045],[112,-7,77,0.22857338244877234],[112,-7,78,0.22719636786853514],[112,-7,79,0.2258734793366982],[112,-6,64,0.2553998841357059],[112,-6,65,0.25343201630111967],[112,-6,66,0.2515027393588563],[112,-6,67,0.24961376288509762],[112,-6,68,0.24776671324764665],[112,-6,69,0.2459631291700326],[112,-6,70,0.24420445723289697],[112,-6,71,0.24249204731271168],[112,-6,72,0.24082714795782056],[112,-6,73,0.23921090170185622],[112,-6,74,0.23764434031438975],[112,-6,75,0.2361283799890076],[112,-6,76,0.2346638164686634],[112,-6,77,0.23325132010837601],[112,-6,78,0.23189143087524822],[112,-6,79,0.23058455328581418],[112,-5,64,0.2597006254989898],[112,-5,65,0.25776583029915273],[112,-5,66,0.25586834272448267],[112,-5,67,0.254009877389889],[112,-5,68,0.2521920669573773],[112,-5,69,0.25041645772023413],[112,-5,70,0.2486845051244927],[112,-5,71,0.24699756922772953],[112,-5,72,0.24535691009518645],[112,-5,73,0.24376368313326202],[112,-5,74,0.24221893436023956],[112,-5,75,0.2407235956144399],[112,-5,76,0.239278479699647],[112,-5,77,0.23788427546788182],[112,-5,78,0.23654154283949325],[112,-5,79,0.23525070776057855],[112,-4,64,0.26396068869659006],[112,-4,65,0.2620589862197201],[112,-4,66,0.2601933086055224],[112,-4,67,0.25836537549943206],[112,-4,68,0.2565768258491127],[112,-4,69,0.25482921350872667],[112,-4,70,0.253124002780486],[112,-4,71,0.25146256389353305],[112,-4,72,0.24984616842014684],[112,-4,73,0.24827598462931633],[112,-4,74,0.24675307277755254],[112,-4,75,0.24527838033712335],[112,-4,76,0.24385273716155897],[112,-4,77,0.24247685058850765],[112,-4,78,0.2411513004799073],[112,-4,79,0.23987653419948474],[112,-3,64,0.2681851840778502],[112,-3,65,0.2663165890051093],[112,-3,66,0.2644827365632112],[112,-3,67,0.262685351420703],[112,-3,68,0.26092607880310276],[112,-3,69,0.25920648011725916],[112,-3,70,0.2575280285129905],[112,-3,71,0.25589210438205173],[112,-3,72,0.2542999907944273],[112,-3,73,0.252752868871993],[112,-3,74,0.25125181309941347],[112,-3,75,0.24979778657246088],[112,-3,76,0.24839163618360882],[112,-3,77,0.24703408774497138],[112,-3,78,0.2457257410485577],[112,-3,79,0.24446706486385805],[112,-2,64,0.2723796669701431],[112,-2,65,0.2705441893686178],[112,-2,66,0.2687421726858544],[112,-2,67,0.2669753466070594],[112,-2,68,0.2652453626287548],[112,-2,69,0.26355378970322424],[112,-2,70,0.26190210982023987],[112,-2,71,0.26029171352612257],[112,-2,72,0.2587238953801187],[112,-2,73,0.25719984934815154],[112,-2,74,0.25572066413380806],[112,-2,75,0.2542873184467428],[112,-2,76,0.2529006762083603],[112,-2,77,0.25156148169484194],[112,-2,78,0.2502703546174866],[112,-2,79,0.24902778514038193],[112,-1,64,0.2765501497288605],[112,-1,65,0.2747477958795547],[112,-1,66,0.2729776217074194],[112,-1,67,0.2712413619090128],[112,-1,68,0.2695406742461783],[112,-1,69,0.2678771352105739],[112,-1,70,0.2662522356254924],[112,-1,71,0.26466737618500746],[112,-1,72,0.2631238629304402],[112,-1,73,0.2616229026641984],[112,-1,74,0.2601655983008515],[112,-1,75,0.2587529441556233],[112,-1,76,0.25738582117016184],[112,-1,77,0.25606499207565236],[112,-1,78,0.2547910964932487],[112,-1,79,0.25356464597183026],[112,0,64,0.28070311391077674],[112,0,65,0.2789338871720638],[112,0,66,0.2771955592503822],[112,0,67,0.2754898698496665],[112,0,68,0.273818482992789],[112,0,69,0.27218298270618135],[112,0,70,0.2705848686417383],[112,0,71,0.2690255516360538],[112,0,72,0.2675063492069765],[112,0,73,0.26602848098753407],[112,0,74,0.2645930640970974],[112,0,75,0.2632011084499622],[112,0,76,0.2618535120012049],[112,0,77,0.2605510559298831],[112,0,78,0.2592943997595549],[112,0,79,0.2580840764161243],[112,1,64,0.2848455225708954],[112,1,65,0.2831094242778782],[112,1,66,0.28140294419293643],[112,1,67,0.27972782702492693],[112,1,68,0.27808574305508804],[112,1,69,0.2764782838417487],[112,1,70,0.2749069578623199],[112,1,71,0.2733731860926174],[112,1,72,0.2718782975235043],[112,1,73,0.2704235246149018],[112,1,74,0.2690099986870432],[112,1,75,0.2676387452491391],[112,1,76,0.26631067926532226],[112,1,77,0.26502660035793524],[112,1,78,0.26378718794813566],[112,1,79,0.2625929963338298],[112,2,64,0.29726224708234394],[112,2,65,0.29562553550890885],[112,2,66,0.2940146006081005],[112,2,67,0.29243120210056367],[112,2,68,0.29087702903941937],[112,2,69,0.2893536955752313],[112,2,70,0.2878627366582587],[112,2,71,0.2864056036780396],[112,2,72,0.28498366004029513],[112,2,73,0.2835981766812002],[112,2,74,0.2822503275188988],[112,2,75,0.28094118484242947],[112,2,76,0.2796717146379317],[112,2,77,0.278442771852194],[112,2,78,0.2772550955935202],[112,2,79,0.27610930426992353],[112,3,64,0.29725898000521384],[112,3,65,0.2956222796636351],[112,3,66,0.29401135651245824],[112,3,67,0.2924279702627934],[112,3,68,0.2908738099579037],[112,3,69,0.2893504897381789],[112,3,70,0.28785954454339596],[112,3,71,0.2864024257523102],[112,3,72,0.2849804967595672],[112,3,73,0.2835950284899826],[112,3,74,0.28224719485006533],[112,3,75,0.2809380681169524],[112,3,76,0.27966861426462425],[112,3,77,0.2784396882274621],[112,3,78,0.277252029101124],[112,3,79,0.2761062552807489],[112,4,64,0.2972477172221864],[112,4,65,0.2956110556008329],[112,4,66,0.2940001729548369],[112,4,67,0.29241682896243976],[112,4,68,0.29086271263292074],[112,4,69,0.2893394380715968],[112,4,70,0.28784854018210837],[112,4,71,0.28639147030603845],[112,4,72,0.28496959179985215],[112,4,73,0.2835841755492049],[112,4,74,0.28223639542049583],[112,4,75,0.2809273236498333],[112,4,76,0.2796579261692807],[112,4,77,0.2784290578704472],[112,4,78,0.2772414578053963],[112,4,79,0.27609574432488404],[112,5,64,0.3013623700267343],[112,5,65,0.29975891798929727],[112,5,66,0.2981799682943003],[112,5,67,0.2966272855535462],[112,5,68,0.29510256496079207],[112,5,69,0.2936074280768873],[112,5,70,0.2921434185522027],[112,5,71,0.29071199778639195],[112,5,72,0.2893145405254768],[112,5,73,0.28795233039630214],[112,5,74,0.28662655537823933],[112,5,75,0.2853383032123016],[112,5,76,0.2840885567475437],[112,5,77,0.2828781892248062],[112,5,78,0.2817079594977816],[112,5,79,0.2805785071914104],[112,6,64,0.3054590883503394],[112,6,65,0.3038889019543848],[112,6,66,0.3023419441929466],[112,6,67,0.30081998455978154],[112,6,68,0.299324724379635],[112,6,69,0.2978577926135556],[112,6,70,0.29642074160150383],[112,6,71,0.2950150427422957],[112,6,72,0.293642082110876],[112,6,73,0.29230315601296114],[112,6,74,0.29099946647693586],[112,6,75,0.289732116683165],[112,6,76,0.2885021063305912],[112,6,77,0.2873103269406823],[112,6,78,0.28615755709870305],[112,6,79,0.2850444576323193],[112,7,64,0.309532991390032],[112,7,65,0.307996139027278],[112,7,66,0.30648124535528415],[112,7,67,0.30499008468449096],[112,7,68,0.3035243644029129],[112,7,69,0.302085720801674],[112,7,70,0.3006757148378418],[112,7,71,0.29929582783460473],[112,7,72,0.29794745711878007],[112,7,73,0.29663191159569835],[112,7,74,0.2953504072613474],[112,7,75,0.2941040626519337],[112,7,76,0.29289389423073753],[112,7,77,0.29172081171232095],[112,7,78,0.2905856133240646],[112,7,79,0.28948898100504433],[112,8,64,0.3135792487544341],[112,8,65,0.31207580979977073],[112,8,66,0.31059306420485483],[112,8,67,0.3091327910181795],[112,8,68,0.307696703609362],[112,8,69,0.3062864455149523],[112,8,70,0.3049035862215495],[112,8,71,0.3035496168862659],[112,8,72,0.3022259459945306],[112,8,73,0.30093389495527534],[112,8,74,0.2996746936333883],[112,8,75,0.29844947581959047],[112,8,76,0.29725927463761415],[112,8,77,0.2961050178887401],[112,8,78,0.2949875233336719],[112,8,79,0.2939074939117559],[112,9,64,0.3175930829393546],[112,9,65,0.3161231464403418],[112,9,66,0.3146726434396709],[112,9,67,0.3132433576321963],[112,9,68,0.3118370082738101],[112,9,69,0.31045524604758395],[112,9,70,0.3090996488672272],[112,9,71,0.30777171761790284],[112,9,72,0.3064728718343929],[112,9,73,0.30520444531665347],[112,9,74,0.3039676816826489],[112,9,75,0.3027637298586177],[112,9,76,0.3015936395066483],[112,9,77,0.3004583563896248],[112,9,78,0.29935871767351824],[112,9,79,0.29829544716703216],[112,10,64,0.32156977175243834],[112,10,65,0.32013343515883746],[112,10,66,0.31871527853583087],[112,10,67,0.317317090120186],[112,10,68,0.315940594945369],[112,10,69,0.3145874507280837],[112,10,70,0.3132592436921392],[112,10,71,0.31195748432968895],[112,10,72,0.3106836030998289],[112,10,73,0.3094389460645982],[112,10,74,0.3082247704622731],[112,10,75,0.30704224021810006],[112,10,76,0.30589242139235606],[112,10,77,0.30477627756578646],[112,10,78,0.3036946651624028],[112,10,79,0.30264832870964703],[112,11,64,0.3255046506866625],[112,11,65,0.32410201861955074],[112,11,66,0.322716320199102],[112,11,67,0.32134934808709475],[112,11,68,0.32000283297278376],[112,11,69,0.31867843947990526],[112,11,70,0.31737776201102874],[112,11,71,0.31610232052929155],[112,11,72,0.3148535562775116],[112,11,73,0.31363282743471416],[112,11,74,0.3124414047099689],[112,11,75,0.31128046687368105],[112,11,76,0.3101510962262234],[112,11,77,0.30905427400396224],[112,11,78,0.3079908757226581],[112,11,79,0.30696166645824663],[112,12,64,0.32939311524278525],[112,12,65,0.328024298302808],[112,12,66,0.3266711767645798],[112,12,67,0.3253355475858385],[112,12,68,0.3240191469770486],[112,12,69,0.32272364632894784],[112,12,70,0.3214506480774579],[112,12,71,0.32020168150599837],[112,12,72,0.3189781984851949],[112,12,73,0.31778156915002076],[112,12,74,0.31661307751426715],[112,12,75,0.31547391702248606],[112,12,76,0.3143651860392907],[112,12,77,0.3132878832760706],[112,12,78,0.31224290315509695],[112,12,79,0.31123103111102984],[112,13,64,0.3332306232008448],[112,13,65,0.3318957368151587],[112,13,66,0.3305753165445219],[112,13,67,0.32927116350173474],[112,13,68,0.3279850192713931],[112,13,69,0.32671856185805215],[112,13,70,0.3254734015717791],[112,13,71,0.3242510768511295],[112,13,72,0.32305305002353973],[112,13,73,0.32188070300317534],[112,13,74,0.32073533292613027],[112,13,75,0.3196181477231185],[112,13,76,0.3185302616295479],[112,13,77,0.317472690633028],[112,13,78,0.3164463478582925],[112,13,79,0.31545203888954276],[112,14,64,0.33701269684049895],[112,14,65,0.3357118601479565],[112,14,66,0.33442427012414183],[112,14,67,0.3331517318844812],[112,14,68,0.3318959922284164],[112,14,69,0.3306587356082682],[112,14,70,0.32944158003551316],[112,14,71,0.3282460729245109],[112,14,72,0.32707368687367433],[112,14,73,0.325925815384118],[112,14,74,0.3248037685156868],[112,14,75,0.323708768480501],[112,14,76,0.32264194517390854],[112,14,77,0.32160433164289853],[112,14,78,0.320596859491954],[112,14,79,0.31962035422635166],[112,15,64,0.3407349251103798],[112,15,65,0.3394682598845107],[112,15,66,0.3382136326055447],[112,15,67,0.33697285222786244],[112,15,68,0.3357476705945569],[112,15,69,0.3345397784270784],[112,15,70,0.33335080125232247],[112,15,71,0.3321822952672],[112,15,72,0.33103574314067724],[112,15,73,0.3299125497533254],[112,15,74,0.3288140378742815],[112,15,75,0.3277414437757525],[112,15,76,0.32669591278495874],[112,15,77,0.32567849477356786],[112,15,78,0.3246901395845967],[112,15,79,0.3237316923967925],[112,16,64,0.34439296574633727],[112,16,65,0.343160595355677],[112,16,66,0.3419390657996707],[112,16,67,0.3407301896970526],[112,16,68,0.33953572375175956],[112,16,69,0.33835736476343975],[112,16,70,0.3371967455754428],[112,16,71,0.3360554309603219],[112,16,72,0.33493491344284354],[112,16,73,0.3338366090605388],[112,16,74,0.3327618530617015],[112,16,75,0.33171189554096203],[112,16,76,0.33068789701233714],[112,16,77,0.32969092391980115],[112,16,78,0.3287219440853628],[112,16,79,0.32778182209465273],[112,17,64,0.34798254733873757],[112,17,65,0.34678459574405807],[112,17,66,0.34559630036641975],[112,17,67,0.3444194773036874],[112,17,68,0.3432558879265189],[112,17,69,0.34210723490982553],[112,17,70,0.34097515820175034],[112,17,71,0.3398612309301989],[112,17,72,0.33876695524691636],[112,17,73,0.3376937581091436],[112,17,74,0.33664298699876016],[112,17,75,0.335615905579042],[112,17,76,0.3346136892889315],[112,17,77,0.33363742087487097],[112,17,78,0.33268808586017823],[112,17,79,0.3317665679519717],[112,18,64,0.3514994713486172],[112,18,65,0.35033606213661106],[112,18,66,0.34918113790275285],[112,18,67,0.34803651802849733],[112,18,68,0.34690396834608767],[112,18,69,0.34578519719105033],[112,18,70,0.34468185139225277],[112,18,71,0.34359551219955803],[112,18,72,0.34252769114906734],[112,18,73,0.3414798258659866],[112,18,74,0.34045327580502344],[112,18,75,0.33944931792844163],[112,18,76,0.33846914232167236],[112,18,77,0.3375138477465317],[112,18,78,0.3365844371320238],[112,18,79,0.3356818130027389],[112,19,64,0.354939614072791],[112,19,65,0.353810869525762],[112,19,66,0.3526894529788691],[112,19,67,0.35157718689160694],[112,19,68,0.3504758413419541],[112,19,69,0.3493871300999874],[112,19,70,0.3483127066391099],[112,19,71,0.3472541600849221],[112,19,72,0.3462130111017326],[112,19,73,0.3451907077167372],[112,19,74,0.34418862108178266],[112,19,75,0.34320804117283055],[112,19,76,0.34225017242703165],[112,19,77,0.34131612931745126],[112,19,78,0.34040693186543197],[112,19,79,0.3395235010905973],[112,20,64,0.35829892855800005],[112,20,65,0.3572049687591132],[112,20,66,0.3561171951225481],[112,20,67,0.355037432970585],[112,20,68,0.3539674564006763],[112,20,69,0.3529089843802654],[112,20,70,0.3518636767792719],[112,20,71,0.35083313034027636],[112,20,72,0.34981887458639616],[112,20,73,0.3488223676668848],[112,20,74,0.34784499214036935],[112,20,75,0.346888050695843],[112,20,76,0.3459527618113194],[112,20,77,0.34504025535019534],[112,20,78,0.3441515680953011],[112,20,79,0.34328763922064875],[112,21,64,0.36157344646391876],[112,21,65,0.3605143884375631],[112,21,66,0.35946039075147307],[112,21,67,0.35841328136606254],[112,21,68,0.35737483816188875],[112,21,69,0.3563467850557561],[112,21,70,0.355330788054548],[112,21,71,0.35432845124681767],[112,21,72,0.35334131273212827],[112,21,73,0.35237084048817696],[112,21,74,0.3514184281756163],[112,21,75,0.35048539088068864],[112,21,76,0.349572960795584],[112,21,77,0.3486822828365634],[112,21,78,0.34781441019983084],[112,21,79,0.34697029985516165],[112,22,64,0.36475927987511814],[112,22,65,0.36373523676193364],[112,22,66,0.36271514505363095],[112,22,67,0.3617008351150162],[112,22,68,0.3606940883635772],[112,22,69,0.3596966334069537],[112,22,70,0.3587101421182033],[112,22,71,0.35773622564888813],[112,22,72,0.35677643037997886],[112,22,73,0.3558322338106043],[112,22,74,0.3549050403845666],[112,22,75,0.3539961772547332],[112,22,76,0.3531068899852162],[112,22,77,0.35223833819138284],[112,22,78,0.3513915911176813],[112,22,79,0.3505676231532846],[112,23,64,0.3678526230620612],[112,23,65,0.3668637033281834],[112,23,66,0.36587764381587184],[112,23,67,0.3648962770517976],[112,23,68,0.3639213877347048],[112,23,69,0.3629547088943272],[112,23,70,0.36199791798816877],[112,23,71,0.36105263293617873],[112,23,72,0.3601204080933131],[112,23,73,0.3592027301600124],[112,23,74,0.3583010140305184],[112,23,75,0.3574165985791345],[112,23,76,0.3565507423843469],[112,23,77,0.3557046193908485],[112,23,78,0.3548793145094452],[112,23,79,0.354075819154856],[112,24,64,0.37084975419096494],[112,24,65,0.3698960608710413],[112,24,66,0.3689441552004544],[112,24,67,0.36799587161673497],[112,24,68,0.36705299783501644],[112,24,69,0.3661172710284706],[112,24,70,0.3651903739466867],[112,24,71,0.36427393097202043],[112,24,72,0.36336950411390645],[112,24,73,0.36247858894116464],[112,24,74,0.36160261045222103],[112,24,75,0.36074291888334953],[112,24,76,0.359900785454853],[112,24,77,0.35907739805522043],[112,24,78,0.3582738568632467],[112,24,79,0.3574911699081213],[112,25,64,0.3737470369826179],[112,25,65,0.3728286669561449],[112,25,66,0.37191103146966903],[112,25,67,0.37099596661240236],[112,25,68,0.37008526284211163],[112,25,69,0.3691806611871443],[112,25,70,0.36828384938648506],[112,25,71,0.36739645796786097],[112,25,72,0.36652005626389766],[112,25,73,0.36565614836634763],[112,25,74,0.3648061690183202],[112,25,75,0.3639714794446135],[112,25,76,0.3631533631200681],[112,25,77,0.3623530214759807],[112,25,78,0.36157156954456426],[112,25,79,0.3608100315414576],[112,26,64,0.37654092232022324],[112,26,65,0.37565796562076204],[112,26,66,0.37477471065861345],[112,26,67,0.37389299490762606],[112,26,68,0.3730146112858617],[112,26,69,0.37214130437928333],[112,26,70,0.37127476660355796],[112,26,71,0.3704166343040043],[112,26,72,0.3695684837936742],[112,26,73,0.3687318273296002],[112,26,74,0.36790810902713234],[112,26,75,0.36709870071246575],[112,26,76,0.3663048977132799],[112,26,77,0.3655279145875279],[112,26,78,0.3647688807903597],[112,26,79,0.3640288362791862],[112,27,64,0.3792279498061153],[112,27,65,0.37838048896293497],[112,27,66,0.37753171819596104],[112,27,67,0.3766834760890713],[112,27,68,0.3758375577300124],[112,27,69,0.37499571095580886],[112,27,70,0.3741596325363886],[112,27,71,0.37333096429644397],[112,27,72,0.3725112891755261],[112,27,73,0.3717021272263981],[112,27,74,0.37090493155157633],[112,27,75,0.3701210841781553],[112,27,76,0.36935189187084266],[112,27,77,0.3685985818832375],[112,27,78,0.36786229764734074],[112,27,79,0.36714409440130075],[112,28,64,0.38180474926743213],[112,28,65,0.38099285867913346],[112,28,66,0.3801786684728075],[112,28,67,0.3793640180604971],[112,28,68,0.3785507044010543],[112,28,69,0.3777404782673336],[112,28,70,0.3769350404517012],[112,28,71,0.37613603790988426],[112,28,72,0.3753450598431567],[112,28,73,0.3745636337188829],[112,28,74,0.3737932212293553],[112,28,75,0.3730352141890168],[112,28,76,0.3722909303699943],[112,28,77,0.3715616092759805],[112,28,78,0.37084840785444795],[112,28,79,0.37015239614720147],[112,29,64,0.38426804221080557],[112,29,65,0.38349178755048097],[112,29,66,0.38271226635966227],[112,29,67,0.3819313185897388],[112,29,68,0.3811507427644321],[112,29,69,0.38037229226882385],[112,29,70,0.3795976715768113],[112,29,71,0.37882853241701353],[112,29,72,0.37806646987711945],[112,29,73,0.37731301844670595],[112,29,74,0.37656964799845927],[112,29,75,0.3758377597078868],[112,29,76,0.37511868191145364],[112,29,77,0.37441366590317315],[112,29,78,0.37372388166964005],[112,29,79,0.3730504135635123],[112,30,64,0.38661464322593286],[112,30,65,0.3858740808774124],[112,30,66,0.3851293086714389],[112,30,67,0.38438216680328174],[112,30,68,0.3836344550479439],[112,30,69,0.3828879290710743],[112,30,70,0.38214429667842653],[112,30,71,0.3814052140038814],[112,30,72,0.3806722816360289],[112,30,73,0.37994704068333585],[112,30,74,0.37923096877783286],[112,30,75,0.3785254760174076],[112,30,76,0.37783190084663865],[112,30,77,0.3771515058761992],[112,30,78,0.3764854736408205],[112,30,79,0.37583490229581795],[112,31,64,0.38884146133810404],[112,31,65,0.3881366378628403],[112,31,66,0.3874266855805272],[112,31,67,0.38671344462849966],[112,31,68,0.3859987157124113],[112,31,69,0.38528425643907593],[112,31,70,0.3845717775879768],[112,31,71,0.3838629393214632],[112,31,72,0.3831593473336315],[112,31,73,0.3824625489379109],[112,31,74,0.3817740290932947],[112,31,75,0.38109520636930055],[112,31,76,0.38042742884959124],[112,31,77,0.37977196997429213],[112,31,78,0.37913002432098863],[112,31,79,0.37850270332441033],[112,32,64,0.39094550130973865],[112,32,65,0.39027645294388635],[112,32,66,0.389601381977998],[112,32,67,0.38892212818361516],[112,32,68,0.3882404928696782],[112,32,69,0.3875582352373328],[112,32,70,0.38687706867353355],[112,32,71,0.3861986569834679],[112,32,72,0.3855246105617911],[112,32,73,0.3848564825026972],[112,32,74,0.38419576464876726],[112,32,75,0.38354388357867253],[112,32,76,0.3829021965336731],[112,32,77,0.3822719872829385],[112,32,78,0.38165446192768127],[112,32,79,0.381050744644107],[112,33,64,0.39292386489081266],[112,33,65,0.39229061707205126],[112,33,66,0.39165047878281795],[112,33,67,0.3910052891152581],[112,33,68,0.3903568496478089],[112,33,69,0.3897069208219991],[112,33,70,0.3890572182581884],[112,33,71,0.38840940901025894],[112,33,72,0.38776510775925954],[112,33,73,0.38712587294601997],[112,33,74,0.3864932028426811],[112,33,75,0.38586853156321743],[112,33,76,0.38525322501289033],[112,33,77,0.38464857677666275],[112,33,78,0.3840558039465627],[112,33,79,0.38347604288800013],[112,34,64,0.3947737520182411],[112,34,65,0.394176318941897],[112,34,66,0.39357115419914523],[112,34,67,0.3929600958836902],[112,34,68,0.39234494550355686],[112,34,69,0.39172746437991113],[112,34,70,0.39110936998496165],[112,34,71,0.3904923322189618],[112,34,72,0.3898779696263056],[112,34,73,0.3892678455507386],[112,34,74,0.3886634642296316],[112,34,75,0.3880662668273877],[112,34,76,0.38747762740792635],[112,34,77,0.3868988488462729],[112,34,78,0.3863311586792409],[112,34,79,0.3857757048952132],[112,35,64,0.39649246196426113],[112,35,65,0.3959308461682802],[112,35,66,0.39536068492174903],[112,35,67,0.39478381499574156],[112,35,68,0.39420203748215343],[112,35,69,0.3936171142145565],[112,35,70,0.39303076412829113],[112,35,71,0.3924446595598068],[112,35,72,0.39186042248525044],[112,35,73,0.39127962069832023],[112,35,74,0.39070376392733586],[112,35,75,0.39013429989159054],[112,35,76,0.38957261029693524],[112,35,77,0.3890200067706171],[112,35,78,0.3884777267353648],[112,35,79,0.3879469292227223],[112,36,64,0.39807739443371365],[112,36,65,0.3975515864120376],[112,36,66,0.39701644728944774],[112,36,67,0.39647381218535466],[112,36,68,0.39592548142430367],[112,36,69,0.39537321697887645],[112,36,70,0.3948187388519882],[112,36,71,0.394263721398593],[112,36,72,0.39370978958679687],[112,36,73,0.39315851519839295],[112,36,74,0.3926114129687742],[112,36,75,0.39206993666628676],[112,36,76,0.39153547511097364],[112,36,77,0.3910093481327322],[112,36,78,0.39049280246887785],[112,36,79,0.38998700760111515],[112,37,64,0.39952605061028235],[112,37,65,0.39903602845418024],[112,37,66,0.3985359183866292],[112,37,67,0.39802755354179453],[112,37,68,0.3975127331204561],[112,37,69,0.396993218854959],[112,37,70,0.3964707314137246],[112,37,71,0.39594694674533987],[112,37,72,0.3954234923622174],[112,37,73,0.39490194356384545],[112,37,74,0.39438381959958324],[112,37,75,0.393870579771062],[112,37,76,0.39336361947414167],[112,37,77,0.39286426618045156],[112,37,78,0.39237377535850004],[112,37,79,0.39189332633436],[112,38,64,0.4008360341517218],[112,38,65,0.40038176321863306],[112,38,66,0.3999166770928839],[112,38,67,0.39944260658556185],[112,38,68,0.3989613494123788],[112,38,69,0.39847466668066306],[112,38,70,0.3979842793160906],[112,38,71,0.39749186442916384],[112,38,72,0.3969990516214388],[112,38,73,0.3965074192315141],[112,38,74,0.3960184905207409],[112,38,75,0.39553372979871027],[112,38,76,0.3950545384884732],[112,38,77,0.39458225113151585],[112,38,78,0.39411813133247897],[112,38,79,0.3936633676436282],[112,39,64,0.4020050521339922],[112,39,65,0.40158648474342895],[112,39,66,0.4011564050806641],[112,39,67,0.4007166412919188],[112,39,68,0.4002689892419513],[112,39,69,0.39981520902307977],[112,39,70,0.39935702140412477],[112,39,71,0.39889610421928223],[112,39,72,0.39843408869692665],[112,39,73,0.3979725557283559],[112,39,74,0.39751303207643995],[112,39,75,0.3970569865242284],[112,39,76,0.39660582596347177],[112,39,77,0.3961608914230797],[112,39,78,0.395723454037505],[112,39,79,0.39529471095505975],[112,40,64,0.4030309159443688],[112,40,65,0.40264799110043475],[112,40,66,0.40225288776104484],[112,40,67,0.4018474310621025],[112,40,68,0.40143341464725163],[112,40,69,0.40101259719890775],[112,40,70,0.40058669890939885],[112,40,71,0.40015739789222815],[112,40,72,0.399726326533452],[112,40,73,0.3992950677831918],[112,40,74,0.39886515138723916],[112,40,75,0.3984380500588057],[112,40,76,0.39801517559037963],[112,40,77,0.39759787490570486],[112,40,78,0.3971874260518784],[112,40,79,0.3967850341315666],[112,41,64,0.4039115421234853],[112,41,65,0.40356418526356097],[112,41,66,0.40320401517753723],[112,41,67,0.4028328536421796],[112,41,68,0.40245249170588515],[112,41,69,0.4020646862416936],[112,41,70,0.4016711564406064],[112,41,71,0.40127358024522175],[112,41,72,0.40087359072368545],[112,41,73,0.4004727723839676],[112,41,74,0.4000726574284339],[112,41,75,0.3996747219487557],[112,41,76,0.3992803820611234],[112,41,77,0.39889098998178096],[112,41,78,0.39850783004287343],[112,41,79,0.39813211464861126],[112,42,64,0.4046449531563557],[112,42,65,0.404333075925504],[112,42,66,0.40400778284800726],[112,42,67,0.4036708919895933],[112,42,68,0.40332419142561293],[112,42,69,0.40296943581599454],[112,42,70,0.40260834292070913],[112,42,71,0.4022425900557586],[112,42,72,0.4018738104896816],[112,42,73,0.40150358978059086],[112,42,74,0.4011334620537095],[112,42,75,0.4007649062194499],[112,42,76,0.40039934213200085],[112,42,77,0.4000381266884395],[112,42,78,0.39968254986836105],[112,42,79,0.39933383071403017],[112,43,64,0.4052292782123187],[112,43,65,0.404952778262964],[112,43,66,0.4046622925546375],[112,43,67,0.4043596350873399],[112,43,68,0.4040465905822137],[112,43,69,0.4037249110783927],[112,43,70,0.403396312470577],[112,43,71,0.4030624709873424],[112,43,72,0.40272501961017915],[112,43,73,0.40238554443327346],[112,43,74,0.40204558096400267],[112,43,75,0.40170661036418154],[112,43,76,0.40137005563203104],[112,43,77,0.40103727772488307],[112,43,78,0.4007095716226154],[112,43,79,0.4003881623318197],[112,44,64,0.40566275383394124],[112,44,65,0.40542151465037324],[112,44,66,0.4051657530819696],[112,44,67,0.40489727870581443],[112,44,68,0.40461787250461756],[112,44,69,0.40432928348540526],[112,44,70,0.40403322523915935],[112,44,71,0.4037313724414066],[112,44,72,0.40342535729376],[112,44,73,0.4031167659064209],[112,44,74,0.4028071346216153],[112,44,75,0.40249794627800034],[112,44,76,0.4021906264160131],[112,44,77,0.40188653942417507],[112,44,78,0.40158698462634623],[112,44,79,0.40129319230993277],[112,45,64,0.40594372457488487],[112,45,65,0.4057376153221416],[112,45,66,0.4055164809030367],[112,45,67,0.40528212611233266],[112,45,68,0.40503632780732224],[112,45,69,0.4047808315482986],[112,45,70,0.40451734818020013],[112,45,71,0.4042475503554346],[112,45,72,0.40397306899788166],[112,45,73,0.40369548970808267],[112,45,74,0.4034163491095937],[112,45,75,0.40313713113653493],[112,45,76,0.4028592632623096],[112,45,77,0.40258411266950633],[112,45,78,0.4023129823609782],[112,45,79,0.4020471072121025],[112,46,64,0.40607064358670664],[112,46,65,0.4058995189833887],[112,46,66,0.40571290081354905],[112,46,67,0.40551258872829354],[112,46,68,0.40530035507005446],[112,46,69,0.40507794153476684],[112,46,70,0.40484705577545554],[112,46,71,0.4046093679472378],[112,46,72,0.4043665071937367],[112,46,73,0.40412005807491835],[112,46,74,0.4038715569363278],[112,46,75,0.4036224882197549],[112,46,76,0.40337428071530484],[112,46,77,0.40312830375488795],[112,46,78,0.4028858633471204],[112,46,79,0.40264819825364073],[112,47,64,0.40604207315461843],[112,47,65,0.40590577336918643],[112,47,66,0.4057535465141617],[112,47,67,0.4055871867340119],[112,47,68,0.4054084614647038],[112,47,69,0.40521910811750583],[112,47,70,0.40502083070444533],[112,47,71,0.4048152964054207],[112,47,72,0.4046041320769719],[112,47,73,0.40438892070271126],[112,47,74,0.4041711977854024],[112,47,75,0.403952447680705],[112,47,76,0.4037340998725717],[112,47,77,0.4035175251903047],[112,47,78,0.4033040319672656],[112,47,79,0.40309486214124535],[112,48,64,0.405856685182198],[112,48,65,0.4057550357523078],[112,48,66,0.4056370611408195],[112,48,67,0.4055045496212144],[112,48,68,0.4053592633295262],[112,48,69,0.4052029349696797],[112,48,70,0.4050372644607343],[112,48,71,0.40486391552603485],[112,48,72,0.40468451222426804],[112,48,73,0.40450063542243214],[112,48,74,0.4043138192107023],[112,48,75,0.404125547259215],[112,48,76,0.4039372491167516],[112,48,77,0.40375029645133376],[112,48,78,0.4035659992327223],[112,48,79,0.40338560185682537],[112,49,64,0.4055132616250461],[112,49,65,0.405446073399473],[112,49,66,0.40536219774316706],[112,49,67,0.40526341669318927],[112,49,68,0.4051514866906055],[112,49,69,0.40502813530726306],[112,49,70,0.40489505791473007],[112,49,71,0.4047539142953999],[112,49,72,0.4046063251957598],[112,49,73,0.40445386882182827],[112,49,74,0.40429807727674943],[112,49,75,0.4041404329405608],[112,49,76,0.40398236479212024],[112,49,77,0.40382524467320124],[112,49,78,0.40367038349475015],[112,49,79,0.4035190273853103],[112,50,64,0.40501069487340186],[112,50,65,0.4049777639761068],[112,50,66,0.40492781971104214],[112,50,67,0.40486263751260493],[112,50,68,0.4047839677305868],[112,50,69,0.4046935323782797],[112,50,70,0.40459302182301227],[112,50,71,0.40448409141911473],[112,50,72,0.40436835808331384],[112,50,73,0.4042473968125625],[112,50,74,0.4041227371442911],[112,50,75,0.40399585955909784],[112,50,76,0.4038681918258635],[112,50,77,0.4037411052892996],[112,50,78,0.40361591109992445],[112,50,79,0.40349385638647095],[112,51,64,0.4043479880836986],[112,51,65,0.4043490958995899],[112,51,66,0.40433290114903214],[112,51,67,0.40430117229698076],[112,51,68,0.4042556532046677],[112,51,69,0.40419805989892],[112,51,70,0.4041300772841825],[112,51,71,0.4040533557972423],[112,51,72,0.40396950800465725],[112,51,73,0.4038801051428884],[112,51,74,0.4037866736011319],[112,51,75,0.40369069134685864],[112,51,76,0.403593584294053],[112,51,77,0.4034967226141582],[112,51,78,0.4034014169897213],[112,51,79,0.4033089148107435],[112,52,64,0.4035242554590765],[112,52,65,0.40355916864101943],[112,52,66,0.4035765271991095],[112,52,67,0.4035780922618231],[112,52,68,0.4035656008038597],[112,52,69,0.4035407624365485],[112,52,70,0.4035052561412395],[112,52,71,0.40346072694567675],[112,52,72,0.40340878254335566],[112,52,73,0.4033509898558647],[112,52,74,0.4032888715382076],[112,52,75,0.40322390242711226],[112,52,76,0.4031575059323205],[112,52,77,0.4030910503708639],[112,52,78,0.40302584524431917],[112,52,79,0.402963137459051],[112,53,64,0.4025387224788549],[112,53,65,0.40260719297548103],[112,53,66,0.40265789431134996],[112,53,67,0.4026925799114306],[112,53,68,0.402712979465521],[112,53,69,0.4027207957396058],[112,53,70,0.40271770133048934],[112,53,71,0.4027053353636979],[112,53,72,0.4026853001346531],[112,53,73,0.402659157693118],[112,53,74,0.4026284263709117],[112,53,75,0.4025945772528977],[112,53,76,0.40255903059124176],[112,53,77,0.402523152162942],[112,53,78,0.4024882495706287],[112,53,79,0.4024555684866369],[112,54,64,0.4013907260769321],[112,54,65,0.401492491180803],[112,54,66,0.40157631046270065],[112,54,67,0.4016439292773395],[112,54,68,0.40169706963113627],[112,54,69,0.4017374270143783],[112,54,70,0.40176666717696086],[112,54,71,0.4017864228476892],[112,54,72,0.40179829039714654],[112,54,73,0.4018038264441304],[112,54,74,0.40180454440565283],[112,54,75,0.40180191099050855],[112,54,76,0.40179734263640815],[112,54,77,0.4017922018906791],[112,54,78,0.4017877937345308],[112,54,79,0.40178536185088826],[112,55,64,0.4000797147691542],[112,55,65,0.4002144971848306],[112,55,66,0.40033119532384237],[112,55,67,0.400431546104446],[112,55,68,0.40051726345137634],[112,55,69,0.40059003514866964],[112,55,70,0.4006515196363612],[112,55,71,0.40070334275104846],[112,55,72,0.40074709441032447],[112,55,73,0.40078432524107804],[112,55,74,0.4008165431516662],[112,55,75,0.40084520984795147],[112,55,76,0.4008717372932096],[112,55,77,0.40089748411190684],[112,55,78,0.400923751937344],[112,55,79,0.4009517817031704],[112,56,64,0.3986052487296445],[112,56,65,0.3987727566612141],[112,56,66,0.3989220803741298],[112,56,67,0.3990549479847986],[112,56,68,0.39917306493843235],[112,56,69,0.39927811088236703],[112,56,70,0.39937173648356417],[112,56,71,0.39945556019028855],[112,56,72,0.3995311649379664],[112,56,73,0.3996000947992192],[112,56,74,0.39966385157807877],[112,56,75,0.39972389134837916],[112,56,76,0.39978162093632635],[112,56,77,0.39983839434724805],[112,56,78,0.3998955091365196],[112,56,79,0.39995420272467164],[112,57,64,0.39696699981604594],[112,57,65,0.3971669270736634],[112,57,66,0.3973486089645752],[112,57,67,0.397513764439017],[112,57,68,0.3976640900655822],[112,57,69,0.39780125692486284],[112,57,70,0.39792690744759307],[112,57,71,0.3980426521972857],[112,57,72,0.3981500665973652],[112,57,73,0.39825068760279253],[112,57,74,0.3983460103161908],[112,57,75,0.39843748454846156],[112,57,76,0.39852651132389716],[112,57,77,0.3986144393297898],[112,57,78,0.39870256131053405],[112,57,79,0.3987921104062267],[112,58,64,0.3951647515437479],[112,58,65,0.3953967776687397],[112,58,66,0.39561053632893206],[112,58,67,0.39580773694540194],[112,58,68,0.3959900668140504],[112,58,69,0.39615918801938965],[112,58,70,0.3963167342931555],[112,58,71,0.3964643078177366],[112,58,72,0.3966034759744252],[112,58,73,0.39673576803648164],[112,58,74,0.3968626718070264],[112,58,75,0.3969856302017443],[112,58,76,0.39710603777640985],[112,58,77,0.39722523719923253],[112,58,78,0.39734451566802015],[112,58,79,0.39746510127216367],[112,59,64,0.3931983990090707],[112,59,65,0.39346218941715505],[112,59,66,0.39370772954286387],[112,59,67,0.3939367189167134],[112,59,68,0.39415083516714167],[112,59,69,0.3943517309542516],[112,59,70,0.39454103084871084],[112,59,71,0.39472032815580205],[112,59,72,0.3948911816846219],[112,59,73,0.39505511246242625],[112,59,74,0.3952136003941357],[112,59,75,0.39536808086698105],[112,59,76,0.3955199413003022],[112,59,77,0.3956705176404988],[112,59,78,0.39582109080112937],[112,59,79,0.3959728830481606],[112,60,64,0.3910679487613534],[112,60,65,0.39136315490353224],[112,60,66,0.39164016743113705],[112,60,67,0.39190067562456454],[112,60,68,0.3921463470515955],[112,60,69,0.39237882452089656],[112,60,70,0.3925997229810202],[112,60,71,0.3928106263648892],[112,60,72,0.3930130843797711],[112,60,73,0.39320860924273404],[112,60,74,0.3933986723616028],[112,60,75,0.3935847009613908],[112,60,76,0.393768074656225],[112,60,77,0.39395012196675994],[112,60,78,0.3941321167830759],[112,60,79,0.3943152747730695],[112,61,64,0.388773518624036],[112,61,65,0.3890997781647085],[112,61,66,0.3894079404229318],[112,61,67,0.3896996840715178],[112,61,68,0.3899766662262452],[112,61,69,0.39024051941891724],[112,61,70,0.39049284851625976],[112,61,71,0.39073522758465173],[112,61,72,0.3909691967006881],[112,61,73,0.39119625870756825],[112,61,74,0.3914178759173328],[112,61,75,0.3916354667589167],[112,61,76,0.39185040237204255],[112,61,77,0.3920640031469466],[112,61,78,0.3922775352099349],[112,61,79,0.3924922068547747],[112,62,64,0.3863153374647006],[112,62,65,0.38667227447655234],[112,62,66,0.38701125035523415],[112,62,67,0.3873339328108496],[112,62,68,0.3876419681179525],[112,62,69,0.3879369781079446],[112,62,70,0.38822055710766823],[112,62,71,0.3884942688241793],[112,62,72,0.3887596431757059],[112,62,73,0.3890181730687844],[112,62,74,0.3892713111215934],[112,62,75,0.38952046633345716],[112,62,76,0.3897670007005401],[112,62,77,0.39001222577772426],[112,62,78,0.3902573991866697],[112,62,79,0.3905037210700614],[112,63,64,0.38369374491400304],[112,63,65,0.3840809700892236],[112,63,66,0.3844504102242423],[112,63,67,0.38480372171391886],[112,63,68,0.3851425396047474],[112,63,69,0.38546847460637357],[112,63,70,0.38578311004966315],[112,63,71,0.3860879987913109],[112,63,72,0.38638466006499306],[112,63,73,0.3866745762790532],[112,63,74,0.38695918976074656],[112,63,75,0.38723989944701065],[112,63,76,0.38751805752178425],[112,63,77,0.38779496599986857],[112,63,78,0.38807187325732884],[112,63,79,0.3883499705084407],[112,64,64,0.38090919103361986],[112,64,65,0.38132630191100125],[112,64,66,0.38172584388490977],[112,64,67,0.38210946168525683],[112,64,68,0.38247877874629754],[112,64,69,0.3828353942370346],[112,64,70,0.38318088003854134],[112,64,71,0.3835167776681884],[112,64,72,0.3838445951507792],[112,64,73,0.3841658038365808],[112,64,74,0.3844818351662825],[112,64,75,0.38479407738284055],[112,64,76,0.38510387219023756],[112,64,77,0.3854125113591499],[112,64,78,0.38572123327951763],[112,64,79,0.3860312194600253],[112,65,64,0.3779622359331055],[112,65,65,0.37840881714057406],[112,65,66,0.37883808569852245],[112,65,67,0.3792516743252808],[112,65,68,0.37965119446160156],[112,65,69,0.3800382333197138],[112,65,70,0.3804143508796674],[112,65,71,0.38078107683295204],[112,65,72,0.38113990747339643],[112,65,73,0.381492302535333],[112,65,74,0.38183968197906143],[112,65,75,0.38218342272356975],[112,65,76,0.3825248553265406],[112,65,77,0.3828652606116356],[112,65,78,0.383205866243055],[112,65,79,0.38354784324737823],[112,66,64,0.3748535493357491],[112,66,65,0.3753291728478838],[112,66,66,0.3757877801283974],[112,66,67,0.37623099154071366],[112,66,68,0.37666040615399626],[112,66,69,0.3770775988106072],[112,66,70,0.3774841171412328],[112,66,71,0.3778814785276619],[112,66,72,0.37827116701321906],[112,66,73,0.3786546301608438],[112,66,74,0.37903327585884433],[112,66,75,0.3794084690742849],[112,66,76,0.3797815285540375],[112,66,77,0.3801537234734882],[112,66,78,0.3805262700328948],[112,66,79,0.3809003280014036],[112,67,64,0.3715839100932975],[112,67,65,0.372088135503388],[112,67,66,0.37257568128357255],[112,67,67,0.3730481551025847],[112,67,68,0.37350714328334716],[112,67,69,0.3739542078885802],[112,67,70,0.3743908837544619],[112,67,71,0.3748186754723216],[112,67,72,0.3752390543183757],[112,67,73,0.37565345513148807],[112,67,74,0.37606327313899235],[112,67,75,0.37646986073052885],[112,67,76,0.37687452417993045],[112,67,77,0.37727852031514475],[112,67,78,0.37768305313619266],[112,67,79,0.3780892703811696],[112,68,64,0.36815420564970297],[112,68,65,0.36868658045589936],[112,68,66,0.36920265241064143],[112,68,67,0.36970401615196086],[112,68,68,0.3701922448855754],[112,68,69,0.3706688874883848],[112,68,70,0.37113546556040894],[112,68,71,0.37159347042514956],[112,68,72,0.3720443600783815],[112,68,73,0.37248955608535944],[112,68,74,0.3729304404264767],[112,68,75,0.37336835229132564],[112,68,76,0.3738045848211981],[112,68,77,0.3742403818000113],[112,68,78,0.37467693429365917],[112,68,79,0.3751153772377955],[112,69,64,0.36456543145382964],[112,69,65,0.3651254913589367],[112,69,66,0.36566966533366985],[112,69,67,0.36619953465334776],[112,69,68,0.36671665903945755],[112,69,69,0.36722257378076995],[112,69,70,0.36771878680329206],[112,69,71,0.36820677568903876],[112,69,72,0.36868798464363034],[112,69,73,0.3691638214126984],[112,69,74,0.3696356541471413],[112,69,75,0.37010480821717606],[112,69,76,0.37057256297522423],[112,69,77,0.37104014846761996],[112,69,78,0.37150874209513796],[112,69,79,0.3719794652223495],[112,70,64,0.3608186903210206],[112,70,65,0.36140595954549],[112,70,66,0.3619777998420985],[112,70,67,0.3625357787956639],[112,70,68,0.36308144228060435],[112,70,69,0.36361631159939484],[112,70,70,0.36414188057026425],[112,70,71,0.3646596125641129],[112,70,72,0.365170937490656],[112,70,73,0.36567724873377583],[112,70,74,0.3661799000361276],[112,70,75,0.36668020233293924],[112,70,76,0.36717942053504776],[112,70,77,0.367678770261159],[112,70,78,0.36817941451932884],[112,70,79,0.3686824603376716],[112,71,64,0.35691519174370195],[112,71,65,0.3575291833513748],[112,71,66,0.3581282430268023],[112,71,67,0.35871392434095917],[112,71,68,0.359287758962787],[112,71,69,0.3598512538147082],[112,71,70,0.3604058881777918],[112,71,71,0.360953110746542],[112,71,72,0.3614943366333231],[112,71,73,0.3620309443223969],[112,71,74,0.36256427257362234],[112,71,75,0.36309561727575473],[112,71,76,0.3636262282493891],[112,71,77,0.3641573059995322],[112,71,78,0.36468999841780403],[112,71,79,0.3652253974342724],[112,72,64,0.3528562511509454],[112,72,65,0.3534964673870973],[112,72,66,0.3541222885642323],[112,72,67,0.3547352539208024],[112,72,68,0.3553368805665366],[112,72,69,0.3559286606547251],[112,72,70,0.3565120585045655],[112,72,71,0.3570885076735471],[112,72,72,0.3576594079798803],[112,72,73,0.3582261224749522],[112,72,74,0.3587899743658575],[112,72,75,0.35935224388793974],[112,72,76,0.3599141651273885],[112,72,77,0.36047692279387955],[112,72,78,0.36104164894325386],[112,72,79,0.36160941965024396],[112,73,64,0.34864328911688003],[112,73,65,0.3493092217581223],[112,73,66,0.3499613359485304],[112,73,67,0.3506011562802296],[112,73,68,0.351230184954911],[112,73,69,0.35184989897258934],[112,73,70,0.3524617472708397],[112,73,71,0.3530671478144882],[112,73,72,0.3536674846357674],[112,73,73,0.3542641048249142],[112,73,74,0.35485831547126157],[112,73,75,0.3554513805547558],[112,73,76,0.35604451778795054],[112,73,77,0.35663889540845883],[112,73,78,0.3572356289218612],[112,73,79,0.35783577779508147],[112,74,64,0.3442778305181522],[112,74,65,0.34496896123374143],[112,74,66,0.3456468896718139],[112,74,67,0.346313125469449],[112,74,68,0.34696915557662006],[112,74,69,0.34761644146111975],[112,74,70,0.34825641626438947],[112,74,71,0.34889048190822475],[112,74,72,0.3495200061523678],[112,74,73,0.35014631960296544],[112,74,74,0.35077071267194393],[112,74,75,0.3513944324872316],[112,74,76,0.35201867975388035],[112,74,77,0.3526446055660689],[112,74,78,0.35327330816998476],[112,74,79,0.3539058296775953],[112,75,64,0.33976150364034474],[112,75,65,0.340477304364454],[112,75,66,0.34118055835254146],[112,75,67,0.34187275998321565],[112,75,68,0.3425553806164262],[112,75,69,0.34322986581424886],[112,75,70,0.34389763251300143],[112,75,71,0.344560066146665],[112,75,72,0.3452185177216202],[112,75,73,0.345874300842674],[112,75,74,0.3465286886904344],[112,75,75,0.3471829109499585],[112,75,76,0.3478381506907285],[112,75,77,0.348495541197935],[112,75,78,0.34915616275506967],[112,75,79,0.34982103937783304],[112,76,64,0.33509603923323233],[112,76,65,0.3358359725477366],[112,76,66,0.33656405381184107],[112,76,67,0.33728176184775366],[112,76,68,0.3379905520926977],[112,76,69,0.3386918538352389],[112,76,70,0.3393870674033789],[112,76,71,0.3400775613043862],[112,76,72,0.3407646693163743],[112,76,73,0.3414496875316022],[112,76,74,0.3421338713515578],[112,76,75,0.3428184324337453],[112,76,76,0.34350453559023264],[112,76,77,0.3441932956379412],[112,76,78,0.34488577420067557],[112,76,79,0.34558297646290154],[112,77,64,0.33028326951509895],[112,77,65,0.331046789042427],[112,77,66,0.33179919009801884],[112,77,67,0.3325419356554486],[112,77,68,0.33327646490233453],[112,77,69,0.33400419049189056],[112,77,70,0.33472649574667906],[112,77,71,0.3354447318145397],[112,77,72,0.3361602147767021],[112,77,73,0.3368742227080589],[112,77,74,0.3375879926896585],[112,77,75,0.3383027177733393],[112,77,76,0.3390195438985617],[112,77,77,0.33973956676141887],[112,77,78,0.34046382863582514],[112,77,79,0.3411933151468911],[112,78,64,0.3253251271260116],[112,78,65,0.32611167793161727],[112,78,66,0.3268878824591507],[112,78,67,0.3276551875472068],[112,78,68,0.3284150158129676],[112,78,69,0.32916876291864683],[112,78,70,0.3299177947905824],[112,78,71,0.33066344479094445],[112,78,72,0.33140701084207036],[112,78,73,0.33214975250339973],[112,78,74,0.33289288800107514],[112,78,75,0.3336375912101217],[112,78,76,0.33438498858926924],[112,78,77,0.33513615606839386],[112,78,78,0.3358921158885799],[112,78,79,0.3366538333948094],[112,79,64,0.3202236440299219],[112,79,65,0.3210326630339287],[112,79,66,0.32183214626362144],[112,79,67,0.32262352414235457],[112,79,68,0.32340820240230084],[112,79,69,0.32418755936546084],[112,79,70,0.3249629431777655],[112,79,71,0.3257356689962402],[112,79,72,0.326507016129243],[112,79,73,0.32727822512974836],[112,79,74,0.3280504948417435],[112,79,75,0.3288249793996494],[112,79,76,0.329602785180831],[112,79,77,0.3303849677111732],[112,79,78,0.3311725285237225],[112,79,79,0.331966411970404],[112,80,64,0.31498095036583856],[112,80,65,0.3158118667634083],[112,80,66,0.31663409586886054],[112,80,67,0.3174490514163153],[112,80,68,0.3182581219448367],[112,80,69,0.3190626680936692],[112,80,70,0.31986401985101703],[112,80,71,0.3206634737563369],[112,80,72,0.32146229005615373],[112,80,73,0.32226168981337266],[112,80,74,0.32306285197015683],[112,80,75,0.32386691036427595],[112,80,76,0.3246749506989979],[112,80,77,0.32548800746649553],[112,80,78,0.3263070608247697],[112,80,79,0.3271330334280984],[112,81,64,0.3095992732479576],[112,81,65,0.31045150893793766],[112,81,66,0.31129594343815564],[112,81,67,0.31213397352595607],[112,81,68,0.3129669702458744],[112,81,69,0.31379627621875794],[112,81,70,0.31462320290488566],[112,81,71,0.31544902782105244],[112,81,72,0.3162749917116356],[112,81,73,0.3171022956736095],[112,81,74,0.3179320982355794],[112,81,75,0.3187655123907448],[112,81,76,0.3196036025838561],[112,81,77,0.32044738165214326],[112,81,78,0.32129780772021455],[112,81,79,0.3221557810489374],[112,82,64,0.30408093551460846],[112,82,65,0.30495390553600954],[112,82,66,0.30581999770540735],[112,82,67,0.3066805915824608],[112,82,68,0.30753704042264013],[112,82,69,0.3083906684998854],[112,82,70,0.309242768383721],[112,82,71,0.31009459817079843],[112,82,72,0.3109473786708745],[112,82,73,0.31180229054719766],[112,82,74,0.3126604714113742],[112,82,75,0.31352301287261963],[112,82,76,0.3143909575414627],[112,82,77,0.3152652959878805],[112,82,78,0.31614696365386186],[112,82,79,0.3170368377204106],[112,83,64,0.29842835442628224],[112,83,65,0.29932146740214],[112,83,66,0.30020866268808694],[112,83,67,0.30109130237199455],[112,83,68,0.30197072163281297],[112,83,69,0.30284822607641626],[112,83,70,0.3037250890263681],[112,83,71,0.3046025487695746],[112,83,72,0.3054818057568385],[112,83,73,0.3063640197582797],[112,83,74,0.30725030697370215],[112,83,75,0.3081417370978039],[112,83,76,0.3090393303403053],[112,83,77,0.30994405440096817],[112,83,78,0.31085682139950677],[112,83,79,0.31177848476040015],[112,84,64,0.2926440403126188],[112,84,65,0.2935566989007905],[112,84,66,0.2944644363482768],[112,84,67,0.2953685970240363],[112,84,68,0.29627049775032144],[112,84,69,0.29717142515135486],[112,84,70,0.29807263295739433],[112,84,71,0.2989753392641503],[112,84,72,0.29988072374756913],[112,84,73,0.30078992483394973],[112,84,74,0.30170403682547187],[112,84,75,0.3026241069810337],[112,84,76,0.30355113255247157],[112,84,77,0.30448605777613896],[112,84,78,0.30542977081984124],[112,84,79,0.30638310068513797],[112,85,64,0.286730595168197],[112,85,65,0.28766219651864844],[112,85,66,0.2885899092016365],[112,85,67,0.28951505962722696],[112,85,68,0.290438945988263],[112,85,69,0.2913628356215167],[112,85,70,0.292287962324698],[112,85,71,0.2932155236292833],[112,85,72,0.2941466780291814],[112,85,73,0.2950825421652],[112,85,74,0.296024187965395],[112,85,75,0.2969726397411948],[112,85,76,0.29792887123938006],[112,85,77,0.29889380264988835],[112,85,78,0.29986829756944466],[112,85,79,0.3008531599210298],[112,86,64,0.2806907111974197],[112,86,65,0.2816406474155526],[112,86,66,0.282587762874587],[112,86,67,0.28353336579301985],[112,86,68,0.2844787354692282],[112,86,69,0.2854251196547307],[112,86,70,0.28637373188378196],[112,86,71,0.28732574875925865],[112,86,72,0.2882823071948542],[112,86,73,0.28924450161354653],[112,86,74,0.2902133811024211],[112,86,75,0.2911899465237422],[112,86,76,0.29217514758234925],[112,86,77,0.2931698798493526],[112,86,78,0.2941749817421272],[112,86,79,0.29519123146061466],[112,87,64,0.2745271693083552],[112,87,65,0.27549482792393043],[112,87,66,0.27646076860957225],[112,87,67,0.2774262811669994],[112,87,68,0.2783926257428978],[112,87,69,0.27936103021393144],[112,87,70,0.280332687528558],[112,87,71,0.2813087530056133],[112,87,72,0.28229034158967936],[112,87,73,0.28327852506319934],[112,87,74,0.2842743292154263],[112,87,75,0.2852787309680908],[112,87,76,0.2862926554578732],[112,87,77,0.2873169730756478],[112,87,78,0.28835249646250094],[112,87,79,0.2893999774625335],[112,88,64,0.26824283755537426],[112,88,65,0.26922760199658136],[112,88,66,0.2702117857182428],[112,88,67,0.2711966598877049],[112,88,68,0.2721834652507502],[112,88,69,0.27317340952798763],[112,88,70,0.27416766476852505],[112,88,71,0.2751673646608902],[112,88,72,0.2761736018012114],[112,88,73,0.27718742491862547],[112,88,74,0.2782098360579942],[112,88,75,0.2792417877198218],[112,88,76,0.2802841799574512],[112,88,77,0.2813378574315132],[112,88,78,0.2824036064216251],[112,88,79,0.2834821517953551],[112,89,64,0.26184066953090834],[112,89,65,0.2628419196031351],[112,89,66,0.263843759982879],[112,89,67,0.2648474429932855],[112,89,68,0.26585418973820374],[112,89,69,0.2668651875095835],[112,89,70,0.26788158715263843],[112,89,71,0.26890450038873714],[112,89,72,0.26993499709603525],[112,89,73,0.27097410254781307],[112,89,74,0.2720227946086068],[112,89,75,0.27308200088801754],[112,89,76,0.2741525958522809],[112,89,77,0.2752353978935705],[112,89,78,0.2763311663570323],[112,89,79,0.27744059852556313],[112,90,64,0.25532370270605537],[112,90,65,0.2563408150749109],[112,90,66,0.25735972200578794],[112,90,67,0.25838165677571323],[112,90,68,0.2594078206139209],[112,90,69,0.2604393801198852],[112,90,70,0.26147746463960303],[112,90,71,0.262523163600087],[112,90,72,0.26357752380208366],[112,90,73,0.26464154667097883],[112,90,74,0.26571618546598064],[112,90,75,0.26680234244746315],[112,90,76,0.26790086600255414],[112,90,77,0.26901254772893846],[112,90,78,0.2701381194768768],[112,90,79,0.27127825034945124],[112,91,64,0.24869505672024567],[112,91,65,0.24972740539838817],[112,91,66,0.2507627855068816],[112,91,67,0.25180241108276497],[112,91,68,0.2528474632564876],[112,91,69,0.2538990876802032],[112,91,70,0.25495839191479974],[112,91,71,0.25602644277562386],[112,91,72,0.2571042636369166],[112,91,73,0.2581928316949204],[112,91,74,0.2592930751897522],[112,91,75,0.2604058705859179],[112,91,76,0.2615320397115599],[112,91,77,0.26267234685640445],[112,91,78,0.2638274958284088],[112,91,79,0.2649981269691215],[112,92,64,0.2419579316196735],[112,92,65,0.2430048884569965],[112,92,66,0.2440561455691444],[112,92,67,0.24511289756748222],[112,92,68,0.24617630526817275],[112,92,69,0.24724749313035674],[112,92,70,0.24832754665355414],[112,92,71,0.24941750973424823],[112,92,72,0.250518381981668],[112,92,73,0.25163111599272925],[112,92,74,0.2527566145862299],[112,92,75,0.2538957279961729],[112,92,76,0.2550492510243101],[112,92,77,0.25621792015187306],[112,92,78,0.2574024106104916],[112,92,79,0.2586033334123129],[112,93,64,0.23511560604484463],[112,93,65,0.23617654122157472],[112,93,66,0.23724307683233933],[112,93,67,0.23831638788545514],[112,93,68,0.23939761467611842],[112,93,69,0.2404878602340899],[112,93,70,0.24158818773109347],[112,93,71,0.2426996178478849],[112,93,72,0.2438231261010091],[112,93,73,0.24495964012920415],[112,93,74,0.24611003693955041],[112,93,75,0.24727514011323462],[112,93,76,0.24845571697102561],[112,93,77,0.24965247569842566],[112,93,78,0.25086606243049847],[112,93,79,0.25209705829638707],[112,94,64,0.22817143536708],[112,94,65,0.2292457178893379],[112,94,66,0.23032693163479168],[112,94,67,0.23141623183977386],[112,94,68,0.23251473808079917],[112,94,69,0.23362353173137826],[112,94,70,0.2347436533790329],[112,94,71,0.23587610020247562],[112,94,72,0.2370218233089669],[112,94,73,0.23818172503181056],[112,94,74,0.239356656188084],[112,94,75,0.24054741329647697],[112,94,76,0.24175473575532952],[112,94,77,0.24297930298083892],[112,94,78,0.2442217315054323],[112,94,79,0.24548257203632293],[112,95,64,0.22112884977379402],[112,95,65,0.22221584797117278],[112,95,66,0.22331113810307307],[112,95,67,0.22441585547346365],[112,95,68,0.22553109875157326],[112,95,69,0.22665792743744922],[112,95,70,0.22779735928821448],[112,95,71,0.22895036770497937],[112,95,72,0.23011787908042353],[112,95,73,0.2313007701070076],[112,95,74,0.23249986504591477],[112,95,75,0.23371593295658977],[112,95,76,0.2349496848869716],[112,95,77,0.23620177102438672],[112,95,78,0.2374727778071011],[112,95,79,0.23876322499654656],[112,96,64,0.2139913523028972],[112,96,65,0.21509043432760944],[112,96,66,0.21619919818992936],[112,96,67,0.2173187591097559],[112,96,68,0.2184501946696696],[112,96,69,0.21959454228885952],[112,96,70,0.22075279665824138],[112,96,71,0.22192590713672303],[112,96,72,0.22311477510863528],[112,96,73,0.22432025130228514],[112,96,74,0.22554313306973253],[112,96,75,0.22678416162765871],[112,96,76,0.22804401925942122],[112,96,77,0.22932332647826342],[112,96,78,0.23062263915167616],[112,96,79,0.23194244558692806],[112,97,64,0.2067625168261547],[112,97,65,0.20787305115330112],[112,97,66,0.20899468566028984],[112,97,67,0.21012851534002247],[112,97,68,0.21127559651844635],[112,97,69,0.2124369443364658],[112,97,70,0.21361353019354254],[112,97,71,0.21480627915293754],[112,97,72,0.21601606730861211],[112,97,73,0.21724371911374607],[112,97,74,0.21849000467097598],[112,97,75,0.21975563698421696],[112,97,76,0.22104126917216763],[112,97,77,0.22234749164346385],[112,97,78,0.2236748292334788],[112,97,79,0.2250237383027872],[112,98,64,0.1994459859813119],[112,98,65,0.2005673419098268],[112,98,66,0.20170124402516473],[112,98,67,0.20284876695919093],[112,98,68,0.2040109456207327],[112,98,69,0.20518877268509889],[112,98,70,0.20638319604578123],[112,98,71,0.20759511622829346],[112,98,72,0.20882538376616533],[112,98,73,0.21007479653904862],[112,98,74,0.21134409707304025],[112,98,75,0.21263396980308236],[112,98,76,0.2139450382975433],[112,98,77,0.21527786244494096],[112,98,78,0.21663293560280994],[112,98,79,0.2180106817087259],[112,99,64,0.19204546905335168],[112,99,65,0.1931770172071734],[112,99,66,0.19432258442379816],[112,99,67,0.19548322484899763],[112,99,68,0.19665995182361393],[112,99,69,0.19785373538030449],[112,99,70,0.1990654997029669],[112,99,71,0.2002961205487945],[112,99,72,0.20154642263298714],[112,99,73,0.20281717697606605],[112,99,74,0.20410909821390555],[112,99,75,0.205422841870336],[112,99,76,0.20675900159242355],[112,99,77,0.20811810634839045],[112,99,78,0.20950061758817295],[112,99,79,0.21090692636663538],[112,100,64,0.18456473980470764],[112,100,65,0.18570585263373166],[112,100,66,0.1868624834538992],[112,100,67,0.18803566580891004],[112,100,68,0.18922639133048852],[112,100,69,0.19043560724197622],[112,100,70,0.19166421382509735],[112,100,71,0.19291306184985696],[112,100,72,0.19418294996758612],[112,100,73,0.19547462206709176],[112,100,74,0.19678876459401679],[112,100,75,0.198126003833271],[112,100,76,0.1994869031546337],[112,100,77,0.200871960221494],[112,100,78,0.202281604162725],[112,100,79,0.20371619270771307],[112,101,64,0.17700763425423724],[112,101,65,0.17815768653460096],[112,101,66,0.17932478094975574],[112,101,67,0.1805099303345164],[112,101,68,0.18171410448020048],[112,101,69,0.18293822764468454],[112,101,70,0.18418317602613776],[112,101,71,0.18544977520038014],[112,101,72,0.18673879752188766],[112,101,73,0.1880509594883969],[112,101,74,0.18938691906921912],[112,101,75,0.19074727299712058],[112,101,76,0.19213255402387158],[112,101,77,0.1935432281394311],[112,101,78,0.1949796917547621],[112,101,79,0.19644226884829746],[112,102,64,0.16937804840533344],[112,102,65,0.17053641773858874],[112,102,66,0.17171337770861023],[112,102,67,0.17290992034376723],[112,102,68,0.17412699347362226],[112,102,69,0.17536549824508052],[112,102,70,0.1766262866027098],[112,102,71,0.177910158733184],[112,102,72,0.17921786047387062],[112,102,73,0.18055008068551354],[112,102,74,0.1819074485891241],[112,102,75,0.18329053106693366],[112,102,76,0.18469982992751377],[112,102,77,0.18613577913502694],[112,102,78,0.18759874200260712],[112,102,79,0.18908900834988668],[112,103,64,0.16167993592299257],[112,103,65,0.16284600323371395],[112,103,66,0.16403223316511395],[112,103,67,0.16523959685087863],[112,103,68,0.16646902004751035],[112,103,69,0.16772138065619024],[112,103,70,0.16899750620931098],[112,103,71,0.17029817132162955],[112,103,72,0.17162409510606047],[112,103,73,0.17297593855406107],[112,103,74,0.17435430188072282],[112,103,75,0.17575972183442146],[112,103,76,0.17719266897112884],[112,103,77,0.17865354489335666],[112,103,78,0.18014267945372298],[112,103,79,0.1816603279231645],[112,104,64,0.1539173057596358],[112,104,65,0.15509045579102365],[112,104,66,0.15628536301365764],[112,104,67,0.15750297758770415],[112,104,68,0.15874420309542864],[112,104,69,0.1600098940684006],[112,104,70,0.1613008534798649],[112,104,71,0.16261783020222764],[112,104,72,0.16396151642968226],[112,104,73,0.16533254506592127],[112,104,74,0.16673148707705437],[112,104,75,0.16815884880957643],[112,104,76,0.16961506927350062],[112,104,77,0.17110051739061405],[112,104,78,0.17261548920785652],[112,104,79,0.17416020507584007],[112,105,64,0.14609421973007558],[112,105,65,0.14727384153710021],[112,105,66,0.14847683677897017],[112,105,67,0.14970413457295767],[112,105,68,0.15095661623613033],[112,105,69,0.15223511281752555],[112,105,70,0.15354040259598778],[112,105,71,0.15487320854361764],[112,105,72,0.15623419575485448],[112,105,73,0.1576239688411437],[112,105,74,0.15904306929130457],[112,105,75,0.16049197279744581],[112,105,76,0.1619710865465404],[112,105,77,0.16348074647762012],[112,105,78,0.16502121450458956],[112,105,79,0.16659267570467623],[112,106,64,0.13821479003543563],[112,106,65,0.13940027747508138],[112,106,66,0.140610775334794],[112,106,67,0.1418471916291031],[112,106,68,0.1431103853292091],[112,106,69,0.1444011638997601],[112,106,70,0.14572028080178417],[112,106,71,0.14706843296173056],[112,106,72,0.14844625820663992],[112,106,73,0.14985433266539283],[112,106,74,0.15129316813615684],[112,106,75,0.1527632094198743],[112,106,76,0.1542648316199059],[112,106,77,0.15579833740778992],[112,106,78,0.15736395425511474],[112,106,79,0.15896183163152539],[112,107,64,0.13028317673582374],[112,107,65,0.13147392895397975],[112,107,66,0.13269134837043417],[112,107,67,0.1339363218467033],[112,107,68,0.13520968593781585],[112,107,69,0.13651222443332495],[112,107,70,0.13784466586496846],[112,107,71,0.13920768098093478],[112,107,72,0.1406018801867504],[112,107,73,0.14202781095274208],[112,107,74,0.14348595518818907],[112,107,75,0.14497672658201488],[112,107,76,0.1465004679101249],[112,107,77,0.1480574483093569],[112,107,78,0.14964786051803863],[112,107,79,0.15127181808317314],[112,108,64,0.1223035851721494],[112,108,65,0.12349900708670603],[112,108,66,0.12472277180557911],[112,108,67,0.12597574499662922],[112,108,68,0.1272587407388383],[112,108,69,0.1285725190671928],[112,108,70,0.1299177834847089],[112,108,71,0.13129517844155641],[112,108,72,0.13270528678129873],[112,108,73,0.13414862715419834],[112,108,74,0.13562565139770943],[112,108,75,0.1371367418839997],[112,108,76,0.13868220883461424],[112,108,77,0.14026228760224385],[112,108,78,0.1418771359195941],[112,108,79,0.14352683111537762],[112,109,64,0.11428026333690111],[112,109,65,0.11547976611659871],[112,109,66,0.11670930515319844],[112,109,67,0.11796972488993224],[112,109,68,0.11926181688034898],[112,109,69,0.12058631733670594],[112,109,70,0.1219439046459998],[112,109,71,0.12333519685358624],[112,109,72,0.12476074911440677],[112,109,73,0.126221051111775],[112,109,74,0.12771652444384163],[112,109,75,0.1292475199775796],[112,109,76,0.13081431517040432],[112,109,77,0.1324171113593905],[112,109,78,0.13405603101808172],[112,109,79,0.135731114980914],[112,110,64,0.10621749919366408],[112,110,65,0.1074205007322524],[112,110,66,0.10865524883030908],[112,110,67,0.10992256668517392],[112,110,68,0.11122322328611484],[112,110,69,0.11255793096587591],[112,110,70,0.11392734292035556],[112,110,71,0.11533205069636043],[112,110,72,0.11677258164746207],[112,110,73,0.11824939635789922],[112,110,74,0.11976288603465207],[112,110,75,0.12131336986752644],[112,110,76,0.12290109235736307],[112,110,77,0.12452622061233504],[112,110,78,0.1261888416123278],[112,110,79,0.1278889594414238],[112,111,64,0.09811961794579677],[112,111,65,0.09932554333105265],[112,111,66,0.10056494141702005],[112,111,67,0.10183861414361783],[112,111,68,0.10314730790757365],[112,111,69,0.10449171111677286],[112,111,70,0.10587245171323018],[112,111,71,0.10729009466462541],[112,111,72,0.10874513942442848],[112,111,73,0.11023801736056194],[112,111,74,0.11176908915272249],[112,111,75,0.113338642158202],[112,111,76,0.11494688774632239],[112,111,77,0.11659395860144683],[112,111,78,0.11827990599456362],[112,111,79,0.12000469702346345],[112,112,64,0.08999097925405602],[112,112,65,0.09119926123121719],[112,112,66,0.09244275686364906],[112,112,67,0.09372224683208613],[112,112,68,0.09503845492307916],[112,112,69,0.09639204558580244],[112,112,70,0.09778362145796665],[112,112,71,0.09921372086078362],[112,112,72,0.10068281526300954],[112,112,73,0.10219130671400878],[112,112,74,0.10373952524596797],[112,112,75,0.10532772624509207],[112,112,76,0.10695608779190552],[112,112,77,0.10862470797061385],[112,112,78,0.11033360214752641],[112,112,79,0.1120827002185576],[112,113,64,0.08183597440297019],[112,113,65,0.08304605383213226],[112,113,66,0.08429310164571047],[112,113,67,0.08557787727326904],[112,113,68,0.08690108188420437],[112,113,69,0.08826335594666562],[112,113,70,0.08966527675606262],[112,113,71,0.09110735593311503],[112,113,72,0.09259003689145995],[112,113,73,0.09411369227476879],[112,113,74,0.09567862136349714],[112,113,75,0.09728504745110361],[112,113,76,0.09893311518985543],[112,113,77,0.10062288790618323],[112,113,78,0.1023543448855776],[112,113,79,0.1041273786270549],[112,114,64,0.07365902341638769],[112,114,65,0.0748703497234236],[112,114,66,0.07612041186720242],[112,114,67,0.07740994804392476],[112,114,68,0.0787396368095386],[112,114,69,0.08011009464043034],[112,114,70,0.08152187346419187],[112,114,71,0.08297545816040547],[112,114,72,0.08447126403147537],[112,114,73,0.08600963424344632],[112,114,74,0.08759083723694189],[112,114,75,0.08921506410805141],[112,114,76,0.09088242595928786],[112,114,77,0.09259295122057604],[112,114,78,0.0943465829402686],[112,114,79,0.09614317604620826],[112,115,64,0.06546457212184248],[112,115,65,0.06667660374239176],[112,115,66,0.06792915031183056],[112,115,67,0.06922292882060205],[112,115,68,0.07055859522561125],[112,115,69,0.07193674201235523],[112,115,70,0.07335789572761031],[112,115,71,0.07482251448261834],[112,115,72,0.07633098542679673],[112,115,73,0.07788362219191969],[112,115,74,0.07948066230689543],[112,115,75,0.08112226458297478],[112,115,76,0.08280850646950971],[112,115,77,0.08453938138022388],[112,115,78,0.08631479598998748],[112,115,79,0.08813456750212367],[112,116,64,0.05725708916400829],[112,116,65,0.058469293980090875],[112,116,66,0.05972380344244671],[112,116,67,0.061021313373164465],[112,116,68,0.06236245715522376],[112,116,69,0.06374780329573809],[112,116,70,0.0651778529602306],[112,116,71,0.06665303747788637],[112,116,72,0.06817371581780834],[112,116,73,0.06974017203621824],[112,116,74,0.07135261269473464],[112,116,75,0.07301116424955723],[112,116,76,0.07471587041168015],[112,116,77,0.07646668947809365],[112,116,78,0.07826349163396856],[112,116,79,0.08010605622584943],[112,117,64,0.04904106296686861],[112,117,65,0.05025291873567728],[112,117,66,0.051508878348324794],[112,117,67,0.0528096165057389],[112,117,68,0.05415574405280843],[112,117,69,0.05554780554241745],[112,117,70,0.05698627677098356],[112,117,71,0.05847156228544925],[112,117,72,0.060003992861750455],[112,117,73,0.061583822954704714],[112,117,74,0.0632112281194529],[112,117,75,0.06488630240427923],[112,117,76,0.06660905571493692],[112,117,77,0.06837941115043583],[112,117,78,0.07019720231028825],[112,117,79,0.07206217057323727],[112,118,64,0.04082099864505134],[112,118,65,0.042031993419472446],[112,118,66,0.043288899640723466],[112,118,67,0.044592370945539306],[112,118,68,0.04594299568726734],[112,118,69,0.04734129450037222],[112,118,70,0.0487877178369201],[112,118,71,0.05028264347498346],[112,118,72,0.051826373998998476],[112,118,73,0.05341913425201117],[112,118,74,0.05506106875994965],[112,118,75,0.05675223912774635],[112,118,76,0.05849262140743727],[112,118,77,0.06028210343819507],[112,118,78,0.06212048215829169],[112,118,79,0.0640074608890151],[112,119,64,0.0326014148641095],[112,119,65,0.033811047404528505],[112,119,66,0.03506840629651886],[112,119,67,0.03637412417934799],[112,119,68,0.0377287669720725],[112,119,69,0.03913283143820634],[112,119,70,0.04058674272283236],[112,119,71,0.04209085186210826],[112,119,72,0.043645433265189326],[112,119,73,0.04525068216851014],[112,119,74,0.046906712062559974],[112,119,75,0.04861355209097895],[112,119,76,0.050371144422095726],[112,119,77,0.052179341592870965],[112,119,78,0.054037903825236044],[112,119,79,0.05594649631485832],[112,120,64,0.024386840649546937],[112,120,65,0.025594620826488113],[112,120,66,0.026851948449704455],[112,120,67,0.028159435237448627],[112,120,68,0.029517624742424753],[112,120,69,0.030926989916310987],[112,120,70,0.032387930647194973],[112,120,71,0.033900771269867014],[112,120,72,0.03546575804899421],[112,120,73,0.037083056635120626],[112,120,74,0.038752749493624616],[112,120,75,0.04047483330646262],[112,120,76,0.04224921634681905],[112,120,77,0.04407571582662767],[112,120,78,0.04595405521695317],[112,120,79,0.04788386154126223],[112,121,64,0.01618181214500175],[112,121,65,0.017387261332157622],[112,121,66,0.018644084131171412],[112,121,67,0.019952871425431395],[112,121,68,0.021314144479885055],[112,121,69,0.022728352505124116],[112,121,70,0.02419587019483893],[112,121,71,0.025716995236594653],[112,121,72,0.027291945795950012],[112,121,73,0.028920857973861902],[112,121,74,0.030603783237510118],[112,121,75,0.032340685824369164],[112,121,76,0.03413144011964825],[112,121,77,0.03597582800706356],[112,121,78,0.037873536192932544],[112,121,79,0.039824153503620174],[112,122,64,0.007990869319382365],[112,122,65,0.009193520776582864],[112,122,66,0.010449375956565754],[112,122,67,0.011759005003656453],[112,122,68,0.013122906984272875],[112,122,69,0.014541507450274993],[112,122,70,0.016015155976149276],[112,122,71,0.017544123669966605],[112,122,72,0.019128600658143757],[112,122,73,0.020768693543946837],[112,122,74,0.022464422839874543],[112,122,75,0.024215720373743754],[112,122,76,0.026022426668602217],[112,122,77,0.027884288296431803],[112,122,78,0.029800955205630808],[112,122,79,0.031771978022305136],[112,123,64,-1.8144737725633853E-4],[112,123,65,0.0010179518684206301],[112,123,66,0.002272387762005057],[112,123,67,0.003582409814171461],[112,123,68,0.0049484949926187904],[112,123,69,0.006371045284407351],[112,123,70,0.007850385232581636],[112,123,71,0.009386759447019],[112,123,72,0.01098033008953947],[112,123,73,0.01263117433320754],[112,123,74,0.014339281795970327],[112,123,75,0.016104551948449286],[112,123,76,0.017926791496016614],[112,123,77,0.019805711735111198],[112,123,78,0.02174092588379134],[112,123,79,0.023731946386548408],[112,124,64,-0.008330600408676503],[112,124,65,-0.007134895235979821],[112,124,66,-0.005882318811917087],[112,124,67,-0.004572342144503916],[112,124,68,-0.0032045102544075443],[112,124,69,-0.0017784446139025856],[112,124,70,-2.9384561109080387E-4],[112,124,71,0.0012495049605569242],[112,124,72,0.002851741387366269],[112,124,73,0.004512911495268723],[112,124,74,0.00623297408439677],[112,124,75,0.008011796338282473],[112,124,76,0.00984915120778862],[112,124,77,0.011744714769732267],[112,124,78,0.013698063560191875],[112,124,79,0.01570867188252667],[112,125,64,-0.016452058598469932],[112,125,65,-0.015260476389987843],[112,125,66,-0.01401018778805696],[112,125,67,-0.012700684194929035],[112,125,68,-0.01133153249880331],[112,125,69,-0.009902377514340754],[112,125,70,-0.008412944448001558],[112,125,71,-0.0068630413882558305],[112,125,72,-0.005252561820641932],[112,125,73,-0.0035814871677379845],[112,125,74,-0.00184988935389796],[112,125,75,-5.7933394943088246E-5],[112,125,76,0.0017941199873271474],[112,125,77,0.0037059117257620677],[112,125,78,0.0056769817436136405],[112,125,79,0.007706766265451415],[112,126,64,-0.02454130062732829],[112,126,65,-0.023354256965810727],[112,126,66,-0.022106672372778857],[112,126,67,-0.020798058510844708],[112,126,68,-0.019428004004483856],[112,126,69,-0.01799617688237154],[112,126,70,-0.01650232704410176],[112,126,71,-0.01494628875133569],[112,126,72,-0.013327983143363253],[112,126,73,-0.011647420777127326],[112,126,74,-0.009904704191582403],[112,126,75,-0.00810003049655772],[112,126,76,-0.006233693986005817],[112,126,77,-0.004306088775668293],[112,126,78,-0.002317711465175676],[112,126,79,-2.6916382454367227E-4],[112,127,64,-0.032593818581155065],[112,127,65,-0.031411715414901065],[112,127,66,-0.030167238527733564],[112,127,67,-0.028859919699402936],[112,127,68,-0.027489369149058585],[112,127,69,-0.02605527797966023],[112,127,70,-0.02455742064633526],[112,127,71,-0.02299565744873161],[112,127,72,-0.021369937047343468],[112,127,73,-0.019680299003867474],[112,127,74,-0.01792687634545309],[112,127,75,-0.01610989815302366],[112,127,76,-0.01422969217354475],[112,127,77,-0.01228668745627537],[112,127,78,-0.010281417013014216],[112,127,79,-0.008214520502308198],[112,128,64,-0.040605121550227274],[112,128,65,-0.039428346879859244],[112,128,66,-0.03818736859356231],[112,128,67,-0.036881738435740496],[112,128,68,-0.035511088068344576],[112,128,69,-0.03407513151760855],[112,128,70,-0.03257366764429259],[112,128,71,-0.031006582637495006],[112,128,72,-0.029373852532003752],[112,128,73,-0.027675545749246577],[112,128,74,-0.025911825661703358],[112,128,75,-0.024082953180958766],[112,128,76,-0.022189289369269116],[112,128,77,-0.020231298074681825],[112,128,78,-0.018209548589716573],[112,128,79,-0.01612471833357887],[112,129,64,-0.048570739279609865],[112,129,65,-0.04739966685803798],[112,129,66,-0.04616256496573329],[112,129,67,-0.04485900515009206],[112,129,68,-0.043488640353816777],[112,129,69,-0.042051207364208254],[112,129,70,-0.04054652928554009],[112,129,71,-0.03897451803457602],[112,129,72,-0.03733517685919663],[112,129,73,-0.03562860288020264],[112,129,74,-0.033854989656149526],[112,129,75,-0.032014629771398684],[112,129,76,-0.03010791744725383],[112,129,77,-0.0281353511762249],[112,129,78,-0.026097536379426356],[112,129,79,-0.023995188087080566],[112,130,64,-0.056486225870418405],[112,130,65,-0.055321214916443096],[112,130,66,-0.05408835382209998],[112,130,67,-0.05278723376704364],[112,130,68,-0.05141752880259215],[112,130,69,-0.0499789983038057],[112,130,70,-0.04847148944422636],[112,130,71,-0.046894939693337134],[112,130,72,-0.045249379336710915],[112,130,73,-0.04353493401891284],[112,130,74,-0.041751827309012834],[112,130,75,-0.03990038328889223],[112,130,76,-0.03798102916421686],[112,130,77,-0.03599429789811126],[112,130,78,-0.03394083086754929],[112,130,79,-0.031821380542427],[112,131,64,-0.06434716353212816],[112,131,65,-0.06318855845812377],[112,131,66,-0.06196028890238592],[112,131,67,-0.060661965497120274],[112,131,68,-0.059293283220145876],[112,131,69,-0.05785402384997751],[112,131,70,-0.05634405844315671],[112,131,71,-0.0547633498338832],[112,131,72,-0.053111955155920265],[112,131,73,-0.05139002838683904],[112,131,74,-0.04959782291445192],[112,131,75,-0.04773569412563006],[112,131,76,-0.04580410201736418],[112,131,77,-0.04380361383011511],[112,131,78,-0.041734906703461694],[112,131,79,-0.03959877035401538],[112,132,64,-0.07214916638613511],[112,132,65,-0.07099729654026787],[112,132,66,-0.06977395533979819],[112,132,67,-0.06847877268091879],[112,132,68,-0.06711146427596709],[112,132,69,-0.06567183411172367],[112,132,70,-0.06415977692955044],[112,132,71,-0.06257528072741603],[112,132,72,-0.06091842928378588],[112,132,73,-0.05918940470343714],[112,132,74,-0.057388489985057745],[112,132,75,-0.05551607161081029],[112,132,76,-0.05357264215773461],[112,132,77,-0.051558802931026326],[112,132,78,-0.049475266619202096],[112,132,79,-0.04732285997111951],[112,133,64,-0.0798878843201668],[112,133,65,-0.0787430637435883],[112,133,66,-0.07752497354436527],[112,133,67,-0.07623326268537489],[112,133,68,-0.07486766741174444],[112,133,69,-0.07342801371257013],[112,133,70,-0.07191421980406776],[112,133,71,-0.07032629863420659],[112,133,72,-0.0686643604088013],[112,133,73,-0.06692861513912507],[112,133,74,-0.06511937521089806],[112,133,75,-0.06323705797483814],[112,133,76,-0.061282188358643075],[112,133,77,-0.05925540150044428],[112,133,78,-0.05715744540374046],[112,133,79,-0.05498918361378102],[112,134,64,-0.08755900689373936],[112,134,65,-0.08642153409320819],[112,134,66,-0.08520900313820334],[112,134,67,-0.08392108185237318],[112,134,68,-0.08255752680229067],[112,134,69,-0.08111818576278784],[112,134,70,-0.07960300020331457],[112,134,71,-0.07801200779538708],[112,134,72,-0.07634534494109202],[112,134,73,-0.07460324932271056],[112,134,74,-0.0727860624733212],[112,134,75,-0.07089423236856107],[112,134,76,-0.06892831603942284],[112,134,77,-0.06688898220611894],[112,134,78,-0.06477701393302948],[112,134,79,-0.06259331130469847],[112,135,64,-0.09515826729486743],[112,135,65,-0.09402842503124231],[112,135,66,-0.0928217469429074],[112,135,67,-0.09153791949989354],[112,135,68,-0.09017671936939986],[112,135,69,-0.08873801588492347],[112,135,70,-0.0872217735360209],[112,135,71,-0.08562805447876398],[112,135,72,-0.08395702106685632],[112,135,73,-0.08220893840347854],[112,135,74,-0.08038417691371291],[112,135,75,-0.07848321493773913],[112,135,76,-0.07650664134466534],[112,135,77,-0.07445515816703674],[112,135,78,-0.07232958325603145],[112,135,79,-0.07013085295731092],[112,136,64,-0.10268144634761794],[112,136,65,-0.10155950144067061],[112,136,66,-0.10035895501866654],[112,136,67,-0.09907951197529713],[112,136,68,-0.09772096884823633],[112,136,69,-0.09628321629224101],[112,136,70,-0.09476624157249225],[112,136,71,-0.09317013107824668],[112,136,72,-0.0914950728567574],[112,136,73,-0.08974135916753612],[112,136,74,-0.08790938905680779],[112,136,75,-0.08599967095234584],[112,136,76,-0.08401282527855702],[112,136,77,-0.08194958709185396],[112,136,78,-0.07981080873632607],[112,136,79,-0.0775974625196797],[112,137,64,-0.11012437657072349],[112,137,65,-0.10901057972072054],[112,137,66,-0.107816428755315],[112,137,67,-0.10654164676095623],[112,137,68,-0.10518604990646863],[112,137,69,-0.10374954992028584],[112,137,70,-0.10223215658754448],[112,137,71,-0.10063398026710624],[112,137,72,-0.09895523442846754],[112,137,73,-0.09719623820862677],[112,137,74,-0.09535741898876304],[112,137,75,-0.09343931499091507],[112,137,76,-0.09144257789452359],[112,137,77,-0.08936797547288178],[112,137,78,-0.08721639424950334],[112,137,79,-0.08498884217437419],[112,138,64,-0.11748294628743006],[112,138,65,-0.11637753191392886],[112,138,66,-0.11519002501549569],[112,138,67,-0.11392016663241344],[112,138,68,-0.11256779231632397],[112,138,69,-0.1111328346117485],[112,138,70,-0.10961532555710007],[112,138,71,-0.10801539920524039],[112,138,72,-0.10633329416355142],[112,138,73,-0.10456935615358975],[112,138,74,-0.10272404059017703],[112,138,75,-0.10079791518010861],[112,138,76,-0.09879166254035787],[112,138,77,-0.09670608283580795],[112,138,78,-0.09454209643652545],[112,138,79,-0.09230074659454146],[112,139,64,-0.12475310378618526],[112,139,65,-0.12365628988449062],[112,139,66,-0.12247566032953894],[112,139,67,-0.12121097386866753],[112,139,68,-0.11986208517916475],[112,139,69,-0.11842894735423015],[112,139,70,-0.11691161440804876],[112,139,71,-0.11531024380004462],[112,139,72,-0.1136250989782811],[112,139,73,-0.11185655194206956],[112,139,74,-0.11000508582364754],[112,139,75,-0.10807129748910516],[112,139,76,-0.10605590015843724],[112,139,77,-0.10395972604475123],[112,139,78,-0.10178372901265265],[112,139,79,-0.09952898725576254],[112,140,64,-0.13193086153250005],[112,140,65,-0.130842849548231],[112,140,66,-0.129669315142396],[112,140,67,-0.12841003451492428],[112,140,68,-0.12706488120293213],[112,140,69,-0.12563382857125005],[112,140,70,-0.12411695232170872],[112,140,71,-0.12251443302123488],[112,140,72,-0.12082655864873248],[112,140,73,-0.11905372716081142],[112,140,74,-0.1171964490762184],[112,140,75,-0.11525535007915655],[112,140,76,-0.11323117364136481],[112,140,77,-0.11112478366299183],[112,140,78,-0.10893716713228252],[112,140,79,-0.10666943680403396],[112,141,64,-0.13901230043173662],[112,141,65,-0.13793327515395004],[112,141,66,-0.13676703811237134],[112,141,67,-0.1355133826975644],[112,141,68,-0.1341722010321914],[112,141,69,-0.1327434864662389],[112,141,70,-0.13122733609064097],[112,141,71,-0.12962395326936138],[112,141,72,-0.1279336501899001],[112,141,73,-0.1261568504322922],[112,141,74,-0.12429409155645177],[112,141,75,-0.12234602770804848],[112,141,76,-0.12031343224278657],[112,141,77,-0.11819720036912262],[112,141,78,-0.11599835180943674],[112,141,79,-0.1137180334796205],[112,142,64,-0.14599357414315262],[112,142,65,-0.14492370361646856],[112,142,66,-0.1437649504619921],[112,142,67,-0.14251712499165547],[112,142,68,-0.14118013763112802],[112,142,69,-0.13975400141985517],[112,142,70,-0.1382388345291421],[112,142,71,-0.13663486279835102],[112,142,72,-0.13494242228916853],[112,142,73,-0.1331619618580182],[112,142,74,-0.13129404574646486],[112,142,75,-0.1293393561898063],[112,142,76,-0.12729869604371202],[112,142,77,-0.12517299142895344],[112,142,78,-0.12296329439423903],[112,142,79,-0.12067078559711197],[112,143,64,-0.15287091344480486],[112,143,65,-0.15181034890098488],[112,143,66,-0.15065925038061212],[112,143,67,-0.1494174448406147],[112,143,68,-0.14808486071908278],[112,143,69,-0.14666153044022423],[112,143,70,-0.14514759293702562],[112,143,71,-0.14354329619168038],[112,143,72,-0.1418489997937442],[112,143,73,-0.14006517751609415],[112,143,74,-0.13819241990853504],[112,143,75,-0.13623143690924777],[112,143,76,-0.13418306047394546],[112,143,77,-0.13204824722277575],[112,143,78,-0.12982808110498245],[112,143,79,-0.1275237760812904],[112,144,64,-0.15964063064951195],[112,144,65,-0.158589506458934],[112,144,66,-0.15744621747895293],[112,144,67,-0.15621060702822054],[112,144,68,-0.15488262125883345],[112,144,69,-0.15346231166630087],[112,144,70,-0.15194983761688707],[112,144,71,-0.15034546889237754],[112,144,72,-0.14864958825224217],[112,144,73,-0.14686269401326146],[112,144,74,-0.14498540264646476],[112,144,75,-0.14301845139157576],[112,144,76,-0.14096270088882612],[112,144,77,-0.13881913782818067],[112,144,78,-0.13658887761598526],[112,144,79,-0.13427316705900205],[112,145,64,-0.16629912407203673],[112,145,65,-0.1652575577155161],[112,145,66,-0.16412221729574183],[112,145,67,-0.1628929622031342],[112,145,68,-0.16156975599778245],[112,145,69,-0.16015266892451552],[112,145,70,-0.15864188044501337],[112,145,71,-0.15703768178701516],[112,145,72,-0.1553404785105944],[112,145,73,-0.1535507930915655],[112,145,74,-0.15166926752187815],[112,145,75,-0.14969666592718167],[112,145,76,-0.14763387720143528],[112,145,77,-0.14548191765859475],[112,145,78,-0.14324193370139693],[112,145,79,-0.14091520450719774],[112,146,64,-0.17284288254714475],[112,146,65,-0.1718109746085471],[112,146,66,-0.17068370585610304],[112,146,67,-0.16946095145558493],[112,146,68,-0.16814269206170507],[112,146,69,-0.16672901633835935],[112,146,70,-0.16522012349559545],[112,146,71,-0.16361632584334884],[112,146,72,-0.16191805136192938],[112,146,73,-0.16012584628931203],[112,146,74,-0.15824037772509525],[112,146,75,-0.1562624362513063],[112,146,76,-0.15419293856992944],[112,146,77,-0.15203293015718988],[112,146,78,-0.14978358793460955],[112,146,79,-0.14744622295679666],[112,147,64,-0.17926848999871392],[112,147,65,-0.17824632417880815],[112,147,66,-0.17712723428187527],[112,147,67,-0.17591111094639966],[112,147,68,-0.17459795160123381],[112,147,69,-0.17318786299108702],[112,147,70,-0.17168106371841674],[112,147,71,-0.1700778868017787],[112,147,72,-0.16837878225060587],[112,147,73,-0.16658431965648302],[112,147,74,-0.16469519080076622],[112,147,75,-0.16271221227873933],[112,147,76,-0.16063632814017637],[112,147,77,-0.15846861254634237],[112,147,78,-0.15621027244345298],[112,147,79,-0.15386265025255208],[112,148,64,-0.18557263006006064],[112,148,65,-0.18456027321205826],[112,148,66,-0.1834494534540272],[112,148,67,-0.18224007658853625],[112,148,68,-0.1809321564912466],[112,148,69,-0.1795258176416974],[112,148,70,-0.17802129767018482],[112,148,71,-0.17641894992079588],[112,148,72,-0.17471924603055866],[112,148,73,-0.172922778524781],[112,148,74,-0.17103026342842698],[112,148,75,-0.169042542893722],[112,148,76,-0.16696058784385337],[112,148,77,-0.16478550063280406],[112,148,78,-0.16251851772133485],[112,148,79,-0.1601610123690771],[112,149,64,-0.19175209074514887],[112,149,65,-0.19074959293238025],[112,149,66,-0.1896471187268306],[112,149,67,-0.18844458878079384],[112,149,68,-0.18714203308282384],[112,149,69,-0.18573959349386515],[112,149,70,-0.18423752629917278],[112,149,71,-0.1826362047760881],[112,149,72,-0.18093612177762886],[112,149,73,-0.17913789233196797],[112,149,74,-0.17724225625764656],[112,149,75,-0.1752500807947175],[112,149,76,-0.17316236325168177],[112,149,77,-0.17098023366825754],[112,149,78,-0.1687049574939955],[112,149,79,-0.1663379382827067],[112,150,64,-0.1978037691708493],[112,150,65,-0.19681116374701613],[112,150,66,-0.19571709469395782],[112,150,67,-0.1945214971938548],[112,150,68,-0.19322441700793547],[112,150,69,-0.19182601301797997],[112,150,70,-0.19032655978333057],[112,150,71,-0.1887264501134558],[112,150,72,-0.187026197656039],[112,150,73,-0.18522643950066098],[112,150,74,-0.18332793879792497],[112,150,75,-0.18133158739421495],[112,150,76,-0.1792384084819557],[112,150,77,-0.1770495592654121],[112,150,78,-0.17476633364203964],[112,150,79,-0.17239016489935277],[112,151,64,-0.20372467633041014],[112,151,65,-0.2027419800428728],[112,151,66,-0.20165636000667497],[112,151,67,-0.20046776560884005],[112,151,68,-0.1991762580370332],[112,151,69,-0.19778201282646957],[112,151,70,-0.19628532242204322],[112,151,71,-0.19468659875572203],[112,151,72,-0.19298637583918388],[112,151,73,-0.19118531237175607],[112,151,74,-0.18928419436351618],[112,151,75,-0.1872839377737352],[112,151,76,-0.18518559116453825],[112,151,77,-0.18299033836981804],[112,151,78,-0.1806995011794147],[112,151,79,-0.17831454203852304],[112,152,64,-0.20951194191781208],[112,152,65,-0.2085391550343485],[112,152,66,-0.20746201224378968],[112,152,67,-0.20628047680802652],[112,152,68,-0.2049946249892065],[112,152,69,-0.20360464860206406],[112,152,70,-0.20211085758118974],[112,152,71,-0.2005136825632886],[112,152,72,-0.1988136774843997],[112,152,73,-0.19701152219214124],[112,152,74,-0.19510802507283587],[112,152,75,-0.19310412569370228],[112,152,76,-0.1910008974599846],[112,152,77,-0.1887995502870542],[112,152,78,-0.18650143328750057],[112,152,79,-0.18410803747317006],[112,153,64,-0.21516281920318447],[112,153,65,-0.21419992566267376],[112,153,66,-0.21313127283354194],[112,153,67,-0.21195683751792482],[112,153,68,-0.21067671069508875],[112,153,69,-0.2092911000791896],[112,153,70,-0.20780033269169562],[112,153,71,-0.20620485744852834],[112,153,72,-0.2045052477618976],[112,153,73,-0.20270220415688478],[112,153,74,-0.20079655690263842],[112,153,75,-0.19878926865836444],[112,153,76,-0.19668143713398156],[112,153,77,-0.1944742977654793],[112,153,78,-0.19216922640499123],[112,153,79,-0.18976774202554925],[112,154,64,-0.22067468995941109],[112,154,65,-0.21972165754688744],[112,154,66,-0.2186614920275588],[112,154,67,-0.21749418340483073],[112,154,68,-0.21621983701263592],[112,154,69,-0.2148386760786145],[112,154,70,-0.2133510443016955],[112,154,71,-0.21175740844413582],[112,154,72,-0.21005836093798147],[112,154,73,-0.20825462250602278],[112,154,74,-0.20634704479709098],[112,154,75,-0.2043366130358888],[112,154,76,-0.20222444868722178],[112,154,77,-0.20001181213466734],[112,154,78,-0.19770010537369753],[112,154,79,-0.19529087471921647],[112,155,64,-0.22604506943964164],[112,155,65,-0.22510184998616645],[112,155,66,-0.22405015392659366],[112,155,67,-0.22288998412257677],[112,155,68,-0.22162145989549875],[112,155,69,-0.2202448195950647],[112,155,70,-0.21876042318203326],[112,155,71,-0.21716875482515507],[112,155,72,-0.21547042551227313],[112,155,73,-0.21366617567566304],[112,155,74,-0.2117568778314579],[112,155,75,-0.20974353923334899],[112,155,76,-0.2076273045404352],[112,155,77,-0.20540945849924963],[112,155,78,-0.20309142863998475],[112,155,79,-0.200674787986877],[112,156,64,-0.2312716114058544],[112,156,65,-0.2303381410136518],[112,156,66,-0.229294881558193],[112,156,67,-0.22814184841261953],[112,156,68,-0.22687917451412964],[112,156,69,-0.22550711293795478],[112,156,70,-0.22402603948523214],[112,156,71,-0.22243645528482858],[112,156,72,-0.22073898940908598],[112,156,73,-0.21893440150355048],[112,156,74,-0.21702358443054115],[112,156,75,-0.21500756692674727],[112,156,76,-0.2128875162747208],[112,156,77,-0.21066474098830112],[112,156,78,-0.20834069351199047],[112,156,79,-0.20591697293423605],[112,157,64,-0.23635211320860683],[112,157,65,-0.23542831250191365],[112,157,66,-0.2343934420064291],[112,157,67,-0.23324752925661107],[112,157,68,-0.23199072042976465],[112,157,69,-0.23062328292537282],[112,157,70,-0.22914560795808325],[112,157,71,-0.22755821316440594],[112,157,72,-0.22586174522308733],[112,157,73,-0.224056982489232],[112,157,74,-0.22214483764202042],[112,157,75,-0.22012636034621413],[112,157,76,-0.21800273992731467],[112,157,77,-0.21577530806041645],[112,157,78,-0.21344554147276507],[112,157,79,-0.211015064659984],[112,158,64,-0.24128452091769337],[112,158,65,-0.2403702953197654],[112,158,66,-0.2393437515934158],[112,158,67,-0.23820492908116175],[112,158,68,-0.23695398682099644],[112,158,69,-0.23559120613103168],[112,158,70,-0.23411699320756607],[112,158,71,-0.2325318817366281],[112,158,72,-0.23083653551896344],[112,158,73,-0.22903175110853757],[112,158,74,-0.22711846046439865],[112,158,75,-0.22509773361609486],[112,158,76,-0.22297078134251558],[112,158,77,-0.2207389578641865],[112,158,78,-0.21840376354904312],[112,158,79,-0.21596684763163532],[112,159,64,-0.24606693450386685],[112,159,65,-0.24516217454059552],[112,159,66,-0.24414388111276764],[112,159,67,-0.24301210501496162],[112,159,68,-0.2417670177630995],[112,159,69,-0.24040891418435528],[112,159,70,-0.2389382150202587],[112,159,71,-0.2373554695430493],[112,159,72,-0.2356613581852527],[112,159,73,-0.23385669518253926],[112,159,74,-0.23194243122972436],[112,159,75,-0.22991965615009335],[112,159,76,-0.22778960157792427],[112,159,77,-0.2255536436542407],[112,159,78,-0.22321330573581644],[112,159,79,-0.2207702611173853],[112,160,64,-0.25069761307172034],[112,160,65,-0.2498021947022998],[112,160,66,-0.24879206111509256],[112,160,67,-0.24766727419834644],[112,160,68,-0.24642801756019672],[112,160,69,-0.24507459912378182],[112,160,70,-0.24360745373533021],[112,160,71,-0.2420271457852856],[112,160,72,-0.24033437184242945],[112,160,73,-0.2385299633010748],[112,160,74,-0.23661488904117656],[112,160,75,-0.23459025810155398],[112,160,76,-0.2324573223660893],[112,160,77,-0.23021747926294156],[112,160,78,-0.22787227447678915],[112,160,79,-0.22542340467406496],[112,161,64,-0.2551749801435067],[112,161,65,-0.2542887651186029],[112,161,66,-0.25328668724530334],[112,161,67,-0.2521688191450968],[112,161,68,-0.25093535613005324],[112,161,69,-0.24958661880307298],[112,161,70,-0.2481230556709032],[112,161,71,-0.24654524576997494],[112,161,72,-0.24485390130503426],[112,161,73,-0.2430498703006264],[112,161,74,-0.24113413926529437],[112,161,75,-0.23910783586867113],[112,161,76,-0.2369722316313444],[112,161,77,-0.23472874462751991],[112,161,78,-0.23237894220050936],[112,161,79,-0.22992454369099335],[112,162,64,-0.25949762899399986],[112,162,65,-0.25862046524186977],[112,162,66,-0.2576263256318466],[112,162,67,-0.2565152931565673],[112,162,68,-0.25528757444159556],[112,162,69,-0.25394350235073027],[112,162,70,-0.2524835386038786],[112,162,71,-0.2509082764075503],[112,162,72,-0.24921844309793717],[112,162,73,-0.2474149027966489],[112,162,74,-0.24549865907895652],[112,162,75,-0.2434708576547281],[112,162,76,-0.24133278906193345],[112,162,77,-0.2390858913727466],[112,162,78,-0.23673175291226567],[112,162,79,-0.23427211498981027],[112,163,64,-0.26366432803652773],[112,163,65,-0.2627960500775326],[112,163,66,-0.2618097183279793],[112,163,67,-0.26070542578827405],[112,163,68,-0.25948339000528786],[112,163,69,-0.2581439556826417],[112,163,70,-0.2566875973033601],[112,163,71,-0.25511492176495043],[112,163,72,-0.25342667102687466],[112,163,73,-0.2516237247704781],[112,163,74,-0.24970710307123478],[112,163,75,-0.24767796908348672],[112,163,76,-0.24553763173755794],[112,163,77,-0.24328754844927225],[112,163,78,-0.24092932784189058],[112,163,79,-0.23846473248043476],[112,164,64,-0.2676740262599234],[112,164,65,-0.26681445564988426],[112,164,66,-0.26583578880484293],[112,164,67,-0.26473812836869515],[112,164,68,-0.2635217024161137],[112,164,69,-0.2621868670677173],[112,164,70,-0.26073410911742156],[112,164,71,-0.259164048672025],[112,164,72,-0.2574774418030037],[112,164,73,-0.25567518321057303],[112,164,74,-0.25375830889987716],[112,164,75,-0.2517279988694886],[112,164,76,-0.24958557981209262],[112,164,77,-0.24733252782738524],[112,164,78,-0.2449704711472105],[112,164,79,-0.24250119287288596],[112,165,64,-0.27152585871659973],[112,165,65,-0.2706748045194439],[112,165,66,-0.2697036474965365],[112,165,67,-0.2686124995704807],[112,165,68,-0.26740159894936333],[112,165,69,-0.2660713127467065],[112,165,70,-0.2646221396134236],[112,165,71,-0.26305471238182954],[112,165,72,-0.2613698007216775],[112,165,73,-0.25956831380828616],[112,165,74,-0.25765130300261374],[112,165,75,-0.25561996454345914],[112,165,76,-0.25347564225167085],[112,165,77,-0.2512198302463894],[112,165,78,-0.2488541756733471],[112,165,79,-0.24638048144517832],[112,166,64,-0.2752191520616105],[112,166,65,-0.2743764113517555],[112,166,66,-0.27341259739705437],[112,166,67,-0.2723278310339422],[112,166,68,-0.27112236020909686],[112,166,69,-0.26979656260407003],[112,166,70,-0.26835094827174477],[112,166,71,-0.26678616228468],[112,166,72,-0.2651029873953059],[112,166,73,-0.26330234670803787],[112,166,74,-0.2613853063631635],[112,166,75,-0.25935307823268794],[112,166,76,-0.2572070226280109],[112,166,77,-0.2549486510194655],[112,166,78,-0.25257962876774154],[112,166,79,-0.2501017778671494],[112,167,64,-0.2787534301428608],[112,167,65,-0.27791878853778174],[112,167,66,-0.27696213970925065],[112,167,67,-0.27588361304297904],[112,167,68,-0.27468346582944037],[112,167,69,-0.27336208589306277],[112,167,70,-0.27191999423308344],[112,167,71,-0.2703578476761267],[112,167,72,-0.26867644154046644],[112,167,73,-0.26687671231204346],[112,167,74,-0.2649597403320887],[112,167,75,-0.2629267524965423],[112,167,76,-0.2607791249671366],[112,167,77,-0.2585183858941792],[112,167,78,-0.25614621815105154],[112,167,79,-0.2536644620803865],[112,168,64,-0.2821284196422761],[112,168,65,-0.2813016518657069],[112,168,66,-0.28035197954563784],[112,168,67,-0.2792795402532541],[112,168,68,-0.27808460022852544],[112,168,69,-0.27676755701384104],[112,168,70,-0.2753289420991477],[112,168,71,-0.2737694235786561],[112,168,72,-0.27208980881906963],[112,168,73,-0.2702910471394153],[112,168,74,-0.26837423250231973],[112,168,75,-0.2663406062169248],[112,168,76,-0.26419155965330776],[112,168,77,-0.2619286369684466],[112,168,78,-0.259553537843742],[112,168,79,-0.25706812023405956],[112,169,64,-0.2853440557680226],[112,169,65,-0.2845249262442323],[112,169,66,-0.28358203168111507],[112,169,67,-0.28251551747271075],[112,169,68,-0.28132565841516677],[112,169,69,-0.2800128613446835],[112,169,70,-0.2785776677868209],[112,169,71,-0.2770207566172158],[112,169,72,-0.2753429467336761],[112,169,73,-0.2735451997397236],[112,169,74,-0.27162862263943477],[112,169,75,-0.2695944705437686],[112,169,76,-0.2674441493882498],[112,169,77,-0.26517921866204663],[112,169,78,-0.2628013941484545],[112,169,79,-0.26031255067675085],[112,170,64,-0.2884004879978652],[112,170,65,-0.2875887514774663],[112,170,66,-0.2866524263577136],[112,170,67,-0.28559166549451975],[112,170,68,-0.28440675184836295],[112,170,69,-0.2830981011264161],[112,170,70,-0.28166626443589116],[112,170,71,-0.2801119309486496],[112,170,72,-0.27843593057705185],[112,170,73,-0.2766392366611077],[112,170,74,-0.2747229686667847],[112,170,75,-0.27268839489565744],[112,170,76,-0.2705369352057748],[112,170,77,-0.2682701637437709],[112,170,78,-0.2658898116882479],[112,170,79,-0.2633977700043777],[112,171,64,-0.29129808587348105],[112,171,65,-0.29049348809120457],[112,171,66,-0.2895635151411684],[112,171,67,-0.2885083269822639],[112,171,68,-0.28732821434943634],[112,171,69,-0.2860236013998537],[112,171,70,-0.28459504837015936],[112,171,71,-0.28304325424485255],[112,171,72,-0.2813690594357726],[112,171,73,-0.2795734484727497],[112,171,74,-0.2776575527052759],[112,171,75,-0.2756226530153828],[112,171,76,-0.2734701825415996],[112,171,77,-0.2712017294140231],[112,171,78,-0.26881903950051844],[112,171,79,-0.26632401916400794],[112,172,64,-0.29403744484583505],[112,172,65,-0.293239723210732],[112,172,66,-0.2923158768294366],[112,172,67,-0.29126607240748603],[112,172,68,-0.29009060806692455],[112,172,69,-0.28878991599637094],[112,172,70,-0.28736456511204067],[112,172,71,-0.2858152637297664],[112,172,72,-0.2841428622479967],[112,172,73,-0.28234835584182705],[112,172,74,-0.28043288716792913],[112,172,75,-0.2783977490805526],[112,172,76,-0.2762443873584838],[112,172,77,-0.27397440344298174],[112,172,78,-0.2715895571867216],[112,172,79,-0.26909176961369563],[112,173,64,-0.2966193921716752],[112,173,65,-0.29582827649018284],[112,173,66,-0.29491032341320844],[112,173,67,-0.29386570603963724],[112,173,68,-0.2926947294942722],[112,173,69,-0.29139783358165405],[112,173,70,-0.28997559545070484],[112,173,71,-0.28842873227026034],[112,173,72,-0.286758103915449],[112,173,73,-0.2849647156649888],[112,173,74,-0.28304972090925495],[112,173,75,-0.281014423869305],[112,173,76,-0.278860282326731],[112,173,77,-0.2765889103643775],[112,173,78,-0.2742020811179351],[112,173,79,-0.2717017295383788],[112,174,64,-0.2990449928610013],[112,174,65,-0.29826020609332626],[112,174,66,-0.29734790608826944],[112,174,67,-0.2963082719882919],[112,174,68,-0.2951416155401865],[112,174,69,-0.2938483837524922],[112,174,70,-0.2924291615636213],[112,174,71,-0.2908846745207565],[112,174,72,-0.28921579146948284],[112,174,73,-0.2874235272542207],[112,174,74,-0.2855090454293171],[112,174,75,-0.28347366098097815],[112,174,76,-0.2813188430599157],[112,174,77,-0.27904621772474236],[112,174,78,-0.27665757069613084],[112,174,79,-0.2741548501217006],[112,175,64,-0.3013155556755893],[112,175,65,-0.3005368147258505],[112,175,66,-0.2996299213197955],[112,175,67,-0.2985950602977099],[112,175,68,-0.2974325496517285],[112,175,69,-0.2961428431866875],[112,175,70,-0.29472653319158115],[112,175,71,-0.2931843531216832],[112,175,72,-0.29151718029129237],[112,175,73,-0.28972603857717394],[112,175,74,-0.2878121011325504],[112,175,75,-0.28577669311182496],[112,175,76,-0.2836212944059129],[112,175,77,-0.28134754238821147],[112,175,78,-0.27895723467122946],[112,175,79,-0.2764523318738328],[112,176,64,-0.3034326391786276],[112,176,65,-0.3026596557192126],[112,176,66,-0.30175791695863774],[112,176,67,-0.3007276130937966],[112,176,68,-0.2995690679902072],[112,176,69,-0.2982827418461417],[112,176,70,-0.2968692338672606],[112,176,71,-0.2953292849518092],[112,176,72,-0.2936637803863382],[112,176,73,-0.291873752552018],[112,176,74,-0.28996038364140286],[112,176,75,-0.28792500838582336],[112,176,76,-0.2857691167932913],[112,176,77,-0.28349435689693514],[112,176,78,-0.28110253751400105],[112,176,79,-0.2785956310153622],[112,177,64,-0.305398057835337],[112,177,65,-0.3046305391659119],[112,177,66,-0.3037336984094685],[112,177,67,-0.30270773078334157],[112,177,68,-0.3015529656597399],[112,177,69,-0.30026986923299004],[112,177,70,-0.29885904719719025],[112,177,71,-0.2973212474343332],[112,177,72,-0.2956573627128548],[112,177,73,-0.29386843339668745],[112,177,74,-0.2919556501646635],[112,177,75,-0.28992035674045713],[112,177,76,-0.28776405263293836],[112,177,77,-0.28548839588697195],[112,177,78,-0.28309520584467585],[112,177,79,-0.2805864659171049],[112,178,64,-0.3072138881646437],[112,178,65,-0.30645153810626913],[112,178,66,-0.3055593348508562],[112,178,67,-0.30453747830559563],[112,178,68,-0.3033863029885515],[112,178,69,-0.30210628069885226],[112,178,70,-0.30069802319720695],[112,178,71,-0.2991622848967965],[112,178,72,-0.29749996556450986],[112,178,73,-0.29571211303259126],[112,178,74,-0.2937999259205525],[112,178,75,-0.2917647563675331],[112,178,76,-0.28960811277498877],[112,178,77,-0.2873316625597301],[112,178,78,-0.2849372349173408],[112,178,79,-0.28242682359592475],[112,179,64,-0.30888247494196586],[112,179,65,-0.30812499476676325],[112,179,66,-0.3072371655073308],[112,179,67,-0.3062191914362532],[112,179,68,-0.3050714118630722],[112,179,69,-0.3037943038072619],[112,179,70,-0.3023884846814404],[112,179,71,-0.30085471498487915],[112,179,72,-0.29919390100727483],[112,179,73,-0.2974070975428479],[112,179,74,-0.2954955106146273],[112,179,75,-0.29346050020910175],[112,179,76,-0.29130358302111314],[112,179,77,-0.28902643520902394],[112,179,78,-0.28663089516017837],[112,179,79,-0.28411896626661204],[112,180,64,-0.31040643745297125],[112,180,65,-0.30965352684978875],[112,180,66,-0.3087698059733014],[112,180,67,-0.30775548314369694],[112,180,68,-0.3066109021146951],[112,180,69,-0.30533654474913074],[112,180,70,-0.30393303370470226],[112,180,71,-0.3024011351299414],[112,180,72,-0.3007417613703689],[112,180,73,-0.2989559736849018],[112,180,74,-0.29704498497237164],[112,180,75,-0.2950101625083309],[112,180,76,-0.2928530306920315],[112,180,77,-0.2905752738035958],[112,180,78,-0.2881787387714084],[112,180,79,-0.28566543794968224],[112,181,64,-0.31178867579841274],[112,181,65,-0.3110400338749354],[112,181,66,-0.3101601545889212],[112,181,67,-0.30914924999760796],[112,181,68,-0.30800766795929224],[112,181,69,-0.3067358948113529],[112,181,70,-0.30533455805837195],[112,181,71,-0.3038044290704063],[112,181,72,-0.3021464257913742],[112,181,73,-0.3003616154576273],[112,181,74,-0.29845121732656055],[112,181,75,-0.29641660541544324],[112,181,76,-0.2942593112503489],[112,181,77,-0.2919810266252125],[112,181,78,-0.2895836063710361],[112,181,79,-0.28706907113519886],[112,182,64,-0.3130323772500475],[112,182,65,-0.3122877035718027],[112,182,66,-0.3114113988679227],[112,182,67,-0.3104036786299511],[112,182,68,-0.30926489448950334],[112,182,69,-0.30799553689856074],[112,182,70,-0.3065962378197993],[112,182,71,-0.30506777342700475],[112,182,72,-0.30341106681553887],[112,182,73,-0.3016271907229282],[112,182,74,-0.2997173702594248],[112,182,75,-0.29768298564872575],[112,182,76,-0.2955255749787288],[112,182,77,-0.29324683696234755],[112,182,78,-0.2908486337084165],[112,182,79,-0.28833299350263075],[112,183,64,-0.31414102265754895],[112,183,65,-0.31340001832425035],[112,183,66,-0.3125270219773151],[112,183,67,-0.3115222522482419],[112,183,68,-0.31038606421970205],[112,183,69,-0.3091189521079345],[112,183,70,-0.3077215519551192],[112,183,71,-0.30619464433177845],[112,183,72,-0.30453915704916923],[112,183,73,-0.3027561678817404],[112,183,74,-0.3008469072995056],[112,183,75,-0.29881276121051525],[112,183,76,-0.29665527371330525],[112,183,77,-0.2943761498593489],[112,183,78,-0.29197725842553846],[112,183,79,-0.2894606346966473],[112,184,64,-0.3151183929065027],[112,184,65,-0.3143807616661821],[112,184,66,-0.3135108092690472],[112,184,67,-0.31250875720118854],[112,184,68,-0.3113749636837305],[112,184,69,-0.3101099263571596],[112,184,70,-0.30871428497557996],[112,184,71,-0.30718882411094006],[112,184,72,-0.3055344758672037],[112,184,73,-0.3037523226045278],[112,184,74,-0.30184359967330554],[112,184,75,-0.29980969815825453],[112,184,76,-0.2976521676324302],[112,184,77,-0.29537271892118844],[112,184,78,-0.2929732268761265],[112,184,79,-0.2904557331589481],[112,185,64,-0.31596857542744317],[112,185,65,-0.31523402482881746],[112,185,66,-0.31436685486358606],[112,185,67,-0.3133672895966634],[112,185,68,-0.3122356900853622],[112,185,69,-0.3109725570654932],[112,185,70,-0.30957853364733634],[112,185,71,-0.3080544080215424],[112,185,72,-0.3064011161749288],[112,185,73,-0.3046197446162322],[112,185,74,-0.302711533111683],[112,185,75,-0.3006778774305744],[112,185,76,-0.2985203321007103],[112,185,77,-0.29624061317375516],[112,185,78,-0.2938406010005119],[112,185,79,-0.2913223430160804],[112,186,64,-0.316695970755946],[112,186,65,-0.31596421333946634],[112,186,66,-0.31509956828543095],[112,186,67,-0.3141022619720206],[112,186,68,-0.31297265800150476],[112,186,69,-0.3117112598879439],[112,186,70,-0.31031871375472486],[112,186,71,-0.3087958110419776],[112,186,72,-0.30714349122384865],[112,186,73,-0.3053628445356873],[112,186,74,-0.30345511471100983],[112,186,75,-0.3014217017284172],[112,186,76,-0.2992641645683487],[112,186,77,-0.29698422397969315],[112,186,78,-0.29458376525628904],[112,186,79,-0.2920648410232597],[112,187,64,-0.3173052991437473],[112,187,65,-0.31657605367177677],[112,187,66,-0.31571368115052845],[112,187,67,-0.3147184100167315],[112,187,68,-0.31359060613811407],[112,187,69,-0.31233077550254873],[112,187,70,-0.3109395669169913],[112,187,71,-0.30941777471626897],[112,187,72,-0.30776634148167903],[112,187,73,-0.30598636076947094],[112,187,74,-0.30407907984906224],[112,187,75,-0.30204590245117446],[112,187,76,-0.29988839152576285],[112,187,77,-0.2976082720097707],[112,187,78,-0.2952074336047309],[112,187,79,-0.29268793356416734],[112,188,64,-0.3178016072209444],[112,188,65,-0.3170745999475135],[112,188,66,-0.3162142539056483],[112,188,67,-0.3152207993473892],[112,188,68,-0.3140946041388788],[112,188,69,-0.3128361764507911],[112,188,70,-0.3114461674585265],[112,188,71,-0.30992537405221954],[112,188,72,-0.30827474155652423],[112,188,73,-0.3064953664602499],[112,188,74,-0.3045884991556991],[112,188,75,-0.30255554668788853],[112,188,76,-0.3003980755135337],[112,188,77,-0.2981178142698254],[112,188,78,-0.2957166565530154],[112,188,79,-0.2931966637067748],[112,189,64,-0.3181902747092221],[112,189,65,-0.31746524068980686],[112,189,66,-0.3166066826196611],[112,189,67,-0.3156148323350313],[112,189,68,-0.3144900594466119],[112,189,69,-0.3132328740311109],[112,189,70,-0.3118439293325509],[112,189,71,-0.31032402447335383],[112,189,72,-0.30867410717517574],[112,189,73,-0.30689527648956094],[112,189,74,-0.3049887855382717],[112,189,75,-0.3029560442634688],[112,189,76,-0.300798622187631],[112,189,77,-0.2985182511832326],[112,189,78,-0.2961168282522064],[112,189,79,-0.2935964183151446],[112,190,64,-0.31847702118613586],[112,190,65,-0.3177537056279057],[112,190,66,-0.3168967058267491],[112,190,67,-0.3159062549848055],[112,190,68,-0.3147827242173866],[112,190,69,-0.313526625245534],[112,190,70,-0.31213861309828295],[112,190,71,-0.3106194888246867],[112,190,72,-0.30897020221556704],[112,190,73,-0.30719185453505715],[112,190,74,-0.3052857012617951],[112,190,75,-0.3032531548399472],[112,190,76,-0.3010957874399399],[112,190,77,-0.29881533372892777],[112,190,78,-0.29641369365102266],[112,190,79,-0.29389293521723314],[112,191,64,-0.31866791290044594],[112,191,65,-0.31794607255343355],[112,191,66,-0.31709041142155003],[112,191,67,-0.31610116386798204],[112,191,68,-0.31497870228741087],[112,191,69,-0.3137235397994197],[112,191,70,-0.31233633295158714],[112,191,71,-0.3108178844323184],[112,191,72,-0.3091691457933823],[112,191,73,-0.30739122018222],[112,191,74,-0.305485365083882],[112,191,75,-0.3034529950727749],[112,191,76,-0.3012956845740957],[112,191,77,-0.29901517063497984],[112,191,78,-0.29661335570539027],[112,191,79,-0.29409231042869555],[112,192,64,-0.3187693696384959],[112,192,65,-0.3180487742281288],[112,192,66,-0.3171942436062145],[112,192,67,-0.31620601310629415],[112,192,68,-0.31508445619262626],[112,192,69,-0.3138300871543117],[112,192,70,-0.3124435638090868],[112,192,71,-0.3109256902168378],[112,192,72,-0.3092774194028016],[112,192,73,-0.30749985609052277],[112,192,74,-0.30559425944441976],[112,192,75,-0.3035620458221433],[112,192,76,-0.3014047915366045],[112,192,77,-0.29912423562770174],[112,192,78,-0.2967222826437651],[112,192,79,-0.29420100543268035],[112,193,64,-0.3187881716416454],[112,193,65,-0.318068605343092],[112,193,66,-0.31721500988940143],[112,193,67,-0.31622762140862726],[112,193,68,-0.315106814241053],[112,193,69,-0.3138531036339124],[112,193,70,-0.3124671484457612],[112,193,71,-0.310949753860555],[112,193,72,-0.3093018741114034],[112,193,73,-0.3075246152140607],[112,193,74,-0.30561923771001387],[112,193,75,-0.30358715941934933],[112,193,76,-0.30142995820327356],[112,193,77,-0.2991493747363171],[112,193,78,-0.29674731528824516],[112,193,79,-0.2942258545156292],[112,194,64,-0.3187314665747488],[112,194,65,-0.31801272952952364],[112,194,66,-0.3171598881371943],[112,194,67,-0.3161731791600414],[112,194,68,-0.31505297763786144],[112,194,69,-0.3137997995831642],[112,194,70,-0.31241430468601095],[112,194,71,-0.31089729902855],[112,194,72,-0.3092497378092124],[112,194,73,-0.30747272807663684],[112,194,74,-0.30556753147318017],[112,194,75,-0.3035355669881913],[112,194,76,-0.30137841372093244],[112,194,77,-0.29909781365316823],[112,194,78,-0.2966956744314533],[112,194,79,-0.29417407215906743],[112,195,64,-0.3186067765456896],[112,195,65,-0.3178886864209671],[112,195,66,-0.3170364336759489],[112,195,67,-0.3160502555631397],[112,195,68,-0.3149305276631871],[112,195,69,-0.3136777665804511],[112,195,70,-0.31229263264820917],[112,195,71,-0.3107759326435464],[112,195,72,-0.30912862251189843],[112,195,73,-0.3073518101013153],[112,195,74,-0.30544675790630027],[112,195,75,-0.30341488582140497],[112,195,76,-0.30125777390446196],[112,195,77,-0.29897716514947725],[112,195,78,-0.2965749682692119],[112,195,79,-0.29405326048740077],[112,196,64,-0.3184220051759472],[112,196,65,-0.3177043987670284],[112,196,66,-0.3168525864470546],[112,196,67,-0.3158668058317621],[112,196,68,-0.3147474329026637],[112,196,69,-0.31349498470289816],[112,196,70,-0.3121101220427057],[112,196,71,-0.31059365221458857],[112,196,72,-0.3089465317181108],[112,196,73,-0.30716986899441645],[112,196,74,-0.3052649271703157],[112,196,75,-0.3032331268121192],[112,196,76,-0.30107604868910487],[112,196,77,-0.298795436546639],[112,196,78,-0.2963931998889754],[112,196,79,-0.2938714167716918],[112,197,64,-0.3181854447222374],[112,197,65,-0.31746817959861817],[112,197,66,-0.3166166782136407],[112,197,67,-0.3156311784370369],[112,197,68,-0.314512056530715],[112,197,69,-0.3132598298448058],[112,197,70,-0.31187515952333467],[112,197,71,-0.3103588532195638],[112,197,72,-0.3087118678209818],[112,197,73,-0.3069353121839974],[112,197,74,-0.3050304498782006],[112,197,75,-0.30299870194036893],[112,197,76,-0.30084164963809734],[112,197,77,-0.2985610372430805],[112,197,78,-0.2961587748140695],[112,197,79,-0.2936369409894588],[112,198,64,-0.31790578324918195],[112,198,65,-0.3171887394446712],[112,198,66,-0.3163374398191947],[112,198,67,-0.3153521224057565],[112,198,68,-0.31423316364655896],[112,198,69,-0.31298108108918177],[112,198,70,-0.31159653609237403],[112,198,71,-0.31008033654152245],[112,198,72,-0.3084334395737589],[112,198,73,-0.30665695431276974],[112,198,74,-0.3047521446131711],[112,198,75,-0.30272043181462605],[112,198,76,-0.30056339750558103],[112,198,77,-0.2982827862966526],[112,198,78,-0.2958805086036883],[112,198,79,-0.2933586434404486],[112,199,64,-0.3175921118530356],[112,199,65,-0.31687519360036875],[112,199,66,-0.3160240084981125],[112,199,67,-0.31503879467109797],[112,199,68,-0.3139199286629606],[112,199,69,-0.3126679281323894],[112,199,70,-0.3112834545589914],[112,199,71,-0.3097673159588292],[112,199,72,-0.3081204696095958],[112,199,73,-0.3063440247854907],[112,199,74,-0.30443924550165913],[112,199,75,-0.30240755326837077],[112,199,76,-0.3002505298548207],[112,199,77,-0.2979699200625736],[112,199,78,-0.2955676345086806],[112,199,79,-0.293045752418421],[112,200,64,-0.31725393193646445],[112,200,65,-0.3165370694468612],[112,200,66,-0.3156859352381769],[112,200,67,-0.3147007674756872],[112,200,68,-0.31358194274771634],[112,200,69,-0.3123299787619159],[112,200,70,-0.3109455370511641],[112,200,71,-0.30942942568913245],[112,200,72,-0.3077826020154901],[112,200,73,-0.30600617537081065],[112,200,74,-0.3041014098410395],[112,200,75,-0.3020697270117012],[112,200,76,-0.29991270873172593],[112,200,77,-0.2976320998869215],[112,200,78,-0.29522981118311675],[112,200,79,-0.2927079219389269],[112,201,64,-0.3169011625343656],[112,201,65,-0.31618431382247714],[112,201,66,-0.3153331921949549],[112,201,67,-0.3143480358269901],[112,201,68,-0.31322922131786535],[112,201,69,-0.311977266387242],[112,201,70,-0.3105928325810674],[112,201,71,-0.309076727987148],[112,201,72,-0.3074299099603621],[112,201,73,-0.30565348785757473],[112,201,74,-0.30374872578211054],[112,201,75,-0.3017170453379683],[112,201,76,-0.2995600283936556],[112,201,77,-0.2972794198556653],[112,201,78,-0.294877130451627],[112,201,79,-0.29235523952307785],[112,202,64,-0.3158284940633075],[112,202,65,-0.3151116429950095],[112,202,66,-0.31426051907969577],[112,202,67,-0.3132753604929117],[112,202,68,-0.3121565438342113],[112,202,69,-0.3109045868234438],[112,202,70,-0.30952015100665553],[112,202,71,-0.3080040444716635],[112,202,72,-0.3063572245732653],[112,202,73,-0.3045808006681492],[112,202,74,-0.3026760368593674],[112,202,75,-0.3006443547505473],[112,202,76,-0.2984873362097217],[112,202,77,-0.2962067261428061],[112,202,78,-0.2938044352767447],[112,202,79,-0.2912825429522802],[112,203,64,-0.31582421047322773],[112,203,65,-0.3151073110349849],[112,203,66,-0.31425614050641537],[112,203,67,-0.3132709370650777],[112,203,68,-0.31215207731060335],[112,203,69,-0.31090007896093697],[112,203,70,-0.30951560355819197],[112,203,71,-0.3079994591841778],[112,203,72,-0.30635260318556246],[112,203,73,-0.3045761449087373],[112,203,74,-0.30267134844424115],[112,203,75,-0.3006396353809242],[112,203,76,-0.29848258756973167],[112,203,77,-0.2962019498971311],[112,203,78,-0.2937996330682111],[112,203,79,-0.2912777163994015],[112,204,64,-0.31580944340659045],[112,204,65,-0.3150923772198537],[112,204,66,-0.31424104599872404],[112,204,67,-0.31325568792770175],[112,204,68,-0.3121366796066857],[112,204,69,-0.3108845387470537],[112,204,70,-0.3094999268773614],[112,204,71,-0.3079836520587077],[112,204,72,-0.30633667160973677],[112,204,73,-0.3045600948413407],[112,204,74,-0.3026551858009203],[112,204,75,-0.3006233660263854],[112,204,76,-0.2984662173097721],[112,204,77,-0.29618548447050497],[112,204,78,-0.2937830781383278],[112,204,79,-0.29126107754585584],[112,205,64,-0.3154205979622934],[112,205,65,-0.31470317731462716],[112,205,66,-0.31385150450124055],[112,205,67,-0.31286581772176714],[112,205,68,-0.31174649357704465],[112,205,69,-0.3104940497648603],[112,205,70,-0.3091091477853094],[112,205,71,-0.3075925956558214],[112,205,72,-0.3059453506358176],[112,205,73,-0.30416852196106847],[112,205,74,-0.3022633735876076],[112,205,75,-0.30023132694538146],[112,205,76,-0.29807396370151507],[112,205,77,-0.29579302853321976],[112,205,78,-0.2933904319103676],[112,205,79,-0.2908682528876855],[112,206,64,-0.31500933969056166],[112,206,65,-0.3142913100350935],[112,206,66,-0.3134390503173864],[112,206,67,-0.31245279876361043],[112,206,68,-0.31133293197674605],[112,206,69,-0.3100799676317523],[112,206,70,-0.3086945671803416],[112,206,71,-0.30717753856541885],[112,206,72,-0.3055298389451484],[112,206,73,-0.3037525774267176],[112,206,74,-0.30184701780965195],[112,206,75,-0.2998145813388625],[112,206,76,-0.2976568494673073],[112,206,77,-0.2953755666282871],[112,206,78,-0.29297264301740855],[112,206,79,-0.29045015738415925],[112,207,64,-0.3145701439260311],[112,207,65,-0.3138511871702093],[112,207,66,-0.3129980339905234],[112,207,67,-0.3120109226543665],[112,207,68,-0.31089022976880143],[112,207,69,-0.309636472974843],[112,207,70,-0.30825031365134525],[112,207,71,-0.30673255962854473],[112,207,72,-0.3050841679112276],[112,207,73,-0.3033062474115866],[112,207,74,-0.3014000616916228],[112,207,75,-0.2993670317152768],[112,207,76,-0.29720873861016406],[112,207,77,-0.29492692643894347],[112,207,78,-0.29252350498034196],[112,207,79,-0.2900005525197905],[112,208,64,-0.3140977838295752],[112,208,65,-0.31337752139047326],[112,208,66,-0.3125231098878414],[112,208,67,-0.3115347876483131],[112,208,68,-0.310412931285868],[112,208,69,-0.309158058394869],[112,208,70,-0.30777083025269436],[112,208,71,-0.30625205453201987],[112,208,72,-0.3046026880227145],[112,208,73,-0.30282383936341817],[112,208,74,-0.3009167717826574],[112,208,75,-0.29888290584968036],[112,208,76,-0.29672382223488836],[112,208,77,-0.2944412644798937],[112,208,78,-0.2920371417772233],[112,208,79,-0.2895135317596267],[112,209,64,-0.31358732399447375],[112,209,65,-0.31286531979469545],[112,209,66,-0.31200922968997635],[112,209,67,-0.31101929208757095],[112,209,68,-0.3098958836122636],[112,209,69,-0.3086395217977409],[112,209,70,-0.3072508677875475],[112,209,71,-0.30573072904568155],[112,209,72,-0.3040800620767917],[112,209,73,-0.30229997515604656],[112,209,74,-0.30039173106853034],[112,209,75,-0.29835674985834526],[112,209,76,-0.2961966115873039],[112,209,77,-0.29391305910322996],[112,209,78,-0.2915080008179013],[112,209,79,-0.2889835134945804],[112,210,64,-0.31303411410817306],[112,210,65,-0.3123098775128268],[112,210,66,-0.3114516359371289],[112,210,67,-0.3104596278937347],[112,210,68,-0.3093342300233234],[112,210,69,-0.3080759597838315],[112,210,70,-0.30668547814925884],[112,210,71,-0.30516359231809587],[112,210,72,-0.3035112584313425],[112,210,73,-0.30172958430018193],[112,210,74,-0.2998198321431673],[112,210,75,-0.2977834213331031],[112,210,76,-0.2956219311534982],[112,210,77,-0.2933371035646172],[112,210,78,-0.2909308459791571],[112,210,79,-0.2884052340474984],[112,211,64,-0.3124337826696617],[112,211,65,-0.31170677136486635],[112,211,66,-0.3108458556317125],[112,211,67,-0.30985127411646374],[112,211,68,-0.3087234034821269],[112,211,69,-0.30746276109502535],[112,211,70,-0.3060700077209254],[112,211,71,-0.3045459502307666],[112,211,72,-0.302891544315965],[112,211,73,-0.3011078972133562],[112,211,74,-0.2991962704396305],[112,211,75,-0.2971580825354473],[112,211,76,-0.2949949118191014],[112,211,77,-0.29270849914977237],[112,211,78,-0.29030075070037875],[112,211,79,-0.28777374073999096],[112,212,64,-0.31178223076245026],[112,212,65,-0.31105185357583953],[112,212,66,-0.3101876938975183],[112,212,67,-0.3091899905390164],[112,212,68,-0.30805912019358206],[112,212,69,-0.30679560011952123],[112,212,70,-0.3054000908330665],[112,212,71,-0.30387339881083164],[112,212,72,-0.3022164792018156],[112,212,73,-0.30043043854902396],[112,212,74,-0.29851653752056306],[112,212,75,-0.296476193650389],[112,212,76,-0.2943109840885899],[112,212,77,-0.29202264836122704],[112,212,78,-0.28961309113976097],[112,212,79,-0.287084385020014],[112,213,64,-0.3110756258831405],[112,213,65,-0.3103412455468304],[112,213,66,-0.3094732276953801],[112,213,67,-0.30847181134071655],[112,213,68,-0.30733737321585186],[112,213,69,-0.3060704304543682],[112,213,70,-0.3046716432794092],[112,213,71,-0.3031418177022285],[112,213,72,-0.30148190823026266],[112,213,73,-0.29969302058479663],[112,213,74,-0.29777641442807523],[112,213,75,-0.2957335061000437],[112,213,76,-0.29356587136459555],[112,213,77,-0.291275248165354],[112,213,78,-0.28886353939101206],[112,213,79,-0.28633281565018365],[112,214,64,-0.3103103958256139],[112,214,65,-0.30957133168209805],[112,214,66,-0.3086987995953727],[112,214,67,-0.30769303881638077],[112,214,68,-0.3065544261291514],[112,214,69,-0.30528347852576976],[112,214,70,-0.3038808558908208],[112,214,71,-0.30234736369536075],[112,214,72,-0.300683955700383],[112,214,73,-0.2988917366698438],[112,214,74,-0.29697196509310697],[112,214,75,-0.29492605591698495],[112,214,76,-0.29275558328725726],[112,214,77,-0.29046228329969326],[112,214,78,-0.2880480567606011],[112,214,79,-0.2855149719568595],[112,215,64,-0.3094832226208132],[112,215,65,-0.30873875327225075],[112,215,66,-0.30786101160551405],[112,215,67,-0.3068502371526787],[112,215,68,-0.305706806761893],[112,215,69,-0.30443123726712595],[112,215,70,-0.303024188167354],[112,215,71,-0.30148646431524084],[112,215,72,-0.29981901861527516],[112,215,73,-0.2980229547314359],[112,215,74,-0.29609952980423626],[112,215,75,-0.2940501571773344],[112,215,76,-0.2918764091335827],[112,215,77,-0.2895800196405467],[112,215,78,-0.28716288710551674],[112,215,79,-0.28462707713996394],[112,216,64,-0.30859103653214026],[112,216,65,-0.3078404024335044],[112,216,66,-0.3069567190569982],[112,216,67,-0.3059402262614547],[112,216,68,-0.3047913009742015],[112,216,69,-0.3035104598548418],[112,216,70,-0.302098361968435],[112,216,71,-0.3005558114681294],[112,216,72,-0.2988837602872131],[112,216,73,-0.29708331084065087],[112,216,74,-0.29515571873596125],[112,216,75,-0.2931023954936173],[112,216,76,-0.2909249112768485],[112,216,77,-0.28862499763087013],[112,216,78,-0.28620455023156444],[112,216,79,-0.28366563164356895],[112,217,64,-0.30763101010643545],[112,217,65,-0.30687341610298324],[112,217,66,-0.30598302454591886],[112,217,67,-0.3049600756699684],[112,217,68,-0.30380494649876055],[112,217,69,-0.30251815350185907],[112,217,70,-0.30110035526115064],[112,217,71,-0.2995523551466366],[112,217,72,-0.2978751040015992],[112,217,73,-0.2960697028372068],[112,217,74,-0.2941374055364139],[112,217,75,-0.292079621567339],[112,217,76,-0.289897918705998],[112,217,77,-0.2875940257684184],[112,217,78,-0.28516983535216167],[112,217,79,-0.2826274065872032],[112,218,64,-0.30660055228057903],[112,218,65,-0.3058351700901112],[112,218,66,-0.3049372719315304],[112,218,67,-0.30390709846810204],[112,218,68,-0.30274502683903703],[112,218,69,-0.30145157330896133],[112,218,70,-0.3000273959266855],[112,218,71,-0.2984732971933298],[112,218,72,-0.2967902267397686],[112,218,73,-0.2949792840134665],[112,218,74,-0.2930417209745544],[112,218,75,-0.29097894480133357],[112,218,76,-0.28879252060508276],[112,218,77,-0.28648417415419636],[112,218,78,-0.2840557946076768],[112,218,79,-0.28150943725793476],[112,219,64,-0.3054973025437001],[112,219,65,-0.30472327318407466],[112,219,66,-0.30381704039102797],[112,219,67,-0.30277884531251587],[112,219,68,-0.30160906522486575],[112,219,69,-0.3003082161738311],[112,219,70,-0.2988769556248877],[112,219,71,-0.29731608512282837],[112,219,72,-0.2956265529606207],[112,219,73,-0.29380945685759674],[112,219,74,-0.2918660466468268],[112,219,75,-0.2897977269718638],[112,219,76,-0.2876060599927327],[112,219,77,-0.2852927681011922],[112,219,78,-0.2828597366452964],[112,219,79,-0.2803090166632045],[112,220,64,-0.30431912515496296],[112,220,65,-0.3035355613173274],[112,220,66,-0.3026201385308146],[112,220,67,-0.30157309848772085],[112,220,68,-0.30039481862536177],[112,220,69,-0.29908581475783],[112,220,70,-0.29764674371693156],[112,220,71,-0.29607840600235646],[112,220,72,-0.2943817484410496],[112,220,73,-0.2925578668558487],[112,220,74,-0.2906080087432439],[112,220,75,-0.2885335759604426],[112,220,76,-0.2863361274216175],[112,220,77,-0.2840173818033628],[112,220,78,-0.281579220259385],[112,220,79,-0.27902368914438],[112,221,64,-0.30306410341697954],[112,221,65,-0.3022700917851877],[112,221,66,-0.30134459855431106],[112,221,67,-0.30028786602412294],[112,221,68,-0.2991002718192166],[112,221,69,-0.297782331510556],[112,221,70,-0.29633470124613626],[112,221,71,-0.29475818039080737],[112,221,72,-0.2930537141752283],[112,221,73,-0.2912223963540178],[112,221,74,-0.28926547187295704],[112,221,75,-0.2871843395454273],[112,221,76,-0.284980554737961],[112,221,77,-0.2826558320649295],[112,221,78,-0.28021204809239675],[112,221,79,-0.27765124405108854],[112,222,64,-0.3017305340048322],[112,222,65,-0.3009251375215104],[112,222,66,-0.2999886704862853],[112,222,67,-0.29892137587301537],[112,222,68,-0.29772363152235304],[112,222,69,-0.29639595275215247],[112,222,70,-0.2949389949769111],[112,222,71,-0.29335355633629545],[112,222,72,-0.29164058033272133],[112,222,73,-0.2898011584780552],[112,222,74,-0.28783653294928824],[112,222,75,-0.28574809925337064],[112,222,76,-0.28353740890108103],[112,222,77,-0.2812061720899567],[112,222,78,-0.2787562603963133],[112,222,79,-0.2761897094763015],[112,223,64,-0.3003169213506651],[112,223,65,-0.2994991814303922],[112,223,66,-0.2985508164536643],[112,223,67,-0.29747207013848354],[112,223,68,-0.2962633205729043],[112,223,69,-0.2949250828133363],[112,223,70,-0.29345801149179584],[112,223,71,-0.29186290343216037],[112,223,72,-0.29014070027539174],[112,223,73,-0.2882924911137986],[112,223,74,-0.28631951513418563],[112,223,75,-0.28422316427008143],[112,223,76,-0.2820049858629158],[112,223,77,-0.27966668533217676],[112,223,78,-0.27721012885456975],[112,223,79,-0.2746373460521341],[112,224,64,-0.29882197208391037],[112,224,65,-0.29799091077397855],[112,224,66,-0.2970297050228913],[112,224,67,-0.2959385993662842],[112,224,68,-0.29471797217358053],[112,224,69,-0.29336833823320574],[112,224,70,-0.291890351346657],[112,224,71,-0.29028480693148684],[112,224,72,-0.2885526446331642],[112,224,73,-0.28669495094588326],[112,224,74,-0.2847129618421689],[112,224,75,-0.28260806541146954],[112,224,76,-0.28038180450760963],[112,224,77,-0.2780358794051294],[112,224,78,-0.2755721504645374],[112,224,79,-0.27299264080642827],[112,225,64,-0.2972445895271223],[112,225,65,-0.29639921161634164],[112,225,66,-0.2954242055938061],[112,225,67,-0.29431981688967723],[112,225,68,-0.2930864241913965],[112,225,69,-0.29172454201480436],[112,225,70,-0.29023482328401695],[112,225,71,-0.2886180619201161],[112,225,72,-0.2868751954386216],[112,225,73,-0.28500730755581083],[112,225,74,-0.28301563080373804],[112,225,75,-0.280901549154144],[112,225,76,-0.2786666006511238],[112,225,77,-0.27631248005258724],[112,225,78,-0.27384104148053334],[112,225,79,-0.2712543010800894],[112,226,64,-0.29558386824737537],[112,226,65,-0.294723163323389],[112,226,66,-0.2937333828499993],[112,226,67,-0.2926147732321599],[112,226,68,-0.29136771351471424],[112,226,69,-0.289992717938394],[112,226,70,-0.2884904385044672],[112,226,71,-0.2868616675480995],[112,226,72,-0.28510734032038487],[112,226,73,-0.28322853757912525],[112,226,74,-0.28122648818819906],[112,226,75,-0.2791025717257162],[112,226,76,-0.27685832110082775],[112,226,77,-0.27449542517921866],[112,226,78,-0.2720157314173117],[112,226,79,-0.2694212485051303],[112,227,64,-0.293839088663303],[112,227,65,-0.2929620331188769],[112,227,66,-0.2919564912657192],[112,227,67,-0.29082271056718423],[112,227,68,-0.28956107046768265],[112,227,69,-0.28817208493251567],[112,227,70,-0.28665640499624767],[112,227,71,-0.2850148213196757],[112,227,72,-0.28324826675535897],[112,227,73,-0.2813578189217799],[112,227,74,-0.27934470278598444],[112,227,75,-0.27721029325489355],[112,227,76,-0.27495611777515583],[112,227,77,-0.27258385894157267],[112,227,78,-0.2700953571141177],[112,227,79,-0.2674926130435049],[112,228,64,-0.2920097117077445],[112,228,65,-0.2911152706964978],[112,228,66,-0.290092969669302],[112,228,67,-0.28894305723482616],[112,228,68,-0.28766591328203595],[112,228,69,-0.28626205150280704],[112,228,70,-0.28473212192295494],[112,228,71,-0.28307691344173935],[112,228,72,-0.2812973563798097],[112,228,73,-0.27939452503565976],[112,228,74,-0.27736964025044086],[112,228,75,-0.27522407198132515],[112,228,76,-0.2729593418832893],[112,228,77,-0.27057712589934957],[112,228,78,-0.2680792568592698],[112,228,79,-0.2654677270866975],[112,229,64,-0.29009537354594805],[112,229,65,-0.28918250288798864],[112,229,66,-0.28814243586306765],[112,229,67,-0.2869754223153489],[112,229,68,-0.28568184262620167],[112,229,69,-0.2842622102185206],[112,229,70,-0.2827171740693317],[112,229,71,-0.2810475212307453],[112,229,72,-0.27925417935921937],[112,229,73,-0.27733821925320545],[112,229,74,-0.27530085739902155],[112,229,75,-0.27314345852514754],[112,229,76,-0.27086753816481246],[112,229,77,-0.2684747652269027],[112,229,78,-0.2659669645752153],[112,229,79,-0.26334611961601007],[112,230,64,-0.2880958803494238],[112,230,65,-0.2871635283873545],[112,230,66,-0.28610468129977895],[112,230,67,-0.2849195902597601],[112,230,68,-0.28360863619181165],[112,230,69,-0.28217233225683813],[112,230,70,-0.2806113263452259],[112,230,71,-0.27892640357814324],[112,230,72,-0.2771184888170133],[112,230,73,-0.2751886491812342],[112,230,74,-0.2731380965739859],[112,230,75,-0.27096819021632657],[112,230,76,-0.26868043918943973],[112,230,77,-0.2662765049850687],[112,230,78,-0.2637582040641563],[112,230,79,-0.2611275104236481],[112,231,64,-0.2860112031254014],[112,231,65,-0.28505831253116176],[112,231,66,-0.28397966581561784],[112,231,67,-0.28277551557731606],[112,231,68,-0.2814462433375724],[112,231,69,-0.2799923620049405],[112,231,70,-0.27841451834768194],[112,231,71,-0.27671349547430346],[112,231,72,-0.2748902153221193],[112,231,73,-0.2729457411539167],[112,231,74,-0.27088128006256207],[112,231,75,-0.2686981854837519],[112,231,76,-0.26639795971677005],[112,231,77,-0.26398225645328366],[112,231,78,-0.261452883314204],[112,231,79,-0.25881180439456075],[112,232,64,-0.283841472601841],[112,232,65,-0.28286698213485006],[112,232,66,-0.2817675124196274],[112,232,67,-0.2805433175799176],[112,232,68,-0.2791947797904385],[112,232,69,-0.27772241171977186],[112,232,70,-0.276126858981103],[112,232,71,-0.2744089025908717],[112,232,72,-0.2725694614352967],[112,232,73,-0.2706095947448486],[112,232,74,-0.2685305045765095],[112,232,75,-0.26633353830402473],[112,232,76,-0.2640201911160065],[112,232,77,-0.26159210852192316],[112,232,78,-0.2590510888659986],[112,232,79,-0.256399085848973],[112,233,64,-0.28158697416809697],[112,233,65,-0.28058982038516156],[112,233,66,-0.2794685021397182],[112,233,67,-0.27822327518350354],[112,233,68,-0.2768545224041944],[112,233,69,-0.275362756245608],[112,233,70,-0.2737486211355922],[112,233,71,-0.2720128959216612],[112,233,72,-0.27015649631434524],[112,233,73,-0.2681804773383256],[112,233,74,-0.26608603579119494],[112,233,75,-0.263874512710047],[112,233,76,-0.2615473958457555],[112,233,77,-0.259106322144978],[112,233,78,-0.2565530802399075],[112,233,79,-0.2538896129457221],[112,234,64,-0.27924814287118993],[112,234,65,-0.27822726178864476],[112,234,66,-0.27708306892519563],[112,234,67,-0.2758158217663922],[112,234,68,-0.27442590397539635],[112,234,69,-0.27291382778937767],[112,234,70,-0.27128023642342514],[112,234,71,-0.2695259064820359],[112,234,72,-0.2676517503781455],[112,234,73,-0.2656588187597755],[112,234,74,-0.263548302944132],[112,234,75,-0.26132153735936603],[112,234,76,-0.25898000199385107],[112,234,77,-0.2565253248530157],[112,234,78,-0.2539592844237514],[112,234,79,-0.2512838121463503],[112,235,64,-0.27682555846762225],[112,235,65,-0.27577988717616564],[112,235,66,-0.2746117946057437],[112,235,67,-0.2733215400845084],[112,235,68,-0.27190950811661185],[112,235,69,-0.270376210753674],[112,235,70,-0.2687222899735864],[112,235,71,-0.26694852006671466],[112,235,72,-0.2650558100294631],[112,235,73,-0.2630452059652759],[112,235,74,-0.2609178934929124],[112,235,75,-0.25867520016220236],[112,235,76,-0.25631859787714106],[112,235,77,-0.2538497053263592],[112,235,78,-0.25127029042098903],[112,235,79,-0.24858227273988065],[112,236,64,-0.27431994053085507],[112,236,65,-0.2732484187635469],[112,236,66,-0.2720554039069816],[112,236,67,-0.27074115724361403],[112,236,68,-0.26930606418707226],[112,236,69,-0.2677506366275745],[112,236,70,-0.2660755152844919],[112,236,71,-0.2642814720661225],[112,236,72,-0.2623694124366387],[112,236,73,-0.26034037779028507],[112,236,74,-0.2581955478326595],[112,236,75,-0.25593624296928885],[112,236,76,-0.2535639267013551],[112,236,77,-0.25108020802860787],[112,236,78,-0.24848684385948694],[112,236,79,-0.2457857414284048],[112,237,64,-0.2717321436143926],[112,237,65,-0.2706337152682774],[112,237,66,-0.26941475952254057],[112,237,67,-0.26807553972848674],[112,237,68,-0.2666164422806868],[112,237,69,-0.2650379789352163],[112,237,70,-0.26334078913484316],[112,237,71,-0.26152564234122944],[112,237,72,-0.2595934403741105],[112,237,73,-0.2575452197575272],[112,237,74,-0.2553821540729433],[112,237,75,-0.2531055563194635],[112,237,76,-0.25071688128100245],[112,237,77,-0.24821772790044494],[112,237,78,-0.245609841660818],[112,237,79,-0.2428951169734277],[112,238,64,-0.2690631524704039],[112,238,65,-0.26793676708222747],[112,238,66,-0.26669085724259045],[112,238,67,-0.26532568848897864],[112,238,68,-0.26384164827134693],[112,238,69,-0.26223924824205336],[112,238,70,-0.2605191265525375],[112,238,71,-0.25868205015680645],[112,238,72,-0.2567289171216923],[112,238,73,-0.2546607589439581],[112,238,74,-0.25247874287408234],[112,238,75,-0.2501841742469386],[112,238,76,-0.24777849881922076],[112,238,77,-0.24526330511365413],[112,238,78,-0.2426403267700108],[112,238,79,-0.23991144490288663],[112,239,64,-0.26631407732402057],[112,239,65,-0.2651586915005023],[112,239,66,-0.26388482113895384],[112,239,67,-0.2624927340830907],[112,239,68,-0.2609828189156581],[112,239,69,-0.25935558721893726],[112,239,70,-0.25761167584178124],[112,239,71,-0.25575184917324134],[112,239,72,-0.25377700142275406],[112,239,73,-0.25168815890695906],[112,239,74,-0.24948648234298165],[112,239,75,-0.24717326914839743],[112,239,76,-0.2447499557477255],[112,239,77,-0.2422181198854947],[112,239,78,-0.23957948294589937],[112,239,79,-0.23683591227900114],[112,240,64,-0.26348614920319324],[112,240,65,-0.26230072800632],[112,240,66,-0.2609978988066922],[112,240,67,-0.25957793187694944],[112,240,68,-0.25804121701298555],[112,240,69,-0.2563882657639047],[112,240,70,-0.25461971366828184],[112,240,71,-0.2527363224967939],[112,240,72,-0.2507389825011833],[112,240,73,-0.24862871466963343],[112,240,74,-0.2464066729883817],[112,240,75,-0.2440741467097921],[112,240,76,-0.24163256262673438],[112,240,77,-0.23908348735331098],[112,240,78,-0.23642862961195066],[112,240,79,-0.233669842526823],[112,241,64,-0.2605807153241998],[112,241,65,-0.2593642336120088],[112,241,66,-0.25803145666225613],[112,241,67,-0.2565826573017769],[112,241,68,-0.2550182266229052],[112,241,69,-0.2533386761817624],[112,241,70,-0.2515446402026178],[112,241,71,-0.2496368777883855],[112,241,72,-0.24761627513722262],[112,241,73,-0.2454838477653063],[112,241,74,-0.24324074273561547],[112,241,75,-0.24088824089294103],[112,241,76,-0.23842775910496838],[112,241,77,-0.2358608525094752],[112,241,78,-0.23318921676766535],[112,241,79,-0.23041469032358974],[112,242,64,-0.25759923453267586],[112,242,65,-0.2563506782559878],[112,242,66,-0.2549869752980689],[112,242,67,-0.2535084011677221],[112,242,68,-0.25191534833992524],[112,242,69,-0.25020832842133967],[112,242,70,-0.24838797432164872],[112,242,71,-0.24645504243078975],[112,242,72,-0.24441041480204773],[112,242,73,-0.24225510134108597],[112,242,74,-0.23999024200073837],[112,242,75,-0.23761710898178923],[112,242,76,-0.23513710893958528],[112,242,77,-0.23255178519652053],[112,242,78,-0.22986281996041413],[112,242,79,-0.22707203654873642],[112,243,64,-0.2545432728003205],[112,243,65,-0.2532616402558915],[112,243,66,-0.25186604489369924],[112,243,67,-0.25035676503471227],[112,243,68,-0.24873419462564217],[112,243,69,-0.24699884537056627],[112,243,70,-0.24515134886812828],[112,243,71,-0.24319245875438256],[112,243,72,-0.24112305285124935],[112,243,73,-0.23894413532065661],[112,243,74,-0.23665683882419164],[112,243,75,-0.23426242668849218],[112,243,76,-0.23176229507621648],[112,243,77,-0.2291579751626368],[112,243,78,-0.22645113531787586],[112,243,79,-0.2236435832947392],[112,244,64,-0.25141449877721],[112,244,65,-0.25009880181776567],[112,244,66,-0.24867036068355308],[112,244,67,-0.247129456640252],[112,244,68,-0.24547648519825405],[112,244,69,-0.24371195820930236],[112,244,70,-0.2418365059684462],[112,244,71,-0.23985087932138194],[112,244,72,-0.2377559517771436],[112,244,73,-0.2355527216262212],[112,244,74,-0.2332423140639297],[112,244,75,-0.23082598331925674],[112,244,76,-0.22830511478903015],[112,244,77,-0.22568122717744976],[112,244,78,-0.22295597464100203],[112,244,79,-0.22013114893871122],[112,245,64,-0.24821467939963404],[112,245,65,-0.24686394460125094],[112,245,66,-0.24540171848100079],[112,245,67,-0.24382828538408607],[112,245,68,-0.24214404247934918],[112,245,69,-0.24034950181983739],[112,245,70,-0.23844529240841417],[112,245,71,-0.23643216226848895],[112,245,72,-0.23431098051982557],[112,245,73,-0.23208273945951408],[112,245,74,-0.22974855664791838],[112,245,75,-0.22730967699983995],[112,245,76,-0.22476747488072912],[112,245,77,-0.22212345620799334],[112,245,78,-0.2193792605574184],[112,245,79,-0.21653666327465915],[112,246,64,-0.24494567555361446],[112,246,65,-0.24355894534091527],[112,246,66,-0.24206201025909901],[112,246,67,-0.24045515786988803],[112,246,68,-0.23873878709813234],[112,246,69,-0.2369134102552205],[112,246,70,-0.23497965506725949],[112,246,71,-0.23293826670809492],[112,246,72,-0.23079010983713255],[112,246,73,-0.22853617064204468],[112,246,74,-0.22617755888617563],[112,246,75,-0.22371550996088485],[112,246,76,-0.22115138694266034],[112,246,77,-0.2184866826550511],[112,246,78,-0.215723021735435],[112,246,79,-0.21286216270657798],[112,247,64,-0.24160943779403016],[112,247,65,-0.2401857715236565],[112,247,66,-0.23865321978783183],[112,247,67,-0.2370120735038962],[112,247,68,-0.23526273345300974],[112,247,69,-0.23340571226534323],[112,247,70,-0.23144163640974758],[112,247,71,-0.2293712481879786],[112,247,72,-0.22719540773343516],[112,247,73,-0.22491509501449736],[112,247,74,-0.22253141184227465],[112,247,75,-0.22004558388300688],[112,247,76,-0.21745896267494702],[112,247,77,-0.21477302764977946],[112,247,78,-0.21198938815858204],[112,247,79,-0.20910978550229775],[112,248,64,-0.2382080021192614],[112,248,65,-0.2367464771220894],[112,248,66,-0.2351774183277816],[112,248,67,-0.23350112015040747],[112,248,68,-0.23171798533044363],[112,248,69,-0.22982852688068567],[112,248,70,-0.22783337003634418],[112,248,71,-0.22573325420939805],[112,248,72,-0.22352903494716725],[112,248,73,-0.2212216858951902],[112,248,74,-0.21881230076421254],[112,248,75,-0.2163020953015362],[112,248,76,-0.21369240926655386],[112,248,77,-0.21098470841052042],[112,248,78,-0.20818058646057735],[112,248,79,-0.20528176710798574],[112,249,64,-0.23474348580151982],[112,249,65,-0.2332431983840847],[112,249,66,-0.23163676038040015],[112,249,67,-0.2299244698443037],[112,249,68,-0.2281067315812495],[112,249,69,-0.2261840590538986],[112,249,70,-0.22415707629158832],[112,249,71,-0.22202651980375454],[112,249,72,-0.21979324049726867],[112,249,73,-0.2174582055977734],[112,249,74,-0.21502250057482708],[112,249,75,-0.21248733107110218],[112,249,76,-0.20985402483546478],[112,249,77,-0.2071240336599871],[112,249,78,-0.2042989353209067],[112,249,79,-0.20138043552349194],[112,250,64,-0.23121808327278603],[112,250,65,-0.2296781496783798],[112,250,66,-0.22803347949479857],[112,250,67,-0.22628437456052364],[112,250,68,-0.2244312418542525],[112,250,69,-0.22247459535913872],[112,250,70,-0.22041505793059712],[112,250,71,-0.21825336316774746],[112,250,72,-0.21599035728845906],[112,250,73,-0.21362700100808307],[112,250,74,-0.2111643714216762],[112,250,75,-0.20860366388996676],[112,250,76,-0.20594619392888835],[112,250,77,-0.20319339910273226],[112,250,78,-0.20034684092093302],[112,250,79,-0.1974082067384465],[112,251,64,-0.22763406206626013],[112,251,65,-0.2260536193961683],[112,251,66,-0.22436988413096204],[112,251,67,-0.2225831620403892],[112,251,68,-0.22069386238720756],[112,251,69,-0.2187024997490623],[112,251,70,-0.21660969584360268],[112,251,71,-0.2144161813569163],[112,251,72,-0.21212279777524234],[112,251,73,-0.2097304992200485],[112,251,74,-0.20724035428627674],[112,251,75,-0.2046535478840108],[112,251,76,-0.2019713830833869],[112,251,77,-0.19919528296280098],[112,251,78,-0.19632679246042806],[112,251,79,-0.19336758022900824],[112,252,64,-0.22399375881350497],[112,252,65,-0.22237196590884611],[112,252,66,-0.22064835357957058],[112,252,67,-0.21882323167496798],[112,252,68,-0.21689701185516852],[112,252,69,-0.21487020936965895],[112,252,70,-0.2127434448387054],[112,252,71,-0.2105174460377629],[112,252,72,-0.20819304968483088],[112,252,73,-0.20577120323084402],[112,252,74,-0.2032529666528976],[112,252,75,-0.20063951425056492],[112,252,76,-0.19793213644512553],[112,252,77,-0.19513224158176012],[112,252,78,-0.1922413577347244],[112,252,79,-0.18926113451545978],[112,253,64,-0.22029957529719435],[112,253,65,-0.21863561358183004],[112,253,66,-0.21687133393833735],[112,253,67,-0.21500705044538237],[112,253,68,-0.2130431772762147],[112,253,69,-0.21098023043284003],[112,253,70,-0.20881882948276098],[112,253,71,-0.2065596992983615],[112,253,72,-0.2042036717989002],[112,253,73,-0.2017516876951974],[112,253,74,-0.19920479823681508],[112,253,75,-0.1965641669619923],[112,253,76,-0.193831071450148],[112,253,77,-0.19100690507701257],[112,253,78,-0.1880931787723964],[112,253,79,-0.18509152278055652],[112,254,64,-0.21655397455937186],[112,254,65,-0.21484704884434946],[112,254,66,-0.21304133414476767],[112,254,67,-0.21113714891996804],[112,254,68,-0.20913490997443795],[112,254,69,-0.2070351341466789],[112,254,70,-0.20483844000029072],[112,254,71,-0.20254554951735415],[112,254,72,-0.20015728979406955],[112,254,73,-0.1976745947387447],[112,254,74,-0.1950985067719222],[112,254,75,-0.1924301785289172],[112,254,76,-0.18967087456457166],[112,254,77,-0.18682197306028914],[112,254,78,-0.18388496753335748],[112,254,79,-0.18086146854852048],[112,255,64,-0.21275947706540554],[112,255,65,-0.21100881631540042],[112,255,66,-0.2091609220655284],[112,255,67,-0.20721611730847211],[112,255,68,-0.20517482160038236],[112,255,69,-0.20303755270349688],[112,255,70,-0.2008049282306178],[112,255,71,-0.19847766729152772],[112,255,72,-0.19605659214130616],[112,255,73,-0.19354262983063697],[112,255,74,-0.19093681385789812],[112,255,75,-0.18824028582330393],[112,255,76,-0.18545429708490735],[112,255,77,-0.18258021041652284],[112,255,78,-0.1796195016675835],[112,255,79,-0.17657376142488673],[112,256,64,-0.20891865692354838],[112,256,65,-0.2071235149857712],[112,256,66,-0.20523272064233605],[112,256,67,-0.20324660157320024],[112,256,68,-0.20116558020884184],[112,256,69,-0.1989901753257045],[112,256,70,-0.19672100364313305],[112,256,71,-0.19435878142188268],[112,256,72,-0.19190432606416175],[112,256,73,-0.18935855771530175],[112,256,74,-0.18672250086683906],[112,256,75,-0.18399728596128817],[112,256,76,-0.18118415099840507],[112,256,77,-0.1782844431430084],[112,256,78,-0.1752996203343653],[112,256,79,-0.17223125289710262],[112,257,64,-0.2050341381600042],[112,257,65,-0.20319379445603725],[112,257,66,-0.20125940409425935],[112,257,67,-0.19923129959700597],[112,257,68,-0.19710990639391435],[112,257,69,-0.1948957443692887],[112,257,70,-0.19258942941058244],[112,257,71,-0.1901916749580782],[112,257,72,-0.1877032935557284],[112,257,73,-0.1851251984032467],[112,257,74,-0.18245840490923865],[112,257,75,-0.17970403224564702],[112,257,76,-0.1768633049033156],[112,257,77,-0.17393755424873336],[112,257,78,-0.17092822008197117],[112,257,79,-0.16783685219576727],[112,258,64,-0.20110859104969436],[112,258,65,-0.19922235123072218],[112,258,66,-0.19724369417663756],[112,258,67,-0.19517295740832674],[112,258,68,-0.19301056948151118],[112,258,69,-0.19075705148515132],[112,258,70,-0.188413018540583],[112,258,71,-0.1859791813014683],[112,258,72,-0.18345634745452422],[112,258,73,-0.18084542322112113],[112,258,74,-0.17814741485953367],[112,258,75,-0.1753634301681279],[112,258,76,-0.17249467998928047],[112,258,77,-0.16954247971409764],[112,258,78,-0.1665082507879425],[112,258,79,-0.1633935222167291],[112,259,64,-0.19714472850262976],[112,259,65,-0.19521192506853025],[112,259,66,-0.19318835649651717],[112,259,67,-0.1910743654631658],[112,259,68,-0.18887038377922638],[112,259,69,-0.18657693383820173],[112,259,70,-0.18419463006526926],[112,259,71,-0.1817241803666243],[112,259,72,-0.1791663875792101],[112,259,73,-0.17652215092092882],[112,259,74,-0.17379246744110943],[112,259,75,-0.17097843347152486],[112,259,76,-0.1680812460777481],[112,259,77,-0.16510220451091706],[112,259,78,-0.1620427116599163],[112,259,79,-0.15890427550393527],[112,260,64,-0.19314530250578488],[112,260,65,-0.1911652953885452],[112,260,66,-0.1890961968844992],[112,260,67,-0.1869383549839162],[112,260,68,-0.18469220488345717],[112,260,69,-0.18235827038409236],[112,260,70,-0.1799371652889571],[112,260,71,-0.17742959480123427],[112,260,72,-0.17483635692202204],[112,260,73,-0.17215834384828294],[112,260,74,-0.16939654337065257],[112,260,75,-0.16655204027139525],[112,260,76,-0.1636260177223018],[112,260,77,-0.1606197586825952],[112,260,78,-0.157534647296855],[112,260,79,-0.15437217029291772],[112,261,64,-0.18911310062067616],[112,261,65,-0.1870852777325983],[112,261,66,-0.1849700578232072],[112,261,67,-0.18276779435523105],[112,261,68,-0.18047892604398474],[112,261,69,-0.1781039782038093],[112,261,70,-0.17564356409404025],[112,261,71,-0.17309838626459484],[112,261,72,-0.17046923790113744],[112,261,73,-0.16775700416992018],[112,261,74,-0.16496266356207234],[112,261,75,-0.162087289237634],[112,261,76,-0.1591320503691196],[112,261,77,-0.1560982134846871],[112,261,78,-0.15298714381091338],[112,261,79,-0.1498003066151412],[112,262,64,-0.18505094253654486],[112,262,65,-0.1829747202837071],[112,262,66,-0.18081281493227075],[112,262,67,-0.17856558557684332],[112,262,68,-0.17623347458591332],[112,262,69,-0.17381700889601626],[112,262,70,-0.17131680130501636],[112,262,71,-0.16873355176459004],[112,262,72,-0.1660680486718728],[112,262,73,-0.16332117016036712],[112,262,74,-0.16049388538988102],[112,262,75,-0.15758725583579808],[112,262,76,-0.15460243657746175],[112,262,77,-0.1515406775857479],[112,262,78,-0.14840332500983072],[112,262,79,-0.1451918224631028],[112,263,64,-0.18096167667904006],[112,263,65,-0.1788365004404785],[112,263,66,-0.1766273735097189],[112,263,67,-0.17433466077322152],[112,263,68,-0.17195880838885835],[112,263,69,-0.1695003450270386],[112,263,70,-0.16695988311052756],[112,263,71,-0.16433812005304294],[112,263,72,-0.16163583949659155],[112,263,73,-0.15885391254764425],[112,263,74,-0.15599329901191822],[112,263,75,-0.1530550486280673],[112,263,76,-0.1500403023000637],[112,263,77,-0.1469502933283442],[112,263,78,-0.14378634863972795],[112,263,79,-0.14054989001606416],[112,264,64,-0.17684817687462007],[112,264,65,-0.1746735214476957],[112,264,66,-0.17241666513000825],[112,264,67,-0.1700779787602899],[112,264,68,-0.16765791242360967],[112,264,69,-0.16515699663871813],[112,264,70,-0.1625758435436504],[112,264,71,-0.15991514807967738],[112,264,72,-0.1571756891735655],[112,264,73,-0.15435833091824724],[112,264,74,-0.15146402375166163],[112,264,75,-0.14849380563407893],[112,264,76,-0.1454488032236803],[112,264,77,-0.14233023305047626],[112,264,78,-0.13913940268855968],[112,264,79,-0.1358777119266638],[112,265,64,-0.17271333907048741],[112,265,65,-0.1704887090829036],[112,265,66,-0.16818364429849447],[112,265,67,-0.16579852166902126],[112,265,68,-0.16333379534608022],[112,265,69,-0.1607899978139467],[112,265,70,-0.15816774102023845],[112,265,71,-0.15546771750448785],[112,265,72,-0.15269070152458697],[112,265,73,-0.14983755018120093],[112,265,74,-0.14690920453991668],[112,265,75,-0.14390669075143397],[112,265,76,-0.14083112116957763],[112,265,77,-0.13768369546720388],[112,265,78,-0.134465701750009],[112,265,79,-0.13117851766819988],[112,266,64,-0.16856007811019835],[112,266,65,-0.16628500839913574],[112,266,66,-0.1639312851624925],[112,266,67,-0.16149929162604953],[112,266,68,-0.1589894861486838],[112,266,69,-0.15640240330002247],[112,266,70,-0.15373865493546507],[112,266,71,-0.15099893126867303],[112,266,72,-0.14818400194148268],[112,266,73,-0.14529471709134356],[112,266,74,-0.1423320084160435],[112,266,75,-0.13929689023603353],[112,266,76,-0.13619046055412365],[112,266,77,-0.13301390211263203],[112,266,78,-0.12976848344798625],[112,266,79,-0.12645555994274316],[112,267,64,-0.16439132456475852],[112,267,65,-0.16206538052358815],[112,267,66,-0.15966257827873176],[112,267,67,-0.15718330749110326],[112,267,68,-0.15462803086894722],[112,267,69,-0.15199728518963335],[112,267,70,-0.14929168231836948],[112,267,71,-0.1465119102239254],[112,267,72,-0.14365873399132773],[112,267,73,-0.14073299683163076],[112,267,74,-0.13773562108851295],[112,267,75,-0.13466760924202864],[112,267,76,-0.13153004490927228],[112,267,77,-0.12832409384204463],[112,267,78,-0.12505100492151788],[112,267,79,-0.12171211114986558],[112,268,64,-0.16021002161942605],[112,268,65,-0.15783279951247114],[112,268,66,-0.15538052743743497],[112,268,67,-0.15285360165149586],[112,268,68,-0.15025248935558805],[112,268,69,-0.147577729659702],[112,268,70,-0.1448299345446391],[112,268,71,-0.1420097898203198],[112,268,72,-0.13911805608060068],[112,268,73,-0.1361555696547075],[112,268,74,-0.13312324355503535],[112,268,75,-0.1300220684216406],[112,268,76,-0.12685311346318834],[112,268,77,-0.1236175273944396],[112,268,78,-0.12031653937027748],[112,268,79,-0.11695145991623884],[112,269,64,-0.15601912201612084],[112,269,65,-0.153590249261929],[112,269,66,-0.15108814654291447],[112,269,67,-0.14851321687355884],[112,269,68,-0.14586593209195092],[112,269,69,-0.14314683376798082],[112,269,70,-0.14035653410752058],[112,269,71,-0.1374957168526897],[112,269,72,-0.13456513817816335],[112,269,73,-0.13156562758363066],[112,269,74,-0.12849808878214913],[112,269,75,-0.12536350058472773],[112,269,76,-0.12216291778089533],[112,269,77,-0.11889747201534373],[112,269,78,-0.11556837266064096],[112,269,79,-0.11217690768598326],[112,270,64,-0.15182158505132903],[112,270,65,-0.14934072047492042],[112,270,66,-0.14678845655057382],[112,270,67,-0.14416520321091236],[112,270,68,-0.1414714370766879],[112,270,69,-0.13870770230728618],[112,270,70,-0.13587461144674312],[112,270,71,-0.13297284626537087],[112,270,72,-0.130003158596955],[112,270,73,-0.12696637117162535],[112,270,74,-0.12386337844414996],[112,270,75,-0.12069514741798348],[112,270,76,-0.11746271846482759],[112,270,77,-0.11416720613979064],[112,270,78,-0.11080979999214458],[112,270,79,-0.10739176537164535],[112,271,64,-0.14762037362971808],[112,271,65,-0.14508720768427552],[112,271,66,-0.14248448246053474],[112,271,67,-0.13981261496978875],[112,271,68,-0.13707208676190652],[112,271,69,-0.13426344471759327],[112,271,70,-0.13138730183568054],[112,271,71,-0.12844433801554656],[112,271,72,-0.12543530083462479],[112,271,73,-0.12236100632110852],[112,271,74,-0.11922233972159424],[112,271,75,-0.11602025626400175],[112,271,76,-0.11275578191552454],[112,271,77,-0.10943001413569786],[112,271,78,-0.10604412262458501],[112,271,79,-0.10259935006604526],[112,272,64,-0.14341845137335585],[112,272,65,-0.1408327063318222],[112,272,66,-0.13817925036778023],[112,272,67,-0.13545850773130336],[112,272,68,-0.13267096504867582],[112,272,69,-0.12981717205588283],[112,272,70,-0.12689774232664197],[112,272,71,-0.12391335399507708],[112,272,72,-0.12086475047299361],[112,272,73,-0.11775274116186413],[112,272,74,-0.11457820215926268],[112,272,75,-0.11134207696009119],[112,272,76,-0.1080453771523478],[112,272,77,-0.10468918310752623],[112,272,78,-0.10127464466564562],[112,272,79,-0.0978029818148749],[112,273,64,-0.13921877978642466],[112,273,65,-0.13658020990347142],[112,273,66,-0.13387578456870364],[112,273,67,-0.13110593543055737],[112,273,68,-0.1282711543397746],[112,273,69,-0.1253719940236246],[112,273,70,-0.12240906875417312],[112,273,71,-0.11938305501069985],[112,273,72,-0.11629469213622473],[112,273,73,-0.11314478298825115],[112,273,74,-0.10993419458346204],[112,273,75,-0.10666385873671802],[112,273,76,-0.10333477269410152],[112,273,77,-0.09994799976009927],[112,273,78,-0.09650466991892204],[112,273,79,-0.09300598044992442],[112,274,64,-0.13502431547564814],[112,274,65,-0.132332707120481],[112,274,66,-0.12957710472428297],[112,274,67,-0.12675794749279884],[112,274,68,-0.12387573264991086],[112,274,69,-0.12093101605212386],[112,274,70,-0.11792441279659777],[112,274,71,-0.11485659782282842],[112,274,72,-0.11172830650793719],[112,274,73,-0.10854033525567952],[112,274,74,-0.10529354207890457],[112,274,75,-0.10198884717581902],[112,274,76,-0.09862723349979624],[112,274,77,-0.09520974732282456],[112,274,78,-0.0917374987925933],[112,274,79,-0.0882116624831788],[112,275,64,-0.1308380074263198],[112,275,65,-0.1280931791867872],[112,275,66,-0.12528622307977177],[112,275,67,-0.12241758602652714],[112,275,68,-0.11948777077329553],[112,275,69,-0.11649733644561855],[112,275,70,-0.11344689909568784],[112,275,71,-0.11033713224283864],[112,275,72,-0.10716876740714637],[112,275,73,-0.10394259463623756],[112,275,74,-0.10065946302504486],[112,275,75,-0.09732028122886133],[112,275,76,-0.09392601796943484],[112,275,77,-0.0904777025341959],[112,275,78,-0.08697642526861671],[112,275,79,-0.08342333806166558],[112,276,64,-0.12666279433382782],[112,276,65,-0.1238645970922958],[112,276,66,-0.12100614174079477],[112,276,67,-0.11808788307343182],[112,276,68,-0.11511032950846145],[112,276,69,-0.1120740435820129],[112,276,70,-0.10897964243434277],[112,276,71,-0.10582779828872219],[112,276,72,-0.10261923892291341],[112,276,73,-0.09935474813335149],[112,276,74,-0.09603516619175562],[112,276,75,-0.0926613902945318],[112,276,76,-0.08923437500470188],[112,276,77,-0.08575513268645596],[112,276,78,-0.08222473393232327],[112,276,79,-0.07864430798292926],[112,277,64,-0.12250160199089233],[112,277,65,-0.11964991897235255],[112,277,66,-0.11673985000607029],[112,277,67,-0.11377185791538802],[112,277,68,-0.11074645694055174],[112,277,69,-0.1076642131714749],[112,277,70,-0.10452574497251105],[112,277,71,-0.10133172339934171],[112,277,72,-0.09808287260793869],[112,277,73,-0.09477997025571416],[112,277,74,-0.09142384789458213],[112,277,75,-0.08801539135629638],[112,277,76,-0.08455554112979652],[112,277,77,-0.08104529273066019],[112,277,78,-0.0774856970626584],[112,277,79,-0.07387786077137792],[112,278,64,-0.11835734073040349],[112,278,65,-0.11545208752327885],[112,278,66,-0.11249032175664753],[112,278,67,-0.1094725144383964],[112,278,68,-0.1063991857809623],[112,278,69,-0.10327090557278384],[112,278,70,-0.100088293541238],[112,278,71,-0.09685201970717133],[112,278,72,-0.09356280473098061],[112,278,73,-0.09022142025036362],[112,278,74,-0.08682868920945214],[112,278,75,-0.08338548617970565],[112,278,76,-0.07989273767228677],[112,278,77,-0.07635142244202281],[112,278,78,-0.07276257178294587],[112,278,79,-0.06912726981537953],[112,279,64,-0.11423290292375854],[112,279,65,-0.11127402747387105],[112,279,66,-0.10826051290155037],[112,279,67,-0.10519283855335732],[112,279,68,-0.10207153076423181],[112,279,69,-0.0988971631673149],[112,279,70,-0.09567035699472559],[112,279,71,-0.09239178136940535],[112,279,72,-0.08906215358798553],[112,279,73,-0.08568223939479552],[112,279,74,-0.08225285324672715],[112,279,75,-0.07877485856933125],[112,279,76,-0.07524916800386916],[112,279,77,-0.07167674364542248],[112,279,78,-0.0680585972720536],[112,279,79,-0.06439579056498568],[112,280,64,-0.11013116053490773],[112,280,65,-0.10711864311307495],[112,280,66,-0.10405335888004741],[112,280,67,-0.10093579567390148],[112,280,68,-0.09776648610239813],[112,280,69,-0.09454600779088718],[112,280,70,-0.09127498362063219],[112,280,71,-0.08795408195766968],[112,280,72,-0.08458401687215955],[112,280,73,-0.08116554834834422],[112,280,74,-0.07769948248483044],[112,280,75,-0.07418667168557114],[112,280,76,-0.07062801484126946],[112,280,77,-0.06702445750130931],[112,280,78,-0.06337699203620323],[112,280,79,-0.059686657790527675],[112,281,64,-0.10605496273000348],[112,281,65,-0.10298881587372755],[112,281,66,-0.09987177222043514],[112,281,67,-0.09670432825116354],[112,281,68,-0.09348702299671041],[112,281,69,-0.09022043822336101],[112,281,70,-0.08690519860849921],[112,281,71,-0.08354197190621498],[112,281,72,-0.080131469102866],[112,281,73,-0.07667444456271222],[112,281,74,-0.07317169616333086],[112,281,75,-0.06962406542120064],[112,281,76,-0.0660324376071661],[112,281,77,-0.06239774185189301],[112,281,78,-0.05872095124130344],[112,281,79,-0.05500308290196049],[112,282,64,-0.10200713354254765],[112,282,65,-0.09888740197226309],[112,282,66,-0.09571864015523068],[112,282,67,-0.09250135336539372],[112,282,68,-0.0892360872065896],[112,282,69,-0.08592342773587458],[112,282,70,-0.08256400157618998],[112,282,71,-0.07915847601848269],[112,282,72,-0.07570755911323612],[112,282,73,-0.07221199975153558],[112,282,74,-0.06867258773536916],[112,282,75,-0.06509015383755695],[112,282,76,-0.06146556985101953],[112,282,77,-0.05779974862749315],[112,282,78,-0.05409364410568568],[112,282,79,-0.0503482513288373],[112,283,64,-0.09799046959424856],[112,283,65,-0.09481723010459248],[112,283,66,-0.09159682229298832],[112,283,67,-0.08832976037462204],[112,283,68,-0.08501659667605277],[112,283,69,-0.08165792169594122],[112,283,70,-0.0782543641545696],[112,283,71,-0.07480659103227016],[112,283,72,-0.07131530759671911],[112,283,73,-0.06778125741921703],[112,283,74,-0.06420522237965953],[112,283,75,-0.060588022660589214],[112,283,76,-0.056930516730041014],[112,283,77,-0.05323360131328875],[112,283,78,-0.04949821135348348],[112,283,79,-0.04572531996115359],[112,284,64,-0.09400773787147892],[112,284,65,-0.09078109919805094],[112,284,66,-0.08750914834662993],[112,284,67,-0.08419240862026695],[112,284,68,-0.08083143921749569],[112,284,69,-0.07742683523029792],[112,284,70,-0.07397922763030829],[112,284,71,-0.07048928324337922],[112,284,72,-0.06695770471245871],[112,284,73,-0.06338523044890682],[112,284,74,-0.059772634571947425],[112,284,75,-0.05612072683665581],[112,284,76,-0.0524303525501858],[112,284,77,-0.04870239247634878],[112,284,78,-0.044937762728534225],[112,284,79,-0.04113741465094023],[112,285,64,-0.09006167355723563],[112,285,65,-0.08678177621931052],[112,285,66,-0.08345841591818567],[112,285,67,-0.08009212518958284],[112,285,68,-0.0766834702527226],[112,285,69,-0.07323305094539251],[112,285,70,-0.06974150064670159],[112,285,71,-0.06620948618763736],[112,285,72,-0.06263770774938351],[112,285,73,-0.05902689874952133],[112,285,74,-0.05537782571581115],[112,285,75,-0.05169128814795618],[112,285,76,-0.047968118367050866],[112,285,77,-0.0442091813528267],[112,285,78,-0.04041537456868549],[112,285,79,-0.03658762777448768],[112,286,64,-0.08615497791880597],[112,286,65,-0.0828219940384651],[112,286,66,-0.07944738834015769],[112,286,67,-0.07603170273515958],[112,286,68,-0.07257551061144019],[112,286,69,-0.06907941670573253],[112,286,70,-0.06554405696272819],[112,286,71,-0.0619700983815184],[112,286,72,-0.05835823884923652],[112,286,73,-0.05470920696202761],[112,286,74,-0.05102376183303722],[112,286,75,-0.04730269288782665],[112,286,76,-0.043546819646913704],[112,286,77,-0.03975699149555287],[112,286,78,-0.03593408744074403],[112,286,79,-0.0320790158554389],[112,287,64,-0.08229031625103489],[112,287,65,-0.07890444934918286],[112,287,66,-0.07547879257339646],[112,287,67,-0.07201389735136432],[112,287,68,-0.06851034438710815],[112,287,69,-0.06496874346998155],[112,287,70,-0.061389733270231395],[112,287,71,-0.057773981121243906],[112,287,72,-0.05412218278842962],[112,287,73,-0.050435062224875316],[112,287,74,-0.04671337131345071],[112,287,75,-0.04295788959578284],[112,287,76,-0.03916942398779208],[112,287,77,-0.035348808481906885],[112,287,78,-0.03149690383594503],[112,287,79,-0.02761459724863033],[112,288,64,-0.07847031587509759],[112,288,65,-0.07503180064482656],[112,288,66,-0.07155531716139155],[112,288,67,-0.06804142650762707],[112,288,68,-0.06449071685004029],[112,288,69,-0.06090380318470012],[112,288,70,-0.057281327069120286],[112,288,71,-0.05362395634026268],[112,288,72,-0.049932384818614756],[112,288,73,-0.04620733199846974],[112,288,74,-0.04244954272409407],[112,288,75,-0.0386597868522002],[112,288,76,-0.034838858900413966],[112,288,77,-0.030987577681857337],[112,288,78,-0.027106785925830712],[112,288,79,-0.023197349884567453],[112,289,64,-0.07469756419298548],[112,289,65,-0.07120666625075389],[112,289,66,-0.06767961024119198],[112,289,67,-0.06411696703878417],[112,289,68,-0.060519332417978855],[112,289,69,-0.05688732673595537],[112,289,70,-0.05322159460081713],[112,289,71,-0.04952280452533614],[112,289,72,-0.0457916485662041],[112,289,73,-0.04202884194891887],[112,289,74,-0.03823512267798676],[112,289,75,-0.03441125113286625],[112,289,76,-0.03055800964933575],[112,289,77,-0.026676202086408474],[112,289,78,-0.022766653378779783],[112,289,79,-0.018830209074777726],[112,290,64,-0.07097460679752962],[112,290,65,-0.06743162241262135],[112,290,66,-0.063854277610774],[112,290,67,-0.06024315319230039],[112,290,68,-0.0565988526839567],[112,290,69,-0.05292200195860991],[112,290,70,-0.049213248839758805],[112,290,71,-0.04547326269103577],[112,290,72,-0.04170273399064353],[112,290,73,-0.03790237389085696],[112,290,74,-0.03407291376226948],[112,290,75,-0.030215104723209346],[112,290,76,-0.02632971715400953],[112,290,77,-0.022417540196253888],[112,290,78,-0.018479381236983866],[112,290,79,-0.0145160653778382],[112,291,64,-0.06730394563809247],[112,291,65,-0.06370920144081965],[112,291,66,-0.060081880852991404],[112,291,67,-0.056422574732501035],[112,291,68,-0.052731894501582194],[112,291,69,-0.04901047170342915],[112,291,70,-0.04525895754309486],[112,291,71,-0.041478022412796606],[112,291,72,-0.03766835540158245],[112,291,73,-0.03383066378949093],[112,291,74,-0.029965672525878506],[112,291,75,-0.02607412369234638],[112,291,76,-0.022156775949945],[112,291,77,-0.018214403970782694],[112,291,78,-0.014247797854020333],[112,291,79,-0.010257762526225095],[112,292,64,-0.06368803724175554],[112,292,65,-0.06004188991087128],[112,292,66,-0.05636493551593166],[112,292,67,-0.05265777510163916],[112,292,68,-0.0489210281275696],[112,292,69,-0.04515533196182639],[112,292,70,-0.04136134135839678],[112,292,71,-0.03753972791833901],[112,292,72,-0.033691179534754756],[112,292,73,-0.02981639982167883],[112,292,74,-0.02591610752655893],[112,292,75,-0.021991035926760882],[112,292,76,-0.018041932209774486],[112,292,77,-0.01406955683724706],[112,292,78,-0.01007468289282723],[112,292,79,-0.006058095413791986],[112,293,64,-0.06012929099020878],[112,293,65,-0.05643212691999458],[112,293,66,-0.05270590934988725],[112,293,67,-0.0489512496380089],[112,293,68,-0.045168775421727675],[112,293,69,-0.04135913004846023],[112,293,70,-0.037522971989597226],[112,293,71,-0.03366097423768111],[112,293,72,-0.029773823686790712],[112,293,73,-0.025862220496266186],[112,293,74,-0.021926877437443593],[112,293,75,-0.017968519223838325],[112,293,76,-0.013987881824450654],[112,293,77,-0.00998571176031983],[112,293,78,-0.0059627653843113],[112,293,79,-0.0019198081441079151],[112,294,64,-0.05663006745223853],[112,294,65,-0.05288230239973231],[112,294,66,-0.04910722060083976],[112,294,67,-0.0453054438509993],[112,294,68,-0.04147760810430037],[112,294,69,-0.037624362841578926],[112,294,70,-0.03374637042105334],[112,294,71,-0.02984430541163291],[112,294,72,-0.02591885390885279],[112,294,73,-0.02197071283357016],[112,294,74,-0.018000589213087392],[112,294,75,-0.014009199445146336],[112,294,76,-0.009997268544462687],[112,294,77,-0.0059655293719302616],[112,294,78,-0.0019147218464764526],[112,294,79,0.0021544078604574246],[112,295,64,-0.053192676771729897],[112,295,65,-0.04939475548455817],[112,295,66,-0.04557123636036693],[112,295,67,-0.04172275175300019],[112,295,68,-0.03784994607057035],[112,295,69,-0.03395347508101934],[112,295,70,-0.030034005199638142],[112,295,71,-0.026092212758676778],[112,295,72,-0.022128783258998322],[112,295,73,-0.01814441060391357],[112,295,74,-0.014139796314858233],[112,295,75,-0.010115648729362034],[112,295,76,-0.006072682180974259],[112,295,77,-0.002011616161277485],[112,295,78,0.002066825536029146],[112,295,79,0.0061619156890038995],[112,296,64,-0.04981937711136383],[112,296,65,-0.045971772936644964],[112,296,66,-0.04210027097215953],[112,296,67,-0.03820551424834866],[112,296,68,-0.03428815576291468],[112,296,69,-0.03034885772405288],[112,296,70,-0.026388290775057263],[112,296,71,-0.022407133200432944],[112,296,72,-0.018406070113469244],[112,296,73,-0.014385792625411467],[112,296,74,-0.01034699699588848],[112,296,75,-0.006290383765052157],[112,296,76,-0.0022166568670877046],[112,296,77,0.0018734772747705242],[112,296,78,0.005979310671737126],[112,296,79,0.010100134711515038],[112,297,64,-0.04651237315191471],[112,297,65,-0.042615587626697704],[112,297,66,-0.0386965844950512],[112,297,67,-0.034756017579216605],[112,297,68,-0.030794548600214078],[112,297,69,-0.026812846358979653],[112,297,70,-0.02281158589828952],[112,297,71,-0.01879144764560714],[112,297,72,-0.014753116536805694],[112,297,73,-0.010697281120905691],[112,297,74,-0.0066246326454817706],[112,297,75,-0.0025358641231977563],[112,297,76,0.0015683306208716247],[112,297,77,0.005687257920999153],[112,297,78,0.009820225261662263],[112,297,79,0.013966542287525606],[112,298,64,-0.043273814647066214],[112,298,65,-0.03932837707076907],[112,298,66,-0.03536238122247602],[112,298,67,-0.03137649182835513],[112,298,68,-0.02737137946452886],[112,298,69,-0.023347719676380684],[112,298,70,-0.0193061920780608],[112,298,71,-0.015247479432329715],[112,298,72,-0.01117226671069118],[112,298,73,-0.007081240133954857],[112,298,74,-0.002975086192881324],[112,298,75,0.0011455093506285222],[112,298,76,0.005279862482145473],[112,298,77,0.00942729197298768],[112,298,78,0.01358712043818261],[112,298,79,0.01775867541413908],[112,299,64,-0.040105795033916855],[112,299,65,-0.036112262023231624],[112,299,66,-0.03209980825853149],[112,299,67,-0.02806910947887404],[112,299,68,-0.02402084524522223],[112,299,69,-0.019955697998213007],[112,299,70,-0.015874352095537926],[112,299,71,-0.01177749282907424],[112,299,72,-0.007665805421719664],[112,299,73,-0.003539974004070648],[112,299,74,5.993194294054704E-4],[112,299,75,0.004751396084238239],[112,299,76,0.008915581450211207],[112,299,77,0.013091206405868784],[112,299,78,0.017277608343295857],[112,299,79,0.021474132313194907],[112,300,64,-0.03701035009908656],[112,300,65,-0.03296930512581517],[112,300,66,-0.028910954150553475],[112,300,67,-0.02483598403096332],[112,300,68,-0.020745083440437552],[112,300,69,-0.016638941864652708],[112,300,70,-0.012518248577146451],[112,300,71,-0.00838369159405846],[112,300,72,-0.004235956607986684],[112,300,73,-7.572590110314914E-5],[112,300,74,0.0040963227628284665],[112,300,75,0.008279517267057529],[112,300,76,0.012473192291430148],[112,300,77,0.016676690482809377],[112,300,78,0.020889363646355047],[112,300,79,0.025110573957688127],[112,301,64,-0.03398945670034601],[112,301,65,-0.029901509612631792],[112,301,66,-0.025797847578124825],[112,301,67,-0.0216791686754758],[112,301,68,-0.017546170815846942],[112,301,69,-0.013399550678601109],[112,301,70,-0.009240002625427308],[112,301,71,-0.005068217593041723],[112,301,72,-8.848819644175152E-4],[112,301,73,0.003309323581314222],[112,301,74,0.007513725240648313],[112,301,75,0.01172765727870009],[112,301,76,0.015950463243765218],[112,301,77,0.02018149720330452],[112,301,78,0.02442012500137524],[112,301,79,0.028665725537534815],[112,302,64,-0.031045031543931092],[112,302,65,-0.026910818071351372],[112,302,66,-0.02276245609868372],[112,302,67,-0.018600655024540013],[112,302,68,-0.014426122120842252],[112,302,69,-0.010239561408028888],[112,302,70,-0.006041672508107636],[112,302,71,-0.0018331494756975535],[112,302,72,0.002385320392988573],[112,302,73,0.006613057773076891],[112,302,74,0.010849392546239733],[112,302,75,0.01509366505769866],[112,302,76,0.019345227395382393],[112,302,77,0.023603444691095408],[112,302,78,0.02786769644372247],[112,302,79,0.032137377864491626],[112,303,64,-0.028178930017458127],[112,303,65,-0.023999111260443958],[112,303,66,-0.019806684949644687],[112,303,67,-0.015602371899115076],[112,303,68,-0.011386888862080256],[112,303,69,-0.007160947346067526],[112,303,70,-0.0029252524052958842],[112,303,71,0.0013194985895329907],[112,303,72,0.005572617204089764],[112,303,73,0.009833425215774865],[112,303,74,0.014101255911940195],[112,303,75,0.018375455410490946],[112,303,76,0.022655384003231555],[112,303,77,0.026940417521809493],[112,303,78,0.031229948726281778],[112,303,79,0.035523388716328805],[112,304,64,-0.02539294507836718],[112,304,65,-0.02116820698241325],[112,304,66,-0.016932375906957627],[112,304,67,-0.012686184173411925],[112,304,68,-0.00843035813430396],[112,304,69,-0.00416561692877036],[112,304,70,1.0732878527927592E-4],[112,304,71,0.004387778122184605],[112,304,72,0.008675041282790705],[112,304,73,0.012968440891791222],[112,304,74,0.017267313358525813],[112,304,75,0.021571010260742422],[112,304,76,0.02587889975169177],[112,304,77,0.030190367990406683],[112,304,78,0.03450482059519087],[112,304,79,0.038821684120341926],[112,305,64,-0.022688806198045208],[112,305,65,-0.018419859013177466],[112,305,66,-0.014141306200262233],[112,305,67,-0.009853891676340307],[112,305,68,-0.005558351508601879],[112,305,69,-0.0012554126107053552],[112,305,70,0.0030542085848195323],[112,305,71,0.007369807477941963],[112,305,72,0.011690692676319989],[112,305,73,0.016016187394164057],[112,305,74,0.02034563087514169],[112,305,75,0.024678379838833073],[112,305,76,0.02901380995110496],[112,305,77,0.03335131731825638],[112,305,78,0.03769032000496006],[112,305,79,0.042030259576024534],[112,306,64,-0.020068178361549272],[112,306,65,-0.015755756087513978],[112,306,66,-0.01143518748455355],[112,306,67,-0.007107228149895527],[112,306,68,-0.002772623978019438],[112,306,69,0.0015678902017055157],[112,306,70,0.005913592011886945],[112,306,71,0.010263772938333755],[112,306,72,0.01461773976568588],[112,306,73,0.01897481603730266],[112,306,74,0.02333434353977972],[112,306,75,0.02769568381160012],[112,306,76,0.032058219676291154],[112,306,77,0.03642135679993715],[112,306,78,0.04078452527307498],[112,306,79,0.04514718121699483],[112,307,64,-0.01753266112286448],[112,307,65,-0.013177520940503992],[112,307,66,-0.008815664868293514],[112,307,67,-0.0044478602644197965],[112,307,68,-7.486296045487728E-5],[112,307,69,0.004302584159169905],[112,307,70,0.008683752602780315],[112,307,71,0.013067929742016447],[112,307,72,0.017454420307381],[112,307,73,0.021842547908629342],[112,307,74,0.026231656580374595],[112,307,75,0.030621112352409344],[112,307,76,0.03501030484511908],[112,307,77,0.03939864888983503],[112,307,78,0.043785586174154914],[112,307,79,0.04817058691225347],[112,308,64,-0.015083787715835642],[112,308,65,-0.010686709405116485],[112,308,66,-0.006284315998109392],[112,308,67,-0.0018773866908814787],[112,308,68,0.0025333126410144804],[112,308,69,0.0069470309206839526],[112,308,70,0.011363033373709974],[112,308,71,0.01578060305749593],[112,308,72,0.02019904241618306],[112,308,73,0.024617674860991826],[112,308,74,0.029035846376363236],[112,308,75,0.033452927151398526],[112,308,76,0.03786831323697415],[112,308,77,0.04228142822837963],[112,308,78,0.04669172497350639],[112,308,79,0.05109868730660935],[112,309,64,-0.01272302422069857],[112,309,65,-0.008284809565856782],[112,309,66,-0.00384265020000564],[112,309,67,6.02662769904394E-4],[112,309,68,0.005050353320453602],[112,309,69,0.009499662046944371],[112,309,70,0.013949847724849904],[112,309,71,0.018400188897368178],[112,309,72,0.0228499854891331],[112,309,73,0.02729856044592903],[112,309,74,0.03174526140078983],[112,309,75,0.03618946236597535],[112,309,76,0.040630565451206205],[112,309,77,0.04506800260800298],[112,309,78,0.04950123740015763],[112,309,79,0.0539297668003596],[112,310,64,-0.010451768786152865],[112,310,65,-0.00597324096842114],[112,310,66,-0.001492107677026136],[112,310,67,0.0029908280011756716],[112,310,68,0.0074747797941001615],[112,310,69,0.011958979836077535],[112,310,70,0.016442680286331418],[112,310,71,0.02092515497414403],[112,310,72,0.025405701070757097],[112,310,73,0.029883640787856755],[112,310,74,0.034358323103023586],[112,310,75,0.03882912551163836],[112,310,76,0.043295455805627256],[112,310,77,0.04775675387889039],[112,310,78,0.05221249355944363],[112,310,79,0.056662184468293686],[112,311,64,-0.008271350907101876],[112,311,65,-0.0037533538854848253],[112,311,66,7.659412365010332E-4],[112,311,67,0.005285719327110652],[112,311,68,0.009805183767970585],[112,311,69,0.014323558101549075],[112,311,70,0.018840087706041106],[112,311,71,0.023354041497517533],[112,311,72,0.027864713659389292],[112,311,73,0.03237142539902996],[112,311,74,0.036873526731945855],[112,311,75,0.041370398292976174],[112,311,76,0.04586145317491176],[112,311,77,0.050346138794375356],[112,311,78,0.05482393878499213],[112,311,79,0.05929437491787257],[112,312,64,-0.006183030757991564],[112,312,65,-0.001626428638553612],[112,312,66,0.0029301967642081095],[112,312,67,0.0074860182127754055],[112,312,68,0.012040228648115006],[112,312,69,0.016592042892328962],[112,312,70,0.02114069937929615],[112,312,71,0.025685461913154975],[112,312,72,0.030225621454673945],[112,312,73,0.03476049793535939],[112,312,74,0.03928944209968403],[112,312,75,0.0438118373749221],[112,312,76,0.04832710176897921],[112,312,77,0.052834689796058015],[112,312,78,0.057334094430191274],[112,312,79,0.061824849086661804],[112,313,64,-0.0041879985816989235],[112,313,65,4.063250241707478E-4],[112,313,66,0.004999430320472398],[112,313,67,0.009590477907182982],[112,313,68,0.01417865019357284],[112,313,69,0.018763153155363824],[112,313,70,0.02334321812045445],[112,313,71,0.027918103583058074],[112,313,72,0.03248709704630262],[112,313,73,0.03704951689313962],[112,313,74,0.04160471428594925],[112,313,75,0.046152075094323425],[112,313,76,0.050691021851416745],[112,313,77,0.055221015738707996],[112,313,78,0.05974155859920008],[112,313,79,0.06425219497908213],[112,314,64,-0.0022873741340845993],[112,314,65,0.0023437684937933217],[112,314,66,0.006972485086620919],[112,314,67,0.01159792402934283],[112,314,68,0.016219257111906638],[112,314,69,0.020835681340233836],[112,314,70,0.025446420776329748],[112,314,71,0.030050728407375493],[112,314,72,0.034647888043854574],[112,314,73,0.03923721624655588],[112,314,74,0.043818064282846514],[112,314,75,0.048389820111690435],[112,314,76,0.05295191039780753],[112,314,77,0.05750380255481183],[112,314,78,0.062045006817360665],[112,314,79,0.06657507834233473],[112,315,64,-4.822061841145697E-4],[112,315,65,0.00418483481069884],[112,315,66,0.008848276530658283],[112,315,67,0.01350725509740311],[112,315,68,0.018160931597417912],[112,315,69,0.02280849394609763],[112,315,70,0.027449158781520072],[112,315,71,0.03208217338776784],[112,315,72,0.03670681764785258],[112,315,73,0.04132240602608195],[112,315,74,0.045928289580266846],[112,315,75,0.05052385800323875],[112,315,76,0.05510854169407725],[112,315,77,0.05968181385888349],[112,315,78,0.06424319264113193],[112,315,79,0.06879224328162115],[112,316,64,0.0012265279303849685],[112,316,65,0.005928529118420511],[112,316,66,0.01062579287044349],[112,316,67,0.015317443000814307],[112,316,68,0.0200026298119719],[112,316,69,0.02468053201085174],[112,316,70,0.029350358655574976],[112,316,71,0.03401135113225234],[112,316,72,0.03866278516195454],[112,316,73,0.04330397283768961],[112,316,74,0.047934264691784995],[112,316,75,0.05255305179314493],[112,316,76,0.05715976787478111],[112,316,77,0.06175389149145444],[112,316,78,0.06633494820745986],[112,316,79,0.0709025128145741],[112,317,64,0.0028379226914194144],[112,317,65,0.007573929061495732],[112,317,66,0.01230409548040659],[112,317,67,0.01702753341560273],[112,317,68,0.02174338230852249],[112,317,69,0.02645081154259829],[112,317,70,0.031149022442094138],[112,317,71,0.03583725030162141],[112,317,72,0.04051476644637997],[112,317,73,0.04518088032296819],[112,317,74,0.04983494162115981],[112,317,75,0.05447634242611535],[112,317,76,0.059104519401428524],[112,317,77,0.06371895600284602],[112,317,78,0.06831918472268941],[112,317,79,0.07290478936500264],[112,318,64,0.004351144733866136],[112,318,65,0.009120185127202418],[112,318,66,0.013882319241698249],[112,318,67,0.018636646162647375],[112,318,68,0.023382294397227416],[112,318,69,0.028118423893307237],[112,318,70,0.03284422808964507],[112,318,71,0.03755893599732074],[112,318,72,0.042261814312452434],[112,318,73,0.04695216956003717],[112,318,74,0.051629350269319335],[112,318,75,0.05629274918014779],[112,318,76,0.06094180548072772],[112,318,77,0.06557600707660197],[112,318,78,0.07019489289089303],[112,318,79,0.07479805519582791],[112,319,64,0.005765433122918162],[112,319,65,0.010566520931232976],[112,319,66,0.015359672835830174],[112,319,67,0.02014397550901889],[112,319,68,0.024918546454214152],[112,319,69,0.029682536074736948],[112,319,70,0.03443512977456159],[112,319,71,0.03917555009085033],[112,319,72,0.04390305885832432],[112,319,73,0.04861695940531499],[112,319,74,0.05331659878189535],[112,319,75,0.058001370019552995],[112,319,76,0.062670714422814],[112,319,77,0.06732412389264691],[112,319,78,0.0719611432816839],[112,319,79,0.07658137278127627],[113,-64,64,-0.08280144667316203],[113,-64,65,-0.08629431907963159],[113,-64,66,-0.08968339743503595],[113,-64,67,-0.09296724542045887],[113,-64,68,-0.09614457329536874],[113,-64,69,-0.09921424331829376],[113,-64,70,-0.10217527522962777],[113,-64,71,-0.10502685179648197],[113,-64,72,-0.10776832441959339],[113,-64,73,-0.11039921880220627],[113,-64,74,-0.11291924068116321],[113,-64,75,-0.11532828161987996],[113,-64,76,-0.1176264248634632],[113,-64,77,-0.11981395125584438],[113,-64,78,-0.12189134521898115],[113,-64,79,-0.12385930079410357],[113,-63,64,-0.07715823366643415],[113,-63,65,-0.08064013065402054],[113,-63,66,-0.08401885754312022],[113,-63,67,-0.0872929746052189],[113,-63,68,-0.09046118810318515],[113,-63,69,-0.09352235570415746],[113,-63,70,-0.09647549195459681],[113,-63,71,-0.09931977381741519],[113,-63,72,-0.10205454627119293],[113,-63,73,-0.10467932797140722],[113,-63,74,-0.10719381697389474],[113,-63,75,-0.10959789652023866],[113,-63,76,-0.1118916408853251],[113,-63,77,-0.11407532128695319],[113,-63,78,-0.11614941185754124],[113,-63,79,-0.11811459567791438],[113,-62,64,-0.07143784843164458],[113,-62,65,-0.0749080390656729],[113,-62,66,-0.07827570857637633],[113,-62,67,-0.08153941374356599],[113,-62,68,-0.08469785672655872],[113,-62,69,-0.08774989046885184],[113,-62,70,-0.09069452416499513],[113,-62,71,-0.0935309287895707],[113,-62,72,-0.09625844268829542],[113,-62,73,-0.0988765772311645],[113,-62,74,-0.10138502252786374],[113,-62,75,-0.10378365320513538],[113,-62,76,-0.10607253424634966],[113,-62,77,-0.10825192689315755],[113,-62,78,-0.11032229460927634],[113,-62,79,-0.11228430910638387],[113,-61,64,-0.06564458799524386],[113,-61,65,-0.06910234818772776],[113,-61,66,-0.0724582609267026],[113,-61,67,-0.07571087941981802],[113,-61,68,-0.07885890161779019],[113,-61,69,-0.08190117561044408],[113,-61,70,-0.08483670508498298],[113,-61,71,-0.08766465484639929],[113,-61,72,-0.09038435640004028],[113,-61,73,-0.09299531359624269],[113,-61,74,-0.09549720833727293],[113,-61,75,-0.09788990634624861],[113,-61,76,-0.10017346299829877],[113,-61,77,-0.10234812921383751],[113,-61,78,-0.10441435741400096],[113,-61,79,-0.10637280753822564],[113,-60,64,-0.05978279279805021],[113,-60,65,-0.06322740578358033],[113,-60,66,-0.06657086933602907],[113,-60,67,-0.06981173301203925],[113,-60,68,-0.07294869045064878],[113,-60,69,-0.07598058476028269],[113,-60,70,-0.07890641396800735],[113,-60,71,-0.08172533653095426],[113,-60,72,-0.08443667690992895],[113,-60,73,-0.08703993120512521],[113,-60,74,-0.08953477285416866],[113,-60,75,-0.09192105839217812],[113,-60,76,-0.09419883327409595],[113,-60,77,-0.09636833775915965],[113,-60,78,-0.09843001285757236],[113,-60,79,-0.10038450633934326],[113,-59,64,-0.05385684180540662],[113,-59,65,-0.05728759860790089],[113,-59,66,-0.06061792798861465],[113,-59,67,-0.06384637577603003],[113,-59,68,-0.06697163119646399],[113,-59,69,-0.06999253225160207],[113,-59,70,-0.0729080711583242],[113,-59,71,-0.07571739985073023],[113,-59,72,-0.07841983554438248],[113,-59,73,-0.08101486636268185],[113,-59,74,-0.08350215702560582],[113,-59,75,-0.08588155460049451],[113,-59,76,-0.08815309431513452],[113,-59,77,-0.09031700543301746],[113,-59,78,-0.09237371719082532],[113,-59,79,-0.09432386479811783],[113,-58,64,-0.047871147493555366],[113,-58,65,-0.05128734738342178],[113,-58,66,-0.05460386547867924],[113,-58,67,-0.05781924380423331],[113,-58,68,-0.06093216707473781],[113,-58,69,-0.06394146806226364],[113,-58,70,-0.06684613302629083],[113,-58,71,-0.06964530720593065],[113,-58,72,-0.07233830037439226],[113,-58,73,-0.07492459245561622],[113,-58,74,-0.07740383920329752],[113,-58,75,-0.0797758779419867],[113,-58,76,-0.08204073337052031],[113,-58,77,-0.08419862342765494],[113,-58,78,-0.08624996521995765],[113,-58,79,-0.08819538101192914],[113,-57,64,-0.041830150712547365],[113,-57,65,-0.04523110165380906],[113,-57,66,-0.04853313965368711],[113,-57,67,-0.051734802859880524],[113,-57,68,-0.05483477137859627],[113,-57,69,-0.057831872631957104],[113,-57,70,-0.06072508677775723],[113,-57,71,-0.06351355219147992],[113,-57,72,-0.06619657101058962],[113,-57,73,-0.0687736147410174],[113,-57,74,-0.07124432992606877],[113,-57,75,-0.07360854387743676],[113,-57,76,-0.07586627046857453],[113,-57,77,-0.07801771599030072],[113,-57,78,-0.08006328506869043],[113,-57,79,-0.08200358664522933],[113,-56,64,-0.03573831542554318],[113,-56,65,-0.039123334512474184],[113,-56,66,-0.04241023233313812],[113,-56,67,-0.04559754308622488],[113,-56,68,-0.048683942174931105],[113,-56,69,-0.05166825155370991],[113,-56,70,-0.05454944513739879],[113,-56,71,-0.057326654272635724],[113,-56,72,-0.059999173271581885],[113,-56,73,-0.06256646500786389],[113,-56,74,-0.06502816657496757],[113,-56,75,-0.06738409500676823],[113,-56,76,-0.0696342530604448],[113,-56,77,-0.07177883506166038],[113,-56,78,-0.0738182328120538],[113,-56,79,-0.07575304155902463],[113,-55,64,-0.02960012332434192],[113,-55,65,-0.032968537207164306],[113,-55,66,-0.0362396439027034],[113,-55,67,-0.039411973590708915],[113,-55,68,-0.042484196879075564],[113,-55,69,-0.045455130139549826],[113,-55,70,-0.0483237409058388],[113,-55,71,-0.051089153334039294],[113,-55,72,-0.05375065372539778],[113,-55,73,-0.05630769611132258],[113,-55,74,-0.05875990790087182],[113,-55,75,-0.061107095590407945],[113,-55,76,-0.06334925053566487],[113,-55,77,-0.06548655478610821],[113,-55,78,-0.06751938698163595],[113,-55,79,-0.0694483283116002],[113,-54,64,-0.02342006832145227],[113,-54,65,-0.026771213620643386],[113,-54,66,-0.030025887784020378],[113,-54,67,-0.03318261690437019],[113,-54,68,-0.036240066704322116],[113,-54,69,-0.03919704786062683],[113,-54,70,-0.04205252139086735],[113,-54,71,-0.04480560410251633],[113,-54,72,-0.04745557410435197],[113,-54,73,-0.05000187638015441],[113,-54,74,-0.05244412842490431],[113,-54,75,-0.05478212594317733],[113,-54,76,-0.05701584860997755],[113,-54,77,-0.05914546589389136],[113,-54,78,-0.06117134294261106],[113,-54,79,-0.0630940465308053],[113,-53,64,-0.01720265091855111],[113,-53,65,-0.020535874627310324],[113,-53,66,-0.023773484779990306],[113,-53,67,-0.026914003316339086],[113,-53,68,-0.029956090986131834],[113,-53,69,-0.03289855266164765],[113,-53,70,-0.03574034271260651],[113,-53,71,-0.03848057044347852],[113,-53,72,-0.04111850559317931],[113,-53,73,-0.04365358389707341],[113,-53,74,-0.046085412711506124],[113,-53,75,-0.04841377670055813],[113,-53,76,-0.050638643585266596],[113,-53,77,-0.05276016995519395],[113,-53,78,-0.05477870714239241],[113,-53,79,-0.05669480715774344],[113,-52,64,-0.010952372451169756],[113,-52,65,-0.014267032325596452],[113,-52,66,-0.01748695729542249],[113,-52,67,-0.020610665083262814],[113,-52,68,-0.023636811380873146],[113,-52,69,-0.026564195149456737],[113,-52,70,-0.029391763982458685],[113,-52,71,-0.032118619530757564],[113,-52,72,-0.034744022990271795],[113,-52,73,-0.03726740065189682],[113,-52,74,-0.03968834951400091],[113,-52,75,-0.04200664295716816],[113,-52,76,-0.04422223648143364],[113,-52,77,-0.04633527350589528],[113,-52,78,-0.04834609123074518],[113,-52,79,-0.05025522656170278],[113,-51,64,-0.004673729209922595],[113,-51,65,-0.00796919414645103],[113,-51,66,-0.011170823433334531],[113,-51,67,-0.014277130513973613],[113,-51,68,-0.01728676593940537],[113,-51,69,-0.02019852265608091],[113,-51,70,-0.02301134135615457],[113,-51,71,-0.025724315890195193],[113,-51,72,-0.028336698742339572],[113,-51,73,-0.03084790656780312],[113,-51,74,-0.033257525792971476],[113,-51,75,-0.035565318277767766],[113,-51,76,-0.03777122704053992],[113,-51,77,-0.03987538204534413],[113,-51,78,-0.041878106051680075],[113,-51,79,-0.04377992052664992],[113,-50,64,0.0016287935618730653],[113,-50,65,-0.0016468568377717707],[113,-50,66,-0.004829590966763608],[113,-50,67,-0.007917917929249008],[113,-50,68,-0.010910483055356357],[113,-50,69,-0.013806073176088285],[113,-50,70,-0.016603621960751158],[113,-50,71,-0.019302215316832405],[113,-50,72,-0.021901096852344093],[113,-50,73,-0.024399673400549382],[113,-50,74,-0.0267975206072949],[113,-50,75,-0.029094388580645614],[113,-50,76,-0.03129020760306045],[113,-50,77,-0.0333850939059952],[113,-50,78,-0.03537935550697702],[113,-50,79,-0.03727349810913072],[113,-49,64,0.007950727794356793],[113,-49,65,0.0046954996753975076],[113,-49,66,0.0015322488140885326],[113,-49,67,-0.0015375294964935504],[113,-49,68,-0.004512475287922979],[113,-49,69,-0.007391369178086138],[113,-49,70,-0.010173137695404066],[113,-49,71,-0.012856858665528104],[113,-49,72,-0.015441766660523992],[113,-49,73,-0.017927258510466837],[113,-49,74,-0.020312898877663743],[113,-49,75,-0.022598425893204044],[113,-49,76,-0.0247837568560757],[113,-49,77,-0.026868993994732304],[113,-49,78,-0.02885443029115753],[113,-49,79,-0.030740555367405054],[113,-48,64,0.014287628840733424],[113,-48,65,0.011053418554568095],[113,-48,66,0.007910227379041346],[113,-48,67,0.004859555060328868],[113,-48,68,0.0019027669404763081],[113,-48,69,-9.589112906922548E-4],[113,-48,70,-0.0037243989062495375],[113,-48,71,-0.0063927655153385166],[113,-48,72,-0.008963236498857441],[113,-48,73,-0.011435198507580124],[113,-48,74,-0.0138082050229269],[113,-48,75,-0.01608198198008781],[113,-48,76,-0.018256433453736287],[113,-48,77,-0.020331647406216402],[113,-48,78,-0.022307901498251126],[113,-48,79,-0.024185668962151463],[113,-47,64,0.020635081850500225],[113,-47,65,0.01742247243557382],[113,-47,66,0.014299905359621001],[113,-47,67,0.011268884875676566],[113,-47,68,0.00833078177186053],[113,-47,69,0.005486828137188149],[113,-47,70,0.00273811206477248],[113,-47,71,8.55722925073854E-5],[113,-47,72,-0.0024700072187860966],[113,-47,73,-0.004928002769671647],[113,-47,74,-0.007287956469081869],[113,-47,75,-0.009549581843679933],[113,-47,76,-0.011712769509834131],[113,-47,77,-0.013777592908088443],[113,-47,78,-0.015744314100179402],[113,-47,79,-0.017613389628574616],[113,-46,64,0.026988708266442618],[113,-46,65,0.02379826994056322],[113,-46,66,0.020696879075403962],[113,-46,67,0.01768604448248534],[113,-46,68,0.014767142465818783],[113,-46,69,0.011941411601939289],[113,-46,70,0.00920994745731385],[113,-46,71,0.0065736972432016705],[113,-46,72,0.004033454407959658],[113,-46,73,0.0015898531668645521],[113,-46,74,-7.566370307583448E-4],[113,-46,75,-0.0030057170968079694],[113,-46,76,-0.005157263962314196],[113,-46,77,-0.0072113362978646345],[113,-46,78,-0.009168180296598938],[113,-46,79,-0.01102823551974863],[113,-45,64,0.03334417244509069],[113,-45,65,0.030176462313895813],[113,-45,66,0.027096787184697324],[113,-45,67,0.024106660476977737],[113,-45,68,0.021207464077792948],[113,-45,69,0.01840044313634548],[113,-45,70,0.015686700795909947],[113,-45,71,0.013067192863191912],[113,-45,72,0.010542722415106676],[113,-45,73,0.008113934343055185],[113,-45,74,0.005781309834482884],[113,-45,75,0.0035451607920158335],[113,-45,76,0.0014056241899421673],[113,-45,77,-6.37343631851417E-4],[113,-45,78,-0.0025839727365302156],[113,-45,79,-0.004434685421529472],[113,-44,64,0.03969718840078129],[113,-44,65,0.036552750182101135],[113,-44,66,0.03349531745971457],[113,-44,67,0.030526408308380604],[113,-44,68,0.02764741026267037],[113,-44,69,0.024859575126388256],[113,-44,70,0.022164013719324194],[113,-44,71,0.019561690561416878],[113,-44,72,0.017053418494317185],[113,-44,73,0.014639853240425604],[113,-44,74,0.01232148789919374],[113,-44,75,0.010098647380979209],[113,-44,76,0.007971482778226235],[113,-44,77,0.005939965674079062],[113,-44,78,0.004003882388389002],[113,-44,79,0.0021628281611287825],[113,-43,64,0.046043526673502644],[113,-43,65,0.042922890438065076],[113,-43,66,0.039888213686413154],[113,-43,67,0.036941019193722835],[113,-43,68,0.034082700203851624],[113,-43,69,0.03131451525390594],[113,-43,70,0.028637582936117845],[113,-43,71,0.026052876597115526],[113,-43,72,0.023561218974569975],[113,-43,73,0.021163276771296147],[113,-43,74,0.018859555166598985],[113,-43,75,0.016650392265150527],[113,-43,76,0.014535953483171493],[113,-43,77,0.012516225872027942],[113,-43,78,0.010591012379196907],[113,-43,79,0.008759926046623567],[113,-42,64,0.05237902132018457],[113,-42,65,0.049282703249117765],[113,-42,66,0.046271282688664206],[113,-42,67,0.04334628715737976],[113,-42,68,0.04050911566746629],[113,-42,69,0.03776103356477667],[113,-42,70,0.03510316730610863],[113,-42,71,0.032536499173871025],[113,-42,72,0.03006186192810789],[113,-42,73,0.027679933395957534],[113,-42,74,0.025391230998333292],[113,-42,75,0.023196106214119827],[113,-42,76,0.021094738981650263],[113,-42,77,0.019087132037580168],[113,-42,78,0.017173105193110882],[113,-42,79,0.01535228954758161],[113,-41,64,0.058699577029611816],[113,-41,65,0.05562807918918866],[113,-41,66,0.05264040147692517],[113,-41,67,0.049738076195535275],[113,-41,68,0.04692250818190247],[113,-41,69,0.04419496966280145],[113,-41,70,0.041556595047891776],[113,-41,71,0.03900837566006454],[113,-41,72,0.03655115440312673],[113,-41,73,0.03418562036690087],[113,-41,74,0.03191230336952933],[113,-41,75,0.02973156843727165],[113,-41,76,0.027643610221565917],[113,-41,77,0.025648447353466164],[113,-41,78,0.023745916735410377],[113,-41,79,0.021935667770338396],[113,-40,64,0.06500117636110081],[113,-40,65,0.061954986495181386],[113,-40,66,0.05899152452156253],[113,-40,67,0.05611232756571283],[113,-40,68,0.053318806342805836],[113,-40,69,0.05061224002943365],[113,-40,70,0.047993771072574076],[113,-40,71,0.045464399935890576],[113,-40,72,0.04302497978335307],[113,-40,73,0.04067621110025399],[113,-40,74,0.03841863625141151],[113,-40,75,0.036252633976845194],[113,-40,76,0.03417841382469966],[113,-40,77,0.032196010521523544],[113,-40,78,0.030305278279860737],[113,-40,79,0.028505885043173862],[113,-39,64,0.07127988710664068],[113,-39,65,0.06825947844725955],[113,-39,66,0.06532069115052164],[113,-39,67,0.062465067201064484],[113,-39,68,0.05969402324323314],[113,-39,69,0.05700884546904794],[113,-39,70,0.054410684443409574],[113,-39,71,0.05190054986662018],[113,-39,72,0.04947930527420474],[113,-39,73,0.04714766267411108],[113,-39,74,0.044906177121078916],[113,-39,75,0.042755241228464635],[113,-39,76,0.04069507961729224],[113,-39,77,0.03872574330264589],[113,-39,78,0.03684710401735414],[113,-39,79,0.035058848472989124],[113,-38,64,0.07753186977663962],[113,-38,65,0.07453770087319034],[113,-38,66,0.07162403307148346],[113,-38,67,0.0687924132495672],[113,-38,68,0.06604426402911279],[113,-38,69,0.06338087867989395],[113,-38,70,0.060803415961486085],[113,-38,71,0.05831289490226221],[113,-38,72,0.05591018951567617],[113,-38,73,0.053596023453901465],[113,-38,74,0.05137096459862789],[113,-38,75,0.04923541958929056],[113,-38,76,0.04718962828851225],[113,-38,77,0.045233658184867465],[113,-38,78,0.04336739873292217],[113,-38,79,0.04159055563057035],[113,-37,64,0.08375338520945086],[113,-37,65,0.0807858997769163],[113,-37,66,0.0778977820186868],[113,-37,67,0.07509058373829658],[113,-37,68,0.07236573358018084],[113,-37,69,0.069724531950911],[113,-37,70,0.06716814587763431],[113,-37,71,0.06469760380379597],[113,-37,72,0.062313790322128026],[113,-37,73,0.06001744084498006],[113,-37,74,0.05780913621178996],[113,-37,75,0.055689297233969315],[113,-37,76,0.05365817917698823],[113,-37,77,0.05171586617976176],[113,-37,78,0.049862265611297696],[113,-37,79,0.0480971023646235],[113,-36,64,0.08994080230433221],[113,-36,65,0.08700042909101413],[113,-36,66,0.08413827752406611],[113,-36,67,0.081355904362435],[113,-36,68,0.07865474431604991],[113,-36,69,0.07603610498405178],[113,-36,70,0.07350116173021415],[113,-36,71,0.07105095249562587],[113,-36,72,0.0686863725486292],[113,-36,73,0.06640816917207959],[113,-36,74,0.06421693628773184],[113,-36,75,0.06211310901802525],[113,-36,76,0.06009695818504923],[113,-36,77,0.05816858474679787],[113,-36,78,0.056327914170667515],[113,-36,79,0.05457469074421861],[113,-35,64,0.09609060587812657],[113,-35,65,0.09317775855331967],[113,-35,66,0.09034197481299344],[113,-35,67,0.08758481639929738],[113,-35,68,0.08490772412769287],[113,-35,69,0.08231201284240741],[113,-35,70,0.07979886630906197],[113,-35,71,0.07736933204454755],[113,-35,72,0.07502431608413984],[113,-35,73,0.07276457768592093],[113,-35,74,0.07059072397231203],[113,-35,75,0.06850320450898983],[113,-35,76,0.06650230582096772],[113,-35,77,0.06458814584594952],[113,-35,78,0.06276066832491345],[113,-35,79,0.06101963712994163],[113,-34,64,0.10219940464545185],[113,-34,65,0.09931448170751933],[113,-34,66,0.09650545282441525],[113,-34,67,0.09377388474716741],[113,-34,68,0.09112122443413806],[113,-34,69,0.08854879402392068],[113,-34,70,0.08605778574539413],[113,-34,71,0.08364925676501433],[113,-34,72,0.08132412397132593],[113,-34,73,0.07908315869676785],[113,-34,74,0.0769269813765765],[113,-34,75,0.0748560561450542],[113,-34,76,0.07287068536899066],[113,-34,77,0.07097100411834223],[113,-34,78,0.06915697457412417],[113,-34,79,0.06742838037353693],[113,-33,64,0.10826393932267697],[113,-33,65,0.10540732402797282],[113,-33,66,0.10262542235565597],[113,-33,67,0.09991980608921835],[113,-33,68,0.09729192836464551],[113,-33,69,0.09474311866096441],[113,-33,70,0.09227457772793835],[113,-33,71,0.08988737245098144],[113,-33,72,0.0875824306532822],[113,-33,73,0.08536053583520553],[113,-33,74,0.08322232185077771],[113,-33,75,0.08116826752152273],[113,-33,76,0.07919869118743961],[113,-33,77,0.07731374519521894],[113,-33,78,0.07551341032366343],[113,-33,79,0.0737974901463242],[113,-32,64,0.11428109085535743],[113,-32,65,0.11145315116844812],[113,-32,66,0.10869873433156674],[113,-32,67,0.10601941718219299],[113,-32,68,0.10341665906604047],[113,-32,69,0.10089179684545835],[113,-32,70,0.09844603984496636],[113,-32,71,0.09608046473399745],[113,-32,72,0.09379601034683382],[113,-32,73,0.0915934724398092],[113,-32,74,0.08947349838558116],[113,-32,75,0.08743658180474034],[113,-32,76,0.08548305713454618],[113,-32,77,0.08361309413489182],[113,-32,78,0.08182669233145434],[113,-32,79,0.08012367539605314],[113,-31,64,0.12024788876928438],[113,-31,65,0.11744897733491999],[113,-31,66,0.11472238819816993],[113,-31,67,0.11206970326999444],[113,-31,68,0.10949238813535767],[113,-31,69,0.1069917870796755],[113,-31,70,0.10456911805238367],[113,-31,71,0.10222546756770012],[113,-31,72,0.09996178554257018],[113,-31,73,0.09777888007186153],[113,-31,74,0.09567741214061909],[113,-31,75,0.09365789027364324],[113,-31,76,0.09172066512218124],[113,-31,77,0.08986592398783533],[113,-31,78,0.08809368528364359],[113,-31,79,0.0864037929323549],[113,-30,64,0.1261615196453042],[113,-30,65,0.12339197378258915],[113,-30,66,0.12069354044095859],[113,-30,67,0.11806780662234961],[113,-30,68,0.1155162441779558],[113,-30,69,0.11304020485290334],[113,-30,70,0.11064091526803455],[113,-30,71,0.10831947183887669],[113,-30,72,0.10607683563177783],[113,-30,73,0.10391382715728126],[113,-30,74,0.10183112110055093],[113,-30,75,0.09982924098910206],[113,-30,76,0.09790855379763763],[113,-30,77,0.09606926449008657],[113,-30,78,0.0943114104988042],[113,-30,79,0.09263485614095301],[113,-29,64,0.1320193357175914],[113,-29,65,0.1292794774368068],[113,-29,66,0.1266095132275319],[113,-29,67,0.12401103519822265],[113,-29,68,0.12148552149078096],[113,-29,69,0.11903433134363228],[113,-29,70,0.11665870009190271],[113,-29,71,0.11435973410476374],[113,-29,72,0.11213840565993916],[113,-29,73,0.1099955477554343],[113,-29,74,0.10793184885830576],[113,-29,75,0.10594784759072673],[113,-29,76,0.10404392735314305],[113,-29,77,0.10222031088462225],[113,-29,78,0.10047705476035185],[113,-29,79,0.0988140438263071],[113,-28,64,0.13781886359554552],[113,-28,65,0.1351089996380701],[113,-28,66,0.1324678031747374],[113,-28,67,0.12989687143415118],[113,-28,68,0.12739768887094938],[113,-28,69,0.12497162224744829],[113,-28,70,0.12261991565237496],[113,-28,71,0.12034368545676077],[113,-28,72,0.11814391520697975],[113,-28,73,0.11602145045500278],[113,-28,74,0.11397699352568036],[113,-28,75,0.11201109822130784],[113,-28,76,0.11012416446327378],[113,-28,77,0.10831643287088755],[113,-28,78,0.10658797927734598],[113,-28,79,0.10493870918285908],[113,-27,64,0.1435578131094456],[113,-27,65,0.14087823501122965],[113,-27,66,0.13826609024045655],[113,-27,67,0.13572298115764292],[113,-27,68,0.13325039854979248],[113,-27,69,0.13084971673076295],[113,-27,70,0.12852218857871323],[113,-27,71,0.12626894051069715],[113,-27,72,0.12409096739439618],[113,-27,73,0.12198912739705481],[113,-27,74,0.11996413677143358],[113,-27,75,0.11801656457903786],[113,-27,76,0.1161468273504147],[113,-27,77,0.11435518368262132],[113,-27,78,0.11264172877382217],[113,-27,79,0.11100638889503267],[113,-26,64,0.1492340862795709],[113,-26,65,0.14658507045861102],[113,-26,66,0.14400224673973794],[113,-26,67,0.1414872226253332],[113,-26,68,0.13904149525205756],[113,-26,69,0.13666644651008908],[113,-26,70,0.13436333809942946],[113,-26,71,0.1321333065233511],[113,-26,72,0.1299773580189687],[113,-26,73,0.12789636342500643],[113,-26,74,0.12589105298657433],[113,-26,75,0.12396201109720495],[113,-26,76,0.12210967097795622],[113,-26,77,0.1203343092936684],[113,-26,78,0.11863604070634604],[113,-26,79,0.11701481236567235],[113,-25,64,0.1548457864089372],[113,-25,65,0.15222759427720212],[113,-25,66,0.14967434648542877],[113,-25,67,0.1471876556860583],[113,-25,68,0.14476902538042546],[113,-25,69,0.14241984505700533],[113,-25,70,0.14014138526671982],[113,-25,71,0.13793479263537323],[113,-25,72,0.13580108481320707],[113,-25,73,0.13374114536163773],[113,-25,74,0.13175571857699564],[113,-25,75,0.12984540425151692],[113,-25,76,0.1280106523713871],[113,-25,77,0.1262517577519371],[113,-25,78,0.12456885460994704],[113,-25,79,0.12296191107308063],[113,-24,64,0.16039122729979127],[113,-24,65,0.15780410540005263],[113,-24,66,0.15528067405345247],[113,-24,67,0.1528225510689898],[113,-24,68,0.15043124632548588],[113,-24,69,0.14810815692896817],[113,-24,70,0.14585456230710525],[113,-24,71,0.1436716192407661],[113,-24,72,0.1415603568326853],[113,-24,73,0.13952167141330518],[113,-24,74,0.1375563213836103],[113,-24,75,0.13566492199520463],[113,-24,76,0.13384794006743495],[113,-24,77,0.1321056886416534],[113,-24,78,0.13043832157258417],[113,-24,79,0.12884582805680822],[113,-23,64,0.16586894259357543],[113,-23,65,0.16331312276158927],[113,-23,66,0.16081973417243356],[113,-23,67,0.1583903997965329],[113,-23,68,0.15602663590087673],[113,-23,69,0.15372984722566152],[113,-23,70,0.15150132209797884],[113,-23,71,0.14934222748261572],[113,-23,72,0.14725360396995757],[113,-23,73,0.14523636070105428],[113,-23,74,0.14329127022967636],[113,-23,75,0.1414189633216023],[113,-23,76,0.13961992369094423],[113,-23,77,0.13789448267360538],[113,-23,78,0.13624281383783365],[113,-23,79,0.13466492753188475],[113,-22,64,0.1712776952345041],[113,-22,65,0.16875339478699636],[113,-22,66,0.16629026123782287],[113,-22,67,0.16388992272213865],[113,-22,68,0.1615539019037331],[113,-22,69,0.15928361117104406],[113,-22,70,0.1570803477702103],[113,-22,71,0.15494528887522974],[113,-22,72,0.15287948659521],[113,-22,73,0.15088386291877898],[113,-22,74,0.1489592045954734],[113,-22,75,0.14710615795435422],[113,-22,76,0.14532522365965062],[113,-22,77,0.14361675140353036],[113,-22,78,0.14198093453595695],[113,-22,79,0.14041780463164955],[113,-21,64,0.17661648705690502],[113,-21,65,0.17412390900581032],[113,-21,66,0.17169122895066813],[113,-21,67,0.16932008019317946],[113,-21,68,0.16701199180060156],[113,-21,69,0.16476838382123826],[113,-21,70,0.16259056243696102],[113,-21,71,0.1604797150528302],[113,-21,72,0.1584369053238025],[113,-21,73,0.1564630681185869],[113,-21,74,0.15455900442047865],[113,-21,75,0.15272537616540605],[113,-21,76,0.1509627010170037],[113,-21,77,0.14927134707880296],[113,-21,78,0.14765152754350241],[113,-21,79,0.14610329527933474],[113,-20,64,0.18188456849601653],[113,-20,65,0.1794239017894228],[113,-20,66,0.1770218600807265],[113,-20,67,0.17468008183858108],[113,-20,68,0.17240010253850713],[113,-20,69,0.17018334989795514],[113,-20,70,0.16803113904839484],[113,-20,71,0.16594466764449445],[113,-20,72,0.16392501091038225],[113,-20,73,0.16197311662305014],[113,-20,74,0.16008980003272744],[113,-20,75,0.15827573872046197],[113,-20,76,0.15653146739272106],[113,-20,77,0.15485737261310295],[113,-20,78,0.1532536874711221],[113,-20,79,0.15172048618808365],[113,-19,64,0.1870814484224158],[113,-19,65,0.18465286821266058],[113,-19,66,0.1822816363540879],[113,-19,67,0.17996939648138077],[113,-19,68,0.17771769048134356],[113,-19,69,0.17552795374762498],[113,-19,70,0.1734015103724621],[113,-19,71,0.17133956827551056],[113,-19,72,0.1693432142697492],[113,-19,73,0.16741340906452007],[113,-19,74,0.16555098220553544],[113,-19,75,0.1637566269520836],[113,-19,76,0.1620308950912498],[113,-19,77,0.16037419168924116],[113,-19,78,0.15878676977977957],[113,-19,79,0.15726872498957878],[113,-18,64,0.19220690410019314],[113,-18,65,0.18981057203956797],[113,-18,66,0.187470308465432],[113,-18,67,0.18518776217633626],[113,-18,68,0.18296448147171707],[113,-18,69,0.1808019094263591],[113,-18,70,0.17870137910187778],[113,-18,71,0.1766641086952796],[113,-18,72,0.17469119662459387],[113,-18,73,0.17278361655163155],[113,-18,74,0.17094221234170803],[113,-18,75,0.169167692960559],[113,-18,76,0.16746062730826405],[113,-18,77,0.16582143899027046],[113,-18,78,0.16425040102547994],[113,-18,79,0.16274763049141205],[113,-17,64,0.19726099126859453],[113,-17,65,0.1948970558331028],[113,-17,66,0.19258790621463373],[113,-17,67,0.19033519637229757],[113,-17,68,0.18814048101794656],[113,-17,69,0.18600521091045386],[113,-17,70,0.18393072808700572],[113,-17,71,0.18191826103146846],[113,-17,72,0.17996891977981944],[113,-17,73,0.1780836909627027],[113,-17,74,0.17626343278494316],[113,-17,75,0.17450886994224546],[113,-17,76,0.17282058847490123],[113,-17,77,0.17119903055858676],[113,-17,78,0.16964448923222109],[113,-17,79,0.16815710306289555],[113,-16,64,0.2022440543472992],[113,-16,65,0.19991265118892065],[113,-16,66,0.19763474876788878],[113,-16,67,0.19541200619951415],[113,-16,68,0.19324598460640108],[113,-16,69,0.1911381424326093],[113,-16,70,0.18908983069482266],[113,-16,71,0.18710228817058872],[113,-16,72,0.18517663652361893],[113,-16,73,0.1833138753662067],[113,-16,74,0.18151487725860105],[113,-16,75,0.17978038264556173],[113,-16,76,0.17811099472991376],[113,-16,77,0.1765071742831935],[113,-16,78,0.17496923439334588],[113,-16,79,0.17349733514949106],[113,-15,64,0.20715673676541768],[113,-15,65,0.20485798909332875],[113,-15,66,0.2026114550434429],[113,-15,67,0.2004187988819628],[113,-15,68,0.1982815881392549],[113,-15,69,0.1962012889439494],[113,-15,70,0.19417926129404717],[113,-15,71,0.19221675426509222],[113,-15,72,0.19031490115540028],[113,-15,73,0.18847471456840115],[113,-15,74,0.18669708143193509],[113,-15,75,0.1849827579547214],[113,-15,76,0.18333236451982804],[113,-15,77,0.18174638051522496],[113,-15,78,0.18022513910138527],[113,-15,79,0.17876882191595378],[113,-14,64,0.21199999141399617],[113,-14,65,0.20973401040519812],[113,-14,66,0.2075189542217104],[113,-14,67,0.20535649227448105],[113,-14,68,0.20324819849744613],[113,-14,69,0.20119554670162532],[113,-14,70,0.19919990586621672],[113,-14,71,0.19726253536675697],[113,-14,72,0.195384580140332],[113,-14,73,0.19356706578789806],[113,-14,74,0.19181089361355397],[113,-14,75,0.19011683560098147],[113,-14,76,0.18848552932688267],[113,-14,77,0.1869174728114973],[113,-14,78,0.18541301930616583],[113,-14,79,0.18397237201795413],[113,-13,64,0.21677509122212002],[113,-13,65,0.21454197646192286],[113,-13,66,0.21235849637987614],[113,-13,67,0.2102263255247956],[113,-13,68,0.2081470442289307],[113,-13,69,0.2061221339820959],[113,-13,70,0.20415297274280542],[113,-13,71,0.20224083018646433],[113,-13,72,0.20038686289061092],[113,-13,73,0.19859210945726324],[113,-13,74,0.1968574855722165],[113,-13,75,0.1951837790015022],[113,-13,76,0.1935716445248442],[113,-13,77,0.19202159880618852],[113,-13,78,0.19053401520127844],[113,-13,79,0.18910911850228496],[113,-12,64,0.22148363985676534],[113,-12,65,0.21928347980958007],[113,-12,66,0.21713166325112698],[113,-12,67,0.21502986986060268],[113,-12,68,0.21297968636238362],[113,-12,69,0.2109826019202381],[113,-12,70,0.20904000346853624],[113,-12,71,0.2071531709805171],[113,-12,72,0.2053232726736015],[113,-12,73,0.2035513601518073],[113,-12,74,0.20183836348511208],[113,-12,75,0.20018508622597675],[113,-12,76,0.19859220036285907],[113,-12,77,0.19706024121080346],[113,-12,78,0.1955896022390674],[113,-12,79,0.19418052983580658],[113,-11,64,0.22612758254612209],[113,-11,65,0.22396045505701156],[113,-11,66,0.22184037910824228],[113,-11,67,0.2197690395014158],[113,-11,68,0.21774802934606996],[113,-11,69,0.21577884547400517],[113,-11,70,0.21386288379060592],[113,-11,71,0.2120014345632173],[113,-11,72,0.21019567764656544],[113,-11,73,0.20844667764527613],[113,-11,74,0.20675537901334118],[113,-11,75,0.20512260109073943],[113,-11,76,0.2035490330770494],[113,-11,77,0.20203522894213155],[113,-11,78,0.2005816022738488],[113,-11,79,0.19918842106283974],[113,-10,64,0.23070921702661296],[113,-10,65,0.22857518985405012],[113,-10,66,0.226486921771759],[113,-10,67,0.22444610269540943],[113,-10,68,0.22245433211210675],[113,-10,69,0.22051311451486055],[113,-10,70,0.2186238547740479],[113,-10,71,0.21678785344592966],[113,-10,72,0.21500630201820725],[113,-10,73,0.2132802780926759],[113,-10,74,0.21161074050482465],[113,-10,75,0.20999852438058797],[113,-10,76,0.2084443361300864],[113,-10,77,0.20694874837843524],[113,-10,78,0.20551219483358973],[113,-10,79,0.20413496509124018],[113,-9,64,0.23523120461345293],[113,-9,65,0.23313033599373822],[113,-9,66,0.23107393374256335],[113,-9,67,0.22906369288110195],[113,-9,68,0.22710121926596372],[113,-9,69,0.22518802504382907],[113,-9,70,0.22332552404307937],[113,-9,71,0.2215150271024764],[113,-9,72,0.21975773733688142],[113,-9,73,0.21805474534006875],[113,-9,74,0.2164070243244849],[113,-9,75,0.21481542519815544],[113,-9,76,0.21328067157858177],[113,-9,77,0.2118033547437026],[113,-9,78,0.21038392851989018],[113,-9,79,0.20902270410699453],[113,-8,64,0.23969658139494165],[113,-8,65,0.23762892063872998],[113,-8,66,0.23560443345909854],[113,-8,67,0.2336248199740718],[113,-8,68,0.23169169240139642],[113,-8,69,0.22980657053336428],[113,-8,70,0.22797087714862652],[113,-8,71,0.22618593336105763],[113,-8,72,0.22445295390565756],[113,-8,73,0.2227730423615456],[113,-8,74,0.22114718631189867],[113,-8,75,0.21957625244103773],[113,-8,76,0.2180609815684993],[113,-8,77,0.21660198362017258],[113,-8,78,0.2151997325364693],[113,-8,79,0.21385456111753998],[113,-7,64,0.24410876955026278],[113,-7,65,0.24207435767165109],[113,-7,66,0.24008182667896427],[113,-7,67,0.23813288177847902],[113,-7,68,0.23622914154058317],[113,-7,69,0.23437213339479845],[113,-7,70,0.23256328906179757],[113,-7,71,0.2308039399224674],[113,-7,72,0.2290953123240097],[113,-7,73,0.22743852282313215],[113,-7,74,0.22583457336618373],[113,-7,75,0.22428434640643524],[113,-7,76,0.22278859995834477],[113,-7,77,0.22134796258888745],[113,-7,78,0.2199629283459159],[113,-7,79,0.21863385162356752],[113,-6,64,0.24847158879089554],[113,-6,65,0.2464704591695181],[113,-6,66,0.24450991798500643],[113,-6,67,0.24259167552349625],[113,-6,68,0.2407173566995673],[113,-6,69,0.23888849657148092],[113,-6,70,0.23710653579340857],[113,-6,71,0.23537281600470816],[113,-6,72,0.23368857515623498],[113,-6,73,0.2320549427737424],[113,-6,74,0.2304729351582281],[113,-6,75,0.22894345052341913],[113,-6,76,0.22746726407024842],[113,-6,77,0.22604502299838714],[113,-6,78,0.22467724145481238],[113,-6,79,0.2233642954194177],[113,-5,64,0.25278926792575446],[113,-5,65,0.25082144700234177],[113,-5,66,0.24889292241602723],[113,-5,67,0.2470054095247713],[113,-5,68,0.24516053957913364],[113,-5,69,0.24335985525773085],[113,-5,70,0.24160480613968782],[113,-5,71,0.2398967441141332],[113,-5,72,0.23823691872673236],[113,-5,73,0.23662647246330482],[113,-5,74,0.23506643597038968],[113,-5,75,0.23355772321294999],[113,-5,76,0.232101126569063],[113,-5,77,0.23069731186167086],[113,-5,78,0.22934681332736317],[113,-5,79,0.22805002852220113],[113,-4,64,0.25706645654982196],[113,-4,65,0.2551319645556684],[113,-4,66,0.25323547722186335],[113,-4,67,0.2513787149706781],[113,-4,68,0.2495633153808678],[113,-4,69,0.2477908287433554],[113,-4,70,0.24606271355390863],[113,-4,71,0.24438033194286468],[113,-4,72,0.2427449450418857],[113,-4,73,0.24115770828780458],[113,-4,74,0.23961966666341394],[113,-4,75,0.23813174987539365],[113,-4,76,0.23669476746922669],[113,-4,77,0.2353094038811716],[113,-4,78,0.23397621342726793],[113,-4,79,0.23269561522938254],[113,-3,64,0.2613082368564099],[113,-3,65,0.25940708857720435],[113,-3,66,0.2575426537429804],[113,-3,67,0.2557166578334954],[113,-3,68,0.25393074474854493],[113,-3,69,0.25218647238387587],[113,-3,70,0.2504853081440971],[113,-3,71,0.24882862439262998],[113,-3,72,0.2472176938386974],[113,-3,73,0.24565368486139483],[113,-3,74,0.2441376567707103],[113,-3,75,0.24267055500568047],[113,-3,76,0.2412532062695334],[113,-3,77,0.2398863136018885],[113,-3,78,0.23857045138798982],[113,-3,79,0.23730606030497803],[113,-2,64,0.2655201355731332],[113,-2,65,0.26365234114760006],[113,-2,66,0.2618199694146642],[113,-2,67,0.26002475090560123],[113,-2,68,0.25826833583492853],[113,-2,69,0.25655228969655014],[113,-2,70,0.25487808879689644],[113,-2,71,0.2532471157251096],[113,-2,72,0.2516606547602621],[113,-2,73,0.2501198872156577],[113,-2,74,0.2486258867200849],[113,-2,75,0.24717961443620062],[113,-2,76,0.24578191421590534],[113,-2,77,0.24443350769277195],[113,-2,78,0.24313498931150768],[113,-2,79,0.24188682129445938],[113,-1,64,0.26970813602139304],[113,-1,65,0.26787370177519765],[113,-1,66,0.2660733998956017],[113,-1,67,0.2643089659604705],[113,-1,68,0.2625820564937771],[113,-1,69,0.2608942445819772],[113,-1,70,0.2592470154273823],[113,-1,71,0.25764176183857607],[113,-1,72,0.256079779657864],[113,-1,73,0.25456226312580704],[113,-1,74,0.25309030018270484],[113,-1,75,0.2516648677072124],[113,-1,76,0.25028682669194424],[113,-1,77,0.24895691735613557],[113,-1,78,0.24767575419533494],[113,-1,79,0.24644382096813877],[113,0,64,0.27387869029947304],[113,0,65,0.27207761961483773],[113,0,66,0.27030939132095927],[113,0,67,0.268575746038587],[113,0,68,0.2668783465971563],[113,0,69,0.2652187736713956],[113,0,70,0.26359852135493195],[113,0,71,0.26201899267093687],[113,0,72,0.2604814950198086],[113,0,73,0.2589872355639347],[113,0,74,0.2575373165494095],[113,0,75,0.25613273056487873],[113,0,76,0.2547743557373764],[113,0,77,0.2534629508652152],[113,0,78,0.25219915048791186],[113,0,79,0.2509834598931511],[113,1,64,0.27803873158935694],[113,1,65,0.27627102581084084],[113,1,66,0.274534872680069],[113,1,67,0.2728320178583786],[113,1,68,0.2711641304781778],[113,1,69,0.2695327987997854],[113,1,70,0.26793952580526376],[113,1,71,0.26638572472929645],[113,1,72,0.2648727145271016],[113,1,73,0.2634017152794239],[113,1,74,0.26197384353448266],[113,1,75,0.26059010758704826],[113,1,76,0.2592514026945065],[113,1,77,0.2579585062299825],[113,1,78,0.2567120727724953],[113,1,79,0.25551262913415096],[113,2,64,0.29050839819590746],[113,2,65,0.2888407885408305],[113,2,66,0.287200862577971],[113,2,67,0.2855903810876009],[113,2,68,0.284011032107996],[113,2,69,0.28246442665296406],[113,2,70,0.280952094366369],[113,2,71,0.2794754791136999],[113,2,72,0.278035934510675],[113,2,73,0.2766347193889238],[113,2,74,0.27527299319862836],[113,2,75,0.2739518113482879],[113,2,76,0.27267212048147615],[113,2,77,0.2714347536906561],[113,2,78,0.27024042566802364],[113,2,79,0.2690897277933943],[113,3,64,0.2905051938513448],[113,3,65,0.2888375957378341],[113,3,66,0.28719768182781297],[113,3,67,0.28558721289192224],[113,3,68,0.2840078769584934],[113,3,69,0.2824612850310822],[113,3,70,0.2809489667430033],[113,3,71,0.2794723659489058],[113,3,72,0.2780328362533863],[113,3,73,0.27663163647668026],[113,3,74,0.2752699260573108],[113,3,75,0.27394876039186433],[113,3,76,0.272669086111756],[113,3,77,0.27143173629705475],[113,3,78,0.27023742562733744],[113,3,79,0.2690867454695847],[113,4,64,0.2904941473299085],[113,4,65,0.28882658900430297],[113,4,66,0.2871867166447252],[113,4,67,0.2855762909886148],[113,4,68,0.283997000030019],[113,4,69,0.2824504547371538],[113,4,70,0.28093818470696513],[113,4,71,0.2794616337567338],[113,4,72,0.27802215545271625],[113,4,73,0.276621008575867],[113,4,74,0.27525935252451894],[113,4,75,0.2739382426541887],[113,4,76,0.2726586255543778],[113,4,77,0.2714213342624284],[113,4,78,0.2702270834144141],[113,4,79,0.26907646433307],[113,5,64,0.2946269064856902],[113,5,65,0.2929927964749027],[113,5,66,0.2913850866098754],[113,5,67,0.28980554259661345],[113,5,68,0.2882558586576614],[113,5,69,0.28673765326994827],[113,5,70,0.285252464839636],[113,5,71,0.28380174731401503],[113,5,72,0.28238686573043575],[113,5,73,0.2810090917023242],[113,5,74,0.27966959884215786],[113,5,75,0.27836945812156816],[113,5,76,0.27710963316844],[113,5,77,0.27589097550106945],[113,5,78,0.2747142196993557],[113,5,79,0.2735799785130379],[113,6,64,0.29874206199468295],[113,6,65,0.2971414579842038],[113,6,66,0.2955659711905364],[113,6,67,0.29401737223612495],[113,6,68,0.29249736151805056],[113,6,69,0.29100756496620017],[113,6,70,0.28954952973844394],[113,6,71,0.2881247198528601],[113,6,72,0.28673451175700243],[113,6,73,0.28538018983425184],[113,6,74,0.2840629418471338],[113,6,75,0.28278385431776515],[113,6,76,0.28154390784530037],[113,6,77,0.2803439723604397],[113,6,78,0.27918480231697584],[113,6,79,0.2780670318203868],[113,7,64,0.3028348160273081],[113,7,65,0.3012677884421308],[113,7,66,0.29972459886720226],[113,7,67,0.2982070227754784],[113,7,68,0.29671676667026076],[113,7,69,0.29525546386373835],[113,7,70,0.29382467019253977],[113,7,71,0.29242585967034157],[113,7,72,0.29106042007752214],[113,7,73,0.28972964848790367],[113,7,74,0.2884347467324692],[113,7,75,0.28717681680020907],[113,7,76,0.28595685617597427],[113,7,77,0.2847757531153978],[113,7,78,0.2836342818568562],[113,7,79,0.282533097770486],[113,8,64,0.30690041735111756],[113,8,65,0.30536704798479203],[113,8,66,0.3038562419855309],[113,8,67,0.3023697795973798],[113,8,68,0.30090937334747697],[113,8,69,0.2994766638450211],[113,8,70,0.2980732155172583],[113,8,71,0.2967005122825309],[113,8,72,0.2953599531603805],[113,8,73,0.2940528478187449],[113,8,74,0.29278041205813715],[113,8,75,0.29154376323296227],[113,8,76,0.2903439156098468],[113,8,77,0.28918177566304365],[113,8,78,0.28805813730688495],[113,8,79,0.2869736770652959],[113,9,64,0.31093416387726536],[113,9,65,0.3094345445618255],[113,9,66,0.3079562193834381],[113,9,67,0.30650097326462655],[113,9,68,0.3050705246602013],[113,9,69,0.30366652137671496],[113,9,70,0.3022905363289487],[113,9,71,0.3009440632334698],[113,9,72,0.2996285122392514],[113,9,73,0.2983452054953972],[113,9,74,0.29709537265585784],[113,9,75,0.2958801463212922],[113,9,76,0.2947005574179546],[113,9,77,0.2935575305136628],[113,9,78,0.29245187907082687],[113,9,79,0.291384300636547],[113,10,64,0.31493140515550727],[113,10,65,0.31346563647182585],[113,10,66,0.3120198989658387],[113,10,67,0.3105959821330528],[113,10,68,0.3091956102462954],[113,10,69,0.30782043819572685],[113,10,70,0.3064720472658978],[113,10,71,0.3051519408498869],[113,10,72,0.30386154010051747],[113,10,73,0.3026021795186862],[113,10,74,0.3013751024786996],[113,10,75,0.30018145669076657],[113,10,76,0.29902228960052757],[113,10,77,0.2978985437256789],[113,10,78,0.2968110519296692],[113,10,79,0.2957605326324758],[113,11,64,0.3188875448175224],[113,11,65,0.3174557348456399],[113,11,66,0.3160427002268248],[113,11,67,0.3146502349114951],[113,11,68,0.3132800688676425],[113,11,69,0.31193386394147576],[113,11,70,0.31061320965512446],[113,11,71,0.30931961894143994],[113,11,72,0.3080545238158871],[113,11,73,0.30681927098556716],[113,11,74,0.3056151173952614],[113,11,75,0.30444322571064664],[113,11,76,0.3033046597385628],[113,11,77,0.30220037978439],[113,11,78,0.3011312379465145],[113,11,79,0.3000979733478888],[113,12,64,0.3227980429686617],[113,12,65,0.321400306077641],[113,12,66,0.32002009671938675],[113,12,67,0.31865921316888685],[113,12,68,0.3173193909535406],[113,12,69,0.3160022987345123],[113,12,70,0.31470953412516195],[113,12,71,0.31344261944659435],[113,12,72,0.31220299742031693],[113,12,73,0.3109920267980448],[113,12,74,0.30981097792855],[113,12,75,0.30866102826169617],[113,12,76,0.3075432577895468],[113,12,77,0.3064586444246017],[113,12,78,0.3054080593151383],[113,12,79,0.30439226209766973],[113,13,64,0.3266584185282238],[113,13,65,0.32529487420507897],[113,13,66,0.3239476184727802],[113,13,67,0.32261845378858217],[113,13,68,0.32130912109092763],[113,13,69,0.32002129570159105],[113,13,70,0.3187565831649248],[113,13,71,0.3175165150242446],[113,13,72,0.31630254453534606],[113,13,73,0.31511604231719065],[113,13,74,0.3139582919396586],[113,13,75,0.3128304854485082],[113,13,76,0.31173371882743317],[113,13,77,0.3106689873972669],[113,13,78,0.30963718115231803],[113,13,79,0.3086390800338413],[113,14,64,0.33046425151804376],[113,14,65,0.3291350232352929],[113,14,66,0.3278208543573202],[113,14,67,0.3265235513696919],[113,14,68,0.3252448604612178],[113,14,69,0.3239864634469719],[113,14,70,0.3227499736284436],[113,14,71,0.32153693159085145],[113,14,72,0.3203488009376167],[113,14,73,0.319186963962031],[113,14,74,0.3180527172560173],[113,14,75,0.3169472672561246],[113,14,76,0.3158717257266436],[113,14,77,0.3148271051798998],[113,14,78,0.31381431423370054],[113,14,79,0.312834152905944],[113,15,64,0.3342111852995745],[113,15,65,0.332916399420966],[113,15,66,0.3316354543967867],[113,15,67,0.33037016057561397],[113,15,68,0.3291222692239362],[113,15,69,0.32789346847013895],[113,15,70,0.32668537918565105],[113,15,71,0.32549955080328546],[113,15,72,0.32433745707276934],[113,15,73,0.32320049175349713],[113,15,74,0.3220899642444101],[113,15,75,0.3210070951511371],[113,15,76,0.31995301179028907],[113,15,77,0.3189287436309582],[113,15,78,0.31793521767340444],[113,15,79,0.31697325376493307],[113,16,64,0.33789492875932964],[113,16,65,0.3366347134832913],[113,16,66,0.3353871320283053],[113,16,67,0.3341539984296245],[113,16,68,0.33293706884701524],[113,16,69,0.3317380375297981],[113,16,70,0.3305585327190835],[113,16,71,0.32940011248723844],[113,16,72,0.32826426051457525],[113,16,73,0.32715238180329814],[113,16,74,0.32606579832861354],[113,16,75,0.32500574462713294],[113,16,76,0.32397336332246535],[113,16,77,0.32296970058805125],[113,16,78,0.32199570154721463],[113,16,79,0.32105220561044456],[113,17,64,0.3415112584428587],[113,17,65,0.3402857427832207],[113,17,66,0.3390716663098806],[113,17,67,0.33787084655770566],[113,17,68,0.33668504438392877],[113,17,69,0.3355159599543336],[113,17,70,0.3343652286666775],[113,17,71,0.33323441701138207],[113,17,72,0.3321250183694864],[113,17,73,0.33103844874789784],[113,17,74,0.3299760424518455],[113,17,75,0.32893904769466453],[113,17,76,0.3279286221448123],[113,17,77,0.32694582841016134],[113,17,78,0.3259916294595541],[113,17,79,0.3250668839816233],[113,18,64,0.3450560206370513],[113,18,65,0.3438653334405901],[113,18,66,0.34268490407537167],[113,18,67,0.3415165533784002],[113,18,68,0.34036204669745457],[113,18,69,0.339223089898511],[113,18,70,0.33810132531044723],[113,18,71,0.3369983276070599],[113,18,72,0.33591559962638823],[113,18,73,0.3348545681273792],[113,18,74,0.3338165794838007],[113,18,75,0.33280289531552903],[113,18,76,0.3318146880571122],[113,18,77,0.33085303646365577],[113,18,78,0.32991892105401266],[113,18,79,0.32901321949128487],[113,19,64,0.3485251334008706],[113,19,65,0.3473694024012255],[113,19,66,0.34622276203701474],[113,19,67,0.34508703623979575],[113,19,68,0.343963994630169],[113,19,69,0.342855348546529],[113,19,70,0.34176274701114767],[113,19,71,0.34068777263361855],[113,19,72,0.3396319374516596],[113,19,73,0.33859667870930277],[113,19,74,0.33758335457238486],[113,19,75,0.33659323978146033],[113,19,76,0.33562752124203915],[113,19,77,0.33468729355219684],[113,19,78,0.33377355446753904],[113,19,79,0.33288720030352487],[113,20,64,0.3519145885446022],[113,20,65,0.35079393945211296],[113,20,66,0.34968122883557873],[113,20,67,0.34857828350372944],[113,20,68,0.34748687712176235],[113,20,69,0.34640872626151387],[113,20,70,0.3453454863890155],[113,20,71,0.3442987477894696],[113,20,72,0.3432700314296344],[113,20,73,0.34226078475765276],[113,20,74,0.3412723774402378],[113,20,75,0.3403060970373327],[113,20,76,0.3393631446141519],[113,20,77,0.3384446302906498],[113,20,78,0.3375515687283961],[113,20,79,0.33668487455486895],[113,21,64,0.35522045355743737],[113,21,65,0.3541350091844533],[113,21,66,0.35305636703797044],[113,21,67,0.3519863565770231],[113,21,68,0.35092675527298794],[113,21,69,0.34987928468126356],[113,21,70,0.3488456064503972],[113,21,71,0.3478273182686892],[113,21,72,0.34682594974826936],[113,21,73,0.3458429582466759],[113,21,74,0.3448797246258514],[113,21,75,0.3439375489486749],[113,21,76,0.3430176461129334],[113,21,77,0.3421211414227827],[113,21,78,0.34124906609767547],[113,21,79,0.3404023527187654],[113,22,64,0.3584388734834857],[113,22,65,0.3573887529046947],[113,22,66,0.3563443150823853],[113,22,67,0.35530739188985117],[113,22,68,0.35427976435634323],[113,22,69,0.3532631587603449],[113,22,70,0.352259242660362],[113,22,71,0.3512696208632574],[113,22,72,0.3502958313301217],[113,22,73,0.34933934101971353],[113,22,74,0.34840154166938414],[113,22,75,0.34748374551360056],[113,22,76,0.3465871809399792],[113,22,77,0.3457129880828702],[113,22,78,0.34486221435447767],[113,22,79,0.344035809913522],[113,23,64,0.36156607274629804],[113,23,65,0.3605513904936263],[113,23,66,0.3595412891710865],[113,23,67,0.3585376028213197],[113,23,68,0.3575421157735662],[113,23,69,0.3565565587586225],[113,23,70,0.35558260496138766],[113,23,71,0.35462186601102236],[113,23,72,0.35367588790872034],[113,23,73,0.35274614689311756],[113,23,74,0.35183404524326006],[113,23,75,0.3509409070192423],[113,23,76,0.350067973740426],[113,23,77,0.34921640000128323],[113,23,78,0.34838724902484824],[113,23,79,0.3475814881537805],[113,24,64,0.36459835692172815],[113,24,65,0.3636192222133591],[113,24,66,0.36264358511063916],[113,24,67,0.36167328157208517],[113,24,68,0.3607100989597708],[113,24,69,0.3597557721760482],[113,24,70,0.3588119797379374],[113,24,71,0.3578803397892084],[113,24,72,0.35696240605015084],[113,24,73,0.35605966370506137],[113,24,74,0.3551735252273684],[113,24,75,0.3543053261425027],[113,24,76,0.35345632072842975],[113,24,77,0.35262767765388203],[113,24,78,0.35182047555427914],[113,24,79,0.35103569854533745],[113,25,64,0.3675321144592262],[113,25,65,0.36658863046228884],[113,25,66,0.3656475800996903],[113,25,67,0.3647108009841029],[113,25,68,0.3637800832343153],[113,25,69,0.36285716563379866],[113,25,70,0.3619437317270252],[113,25,71,0.36104140585356387],[113,25,72,0.3601517491199491],[113,25,73,0.3592762553093494],[113,25,74,0.35841634672895945],[113,25,75,0.3575733699952225],[113,25,76,0.3567485917567967],[113,25,77,0.3559431943553089],[113,25,78,0.3551582714238773],[113,25,79,0.35439482342341105],[113,26,64,0.3703638183516328],[113,26,65,0.3694560814781098],[113,26,66,0.3685497344643708],[113,26,67,0.367646616307583],[113,26,68,0.3667485195984791],[113,26,69,0.36585718670184386],[113,26,70,0.36497430587484386],[113,26,71,0.36410150732322705],[113,26,72,0.3632403591953835],[113,26,73,0.36239236351429804],[113,26,74,0.3615589520473191],[113,26,75,0.360741482113844],[113,26,76,0.3599412323308439],[113,26,77,0.3591593982962631],[113,26,78,0.35839708821028077],[113,26,79,0.35765531843443876],[113,27,64,0.37309002775332234],[113,27,65,0.3722181269887248],[113,27,66,0.3713465933411577],[113,27,67,0.37047726691499017],[113,27,68,0.3696119424797848],[113,27,69,0.36875236567277675],[113,27,70,0.36790022913929354],[113,27,71,0.36705716861114207],[113,27,72,0.3662247589229551],[113,27,73,0.3654045099665239],[113,27,74,0.36459786258304894],[113,27,75,0.3638061843934007],[113,27,76,0.36303076556631914],[113,27,77,0.36227281452458465],[113,27,78,0.3615334535891482],[113,27,79,0.360813714561226],[113,28,64,0.3757073895467744],[113,28,65,0.37487140581113626],[113,28,66,0.37403478830728565],[113,28,67,0.37319937796217606],[113,28,68,0.3723669714230541],[113,28,69,0.37153931728199646],[113,28,70,0.3707181122384964],[113,28,71,0.36990499720011677],[113,28,72,0.36910155332120986],[113,28,73,0.3683092979797263],[113,28,74,0.36752968069204545],[113,28,75,0.36676407896592184],[113,28,76,0.3660137940914719],[113,28,77,0.36528004687023774],[113,28,78,0.3645639732823146],[113,28,79,0.3638666200915448],[113,29,64,0.3782126398576422],[113,29,65,0.3774126453983807],[113,29,66,0.3766110389587686],[113,29,67,0.37580966199670907],[113,29,68,0.37501031272826346],[113,29,69,0.3742147423743116],[113,29,70,0.3734246513453696],[113,29,71,0.3726416853645885],[113,29,72,0.3718674315289293],[113,29,73,0.3711034143085366],[113,29,74,0.37035109148424805],[113,29,75,0.36961185002332686],[113,29,76,0.36888700189334755],[113,29,77,0.36817777981427047],[113,29,78,0.3674853329486879],[113,29,79,0.36681072253025154],[113,30,64,0.38060260551817315],[113,30,65,0.37983866333436866],[113,30,66,0.3790721544358937],[113,30,67,0.3783049205132566],[113,30,68,0.3775387610350549],[113,30,69,0.3767754295168138],[113,30,70,0.37601662972810307],[113,30,71,0.3752640118379501],[113,30,72,0.37451916849854816],[113,30,73,0.3737836308672812],[113,30,74,0.3730588645670019],[113,30,75,0.37234626558465117],[113,30,76,0.3716471561081484],[113,30,77,0.370962780301588],[113,30,78,0.3702943000187266],[113,30,79,0.3696427904547672],[113,31,64,0.3828742054790636],[113,31,65,0.3821463687767027],[113,31,66,0.3814150348962608],[113,31,67,0.3806820454561013],[113,31,68,0.3799492008539779],[113,31,69,0.3792182565581046],[113,31,70,0.3784909193366264],[113,31,71,0.37776884342551537],[113,31,72,0.3770536266348836],[113,31,73,0.37634680639373863],[113,31,74,0.3756498557331184],[113,31,75,0.37496417920768943],[113,31,76,0.3742911087557449],[113,31,77,0.3736318994976294],[113,31,78,0.3729877254725827],[113,31,79,0.3723596753140044],[113,32,64,0.38502445216979597],[113,32,65,0.38433276384753484],[113,32,66,0.38363667293542736],[113,32,67,0.3829380206688435],[113,32,68,0.3822386080445259],[113,32,69,0.38154019213393353],[113,32,70,0.3808444823351237],[113,32,71,0.380153136563187],[113,32,72,0.3794677573792346],[113,32,73,0.3787898880579571],[113,32,74,0.3781210085936976],[113,32,75,0.37746253164511945],[113,32,76,0.3768157984184037],[113,32,77,0.3761820744890087],[113,32,78,0.37556254556197927],[113,32,79,0.3749583131708081],[113,33,64,0.38705045280734207],[113,33,65,0.3863949449723323],[113,33,66,0.38573415495503016],[113,33,67,0.3850699232911687],[113,33,68,0.38440405123983246],[113,33,69,0.3837382971191163],[113,33,70,0.3830743725804624],[113,33,71,0.3824139388216904],[113,33,72,0.38175860273871737],[113,33,73,0.3811099130159905],[113,33,74,0.3804693561555736],[113,33,75,0.3798383524449651],[113,33,76,0.37921825186358826],[113,33,77,0.3786103299279809],[113,33,78,0.3780157834756742],[113,33,79,0.37743572638776474],[113,34,64,0.3889494106532959],[113,34,65,0.38833010416662783],[113,34,66,0.3877046624784566],[113,34,67,0.387074925102744],[113,34,68,0.3864426932181028],[113,34,69,0.38580972602580493],[113,34,70,0.3851777370466124],[113,34,71,0.38454839035644917],[113,34,72,0.3839232967609115],[113,34,73,0.3833040099086335],[113,34,74,0.3826920223434569],[113,34,75,0.3820887614954782],[113,34,76,0.3814955856109131],[113,34,77,0.3809137796208093],[113,34,78,0.38034455094859376],[113,34,79,0.3797890252564601],[113,35,64,0.3907186262194846],[113,35,65,0.3901355302707944],[113,35,66,0.3895454734141097],[113,35,67,0.3889502938142969],[113,35,68,0.38835179222082816],[113,35,69,0.38775172834816163],[113,35,70,0.3871518171951016],[113,35,71,0.3865537253031533],[113,35,72,0.3859590669538687],[113,35,73,0.38536940030520306],[113,35,74,0.384786223466831],[113,35,75,0.38421097051449066],[113,35,76,0.3836450074433029],[113,35,77,0.38308962806009056],[113,35,78,0.38254604981468726],[113,35,79,0.38201540957024127],[113,36,64,0.3923554984219496],[113,36,65,0.3918086101327421],[113,36,66,0.39125396326615997],[113,36,67,0.39069339430576405],[113,36,68,0.39012870321766957],[113,36,69,0.3895616498533193],[113,36,70,0.3889939502913975],[113,36,71,0.38842727311890124],[113,36,72,0.38786323565136427],[113,36,73,0.3873034000922517],[113,36,74,0.3867492696314786],[113,36,75,0.3862022844831162],[113,36,76,0.385663817862235],[113,36,77,0.38513517190091084],[113,36,78,0.38461757350338055],[113,36,79,0.3841121701403557],[113,37,64,0.3938575256833622],[113,37,65,0.3933468297385966],[113,37,66,0.3928276062928473],[113,37,67,0.3923016898115722],[113,37,68,0.3917708791180783],[113,37,69,0.3912369338186978],[113,37,70,0.3907015706672764],[113,37,71,0.39016645986898646],[113,37,72,0.38963322132346245],[113,37,73,0.3891034208072769],[113,37,74,0.388578566095709],[113,37,75,0.38806010302386995],[113,37,76,0.387549411487135],[113,37,77,0.3870478013809063],[113,37,78,0.38655650847969697],[113,37,79,0.38607669025553965],[113,38,64,0.3952223069839038],[113,38,65,0.3947477752913935],[113,38,66,0.3942639766123657],[113,38,67,0.39377274305308996],[113,38,68,0.3932758719296868],[113,38,69,0.39277512221571065],[113,38,70,0.39227221092922226],[113,38,71,0.39176880945936365],[113,38,72,0.391266539832432],[113,38,73,0.3907669709174697],[113,38,74,0.39027161457132575],[113,38,75,0.38978192172324944],[113,38,76,0.3892992783989674],[113,38,77,0.3888250016842696],[113,38,78,0.3883603356280917],[113,38,79,0.38790644708510036],[113,39,64,0.3964475428605254],[113,39,65,0.3960091342377019],[113,39,66,0.3955607492562429],[113,39,67,0.39510421731815565],[113,39,68,0.3946413338633786],[113,39,69,0.3941738568397672],[113,39,70,0.39370350311275426],[113,39,71,0.39323194481469803],[113,39,72,0.39276080563391236],[113,39,73,0.3922916570433983],[113,39,74,0.3918260144692324],[113,39,75,0.3913653333986694],[113,39,76,0.39091100542791585],[113,39,77,0.3904643542495939],[113,39,78,0.3900266315798887],[113,39,79,0.38959901302538186],[113,40,64,0.39753103635466014],[113,40,65,0.3971286962422486],[113,40,66,0.3967157011702894],[113,40,67,0.3962938774877607],[113,40,68,0.3958650183851139],[113,40,69,0.39543088038665114],[113,40,70,0.3949931797827685],[113,40,71,0.3945535890020799],[113,40,72,0.3941137329234162],[113,40,73,0.39367518512771493],[113,40,74,0.3932394640897629],[113,40,75,0.3928080293098426],[113,40,76,0.39238227738524184],[113,40,77,0.3919635380216475],[113,40,78,0.3915530699844132],[113,40,79,0.39115205698970623],[113,41,64,0.39847069390834056],[113,41,65,0.39810435411049855],[113,41,66,0.3977267121630693],[113,41,67,0.39733959100983773],[113,41,68,0.3969447812144628],[113,41,69,0.39654403747522415],[113,41,70,0.39613907507983825],[113,41,71,0.395731566300352],[113,41,72,0.3953231367281126],[113,41,73,0.394915361548828],[113,41,74,0.39450976175768093],[113,41,75,0.39410780031454473],[113,41,76,0.39371087823926365],[113,41,77,0.39332033064701755],[113,41,78,0.392937422723759],[113,41,79,0.3925633456417309],[113,42,64,0.3992645262087742],[113,42,65,0.3989341046592415],[113,42,66,0.39859176580194544],[113,42,67,0.39823932882020974],[113,42,68,0.3978785812698998],[113,42,69,0.397511275616511],[113,42,70,0.3971391257125345],[113,42,71,0.39676380321510796],[113,42,72,0.3963869339439527],[113,42,73,0.39601009417960475],[113,42,74,0.3956348069019109],[113,42,75,0.3952625379688326],[113,42,76,0.39489469223552265],[113,42,77,0.39453260961369224],[113,42,78,0.3941775610712606],[113,42,79,0.39383074457229117],[113,43,64,0.399910648981313],[113,43,65,0.39961604953512475],[113,43,66,0.3993089502566361],[113,43,67,0.3989911662106319],[113,43,68,0.398664481560795],[113,43,69,0.39833064612909835],[113,43,70,0.39799137189569256],[113,43,71,0.3976483294392922],[113,43,72,0.3973031443180644],[113,43,73,0.39695739339102637],[113,43,74,0.3966126010799245],[113,43,75,0.39627023557163554],[113,43,76,0.3959317049610561],[113,43,77,0.39559835333449894],[113,43,78,0.3952714567935861],[113,43,79,0.3949522194196447],[113,44,64,0.40040728373085843],[113,44,65,0.4001483959811666],[113,44,66,0.3998764590903214],[113,44,67,0.39959328364397007],[113,44,68,0.39930065002613935],[113,44,69,0.3990003050008871],[113,44,70,0.39869395823467074],[113,44,71,0.3983832787594411],[113,44,72,0.39806989137645843],[113,44,73,0.39775537300084285],[113,44,74,0.3974412489468289],[113,44,75,0.3971289891537648],[113,44,76,0.39682000435282405],[113,44,77,0.39651564217444624],[113,44,78,0.39621718319649873],[113,44,79,0.39592583693316413],[113,45,64,0.4007527584317041],[113,45,65,0.40052945755126296],[113,45,66,0.40029259199830797],[113,45,67,0.40004396751652],[113,45,68,0.39978536032001766],[113,45,69,0.39951851369721164],[113,45,70,0.39924513455561084],[113,45,71,0.3989668899075813],[113,45,72,0.3986854032970615],[113,45,73,0.3984022511672396],[113,45,74,0.39811895916916945],[113,45,75,0.3978369984113595],[113,45,76,0.3975577816503062],[113,45,77,0.39728265942198726],[113,45,78,0.3970129161143076],[113,45,79,0.3967497659805004],[113,46,64,0.4009455081657893],[113,46,65,0.40075765477264813],[113,46,66,0.40055575549421624],[113,46,67,0.40034161086743564],[113,46,68,0.40011699254378674],[113,46,69,0.3998836399152831],[113,46,70,0.3996432566816571],[113,46,71,0.3993975073587389],[113,46,72,0.3991480137280287],[113,46,73,0.39889635122746947],[113,46,74,0.3986440452833999],[113,46,75,0.3983925675837158],[113,46,76,0.39814333229221677],[113,46,77,0.3978976922041505],[113,46,78,0.3976569348429486],[113,46,79,0.39742227849815714],[113,47,64,0.40098407570938255],[113,47,65,0.40083151575634035],[113,47,66,0.40066446354371765],[113,47,67,0.4004847140352888],[113,47,68,0.40029403392499074],[113,47,69,0.4000941582849866],[113,47,70,0.3998867871551672],[113,47,71,0.3996735820740916],[113,47,72,0.3994561625513685],[113,47,73,0.3992361024814831],[113,47,74,0.399014926499053],[113,47,75,0.39879410627553635],[113,47,76,0.3985750567573738],[113,47,77,0.39835913234557385],[113,47,78,0.3981476230167359],[113,47,79,0.3979417503855157],[113,48,64,0.40086711206819636],[113,48,65,0.4007496767555645],[113,48,66,0.4006173381458189],[113,48,67,0.4004718852617631],[113,48,68,0.4003150794430101],[113,48,69,0.40014865101603386],[113,48,70,0.3999742959059124],[113,48,71,0.3997936721897646],[113,48,72,0.3996083965918823],[113,48,73,0.399420040920561],[113,48,74,0.3992301284466159],[113,48,75,0.3990401302236025],[113,48,76,0.39885146134972627],[113,48,77,0.3986654771714493],[113,48,78,0.39848346942878954],[113,48,79,0.3983066623423168],[113,49,64,0.40059337696092],[113,49,65,0.4005108826721448],[113,49,66,0.40041310986168016],[113,49,67,0.40030184124246393],[113,49,68,0.400178832401429],[113,49,69,0.40004580849145077],[113,49,70,0.3999044608652499],[113,49,71,0.39975644365125046],[113,49,72,0.3996033702713952],[113,49,73,0.39944680990092113],[113,49,74,0.3992882838700831],[113,49,75,0.39912926200784316],[113,49,76,0.3989711589275115],[113,49,77,0.3988153302543459],[113,49,78,0.39866306879510616],[113,49,79,0.39851560064956654],[113,50,64,0.40016173925118553],[113,50,65,0.40011398751087895],[113,50,66,0.40005061829098276],[113,50,67,0.39997340762486366],[113,50,68,0.3998841049471387],[113,50,69,0.3997844298074199],[113,50,70,0.3996760685262845],[113,50,71,0.39956067079347074],[113,50,72,0.39943984620829953],[113,50,73,0.3993151607623262],[113,50,74,0.39918813326421065],[113,50,75,0.3990602317068223],[113,50,76,0.39893286957656615],[113,50,77,0.398807402104937],[113,50,78,0.39868512246229904],[113,50,79,0.3985672578938922],[113,51,64,0.3995711773279519],[113,51,65,0.39955795478188],[113,51,66,0.39952881249583305],[113,51,67,0.39948551945336697],[113,51,68,0.3994298185361641],[113,51,69,0.39936342325946605],[113,51,70,0.3992880144500106],[113,51,71,0.3992052368664714],[113,51,72,0.39911669576240094],[113,51,73,0.39902395339167956],[113,51,74,0.39892852545646296],[113,51,75,0.3988318774976392],[113,51,76,0.3987354212277842],[113,51,77,0.3986405108066251],[113,51,78,0.3985484390590033],[113,51,79,0.39846043363534356],[113,52,64,0.39882077943431804],[113,52,65,0.3988418578508983],[113,52,66,0.3988467513722111],[113,52,67,0.3988372215615048],[113,52,68,0.3988150043462192],[113,52,69,0.39878180677498853],[113,52,70,0.39873930371743554],[113,52,71,0.3986891345067518],[113,52,72,0.3986328995250673],[113,52,73,0.39857215673160984],[113,52,74,0.39850841813364946],[113,52,75,0.398443146200235],[113,52,76,0.39837775021871646],[113,52,77,0.3983135825940578],[113,52,78,0.3982519350909358],[113,52,79,0.39819403501862993],[113,53,64,0.39790974394477197],[113,53,65,0.39796488023762644],[113,53,66,0.39800360396897017],[113,53,67,0.3980276689112638],[113,53,68,0.3980388036359995],[113,53,69,0.3980387082921493],[113,53,70,0.39802905132769467],[113,53,71,0.3980114661542375],[113,53,72,0.39798754775469136],[113,53,73,0.39795884923405445],[113,53,74,0.3979268783132619],[113,53,75,0.3978930937661208],[113,53,76,0.39785890179932404],[113,53,77,0.39782565237554735],[113,53,78,0.3977946354796248],[113,53,79,0.397767077327807],[113,54,64,0.39683737959084286],[113,54,65,0.3969263158619587],[113,54,66,0.39699864975435883],[113,54,67,0.3970561268795229],[113,54,68,0.3971004680511854],[113,54,69,0.39713336608509053],[113,54,70,0.3971564825421324],[113,54,71,0.39717144441487306],[113,54,72,0.3971798407574425],[113,54,73,0.3971832192588195],[113,54,74,0.3971830827594927],[113,54,75,0.3971808857115031],[113,54,76,0.3971780305818662],[113,54,77,0.3971758641993768],[113,54,78,0.3971756740447919],[113,54,79,0.3971786844843975],[113,55,64,0.3956031056351963],[113,55,65,0.3957255692382431],[113,55,66,0.39583127883010116],[113,55,67,0.39592197149163255],[113,55,68,0.39599935987718554],[113,55,69,0.3960651290355123],[113,55,70,0.39612093317437846],[113,55,71,0.3961683923688616],[113,55,72,0.3962090892133349],[113,55,73,0.3962445654171412],[113,55,74,0.3962763183439549],[113,55,75,0.39630579749483097],[113,55,76,0.39633440093494254],[113,55,77,0.39636347166400765],[113,55,78,0.3963942939304013],[113,55,79,0.3964280894889596],[113,56,64,0.39420645199416404],[113,56,65,0.3943621556175167],[113,56,66,0.3945009920930268],[113,56,67,0.39462468960212693],[113,56,68,0.3947349522386199],[113,56,69,0.39483345685060545],[113,56,70,0.3949218498264154],[113,56,71,0.3950017438245481],[113,56,72,0.3950747144476081],[113,56,73,0.3951422968602457],[113,56,74,0.3952059823511034],[113,56,75,0.3952672148387618],[113,56,76,0.3953273873216888],[113,56,77,0.39538783827219326],[113,56,78,0.395449847974379],[113,56,79,0.3955146348061046],[113,57,64,0.39264705930866595],[113,57,65,0.39283570107768273],[113,57,66,0.39300740134421286],[113,57,67,0.3931638790225335],[113,57,68,0.393306829245497],[113,57,69,0.3934379202273027],[113,57,70,0.39355879007059924],[113,57,71,0.3936710435179103],[113,57,72,0.39377624864738564],[113,57,73,0.3938759335128734],[113,57,74,0.3939715827283245],[113,57,75,0.3940646339965149],[113,57,76,0.3941564745820949],[113,57,77,0.39424843772896445],[113,57,78,0.39434179902197153],[113,57,79,0.3944377726929371],[113,58,64,0.3909246789635864],[113,58,65,0.39114594256169344],[113,58,66,0.391350229345694],[113,58,67,0.391539248596335],[113,58,68,0.39171468608614923],[113,58,69,0.39187820096290027],[113,58,70,0.3920314225776885],[113,58,71,0.39217594725770843],[113,58,72,0.39231333502366106],[113,58,73,0.3924451062518166],[113,58,74,0.392572738280739],[113,58,75,0.39269766196265643],[113,58,76,0.3928212581594889],[113,58,77,0.39294485418353076],[113,58,78,0.39306972018278485],[113,58,79,0.39319706547095407],[113,59,64,0.3890391730555861],[113,59,65,0.3892927278637143],[113,59,66,0.3895293098247247],[113,59,67,0.38975061822106705],[113,59,68,0.38995832906690164],[113,59,69,0.3901540920120368],[113,59,70,0.39033952719086373],[113,59,71,0.39051622201627867],[113,59,72,0.3906857279185977],[113,59,73,0.390849557029456],[113,59,74,0.3910091788107074],[113,59,75,0.3911660166283053],[113,59,76,0.3913214442711762],[113,59,77,0.3914767824150859],[113,59,78,0.3916332950314928],[113,59,79,0.3917921857413946],[113,60,64,0.38699051430929216],[113,60,65,0.3872760155632206],[113,60,66,0.38754458742553927],[113,60,67,0.3877979188174987],[113,60,68,0.38803767559842844],[113,60,69,0.38826549748997624],[113,60,70,0.3884829949456885],[113,60,71,0.3886917459659226],[113,60,72,0.3888932928580935],[113,60,73,0.3890891389422492],[113,60,74,0.3892807452019904],[113,60,75,0.38946952688071274],[113,60,76,0.38965685002318695],[113,60,77,0.38984402796247447],[113,60,78,0.39003231775217284],[113,60,79,0.3902229165439985],[113,61,64,0.3847787859419567],[113,61,65,0.38509587490710906],[113,61,66,0.3853961176086932],[113,61,67,0.3856811922459785],[113,61,68,0.385952754128875],[113,61,69,0.38621243262227545],[113,61,70,0.3864618280360908],[113,61,71,0.38670250846096677],[113,61,72,0.3869360065496854],[113,61,73,0.38716381624424506],[113,61,74,0.38738738944863577],[113,61,75,0.3876081326472869],[113,61,76,0.3878274034692031],[113,61,77,0.38804650719778555],[113,61,78,0.38826669322633417],[113,61,79,0.38848915145923685],[113,62,64,0.38240418147655003],[113,62,65,0.3827524856397933],[113,62,66,0.3830840664979571],[113,62,67,0.3834005911699171],[113,62,68,0.3837037040237171],[113,62,69,0.3839950236408074],[113,62,70,0.3842761397263344],[113,62,71,0.38454860996546714],[113,62,72,0.3848139568257678],[113,62,73,0.3850736643055961],[113,62,74,0.38532917462856703],[113,62,75,0.38558188488403744],[113,62,76,0.38583314361363885],[113,62,77,0.3860842473438512],[113,62,78,0.38633643706461607],[113,62,79,0.3865908946539932],[113,63,64,0.37986700450321953],[113,63,65,0.38024613778121746],[113,63,66,0.3806087106746946],[113,63,67,0.38095637886633815],[113,63,68,0.3812907753922926],[113,63,69,0.3816135076260772],[113,63,70,0.3819261542089204],[113,63,71,0.38223026192649545],[113,63,72,0.3825273425320634],[113,63,73,0.3828188695160118],[113,63,74,0.38310627482181475],[113,63,75,0.38339094550838204],[113,63,76,0.38367422035881926],[113,63,77,0.3839573864355931],[113,63,78,0.3842416755820999],[113,63,79,0.38452826087064085],[113,64,64,0.37716766838923843],[113,64,65,0.37757723135290633],[113,64,66,0.3779704369198432],[113,64,67,0.3783489289836175],[113,64,68,0.37871432886112094],[113,64,69,0.379068232295942],[113,64,70,0.3794122064085279],[113,64,71,0.37974778659311775],[113,64,72,0.3800764733614535],[113,64,73,0.3803997291332558],[113,64,74,0.38071897497349483],[113,64,75,0.3810355872764172],[113,64,76,0.381350894396356],[113,64,77,0.38166617322531626],[113,64,78,0.3819826457173336],[113,64,79,0.38230147535961145],[113,65,64,0.37430669593733973],[113,65,65,0.3747462760519517],[113,65,66,0.3751697419034007],[113,65,67,0.3755787252463106],[113,65,68,0.37597483529391246],[113,65,69,0.376359655740642],[113,65,70,0.3767347417319016],[113,65,71,0.3771016167809722],[113,65,72,0.37746176963307937],[113,65,73,0.3778166510766007],[113,65,74,0.37816767070144536],[113,65,75,0.3785161936045669],[113,65,76,0.3788635370426363],[113,65,77,0.3792109670318661],[113,65,78,0.3795596948949863],[113,65,79,0.3799108737553746],[113,66,64,0.3712847189925246],[113,66,65,0.3717538908730224],[113,66,66,0.3722072318214985],[113,66,67,0.3726463611071521],[113,66,68,0.37307287545835344],[113,66,69,0.373488346104224],[113,66,70,0.37389431576376636],[113,66,71,0.37429229558252614],[113,66,72,0.37468376201679116],[113,66,73,0.37507015366531504],[113,66,74,0.37545286804859884],[113,66,75,0.37583325833568554],[113,66,76,0.3762126300184999],[113,66,77,0.37659223753372384],[113,66,78,0.3769732808322039],[113,66,79,0.3773569018959],[113,67,64,0.36810247799721374],[113,67,65,0.368600803678267],[113,67,66,0.36908362198093897],[113,67,67,0.36955253934610444],[113,67,68,0.3700091396395386],[113,67,69,0.3704549812122326],[113,67,70,0.3708915939086483],[113,67,71,0.37132047602289364],[113,67,72,0.3717430912028259],[113,67,73,0.3721608653020684],[113,67,74,0.3725751831799756],[113,67,75,0.37298738544949905],[113,67,76,0.3733987651729899],[113,67,77,0.3738105645059253],[113,67,78,0.37422397128855744],[113,67,79,0.3746401155854926],[113,68,64,0.3647608214948966],[113,68,65,0.3652878507152635],[113,68,66,0.36579973633134333],[113,68,67,0.36629807161659966],[113,68,68,0.36678442720020166],[113,68,69,0.3672603481458177],[113,68,70,0.36772735097874465],[113,68,71,0.36818692066135295],[113,68,72,0.36864050751685695],[113,68,73,0.36908952410139073],[113,68,74,0.3695353420244323],[113,68,75,0.36997928871752184],[113,68,76,0.3704226441513122],[113,68,77,0.3708666375009398],[113,68,78,0.3713124437597138],[113,68,79,0.37176118030113026],[113,69,64,0.3612607055822135],[113,69,65,0.3618159760829522],[113,69,66,0.36235650694485083],[113,69,67,0.36288387793891824],[113,69,68,0.3633996460876819],[113,69,69,0.36390534276219544],[113,69,70,0.36440247072778426],[113,69,71,0.36489250113850913],[113,69,72,0.3653768704803551],[113,69,73,0.36585697746313034],[113,69,74,0.3663341798611126],[113,69,75,0.3668097913023919],[113,69,76,0.3672850780069482],[113,69,77,0.3677612554734504],[113,69,78,0.3682394851147747],[113,69,79,0.3687208708422509],[113,70,64,0.3576031933093773],[113,70,65,0.35818623114545717],[113,70,66,0.35875497344327406],[113,70,67,0.3593109861406078],[113,70,68,0.35985581228753416],[113,70,69,0.36039096916137386],[113,70,70,0.3609179453307897],[113,70,71,0.36143819766900787],[113,70,72,0.3619531483161739],[113,70,73,0.3624641815908235],[113,70,74,0.36297264085051084],[113,70,75,0.36347982530153977],[113,70,76,0.36398698675783725],[113,70,77,0.36449532634895576],[113,70,78,0.36500599117720334],[113,70,79,0.3655200709239079],[113,71,64,0.3537894540291032],[113,71,65,0.3543997738939659],[113,71,66,0.3549962823728784],[113,71,67,0.3555805312441107],[113,71,68,0.3561540492239478],[113,71,69,0.35671833909930406],[113,71,70,0.35727487480989806],[113,71,71,0.3578250984799649],[113,71,72,0.3583704173995166],[113,71,73,0.3589122009551294],[113,71,74,0.3594517775103049],[113,71,75,0.3599904312353437],[113,71,76,0.36052939888677715],[113,71,77,0.3610698665363397],[113,71,78,0.36161296624948297],[113,71,79,0.3621597727134378],[113,72,64,0.3498207626939733],[113,72,65,0.3504578682565914],[113,72,66,0.35108168652671284],[113,72,67,0.35169375480152565],[113,72,68,0.35229558710690156],[113,72,69,0.35288867134738705],[113,72,70,0.35347446640617564],[113,72,71,0.35405439919503795],[113,72,72,0.35462986165421617],[113,72,73,0.35520220770226585],[113,72,74,0.35577275013588994],[113,72,75,0.35634275747970456],[113,72,76,0.35691345078598047],[113,72,77,0.3574860003843455],[113,72,78,0.35806152258144686],[113,72,79,0.35864107631057984],[113,73,64,0.34569849910212613],[113,73,65,0.3463618833561132],[113,73,66,0.34701254421438305],[113,73,67,0.3476520041763992],[113,73,68,0.34828176222595125],[113,73,69,0.3489032909982315],[113,73,70,0.34951803389731806],[113,73,71,0.35012740216403915],[113,73,72,0.3507327718942272],[113,73,73,0.3513354810073418],[113,73,74,0.35193682616551386],[113,73,75,0.35253805964294094],[113,73,76,0.3531403861456856],[113,73,77,0.35374495958185753],[113,73,78,0.3543528797821803],[113,73,79,0.35496518917094966],[113,74,64,0.3414241470914691],[113,74,65,0.3421132927157852],[113,74,66,0.3427903184794629],[113,74,67,0.3434567317727365],[113,74,68,0.34411401619083615],[113,74,69,0.3447636287178503],[113,74,70,0.3454069968614252],[113,74,71,0.3460455157382748],[113,74,72,0.3466805451105109],[113,74,73,0.3473134063727701],[113,74,74,0.3479453794901931],[113,74,75,0.3485776998871839],[113,74,76,0.349211555287001],[113,74,77,0.3498480825021635],[113,74,78,0.35048836417566986],[113,74,79,0.3511334254730384],[113,75,64,0.33699929368232373],[113,75,65,0.3377136734131304],[113,75,66,0.3384165762644553],[113,75,67,0.3391094942111477],[113,75,68,0.3397938951188244],[113,75,69,0.34047121994421287],[113,75,70,0.34114287988676695],[113,75,71,0.3418102534915269],[113,75,72,0.34247468370323453],[113,75,73,0.3431374748716786],[113,75,74,0.3437998897083304],[113,75,75,0.3444631461941904],[113,75,76,0.3451284144389034],[113,75,77,0.34579681349112273],[113,75,78,0.3464694081001221],[113,75,79,0.34714720542866395],[113,76,64,0.3324256281683851],[113,76,65,0.3331647051815969],[113,76,66,0.3338929875231855],[113,76,67,0.3346119514520109],[113,76,68,0.33532304876867514],[113,76,69,0.3360277040320346],[113,76,70,0.3367273117274241],[113,76,71,0.33742323338656505],[113,76,72,0.33811679465916844],[113,76,73,0.33880928233620766],[113,76,74,0.3395019413249213],[113,76,75,0.3401959715754661],[113,76,76,0.3408925249592789],[113,76,77,0.3415927020991265],[113,76,78,0.3422975491508429],[113,76,79,0.3430080545367632],[113,77,64,0.32770494115621496],[113,77,65,0.3284681694602987],[113,77,66,0.32922132428084283],[113,77,67,0.3299658658658672],[113,77,68,0.33070322962143583],[113,77,69,0.3314348233440196],[113,77,70,0.3321620244050155],[113,77,71,0.33288617688739497],[113,77,72,0.33360858867449095],[113,77,73,0.33433052849089884],[113,77,74,0.33505322289555317],[113,77,75,0.335777853226898],[113,77,76,0.33650555250020986],[113,77,77,0.3372374022570547],[113,77,78,0.3379744293668757],[113,77,79,0.33871760278072277],[113,78,64,0.3228391235531686],[113,78,65,0.3236259483917383],[113,78,66,0.32440345964157236],[113,78,67,0.3251731012509506],[113,78,68,0.32593629190797446],[113,78,69,0.3266944222884564],[113,78,70,0.3274488522564156],[113,78,71,0.3282009080171514],[113,78,72,0.3289518792229047],[113,78,73,0.32970301603108243],[113,78,74,0.3304555261151071],[113,78,75,0.33121057162780776],[113,78,76,0.33196926611741456],[113,78,77,0.3327326713961348],[113,78,78,0.33350179436130956],[113,78,79,0.3342775837691608],[113,79,64,0.3178301655036241],[113,79,65,0.31864002376738215],[113,79,66,0.31944136674348766],[113,79,67,0.32023562179772336],[113,79,68,0.3210241905831201],[113,79,69,0.3218084463030424],[113,79,70,0.32258973092733645],[113,79,71,0.32336935236150754],[113,79,72,0.32414858156894155],[113,79,73,0.3249286496461399],[113,79,74,0.3257107448510349],[113,79,75,0.3264960095843009],[113,79,76,0.32728553732372007],[113,79,77,0.32808036951158526],[113,79,78,0.3288814923951361],[113,79,79,0.32968983382003914],[113,80,64,0.31268015527375664],[113,80,65,0.3135124759213316],[113,80,66,0.3143371176613438],[113,80,67,0.31515549100065576],[113,80,68,0.31596898024664843],[113,80,69,0.3167789407851702],[113,80,70,0.3175866963120062],[113,80,71,0.3183935360178348],[113,80,72,0.3192007117266855],[113,80,73,0.32000943498786844],[113,80,74,0.3208208741214434],[113,80,75,0.32163615121713945],[113,80,76,0.3224563390867905],[113,80,77,0.32328245817026313],[113,80,78,0.3241154733948768],[113,80,79,0.32495629098832546],[113,81,64,0.30739127808474576],[113,81,65,0.3082454825719737],[113,81,66,0.30909288225675935],[113,81,67,0.3099348705171382],[113,81,68,0.31077281401100143],[113,81,69,0.31160804996856795],[113,81,70,0.3124418834388395],[113,81,71,0.3132755844900046],[113,81,72,0.314110385363807],[113,81,73,0.31494747758384534],[113,81,74,0.315788009017877],[113,81,75,0.31663308089403264],[113,81,76,0.3174837447710089],[113,81,77,0.3183409994622163],[113,81,78,0.31920578791387977],[113,81,79,0.32007899403710527],[113,82,64,0.3019658148942757],[113,82,65,0.3028413176114776],[113,82,66,0.303710926975849],[113,82,67,0.30457601897339037],[113,82,68,0.3054379423156067],[113,82,69,0.3062980157461579],[113,82,70,0.3071575253019591],[113,82,71,0.3080177215286972],[113,82,72,0.30887981665077513],[113,82,73,0.30974498169565434],[113,82,74,0.31061434357266904],[113,82,75,0.31148898210621434],[113,82,76,0.3123699270233807],[113,82,77,0.31325815489600684],[113,82,78,0.3141545860371549],[113,82,79,0.315060081352014],[113,83,64,0.29640614112658986],[113,83,65,0.297302349843393],[113,83,66,0.2981936135945266],[113,83,67,0.2990812907176235],[113,83,68,0.2999667116880499],[113,83,69,0.3008511764393863],[113,83,70,0.3017359516388279],[113,83,71,0.3026222679174711],[113,83,72,0.303511317055498],[113,83,73,0.304404249122227],[113,83,74,0.30530216957110706],[113,83,75,0.30620613628955423],[113,83,76,0.30711715660370387],[113,83,77,0.30803618423805257],[113,83,78,0.30896411622998987],[113,83,79,0.3099017897992299],[113,84,64,0.29071472535097953],[113,84,65,0.29163104166823256],[113,84,66,0.29254339791135875],[113,84,67,0.2934531345203375],[113,84,68,0.2943615634519847],[113,84,69,0.29526996551391016],[113,84,70,0.29617958765386954],[113,84,71,0.29709164020447515],[113,84,72,0.29800729408327664],[113,84,73,0.2989276779481829],[113,84,74,0.2998538753083007],[113,84,75,0.30078692159008735],[113,84,76,0.301727801158894],[113,84,77,0.30267744429587085],[113,84,78,0.303636724130236],[113,84,79,0.3046064535269177],[113,85,64,0.28489412790855373],[113,85,65,0.2858299477168858],[113,85,66,0.2867628283878164],[113,85,67,0.2876940922216018],[113,85,68,0.2886250323816274],[113,85,69,0.2895569102414872],[113,85,70,0.2904909526879327],[113,85,71,0.2914283493796559],[113,85,72,0.29237024996192307],[113,85,73,0.2933177612370213],[113,85,74,0.2942719442906032],[113,85,75,0.2952338115738191],[113,85,76,0.2962043239413171],[113,85,77,0.29718438764508354],[113,85,78,0.29817485128412113],[113,85,79,0.29917650270997964],[113,86,64,0.2789469994875756],[113,86,65,0.27990171343214787],[113,86,66,0.2808545447362097],[113,86,67,0.28180679732560154],[113,86,68,0.2827597453031196],[113,86,69,0.28371463030835314],[113,86,70,0.2846726588338735],[113,86,71,0.28563499949773735],[113,86,72,0.28660278027231945],[113,86,73,0.2875770856694385],[113,86,74,0.28855895388186137],[113,86,75,0.2895493738810745],[113,86,76,0.2905492824714031],[113,86,77,0.2915595613004503],[113,86,78,0.29258103382585476],[113,86,79,0.29361446223837984],[113,87,64,0.27287607964723126],[113,87,65,0.2738490735982315],[113,87,66,0.27482127645516996],[113,87,67,0.27579397354231816],[113,87,68,0.2767684196426249],[113,87,69,0.2777458363699493],[113,87,70,0.27872740949812846],[113,87,71,0.27971428624684197],[113,87,72,0.2807075725242893],[113,87,73,0.28170833012664337],[113,87,74,0.2827175738943648],[113,87,75,0.28373626882526687],[113,87,76,0.28476532714441094],[113,87,77,0.2858056053308048],[113,87,78,0.2868579011009024],[113,87,79,0.2879229503489181],[113,88,64,0.26668419528967036],[113,88,65,0.2676748508180997],[113,88,66,0.2686658413125237],[113,88,67,0.26965843327618333],[113,88,68,0.2706538619210026],[113,88,69,0.27165332855185004],[113,88,70,0.2726579979081203],[113,88,71,0.2736689954625984],[113,88,72,0.27468740467762404],[113,88,73,0.2757142642185153],[113,88,74,0.2767505651243415],[113,88,75,0.27779724793593075],[113,88,76,0.278855199781195],[113,88,77,0.27992525141774205],[113,88,78,0.2810081742327769],[113,88,79,0.28210467720030186],[113,89,64,0.26037425908064105],[113,89,65,0.26138195393894276],[113,89,66,0.26239114377587414],[113,89,67,0.2634030760620265],[113,89,68,0.2644189661953755],[113,89,69,0.2654399948971996],[113,89,70,0.2664673055658094],[113,89,71,0.26750200158804804],[113,89,72,0.2685451436085773],[113,89,73,0.2695977467569146],[113,89,74,0.270660777832307],[113,89,75,0.2717351524463273],[113,89,76,0.272821732123276],[113,89,77,0.27392132135836034],[113,89,78,0.2750346646336494],[113,89,79,0.2761624433918177],[113,90,64,0.25394926781844984],[113,90,65,0.2549733764255284],[113,90,66,0.2560001733906252],[113,90,67,0.25703088694804954],[113,90,68,0.2580667124473257],[113,90,69,0.25910880976039663],[113,90,70,0.2601583006471304],[113,90,71,0.261216266079087],[113,90,72,0.2622837435215649],[113,90,73,0.2633617241738859],[113,90,74,0.2644511501680102],[113,90,75,0.26555291172536355],[113,90,76,0.266667844271962],[113,90,77,0.26779672551180334],[113,90,78,0.2689402724585267],[113,90,79,0.2700991384253508],[113,91,64,0.24741230075145307],[113,91,65,0.2484521946816355],[113,91,66,0.24949600310565423],[113,91,67,0.25054493482603224],[113,91,68,0.251600164917925],[113,91,69,0.2526628321472335],[113,91,70,0.2537340363475158],[113,91,71,0.2548148357556511],[113,91,72,0.2559062443062772],[113,91,73,0.25700922888495753],[113,91,74,0.25812470654017494],[113,91,75,0.25925354165402803],[113,91,76,0.260396543071719],[113,91,77,0.26155446118980213],[113,91,78,0.2627279850031925],[113,91,79,0.2639177391109475],[113,92,64,0.24076651784379313],[113,92,65,0.24182156631928003],[113,92,66,0.24288178754634587],[113,92,67,0.24394837070848668],[113,92,68,0.24502247038931307],[113,92,69,0.24610520400119948],[113,92,70,0.2471976491732232],[113,92,71,0.24830084109835485],[113,92,72,0.24941576983991418],[113,92,73,0.25054337759725276],[113,92,74,0.25168455593075956],[113,92,75,0.2528401429460611],[113,92,76,0.25401092043751167],[113,92,77,0.2551976109909373],[113,92,78,0.25640087504563636],[113,92,79,0.2576213079156484],[113,93,64,0.23401515798972355],[113,93,65,0.23508472837608044],[113,93,66,0.23616076123533128],[113,93,67,0.23724442595309708],[113,93,68,0.23833685641316552],[113,93,69,0.23943914843629505],[113,93,70,0.24055235717880746],[113,93,71,0.24167749449092793],[113,93,72,0.24281552623488803],[113,93,73,0.24396736956275258],[113,93,74,0.24513389015406686],[113,93,75,0.24631589941319537],[113,93,76,0.24751415162644747],[113,93,77,0.2487293410789545],[113,93,78,0.24996209913130044],[113,93,79,0.25121299125591773],[113,94,64,0.22716153717636395],[113,94,65,0.22824499548060204],[113,94,66,0.2293362367607726],[113,94,67,0.2304364104342935],[113,94,68,0.23154662948589436],[113,94,69,0.23266796791619587],[113,94,70,0.23380145815057737],[113,94,71,0.23494808840829032],[113,94,72,0.2361088000318337],[113,94,73,0.23728448477655179],[113,94,74,0.2384759820605517],[113,94,75,0.23968407617481127],[113,94,76,0.24090949345357132],[113,94,77,0.24215289940498103],[113,94,78,0.24341489580199208],[113,94,79,0.24469601773352048],[113,95,64,0.2202090465947084],[113,95,65,0.221305757965505],[113,95,66,0.22241160289201975],[113,95,67,0.22352771066177923],[113,95,68,0.22465517317040623],[113,95,69,0.2257950423795937],[113,95,70,0.22694832773586723],[113,95,71,0.22811599355009413],[113,95,72,0.22929895633775535],[113,95,73,0.23049808211993894],[113,95,74,0.23171418368515445],[113,95,75,0.23294801781183758],[113,95,76,0.23420028245164004],[113,95,77,0.23547161387347162],[113,95,78,0.23676258376829318],[113,95,79,0.23807369631467623],[113,96,64,0.21316115069922967],[113,96,65,0.21427047992883685],[113,96,66,0.215390322642977],[113,96,67,0.2165217878463535],[113,96,68,0.21766594616475698],[113,96,69,0.21882382731205244],[113,96,70,0.21999641751845753],[113,96,71,0.22118465692006722],[113,96,72,0.22238943690964436],[113,96,73,0.2236115974486326],[113,96,74,0.22485192434049256],[113,96,75,0.2261111464652292],[113,96,76,0.22738993297520635],[113,96,77,0.22868889045221502],[113,96,78,0.23000856002579412],[113,96,79,0.2313494144528196],[113,97,64,0.20602138521591526],[113,97,65,0.20714269724330706],[113,97,66,0.2082759312830205],[113,97,67,0.20942217591286882],[113,97,68,0.21058248031754034],[113,97,69,0.21175785176421685],[113,97,70,0.2129492530399851],[113,97,71,0.21415759985099864],[113,97,72,0.21538375818340777],[113,97,73,0.21662854162601392],[113,97,74,0.2178927086547512],[113,97,75,0.2191769598788607],[113,97,76,0.22048193524885568],[113,97,77,0.2218082112262419],[113,97,78,0.2231562979149947],[113,97,79,0.22452663615480578],[113,98,64,0.19879335509854704],[113,98,65,0.19992601551335476],[113,98,66,0.20107203429527368],[113,98,67,0.20223247946013137],[113,98,68,0.20340837858982522],[113,98,69,0.2046007163161886],[113,98,70,0.20581043176715605],[113,98,71,0.2070384159751806],[113,98,72,0.20828550924792405],[113,98,73,0.20955249850117308],[113,98,74,0.21084011455409019],[113,98,75,0.2121490293866568],[113,98,76,0.21347985335941266],[113,98,77,0.21483313239545443],[113,98,78,0.21620934512469342],[113,98,79,0.2176088999903883],[113,99,64,0.19148073243358607],[113,99,65,0.19262410798037077],[113,99,66,0.19378230528260587],[113,99,67,0.1949563716681085],[113,99,68,0.19614731296399734],[113,99,69,0.19735609098842588],[113,99,70,0.19858362100511806],[113,99,71,0.1998307691406614],[113,99,72,0.20109834976457713],[113,99,73,0.20238712283212018],[113,99,74,0.203697791189918],[113,99,75,0.20503099784430656],[113,99,76,0.20638732319246672],[113,99,77,0.20776728221632357],[113,99,78,0.20917132163920937],[113,99,79,0.21059981704530673],[113,100,64,0.18408725429348777],[113,100,65,0.18524071337590015],[113,100,66,0.1864104838211772],[113,100,67,0.18759759215226604],[113,100,68,0.188803022299336],[113,100,69,0.19002771309899597],[113,100,70,0.19127255575682084],[113,100,71,0.1925383912731395],[113,100,72,0.19382600783210402],[113,100,73,0.19513613815399378],[113,100,74,0.19646945681086403],[113,100,75,0.19782657750539567],[113,100,76,0.19920805031304933],[113,100,77,0.20061435888748846],[113,100,78,0.20204591762927115],[113,100,79,0.20350306881782454],[113,101,64,0.17661672053825503],[113,101,65,0.17777963372263128],[113,101,66,0.17896037326133768],[113,101,67,0.18015994476484615],[113,101,68,0.18137931013413017],[113,101,69,0.18261938506698666],[113,101,70,0.18388103652817261],[113,101,71,0.1851650801833063],[113,101,72,0.18647227779655712],[113,101,73,0.1878033345920732],[113,101,74,0.1891588965792605],[113,101,75,0.19053954784176647],[113,101,76,0.19194580779027387],[113,101,77,0.19337812837907004],[113,101,78,0.19483689128638565],[113,101,79,0.19632240505852683],[113,102,64,0.1690729915656018],[113,102,65,0.17024473208354662],[113,102,66,0.1714358384762552],[113,102,67,0.17264729534345563],[113,102,68,0.173880042434708],[113,102,69,0.17513497216245022],[113,102,70,0.17641292707936312],[113,102,71,0.17771469732000883],[113,102,72,0.1790410180067587],[113,102,73,0.18039256661996628],[113,102,74,0.18176996033249765],[113,102,75,0.18317375330846902],[113,102,76,0.18460443396630244],[113,102,77,0.18606242220605834],[113,102,78,0.18754806660104817],[113,102,79,0.18906164155373956],[113,103,64,0.1614599860095483],[113,103,65,0.16263993025905282],[113,103,66,0.16384080355808772],[113,103,67,0.16506356940678574],[113,103,68,0.1663091452912],[113,103,69,0.16757840020269715],[113,103,70,0.16887215212217405],[113,103,71,0.17019116546905072],[113,103,72,0.17153614851506094],[113,103,73,0.1729077507627902],[113,103,74,0.1743065602890782],[113,103,75,0.17573310105313195],[113,103,76,0.1771878301694622],[113,103,77,0.17867113514560434],[113,103,78,0.18018333108461865],[113,103,79,0.18172465785239506],[113,104,64,0.15378167838724716],[113,104,65,0.15496920643189238],[113,104,66,0.1561792494615084],[113,104,67,0.15741274979726616],[113,104,68,0.15867060255983584],[113,104,69,0.15995365319474697],[113,104,70,0.16126269496308027],[113,104,71,0.16259846639743886],[113,104,72,0.16396164872322266],[113,104,73,0.16535286324515436],[113,104,74,0.16677266869917406],[113,104,75,0.16822155856955096],[113,104,76,0.16969995837132146],[113,104,77,0.1712082228980158],[113,104,78,0.17274663343467178],[113,104,79,0.17431539493615428],[113,105,64,0.1460420966944272],[113,105,65,0.147236592760223],[113,105,66,0.14845521159495922],[113,105,67,0.1496988742710355],[113,105,68,0.1509684534521616],[113,105,69,0.1522647709243134],[113,105,70,0.15358859509252304],[113,105,71,0.15494063844345307],[113,105,72,0.15632155497377787],[113,105,73,0.15773193758432075],[113,105,74,0.1591723154400641],[113,105,75,0.1606431512958808],[113,105,76,0.1621448387880951],[113,105,77,0.1636776996918386],[113,105,78,0.16524198114419447],[113,105,79,0.1668378528331545],[113,106,64,0.13824531994926603],[113,106,65,0.13944617291867367],[113,106,66,0.14067277735945538],[113,106,67,0.1419260330350423],[113,106,68,0.1432067900709872],[113,106,69,0.14451584649114113],[113,106,70,0.14585394572016963],[113,106,71,0.14722177405235543],[113,106,72,0.1486199580867127],[113,106,73,0.15004906212835967],[113,106,74,0.1515095855562682],[113,106,75,0.15300196015723755],[113,106,76,0.15452654742620187],[113,106,77,0.15608363583283502],[113,106,78,0.1576734380544486],[113,106,79,0.15929608817520408],[113,107,64,0.13039547568449178],[113,107,65,0.131602079587181],[113,107,66,0.1328360836347301],[113,107,67,0.13409836623107563],[113,107,68,0.13538975489286675],[113,107,69,0.13671102379049427],[113,107,70,0.1380628912559601],[113,107,71,0.13944601725753958],[113,107,72,0.1408610008412532],[113,107,73,0.14230837753910147],[113,107,74,0.14378861674418097],[113,107,75,0.14530211905252366],[113,107,76,0.1468492135717745],[113,107,77,0.1484301551966683],[113,107,78,0.1500451218513026],[113,107,79,0.1516942116982275],[113,108,64,0.12249673738810485],[113,108,65,0.1237084918879946],[113,108,66,0.12494931421312072],[113,108,67,0.12622006136711733],[113,108,68,0.12752153819750062],[113,108,69,0.12885449494118312],[113,108,70,0.1302196247373303],[113,108,71,0.1316175611075085],[113,108,72,0.13304887540314903],[113,108,73,0.13451407422027095],[113,108,74,0.13601359678159036],[113,108,75,0.13754781228585283],[113,108,76,0.13911701722450592],[113,108,77,0.1407214326656716],[113,108,78,0.1423612015054171],[113,108,79,0.14403638568634336],[113,109,64,0.11455332189253031],[113,109,65,0.11576963277066266],[113,109,66,0.11701669718099922],[113,109,67,0.11829535069582497],[113,109,68,0.11960637544387065],[113,109,69,0.12095049765994648],[113,109,70,0.12232838520242123],[113,109,71,0.1237406450384923],[113,109,72,0.12518782069726875],[113,109,73,0.1266703896906174],[113,109,74,0.12818876090189296],[113,109,75,0.12974327194239188],[113,109,76,0.13133418647564649],[113,109,77,0.13296169150951886],[113,109,78,0.13462589465609337],[113,109,79,0.13632682135938706],[113,110,64,0.10656948671199318],[113,110,65,0.10778976634478948],[113,110,66,0.10904250224754197],[113,110,67,0.11032850853993909],[113,110,68,0.1116485445929003],[113,110,69,0.11300331258197344],[113,110,70,0.11439345500907105],[113,110,71,0.11581955219249918],[113,110,72,0.11728211972529651],[113,110,73,0.11878160590183479],[113,110,74,0.12031838911280385],[113,110,75,0.12189277520841524],[113,110,76,0.12350499482994842],[113,110,77,0.12515520070959274],[113,110,78,0.1268434649385881],[113,110,79,0.12856977620368032],[113,111,64,0.09854952732851985],[113,111,65,0.09977319516096972],[113,111,66,0.10103103802124502],[113,111,67,0.1023238485650168],[113,111,68,0.10365236337704514],[113,111,69,0.10501726052797744],[113,111,70,0.106419157099988],[113,111,71,0.10785860668120256],[113,111,72,0.1093360968289338],[113,111,73,0.11085204650167163],[113,111,74,0.11240680345995618],[113,111,75,0.11400064163596768],[113,111,76,0.11563375847195279],[113,111,77,0.11730627222744594],[113,111,78,0.11901821925528472],[113,111,79,0.12076955124643768],[113,112,64,0.09049777442636797],[113,112,65,0.09172425743970053],[113,112,66,0.09298664923397998],[113,112,67,0.09428572099929589],[113,112,68,0.09562218651661158],[113,112,69,0.09699669971761604],[113,112,70,0.09840985221390836],[113,112,71,0.09986217079546478],[113,112,72,0.10135411489840856],[113,112,73,0.10288607404203237],[113,112,74,0.10445836523519725],[113,112,75,0.10607123035194194],[113,112,76,0.10772483347642559],[113,112,77,0.10941925821715998],[113,112,78,0.11115450499052876],[113,112,79,0.1129304882736174],[113,113,64,0.08241859107467747],[113,113,65,0.08364732424806282],[113,113,66,0.08491371391239261],[113,113,67,0.08621850980047957],[113,113,68,0.08756240288260164],[113,113,69,0.08894602292905496],[113,113,70,0.09036993604253563],[113,113,71,0.09183464216029341],[113,113,72,0.09334057252608513],[113,113,73,0.09488808713187008],[113,113,74,0.09647747212937513],[113,113,75,0.09810893721136538],[113,113,76,0.09978261296273822],[113,113,77,0.10149854818140042],[113,113,78,0.10325670716892582],[113,113,79,0.10505696699101619],[113,114,64,0.07431636985877371],[113,114,65,0.07554679662460684],[113,114,66,0.07681664049706527],[113,114,67,0.07812662976987533],[113,114,68,0.07947743260651091],[113,114,69,0.0808696546051057],[113,114,70,0.08230383633368465],[113,114,71,0.08378045083565794],[113,114,72,0.08529990110560493],[113,114,73,0.0868625175352905],[113,114,74,0.08846855533004233],[113,114,75,0.09011819189532311],[113,114,76,0.09181152419361721],[113,114,77,0.0935485660715904],[113,114,78,0.09532924555752154],[113,114,79,0.09715340212902634],[113,115,64,0.06619552995975941],[113,115,65,0.06742710265207413],[113,115,66,0.06869986490908875],[113,115,67,0.07001452361352284],[113,115,68,0.07137172413671833],[113,115,69,0.0727720479055719],[113,115,70,0.07421600994027533],[113,115,71,0.07570405636280608],[113,115,72,0.07723656187619488],[113,115,73,0.07881382721451441],[113,115,74,0.08043607656371743],[113,115,75,0.08210345495315619],[113,115,76,0.08381602561790513],[113,115,77,0.0855737673318463],[113,115,78,0.08737657171151048],[113,115,79,0.08922424049070249],[113,116,64,0.058060514182673995],[113,116,65,0.059292694478236097],[113,116,66,0.06056784756431477],[113,116,67,0.061886658950590034],[113,116,68,0.06324975124174459],[113,116,69,0.0646576817060836],[113,116,70,0.06611093981544636],[113,116,71,0.06760994475635418],[113,116,72,0.06915504291242092],[113,116,73,0.07074650531796839],[113,116,74,0.07238452508297821],[113,116,75,0.07406921478920991],[113,116,76,0.0758006038576059],[113,116,77,0.07757863588694597],[113,116,78,0.07940316596374286],[113,116,79,0.08127395794340697],[113,117,64,0.049915785932840795],[113,117,65,0.0511480452844732],[113,117,66,0.05242507033491611],[113,117,67,0.05374752526865889],[113,117,68,0.055116009960003765],[113,117,69,0.05653105754304483],[113,117,70,0.05799313195341965],[113,117,71,0.05950262544178109],[113,117,72,0.06105985605901315],[113,117,73,0.06266506511313347],[113,117,74,0.06431841459801668],[113,117,75,0.06601998459376435],[113,117,76,0.06776977063884465],[113,117,77,0.0695676810739645],[113,117,78,0.07141353435766545],[113,117,79,0.07330705635366852],[113,118,64,0.04176582614085689],[113,118,65,0.04299764620254143],[113,118,66,0.04427603345870229],[113,118,67,0.04560163082635288],[113,118,68,0.04697501549649635],[113,118,69,0.04839669650513889],[113,118,70,0.04986711227655766],[113,118,71,0.051386628138766544],[113,118,72,0.052955533811205435],[113,118,73,0.05457404086459555],[113,118,74,0.05624228015309579],[113,118,75,0.05796029921858298],[113,118,76,0.059728059667183364],[113,118,77,0.06154543451801425],[113,118,78,0.06341220552412896],[113,118,79,0.06532806046569184],[113,119,64,0.03361513013599998],[113,119,65,0.034846003179310414],[113,119,66,0.036125252395972196],[113,119,67,0.03745349950308491],[113,119,68,0.03883129906622451],[113,119,69,0.040259136071176926],[113,119,70,0.04173742346840048],[113,119,71,0.04326649969016294],[113,119,72,0.04484662614037788],[113,119,73,0.046477984657083304],[113,119,74,0.0481606749476966],[113,119,75,0.049894711996871066],[113,119,76,0.051680023447077894],[113,119,77,0.053516446951875074],[113,119,78,0.05540372750185607],[113,119,79,0.0573415147233034],[113,120,64,0.02546820446785969],[113,120,65,0.026697633789271646],[113,120,66,0.027977254633706095],[113,120,67,0.029307667595728115],[113,120,68,0.030689404684133448],[113,120,69,0.0321229268940898],[113,120,70,0.03360862175248103],[113,120,71,0.03514680083639754],[113,120,72,0.03673769726479892],[113,120,73,0.038381463163291385],[113,120,74,0.04007816710215517],[113,120,75,0.04182779150744298],[113,120,76,0.04363023004528038],[113,120,77,0.045485284979323526],[113,120,78,0.04739266450136875],[113,120,79,0.04935198003514174],[113,121,64,0.01732956367659949],[113,121,65,0.018557063995229106],[113,121,66,0.019836576437503806],[113,121,67,0.02116868056261917],[113,121,68,0.022553885901984594],[113,121,69,0.02399262953147141],[113,121,70,0.025485273617328275],[113,121,71,0.02703210293571523],[113,121,72,0.02863332236587751],[113,121,73,0.03028905435690249],[113,121,74,0.03199933636819691],[113,121,75,0.0337641182835039],[113,121,76,0.03558325979858923],[113,121,77,0.037456527782556315],[113,121,78,0.03938359361277988],[113,121,79,0.041364030483489966],[113,122,64,0.009203727011644347],[113,122,65,0.010428824856964336],[113,122,66,0.011707759551068286],[113,122,67,0.013041089714688703],[113,122,68,0.014429302491959839],[113,122,69,0.01587281112247063],[113,122,70,0.01737195248745449],[113,122,71,0.01892698463005854],[113,122,72,0.02053808424972131],[113,122,73,0.022205344170597108],[113,122,74,0.023928770784165165],[113,122,75,0.025708281465845417],[113,122,76,0.02754370196574768],[113,122,77,0.02943476377351434],[113,122,78,0.031381101457247706],[113,122,79,0.033382249976552814],[113,123,64,0.001095215098588176],[113,123,65,0.00231744918767135],[113,123,66,0.0035953478430217345],[113,123,67,0.004929448853511709],[113,123,68,0.0063202170767842625],[113,123,69,0.007768042010822818],[113,123,70,0.00927323534011748],[113,123,71,0.010836028456374436],[113,123,72,0.012456569953792906],[113,123,73,0.014134923098850671],[113,123,74,0.015871063274735975],[113,123,75,0.017664875400246416],[113,123,76,0.019516151323282493],[113,123,77,0.021424587188896893],[113,123,78,0.023389780781888192],[113,123,79,0.02541122884397118],[113,124,64,-0.0069914534452680255],[113,124,65,-0.005772531841429174],[113,124,66,-0.004496116098528402],[113,124,67,-0.0031616891433109418],[113,124,68,-0.0017688082932144078],[113,124,69,-3.1710768556658664E-4],[113,124,70,0.0011936992682720082],[113,124,71,0.0027638174037637464],[113,124,72,0.0043933672990755235],[113,124,73,0.006082382745925319],[113,124,74,0.007830808195531946],[113,124,75,0.009638496179489309],[113,124,76,0.011505204705692607],[113,124,77,0.013430594629275316],[113,124,78,0.015414226998550107],[113,124,79,0.017455560375982726],[113,125,64,-0.015051765446948806],[113,125,65,-0.01383659214849553],[113,125,66,-0.012562094423878178],[113,125,67,-0.011227775789639016],[113,125,68,-0.009833215616317226],[113,125,69,-0.008378071558687361],[113,125,70,-0.006862082010494097],[113,125,71,-0.005285068583732733],[113,125,72,-0.0036469386124529657],[113,125,73,-0.0019476876811452826],[113,125,74,-1.8740217756962885E-4],[113,125,75,0.0016337381297922837],[113,125,76,0.0035154574897866553],[113,125,77,0.0054573815421053995],[113,125,78,0.007459034666257414],[113,125,79,0.009519837306026346],[113,126,64,-0.02308121666562185],[113,126,65,-0.021870214240707064],[113,126,66,-0.020598057532284553],[113,126,67,-0.01926427051136609],[113,126,68,-0.01786845446910601],[113,126,69,-0.016410290448353904],[113,126,70,-0.014889541699249498],[113,126,71,-0.013306056158920054],[113,126,72,-0.011659768955250227],[113,126,73,-0.009950704934787669],[113,126,74,-0.00817898121464089],[113,126,75,-0.00634480975855678],[113,126,76,-0.004448499977040998],[113,126,77,-0.002490461351569828],[113,126,78,-4.712060828950815E-4],[113,126,79,0.0016086482365837984],[113,127,64,-0.03107531533177932],[113,127,65,-0.029868892765719857],[113,127,66,-0.028599487634771048],[113,127,67,-0.027266644219653025],[113,127,68,-0.025869985589219324],[113,127,69,-0.024409216033578374],[113,127,70,-0.022884123520819588],[113,127,71,-0.021294582177394383],[113,127,72,-0.019640554792128118],[113,127,73,-0.017922095343923417],[113,127,74,-0.016139351553012826],[113,127,75,-0.014292567455946537],[113,127,76,-0.01238208600418178],[113,127,77,-0.010408351686317263],[113,127,78,-0.00837191317397945],[113,127,79,-0.006273425991331627],[113,128,64,-0.03902958573799831],[113,128,65,-0.03782813811515251],[113,128,66,-0.036561882369393395],[113,128,67,-0.035230382937042615],[113,128,68,-0.033833284511381234],[113,128,69,-0.03237031447759886],[113,128,70,-0.030841285370903804],[113,128,71,-0.029246097357851886],[113,128,72,-0.02758474074086692],[113,128,73,-0.02585729848601448],[113,128,74,-0.0240639487738864],[113,128,75,-0.02220496757377921],[113,128,76,-0.020280731241039796],[113,128,77,-0.018291719137614404],[113,128,78,-0.016238516275810744],[113,128,79,-0.014121815985246533],[113,129,64,-0.04693957188147446],[113,129,65,-0.04574348008029411],[113,129,66,-0.044480758469164494],[113,129,67,-0.043150991476642364],[113,129,68,-0.04175384525690429],[113,129,69,-0.04028907012676314],[113,129,70,-0.03875650302541417],[113,129,71,-0.0371560699969653],[113,129,72,-0.035487788695726996],[113,129,73,-0.033751770914319246],[113,129,74,-0.03194822513445661],[113,129,75,-0.030077459100596005],[113,129,76,-0.028139882416313933],[113,129,77,-0.026136009163454488],[113,129,78,-0.02406646054406103],[113,129,79,-0.021931967545053777],[113,130,64,-0.05480084115793099],[113,130,65,-0.05361047155964149],[113,130,66,-0.05235165548223675],[113,130,67,-0.051023997173987035],[113,130,68,-0.04962718407626421],[113,130,69,-0.048160989262863996],[113,130,70,-0.046625273901628295],[113,130,71,-0.045019989738425026],[113,130,72,-0.043345181603455796],[113,130,73,-0.04160098993995631],[113,130,74,-0.03978765335514245],[113,130,75,-0.03790551119359342],[113,130,76,-0.035955006132933454],[113,130,77,-0.033936686801858795],[113,130,78,-0.03185121042051586],[113,130,79,-0.029699345463200855],[113,131,64,-0.06260898810710047],[113,131,65,-0.06142469231845393],[113,131,66,-0.06017013954454037],[113,131,67,-0.05884495367176795],[113,131,68,-0.05744884324494376],[113,131,69,-0.05598160390912649],[113,131,70,-0.054443120873360784],[113,131,71,-0.05283337139634181],[113,131,72,-0.051152427293987834],[113,131,73,-0.049400457468978476],[113,131,74,-0.04757773046212077],[113,131,75,-0.04568461702572235],[113,131,76,-0.0437215927188469],[113,131,77,-0.04168924052448608],[113,131,78,-0.03958825348866324],[113,131,79,-0.037419437381432163],[113,132,64,-0.07035963820998026],[113,132,65,-0.06918175280053823],[113,132,66,-0.06793180720507974],[113,132,67,-0.0666094447576393],[113,132,68,-0.0652143949127495],[113,132,69,-0.06374647569004943],[113,132,70,-0.06220559614034982],[113,132,71,-0.06059175883321688],[113,132,72,-0.05890506236604043],[113,132,73,-0.05714570389465512],[113,132,74,-0.05531398168536861],[113,132,75,-0.05341029768858052],[113,132,76,-0.05143516013386462],[113,132,77,-0.04938918614655152],[113,132,78,-0.04727310438582355],[113,132,79,-0.045087757704288633],[113,133,64,-0.07804845173746422],[113,133,65,-0.07687729799185566],[113,133,66,-0.07563228930348981],[113,133,67,-0.07431308825469629],[113,133,68,-0.07291944500620162],[113,133,69,-0.07145119974469927],[113,133,70,-0.06990828515146441],[113,133,71,-0.06829072889207499],[113,133,72,-0.06659865612720606],[113,133,73,-0.06483229204456342],[113,133,74,-0.06299196441181332],[113,133,75,-0.061078106150690314],[113,133,76,-0.05909125793215564],[113,133,77,-0.05703207079264572],[113,133,78,-0.05490130877141863],[113,133,79,-0.05269985156896795],[113,134,64,-0.08567112765054774],[113,134,65,-0.08450701133615585],[113,134,66,-0.08326725490004733],[113,134,67,-0.0819515399648289],[113,134,68,-0.0805596371841949],[113,134,69,-0.07909140869365916],[113,134,70,-0.07754681058192647],[113,134,71,-0.07592589538296424],[113,134,72,-0.07422881458873953],[113,134,73,-0.07245582118269134],[113,134,74,-0.0706072721937896],[113,134,75,-0.06868363127136767],[113,134,76,-0.06668547128060032],[113,134,77,-0.0646134769186616],[113,134,78,-0.062468447351578305],[113,134,79,-0.060251298871740966],[113,135,64,-0.0932234075523069],[113,135,65,-0.09206661870283295],[113,135,66,-0.09083241525834124],[113,135,67,-0.08952049766514669],[113,135,68,-0.0881306568471305],[113,135,69,-0.08666277665982713],[113,135,70,-0.08511683636475043],[113,135,71,-0.08349291312401708],[113,135,72,-0.0817911845152387],[113,135,73,-0.08001193106674642],[113,135,74,-0.07815553881300052],[113,135,75,-0.07622250187037682],[113,135,76,-0.07421342503319317],[113,135,77,-0.0721290263900205],[113,135,78,-0.06997013996028367],[113,135,79,-0.06773771835112474],[113,136,64,-0.10070107969124847],[113,136,65,-0.09955189240660445],[113,136,66,-0.09832352788019727],[113,136,67,-0.09701570515707403],[113,136,68,-0.09562823519911734],[113,136,69,-0.09416102334266874],[113,136,70,-0.09261407177599856],[113,136,71,-0.09098748203667717],[113,136,72,-0.08928145752882011],[113,136,73,-0.08749630606027359],[113,136,74,-0.08563244239958723],[113,136,75,-0.08369039085297125],[113,136,76,-0.08167078786109983],[113,136,77,-0.07957438461580157],[113,136,78,-0.07740204969664866],[113,136,79,-0.07515477172741114],[113,137,64,-0.1080999830162448],[113,137,65,-0.10695865527922505],[113,137,66,-0.10573640059307088],[113,137,67,-0.10443295636833083],[113,137,68,-0.10304815336345508],[113,137,69,-0.1015819181461286],[113,137,70,-0.10003427557406175],[113,137,71,-0.09840535129529648],[113,137,72,-0.09669537426799679],[113,137,73,-0.09490467929978996],[113,137,74,-0.09303370960651003],[113,137,75,-0.09108301939053398],[113,137,76,-0.08905327643857686],[113,137,77,-0.08694526473898656],[113,137,78,-0.08475988711854787],[113,137,79,-0.0824981678987643],[113,138,64,-0.11541601128322754],[113,138,65,-0.11428278479341014],[113,138,66,-0.11306689569008133],[113,138,67,-0.11176809950796873],[113,138,68,-0.1103862465515747],[113,138,69,-0.1089212843603834],[113,138,70,-0.10737326019314386],[113,138,71,-0.10574232353128565],[113,138,72,-0.10402872860143786],[113,138,73,-0.10223283691711582],[113,138,74,-0.10035511983942658],[113,138,75,-0.09839616115698935],[113,138,76,-0.09635665968492924],[113,138,77,-0.09423743188298828],[113,138,78,-0.09203941449276687],[113,138,79,-0.08976366719405726],[113,139,64,-0.12264511721324589],[113,139,65,-0.12152021723857132],[113,139,66,-0.12031093412229421],[113,139,67,-0.11901704127407209],[113,139,68,-0.11763840828503769],[113,139,69,-0.11617500339703413],[113,139,70,-0.11462689599055076],[113,139,71,-0.1129942590914157],[113,139,72,-0.11127737189621434],[113,139,73,-0.10947662231650213],[113,139,74,-0.10759250954166188],[113,139,75,-0.10562564662059437],[113,139,76,-0.10357676306211339],[113,139,77,-0.10144670745407802],[113,139,78,-0.09923645010128224],[113,139,79,-0.09694708568205868],[113,140,64,-0.12978331670222465],[113,140,65,-0.12866695194870836],[113,140,66,-0.12746449974359053],[113,140,67,-0.12617575111446033],[113,140,68,-0.12480059467093807],[113,140,69,-0.12333901907808242],[113,140,70,-0.12179111554812827],[113,140,71,-0.12015708035061334],[113,140,72,-0.11843721734086332],[113,140,73,-0.11663194050689796],[113,140,74,-0.11474177653461626],[113,140,75,-0.11276736739144477],[113,140,76,-0.11070947292832012],[113,140,77,-0.1085689735000408],[113,140,78,-0.10634687260400688],[113,140,79,-0.10404429953730454],[113,141,64,-0.136826693082174],[113,141,65,-0.13571905558219655],[113,141,66,-0.1345236436078634],[113,141,67,-0.13324026554013524],[113,141,68,-0.13186882873044892],[113,141,69,-0.13040934197843268],[113,141,70,-0.1288619180275875],[113,141,71,-0.12722677607899635],[113,141,72,-0.12550424432302743],[113,141,73,-0.12369476248909783],[113,141,74,-0.12179888441335274],[113,141,75,-0.11981728062444508],[113,141,76,-0.1177507409472871],[113,141,77,-0.1156001771248103],[113,141,78,-0.11336662545774767],[113,141,79,-0.11105124946240097],[113,142,64,-0.143771401434177],[113,142,65,-0.14267266645380638],[113,142,66,-0.14148448831888527],[113,142,67,-0.1402066924918124],[113,142,68,-0.1388392047808471],[113,142,69,-0.13738205382225277],[113,142,70,-0.1358353735800567],[113,142,71,-0.13419940586347712],[113,142,72,-0.13247450286199136],[113,142,73,-0.13066112969810817],[113,142,74,-0.1287598669976986],[113,142,75,-0.12677141347807208],[113,142,76,-0.12469658855367105],[113,142,77,-0.12253633495941407],[113,142,78,-0.12029172139170874],[113,142,79,-0.1179639451670913],[113,143,64,-0.15061367295276695],[113,143,65,-0.14952399891856227],[113,143,66,-0.14834323243243974],[113,143,67,-0.14707121575913573],[113,143,68,-0.14570789287062258],[113,143,69,-0.14425331193280266],[113,143,70,-0.142707627809462],[113,143,71,-0.14107110458354633],[113,143,72,-0.13934411809572955],[113,143,73,-0.13752715850033415],[113,143,74,-0.1356208328384656],[113,143,75,-0.13362586762854145],[113,143,76,-0.1315431114740867],[113,143,77,-0.1293735376888342],[113,143,78,-0.12711824693914264],[113,143,79,-0.12477846990369379],[113,144,64,-0.15734981936188364],[113,144,65,-0.15626934780763058],[113,144,66,-0.1550961549109232],[113,144,67,-0.15383009945277226],[113,144,68,-0.15247114326786781],[113,144,69,-0.15101935373592212],[113,144,70,-0.14947490628993354],[113,144,71,-0.14783808694142853],[113,144,72,-0.14610929482265356],[113,144,73,-0.14428904474578264],[113,144,74,-0.14237796977898765],[113,144,75,-0.14037682383956884],[113,144,76,-0.1382864843040077],[113,144,77,-0.1361079546349816],[113,144,78,-0.13384236702535435],[113,144,79,-0.1314909850591055],[113,145,64,-0.16397623738257783],[113,145,65,-0.1629050929164063],[113,145,66,-0.16173961963057137],[113,145,67,-0.16047969252955518],[113,145,68,-0.15912529100210937],[113,145,69,-0.1576765013173439],[113,145,70,-0.15613351913740048],[113,145,71,-0.1544966520467712],[113,145,72,-0.1527663220982306],[113,145,73,-0.15094306837544824],[113,145,74,-0.14902754957213127],[113,145,75,-0.1470205465878902],[113,145,76,-0.14492296514069214],[113,145,77,-0.1427358383959425],[113,145,78,-0.1404603296122059],[113,145,79,-0.13809773480353293],[113,146,64,-0.1704894132521142],[113,146,65,-0.1694277035444488],[113,146,66,-0.16827007994097387],[113,146,67,-0.16701643337032346],[113,146,68,-0.16566676045923867],[113,146,69,-0.1642211660334849],[113,146,70,-0.162679865635028],[113,146,71,-0.16104318805552786],[113,146,72,-0.15931157788611694],[113,146,73,-0.15748559808353135],[113,146,74,-0.155565932552445],[113,146,75,-0.15355338874419866],[113,146,76,-0.15144890027178892],[113,146,77,-0.14925352954115756],[113,146,78,-0.1469684703987929],[113,146,79,-0.1445950507956082],[113,147,64,-0.17688592729465302],[113,147,65,-0.1758337430874467],[113,147,66,-0.1746840832770461],[113,147,67,-0.1734368544106386],[113,147,68,-0.17209207002971583],[113,147,69,-0.1706498531758941],[113,147,70,-0.1691104389126762],[113,147,71,-0.16747417686320698],[113,147,72,-0.16574153376399603],[113,147,73,-0.1639130960346713],[113,147,74,-0.1619895723636141],[113,147,75,-0.1599717963096703],[113,147,76,-0.15786072891980008],[113,147,77,-0.15565746136270653],[113,147,78,-0.1533632175784584],[113,147,79,-0.15097935694406583],[113,148,64,-0.18316245854367075],[113,148,65,-0.1821198736813714],[113,148,66,-0.18097827582362647],[113,148,67,-0.17973758682454077],[113,148,68,-0.17839783681021226],[113,148,69,-0.17695916668951994],[113,148,70,-0.17542183068054085],[113,148,71,-0.17378619885265068],[113,148,72,-0.1720527596842737],[113,148,73,-0.1702221226363534],[113,148,74,-0.16829502074139135],[113,148,75,-0.16627231320824687],[113,148,76,-0.1641549880425639],[113,148,77,-0.16194416468286255],[113,148,78,-0.15964109665231196],[113,148,79,-0.1572471742261422],[113,149,64,-0.18931578941579053],[113,149,65,-0.18828286089849378],[113,149,66,-0.1871494072323664],[113,149,67,-0.1859153652610145],[113,149,68,-0.18458078135836176],[113,149,69,-0.1831458139444656],[113,149,70,-0.18161073601664957],[113,149,71,-0.17997593769601639],[113,149,72,-0.1782419287893049],[113,149,73,-0.1764093413661606],[113,149,74,-0.17447893235166811],[113,149,75,-0.1724515861343402],[113,149,76,-0.17032831718942776],[113,149,77,-0.16811027271758672],[113,149,78,-0.1657987352989232],[113,149,79,-0.1633951255623689],[113,150,64,-0.1953428104361863],[113,150,65,-0.19431957849541903],[113,150,66,-0.19319433539107622],[113,150,67,-0.19196703263332304],[113,150,68,-0.19063773250077787],[113,150,69,-0.18920661056139498],[113,150,70,-0.18767395820836852],[113,150,71,-0.18604018521111776],[113,150,72,-0.1843058222813152],[113,150,73,-0.1824715236540324],[113,150,74,-0.18053806968385],[113,150,75,-0.1785063694561232],[113,150,76,-0.1763774634132701],[113,150,77,-0.17415252599612185],[113,150,78,-0.17183286830034894],[113,150,79,-0.16941994074792044],[113,151,64,-0.20124052501572465],[113,151,65,-0.2002270132133167],[113,151,66,-0.1991100312456937],[113,151,67,-0.19788954496138678],[113,151,68,-0.19656563219451229],[113,151,69,-0.1951384852907575],[113,151,70,-0.193608413648097],[113,151,71,-0.19197584627229802],[113,151,72,-0.19024133434717982],[113,151,73,-0.1884055538196996],[113,151,74,-0.1864693079997085],[113,151,75,-0.1844335301745761],[113,151,76,-0.18229928623854608],[113,151,77,-0.1800677773368604],[113,151,78,-0.17774034252466908],[113,151,79,-0.17531846144068675],[113,152,64,-0.20700605427951513],[113,152,65,-0.20600226963000456],[113,152,66,-0.2048935836745427],[113,152,67,-0.20367997626686118],[113,152,68,-0.20236154044161547],[113,152,69,-0.20093848494550004],[113,152,70,-0.19941113678280853],[113,152,71,-0.19777994377549912],[113,152,72,-0.1960454771377348],[113,152,73,-0.19420843406495858],[113,152,74,-0.19226964033736593],[113,152,75,-0.1902300529379528],[113,152,76,-0.18809076268501712],[113,152,77,-0.18585299687914258],[113,152,78,-0.1835181219646882],[113,152,79,-0.18108764620573525],[113,153,64,-0.21263664194704668],[113,153,65,-0.21164257506407136],[113,153,66,-0.21054220441506455],[113,153,67,-0.20933552352110618],[113,153,68,-0.2080226402569828],[113,153,69,-0.20660377938744223],[113,153,70,-0.20507928511762297],[113,153,71,-0.20344962365771047],[113,153,72,-0.20171538580179116],[113,153,73,-0.19987728952097084],[113,153,74,-0.1979361825706074],[113,153,75,-0.19589304511184868],[113,153,76,-0.19374899234734644],[113,153,77,-0.1915052771711775],[113,153,78,-0.18916329283299094],[113,153,79,-0.1867245756163436],[113,154,64,-0.21812965926403893],[113,154,65,-0.21714528453116477],[113,154,66,-0.21605323304314406],[113,154,67,-0.2148535116461675],[113,154,68,-0.2135462426896122],[113,154,69,-0.21213166656744675],[113,154,70,-0.21061014427353775],[113,154,71,-0.20898215997091918],[113,154,72,-0.20724832357499],[113,154,73,-0.20540937335070897],[113,154,74,-0.2034661785236328],[113,154,75,-0.20141974190499579],[113,154,76,-0.19927120253069253],[113,154,77,-0.19702183831420295],[113,154,78,-0.1946730687134759],[113,154,79,-0.19222645741172872],[113,155,64,-0.22348260998572433],[113,155,65,-0.22250788575215874],[113,155,66,-0.2214241420047519],[113,155,67,-0.2202313985684854],[113,155,68,-0.21892979189699102],[113,155,69,-0.21751957761909946],[113,155,70,-0.21600113309903035],[113,155,71,-0.21437496001028478],[113,155,72,-0.21264168692320495],[113,155,73,-0.21080207190627043],[113,155,74,-0.2088570051409787],[113,155,75,-0.20680751155050547],[113,155,76,-0.20465475344200768],[113,155,77,-0.20240003316260946],[113,155,78,-0.20004479576908385],[113,155,79,-0.19759063171119307],[113,156,64,-0.22869313541170644],[113,156,65,-0.2277280042133496],[113,156,66,-0.22665254170004634],[113,156,67,-0.22546678032548317],[113,156,68,-0.2241708702727545],[113,156,69,-0.22276508200604184],[113,156,70,-0.2212498088356808],[113,156,71,-0.219625569496678],[113,156,72,-0.21789301074064238],[113,156,73,-0.2160529099412003],[113,156,74,-0.21410617771274276],[113,156,75,-0.21205386054269826],[113,156,76,-0.2098971434371978],[113,156,77,-0.20763735258016713],[113,156,78,-0.2052759580058655],[113,156,79,-0.20281457628482735],[113,157,64,-0.23375901947253042],[113,157,65,-0.23280340827881385],[113,157,66,-0.23173618562007092],[113,157,67,-0.23055739622516402],[113,157,68,-0.22926720362775732],[113,157,69,-0.22786589272309887],[113,157,70,-0.22635387233795123],[113,157,71,-0.22473167781372427],[113,157,72,-0.22299997360277812],[113,157,73,-0.22115955587796532],[113,157,74,-0.21921135515525902],[113,157,75,-0.21715643892966374],[113,157,76,-0.2149960143242704],[113,157,77,-0.2127314307524968],[113,157,78,-0.21036418259352752],[113,157,79,-0.20789591188091117],[113,158,64,-0.23867819386768552],[113,158,65,-0.2377320143546494],[113,158,66,-0.23667297553576583],[113,158,67,-0.23550113405843986],[113,158,68,-0.23421666642427208],[113,158,69,-0.23281987155091488],[113,158,70,-0.23131117334683904],[113,158,71,-0.2296911232990685],[113,158,72,-0.22796040307384413],[113,158,73,-0.22611982713029033],[113,158,74,-0.22417034534693403],[113,158,75,-0.2221130456612629],[113,158,76,-0.21994915672219661],[113,158,77,-0.2176800505555022],[113,158,78,-0.2153072452421726],[113,158,79,-0.2128324076097281],[113,159,64,-0.24344874325519927],[113,159,65,-0.24251189210525625],[113,159,66,-0.24146096673945705],[113,159,67,-0.24029603536435085],[113,159,68,-0.2390172870634778],[113,159,69,-0.23762503436425852],[113,159,70,-0.2361197158175633],[113,159,71,-0.23450189859002124],[113,159,72,-0.23277228106902725],[113,159,73,-0.23093169548052417],[113,159,74,-0.22898111051940773],[113,159,75,-0.2269216339927389],[113,159,76,-0.22475451547564262],[113,159,77,-0.22248114897992055],[113,159,78,-0.22010307563539677],[113,159,79,-0.21762198638395602],[113,160,64,-0.2480689104929117],[113,160,65,-0.2471412697217512],[113,160,66,-0.24609837333890716],[113,160,67,-0.24494030074826423],[113,160,68,-0.2436672532263262],[113,160,69,-0.24227955649409072],[113,160,70,-0.24077766330137762],[113,160,71,-0.2391621560236763],[113,160,72,-0.23743374927147143],[113,160,73,-0.23559329251212002],[113,160,74,-0.23364177270412811],[113,160,75,-0.2315803169440197],[113,160,76,-0.22941019512566185],[113,160,77,-0.22713282261208745],[113,160,78,-0.2247497629198283],[113,160,79,-0.22226273041571987],[113,161,64,-0.2525371019312166],[113,161,65,-0.2516185392422967],[113,161,66,-0.2505835736037171],[113,161,67,-0.2494322952528386],[113,161,68,-0.2481649172675725],[113,161,69,-0.24678177814317537],[113,161,70,-0.24528334438128996],[113,161,71,-0.24367021309128578],[113,161,72,-0.24194311460386708],[113,161,73,-0.24010291509701598],[113,161,74,-0.23815061923412584],[113,161,75,-0.23608737281450565],[113,161,76,-0.2339144654361347],[113,161,77,-0.23163333317069457],[113,161,78,-0.229245561250902],[113,161,79,-0.2267528867700962],[113,162,64,-0.25685189275736797],[113,162,65,-0.2559422619244489],[113,162,66,-0.2549151153641772],[113,162,67,-0.2537705537818554],[113,162,68,-0.25250880166306877],[113,162,69,-0.25113020985533485],[113,162,70,-0.24963525816179366],[113,162,71,-0.2480245579469912],[113,162,72,-0.24629885475472546],[113,162,73,-0.2444590309380209],[113,162,74,-0.24250610830108488],[113,162,75,-0.24044125075343215],[113,162,76,-0.23826576697605129],[113,162,77,-0.23598111309964442],[113,162,78,-0.23358889539495886],[113,162,79,-0.23109087297516806],[113,163,64,-0.2610120323914833],[113,163,65,-0.2601111736696484],[113,163,66,-0.25909172146269577],[113,163,67,-0.2579537865770407],[113,163,68,-0.25669760451045165],[113,163,69,-0.25532353803848096],[113,163,70,-0.2538320798127338],[113,163,71,-0.2522238549710383],[113,163,72,-0.25049962375947177],[113,163,73,-0.24866028416632446],[113,163,74,-0.24670687456784335],[113,163,75,-0.2446405763859445],[113,163,76,-0.2424627167577721],[113,163,77,-0.2401747712171295],[113,163,78,-0.23777836638780603],[113,163,79,-0.2352752826887532],[113,164,64,-0.26501644993398965],[113,164,65,-0.2641241904996092],[113,164,66,-0.2631122952575593],[113,164,67,-0.2619808847476349],[113,164,68,-0.26073020508297073],[113,164,69,-0.25936063054116754],[113,164,70,-0.25787266616706606],[113,164,71,-0.25626695038723046],[113,164,72,-0.2545442576361021],[113,164,73,-0.25270550099389255],[113,164,74,-0.2507517348360715],[113,164,75,-0.24868415749463213],[113,164,76,-0.24650411393101024],[113,164,77,-0.24421309842068584],[113,164,78,-0.2418127572494888],[113,164,79,-0.23930489142156752],[113,165,64,-0.2688642596647176],[113,165,65,-0.267980414084802],[113,165,66,-0.26697592617921806],[113,165,67,-0.26585092585290593],[113,165,68,-0.2646056694366624],[113,165,69,-0.2632405422828712],[113,165,70,-0.26175606137269936],[113,165,71,-0.2601528779348171],[113,165,72,-0.2584317800756093],[113,165,73,-0.25659369542093935],[113,165,74,-0.2546396937693276],[113,165,75,-0.25257098975672254],[113,165,76,-0.2503889455327435],[113,165,77,-0.24809507344842274],[113,165,78,-0.24569103875547016],[113,165,79,-0.2431786623170138],[113,166,64,-0.27255476659350897],[113,166,65,-0.27167913732490423],[113,166,66,-0.27068189533897347],[113,166,67,-0.2695631795374763],[113,166,68,-0.26832325607073393],[113,166,69,-0.2669625209378619],[113,166,70,-0.26548150259830017],[113,166,71,-0.2638808645946854],[113,166,72,-0.2621614081870425],[113,166,73,-0.2603240749983535],[113,166,74,-0.2583699496713623],[113,166,75,-0.25630026253680216],[113,166,76,-0.25411639229291505],[113,166,77,-0.25181986869629636],[113,166,78,-0.24941237526408744],[113,166,79,-0.24689575198746816],[113,167,64,-0.27608747206249684],[113,167,65,-0.27521984998137006],[113,167,66,-0.27422968119021696],[113,167,67,-0.2731171132196216],[113,167,68,-0.27188242164131826],[113,167,69,-0.2705260126728267],[113,167,70,-0.26904842579321053],[113,167,71,-0.26745033637001736],[113,167,72,-0.265732558297362],[113,167,73,-0.2638960466452265],[113,167,74,-0.26194190031982556],[113,167,75,-0.2598713647352262],[113,167,76,-0.2576858344960915],[113,167,77,-0.2553868560915842],[113,167,78,-0.25297613060044866],[113,167,79,-0.2504555164072252],[113,168,64,-0.279462079399869],[113,168,65,-0.27860224436193815],[113,168,66,-0.27761896524204166],[113,168,67,-0.2765123978323515],[113,168,68,-0.2752828267284113],[113,168,69,-0.27393066793805476],[113,168,70,-0.27245647150129304],[113,168,71,-0.2708609241212181],[113,168,72,-0.26914485180589476],[113,168,73,-0.26730922252130374],[113,168,74,-0.2653551488551936],[113,168,75,-0.26328389069202507],[113,168,76,-0.26109685789888126],[113,168,77,-0.25879561302237464],[113,168,78,-0.25638187399657497],[113,168,79,-0.2538575168619063],[113,169,64,-0.2826784996252085],[113,169,65,-0.28182622105716393],[113,169,66,-0.28084963782530736],[113,169,67,-0.2797489136173671],[113,169,68,-0.2785243416560801],[113,169,69,-0.2771763473122797],[113,169,70,-0.27570549072879436],[113,169,71,-0.27411246945521517],[113,169,72,-0.27239812109349426],[113,169,73,-0.2705634259544458],[113,169,74,-0.26860950972500086],[113,169,75,-0.2665376461464012],[113,169,76,-0.2643492597032093],[113,169,77,-0.26204592832316054],[113,169,78,-0.2596293860878821],[113,169,79,-0.2571015259544317],[113,170,64,-0.28573685720649855],[113,170,65,-0.28489189472906684],[113,170,66,-0.28392180391125943],[113,170,67,-0.2828267559719807],[113,170,68,-0.28160705236603656],[113,170,69,-0.28026312740126247],[113,170,70,-0.27879555086631824],[113,170,71,-0.2772050306692071],[113,170,72,-0.27549241548647807],[113,170,73,-0.27365869742318794],[113,170,74,-0.27170501468347164],[113,170,75,-0.26963265425190497],[113,170,76,-0.2674430545855382],[113,170,77,-0.2651378083166295],[113,170,78,-0.2627186649660942],[113,170,79,-0.2601875336676368],[113,171,64,-0.28863749586860166],[113,171,65,-0.28779959995170457],[113,171,66,-0.2868357889825024],[113,171,67,-0.28574624134881177],[113,171,68,-0.28453126634438164],[113,171,69,-0.28319130678993076],[113,171,70,-0.2817269416647159],[113,171,71,-0.280138888748683],[113,171,72,-0.2784280072751668],[113,171,73,-0.2765953005942118],[113,171,74,-0.27464191884636047],[113,171,75,-0.2725691616471002],[113,171,76,-0.2703784807818411],[113,171,77,-0.26807148291145444],[113,171,78,-0.2656499322883933],[113,171,79,-0.2631157534833509],[113,172,64,-0.2913809844533355],[113,172,65,-0.2905498971037904],[113,172,66,-0.28959214495645336],[113,172,67,-0.28850791320837466],[113,172,68,-0.28729751860164177],[113,172,69,-0.28596141204819014],[113,172,70,-0.2845001812650122],[113,172,71,-0.28291455341982263],[113,172,72,-0.2812053977871374],[113,172,73,-0.27937372841484476],[113,172,74,-0.27742070680111575],[113,172,75,-0.2753476445818376],[113,172,76,-0.2731560062284505],[113,172,77,-0.2708474117562153],[113,172,78,-0.2684236394429286],[113,172,79,-0.2658866285580491],[113,173,64,-0.293968122831184],[113,173,65,-0.2931435783134012],[113,173,66,-0.29219165616131626],[113,173,67,-0.2911125480246046],[113,173,68,-0.2899065777061426],[113,173,69,-0.2885742037904523],[113,173,70,-0.28711602228241695],[113,173,71,-0.2855327692563291],[113,173,72,-0.2838253235152337],[113,173,73,-0.28199470926063486],[113,173,74,-0.2800420987724187],[113,173,75,-0.2779688150991805],[113,173,76,-0.2757763347588259],[113,173,77,-0.27346629044948023],[113,173,78,-0.27104047377072793],[113,173,79,-0.2685008379551317],[113,174,64,-0.2963999478645132],[113,174,65,-0.2955816734546365],[113,174,66,-0.2946353453644427],[113,174,67,-0.2935611613431842],[113,174,68,-0.2923594518705803],[113,174,69,-0.2910306827887459],[113,174,70,-0.2895754579442764],[113,174,71,-0.28799452184054963],[113,174,72,-0.28628876230020284],[113,174,73,-0.2844592131378588],[113,174,74,-0.2825070568429541],[113,174,75,-0.2804336272728486],[113,174,76,-0.27824041235609964],[113,174,77,-0.27592905680592494],[113,174,78,-0.27350136484387666],[113,174,79,-0.2709593029336824],[113,175,64,-0.298677739422364],[113,175,65,-0.29786545619630644],[113,175,66,-0.2969244798531533],[113,175,67,-0.29585501389274993],[113,175,68,-0.29465739509187083],[113,175,69,-0.2933320961394814],[113,175,70,-0.29187972828205144],[113,175,71,-0.2903010439789695],[113,175,72,-0.2885969395680288],[113,175,73,-0.28676845794104966],[113,175,74,-0.2848167912294929],[113,175,75,-0.2827432835002508],[113,175,76,-0.28054943346148675],[113,175,77,-0.2782368971785575],[113,175,78,-0.2758074908000365],[113,175,79,-0.27326319329379445],[113,176,64,-0.3008030264468845],[113,176,65,-0.2999964501027099],[113,176,66,-0.2990605775680817],[113,176,67,-0.29799561774903227],[113,176,68,-0.29680191334433315],[113,176,69,-0.2954799434839377],[113,176,70,-0.2940303263773735],[113,176,71,-0.2924538219721322],[113,176,72,-0.29075133462202807],[113,176,73,-0.2889239157655906],[113,176,74,-0.2869727666143469],[113,176,75,-0.2848992408511748],[113,176,76,-0.28270484733860723],[113,176,77,-0.2803912528371112],[113,176,78,-0.27796028473336976],[113,176,79,-0.2754139337785162],[113,177,64,-0.30277759307126895],[113,177,65,-0.30197643478637004],[113,177,66,-0.3010454132889111],[113,177,67,-0.29998474255180674],[113,177,68,-0.2987947708260805],[113,177,69,-0.29747598328233105],[113,177,70,-0.29602900466205306],[113,177,71,-0.29445460193885786],[113,177,72,-0.29275368698956994],[113,177,73,-0.2909273192752585],[113,177,74,-0.2889767085320628],[113,177,75,-0.2869032174719962],[113,177,76,-0.2847083644935987],[113,177,77,-0.2823938264024747],[113,177,78,-0.27996144114173305],[113,177,79,-0.2774132105322852],[113,178,64,-0.304603484789276],[113,178,65,-0.3038074521127987],[113,178,66,-0.30288102487256974],[113,178,67,-0.30182442177471924],[113,178,68,-0.3006379962586849],[113,178,69,-0.29932223914154465],[113,178,70,-0.29787778127210895],[113,178,71,-0.2963053961948322],[113,178,72,-0.29460600282350113],[113,178,73,-0.2927806681247749],[113,178,74,-0.29083060981142783],[113,178,75,-0.28875719904547914],[113,178,76,-0.28656196315108673],[113,178,77,-0.2842465883372307],[113,178,78,-0.28181292243021383],[113,178,79,-0.27926297761592966],[113,179,64,-0.3062830146763842],[113,179,65,-0.305491812457348],[113,179,66,-0.3045697195439503],[113,179,67,-0.30351695904805054],[113,179,68,-0.3023338892401791],[113,179,69,-0.3010210061965707],[113,179,70,-0.29957894645587857],[113,179,71,-0.2980084896856211],[113,179,72,-0.29631056135832445],[113,179,73,-0.29448623543743413],[113,179,74,-0.29253673707284455],[113,179,75,-0.2904634453062326],[113,179,76,-0.28826789578607326],[113,179,77,-0.2859517834923625],[113,179,78,-0.28351696547107097],[113,179,79,-0.28096546357828545],[113,180,64,-0.30781876966244626],[113,180,65,-0.3070321010140137],[113,180,66,-0.3061140802390092],[113,180,67,-0.30506493453427674],[113,180,68,-0.3038850266512516],[113,180,69,-0.3025748575455347],[113,180,70,-0.30113506903606957],[113,180,71,-0.2995664464739758],[113,180,72,-0.29786992142100055],[113,180,73,-0.2960465743376629],[113,180,74,-0.2940976372809385],[113,180,75,-0.2920244966116736],[113,180,76,-0.2898286957116002],[113,180,77,-0.2875119377099855],[113,180,78,-0.28507608821993413],[113,180,79,-0.28252317808429905],[113,181,64,-0.30921361685594173],[113,181,65,-0.3084311841562827],[113,181,66,-0.3075169720003492],[113,181,67,-0.3064712113565291],[113,181,68,-0.3052942691147419],[113,181,69,-0.30398665073839315],[113,181,70,-0.3025490029258532],[113,181,71,-0.3009821162815266],[113,181,72,-0.2992869279964664],[113,181,73,-0.2974645245386123],[113,181,74,-0.2955161443524966],[113,181,75,-0.29344318056860985],[113,181,76,-0.29124718372229574],[113,181,77,-0.28892986448221214],[113,181,78,-0.2864930963883685],[113,181,79,-0.28393891859971],[113,182,64,-0.3104707099198424],[113,182,65,-0.30969221585005025],[113,182,66,-0.3087815484252989],[113,182,67,-0.30773894207996355],[113,182,68,-0.30656476750844297],[113,182,69,-0.3052595343193255],[113,182,70,-0.30382389369901475],[113,182,71,-0.3022586410848803],[113,182,72,-0.3005647188478906],[113,182,73,-0.2987432189848015],[113,182,74,-0.2967953858197504],[113,182,75,-0.2947226187154437],[113,182,76,-0.2925264747938108],[113,182,77,-0.2902086716661534],[113,182,78,-0.2877710901728173],[113,182,79,-0.28521577713233126],[113,183,64,-0.31159349549899407],[113,183,65,-0.31081864411849747],[113,183,66,-0.309911258166389],[113,183,67,-0.30887157524594777],[113,183,68,-0.307699969531118],[113,183,69,-0.3063969544227182],[113,183,70,-0.3049631852140592],[113,183,71,-0.30339946176602195],[113,183,72,-0.3017067311915619],[113,183,73,-0.2998860905497075],[113,183,74,-0.2979387895489075],[113,183,75,-0.29586623325990935],[113,183,76,-0.2936699848380484],[113,183,77,-0.29135176825497067],[113,183,78,-0.2889134710398187],[113,183,79,-0.28635714702982773],[113,184,64,-0.3125857196991054],[113,184,65,-0.31181421755903127],[113,184,66,-0.31090985148432204],[113,184,67,-0.3098728619591541],[113,184,68,-0.3087036263218229],[113,184,69,-0.30740266142283834],[113,184,70,-0.30597062629237315],[113,184,71,-0.3044083248171179],[113,184,72,-0.3027167084265099],[113,184,73,-0.3008968787884021],[113,184,74,-0.298950090514025],[113,184,75,-0.2968777538724304],[113,184,76,-0.2946814375142873],[113,184,77,-0.29236287120506155],[113,184,78,-0.2899239485676016],[113,184,79,-0.28736672983408573],[113,185,64,-0.3134514346173064],[113,185,65,-0.31268299191224036],[113,185,66,-0.3117813868533942],[113,185,67,-0.3107468625275187],[113,185,68,-0.3095797991324952],[113,185,69,-0.30828071663715295],[113,185,70,-0.3068502774503934],[113,185,71,-0.3052892890996741],[113,185,72,-0.30359870691881286],[113,185,73,-0.3017796367451884],[113,185,74,-0.29983333762618314],[113,185,75,-0.2977612245350614],[113,185,76,-0.2955648710961478],[113,185,77,-0.29324601231934566],[113,185,78,-0.2908065473440109],[113,185,79,-0.28824854219213614],[113,186,64,-0.31419500492428387],[113,186,65,-0.3134293366828814],[113,186,66,-0.3125302376193768],[113,186,67,-0.3114979531550809],[113,186,68,-0.31033286605381705],[113,186,69,-0.3090354990833034],[113,186,70,-0.30760651768579994],[113,186,71,-0.3060467326580666],[113,186,72,-0.30435710284060646],[113,186,73,-0.3025387378162542],[113,186,74,-0.30059290061796995],[113,186,75,-0.29852101044601964],[113,186,76,-0.29632464539441683],[113,186,77,-0.29400554518665856],[113,186,78,-0.29156561392077285],[113,186,79,-0.2890069228236366],[113,187,64,-0.3148211144979699],[113,187,65,-0.31405794181286906],[113,187,66,-0.31316109870983677],[113,187,67,-0.31213083268767183],[113,187,68,-0.31096752879433065],[113,187,69,-0.3096717122897178],[113,187,70,-0.30824405131770294],[113,187,71,-0.30668535958741294],[113,187,72,-0.3049965990637642],[113,187,73,-0.3031788826673103],[113,187,74,-0.30123347698325054],[113,187,75,-0.2991618049797866],[113,187,76,-0.29696544873570796],[113,187,77,-0.29464615217722456],[113,187,78,-0.2922058238240802],[113,187,79,-0.28964653954489317],[113,188,64,-0.31533477310883906],[113,188,65,-0.314573824406322],[113,188,66,-0.3136789933969448],[113,188,67,-0.3126505294115107],[113,188,68,-0.31148881951285634],[113,188,69,-0.31019439115990033],[113,188,70,-0.3087679148808815],[113,188,71,-0.3072102069558402],[113,188,72,-0.305522232108308],[113,188,73,-0.30370510620627267],[113,188,74,-0.3017600989722772],[113,188,75,-0.2996886367028294],[113,188,76,-0.2974923049970054],[113,188,77,-0.29517285149427197],[113,188,78,-0.2927321886215488],[113,188,79,-0.29017239634946845],[113,189,64,-0.31574132315675185],[113,189,65,-0.31498233550660903],[113,189,66,-0.31408928011271886],[113,189,67,-0.3130624079046498],[113,189,68,-0.3119021077041598],[113,189,69,-0.3106089088903565],[113,189,70,-0.3091834840740122],[113,189,71,-0.30762665178109705],[113,189,72,-0.3059393791454884],[113,189,73,-0.3041227846109278],[113,189,74,-0.3021781406420818],[113,189,75,-0.3001068764448832],[113,189,76,-0.2979105806960384],[113,189,77,-0.29559100428172236],[113,189,78,-0.29315006304548463],[113,189,79,-0.290589840545326],[113,190,64,-0.3160464464593824],[113,190,65,-0.31528916692542786],[113,190,66,-0.31439765931673036],[113,190,67,-0.31337217594129785],[113,190,68,-0.31221310713789585],[113,190,69,-0.3109209839421746],[113,190,70,-0.30949648076192593],[113,190,71,-0.30794041806153216],[113,190,72,-0.30625376505556634],[113,190,73,-0.30443764241161564],[113,190,74,-0.30249332496218095],[113,190,75,-0.30042224442583476],[113,190,76,-0.2982259921375162],[113,190,77,-0.29590632178799126],[113,190,78,-0.29346515217249847],[113,190,79,-0.2909045699485374],[113,191,64,-0.31625617109222526],[113,191,65,-0.31550035812391286],[113,191,66,-0.31461018041627475],[113,191,67,-0.31358589144902527],[113,191,68,-0.3124278828508308],[113,191,69,-0.3111366870662663],[113,191,70,-0.3097129800318831],[113,191,71,-0.3081575838614454],[113,191,72,-0.3064714695402957],[113,191,73,-0.30465575962892477],[113,191,74,-0.30271173097559356],[113,191,75,-0.3006408174381934],[113,191,76,-0.29844461261522215],[113,191,77,-0.29612487258590225],[113,191,78,-0.29368351865946485],[113,191,79,-0.2911226401335536],[113,192,64,-0.3163768782801635],[113,192,65,-0.315622303145758],[113,192,66,-0.31473324873898945],[113,192,67,-0.31370996951883046],[113,192,68,-0.3125528581923259],[113,192,69,-0.31126244838225015],[113,192,70,-0.3098394173038598],[113,192,71,-0.3082845884507941],[113,192,72,-0.3065989342900922],[113,192,73,-0.3047835789663903],[113,192,74,-0.30283980101515606],[113,192,75,-0.3007690360851454],[113,192,76,-0.2985728796699526],[113,192,77,-0.2962530898486889],[113,192,78,-0.2938115900358057],[113,192,79,-0.29125047174002205],[113,193,64,-0.31641530934062456],[113,193,65,-0.31566175760237314],[113,193,66,-0.3147736325579372],[113,193,67,-0.31375118946808844],[113,193,68,-0.31259482192310206],[113,193,69,-0.31130506451099804],[113,193,70,-0.3098825954948563],[113,193,71,-0.3083282394992716],[113,193,72,-0.30664297020590514],[113,193,73,-0.30482791305820645],[113,193,74,-0.3028843479751532],[113,193,75,-0.3008137120742024],[113,193,76,-0.29861760240331836],[113,193,77,-0.29629777868211393],[113,193,78,-0.29385616605212583],[113,193,79,-0.29129485783617304],[113,194,64,-0.31637857267830094],[113,194,65,-0.3156258457100607],[113,194,66,-0.31473847016914547],[113,194,67,-0.3137167019563687],[113,194,68,-0.31256093536727114],[113,194,69,-0.3112717057608275],[113,194,70,-0.3098496922372218],[113,194,71,-0.30829572032474406],[113,194,72,-0.30661076467577875],[113,194,73,-0.30479595177194485],[113,194,74,-0.3028525626382492],[113,194,75,-0.30078203556643357],[113,194,76,-0.29858596884739186],[113,194,77,-0.29626612351268433],[113,194,78,-0.2938244260851772],[113,194,79,-0.29126297133875434],[113,195,64,-0.3162741508314556],[113,195,65,-0.3155220673792216],[113,195,66,-0.3146352770216041],[113,195,67,-0.3136140361541325],[113,195,68,-0.31245873961764414],[113,195,69,-0.3111699233673568],[113,195,70,-0.30974826715100034],[113,195,71,-0.30819459719606357],[113,195,72,-0.30650988890611786],[113,195,73,-0.3046952695662898],[113,195,74,-0.302752021057735],[113,195,75,-0.3006815825812955],[113,195,76,-0.29848555339022154],[113,195,77,-0.2961656955319786],[113,195,78,-0.2937239365991725],[113,195,79,-0.2911623724895366],[113,196,64,-0.3161099075697822],[113,196,65,-0.3153583053555723],[113,196,66,-0.3144719528997121],[113,196,67,-0.31345110696428846],[113,196,68,-0.3122961627942985],[113,196,69,-0.3110076567869934],[113,196,70,-0.309586269170279],[113,196,71,-0.30803282669022225],[113,196,72,-0.30634830530762946],[113,196,73,-0.30453383290376423],[113,196,74,-0.30259069199506394],[113,196,75,-0.30052032245703053],[113,196,76,-0.2983243242571777],[113,196,77,-0.2960044601970614],[113,196,78,-0.2935626586634169],[113,196,79,-0.2910010163883533],[113,197,64,-0.3158940950438641],[113,197,65,-0.3151428324134077],[113,197,66,-0.314256789158198],[113,197,67,-0.3132362222966423],[113,197,68,-0.3120815273564358],[113,197,69,-0.3107932410441012],[113,197,70,-0.30937204392357553],[113,197,71,-0.30781876310390166],[113,197,72,-0.3061343749359853],[113,197,73,-0.3043200077184893],[113,197,74,-0.30237694441271923],[113,197,75,-0.3003066253666785],[113,197,76,-0.29811065104817835],[113,197,77,-0.2957907847870237],[113,197,78,-0.29334895552630225],[113,197,79,-0.2907872605827252],[113,198,64,-0.31563536098618894],[113,198,65,-0.3148843186008702],[113,198,66,-0.31399847600948383],[113,198,67,-0.31297809039520197],[113,198,68,-0.31182355746749635],[113,198,69,-0.3105354141318012],[113,198,70,-0.3091143411682249],[113,198,71,-0.30756116591936056],[113,198,72,-0.30587686498715816],[113,198,73,-0.3040625669389341],[113,198,74,-0.3021195550223662],[113,198,75,-0.3000492698896571],[113,198,76,-0.29785331233074863],[113,198,77,-0.2955334460156098],[113,198,78,-0.2930916002456233],[113,198,79,-0.2905298727140241],[113,199,64,-0.3153427559637453],[113,199,65,-0.31459183853725237],[113,199,66,-0.3137061098635133],[113,199,67,-0.31268582721836724],[113,199,68,-0.3115313864135508],[113,199,69,-0.3102433244664322],[113,199,70,-0.30882232227879247],[113,199,71,-0.30726920732470275],[113,199,72,-0.30558495634746496],[113,199,73,-0.30377069806568346],[113,199,74,-0.3018277158883248],[113,199,75,-0.2997574506389409],[113,199,76,-0.2975615032889448],[113,199,77,-0.2952416376999544],[113,199,78,-0.2927997833752364],[113,199,79,-0.29023803822019933],[113,200,64,-0.31502574068219413],[113,200,65,-0.3142748787623246],[113,200,66,-0.3133892007200383],[113,200,67,-0.31236896387198865],[113,200,68,-0.3112145640749665],[113,200,69,-0.30992653839566775],[113,200,70,-0.30850556778950244],[113,200,71,-0.30695247978850493],[113,200,72,-0.3052682511983016],[113,200,73,-0.3034540108042142],[113,200,74,-0.3015110420863446],[113,200,75,-0.2994407859438273],[113,200,76,-0.2972448434281305],[113,200,77,-0.2949249784854264],[113,200,78,-0.29248312070806004],[113,200,79,-0.2899213680950664],[113,201,64,-0.31469419334160753],[113,201,65,-0.31394334513767974],[113,201,66,-0.31305767961335595],[113,201,67,-0.31203745409529515],[113,201,68,-0.3108830644513372],[113,201,69,-0.30959504776027624],[113,201,70,-0.3081740849906798],[113,201,71,-0.3066210036888035],[113,201,72,-0.30493678067556984],[113,201,73,-0.3031225447526754],[113,201,74,-0.30117957941768303],[113,201,75,-0.2991093255882835],[113,201,76,-0.2969133843356001],[113,201,77,-0.29459351962656755],[113,201,78,-0.29215166107540547],[113,201,79,-0.2895899067041422],[113,202,64,-0.31368524464153624],[113,202,65,-0.3129343940719864],[113,202,66,-0.3120487262508925],[113,202,67,-0.31102849850527226],[113,202,68,-0.30987410670323967],[113,202,69,-0.3085860879237784],[113,202,70,-0.30716512313555855],[113,202,71,-0.3056120398848482],[113,202,72,-0.3039278149924899],[113,202,73,-0.30211357726000543],[113,202,74,-0.30017061018468594],[113,202,75,-0.29810035468385054],[113,202,76,-0.29590441182814886],[113,202,77,-0.29358454558393654],[113,202,78,-0.2911426855647474],[113,202,79,-0.28858092979181416],[113,203,64,-0.3136809406199773],[113,203,65,-0.31293004154177073],[113,203,66,-0.31204432697355367],[113,203,67,-0.31102405424437896],[113,203,68,-0.30986961922245404],[113,203,69,-0.30858155898486817],[113,203,70,-0.30716055449636237],[113,203,71,-0.305607433297195],[113,203,72,-0.3039231722000706],[113,203,73,-0.3021088999961987],[113,203,74,-0.3001659001703352],[113,203,75,-0.29809561362499337],[113,203,76,-0.2958996414136993],[113,203,77,-0.29357974748331794],[113,203,78,-0.2911378614254768],[113,203,79,-0.28857608123703826],[113,204,64,-0.31366610311872634],[113,204,65,-0.31291503681383537],[113,204,66,-0.3120291610915694],[113,204,67,-0.3110087332879985],[113,204,68,-0.30985414927165156],[113,204,69,-0.30856594611308663],[113,204,70,-0.3071448047634999],[113,204,71,-0.305591552742432],[113,204,72,-0.3039071668345341],[113,204,73,-0.3020927757954639],[113,204,74,-0.3001496630667645],[113,204,75,-0.29807926949990926],[113,204,76,-0.29588319608939206],[113,204,77,-0.29356320671488667],[113,204,78,-0.2911212308925021],[113,204,79,-0.28855936653508607],[113,205,64,-0.3132983486443881],[113,205,65,-0.31254692686540064],[113,205,66,-0.31166070857306494],[113,205,67,-0.3106399511187449],[113,205,68,-0.30948505037202834],[113,205,69,-0.30819654338995806],[113,205,70,-0.30677511109530253],[113,205,71,-0.30522158096391894],[113,205,72,-0.3035369297211753],[113,205,73,-0.30172228604750007],[113,205,74,-0.2997789332929114],[113,205,75,-0.29770831220071226],[113,205,76,-0.295512023640226],[113,205,77,-0.2931918313486014],[113,205,78,-0.2907496646817098],[113,205,79,-0.28818762137408904],[113,206,64,-0.31290807434271806],[113,206,65,-0.31215604181992984],[113,206,66,-0.31126923494780445],[113,206,67,-0.31024791110452177],[113,206,68,-0.3090924661620209],[113,206,69,-0.30780343715465097],[113,206,70,-0.3063815049568557],[113,206,71,-0.30482749696994826],[113,206,72,-0.30314238981793995],[113,206,73,-0.3013273120524945],[113,206,74,-0.2993835468668563],[113,206,75,-0.29731253481894093],[113,206,76,-0.2951158765634635],[113,206,77,-0.29279533559313153],[113,206,78,-0.29035284098892655],[113,206,79,-0.2877904901794286],[113,207,64,-0.3124897291201111],[113,207,65,-0.3117367668615766],[113,207,66,-0.3108490639838942],[113,207,67,-0.309826877906899],[113,207,68,-0.30867060450693395],[113,207,69,-0.3073807807846143],[113,207,70,-0.30595808754161913],[113,207,71,-0.30440335206656965],[113,207,72,-0.30271755082995433],[113,207,73,-0.3009018121881707],[113,207,74,-0.2989574190965413],[113,207,75,-0.2968858118314813],[113,207,76,-0.2946885907217004],[113,207,77,-0.29236751888846124],[113,207,78,-0.28992452499492405],[113,207,79,-0.2873617060045247],[113,208,64,-0.3120380611092942],[113,208,65,-0.3112837894663939],[113,208,66,-0.31039482469351765],[113,208,67,-0.3093714242703546],[113,208,68,-0.3082139840806256],[113,208,69,-0.3069230410785967],[113,208,70,-0.30549927596461357],[113,208,71,-0.30394351586971047],[113,208,72,-0.30225673704926204],[113,208,73,-0.3004400675857424],[113,208,74,-0.2984947901004469],[113,208,75,-0.29642234447436266],[113,208,76,-0.2942243305780601],[113,208,77,-0.29190251101063636],[113,208,78,-0.28945881384773475],[113,208,79,-0.2868953353985896],[113,209,64,-0.3115481112458499],[113,209,65,-0.3107920929192275],[113,209,66,-0.30990144479244974],[113,209,67,-0.3088764244266561],[113,209,68,-0.30771742771699706],[113,209,69,-0.30642499155747693],[113,209,70,-0.3049997965148067],[113,209,71,-0.3034426695113204],[113,209,72,-0.30175458651692233],[113,209,73,-0.29993667525013135],[113,209,74,-0.2979902178880772],[113,209,75,-0.29591665378563237],[113,209,76,-0.29371758220355715],[113,209,77,-0.2913947650456823],[113,209,78,-0.28895012960515853],[113,209,79,-0.28638577131972],[113,210,64,-0.31101520690058415],[113,210,65,-0.3102569498869202],[113,210,66,-0.3093641442163324],[113,210,67,-0.30833704755643576],[113,210,68,-0.3071760558190887],[113,210,69,-0.30588170582309104],[113,210,70,-0.30445467796587766],[113,210,71,-0.3028957989042609],[113,210,72,-0.3012060442441903],[113,210,73,-0.29938654123959485],[113,210,74,-0.29743857150016295],[113,210,75,-0.2953635737082434],[113,210,76,-0.29316314634474605],[113,210,77,-0.2908390504240651],[113,210,78,-0.2883932122380546],[113,210,79,-0.28582772610900586],[113,211,64,-0.31043495556776524],[113,211,65,-0.30967391604785555],[113,211,66,-0.3087784286937365],[113,211,67,-0.30774875130798196],[113,211,68,-0.30658527982580586],[113,211,69,-0.30528855097508933],[113,211,70,-0.3038592449453853],[113,211,71,-0.30229818806595543],[113,211,72,-0.300606355492805],[113,211,73,-0.2987848739047837],[113,211,74,-0.2968350242086055],[113,211,75,-0.29475824425297226],[113,211,76,-0.29255613155167826],[113,211,77,-0.29023044601572145],[113,211,78,-0.28778311269444723],[113,211,79,-0.28521622452567597],[113,212,64,-0.3098032386092209],[113,212,65,-0.30903882377782566],[113,212,66,-0.30814008337599863],[113,212,67,-0.30710727537323823],[113,212,68,-0.30594079573626587],[113,212,69,-0.3046411810858075],[113,212,70,-0.3032091113623314],[113,212,71,-0.30164541250079635],[113,212,72,-0.2999510591143758],[113,212,73,-0.2981271771872267],[113,212,74,-0.2961750467761547],[113,212,75,-0.29409610472136327],[113,212,76,-0.29189194736615964],[113,212,77,-0.2895643332856478],[113,212,78,-0.28711518602443065],[113,212,79,-0.2845465968432762],[113,213,64,-0.3091162050542784],[113,213,65,-0.30834777589221085],[113,213,66,-0.3074451665238189],[113,213,67,-0.3064086351209936],[113,213,68,-0.30523857769174834],[113,213,69,-0.3039355307331376],[113,213,70,-0.3025001738930997],[113,213,71,-0.3009333326412872],[113,213,72,-0.29923598094884685],[113,213,73,-0.29740924397721713],[113,213,74,-0.2954544007757983],[113,213,75,-0.2933728869886779],[113,213,76,-0.291166297570289],[113,213,77,-0.2888363895100291],[113,213,78,-0.28638508456586176],[113,213,79,-0.2838144720068567],[113,214,64,-0.3083702654555792],[113,214,65,-0.3075971394444993],[113,214,66,-0.30669000325064844],[113,214,67,-0.30564911528729244],[113,214,68,-0.3044748716152811],[113,214,69,-0.3031678085914301],[113,214,70,-0.3017286055258048],[113,214,71,-0.300158087347956],[113,214,72,-0.29845722728207547],[113,214,73,-0.29662714953114144],[113,214,74,-0.2946691319699014],[113,214,75,-0.2925846088468843],[113,214,76,-0.2903751734953124],[113,214,77,-0.2880425810529438],[113,214,78,-0.28558875119086735],[113,214,79,-0.28301577085120544],[113,215,64,-0.3075620858007413],[113,215,65,-0.3067835395811237],[113,215,66,-0.3058711793228396],[113,215,67,-0.3048252637230432],[113,215,68,-0.303646188908834],[113,215,69,-0.3023344910803992],[113,215,70,-0.3008908491630222],[113,215,71,-0.2993160874680083],[113,215,72,-0.29761117836249473],[113,215,73,-0.2957772449482142],[113,215,74,-0.29381556374906226],[113,215,75,-0.2917275674076568],[113,215,76,-0.2895148473907627],[113,215,77,-0.28717915670361205],[113,215,78,-0.2847224126131408],[113,215,79,-0.28214669938009806],[113,216,64,-0.3066885814798911],[113,216,65,-0.30590385345263293],[113,216,66,-0.3049855350165863],[113,216,67,-0.3039338851988419],[113,216,68,-0.30274930020814583],[113,216,69,-0.30143231607205634],[113,216,70,-0.2999836112829236],[113,216,71,-0.2984040094527487],[113,216,72,-0.29669448197688497],[113,216,73,-0.2948561507066523],[113,216,74,-0.29289029063071526],[113,216,75,-0.29079833256541276],[113,216,76,-0.288581865853912],[113,216,77,-0.2862426410742168],[113,216,78,-0.2837825727560541],[113,216,79,-0.2812037421065896],[113,217,64,-0.3057469113090331],[113,217,65,-0.3049552041811697],[113,217,66,-0.30403015903161423],[113,217,67,-0.30297203526698113],[113,217,68,-0.3017812291951466],[113,217,69,-0.3004582766556352],[113,217,70,-0.2990038556587826],[113,217,71,-0.2974187890337302],[113,217,72,-0.295704047085218],[113,217,73,-0.2938607502592431],[113,217,74,-0.2918901718174368],[113,217,75,-0.28979374052034645],[113,217,76,-0.2875730433194964],[113,217,77,-0.2852298280582568],[113,217,78,-0.2827660061815447],[113,217,79,-0.28018365545430834],[113,218,64,-0.3047344716092931],[113,218,65,-0.30393495488428923],[113,218,66,-0.3030023824616651],[113,218,67,-0.30193701418068297],[113,218,68,-0.30073924646801753],[113,218,69,-0.2994096149605503],[113,218,70,-0.2979487971368907],[113,218,71,-0.29635761495767576],[113,218,72,-0.294637037514616],[113,218,73,-0.2927881836883566],[113,218,74,-0.29081232481500385],[113,218,75,-0.28871088736150574],[113,218,76,-0.2864854556097598],[113,218,77,-0.2841377743494765],[113,218,78,-0.281669751579823],[113,218,79,-0.27908346121979977],[113,219,64,-0.30364889034202713],[113,219,65,-0.30284070275510966],[113,219,66,-0.30189977282175884],[113,219,67,-0.30082636087054215],[113,219,68,-0.2996208634688754],[113,219,69,-0.29828381603737397],[113,219,70,-0.296815895472871],[113,219,71,-0.29521792278015757],[113,219,72,-0.293490865712411],[113,219,73,-0.29163584142038157],[113,219,74,-0.2896541191101857],[113,219,75,-0.2875471227098957],[113,219,76,-0.2853164335447993],[113,219,77,-0.28296379302135766],[113,219,78,-0.2804911053198844],[113,219,79,-0.2779004400959014],[113,220,64,-0.3024880212997576],[113,220,65,-0.3016702731987594],[113,220,66,-0.3007201281322037],[113,220,67,-0.29963784697814555],[113,220,68,-0.2984238264690472],[113,220,69,-0.29707860179680134],[113,220,70,-0.29560284922635616],[113,220,71,-0.2939973887180003],[113,220,72,-0.292263186558271],[113,220,73,-0.2904013579995558],[113,220,74,-0.28841316990823795],[113,220,75,-0.28630004342157434],[113,220,76,-0.2840635566131786],[113,220,77,-0.28170544716713863],[113,220,78,-0.27922761506079297],[113,220,79,-0.276632125256116],[113,221,64,-0.3012499383529956],[113,221,65,-0.3004217140251746],[113,221,66,-0.29946147105940535],[113,221,67,-0.29836947094692545],[113,221,68,-0.2971461106119897],[113,221,69,-0.29579192500665275],[113,221,70,-0.29430758971408255],[113,221,71,-0.29269392356046264],[113,221,72,-0.2909518912354475],[113,221,73,-0.28908260592124224],[113,221,74,-0.28708733193015223],[113,221,75,-0.2849674873507986],[113,221,76,-0.2827246467028667],[113,221,77,-0.28036054360041784],[113,221,78,-0.2778770734237903],[113,221,79,-0.27527629600003956],[113,222,64,-0.2999329297529221],[113,222,65,-0.29909328969822524],[113,222,66,-0.2981220431134546],[113,222,67,-0.2970194521702203],[113,222,68,-0.2957859140138317],[113,222,69,-0.2944219633468983],[113,222,70,-0.2929282750213845],[113,222,71,-0.29130566663917656],[113,222,72,-0.2895551011611248],[113,222,73,-0.2876776895246327],[113,222,74,-0.28567469326964057],[113,222,75,-0.2835475271731954],[113,222,76,-0.2812977618924779],[113,222,77,-0.2789271266163168],[113,222,78,-0.27643751172521125],[113,222,79,-0.27383097145982127],[113,223,64,-0.29853549248989575],[113,223,65,-0.2976834756411355],[113,223,66,-0.2967002989024561],[113,223,67,-0.295586225196508],[113,223,68,-0.2943416519215012],[113,223,69,-0.2929671135226589],[113,223,70,-0.2914632840720427],[113,223,71,-0.28983097985680384],[113,223,72,-0.28807116197582683],[113,223,73,-0.2861849389448371],[113,223,74,-0.2841735693098161],[113,223,75,-0.28203846426892054],[113,223,76,-0.27978119030277515],[113,223,77,-0.27740347181316605],[113,223,78,-0.2749071937701624],[113,223,79,-0.2722944043676162],[113,224,64,-0.2970563267078501],[113,224,65,-0.2961909525982577],[113,224,66,-0.29519490044366226],[113,224,67,-0.29406843399187677],[113,224,68,-0.2928119509285043],[113,224,69,-0.2914259854352579],[113,224,70,-0.28991121075656],[113,224,71,-0.2882684417744773],[113,224,72,-0.2864986375919554],[113,224,73,-0.28460290412442635],[113,224,74,-0.2825824966996341],[113,224,75,-0.2804388226658723],[113,224,76,-0.27817344400850186],[113,224,77,-0.2757880799747817],[113,224,78,-0.27328460970703394],[113,224,79,-0.2706650748840973],[113,225,64,-0.2954943301745504],[113,225,65,-0.2946146010531763],[113,225,66,-0.293604711531387],[113,225,67,-0.29246492625970555],[113,225,68,-0.2911956432483255],[113,225,69,-0.28979739641128655],[113,225,70,-0.2882708581188319],[113,225,71,-0.28661684175800095],[113,225,72,-0.2848363043014258],[113,225,73,-0.28293034888440105],[113,225,74,-0.2809002273900706],[113,225,75,-0.2787473430429316],[113,225,76,-0.2764732530105185],[113,225,77,-0.27407967101330066],[113,225,78,-0.2715684699428176],[113,225,79,-0.2689416844880015],[113,226,64,-0.2938485928076716],[113,226,65,-0.2929534957030996],[113,226,66,-0.29192879216165246],[113,226,67,-0.2907747478175099],[113,226,68,-0.28949176104540875],[113,226,69,-0.28808036548964866],[113,226,70,-0.28654123260116915],[113,226,71,-0.28487517418275854],[113,226,72,-0.2830831449423594],[113,226,73,-0.2811662450545416],[113,226,74,-0.2791257227299867],[113,226,75,-0.2769629767931826],[113,226,76,-0.274679559268193],[113,226,77,-0.2722771779725337],[113,226,78,-0.26975769911918046],[113,226,79,-0.26712314992666],[113,227,64,-0.2921183912567692],[113,227,65,-0.29120689998961014],[113,227,66,-0.29016639301364877],[113,227,67,-0.2889971370310306],[113,227,68,-0.2876995308237932],[113,227,69,-0.2862741077666534],[113,227,70,-0.28472153834775193],[113,227,71,-0.2830426326974165],[113,227,72,-0.28123834312490714],[113,227,73,-0.27930976666321605],[113,227,74,-0.27725814762176404],[113,227,75,-0.2750848801471949],[113,227,76,-0.27279151079212893],[113,227,77,-0.2703797410919121],[113,227,78,-0.2678514301493806],[113,227,79,-0.2652085972275958],[113,228,64,-0.2903031835411145],[113,228,65,-0.28937426068574845],[113,228,66,-0.2883169499879724],[113,228,67,-0.2871315193055344],[113,228,68,-0.28581836787337433],[113,228,69,-0.28437802879912977],[113,228,70,-0.2828111715664794],[113,228,71,-0.28111860454638204],[113,228,72,-0.27930127751617695],[113,228,73,-0.2773602841866164],[113,228,74,-0.27529686473667503],[113,228,75,-0.27311240835633255],[113,228,76,-0.2708084557971968],[113,228,77,-0.26838670193099945],[113,228,78,-0.2658489983159863],[113,228,79,-0.2631973557711552],[113,229,64,-0.2884026037433399],[113,229,65,-0.2874552025393732],[113,229,66,-0.2863800788015918],[113,229,67,-0.28517750163427114],[113,229,68,-0.2838478707737355],[113,229,69,-0.28239171906550753],[113,229,70,-0.2808097149491656],[113,229,71,-0.2791026649509676],[113,229,72,-0.2772715161842061],[113,229,73,-0.2753173588573671],[113,229,74,-0.2732414287899336],[113,229,75,-0.27104510993603603],[113,229,76,-0.2687299369158117],[113,229,77,-0.2662975975545071],[113,229,78,-0.263749935429346],[113,229,79,-0.26108895242411545],[113,230,64,-0.28641645675898686],[113,230,65,-0.2854495229728916],[113,230,66,-0.2843555696396326],[113,230,67,-0.28313486720418246],[113,230,68,-0.2817878159556443],[113,230,69,-0.28031494848495697],[113,230,70,-0.2787169321501708],[113,230,71,-0.27699457154935114],[113,230,72,-0.2751488110010757],[113,230,73,-0.27318073703259904],[113,230,74,-0.27109158087552254],[113,230,75,-0.26888272096917376],[113,230,76,-0.2665556854715585],[113,230,77,-0.2641121547779167],[113,230,78,-0.26155396404690645],[113,230,79,-0.2588831057343688],[113,231,64,-0.2843447131019152],[113,231,65,-0.2833571868393191],[113,231,66,-0.28224338186394093],[113,231,67,-0.28100357005881993],[113,231,68,-0.279638152320171],[113,231,69,-0.27814766099454835],[113,231,70,-0.27653276232343205],[113,231,71,-0.2747942588952963],[113,231,72,-0.27293309210512584],[113,231,73,-0.2709503446214535],[113,231,74,-0.2688472428607568],[113,231,75,-0.2666251594694192],[113,231,76,-0.2642856158131165],[113,231,77,-0.2618302844736623],[113,231,78,-0.2592609917533346],[113,231,79,-0.25657972018663844],[113,232,64,-0.2821875037655196],[113,232,65,-0.28117832123461084],[113,232,66,-0.28004363877836846],[113,232,67,-0.2787837298184157],[113,232,68,-0.2773989959153733],[113,232,69,-0.27588996918437125],[113,232,70,-0.27425731471782955],[113,232,71,-0.27250183301556863],[113,232,72,-0.27062446242220994],[113,232,73,-0.26862628157194746],[113,232,74,-0.2665085118405197],[113,232,75,-0.2642725198045952],[113,232,76,-0.2619198197084269],[113,232,77,-0.25945207593781305],[113,232,78,-0.2568711055013827],[113,232,79,-0.2541788805191647],[113,233,64,-0.27994511513985165],[113,233,65,-0.27891321036637096],[113,233,66,-0.2777566224508816],[113,233,67,-0.2764756264572099],[113,233,68,-0.2750706246706519],[113,233,69,-0.2735421489907208],[113,233,70,-0.27189086333099943],[113,233,71,-0.27011756602615744],[113,233,72,-0.2682231922460995],[113,233,73,-0.2662088164173174],[113,233,74,-0.26407565465128346],[113,233,75,-0.2618250671800928],[113,233,76,-0.2594585607992117],[113,233,77,-0.2569777913173683],[113,233,78,-0.2543845660136097],[113,233,79,-0.2516808461014738],[113,234,64,-0.27761798398460624],[113,234,65,-0.27656229047888736],[113,234,66,-0.27538276859245137],[113,234,67,-0.2740796951379876],[113,234,68,-0.272653473188727],[113,234,69,-0.2711046344473018],[113,234,70,-0.2694338416215408],[113,234,71,-0.26764189080725487],[113,234,72,-0.2657297138779856],[113,234,73,-0.26369838088178543],[113,234,74,-0.26154910244486473],[113,234,75,-0.2592832321823195],[113,234,76,-0.25690226911579395],[113,234,77,-0.2544078600981122],[113,234,78,-0.25180180224490467],[113,234,79,-0.24908604537317958],[113,235,64,-0.2752066924579062],[113,235,65,-0.27412614483443776],[113,235,66,-0.27292266149265554],[113,235,67,-0.2715965211037614],[113,235,68,-0.2701481275951758],[113,235,69,-0.26857801249438784],[113,235,70,-0.2668868372795563],[113,235,71,-0.2650753957369256],[113,235,72,-0.2631446163250193],[113,235,73,-0.26109556454568816],[113,235,74,-0.2589294453218457],[113,235,75,-0.2566476053821025],[113,235,76,-0.2542515356521545],[113,235,77,-0.25174287365296366],[113,235,78,-0.24912340590574933],[113,235,79,-0.24639507034374786],[113,236,64,-0.2727119632010012],[113,236,65,-0.2716054987509724],[113,236,66,-0.27037702901211547],[113,236,67,-0.2690268346267184],[113,236,68,-0.26755532044564634],[113,236,69,-0.2659630178460509],[113,236,70,-0.26425058705564286],[113,236,71,-0.26241881948358914],[113,236,72,-0.2604686400580003],[113,236,73,-0.2584011095700828],[113,236,74,-0.2562174270247889],[113,236,75,-0.2539189319981784],[113,236,76,-0.25150710700134415],[113,236,77,-0.24898357985094133],[113,236,78,-0.2463501260463392],[113,236,79,-0.24360867115335028],[113,237,64,-0.27013465447882923],[113,237,65,-0.2690012146961306],[113,237,66,-0.26774673763170853],[113,237,67,-0.26637150601437576],[113,237,68,-0.26487592569069407],[113,237,69,-0.2632605279154139],[113,237,70,-0.26152597164827884],[113,237,71,-0.2596730458572588],[113,237,72,-0.25770267182817297],[113,237,73,-0.25561590548078317],[113,237,74,-0.25341393969118386],[113,237,75,-0.2510981066207084],[113,237,76,-0.2486698800512014],[113,237,77,-0.24613087772669506],[113,237,78,-0.24348286370151284],[113,237,79,-0.2407277506947515],[113,238,64,-0.2674757553763699],[113,238,65,-0.2663142874375143],[113,238,66,-0.2650327875584909],[113,238,67,-0.263631540672876],[113,238,68,-0.26211095369817106],[113,238,69,-0.2604715577978458],[113,238,70,-0.25871401064953625],[113,238,71,-0.2568390987194644],[113,238,72,-0.2548477395430435],[113,238,73,-0.25274098401174483],[113,238,74,-0.2505200186660552],[113,238,75,-0.24818616799474524],[113,238,76,-0.24574089674029442],[113,238,77,-0.2431858122105175],[113,238,78,-0.24052266659640698],[113,238,79,-0.23775335929615116],[113,239,64,-0.26473638105092856],[113,239,65,-0.2635458392493588],[113,239,66,-0.26223630788846686],[113,239,67,-0.26080807422756],[113,239,68,-0.25926154633330634],[113,239,69,-0.25759725531224786],[113,239,70,-0.2558158575492583],[113,239,71,-0.25391813695200294],[113,239,72,-0.2519050072013701],[113,239,73,-0.24977751400794812],[113,239,74,-0.24753683737437748],[113,239,75,-0.24518429386379847],[113,239,76,-0.2427213388742404],[113,239,77,-0.24014956891899464],[113,239,78,-0.2374707239129914],[113,239,79,-0.23468668946513283],[113,240,64,-0.26191776804023215],[113,240,65,-0.26069711517548577],[113,240,66,-0.25935855182608614],[113,240,67,-0.2579023677007024],[113,240,68,-0.25632897209636074],[113,240,69,-0.2546388961003072],[113,240,70,-0.25283279479758525],[113,240,71,-0.2509114494843965],[113,240,72,-0.2488757698872034],[113,240,73,-0.24672679638765682],[113,240,74,-0.2444657022531721],[113,240,75,-0.2420937958733761],[113,240,76,-0.2396125230022721],[113,240,77,-0.2370234690061629],[113,240,78,-0.23432836111735467],[113,240,79,-0.2315290706935912],[113,241,64,-0.25902126962643346],[113,241,65,-0.25776947834862796],[113,241,66,-0.2564008919605668],[113,241,67,-0.25491580274649916],[113,241,68,-0.25331462131795157],[113,241,69,-0.2515978787838161],[113,241,70,-0.2497662289259217],[113,241,71,-0.2478204503801511],[113,241,72,-0.24576144882307038],[113,241,73,-0.243590259164148],[113,241,74,-0.24130804774338743],[113,241,75,-0.23891611453459938],[113,241,76,-0.23641589535415708],[113,241,77,-0.23380896407527696],[113,241,78,-0.23109703484784505],[113,241,79,-0.2282819643237416],[113,242,64,-0.2560483512558889],[113,242,65,-0.254764405365999],[113,242,66,-0.2533648155989081],[113,242,67,-0.2518498769431796],[113,242,68,-0.25022000141190825],[113,242,69,-0.24847572017992003],[113,242,70,-0.24661768572621057],[113,242,71,-0.24464667398168505],[113,242,72,-0.24256358648217113],[113,242,73,-0.24036945252677744],[113,242,74,-0.2380654313414199],[113,242,75,-0.23565281424775097],[113,242,76,-0.23313302683732418],[113,242,77,-0.23050763115104422],[113,242,78,-0.22777832786391838],[113,242,79,-0.22494695847506552],[113,243,64,-0.2530005860148703],[113,243,65,-0.251683481721259],[113,243,66,-0.25025192015575237],[113,243,67,-0.24870619914239733],[113,243,68,-0.24704673218582596],[113,243,69,-0.24527405057445573],[113,243,70,-0.24338880548867559],[113,243,71,-0.24139177011408408],[113,243,72,-0.23928384175974537],[113,243,73,-0.2370660439815423],[113,243,74,-0.23473952871044423],[113,243,75,-0.23230557838592514],[113,243,76,-0.22976560809436708],[113,243,77,-0.22712116771249624],[113,243,78,-0.2243739440558694],[113,243,79,-0.2215257630323645],[113,244,64,-0.24987965016113334],[113,244,65,-0.24852839729281107],[113,244,66,-0.24706390860002314],[113,244,67,-0.24548648487582958],[113,244,68,-0.24379654120923877],[113,244,69,-0.24199460905330683],[113,244,70,-0.24008133829796074],[113,244,71,-0.238057499347614],[113,244,72,-0.2359239852035382],[113,244,73,-0.23368181355107043],[113,244,74,-0.2313321288514767],[113,244,75,-0.22887620443870227],[113,244,76,-0.2263154446208483],[113,244,77,-0.22365138678642005],[113,244,78,-0.2208857035153633],[113,244,79,-0.21802020469484595],[113,245,64,-0.24668731871126903],[113,245,65,-0.24530094188834084],[113,245,66,-0.2438025849582589],[113,245,67,-0.24219255181890242],[113,245,68,-0.24047125923933133],[113,245,69,-0.23863923889169203],[113,245,70,-0.2366971393875762],[113,245,71,-0.2346457283189014],[113,245,72,-0.23248589430327815],[113,245,73,-0.2302186490339445],[113,245,74,-0.2278451293340834],[113,245,75,-0.22536659921576063],[113,245,76,-0.2227844519433162],[113,245,77,-0.22010021210125974],[113,245,78,-0.217315537666683],[113,245,79,-0.21443222208614743],[113,246,64,-0.2434254610839871],[113,246,65,-0.2420030008457612],[113,246,66,-0.24046984987479858],[113,246,67,-0.23882631531179876],[113,246,68,-0.2370728157043478],[113,246,69,-0.23520988300154821],[113,246,70,-0.23323816455282065],[113,246,71,-0.2311584251109492],[113,246,72,-0.22897154883933368],[113,246,73,-0.22667854132353182],[113,246,74,-0.22428053158690253],[113,246,75,-0.2217787741105932],[113,246,76,-0.2191746508577015],[113,246,77,-0.2164696733016599],[113,246,78,-0.21366548445886047],[113,246,79,-0.2107638609254754],[113,247,64,-0.24009603679926372],[113,247,65,-0.23863655069048417],[113,247,66,-0.23706769622874613],[113,247,67,-0.23538978393767818],[113,247,68,-0.23360323424462592],[113,247,69,-0.23170857943693146],[113,247,70,-0.2297064656220975],[113,247,71,-0.2275976546919085],[113,247,72,-0.22538302629046736],[113,247,73,-0.22306357978623836],[113,247,74,-0.22064043624789953],[113,247,75,-0.21811484042425244],[113,247,76,-0.2154881627280183],[113,247,77,-0.21276190122356953],[113,247,78,-0.20993768361861231],[113,247,79,-0.20701726925977648],[113,248,64,-0.23670109123325916],[113,248,65,-0.23520365484893446],[113,248,66,-0.2335982048076216],[113,248,67,-0.2318850551580134],[113,248,68,-0.23006462831116048],[113,248,69,-0.22813745695734466],[113,248,70,-0.22610418598653692],[113,248,71,-0.22396557441251397],[113,248,72,-0.22172249730059668],[113,248,73,-0.2193759476990943],[113,248,74,-0.21692703857426254],[113,248,75,-0.21437700474902255],[113,248,76,-0.21172720484526808],[113,248,77,-0.20897912322981127],[113,248,78,-0.2061343719639822],[113,248,79,-0.20319469275683988],[113,249,64,-0.2332427514291805],[113,249,65,-0.2317064594184689],[113,249,66,-0.230063540037874],[113,249,67,-0.22831431100521848],[113,249,68,-0.2264591968218712],[113,249,69,-0.22449873064916503],[113,249,70,-0.22243355618809302],[113,249,71,-0.22026442956235848],[113,249,72,-0.2179922212047377],[113,249,73,-0.21561791774684802],[113,249,74,-0.2131426239121158],[113,249,75,-0.21056756441220636],[113,249,76,-0.2078940858467324],[113,249,77,-0.2051236586062951],[113,249,78,-0.20225787877887413],[113,249,79,-0.19929847005952195],[113,250,64,-0.2297232219640004],[113,250,65,-0.22814718899362785],[113,250,66,-0.226465945772168],[113,250,67,-0.22467981383248592],[113,250,68,-0.22278921987549544],[113,250,69,-0.2207946976050914],[113,250,70,-0.21869688956604283],[113,250,71,-0.21649654898492499],[113,250,72,-0.21419454161405072],[113,250,73,-0.21179184757848812],[113,250,74,-0.20928956322596848],[113,250,75,-0.20668890297993725],[113,250,76,-0.2039912011955678],[113,250,77,-0.20119791401879739],[113,250,78,-0.1983106212483915],[113,250,79,-0.195331028201001],[113,251,64,-0.22614478087094914],[113,251,65,-0.2245281425486183],[113,251,66,-0.22280774113335766],[113,251,67,-0.22098390212073715],[113,251,68,-0.21905705452300406],[113,251,69,-0.21702773266151032],[113,251,70,-0.21489657796177752],[113,251,71,-0.21266434075127616],[113,251,72,-0.2103318820598803],[113,251,73,-0.2079001754230868],[113,251,74,-0.2053703086877957],[113,251,75,-0.20274348582091428],[113,251,76,-0.20002102872059913],[113,251,77,-0.19720437903019372],[113,251,78,-0.19429509995487404],[113,251,79,-0.19129487808096024],[113,252,64,-0.22250977561794882],[113,252,65,-0.22085168937621336],[113,252,66,-0.2190913164153207],[113,252,67,-0.2172289863428689],[113,252,68,-0.21526513059672936],[113,252,69,-0.21320028419396997],[113,252,70,-0.21103508748208188],[113,252,71,-0.20877028789258756],[113,252,72,-0.2064067416969913],[113,252,73,-0.20394541576516223],[113,252,74,-0.20138738932594413],[113,252,75,-0.1987338557302578],[113,252,76,-0.19598612421650718],[113,252,77,-0.1931456216783486],[113,252,78,-0.19021389443483572],[113,252,79,-0.18719261000289633],[113,253,64,-0.21882061914191042],[113,253,65,-0.21712026508297788],[113,253,66,-0.21531912904057304],[113,253,67,-0.21341754488520848],[113,253,68,-0.211415946597114],[113,253,69,-0.20931486997067095],[113,253,70,-0.20711495432080912],[113,253,71,-0.20481694419144114],[113,253,72,-0.20242169106589958],[113,253,73,-0.1999301550794641],[113,253,74,-0.19734340673377349],[113,253,75,-0.19466262861338857],[113,253,76,-0.19188911710431777],[113,253,77,-0.18902428411456362],[113,253,78,-0.18606965879670334],[113,253,79,-0.1830268892724588],[113,254,64,-0.2150797859387943],[113,254,65,-0.21333636764072572],[113,254,66,-0.21149369957455977],[113,254,67,-0.20955212002607804],[113,254,68,-0.20751206563698166],[113,254,69,-0.20537407306387323],[113,254,70,-0.2031387806388465],[113,254,71,-0.20080693003176608],[113,254,72,-0.19837936791419764],[113,254,73,-0.19585704762507883],[113,254,74,-0.19324103083792332],[113,254,75,-0.1905324892298269],[113,254,76,-0.18773270615208493],[113,254,77,-0.18484307830247948],[113,254,78,-0.18186511739925182],[113,254,79,-0.1788004518567129],[113,255,64,-0.21128980820962034],[113,255,65,-0.2095025534943949],[113,255,66,-0.20761760779681615],[113,255,67,-0.20563531397165896],[113,255,68,-0.2035561114435233],[113,255,69,-0.20138053781941478],[113,255,70,-0.19910923050257412],[113,255,71,-0.1967429283076355],[113,255,72,-0.1942824730770777],[113,255,73,-0.19172881129905683],[113,255,74,-0.18908299572641213],[113,255,75,-0.1863461869971153],[113,255,76,-0.18351965525597236],[113,255,77,-0.18060478177763617],[113,255,78,-0.17760306059094288],[113,255,79,-0.17451610010453178],[113,256,64,-0.20745327206234015],[113,256,65,-0.20562143372625075],[113,256,66,-0.20369348882890514],[113,256,67,-0.2016697849490659],[113,256,68,-0.19955076441790343],[113,256,69,-0.19733696588424687],[113,256,70,-0.19502902588071608],[113,256,71,-0.19262768039081524],[113,256,72,-0.19013376641695057],[113,256,73,-0.18754822354946415],[113,256,74,-0.18487209553646944],[113,256,75,-0.18210653185476644],[113,256,76,-0.17925278928163846],[113,256,77,-0.17631223346759461],[113,256,78,-0.17328634051006697],[113,256,79,-0.1701766985280223],[113,257,64,-0.20357281376946768],[113,257,65,-0.20169567027631635],[113,257,66,-0.19972402931902933],[113,257,67,-0.19765824335652415],[113,257,68,-0.19549875775238562],[113,257,69,-0.193246112291882],[113,257,70,-0.19090094269948232],[113,257,71,-0.18846398215696258],[113,257,72,-0.18593606282205638],[113,257,73,-0.1833181173477484],[113,257,74,-0.18061118040199065],[113,257,75,-0.17781639018812456],[113,257,76,-0.17493498996580692],[113,257,77,-0.17196832957250563],[113,257,78,-0.16891786694557442],[113,257,79,-0.16578516964486512],[113,258,64,-0.1996511160816652],[113,258,65,-0.1977279722192231],[113,258,66,-0.1957119636835165],[113,258,67,-0.19360344797085327],[113,258,68,-0.19140287360517616],[113,258,69,-0.18911078160595624],[113,258,70,-0.18672780695620395],[113,258,71,-0.18425468007068035],[113,258,72,-0.18169222826427378],[113,258,73,-0.17904137722063146],[113,258,74,-0.1763031524608275],[113,258,75,-0.173478680812357],[113,258,76,-0.17056919187824482],[113,258,77,-0.16757601950634227],[113,258,78,-0.16450060325881644],[113,258,79,-0.161344489881794],[113,259,64,-0.19569090459718902],[113,259,65,-0.19372109209739208],[113,259,66,-0.1916600704050807],[113,259,67,-0.18950820221215758],[113,259,68,-0.18726593933288838],[113,259,69,-0.18493382412181042],[113,259,70,-0.1825124908913628],[113,259,71,-0.18000266732932552],[113,259,72,-0.1774051759160286],[113,259,73,-0.17472093534142608],[113,259,74,-0.17195096192181225],[113,259,75,-0.16909637101646924],[113,259,76,-0.16615837844404008],[113,259,77,-0.16313830189869305],[113,259,78,-0.16003756236608818],[113,259,79,-0.15685768553910323],[113,260,64,-0.19169494418709276],[113,260,65,-0.18967782231043517],[113,260,66,-0.1875711683877559],[113,260,67,-0.18537535046561893],[113,260,68,-0.18309082378052222],[113,260,69,-0.18071813212597698],[113,260,70,-0.17825790921890838],[113,260,71,-0.1757108800654632],[113,260,72,-0.17307786232618672],[113,260,73,-0.17035976768066396],[113,260,74,-0.16755760319139945],[113,260,75,-0.16467247266723073],[113,260,76,-0.16170557802606356],[113,260,77,-0.15865822065699842],[113,260,78,-0.15553180278185752],[113,260,79,-0.15232782881607043],[113,261,64,-0.18766603547638772],[113,261,65,-0.1856009915609858],[113,261,66,-0.18344811336870476],[113,261,67,-0.18120777446059821],[113,261,68,-0.1788804336291661],[113,261,69,-0.176466636213789],[113,261,70,-0.17396701541507031],[113,261,71,-0.17138229360817964],[113,261,72,-0.16871328365515353],[113,261,73,-0.16596089021625304],[113,261,74,-0.1631261110601489],[113,261,75,-0.16021003837323322],[113,261,76,-0.15721386006784088],[113,261,77,-0.1541388610894565],[113,261,78,-0.15098642472290902],[113,261,79,-0.14775803389751796],[113,262,64,-0.1836070113810625],[113,262,65,-0.1814934613568528],[113,262,66,-0.1792937943868046],[113,262,67,-0.1770083897069431],[113,262,68,-0.1746377098013196],[113,262,69,-0.17218230166500348],[113,262,70,-0.16964279806556704],[113,262,71,-0.1670199188031501],[113,262,72,-0.16431447196906823],[113,262,73,-0.16152735520305972],[113,262,74,-0.15865955694894102],[113,262,75,-0.15571215770897362],[113,262,76,-0.15268633129672338],[113,262,77,-0.149583346088486],[113,262,78,-0.14640456627328574],[113,262,79,-0.14315145310140587],[113,263,64,-0.17952073370085836],[113,263,65,-0.17735812256939815],[113,263,66,-0.17511113030790137],[113,263,67,-0.17278014198839625],[113,263,68,-0.17036562392372617],[113,263,69,-0.16786812487733144],[113,263,70,-0.16528827727109524],[113,263,71,-0.16262679839134725],[113,263,72,-0.15988449159298268],[113,263,73,-0.15706224750179743],[113,263,74,-0.154161045214806],[113,263,75,-0.1511819534988441],[113,263,76,-0.1481261319872414],[113,263,77,-0.14499483237463268],[113,263,78,-0.14178939960991904],[113,263,79,-0.13851127308733457],[113,264,64,-0.1754100897680156],[113,264,65,-0.1731978920483534],[113,264,66,-0.1709030664069553],[113,264,67,-0.16852600391332534],[113,264,68,-0.16606717484794603],[113,264,69,-0.1635271298581018],[113,264,70,-0.1609065011113352],[113,264,71,-0.15820600344662733],[113,264,72,-0.15542643552325996],[113,264,73,-0.152568680967464],[113,264,74,-0.14963370951661253],[113,264,75,-0.14662257816127128],[113,264,76,-0.14353643228488278],[113,264,77,-0.14037650680115804],[113,264,78,-0.13714412728918396],[113,264,79,-0.13384071112620394],[113,265,64,-0.1712779891518098],[113,265,65,-0.16901570929289306],[113,265,66,-0.16667257100688976],[113,265,67,-0.1642489715225896],[113,265,68,-0.1617453852284747],[113,265,69,-0.1591623647738683],[113,265,70,-0.15650054216727294],[113,265,71,-0.15376062987199196],[113,265,72,-0.15094342189899412],[113,265,73,-0.1480497948971224],[113,265,74,-0.1450807092404076],[113,265,75,-0.1420372101128004],[113,265,76,-0.1389204285900923],[113,265,77,-0.1357315827191099],[113,265,78,-0.13247197859417864],[113,265,79,-0.12914301143082363],[113,266,64,-0.16712736041901538],[113,266,65,-0.1648145331791021],[113,266,66,-0.16242263217428776],[113,266,67,-0.1599520609546825],[113,266,68,-0.1574032981585537],[113,266,69,-0.15477689855810434],[113,266,70,-0.15207349410199106],[113,266,71,-0.14929379495468076],[113,266,72,-0.14643859053259983],[113,266,73,-0.14350875053718132],[113,266,74,-0.1405052259845666],[113,266,75,-0.13742905023228064],[113,266,76,-0.1342813400026469],[113,266,77,-0.13106329640302722],[113,266,78,-0.12777620594288347],[113,266,79,-0.12442144154762924],[113,267,64,-0.16296114795011013],[113,267,65,-0.1605973387436529],[113,267,66,-0.15815625447174064],[113,267,67,-0.15563830516796007],[113,267,68,-0.15304397386347857],[113,267,69,-0.15037381757678714],[113,267,70,-0.14762846829972515],[113,267,71,-0.14480863397988802],[113,267,72,-0.14191509949937264],[113,267,73,-0.13894872764996813],[113,267,74,-0.13591046010454078],[113,267,75,-0.13280131838494158],[113,267,76,-0.12962240482619763],[113,267,77,-0.12637490353707076],[113,267,78,-0.12306008135698615],[113,267,79,-0.11967928880929302],[113,268,64,-0.15878230881144229],[113,268,65,-0.15636711402390996],[113,268,66,-0.1538764557670808],[113,268,67,-0.15131075072018263],[113,268,68,-0.14867048645163422],[113,268,69,-0.14595622235211025],[113,268,70,-0.14316859056342712],[113,268,71,-0.14030829690334662],[113,268,72,-0.13737612178625758],[113,268,73,-0.13437292113983879],[113,268,74,-0.1312996273174542],[113,268,75,-0.128157250006609],[113,268,76,-0.124946877133226],[113,268,77,-0.12166967576182786],[113,268,78,-0.11832689299162669],[113,268,79,-0.11491985684848305],[113,269,64,-0.15459380968325787],[113,269,65,-0.1521268569543648],[113,269,66,-0.1495862640993884],[113,269,67,-0.1469724546052643],[113,269,68,-0.14428592072315166],[113,269,69,-0.14152722434420872],[113,269,70,-0.13869699787071882],[113,269,71,-0.1357959450826654],[113,269,72,-0.13282484199971378],[113,269,73,-0.12978453773870863],[113,269,74,-0.12667595536643],[113,269,75,-0.12350009274794344],[113,269,76,-0.1202580233903005],[113,269,77,-0.11695089728167651],[113,269,78,-0.11357994172594421],[113,269,79,-0.11014646217264973],[113,270,64,-0.1503986238434767],[113,270,65,-0.14787957231928422],[113,270,66,-0.14528871460166343],[113,270,67,-0.1426264811471159],[113,270,68,-0.1398933690360709],[113,270,69,-0.13708994279078718],[113,270,70,-0.13421683518812677],[113,270,71,-0.13127474806730344],[113,270,72,-0.12826445313256074],[113,270,73,-0.12518679275088984],[113,270,74,-0.1220426807445289],[113,270,75,-0.11883310317858176],[113,270,76,-0.11555911914350969],[113,270,77,-0.11222186153258451],[113,270,78,-0.10882253781430179],[113,270,79,-0.10536243079971841],[113,271,64,-0.14619972820743454],[113,271,65,-0.14362826876179408],[113,271,66,-0.1409868464803814],[113,271,67,-0.13827589895080478],[113,271,68,-0.1354959282302347],[113,271,69,-0.1326475016048741],[113,271,70,-0.12973125234381988],[113,271,71,-0.12674788044741203],[113,271,72,-0.1236981533900331],[113,271,73,-0.12058290685746409],[113,271,74,-0.1174030454785358],[113,271,75,-0.11415954355142077],[113,271,76,-0.11085344576431294],[113,271,77,-0.10748586791058651],[113,271,78,-0.10405799759843148],[113,271,79,-0.10057109495493172],[113,272,64,-0.14200010042348354],[113,272,65,-0.13937595584928725],[113,272,66,-0.13668370005182334],[113,272,67,-0.1339237779109207],[113,272,68,-0.13109669660880108],[113,272,69,-0.12820302633059277],[113,272,70,-0.12524340095874292],[113,272,71,-0.12221851876142975],[113,272,72,-0.11912914307493411],[113,272,73,-0.11597610298007949],[113,272,74,-0.11276029397247689],[113,272,75,-0.10948267862692179],[113,272,76,-0.10614428725568908],[113,272,77,-0.10274621856081761],[113,272,78,-0.09928964028038234],[113,272,79,-0.09577578982871932],[113,273,64,-0.1378027160243413],[113,273,65,-0.13512564119504794],[113,273,66,-0.13238231383507093],[113,273,67,-0.12957318627703523],[113,273,68,-0.12669877097726273],[113,273,69,-0.12375964115682975],[113,273,70,-0.12075643143602521],[113,273,71,-0.11768983846231457],[113,273,72,-0.1145606215317656],[113,273,73,-0.1113696032040496],[113,273,74,-0.10811766991074817],[113,273,75,-0.10480577255731871],[113,273,76,-0.10143492711846219],[113,273,77,-0.09800621522698333],[113,273,78,-0.09452078475614412],[113,273,79,-0.09097985039547318],[113,274,64,-0.13361054563440783],[113,274,65,-0.13088032763631108],[113,274,66,-0.12808572170188476],[113,274,67,-0.12522718777647862],[113,274,68,-0.12230524374019802],[113,274,69,-0.1193204659890349],[113,274,70,-0.11627349000889758],[113,274,71,-0.11316501094264331],[113,274,72,-0.10999578415007183],[113,274,73,-0.10676662576099222],[113,274,74,-0.1034784132210923],[113,274,75,-0.10013208583096717],[113,274,76,-0.09672864527804509],[113,274,77,-0.09326915616150677],[113,274,78,-0.08975474651019388],[113,274,79,-0.08618660829347274],[113,275,64,-0.12942655223293814],[113,275,65,-0.12664301046864573],[113,275,66,-0.12379695008335806],[113,275,67,-0.12088883879432216],[113,275,68,-0.11791920005563988],[113,275,69,-0.11488861357903352],[113,275,70,-0.11179771584700099],[113,275,71,-0.10864720061846522],[113,275,72,-0.10543781942687785],[113,275,73,-0.10217038207088863],[113,275,74,-0.09884575709730675],[113,275,75,-0.09546487227671663],[113,275,76,-0.09202871507148169],[113,275,77,-0.08853833309623366],[113,275,78,-0.08499483457084317],[113,275,79,-0.08139938876583785],[113,276,64,-0.12525368847296647],[113,276,65,-0.12241667473655499],[113,276,66,-0.11951901523323433],[113,276,67,-0.1165611856104547],[113,276,68,-0.11354371504695232],[113,276,69,-0.1104671867127403],[113,276,70,-0.10733223822097276],[113,276,71,-0.10413956207179087],[113,276,72,-0.1008899060881076],[113,276,73,-0.09758407384344753],[113,276,74,-0.09422292508156138],[113,276,75,-0.09080737612818385],[113,276,76,-0.08733840029466478],[113,276,77,-0.08381702827357207],[113,276,78,-0.08024434852626267],[113,276,79,-0.07662150766238668],[113,277,64,-0.12109489405619533],[113,277,65,-0.11820429258051002],[113,277,66,-0.11525492054810904],[113,277,67,-0.11224726169397564],[113,277,68,-0.10918185107243711],[113,277,69,-0.10605927545600047],[113,277,70,-0.10288017372554026],[113,277,71,-0.09964523725195035],[113,277,72,-0.09635521026921329],[113,277,73,-0.09301089023900733],[113,277,74,-0.08961312820656692],[113,277,75,-0.08616282914816925],[113,277,76,-0.08266095230997289],[113,277,77,-0.07910851153831039],[113,277,78,-0.07550657560142882],[113,277,79,-0.07185626850264404],[113,278,64,-0.11695309316374242],[113,278,65,-0.1140088206403091],[113,278,66,-0.11100765394440626],[113,278,67,-0.1079500850547947],[113,278,68,-0.10483665505256062],[113,278,69,-0.10166795445844612],[113,278,70,-0.09844462356100603],[113,278,71,-0.09516735273570381],[113,278,72,-0.09183688275490093],[113,278,73,-0.08845400508885942],[113,278,74,-0.08501956219747209],[113,278,75,-0.08153444781309438],[113,278,76,-0.07799960721420457],[113,278,77,-0.07441603748999248],[113,278,78,-0.07078478779587088],[113,278,79,-0.06710695959987673],[113,279,64,-0.11283119194263846],[113,279,65,-0.10983319751465376],[113,279,66,-0.10678018529201905],[113,279,67,-0.10367265565232425],[113,279,68,-0.10051115585468595],[113,279,69,-0.09729628031525361],[113,279,70,-0.09402867087301164],[113,279,71,-0.090709017045989],[113,279,72,-0.08733805627783481],[113,279,73,-0.08391657417487663],[113,279,74,-0.0804454047333728],[113,279,75,-0.07692543055734258],[113,279,76,-0.07335758306669005],[113,279,77,-0.06974284269572834],[113,279,78,-0.06608223908209615],[113,279,79,-0.062376851246034815],[113,280,64,-0.10873207604829027],[113,280,65,-0.10568034127715792],[113,280,66,-0.10257546390483535],[113,280,67,-0.09941795286149091],[113,280,68,-0.09620836173553793],[113,280,69,-0.09294728898702859],[113,280,70,-0.0896353781508073],[113,280,71,-0.08627331802953697],[113,280,72,-0.08286184287655479],[113,280,73,-0.07940173256867866],[113,280,74,-0.07589381276867052],[113,280,75,-0.07233895507774196],[113,280,76,-0.06873807717782127],[113,280,77,-0.0650921429636831],[113,280,78,-0.06140216266493764],[113,280,79,-0.057669192957843174],[113,281,64,-0.1046586082427996],[113,281,65,-0.10155314704868129],[113,281,66,-0.09839641608803568],[113,281,67,-0.09518893299594894],[113,281,68,-0.09193125784128375],[113,281,69,-0.0886239932777036],[113,281,70,-0.08526778468391433],[113,281,71,-0.0818633202932395],[113,281,72,-0.07841133131248601],[113,281,73,-0.07491259203022005],[113,281,74,-0.07136791991415875],[113,281,75,-0.06777817569806771],[113,281,76,-0.06414426345787688],[113,281,77,-0.06046713067712117],[113,281,78,-0.05674776830169942],[113,281,79,-0.052987210783918326],[113,282,64,-0.10061362604903668],[113,282,65,-0.09745448462588224],[113,282,66,-0.094245942742059],[113,282,67,-0.09098852688839265],[113,282,68,-0.0876828037651251],[113,282,69,-0.0843293803703406],[113,282,70,-0.08092890407706532],[113,282,71,-0.07748206269915581],[113,282,72,-0.07398958454593269],[113,282,73,-0.07045223846568166],[113,282,74,-0.06687083387772425],[113,282,75,-0.06324622079345144],[113,282,76,-0.05957928982602956],[113,282,77,-0.05587097218888881],[113,282,78,-0.052122239682983684],[113,282,79,-0.0483341046727947],[113,283,64,-0.09659993946067558],[113,283,65,-0.09338719616620184],[113,283,66,-0.09012691702344966],[113,283,67,-0.08681963752818267],[113,283,68,-0.08346593116261763],[113,283,69,-0.08006640942105842],[113,283,70,-0.07662172182365201],[113,283,71,-0.07313255591838563],[113,283,72,-0.06959963727127988],[113,283,73,-0.06602372944490154],[113,283,74,-0.06240563396489457],[113,283,75,-0.058746190274928056],[113,283,76,-0.055046275679766554],[113,283,77,-0.051306805276573386],[113,283,78,-0.04752873187443851],[113,283,79,-0.04371304590209735],[113,284,64,-0.09262032870808679],[113,284,65,-0.08935409392917237],[113,284,66,-0.08604218206247899],[113,284,67,-0.08268513775617625],[113,284,68,-0.07928354142460903],[113,284,69,-0.07583800921097361],[113,284,70,-0.07234919293756181],[113,284,71,-0.06881778004369343],[113,284,72,-0.06524449351129136],[113,284,73,-0.06163009177822476],[113,284,74,-0.05797536863911473],[113,284,75,-0.05428115313400633],[113,284,76,-0.05054830942460892],[113,284,77,-0.046777736658217106],[113,284,78,-0.04297036881930211],[113,284,79,-0.03912717456874232],[113,285,64,-0.0886775420799846],[113,285,65,-0.08535795807394647],[113,285,66,-0.08199454873743431],[113,285,67,-0.0785878680166574],[113,285,68,-0.07513850340768805],[113,285,69,-0.07164707585604688],[113,285,70,-0.06811423964329796],[113,285,71,-0.06454068226077428],[113,285,72,-0.06092712427038949],[113,285,73,-0.05727431915266146],[113,285,74,-0.05358305314163955],[113,285,75,-0.049854145047143306],[113,285,76,-0.04608844606401086],[113,285,77,-0.042286839568471735],[113,285,78,-0.03845024090163257],[113,285,79,-0.03457959714004577],[113,286,64,-0.08477429380103665],[113,286,65,-0.08140153451325599],[113,286,66,-0.07798679350578944],[113,286,67,-0.07453063416657904],[113,286,68,-0.07103365122236027],[113,286,69,-0.06749647057505342],[113,286,70,-0.06391974912460241],[113,286,71,-0.06030417457838441],[113,286,72,-0.05665046524714404],[113,286,73,-0.052959369827579844],[113,286,74,-0.049231667171271365],[113,286,75,-0.04546816604035955],[113,286,76,-0.04166970484967439],[113,286,77,-0.03783715139542693],[113,286,78,-0.03397140257045339],[113,286,79,-0.030073384065980285],[113,287,64,-0.08091326196532789],[113,287,65,-0.077487532823695],[113,287,66,-0.07402165629214702],[113,287,67,-0.07051620534200961],[113,287,68,-0.06697178207884252],[113,287,69,-0.06338901751556592],[113,287,70,-0.059768571331468484],[113,287,71,-0.05611113161722173],[113,287,72,-0.052417414605855],[113,287,73,-0.04868816438981943],[113,287,74,-0.044924152623825486],[113,287,75,-0.04112617821387238],[113,287,76,-0.037295066992158926],[113,287,77,-0.03343167137799463],[113,287,78,-0.029536870024698708],[113,287,79,-0.025611567452456102],[113,288,64,-0.07709708652558445],[113,288,65,-0.07361862421222642],[113,288,66,-0.07010183843285384],[113,288,67,-0.06654731188168128],[113,288,68,-0.06295565419036961],[113,288,69,-0.059327501637846475],[113,288,70,-0.055663516845440214],[113,288,71,-0.05196438845745216],[113,288,72,-0.048230830807121844],[113,288,73,-0.04446358356811525],[113,288,74,-0.04066341139121549],[113,288,75,-0.03683110352664107],[113,288,76,-0.032967473431676386],[113,288,77,-0.029073358363735313],[113,288,78,-0.02514961895884435],[113,288,79,-0.02119713879551577],[113,289,64,-0.07332836733836584],[113,289,65,-0.06979743953912632],[113,289,66,-0.06623000067750337],[113,289,67,-0.06262664330785941],[113,289,68,-0.058987984734238164],[113,289,69,-0.055314666656870404],[113,289,70,-0.05160735480342182],[113,289,71,-0.04786673854510759],[113,289,72,-0.044093530497629485],[113,289,73,-0.04028846610706566],[113,289,74,-0.03645230322039139],[113,289,75,-0.0325858216410575],[113,289,76,-0.028689822669309306],[113,289,77,-0.024765128627368932],[113,289,78,-0.02081258236946526],[113,289,79,-0.01683304677668429],[113,290,64,-0.0696096622650485],[113,290,65,-0.06602656739718657],[113,290,66,-0.062408761247146366],[113,290,67,-0.0587568463643493],[113,290,68,-0.05507144787039908],[113,290,69,-0.05135321304229462],[113,290,70,-0.04760281087980961],[113,290,71,-0.04382093165716641],[113,290,72,-0.04000828645895782],[113,290,73,-0.03616560670044919],[113,290,74,-0.03229364363193579],[113,290,75,-0.028393167827586302],[113,290,76,-0.02446496865845213],[113,290,77,-0.020509853749766577],[113,290,78,-0.016528648422518333],[113,290,79,-0.01252219511927094],[113,291,64,-0.06594348532873204],[113,291,65,-0.06230855224730747],[113,291,66,-0.05864069394933952],[113,291,67,-0.05494052311177375],[113,291,68,-0.05120867281773664],[113,291,69,-0.047445796076508256],[113,291,70,-0.04365256532708389],[113,291,71,-0.039829671925454224],[113,291,72,-0.03597782561555679],[113,291,73,-0.032097753984032584],[113,291,74,-0.02819020189845936],[113,291,75,-0.0242559309294971],[113,291,76,-0.020295718756621672],[113,291,77,-0.01631035855757243],[113,291,78,-0.012300658381498158],[113,291,79,-0.008267440505771828],[113,292,64,-0.06233230492689634],[113,292,65,-0.058645892610308115],[113,292,66,-0.05492832634986142],[113,292,67,-0.051180229079947376],[113,292,68,-0.04740224198785464],[113,292,69,-0.04359502397058526],[113,292,70,-0.03975925107468023],[113,292,71,-0.03589561591918364],[113,292,72,-0.03200482710170097],[113,292,73,-0.02808760858768397],[113,292,74,-0.024144699082610382],[113,292,75,-0.02017685138750147],[113,292,76,-0.016184831737446143],[113,292,77,-0.012169419123261332],[113,292,78,-0.008131404596271374],[113,292,79,-0.004071590556178339],[113,293,64,-0.05877854210001393],[113,293,65,-0.05504103931515933],[113,293,66,-0.05127413800130087],[113,293,67,-0.047478471477556156],[113,293,68,-0.043654689176582995],[113,293,69,-0.03980345603835367],[113,293,70,-0.035925451886355514],[113,293,71,-0.032021370786350256],[113,293,72,-0.02809192038764527],[113,293,73,-0.024137821247012636],[113,293,74,-0.020159806134919953],[113,293,75,-0.016158619324519063],[113,293,76,-0.012135015863060525],[113,293,77,-0.008089760825863143],[113,293,78,-0.004023628552821734],[113,293,79,6.259813257546154E-5],[113,294,64,-0.05528456885601585],[113,294,65,-0.05149639380353857],[113,294,66,-0.047680558728416436],[113,294,67,-0.04383770745903863],[113,294,68,-0.03996849781309961],[113,294,69,-0.03607360092847563],[113,294,70,-0.03215370057594408],[113,294,71,-0.028209492453878465],[113,294,72,-0.02424168346487221],[113,294,73,-0.020250990974428146],[113,294,74,-0.01623814205137543],[113,294,75,-0.012203872690463136],[113,294,76,-0.008148927016795537],[113,294,77,-0.004074056472240295],[113,294,78,1.998101620885595E-5],[113,294,79,0.004132421886142046],[113,295,64,-0.05185270655052669],[113,295,65,-0.048014306490618844],[113,295,66,-0.04414996697017798],[113,295,67,-0.04026034244858048],[113,295,68,-0.03634609926657695],[113,295,69,-0.03240791491444653],[113,295,70,-0.028446477281407825],[113,295,71,-0.0244624838864215],[113,295,72,-0.02045664109033668],[113,295,73,-0.016429663289519475],[113,295,74,-0.012382272090622107],[113,295,75,-0.008315195466946507],[113,295,76,-0.004229166896063188],[113,295,77,-1.2492447881967683E-4],[113,295,78,0.003996789960282035],[113,295,79,0.008135231791365272],[113,296,64,-0.048485224323047985],[113,296,65,-0.04459707518227578],[113,296,66,-0.04068468817867642],[113,296,67,-0.03674872852140822],[113,296,68,-0.03278987121054344],[113,296,69,-0.02880880024270603],[113,296,70,-0.02480620779737848],[113,296,71,-0.020782793404014024],[113,296,72,-0.016739263089906573],[113,296,73,-0.012676328508958237],[113,296,74,-0.008594706050998172],[113,296,75,-0.004495115932112451],[113,296,76,-3.782812656424328E-4],[113,296,77,0.0037550728860144267],[113,296,78,0.007904220478819654],[113,296,79,0.012068435473752845],[113,297,64,-0.045184337588996926],[113,297,65,-0.04124694354861634],[113,297,66,-0.03728699327480532],[113,297,67,-0.033305162842286726],[113,297,68,-0.02930213604486062],[113,297,69,-0.025278603538760033],[113,297,70,-0.02123526196608827],[113,297,71,-0.01717281305847386],[113,297,72,-0.013091962720895592],[113,297,73,-0.008993420095819368],[113,297,74,-0.004877896607296053],[113,297,75,-7.461049854854407E-4],[113,297,76,0.003401241728739568],[113,297,77,0.007563431198973625],[113,297,78,0.011739752828263408],[113,297,79,0.01592949881392288],[113,298,64,-0.041952206587517304],[113,298,65,-0.03796609965374638],[113,298,66,-0.0339590971606281],[113,298,67,-0.02993188616113289],[113,298,68,-0.02588515937522965],[113,298,69,-0.021819614271226175],[113,298,70,-0.017735952126600806],[113,298,71,-0.013634877068463246],[113,298,72,-0.009517095093597591],[113,298,73,-0.005383313068228257],[113,298,74,-0.0012342377071581853],[113,298,75,0.0029294254672539363],[113,298,76,0.007106973186626515],[113,298,77,0.011297705518459815],[113,298,78,0.01550092696843361],[113,298,79,0.0197159476031238],[113,299,64,-0.03879093498523563],[113,299,65,-0.03475667454195076],[113,299,66,-0.030703157288609742],[113,299,67,-0.02663108136592479],[113,299,68,-0.022541148550407127],[113,299,69,-0.01843406327398585],[113,299,70,-0.014310531622527593],[113,299,71,-0.01017126031339751],[113,299,72,-0.006016955652011664],[113,299,73,-0.0018483224675253096],[113,299,74,0.0023339369726995546],[113,299,75,0.00652912406937263],[113,299,76,0.010736545018655869],[113,299,77,0.014955511960503966],[113,299,78,0.019185344147987525],[113,299,79,0.023425369137624656],[113,300,64,-0.03570256853587148],[113,300,65,-0.03162074088019712],[113,300,66,-0.027521272287619226],[113,300,67,-0.023404872092814485],[113,300,68,-0.01927225125703861],[113,300,69,-0.015124121326348564],[113,300,70,-0.010961193368134628],[113,300,71,-0.006784176886102909],[113,300,72,-0.0025937787136611004],[113,300,73,0.0016092981141503232],[113,300,74,0.005824355510537876],[113,300,75,0.010050701508170494],[113,300,76,0.014287651452086176],[113,300,77,0.018534529214149286],[113,300,78,0.022790668429079806],[113,300,79,0.02705541375208092],[113,301,64,-0.03268909379562545],[113,301,65,-0.028560311656881058],[113,301,66,-0.024415480645623655],[113,301,67,-0.02025532139336096],[113,301,68,-0.016080554172023514],[113,301,69,-0.01189189779114376],[113,301,70,-0.007690068472753046],[113,301,71,-0.0034757787041391555],[113,301,72,7.502639315834815E-4],[113,301,73,0.0049873579469464895],[113,301,74,0.009234809164004485],[113,301,75,0.01349193195013485],[113,301,76,0.017758050476120685],[113,301,77,0.022032499996373314],[113,301,78,0.02631462815131812],[113,301,79,0.030603796291968088],[113,302,64,-0.02975243689450707],[113,302,65,-0.02557733893698088],[113,302,66,-0.021387759449241157],[113,302,67,-0.017184430459055555],[113,302,68,-0.012968081672587744],[113,302,69,-0.008739439310914822],[113,302,70,-0.004499224923671404],[113,302,71,-2.481541799639383E-4],[113,302,72,0.004013064363492609],[113,302,73,0.00828373051687081],[113,302,74,0.012563153734722088],[113,302,75,0.016850654415979962],[113,302,76,0.021145565226837904],[113,302,77,0.025447232446356025],[113,302,78,0.029755017334822168],[113,302,79,0.03406829752489027],[113,303,64,-0.02689446236351651],[113,303,65,-0.022673712673533707],[113,303,66,-0.018440023180064304],[113,303,67,-0.014194137403048179],[113,303,68,-0.00993679460396982],[113,303,69,-0.005668728562123789],[113,303,70,-0.0013906663274161233],[113,303,71,0.002896673050153107],[113,303,72,0.007192579814376265],[113,303,73,0.011496354819945964],[113,303,74,0.015807310873150265],[113,303,75,0.020124774095667975],[113,303,76,0.02444808531182951],[113,303,77,0.028776601459196856],[113,303,78,0.033109697022487346],[113,303,79,0.03744676549086618],[113,304,64,-0.02411697201761097],[113,304,65,-0.01985125957536129],[113,304,66,-0.015574122567681307],[113,304,67,-0.011286316099002262],[113,304,68,-0.006988589104648812],[113,304,69,-0.0026816830672911456],[113,304,70,0.0016336692906562707],[113,304,71,0.005956745338546364],[113,304,72,0.010286833892968195],[113,304,73,0.014623236597026579],[113,304,74,0.018965269323801246],[113,304,75,0.02331226360349276],[113,304,76,0.027663568074625573],[113,304,77,0.03201854995915952],[113,304,78,0.03637659656153465],[113,304,79,0.04073711679167434],[113,305,64,-0.021421703894603367],[113,305,65,-0.01711174203119783],[113,305,66,-0.012791843499550308],[113,305,67,-0.008462775077234062],[113,305,68,-0.004125295489269772],[113,305,69,2.198459347686997E-4],[113,305,70,0.004571910628292222],[113,305,71,0.008930172179733437],[113,305,72,0.013293917749130586],[113,305,73,0.017662449509110167],[113,305,74,0.022035086110639673],[113,305,75,0.026411164173055113],[113,305,76,0.03079003979873548],[113,305,77,0.03517109011227374],[113,305,78,0.03955371482417191],[113,305,79,0.04393733781908201],[113,306,64,-0.018810331249915893],[113,306,65,-0.014456857090138699],[113,306,66,-0.01009490598764301],[113,306,67,-0.005725256478053581],[113,306,68,-0.0013486771891853822],[113,306,69,0.0030340745607023087],[113,306,70,0.0074222541898862696],[113,306,71,0.011815131305246418],[113,306,72,0.01621199117946815],[113,306,73,0.020612136253230842],[113,306,74,0.0250148876627566],[113,306,75,0.02941958679222014],[113,306,76,0.033825596851394614],[113,306,77,0.038232304478382974],[113,306,78,0.04263912136745991],[113,306,79,0.047045485922049976],[113,307,64,-0.016284461607123824],[113,307,65,-0.011888235498346458],[113,307,66,-0.0074849631917943],[113,307,67,-0.003075435062240728],[113,307,68,0.0013395702494557807],[113,307,69,0.005759287296429286],[113,307,70,0.010182965311707398],[113,307,71,0.014609869719784903],[113,307,72,0.01903928367392088],[113,307,73,0.023470509619007845],[113,307,74,0.02790287088039027],[113,307,75,0.032335713278129494],[113,307,76,0.03676840676709289],[113,307,77,0.04120034710271486],[113,307,78,0.04563095753245705],[113,307,79,0.050059690512990446],[113,308,64,-0.01384563586442604],[113,308,65,-0.009407440792151722],[113,308,66,-0.0049636004998960676],[113,308,67,-5.14917278798939E-4],[113,308,68,0.003937820109928589],[113,308,69,0.008393837952866426],[113,308,70,0.012852379128657804],[113,308,71,0.017312704678540194],[113,308,72,0.021774095403185062],[113,308,73,0.026235853485694904],[113,308,74,0.030697304141138138],[113,308,75,0.035157797292113144],[113,308,76,0.03961670927072408],[113,308,77,0.04407344454681407],[113,308,78,0.04852743748248335],[113,308,79,0.052978154112915385],[113,309,64,-0.011495327456970156],[113,309,65,-0.007015968447475818],[113,309,66,-0.0025323346648630785],[113,309,67,0.001954759610088827],[113,309,68,0.006444515391535413],[113,309,69,0.010936150563640293],[113,309,70,0.015428901482643004],[113,309,71,0.019922024605770444],[113,309,72,0.024414798147041478],[113,309,73,0.028906523759811634],[113,309,74,0.0333965282464424],[113,309,75,0.037884165294581856],[113,309,76,0.04236881724044293],[113,309,77,0.04684989685892184],[113,309,78,0.05132684918058719],[113,309,79,0.05579915333556058],[113,310,64,-0.009234941574973843],[113,310,65,-0.004715245085515629],[113,310,66,-1.9261299830870826E-4],[113,310,67,0.004332128346963435],[113,310,68,0.008858169638657126],[113,310,69,0.01338472022485282],[113,310,70,0.0179110097726171],[113,310,71,0.022436289954692004],[113,310,72,0.026959836163658643],[113,310,73,0.031480949253424165],[113,310,74,0.035998957308415985],[113,310,75,0.04051321743996951],[113,310,76,0.04502311761029558],[113,310,77,0.049528078483872],[113,310,78,0.05402755530628679],[113,310,79,0.05852103981055641],[113,311,64,-0.0070658144377671595],[113,311,65,-0.002506627734818162],[113,311,66,0.0020541873789389764],[113,311,67,0.00661579243972088],[113,311,68,0.011177367712117775],[113,311,69,0.015738113876763535],[113,311,70,0.020297253746166838],[113,311,71,0.024854034008547243],[113,311,72,0.029407726999728073],[113,311,73,0.03395763250293225],[113,311,74,0.03850307957686672],[113,311,75,0.04304342841157953],[113,311,76,0.04757807221247884],[113,311,77,0.052106439112354755],[113,311,78,0.05662799411143486],[113,311,79,0.06114224104549479],[113,312,64,-0.004989212623688302],[113,312,65,-3.91403149676367E-4],[113,312,66,0.00420676022955177],[113,312,67,0.008804426865042528],[113,312,68,0.013400766502933953],[113,312,69,0.01799497102746235],[113,312,70,0.02258625623270777],[113,312,71,0.027173863622925398],[113,312,72,0.03175706224150979],[113,312,73,0.03633515052844008],[113,312,74,0.04090745820659496],[113,312,75,0.04547334819641488],[113,312,76,0.0500322185593067],[113,312,77,0.054583504469629035],[113,312,78,0.059126680215289246],[113,312,79,0.06366126122697377],[113,313,64,-0.003006332455784022],[113,313,65,0.0016292128152063656],[113,313,66,0.006263870835697072],[113,313,67,0.010896778714676439],[113,313,68,0.015527095588505069],[113,313,69,0.020154004418585766],[113,313,70,0.02477671381834734],[113,313,71,0.029394459909390228],[113,313,72,0.034006508206842145],[113,313,73,0.03861215553376715],[113,313,74,0.043210731965024535],[113,313,75,0.04780160280004783],[113,313,76,0.052384170564942795],[113,313,77,0.05695787704374203],[113,313,78,0.061522205338847086],[113,313,79,0.06607668196067967],[113,314,64,-0.0011182994434278948],[113,314,65,0.0035540757736623185],[113,314,66,0.00822435657819652],[113,314,67,0.012891667784449098],[113,314,68,0.017555157831117107],[113,314,69,0.022214000632953368],[113,314,70,0.026867397462288806],[113,314,71,0.03151457886028777],[113,314,72,0.03615480657798825],[113,314,73,0.04078737554696793],[113,314,74,0.04541161588003223],[113,314,75,0.050026894901397195],[113,314,76,0.054632619206763405],[113,314,77,0.059228236753119556],[113,314,78,0.06381323897830726],[113,314,79,0.06838716295036754],[113,315,64,6.738322202388125E-4],[113,315,65,0.0053821133207185845],[113,315,66,0.010087127458945966],[113,315,67,0.014787987106108763],[113,315,68,0.019483829918867157],[113,315,69,0.02417382064422821],[113,315,70,0.02885715305488215],[113,315,71,0.03353305191483985],[113,315,72,0.038200774975426816],[113,315,73,0.0428596150014717],[113,315,74,0.04750890182808906],[113,315,75,0.05214800444752482],[113,315,76,0.05677633312646474],[113,315,77,0.06139334155364143],[113,315,78,0.06599852901777384],[113,315,79,0.07059144261585773],[113,316,64,0.002369080104975829],[113,316,65,0.007112325488897425],[113,316,66,0.01185116656652982],[113,316,67,0.01658470342193019],[113,316,68,0.021312062848934193],[113,316,69,0.02603240030852777],[113,316,70,0.03074490191724752],[113,316,71,0.03544878646645139],[113,316,72,0.040143307472510575],[113,316,73,0.044827755257763835],[113,316,74,0.04950145906263381],[113,316,75,0.05416378918837225],[113,316,76,0.05881415917083474],[113,316,77,0.0634520279851225],[113,316,78,0.0680769022811222],[113,316,79,0.07268833864996505],[113,317,64,0.003966533934308153],[113,317,65,0.008743785148245503],[113,317,66,0.013515530485113891],[113,317,67,0.018280857602168216],[113,317,68,0.023038882353287632],[113,317,69,0.02778875079807741],[113,317,70,0.0325296412425638],[113,317,71,0.0372607663113218],[113,317,72,0.04198137505108945],[113,317,73,0.046690755065705775],[113,317,74,0.05138823468277809],[113,317,75,0.05607318515153725],[113,317,76,0.06074502287228983],[113,317,77,0.06540321165729901],[113,317,78,0.07004726502312783],[113,317,79,0.07467674851446507],[113,318,64,0.005465355920482251],[113,318,65,0.010275638349987043],[113,318,66,0.015079349646513363],[113,318,67,0.019875565005254253],[113,318,68,0.02466338926672329],[113,318,69,0.029441958976797022],[113,318,70,0.03421044447891114],[113,318,71,0.03896805203824982],[113,318,72,0.043714025997981576],[113,318,73,0.048447650967378075],[113,318,74,0.05316825404222317],[113,318,75,0.05787520705697022],[113,318,76,0.06256792886905527],[113,318,77,0.06724588767519973],[113,318,78,0.07190860335973548],[113,318,79,0.07655564987497238],[113,319,64,0.006864781043572132],[113,319,65,0.011707104613859681],[113,319,66,0.016541828625493665],[113,319,67,0.02136801578079467],[113,319,68,0.026184759837288824],[113,319,69,0.030991187717878788],[113,319,70,0.03578646165372801],[113,319,71,0.04056978135969294],[113,319,72,0.04534038624235748],[113,319,73,0.05009755764050805],[113,319,74,0.054840621098454806],[113,319,75,0.0595689486716558],[113,319,76,0.06428196126505559],[113,319,77,0.06897913100396766],[113,319,78,0.0736599836375367],[113,319,79,0.07832410097479908],[114,-64,64,-0.08968074842720741],[114,-64,65,-0.09321677293743669],[114,-64,66,-0.09664698611823797],[114,-64,67,-0.0999699496616343],[114,-64,68,-0.10318437405364833],[114,-64,69,-0.10628912404694801],[114,-64,70,-0.10928322419595615],[114,-64,71,-0.11216586445433896],[114,-64,72,-0.11493640583488296],[114,-64,73,-0.11759438613167772],[114,-64,74,-0.12013952570484243],[114,-64,75,-0.12257173332746563],[114,-64,76,-0.1248911120950229],[114,-64,77,-0.1270979653971429],[114,-64,78,-0.12919280295177282],[114,-64,79,-0.13117634690172086],[114,-63,64,-0.08406044953360003],[114,-63,65,-0.08758542501902711],[114,-63,66,-0.09100520378612975],[114,-63,67,-0.09431834421310237],[114,-63,68,-0.09752355289283487],[114,-63,69,-0.10061969009779259],[114,-63,70,-0.10360577530739545],[114,-63,71,-0.10648099279780376],[114,-63,72,-0.10924469729412334],[114,-63,73,-0.11189641968495079],[114,-63,74,-0.11443587279948653],[114,-63,75,-0.11686295724689888],[114,-63,76,-0.11917776731819274],[114,-63,77,-0.12138059695045689],[114,-63,78,-0.12347194575354448],[114,-63,79,-0.12545252509915983],[114,-62,64,-0.07836214367302397],[114,-62,65,-0.08187533416993154],[114,-62,66,-0.08528396797368609],[114,-62,67,-0.08858660006409058],[114,-62,68,-0.09178193303110083],[114,-62,69,-0.0948688225315163],[114,-62,70,-0.09784628280819574],[114,-62,71,-0.10071349227171011],[114,-62,72,-0.10346979914444965],[114,-62,73,-0.10611472716709347],[114,-62,74,-0.10864798136768528],[114,-62,75,-0.11106945389298417],[114,-62,76,-0.11337922990235372],[114,-62,77,-0.11557759352405916],[114,-62,78,-0.1176650338740266],[114,-62,79,-0.11964225113704097],[114,-61,64,-0.07259012233249917],[114,-61,65,-0.07609079877024605],[114,-61,66,-0.07948758362821962],[114,-61,67,-0.08277902840482865],[114,-61,68,-0.08596383157917042],[114,-61,69,-0.08904084405910451],[114,-61,70,-0.09200907469188091],[114,-61,71,-0.09486769583723809],[114,-61,72,-0.09761604900297838],[114,-61,73,-0.1002536505429441],[114,-61,74,-0.10278019741762212],[114,-61,75,-0.10519557301705751],[114,-61,76,-0.1074998530463337],[114,-61,77,-0.1096933114734907],[114,-61,78,-0.11177642653993547],[114,-61,79,-0.11374988683331866],[114,-60,64,-0.06674872098241214],[114,-60,65,-0.07023616166259772],[114,-60,66,-0.07362040062235842],[114,-60,67,-0.07689998579732327],[114,-60,68,-0.08007361144974978],[114,-60,69,-0.08314012360756029],[114,-60,70,-0.08609852556596609],[114,-60,71,-0.08894798345158295],[114,-60,72,-0.09168783184906237],[114,-60,73,-0.09431757949014441],[114,-60,74,-0.09683691500537361],[114,-60,75,-0.0992457127381513],[114,-60,76,-0.10154403862138295],[114,-60,77,-0.10373215611659514],[114,-60,78,-0.1058105322155698],[114,-60,79,-0.10777984350447944],[114,-59,64,-0.060842314190908686],[114,-59,65,-0.06431580525733638],[114,-59,66,-0.06768680885045408],[114,-59,67,-0.07095386926339176],[114,-59,68,-0.0741156764375972],[114,-59,69,-0.07717107139242174],[114,-59,70,-0.0801190517173187],[114,-59,71,-0.08295877712657007],[114,-59,72,-0.08568957507654817],[114,-59,73,-0.08831094644543547],[114,-59,74,-0.0908225712756302],[114,-59,75,-0.09322431457852154],[114,-59,76,-0.0955162322018861],[114,-59,77,-0.09769857675978266],[114,-59,78,-0.09977180362499405],[114,-59,79,-0.10173657698399785],[114,-58,64,-0.0548753106142722],[114,-58,65,-0.0583341465132623],[114,-58,66,-0.06169123320008629],[114,-58,67,-0.06494511124737501],[114,-58,68,-0.06809446617387394],[114,-58,69,-0.07113813386416812],[114,-58,70,-0.0740751060510505],[114,-58,71,-0.07690453586044144],[114,-58,72,-0.07962574341887696],[114,-58,73,-0.08223822152347904],[114,-58,74,-0.0847416413746428],[114,-58,75,-0.08713585837111937],[114,-58,76,-0.0894209179677492],[114,-58,77,-0.09159706159572145],[114,-58,78,-0.09366473264540898],[114,-58,79,-0.09562458251176031],[114,-57,64,-0.04885214786361147],[114,-57,65,-0.052295631794205044],[114,-57,66,-0.05563812839898574],[114,-57,67,-0.05887817445385013],[114,-57,68,-0.062014450955088174],[114,-57,69,-0.06504578852884524],[114,-57,70,-0.06797117290325383],[114,-57,71,-0.07078975044314417],[114,-57,72,-0.07350083374735095],[114,-57,73,-0.07610390730853056],[114,-57,74,-0.07859863323572136],[114,-57,75,-0.08098485703932856],[114,-57,76,-0.08326261347878616],[114,-57,77,-0.08543213247277337],[114,-57,78,-0.08749384507203473],[114,-57,79,-0.08944838949478207],[114,-56,64,-0.042777287247703244],[114,-56,65,-0.046204731601306115],[114,-56,66,-0.049531973737224066],[114,-56,67,-0.0527575465601926],[114,-56,68,-0.055880126446492984],[114,-56,69,-0.058898538642752074],[114,-56,70,-0.06181176272743849],[114,-56,71,-0.06461893813496522],[114,-56,72,-0.06731936974241648],[114,-56,73,-0.06991253351881022],[114,-56,74,-0.07239808223713196],[114,-56,75,-0.07477585124882025],[114,-56,76,-0.0770458643209555],[114,-56,77,-0.07920833953603146],[114,-56,78,-0.08126369525435606],[114,-56,79,-0.08321255613906242],[114,-55,64,-0.03665520839183789],[114,-55,65,-0.04006593518085377],[114,-55,66,-0.04337726766451644],[114,-55,67,-0.04658773480383027],[114,-55,68,-0.04969600825977216],[114,-55,69,-0.052700907781036976],[114,-55,70,-0.05560140665450808],[114,-55,71,-0.05839663721835897],[114,-55,72,-0.06108589643780438],[114,-55,73,-0.06366865154341628],[114,-55,74,-0.06614454573223605],[114,-55,75,-0.0685134039313654],[114,-55,76,-0.07077523862428636],[114,-55,77,-0.07293025573979128],[114,-55,78,-0.07497886060356851],[114,-55,79,-0.07692166395242406],[114,-54,64,-0.030490403732974625],[114,-54,65,-0.03388374500796765],[114,-54,66,-0.0371785222629446],[114,-54,67,-0.04037326044450196],[114,-54,68,-0.043466626405327946],[114,-54,69,-0.04645743428050919],[114,-54,70,-0.04934465092658724],[114,-54,71,-0.0521274014232731],[114,-54,72,-0.054804974637836956],[114,-54,73,-0.05737682885208906],[114,-54,74,-0.05984259745218157],[114,-54,75,-0.06220209468091631],[114,-54,76,-0.06445532145280697],[114,-54,77,-0.0666024712317771],[114,-54,78,-0.0686439359715405],[114,-54,79,-0.07058031211864246],[114,-53,64,-0.024287372891054426],[114,-53,65,-0.027662671145993856],[114,-53,66,-0.030940257594947784],[114,-53,67,-0.034118653101363194],[114,-53,68,-0.03719651961901971],[114,-53,69,-0.04017266555651877],[114,-53,70,-0.04304605120454774],[114,-53,71,-0.04581579422582638],[114,-53,72,-0.048481175207754856],[114,-53,73,-0.05104164327767824],[114,-53,74,-0.05349682178099646],[114,-53,75,-0.055846514021806404],[114,-53,76,-0.05809070906632341],[114,-53,77,-0.060229587608964685],[114,-53,78,-0.06226352790113854],[114,-53,79,-0.06419311174272224],[114,-52,64,-0.01805061691631127],[114,-52,65,-0.021407225481440584],[114,-52,66,-0.024666995926422852],[114,-52,67,-0.02782844496478387],[114,-52,68,-0.030890229563187876],[114,-52,69,-0.03385115229373736],[114,-52,70,-0.03671016674907135],[114,-52,71,-0.03946638302017158],[114,-52,72,-0.04211907323689423],[114,-52,73,-0.04466767717114417],[114,-52,74,-0.04711180790291736],[114,-52,75,-0.049451257548902006],[114,-52,76,-0.05168600305388438],[114,-52,77,-0.053816212044838],[114,-52,78,-0.055842248747748124],[114,-52,79,-0.057764679967145294],[114,-51,64,-0.011784632412894958],[114,-51,65,-0.01512191583477318],[114,-51,66,-0.01836325582524545],[114,-51,67,-0.0215071648831483],[114,-51,68,-0.024552294902282834],[114,-51,69,-0.027497442511159598],[114,-51,70,-0.030341554475565413],[114,-51,71,-0.03308373316386226],[114,-51,72,-0.035723242075036854],[114,-51,73,-0.03825951142941597],[114,-51,74,-0.04069214382227493],[114,-51,75,-0.043020919940028324],[114,-51,76,-0.04524580433924996],[114,-51,77,-0.04736695128840063],[114,-51,78,-0.04938471067231409],[114,-51,79,-0.05129963395941928],[114,-50,64,-0.0054939055386544755],[114,-50,65,-0.00881123994691857],[114,-50,66,-0.01203354613506502],[114,-50,67,-0.015159332324509722],[114,-50,68,-0.018187245252945794],[114,-50,69,-0.021116075501174114],[114,-50,70,-0.023944762882781356],[114,-50,71,-0.026672401896572717],[114,-50,72,-0.029298247241778652],[114,-50,73,-0.03182171939595291],[114,-50,74,-0.03424241025578367],[114,-50,75,-0.03656008884051476],[114,-50,76,-0.03877470705821606],[114,-50,77,-0.040886405534788284],[114,-50,78,-0.04289551950574744],[114,-50,79,-0.044802584770769815],[114,-49,64,8.170941190869252E-4],[114,-49,65,-0.0024796793413029983],[114,-49,66,-0.005682359824197514],[114,-49,67,-0.008789451212925958],[114,-49,68,-0.011799595008369246],[114,-49,69,-0.014711575642528452],[114,-49,70,-0.017524325854960332],[114,-49,71,-0.020236932131994623],[114,-49,72,-0.022848640208744664],[114,-49,73,-0.025358860633833857],[114,-49,74,-0.027767174397059002],[114,-49,75,-0.030073338619684753],[114,-49,76,-0.032277292307613115],[114,-49,77,-0.03437916216730652],[114,-49,78,-0.03637926848451778],[114,-49,79,-0.03827813106580058],[114,-48,64,0.0071439197914364705],[114,-48,65,0.003868306938239807],[114,-48,66,6.858322900470393E-4],[114,-48,67,-0.002402003639808581],[114,-48,68,-0.00539383703727081],[114,-48,69,-0.00828844608752366],[114,-48,70,-0.01108475633784256],[114,-48,71,-0.013781846123249175],[114,-48,72,-0.016378952054983298],[114,-48,73,-0.018875474571712347],[114,-48,74,-0.021270983553700384],[114,-48,75,-0.023565223999629903],[114,-48,76,-0.025758121766321862],[114,-48,77,-0.027849789371232947],[114,-48,78,-0.02984053185777824],[114,-48,79,-0.03173085272346099],[114,-47,64,0.013482153899684657],[114,-47,65,0.010228288713862388],[114,-47,66,0.007066587941776281],[114,-47,67,0.00399855654988357],[114,-47,68,0.0010255637426901387],[114,-47,69,-0.0018511623232707608],[114,-47,70,-0.004630539888370588],[114,-47,71,-0.00731163900164189],[114,-47,72,-0.009893686995373407],[114,-47,73,-0.012376074022466654],[114,-47,74,-0.014758358656770665],[114,-47,75,-0.01704027355609372],[114,-47,76,-0.01922173118813464],[114,-47,77,-0.021302829619212482],[114,-47,78,-0.023283858365844123],[114,-47,79,-0.025165304309150427],[114,-46,64,0.019827414551059408],[114,-46,65,0.016595871184553634],[114,-46,66,0.013455499941818272],[114,-46,67,0.010407810296760522],[114,-46,68,0.007454176917207622],[114,-46,69,0.004595834393153142],[114,-46,70,0.001833871902073514],[114,-46,71,-8.30772188601947E-4],[114,-46,72,-0.003397315781881738],[114,-46,73,-0.00586513857438431],[114,-46,74,-0.00823378764250915],[114,-46,75,-0.010502983091308704],[114,-46,76,-0.012672623766297408],[114,-46,77,-0.014742793028083567],[114,-46,78,-0.016713764589868618],[114,-46,79,-0.01858600841779623],[114,-45,64,0.02617536215816607],[114,-45,65,0.022966701561127456],[114,-45,66,0.01984820282759958],[114,-45,67,0.016821379991112884],[114,-45,68,0.013887613253018571],[114,-45,69,0.011048143725323478],[114,-45,70,0.008304068110573493],[114,-45,71,0.005656333318869278],[114,-45,72,0.0031057310220036216],[114,-45,73,6.5289214479336E-4],[114,-45,74,-0.0017017187066060702],[114,-45,75,-0.003957808879109126],[114,-45,76,-0.0061152633700645165],[114,-45,77,-0.00817415058746418],[114,-45,78,-0.010134728173040841],[114,-45,79,-0.011997448888234508],[114,-44,64,0.03252170618226857],[114,-44,65,0.029336475825505803],[114,-44,66,0.026240379637753053],[114,-44,67,0.023234936262169104],[114,-44,68,0.02032153150114191],[114,-44,69,0.017501413074021754],[114,-44,70,0.014775685311883224],[114,-44,71,0.012145303789400708],[114,-44,72,0.00961106989382332],[114,-44,73,0.007173625331125866],[114,-44,74,0.004833446569122435],[114,-44,75,0.002590839217837426],[114,-44,76,4.4593234689760397E-4],[114,-44,77,-0.0016013272599357808],[114,-44,78,-0.0035511809131467675],[114,-44,79,-0.005404063888732047],[114,-43,64,0.038862212000579155],[114,-43,65,0.03570094561446402],[114,-43,66,0.03262776881162488],[114,-43,67,0.02964420489267361],[114,-43,68,0.026751645325837403],[114,-43,69,0.023951344519891893],[114,-43,70,0.021244414534105194],[114,-43,71,0.018631819725275944],[114,-43,72,0.016114371331850674],[114,-43,73,0.013692721995199109],[114,-43,74,0.01136736021783169],[114,-43,75,0.009138604758854418],[114,-43,76,0.007006598966428634],[114,-43,77,0.004971305047346886],[114,-43,78,0.003032498273681461],[114,-43,79,0.0011897611265229147],[114,-42,64,0.04519270789722685],[114,-42,65,0.04205592522750945],[114,-42,66,0.03900617121334948],[114,-42,67,0.03604497385844885],[114,-42,68,0.03317373035895077],[114,-42,69,0.03039370189186774],[114,-42,70,0.027706008340502408],[114,-42,71,0.025111622956941693],[114,-42,72,0.0226113669616147],[114,-42,73,0.020205904079986015],[114,-42,74,0.017895735016175585],[114,-42,75,0.015681191863796462],[114,-42,76,0.01356243245377664],[114,-42,77,0.011539434639280866],[114,-42,78,0.00961199051768491],[114,-42,79,0.00777970058962163],[114,-41,64,0.05150909217807653],[114,-41,65,0.048397298759061846],[114,-41,66,0.04537145728066361],[114,-41,67,0.04243310049311544],[114,-41,68,0.03958363137981724],[114,-41,69,0.03682431796154251],[114,-41,70,0.03415628803762072],[114,-41,71,0.031580523864176646],[114,-41,72,0.029097856769413233],[114,-41,73,0.026708961706012557],[114,-41,74,0.024414351740445484],[114,-41,75,0.022214372479480216],[114,-41,76,0.020109196433657828],[114,-41,77,0.018098817317849236],[114,-41,78,0.016183044288844872],[114,-41,79,0.014361496120001815],[114,-40,64,0.05780734040954327],[114,-40,65,0.05472102735508522],[114,-40,66,0.05171957429860674],[114,-40,67,0.04880451877811909],[114,-40,68,0.04597726962087445],[114,-40,69,0.043239101763630106],[114,-40,70,0.040591151009870874],[114,-40,71,0.038034408724068935],[114,-40,72,0.035569716462971135],[114,-40,73,0.03319776054398649],[114,-40,74,0.03091906655046539],[114,-40,75,0.028733993774158972],[114,-40,76,0.026642729594628656],[114,-40,77,0.024645283795719286],[114,-40,78,0.022741482819049086],[114,-40,79,0.020930963954535975],[114,-39,64,0.06408351278110103],[114,-39,65,0.06102315659386526],[114,-39,66,0.058046553797804656],[114,-39,67,0.05515524675775618],[114,-39,68,0.05235065019867291],[114,-39,69,0.049634046042211],[114,-39,70,0.04700657818025966],[114,-39,71,0.04446924718549261],[114,-39,72,0.042022904958927354],[114,-39,73,0.03966824931457025],[114,-39,74,0.037405818500935384],[114,-39,75,0.03523598565972619],[114,-39,76,0.03315895322145179],[114,-39,77,0.031174747238088107],[114,-39,78,0.02928321165273995],[114,-39,79,0.027484002506323435],[114,-38,64,0.07033376159162619],[114,-38,65,0.06729982399107692],[114,-38,66,0.06434851907747619],[114,-38,67,0.06148139407934372],[114,-38,68,0.058699869670433946],[114,-38,69,0.056005234822905425],[114,-38,70,0.05339864159741714],[114,-38,71,0.05088109987023015],[114,-38,72,0.048453471997302655],[114,-38,73,0.04611646741545028],[114,-38,74,0.04387063718036821],[114,-38,75,0.041716368441797824],[114,-38,76,0.03965387885561089],[114,-38,77,0.03768321093292415],[114,-38,78,0.035804226326197286],[114,-38,79,0.03401660005233542],[114,-37,64,0.0765543388597506],[114,-37,65,0.07354726662931377],[114,-37,66,0.07062169285334108],[114,-37,67,0.06777916965870734],[114,-37,68,0.06502112371632662],[114,-37,69,0.06234885111115307],[114,-37,70,0.05976351214909481],[114,-37,71,0.05726612610091664],[114,-37,72,0.05485756588312085],[114,-37,73,0.052538552675876815],[114,-37,74,0.05030965047779867],[114,-37,75,0.048171260597848486],[114,-37,76,0.04612361608414517],[114,-37,77,0.04416677608978514],[114,-37,78,0.04230062017563174],[114,-37,79,0.0405248425500937],[114,-36,64,0.08274160405787956],[114,-36,65,0.07976182891173689],[114,-36,66,0.07686240503008124],[114,-36,67,0.07404488947064214],[114,-36,68,0.07131071494711694],[114,-36,69,0.06866118471624683],[114,-36,70,0.06609746740178712],[114,-36,71,0.06362059175545431],[114,-36,72,0.06123144135483405],[114,-36,73,0.0589307492383242],[114,-36,74,0.05671909247690998],[114,-36,75,0.054596886683050516],[114,-36,76,0.05256438045645462],[114,-36,77,0.05062164976685468],[114,-36,78,0.048768592273733535],[114,-36,79,0.04700492158302472],[114,-35,64,0.08889203197015871],[114,-35,65,0.08593997044012469],[114,-35,66,0.08306710059864031],[114,-35,67,0.08027498446462888],[114,-35,68,0.07756506083747616],[114,-35,69,0.07493864020141006],[114,-35,70,0.07239689956676176],[114,-35,71,0.0699408772481881],[114,-35,72,0.06757146757984156],[114,-35,73,0.0652894155675594],[114,-35,74,0.06309531147787151],[114,-35,75,0.06098958536410559],[114,-35,76,0.05897250152936495],[114,-35,77,0.05704415292649212],[114,-35,78,0.05520445549497044],[114,-35,79,0.05345314243478394],[114,-34,64,0.09500222067418429],[114,-34,65,0.09207827401712088],[114,-34,66,0.08923234765815513],[114,-34,67,0.08646600860560283],[114,-34,68,0.08378070178474017],[114,-34,69,0.08117774495970875],[114,-34,70,0.07865832359229097],[114,-34,71,0.07622348563763093],[114,-34,72,0.07387413627689066],[114,-34,73,0.07161103258690993],[114,-34,74,0.06943477814667354],[114,-34,75,0.06734581758085789],[114,-34,76,0.06534443104024112],[114,-34,77,0.06343072861908139],[114,-34,78,0.061604644709421064],[114,-34,79,0.05986593229233583],[114,-33,64,0.10106889964672494],[114,-33,65,0.09817345377294762],[114,-33,66,0.09535484556279084],[114,-33,67,0.09261464704004319],[114,-33,68,0.08995430929339299],[114,-33,69,0.08737515741607238],[114,-33,70,0.08487838538235959],[114,-33,71,0.08246505086101541],[114,-33,72,0.0801360699656376],[114,-33,73,0.0778922119420089],[114,-33,74,0.07573409379223806],[114,-33,75,0.07366217483596749],[114,-33,76,0.07167675120842998],[114,-33,77,0.0697779502954613],[114,-33,78,0.06796572510542609],[114,-33,79,0.06623984857807252],[114,-32,64,0.10708893799313601],[114,-32,65,0.10422236341626356],[114,-32,66,0.10143143319315606],[114,-32,67,0.09871772438706183],[114,-32,68,0.09608269428494898],[114,-32,69,0.09352767535509554],[114,-32,70,0.09105387014152122],[114,-32,71,0.08866234609534362],[114,-32,72,0.08635403034303935],[114,-32,73,0.08412970439168421],[114,-32,74,0.08198999877097657],[114,-32,75,0.07993538761231223],[114,-32,76,0.07796618316469672],[114,-32,77,0.0760825302476017],[114,-32,78,0.07428440064071895],[114,-32,79,0.07257158741063507],[114,-31,64,0.11305935280061796],[114,-31,65,0.11022200460931975],[114,-31,66,0.10745909735245107],[114,-31,67,0.10477221315464169],[114,-31,68,0.10216281553338757],[114,-31,69,0.09963224437477813],[114,-31,70,0.0971817108460562],[114,-31,71,0.09481229224508814],[114,-31,72,0.09252492678672863],[114,-31,73,0.09032040832615007],[114,-31,74,0.08819938101894631],[114,-31,75,0.08616233391827266],[114,-31,76,0.08420959550881368],[114,-31,77,0.08234132817768103],[114,-31,78,0.08055752262219817],[114,-31,79,0.07885799219459344],[114,-30,64,0.11897731761547281],[114,-30,65,0.11616953546756925],[114,-30,66,0.11343498128750629],[114,-30,67,0.11077524228118785],[114,-30,68,0.10819178822629927],[114,-30,69,0.10568596646635964],[114,-30,70,0.10325899684159467],[114,-30,71,0.10091196655670853],[114,-30,72,0.09864582498553809],[114,-30,73,0.09646137841266245],[114,-30,74,0.09435928471177235],[114,-30,75,0.09234004796106676],[114,-30,76,0.09040401299546463],[114,-30,77,0.08855135989573493],[114,-30,78,0.08678209841450324],[114,-30,79,0.08509606233915423],[114,-29,64,0.12484017104404743],[114,-29,65,0.12206227918341273],[114,-29,66,0.11935639333439352],[114,-29,67,0.11672410580206605],[114,-29,68,0.11416689265142344],[114,-29,69,0.1116861087199289],[114,-29,70,0.1092829825668793],[114,-29,71,0.10695861135965545],[114,-29,72,0.10471395569684583],[114,-29,73,0.10254983436831211],[114,-29,74,0.10046691905200655],[114,-29,75,0.0984657289478037],[114,-29,76,0.09654662534813652],[114,-29,77,0.09470980614554048],[114,-29,78,0.09295530027706378],[114,-29,79,0.0912829621055603],[114,-28,64,0.13064542547752733],[114,-28,65,0.12789773277425243],[114,-28,66,0.12522081568878018],[114,-28,67,0.1226162716413044],[114,-28,68,0.12008558300874739],[114,-28,69,0.11763011215597918],[114,-28,70,0.11525109640384024],[114,-28,71,0.11294964293403953],[114,-28,72,0.11072672363091529],[114,-28,73,0.10858316986012839],[114,-28,74,0.10651966718409644],[114,-28,75,0.10453675001443108],[114,-28,76,0.10263479620117166],[114,-28,77,0.1008140215589145],[114,-28,78,0.09907447432979821],[114,-28,79,0.09741602958336248],[114,-27,64,0.13639077594072113],[114,-27,65,0.13367357595498885],[114,-27,66,0.1310259133011622],[114,-27,67,0.12844939052859294],[114,-27,68,0.12594549634830676],[114,-27,69,0.1235156006830489],[114,-27,70,0.1211609496541236],[114,-27,71,0.11888266050510055],[114,-27,72,0.11668171646237291],[114,-27,73,0.11455896153263734],[114,-27,74,0.1125150952371079],[114,-27,75,0.1105506672827209],[114,-27,76,0.10866607217012703],[114,-27,77,0.10686154373856904],[114,-27,78,0.10513714964760679],[114,-27,79,0.10349278579570453],[114,-26,64,0.14207410906454],[114,-26,65,0.13938768013466418],[114,-26,66,0.13676954289668186],[114,-26,67,0.13422130504128515],[114,-26,68,0.13174446163338793],[114,-26,69,0.1293403901811474],[114,-26,70,0.12701034564177094],[114,-26,71,0.12475545536417976],[114,-26,72,0.12257671396851721],[114,-26,73,0.12047497816256636],[114,-26,74,0.11845096149489598],[114,-26,75,0.11650522904498528],[114,-26,76,0.11463819205012837],[114,-26,77,0.1128501024692149],[114,-26,78,0.11114104748334741],[114,-26,79,0.10951094393331451],[114,-25,64,0.14769351218232252],[114,-25,65,0.14503811753740659],[114,-25,66,0.14244976211967975],[114,-25,67,0.13993005877155273],[114,-25,68,0.13748050892928454],[114,-25,69,0.1351024977111197],[114,-25,70,0.13279728894220322],[114,-25,71,0.13056602011634477],[114,-25,72,0.1284096972946166],[114,-25,73,0.12632918994085485],[114,-25,74,0.12432522569387838],[114,-25,75,0.12239838507667888],[114,-25,76,0.12054909614238118],[114,-25,77,0.11877762905707145],[114,-25,78,0.11708409061945468],[114,-25,79,0.11546841871735691],[114,-24,64,0.15324728255014963],[114,-24,65,0.15062317044781892],[114,-24,66,0.14806483880312793],[114,-24,67,0.14557390561884076],[114,-24,68,0.1431518787177567],[114,-24,69,0.14080015085009712],[114,-24,70,0.13851999473766063],[114,-24,71,0.1363125580548198],[114,-24,72,0.13417885834634458],[114,-24,73,0.13211977788211793],[114,-24,74,0.13013605844856468],[114,-24,75,0.12822829607704078],[114,-24,76,0.12639693570898602],[114,-24,77,0.1246422657979358],[114,-24,78,0.12296441284835402],[114,-24,79,0.12136333589130333],[114,-23,64,0.15873393669085734],[114,-23,65,0.1561413405805152],[114,-23,66,0.153613260362649],[114,-23,67,0.15115131920732627],[114,-23,68,0.14875703133689366],[114,-23,69,0.14643179715273524],[114,-23,70,0.14417689829879288],[114,-23,71,0.14199349266191907],[114,-23,72,0.13988260930904928],[114,-23,73,0.13784514336126052],[114,-23,74,0.1358818508045333],[114,-23,75,0.1339933432374678],[114,-23,76,0.13218008255575509],[114,-23,77,0.13044237557350058],[114,-23,78,0.1287803685813601],[114,-23,79,0.12719404184150718],[114,-22,64,0.16415221986189366],[114,-22,65,0.16159135857395857],[114,-22,66,0.1590937433152685],[114,-22,67,0.15666100242852887],[114,-22,68,0.15429465654653007],[114,-22,69,0.15199611373839017],[114,-22,70,0.14976666459255672],[114,-22,71,0.1476074772366318],[114,-22,72,0.14551959229401012],[114,-22,73,0.1435039177773948],[114,-22,74,0.14156122391901282],[114,-22,75,0.13969213793777402],[114,-22,76,0.1378971387431801],[114,-22,77,0.13617655157607766],[114,-22,78,0.134530542586219],[114,-22,79,0.1329591133466428],[114,-21,64,0.16950111564716808],[114,-21,65,0.1669721936087437],[114,-21,66,0.1645052429230519],[114,-21,67,0.16210189710922596],[114,-21,68,0.1597636832193675],[114,-21,69,0.1574920170043823],[114,-21,70,0.15528819801656735],[114,-21,71,0.15315340464901694],[114,-21,72,0.1510886891118347],[114,-21,73,0.14909497234521485],[114,-21,74,0.14717303886922017],[114,-21,75,0.1453235315704925],[114,-21,76,0.14354694642571064],[114,-21,77,0.1418436271618838],[114,-21,78,0.14021375985344497],[114,-21,79,0.13865736745616186],[114,-20,64,0.1747798556725908],[114,-20,65,0.1722830631500223],[114,-20,66,0.1698469629613174],[114,-20,67,0.16747319380435954],[114,-20,68,0.16516328915749112],[114,-20,69,0.16291867246504088],[114,-20,70,0.16074065225959633],[114,-20,71,0.15863041722108928],[114,-20,72,0.15658903117268153],[114,-20,73,0.15461742801351241],[114,-20,74,0.15271640658813845],[114,-20,75,0.1508866254928991],[114,-20,76,0.14912859781902343],[114,-20,77,0.14744268583256603],[114,-20,78,0.14582909559113788],[114,-20,79,0.14428787149744737],[114,-19,64,0.1799879294454685],[114,-19,65,0.17752344281423804],[114,-19,66,0.175118365611597],[114,-19,67,0.17277434171511208],[114,-19,68,0.1704929110344522],[114,-19,69,0.16827550471669694],[114,-19,70,0.16612344028838588],[114,-19,71,0.16403791673437418],[114,-19,72,0.1620200095134834],[114,-19,73,0.16007066551100846],[114,-19,74,0.15819069792791185],[114,-19,75,0.15638078110693687],[114,-19,76,0.15464144529545654],[114,-19,77,0.15297307134514748],[114,-19,78,0.1513758853484518],[114,-19,79,0.1498499532118439],[114,-18,64,0.1851250943178807],[114,-18,65,0.18269307636029775],[114,-18,66,0.18031918147946735],[114,-18,67,0.1780050587322699],[114,-18,68,0.1757522544630432],[114,-18,69,0.17356220752875406],[114,-18,70,0.171436244460907],[114,-18,71,0.16937557456425445],[114,-18,72,0.1673812849522961],[114,-18,73,0.16545433551962974],[114,-18,74,0.16359555385098457],[114,-18,75,0.1618056300671673],[114,-18,76,0.16008511160774053],[114,-18,77,0.15843439795051883],[114,-18,78,0.15685373526784974],[114,-18,79,0.1553432110196934],[114,-17,64,0.19019138557375104],[114,-17,65,0.18779198580488954],[114,-17,66,0.18544941973696483],[114,-17,67,0.18316534160458953],[114,-17,68,0.1809413041884752],[114,-17,69,0.17877875406054355],[114,-17,70,0.1766790267657692],[114,-17,71,0.17464334194082032],[114,-17,72,0.17267279836948313],[114,-17,73,0.17076836897493364],[114,-17,74,0.1689308957486867],[114,-17,75,0.16716108461645385],[114,-17,76,0.16545950024072764],[114,-17,77,0.16382656076018076],[114,-17,78,0.1622625324658432],[114,-17,79,0.1607675244140746],[114,-16,64,0.19518712663978577],[114,-16,65,0.19282048166212107],[114,-16,66,0.19050937838975635],[114,-16,67,0.18825547623233707],[114,-16,68,0.18606033440712988],[114,-16,69,0.18392540720413963],[114,-16,70,0.18185203918795612],[114,-16,71,0.1798414603363927],[114,-16,72,0.17789478111590606],[114,-16,73,0.17601298749385663],[114,-16,74,0.17419693588744523],[114,-16,75,0.1724473480495513],[114,-16,76,0.17076480589129572],[114,-16,77,0.16914974624141188],[114,-16,78,0.16760245554239273],[114,-16,79,0.1661230644834275],[114,-15,64,0.20011293942036223],[114,-15,65,0.19777917330756278],[114,-15,66,0.19549965466915187],[114,-15,67,0.19327604808609056],[114,-15,68,0.1911099192109751],[114,-15,69,0.18900273005322132],[114,-15,70,0.1869558342009754],[114,-15,71,0.18497047197981298],[114,-15,72,0.18304776554821456],[114,-15,73,0.18118871392987945],[114,-15,74,0.17939418798271012],[114,-15,75,0.17766492530469646],[114,-15,76,0.17600152507651856],[114,-15,77,0.17440444284095546],[114,-15,78,0.17287398521906594],[114,-15,79,0.17141030456315431],[114,-14,64,0.20496975475615342],[114,-14,65,0.20266897946648],[114,-14,66,0.20042115554874051],[114,-14,67,0.19822795275058125],[114,-14,68,0.19609094315742182],[114,-14,69,0.1940115964977599],[114,-14,70,0.1919912753852009],[114,-14,71,0.1900312304972721],[114,-14,72,0.1881325956910096],[114,-14,73,0.18629638305537932],[114,-14,74,0.18452347790036816],[114,-14,75,0.18281463368296735],[114,-14,76,0.18117046686987448],[114,-14,77,0.1795914517369961],[114,-14,78,0.1780779151057189],[114,-14,79,0.17663003101596475],[114,-13,64,0.20975882300658277],[114,-13,65,0.20749113882634862],[114,-13,66,0.20527510838574647],[114,-13,67,0.20311240659367535],[114,-13,68,0.20100461196472097],[114,-13,69,0.1989532019446295],[114,-13,70,0.19695954817250394],[114,-13,71,0.19502491167978075],[114,-13,72,0.19315043802597787],[114,-13,73,0.19133715237127213],[114,-13,74,0.18958595448574467],[114,-13,75,0.18789761369551572],[114,-13,76,0.1862727637655942],[114,-13,77,0.18471189771952523],[114,-13,78,0.18321536259580395],[114,-13,79,0.1817833541410685],[114,-12,64,0.2144817247562556],[114,-12,65,0.2122472207738012],[114,-12,66,0.21006307168725313],[114,-12,67,0.20793095756064184],[114,-12,68,0.20585246333304885],[114,-12,69,0.2038290741642914],[114,-12,70,0.20186217071732548],[114,-12,71,0.1999530243774289],[114,-12,72,0.19810279240815232],[114,-12,73,0.19631251304409436],[114,-12,74,0.194583100520347],[114,-12,75,0.19291534003882382],[114,-12,76,0.19130988267130067],[114,-12,77,0.18976724019925406],[114,-12,78,0.18828777989046042],[114,-12,79,0.186871719212373],[114,-11,64,0.21914038164509453],[114,-11,65,0.2169391362557308],[114,-11,66,0.2147869460010179],[114,-11,67,0.21268549609342924],[114,-11,68,0.21063637789100265],[114,-11,69,0.20864108426327044],[114,-11,70,0.20670100489390764],[114,-11,71,0.20481742152015536],[114,-11,72,0.20299150310901126],[114,-11,73,0.20122430097024224],[114,-11,74,0.19951674380606366],[114,-11,75,0.19786963269769986],[114,-11,76,0.19628363602865562],[114,-11,77,0.19475928434478074],[114,-11,78,0.1932969651510953],[114,-11,79,0.19189691764538985],[114,-10,64,0.2237370673223983],[114,-10,65,0.22156914876477074],[114,-10,66,0.219448984931102],[114,-10,67,0.21737826617517653],[114,-10,68,0.21535859026772963],[114,-10,69,0.21339145778265167],[114,-10,70,0.21147826741991127],[114,-10,71,0.20962031126525105],[114,-10,72,0.2078187699866485],[114,-10,73,0.20607470796759575],[114,-10,74,0.2043890683770473],[114,-10,75,0.20276266817624256],[114,-10,76,0.201196193062241],[114,-10,77,0.19969019234824625],[114,-10,78,0.19824507378069067],[114,-10,79,0.19686109829308995],[114,-9,64,0.22827441852467256],[114,-9,65,0.22613988544900188],[114,-9,66,0.22405180627816046],[114,-9,67,0.22201187649980214],[114,-9,68,0.22002170029053725],[114,-9,69,0.21808278592243824],[114,-9,70,0.21619654110626185],[114,-9,71,0.21436426827144306],[114,-9,72,0.21258715978285259],[114,-9,73,0.21086629309437022],[114,-9,74,0.2092026258391262],[114,-9,75,0.20759699085661476],[114,-9,76,0.20605009115651862],[114,-9,77,0.20456249481932054],[114,-9,78,0.2031346298336738],[114,-9,79,0.20176677887054217],[114,-8,64,0.2327554462774245],[114,-8,65,0.23065434834607423],[114,-8,66,0.22859840330458614],[114,-8,67,0.2265893117668657],[114,-8,68,0.22462868430817728],[114,-8,69,0.22271803689197067],[114,-8,70,0.2208587862334238],[114,-8,71,0.21905224509975518],[114,-8,72,0.2172996175472991],[114,-8,73,0.21560199409539482],[114,-8,74,0.21396034683694254],[114,-8,75,0.2123755244858302],[114,-8,76,0.21084824736106933],[114,-8,77,0.20937910230771728],[114,-8,78,0.20796853755455635],[114,-8,79,0.20661685750854186],[114,-7,64,0.23718354722069313],[114,-7,65,0.23511592574152085],[114,-7,66,0.23309215612427936],[114,-7,67,0.23111394410147434],[114,-7,68,0.22918290663957408],[114,-7,69,0.2273005673861721],[114,-7,70,0.22546835205386695],[114,-7,71,0.22368758374091036],[114,-7,72,0.22195947818861617],[114,-7,73,0.22028513897558255],[114,-7,74,0.21866555264858056],[114,-7,75,0.21710158379031097],[114,-7,76,0.21559397002387048],[114,-7,77,0.21414331695400135],[114,-7,78,0.21275009304509918],[114,-7,79,0.21141462443598558],[114,-6,64,0.24156251505842152],[114,-6,65,0.23952840365136496],[114,-6,66,0.23753684321714696],[114,-6,67,0.23558954459933634],[114,-6,68,0.23368813114810238],[114,-6,69,0.23183413418772691],[114,-6,70,0.23002898842083352],[114,-6,71,0.2282740272693835],[114,-6,72,0.22657047815243236],[114,-6,73,0.2249194577006971],[114,-6,74,0.22332196690779182],[114,-6,75,0.2217788862183281],[114,-6,76,0.22029097055272362],[114,-6,77,0.21885884426879676],[114,-6,78,0.21748299606011368],[114,-6,79,0.2161637737911034],[114,-5,64,0.24589655213179035],[114,-5,65,0.24389597742914298],[114,-5,66,0.24193665306845502],[114,-5,67,0.2400202949970871],[114,-5,68,0.23814853294153848],[114,-5,69,0.23632290589531812],[114,-5,70,0.23454485754353072],[114,-5,71,0.23281573162423064],[114,-5,72,0.2311367672265353],[114,-5,73,0.2295090940255482],[114,-5,74,0.22793372745394958],[114,-5,75,0.22641156381045136],[114,-5,76,0.2249433753049599],[114,-5,77,0.22352980504052333],[114,-5,78,0.2221713619320309],[114,-5,79,0.22086841556168035],[114,-4,64,0.2501902811162707],[114,-4,65,0.2482232634971004],[114,-4,66,0.24629619593278795],[114,-4,67,0.24441079946764055],[114,-4,68,0.24256871019743853],[114,-4,69,0.24077147477767435],[114,-4,70,0.2390205458684984],[114,-4,71,0.23731727751644105],[114,-4,72,0.23566292047288628],[114,-4,73,0.2340586174493574],[114,-4,74,0.2325053983094717],[114,-4,75,0.23100417519775518],[114,-4,76,0.22955573760516734],[114,-4,77,0.22816074737140812],[114,-4,78,0.22681973362397823],[114,-4,79,0.22553308765400504],[114,-3,64,0.25444875684253787],[114,-3,65,0.25251531120170073],[114,-3,66,0.250620515722759],[114,-3,67,0.24876609654070864],[114,-3,68,0.24695369611408524],[114,-3,69,0.24518486875356815],[114,-3,70,0.2434610760872975],[114,-3,71,0.2417836824629611],[114,-3,72,0.24015395028663666],[114,-3,73,0.2385730352984432],[114,-3,74,0.2370419817848638],[114,-3,75,0.23556171772792456],[114,-3,76,0.23413304989108608],[114,-3,77,0.23275665884191565],[114,-3,78,0.231433093911512],[114,-3,79,0.23016276809069658],[114,-2,64,0.258677478241328],[114,-2,65,0.25677761479353284],[114,-2,66,0.2549151020225537],[114,-2,67,0.253091671148576],[114,-2,68,0.25130897098709015],[114,-2,69,0.2495685634978581],[114,-2,70,0.2478719192706056],[114,-2,71,0.24622041294747443],[114,-2,72,0.24461531858223717],[114,-2,73,0.2430578049363149],[114,-2,74,0.2415489307114702],[114,-2,75,0.24008963971935382],[114,-2,76,0.23868075598776517],[114,-2,77,0.23732297880369146],[114,-2,78,0.23601687769310065],[114,-2,79,0.2347628873375016],[114,-1,64,0.262882400412032],[114,-1,65,0.26101612553140957],[114,-1,66,0.25918590222609905],[114,-1,67,0.2573934667969163],[114,-1,68,0.25564047441144017],[114,-1,69,0.2539284946733538],[114,-1,70,0.252259007128504],[114,-1,71,0.2506333967077246],[114,-1,72,0.24905294910642062],[114,-1,73,0.24751884610095576],[114,-1,74,0.2460321608017142],[114,-1,75,0.2445938528430186],[114,-1,76,0.2432047635097574],[114,-1,77,0.24186561080079483],[114,-1,78,0.24057698442913256],[114,-1,79,0.23933934075883645],[114,0,64,0.2670699468151358],[114,0,65,0.2652372639107606],[114,0,66,0.2634393337999687],[114,0,67,0.2616778978607601],[114,0,68,0.2599546176090974],[114,0,69,0.2582710702886209],[114,0,70,0.25662874439707195],[114,0,71,0.2550290351494922],[114,0,72,0.253473239878171],[114,0,73,0.2519625533694081],[114,0,74,0.2504980631369401],[114,0,75,0.24908074463223118],[114,0,76,0.24771145639146763],[114,0,77,0.2463909351193374],[114,0,78,0.24511979070956258],[114,0,79,0.24389850120219292],[114,1,64,0.2712470215886092],[114,1,65,0.26944793201643497],[114,1,66,0.26768229667112714],[114,1,67,0.265951862005727],[114,1,68,0.26425829588226346],[114,1,69,0.2626031831818327],[114,1,70,0.2609880213513945],[114,1,71,0.2594142158873361],[114,1,72,0.2578830757557933],[114,1,73,0.25639580874977663],[114,1,74,0.25495351678297273],[114,1,75,0.25355719112039876],[114,1,76,0.2522077075457686],[114,1,77,0.25090582146564167],[114,1,78,0.2496521629503211],[114,1,79,0.24844723171152094],[114,2,64,0.2837678317206198],[114,2,65,0.28206952357435155],[114,2,66,0.28040077421091847],[114,2,67,0.2787633453058029],[114,2,68,0.2771589237563347],[114,2,69,0.27558911735287495],[114,2,70,0.2740554503867188],[114,2,71,0.27255935919476637],[114,2,72,0.2711021876409507],[114,2,73,0.2696851825344681],[114,2,74,0.2683094889846893],[114,2,75,0.2669761456929178],[114,2,76,0.26568608018086454],[114,2,77,0.26444010395590045],[114,2,78,0.2632389076130644],[114,2,79,0.26208305587383474],[114,3,64,0.283764689960973],[114,3,65,0.2820663936595154],[114,3,66,0.2803976566457267],[114,3,67,0.2787602405853653],[114,3,68,0.27715583236573316],[114,3,69,0.27558603976686574],[114,3,70,0.2740523870694448],[114,3,71,0.2725563105994769],[114,3,72,0.27109915420973],[114,3,73,0.26968216469797407],[114,3,74,0.26830648716190025],[114,3,75,0.2669731602908896],[114,3,76,0.26568311159449715],[114,3,77,0.26443715256771544],[114,3,78,0.2632359737929917],[114,3,79,0.2620801399790107],[114,4,64,0.28375385919211865],[114,4,65,0.282055603723959],[114,4,66,0.2803869092838099],[114,4,67,0.27874953750390946],[114,4,68,0.27714517523698806],[114,4,69,0.2755754302274867],[114,4,70,0.274041826719498],[114,4,71,0.2725458010014744],[114,4,72,0.271088696887695],[114,4,73,0.26967176113653796],[114,4,74,0.268296138805431],[114,4,75,0.26696286854265433],[114,4,76,0.2656728778158579],[114,4,77,0.2644269780773601],[114,4,78,0.26322585986620123],[114,4,79,0.26207008784696184],[114,5,64,0.28790412416249406],[114,5,65,0.286239547659201],[114,5,66,0.2846032374872795],[114,5,67,0.282996960281354],[114,5,68,0.28142240916518146],[114,5,69,0.27988119944329554],[114,5,70,0.2783748642293766],[114,5,71,0.27690485001139037],[114,5,72,0.27547251215348745],[114,5,73,0.2740791103347097],[114,5,74,0.2727258039243777],[114,5,75,0.2714136472943316],[114,5,76,0.27014358506788866],[114,5,77,0.26891644730558406],[114,5,78,0.2677329446276684],[114,5,79,0.2665936632733723],[114,6,64,0.2920371156908151],[114,6,65,0.2904062774321965],[114,6,66,0.28880241366626147],[114,6,67,0.28722729597739427],[114,6,68,0.2856826237059665],[114,6,69,0.28417001966044864],[114,6,70,0.28269102576625066],[114,6,71,0.28124709865133374],[114,6,72,0.27983960516858897],[114,6,73,0.2784698178550214],[114,6,74,0.27713891032762433],[114,6,75,0.27584795261610545],[114,6,76,0.2745979064323356],[114,6,77,0.2733896203765832],[114,6,78,0.2722238250805089],[114,6,79,0.2711011282869311],[114,7,64,0.29614811884410236],[114,7,65,0.29455109124665857],[114,7,66,0.2929797499841771],[114,7,67,0.29143587152424416],[114,7,68,0.28992116135496],[114,7,69,0.2884372497175668],[114,7,70,0.28698568727581025],[114,7,71,0.2855679407220809],[114,7,72,0.2841853883203226],[114,7,73,0.2828393153857548],[114,7,74,0.2815309097012896],[114,7,75,0.28026125687080433],[114,7,76,0.2790313356091438],[114,7,77,0.27784201296891164],[114,7,78,0.2766940395040279],[114,7,79,0.27558804437006224],[114,8,64,0.30023246151241845],[114,8,65,0.29866932873892277],[114,8,66,0.2971305986570939],[114,8,67,0.2956180525375393],[114,8,68,0.29413340193301607],[114,8,69,0.29267828443163224],[114,8,70,0.2912542593467918],[114,8,71,0.2898628033439238],[114,8,72,0.2885053060039888],[114,8,73,0.28718306532380333],[114,8,74,0.28589728315306906],[114,8,75,0.2846490605682628],[114,8,76,0.28343939318326383],[114,8,77,0.28226916639677785],[114,8,78,0.28113915057653405],[114,8,79,0.2800499961802653],[114,9,64,0.3042855170247398],[114,9,65,0.3027563736350812],[114,9,66,0.30125035465098055],[114,9,67,0.2997692460525719],[114,9,68,0.2983147653603025],[114,9,69,0.2968885574087741],[114,9,70,0.29549219005733784],[114,9,71,0.2941271498374829],[114,9,72,0.2927948375370119],[114,9,73,0.2914965637210442],[114,9,74,0.290233544189734],[114,9,75,0.2890068953728579],[114,9,76,0.28781762966115],[114,9,77,0.286666650674443],[114,9,78,0.2855547484665928],[114,9,79,0.28448259466719467],[114,10,64,0.3083027067128539],[114,10,65,0.3068076563556874],[114,10,66,0.3053344583260968],[114,10,67,0.30388490320724304],[114,10,68,0.30246071437669536],[114,10,69,0.30106354380098566],[114,10,70,0.29969496776692683],[114,10,71,0.29835648254973895],[114,10,72,0.2970495000179745],[114,10,73,0.29577534317528237],[114,10,74,0.2945352416389016],[114,10,75,0.29333032705503437],[114,10,76,0.29216162845098087],[114,10,77,0.29103006752409144],[114,10,78,0.28993645386751515],[114,10,79,0.2888814801327522],[114,11,64,0.3122795024230677],[114,11,65,0.3108186565678201],[114,11,66,0.309378398028306],[114,11,67,0.30796052187151834],[114,11,68,0.30656675720827437],[114,11,69,0.3051987630085592],[114,11,70,0.3038581238536501],[114,11,71,0.30254634562506344],[114,11,72,0.3012648511303164],[114,11,73,0.3000149756655426],[114,11,74,0.29879796251485335],[114,11,75,0.2976149583865939],[114,11,76,0.29646700878637594],[114,11,77,0.2953550533269443],[114,11,78,0.294279920974854],[114,11,79,0.2932423252339684],[114,12,64,0.3162114289758382],[114,12,65,0.314784905684614],[114,12,66,0.3133777126274184],[114,12,67,0.3119916492234965],[114,12,68,0.3106284501800293],[114,12,69,0.30928978132834817],[114,12,70,0.307977235396951],[114,12,71,0.3066923277213599],[114,12,72,0.3054364918908122],[114,12,73,0.30421107533182323],[114,12,74,0.3030173348285164],[114,12,75,0.3018564319798638],[114,12,76,0.3007294285937244],[114,12,77,0.2996372820177338],[114,12,78,0.2985808404070245],[114,12,79,0.29756083792878457],[114,13,64,0.32009406657342243],[114,13,65,0.3187019893123587],[114,13,66,0.31732799400266654],[114,13,67,0.31597388427219125],[114,13,68,0.3146414002748811],[114,13,69,0.31333221454796034],[114,13,70,0.31204792780592844],[114,13,71,0.3107900646714217],[114,13,72,0.3095600693429318],[114,13,73,0.30835930119941873],[114,13,74,0.3071890303417131],[114,13,75,0.30605043307085145],[114,13,76,0.3049445873032324],[114,13,77,0.303872467922646],[114,13,78,0.3028349420691569],[114,13,79,0.3018327643648485],[114,14,64,0.323923053155333],[114,14,65,0.3225655496449472],[114,14,66,0.3212248894750953],[114,14,67,0.3199028803268087],[114,14,68,0.3186012676387947],[114,14,69,0.3173217304856589],[114,14,70,0.31606587739298075],[114,14,71,0.31483524208927866],[114,14,72,0.31363127919485845],[114,14,73,0.31245535984758144],[114,14,74,0.31130876726545037],[114,14,75,0.3101926922461539],[114,14,76,0.30910822860345794],[114,14,77,0.30805636854049734],[114,14,78,0.3070379979599482],[114,14,79,0.3060538917110869],[114,15,64,0.3276940867017791],[114,15,65,0.3263712878058587],[114,15,66,0.32506410418704906],[114,15,67,0.3237743474127043],[114,15,68,0.32250376803217223],[114,15,69,0.32125405147615904],[114,15,70,0.32002681389297916],[114,15,71,0.31882359792172554],[114,15,72,0.3176458684023536],[114,15,73,0.3164950080227149],[114,15,74,0.31537231290244155],[114,15,75,0.3142789881138175],[114,15,76,0.31321614313952856],[114,15,77,0.3121847872673441],[114,15,78,0.3111858249217087],[114,15,79,0.31022005093225236],[114,16,64,0.33140292748496253],[114,16,65,0.3301149661375402],[114,16,66,0.3288414034286219],[114,16,67,0.3275840546338837],[114,16,68,0.32634467522738725],[114,16,69,0.3251249568021826],[114,16,70,0.32392652292783203],[114,16,71,0.3227509249448896],[114,16,72,0.3215996376963294],[114,16,73,0.32047405519595895],[114,16,74,0.3193754862337188],[114,16,75,0.31830514991800357],[114,16,76,0.3172641711548979],[114,16,77,0.31625357606437815],[114,16,78,0.3152742873334602],[114,16,79,0.3143271195063012],[114,17,64,0.3350454002683983],[114,17,65,0.3337924104383625],[114,17,66,0.332552614911247],[114,17,67,0.33132783248222447],[114,17,68,0.33011982335264045],[114,17,69,0.32893028507195066],[114,17,70,0.32776084841662073],[114,17,71,0.32661307320602123],[114,17,72,0.3254884440553118],[114,17,73,0.3243883660653487],[114,17,74,0.32331416044952155],[114,17,75,0.3222670600976487],[114,17,76,0.32124820507682883],[114,17,77,0.32025863806929805],[114,17,78,0.31929929974727345],[114,17,79,0.31837102408478934],[114,18,64,0.33861739645405736],[114,18,65,0.3373995121469417],[114,18,66,0.33619363098821464],[114,18,67,0.33500157509320827],[114,18,68,0.3338251091819233],[114,18,69,0.3326659365423991],[114,18,70,0.33152569493109163],[114,18,71,0.33040595241029147],[114,18,72,0.32930820312257614],[114,18,73,0.3282338630023302],[114,18,74,0.32718426542424073],[114,18,75,0.32616065678889483],[114,18,76,0.3251641920453797],[114,18,77,0.3241959301509323],[114,18,78,0.32325682946762063],[114,18,79,0.32234774309606296],[114,19,64,0.3421148761774308],[114,19,65,0.3409322304739304],[114,19,66,0.3397604108222243],[114,19,67,0.33860124244826745],[114,19,68,0.3374564943711954],[114,19,69,0.3363278753882246],[114,19,70,0.3352170299966113],[114,19,71,0.334125534252701],[114,19,72,0.33305489156806256],[114,19,73,0.3320065284427391],[114,19,74,0.3309817901355262],[114,19,75,0.3299819362714012],[114,19,76,0.3290081363860048],[114,19,77,0.3280614654072237],[114,19,78,0.3271428990738538],[114,19,79,0.3262533092913532],[114,20,64,0.3455338703506038],[114,20,65,0.3443865944813651],[114,20,66,0.34324898250005675],[114,20,67,0.3421228625238346],[114,20,68,0.3410100076408643],[114,20,69,0.3399121319168495],[114,20,70,0.33883088633867486],[114,20,71,0.33776785469519516],[114,20,72,0.33672454939516444],[114,20,73,0.3357024072223372],[114,20,74,0.3347027850276539],[114,20,75,0.3337269553586313],[114,20,76,0.3327761020258623],[114,20,77,0.33185131560667075],[114,20,78,0.3309535888859047],[114,20,79,0.33008381223387256],[114,21,64,0.34887048265315523],[114,21,65,0.3477587051093849],[114,21,66,0.3466554450941825],[114,21,67,0.34556253338690907],[114,21,68,0.3444817469043799],[114,21,69,0.3434148047291168],[114,21,70,0.342363364074777],[114,21,71,0.34132901618879],[114,21,72,0.3403132821921946],[114,21,73,0.3393176088567098],[114,21,74,0.3383433643189519],[114,21,75,0.3373918337319165],[114,21,76,0.33646421485363165],[114,21,77,0.33556161357302744],[114,21,78,0.3346850393730052],[114,21,79,0.33383540073071066],[114,22,64,0.35212089147098047],[114,22,65,0.35104473715042034],[114,22,66,0.3499759706714021],[114,22,67,0.3489164252372364],[114,22,68,0.3478678813430416],[114,22,69,0.3468320628258141],[114,22,70,0.34581063285174535],[114,22,71,0.34480518984081143],[114,22,72,0.3438172633286318],[114,22,73,0.3428483097656272],[114,22,74,0.3418997082533927],[114,22,75,0.34097275621840095],[114,22,76,0.3400686650229448],[114,22,77,0.33918855551336324],[114,22,78,0.3383334535055333],[114,22,79,0.337504285207634],[114,23,64,0.35528135178311704],[114,23,65,0.3542409411709318],[114,23,66,0.3532068062486029],[114,23,67,0.35218078239618733],[114,23,68,0.3511646534271032],[114,23,69,0.3501601476601123],[114,23,70,0.34916893392862175],[114,23,71,0.3481926175273335],[114,23,72,0.3472327360962342],[114,23,73,0.3462907554419576],[114,23,74,0.3453680652964364],[114,23,75,0.34446597501295545],[114,23,76,0.34358570919951953],[114,23,77,0.34272840328957566],[114,23,78,0.3418950990500754],[114,23,79,0.3410867400268824],[114,24,64,0.358348196996402],[114,24,65,0.3573436453805261],[114,24,66,0.35634427569545596],[114,24,67,0.3553519252421565],[114,24,68,0.3543683808829976],[114,24,69,0.35339537513573843],[114,24,70,0.3524345822049118],[114,24,71,0.35148761395063394],[114,24,72,0.35055601579483636],[114,24,73,0.34964126256494665],[114,24,74,0.34874475427494084],[114,24,75,0.34786781184387433],[114,24,76,0.3470116727518075],[114,24,77,0.34617748663316505],[114,24,78,0.34536631080751456],[114,24,79,0.34457910574776957],[114,25,64,0.3613178407280535],[114,25,65,0.36034925744854274],[114,25,66,0.35938478158414683],[114,25,67,0.35842625209257734],[114,25,68,0.35747545860677443],[114,25,69,0.3565341375509798],[114,25,70,0.355603968194297],[114,25,71,0.35468656864176334],[114,25,72,0.35378349176292695],[114,25,73,0.35289622105796187],[114,25,74,0.3520261664612373],[114,25,75,0.3511746600824536],[114,25,76,0.35034295188525655],[114,25,77,0.3495322053033717],[114,25,78,0.3487434927942444],[114,25,79,0.34797779133018897],[114,26,64,0.3641867785362471],[114,26,65,0.36325426626818336],[114,26,66,0.36232480698621483],[114,26,67,0.3614002410326279],[114,26,68,0.36048236052382937],[114,26,69,0.35957290548859383],[114,26,70,0.35867355994388916],[114,26,71,0.35778594790830603],[114,26,72,0.3569116293530871],[114,26,73,0.3560520960907812],[114,26,74,0.3552087676014508],[114,26,75,0.3543829867965321],[114,26,76,0.35357601572026887],[114,26,77,0.35278903118875826],[114,26,78,0.35202312036659356],[114,26,79,0.3512792762811091],[114,27,64,0.36695158959853214],[114,27,65,0.3660552436680258],[114,27,66,0.36516091721634003],[114,27,67,0.36427045169046357],[114,27,68,0.36338564139475876],[114,27,69,0.36250822965146096],[114,27,70,0.3616399048988571],[114,27,71,0.360782296727166],[114,27,72,0.35993697185211765],[114,27,73,0.3591054300262559],[114,27,74,0.358289099887894],[114,27,75,0.35748933474782074],[114,27,76,0.3567074083136801],[114,27,77,0.35594451035206065],[114,27,78,0.3552017422882816],[114,27,79,0.35448011274387964],[114,28,64,0.3696089383381712],[114,28,65,0.36874884607100816],[114,28,66,0.36788976152316344],[114,28,67,0.36703352695906705],[114,28,68,0.3661819385674291],[114,28,69,0.36533674264406735],[114,28,70,0.36449963171251964],[114,28,71,0.3636722405824653],[114,28,72,0.36285614234594954],[114,28,73,0.3620528443114371],[114,28,74,0.3612637838756258],[114,28,75,0.36049032433311506],[114,28,76,0.35973375062385327],[114,28,77,0.3589952650184022],[114,28,78,0.35827598274100186],[114,28,79,0.3575769275304433],[114,29,64,0.3721555759984678],[114,29,65,0.3713318161009494],[114,29,66,0.3705080747272095],[114,29,67,0.3696861946647801],[114,29,68,0.36886797367532936],[114,29,69,0.36805516069988714],[114,29,70,0.36724945200197046],[114,29,71,0.3664524872486286],[114,29,72,0.3656658455294051],[114,29,73,0.3648910413132405],[114,29,74,0.36412952034324914],[114,29,75,0.36338265546946175],[114,29,76,0.36265174241946085],[114,29,77,0.361937995506945],[114,29,78,0.36124254327820654],[114,29,79,0.36056642409652967],[114,30,64,0.37458834216494086],[114,30,65,0.37380098413646035],[114,30,66,0.373012678805762],[114,30,67,0.37222526918237153],[114,30,68,0.3714405542820562],[114,30,69,0.37066028535451423],[114,30,70,0.369886162049085],[114,30,71,0.3691198285184978],[114,30,72,0.3683628694606578],[114,30,73,0.3676168060984916],[114,30,74,0.3668830920977881],[114,30,75,0.36616310942312263],[114,30,76,0.36545816413179555],[114,30,77,0.3647694821058179],[114,30,78,0.3640982047219312],[114,30,79,0.3634453844596672],[114,31,64,0.3769041662354231],[114,31,65,0.376153269812327],[114,31,66,0.3754004844247758],[114,31,67,0.3746476529967213],[114,31,68,0.3738965754720155],[114,31,69,0.373149005064625],[114,31,70,0.3724066444469921],[114,31,71,0.3716711418765618],[114,31,72,0.37094408726047323],[114,31,73,0.370227008158436],[114,31,74,0.36952136572373107],[114,31,75,0.3688285505824199],[114,31,76,0.3681498786506954],[114,31,77,0.367486586890407],[114,31,78,0.36683982900274653],[114,31,79,0.36621067106010086],[114,32,64,0.37910006883813907],[114,32,65,0.3783856834684196],[114,32,66,0.37766849241788036],[114,32,67,0.37695033821117885],[114,32,68,0.37623302138739684],[114,32,69,0.37551829677283166],[114,32,70,0.37480786969207014],[114,32,71,0.37410339211736254],[114,32,72,0.3734064587562946],[114,32,73,0.3727186030777786],[114,32,74,0.37204129327630403],[114,32,75,0.37137592817452925],[114,32,76,0.37072383306415024],[114,32,77,0.3700862554850767],[114,32,78,0.36946436094290386],[114,32,79,0.36885922856468495],[114,33,64,0.3811731631976384],[114,33,65,0.3804953275460032],[114,33,66,0.3798137952123458],[114,33,67,0.37913040800246567],[114,33,68,0.37844696671129074],[114,33,69,0.37776522741829366],[114,33,70,0.3770868977213337],[114,33,71,0.3764136329089398],[114,33,72,0.3757470320710337],[114,33,73,0.375088634148112],[114,33,74,0.3744399139188318],[114,33,75,0.3738022779260769],[114,33,76,0.37317706034144327],[114,33,77,0.3725655187681734],[114,33,78,0.37196882998252817],[114,33,79,0.3713880856135999],[114,34,64,0.383120656448653],[114,34,65,0.3824793979315186],[114,34,66,0.38183357820208585],[114,34,67,0.3811850380221946],[114,34,68,0.3805355780970209],[114,34,69,0.37988695539316],[114,34,70,0.3792408793952843],[114,34,71,0.37859900830139215],[114,34,72,0.3779629451566445],[114,34,73,0.37733423392581067],[114,34,74,0.3767143555042661],[114,34,75,0.3761047236676196],[114,34,76,0.375506680959909],[114,34,77,0.3749214945203946],[114,34,78,0.3743503518489391],[114,34,79,0.37379435650997794],[114,35,64,0.3849398508979256],[114,35,65,0.38433518524788146],[114,35,66,0.38372512106774204],[114,35,67,0.3831114977450536],[114,35,68,0.3824961155437414],[114,35,69,0.3818807319448938],[114,35,70,0.381267057926278],[114,35,71,0.3806567541806036],[114,35,72,0.3800514272725313],[114,35,73,0.3794526257344444],[114,35,74,0.3788618361009336],[114,35,75,0.3782804788820626],[114,35,76,0.3777099044753621],[114,35,77,0.37715138901657697],[114,35,78,0.37660613016915656],[114,35,79,0.3760752428524916],[114,36,64,0.38662814523390104],[114,36,65,0.38606007609319043],[114,36,66,0.3854857990437409],[114,36,67,0.3849071517635434],[114,36,68,0.3843259337181856],[114,36,69,0.3837439025243634],[114,36,70,0.38316277025229073],[114,36,71,0.38258419966701984],[114,36,72,0.3820098004086711],[114,36,73,0.3814411251115901],[114,36,74,0.3808796654623819],[114,36,75,0.38032684819689067],[114,36,76,0.37978403103607117],[114,36,77,0.3792524985607782],[114,36,78,0.3787334580254623],[114,36,79,0.37822803511077846],[114,37,64,0.38818303568434365],[114,37,65,0.38765155422690756],[114,37,66,0.3871130841323872],[114,37,67,0.3865694610293321],[114,37,68,0.38602248322262955],[114,37,69,0.38547390807976467],[114,37,70,0.38492544835615006],[114,37,71,0.3843787684595391],[114,37,72,0.38383548065352047],[114,37,73,0.3832971412001094],[114,37,74,0.3827652464413918],[114,37,75,0.3822412288202828],[114,37,76,0.3817264528403491],[114,37,77,0.3812222109647226],[114,37,78,0.38072971945409084],[114,37,79,0.3802501141437723],[114,38,64,0.38960211712191456],[114,38,65,0.3891072017035456],[114,38,66,0.3886045462650291],[114,38,67,0.3880959840412642],[114,38,68,0.3875833118091122],[114,38,69,0.38706828629641615],[114,38,70,0.38655262053027184],[114,38,71,0.386037980124561],[114,38,72,0.38552597950674516],[114,38,73,0.38501817808393657],[114,38,74,0.38451607634820106],[114,38,75,0.38402111192115457],[114,38,76,0.3835346555378042],[114,38,77,0.3830580069696581],[114,38,78,0.38259239088709374],[114,38,79,0.38213895266098974],[114,39,64,0.39088308411761885],[114,39,65,0.39042469995377216],[114,39,66,0.3899578544102027],[114,39,67,0.3894843779799297],[114,39,68,0.38900606553981054],[114,39,69,0.3885246727823256],[114,39,70,0.38804191258680226],[114,39,71,0.3875594513300878],[114,39,72,0.3870789051366715],[114,39,73,0.3866018360682691],[114,39,74,0.38612974825282936],[114,39,75,0.3856640839530192],[114,39,76,0.38520621957414164],[114,39,77,0.3847574616115096],[114,39,78,0.38431904253726634],[114,39,79,0.3838921166266559],[114,40,64,0.39202373194219986],[114,40,65,0.39160183081300576],[114,40,66,0.39117077762883423],[114,40,67,0.39073239978887253],[114,40,68,0.39028848989365583],[114,40,69,0.38984080219961337],[114,40,70,0.3893910490132494],[114,40,71,0.3889408970249686],[114,40,72,0.38849196358254556],[114,40,73,0.3880458129042514],[114,40,74,0.38760395223159877],[114,40,75,0.3871678279217592],[114,40,76,0.3867388214796089],[114,40,77,0.3863182455294266],[114,40,78,0.38590733972623137],[114,40,79,0.3855072666067668],[114,41,64,0.39302195751543084],[114,41,65,0.39263647749745706],[114,41,66,0.3922411860764494],[114,41,67,0.39183790720238765],[114,41,68,0.3914284308191358],[114,41,69,0.39101450934173737],[114,41,70,0.3905978540735498],[114,41,71,0.39018013156322606],[114,41,72,0.38976295990154386],[114,41,73,0.3893479049580929],[114,41,74,0.3889364765577869],[114,41,75,0.388530124597248],[114,41,76,0.3881302351010241],[114,41,77,0.3877381262176606],[114,41,78,0.3873550441556157],[114,41,79,0.38698215905902456],[114,42,64,0.39387576030335747],[114,42,65,0.39352662552766765],[114,42,66,0.39316705195244633],[114,42,67,0.39279885971996364],[114,42,68,0.39242383573334183],[114,42,69,0.39204373015658056],[114,42,70,0.39166025285463146],[114,42,71,0.39127506977353255],[114,42,72,0.3908897992605996],[114,42,73,0.3905060083246864],[114,42,74,0.39012520883648266],[114,42,75,0.3897488536688918],[114,42,76,0.38937833277745587],[114,42,77,0.38901496922084383],[114,42,78,0.3886600151213944],[114,42,79,0.3883146475657192],[114,43,64,0.3945832431634281],[114,43,65,0.3942703635994822],[114,43,66,0.3939464503963648],[114,43,67,0.3936133195273023],[114,43,68,0.3932727544671921],[114,43,69,0.39292650271532903],[114,43,70,0.3925762722584001],[114,43,71,0.3922237279737574],[114,43,72,0.39187048797296786],[114,43,73,0.39151811988564905],[114,43,74,0.39116813708356274],[114,43,75,0.39082199484500707],[114,43,76,0.3904810864594732],[114,43,77,0.3901467392725855],[114,43,78,0.3898202106713141],[114,43,79,0.38950268400946797],[114,44,64,0.39514261313755],[114,44,65,0.39486588440249304],[114,44,66,0.3945775603311916],[114,44,67,0.3942794523639558],[114,44,68,0.3939733401568703],[114,44,69,0.3936609681271829],[114,44,70,0.39334404193919087],[114,44,71,0.3930242249306314],[114,44,72,0.39270313447957417],[114,44,73,0.39238233831182906],[114,44,74,0.3920633507488367],[114,44,75,0.39174762889608383],[114,44,76,0.3914365687720117],[114,44,77,0.39113150137743236],[114,44,78,0.3908336887054459],[114,44,79,0.39054431969186365],[114,45,64,0.3955521821930803],[114,45,65,0.3953114853859675],[114,45,66,0.39505866525371347],[114,45,67,0.39479552833759446],[114,45,68,0.3945238500814948],[114,45,69,0.39424537139991306],[114,45,70,0.3939617951867014],[114,45,71,0.39367478276454193],[114,45,72,0.39338595027516243],[114,45,73,0.3930968650102985],[114,45,74,0.3928090416833756],[114,45,75,0.3925239386419498],[114,45,76,0.39224295402087545],[114,45,77,0.39196742183621536],[114,45,78,0.39169860801988776],[114,45,79,0.3914377063950524],[114,46,64,0.39581036791171603],[114,46,65,0.39560556947221825],[114,46,66,0.39538815397187743],[114,46,67,0.3951599226848612],[114,46,68,0.3949226464469731],[114,46,69,0.39467806224622],[114,46,70,0.3944278697543572],[114,46,71,0.39417372779941257],[114,46,72,0.3939172507791928],[114,46,73,0.3936600050157767],[114,46,74,0.3934035050509744],[114,46,75,0.3931492098827839],[114,46,76,0.39289851914281926],[114,46,77,0.3926527692147229],[114,46,78,0.3924132292935578],[114,46,79,0.39218109738618023],[114,47,64,0.3959156941263099],[114,47,65,0.39574664571744833],[114,47,66,0.39556452128918757],[114,47,67,0.39537111647884526],[114,47,68,0.39516819711607365],[114,47,69,0.3949574958359249],[114,47,70,0.3947407086331449],[114,47,71,0.39451949135769815],[114,47,72,0.3942954561515227],[114,47,73,0.39407016782652304],[114,47,74,0.39384514018378136],[114,47,75,0.3936218322740134],[114,47,76,0.39340164459924776],[114,47,77,0.3931859152557403],[114,47,78,0.3929759160181169],[114,47,79,0.3927728483647488],[114,48,64,0.39586679150560977],[114,48,65,0.3957333299200651],[114,48,66,0.3955863686361378],[114,48,67,0.3954276972831733],[114,48,68,0.3952590762847154],[114,48,69,0.39508223349399596],[114,48,70,0.3948988607709138],[114,48,71,0.3947106105005006],[114,48,72,0.3945190920528766],[114,48,73,0.39432586818470117],[114,48,74,0.39413245138210146],[114,48,75,0.3939403001451025],[114,48,76,0.3937508152135392],[114,48,77,0.39356533573446223],[114,48,78,0.39338513537102926],[114,48,79,0.39321141835288875],[114,49,64,0.39566239808690856],[114,49,65,0.3955643451764509],[114,49,66,0.39545240464866327],[114,49,67,0.3953283597527002],[114,49,68,0.39519396510445404],[114,49,69,0.3950509433443876],[114,49,70,0.3949009817371221],[114,49,71,0.3947457287127788],[114,49,72,0.39458679035007627],[114,49,73,0.3944257268011874],[114,49,74,0.3942640486583431],[114,49,75,0.3941032132622002],[114,49,76,0.3939446209519599],[114,49,77,0.3937896112572444],[114,49,78,0.3936394590317259],[114,49,79,0.39349537052851374],[114,50,64,0.3953013597566196],[114,50,65,0.39523852238420654],[114,50,66,0.3951614456936289],[114,50,67,0.39507190618081844],[114,50,68,0.3949716522511874],[114,50,69,0.39486240089971286],[114,50,70,0.39474583433305055],[114,50,71,0.39462359653367596],[114,50,72,0.39449728976605486],[114,50,73,0.3943684710248475],[114,50,74,0.39423864842513306],[114,50,75,0.3941092775346728],[114,50,76,0.3939817576481964],[114,50,77,0.3938574280037209],[114,50,78,0.3937375639408966],[114,50,79,0.3936233730013831],[114,51,64,0.3947826306787646],[114,51,65,0.39475480069285307],[114,51,66,0.3947124163413414],[114,51,67,0.3946572469933733],[114,51,68,0.39459103444006427],[114,51,69,0.39451548959673816],[114,51,70,0.3944322891474725],[114,51,71,0.3943430721319544],[114,51,72,0.394249436474648],[114,51,73,0.3941529354562735],[114,51,74,0.39405507412759366],[114,51,75,0.3939573056655157],[114,51,76,0.3938610276715001],[114,51,77,0.3937675784122835],[114,51,78,0.39367823300290933],[114,51,79,0.3935941995320712],[114,52,64,0.3941052736713828],[114,52,65,0.394112227902002],[114,52,66,0.3941043497850925],[114,52,67,0.3940834011891892],[114,52,68,0.39405111688660444],[114,52,69,0.39400920127770334],[114,52,70,0.3939593250577811],[114,52,71,0.39390312182653797],[114,52,72,0.3938421846401562],[114,52,73,0.39377806250597674],[114,52,74,0.39371225681977456],[114,52,75,0.3936462177456362],[114,52,76,0.3935813405384353],[114,52,77,0.393518961808911],[114,52,78,0.39346035573134275],[114,52,79,0.39340673019382866],[114,53,64,0.3932684605308672],[114,53,65,0.3933099608069981],[114,53,66,0.39333638820773825],[114,53,67,0.3933494967272156],[114,53,68,0.39335101371403497],[114,53,69,0.39334263661747504],[114,53,70,0.39332602967658353],[114,53,71,0.3933028205521697],[114,53,72,0.39327459690169286],[114,53,73,0.39324290289704905],[114,53,74,0.3932092356852534],[114,53,75,0.3931750417920212],[114,53,76,0.393141713468244],[114,53,77,0.39311058497936513],[114,53,78,0.39308292883764945],[114,53,79,0.3930599519773527],[114,54,64,0.3922714723041996],[114,54,65,0.39234726549200893],[114,54,66,0.39240778309529134],[114,54,67,0.3924547708602652],[114,54,68,0.39248994830682093],[114,54,69,0.3925150054965101],[114,54,70,0.3925315997437399],[114,54,71,0.3925413522701674],[114,54,72,0.39254584480229576],[114,54,73,0.3925466161122719],[114,54,74,0.39254515850188576],[114,54,75,0.3925429142297722],[114,54,76,0.39254127188181154],[114,54,77,0.3925415626847357],[114,54,78,0.39254505676293205],[114,54,79,0.3925529593384517],[114,55,64,0.3911136995091204],[114,55,65,0.3912235175705937],[114,55,66,0.391317895497555],[114,55,67,0.3913985704153773],[114,55,68,0.3914672536104167],[114,55,69,0.39152562731965673],[114,55,70,0.39157534146387074],[114,55,71,0.3916180103242961],[114,55,72,0.3916552091628226],[114,55,73,0.39168847078569363],[114,55,74,0.3917192820507229],[114,55,75,0.39174908031802297],[114,55,76,0.39177924984424745],[114,55,77,0.39181111812034886],[114,55,78,0.39184595215284673],[114,55,79,0.3918849546886135],[114,56,64,0.38979464230222444],[114,56,65,0.38993820237374616],[114,56,66,0.39006619623579486],[114,56,67,0.3901803520207985],[114,56,68,0.3902823723772359],[114,56,69,0.3903739312807885],[114,56,70,0.3904566707893322],[114,56,71,0.3905321977417586],[114,56,72,0.39060208040063193],[114,56,73,0.3906678450386757],[114,56,74,0.3907309724690973],[114,56,75,0.39079289451974275],[114,56,76,0.39085499045108363],[114,56,77,0.3909185833180402],[114,56,78,0.39098493627563546],[114,56,79,0.39105524882848397],[114,57,64,0.388313910594944],[114,57,65,0.38849091508537087],[114,57,66,0.3886522660574093],[114,57,67,0.38879968227954564],[114,57,68,0.38893485735880134],[114,57,69,0.389059456573237],[114,57,70,0.38917511364862334],[114,57,71,0.3892834274792701],[114,57,72,0.38938595879301546],[114,57,73,0.3894842267603735],[114,57,74,0.38957970554784666],[114,57,75,0.38967382081539415],[114,57,76,0.38976794615806065],[114,57,77,0.3898633994917672],[114,57,78,0.38996143938326133],[114,57,79,0.3900632613242265],[114,58,64,0.3866712241174787],[114,58,65,0.3868813608252525],[114,58,66,0.38707579573765594],[114,58,67,0.3872562378896044],[114,58,68,0.38742437144412983],[114,58,69,0.3875818525460728],[114,58,70,0.3877303061202745],[114,58,71,0.3878713226142617],[114,58,72,0.38800645468542677],[114,58,73,0.38813721383269884],[114,58,74,0.388265066972716],[114,58,75,0.38839143296048584],[114,58,76,0.38851767905454143],[114,58,77,0.3886451173265949],[114,58,78,0.38877500101568047],[114,58,79,0.3889085208267981],[114,59,64,0.38486641243065084],[114,59,65,0.38510935467949703],[114,59,66,0.3853365861284146],[114,59,67,0.3855498057107462],[114,59,68,0.38575068774433385],[114,59,69,0.3859408788062215],[114,59,70,0.3861219945522032],[114,59,71,0.3862956164812035],[114,59,72,0.3864632886444954],[114,59,73,0.38662651429975],[114,59,74,0.38678675250993],[114,59,75,0.38694541468701105],[114,59,76,0.3871038610805434],[114,59,77,0.3872633972110475],[114,59,78,0.3874252702482464],[114,59,79,0.38759066533413467],[114,60,64,0.3828994148856374],[114,60,65,0.3831748216783966],[114,60,66,0.38343454815393707],[114,60,67,0.3836802827779156],[114,60,68,0.38391368962339245],[114,60,69,0.3841364052663643],[114,60,70,0.3843500356264898],[114,60,71,0.3845561527529975],[114,60,72,0.3847562915557797],[114,60,73,0.38495194648166553],[114,60,74,0.38514456813588827],[114,60,75,0.3853355598487288],[114,60,76,0.38552627418734453],[114,60,77,0.38571800941278755],[114,60,78,0.385912005882201],[114,60,79,0.38610944239620687],[114,61,64,0.3807702805316585],[114,61,65,0.38107779672179704],[114,61,66,0.3813697027536651],[114,61,67,0.3816476762612634],[114,61,68,0.38191337067516806],[114,61,69,0.38216841213870056],[114,61,70,0.3824143963696467],[114,61,71,0.38265288546751364],[114,61,72,0.3828854046663285],[114,61,73,0.38311343903297035],[114,61,74,0.38333843011105573],[114,61,75,0.38356177251035095],[114,61,76,0.3837848104417312],[114,61,77,0.3840088341976783],[114,61,78,0.3842350765783187],[114,61,79,0.3844647092630026],[114,62,64,0.3784791679715943],[114,62,65,0.37881842445193953],[114,62,66,0.37914218077208484],[114,62,67,0.3794521033728012],[114,62,68,0.37974983464664114],[114,62,69,0.38003698987454404],[114,62,70,0.38031515410835526],[114,62,71,0.38058587899924445],[114,62,72,0.3808506795720287],[114,62,73,0.38111103094539145],[114,62,74,0.3813683649980172],[114,62,75,0.38162406698061735],[114,62,76,0.38187947207386175],[114,62,77,0.3821358618922163],[114,62,78,0.3823944609336785],[114,62,79,0.3826564329754214],[114,63,64,0.3760263451654634],[114,63,65,0.3763969590737118],[114,63,66,0.3767522227955561],[114,63,67,0.37709379121961084],[114,63,68,0.3774232953073009],[114,63,69,0.37774233904969245],[114,63,70,0.3780524963706094],[114,63,71,0.3783553079760164],[114,63,72,0.3786522781496785],[114,63,73,0.37894487149508255],[114,63,74,0.3792345096236489],[114,63,75,0.3795225677891977],[114,63,76,0.3798103714686955],[114,63,77,0.38009919288927324],[114,63,78,0.3803902475015153],[114,63,79,0.3806846903990233],[114,64,64,0.3734121891818798],[114,64,65,0.3738137641224236],[114,64,66,0.3742001789362291],[114,64,67,0.3745730766037225],[114,64,68,0.37493407626480224],[114,64,69,0.3752847701956784],[114,64,70,0.375626720732373],[114,64,71,0.3759614571408658],[114,64,72,0.37629047243388913],[114,64,73,0.37661522013436344],[114,64,74,0.376937110985498],[114,64,75,0.3772575096075233],[114,64,76,0.37757773110107806],[114,64,77,0.3778990375972461],[114,64,78,0.3782226347542383],[114,64,79,0.37854966820072744],[114,65,64,0.37063718589739125],[114,65,65,0.3710693121790094],[114,65,66,0.37148650856295334],[114,65,67,0.3718904057685672],[114,65,68,0.3722826107267968],[114,65,69,0.3726647035768099],[114,65,70,0.37303823460966223],[114,65,71,0.37340472115898876],[114,65,72,0.3737656444387313],[114,65,73,0.37412244632788383],[114,65,74,0.3744765261022921],[114,65,75,0.3748292371134615],[114,65,76,0.37518188341440717],[114,65,77,0.3755357163325336],[114,65,78,0.37589193098954304],[114,65,79,0.37625166276838073],[114,66,64,0.36770192964378234],[114,66,65,0.3681641845327434],[114,66,66,0.368611779979261],[114,66,67,0.3690463340920842],[114,66,68,0.36946944120901615],[114,66,69,0.36988266891308164],[114,66,70,0.370287554996128],[114,66,71,0.37068560436984344],[114,66,72,0.3710782859241973],[114,66,73,0.371467029333291],[114,66,74,0.37185322180864866],[114,66,75,0.3722382047999095],[114,66,76,0.37262327064294687],[114,66,77,0.3730096591554102],[114,66,78,0.37339855417968304],[114,66,79,0.3737910800732662],[114,67,64,0.36460712280321594],[114,67,65,0.3650990707913385],[114,67,66,0.3655766700483012],[114,67,67,0.3660415257263622],[114,67,68,0.36649521918949046],[114,67,69,0.36693930504883465],[114,67,70,0.36737530814602554],[114,67,71,0.3678047204842872],[114,67,72,0.36822899810737003],[114,67,73,0.3686495579262841],[114,67,74,0.3690677744938759],[114,67,75,0.3694849767271936],[114,67,76,0.36990244457768195],[114,67,77,0.3703214056491907],[114,67,78,0.37074303176379647],[114,67,79,0.3711684354754467],[114,68,64,0.3613535753513634],[114,68,65,0.3618747684385819],[114,68,66,0.36238196376487186],[114,68,67,0.3628767531839591],[114,68,68,0.3633607047090407],[114,68,69,0.36383535956730884],[114,68,70,0.3643022292027046],[114,68,71,0.36476279222688823],[114,68,72,0.36521849131842743],[114,68,73,0.36567073007019263],[114,68,74,0.366120869784993],[114,68,75,0.3665702262194077],[114,68,76,0.36702006627584327],[114,68,77,0.36747160464281003],[114,68,78,0.3679260003834134],[114,68,79,0.3683843534720662],[114,69,64,0.3579422043484608],[114,69,65,0.35849218233944047],[114,69,66,0.35902855377448806],[114,69,67,0.3595528968708376],[114,69,68,0.36006676591799014],[114,69,69,0.36057168835102715],[114,69,70,0.36106916177256904],[114,69,71,0.36156065092335177],[114,69,72,0.3620475846014352],[114,69,73,0.3625313525300203],[114,69,74,0.36301330217392136],[114,69,75,0.36349473550463507],[114,69,76,0.3639769057140486],[114,69,77,0.36446101387677154],[114,69,78,0.36494820556109164],[114,69,79,0.36543956738856054],[114,70,64,0.35437403337819895],[114,70,65,0.35495232419255035],[114,70,66,0.35551743983939543],[114,70,67,0.35607094456583244],[114,70,68,0.35661437856900136],[114,70,69,0.3571492550879264],[114,70,70,0.35767705744441236],[114,70,71,0.3581992360329786],[114,70,72,0.35871720525983336],[114,70,73,0.3592323404308745],[114,70,74,0.3597459745887569],[114,70,75,0.3602593952989722],[114,70,76,0.3607738413849798],[114,70,77,0.36129049961237636],[114,70,78,0.3618105013221031],[114,70,79,0.3623349190126963],[114,71,64,0.35065019193461333],[114,71,65,0.35125631193024875],[114,71,66,0.35184972825169425],[114,71,67,0.3524319908468029],[114,71,68,0.35300462545620265],[114,71,69,0.3535691307233879],[114,71,70,0.35412697525429104],[114,71,71,0.3546795946263063],[114,71,72,0.35522838834677706],[114,71,73,0.3557747167609264],[114,71,74,0.35631989790927737],[114,71,75,0.3568652043345011],[114,71,76,0.35741185983773915],[114,71,77,0.3579610361843828],[114,71,78,0.3585138497593088],[114,71,79,0.3590713581715799],[114,72,64,0.34677191475689984],[114,72,65,0.3474053690660818],[114,72,66,0.348026631193498],[114,72,67,0.3486372364634084],[114,72,68,0.3492386958005306],[114,72,69,0.3498324928581056],[114,72,70,0.35042008109586315],[114,72,71,0.35100288080786907],[114,72,72,0.3515822761002594],[114,72,73,0.35215961181884237],[114,72,74,0.3527361904266177],[114,72,75,0.3533132688311472],[114,72,76,0.3538920551618253],[114,72,77,0.3544737054970317],[114,72,78,0.35505932054116685],[114,72,79,0.35564994225157576],[114,73,64,0.3427405411120536],[114,73,65,0.34340082398967864],[114,73,66,0.34404946604402853],[114,73,67,0.3446879876563952],[114,73,68,0.3453178845811888],[114,73,69,0.34594062509168244],[114,73,70,0.3465576470760934],[114,73,71,0.3471703550839741],[114,73,72,0.34778011732292097],[114,73,73,0.3483882626055828],[114,73,74,0.34899607724701653],[114,73,75,0.349604801912326],[114,73,76,0.3502156284146295],[114,73,77,0.35082969646334317],[114,73,78,0.3514480903627748],[114,73,79,0.3520718356610404],[114,74,64,0.33855751402551787],[114,74,65,0.33924410920918524],[114,74,66,0.33991965463382834],[114,74,67,0.34058565542358915],[114,74,68,0.3412435918134055],[114,74,69,0.3418949163121448],[114,74,70,0.34254105081650676],[114,74,71,0.34318338367567514],[114,74,72,0.34382326670672236],[114,74,73,0.3444620121607489],[114,74,74,0.3451008896398085],[114,74,75,0.34574112296454995],[114,74,76,0.3463838869926261],[114,74,77,0.3470303043878529],[114,74,78,0.34768144234011655],[114,74,79,0.3483383092360388],[114,75,64,0.33422437945976113],[114,75,65,0.3349367605411695],[114,75,66,0.33563872244601406],[114,75,67,0.3363317547325032],[114,75,68,0.3370173217724101],[114,75,69,0.3376968599312893],[114,75,70,0.3383717746999078],[114,75,71,0.33904343777686374],[114,75,72,0.3397131841024008],[114,75,73,0.3403823088433974],[114,75,74,0.3410520643295849],[114,75,75,0.34172365694092266],[114,75,76,0.342398243946181],[114,75,77,0.343076930292717],[114,75,78,0.34376076534743905],[114,75,79,0.3444507395889708],[114,76,64,0.3297427854406621],[114,76,65,0.33048041624788466],[114,76,66,0.3312082977644479],[114,76,67,0.3319279036794516],[114,76,68,0.33264068216351067],[114,76,69,0.33334805306574933],[114,76,70,0.33405140506245473],[114,76,71,0.33475209275736506],[114,76,72,0.3354514337336001],[114,76,73,0.33615070555721216],[114,76,74,0.3368511427324139],[114,76,75,0.3375539336084073],[114,76,76,0.33826021723786925],[114,76,77,0.338971080187074],[114,76,78,0.33968755329765316],[114,76,79,0.3404106083999996],[114,77,64,0.3251144811319202],[114,77,65,0.3258768161221008],[114,77,66,0.3266301107690444],[114,77,67,0.32737582259537523],[114,77,68,0.3281153832384853],[114,77,69,0.3288501956639896],[114,77,70,0.32958163133129303],[114,77,71,0.33031102731124296],[114,77,72,0.3310396833558762],[114,77,73,0.33176885892023567],[114,77,74,0.3324997701363176],[114,77,75,0.33323358673907],[114,77,76,0.333971428944498],[114,77,77,0.33471436427986023],[114,77,78,0.3354634043659501],[114,77,79,0.3362195016514765],[114,78,64,0.3203413158573912],[114,78,65,0.32112780051941053],[114,78,66,0.32190599257811253],[114,78,67,0.3226773330982876],[114,78,68,0.3234432368581902],[114,78,69,0.32420508957913374],[114,78,70,0.32496424510765565],[114,78,71,0.32572202255022265],[114,78,72,0.326479703360487],[114,78,73,0.3272385283790674],[114,78,74,0.3279996948259192],[114,78,75,0.3287643532452076],[114,78,76,0.3295336044027486],[114,78,77,0.3303084961359918],[114,78,78,0.33109002015654887],[114,78,79,0.3318791088052737],[114,79,64,0.3154252380712215],[114,79,65,0.31623530933787947],[114,79,66,0.3170378742376088],[114,79,67,0.3178343570922113],[114,79,68,0.3186261555012584],[114,79,69,0.3194146375875002],[114,79,70,0.32020113919530635],[114,79,71,0.32098696104210644],[114,79,72,0.321773365822843],[114,79,73,0.3225615752674089],[114,79,74,0.3233527671511347],[114,79,75,0.32414807225824077],[114,79,76,0.32494857129831434],[114,79,77,0.32575529177579365],[114,79,78,0.3265692048124541],[114,79,79,0.3273912219229095],[114,80,64,0.3103682942760181],[114,80,65,0.3112013809452775],[114,80,66,0.31202778565753475],[114,80,67,0.31284891571284107],[114,80,68,0.3136661512191237],[114,80,69,0.3144808423530777],[114,80,70,0.3152943065745535],[114,80,71,0.31610782579441027],[114,80,72,0.3169226434958466],[114,80,73,0.31773996180917913],[114,80,74,0.31856093854013845],[114,80,75,0.31938668415159155],[114,80,76,0.32021825869875803],[114,80,77,0.3210566687178934],[114,80,78,0.3219028640684442],[114,80,79,0.32275773472867936],[114,81,64,0.30517262788894317],[114,81,65,0.3060281510537831],[114,81,66,0.3068778544953698],[114,81,67,0.3077231282198228],[114,81,68,0.3085653345372597],[114,81,69,0.3094058053378326],[114,81,70,0.3102458393217305],[114,81,71,0.31108669918311727],[114,81,72,0.31192960874801334],[114,81,73,0.3127757500660969],[114,81,74,0.3136262604564912],[114,81,75,0.31448222950744664],[114,81,76,0.3153446960299844],[114,81,77,0.31621464496548074],[114,81,78,0.3170930042471864],[114,81,79,0.3179806416156967],[114,82,64,0.2998404780555981],[114,82,65,0.3007178515420215],[114,82,66,0.30159030498640504],[114,82,67,0.30245921083551686],[114,82,68,0.30332591330250097],[114,82,69,0.3041917256577146],[114,82,70,0.3050579274740088],[114,82,71,0.3059257618264135],[114,82,72,0.3067964324462452],[114,82,73,0.3076711008295995],[114,82,74,0.30855088330031055],[114,82,75,0.309436848027273],[114,82,76,0.3103300119962018],[114,82,77,0.3112313379358029],[114,82,78,0.3121417311983551],[114,82,79,0.3130620365947133],[114,83,64,0.294374178411952],[114,83,65,0.29527280922469634],[114,83,66,0.29616745672123107],[114,83,67,0.2970594755304952],[114,83,68,0.297950191476698],[114,83,69,0.29884089888461307],[114,83,70,0.2997328578397911],[114,83,71,0.30062729140365685],[114,83,72,0.3015253827835015],[114,83,73,0.3024282724573413],[114,83,74,0.30333705525371635],[114,83,75,0.3042527773863316],[114,83,76,0.3051764334436104],[114,83,77,0.3061089633331372],[114,83,78,0.3070512491809878],[114,83,79,0.30800411218595836],[114,84,64,0.28877615579419713],[114,84,65,0.28969544456969165],[114,84,66,0.2906117233702632],[114,84,67,0.2915263287556572],[114,84,68,0.29244056787658945],[114,84,69,0.2933557157941443],[114,84,70,0.29427301275457407],[114,84,71,0.29519366141946013],[114,84,72,0.2961188240512541],[114,84,73,0.29704961965416116],[114,84,74,0.297987121070449],[114,84,75,0.2989323520320748],[114,84,76,0.29988628416770935],[114,84,77,0.300849833965128],[114,84,78,0.3018238596889714],[114,84,79,0.30280915825388555],[114,85,64,0.2830489288963801],[114,85,65,0.2839882703624993],[114,85,66,0.28492561135515426],[114,85,67,0.28586227012081644],[114,85,68,0.28679953485974335],[114,85,69,0.28773866105912776],[114,85,70,0.28868086878212795],[114,85,71,0.28962733991274864],[114,85,72,0.2905792153565812],[114,85,73,0.29153759219737396],[114,85,74,0.29250352080950937],[114,85,75,0.29347800192628604],[114,85,76,0.29446198366407794],[114,85,77,0.2954563585023492],[114,85,78,0.29646196021951865],[114,85,79,0.29747956078469023],[114,86,64,0.2771951068760914],[114,86,65,0.27815389031824855],[114,86,66,0.27911171846737437],[114,86,67,0.28006989102003343],[114,86,68,0.2810296769568453],[114,86,69,0.281992311889021],[114,86,70,0.2829589953612733],[114,86,71,0.2839308881110585],[114,86,72,0.2849091092841716],[114,86,73,0.2858947336066528],[114,86,74,0.2868887885130931],[114,86,75,0.28789225123122775],[114,86,76,0.28890604582289847],[114,86,77,0.28993104018135435],[114,86,78,0.29096804298489354],[114,86,79,0.2920178006068552],[114,87,64,0.2712173879080787],[114,87,65,0.272194997641208],[114,87,66,0.27317273243382617],[114,87,67,0.27415187320356804],[114,87,68,0.275133669450201],[114,87,69,0.2761193366151896],[114,87,70,0.27711005339812],[114,87,71,0.2781069590299525],[114,87,72,0.2791111505031115],[114,87,73,0.2801236797583813],[114,87,74,0.2811455508286903],[114,87,75,0.28217771693967386],[114,87,76,0.283221077567094],[114,87,77,0.2842764754510916],[114,87,78,0.2853446935672673],[114,87,79,0.2864264520546046],[114,88,64,0.26511855768562914],[114,88,65,0.2661143735316007],[114,88,66,0.2671114294293392],[114,88,67,0.26811098729628946],[114,88,68,0.26911427689830136],[114,88,69,0.27012249322185095],[114,88,70,0.2711367938036209],[114,88,71,0.2721582960173971],[114,88,72,0.2731880743183013],[114,88,73,0.274227157444317],[114,88,74,0.2752765255752032],[114,88,75,0.2763371074486739],[114,88,76,0.27740977743393347],[114,88,77,0.27849535256253344],[114,88,78,0.27959458951655375],[114,88,79,0.2807081815741181],[114,89,64,0.2589014878700342],[114,89,65,0.2599148856400517],[114,89,66,0.2609306725363574],[114,89,67,0.26195009126286434],[114,89,68,0.26297435160675786],[114,89,69,0.2640046278230096],[114,89,70,0.2650420559767421],[114,89,71,0.26608773124341],[114,89,72,0.26714270516680894],[114,89,73,0.26820798287487735],[114,89,74,0.26928452025337934],[114,89,75,0.27037322107735234],[114,89,76,0.2714749341004025],[114,89,77,0.27259045010182154],[114,89,78,0.2737204988915213],[114,89,79,0.2748657462727999],[114,90,64,0.2525691344878744],[114,90,65,0.25359948646939756],[114,90,66,0.2546334101515576],[114,90,67,0.25567212881945284],[114,90,68,0.2567168320453507],[114,90,69,0.25776867308511653],[114,90,70,0.2588287662329981],[114,90,71,0.2598981841347189],[114,90,72,0.26097795505890276],[114,90,73,0.2620690601267863],[114,90,74,0.26317243050031314],[114,90,75,0.26428894452848967],[114,90,76,0.2654194248520894],[114,90,77,0.2665646354666741],[114,90,78,0.2677252787439338],[114,90,79,0.26890199241135593],[114,91,64,0.2461245362763282],[114,91,65,0.2471712117240706],[114,91,66,0.24822267433960052],[114,91,67,0.24928012779212427],[114,91,68,0.25034474121138994],[114,91,69,0.25141764659566207],[114,91,70,0.25249993617854705],[114,91,71,0.2535926597546342],[114,91,72,0.2546968219639638],[114,91,73,0.2558133795352868],[114,91,74,0.2569432384882066],[114,91,75,0.2580872512940825],[114,91,76,0.25924621399578207],[114,91,77,0.26042086328625313],[114,91,78,0.26161187354591364],[114,91,79,0.26281985383887174],[114,92,64,0.23957081297621982],[114,92,65,0.2406331786067658],[114,92,66,0.24170157913373463],[114,92,67,0.24277719842170095],[114,92,68,0.2438611849391096],[114,92,69,0.24495464917741339],[114,92,70,0.24605866102956997],[114,92,71,0.24717424712785366],[114,92,72,0.24830238814099892],[114,92,73,0.2494440160306372],[114,92,74,0.2506000112671204],[114,92,75,0.2517712000046072],[114,92,76,0.2529583512155022],[114,92,77,0.254162173784218],[114,92,78,0.2553833135602557],[114,92,79,0.25662235037062237],[114,93,64,0.23291116357314648],[114,93,65,0.23398858406273557],[114,93,66,0.2350733187835865],[114,93,67,0.23616653161537643],[114,93,68,0.23726935015542866],[114,93,69,0.23838286314863963],[114,93,70,0.23950811787726617],[114,93,71,0.24064611751053486],[114,93,72,0.24179781841408754],[114,93,73,0.24296412741922388],[114,93,74,0.24414589905203696],[114,93,75,0.24534393272231547],[114,93,76,0.24655896987230402],[114,93,77,0.24779169108529014],[114,93,78,0.24904271315401688],[114,93,79,0.25031258610893464],[114,94,64,0.2261488644865293],[114,94,65,0.22724070297155252],[114,94,66,0.2283411659499878],[114,94,67,0.22945139714494503],[114,94,68,0.23057250308192795],[114,94,69,0.23170555052916506],[114,94,70,0.23285156389831208],[114,94,71,0.2340115226054804],[114,94,72,0.23518635839260907],[114,94,73,0.23637695260913963],[114,94,74,0.23758413345409218],[114,94,75,0.23880867317841256],[114,94,76,0.24005128524768551],[114,94,77,0.24131262146518098],[114,94,78,0.24259326905523107],[114,94,79,0.24389374770695546],[114,95,64,0.2192872677064116],[114,95,65,0.22039288628616865],[114,95,66,0.2215084698466587],[114,95,67,0.22263514179147642],[114,95,68,0.22377398738286625],[114,95,69,0.2249260511920803],[114,95,70,0.22609233451061184],[114,95,71,0.22727379272226594],[114,95,72,0.22847133263608],[114,95,73,0.22968580978005554],[114,95,74,0.2309180256557998],[114,95,75,0.23216872495394625],[114,95,76,0.23343859273044812],[114,95,77,0.23472825154371443],[114,95,78,0.2360382585525849],[114,95,79,0.23736910257515959],[114,96,64,0.21232979887834477],[114,96,65,0.21344855911960625],[114,96,66,0.21457865432909062],[114,96,67,0.21572118743676386],[114,96,68,0.21687722225957312],[114,96,69,0.2180477809614449],[114,96,70,0.21923384147467143],[114,96,71,0.22043633488264147],[114,96,72,0.2216561427639316],[114,96,73,0.22289409449771655],[114,96,74,0.2241509645306008],[114,96,75,0.22542746960473622],[114,96,76,0.2267242659473243],[114,96,77,0.22804194642146836],[114,96,78,0.22938103763837447],[114,96,79,0.23074199703091763],[114,97,64,0.2052799553361977],[114,97,65,0.20641121877911994],[114,97,66,0.20755521593046106],[114,97,67,0.2087130291013927],[114,97,68,0.20988570049105656],[114,97,69,0.21107422965582126],[114,97,70,0.2122795709404375],[114,97,71,0.213502630871048],[114,97,72,0.2147442655100696],[114,97,73,0.2160052777729032],[114,97,74,0.21728641470657722],[114,97,75,0.21858836473018606],[114,97,76,0.21991175483722397],[114,97,77,0.22125714775977967],[114,97,78,0.22262503909459047],[114,97,79,0.22401585439097121],[114,98,64,0.1981413040827062],[114,98,65,0.1992844327476463],[114,98,66,0.2004417218444017],[114,98,67,0.20161423292923783],[114,98,68,0.20280298642064268],[114,98,69,0.20400895907745756],[114,98,70,0.20523308143941904],[114,98,71,0.20647623523006708],[114,98,72,0.20773925072203459],[114,98,73,0.2090229040646785],[114,98,74,0.2103279145741544],[114,98,75,0.21165494198579837],[114,98,76,0.2130045836689144],[114,98,77,0.21437737180393557],[114,98,78,0.21577377052195368],[114,98,79,0.2171941730066385],[114,99,64,0.19091747971811684],[114,99,65,0.19207183661289118],[114,99,66,0.1932418078549688],[114,99,67,0.1944284341187498],[114,99,68,0.19563271388899925],[114,99,69,0.19685560094746848],[114,99,70,0.1980980018224408],[114,99,71,0.19936077320115236],[114,99,72,0.20064471930511146],[114,99,73,0.20195058922826647],[114,99,74,0.20327907423813274],[114,99,75,0.20463080503973763],[114,99,76,0.2060063490024826],[114,99,77,0.2074062073498914],[114,99,78,0.2088308123122406],[114,99,79,0.2102805242420882],[114,100,64,0.18361218231675536],[114,100,65,0.18477713194389217],[114,100,66,0.18595917621365018],[114,100,67,0.18715933480085445],[114,100,68,0.18837858411337421],[114,100,69,0.18961785478685045],[114,100,70,0.19087802914286128],[114,100,71,0.19215993861047664],[114,100,72,0.1934643611112205],[114,100,73,0.1947920184073969],[114,100,74,0.1961435734138871],[114,100,75,0.19751962747327606],[114,100,76,0.19892071759441027],[114,100,77,0.20034731365435376],[114,100,78,0.20179981556373722],[114,100,79,0.20327855039552106],[114,101,64,0.1762291752513266],[114,101,65,0.17740408411485542],[114,101,66,0.1785975934632139],[114,101,67,0.1798107018632804],[114,101,68,0.18104436351285935],[114,101,69,0.1822994857431336],[114,101,70,0.18357692648506613],[114,101,71,0.18487749169970336],[114,101,72,0.186201932772402],[114,101,73,0.18755094387092797],[114,101,74,0.18892515926754366],[114,101,75,0.19032515062493433],[114,101,76,0.19175142424608044],[114,101,77,0.19320441828803941],[114,101,78,0.19468449993963527],[114,101,79,0.19619196256307325],[114,102,64,0.16877228296531732],[114,102,65,0.16995652007664486],[114,102,66,0.1711608882087703],[114,102,67,0.17238636472167645],[114,102,68,0.17363388148004416],[114,102,69,0.17490432236304543],[114,102,70,0.17619852073860054],[114,102,71,0.17751725690204928],[114,102,72,0.1788612554792568],[114,102,73,0.18023118279410727],[114,102,74,0.18162764420049665],[114,102,75,0.18305118137867882],[114,102,76,0.18450226959606886],[114,102,77,0.1859813149324714],[114,102,78,0.18748865146972638],[114,102,79,0.18902453844579653],[114,103,64,0.16124538869332183],[114,103,65,0.1624383260757375],[114,103,66,0.1636529488358669],[114,103,67,0.16489021303734824],[114,103,68,0.1661510280988856],[114,103,69,0.16743625431100106],[114,103,70,0.16874670031776634],[114,103,71,0.17008312056345903],[114,103,72,0.17144621270416838],[114,103,73,0.17283661498429914],[114,103,74,0.1742549035780912],[114,103,75,0.17570158989599982],[114,103,76,0.17717711785605228],[114,103,77,0.17868186112013656],[114,103,78,0.18021612029522427],[114,103,79,0.1817801200995457],[114,104,64,0.1536524321290949],[114,104,65,0.1548534453204563],[114,104,66,0.1560777211754219],[114,104,67,0.15732619438141104],[114,104,68,0.1585997518085952],[114,104,69,0.1598992300332318],[114,104,70,0.16122541282648767],[114,104,71,0.16257902860870282],[114,104,72,0.16396074786911274],[114,104,73,0.1653711805509842],[114,104,74,0.16681087340227657],[114,104,75,0.16828030729168025],[114,104,76,0.16977989449013808],[114,104,77,0.17130997591781677],[114,104,78,0.1728708183565223],[114,104,79,0.1744626116275802],[114,105,64,0.145997407041712],[114,105,65,0.14720587559485315],[114,105,66,0.14843920611587497],[114,105,67,0.14969831184574323],[114,105,68,0.1509840570139248],[114,105,69,0.15229725436792435],[114,105,70,0.1536386626688227],[114,105,71,0.15500898415276626],[114,105,72,0.15640886195843007],[114,105,73,0.157838877520402],[114,105,74,0.15929954792860856],[114,105,75,0.16079132325362544],[114,105,76,0.16231458383798825],[114,105,77,0.16386963755345957],[114,105,78,0.16545671702425657],[114,105,79,0.1670759768162522],[114,106,64,0.1382843588396523],[114,106,65,0.1394996668200637],[114,106,66,0.1407414571623714],[114,106,67,0.1420106216005544],[114,106,68,0.14330800164166502],[114,106,69,0.14463438610119217],[114,106,70,0.14599050860493767],[114,106,71,0.147377045057356],[114,106,72,0.14879461107637698],[114,106,73,0.15024375939466167],[114,106,74,0.15172497722741174],[114,106,75,0.15323868360657433],[114,106,76,0.15478522668155703],[114,106,77,0.156364880986413],[114,106,78,0.15797784467349468],[114,106,79,0.15962423671359538],[114,107,64,0.13051738208260438],[114,107,65,0.1317389185629304],[114,107,66,0.13298857794277957],[114,107,67,0.13426723039836808],[114,107,68,0.13557569464315816],[114,107,69,0.1369147354686749],[114,107,70,0.13828506125234724],[114,107,71,0.13968732143231982],[114,107,72,0.14112210394926195],[114,107,73,0.14258993265511638],[114,107,74,0.14409126468891448],[114,107,75,0.1456264878194955],[114,107,76,0.1471959177552472],[114,107,77,0.1487997954208259],[114,107,78,0.1504382842008566],[114,107,79,0.1521114671506304],[114,108,64,0.12270061794138415],[114,108,65,0.12392777749228373],[114,108,66,0.12518471966093098],[114,108,67,0.12647229302480845],[114,108,68,0.1277912934432136],[114,108,69,0.12914246160315884],[114,108,70,0.13052648053280325],[114,108,71,0.13194397308236688],[114,108,72,0.1333954993725477],[114,108,73,0.13488155421039066],[114,108,74,0.13640256447273075],[114,108,75,0.1379588864570503],[114,108,76,0.13955080319986385],[114,108,77,0.14117852176259604],[114,108,78,0.14284217048494524],[114,108,79,0.1445417962057548],[114,109,64,0.11483825160577543],[114,109,65,0.11607043478269424],[114,109,66,0.11733407849689415],[114,109,67,0.11863000969600201],[114,109,68,0.11995900133523713],[114,109,69,0.12132176992802424],[114,109,70,0.1227189730646493],[114,109,71,0.12415120689890236],[114,109,72,0.1256190036027346],[114,109,73,0.12712282878887132],[114,109,74,0.12866307890150985],[114,109,75,0.13024007857493664],[114,109,76,0.13185407796018345],[114,109,77,0.13350525001968],[114,109,78,0.13519368778990298],[114,109,79,0.13691940161203991],[114,110,64,0.10693450964008877],[114,110,65,0.10817112346548674],[114,110,66,0.10944089295407455],[114,110,67,0.11074462340238861],[114,110,68,0.11208306482236824],[114,110,69,0.11345690949632065],[114,110,70,0.11486678950043117],[114,110,71,0.11631327419677118],[114,110,72,0.11779686769382125],[114,110,73,0.11931800627546002],[114,110,74,0.1208770557985443],[114,110,75,0.12247430905891288],[114,110,76,0.12410998312593491],[114,110,77,0.12578421664556472],[114,110,78,0.1274970671118949],[114,110,79,0.12924850810723387],[114,111,64,0.09899365728683607],[114,111,65,0.10023411572741953],[114,111,66,0.10150944115354638],[114,111,67,0.10282041719934248],[114,111,68,0.10416777090502694],[114,111,69,0.10555217027586378],[114,111,70,0.10697422181016791],[114,111,71,0.10843446799630863],[114,111,72,0.10993338477873743],[114,111,73,0.11147137899298243],[114,111,74,0.11304878576973992],[114,111,75,0.1146658659078939],[114,111,76,0.11632280321658567],[114,111,77,0.11801970182629173],[114,111,78,0.11975658346890788],[114,111,79,0.1215333847268586],[114,112,64,0.09101999571832903],[114,112,65,0.09226372015683237],[114,112,66,0.09354403807541178],[114,112,67,0.09486171144440608],[114,112,68,0.09621744431467033],[114,112,69,0.09761188038016227],[114,112,70,0.09904560051007949],[114,112,71,0.10051912025050208],[114,112,72,0.10203288729555804],[114,112,73,0.10358727892806036],[114,112,74,0.10518259942974284],[114,112,75,0.10681907746092661],[114,112,76,0.10849686340973858],[114,112,77,0.11021602671084169],[114,112,78,0.11197655313367288],[114,112,79,0.11377834204020981],[114,113,64,0.08301785923599081],[114,113,65,0.0842642789370544],[114,113,66,0.08554903274698983],[114,113,67,0.08687286098093056],[114,113,68,0.08823644469355857],[114,113,69,0.08964040324496653],[114,113,70,0.09108529183657654],[114,113,71,0.09257159901706147],[114,113,72,0.0940997441582897],[114,113,73,0.09567007490124291],[114,113,74,0.09728286457203172],[114,113,75,0.09893830956784333],[114,113,76,0.10063652671294165],[114,113,77,0.10237755058467846],[114,113,78,0.10416133080951306],[114,113,79,0.10598772932906225],[114,114,64,0.0749916124178121],[114,114,65,0.07624016498750219],[114,114,66,0.07752880537825574],[114,114,67,0.07885825226855464],[114,114,68,0.0802291637209524],[114,114,69,0.08164213475086729],[114,114,70,0.08309769486592788],[114,114,71,0.08459630557582026],[114,114,72,0.08613835787265783],[114,114,73,0.08772416968181979],[114,114,74,0.08935398328338795],[114,114,75,0.09102796270401226],[114,114,76,0.09274619107932575],[114,114,77,0.09450866798687102],[114,114,78,0.09631530674953181],[114,114,79,0.09816593170949278],[114,115,64,0.06694564721359048],[114,115,65,0.06819577905211033],[114,115,66,0.06948776444417748],[114,115,67,0.07082230046015364],[114,115,68,0.07220002218538607],[114,115,69,0.07362150029158548],[114,115,70,0.07508723857925487],[114,115,71,0.07659767149111268],[114,115,72,0.07815316159653485],[114,115,73,0.07975399704696146],[114,115,74,0.08140038900239654],[114,115,75,0.08309246902883238],[114,115,76,0.08483028646671908],[114,115,77,0.08661380577044064],[114,115,78,0.0884429038187905],[114,115,79,0.09031736719647382],[114,116,64,0.05888437998822632],[114,116,65,0.060135546735360534],[114,116,66,0.06143034371421702],[114,116,67,0.06276944642554333],[114,116,68,0.06415346700328767],[114,116,69,0.06558295178822443],[114,116,70,0.06705837887312188],[114,116,71,0.06858015561939673],[114,116,72,0.07014861614528317],[114,116,73,0.07176401878545563],[114,116,74,0.07342654352224026],[114,116,75,0.07513628938824207],[114,116,76,0.07689327184051015],[114,116,77,0.07869742010620262],[114,116,78,0.0805485744997444],[114,116,79,0.08244648371150304],[114,117,64,0.05081224851270533],[114,117,65,0.05206391548554945],[114,117,66,0.053360999228630246],[114,117,67,0.05470415372155657],[114,117,68,0.0560939681835772],[114,117,69,0.05753096464911811],[114,117,70,0.059015595515354125],[114,117,71,0.06054824106175638],[114,117,72,0.062129206941643256],[114,117,73,0.06375872164567514],[114,117,74,0.0654369339374285],[114,117,75,0.06716391026087498],[114,117,76,0.06893963211988735],[114,117,77,0.07076399342973749],[114,117,78,0.07263679784057314],[114,117,79,0.0745577560329071],[114,118,64,0.042733708903210876],[114,118,65,0.04398535152572658],[114,118,66,0.04528420622200552],[114,118,67,0.046630905508946496],[114,118,68,0.04802601573868409],[114,118,69,0.04947003467571176],[114,118,70,0.05096338904652381],[114,118,71,0.05250643206172095],[114,118,72,0.054099440910606644],[114,118,73,0.05574261422821253],[114,118,74,0.057436069534891554],[114,118,75,0.05917984064830095],[114,118,76,0.06097387506790025],[114,118,77,0.06281803133192654],[114,118,78,0.06471207634683807],[114,118,79,0.0666556826892522],[114,119,64,0.03465323250814917],[114,119,65,0.03590433673209753],[114,119,66,0.037204455993827934],[114,119,67,0.03855420141589072],[114,119,68,0.03995411654177017],[114,119,69,0.041404674914268025],[114,119,70,0.04290627762689175],[114,119,71,0.044459250848190635],[114,119,72,0.04606384331906177],[114,119,73,0.047720223822972696],[114,119,74,0.049428478629233],[114,119,75,0.05118860890913984],[114,119,76,0.05300052812512179],[114,119,77,0.05486405939284328],[114,119,78,0.05677893281625923],[114,119,79,0.05874478279565143],[114,120,64,0.026575302742891993],[114,120,65,0.02782536545968617],[114,120,66,0.029126252725868884],[114,120,67,0.03047855434790847],[114,120,68,0.03188279112995929],[114,120,69,0.03333941245319155],[114,120,70,0.03484879382860501],[114,120,71,0.03641123442326877],[114,120,72,0.03802695456001448],[114,120,73,0.039696093190522974],[114,120,74,0.04141870534194125],[114,120,75,0.04319475953685242],[114,120,76,0.04502413518672499],[114,120,77,0.046906619958800355],[114,120,78,0.04884190711641434],[114,120,79,0.05082959283277544],[114,121,64,0.018504411872641124],[114,121,65,0.019752941315669348],[114,121,66,0.021054110246810254],[114,121,67,0.02240848724458755],[114,121,68,0.02381657045398028],[114,121,69,0.025278785166388262],[114,121,70,0.026795481373557084],[114,121,71,0.028366931295406628],[114,121,72,0.029993326881787297],[114,121,73,0.03167477728810675],[114,121,74,0.03341130632496331],[114,121,75,0.035202849881608766],[114,121,76,0.03704925332336512],[114,121,77,0.038950268862958826],[114,121,78,0.04090555290576037],[114,121,79,0.042914663368963046],[114,122,64,0.01044505774321236],[114,122,65,0.0116915738801735],[114,122,66,0.01299254874389738],[114,122,67,0.014348529782927555],[114,122,68,0.015759992574021053],[114,122,69,0.01722733840244528],[114,122,70,0.018750891816707693],[114,122,71,0.020330898157658206],[114,122,72,0.021967521061996453],[114,122,73,0.023660839940117695],[114,122,74,0.025410847428441352],[114,122,75,0.027217446816036273],[114,122,76,0.029080449445678447],[114,122,77,0.030999572089292715],[114,122,78,0.03297443429777758],[114,122,79,0.0350045557252357],[114,123,64,0.002401740459532953],[114,123,65,0.003645775374335136],[114,123,66,0.00494609142141561],[114,123,67,0.006303215027083309],[114,123,68,0.007717599301584999],[114,123,69,0.009189621619436927],[114,123,70,0.010719581174656767],[114,123,71,0.012307696510838961],[114,123,72,0.013954103026099562],[114,123,73,0.015658850452830386],[114,123,74,0.01742190031240287],[114,123,75,0.019243123344639568],[114,123,76,0.02112229691218165],[114,123,77,0.02305910237971326],[114,123,78,0.02505312246803415],[114,123,79,0.027103838583008577],[114,124,64,-0.005621040987738746],[114,124,65,-0.00437994272397324],[114,124,66,-0.003080738893598778],[114,124,67,-0.001722923975072288],[114,124,68,-3.0606721223719324E-4],[114,124,69,0.0011701849657542174],[114,124,70,0.002706106499880623],[114,124,71,0.00430188923199798],[114,124,72,0.005957640410924281],[114,124,73,0.007673380173791766],[114,124,74,0.009449039002817239],[114,124,75,0.011284455157300477],[114,124,76,0.013179372080986962],[114,124,77,0.015133435784747462],[114,124,78,0.017146192204572586],[114,124,79,0.019217084534906004],[114,125,64,-0.013618792147671643],[114,125,65,-0.012381073116946195],[114,125,66,-0.011083423198616826],[114,125,67,-0.009725357648776689],[114,125,68,-0.008306467942285067],[114,125,69,-0.006826424193231095],[114,125,70,-0.0052849775995709725],[114,125,71,-0.003681962911998793],[114,125,72,-0.002017300927024901],[114,125,73,-2.910010043201128E-4],[114,125,74,0.0014968363918124172],[114,125,75,0.0033460171266577188],[114,125,76,0.005256250805127816],[114,125,77,0.007227148157582852],[114,125,78,0.009258218401422158],[114,125,79,0.011348866578478334],[114,126,64,-0.021587026586809832],[114,126,65,-0.020353116176393682],[114,126,66,-0.01905744981605373],[114,126,67,-0.01769956340279788],[114,126,68,-0.016279070508842697],[114,126,69,-0.01479566480289024],[114,126,70,-0.013249122495123666],[114,126,71,-0.011639304805983186],[114,126,72,-0.00996616045869081],[114,126,73,-0.008229728195589092],[114,126,74,-0.00643013931815084],[114,126,75,-0.004567620250842341],[114,126,76,-0.0026424951287112863],[114,126,77,-6.551884087403481E-4],[114,126,78,0.0013937724950275898],[114,126,79,0.00350375455261831],[114,127,64,-0.029521269418795293],[114,127,65,-0.028291583485615668],[114,127,66,-0.02699831794646962],[114,127,67,-0.025641029193044007],[114,127,68,-0.024219352750739165],[114,127,69,-0.02273300570102449],[114,127,70,-0.02118178912706642],[114,127,71,-0.019565590582683923],[114,127,72,-0.017884386584604894],[114,127,73,-0.016138245128084483],[114,127,74,-0.014327328225744118],[114,127,75,-0.012451894469813984],[114,127,76,-0.010512301617651043],[114,127,77,-0.00850900920056974],[114,127,78,-0.0064425811559974955],[114,127,79,-0.004313688482921352],[114,128,64,-0.03741706088607416],[114,128,65,-0.03619200143381551],[114,128,66,-0.03490154127474221],[114,128,67,-0.03354525713955808],[114,128,68,-0.032122806352239075],[114,128,69,-0.03063392925373226],[114,128,70,-0.02907845164847822],[114,128,71,-0.027456287273818436],[114,128,72,-0.02576744029225453],[114,128,73,-0.024012007806627933],[114,128,74,-0.0221901823980718],[114,128,75,-0.020302254686923593],[114,128,76,-0.018348615916464528],[114,128,77,-0.016329760559529616],[114,128,78,-0.014246288947993957],[114,128,79,-0.012098909925108647],[114,129,64,-0.045269959993882725],[114,129,65,-0.04404991486324583],[114,129,66,-0.04276265162941367],[114,129,67,-0.04140776719710587],[114,129,68,-0.03998494052392482],[114,129,69,-0.03849393504564713],[114,129,70,-0.03693460112389935],[114,129,71,-0.035306878516275786],[114,129,72,-0.03361079886887297],[114,129,73,-0.031846488231298875],[114,129,74,-0.030014169594015927],[114,129,75,-0.028114165448204553],[114,129,76,-0.026146900368014925],[114,129,77,-0.02411290361524543],[114,129,78,-0.022012811766459306],[114,129,79,-0.019847371362509802],[114,130,64,-0.053075548196119815],[114,130,65,-0.0518608907686931],[114,130,66,-0.050577202694804924],[114,130,67,-0.0492241008789534],[114,130,68,-0.047801285737171684],[114,130,69,-0.046308543624155596],[114,130,70,-0.04474574928234176],[114,130,71,-0.0431128683129921],[114,130,72,-0.04140995966925687],[114,130,73,-0.039637178171283205],[114,130,74,-0.03779477704321765],[114,130,75,-0.0358831104722962],[114,130,76,-0.03390263618988554],[114,130,77,-0.03185391807451843],[114,130,78,-0.029737628776930536],[114,130,79,-0.027554552367070717],[114,131,64,-0.06082943313329342],[114,131,65,-0.05962052204949336],[114,131,66,-0.05834077377610314],[114,131,67,-0.056989825034031605],[114,131,68,-0.055567397512408634],[114,131,69,-0.0540733002977829],[114,131,70,-0.05250743232484312],[114,131,71,-0.050869784848713406],[114,131,72,-0.04916044393880148],[114,131,73,-0.04737959299425776],[114,131,74,-0.04552751528090171],[114,131,75,-0.04360459648980508],[114,131,76,-0.04161132731739747],[114,131,77,-0.03954830606713511],[114,131,78,-0.03741624127274157],[114,131,79,-0.03521595434299285],[114,132,64,-0.06852725242275387],[114,132,65,-0.06732443131428356],[114,132,66,-0.06604897361761669],[114,132,67,-0.0647005356776909],[114,132,68,-0.06327886026137297],[114,132,69,-0.061783778988956595],[114,132,70,-0.06021521478675551],[114,132,71,-0.058573184360851016],[114,132,72,-0.05685780069196378],[114,132,73,-0.05506927555151553],[114,132,74,-0.0532079220387337],[114,132,75,-0.05127415713898653],[114,132,76,-0.04926850430321805],[114,132,77,-0.047191596048520745],[114,132,78,-0.04504417657985904],[114,132,79,-0.0428271044329086],[114,133,64,-0.07616467750080513],[114,133,65,-0.0749682747380892],[114,133,66,-0.07369744427380537],[114,133,67,-0.07235186187564557],[114,133,68,-0.07093129118295505],[114,133,69,-0.06943558614074474],[114,133,70,-0.06786469345438462],[114,133,71,-0.06621865506502822],[114,133,72,-0.06449761064574677],[114,133,73,-0.06270180011843218],[114,133,74,-0.06083156619132457],[114,133,75,-0.058887356917353584],[114,133,76,-0.056869728273159725],[114,133,77,-0.054779346758835556],[114,133,78,-0.0526169920183972],[114,133,79,-0.050383559480956186],[114,134,64,-0.08373741751690256],[114,134,65,-0.08254774597194614],[114,134,66,-0.081281865033279],[114,134,67,-0.07993946968131005],[114,134,68,-0.07852034421283305],[114,134,69,-0.07702436467776785],[114,134,70,-0.07545150133616241],[114,134,71,-0.07380182113551836],[114,134,72,-0.07207549020841242],[114,134,73,-0.07027277639047314],[114,134,74,-0.06839405175857072],[114,134,75,-0.06643979518940724],[114,134,76,-0.06441059493837376],[114,134,77,-0.062307151238714886],[114,134,78,-0.06013027892101319],[114,134,79,-0.057880910052957035],[114,135,64,-0.0912412232801244],[114,135,65,-0.09005858010525714],[114,135,66,-0.08879795639596699],[114,135,67,-0.08745906612671805],[114,135,68,-0.08604171402709859],[114,135,69,-0.08454579802148543],[114,135,70,-0.08297131168856475],[114,135,71,-0.08131834674077099],[114,135,72,-0.07958709552361021],[114,135,73,-0.07777785353493671],[114,135,74,-0.07589102196403386],[114,135,75,-0.07392711025068799],[114,135,76,-0.07188673866412476],[114,135,77,-0.06977064090184548],[114,135,78,-0.06757966670837379],[114,135,79,-0.06531478451388362],[114,136,64,-0.09867189125752807],[114,136,65,-0.09749655768047932],[114,136,66,-0.09624148410305577],[114,136,67,-0.09490640326663635],[114,136,68,-0.09349114009946935],[114,136,69,-0.09199561415945212],[114,136,70,-0.09041984209636589],[114,136,71,-0.08876394013362887],[114,136,72,-0.08702812656953396],[114,136,73,-0.08521272429803872],[114,136,74,-0.08331816334895747],[114,136,75,-0.08134498344774899],[114,136,76,-0.07929383659476308],[114,136,77,-0.07716548966398684],[114,136,78,-0.07496082702130435],[114,136,79,-0.07268085316223138],[114,137,64,-0.1060252676245958],[114,137,65,-0.10485750876036037],[114,137,66,-0.10360826321990824],[114,137,67,-0.10227728227607069],[114,137,68,-0.10086441081230357],[114,137,69,-0.0993695897687632],[114,137,70,-0.09779285860744513],[114,137,71,-0.09613435779644475],[114,137,72,-0.09439433131330854],[114,137,73,-0.09257312916754357],[114,137,74,-0.09067120994213507],[114,137,75,-0.08868914335426337],[114,137,76,-0.08662761283508935],[114,137,77,-0.08448741812864125],[114,137,78,-0.08226947790982153],[114,137,79,-0.07997483242149628],[114,138,64,-0.11329725236794519],[114,138,65,-0.11213731704788765],[114,138,66,-0.11089416227213744],[114,138,67,-0.1095675576013514],[114,138,68,-0.10815736762158779],[114,138,69,-0.10666355439385233],[114,138,70,-0.10508617992231739],[114,138,71,-0.10342540864127303],[114,138,72,-0.10168150992078517],[114,138,73,-0.09985486059112181],[114,138,74,-0.09794594748579821],[114,138,75,-0.09595537000343612],[114,138,76,-0.09388384268830008],[114,138,77,-0.09173219782955078],[114,138,78,-0.08950138807922958],[114,138,79,-0.08719248908893462],[114,139,64,-0.1204838034399115],[114,139,65,-0.11933192405856874],[114,139,66,-0.11809510743444163],[114,139,67,-0.11677314116439275],[114,139,68,-0.11536590927550638],[114,139,69,-0.11387339467826041],[114,139,70,-0.11229568163799653],[114,139,71,-0.11063295826474218],[114,139,72,-0.10888551902135102],[114,139,73,-0.10705376725003624],[114,139,74,-0.10513821771713938],[114,139,75,-0.10313949917633058],[114,139,76,-0.10105835695010745],[114,139,77,-0.09889565552962654],[114,139,78,-0.09665238119288444],[114,139,79,-0.09432964464121274],[114,140,64,-0.12758094096534034],[114,140,65,-0.12643733334537055],[114,140,66,-0.12520708677253667],[114,140,67,-0.12389000662047589],[114,140,68,-0.12248599608692934],[114,140,69,-0.12099505865069937],[114,140,70,-0.11941730054652755],[114,140,71,-0.11775293325794778],[114,140,72,-0.11600227602809066],[114,140,73,-0.11416575838849663],[114,140,74,-0.11224392270579675],[114,140,75,-0.11023742674644643],[114,140,76,-0.10814704625938432],[114,140,77,-0.10597367757664744],[114,140,78,-0.10371834023196502],[114,140,79,-0.10138217959728524],[114,141,64,-0.13458475150033533],[114,141,65,-0.13344961477606976],[114,141,66,-0.13222615453793662],[114,141,67,-0.13091419366928847],[114,141,68,-0.12951365425956418],[114,141,69,-0.1280245600651735],[114,141,70,-0.12644703898793197],[114,141,71,-0.12478132557110777],[114,141,72,-0.12302776351304356],[114,141,73,-0.12118680819842775],[114,141,74,-0.11925902924705756],[114,141,75,-0.11724511308029373],[114,141,76,-0.11514586550506711],[114,141,77,-0.11296221431547637],[114,141,78,-0.11069521191199472],[114,141,79,-0.10834603793824316],[114,142,64,-0.14149139234329144],[114,142,65,-0.14036490886334152],[114,142,66,-0.13914843551590828],[114,142,67,-0.13784181241956672],[114,142,68,-0.13644498026810525],[114,142,69,-0.13495798279547133],[114,142,70,-0.133380969257904],[114,142,71,-0.13171419693331643],[114,142,72,-0.1299580336378947],[114,142,73,-0.12811296025998387],[114,142,74,-0.1261795733111042],[114,142,75,-0.12415858749429609],[114,142,76,-0.12205083828965968],[114,142,77,-0.11985728455712152],[114,142,78,-0.11757901115644864],[114,142,79,-0.11521723158446961],[114,143,64,-0.14829709589782658],[114,143,65,-0.1471794311472001],[114,143,66,-0.1459701294262109],[114,143,67,-0.1446690478069338],[114,143,68,-0.1432761452919863],[114,143,69,-0.14179148528365504],[114,143,70,-0.14021523806985825],[114,143,71,-0.13854768332700185],[114,143,72,-0.13678921263969823],[114,143,73,-0.1349403320374174],[114,143,74,-0.1330016645479135],[114,143,75,-0.13097395276763069],[114,143,76,-0.12885806144893963],[114,143,77,-0.1266549801042568],[114,143,78,-0.12436582562705112],[114,143,79,-0.12199184492970483],[114,144,64,-0.15499817408779926],[114,144,65,-0.15388947662997932],[114,144,66,-0.15268751537681502],[114,144,67,-0.151392164065141],[114,144,68,-0.15000339970293153],[114,144,69,-0.14852130504272387],[114,144,70,-0.1469460710715278],[114,144,71,-0.14527799951728382],[114,144,72,-0.1435175053718365],[114,144,73,-0.1416651194304921],[114,144,74,-0.1397214908480061],[114,144,75,-0.13768738971119876],[114,144,76,-0.13556370962806064],[114,144,77,-0.13335147033338768],[114,144,78,-0.1310518203109593],[114,144,79,-0.12866603943222277],[114,145,64,-0.16159102282457893],[114,145,65,-0.1604914242640192],[114,145,66,-0.1592969563707617],[114,145,67,-0.15800750925086338],[114,145,68,-0.15662307760646788],[114,145,69,-0.15514376321362755],[114,145,70,-0.15356977741627242],[114,145,71,-0.15190144363638902],[114,145,72,-0.1501391999003696],[114,145,73,-0.14828360138161067],[114,145,74,-0.14633532295920004],[114,145,75,-0.1442951617928896],[114,145,76,-0.1421640399142199],[114,145,77,-0.13994300683383498],[114,145,78,-0.13763324216499662],[114,145,79,-0.13523605826327034],[114,146,64,-0.16807212652622505],[114,146,65,-0.16698174149171452],[114,146,66,-0.16579490386582119],[114,146,67,-0.1645115198217172],[114,146,68,-0.16313160143705452],[114,146,69,-0.16165526917627848],[114,146,70,-0.1600827543887583],[114,146,71,-0.15841440182278854],[114,146,72,-0.15665067215543815],[114,146,73,-0.15479214453830603],[114,146,74,-0.15283951915903782],[114,146,75,-0.15079361981879402],[114,146,76,-0.14865539652553816],[114,146,77,-0.14642592810317945],[114,146,78,-0.14410642481658797],[114,146,79,-0.1416982310124395],[114,147,64,-0.17443806268875128],[114,147,65,-0.17335698883810158],[114,147,66,-0.17217790238712305],[114,147,67,-0.17090072526766487],[114,147,68,-0.16952548660700584],[114,147,69,-0.1680523252147439],[114,147,70,-0.1664814920851757],[114,147,71,-0.1648133529152258],[114,147,72,-0.16304839063789212],[114,147,73,-0.16118720797127684],[114,147,74,-0.15923052998305043],[114,147,75,-0.15717920667054497],[114,147,76,-0.15503421555633667],[114,147,77,-0.15279666429936234],[114,147,78,-0.15046779332157967],[114,147,79,-0.14804897845013465],[114,148,64,-0.1806855065096341],[114,148,65,-0.17961382455614383],[114,148,66,-0.17844259419292474],[114,148,67,-0.17717175279597774],[114,148,68,-0.1758013462093706],[114,148,69,-0.17433153123677336],[114,148,70,-0.17276257814817053],[114,148,71,-0.17109487320180305],[114,148,72,-0.16932892118130805],[114,148,73,-0.1674653479481274],[114,148,74,-0.1655049030090303],[114,148,75,-0.16344846209894515],[114,148,76,-0.16129702977896776],[114,148,77,-0.15905174204958106],[114,148,78,-0.1567138689791],[114,148,79,-0.1542848173473096],[114,149,64,-0.18681123556324075],[114,149,65,-0.18574900932439087],[114,149,66,-0.18458572399318518],[114,149,67,-0.18332133206942358],[114,149,68,-0.18195589577443783],[114,149,69,-0.18048958954734218],[114,149,70,-0.17892270255614762],[114,149,71,-0.17725564122379323],[114,149,72,-0.1754889317690672],[114,149,73,-0.17362322276248598],[114,149,74,-0.1716592876969757],[114,149,75,-0.16959802757355402],[114,149,76,-0.16744047350187385],[114,149,77,-0.16518778931567302],[114,149,78,-0.16284127420313566],[114,149,79,-0.16040236535213603],[114,150,64,-0.1928121345283358],[114,150,65,-0.19175941099716687],[114,150,66,-0.19060414372111],[114,150,67,-0.18934629999784003],[114,150,68,-0.18798595808002927],[114,150,69,-0.18652330967636277],[114,150,70,-0.1849586624671149],[114,150,71,-0.18329244263434008],[114,150,72,-0.1815251974066523],[114,150,73,-0.17965759761865596],[114,150,74,-0.17769044028487768],[114,150,75,-0.17562465118839599],[114,150,76,-0.173461287484031],[114,150,77,-0.17120154031613266],[114,150,78,-0.16884673745098222],[114,150,79,-0.16639834592377023],[114,151,64,-0.19868519996783474],[114,151,65,-0.19764200940746313],[114,151,66,-0.19649481735782848],[114,151,67,-0.1952436055832648],[114,151,68,-0.19388846801575121],[114,151,69,-0.19242961326073782],[114,151,70,-0.19086736711723373],[114,151,71,-0.1892021751122176],[114,151,72,-0.1874346050493395],[114,151,73,-0.185565349571978],[114,151,74,-0.1835952287405066],[114,151,75,-0.1815251926239576],[114,151,76,-0.17935632390595346],[114,151,77,-0.17708984050494014],[114,151,78,-0.17472709820873988],[114,151,79,-0.17226959332338387],[114,152,64,-0.20442754516047001],[114,152,65,-0.20339390122219403],[114,152,66,-0.2022548258098782],[114,152,67,-0.2010103148182859],[114,152,68,-0.19966047750086646],[114,152,69,-0.19820553898042037],[114,152,70,-0.19664584277374453],[114,152,71,-0.19498185333030904],[114,152,72,-0.19321415858493807],[114,152,73,-0.1913434725245602],[114,152,74,-0.18937063776887564],[114,152,75,-0.18729662816513826],[114,152,76,-0.18512255139691514],[114,152,77,-0.18284965160686006],[114,152,78,-0.18047931203351864],[114,152,79,-0.17801305766212605],[114,153,64,-0.2100364049845559],[114,153,65,-0.20901230485000533],[114,153,66,-0.2078813718396717],[114,153,67,-0.20664361563779754],[114,153,68,-0.2052991604559713],[114,153,69,-0.20384824754866082],[114,153,70,-0.20229123774244417],[114,153,71,-0.20062861397899212],[114,153,72,-0.1988609838717763],[114,153,73,-0.1969890822765641],[114,153,74,-0.19501377387555296],[114,153,75,-0.19293605577533923],[114,153,76,-0.19075706011858162],[114,153,77,-0.18847805670940154],[114,153,78,-0.18610045565253552],[114,153,79,-0.18362581000619715],[114,154,64,-0.21550914085396733],[114,154,65,-0.21449456540175293],[114,154,66,-0.21337178504907495],[114,154,67,-0.21214082292428083],[114,154,68,-0.2108018178286024],[114,154,69,-0.2093550267565688],[114,154,70,-0.20780082742984596],[114,154,71,-0.20613972084455512],[114,154,72,-0.20437233383204279],[114,154,73,-0.20249942163316814],[114,154,74,-0.20052187048595704],[114,154,75,-0.19844070022681415],[114,154,76,-0.1962570669051642],[114,154,77,-0.1939722654115532],[114,154,78,-0.19158773211922897],[114,154,79,-0.18910504753916213],[114,155,64,-0.22084324570606517],[114,155,65,-0.2198381597033764],[114,155,66,-0.21872352691581143],[114,155,67,-0.21749938356633514],[114,155,68,-0.21616588267249215],[114,155,69,-0.2147232965717063],[114,155,70,-0.21317201945973818],[114,155,71,-0.2115125699423589],[114,155,72,-0.20974559360021294],[114,155,73,-0.2078718655669305],[114,155,74,-0.2058922931203444],[114,155,75,-0.20380791828700018],[114,155,76,-0.20161992045983013],[114,155,77,-0.19932961902902235],[114,155,78,-0.19693847602610792],[114,155,79,-0.19444809878121982],[114,156,64,-0.226036349041698],[114,156,65,-0.22504070136130883],[114,156,66,-0.22393419588284125],[114,156,67,-0.22271688157059533],[114,156,68,-0.2213889252806137],[114,156,69,-0.21995061429085594],[114,156,70,-0.21840235884428272],[114,156,71,-0.21674469470489355],[114,156,72,-0.2149782857267002],[114,156,73,-0.21310392643569065],[114,156,74,-0.21112254462464275],[114,156,75,-0.2090352039609733],[114,156,76,-0.20684310660749516],[114,156,77,-0.20454759585611393],[114,156,78,-0.2021501587744814],[114,156,79,-0.1996524288655701],[114,157,64,-0.23108622201742768],[114,157,65,-0.23009994588055727],[114,157,66,-0.22900153250084765],[114,157,67,-0.2277910432271848],[114,157,68,-0.22646865837215835],[114,157,69,-0.22503467974710345],[114,157,70,-0.22348953320979614],[114,157,71,-0.22183377122486303],[114,157,72,-0.22006807543686868],[114,157,73,-0.21819325925615185],[114,157,74,-0.21621027045725894],[114,157,75,-0.214120193790165],[114,157,76,-0.21192425360415534],[114,157,77,-0.20962381648439332],[114,157,78,-0.20722039390120417],[114,157,79,-0.20471564487202243],[114,158,64,-0.2359907825896913],[114,158,65,-0.23501379583518045],[114,158,66,-0.2339234246235541],[114,158,67,-0.23271974232840587],[114,158,68,-0.23140294233315906],[114,158,69,-0.2299733405709511],[114,158,70,-0.22843137807692948],[114,158,71,-0.22677762355301878],[114,158,72,-0.2250127759451268],[114,158,73,-0.22313766703285887],[114,158,74,-0.22115326403158553],[114,158,75,-0.2190606722070607],[114,158,76,-0.2168611375024565],[114,158,77,-0.2145560491778462],[114,158,78,-0.21214694246215837],[114,158,79,-0.20963550121755803],[114,159,64,-0.24074810071106456],[114,159,65,-0.23978030609131196],[114,159,66,-0.23869791265602713],[114,159,67,-0.23750100544084474],[114,159,68,-0.23618979051092093],[114,159,69,-0.23476459750562373],[114,159,70,-0.2332258821954033],[114,159,71,-0.2315742290509002],[114,159,72,-0.22981035382426274],[114,159,73,-0.2279351061427337],[114,159,74,-0.22594947211436334],[114,159,75,-0.22385457694603572],[114,159,76,-0.22165168757368003],[114,159,77,-0.21934221530469789],[114,159,78,-0.21692771847262915],[114,159,79,-0.21440990510400926],[114,160,64,-0.2453564035787088],[114,160,65,-0.24439768908283233],[114,160,66,-0.24332319485605636],[114,160,67,-0.24213301723096647],[114,160,68,-0.24082737456235048],[114,160,69,-0.23940660977665418],[114,160,70,-0.23787119293339232],[114,160,71,-0.2362217237985743],[114,160,72,-0.234458934430109],[114,160,73,-0.23258369177525873],[114,160,74,-0.2305970002799913],[114,160,75,-0.22850000451042285],[114,160,76,-0.22629399178621767],[114,160,77,-0.22398039482598187],[114,160,78,-0.22156079440466614],[114,160,79,-0.2190369220229419],[114,161,64,-0.24981408093479518],[114,161,65,-0.2488643201394607],[114,161,66,-0.24779763268840072],[114,161,67,-0.24661412584399667],[114,161,68,-0.24531402985596662],[114,161,69,-0.2438977005155356],[114,161,70,-0.2423656217213449],[114,161,71,-0.24071840805715672],[114,161,72,-0.23895680738132363],[114,161,73,-0.23708170342808854],[114,161,74,-0.23509411842056605],[114,161,75,-0.23299521569559511],[114,161,76,-0.23078630234033648],[114,161,77,-0.22846883184064048],[114,161,78,-0.22604440674121395],[114,161,79,-0.22351478131753377],[114,162,64,-0.2541196904190015],[114,162,65,-0.2531787428673805],[114,162,66,-0.25211975623199423],[114,162,67,-0.2509428483361794],[114,162,68,-0.24964826092769377],[114,162,69,-0.24823636223754286],[114,162,70,-0.24670764955033297],[114,162,71,-0.24506275178621673],[114,162,72,-0.2433024320943875],[114,162,73,-0.24142759045819862],[114,162,74,-0.2394392663117545],[114,162,75,-0.23733864116816206],[114,162,76,-0.23512704125931938],[114,162,77,-0.23280594018726497],[114,162,78,-0.23037696158711385],[114,162,79,-0.22784188180153786],[114,163,64,-0.2582719629732093],[114,163,65,-0.2573396745825137],[114,163,66,-0.25628826964024365],[114,163,67,-0.2551178761605488],[114,163,68,-0.2538287469905678],[114,163,69,-0.2524212623738433],[114,163,70,-0.2508959325250639],[114,163,71,-0.24925340021619202],[114,163,72,-0.24749444337394322],[114,163,73,-0.24561997768868882],[114,163,74,-0.24363105923462614],[114,163,75,-0.24152888710141052],[114,163,76,-0.2393148060371214],[114,163,77,-0.236990309102588],[114,163,78,-0.23455704033710245],[114,163,79,-0.23201679743547],[114,164,64,-0.26226980829815516],[114,164,65,-0.26134601179620653],[114,164,66,-0.26030205665417105],[114,164,67,-0.2591380807059602],[114,164,68,-0.25785434749810066],[114,164,69,-0.2564512488576598],[114,164,70,-0.25492930747130693],[114,164,71,-0.2532891794755676],[114,164,72,-0.25153165705823366],[114,164,73,-0.24965767107100312],[114,164,74,-0.2476682936531961],[114,164,75,-0.24556474086673885],[114,164,76,-0.24334837534228382],[114,164,77,-0.2410207089365014],[114,164,78,-0.23858340540056178],[114,164,79,-0.2360382830597627],[114,165,64,-0.2661123203622341],[114,165,65,-0.2651968357535184],[114,165,66,-0.2641601861685935],[114,165,67,-0.26300251888958126],[114,165,68,-0.26172410776151067],[114,165,69,-0.26032535576467386],[114,165,70,-0.25880679759793024],[114,165,71,-0.2571691022730165],[114,165,72,-0.2554130757198303],[114,165,73,-0.25353966340275647],[114,165,74,-0.2515499529478803],[114,165,75,-0.24944517678128797],[114,165,76,-0.24722671477831437],[114,165,77,-0.244896096923777],[114,165,78,-0.24245500598321668],[114,165,79,-0.23990528018509316],[114,166,64,-0.26979878296232584],[114,166,65,-0.2688914180239891],[114,166,66,-0.2678619178512214],[114,166,67,-0.26671043880271494],[114,166,68,-0.26543726462068207],[114,166,69,-0.26404280900754895],[114,166,70,-0.26252761821341974],[114,166,71,-0.26089237363436957],[114,166,72,-0.2591378944215311],[114,166,73,-0.25726514010104595],[114,166,74,-0.2552752132047278],[114,166,75,-0.25316936191163175],[114,166,76,-0.25094898270039345],[114,166,77,-0.24861562301237783],[114,166,78,-0.24617098392565306],[114,166,79,-0.24361692283974734],[114,167,64,-0.2733286753367985],[114,167,65,-0.27242922614503395],[114,167,66,-0.2714067078148168],[114,167,67,-0.2702612854101063],[114,167,68,-0.26899325216901093],[114,167,69,-0.2676030320847198],[114,167,70,-0.26609118249703834],[114,167,71,-0.26445839669457794],[114,167,72,-0.2627055065275743],[114,167,73,-0.2608334850313957],[114,167,74,-0.2588434490605942],[114,167,75,-0.25673666193369293],[114,167,76,-0.25451453608857344],[114,167,77,-0.25217863574850174],[114,167,78,-0.24973067959880801],[114,167,79,-0.2471725434741826],[114,168,64,-0.27670167783050525],[114,168,65,-0.27580992931778936],[114,168,66,-0.27479421434224016],[114,168,67,-0.2736547063025534],[114,168,68,-0.27239170753195596],[114,168,69,-0.27100565188327297],[114,168,70,-0.26949710732443344],[114,168,71,-0.26786677854447205],[114,168,72,-0.2661155095699914],[114,168,73,-0.264244286392155],[114,168,74,-0.262254239604061],[114,168,75,-0.26014664704868684],[114,168,76,-0.2579229364772734],[114,168,77,-0.2555846882181836],[114,168,78,-0.2531336378562542],[114,168,79,-0.250571678922598],[114,169,64,-0.2799176776118627],[114,169,65,-0.27903340415549094],[114,169,66,-0.2780243036644655],[114,169,67,-0.2768905575029039],[114,169,68,-0.27563247669937685],[114,169,69,-0.27425050453599675],[114,169,70,-0.27274521914779093],[114,169,71,-0.2711173361324166],[114,169,72,-0.26936771117018077],[114,169,73,-0.26749734265443537],[114,169,74,-0.2655073743321994],[114,169,75,-0.263399097955195],[114,169,76,-0.26117395594116954],[114,169,77,-0.2588335440455368],[114,169,78,-0.25637961404335663],[114,169,79,-0.25381407642160725],[114,170,64,-0.28297677444210256],[114,170,65,-0.28209974048447894],[114,170,66,-0.28109705579165745],[114,170,67,-0.27996890932553664],[114,170,68,-0.27871562041175824],[114,170,69,-0.27733764133270233],[114,170,70,-0.2758355599306178],[114,170,71,-0.27421010222094455],[114,170,72,-0.2724621350157985],[114,170,73,-0.2705926685576797],[114,170,74,-0.2686028591632619],[114,170,75,-0.2664940118774478],[114,170,76,-0.26426758313756515],[114,170,77,-0.2619251834477295],[114,170,78,-0.25946858006340323],[114,170,79,-0.2568996996860974],[114,171,64,-0.2858792864965045],[114,171,65,-0.2850092471976384],[114,171,66,-0.284012770397122],[114,171,67,-0.28289005228912945],[114,171,68,-0.2816414201001207],[114,171,69,-0.28026733468561615],[114,171,70,-0.2787683931369682],[114,171,71,-0.2771453313981851],[114,171,72,-0.27539902689277374],[114,171,73,-0.273530501160672],[114,171,74,-0.27154092250511574],[114,171,75,-0.26943160864963533],[114,171,76,-0.26720402940505217],[114,171,77,-0.26485980934650233],[114,171,78,-0.26240073050051427],[114,171,79,-0.2598287350420918],[114,172,64,-0.28862575623773135],[114,172,65,-0.2877624581603959],[114,172,66,-0.2867719727542458],[114,172,67,-0.2856545030828399],[114,172,68,-0.2844103838797464],[114,172,69,-0.28304008414896764],[114,172,70,-0.2815442097752312],[114,172,71,-0.27992350614419936],[114,172,72,-0.27817886077256593],[114,172,73,-0.2763113059481064],[114,172,74,-0.27432202137953465],[114,172,75,-0.27221233685635604],[114,172,76,-0.2699837349185822],[114,172,77,-0.2676378535363483],[114,172,78,-0.26517648879944555],[114,172,79,-0.26260159761672797],[114,173,64,-0.29121695634130873],[114,173,65,-0.2903601381693137],[114,173,66,-0.2893754197264724],[114,173,67,-0.28826301058593695],[114,173,68,-0.2870232525977562],[114,173,69,-0.28565662249281576],[114,173,70,-0.2841637344965222],[114,173,71,-0.2825453429522764],[114,173,72,-0.2808023449547118],[114,173,73,-0.27893578299276034],[114,173,74,-0.2769468476023973],[114,173,75,-0.27483688002925855],[114,173,76,-0.27260737490099485],[114,173,77,-0.27025998290940145],[114,173,78,-0.2677965135023389],[114,173,79,-0.2652189375854024],[114,174,64,-0.29365389567311573],[114,174,65,-0.29280328896314656],[114,174,66,-0.29182410581017515],[114,174,67,-0.29071656194075113],[114,174,68,-0.28948100593440773],[114,174,69,-0.28811792183097973],[114,174,70,-0.2866279317475452],[114,174,71,-0.2850117985050409],[114,174,72,-0.2832704282645233],[114,174,73,-0.281404873173137],[114,174,74,-0.2794163340196486],[114,174,75,-0.2773061628997294],[114,174,76,-0.27507586589085964],[114,174,77,-0.2727271057368901],[114,174,78,-0.2702617045422755],[114,174,79,-0.26768164647593806],[114,175,64,-0.2959378253189584],[114,175,65,-0.29509315528644087],[114,175,66,-0.29411926923050835],[114,175,67,-0.2930163886790176],[114,175,68,-0.2917848685581861],[114,175,69,-0.29042519980314396],[114,175,70,-0.2889380119779985],[114,175,71,-0.2873240759054625],[114,175,72,-0.2855843063060124],[114,175,73,-0.2837197644466495],[114,175,74,-0.28173166079910905],[114,175,75,-0.27962135770771035],[114,175,76,-0.277390372066717],[114,175,77,-0.2750403780072418],[114,175,78,-0.27257320959371223],[114,175,79,-0.26999086352985824],[114,176,64,-0.2980702446662923],[114,176,65,-0.2972312310057271],[114,176,66,-0.29626239809028976],[114,176,67,-0.2951639729016746],[114,176,68,-0.29393631633475137],[114,176,69,-0.2925799258112066],[114,176,70,-0.29109543790258896],[114,176,71,-0.28948363096281593],[114,176,72,-0.28774542777010637],[114,176,73,-0.2858818981784108],[114,176,74,-0.28389426177818555],[114,176,75,-0.2817838905667033],[114,176,76,-0.2795523116277726],[114,176,77,-0.27720120982089047],[114,176,78,-0.27473243047986085],[114,176,79,-0.2721479821208219],[114,177,64,-0.30005290753795677],[114,177,65,-0.2992192652781871],[114,177,66,-0.29825523657179176],[114,177,67,-0.2971610535119822],[114,177,68,-0.29593708258960827],[114,177,69,-0.2945838273097323],[114,177,70,-0.29310193081751623],[114,177,71,-0.291492178533468],[114,177,72,-0.28975550079801804],[114,177,73,-0.2878929755254964],[114,177,74,-0.2859058308673552],[114,177,75,-0.28379544788483],[114,177,76,-0.2815633632309128],[114,177,77,-0.2792112718416624],[114,177,78,-0.2767410296368783],[114,177,79,-0.2741546562300923],[114,178,64,-0.30188782837799755],[114,178,65,-0.30105926877285516],[114,178,66,-0.30009979119150176],[114,178,67,-0.2990096325020375],[114,178,68,-0.29778916442457204],[114,178,69,-0.29643889615058616],[114,178,70,-0.29495947697150704],[114,178,71,-0.29335169891655777],[114,178,72,-0.2916164993998446],[114,178,73,-0.28975496387675215],[114,178,74,-0.2877683285094955],[114,178,75,-0.28565798284201993],[114,178,76,-0.28342547248411964],[114,178,77,-0.2810725018048037],[114,178,78,-0.278600936634938],[114,178,79,-0.2760128069791078],[114,179,64,-0.30357728848963117],[114,179,65,-0.3027535199444209],[114,179,66,-0.30179833710792403],[114,179,67,-0.3007119812927386],[114,179,68,-0.2994948290880871],[114,179,69,-0.298147394981803],[114,179,70,-0.29667033399145026],[114,179,71,-0.2950644443046322],[114,179,72,-0.293330669928453],[114,179,73,-0.29147010334820245],[114,179,74,-0.28948398819511356],[114,179,75,-0.28737372192338473],[114,179,76,-0.2851408584963341],[114,179,77,-0.28278711108171917],[114,179,78,-0.28031435475624567],[114,179,79,-0.2777246292192147],[114,180,64,-0.3051238423252173],[114,180,65,-0.3043045713594891],[114,180,66,-0.30335342448226976],[114,180,67,-0.30227064712706775],[114,180,68,-0.30105662039926173],[114,180,69,-0.29971186370055736],[114,180,70,-0.2982370373625002],[114,180,71,-0.2966329452890971],[114,180,72,-0.29490053760851576],[114,180,73,-0.293040913333927],[114,180,74,-0.2910553230333427],[114,180,75,-0.28894517150863985],[114,180,76,-0.2867120204836392],[114,180,77,-0.2843575913012715],[114,180,78,-0.2818837676298537],[114,180,79,-0.2792925981784258],[114,181,64,-0.3065303238283369],[114,181,65,-0.30571525607540073],[114,181,66,-0.304767884892148],[114,181,67,-0.30368845951678325],[114,181,68,-0.30247736522571633],[114,181,69,-0.301135125960332],[114,181,70,-0.29966240696274316],[114,181,71,-0.2980600174205811],[114,181,72,-0.2963289131207908],[114,181,73,-0.2944701991124973],[114,181,74,-0.2924851323787995],[114,181,75,-0.2903751245176719],[114,181,76,-0.28814174443185336],[114,181,77,-0.28578672102775105],[114,181,78,-0.2833119459233808],[114,181,79,-0.28071947616529813],[114,182,64,-0.3077998528279887],[114,182,65,-0.3069886940716253],[114,182,66,-0.3060448377982625],[114,182,67,-0.30496853674254243],[114,182,68,-0.3037601800152623],[114,182,69,-0.3024202957322989],[114,182,70,-0.3009495536524469],[114,182,71,-0.2993487678242335],[114,182,72,-0.29761889924166696],[114,182,73,-0.29576105850899626],[114,182,74,-0.29377650851432435],[114,182,75,-0.29166666711227207],[114,182,76,-0.28943310981555714],[114,182,77,-0.28707757249552446],[114,182,78,-0.28460195409164724],[114,182,79,-0.28200831932995263],[114,183,64,-0.3089358414848097],[114,183,65,-0.3081282987336319],[114,183,66,-0.3071876970640224],[114,183,67,-0.30611429240735366],[114,183,68,-0.304908477381312],[114,183,69,-0.30357078392081527],[114,183,70,-0.30210188591778786],[114,183,71,-0.30050260186984856],[114,183,72,-0.2987738975378744],[114,183,73,-0.29691688861251364],[114,183,74,-0.294932843389496],[114,183,75,-0.2928231854539277],[114,183,76,-0.29058949637344667],[114,183,77,-0.28823351840026634],[114,183,78,-0.28575715718212946],[114,183,79,-0.28316248448212966],[114,184,64,-0.3099420007894108],[114,184,65,-0.3091377833893266],[114,184,66,-0.3082001775281564],[114,184,67,-0.3071294420434528],[114,184,68,-0.3059259727421123],[114,184,69,-0.30459030503313056],[114,184,70,-0.3031231165691588],[114,184,71,-0.30152522989692065],[114,184,72,-0.29979761511644976],[114,184,73,-0.29794139254922136],[114,184,74,-0.2959578354150262],[114,184,75,-0.2938483725177765],[114,184,76,-0.2916145909401169],[114,184,77,-0.2892582387468673],[114,184,78,-0.2867812276973264],[114,184,79,-0.2841856359663818],[114,185,64,-0.31082234711278833],[114,185,65,-0.31002116789802214],[114,185,66,-0.3090863016302955],[114,185,67,-0.308018009772564],[114,185,68,-0.3068166910137663],[114,185,69,-0.30548288390325895],[114,185,70,-0.30401726949400665],[114,185,71,-0.30242067399457895],[114,185,72,-0.300694071429923],[114,185,73,-0.2988385863109776],[114,185,74,-0.2968554963129829],[114,185,75,-0.2947462349626737],[114,185,76,-0.2925123943342236],[114,185,77,-0.2901557277539796],[114,185,78,-0.2876781525139994],[114,185,79,-0.2850817525943554],[114,186,64,-0.3115812088088188],[114,186,65,-0.31078278529194114],[114,186,66,-0.3098504060895242],[114,186,67,-0.30878433501955016],[114,186,68,-0.3075849733570435],[114,186,69,-0.30625286247003236],[114,186,70,-0.3047886864642202],[114,186,71,-0.30319327483642167],[114,186,72,-0.30146760513672877],[114,186,73,-0.29961280563947745],[114,186,74,-0.29763015802286164],[114,186,75,-0.2955211000573891],[114,186,76,-0.2932872283030462],[114,186,77,-0.29093030081520443],[114,186,78,-0.288452239859292],[114,186,79,-0.2858551346341789],[114,187,64,-0.3122232328688166],[114,187,65,-0.3114272884702399],[114,187,66,-0.31049714863588795],[114,187,67,-0.30943307927943575],[114,187,68,-0.30823548397796563],[114,187,69,-0.30690490660930525],[114,187,70,-0.30544203399803327],[114,187,71,-0.30384769857021476],[114,187,72,-0.30212288101682216],[114,187,73,-0.30026871296592217],[114,187,74,-0.2982864796634692],[114,187,75,-0.2961776226629028],[114,187,76,-0.2939437425234117],[114,187,77,-0.2915866015169053],[114,187,78,-0.28910812634370675],[114,187,79,-0.28651041085692475],[114,188,64,-0.31275339162820426],[114,188,65,-0.3119596569455926],[114,188,66,-0.3110315147949],[114,188,67,-0.3099692329378495],[114,188,68,-0.30877321698221183],[114,188,69,-0.30744401302036684],[114,188,70,-0.3059823102765056],[114,188,71,-0.30438894376251935],[114,188,72,-0.30266489694254917],[114,188,73,-0.30081130440625936],[114,188,74,-0.2988294545506873],[114,188,75,-0.2967207922708609],[114,188,76,-0.29448692165905066],[114,188,77,-0.2921296087126919],[114,188,78,-0.2896507840509954],[114,188,79,-0.2870525456402063],[114,189,64,-0.31317698952523965],[114,189,65,-0.3123852036432919],[114,189,66,-0.311458824724995],[114,189,67,-0.3103981221448323],[114,189,68,-0.30920350328329016],[114,189,69,-0.3078755161665049],[114,189,70,-0.30641485211451613],[114,189,71,-0.3048223483981818],[114,189,72,-0.30309899090471837],[114,189,73,-0.30124591681194013],[114,189,74,-0.2992644172710428],[114,189,75,-0.2971559400981243],[114,189,76,-0.29492209247431],[114,189,77,-0.2925646436545214],[114,189,78,-0.2900855276848999],[114,189,79,-0.28748684612884723],[114,190,64,-0.31349966991182965],[114,190,65,-0.3127095817528863],[114,190,66,-0.3117847401079624],[114,190,67,-0.3107254157420405],[114,190,68,-0.30953201756450777],[114,190,69,-0.3082050952697467],[114,190,70,-0.3067453419863092],[114,190,71,-0.30515359693472255],[114,190,72,-0.30343084809390053],[114,190,73,-0.30157823487622204],[114,190,74,-0.29959705081113164],[114,190,75,-0.29748874623745125],[114,190,76,-0.2952549310042707],[114,190,77,-0.29289737718045394],[114,190,78,-0.29041802177277687],[114,190,79,-0.28781896945265695],[114,191,64,-0.31372742191643543],[114,191,65,-0.3129387916323617],[114,191,66,-0.3120152710923536],[114,191,67,-0.310957132243346],[114,191,68,-0.3097647852947356],[114,191,69,-0.3084387813597843],[114,191,70,-0.3069798151055816],[114,191,71,-0.3053887274116216],[114,191,72,-0.30366650803696016],[114,191,73,-0.301814298296017],[114,191,74,-0.2998333937428821],[114,191,75,-0.2977252468643068],[114,191,76,-0.29549146978125496],[114,191,77,-0.29313383695904593],[114,191,78,-0.29065428792611014],[114,191,79,-0.2880549300013098],[114,192,64,-0.31386658735904327],[114,192,65,-0.31307918776484556],[114,192,66,-0.3121567832898512],[114,192,67,-0.3110996468688131],[114,192,68,-0.3099081897979551],[114,192,69,-0.3085829643770608],[114,192,70,-0.30712466656010606],[114,192,71,-0.30553413861448475],[114,192,72,-0.3038123717887977],[114,192,73,-0.3019605089892705],[114,192,74,-0.29997984746465234],[114,192,75,-0.2978718414997862],[114,192,76,-0.29563810511771915],[114,192,77,-0.293280414790386],[114,192,78,-0.29080071215788705],[114,192,79,-0.28820110675631494],[114,193,64,-0.31392386771822955],[114,193,65,-0.3131374857678544],[114,193,66,-0.312216004824618],[114,193,67,-0.31115969863207693],[114,193,68,-0.30996897937660306],[114,193,69,-0.30864440033004303],[114,193,70,-0.3071866585009019],[114,193,71,-0.3055965972941085],[114,193,72,-0.3038752091793282],[114,193,73,-0.30202363836788826],[114,193,74,-0.30004318349817194],[114,193,75,-0.2979353003296673],[114,193,76,-0.29570160444554117],[114,193,77,-0.29334387396377215],[114,193,78,-0.2908640522568642],[114,193,79,-0.2882642506800913],[114,194,64,-0.3139063311503002],[114,194,65,-0.31312076945507406],[114,194,66,-0.3122000334356122],[114,194,67,-0.3111443974811019],[114,194,68,-0.30995427448870194],[114,194,69,-0.3086302185066593],[114,194,70,-0.3071729273859404],[114,194,71,-0.3055832454404316],[114,194,72,-0.30386216611567285],[114,194,73,-0.30201083466619716],[114,194,74,-0.300030550841322],[114,194,75,-0.29792277157958524],[114,194,76,-0.2956891137116966],[114,194,77,-0.29333135667203314],[114,194,78,-0.29085144521870454],[114,194,79,-0.28825149216213897],[114,195,64,-0.3138214195605201],[114,195,65,-0.3130364979506782],[114,195,66,-0.31211634363187857],[114,195,67,-0.3110612314923411],[114,195,68,-0.30987157497878937],[114,195,69,-0.308547928739924],[114,195,70,-0.3070909912784039],[114,195,71,-0.30550160761138534],[114,195,72,-0.30378077193958863],[114,195,73,-0.3019296303249561],[114,195,74,-0.29994948337675853],[114,195,75,-0.2978417889463336],[114,195,76,-0.29560816483033114],[114,195,77,-0.2932503914824941],[114,195,78,-0.2907704147340002],[114,195,79,-0.28817034852231416],[114,196,64,-0.3136769557264045],[114,196,65,-0.3128925128561677],[114,196,66,-0.3119727939007958],[114,196,67,-0.31091807411826455],[114,196,68,-0.30972876736261856],[114,196,69,-0.30840542872771426],[114,196,70,-0.30694875719946113],[114,196,71,-0.30535959831661585],[114,196,72,-0.3036389468400973],[114,196,73,-0.30178794943088505],[114,196,74,-0.29980790733636065],[114,196,75,-0.29770027908527286],[114,196,76,-0.29546668319120517],[114,196,77,-0.29310890086457],[114,196,78,-0.29062887873315735],[114,196,79,-0.288028731571188],[114,197,64,-0.31348115047311875],[114,197,65,-0.31269704546976607],[114,197,66,-0.311777633969317],[114,197,67,-0.3107231914883023],[114,197,68,-0.30953413216567605],[114,197,69,-0.3082110114067492],[114,197,70,-0.3067545285356148],[114,197,71,-0.30516552945612263],[114,197,72,-0.303445009321368],[114,197,73,-0.3015941152117626],[114,197,74,-0.2996141488215408],[114,197,75,-0.29750656915388607],[114,197,76,-0.29527299522455475],[114,197,77,-0.29291520877402233],[114,197,78,-0.29043515698817945],[114,197,79,-0.2878349552275271],[114,198,64,-0.31324260990093544],[114,198,65,-0.3124587240583333],[114,198,66,-0.31153951211816355],[114,198,67,-0.3104852497631576],[114,198,68,-0.3092963513154676],[114,198,69,-0.30797337238072087],[114,198,70,-0.3065170125005663],[114,198,71,-0.3049281178137665],[114,198,72,-0.3032076837257992],[114,198,73,-0.3013568575870398],[114,198,74,-0.29937694137937554],[114,198,75,-0.2972693944114365],[114,198,76,-0.2950358360223212],[114,198,77,-0.2926780482938415],[114,198,78,-0.29019797877131515],[114,198,79,-0.2875977431928529],[114,199,64,-0.31297034266478874],[114,199,65,-0.3121865811818203],[114,199,66,-0.31126748254899494],[114,199,67,-0.3102133225425181],[114,199,68,-0.30902451558760613],[114,199,69,-0.3077016174026106],[114,199,70,-0.3062453276516325],[114,199,71,-0.3046564926056804],[114,199,72,-0.3029361078123376],[114,199,73,-0.30108532077400696],[114,199,74,-0.2991054336345864],[114,199,75,-0.29699790587476016],[114,199,76,-0.2947643570157821],[114,199,77,-0.29240656933177644],[114,199,78,-0.28992649057058584],[114,199,79,-0.28732623668311086],[114,200,64,-0.3126737673059018],[114,200,65,-0.31189006107026185],[114,200,66,-0.3109710128045545],[114,200,67,-0.30991689832615554],[114,200,68,-0.3087281321056885],[114,200,69,-0.3074052699111792],[114,200,70,-0.3059490114607022],[114,200,71,-0.3043602030835679],[114,200,72,-0.3026398403900171],[114,200,73,-0.30078907094949536],[114,200,74,-0.2988091969773561],[114,200,75,-0.2967016780301771],[114,200,76,-0.2944681337095706],[114,200,77,-0.2921103463745095],[114,200,78,-0.2896302638621976],[114,200,79,-0.28703000221743513],[114,201,64,-0.31236271963549567],[114,201,65,-0.3115790270532929],[114,201,66,-0.3106599912417748],[114,201,67,-0.3096058880284098],[114,201,68,-0.30841713189495623],[114,201,69,-0.3070942786216244],[114,201,70,-0.30563802793972994],[114,201,71,-0.3040492261928881],[114,201,72,-0.30232886900671674],[114,201,73,-0.3004781039671174],[114,201,74,-0.298498233306983],[114,201,75,-0.2963907166015236],[114,201,76,-0.2941571734720815],[114,201,77,-0.29179938629846347],[114,201,78,-0.28931930293981944],[114,201,79,-0.28671903946401056],[114,202,64,-0.3114153258792345],[114,202,65,-0.310631630922638],[114,202,66,-0.3097125928057999],[114,202,67,-0.3086584873565502],[114,202,68,-0.30746972905692427],[114,202,69,-0.30614687368732496],[114,202,70,-0.3046906209791731],[114,202,71,-0.30310181727609764],[114,202,72,-0.3013814582036386],[114,202,73,-0.29953069134752386],[114,202,74,-0.2975508189403753],[114,202,75,-0.29544330055703194],[114,202,76,-0.29320975581836195],[114,202,77,-0.29085196710359396],[114,202,78,-0.2883718822711897],[114,202,79,-0.2857716173882132],[114,203,64,-0.3114110030186473],[114,203,65,-0.31062725942292724],[114,203,66,-0.3097081744330429],[114,203,67,-0.30865402387888086],[114,203,68,-0.307465222242586],[114,203,69,-0.3061423253026775],[114,203,70,-0.3046860327866511],[114,203,71,-0.30309719103212596],[114,203,72,-0.3013767956564968],[114,203,73,-0.29952599423516557],[114,203,74,-0.29754608898819945],[114,203,75,-0.29543853947560594],[114,203,76,-0.29320496530109663],[114,203,77,-0.2908471488243696],[114,203,78,-0.2883670378819341],[114,203,79,-0.28576674851643],[114,204,64,-0.31139610057252964],[114,204,65,-0.3106121893003595],[114,204,66,-0.3096929427223247],[114,204,67,-0.30863863667540214],[114,204,68,-0.3074496856421146],[114,204,69,-0.30612664539448575],[114,204,70,-0.30467021564648367],[114,204,71,-0.30308124271500547],[114,204,72,-0.30136072218936816],[114,204,73,-0.29950980160937657],[114,204,74,-0.29752978315181733],[114,204,75,-0.29542212632556797],[114,204,76,-0.29318845067519517],[114,204,77,-0.29083053849306917],[114,204,78,-0.2883503375400204],[114,204,79,-0.2857499637744889],[114,205,64,-0.3110487271333867],[114,205,65,-0.3102644594344057],[114,205,66,-0.3093448693667338],[114,205,67,-0.3082902327828012],[114,205,68,-0.30710096416630916],[114,205,69,-0.30577761927584624],[114,205,70,-0.30432089779699023],[114,205,71,-0.3027316460029498],[114,205,72,-0.30101085942370953],[114,205,73,-0.2991596855237507],[114,205,74,-0.2971794263881943],[114,205,75,-0.2950715414175593],[114,205,76,-0.2928376500310049],[114,205,77,-0.2904795343780897],[114,205,78,-0.2879991420590685],[114,205,79,-0.2853985888536811],[114,206,64,-0.3106787353072663],[114,206,65,-0.3098938552323931],[114,206,66,-0.3089736750095763],[114,206,67,-0.3079184705183393],[114,206,68,-0.30672865624494505],[114,206,69,-0.30540478792542725],[114,206,70,-0.3039475651971081],[114,206,71,-0.3023578342586465],[114,206,72,-0.3006365905385906],[114,206,73,-0.29878498137249865],[114,206,74,-0.2968043086884796],[114,206,75,-0.2946960317013465],[114,206,76,-0.2924617696152477],[114,206,77,-0.29010330433481224],[114,206,78,-0.28762258318482925],[114,206,79,-0.2850217216384151],[114,207,64,-0.3102805497120128],[114,207,65,-0.30949473742424427],[114,207,66,-0.30857365880476106],[114,207,67,-0.30751758977516963],[114,207,68,-0.3063269448264594],[114,207,69,-0.30500227966114957],[114,207,70,-0.303544293843907],[114,207,71,-0.30195383346069726],[114,207,72,-0.3002318937864277],[114,207,73,-0.2983796219611563],[114,207,74,-0.2963983196747155],[114,207,75,-0.2942894458599383],[114,207,76,-0.2920546193943614],[114,207,77,-0.2896956218104333],[114,207,78,-0.287214400014252],[114,207,79,-0.2846130690127848],[114,208,64,-0.309848895503925],[114,208,65,-0.30906177035366045],[114,208,66,-0.30813942648155557],[114,208,67,-0.3070821398696789],[114,208,68,-0.3058903250168621],[114,208,69,-0.3045645375795897],[114,208,70,-0.3031054770213574],[114,208,71,-0.30151398927054907],[114,208,72,-0.2997910693868022],[114,208,73,-0.29793786423592994],[114,208,74,-0.2959556751732467],[114,208,75,-0.2938459607354914],[114,208,76,-0.2916103393412185],[114,208,77,-0.28925059199968406],[114,208,78,-0.28676866502825515],[114,208,79,-0.28416667277829166],[114,209,64,-0.3093787919260643],[114,209,65,-0.30858991546657477],[114,209,66,-0.3076658837754438],[114,209,67,-0.306606972917011],[114,209,68,-0.30541359740216534],[114,209,69,-0.3040863128275605],[114,209,70,-0.30262581852328396],[114,209,71,-0.30103296020903736],[114,209,72,-0.29930873265879177],[114,209,73,-0.29745428237398785],[114,209,74,-0.29547091026513117],[114,209,75,-0.293360074341972],[114,209,76,-0.2911233924121418],[114,209,77,-0.2887626447882745],[114,209,78,-0.28627977700363916],[114,209,79,-0.2836769025362347],[114,210,64,-0.30886554591265303],[114,210,65,-0.30807442485616743],[114,210,66,-0.3071482299160012],[114,210,67,-0.30608723726403264],[114,210,68,-0.30489186142867675],[114,210,69,-0.30356265793194703],[114,210,70,-0.3021003259349596],[114,210,71,-0.3005057108919318],[114,210,72,-0.29877980721264286],[114,210,73,-0.29692376093342454],[114,210,74,-0.29493887239653327],[114,210,75,-0.29282659893809115],[114,210,76,-0.2905885575844702],[114,210,77,-0.2882265277571474],[114,210,78,-0.2857424539860568],[114,210,79,-0.2831384486313867],[114,211,64,-0.3083047457495891],[114,211,65,-0.30751083486446507],[114,211,66,-0.3065819511718001],[114,211,67,-0.3055183709797685],[114,211,68,-0.3043205088411728],[114,211,69,-0.30298892018782586],[114,211,70,-0.30152430397335794],[114,211,71,-0.2999275053245001],[114,211,72,-0.29819951820081136],[114,211,73,-0.2963414880629184],[114,211,74,-0.2943547145491193],[114,211,75,-0.2922406541605368],[114,211,76,-0.29000092295469837],[114,211,77,-0.287637299247569],[114,211,78,-0.28515172632406105],[114,211,79,-0.2825463151569757],[114,212,64,-0.30769225479106543],[114,212,65,-0.30689495974051384],[114,212,66,-0.3059628144523442],[114,212,67,-0.30489609540329576],[114,212,68,-0.3036952171789491],[114,212,69,-0.30236073510485406],[114,212,70,-0.3008933478860576],[114,212,71,-0.29929390025508795],[114,212,72,-0.29756338562836027],[114,212,73,-0.29570294877107395],[114,212,74,-0.2937138884704492],[114,212,75,-0.2915976602174958],[114,212,76,-0.28935587889718284],[114,212,77,-0.28699032148704184],[114,212,78,-0.28450292976422353],[114,212,79,-0.2818958130209661],[114,213,64,-0.3070242052322779],[114,213,65,-0.3062228853551122],[114,213,66,-0.30528686096701174],[114,213,67,-0.3042164087490803],[114,213,68,-0.3030119433297267],[114,213,69,-0.3016740199119138],[114,213,70,-0.30020333690877976],[114,213,71,-0.298600738587693],[114,213,72,-0.2968672177226982],[114,213,73,-0.29500391825543093],[114,213,74,-0.2930121379643452],[114,213,75,-0.2908933311424451],[114,213,76,-0.28864911128339377],[114,213,77,-0.28628125377602864],[114,213,78,-0.28379169860730424],[114,213,79,-0.2811825530736193],[114,214,64,-0.30629699193825366],[114,214,65,-0.3054909629721312],[114,214,66,-0.3045503999410376],[114,214,67,-0.30347557976978723],[114,214,68,-0.3022669171414477],[114,214,69,-0.300924967120042],[114,214,70,-0.2994504277815927],[114,214,71,-0.29784414285356775],[114,214,72,-0.2961071043626886],[114,214,73,-0.2942404552911746],[114,214,74,-0.29224549224127017],[114,214,75,-0.2901236681082463],[114,214,76,-0.28787659476174743],[114,214,77,-0.2855060457355145],[114,214,78,-0.2830139589255055],[114,214,79,-0.28040243929636866],[114,215,64,-0.30550726632877145],[114,215,65,-0.30469580307639776],[114,215,66,-0.3037500023885106],[114,215,67,-0.30267014147653726],[114,215,68,-0.30145663509193177],[114,215,69,-0.30011003814362025],[114,215,70,-0.29863104832375287],[114,215,71,-0.29702050874182173],[114,215,72,-0.2952794105671055],[114,215,73,-0.29340889567951567],[114,215,74,-0.29141025932868814],[114,215,75,-0.2892849528015159],[114,215,76,-0.28703458609798993],[114,215,77,-0.2846609306153809],[114,215,78,-0.2821659218407834],[114,215,79,-0.27955166205197735],[114,216,64,-0.3046519303194003],[114,216,65,-0.30383426925816515],[114,216,66,-0.3028824949424074],[114,216,67,-0.3017968849166338],[114,216,68,-0.30057785401641957],[114,216,69,-0.2992259569798469],[114,216,70,-0.29774189106721094],[114,216,71,-0.29612649868904883],[114,216,72,-0.29438077004245733],[114,216,73,-0.2925058457557681],[114,216,74,-0.2905030195414312],[114,216,75,-0.2883737408572954],[114,216,76,-0.2861196175761589],[114,216,77,-0.2837424186636184],[114,216,78,-0.28124407686424047],[114,216,79,-0.2786266913960098],[114,217,64,-0.3037281303186178],[114,217,65,-0.3029034721541316],[114,217,66,-0.3019449537416281],[114,217,67,-0.30085285300872555],[114,217,68,-0.29962758489296515],[114,217,69,-0.298269703946456],[114,217,70,-0.29677990694874157],[114,217,71,-0.29515903552794254],[114,217,72,-0.29340807879014275],[114,217,73,-0.291528175957086],[114,217,74,-0.2895206190120355],[114,217,75,-0.2873868553539829],[114,217,76,-0.2851284904600827],[114,217,77,-0.2827472905563375],[114,217,78,-0.2802451852965614],[114,217,79,-0.27762427044957094],[114,218,64,-0.3027332512810522],[114,218,65,-0.30190076344505357],[114,218,66,-0.3009346983750749],[114,218,67,-0.29983533443544375],[114,218,68,-0.29860308668571967],[114,218,69,-0.29723850947772557],[114,218,70,-0.295742299060744],[114,218,71,-0.2941152961949417],[114,218,72,-0.2923584887729831],[114,218,73,-0.29047301444990314],[114,218,74,-0.28846016328109125],[114,218,75,-0.28632138036857313],[114,218,76,-0.284058268515464],[114,218,77,-0.2816725908886244],[114,218,78,-0.2791662736895373],[114,218,79,-0.27654140883336575],[114,219,64,-0.30166491081683144],[114,219,65,-0.3008237299099341],[114,219,66,-0.29984928588275983],[114,219,67,-0.29874185759350214],[114,219,68,-0.2975018602460927],[114,219,69,-0.2961298479787592],[114,219,70,-0.2946265164606945],[114,219,71,-0.29299270549689194],[114,219,72,-0.2912294016411131],[114,219,73,-0.28933774081705876],[114,219,74,-0.2873190109475885],[114,219,75,-0.2851746545921854],[114,219,76,-0.28290627159253035],[114,219,77,-0.2805156217262219],[114,219,78,-0.2780046273686614],[114,219,79,-0.2753753761630573],[114,220,64,-0.3005209533570088],[114,220,65,-0.299670187536757],[114,220,66,-0.2986865048139078],[114,220,67,-0.29757018460122775],[114,220,68,-0.2963216422717573],[114,220,69,-0.2949414317380106],[114,220,70,-0.2934302480392208],[114,220,71,-0.2917889299366889],[114,220,72,-0.2900184625172],[114,220,73,-0.2881199798045785],[114,220,74,-0.286094767379228],[114,220,75,-0.28394426500585146],[114,220,76,-0.28167006926921756],[114,220,77,-0.27927393621800756],[114,220,78,-0.27675778401676376],[114,220,79,-0.2741236956058921],[114,221,64,-0.2992994443751178],[114,221,65,-0.2984381756898211],[114,221,66,-0.29744436934211027],[114,221,67,-0.2963183053635706],[114,221,68,-0.29506039932355344],[114,221,69,-0.29367120489810195],[114,221,70,-0.2921514164468514],[114,221,71,-0.2905018715979608],[114,221,72,-0.28872355384104376],[114,221,73,-0.28681759512816474],[114,221,74,-0.28478527848275115],[114,221,75,-0.2826280406166142],[114,221,76,-0.2803474745549447],[114,221,77,-0.27794533226931994],[114,221,78,-0.2754235273187401],[114,221,79,-0.2727841374986487],[114,222,64,-0.2979986646648335],[114,222,65,-0.2971259513336484],[114,222,66,-0.29612111343750713],[114,222,67,-0.29498443169457955],[114,222,68,-0.2937163219002684],[114,222,69,-0.29231733748491784],[114,222,70,-0.29078817207941765],[114,222,71,-0.2891296620887637],[114,222,72,-0.28734278927353674],[114,222,73,-0.28542868333937244],[114,222,74,-0.2833886245342675],[114,222,75,-0.2812240462539176],[114,222,76,-0.2789365376549543],[114,222,77,-0.2765278462761124],[114,222,78,-0.27399988066735215],[114,222,79,-0.27135471302688685],[114,223,64,-0.2966171046737063],[114,223,65,-0.2957319833134351],[114,223,66,-0.2947151850959585],[114,223,67,-0.2935669914972976],[114,223,68,-0.29228781857125474],[114,223,69,-0.290878219494933],[114,223,70,-0.28933888712207256],[114,223,71,-0.2876706565442557],[114,223,72,-0.2858745076599458],[114,223,73,-0.2839515677514345],[114,223,74,-0.2819031140695394],[114,223,75,-0.27973057642624855],[114,223,76,-0.2774355397951822],[114,223,77,-0.2750197469198967],[114,223,78,-0.27248510093006173],[114,223,79,-0.26983366796545705],[114,224,64,-0.29515345889302824],[114,224,65,-0.29425494669210484],[114,224,66,-0.29322524062527244],[114,224,67,-0.29206462300114955],[114,224,68,-0.2907735101669532],[114,224,69,-0.28935245504084317],[114,224,70,-0.2878021496519888],[114,224,71,-0.28612342768841315],[114,224,72,-0.284317267052581],[114,224,73,-0.2823847924248021],[114,224,74,-0.2803272778342931],[114,224,75,-0.27814614923809644],[114,224,76,-0.2758429871077215],[114,224,77,-0.2734195290235407],[114,224,78,-0.27087767227696335],[114,224,79,-0.2682194764803394],[114,225,64,-0.2936066203038087],[114,225,65,-0.29269371714393866],[114,225,66,-0.29165013898846137],[114,225,67,-0.29047616905678764],[114,225,68,-0.28917222402729226],[114,225,69,-0.2877388565554695],[114,225,70,-0.28617675779971097],[114,225,71,-0.28448675995476214],[114,225,72,-0.28266983879282404],[114,225,73,-0.280727116212371],[114,225,74,-0.27865986279452737],[114,225,75,-0.27646950036720375],[114,225,76,-0.2741576045768549],[114,225,77,-0.27172590746789493],[114,225,78,-0.2691763000697902],[114,225,79,-0.2665108349917842],[114,226,64,-0.29197567487881293],[114,226,65,-0.2910473654047403],[114,226,66,-0.2899889362039827],[114,226,67,-0.28880067148835786],[114,226,68,-0.2874829883079194],[114,226,69,-0.2860364390538912],[114,226,70,-0.2844617139691167],[114,226,71,-0.2827596436660813],[114,226,72,-0.28093120165247265],[114,226,73,-0.2789775068643511],[114,226,74,-0.2768998262067722],[114,226,75,-0.27469957710206194],[114,226,76,-0.27237833004560796],[114,226,77,-0.2699378111692008],[114,226,78,-0.2673799048119463],[114,226,79,-0.2647066560987037],[114,227,64,-0.29025989614074343],[114,227,65,-0.2893151517786108],[114,227,66,-0.2882408798030405],[114,227,67,-0.28703736550325887],[114,227,68,-0.28570502634434325],[114,227,69,-0.2842444144538876],[114,227,70,-0.28265621911606564],[114,227,71,-0.28094126927315366],[114,227,72,-0.2791005360344777],[114,227,73,-0.2771351351928566],[114,227,74,-0.2750463297483807],[114,227,75,-0.27283553243973224],[114,227,76,-0.2705043082829046],[114,227,77,-0.2680543771173607],[114,227,78,-0.2654876161596438],[114,227,79,-0.2628060625644041],[114,228,64,-0.28845873977652703],[114,228,65,-0.28749652070129905],[114,228,66,-0.2864054033439165],[114,228,67,-0.28518567415936324],[114,228,68,-0.2838377510739519],[114,228,69,-0.282362185954653],[114,228,70,-0.2807596670857003],[114,228,71,-0.27903102165253346],[114,228,72,-0.277177218233042],[114,228,73,-0.27519936929618394],[114,228,74,-0.27309873370781845],[114,228,75,-0.2708767192439565],[114,228,76,-0.2685348851112904],[114,228,77,-0.26607494447503666],[114,228,78,-0.2634987669941147],[114,228,79,-0.26080838136361406],[114,229,64,-0.2865718383076614],[114,229,65,-0.2855910953600822],[114,229,66,-0.28448212098327874],[114,229,67,-0.2832452028896506],[114,229,68,-0.281880759515858],[114,229,69,-0.28038934247373537],[114,229,70,-0.278771639008352],[114,229,71,-0.2770284744632785],[114,229,72,-0.2751608147530249],[114,229,73,-0.2731697688427239],[114,229,74,-0.2710565912348969],[114,229,75,-0.2688226844635082],[114,229,76,-0.2664696015951692],[114,229,77,-0.26399904873752356],[114,229,78,-0.2614128875548404],[114,229,79,-0.2587131377907632],[114,230,64,-0.284598995816708],[114,230,65,-0.28359867237026026],[114,230,66,-0.2824708221045583],[114,230,67,-0.2812157340843404],[114,230,68,-0.27983382730865913],[114,230,69,-0.27832565314228797],[114,230,70,-0.27669189775413716],[114,230,71,-0.2749333845627361],[114,230,72,-0.27305107668874995],[114,230,73,-0.2710460794146031],[114,230,74,-0.26891964265104573],[114,230,75,-0.26667316341087255],[114,230,76,-0.2643081882896505],[114,230,77,-0.26182641595349176],[114,230,78,-0.2592296996338944],[114,230,79,-0.25652004962960173],[114,231,64,-0.2825401827298931],[114,231,65,-0.2815192165082293],[114,231,66,-0.2803714660033546],[114,231,67,-0.2790972217304879],[114,231,68,-0.277696903306077],[114,231,69,-0.27617106185859697],[114,231,70,-0.27452038244621035],[114,231,71,-0.272745686481347],[114,231,72,-0.27084793416217157],[114,231,73,-0.26882822691101205],[114,231,74,-0.26668780981958407],[114,231,75,-0.26442807410122027],[114,231,76,-0.2620505595499636],[114,231,77,-0.2595569570065579],[114,231,78,-0.2569491108313594],[114,231,79,-0.2542290213841225],[114,232,64,-0.2803955306557605],[114,232,65,-0.2793528555010747],[114,232,66,-0.2781841766298123],[114,232,67,-0.2768897861089833],[114,232,68,-0.2754701042304136],[114,232,69,-0.27392568189982347],[114,232,70,-0.27225720303261125],[114,232,71,-0.2704654869564048],[114,232,72,-0.26855149082034246],[114,232,73,-0.26651631201116144],[114,232,74,-0.26436119057592666],[114,232,75,-0.26208751165161026],[114,232,76,-0.2596968079013784],[114,232,77,-0.25719076195762236],[114,232,78,-0.2545712088717541],[114,232,79,-0.2518401385707212],[114,233,64,-0.2781653272799779],[114,233,65,-0.27709987487278775],[114,233,66,-0.27590923738807216],[114,233,67,-0.27459370854906007],[114,233,68,-0.27315370938393313],[114,233,69,-0.271589790592067],[114,233,70,-0.2699026349168122],[114,233,71,-0.26809305952487916],[114,233,72,-0.2661620183922897],[114,233,73,-0.26411060469697345],[114,233,74,-0.26194005321783886],[114,233,75,-0.2596517427405324],[114,233,76,-0.2572471984697432],[114,233,77,-0.25472809444808486],[114,233,78,-0.2520962559815816],[114,233,79,-0.24935366207170762],[114,234,64,-0.27585001131625],[114,234,65,-0.2747607128470595],[114,234,66,-0.2735470859927518],[114,234,67,-0.27220942624026356],[114,234,68,-0.27074815541811825],[114,234,69,-0.2691638240387043],[114,234,70,-0.2674571136469205],[114,234,71,-0.2656288391752537],[114,234,72,-0.26367995130525046],[114,234,73,-0.2616115388354613],[114,234,74,-0.2594248310556867],[114,234,75,-0.25712120012774176],[114,234,76,-0.25470216347259045],[114,234,77,-0.2521693861638875],[114,234,78,-0.24952468332795152],[114,234,79,-0.24677002255011882],[114,235,64,-0.273450167513279],[114,235,65,-0.2723359553065886],[114,235,66,-0.27109830938238955],[114,235,67,-0.26973752710181864],[114,235,68,-0.26825403116074087],[114,235,69,-0.26664837190693536],[114,235,70,-0.264921229663468],[114,235,71,-0.26307341705831555],[114,235,72,-0.2611058813602022],[114,235,73,-0.25901970682072806],[114,235,74,-0.25681611702261953],[114,235,75,-0.254496477234315],[114,235,76,-0.2520622967707413],[114,235,77,-0.24951523136031717],[114,235,78,-0.2468570855182044],[114,235,79,-0.2440898149257621],[114,236,64,-0.2709665217178827],[114,236,65,-0.26982633080901897],[114,236,66,-0.2685636386899708],[114,236,67,-0.2671787447095112],[114,236,68,-0.2656720725008621],[114,236,69,-0.2640441722726592],[114,236,70,-0.2622957231059092],[114,236,71,-0.2604275352570127],[114,236,72,-0.2584405524668063],[114,236,73,-0.2563358542757098],[114,236,74,-0.25411465834480396],[114,236,75,-0.251778322783054],[114,236,76,-0.24932834848053487],[114,236,77,-0.2467663814476928],[114,236,78,-0.2440942151606661],[114,236,79,-0.2413137929126179],[114,237,64,-0.26839993599422207],[114,237,65,-0.2672327056594547],[114,237,66,-0.2659439442704832],[114,237,67,-0.26453395328003126],[114,237,68,-0.26300315733170965],[114,237,69,-0.2613521065236226],[114,237,70,-0.25958147867777315],[114,237,71,-0.25769208161532897],[114,237,72,-0.255684855437714],[114,237,73,-0.2535608748136048],[114,237,74,-0.2513213512716568],[114,237,75,-0.24896763549918155],[114,237,76,-0.2465012196466243],[114,237,77,-0.24392373963788105],[114,237,78,-0.2412369774864742],[114,237,79,-0.23844286361754308],[114,238,64,-0.2657514037990666],[114,238,65,-0.2645560790394822],[114,238,66,-0.26324023078542813],[114,238,67,-0.2618041627127078],[114,238,68,-0.26024830055135917],[114,238,69,-0.25857319432077175],[114,238,70,-0.25677952057039566],[114,238,71,-0.25486808462610067],[114,238,72,-0.2528398228421581],[114,238,73,-0.25069580485891674],[114,238,74,-0.24843723586599975],[114,238,75,-0.24606545887125086],[114,238,76,-0.24358195697526663],[114,238,77,-0.24098835565156407],[114,238,78,-0.2382864250324006],[114,238,79,-0.2354780822001976],[114,239,64,-0.26302204521323513],[114,239,65,-0.2617975781928371],[114,239,66,-0.2604536323444303],[114,239,67,-0.25899051368877213],[114,239,68,-0.25740864912136363],[114,239,69,-0.2557085886179471],[114,239,70,-0.2538910074453755],[114,239,71,-0.25195670837791895],[114,239,72,-0.24990662391897445],[114,239,73,-0.24774181852825528],[114,239,74,-0.24546349085428465],[114,239,75,-0.24307297597242006],[114,239,76,-0.24057174762824962],[114,239,77,-0.2379614204864069],[114,239,78,-0.23524375238481943],[114,239,79,-0.2324206465943477],[114,240,64,-0.2602131022290952],[114,240,65,-0.2589584536676005],[114,240,66,-0.25758540770382676],[114,240,67,-0.25609427282803476],[114,240,68,-0.25448547718320813],[114,240,69,-0.2527595707398018],[114,240,70,-0.25091722747563505],[114,240,71,-0.24895924756099808],[114,240,72,-0.2468865595489338],[114,240,73,-0.24470022257077584],[114,240,74,-0.2424014285367636],[114,240,75,-0.23999150434196392],[114,240,76,-0.23747191407733803],[114,240,77,-0.23484426124600222],[114,240,78,-0.23211029098469582],[114,240,79,-0.2292718922904149],[114,241,64,-0.2573259340942152],[114,241,65,-0.25604007461501443],[114,241,66,-0.2546369355223276],[114,241,67,-0.2531168279030689],[114,241,68,-0.25148018123268745],[114,241,69,-0.24972754551804077],[114,241,70,-0.2478595934451786],[114,241,71,-0.2458771225321048],[114,241,72,-0.24378105728648047],[114,241,73,-0.24157245136834948],[114,241,74,-0.2392524897577043],[114,241,75,-0.23682249092712537],[114,241,76,-0.23428390901933238],[114,241,77,-0.2316383360296902],[114,241,78,-0.22888750399369306],[114,241,79,-0.22603328717937543],[114,242,64,-0.2543620127110393],[114,242,65,-0.2530439241447925],[114,242,66,-0.2516097096736196],[114,242,67,-0.25005968311076643],[114,242,68,-0.24839427535207115],[114,242,69,-0.24661403648584457],[114,242,70,-0.24471963790741602],[114,242,71,-0.24271187443841302],[114,242,72,-0.24059166645073926],[114,242,73,-0.2383600619953311],[114,242,74,-0.23601823893550966],[114,242,75,-0.23356750708516405],[114,242,76,-0.23100931035160188],[114,242,77,-0.22834522888311204],[114,242,78,-0.22557698122125958],[114,242,79,-0.2227064264578663],[114,243,64,-0.2513229180927361],[114,243,65,-0.24997159473707098],[114,243,66,-0.24850533461606716],[114,243,67,-0.24692445440142752],[114,243,68,-0.2452293865002173],[114,243,69,-0.24342068113063742],[114,243,70,-0.24149900840221006],[114,243,71,-0.23946516040044585],[114,243,72,-0.23732005327595518],[114,243,73,-0.2350647293380873],[114,243,74,-0.2327003591529101],[114,243,75,-0.2302282436457691],[114,243,76,-0.22764981620826086],[114,243,77,-0.22496664480966622],[114,243,78,-0.2221804341128617],[114,243,79,-0.21929302759466507],[114,244,64,-0.24821033387515634],[114,244,65,-0.2468247837109404],[114,244,66,-0.24532552081943948],[114,244,67,-0.2437128648653083],[114,244,68,-0.24198724986056053],[114,244,69,-0.24014922620512913],[114,244,70,-0.23819946273157788],[114,244,71,-0.23613874875403207],[114,244,72,-0.2339679961212916],[114,244,73,-0.23168824127420984],[114,244,74,-0.22930064730715038],[114,244,75,-0.22680650603376307],[114,244,76,-0.22420724005691017],[114,244,77,-0.2215044048427922],[114,244,78,-0.21869969079928897],[114,244,79,-0.21579492535847267],[114,245,64,-0.2450260428848141],[114,245,65,-0.24360528874946907],[114,245,66,-0.2420720802485833],[114,245,67,-0.24042674017654675],[114,245,68,-0.23866970424689138],[114,245,69,-0.2368015230965439],[114,245,70,-0.2348228642939575],[114,245,71,-0.2327345143511913],[114,245,72,-0.23053738073990127],[114,245,73,-0.22823249391132738],[114,245,74,-0.22582100932008464],[114,245,75,-0.2233042094520047],[114,245,76,-0.2206835058558554],[114,245,77,-0.21796044117898994],[114,245,78,-0.21513669120693857],[114,245,79,-0.21221406690690214],[114,246,64,-0.24177192276304937],[114,246,65,-0.24031500348137658],[114,246,66,-0.23874692190419766],[114,246,67,-0.23706800409462414],[114,246,68,-0.23527868756708803],[114,246,69,-0.23337952325419975],[114,246,70,-0.23137117747720526],[114,246,71,-0.2292544339201097],[114,246,72,-0.22703019560743365],[114,246,73,-0.22469948688568386],[114,246,74,-0.22226345540834846],[114,246,75,-0.21972337412466314],[114,246,76,-0.2170806432719734],[114,246,77,-0.21433679237174796],[114,246,78,-0.21149348222925324],[114,246,79,-0.20855250693685046],[114,247,64,-0.2384499416462979],[114,247,65,-0.2369559131192851],[114,247,66,-0.23535204742063576],[114,247,67,-0.2336386740232882],[114,247,68,-0.23181623234472437],[114,247,69,-0.22988527367536116],[114,247,70,-0.22784646311024603],[114,247,71,-0.22570058148413352],[114,247,72,-0.2234485273099026],[114,247,73,-0.2210913187204021],[114,247,74,-0.2186300954135274],[114,247,75,-0.2160661206007819],[114,247,76,-0.21340078295914466],[114,247,77,-0.21063559858629854],[114,247,78,-0.20777221295923154],[114,247,79,-0.20481240289617075],[114,248,64,-0.23506215390237906],[114,248,65,-0.23353009015445775],[114,248,66,-0.23188954672064632],[114,248,67,-0.23014085662684514],[114,248,68,-0.22828446129846225],[114,248,69,-0.22632091244927277],[114,248,70,-0.2242508739732838],[114,248,71,-0.2220751238396812],[114,248,72,-0.21979455599081932],[114,248,73,-0.2174101822433404],[114,248,74,-0.21492313419222608],[114,248,75,-0.21233466511803645],[114,248,76,-0.2096461518971564],[114,248,77,-0.20685909691510307],[114,248,78,-0.20397512998291056],[114,248,79,-0.2009960102565459],[114,249,64,-0.23161069592297245],[114,249,65,-0.23003969010819392],[114,249,66,-0.2283615937272223],[114,249,67,-0.22657674350399676],[114,249,68,-0.22468558297940278],[114,249,69,-0.22268866435955026],[114,249,70,-0.22058665036674874],[114,249,71,-0.21838031609325714],[114,249,72,-0.21607055085776883],[114,249,73,-0.21365836006472017],[114,249,74,-0.21114486706622115],[114,249,75,-0.20853131502686884],[114,249,76,-0.2058190687912591],[114,249,77,-0.20300961675425244],[114,249,78,-0.2001045727340095],[114,249,79,-0.19710567784775046],[114,250,64,-0.22809778197219865],[114,250,65,-0.22648694733980046],[114,250,66,-0.22477044213247754],[114,250,67,-0.22294860691913543],[114,250,68,-0.2210218874663129],[114,250,69,-0.2189908365448433],[114,250,70,-0.21685611573889652],[114,250,71,-0.21461849725747772],[114,250,72,-0.2122788657483461],[114,250,73,-0.20983822011444053],[114,250,74,-0.20729767533261023],[114,250,75,-0.2046584642749122],[114,250,76,-0.20192193953229054],[114,250,77,-0.1990895752406936],[114,250,78,-0.19616296890964335],[114,250,79,-0.19314384325321377],[114,251,64,-0.2245257000912162],[114,251,65,-0.22287417091104572],[114,251,66,-0.22111842122345626],[114,251,67,-0.2192587955910057],[114,251,68,-0.21729574211863123],[114,251,69,-0.21522981421767506],[114,251,70,-0.21306167237196294],[114,251,71,-0.21079208590601517],[114,251,72,-0.20842193475535176],[114,251,73,-0.20595221123897922],[114,251,74,-0.2033840218338565],[114,251,75,-0.20071858895160322],[114,251,76,-0.19795725271726317],[114,251,77,-0.19510147275018097],[114,251,78,-0.19215282994700567],[114,251,79,-0.18911302826677712],[114,252,64,-0.22089680805900924],[114,252,65,-0.2192037405072752],[114,252,66,-0.2174079317650569],[114,252,67,-0.21550973053891387],[114,252,68,-0.21350958738743903],[114,252,69,-0.2114080564416435],[114,252,70,-0.20920579712706],[114,252,71,-0.20690357588764474],[114,252,72,-0.204502267911437],[114,252,73,-0.2020028588580699],[114,252,74,-0.19940644658792173],[114,252,75,-0.1967142428931773],[114,252,76,-0.1939275752306111],[114,252,77,-0.19104788845614806],[114,252,78,-0.18807674656121554],[114,252,79,-0.18501583441084724],[114,253,64,-0.21721352940928168],[114,253,65,-0.21547810241510312],[114,253,66,-0.2136414419399818],[114,253,67,-0.21170390098639713],[114,253,68,-0.20966593268430495],[114,253,69,-0.20752809196689526],[114,253,70,-0.20529103724772535],[114,253,71,-0.20295553209930683],[114,253,72,-0.2005224469331089],[114,253,73,-0.19799276068106797],[114,253,74,-0.1953675624783956],[114,253,75,-0.19264805334795332],[114,253,76,-0.18983554788600543],[114,253,77,-0.1869314759494063],[114,253,78,-0.18393738434423723],[114,253,79,-0.18085493851584855],[114,254,64,-0.2134783495033618],[114,254,65,-0.2116997655565825],[114,254,66,-0.209821483345617],[114,254,67,-0.20784386032225372],[114,254,68,-0.20576735230790527],[114,254,69,-0.2035925151237707],[114,254,70,-0.20132000622201973],[114,254,71,-0.19895058631807994],[114,254,72,-0.1964851210239879],[114,254,73,-0.19392458248289446],[114,254,74,-0.19127005100451577],[114,254,75,-0.18852271670180143],[114,254,76,-0.1856838811286256],[114,254,77,-0.18275495891856275],[114,254,78,-0.1797374794247607],[114,254,79,-0.176633088360866],[114,255,64,-0.2096938116593018],[114,255,65,-0.20787129758004097],[114,255,66,-0.20595064704802868],[114,255,67,-0.20393222211912526],[114,255,68,-0.2018164814286132],[114,255,69,-0.19960398177481586],[114,255,70,-0.19729537970337357],[114,255,71,-0.19489143309226364],[114,255,72,-0.1923930027375227],[114,255,73,-0.18980105393976487],[114,255,74,-0.18711665809128114],[114,255,75,-0.1843409942639982],[114,255,76,-0.181475350798098],[114,255,77,-0.1785211268913628],[114,255,78,-0.1754798341892546],[114,255,79,-0.17235309837568802],[114,256,64,-0.20586251333708483],[114,256,65,-0.20399532100749285],[114,256,66,-0.20203157969298857],[114,256,67,-0.19997165620953938],[114,256,68,-0.19781601213096273],[114,256,69,-0.19556520532506705],[114,256,70,-0.19321989149008445],[114,256,71,-0.19078082569147436],[114,256,72,-0.1882488638990623],[114,256,73,-0.18562496452460397],[114,256,74,-0.182910189959562],[114,256,75,-0.18010570811337168],[114,256,76,-0.1772127939520005],[114,256,77,-0.1742328310368606],[114,256,78,-0.17116731306408872],[114,256,79,-0.1680178454041492],[114,257,64,-0.20198710237983714],[114,257,65,-0.2000745094385249],[114,257,66,-0.19806697967392128],[114,257,67,-0.19596488481930951],[114,257,68,-0.19376868951388293],[114,257,69,-0.19147895279050153],[114,257,70,-0.18909632956335998],[114,257,71,-0.18662157211564995],[114,257,72,-0.18405553158717836],[114,257,73,-0.18139915946203555],[114,257,74,-0.17865350905609445],[114,257,75,-0.17581973700462494],[114,257,76,-0.17289910474982045],[114,257,77,-0.16989298002830322],[114,257,78,-0.16680283835861526],[114,257,79,-0.1636302645286581],[114,258,64,-0.19807027331124027],[114,258,65,-0.19611158381085259],[114,258,66,-0.19405959335697637],[114,258,67,-0.19191467875848944],[114,258,68,-0.18967730784890596],[114,258,69,-0.1873480409248603],[114,258,70,-0.18492753218411306],[114,258,71,-0.18241653116316592],[114,258,72,-0.1798158841744475],[114,258,73,-0.1771265357431605],[114,258,74,-0.17434953004357523],[114,258,75,-0.17148601233505079],[114,258,76,-0.16853723039758328],[114,258,77,-0.1655045359669451],[114,258,78,-0.1623893861694254],[114,258,79,-0.15919334495613063],[114,259,64,-0.1941147636890499],[114,259,65,-0.1921093087174523],[114,259,66,-0.19001221136312602],[114,259,67,-0.18782385366978976],[114,259,68,-0.18554470679624957],[114,259,69,-0.18317533240474282],[114,259,70,-0.18071638404840762],[114,259,71,-0.17816860855796768],[114,259,72,-0.17553284742759118],[114,259,73,-0.1728100382000214],[114,259,74,-0.17000121585075106],[114,259,75,-0.16710751417153769],[114,259,76,-0.16413016715304618],[114,259,77,-0.16107051036668962],[114,259,78,-0.15792998234567635],[114,259,79,-0.1547101259652221],[114,260,64,-0.1901233505146167],[114,260,65,-0.1880704887801637],[114,260,66,-0.18592766490718354],[114,260,67,-0.18369526633434557],[114,260,68,-0.18137376767866575],[114,260,69,-0.17896373207286415],[114,260,70,-0.1764658125014475],[114,260,71,-0.17388075313560336],[114,260,72,-0.17120939066686314],[114,260,73,-0.16845265563963768],[114,260,74,-0.16561157378238966],[114,260,75,-0.1626872673377482],[114,260,76,-0.1596809563913434],[114,260,77,-0.1565939601994401],[114,260,78,-0.1534276985153722],[114,260,79,-0.15018369291474054],[114,261,64,-0.18609884669861027],[114,261,65,-0.18399796507996546],[114,261,66,-0.1818088221939479],[114,261,67,-0.17953181103504667],[114,261,68,-0.17716740981326762],[114,261,69,-0.17471618323968785],[114,261,70,-0.17217878381031976],[114,261,71,-0.1695559530883769],[114,261,72,-0.16684852298489827],[114,261,73,-0.16405741703783372],[114,261,74,-0.16118365168935445],[114,261,75,-0.1582283375616947],[114,261,76,-0.155192680731304],[114,261,77,-0.15207798400138545],[114,261,78,-0.1488856481728248],[114,261,79,-0.1456171733134708],[114,262,64,-0.18204409758285034],[114,262,65,-0.1798946116438278],[114,262,66,-0.17765858487137598],[114,262,67,-0.17533641597732386],[114,262,68,-0.17292858690122953],[114,262,69,-0.17043566404333105],[114,262,70,-0.16785829949538955],[114,262,71,-0.16519723226951322],[114,262,72,-0.16245328952492166],[114,262,73,-0.15962738779275254],[114,262,74,-0.156720534198673],[114,262,75,-0.15373382768360372],[114,262,76,-0.1506684602223361],[114,262,77,-0.14752571804011305],[114,262,78,-0.1443069828271848],[114,262,79,-0.14101373295129488],[114,263,64,-0.17796197751813542],[114,263,65,-0.17576333198803157],[114,263,66,-0.17347988454067048],[114,263,67,-0.17111203976728884],[114,263,68,-0.16866028347525147],[114,263,69,-0.16612518386762815],[114,263,70,-0.16350739272023368],[114,263,71,-0.16080764655622282],[114,263,72,-0.1580267678181988],[114,263,73,-0.1551656660379372],[114,263,74,-0.1522253390034854],[114,263,75,-0.14920687392395182],[114,263,76,-0.14611144859175756],[114,263,77,-0.1429403325424265],[114,263,78,-0.13969488821192294],[114,263,79,-0.1363765720914924],[114,264,64,-0.17385538649829207],[114,264,65,-0.17160705571817603],[114,264,66,-0.16927567932351079],[114,264,67,-0.16686166794744695],[114,264,68,-0.16436551140501637],[114,264,69,-0.16178777981858683],[114,264,70,-0.15912912474034568],[114,264,71,-0.15639028027190166],[114,264,72,-0.15357206418096686],[114,264,73,-0.15067537901522077],[114,264,74,-0.14770121321311114],[114,264,75,-0.14465064221191387],[114,264,76,-0.14152482955281787],[114,264,77,-0.13832502798311647],[114,264,78,-0.13505258055550767],[114,264,79,-0.13170892172446674],[114,265,64,-0.16972724685025675],[114,265,65,-0.16742873518569107],[114,265,66,-0.16504895048623747],[114,265,67,-0.16258830958979797],[114,265,68,-0.1600473064604464],[114,265,69,-0.15742651325904006],[114,265,70,-0.1547265814104163],[114,265,71,-0.1519482426672666],[114,265,72,-0.14909231017064628],[114,265,73,-0.14615967950722525],[114,265,74,-0.14315132976303346],[114,265,75,-0.14006832457402157],[114,265,76,-0.1369118131732061],[114,265,77,-0.13368303143447718],[114,265,78,-0.13038330291307398],[114,265,79,-0.12701403988268856],[114,266,64,-0.16558049998033353],[114,266,65,-0.1632313422009924],[114,266,66,-0.16080269912113188],[114,266,67,-0.1582949939464655],[114,266,68,-0.15570872493290638],[114,266,69,-0.15304446640164143],[114,266,70,-0.1503028697503384],[114,266,71,-0.14748466446057962],[114,266,72,-0.14459065910148355],[114,266,73,-0.14162174232961755],[114,266,74,-0.13857888388495232],[114,266,75,-0.1354631355831858],[114,266,76,-0.13227563230419886],[114,266,77,-0.12901759297672494],[114,266,78,-0.12569032155923793],[114,266,79,-0.12229520801701632],[114,267,64,-0.16141810317643607],[114,267,65,-0.1590178648030911],[114,267,66,-0.15653994288460044],[114,267,67,-0.15398476715766246],[114,267,68,-0.15135284031415586],[114,267,69,-0.14864473896000796],[114,267,70,-0.14586111456973488],[114,267,71,-0.1430026944367535],[114,267,72,-0.14007028261942328],[114,267,73,-0.13706476088292135],[114,267,74,-0.13398708963670347],[114,267,75,-0.13083830886787567],[114,267,76,-0.12761953907024193],[114,267,77,-0.12433198216910818],[114,267,78,-0.12097692244184594],[114,267,79,-0.11755572743417825],[114,268,64,-0.1572430264665401],[114,268,65,-0.15479130408588282],[114,268,66,-0.15226371279249024],[114,268,67,-0.1496606890172229],[114,268,68,-0.14698274003328438],[114,268,69,-0.14423044485824127],[114,268,70,-0.141404455151249],[114,268,71,-0.1385054961055856],[114,268,72,-0.1355343673364489],[114,268,73,-0.13249194376412693],[114,268,74,-0.12937917649228425],[114,268,75,-0.1261970936816994],[114,268,76,-0.12294680141921138],[114,268,77,-0.1196294845819581],[114,268,78,-0.11624640769691202],[114,268,79,-0.1127989157956707],[114,269,64,-0.15305824953323915],[114,269,65,-0.150554671081011],[114,269,66,-0.14797705007243078],[114,269,67,-0.14532582979559244],[114,269,68,-0.14260152225151945],[114,269,69,-0.1398047089987216],[114,269,70,-0.13693604199248532],[114,269,71,-0.13399624441900077],[114,269,72,-0.13098611152428108],[114,269,73,-0.1279065114379837],[114,269,74,-0.12475838599187439],[114,269,75,-0.1215427515332736],[114,269,76,-0.11826069973323816],[114,269,77,-0.11491339838956571],[114,269,78,-0.11150209222462193],[114,269,79,-0.10802810367795423],[114,270,64,-0.14886675868429783],[114,270,65,-0.14631098369719447],[114,270,66,-0.14368300307308873],[114,270,67,-0.14098326712016435],[114,270,68,-0.13821229271479607],[114,270,69,-0.13537066408805742],[114,270,70,-0.13245903360648387],[114,270,71,-0.129478122547192],[114,270,72,-0.12642872186731452],[114,270,73,-0.12331169296785949],[114,270,74,-0.12012796845173135],[114,270,75,-0.11687855287625865],[114,270,76,-0.11356452349997759],[114,270,77,-0.11018703102375976],[114,270,78,-0.10674730032628521],[114,270,79,-0.10324663119382321],[114,271,64,-0.144671543879415],[114,271,65,-0.14206326371623595],[114,271,66,-0.13938462423055775],[114,271,67,-0.13663608291318396],[114,271,68,-0.13381816166430854],[114,271,69,-0.1309314475214175],[114,271,70,-0.12797659338095918],[114,271,71,-0.1249543187138859],[114,271,72,-0.12186541027502668],[114,271,73,-0.118710722806399],[114,271,74,-0.11549117973419659],[114,271,75,-0.11220777385980035],[114,271,76,-0.10886156804455882],[114,271,77,-0.10545369588842868],[114,271,78,-0.10198536240247458],[114,271,79,-0.09845784467519292],[114,272,64,-0.14047559581309083],[114,272,65,-0.13781453384560394],[114,272,66,-0.13508496709177148],[114,272,67,-0.13228736038711036],[114,272,68,-0.12942224080493692],[114,272,69,-0.12649019832513275],[114,272,70,-0.12349188649618748],[114,272,71,-0.1204280230906204],[114,272,72,-0.11729939075374218],[114,272,73,-0.11410683764586499],[114,272,74,-0.11085127807769463],[114,272,75,-0.10753369313925676],[114,272,76,-0.1041551313220998],[114,272,77,-0.10071670913486663],[114,272,78,-0.0972196117122342],[114,272,79,-0.0936650934171846],[114,273,64,-0.13628190305349053],[114,273,65,-0.13356781482747915],[114,273,66,-0.13078708339483136],[114,273,67,-0.1279401810973244],[114,273,68,-0.12502764033143204],[114,273,69,-0.12205005415745518],[114,273,70,-0.11900807690142962],[114,273,71,-0.11590242474991747],[114,273,72,-0.1127338763376366],[114,273,73,-0.10950327332804527],[114,273,74,-0.10621152098660674],[114,273,75,-0.10285958874709261],[114,273,76,-0.09944851077066336],[114,273,77,-0.09597938649782162],[114,273,78,-0.09245338119323304],[114,273,79,-0.08887172648338237],[114,274,64,-0.13209344923751837],[114,274,65,-0.12932612260448179],[114,274,66,-0.12649402020646816],[114,274,67,-0.12359762205240499],[114,274,68,-0.1206374660125864],[114,274,69,-0.11761414836769857],[114,274,70,-0.114528324350117],[114,274,71,-0.11138070867758221],[114,274,72,-0.10817207607921131],[114,274,73,-0.10490326181395943],[114,274,74,-0.10157516218125617],[114,274,75,-0.0981887350241788],[114,274,76,-0.09474500022489718],[114,274,77,-0.09124504019248691],[114,274,78,-0.08769000034310759],[114,274,79,-0.08408108957250987],[114,275,64,-0.12791321032199593],[114,275,65,-0.12509246554197267],[114,275,66,-0.12220881711652842],[114,275,67,-0.11926275288186278],[114,275,68,-0.11625481633327633],[114,275,69,-0.1131856071136505],[114,275,70,-0.11005578149368656],[114,275,71,-0.10686605284401446],[114,275,72,-0.10361719209912579],[114,275,73,-0.10031002821324886],[114,275,74,-0.09694544860788595],[114,275,75,-0.09352439961137898],[114,275,76,-0.09004788689023635],[114,275,77,-0.0865169758723176],[114,275,78,-0.08293279216187305],[114,275,79,-0.07929652194640285],[114,276,64,-0.1237441518908361],[114,276,65,-0.12086984170681797],[114,276,66,-0.11793450348937379],[114,276,67,-0.11493863306121926],[114,276,68,-0.11188277969426502],[114,276,69,-0.10876754653713872],[114,276,70,-0.1055935910339511],[114,276,71,-0.10236162533441345],[114,276,72,-0.09907241669526617],[114,276,73,-0.09572678787313116],[114,276,74,-0.09232561750851098],[114,276,75,-0.08886984050130159],[114,276,76,-0.08536044837754869],[114,276,77,-0.08179848964754716],[114,276,78,-0.07818507015527909],[114,276,79,-0.07452135341915472],[114,277,64,-0.11958922651842885],[114,277,65,-0.11666123620283597],[114,277,66,-0.11367409577241583],[114,277,67,-0.110628309194656],[114,277,68,-0.10752443166999015],[114,277,69,-0.10436306999798245],[114,277,70,-0.10114488293423246],[114,277,71,-0.09787058153811207],[114,277,72,-0.09454092951128884],[114,277,73,-0.09115674352715603],[114,277,74,-0.08771889355088253],[114,277,75,-0.0842283031504587],[114,277,76,-0.08068594979846311],[114,277,77,-0.0770928651646503],[114,277,78,-0.07345013539935563],[114,277,79,-0.06975890140768204],[114,278,64,-0.11545137118912896],[114,278,65,-0.11246961856281629],[114,278,66,-0.10943059486167322],[114,278,67,-0.10633481235511821],[114,278,68,-0.10318283232422337],[114,278,69,-0.09997526536621132],[114,278,70,-0.09671277168914477],[114,278,71,-0.09339606139691908],[114,278,72,-0.09002589476451733],[114,278,73,-0.08660308250364268],[114,278,74,-0.08312848601844364],[114,278,75,-0.07960301765171013],[114,278,76,-0.07602764092126102],[114,278,77,-0.07240337074662767],[114,278,78,-0.0687312736660261],[114,278,79,-0.06501246804358457],[114,279,64,-0.11133350477274245],[114,279,65,-0.10829794019700406],[114,279,66,-0.1052069835242459],[114,279,67,-0.10206115548176825],[114,279,68,-0.09886102358349103],[114,279,69,-0.09560720237244313],[114,279,70,-0.09230035365291145],[114,279,71,-0.08894118671236001],[114,279,72,-0.08553045853307945],[114,279,73,-0.08206897399368346],[114,279,74,-0.0785575860601615],[114,279,75,-0.07499719596687537],[114,279,76,-0.07138875338721051],[114,279,77,-0.06773325659399387],[114,279,78,-0.06403175260966659],[114,279,79,-0.06028533734618058],[114,280,64,-0.10723852555622243],[114,280,65,-0.1041491318982658],[114,280,66,-0.10100622387792063],[114,280,67,-0.0978103308350044],[114,280,68,-0.09456202666847857],[114,280,69,-0.09126193001664268],[114,280,70,-0.08791070442644733],[114,280,71,-0.08450905851204255],[114,280,72,-0.08105774610251659],[114,280,73,-0.07755756637894723],[114,280,74,-0.07400936400046942],[114,280,75,-0.07041402921975048],[114,280,76,-0.06677249798758372],[114,280,77,-0.06308575204670946],[114,280,78,-0.0593548190148549],[114,280,79,-0.05558077245695975],[114,281,64,-0.1031693088314673],[114,281,65,-0.100026101403826],[114,281,66,-0.09683125492780098],[114,281,67,-0.09358530750893707],[114,281,68,-0.09028883958330686],[114,281,69,-0.08694247403514954],[114,281,70,-0.08354687630308727],[114,281,71,-0.08010275447503273],[114,281,72,-0.0766108593717465],[114,281,73,-0.07307198461916509],[114,281,74,-0.06948696670920096],[114,281,75,-0.06585668504941022],[114,281,76,-0.06218206200123544],[114,281,77,-0.05846406290693451],[114,281,78,-0.05470369610518455],[114,281,79,-0.05090201293533131],[114,282,64,-0.0991287045391187],[114,282,65,-0.09593173101347235],[114,282,66,-0.09268499015985404],[114,282,67,-0.08938902900121432],[114,282,68,-0.08604443466257078],[114,282,69,-0.08265183442586582],[114,282,70,-0.07921189577285292],[114,282,71,-0.07572532641612917],[114,282,72,-0.07219287431826887],[114,282,73,-0.06861532769918299],[114,282,74,-0.06499351503140177],[114,282,75,-0.061328305023679586],[114,282,76,-0.05762060659262813],[114,282,77,-0.053871368822487886],[114,282,78,-0.050081580913028834],[114,282,79,-0.046252272115549053],[114,283,64,-0.09511953496856812],[114,283,65,-0.09186887526443877],[114,283,66,-0.08857031519158848],[114,283,67,-0.0852244108404121],[114,283,68,-0.0818317561763609],[114,283,69,-0.07839298303182318],[114,283,70,-0.07490876108548117],[114,283,71,-0.07137979782926207],[114,283,72,-0.06780683852284003],[114,283,73,-0.06419066613581309],[114,283,74,-0.06053210127724962],[114,283,75,-0.05683200211300876],[114,283,76,-0.05309126427053651],[114,283,77,-0.04931082073124843],[114,283,78,-0.04549164171049147],[114,283,79,-0.041634734525051564],[114,284,64,-0.09114459251406537],[114,284,65,-0.08784035866286116],[114,284,66,-0.0844900854797565],[114,284,67,-0.0810943382708822],[114,284,68,-0.07765371799315585],[114,284,69,-0.07416886118301996],[114,284,70,-0.07064043987209989],[114,284,71,-0.06706916148990139],[114,284,72,-0.06345576875350245],[114,284,73,-0.05980103954436655],[114,284,74,-0.0561057867719672],[114,284,75,-0.052370858224633665],[114,284,76,-0.04859713640731528],[114,284,77,-0.044785538366377886],[114,284,78,-0.04093701550142326],[114,284,79,-0.03705255336409896],[114,285,64,-0.0872066374868283],[114,285,65,-0.08384897347170212],[114,285,66,-0.0804471240849734],[114,285,67,-0.07700166399494962],[114,285,68,-0.07351320130047986],[114,285,69,-0.06998237739641774],[114,285,70,-0.06640986682544378],[114,285,71,-0.06279637711636604],[114,285,72,-0.059142648608857706],[114,285,73,-0.05544945426475634],[114,285,74,-0.05171759946561319],[114,285,75,-0.047947921796906656],[114,285,76,-0.04414129081861293],[114,285,77,-0.04029860782225103],[114,285,78,-0.03642080557438973],[114,285,79,-0.03250884804658663],[114,286,64,-0.08330839598336007],[114,286,65,-0.07989747755535256],[114,286,66,-0.07644421949346883],[114,286,67,-0.07294920597267543],[114,286,68,-0.06941305238354042],[114,286,69,-0.06583640513431827],[114,286,70,-0.062219941438829196],[114,286,71,-0.05856436909025506],[114,286,72,-0.05487042622080743],[114,286,73,-0.051138881047395945],[114,286,74,-0.047370531602981075],[114,286,75,-0.04356620545403006],[114,286,76,-0.03972675940376555],[114,286,77,-0.035853079181325964],[114,286,78,-0.031946079116823956],[114,286,79,-0.028006701802274214],[114,287,64,-0.07945255780986687],[114,287,65,-0.07598859228080532],[114,287,66,-0.07248412349585848],[114,287,67,-0.06893974527907412],[114,287,68,-0.06535608046173744],[114,287,69,-0.06173378062100712],[114,287,70,-0.058073525803777004],[114,287,71,-0.05437602423588869],[114,287,72,-0.0506420120166485],[114,287,73,-0.046872252798779546],[114,287,74,-0.0430675374534889],[114,287,75,-0.03922868372107369],[114,287,76,-0.035356535846751386],[114,287,77,-0.03145196420183605],[114,287,78,-0.02751586489024513],[114,287,79,-0.023549159340308767],[114,288,64,-0.07564177446268133],[114,288,65,-0.0721250004753006],[114,288,66,-0.06856954912283958],[114,288,67,-0.06497602401868574],[114,288,68,-0.06134505558293954],[114,288,69,-0.05767730071756236],[114,288,70,-0.05397344246617747],[114,288,71,-0.05023418965865223],[114,288,72,-0.04646027654041446],[114,288,73,-0.04265246238663478],[114,288,74,-0.03881153110095151],[114,288,75,-0.03493829079916688],[114,288,76,-0.031033573377596102],[114,288,77,-0.02709823406619183],[114,288,78,-0.02313315096643065],[114,288,79,-0.019139224573929747],[114,289,64,-0.0718786571648993],[114,289,65,-0.068309344440656],[114,289,66,-0.06470316863802333],[114,289,67,-0.06106074329772007],[114,289,68,-0.05738270657574973],[114,289,69,-0.05366972085505026],[114,289,70,-0.04992247234122352],[114,289,71,-0.04614167064247149],[114,289,72,-0.04232804833369422],[114,289,73,-0.038482360504880964],[114,289,74,-0.034605384293468766],[114,289,75,-0.030697918401101254],[114,289,76,-0.02676078259446557],[114,289,77,-0.0227948171903323],[114,289,78,-0.01880088252478329],[114,289,79,-0.014779858406597374],[114,290,64,-0.06816577495905521],[114,290,65,-0.06454422402410451],[114,290,66,-0.06088761158772424],[114,290,67,-0.057196561253589795],[114,290,68,-0.053471719059573763],[114,290,69,-0.04971375302592035],[114,290,70,-0.04592335268692227],[114,290,71,-0.04210122860622778],[114,290,72,-0.038248111875733876],[114,290,73,-0.0343647535981971],[114,290,74,-0.030451924353233656],[114,290,75,-0.026510413647145653],[114,290,76,-0.02254102934624838],[114,290,77,-0.018544597093824444],[114,290,78,-0.014521959710689814],[114,290,79,-0.010473976579341182],[114,291,64,-0.06450565285596377],[114,291,65,-0.06083219474576798],[114,291,66,-0.05712546290783865],[114,291,67,-0.05338609114196666],[114,291,68,-0.04961473351262846],[114,291,69,-0.045812063833738675],[114,291,70,-0.04197877513632464],[114,291,71,-0.03811557911925331],[114,291,72,-0.03422320558296424],[114,291,73,-0.030302401846343224],[114,291,74,-0.026353932146403913],[114,291,75,-0.022378577021218926],[114,291,76,-0.018377132675772095],[114,291,77,-0.014350410330859181],[114,291,78,-0.010299235555020825],[114,291,79,-0.006224447579479431],[114,292,64,-0.06090077003956068],[114,292,65,-0.057175765982597826],[114,292,66,-0.05341926108763942],[114,292,67,-0.04963189948118571],[114,292,68,-0.04581434339771087],[114,292,69,-0.04196727260107716],[114,292,70,-0.03809138378828969],[114,292,71,-0.03418738997572229],[114,292,72,-0.03025601986776741],[114,292,73,-0.026298017208047253],[114,292,74,-0.02231414011284885],[114,292,75,-0.018305160387229957],[114,292,76,-0.014271862823463266],[114,292,77,-0.010215044481948765],[114,292,78,-0.006135513954576066],[114,292,79,-0.0020340906105102696],[114,293,64,-0.05735355812794235],[114,293,65,-0.053577399208985715],[114,293,66,-0.04977149639069295],[114,293,67,-0.04593650425420648],[114,293,68,-0.04207309334594114],[114,293,69,-0.038181949535776166],[114,293,70,-0.034263773357002564],[114,293,71,-0.030319279328158533],[114,293,72,-0.026349195256705288],[114,293,73,-0.022354261524681618],[114,293,74,-0.018335230355996573],[114,293,75,-0.014292865065812205],[114,293,76,-0.010227939291679325],[114,293,77,-0.006141236206558792],[114,293,78,-0.0020335477137088803],[114,293,79,0.0020943263765872966],[114,294,64,-0.05386639949050613],[114,294,65,-0.050039506293943464],[114,294,66,-0.0461846091327973],[114,294,67,-0.042302373168027624],[114,294,68,-0.038393477398374135],[114,294,69,-0.03445861395547234],[114,294,70,-0.030498487380137135],[114,294,71,-0.02651381387994972],[114,294,72,-0.022505320568099174],[114,294,73,-0.0184737446836183],[114,294,74,-0.014419832792670048],[114,294,75,-0.010344339971340696],[114,294,76,-0.006248028969599528],[114,294,77,-0.0021316693565585354],[114,294,78,0.0020039633529865264],[114,294,79,0.00615808859076189],[114,295,64,-0.05044162562110471],[114,295,65,-0.04656444785476559],[114,295,66,-0.042660988016852336],[114,295,67,-0.03873192197046614],[114,295,68,-0.034777937305389375],[114,295,69,-0.030799732570300983],[114,295,70,-0.026798016485571993],[114,295,71,-0.022773507136775686],[114,295,72,-0.018726931148866935],[114,295,73,-0.014659022841167796],[114,295,74,-0.010570523362816067],[114,295,75,-0.006462179809134161],[114,295,76,-0.0023347443185769423],[114,295,77,0.0018110268496074333],[114,295,78,0.0059743742570231295],[114,295,79,0.010154536247105161],[114,296,64,-0.04708151556739529],[114,296,65,-0.043154531667357277],[114,296,66,-0.03920296852484759],[114,296,67,-0.03522751282448869],[114,296,68,-0.031228860884049137],[114,296,69,-0.027207717823965374],[114,296,70,-0.023164796716853425],[114,296,71,-0.019100817717147042],[114,296,72,-0.015016507170815763],[114,296,73,-0.010912596705301869],[114,296,74,-0.006789822299329271],[114,296,75,-0.0026489233330462963],[114,296,76,0.0015093583818426015],[114,296,77,0.005684279591820315],[114,296,78,0.009875096611196024],[114,296,79,0.014081066351665672],[114,297,64,-0.043788294416289106],[114,297,65,-0.03981201113313167],[114,297,66,-0.03581283136687119],[114,297,67,-0.031791452739996576],[114,297,68,-0.02774858043332616],[114,297,69,-0.023684926293072284],[114,297,70,-0.019601207917304825],[114,297,71,-0.015498147721951405],[114,297,72,-0.011376471986287481],[114,297,73,-0.007236909878055517],[114,297,74,-0.0030801924578654355],[114,297,75,0.00109294833666021],[114,297,76,0.005281780727342533],[114,297,77,0.009485574152367685],[114,297,78,0.013703600343693757],[114,297,79,0.017935134424969523],[114,298,64,-0.04056413183541957],[114,298,65,-0.036539083802394665],[114,298,66,-0.03249280098705584],[114,298,67,-0.028425992062980174],[114,298,68,-0.024339371207113845],[114,298,69,-0.02023365714464668],[114,298,70,-0.01610957217269301],[114,298,71,-0.011967841162918533],[114,298,72,-0.007809190543065482],[114,298,73,-0.0036343472575177393],[114,298,74,5.559622934472805E-4],[114,298,75,0.004761013335249344],[114,298,76,0.008980083821791142],[114,298,77,0.013212455559298925],[114,298,78,0.017457415351240187],[114,298,79,0.021714256164344227],[114,299,64,-0.03741114067080139],[114,299,65,-0.03333788995438949],[114,299,66,-0.02924504412663713],[114,299,67,-0.02513332302221969],[114,299,68,-0.02100344994519978],[114,299,69,-0.0168561506520081],[114,299,70,-0.012692152312637234],[114,299,71,-0.008512182450189622],[114,299,72,-0.004316967858732333],[114,299,73,-1.072334996001234E-4],[114,299,74,0.0041162986242079674],[114,299,75,0.008352910615064144],[114,299,76,0.01260188984953637],[114,299,77,0.016862530168858324],[114,299,78,0.021134133091068895],[114,299,79,0.025416009044846158],[114,300,64,-0.03433137560058823],[114,300,65,-0.03021051123391156],[114,300,66,-0.026071668444033698],[114,300,67,-0.02191557833344116],[114,300,68,-0.017742973462109186],[114,300,69,-0.013554586768913933],[114,300,70,-0.009351150470664427],[114,300,71,-0.005133394938896502],[114,300,72,-9.020475543802808E-4],[114,300,73,0.0033421684605137725],[114,300,74,0.007598535231951933],[114,300,75,0.011866341446795138],[114,300,76,0.01614488358714004],[114,300,77,0.020433467187097442],[114,300,78,0.024731408111832904],[114,300,79,0.029038033858894183],[114,301,64,-0.03132683184485642],[114,301,65,-0.027158969344415657],[114,301,66,-0.022974721191868396],[114,301,67,-0.018774829860845034],[114,301,68,-0.014560037293735253],[114,301,69,-0.010331083761885934],[114,301,70,-0.006088706702826265],[114,301,71,-0.0018336395346615422],[114,301,72,0.00243338955241219],[114,301,73,0.00671165882732673],[114,301,74,0.011000454272458035],[114,301,75,0.015299070860554738],[114,301,76,0.01960681385464208],[114,301,77,0.02392300013075769],[114,301,78,0.028246959523540897],[114,301,79,0.0325780361947022],[114,302,64,-0.028399443931571542],[114,302,65,-0.02418522479777725],[114,302,66,-0.019956187951097763],[114,302,67,-0.015713087336178135],[114,302,68,-0.01145667440192891],[114,302,69,-0.0071876969008945295],[114,302,70,-0.0029068976650545005],[114,302,71,0.0013849866417992313],[114,302,72,0.005687226795157093],[114,302,73,0.009999102304211792],[114,302,74,0.014319902729970807],[114,302,75,0.01864892902657178],[114,302,76,0.02298549490616741],[114,302,77,0.027328928227234563],[114,302,78,0.03167857240632999],[114,302,79,0.036033787853318996],[114,303,64,-0.025551084518657056],[114,303,65,-0.021291175720625038],[114,303,66,-0.017017991422162784],[114,303,67,-0.012732297135258674],[114,303,68,-0.008434853936956819],[114,303,69,-0.004126417208308505],[114,303,70,1.9226465083882743E-4],[114,303,71,0.004520451531067745],[114,303,72,0.008857412946682517],[114,303,73,0.013202429392917518],[114,303,74,0.017554793727432995],[114,303,75,0.021913812575604222],[114,303,76,0.026278807759974366],[114,303,77,0.030649117753723032],[114,303,78,0.035024099158175476],[114,303,79,0.03940312820437647],[114,304,64,-0.022783563272090593],[114,304,65,-0.018478656717169608],[114,304,66,-0.014161990273085873],[114,304,67,-0.00983434111188078],[114,304,68,-0.0054964800577535],[114,304,69,-0.001149170266035119],[114,304,70,0.0032068341225921955],[114,304,71,0.007570789352484904],[114,304,72,0.01194196344808466],[114,304,73,0.016319637633473404],[114,304,74,0.02070310777680995],[114,304,75,0.025091685859150305],[114,304,76,0.02948470146802532],[114,304,77,0.03388150331562553],[114,304,78,0.03828146078161941],[114,304,79,0.04268396548062885],[114,305,64,-0.02009862580018162],[114,305,65,-0.01574943778868319],[114,305,66,-0.011389978044671834],[114,305,67,-0.00702103548925672],[114,305,68,-0.002643390810125757],[114,305,69,0.0017421849189890037],[114,305,70,0.006134931644194125],[114,305,71,0.010534101762517567],[114,305,72,0.014938961578240414],[114,305,73,0.0193487927843278],[114,305,74,0.023762893969334987],[114,305,75,0.02818058214928685],[114,305,76,0.0326011943249076],[114,305,77,0.03702408906404888],[114,305,78,0.041448648109343275],[114,305,79,0.04587427801110665],[114,306,64,-0.017497952643946622],[114,306,65,-0.013105223309547331],[114,306,66,-0.008703682112727165],[114,306,67,-0.004294129808910495],[114,306,68,1.2264293717403202E-4],[114,306,69,0.004545856991041382],[114,306,70,0.008974746213937602],[114,306,71,0.01340855895411859],[114,306,72,0.017846559563968467],[114,306,73,0.0222880299428072],[114,306,74,0.026732271105766106],[114,306,75,0.03117860477822558],[114,306,76,0.03562637501619513],[114,306,77,0.040074949852482084],[114,306,78,0.04452372296867716],[114,306,79,0.04897211539297879],[114,307,64,-0.014983158323522663],[114,307,65,-0.01054765105980622],[114,307,66,-0.006104762707235756],[114,307,67,-0.0016553059369599846],[114,307,68,0.002799918498574222],[114,307,69,0.007260123263659907],[114,307,70,0.011724535963898816],[114,307,71,0.016192400697150097],[114,307,72,0.020662979630910024],[114,307,73,0.02513555460596878],[114,307,74,0.029609428766726606],[114,307,75,0.03408392821766096],[114,307,76,0.038558403706325836],[114,307,77,0.04303223233273],[114,307,78,0.04750481928512093],[114,307,79,0.0519755996021988],[114,308,64,-0.012555790440751516],[114,308,65,-0.00807829131436158],[114,308,66,-0.0035948119886280924],[114,308,67,8.9382287207318E-4],[114,308,68,0.005386802319864728],[114,308,69,0.00988333067934588],[114,308,70,0.014382629130691577],[114,308,71,0.0188839373197197],[114,308,72,0.02338651499497739],[114,308,73,0.027889643671692485],[114,308,74,0.03239262832297439],[114,308,75,0.03689479909775249],[114,308,76,0.041395513065836345],[114,308,77,0.04589415598994266],[114,308,78,0.05039014412471682],[114,308,79,0.05488292604277266],[114,309,64,-0.010217328837865858],[114,309,65,-0.005698645988738746],[114,309,66,-0.0011753531810729384],[114,309,67,0.0033517128539982954],[114,309,68,0.007881730868508144],[114,309,69,0.012413896710999461],[114,309,70,0.016947424967575966],[114,309,71,0.021481550630509133],[114,309,72,0.026015530794449987],[114,309,73,0.0305486463800939],[114,309,74,0.035080203885681865],[114,309,75,0.039609537165824465],[114,309,76,0.04413600923803683],[114,309,77,0.04865901411682544],[114,309,78,0.053177978675357465],[114,309,79,0.057692364534734586],[114,310,64,-0.007969184812215868],[114,310,65,-0.0034101478413613717],[114,310,66,0.0011521602372722012],[114,310,67,0.005716890556299134],[114,310,68,0.010283211466145262],[114,310,69,0.014850310205153872],[114,310,70,0.019417394597985804],[114,310,71,0.023983694782159948],[114,310,72,0.028548464962784653],[114,310,73,0.03311098519532467],[114,310,74,0.037670563196793516],[114,310,75,0.042226536184850755],[114,310,76,0.04677827274519551],[114,310,77,0.05132517472709855],[114,310,78,0.05586667916710057],[114,310,79,0.06040226024090058],[114,311,64,-0.0058127003871640825],[114,311,65,-0.001214159732464859],[114,311,66,0.003386345286919751],[114,311,67,0.007987953601952785],[114,311,68,0.012589823063159741],[114,311,69,0.0171911321668701],[114,311,70,0.02179108181033669],[114,311,71,0.026388897075578746],[114,311,72,0.030983829041998867],[114,311,73,0.035575156627617635],[114,311,74,0.040162188459318876],[114,311,75,0.04474426477158043],[114,311,76,0.04932075933408625],[114,311,77,0.0538910814080585],[114,311,78,0.05845467773133997],[114,311,79,0.06301103453224959],[114,312,64,-0.00374914763907791],[114,312,65,8.880260604229862E-4],[114,312,66,0.005525890182692256],[114,312,67,0.010163571395796725],[114,312,68,0.014800216955376103],[114,312,69,0.01943499648636779],[114,312,70,0.024067103794190983],[114,312,71,0.02869575870523522],[114,312,72,0.0333202089367038],[114,312,73,0.03793973199565501],[114,312,74,0.042553637107636044],[114,312,75,0.04716126717438224],[114,312,76,0.051762000760978394],[114,312,77,0.05635525411232156],[114,312,78,0.0609404831989149],[114,312,79,0.06551718579201452],[114,313,64,-0.0017797280803739796],[114,313,65,0.0028951884704819797],[114,313,66,0.007569554972393047],[114,313,67,0.01224248577349403],[114,313,68,0.016913117442941397],[114,313,69,0.021580610607443554],[114,313,70,0.026244151817831227],[114,313,71,0.030902955445509195],[114,313,72,0.03555626560884195],[114,313,73,0.040203358129314526],[114,313,74,0.044843542517865986],[114,313,75,0.04947616399086491],[114,313,76,0.05410060551612644],[114,313,77,0.058716289888807977],[114,313,78,0.06332268183721554],[114,313,79,0.06791929015854106],[114,314,64,9.442790127513201E-5],[114,314,65,0.004806178212965612],[114,314,66,0.00951617211839069],[114,314,67,0.014223511592978993],[114,314,68,0.018927322431270877],[114,314,69,0.02362675613755494],[114,314,70,0.028320991847118837],[114,314,71,0.03300923827795946],[114,314,72,0.037690735713000995],[114,314,73,0.04236475801266368],[114,314,74,0.04703061465818248],[114,314,75,0.05168765282514126],[114,314,76,0.05633525948762569],[114,314,77,0.0609728635528298],[114,314,78,0.06559993802614847],[114,314,79,0.07021600220677734],[114,315,64,0.0018722615476644],[114,315,65,0.006619918300029309],[114,315,66,0.01136464702221518],[114,315,67,0.016105537268480574],[114,315,68,0.0208417039741583],[114,315,69,0.02557228939967196],[114,315,70,0.030296465105741494],[114,315,71,0.03501343395962003],[114,315,72,0.03972243217241159],[114,315,73,0.044422731367311424],[114,315,74,0.049113640679170456],[114,315,75,0.05379450888484641],[114,315,76,0.05846472656474683],[114,315,77,0.06312372829539886],[114,315,78,0.06777099487307683],[114,315,79,0.07240605556851082],[114,316,64,0.0035527861786456283],[114,316,65,0.008335404498954951],[114,316,66,0.013113958492098066],[114,316,67,0.017887525247057834],[114,316,68,0.02265520875898036],[114,316,69,0.02741614192582592],[114,316,70,0.03216948857677773],[114,316,71,0.03691444553225118],[114,316,72,0.04165024469555481],[114,316,73,0.04637615517604157],[114,316,74,0.051091485444155676],[114,316,75,0.05579558551783401],[114,316,76,0.06048784918066996],[114,316,77,0.06516771623167264],[114,316,78,0.06983467476665486],[114,316,79,0.07448826349126964],[114,317,64,0.005135087584664438],[114,317,65,0.009951705733853261],[114,317,66,0.01476315915354165],[114,317,67,0.019568512427730195],[114,317,68,0.024366858534083657],[114,317,69,0.029157320892443633],[114,317,70,0.03393905544566797],[114,317,71,0.03871125277263604],[114,317,72,0.04347314023347146],[114,317,73,0.04822398414682183],[114,317,74,0.052963091999600004],[114,317,75,0.057689814688645924],[114,317,76,0.06240354879471688],[114,317,77,0.0671037388886398],[114,317,78,0.07178987986965771],[114,317,79,0.07646151933599166],[114,318,64,0.0066183243631448285],[114,318,65,0.011467964430745742],[114,318,66,0.016311375802813277],[114,318,67,0.02114761052310135],[114,318,68,0.02597575047824824],[114,318,69,0.03079490949736005],[114,318,70,0.03560423548448449],[114,318,71,0.040402912583812844],[114,318,72,0.04519016337766216],[114,318,73,0.04996525111707553],[114,318,74,0.05472748198544902],[114,318,75,0.059476207394639324],[114,318,76,0.06421082631396363],[114,318,77,0.0689307876319232],[114,318,78,0.07363559255068455],[114,318,79,0.07832479701333792],[114,319,64,0.008001728198777647],[114,319,65,0.012883396806079056],[114,319,66,0.017757809703423555],[114,319,67,0.02262400636353143],[114,319,68,0.027481057512284607],[114,319,69,0.03232806727856749],[114,319,70,0.03716417537755751],[114,319,71,0.04198855932730258],[114,319,72,0.04680043669863748],[114,319,73,0.051599067398276494],[114,319,74,0.05638375598549278],[114,319,75,0.061153854021834986],[114,319,76,0.06590876245429694],[114,319,77,0.0706479340317683],[114,319,78,0.075370875754802],[114,319,79,0.08007715135871779],[115,-64,64,-0.09653277137071947],[115,-64,65,-0.10011125229896989],[115,-64,66,-0.10358194379032415],[115,-64,67,-0.10694340574173422],[115,-64,68,-0.11019434901295089],[115,-64,69,-0.11333364094980969],[115,-64,70,-0.11636031097030397],[115,-64,71,-0.11927355621335756],[115,-64,72,-0.12207274725030604],[115,-64,73,-0.12475743385900528],[115,-64,74,-0.1273273508608047],[115,-64,75,-0.1297824240200548],[115,-64,76,-0.1321227760064122],[115,-64,77,-0.13434873241981582],[115,-64,78,-0.1364608278781816],[115,-64,79,-0.13845981216779712],[115,-63,64,-0.0909347632399482],[115,-63,65,-0.09450212564934068],[115,-63,66,-0.09796230416095197],[115,-63,67,-0.10131385545054039],[115,-63,68,-0.10455548658484037],[115,-63,69,-0.10768606053710972],[115,-63,70,-0.11070460176549424],[115,-63,71,-0.11361030185411747],[115,-63,72,-0.11640252521691041],[115,-63,73,-0.1190808148640985],[115,-63,74,-0.12164489823157654],[115,-63,75,-0.12409469307285337],[115,-63,76,-0.12643031341381927],[115,-63,77,-0.1286520755702132],[115,-63,78,-0.13076050422783836],[115,-63,79,-0.1327563385855064],[115,-62,64,-0.0852579398019987],[115,-62,65,-0.0888134428519185],[115,-62,66,-0.09226239333591657],[115,-62,67,-0.09560334462158837],[115,-62,68,-0.09883499987009947],[115,-62,69,-0.10195621754356143],[115,-62,70,-0.10496601697525243],[115,-62,71,-0.10786358400259244],[115,-62,72,-0.11064827666288757],[115,-62,73,-0.11331963095175523],[115,-62,74,-0.11587736664447301],[115,-62,75,-0.11832139317991897],[115,-62,76,-0.12065181560736726],[115,-62,77,-0.1228689405960085],[115,-62,78,-0.12497328250725015],[115,-62,79,-0.12696556952977267],[115,-61,64,-0.07950658714146619],[115,-61,65,-0.08304949692864971],[115,-61,66,-0.08648651095066906],[115,-61,67,-0.08981617918152451],[115,-61,68,-0.09303720076610689],[115,-61,69,-0.09614842951897373],[115,-61,70,-0.09914887948599815],[115,-61,71,-0.10203773056879839],[115,-61,72,-0.10481433421196606],[115,-61,73,-0.10747821915300282],[115,-61,74,-0.11002909723520782],[115,-61,75,-0.11246686928318494],[115,-61,76,-0.11479163104123336],[115,-61,77,-0.11700367917449028],[115,-61,78,-0.11910351733288338],[115,-61,79,-0.12109186227786228],[115,-60,64,-0.07368503587739073],[115,-60,65,-0.07721462591826689],[115,-60,66,-0.08063900212315278],[115,-60,67,-0.08395671098861235],[115,-60,68,-0.08716644753447511],[115,-60,69,-0.09026706079358737],[115,-60,70,-0.09325755936446511],[115,-60,71,-0.0961371170267552],[115,-60,72,-0.09890507841952001],[115,-60,73,-0.10156096478226118],[115,-60,74,-0.10410447975891923],[115,-60,75,-0.10653551526452132],[115,-60,76,-0.10885415741473914],[115,-60,77,-0.11106069251822737],[115,-60,78,-0.11315561313179745],[115,-60,79,-0.11513962417839974],[115,-59,64,-0.06779765628179124],[115,-59,65,-0.07131320798556406],[115,-59,66,-0.07472425255423276],[115,-59,67,-0.07802933292472869],[115,-59,68,-0.0812271398850204],[115,-59,69,-0.08431651755442204],[115,-59,70,-0.08729646892683118],[115,-59,71,-0.09016616147679934],[115,-59,72,-0.0929249328284566],[115,-59,73,-0.09557229648719978],[115,-59,74,-0.09810794763438224],[115,-59,75,-0.10053176898468319],[115,-59,76,-0.10284383670640829],[115,-59,77,-0.10504442640460265],[115,-59,78,-0.10713401916702248],[115,-59,79,-0.10911330767294403],[115,-58,64,-0.06184885327396772],[115,-58,65,-0.06534965640598445],[115,-58,66,-0.06874668350299729],[115,-58,67,-0.07203847386180628],[115,-58,68,-0.07522371393377458],[115,-58,69,-0.07830124279528305],[115,-58,70,-0.08127005768113604],[115,-58,71,-0.08412931958083159],[115,-58,72,-0.08687835889770645],[115,-58,73,-0.0895166811708763],[115,-58,74,-0.09204397286019983],[115,-58,75,-0.09446010719395104],[115,-58,76,-0.0967651500794483],[115,-58,77,-0.09895936607652334],[115,-58,78,-0.10104322443387304],[115,-58,79,-0.10301740518827751],[115,-57,64,-0.055843061290885676],[115,-57,65,-0.05932841442583159],[115,-57,66,-0.06271074663724696],[115,-57,67,-0.06598859350304631],[115,-57,68,-0.06916063703536413],[115,-57,69,-0.07222571114074428],[115,-57,70,-0.07518280714331049],[115,-57,71,-0.07803107937082232],[115,-57,72,-0.0807698508036353],[115,-57,73,-0.08339861878648103],[115,-57,74,-0.08591706080329675],[115,-57,75,-0.08832504031478916],[115,-57,76,-0.09062261265898153],[115,-57,77,-0.09281003101462493],[115,-57,78,-0.09488775242752057],[115,-57,79,-0.09685644389973191],[115,-56,64,-0.049784739033497005],[115,-56,65,-0.05325394999796307],[115,-56,66,-0.0566209187590242],[115,-56,67,-0.05988417709874927],[115,-56,68,-0.06304240248960158],[115,-56,69,-0.066094423543963],[115,-56,70,-0.06903922552666375],[115,-56,71,-0.07187595593042517],[115,-56,72,-0.07460393011422917],[115,-56,73,-0.07722263700453424],[115,-56,74,-0.07973174485956758],[115,-56,75,-0.08213110709637383],[115,-56,76,-0.08442076818087552],[115,-56,77,-0.08660096958082186],[115,-56,78,-0.08867215578167242],[115,-56,79,-0.0906349803653983],[115,-55,64,-0.04367836408884207],[115,-55,65,-0.047130750392806564],[115,-55,66,-0.05048169640502864],[115,-55,67,-0.05372973003660919],[115,-55,68,-0.056873524122139196],[115,-55,69,-0.05991190185816364],[115,-55,70,-0.06284384230467466],[115,-55,71,-0.06566848594954156],[115,-55,72,-0.06838514033589538],[115,-55,73,-0.07099328575238273],[115,-55,74,-0.07349258098651945],[115,-55,75,-0.07588286914082898],[115,-55,76,-0.07816418351201437],[115,-55,77,-0.08033675353304448],[115,-55,78,-0.08240101077820072],[115,-55,79,-0.08435759503106566],[115,-54,64,-0.0375284274282357],[115,-54,65,-0.04096331668500608],[115,-54,66,-0.04429759032222258],[115,-54,67,-0.04752977230677724],[115,-54,68,-0.050658530739486896],[115,-54,69,-0.05368268328210557],[115,-54,70,-0.056601202647393545],[115,-54,71,-0.0594132221521434],[115,-54,72,-0.0621180413331881],[115,-54,73,-0.06471513162630083],[115,-54,74,-0.06720414210822023],[115,-54,75,-0.06958490530148354],[115,-54,76,-0.07185744304231878],[115,-54,77,-0.0740219724114739],[115,-54,78,-0.07607891172803316],[115,-54,79,-0.07802888660619622],[115,-53,64,-0.03133942778139298],[115,-53,65,-0.034756158115548],[115,-53,66,-0.03807311981847816],[115,-53,67,-0.041288832841547385],[115,-53,68,-0.0444019604582474],[115,-53,69,-0.04741131467937898],[115,-53,70,-0.050315861731307754],[115,-53,71,-0.0531147275972087],[115,-53,72,-0.05580720362130853],[115,-53,73,-0.05839275217605011],[115,-53,74,-0.060871012392401336],[115,-53,75,-0.06324180595299811],[115,-53,76,-0.06550514294837007],[115,-53,77,-0.06766122779612604],[115,-53,78,-0.06971046522315139],[115,-53,79,-0.07165346631079084],[115,-52,64,-0.02511586588632897],[115,-52,65,-0.028513786329208313],[115,-52,66,-0.03181280698810596],[115,-52,67,-0.03501144372949894],[115,-52,68,-0.038108354908407915],[115,-52,69,-0.04110234677136848],[115,-52,70,-0.04399237892250274],[115,-52,71,-0.046777569852598955],[115,-52,72,-0.04945720253121577],[115,-52,73,-0.052030730061729646],[115,-52,74,-0.05449778139955064],[115,-52,75,-0.05685816713319547],[115,-52,76,-0.059111885328466784],[115,-52,77,-0.0612591274356149],[115,-52,78,-0.06330028425953449],[115,-52,79,-0.06523595199297161],[115,-51,64,-0.018862238615348303],[115,-51,65,-0.022240709487629906],[115,-51,66,-0.02552117081257599],[115,-51,67,-0.02870213430441393],[115,-51,68,-0.03178225331099771],[115,-51,69,-0.03476032820420227],[115,-51,70,-0.037635311833439156],[115,-51,71,-0.0404063150422026],[115,-51,72,-0.043072612247665565],[115,-51,73,-0.04563364708323692],[115,-51,74,-0.04808903810431464],[115,-51,75,-0.05043858455691608],[115,-51,76,-0.05268227220943722],[115,-51,77,-0.05482027924741817],[115,-51,78,-0.05685298223136648],[115,-51,79,-0.05878096211761141],[115,-50,64,-0.012583032976974606],[115,-50,65,-0.015941426257885194],[115,-50,66,-0.019202721136284406],[115,-50,67,-0.022365425108815784],[115,-50,68,-0.02542818642996869],[115,-50,69,-0.028389799489532463],[115,-50,70,-0.03124921025319416],[115,-50,71,-0.034005521766190094],[115,-50,72,-0.03665799972002648],[115,-50,73,-0.03920607808218757],[115,-50,74,-0.04164936478905745],[115,-50,75,-0.04398764750174422],[115,-50,76,-0.04622089942505425],[115,-50,77,-0.048349285189495106],[115,-50,78,-0.05037316679635706],[115,-50,79,-0.05229310962584943],[115,-49,64,-0.006282719993646935],[115,-49,65,-0.009620419676349301],[115,-49,66,-0.012861952517191688],[115,-49,67,-0.016005821731960745],[115,-49,68,-0.019050670398120584],[115,-49,69,-0.021995286818975446],[115,-49,70,-0.02483860995099274],[115,-49,71,-0.02757973489420462],[115,-49,72,-0.030217918445698766],[115,-49,73,-0.032752584716119304],[115,-49,74,-0.0351833308094015],[115,-49,75,-0.03750993256543178],[115,-49,76,-0.03973235036587863],[115,-49,77,-0.041850735003074346],[115,-49,78,-0.043865433611995575],[115,-49,79,-0.045776995665322895],[115,-48,64,3.4251544483443475E-5],[115,-48,65,-0.00328215088821604],[115,-48,66,-0.0065033379526659996],[115,-48,67,-0.009627808522610248],[115,-48,68,-0.01265420041740628],[115,-48,69,-0.015581295752546742],[115,-48,70,-0.01840802635336314],[115,-48,71,-0.021133479231828733],[115,-48,72,-0.023756902126470636],[115,-48,73,-0.026277709105315683],[115,-48,74,-0.028695486232087952],[115,-48,75,-0.03100999729535514],[115,-48,76,-0.033221189600865175],[115,-48,77,-0.03532919982695548],[115,-48,78,-0.037334359943082096],[115,-48,79,-0.03923720319144841],[115,-47,64,0.0063634614498261355],[115,-47,65,0.003068947237512165],[115,-47,66,-1.3132248035963023E-4],[115,-47,67,-0.003235842176419035],[115,-47,68,-0.006243244333447362],[115,-47,69,-0.009152304780919218],[115,-47,70,-0.011961948094748931],[115,-47,71,-0.014671253060152711],[115,-47,72,-0.01727945819764376],[115,-47,73,-0.01978596735208038],[115,-47,74,-0.022190355344985258],[115,-47,75,-0.024492373689835922],[115,-47,76,-0.02669195637056465],[115,-47,77,-0.02878922568315212],[115,-47,78,-0.030784498140360328],[115,-47,79,-0.03267829043958681],[115,-46,64,0.012700524631850008],[115,-46,65,0.009428476617715398],[115,-46,66,0.00624968334603182],[115,-46,67,0.0031656548022190867],[115,-46,68,1.7776391589663376E-4],[115,-46,69,-0.002712758761348244],[115,-46,70,-0.005504830441416364],[115,-46,71,-0.008197521548288123],[115,-46,72,-0.010790061229768],[115,-46,73,-0.013281842932301835],[115,-46,74,-0.015672430039085583],[115,-46,75,-0.017961561571163687],[115,-46,76,-0.020149157951758978],[115,-46,77,-0.022235326833713986],[115,-46,78,-0.0242203689900935],[115,-46,79,-0.026104784267926617],[115,-45,64,0.019041097715487898],[115,-45,65,0.01579208058921122],[115,-45,66,0.012635310105815645],[115,-45,67,0.009572300763549757],[115,-45,68,0.006604430977584896],[115,-45,69,0.0037329377724156787],[115,-45,70,9.589114110182262E-4],[115,-45,71,-0.0017167100391475287],[115,-45,72,-0.00429314620330723],[115,-45,73,-0.0067697799596330155],[115,-45,74,-0.009146163062816015],[115,-45,75,-0.011422021830648665],[115,-45,76,-0.0135972628938551],[115,-45,77,-0.01567197900905548],[115,-45,78,-0.01764645493490835],[115,-45,79,-0.01952117337141379],[115,-44,64,0.025380885783605422],[115,-44,65,0.02215545066732938],[115,-44,66,0.0190212362853045],[115,-44,67,0.015979761701214845],[115,-44,68,0.01303241088623619],[115,-44,69,0.010180427426384031],[115,-44,70,0.007424909166599991],[115,-44,71,0.004766802791664415],[115,-44,72,0.0022068983439184064],[115,-44,73,-2.5417632212576535E-4],[115,-44,74,-0.002615961148502821],[115,-44,75,-0.004878169545541655],[115,-44,76,-0.0070406941268803536],[115,-44,77,-0.009103612507632253],[115,-44,78,-0.011067193165750333],[115,-44,79,-0.012931901366569853],[115,-43,64,0.031715649243699406],[115,-43,65,0.028514333429172645],[115,-43,66,0.025403195176946225],[115,-43,67,0.022383758166558354],[115,-43,68,0.01945741199292217],[115,-43,69,0.01662540688892622],[115,-43,70,0.013888848384756236],[115,-43,71,0.011248691904024],[115,-43,72,0.008705737296689109],[115,-43,73,0.0062606233088481344],[115,-43,74,0.003913821989181221],[115,-43,75,0.0016656330323474577],[115,-43,76,-4.8382194090346164E-4],[115,-43,77,-0.0025346051667896052],[115,-43,78,-0.0044869685847716],[115,-43,79,-0.006341359747022768],[115,-42,64,0.03804121081849854],[115,-42,65,0.03486453752123819],[115,-42,66,0.03177698190324996],[115,-42,67,0.028780072308148386],[115,-42,68,0.025875204019579878],[115,-42,69,0.023063633999372724],[115,-42,70,0.02034647556239233],[115,-42,71,0.01772469298818613],[115,-42,72,0.015199096069401619],[115,-42,73,0.01277033459705701],[115,-42,74,0.010438892782450027],[115,-42,75,0.008205083615998032],[115,-42,76,0.006069043162777121],[115,-42,77,0.0040307247948738745],[115,-42,78,0.0020898933605025816],[115,-42,79,2.461192899093634E-4],[115,-41,64,0.04435346266063511],[115,-41,65,0.041201940791562475],[115,-41,66,0.038138460565677934],[115,-41,67,0.03516455503668847],[115,-41,68,0.032281625239217515],[115,-41,69,0.02949093494279509],[115,-41,70,0.026793605342534166],[115,-41,71,0.02419060968658071],[115,-41,72,0.021682767840320416],[115,-41,73,0.019270740787420193],[115,-41,74,0.016955025067490914],[115,-41,75,0.014735947150664508],[115,-41,76,0.01261365774885348],[115,-41,77,0.010588126063805658],[115,-41,78,0.008659133971906763],[115,-41,79,0.006826270145754543],[115,-40,64,0.05064837359153529],[115,-40,65,0.04752249754654614],[115,-40,66,0.04448357151865401],[115,-40,67,0.04153313331546382],[115,-40,68,0.03867258978206034],[115,-40,69,0.035903211571115534],[115,-40,70,0.033226127849668496],[115,-40,71,0.030642320942661172],[115,-40,72,0.02815262091321491],[115,-40,73,0.025757700079724333],[115,-40,74,0.023458067469558253],[115,-40,75,0.02125406320965606],[115,-40,76,0.019145852853791334],[115,-40,77,0.01713342164661391],[115,-40,78,0.015216568724423785],[115,-40,79,0.013394901252700153],[115,-39,64,0.056921996464224356],[115,-39,65,0.05382224593214724],[115,-39,66,0.050808338768379535],[115,-39,67,0.0478818175760195],[115,-39,68,0.04504409506732954],[115,-39,69,0.04229644885023365],[115,-39,70,0.03964001615147117],[115,-39,71,0.03707578847649062],[115,-39,72,0.034604606206068755],[115,-39,73,0.032227153129730346],[115,-39,74,0.029943950915759854],[115,-39,75,0.027755353518092662],[115,-39,76,0.025661541519857223],[115,-39,77,0.023662516413680224],[115,-39,78,0.021758094818707496],[115,-39,79,0.019947902634363857],[115,-38,64,0.0631704756501914],[115,-38,65,0.06009731543958974],[115,-38,66,0.05710887749660454],[115,-38,67,0.054206709259211894],[115,-38,68,0.05139222936080068],[115,-38,69,0.04866672243331971],[115,-38,70,0.046031333847069256],[115,-38,71,0.043487064387214724],[115,-38,72,0.04103476486701274],[115,-38,73,0.03867513067782069],[115,-38,74,0.036408696275684216],[115,-38,75,0.034235829604788215],[115,-38,76,0.03215672645754375],[115,-38,77,0.03017140477142255],[115,-38,78,0.028279698862492153],[115,-38,79,0.02648125359567477],[115,-37,64,0.0693900546504822],[115,-37,65,0.06634393453576015],[115,-37,66,0.063381401709524],[115,-37,67,0.0605040084818097],[115,-37,68,0.057713179458314556],[115,-37,69,0.055010206360447955],[115,-37,70,0.05239624278201327],[115,-37,71,0.04987229888259681],[115,-37,72,0.04743923601765365],[115,-37,73,0.045097761305362805],[115,-37,74,0.042848422130046804],[115,-37,75,0.040691600582437815],[115,-37,76,0.03862750783656699],[115,-37,77,0.03665617846338454],[115,-37,78,0.03477746468106857],[115,-37,79,0.032991030542040334],[115,-36,64,0.07557708383068173],[115,-36,65,0.07255843841794729],[115,-36,66,0.06962223201145834],[115,-36,67,0.06677002182829783],[115,-36,68,0.06400323849489375],[115,-36,69,0.06132318088421984],[115,-36,70,0.05873101088960908],[115,-36,71,0.05622774813526399],[115,-36,72,0.05381426462344896],[115,-36,73,0.05149127931843556],[115,-36,74,0.04925935266700043],[115,-36,75,0.04711888105575468],[115,-36,76,0.04507009120508254],[115,-36,77,0.04311303449979653],[115,-36,78,0.041247581256467214],[115,-36,79,0.03947341492744538],[115,-35,64,0.08172802828006731],[115,-35,65,0.07873727689320886],[115,-35,66,0.07582780350359797],[115,-35,67,0.07300117026816777],[115,-35,68,0.07025881387975252],[115,-35,69,0.0676020404216684],[115,-35,70,0.06503202015889775],[115,-35,71,0.06254978226595509],[115,-35,72,0.060156209491419865],[115,-35,73,0.0578520327592118],[115,-35,74,0.055637825706402966],[115,-35,75,0.05351399915784871],[115,-35,76,0.05148079553741358],[115,-35,77,0.04953828321590148],[115,-35,78,0.047686350795645316],[115,-35,79,0.04592470133177584],[115,-34,64,0.0878394757947244],[115,-34,65,0.08487702238216077],[115,-34,66,0.08199467380760916],[115,-34,67,0.0791939971984913],[115,-34,68,0.07647643535698845],[115,-34,69,0.07384330163223074],[115,-34,70,0.071295774729076],[115,-34,71,0.06883489345355764],[115,-34,72,0.06646155139498677],[115,-34,73,0.06417649154478267],[115,-34,74,0.061980300851829595],[115,-34,75,0.059873404714635536],[115,-34,76,0.057856061410077264],[115,-34,77,0.05592835645883221],[115,-34,78,0.054090196927460976],[115,-34,79,0.05234130566715378],[115,-33,64,0.09390814498490019],[115,-33,65,0.09097437804745645],[115,-33,66,0.08811953121437077],[115,-33,67,0.08534517661204422],[115,-33,68,0.08265276319223402],[115,-33,69,0.08004361162206675],[115,-33,70,0.07751890911062875],[115,-33,71,0.07507970417221288],[115,-33,72,0.0727269013262084],[115,-33,73,0.07046125573370388],[115,-33,74,0.0682833677706074],[115,-33,75,0.06619367753755434],[115,-33,76,0.06419245930638884],[115,-33,77,0.06227981590332099],[115,-33,78,0.06045567302872101],[115,-33,79,0.05871977351356483],[115,-32,64,0.09993089350626938],[115,-32,65,0.09702618604663737],[115,-32,66,0.09419920295751893],[115,-32,67,0.09145152139066137],[115,-32,68,0.08878459648493897],[115,-32,69,0.08619975627439447],[115,-32,70,0.08369819653284982],[115,-32,71,0.08128097555515934],[115,-32,72,0.07894900887509504],[115,-32,73,0.07670306391993265],[115,-32,74,0.0745437546015435],[115,-32,75,0.07247153584426169],[115,-32,76,0.07048669804931285],[115,-32,77,0.068589361495908],[115,-32,78,0.06677947067896006],[115,-32,79,0.06505678858344366],[115,-31,64,0.10590472641526505],[115,-31,65,0.10302943590950475],[115,-31,66,0.10023066361195199],[115,-31,67,0.09750999172397257],[115,-31,68,0.09486888160643858],[115,-31,69,0.09230866870599808],[115,-31,70,0.08983055741790258],[115,-31,71,0.08743561588546667],[115,-31,72,0.08512477073614633],[115,-31,73,0.08289880175430964],[115,-31,74,0.0807583364904988],[115,-31,75,0.07870384480745873],[115,-31,76,0.0767356333627145],[115,-31,77,0.07485384002780293],[115,-31,78,0.0730584282441159],[115,-31,79,0.07134918131537415],[115,-30,64,0.1118268046486326],[115,-30,65,0.10898127304017013],[115,-30,66,0.10621104361745526],[115,-30,67,0.10351770365367863],[115,-30,68,0.10090272076396667],[115,-30,69,0.09836743785006719],[115,-30,70,0.09591306798158328],[115,-30,71,0.09354068921382674],[115,-30,72,0.09125123934228263],[115,-30,73,0.08904551059375099],[115,-30,74,0.0869241442539741],[115,-30,75,0.0848876252320152],[115,-30,76,0.08293627656117841],[115,-30,77,0.08107025383656974],[115,-30,78,0.07928953958926044],[115,-30,79,0.07759393759707034],[115,-29,64,0.11769445362688968],[115,-29,65,0.11487900734346945],[115,-29,66,0.11213763792712506],[115,-29,67,0.1094719377430492],[115,-29,68,0.10688338069029313],[115,-29,69,0.10437331716504761],[115,-29,70,0.10194296896046207],[115,-29,71,0.09959342410307415],[115,-29,72,0.09732563162583807],[115,-29,73,0.09514039627782189],[115,-29,74,0.093038373170379],[115,-29,75,0.09102006236006166],[115,-29,76,0.08908580336806404],[115,-29,77,0.08723576963629798],[115,-29,78,0.08546996292005982],[115,-29,79,0.08378820761730632],[115,-28,64,0.1235051719818605],[115,-28,65,0.12072012197590654],[115,-28,66,0.11800791478076356],[115,-28,67,0.11537014787181232],[115,-28,68,0.11280830145915699],[115,-28,69,0.11032373346967184],[115,-28,70,0.10791767446557565],[115,-28,71,0.10559122249960773],[115,-28,72,0.10334533790679312],[115,-28,73,0.10118083803286582],[115,-28,74,0.09909839189915881],[115,-28,75,0.09709851480422393],[115,-28,76,0.09518156286197299],[115,-28,77,0.09334772747644171],[115,-28,78,0.09159702975313477],[115,-28,79,0.08992931484697098],[115,-27,64,0.12925664040842266],[115,-27,65,0.12650228222126725],[115,-27,66,0.12381952460338141],[115,-27,67,0.12120997015657242],[115,-27,68,0.11867510542663295],[115,-27,69,0.11621629590431237],[115,-27,70,0.11383478096280997],[115,-27,71,0.1115316687318576],[115,-27,72,0.10930793090838542],[115,-27,73,0.10716439750383289],[115,-27,74,0.10510175152792145],[115,-27,75,0.10312052360914459],[115,-27,76,0.10122108655177209],[115,-27,77,0.09940364982946592],[115,-27,78,0.09766825401547097],[115,-27,79,0.09601476514939367],[115,-26,64,0.1349467306401695],[115,-26,65,0.13222334449060502],[115,-26,66,0.12957030902851174],[115,-26,67,0.1269892319964624],[115,-26,68,0.12448160629813354],[115,-26,69,0.12204880501835558],[115,-26,70,0.11969207637967338],[115,-26,71,0.11741253863549284],[115,-26,72,0.11521117489979649],[115,-26,73,0.11308882791349972],[115,-26,74,0.11104619474725774],[115,-26,75,0.10908382144098228],[115,-26,76,0.10720209757986332],[115,-26,77,0.10540125080699492],[115,-26,78,0.10368134127256523],[115,-26,79,0.1020422560196278],[115,-25,64,0.14057351454914202],[115,-25,65,0.13788136544675123],[115,-25,66,0.13525831004648692],[115,-25,67,0.13270596124417744],[115,-25,68,0.1302258183211995],[115,-25,69,0.12781926198374816],[115,-25,70,0.12548754933861173],[115,-25,71,0.12323180880552231],[115,-25,72,0.12105303496606845],[115,-25,73,0.11895208334923946],[115,-25,74,0.11692966515341374],[115,-25,75,0.11498634190504753],[115,-25,76,0.11312252005386014],[115,-25,77,0.11133844550461702],[115,-25,78,0.10963419808546704],[115,-25,79,0.10800968595285387],[115,-24,64,0.14613527336977128],[115,-24,65,0.1434746112534948],[115,-24,66,0.14088177927782475],[115,-24,67,0.13835839550254236],[115,-24,68,0.13590596560422463],[115,-24,69,0.13352587793486947],[115,-24,70,0.13121939851701803],[115,-24,71,0.1289876659754443],[115,-24,72,0.12683168640540166],[115,-24,73,0.12475232817749005],[115,-24,74,0.1227503166789633],[115,-24,75,0.12082622899172524],[115,-24,76,0.11898048850681875],[115,-24,77,0.11721335947550138],[115,-24,78,0.11552494149687031],[115,-24,79,0.11391516394205259],[115,-23,64,0.15163050704674164],[115,-23,65,0.14900156694913735],[115,-23,66,0.14643918737142714],[115,-23,67,0.1439449915463099],[115,-23,68,0.14152049156081814],[115,-23,69,0.1391670834344232],[115,-23,70,0.1368860421336302],[115,-23,71,0.1346785165231349],[115,-23,72,0.13254552425352872],[115,-23,73,0.1304879465856178],[115,-23,74,0.12850652315117583],[115,-23,75,0.12660184665037788],[115,-23,76,0.12477435748571941],[115,-23,77,0.1230243383325158],[115,-23,78,0.1213519086459437],[115,-23,79,0.1197570191046402],[115,-22,64,0.1570579437069196],[115,-22,65,0.15446094594457083],[115,-22,66,0.15192923352774135],[115,-22,67,0.1494644348693449],[115,-22,68,0.1470680684799548],[115,-22,69,0.14474153806550438],[115,-22,70,0.1424861275614746],[115,-22,71,0.14030299610363328],[115,-22,72,0.13819317293531863],[115,-22,73,0.1361575522513282],[115,-22,74,0.13419688797823603],[115,-22,75,0.13231178849138425],[115,-22,76,0.13050271126835256],[115,-22,77,0.128769957479002],[115,-22,78,0.1271136665120539],[115,-22,79,0.1255338104382202],[115,-21,64,0.16241654925549764],[115,-21,65,0.15985169964602775],[115,-21,66,0.15735085514703318],[115,-21,67,0.15491564935734126],[115,-21,68,0.1525476072220614],[115,-21,69,0.15024814014999088],[115,-21,70,0.14801854106750167],[115,-21,71,0.14585997940897355],[115,-21,72,0.14377349604376422],[115,-21,73,0.14175999813977924],[115,-21,74,0.13982025396346454],[115,-21,75,0.13795488761646613],[115,-21,76,0.13616437370876244],[115,-21,77,0.13444903196836422],[115,-21,78,0.1328090217875436],[115,-21,79,0.13124433670560898],[115,-20,64,0.16770553709604985],[115,-20,65,0.16517302720219784],[115,-20,66,0.16270323760246397],[115,-20,67,0.1602978070857628],[115,-20,68,0.1579582670407329],[115,-20,69,0.15568603659294866],[115,-20,70,0.15348241767860604],[115,-20,71,0.15134859005475065],[115,-20,72,0.14928560624603737],[115,-20,73,0.1472943864280808],[115,-20,74,0.14537571324722853],[115,-20,75,0.14353022657698944],[115,-20,76,0.1417584182109337],[115,-20,77,0.14006062649215134],[115,-20,78,0.1384370308792373],[115,-20,79,0.13688764644881424],[115,-19,64,0.17292437797466564],[115,-19,65,0.17042438537588056],[115,-19,66,0.167985824138143],[115,-19,67,0.16561033824318205],[115,-19,68,0.16329946553024877],[115,-19,69,0.16105463285322486],[115,-19,70,0.15887715117420131],[115,-19,71,0.15676821059359447],[115,-19,72,0.15472887531678647],[115,-19,73,0.15276007855735463],[115,-19,74,0.15086261737671347],[115,-19,75,0.14903714746041175],[115,-19,76,0.14728417783089254],[115,-19,77,0.14560406549680838],[115,-19,78,0.14399701003885568],[115,-19,79,0.14246304813214383],[115,-18,64,0.17807280994828645],[115,-18,65,0.17560549854029672],[115,-18,66,0.17319832589227857],[115,-18,67,0.17085294118013916],[115,-18,68,0.16857088869901282],[115,-18,69,0.16635360304035052],[115,-18,70,0.16420240420547638],[115,-18,71,0.16211849265567657],[115,-18,72,0.16010294429880634],[115,-18,73,0.1581567054124826],[115,-18,74,0.15628058750368534],[115,-18,75,0.15447526210500606],[115,-18,76,0.15274125550735684],[115,-18,77,0.15107894342922967],[115,-18,78,0.14948854562246883],[115,-18,79,0.1479701204145747],[115,-17,64,0.18315084847695995],[115,-17,65,0.18071636879977437],[115,-17,66,0.1783407320451409],[115,-17,67,0.1760255925832327],[115,-17,68,0.17377250116863008],[115,-17,69,0.17158290013746724],[115,-17,70,0.1694581185410432],[115,-17,71,0.16739936721596083],[115,-17,72,0.16540773379078033],[115,-17,73,0.16348417762925038],[115,-17,74,0.16162952470994973],[115,-17,75,0.15984446244256556],[115,-17,76,0.1581295344206317],[115,-17,77,0.15648513511081064],[115,-17,78,0.1549115044786864],[115,-17,79,0.15340872255108218],[115,-16,64,0.18815879664018254],[115,-16,65,0.18575728623497878],[115,-16,66,0.18341332009200817],[115,-16,67,0.1811285577746159],[115,-16,68,0.178904556498792],[115,-16,69,0.17674276635044683],[115,-16,70,0.174644525439146],[115,-16,71,0.17261105498836793],[115,-16,72,0.17064345436227535],[115,-16,73,0.16874269602905734],[115,-16,74,0.16690962046067837],[115,-16,75,0.16514493096926286],[115,-16,76,0.1634491884799314],[115,-16,77,0.16182280624017975],[115,-16,78,0.16026604446576442],[115,-16,79,0.15877900492310693],[115,-15,64,0.19309725547741385],[115,-15,65,0.19072883927277207],[115,-15,66,0.18841666624118292],[115,-15,67,0.18616240113698324],[115,-15,68,0.18396760763805597],[115,-15,69,0.18183374358329474],[115,-15,70,0.1797621561465249],[115,-15,71,0.17775407694694578],[115,-15,72,0.17581061709607904],[115,-15,73,0.17393276218128872],[115,-15,74,0.17212136718570115],[115,-15,75,0.17037715134475828],[115,-15,76,0.16870069293921963],[115,-15,77,0.1670924240247017],[115,-15,78,0.1655526250977214],[115,-15,79,0.16408141969825574],[115,-14,64,0.19796713445255087],[115,-14,65,0.19563192518048755],[115,-14,66,0.1933516559368591],[115,-14,67,0.1911279966638315],[115,-14,68,0.18896251750030335],[115,-14,69,0.1868566840396143],[115,-14,70,0.1848118525237099],[115,-14,71,0.18282926497382113],[115,-14,72,0.18091004425765],[115,-14,73,0.17905518909312046],[115,-14,74,0.17726556898853008],[115,-14,75,0.17554191911932715],[115,-14,76,0.17388483514133657],[115,-14,77,0.17229476794051957],[115,-14,78,0.17077201831923217],[115,-14,79,0.16931673161899985],[115,-13,64,0.2027696620424525],[115,-13,65,0.2004677606847115],[115,-13,66,0.198219494506937],[115,-13,67,0.19602653863508712],[115,-13,68,0.19389046966696655],[115,-13,69,0.19181276095023092],[115,-13,70,0.18979477779684095],[115,-13,71,0.1878377726340319],[115,-13,72,0.18594288009178428],[115,-13,73,0.18411111202685682],[115,-13,74,0.1823433524832191],[115,-13,75,0.18064035258910538],[115,-13,76,0.17900272539051454],[115,-13,77,0.17743094062124065],[115,-13,78,0.17592531940940126],[115,-13,79,0.17448602892047604],[115,-12,64,0.20750639644966373],[115,-12,65,0.20523789271472215],[115,-12,66,0.20302171793593538],[115,-12,67,0.20085955241825282],[115,-12,68,0.1987529792151812],[115,-12,69,0.19670347942712363],[115,-12,70,0.19471242743616834],[115,-12,71,0.19278108607738997],[115,-12,72,0.19091060174664964],[115,-12,73,0.18910199944495398],[115,-12,74,0.18735617775921265],[115,-12,75,0.1856739037796129],[115,-12,76,0.18405580795343923],[115,-12,77,0.18250237887542076],[115,-12,78,0.18101395801457276],[115,-12,79,0.17959073437754802],[115,-11,64,0.21217923643906567],[115,-11,65,0.20994420927030955],[115,-11,66,0.20776020376272009],[115,-11,67,0.20562890539479417],[115,-11,68,0.20355190367157983],[115,-11,69,0.20153068744338742],[115,-11,70,0.19956664016094994],[115,-11,71,0.19766103506709298],[115,-11,72,0.1958150303249021],[115,-11,73,0.19402966408244549],[115,-11,74,0.19230584947389473],[115,-11,75,0.19064436955725939],[115,-11,76,0.1890458721885644],[115,-11,77,0.1875108648325533],[115,-11,78,0.18603970930988412],[115,-11,79,0.18463261648083118],[115,-10,64,0.21679043229867123],[115,-10,65,0.21458895041419812],[115,-10,66,0.21243718210327733],[115,-10,67,0.21033681801198878],[115,-10,68,0.20828945409195332],[115,-10,69,0.20629658693944863],[115,-10,70,0.20435960907097261],[115,-10,71,0.20247980413531297],[115,-10,72,0.20065834206211408],[115,-10,73,0.19889627414699595],[115,-10,74,0.19719452807307103],[115,-10,75,0.19555390286907048],[115,-10,76,0.19397506380391416],[115,-10,77,0.19245853721780248],[115,-10,78,0.19100470528979963],[115,-10,79,0.1896138007419218],[115,-9,64,0.2213425969244145],[115,-9,65,0.21917471938891897],[115,-9,66,0.21705524679837462],[115,-9,67,0.21498587496008592],[115,-9,68,0.2129682062666255],[115,-9,69,0.21100374505538],[115,-9,70,0.20909389290454095],[115,-9,71,0.2072399438656033],[115,-9,72,0.20544307963235686],[115,-9,73,0.20370436464642905],[115,-9,74,0.2020247411392243],[115,-9,75,0.20040502411047167],[115,-9,76,0.19884589624321325],[115,-9,77,0.19734790275531378],[115,-9,78,0.19591144618746015],[115,-9,79,0.19453678112766337],[115,-8,64,0.22583871702912606],[115,-8,65,0.2237044938583258],[115,-8,66,0.22161736668630272],[115,-8,67,0.21957903647496946],[115,-8,68,0.21759111205173676],[115,-8,69,0.21565510548951028],[115,-8,70,0.2137724274231313],[115,-8,71,0.2119443823023246],[115,-8,72,0.21017216358113688],[115,-8,73,0.20845684884392568],[115,-8,74,0.20679939486774424],[115,-8,75,0.20520063262133226],[115,-8,76,0.20366126220054626],[115,-8,77,0.20218184770031034],[115,-8,78,0.20076281202305524],[115,-8,79,0.19940443162365895],[115,-7,64,0.23028216447546612],[115,-7,65,0.22818163727352458],[115,-7,66,0.22612689700047228],[115,-7,67,0.22411964976609466],[115,-7,68,0.22216151082620317],[115,-7,69,0.22025399998309791],[115,-7,70,0.21839853692247768],[115,-7,71,0.21659643648685256],[115,-7,72,0.21484890388544853],[115,-7,73,0.21315702984065865],[115,-7,74,0.2115217856708932],[115,-7,75,0.20994401831002996],[115,-7,76,0.2084244452633065],[115,-7,77,0.20696364949973023],[115,-7,78,0.20556207428097606],[115,-7,79,0.20422001792678424],[115,-6,64,0.2346767077329217],[115,-6,65,0.23260991036332213],[115,-6,66,0.2305875908919669],[115,-6,67,0.22861146056980497],[115,-6,68,0.22668314107445953],[115,-6,69,0.22480415993117253],[115,-6,70,0.22297594587019454],[115,-6,71,0.22119982412067596],[115,-6,72,0.21947701164105193],[115,-6,73,0.21780861228596982],[115,-6,74,0.21619561190961667],[115,-6,75,0.21463887340564614],[115,-6,76,0.2131391316835446],[115,-6,77,0.21169698858151664],[115,-6,78,0.2103129077158553],[115,-6,79,0.20898720926681336],[115,-5,64,0.2390265234589869],[115,-5,65,0.23699348274931686],[115,-5,66,0.23500361107717804],[115,-5,67,0.2330586248281491],[115,-5,68,0.23116015209510932],[115,-5,69,0.22930972811967187],[115,-5,70,0.22750879067006502],[115,-5,71,0.22575867535551208],[115,-5,72,0.22406061087710483],[115,-5,73,0.22241571421521877],[115,-5,74,0.22082498575332865],[115,-5,75,0.21928930433842075],[115,-5,76,0.2178094222778464],[115,-5,77,0.2163859602726912],[115,-5,78,0.21501940228763128],[115,-5,79,0.2137100903572875],[115,-4,64,0.24333620820428453],[115,-4,65,0.24133694468538625],[115,-4,66,0.23937954161027486],[115,-4,67,0.23746572049295767],[115,-4,68,0.23559711583523346],[115,-4,69,0.23377527058862235],[115,-4,70,0.232001631552742],[115,-4,71,0.23027754471018613],[115,-4,72,0.22860425049789146],[115,-4,73,0.22698287901504854],[115,-4,74,0.2254144451674127],[115,-4,75,0.22389984374820915],[115,-4,76,0.22243984445548104],[115,-4,77,0.2210350868459513],[115,-4,78,0.21968607522537165],[115,-4,79,0.21839317347536857],[115,-3,64,0.24761079024177096],[115,-3,65,0.2456453189217132],[115,-3,66,0.2437203997806514],[115,-3,67,0.24183775945531516],[115,-3,68,0.23999903885050244],[115,-3,69,0.23820578862150932],[115,-3,70,0.23645946459300715],[115,-3,71,0.23476142311442116],[115,-3,72,0.23311291635179765],[115,-3,73,0.2315150875162142],[115,-3,74,0.22996896602858985],[115,-3,75,0.2284754626210892],[115,-3,76,0.2270353643749694],[115,-3,77,0.225649329694939],[115,-3,78,0.22431788322000634],[115,-3,79,0.22304141067082262],[115,-2,64,0.25185574152010587],[115,-2,65,0.24992407269343553],[115,-2,66,0.24803164813543727],[115,-2,67,0.24618019960051918],[115,-2,68,0.24437137439117662],[115,-2,69,0.2426067308609241],[115,-2,70,0.2408877338536759],[115,-2,71,0.23921575007962648],[115,-2,72,0.23759204342762053],[115,-2,73,0.23601777021406511],[115,-2,74,0.23449397436824138],[115,-2,75,0.2330215825542109],[115,-2,76,0.23160139922916279],[115,-2,77,0.23023410163827607],[115,-2,78,0.22892023474606626],[115,-2,79,0.22766020610423088],[115,-1,64,0.2560769897409818],[115,-1,65,0.25417912983370977],[115,-1,66,0.25231920662686025],[115,-1,67,0.2504989569883119],[115,-1,68,0.2487200346137839],[115,-1,69,0.24698400555027222],[115,-1,70,0.24529234365593344],[115,-1,71,0.24364642599646813],[115,-1,72,0.24204752817799424],[115,-1,73,0.2404968196164614],[115,-1,74,0.2389953587434669],[115,-1,75,0.2375440881486639],[115,-1,76,0.23614382965861158],[115,-1,77,0.2347952793521395],[115,-1,78,0.2334990025121968],[115,-1,79,0.23225542851420056],[115,0,64,0.2602809305605196],[115,0,65,0.25841688301129895],[115,0,66,0.25658946488457235],[115,0,67,0.2548004181584948],[115,0,68,0.2530514029185838],[115,0,69,0.25134399290165554],[115,0,70,0.2496796709762138],[115,0,71,0.2480598245593345],[115,0,72,0.24648574097004494],[115,0,73,0.24495860271923708],[115,0,74,0.24347948273599074],[115,0,75,0.24204933953048136],[115,0,76,0.24066901229333493],[115,0,77,0.23933921593149365],[115,0,78,0.23806053604056931],[115,0,79,0.23683342381369243],[115,1,64,0.2644744399148383],[115,1,65,0.26264420609279104],[115,1,66,0.2608492946130434],[115,1,67,0.2590914525620362],[115,1,68,0.2573723464129288],[115,1,69,0.2556935575900387],[115,1,70,0.2540565779697308],[115,1,71,0.2524628053178077],[115,1,72,0.2509135386633884],[115,1,73,0.24940997360932637],[115,1,74,0.247953197579034],[115,1,75,0.24654418499989317],[115,1,76,0.24518379242311272],[115,1,77,0.24387275358009686],[115,1,78,0.24261167437530062],[115,1,79,0.2414010278155817],[115,2,64,0.27704459571288287],[115,2,65,0.27531580452735216],[115,2,66,0.27361841468279074],[115,2,67,0.2719541885879481],[115,2,68,0.2703248118761674],[115,2,69,0.26873188903133016],[115,2,70,0.26717693895025424],[115,2,71,0.2656613904415903],[115,2,72,0.26418657766120884],[115,2,73,0.26275373548412373],[115,2,74,0.261363994812827],[115,2,75,0.2600183778222054],[115,2,76,0.2587177931409042],[115,2,77,0.25746303096920464],[115,2,78,0.2562547581333863],[115,2,79,0.255093513076586],[115,3,64,0.2770415163609647],[115,3,65,0.2753127373169507],[115,3,66,0.2736153601123682],[115,3,67,0.2719511471461539],[115,3,68,0.27032178404154317],[115,3,69,0.268728875272022],[115,3,70,0.267173939723734],[115,3,71,0.2656584061943855],[115,3,72,0.26418360882864217],[115,3,73,0.26275078249006156],[115,3,74,0.2613610580694377],[115,3,75,0.26001545772972773],[115,3,76,0.25871489008742626],[115,3,77,0.2574601453304527],[115,3,78,0.25625189027252415],[115,3,79,0.25509066334402686],[115,4,64,0.27703090073386566],[115,4,65,0.27530216354600157],[115,4,66,0.2736048299159451],[115,4,67,0.27194066220880725],[115,4,68,0.27031134601297696],[115,4,69,0.26871848576610335],[115,4,70,0.2671636003175317],[115,4,71,0.26564811842723973],[115,4,72,0.26417337420126547],[115,4,73,0.26274060246367287],[115,4,74,0.26135093406492893],[115,4,75,0.26000539112686566],[115,4,76,0.2587048822240889],[115,4,77,0.25745019750190223],[115,4,78,0.2562420037307168],[115,4,79,0.25508083929696135],[115,5,64,0.28119807100177385],[115,5,65,0.27950323535060856],[115,5,66,0.277838499995119],[115,5,67,0.27620563233543804],[115,5,68,0.2746063242720216],[115,5,69,0.2730421878521919],[115,5,70,0.2715147508531392],[115,5,71,0.270025452301424],[115,5,72,0.26857563792897454],[115,5,73,0.2671665555656218],[115,5,74,0.2657993504680506],[115,5,75,0.2644750605853352],[115,5,76,0.26319461176092496],[115,5,77,0.2619588128711462],[115,5,78,0.26076835090019346],[115,5,79,0.2596237859516206],[115,6,64,0.2853482972448967],[115,6,65,0.2836874239705561],[115,6,66,0.2820553505546625],[115,6,67,0.28045384937926615],[115,6,68,0.27888461860204633],[115,6,69,0.2773492778234606],[115,6,70,0.2758493636903538],[115,6,71,0.27438632543607333],[115,6,72,0.27296152035708116],[115,6,73,0.27157620922610715],[115,6,74,0.27023155164172336],[115,6,75,0.2689286013145036],[115,6,76,0.26766830128963837],[115,6,77,0.2664514791060692],[115,6,78,0.26527884189211465],[115,6,79,0.26415097139760046],[115,7,64,0.28947694730918483],[115,7,65,0.2878501107774111],[115,7,66,0.28625077730678766],[115,7,67,0.2846807241941199],[115,7,68,0.2831416557848791],[115,7,69,0.28163519916100827],[115,7,70,0.2801628997651931],[115,7,71,0.278726216961645],[115,7,72,0.27732651953338533],[115,7,73,0.27596508111607615],[115,7,74,0.2746430755682777],[115,7,75,0.27336157227829583],[115,7,76,0.2721215314074901],[115,7,77,0.2709237990701059],[115,7,78,0.26976910244960434],[115,7,79,0.2686580448515009],[115,8,64,0.2935794281312262],[115,8,65,0.2919867148239861],[115,8,66,0.29042021224650744],[115,8,67,0.2888817025294428],[115,8,68,0.287372896122327],[115,8,69,0.2858954275020986],[115,8,70,0.2844508508180964],[115,8,71,0.2830406354735744],[115,8,72,0.28166616164372615],[115,8,73,0.28032871573026136],[115,8,74,0.2790294857524182],[115,8,75,0.2777695566745722],[115,8,76,0.2765499056703124],[115,8,77,0.27537139732304966],[115,8,78,0.27423477876312996],[115,8,79,0.2731406747414637],[115,9,64,0.29765118842203564],[115,9,65,0.2960926955697641],[115,9,66,0.2945591264175429],[115,9,67,0.2930522678355309],[115,9,68,0.29157383627959377],[115,9,69,0.2901254735206101],[115,9,70,0.28870874231026467],[115,9,71,0.2873251219833688],[115,9,72,0.28597600399669987],[115,9,73,0.28466268740440265],[115,9,74,0.28338637426983804],[115,9,75,0.2821481650140346],[115,9,76,0.28094905370062084],[115,9,77,0.27978992325729685],[115,9,78,0.2786715406338217],[115,9,79,0.27759455189652693],[115,10,64,0.30168772129837784],[115,10,65,0.3001635555534016],[115,10,66,0.2986630326248714],[115,10,67,0.29718794401499016],[115,10,68,0.2957400120745132],[115,10,69,0.29432088575291665],[115,10,70,0.292932136285064],[115,10,71,0.29157525281441316],[115,10,72,0.2902516379527557],[115,10,73,0.2889626032765293],[115,10,74,0.2877093647595913],[115,10,75,0.28649303814260696],[115,10,76,0.28531463423893144],[115,10,77,0.2841750541770434],[115,10,78,0.2830750845795073],[115,10,79,0.28201539267847375],[115,11,64,0.3056845668614153],[115,11,65,0.3041948430120984],[115,11,66,0.3027274880937008],[115,11,67,0.3012842981201979],[115,11,68,0.29986700121238397],[115,11,69,0.2984772533689825],[115,11,70,0.29711663417427187],[115,11,71,0.2957866424422665],[115,11,72,0.29448869179744686],[115,11,73,0.29322410619207684],[115,11,74,0.29199411535999964],[115,11,75,0.29079985020706356],[115,11,76,0.2896423381380561],[115,11,77,0.2885224983202067],[115,11,78,0.28744113688323364],[115,11,79,0.2863989420559444],[115,12,64,0.3096373147227866],[115,12,65,0.3081821544479424],[115,12,66,0.3067480970749793],[115,12,67,0.30533694299687975],[115,12,68,0.30395042596651434],[115,12,69,0.30259020888878074],[115,12,70,0.3012578795492791],[115,12,71,0.2999549462795613],[115,12,72,0.2986828335589485],[115,12,73,0.297442877552954],[115,12,74,0.29623632158820695],[115,12,75,0.29506431156402074],[115,12,76,0.2939278913004923],[115,12,77,0.2928279978231877],[115,12,78,0.29176545658439124],[115,12,79,0.2907409766209276],[115,13,64,0.313541606478216],[115,13,65,0.3121211371413291],[115,13,66,0.3107205133975435],[115,13,67,0.3093415398739031],[115,13,68,0.3079859558045812],[115,13,69,0.3066554308441402],[115,13,70,0.3053515608173515],[115,13,71,0.3040758634056118],[115,13,72,0.302829773769951],[115,13,73,0.3016146401106681],[115,13,74,0.30043171916348976],[115,13,75,0.29928217163239884],[115,13,76,0.2981670575590144],[115,13,77,0.29708733162858225],[115,13,78,0.2960438384125511],[115,13,79,0.2950373075477449],[115,14,64,0.3173931381284388],[115,14,65,0.3160074916112399],[115,14,66,0.31464044296668475],[115,14,67,0.31329380089906705],[115,14,68,0.3119693099605811],[115,14,69,0.31066864638579744],[115,14,70,0.309393413862726],[115,14,71,0.30814513924050385],[115,14,72,0.30692526817369986],[115,14,73,0.30573516070327467],[115,14,74,0.3045760867740918],[115,14,75,0.3034492216891232],[115,14,76,0.30235564150023475],[115,14,77,0.30129631833560855],[115,14,78,0.30027211566377837],[115,14,79,0.2992837834942876],[115,15,64,0.32118766244762365],[115,15,65,0.3198369740225617],[115,15,66,0.3185036462093178],[115,15,67,0.3171894916210739],[115,15,68,0.31589625995255927],[115,15,69,0.3146256338358404],[115,15,70,0.3133792246327311],[115,15,71,0.31215856816385734],[115,15,72,0.3109651203743712],[115,15,73,0.3098002529363497],[115,15,74,0.30866524878777873],[115,15,75,0.3075612976082598],[115,15,76,0.30648949123132935],[115,15,77,0.305450818993446],[115,15,78,0.30444616301962174],[115,15,79,0.3034762934457073],[115,16,64,0.32492099129915936],[115,16,65,0.32360539854031284],[115,16,66,0.32230594046561767],[115,16,67,0.3210244334175475],[115,16,68,0.31976263204598104],[115,16,69,0.3185222251854085],[115,16,70,0.3173048316687927],[115,16,71,0.3161119960781219],[115,16,72,0.31494518443164704],[115,16,73,0.3138057798078388],[115,16,74,0.31269507790596796],[115,16,75,0.3116142825434406],[115,16,76,0.3105645010897856],[115,16,77,0.30954673983734277],[115,16,78,0.30856189930863215],[115,16,79,0.30761076950041316],[115,17,64,0.32858899789897794],[115,17,65,0.32730863963095114],[115,17,66,0.32604320232730033],[115,17,67,0.324794505869274],[115,17,68,0.3235643096629234],[115,17,69,0.3223543085378258],[115,17,70,0.3211661285825057],[115,17,71,0.320001322916587],[115,17,72,0.31886136739967036],[115,17,73,0.3177476562769714],[115,17,74,0.3166614977616219],[115,17,75,0.3156041095537679],[115,17,76,0.31457661429635886],[115,17,77,0.3135800349676791],[115,17,78,0.3126152902106011],[115,17,79,0.31168318959856856],[115,18,64,0.3321876190262103],[115,18,65,0.33094263431055637],[115,18,66,0.3297113699223369],[115,18,67,0.3284956490804556],[115,18,68,0.32729723573687397],[115,18,69,0.32611783049695603],[115,18,70,0.32495906647655737],[115,18,71,0.3238225050958907],[115,18,72,0.32270963181016293],[115,18,73,0.32162185177701635],[115,18,74,0.32056048546068205],[115,18,75,0.319526764172973],[115,18,76,0.31852182555101455],[115,18,77,0.31754670897176324],[115,18,78,0.3166023509032929],[115,18,79,0.3156895801928563],[115,19,64,0.3357128571812735],[115,19,65,0.33450338433998783],[115,19,66,0.33330644514620605],[115,19,67,0.33212386594507975],[115,19,68,0.33095741501324294],[115,19,69,0.32980879850088296],[115,19,70,0.3286796563106064],[115,19,71,0.32757155791313314],[115,19,72,0.32648599809981177],[115,19,73,0.3254243926719906],[115,19,74,0.3243880740671529],[115,19,75,0.3233782869219402],[115,19,76,0.3223961835719663],[115,19,77,0.3214428194884692],[115,19,78,0.3205191486517816],[115,19,79,0.3196260188616279],[115,20,64,0.3391607826914794],[115,20,65,0.3379869583671082],[115,20,66,0.33682449583977353],[115,20,67,0.3356752243594954],[115,20,68,0.3345409162956778],[115,20,69,0.33342328310100866],[115,20,70,0.33232397121221263],[115,20,71,0.33124455788768786],[115,20,72,0.33018654698202105],[115,20,73,0.329151364657414],[115,20,74,0.328140355031931],[115,20,75,0.3271547757646907],[115,20,76,0.32619579357790524],[115,20,77,0.32526447971581346],[115,20,78,0.3243618053404892],[115,20,79,0.32348863686453266],[115,21,64,0.3425275357639788],[115,21,65,0.341389494015885],[115,21,66,0.3402616579136096],[115,21,67,0.33914585938100617],[115,21,68,0.3380438746379912],[115,21,69,0.3369574201863774],[115,21,70,0.33588814873262096],[115,21,71,0.33483764504751623],[115,21,72,0.33380742176283046],[115,21,73,0.3327989151049115],[115,21,74,0.33181348056518],[115,21,75,0.3308523885076269],[115,21,76,0.3299168197132202],[115,21,77,0.3290078608612688],[115,21,78,0.32812649994772347],[115,21,79,0.3272736216404222],[115,22,64,0.34580932848614],[115,22,65,0.3447071999224702],[115,22,66,0.343614137418846],[115,22,67,0.3425319753325796],[115,22,68,0.3414624934818014],[115,22,69,0.34040741315332607],[115,22,70,0.3393683930475041],[115,22,71,0.3383470251600872],[115,22,72,0.3373448306011027],[115,22,73,0.33636325535076744],[115,22,74,0.3354036659523562],[115,22,75,0.33446734514214177],[115,22,76,0.3335554874163137],[115,22,77,0.3326691945349209],[115,22,78,0.33180947096282026],[115,22,79,0.33097721924763757],[115,23,64,0.34900244677344056],[115,23,65,0.3479363577183374],[115,23,66,0.3468782125646527],[115,23,67,0.3458298478537588],[115,23,68,0.3447930467399705],[115,23,69,0.343769535020546],[115,23,70,0.34276097710274744],[115,23,71,0.34176897190798944],[115,23,72,0.34079504871307126],[115,23,73,0.33984066292852155],[115,23,74,0.3389071918139733],[115,23,75,0.337995930130683],[115,23,76,0.3371080857311042],[115,23,77,0.3362447750855575],[115,23,78,0.3354070187459817],[115,23,79,0.33459573674677173],[115,24,64,0.35210325226470224],[115,24,65,0.35107332396030483],[115,24,66,0.3500502356821607],[115,24,67,0.3490358258975944],[115,24,68,0.34803188082566044],[115,24,69,0.34704013048937654],[115,24,70,0.34606224470509617],[115,24,71,0.3450998290090515],[115,24,72,0.34415442052105893],[115,24,73,0.3432274837454172],[115,24,74,0.34232040630891847],[115,24,75,0.3414344946360824],[115,24,76,0.34057096956152394],[115,24,77,0.33973096187950064],[115,24,78,0.3389155078306198],[115,24,79,0.33812554452571314],[115,25,64,0.3551081841647589],[115,25,65,0.354114532007535],[115,25,66,0.35312663513492204],[115,25,67,0.3521463336736953],[115,25,68,0.3511754166271033],[115,25,69,0.35021561794942535],[115,25,70,0.3492686125577602],[115,25,71,0.34833601228106875],[115,25,72,0.34741936174646776],[115,25,73,0.34652013420280253],[115,25,74,0.34563972728142034],[115,25,75,0.34477945869425136],[115,25,76,0.34394056186911376],[115,25,77,0.343124181522282],[115,25,78,0.3423313691683038],[115,25,79,0.3415630785670708],[115,26,64,0.35801376103463306],[115,26,65,0.3570564938455867],[115,26,66,0.35610391717598466],[115,26,67,0.35515787253747355],[115,26,68,0.3542201514281614],[115,26,69,0.35329249142959396],[115,26,70,0.35237657224105506],[115,26,71,0.3514740116512144],[115,26,72,0.35058636144712085],[115,26,73,0.3497151032605667],[115,26,74,0.34886164435174793],[115,26,75,0.3480273133303242],[115,26,76,0.3472133558137971],[115,26,77,0.34642093002324476],[115,26,78,0.3456511023163991],[115,26,79,0.34490484265807014],[115,27,64,0.3608165825290597],[115,27,65,0.3598958018573579],[115,27,66,0.35897866775141934],[115,27,67,0.35806702282541675],[115,27,68,0.35716266077451264],[115,27,69,0.3562673224943407],[115,27,70,0.3553826921379113],[115,27,71,0.35451039310996724],[115,27,72,0.3536519839987827],[115,27,73,0.35280895444543414],[115,27,74,0.3519827209504693],[115,27,75,0.3511746226180734],[115,27,76,0.3503859168376561],[115,27,77,0.3496177749028937],[115,27,78,0.34887127756821507],[115,27,79,0.34814741054273457],[115,28,64,0.3635133310814459],[115,28,65,0.3626291305410076],[115,28,66,0.3617475542503843],[115,28,67,0.36087044563648],[115,28,68,0.35999960028555045],[115,28,69,0.35913676208527145],[115,28,70,0.35828361930434255],[115,28,71,0.35744180060964464],[115,28,72,0.3566128710209507],[115,28,73,0.35579832780321347],[115,28,74,0.3549995962963602],[115,28,75,0.35421802568269134],[115,28,76,0.35345488469180564],[115,28,77,0.35271135724309016],[115,28,78,0.3519885380257597],[115,28,79,0.35128742801645085],[115,29,64,0.36610077353632964],[115,29,65,0.3652532381749203],[115,29,66,0.3644073272017973],[115,29,67,0.3635648845596636],[115,29,68,0.36272770741206534],[115,29,69,0.3618975423081281],[115,29,70,0.3610760812849415],[115,29,71,0.3602649579076135],[115,29,72,0.3594657432469911],[115,29,73,0.358679941795072],[115,29,74,0.3579089873180394],[115,29,75,0.3571542386470121],[115,29,76,0.35641697540643796],[115,29,77,0.35569839368016515],[115,29,78,0.3549996016151768],[115,29,79,0.3543216149629958],[115,30,64,0.3685757627291948],[115,30,65,0.3677649684295708],[115,30,66,0.3669548219174667],[115,30,67,0.36614716734762637],[115,30,68,0.36534380313956005],[115,30,69,0.36454647816502117],[115,30,70,0.36375688787325233],[115,30,71,0.36297667035402403],[115,30,72,0.3622074023384608],[115,30,73,0.36145059513767847],[115,30,74,0.36070769051916757],[115,30,75,0.359980056521013],[115,30,76,0.3592689832038784],[115,30,77,0.35857567834078885],[115,30,78,0.3579012630447],[115,30,79,0.35724676733385785],[115,31,64,0.37093523901372083],[115,31,65,0.3701612519263667],[115,31,66,0.3693869600817611],[115,31,67,0.3686142075364184],[115,31,68,0.36784479363727873],[115,31,69,0.3670804692319919],[115,31,70,0.3663229328171016],[115,31,71,0.3655738266241508],[115,31,72,0.3648347326437018],[115,31,73,0.36410716858729786],[115,31,74,0.36339258378729894],[115,31,75,0.36269235503468267],[115,31,76,0.3620077823547373],[115,31,77,0.36134008472068435],[115,31,78,0.360690395705214],[115,31,79,0.36005975906994125],[115,32,64,0.373176231736525],[115,32,65,0.37243910774352673],[115,32,66,0.37170075128787794],[115,32,67,0.37096300601139154],[115,32,68,0.3702276718530103],[115,32,69,0.36949650128196176],[115,32,70,0.36877119546894954],[115,32,71,0.36805340039540146],[115,32,72,0.3673447029007696],[115,32,73,0.36664662666790576],[115,32,74,0.3659606281464509],[115,32,75,0.3652880924143213],[115,32,76,0.36463032897722675],[115,32,77,0.3639885675062523],[115,32,78,0.36336395351348955],[115,32,79,0.3627575439657247],[115,33,64,0.37529586065926696],[115,33,65,0.3745956448688661],[115,33,66,0.3738932945205794],[115,33,67,0.37319065251915395],[115,33,68,0.37248951905353295],[115,33,69,0.37179164785293667],[115,33,70,0.37109874238112495],[115,33,71,0.37041245196885847],[115,33,72,0.3697343678845576],[115,33,73,0.3690660193431776],[115,33,74,0.36840886945324425],[115,33,75,0.3677643111021279],[115,33,76,0.367133662779494],[115,33,77,0.3665181643389594],[115,33,78,0.36591897269794416],[115,33,79,0.3653371574757216],[115,34,64,0.37729133732819103],[115,34,65,0.3766280635995609],[115,34,66,0.37596177958546706],[115,34,67,0.3752943271256439],[115,34,68,0.3746275063107729],[115,34,69,0.373963071761539],[115,34,70,0.37330272884601967],[115,34,71,0.3726481298354268],[115,34,72,0.3720008699981935],[115,34,73,0.3713624836324314],[115,34,74,0.37073444003669836],[115,34,75,0.37011813941915594],[115,34,76,0.36951490874505355],[115,34,77,0.3689259975225718],[115,34,78,0.36835257352701],[115,34,79,0.36779571846332504],[115,35,64,0.37915996639114885],[115,35,65,0.37853365688893936],[115,35,66,0.37790348848484656],[115,35,67,0.37727130162037215],[115,35,68,0.3766388959337298],[115,35,69,0.37600802656191923],[115,35,70,0.3753804003812945],[115,35,71,0.37475767218664147],[115,35,72,0.3741414408087613],[115,35,73,0.3735332451705803],[115,35,74,0.3729345602817332],[115,35,75,0.3723467931716903],[115,35,76,0.3717712787613738],[115,35,77,0.3712092756732902],[115,35,78,0.3706619619801666],[115,35,79,0.37013043089209635],[115,36,64,0.38089914686199633],[115,36,65,0.38030981164018784],[115,36,66,0.37971579674006817],[115,36,67,0.3791189408667185],[115,36,68,0.3785210428460499],[115,36,69,0.3779238579499307],[115,36,70,0.37732909415997695],[115,36,71,0.37673840837001626],[115,36,72,0.3761534025272275],[115,36,73,0.3755756197119695],[115,36,74,0.3750065401562531],[115,36,75,0.37444757720092203],[115,36,76,0.37390007319148966],[115,36,77,0.37336529531265794],[115,36,78,0.3728444313615079],[115,36,79,0.3723385854593655],[115,37,64,0.38250637333242626],[115,37,65,0.38195400994703815],[115,37,66,0.3813961746604072],[115,37,67,0.3808347040983464],[115,37,68,0.3802713959093157],[115,37,69,0.3797080051126327],[115,37,70,0.3791462403855195],[115,37,71,0.3785877602889989],[115,37,72,0.3780341694326398],[115,37,73,0.37748701457816625],[115,37,74,0.3769477806818837],[115,37,75,0.37641788687599015],[115,37,76,0.3758986823887144],[115,37,77,0.3753914424033141],[115,37,78,0.37489736385591743],[115,37,79,0.3744175611722158],[115,38,64,0.3839792371312732],[115,38,65,0.3834638302814698],[115,38,66,0.38294218855852447],[115,38,67,0.38241614616177744],[115,38,68,0.3818874991920913],[115,38,69,0.3813580020231634],[115,38,70,0.3808293636118592],[115,38,71,0.38030324374757696],[115,38,72,0.37978124924064266],[115,38,73,0.37926493004975087],[115,38,74,0.37875577534840793],[115,38,75,0.37825520953043656],[115,38,76,0.3777645881544959],[115,38,77,0.3772851938276389],[115,38,78,0.37681823202789805],[115,38,79,0.37636482686590345],[115,39,64,0.3853154274311976],[115,39,65,0.3848369486283353],[115,39,66,0.3843515019124072],[115,39,67,0.38386091870502514],[115,39,68,0.38336699318462203],[115,39,69,0.3828714786808811],[115,39,70,0.3823760840083754],[115,39,71,0.38188246973942924],[115,39,72,0.38139224441620034],[115,39,73,0.3809069607019966],[115,39,74,0.3804281114717869],[115,39,75,0.3799571258419625],[115,39,76,0.3794953651393041],[115,39,77,0.37904411880917643],[115,39,78,0.378604600262941],[115,39,79,0.3781779426645916],[115,40,64,0.38651273230282807],[115,40,65,0.38607113956698674],[115,40,66,0.38562187647387547],[115,40,67,0.3851667713123712],[115,40,68,0.38470761595927433],[115,40,69,0.38424616229685904],[115,40,70,0.38378411856983174],[115,40,71,0.38332314568171033],[115,40,72,0.3828648534306215],[115,40,73,0.38241079668453026],[115,40,74,0.38196247149586365],[115,40,75,0.38152131115558047],[115,40,76,0.381088682186646],[115,40,77,0.3806658802769319],[115,40,78,0.3802541261515324],[115,40,79,0.37985456138450185],[115,41,64,0.38756903971631174],[115,41,65,0.3871642772998539],[115,41,66,0.38675117332359843],[115,41,67,0.38633155258523183],[115,41,68,0.3859072042766609],[115,41,69,0.3854798784246788],[115,41,70,0.38505128227124846],[115,41,71,0.3846230765934115],[115,41,72,0.38419687196282154],[115,41,73,0.3837742249449155],[115,41,74,0.38335663423768485],[115,41,75,0.38294553675010023],[115,41,76,0.3825423036201444],[115,41,77,0.38214823617247884],[115,41,78,0.3817645618157317],[115,41,79,0.38139242987941235],[115,42,64,0.3884823384903264],[115,42,65,0.38811433662802886],[115,42,66,0.38773735387268066],[115,42,67,0.38735321116917387],[115,42,68,0.38696369463751235],[115,42,69,0.3865705520365843],[115,42,70,0.3861754891677657],[115,42,71,0.385780166218363],[115,42,72,0.3853861940448954],[115,42,73,0.38499513039622624],[115,42,74,0.38460847607651316],[115,42,75,0.3842276710480194],[115,42,76,0.3838540904737532],[115,42,77,0.38348904069995093],[115,42,78,0.3831337551783969],[115,42,79,0.3827893903285844],[115,43,64,0.3892507191884912],[115,43,65,0.3889193938737908],[115,43,66,0.3885784808107493],[115,43,67,0.3882297967270071],[115,43,68,0.38787512428022103],[115,43,69,0.3875162085449214],[115,43,70,0.3871547534394235],[115,43,71,0.38679241809279996],[115,43,72,0.38643081315191485],[115,43,73,0.38607149702852855],[115,43,74,0.3857159720864436],[115,43,75,0.3853656807687337],[115,43,76,0.38502200166502276],[115,43,77,0.38468624551882896],[115,43,78,0.3843596511749685],[115,43,79,0.384043381467022],[115,44,64,0.3898723749632127],[115,44,65,0.38957762775011096],[115,44,66,0.38927271900058025],[115,44,67,0.3889594608579977],[115,44,68,0.3886396321241026],[115,44,69,0.3883149747689085],[115,44,70,0.3879871903809032],[115,44,71,0.3876579365575364],[115,44,72,0.3873288232360016],[115,44,73,0.387001408964316],[115,44,74,0.3866771971126748],[115,44,75,0.38635763202511586],[115,44,76,0.3860440951114644],[115,44,77,0.38573790087957505],[115,44,78,0.38544029290786114],[115,44,79,0.38515243975811786],[115,45,64,0.39034560234697846],[115,45,65,0.3900873201771483],[115,45,66,0.3898183363192803],[115,45,67,0.38954045796321524],[115,45,68,0.38925545965838626],[115,45,69,0.3889650798467503],[115,45,70,0.3886710173362433],[115,45,71,0.3883749277147645],[115,45,72,0.3880784197046895],[115,45,73,0.38778305145792125],[115,45,74,0.3874903267914538],[115,45,75,0.3872016913634826],[115,45,76,0.3869185287900347],[115,45,77,0.38664215670213276],[115,45,78,0.3863738227434853],[115,45,79,0.38611470050870855],[115,46,64,0.39066880199105886],[115,46,65,0.3904468570456973],[115,46,66,0.3902137044459789],[115,46,67,0.3899711460569666],[115,46,68,0.3897209517768904],[115,46,69,0.3894648560930491],[115,46,70,0.3892045545784845],[115,46,71,0.38894170032942843],[115,46,72,0.3886779003435268],[115,46,73,0.38841471183884524],[115,46,74,0.38815363851363516],[115,46,75,0.3878961267468926],[115,46,76,0.38764356173968095],[115,46,77,0.3873972635972353],[115,46,78,0.38715848335183867],[115,46,79,0.386928398926475],[115,47,64,0.39084047935164523],[115,47,65,0.39065472892761455],[115,47,66,0.3904572995960611],[115,47,67,0.39024998752435225],[115,47,68,0.3900345575584135],[115,47,69,0.38981273980154696],[115,47,70,0.38958622613427374],[115,47,71,0.38935666667520663],[115,47,72,0.38912566618295086],[115,47,73,0.38889478039904146],[115,47,74,0.388665512331896],[115,47,75,0.38843930848181235],[115,47,76,0.3882175550069853],[115,47,77,0.3880015738305591],[115,47,78,0.3877926186887046],[115,47,79,0.3875918711197286],[115,48,64,0.39085924532342425],[115,48,65,0.39070953173322587],[115,48,66,0.39054770320194376],[115,48,67,0.3903755498249426],[115,48,68,0.39019483099284513],[115,48,69,0.3900072719931993],[115,48,70,0.3898145605534344],[115,48,71,0.3896183433251078],[115,48,72,0.38942022230944306],[115,48,73,0.38922175122416425],[115,48,74,0.3890244318116117],[115,48,75,0.3888297100881594],[115,48,76,0.3886389725349183],[115,48,77,0.3884535422297336],[115,48,78,0.38827467492047096],[115,48,79,0.38810355503959615],[115,49,64,0.3907238168205707],[115,49,65,0.39060996731569586],[115,49,66,0.39048360254037257],[115,49,67,0.3903465061425556],[115,49,68,0.390200431652971],[115,49,69,0.3900470991095585],[115,49,70,0.38988819162347393],[115,49,71,0.3897253518866526],[115,49,72,0.38956017862093273],[115,49,73,0.38939422296874604],[115,49,74,0.3892289848253594],[115,49,75,0.3890659091126879],[115,49,76,0.3889063819946639],[115,49,77,0.38875172703416927],[115,49,78,0.3886032012915279],[115,49,79,0.3884619913645603],[115,50,64,0.39043301730517843],[115,50,65,0.39035484402237774],[115,50,66,0.39026379130626204],[115,50,67,0.3901616359811536],[115,50,68,0.39005012531199534],[115,50,69,0.3899309736514862],[115,50,70,0.3898058590290534],[115,50,71,0.38967641968166433],[115,50,72,0.38954425052647623],[115,50,73,0.3894108995753304],[115,50,74,0.3892778642910758],[115,50,75,0.38914658788574175],[115,50,76,0.38901845556054376],[115,50,77,0.3888947906877318],[115,50,78,0.3887768509342748],[115,50,79,0.3886658243273865],[115,51,64,0.3899857772631145],[115,51,65,0.3899430771931308],[115,51,66,0.3898871701330652],[115,51,67,0.38981982570685103],[115,51,68,0.3897427845067708],[115,51,69,0.38965775476318865],[115,51,70,0.3895664089564095],[115,51,71,0.38947038037066145],[115,51,72,0.3893712595902026],[115,51,73,0.38927059093755634],[115,51,74,0.38916986885386473],[115,51,75,0.38907053422137394],[115,51,76,0.3889739706280399],[115,51,77,0.38888150057426096],[115,51,78,0.3887943816217342],[115,51,79,0.3887138024844371],[115,52,64,0.38938113462730406],[115,52,65,0.38937368960561225],[115,52,66,0.38935274705967654],[115,52,67,0.3893200690360339],[115,52,68,0.38927738904673426],[115,52,69,0.38922640876157016],[115,52,70,0.3891687946427266],[115,52,71,0.3891061745218475],[115,52,72,0.38904013411952076],[115,52,73,0.38897221350718403],[115,52,74,0.3889039035114439],[115,52,75,0.38883664206081947],[115,52,76,0.38877181047489884],[115,52,77,0.38871072969591847],[115,52,78,0.38865465646275743],[115,52,79,0.38860477942735216],[115,53,64,0.38861823514845334],[115,53,65,0.38864581186754993],[115,53,66,0.3886596379438787],[115,53,67,0.38866146746959895],[115,53,68,0.3886530264685605],[115,53,69,0.3886360096109186],[115,53,70,0.3886120768704705],[115,53,71,0.38858285012470983],[115,53,72,0.3885499096976015],[115,53,73,0.3885147908450768],[115,53,74,0.38847898018324656],[115,53,75,0.3884439120593361],[115,53,76,0.38841096486533727],[115,53,77,0.3883814572943832],[115,53,78,0.3883566445398395],[115,53,79,0.3883377144371176],[115,54,64,0.3876963327131836],[115,54,65,0.3877586827559705],[115,54,66,0.38780706682230526],[115,54,67,0.38784323067329135],[115,54,68,0.3878688924365101],[115,54,69,0.38788573934289927],[115,54,70,0.387895424406663],[115,54,71,0.38789956304820905],[115,54,72,0.38789972966011466],[115,54,73,0.38789745411612164],[115,54,74,0.38789421822316],[115,54,75,0.38789145211639986],[115,54,76,0.3878905305973321],[115,54,77,0.3878927694148784],[115,54,78,0.3878994214895284],[115,54,79,0.38791167308050767],[115,55,64,0.3866147896096084],[115,55,65,0.3867116495034134],[115,55,66,0.38679436621695085],[115,55,67,0.3868646768041667],[115,55,68,0.3869242910884973],[115,55,69,0.386974888421881],[115,55,70,0.3870181143871182],[115,55,71,0.3870555774435763],[115,55,72,0.38708884551623957],[115,55,73,0.3871194425281034],[115,55,74,0.38714884487591605],[115,55,75,0.3871784778492648],[115,55,76,0.38720971199300525],[115,55,77,0.38724385941304007],[115,55,78,0.38728217002543863],[115,55,79,0.3873258277489062],[115,56,64,0.38537307674034854],[115,56,65,0.3855041680311265],[115,56,66,0.38562097738822254],[115,56,67,0.38572523278317217],[115,56,68,0.3858186353278738],[115,56,69,0.3859028560555927],[115,56,70,0.3859795326456405],[115,56,71,0.38605026609172166],[115,56,72,0.3861166173139502],[115,56,73,0.3861801037145348],[115,56,74,0.38624219567713647],[115,56,75,0.3863043130098922],[115,56,76,0.3863678213321098],[115,56,77,0.3864340284046327],[115,56,78,0.38650418040387324],[115,56,79,0.38657945813951655],[115,57,64,0.3839707737829458],[115,57,65,0.38413580312920464],[115,57,66,0.3842864505344977],[115,57,67,0.3844244345138151],[115,57,68,0.38455144706089583],[115,57,69,0.3846691504510774],[115,57,70,0.38477917398815153],[115,57,71,0.3848831106952181],[115,57,72,0.3849825139495432],[115,57,73,0.38507889406141427],[115,57,74,0.3851737147970025],[115,57,75,0.3852683898452213],[115,57,76,0.3853642792285874],[115,57,77,0.3854626856580853],[115,57,78,0.3855648508320294],[115,57,79,0.3856719516789318],[115,58,64,0.38240756929773256],[115,58,65,0.3826062285837262],[115,58,66,0.3827904449382401],[115,58,67,0.38296192704696586],[115,58,68,0.38312235737992245],[115,58,69,0.38327338901598984],[115,58,70,0.38341664241179063],[115,58,71,0.3835537021149089],[115,58,72,0.38368611342145187],[115,58,73,0.3838153789779474],[115,58,74,0.38394295532758926],[115,58,75,0.38407024940081647],[115,58,76,0.3841986149502347],[115,58,77,0.3843293489298798],[115,58,78,0.38446368781881923],[115,58,79,0.3846028038890976],[115,59,64,0.3806832607831386],[115,59,65,0.3809152272508717],[115,59,66,0.3811327290586565],[115,59,67,0.38133746469178276],[115,59,68,0.3815311066923311],[115,59,69,0.3817152985052249],[115,59,70,0.3818916512689776],[115,59,71,0.3820617405511229],[115,59,72,0.3822271030283343],[115,59,73,0.38238923311122675],[115,59,74,0.38254957951385427],[115,59,75,0.3827095417678852],[115,59,76,0.3828704666814685],[115,59,77,0.383033644742788],[115,59,78,0.38320030646829983],[115,59,79,0.38337161869566216],[115,60,64,0.378797754678385],[115,60,65,0.3790626910779719],[115,60,66,0.3793131805708497],[115,60,67,0.3795509110727099],[115,60,68,0.37977754479510273],[115,60,69,0.37999471511283106],[115,60,70,0.3802040233763917],[115,60,71,0.38040703566945616],[115,60,72,0.380605279511393],[115,60,73,0.38080024050482497],[115,60,74,0.38099335892823866],[115,60,75,0.38118602627362264],[115,60,76,0.3813795817291525],[115,60,77,0.38157530860691524],[115,60,78,0.3817744307156741],[115,60,79,0.3819781086786753],[115,61,64,0.3767510663136455],[115,61,65,0.3770486210715685],[115,61,66,0.3773317863515395],[115,61,67,0.3776022391326226],[115,61,68,0.37786163089515173],[115,61,69,0.3781115845092796],[115,61,70,0.3783536910689361],[115,61,71,0.3785895066711863],[115,61,72,0.3788205491409915],[115,61,73,0.3790482947013656],[115,61,74,0.37927417458894497],[115,61,75,0.3794995716149484],[115,61,76,0.3797258166715425],[115,61,77,0.37995418518361046],[115,61,78,0.3801858935059194],[115,61,79,0.380422095265693],[115,62,64,0.3745433198076459],[115,62,65,0.3748731272124537],[115,62,66,0.37518864241132666],[115,62,67,0.3754915310820945],[115,62,68,0.3757834335753717],[115,62,69,0.3760659618240658],[115,62,70,0.37634069619866595],[115,62,71,0.3766091823082971],[115,62,72,0.3768729277475463],[115,62,73,0.3771333987890507],[115,62,74,0.37739201702186936],[115,62,75,0.37765015593561035],[115,62,76,0.3779091374503336],[115,62,77,0.37817022839222275],[115,62,78,0.3784346369150257],[115,62,79,0.37870350886726667],[115,63,64,0.37217474791263727],[115,63,65,0.37253642831763],[115,63,66,0.3728839537734384],[115,63,67,0.3732189782947256],[115,63,68,0.37354313070633993],[115,63,69,0.3738580115735806],[115,63,70,0.37416519007861826],[115,63,71,0.3744662008430557],[115,63,72,0.37476254069663695],[115,63,73,0.3750556653920907],[115,63,74,0.37534698626613405],[115,63,75,0.37563786684660677],[115,63,76,0.3759296194057537],[115,63,77,0.376223501459654],[115,63,78,0.37652071221379124],[115,63,79,0.37682238895477205],[115,64,64,0.3696456918068574],[115,64,65,0.3700388518493003],[115,64,66,0.37041803429906406],[115,64,67,0.37078488114863706],[115,64,68,0.37114100930378474],[115,64,69,0.37148800753435973],[115,64,70,0.3718274333716489],[115,64,71,0.37216080995224265],[115,64,72,0.37248962280843334],[115,64,73,0.3728153166051297],[115,64,74,0.3731392918233152],[115,64,75,0.37346290139001515],[115,64,76,0.3737874472547965],[115,64,77,0.37411417691279525],[115,64,78,0.3744442798742656],[115,64,79,0.37477888408065996],[115,65,64,0.36695660083438486],[115,65,65,0.36738083367079316],[115,65,66,0.36779130645918834],[115,65,67,0.36818964881404515],[115,65,68,0.36857746533172775],[115,65,69,0.36895633256162075],[115,65,70,0.3693277959241898],[115,65,71,0.3696933665759506],[115,65,72,0.37005451822135677],[115,65,73,0.37041268387159015],[115,65,74,0.37076925255028603],[115,65,75,0.37112556594615326],[115,65,76,0.37148291501251657],[115,65,77,0.3718425365137738],[115,65,78,0.37220560951876436],[115,65,79,0.37257325184105705],[115,66,64,0.36410803219246646],[115,66,65,0.36456291774950766],[115,66,66,0.36500430105300286],[115,66,67,0.36543379898699035],[115,66,68,0.3658530034513771],[115,66,69,0.36626347835316525],[115,66,70,0.3666667565450004],[115,66,71,0.36706433671102584],[115,66,72,0.36745768020004865],[115,66,73,0.3678482078060028],[115,66,74,0.368237296495746],[115,66,75,0.3686262760841402],[115,66,76,0.36901642585645456],[115,66,77,0.36940897113807525],[115,66,78,0.36980507981152266],[115,66,79,0.3702058587807824],[115,67,64,0.3611006505661979],[115,67,65,0.3615857558067521],[115,67,66,0.36205765687277747],[115,67,67,0.36251795756910477],[115,67,68,0.3629682367156569],[115,67,69,0.36341004515853026],[115,67,70,0.36384490272880143],[115,67,71,0.36427429514903986],[115,67,72,0.3646996708875344],[115,67,73,0.36512243796021837],[115,67,74,0.36554396068032813],[115,67,75,0.36596555635575034],[115,67,76,0.3663884919340884],[115,67,77,0.36681398059544046],[115,67,78,0.36724317829288483],[115,67,79,0.36767718024068113],[115,68,64,0.3579352277107003],[115,68,65,0.35845010691462403],[115,68,66,0.35895212031532864],[115,68,67,0.3594428582935571],[115,68,68,0.3599238862095083],[115,68,69,0.36039674143352585],[115,68,70,0.3608629303249237],[115,68,71,0.36132392515892386],[115,68,72,0.36178116100171637],[115,68,73,0.36223603253362424],[115,68,74,0.3626898908204119],[115,68,75,0.36314404003268763],[115,68,76,0.3635997341134338],[115,68,77,0.36405817339365687],[115,68,78,0.36452050115615153],[115,68,79,0.36498780014738885],[115,69,64,0.3546126419807334],[115,69,65,0.35515683703986983],[115,69,66,0.3556885449400312],[115,69,67,0.35620934229711826],[115,69,68,0.35672078063590884],[115,69,69,0.3572243834401032],[115,69,70,0.3577216431509191],[115,69,71,0.358214018114213],[115,69,72,0.3587029294761383],[115,69,73,0.35918975802731995],[115,69,74,0.3596758409955903],[115,69,75,0.3601624687872285],[115,69,76,0.36065088167674486],[115,69,77,0.36114226644519726],[115,69,78,0.36163775296703554],[115,69,79,0.362138410745485],[115,70,64,0.3511338778076569],[115,70,65,0.3517069185346351],[115,70,66,0.35226789097328376],[115,70,67,0.3528183576382592],[115,70,68,0.35335985584752],[115,70,69,0.35389389479146577],[115,70,70,0.35442195255104586],[115,70,71,0.3549454730648144],[115,70,72,0.3554658630449421],[115,70,73,0.35598448884216394],[115,70,74,0.35650267325970897],[115,70,75,0.3570216923161522],[115,70,76,0.3575427719572333],[115,70,77,0.35806708471662396],[115,70,78,0.3585957463256478],[115,70,79,0.35912981227195423],[115,71,64,0.3475000251238979],[115,71,65,0.3481014295742669],[115,71,66,0.34869122475958314],[115,71,67,0.3492709587614377],[115,71,68,0.34984215432411964],[115,71,69,0.3504063059425785],[115,71,70,0.3509648768997824],[115,71,71,0.3515192962534499],[115,71,72,0.3520709557721625],[115,71,73,0.35262120682083964],[115,71,74,0.353171357195622],[115,71,75,0.3537226679081026],[115,71,76,0.35427634991894885],[115,71,77,0.3548335608209019],[115,71,78,0.3553954014711513],[115,71,79,0.3559629125730924],[115,72,64,0.3437122787348577],[115,72,65,0.34434155354209584],[115,72,66,0.34495971815914256],[115,72,67,0.3455683059075066],[115,72,68,0.34616882459575216],[115,72,69,0.34676275362600756],[115,72,70,0.3473515410503023],[115,72,71,0.3479366005767086],[115,72,72,0.348519308525296],[115,72,73,0.3491010007338784],[115,72,74,0.34968296941360344],[115,72,75,0.35026645995431854],[115,72,76,0.350852667679761],[115,72,77,0.3514427345525568],[115,72,78,0.3520377458290256],[115,72,79,0.35263872666380053],[115,73,64,0.3397719376381514],[115,73,65,0.3404285783610972],[115,73,66,0.34107464789194974],[115,73,67,0.34171166447014156],[115,73,68,0.3423411206114947],[115,73,69,0.34296448023299164],[115,73,70,0.34358317572781205],[115,73,71,0.3441986049906112],[115,73,72,0.3448121283930481],[115,73,73,0.3454250657095433],[115,73,74,0.34603869299331713],[115,73,75,0.34665423940264006],[115,73,76,0.3472728839773459],[115,73,77,0.34789575236558923],[115,73,78,0.3485239135008474],[115,73,79,0.3491583762291742],[115,74,64,0.33568040429036883],[115,74,65,0.33636389577261555],[115,74,66,0.3370373948284492],[115,74,67,0.33770240429847065],[115,74,68,0.3383604010540209],[115,74,69,0.3390128331399223],[115,74,70,0.3396611168679291],[115,74,71,0.34030663386086096],[115,74,72,0.34095072804743115],[115,74,73,0.3415947026077435],[115,74,74,0.3422398168695161],[115,74,75,0.3428872831549574],[115,74,76,0.34353826357834705],[115,74,77,0.3441938667943065],[115,74,78,0.34485514469675305],[115,74,79,0.3455230890685518],[115,75,64,0.3314391838212727],[115,75,65,0.33214900056206964],[115,75,66,0.33284944322676513],[115,75,67,0.33354199894582376],[115,75,68,0.33422812859988127],[115,75,69,0.3349092639801561],[115,75,70,0.335586804900021],[115,75,71,0.336262116257705],[115,75,72,0.33693652505013694],[115,75,73,0.33761131733790606],[115,75,74,0.33828773516139815],[115,75,75,0.33896697340802984],[115,75,76,0.3396501766306378],[115,75,77,0.3403384358170034],[115,75,78,0.3410327851105105],[115,75,79,0.34173419848194764],[115,76,64,0.32704988319531836],[115,76,65,0.3277854897315241],[115,76,66,0.3285123799163541],[115,76,67,0.329232024864492],[115,76,68,0.32994586912538926],[115,76,69,0.3306553278610448],[115,76,70,0.33136178397539595],[115,76,71,0.3320665851952943],[115,76,72,0.33277104110307487],[115,76,73,0.33347642012069556],[115,76,74,0.3341839464455061],[115,76,75,0.33489479693756674],[115,76,76,0.3356100979585753],[115,76,77,0.3363309221623828],[115,76,78,0.337058285237095],[115,76,79,0.3377931425987714],[115,77,64,0.32251421032070676],[115,77,65,0.3232750616193364],[115,77,66,0.3240278934282934],[115,77,67,0.32477416054669805],[115,77,68,0.3255152908583151],[115,77,69,0.32625268252638817],[115,77,70,0.32698770114054476],[115,77,71,0.3277216768157435],[115,77,72,0.32845590124327284],[115,77,73,0.3291916246937773],[115,77,74,0.3299300529723721],[115,77,75,0.3306723443257648],[115,77,76,0.3314196063014433],[115,77,77,0.3321728925589098],[115,77,78,0.3329331996329601],[115,77,79,0.3337014636490161],[115,78,64,0.31783397310587436],[115,78,65,0.318619514966784],[115,78,66,0.31939777307210937],[115,78,67,0.320170185611689],[115,78,68,0.3209381634752973],[115,78,69,0.321703087464217],[115,78,70,0.3224663054553444],[115,78,71,0.3232291295177998],[115,78,72,0.32399283298205317],[115,78,73,0.3247586474615372],[115,78,74,0.3255277598268147],[115,78,75,0.32630130913221395],[115,78,76,0.3270803834949926],[115,78,77,0.32786601692701167],[115,78,78,0.32865918611891604],[115,78,79,0.32946080717683257],[115,79,64,0.31301107846329346],[115,79,65,0.3138207479315474],[115,79,66,0.3146239079590252],[115,79,67,0.3154219798388248],[115,79,68,0.3162163571448476],[115,79,69,0.3170084029597839],[115,79,70,0.31779944705610075],[115,79,71,0.3185907830300003],[115,79,72,0.31938366538836194],[115,79,73,0.3201793065886379],[115,79,74,0.3209788740317727],[115,79,75,0.32178348700805454],[115,79,76,0.3225942135959656],[115,79,77,0.3234120675140077],[115,79,78,0.3242380049255027],[115,79,79,0.32507292119637765],[115,80,64,0.3080475312608175],[115,80,65,0.30888075704827966],[115,80,66,0.3097082859718547],[115,80,67,0.31053152214689284],[115,80,68,0.3113518415161762],[115,80,69,0.31217058909398776],[115,80,70,0.3129890761636557],[115,80,71,0.3138085774285397],[115,80,72,0.3146303281164736],[115,80,73,0.3154555210376317],[115,80,74,0.316285303595892],[115,80,75,0.31712077475360256],[115,80,76,0.317962981949818],[115,80,77,0.318812917971984],[115,80,78,0.3196715177810674],[115,80,79,0.32053965529014294],[115,81,64,0.3029454332204614],[115,81,65,0.3038016361361553],[115,81,66,0.304652992681436],[115,81,67,0.30550088951954013],[115,81,68,0.30634668465373316],[115,81,69,0.3071917046871276],[115,81,70,0.3080372420364535],[115,81,71,0.30888455209974675],[115,81,72,0.3097348503779689],[115,81,73,0.3105893095505266],[115,81,74,0.3114490565047655],[115,81,75,0.3123151693193419],[115,81,76,0.3131886742015397],[115,81,77,0.3140705423785133],[115,81,78,0.3149616869424505],[115,81,79,0.31586295964966965],[115,82,64,0.29770698176448385],[115,82,65,0.29858557515326445],[115,82,66,0.2994602102094748],[115,82,67,0.300332255876695],[115,82,68,0.3012030519173332],[115,82,69,0.3020739061878539],[115,82,70,0.3029460918684377],[115,82,71,0.3038208446470392],[115,82,72,0.30469935985785657],[115,82,73,0.30558278957418084],[115,82,74,0.3064722396556999],[115,82,75,0.3073687667501588],[115,82,76,0.30827337524944776],[115,82,77,0.30918701420009415],[115,82,78,0.31011057416815535],[115,82,79,0.3110448840585257],[115,83,64,0.29233446880902336],[115,83,65,0.2932348589981051],[115,83,66,0.2941322160380432],[115,83,67,0.29502789089222126],[115,83,68,0.29592320478811135],[115,83,69,0.29681944650756453],[115,83,70,0.29771786963202085],[115,83,71,0.29861968974259856],[115,83,72,0.2995260815750806],[115,83,73,0.3004381761297631],[115,83,74,0.30135705773624466],[115,83,75,0.30228376107305344],[115,83,76,0.30321926814218836],[115,83,77,0.30416450519854565],[115,83,78,0.30512033963423213],[115,83,79,0.3060875768177756],[115,84,64,0.28683027950517104],[115,84,65,0.2877518662580538],[115,84,66,0.2886713817656197],[115,84,67,0.28959015875769495],[115,84,68,0.290509499640195],[115,84,69,0.2914306738001301],[115,84,70,0.29235491486601634],[115,84,71,0.29328341792365603],[115,84,72,0.29421733668730143],[115,84,73,0.29515778062616777],[115,84,74,0.296105812046376],[115,84,75,0.2970624431282206],[115,84,76,0.29802863291883774],[115,84,77,0.2990052842802479],[115,84,78,0.2999932407927727],[115,84,79,0.3009932836138356],[115,85,64,0.2811968909273333],[115,85,65,0.28213906790467186],[115,85,66,0.28308017180952655],[115,85,67,0.28402151689215416],[115,85,68,0.2849643864579485],[115,85,69,0.2859100301868056],[115,85,70,0.286859661408387],[115,85,71,0.2878144543332427],[115,85,72,0.2887755412398089],[115,85,73,0.2897440096172453],[115,85,74,0.2907208992641953],[115,85,75,0.29170719934335965],[115,85,76,0.2927038453919639],[115,85,77,0.29371171628809023],[115,85,78,0.2947316311728746],[115,85,79,0.29576434632858006],[115,86,64,0.27543687070915945],[115,86,65,0.27639902593611854],[115,86,66,0.2773611420550345],[115,86,67,0.2783245145980976],[115,86,68,0.2792904074990591],[115,86,69,0.28026005042659763],[115,86,70,0.28123463607407984],[115,86,71,0.28221531740567396],[115,86,72,0.283203204858833],[115,86,73,0.2841993635031116],[115,86,74,0.2852048101554016],[115,86,75,0.2862205104514738],[115,86,76,0.28724737587390864],[115,86,77,0.2882862607363861],[115,86,78,0.28933795912433463],[115,86,79,0.29040320179195134],[115,87,64,0.2695528756269061],[115,87,65,0.27053439196654494],[115,87,66,0.27151693845100855],[115,87,67,0.27250179166360067],[115,87,68,0.27349019590333884],[115,87,69,0.2744833605319606],[115,87,70,0.2754824572778209],[115,87,71,0.27648861749664144],[115,87,72,0.2775029293891268],[115,87,73,0.2785264351754102],[115,87,74,0.2795601282264182],[115,87,75,0.2806049501520374],[115,87,76,0.2816617878461677],[115,87,77,0.2827314704886331],[115,87,78,0.2838147665039486],[115,87,79,0.2849123804769561],[115,88,64,0.2635476501300811],[115,88,65,0.26454790576231124],[115,88,66,0.2655502955519402],[115,88,67,0.26655607691039895],[115,88,68,0.2675664742470904],[115,88,69,0.2685826763296701],[115,88,70,0.26960583360171786],[115,88,71,0.2706370554577623],[115,88,72,0.2716774074756729],[115,88,73,0.2727279086063814],[115,88,74,0.2737895283210237],[115,88,75,0.27486318371538343],[115,88,76,0.27594973657172284],[115,88,77,0.2770499903779719],[115,88,78,0.2781646873042739],[115,88,79,0.2792945051369009],[115,89,64,0.25742402481968024],[115,89,65,0.25844239372533984],[115,89,66,0.25946403500667514],[115,89,67,0.26049018668824386],[115,89,68,0.26152205304333975],[115,89,69,0.2625608019671778],[115,89,70,0.26360756230797544],[115,89,71,0.2646634211558875],[115,89,72,0.265729421089813],[115,89,73,0.26680655738203535],[115,89,74,0.2678957751607846],[115,89,75,0.26899796653060615],[115,89,76,0.27011396765061924],[115,89,77,0.27124455577063683],[115,89,78,0.2723904462251455],[115,89,79,0.27355228938515885],[115,90,64,0.25118491487375494],[115,90,65,0.25222076732334303],[115,90,66,0.25326106399357756],[115,90,67,0.25430702331527505],[115,90,68,0.2553598291876821],[115,90,69,0.25642062836419266],[115,90,70,0.25749052779646797],[115,90,71,0.2585705919369159],[115,90,72,0.25966183999954884],[115,90,73,0.26076524317917793],[115,90,74,0.2618817218290401],[115,90,75,0.2630121425967318],[115,90,76,0.2641573155185424],[115,90,77,0.2653179910721528],[115,90,78,0.26649485718770055],[115,90,79,0.2676885362172239],[115,91,64,0.24483331842051348],[115,91,65,0.24588602146712785],[115,91,66,0.24694437360233126],[115,91,67,0.2480095734646076],[115,91,68,0.24908278434994052],[115,91,69,0.2501651316096878],[115,91,70,0.2512577000073677],[115,91,71,0.2523615310343128],[115,91,72,0.25347762018421055],[115,91,73,0.2546069141864872],[115,91,74,0.2557503081986344],[115,91,75,0.25690864295735033],[115,91,76,0.2580827018885865],[115,91,77,0.25927320817647087],[115,91,78,0.26048082179110343],[115,91,79,0.2617061364752406],[115,92,64,0.23837231485867408],[115,92,65,0.23944123283469673],[115,92,66,0.24051703716210007],[115,92,67,0.24160090649685792],[115,92,68,0.2426939833113574],[115,92,69,0.24379737130405482],[115,92,70,0.24491213276855275],[115,92,71,0.24603928592205535],[115,92,72,0.24717980219322022],[115,92,73,0.24833460346936473],[115,92,74,0.24950455930312512],[115,92,75,0.25069048407843886],[115,92,76,0.2518931341359456],[115,92,77,0.25311320485777267],[115,92,78,0.254351327711704],[115,92,79,0.2556080672547481],[115,93,64,0.23180506312540688],[115,93,65,0.23288955814247944],[115,93,66,0.23398220851637946],[115,93,67,0.23508417273893825],[115,93,68,0.23619657224765192],[115,93,69,0.2373204888467376],[115,93,70,0.23845696208812428],[115,93,71,0.23960698661233465],[115,93,72,0.240771509449275],[115,93,73,0.24195142727889066],[115,93,74,0.2431475836517895],[115,93,75,0.2443607661696976],[115,93,76,0.24559170362584837],[115,93,77,0.24684106310526588],[115,93,78,0.24810944704494686],[115,93,79,0.24939739025395086],[115,94,64,0.22513479991170893],[115,94,65,0.22623423236354237],[115,94,66,0.22734312024438552],[115,94,67,0.22846260170896926],[115,94,68,0.22959377695779135],[115,94,69,0.2307377056691924],[115,94,70,0.2318954043918814],[115,94,71,0.23306784389786525],[115,94,72,0.23425594649580161],[115,94,73,0.23546058330472944],[115,94,74,0.23668257148828295],[115,94,75,0.23792267144925242],[115,94,76,0.2391815839845892],[115,94,77,0.24045994740082274],[115,94,78,0.24175833458988716],[115,94,79,0.24307725006537262],[115,95,64,0.2183648378250407],[115,95,65,0.21947856689260287],[115,95,66,0.2206030818288125],[115,95,67,0.2217395002871382],[115,95,68,0.22288890103830444],[115,95,69,0.22405232141300568],[115,95,70,0.22523075470558435],[115,95,71,0.22642514753862958],[115,95,72,0.22763639718851336],[115,95,73,0.22886534887182136],[115,95,74,0.23011279299278192],[115,95,75,0.23137946235155632],[115,95,76,0.23266602931349106],[115,95,77,0.2339731029392959],[115,95,78,0.23530122607614706],[115,95,79,0.23665087240973193],[115,96,64,0.21149856349955734],[115,96,65,0.2126259476581818],[115,96,66,0.21376547777028834],[115,96,67,0.2149182508328342],[115,96,68,0.21608532400346822],[115,96,69,0.21726771205349663],[115,96,70,0.21846638478233377],[115,96,71,0.2196822643933862],[115,96,72,0.22091622283139464],[115,96,73,0.22216907908118394],[115,96,74,0.22344159642793154],[115,96,75,0.22473447967881133],[115,96,76,0.22604837234611808],[115,96,77,0.22738385379183257],[115,96,78,0.2287414363336313],[115,96,79,0.2301215623123513],[115,97,64,0.20453943565377575],[115,97,65,0.20567983318173455],[115,97,66,0.2068337656483691],[115,97,67,0.20800230924790225],[115,97,68,0.2091864993512085],[115,97,69,0.21038732796864942],[115,97,70,0.21160574117490974],[115,97,71,0.21284263649578755],[115,97,72,0.21409886025695835],[115,97,73,0.21537520489466538],[115,97,74,0.2166724062284472],[115,97,75,0.21799114069575848],[115,97,76,0.21933202254858697],[115,97,77,0.2206956010120334],[115,97,78,0.22208235740484933],[115,97,79,0.22349270222195244],[115,98,64,0.197490983095493],[115,98,65,0.19864375258357858],[115,98,66,0.1998114741288932],[115,98,67,0.20099520298583393],[115,98,68,0.20219595257453615],[115,98,69,0.2034146919531922],[115,98,70,0.20465234325288942],[115,98,71,0.20590977907492236],[115,98,72,0.20718781985059592],[115,98,73,0.20848723116347523],[115,98,74,0.20980872103419101],[115,98,75,0.21115293716765626],[115,98,76,0.21252046416279957],[115,98,77,0.21391182068477832],[115,98,78,0.21532745659967045],[115,98,79,0.2167677500716615],[115,99,64,0.190356802674309],[115,99,65,0.1915213035359669],[115,99,66,0.19270220091804074],[115,99,67,0.19390052900724372],[115,99,68,0.19511727911886206],[115,99,69,0.19635339717817057],[115,99,70,0.19760978116488942],[115,99,71,0.19888727852063165],[115,99,72,0.20018668351936414],[115,99,73,0.20150873460083218],[115,99,74,0.20285411166706185],[115,99,75,0.20422343334179027],[115,99,76,0.20561725419293503],[115,99,77,0.20703606191806068],[115,99,78,0.20848027449284506],[115,99,79,0.20995023728255846],[115,100,64,0.1831405571815831],[115,100,65,0.1843161501631406],[115,100,66,0.18550961066293403],[115,100,67,0.18672195168146377],[115,100,68,0.18795414228502783],[115,100,69,0.18920710509584993],[115,100,70,0.19048171374576744],[115,100,71,0.19177879029343248],[115,100,72,0.1930991026050442],[115,100,73,0.1944433616985657],[115,100,74,0.1958122190515389],[115,100,75,0.1972062638723478],[115,100,76,0.19862602033503984],[115,100,77,0.2000719447776647],[115,100,78,0.20154442286413377],[115,100,79,0.20304376670961183],[115,101,64,0.17584597319763656],[115,101,65,0.17703202088816933],[115,101,66,0.17823743279858734],[115,101,67,0.17946320063406768],[115,101,68,0.18071027107786336],[115,101,69,0.18197954328975674],[115,101,70,0.1832718663685955],[115,101,71,0.1845880367788602],[115,101,72,0.18592879574128574],[115,101,73,0.1872948265874847],[115,101,74,0.1886867520786918],[115,101,75,0.19010513168847648],[115,101,76,0.19155045884953148],[115,101,77,0.19302315816450355],[115,101,78,0.19452358258086022],[115,101,79,0.19605201052981464],[115,102,64,0.16847683888656523],[115,102,65,0.16967270622694686],[115,102,66,0.1708894593415718],[115,102,67,0.17212806854068796],[115,102,68,0.17338945800063194],[115,102,69,0.17467450327022338],[115,102,70,0.1759840287417651],[115,102,71,0.1773188050865918],[115,102,72,0.17867954665519575],[115,102,73,0.18006690884187326],[115,102,74,0.1814814854140145],[115,102,75,0.1829238058058787],[115,102,76,0.1843943323769699],[115,102,77,0.18589345763497128],[115,102,78,0.1874215014232395],[115,102,79,0.18897870807287426],[115,103,64,0.16103700173848595],[115,103,65,0.1622420565291629],[115,103,66,0.16346954263021918],[115,103,67,0.16472040886695027],[115,103,68,0.1659955567951889],[115,103,69,0.16729583821525873],[115,103,70,0.16862205265105107],[115,103,71,0.1699749447941744],[115,103,72,0.17135520191319809],[115,103,73,0.1727634512279385],[115,103,74,0.17420025724890836],[115,103,75,0.175666119081773],[115,103,76,0.17716146769692492],[115,103,77,0.1786866631641399],[115,103,78,0.18024199185231232],[115,103,79,0.18182766359428537],[115,104,64,0.15353036625902383],[115,104,65,0.15474397966605924],[115,104,66,0.15598159301117037],[115,104,67,0.1572441335543322],[115,104,68,0.15853248012766347],[115,104,69,0.15984746065655453],[115,104,70,0.16118984964644129],[115,104,71,0.16256036563516935],[115,104,72,0.16395966861097372],[115,104,73,0.16538835739601981],[115,104,74,0.16684696699562934],[115,104,75,0.16833596591303157],[115,104,76,0.16985575342975312],[115,104,77,0.17140665685161016],[115,104,78,0.17298892872029792],[115,104,79,0.17460274399059833],[115,105,64,0.14596089160641473],[115,105,65,0.1471824386653458],[115,105,66,0.1484295764726445],[115,105,67,0.14970321065232106],[115,105,68,0.1510041972200311],[115,105,69,0.15233334011099897],[115,105,70,0.15369138867410437],[115,105,71,0.15507903513208127],[115,105,72,0.1564969120078501],[115,105,73,0.15794558951693088],[115,105,74,0.15942557292606208],[115,105,75,0.16093729987786104],[115,105,76,0.16248113768164696],[115,105,77,0.1640573805703811],[115,105,78,0.16566624692372772],[115,105,79,0.16730787645724882],[115,106,64,0.13833258917604085],[115,106,65,0.13956144929309167],[115,106,66,0.14081751222424527],[115,106,67,0.14210166189668705],[115,106,68,0.1434147314274029],[115,106,69,0.14475750065751708],[115,106,70,0.146130693653315],[115,106,71,0.1475349761738926],[115,106,72,0.148970953105462],[115,106,73,0.15043916586225364],[115,106,74,0.1519400897541452],[115,106,75,0.15347413132084875],[115,106,76,0.1550416256327805],[115,106,77,0.15664283355856617],[115,106,78,0.15827793899918507],[115,106,79,0.15994704608876814],[115,107,64,0.1306495201322031],[115,107,65,0.1318850775823978],[115,107,66,0.13314947022310925],[115,107,67,0.13444356023367782],[115,107,68,0.13576815776082757],[115,107,69,0.13712401845904154],[115,107,70,0.13851184099814073],[115,107,71,0.1399322645380085],[115,107,72,0.14138586617048687],[115,107,73,0.14287315832838876],[115,107,74,0.1443945861617535],[115,107,75,0.14595052488118015],[115,107,76,0.14754127706835862],[115,107,77,0.14916706995375595],[115,107,78,0.15082805266145832],[115,107,79,0.15252429342118562],[115,108,64,0.12291579288751281],[115,108,65,0.12415743730923195],[115,108,66,0.12542956864677757],[115,108,67,0.12673302729051544],[115,108,68,0.1280686003559961],[115,108,69,0.12943701922999518],[115,108,70,0.13083895708427196],[115,108,71,0.1322750263569918],[115,108,72,0.13374577620183575],[115,108,73,0.13525168990474307],[115,108,74,0.13679318226841392],[115,108,75,0.13837059696440568],[115,108,76,0.13998420385294436],[115,108,77,0.14163419627040763],[115,108,78,0.1433206882844798],[115,108,79,0.14504371191699583],[115,109,64,0.11513556052971796],[115,109,65,0.11638268741524121],[115,109,66,0.11766197131260753],[115,109,67,0.1189742307920103],[115,109,68,0.12032022988765706],[115,109,69,0.12170067564910114],[115,109,70,0.12311621566080899],[115,109,71,0.12456743552990396],[115,109,72,0.12605485634211494],[115,109,73,0.12757893208587073],[115,109,74,0.1291400470446723],[115,109,75,0.13073851315757185],[115,109,76,0.1323745673478831],[115,109,77,0.1340483688200781],[115,109,78,0.13575999632487135],[115,109,79,0.1375094453925087],[115,110,64,0.10731301819575939],[115,110,65,0.10856502937733914],[115,110,66,0.10985088504351792],[115,110,67,0.1111713819230899],[115,110,68,0.11252726092954346],[115,110,69,0.11391920471731781],[115,110,70,0.11534783520680597],[115,110,71,0.11681371107805055],[115,110,72,0.1183173252331568],[115,110,73,0.11985910222736418],[115,110,74,0.12143939566891093],[115,110,75,0.12305848558751942],[115,110,76,0.1247165757716236],[115,110,77,0.1264137910743],[115,110,78,0.1281501746878968],[115,110,79,0.12992568538738397],[115,111,64,0.09945240039345293],[115,111,65,0.10070870452446129],[115,111,66,0.10200055698046634],[115,111,67,0.1033287326376362],[115,111,68,0.10469394926020603],[115,111,69,0.10609686506129146],[115,111,70,0.10753807623296291],[115,111,71,0.10901811444552284],[115,111,72,0.11053744431601215],[115,111,73,0.11209646084588798],[115,111,74,0.11369548682800645],[115,111,75,0.11533477022273525],[115,111,76,0.11701448150332477],[115,111,77,0.11873471097049032],[115,111,78,0.12049546603620753],[115,111,79,0.12229666847673842],[115,112,64,0.09155797827060408],[115,112,65,0.09281799130129764],[115,112,66,0.09411527184146179],[115,112,67,0.09545057291343867],[115,112,68,0.09682458911455544],[115,112,69,0.09823795418213427],[115,112,70,0.09969123852827416],[115,112,71,0.10118494674434303],[115,112,72,0.10271951507521132],[115,112,73,0.1042953088631654],[115,112,74,0.10591261996163626],[115,112,75,0.10757166411856822],[115,112,76,0.10927257832955545],[115,112,77,0.11101541816069993],[115,112,78,0.11280015504119206],[115,112,79,0.114626673525632],[115,113,64,0.08363405683135022],[115,113,65,0.08489720247879495],[115,113,66,0.08619934912691135],[115,113,67,0.08754122795305858],[115,113,68,0.08892351038091484],[115,113,69,0.09034680564932518],[115,113,70,0.09181165835143018],[115,113,71,0.09331854594401273],[115,113,72,0.09486787622709303],[115,113,73,0.09645998479371126],[115,113,74,0.09809513245003415],[115,113,75,0.09977350260560885],[115,113,76,0.10149519863389111],[115,113,77,0.1032602412030047],[115,113,78,0.10506856557672933],[115,113,79,0.10692001888573804],[115,114,64,0.07568497210015518],[115,114,65,0.07695068231185642],[115,114,66,0.07825714027172265],[115,114,67,0.07960505533102946],[115,114,68,0.08099507574400294],[115,114,69,0.08242778624015373],[115,114,70,0.08390370556739402],[115,114,71,0.08542328400588223],[115,114,72,0.08698690085261884],[115,114,73,0.08859486187673477],[115,114,74,0.09024739674561078],[115,114,75,0.09194465642164817],[115,114,76,0.09368671052981897],[115,114,77,0.09547354469595393],[115,114,78,0.09730505785576249],[115,114,79,0.09918105953461032],[115,115,64,0.06771508823309846],[115,115,65,0.06898280364387854],[115,115,66,0.0702930257438063],[115,115,67,0.07164644208703469],[115,115,68,0.07304367777349263],[115,115,69,0.0744852930243542],[115,115,70,0.07597178072879768],[115,115,71,0.07750356396198865],[115,115,72,0.07908099347432218],[115,115,73,0.08070434515185765],[115,115,74,0.08237381744808914],[115,115,75,0.08408952878686693],[115,115,76,0.08585151493660492],[115,115,77,0.0876597263557255],[115,115,78,0.0895140255093414],[115,115,79,0.09141418415719554],[115,116,64,0.05972879457673175],[115,116,65,0.060997964958398376],[115,116,66,0.062311412089249896],[115,116,67,0.06366980176533649],[115,116,68,0.06507373595841265],[115,116,69,0.06652375039419833],[115,116,70,0.06802031210242887],[115,116,71,0.06956381693863167],[115,116,72,0.07115458707765937],[115,116,73,0.07279286847891625],[115,116,74,0.07447882832342112],[115,116,75,0.07621255242252006],[115,116,76,0.07799404259838627],[115,116,77,0.07982321403625542],[115,116,78,0.08169989260840033],[115,116,79,0.08362381216986153],[115,117,64,0.051730502674133816],[115,117,65,0.05300058737748464],[115,117,66,0.054316728923795465],[115,117,67,0.055679571400086725],[115,117,68,0.057089693687033594],[115,117,69,0.05854760703968076],[115,117,70,0.060053752640441826],[115,117,71,0.06160849912432276],[115,117,72,0.06321214007639903],[115,117,73,0.06486489150148306],[115,117,74,0.06656688926612381],[115,117,75,0.06831818651275667],[115,117,76,0.07011875104613141],[115,117,77,0.07196846269197976],[115,117,78,0.07386711062791296],[115,117,79,0.07581439068657775],[115,118,64,0.0437246432186042],[115,118,65,0.04499511160730818],[115,118,66,0.046313425871059744],[115,118,67,0.04768020844695903],[115,118,68,0.04909601517266643],[115,118,69,0.0505613328692362],[115,118,70,0.05207657689672884],[115,118,71,0.05364208868254128],[115,118,72,0.05525813322248413],[115,118,73,0.05692489655454336],[115,118,74,0.058642483205469276],[115,118,75,0.060410913610005335],[115,118,76,0.0622301215028957],[115,118,77,0.06409995128361923],[115,118,78,0.06602015535385197],[115,118,79,0.0679903914276791],[115,119,64,0.03571566295478057],[115,119,65,0.03698599483068282],[115,119,66,0.03830596944728376],[115,119,67,0.03967618766088932],[115,119,68,0.041097182325167736],[115,119,69,0.04256941587577351],[115,119,70,0.04409327788824202],[115,119,71,0.045669082609090195],[115,119,72,0.04729706646015713],[115,119,73,0.048977385516117466],[115,119,74,0.05071011295531358],[115,119,75,0.05249523648371829],[115,119,76,0.05433265573216606],[115,119,77,0.05622217962680098],[115,119,78,0.05816352373274514],[115,119,79,0.06015630757100471],[115,120,64,0.02770802152698648],[115,120,65,0.028977707546377074],[115,120,66,0.030298839892416274],[115,120,67,0.03167199791972897],[115,120,68,0.033097691567953336],[115,120,69,0.034576358947833175],[115,120,70,0.03610836390106681],[115,120,71,0.03769399353385128],[115,120,72,0.03933345572415142],[115,120,73,0.041026876602628826],[115,120,74,0.042774298007377476],[115,120,75,0.04457567491227715],[115,120,76,0.0464308728290988],[115,120,77,0.04833966518331917],[115,120,78,0.05030173066363658],[115,120,79,0.052316650545217835],[115,121,64,0.019706188275209036],[115,121,65,0.0209747303556021],[115,121,66,0.022296527947932854],[115,121,67,0.023672138994211833],[115,121,68,0.02510205060092302],[115,121,69,0.026586676626268346],[115,121,70,0.028126355241652412],[115,121,71,0.029721346467344534],[115,121,72,0.03137182968234992],[115,121,73,0.03307790110842285],[115,121,74,0.03483957126837134],[115,121,75,0.036656762418459554],[115,121,76,0.038529305955050164],[115,121,77,0.0404569397954338],[115,121,78,0.0424393057328481],[115,121,79,0.0444759467657051],[115,122,64,0.011714638978507441],[115,122,65,0.0129815506954713],[115,122,66,0.014303531581189854],[115,122,67,0.015681118264035454],[115,122,68,0.017114775109093594],[115,122,69,0.018604891806249413],[115,122,70,0.020151780932994467],[115,122,71,0.021755675491888615],[115,122,72,0.02341672642271181],[115,122,73,0.025135000089235637],[115,122,74,0.026910475740767215],[115,122,75,0.028743042948269182],[115,122,76,0.030632499015198433],[115,122,77,0.03257854636301166],[115,122,78,0.03458078989134045],[115,122,79,0.03663873431285314],[115,123,64,0.0037378525456465694],[115,123,65,0.0050026595192314005],[115,123,66,0.006324352656108867],[115,123,67,0.007703447379850958],[115,123,68,0.009140385416738617],[115,123,69,0.01063553238438808],[115,123,70,0.012189175355569515],[115,123,71,0.013801520397160705],[115,123,72,0.015472690084261498],[115,123,73,0.01720272098940534],[115,123,74,0.018991561147017055],[115,123,75,0.020839067492924024],[115,123,76,0.022745003279057707],[115,123,77,0.024709035463301388],[115,123,78,0.02673073207447807],[115,123,79,0.028809559552504638],[115,124,64,-0.004219692346636439],[115,124,65,-0.002957452076333078],[115,124,66,-0.0016365064494027193],[115,124,67,-2.563611284314704E-4],[115,124,68,0.001183403087440138],[115,124,69,0.002683127851385081],[115,124,70,0.00424307483342351],[115,124,71,0.0058634232605586645],[115,124,72,0.007544267432546825],[115,124,73,0.00928561421323515],[115,124,74,0.011087380497616484],[115,124,75,0.012949390654406034],[115,124,76,0.014871373944283617],[115,124,77,0.01685296191374952],[115,124,78,0.01889368576459205],[115,124,79,0.020992973698993223],[115,125,64,-0.012153520667935569],[115,125,65,-0.010894296276519055],[115,125,66,-0.009574546279494611],[115,125,67,-0.008193797297222749],[115,125,68,-0.006751652530151475],[115,125,69,-0.005247794169995268],[115,125,70,-0.003681985834782131],[115,125,71,-0.0020540750278322806],[115,125,72,-3.6399562063482716E-4],[115,125,73,0.0013882296403076033],[115,125,74,0.0032024866028185217],[115,125,75,0.005078567154376268],[115,125,76,0.007016166643573629],[115,125,77,0.009014881277657705],[115,125,78,0.011074205496148015],[115,125,79,0.013193529320559394],[115,126,64,-0.02005916450125428],[115,126,65,-0.01880339202755721],[115,126,66,-0.01748527379008774],[115,126,67,-0.016104357228926947],[115,126,68,-0.014660267811049843],[115,126,69,-0.01315271144183533],[115,126,70,-0.011581476899978682],[115,126,71,-0.009946438295876714],[115,126,72,-0.008247557553448082],[115,126,73,-0.006484886915460564],[115,126,74,-0.004658571472210715],[115,126,75,-0.0027688517137545166],[115,126,76,-8.160661055444107E-4],[115,126,77,0.0011993463124748693],[115,126,78,0.00327684330331246],[115,126,79,0.005415776786941051],[115,127,64,-0.027932166562450733],[115,127,65,-0.02668026856828737],[115,127,66,-0.02536420589185101],[115,127,67,-0.023983546645296727],[115,127,68,-0.02253793841675561],[115,127,69,-0.02102711068244667],[115,127,70,-0.01945087724173833],[115,127,71,-0.017809138675221048],[115,127,72,-0.01610188482576258],[115,127,73,-0.014329197302609398],[115,127,74,-0.012491252008386855],[115,127,75,-0.010588321689190439],[115,127,76,-0.008620778507629545],[115,127,77,-0.006589096638869418],[115,127,78,-0.0044938548896791275],[115,127,79,-0.00233573934045328],[115,128,64,-0.035768083772255044],[115,128,65,-0.03452046901486211],[115,128,66,-0.033206873046644325],[115,128,67,-0.03182688449467819],[115,128,68,-0.030380172912368664],[115,128,69,-0.028866491192431232],[115,128,70,-0.02728567800237136],[115,128,71,-0.02563766024252545],[115,128,72,-0.02392245552662864],[115,128,73,-0.022140174684981084],[115,128,74,-0.020291024290056914],[115,128,75,-0.01837530920475583],[115,128,76,-0.016393435153152724],[115,128,77,-0.014345911313795257],[115,128,78,-0.012233352935553388],[115,128,79,-0.010056483975994124],[115,129,64,-0.04356249088105568],[115,129,65,-0.042319553998675596],[115,129,66,-0.0410088229176267],[115,129,67,-0.039629906613340316],[115,129,68,-0.038182496438193325],[115,129,69,-0.03666636853561911],[115,129,70,-0.035081386276269666],[115,129,71,-0.03342750271629236],[115,129,72,-0.031704763077687104],[115,129,73,-0.029913307250814314],[115,129,74,-0.02805337231890015],[115,129,75,-0.026125295104735824],[115,129,76,-0.024129514739428815],[115,129,77,-0.02206657525325706],[115,129,78,-0.01993712818862492],[115,129,79,-0.017741935235099482],[115,130,64,-0.05131098414606017],[115,130,65,-0.05007310535712495],[115,130,66,-0.04876562407263446],[115,130,67,-0.04738816944049601],[115,130,68,-0.045940454435435374],[115,130,69,-0.04442227827448719],[115,130,70,-0.04283352885409819],[115,130,71,-0.04117418520889793],[115,130,72,-0.03944431999211484],[115,130,73,-0.03764410197769619],[115,130,74,-0.03577379858398699],[115,130,75,-0.03383377841916069],[115,130,76,-0.03182451384826035],[115,130,77,-0.02974658358189952],[115,130,78,-0.027600675286628018],[115,130,79,-0.025387588216929657],[115,131,64,-0.05900918506102287],[115,131,65,-0.057776729877393074],[115,131,66,-0.05647286974102117],[115,131,67,-0.055097253787206646],[115,131,68,-0.05364961642618671],[115,131,69,-0.05212977976025157],[115,131,70,-0.05053765602203075],[115,131,71,-0.04887325003401877],[115,131,72,-0.04713666168930197],[115,131,73,-0.04532808845356062],[115,131,74,-0.043447827888187684],[115,131,75,-0.041496280194727064],[115,131,76,-0.03947395078048577],[115,131,77,-0.03738145284536887],[115,131,78,-0.03521950998994261],[115,131,79,-0.032988958844697214],[115,132,64,-0.06665274413874439],[115,132,65,-0.06542606309346044],[115,132,66,-0.06412618162416422],[115,132,67,-0.06275276865937418],[115,132,68,-0.06130557984790452],[115,132,69,-0.05978445997783688],[115,132,70,-0.05818934541623266],[115,132,71,-0.05652026656965492],[115,132,72,-0.054777350365461164],[115,132,73,-0.05296082275393965],[115,132,74,-0.05107101123113389],[115,132,75,-0.04910834738255432],[115,132,76,-0.04707336944763485],[115,132,77,-0.04496672490498144],[115,132,78,-0.04278917307841745],[115,132,79,-0.040541587763800124],[115,133,64,-0.07423734474594157],[115,133,65,-0.07301677313594468],[115,133,66,-0.07172121375923823],[115,133,67,-0.07035035513442223],[115,133,68,-0.06890397394197911],[115,133,69,-0.06738193744532694],[115,133,70,-0.06578420593219125],[115,133,71,-0.0641108351763574],[115,133,72,-0.06236197891977335],[115,133,73,-0.060537891375068265],[115,133,74,-0.05863892974833662],[115,133,75,-0.05666555678238461],[115,133,76,-0.054618343320295026],[115,133,77,-0.0524979708893617],[115,133,78,-0.05030523430539624],[115,133,79,-0.0480410442973771],[115,134,64,-0.08175870699069082],[115,134,65,-0.08054456463496878],[115,134,66,-0.07925365643645699],[115,134,67,-0.07788569029186532],[115,134,68,-0.07644046369659496],[115,134,69,-0.07491786616809137],[115,134,70,-0.07331788168909381],[115,134,71,-0.07164059117085197],[115,134,72,-0.06988617493626792],[115,134,73,-0.06805491522304186],[115,134,74,-0.06614719870665875],[115,134,75,-0.06416351904342177],[115,134,76,-0.062104479433385706],[115,134,77,-0.059970795203239224],[115,134,78,-0.057763296409141685],[115,134,79,-0.05548293045948538],[115,135,64,-0.0892125916626369],[115,135,65,-0.08800518267625224],[115,135,66,-0.08671924016997579],[115,135,67,-0.08535449119796112],[115,135,68,-0.0839107538440812],[115,135,69,-0.08238793964778623],[115,135,70,-0.08078605604944833],[115,135,71,-0.07910520885525707],[115,135,72,-0.07734560472163166],[115,135,73,-0.07550755365922124],[115,135,74,-0.0735914715563345],[115,135,75,-0.07159788272200407],[115,135,76,-0.06952742244853638],[115,135,77,-0.06738083959360053],[115,135,78,-0.0651589991818553],[115,135,79,-0.06286288502609327],[115,136,64,-0.09659480422557476],[115,136,65,-0.09539441681003058],[115,136,66,-0.09411373972206138],[115,136,67,-0.09275251894405145],[115,136,68,-0.09131059291235044],[115,136,69,-0.08978789494583461],[115,136,70,-0.08818445569355116],[115,136,71,-0.08650040560150407],[115,136,72,-0.08473597739855299],[115,136,73,-0.08289150860149086],[115,136,74,-0.08096744403914713],[115,136,75,-0.0789643383957177],[115,136,76,-0.07688285877317447],[115,136,77,-0.07472378727280682],[115,136,78,-0.07248802359589634],[115,136,79,-0.0701765876634991],[115,137,64,-0.10390119886260873],[115,137,65,-0.10270810511301065],[115,137,66,-0.10143297818073693],[115,137,67,-0.10007558273879857],[115,137,68,-0.09863577733063922],[115,137,69,-0.09711351680159097],[115,137,70,-0.09550885474901127],[115,137,71,-0.09382194599116378],[115,137,72,-0.09205304905480904],[115,137,73,-0.09020252868157796],[115,137,74,-0.08827085835296622],[115,137,75,-0.08625862283415797],[115,137,76,-0.0841665207365292],[115,137,77,-0.08199536709888111],[115,137,78,-0.0797460959874089],[115,137,79,-0.07741976311437582],[115,138,64,-0.11112768257406747],[115,138,65,-0.10994213830353583],[115,138,66,-0.10867283109107584],[115,138,67,-0.10731954405449307],[115,138,68,-0.10588215558972414],[115,138,69,-0.10436064180536864],[115,138,70,-0.1027550789755034],[115,138,71,-0.10106564601085255],[115,138,72,-0.09929262694826857],[115,138,73,-0.09743641345860643],[115,138,74,-0.0954975073728227],[115,138,75,-0.09347652322651179],[115,138,76,-0.09137419082272658],[115,138,77,-0.08919135781313747],[115,138,78,-0.08692899229753093],[115,138,79,-0.08458818544162205],[115,139,64,-0.11827021932778115],[115,139,65,-0.11709246390957107],[115,139,66,-0.11582923063975348],[115,139,67,-0.11448032082703896],[115,139,68,-0.11304563245621757],[115,139,69,-0.1115251626259336],[115,139,70,-0.10991901000435911],[115,139,71,-0.10822737730283194],[115,139,72,-0.10645057376742051],[115,139,73,-0.1045890176884936],[115,139,74,-0.10264323892812921],[115,139,75,-0.10061388146557071],[115,139,76,-0.09850170596058416],[115,139,77,-0.09630759233476416],[115,139,78,-0.09403254237079273],[115,139,79,-0.0916776823296257],[115,140,64,-0.12532483426205454],[115,140,65,-0.12415509048984086],[115,140,66,-0.1228981698931918],[115,140,67,-0.12155389170995601],[115,140,68,-0.12012217324128405],[115,140,69,-0.11860303229280678],[115,140,70,-0.11699658963333304],[115,140,71,-0.11530307147113217],[115,140,72,-0.11352281194776326],[115,140,73,-0.11165625564952764],[115,140,74,-0.10970396013638017],[115,140,75,-0.1076665984885109],[115,140,76,-0.10554496187044193],[115,140,77,-0.10333996211269703],[115,140,78,-0.10105263431104283],[115,140,79,-0.09868413944327592],[115,141,64,-0.13228761794108745],[115,141,65,-0.1311260919078715],[115,141,66,-0.1298757070890446],[115,141,67,-0.1285363003821406],[115,141,68,-0.1271078081235214],[115,141,69,-0.12559026853311395],[115,141,70,-0.12398382417628806],[115,141,71,-0.12228872444294936],[115,141,72,-0.1205053280438032],[115,141,73,-0.11863410552386922],[115,141,74,-0.11667564179308165],[115,141,75,-0.11463063867418488],[115,141,76,-0.11249991746777299],[115,141,77,-0.11028442153452633],[115,141,78,-0.1079852188946474],[115,141,79,-0.10560350484446979],[115,142,64,-0.13915473066317074],[115,142,65,-0.13800161165926172],[115,142,66,-0.1367579699813547],[115,142,67,-0.13542365990972138],[115,142,68,-0.13399863652633826],[115,142,69,-0.13248295816332156],[115,142,70,-0.1308767888681347],[115,142,71,-0.12918040088564597],[115,142,72,-0.12739417715698997],[115,142,73,-0.12551861383531304],[115,142,74,-0.12355432281823864],[115,142,75,-0.12150203429725959],[115,142,76,-0.1193625993239108],[115,142,77,-0.11713699239276953],[115,142,78,-0.11482631404129051],[115,142,79,-0.11243179346644572],[115,143,64,-0.1459224068212659],[115,143,65,-0.14477786725179898],[115,143,66,-0.14354116023899044],[115,143,67,-0.14221215716161584],[115,143,68,-0.14079083154943695],[115,143,69,-0.13927726153546294],[115,143,70,-0.13767163232462987],[115,143,71,-0.13597423867896485],[115,143,72,-0.13418548741920144],[115,143,73,-0.13230589994291286],[115,143,74,-0.13033611475900952],[115,143,75,-0.12827689003880394],[115,143,76,-0.1261291061834955],[115,143,77,-0.1238937684081226],[115,143,78,-0.12157200934199242],[115,143,79,-0.11916509164555422],[115,144,64,-0.15258695931616484],[115,144,65,-0.1514511546386078],[115,144,66,-0.15022155789755576],[115,144,67,-0.14889805727898164],[115,144,68,-0.14748064445459397],[115,144,69,-0.14596941703804978],[115,144,70,-0.1443645810572295],[115,144,71,-0.1426664534426496],[115,144,72,-0.14087546453196986],[115,144,73,-0.1389921605906672],[115,144,74,-0.13701720634872416],[115,144,75,-0.13495138755352765],[115,144,76,-0.1327956135388385],[115,144,77,-0.1305509198098772],[115,144,78,-0.12821847064453074],[115,144,79,-0.12579956171065398],[115,145,64,-0.1591447840223883],[115,145,65,-0.1580178527044952],[115,145,66,-0.15679552586493706],[115,145,67,-0.15547770819872475],[115,145,68,-0.15406440920590447],[115,145,69,-0.1525557456518305],[115,145,70,-0.15095194404315904],[115,145,71,-0.1492533431196318],[115,145,72,-0.1474603963616088],[115,145,73,-0.14557367451342718],[115,145,74,-0.14359386812242259],[115,145,75,-0.14152179009382304],[115,145,76,-0.13935837826136255],[115,145,77,-0.13710469797366964],[115,145,78,-0.1347619446964301],[115,145,79,-0.1323314466303006],[115,146,64,-0.16559236430648416],[115,146,65,-0.16447442780515298],[115,146,66,-0.16325951448014275],[115,146,67,-0.1619475452307233],[115,146,68,-0.16053854706414106],[115,146,69,-0.15903265556005464],[115,146,70,-0.1574301173503574],[115,146,71,-0.15573129261444596],[115,146,72,-0.15393665758990605],[115,146,73,-0.15204680709868224],[115,146,74,-0.1500624570885768],[115,146,75,-0.1479844471902786],[115,146,76,-0.14581374328977847],[115,146,77,-0.14355144011621856],[115,146,78,-0.14119876384518082],[115,146,79,-0.1387570747173844],[115,147,64,-0.17192627559789775],[115,147,65,-0.170817438359388],[115,147,66,-0.16961006612561313],[115,147,67,-0.1683040956889411],[115,147,68,-0.16689957123540955],[115,147,69,-0.16539664681341681],[115,147,70,-0.1637955888174697],[115,147,71,-0.16209677848704673],[115,147,72,-0.1603007144205486],[115,147,73,-0.1584080151044035],[115,147,74,-0.1564194214571678],[115,147,75,-0.1543357993888308],[115,147,76,-0.15215814237517344],[115,147,77,-0.14988757404722908],[115,147,78,-0.14752535079585716],[115,147,79,-0.1450728643913931],[115,148,64,-0.17814319001258028],[115,148,65,-0.17704353949454465],[115,148,66,-0.17584381989315845],[115,148,67,-0.17454398357659284],[115,148,68,-0.17314409157426058],[115,148,69,-0.1716443160498432],[115,148,70,-0.17004494278905202],[115,148,71,-0.1683463737021862],[115,148,72,-0.1665491293414486],[115,148,73,-0.16465385143309985],[115,148,74,-0.16266130542428148],[115,148,75,-0.1605723830447212],[115,148,76,-0.1583881048831699],[115,148,77,-0.15610962297861763],[115,148,78,-0.15373822342629984],[115,148,79,-0.1512753289984563],[115,149,64,-0.18423988102900057],[115,149,65,-0.18314948774479267],[115,149,66,-0.18195751630320234],[115,149,67,-0.18066393432503447],[115,149,68,-0.17926881934092787],[115,149,69,-0.1777723612687917],[115,149,70,-0.1761748649056607],[115,149,71,-0.17447675243403038],[115,149,72,-0.17267856594263908],[115,149,73,-0.17078096996176695],[115,149,74,-0.16878475401289506],[115,149,75,-0.1666908351729276],[115,149,76,-0.1645002606528314],[115,149,77,-0.16221421039074035],[115,149,78,-0.15983399965953393],[115,149,79,-0.157361081688853],[115,150,64,-0.19021322821672915],[115,150,65,-0.1891321458024382],[115,150,66,-0.18794800207748796],[115,150,67,-0.18666077958653704],[115,150,68,-0.18527057201285457],[115,150,69,-0.18377758666022792],[115,150,70,-0.18218214694898216],[115,150,71,-0.18048469492616936],[115,150,72,-0.17868579378989946],[115,150,73,-0.17678613042788138],[115,150,74,-0.17478651797001366],[115,150,75,-0.17268789835523302],[115,150,76,-0.17049134491247253],[115,150,77,-0.16819806495577672],[115,150,78,-0.16580940239358322],[115,150,79,-0.16332684035213452],[115,151,64,-0.19606022201775541],[115,151,65,-0.19498848732242713],[115,151,66,-0.19381223496541455],[115,151,67,-0.19253146208111394],[115,151,68,-0.19114627815067753],[115,151,69,-0.18965690748844422],[115,151,70,-0.18806369174217963],[115,151,71,-0.18636709240719174],[115,151,72,-0.18456769335428314],[115,151,73,-0.18266620337161588],[115,151,74,-0.18066345872032663],[115,151,75,-0.1785604257040979],[115,151,76,-0.17635820325254248],[115,151,77,-0.17405802551844085],[115,151,78,-0.17166126448884889],[115,151,79,-0.16916943261003448],[115,152,64,-0.20177796858021024],[115,152,65,-0.2007156017797097],[115,152,66,-0.19954728862367332],[115,152,67,-0.19827304049706795],[115,152,68,-0.1968929823183354],[115,152,69,-0.1954073550303861],[115,152,70,-0.19381651810511424],[115,152,71,-0.1921209520614907],[115,152,72,-0.19032126099720748],[115,152,73,-0.18841817513393622],[115,152,74,-0.18641255337604912],[115,152,75,-0.1843053858830045],[115,152,76,-0.18209779665524906],[115,152,77,-0.1797910461336858],[115,152,78,-0.17738653381271863],[115,152,79,-0.1748858008668327],[115,153,64,-0.2073636946446713],[115,153,65,-0.2063106993796463],[115,153,66,-0.20515035754936461],[115,153,67,-0.20388269444543994],[115,153,68,-0.20250785005747907],[115,153,69,-0.20102608156867463],[115,153,70,-0.19943776586463002],[115,153,71,-0.19774340205548346],[115,153,72,-0.19594361401129468],[115,153,73,-0.1940391529107648],[115,153,74,-0.19203089980313282],[115,153,75,-0.18991986818345308],[115,153,76,-0.18770720658110485],[115,153,77,-0.185394201161585],[115,153,78,-0.18298227834159053],[115,153,79,-0.18047300741735506],[115,154,64,-0.21281475248317827],[115,154,65,-0.21177111602157517],[115,154,66,-0.21061876206671604],[115,154,67,-0.20935772946848086],[115,154,68,-0.20798817291631455],[115,154,69,-0.20651036543943957],[115,154,70,-0.20492470092002224],[115,154,71,-0.20323169661936513],[115,154,72,-0.20143199571708248],[115,154,73,-0.1995263698633355],[115,154,74,-0.19751572174396614],[115,154,75,-0.19540108765873543],[115,154,76,-0.19318364011251954],[115,154,77,-0.19086469041951049],[115,154,78,-0.18844569132043154],[115,154,79,-0.18592823961273108],[115,155,64,-0.21812862489067741],[115,155,65,-0.21709431831527048],[115,155,66,-0.21594995336712886],[115,155,67,-0.21469558210187367],[115,155,68,-0.2133313735325948],[115,155,69,-0.2118576161346929],[115,155,70,-0.2102747203634111],[115,155,71,-0.20858322118412154],[115,155,72,-0.20678378061532765],[115,155,73,-0.2048771902844574],[115,155,74,-0.2028643739962882],[115,155,75,-0.2007463903142066],[115,155,76,-0.19852443515415807],[115,155,77,-0.1961998443913321],[115,155,78,-0.19377409647959498],[115,155,79,-0.1912488150836309],[115,156,64,-0.22330293022903713],[115,156,65,-0.22227790865042618],[115,156,66,-0.22114151860268771],[115,156,67,-0.2198938249908381],[115,156,68,-0.2185350107708992],[115,156,69,-0.2170653794593761],[115,156,70,-0.2154853576551623],[115,156,71,-0.21379549757394145],[115,156,72,-0.2119964795950433],[115,156,73,-0.21008911482083048],[115,156,74,-0.20807434764845556],[115,156,75,-0.20595325835419465],[115,156,76,-0.20372706569020815],[115,156,77,-0.2013971294937792],[115,156,78,-0.1989649533090363],[115,156,79,-0.19643218702112708],[115,157,64,-0.22833542752377256],[115,157,65,-0.22731963031930413],[115,157,66,-0.22619118603327804],[115,157,67,-0.22495017206026657],[115,157,68,-0.22359678491435087],[115,157,69,-0.2221313427432282],[115,157,70,-0.2205542878544936],[115,157,71,-0.21886618925416512],[115,157,72,-0.21706774519741034],[115,157,73,-0.21515978575155492],[115,157,74,-0.21314327537120348],[115,157,75,-0.21101931548568897],[115,157,76,-0.20878914709869412],[115,157,77,-0.20645415340010087],[115,157,78,-0.20401586239006808],[115,157,79,-0.201475949515312],[115,158,64,-0.23322402161320044],[115,158,65,-0.23221737269226972],[115,158,66,-0.2310968302270252],[115,158,67,-0.22986248373860085],[115,158,68,-0.22851454291047468],[115,158,69,-0.22705334010718548],[115,158,70,-0.22547933290498556],[115,158,71,-0.2237931066344886],[115,158,72,-0.2219953769352777],[115,158,73,-0.22008699232254691],[115,158,74,-0.21806893676561634],[115,158,75,-0.21594233227852444],[115,158,76,-0.2137084415225563],[115,158,77,-0.21136867042074536],[115,158,78,-0.20892457078437],[115,158,79,-0.2063778429513976],[115,159,64,-0.23796676835017772],[115,159,65,-0.2369691764463715],[115,159,66,-0.235856477314217],[115,159,67,-0.23462877223561585],[115,159,68,-0.23328628367136772],[115,159,69,-0.23182935778447677],[115,159,70,-0.2302584669751554],[115,159,71,-0.2285742124275868],[115,159,72,-0.22677732666841444],[115,159,73,-0.22486867613702477],[115,159,74,-0.22284926376746828],[115,159,75,-0.2207202315822231],[115,159,76,-0.21848286329765532],[115,159,77,-0.2161385869412198],[115,159,78,-0.21368897748041438],[115,159,79,-0.2111357594634512],[115,160,64,-0.24256187985652167],[115,160,65,-0.24157323884705106],[115,160,66,-0.24046831029479898],[115,160,67,-0.23924720687419443],[115,160,68,-0.23791016342826632],[115,160,69,-0.23645753949650317],[115,160,70,-0.23488982185418317],[115,160,71,-0.2332076270632366],[115,160,72,-0.2314117040346021],[115,160,73,-0.22950293660215204],[115,160,74,-0.22748234610802542],[115,160,75,-0.22535109399957698],[115,160,76,-0.22311048443779158],[115,160,77,-0.22076196691721284],[115,160,78,-0.2183071388973985],[115,160,79,-0.21574774844585953],[115,161,64,-0.24700772982989005],[115,161,65,-0.24602791908277621],[115,161,66,-0.24493067439922755],[115,161,67,-0.243716119475885],[115,161,68,-0.24238450114029597],[115,161,69,-0.2409361918832854],[115,161,70,-0.23937169240257927],[115,161,71,-0.2376916341577351],[115,161,72,-0.23589678193635277],[115,161,73,-0.2339880364316269],[115,161,74,-0.2319664368310944],[115,161,75,-0.2298331634167674],[115,161,76,-0.22758954017652244],[115,161,77,-0.22523703742677592],[115,161,78,-0.22277727444646633],[115,161,79,-0.22021202212230473],[115,162,64,-0.25130285890322535],[115,162,65,-0.2503317436526924],[115,162,66,-0.24924208250278246],[115,162,67,-0.24803400980033585],[115,162,68,-0.2467077839575048],[115,162,69,-0.2452637899885851],[115,162,70,-0.24370254205788766],[115,162,71,-0.24202468603870653],[115,162,72,-0.24023100208335146],[115,162,73,-0.2383224072043144],[115,162,74,-0.2362999578664121],[115,162,75,-0.23416485259011055],[115,162,76,-0.2319184345658839],[115,162,77,-0.22956219427965419],[115,162,78,-0.22709777214932292],[115,162,79,-0.22452696117235738],[115,163,64,-0.2554459800568888],[115,163,65,-0.25448341180741973],[115,163,66,-0.2534012205934627],[115,163,67,-0.2521995510387375],[115,163,68,-0.25087867273830766],[115,163,69,-0.24943898279981747],[115,163,70,-0.2478810083955577],[115,163,71,-0.24620540932542778],[115,163,72,-0.24441298059075578],[115,163,73,-0.24250465497904872],[115,163,74,-0.2404815056595152],[115,163,75,-0.23834474878956413],[115,163,76,-0.23609574613213424],[115,163,77,-0.23373600768390002],[115,163,78,-0.23126719431436493],[115,163,79,-0.22869112041580542],[115,164,64,-0.25943598408323787],[115,164,65,-0.2584818010427502],[115,164,66,-0.25740695329322383],[115,164,67,-0.25621159536102456],[115,164,68,-0.2548960076210943],[115,164,69,-0.2534605988425187],[115,164,70,-0.2519059087447335],[115,164,71,-0.25023261056442536],[115,164,72,-0.2484415136330963],[115,164,73,-0.24653356596536302],[115,164,74,-0.2445098568578309],[115,164,75,-0.24237161949874542],[115,164,76,-0.24012023358828383],[115,164,77,-0.23775722796952004],[115,164,78,-0.23528428327008521],[115,164,79,-0.2327032345544805],[115,165,64,-0.26327194510384566],[115,165,65,-0.2623259726464443],[115,165,66,-0.26125832943274907],[115,165,67,-0.2600691795170371],[115,165,68,-0.25875881365019815],[115,165,69,-0.2573276518295601],[115,165,70,-0.25577624585916203],[115,165,71,-0.25410528192054105],[115,165,72,-0.2523155831539857],[115,165,73,-0.2504081122503399],[115,165,74,-0.24838397405319268],[115,165,75,-0.2462444181716571],[115,165,76,-0.2439908416035993],[115,165,77,-0.24162479136935366],[115,165,78,-0.23914796715594522],[115,165,79,-0.2365622239717733],[115,166,64,-0.2669531261392305],[115,166,65,-0.2660151772979936],[115,166,66,-0.2649545876796291],[115,166,67,-0.2637715304915069],[115,166,68,-0.2624663064560987],[115,166,69,-0.26103934636497717],[115,166,70,-0.25949121364308647],[115,166,71,-0.257822606923338],[115,166,72,-0.25603436263150015],[115,166,73,-0.2541274575814537],[115,166,74,-0.2521030115806524],[115,166,75,-0.24996229004599413],[115,166,76,-0.2477067066299582],[115,166,77,-0.24533782585705322],[115,166,78,-0.24285736577058592],[115,166,79,-0.2402672005897144],[115,167,64,-0.2704789847312541],[115,167,65,-0.2695488607215084],[115,167,66,-0.26849516222010517],[115,167,67,-0.2673180712130311],[115,167,68,-0.2660178979900092],[115,167,69,-0.26459508370258045],[115,167,70,-0.26305020293228565],[115,167,71,-0.26138396626900073],[115,167,72,-0.25959722289939213],[115,167,73,-0.25769096320556395],[115,167,74,-0.25566632137374123],[115,167,75,-0.2535245780131853],[115,167,76,-0.251267162785209],[115,167,77,-0.24889565704232375],[115,167,78,-0.2464117964775382],[115,167,79,-0.24381747378376872],[115,168,64,-0.2738491786180012],[115,168,65,-0.2729266693915441],[115,168,66,-0.2718796884941873],[115,168,67,-0.2707084263168428],[115,168,68,-0.2694132023126702],[115,168,69,-0.2679944675591469],[115,168,70,-0.26645280733006926],[115,168,71,-0.2647889436775468],[115,168,72,-0.26300373802394705],[115,168,73,-0.26109819376387045],[115,168,74,-0.25907345887599476],[115,168,75,-0.25693082854498694],[115,168,76,-0.2546717477933492],[115,168,77,-0.25229781412323316],[115,168,78,-0.24981078016824],[115,168,79,-0.24721255635516548],[115,169,64,-0.27706357146123173],[115,169,65,-0.27614845629195395],[115,169,66,-0.2751080089842416],[115,169,67,-0.2739424279614695],[115,169,68,-0.27265204143743216],[115,169,69,-0.2712373099822948],[115,169,70,-0.2696988290983222],[115,169,71,-0.26803733180543654],[115,169,72,-0.26625369123657583],[115,169,73,-0.26434892324292103],[115,169,74,-0.2623241890088349],[115,169,75,-0.2601807976767132],[115,169,76,-0.2579202089816125],[115,169,77,-0.2555440358956865],[115,169,78,-0.25305404728245307],[115,169,79,-0.25045217056084956],[115,170,64,-0.2801222386264931],[115,170,65,-0.2792142867278622],[115,170,66,-0.278180179057133],[115,170,67,-0.27702012169937107],[115,170,68,-0.27573445122772033],[115,170,69,-0.27432363727312603],[115,170,70,-0.2727882851036839],[115,170,71,-0.27112913821367235],[115,170,72,-0.26934708092223114],[115,170,73,-0.2674431409817625],[115,170,74,-0.2654184921958932],[115,170,75,-0.2632744570471989],[115,170,76,-0.26101250933455544],[115,170,77,-0.25863427682014983],[115,170,78,-0.2561415438861716],[115,170,79,-0.25353625420114323],[115,171,64,-0.28302547301570447],[115,171,65,-0.2821244441905638],[115,171,66,-0.2810964728597357],[115,171,67,-0.2799417724013644],[115,171,68,-0.27866068734869365],[115,171,69,-0.27725369596344485],[115,171,70,-0.2757214128186787],[115,171,71,-0.27406459139119865],[115,171,72,-0.27228412666345747],[115,171,73,-0.27038105773504406],[115,171,74,-0.2683565704435906],[115,171,75,-0.2662119999952992],[115,171,76,-0.26394883360495136],[115,171,77,-0.26156871314543906],[115,171,78,-0.25907343780683],[115,171,79,-0.2564649667649326],[115,172,64,-0.2857737909523326],[115,172,65,-0.28487943627547097],[115,172,66,-0.28385738926792925],[115,172,67,-0.2827078702349566],[115,172,68,-0.2814312312732118],[115,172,69,-0.2800279588476754],[115,172,70,-0.2784986763779086],[115,172,71,-0.2768441468337187],[115,172,72,-0.2750652753401961],[115,172,73,-0.2731631117921932],[115,172,74,-0.2711388534780914],[115,172,75,-0.26899384771305157],[115,172,76,-0.26672959448161493],[115,172,77,-0.26434774908968706],[115,172,78,-0.2618501248259264],[115,172,79,-0.25923869563249224],[115,173,64,-0.2883679381192015],[115,173,65,-0.2874800006531525],[115,173,66,-0.2864636578891254],[115,173,67,-0.2853191366966287],[115,173,68,-0.28404679634216046],[115,173,69,-0.2826471310695229],[115,173,70,-0.2811207726893611],[115,173,71,-0.2794684931779766],[115,173,72,-0.27769120728538843],[115,173,73,-0.27578997515270753],[115,173,74,-0.27376600493867165],[115,173,75,-0.2716206554555376],[115,173,76,-0.26935543881419566],[115,173,77,-0.2669720230785393],[115,173,78,-0.2644722349291142],[115,173,79,-0.26185806233599784],[115,174,64,-0.2908088955488015],[115,174,65,-0.28992711109332703],[115,174,66,-0.28891624511818714],[115,174,67,-0.2877765306979353],[115,174,68,-0.28650833387899255],[115,174,69,-0.28511215626323616],[115,174,70,-0.2835886376006881],[115,174,71,-0.2819385583913624],[115,174,72,-0.2801628424962378],[115,174,73,-0.27826255975742464],[115,174,74,-0.27623892862737265],[115,174,75,-0.2740933188073136],[115,174,76,-0.2718272538948098],[115,174,77,-0.26944241404043523],[115,174,78,-0.2669406386136167],[115,174,79,-0.2643239288775856],[115,175,64,-0.29309788566617234],[115,175,65,-0.2922219835418889],[115,175,66,-0.29121636024682096],[115,175,67,-0.2900812547054944],[115,175,68,-0.2888170393585673],[115,175,69,-0.28742422274955437],[115,175,70,-0.28590345212053725],[115,175,71,-0.284255516016923],[115,175,72,-0.2824813469012124],[115,175,73,-0.2805820237758515],[115,175,74,-0.27855877481500957],[115,175,75,-0.2764129800054823],[115,175,76,-0.27414617379658246],[115,175,77,-0.27176004775905716],[115,175,78,-0.26925645325304537],[115,175,79,-0.26663740410503844],[115,176,64,-0.29523637838442174],[115,176,65,-0.29436608225102323],[115,176,66,-0.2933654616264967],[115,176,67,-0.2922347609349315],[115,176,68,-0.2909743586303436],[115,176,69,-0.28958476978639514],[115,176,70,-0.2880666486949943],[115,176,71,-0.28642079147383526],[115,176,72,-0.284648138682845],[115,176,73,-0.28274977794960643],[115,176,74,-0.2807269466036004],[115,176,75,-0.27858103431947],[115,176,76,-0.27631358576916465],[115,176,77,-0.2739263032830045],[115,176,78,-0.27142104951968216],[115,176,79,-0.26879985014515717],[115,177,64,-0.29722609725274884],[115,177,65,-0.2963611259622836],[115,177,66,-0.29536526288476805],[115,177,67,-0.29423875759864093],[115,177,68,-0.2929819941957972],[115,177,69,-0.2915954938741542],[115,177,70,-0.2900799175390044],[115,177,71,-0.2884360684132097],[115,177,72,-0.2866648946561995],[115,177,73,-0.28476749199184914],[115,177,74,-0.2827451063450791],[115,177,75,-0.28059913648737445],[115,177,76,-0.2783311366910879],[115,177,77,-0.2759428193925626],[115,177,78,-0.27343605786409386],[115,177,79,-0.2708128888946857],[115,178,64,-0.29906902565703997],[115,178,65,-0.2982090941427018],[115,178,66,-0.29721773919506267],[115,178,67,-0.29609521520744175],[115,178,68,-0.29484191154013417],[115,178,69,-0.2934583551156835],[115,178,70,-0.29194521302284515],[115,178,71,-0.29030329512929887],[115,178,72,-0.28853355670307446],[115,178,73,-0.28663710104276496],[115,178,74,-0.28461518211636794],[115,178,75,-0.2824692072089551],[115,178,76,-0.2802007395790337],[115,178,77,-0.2778115011236346],[115,178,78,-0.2753033750521484],[115,178,79,-0.2726784085688624],[115,179,64,-0.30076741307310306],[115,179,65,-0.2999122332739843],[115,179,66,-0.2989251336000035],[115,179,67,-0.29780637292618195],[115,179,68,-0.29655634551835885],[115,179,69,-0.2951755836310158],[115,179,70,-0.29366476011370946],[115,179,71,-0.2920246910261661],[115,179,72,-0.29025633826200603],[115,179,73,-0.2883608121811656],[115,179,74,-0.28633937425086753],[115,179,75,-0.28419343969532807],[115,179,76,-0.28192458015407473],[115,179,77,-0.27953452634890275],[115,179,78,-0.27702517075949473],[115,179,79,-0.27439857030765524],[115,180,64,-0.30232378137239113],[115,180,65,-0.3014730631946654],[115,180,66,-0.3004899633881172],[115,180,67,-0.2993747449831562],[115,180,68,-0.2981278067955564],[115,180,69,-0.2967496860266855],[115,180,70,-0.29524106087225843],[115,180,71,-0.293602753139679],[115,180,72,-0.29183573087392634],[115,180,73,-0.28994111099206554],[115,180,74,-0.28792016192622294],[115,180,75,-0.2857743062752214],[115,180,76,-0.2835051234647459],[115,180,77,-0.2811143524160704],[115,180,78,-0.27860389422336473],[115,180,79,-0.2759758148395429],[115,181,64,-0.3037409311803255],[115,181,65,-0.3028943834953073],[115,181,66,-0.30191502652403623],[115,181,67,-0.3008031271334334],[115,181,68,-0.29955908834149136],[115,181,69,-0.29818345191975415],[115,181,70,-0.2966769010042468],[115,181,71,-0.29504026271492334],[115,181,72,-0.29327451078358135],[115,181,73,-0.2913807681903343],[115,181,74,-0.2893603098084687],[115,181,75,-0.2872145650578948],[115,181,76,-0.2849451205670498],[115,181,77,-0.28255372284329117],[115,181,78,-0.2800422809517987],[115,181,79,-0.2774128692029413],[115,182,64,-0.3050219482872283],[115,182,65,-0.3041792799667693],[115,182,66,-0.3032034081322037],[115,182,67,-0.30209460317611203],[115,182,68,-0.30085327197953604],[115,182,69,-0.2994799605165518],[115,182,70,-0.29797535646723305],[115,182,71,-0.2963402918390571],[115,182,72,-0.2945757455967215],[115,182,73,-0.2926828463004404],[115,182,74,-0.2906628747525669],[115,182,75,-0.28851726665273814],[115,182,76,-0.28624761526140763],[115,182,77,-0.28385567407180046],[115,182,78,-0.2813433594903091],[115,182,79,-0.27871275352528935],[115,183,64,-0.3061702101117626],[115,183,65,-0.3053311311014437],[115,183,66,-0.3043584870339855],[115,183,67,-0.3032525515254032],[115,183,68,-0.30201373498983053],[115,183,69,-0.30064258724603754],[115,183,70,-0.29913980013227526],[115,183,71,-0.29750621012950274],[115,183,72,-0.2957428009929649],[115,183,73,-0.29385070639218724],[115,183,74,-0.2918312125592375],[115,183,75,-0.28968576094544707],[115,183,76,-0.2874159508864609],[115,183,77,-0.2850235422756455],[115,183,78,-0.28251045824588317],[115,183,79,-0.27987878785969733],[115,184,64,-0.3071893922169815],[115,184,65,-0.3063536146475534],[115,184,66,-0.3053839423382845],[115,184,67,-0.30428065183563413],[115,184,68,-0.30304415676676855],[115,184,69,-0.30167501044786915],[115,184,70,-0.3001739085007109],[115,184,71,-0.29854169147757137],[115,184,72,-0.29677934749443],[115,184,73,-0.2948880148725357],[115,184,74,-0.29286898478817913],[115,184,75,-0.2907237039308743],[115,184,76,-0.28845377716981124],[115,184,77,-0.28606097022861254],[115,184,78,-0.2835472123684185],[115,184,79,-0.2809145990792521],[115,185,64,-0.3080834748789415],[115,185,65,-0.3072507142164711],[115,185,66,-0.30628376008561176],[115,185,67,-0.3051828916801348],[115,185,68,-0.3039485255307691],[115,185,69,-0.30258121811514793],[115,185,70,-0.30108166847597684],[115,185,71,-0.2994507208474819],[115,185,72,-0.29768936729009765],[115,185,73,-0.29579875033347314],[115,185,74,-0.293780165627636],[115,185,75,-0.2916350646025123],[115,185,76,-0.28936505713566874],[115,185,77,-0.28697191422831014],[115,185,78,-0.28445757068955335],[115,185,79,-0.2818241278289335],[115,186,64,-0.3088567497078881],[115,186,65,-0.30802672594306857],[115,186,66,-0.3070622399456303],[115,186,67,-0.30596357328401447],[115,186,68,-0.3047311450943402],[115,186,69,-0.30336551469184103],[115,186,70,-0.30186738419047665],[115,186,71,-0.3002376011307809],[115,186,72,-0.2984771611159054],[115,186,73,-0.2965872104559357],[115,186,74,-0.2945690488203222],[115,186,75,-0.29242413189861893],[115,186,76,-0.29015407406940585],[115,186,77,-0.28776065107741566],[115,186,78,-0.28524580271889644],[115,186,79,-0.2826116355351611],[115,187,64,-0.309513826321992],[115,187,65,-0.3086862651990726],[115,187,66,-0.307724001968142],[115,187,67,-0.3066273203108043],[115,187,68,-0.3053966416824162],[115,187,69,-0.30403252792486346],[115,187,70,-0.3025356838874761],[115,187,71,-0.3009069600561395],[115,187,72,-0.29914735519056],[115,187,73,-0.2972580189697652],[115,187,74,-0.29524025464567794],[115,187,75,-0.2930955217049608],[115,187,76,-0.29082543853900056],[115,187,77,-0.28843178512206236],[115,187,78,-0.28591650569763694],[115,187,79,-0.283281711472935],[115,188,64,-0.31005963907369216],[115,188,65,-0.3092342733594814],[115,188,66,-0.3082739933875738],[115,188,67,-0.30717908470302135],[115,188,68,-0.305949970807016],[115,188,69,-0.3045872157708672],[115,188,70,-0.3030915268580776],[115,188,71,-0.3014637571545832],[115,188,72,-0.2997049082071127],[115,188,73,-0.2978161326697464],[115,188,74,-0.2957987369585141],[115,188,75,-0.2936541839142277],[115,188,76,-0.2913840954734207],[115,188,77,-0.28899025534742184],[115,188,78,-0.2864746117095851],[115,188,79,-0.2838392798906355],[115,189,64,-0.31049945382857647],[115,189,65,-0.3096760246219816],[115,189,66,-0.3087174954809059],[115,189,67,-0.3076241535765921],[115,189,68,-0.3063964241961695],[115,189,69,-0.3050348733576863],[115,189,70,-0.30354021043321644],[115,189,71,-0.30191329078009443],[115,189,72,-0.30015511838024445],[115,189,73,-0.29826684848767504],[115,189,74,-0.29624979028398235],[115,189,75,-0.29410540954206166],[115,189,76,-0.29183533129789097],[115,189,77,-0.2894413425304202],[115,189,78,-0.28692539484958657],[115,189,79,-0.28428960719241614],[115,190,64,-0.3108388747968499],[115,190,65,-0.3100171328794016],[115,190,66,-0.30906013047907055],[115,190,67,-0.3079681561691744],[115,190,68,-0.30674163677714017],[115,190,69,-0.30538114000046324],[115,190,70,-0.303887377030709],[115,190,71,-0.30226120518562083],[115,190,72,-0.3005036305492921],[115,190,73,-0.29861581062048137],[115,190,74,-0.29659905696890876],[115,190,75,-0.2944548378997325],[115,190,76,-0.2921847811260747],[115,190,77,-0.28979067644962475],[115,190,78,-0.2872744784493435],[115,190,79,-0.28463830917822597],[115,191,64,-0.3110838514173704],[115,191,65,-0.31026355864519495],[115,191,66,-0.309307868531826],[115,191,67,-0.3082170708423674],[115,191,68,-0.3069915937139456],[115,191,69,-0.30563200627245923],[115,191,70,-0.3041390212573555],[115,191,71,-0.302513497654487],[115,191,72,-0.30075644333701224],[115,191,73,-0.29886901771441465],[115,191,74,-0.2968525343894842],[115,191,75,-0.2947084638234544],[115,191,76,-0.29243843600916775],[115,191,77,-0.2900442431522956],[115,191,78,-0.28752784236063755],[115,191,79,-0.2848913583414572],[115,192,64,-0.31124068529425164],[115,192,65,-0.3104216160319435],[115,192,66,-0.30946703472608217],[115,192,67,-0.30837723213780366],[115,192,68,-0.30715263749915844],[115,192,69,-0.30579382113053266],[115,192,70,-0.30430149706607657],[115,192,71,-0.3026765256871963],[115,192,72,-0.3009199163640701],[115,192,73,-0.2990328301052656],[115,192,74,-0.29701658221529936],[115,192,75,-0.29487264496033583],[115,192,76,-0.2926026502418938],[115,192,77,-0.29020839227858997],[115,192,78,-0.28769183029594536],[115,192,79,-0.2850550912242057],[115,193,64,-0.31131603718604206],[115,193,65,-0.3104979797828955],[115,193,66,-0.30954431615770495],[115,193,67,-0.308455337887133],[115,193,68,-0.30723147510000826],[115,193,69,-0.3058732990953045],[115,193,70,-0.30438152496810855],[115,193,71,-0.30275701424363843],[115,193,72,-0.3010007775192708],[115,193,73,-0.29911397711465293],[115,193,74,-0.29709792972974247],[115,193,75,-0.2949541091109734],[115,193,76,-0.2926841487254118],[115,193,77,-0.2902898444429348],[115,193,78,-0.28777315722645813],[115,193,79,-0.28513621583016],[115,194,64,-0.31131693404746785],[115,194,65,-0.31049969235652386],[115,194,66,-0.309546769056779],[115,194,67,-0.30845845637589064],[115,194,68,-0.3072351851587666],[115,194,69,-0.30587752748599206],[115,194,70,-0.3043861993002358],[115,194,71,-0.30276206304069153],[115,194,72,-0.30100613028551826],[115,194,73,-0.29911956440235365],[115,194,74,-0.2971036832067432],[115,194,75,-0.29495996162868066],[115,194,76,-0.2926900343871298],[115,194,77,-0.290295698672557],[115,194,78,-0.2877789168374968],[115,194,79,-0.28514181909510716],[115,195,64,-0.3112507761237596],[115,195,65,-0.31043417106412174],[115,195,66,-0.309481825966344],[115,195,67,-0.3083940335612606],[115,195,68,-0.307171225247434],[115,195,69,-0.3058139737099338],[115,195,70,-0.3043229955470821],[115,195,71,-0.30269915390522906],[115,195,72,-0.3009434611215146],[115,195,73,-0.2990570813746958],[115,195,74,-0.29704133334388083],[115,195,75,-0.29489769287536405],[115,195,76,-0.29262779565743346],[115,195,77,-0.2902334399031805],[115,195,78,-0.28771658904133246],[115,195,79,-0.28507937441506537],[115,196,64,-0.31112534409752657],[115,196,65,-0.3103092152604081],[115,196,66,-0.30935730297458186],[115,196,67,-0.3082699003437067],[115,196,68,-0.3070474391766981],[115,196,69,-0.3056904926067675],[115,196,70,-0.304199777718427],[115,196,71,-0.30257615818251016],[115,196,72,-0.3008206468991783],[115,196,73,-0.2989344086489828],[115,196,74,-0.2969187627518257],[115,196,75,-0.2947751857340185],[115,196,76,-0.29250531400330326],[115,196,77,-0.29011094653186953],[115,196,78,-0.2875940475473894],[115,196,79,-0.2849567492320234],[115,197,64,-0.31094880628822863],[115,197,65,-0.31013301358718015],[115,197,66,-0.30918140700049024],[115,197,67,-0.3080942798925177],[115,197,68,-0.30687206435920733],[115,197,69,-0.3055153338473158],[115,197,70,-0.3040248057815941],[115,197,71,-0.302401344199989],[115,197,72,-0.3006459623968172],[115,197,73,-0.2987598255739944],[115,197,74,-0.2967442535001593],[115,197,75,-0.2946007231778871],[115,197,76,-0.29233087151886494],[115,197,77,-0.289936498027054],[115,197,78,-0.2874195674898691],[115,197,79,-0.28478221267732184],[115,198,64,-0.31072972590419756],[115,198,65,-0.30991415126997857],[115,198,66,-0.30896274313300587],[115,198,67,-0.30787579502521767],[115,198,68,-0.3066537392271179],[115,198,69,-0.30529714938712404],[115,198,70,-0.3038067431488676],[115,198,71,-0.3021833847865073],[115,198,72,-0.3004280878480168],[115,198,73,-0.298542017806522],[115,198,74,-0.2965264947195285],[115,198,75,-0.2943829958962396],[115,198,76,-0.2921131585728287],[115,198,77,-0.2897187825956995],[115,198,78,-0.28720183311275593],[115,198,79,-0.28456444327263775],[115,199,64,-0.31047706834724176],[115,199,65,-0.30966161746778664],[115,199,66,-0.3087103220236017],[115,199,67,-0.3076234756408738],[115,199,68,-0.30640151070393795],[115,199,69,-0.30504500097469156],[115,199,70,-0.3035546642199638],[115,199,71,-0.3019313648468914],[115,199,72,-0.3001761165462722],[115,199,73,-0.2982900849439617],[115,199,74,-0.29627459026016245],[115,199,75,-0.2941311099767987],[115,199,76,-0.29186128151284596],[115,199,77,-0.2894669049076454],[115,199,78,-0.2869499455122282],[115,199,79,-0.28431253668859957],[115,200,64,-0.3102002085698148],[115,200,65,-0.30938481267575557],[115,200,66,-0.3084335673323485],[115,200,67,-0.30734676620729184],[115,200,68,-0.3061248417306648],[115,200,69,-0.30476836771437277],[115,200,70,-0.303278061979547],[115,200,71,-0.30165478899194886],[115,200,72,-0.29989956250535066],[115,200,73,-0.2980135482129618],[115,200,74,-0.2959980664067422],[115,200,75,-0.2938545946448051],[115,200,76,-0.29158477042677056],[115,200,77,-0.2891903938771052],[115,200,78,-0.28667343043646865],[115,200,79,-0.28403601356102215],[115,201,64,-0.30990893848475654],[115,201,65,-0.30909355618095247],[115,201,66,-0.30814232322743906],[115,201,67,-0.30705553330209123],[115,201,68,-0.30583361884620563],[115,201,69,-0.30447715368395456],[115,201,70,-0.30298685564978967],[115,201,71,-0.30136358922385753],[115,201,72,-0.2996083681753855],[115,201,73,-0.29772235821411375],[115,201,74,-0.29570687964961784],[115,201,75,-0.2935634100587151],[115,201,76,-0.2912935869608264],[115,201,77,-0.28889921050132095],[115,201,78,-0.2863822461428691],[115,201,79,-0.2837448273647568],[115,202,64,-0.30902093570173517],[115,202,65,-0.3082055510152052],[115,202,66,-0.3072543157482489],[115,202,67,-0.3061675235791048],[115,202,68,-0.3049456069493506],[115,202,69,-0.3035891396833529],[115,202,70,-0.30209883961567097],[115,202,71,-0.3004755712264674],[115,202,72,-0.2987203482848929],[115,202,73,-0.2968343365005156],[115,202,74,-0.2948188561826406],[115,202,75,-0.2926753849077147],[115,202,76,-0.2904055601946849],[115,202,77,-0.28801118218834076],[115,202,78,-0.2854942163506655],[115,202,79,-0.28285679616014636],[115,203,64,-0.3090165955842684],[115,203,65,-0.30820116213635207],[115,203,66,-0.30724987987833097],[115,203,67,-0.3061630424905215],[115,203,68,-0.30494108241462703],[115,203,69,-0.30358457347314094],[115,203,70,-0.3020942334967044],[115,203,71,-0.3004709269594684],[115,203,72,-0.2987156676224342],[115,203,73,-0.2968296211848319],[115,203,74,-0.2948141079433949],[115,203,75,-0.2926706054597148],[115,203,76,-0.29040075123555253],[115,203,77,-0.2880063453961309],[115,203,78,-0.28548935338143766],[115,203,79,-0.28285190864548615],[115,204,64,-0.30900163364751654],[115,204,65,-0.3081860321016673],[115,204,66,-0.30723458784864366],[115,204,67,-0.30614759457592633],[115,204,68,-0.3049254847256516],[115,204,69,-0.3035688321138562],[115,204,70,-0.30207835455767174],[115,204,71,-0.3004549165105287],[115,204,72,-0.2986995317053307],[115,204,73,-0.29681336580567175],[115,204,74,-0.29479773906494466],[115,204,75,-0.29265412899353027],[115,204,76,-0.2903841730339417],[115,204,77,-0.2879896712439499],[115,204,78,-0.2854725889877159],[115,204,79,-0.28283505963488287],[115,205,64,-0.30867393151846656],[115,205,65,-0.3078579726532412],[115,205,66,-0.30690618404896586],[115,205,67,-0.3058188594087332],[115,205,68,-0.3045964311759789],[115,205,69,-0.30323947315338684],[115,205,70,-0.30174870312974245],[115,205,71,-0.3001249855147906],[115,205,72,-0.29836933398206444],[115,205,73,-0.2964829141197537],[115,205,74,-0.29446704608946095],[115,205,75,-0.29232320729303995],[115,205,76,-0.2900530350473812],[115,205,77,-0.28765832926718193],[115,205,78,-0.28514105515571797],[115,205,79,-0.2825033459035724],[115,206,64,-0.3083235208279709],[115,206,65,-0.30750694805814416],[115,206,66,-0.3065545678229783],[115,206,67,-0.3054666738529336],[115,206,68,-0.3042436985942182],[115,206,69,-0.30288621582710706],[115,206,70,-0.30139494329220784],[115,206,71,-0.29977074532472514],[115,206,72,-0.2980146354966937],[115,206,73,-0.2961277792672451],[115,206,74,-0.2941114966407612],[115,206,75,-0.29196726483310287],[115,206,76,-0.28969672094578536],[115,206,77,-0.2873016646481309],[115,206,78,-0.28478406086742103],[115,206,79,-0.2821460424870039],[115,207,64,-0.3079448040307974],[115,207,65,-0.3071272967283677],[115,207,66,-0.30617401585712367],[115,207,67,-0.30508525519003027],[115,207,68,-0.3038614471783496],[115,207,69,-0.30250316556906753],[115,207,70,-0.30101112803026164],[115,207,71,-0.29938619878446227],[115,207,72,-0.2976293912499749],[115,207,73,-0.2957418706902326],[115,207,74,-0.2937249568710274],[115,207,75,-0.29158012672581124],[115,207,76,-0.28930901702893896],[115,207,77,-0.2869134270768813],[115,207,78,-0.2843953213774326],[115,207,79,-0.2817568323468662],[115,208,64,-0.30753248534478783],[115,208,65,-0.3067136619235519],[115,208,66,-0.3057591126559872],[115,208,67,-0.3046691313761236],[115,208,68,-0.30344415054353013],[115,208,69,-0.302084743859486],[115,208,70,-0.3005916288910794],[115,208,71,-0.2989656697032951],[115,208,72,-0.2972078794990528],[115,208,73,-0.2953194232672689],[115,208,74,-0.29330162043878605],[115,208,75,-0.29115594755036767],[115,208,76,-0.2888840409166227],[115,208,77,-0.2864876993098944],[115,208,78,-0.2839688866481348],[115,208,79,-0.28132973469071787],[115,209,64,-0.307081564272376],[115,209,65,-0.3062609852124346],[115,209,66,-0.3053047439459472],[115,209,67,-0.30421313439002584],[115,209,68,-0.30298658901692843],[115,209,69,-0.3016256814685486],[115,209,70,-0.30013112917882123],[115,209,71,-0.2985037960041068],[115,209,72,-0.2967446948615152],[115,209,73,-0.29485499037523966],[115,209,74,-0.2928360015307513],[115,209,75,-0.29068920433704293],[115,209,76,-0.28841623449679643],[115,209,77,-0.28601889008449854],[115,209,78,-0.2834991342325346],[115,209,79,-0.28085909782520835],[115,210,64,-0.30658732917843423],[115,210,65,-0.3057644999911041],[115,210,66,-0.30480609013608007],[115,210,67,-0.3037123936390651],[115,210,68,-0.30248384299066466],[115,210,69,-0.30112101175871586],[115,210,70,-0.29962461720852185],[115,210,71,-0.2979955229310476],[115,210,72,-0.29623474147904183],[115,210,73,-0.2943434370111546],[115,210,74,-0.2923229279439019],[115,210,75,-0.2901746896116637],[115,210,76,-0.2879003569345916],[115,210,77,-0.2855017270944513],[115,210,78,-0.28298076221842805],[115,210,79,-0.28033959207084314],[115,211,64,-0.30604535092447227],[115,211,65,-0.3052197250580714],[115,211,66,-0.30425861983633984],[115,211,67,-0.30316232942259913],[115,211,68,-0.3019312863328779],[115,211,69,-0.3005660640455551],[115,211,70,-0.29906737961888685],[115,211,71,-0.2974360963164797],[115,211,72,-0.2956732262406696],[115,211,73,-0.29377993297388216],[115,211,74,-0.2917575342278166],[115,211,75,-0.28960750450065],[115,211,76,-0.2873314777421311],[115,211,77,-0.2849312500265915],[115,211,78,-0.2824087822339003],[115,211,79,-0.27976620273831443],[115,212,64,-0.3054514765591776],[115,212,65,-0.3046224582461581],[115,212,66,-0.30365808343300627],[115,212,67,-0.30255864645323016],[115,212,68,-0.3013245798569135],[115,212,69,-0.2999564570170906],[115,212,70,-0.2984549947439884],[115,212,71,-0.2968210559071873],[115,212,72,-0.29505565206566897],[115,212,73,-0.2931599461058233],[115,212,74,-0.2911352548872562],[115,212,75,-0.2889830518965971],[115,212,76,-0.2867049699091717],[115,212,77,-0.2843028036585735],[115,212,78,-0.281778512514154],[115,212,79,-0.2791342231663886],[115,213,64,-0.30480182306528325],[115,213,65,-0.3039687701111822],[115,213,66,-0.3030005067213831],[115,213,67,-0.30189732743570863],[115,213,68,-0.3006596648486112],[115,213,69,-0.29928809221165587],[115,213,70,-0.29778332604384405],[115,213,71,-0.2961462287498319],[115,213,72,-0.29437781124600837],[115,213,73,-0.2924792355945044],[115,213,74,-0.2904518176449805],[115,213,75,-0.2882970296843842],[115,213,76,-0.2860165030945496],[115,213,77,-0.2836120310176674],[115,213,78,-0.28108557102964815],[115,213,79,-0.27843924782133533],[115,214,64,-0.304092771162791],[115,214,65,-0.30325499767747044],[115,214,66,-0.3022821845957757],[115,214,67,-0.3011746267035482],[115,214,68,-0.2999327566517276],[115,214,69,-0.29855714755427565],[115,214,70,-0.29704851559390677],[115,214,71,-0.29540772263568404],[115,214,72,-0.29363577884844383],[115,214,73,-0.2917338453341216],[115,214,74,-0.28970323676482324],[115,214,75,-0.2875454240278379],[115,214,76,-0.28526203687846086],[115,214,77,-0.28285486660065495],[115,214,78,-0.2803258686755785],[115,214,79,-0.2776771654579261],[115,215,64,-0.30332095916852575],[115,215,65,-0.30247773824017266],[115,215,66,-0.301499674796726],[115,215,67,-0.3003870639133337],[115,215,68,-0.29914033831146414],[115,215,69,-0.29776007095155643],[115,215,70,-0.29624697763344365],[115,215,71,-0.29460191960460336],[115,215,72,-0.29282590617620285],[115,215,73,-0.2909200973470085],[115,215,74,-0.28888580643500683],[115,215,75,-0.2867245027169286],[115,215,76,-0.28443781407555024],[115,215,77,-0.2820275296547966],[115,215,78,-0.2794956025226729],[115,215,79,-0.2768441523419791],[115,216,64,-0.30248327691204324],[115,216,65,-0.30163384322440223],[115,216,66,-0.3006497917155242],[115,216,67,-0.2995314177967424],[115,216,68,-0.2982791542761257],[115,216,69,-0.2968935739451035],[115,216,70,-0.2953753921728234],[115,216,71,-0.29372546950829537],[115,216,72,-0.29194481429028896],[115,216,73,-0.29003458526505477],[115,216,74,-0.287996094211715],[115,216,75,-0.2858308085755197],[115,216,76,-0.2835403541088336],[115,216,77,-0.2811265175198897],[115,216,78,-0.27859124912932753],[115,216,79,-0.27593666553447227],[115,217,64,-0.3015768597078564],[115,217,65,-0.30072041210116496],[115,217,66,-0.29972960025596274],[115,217,67,-0.2986047199702405],[115,217,68,-0.29734620415687363],[115,217,69,-0.29595462542343265],[115,217,70,-0.2944306986596792],[115,217,71,-0.2927752836328038],[115,217,72,-0.29098938759036974],[115,217,73,-0.28907416787103346],[115,217,74,-0.28703093452288997],[115,217,75,-0.284861152929635],[115,217,76,-0.28256644644441375],[115,217,77,-0.2801485990313881],[115,217,78,-0.27760955791504294],[115,217,79,-0.274951436237187],[115,218,64,-0.30059908238402133],[115,218,65,-0.2997347863601204],[115,218,66,-0.298736409753376],[115,218,67,-0.29760424880250136],[115,218,68,-0.2963387365456155],[115,218,69,-0.2949404453924167],[115,218,70,-0.29341008970398674],[115,218,71,-0.29174852838028353],[115,218,72,-0.28995676745528975],[115,218,73,-0.28803596269988585],[115,218,74,-0.285987422232294],[115,218,75,-0.2838126091362876],[115,218,76,-0.28151314408703676],[115,218,77,-0.27909080798461683],[115,218,78,-0.27654754459520714],[115,218,79,-0.27388546319992935],[115,219,64,-0.2995475533670673],[115,219,65,-0.2986745435391568],[115,219,66,-0.2976677679509482],[115,219,67,-0.2965275233395256],[115,219,68,-0.29525424289101365],[115,219,69,-0.29384849880425223],[115,219,70,-0.29231100486204464],[115,219,71,-0.2906426190100375],[115,219,72,-0.2888443459431954],[115,219,73,-0.2869173396999435],[115,219,74,-0.2848629062638228],[115,219,75,-0.2826825061728526],[115,219,76,-0.2803777571364702],[115,219,77,-0.2779504366600756],[115,219,78,-0.27540248467720907],[115,219,79,-0.2727360061893085],[115,220,64,-0.2984201088232423],[115,220,65,-0.2975374913107539],[115,220,66,-0.29652145503325866],[115,220,67,-0.29537229728743675],[115,220,68,-0.29409045143258694],[115,220,69,-0.29267648944491376],[115,220,70,-0.29113112447932366],[115,220,71,-0.2894552134387879],[115,220,72,-0.28764975955123706],[115,220,73,-0.2857159149540578],[115,220,74,-0.28365498328603767],[115,220,75,-0.2814684222869539],[115,220,76,-0.27915784640467256],[115,220,77,-0.27672502940979127],[115,220,78,-0.274171907017847],[115,220,79,-0.2715005795190425],[115,221,64,-0.29721480685612256],[115,221,65,-0.2963216616251819],[115,221,66,-0.29529547771711917],[115,221,67,-0.29413655305299935],[115,221,68,-0.2928453211929517],[115,221,69,-0.2914223538801515],[115,221,70,-0.28986836359223844],[115,221,71,-0.2881842061002319],[115,221,72,-0.28637088303490477],[115,221,73,-0.28442954446069135],[115,221,74,-0.28236149145696965],[115,221,75,-0.2801681787069171],[115,221,76,-0.2778512170938078],[115,221,77,-0.27541237630477866],[115,221,78,-0.27285358744209265],[115,221,79,-0.2701769456418467],[115,222,64,-0.29592992176056687],[115,222,65,-0.2950253049105144],[115,222,66,-0.29398806339967853],[115,222,67,-0.29281849584184283],[115,222,68,-0.291517036028185],[115,222,69,-0.29008425546000627],[115,222,70,-0.28852086588882087],[115,222,71,-0.2868277218638623],[115,222,72,-0.28500582328697277],[115,222,73,-0.283056317974947],[115,222,74,-0.28098050422917265],[115,222,75,-0.27877983341276835],[115,222,76,-0.2764559125350825],[115,222,77,-0.27401050684358574],[115,222,78,-0.27144554242318064],[115,222,79,-0.2687631088028798],[115,223,64,-0.2945639383329802],[115,223,65,-0.29364688432942343],[115,223,66,-0.29259765436376073],[115,223,67,-0.29141654781435267],[115,223,68,-0.290103998736272],[115,223,69,-0.2886605783818095],[115,223,70,-0.2870869977282562],[115,223,71,-0.2853841100130161],[115,223,72,-0.2835529132760185],[115,223,73,-0.28159455290949875],[115,223,74,-0.279510324214992],[115,223,75,-0.27730167496773916],[115,223,76,-0.2749702079883676],[115,223,77,-0.27251768372188334],[115,223,78,-0.26994602282399294],[115,223,79,-0.26725730875471176],[115,224,64,-0.2931155462379478],[115,224,65,-0.29218507009281636],[115,224,66,-0.2911229020404983],[115,224,67,-0.28992934229929124],[115,224,68,-0.28860482522370023],[115,224,69,-0.2871499218117285],[115,224,70,-0.28556534221934826],[115,224,71,-0.28385193828221356],[115,224,72,-0.28201070604457745],[115,224,73,-0.28004278829548934],[115,224,74,-0.27794947711210927],[115,224,75,-0.27573221641034473],[115,224,76,-0.2733926045026711],[115,224,77,-0.2709323966631687],[115,224,78,-0.2683535076997997],[115,224,79,-0.2656580145338786],[115,225,64,-0.2915836344312135],[115,225,65,-0.2906387338302874],[115,225,66,-0.28956266132923536],[115,225,67,-0.2883557180651237],[115,225,68,-0.2870183387301767],[115,225,69,-0.28555109406483314],[115,225,70,-0.28395469335788615],[115,225,71,-0.2822299869537628],[115,225,72,-0.28037796876691157],[115,225,73,-0.2783997788033674],[115,225,74,-0.2762967056893376],[115,225,75,-0.274070189207008],[115,225,76,-0.27172182283743485],[115,225,77,-0.2692533563105538],[115,225,78,-0.2666666981623296],[115,225,79,-0.263963918298998],[115,226,64,-0.28996728563896146],[115,226,65,-0.28900694301734475],[115,226,66,-0.2879159849746563],[115,226,67,-0.28669471364900556],[115,226,68,-0.2853435641114208],[115,226,69,-0.2838631068436386],[115,226,70,-0.2822540502228671],[115,226,71,-0.2805172430135854],[115,226,72,-0.2786536768663407],[115,226,73,-0.2766644888236186],[115,226,74,-0.2745509638326249],[115,226,75,-0.27231453726518284],[115,226,76,-0.2699567974446079],[115,226,77,-0.26747948817959244],[115,226,78,-0.2648845113051257],[115,226,79,-0.26217392923039673],[115,227,64,-0.2882657708934745],[115,227,65,-0.2872889554594853],[115,227,66,-0.2861821180012174],[115,227,67,-0.2849455617435056],[115,227,68,-0.28357972218011285],[115,227,69,-0.28208516953520024],[115,227,70,-0.28046261123165495],[115,227,71,-0.2787128943663387],[115,227,72,-0.276837008192221],[115,227,73,-0.27483608660747005],[115,227,74,-0.2727114106513395],[115,227,75,-0.27046441100705776],[115,227,76,-0.26809667051157815],[115,227,77,-0.2656099266722264],[115,227,78,-0.26300607419026567],[115,227,79,-0.26028716749133385],[115,228,64,-0.2864785441251366],[115,228,65,-0.2854842138330844],[115,228,66,-0.2843604922048468],[115,228,67,-0.2831076836410348],[115,228,68,-0.2817262241049634],[115,228,69,-0.2802166835667318],[115,228,70,-0.2785797684540404],[115,228,71,-0.2768163241098053],[115,228,72,-0.2749273372565333],[115,228,73,-0.2729139384675352],[115,228,74,-0.27077740464480915],[115,228,75,-0.26851916150380506],[115,228,76,-0.2661407860649285],[115,228,77,-0.26364400915181685],[115,228,78,-0.26103071789641263],[115,228,79,-0.25830295825078475],[115,229,64,-0.28460523681073313],[115,229,65,-0.2835923402830557],[115,229,66,-0.28245072070186505],[115,229,67,-0.2811806837359293],[115,229,68,-0.2797826658678535],[115,229,69,-0.2782572368196894],[115,229,70,-0.27660510198515054],[115,229,71,-0.2748271048684935],[115,229,72,-0.27292422953003015],[115,229,73,-0.2708976030383453],[115,229,74,-0.2687484979290563],[115,229,75,-0.2664783346703228],[115,229,76,-0.26408868413496134],[115,229,77,-0.2615812700792082],[115,229,78,-0.25895797162814205],[115,229,79,-0.25622082576772875],[115,230,64,-0.282645652678133],[115,230,65,-0.2816131310773623],[115,230,66,-0.2804525925352135],[115,230,67,-0.27916434408427593],[115,230,68,-0.2777488227791355],[115,230,69,-0.2762065981024183],[115,230,70,-0.2745383743773008],[115,230,71,-0.2727449931865463],[115,230,72,-0.27082743579803503],[115,230,73,-0.26878682559686085],[115,230,74,-0.2666244305238281],[115,230,75,-0.2643416655205628],[115,230,76,-0.26194009498109017],[115,230,77,-0.25942143520991734],[115,230,78,-0.256787556886642],[115,230,79,-0.2540404875370408],[115,231,64,-0.28059976246731566],[115,231,65,-0.27954655131834794],[115,231,66,-0.2783660673379529],[115,231,67,-0.27705861902144413],[115,231,68,-0.2756246440510567],[115,231,69,-0.27406471168131985],[115,231,70,-0.27237952513074803],[115,231,71,-0.27056992397991164],[115,231,72,-0.2686368865758533],[115,231,73,-0.2665815324429245],[115,231,74,-0.26440512469987476],[115,231,75,-0.26210907248340687],[115,231,76,-0.2596949333780534],[115,231,77,-0.2571644158524089],[115,231,78,-0.25451938170174293],[115,231,79,-0.25176184849694305],[115,232,64,-0.2784676987476894],[115,232,65,-0.27739272971082496],[115,232,66,-0.2761912700539739],[115,232,67,-0.27486362983726365],[115,232,68,-0.27341024742924536],[115,232,69,-0.27183169187047984],[115,232,70,-0.2701286652432876],[115,232,71,-0.26830200504772217],[115,232,72,-0.2663526865837327],[115,232,73,-0.264281825339592],[115,232,74,-0.26209067938642117],[115,232,75,-0.259780651779025],[115,232,76,-0.2573532929628918],[115,232,77,-0.2548103031873947],[115,232,78,-0.2521535349252174],[115,232,79,-0.24938499529795377],[115,233,64,-0.27624975079179726],[115,233,65,-0.27515195338702714],[115,233,66,-0.273928485716024],[115,233,67,-0.27257965950895435],[115,233,68,-0.27110591388236516],[115,233,69,-0.26950781767986465],[115,233,70,-0.2677860718187982],[115,233,71,-0.2659415116429862],[115,233,72,-0.26397510928148515],[115,233,73,-0.26188797601345193],[115,233,74,-0.25968136463893754],[115,233,75,-0.25735667185583055],[115,233,76,-0.25491544064279836],[115,233,77,-0.25235936264826686],[115,233,78,-0.2496902805854594],[115,233,79,-0.24691019063344632],[115,234,64,-0.2739463595053697],[115,234,65,-0.27282466278837625],[115,234,66,-0.2715781542810032],[115,234,67,-0.27020714749175845],[115,234,68,-0.2687120823498914],[115,234,69,-0.2670935275220381],[115,234,70,-0.26535218273468875],[115,234,71,-0.2634888811025431],[115,234,72,-0.2615045914627181],[115,234,73,-0.25940042071488445],[115,234,74,-0.2571776161671602],[115,234,75,-0.2548375678879802],[115,234,76,-0.252381811063792],[115,234,77,-0.2498120283626164],[115,234,78,-0.24713005230349372],[115,234,79,-0.24433786763176946],[115,235,64,-0.2715581124136591],[115,235,65,-0.2704114466040046],[115,235,66,-0.26914086552246597],[115,235,67,-0.26774668456721584],[115,235,68,-0.2662293445479441],[115,235,69,-0.26458941397733393],[115,235,70,-0.26282759136818135],[115,235,71,-0.2609447075362189],[115,235,72,-0.2589417279086107],[115,235,73,-0.2568197548381942],[115,235,74,-0.25458002992329753],[115,235,75,-0.2522239363333516],[115,235,76,-0.24975300114014576],[115,235,77,-0.24716889765476802],[115,235,78,-0.2444734477702475],[115,235,79,-0.24166862430985625],[115,236,64,-0.2690857387041714],[115,236,65,-0.26791303676614375],[115,236,66,-0.2666173539804454],[115,236,67,-0.2651990077491959],[115,236,68,-0.26365843983329573],[115,236,69,-0.2619962186176015],[115,236,70,-0.2602130413815503],[115,236,71,-0.2583097365753019],[115,236,72,-0.2562872661013569],[115,236,73,-0.2541467276017366],[115,236,74,-0.25188935675054225],[115,236,75,-0.24951652955212356],[115,236,76,-0.24702976464469673],[115,236,77,-0.2444307256094581],[115,236,78,-0.24172122328520962],[115,236,79,-0.23890321808845216],[115,237,64,-0.2665301043257421],[115,237,65,-0.26533030350233133],[115,237,66,-0.26400849396854686],[115,237,67,-0.2625649952476322],[115,237,68,-0.2610002501255003],[115,237,69,-0.2593148268884724],[115,237,70,-0.25750942156626233],[115,237,71,-0.25558486018028104],[115,237,72,-0.25354210099721786],[115,237,73,-0.2513822367879839],[115,237,74,-0.24910649709183408],[115,237,75,-0.24671625048590096],[115,237,76,-0.24421300685997716],[115,237,77,-0.24159841969659535],[115,237,78,-0.23887428835641888],[115,237,79,-0.23604256036890225],[115,238,64,-0.2638922071438896],[115,238,65,-0.2626642504443638],[115,238,66,-0.2613152946382411],[115,238,67,-0.2598456614898932],[115,238,68,-0.25825579488707306],[115,238,69,-0.25654626305007666],[115,238,70,-0.2547177607459459],[115,238,71,-0.2527711115077791],[115,238,72,-0.2507072698591136],[115,238,73,-0.2485273235434584],[115,238,74,-0.24623249575880046],[115,238,75,-0.24382414739731129],[115,238,76,-0.24130377929009683],[115,238,77,-0.23867303445703325],[115,238,78,-0.23593370036170846],[115,238,79,-0.23308771117142146],[115,239,64,-0.2611731721525784],[115,239,65,-0.25991600979413265],[115,239,66,-0.25853889510049366],[115,239,67,-0.25704215219992543],[115,239,68,-0.2554262261618596],[115,239,69,-0.25369168517634677],[115,239,70,-0.2518392227383319],[115,239,71,-0.24986965983681975],[115,239,72,-0.24778394714889485],[115,239,73,-0.24558316723867468],[115,239,74,-0.24326853676101823],[115,239,75,-0.2408414086702182],[115,239,76,-0.23830327443351784],[115,239,77,-0.23565576624949847],[115,239,78,-0.23290065927135228],[115,239,79,-0.23003987383499935],[115,240,64,-0.2583742467422806],[115,240,65,-0.2570868375462295],[115,240,66,-0.2556805596046162],[115,240,67,-0.2541557395350498],[115,240,68,-0.2525128236714772],[115,240,69,-0.2507523802127931],[115,240,70,-0.24887510137604596],[115,240,71,-0.24688180555430872],[115,240,72,-0.24477343947917596],[115,240,73,-0.24255108038797102],[115,240,74,-0.24021593819547693],[115,240,75,-0.23776935767042884],[115,240,76,-0.23521282061660387],[115,240,77,-0.23254794805855228],[115,240,78,-0.22977650243199066],[115,240,79,-0.226900389778811],[115,241,64,-0.2554967960244251],[115,241,65,-0.25417810876740954],[115,241,66,-0.2527416727744308],[115,241,67,-0.25118781728050965],[115,241,68,-0.24951698996992344],[115,241,69,-0.2477297590928459],[115,241,70,-0.2458268155863479],[115,241,71,-0.2438089751998267],[115,241,72,-0.24167718062482535],[115,241,73,-0.23943250362932678],[115,241,74,-0.23707614719633774],[115,241,75,-0.23460944766699554],[115,241,76,-0.23203387688803945],[115,241,77,-0.22935104436368614],[115,241,78,-0.22656269941193252],[115,241,79,-0.22367073332523701],[115,242,64,-0.2525422982121083],[115,242,65,-0.25119131293278807],[115,242,66,-0.24972373490161803],[115,242,67,-0.24813989610163512],[115,242,68,-0.24644024565621636],[115,242,69,-0.2446253519126267],[115,242,70,-0.2426959045296827],[115,242,71,-0.24065271656959752],[115,242,72,-0.23849672659397414],[115,242,73,-0.23622900076402842],[115,242,74,-0.2338507349448533],[115,242,75,-0.23136325681396797],[115,242,76,-0.22876802797397888],[115,242,77,-0.22606664606940763],[115,242,78,-0.2232608469076961],[115,242,79,-0.22035250658434768],[115,243,64,-0.24951234005721423],[115,243,65,-0.2481280493189193],[115,243,66,-0.24662835729640198],[115,243,67,-0.24501359885378005],[115,243,68,-0.24328422464522714],[115,243,69,-0.24144080316431338],[115,243,70,-0.2394840227972046],[115,243,71,-0.23741469387979153],[115,243,72,-0.23523375075871145],[115,243,73,-0.23294225385634715],[115,243,74,-0.23054139173961197],[115,243,75,-0.22803248319276614],[115,243,76,-0.2254169792940931],[115,243,77,-0.22269646549648447],[115,243,78,-0.21987266371195247],[115,243,79,-0.2169474344000233],[115,244,64,-0.24640861234388267],[115,244,65,-0.24499002245369172],[115,244,66,-0.24345725769550486],[115,244,67,-0.24181065594996443],[115,244,68,-0.2400506694966339],[115,244,69,-0.23817786702802235],[115,244,70,-0.2361929356672019],[115,244,71,-0.23409668298909436],[115,244,72,-0.23189003904538552],[115,244,73,-0.22957405839315526],[115,244,74,-0.2271499221270291],[115,244,75,-0.22461893991509896],[115,244,76,-0.22198255203844008],[115,244,77,-0.21924233143427507],[115,244,78,-0.21639998574280084],[115,244,79,-0.21345735935763277],[115,245,64,-0.24323290543823606],[115,245,65,-0.24177903762295605],[115,245,66,-0.24021225572728588],[115,245,67,-0.23853290078613432],[115,245,68,-0.23674142680190902],[115,245,69,-0.23483840272212542],[115,245,70,-0.23282451442033525],[115,245,71,-0.23070056668045158],[115,245,72,-0.22846748518443027],[115,245,73,-0.22612631850339338],[115,245,74,-0.22367824009200377],[115,245,75,-0.22112455028633482],[115,245,76,-0.21846667830506594],[115,245,77,-0.2157061842540513],[115,245,78,-0.21284476113427953],[115,245,79,-0.2098842368531798],[115,246,64,-0.2399871048945258],[115,246,65,-0.23849699643404187],[115,246,66,-0.2368952684342247],[115,246,67,-0.2351822652242026],[115,246,68,-0.23335844262950467],[115,246,69,-0.23142436991216309],[115,246,70,-0.22938073171385476],[115,246,71,-0.22722833000215692],[115,246,72,-0.22496808601987872],[115,246,73,-0.22260104223755417],[115,246,74,-0.22012836430890148],[115,246,75,-0.21755134302950052],[115,246,76,-0.21487139629851115],[115,246,77,-0.212090071083486],[115,246,78,-0.20920904538829066],[115,246,79,-0.20623013022409042],[115,247,64,-0.23667318711762242],[115,247,65,-0.2351458924360924],[115,247,66,-0.23350830585267257],[115,247,67,-0.23176077513279236],[115,247,68,-0.2299037580281591],[115,247,69,-0.2279378241782779],[115,247,70,-0.2258636570147179],[115,247,71,-0.22368205566820343],[115,247,72,-0.22139393687848885],[115,247,73,-0.21900033690710718],[115,247,74,-0.2165024134527911],[115,247,75,-0.21390144756982343],[115,247,76,-0.21119884558913882],[115,247,77,-0.20839614104222637],[115,247,78,-0.20549499658785308],[115,247,79,-0.20249720594155962],[115,248,64,-0.23329321508176254],[115,248,65,-0.23172780679712301],[115,248,66,-0.23005346664978366],[115,248,67,-0.2282705459855937],[115,248,68,-0.22637950458823164],[115,248,69,-0.22438091254107428],[115,248,70,-0.22227545209151522],[115,248,71,-0.2200639195178059],[115,248,72,-0.21774722699838256],[115,248,73,-0.2153264044837655],[115,248,74,-0.21280260157083275],[115,248,75,-0.2101770893797228],[115,248,76,-0.20745126243318845],[115,248,77,-0.20462664053845336],[115,248,78,-0.20170487067158793],[115,248,79,-0.19868772886435893],[115,249,64,-0.22984933410571928],[115,249,65,-0.22824490403797792],[115,249,66,-0.22653293381779488],[115,249,67,-0.22471377851750712],[115,249,68,-0.22278790006124116],[115,249,69,-0.22075586904608213],[115,249,70,-0.21861836656538058],[115,249,71,-0.21637618603427344],[115,249,72,-0.2140302350173824],[115,249,73,-0.21158153705877825],[115,249,74,-0.2090312335140052],[115,249,75,-0.20638058538443227],[115,249,76,-0.20363097515374118],[115,249,77,-0.20078390862661277],[115,249,78,-0.19784101676962063],[115,249,79,-0.19480405755429164],[115,250,64,-0.22634376768431452],[115,250,65,-0.22469942782310048],[115,250,66,-0.22294897042557543],[115,250,67,-0.2210927544384878],[115,250,68,-0.2191312440375247],[115,250,69,-0.21706501040673964],[115,250,70,-0.21489473351980193],[115,250,71,-0.2126212039231421],[115,250,72,-0.21024532452095657],[115,250,73,-0.20776811236215997],[115,250,74,-0.2051907004290815],[115,250,75,-0.20251433942816743],[115,250,76,-0.19974039958250633],[115,250,77,-0.19687037242623118],[115,250,78,-0.19390587260081382],[115,250,79,-0.19084863965320664],[115,251,64,-0.22277881337618693],[115,251,65,-0.22109369680802676],[115,251,66,-0.2193039154273485],[115,251,67,-0.21740983220500087],[115,251,68,-0.2154119136819203],[115,251,69,-0.21331073170579712],[115,251,70,-0.21110696516923438],[115,251,71,-0.2088014017494777],[115,251,72,-0.20639493964967515],[115,251,73,-0.20388858934176113],[115,251,74,-0.20128347531075408],[115,251,75,-0.1985808378007362],[115,251,76,-0.1957820345623279],[115,251,77,-0.1928885426017124],[115,251,78,-0.18990195993122572],[115,251,79,-0.1868240073214682],[115,252,64,-0.2191568387479843],[115,252,65,-0.21743010054377832],[115,252,66,-0.21560017952876998],[115,252,67,-0.21366744284926514],[115,252,68,-0.21163235952765813],[115,252,69,-0.20949550215533064],[115,252,70,-0.2072575485867041],[115,252,71,-0.20491928363452871],[115,252,72,-0.20248160076636684],[115,252,73,-0.1999455038023653],[115,252,74,-0.19731210861410242],[115,252,75,-0.1945826448247865],[115,252,76,-0.19175845751060838],[115,252,77,-0.1888410089033119],[115,252,78,-0.18583188009399165],[115,252,79,-0.1827327727380781],[115,253,64,-0.21548027737490194],[115,253,65,-0.21371109543807149],[115,253,66,-0.2118402411102736],[115,253,67,-0.2098680858662006],[115,253,68,-0.20779510132837153],[115,253,69,-0.20562186091527357],[115,253,70,-0.20334904149031063],[115,253,71,-0.20097742501164462],[115,253,72,-0.19850790018288567],[115,253,73,-0.19594146410472701],[115,253,74,-0.19327922392731078],[115,253,75,-0.19052239850359853],[115,253,76,-0.1876723200435536],[115,253,77,-0.18473043576919512],[115,253,78,-0.1816983095705349],[115,253,79,-0.17857762366235763],[115,254,64,-0.2117516248974668],[115,254,65,-0.20993920077324263],[115,254,66,-0.2080266422075861],[115,254,67,-0.2060143251579798],[115,254,68,-0.2039027239681277],[115,254,69,-0.2016924129703659],[115,254,70,-0.19938406808852965],[115,254,71,-0.19697846844135547],[115,254,72,-0.1944764979463821],[115,254,73,-0.1918791469244423],[115,254,74,-0.1891875137045282],[115,254,75,-0.18640280622931404],[115,254,76,-0.18352634366113263],[115,254,77,-0.18055955798847134],[115,254,78,-0.1775039956329989],[115,254,79,-0.17436131905707863],[115,255,64,-0.2079734351347564],[115,255,65,-0.20611699478108025],[115,255,66,-0.2041619845496021],[115,255,67,-0.20210878503637442],[115,255,68,-0.19995787342967108],[115,255,69,-0.19770982506571666],[115,255,70,-0.19536531498450743],[115,255,71,-0.19292511948580804],[115,255,72,-0.19039011768528202],[115,255,73,-0.18776129307085343],[115,255,74,-0.18503973505907784],[115,255,75,-0.18222664055180948],[115,255,76,-0.17932331549295943],[115,255,77,-0.1763311764254118],[115,255,78,-0.17325175204810772],[115,255,79,-0.17008668477325406],[115,256,64,-0.20414831625395852],[115,256,65,-0.20224711077447033],[115,256,66,-0.20024892565352592],[115,256,67,-0.1981541462828036],[115,256,68,-0.19596325282078764],[115,256,69,-0.19367682170088468],[115,256,70,-0.19129552713925824],[115,256,71,-0.18882014264246794],[115,256,72,-0.18625154251487264],[115,256,73,-0.18359070336589356],[115,256,74,-0.18083870561691517],[115,256,75,-0.17799673500811208],[115,256,76,-0.1750660841049959],[115,256,77,-0.17204815380474914],[115,256,78,-0.16894445484235554],[115,256,79,-0.1657566092964855],[115,257,64,-0.20027892699617678],[115,257,65,-0.19833223333575634],[115,257,66,-0.19629017497718093],[115,257,67,-0.19415314226598357],[115,257,68,-0.19192161845868294],[115,257,69,-0.18959618118237354],[115,257,70,-0.18717750389365317],[115,257,71,-0.18466635733697656],[115,257,72,-0.18206361100239132],[115,257,73,-0.17937023458275825],[115,257,74,-0.1765872994302249],[115,257,75,-0.17371598001224997],[115,257,76,-0.1707575553669659],[115,257,77,-0.1677134105579502],[115,257,78,-0.16458503812841263],[115,257,79,-0.16137403955475826],[115,258,64,-0.1963679729586717],[115,258,65,-0.1943750945620073],[115,258,66,-0.19228849012867943],[115,258,67,-0.19010855511737512],[115,258,68,-0.1878357760125784],[115,258,69,-0.18547073173474204],[115,258,70,-0.18301409504940908],[115,258,71,-0.180466633975371],[115,258,72,-0.17782921319182415],[115,258,73,-0.17510279544461788],[115,258,74,-0.17228844295137058],[115,258,75,-0.16938731880574864],[115,258,76,-0.16640068838069444],[115,258,77,-0.16332992073067598],[115,258,78,-0.16017648999296413],[115,258,79,-0.15694197678789812],[115,259,64,-0.19241820293344392],[115,259,65,-0.19037847036710198],[115,259,66,-0.18824667313336196],[115,259,67,-0.18602321196433402],[115,259,68,-0.1837085767044272],[115,259,69,-0.18130334767023543],[115,259,70,-0.1788081970089762],[115,259,71,-0.17622389005556882],[115,259,72,-0.1735512866883131],[115,259,73,-0.17079134268326734],[115,259,74,-0.16794511106709364],[115,259,75,-0.16501374346867254],[115,259,76,-0.16199849146926892],[115,259,77,-0.15890070795132416],[115,259,78,-0.1557218484458785],[115,259,79,-0.15246347247858638],[115,260,64,-0.1884324053020605],[115,260,65,-0.18634517684052138],[115,260,66,-0.1841675667578997],[115,260,67,-0.18189998122085876],[115,260,68,-0.1795429135676414],[115,260,69,-0.17709694561682432],[115,260,70,-0.1745627489742182],[115,260,71,-0.17194108633800342],[115,260,72,-0.1692328128020612],[115,260,73,-0.16643887715760097],[115,260,74,-0.16356032319284736],[115,260,75,-0.16059829099109446],[115,260,76,-0.1575540182269068],[115,260,77,-0.1544288414605396],[115,260,78,-0.15122419743058713],[115,260,79,-0.14794162434481728],[115,261,64,-0.18441340448691879],[115,261,65,-0.18227806666305546],[115,261,66,-0.18005405089176096],[115,261,67,-0.17774176893613858],[115,261,68,-0.1753417177640404],[115,261,69,-0.17285448080486565],[115,261,70,-0.1702807292040916],[115,261,71,-0.1676212230756277],[115,261,72,-0.16487681275195176],[115,261,73,-0.16204844003213087],[115,261,74,-0.1591371394274867],[115,261,75,-0.1561440394052176],[115,261,76,-0.15307036362975335],[115,261,77,-0.14991743220191722],[115,261,78,-0.14668666289590215],[115,261,79,-0.14337957239402221],[115,262,64,-0.18036405745885287],[115,262,65,-0.17818002557932344],[115,262,66,-0.17590903898594729],[115,262,67,-0.17355151520080647],[115,262,68,-0.17110795495891856],[115,262,69,-0.16857894341228108],[115,262,70,-0.1659651513312268],[115,262,71,-0.16326733630317986],[115,262,72,-0.16048634392877587],[115,262,73,-0.15762310901544302],[115,262,74,-0.1546786567682082],[115,262,75,-0.15165410397803958],[115,262,76,-0.1485506602074998],[115,262,77,-0.1453696289737858],[115,262,78,-0.14211240892916294],[115,262,79,-0.13878049503875117],[115,263,64,-0.1762872503009798],[115,263,65,-0.17405396892700076],[115,263,66,-0.17173547454888788],[115,263,67,-0.16933219061078353],[115,263,68,-0.1668446217541213],[115,263,69,-0.16427335496814316],[115,263,70,-0.1616190607372956],[115,263,71,-0.15888249418559997],[115,263,72,-0.15606449621795443],[115,263,73,-0.1531659946584738],[115,263,74,-0.15018800538562038],[115,263,75,-0.14713163346444408],[115,263,76,-0.14399807427570593],[115,263,77,-0.14078861464195813],[115,263,78,-0.13750463395058948],[115,263,79,-0.13414760527379377],[115,264,64,-0.17218589482899854],[115,264,65,-0.16990283822297492],[115,264,66,-0.16753632769971638],[115,264,67,-0.165086792788942],[115,264,68,-0.1625547421793579],[115,264,69,-0.15994076481489644],[115,264,70,-0.15724553098739757],[115,264,71,-0.1544697934258269],[115,264,72,-0.15161438838199048],[115,264,73,-0.1486802367128494],[115,264,74,-0.14566834495918818],[115,264,75,-0.1425798064209589],[115,264,76,-0.13941580222906835],[115,264,77,-0.13617760241368876],[115,264,78,-0.13286656696909338],[115,264,79,-0.12948414691498283],[115,265,64,-0.16806292526776184],[115,265,65,-0.16572959780624336],[115,265,66,-0.1633145917787423],[115,265,67,-0.16081834296439823],[115,265,68,-0.1582413642415597],[115,265,69,-0.15558424662902354],[115,265,70,-0.1528476603232689],[115,265,71,-0.15003235573178553],[115,265,72,-0.14713916450245362],[115,265,73,-0.14416900054908127],[115,265,74,-0.14112286107284722],[115,265,75,-0.13800182757997947],[115,265,76,-0.13480706689543115],[115,265,77,-0.13153983217263354],[115,265,78,-0.1282014638993343],[115,265,79,-0.12479339089947711],[115,266,64,-0.16392129498425867],[115,266,65,-0.16153723153769356],[115,266,66,-0.15907328001525922],[115,266,67,-0.15652988260957645],[115,266,68,-0.1539075565324282],[115,266,69,-0.15120689500030038],[115,266,70,-0.14842856821546485],[115,266,71,-0.1455733243427062],[115,266,72,-0.14264199048164622],[115,266,73,-0.13963547363477619],[115,266,74,-0.13655476167094183],[115,266,75,-0.1334009242846121],[115,266,76,-0.13017511395069348],[115,266,77,-0.12687856687497134],[115,266,78,-0.12351260394018221],[115,266,79,-0.12007863164767751],[115,267,64,-0.15976397327681974],[115,267,65,-0.15732873955657767],[115,267,66,-0.1548154222524981],[115,267,67,-0.15222447013485263],[115,267,68,-0.14955640489397698],[115,267,69,-0.14681182206944282],[115,267,70,-0.14399139197431343],[115,267,71,-0.14109586061458168],[115,267,72,-0.13812605060374916],[115,267,73,-0.13508286207265208],[115,267,74,-0.13196727357428056],[115,267,75,-0.12878034298392477],[115,267,76,-0.125523208394405],[115,267,77,-0.1221970890064713],[115,267,78,-0.11880328601437357],[115,267,79,-0.11534318348656558],[115,268,64,-0.15559394222077066],[115,268,65,-0.15310713509390483],[115,268,66,-0.1505440617299541],[115,268,67,-0.1479051776410077],[115,268,68,-0.14519100914230215],[115,268,69,-0.1424021542243823],[115,268,70,-0.1395392834198777],[115,268,71,-0.13660314066499563],[115,268,72,-0.1335945441556885],[115,268,73,-0.13051438719860292],[115,268,74,-0.12736363905655362],[115,268,75,-0.12414334578885988],[115,268,76,-0.12085463108629851],[115,268,77,-0.11749869710076039],[115,268,78,-0.11407682526961072],[115,268,79,-0.11059037713471737],[115,269,64,-0.15141419357042418],[115,269,65,-0.14887544134264685],[115,269,66,-0.14626225192297826],[115,269,67,-0.1435750877293796],[115,269,68,-0.140814479849469],[115,269,69,-0.1379810288550561],[115,269,70,-0.13507540561081716],[115,269,71,-0.13209835207721327],[115,269,72,-0.1290506821076089],[115,269,73,-0.12593328223970163],[115,269,74,-0.12274711248099857],[115,269,75,-0.11949320708868622],[115,269,76,-0.11617267534364117],[115,269,77,-0.1127867023186716],[115,269,78,-0.10933654964098855],[115,269,79,-0.10582355624887263],[115,270,64,-0.14722772571730797],[115,270,65,-0.14463668838464794],[115,270,66,-0.14197305343952626],[115,270,67,-0.13923729036960752],[115,270,68,-0.13642993518340513],[115,270,69,-0.13355159116660248],[115,270,70,-0.13060292963203185],[115,270,71,-0.12758469066341777],[115,270,72,-0.1244976838528381],[115,270,73,-0.121342789032019],[115,270,74,-0.11812095699719344],[115,270,75,-0.1148332102278739],[115,270,76,-0.11148064359928611],[115,270,77,-0.10806442508855274],[115,270,78,-0.10458579647462662],[115,270,79,-0.1010460740319386],[115,271,64,-0.14303754070484004],[115,271,65,-0.14039391017445318],[115,271,66,-0.1376795309742802],[115,271,67,-0.13489487982518478],[115,271,68,-0.13204049780602167],[115,271,69,-0.1291169910511829],[115,271,70,-0.1261250314413166],[115,271,71,-0.1230653572873211],[115,271,72,-0.11993877400757241],[115,271,73,-0.11674615479849604],[115,271,74,-0.11348844129821511],[115,271,75,-0.11016664424362888],[115,271,76,-0.10678184412066138],[115,271,77,-0.10333519180777495],[115,271,78,-0.09982790921274626],[115,271,79,-0.0962612899026688],[115,272,64,-0.1388466412993431],[115,272,65,-0.1361501415799516],[115,272,66,-0.13338475032003622],[115,272,67,-0.1305509516367127],[115,272,68,-0.12764929182945128],[115,272,69,-0.12468038001832155],[115,272,70,-0.12164488877491286],[115,272,71,-0.11854355474603706],[115,272,72,-0.11537717927017077],[115,272,73,-0.11214662898674976],[115,272,74,-0.10885283643804367],[115,272,75,-0.10549680066396905],[115,272,76,-0.10207958778957871],[115,272,77,-0.09860233160532222],[115,272,78,-0.09506623414007459],[115,272,79,-0.09147256622689892],[115,273,64,-0.13465802811729483],[115,273,65,-0.13190841547972],[115,273,66,-0.1290917754362486],[115,273,67,-0.12620859966274345],[115,273,68,-0.1232594398302918],[115,273,69,-0.12024490818364719],[115,273,70,-0.11716567811184442],[115,273,71,-0.11402248471109755],[115,273,72,-0.11081612533993662],[115,273,73,-0.10754746016669847],[115,273,74,-0.1042174127090949],[115,273,75,-0.10082697036622129],[115,273,76,-0.09737718494274095],[115,273,77,-0.09386917316534021],[115,273,78,-0.0903041171914527],[115,273,79,-0.08668326511021529],[115,274,64,-0.13047469680902524],[115,274,65,-0.12767175991728957],[115,274,66,-0.12480366557494688],[115,274,67,-0.1218709131784339],[115,274,68,-0.11887405992207833],[115,274,69,-0.11581372131626377],[115,274,70,-0.11269057169726276],[115,274,71,-0.10950534472884599],[115,274,72,-0.1062588338956243],[115,274,73,-0.1029518929882382],[115,274,74,-0.09958543658011798],[115,274,75,-0.09616044049617939],[115,274,76,-0.09267794227318787],[115,274,77,-0.08913904161188702],[115,274,78,-0.08554490082089056],[115,274,79,-0.08189674525229995],[115,275,64,-0.12629963529875332],[115,275,65,-0.12344319531222375],[115,275,66,-0.12052347246391915],[115,275,67,-0.11754097403190034],[115,275,68,-0.11449626288587311],[115,275,69,-0.11138995794463757],[115,275,70,-0.10822273462469029],[115,275,71,-0.10499532528009137],[115,275,72,-0.1017085196335511],[115,275,73,-0.09836316519885435],[115,275,74,-0.09496016769433935],[115,275,75,-0.0915004914478032],[115,275,76,-0.08798515979256177],[115,275,77,-0.08441525545476264],[115,275,78,-0.08079192093194792],[115,275,79,-0.07711635886283164],[115,276,64,-0.12213582108085963],[115,276,65,-0.11922573172789924],[115,276,66,-0.11625423754705128],[115,276,67,-0.11322185385816064],[115,276,68,-0.11012914935885915],[115,276,69,-0.10697674652088679],[115,276,70,-0.10376532197704669],[115,276,71,-0.10049560689890608],[115,276,72,-0.09716838736519934],[115,276,73,-0.09378450472105121],[115,276,74,-0.09034485592773456],[115,276,75,-0.08685039390333832],[115,276,76,-0.08330212785407104],[115,276,77,-0.0797011235962995],[115,276,78,-0.07604850386931916],[115,276,79,-0.07234544863881998],[115,277,64,-0.11798621857260555],[115,277,65,-0.11502236619620793],[115,277,66,-0.11199898928203977],[115,277,67,-0.10891661135088937],[115,277,68,-0.1057758070811638],[115,277,69,-0.10257720264370013],[115,277,70,-0.09932147602668567],[115,277,71,-0.09600935735080107],[115,277,72,-0.09264162917454133],[115,277,73,-0.0892191267898339],[115,277,74,-0.08574273850766523],[115,277,75,-0.08221340593409737],[115,277,76,-0.0786321242363931],[115,277,77,-0.07499994239935381],[115,277,78,-0.07131796347186559],[115,277,79,-0.06758734480361644],[115,278,64,-0.1138537765231924],[115,278,65,-0.11083608009907092],[115,278,66,-0.10776074049537004],[115,278,67,-0.10462828959187143],[115,278,68,-0.10143930820079938],[115,278,69,-0.0981944263397716],[115,278,70,-0.09489432349432947],[115,278,71,-0.0915397288701606],[115,278,72,-0.08813142163497079],[115,278,73,-0.08467023115012434],[115,278,74,-0.08115703719176198],[115,278,75,-0.0775927701617814],[115,278,76,-0.07397841128839555],[115,278,77,-0.07031499281637604],[115,278,78,-0.06660359818697315],[115,278,79,-0.06284536220748033],[115,279,64,-0.10974142547905619],[115,279,65,-0.10666983660665624],[115,279,66,-0.10354248579445169],[115,279,67,-0.10035991343804646],[115,279,68,-0.09712270663660788],[115,279,69,-0.09383149940363783],[115,279,70,-0.09048697286678609],[115,279,71,-0.08708985545682274],[115,279,72,-0.08364092308572435],[115,279,73,-0.08014099931399671],[115,279,74,-0.07659095550693645],[115,279,75,-0.07299171098022372],[115,279,76,-0.06934423313455784],[115,279,77,-0.06564953757944275],[115,279,78,-0.06190868824611456],[115,279,79,-0.058122797489579214],[115,280,64,-0.10565207530560922],[115,280,65,-0.10252657817251737],[115,280,66,-0.09934719903712685],[115,280,67,-0.09611448696636277],[115,280,68,-0.09282903549943627],[115,280,69,-0.08949148279614533],[115,280,70,-0.08610251177367817],[115,280,71,-0.08266285023203518],[115,280,72,-0.07917327096802634],[115,280,73,-0.07563459187796412],[115,280,74,-0.07204767604875706],[115,280,75,-0.06841343183779358],[115,280,76,-0.06473281294133015],[115,280,77,-0.06100681845148881],[115,280,78,-0.057236492901858504],[115,280,79,-0.05342292630166523],[115,281,64,-0.10158861276532077],[115,281,65,-0.09840922408554159],[115,281,66,-0.09517783085844295],[115,281,67,-0.09189499097633136],[115,281,68,-0.08856130457142602],[115,281,69,-0.08517741410143137],[115,281,70,-0.08174400442306684],[115,281,71,-0.07826180285367135],[115,281,72,-0.07473157922083729],[115,281,73,-0.07115414590019892],[115,281,74,-0.06753035784107086],[115,281,75,-0.06386111258033977],[115,281,76,-0.06014735024431028],[115,281,77,-0.056390053538618534],[115,281,78,-0.05259024772620402],[115,281,79,-0.04874900059330628],[115,282,64,-0.09755389915203516],[115,282,65,-0.09432066807860578],[115,282,66,-0.09103730625458423],[115,282,67,-0.08770438055017138],[115,282,68,-0.08432249784331142],[115,282,69,-0.08089230504231082],[115,282,70,-0.07741448909586196],[115,282,71,-0.0738897769905929],[115,282,72,-0.07031893573609782],[115,282,73,-0.06670277233757371],[115,282,74,-0.0630421337557559],[115,282,75,-0.059337906854558975],[115,282,76,-0.05559101833612318],[115,282,77,-0.05180243466337919],[115,282,78,-0.04797316197012019],[115,282,79,-0.0441042459585525],[115,283,64,-0.09355076798173462],[115,283,65,-0.09026377599415009],[115,283,66,-0.08692852222417596],[115,283,67,-0.08354558267076401],[115,283,68,-0.080115571109944],[115,283,69,-0.07663913905429054],[115,283,70,-0.07311697569924125],[115,283,71,-0.06954980785638709],[115,283,72,-0.0659383998736901],[115,283,73,-0.06228355354275317],[115,283,74,-0.0585861079928357],[115,283,75,-0.05484693957202125],[115,283,76,-0.051066961715236114],[115,283,77,-0.047247124799233486],[115,283,78,-0.04338841598453225],[115,283,79,-0.03949185904427838],[115,284,64,-0.08958202273964211],[115,284,65,-0.08624138350656219],[115,284,66,-0.08285434546685111],[115,284,67,-0.07942149389730624],[115,284,68,-0.0759434496239334],[115,284,69,-0.07242086891809729],[115,284,70,-0.06885444337896501],[115,284,71,-0.06524489980236348],[115,284,72,-0.061593000036006595],[115,284,73,-0.05789954082121851],[115,284,74,-0.05416535362084052],[115,284,75,-0.050391304433736794],[115,284,76,-0.046578293595591236],[115,284,77,-0.0427272555661119],[115,284,78,-0.038839158702632326],[115,284,79,-0.03491500502007855],[115,285,64,-0.08565043468356259],[115,285,65,-0.08225629390127037],[115,285,66,-0.078817610138979],[115,285,67,-0.07533497809855755],[115,285,68,-0.07180902580729737],[115,285,69,-0.06824041445061416],[115,285,70,-0.06462983819047835],[115,285,71,-0.06097802396969884],[115,285,72,-0.0572857313020132],[115,285,73,-0.053553752048114966],[115,285,74,-0.04978291017729913],[115,285,75,-0.04597406151514788],[115,285,76,-0.042128093476943324],[115,285,77,-0.038245924786927704],[115,285,78,-0.034328505183397306],[115,285,79,-0.03037681510960097],[115,286,64,-0.08175874070366743],[115,286,65,-0.07831127591075271],[115,286,66,-0.07482111566676419],[115,286,67,-0.0712888642438938],[115,286,68,-0.06771515702133679],[115,286,69,-0.06410066025444139],[115,286,70,-0.060446070829021564],[115,286,71,-0.05675211600095614],[115,286,72,-0.053019553121030294],[115,286,73,-0.04924916934514731],[115,286,74,-0.04544178132959342],[115,286,75,-0.041598234911777165],[115,286,76,-0.03771940477613034],[115,286,77,-0.03380619410529037],[115,286,78,-0.029859534216551714],[115,286,79,-0.025880384183554622],[115,287,64,-0.0779096412386186],[115,287,65,-0.07440906160735639],[115,287,66,-0.07086762461660776],[115,287,67,-0.06728594425206016],[115,287,68,-0.0636646633946264],[115,287,69,-0.06000445352597186],[115,287,70,-0.05630601441863414],[115,287,71,-0.05257007381086079],[115,287,72,-0.048797387066119136],[115,287,73,-0.044988736817409086],[115,287,74,-0.04114493259605659],[115,287,75,-0.03726681044541599],[115,287,76,-0.03335523251916228],[115,287,77,-0.029411086664297204],[115,287,78,-0.025435285988853473],[115,287,79,-0.02142876841426894],[115,288,64,-0.07410579824793387],[115,288,65,-0.07055234435282912],[115,288,66,-0.06695986062263334],[115,288,67,-0.06332897089752001],[115,288,68,-0.0596603257090178],[115,288,69,-0.05595460192187651],[115,288,70,-0.052212502359950896],[115,288,71,-0.048434755416230046],[115,288,72,-0.04462211464696639],[115,288,73,-0.04077535835003662],[115,288,74,-0.03689528912720755],[115,288,75,-0.03298273343074137],[115,288,76,-0.029038541094016962],[115,288,77,-0.025063584846292092],[115,288,78,-0.021058759811592193],[115,288,79,-0.01702498299169561],[115,289,64,-0.07034983324080343],[115,289,65,-0.06674377680477406],[115,289,66,-0.06310050637159112],[115,289,67,-0.05942065577461961],[115,289,68,-0.05570488334387583],[115,289,69,-0.05195387148422423],[115,289,70,-0.04816832623701334],[115,289,71,-0.04434897682528327],[115,289,72,-0.04049657518249536],[115,289,73,-0.03661189546492069],[115,289,74,-0.03269573354735508],[115,289,75,-0.028748906502599036],[115,289,76,-0.02477225206437858],[115,289,77,-0.020766628073830617],[115,289,78,-0.016732911909539266],[115,289,79,-0.012671999901092218],[115,290,64,-0.0666443253611819],[115,290,65,-0.06298596897985037],[115,290,66,-0.059292201644959436],[115,290,67,-0.05556366731938403],[115,290,68,-0.0518010322783628],[115,290,69,-0.048004984624046426],[115,290,70,-0.04417623378290722],[115,290,71,-0.04031550998614067],[115,290,72,-0.03642356373301173],[115,290,73,-0.03250116523728039],[115,290,74,-0.02854910385637474],[115,290,75,-0.02456818750375242],[115,290,76,-0.020559242044121823],[115,290,77,-0.01652311067165113],[115,290,78,-0.012460653271148647],[115,290,79,-0.008372745762185552],[115,291,64,-0.06299180952928374],[115,291,65,-0.059281486373850834],[115,291,66,-0.055537541418376773],[115,291,67,-0.051760628889080174],[115,291,68,-0.04795142315190695],[115,291,69,-0.04411061816348655],[115,291,70,-0.04023892690436573],[115,291,71,-0.03633708079465281],[115,291,72,-0.03240582909202627],[115,291,73,-0.028445938272242094],[115,291,74,-0.024458191391804163],[115,291,75,-0.020443387433245613],[115,291,76,-0.016402340632686252],[115,291,77,-0.01233587978979761],[115,291,78,-0.008244847560156837],[115,291,79,-0.004130099729963199],[115,292,64,-0.05939477463931492],[115,292,65,-0.05563284813848329],[115,292,66,-0.05183907401823132],[115,292,67,-0.04801411689936877],[115,292,68,-0.044158659382676047],[115,292,69,-0.04027340143635233],[115,292,70,-0.036359059765156215],[115,292,71,-0.03241636716137414],[115,292,72,-0.028446071837567283],[115,292,73,-0.024448936741236937],[115,292,74,-0.020425738851065606],[115,292,75,-0.016377268455187388],[115,292,76,-0.012304328411150534],[115,292,77,-0.008207733387703448],[115,292,78,-0.004088309088385922],[115,292,79,5.310854310075497E-5],[115,293,64,-0.05585566181364096],[115,293,65,-0.052042525315062954],[115,293,66,-0.04819929933561323],[115,293,67,-0.04432665901925775],[115,293,68,-0.04042529534427017],[115,293,69,-0.03649591444728656],[115,293,70,-0.032539236928467996],[115,293,71,-0.02855599713790319],[115,293,72,-0.024546942443205322],[115,293,73,-0.020512832478439977],[115,293,74,-0.016454438374043506],[115,293,75,-0.012372541968184991],[115,293,76,-0.008267934999233728],[115,293,77,-0.004141418279464751],[115,293,78,6.199150015998023E-6],[115,293,79,0.00417410088315498],[115,294,64,-0.05237686271329192],[115,294,65,-0.04851293912501217],[115,294,66,-0.044620667097528904],[115,294,67,-0.04070073242375136],[115,294,68,-0.0367538346005267],[115,294,69,-0.03278068608944998],[115,294,70,-0.028782011558191684],[115,294,71,-0.024758547102478573],[115,294,72,-0.02071103944868012],[115,294,73,-0.016640245137139437],[115,294,74,-0.012546929685903901],[115,294,75,-0.008431866735314653],[115,294,76,-0.004295837173111855],[115,294,77,-1.3962824019031483E-4],[115,294,78,0.004035967383013067],[115,294,79,0.008230152509528008],[115,295,64,-0.04896071790471944],[115,295,65,-0.04504645931708241],[115,295,66,-0.04110557519528932],[115,295,67,-0.037138762104106604],[115,295,68,-0.03314672819834956],[115,295,69,-0.029130192420625395],[115,295,70,-0.02508988367900157],[115,295,71,-0.021026540004738442],[115,295,72,-0.01694090769003681],[115,295,73,-0.01283374040594322],[115,295,74,-0.008705798300060755],[115,295,75,-0.004557847074533147],[115,295,76,-3.906570439525803E-4],[115,295,77,0.0037949978266706152],[115,295,78,0.00799834090389731],[115,295,79,0.012218593887833765],[115,296,64,-0.045609515282984694],[115,296,65,-0.041645402571479806],[115,296,66,-0.0376563680702561],[115,296,67,-0.03364311923588428],[115,296,68,-0.029606373018749604],[115,296,69,-0.025546854997933882],[115,296,70,-0.021465298495431787],[115,296,71,-0.017362443669839245],[115,296,72,-0.01323903658946722],[115,296,73,-0.009095828285020174],[115,296,74,-0.004933573781489994],[115,296,75,-7.530311097315029E-4],[115,296,76,0.003445039702629174],[115,296,77,0.007659877660816078],[115,296,78,0.01189072185307398],[115,296,79,0.016136812521416688],[115,297,64,-0.04232548855128522],[115,297,65,-0.038312030960800714],[115,297,66,-0.034275335156849746],[115,297,67,-0.030216119604697778],[115,297,68,-0.026135110186000773],[115,297,69,-0.022033039271064772],[115,297,70,-0.017910644769846246],[115,297,71,-0.013768669161832753],[115,297,72,-0.009607858504755137],[115,297,73,-0.005428961422274364],[115,297,74,-0.001232728070287889],[115,297,75,0.0029800909176716517],[115,297,76,0.007208745506299144],[115,297,77,0.011452487355501306],[115,297,78,0.01571057093852337],[115,297,79,0.019982254681245107],[115,298,64,-0.039110815756736514],[115,298,65,-0.03504855046769237],[115,298,66,-0.03096470938273646],[115,298,67,-0.026860022089572624],[115,298,68,-0.022735223534822213],[115,298,69,-0.018591053033929883],[115,298,70,-0.014428253259215033],[115,298,71,-0.01024756920620968],[115,298,72,-0.006049747138234758],[115,298,73,-0.0018355335093587777],[115,298,74,0.0023943261346207195],[115,298,75,0.006639088276693357],[115,298,76,0.010898012571009398],[115,298,77,0.015170363006966989],[115,298,78,0.0194554090950367],[115,298,79,0.023752427074347576],[115,299,64,-0.03596761788258084],[115,299,65,-0.03185710955941315],[115,299,66,-0.027726665726367998],[115,299,67,-0.023577027204096115],[115,299,68,-0.019408938135768772],[115,299,69,-0.015223144934926665],[115,299,70,-0.011020395210879726],[115,299,71,-0.006801436671798389],[115,299,72,-0.002567016005449528],[115,299,73,0.0016821222622798795],[115,299,74,0.005945236931430439],[115,299,75,0.010221591314110691],[115,299,76,0.014510454443087822],[115,299,77,0.01881110230268783],[115,299,78,0.023122819082025882],[115,299,79,0.027444898450594557],[115,300,64,-0.03289795749673465],[115,300,65,-0.028739797819202516],[115,300,66,-0.024563319831784135],[115,300,67,-0.020369275695264928],[115,300,68,-0.016158418878736036],[115,300,69,-0.01193150304571379],[115,300,70,-0.007689280917213638],[115,300,71,-0.0034325031119217184],[115,300,72,8.380830365849017E-4],[115,300,73,0.005121734685423356],[115,300,74,0.009417714711159524],[115,300,75,0.013725292961246433],[115,300,76,0.01804374752851101],[115,300,77,0.02237236604854288],[115,300,78,0.02671044702001033],[115,300,79,0.031057301147927194],[115,301,64,-0.029903837456595375],[115,301,65,-0.025698644634381245],[115,301,66,-0.021476726680597538],[115,301,67,-0.017238847199947973],[115,301,68,-0.01298576911449701],[115,301,69,-0.008718253488416816],[115,301,70,-0.004437058329091768],[115,301,71,-1.4293736472527005E-4],[115,301,72,0.004163361201599882],[115,301,73,0.008481095961260269],[115,301,74,0.012809533593198584],[115,301,75,0.017147950180306057],[115,301,76,0.021495632549450173],[115,301,77,0.025851879634999825],[115,301,78,0.03021600386587201],[115,301,79,0.03458733257612554],[115,302,64,-0.0269871996702714],[115,302,65,-0.022735617941346355],[115,302,66,-0.01846887932132808],[115,302,67,-0.014187758959135249],[115,302,68,-0.00989302935444204],[115,302,69,-0.005585459121437644],[115,302,70,-0.0012658117283465683],[115,302,71,0.0030651557871435326],[115,302,72,0.007406694126596796],[115,302,73,0.01175806306353716],[115,302,74,0.01611853280052093],[115,302,75,0.02048738535008003],[115,302,76,0.024863915939905373],[115,302,77,0.029247434442123507],[115,302,78,0.03363726682668994],[115,302,79,0.03803275663892538],[115,303,64,-0.02414992391414908],[115,303,65,-0.019852623027374762],[115,303,66,-0.015541707655998377],[115,303,67,-0.011217964589883072],[115,303,68,-0.00688217602843235],[115,303,69,-0.0025351182837751477],[115,303,70,0.0018224395408834825],[115,303,71,0.006189736897600093],[115,303,72,0.01056602316476763],[115,303,73,0.014950559042778682],[115,303,74,0.019342617974649888],[115,303,75,0.023741487591109754],[115,303,76,0.028146471180524064],[115,303,77,0.03255688918350823],[115,303,78,0.03697208071225243],[115,303,79,0.04139140509458439],[115,304,64,-0.021393826706726196],[115,304,65,-0.017051501389164204],[115,304,66,-0.01269707728391838],[115,304,67,-0.008331352914882025],[115,304,68,-0.003955120300692318],[115,304,69,4.3083640221612887E-4],[115,304,70,0.004825742281988031],[115,304,71,0.009228833079007636],[115,304,72,0.013639356618890063],[115,304,73,0.01805657427065604],[115,304,74,0.022479762430463478],[115,304,75,0.026908214030396387],[115,304,76,0.031341240072686294],[115,304,77,0.03577817118921605],[115,304,78,0.04021835922633041],[115,304,79,0.04466117885497975],[115,305,64,-0.018720660238862017],[115,305,65,-0.014334029648262036],[115,305,66,-0.009936788402812726],[115,305,67,-0.005529746849803511],[115,305,68,-0.0011137069438981843],[115,305,69,0.003310539169471577],[115,305,70,0.007742210596740379],[115,305,71,0.012180539164719492],[115,305,72,0.016624770915034115],[115,305,73,0.02107416762433552],[115,305,74,0.02552800835066763],[115,305,75,0.029985591005482655],[115,305,76,0.034446233951684155],[115,305,77,0.03890927762754676],[115,305,78,0.043374086196537126],[115,305,79,0.0478400492230621],[115,306,64,-0.016132111360364132],[115,306,65,-0.011701918523302823],[115,306,66,-0.007262574767210067],[115,306,67,-0.0028149023483428764],[115,306,68,0.0016402867286200232],[115,306,69,0.006102192186350171],[115,306,70,0.010570026977259728],[115,306,71,0.015043018812364438],[115,306,72,0.019520411716664784],[115,306,73,0.024001467610896027],[115,306,74,0.028485467920026757],[115,306,75,0.03297171520799822],[115,306,76,0.03745953483908628],[115,306,77,0.04194827666573164],[115,306,78,0.04643731674286604],[115,306,79,0.05092605906875803],[115,307,64,-0.013629800622848423],[115,307,65,-0.009156811858989547],[115,307,66,-0.004676102704026776],[115,307,67,-1.8850740489279733E-4],[115,307,68,0.004305151872630739],[115,307,69,0.008804066578323562],[115,307,70,0.01330744333915019],[115,307,71,0.017814505547945815],[115,307,72,0.02232449497921475],[115,307,73,0.026836673431888114],[115,307,74,0.03135032439942437],[115,307,75,0.03586475476674106],[115,307,76,0.04037929653436213],[115,307,77,0.04489330856962623],[115,307,78,0.04940617838498235],[115,307,79,0.053917323943398085],[115,308,64,-0.011215281379009505],[115,308,65,-0.0067002857119568895],[115,308,66,-0.0021789701854881827],[115,308,67,0.002347818885012648],[115,308,68,0.006879249064562776],[115,308,69,0.011414503391076178],[115,308,70,0.015952781995666812],[115,308,71,0.020493303750604167],[115,308,72,0.025035307944972593],[115,308,73,0.029578055987879312],[115,308,74,0.034120833139599],[115,308,75,0.03866295027013811],[115,308,76,0.04320374564560654],[115,308,77,0.04774258674224108],[115,308,78,0.05227887208810773],[115,308,79,0.05681203313250667],[115,309,64,-0.008890038938227388],[115,309,65,-0.004333847493442455],[115,309,66,2.2729404068912162E-4],[115,309,67,0.004792527206556596],[115,309,68,0.009361009194955208],[115,309,69,0.013931914495092512],[115,309,70,0.018504436572989155],[115,309,71,0.023077789578123703],[115,309,72,0.027651210078369418],[115,309,73,0.03222395882306933],[115,309,74,0.03679532253463788],[115,309,75,0.04136461572817032],[115,309,76,0.04593118255945035],[115,309,77,0.05049439870119754],[115,309,78,0.05505367324758373],[115,309,79,0.059608450647041816],[115,310,64,-0.006655489778454024],[115,310,65,-0.002058935168708656],[115,310,66,0.0025412312639137152],[115,310,67,0.007144138849861231],[115,310,68,0.011748934303854056],[115,310,69,0.01635478343179511],[115,310,70,0.020960872866664634],[115,310,71,0.025566411833245206],[115,310,72,0.03017063394172735],[115,310,73,0.034772799010039296],[115,310,74,0.03937219491529359],[115,310,75,0.04396813947382627],[115,310,76,0.04855998235022327],[115,310,77,0.05314710699517404],[115,310,78,0.05772893261218172],[115,310,79,0.06230491615315262],[115,311,64,-0.004512980814503784],[115,311,65,1.2308348666020819E-4],[115,311,66,0.0047614535660046725],[115,311,67,0.009401246476445621],[115,311,68,0.014041598358025542],[115,311,69,0.01868166620109822],[115,311,70,0.023320629639085613],[115,311,71,0.02795769277064966],[115,311,72,0.03259208601133086],[115,311,73,0.0372230679744945],[115,311,74,0.0418499273819829],[115,311,75,0.04647198500394223],[115,311,76,0.0510885956282241],[115,311,77,0.055699150059198954],[115,311,78,0.06030307714601253],[115,311,79,0.06489984584030613],[115,312,64,-0.0024637887226797023],[115,312,65,0.0022109115736528573],[115,312,66,0.006886644519216861],[115,312,67,0.011562514827986661],[115,312,68,0.01623764797005718],[115,312,69,0.020911191990450134],[115,312,70,0.025582319358074285],[115,312,71,0.0302502288446857],[115,312,72,0.03491414743389683],[115,312,73,0.03957333226007741],[115,312,74,0.044227072577543755],[115,312,75,0.048874691759506886],[115,312,76,0.053515549327177614],[115,312,77,0.05814904300886767],[115,312,78,0.062774610829116],[115,312,79,0.06739173322786393],[115,313,64,-5.0911932168754E-4],[115,313,65,0.004203323699968259],[115,313,66,0.008915559827056163],[115,313,67,0.013626681377435584],[115,313,68,0.018335803059398928],[115,313,69,0.023042063845418417],[115,313,70,0.02774462887662993],[115,313,71,0.03244269139789582],[115,313,72,0.037135474723498624],[115,313,73,0.04182223423330603],[115,313,74,0.046502259399807344],[115,313,75,0.05117487584548647],[115,313,76,0.05583944743093547],[115,313,77,0.06049537837354255],[115,313,78,0.06514211539678819],[115,313,79,0.06977914991016892],[115,314,64,0.0013498929900492146],[115,314,65,0.006099166553279536],[115,314,66,0.01084702790776719],[115,314,67,0.015592556922372575],[115,314,68,0.020334857455222066],[115,314,69,0.02507305928169251],[115,314,70,0.02980632005371156],[115,314,71,0.03453382729021551],[115,314,72,0.03925480039881479],[115,314,73,0.043968492728509195],[115,314,74,0.048674193653854086],[115,314,75,0.053371230690039045],[115,314,76,0.05805897163928625],[115,314,77,0.06273682676840148],[115,314,78,0.06740425101751069],[115,314,79,0.07206074624000286],[115,315,64,0.0031121857407689357],[115,315,65,0.007897359417721184],[115,315,66,0.012679950420592001],[115,315,67,0.017459026120696747],[115,315,68,0.02223367944119964],[115,315,69,0.02700303083860886],[115,315,70,0.031766230316163074],[115,315,71,0.03652245946895058],[115,315,72,0.04127093356081196],[115,315,73,0.04601090363286628],[115,315,74,0.05074165864406402],[115,315,75,0.05546252764322837],[115,315,76,0.06017288197298934],[115,315,77,0.06487213750544743],[115,315,78,0.06955975690959693],[115,315,79,0.07423525195053174],[115,316,64,0.004776768835379197],[115,316,65,0.00959689463353311],[115,316,66,0.014413302734731376],[115,316,67,0.019225047968583597],[115,316,68,0.024031212242136057],[115,316,69,0.028830906574127013],[115,316,70,0.03362327316170602],[115,316,71,0.03840748747945866],[115,316,72,0.04318276041078539],[115,316,73,0.04794834041147594],[115,316,74,0.05270351570588416],[115,316,75,0.05744761651516053],[115,316,76,0.06218001731795167],[115,316,77,0.06690013914339976],[115,316,78,0.0716074518964743],[115,316,79,0.07630147671565776],[115,317,64,0.006342724949174594],[115,317,65,0.011196837999944198],[115,317,66,0.016046134341094254],[115,317,67,0.02088965622079672],[115,317,68,0.025726474452534454],[115,317,69,0.030555690501344213],[115,317,70,0.035376438603093446],[115,317,71,0.040187887916629084],[115,317,72,0.04498924470885149],[115,317,73,0.04977975457254988],[115,317,74,0.05455870467740892],[115,317,75,0.05932542605363983],[115,317,76,0.06407929590864789],[115,317,77,0.06881973997656846],[115,317,78,0.07354623490070325],[115,317,79,0.07825831064887936],[115,318,64,0.00780920986516595],[115,318,65,0.012696329121194727],[115,318,66,0.017577569206732035],[115,318,67,0.022451959753248152],[115,318,68,0.0273185604069954],[115,318,69,0.032176462966442804],[115,318,70,0.037024793553311314],[115,318,71,0.04186271481704637],[115,318,72,0.046689428172779296],[115,318,73,0.05150417607261523],[115,318,74,0.05630624431065859],[115,318,75,0.061094964361226384],[115,318,76,0.0658697157506628],[115,318,77,0.07062992846258812],[115,318,78,0.07537508537661217],[115,318,79,0.08010472474053607],[115,319,64,0.00917545275507528],[115,319,65,0.014094581695754255],[115,319,66,0.019006806072013938],[115,319,67,0.023911142867865914],[115,319,68,0.02880664049250642],[115,319,69,0.033692380968127905],[115,319,70,0.03856748215189229],[115,319,71,0.04343109999190195],[115,319,72,0.048282430817222166],[115,319,73,0.053120713661789054],[115,319,74,0.05794523262261844],[115,319,75,0.06275531925176128],[115,319,76,0.06755035498242384],[115,319,77,0.07232977358908041],[115,319,78,0.07709306368161434],[115,319,79,0.08183977123350658],[116,-64,64,-0.10335394600321779],[116,-64,65,-0.10697417606133752],[116,-64,66,-0.1104846781783555],[116,-64,67,-0.11388401064799836],[116,-64,68,-0.11717088484836247],[116,-64,69,-0.12034417081450366],[116,-64,70,-0.12340290287412925],[116,-64,71,-0.12634628534629533],[116,-64,72,-0.1291736983031223],[116,-64,73,-0.13188470339444902],[116,-64,74,-0.13447904973565827],[116,-64,75,-0.13695667985834614],[116,-64,76,-0.13931773572410122],[116,-64,77,-0.14156256480125795],[116,-64,78,-0.14369172620468484],[116,-64,79,-0.1457059968985761],[116,-63,64,-0.09777759261448538],[116,-63,65,-0.10138663865333342],[116,-63,66,-0.10488655349170173],[116,-63,67,-0.10827589229160872],[116,-63,68,-0.11155336273488448],[116,-63,69,-0.11471783058804852],[116,-63,70,-0.11776832533031567],[116,-63,71,-0.12070404584463035],[116,-63,72,-0.12352436617175233],[116,-63,73,-0.12622884132730183],[116,-63,74,-0.128817213182006],[116,-63,75,-0.13128941640481773],[116,-63,76,-0.13364558446916763],[116,-63,77,-0.1358860557222188],[116,-63,78,-0.13801137951718534],[116,-63,79,-0.1400223224086763],[116,-62,64,-0.09212164216059782],[116,-62,65,-0.09571875861643364],[116,-62,66,-0.0992073667709692],[116,-62,67,-0.1025860185652232],[116,-62,68,-0.10585341786955027],[116,-62,69,-0.10900842604036876],[116,-62,70,-0.11205006754003854],[116,-62,71,-0.11497753561980184],[116,-62,72,-0.1177901980657936],[116,-62,73,-0.12048760300804395],[116,-62,74,-0.12306948479270519],[116,-62,75,-0.12553576991717919],[116,-62,76,-0.1278865830284025],[116,-62,77,-0.13012225298416502],[116,-62,78,-0.13224331897751185],[116,-62,79,-0.13425053672420617],[116,-61,64,-0.08639037546482708],[116,-61,65,-0.08997482375346066],[116,-61,66,-0.09345141247664257],[116,-61,67,-0.0968186902666135],[116,-61,68,-0.10007535706886417],[116,-61,69,-0.1032202696902772],[116,-61,70,-0.10625244741045059],[116,-61,71,-0.10917107765610445],[116,-61,72,-0.11197552173858738],[116,-61,73,-0.11466532065440016],[116,-61,74,-0.11724020094896881],[116,-61,75,-0.11970008064334425],[116,-61,76,-0.12204507522408825],[116,-61,77,-0.12427550369621532],[116,-61,78,-0.1263918946992474],[116,-61,79,-0.12839499268635135],[116,-60,64,-0.08058811841791458],[116,-60,65,-0.08415916742012663],[116,-60,66,-0.08762303109063341],[116,-60,67,-0.09097825466668819],[116,-60,68,-0.09422353405742079],[116,-60,69,-0.09735772138297139],[116,-60,70,-0.10037983057682542],[116,-60,71,-0.10328904305126185],[116,-60,72,-0.10608471342592585],[116,-60,73,-0.108766375319443],[116,-60,74,-0.11133374720430922],[116,-60,75,-0.1137867383247334],[116,-60,76,-0.11612545467769175],[116,-60,77,-0.11835020505706373],[116,-60,78,-0.12046150716090287],[116,-60,79,-0.1224600937618252],[116,-59,64,-0.0747192371006532],[116,-59,65,-0.07827616363830026],[116,-59,66,-0.08172660422064237],[116,-59,67,-0.08506910060535844],[116,-59,68,-0.08830234455568775],[116,-59,69,-0.09142518337013039],[116,-59,70,-0.09443662547537457],[116,-59,71,-0.09733584608236079],[116,-59,72,-0.10012219290549706],[116,-59,73,-0.1027951919449388],[116,-59,74,-0.10535455333217247],[116,-59,75,-0.10780017723857438],[116,-59,76,-0.11013215984720781],[116,-59,77,-0.11235079938772552],[116,-59,78,-0.11445660223443643],[116,-59,79,-0.11645028906750765],[116,-58,64,-0.06878813278202267],[116,-58,65,-0.07233022208436612],[116,-58,66,-0.0757665495791724],[116,-58,67,-0.07909565346163439],[116,-58,68,-0.0823162212416042],[116,-58,69,-0.08542709526344361],[116,-58,70,-0.08842727828912367],[116,-58,71,-0.09131593914448943],[116,-58,72,-0.09409241842869698],[116,-58,73,-0.09675623428674085],[116,-58,74,-0.0993070882453122],[116,-58,75,-0.10174487111165387],[116,-58,76,-0.1040696689356777],[116,-58,77,-0.10628176903521669],[116,-58,78,-0.1083816660844612],[116,-58,79,-0.11037006826555762],[116,-57,64,-0.06279923679319277],[116,-57,65,-0.06632578295299563],[116,-57,66,-0.06974731583751159],[116,-57,67,-0.07306236999826421],[116,-57,68,-0.0762696285863228],[116,-57,69,-0.0793679288618907],[116,-57,70,-0.08235626776716864],[116,-57,71,-0.08523380756240184],[116,-57,72,-0.08799988152513061],[116,-57,73,-0.09065399971255128],[116,-57,74,-0.0931958547872318],[116,-57,75,-0.09562532790585121],[116,-57,76,-0.09794249467122373],[116,-57,77,-0.10014763114748182],[116,-57,78,-0.10224121993846713],[116,-57,79,-0.10422395632931081],[116,-56,64,-0.05675700527725003],[116,-56,65,-0.06026731169617794],[116,-56,66,-0.06367337735453649],[116,-56,67,-0.06697373308077148],[116,-56,68,-0.07016705756393893],[116,-56,69,-0.07325218285262425],[116,-56,70,-0.07622809991716073],[116,-56,71,-0.07909396427505788],[116,-56,72,-0.08184910167965287],[116,-56,73,-0.08449301387190078],[116,-56,74,-0.08702538439553853],[116,-56,75,-0.0894460844753],[116,-56,76,-0.09175517895843799],[116,-56,77,-0.09395293231942814],[116,-56,78,-0.09603981472790779],[116,-56,79,-0.09801650817982122],[116,-55,64,-0.050665913814490815],[116,-55,65,-0.05415929363736138],[116,-55,66,-0.05754922878018043],[116,-55,67,-0.060834246270733194],[116,-55,68,-0.0640130202350574],[116,-55,69,-0.06708437738529494],[116,-55,70,-0.07004730257086778],[116,-55,71,-0.07290094439288353],[116,-55,72,-0.07564462088179047],[116,-55,73,-0.07827782523819193],[116,-55,74,-0.08080023163705918],[116,-55,75,-0.08321170109501896],[116,-55,76,-0.08551228740096939],[116,-55,77,-0.08770224310990393],[116,-55,78,-0.0897820255999896],[116,-55,79,-0.09175230319287941],[116,-54,64,-0.04453045192358607],[116,-54,65,-0.04800622846100344],[116,-54,66,-0.05137937953387428],[116,-54,67,-0.054648428293605944],[116,-54,68,-0.057812044204497925],[116,-54,69,-0.06086904852013253],[116,-54,70,-0.0638184198231142],[116,-54,71,-0.06665929962805861],[116,-54,72,-0.06939099804785465],[116,-54,73,-0.07201299952311091],[116,-54,74,-0.07452496861502045],[116,-54,75,-0.07692675586132347],[116,-54,76,-0.07921840369562316],[116,-54,77,-0.08140015242992937],[116,-54,78,-0.08347244630048167],[116,-54,79,-0.08543593957682805],[116,-53,64,-0.038355117438468644],[116,-53,65,-0.04181262457738899],[116,-53,66,-0.04516834815780835],[116,-53,67,-0.04842080738094989],[116,-53,68,-0.051568666952995],[116,-53,69,-0.054610742549630054],[116,-53,70,-0.05754600634395679],[116,-53,71,-0.06037359259768138],[116,-53,72,-0.06309280331559497],[116,-53,73,-0.06570311396326167],[116,-53,74,-0.06820417924814737],[116,-53,75,-0.07059583896386856],[116,-53,76,-0.07287812389781723],[116,-53,77,-0.07505126180203403],[116,-53,78,-0.07711568342738528],[116,-53,79,-0.07907202862101581],[116,-52,64,-0.032144410760783226],[116,-52,65,-0.035582993362548],[116,-52,66,-0.03892065654485588],[116,-52,67,-0.042155915486888795],[116,-52,68,-0.04528743004272717],[116,-52,69,-0.04831401019366677],[116,-52,70,-0.05123462156392555],[116,-52,71,-0.05404839099964964],[116,-52,72,-0.05675461221123068],[116,-52,73,-0.059352751478855104],[116,-52,74,-0.06184245342151384],[116,-52,75,-0.06422354682915543],[116,-52,76,-0.06649605055823471],[116,-52,77,-0.06866017949053427],[116,-52,78,-0.070716350555309],[116,-52,79,-0.0726651888147305],[116,-51,64,-0.025902828988212945],[116,-51,65,-0.02932184327359033],[116,-51,66,-0.032640824041469396],[116,-51,67,-0.03585828237912336],[116,-51,68,-0.03897287319698972],[116,-51,69,-0.041983400668388904],[116,-51,70,-0.04488882373265224],[116,-51,71,-0.04768826166157014],[116,-51,72,-0.05038099968917442],[116,-51,73,-0.05296649470477288],[116,-51,74,-0.05544438100946503],[116,-51,75,-0.05781447613582269],[116,-51,76,-0.06007678673098826],[116,-51,77,-0.0622315145030663],[116,-51,78,-0.06427906223085933],[116,-51,79,-0.0662200398369246],[116,-50,64,-0.019634859918527647],[116,-50,65,-0.0230336738393061],[116,-50,66,-0.0263333614254041],[116,-50,67,-0.029532429604341326],[116,-50,68,-0.032629528253863005],[116,-50,69,-0.035623455628696066],[116,-50,70,-0.03851316385073167],[116,-50,71,-0.041297764462550623],[116,-50,72,-0.043976534044301574],[116,-50,73,-0.04654891989385579],[116,-50,74,-0.04901454577045827],[116,-50,75,-0.05137321770157066],[116,-50,76,-0.053624929853147596],[116,-50,77,-0.05576987046323001],[116,-50,78,-0.0578084278389015],[116,-50,79,-0.059741196416587816],[116,-49,64,-0.013344975929191039],[116,-49,65,-0.016722969525861386],[116,-49,66,-0.020002764758092817],[116,-49,67,-0.023182864327859987],[116,-49,68,-0.026261912993703285],[116,-49,69,-0.029238702984160092],[116,-49,70,-0.03211217947464606],[116,-49,71,-0.03488144612769717],[116,-49,72,-0.03754577069658693],[116,-49,73,-0.04010459069223704],[116,-49,74,-0.04255751911364858],[116,-49,75,-0.04490435024154171],[116,-49,76,-0.04714506549545194],[116,-49,77,-0.04927983935416069],[116,-49,78,-0.05130904533951097],[116,-49,79,-0.05323326206358603],[116,-48,64,-0.007037627732848328],[116,-48,65,-0.010394193477920255],[116,-48,66,-0.01365350911200447],[116,-48,67,-0.01681407304782745],[116,-48,68,-0.01987452484078689],[116,-48,69,-0.022833650588709786],[116,-48,70,-0.02569038839508153],[116,-48,71,-0.028443833895653303],[116,-48,72,-0.031093245848445195],[116,-48,73,-0.03363805178706358],[116,-48,74,-0.036077853737555676],[116,-48,75,-0.038412433998496365],[116,-48,76,-0.04064176098454675],[116,-48,77,-0.04276599513337098],[116,-48,78,-0.044785494875954956],[116,-48,79,-0.046700822670308395],[116,-47,64,-7.172380085348484E-4],[116,-47,65,-0.0040517811350215815],[116,-47,66,-0.007290042172819922],[116,-47,67,-0.010430515183816103],[116,-47,68,-0.013471834438941066],[116,-47,69,-0.016412779803913646],[116,-47,70,-0.01925228218847319],[116,-47,71,-0.02198942905900958],[116,-47,72,-0.024623470014608184],[116,-47,73,-0.027153822426428942],[116,-47,74,-0.029580077140641703],[116,-47,75,-0.03190200424461054],[116,-47,76,-0.034119558896572366],[116,-47,77,-0.036232887218691445],[116,-47,78,-0.03824233225353413],[116,-47,79,-0.04014843998394724],[116,-46,64,0.005611805091557898],[116,-46,65,0.002299866276938234],[116,-46,66,-9.16777716267414E-4],[116,-46,67,-0.004036616539651816],[116,-46,68,-0.0070582791010034285],[116,-46,69,-0.009980538935701277],[116,-46,70,-0.012802319641615822],[116,-46,71,-0.015522700377426757],[116,-46,72,-0.0181409214243744],[116,-46,73,-0.020656389811363307],[116,-46,74,-0.023068685003639677],[116,-46,75,-0.025377564654739615],[116,-46,76,-0.02758297042194713],[116,-46,77,-0.029685033845147535],[116,-46,78,-0.031684082289120674],[116,-46,79,-0.03358064494925472],[116,-45,64,0.01194515455943379],[116,-45,65,0.008656388378807556],[116,-45,66,0.00546191104006466],[116,-45,67,0.002363237359201631],[116,-45,68,-6.382561324305147E-4],[116,-45,69,-0.0035413365448456746],[116,-45,70,-0.006344920049664804],[116,-45,71,-0.009048077363795537],[116,-45,72,-0.011650039296560832],[116,-45,73,-0.014150202360199149],[116,-45,74,-0.016548134443956974],[116,-45,75,-0.01884358055146873],[116,-45,76,-0.021036468601666414],[116,-45,77,-0.023126915293100847],[116,-45,78,-0.025115232031722168],[116,-45,79,-0.02700193092209857],[116,-44,64,0.01827851127292468],[116,-44,65,0.01501347239601436],[116,-44,66,0.011841698210092289],[116,-44,67,0.008764708053860981],[116,-44,68,0.005783883971102632],[116,-44,69,0.0029004653689524984],[116,-44,70,1.1554361263177437E-4],[116,-44,71,-0.0025699434432715496],[116,-44,72,-0.0051552169869913955],[116,-44,73,-0.0076396628451606],[116,-44,74,-0.010022837141996699],[116,-44,75,-0.012304472021793966],[116,-44,76,-0.014484481434962171],[116,-44,77,-0.016562966987493932],[116,-44,78,-0.018540223853910298],[116,-44,79,-0.020416746753660897],[116,-43,64,0.024607630861763874],[116,-43,65,0.021366860041307723],[116,-43,66,0.018218312137946335],[116,-43,67,0.015163511066011881],[116,-43,68,0.012203844452279955],[116,-43,69,0.009340558309544833],[116,-43,70,0.006574751646638566],[116,-43,71,0.003907371014980843],[116,-43,72,0.0013392049916421955],[116,-43,73,-0.001129121400998967],[116,-43,74,-0.0034971523392226533],[116,-43,75,-0.00576460690526015],[116,-43,76,-0.007931384858147372],[116,-43,77,-0.009997572468026572],[116,-43,78,-0.011963448413941369],[116,-43,79,-0.01382948974510323],[116,-42,64,0.030928330697776896],[116,-42,65,0.027712354522072546],[116,-42,66,0.02458754242169936],[116,-42,67,0.021555422937336366],[116,-42,68,0.018617389346565982],[116,-42,69,0.015774694353051344],[116,-42,70,0.013028444712144371],[116,-42,71,0.010379595793004293],[116,-42,72,0.007828946077216181],[116,-42,73,0.005377131593985673],[116,-42,74,0.0030246202916928144],[116,-42,75,7.717063461053497E-4],[116,-42,76,-0.0013814955949869034],[116,-42,77,-0.0034350562306023624],[116,-42,78,-0.0053892374889065175],[116,-42,79,-0.007244498473040206],[116,-41,64,0.037236497009357716],[116,-41,65,0.034045827672389395],[116,-41,66,0.03094524706227808],[116,-41,67,0.027936288394550757],[116,-41,68,0.02502035066264441],[116,-41,69,0.02219869334297986],[116,-41,70,0.019472431036448246],[116,-41,71,0.016842528046393412],[116,-41,72,0.014309792893078321],[116,-41,73,0.011874872764710442],[116,-41,74,0.00953824790481339],[116,-41,75,0.007300225936238469],[116,-41,76,0.005160936121583304],[116,-41,77,0.003120323560129812],[116,-41,78,0.0011781433212583181],[116,-41,79,-6.66045485646416E-4],[116,-40,64,0.043528092120377004],[116,-40,65,0.040363227209986974],[116,-40,66,0.03728735973771102],[116,-40,67,0.03430202764020185],[116,-40,68,0.03140863568902341],[116,-40,69,0.028608450211901726],[116,-40,70,0.02590259375037507],[116,-40,71,0.0232920396539239],[116,-40,72,0.02077760661056982],[116,-40,73,0.01835995311401728],[116,-40,74,0.016039571867127123],[116,-40,75,0.01381678412201448],[116,-40,76,0.011691733956537442],[116,-40,77,0.009664382487291734],[116,-40,78,0.007734502019063005],[116,-40,79,0.005901670130758818],[116,-39,64,0.049799161813219195],[116,-39,65,0.046660584117781845],[116,-39,66,0.04360989720240416],[116,-39,67,0.04064864376891697],[116,-39,68,0.037778234426497526],[116,-39,69,0.03499994242937288],[116,-39,70,0.03231489835090573],[116,-39,71,0.029724084694150332],[116,-39,72,0.02722833043885675],[116,-39,73,0.024828305525006478],[116,-39,74,0.022524515272665413],[116,-39,75,0.020317294738443015],[116,-39,76,0.018206803008331662],[116,-39,77,0.016193017427033496],[116,-39,78,0.014275727763732649],[116,-39,79,0.01245453031433108],[116,-38,64,0.05604584281609304],[116,-38,65,0.052934020150150474],[116,-38,66,0.04990896681159074],[116,-38,67,0.04697223030924924],[116,-38,68,0.04412522714661449],[116,-38,69,0.041369237576247664],[116,-38,70,0.038705400290573566],[116,-38,71,0.03613470704912336],[116,-38,72,0.03365799724221463],[116,-38,73,0.03127595239114711],[116,-38,74,0.028989090584700672],[116,-38,75,0.02679776085222796],[116,-38,76,0.024702137473109342],[116,-38,77,0.022702214222683703],[116,-38,78,0.02079779855460928],[116,-38,79,0.01898850571967403],[116,-37,64,0.06226437041478439],[116,-37,65,0.05917975546410481],[116,-37,66,0.05618077417112721],[116,-37,67,0.05326897889129534],[116,-37,68,0.05044579207631772],[116,-37,69,0.047712501045560574],[116,-37,70,0.04507025269379794],[116,-37,71,0.042520048135400224],[116,-37,72,0.04006273728494636],[116,-37,73,0.03769901337433745],[116,-37,74,0.03542940740620071],[116,-37,75,0.03325428254387108],[116,-37,76,0.031173828437723983],[116,-37,77,0.029188055487969433],[116,-37,78,0.027296789043861902],[116,-37,79,0.025499663539347184],[116,-36,64,0.06845108618851337],[116,-36,65,0.06539411637502923],[116,-36,66,0.06242163091229014],[116,-36,67,0.05953518703973637],[116,-36,68,0.056736213208421815],[116,-36,69,0.05402600386962564],[116,-36,70,0.051405714199809105],[116,-36,71,0.048876354761998475],[116,-36,72,0.046438786103577656],[116,-36,73,0.04409371329056755],[116,-36,74,0.04184168037818503],[116,-36,75,0.03968306481796491],[116,-36,76,0.03761807180122001],[116,-36,77,0.03564672853894946],[116,-36,78,0.0337688784781498],[116,-36,79,0.03198417545454879],[116,-35,64,0.07460244587017362],[116,-35,65,0.07157354323726062],[116,-35,66,0.06862796259185977],[116,-35,67,0.06576726609259154],[116,-35,68,0.0629928882382037],[116,-35,69,0.060306130673641656],[116,-35,70,0.05770815693244902],[116,-35,71,0.055199987115582716],[116,-35,72,0.05278249250662537],[116,-35,73,0.050456390123470585],[116,-35,74,0.048222237206276164],[116,-35,75,0.046080425641967904],[116,-35,76,0.04403117632506759],[116,-35,77,0.04207453345495715],[116,-35,78,0.04021035876953294],[116,-35,79,0.03843832571527073],[116,-34,64,0.08071502733075187],[116,-34,65,0.07771459844930706],[116,-34,66,0.07479631671728304],[116,-34,67,0.07196174924547127],[116,-34,68,0.06921233662590187],[116,-34,69,0.06654938775559605],[116,-34,70,0.0639740745966425],[116,-34,71,0.06148742687267261],[116,-34,72,0.05909032670172232],[116,-34,73,0.05678350316555325],[116,-34,74,0.05456752681523258],[116,-34,75,0.052442804113247754],[116,-34,76,0.05040957181193573],[116,-34,77,0.04846789126833473],[116,-34,78,0.04661764269541535],[116,-34,79,0.04485851934970908],[116,-33,64,0.08678553868819583],[116,-33,65,0.08381397458397588],[116,-33,66,0.0809233708971866],[116,-33,67,0.07811529972161002],[116,-33,68,0.07539120778539976],[116,-33,69,0.07275241129273957],[116,-33,70,0.07020009070181121],[116,-33,71,0.06773528543915064],[116,-33,72,0.0653588885503793],[116,-33,73,0.0630716412873844],[116,-33,74,0.06087412763174338],[116,-33,75,0.058766768754674126],[116,-33,76,0.05674981741328644],[116,-33,77,0.054823352283245974],[116,-33,78,0.05298727222780408],[116,-33,79,0.05124129050321502],[116,-32,64,0.09281082654041029],[116,-32,65,0.08986850264308666],[116,-32,66,0.08700594111691884],[116,-32,67,0.08422471906734552],[116,-32,68,0.08152628939876483],[116,-32,69,0.07891197567430697],[116,-32,70,0.07638296691190405],[116,-32,71,0.07394031231673825],[116,-32,72,0.07158491595005467],[116,-32,73,0.06931753133440877],[116,-32,74,0.06713875599515229],[116,-32,75,0.06504902593842699],[116,-32,76,0.06304861006545526],[116,-32,77,0.06113760452322747],[116,-32,78,0.05931592699154642],[116,-32,79,0.057583310906446195],[116,-31,64,0.09878788432253172],[116,-31,65,0.09587516043692368],[116,-31,66,0.09304099013927014],[116,-31,67,0.09028695557320543],[116,-31,68,0.08761451585679791],[116,-31,69,0.08502500196063478],[116,-31,70,0.08251961152219656],[116,-31,71,0.08009940359659806],[116,-31,72,0.07776529334368298],[116,-31,73,0.07551804665154338],[116,-31,74,0.07335827469626555],[116,-31,75,0.0712864284381769],[116,-31,76,0.06930279305437348],[116,-31,77,0.0674074823076386],[116,-31,78,0.06560043285170458],[116,-31,79,0.06388139847288143],[116,-30,64,0.10471386078863976],[116,-30,65,0.10183108108858552],[116,-30,66,0.09902563603053371],[116,-30,67,0.09629911282075598],[116,-30,68,0.09365297682575247],[116,-30,69,0.09108856646884056],[116,-30,70,0.08860708806302453],[116,-30,71,0.0862096105802217],[116,-30,72,0.0838970603568312],[116,-30,73,0.08167021573571709],[116,-30,74,0.07952970164441164],[116,-30,75,0.07747598410980294],[116,-30,76,0.0755093647091003],[116,-30,77,0.07362997495717405],[116,-30,78,0.07183777063023378],[116,-30,79,0.07013252602586006],[116,-29,64,0.11058606861758835],[116,-29,65,0.10773356166291159],[116,-29,66,0.10495716081158468],[116,-29,67,0.10225845835489311],[116,-29,68,0.09963892593990342],[116,-29,69,0.09709990948473834],[116,-29,70,0.09464262403012313],[116,-29,71,0.09226814852727883],[116,-29,72,0.08997742056214875],[116,-29,73,0.08777123101603079],[116,-29,74,0.08565021866241818],[116,-29,75,0.08361486470031743],[116,-29,76,0.08166548722383093],[116,-29,77,0.07980223562810995],[116,-29,78,0.07802508495163052],[116,-29,79,0.07633383015481732],[116,-28,64,0.11640199314312638],[116,-28,65,0.11358007192015873],[116,-28,66,0.11083301923415001],[116,-28,67,0.10816243248174773],[116,-28,68,0.10556978962013519],[116,-28,69,0.10305644410116321],[116,-28,70,0.10062361974174716],[116,-28,71,0.09827240553060035],[116,-28,72,0.09600375037129327],[116,-28,73,0.09381845776170683],[116,-28,74,0.09171718040968824],[116,-28,75,0.08970041478517177],[116,-28,76,0.08776849560855937],[116,-28,77,0.0859215902754562],[116,-28,78,0.08415969321772765],[116,-28,79,0.08248262020088803],[116,-27,64,0.1221593012084431],[116,-27,65,0.11936826319456251],[116,-27,66,0.11665084768240519],[116,-27,67,0.11400865719234399],[116,-27,68,0.11144317601868947],[116,-27,69,0.108955765182844],[116,-27,70,0.1065476573227121],[116,-27,71,0.10421995151843932],[116,-27,72,0.10197360805446709],[116,-27,73,0.09980944311797402],[116,-27,74,0.09772812343351056],[116,-27,75,0.09573016083409147],[116,-27,76,0.0938159067685369],[116,-27,77,0.0919855467451629],[116,-27,78,0.09023909471178204],[116,-27,79,0.08857638737202989],[116,-26,64,0.12785585014484502],[116,-26,65,0.12509597739748668],[116,-26,66,0.12240847319960246],[116,-26,67,0.1197949452117103],[116,-26,68,0.1172568840897722],[116,-26,69,0.11479565845752382],[116,-26,70,0.11241250981505391],[116,-26,71,0.11010854738370135],[116,-26,72,0.10788474288726357],[116,-26,73,0.10574192526958048],[116,-26,74,0.10368077534830522],[116,-26,75,0.10170182040512499],[116,-26,76,0.0998054287122202],[116,-26,77,0.0979918039950679],[116,-26,78,0.09626097983154436],[116,-26,79,0.09461281398734822],[116,-25,64,0.13348969687471413],[116,-25,65,0.13076125614531742],[116,-25,66,0.12810392263988146],[116,-25,67,0.12551930917359755],[116,-25,68,0.12300891278617321],[116,-25,69,0.12057410973348315],[116,-25,70,0.11821615041546096],[116,-25,71,0.11593615424030357],[116,-25,72,0.11373510442497692],[116,-25,73,0.11161384273209096],[116,-25,74,0.10957306414295476],[116,-25,75,0.1076133114670712],[116,-25,76,0.10573496988786502],[116,-25,77,0.10393826144474627],[116,-25,78,0.10222323945146639],[116,-25,79,0.10058978285078601],[116,-24,64,0.1390591071388928],[116,-24,65,0.13636235001224006],[116,-24,66,0.1337354319454076],[116,-24,67,0.13117997092095013],[116,-24,68,0.12869747038204737],[116,-24,69,0.12628931424361178],[116,-24,70,0.12395676183962989],[116,-24,71,0.12170094280681054],[116,-24,72,0.1195228519045275],[116,-24,73,0.11742334377112085],[116,-24,74,0.11540312761637617],[116,-24,75,0.11346276185043203],[116,-24,76,0.11160264864891745],[116,-24,77,0.1098230284544135],[116,-24,78,0.10812397441420463],[116,-24,79,0.10650538675433063],[116,-23,64,0.14456256484820162],[116,-23,65,0.1418977279076098],[116,-23,66,0.13930145554854467],[116,-23,67,0.136775370931834],[116,-23,68,0.134320983921556],[116,-23,69,0.13193968611573037],[116,-23,70,0.1296327458132387],[116,-23,71,0.12740130291704388],[116,-23,72,0.12524636377369747],[116,-23,73,0.12316879594919838],[116,-23,74,0.12116932294102489],[116,-23,75,0.11924851882658594],[116,-23,76,0.11740680284789673],[116,-23,77,0.11564443393257284],[116,-23,78,0.11396150515110448],[116,-23,79,0.11235793811042794],[116,-22,64,0.14999878155923785],[116,-22,65,0.14736608657806183],[116,-22,66,0.14480067589920775],[116,-22,67,0.1423041778709686],[116,-22,68,0.1398781087935197],[116,-22,69,0.13752386796931315],[116,-22,70,0.13524273268969544],[116,-22,71,0.13303585315781818],[116,-22,72,0.13090424734782935],[116,-22,73,0.12884879580041186],[116,-22,74,0.12687023635448724],[116,-22,75,0.1249691588153341],[116,-22,76,0.12314599955892236],[116,-22,77,0.12140103607256203],[116,-22,78,0.11973438143182491],[116,-22,79,0.1181459787137582],[116,-21,64,0.15536670607460235],[116,-21,65,0.15276636023451018],[116,-21,66,0.1502320131175483],[116,-21,67,0.1477652982670159],[116,-21,68,0.14536773843223594],[116,-21,69,0.14304074063876338],[116,-21,70,0.14078559119480938],[116,-21,71,0.13860345063395585],[116,-21,72,0.13649534859414214],[116,-21,73,0.13446217863299448],[116,-21,74,0.1325046929793151],[116,-21,75,0.13062349722097888],[116,-21,76,0.12881904492904173],[116,-21,77,0.12709163221815722],[116,-21,78,0.12544139224325912],[116,-21,79,0.12386828963253216],[116,-20,64,0.16066553416725304],[116,-20,65,0.15809773030373087],[116,-20,66,0.1555946347716629],[116,-20,67,0.15315788631531635],[116,-20,68,0.15078901414414858],[116,-20,69,0.14848943302292872],[116,-20,70,0.14626043829807445],[116,-20,71,0.14410320086026895],[116,-20,72,0.14201876204335007],[116,-20,73,0.14000802845953175],[116,-20,74,0.1380717667707837],[116,-20,75,0.13621059839661076],[116,-20,76,0.134424994158041],[116,-20,77,0.13271526885791296],[116,-20,78,0.13108157579742907],[116,-20,79,0.12952390122898538],[116,-19,64,0.16589471842914894],[116,-19,65,0.16335963530469666],[116,-19,66,0.16088796578049658],[116,-19,67,0.15848135380624373],[116,-19,68,0.1561413350605413],[116,-19,69,0.1538693320610316],[116,-19,70,0.15166664921073725],[116,-19,71,0.14953446778067847],[116,-19,72,0.14747384082875614],[116,-19,73,0.14548568805496342],[116,-19,74,0.14357079059275069],[116,-19,75,0.14172978573678485],[116,-19,76,0.13996316160691147],[116,-19,77,0.13827125174841437],[116,-19,78,0.13665422966853136],[116,-19,79,0.13511210330924794],[116,-18,64,0.17105397824431312],[116,-18,65,0.16855178084978828],[116,-18,66,0.16611169844206486],[116,-18,67,0.16373538017930223],[116,-18,68,0.16142436821638273],[116,-18,69,0.15918009283513768],[116,-18,70,0.15700386751077833],[116,-18,71,0.15489688391460088],[116,-18,72,0.15286020685295132],[116,-18,73,0.15089476914251265],[116,-18,74,0.1490013664217451],[116,-18,75,0.147180651898712],[116,-18,76,0.14543313103510713],[116,-18,77,0.1437591561665721],[116,-18,78,0.14215892105926864],[116,-18,79,0.1406324554027215],[116,-17,64,0.17614330988602467],[116,-17,65,0.1736741497705968],[116,-17,66,0.17126580258670676],[116,-17,67,0.16891992270267875],[116,-17,68,0.1666380587550309],[116,-17,69,0.16442164879887367],[116,-17,70,0.16227201539451075],[116,-17,71,0.16019036063030856],[116,-17,72,0.1581777610818227],[116,-17,73,0.15623516270724302],[116,-17,74,0.15436337567898606],[116,-17,75,0.1525630691516704],[116,-17,76,0.15083476596628786],[116,-17,77,0.1491788372906626],[116,-17,78,0.14759549719616005],[116,-17,79,0.1460847971706607],[116,-16,64,0.1811629967383156],[116,-16,65,0.17872701236848654],[116,-16,66,0.17635053585554028],[116,-16,67,0.17403522677842087],[116,-16,68,0.17178264025896994],[116,-16,69,0.16959422213256703],[116,-16,70,0.16747130405497268],[116,-16,71,0.16541509854543412],[116,-16,72,0.16342669396604526],[116,-16,73,0.16150704943742],[116,-16,74,0.15965698969051223],[116,-16,75,0.15787719985481075],[116,-16,76,0.15616822018273113],[116,-16,77,0.15453044071028754],[116,-16,78,0.15296409585401272],[116,-16,79,0.15146925894413987],[116,-15,64,0.1861136196418519],[116,-15,65,0.18371093679000505],[116,-15,66,0.18136645410420849],[116,-15,67,0.1790818363733313],[116,-15,68,0.1768586452066696],[116,-15,69,0.17469833422489534],[116,-15,70,0.17260224418720294],[116,-15,71,0.17057159805471733],[116,-15,72,0.1686074959901508],[116,-15,73,0.1667109102937705],[116,-15,74,0.16488268027550956],[116,-15,75,0.16312350706345102],[116,-15,76,0.1614339483485021],[116,-15,77,0.15981441306534783],[116,-15,78,0.1582651560096484],[116,-15,79,0.1567862723914959],[116,-14,64,0.19099606736398855],[116,-14,65,0.18862679952692374],[116,-14,66,0.18631442193169612],[116,-14,67,0.18406060457535378],[116,-14,68,0.18186691555534362],[116,-14,69,0.17973481628082444],[116,-14,70,0.1776656566201752],[116,-14,71,0.1756606699847606],[116,-14,72,0.17372096834894424],[116,-14,73,0.1718475372064081],[116,-14,74,0.17004123046261288],[116,-14,75,0.16830276526362875],[116,-14,76,0.16663271676115277],[116,-14,77,0.16503151281380224],[116,-14,78,0.16349942862465094],[116,-14,79,0.16203658131501875],[116,-13,64,0.19581154719308902],[116,-13,65,0.19347579604100418],[116,-13,66,0.19119562333431273],[116,-13,67,0.18897270427555168],[116,-13,68,0.18680861344970534],[116,-13,69,0.18470482005593336],[116,-13,70,0.18266268307548938],[116,-13,71,0.1806834463758975],[116,-13,72,0.17876823375136985],[116,-13,73,0.17691804389953047],[116,-13,74,0.17513374533427783],[116,-13,75,0.17341607123501246],[116,-13,76,0.17176561423204995],[116,-13,77,0.1701828211283094],[116,-13,78,0.16866798755723733],[116,-13,79,0.16722125257698717],[116,-12,64,0.2005615956572585],[116,-12,65,0.1982594515136369],[116,-12,66,0.19601157248499246],[116,-12,67,0.19381963897582655],[116,-12,68,0.19168523205687127],[116,-12,69,0.18960982871727405],[116,-12,70,0.18759479705297322],[116,-12,71,0.1856413913913254],[116,-12,72,0.18375074735197794],[116,-12,73,0.1819238768440372],[116,-12,74,0.18016166299938108],[116,-12,75,0.17846485504232745],[116,-12,76,0.17683406309549154],[116,-12,77,0.17526975292191171],[116,-12,78,0.173772240603411],[116,-12,79,0.17234168715521092],[116,-11,64,0.2052480893672174],[116,-11,65,0.20297963172007882],[116,-11,66,0.20076412463763127],[116,-11,67,0.19860325372209808],[116,-11,68,0.19649860652713114],[116,-11,69,0.19445166783048917],[116,-11,70,0.1924638148429073],[116,-11,71,0.19053631235321755],[116,-11,72,0.18867030780970873],[116,-11,73,0.18686682633778406],[116,-11,74,0.18512676569375763],[116,-11,75,0.1834508911550079],[116,-11,76,0.18183983034631557],[116,-11,77,0.1802940680024685],[116,-11,78,0.1788139406671012],[116,-11,79,0.1773996313277837],[116,-10,64,0.2098732559835328],[116,-10,65,0.20763855402850973],[116,-10,66,0.20545548715668704],[116,-10,67,0.20332574616317112],[116,-10,68,0.20125092508081188],[116,-10,69,0.19923251647340923],[116,-10,70,0.19727190666510797],[116,-10,71,0.19537037090604337],[116,-10,72,0.19352906847422258],[116,-10,73,0.19174903771370366],[116,-10,74,0.19003119100891086],[116,-10,75,0.18837630969530583],[116,-10,76,0.18678503890623988],[116,-10,77,0.18525788235607366],[116,-10,78,0.18379519705952818],[116,-10,79,0.1823971879872841],[116,-9,64,0.21443968530805935],[116,-9,65,0.21223879852375604],[116,-9,66,0.21008823067188753],[116,-9,67,0.20798967773513255],[116,-9,68,0.20594474022107756],[116,-9,69,0.20395491847597735],[116,-9,70,0.20202160793470325],[116,-9,71,0.2001460943069392],[116,-9,72,0.1983295486996154],[116,-9,73,0.19657302267563326],[116,-9,74,0.19487744324873058],[116,-9,75,0.19324360781469652],[116,-9,76,0.19167217901876865],[116,-9,77,0.19016367955929525],[116,-9,78,0.18871848692762794],[116,-9,79,0.18733682808426033],[116,-8,64,0.21895034049977913],[116,-8,65,0.21678331925587435],[116,-8,66,0.2146653003582395],[116,-8,67,0.21259798497147597],[116,-8,68,0.21058298007286402],[116,-8,69,0.20862179378669687],[116,-8,70,0.20671583065480603],[116,-8,71,0.2048663868433307],[116,-8,72,0.2030746452857246],[116,-8,73,0.20134167076205256],[116,-8,74,0.19966840491442606],[116,-8,75,0.19805566119878648],[116,-8,76,0.19650411977287152],[116,-8,77,0.1950143223204429],[116,-8,78,0.19358666681174508],[116,-8,79,0.19222140220020711],[116,-7,64,0.22340856941481424],[116,-7,65,0.22127545561336526],[116,-7,66,0.21919002734110993],[116,-7,67,0.21715399093872234],[116,-7,68,0.21516895984771478],[116,-7,69,0.21323644996536795],[116,-7,70,0.21135787493584735],[116,-7,71,0.20953454137756677],[116,-7,72,0.2077676440467845],[116,-7,73,0.20605826093749047],[116,-7,74,0.2044073483174308],[116,-7,75,0.20281573570048006],[116,-7,76,0.20128412075519309],[116,-7,77,0.19981306414961952],[116,-7,78,0.19840298433234693],[116,-7,79,0.19705415224978784],[116,-6,64,0.22781811607071578],[116,-6,65,0.22571894382112379],[116,-6,66,0.22366614022648668],[116,-6,67,0.22166141679763962],[116,-6,68,0.2197063934346234],[116,-6,69,0.2178025938022199],[116,-6,70,0.21595144064167715],[116,-6,71,0.21415425101867736],[116,-6,72,0.21241223150753985],[116,-6,73,0.21072647331171002],[116,-6,74,0.2090979473203909],[116,-6,75,0.20752749910151536],[116,-6,76,0.20601584383090144],[116,-6,77,0.20456356115766705],[116,-6,78,0.20317109000587452],[116,-6,79,0.20183872331241592],[116,-5,64,0.2321831322351503],[116,-5,65,0.23011792856324886],[116,-5,66,0.2280977767565372],[116,-5,67,0.22612439349019098],[116,-5,68,0.2241994051170092],[116,-5,69,0.2223243430635673],[116,-5,70,0.2205006391625588],[116,-5,71,0.21872962092137993],[116,-5,72,0.2170125067269475],[116,-5,73,0.21535040098680458],[116,-5,74,0.21374428920636523],[116,-5,75,0.2121950330025012],[116,-5,76,0.21070336505330933],[116,-5,77,0.20926988398414126],[116,-5,78,0.20789504918985746],[116,-5,79,0.2065791755933255],[116,-4,64,0.23650818913874438],[116,-4,65,0.23447697473046547],[116,-4,66,0.23248949559022403],[116,-4,67,0.23054747355195837],[116,-4,68,0.228652541415577],[116,-4,69,0.2268062383637367],[116,-4,70,0.22501000531480742],[116,-4,71,0.2232651802120802],[116,-4,72,0.22157299324921031],[116,-4,73,0.2199345620319424],[116,-4,74,0.21835088667598013],[116,-4,75,0.21682284484119285],[116,-4,76,0.21535118670200615],[116,-4,77,0.21393652985404987],[116,-4,78,0.212579354157035],[116,-4,79,0.2112799965138702],[116,-3,64,0.24079828931222158],[116,-3,65,0.23880107929230276],[116,-3,66,0.23684628820911624],[116,-3,67,0.2349356430501881],[116,-3,68,0.2330707830572023],[116,-3,69,0.23125325516340833],[116,-3,70,0.22948450936721265],[116,-3,71,0.2277658940420173],[116,-3,72,0.2260986511822889],[116,-3,73,0.2244839115859122],[116,-3,74,0.22292268997268672],[116,-3,75,0.22141588003916146],[116,-3,76,0.2199642494496501],[116,-3,77,0.2185684347635073],[116,-3,78,0.21722893629862972],[116,-3,79,0.2159461129311998],[116,-2,64,0.24505887854792185],[116,-2,65,0.24309568329411224],[116,-2,66,0.24117359094848356],[116,-2,67,0.23929433364754327],[116,-2,68,0.23745955706993283],[116,-2,69,0.23567081589446348],[116,-2,70,0.23392956919434205],[116,-2,71,0.23223717576763758],[116,-2,72,0.23059488940398332],[116,-2,73,0.22900385408755752],[116,-2,74,0.22746509913621293],[116,-2,75,0.22597953427694084],[116,-2,76,0.22454794465751504],[116,-2,77,0.22317098579439776],[116,-2,78,0.22184917845687147],[116,-2,79,0.2205829034874096],[116,-1,64,0.24929585798549392],[116,-1,65,0.24736668397871836],[116,-1,66,0.2454772971534644],[116,-1,67,0.24362943479135413],[116,-1,68,0.24182474900388973],[116,-1,69,0.24006480221112103],[116,-1,70,0.23835106255650007],[116,-1,71,0.23668489925798408],[116,-1,72,0.23506757789536425],[116,-1,73,0.23350025563388155],[116,-1,74,0.23198397638398793],[116,-1,75,0.23051966589743678],[116,-1,76,0.22910812679956383],[116,-1,77,0.22775003355782153],[116,-1,78,0.2264459273865408],[116,-1,79,0.22519621108793575],[116,0,64,0.25351559632186627],[116,0,65,0.2516204470328073],[116,0,66,0.2497637694604114],[116,0,67,0.2479473060284677],[116,0,68,0.24617271527818113],[116,0,69,0.24444156736747158],[116,0,70,0.24275533950646166],[116,0,71,0.241115411329208],[116,0,72,0.23952306020166647],[116,0,73,0.23797945646593566],[116,0,74,0.2364856586206504],[116,0,75,0.23504260843770608],[116,0,76,0.23365112601516858],[116,0,77,0.23231190476644026],[116,0,78,0.23102550634565433],[116,0,79,0.22979235550930877],[116,1,64,0.25772494214560854],[116,1,65,0.2558638189581655],[116,1,66,0.2540398522035334],[116,1,67,0.25225478944582036],[116,1,68,0.25051029565393795],[116,1,69,0.24880794872152856],[116,1,70,0.2471492349230875],[116,1,71,0.24553554430632518],[116,1,72,0.2439681660207612],[116,1,73,0.2424482835826024],[116,1,74,0.2409769700757648],[116,1,75,0.2395551832892313],[116,1,76,0.23818376079059211],[116,1,77,0.23686341493584073],[116,1,78,0.23559472781540158],[116,1,79,0.23437814613639485],[116,2,64,0.2703426481055834],[116,2,65,0.2685836047049897],[116,2,66,0.26685777210856254],[116,2,67,0.2651669132989518],[116,2,68,0.26351271252559133],[116,2,69,0.2618967708865184],[116,2,70,0.26032060184638955],[116,2,71,0.2587856266907353],[116,2,72,0.2572931699164506],[116,2,73,0.2558444545585627],[116,2,74,0.25444059745315106],[116,2,75,0.2530826044365959],[116,2,76,0.251771365481013],[116,2,77,0.2505076497659443],[116,2,78,0.2492921006862785],[116,2,79,0.24812523079640947],[116,3,64,0.2703396309553762],[116,3,65,0.26858059998640066],[116,3,66,0.26685478031375187],[116,3,67,0.2651639349101825],[116,3,68,0.2635097480149421],[116,3,69,0.2618938207156062],[116,3,70,0.26031766646609916],[116,3,71,0.25878270654096025],[116,3,72,0.2572902654258418],[116,3,73,0.2558415661442877],[116,3,74,0.254437725520664],[116,3,75,0.2530797493794167],[116,3,76,0.2517685276805167],[116,3,77,0.25050482959116316],[116,3,78,0.24928929849371362],[116,3,79,0.2481224469298542],[116,4,64,0.27032922975981577],[116,4,65,0.26857024164707327],[116,4,66,0.2668444665273093],[116,4,67,0.2651536673391577],[116,4,68,0.26349952828676015],[116,4,69,0.2618836504216247],[116,4,70,0.2603075471606801],[116,4,71,0.25877263974057285],[116,4,72,0.2572802526081992],[116,4,73,0.2558316087475168],[116,4,74,0.2544278249425097],[116,4,75,0.25306990697648146],[116,4,76,0.25175874476753834],[116,4,77,0.25049510744032744],[116,4,78,0.24927963833400713],[116,4,79,0.2481128499464551],[116,5,64,0.2745127053812553],[116,5,65,0.27278783330886675],[116,5,66,0.27109486271232347],[116,5,67,0.26943556159673465],[116,5,68,0.2678116205178612],[116,5,69,0.266224648184668],[116,5,70,0.26467616699807345],[116,5,71,0.26316760852594606],[116,5,72,0.26170030891433527],[116,5,73,0.26027550423498436],[116,5,74,0.25889432576900084],[116,5,75,0.2575577952268547],[116,5,76,0.2562668199045691],[116,5,77,0.25502218777616914],[116,5,78,0.2538245625223625],[116,5,79,0.252674478495464],[116,6,64,0.27867956545328876],[116,6,65,0.2769888717873432],[116,6,66,0.2753287708723014],[116,6,67,0.27370103572618487],[116,6,68,0.27210736320111967],[116,6,69,0.2705493696066253],[116,6,70,0.2690285862691076],[116,6,71,0.26754645502759805],[116,6,72,0.2661043236657344],[116,6,73,0.2647034412800238],[116,6,74,0.26334495358427007],[116,6,75,0.2620298981503291],[116,6,76,0.26075919958506166],[116,6,77,0.25953366464354755],[116,6,78,0.2583539772785355],[116,6,79,0.2572206936261392],[116,7,64,0.2828252604431044],[116,7,65,0.28116882145587385],[116,7,66,0.27954167009390507],[116,7,67,0.27794558432039207],[116,7,68,0.2763822672138738],[116,7,69,0.27485334261231525],[116,7,70,0.2733603506933968],[116,7,71,0.2719047434910566],[116,7,72,0.27048788034827853],[116,7,73,0.2691110233061688],[116,7,74,0.26777533242920115],[116,7,75,0.2664818610667954],[116,7,76,0.2652315510510989],[116,7,77,0.2640252278310353],[116,7,78,0.26286359554259264],[116,7,79,0.26174723201536376],[116,8,64,0.286945276219062],[116,8,65,0.2853231806611388],[116,8,66,0.2837290720206834],[116,8,67,0.2821647331244593],[116,8,68,0.28063187319306293],[116,8,69,0.2791321235058592],[116,8,70,0.2776670330021334],[116,8,71,0.2762380638185038],[116,8,72,0.2748465867625872],[116,8,73,0.2734938767229596],[116,8,74,0.27218110801529444],[116,8,75,0.27090934966483987],[116,8,76,0.26967956062510834],[116,8,77,0.26849258493283845],[116,8,78,0.26734914679920563],[116,8,79,0.2662498456372913],[116,9,64,0.29103513680090054],[116,9,65,0.2894474845153331],[116,9,66,0.2878865236861111],[116,9,67,0.2863540419084168],[116,9,68,0.284851754446441],[116,9,69,0.2833812999192441],[116,9,70,0.28194423592284495],[116,9,71,0.2805420345885801],[116,9,72,0.279176078077726],[116,9,73,0.27784765401242445],[116,9,74,0.2765579508427986],[116,9,75,0.275308053150416],[116,9,76,0.27409893688797343],[116,9,77,0.2729314645552651],[116,9,78,0.2718063803114091],[116,9,79,0.2707243050233424],[116,10,64,0.2950904070570095],[116,10,65,0.29353730763497593],[116,10,66,0.2920096102927907],[116,10,67,0.2905091072856705],[116,10,68,0.28903751980912734],[116,10,69,0.28759649370583334],[116,10,70,0.2861875951087286],[116,10,71,0.28481230602041097],[116,10,72,0.28347201982880194],[116,10,73,0.28216803675912805],[116,10,74,0.28090155926210725],[116,10,75,0.2796736873384928],[116,10,76,0.2784854137998533],[116,10,77,0.27733761946564783],[116,10,78,0.2762310682965731],[116,10,79,0.27516640246419155],[116,11,64,0.2991066953485511],[116,11,65,0.29758826682611406],[116,11,66,0.2960939579376049],[116,11,67,0.2946255654769748],[116,11,68,0.2931848164452734],[116,11,69,0.2917733637786047],[116,11,70,0.29039278201234053],[116,11,71,0.28904456288163366],[116,11,72,0.2877301108582215],[116,11,73,0.28645073862356224],[116,11,74,0.2852076624781919],[116,11,75,0.28400199768745377],[116,11,76,0.2828347537634807],[116,11,77,0.28170682968348915],[116,11,78,0.28061900904435955],[116,11,79,0.27957195515351446],[116,12,64,0.303079656120544],[116,12,65,0.3015960237160229],[116,12,66,0.3001352362829266],[116,12,67,0.29869909502003983],[116,12,68,0.29728933259495904],[116,12,69,0.2959076088932281],[116,12,70,0.29455550670375386],[116,12,71,0.29323452734053884],[116,12,72,0.29194608620072604],[116,12,73,0.29069150825899315],[116,12,74,0.2894720234981891],[116,12,75,0.2882887622763611],[116,12,76,0.2871427506300555],[116,12,77,0.28603490551394767],[116,12,78,0.2849660299767792],[116,12,79,0.2839368082736122],[116,13,64,0.3070049924400051],[116,13,65,0.30555628733151113],[116,13,66,0.3041291611739901],[116,13,67,0.3027254194248778],[116,13,68,0.30134680026642036],[116,13,69,0.29999497037608785],[116,13,70,0.29867152063328967],[116,13,71,0.2973779617624323],[116,13,72,0.2961157199123105],[116,13,73,0.29488613217187204],[116,13,74,0.29369044202224764],[116,13,75,0.2925297947251958],[116,13,76,0.2914052326478422],[116,13,77,0.29031769052377343],[116,13,78,0.2892679906504606],[116,13,79,0.2882568380230232],[116,14,64,0.31087845848093665],[116,14,65,0.30946481662360725],[116,14,66,0.3080714972022035],[116,14,67,0.3067003097746635],[116,14,68,0.30535299787338677],[116,14,69,0.30403123479702326],[116,14,70,0.30273661933859547],[116,14,71,0.30147067144998735],[116,14,72,0.30023482784279537],[116,14,73,0.2990304375255788],[116,14,74,0.2978587572774058],[116,14,75,0.2967209470578374],[116,14,76,0.29561806535323687],[116,14,77,0.294551064459458],[116,14,78,0.29352078570089335],[116,14,79,0.29252795458588715],[116,15,64,0.3146958619563373],[116,15,65,0.3133174229388142],[116,15,66,0.31195806021458644],[116,15,67,0.3106195872722994],[116,15,68,0.3093037528177141],[116,15,69,0.3080122365869786],[116,15,70,0.30674664509626076],[116,15,71,0.30550850732778245],[116,15,72,0.3042992703522464],[116,15,73,0.30312029488769404],[116,15,74,0.30197285079469105],[116,15,75,0.3008581125079819],[116,15,76,0.2997771544045011],[116,15,77,0.29873094610779716],[116,15,78,0.2977203477288449],[116,15,79,0.29674610504325716],[116,16,64,0.31845306649710786],[116,16,65,0.31710997243679606],[116,16,66,0.3157847197691987],[116,16,67,0.3144791257325438],[116,16,68,0.313194944017178],[116,16,69,0.31193386060042244],[116,16,70,0.3106974895178304],[116,16,71,0.30948736857088044],[116,16,72,0.30830495497110005],[116,16,73,0.3071516209206546],[116,16,74,0.3060286491293023],[116,16,75,0.30493722826785236],[116,16,76,0.3038784483580188],[116,16,77,0.30285329609871997],[116,16,78,0.3018626501288055],[116,16,79,0.3009072762262165],[116,17,64,0.3221459939780212],[116,17,65,0.3208383884546724],[116,17,66,0.319547401536735],[116,17,67,0.31827485401988675],[116,17,68,0.3170225043786047],[116,17,69,0.31579204462271737],[116,17,70,0.31458509609039786],[116,17,71,0.3134032051776358],[116,17,72,0.3122478390041786],[116,17,73,0.3111203810159803],[116,17,74,0.310022126524058],[116,17,75,0.30895427817989224],[116,17,76,0.30791794138726336],[116,17,77,0.3069141196505758],[116,17,78,0.30594370985965014],[116,17,79,0.3050074975109909],[116,18,64,0.32577062679055285],[116,18,65,0.3244986538177113],[116,18,66,0.3232420896480783],[116,18,67,0.32200275843195464],[116,18,68,0.3207824232161275],[116,18,69,0.3195827818222251],[116,18,70,0.3184054626615624],[116,18,71,0.3172520204865092],[116,18,72,0.3161239320783757],[116,18,73,0.31502259187185],[116,18,74,0.31394930751589195],[116,18,75,0.31290529537121514],[116,18,76,0.3118916759442516],[116,18,77,0.3109094692576509],[116,18,78,0.3099595901572939],[116,18,79,0.30904284355582745],[116,19,64,0.3293230100626716],[116,19,65,0.328086813096526],[116,19,66,0.326864828987911],[116,19,67,0.3256588850285531],[116,19,68,0.3244707486146725],[116,19,69,0.3233021231472533],[116,19,70,0.32215464386885473],[116,19,71,0.32102987363699786],[116,19,72,0.31992929863412045],[116,19,73,0.31885432401413616],[116,19,74,0.3178062694855017],[116,19,75,0.3167863648309225],[116,19,76,0.3157957453635937],[116,19,77,0.3148354473200282],[116,19,78,0.31390640318944824],[116,19,79,0.31300943697975225],[116,20,64,0.3327992538256812],[116,20,65,0.3315989748108605],[116,20,66,0.3304117274344788],[116,20,67,0.3292393419064361],[116,20,68,0.32808358973876733],[116,20,69,0.32694617966793565],[116,20,70,0.3258287535137269],[116,20,71,0.32473288197477485],[116,20,72,0.3236600603607146],[116,20,73,0.3226117042609928],[116,20,74,0.3215891451502485],[116,20,75,0.3205936259303851],[116,20,76,0.3196262964092384],[116,20,77,0.31868820871588593],[116,20,78,0.31778031265257906],[116,20,79,0.3169034509833063],[116,21,64,0.33619553512792494],[116,21,65,0.3350313135797803],[116,21,66,0.33387895804531376],[116,21,67,0.3327403014196128],[116,21,68,0.33161711908647823],[116,21,69,0.33051112486285206],[116,21,70,0.3294239668799088],[116,21,71,0.32835722340084306],[116,21,72,0.3273123985753448],[116,21,73,0.326290918130797],[116,21,74,0.3252941250001064],[116,21,75,0.32432327488628776],[116,21,76,0.32337953176370765],[116,21,77,0.322463963316032],[116,21,78,0.3215775363108603],[116,21,79,0.3207211119110535],[116,22,64,0.3395081000954529],[116,22,65,0.3383800722183655],[116,22,66,0.33726276118902077],[116,22,67,0.3361580023452905],[116,22,68,0.33506757468857856],[116,22,69,0.3339931968504902],[116,22,70,0.33293652299623666],[116,22,71,0.3318991386648028],[116,22,72,0.3308825565458737],[116,22,73,0.32988821219354986],[116,22,74,0.32891745967676794],[116,22,75,0.32797156716654113],[116,22,76,0.327051712459929],[116,22,77,0.32615897844078023],[116,22,78,0.32529434847723127],[116,22,79,0.3244587017559672],[116,23,64,0.34273326593973186],[116,23,65,0.34164156378098925],[116,23,66,0.3405594466232062],[116,23,67,0.33948875199553935],[116,23,68,0.33843126225303255],[116,23,69,0.3373887005656363],[116,23,70,0.3363627268440369],[116,23,71,0.33535493360232527],[116,23,72,0.33436684175749815],[116,23,73,0.3333998963658248],[116,23,74,0.3324554622959934],[116,23,75,0.3315348198391524],[116,23,76,0.3306391602557565],[116,23,77,0.3297695812592616],[116,23,78,0.3289270824366491],[116,23,79,0.3281125606057897],[116,24,64,0.34586742291222683],[116,24,65,0.34481217355100496],[116,24,66,0.34376539551837515],[116,24,67,0.3427289282744994],[116,24,68,0.3417045572546153],[116,24,69,0.34069400988050985],[116,24,70,0.339698951508885],[116,24,71,0.338720981316643],[116,24,72,0.3377616281230889],[116,24,73,0.33682234614907597],[116,24,74,0.33590451071301597],[116,24,75,0.3350094138638633],[116,24,76,0.33413825995098784],[116,24,77,0.3332921611309756],[116,24,78,0.33247213281134264],[116,24,79,0.331679089031168],[116,25,64,0.3489070362059427],[116,25,65,0.34788836097693754],[116,25,66,0.34687706242788946],[116,25,67,0.34587498168122505],[116,25,68,0.3448839069697627],[116,25,69,0.34390556967074204],[116,25,70,0.34294164027683355],[116,25,71,0.3419937243041581],[116,25,72,0.3410633581373087],[116,25,73,0.34015200481140534],[116,25,74,0.3392610497311021],[116,25,75,0.33839179632665756],[116,25,76,0.33754546164697874],[116,25,77,0.3367231718896847],[116,25,78,0.3359259578681691],[116,25,79,0.3351547504156711],[116,26,64,0.3518486478040049],[116,26,65,0.35086666155525237],[116,26,66,0.34989097720406326],[116,26,67,0.34892343725824426],[116,26,68,0.3479658324567317],[116,26,69,0.34701989782627407],[116,26,70,0.346087308675193],[116,26,71,0.3451696765242466],[116,26,72,0.34426854497459153],[116,26,73,0.3433853855128706],[116,26,74,0.34252159325335163],[116,26,75,0.3416784826172192],[116,26,76,0.34085728294893963],[116,26,77,0.34005913406973604],[116,26,78,0.3392850817681613],[116,26,79,0.3385360732277716],[116,27,64,0.3546888782751144],[116,27,65,0.35374368865954087],[116,27,66,0.35280374686023297],[116,27,67,0.351870896485667],[116,27,68,0.3509469304809012],[116,27,69,0.35003358720700894],[116,27,70,0.34913254645769],[116,27,71,0.3482454254130884],[116,27,72,0.3473737745308087],[116,27,73,0.3465190733741609],[116,27,74,0.3456827263775576],[116,27,75,0.3448660585491662],[116,27,76,0.3440703111107344],[116,27,77,0.34329663707463093],[116,27,78,0.3425460967580816],[116,27,79,0.3418196532346109],[116,28,64,0.3574244285159679],[116,28,65,0.35651613531620935],[116,28,66,0.3556120573788886],[116,28,67,0.35471403912093025],[116,28,68,0.3538238753853057],[116,28,69,0.35294330754330505],[116,28,70,0.352074019534099],[116,28,71,0.35121763384161364],[116,28,72,0.3503757074087154],[116,28,73,0.34954972748872976],[116,28,74,0.34874110743422393],[116,28,75,0.3479511824231509],[116,28,76,0.3471812051222782],[116,28,77,0.3464323412879372],[116,28,78,0.34570566530407953],[116,28,79,0.3450021556576455],[116,29,64,0.3600520814407047],[116,29,65,0.3591807759267386],[116,29,66,0.35831267546593465],[116,29,67,0.35744962498425215],[116,29,68,0.3565934209064696],[116,29,69,0.355745807281384],[116,29,70,0.35490847184441493],[116,29,71,0.3540830420176394],[116,29,72,0.35327108084725],[116,29,73,0.3524740828784639],[116,29,74,0.35169346996781264],[116,29,75,0.35093058703290814],[116,29,76,0.3501866977396086],[116,29,77,0.34946298012662197],[116,29,78,0.3487605221675317],[116,29,79,0.3480803172702513],[116,30,64,0.36256870361724003],[116,30,65,0.36173446793636677],[116,30,66,0.3609024502509338],[116,30,67,0.36007449568964095],[116,30,68,0.3592524019353914],[116,30,69,0.358437915373497],[116,30,70,0.3576327271774155],[116,30,71,0.3568384693320384],[116,30,72,0.35605671059452754],[116,30,73,0.35528895239272373],[116,30,74,0.3545366246610618],[116,30,75,0.3538010816140821],[116,30,76,0.3530835974574673],[116,30,77,0.35238536203663823],[116,30,78,0.35170747642289657],[116,30,79,0.35105094843711837],[116,31,64,0.36497124685055904],[116,31,65,0.3641741534492774],[116,31,66,0.3633783149334108],[116,31,67,0.36258557632154276],[116,31,68,0.36179773622375877],[116,31,69,0.3610165430129358],[116,31,70,0.36024369093369274],[116,31,71,0.35948081614902466],[116,31,72,0.3587294927246139],[116,31,73,0.35799122855084536],[116,31,74,0.35726746120245806],[116,31,75,0.35655955373592363],[116,31,76,0.3558687904244799],[116,31,77,0.35519637243085617],[116,31,78,0.3545434134176734],[116,31,79,0.35391093509552707],[116,32,64,0.36725674971303407],[116,32,65,0.36649686079034843],[116,32,66,0.3657372883752798],[116,32,67,0.36497987705718804],[116,32,68,0.3642264260354592],[116,32,69,0.3634786853139481],[116,32,70,0.36273835183322145],[116,32,71,0.36200706554062095],[116,32,72,0.36128640539814494],[116,32,73,0.3605778853281669],[116,32,74,0.35988295009693355],[116,32,75,0.3592029711359235],[116,32,76,0.35853924230100254],[116,32,77,0.3578929755694059],[116,32,78,0.35726529667453477],[116,32,79,0.35665724067857335],[116,33,64,0.3694223390216324],[116,33,65,0.3686997060133337],[116,33,66,0.36797647663925975],[116,33,67,0.36725449473450256],[116,33,68,0.36653555974324514],[116,33,69,0.3658214229364208],[116,33,70,0.3651137835673207],[116,33,71,0.36441428496516703],[116,33,72,0.3637245105666479],[116,33,73,0.3630459798854371],[116,33,74,0.3623801444196384],[116,33,75,0.3617283834972358],[116,33,76,0.36109200005948583],[116,33,77,0.36047221638228233],[116,33,78,0.3598701697354818],[116,33,79,0.3592869079801944],[116,34,64,0.3714652312620883],[116,34,65,0.3707798943555485],[116,34,66,0.3700930744733535],[116,34,67,0.3694066143656576],[116,34,68,0.3687223133706334],[116,34,69,0.3680419236554061],[116,34,70,0.3673671463950903],[116,34,71,0.3666996278899448],[116,34,72,0.36604095562064354],[116,34,73,0.3653926542416835],[116,34,74,0.36475618151287176],[116,34,75,0.36413292416897053],[116,34,76,0.3635241937274379],[116,34,77,0.3629312222342946],[116,34,78,0.36235515794810436],[116,34,79,0.36179706096207365],[116,35,64,0.3733827339600864],[116,35,65,0.37273472163910915],[116,35,66,0.37208436674143897],[116,35,67,0.3714335105963088],[116,35,68,0.37078395207908854],[116,35,69,0.37013744387554603],[116,35,70,0.36949568868437044],[116,35,71,0.3688603353579766],[116,35,72,0.36823297498158447],[116,35,73,0.36761513689059827],[116,35,74,0.3670082846262253],[116,35,75,0.3664138118294134],[116,35,76,0.36583303807304485],[116,35,77,0.36526720463241874],[116,35,78,0.3647174701940066],[116,35,79,0.3641849065024888],[116,36,64,0.3751722469993469],[116,36,65,0.37456157561861225],[116,36,66,0.3739477297998586],[116,36,67,0.37333254911040914],[116,36,68,0.3727178316003721],[116,36,69,0.3721053300902709],[116,36,70,0.3714967483971071],[116,36,71,0.3708937374988719],[116,36,72,0.3702978916375043],[116,36,73,0.36971074436031326],[116,36,74,0.3691337644998134],[116,36,75,0.3685683520920442],[116,36,76,0.3680158342333179],[116,36,77,0.36747746087542127],[116,36,78,0.36695440055926243],[116,36,79,0.36644773608696546],[116,37,64,0.3768312638866742],[116,37,65,0.37625793727531964],[116,37,66,0.3756806328200719],[116,37,67,0.37510118798066105],[116,37,68,0.37452139961412445],[116,37,69,0.37394302028584325],[116,37,70,0.3733677545191886],[116,37,71,0.37279725498379357],[116,37,72,0.3722331186224487],[116,37,73,0.37167688271663657],[116,37,74,0.3711300208906595],[116,37,75,0.3705939390544255],[116,37,76,0.37006997128483954],[116,37,77,0.3695593756458271],[116,37,78,0.3690633299469775],[116,37,79,0.3685829274408143],[116,38,64,0.3783573729640076],[116,38,65,0.3778213820578859],[116,38,66,0.3772806390574113],[116,38,67,0.37673697896464853],[116,38,68,0.3761921970707224],[116,38,69,0.3756480452902885],[116,38,70,0.3751062284348001],[116,38,71,0.3745684004245854],[116,38,72,0.3740361604397319],[116,38,73,0.3735110490097956],[116,38,74,0.3729945440422887],[116,38,75,0.37248805679000857],[116,38,76,0.371992927757158],[116,38,77,0.3715104225442811],[116,38,78,0.3710417276320065],[116,38,79,0.37058794610359863],[116,39,64,0.37974825856737837],[116,39,65,0.37924958106953355],[116,39,66,0.37874540706584114],[116,39,67,0.37823756874654746],[116,39,68,0.37772785945930637],[116,39,69,0.37721803006710625],[116,39,70,0.37670978524518606],[116,39,71,0.37620477971695454],[116,39,72,0.3757046144289099],[116,39,73,0.37521083266457544],[116,39,74,0.37472491609740877],[116,39,75,0.37424828078274297],[116,39,76,0.3737822730887118],[116,39,77,0.373328165566186],[116,39,78,0.37288715275770495],[116,39,79,0.3724603469454142],[116,40,64,0.38100170213285556],[116,40,65,0.3805403022017553],[116,40,66,0.38007269185880443],[116,40,67,0.37960070012450053],[116,40,68,0.37912611802106777],[116,40,69,0.3786506949538528],[116,40,70,0.3781761350319115],[116,40,71,0.37770409332779914],[116,40,72,0.3772361720765622],[116,40,73,0.37677391681394595],[116,40,74,0.3763188124537784],[116,40,75,0.37587227930458383],[116,40,76,0.375435669025385],[116,40,77,0.37501026052071335],[116,40,78,0.3745972557748183],[116,40,79,0.374197775625081],[116,41,64,0.3821155832494251],[116,41,65,0.3816914112144924],[116,41,66,0.3812603460161028],[116,41,67,0.3808242131436008],[116,41,68,0.38038480090773685],[116,41,69,0.37994385684553533],[116,41,70,0.379503084064565],[116,41,71,0.37906413752662205],[116,41,72,0.378628620270822],[116,41,73,0.37819807957611695],[116,41,74,0.377774003063198],[116,41,75,0.3773578147358374],[116,41,76,0.3769508709616251],[116,41,77,0.3765544563921254],[116,41,78,0.3761697798224392],[116,41,79,0.37579796999018145],[116,42,64,0.383087880658863],[116,42,65,0.3827008727628477],[116,42,66,0.38230632073687],[116,42,67,0.3819060461745466],[116,42,68,0.3815018342853375],[116,42,69,0.3810954303228842],[116,42,70,0.3806885359529683],[116,42,71,0.3802828055610984],[116,42,72,0.3798798424997241],[116,42,73,0.3794811952750904],[116,42,74,0.37908835367369764],[116,42,75,0.3787027448284137],[116,42,76,0.3783257292242018],[116,42,77,0.37795859664348097],[116,42,78,0.37760256205111375],[116,42,79,0.37725876141902215],[116,43,64,0.3839166732025325],[116,43,65,0.38356675137026236],[116,43,66,0.383208666838568],[116,43,67,0.38284423693789216],[116,43,68,0.38247524338312977],[116,43,69,0.38210342872542524],[116,43,70,0.38173049274381343],[116,43,71,0.38135808877671545],[116,43,72,0.3809878199932864],[116,43,73,0.38062123560462785],[116,43,74,0.38025982701483196],[116,43,75,0.3799050239119024],[116,43,76,0.37955819029851445],[116,43,77,0.3792206204626367],[116,43,78,0.37889353488800037],[116,43,79,0.3785780761044254],[116,44,64,0.3846001407151463],[116,44,65,0.38428721234819796],[116,44,66,0.3839655357020456],[116,44,67,0.38363692347393896],[116,44,68,0.3833031534877882],[116,44,69,0.3829659651693965],[116,44,70,0.38262705596177315],[116,44,71,0.3822880776805314],[116,44,72,0.38195063280937486],[116,44,73,0.38161627073567794],[116,44,74,0.38128648392613534],[116,44,75,0.3809627040425172],[116,44,76,0.38064629799750066],[116,44,77,0.3803385639505925],[116,44,78,0.38004072724413573],[116,44,79,0.3797539362794034],[116,45,64,0.38513656486550607],[116,45,65,0.38486052266233783],[116,45,66,0.38457518016267567],[116,45,67,0.3842823450582825],[116,45,68,0.3839837908828279],[116,45,69,0.3836812535105273],[116,45,70,0.3833764275951028],[116,45,71,0.383070962949073],[116,45,72,0.3827664608633689],[116,45,73,0.3824644703672875],[116,45,74,0.3821664844287548],[116,45,75,0.381873936094937],[116,45,76,0.38158819457316745],[116,45,77,0.3813105612522074],[116,45,78,0.38104226566383104],[116,45,79,0.3807844613847411],[116,46,64,0.3855243299441763],[116,46,65,0.3852850517452629],[116,46,66,0.3850359553475252],[116,46,67,0.3847788430629656],[116,46,68,0.3845154837332325],[116,46,69,0.3842476092516265],[116,46,70,0.3839769110256803],[116,46,71,0.38370503638031495],[116,46,72,0.3834335849015724],[116,46,73,0.38316410472093476],[116,46,74,0.38289808874020365],[116,46,75,0.38263697079697545],[116,46,76,0.38238212177068276],[116,46,77,0.3821348456292181],[116,46,78,0.38189637541613364],[116,46,79,0.3816678691784176],[116,47,64,0.3857619235981236],[116,47,65,0.3855592722556331],[116,47,66,0.3853463194585889],[116,47,67,0.3851248617632726],[116,47,68,0.38489666291531394],[116,47,69,0.3846634503950175],[116,47,70,0.38442691190351963],[116,47,71,0.38418869178977977],[116,47,72,0.3839503874184067],[116,47,73,0.3837135454783269],[116,47,74,0.38347965823227315],[116,47,75,0.3832501597071236],[116,47,76,0.38302642182506663],[116,47,77,0.3828097504756055],[116,47,78,0.3826013815283944],[116,47,79,0.38240247678691175],[116,48,64,0.3858479375123228],[116,48,65,0.3856817607838764],[116,48,66,0.3855048345020894],[116,48,67,0.3853189490901665],[116,48,68,0.38512586279181327],[116,48,69,0.3849272982398232],[116,48,70,0.3847249389657641],[116,48,71,0.3845204258507633],[116,48,72,0.3843153535173939],[116,48,73,0.3841112666626668],[116,48,74,0.3839096563321124],[116,48,75,0.3837119561349742],[116,48,76,0.3835195384004967],[116,48,77,0.38333371027531726],[116,48,78,0.383155709761955],[116,48,79,0.382986701698404],[116,49,64,0.3857810680383079],[116,49,65,0.3856511985043644],[116,49,66,0.3855101669638213],[116,49,67,0.38535975732834626],[116,49,68,0.38520172193221036],[116,49,69,0.38503777812407136],[116,49,70,0.3848696048001292],[116,49,71,0.3846988388786554],[116,49,72,0.3845270717158964],[116,49,73,0.3843558454633552],[116,49,74,0.38418664936643854],[116,49,75,0.3840209160044886],[116,49,76,0.3838600174721818],[116,49,77,0.38370526150230644],[116,49,78,0.383557887529911],[116,49,79,0.383419062697829],[116,50,64,0.3855601167696888],[116,50,65,0.38546637177409215],[116,50,66,0.3853610884305596],[116,50,67,0.3852460437599427],[116,50,68,0.3851229837782695],[116,50,69,0.3849936201116469],[116,50,70,0.38485962655281925],[116,50,71,0.3847226355593798],[116,50,72,0.38458423469363967],[116,50,73,0.38444596300415557],[116,50,74,0.38430930734890667],[116,50,75,0.3841756986601355],[116,50,76,0.3840465081508384],[116,50,77,0.3839230434629171],[116,50,78,0.38380654475698145],[116,50,79,0.38369818074381234],[116,51,64,0.385183991064623],[116,51,65,0.3851261726778561],[116,51,66,0.38505647615752325],[116,51,67,0.384976671253848],[116,51,68,0.3848884972548101],[116,51,69,0.3847936596240824],[116,51,70,0.38469382658091233],[116,51,71,0.38459062562194846],[116,51,72,0.3844856399850119],[116,51,73,0.38438040505481796],[116,51,74,0.3842764047106356],[116,51,75,0.38417506761590026],[116,51,76,0.3840777634497673],[116,51,77,0.3839857990806145],[116,51,78,0.38390041468148717],[116,51,79,0.3838227797874909],[116,52,64,0.3846517045152438],[116,52,65,0.3846295995199278],[116,52,66,0.38459531358189303],[116,52,67,0.38455060880067415],[116,52,68,0.3844972173257025],[116,52,69,0.38443683801718165],[116,52,70,0.384371133049206],[116,52,71,0.38430172445512223],[116,52,72,0.3842301906151335],[116,52,73,0.38415806268614966],[116,52,74,0.38408682097387525],[116,52,75,0.38401789124714747],[116,52,76,0.38395264099451154],[116,52,77,0.3838923756230439],[116,52,78,0.3838383345994149],[116,52,79,0.3837916875331978],[116,53,64,0.3839623773640554],[116,53,65,0.3839757572622343],[116,53,66,0.383976690782395],[116,53,67,0.3839669319933535],[116,53,68,0.3839482054950961],[116,53,69,0.3839222031024888],[116,53,70,0.3838905804715368],[116,53,71,0.3838549536681918],[116,53,72,0.3838168956797079],[116,53,73,0.3837779328685478],[116,53,74,0.3837395413688348],[116,53,75,0.3837031434253571],[116,53,76,0.38367010367511745],[116,53,77,0.38364172537143443],[116,53,78,0.38361924655059026],[116,53,79,0.383603836141029],[116,54,64,0.3831152368672693],[116,54,65,0.38316385790902274],[116,54,66,0.38319980488492633],[116,54,67,0.38322482345335795],[116,54,68,0.3832406302538631],[116,54,69,0.3832489096135845],[116,54,70,0.38325131019655667],[116,54,71,0.3832494415958603],[116,54,72,0.3832448708686391],[116,54,73,0.3832391190139801],[116,54,74,0.38323365739365345],[116,54,75,0.38322990409571756],[116,54,76,0.38322922024098216],[116,54,77,0.3832329062323382],[116,54,78,0.3832421979469449],[116,54,79,0.3832582628712834],[116,55,64,0.3821096176051103],[116,55,65,0.38219322083803375],[116,55,66,0.38226396041424865],[116,55,67,0.38232357320256116],[116,55,68,0.3823737674712767],[116,55,69,0.38241621961722694],[116,55,70,0.38245257083798195],[116,55,71,0.38248442374724484],[116,55,72,0.38251333893343004],[116,55,73,0.38254083146142337],[116,55,74,0.38256836731752664],[116,55,75,0.38259735979758513],[116,55,76,0.382629165838297],[116,55,77,0.3826650822917075],[116,55,78,0.38270634214288424],[116,55,79,0.3827541106707783],[116,56,64,0.38094496173908904],[116,56,65,0.38106327307818166],[116,56,66,0.3811685695917455],[116,56,67,0.3812625789807411],[116,56,68,0.381347000731925],[116,56,69,0.3814235028693388],[116,56,70,0.38149371864931575],[116,56,71,0.3815592431989975],[116,56,72,0.38162163009836236],[116,56,73,0.38168238790576503],[116,56,74,0.3817429766269903],[116,56,75,0.3818048041278167],[116,56,76,0.38186922249009125],[116,56,77,0.38193752431131905],[116,56,78,0.38201093894776117],[116,56,79,0.3820906287010479],[116,57,64,0.3796208192162043],[116,57,65,0.3797735495337063],[116,57,66,0.3799131525792109],[116,57,67,0.38004134650869126],[116,57,68,0.38015982161782563],[116,57,69,0.38027023711580854],[116,57,70,0.3803742178430161],[116,57,71,0.3804733509325166],[116,57,72,0.38056918241543136],[116,57,73,0.3806632137701398],[116,57,74,0.3807568984153392],[116,57,75,0.3808516381469469],[116,57,76,0.38094877951885264],[116,57,77,0.3810496101675202],[116,57,78,0.38115535508043485],[116,57,79,0.38126717280840206],[116,58,64,0.3781368479201261],[116,58,65,0.37832369315484554],[116,58,66,0.37849733766871757],[116,58,67,0.3786594896969847],[116,58,68,0.3788118299357883],[116,58,69,0.37895600833814924],[116,58,70,0.379093640854147],[116,58,71,0.37922630611528907],[116,58,72,0.3793555420630728],[116,58,73,0.3794828425217365],[116,58,74,0.37960965371520894],[116,58,75,0.37973737072824476],[116,58,76,0.3798673339117542],[116,58,77,0.3800008252323258],[116,58,78,0.3801390645659391],[116,58,79,0.3802832059358726],[116,59,64,0.37649281376934596],[116,59,65,0.3767134550550156],[116,59,66,0.37692086141854897],[116,59,67,0.37711673080038044],[116,59,68,0.37730273389001245],[116,59,69,0.37748051094400265],[116,59,70,0.3776516685485054],[116,59,71,0.3778177763263513],[116,59,72,0.3779803635886726],[116,59,73,0.37814091593106847],[116,59,74,0.3783008717743198],[116,59,75,0.37846161884964197],[116,59,76,0.37862449062848225],[116,59,77,0.37879076269686196],[116,59,78,0.3789616490742601],[116,59,79,0.37913829847704345],[116,60,64,0.3746885907622446],[116,60,65,0.3749426945744498],[116,60,66,0.3751835687351504],[116,60,67,0.375412900517825],[116,60,68,0.3756323501998739],[116,60,69,0.3758435479024468],[116,60,70,0.3760480903751794],[116,60,71,0.37624753772582975],[116,60,72,0.37644341009481863],[116,60,73,0.37663718427466575],[116,60,74,0.3768302902743388],[116,60,75,0.37702410782849544],[116,60,76,0.37721996285162906],[116,60,77,0.3774191238371197],[116,60,78,0.37762279820118355],[116,60,79,0.37783212857172793],[116,61,64,0.37272416096915295],[116,61,65,0.37301137929037076],[116,61,66,0.3732854129011721],[116,61,67,0.3735479380381195],[116,61,68,0.373800604162972],[116,61,69,0.3740450308241712],[116,61,70,0.37428280446360285],[116,61,71,0.37451547516862305],[116,61,72,0.37474455336935597],[116,61,73,0.374971506481251],[116,61,74,0.3751977554929215],[116,61,75,0.3754246714992397],[116,61,76,0.37565357217970335],[116,61,77,0.3758857182220715],[116,61,78,0.3761223096912667],[116,61,79,0.37636448234354675],[116,62,64,0.3705996144713799],[116,62,65,0.37091958497367034],[116,62,66,0.37122645554957584],[116,62,67,0.3715218910312292],[116,62,68,0.37180752966341],[116,62,69,0.3720849799864998],[116,62,70,0.37235581766508574],[116,62,71,0.3726215822622044],[116,62,72,0.3728837739592267],[116,62,73,0.3731438502213779],[116,62,74,0.3734032224089117],[116,62,75,0.3736632523339125],[116,62,76,0.3739252487627429],[116,62,77,0.374190463864135],[116,62,78,0.37446008960291705],[116,62,79,0.37473525407938857],[116,63,64,0.36831514924714437],[116,63,65,0.36866749549203537],[116,63,66,0.36900686658374876],[116,63,67,0.3693349155851751],[116,63,68,0.369653269125255],[116,63,69,0.36996352430320234],[116,63,70,0.3702672455387631],[116,63,71,0.3705659613684894],[116,63,72,0.3708611611880378],[116,63,73,0.37115429194047983],[116,63,74,0.3714467547506505],[116,63,75,0.3717399015055007],[116,63,76,0.3720350313804789],[116,63,77,0.37233338731193283],[116,63,78,0.3726361524155307],[116,63,79,0.37294444635070706],[116,64,64,0.36587107100452276],[116,64,65,0.3662554026596271],[116,64,66,0.3666269240437273],[116,64,67,0.36698727608861276],[116,64,68,0.3673380734112745],[116,64,69,0.3676809012391955],[116,64,70,0.3680173122820598],[116,64,71,0.36834882354986603],[116,64,72,0.3686769131174527],[116,64,73,0.36900301683542036],[116,64,74,0.36932852498748064],[116,64,75,0.36965477889419657],[116,64,76,0.36998306746313603],[116,64,77,0.3703146236854362],[116,64,78,0.3706506210787717],[116,64,79,0.37099217007673513],[116,65,64,0.36326779296131706],[116,65,65,0.3636837060332245],[116,65,66,0.3640870139184452],[116,65,67,0.3644793450590079],[116,65,68,0.3648623016668685],[116,65,69,0.3652374566700489],[116,65,70,0.3656063506055907],[116,65,71,0.36597048845930485],[116,65,72,0.36633133645232785],[116,65,73,0.3666903187744682],[116,65,74,0.36704881426437486],[116,65,75,0.3674081530364881],[116,65,76,0.3677696130548001],[116,65,77,0.3681344166534175],[116,65,78,0.3685037270039241],[116,65,79,0.368878644529548],[116,66,64,0.3605058355719255],[116,66,65,0.3609529126549086],[116,66,66,0.3613876299040787],[116,66,67,0.36181160291649006],[116,66,68,0.3622264211092674],[116,66,69,0.36263364468636955],[116,66,70,0.3630348015525672],[116,66,71,0.3634313841746206],[116,66,72,0.3638248463896617],[116,66,73,0.364216600160766],[116,66,74,0.3646080122797507],[116,66,75,0.3650004010171519],[116,66,76,0.3653950327194131],[116,66,77,0.3657931183532778],[116,66,78,0.3661958099973789],[116,66,79,0.36660419728103755],[116,67,64,0.35758582620109536],[116,67,65,0.3580636367411721],[116,67,66,0.35852937310837674],[116,67,67,0.35898463770326416],[116,67,68,0.35943100676188783],[116,67,69,0.3598700273429539],[116,67,70,0.36030321426260015],[116,67,71,0.36073204697677896],[116,67,72,0.36115796641125275],[116,67,73,0.36158237173918667],[116,67,74,0.3620066171063735],[116,67,75,0.36243200830404454],[116,67,76,0.36285979938930074],[116,67,77,0.36329118925315085],[116,67,78,0.3637273181361583],[116,67,79,0.36416926409170036],[116,68,64,0.35450849874469953],[116,68,65,0.35501659931859036],[116,68,66,0.3555129517011117],[116,68,67,0.35599914474872013],[116,68,68,0.3564767411339742],[116,68,69,0.35694727435283924],[116,68,70,0.3574122456800297],[116,68,71,0.3578731210723721],[116,68,72,0.3583313280201902],[116,68,73,0.3587882523467022],[116,68,74,0.3592452349554649],[116,68,75,0.3597035685258151],[116,68,76,0.3601644941563449],[116,68,77,0.3606291979563992],[116,68,78,0.36109880758559265],[116,68,79,0.3615743887413548],[116,69,64,0.35127469319747756],[116,69,65,0.3518126278060002],[116,69,66,0.35233918051059393],[116,69,67,0.3528559262801807],[116,69,68,0.353364413845477],[116,69,69,0.3538661627261992],[116,69,70,0.3543626602067297],[116,69,71,0.35485535826021747],[116,69,72,0.3553456704211276],[116,69,73,0.35583496860621533],[116,69,74,0.3563245798839726],[116,69,75,0.3568157831924877],[116,69,76,0.3573098060057601],[116,69,77,0.3578078209484561],[116,69,78,0.358310942359105],[116,69,79,0.3588202228017412],[116,70,64,0.3478853551676549],[116,70,65,0.348452655543096],[116,70,66,0.3490089805661651],[116,70,67,0.3495558909792066],[116,70,68,0.3500949211970785],[116,70,69,0.35062757635400316],[116,70,70,0.3511553292993014],[116,70,71,0.3516796175419914],[116,70,72,0.3522018401442575],[116,70,73,0.35272335456377235],[116,70,74,0.3532454734449173],[116,70,75,0.35376946135883947],[116,70,76,0.35429653149239143],[116,70,77,0.35482784228593767],[116,70,78,0.35536449402002546],[116,70,79,0.3559075253509301],[116,71,64,0.34434153533859635],[116,71,65,0.34493772126560107],[116,71,66,0.34552337858682264],[116,71,67,0.34610005348360656],[116,71,68,0.3466692656855205],[116,71,69,0.3472325055365825],[116,71,70,0.34779123101080756],[116,71,71,0.34834686467704634],[116,71,72,0.34890079061313095],[116,71,73,0.34945435126930063],[116,71,74,0.35000884428096035],[116,71,75,0.3505655192307078],[116,71,76,0.35112557435967284],[116,71,77,0.35169015322815744],[116,71,78,0.3522603413255707],[116,71,79,0.3528371626296695],[116,72,64,0.3406443888774251],[116,72,65,0.34126896852694527],[116,72,66,0.34188350641590953],[116,72,67,0.3424895338350903],[116,72,68,0.34308855546416445],[116,72,69,0.34368204645704664],[116,72,70,0.34427144947697824],[116,72,71,0.3448581716813497],[116,72,72,0.3454435816562615],[116,72,73,0.34602900630080813],[116,72,74,0.3466157276611301],[116,72,75,0.3472049797141708],[116,72,76,0.3477979451011861],[116,72,77,0.3483957518109893],[116,72,78,0.34899946981292984],[116,72,79,0.349610107639617],[116,73,64,0.33679517479050736],[116,73,65,0.3374476450663493],[116,73,66,0.33809060040176986],[116,73,67,0.33872555687246286],[116,73,68,0.3393540037486913],[116,73,69,0.3399774005994446],[116,73,70,0.3405971743467982],[116,73,71,0.34121471627044536],[116,73,72,0.3418313789624152],[116,73,73,0.34244847323195304],[116,73,74,0.3430672649606149],[116,73,75,0.3436889719075087],[116,73,76,0.34431476046473164],[116,73,77,0.34494574236298536],[116,73,78,0.3455829713273705],[116,73,79,0.3462274396833657],[116,74,64,0.3327952552259831],[116,74,65,0.33347510212349446],[116,74,66,0.33414600072454825],[116,74,67,0.3348094515705391],[116,74,68,0.3354669281681109],[116,74,69,0.3361198741118523],[116,74,70,0.3367697001576413],[116,74,71,0.33741778124661304],[116,74,72,0.3380654534797608],[116,74,73,0.338714011043149],[116,74,74,0.3393647030837884],[116,74,75,0.3400187305361081],[116,74,76,0.3406772428990699],[116,74,77,0.341341334963912],[116,74,78,0.34201204349251857],[116,74,79,0.3426903438464243],[116,75,64,0.3286460947232631],[116,75,65,0.32935279369970094],[116,75,66,0.33005115066905477],[116,75,67,0.33074265032469824],[116,75,68,0.3314287500610083],[116,75,69,0.3321108771143029],[116,75,70,0.33279042565488204],[116,75,71,0.3334687538301456],[116,75,72,0.33414718075880157],[116,75,73,0.33482698347613365],[116,75,74,0.33550939383039413],[116,75,75,0.3361955953302391],[116,75,76,0.3368867199432658],[116,75,77,0.33758384484563075],[116,75,78,0.3382879891227484],[116,75,79,0.3390001104210788],[116,76,64,0.3243492594093786],[116,76,65,0.3250822757654984],[116,76,66,0.3258075958435823],[116,76,67,0.32652668818096986],[116,76,68,0.32724099371691395],[116,76,69,0.3279519229514567],[116,76,70,0.32866085305587156],[116,76,71,0.3293691249346413],[116,76,72,0.33007804023898296],[116,76,73,0.33078885833189425],[116,76,74,0.33150279320478343],[116,76,75,0.3322210103456006],[116,76,76,0.3329446235585304],[116,76,77,0.333674691735225],[116,76,78,0.33441221557757644],[116,76,79,0.335158134272039],[116,77,64,0.3199064161423902],[116,77,65,0.32066520541479654],[116,77,66,0.3214169833448809],[116,77,67,0.3221632020118512],[116,77,68,0.322905285562998],[116,77,69,0.3236446273902033],[116,77,70,0.324382587258478],[116,77,71,0.3251204883865017],[116,77,72,0.3258596144791722],[116,77,73,0.3266012067121414],[116,77,74,0.327346460668399],[116,77,75,0.32809652322682137],[116,77,76,0.3288524894027467],[116,77,77,0.329615399140554],[116,77,78,0.33038623405824635],[116,77,79,0.33116591414404806],[116,78,64,0.3153193316017611],[116,78,65,0.31610333996556106],[116,78,66,0.3168810608691972],[116,78,67,0.3176539296377642],[116,78,68,0.31842335329600024],[116,78,69,0.31919070776211156],[116,78,70,0.31995733499409884],[116,78,71,0.32072454008855056],[116,78,72,0.32149358833191816],[116,78,73,0.3222657022042458],[116,78,74,0.32304205833541644],[116,78,75,0.32382378441383397],[116,78,76,0.3246119560475982],[116,78,77,0.32540759357815474],[116,78,78,0.3262116588464181],[116,78,79,0.32702505191137654],[116,79,64,0.3105898713255743],[116,79,65,0.3113985360068735],[116,79,66,0.3122016757692551],[116,79,67,0.3130007088940334],[116,79,68,0.31379702495927153],[116,79,69,0.3145919820506037],[116,79,70,0.31538690392502977],[116,79,71,0.316183077127654],[116,79,72,0.316981748061378],[116,79,73,0.31778412000951994],[116,79,74,0.3185913501114289],[116,79,75,0.3194045462910039],[116,79,76,0.320224764138182],[116,79,77,0.32105300374337564],[116,79,78,0.3218902064848549],[116,79,79,0.3227372517690871],[116,80,64,0.3057199986948177],[116,80,65,0.3065527483926005],[116,80,66,0.3073807740574049],[116,80,67,0.3082054766436051],[116,80,68,0.3090282279651544],[116,80,69,0.3098503679230763],[116,80,70,0.31067320168640716],[116,80,71,0.3114979968265603],[116,80,72,0.3123259804051238],[116,80,73,0.3131583360150614],[116,80,74,0.31399620077538803],[116,80,75,0.31484066227922824],[116,80,76,0.31569275549532033],[116,80,77,0.3165534596229504],[116,80,78,0.31742369490030764],[116,80,79,0.3183043193662765],[116,81,64,0.30071177386463477],[116,81,65,0.3015680291815686],[116,81,66,0.3024203993548357],[116,81,67,0.30327026773540766],[116,81,68,0.3041189880625935],[116,81,69,0.30496788170786593],[116,81,70,0.30581823487262355],[116,81,71,0.3066712957398573],[116,81,72,0.3075282715797324],[116,81,73,0.30839032580905573],[116,81,74,0.3092585750047025],[116,81,75,0.3101340858709042],[116,81,76,0.3110178721604706],[116,81,77,0.31191089154991863],[116,81,78,0.3128140424685086],[116,81,79,0.313728160881199],[116,82,64,0.29556735264240785],[116,82,65,0.29644652652411296],[116,82,66,0.29732269178672055],[116,82,67,0.29819721390822074],[116,82,68,0.299071428249853],[116,82,69,0.2999466373159304],[116,82,70,0.30082410796808856],[116,82,71,0.301705068593923],[116,82,72,0.3025907062300294],[116,82,73,0.3034821636394176],[116,82,74,0.3043805363433691],[116,82,75,0.3052868696076452],[116,82,76,0.3062021553831131],[116,82,77,0.3071273292007677],[116,82,78,0.3080632670211467],[116,82,79,0.30901078203815135],[116,83,64,0.2902889853129208],[116,83,65,0.2911904834952448],[116,83,66,0.29208988682353965],[116,83,67,0.29298854264029706],[116,83,68,0.29388776763257696],[116,83,69,0.2947888451074864],[116,83,70,0.29569302222257393],[116,83,71,0.2966015071711039],[116,83,72,0.29751546632222475],[116,83,73,0.298436021315999],[116,83,74,0.2993642461133711],[116,83,75,0.30030116400097373],[116,83,76,0.3012477445508442],[116,83,77,0.302204900535026],[116,83,78,0.3031734847950558],[116,83,79,0.3041542870663452],[116,84,64,0.2848790154104865],[116,84,65,0.2858022368743263],[116,84,66,0.2867243140684669],[116,84,67,0.2876465759446255],[116,84,68,0.28857032022708756],[116,84,69,0.2894968107034931],[116,84,70,0.29042727447103217],[116,84,71,0.29136289913801505],[116,84,72,0.2923048299808314],[116,84,73,0.2932541670562633],[116,84,74,0.2942119622692343],[116,84,75,0.2951792163958882],[116,84,76,0.29615687606207236],[116,84,77,0.29714583067720324],[116,84,78,0.29814690932350896],[116,84,79,0.2991608776006621],[116,85,64,0.27933987843789665],[116,85,65,0.2802842158711066],[116,85,66,0.281228395990679],[116,85,67,0.28217372910969113],[116,85,68,0.28312149370877143],[116,85,69,0.2840729337418385],[116,85,70,0.28502925589774863],[116,85,71,0.28599162681781753],[116,85,72,0.2869611702692263],[116,85,73,0.28793896427428056],[116,85,74,0.28892603819560503],[116,85,75,0.28992336977716193],[116,85,76,0.29093188214117666],[116,85,77,0.2919524407409397],[116,85,78,0.29298585026948487],[116,85,79,0.29403285152415776],[116,86,64,0.27367410053246133],[116,86,65,0.27463894079838924],[116,86,66,0.2756046466048516],[116,86,67,0.27657250938600075],[116,86,68,0.277543788105827],[116,86,69,0.2785197065784951],[116,86,70,0.2795014507450903],[116,86,71,0.2804901659067388],[116,86,72,0.2814869539141159],[116,86,73,0.2824928703133065],[116,86,74,0.2835089214481043],[116,86,75,0.2845360615186343],[116,86,76,0.2855751895963853],[116,86,77,0.28662714659561916],[116,86,78,0.2876927122011585],[116,86,79,0.28877260175256503],[116,87,64,0.26788429707901373],[116,87,65,0.26886902169120486],[116,87,66,0.2698556700967217],[116,87,67,0.27084551461824713],[116,87,68,0.2718397944382428],[116,87,69,0.27283971293351983],[116,87,70,0.273846434966726],[116,87,71,0.27486108413471066],[116,87,72,0.27588473997378216],[116,87,73,0.27691843512182224],[116,87,74,0.2779631524373425],[116,87,75,0.27901982207537157],[116,87,76,0.28008931852025326],[116,87,77,0.2811724575753277],[116,87,78,0.2822699933094962],[116,87,79,0.28338261496067924],[116,88,64,0.2619731712697264],[116,88,65,0.2629771568723368],[116,88,66,0.2639841593945588],[116,88,67,0.2649954318229625],[116,88,68,0.26601219330186],[116,88,69,0.26703562648174783],[116,88,70,0.2680668748251721],[116,88,71,0.26910703986997847],[116,88,72,0.27015717844996345],[116,88,73,0.2712182998728878],[116,88,74,0.2722913630559432],[116,88,75,0.2733772736185536],[116,88,76,0.27447688093259565],[116,88,77,0.2755909751300125],[116,88,78,0.2767202840678144],[116,88,79,0.2778654702504836],[116,89,64,0.25594351261104553],[116,89,65,0.2569661314645043],[116,89,66,0.2579928946868547],[116,89,67,0.2590250357119621],[116,89,68,0.2600637533978177],[116,89,69,0.2611102093884814],[116,89,70,0.2621655254339594],[116,89,71,0.2632307806679771],[116,89,72,0.2643070088436633],[116,89,73,0.2653951955271058],[116,89,74,0.2664962752488725],[116,89,75,0.2676111286133752],[116,89,76,0.26874057936616513],[116,89,77,0.26988539141912965],[116,89,78,0.27104626583358715],[116,89,79,0.2722238377612979],[116,90,64,0.2497981953774852],[116,90,65,0.25083881584894785],[116,90,66,0.2518847418859709],[116,90,67,0.2529371871613262],[116,90,68,0.25399733000713126],[116,90,69,0.2550663107899219],[116,90,70,0.25614522924417243],[116,90,71,0.25723514176422513],[116,90,72,0.2583370586546426],[116,90,73,0.259451941338945],[116,90,74,0.2605806995268257],[116,90,75,0.2617241883397223],[116,90,76,0.26288320539483145],[116,90,77,0.26405848784753944],[116,90,78,0.26525070939226203],[116,90,79,0.2664604772217142],[116,91,64,0.24354017701248432],[116,91,65,0.24459816407061585],[116,91,66,0.24566265103794824],[116,91,67,0.24673483162611606],[116,91,68,0.2478158634105974],[116,91,69,0.2489068652185405],[116,91,70,0.250008914475556],[116,91,71,0.2511230445114316],[116,91,72,0.2522502418247854],[116,91,73,0.2533914433066191],[116,91,74,0.25454753342286596],[116,91,75,0.25571934135580754],[116,91,76,0.25690763810445183],[116,91,77,0.2581131335438384],[116,91,78,0.25933647344327304],[116,91,79,0.2605782364435038],[116,92,64,0.2371724964760451],[116,92,65,0.23824721218967518],[116,92,66,0.23932965467819786],[116,92,67,0.24042099750055082],[116,92,68,0.24152237725375392],[116,92,69,0.24263489097311497],[116,92,70,0.243759593491917],[116,92,71,0.244897494760545],[116,92,72,0.2460495571250705],[116,92,73,0.24721669256525103],[116,92,74,0.2483997598920441],[116,92,75,0.24959956190450613],[116,92,76,0.25081684250616865],[116,92,77,0.25205228378086303],[116,92,78,0.25330650302798763],[116,92,79,0.25458004975723586],[116,93,64,0.2306982725394864],[116,93,65,0.2317890765796766],[116,93,66,0.23288886613340537],[116,93,67,0.23399879442397048],[116,93,68,0.23511997685722066],[116,93,69,0.2362534884337582],[116,93,70,0.23740036112114518],[116,93,71,0.23856158118606627],[116,93,72,0.23973808648647005],[116,93,73,0.24093076372364358],[116,93,74,0.2421404456543222],[116,93,75,0.2433679082627016],[116,93,76,0.24461386789244957],[116,93,77,0.245878978338681],[116,93,78,0.24716382789990024],[116,93,79,0.2484689363899193],[116,94,64,0.22412070202715925],[116,94,65,0.22522695217222283],[116,94,66,0.22634347776949562],[116,94,67,0.22747141153243902],[116,94,68,0.22861184747227162],[116,94,69,0.22976583832178896],[116,94,70,0.23093439291970572],[116,94,71,0.23211847355547874],[116,94,72,0.23331899327462735],[116,94,73,0.23453681314450875],[116,94,74,0.2357727394806503],[116,94,75,0.2370275210335046],[116,94,76,0.23830184613572442],[116,94,77,0.23959633980992529],[116,94,78,0.24091156083693138],[116,94,79,0.24224799878452374],[116,95,64,0.21744305800495453],[116,95,65,0.2185641106479699],[116,95,66,0.2196967591854903],[116,95,67,0.22084211565581313],[116,95,68,0.2220012524814699],[116,95,69,0.22317519990427703],[116,95,70,0.22436494338143478],[116,95,71,0.2255714209426281],[116,95,72,0.2267955205081484],[116,95,73,0.2280380771679915],[116,95,74,0.22929987042203712],[116,95,75,0.23058162138117244],[116,95,76,0.23188398992945897],[116,95,77,0.23320757184730861],[116,95,78,0.23455289589566675],[116,95,79,0.23592042086122095],[116,96,64,0.21066868791593168],[116,96,65,0.2118038985742896],[116,96,66,0.21295205535358394],[116,96,67,0.2141142494606085],[116,96,68,0.21529153154468997],[116,96,69,0.21648490914358742],[116,96,70,0.21769534409096183],[116,96,71,0.21892374988537452],[116,96,72,0.22017098902082766],[116,96,73,0.2214378702788064],[116,96,74,0.22272514598192739],[116,96,75,0.22403350920905324],[116,96,76,0.22536359097197556],[116,96,77,0.22671595735363193],[116,96,78,0.22809110660785187],[116,96,79,0.22948946622065458],[116,97,64,0.2038010116629111],[116,97,65,0.20494973548943674],[116,97,66,0.20611278470528377],[116,97,67,0.20729122953850243],[116,97,68,0.20848609869037346],[116,97,69,0.20969837679176756],[116,97,70,0.21092900182160473],[116,97,71,0.21217886248736223],[116,97,72,0.21344879556765423],[116,97,73,0.21473958321683545],[116,97,74,0.21605195023173768],[116,97,75,0.21738656128039702],[116,97,76,0.2187440180928752],[116,97,77,0.2201248566141379],[116,97,78,0.22152954411899195],[116,97,79,0.22295847628909327],[116,98,64,0.19684351963784968],[116,98,65,0.19800511193303993],[116,98,66,0.19918243716343143],[116,98,67,0.2003765444402988],[116,98,68,0.20158844035183768],[116,98,69,0.20281908642960128],[116,98,70,0.20406939657755852],[116,98,71,0.2053402344637305],[116,98,72,0.20663241087442313],[116,98,73,0.20794668103100972],[116,98,74,0.20928374186937326],[116,98,75,0.21064422928186516],[116,98,76,0.21202871532188328],[116,98,77,0.21343770537103535],[116,98,78,0.21487163526888392],[116,98,79,0.21633086840529187],[116,99,64,0.1897997706983459],[116,99,65,0.19097358742326273],[116,99,66,0.19216457212045332],[116,99,67,0.19337375265569318],[116,99,68,0.19460211334898225],[116,99,69,0.19585059245066821],[116,99,70,0.19712007958071998],[116,99,71,0.1984114131311046],[116,99,72,0.1997253776312884],[116,99,73,0.20106270107681357],[116,99,74,0.20242405222106302],[116,99,75,0.20381003783006696],[116,99,76,0.20522119990045568],[116,99,77,0.20665801284052543],[116,99,78,0.20812088061441225],[116,99,79,0.20961013384939203],[116,100,64,0.18267339009110806],[116,100,65,0.18385878838046826],[116,100,66,0.1850628163626724],[116,100,67,0.1862864805386792],[116,100,68,0.1875307428152253],[116,100,69,0.18879651799024777],[116,100,70,0.1900846712019839],[116,100,71,0.19139601534170497],[116,100,72,0.1927313084300974],[116,100,73,0.19409125095724916],[116,100,74,0.1954764831863514],[116,100,75,0.19688758242096815],[116,100,76,0.19832506023598118],[116,100,77,0.19978935967217365],[116,100,78,0.20128085239444865],[116,100,79,0.20279983581370453],[116,101,64,0.17546806732219833],[116,101,65,0.176664405997201],[116,101,66,0.1778808619404963],[116,101,67,0.17911842017840557],[116,101,68,0.18037802006948933],[116,101,69,0.18166055279888044],[116,101,70,0.18296685883682667],[116,101,71,0.1842977253613891],[116,101,72,0.1856538836453216],[116,101,73,0.1870360064070773],[116,101,74,0.18844470512606298],[116,101,75,0.18988052732198585],[116,101,76,0.1913439537984043],[116,101,77,0.19283539585044374],[116,101,78,0.19435519243667831],[116,101,79,0.19590360731519268],[116,102,64,0.16818755397441432],[116,102,65,0.1693941940548458],[116,102,66,0.1706224639848407],[116,102,67,0.17187332721584447],[116,102,68,0.17314770043358763],[116,102,69,0.17444645106094525],[116,102,70,0.17577039472553202],[116,102,71,0.17712029269198248],[116,102,72,0.17849684925893777],[116,102,73,0.1799007091206889],[116,102,74,0.18133245469359516],[116,102,75,0.18279260340712195],[116,102,76,0.18428160495961127],[116,102,77,0.18579983853874388],[116,102,78,0.1873476100066957],[116,102,79,0.18892514905000252],[116,103,64,0.16083566147163197],[116,103,65,0.16205196668678923],[116,103,66,0.16329143846961391],[116,103,67,0.16455501860609706],[116,103,68,0.16584360099484474],[116,103,69,0.16715802915807682],[116,103,70,0.16849909371788863],[116,103,71,0.16986752983772485],[116,103,72,0.17126401462908902],[116,103,73,0.1726891645234352],[116,103,74,0.17414353260936394],[116,103,75,0.1756276059349649],[116,103,76,0.17714180277541713],[116,103,77,0.17868646986581416],[116,103,78,0.1802618795992051],[116,103,79,0.18186822718987394],[116,104,64,0.1534162587899205],[116,104,65,0.1546415960878943],[116,104,66,0.1558916599200718],[116,104,67,0.15716737032614642],[116,104,68,0.15846959831375668],[116,104,69,0.15979916337723887],[116,104,70,0.16115683098216904],[116,104,71,0.16254331001564631],[116,104,72,0.1639592502023372],[116,104,73,0.16540523948623004],[116,104,74,0.1668818013782209],[116,104,75,0.1683893922693731],[116,104,76,0.16992839870996262],[116,104,77,0.17149913465427424],[116,104,78,0.1731018386711401],[116,104,79,0.1747366711202477],[116,105,64,0.14593327011579826],[116,105,65,0.14716701017065542],[116,105,66,0.1484270590674135],[116,105,67,0.1497143150284268],[116,105,68,0.1510296260770611],[116,105,69,0.1523737875638143],[116,105,70,0.1537475396587566],[116,105,71,0.15515156481023523],[116,105,72,0.156586485169871],[116,105,73,0.1580528599837865],[116,105,74,0.1595511829501985],[116,105,75,0.16108187954320385],[116,105,76,0.16264530430288437],[116,105,77,0.16424173809168452],[116,105,78,0.16587138531706047],[116,105,79,0.16753437112042463],[116,106,64,0.1383906724514516],[116,106,65,0.13963219016785844],[116,106,66,0.14090162044943816],[116,106,67,0.1421998396400297],[116,106,68,0.14352767269603783],[116,106,69,0.14488589071954056],[116,106,70,0.14627520845824332],[116,106,71,0.14769628177222416],[116,106,72,0.14914970506749303],[116,106,73,0.15063600869631438],[116,106,74,0.15215565632441336],[116,106,75,0.15370904226490806],[116,106,76,0.15529648877908142],[116,106,77,0.15691824334395327],[116,106,78,0.15857447588665213],[116,106,79,0.16026527598560536],[116,107,64,0.13079249316671893],[116,107,65,0.13204116818154554],[116,107,66,0.13331937995706739],[116,107,67,0.13462798290735212],[116,107,68,0.13596777884984568],[116,107,69,0.13733951454508941],[116,107,70,0.13874387920380515],[116,107,71,0.14018150196129742],[116,107,72,0.1416529493191953],[116,107,73,0.14315872255448164],[116,107,74,0.14469925509593218],[116,107,75,0.1462749098678044],[116,107,76,0.1478859766008896],[116,107,77,0.14953266911089408],[116,107,78,0.15121512254414193],[116,107,79,0.1529333905906205],[116,108,64,0.1231428074982232],[116,108,65,0.1243980246786689],[116,108,66,0.1256844223271137],[116,108,67,0.12700283288656605],[116,108,68,0.12835403497427528],[116,108,69,0.1297387509276765],[116,108,70,0.13115764431822974],[116,108,71,0.13261131743309834],[116,108,72,0.13410030872469197],[116,108,73,0.13562509022801883],[116,108,74,0.13718606494597402],[116,108,75,0.1387835642023999],[116,108,76,0.14041784496303322],[116,108,77,0.1420890871243065],[116,108,78,0.14379739076999293],[116,108,79,0.14554277339571953],[116,109,64,0.11544573599546476],[116,109,65,0.11670688593324724],[116,109,66,0.11800087858110897],[116,109,67,0.11932852437972613],[116,109,68,0.12069057869573036],[116,109,69,0.1220877393735082],[116,109,70,0.12352064425541531],[116,109,71,0.1249898686703535],[116,109,72,0.1264959228907362],[116,109,73,0.1280392495577813],[116,109,74,0.12962022107526772],[116,109,75,0.1312391369715813],[116,109,76,0.13289622123017436],[116,109,77,0.13459161958839921],[116,109,78,0.1363253968047065],[116,109,79,0.13809753389423884],[116,110,64,0.10770544191367648],[116,110,65,0.10897192141482276],[116,110,66,0.11027292340999456],[116,110,67,0.11160923631631248],[116,110,68,0.11298159221024257],[116,110,69,0.11439066438487472],[116,110,70,0.11583706487614037],[116,110,71,0.11732134195791294],[116,110,72,0.11884397760601395],[116,110,73,0.12040538493107317],[116,110,74,0.12200590558036806],[116,110,75,0.12364580710847645],[116,110,76,0.12532528031686324],[116,110,77,0.1270444365623591],[116,110,78,0.12880330503452947],[116,110,79,0.13060183000195597],[116,111,64,0.0999261285538312],[116,111,65,0.1011973411236129],[116,111,66,0.10250477250506196],[116,111,67,0.10384918908060242],[116,111,68,0.1052312996079039],[116,111,69,0.10665175278227174],[116,111,70,0.10811113476849482],[116,111,71,0.10960996670209594],[116,111,72,0.11114870216000738],[116,111,73,0.11272772460061659],[116,111,74,0.11434734477331421],[116,111,75,0.1160077980973715],[116,111,76,0.11770924201027122],[116,111,77,0.11945175328545082],[116,111,78,0.12123532531945225],[116,111,79,0.12305986538850672],[116,112,64,0.09211203654960864],[116,112,65,0.09338739287216163],[116,112,66,0.09470067983495295],[116,112,67,0.09605264178467582],[116,112,68,0.09744396414253115],[116,112,69,0.09887527097136439],[116,112,70,0.10034712251277661],[116,112,71,0.10186001269415246],[116,112,72,0.10341436660563397],[116,112,73,0.1050105379469794],[116,112,74,0.10664880644444147],[116,112,75,0.10832937523749325],[116,112,76,0.110052368235522],[116,112,77,0.11181782744445457],[116,112,78,0.11362571026330703],[116,112,79,0.11547588675068193],[116,113,64,0.08426744110112278],[116,113,65,0.08554635951329143],[116,113,66,0.0868649348685187],[116,113,67,0.08822388948685622],[116,113,68,0.08962388544635608],[116,113,69,0.09106552215459052],[116,113,70,0.09254933389066067],[116,113,71,0.09407578731763788],[116,113,72,0.09564527896546599],[116,113,73,0.09725813268426131],[116,113,74,0.09891459706814965],[116,113,75,0.10061484284946215],[116,113,76,0.10235896026341812],[116,113,77,0.10414695638325078],[116,113,78,0.10597875242577315],[116,113,79,0.10785418102740624],[116,114,64,0.07639664915582556],[116,114,65,0.0776785561147732],[116,114,66,0.07900185974395368],[116,114,67,0.08036726035600422],[116,114,68,0.08177539669016431],[116,114,69,0.08322684348781989],[116,114,70,0.08472210903904981],[116,114,71,0.08626163270011916],[116,114,72,0.08784578238194074],[116,114,73,0.08947485200945177],[116,114,74,0.09114905895203695],[116,114,75,0.09286854142482459],[116,114,76,0.0946333558609802],[116,114,77,0.09644347425495642],[116,114,78,0.09829878147669496],[116,114,79,0.10019907255680555],[116,115,64,0.06850399653623679],[116,115,65,0.06978832708036165],[116,115,66,0.07111580638385628],[116,115,67,0.07248711278131181],[116,115,68,0.07390286168852594],[116,115,69,0.07536360318171947],[116,115,70,0.07686981954826322],[116,115,71,0.07842192280886146],[116,115,72,0.08002025221121595],[116,115,73,0.08166507169511084],[116,115,74,0.0833565673290575],[116,115,75,0.08509484471831935],[116,115,76,0.08687992638444553],[116,115,77,0.08871174911626978],[116,115,78,0.09059016129237119],[116,115,79,0.09251492017502239],[116,116,64,0.06059384501476717],[116,116,65,0.061880043217465985],[116,116,66,0.06321115355648005],[116,116,67,0.06458783242786342],[116,116,68,0.06601067195039045],[116,116,69,0.06748019754809403],[116,116,70,0.0689968655048232],[116,116,71,0.0705610604907615],[116,116,72,0.0721730930609335],[116,116,73,0.0738331971256404],[116,116,74,0.07554152739296116],[116,116,75,0.07729815678314156],[116,116,76,0.07910307381499654],[116,116,77,0.08095617996428922],[116,116,78,0.08285728699407469],[116,116,79,0.08480611425703849],[116,117,64,0.052670579335271694],[116,117,65,0.05395809875109053],[116,117,66,0.055292303882815974],[116,117,67,0.05667382923760561],[116,117,68,0.058103243674678895],[116,117,69,0.0595810479908338],[116,117,70,0.06110767247848464],[116,117,71,0.0626834744561669],[116,117,72,0.0643087357715339],[116,117,73,0.0659836602767842],[116,117,74,0.06770837127666235],[116,117,75,0.06948290894884601],[116,117,76,0.07130722773685666],[116,117,77,0.07318119371544535],[116,117,78,0.07510458192845026],[116,117,79,0.0770770736991514],[116,118,64,0.04473860418176706],[116,118,65,0.046026908284480084],[116,118,66,0.04736368078993519],[116,118,67,0.048749534376152315],[116,118,68,0.050185014691311314],[116,118,69,0.0516705979419087],[116,118,70,0.05320668845393356],[116,118,71,0.05479361620701284],[116,118,72,0.056431634341548687],[116,118,73,0.05812091663878732],[116,118,74,0.059861554973961006],[116,118,75,0.06165355674231987],[116,118,76,0.06349684225818375],[116,118,77,0.06539124212697345],[116,118,78,0.06733649459021224],[116,118,79,0.06933224284352757],[116,119,64,0.03680234109410263],[116,119,65,0.03809090370626056],[116,119,66,0.03942972541038836],[116,119,67,0.0408193971252217],[116,119,68,0.04226044134745399],[116,119,69,0.043753309742194824],[116,119,70,0.045298380706950025],[116,119,71,0.04689595690906634],[116,119,72,0.048546262796665074],[116,119,73,0.05024944208300436],[116,119,74,0.05200555520441369],[116,119,75,0.053814576751613],[116,119,76,0.05567639287455173],[116,119,77,0.05759079866072181],[116,119,78,0.05955749548693984],[116,119,79,0.06157608834462763],[116,120,64,0.02886622533039057],[116,120,65,0.030154531043877886],[116,120,66,0.03149489342745859],[116,120,67,0.032887881720506495],[116,120,68,0.03433399533879661],[116,120,69,0.0358336614669405],[116,120,70,0.037387232624838396],[116,120,71,0.038994984208086225],[116,120,72,0.04065711200236782],[116,120,73,0.042373729671769],[116,120,74,0.04414486622115665],[116,120,75,0.04597046343243827],[116,120,76,0.04785037327483088],[116,120,77,0.049784355289102356],[116,120,78,0.0517720739457741],[116,120,79,0.05381309597731293],[116,121,64,0.020934702676594363],[116,121,65,0.02222224726373656],[116,121,66,0.023563651866675805],[116,121,67,0.024959464135376086],[116,121,68,0.02641016048625472],[116,121,69,0.027916143696270823],[116,121,70,0.029477740471523406],[116,121,71,0.031095198990292228],[116,121,72,0.03276868642055453],[116,121,73,0.034498286411913104],[116,121,74,0.0362839965620807],[116,121,75,0.038125725857731496],[116,121,76,0.04002329208985694],[116,121,77,0.041976419243578034],[116,121,78,0.043984734862413],[116,121,79,0.04604776738702321],[116,122,64,0.013012226203075072],[116,122,65,0.014298517017837298],[116,122,66,0.015640475833384737],[116,122,67,0.017038628810214174],[116,122,68,0.018493429457900945],[116,122,69,0.020005256230529733],[116,122,70,0.021574410097113916],[116,122,71,0.023201112086949416],[116,122,72,0.02488550080992724],[116,122,73,0.02662762995174417],[116,122,74,0.02842746574415511],[116,122,75,0.030284884410079704],[116,122,76,0.032199669583697244],[116,122,77,0.03417150970548655],[116,122,78,0.036199995392204753],[116,122,79,0.03828461678183104],[116,123,64,0.005103252967894212],[116,123,65,0.006387809336710959],[116,123,66,0.0077298451961718695],[116,123,67,0.009129865327186015],[116,123,68,0.010588300435920683],[116,123,69,0.012105504750258844],[116,123,70,0.013681753591730739],[116,123,71,0.015317240922862019],[116,123,72,0.017012076869958592],[116,123,73,0.01876628522127527],[116,123,74,0.02057980090070577],[116,123,75,0.022452467416809396],[116,123,76,0.02438403428730762],[116,123,77,0.02637415443900737],[116,123,78,0.02842238158314403],[116,123,79,0.030528167566173825],[116,124,64,-0.0027877593327250705],[116,124,65,-0.001505405730948095],[116,124,66,-1.637587834544818E-4],[116,124,67,0.0012376650308409953],[116,124,68,0.0026992737289935342],[116,124,69,0.004221397421213635],[116,124,70,0.005804285884002336],[116,124,71,0.007448106109179731],[116,124,72,0.009152939828831141],[116,124,73,0.010918781016109658],[116,124,74,0.012745533362041095],[116,124,75,0.014633007728141911],[116,124,76,0.0165809195749832],[116,124,77,0.018588886366661228],[116,124,78,0.020656424951163266],[116,124,79,0.022782948916659218],[116,125,64,-0.010656355766976322],[116,125,65,-0.009376660532148084],[116,125,66,-0.00803585687532049],[116,125,67,-0.006633482405651703],[116,125,68,-0.005169151670093797],[116,125,69,-0.003642558555777553],[116,125,70,-0.002053478715971946],[116,125,71,-4.0177201968016885E-4],[116,125,72,0.0013126149751564453],[116,125,73,0.003089646524783163],[116,125,74,0.004929195179233292],[116,125,75,0.006831039238212044],[116,125,76,0.008794860183403919],[116,125,77,0.010820240087154875],[116,125,78,0.012906658997526188],[116,125,79,0.015053492299747284],[116,126,64,-0.01849808762329541],[116,126,65,-0.017221493277170596],[116,126,66,-0.015881975358992717],[116,126,67,-0.01447909246883522],[116,126,68,-0.013012481581813451],[116,126,69,-0.011481860450323733],[116,126,70,-0.009887030029394728],[116,126,71,-0.008227876925204325],[116,126,72,-0.006504375866736578],[116,126,73,-0.0047165922006418],[116,126,74,-0.0028646844091527734],[116,126,75,-9.489066512483602E-4],[116,126,76,0.0010303886730713696],[116,126,77,0.0030727483353578666],[116,126,78,0.005177615668121471],[116,126,79,0.007344327931108285],[116,127,64,-0.026308515919023057],[116,127,65,-0.025035451560441513],[116,127,66,-0.02369764955592424],[116,127,67,-0.0222946893474662],[116,127,68,-0.020826230191832773],[116,127,69,-0.019292013562939192],[116,127,70,-0.01769186557687563],[116,127,71,-0.01602569943963794],[116,127,72,-0.014293517917533527],[116,127,73,-0.012495415830326762],[116,127,74,-0.010631582566977937],[116,127,75,-0.008702304624165658],[116,127,76,-0.006707968167458889],[116,127,77,-0.004649061615176309],[116,127,78,-0.0025261782449474968],[116,127,79,-3.400188229433221E-4],[116,128,64,-0.03408321496211408],[116,128,65,-0.032814095934903253],[116,128,66,-0.031478427415544796],[116,128,67,-0.030075809529379105],[116,128,68,-0.02860592365772585],[116,128,69,-0.02706853484067573],[116,128,70,-0.025463494202070613],[116,128,71,-0.023790741396730652],[116,128,72,-0.022050307079895415],[116,128,73,-0.020242315398952826],[116,128,74,-0.018366986507295957],[116,128,75,-0.01642463910051195],[116,128,76,-0.014415692974755534],[116,128,77,-0.012340671607356968],[116,128,78,-0.010200204759672427],[116,128,79,-0.00799503110214217],[116,129,64,-0.04181777596608377],[116,129,65,-0.040553003540087396],[116,129,66,-0.03921987315549097],[116,129,67,-0.037818005452918024],[116,129,68,-0.03634710377065287],[116,129,69,-0.03480695654811272],[116,129,70,-0.03319743975105305],[116,129,71,-0.031518519318565086],[116,129,72,-0.029770253631839272],[116,129,73,-0.027952796004758196],[116,129,74,-0.026066397196168545],[116,129,75,-0.024111407944028107],[116,129,76,-0.02208828152128839],[116,129,77,-0.019997576313556364],[116,129,78,-0.01783995841854591],[116,129,79,-0.01561620426728294],[116,130,64,-0.04950781071780147],[116,130,65,-0.04824777178349182],[116,130,66,-0.04691757095558541],[116,130,67,-0.045516849212539956],[116,130,68,-0.04404533167162206],[116,130,69,-0.042502829993317004],[116,130,70,-0.04088924480702094],[116,130,71,-0.03920456815808049],[116,130,72,-0.037448885976149926],[116,130,73,-0.03562238056492828],[116,130,74,-0.033725333113131306],[116,130,75,-0.03175812622688723],[116,130,76,-0.029721246483422448],[116,130,77,-0.027615287006079625],[116,130,78,-0.025440950060674705],[116,130,79,-0.023199049673163108],[116,131,64,-0.05714895529832531],[116,131,65,-0.05589402207545785],[116,131,66,-0.054567128705754586],[116,131,67,-0.05316793631878103],[116,131,68,-0.05169619162251893],[116,131,69,-0.05015172930895895],[116,131,70,-0.048534474480537604],[116,131,71,-0.04684444509747954],[116,131,72,-0.04508175444601281],[116,131,73,-0.04324661362752491],[116,131,74,-0.041339334068508315],[116,131,75,-0.039360330051490644],[116,131,76,-0.037310121266812546],[116,131,77,-0.035189335385292564],[116,131,78,-0.03299871065179216],[116,131,79,-0.030739098499648065],[116,132,64,-0.06473687385697324],[116,132,65,-0.06348740361774674],[116,132,66,-0.0621641818080888],[116,132,67,-0.0607668895127893],[116,132,68,-0.05929529483210727],[116,132,69,-0.05774925528879005],[116,132,70,-0.05612872025550231],[116,132,71,-0.05443373340272195],[116,132,72,-0.05266443516707198],[116,132,73,-0.050821065240160945],[116,132,74,-0.04890396507777073],[116,132,75,-0.04691358042959781],[116,132,76,-0.044850463889401726],[116,132,77,-0.042715277465606105],[116,132,78,-0.040508795172364276],[116,132,79,-0.03823190564105383],[116,133,64,-0.07226726243824444],[116,133,65,-0.0710235972454204],[116,133,66,-0.06970439703264941],[116,133,67,-0.06830936263502674],[116,133,68,-0.06683828333660757],[116,133,69,-0.0652910392790873],[116,133,70,-0.06366760389045889],[116,133,71,-0.061968046333708116],[116,133,72,-0.06019253397551305],[116,133,73,-0.058341334875022466],[116,133,74,-0.05641482029255085],[116,133,75,-0.054413467218395795],[116,133,76,-0.05233786092163273],[116,133,77,-0.05018869751893118],[116,133,78,-0.04796678656340547],[116,133,79,-0.045673053653463414],[116,134,64,-0.07973585286178025],[116,134,65,-0.07849831932222517],[116,134,66,-0.07718347642721868],[116,134,67,-0.07579104454833974],[116,134,68,-0.07432083393505018],[116,134,69,-0.07277274712525861],[116,134,70,-0.07114678137543828],[116,134,71,-0.06944303111035399],[116,134,72,-0.06766169039237557],[116,134,73,-0.06580305541043863],[116,134,74,-0.06386752698850306],[116,134,75,-0.061855613113705576],[116,134,76,-0.05976793148406534],[116,134,77,-0.0576052120757915],[116,134,78,-0.05536829973019286],[116,134,79,-0.053058156760165454],[116,135,64,-0.08713841665556316],[116,135,65,-0.08590732568967174],[116,135,66,-0.08459716128118788],[116,135,67,-0.08320766311559125],[116,135,68,-0.08173866217959469],[116,135,69,-0.08019008317380683],[116,135,70,-0.07856194694452856],[116,135,71,-0.07685437293474529],[116,135,72,-0.07506758165428196],[116,135,73,-0.07320189716918912],[116,135,74,-0.07125774961020948],[116,135,75,-0.06923567770051686],[116,135,76,-0.06713633130259533],[116,135,77,-0.0649604739842945],[116,135,78,-0.06270898560407479],[116,135,79,-0.060382864915409895],[116,136,64,-0.09447076904196061],[116,136,65,-0.09324641566941827],[116,136,66,-0.09194123614319061],[116,136,67,-0.09055498923146243],[116,136,68,-0.08908752642042717],[116,136,69,-0.0875387943292556],[116,136,70,-0.08590883714378317],[116,136,71,-0.0841977990689845],[116,136,72,-0.08240592680019632],[116,136,73,-0.08053357201316091],[116,136,74,-0.07858119387273577],[116,136,75,-0.07654936156046521],[116,136,76,-0.07443875682088097],[116,136,77,-0.07225017652656363],[116,136,78,-0.069984535261985],[116,136,79,-0.06764286792609442],[116,137,64,-0.10172877297681882],[116,137,65,-0.1005114361191648],[116,137,66,-0.09921153289268891],[116,137,67,-0.0978288409086292],[116,137,68,-0.09636323190543794],[116,137,69,-0.09481467416624967],[116,137,70,-0.09318323495466896],[116,137,71,-0.09146908296893219],[116,137,72,-0.0896724908144153],[116,137,73,-0.08779383749455838],[116,137,74,-0.08583361092004604],[116,137,75,-0.08379241043645003],[116,137,76,-0.0816709493701886],[116,137,77,-0.07947005759284587],[116,137,78,-0.07719068410386554],[116,137,79,-0.07483389963158149],[116,138,64,-0.10890834324178156],[116,138,65,-0.10769828554223038],[116,138,66,-0.10640393486568367],[116,138,67,-0.10502508741849004],[116,138,68,-0.10356163493485404],[116,138,69,-0.10201356709699672],[116,138,70,-0.10038097397323253],[116,138,71,-0.09866404847402044],[116,138,72,-0.09686308882596673],[116,138,73,-0.09497850106383998],[116,138,74,-0.09301080154044761],[116,138,75,-0.09096061945457123],[116,138,76,-0.08882869939682159],[116,138,77,-0.08661590391345664],[116,138,78,-0.08432321608817062],[116,138,79,-0.08195174214182155],[116,139,64,-0.11600545058944345],[116,139,65,-0.11480291825042488],[116,139,66,-0.1135143810341619],[116,139,67,-0.11213965348604993],[116,139,68,-0.11067864707044084],[116,139,69,-0.10913137259366623],[116,139,70,-0.1074979426445899],[116,139,71,-0.10577857405274516],[116,139,72,-0.10397359036402487],[116,139,73,-0.10208342433399509],[116,139,74,-0.10010862043867719],[116,139,75,-0.09804983740299555],[116,139,76,-0.09590785074675512],[116,139,77,-0.09368355534818495],[116,139,78,-0.09137796802506437],[116,139,79,-0.08899223013339463],[116,140,64,-0.12301612594167288],[116,140,65,-0.12182134858054916],[116,140,66,-0.12053887023961063],[116,140,67,-0.11916852353930318],[116,140,68,-0.11771023939960157],[116,140,69,-0.11616404946607373],[116,140,70,-0.11453008855307945],[116,140,71,-0.11280859710417457],[116,140,72,-0.11099992366968003],[116,140,73,-0.10910452740149035],[116,140,74,-0.10712298056496206],[116,140,75,-0.1050559710680854],[116,140,76,-0.10290430500779812],[116,140,77,-0.10066890923348093],[116,140,78,-0.09835083392764843],[116,140,79,-0.09595125520380166],[116,141,64,-0.12993646464085096],[116,141,65,-0.1287496551642715],[116,141,66,-0.1274734654803551],[116,141,67,-0.1261077460128518],[116,141,68,-0.12465244685412469],[116,141,69,-0.12310762019440735],[116,141,70,-0.12147342276782136],[116,141,71,-0.11975011831521787],[116,141,72,-0.11793808006380513],[116,141,73,-0.11603779322363783],[116,141,74,-0.11404985750080698],[116,141,75,-0.11197498962753738],[116,141,76,-0.10981402590904221],[116,141,77,-0.10756792478718535],[116,141,78,-0.10523776942096208],[116,141,79,-0.10282477028375714],[116,142,64,-0.1367626307543578],[116,142,65,-0.13558398525170978],[116,142,66,-0.13431429825303798],[116,142,67,-0.13295343770610268],[116,142,68,-0.13150137258390993],[116,142,69,-0.12995817531731602],[116,142,70,-0.1283240242440168],[116,142,71,-0.12659920607399],[116,142,72,-0.12478411837135306],[116,142,73,-0.12287927205271088],[116,142,74,-0.12088529390183289],[116,142,75,-0.1188029291008621],[116,142,76,-0.11663304377791606],[116,142,77,-0.11437662757112077],[116,142,78,-0.11203479620908885],[116,142,79,-0.10960879410780688],[116,143,64,-0.14349086143191558],[116,143,65,-0.14232055908833052],[116,143,66,-0.14105757294786092],[116,143,67,-0.13970178819563972],[116,143,68,-0.13825319238528322],[116,143,69,-0.13671187787497863],[116,143,70,-0.13507804427959413],[116,143,71,-0.133352000938875],[116,143,72,-0.13153416940169427],[116,143,73,-0.12962508592642463],[116,143,74,-0.12762540399727829],[116,143,75,-0.12553589685681354],[116,143,76,-0.12335746005446846],[116,143,77,-0.1210911140111619],[116,143,78,-0.1187380065999778],[116,143,79,-0.11629941574288993],[116,144,64,-0.15011747131598252],[116,144,65,-0.14895567434535772],[116,144,66,-0.14769957129777522],[116,144,67,-0.14634906430197625],[116,144,68,-0.14490415918409183],[116,144,69,-0.14336496790734043],[116,144,70,-0.14173171102739712],[116,144,71,-0.14000472016348875],[116,144,72,-0.1381844404851864],[116,144,73,-0.13627143321496282],[116,144,74,-0.1342663781463599],[116,144,75,-0.13217007617796472],[116,144,76,-0.12998345186305882],[116,144,77,-0.12770755597497407],[116,144,78,-0.12534356808817504],[116,144,79,-0.12289279917502738],[116,145,64,-0.15663885700535607],[116,145,65,-0.15548571060385075],[116,145,66,-0.15423665688178423],[116,145,67,-0.15289161461084055],[116,145,68,-0.15145060757374185],[116,145,69,-0.14991376700768144],[116,145,70,-0.14828133406307586],[116,145,71,-0.1465536622776955],[116,145,72,-0.14473122006613848],[116,145,73,-0.14281459322472512],[116,145,74,-0.14080448745164797],[116,145,75,-0.1387017308825842],[116,145,76,-0.13650727664162798],[116,145,77,-0.13422220540758134],[116,145,78,-0.1318477279956224],[116,145,79,-0.1293851879543091],[116,146,64,-0.16305150157164838],[116,146,65,-0.16190713389211286],[116,146,66,-0.1606652796820196],[116,146,67,-0.15932587404865683],[116,146,68,-0.1578889584078378],[116,146,69,-0.1563546829311766],[116,146,70,-0.15472330900834108],[116,146,71,-0.15299521172434294],[116,146,72,-0.15117088235182796],[116,146,73,-0.14925093085844354],[116,146,74,-0.1472360884291224],[116,146,75,-0.14512721000348083],[116,146,76,-0.14292527682820133],[116,146,77,-0.14063139902442634],[116,146,78,-0.13824681817018725],[116,146,79,-0.1357729098978293],[116,147,64,-0.16935197912880617],[116,147,65,-0.1682165012766057],[116,147,66,-0.16698198069476045],[116,147,67,-0.16564836851239784],[116,147,68,-0.1642157234475986],[116,147,69,-0.16268421425861868],[116,147,70,-0.16105412220975113],[116,147,71,-0.15932584355188628],[116,147,72,-0.1574998920177455],[116,147,73,-0.15557690133185054],[116,147,74,-0.15355762773507597],[116,147,75,-0.15144295252398432],[116,147,76,-0.1492338846048049],[116,147,77,-0.14693156306209354],[116,147,78,-0.1445372597420942],[116,147,79,-0.1420523818507533],[116,148,64,-0.17553695945583692],[116,148,65,-0.17441046550652595],[116,148,66,-0.17318339659556248],[116,148,67,-0.1718557195539664],[116,148,68,-0.17042751006421009],[116,148,69,-0.16889895511547104],[116,148,70,-0.16727035547320068],[116,148,71,-0.16554212816306513],[116,148,72,-0.16371480896922985],[116,148,73,-0.16178905494705276],[116,148,74,-0.1597656469500356],[116,148,75,-0.15764549217122714],[116,148,76,-0.15542962669894644],[116,148,77,-0.1531192180868588],[116,148,78,-0.15071556793842267],[116,148,79,-0.14822011450566785],[116,149,64,-0.1816032126724152],[116,149,65,-0.18048577971172441],[116,149,66,-0.17926626445816507],[116,149,67,-0.17794464911878494],[116,149,68,-0.17652102599579056],[116,149,69,-0.17499559994591474],[116,149,70,-0.1733686908537787],[116,149,71,-0.17164073611930653],[116,149,72,-0.16981229315916435],[116,149,73,-0.167884041922292],[116,149,74,-0.16585678741936505],[116,149,75,-0.16373146226639979],[116,149,76,-0.1615091292423484],[116,149,77,-0.15919098386073582],[116,149,78,-0.15677835695534148],[116,149,79,-0.1542727172798981],[116,150,64,-0.18754761396752695],[116,150,65,-0.18643930215412297],[116,150,66,-0.18522742652734203],[116,150,67,-0.18391198433874367],[116,150,68,-0.18249308415912302],[116,150,69,-0.18097094834206096],[116,150,70,-0.17934591550115808],[116,150,71,-0.17761844300101026],[116,150,72,-0.1757891094618962],[116,150,73,-0.17385861727824348],[116,150,74,-0.17182779515071778],[116,150,75,-0.16969760063213823],[116,150,76,-0.16746912268707814],[116,150,77,-0.1651435842651846],[116,150,78,-0.16272234488824389],[116,150,79,-0.16020690325094344],[116,151,64,-0.19336714838132374],[116,151,65,-0.19226800103279595],[116,151,66,-0.19106383504585722],[116,151,67,-0.18975466237968808],[116,151,68,-0.1883406075163312],[116,151,69,-0.18682190992848613],[116,151,70,-0.18519892656068226],[116,151,71,-0.1834721343238913],[116,151,72,-0.1816421326035449],[116,151,73,-0.17970964578102921],[116,151,74,-0.17767552576849965],[116,151,75,-0.17554075455721474],[116,151,76,-0.17330644677925222],[116,151,77,-0.17097385228264295],[116,151,78,-0.168544358719944],[116,151,79,-0.16601949415020267],[116,152,64,-0.19905891563984812],[116,152,65,-0.19796895934238934],[116,152,66,-0.19677255713519903],[116,152,67,-0.1954697353430993],[116,152,68,-0.19406063399615614],[116,152,69,-0.1925455093017645],[116,152,70,-0.19092473612982108],[116,152,71,-0.18919881051103904],[116,152,72,-0.187368352148369],[116,152,73,-0.18543410694160645],[116,152,74,-0.18339694952501773],[116,152,75,-0.1812578858181927],[116,152,76,-0.17901805558998185],[116,152,77,-0.17667873503555664],[116,152,78,-0.17424133936661024],[116,152,79,-0.17170742541465756],[116,153,64,-0.20462013504282017],[116,153,65,-0.20353937978505354],[116,153,66,-0.20235077973026927],[116,153,67,-0.20105437522216185],[116,153,68,-0.19965032147002537],[116,153,69,-0.1981388910251768],[116,153,70,-0.19652047627017266],[116,153,71,-0.19479559192088047],[116,153,72,-0.19296487754137337],[116,153,73,-0.19102910007171658],[116,153,74,-0.18898915636848812],[116,153,75,-0.18684607575823675],[116,153,76,-0.18460102260373723],[116,153,77,-0.18225529888308023],[116,153,78,-0.17981034678161334],[116,153,79,-0.1772677512966948],[116,154,64,-0.2100481504045998],[116,154,65,-0.20897658973601507],[116,154,66,-0.20779581456815632],[116,154,67,-0.20650587891233008],[116,154,68,-0.20510695278302937],[116,154,69,-0.20359932467871844],[116,154,70,-0.20198340407513526],[116,154,71,-0.20025972393116886],[116,154,72,-0.1984289432072769],[116,154,73,-0.19649184939651698],[116,154,74,-0.19444936106803246],[116,154,75,-0.19230253042319323],[116,154,76,-0.19005254586425724],[116,154,77,-0.18770073457558167],[116,154,78,-0.18524856511740995],[116,154,79,-0.1826976500321884],[116,155,64,-0.215340435048051],[116,155,65,-0.21427804626251046],[116,155,66,-0.2131051032307062],[116,155,67,-0.2118216732761269],[116,155,68,-0.21042794083953242],[116,155,69,-0.20892420996412775],[116,155,70,-0.2073109067929758],[116,155,71,-0.205588582078719],[116,155,72,-0.20375791370556529],[116,155,73,-0.20181970922361692],[116,155,74,-0.19977490839538137],[116,155,75,-0.19762458575466713],[116,155,76,-0.19536995317772343],[116,155,77,-0.19301236246666398],[116,155,78,-0.19055330794518877],[116,155,79,-0.18799442906656683],[116,156,64,-0.22049459685145179],[116,156,65,-0.21944134119622072],[116,156,66,-0.21827622224104204],[116,156,67,-0.21699932026230417],[116,156,68,-0.21561083374355672],[116,156,69,-0.21411108186507843],[116,156,70,-0.2125005070054281],[116,156,71,-0.21077967725503055],[116,156,72,-0.20894928894176945],[116,156,73,-0.20701016916865833],[116,156,74,-0.20496327836342765],[116,156,75,-0.20280971284023208],[116,156,76,-0.20055070737334257],[116,156,77,-0.19818763778285098],[116,156,78,-0.19572202353241697],[116,156,79,-0.19315553033900534],[116,157,64,-0.22550838334858092],[116,157,65,-0.22446420625934704],[116,157,66,-0.22330688821416111],[116,157,67,-0.2220365220795143],[116,157,68,-0.22065331999407767],[116,157,69,-0.2191576158626738],[116,157,70,-0.21754986786196695],[116,157,71,-0.21583066095793768],[116,157,72,-0.2140007094351073],[116,157,73,-0.21206085943758368],[116,157,74,-0.21001209152176648],[116,157,75,-0.20785552322092116],[116,157,76,-0.20559241162147357],[116,157,77,-0.20322415595107235],[116,157,78,-0.20075230017842538],[116,157,79,-0.19817853562487997],[116,158,64,-0.23037968688170696],[116,158,65,-0.22934451824404412],[116,158,66,-0.2281949630613357],[116,158,67,-0.226931126424201],[116,158,68,-0.22555323373495295],[116,158,69,-0.22406163320595773],[116,158,70,-0.22245679836947074],[116,158,71,-0.22073933059900575],[116,158,72,-0.21890996164220855],[116,158,73,-0.21696955616530145],[116,158,74,-0.21491911430894284],[116,158,75,-0.21275977425570425],[116,158,76,-0.21049281480902204],[116,158,77,-0.2081196579836686],[116,158,78,-0.20564187160775138],[116,158,79,-0.2030611719362041],[116,159,64,-0.23510654980763568],[116,159,65,-0.2340803042453754],[116,159,66,-0.232938459248472],[116,159,67,-0.23168113176287974],[116,159,68,-0.23030856005963862],[116,159,69,-0.2288211062376081],[116,159,70,-0.2272192587374372],[116,159,71,-0.22550363486683156],[116,159,72,-0.2236749833370809],[116,159,73,-0.22173418681091983],[116,159,74,-0.21968226446156425],[116,159,75,-0.21752037454312323],[116,159,76,-0.21524981697225176],[116,159,77,-0.21287203592107395],[116,159,78,-0.2103886224214021],[116,159,79,-0.2078013169802072],[116,160,64,-0.23968716975690663],[116,160,65,-0.23866974694787124],[116,160,66,-0.2375355451085196],[116,160,67,-0.23628469266888674],[116,160,68,-0.234917440370787],[116,160,69,-0.23343416377489523],[116,160,70,-0.23183536577883623],[116,160,71,-0.2301216791463373],[116,160,72,-0.22829386904740812],[116,160,73,-0.22635283560962682],[116,160,74,-0.22429961648036667],[116,160,75,-0.22213538940016775],[116,160,76,-0.21986147478711604],[116,160,77,-0.2174793383322654],[116,160,78,-0.21499059360612116],[116,160,79,-0.2123970046761421],[116,161,64,-0.24411990494592295],[116,161,65,-0.2431111899654852],[116,161,66,-0.2419845502077167],[116,161,67,-0.24074012521339072],[116,161,68,-0.23937817779450943],[116,161,69,-0.2378990965456994],[116,161,70,-0.2363033983663927],[116,161,71,-0.23459173099384578],[116,161,72,-0.2327648755469648],[116,161,73,-0.23082374908101166],[116,161,74,-0.22876940715302696],[116,161,75,-0.2266030463981773],[116,161,76,-0.2243260071168841],[116,161,77,-0.2219397758727707],[116,161,78,-0.21944598810145133],[116,161,79,-0.21684643073011178],[116,162,64,-0.2484032795421175],[116,162,65,-0.24740314323504276],[116,162,66,-0.24628397076577013],[116,162,67,-0.24504591241076212],[116,162,68,-0.24368924264940495],[116,162,69,-0.24221436267967855],[116,162,70,-0.2406218029443905],[116,162,71,-0.23891222566803616],[116,162,72,-0.23708642740425012],[116,162,73,-0.2351453415939211],[116,162,74,-0.23309004113380993],[116,162,75,-0.23092174095587603],[116,162,76,-0.22864180061716832],[116,162,77,-0.22625172690032402],[116,162,78,-0.22375317642468784],[116,162,79,-0.22114795826801092],[116,163,64,-0.2525359890822785],[116,163,65,-0.2515442884633097],[116,163,66,-0.2504324751300979],[116,163,67,-0.2492007097184289],[116,163,68,-0.2478492779704825],[116,163,69,-0.24637859325472078],[116,163,70,-0.2447891990961334],[116,163,71,-0.24308177171690482],[116,163,72,-0.24125712258746268],[116,163,73,-0.239316200987982],[116,163,74,-0.2372600965801882],[116,163,75,-0.23509004198965666],[116,163,76,-0.23280741539847627],[116,163,77,-0.2304137431483072],[116,163,78,-0.22791070235385325],[116,163,79,-0.22530012352671058],[116,164,64,-0.25651690594379173],[116,164,65,-0.25553348462743664],[116,164,66,-0.2544289093038872],[116,164,67,-0.25320335059097365],[116,164,68,-0.25185710508772763],[116,164,69,-0.250390597898428],[116,164,70,-0.2488043851668098],[116,164,71,-0.24709915662048998],[116,164,72,-0.24527573812557746],[116,164,73,-0.24333509425154265],[116,164,74,-0.24127833084618067],[116,164,75,-0.2391066976208791],[116,164,76,-0.2368215907460436],[116,164,77,-0.23442455545672158],[116,164,78,-0.23191728866844463],[116,164,79,-0.22930164160324207],[116,165,64,-0.26034508486899544],[116,165,65,-0.2593697735289753],[116,165,66,-0.25827230252816835],[116,165,67,-0.2570528520886671],[116,165,68,-0.25571172925951346],[116,165,69,-0.25424937044483753],[116,165,70,-0.2526663439419643],[116,165,71,-0.25096335248955093],[116,165,72,-0.24914123582571435],[116,165,73,-0.24720097325622603],[116,165,74,-0.24514368623261396],[116,165,75,-0.24297064094037224],[116,165,76,-0.2406832508971416],[116,165,77,-0.23828307956089545],[116,165,78,-0.23577184294815368],[116,165,79,-0.23315141226217384],[116,166,64,-0.26401976854251585],[116,166,65,-0.2630523854013359],[116,166,66,-0.2619618729177696],[116,166,67,-0.26074842054030856],[116,166,68,-0.2594123453607282],[116,166,69,-0.25795409464624164],[116,166,70,-0.2563742483814404],[116,166,71,-0.25467352182007996],[116,166,72,-0.25285276804667434],[116,166,73,-0.25091298054797384],[116,166,74,-0.2488552957941681],[116,166,75,-0.2466809958300109],[116,166,76,-0.24439151087573552],[116,166,77,-0.2419884219377919],[116,166,78,-0.23947346342942522],[116,166,79,-0.2368485258010551],[116,167,64,-0.26754039322174594],[116,167,65,-0.26658074457084424],[116,167,66,-0.2654970331513141],[116,167,67,-0.264289457260533],[116,167,68,-0.26295834362576964],[116,167,69,-0.26150414994027027],[116,167,70,-0.2599274674089571],[116,167,71,-0.2582290233037957],[116,167,72,-0.256409683528798],[116,167,73,-0.25447045519473066],[116,167,74,-0.2524124892033741],[116,167,75,-0.2502370828415308],[116,167,76,-0.24794568238464576],[116,167,77,-0.2455398857100739],[116,167,78,-0.24302144492001643],[116,167,79,-0.24039226897407928],[116,168,64,-0.2709065944202742],[116,168,65,-0.2699544751712112],[116,168,66,-0.26887739621507045],[116,168,67,-0.26767556432139383],[116,168,68,-0.2663493154462261],[116,168,69,-0.26489911727204374],[116,168,70,-0.26332557175712734],[116,168,71,-0.26162941769443815],[116,168,72,-0.25981153327996],[116,168,73,-0.2578729386905829],[116,168,74,-0.2558147986713658],[116,168,75,-0.25363842513238466],[116,168,76,-0.2513452797550233],[116,168,77,-0.24893697660774572],[116,168,78,-0.2464152847713672],[116,168,79,-0.24378213097378343],[116,169,64,-0.2741182126443572],[116,169,65,-0.27317340691150505],[116,169,66,-0.2721027812007477],[116,169,67,-0.27090655037831524],[116,169,68,-0.2695850592233321],[116,169,69,-0.26813878497149146],[116,169,70,-0.266568339868014],[116,169,71,-0.2648744737299501],[116,169,72,-0.2630580765177887],[116,169,73,-0.26112018091644795],[116,169,74,-0.2590619649254866],[116,169,75,-0.25688475445873993],[116,169,76,-0.2545900259532392],[116,169,77,-0.25217940898745284],[116,169,78,-0.2496546889088691],[116,169,79,-0.24701780947087393],[116,170,64,-0.2771752991825268],[116,170,65,-0.27623758089771555],[116,170,66,-0.2751732191573243],[116,170,67,-0.2739824365505016],[116,170,68,-0.2726655862752856],[116,170,69,-0.2712231546859212],[116,170,70,-0.26965576384930756],[116,170,71,-0.2679641741106391],[116,170,72,-0.26614928666820103],[116,170,73,-0.2642121461573943],[116,170,74,-0.262153943243831],[116,170,75,-0.2599760172256994],[116,170,76,-0.25767985864526455],[116,170,77,-0.255267111909537],[116,170,78,-0.252739577920131],[116,170,79,-0.25009921671226565],[116,171,64,-0.28007812194813786],[116,171,65,-0.2791472555077197],[116,171,66,-0.2780889589967197],[116,171,67,-0.2769034623556149],[116,171,68,-0.2755911267992436],[116,171,69,-0.2741524473676539],[116,171,70,-0.27258805548594023],[116,171,71,-0.27089872153312733],[116,171,72,-0.269085357420066],[116,171,73,-0.2671490191764133],[116,171,74,-0.2650909095465397],[116,171,75,-0.26291238059456135],[116,171,76,-0.2606149363183645],[116,171,77,-0.25820023527265257],[116,171,78,-0.2556700932010407],[116,171,79,-0.25302648567714725],[116,172,64,-0.2828271713749807],[116,172,65,-0.2819029123197714],[116,172,66,-0.2808504734534317],[116,172,67,-0.27967009169883994],[116,172,68,-0.27836213588810654],[116,172,69,-0.2769271093168377],[116,172,70,-0.2753656523072524],[116,172,71,-0.27367854478020914],[116,172,72,-0.2718667088361103],[116,172,73,-0.2699312113447512],[116,172,74,-0.26787326654396115],[116,172,75,-0.26569423864723407],[116,172,76,-0.2633956444602138],[116,172,77,-0.26097915600606425],[116,172,78,-0.2584466031597523],[116,172,79,-0.255799976291191],[116,173,64,-0.2854231663659984],[116,173,65,-0.2845052620945552],[116,173,66,-0.28345846509817896],[116,173,67,-0.2822830189163805],[116,173,68,-0.2809792996021452],[116,173,69,-0.2795478182794925],[116,173,70,-0.2779892237097583],[116,173,71,-0.276304304866662],[116,173,72,-0.2744939935201154],[116,173,73,-0.27255936682885384],[116,173,74,-0.270501649941727],[116,173,75,-0.26832221860785144],[116,173,76,-0.26602260179548687],[116,173,77,-0.2636044843196703],[116,173,78,-0.2610697094786335],[116,173,79,-0.2584202816989517],[116,174,64,-0.28786706029497366],[116,174,65,-0.2869552508106692],[116,174,66,-0.28591387240541544],[116,174,67,-0.28474317487324874],[116,174,68,-0.2834435410953233],[116,174,69,-0.28201548960063894],[116,174,70,-0.28045967713537256],[116,174,71,-0.2787769012408712],[116,174,72,-0.2769681028402651],[116,174,73,-0.2750343688337834],[116,174,74,-0.272976934702605],[116,174,75,-0.2707971871214513],[116,174,76,-0.26849666657977966],[116,174,77,-0.26607707001161685],[116,174,78,-0.26354025343404675],[116,174,79,-0.2608882345943153],[116,175,64,-0.29016004706126397],[116,175,65,-0.2892540657536148],[116,175,66,-0.288217875874792],[116,175,67,-0.2870517331154293],[116,175,68,-0.2857560267964031],[116,175,69,-0.28433128243259975],[116,175,70,-0.2827781643051739],[116,175,71,-0.28109747804234764],[116,175,72,-0.27929017320872496],[116,175,73,-0.2773573459031846],[116,175,74,-0.2753002413652026],[116,175,75,-0.27312025658979333],[116,175,76,-0.27081894295094555],[116,175,77,-0.2683980088335757],[116,175,78,-0.26585932227402986],[116,175,79,-0.26320491360907905],[116,176,64,-0.29230356719764305],[116,176,65,-0.2914031416583518],[116,176,66,-0.2903719042066254],[116,176,67,-0.28921011607647096],[116,176,68,-0.2879181726448845],[116,176,69,-0.28649660599852467],[116,176,70,-0.2849460875087676],[116,176,71,-0.28326743041519853],[116,176,72,-0.281461592417508],[116,176,73,-0.2795296782758607],[116,176,74,-0.27747294241958564],[116,176,75,-0.27529279156438],[116,176,76,-0.2729907873378977],[116,176,77,-0.27056864891375],[116,176,78,-0.2680282556539455],[116,176,79,-0.2653716497597184],[116,177,64,-0.2942993140311143],[116,177,65,-0.29340416690528726],[116,177,66,-0.29237764053124504],[116,177,67,-0.2912200013383833],[116,177,68,-0.28993165038165447],[116,177,69,-0.28851312591100875],[116,177,70,-0.2869651059491146],[116,177,71,-0.28528841087741796],[116,177,72,-0.2834840060305027],[116,177,73,-0.2815530042988277],[116,177,74,-0.2794966687396798],[116,177,75,-0.27731641519654426],[116,177,76,-0.27501381492675736],[116,177,77,-0.2725905972374727],[116,177,78,-0.27004865212996254],[116,177,79,-0.26739003295221264],[116,178,64,-0.29614923989677655],[116,178,65,-0.29525908976977333],[116,178,66,-0.2942370286922842],[116,178,67,-0.2930833279468984],[116,178,68,-0.29179839389441],[116,178,69,-0.290382770545882],[116,178,70,-0.28883714214289957],[116,178,71,-0.28716233574606986],[116,178,72,-0.28535932383172646],[116,178,73,-0.2834292268969184],[116,178,74,-0.2813733160725216],[116,178,75,-0.27919301574467614],[116,178,76,-0.2768899061844079],[116,178,77,-0.2744657261854724],[116,178,78,-0.27192237571044386],[116,178,79,-0.2692619185449989],[116,179,64,-0.29785556240478994],[116,179,65,-0.2969701247251667],[116,179,66,-0.2959522795839803],[116,179,67,-0.2948023027811697],[116,179,68,-0.29352060561792215],[116,179,69,-0.29210773747122054],[116,179,70,-0.29056438837649445],[116,179,71,-0.2888913916184238],[116,179,72,-0.2870897263298694],[116,179,73,-0.2851605200989946],[116,179,74,-0.2831050515844268],[116,179,75,-0.2809247531386537],[116,179,76,-0.2786212134395206],[116,179,77,-0.2761961801298636],[116,179,78,-0.2736515624652974],[116,179,79,-0.27098943397011277],[116,180,64,-0.29942077076031237],[116,180,65,-0.29853975879931494],[116,180,66,-0.29752587754234294],[116,180,67,-0.29637940697775744],[116,180,68,-0.29510076298899357],[116,180,69,-0.29369049993144747],[116,180,70,-0.29214931321738036],[116,180,71,-0.29047804190890014],[116,180,72,-0.28867767131898714],[116,180,73,-0.28674933562063065],[116,180,74,-0.28469432046392684],[116,180,75,-0.2825140656013274],[116,180,76,-0.2802101675209139],[116,180,77,-0.27778438208772327],[116,180,78,-0.2752386271931504],[116,180,79,-0.27257498541237934],[116,181,64,-0.3008476321364987],[116,181,65,-0.2999707579845693],[116,181,66,-0.29896058679028703],[116,181,67,-0.2978174024090072],[116,181,68,-0.29654162495621794],[116,181,69,-0.2951338133866165],[116,181,70,-0.2935946680811279],[116,181,71,-0.2919250334419292],[116,181,72,-0.2901259004954422],[116,181,73,-0.2881984095033635],[116,181,74,-0.28614385258158115],[116,181,75,-0.28396367632717046],[116,181,76,-0.2816594844533392],[116,181,77,-0.27923304043235153],[116,181,78,-0.27668627014645264],[116,181,79,-0.27402126454675146],[116,182,64,-0.3021391981005852],[116,182,65,-0.3012661737013377],[116,182,66,-0.3002594579367498],[116,182,67,-0.2991193382158349],[116,182,68,-0.2978462385445484],[116,182,69,-0.2964407221069003],[116,182,70,-0.2949034938539504],[116,182,71,-0.2932354031007387],[116,182,72,-0.2914374461311122],[116,182,73,-0.2895107688105296],[116,182,74,-0.2874566692066768],[116,182,75,-0.2852766002181003],[116,182,76,-0.2829721722107167],[116,182,77,-0.28054515566223504],[116,182,78,-0.2779974838145153],[116,182,79,-0.2753312553338122],[116,183,64,-0.30329881109295376],[116,183,65,-0.30242934931508125],[116,183,66,-0.3014258345296913],[116,183,67,-0.3002885573948194],[116,183,68,-0.29901794547458105],[116,183,69,-0.2976145658221795],[116,183,70,-0.2960791275707312],[116,183,71,-0.2944124845319652],[116,183,72,-0.2926156378027589],[116,183,73,-0.2906897383795861],[116,183,74,-0.28863608978071886],[116,183,75,-0.28645615067637986],[116,183,76,-0.28415153752671474],[116,183,77,-0.2817240272276115],[116,183,78,-0.2791755597643938],[116,183,79,-0.2765082408733426],[116,184,64,-0.3043301109592742],[116,184,65,-0.3034639267068415],[116,184,66,-0.30246335966307236],[116,184,67,-0.3013287034396952],[116,184,68,-0.30006038883664776],[116,184,69,-0.29865898642683],[116,184,70,-0.2971252091486173],[116,184,71,-0.29545991490619283],[116,184,72,-0.2936641091776605],[116,184,73,-0.2917389476310134],[116,184,74,-0.2896857387477998],[116,184,75,-0.2875059464546852],[116,184,76,-0.2852011927627742],[116,184,77,-0.2827732604147293],[116,184,78,-0.2802240955397043],[116,184,79,-0.27755581031604637],[116,185,64,-0.3052370415356819],[116,185,65,-0.30437385289727303],[116,185,66,-0.3033759826377709],[116,185,67,-0.30224372703720825],[116,185,68,-0.30097751981967436],[116,185,69,-0.2995779347396652],[116,185,70,-0.2980456881761442],[116,185,71,-0.29638164173437087],[116,185,72,-0.29458680485546274],[116,185,73,-0.2926623374337556],[116,185,74,-0.2906095524418181],[116,185,75,-0.2884299185633058],[116,185,76,-0.28612506283352956],[116,185,77,-0.2836967732877662],[116,185,78,-0.28114700161733575],[116,185,79,-0.2784778658333953],[116,186,64,-0.30602385728700265],[116,186,65,-0.30516338672417054],[116,186,66,-0.3041679656764419],[116,186,67,-0.3030378928173415],[116,186,68,-0.30177360449481705],[116,186,69,-0.30037567731904424],[116,186,70,-0.29884483075789425],[116,186,71,-0.2971819297401247],[116,186,72,-0.2953879872662568],[116,186,73,-0.2934641670272108],[116,186,74,-0.2914117860305433],[116,186,75,-0.28923231723448484],[116,186,76,-0.2869273921896439],[116,186,77,-0.28449880368840796],[116,186,78,-0.2819485084220652],[116,186,79,-0.27927862964560135],[116,187,64,-0.30669512999799686],[116,187,65,-0.3058371055734833],[116,187,66,-0.30484389069230355],[116,187,67,-0.3037157861578855],[116,187,68,-0.3024532306538501],[116,187,69,-0.3010568033331221],[116,187,70,-0.29952722641467155],[116,187,71,-0.2978653677879307],[116,187,72,-0.2960722436248625],[116,187,73,-0.2941490209997437],[116,187,74,-0.2920970205165121],[116,187,75,-0.28991771894387186],[116,187,76,-0.2876127518580276],[116,187,77,-0.28518391629307105],[116,187,78,-0.282633173399054],[116,187,79,-0.27996265110769225],[116,188,64,-0.3072557555176807],[116,188,65,-0.306399912163862],[116,188,66,-0.30540866611189554],[116,188,67,-0.30428232004341194],[116,188,68,-0.30302131470236104],[116,188,69,-0.3016262314852942],[116,188,70,-0.30009779503923883],[116,188,71,-0.29843687586721557],[116,188,72,-0.2966444929413684],[116,188,73,-0.29472181632377914],[116,188,74,-0.29267016979480565],[116,188,75,-0.2904910334891466],[116,188,76,-0.288186046539496],[116,188,77,-0.2857570097278189],[116,188,78,-0.2832058881442765],[116,188,79,-0.280534813853744],[116,189,64,-0.3077109605566618],[116,189,65,-0.3068570413846823],[116,189,66,-0.305867533751759],[116,189,67,-0.30474274197858453],[116,189,68,-0.3034831086076928],[116,189,69,-0.30208921699477786],[116,189,70,-0.3005617939075673],[116,189,71,-0.2989017121323154],[116,189,72,-0.2971099930878729],[116,189,73,-0.2951878094474135],[116,189,74,-0.29313648776765033],[116,189,75,-0.29095751112575075],[116,189,76,-0.2886525217638102],[116,189,77,-0.2862233237409153],[116,189,78,-0.2836718855928244],[116,189,79,-0.28100034299921295],[116,190,64,-0.3080663095375279],[116,190,65,-0.30721406718757616],[116,190,66,-0.3062260757490637],[116,190,67,-0.3051026409558485],[116,190,68,-0.3038442069016688],[116,190,69,-0.3024513586323636],[116,190,70,-0.30092482474562365],[116,190,71,-0.29926547999833164],[116,190,72,-0.297474347921458],[116,190,73,-0.29555260344258016],[116,190,74,-0.2935015755158733],[116,190,75,-0.291322749759766],[116,190,76,-0.2890177711021319],[116,190,77,-0.28658844643304415],[116,190,78,-0.28403674726511885],[116,190,79,-0.2813648124013999],[116,191,64,-0.308327711498279],[116,191,65,-0.30747690953147033],[116,191,66,-0.30649022154618455],[116,191,67,-0.30536795447748954],[116,191,68,-0.30411055373809215],[116,191,69,-0.30271860581133414],[116,191,70,-0.3011928408516982],[116,191,71,-0.29953413529287887],[116,191,72,-0.29774351446338876],[116,191,73,-0.29582215520976307],[116,191,74,-0.2937713885272141],[116,191,75,-0.29159270219793065],[116,191,76,-0.289287743436888],[116,191,77,-0.28685832154519797],[116,191,78,-0.2843064105710289],[116,191,79,-0.28163415197804254],[116,192,64,-0.30850142704879424],[116,192,65,-0.3076518413811178],[116,192,66,-0.3066662549292133],[116,192,67,-0.3055449756320523],[116,192,68,-0.3042884500050135],[116,192,69,-0.30289726573353437],[116,192,70,-0.3013721542742557],[116,192,71,-0.29971399346371197],[116,192,72,-0.2979238101345364],[116,192,73,-0.29600278273924907],[116,192,74,-0.29395224398147446],[116,192,75,-0.2917736834547846],[116,192,76,-0.28946875028903396],[116,192,77,-0.2870392558042182],[116,192,78,-0.2844871761718817],[116,192,79,-0.2818146550840229],[116,193,64,-0.30859407538035044],[116,193,65,-0.3077454957591389],[116,193,66,-0.3067608211204196],[116,193,67,-0.3056403602251322],[116,193,68,-0.304384560491778],[116,193,69,-0.3029940105906149],[116,193,70,-0.30146944304533063],[116,193,71,-0.29981173684224816],[116,193,72,-0.29802192004702577],[116,193,73,-0.2961011724289313],[116,193,74,-0.29405082809252503],[116,193,75,-0.29187237811695543],[116,193,76,-0.289567473202732],[116,193,77,-0.28713792632600466],[116,193,78,-0.28458571540037847],[116,193,79,-0.2819129859462095],[116,194,64,-0.3086126413281741],[116,194,65,-0.3077648728515565],[116,194,66,-0.30678093392465033],[116,194,67,-0.3056611339645302],[116,194,68,-0.30440592111083997],[116,194,69,-0.30301588482042807],[116,194,70,-0.3014917584694471],[116,194,71,-0.2998344219629726],[116,194,72,-0.29804490435210995],[116,194,73,-0.29612438645865424],[116,194,74,-0.29407420350715574],[116,194,75,-0.291895847764579],[116,194,76,-0.2895909711874307],[116,194,77,-0.2871613880763818],[116,194,78,-0.28460907773841015],[116,194,79,-0.2819361871564142],[116,195,64,-0.3085644824870474],[116,195,65,-0.3077173471668436],[116,195,66,-0.306733982929681],[116,195,67,-0.3056146996997824],[116,195,68,-0.30435994617436146],[116,195,69,-0.30297031241859984],[116,195,70,-0.3014465324680824],[116,195,71,-0.2997894869387403],[116,195,72,-0.2980002056442719],[116,195,73,-0.2960798702211105],[116,195,74,-0.29402981676078355],[116,195,75,-0.29185153844986056],[116,195,76,-0.2895466882173593],[116,195,77,-0.2871170813896341],[116,195,78,-0.28456469835277776],[116,195,79,-0.28189168722248725],[116,196,64,-0.30845733637993544],[116,196,65,-0.3076106747484534],[116,196,66,-0.30662774076049215],[116,196,67,-0.30550884471604023],[116,196,68,-0.3042544357255632],[116,196,69,-0.3028651043052404],[116,196,70,-0.3013415849796479],[116,196,71,-0.29968475889194646],[116,196,72,-0.29789565642153915],[116,196,73,-0.2959754598092663],[116,196,74,-0.29392550578999],[116,196,75,-0.2917472882327564],[116,196,76,-0.2894424607884103],[116,196,77,-0.2870128395446846],[116,196,78,-0.2844604056887997],[116,196,79,-0.2817873081775132],[116,197,64,-0.3082993276796814],[116,197,65,-0.3074530004408742],[116,197,66,-0.3064703703875118],[116,197,67,-0.30535174808233734],[116,197,68,-0.3040975829248749],[116,197,69,-0.3027084657468443],[116,197,70,-0.3011851314150238],[116,197,71,-0.2995284614416104],[116,197,72,-0.2977394866020411],[116,197,73,-0.29581938956035525],[116,197,74,-0.293769507501933],[116,197,75,-0.29159133477381327],[116,197,76,-0.28928652553245227],[116,197,77,-0.2868568963989605],[116,197,78,-0.2843044291218383],[116,197,79,-0.281631273247158],[116,198,64,-0.3080989754837239],[116,198,65,-0.3072528652091687],[116,198,66,-0.30627043248878316],[116,198,67,-0.3051519880542112],[116,198,68,-0.303897981490839],[116,198,69,-0.3025090038333329],[116,198,70,-0.3009857901686127],[116,198,71,-0.29932922224632574],[116,198,72,-0.29754033109677747],[116,198,73,-0.2956202996563988],[116,198,74,-0.29357046540058773],[116,198,75,-0.2913923229841253],[116,198,76,-0.2890875268890326],[116,198,77,-0.28665789407990083],[116,198,78,-0.2841054066667137],[116,198,79,-0.2814322145751219],[116,199,64,-0.3078652006418673],[116,199,65,-0.3070192135120202],[116,199,66,-0.3060368928660838],[116,199,67,-0.30491854953069286],[116,199,68,-0.3036646331957983],[116,199,69,-0.30227573501026805],[116,199,70,-0.3007525901849314],[116,199,71,-0.2990960806031103],[116,199,72,-0.29730723743861787],[116,199,73,-0.2953872437812808],[116,199,74,-0.2933374372698432],[116,199,75,-0.29115931273243656],[116,199,76,-0.28885452483449414],[116,199,77,-0.2864248907341309],[116,199,78,-0.2838723927450223],[116,199,79,-0.28119918100672314],[116,200,64,-0.3076073331370893],[116,200,65,-0.3067614007282846],[116,200,66,-0.30577912991498724],[116,200,67,-0.30466083156567025],[116,200,68,-0.3034069554163513],[116,200,69,-0.30201809266622626],[116,200,70,-0.30049497858073815],[116,200,71,-0.29883849510214167],[116,200,72,-0.2970496734675261],[116,200,73,-0.2951296968343662],[116,200,74,-0.2930799029134501],[116,200,75,-0.29090178660937727],[116,200,76,-0.2885970026684951],[116,200,77,-0.28616736833430434],[116,200,78,-0.28361486601035846],[116,200,79,-0.28094164593060755],[116,201,64,-0.3073351195193904],[116,201,65,-0.306489200637033],[116,201,66,-0.30550694214886265],[116,201,67,-0.3043886549336079],[116,201,68,-0.30313478873858424],[116,201,69,-0.30174593477533074],[116,201,70,-0.3002228283226889],[116,201,71,-0.29856635133737475],[116,201,72,-0.2967775350720053],[116,201,73,-0.29485756270065944],[116,201,74,-0.29280777195181074],[116,201,75,-0.2906296577488321],[116,201,76,-0.28832487485793734],[116,201,77,-0.2858952405435947],[116,201,78,-0.28334273723142933],[116,201,79,-0.28066951517857575],[116,202,64,-0.30650434657572134],[116,202,65,-0.30565842530274523],[116,202,66,-0.30467616449343404],[116,202,67,-0.3035578750268849],[116,202,68,-0.30230400665069557],[116,202,69,-0.300915150576603],[116,202,70,-0.2993920420835585],[116,202,71,-0.2977355631282953],[116,202,72,-0.29594674496335605],[116,202,73,-0.29402677076264827],[116,202,74,-0.29197697825437663],[116,202,75,-0.2897988623615433],[116,202,76,-0.287494077849889],[116,202,77,-0.28506444198330183],[116,202,78,-0.2825119371867193],[116,202,79,-0.2798387137164754],[116,203,64,-0.3064999907719512],[116,203,65,-0.30565402062348246],[116,203,66,-0.30467171271294613],[116,203,67,-0.3035533779215388],[116,203,68,-0.3022994659970003],[116,203,69,-0.3009105681492056],[116,203,70,-0.29938741965319415],[116,203,71,-0.29773090245968936],[116,203,72,-0.29594204781307953],[116,203,73,-0.2940220388769256],[116,203,74,-0.2919722133668444],[116,203,75,-0.2897940661909628],[116,203,76,-0.28748925209780807],[116,203,77,-0.2850595883316691],[116,203,78,-0.282507057295449],[116,203,79,-0.2798338092209629],[116,204,64,-0.3064849747589037],[116,204,65,-0.30563883611913556],[116,204,66,-0.30465636583383504],[116,204,67,-0.30353787479143557],[116,204,68,-0.3022838127401659],[116,204,69,-0.30089477088348404],[116,204,70,-0.2993714844829417],[116,204,71,-0.2977148354685458],[116,204,72,-0.29592585505657343],[116,204,73,-0.29400572637491595],[116,204,74,-0.29195578709579795],[116,204,75,-0.28977753207606305],[116,204,76,-0.28747261600489926],[116,204,77,-0.2850428560590298],[116,204,78,-0.2824902345653969],[116,204,79,-0.2798169016712895],[116,205,64,-0.30617623507522473],[116,205,65,-0.30532973828330934],[116,205,66,-0.30434692284275533],[116,205,67,-0.30322809965776376],[116,205,68,-0.30197371847798504],[116,205,69,-0.3005843704936102],[116,205,70,-0.29906079093789373],[116,205,71,-0.2974038616971687],[116,205,72,-0.295614613928314],[116,205,73,-0.2936942306837499],[116,205,74,-0.29164404954380263],[116,205,75,-0.28946556525663836],[116,205,76,-0.2871604323856296],[116,205,77,-0.28473046796418866],[116,205,78,-0.2821776541580904],[116,205,79,-0.2795041409352351],[116,206,64,-0.3058447049790105],[116,206,65,-0.30499759285655614],[116,206,66,-0.30401418440838834],[116,206,67,-0.30289479056634694],[116,206,68,-0.3016398610830672],[116,206,69,-0.30024998712648177],[116,206,70,-0.2987259038817559],[116,206,71,-0.29706849316070527],[116,206,72,-0.29527878601866697],[116,206,73,-0.2933579653788919],[116,206,74,-0.29130736866430373],[116,206,75,-0.2891284904368222],[116,206,76,-0.2868229850441172],[116,206,77,-0.2843926692738229],[116,206,78,-0.2818395250152401],[116,206,79,-0.27916570192847345],[116,207,64,-0.3054847668715095],[116,207,65,-0.3046367180532533],[116,207,66,-0.3036524068803951],[116,207,67,-0.30253214432769804],[116,207,68,-0.3012763801531787],[116,207,69,-0.2998857054917159],[116,207,70,-0.2983608554560836],[116,207,71,-0.29670271174546414],[116,207,72,-0.29491230526140555],[116,207,73,-0.29299081873129595],[116,207,74,-0.29093958933919895],[116,207,75,-0.28876011136424595],[116,207,76,-0.2864540388264547],[116,207,77,-0.2840231881400015],[116,207,78,-0.2814695407739751],[116,207,79,-0.27879524592056104],[116,208,64,-0.3050911060547028],[116,208,65,-0.3042417380818315],[116,208,66,-0.30325615558141494],[116,208,67,-0.3021346695898759],[116,208,68,-0.30087772987400674],[116,208,69,-0.29948592752331704],[116,208,70,-0.2979599975497952],[116,208,71,-0.29630082149514336],[116,208,72,-0.2945094300454476],[116,208,73,-0.2925870056533566],[116,208,74,-0.29053488516761306],[116,208,75,-0.28835456247013447],[116,208,76,-0.28604769112050954],[116,208,77,-0.2836160870079434],[116,208,78,-0.2810617310106721],[116,208,79,-0.2783867716628028],[116,209,64,-0.30465870422745145],[116,209,65,-0.3038075765806515],[116,209,66,-0.3028202981849445],[116,209,67,-0.30169718016063907],[116,209,68,-0.30043867228785026],[116,209,69,-0.29904536559716255],[116,209,70,-0.2975179949676928],[116,209,71,-0.29585744173261663],[116,209,72,-0.29406473629211916],[116,209,73,-0.2921410607338414],[116,209,74,-0.29008775146067023],[116,209,75,-0.28790630182606436],[116,209,76,-0.28559836477678724],[116,209,77,-0.2831657555030743],[116,209,78,-0.2806104540962623],[116,209,79,-0.27793460821382865],[116,210,64,-0.3041828330382017],[116,210,65,-0.30332945011091017],[116,210,66,-0.30233999815070445],[116,210,67,-0.30121478838752425],[116,210,68,-0.2999542706206566],[116,210,69,-0.2985590358072323],[116,210,70,-0.29702981865811084],[116,210,71,-0.2953675002412114],[116,210,72,-0.29357311059225566],[116,210,73,-0.29164783133299177],[116,210,74,-0.28959299829674634],[116,210,75,-0.2874101041614988],[116,210,76,-0.2851008010903484],[116,210,77,-0.28266690337940037],[116,210,78,-0.2801103901131001],[116,210,79,-0.277433407826963],[116,211,64,-0.303659047694269],[116,211,65,-0.302802861706601],[116,211,66,-0.301810708217512],[116,211,67,-0.30068289859586717],[116,211,68,-0.2994198826674178],[116,211,69,-0.29802225130060034],[116,211,70,-0.29649073899970946],[116,211,71,-0.29482622650549617],[116,211,72,-0.2930297434031608],[116,211,73,-0.29110247073781004],[116,211,74,-0.2890457436372218],[116,211,75,-0.2868610539421167],[116,211,76,-0.2845500528438022],[116,211,77,-0.2821145535292189],[116,211,78,-0.2795565338334176],[116,211,79,-0.2768781388994115],[116,212,64,-0.3030831806276951],[116,212,65,-0.3022235944815175],[116,212,66,-0.3012281639536546],[116,212,67,-0.30009720058476164],[116,212,68,-0.2988311542359242],[116,212,69,-0.29743061567118256],[116,212,70,-0.2958963191474059],[116,212,71,-0.2942291450115717],[116,212,72,-0.2924301223054162],[116,212,73,-0.29050043137752835],[116,212,74,-0.2884414065027283],[116,212,75,-0.28625453850893245],[116,212,76,-0.28394147741136666],[116,212,77,-0.28150403505416177],[116,212,78,-0.2789441877593558],[116,212,79,-0.27626407898325234],[116,213,64,-0.3024513352176583],[116,213,65,-0.3015877052932867],[116,213,66,-0.3005883773647463],[116,213,67,-0.29945366318093625],[116,213,68,-0.29818401264885486],[116,213,69,-0.29678001641222307],[116,213,70,-0.2952424084374282],[116,213,71,-0.29357206860684915],[116,213,72,-0.2917700253195248],[116,213,73,-0.2898374580992401],[116,213,74,-0.28777570020987076],[116,213,75,-0.2855862412781872],[116,213,76,-0.28327072992398117],[116,213,77,-0.2808309763975493],[116,213,78,-0.2782689552245543],[116,213,79,-0.27558680785821954],[116,214,64,-0.30175987956946904],[116,214,65,-0.3008915184644573],[116,214,66,-0.2998876305590956],[116,214,67,-0.29874852785058204],[116,214,68,-0.2974746603042365],[116,214,69,-0.29606661842754867],[116,214,70,-0.2945251358515184],[116,214,71,-0.292851091919342],[116,214,72,-0.29104551428241676],[116,214,73,-0.28910958150372557],[116,214,74,-0.2870446256684558],[116,214,75,-0.28485213500204076],[116,214,76,-0.2825337564954983],[116,214,77,-0.2800912985380901],[116,214,78,-0.27752673355733226],[116,214,79,-0.27484220066630527],[116,215,64,-0.3010054403501241],[116,215,65,-0.30013161956062406],[116,215,66,-0.2991224694705622],[116,215,67,-0.29797830236910394],[116,215,68,-0.2966995682942445],[116,215,69,-0.29528685760156803],[116,215,70,-0.2937409035402637],[116,215,71,-0.29206258483645264],[116,215,72,-0.290252928283795],[116,215,73,-0.2883131113414452],[116,215,74,-0.28624446473920095],[116,215,75,-0.28404847509004283],[116,215,76,-0.2817267875099324],[116,215,77,-0.27928120824489777],[116,215,78,-0.27671370730543254],[116,215,79,-0.27402642110815845],[116,216,64,-0.300184896680444],[116,216,65,-0.29930484922560474],[116,216,66,-0.2982896976389232],[116,216,67,-0.29713975454881913],[116,216,68,-0.29585547008237123],[116,216,69,-0.2944374344280357],[116,216,70,-0.292886380405576],[116,216,71,-0.29120318604326856],[116,216,72,-0.2893888771623414],[116,216,73,-0.2874446299687242],[116,216,74,-0.28537177365194866],[116,216,75,-0.2831717929914006],[116,216,76,-0.2808463309697866],[116,216,77,-0.27839719139384944],[116,216,78,-0.27582634152235475],[116,216,79,-0.2731359147013004],[116,217,64,-0.29929537408375684],[116,217,65,-0.29840829707363836],[116,217,66,-0.2973863700477146],[116,217,67,-0.296229906024566],[116,217,68,-0.29493935523892234],[116,217,69,-0.2935153076975464],[116,217,70,-0.2919584957422837],[116,217,71,-0.29026979662034036],[116,217,72,-0.2884502350617476],[116,217,73,-0.2865009858640917],[116,217,74,-0.2844233764843467],[116,217,75,-0.28221888963801267],[116,217,76,-0.279889165905422],[116,217,77,-0.2774360063452481],[116,217,78,-0.2748613751152379],[116,217,79,-0.2721674021001218],[116,218,64,-0.2983342384911696],[116,218,65,-0.2974392956386447],[116,218,66,-0.29640978701958964],[116,218,67,-0.29524602609726947],[116,218,68,-0.2939484632348871],[116,218,69,-0.2925176882438043],[116,218,70,-0.2909544329388798],[116,218,71,-0.2892595737009773],[116,218,72,-0.28743413404661444],[116,218,73,-0.2854792872048192],[116,218,74,-0.2833963587010401],[116,218,75,-0.2811868289483074],[116,218,76,-0.2788523358455126],[116,218,77,-0.2763946773828343],[116,218,78,-0.2738158142543393],[116,218,79,-0.27111787247770536],[116,219,64,-0.29729909030341295],[116,219,65,-0.29639541438052974],[116,219,66,-0.29535748816917706],[116,219,67,-0.29418562563543993],[116,219,68,-0.29288027729416233],[116,219,69,-0.29144203274864655],[116,219,70,-0.2898716232374088],[116,219,71,-0.2881699241880493],[116,219,72,-0.28633795777820314],[116,219,73,-0.284376895503639],[116,219,74,-0.28228806075335633],[116,219,75,-0.28007293139187217],[116,219,76,-0.2777331423485684],[116,219,77,-0.2752704882141285],[116,219,78,-0.27268692584408927],[116,219,79,-0.26998457696945666],[116,220,64,-0.29618775850922985],[116,220,65,-0.2952744537485076],[116,220,66,-0.2942272464134117],[116,220,67,-0.29304645103458327],[116,220,68,-0.2917325183041066],[116,220,69,-0.2902860376057945],[116,220,70,-0.28870773955246376],[116,220,71,-0.2869984985302618],[116,220,72,-0.2851593352500066],[116,220,73,-0.28319141930561487],[116,220,74,-0.2810960717394567],[116,220,75,-0.2788747676148422],[116,220,76,-0.27652913859549844],[116,220,77,-0.27406097553207487],[116,220,78,-0.27147223105569507],[116,220,79,-0.26876502217851217],[116,221,64,-0.2949982948603559],[116,221,65,-0.29407443930148935],[116,221,66,-0.29301706203938604],[116,221,67,-0.2918264782345673],[116,221,68,-0.2905031387844672],[116,221,69,-0.2890476328433832],[116,221,70,-0.2874606903493435],[116,221,71,-0.2857431845579558],[116,221,72,-0.2838961345831956],[116,221,73,-0.2819207079452143],[116,221,74,-0.27981822312499993],[116,221,75,-0.27759015212610005],[116,221,76,-0.27523812304326334],[116,221,77,-0.2727639226380373],[116,221,78,-0.27016949892134234],[116,221,79,-0.26745696374297745],[116,222,64,-0.29372896810307436],[116,222,65,-0.2927936158855169],[116,222,66,-0.29172515682970346],[116,222,67,-0.29052390679492746],[116,222,68,-0.2891903169146668],[116,222,69,-0.2877249761052473],[116,222,70,-0.2861286135813498],[116,222,71,-0.28440210137841504],[116,222,72,-0.28254645688191593],[116,222,73,-0.28056284536356535],[116,222,74,-0.27845258252430405],[116,222,75,-0.2762171370442674],[116,222,76,-0.2738581331395977],[116,222,77,-0.27137735312612943],[116,222,78,-0.26877673998997764],[116,222,79,-0.2660583999649754],[116,223,64,-0.2923782582663077],[116,223,65,-0.29143044186820977],[116,223,66,-0.2903499682452959],[116,223,67,-0.28913715402807416],[116,223,68,-0.28779245061940917],[116,223,69,-0.2863164466909288],[116,223,70,-0.2847098706861867],[116,223,71,-0.28297359333063865],[116,223,72,-0.28110863014840015],[116,223,73,-0.27911614398585627],[116,223,74,-0.27699744754196354],[116,223,75,-0.27475400590544874],[116,223,76,-0.27238743909876484],[116,223,77,-0.2698995246288378],[116,223,78,-0.2672922000446294],[116,223,79,-0.26456756550146376],[116,224,64,-0.2909448510063083],[116,224,65,-0.2899835834302815],[116,224,66,-0.28889014366577104],[116,224,67,-0.28766484919046376],[116,224,68,-0.2863081517126683],[116,224,69,-0.28482063965446713],[116,224,70,-0.2832030406415288],[116,224,71,-0.2814562239996463],[116,224,72,-0.27958120325796043],[116,224,73,-0.2775791386589448],[116,224,74,-0.2754513396749899],[116,224,75,-0.27319926753179236],[116,224,76,-0.27082453773840787],[116,224,77,-0.2683289226240042],[116,224,78,-0.2657143538813356],[116,224,79,-0.2629829251168906],[116,225,64,-0.28942763200792265],[116,225,65,-0.2884519089141052],[116,225,66,-0.2873445346872584],[116,225,67,-0.28610582773170823],[116,225,68,-0.2847362401000345],[116,225,69,-0.2832363599619473],[116,225,70,-0.28160691407972727],[116,225,71,-0.2798487702902893],[116,225,72,-0.27796293999383215],[116,225,73,-0.27595058064915057],[116,225,74,-0.27381299827544636],[116,225,75,-0.27155164996084413],[116,225,76,-0.2691681463774721],[116,225,77,-0.2666642543031421],[116,225,78,-0.2640418991496515],[116,225,79,-0.26130316749765903],[116,226,64,-0.2878256814423866],[116,226,65,-0.2868344832292806],[116,226,66,-0.28571219147771587],[116,226,67,-0.28445912560158115],[116,226,68,-0.2830757380393736],[116,226,69,-0.28156261670776317],[116,226,70,-0.2799204874616146],[116,226,71,-0.27815021656052197],[116,226,72,-0.27625281314182604],[116,226,73,-0.27422943170018466],[116,226,74,-0.27208137457353354],[116,226,75,-0.26981009443564596],[116,226,76,-0.26741719679515064],[116,226,77,-0.26490444250103895],[116,226,78,-0.2622737502546886],[116,226,79,-0.25952719912835487],[116,227,64,-0.28613826848172585],[116,227,65,-0.2851305623152829],[116,227,66,-0.28399235718977045],[116,227,67,-0.2827239736149926],[116,227,68,-0.2813258644598762],[116,227,69,-0.2797986173896695],[116,227,70,-0.2781429573094797],[116,227,71,-0.27635974881421055],[116,227,72,-0.2744499986448671],[116,227,73,-0.27241485815129596],[116,227,74,-0.2702556257612041],[116,227,75,-0.26797374945565955],[116,227,76,-0.26557082925093456],[116,227,77,-0.2630486196867251],[116,227,78,-0.2604090323207693],[116,227,79,-0.25765413822981864],[116,228,64,-0.2843648458697303],[116,228,65,-0.28333958766115563],[116,228,66,-0.28218446243105977],[116,228,67,-0.2808997918749042],[116,228,68,-0.279486029339465],[116,228,69,-0.27794376224259243],[116,228,70,-0.2762737144991867],[116,228,71,-0.27447674895345076],[116,228,72,-0.2725538698173853],[116,228,73,-0.2705062251155993],[116,228,74,-0.2683351091362728],[116,228,75,-0.26604196488848064],[116,228,76,-0.2636283865657344],[116,228,77,-0.2610961220157776],[116,228,78,-0.258447075216658],[116,228,79,-0.25568330875902745],[116,229,64,-0.28250504454945213],[116,229,65,-0.28146118088220207],[116,229,66,-0.28028811979202517],[116,229,67,-0.2789861842531314],[116,229,68,-0.2775558281405063],[116,229,69,-0.2759976386311467],[116,229,70,-0.27431233861138105],[116,229,71,-0.27250078909033504],[116,229,72,-0.27056399161950795],[116,229,73,-0.2685030907185352],[116,229,74,-0.26631937630696956],[116,229,75,-0.2640142861422934],[116,229,76,-0.2615894082640171],[116,229,77,-0.2590464834439007],[116,229,78,-0.2563874076423204],[116,229,79,-0.2536142344707315],[116,230,64,-0.28055866834731624],[116,230,65,-0.2794951383537624],[116,230,66,-0.27830311843124744],[116,230,67,-0.27698293292912457],[116,230,68,-0.27553503630392084],[116,230,69,-0.27396001550095095],[116,230,70,-0.272258592341876],[116,230,71,-0.27043162591826775],[116,230,72,-0.2684801149911439],[116,230,73,-0.266405200396552],[116,230,74,-0.26420816745702913],[116,230,75,-0.26189044839915554],[116,230,76,-0.259453624777056],[116,230,77,-0.2568994299018822],[116,230,78,-0.25422975127730163],[116,230,79,-0.2514466330409444],[116,231,64,-0.2785256887138048],[116,231,65,-0.2774414259020369],[116,231,66,-0.2762294187182823],[116,231,67,-0.2748899929866877],[116,231,68,-0.2734236038016502],[116,231,69,-0.2718308378887001],[116,231,70,-0.27011241597118074],[116,231,71,-0.26826919514278624],[116,231,72,-0.26630217124592326],[116,231,73,-0.2642124812559715],[116,231,74,-0.2620014056712744],[116,231,75,-0.25967037090907497],[116,231,76,-0.2572209517072507],[116,231,77,-0.2546548735318831],[116,231,78,-0.2519740149906857],[116,231,79,-0.2491804102522408],[116,232,64,-0.2764062395206578],[116,232,65,-0.27530017355190106],[116,232,66,-0.2740671469339421],[116,232,67,-0.2727074870685787],[116,232,68,-0.2712216497474229],[116,232,69,-0.2696102214909374],[116,232,70,-0.2678739218931091],[116,232,71,-0.2660136059718273],[116,232,72,-0.26403026652492734],[116,232,73,-0.2619250364919775],[116,232,74,-0.2596991913216393],[116,232,75,-0.2573541513448184],[116,232,76,-0.2548914841534554],[116,232,77,-0.25231290698499753],[116,232,78,-0.24962028911257017],[116,232,79,-0.24681565424080376],[116,233,64,-0.2742006119146949],[116,233,65,-0.27307167033181057],[116,233,66,-0.27181659002812497],[116,233,67,-0.2704357000890949],[116,233,68,-0.26892945706592497],[116,233,69,-0.2672984472916312],[116,233,70,-0.2655433892025769],[116,233,71,-0.2636651356655466],[116,233,72,-0.2616646763103213],[116,233,73,-0.25954313986783406],[116,233,74,-0.25730179651373075],[116,233,75,-0.2549420602175585],[116,233,76,-0.25246549109742855],[116,233,77,-0.24987379778019592],[116,233,78,-0.2471688397671722],[116,233,79,-0.24435262980533023],[116,234,64,-0.2719092492282077],[116,234,65,-0.27075635913575535],[116,234,66,-0.2694781904351452],[116,234,67,-0.2680750740045962],[116,234,68,-0.2665474672203263],[116,234,69,-0.2648959562485106],[116,234,70,-0.2631212583425401],[116,234,71,-0.2612242241456437],[116,234,72,-0.25920583999883917],[116,234,73,-0.2570672302542891],[116,234,74,-0.2548096595938897],[116,234,75,-0.25243453535331317],[116,234,76,-0.24994340985135122],[116,234,77,-0.2473379827246006],[116,234,78,-0.24462010326751105],[116,234,79,-0.24179177277774722],[116,235,64,-0.26953274194586596],[116,235,65,-0.26835483164219665],[116,235,66,-0.2670525409465021],[116,235,67,-0.26562620264190384],[116,235,68,-0.2640762749981015],[116,235,69,-0.26240334403809185],[116,235,70,-0.26060812581000614],[116,235,71,-0.2586914686641274],[116,235,72,-0.2566543555350548],[116,235,73,-0.25449790622909085],[116,235,74,-0.2522233797166782],[116,235,75,-0.2498321764301079],[116,235,76,-0.24732584056634743],[116,235,77,-0.24470606239502657],[116,235,78,-0.24197468057160443],[116,235,79,-0.23913368445566774],[116,236,64,-0.26707182272824703],[116,236,65,-0.2658678232901027],[116,236,66,-0.26454037964120436],[116,236,67,-0.26308982658469005],[116,236,68,-0.2615166233552595],[116,236,69,-0.2598213558595177],[116,236,70,-0.25800473892124165],[116,236,71,-0.2560676185316392],[116,236,72,-0.25401097410456064],[116,236,73,-0.25183592073674443],[116,236,74,-0.24954371147291854],[116,236,75,-0.24713573957598567],[116,236,76,-0.24461354080213238],[116,236,77,-0.24197879568090896],[116,236,78,-0.23923333180029638],[116,236,79,-0.2363791260967143],[116,237,64,-0.26452736149193945],[116,237,65,-0.2632962083120316],[116,237,66,-0.2619425848735939],[116,237,67,-0.2604668281178051],[116,237,68,-0.2588693983189311],[116,237,69,-0.2571508812971537],[116,237,70,-0.2553119906361202],[116,237,71,-0.25335356990528435],[116,237,72,-0.2512765948869997],[116,237,73,-0.2490821758084495],[116,237,74,-0.24677155957822794],[116,237,75,-0.24434613202780764],[116,237,76,-0.24180742015772994],[116,237,77,-0.23915709438856714],[116,237,78,-0.23639697081666855],[116,237,79,-0.2335290134746506],[116,238,64,-0.2619003605461523],[116,238,65,-0.2606409948241909],[116,238,66,-0.25926017031860404],[116,238,67,-0.257758226229475],[116,238,68,-0.25613562394824263],[116,238,69,-0.2543929492418716],[116,238,70,-0.25253091444153775],[116,238,71,-0.25055036063589287],[116,238,72,-0.2484522598688763],[116,238,73,-0.24623771734214894],[116,238,74,-0.2439079736219738],[116,238,75,-0.2414644068507703],[116,238,76,-0.23890853496318532],[116,238,77,-0.23624201790672272],[116,238,78,-0.23346665986695192],[116,238,79,-0.2305844114972485],[116,239,64,-0.2591919497859616],[116,239,65,-0.25790331997361227],[116,239,66,-0.2564942800745834],[116,239,67,-0.2549651716715027],[116,239,68,-0.25331645735361463],[116,239,69,-0.25154872287115804],[116,239,70,-0.24966267929403752],[116,239,71,-0.24765916517485898],[116,239,72,-0.2455391487162899],[116,239,73,-0.24330372994282845],[116,239,74,-0.2409541428767955],[116,239,75,-0.2384917577187865],[116,239,76,-0.2359180830324199],[116,239,77,-0.2332347679334249],[116,239,78,-0.2304436042830924],[116,239,79,-0.2275465288860361],[116,240,64,-0.25640338194208534],[116,240,65,-0.2550844451423224],[116,240,66,-0.25364618382357706],[116,240,67,-0.25208894207736066],[116,240,68,-0.25041318377436894],[116,240,69,-0.24861949468793176],[116,240,70,-0.24670858462152712],[116,240,71,-0.2446812895404321],[116,240,72,-0.2425385737074719],[116,240,73,-0.24028153182294965],[116,240,74,-0.23791139116857118],[116,240,75,-0.2354295137556046],[116,240,76,-0.23283739847710494],[116,240,77,-0.2301366832642554],[116,240,78,-0.22732914724684028],[116,240,79,-0.2244167129178034],[116,241,64,-0.2535360278872739],[116,241,65,-0.25218575120860676],[116,241,66,-0.2507172720491505],[116,241,67,-0.24913093713826528],[116,241,68,-0.2474272117147367],[116,241,69,-0.24560668161816424],[116,241,70,-0.2436700553841794],[116,241,71,-0.24161816634356215],[116,241,72,-0.23945197472522006],[116,241,73,-0.2371725697631114],[116,241,74,-0.23478117180692637],[116,241,75,-0.2322791344367663],[116,241,76,-0.22966794658165235],[116,241,77,-0.22694923464191408],[116,241,78,-0.2241247646154706],[116,241,79,-0.22119644422796558],[116,242,64,-0.25059137199918957],[116,242,65,-0.24920873386523312],[116,242,66,-0.24770905131163012],[116,242,67,-0.24609267383710454],[116,242,68,-0.24436006813813738],[116,242,69,-0.24251182016716932],[116,242,70,-0.24054863719438624],[116,242,71,-0.23847134987315843],[116,242,72,-0.23628091430909615],[116,242,73,-0.23397841413280385],[116,242,74,-0.23156506257614573],[116,242,75,-0.22904220455226432],[116,242,76,-0.2264113187391834],[116,242,77,-0.22367401966704314],[116,242,78,-0.22083205980898546],[116,242,79,-0.21788733167564245],[116,243,64,-0.247571007579926],[116,243,65,-0.24615499899479],[116,243,66,-0.24462313958091353],[116,243,67,-0.24297578174037038],[116,243,68,-0.24121339371988293],[116,243,69,-0.23933656163471972],[116,243,70,-0.23734599149592173],[116,243,71,-0.2352425112409251],[116,243,72,-0.2330270727675472],[116,243,73,-0.23070075397141554],[116,243,74,-0.22826476078665325],[116,243,75,-0.22572042923006286],[116,243,76,-0.22306922744863944],[116,243,77,-0.22031275777046033],[116,243,78,-0.2174527587589712],[116,243,79,-0.2144911072706196],[116,244,64,-0.24447663233210137],[116,244,65,-0.24302625810207135],[116,244,66,-0.2414612616267816],[116,244,67,-0.23978199834803127],[116,244,68,-0.2379889381582383],[116,244,69,-0.23608266738892192],[116,244,70,-0.2340638908022471],[116,244,71,-0.23193343358570295],[116,244,72,-0.22969224334987948],[116,244,73,-0.22734139212942384],[116,244,74,-0.22488207838698748],[116,244,75,-0.2223156290204099],[116,244,76,-0.2196435013729645],[116,244,77,-0.2168672852467204],[116,244,78,-0.21398870491903332],[116,244,79,-0.21100962116212163],[116,245,64,-0.24131004389144217],[116,245,65,-0.2398243238034239],[116,245,66,-0.23822524446662652],[116,245,67,-0.23651316450125648],[116,245,68,-0.23468855554375456],[116,245,69,-0.2327520041987612],[116,245,70,-0.23070421399386665],[116,245,71,-0.2285460073372263],[116,245,72,-0.2262783274779958],[116,245,73,-0.22390224046967788],[116,245,74,-0.22141893713618177],[116,245,75,-0.21882973504084857],[116,245,76,-0.2161360804582657],[116,245,77,-0.21333955034892194],[116,245,78,-0.2104418543367199],[116,245,79,-0.20744483668929992],[116,246,64,-0.2380731354160116],[116,246,65,-0.23655110537321478],[116,246,66,-0.23491701287075661],[116,246,67,-0.23317121984815437],[116,246,68,-0.23131419978703327],[116,246,69,-0.22934653962548013],[116,246,70,-0.22726894167490197],[116,246,71,-0.2250822255394631],[116,246,72,-0.2227873300380634],[116,246,73,-0.220385315128943],[116,246,74,-0.2178773638367183],[116,246,75,-0.2152647841821007],[116,246,76,-0.21254901111412328],[116,246,77,-0.20973160844492345],[116,246,78,-0.20681427078710246],[116,246,79,-0.2037988254936126],[116,247,64,-0.23476789123201325],[116,247,65,-0.23320860434734536],[116,247,66,-0.23153858492520174],[116,247,67,-0.2297581983674486],[116,247,68,-0.2278679201048469],[116,247,69,-0.22586833747271529],[116,247,70,-0.22376015158880513],[116,247,71,-0.22154417923346137],[116,247,72,-0.21922135473203463],[116,247,73,-0.21679273183962722],[116,247,74,-0.21425948562797792],[116,247,75,-0.21162291437473968],[116,247,76,-0.20888444145497098],[116,247,77,-0.20604561723489434],[116,247,78,-0.20310812096793784],[116,247,79,-0.2000737626930128],[116,248,64,-0.23139638253607708],[116,248,65,-0.22979891018372245],[116,248,66,-0.22809206765193069],[116,248,67,-0.2262762239500008],[116,248,68,-0.22435185656452594],[116,248,69,-0.22231955329529796],[116,248,70,-0.2201800140931195],[116,248,71,-0.2179340528996042],[116,248,72,-0.2155825994889241],[116,248,73,-0.21312670131159406],[116,248,74,-0.21056752534008905],[116,248,75,-0.20790635991655826],[116,248,76,-0.20514461660244931],[116,248,77,-0.20228383203009948],[116,248,78,-0.19932566975630828],[116,248,79,-0.19627192211784739],[116,249,64,-0.22796076315419944],[116,249,65,-0.2263241959798553],[116,249,66,-0.2245796526866496],[116,249,67,-0.222727506038353],[116,249,68,-0.22076823568678328],[116,249,69,-0.21870242996689448],[116,249,70,-0.21653078769346346],[116,249,71,-0.2142541199594553],[116,249,72,-0.2118733519360243],[116,249,73,-0.20938952467424354],[116,249,74,-0.2068037969083556],[116,249,75,-0.2041174468608129],[116,249,76,-0.2013318740489144],[116,249,77,-0.19844860109310258],[116,249,78,-0.19546927552692972],[116,249,79,-0.19239567160865334],[116,250,64,-0.22446326535725458],[116,250,65,-0.22278671424749757],[116,250,66,-0.2210036120141008],[116,250,67,-0.2191143353242081],[116,250,68,-0.2171193661068953],[116,250,69,-0.2150192933064039],[116,250,70,-0.21281481463665297],[116,250,71,-0.21050673833710842],[116,250,72,-0.20809598492997072],[116,250,73,-0.20558358897877393],[116,250,74,-0.2029707008481818],[116,250,75,-0.2002585884652588],[116,250,76,-0.19744863908201682],[116,250,77,-0.19454236103930256],[116,250,78,-0.19154138553203737],[116,250,79,-0.18844746837576254],[116,251,64,-0.2209061957329856],[116,251,65,-0.21918879274424385],[116,251,66,-0.21736629376076977],[116,251,67,-0.21543907950375096],[116,251,68,-0.2134076342941419],[116,251,69,-0.21127254776301574],[116,251,70,-0.20903451656286676],[116,251,71,-0.20669434607994153],[116,251,72,-0.20425295214756156],[116,251,73,-0.20171136276052604],[116,251,74,-0.19907071979038804],[116,251,75,-0.19633228070187247],[116,251,76,-0.19349742027024652],[116,251,77,-0.19056763229969909],[116,251,78,-0.18754453134274574],[116,251,79,-0.18442985442061133],[116,252,64,-0.21729193111465395],[116,252,65,-0.215532830362254],[116,252,66,-0.21367011804517622],[116,252,67,-0.21170417909099581],[116,252,68,-0.2096355003296922],[116,252,69,-0.2074646721601111],[116,252,70,-0.2051923902170386],[116,252,71,-0.20281945703896764],[116,252,72,-0.20034678373651782],[116,252,73,-0.19777539166160008],[116,252,74,-0.19510641407711482],[116,252,75,-0.19234109782745867],[116,252,76,-0.18948080500964182],[116,252,77,-0.1865270146450816],[116,252,78,-0.18348132435208153],[116,252,79,-0.18034545201895258],[116,253,64,-0.21362291456625915],[116,253,65,-0.21182129307402658],[116,253,66,-0.2099175728856688],[116,253,67,-0.20791214328906943],[116,253,68,-0.20580549374284424],[116,253,69,-0.20359821549792245],[116,253,70,-0.2012910032193908],[116,253,71,-0.19888465660868687],[116,253,72,-0.19638008202609636],[116,253,73,-0.19377829411365255],[116,253,74,-0.19108041741822068],[116,253,75,-0.1882876880150457],[116,253,76,-0.18540145513156503],[116,253,77,-0.18242318277155156],[116,253,78,-0.17935445133959427],[116,253,79,-0.17619695926587764],[116,254,64,-0.20990165142423606],[116,254,65,-0.20805670993511594],[116,254,66,-0.20611121016561806],[116,254,67,-0.20406554591933213],[116,254,68,-0.20192020940552102],[116,254,69,-0.1996757928148467],[116,254,70,-0.19733298989500286],[116,254,71,-0.19489259752634136],[116,254,72,-0.19235551729744915],[116,254,73,-0.18972275708077208],[116,254,74,-0.18699543260806717],[116,254,75,-0.18417476904596475],[116,254,76,-0.18126210257144215],[116,254,77,-0.17825888194726813],[116,254,78,-0.17516667009743614],[116,254,79,-0.17198714568253604],[116,255,64,-0.20613070539581146],[116,255,65,-0.2042416691439895],[116,255,66,-0.2022536416562044],[116,255,67,-0.2001670214085286],[116,255,68,-0.1979823034852144],[116,255,69,-0.195700081107609],[116,255,70,-0.19332104716261334],[116,255,71,-0.19084599573076821],[116,255,72,-0.1882758236139307],[116,255,73,-0.1856115318626314],[116,255,74,-0.1828542273028967],[116,255,75,-0.18000512406281788],[116,255,76,-0.17706554509866734],[116,255,77,-0.1740369237206243],[116,255,78,-0.17092080511812024],[116,255,79,-0.16771884788476488],[116,256,64,-0.2023126947139351],[116,256,65,-0.20037881415892633],[116,256,66,-0.1983475350967035],[116,256,67,-0.1962192608338751],[116,256,68,-0.19399448945628528],[116,256,69,-0.19167381531018302],[116,256,70,-0.18925793048256212],[116,256,71,-0.18674762628075736],[116,256,72,-0.1841437947112562],[116,256,73,-0.1814474299578216],[116,256,74,-0.17865962985870432],[116,256,75,-0.17578159738323407],[116,256,76,-0.17281464210758046],[116,256,77,-0.1697601816897537],[116,256,78,-0.1666197433438542],[116,256,79,-0.16339496531352582],[116,257,64,-0.19845028834867973],[116,257,65,-0.1964708398718622],[116,257,66,-0.194395610332171],[116,257,67,-0.19222500802598014],[116,257,68,-0.18995953416951444],[116,257,69,-0.1875997843313606],[116,257,70,-0.18514644986376455],[116,257,71,-0.18260031933280535],[116,257,72,-0.17996227994740266],[116,257,73,-0.1772333189872567],[116,257,74,-0.17441452522949263],[116,257,75,-0.1715070903743059],[116,257,76,-0.16851231046939597],[116,257,77,-0.16543158733325813],[116,257,78,-0.16226642997734209],[116,257,79,-0.15901845602703651],[116,258,64,-0.1945462022753084],[116,258,65,-0.192520488839372],[116,258,66,-0.19040063550872233],[116,258,67,-0.18818705572979844],[116,258,68,-0.18588025398010655],[116,258,69,-0.18348082715117753],[116,258,70,-0.18098946592992238],[116,258,71,-0.1784069561784718],[116,258,72,-0.17573418031246213],[116,258,73,-0.17297211867786355],[116,258,74,-0.17012185092612286],[116,258,75,-0.1671845573879176],[116,258,76,-0.16416152044531007],[116,258,77,-0.16105412590236828],[116,258,78,-0.1578638643542657],[116,258,79,-0.15459233255481603],[116,259,64,-0.19060319579891327],[116,259,65,-0.18853054757070004],[116,259,66,-0.18636542332631245],[116,259,67,-0.18410824182352203],[116,259,68,-0.18175951093404857],[116,259,69,-0.1793198289760939],[116,259,70,-0.17678988604487483],[116,259,71,-0.1741704653412418],[116,259,72,-0.1714624444983453],[116,259,73,-0.16866679690644992],[116,259,74,-0.16578459303566007],[116,259,75,-0.1628170017568628],[116,259,76,-0.15976529166067122],[116,259,77,-0.15663083237443703],[116,259,78,-0.15341509587734414],[116,259,79,-0.15011965781353792],[116,260,64,-0.18662406793552144],[116,260,65,-0.18450384287272792],[116,260,66,-0.18229282734890995],[116,260,67,-0.17999144559530067],[116,260,68,-0.17760020901271678],[116,260,69,-0.17511971745282218],[116,260,70,-0.17255066049697776],[116,260,71,-0.1698938187327781],[116,260,72,-0.16715006502822483],[116,260,73,-0.1643203658036424],[116,260,74,-0.16140578230109814],[116,260,75,-0.15840747185163745],[116,260,76,-0.1553266891401075],[116,260,77,-0.15216478746764794],[116,260,78,-0.1489232200118546],[116,260,79,-0.1456035410845733],[116,261,64,-0.18261165384987155],[116,261,65,-0.18044323825208752],[116,261,66,-0.17818573837227025],[116,261,67,-0.17583958407799943],[116,261,68,-0.17340529043594066],[116,261,69,-0.1708834589410122],[116,261,70,-0.16827477874272373],[116,261,71,-0.16558002786878412],[116,261,72,-0.16280007444593458],[116,261,73,-0.15993587791810948],[116,261,74,-0.15698849026168488],[116,261,75,-0.1539590571981292],[116,261,76,-0.150848819403828],[116,261,77,-0.14765911371716178],[116,261,78,-0.14439137434283955],[116,261,79,-0.1410471340534517],[116,262,64,-0.17856882134975982],[116,262,65,-0.176351630374317],[116,262,66,-0.1740470808492086],[116,262,67,-0.17165560844189298],[116,262,68,-0.1691777320234194],[116,262,69,-0.16661405484469438],[116,262,70,-0.16396526570950232],[116,262,71,-0.16123214014436643],[116,262,72,-0.1584155415652182],[116,262,73,-0.15551642244096725],[116,262,74,-0.15253582545374011],[116,262,75,-0.1494748846560956],[116,262,76,-0.14633482662499403],[116,262,77,-0.143116971612595],[116,262,78,-0.13982273469388995],[116,262,79,-0.13645362691113067],[116,263,64,-0.1744984674368532],[116,263,65,-0.1722319455799562],[116,263,66,-0.16987980937226366],[116,263,67,-0.16744250044518622],[116,263,68,-0.16492054161438507],[116,263,69,-0.16231453800236373],[116,263,70,-0.1596251781573837],[116,263,71,-0.15685323516879046],[116,263,72,-0.15399956777871449],[116,263,73,-0.15106512149024748],[116,263,74,-0.14805092967185068],[116,263,75,-0.14495811465831443],[116,263,76,-0.14178788884803795],[116,263,77,-0.13854155579670896],[116,263,78,-0.13522051130738688],[116,263,79,-0.13182624451694985],[116,264,64,-0.17040351491418504],[116,264,65,-0.16808713645779888],[116,264,66,-0.16568690521397705],[116,264,67,-0.16320326894258802],[116,264,68,-0.16063675454573784],[116,264,69,-0.15798796913593943],[116,264,70,-0.155257601100162],[116,264,71,-0.15244642115985668],[116,264,72,-0.1495552834269156],[116,264,73,-0.14658512645567057],[116,264,74,-0.14353697429068246],[116,264,75,-0.14041193751064662],[116,264,76,-0.1372112142681775],[116,264,77,-0.13393609132555706],[116,264,78,-0.1305879450864459],[116,264,79,-0.12716824262352294],[116,265,64,-0.1662869090501522],[116,265,65,-0.16392017847511786],[116,265,66,-0.1614713729245983],[116,265,67,-0.1589409464517466],[116,265,68,-0.15632943018846107],[116,265,69,-0.15363743335840507],[116,265,70,-0.15086564428545957],[116,265,71,-0.14801483139770616],[116,265,72,-0.1450858442268972],[116,265,73,-0.1420796144035204],[116,265,74,-0.13899715664720708],[116,265,75,-0.1358395697528102],[116,265,76,-0.13260803757191764],[116,265,77,-0.12930382998988038],[116,265,78,-0.1259283038983588],[116,265,79,-0.12248290416335267],[116,266,64,-0.16215161429915037],[116,266,65,-0.15973406666500484],[116,266,66,-0.1572362369873601],[116,266,67,-0.15465858577769342],[116,266,68,-0.1520016485424625],[116,266,69,-0.14926603674027583],[116,266,70,-0.14645243873404312],[116,266,71,-0.14356162073820072],[116,266,72,-0.1405944277609733],[116,266,73,-0.13755178454177414],[116,266,74,-0.13443469648349582],[116,266,75,-0.13124425058001787],[116,266,76,-0.12798161633869615],[116,266,77,-0.12464804669791207],[116,266,78,-0.121244878939689],[116,266,79,-0.11777353559733428],[116,267,64,-0.1580006110786618],[116,267,65,-0.15553181237063207],[116,267,66,-0.1529845385311292],[116,267,67,-0.15035925669509775],[116,267,68,-0.1476565068896457],[116,267,69,-0.1448769029346949],[116,267,70,-0.14202113333814947],[116,267,71,-0.13908996218567865],[116,267,72,-0.13608423002507297],[116,267,73,-0.13300485474528217],[116,267,74,-0.12985283244987672],[116,267,75,-0.12662923832527112],[116,267,76,-0.12333522750346382],[116,267,77,-0.1199720359193776],[116,267,78,-0.11654098116280676],[116,267,79,-0.11304346332492737],[116,268,64,-0.15383689260301836],[116,268,65,-0.15131644004666422],[116,268,66,-0.14871933210066518],[116,268,67,-0.14604604268856675],[116,268,68,-0.14329711650544508],[116,268,69,-0.14047316986139474],[116,268,70,-0.1375748915190615],[116,268,71,-0.13460304352532376],[116,268,72,-0.13155846203707827],[116,268,73,-0.1284420581412405],[116,268,74,-0.12525481866869753],[116,268,75,-0.12199780700255808],[116,268,76,-0.11867216388044799],[116,268,77,-0.11527910819094023],[116,268,78,-0.11181993776412119],[116,268,79,-0.10829603015625361],[116,269,64,-0.14966346177373296],[116,269,65,-0.1470909841177136],[116,269,66,-0.14444368248437472],[116,269,67,-0.14172203775087683],[116,269,68,-0.13892659942871244],[116,269,69,-0.13605798644941175],[116,269,70,-0.13311688794381815],[116,269,71,-0.13010406401503688],[116,269,72,-0.12702034650501176],[116,269,73,-0.12386663975484291],[116,269,74,-0.12064392135857993],[116,269,75,-0.11735324291083793],[116,269,76,-0.1139957307479827],[116,269,77,-0.11057258668297693],[116,269,78,-0.10708508873388473],[116,269,79,-0.103534591846],[116,270,64,-0.14548332812629478],[116,270,65,-0.1428584858937288],[116,270,66,-0.14016066159945523],[116,270,67,-0.1373903432390331],[116,270,68,-0.13454808528984696],[116,270,69,-0.1316345094384423],[116,270,70,-0.12865030530094884],[116,270,71,-0.12559623113669255],[116,270,72,-0.12247311455495546],[116,270,73,-0.11928185321499385],[116,270,74,-0.11602341551904805],[116,270,75,-0.11269884129869434],[116,270,76,-0.10930924249428448],[116,270,77,-0.10585580382756105],[116,270,78,-0.10233978346745243],[116,270,79,-0.0987625136890059],[116,271,64,-0.1412995048336395],[116,271,65,-0.13862199054253455],[116,271,66,-0.13587334543464502],[116,271,67,-0.13305406478836945],[116,271,68,-0.13016470819738696],[116,271,69,-0.1272059002390638],[116,271,70,-0.12417833113545579],[116,271,71,-0.12108275740701174],[116,271,72,-0.11792000251893514],[116,271,73,-0.11469095752031594],[116,271,74,-0.11139658167576316],[116,271,75,-0.1080379030898928],[116,271,76,-0.10461601932441228],[116,271,77,-0.10113209800789374],[116,271,78,-0.09758737743823565],[116,271,79,-0.09398316717777488],[116,272,64,-0.1371150057661894],[116,272,65,-0.13438454411941397],[116,272,66,-0.13158481105047076],[116,272,67,-0.12871630928458466],[116,272,68,-0.12577960368295654],[116,272,69,-0.12277532185170964],[116,272,70,-0.11970415474293367],[116,272,71,-0.11656685724793553],[116,272,72,-0.11336424878265161],[116,272,73,-0.11009721386533611],[116,272,74,-0.10676670268625216],[116,272,75,-0.10337373166972524],[116,272,76,-0.09991938402829509],[116,272,77,-0.09640481030906328],[116,272,78,-0.09283122893223084],[116,272,79,-0.089199926721793],[116,273,64,-0.13293284260835558],[116,273,65,-0.13014919065362462],[116,273,66,-0.12729813363688264],[116,273,67,-0.12438018189360156],[116,273,68,-0.12139590570445147],[116,273,69,-0.11834593584428393],[116,273,70,-0.11523096412271],[116,273,71,-0.112051743916384],[116,273,72,-0.10880909069294442],[116,273,73,-0.10550388252673232],[116,273,74,-0.10213706060600647],[116,273,75,-0.09870962973202191],[116,273,76,-0.09522265880970315],[116,273,77,-0.09167728133001185],[116,273,78,-0.08807469584400174],[116,273,79,-0.08441616642852956],[116,274,64,-0.12875602203171604],[116,274,65,-0.12591896929206547],[116,274,66,-0.12301638362849637],[116,274,67,-0.12004878314947126],[116,274,68,-0.11701674370769088],[116,274,69,-0.11392089938864297],[116,274,70,-0.11076194299023645],[116,274,71,-0.10754062649363128],[116,274,72,-0.1042577615252196],[116,274,73,-0.10091421980987542],[116,274,74,-0.0975109336151907],[116,274,75,-0.09404889618706902],[116,274,76,-0.09052916217640561],[116,274,77,-0.08695284805695075],[116,274,78,-0.0833211325343558],[116,274,79,-0.07963525694636381],[116,275,64,-0.12458754292476365],[116,275,65,-0.12169691149998685],[116,275,66,-0.11874262387733375],[116,275,67,-0.11572520610021103],[116,275,68,-0.11264523974642054],[116,275,69,-0.10950336235583003],[116,275,70,-0.10630026784861529],[116,275,71,-0.10303670693418215],[116,275,72,-0.09971348751072678],[116,275,73,-0.0963314750555499],[116,275,74,-0.09289159300584199],[116,275,75,-0.0893948231303131],[116,275,76,-0.08584220589139357],[116,275,77,-0.08223484079810467],[116,275,78,-0.07857388674959703],[116,275,79,-0.07486056236931848],[116,276,64,-0.12043039367911518],[116,276,65,-0.11748603831863363],[116,276,66,-0.11447990688294896],[116,276,67,-0.11141253351146568],[116,276,68,-0.10828450566055764],[116,276,69,-0.10509646446994969],[116,276,70,-0.10184910511914824],[116,276,71,-0.09854317717403327],[116,276,72,-0.0951794849235662],[116,276,73,-0.09175888770673435],[116,276,74,-0.08828230022944239],[116,276,75,-0.08475069287173187],[116,276,76,-0.08116509198504851],[116,276,77,-0.07752658017966191],[116,276,78,-0.07383629660222973],[116,276,79,-0.07009543720347383],[116,277,64,-0.1162875495323984],[116,277,65,-0.11328935768003984],[116,277,66,-0.11023127208016381],[116,277,67,-0.10711383512821404],[116,277,68,-0.10393764031290015],[116,277,69,-0.10070333252090863],[116,277,70,-0.09741160833113482],[116,277,71,-0.09406321629855058],[116,277,72,-0.09065895722766176],[116,277,73,-0.08719968443567777],[116,277,74,-0.0836863040050993],[116,277,75,-0.0801197750261114],[116,277,76,-0.07650110982849645],[116,277,77,-0.07283137420317415],[116,277,78,-0.06911168761335978],[116,277,79,-0.06534322339530951],[116,278,64,-0.11216196996770628],[116,278,65,-0.10910986177886517],[116,278,66,-0.10599974318429911],[116,278,67,-0.102832164994409],[116,278,68,-0.09960772688418823],[116,278,69,-0.09632707763591047],[116,278,70,-0.09299091537080728],[116,278,71,-0.0895999877698484],[116,278,72,-0.08615509228358165],[116,278,73,-0.08265707633115393],[116,278,74,-0.07910683748821729],[116,278,75,-0.07550532366411011],[116,278,76,-0.07185353326802724],[116,278,77,-0.06815251536428396],[116,278,78,-0.06440336981666928],[116,278,79,-0.060607247421852084],[116,279,64,-0.10805659616951507],[116,279,65,-0.10495052450116632],[116,279,66,-0.1017883255937942],[116,279,67,-0.09857055883044158],[116,279,68,-0.09529783022640692],[116,279,69,-0.09197079260958979],[116,279,70,-0.08859014578928642],[116,279,71,-0.08515663671355267],[116,279,72,-0.08167105961509025],[116,279,73,-0.07813425614577668],[116,279,74,-0.07454711549954252],[116,279,75,-0.07091057452398963],[116,279,76,-0.06722561782045966],[116,279,77,-0.06349327783266046],[116,279,78,-0.059714634923844545],[116,279,79,-0.05589081744250424],[116,280,64,-0.10397434853627835],[116,280,65,-0.10081429891031946],[116,280,66,-0.0976000038504346],[116,280,67,-0.09433203146864999],[116,280,68,-0.09101099427455461],[116,280,69,-0.08763754929301382],[116,280,70,-0.0842123981697887],[116,280,71,-0.08073628726518256],[116,280,72,-0.07721000773566672],[116,280,73,-0.07363439560361074],[116,280,74,-0.07001033181481647],[116,280,75,-0.0663387422842518],[116,280,76,-0.06262059792969282],[116,280,77,-0.05885691469338267],[116,280,78,-0.0550487535516998],[116,280,79,-0.0511972205128014],[116,281,64,-0.09991812424958846],[116,281,65,-0.09670411478998192],[116,281,66,-0.09343773915707376],[116,281,67,-0.09011957434676049],[116,281,68,-0.08675023951676025],[116,281,69,-0.08333039604143411],[116,281,70,-0.07986074755396722],[116,281,71,-0.07634203997602917],[116,281,72,-0.07277506153486712],[116,281,73,-0.0691606427679588],[116,281,74,-0.06549965651491846],[116,281,75,-0.061793017897060265],[116,281,76,-0.05804168428432016],[116,281,77,-0.054246655249650555],[116,281,78,-0.05040897251087467],[116,281,79,-0.04652971985997206],[116,282,64,-0.09589079489980329],[116,282,65,-0.09262287624399351],[116,282,66,-0.08930446695274702],[116,282,67,-0.08593615305915586],[116,282,68,-0.08251856052264689],[116,282,69,-0.07905235522068355],[116,282,70,-0.07553824292727729],[116,282,71,-0.07197696927842401],[116,282,72,-0.0683693197244245],[116,282,73,-0.06471611946921269],[116,282,74,-0.0610182333963844],[116,282,75,-0.05727656598233305],[116,282,76,-0.05349206119619365],[116,282,77,-0.04966570238670548],[116,282,78,-0.045798512155986126],[116,282,79,-0.041891552220183204],[116,283,64,-0.09189520416834729],[116,283,65,-0.08857345935342437],[116,283,66,-0.08520309454538971],[116,283,67,-0.08178470496618523],[116,283,68,-0.07831892353015557],[116,283,69,-0.07480642077243566],[116,283,70,-0.07124790476358989],[116,283,71,-0.06764412101062123],[116,283,72,-0.06399585234430882],[116,283,73,-0.06030391879299768],[116,283,74,-0.05656917744253126],[116,283,75,-0.052792522282738286],[116,283,76,-0.04897488404016942],[116,283,77,-0.04511722999719775],[116,283,78,-0.04122056379747557],[116,283,79,-0.037285925237711126],[116,284,64,-0.08793416556658035],[116,284,65,-0.08455870989066522],[116,284,66,-0.0811364988020517],[116,284,67,-0.0776681368614075],[116,284,68,-0.0741542640907224],[116,284,69,-0.07059555583821703],[116,284,70,-0.0669927226289403],[116,284,71,-0.06334651000117947],[116,284,72,-0.05965769832863527],[116,284,73,-0.055927102628492986],[116,284,74,-0.052155572355072344],[116,284,75,-0.04834399117947513],[116,284,76,-0.044493276754919375],[116,284,77,-0.040604380467880896],[116,284,78,-0.03667828717502747],[116,284,79,-0.03271601492591525],[116,285,64,-0.08401046023113315],[116,285,65,-0.08058144109045526],[116,285,66,-0.07710752389650374],[116,285,67,-0.07358932269666243],[116,285,68,-0.07002748477269943],[116,285,69,-0.06642269044206339],[116,285,70,-0.06277565284430256],[116,285,71,-0.05908711771273317],[116,285,72,-0.05535786313130803],[116,285,73,-0.05158869927681853],[116,285,74,-0.047780468146108895],[116,285,75,-0.04393404326872613],[116,285,76,-0.04005032940469197],[116,285,77,-0.03613026222751764],[116,285,78,-0.03217480799244707],[116,285,79,-0.028184963189899326],[116,286,64,-0.08012683477591562],[116,286,65,-0.07664443147805838],[116,286,66,-0.0731189791144479],[116,286,67,-0.06955110136518314],[116,286,68,-0.0659414529232375],[116,286,69,-0.06229071923203963],[116,286,70,-0.058599616207610145],[116,286,71,-0.05486888994537703],[116,286,72,-0.05109931641162546],[116,286,73,-0.04729170111971284],[116,286,74,-0.04344687879072695],[116,286,75,-0.03956571299901293],[116,286,76,-0.03564909580225492],[116,286,77,-0.031697947356230716],[116,286,78,-0.027713215514228978],[116,286,79,-0.023695875411096273],[116,287,64,-0.07628599920069198],[116,287,65,-0.0727504227544784],[116,287,66,-0.06917363671622229],[116,287,67,-0.06555627454264024],[116,287,68,-0.0618989984885186],[116,287,69,-0.05820249928050997],[116,287,70,-0.05446749577491097],[116,287,71,-0.050694734599548874],[116,287,72,-0.046884989779730796],[116,287,73,-0.04303906234838681],[116,287,74,-0.03915777994008304],[116,287,75,-0.03524199636933495],[116,287,76,-0.03129259119290109],[116,287,77,-0.027310469256180303],[116,287,78,-0.023296560223698776],[116,287,79,-0.019251818093655365],[116,288,64,-0.07249062485612606],[116,288,65,-0.06890211773861771],[116,288,66,-0.06527422985690273],[116,288,67,-0.061607604586017356],[116,288,68,-0.057902911892238645],[116,288,69,-0.05416084794305659],[116,288,70,-0.05038213470055167],[116,288,71,-0.04656751949830615],[116,288,72,-0.042717774601803316],[116,288,73,-0.03883369675244644],[116,288,74,-0.034916106694871024],[116,288,75,-0.03096584868798416],[116,288,76,-0.026983789999408758],[116,288,77,-0.022970820383456436],[116,288,78,-0.01892785154261492],[116,288,79,-0.014855816572520109],[116,289,64,-0.06874334246550695],[116,289,65,-0.06510217836658944],[116,289,66,-0.061423450564014215],[116,289,67,-0.05770781249053594],[116,289,68,-0.05395594197255715],[116,289,69,-0.05016854077626895],[116,289,70,-0.04634633413661668],[116,289,71,-0.04249007026922283],[116,289,72,-0.03860051986521776],[116,289,73,-0.034678475569115796],[116,289,74,-0.030724751439401593],[116,289,75,-0.026740182392270356],[116,289,76,-0.022725623628191333],[116,289,77,-0.018681950041424755],[116,289,78,-0.014610055612472722],[116,289,79,-0.010510852783438662],[116,290,64,-0.06504674020297774],[116,290,65,-0.06135322374800575],[116,290,66,-0.05762394777267296],[116,290,67,-0.053859575904445345],[116,290,68,-0.05006079397733201],[116,290,69,-0.04622830951421647],[116,290,70,-0.042362851191432765],[116,290,71,-0.03846516828571592],[116,290,72,-0.034536030103480775],[116,290,73,-0.030576225392564965],[116,290,74,-0.026586561736100633],[116,290,75,-0.02256786492895904],[116,290,76,-0.01852097833643923],[116,290,77,-0.014446762235326427],[116,290,78,-0.010346093137305973],[116,290,79,-0.00621986309470296],[116,291,64,-0.061403361828396674],[116,291,65,-0.05765782827937327],[116,291,66,-0.0538783254182906],[116,291,67,-0.050065527201813426],[116,291,68,-0.046220127617772416],[116,291,69,-0.0423428401037419],[116,291,70,-0.038434396947277044],[116,291,71,-0.034495548667942244],[116,291,72,-0.03052706338108438],[116,291,73,-0.02652972614348703],[116,291,74,-0.022504338280567665],[116,291,75,-0.01845171669556739],[116,291,76,-0.014372693160398131],[116,291,77,-0.010268113588277922],[116,291,78,-0.006138837288137161],[116,291,79,-0.001985736200766447],[116,292,64,-0.05781570487866253],[116,292,65,-0.05401851981442379],[116,292,66,-0.050189140586668124],[116,292,67,-0.04632825161314144],[116,292,68,-0.04243655518033512],[116,292,69,-0.038514770798396075],[116,292,70,-0.034563634537108395],[116,292,71,-0.03058389834308098],[116,292,72,-0.026576329338092897],[116,292,73,-0.02254170909873568],[116,292,74,-0.018480832917009388],[116,292,75,-0.014394509042327919],[116,292,76,-0.010283557904594398],[116,292,77,-0.00614881131847872],[116,292,78,-0.0019911116688798025],[116,292,79,0.002188688922455856],[116,293,64,-0.0542862189157054],[116,293,65,-0.05043777789158471],[116,293,66,-0.046558901721685],[116,293,67,-0.04265028541401292],[116,293,68,-0.038712639697072976],[116,293,69,-0.034746690311227596],[116,293,70,-0.030753177280537503],[116,293,71,-0.026732854165221115],[116,293,72,-0.022686487294682034],[116,293,73,-0.01861485498124761],[116,293,74,-0.014518746714269115],[116,293,75,-0.010398962335046821],[116,293,76,-0.006256311192233868],[116,293,77,-0.002091611277856148],[116,293,78,0.00209431165607335],[116,293,79,0.006300625000370819],[116,294,64,-0.05081730383104291],[116,294,65,-0.04691803201848836],[116,294,66,-0.04299006689048297],[116,294,67,-0.0390341141716731],[116,294,68,-0.03505089317433355],[116,294,69,-0.031041136026322677],[116,294,70,-0.02700558687892962],[116,294,71,-0.022945001094746884],[116,294,72,-0.01886014441552393],[116,294,73,-0.014751792110139272],[116,294,74,-0.010620728102345059],[116,294,75,-0.006467744078745091],[116,294,76,-0.0022936385766633566],[116,294,77,0.0019007839479644878],[116,294,78,0.006114714072692581],[116,294,79,0.010347338380690005],[116,295,64,-0.047411308206816244],[116,295,65,-0.04346166001343392],[116,295,66,-0.039485042106054524],[116,295,67,-0.03548217104944959],[116,295,68,-0.03145377487971533],[116,295,69,-0.02740059226900267],[116,295,70,-0.023323371669546122],[116,295,71,-0.0192228704371262],[116,295,72,-0.01509985393392052],[116,295,73,-0.010955094610882399],[116,295,74,-0.006789371069297709],[116,295,75,-0.0026034671019853073],[116,295,76,0.0016018292862052808],[116,295,77,0.005825726878464985],[116,295,78,0.010067432266681373],[116,295,79,0.014326150892711026],[116,296,64,-0.044070527733486686],[116,296,65,-0.04007098640398318],[116,296,66,-0.03604617970742344],[116,296,67,-0.03199683516920175],[116,296,68,-0.027923689687473954],[116,296,69,-0.023827488634872065],[116,296,70,-0.019708984938921287],[116,296,71,-0.015568938141299019],[116,296,72,-0.011408113435886755],[116,296,73,-0.007227280685758675],[116,296,74,-0.0030272134187514926],[116,296,75,0.0011913121979123115],[116,296,76,0.00542751840430046],[116,296,77,0.009680626915606741],[116,296,78,0.01394986001116813],[116,296,79,0.018234441644689348],[116,297,64,-0.04079720368409839],[116,297,65,-0.036748280882595935],[116,297,66,-0.03267577679731844],[116,297,67,-0.028580430031700646],[116,297,68,-0.024462986482276294],[116,297,69,-0.020324198377616023],[116,297,70,-0.01616482329537075],[116,297,71,-0.011985623157563338],[116,297,72,-0.007787363204077316],[116,297,73,-0.003570810944488828],[116,297,74,6.6326491211742E-4],[116,297,75,0.004914095548871053],[116,297,76,0.00918091315473514],[116,297,77,0.01346295205987854],[116,297,78,0.017759449892825477],[116,297,79,0.022069648759406993],[116,298,64,-0.0375935214450252],[116,298,65,-0.03349575681922212],[116,298,66,-0.029376073737257813],[116,298,67,-0.025235221994855637],[116,298,68,-0.021073956621219206],[116,298,69,-0.016893036855461473],[116,298,70,-0.012693225100544658],[116,298,71,-0.00847528585486957],[116,298,72,-0.004239984621468802],[116,298,73,1.1913205053872E-5],[116,298,74,0.004279643474196779],[116,298,75,0.008562444437367651],[116,298,76,0.012859557928182115],[116,298,77,0.017170230565113798],[116,298,78,0.021493714976515005],[116,298,79,0.025829271048037096],[116,299,64,-0.034461609103373064],[116,299,65,-0.03031556983102352],[116,299,66,-0.02614925270021965],[116,299,67,-0.021963418809964316],[116,299,68,-0.017758832454290566],[116,299,69,-0.013536260036482853],[116,299,70,-0.00929646896020965],[116,299,71,-0.005040226497709625],[116,299,72,-7.682986349846835E-4],[116,299,73,0.0035185511058566307],[116,299,74,0.007819562867467426],[116,299,75,0.012133981680858608],[116,299,76,0.016461058712085495],[116,299,77,0.020800052531880824],[116,299,78,0.025150230408256542],[116,299,79,0.02951086962210177],[116,300,64,-0.03140353609094886],[116,300,65,-0.02720981640913476],[116,300,66,-0.022997436280806638],[116,300,67,-0.018767168215892985],[116,300,68,-0.014519785903181127],[116,300,69,-0.010256063062658034],[116,300,70,-0.005976772274164009],[116,300,71,-0.0016826837825038576],[116,300,72,0.0026254357210345296],[116,300,73,0.006946824340605565],[116,300,74,0.011280726241543644],[116,300,75,0.015626392939423465],[116,300,76,0.01998308461280937],[116,300,77,0.024350071439548045],[116,300,78,0.02872663495662755],[116,300,79,0.033112069443629474],[116,301,64,-0.028421311884718244],[116,301,65,-0.024180532602386336],[116,301,66,-0.01992268616282576],[116,301,67,-0.015648556591108947],[116,301,68,-0.011358927098363676],[116,301,69,-0.0070545788725919],[116,301,70,-0.0027362898452018523],[116,301,71,0.0015951665665989365],[116,301,72,0.005939022741601633],[116,301,73,0.01029451816043461],[116,301,74,0.014660900735813939],[116,301,75,0.019037428166711758],[116,301,76,0.02342336931681345],[116,301,77,0.027818005617113818],[116,301,78,0.0322206324926796],[116,301,79,0.03663056081360034],[116,302,64,-0.02551688476391444],[116,302,65,-0.0212296927581518],[116,302,66,-0.01692700184444941],[116,302,67,-0.01260960766373096],[116,302,68,-0.008278303074611635],[116,302,69,-0.00393387688308081],[116,302,70,4.228874526988431E-4],[116,302,71,0.004791213142331298],[116,302,72,0.00917033140791466],[116,302,73,0.01355948285340606],[116,302,74,0.017957918858998407],[116,302,75,0.022364903000011545],[116,302,76,0.02677971249066908],[116,302,77,0.0312016396526142],[116,302,78,0.03562999340818739],[116,302,79,0.04006410079849196],[116,303,64,-0.02269214062371204],[116,303,65,-0.01835920832023408],[116,303,66,-0.014012319420869761],[116,303,67,-0.009652281279510299],[116,303,68,-0.005279896524865264],[116,303,69,-8.959617294257132E-4],[116,303,70,0.0034987339470557086],[116,303,71,0.007903410139420503],[116,303,72,0.012317296684345069],[116,303,73,0.016739635052816795],[116,303,74,0.021169679808220578],[116,303,75,0.025606700089535105],[116,303,76,0.03004998112001473],[116,303,77,0.034498825741206336],[116,303,78,0.03895255597232637],[116,303,79,0.04341051459502407],[116,304,64,-0.019948901845397],[116,304,65,-0.015570926683719856],[116,304,66,-0.01118051042437526],[116,304,67,-0.006778472227669127],[116,304,68,-0.0023656246123747067],[116,304,69,0.0020572279355798653],[116,304,70,0.006489290380505837],[116,304,71,0.010929778580280887],[116,304,72,0.01537792075565847],[116,304,73,0.01983295898540887],[116,304,74,0.02429415072766984],[116,304,75,0.02876077036700224],[116,304,76,0.03323211078752959],[116,304,77,0.037707484972009445],[116,304,78,0.04218622762686272],[116,304,79,0.04666769683318525],[116,305,64,-0.017288926223180862],[116,305,65,-0.012866630106952475],[116,305,66,-0.00843338072200172],[116,305,67,-0.00399000912475142],[116,305,68,4.626621587267045E-4],[116,305,69,0.004923820583828207],[116,305,70,0.009392665065211664],[116,305,71,0.013868407481124063],[116,305,72,0.018350274204305052],[116,305,73,0.02283750765931787],[116,305,74,0.027329367906689946],[116,305,75,0.031825134253351255],[116,305,76,0.03632410688975596],[116,305,77,0.040825608553531054],[116,305,78,0.04532898621968016],[116,305,79,0.0498336128173662],[116,306,64,-0.014713905947580354],[116,306,65,-0.010248034680543215],[116,306,66,-0.005772669470676645],[116,306,67,-0.0012886533564039696],[116,306,68,0.003203181014499429],[116,306,69,0.007702012895326425],[116,306,70,0.012207034978135349],[116,306,71,0.01671745495857163],[116,306,72,0.021232497127864854],[116,306,73,0.025751403991847464],[116,306,74,0.030273437917379527],[116,306,75,0.03479788280566743],[116,306,76,0.039324045792859814],[116,306,77,0.04385125897776827],[116,306,78,0.04837888117673789],[116,306,79,0.05290629970569258],[116,307,64,-0.012225466645299325],[116,307,65,-0.0077167893533568385],[116,307,66,-0.00320004812979173],[116,307,67,0.0013239019229787027],[116,307,68,0.0058542179239931685],[116,307,69,0.010390070782944669],[116,307,70,0.014930646797250459],[116,307,71,0.019475149276841235],[116,307,72,0.02402280019672081],[116,307,73,0.028572841877141042],[116,307,74,0.03312453869177939],[116,307,75,0.0376771788034025],[116,307,76,0.042230075927404145],[116,307,77,0.04678257112306068],[116,307,78,0.051334034612531956],[116,307,79,0.055883867627632255],[116,308,64,-0.009825166475747903],[116,308,65,-0.005274475015610305],[116,308,66,-7.171195313445261E-4],[116,308,67,0.003846032732602936],[116,308,68,0.00841412855361709],[116,308,69,0.01298633035833685],[116,308,70,0.01756181787854233],[116,308,71,0.022139789835355694],[116,308,72,0.026719465651805482],[116,308,73,0.031300087193598364],[116,308,74,0.03588092053848915],[116,308,75,0.04046125777372803],[116,308,76,0.045040418821976486],[116,308,77,0.049617753295533654],[116,308,78,0.054192642378902284],[116,308,79,0.05876450073971666],[116,309,64,-0.007514495284128453],[116,309,65,-0.0029226036390088417],[116,309,66,0.0016745829924276062],[116,309,67,0.006276185149694968],[116,309,68,0.010881339163161002],[116,309,69,0.01548919883911197],[116,309,70,0.0200989371738768],[116,309,71,0.024709748096856027],[116,309,72,0.02932084824250529],[116,309,73,0.033931478751117905],[116,309,74,0.03854090709879908],[116,309,75,0.04314842895610681],[116,309,76,0.04775337007575532],[116,309,77,0.05235508820921894],[116,309,78,0.05695297505226851],[116,309,79,0.06154645821946117],[116,310,64,-0.005294873811028375],[116,310,65,-6.626174738639523E-4],[116,310,66,0.0039735964239777655],[116,310,67,0.008612876136049677],[116,310,68,0.013254347443528783],[116,310,69,0.017897155397318246],[116,310,70,0.0225404660897998],[116,310,71,0.027183468456080495],[116,310,72,0.031825376104783865],[116,310,73,0.036465429178230285],[116,310,74,0.04110289624239924],[116,310,75,0.04573707620614818],[116,310,76,0.050367300270082405],[116,310,77,0.05499293390491805],[116,310,78,0.05961337885936478],[116,310,79,0.06422807519755372],[116,311,64,-0.0031676529586464747],[116,311,65,0.001504111696683838],[116,311,66,0.00617852881781894],[116,311,67,0.010854694306578386],[116,311,68,0.015531723296051889],[116,311,69,0.02020875194910618],[116,311,70,0.024884939287132132],[116,311,71,0.029559469048873244],[116,311,72,0.03423155157938705],[116,311,73,0.038900425748982004],[116,311,74,0.04356536090252733],[116,311,75,0.04822565883860375],[116,311,76,0.052880655818895866],[116,311,77,0.05752972460766406],[116,311,78,0.06217227654132454],[116,311,79,0.06680776362816299],[116,312,64,-0.0011341131135824967],[116,312,65,0.0035762832454029753],[116,312,66,0.008288060000399458],[116,312,67,0.013000300639928991],[116,312,68,0.017712109553455785],[116,312,69,0.022422613885642984],[116,312,70,0.027130965421433242],[116,312,71,0.03183634250179786],[116,312,72,0.03653795197020504],[116,312,73,0.041235031149647355],[116,312,74,0.0459268498506297],[116,312,75,0.05061271240958248],[116,312,76,0.055291959758103],[116,312,77,0.05996397152286059],[116,312,78,0.06462816815619774],[116,312,79,0.06928401309744814],[116,313,64,8.04536473856643E-4],[116,313,65,0.0055526683327217635],[116,313,66,0.010300942212537148],[116,313,67,0.015048429131226018],[116,313,68,0.019794222642530113],[116,313,69,0.024537440745332012],[116,313,70,0.029277227824387547],[116,313,71,0.034012756622308266],[116,313,72,0.03874323024284629],[116,313,73,0.04346788418532155],[116,313,74,0.04818598841059388],[116,313,75,0.05289684943804099],[116,313,76,0.057599812473950324],[116,313,77,0.062294263571155944],[116,313,78,0.06697963181995534],[116,313,79,0.07165539157032672],[116,314,64,0.0026471582537205968],[116,314,65,0.0074321104813741545],[116,314,66,0.012216000694292573],[116,314,67,0.016997887386815097],[116,314,68,0.02177685318838099],[116,314,69,0.026552006827212427],[116,314,70,0.031322485125988814],[116,314,71,0.036087455029352206],[116,314,72,0.040846115663294685],[116,314,73,0.04559770042626793],[116,314,74,0.05034147911241979],[116,314,75,0.05507676006641646],[116,314,76,0.05980289237025707],[116,314,77,0.06451926806191707],[116,314,78,0.06922532438584908],[116,314,79,0.07392054607536558],[116,315,64,0.004392686883945812],[116,315,65,0.00921352609403997],[116,315,66,0.014032134212382252],[116,315,67,0.018847557161108586],[116,315,68,0.02365886656036964],[116,315,69,0.028465161745644868],[116,315,70,0.033265571817627015],[116,315,71,0.0380592577245136],[116,315,72,0.04284541437675926],[116,315,73,0.04762327279412648],[116,315,74,0.052392102285441916],[116,315,75,0.05715121266051443],[116,315,76,0.06189995647462454],[116,315,77,0.06663773130541831],[116,315,78,0.07136398206223749],[116,315,79,0.07607820332790899],[116,316,64,0.0060401296812860605],[116,316,65,0.01089590491391057],[116,316,66,0.015748315530062035],[116,316,67,0.020596394835465548],[116,316,68,0.02543920335966371],[116,316,69,0.030275830926209835],[116,316,70,0.03510539875600488],[116,316,71,0.03992706160361789],[116,316,72,0.044740009926639734],[116,316,73,0.04954347208790974],[116,316,74,0.05433671659102335],[116,316,75,0.05911905434857437],[116,316,76,0.06388984098354303],[116,316,77,0.0686484791636636],[116,316,78,0.07339442096880167],[116,316,79,0.07812717029136504],[116,317,64,0.0075885670157232465],[116,317,65,0.012478310428263889],[116,317,66,0.017363591819565316],[116,317,67,0.022243431839190447],[116,317,68,0.027116879848491565],[116,317,69,0.03198301604290757],[116,317,70,0.036840953607975235],[116,317,71,0.04168984090889491],[116,317,72,0.04652886371370174],[116,317,73,0.05135724744987774],[116,317,74,0.05617425949481952],[116,317,75,0.06097921149960714],[116,317,76,0.06577146174649398],[116,317,77,0.07055041753994282],[116,317,78,0.07531553763124615],[116,317,79,0.08006633467674792],[116,318,64,0.009037152648261826],[116,318,65,0.01395988021494815],[116,318,66,0.01887708501699506],[116,318,67,0.02378777501254778],[116,318,68,0.028690988320991484],[116,318,69,0.03358579539655332],[116,318,70,0.03847130123618864],[116,318,71,0.043346647621586715],[116,318,72,0.04821101539534997],[116,318,73,0.053063626771181316],[116,318,74,0.057903747678494016],[116,318,75,0.06273069014089075],[116,318,76,0.06754381468892906],[116,318,77,0.07234253280700212],[116,318,78,0.07712630941436971],[116,318,79,0.0818946653803583],[116,319,64,0.01038511401216105],[116,319,65,0.015339826231830223],[116,319,66,0.020287992119724624],[116,319,67,0.025228606911849832],[116,319,68,0.03016069741571606],[116,319,69,0.035083324234426366],[116,319,70,0.039995584025613845],[116,319,71,0.04489661179506191],[116,319,72,0.04978558322506041],[116,319,73,0.054661717037333246],[116,319,74,0.05952427739095295],[116,319,75,0.06437257631468671],[116,319,76,0.06920597617419258],[116,319,77,0.07402389217389393],[116,319,78,0.07882579489356767],[116,319,79,0.08361121285966577],[117,-64,64,-0.1101408022457876],[117,-64,65,-0.11380206344761534],[117,-64,66,-0.11735169819338043],[117,-64,67,-0.12078826336314463],[117,-64,68,-0.12411047099531991],[117,-64,69,-0.12731719390722862],[117,-64,70,-0.13040747137905884],[117,-64,71,-0.1333805149011248],[117,-64,72,-0.136235713984445],[117,-64,73,-0.13897264203455117],[117,-64,74,-0.14159106228877105],[117,-64,75,-0.1440909338166524],[117,-64,76,-0.14647241758379048],[117,-64,77,-0.14873588257893078],[117,-64,78,-0.15088191200440337],[117,-64,79,-0.1529113095298582],[117,-63,64,-0.10458545576485778],[117,-63,65,-0.10823547132091171],[117,-63,66,-0.1117744486401967],[117,-63,67,-0.11520094155738947],[117,-63,68,-0.11851365850800788],[117,-63,69,-0.12171146814127909],[117,-63,70,-0.12479340499643199],[117,-63,71,-0.12775867524231743],[117,-63,72,-0.130606662480372],[117,-63,73,-0.13333693361084065],[117,-63,74,-0.13594924476249204],[117,-63,75,-0.13844354728550623],[117,-63,76,-0.14081999380778776],[117,-63,77,-0.1430789443545808],[117,-63,78,-0.1452209725314395],[117,-63,79,-0.14724687177052487],[117,-62,64,-0.09894975719751786],[117,-62,65,-0.10258777697615051],[117,-62,66,-0.10611537324877163],[117,-62,67,-0.10953109671314754],[117,-62,68,-0.11283365208413121],[117,-62,69,-0.11602190369839827],[117,-62,70,-0.11909488118263678],[117,-62,71,-0.1220517851850842],[117,-62,72,-0.12489199317043786],[117,-62,73,-0.127615065278042],[117,-62,74,-0.1302207502436018],[117,-62,75,-0.1327089913840852],[117,-62,76,-0.1350799326460802],[117,-62,77,-0.13733392471747863],[117,-62,78,-0.13947153120253697],[117,-62,79,-0.14149353486029304],[117,-61,64,-0.09323798225069668],[117,-61,65,-0.0968632631399734],[117,-61,66,-0.1003787614454763],[117,-61,67,-0.10378302463802203],[117,-61,68,-0.10707475359582075],[117,-61,69,-0.1102528082006492],[117,-61,70,-0.11331621299749417],[117,-61,71,-0.11626416291757535],[117,-61,72,-0.11909602906475925],[117,-61,73,-0.12181136456527963],[117,-61,74,-0.1244099104810048],[117,-61,75,-0.12689160178591896],[117,-61,76,-0.12925657340608543],[117,-61,77,-0.1315051663229555],[117,-61,78,-0.13363793374008548],[117,-61,79,-0.13565564731322532],[117,-60,64,-0.08745445221365356],[117,-60,65,-0.09106625860975426],[117,-60,66,-0.09456894919868941],[117,-60,67,-0.0979610681358325],[117,-60,68,-0.10124131234864542],[117,-60,69,-0.10440853712385456],[117,-60,70,-0.10746176175812083],[117,-60,71,-0.11040017527211166],[117,-60,72,-0.11322314218798857],[117,-60,73,-0.11593020837022683],[117,-60,74,-0.11852110693000184],[117,-60,75,-0.12099576419281977],[117,-60,76,-0.12335430572964645],[117,-60,77,-0.1255970624514121],[117,-60,78,-0.1277245767669435],[117,-60,79,-0.12973760880429785],[117,-59,64,-0.08160352908450963],[117,-59,65,-0.08520113337075585],[117,-59,66,-0.08869031412699502],[117,-59,67,-0.09206961210626419],[117,-59,68,-0.09533772017311404],[117,-59,69,-0.09849348888135934],[117,-59,70,-0.10153593211534906],[117,-59,71,-0.10446423279466077],[117,-59,72,-0.10727774864223527],[117,-59,73,-0.10997601801586443],[117,-59,74,-0.11255876580327295],[117,-59,75,-0.1150259093804632],[117,-59,76,-0.11737756463358595],[117,-59,77,-0.11961405204420883],[117,-59,78,-0.12173590283803537],[117,-59,79,-0.12374386519704794],[117,-58,64,-0.07568961057212187],[117,-58,65,-0.07927229358817722],[117,-58,66,-0.08274727048182462],[117,-58,67,-0.08611307851853045],[117,-58,68,-0.08936840638978383],[117,-58,69,-0.09251209978100294],[117,-58,70,-0.09554316700298382],[117,-58,71,-0.09846078468679409],[117,-58,72,-0.10126430354213234],[117,-58,73,-0.10395325417906409],[117,-58,74,-0.1065273529933719],[117,-58,75,-0.10898650811519439],[117,-58,76,-0.11133082542121298],[117,-58,77,-0.11356061461026046],[117,-58,78,-0.11567639534240048],[117,-58,79,-0.11767890344145715],[117,-57,64,-0.06971712497362426],[117,-57,65,-0.07328417647439667],[117,-57,66,-0.07674426400485357],[117,-57,67,-0.08009592125936404],[117,-57,68,-0.08333783264828898],[117,-57,69,-0.08646883885562606],[117,-57,70,-0.08948794246022063],[117,-57,71,-0.09239431362044526],[117,-57,72,-0.09518729582236585],[117,-57,73,-0.09786641169130761],[117,-57,74,-0.10043136886705895],[117,-57,75,-0.10288206594238325],[117,-57,76,-0.10521859846510695],[117,-57,77,-0.10744126500364493],[117,-57,78,-0.10955057327602447],[117,-57,79,-0.11154724634238278],[117,-56,64,-0.06369052592748337],[117,-56,65,-0.06724124503127193],[117,-56,66,-0.07068576666000681],[117,-56,67,-0.07402262085519418],[117,-56,68,-0.07725048764014641],[117,-56,69,-0.08036820256695876],[117,-56,70,-0.08337476232707086],[117,-56,71,-0.08626933042532281],[117,-56,72,-0.08905124291751654],[117,-56,73,-0.09172001421140186],[117,-56,74,-0.09427534293131867],[117,-56,75,-0.09671711784617698],[117,-56,76,-0.09904542386102355],[117,-56,77,-0.10126054807208074],[117,-56,78,-0.10336298588529824],[117,-56,79,-0.10535344719839901],[117,-55,64,-0.057614287041913625],[117,-55,65,-0.061147982667338785],[117,-55,66,-0.06457627123992249],[117,-55,67,-0.06789767906834998],[117,-55,68,-0.07111088168517787],[117,-55,69,-0.07421470938273622],[117,-55,70,-0.07720815281264115],[117,-55,71,-0.08009036864881947],[117,-55,72,-0.08286068531406265],[117,-55,73,-0.08551860877002626],[117,-55,74,-0.08806382837090965],[117,-55,75,-0.09049622278048997],[117,-55,76,-0.09281586595277103],[117,-55,77,-0.0950230331761206],[117,-55,78,-0.09711820718094377],[117,-55,79,-0.0991020843108763],[117,-54,64,-0.051492896398961485],[117,-54,65,-0.05500888769021273],[117,-54,66,-0.05842028584717052],[117,-54,67,-0.06172561336759741],[117,-54,68,-0.06492354119185717],[117,-54,69,-0.0680128942273498],[117,-54,70,-0.07099265693657442],[117,-54,71,-0.07386197898872549],[117,-54,72,-0.07662018097484324],[117,-54,73,-0.07926676018642631],[117,-54,74,-0.08180139645774798],[117,-54,75,-0.08422395807154903],[117,-54,76,-0.08653450772836413],[117,-54,77,-0.0887333085793588],[117,-54,78,-0.09082083032272692],[117,-54,79,-0.09279775536362256],[117,-53,64,-0.045330850934103606],[117,-53,65,-0.04882846767404525],[117,-53,66,-0.05222232825008588],[117,-53,67,-0.055510951272860654],[117,-53,68,-0.05869300299143532],[117,-53,69,-0.0617673028058815],[117,-53,70,-0.06473282884349907],[117,-53,71,-0.0675887235985968],[117,-53,72,-0.07033429963584192],[117,-53,73,-0.07296904535709803],[117,-53,74,-0.07549263083198454],[117,-53,75,-0.07790491369183339],[117,-53,76,-0.08020594508730217],[117,-53,77,-0.08239597570951696],[117,-53,78,-0.08447546187479538],[117,-53,79,-0.08644507167292748],[117,-52,64,-0.039132650691204196],[117,-52,65,-0.04261123370187658],[117,-52,66,-0.04598692011304939],[117,-52,67,-0.04925822457396756],[117,-52,68,-0.05242380854567763],[117,-52,69,-0.05548248580136017],[117,-52,70,-0.05843322799033068],[117,-52,71,-0.061275170265615464],[117,-52,72,-0.0640076169751197],[117,-52,73,-0.0666300474163043],[117,-52,74,-0.06914212165460154],[117,-52,75,-0.07154368640525155],[117,-52,76,-0.07383478097881391],[117,-52,77,-0.07601564329022958],[117,-52,78,-0.07808671593148309],[117,-52,79,-0.08004865230784475],[117,-51,64,-0.03290279295313914],[117,-51,65,-0.036361694483192375],[117,-51,66,-0.03971858110153248],[117,-51,67,-0.042971963423729886],[117,-51,68,-0.046120498028528245],[117,-51,69,-0.04916299294555715],[117,-51,70,-0.052098413206733474],[117,-51,71,-0.05492588646125662],[117,-51,72,-0.05764470865421811],[117,-51,73,-0.06025434976873656],[117,-51,74,-0.06275445963185389],[117,-51,75,-0.06514487378387124],[117,-51,76,-0.06742561941137881],[117,-51,77,-0.0695969213438582],[117,-51,78,-0.07165920811390258],[117,-51,79,-0.07361311808103665],[117,-50,64,-0.026645766247940128],[117,-50,65,-0.030084350346540334],[117,-50,66,-0.03342182286175421],[117,-50,67,-0.03665669030521168],[117,-50,68,-0.0397876042815557],[117,-50,69,-0.04281336696316773],[117,-50,70,-0.04573293662859823],[117,-50,71,-0.048545433264615134],[117,-50,72,-0.0512501442318799],[117,-50,73,-0.05384652999417394],[117,-50,74,-0.0563342299114008],[117,-50,75,-0.05871306809605181],[117,-50,76,-0.06098305933338166],[117,-50,77,-0.0631444150651772],[117,-50,78,-0.06519754943716272],[117,-50,79,-0.06714308541002612],[117,-49,64,-0.02036604423028965],[117,-49,65,-0.02378368710703227],[117,-49,66,-0.027101142874782158],[117,-49,67,-0.03031691387301305],[117,-49,68,-0.03342964664300241],[117,-49,69,-0.03643813738920587],[117,-49,70,-0.03934133750435953],[117,-49,71,-0.04213835915821296],[117,-49,72,-0.04482848094991465],[117,-49,73,-0.047411153623962754],[117,-49,74,-0.049886005849952286],[117,-49,75,-0.05225285006580316],[117,-49,76,-0.054511688384719204],[117,-49,77,-0.05666271856575689],[117,-49,78,-0.058706340048050865],[117,-49,79,-0.06064316004867898],[117,-48,64,-0.014068079438691927],[117,-48,65,-0.017464169809062846],[117,-48,66,-0.020761018185403657],[117,-48,67,-0.0239571226688996],[117,-48,68,-0.027051124650771863],[117,-48,69,-0.030041814259949784],[117,-48,70,-0.0329281358744864],[117,-48,71,-0.03570919369662662],[117,-48,72,-0.038384257391542165],[117,-48,73,-0.04095276778965462],[117,-48,74,-0.043414342652768445],[117,-48,75,-0.04576878250370764],[117,-48,76,-0.04801607651969886],[117,-48,77,-0.05015640848938352],[117,-48,78,-0.05219016283350575],[117,-48,79,-0.054117930689255966],[117,-47,64,-0.007756296928155271],[117,-47,65,-0.011130236344076616],[117,-47,66,-0.01440589900560263],[117,-47,67,-0.01758177871160993],[117,-47,68,-0.020656511619187468],[117,-47,69,-0.023628881677261626],[117,-47,70,-0.026497826123979218],[117,-47,71,-0.0292624410477621],[117,-47,72,-0.03192198701204696],[117,-47,73,-0.03447589474363011],[117,-47,74,-0.036923770884841],[117,-47,75,-0.039265403809236044],[117,-47,76,-0.04150076950105819],[117,-47,77,-0.043630037498342045],[117,-47,78,-0.04565357689971428],[117,-47,79,-0.04757196243486561],[117,-46,64,-0.0014350877782320914],[117,-46,65,-0.0047862909432304646],[117,-46,66,-0.00804020219248669],[117,-46,67,-0.011195310960686378],[117,-46,68,-0.014250248089362039],[117,-46,69,-0.017203791246131694],[117,-46,70,-0.02005487040771181],[117,-46,71,-0.02280257340662073],[117,-46,72,-0.025446151541581807],[117,-46,73,-0.027985025251552886],[117,-46,74,-0.03041878985359714],[117,-46,75,-0.03274722134429664],[117,-46,76,-0.034970282264944474],[117,-46,77,-0.037088127630403034],[117,-46,78,-0.03910111092167334],[117,-46,79,-0.04100979014215389],[117,-45,64,0.004891197523270829],[117,-45,65,0.0015633024547362373],[117,-45,66,-0.0016683046009776659],[117,-45,67,-0.004802108654645032],[117,-45,68,-0.007836735153500585],[117,-45,69,-0.010770955385761893],[117,-45,70,-0.013603691948943508],[117,-45,71,-0.016334024281876247],[117,-45,72,-0.018961194260445846],[117,-45,73,-0.021484611856972036],[117,-45,74,-0.023903860863448978],[117,-45,75,-0.02621870467834153],[117,-45,76,-0.028429092157180924],[117,-45,77,-0.03053516352684038],[117,-45,78,-0.03253725636353966],[117,-45,79,-0.03443591163455728],[117,-44,64,0.011218255821064949],[117,-44,65,0.0079142269605742],[117,-44,66,0.004705463688884026],[117,-44,67,0.0015934854766694873],[117,-44,68,-0.0014203276529781705],[117,-44,69,-0.004334740514035373],[117,-44,70,-0.007148668210840814],[117,-44,71,-0.009861181655108187],[117,-44,72,-0.012471513146677382],[117,-44,73,-0.014979062017921874],[117,-44,74,-0.01738340034203223],[117,-44,75,-0.01968427870487388],[117,-44,76,-0.021881632040659404],[117,-44,77,-0.023975585531318067],[117,-44,78,-0.02596646056960994],[117,-44,79,-0.027854780785963262],[117,-43,64,0.017541838157800305],[117,-43,65,0.014262219616710481],[117,-43,66,0.011076826270194351],[117,-43,67,0.007987182125713033],[117,-43,68,0.004994672749975226],[117,-43,69,0.0021005398948001908],[117,-43,70,-6.941239408398969E-4],[117,-43,71,-0.0033883810125164837],[117,-43,72,-0.005981453895791633],[117,-43,73,-0.00847273111533986],[117,-43,74,-0.010861772837960193],[117,-43,75,-0.013148316629179924],[117,-43,76,-0.015332283273686853],[117,-43,77,-0.01741378265947624],[117,-43,78,-0.019393119725757302],[117,-43,79,-0.021270800474599838],[117,-42,64,0.02385775676381019],[117,-42,65,0.020603078404217823],[117,-42,66,0.017441567432666005],[117,-42,67,0.014374752446525418],[117,-42,68,0.011404024626651355],[117,-42,69,0.00853063237890106],[117,-42,70,0.005755675911814806],[117,-42,71,0.0030801017505419637],[117,-42,72,5.046971870019679E-4],[117,-42,73,-0.001969915333644545],[117,-42,74,-0.004343283890431371],[117,-42,75,-0.00661513282762749],[117,-42,76,-0.008785368559624418],[117,-42,77,-0.01085408543955102],[117,-42,78,-0.012821571691664868],[117,-42,79,-0.014688315407498265],[117,-41,64,0.030161892171345905],[117,-41,65,0.026932669374737594],[117,-41,66,0.023795539311508462],[117,-41,67,0.020752035219835596],[117,-41,68,0.017803553962473018],[117,-41,69,0.014951350684219378],[117,-41,70,0.01219653340553184],[117,-41,71,0.009540057552373082],[117,-41,72,0.006982720422275213],[117,-41,73,0.0045251555867009685],[117,-41,74,0.002167827229483832],[117,-41,75,-8.897557835452208E-5],[117,-41,76,-0.0022451446676459152],[117,-41,77,-0.004300758623859591],[117,-41,78,-0.006256088703679996],[117,-41,79,-0.008111604815350448],[117,-40,64,0.03645020045344993],[117,-40,65,0.03324693390750255],[117,-40,66,0.030134669161852146],[117,-40,67,0.027114944144142394],[117,-40,68,0.02418916146398664],[117,-40,69,0.021358583086669047],[117,-40,70,0.018624324942979942],[117,-40,71,0.01598735147526853],[117,-40,72,0.01344847011970074],[117,-40,73,0.011008325724795154],[117,-40,74,0.008667394906029413],[117,-40,75,0.0064259803368047486],[117,-40,76,0.004284204975540606],[117,-40,77,0.0022420062290086085],[117,-40,78,2.9913005186377184E-4],[117,-40,79,-0.0015448750176104697],[117,-39,64,0.042718720587164194],[117,-39,65,0.03954189609115866],[117,-39,66,0.036454966758412866],[117,-39,67,0.03345947525245907],[117,-39,68,0.030556829991927104],[117,-39,69,0.027748299840757218],[117,-39,70,0.025035008734534236],[117,-39,71,0.022417930243024742],[117,-39,72,0.019897882068905193],[117,-39,73,0.01747552048275569],[117,-39,74,0.01515133469410812],[117,-39,75,0.012925641158840984],[117,-39,76,0.010798577822688338],[117,-39,77,0.008770098300976303],[117,-39,78,0.006839965994540731],[117,-39,79,0.005007748141846569],[117,-38,64,0.04896358194121597],[117,-38,65,0.045813670230524295],[117,-38,66,0.04275253192054229],[117,-38,67,0.039781714454870554],[117,-38,68,0.03690263212050393],[117,-38,69,0.03411656075482583],[117,-38,70,0.031424632388707296],[117,-38,71,0.02882782982580001],[117,-38,72,0.02632698115800236],[117,-38,73,0.023922754217181597],[117,-38,74,0.021615650962935717],[117,-38,75,0.019406001806686946],[117,-38,76,0.017293959871879205],[117,-38,77,0.01527949519038685],[117,-38,78,0.013362388835092553],[117,-38,79,0.011542226988654591],[117,-37,64,0.05518101188835556],[117,-37,65,0.05205846847846429],[117,-37,66,0.049023562162834544],[117,-37,67,0.04607784520707381],[117,-37,68,0.04322273782308139],[117,-37,69,0.04045952289307919],[117,-37,70,0.03778934062973993],[117,-37,71,0.03521318317249034],[117,-37,72,0.03273188911998082],[117,-37,73,0.030346137998793044],[117,-37,74,0.028056444668177583],[117,-37,75,0.025863153661109917],[117,-37,76,0.02376643346143581],[117,-37,77,0.02176627071721715],[117,-37,78,0.019862464390233536],[117,-37,79,0.018054619841659236],[117,-36,64,0.06136734354199902],[117,-36,65,0.05827260859253258],[117,-36,66,0.055264360470946405],[117,-36,67,0.05234415630455913],[117,-36,68,0.04951342228390421],[117,-36,69,0.04677344840404973],[117,-36,70,0.04412538314200143],[117,-36,71,0.041570228070271664],[117,-36,72,0.03910883240659968],[117,-36,73,0.036741887499898374],[117,-36,74,0.03446992125221904],[117,-36,75,0.03229329247702273],[117,-36,76,0.030212185193526198],[117,-36,77,0.028226602857239103],[117,-36,78,0.026336362526642065],[117,-36,79,0.024541088966029356],[117,-35,64,0.06751902361746442],[117,-35,65,0.06445252181666716],[117,-35,66,0.061471343202914475],[117,-35,67,0.05857704980271272],[117,-35,68,0.05577107383615865],[117,-35,69,0.05305471247578697],[117,-35,70,0.05042912254149079],[117,-35,71,0.04789531513159673],[117,-35,72,0.045454150190077036],[117,-35,73,0.043106331009978516],[117,-35,74,0.040852398672857504],[117,-35,75,0.03869272642450783],[117,-35,76,0.0366275139867539],[117,-35,77,0.034656781805420755],[117,-35,78,0.032780365234435505],[117,-35,79,0.030997908656079876],[117,-34,64,0.07363262041759022],[117,-34,65,0.07059476088773242],[117,-34,66,0.06764104811576344],[117,-34,67,0.06477304906263859],[117,-34,68,0.061992202026156185],[117,-34,69,0.05929981141756324],[117,-34,70,0.056697042474225134],[117,-34,71,0.05418491590843699],[117,-34,72,0.051764302492362746],[117,-34,73,0.049435917579177424],[117,-34,74,0.04720031556020543],[117,-34,75,0.04505788425834034],[117,-34,76,0.043008839257518305],[117,-34,77,0.0410532181683565],[117,-34,78,0.039190874829913125],[117,-34,79,0.03742147344758495],[117,-33,64,0.0797048319430097],[117,-33,65,0.07669600816717925],[117,-33,66,0.07377014251767633],[117,-33,67,0.07092880692296855],[117,-33,68,0.06817344580391826],[117,-33,69,0.06550537086837072],[117,-33,70,0.06292575584179338],[117,-33,71,0.06043563113404693],[117,-33,72,0.05803587844227365],[117,-33,73,0.05572722528997587],[117,-33,74,0.05351023950208422],[117,-33,75,0.05138532361629067],[117,-33,76,0.04935270923042856],[117,-33,77,0.04741245128600613],[117,-33,78,0.04556442228784796],[117,-33,79,0.04380830645986766],[117,-32,64,0.0857324941267592],[117,-32,65,0.08275308389749847],[117,-32,66,0.07985543154540353],[117,-32,67,0.07704111399733649],[117,-32,68,0.07431158183983244],[117,-32,69,0.07166815413188099],[117,-32,70,0.06911201315374838],[117,-32,71,0.06664419909192165],[117,-32,72,0.06426560466015874],[117,-32,73,0.061976969656719505],[117,-32,74,0.05977887545757532],[117,-32,75,0.057671739445872894],[117,-32,76,0.05565580937743586],[117,-32,77,0.05373115768240799],[117,-32,78,0.05189767570299553],[117,-32,79,0.05015506786732904],[117,-31,64,0.09171258919337044],[117,-31,65,0.08876295458362371],[117,-31,66,0.08589386656706344],[117,-31,67,0.08310690709767188],[117,-31,68,0.08040353296753555],[117,-31,69,0.07778507063802143],[117,-31,70,0.07525271100698705],[117,-31,71,0.07280750411209902],[117,-31,72,0.07045035377025222],[117,-31,73,0.06818201215315478],[117,-31,74,0.06600307429888597],[117,-31,75,0.06391397255969711],[117,-31,76,0.0619149709858392],[117,-31,77,0.06000615964552347],[117,-31,78,0.05818744888097138],[117,-31,79,0.05645856350057288],[117,-30,64,0.09764225414260608],[117,-30,65,0.09472274149943771],[117,-30,66,0.0918825537104927],[117,-30,67,0.08912327778346962],[117,-30,68,0.08644637675318356],[117,-30,69,0.08385318453133261],[117,-30,70,0.08134490069228606],[117,-30,71,0.07892258519497597],[117,-30,72,0.07658715304087516],[117,-30,73,0.07433936886813652],[117,-30,74,0.07217984148169232],[117,-30,75,0.07010901831958771],[117,-30,76,0.06812717985533356],[117,-30,77,0.06623443393637918],[117,-30,78,0.06443071005866885],[117,-30,79,0.06271575357729553],[117,-29,64,0.10351878935752101],[117,-29,65,0.10062972931906711],[117,-29,66,0.09781876251682797],[117,-29,67,0.09508748103671583],[117,-29,68,0.09243735419078658],[117,-29,69,0.08986972338577837],[117,-29,70,0.08738579692766513],[117,-29,71,0.08498664476230389],[117,-29,72,0.08267319315215971],[117,-29,73,0.0804462192891815],[117,-29,74,0.07830634584363194],[117,-29,75,0.07625403544914056],[117,-29,76,0.07428958512376593],[117,-29,77,0.07241312062717342],[117,-29,78,0.07062459075388283],[117,-29,79,0.06892376156260582],[117,-28,64,0.10933966733701783],[117,-28,65,0.10648137487313336],[117,-28,66,0.10369993471948857],[117,-28,67,0.10099694406264337],[117,-28,68,0.09837387852377899],[117,-28,69,0.09583208704618451],[117,-28,70,0.09337278671875038],[117,-28,71,0.09099705753554643],[117,-28,72,0.08870583709147084],[117,-28,73,0.08649991521403932],[117,-28,74,0.08437992853112142],[117,-28,75,0.08234635497489118],[117,-28,76,0.08039950822177866],[117,-28,77,0.07853953206852715],[117,-28,78,0.07676639474431357],[117,-28,79,0.07507988315895109],[117,-27,64,0.11510254155303412],[117,-27,65,0.112275316030098],[117,-27,66,0.10952369314869814],[117,-27,67,0.10684927521645127],[117,-27,68,0.10425354419296684],[117,-27,69,0.10173785659644585],[117,-27,70,0.09930343834628097],[117,-27,71,0.09695137954173272],[117,-27,72,0.09468262917666659],[117,-27,73,0.09249798979042556],[117,-27,74,0.09039811205463988],[117,-27,75,0.08838348929624251],[117,-27,76,0.08645445195647938],[117,-27,77,0.08461116198601626],[117,-27,78,0.08285360717610035],[117,-27,79,0.08118159542579662],[117,-26,64,0.12080525543206788],[117,-26,65,0.11800938070240652],[117,-26,66,0.11528785076124803],[117,-26,67,0.11264227305569352],[117,-26,68,0.11007413591054971],[117,-26,69,0.10758480345419741],[117,-26,70,0.10517551048045448],[117,-26,71,0.10284735724650584],[117,-26,72,0.10060130420689029],[117,-26,73,0.09843816668360938],[117,-26,74,0.096358609472173],[117,-26,75,0.09436314138383761],[117,-26,76,0.09245210972383466],[117,-26,77,0.09062569470568604],[117,-26,78,0.08888390380156919],[117,-26,79,0.0872265660287469],[117,-25,64,0.12644585146118703],[117,-25,65,0.12368159597758177],[117,-25,66,0.12099041979565539],[117,-25,67,0.11837393551848707],[117,-25,68,0.11583363786037226],[117,-25,69,0.11337089859210792],[117,-25,70,0.1109869614222655],[117,-25,71,0.10868293681452434],[117,-25,72,0.10645979674105399],[117,-25,73,0.10431836937201278],[117,-25,74,0.10225933370097418],[117,-25,75,0.10028321410654051],[117,-25,76,0.0983903748499384],[117,-25,77,0.09658101450869527],[117,-25,78,0.09485516034635699],[117,-25,79,0.09321266261826577],[117,-24,64,0.13202258041867565],[117,-24,65,0.12929019737441227],[117,-24,66,0.12662962105286035],[117,-24,67,0.12404246922768802],[117,-24,68,0.12153024302455295],[117,-24,69,0.11909432188594082],[117,-24,70,0.11673595847198881],[117,-24,71,0.11445627349735998],[117,-24,72,0.11225625050416188],[117,-24,73,0.11013673057097362],[117,-24,74,0.10809840695779449],[117,-24,75,0.10614181968717362],[117,-24,76,0.10426735006131371],[117,-24,77,0.10247521511525004],[117,-24,78,0.10076546200606451],[117,-24,79,0.09913796233815009],[117,-23,64,0.13753391072901555],[117,-23,65,0.13483363822394123],[117,-23,66,0.13220389330216753],[117,-23,67,0.1296462989207372],[117,-23,68,0.12716236263618919],[117,-23,69,0.12475347158908356],[117,-23,70,0.12242088742450163],[117,-23,71,0.12016574114859424],[117,-23,72,0.11798902792116661],[117,-23,73,0.11589160178436309],[117,-23,74,0.1138741703272731],[117,-23,75,0.11193728928670543],[117,-23,76,0.11008135708393507],[117,-23,77,0.10830660929751601],[117,-23,78,0.10661311307212495],[117,-23,79,0.10500076146344839],[117,-22,64,0.1429785379423565],[117,-22,65,0.14031059917540356],[117,-22,66,0.13771190281258083],[117,-22,67,0.13518407700532387],[117,-22,68,0.13272863575829175],[117,-22,69,0.130346973933696],[117,-22,70,0.12804036219160064],[117,-22,71,0.12580994186626515],[117,-22,72,0.12365671977851633],[117,-22,73,0.12158156298421652],[117,-22,74,0.11958519345864482],[117,-22,75,0.1176681827170436],[117,-22,76,0.11583094637112845],[117,-22,77,0.11407373862166226],[117,-22,78,0.11239664668705018],[117,-22,79,0.11079958516797606],[117,-21,64,0.14835539433862044],[117,-21,65,0.14571999782726197],[117,-21,66,0.14315255300968022],[117,-21,67,0.14065469324102198],[117,-21,68,0.13822793898909846],[117,-21,69,0.13587369285863082],[117,-21,70,0.13359323455146388],[117,-21,71,0.13138771576281405],[117,-21,72,0.12925815501354443],[117,-21,73,0.12720543241852755],[117,-21,74,0.12523028439091877],[117,-21,75,0.12333329828258677],[117,-21,76,0.12151490696050471],[117,-21,77,0.1197753833191969],[117,-21,78,0.11811483472920559],[117,-21,79,0.11653319742158841],[117,-20,64,0.15366365865593656],[117,-20,65,0.15106099848303323],[117,-20,66,0.1485249942577348],[117,-20,67,0.14605728454658518],[117,-20,68,0.14365939629345614],[117,-20,69,0.14133273986381323],[117,-20,70,0.13907860402494476],[117,-20,71,0.13689815086222268],[117,-20,72,0.13479241063138359],[117,-20,73,0.13276227654689132],[117,-20,74,0.13080849950620943],[117,-20,75,0.1289316827502207],[117,-20,76,0.1271322764596059],[117,-20,77,0.12541057228727204],[117,-20,78,0.12376669782679495],[117,-20,79,0.12220061101688862],[117,-19,64,0.15890276594357555],[117,-19,65,0.15633302203207755],[117,-19,66,0.15382863376722022],[117,-19,67,0.15139124493307465],[117,-19,68,0.14902238896044473],[117,-19,69,0.14672348399125146],[117,-19,70,0.1444958278788726],[117,-19,71,0.1423405931245123],[117,-19,72,0.1402588217495836],[117,-19,73,0.13825142010417157],[117,-19,74,0.13631915361139735],[117,-19,75,0.13446264144792885],[117,-19,76,0.1326823511604429],[117,-19,77,0.13097859321813432],[117,-19,78,0.1293515155012328],[117,-19,79,0.1278010977255457],[117,-18,64,0.16407241753950608],[117,-18,65,0.16153575595547143],[117,-18,66,0.15906314562786827],[117,-18,67,0.1566562355629445],[117,-18,68,0.15431656568736718],[117,-18,69,0.15204556193280794],[117,-18,70,0.1498445312564861],[117,-18,71,0.14771465659773086],[117,-18,72,0.14565699177055813],[117,-18,73,0.14367245629231873],[117,-18,74,0.14176183014824784],[117,-18,75,0.1399257484921531],[117,-18,76,0.1381646962830524],[117,-18,77,0.13647900285785297],[117,-18,78,0.13486883644003556],[117,-18,79,0.13333419858435835],[117,-17,64,0.16917259117228844],[117,-17,65,0.16666916445668023],[117,-17,66,0.16422848096695597],[117,-17,67,0.1618521949347954],[117,-17,68,0.15954185278981514],[117,-17,69,0.15729888826443594],[117,-17,70,0.15512461743470551],[117,-17,71,0.15302023369713835],[117,-17,72,0.1509868026815646],[117,-17,73,0.14902525710004555],[117,-17,74,0.1471363915316901],[117,-17,75,0.14532085714360166],[117,-17,76,0.1435791563477744],[117,-17,77,0.14191163739402535],[117,-17,78,0.14031848889892706],[117,-17,79,0.13879973431075832],[117,-16,64,0.17420355118747655],[117,-16,65,0.17173349871720134],[117,-16,66,0.16932487823301123],[117,-16,67,0.16697934919396817],[117,-16,68,0.1646984645379861],[117,-16,69,0.16248366580705598],[117,-16,70,0.16033627820841956],[117,-16,71,0.15825750561175977],[117,-16,72,0.15624842548239382],[117,-16,73,0.1543099837505323],[117,-16,74,0.15244298961643254],[117,-16,75,0.15064811029168312],[117,-16,76,0.14892586567642951],[117,-16,77,0.14727662297263588],[117,-16,78,0.145700591233342],[117,-16,79,0.14419781584793556],[117,-15,64,0.1791658588986127],[117,-15,65,0.176729307277261],[117,-15,66,0.17435287360501905],[117,-15,67,0.17203822256906554],[117,-15,68,0.1697869136193353],[117,-15,69,0.1676003961141631],[117,-15,70,0.16548000440187693],[117,-15,71,0.16342695283840103],[117,-15,72,0.16144233074086256],[117,-15,73,0.1595270972772571],[117,-15,74,0.15768207629201003],[117,-15,75,0.15590795106765998],[117,-15,76,0.15420525902248639],[117,-15,77,0.15257438634416443],[117,-15,78,0.15101556255941762],[117,-15,79,0.14952885503967706],[117,-14,64,0.18406038306259997],[117,-14,65,0.1816574465413534],[117,-14,66,0.17931331152690877],[117,-14,67,0.1770296479341832],[117,-14,68,0.174808021727346],[117,-14,69,0.17264989008594123],[117,-14,70,0.1705565965069562],[117,-14,71,0.16852936584289946],[117,-14,72,0.16656929927587616],[117,-14,73,0.1646773692277217],[117,-14,74,0.1628544142060283],[117,-14,75,0.1611011335862902],[117,-14,76,0.15941808232999],[117,-14,77,0.157805665638711],[117,-14,78,0.15626413354424173],[117,-14,79,0.15479357543468786],[117,-13,64,0.18888831047954635],[117,-13,65,0.1865190914087096],[117,-13,66,0.1842073553674205],[117,-13,67,0.18195477749694366],[117,-13,68,0.1797629302765119],[117,-13,69,0.1776332787099788],[117,-13,70,0.17556717544841427],[117,-13,71,0.17356585584870832],[117,-13,72,0.1716304329681677],[117,-13,73,0.16976189249517104],[117,-13,74,0.16796108761571116],[117,-13,75,0.16622873381605763],[117,-13,76,0.16456540362135308],[117,-13,77,0.16297152127023784],[117,-13,78,0.16144735732546034],[117,-13,79,0.15999302322049547],[117,-12,64,0.1936511567172282],[117,-12,65,0.19131574602885282],[117,-12,66,0.1890364982054995],[117,-12,67,0.18681509361248616],[117,-12,68,0.1846531112436841],[117,-12,69,0.18255202392874403],[117,-12,70,0.1805131934762656],[117,-12,71,0.17853786575296915],[117,-12,72,0.17662716569886394],[117,-12,73,0.17478209227846508],[117,-12,74,0.17300351336790432],[117,-12,75,0.17129216057814967],[117,-12,76,0.16964862401416503],[117,-12,77,0.1680733469700887],[117,-12,78,0.16656662056040183],[117,-12,79,0.1651285782870966],[117,-11,64,0.19835077695989856],[117,-11,65,0.1960492546819571],[117,-11,66,0.19380257374093868],[117,-11,67,0.19161241972313137],[117,-11,68,0.18948037813550134],[117,-11,69,0.1874079296335328],[117,-11,70,0.18539644518500709],[117,-11,71,0.18344718116978687],[117,-11,72,0.18156127441558956],[117,-11,73,0.17973973716981206],[117,-11,74,0.17798345200724341],[117,-11,75,0.17629316667388883],[117,-11,76,0.17466948886672706],[117,-11,77,0.1731128809494893],[117,-11,78,0.17162365460442164],[117,-11,79,0.17020196542005017],[117,-10,64,0.20298937698166208],[117,-10,65,0.20072181278423562],[117,-10,66,0.19850776733049535],[117,-10,67,0.1963489314239455],[117,-10,68,0.1942468970821296],[117,-10,69,0.19220315278511513],[117,-10,70,0.19021907865991927],[117,-10,71,0.1882959416009351],[117,-10,72,0.18643489032634708],[117,-10,73,0.1846369503705947],[117,-10,74,0.1829030190127251],[117,-10,75,0.18123386014085252],[117,-10,76,0.17963009905255112],[117,-10,77,0.17809221719126622],[117,-10,78,0.1766205468187102],[117,-10,79,0.1752152656232563],[117,-9,64,0.20756952424426311],[117,-9,65,0.20533597801820413],[117,-9,66,0.20315462714932675],[117,-9,67,0.20102716765405093],[117,-9,68,0.1989551980571539],[117,-9,69,0.19694021466092881],[117,-9,70,0.19498360675028337],[117,-9,71,0.19308665173383588],[117,-9,72,0.19125051022100326],[117,-9,73,0.18947622103513084],[117,-9,74,0.187764696162514],[117,-9,75,0.18611671563752152],[117,-9,76,0.18453292236365515],[117,-9,77,0.1830138168706218],[117,-9,78,0.18155975200739216],[117,-9,79,0.1801709275712544],[117,-8,64,0.21209415911947826],[117,-8,65,0.20989468158801328],[117,-8,66,0.20774607547793966],[117,-8,67,0.20565004201387627],[117,-8,68,0.20360818622382282],[117,-8,69,0.20162201222901455],[117,-8,70,0.19969291846971593],[117,-8,71,0.19782219286701364],[117,-8,72,0.196011007920595],[117,-8,73,0.19426041574257225],[117,-8,74,0.1925713430271938],[117,-8,75,0.19094458595665975],[117,-8,76,0.18938080504286658],[117,-8,77,0.18788051990517085],[117,-8,78,0.18644410398413147],[117,-8,79,0.18507177919125006],[117,-7,64,0.21656660623588997],[117,-7,65,0.21440123959961943],[117,-7,66,0.21228542011442186],[117,-7,67,0.21022085420811654],[117,-7,68,0.2082091534074082],[117,-7,69,0.20625182964845679],[117,-7,70,0.20435029052338483],[117,-7,71,0.2025058344627838],[117,-7,72,0.20071964585420554],[117,-7,73,0.19899279009669613],[117,-7,74,0.19732620859121996],[117,-7,75,0.19572071366718236],[117,-7,76,0.19417698344488465],[117,-7,77,0.19269555663399385],[117,-7,78,0.19127682726799244],[117,-7,79,0.18992103937462446],[117,-6,64,0.22099058595013987],[117,-6,65,0.2188593645659015],[117,-6,66,0.21677636591206428],[117,-6,67,0.2147433016145075],[117,-6,68,0.21276178969378923],[117,-6,69,0.2108333498964422],[117,-6,70,0.2089593989622116],[117,-6,71,0.20714124582728788],[117,-6,72,0.20538008676352648],[117,-6,73,0.2036770004537064],[117,-6,74,0.2020329430026817],[117,-6,75,0.20044874288462655],[117,-6,76,0.19892509582621665],[117,-6,77,0.19746255962582004],[117,-6,78,0.19606154890867122],[117,-6,79,0.1947223298180375],[117,-5,64,0.22537022594278755],[117,-5,65,0.22327317703684502],[117,-5,66,0.22122302644249392],[117,-5,67,0.21922149097854093],[117,-5,68,0.21727019515438573],[117,-5,69,0.2153706665220575],[117,-5,70,0.21352433096419132],[117,-5,71,0.21173250791800036],[117,-5,72,0.2099964055352329],[117,-5,73,0.20831711577816892],[117,-5,74,0.20669560945150767],[117,-5,75,0.2051327311703507],[117,-5,76,0.20362919426411685],[117,-5,77,0.20218557561647044],[117,-5,78,0.20080231044122754],[117,-5,79,0.19947968699425866],[117,-4,64,0.22971007293853196],[117,-4,65,0.2276472173545463],[117,-4,66,0.22562993578407342],[117,-4,67,0.22365995023386975],[117,-4,68,0.2217388916971912],[117,-4,69,0.2198682955265776],[117,-4,70,0.21804959674257507],[117,-4,71,0.2162841252784543],[117,-4,72,0.21457310116091444],[117,-4,73,0.2129176296268236],[117,-4,74,0.21131869617585386],[117,-4,75,0.209777161559206],[117,-4,76,0.20829375670427097],[117,-4,77,0.2068690775753006],[117,-4,78,0.20550357997005786],[117,-4,79,0.20419757425246188],[117,-3,64,0.23401510455093089],[117,-3,65,0.23198645753318403],[117,-3,66,0.2300020604357088],[117,-3,67,0.22806364044854888],[117,-3,68,0.22617283504404884],[117,-3,69,0.2243311873703886],[117,-3,70,0.22254014158105928],[117,-3,71,0.22080103810033103],[117,-3,72,0.21911510882470953],[117,-3,73,0.21748347226042564],[117,-3,74,0.21590712859682204],[117,-3,75,0.2143869547158278],[117,-3,76,0.21292369913736975],[117,-3,77,0.21151797690079166],[117,-3,78,0.2101702643822554],[117,-3,79,0.2088808940481337],[117,-2,64,0.2382907412517108],[117,-2,65,0.23629631326403744],[117,-2,66,0.23434481135615093],[117,-2,67,0.23243796789719795],[117,-2,68,0.23057742683425875],[117,-2,69,0.22876473910663364],[117,-2,70,0.22700135799607424],[117,-2,71,0.22528863441300573],[117,-2,72,0.22362781211873617],[117,-2,73,0.22202002288370104],[117,-2,74,0.2204662815816033],[117,-2,75,0.21896748121964105],[117,-2,76,0.21752438790467155],[117,-2,77,0.2161376357453847],[117,-2,78,0.2148077216904558],[117,-2,79,0.2135350003026918],[117,-1,64,0.24254285846445306],[117,-1,65,0.240582656045346],[117,-1,66,0.2386640561285811],[117,-1,67,0.2367887962588725],[117,-1,68,0.23495852685430285],[117,-1,69,0.23317480664136603],[117,-1,70,0.23143909802595197],[117,-1,71,0.2297527624003266],[117,-1,72,0.2281170553860945],[117,-1,73,0.22653312201319975],[117,-1,74,0.2250019918348204],[117,-1,75,0.22352457397835124],[117,-1,76,0.22210165213232325],[117,-1,77,0.22073387946933043],[117,-1,78,0.2194217735049382],[117,-1,79,0.2181657108925844],[117,0,64,0.246777798782766],[117,0,65,0.24485182543711553],[117,0,66,0.2429661312505884],[117,0,67,0.24112245894075313],[117,0,68,0.2393224653937963],[117,0,69,0.23756771712032088],[117,0,70,0.2358596856470866],[117,0,71,0.23419974284474543],[117,0,72,0.23258915619156006],[117,0,73,0.2310290839731588],[117,0,74,0.22952057041818674],[117,0,75,0.22806454077004412],[117,0,76,0.2266617962945594],[117,0,77,0.22531300922367337],[117,0,78,0.22401871763510106],[117,0,79,0.2227793202679882],[117,1,64,0.251002384313054],[117,1,65,0.24911064144098444],[117,1,66,0.24725785454965088],[117,1,67,0.2454457715277671],[117,1,68,0.24367605572777895],[117,1,69,0.24195028144241915],[117,1,70,0.24026992931720115],[117,1,71,0.23863638169891],[117,1,72,0.23705091792007738],[117,1,73,0.23551470951948938],[117,1,74,0.23402881539859655],[117,1,75,0.23259417691400208],[117,1,76,0.2312116129058952],[117,1,77,0.2298818146624867],[117,1,78,0.2286053408204286],[117,1,79,0.22738261220122347],[117,2,64,0.2636658489593239],[117,2,65,0.2618767990181586],[117,2,66,0.2601227357296678],[117,2,67,0.2584054224937143],[117,2,68,0.2567265420590721],[117,2,69,0.25508769206224124],[117,2,70,0.2534903805022107],[117,2,71,0.2519360211512126],[117,2,72,0.2504259289014643],[117,2,73,0.2489613150479395],[117,2,74,0.2475432825070455],[117,2,75,0.24617282097137727],[117,2,76,0.24485080200041476],[117,2,77,0.24357797404722503],[117,2,78,0.2423549574211472],[117,2,79,0.24118223918646764],[117,3,64,0.263662893776741],[117,3,65,0.26187385655063217],[117,3,66,0.26011980646312843],[117,3,67,0.25840250690411476],[117,3,68,0.25672364061210873],[117,3,69,0.25508480521308474],[117,3,70,0.25348750869524606],[117,3,71,0.25193316481978867],[117,3,72,0.25042308846765327],[117,3,73,0.24895849092230615],[117,3,74,0.24754047508842714],[117,3,75,0.2461700306466742],[117,3,76,0.24484802914439208],[117,3,77,0.24357521902232449],[117,3,78,0.24235222057731198],[117,3,79,0.2411795208609775],[117,4,64,0.2636527062057387],[117,4,65,0.2618637128129757],[117,4,66,0.2601097082339948],[117,4,67,0.2583924558242832],[117,4,68,0.2567136382870007],[117,4,69,0.2550748532118367],[117,4,70,0.25347760854981166],[117,4,71,0.25192331802407686],[117,4,72,0.2504132964766971],[117,4,73,0.24894875515146953],[117,4,74,0.247530796912645],[117,4,75,0.24616041139973088],[117,4,76,0.24483847011823578],[117,4,77,0.2435657214664222],[117,4,78,0.24234278569804224],[117,4,79,0.24117014982106488],[117,5,64,0.2678518883730164],[117,5,65,0.26609721747365334],[117,5,66,0.26437621592575417],[117,5,67,0.2626906521815536],[117,5,68,0.26104221533389943],[117,5,69,0.25943251067592726],[117,5,70,0.2578630551966867],[117,5,71,0.25633527301276277],[117,5,72,0.2548504907358875],[117,5,73,0.253409932776584],[117,5,74,0.252014716583721],[117,5,75,0.25066584782014567],[117,5,76,0.24936421547426424],[117,5,77,0.24811058690762944],[117,5,78,0.24690560283851537],[117,5,79,0.24574977226148476],[117,6,64,0.27203478237387807],[117,6,65,0.2703144978252974],[117,6,66,0.26862656592569234],[117,6,67,0.26697276017004573],[117,6,68,0.26535477598524676],[117,6,69,0.2637742263106324],[117,6,70,0.26223263711448147],[117,6,71,0.2607314428465099],[117,6,72,0.2592719818263587],[117,6,73,0.2578554915681169],[117,6,74,0.25648310404075964],[117,6,75,0.2551558408646689],[117,6,76,0.2538746084441015],[117,6,77,0.2526401930356733],[117,6,78,0.2514532557528282],[117,6,79,0.2503143275063089],[117,7,64,0.27619692109996985],[117,7,65,0.2745111010378635],[117,7,66,0.2728563204813324],[117,7,67,0.27123435789981537],[117,7,68,0.26964691498379667],[117,7,69,0.26809561224626755],[117,7,70,0.26658198456014853],[117,7,71,0.26510747663171785],[117,7,72,0.26367343841003554],[117,7,73,0.2622811204324114],[117,7,74,0.26093166910579124],[117,7,75,0.25962612192423],[117,7,76,0.25836540262232105],[117,7,77,0.2571503162646427],[117,7,78,0.2559815442711988],[117,7,79,0.2548596393788626],[117,8,64,0.2803338691987688],[117,8,65,0.2786826045913089],[117,8,66,0.27706107071629177],[117,8,67,0.2754710509353458],[117,8,68,0.27391425311759776],[117,8,69,0.2723923052621211],[117,8,70,0.2709067510563544],[117,8,71,0.2694590453705312],[117,8,72,0.2680505496881162],[117,8,73,0.26668252747228816],[117,8,74,0.2653561394683539],[117,8,75,0.2640724389422528],[117,8,76,0.2628323668550265],[117,8,77,0.2616367469733129],[117,8,78,0.26048628091584203],[117,8,79,0.2593815431359424],[117,9,64,0.2844412258887008],[117,9,65,0.2828246191330589],[117,9,66,0.28123643952892197],[117,9,67,0.2796784752341837],[117,9,68,0.27815244019745383],[117,9,69,0.27665996980156893],[117,9,70,0.27520261644308125],[117,9,71,0.2737818450477726],[117,9,72,0.2723990285221808],[117,9,73,0.27105544314118607],[117,9,74,0.2697522638715363],[117,9,75,0.26849055963147483],[117,9,76,0.2672712884863411],[117,9,77,0.26609529278020805],[117,9,78,0.26496329420352926],[117,9,79,0.2638758887968091],[117,10,64,0.28851462772086894],[117,10,65,0.2869327912816233],[117,10,66,0.2853780844366536],[117,10,67,0.2838523000308552],[117,10,68,0.28235715797925587],[117,10,69,0.2808943009316684],[117,10,70,0.2794652898733381],[117,10,71,0.27807159966162465],[117,10,72,0.27671461449871393],[117,10,73,0.275395623340397],[117,10,74,0.2741158152408072],[117,10,75,0.2728762746332665],[117,10,76,0.2716779765471234],[117,10,77,0.27052178176063535],[117,10,78,0.2694084318898781],[117,10,79,0.2683385444136877],[117,11,64,0.29254975128718047],[117,11,65,0.29100280637614595],[117,11,66,0.28948170036582926],[117,11,67,0.2879882306658442],[117,11,68,0.28652412303096597],[117,11,69,0.2850910272470156],[117,11,70,0.2836905127527574],[117,11,71,0.2823240641978454],[117,11,72,0.28099307693681663],[117,11,73,0.27969885245916754],[117,11,74,0.27844259375540487],[117,11,75,0.2772254006192221],[117,11,76,0.276048264885682],[117,11,77,0.27491206560546244],[117,11,78,0.2738175641551434],[117,11,79,0.2727653992835429],[117,12,64,0.29654231587497804],[117,12,65,0.29503039117199903],[117,12,66,0.2935430223871383],[117,12,67,0.29208201135974377],[117,12,68,0.29064908954436647],[117,12,69,0.2892459137179739],[117,12,70,0.2878740616231925],[117,12,71,0.2865350275476237],[117,12,72,0.2852302178392225],[117,12,73,0.2839609463577809],[117,12,74,0.282728429862405],[117,12,75,0.2815337833351376],[117,12,76,0.2803780152406056],[117,12,77,0.279262022721752],[117,12,78,0.27818658673162644],[117,12,79,0.2771523671012474],[117,13,64,0.30048808606827876],[117,13,65,0.2990113164825233],[117,13,66,0.2975578283967525],[117,13,67,0.29612942793268343],[117,13,68,0.29472785209167784],[117,13,69,0.2933547644833812],[117,13,70,0.2920117509904191],[117,13,71,0.2907003153691862],[117,13,72,0.28942187478672515],[117,13,73,0.28817775529373],[117,13,74,0.28696918723357145],[117,13,75,0.2857973005874859],[117,13,76,0.28466312025581775],[117,13,77,0.28356756127536537],[117,13,78,0.2825114239728129],[117,13,79,0.2814953890542546],[117,14,64,0.3043828742954029],[117,14,65,0.3029413997666933],[117,14,66,0.30152194174294245],[117,14,67,0.3001263104688119],[117,14,68,0.2987562483268191],[117,14,69,0.2974134255875102],[117,14,70,0.2960994360957146],[117,14,71,0.2948157928929241],[117,14,72,0.29356392377578533],[117,14,73,0.29234516679074807],[117,14,74,0.2911607656647597],[117,14,75,0.2900118651721545],[117,14,76,0.28889950643762025],[117,14,77,0.28782462217529947],[117,14,78,0.2867880318640016],[117,14,79,0.2857904368585371],[117,15,64,0.30822254332317384],[117,15,65,0.30681650766289464],[117,15,66,0.30543123379836246],[117,15,67,0.3040685359260187],[117,15,68,0.3027301616315036],[117,15,69,0.30141778766146937],[117,15,70,0.3001330156315073],[117,15,71,0.29887736767023265],[117,15,72,0.2976522819995142],[117,15,73,0.29645910845089074],[117,15,74,0.2952991039180681],[117,15,75,0.29417342774564087],[117,15,76,0.29308313705392447],[117,15,77,0.2920291819999539],[117,15,78,0.2910124009746252],[117,15,79,0.29003351573599095],[117,16,64,0.31200300869755787],[117,16,65,0.31063255846867627],[117,16,66,0.30928162647786467],[117,16,67,0.3079520306907615],[117,16,68,0.30664552370602743],[117,16,69,0.30536378854890817],[117,16,70,0.3041084344009532],[117,16,71,0.30288099226592374],[117,16,72,0.30168291057188684],[117,16,73,0.30051555070952923],[117,16,74,0.2993801825065923],[117,16,75,0.29827797963856456],[117,16,76,0.2972100149755243],[117,16,77,0.29617725586518373],[117,16,78,0.2951805593521139],[117,16,79,0.29422066733315927],[117,17,64,0.3157202411309151],[117,17,65,0.31438552456665514],[117,17,66,0.31306909470202315],[117,17,67,0.3117727730781759],[117,17,68,0.31049831710493325],[117,17,69,0.3092474158762069],[117,17,70,0.30802168592162565],[117,17,71,0.30682266689439397],[117,17,72,0.30565181719537543],[117,17,73,0.30451050953344],[117,17,74,0.3034000264219726],[117,17,75,0.3023215556116822],[117,17,76,0.301276185459601],[117,17,77,0.3002649002343284],[117,17,78,0.2992885753574965],[117,17,79,0.29834797258146767],[117,18,64,0.3193702688356578],[117,18,65,0.3180714347963622],[117,18,66,0.31678966880615433],[117,18,67,0.3155267957772544],[117,18,68,0.3142845777173357],[117,18,69,0.31306470956693366],[117,18,70,0.3118688149730987],[117,18,71,0.31069844199932967],[117,18,72,0.30955505877177897],[117,18,73,0.30844004906176736],[117,18,74,0.30735470780450885],[117,18,75,0.3063002365541811],[117,18,76,0.305277738875234],[117,18,77,0.3042882156699893],[117,18,78,0.3033325604425087],[117,18,79,0.3024115544987414],[117,19,64,0.32294917980441373],[117,19,65,0.3216863767721342],[117,19,66,0.32043943689493815],[117,19,67,0.31921018824120034],[117,19,68,0.31800039719201073],[117,19,69,0.3168117643006775],[117,19,70,0.3156459200885309],[117,19,71,0.31450442077705687],[117,19,72,0.3133887439563577],[117,19,73,0.31230028418997036],[117,19,74,0.31124034855595256],[117,19,75,0.3102101521243617],[117,19,76,0.309210813371028],[117,19,77,0.3082433495276679],[117,19,78,0.3073086718683213],[117,19,79,0.30640758093211745],[117,20,64,0.32645312403678794],[117,20,65,0.3252264991471416],[117,20,66,0.3240145471427317],[117,20,67,0.3228190990230488],[117,20,68,0.32164192530734426],[117,20,69,0.3204847319163486],[117,20,70,0.31934915599034436],[117,20,71,0.31823676164363063],[117,20,72,0.3171490356553692],[117,20,73,0.31608738309684925],[117,20,74,0.3150531228950751],[117,20,75,0.31404748333280774],[117,20,76,0.31307159748495467],[117,20,77,0.3121264985913624],[117,20,78,0.3112131153659863],[117,20,79,0.3103322672424513],[117,21,64,0.32987831571253357],[117,21,65,0.32868801382336094],[117,21,66,0.327511210039385],[117,21,67,0.3263497380563604],[117,21,68,0.32520537228594615],[117,21,69,0.3240798237597517],[117,21,70,0.3229747359698033],[117,21,71,0.32189168064546514],[117,21,72,0.3208321534668065],[117,21,73,0.3197975697144498],[117,21,74,0.3187892598558082],[117,21,75,0.3178084650678382],[117,21,76,0.3168563326962057],[117,21,77,0.3159339116509179],[117,21,78,0.3150421477383973],[117,21,79,0.31418187893000943],[117,22,64,0.3332210353112304],[117,22,65,0.33206719810759594],[117,22,66,0.33092570058165677],[117,22,67,0.3297983788810918],[117,22,68,0.3286870110540294],[117,22,69,0.3275933129755347],[117,22,70,0.32651893421059236],[117,22,71,0.32546545381361003],[117,22,72,0.3244343760644404],[117,22,73,0.32342712614095187],[117,22,74,0.3224450457280618],[117,22,75,0.3214893885633501],[117,22,76,0.3205613159191612],[117,22,77,0.3196618920212375],[117,22,78,0.31879207940386806],[117,22,79,0.31795273420155834],[117,23,64,0.3364776316785545],[117,23,65,0.3353603968136263],[117,23,66,0.3342543604103178],[117,23,67,0.333161360814726],[117,23,68,0.3320831794456424],[117,23,69,0.33102153674359946],[117,23,70,0.3299780880564855],[117,23,71,0.3289544194617597],[117,23,72,0.32795204352525914],[117,23,73,0.3269723949966328],[117,23,74,0.32601682644131225],[117,23,75,0.3250866038091416],[117,23,76,0.32418290193956867],[117,23,77,0.3233068000034467],[117,23,78,0.32245927688142534],[117,23,79,0.3216412064789411],[117,24,64,0.3396445240389636],[117,24,65,0.33856402431030885],[117,24,66,0.33749359989276156],[117,24,67,0.33643509106848213],[117,24,68,0.33539028235157253],[117,24,69,0.33436089845979095],[117,24,70,0.33334860022291873],[117,24,71,0.33235498042780953],[117,24,72,0.3313815596001141],[117,24,73,0.33042978172271237],[117,24,74,0.3295010098907684],[117,24,75,0.32859652190352395],[117,24,76,0.3277175057927373],[117,24,77,0.32686505528781595],[117,24,78,0.32604016521761964],[117,24,79,0.3252437268489466],[117,25,64,0.3427182039548902],[117,25,65,0.3416745665157264],[117,25,66,0.34063990015121576],[117,25,67,0.3396160468087018],[117,25,68,0.33860479381301467],[117,25,69,0.33760786986096203],[117,25,70,0.33662694095256407],[117,25,71,0.33566360625905833],[117,25,72,0.33471939392767164],[117,25,73,0.3337957568231851],[117,25,74,0.33289406820621614],[117,25,75,0.3320156173483232],[117,25,76,0.33116160508384934],[117,25,77,0.3303331392985453],[117,25,78,0.3295312303549557],[117,25,79,0.32875678645457473],[117,26,64,0.34569523723251894],[117,26,65,0.3446885828374583],[117,26,66,0.34368981503663437],[117,26,67,0.34270077716348896],[117,26,68,0.34172325906008755],[117,26,69,0.3407589930944947],[117,26,70,0.3398096501149874],[117,26,71,0.33887683534113755],[117,26,72,0.33796208419175416],[117,26,73,0.33706685804971787],[117,26,74,0.3361925399636257],[117,26,75,0.33534043028635757],[117,26,76,0.33451174225047453],[117,26,77,0.3337075974804955],[117,26,78,0.3329290214420307],[117,26,79,0.332176938827783],[117,27,64,0.34857226577398653],[117,27,65,0.3476027080588097],[117,27,66,0.34663997304810346],[117,27,67,0.34568590517443576],[117,27,68,0.344742296495026],[117,27,69,0.3438108827321046],[117,27,70,0.34289333925021603],[117,27,71,0.34199127697049325],[117,27,72,0.3411062382218951],[117,27,73,0.34023969252943803],[117,27,74,0.3393930323393439],[117,27,75,0.3385675686812081],[117,27,76,0.33776452676710694],[117,27,77,0.336985041527684],[117,27,78,0.3362301530851962],[117,27,79,0.3355008021635325],[117,28,64,0.3513460093760897],[117,28,65,0.35041365417108883],[117,28,66,0.34948707919784866],[117,28,67,0.34856812969352535],[117,28,68,0.34765859962014056],[117,28,69,0.3467602277280231],[117,28,70,0.34587469355630857],[117,28,71,0.3450036133705153],[117,28,72,0.3441485360371993],[117,28,73,0.3433109388357081],[117,28,74,0.3424922232069648],[117,28,75,0.3416937104393809],[117,28,76,0.340916637291819],[117,28,77,0.34016215155364266],[117,28,78,0.3394313075418409],[117,28,79,0.3387250615352292],[117,29,64,0.3540132674755701],[117,29,65,0.3531182121519984],[117,29,66,0.35222791682191545],[117,29,67,0.35134422722528025],[117,29,68,0.3504689389106153],[117,29,69,0.3496037933216275],[117,29,70,0.3487504738210004],[117,29,71,0.34791060165138593],[117,29,72,0.3470857318335866],[117,29,73,0.34627734900195767],[117,29,74,0.3454868631769566],[117,29,75,0.344715605474937],[117,29,76,0.3439648237551108],[117,29,77,0.343235678203716],[117,29,78,0.3425292368553731],[117,29,79,0.3418464710516407],[117,30,64,0.35657092084082875],[117,30,65,0.3557132536899938],[117,30,66,0.3548593493363707],[117,30,67,0.3540110537140048],[117,30,68,0.3531701636319914],[117,30,69,0.3523384228843616],[117,30,70,0.3515175182972673],[117,30,71,0.3507090757134878],[117,30,72,0.3499146559142541],[117,30,73,0.3491357504784151],[117,30,74,0.3483737775788795],[117,30,75,0.3476300777164227],[117,30,76,0.3469059093907903],[117,30,77,0.3462024447091292],[117,30,78,0.3455207649317346],[117,30,79,0.3448618559551185],[117,31,64,0.35901593321014924],[117,31,65,0.3581957328546885],[117,31,66,0.3573783219391059],[117,31,67,0.35656554627620435],[117,31,68,0.3557592036024158],[117,31,69,0.3549610397110356],[117,31,70,0.35417274452289066],[117,31,71,0.3533959480944602],[117,31,72,0.35263221656344745],[117,31,73,0.35188304803182413],[117,31,74,0.3511498683862837],[117,31,75,0.35043402705619286],[117,31,76,0.34973679270896924],[117,31,77,0.3490593488829212],[117,31,78,0.3484027895575354],[117,31,79,0.3477681146612165],[117,32,64,0.3613453528764895],[117,32,65,0.3605626877133667],[117,32,66,0.35978186325730555],[117,32,67,0.3590047248782423],[117,32,68,0.35823307089972245],[117,32,69,0.3574686487555638],[117,32,70,0.35671315108409113],[117,32,71,0.35596821175996607],[117,32,72,0.35523540186360497],[117,32,73,0.3545162255882107],[117,32,74,0.35381211608435437],[117,32,75,0.3531244312421916],[117,32,76,0.35245444941124854],[117,32,77,0.35180336505780757],[117,32,78,0.3511722843598807],[117,32,79,0.3505622207397764],[117,33,64,0.36355631421871104],[117,33,65,0.3628112418934694],[117,33,66,0.3620670869404442],[117,33,67,0.36132569395909875],[117,33,68,0.3605888615132048],[117,33,69,0.3598583383110031],[117,33,70,0.3591358193230873],[117,33,71,0.358422941838027],[117,33,72,0.35772128145572896],[117,33,73,0.3570323480185578],[117,33,74,0.3563575814801559],[117,33,75,0.35569834771204406],[117,33,76,0.35505593424793985],[117,33,77,0.35443154596582294],[117,33,78,0.35382630070773635],[117,33,79,0.35324122483732756],[117,34,64,0.36564603917931765],[117,34,65,0.3649386060911294],[117,34,66,0.3642311931988862],[117,34,67,0.3635256439983069],[117,34,68,0.3628237569401559],[117,34,69,0.36212728163396923],[117,34,70,0.3614379149896577],[117,34,71,0.3607572972970062],[117,34,72,0.36008700824306666],[117,34,73,0.3594285628674637],[117,34,74,0.35878340745555704],[117,34,75,0.3581529153695394],[117,34,76,0.3575383828174058],[117,34,77,0.3569410245598279],[117,34,78,0.35636196955491645],[117,34,79,0.35580225654088177],[117,35,64,0.3676118386887536],[117,35,65,0.3669420795258036],[117,35,66,0.36627147028814144],[117,35,67,0.3656018530291174],[117,35,68,0.36493502572723135],[117,35,69,0.36427273851348296],[117,35,70,0.363616689836761],[117,35,71,0.36296852256729384],[117,35,72,0.36232982003815484],[117,35,73,0.36170210202484465],[117,35,74,0.3610868206628941],[117,35,75,0.36048535630356354],[117,35,76,0.3598990133075795],[117,35,77,0.35932901577693654],[117,35,78,0.3587765032247534],[117,35,79,0.35824252618318836],[117,36,64,0.36945111403614805],[117,36,65,0.3688190513408881],[117,36,66,0.368185295938658],[117,36,67,0.3675516880967743],[117,36,68,0.36692002495651155],[117,36,69,0.3662920567841255],[117,36,70,0.365669483160091],[117,36,71,0.36505394910656885],[117,36,72,0.3644470411531009],[117,36,73,0.3638502833405513],[117,36,74,0.3632651331632417],[117,36,75,0.36269297744935153],[117,36,76,0.36213512817952836],[117,36,77,0.361592818243734],[117,36,78,0.3610671971363162],[117,36,79,0.36055932658931],[117,37,64,0.3711613581865695],[117,37,65,0.3705670019503826],[117,37,66,0.3699701387312191],[117,37,67,0.3693726066619685],[117,37,68,0.3687762016763334],[117,37,69,0.3681826737835721],[117,37,70,0.36759372328163475],[117,37,71,0.3670109969087092],[117,37,72,0.3664360839331732],[117,37,73,0.36587051218197103],[117,37,74,0.3653157440073649],[117,37,75,0.3647731721921304],[117,37,76,0.3642441157931386],[117,37,77,0.3637298159233566],[117,37,78,0.3632314314722499],[117,37,79,0.3627500347645958],[117,38,64,0.37274015704482943],[117,38,65,0.37218350433164216],[117,38,66,0.3716235594179852],[117,38,67,0.37106215794950925],[117,38,68,0.370501094276934],[117,38,69,0.369942117754546],[117,38,70,0.36938692897727987],[117,38,71,0.36883717595639515],[117,38,72,0.36829445023374613],[117,38,73,0.3677602829346636],[117,38,74,0.36723614075940036],[117,38,75,0.36672342191320395],[117,38,76,0.36622345197496814],[117,38,77,0.365737479704485],[117,38,78,0.3652666727882903],[117,38,79,0.364812113524104],[117,39,64,0.37418519066573896],[117,39,65,0.373666225264117],[117,39,66,0.37314321218907887],[117,39,67,0.37261798424211345],[117,39,68,0.3720923338107992],[117,39,69,0.37156800919108646],[117,39,70,0.3710467108483605],[117,39,71,0.370530087617293],[117,39,72,0.3700197328404857],[117,39,73,0.36951718044591664],[117,39,74,0.36902390096314874],[117,39,75,0.3685412974783606],[117,39,76,0.368070701528149],[117,39,77,0.3676133689321303],[117,39,78,0.36717047556432747],[117,39,79,0.3667431130633504],[117,40,64,0.3754942344108979],[117,40,65,0.3750129265141674],[117,40,66,0.37452684588479923],[117,40,67,0.3740378221193962],[117,40,68,0.37354764525780815],[117,40,69,0.37305806212922243],[117,40,70,0.3725707726372349],[117,40,71,0.3720874259839171],[117,40,72,0.3716096168328744],[117,40,73,0.37113888141131457],[117,40,74,0.37067669355107924],[117,40,75,0.37022446066870185],[117,40,76,0.36978351968444056],[117,40,77,0.3693551328803142],[117,40,78,0.36894048369712573],[117,40,79,0.3685406724704848],[117,41,64,0.3766651600519655],[117,41,65,0.376221465965893],[117,41,66,0.3757723051534094],[117,41,67,0.3753195036420086],[117,41,68,0.3748648487351147],[117,41,69,0.37441008538198917],[117,41,70,0.3739569124868344],[117,41,71,0.3735069791571022],[117,41,72,0.37306188089100756],[117,41,73,0.3726231557042605],[117,41,74,0.37219228019597816],[117,41,75,0.3717706655538282],[117,41,76,0.37135965349836514],[117,41,77,0.3709605121665756],[117,41,78,0.37057443193462836],[117,41,79,0.37020252117982944],[117,42,64,0.3776959368204724],[117,42,65,0.3772897986980453],[117,42,66,0.3768775315545597],[117,42,67,0.37646095748098685],[117,42,68,0.376041860651831],[117,42,69,0.3756219837188598],[117,42,70,0.375203024144251],[117,42,71,0.3747866304731642],[117,42,72,0.37437439854573806],[117,42,73,0.37396786764852347],[117,42,74,0.3735685166053194],[117,42,75,0.3731777598074589],[117,42,76,0.37279694318350565],[117,42,77,0.37242734010838374],[117,42,78,0.3720701472519271],[117,42,79,0.37172648036685785],[117,43,64,0.3785846324041008],[117,43,65,0.3782159780069438],[117,43,66,0.3778405646082732],[117,43,67,0.3774602099922335],[117,43,68,0.37707669480843586],[117,43,69,0.37669175898950746],[117,43,70,0.37630709810828417],[117,43,71,0.3759243596746591],[117,43,72,0.37554513937208134],[117,43,73,0.3751709772337215],[117,43,74,0.3748033537582658],[117,43,75,0.37444368596539024],[117,43,76,0.37409332339087165],[117,43,77,0.37375354402136096],[117,43,78,0.37342555016880374],[117,43,79,0.37311046428451833],[117,44,64,0.3793294138894756],[117,44,65,0.3789981563754421],[117,44,66,0.3786595427895344],[117,44,67,0.3783153862361779],[117,44,68,0.37796746344095256],[117,44,69,0.3776175111919462],[117,44,70,0.3772672227209914],[117,44,71,0.3769182440247898],[117,44,72,0.3765721701259285],[117,44,73,0.3762305412737928],[117,44,74,0.3758948390853512],[117,44,75,0.37556648262584974],[117,44,76,0.3752468244293849],[117,44,77,0.37493714645937065],[117,44,78,0.374638656008893],[117,44,79,0.374352481540955],[117,45,64,0.37992854865148207],[117,45,65,0.37963458638795766],[117,45,66,0.37933270446849937],[117,45,67,0.37902471094263196],[117,45,68,0.3787123782099129],[117,45,69,0.3783974394850695],[117,45,70,0.37808158520326207],[117,45,71,0.37776645936548325],[117,45,72,0.3774536558240894],[117,45,73,0.3771447145084759],[117,45,74,0.37684111759086775],[117,45,75,0.37654428559226505],[117,45,76,0.3762555734285099],[117,45,77,0.37597626639649406],[117,45,78,0.3757075761004959],[117,45,79,0.37545063631865566],[117,46,64,0.38038040518906113],[117,46,65,0.3801236215915188],[117,46,66,0.3798583887962774],[117,46,67,0.37958650942078875],[117,46,68,0.3793097511340573],[117,46,69,0.37902984314552923],[117,46,70,0.3787484726343611],[117,46,71,0.37846728111907674],[117,46,72,0.3781878607676087],[117,46,73,0.3779117506477366],[117,46,74,0.37764043291789456],[117,46,75,0.37737532895838455],[117,46,76,0.37711779544296387],[117,46,77,0.3768691203508278],[117,46,78,0.3766305189189729],[117,46,79,0.3764031295349515],[117,47,64,0.3806834539075178],[117,47,65,0.38046371730285933],[117,47,66,0.3802350365363171],[117,47,67,0.37999920841440094],[117,47,68,0.37975799546880273],[117,47,69,0.3795131224689954],[117,47,70,0.37926627287547565],[117,47,71,0.379019085233653],[117,47,72,0.3787731495083878],[117,47,73,0.37853000335918247],[117,47,74,0.3782911283560078],[117,47,75,0.37805794613579147],[117,47,76,0.3778318144995456],[117,47,77,0.3776140234501469],[117,47,78,0.37740579117076106],[117,47,79,0.3772082599439174],[117,48,64,0.38083626784734215],[117,48,65,0.3806534313615677],[117,48,66,0.38046119084140184],[117,48,67,0.3802613369021423],[117,48,68,0.38005562652948816],[117,48,69,0.37984577961580046],[117,48,70,0.37963347543727527],[117,48,71,0.3794203490720339],[117,48,72,0.37920798775912934],[117,48,73,0.378997927198476],[117,48,74,0.37879164779168395],[117,48,75,0.37859057082382386],[117,48,76,0.3783960545860999],[117,48,77,0.3782093904394449],[117,48,78,0.37803179881902865],[117,48,79,0.37786442517968566],[117,49,64,0.3808375233595218],[117,49,65,0.38069142482926316],[117,49,66,0.3805354979762289],[117,49,67,0.3803715268431245],[117,49,68,0.3802012624593649],[117,49,69,0.38002641940093695],[117,49,70,0.3798486722914519],[117,49,71,0.37966965224439403],[117,49,72,0.37949094324656085],[117,49,73,0.37931407848270476],[117,49,74,0.3791405366013565],[117,49,75,0.37897173792185623],[117,49,76,0.37880904058257014],[117,49,77,0.37865373663030655],[117,49,78,0.37850704805092183],[117,49,79,0.37837012274112464],[117,50,64,0.3806860007273664],[117,50,65,0.3805764626348206],[117,50,66,0.3804567079855918],[117,50,67,0.38032851386759264],[117,50,68,0.380193624942357],[117,50,69,0.3800537500284342],[117,50,70,0.37991055862626344],[117,50,71,0.37976567738452416],[117,50,72,0.3796206865079695],[117,50,73,0.3794771161067404],[117,50,74,0.3793364424871532],[117,50,75,0.3792000843839748],[117,50,76,0.37906939913417226],[117,50,77,0.378945678792145],[117,50,78,0.3788301461864349],[117,50,79,0.3787239509179168],[117,51,64,0.3803805847348327],[117,51,65,0.38030741416563807],[117,51,66,0.3802236753081626],[117,51,67,0.3801311379127935],[117,51,68,0.38003153986058535],[117,51,69,0.37992658377011024],[117,51,70,0.37981793354607984],[117,51,71,0.37970721086974113],[117,51,72,0.3795959916310434],[117,51,73,0.37948580230258355],[117,51,74,0.3793781162553166],[117,51,75,0.3792743500160476],[117,51,76,0.37917585946669075],[117,51,77,0.3790839359853063],[117,51,78,0.3789998025289068],[117,51,79,0.37892460965803876],[117,52,64,0.3799202651813539],[117,52,65,0.3798832538049419],[117,52,66,0.3798353593358665],[117,52,67,0.3797783438040093],[117,52,68,0.3797139378966505],[117,52,69,0.3796438375886859],[117,52,70,0.37956970071491947],[117,52,71,0.3794931434844291],[117,52,72,0.3794157369370069],[117,52,73,0.3793390033416781],[117,52,74,0.37926441253728715],[117,52,75,0.37919337821516674],[117,52,76,0.37912725414387594],[117,52,77,0.3790673303360165],[117,52,78,0.37901482915712104],[117,52,79,0.3789709013766185],[117,53,64,0.37930413734317936],[117,53,65,0.3793030614151424],[117,53,66,0.3792908249188629],[117,53,67,0.37926918178077196],[117,53,68,0.3792398550806837],[117,53,69,0.37920453370528123],[117,53,70,0.3791648689439897],[117,53,71,0.3791224710272314],[117,53,72,0.3790789056070656],[117,53,73,0.37903569018021444],[117,53,74,0.3789942904534695],[117,53,75,0.3789561166514867],[117,53,76,0.3789225197669619],[117,53,77,0.37889478775319396],[117,53,78,0.378874141659029],[117,53,79,0.37886173170619164],[117,54,64,0.3785314023812052],[117,54,65,0.3785660227672193],[117,54,66,0.3785892428161116],[117,54,67,0.3786028079682363],[117,54,68,0.37860843328215177],[117,54,69,0.37860780011127204],[117,54,70,0.37860255272321885],[117,54,71,0.3785942948618762],[117,54,72,0.37858458625214586],[117,54,73,0.3785749390474057],[117,54,74,0.37856681421966815],[117,54,75,0.37856161789244214],[117,54,76,0.37856069761629474],[117,54,77,0.37856533858711705],[117,54,78,0.3785767598070888],[117,54,79,0.37859611018834766],[117,55,64,0.37760136769531955],[117,55,65,0.3776714299161561],[117,55,66,0.3777298900915459],[117,55,67,0.37777848479373216],[117,55,68,0.37781892064643025],[117,55,69,0.3778528710245234],[117,55,70,0.37788197269678814],[117,55,71,0.37790782241164583],[117,55,72,0.377931973425941],[117,55,73,0.377955931976747],[117,55,74,0.3779811536961989],[117,55,75,0.37800903996935326],[117,55,76,0.3780409342350737],[117,55,77,0.3780781182299461],[117,55,78,0.37812180817521746],[117,55,79,0.3781731509067656],[117,56,64,0.3765134472252582],[117,56,65,0.37661868152242706],[117,56,66,0.37671215045584944],[117,56,67,0.37679558134849633],[117,56,68,0.3768706719761468],[117,56,69,0.37693908729000325],[117,56,70,0.37700245608267136],[117,56,71,0.3770623675974971],[117,56,72,0.37712036808126637],[117,56,73,0.37717795728026177],[117,56,74,0.3772365848796828],[117,56,75,0.3772976468864242],[117,56,76,0.37736248195521344],[117,56,77,0.37743236765811117],[117,56,78,0.37750851669736873],[117,56,79,0.37759207306164844],[117,57,64,0.3752671616979403],[117,57,65,0.3754072831194991],[117,57,66,0.3755355145538093],[117,57,67,0.37565357369455177],[117,57,68,0.3757631490572654],[117,57,69,0.37586589672474546],[117,57,70,0.37596343703614976],[117,57,71,0.3760573512198022],[117,57,72,0.3761491779696984],[117,57,73,0.3762404099657108],[117,57,74,0.37633249033749805],[117,57,75,0.3764268090721118],[117,57,76,0.37652469936530486],[117,57,77,0.37662743391654274],[117,57,78,0.3767362211677123],[117,57,79,0.3768522014855358],[117,58,64,0.37386213882132874],[117,58,65,0.37403684732739745],[117,58,66,0.37419958019728433],[117,58,67,0.3743520451167775],[117,58,68,0.37449592092995065],[117,58,69,0.3746328544072012],[117,58,70,0.37476445695734295],[117,58,71,0.3748923012837466],[117,58,72,0.3750179179845301],[117,58,73,0.37514279209679485],[117,58,74,0.3752683595849188],[117,58,75,0.3753960037728912],[117,58,76,0.37552705172069983],[117,58,77,0.3756627705447685],[117,58,78,0.37580436368244086],[117,58,79,0.3759529671005179],[117,59,64,0.3722981134248038],[117,59,65,0.37250709401232157],[117,59,66,0.3727040525437816],[117,59,67,0.37289068632015815],[117,59,68,0.3730686641042039],[117,59,69,0.3732396229109709],[117,59,70,0.3734051647427441],[117,59,71,0.37356685326837746],[117,59,72,0.37372621044703735],[117,59,73,0.3738847130963455],[117,59,74,0.37404378940493743],[117,59,75,0.37420481538941686],[117,59,76,0.3743691112957182],[117,59,77,0.3745379379448766],[117,59,78,0.37471249302319953],[117,59,79,0.374893907316848],[117,60,64,0.37057492754600113],[117,60,65,0.3708178503922658],[117,60,66,0.37104874422059225],[117,60,67,0.37126929557216903],[117,60,68,0.3714811627202256],[117,60,69,0.37168597248287305],[117,60,70,0.371885316980721],[117,60,71,0.37208075033926025],[117,60,72,0.3722737853360163],[117,60,73,0.3724658899924659],[117,60,74,0.37265848411073227],[117,60,75,0.37285293575503975],[117,60,76,0.3730505576779401],[117,60,77,0.37325260369130897],[117,60,78,0.3734602649821085],[117,60,79,0.3736746663729221],[117,61,64,0.36869253046419065],[117,61,65,0.3689690510887147],[117,61,66,0.36923357539455914],[117,61,67,0.36948777879036415],[117,61,68,0.36973330865357246],[117,61,69,0.3699717811654145],[117,61,70,0.3702047780910434],[117,61,71,0.37043384350480485],[117,61,72,0.37066048046064964],[117,61,73,0.37088614760767746],[117,61,74,0.3711122557508342],[117,61,75,0.3713401643567357],[117,61,76,0.3715711780046355],[117,61,77,0.37180654278253356],[117,61,78,0.3720474426284215],[117,61,79,0.37229499561667023],[117,62,64,0.36665097868016455],[117,62,65,0.3669607381243886],[117,62,66,0.36725857378744875],[117,62,67,0.36754614957514375],[117,62,68,0.3678251015650839],[117,62,69,0.3680970348636393],[117,62,70,0.36836352040841547],[117,62,71,0.36862609171624217],[117,62,72,0.36888624157668315],[117,62,73,0.36914541869105494],[117,62,74,0.3694050242569772],[117,62,75,0.36966640849842675],[117,62,76,0.36993086714131507],[117,62,77,0.37019963783458293],[117,62,78,0.3704738965168104],[117,62,79,0.3707547537283482],[117,63,64,0.36445043584258097],[117,63,65,0.364793060866983],[117,63,66,0.36512387463687374],[117,63,67,0.36544452918764425],[117,63,68,0.36575664889552495],[117,63,69,0.3660618273563046],[117,63,70,0.3663616242099621],[117,63,71,0.36665756191119614],[117,63,72,0.3669511224458617],[117,63,73,0.36724374399329895],[117,63,74,0.3675368175345809],[117,63,75,0.3678316834066486],[117,63,76,0.3681296278023548],[117,63,77,0.3684318792164096],[117,63,78,0.36873960483722795],[117,63,79,0.36905390688468254],[117,64,64,0.3620911726208652],[117,64,65,0.3624662759189996],[117,64,66,0.3628297206028635],[117,64,67,0.3631831464728519],[117,64,68,0.363528165805041],[117,64,69,0.36386636025147484],[117,64,70,0.3641992776867591],[117,64,71,0.36452842900094506],[117,64,72,0.3648552848387121],[117,64,73,0.36518127228483255],[117,64,74,0.3655077714959523],[117,64,75,0.36583611227864615],[117,64,76,0.36616757061377514],[117,64,77,0.3665033651271401],[117,64,78,0.36684465350642625],[117,64,79,0.3671925288644464],[117,65,64,0.35957356652458],[117,65,65,0.3599807469535892],[117,65,66,0.36037646162],[117,65,67,0.360762337727854],[117,65,68,0.3611399750573435],[117,65,69,0.361510942886457],[117,65,70,0.3618767768593316],[117,65,71,0.36223897580129416],[117,65,72,0.3625989984805994],[117,65,73,0.36295826031685063],[117,65,74,0.363318130036134],[117,65,75,0.36367992627282686],[117,65,76,0.36404491411810774],[117,65,77,0.36441430161516],[117,65,78,0.3647892362010665],[117,65,79,0.365170801095402],[117,66,64,0.35689810166934316],[117,66,65,0.35733694449647585],[117,66,66,0.3577645546951932],[117,66,67,0.35818254651530224],[117,66,68,0.3585925068486975],[117,66,69,0.3589959921721467],[117,66,70,0.35939452543718886],[117,66,71,0.359789592907127],[117,66,72,0.3601826409411236],[117,66,73,0.3605750727253846],[117,66,74,0.3609682449514619],[117,66,75,0.3613634644416369],[117,66,76,0.36176198472140975],[117,66,77,0.36216500253908923],[117,66,78,0.3625736543324788],[117,66,79,0.36298901264266675],[117,67,64,0.3540653684891758],[117,67,65,0.3545354456538521],[117,67,66,0.3549945636509822],[117,67,67,0.3554443234219777],[117,67,68,0.35588629858160403],[117,67,69,0.3563220323816776],[117,67,70,0.356753034622289],[117,67,71,0.3571807785105325],[117,67,72,0.357606697466752],[117,67,73,0.3580321818782838],[117,67,74,0.3584585758007369],[117,67,75,0.35888717360676015],[117,67,76,0.35931921658233057],[117,67,77,0.3597558894705552],[117,67,78,0.36019831696297955],[117,67,79,0.3606475601384136],[117,68,64,0.3510760633954182],[117,68,65,0.35157693378637817],[117,68,66,0.35206715881449585],[117,68,67,0.35254832576258743],[117,68,68,0.35302199458330324],[117,68,69,0.3534896948835002],[117,68,70,0.35395292285655955],[117,68,71,0.3544131381626312],[117,68,72,0.35487176075681043],[117,68,73,0.35533016766523273],[117,68,74,0.35578968970912406],[117,68,75,0.35625160817675644],[117,68,76,0.35671715144334515],[117,68,77,0.3571874915388752],[117,68,78,0.35766374066385637],[117,68,79,0.3581469476530128],[117,69,64,0.34793098838215747],[117,69,65,0.34846219812923174],[117,69,66,0.3489831166520196],[117,69,67,0.3494953172287401],[117,69,68,0.3500003457690487],[117,69,69,0.35049971781884054],[117,69,70,0.3509949155134247],[117,69,71,0.35148738447904926],[117,69,72,0.35197853068278573],[117,69,73,0.3524697172307546],[117,69,74,0.35296226111473333],[117,69,75,0.35345742990709417],[117,69,76,0.3539564384041077],[117,69,77,0.3544604452176022],[117,69,78,0.3549705493149765],[117,69,79,0.3554877865075723],[117,70,64,0.3446310505780806],[117,70,65,0.3451921333581204],[117,70,66,0.345743319349082],[117,70,67,0.34628616748301666],[117,70,68,0.3468222092500689],[117,70,69,0.34735294572345654],[117,70,70,0.3478798445332547],[117,70,71,0.34840433678896177],[117,70,72,0.3489278139508564],[117,70,73,0.34945162465012525],[117,70,74,0.3499770714578079],[117,70,75,0.35050540760249926],[117,70,76,0.35103783363685126],[117,70,77,0.3515754940528616],[117,70,78,0.3521194738459462],[117,70,79,0.3526707950278042],[117,71,64,0.34117726174490615],[117,71,65,0.34176773910141134],[117,71,66,0.34234875433621254],[117,71,67,0.3429218516982848],[117,71,68,0.3434885478863623],[117,71,69,0.34405032909383426],[117,71,70,0.34460864800288404],[117,71,71,0.34516492072784666],[117,71,72,0.345720523707795],[117,71,73,0.34627679054833405],[117,71,74,0.3468350088126501],[117,71,75,0.3473964167617545],[117,71,76,0.3479622000439644],[117,71,77,0.34853348833360764],[117,71,78,0.3491113519189487],[117,71,79,0.34969679823934485],[117,72,64,0.3375707377223286],[117,72,65,0.3381901193983106],[117,72,66,0.3388005137603058],[117,72,67,0.33940345004219274],[117,72,68,0.3400004297842629],[117,72,69,0.3405929238977652],[117,72,70,0.3411823696791349],[117,72,71,0.341770167773887],[117,72,72,0.34235767909018033],[117,72,73,0.3429462216620317],[117,72,74,0.34353706746223145],[117,72,75,0.34413143916489397],[117,72,76,0.34473050685768997],[117,72,77,0.3453353847037455],[117,72,78,0.34594712755320584],[117,72,79,0.34656672750447365],[117,73,64,0.3338126978193756],[117,73,65,0.33446048210299373],[117,73,66,0.33509979390149297],[117,73,67,0.33573214710674515],[117,73,68,0.33635902773868176],[117,73,69,0.33698189102920784],[117,73,70,0.33760215845625235],[117,73,71,0.3382212147279307],[117,73,72,0.33884040471682714],[117,73,73,0.339461030344376],[117,73,74,0.3400843474153954],[117,73,75,0.3407115624027014],[117,73,76,0.3413438291818561],[117,73,77,0.3419822457160301],[117,73,78,0.3426278506909797],[117,73,79,0.34328162010014573],[117,74,64,0.32990446415235586],[117,74,65,0.3305801382348657],[117,74,66,0.3312478945356972],[117,74,67,0.33190923128313626],[117,74,68,0.332565618620193],[117,74,69,0.333218495707603],[117,74,70,0.33386926777741927],[117,74,71,0.3345193031371715],[117,74,72,0.3351699301245988],[117,74,73,0.3358224340129369],[117,74,74,0.3364780538668122],[117,74,75,0.3371379793486711],[117,74,76,0.3378033474757972],[117,74,77,0.3384752393278986],[117,74,78,0.3391546767052627],[117,74,79,0.3398426187374902],[117,75,64,0.32584746092932015],[117,75,65,0.3265505012748695],[117,75,66,0.3272462182427947],[117,75,67,0.32793609408176044],[117,75,68,0.32862158270689146],[117,75,69,0.3293041068215685],[117,75,70,0.3299850549902771],[117,75,71,0.3306657786624805],[117,75,72,0.3313475891475302],[117,75,73,0.3320317545405882],[117,75,74,0.33271949659961664],[117,75,75,0.333411987573364],[117,75,76,0.33411034698039754],[117,75,77,0.3348156383391666],[117,75,78,0.33552886584909447],[117,75,79,0.3362509710227079],[117,76,64,0.3216432136809223],[117,76,65,0.3223730864077356],[117,76,66,0.3230962696602716],[117,76,67,0.323814229397295],[117,76,68,0.32452840296091323],[117,76,69,0.32524019621686784],[117,76,70,0.32595098064634576],[117,76,71,0.32666209038928057],[117,76,72,0.3273748192391561],[117,76,73,0.32809041758928537],[117,76,74,0.3288100893306264],[117,76,75,0.32953498870105513],[117,76,76,0.33026621708615334],[117,76,77,0.3310048197714909],[117,76,78,0.331751782646403],[117,76,79,0.33250802885926944],[117,77,64,0.31729334843788415],[117,77,65,0.31804950971037127],[117,77,66,0.3187996546825764],[117,77,67,0.3195452327190505],[117,77,68,0.32028766424981436],[117,77,69,0.32102833792884244],[117,77,70,0.32176860774453586],[117,77,71,0.3225097900821569],[117,77,72,0.32325316073823396],[117,77,73,0.3239999518869146],[117,77,74,0.3247513489983249],[117,77,75,0.32550848770885665],[117,77,76,0.326272450643439],[117,77,77,0.3270442641897764],[117,77,78,0.3278248952245497],[117,77,79,0.3286152477915927],[117,78,64,0.3127995908549721],[117,78,65,0.31358148728629875],[117,78,66,0.3143580796060782],[117,78,67,0.31513080028649904],[117,78,68,0.3159010525127183],[117,78,69,0.31667020735922474],[117,78,70,0.3174396009186664],[117,78,71,0.31821053138311495],[117,78,72,0.3189842560777775],[117,78,73,0.31976198844712844],[117,78,74,0.32054489499352706],[117,78,75,0.3213340921682348],[117,78,76,0.32213064321489404],[117,78,77,0.3229355549654477],[117,78,78,0.32374977458849846],[117,78,79,0.32457418629011736],[117,79,64,0.3081637652813629],[117,79,65,0.3089708343460239],[117,79,66,0.30977335021950936],[117,79,67,0.3105727281898635],[117,79,68,0.3113703538711178],[117,79,69,0.31216758039721326],[117,79,70,0.3129657255688699],[117,79,71,0.31376606895337233],[117,79,72,0.3145698489372834],[117,79,73,0.31537825973205597],[117,79,74,0.3161924483326134],[117,79,75,0.3170135114288073],[117,79,76,0.31784249226981787],[117,79,77,0.318680377481475],[117,79,78,0.3195280938364992],[117,79,79,0.3203865049776714],[117,80,64,0.30338779377762537],[117,80,65,0.30421946423355484],[117,80,66,0.3050473708401147],[117,80,67,0.3058729114159855],[117,80,68,0.30669745368454415],[117,80,69,0.30752233248502325],[117,80,70,0.30834884693710185],[117,80,71,0.3091782575588966],[117,80,72,0.3100117833383657],[117,80,73,0.31085059875809573],[117,80,74,0.3116958307735414],[117,80,75,0.31254855574462814],[117,80,76,0.31340979632078036],[117,80,77,0.3142805182793562],[117,80,78,0.31516162731748626],[117,80,79,0.31605396579732564],[117,81,64,0.29847369507921184],[117,81,65,0.2993293873989696],[117,81,66,0.3001821432954066],[117,81,67,0.3010333428393709],[117,81,68,0.30188433555100636],[117,81,69,0.3027364376278172],[117,81,70,0.30359092912665464],[117,81,71,0.3044490510995911],[117,81,72,0.3053120026836983],[117,81,73,0.30618093814469466],[117,81,74,0.30705696387453785],[117,81,75,0.30794113534286516],[117,81,76,0.30883445400235177],[117,81,77,0.3097378641479632],[117,81,78,0.31065224973009986],[117,81,79,0.31157843112164624],[117,82,64,0.29342358350633],[117,82,65,0.29430271031690347],[117,82,66,0.2951797658503936],[117,82,67,0.29605611215828587],[117,82,68,0.2969330802520727],[117,82,69,0.2978119673478863],[117,82,70,0.2986940340655488],[117,82,71,0.2995805015820034],[117,82,72,0.3004725487391415],[117,82,73,0.30137130910599186],[117,82,74,0.3022778679953505],[117,82,75,0.3031932594347481],[117,82,76,0.30411846309183166],[117,82,77,0.30505440115413107],[117,82,78,0.3060019351632125],[117,82,79,0.30696186280322846],[117,83,64,0.28823966782043975],[117,83,65,0.28914163435119744],[117,83,66,0.29004243208052666],[117,83,67,0.290943404776142],[117,83,68,0.2918458646428317],[117,83,69,0.2927510895833192],[117,83,70,0.293660320414039],[117,83,71,0.29457475803579103],[117,83,72,0.29549556055928616],[117,83,73,0.29642384038555397],[117,83,74,0.2973606612412857],[117,83,75,0.2983070351690139],[117,83,76,0.2992639194722019],[117,83,77,0.30023221361521557],[117,83,78,0.3012127560781798],[117,83,79,0.30220632116672874],[117,84,64,0.28292425002726096],[117,84,65,0.2838484545655955],[117,84,66,0.28477242969025085],[117,84,67,0.28569750062805965],[117,84,68,0.2866249604866223],[117,84,69,0.28755606753105034],[117,84,70,0.2884920424161251],[117,84,71,0.28943406537383476],[117,84,72,0.29038327335630687],[117,84,73,0.2913407571340988],[117,84,74,0.2923075583499297],[117,84,75,0.2932846665277466],[117,84,76,0.29427301603720146],[117,84,77,0.29527348301351375],[117,84,78,0.29628688223271593],[117,84,79,0.2973139639422958],[117,85,64,0.2774797241261505],[117,85,65,0.27842555848035055],[117,85,66,0.2793721392770201],[117,85,67,0.28032077295247027],[117,85,68,0.28127273323439594],[117,85,69,0.2822292584341483],[117,85,70,0.28319154869492835],[117,85,71,0.28416076319586425],[117,85,72,0.28513801731198735],[117,85,73,0.286124379730071],[117,85,74,0.28712086952041604],[117,85,75,0.2881284531644742],[117,85,76,0.28914804153838747],[117,85,77,0.29018048685241715],[117,85,78,0.2912265795462612],[117,85,79,0.29228704514027115],[117,86,64,0.2719085748061151],[117,86,65,0.27287542477500254],[117,86,66,0.27384403304104016],[117,86,67,0.27481568700801917],[117,86,68,0.27579164074896834],[117,86,69,0.2767731123136019],[117,86,70,0.2777612809921949],[117,86,71,0.2787572845358507],[117,86,72,0.27976221633317533],[117,86,73,0.280777122543322],[117,86,74,0.2818029991854913],[117,86,75,0.28284078918477645],[117,86,76,0.28389137937443276],[117,86,77,0.28495559745454413],[117,86,78,0.28603420890708636],[117,86,79,0.28712791386739883],[117,87,64,0.2662133760883342],[117,87,65,0.2672006219372049],[117,87,66,0.26819067344061703],[117,87,67,0.2691847987356458],[117,87,68,0.27018423197404096],[117,87,69,0.2711901706444867],[117,87,70,0.2722037728518026],[117,87,71,0.27322615455304833],[117,87,72,0.2742583867505446],[117,87,73,0.2753014926417761],[117,87,74,0.27635644472626275],[117,87,75,0.27742416186928454],[117,87,76,0.27850550632254367],[117,87,77,0.2796012807017344],[117,87,78,0.280712224921021],[117,87,79,0.2818390130844345],[117,88,64,0.26039678991504345],[117,88,65,0.2614038068574501],[117,88,66,0.2624147117929578],[117,88,67,0.2634307533656939],[117,88,68,0.2644531455478438],[117,88,69,0.26548306497635943],[117,88,70,0.26652164824712443],[117,88,71,0.2675699891665366],[117,88,72,0.2686291359605214],[117,88,73,0.2697000884409404],[117,88,74,0.2707837951294839],[117,88,75,0.27188115033892973],[117,88,76,0.2729929912118548],[117,88,77,0.2741200947167676],[117,88,78,0.2752631746016636],[117,88,79,0.2764228783050133],[117,89,64,0.2544615646850795],[117,89,65,0.2554877233699938],[117,89,66,0.256518886820728],[117,89,67,0.2575562839703475],[117,89,68,0.2586011083616948],[117,89,69,0.25965451549817997],[117,89,70,0.26071762015254424],[117,89,71,0.2617914936335575],[117,89,72,0.26287716101066494],[117,89,73,0.2639755982965437],[117,89,74,0.26508772958766336],[117,89,75,0.26621442416272767],[117,89,76,0.2673564935390861],[117,89,77,0.2685146884870849],[117,89,78,0.26968969600235493],[117,89,79,0.27088213623605345],[117,90,64,0.24841053373583388],[117,90,65,0.24945520073972588],[117,90,66,0.25050602314411097],[117,90,67,0.2515642099611445],[117,90,68,0.2526309340632284],[117,90,69,0.2537073295475102],[117,90,70,0.2547944890588769],[117,90,71,0.25589346107140115],[117,90,72,0.257005247128257],[117,90,73,0.2581307990400643],[117,90,74,0.2592710160417582],[117,90,75,0.26042674190785753],[117,90,76,0.2615987620262238],[117,90,77,0.2627878004302785],[117,90,78,0.26399451678967867],[117,90,79,0.26521950335946354],[117,91,64,0.242246613771812],[117,91,65,0.24330915209518472],[117,91,66,0.24437902971856493],[117,91,67,0.2454574355317621],[117,91,68,0.246545521504487],[117,91,69,0.24764440006418437],[117,91,70,0.24875514143288502],[117,91,71,0.24987877092303115],[117,91,72,0.2510162661922932],[117,91,73,0.2521685544573371],[117,91,74,0.25333650966663995],[117,91,75,0.2545209496322247],[117,91,76,0.2557226331204093],[117,91,77,0.25694225690153494],[117,91,78,0.25818045275867485],[117,91,79,0.25943778445533644],[117,92,64,0.23597280323952485],[117,92,65,0.2370525728074424],[117,92,66,0.23814089821800877],[117,92,67,0.23923894804580342],[117,92,68,0.2403478531346045],[117,92,69,0.24146870398818102],[117,92,70,0.24260254812062518],[117,92,71,0.24375038736618468],[117,92,72,0.24491317514860927],[117,92,73,0.24609181370997302],[117,92,74,0.2472871512990682],[117,92,75,0.2484999793192437],[117,92,76,0.2497310294357804],[117,92,77,0.2509809706427716],[117,92,78,0.25225040628950646],[117,92,79,0.25353987106637293],[117,93,64,0.2295921806490379],[117,93,65,0.2306885388151843],[117,93,66,0.23179470136375713],[117,93,67,0.23291181636990607],[117,93,68,0.2340409933374046],[117,93,69,0.2351833006020185],[117,93,70,0.23633976269494272],[117,93,71,0.23751135766626255],[117,93,72,0.23869901436845822],[117,93,73,0.23990360969990707],[117,93,74,0.2411259658084882],[117,93,75,0.24236684725515484],[117,93,76,0.24362695813757032],[117,93,77,0.24490693917377587],[117,93,78,0.24620736474588806],[117,93,79,0.247528739903841],[117,94,64,0.22310790284202958],[117,94,65,0.22422020489583636],[117,94,66,0.22534359119905747],[117,94,67,0.226479189152029],[117,94,68,0.22762808671376622],[117,94,69,0.22879132981752612],[117,94,70,0.229969919746968],[117,94,71,0.23116481047286674],[117,94,72,0.23237690595039465],[117,94,73,0.2336070573769321],[117,94,74,0.23485606041050744],[117,94,75,0.23612465234873134],[117,94,76,0.23741350926832494],[117,94,77,0.23872324312520654],[117,94,78,0.2400543988151359],[117,94,79,0.2414074511949315],[117,95,64,0.2165232032061893],[117,95,65,0.21765080288257038],[117,95,66,0.21879079730906376],[117,95,67,0.21994429304474739],[117,95,68,0.22111235630858983],[117,95,69,0.22229601040682473],[117,95,70,0.22349623312145153],[117,95,71,0.22471395405981803],[117,95,72,0.22595005196530268],[117,95,73,0.22720535198905364],[117,95,74,0.22848062292288812],[117,95,75,0.22977657439321453],[117,95,76,0.2310938540160784],[117,95,77,0.23243304451329694],[117,95,78,0.2337946607896792],[117,95,79,0.23517914697135145],[117,96,64,0.20984138983628167],[117,96,65,0.21098363982751264],[117,96,66,0.2121396249865671],[117,96,67,0.2133104308738774],[117,96,68,0.21449710178268505],[117,96,69,0.215700638177839],[117,96,70,0.2169219940962528],[117,96,71,0.21816207450897315],[117,96,72,0.21942173264488146],[117,96,73,0.22070176727597995],[117,96,74,0.222002919964371],[117,96,75,0.22332587227079054],[117,96,76,0.2246712429247948],[117,96,77,0.2260395849565664],[117,96,78,0.2274313827903396],[117,96,79,0.2288470492994586],[117,97,64,0.20306584364171984],[117,97,65,0.2042220961109995],[117,97,66,0.2053934533433291],[117,97,67,0.20658097975227993],[117,97,68,0.20778569752942733],[117,97,69,0.20900858409418527],[117,97,70,0.21025056950583337],[117,97,71,0.21151253383768898],[117,97,72,0.21279530451344014],[117,97,73,0.21409965360559868],[117,97,74,0.21542629509617867],[117,97,75,0.21677588209945808],[117,97,76,0.2181490040469286],[117,97,77,0.219546183834397],[117,97,78,0.2209678749312347],[117,97,79,0.22241445845179608],[117,98,64,0.1962000164004709],[117,98,65,0.19736962349670395],[117,98,66,0.19855573336684326],[117,98,67,0.1997593891386638],[117,98,68,0.20098159073600597],[117,98,69,0.202223292339261],[117,98,70,0.20348539980857977],[117,98,71,0.2047687680697593],[117,98,72,0.20607419846282554],[117,98,73,0.2074024360532667],[117,98,74,0.20875416690602694],[117,98,75,0.21013001532211517],[117,98,76,0.2115305410379355],[117,98,77,0.2129562363873015],[117,98,78,0.21440752342613273],[117,98,79,0.21588475101985316],[117,99,64,0.18924742875963452],[117,99,65,0.190429743132972],[117,99,66,0.1916299859228615],[117,99,67,0.19284917884172698],[117,99,68,0.19408829938960204],[117,99,69,0.195348278324874],[117,99,70,0.19662999709828743],[117,99,71,0.197934285250158],[117,99,72,0.1992619177708178],[117,99,73,0.2006136124242423],[117,99,74,0.20199002703497465],[117,99,75,0.2033917567381967],[117,99,76,0.20481933119305573],[117,99,77,0.20627321175920882],[117,99,78,0.2077537886365846],[117,99,79,0.20926137796837785],[117,100,64,0.18221166818253137],[117,100,65,0.18340604350020784],[117,100,66,0.18461979970352338],[117,100,67,0.185853936969477],[117,100,68,0.18710941022833527],[117,100,69,0.18838712664424656],[117,100,70,0.1896879430596502],[117,100,71,0.19101266340343043],[117,100,72,0.19236203606283386],[117,100,73,0.19373675121910505],[117,100,74,0.19513743814695395],[117,100,75,0.19656466247770166],[117,100,76,0.19801892342621857],[117,100,77,0.1995006509816148],[117,100,78,0.20101020306167877],[117,100,79,0.2025478626310876],[117,101,64,0.1750963868421161],[117,101,65,0.17630217830411987],[117,101,66,0.17752882912090534],[117,101,67,0.1787773178235424],[117,101,68,0.18004857663679424],[117,101,69,0.18134348896921437],[117,101,70,0.18266288686757037],[117,101,71,0.1840075484355485],[117,101,72,0.1853781952167569],[117,101,73,0.1867754895419801],[117,101,74,0.18820003184080014],[117,101,75,0.18965235791743273],[117,101,76,0.19113293619088734],[117,101,77,0.19264216489941488],[117,101,78,0.19418036926924054],[117,101,79,0.19574779864759978],[117,102,64,0.16790529946107052],[117,102,65,0.16912186431518755],[117,102,66,0.17036079214634364],[117,102,67,0.17162303973883108],[117,102,68,0.1729095164865052],[117,102,69,0.17422108189197189],[117,102,70,0.1755585430306389],[117,102,71,0.17692265197958118],[117,102,72,0.17831410321124136],[117,102,73,0.1797335309519128],[117,102,74,0.18118150650512826],[117,102,75,0.182658535539794],[117,102,76,0.18416505534318578],[117,102,77,0.18570143203876532],[117,102,78,0.1872679577688166],[117,102,79,0.18886484784192115],[117,103,64,0.1606421810984061],[117,103,65,0.1618688791541722],[117,103,66,0.1631194680953577],[117,103,67,0.16439488286836557],[117,103,68,0.16569600992116745],[117,103,69,0.16702368471119272],[117,103,70,0.16837868917861937],[117,103,71,0.16976174918501113],[117,103,72,0.17117353191732398],[117,103,73,0.1726146432572312],[117,103,74,0.1740856251158885],[117,103,75,0.175586952733977],[117,103,76,0.17711903194714512],[117,103,77,0.17868219641680472],[117,103,78,0.1802767048262804],[117,103,79,0.18190273804233403],[117,104,64,0.15331086488238582],[117,104,65,0.15454705902348748],[117,104,66,0.15580869535799008],[117,104,67,0.15709668691310563],[117,104,68,0.15841189708646797],[117,104,69,0.1597551371623392],[117,104,70,0.16112716379374775],[117,104,71,0.16252867645051056],[117,104,72,0.16396031483315698],[117,104,73,0.16542265625270602],[117,104,74,0.166916212976417],[117,104,75,0.16844142953935487],[117,104,76,0.16999868002188423],[117,104,77,0.17158826529305576],[117,104,78,0.17321041021987788],[117,104,79,0.17486526084249843],[117,105,64,0.1459152396901317],[117,105,65,0.14716029638479244],[117,105,66,0.14843236907492313],[117,105,67,0.14973234879712105],[117,105,68,0.15106107580483974],[117,105,69,0.15241933709252325],[117,105,70,0.15380786388620776],[117,105,71,0.1552273291005376],[117,105,72,0.15667834476222087],[117,105,73,0.15816145939986742],[117,105,74,0.159677155400338],[117,105,75,0.16122584633143872],[117,105,76,0.1628078742310799],[117,105,77,0.1644235068628584],[117,105,78,0.1660729349380624],[117,105,79,0.16775626930411724],[117,106,64,0.13845924777374086],[117,106,65,0.13971253758263075],[117,106,66,0.1409944387591986],[117,106,67,0.14230582028794347],[117,106,68,0.1436474991949857],[117,106,69,0.145020238079743],[117,106,70,0.14642474261360877],[117,106,71,0.1478616590055783],[117,106,72,0.14933157143484382],[117,106,73,0.15083499945030882],[117,106,74,0.15237239533714442],[117,106,75,0.15394414145022367],[117,106,76,0.15555054751455344],[117,106,77,0.1571918478926645],[117,106,78,0.1588681988189527],[117,106,79,0.16057967560099795],[117,107,64,0.13094688233271617],[117,107,65,0.13220778041392311],[117,107,66,0.13349890586334584],[117,107,67,0.13482110556189858],[117,107,68,0.13617517323597828],[117,107,69,0.13756184699630208],[117,107,70,0.13898180684427575],[117,107,71,0.14043567214584324],[117,107,72,0.14192399907283787],[117,107,73,0.14344727801178364],[117,107,74,0.14500593094026948],[117,107,75,0.1466003087707361],[117,107,76,0.1482306886617899],[117,107,77,0.14989727129700714],[117,107,78,0.1516001781312225],[117,107,79,0.15333944860432613],[117,108,64,0.12338218503308829],[117,108,65,0.12465007164368869],[117,108,66,0.12594982129229476],[117,108,67,0.1272822587147951],[117,108,68,0.12864815427630616],[117,108,69,0.13004822151678752],[117,108,70,0.13148311466471874],[117,108,71,0.1329534261187893],[117,108,72,0.1344596838976202],[117,108,73,0.13600234905746406],[117,108,74,0.1375818130780137],[117,108,75,0.13919839521614996],[117,108,76,0.14085233982774797],[117,108,77,0.1425438136575063],[117,108,78,0.14427290309678842],[117,108,79,0.14603961140950616],[117,109,64,0.11576924347304529],[117,109,65,0.11704350446681178],[117,109,66,0.11835128286188978],[117,109,67,0.11969338121779177],[117,109,68,0.12107054648768872],[117,109,69,0.12248346757042106],[117,109,70,0.12393277283110699],[117,109,71,0.12541902759028878],[117,109,72,0.12694273158164082],[117,109,73,0.1285043163781865],[117,109,74,0.130104142787153],[117,109,75,0.13174249821329187],[117,109,76,0.1334195939907914],[117,109,77,0.13513556268373733],[117,109,78,0.13689045535511835],[117,109,79,0.13868423880440012],[117,110,64,0.10811218859487287],[117,110,65,0.10939221591565684],[117,110,66,0.11070743270280758],[117,110,67,0.1120586193182403],[117,110,68,0.11344649926345829],[117,110,69,0.11487173673759032],[117,110,70,0.11633493416454693],[117,110,71,0.11783662968924452],[117,110,72,0.11937729464292102],[117,110,73,0.12095733097748446],[117,110,74,0.12257706866902829],[117,110,75,0.12423676309034265],[117,110,76,0.1259365923525413],[117,110,77,0.12767665461576666],[117,110,78,0.12945696536896723],[117,110,79,0.13127745467877044],[117,111,64,0.10041519204359012],[117,111,65,0.10170038421391736],[117,111,66,0.10302245461026638],[117,111,67,0.10438216138588996],[117,111,68,0.10578020456189796],[117,111,69,0.10721722359094205],[117,111,70,0.10869379489054776],[117,111,71,0.11021042934604008],[117,111,72,0.11176756978308472],[117,111,73,0.11336558840978989],[117,111,74,0.11500478422850052],[117,111,75,0.11668538041711274],[117,111,76,0.11840752168003144],[117,111,77,0.12017127156873159],[117,111,78,0.12197660977191616],[117,111,79,0.12382342937529833],[117,112,64,0.09268246347209219],[117,112,65,0.09397222607650985],[117,112,66,0.09530057133933179],[117,112,67,0.09666823520426887],[117,112,68,0.09807589419434265],[117,112,69,0.09952416298084793],[117,112,70,0.10101359192248899],[117,112,71,0.1025446645746308],[117,112,72,0.1041177951686919],[117,112,73,0.10573332606161906],[117,112,74,0.10739152515558165],[117,112,75,0.10909258328770577],[117,112,76,0.11083661158997865],[117,112,77,0.1126236388192795],[117,112,78,0.11445360865753079],[117,112,79,0.11632637698199727],[117,113,64,0.08491824779260093],[117,113,65,0.08621199395531243],[117,113,66,0.08754604184562781],[117,113,67,0.08892110520703889],[117,113,68,0.09033783705784865],[117,113,69,0.09179682726504867],[117,113,70,0.09329860008888885],[117,113,71,0.09484361169808353],[117,113,72,0.09643224765568242],[117,113,73,0.09806482037554365],[117,113,74,0.09974156654954774],[117,113,75,0.10146264454537535],[117,113,76,0.10322813177497403],[117,113,77,0.10503802203367374],[117,113,78,0.10689222280994526],[117,113,79,0.1087905525658272],[117,114,64,0.07712682237483631],[117,114,65,0.07842397323116335],[117,114,66,0.07976315847186144],[117,114,67,0.08114506965973789],[117,114,68,0.08257033631284033],[117,114,69,0.0840395234828834],[117,114,70,0.0855531293048874],[117,114,71,0.0871115825179723],[117,114,72,0.08871523995733621],[117,114,73,0.09036438401735453],[117,114,74,0.09205922008593925],[117,114,75,0.0937998739499814],[117,114,76,0.09558638917200113],[117,114,77,0.09741872443796612],[117,114,78,0.09929675087627232],[117,114,79,0.10122024934791113],[117,115,64,0.06931249419056146],[117,115,65,0.07061247935177073],[117,115,66,0.07195624407981249],[117,115,67,0.07334445778656412],[117,115,68,0.074777726505391],[117,115,69,0.07625659047376182],[117,115,70,0.07778152168759667],[117,115,71,0.07935292142728528],[117,115,72,0.08097111775540577],[117,115,73,0.08263636298607974],[117,115,74,0.0843488311261088],[117,115,75,0.08610861528770253],[117,115,76,0.08791572507293816],[117,115,77,0.08977008392990149],[117,115,78,0.0916715264805053],[117,115,79,0.0936197958200149],[117,116,64,0.06147959690476573],[117,116,65,0.06278185491579713],[117,116,66,0.06412964912805691],[117,116,67,0.0655236268424656],[117,116,68,0.06696437063439814],[117,116,69,0.06845239594013958],[117,116,70,0.06998814861558184],[117,116,71,0.07157200246710654],[117,116,72,0.07320425675468256],[117,116,73,0.07488513366711297],[117,116,74,0.07661477576957437],[117,116,75,0.07839324342326764],[117,116,76,0.08022051217730697],[117,116,77,0.08209647013280752],[117,116,78,0.08402091527916467],[117,116,79,0.0859935528025515],[117,117,64,0.0536324879131268],[117,117,65,0.05493646670276281],[117,117,66,0.05628774869506398],[117,117,67,0.05768695913017419],[117,117,68,0.059134657163297855],[117,117,69,0.06063133345464289],[117,117,70,0.06217740773211622],[117,117,71,0.06377322632671556],[117,117,72,0.06541905968064615],[117,117,73,0.06711509982809793],[117,117,74,0.0688614578488258],[117,117,75,0.07065816129435087],[117,117,76,0.07250515158691179],[117,117,77,0.07440228139112387],[117,117,78,0.07634931195834288],[117,117,79,0.07834591044375366],[117,118,64,0.045775545326180556],[117,118,65,0.04708070264919362],[117,118,66,0.048434939448091685],[117,118,67,0.049838858962616917],[117,118,68,0.051292996976744276],[117,118,69,0.05279781941176548],[117,118,70,0.0543537198926371],[117,118,71,0.05596101728753056],[117,118,72,0.05761995322061314],[117,118,73,0.059330689557998195],[117,118,74,0.06109330586700651],[117,118,75,0.06290779684855285],[117,118,76,0.06477406974279332],[117,118,77,0.06669194170798665],[117,118,78,0.06866113717256445],[117,118,79,0.07068128516044014],[117,119,64,0.03791316489999175],[117,119,65,0.039218968770806995],[117,119,66,0.04057563655767832],[117,119,67,0.041983749570494],[117,119,68,0.043443820282048684],[117,119,69,0.0449562899239343],[117,119,70,0.046521526056195084],[117,119,71,0.048139820110689235],[117,119,72,0.049811384908187206],[117,119,73,0.05153635214914054],[117,119,74,0.05331476987826672],[117,119,75,0.05514659992276527],[117,119,76,0.05703171530429363],[117,119,77,0.058969897624665035],[117,119,78,0.06096083442525835],[117,119,79,0.06300411652016852],[117,120,64,0.03004975691313122],[117,120,65,0.03135568603054384],[117,120,66,0.03271427055753551],[117,120,67,0.03412606995482953],[117,120,68,0.035591573455183545],[117,120,69,0.03711119766175064],[117,120,70,0.03868528412070488],[117,120,71,0.040314096868075466],[117,120,72,0.04199781995081542],[117,120,73,0.0437365549220427],[117,120,74,0.04553031831059662],[117,120,75,0.04737903906472585],[117,120,76,0.049282555970037334],[117,120,77,0.05124061504166516],[117,120,78,0.05325286689065495],[117,120,79,0.05531886406458564],[117,121,64,0.022189742990355643],[117,121,65,0.023495287152840216],[117,121,66,0.024855284150234636],[117,121,67,0.026270271684894375],[117,121,68,0.02774071583174792],[117,121,69,0.029267008638798497],[117,121,70,0.0308494657023915],[117,121,71,0.032488323717183465],[117,121,72,0.03418373800084307],[117,121,73,0.035935779993420125],[117,121,74,0.03774443473152894],[117,121,75,0.03960959829715516],[117,121,76,0.041531075241223625],[117,121,77,0.0435085759818819],[117,121,78,0.045541714177492865],[117,121,79,0.04763000407436535],[117,122,64,0.014337552872792425],[117,122,65,0.01564221338394095],[117,122,66,0.017003128958493652],[117,122,67,0.018420815641299826],[117,122,68,0.019895716442694944],[117,122,69,0.021428198940827148],[117,122,70,0.023018552859235375],[117,122,71,0.024666987619625824],[117,122,72,0.02637362986987163],[117,122,73,0.02813852098717229],[117,122,74,0.0299616145565193],[117,122,75,0.03184277382428041],[117,122,76,0.03378176912703351],[117,122,77,0.035778275295610396],[117,122,78,0.0378318690343431],[117,122,79,0.039942026275538],[117,123,64,0.006497621134428144],[117,123,65,0.007800911198056759],[117,123,66,0.00916226222186206],[117,123,67,0.010582168704061201],[117,123,68,0.01206105069462382],[117,123,69,0.013599251399104229],[117,123,70,0.015197034758214212],[117,123,71,0.01685458300308168],[117,123,72,0.01857199418622041],[117,123,73,0.02034927968814848],[117,123,74,0.022186361699800594],[117,123,75,0.024083070680546825],[117,123,76,0.0260391427919493],[117,123,77,0.028054217307217688],[117,123,78,0.03012783399635377],[117,123,79,0.03225943048701341],[117,124,64,-0.0013256161546993939],[117,124,65,-2.4171050239052416E-5],[117,124,66,0.0013371434392001613],[117,124,67,0.0027588003860342103],[117,124,68,0.004241196995030783],[117,124,69,0.005784652208338847],[117,124,70,0.007389404286742951],[117,124,71,0.009055608367085743],[117,124,72,0.010783333995887268],[117,124,73,0.012572562639094453],[117,124,74,0.014423185168110475],[117,124,75,0.016334999321911403],[117,124,76,0.018307707145387986],[117,124,77,0.02034091240386715],[117,124,78,0.02243411797380679],[117,124,79,0.02458672320969335],[117,125,64,-0.009127724818803584],[117,125,65,-0.00782858652756907],[117,125,66,-0.00646776904323898],[117,125,67,-0.005044820588476828],[117,125,68,-0.0035593666776730926],[117,125,69,-0.0020111125110212624],[117,125,70,-3.9984539188830936E-4],[117,125,71,0.001274562832460524],[117,125,72,0.0030121533068150352],[117,125,73,0.004812877680579919],[117,125,74,0.006676595597095769],[117,125,75,0.00860307215952616],[117,125,76,0.010591975373448026],[117,125,77,0.012642873566101387],[117,125,78,0.014755232782292182],[117,125,79,0.01692841415697599],[117,126,64,-0.016904276020348163],[117,126,65,-0.015607893377470206],[117,126,66,-0.014248021498334207],[117,126,67,-0.012824229760141359],[117,126,68,-0.011336166259584723],[117,126,69,-0.009783560206323094],[117,126,70,-0.008166224339278827],[117,126,71,-0.006484057365811036],[117,126,72,-0.004737046423741953],[117,126,73,-0.002925269566296018],[117,126,74,-0.001048898269809695],[117,126,75,8.918000356051836E-4],[117,126,76,0.002896459412569552],[117,126,77,0.004964612840084204],[117,126,78,0.007095689614301293],[117,126,79,0.00928901272645255],[117,127,64,-0.024650849757342774],[117,127,65,-0.02335765822986957],[117,127,66,-0.021999168338820096],[117,127,67,-0.02057497046565271],[117,127,68,-0.019084735141768006],[117,127,69,-0.017528215441670714],[117,127,70,-0.015905249398483923],[117,127,71,-0.01421576244187328],[117,127,72,-0.012459769858348957],[117,127,73,-0.01063737927401831],[117,127,74,-0.008748793159631951],[117,127,75,-0.00679431135812214],[117,127,76,-0.0047743336344920895],[117,127,77,-0.002689362248103344],[117,127,78,-5.400045473664683E-4],[117,127,79,0.0016730244131948346],[117,128,64,-0.03236303841413424],[117,128,65,-0.031073459764519695],[117,128,66,-0.029716775692416708],[117,128,67,-0.028292597423607735],[117,128,68,-0.026800617765951995],[117,128,69,-0.025240613502515163],[117,128,70,-0.023612447806586556],[117,128,71,-0.021916072678641818],[117,128,72,-0.020151531405220746],[117,128,73,-0.018318961039789583],[117,128,74,-0.01641859490543296],[117,128,75,-0.014450765119573772],[117,128,76,-0.012415905140581218],[117,128,77,-0.01031455233631029],[117,128,78,-0.008147350574581047],[117,128,79,-0.0059150528355683685],[117,129,64,-0.04003645036589132],[117,129,65,-0.03875089232858697],[117,129,66,-0.03739642503155516],[117,129,67,-0.03597268037541157],[117,129,68,-0.034479373275662084],[117,129,69,-0.03291630405607171],[117,129,70,-0.03128336086346417],[117,129,71,-0.029580522104005413],[117,129,72,-0.02780785890094517],[117,129,73,-0.02596553757388198],[117,129,74,-0.02405382213940288],[117,129,75,-0.022073076833285854],[117,129,76,-0.020023768654137797],[117,129,77,-0.017906469928499646],[117,129,78,-0.015721860897436546],[117,129,79,-0.013470732324575851],[117,130,64,-0.04766671363638958],[117,130,65,-0.04638556960800483],[117,130,66,-0.045033716857313055],[117,130,67,-0.04361080778081705],[117,130,68,-0.04211657922239387],[117,130,69,-0.04055085486716936],[117,130,70,-0.03891354765636701],[117,130,71,-0.037204662223190854],[117,130,72,-0.0354242973497092],[117,130,73,-0.03357264844481289],[117,130,74,-0.031650010043087984],[117,130,75,-0.029656778324805733],[117,130,76,-0.02759345365688659],[117,130,77,-0.025460643154884277],[117,130,78,-0.02325906326599758],[117,130,79,-0.02098954237307704],[117,131,64,-0.05524947960928994],[117,131,65,-0.05397312835278206],[117,131,66,-0.052624274437748975],[117,131,67,-0.05120259056828991],[117,131,68,-0.049707835327024164],[117,131,69,-0.04813985556972755],[117,131,70,-0.04649858884049396],[117,131,71,-0.044784065807483286],[117,131,72,-0.04299641271922372],[117,131,73,-0.0411358538815384],[117,131,74,-0.03920271415494048],[117,131,75,-0.037197421472695114],[117,131,76,-0.03512050937941147],[117,131,77,-0.03297261959020259],[117,131,78,-0.030754504570426833],[117,131,79,-0.028467030135977955],[117,132,64,-0.06278042679311147],[117,132,65,-0.0615092321564652],[117,132,66,-0.060163747600835205],[117,132,67,-0.05874366594039915],[117,132,68,-0.05724876729665307],[117,132,69,-0.05567892149405762],[117,132,70,-0.05403409047576724],[117,132,71,-0.05231433073950309],[117,132,72,-0.05051979579353805],[117,132,73,-0.0486507386328644],[117,132,74,-0.04670751423538777],[117,132,75,-0.044690582078344976],[117,132,76,-0.04260050867481091],[117,132,77,-0.04043797013033035],[117,132,78,-0.03820375471968973],[117,132,79,-0.03589876548379378],[117,133,64,-0.07025526463950166],[117,133,65,-0.06898957528936456],[117,133,66,-0.06764781658159935],[117,133,67,-0.0662297012338422],[117,133,68,-0.06473503069649067],[117,133,69,-0.06316369754959794],[117,133,70,-0.061515687919416195],[117,133,71,-0.059791083914645715],[117,133,72,-0.05799006608236068],[117,133,73,-0.05611291588368128],[117,133,74,-0.05416001818903471],[117,133,75,-0.05213186379320778],[117,133,76,-0.05002905195004581],[117,133,77,-0.04785229292684545],[117,133,78,-0.04560241057845049],[117,133,79,-0.043280344941014404],[117,134,64,-0.07766973741500693],[117,134,65,-0.07640988658573866],[117,134,66,-0.07507219592366621],[117,134,67,-0.07365639783429767],[117,134,68,-0.07216231487698077],[117,134,69,-0.07058986216327867],[117,134,70,-0.06893904977456244],[117,134,71,-0.06720998519888133],[117,134,72,-0.06540287578707771],[117,134,73,-0.06351803122821986],[117,134,74,-0.06155586604419261],[117,134,75,-0.059516902103647906],[117,134,76,-0.05740177115517531],[117,134,77,-0.055211217379733335],[117,134,78,-0.05294609996235278],[117,134,79,-0.05060739568308015],[117,135,64,-0.0850196281265293],[117,135,65,-0.08376593338512972],[117,135,66,-0.08243263843539805],[117,135,67,-0.08101949514630136],[117,135,68,-0.0795263469563563],[117,135,69,-0.07795313127370784],[117,135,70,-0.07629988189500081],[117,135,71,-0.07456673144310488],[117,135,72,-0.07275391382366125],[117,135,73,-0.07086176670052136],[117,135,74,-0.06889073398992263],[117,135,75,-0.06684136837359533],[117,135,76,-0.06471433383067227],[117,135,77,-0.06251040818842835],[117,135,78,-0.06023048569187306],[117,135,79,-0.05787557959215717],[117,136,64,-0.09230076250008445],[117,136,65,-0.09105352552746149],[117,136,66,-0.0897249392002396],[117,136,67,-0.08831477461775528],[117,136,68,-0.086822895858235],[117,136,69,-0.08524926238079056],[117,136,70,-0.08359393144578686],[117,136,71,-0.08185706055365105],[117,136,72,-0.08003890990208073],[117,136,73,-0.07813984486172987],[117,136,74,-0.07616033847021197],[117,136,75,-0.07410097394462045],[117,136,76,-0.07196244721242762],[117,136,77,-0.06974556946080368],[117,136,78,-0.06745126970436666],[117,136,79,-0.06508059737132832],[117,137,64,-0.09950901301306447],[117,137,65,-0.0982685194021039],[117,137,66,-0.0969449396414731],[117,137,67,-0.09553806381927188],[117,137,68,-0.09404777640446249],[117,137,69,-0.09247405865098479],[117,137,70,-0.09081699101983587],[117,137,71,-0.08907675561917472],[117,137,72,-0.08725363866242053],[117,137,73,-0.08534803294441384],[117,137,74,-0.08336044033548551],[117,137,75,-0.0812914742936306],[117,137,76,-0.07914186239465248],[117,137,77,-0.07691244888031268],[117,137,78,-0.07460419722450207],[117,137,79,-0.07221819271739838],[117,138,64,-0.10664030298017602],[117,138,65,-0.10540682205107499],[117,138,66,-0.1040885316415584],[117,138,67,-0.10268524057853068],[117,138,68,-0.10119685346337137],[117,138,69,-0.09962337307836744],[117,138,70,-0.0979649028107028],[117,138,71,-0.09622164909407094],[117,138,72,-0.09439392386787537],[117,138,73,-0.0924821470540893],[117,138,74,-0.09048684905161763],[117,138,75,-0.08840867324836144],[117,138,76,-0.08624837855084577],[117,138,77,-0.08400684193145136],[117,138,78,-0.08168506099326145],[117,138,79,-0.07928415655249055],[117,139,64,-0.1136906106926695],[117,139,65,-0.11246439532599739],[117,139,66,-0.11115166171566859],[117,139,67,-0.10975223716925575],[117,139,68,-0.10826604615307567],[117,139,69,-0.10669311270112258],[117,139,70,-0.10503356284116216],[117,139,71,-0.10328762703804961],[117,139,72,-0.10145564265423923],[117,139,73,-0.09953805642755653],[117,139,74,-0.09753542696607032],[117,139,75,-0.0954484272602768],[117,139,76,-0.09327784721244392],[117,139,77,-0.09102459618316228],[117,139,78,-0.08868970555511824],[117,139,79,-0.08627433131404538],[117,140,64,-0.1206559736111904],[117,140,65,-0.11943726009913691],[117,140,66,-0.11813033523975269],[117,140,67,-0.11673504455514794],[117,140,68,-0.1152513321001245],[117,140,69,-0.11367924287378417],[117,140,70,-0.11201892524791224],[117,140,71,-0.11027063341219134],[117,140,72,-0.10843472983621649],[117,140,73,-0.10651168774838138],[117,140,74,-0.10450209363147756],[117,140,75,-0.10240664973520919],[117,140,76,-0.10022617660548105],[117,140,77,-0.09796161563050365],[117,140,78,-0.09561403160372406],[117,140,79,-0.09318461530355171],[117,141,64,-0.1275324926120016],[117,141,65,-0.12632150052827562],[117,141,66,-0.12502062073287812],[117,141,67,-0.12362971668852374],[117,141,68,-0.12214875175327256],[117,141,69,-0.12057779159498405],[117,141,70,-0.11891700662216154],[117,141,71,-0.11716667443124218],[117,141,72,-0.11532718227030703],[117,141,73,-0.11339902951927616],[117,141,74,-0.11138283018643458],[117,141,75,-0.10927931542148883],[117,141,76,-0.10708933604501558],[117,141,77,-0.10481386509433888],[117,141,78,-0.10245400038585617],[117,141,79,-0.10001096709376844],[117,142,64,-0.13431633628690343],[117,142,65,-0.13311326837574566],[117,142,66,-0.13181865419417793],[117,142,67,-0.1304323748639824],[117,142,68,-0.12895441275268826],[117,142,69,-0.1273848538910305],[117,142,70,-0.1257238904064164],[117,142,71,-0.12397182297246578],[117,142,72,-0.12212906327459316],[117,142,73,-0.12019613649169869],[117,142,74,-0.11817368379381166],[117,142,75,-0.11606246485589167],[117,142,76,-0.11386336038764078],[117,142,77,-0.11157737467937257],[117,142,78,-0.10920563816394924],[117,142,79,-0.10674940999474869],[117,143,64,-0.1410037452964702],[117,143,65,-0.13980878738123792],[117,143,66,-0.13852064349401616],[117,143,67,-0.13713921212672064],[117,143,68,-0.13566449435421857],[117,143,69,-0.13409659625493253],[117,143,70,-0.13243573134708986],[117,143,71,-0.13068222304067278],[117,143,72,-0.1288365071050398],[117,143,73,-0.12689913415229104],[117,143,74,-0.12487077213621389],[117,143,75,-0.12275220886701599],[117,143,76,-0.12054435454170354],[117,143,77,-0.11824824429014424],[117,143,78,-0.11586504073682868],[117,143,79,-0.11339603657829589],[117,144,64,-0.1475910367767842],[117,144,65,-0.1464043576885764],[117,144,66,-0.14512287281956304],[117,144,67,-0.14374649773568426],[117,144,68,-0.14227525190889545],[117,144,69,-0.14070926114105997],[117,144,70,-0.1390487600031215],[117,144,71,-0.1372940942896168],[117,144,72,-0.13544572348850037],[117,144,73,-0.13350422326634603],[117,144,74,-0.1314702879687707],[117,144,75,-0.12934473313628336],[117,144,76,-0.12712849803541515],[117,144,77,-0.12482264820517386],[117,144,78,-0.12242837801883544],[117,144,79,-0.11994701326103596],[117,145,64,-0.1540746087998387],[117,145,65,-0.15289636032661724],[117,145,66,-0.1516217071749415],[117,145,67,-0.15025058168171324],[117,145,68,-0.14878302139785138],[117,145,69,-0.14721917151560082],[117,145,70,-0.14555928731076306],[117,145,71,-0.14380373659991563],[117,145,72,-0.14195300221258766],[117,145,73,-0.1400076844784579],[117,145,74,-0.1379685037294195],[117,145,75,-0.13583630281671832],[117,145,76,-0.13361204964301487],[117,145,77,-0.13129683970941786],[117,145,78,-0.1288918986775004],[117,145,79,-0.12639858494625966],[117,146,64,-0.16045094488726375],[117,146,65,-0.15928126174393642],[117,146,66,-0.15801359693560402],[117,146,67,-0.15664789926034783],[117,146,68,-0.15518422402229903],[117,146,69,-0.1536227354624753],[117,146,70,-0.15196370920420021],[117,146,71,-0.15020753471316117],[117,146,72,-0.14835471777207399],[117,146,73,-0.14640588297002677],[117,146,74,-0.1443617762063446],[117,146,75,-0.14222326720917422],[117,146,76,-0.13999135206865299],[117,146,77,-0.13766715578469824],[117,146,78,-0.13525193482943298],[117,146,79,-0.13274707972420974],[117,147,64,-0.16671661857755116],[117,147,65,-0.16555561839747834],[117,147,66,-0.1642950824571151],[117,147,67,-0.1629349756994667],[117,147,68,-0.16147537084875252],[117,147,69,-0.15991645084488282],[117,147,70,-0.15825851129217905],[117,147,71,-0.1565019629223915],[117,147,72,-0.15464733407198905],[117,147,73,-0.15269527317378517],[117,147,74,-0.15064655126274495],[117,147,75,-0.14850206449617598],[117,147,76,-0.14626283668816153],[117,147,77,-0.14393002185827586],[117,147,78,-0.14150490679459726],[117,147,79,-0.13898891363097787],[117,148,64,-0.17286829804693848],[117,148,65,-0.17171608139532557],[117,148,66,-0.1704627987384998],[117,148,67,-0.16910843084191352],[117,148,68,-0.1676530675096498],[117,148,69,-0.1660969100226416],[117,148,70,-0.16444027359079472],[117,148,71,-0.16268358981908349],[117,148,72,-0.16082740918758276],[117,148,73,-0.15887240354550547],[117,148,74,-0.1568193686190893],[117,148,75,-0.15466922653353887],[117,148,76,-0.15242302834887433],[117,148,77,-0.15008195660973178],[117,148,78,-0.1476473279091317],[117,148,79,-0.14512059546617062],[117,149,64,-0.1789027507836285],[117,149,65,-0.17775940119326383],[117,149,66,-0.17651348013983292],[117,149,67,-0.17516498388279356],[117,149,68,-0.17371401895904925],[117,149,69,-0.17216080462499095],[117,149,70,-0.17050567531212424],[117,149,71,-0.16874908309634462],[117,149,72,-0.1668916001808206],[117,149,73,-0.16493392139256624],[117,149,74,-0.16287686669253465],[117,149,75,-0.1607213836994411],[117,149,76,-0.15846855022717332],[117,149,77,-0.15611957683582944],[117,149,78,-0.15367580939639425],[117,149,79,-0.15113873166902447],[117,150,64,-0.18481684831549994],[117,150,65,-0.18368243234530446],[117,150,66,-0.18244396515422567],[117,150,67,-0.18110145816159695],[117,150,68,-0.179655034283563],[117,150,69,-0.1781049303790253],[117,150,70,-0.1764514997088591],[117,150,71,-0.17469521440845714],[117,150,72,-0.172836667973575],[117,150,73,-0.17087657775953957],[117,150,74,-0.16881578749366943],[117,150,75,-0.166655269801106],[117,150,76,-0.1643961287439185],[117,150,77,-0.1620396023735151],[117,150,78,-0.159587065296386],[117,150,79,-0.15704003125312793],[117,151,64,-0.1906075709914794],[117,151,65,-0.18948213830832683],[117,151,66,-0.18825120123438166],[117,151,67,-0.18691478600931188],[117,151,68,-0.18547303156869066],[117,151,69,-0.1839261919939179],[117,151,70,-0.18227463897509966],[117,151,71,-0.18051886428694985],[117,151,72,-0.17865948227768125],[117,151,73,-0.17669723237095802],[117,151,74,-0.17463298158074514],[117,151,75,-0.17246772703926705],[117,151,76,-0.17020259853792763],[117,151,77,-0.16783886108123058],[117,151,78,-0.1653779174537232],[117,151,79,-0.16282131079991413],[117,152,64,-0.19627201281624362],[117,152,65,-0.19515559630051404],[117,152,66,-0.19393224967338873],[117,152,67,-0.19260201365020257],[117,152,68,-0.1911650428202245],[117,152,69,-0.18962160810060602],[117,152,70,-0.18797209920299296],[117,152,71,-0.18621702711285792],[117,152,72,-0.1843570265815221],[117,152,73,-0.18239285863093635],[117,152,74,-0.1803254130710653],[117,152,75,-0.17815571103007355],[117,152,76,-0.17588490749717678],[117,152,77,-0.17351429387819595],[117,152,78,-0.17104530056382716],[117,152,79,-0.16847949951059515],[117,153,64,-0.20180738633843065],[117,153,65,-0.2007000022137606],[117,153,66,-0.19948429053992345],[117,153,67,-0.19816030615843028],[117,153,68,-0.1967282189409072],[117,153,69,-0.1951883162471213],[117,153,70,-0.19354100539538044],[117,153,71,-0.19178681614535897],[117,153,72,-0.18992640319332443],[117,153,73,-0.1879605486798307],[117,153,74,-0.18589016470971853],[117,153,75,-0.1837162958846318],[117,153,76,-0.18144012184790437],[117,153,77,-0.17906295984185427],[117,153,78,-0.17658626727751114],[117,153,79,-0.17401164431672445],[117,154,64,-0.20721102759248278],[117,154,65,-0.2061126755801741],[117,154,66,-0.20490462766799922],[117,154,67,-0.20358695246963754],[117,154,68,-0.20215983476246224],[117,154,69,-0.20062357794968522],[117,154,70,-0.19897860653458777],[117,154,71,-0.1972254686069007],[117,154,72,-0.19536483834129348],[117,154,73,-0.19339751850804987],[117,154,74,-0.19132444299576867],[117,154,75,-0.18914667934629448],[117,154,76,-0.18686543130173283],[117,154,77,-0.18448204136359525],[117,154,78,-0.18199799336408762],[117,154,79,-0.1794149150494968],[117,155,64,-0.21248040109384914],[117,155,65,-0.21139106459239576],[117,155,66,-0.2101906937009751],[117,155,67,-0.20887937044722404],[117,155,68,-0.2074572941327234],[117,155,69,-0.20592478379929002],[117,155,70,-0.204282280707078],[117,155,71,-0.20253035082455284],[117,155,72,-0.200669687330301],[117,155,73,-0.1987011131267492],[117,155,74,-0.19662558336563363],[117,155,75,-0.19444418798542085],[117,155,76,-0.1921581542605426],[117,155,77,-0.1897688493624805],[117,155,78,-0.18727778293271846],[117,155,79,-0.18468660966752226],[117,156,64,-0.21761310488767993],[117,156,65,-0.21653275117787885],[117,156,66,-0.21534005518996557],[117,156,67,-0.21403511200344882],[117,156,68,-0.2126181350580003],[117,156,69,-0.2110894586239137],[117,156,70,-0.20944954028410423],[117,156,71,-0.20769896342771133],[117,156,72,-0.20583843975527438],[117,156,73,-0.2038688117955456],[117,156,74,-0.20179105543378817],[117,156,75,-0.1996062824517575],[117,156,76,-0.19731574307923005],[117,156,77,-0.1949208285571119],[117,156,78,-0.19242307371215162],[117,156,79,-0.1898241595432083],[117,157,64,-0.22260687565115722],[117,157,65,-0.22153545612726344],[117,157,66,-0.22035041774679365],[117,157,67,-0.21905186827550205],[117,157,68,-0.21764003490082184],[117,157,69,-0.2161152667064984],[117,157,70,-0.214478037158505],[117,157,71,-0.2127289466023048],[117,157,72,-0.21086872477142016],[117,157,73,-0.20889823330738766],[117,157,74,-0.20681846829093153],[117,157,75,-0.2046305627845676],[117,157,76,-0.20233578938649066],[117,157,77,-0.19993556279578428],[117,157,78,-0.19743144238897603],[117,157,79,-0.19482513480788677],[117,158,64,-0.2274595938491808],[117,158,65,-0.22639704427656704],[117,158,66,-0.22521963125120092],[117,158,67,-0.2239274748562613],[117,158,68,-0.22252081563277326],[117,158,69,-0.2210000170584151],[117,158,70,-0.21936556803736107],[117,158,71,-0.21761808540121585],[117,158,72,-0.21575831642100618],[117,158,73,-0.21378714133030707],[117,158,74,-0.2117055758593379],[117,158,75,-0.20951477378023287],[117,158,76,-0.20721602946334672],[117,158,77,-0.20481078044463463],[117,158,78,-0.2023006100041197],[117,158,79,-0.19968724975540864],[117,159,64,-0.23216928894356426],[117,159,65,-0.23111552974335203],[117,159,66,-0.22994569511248142],[117,159,67,-0.22865991707989608],[117,159,68,-0.22725844914258864],[117,159,69,-0.22574166874857682],[117,159,70,-0.22411007979066866],[117,159,71,-0.22236431511107702],[117,159,72,-0.2205051390168532],[117,159,73,-0.2185334498062057],[117,159,74,-0.21645028230554975],[117,159,75,-0.21425681041748723],[117,159,76,-0.21195434967958127],[117,159,77,-0.20954435983395603],[117,159,78,-0.20702844740774962],[117,159,79,-0.20440836830436637],[117,160,64,-0.2367341446558341],[117,160,65,-0.23568908121695353],[117,160,66,-0.23452676358561908],[117,160,67,-0.23324733536240327],[117,160,68,-0.23185106259958743],[117,160,69,-0.23033833628828482],[117,160,70,-0.22870967485612204],[117,160,71,-0.22696572667553305],[117,160,72,-0.22510727258263707],[117,160,73,-0.22313522840676847],[117,160,74,-0.22105064751050119],[117,160,75,-0.21885472334037226],[117,160,76,-0.21654879198815935],[117,160,77,-0.21413433476275612],[117,160,78,-0.21161298077265955],[117,160,79,-0.20898650951902686],[117,161,64,-0.24115250428341906],[117,161,65,-0.24011602730256132],[117,161,66,-0.2389611511417229],[117,161,67,-0.23768803059686894],[117,161,68,-0.23629694387223943],[117,161,69,-0.23478829507159515],[117,161,70,-0.23316261669979377],[117,161,71,-0.2314205721747541],[117,161,72,-0.22956295834977647],[117,161,73,-0.22759070804628845],[117,161,74,-0.22550489259686146],[117,161,75,-0.22330672439869514],[117,161,76,-0.22099755947743427],[117,161,77,-0.21857890006135472],[117,161,78,-0.21605239716593416],[117,161,79,-0.21341985318876722],[117,162,64,-0.245422876069325],[117,162,65,-0.24439486191925153],[117,162,66,-0.24324733789285702],[117,162,67,-0.24198046960354735],[117,162,68,-0.2405945470019617],[117,162,69,-0.23908998687130822],[117,162,70,-0.23746733533280584],[117,162,71,-0.23572727036129937],[117,162,72,-0.2338706043110126],[117,162,73,-0.231898286451507],[117,162,74,-0.2298114055136944],[117,162,75,-0.2276111922460976],[117,162,76,-0.22529902198122953],[117,162,77,-0.22287641721211493],[117,162,78,-0.2203450501789893],[117,162,79,-0.2177067454661159],[117,163,64,-0.24954393862542668],[117,163,65,-0.24852424975209286],[117,163,66,-0.24738397507138976],[117,163,67,-0.24612329063488814],[117,163,68,-0.2447424977322703],[117,163,69,-0.2432420253907046],[117,163,70,-0.24162243288412333],[117,163,71,-0.23988441225245827],[117,163,72,-0.23802879083080564],[117,163,73,-0.23605653378858904],[117,163,74,-0.23396874667856282],[117,163,75,-0.23176667799585704],[117,163,76,-0.22945172174692585],[117,163,77,-0.2270254200284365],[117,163,78,-0.2244894656161157],[117,163,79,-0.22184570456351216],[117,164,64,-0.25351454640912663],[117,164,65,-0.2525030317580874],[117,164,66,-0.25136989056362014],[117,164,67,-0.2501153089352687],[117,164,68,-0.24873959909304288],[117,164,69,-0.24724320187078352],[117,164,70,-0.24562668922922593],[117,164,71,-0.24389076677882504],[117,164,72,-0.24203627631230284],[117,164,73,-0.24006419834699466],[117,164,74,-0.23797565467683313],[117,164,75,-0.2357719109341717],[117,164,76,-0.23345437916131195],[117,164,77,-0.2310246203917662],[117,164,78,-0.22848434724127797],[117,164,79,-0.2258354265085567],[117,165,64,-0.25733373525358416],[117,165,65,-0.25633023072613814],[117,165,66,-0.2552040944978765],[117,165,67,-0.25395552235562113],[117,165,68,-0.2525848370400914],[117,165,69,-0.25109249075319906],[117,165,70,-0.24947906767484818],[117,165,71,-0.2477452864893006],[117,165,72,-0.2458920029210735],[117,165,73,-0.24392021228043959],[117,165,74,-0.24183105201837185],[117,165,75,-0.23962580429113522],[117,165,76,-0.23730589853438766],[117,165,77,-0.2348729140468202],[117,165,78,-0.2323285825833682],[117,165,79,-0.22967479095793508],[117,166,64,-0.26100072795137574],[117,166,65,-0.2600050568909148],[117,166,66,-0.25888578488695857],[117,166,67,-0.25764311702283205],[117,166,68,-0.2562773861499096],[117,166,69,-0.2547890553987684],[117,166,70,-0.2531787206996662],[117,166,71,-0.2514471133123948],[117,166,72,-0.2495951023654832],[117,166,73,-0.24762369740481616],[117,166,74,-0.24553405095151237],[117,166,75,-0.24332746106926317],[117,166,76,-0.24100537394099586],[117,166,77,-0.23856938645489123],[117,166,78,-0.23602124879978426],[117,166,79,-0.23336286706989384],[117,167,64,-0.2645149398917531],[117,167,65,-0.2635269136007764],[117,167,66,-0.26241435332507723],[117,167,67,-0.26117747306406647],[117,167,68,-0.259816615369757],[117,167,69,-0.25833225386170255],[117,167,70,-0.25672499575108154],[117,167,71,-0.2549955843739842],[117,167,72,-0.2531449017338637],[117,167,73,-0.2511739710532336],[117,167,74,-0.24908395933444216],[117,167,75,-0.2468761799297312],[117,167,76,-0.2445520951204413],[117,167,77,-0.2421133187053961],[117,167,78,-0.2395616185984879],[117,167,79,-0.23689891943541974],[117,168,64,-0.2678759847513058],[117,168,65,-0.26689540303956116],[117,168,66,-0.2657893907391101],[117,168,67,-0.26455817038583274],[117,168,68,-0.2632020938228927],[117,168,69,-0.2617216447193791],[117,168,70,-0.2601174410979217],[117,168,71,-0.25839023787133975],[117,168,72,-0.2565409293882903],[117,168,73,-0.2545705519879866],[117,168,74,-0.2524802865638267],[117,168,75,-0.2502714611361393],[117,168,76,-0.2479455534339029],[117,168,77,-0.24550419348547536],[117,168,78,-0.24294916621835816],[117,168,79,-0.24028241406794226],[117,169,64,-0.2710836802381206],[117,169,65,-0.2701103320023378],[117,169,66,-0.26901069319425897],[117,169,67,-0.2677849945078755],[117,169,68,-0.26643359666904487],[117,169,69,-0.2649569929577441],[117,169,70,-0.263355811739138],[117,169,71,-0.26163081900351415],[117,169,72,-0.2597829209150603],[117,169,73,-0.2578131663695463],[117,169,74,-0.2557227495607598],[117,169,75,-0.2535130125558911],[117,169,76,-0.2511854478797354],[117,169,77,-0.24874170110774085],[117,169,78,-0.24618357346792963],[117,169,79,-0.24351302445164047],[117,170,64,-0.27413805388952994],[117,170,65,-0.27317171772520166],[117,170,66,-0.2720782677542002],[117,170,67,-0.270857942451991],[117,170,68,-0.26951111102020997],[117,170,69,-0.2680382759124331],[117,170,70,-0.2664400753686036],[117,170,71,-0.26471728595817845],[117,170,72,-0.26287082513195625],[117,170,73,-0.26090175378266245],[117,170,74,-0.2588112788141298],[117,170,75,-0.25660075571927676],[117,170,76,-0.2542716911667485],[117,170,77,-0.25182574559625115],[117,170,78,-0.24926473582260245],[117,170,79,-0.24659063764845413],[117,171,64,-0.2770393489232532],[117,171,65,-0.2760797937689343],[117,171,66,-0.2749923383955385],[117,171,67,-0.2737772286855683],[117,171,68,-0.2724348419115915],[117,171,69,-0.2709656892654212],[117,171,70,-0.26937041839581033],[117,171,71,-0.2676498159547178],[117,171,72,-0.26580481015211255],[117,171,73,-0.26383647331938564],[117,171,74,-0.2617460244812132],[117,171,75,-0.2595348319360731],[117,171,76,-0.25720441584527454],[117,171,77,-0.2547564508305371],[117,171,78,-0.2521927685801416],[117,171,79,-0.249515360463603],[117,172,64,-0.27978803014205844],[117,172,65,-0.27883501595663907],[117,172,66,-0.2777533519766835],[117,172,67,-0.2765432911199829],[117,172,68,-0.2752052183277941],[117,172,69,-0.2737396530973236],[117,172,70,-0.2721472520225884],[117,172,71,-0.27042881134370744],[117,172,72,-0.2685852695045967],[117,172,73,-0.26661770971912924],[117,172,74,-0.2645273625456125],[117,172,75,-0.2623156084697761],[117,172,76,-0.25998398049613947],[117,172,77,-0.2575341667477864],[117,172,78,-0.25496801307457506],[117,172,79,-0.2522875256697321],[117,173,64,-0.2823847898919818],[117,173,65,-0.28143806836539786],[117,173,66,-0.28036198426119274],[117,173,67,-0.27915679716388087],[117,173,68,-0.27782289928432036],[117,173,69,-0.27636081799538725],[117,173,70,-0.2747712183758937],[117,173,71,-0.27305490576281055],[117,173,72,-0.27121282831175453],[117,173,73,-0.2692460795658188],[117,173,74,-0.26715590103258446],[117,173,75,-0.26494368476951324],[117,173,76,-0.262610975977589],[117,173,77,-0.2601594756032364],[117,173,78,-0.2575910429485424],[117,173,79,-0.25490769828973336],[117,174,64,-0.28483055407396884],[117,174,65,-0.28388986937181493],[117,174,66,-0.2828191459954441],[117,174,67,-0.281618649831221],[117,174,68,-0.28028877996423385],[117,174,69,-0.27883007121703907],[117,174,70,-0.2772431966965261],[117,174,71,-0.27552897034896107],[117,174,72,-0.2736883495231779],[117,174,73,-0.271722437541983],[117,174,74,-0.2696324862816203],[117,174,75,-0.26741989875949623],[117,174,76,-0.26508623173002654],[117,174,77,-0.2626331982886382],[117,174,78,-0.2600626704839536],[117,174,79,-0.25737668193810215],[117,175,64,-0.28712648820902054],[117,175,65,-0.2861915777515245],[117,175,66,-0.2851259890407154],[117,175,67,-0.2839299939041481],[117,175,68,-0.2826039979100623],[117,175,69,-0.28114854290906954],[117,175,70,-0.2795643095838508],[117,175,71,-0.2778521200069137],[117,175,72,-0.27601294020638045],[117,175,73,-0.27404788273987535],[117,175,74,-0.27195820927635805],[117,175,75,-0.2697453331860945],[117,175,76,-0.2674108221386423],[117,175,77,-0.26495640070886817],[117,175,78,-0.26238395299103645],[117,175,79,-0.25969552522090544],[117,176,64,-0.2892740035568968],[117,176,65,-0.28834459883271757],[117,176,66,-0.28728391255973007],[117,176,67,-0.2860922221507629],[117,176,68,-0.2847699392710036],[117,176,69,-0.2833176123825053],[117,176,70,-0.28173592929659086],[117,176,71,-0.2800257197342124],[117,176,72,-0.2781879578942287],[117,176,73,-0.27622376502967794],[117,176,74,-0.2741344120318817],[117,176,75,-0.2719213220225849],[117,176,76,-0.2695860729539936],[117,176,77,-0.2671304002167455],[117,176,78,-0.2645561992558312],[117,176,79,-0.2618655281944261],[117,177,64,-0.291274763288249],[117,177,65,-0.2903505907035623],[117,177,66,-0.2892945692575395],[117,177,67,-0.28810698159764947],[117,177,68,-0.28678824510530265],[117,177,69,-0.2853389144430468],[117,177,70,-0.2837596841095519],[117,177,71,-0.2820513910024528],[117,177,72,-0.28021501698900964],[117,177,73,-0.27825169148465567],[117,177,74,-0.2761626940392812],[117,177,75,-0.27394945693144945],[117,177,76,-0.2716135677704071],[117,177,77,-0.26915677210592726],[117,177,78,-0.2665809760460027],[117,177,79,-0.2638882488823461],[117,178,64,-0.2931306887102526],[117,178,65,-0.2922114704735862],[117,178,66,-0.29115987167681123],[117,178,67,-0.2899761798572388],[117,178,68,-0.2886608177378699],[117,178,69,-0.2872143457771381],[117,178,70,-0.2856374647263543],[117,178,71,-0.2839310181949092],[117,178,72,-0.28209599522319706],[117,178,73,-0.28013353286333853],[117,178,74,-0.278044918767541],[117,178,75,-0.2758315937842932],[117,178,76,-0.27349515456226714],[117,178,77,-0.27103735616195046],[117,178,78,-0.2684601146750397],[117,178,79,-0.26576550985154257],[117,179,64,-0.29484396554580206],[117,179,65,-0.2939294205890789],[117,179,66,-0.292881998547582],[117,179,67,-0.29170199151006504],[117,179,68,-0.2903898271731995],[117,179,69,-0.2889460713937281],[117,179,70,-0.2873714307482341],[117,179,71,-0.28566675510058004],[117,179,72,-0.2838330401769812],[117,179,73,-0.2818714301487878],[117,179,74,-0.2797832202228182],[117,179,75,-0.2775698592394379],[117,179,76,-0.2752329522782587],[117,179,77,-0.27277426327148013],[117,179,78,-0.2701957176249018],[117,179,79,-0.2674994048465593],[117,180,64,-0.2964170502661214],[117,180,65,-0.29550689520237927],[117,180,66,-0.2944634011913385],[117,180,67,-0.29328686454177144],[117,180,68,-0.29197771756345214],[117,180,69,-0.2905365311215854],[117,180,70,-0.28896401719876486],[117,180,71,-0.28726103146451953],[117,180,72,-0.28542857585241943],[117,180,73,-0.28346780114480197],[117,180,74,-0.2813800095649689],[117,180,75,-0.27916665737705415],[117,180,76,-0.27682935749342097],[117,180,77,-0.274369882089626],[117,180,78,-0.2717901652269735],[117,180,79,-0.26909230548260765],[117,181,64,-0.2978526764768983],[117,181,65,-0.2969466265951426],[117,181,66,-0.2959068099795258],[117,181,67,-0.2947335268349719],[117,181,68,-0.2934272137317968],[117,181,69,-0.2919884461622665],[117,181,70,-0.29041794110461017],[117,181,71,-0.28871655959455045],[117,181,72,-0.28688530930430967],[117,181,73,-0.28492534712917017],[117,181,74,-0.28283798178142716],[117,181,75,-0.28062467639193356],[117,181,76,-0.27828705111910734],[117,181,77,-0.2758268857654239],[117,181,78,-0.27324612240142643],[117,181,79,-0.2705468679971993],[117,182,64,-0.29915386135795263],[117,182,65,-0.298251631655606],[117,182,66,-0.29721524084649376],[117,182,67,-0.29604499271598084],[117,182,68,-0.2947413277510309],[117,182,69,-0.2933048256987496],[117,182,70,-0.29173620813231893],[117,182,71,-0.29003634102437614],[117,182,72,-0.2882062373278006],[117,182,73,-0.28624705956398755],[117,182,74,-0.28416012241844435],[117,182,75,-0.28194689534391226],[117,182,76,-0.27960900517087706],[117,182,77,-0.27714823872550154],[117,182,78,-0.27456654545500425],[117,182,79,-0.2718660400604336],[117,183,64,-0.30032391215634047],[117,183,65,-0.2994252184097528],[117,183,66,-0.2983920018567896],[117,183,67,-0.29722456955631016],[117,183,68,-0.2959233655773764],[117,183,69,-0.29448897355964043],[117,183,70,-0.2929221192810588],[117,183,71,-0.2912236732329899],[117,183,72,-0.289394653202639],[117,183,73,-0.28743622686292336],[117,183,74,-0.285349714369599],[117,183,75,-0.2831365909658511],[117,183,76,-0.2807984895942107],[117,183,77,-0.2783372035158279],[117,183,78,-0.27575468893713273],[117,183,79,-0.27305306764382486],[117,184,64,-0.3013664327329886],[117,184,65,-0.30047099260646926],[117,184,66,-0.29944069982688626],[117,184,67,-0.2982758644290313],[117,184,68,-0.29697693373955214],[117,184,69,-0.29554449493904045],[117,184,70,-0.2939792776313892],[117,184,71,-0.2922821564204796],[117,184,72,-0.29045415349415304],[117,184,73,-0.28849644121555185],[117,184,74,-0.28641034472166227],[117,184,75,-0.28419734452926293],[117,184,76,-0.2818590791481467],[117,184,77,-0.2793973477016385],[117,184,78,-0.2768141125544453],[117,184,79,-0.2741115019477792],[117,185,64,-0.302285330162821],[117,185,65,-0.301392864356652],[117,185,66,-0.30036524700130596],[117,185,67,-0.2992027908199596],[117,185,68,-0.29790594608307286],[117,185,69,-0.29647530317203563],[117,185,70,-0.2949115951500324],[117,185,71,-0.2932157003401834],[117,185,72,-0.2913886449109233],[117,185,73,-0.28943160546869273],[117,185,74,-0.2873459116577861],[117,185,75,-0.2851330487675491],[117,185,76,-0.2827946603468],[117,185,77,-0.28033255082549835],[117,185,78,-0.2777486881436888],[117,185,79,-0.27504520638767294],[117,186,64,-0.3030848213883831],[117,186,65,-0.3021950548262795],[117,186,66,-0.30116986778315147],[117,186,67,-0.30000957539367024],[117,186,68,-0.2987146305697924],[117,186,69,-0.29728562656582136],[117,186,70,-0.29572329955064736],[117,186,71,-0.2940285311872092],[117,186,72,-0.29220235121915716],[117,186,73,-0.29024594006477566],[117,186,74,-0.28816063141801906],[117,186,75,-0.2859479148568531],[117,186,76,-0.2836094384587714],[117,186,77,-0.28114701142351317],[117,186,78,-0.2785626067030156],[117,186,79,-0.27585836363854055],[117,187,64,-0.30376943992693917],[117,187,65,-0.3028821029834188],[117,187,66,-0.3018591055190173],[117,187,67,-0.30070076481432384],[117,187,68,-0.29940753613266147],[117,187,69,-0.29798001528643125],[117,187,70,-0.2964189412105852],[117,187,71,-0.29472519854329005],[117,187,72,-0.29289982021374084],[117,187,73,-0.29094399003720417],[117,187,74,-0.28885904531712636],[117,187,75,-0.2866464794545086],[117,187,76,-0.284307944564418],[117,187,77,-0.28184525409965966],[117,187,78,-0.2792603854816369],[117,187,79,-0.2765554827383525],[117,188,64,-0.3043440426311038],[117,188,65,-0.303458872399223],[117,188,66,-0.30243782933833663],[117,188,67,-0.30128123262135065],[117,188,68,-0.2999895395857588],[117,188,69,-0.2985633483011295],[117,188,70,-0.2970034001436843],[117,188,71,-0.2953105823780324],[117,188,72,-0.2934859307460208],[117,188,73,-0.2915306320627742],[117,188,74,-0.28944602681976817],[117,188,75,-0.2872336117951322],[117,188,76,-0.28489504267105137],[117,188,77,-0.28243213665829414],[117,188,78,-0.2798468751278941],[117,188,79,-0.27714140624993533],[117,189,64,-0.3048138165029384],[117,189,65,-0.30393055810286373],[117,189,66,-0.30291124104710476],[117,189,67,-0.30175618615994115],[117,189,68,-0.3004658525895306],[117,189,69,-0.29904084037640655],[117,189,70,-0.2974818930290354],[117,189,71,-0.2957899001064981],[117,189,72,-0.2939658998082575],[117,189,73,-0.29201108157108346],[117,189,74,-0.28992678867297883],[117,189,75,-0.28771452084430826],[117,189,76,-0.28537593688598795],[117,189,77,-0.28291285729477733],[117,189,78,-0.28032726689568876],[117,189,79,-0.27762131748147145],[117,190,64,-0.3051842855615542],[117,190,65,-0.30430269349042594],[117,190,66,-0.3032848820760138],[117,190,67,-0.302131173566372],[117,190,68,-0.30084202867127807],[117,190,69,-0.29941804913161063],[117,190,70,-0.2978599802957623],[117,190,71,-0.296168713703151],[117,190,72,-0.29434528967478657],[117,190,73,-0.29239089991097234],[117,190,74,-0.2903068900959789],[117,190,75,-0.2880947625098921],[117,190,76,-0.28575617864750014],[117,190,77,-0.2832929618442509],[117,190,78,-0.2807070999093021],[117,190,79,-0.27800074776561956],[117,191,64,-0.3054613177642157],[117,191,65,-0.30458115728776836],[117,191,66,-0.3035646404829916],[117,191,67,-0.3024120908081642],[117,191,68,-0.301123970300885],[117,191,69,-0.29970088214821133],[117,191,70,-0.2981435732638069],[117,191,71,-0.2964529368721679],[117,191,72,-0.29463001509987996],[117,191,73,-0.29267600157398765],[117,191,74,-0.2905922440273152],[117,191,75,-0.2883802469109348],[117,191,76,-0.2860416740136563],[117,191,77,-0.2835783510885601],[117,191,78,-0.28099226848660186],[117,191,79,-0.27828558379724444],[117,192,64,-0.30565113198092975],[117,192,65,-0.3047721805673308],[117,192,66,-0.30375675801013746],[117,192,67,-0.3026051887790625],[117,192,68,-0.3013179360217765],[117,192,69,-0.29989560413468586],[117,192,70,-0.2983389413407086],[117,192,71,-0.2966488422740995],[117,192,72,-0.294826350572297],[117,192,73,-0.2928726614748569],[117,192,74,-0.2907891244293198],[117,192,75,-0.2885772457042116],[117,192,76,-0.2862386910090382],[117,192,77,-0.28377528812131214],[117,192,78,-0.28118902952062874],[117,192,79,-0.278482075029749],[117,193,64,-0.3057603050225398],[117,193,65,-0.3048823538189094],[117,193,66,-0.30386783719506527],[117,193,67,-0.30271708044885137],[117,193,68,-0.3014305476371193],[117,193,69,-0.30000884414703965],[117,193,70,-0.29845271927439276],[117,193,71,-0.296763068808898],[117,193,72,-0.2949409376265434],[117,193,73,-0.2929875222889916],[117,193,74,-0.29090417364990306],[117,193,75,-0.28869239946837355],[117,193,76,-0.2863538670293537],[117,193,77,-0.28389040577108493],[117,193,78,-0.28130400991956794],[117,193,79,-0.2785968411300216],[117,194,64,-0.30579577872231034],[117,194,65,-0.30491863407438213],[117,194,66,-0.30390484853664435],[117,194,67,-0.3027547480679933],[117,194,68,-0.3014687974512591],[117,194,69,-0.30004760286495025],[117,194,70,-0.29849191446195866],[117,194,71,-0.2968026289552963],[117,194,72,-0.29498079221081763],[117,194,73,-0.2930276018470054],[117,194,74,-0.2909444098416629],[117,194,75,-0.28873272514570636],[117,194,76,-0.28639421630393036],[117,194,77,-0.2839307140827728],[117,194,78,-0.28134421410510235],[117,194,79,-0.27863687949198745],[117,195,64,-0.30576486707101513],[117,195,65,-0.3048883520864033],[117,195,66,-0.3038751377151524],[117,195,67,-0.30272555042710503],[117,195,68,-0.30144005556639986],[117,195,69,-0.30001925992354916],[117,195,70,-0.2984639143144746],[117,195,71,-0.29677491616655693],[117,195,72,-0.294953312111669],[117,195,73,-0.29300030058625903],[117,195,74,-0.29091723443832995],[117,195,75,-0.2887056235415135],[117,195,76,-0.2863671374161043],[117,195,77,-0.28390360785708324],[117,195,78,-0.2813170315691592],[117,195,79,-0.2786095728087755],[117,196,64,-0.305675263405504],[117,196,65,-0.3047992195610375],[117,196,66,-0.30378643286681073],[117,196,67,-0.30263723017124544],[117,196,68,-0.3013520772345033],[117,196,69,-0.2999315813008149],[117,196,70,-0.29837649367776087],[117,196,71,-0.29668771232256064],[117,196,72,-0.2948662844353338],[117,196,73,-0.2929134090594099],[117,196,74,-0.29083043968852296],[117,196,75,-0.28861888688109605],[117,196,76,-0.28628042088147776],[117,196,77,-0.28381687424816227],[117,196,78,-0.28123024448901845],[117,196,79,-0.27852269670347773],[117,197,64,-0.3055350476507891],[117,197,65,-0.30465933644437215],[117,197,66,-0.3036468519127459],[117,197,67,-0.30249792116905305],[117,197,68,-0.3012130102644508],[117,197,69,-0.2997927267606151],[117,197,70,-0.29823782230919604],[117,197,71,-0.2965491952382747],[117,197,72,-0.2947278931457896],[117,197,73,-0.2927751155000018],[117,197,74,-0.29069221624684705],[117,197,75,-0.2884807064243662],[117,197,76,-0.28614225678408634],[117,197,77,-0.28367870041938015],[117,197,78,-0.2810920354008286],[117,197,79,-0.2783844274185392],[117,198,64,-0.30535269361560735],[117,198,65,-0.3044771982630745],[117,198,66,-0.30346490994233555],[117,198,67,-0.3023161559366975],[117,198,68,-0.3010314024844246],[117,198,69,-0.2996112573513636],[117,198,70,-0.29805647241050814],[117,198,71,-0.2963679462285661],[117,198,72,-0.2945467266594931],[117,198,73,-0.29259401344506],[117,198,74,-0.2905111608223049],[117,198,75,-0.28829968013806184],[117,198,76,-0.28596124247043475],[117,198,77,-0.28349768125724695],[117,198,78,-0.2809109949314931],[117,198,79,-0.2782033495637397],[117,199,64,-0.3051370763414899],[117,199,65,-0.3042617035189116],[117,199,66,-0.3032495266509665],[117,199,67,-0.30210087311666367],[117,199,68,-0.30081620925953234],[117,199,69,-0.29939614296031114],[117,199,70,-0.2978414262165775],[117,199,71,-0.2961529577293789],[117,199,72,-0.29433178549682404],[117,199,73,-0.29237910941471135],[117,199,74,-0.2902962838840374],[117,199,75,-0.2880848204255807],[117,199,76,-0.2857463903014281],[117,199,77,-0.2832828271434784],[117,199,78,-0.2806961295889414],[117,199,79,-0.27798846392278953],[117,200,64,-0.30489747950532387],[117,200,65,-0.3040221611372278],[117,200,66,-0.30301003383219005],[117,200,67,-0.30186142501136926],[117,200,68,-0.300576801064671],[117,200,69,-0.29915676992346385],[117,200,70,-0.297602083640239],[117,200,71,-0.2959136409752684],[117,200,72,-0.2940924899902223],[117,200,73,-0.2921398306488263],[117,200,74,-0.29005701742439205],[117,200,75,-0.28784556191442756],[117,200,76,-0.2855071354621881],[117,200,77,-0.28304357178520057],[117,200,78,-0.28045686961078764],[117,200,79,-0.27774919531853814],[117,201,64,-0.30464360287540637],[117,201,65,-0.3037682979693781],[117,201,66,-0.30275618292427864],[117,201,67,-0.3016075851716009],[117,201,68,-0.3003229711126215],[117,201,69,-0.2989029486911279],[117,201,70,-0.29734826997308383],[117,201,71,-0.2956598337332921],[117,201,72,-0.29383868804902313],[117,201,73,-0.2918860329006743],[117,201,74,-0.2898032227793088],[117,201,75,-0.28759176930127295],[117,201,76,-0.2852533438297512],[117,201,77,-0.2827897801032978],[117,201,78,-0.28020307687136503],[117,201,79,-0.2774954005367801],[117,202,64,-0.30386790348771386],[117,202,65,-0.3029925961836102],[117,202,66,-0.3019804788100968],[117,202,67,-0.3008318787990366],[117,202,68,-0.29954726255199293],[117,202,69,-0.2981272380129534],[117,202,70,-0.29657255724799236],[117,202,71,-0.29488411903193346],[117,202,72,-0.29306297144197313],[117,202,73,-0.2911103144583389],[117,202,74,-0.2890275025718263],[117,202,75,-0.2868160473984115],[117,202,76,-0.2844776203008055],[117,202,77,-0.2820140550169826],[117,202,78,-0.2794273502957064],[117,202,79,-0.27671967253900376],[117,203,64,-0.3038635335553673],[117,203,65,-0.3029881772697651],[117,203,66,-0.30197601269267194],[117,203,67,-0.30082736725807036],[117,203,68,-0.2995427073676824],[117,203,69,-0.2981226409636454],[117,203,70,-0.29656792010812916],[117,203,71,-0.2948794435699498],[117,203,72,-0.2930582594181468],[117,203,73,-0.2911055676225931],[117,203,74,-0.2890227226614843],[117,203,75,-0.286811236135902],[117,203,76,-0.2844727793913203],[117,203,77,-0.2820091861460853],[117,203,78,-0.27942245512689035],[117,203,79,-0.2767147527112024],[117,204,64,-0.30384846883606476],[117,204,65,-0.3029729436937241],[117,204,66,-0.30196061638901284],[117,204,67,-0.3008118143632228],[117,204,68,-0.29952700401862153],[117,204,69,-0.29810679329096956],[117,204,70,-0.2965519342289745],[117,204,71,-0.2948633255807437],[117,204,72,-0.293042015387196],[117,204,73,-0.2910892035825089],[117,204,74,-0.2890062446014403],[117,204,75,-0.2867946499937264],[117,204,76,-0.2844560910454196],[117,204,77,-0.2819924014071985],[117,204,78,-0.27940557972967484],[117,204,79,-0.27669779230564684],[117,205,64,-0.30355798425533365],[117,205,65,-0.3026821001874649],[117,205,66,-0.3016694269807214],[117,205,67,-0.3005202920923178],[117,205,68,-0.29923516192606525],[117,205,69,-0.29781464440454675],[117,205,70,-0.2962594915482273],[117,205,71,-0.2945706020615595],[117,205,72,-0.2927490239260485],[117,205,73,-0.2907959570003459],[117,205,74,-0.2887127556272199],[117,205,75,-0.28650093124759723],[117,205,76,-0.2841621550215443],[117,205,77,-0.28169826045621593],[117,205,78,-0.2791112460408012],[117,205,79,-0.27640327788841235],[117,206,64,-0.30324463566579785],[117,206,65,-0.30236813494352754],[117,206,66,-0.3013548674507983],[117,206,67,-0.30020516067273284],[117,206,68,-0.2989194810163398],[117,206,69,-0.2974984363821005],[117,206,70,-0.295942778742488],[117,206,71,-0.29425340672747524],[117,206,72,-0.2924313682169998],[117,206,73,-0.29047786294045574],[117,206,74,-0.28839424508305433],[117,206,75,-0.28618202589925523],[117,206,76,-0.2838428763331311],[117,206,77,-0.28137862964569826],[117,206,78,-0.2787912840492386],[117,206,79,-0.27608300534856056],[117,207,64,-0.3029027875071185],[117,207,65,-0.30202534808129144],[117,207,66,-0.3010111759250359],[117,207,67,-0.2998605985668107],[117,207,68,-0.2985740824193357],[117,207,69,-0.297152235350281],[117,207,70,-0.29559580925988216],[117,207,71,-0.2939057026655403],[117,207,72,-0.292082963293372],[117,207,73,-0.29012879067677977],[117,207,74,-0.28804453876188607],[117,207,75,-0.28583171852003164],[117,207,76,-0.28349200056720203],[117,207,77,-0.28102721779041306],[117,207,78,-0.27843936798108193],[117,207,79,-0.27573061647533303],[117,208,64,-0.3025271081710019],[117,208,65,-0.3016483467737485],[117,208,66,-0.3006329005697105],[117,208,67,-0.29948109714959503],[117,208,68,-0.29819340293536856],[117,208,69,-0.2967704257496804],[117,208,70,-0.29521291739220445],[117,208,71,-0.29352177622295694],[117,208,72,-0.29169804975255476],[117,208,73,-0.2897429372394875],[117,208,74,-0.28765779229424404],[117,208,75,-0.2854441254904947],[117,208,76,-0.2831036069831927],[117,208,77,-0.2806380691336283],[117,208,78,-0.27804950914145754],[117,208,79,-0.27534009168365825],[117,209,64,-0.3021125634733871],[117,209,65,-0.30123203865922565],[117,209,66,-0.3002148929451226],[117,209,67,-0.2990614540064648],[117,209,68,-0.2977721882791782],[117,209,69,-0.29634770352746154],[117,209,70,-0.294788751418426],[117,209,71,-0.29309623010369823],[117,209,72,-0.2912711868079553],[117,209,73,-0.2893148204244592],[117,209,74,-0.2872284841174373],[117,209,75,-0.2850136879315047],[117,209,76,-0.28267210140799715],[117,209,77,-0.2802055562082423],[117,209,78,-0.2776160487437975],[117,209,79,-0.274905742813602],[117,210,64,-0.30165441018341366],[117,210,65,-0.30077162531036006],[117,210,66,-0.29975230141684517],[117,210,67,-0.2985967662889156],[117,210,68,-0.2973054863824969],[117,210,69,-0.2958790693889556],[117,210,70,-0.2943182668075529],[117,210,71,-0.29262397652484873],[117,210,72,-0.2907972454010209],[117,210,73,-0.2888392718631716],[117,210,74,-0.286751408505463],[117,210,75,-0.2845351646962827],[117,210,76,-0.2821922091923029],[117,210,77,-0.2797243727594658],[117,210,78,-0.2771336508009187],[117,210,79,-0.27442220599184985],[117,211,64,-0.3011481896091863],[117,211,65,-0.3002625957603491],[117,211,66,-0.2992405646247027],[117,211,67,-0.29808242412851116],[117,211,68,-0.2967886407552074],[117,211,69,-0.2953598221082515],[117,211,70,-0.29379671948086306],[117,211,71,-0.29210023043268607],[117,211,72,-0.2902714013733505],[117,211,73,-0.2883114301530033],[117,211,74,-0.2862216686596504],[117,211,75,-0.28400362542350976],[117,211,76,-0.28165896822824144],[117,211,77,-0.2791895267290839],[117,211,78,-0.27659729507792374],[117,211,79,-0.27388443455524725],[117,212,64,-0.3005897212403319],[117,212,65,-0.29970072008646576],[117,212,66,-0.298675405009474],[117,212,67,-0.2975141041089955],[117,212,68,-0.2962172839050814],[117,212,69,-0.29478555189776934],[117,212,70,-0.29321965913350867],[117,212,71,-0.2915205027784964],[117,212,72,-0.2896891286988881],[117,212,73,-0.2877267340479551],[117,212,74,-0.28563466986003205],[117,212,75,-0.28341444365145296],[117,212,76,-0.2810677220283405],[117,212,77,-0.2785963333012832],[117,212,78,-0.27600227010691913],[117,212,79,-0.2732876920363839],[117,213,64,-0.2999750964473312],[117,213,65,-0.29908204305082464],[117,213,66,-0.29805282239730246],[117,213,67,-0.2968877627965516],[117,213,68,-0.295587330816085],[117,213,69,-0.2941521338368016],[117,213,70,-0.2925829226154725],[117,213,71,-0.2908805938541098],[117,213,72,-0.28904619277618493],[117,213,73,-0.287080915709768],[117,213,74,-0.28498611267742835],[117,213,75,-0.28276328999309874],[117,213,76,-0.2804141128657688],[117,213,77,-0.2779404080100343],[117,213,78,-0.2753441662635324],[117,213,79,-0.272627545211211],[117,214,64,-0.29930067223765555],[117,214,65,-0.29840287779842734],[117,214,66,-0.29736908764183967],[117,214,67,-0.29619963032823227],[117,214,68,-0.29489497248527663],[117,214,69,-0.29345572135905007],[117,214,70,-0.29188262737190307],[117,214,71,-0.29017658668718005],[117,214,72,-0.288338643780757],[117,214,73,-0.2863699940194693],[117,214,74,-0.2842719862462707],[117,214,75,-0.2820461253723252],[117,214,76,-0.2796940749758945],[117,214,77,-0.2772176599080529],[117,214,78,-0.27461886890525733],[117,214,79,-0.2718998572087181],[117,215,64,-0.29856306506868047],[117,215,65,-0.29765979961246103],[117,215,66,-0.29662073632410313],[117,215,67,-0.29544620405854294],[117,215,68,-0.2941366695182773],[117,215,69,-0.29269273979913546],[117,215,70,-0.2911151649428072],[117,215,71,-0.2894048404961893],[117,215,72,-0.2875628100775116],[117,215,73,-0.28559026794931797],[117,215,74,-0.2834885615981436],[117,215,75,-0.28125919432108637],[117,215,76,-0.27890382781914025],[117,215,77,-0.2764242847973205],[117,215,78,-0.2738225515716052],[117,215,79,-0.2711007806826441],[117,216,64,-0.2977591447174043],[117,216,65,-0.2968496397268755],[117,216,66,-0.2958045625100655],[117,216,67,-0.2946242422641945],[117,216,68,-0.29330914578333034],[117,216,69,-0.2918598799981007],[117,216,70,-0.2902771945221202],[117,216,71,-0.28856198420519585],[117,216,72,-0.28671529169327004],[117,216,73,-0.28473830999517924],[117,216,74,-0.28263238505606325],[117,216,75,-0.2803990183376325],[117,216,76,-0.2780398694051527],[117,216,77,-0.27555675852118144],[117,216,78,-0.2729516692460795],[117,216,79,-0.27022675104524907],[117,217,64,-0.29688602820693155],[117,217,65,-0.29596947919620187],[117,217,66,-0.29491761256594273],[117,217,67,-0.2937307579069939],[117,217,68,-0.29240938212392087],[117,217,69,-0.2909540919678749],[117,217,70,-0.28936563657612024],[117,217,71,-0.28764491001829207],[117,217,72,-0.2857929538493482],[117,217,73,-0.2838109596692846],[117,217,74,-0.28170027168946055],[117,217,75,-0.2794623893057314],[117,217,76,-0.27709896967825154],[117,217,77,-0.27461183031798597],[117,217,78,-0.2720029516799455],[117,217,79,-0.26927447976310503],[117,218,64,-0.2959410737897651],[117,218,65,-0.29501664282265383],[117,218,66,-0.29395717903122465],[117,218,67,-0.2927630124549142],[117,218,68,-0.2914346101299923],[117,218,69,-0.28997257861473646],[117,218,70,-0.288377666521227],[117,218,71,-0.2866507670538153],[117,218,72,-0.28479292055423466],[117,218,73,-0.2828053170534248],[117,218,74,-0.28068929882990956],[117,218,75,-0.27844636297493064],[117,218,76,-0.2760781639642026],[117,218,77,-0.27358651623631824],[117,218,78,-0.27097339677782883],[117,218,79,-0.2682409477149539],[117,219,64,-0.2949218749878906],[117,219,65,-0.29398869314049614],[117,219,66,-0.2929207945494251],[117,219,67,-0.29171850976132563],[117,219,68,-0.2903823059677455],[117,219,69,-0.2889127895217619],[117,219,70,-0.28731070846117024],[117,219,71,-0.28557695503829084],[117,219,72,-0.28371256825635716],[117,219,73,-0.28171873641255973],[117,219,74,-0.27959679964758377],[117,219,75,-0.2773482525018469],[117,219,76,-0.27497474647829534],[117,219,77,-0.27247809261179445],[117,219,78,-0.26986026404513574],[117,219,79,-0.2671233986116126],[117,220,64,-0.2938262546896253],[117,220,65,-0.29288342445765303],[117,220,66,-0.2918062258565315],[117,220,67,-0.2905949900023601],[117,220,68,-0.28925018426799354],[117,220,69,-0.2877724147902301],[117,220,70,-0.28616242898349686],[117,220,71,-0.2844211180600844],[117,220,72,-0.2825495195568998],[117,220,73,-0.2805488198688101],[117,220,74,-0.2784203567884145],[117,220,75,-0.2761656220524512],[117,220,76,-0.27378626389469773],[117,220,77,-0.2712840896054002],[117,220,78,-0.2686610680972562],[117,220,79,-0.26591933247789723],[117,221,64,-0.29265225930327765],[117,221,65,-0.2916988569546033],[117,221,66,-0.29061146782719705],[117,221,67,-0.28939042367246137],[117,221,68,-0.2880361920731176],[117,221,69,-0.2865493789400336],[117,221,70,-0.28493073101546984],[117,221,71,-0.2831811383828088],[117,221,72,-0.28130163698272714],[117,221,73,-0.2792934111358897],[117,221,74,-0.27715779607199764],[117,221,75,-0.27489628046540215],[117,221,76,-0.2725105089771389],[117,221,77,-0.2700022848034205],[117,221,78,-0.2673735722306082],[117,221,79,-0.26462649919661674],[117,222,64,-0.2913981529676024],[117,222,65,-0.29043323084054407],[117,222,66,-0.28933473757865846],[117,222,67,-0.28810300563809443],[117,222,68,-0.2867385028426077],[117,222,69,-0.2852418348690726],[117,222,70,-0.283613747739335],[117,222,71,-0.2818551303184679],[117,222,72,-0.2799670168193944],[117,222,73,-0.27795058931395145],[117,222,74,-0.27580718025023054],[117,222,75,-0.2735382749764048],[117,222,76,-0.27114551427089884],[117,222,77,-0.26863069687893826],[117,222,78,-0.2659957820555],[117,222,79,-0.2632428921146158],[117,223,64,-0.2900624118190115],[117,223,65,-0.2890850005667869],[117,223,66,-0.28797446863234166],[117,223,67,-0.28673114924958654],[117,223,68,-0.2853555105171507],[117,223,69,-0.2838481578716019],[117,223,70,-0.28220983656692156],[117,223,71,-0.28044143416029843],[117,223,72,-0.278543983004202],[117,223,73,-0.2765186627448126],[117,223,74,-0.2743668028266433],[117,223,75,-0.2720898850035608],[117,223,76,-0.2696895458560663],[117,223,77,-0.2671675793148679],[117,223,78,-0.26452593919076994],[117,223,79,-0.26176674171083014],[117,224,64,-0.2886437183156041],[117,224,65,-0.2876528290974478],[117,224,66,-0.28652930513322006],[117,224,67,-0.28527348051115464],[117,224,68,-0.28388582364132786],[117,224,69,-0.2823669397155868],[117,224,70,-0.280717573173641],[117,224,71,-0.2789386101753777],[117,224,72,-0.2770310810793659],[117,224,73,-0.2749961629276241],[117,224,74,-0.27283518193648526],[117,224,75,-0.2705496159937716],[117,224,76,-0.26814109716213275],[117,224,77,-0.26561141418858514],[117,224,78,-0.26296251502027534],[117,224,79,-0.2601965093264168],[117,225,64,-0.2871409556179899],[117,225,65,-0.28613558223740554],[117,225,66,-0.2849980961268962],[117,225,67,-0.28372883230909696],[117,225,68,-0.28232825954489515],[117,225,69,-0.2807969827790463],[117,225,70,-0.27913574559185206],[117,225,71,-0.27734543265696354],[117,225,72,-0.27542707220526996],[117,225,73,-0.2733818384949539],[117,225,74,-0.2712110542875428],[117,225,75,-0.2689161933301685],[117,225,76,-0.26649888284389234],[117,225,77,-0.26396090601812916],[117,225,78,-0.2613042045111963],[117,225,79,-0.25853088095693555],[117,226,64,-0.28555320202686485],[117,226,65,-0.2845323230174863],[117,226,66,-0.2833798898943668],[117,226,67,-0.28209623869810563],[117,226,68,-0.2806818385826062],[117,226,69,-0.27913729424533884],[117,226,70,-0.277463348363557],[117,226,71,-0.2756608840365309],[117,226,72,-0.2737309272337606],[117,226,73,-0.27167464924924545],[117,226,74,-0.26949336916164257],[117,226,75,-0.2671885563005265],[117,226,76,-0.2647618327186052],[117,226,77,-0.2622149756699289],[117,226,78,-0.25954992009411404],[117,226,79,-0.256768761106534],[117,227,64,-0.28387972547740903],[117,227,65,-0.2828423061369477],[117,227,66,-0.28167392834454463],[117,227,67,-0.28037492924577534],[117,227,68,-0.27894577843265034],[117,227,69,-0.2773870803574665],[117,227,70,-0.2756995767524957],[117,227,71,-0.2738841490555748],[117,227,72,-0.2719418208415604],[117,227,73,-0.26987376025972387],[117,227,74,-0.26768128247691925],[117,227,75,-0.26536585212673736],[117,227,76,-0.2629290857645009],[117,227,77,-0.26037275432813545],[117,227,78,-0.2576987856049413],[117,227,79,-0.25490926670421554],[117,228,64,-0.2821199780904802],[117,228,65,-0.28106497246323214],[117,228,66,-0.27987964146450584],[117,228,67,-0.2785643234352747],[117,228,68,-0.27711948845367385],[117,228,69,-0.2755457407313646],[117,228,70,-0.2738438210156141],[117,228,71,-0.27201460899715135],[117,228,72,-0.270059125723765],[117,228,73,-0.2679785360197183],[117,228,74,-0.265774150910812],[117,228,75,-0.2634474300553118],[117,228,76,-0.26099998418059045],[117,228,77,-0.25843357752552565],[117,228,78,-0.2557501302886712],[117,228,79,-0.2529517210821588],[117,229,64,-0.2802735907805516],[117,229,65,-0.27919994358893974],[117,229,66,-0.27799664182741246],[117,229,67,-0.2766640251261322],[117,229,68,-0.27520256410033606],[117,229,69,-0.273612862728128],[117,229,70,-0.27189566073385085],[117,229,71,-0.270051835977105],[117,229,72,-0.2680824068473766],[117,229,73,-0.2659885346643509],[117,229,74,-0.2637715260837421],[117,229,75,-0.2614328355088551],[117,229,76,-0.25897406750773244],[117,229,77,-0.25639697923592253],[117,229,78,-0.2537034828648913],[117,229,79,-0.2508956480160319],[117,230,64,-0.2783403679204808],[117,230,65,-0.2772470164461066],[117,230,66,-0.27602471915820015],[117,230,67,-0.2746738170732247],[117,230,68,-0.27319478139748876],[117,230,69,-0.27158821588526183],[117,230,70,-0.2698548592023322],[117,230,71,-0.26799558729507],[117,230,72,-0.26601141576496035],[117,230,73,-0.26390350224868153],[117,230,74,-0.2616731488035591],[117,230,75,-0.25932180429861273],[117,230,76,-0.2568510668110484],[117,230,77,-0.2542626860282299],[117,230,78,-0.25155856565515733],[117,230,79,-0.24874076582739946],[117,231,64,-0.27632028206307147],[117,231,65,-0.27520615797775383],[117,231,66,-0.2739638349569895],[117,231,67,-0.27259365550393],[117,231,68,-0.27109609147293845],[117,231,69,-0.2694717464069192],[117,231,70,-0.26772135787993945],[117,231,71,-0.2658457998452106],[117,231,72,-0.2638460849883879],[117,231,73,-0.261723367086269],[117,231,74,-0.2594789433707193],[117,231,75,-0.25711425689804235],[117,231,76,-0.254630898923645],[117,231,77,-0.2520306112820374],[117,231,78,-0.24931528877218645],[117,231,79,-0.24648698154817905],[117,232,64,-0.2742134687193748],[117,232,65,-0.27307749986664687],[117,232,66,-0.2718141171801667],[117,232,67,-0.2704236647533844],[117,232,68,-0.26890661514873615],[117,232,69,-0.2672635717130669],[117,232,70,-0.2654952708981886],[117,232,71,-0.26360258458663977],[117,232,72,-0.2615865224226068],[117,232,73,-0.25944823414809015],[117,232,74,-0.25718901194413457],[117,232,75,-0.254810292777353],[117,232,76,-0.2523136607515851],[117,232,77,-0.24970084946473503],[117,232,78,-0.24697374437080588],[117,232,79,-0.24413438514708574],[117,233,64,-0.2720202211938274],[117,233,65,-0.27086133332137063],[117,233,66,-0.26957585497923653],[117,233,67,-0.26816413195795297],[117,233,68,-0.26662663759109695],[117,233,69,-0.26496397504768376],[117,233,70,-0.2631768796295245],[117,233,71,-0.2612662210736182],[117,233,72,-0.259233005859543],[117,233,73,-0.2570783795219238],[117,233,74,-0.2548036289678003],[117,233,75,-0.25241018479912203],[117,233,76,-0.24989962364021312],[117,233,77,-0.2472736704702504],[117,233,78,-0.24453420096077272],[117,233,79,-0.24168324381817652],[117,234,64,-0.26974098547618286],[117,234,65,-0.26855810391967094],[117,234,66,-0.26724949349739846],[117,234,67,-0.2658155018068604],[117,234,68,-0.26425660301890386],[117,234,69,-0.26257340014594577],[117,234,70,-0.26076662731498856],[117,234,71,-0.2588371520454952],[117,234,72,-0.2567859775320879],[117,234,73,-0.25461424493214957],[117,234,74,-0.2523232356581523],[117,234,75,-0.24991437367493663],[117,234,76,-0.24738922780178874],[117,234,77,-0.24474951401935352],[117,234,78,-0.2419970977814081],[117,234,79,-0.23913399633144428],[117,235,64,-0.2673763551901761],[117,235,65,-0.2661684065090043],[117,235,66,-0.2648356287237852],[117,235,67,-0.26337837135192466],[117,235,68,-0.2617971094707313],[117,235,69,-0.2600924459603309],[117,235,70,-0.25826511375118966],[117,235,71,-0.25631597807631656],[117,235,72,-0.2542460387281057],[117,235,73,-0.2520564323198986],[117,235,74,-0.24974843455208928],[117,235,75,-0.2473234624829984],[117,235,76,-0.24478307680436096],[117,235,77,-0.24212898412146822],[117,235,78,-0.23936303923798474],[117,235,79,-0.23648724744539362],[117,236,64,-0.2649270665990302],[117,236,65,-0.26369298016440534],[117,236,66,-0.2623350024054808],[117,236,67,-0.26085348487550397],[117,236,68,-0.25924890363050557],[117,236,69,-0.25752186144576605],[117,236,70,-0.2556730900366999],[117,236,71,-0.253703452284225],[117,236,72,-0.25161394446458063],[117,236,73,-0.24940569848367533],[117,236,74,-0.24707998411578092],[117,236,75,-0.2446382112468094],[117,236,76,-0.24208193212200602],[117,236,77,-0.23941284359810855],[117,236,78,-0.23663278939998722],[117,236,79,-0.2337437623817218],[117,237,64,-0.2623939936677586],[117,237,65,-0.26113270320362525],[117,237,66,-0.2597484970172613],[117,237,67,-0.2582417288166109],[117,237,68,-0.25661287571174884],[117,237,69,-0.2548625404037578],[117,237,70,-0.25299145337782036],[117,237,71,-0.25100047510059686],[117,237,72,-0.24889059822184945],[117,237,73,-0.24666294978039505],[117,237,74,-0.24431879341420537],[117,237,75,-0.24185953157488538],[117,237,76,-0.23928670774637084],[117,237,77,-0.23660200866788772],[117,237,78,-0.233807266561193],[117,237,79,-0.23090446136205123],[117,238,64,-0.2597781431821914],[117,238,65,-0.25848858825946786],[117,238,66,-0.2570771307889924],[117,238,67,-0.25554412675511684],[117,238,68,-0.2538900544003374],[117,238,69,-0.25211551638543905],[117,238,70,-0.2502212419536456],[117,238,71,-0.24820808909884384],[117,238,72,-0.24607704673784503],[117,238,73,-0.24382923688676583],[117,238,74,-0.24146591684134366],[117,238,75,-0.2389884813614236],[117,238,76,-0.23639846485945182],[117,238,77,-0.2336975435930222],[117,238,78,-0.23088753786149396],[117,238,79,-0.22797041420663455],[117,239,64,-0.25708064992485957],[117,239,65,-0.2557617774094607],[117,239,66,-0.25432205279081843],[117,239,67,-0.2527618344541892],[117,239,68,-0.25108160185591],[117,239,69,-0.2492819576536699],[117,239,70,-0.24736362984056637],[117,239,71,-0.24532747388301857],[117,239,72,-0.24317447486249733],[117,239,73,-0.24090574962115618],[117,239,74,-0.23852254891117675],[117,239,75,-0.23602625954806788],[117,239,76,-0.2334184065677506],[117,239,77,-0.23070065538747864],[117,239,78,-0.2278748139706097],[117,239,79,-0.2249428349951832],[117,240,64,-0.2543027719076282],[117,240,65,-0.2529535373627483],[117,240,66,-0.25148453807602966],[117,240,67,-0.24989613496084362],[117,240,68,-0.2481888087718136],[117,240,69,-0.2463631622040754],[117,240,70,-0.24441992199609452],[117,240,71,-0.24235994103611003],[117,240,72,-0.24018420047216837],[117,240,73,-0.23789381182582992],[117,240,74,-0.23549001910936085],[117,240,75,-0.23297420094665056],[117,240,76,-0.23034787269768786],[117,240,77,-0.22761268858664208],[117,240,78,-0.2247704438335688],[117,240,79,-0.22182307678969249],[117,241,64,-0.25144588566116277],[117,241,65,-0.2500652547042954],[117,241,66,-0.2485659828816975],[117,241,67,-0.24694843376470355],[117,241,68,-0.2452130894936746],[117,241,69,-0.24336055284511426],[117,241,70,-0.24139154930210216],[117,241,71,-0.23930692912811835],[117,241,72,-0.23710766944421757],[117,241,73,-0.23479487630964235],[117,241,74,-0.23236978680567955],[117,241,75,-0.22983377112300907],[117,241,76,-0.22718833465237043],[117,241,77,-0.22443512007860011],[117,241,78,-0.22157590947805306],[117,241,79,-0.2186126264193654],[117,242,64,-0.24851148158110725],[117,242,65,-0.2470984311962744],[117,242,66,-0.24556789988694905],[117,242,67,-0.24392025401483708],[117,242,68,-0.24215597719646953],[117,242,69,-0.24027567233704517],[117,242,70,-0.2382800636673429],[117,242,71,-0.2361699987837783],[117,242,72,-0.23394645069156483],[117,242,73,-0.2316105198510643],[117,242,74,-0.2291634362271372],[117,242,75,-0.2266065613417364],[117,242,76,-0.22394139032957316],[117,242,77,-0.2211695539969062],[117,242,78,-0.21829282088346924],[117,242,79,-0.21531309932749176],[117,243,64,-0.24550115933112038],[117,243,65,-0.24405467913678935],[117,243,66,-0.24249191352903576],[117,243,67,-0.2408132317948264],[117,243,68,-0.2390191191202472],[117,243,69,-0.23711017858994987],[117,243,70,-0.2350871331894131],[117,243,71,-0.23295082781009002],[117,243,72,-0.2307022312574064],[117,243,73,-0.22834243826169143],[117,243,74,-0.22587267149185153],[117,243,75,-0.22329428357203385],[117,243,76,-0.22060875910110322],[117,243,77,-0.21781771667498884],[117,243,78,-0.21492291091191174],[117,243,79,-0.211926234480451],[117,244,64,-0.2424166233027053],[117,244,65,-0.24093571677586634],[117,244,66,-0.2393397553771256],[117,244,67,-0.2376291114559994],[117,244,68,-0.23580427186443376],[117,244,69,-0.2338658399207405],[117,244,70,-0.23181453737608326],[117,244,71,-0.22965120638358494],[117,244,72,-0.2273768114700191],[117,244,73,-0.2249924415101726],[117,244,74,-0.22249931170368042],[117,244,75,-0.21989876555458931],[117,244,76,-0.21719227685346965],[117,244,77,-0.21438145166212896],[117,244,78,-0.21146803030094408],[117,244,79,-0.20845388933876474],[117,245,64,-0.2392596781317501],[117,245,65,-0.23774336378863015],[117,245,66,-0.2361132595637363],[117,245,67,-0.23436974100874042],[117,245,68,-0.23251329674063692],[117,245,69,-0.23054453036906675],[117,245,70,-0.22846416242591205],[117,245,71,-0.22627303229724094],[117,245,72,-0.22397210015756008],[117,245,73,-0.22156244890646437],[117,245,74,-0.2190452861074852],[117,245,75,-0.21642194592939235],[117,245,76,-0.21369389108976955],[117,245,77,-0.21086271480091867],[117,245,78,-0.20793014271810595],[117,245,79,-0.20489803489010727],[117,246,64,-0.2360322242719345],[117,246,65,-0.234479536805821],[117,246,66,-0.232814358273969],[117,246,67,-0.23103706757203957],[117,246,68,-0.22914815518410947],[117,246,69,-0.22714822507228594],[117,246,70,-0.22503799656830759],[117,246,71,-0.22281830626721222],[117,246,72,-0.22049010992302776],[117,246,73,-0.21805448434657904],[117,246,74,-0.21551262930520654],[117,246,75,-0.2128658694246569],[117,246,76,-0.21011565609296334],[117,246,77,-0.20726356936637091],[117,246,78,-0.2043113198773201],[117,246,79,-0.2012607507444455],[117,247,64,-0.23273625362492778],[117,247,65,-0.2311462450015812],[117,247,66,-0.22944507729246444],[117,247,67,-0.22763313288120435],[117,247,68,-0.22571090422379447],[117,247,69,-0.22367899569941707],[117,247,70,-0.2215381254629576],[117,247,71,-0.21928912729929295],[117,247,72,-0.21693295247931044],[117,247,73,-0.21447067161775135],[117,247,74,-0.2119034765326686],[117,247,75,-0.20923268210677048],[117,247,76,-0.20645972815045466],[117,247,77,-0.20358618126659944],[117,247,78,-0.20061373671711646],[117,247,79,-0.19754422029122876],[117,248,64,-0.22937384522729354],[117,248,65,-0.22774558573841963],[117,248,66,-0.2260075316079957],[117,248,67,-0.22416006885364403],[117,248,68,-0.2222036920108641],[117,248,69,-0.22013900594398939],[117,248,70,-0.21796672765853675],[117,248,71,-0.21568768811502492],[117,248,72,-0.21330283404422357],[117,248,73,-0.2108132297639228],[117,248,74,-0.20822005899701757],[117,248,75,-0.20552462669117322],[117,248,76,-0.202728360839882],[117,248,77,-0.19983281430497146],[117,248,78,-0.1968396666405765],[117,248,79,-0.19375072591853038],[117,249,64,-0.2259471609942646],[117,249,65,-0.2242797402695233],[117,249,66,-0.22250392107586536],[117,249,67,-0.22062009321289955],[117,249,68,-0.21862875340592325],[117,249,69,-0.21653050707595856],[117,249,70,-0.21432607011086757],[117,249,71,-0.21201627063762585],[117,249,72,-0.20960205079571603],[117,249,73,-0.20708446851173024],[117,249,74,-0.20446469927497601],[117,249,75,-0.2017440379143517],[117,249,76,-0.19892390037630314],[117,249,77,-0.19600582550391976],[117,249,78,-0.19299147681718343],[117,249,79,-0.1898826442943249],[117,250,64,-0.22245844152031097],[117,250,65,-0.2207509694983375],[117,250,66,-0.218936526138027],[117,250,67,-0.21701550517083334],[117,250,68,-0.2149884056247956],[117,250,69,-0.21285583355260795],[117,250,70,-0.21061850376044933],[117,250,71,-0.20827724153765081],[117,250,72,-0.20583298438716202],[117,250,73,-0.20328678375690834],[117,250,74,-0.20063980677182713],[117,250,75,-0.19789333796685704],[117,250,76,-0.1950487810206868],[117,250,77,-0.1921076604903228],[117,250,78,-0.189071623546489],[117,250,79,-0.185942441709815],[117,251,64,-0.21891000193640825],[117,251,65,-0.21716160979531995],[117,251,66,-0.21530770360083606],[117,251,67,-0.21334868116788952],[117,251,68,-0.211285043942797],[117,251,69,-0.20911739868833784],[117,251,70,-0.20684645916925914],[117,251,71,-0.20447304783829257],[117,251,72,-0.20199809752263742],[117,251,73,-0.1994226531110076],[117,251,74,-0.19674787324102716],[117,251,75,-0.19397503198724997],[117,251,76,-0.1911055205496085],[117,251,77,-0.1881408489423535],[117,251,78,-0.18508264768349525],[117,251,79,-0.18193266948470443],[117,252,64,-0.21530422782418068],[117,252,65,-0.21351406887204666],[117,252,66,-0.21161988247061303],[117,252,67,-0.20962207067160227],[117,252,68,-0.20752113745767964],[117,252,69,-0.20531769038352854],[117,252,70,-0.20301244221701242],[117,252,71,-0.20060621258050815],[117,252,72,-0.19809992959237033],[117,252,73,-0.19549463150861968],[117,252,74,-0.19279146836464012],[117,252,75,-0.18999170361716378],[117,252,76,-0.187096715786346],[117,252,77,-0.1841080000979921],[117,252,78,-0.18102717012594804],[117,252,79,-0.17785595943461208],[117,253,64,-0.2116435711868393],[117,253,65,-0.20981082171258586],[117,253,66,-0.2078755598469273],[117,253,67,-0.2058381920332658],[117,253,68,-0.20369922491115755],[117,253,69,-0.20145926691238847],[117,253,70,-0.19911902985678992],[117,253,71,-0.19667933054787812],[117,253,72,-0.19414109236827676],[117,253,73,-0.19150534687501763],[117,253,74,-0.18877323539449997],[117,253,75,-0.18594601061739324],[117,253,76,-0.18302503819328053],[117,253,77,-0.1800117983251075],[117,253,78,-0.17690788736344676],[117,253,79,-0.17371501940053646],[117,254,64,-0.2079305464768133],[117,254,65,-0.20605440656204144],[117,254,66,-0.20407729687350856],[117,254,67,-0.201999628402669],[117,254,68,-0.19982191056891607],[117,254,69,-0.19754475276968453],[117,254,70,-0.19516886592993365],[117,254,71,-0.19269506405110048],[117,254,72,-0.1901242657594756],[117,254,73,-0.18745749585410676],[117,254,74,-0.1846958868539984],[117,254,75,-0.181840680544904],[117,254,76,-0.17889322952549835],[117,254,77,-0.1758549987530018],[117,254,78,-0.1727275670882632],[117,254,79,-0.16951262884025942],[117,255,64,-0.2041677266802635],[117,255,65,-0.20224742097245318],[117,255,66,-0.2002277147469736],[117,255,67,-0.19810902370108296],[117,255,68,-0.19589186015929555],[117,255,69,-0.19357683457655184],[117,255,70,-0.1911646570404057],[117,255,71,-0.18865613877231346],[117,255,72,-0.18605219362798375],[117,255,73,-0.18335383959688722],[117,255,74,-0.1805622003006987],[117,255,75,-0.17767850649096606],[117,255,76,-0.1747040975457962],[117,255,77,-0.1716404229656242],[117,255,78,-0.1684890438680785],[117,255,79,-0.16525163448189806],[117,256,64,-0.20035773945838725],[117,256,65,-0.1983925179059643],[117,256,66,-0.19632949078327477],[117,256,67,-0.19416907865241134],[117,256,68,-0.19191179687055715],[117,256,69,-0.18955825704528778],[117,256,70,-0.18710916848851422],[117,256,71,-0.1845653396691549],[117,256,72,-0.1819276796644953],[117,256,73,-0.1791971996103322],[117,256,74,-0.176375014149677],[117,256,75,-0.17346234288031304],[117,256,76,-0.17046051180099353],[117,256,77,-0.16737095475635266],[117,256,78,-0.164195214880535],[117,256,79,-0.1609349460395052],[117,257,64,-0.19650326334541585],[117,257,65,-0.19449240189515482],[117,257,66,-0.19238535454177086],[117,257,67,-0.190182546872398],[117,257,68,-0.1878844974066276],[117,257,69,-0.18549181900302492],[117,257,70,-0.18300522026390387],[117,257,71,-0.180425506938448],[117,257,72,-0.1777535833241356],[117,257,73,-0.17499045366657062],[117,257,74,-0.1721372235574849],[117,257,75,-0.16919510133121507],[117,257,76,-0.16616539945943815],[117,257,77,-0.16304953594423538],[117,257,78,-0.15984903570949394],[117,257,79,-0.15656553199060563],[117,258,64,-0.192607024003496],[117,258,65,-0.19054982526073577],[117,258,66,-0.18839808400711777],[117,258,67,-0.18615223101609601],[117,258,68,-0.18381278810152313],[117,258,69,-0.18138036947448688],[117,258,70,-0.17885568309801286],[117,258,71,-0.1762395320397218],[117,258,72,-0.17353281582240088],[117,258,73,-0.17073653177258902],[117,258,74,-0.16785177636694226],[117,258,75,-0.16487974657668447],[117,258,76,-0.16182174120992332],[117,258,77,-0.1586791622519047],[117,258,78,-0.15545351620321457],[117,258,79,-0.1521464154158847],[117,259,64,-0.18867179053436323],[117,259,65,-0.18656758438651],[117,259,66,-0.18437050182888104],[117,259,67,-0.18208097898349523],[117,259,68,-0.17969954109235464],[117,259,69,-0.1772268038237279],[117,259,70,-0.17466347457589831],[117,259,71,-0.1720103537784689],[117,259,72,-0.1692683361911803],[117,259,73,-0.16643841220034444],[117,259,74,-0.1635216691126583],[117,259,75,-0.16051929244670282],[117,259,76,-0.15743256722190868],[117,259,77,-0.1542628792450602],[117,259,78,-0.1510117163943484],[117,259,79,-0.14768066990092532],[117,260,64,-0.1847003718477046],[117,260,65,-0.1825485160514963],[117,260,66,-0.18030547161876687],[117,260,67,-0.17797168018320692],[117,260,68,-0.17554767055080894],[117,260,69,-0.17303405995474863],[117,260,70,-0.17043155530732101],[117,260,71,-0.1677409544490241],[117,260,72,-0.16496314739474982],[117,260,73,-0.16209911757718276],[117,260,74,-0.15914994308716812],[117,260,75,-0.15611679791136113],[117,260,76,-0.15300095316693252],[117,260,77,-0.14980377833340608],[117,260,78,-0.14652674248163522],[117,260,79,-0.14317141549987655],[117,261,64,-0.18069561308640847],[117,261,65,-0.17849549381941643],[117,261,66,-0.1762058943056769],[117,261,67,-0.1738272618544105],[117,261,68,-0.17136012897331154],[117,261,69,-0.16880511457119807],[117,261,70,-0.1661629251573008],[117,261,71,-0.1634343560372839],[117,261,72,-0.16062029250595622],[117,261,73,-0.15772171103677612],[117,261,74,-0.15473968046790543],[117,261,75,-0.15167536318513397],[117,261,76,-0.14853001630143914],[117,261,77,-0.1453049928332658],[117,261,78,-0.14200174287352546],[117,261,79,-0.13862181476127833],[117,262,64,-0.17666039210860618],[117,262,65,-0.17441142448545077],[117,262,66,-0.1720747045484834],[117,262,67,-0.16965068544696088],[117,262,68,-0.16713990352977298],[117,262,69,-0.16454297949505897],[117,262,70,-0.16186061953604075],[117,262,71,-0.15909361648315934],[117,262,72,-0.15624285094248164],[117,262,73,-0.15330929243047375],[117,262,74,-0.15029400050490183],[117,262,75,-0.14719812589217596],[117,262,76,-0.14402291161090852],[117,262,77,-0.14076969409176576],[117,262,78,-0.13743990429361608],[117,262,79,-0.1340350688159364],[117,263,64,-0.1725976160263999],[117,263,65,-0.17029924458015122],[117,263,66,-0.16791486720642218],[117,263,67,-0.1654449430595486],[117,263,68,-0.16289001247080398],[117,263,69,-0.16025069804420639],[117,263,70,-0.15752770574810665],[117,263,71,-0.15472182600265094],[117,263,72,-0.15183393476307777],[117,263,73,-0.14886499459895375],[117,263,74,-0.14581605576909934],[117,263,75,-0.14268825729252949],[117,263,76,-0.13948282801517609],[117,263,77,-0.1362010876724693],[117,263,78,-0.13284444794778577],[117,263,79,-0.12941441352672128],[117,264,64,-0.16851021780149233],[117,264,65,-0.16616191693073495],[117,264,66,-0.16372937386732173],[117,264,67,-0.16121305393613772],[117,264,68,-0.15861350159363308],[117,264,69,-0.15593134146906745],[117,264,70,-0.15316727940109348],[117,264,71,-0.15032210346977642],[117,264,72,-0.14739668502400632],[117,264,73,-0.14439197970441048],[117,264,74,-0.14130902846151439],[117,264,75,-0.13814895856947967],[117,264,76,-0.13491298463518148],[117,264,77,-0.1316024096027053],[117,264,78,-0.12821862575327198],[117,264,79,-0.12476311570054538],[117,265,64,-0.16440115289753898],[117,265,65,-0.16200242727957392],[117,265,66,-0.15952123943348334],[117,265,67,-0.1569580610204908],[117,265,68,-0.15431344076652803],[117,265,69,-0.1515880054481914],[117,265,70,-0.148782460873586],[117,265,71,-0.14589759285815984],[117,265,72,-0.14293426819548283],[117,265,73,-0.1398934356230776],[117,265,74,-0.13677612678305145],[117,265,75,-0.13358345717785675],[117,265,76,-0.13031662712094377],[117,265,77,-0.12697692268238614],[117,265,78,-0.12356571662948401],[117,265,79,-0.12008446936230477],[117,266,64,-0.16027339598935714],[117,266,65,-0.1578237809600161],[117,266,66,-0.15529349876535326],[117,266,67,-0.15268302756892677],[117,266,68,-0.14999292051187296],[117,266,69,-0.14722380664287416],[117,266,70,-0.14437639184255668],[117,266,71,-0.14145145974242412],[117,266,72,-0.1384498726382788],[117,266,73,-0.1353725723982429],[117,266,74,-0.1322205813651206],[117,266,75,-0.12899500325343827],[117,266,76,-0.12569702404091798],[117,266,77,-0.12232791285447042],[117,266,78,-0.11888902285070918],[117,266,79,-0.11538179209094718],[117,267,64,-0.1561299377288085],[117,267,65,-0.15362899962935606],[117,267,66,-0.1510492033827971],[117,267,67,-0.14839103382111624],[117,267,68,-0.1456550486477004],[117,267,69,-0.14284187931064113],[117,267,70,-0.13995223187000827],[117,267,71,-0.13698688785919327],[117,267,72,-0.13394670514027818],[117,267,73,-0.13083261875354346],[117,267,74,-0.1276456417608514],[117,267,75,-0.12438686608324567],[117,267,76,-0.12105746333252343],[117,267,77,-0.117658685636861],[117,267,78,-0.1141918664604995],[117,267,79,-0.11065842141745036],[117,268,64,-0.15197378156757574],[117,268,65,-0.14942111805917396],[117,268,66,-0.1467914182242006],[117,268,67,-0.14408517372914553],[117,268,68,-0.1413029469879143],[117,268,69,-0.1384453719778228],[117,268,70,-0.13551315504909145],[117,268,71,-0.13250707572793768],[117,268,72,-0.12942798751322682],[117,268,73,-0.12627681866679025],[117,268,74,-0.1230545729971475],[117,268,75,-0.11976233063697805],[117,268,76,-0.11640124881409192],[117,268,77,-0.11297256261598648],[117,268,78,-0.10947758574799205],[117,268,79,-0.1059177112849663],[117,269,64,-0.14780794063672786],[117,269,65,-0.1452031809829395],[117,269,66,-0.14252321846329447],[117,269,67,-0.13976855174473946],[117,269,68,-0.1369397481010926],[117,269,69,-0.13403744417111313],[117,269,70,-0.13106234670958994],[117,269,71,-0.12801523333155307],[117,269,72,-0.12489695324956501],[117,269,73,-0.12170842800420384],[117,269,74,-0.11845065218747053],[117,269,75,-0.11512469415947141],[117,269,76,-0.11173169675812056],[117,269,77,-0.10827287800195218],[117,269,78,-0.10474953178604368],[117,269,79,-0.10116302857101123],[117,270,64,-0.14363543468296958],[117,270,65,-0.1409782400007732],[117,270,66,-0.13824768638358964],[117,270,67,-0.1354442796645347],[117,270,68,-0.13256859212775768],[117,270,69,-0.12962126320799527],[117,270,70,-0.12660300018265797],[117,270,71,-0.12351457885655687],[117,270,72,-0.12035684423922488],[117,270,73,-0.11713071121494745],[117,270,74,-0.1138371652052304],[117,270,75,-0.1104772628240619],[117,270,76,-0.10705213252570789],[117,270,77,-0.10356297524513486],[117,270,78,-0.10001106503105789],[117,270,79,-0.09639774967157833],[117,271,64,-0.13945928706178556],[117,271,65,-0.13674935054157894],[117,271,66,-0.1339679083106416],[117,271,67,-0.1311154735336209],[117,271,68,-0.12819262365633805],[117,271,69,-0.12520000104626372],[117,271,70,-0.12213831362503685],[117,271,71,-0.11900833549313072],[117,271,72,-0.11581090754662299],[117,271,73,-0.11254693808618549],[117,271,74,-0.10921740341801844],[117,271,75,-0.10582334844708874],[117,271,76,-0.10236588726241119],[117,271,77,-0.09884620371446529],[117,271,78,-0.09526555198474695],[117,271,79,-0.09162525714741782],[117,272,64,-0.13528252178737327],[117,272,65,-0.13251956888244026],[117,272,66,-0.12968697160203768],[117,272,67,-0.1267852506072436],[117,272,68,-0.12381498865770929],[117,272,69,-0.12077683119252636],[117,272,70,-0.11767148690263723],[117,272,71,-0.11449972829489585],[117,272,72,-0.11126239224773526],[117,272,73,-0.10796038055855761],[117,272,74,-0.10459466048256871],[117,272,75,-0.10116626526342248],[117,272,76,-0.0976762946554085],[117,272,77,-0.094125915437278],[117,272,78,-0.09051636191770723],[117,272,79,-0.08684893643236191],[117,273,64,-0.13110816063925917],[117,273,65,-0.128291949225174],[117,273,66,-0.1254079616949943],[117,273,67,-0.12245672637055266],[117,273,68,-0.119438831478203],[117,273,69,-0.11635492566957617],[117,273,70,-0.11320571853337308],[117,273,71,-0.10999198109830516],[117,273,72,-0.10671454632713617],[117,273,73,-0.10337430960194499],[117,273,74,-0.09997222920032545],[117,273,75,-0.09650932676289536],[117,273,76,-0.0929866877518421],[117,273,77,-0.08940546190060455],[117,273,78,-0.08576686365468772],[117,273,79,-0.0820721726035728],[117,274,64,-0.12693922032581034],[117,274,65,-0.12406954083025495],[117,274,66,-0.12113395921178483],[117,274,67,-0.1181330116166232],[117,274,68,-0.11506729189130688],[117,274,69,-0.11193745204285699],[117,274,70,-0.10874420268947621],[117,274,71,-0.10548831350188237],[117,274,72,-0.10217061363523416],[117,274,73,-0.09879199215176698],[117,274,74,-0.09535339843385499],[117,274,75,-0.0918558425878731],[117,274,76,-0.08830039583858501],[117,274,77,-0.08468819091415675],[117,274,78,-0.08102042242179269],[117,274,79,-0.07729834721395784],[117,275,64,-0.12277870970453514],[117,275,65,-0.11985538520800582],[117,275,66,-0.11686803712288918],[117,275,67,-0.11381720958263525],[117,275,68,-0.11070350220794467],[117,275,69,-0.1075275705059115],[117,275,70,-0.1042901262591755],[117,275,71,-0.10099193790519395],[117,275,72,-0.09763383090558875],[117,275,73,-0.09421668810568973],[117,275,74,-0.09074145008398404],[117,275,75,-0.08720911549185217],[117,275,76,-0.08362074138331227],[117,275,77,-0.07997744353487418],[117,275,78,-0.07628039675549936],[117,275,79,-0.07253083518662967],[117,276,64,-0.11862962705906588],[117,276,65,-0.11565251336694177],[117,276,66,-0.11261325796775312],[117,276,67,-0.1095124131441007],[117,276,68,-0.10635058444522255],[117,276,69,-0.10312843102469671],[117,276,70,-0.09984666596762853],[117,276,71,-0.09650605660743655],[117,276,72,-0.09310742483219153],[117,276,73,-0.08965164738062897],[117,276,74,-0.08613965612754487],[117,276,75,-0.08257243835895695],[117,276,76,-0.07895103703675155],[117,276,77,-0.07527655105291797],[117,276,78,-0.07155013547336558],[117,276,79,-0.0677730017712897],[117,277,64,-0.11449495743303872],[117,277,65,-0.11146394311948937],[117,277,66,-0.1083726711333799],[117,277,67,-0.1052217020673622],[117,277,68,-0.10201164755386932],[117,277,69,-0.09874317054099585],[117,277,70,-0.09541698555733297],[117,277,71,-0.0920338589658739],[117,277,72,-0.0885946092069449],[117,277,73,-0.0851001070302827],[117,277,74,-0.08155127571596521],[117,277,75,-0.07794909128458205],[117,277,76,-0.07429458269636036],[117,277,77,-0.07058883203935229],[117,277,78,-0.0668329747066761],[117,277,79,-0.06302819956277778],[117,278,64,-0.11037767002076038],[117,278,65,-0.10729267644496715],[117,278,66,-0.104149310190641],[117,278,67,-0.10094814032024924],[117,278,68,-0.09768978470425266],[117,278,69,-0.09437491023480976],[117,278,70,-0.09100423302790339],[117,278,71,-0.08757851861400323],[117,278,72,-0.08409858211721999],[117,278,73,-0.0805652884230747],[117,278,74,-0.07697955233458392],[117,278,75,-0.07334233871705537],[117,278,76,-0.06965466263130321],[117,278,77,-0.06591758945539145],[117,278,78,-0.062132234994898616],[117,278,79,-0.05829976558166822],[117,279,64,-0.10628071561455987],[117,279,65,-0.10314169690972452],[117,279,66,-0.09994619028819918],[117,279,67,-0.09669477344078509],[117,279,68,-0.09338807063086613],[117,279,69,-0.09002675284561817],[117,279,70,-0.0866115379350999],[117,279,71,-0.08314319073934068],[117,279,72,-0.07962252320338176],[117,279,73,-0.07605039448039458],[117,279,74,-0.07242771102257417],[117,279,75,-0.06875542666020606],[117,279,76,-0.06503454266861336],[117,279,77,-0.06126610782309305],[117,279,78,-0.05745121844183504],[117,279,79,-0.05359101841678793],[117,280,64,-0.10220702410903398],[117,280,65,-0.09901396714465188],[117,280,66,-0.09576630560426269],[117,280,67,-0.09246462596416233],[117,280,68,-0.0891095590355066],[117,280,69,-0.08570178005273671],[117,280,70,-0.08224200874933779],[117,280,71,-0.07873100942105354],[117,280,72,-0.07516959097650872],[117,280,73,-0.0715586069753657],[117,280,74,-0.06789895565371129],[117,280,75,-0.06419157993707414],[117,280,76,-0.060437467440777604],[117,280,77,-0.056637650457739386],[117,280,78,-0.05279320593370773],[117,280,79,-0.04890525542990215],[117,281,64,-0.0981595020620819],[117,281,65,-0.09491242637995373],[117,281,66,-0.09161262685605753],[117,281,67,-0.08826069890787624],[117,281,68,-0.0848572800490292],[117,281,69,-0.08140304991465153],[117,281,70,-0.0778987302735597],[117,281,71,-0.0743450850273229],[117,281,72,-0.07074292019619349],[117,281,73,-0.06709308389202445],[117,281,74,-0.06339646627786488],[117,281,75,-0.05965399951464084],[117,281,76,-0.05586665769462151],[117,281,77,-0.052035456761782006],[117,281,78,-0.048161454419056116],[117,281,79,-0.04424575002244402],[117,282,64,-0.09414103031262483],[117,282,65,-0.09083998803708149],[117,282,66,-0.08748809886691467],[117,282,67,-0.08408596731491119],[117,282,68,-0.08063423775157325],[117,282,69,-0.07713359436722755],[117,282,70,-0.07358476112036377],[117,282,71,-0.06998850167232606],[117,282,72,-0.06634561930831046],[117,282,73,-0.06265695684479655],[117,282,74,-0.05892339652310119],[117,282,75,-0.05514585988946713],[117,282,76,-0.051325307661380826],[117,282,77,-0.047462739580235946],[117,282,78,-0.043559194250331],[117,282,79,-0.039615748964169695],[117,283,64,-0.09015446165521834],[117,283,65,-0.08679953737803447],[117,283,66,-0.0833956381911859],[117,283,67,-0.07994337785519251],[117,283,68,-0.07644340775147779],[117,283,69,-0.07289641678100883],[117,283,70,-0.0693031312486091],[117,283,71,-0.06566431473306444],[117,283,72,-0.0619807679429778],[117,283,73,-0.058253328558500905],[117,283,74,-0.05448287105862837],[117,283,75,-0.05067030653447002],[117,283,76,-0.04681658248819437],[117,283,77,-0.04292268261775939],[117,283,78,-0.038989626587419834],[117,283,79,-0.03501846978397832],[117,284,64,-0.08620261857145362],[117,284,65,-0.08279392921192602],[117,284,66,-0.07933813079687813],[117,284,67,-0.0758358464851987],[117,284,68,-0.0722877348227744],[117,284,69,-0.06869448957749824],[117,284,70,-0.06505683955938552],[117,284,71,-0.0613755484259223],[117,284,72,-0.057651414472599694],[117,284,73,-0.05388527040876412],[117,284,74,-0.050077983118465064],[117,284,75,-0.04623045340672177],[117,284,76,-0.04234361573089723],[117,284,77,-0.03841843791729754],[117,284,78,-0.034455920862985656],[117,284,79,-0.03045709822277659],[117,285,64,-0.0822882910180455],[117,285,65,-0.0788259856587091],[117,285,66,-0.07531842980590508],[117,285,67,-0.07176625616562482],[117,285,68,-0.06817013060115318],[117,285,69,-0.06453075190431126],[117,285,70,-0.0608488515512394],[117,285,71,-0.05712519344284614],[117,285,72,-0.05336057362987706],[117,285,73,-0.04955582002273365],[117,285,74,-0.04571179208572221],[117,285,75,-0.04182938051615681],[117,285,76,-0.03790950690800224],[117,285,77,-0.033953123400176755],[117,285,78,-0.029961212309502105],[117,285,79,-0.025934785748269656],[117,286,64,-0.07841423427181207],[117,286,65,-0.07489849397027037],[117,286,66,-0.07133935329216445],[117,286,67,-0.06773745463731393],[117,286,68,-0.06409347133861595],[117,286,69,-0.0604081073694209],[117,286,70,-0.05668209703487673],[117,286,71,-0.05291620464736929],[117,286,72,-0.04911122418601202],[117,286,73,-0.045267978940317505],[117,286,74,-0.041387321137725225],[117,286,75,-0.03747013155541712],[117,286,76,-0.033517319116100786],[117,286,77,-0.029529820467883133],[117,286,78,-0.02550859954822074],[117,286,79,-0.021454647131916554],[117,287,64,-0.07458316683144148],[117,287,65,-0.07101420440878647],[117,287,66,-0.06740368213733414],[117,287,67,-0.0637522522553439],[117,287,68,-0.06006059571670622],[117,287,69,-0.05632942183438072],[117,287,70,-0.0525594679072281],[117,287,71,-0.048751498830364365],[117,287,72,-0.04490630668899079],[117,287,73,-0.04102471033583277],[117,287,74,-0.03710755495185908],[117,287,75,-0.033155711590717535],[117,287,76,-0.02917007670656327],[117,287,77,-0.025151571665404077],[117,287,78,-0.021101142239948772],[117,287,79,-0.0170197580879278],[117,288,64,-0.07079776837594984],[117,288,65,-0.06717582818224507],[117,288,66,-0.06351415794428836],[117,288,67,-0.059813419881172475],[117,288,68,-0.056074302718216174],[117,288,69,-0.0522975212664262],[117,288,70,-0.0484838159847748],[117,288,71,-0.04463395252542254],[117,288,72,-0.040748721261839094],[117,288,73,-0.036828936799957745],[117,288,74,-0.03287543747203031],[117,288,75,-0.028889084813623872],[117,288,76,-0.02487076302343172],[117,288,77,-0.020821378406024715],[117,288,78,-0.01674185879752832],[117,288,79,-0.012633152974194761],[117,289,64,-0.0670606777800373],[117,289,65,-0.06338603543734062],[117,289,66,-0.05967348100834746],[117,289,67,-0.055923686833055375],[117,289,68,-0.05213734955758803],[117,289,69,-0.04831518964967396],[117,289,70,-0.04445795089635893],[117,289,71,-0.04056639988408367],[117,289,72,-0.036641325461079455],[117,289,73,-0.032683538182217586],[117,289,74,-0.028693869735977262],[117,289,75,-0.024673172353977202],[117,289,76,-0.02062231820273977],[117,289,77,-0.016542198757815985],[117,289,78,-0.012433724160255233],[117,289,79,-0.008297822555390438],[117,290,64,-0.06337449118616886],[117,290,65,-0.05964745330956914],[117,290,66,-0.055884308346181494],[117,290,67,-0.052085738894555644],[117,290,68,-0.04825244966982642],[117,290,69,-0.04438516695523309],[117,290,70,-0.0404846380352879],[117,290,71,-0.03655163061072733],[117,290,72,-0.03258693219519701],[117,290,73,-0.028591349493809204],[117,290,74,-0.02456570776323297],[117,290,75,-0.020510850153767052],[117,290,76,-0.016427637033060993],[117,290,77,-0.012316945291614229],[117,290,78,-0.008179667630036525],[117,290,79,-0.00401671182804067],[117,291,64,-0.059741760133506405],[117,291,65,-0.05596266403065003],[117,291,66,-0.05214925178249913],[117,291,67,-0.04830221638127799],[117,291,68,-0.04442227075805641],[117,291,69,-0.040510147170365246],[117,291,70,-0.03656659657087402],[117,291,71,-0.032592387957265045],[117,291,72,-0.02858830770325574],[117,291,73,-0.02455515887090856],[117,291,74,-0.020493760503884878],[117,291,75,-0.0164049469020989],[117,291,76,-0.012289566877432018],[117,291,77,-0.00814848299063975],[117,291,78,-0.003982570769434202],[117,291,79,2.0728209228731975E-4],[117,292,64,-0.056164989743525795],[117,292,65,-0.052334203093106824],[117,292,66,-0.04847087609435077],[117,292,67,-0.044575712265653905],[117,292,68,-0.04064943289955136],[117,292,69,-0.03669277638651533],[117,292,70,-0.032706497519226024],[117,292,71,-0.02869136677745021],[117,292,72,-0.024648169593480568],[117,292,73,-0.020577705598273738],[117,292,74,-0.016480787847943518],[117,292,75,-0.012358242031066585],[117,292,76,-0.008210905656459822],[117,292,77,-0.004039627221562009],[117,292,78,1.5473463859752568E-4],[117,292,79,0.004371312021872548],[117,293,64,-0.05264663696251823],[117,293,65,-0.04876455747220798],[117,293,66,-0.04485169721324925],[117,293,67,-0.04090877035998433],[117,293,68,-0.03693650671043969],[117,293,69,-0.03293565094642428],[117,293,70,-0.02890696187350919],[117,293,71,-0.024851211641024162],[117,293,72,-0.020769184942024094],[117,293,73,-0.01666167819336517],[117,293,74,-0.012529498695542735],[117,293,75,-0.008373463772753886],[117,293,76,-0.00419439989283929],[117,293,77,6.858232760434402E-6],[117,293,78,0.004229468569052319],[117,293,79,0.008472582697571576],[117,294,64,-0.04918910886087756],[117,294,65,-0.04525616390516936],[117,294,66,-0.04129418048500903],[117,294,67,-0.037303883557639125],[117,294,68,-0.03328601156898882],[117,294,69,-0.02924131565022138],[117,294,70,-0.025170558793568693],[117,294,71,-0.021074515007590777],[117,294,72,-0.016953968451811796],[117,294,73,-0.012809712550874972],[117,294,74,-0.008642549087863577],[117,294,75,-0.0044532872772568705],[117,294,76,-2.427428171712792E-4],[117,294,77,0.00398826307897604],[117,294,78,0.008238904671400704],[117,294,79,0.012508352703509557],[117,295,64,-0.04579476098908691],[117,295,65,-0.04181140722752971],[117,295,66,-0.037800738987214574],[117,295,67,-0.033763492132322895],[117,295,68,-0.029700413897374198],[117,295,69,-0.025612262020402066],[117,295,70,-0.021499803854821253],[117,295,71,-0.017363815460125914],[117,295,72,-0.013205080671369288],[117,295,73,-0.009024390147569214],[117,295,74,-0.004822540398683434],[117,295,75,-6.003327916273421E-4],[117,295,76,0.0036414274650186096],[117,295,77,0.007901932357472899],[117,295,78,0.0121803721244087],[117,295,79,0.016475936335829014],[117,296,64,-0.04246589579058668],[117,296,65,-0.03843261876688306],[117,296,66,-0.034373731904502436],[117,296,67,-0.030289982095594137],[117,296,68,-0.026182125502123246],[117,296,69,-0.0220509266258848],[117,296,70,-0.017897157356611737],[117,296,71,-0.013721595998318487],[117,296,72,-0.009525026273830187],[117,296,73,-0.005308236307642419],[117,296,74,-0.001072017586752877],[117,296,75,0.00318283610005822],[117,296,76,0.007455529744855194],[117,296,77,0.011745268224940805],[117,296,78,0.016051257429038207],[117,296,79,0.020372705405288002],[117,297,64,-0.03920476107142666],[117,297,65,-0.035122074793871624],[117,297,66,-0.03101546296156117],[117,297,67,-0.026885683612540706],[117,297,68,-0.022733501973136006],[117,297,69,-0.018559689465045964],[117,297,70,-0.014365022689930923],[117,297,71,-0.010150282391639079],[117,297,72,-0.005916252396021393],[117,297,73,-0.0016637185284810313],[117,297,74,0.0026065324911050958],[117,297,75,0.00689371417561041],[117,297,76,0.011197041420389159],[117,297,77,0.01551573167537032],[117,297,78,0.019849006139536877],[117,297,79,0.02419609097781758],[117,298,64,-0.03601354852662439],[117,298,65,-0.031881995030357435],[117,298,66,-0.027728178913765875],[117,298,67,-0.02355286947552703],[117,298,68,-0.019356841141195853],[117,298,69,-0.01514087240764618],[117,298,70,-0.010905744764409003],[117,298,71,-0.00665224159204976],[117,298,72,-0.002381147037536571],[117,298,73,0.0019067551332548893],[117,298,74,0.006210682706264126],[117,298,75,0.010529856212710922],[117,298,76,0.014863500145665828],[117,298,77,0.01921084419958216],[117,298,78,0.023571124532811773],[117,298,79,0.027943585053131458],[117,299,64,-0.03289439232339739],[117,299,65,-0.028714541214945315],[117,299,66,-0.024514068095620865],[117,299,67,-0.02029375363618914],[117,299,68,-0.016054381594150388],[117,299,69,-0.011796737695830235],[117,299,70,-0.0075216084947668654],[117,299,71,-0.0032297802065389195],[117,299,72,0.0010779624800159177],[117,299,73,0.005400837615043154],[117,299,74,0.00973806722374234],[117,299,75,0.014088878565777632],[117,299,76,0.018452505418393772],[117,299,77,0.022828189383092293],[117,299,78,0.02721518121589083],[117,299,79,0.03161274218119173],[117,300,64,-0.029849367741182006],[117,300,65,-0.025621815725766814],[117,300,66,-0.021375259026921084],[117,300,67,-0.017110489795586943],[117,300,68,-0.012828301251669137],[117,300,69,-0.008529486504105094],[117,300,70,-0.004214837346630432],[117,300,71,1.1485697061452277E-4],[117,300,72,0.004458810993686502],[117,300,73,0.008816244341501411],[117,300,74,0.01318638300692639],[117,300,75,0.01756846068180902],[117,300,76,0.021961720106312962],[117,300,77,0.02636541444241289],[117,300,78,0.030778808671572535],[117,300,79,0.03520118101663177],[117,301,64,-0.026880489868361945],[117,301,65,-0.022605860260447357],[117,301,66,-0.018313819076551833],[117,301,67,-0.01400517005243158],[117,301,68,-0.009680715998495442],[117,301,69,-0.0053412575582143275],[117,301,70,-9.875919416235425E-4],[117,301,71,0.0033794883659327216],[117,301,72,0.007759196919865959],[117,301,73,0.012150754657066672],[117,301,74,0.016553391261660194],[117,301,75,0.020966346555297208],[117,301,76,0.02538887191235204],[117,301,77,0.02982023169987968],[117,301,78,0.034259704742356206],[117,301,79,0.038706585811228184],[117,302,64,-0.023989712355866593],[117,302,65,-0.019668654573420624],[117,302,66,-0.015331753184093558],[117,302,67,-0.010979823609557893],[117,302,68,-0.0066136783763652805],[117,302,69,-0.0022341258130817174],[117,302,70,0.0021580312780836546],[117,302,71,0.006561996975008446],[117,302,72,0.010976983614795896],[117,302,73,0.01540221319817183],[117,302,74,0.0198369188195158],[117,302,75,0.024280346122025395],[117,302,76,0.0287317547783893],[117,302,77,0.03319041999681866],[117,302,78,0.037655634052462646],[117,302,79,0.042126707844232114],[117,303,64,-0.02117892622755427],[117,303,65,-0.016812115270502286],[117,303,66,-0.012431002639142277],[117,303,67,-0.008036415538551396],[117,303,68,-0.003629176334500019],[117,303,69,7.898988102687269E-4],[117,303,70,0.005220001325866613],[117,303,71,0.009660331651047648],[117,303,72,0.014110100675003182],[117,303,73,0.01856853120501479],[117,303,74,0.023034859460343005],[117,303,75,0.027508336591847166],[117,303,76,0.031988230227715096],[117,303,77,0.03647382604515078],[117,303,78,0.04096442936804591],[117,303,79,0.04545936679066024],[117,304,64,-0.01844995874731322],[117,304,65,-0.014038094660654648],[117,304,66,-0.009613443918277563],[117,304,67,-0.005176845602458468],[117,304,68,-7.291320386020525E-4],[117,304,69,0.00372887262888838],[117,304,70,0.008196353887450474],[117,304,71,0.012672508333759432],[117,304,72,0.01715654517773384],[117,304,73,0.021647687772996825],[117,304,74,0.026145175174174983],[117,304,75,0.030648263720525815],[117,304,76,0.03515622864627572],[117,304,77,0.03966836571751524],[117,304,78,0.04418399289567759],[117,304,79,0.04870245202762606],[117,305,64,-0.015804572343024292],[117,305,65,-0.011348379665090301],[117,305,66,-0.006880887579826814],[117,305,67,-0.0024029471367339773],[117,305,68,0.002084599261490506],[117,305,69,0.006580919343018864],[117,305,70,0.011085192478268002],[117,305,71,0.01559661121843249],[117,305,72,0.02011438286122419],[117,305,73,0.024637731043666095],[117,305,74,0.02916589736232443],[117,305,75,0.033698143020466385],[117,305,76,0.038233750502528176],[117,305,77,0.04277202527573913],[117,305,78,0.04731229751892849],[117,305,79,0.05185392387853903],[117,306,64,-0.013244463587310011],[117,306,65,-0.008744690783637363],[117,306,66,-0.004235077216346833],[117,306,67,2.835140116555293E-4],[117,306,68,0.004810230305574793],[117,306,69,0.009344231122228153],[117,306,70,0.013884689541455393],[117,306,71,0.018430793865282978],[117,306,72,0.022981749244894698],[117,306,73,0.027536779335252642],[117,306,74,0.032095127977757223],[117,306,75,0.036656060910428216],[117,306,76,0.04121886750599586],[117,306,77,0.04578286253774532],[117,306,78,0.050347387973141956],[117,306,79,0.05491181479526221],[117,307,64,-0.01077126223500656],[117,307,65,-0.006228681118299821],[117,307,66,-0.001677688464758277],[117,307,67,0.002880840487040036],[117,307,68,0.007446042838344158],[117,307,69,0.012017069632638037],[117,307,70,0.016593087486555295],[117,307,71,0.021173280249144326],[117,307,72,0.025756850689537536],[117,307,73,0.030343022212866777],[117,307,74,0.03493104060481629],[117,307,75,0.03952017580429225],[117,307,76,0.044109723704600146],[117,307,77,0.04869900798297197],[117,307,78,0.053287381958472047],[117,307,79,0.05787423047830417],[117,308,64,-0.008386530317492008],[117,308,65,-0.003801935454152562],[117,308,66,7.896719257298665E-4],[117,308,67,0.005387404369622373],[117,308,68,0.009990388565998154],[117,308,69,0.014597767005095477],[117,308,70,0.019208699668779028],[117,308,71,0.02382236574934883],[117,308,72,0.028437965397347345],[117,308,73,0.03305472149820862],[117,308,74,0.037671881478142114],[117,308,75,0.042288719138726255],[117,308,76,0.04690453652060782],[117,308,77,0.051518665796145224],[117,308,78,0.05613047119102657],[117,308,79,0.060739350934884986],[117,309,64,-0.006091761293800485],[117,309,65,-0.0014659693974961446],[117,309,66,0.0031654669679773983],[117,309,67,0.007801648061899619],[117,309,68,0.01244169005427645],[117,309,69,0.017084726744366716],[117,309,70,0.021729911308908043],[117,309,71,0.02637641807988228],[117,309,72,0.03102344435187522],[117,309,73,0.03567021221886968],[117,309,74,0.04031597044087057],[117,309,75,0.04495999633983151],[117,309,76,0.049601597725281374],[117,309,77,0.05424011484949],[117,309,78,0.058874922392201795],[117,309,79,0.0635054314749611],[117,310,64,-0.0038883792584656768],[117,310,65,7.777714287853926E-4],[117,310,66,0.005448230253612199],[117,310,67,0.010122085116988644],[117,310,68,0.01479844156797705],[117,310,69,0.01947642457941498],[117,310,70,0.024155180353894287],[117,310,71,0.028833878159872317],[117,310,72,0.03351171219796911],[117,310,73,0.038187903497290426],[117,310,74,0.04286170184217537],[117,310,75,0.04753238772883714],[117,310,76,0.052199274352296376],[117,310,77,0.05686170962344558],[117,310,78,0.0615190782162742],[117,310,79,0.06617080364527723],[117,311,64,-0.0017777382062143243],[117,311,65,0.0029279121325395396],[117,311,66,0.007636566711944709],[117,311,67,0.012347301008726996],[117,311,68,0.017059209851829987],[117,311,69,0.021771409254629448],[117,311,70,0.026483038278028212],[117,311,71,0.03119326092427635],[117,311,72,0.035901268061564906],[117,311,73,0.040606279379236554],[117,311,74,0.04530754537401223],[117,311,75,0.05000434936669923],[117,311,76,0.05469600954978328],[117,311,77,0.05938188106574127],[117,311,78,0.06406135811610515],[117,311,79,0.06873387610129962],[117,312,64,2.388786465545717E-4],[117,312,65,0.004983149242400342],[117,312,66,0.00972915331116575],[117,312,67,0.014475953843619063],[117,312,68,0.019222634852795475],[117,312,69,0.023968303262077023],[117,312,70,0.028712090824745073],[117,312,71,0.033453156074842394],[117,312,72,0.038190686309400326],[117,312,73,0.042923899601866766],[117,312,74,0.04765204684714226],[117,312,75,0.052374413837682016],[117,312,76,0.05709032337107173],[117,312,77,0.06179913738891113],[117,312,78,0.06650025914703714],[117,312,79,0.07119313541710845],[117,313,64,0.002160259483554805],[117,313,65,0.006942251340633546],[117,313,66,0.011724739701877554],[117,313,67,0.016506775014678857],[117,313,68,0.02128743038383843],[117,313,69,0.026065803514830385],[117,313,70,0.03084101868912295],[117,313,71,0.035612228771396165],[117,313,72,0.040378617248708476],[117,313,73,0.04513940030145028],[117,313,74,0.0498938289064913],[117,313,75,0.05464119097197853],[117,313,76,0.05938081350419386],[117,313,77,0.06411206480630458],[117,313,78,0.06883435670903909],[117,313,79,0.07354714683330932],[117,314,64,0.0039852644535486315],[117,314,65,0.008804059638655562],[117,314,66,0.01362214880284314],[117,314,67,0.018438569797049748],[117,314,68,0.023252384729060827],[117,314,69,0.02806268196124853],[117,314,70,0.03286857814095048],[117,314,71,0.03766922026332939],[117,314,72,0.042463787766762684],[117,314,73,0.04725149466060258],[117,314,74,0.05203159168571278],[117,314,75,0.05680336850723758],[117,314,76,0.06156615594001405],[117,314,77,0.06631932820645939],[117,314,78,0.07106230522696627],[117,314,79,0.0757945549428275],[117,315,64,0.005712826178528724],[117,315,65,0.010567488495325295],[117,315,66,0.015420277329050103],[117,315,67,0.020270217885502484],[117,315,68,0.02511636119029101],[117,315,69,0.029957786140314496],[117,315,70,0.03479360158846628],[117,315,71,0.039622948461395274],[117,315,72,0.044445001910380255],[117,315,73,0.04925897349515054],[117,315,74,0.05406411340106651],[117,315,75,0.058859712689109916],[117,315,76,0.06364510557909772],[117,315,77,0.06841967176595051],[117,315,78,0.07318283876904896],[117,315,79,0.07793408431469903],[117,316,64,0.007341950205079495],[117,316,65,0.01223152587793927],[117,316,66,0.017118096262021543],[117,316,67,0.022000673873741133],[117,316,68,0.026878298575060133],[117,316,69,0.03175003967795756],[117,316,70,0.0366149980826985],[117,316,71,0.041472308449737344],[117,316,72,0.04632114140531007],[117,316,73,0.0511607057805486],[117,316,74,0.05599025088453441],[117,316,75,0.06080906881073436],[117,316,76,0.06561649677723969],[117,316,77,0.07041191950063452],[117,316,78,0.07519477160352925],[117,316,79,0.07996454005577938],[117,317,64,0.008871715399000807],[117,317,65,0.013795233766014048],[117,317,66,0.01871465126245922],[117,317,67,0.023628967675602852],[117,317,68,0.02853721162605463],[117,317,69,0.033438442724448736],[117,317,70,0.03833175376249537],[117,317,71,0.04321627293824251],[117,317,72,0.04809116611559697],[117,317,73,0.05295563911794268],[117,317,74,0.0578089400562701],[117,317,75,0.06265036169126117],[117,317,76,0.06747924382975048],[117,317,77,0.07229497575538907],[117,317,78,0.07709699869354608],[117,317,79,0.0818848083104689],[117,318,64,0.010301274283093853],[117,318,65,0.015257748497756712],[117,318,66,0.02020906302511566],[117,318,67,0.025154204888047704],[117,318,68,0.030092191391936585],[117,318,69,0.03502207233276253],[117,318,70,0.0399429322401362],[117,318,71,0.04485389265510839],[117,318,72,0.049754114442811886],[117,318,73,0.05464280013976622],[117,318,74,0.05951919633626687],[117,318,75,0.06438259609329647],[117,318,76,0.06923234139438283],[117,318,77,0.07406782563222863],[117,318,78,0.07888849613014859],[117,318,79,0.08369385669833457],[117,319,64,0.011629853318165712],[117,319,65,0.01661828105927779],[117,319,66,0.02160052757595271],[117,319,67,0.026575567095998065],[117,319,68,0.03154240553959267],[117,319,69,0.03650008277796557],[117,319,70,0.04144767492758478],[117,319,71,0.04638429667968741],[117,319,72,0.051309103665207606],[117,319,73,0.05622129485493205],[117,319,74,0.06112011499530712],[117,319,75,0.06600485707933157],[117,319,76,0.07087486485296321],[117,319,77,0.07572953535686139],[117,319,78,0.08056832150350365],[117,319,79,0.08539073468969516],[118,-64,64,-0.11688997675508239],[118,-64,65,-0.12059154135561267],[118,-64,66,-0.12417962131242533],[118,-64,67,-0.1276527722790478],[118,-64,68,-0.13100970709345017],[118,-64,69,-0.13424930144522662],[118,-64,70,-0.13737059960646603],[118,-64,71,-0.140372820226206],[118,-64,72,-0.14325536218849722],[118,-64,73,-0.14601781053398],[118,-64,74,-0.1486599424452243],[118,-64,75,-0.15118173329549123],[118,-64,76,-0.15358336276119133],[118,-64,77,-0.155865220997899],[118,-64,78,-0.15802791487998413],[118,-64,79,-0.1600722743038342],[118,-63,64,-0.11135497842684605],[118,-63,65,-0.11504523950792511],[118,-63,66,-0.11862259592372826],[118,-63,67,-0.12208560036555893],[118,-63,68,-0.125432962158473],[118,-63,69,-0.12866355292079845],[118,-63,70,-0.13177641228735903],[118,-63,71,-0.13477075369631564],[118,-63,72,-0.13764597023963177],[118,-63,73,-0.1404016405770805],[118,-63,74,-0.14303753491403493],[118,-63,75,-0.14555362104270841],[118,-63,76,-0.14795007044710662],[118,-63,77,-0.1502272644715681],[118,-63,78,-0.15238580055294149],[118,-63,79,-0.1544264985163749],[118,-62,64,-0.10573889985228202],[118,-62,65,-0.1094171028708334],[118,-62,66,-0.1129830080539923],[118,-62,67,-0.11643516503715878],[118,-62,68,-0.11977227951223957],[118,-62,69,-0.12299321887905679],[118,-62,70,-0.12609701796048767],[118,-62,71,-0.12908288478124108],[118,-62,72,-0.13195020641028243],[118,-62,73,-0.1346985548668227],[118,-62,74,-0.1373276930901175],[118,-62,75,-0.13983758097273158],[118,-62,76,-0.14222838145754668],[118,-62,77,-0.14450046669837546],[118,-62,78,-0.14665442428423603],[118,-62,79,-0.14869106352726236],[118,-61,64,-0.10004601177060779],[118,-61,65,-0.10371140924143762],[118,-61,66,-0.10726514224006078],[118,-61,67,-0.11070575725375786],[118,-61,68,-0.11403195622281947],[118,-61,69,-0.1172426021834061],[118,-61,70,-0.12033672497415993],[118,-61,71,-0.12331352700647735],[118,-61,72,-0.12617238909845363],[118,-61,73,-0.12891287637241344],[118,-61,74,-0.13153474421627043],[118,-61,75,-0.13403794430838234],[118,-61,76,-0.1364226307061669],[118,-61,77,-0.13868916599834658],[118,-61,78,-0.1408381275208782],[118,-61,79,-0.14287031363654334],[118,-60,64,-0.0942806309999813],[118,-60,65,-0.09793248298705715],[118,-60,66,-0.10147333006291825],[118,-60,67,-0.10490171547603533],[118,-60,68,-0.1082163372984627],[118,-60,69,-0.11141605405971666],[118,-60,70,-0.11449989044442443],[118,-60,71,-0.11746704305365596],[118,-60,72,-0.1203168862299514],[118,-60,73,-0.1230489779459567],[118,-60,74,-0.12566306575691],[118,-60,75,-0.1281590928166464],[118,-60,76,-0.13053720395738377],[118,-60,77,-0.1327977518331629],[118,-60,78,-0.13494130312699348],[118,-60,79,-0.13696864482168014],[118,-59,64,-0.08844711556787299],[118,-59,65,-0.0920846901661786],[118,-59,66,-0.09561194525962857],[118,-59,67,-0.09902742076877169],[118,-59,68,-0.10232981078273007],[118,-59,69,-0.10551796918365897],[118,-59,70,-0.10859091533500698],[118,-59,71,-0.11154783983347571],[118,-59,72,-0.11438811032469831],[118,-59,73,-0.11711127738254867],[118,-59,74,-0.11971708045232388],[118,-59,75,-0.12220545385746284],[118,-59,76,-0.12457653287007453],[118,-59,77,-0.12683065984513697],[118,-59,78,-0.12896839041842545],[118,-59,79,-0.13099049976814414],[118,-58,64,-0.08254985971658813],[118,-58,65,-0.0861724335240941],[118,-58,66,-0.08968539870951009],[118,-58,67,-0.09308729177799124],[118,-58,68,-0.09637680272302218],[118,-58,69,-0.09955278064103845],[118,-58,70,-0.10261423940986947],[118,-58,71,-0.10556036343090136],[118,-58,72,-0.1083905134349813],[118,-58,73,-0.11110423235197597],[118,-58,74,-0.11370125124421793],[118,-58,75,-0.11618149530351851],[118,-58,76,-0.11854508991200574],[118,-58,77,-0.12079236676665583],[118,-58,78,-0.12292387006757655],[118,-58,79,-0.12494036277001486],[118,-57,64,-0.07659328878425353],[118,-57,65,-0.08020014736353676],[118,-57,66,-0.0836981332948673],[118,-57,67,-0.08708577958222696],[118,-57,68,-0.09036177201282303],[118,-57,69,-0.09352495476145495],[118,-57,70,-0.09657433605871701],[118,-57,71,-0.0995090939229486],[118,-57,72,-0.10232858195594363],[118,-57,73,-0.1050323352023328],[118,-57,74,-0.10762007607288093],[118,-57,75,-0.11009172033136783],[118,-57,76,-0.112447383145313],[118,-57,77,-0.11468738520042165],[118,-57,78,-0.11681225887879798],[118,-57,79,-0.11882275450090563],[118,-56,64,-0.07058185396112371],[118,-56,65,-0.07417229229016875],[118,-56,66,-0.07765461863612533],[118,-56,67,-0.08102736241776454],[118,-56,68,-0.08428920510751048],[118,-56,69,-0.08743898582513276],[118,-56,70,-0.09047570699530227],[118,-56,71,-0.09339854006891168],[118,-56,72,-0.0962068313081732],[118,-56,73,-0.09890010763541657],[118,-56,74,-0.10147808254581658],[118,-56,75,-0.10394066208372843],[118,-56,76,-0.10628795088288445],[118,-56,77,-0.10852025827033596],[118,-56,78,-0.1106381044341822],[118,-56,79,-0.11264222665506429],[118,-55,64,-0.06452002692104952],[118,-55,65,-0.0680933498327716],[118,-55,66,-0.07155934570121836],[118,-55,67,-0.07491654027771],[118,-55,68,-0.07816361061357513],[118,-55,69,-0.08129939064276892],[118,-55,70,-0.08432287682837103],[118,-55,71,-0.08723323387286785],[118,-55,72,-0.09002980049223519],[118,-55,73,-0.09271209525373814],[118,-55,74,-0.09527982247768352],[118,-55,75,-0.09773287820279708],[118,-55,76,-0.1000713562154878],[118,-55,77,-0.10229555414287061],[118,-55,78,-0.1044059796096003],[118,-55,79,-0.10640335645849264],[118,-54,64,-0.058412294328414105],[118,-54,65,-0.06196781693843534],[118,-54,66,-0.06541682128953541],[118,-54,67,-0.06875782938518238],[118,-54,68,-0.07198951375155949],[118,-54,69,-0.07511070300870581],[118,-54,70,-0.07812038750555461],[118,-54,71,-0.08101772501877769],[118,-54,72,-0.08380204651545164],[118,-54,73,-0.08647286197945747],[118,-54,74,-0.08902986630185283],[118,-54,75,-0.09147294523489291],[118,-54,76,-0.09380218140995344],[118,-54,77,-0.09601786041923488],[118,-54,78,-0.09812047696129567],[118,-54,79,-0.10011074105039419],[118,-53,64,-0.052263152220388465],[118,-53,65,-0.055800200342605466],[118,-53,66,-0.059231562390270165],[118,-53,67,-0.0625557565404875],[118,-53,68,-0.06577145069256429],[118,-53,69,-0.06887746802727757],[118,-53,70,-0.07187279263006197],[118,-53,71,-0.07475657517802214],[118,-53,72,-0.07752813869078257],[118,-53,73,-0.08018698434509552],[118,-53,74,-0.08273279735343819],[118,-53,75,-0.08516545290627808],[118,-53,76,-0.08748502217825882],[118,-53,77,-0.08969177839818943],[118,-53,78,-0.0917862029828791],[118,-53,79,-0.09376899173480113],[118,-52,64,-0.04607710026434797],[118,-52,65,-0.049595010813822116],[118,-52,66,-0.053008090415021636],[118,-52,67,-0.05631485334210906],[118,-52,68,-0.05951396276815846],[118,-52,69,-0.0626042363121686],[118,-52,70,-0.0655846516500107],[118,-52,71,-0.0684543521892188],[118,-52,72,-0.07121265280763955],[118,-52,73,-0.07385904565585688],[118,-52,74,-0.07639320602362654],[118,-52,75,-0.07881499826999294],[118,-52,76,-0.08112448181735488],[118,-52,77,-0.08332191720934223],[118,-52,78,-0.0854077722325659],[118,-52,79,-0.08738272810221182],[118,-51,64,-0.03985863589075567],[118,-51,65,-0.043356757273464774],[118,-51,66,-0.04675092530495262],[118,-51,67,-0.05003965028182922],[118,-51,68,-0.05322159055401199],[118,-51,69,-0.05629555805910025],[118,-51,70,-0.05926052392070358],[118,-51,71,-0.06211562411063021],[118,-51,72,-0.06486016517495541],[118,-51,73,-0.06749363002388298],[118,-51,74,-0.07001568378563028],[118,-51,75,-0.07242617972402354],[118,-51,76,-0.07472516522004868],[118,-51,77,-0.07691288781724281],[118,-51,78,-0.07898980133097078],[118,-51,79,-0.08095657202156314],[118,-50,64,-0.03361224830137022],[118,-50,65,-0.0370899407903571],[118,-50,66,-0.04046457951235749],[118,-50,67,-0.04373467071383241],[118,-50,68,-0.046898867827098734],[118,-50,69,-0.049955976991694406],[118,-50,70,-0.05290496263971223],[118,-50,71,-0.05574495314501693],[118,-50,72,-0.05847524653635561],[118,-50,73,-0.06109531627428033],[118,-50,74,-0.0636048170921154],[118,-50,75,-0.066003590900647],[118,-50,76,-0.06829167275679338],[118,-50,77,-0.07046929689612813],[118,-50,78,-0.07253690282930747],[118,-50,79,-0.07449514150238157],[118,-49,64,-0.02734241235260526],[118,-49,65,-0.030799048450054656],[118,-49,66,-0.03415355185647173],[118,-49,67,-0.0374044246976184],[118,-49,68,-0.040550315396297054],[118,-49,69,-0.04359002418033986],[118,-49,70,-0.04652250865458618],[118,-49,71,-0.04934688943675947],[118,-49,72,-0.05206245585725444],[118,-49,73,-0.05466867172275636],[118,-49,74,-0.057165181143918886],[118,-49,75,-0.059551814426786254],[118,-49,76,-0.06182859402821006],[118,-49,77,-0.06399574057513757],[118,-49,78,-0.06605367894782321],[118,-49,79,-0.06800304442693994],[118,-48,64,-0.021053582314366603],[118,-48,65,-0.02448854709914894],[118,-48,66,-0.027822321253847537],[118,-48,67,-0.031053402715055523],[118,-48,68,-0.034180434806719506],[118,-48,69,-0.03720221173439808],[118,-48,70,-0.040117684143524235],[118,-48,71,-0.04292596474158272],[118,-48,72,-0.04562633398421834],[118,-48,73,-0.04821824582519019],[118,-48,74,-0.05070133353040407],[118,-48,75,-0.05307541555570339],[118,-48,76,-0.05534050148867531],[118,-48,77,-0.057496798054342935],[118,-48,78,-0.05954471518479887],[118,-48,79,-0.06148487215275378],[118,-47,64,-0.014750185504205149],[118,-47,65,-0.018162876964422647],[118,-47,66,-0.021475340323134917],[118,-47,67,-0.024686069261407373],[118,-47,68,-0.027793701917606217],[118,-47,69,-0.030797026367576308],[118,-47,70,-0.03369498616883737],[118,-47,71,-0.036486685968715404],[118,-47,72,-0.039171397176418155],[118,-47,73,-0.04174856369897595],[118,-47,74,-0.04421780774127437],[118,-47,75,-0.04657893566986604],[118,-47,76,-0.048831943940809586],[118,-47,77,-0.05097702509141522],[118,-47,78,-0.05301457379594687],[118,-47,79,-0.0549451929852558],[118,-46,64,-0.008436615796627134],[118,-46,65,-0.011826445146694176],[118,-46,66,-0.015117028864104043],[118,-46,67,-0.018306856310175257],[118,-46,68,-0.021394560353622527],[118,-46,69,-0.024378922836310823],[118,-46,70,-0.027258880103048444],[118,-46,71,-0.030033528595326042],[118,-46,72,-0.03270213050901971],[118,-46,73,-0.03526411951597397],[118,-46,74,-0.03771910654969257],[118,-46,75,-0.04006688565482608],[118,-46,76,-0.04230743990070063],[118,-46,77,-0.04444094735877213],[118,-46,78,-0.04646778714405053],[118,-46,79,-0.04838854552047345],[118,-45,64,-0.0021172270078774202],[118,-45,65,-0.005483618989674421],[118,-45,66,-0.008751767211235162],[118,-45,67,-0.011920156652077352],[118,-45,68,-0.014987414829879309],[118,-45,69,-0.017952317251483163],[118,-45,70,-0.020813792927945607],[118,-45,71,-0.02357092995355592],[118,-45,72,-0.026222981148828595],[118,-45,73,-0.028769369767396524],[118,-45,74,-0.031209695267023996],[118,-45,75,-0.03354373914443365],[118,-45,76,-0.03577147083419141],[118,-45,77,-0.0378930536715304],[118,-45,78,-0.03990885091916152],[118,-45,79,-0.04181943185805015],[118,-44,64,0.004203673843955924],[118,-44,65,8.612806763229619E-4],[118,-44,66,-0.002383889461714639],[118,-44,67,-0.005530317108003668],[118,-44,68,-0.008576624350524087],[118,-44,69,-0.011521580263309517],[118,-44,70,-0.014364106406436705],[118,-44,71,-0.017103282389993035],[118,-44,72,-0.019738351502035956],[118,-44,73,-0.02226872640046862],[118,-44,74,-0.02469399486904933],[118,-44,75,-0.027013925637230485],[118,-44,76,-0.029228474264071158],[118,-44,77,-0.031337789086104406],[118,-44,78,-0.03334221722920505],[118,-44,79,-0.035242310684439504],[118,-43,64,0.010521833403686731],[118,-43,65,0.007203986415982855],[118,-43,66,0.00398232342233118],[118,-43,67,8.58368384215269E-4],[118,-43,68,-0.002166495280727654],[118,-43,69,-0.00509103011923584],[118,-43,70,-0.007914150127029784],[118,-43,71,-0.010634926297414915],[118,-43,72,-0.013252592233891303],[118,-43,73,-0.015766549826692566],[118,-43,74,-0.01817637499347402],[118,-43,75,-0.02048182348384653],[118,-43,76,-0.02268283674799676],[118,-43,77,-0.024779547869277496],[118,-43,78,-0.026772287560813957],[118,-43,79,-0.02866159022610748],[118,-42,64,0.016833058968293235],[118,-42,65,0.01354029119557687],[118,-42,66,0.010342650637028439],[118,-42,67,0.007241665808901732],[118,-42,68,0.0042387257075958695],[118,-42,69,0.00133507440483005],[118,-42,70,-0.0014681944212772136],[118,-42,71,-0.004170143019136985],[118,-42,72,-0.006769995160639808],[118,-42,73,-0.009267141802051793],[118,-42,74,-0.011661146809070155],[118,-42,75,-0.01395175274574234],[118,-42,76,-0.01613888672748498],[118,-42,77,-0.018222666338084892],[118,-42,78,-0.020203405610734637],[118,-42,79,-0.02208162107307543],[118,-41,64,0.023133225600873164],[118,-41,65,0.019866055514702108],[118,-41,66,0.01669293868555266],[118,-41,67,0.01361540823764995],[118,-41,68,0.010634858816511494],[118,-41,69,0.007752541200119922],[118,-41,70,0.004969556845989209],[118,-41,71,0.002286852374208448],[118,-41,72,-2.947860135504854E-4],[118,-41,73,-0.002774738178982994],[118,-41,74,-0.005152555756278043],[118,-41,75,-0.007427967925118906],[118,-41,76,-0.009600887247799061],[118,-41,77,-0.011671415570335464],[118,-41,78,-0.013639849987626906],[118,-41,79,-0.015506688872635954],[118,-40,64,0.02941828336943053],[118,-40,65,0.026177214663323678],[118,-40,66,0.023029108652671604],[118,-40,67,0.019975503120627458],[118,-40,68,0.017017798429374897],[118,-40,69,0.014157252147590338],[118,-40,70,0.011394973613785164],[118,-40,71,0.00873191843561083],[118,-40,72,0.006168882925117525],[118,-40,73,0.003706498470037678],[118,-40,74,0.0013452258408840345],[118,-40,75,-9.146505658435E-4],[118,-40,76,-0.0030730285485777165],[118,-40,77,-0.005129993985615422],[118,-40,78,-0.007085826784106186],[118,-40,79,-0.008941006893080194],[118,-39,64,0.0356842647101997],[118,-39,65,0.03246978610381279],[118,-39,66,0.02934716360473355],[118,-39,67,0.026317939703744964],[118,-39,68,0.023383520544426162],[118,-39,69,0.020545170567183746],[118,-39,70,0.01780400708914931],[118,-39,71,0.015160994820029972],[118,-39,72,0.012616940313895708],[118,-39,73,0.010172486356981647],[118,-39,74,0.007828106291290493],[118,-39,75,0.005584098274291183],[118,-39,76,0.003440579474478511],[118,-39,77,0.0013974802029070865],[118,-39,78,-5.45462019344467E-4],[118,-39,79,-0.002388708457759181],[118,-38,64,0.04192729191564215],[118,-38,65,0.038739876978127086],[118,-38,66,0.035643196115241915],[118,-38,67,0.03263879657184465],[118,-38,68,0.02972809033481172],[118,-38,69,0.026912348793908913],[118,-38,70,0.024192697338517477],[118,-38,71,0.021570109890298728],[118,-38,72,0.01904540337178562],[118,-38,73,0.01661923211097427],[118,-38,74,0.014292082181705523],[118,-38,75,0.01206426568012875],[118,-38,76,0.009935914937013735],[118,-38,77,0.007906976666026577],[118,-38,78,0.00597720604792229],[118,-38,79,0.004146160750672534],[118,-37,64,0.0481435847472933],[118,-37,65,0.044983691740303144],[118,-37,66,0.04191339591619103],[118,-37,67,0.038934249318077874],[118,-37,68,0.03604766983520713],[118,-37,69,0.033254935880919434],[118,-37,70,0.03055718100646687],[118,-37,71,0.027955388450756624],[118,-37,72,0.02545038562600821],[118,-37,73,0.023042838539398258],[118,-37,74,0.020733246150485773],[118,-37,75,0.018521934664704087],[118,-37,76,0.016409051762691917],[118,-37,77,0.01439456076557577],[118,-37,78,0.012478234736154725],[118,-37,79,0.010659650516012475],[118,-36,64,0.05432946817311379],[118,-36,65,0.051197539913919066],[118,-36,66,0.048154057674818396],[118,-36,67,0.04520057833912694],[118,-36,68,0.0423385257546961],[118,-36,69,0.03956918542923793],[118,-36,70,0.036893699161484994],[118,-36,71,0.03431305960826514],[118,-36,72,0.03182810478747655],[118,-36,73,0.02943951251704291],[118,-36,74,0.02714779478963336],[118,-36,75,0.024953292083441214],[118,-36,76,0.022856167608788502],[118,-36,77,0.020856401490669252],[118,-36,78,0.018953784887186464],[118,-36,79,0.017147914043902812],[118,-35,64,0.060481380229629456],[118,-35,65,0.05737784397481127],[118,-35,66,0.05436158889605569],[118,-35,67,0.05143417675655815],[118,-35,68,0.048597037416188815],[118,-35,69,0.045851463544415494],[118,-35,70,0.04319860526904906],[118,-35,71,0.040639464760891864],[118,-35,72,0.03817489075427982],[118,-35,73,0.035805573003587554],[118,-35,74,0.03353203667549254],[118,-35,75,0.03135463667728444],[118,-35,76,0.029273551920988128],[118,-35,77,0.02728877952341724],[118,-35,78,0.025400128942108635],[118,-35,79,0.023607216047160096],[118,-34,64,0.06659588000865457],[118,-34,65,0.06352114735883685],[118,-34,66,0.06053251795047587],[118,-34,67,0.057631558464093624],[118,-34,68,0.054819704822174686],[118,-34,69,0.05209825691991854],[118,-34,70,0.0494683732918052],[118,-34,71,0.04693106571405414],[118,-34,72,0.044487193742964615],[118,-34,73,0.0421374591892093],[118,-34,74,0.03988240052787739],[118,-34,75,0.03772238724454924],[118,-34,76,0.03565761411717805],[118,-34,77,0.0336880954338884],[118,-34,78,0.03181365914664691],[118,-34,79,0.030033940960824013],[118,-33,64,0.07266965576886564],[118,-33,65,0.06962412259495454],[118,-33,66,0.06666350222800288],[118,-33,67,0.0637893663010819],[118,-33,68,0.06100315684708113],[118,-33,69,0.05830618104751384],[118,-33,70,0.05569960591712764],[118,-33,71,0.05318445292439933],[118,-33,72,0.05076159254789814],[118,-33,73,0.048431738768594745],[118,-33,74,0.046195443497908495],[118,-33,75,0.04405309094177601],[118,-33,76,0.04200489190051748],[118,-33,77,0.040050878004608714],[118,-33,78,0.03819089588631508],[118,-33,79,0.03642460128720826],[118,-32,64,0.0786995331719097],[118,-32,65,0.07568357956330285],[118,-32,66,0.07275133641706599],[118,-32,67,0.06990438035183688],[118,-32,68,0.06714415955591324],[118,-32,69,0.06447198855432923],[118,-32,70,0.06188904291172492],[118,-32,71,0.059396353871091434],[118,-32,72,0.05699480292837589],[118,-32,73,0.054685116343019424],[118,-32,74,0.05246785958422784],[118,-32,75,0.050343431713250175],[118,-32,76,0.048312059701447585],[118,-32,77,0.04637379268425745],[118,-32,78,0.0445284961510104],[118,-32,79,0.04277584607061935],[118,-31,64,0.08468248364319297],[118,-31,65,0.08169647387842272],[118,-31,66,0.07879296090934684],[118,-31,67,0.0759735263709993],[118,-31,68,0.07323962464932743],[118,-31,69,0.07059257766674121],[118,-31,70,0.06803356960344908],[118,-31,71,0.06556364155465966],[118,-31,72,0.0631836861236329],[118,-31,73,0.060894441950657296],[118,-31,74,0.058696488177748085],[118,-31,75,0.056590238849346663],[118,-31,76,0.054575937248798945],[118,-31,77,0.0526536501707201],[118,-31,78,0.05082326212920474],[118,-31,79,0.04908446950189782],[118,-30,64,0.09061563285751073],[118,-30,65,0.08765991539778928],[118,-30,66,0.08478547033027928],[118,-30,67,0.0819938843350827],[118,-30,68,0.07928661803530002],[118,-30,69,0.07666500080125105],[118,-30,70,0.07413022549047221],[118,-30,71,0.07168334312357083],[118,-30,72,0.06932525749592156],[118,-30,73,0.06705671972527782],[118,-30,74,0.06487832273509853],[118,-30,75,0.06279049567386386],[118,-30,76,0.06079349827016356],[118,-30,77,0.058887415123662246],[118,-30,78,0.05707214993190124],[118,-30,79,0.055347419652951535],[118,-29,64,0.09649626934920164],[118,-29,65,0.09357117685532867],[118,-29,66,0.09072612219498544],[118,-29,67,0.08796269711988058],[118,-29,68,0.08528236852706872],[118,-29,69,0.08268647328202694],[118,-29,70,0.0801762129775011],[118,-29,71,0.07775264862820053],[118,-29,72,0.075416695301327],[118,-29,73,0.07316911668300818],[118,-29,74,0.07101051958044169],[118,-29,75,0.0689413483600162],[118,-29,76,0.06696187932119957],[118,-29,77,0.06507221500629456],[118,-29,78,0.06327227844602124],[118,-29,79,0.06156180734094596],[118,-28,64,0.10232185324699261],[118,-28,65,0.0994277026200937],[118,-28,66,0.09661234568981292],[118,-28,67,0.0938773793039066],[118,-28,68,0.09122427666751731],[118,-28,69,0.0886543821852821],[118,-28,70,0.08616890623920637],[118,-28,71,0.083768919902376],[118,-28,72,0.08145534958849676],[118,-28,73,0.07922897163733034],[118,-28,74,0.07709040683583213],[118,-28,75,0.07504011487526085],[118,-28,76,0.07307838874404349],[118,-28,77,0.07120534905650244],[118,-28,78,0.06942093831740126],[118,-28,79,0.0677249151223287],[118,-27,64,0.10809002513367583],[118,-27,65,0.10522711758023484],[118,-27,66,0.10244175057961713],[118,-27,67,0.09973552609800762],[118,-27,68,0.09710992368014504],[118,-27,69,0.09456629531063288],[118,-27,70,0.09210586021100631],[118,-27,71,0.08972969957263155],[118,-27,72,0.08743875122542422],[118,-27,73,0.08523380424245741],[118,-27,74,0.08311549348026437],[118,-27,75,0.08108429405510387],[118,-27,76,0.07914051575497527],[118,-27,77,0.07728429738748765],[118,-27,78,0.07551560106354083],[118,-27,79,0.07383420641683447],[118,-26,64,0.11379861503031818],[118,-26,65,0.11096723615196791],[118,-26,66,0.10821213624048676],[118,-26,67,0.10553492240084783],[118,-26,68,0.102937080546319],[118,-26,69,0.10041997027913152],[118,-26,70,0.09798481970690132],[118,-26,71,0.09563272019487401],[118,-26,72,0.09336462105398224],[118,-26,73,0.09118132416478564],[118,-26,74,0.08908347853709875],[118,-26,75,0.0870715748055737],[118,-26,76,0.0851459396610269],[118,-26,77,0.08330673021761148],[118,-26,78,0.08155392831579455],[118,-26,79,0.07988733476115784],[118,-25,64,0.11944565150515662],[118,-25,65,0.11664607141369343],[118,-25,66,0.11392150081806551],[118,-25,67,0.1112735519804211],[118,-25,68,0.10870371720896321],[118,-25,69,0.10621336375812929],[118,-25,70,0.10380372866451426],[118,-25,71,0.10147591351861196],[118,-25,72,0.0992308791723624],[118,-25,73,0.09706944038257304],[118,-25,74,0.09499226039002495],[118,-25,75,0.09299984543452433],[118,-25,76,0.09109253920569227],[118,-25,77,0.08927051722959345],[118,-25,78,0.08753378119116373],[118,-25,79,0.08588215319245329],[118,-24,64,0.12502937090732502],[118,-24,65,0.1222618443654121],[118,-24,66,0.1195680505116209],[118,-24,67,0.11694960678173472],[118,-24,68,0.114408011902833],[118,-24,69,0.11194464081311928],[118,-24,70,0.10956073951748746],[118,-24,71,0.1072574198789007],[118,-24,72,0.10503565434557027],[118,-24,73,0.10289627061400031],[118,-24,74,0.10083994622771408],[118,-24,75,0.09886720311191655],[118,-24,76,0.09697840204389052],[118,-24,77,0.0951737370592266],[118,-24,78,0.09345322979384296],[118,-24,79,0.09181672376181704],[118,-23,64,0.13054822672511568],[118,-23,65,0.12781299331313956],[118,-23,66,0.12515020898355422],[118,-23,67,0.1225614963603684],[118,-23,68,0.12004836061107471],[118,-23,69,0.11761218438625665],[118,-23,70,0.11525422269493091],[118,-23,71,0.11297559771569576],[118,-23,72,0.11077729354367227],[118,-23,73,0.10866015087330727],[118,-23,74,0.10662486161685181],[118,-23,75,0.10467196345876983],[118,-23,76,0.10280183434587464],[118,-23,77,0.10101468691329218],[118,-23,78,0.09931056284621098],[118,-23,79,0.09768932717743672],[118,-22,64,0.13600089906892698],[118,-22,65,0.13329818337847177],[118,-22,66,0.13066662689451125],[118,-22,67,0.12810785744205855],[118,-22,68,0.12562338664822037],[118,-22,69,0.12321460490170821],[118,-22,70,0.12088277624807864],[118,-22,71,0.11862903322077278],[118,-22,72,0.1164543716079468],[118,-22,73,0.11435964515515551],[118,-22,74,0.1123455602037069],[118,-22,75,0.11041267026494272],[118,-22,76,0.1085613705302394],[118,-22,77,0.1067918923168325],[118,-22,78,0.10510429744942096],[118,-22,79,0.1034984725775705],[118,-21,64,0.1413863042790433],[118,-21,65,0.1387163161334476],[118,-21,66,0.13611619156423738],[118,-21,67,0.13358756360845803],[118,-21,68,0.13113195036977165],[118,-21,69,0.12875074999798453],[118,-21,70,0.1264452356042991],[118,-21,71,0.12421655011236188],[118,-21,72,0.12206570104509529],[118,-21,73,0.11999355524737765],[118,-21,74,0.11800083354439261],[118,-21,75,0.11608810533589342],[118,-21,76,0.11425578312618812],[118,-21,77,0.11250411698994112],[118,-21,78,0.11083318897374816],[118,-21,79,0.10924290743350795],[118,-20,64,0.14670360465794297],[118,-20,65,0.1440665393604046],[118,-20,66,0.14149803675786932],[118,-20,67,0.13899973510876173],[118,-20,68,0.1365731590080591],[118,-20,69,0.1342197143869397],[118,-20,70,0.13194068344815457],[118,-20,71,0.1297372195371871],[118,-20,72,0.1276103419491943],[118,-20,73,0.1255609306717913],[118,-20,74,0.12358972106349853],[118,-20,75,0.1216972984681034],[118,-20,76,0.11988409276473344],[118,-20,77,0.11815037285374341],[118,-20,78,0.11649624107837275],[118,-20,79,0.11492162758219215],[118,-19,64,0.15195221832730377],[118,-19,65,0.1493482569369965],[118,-19,66,0.1468115525978385],[118,-19,67,0.14434374879737122],[118,-19,68,0.14194637663455023],[118,-19,69,0.13962084983961554],[118,-19,70,0.13736845972967526],[118,-19,71,0.1351903701000794],[118,-19,72,0.1330876120515675],[118,-19,73,0.131061078753253],[118,-19,74,0.12911152014127347],[118,-19,75,0.12723953755334183],[118,-19,76,0.12544557829901182],[118,-19,77,0.12372993016575073],[118,-19,78,0.12209271586077641],[118,-19,79,0.12053388738868243],[118,-18,64,0.15713182920982816],[118,-18,65,0.15456113884649558],[118,-18,66,0.15205639560150586],[118,-18,67,0.14961924819772032],[118,-18,68,0.147251234248734],[118,-18,69,0.14495377529905207],[118,-18,70,0.14272817179997987],[118,-18,71,0.14057559802129682],[118,-18,72,0.13849709689870082],[118,-18,73,0.1364935748170868],[118,-18,74,0.1345657963294845],[118,-18,75,0.13271437881189618],[118,-18,76,0.13093978705384324],[118,-18,77,0.12924232778471534],[118,-18,78,0.1276221441358818],[118,-18,79,0.12607921003858658],[118,-17,64,0.1622423971356043],[118,-17,65,0.15970513131309594],[118,-17,66,0.15723249884424173],[118,-17,67,0.15482615369197628],[118,-17,68,0.15248763999328663],[118,-17,69,0.15021838711977742],[118,-17,70,0.14801970467394876],[118,-17,71,0.1458927774212514],[118,-17,72,0.14383866015791102],[118,-17,73,0.14185827251458216],[118,-17,74,0.1399523936956577],[118,-17,75,0.13812165715447633],[118,-17,76,0.1363665452042322],[118,-17,77,0.13468738356468624],[118,-17,78,0.13308433584463586],[118,-17,79,0.13155739796016241],[118,-16,64,0.16728416807317203],[118,-16,65,0.16478046706238492],[118,-16,66,0.16234008224812413],[118,-16,67,0.15996467283678506],[118,-16,68,0.1576557894956957],[118,-16,69,0.1554148694341455],[118,-16,70,0.15324323142012153],[118,-16,71,0.1511420707328226],[118,-16,72,0.14911245405093654],[118,-16,73,0.14715531427674344],[118,-16,74,0.1452714452958751],[118,-16,75,0.14346149667296293],[118,-16,76,0.14172596828299122],[118,-16,77,0.14006520487844476],[118,-16,78,0.13847939059221237],[118,-16,79,0.13696854337626663],[118,-15,64,0.1722576844853808],[118,-15,65,0.16978767570707343],[118,-15,66,0.16737966299634055],[118,-15,67,0.16503531080515188],[118,-15,68,0.1627561763364319],[118,-15,69,0.16054370464561551],[118,-15,70,0.1583992236779127],[118,-15,71,0.15632393924134602],[118,-15,72,0.15431892991554785],[118,-15,73,0.15238514189638286],[118,-15,74,0.15052338377622088],[118,-15,75,0.14873432126009822],[118,-15,76,0.1470184718175801],[118,-15,77,0.145376199270413],[118,-15,78,0.14380770831593326],[118,-15,79,0.14231303898624592],[118,-14,64,0.1771637958098221],[118,-14,65,0.17472759425776463],[118,-14,66,0.17235206607307518],[118,-14,67,0.17003888095423547],[118,-14,68,0.1677896026434409],[118,-14,69,0.1656056840487472],[118,-14,70,0.16348846230191894],[118,-14,71,0.16143915375205098],[118,-14,72,0.1594588488949482],[118,-14,73,0.15754850723832325],[118,-14,74,0.155708952102648],[118,-14,75,0.15394086535788643],[118,-14,76,0.15224478209592684],[118,-14,77,0.15062108523880346],[118,-14,78,0.1490700000826688],[118,-14,79,0.1475915887775363],[118,-13,64,0.18200366906393195],[118,-13,65,0.17960137775885543],[118,-13,66,0.17725843492897708],[118,-13,67,0.1749765155191496],[118,-13,68,0.17275718981305943],[118,-13,69,0.17060191857601048],[118,-13,70,0.16851204813341425],[118,-13,71,0.1664888053850464],[118,-13,72,0.16453329275506046],[118,-13,73,0.16264648307781693],[118,-13,74,0.1608292144193657],[118,-13,75,0.15908218483480407],[118,-13,76,0.15740594706133504],[118,-13,77,0.15580090314711048],[118,-13,78,0.1542672990158246],[118,-13,79,0.15280521896707344],[118,-12,64,0.18677879957491017],[118,-12,65,0.1844105100497243],[118,-12,66,0.18210024227235888],[118,-12,67,0.17984967643292948],[118,-12,68,0.1776603893575014],[118,-12,69,0.17553384967156138],[118,-12,70,0.17347141289919188],[118,-12,71,0.17147431649801004],[118,-12,72,0.16954367482986243],[118,-12,73,0.16768047406733333],[118,-12,74,0.1658855670359024],[118,-12,75,0.16415966799197923],[118,-12,76,0.1625033473366324],[118,-12,77,0.16091702626510374],[118,-12,78,0.1594009713520711],[118,-12,79,0.15795528907267264],[118,-11,64,0.1914910218341842],[118,-11,65,0.18915681465092293],[118,-11,66,0.18687930098584937],[118,-11,67,0.18466016627237436],[118,-11,68,0.18250099387863694],[118,-11,69,0.1804032602917025],[118,-11,70,0.17836833023746157],[118,-11,71,0.17639745173629218],[118,-11,72,0.17449175109447568],[118,-11,73,0.17265222783142387],[118,-11,74,0.1708797495425557],[118,-11,75,0.16917504669804562],[118,-11,76,0.16753870737726861],[118,-11,77,0.16597117193902655],[118,-11,78,0.16447272762751997],[118,-11,79,0.16304350311408267],[118,-10,64,0.19614252047663383],[118,-10,65,0.19384246577559727],[118,-10,66,0.19159777516872023],[118,-10,67,0.18941013932999862],[118,-10,68,0.1872811481682869],[118,-10,69,0.1852122860322526],[118,-10,70,0.1832049268510353],[118,-10,71,0.18126032921066693],[118,-10,72,0.17937963136624258],[118,-10,73,0.1775638461899025],[118,-10,74,0.1758138560544611],[118,-10,75,0.17413040765290755],[118,-10,76,0.1725141067535998],[118,-10,77,0.17096541289123868],[118,-10,78,0.16948463399358737],[118,-10,79,0.16807192094395174],[118,-9,64,0.20073584138442957],[118,-9,65,0.19846999946598654],[118,-9,66,0.19625819130473565],[118,-9,67,0.19410211281193246],[118,-9,68,0.19200336043487964],[118,-9,69,0.18996342638267205],[118,-9,70,0.187983693787643],[118,-9,71,0.18606543180257007],[118,-9,72,0.1842097906336324],[118,-9,73,0.18241779650917478],[118,-9,74,0.18069034658412086],[118,-9,75,0.1790282037802543],[118,-9,76,0.17743199156219203],[118,-9,77,0.17590218864913754],[118,-9,78,0.17443912366237813],[118,-9,79,0.17304296970853994],[118,-8,64,0.2052739029156747],[118,-8,65,0.20304232485518792],[118,-8,66,0.200863449555721],[118,-8,67,0.19873897816196884],[118,-8,68,0.19667051365666544],[118,-8,69,0.19465955610714059],[118,-8,70,0.19270749784757657],[118,-8,71,0.19081561859702567],[118,-8,72,0.1889850805131762],[118,-8,73,0.18721692318192396],[118,-8,74,0.18551205854259423],[118,-8,75,0.1838712657490269],[118,-8,76,0.1822951859663564],[118,-8,77,0.18078431710356824],[118,-8,78,0.17933900848179807],[118,-8,79,0.17795945543838987],[118,-7,64,0.20976000725762145],[118,-7,65,0.20756273555396454],[118,-7,66,0.20541683518061316],[118,-7,67,0.203324012511525],[118,-7,68,0.20128587706125678],[118,-7,69,0.19930393675235158],[118,-7,70,0.19737959311842734],[118,-7,71,0.1955141364430233],[118,-7,72,0.19370874083419432],[118,-7,73,0.1919644592349109],[118,-7,74,0.19028221836910786],[118,-7,75,0.18866281362359605],[118,-7,76,0.18710690386566675],[118,-7,77,0.18561500619647242],[118,-7,78,0.1841874906401506],[118,-7,79,0.18282457476870317],[118,-6,64,0.21419785190456975],[118,-6,65,0.2120349211626965],[118,-6,66,0.20992203008010746],[118,-6,67,0.2078608902556257],[118,-6,68,0.20585311773159876],[118,-6,69,0.2039002282821326],[118,-6,70,0.20200363263702403],[118,-6,71,0.20016463164145315],[118,-6,72,0.19838441135142226],[118,-6,73,0.19666403806499688],[118,-6,74,0.1950044532891997],[118,-6,75,0.19340646864276234],[118,-6,76,0.19187076069457198],[118,-6,77,0.19039786573789275],[118,-6,78,0.18898817450032823],[118,-6,79,0.1876419267895414],[118,-5,64,0.21859154126056668],[118,-5,65,0.21646297890860056],[118,-5,66,0.21438312446701646],[118,-5,67,0.2123536947550294],[118,-5,68,0.21037631233849852],[118,-5,69,0.20845250083901612],[118,-5,70,0.20658368017869766],[118,-5,71,0.2047711617607303],[118,-5,72,0.20301614358566678],[118,-5,73,0.20131970530352217],[118,-5,74,0.1996828032015221],[118,-5,75,0.19810626512770801],[118,-5,76,0.19659078535023833],[118,-5,77,0.19513691935246158],[118,-5,78,0.19374507856373158],[118,-5,79,0.1924155250259797],[118,-4,64,0.22294559836666572],[118,-4,65,0.22085142540797342],[118,-4,66,0.2188046286620996],[118,-4,67,0.216806930164254],[118,-4,68,0.2148599589994603],[118,-4,69,0.21296524663251137],[118,-4,70,0.21112422217362392],[118,-4,71,0.20933820757984944],[118,-4,72,0.20760841279223463],[118,-4,73,0.20593593080877926],[118,-4,74,0.20432173269304876],[118,-4,75,0.20276666251864262],[118,-4,76,0.2012714322493554],[118,-4,77,0.1998366165551141],[118,-4,78,0.1984626475636544],[118,-4,79,0.19714980954795236],[118,-3,64,0.2272649767528856],[118,-3,65,0.22520520855359705],[118,-3,66,0.22319148501550357],[118,-3,67,0.2212255333856401],[118,-3,68,0.21930898926397213],[118,-3,69,0.2174433919542199],[118,-3,70,0.21563017975038257],[118,-3,71,0.21387068515901952],[118,-3,72,0.21216613005728047],[118,-3,73,0.2105176207867302],[118,-3,74,0.2089261431828333],[118,-3,75,0.20739255754028807],[118,-3,76,0.20591759351405736],[118,-3,77,0.20450184495617352],[118,-3,78,0.2031457646882816],[118,-3,79,0.20184965920994002],[118,-2,64,0.23155507241495232],[118,-2,65,0.22952971952739665],[118,-2,66,0.22754907995389972],[118,-2,67,0.22561488614954417],[118,-2,68,0.22372878022533305],[118,-2,69,0.22189230931988468],[118,-2,70,0.22010692090682993],[118,-2,71,0.21837395803796789],[118,-2,72,0.21669465452216674],[118,-2,73,0.21507013004006104],[118,-2,74,0.21350138519440953],[118,-2,75,0.21198929649630083],[118,-2,76,0.2105346112870562],[118,-2,77,0.2091379425959048],[118,-2,78,0.20779976393340027],[118,-2,79,0.20652040402059202],[118,-1,64,0.23582173591562017],[118,-1,65,0.23383080493813813],[118,-1,66,0.23188325615310856],[118,-1,67,0.22998082722044444],[118,-1,68,0.22812516675880323],[118,-1,69,0.2263178297381564],[118,-1,70,0.22456027280806268],[118,-1,71,0.22285384956169418],[118,-1,72,0.22119980573561404],[118,-1,73,0.21959927434534776],[118,-1,74,0.21805327075661396],[118,-1,75,0.21656268769240272],[118,-1,76,0.21512829017575485],[118,-1,77,0.21375071040830884],[118,-1,78,0.21243044258459032],[118,-1,79,0.21116783764205882],[118,0,64,0.24007128461067273],[118,0,65,0.23811477908427225],[118,0,66,0.2362003248363198],[118,0,67,0.23432966472907046],[118,0,68,0.2325044538861889],[118,0,69,0.23072625510618983],[118,0,70,0.22899653421158406],[118,0,71,0.22731665533378465],[118,0,72,0.2256878761337544],[118,0,73,0.22411134295845292],[118,0,74,0.2225880859329411],[118,0,75,0.22111901398833633],[118,0,76,0.21970490982546276],[118,0,77,0.21834642481427347],[118,0,78,0.2170440738290157],[118,0,79,0.21579823001914966],[118,1,64,0.24431051499972078],[118,1,65,0.24238843634204071],[118,1,66,0.2405070781980161],[118,1,67,0.2386681886306714],[118,1,68,0.23687342926697963],[118,1,69,0.23512437073217873],[118,1,70,0.23342248801979282],[118,1,71,0.23176915579740975],[118,1,72,0.23016564364820524],[118,1,73,0.228613111248263],[118,1,74,0.22711260347955442],[118,1,75,0.22566504547876642],[118,1,76,0.22427123762182688],[118,1,77,0.22293185044420194],[118,1,78,0.2216474194969339],[118,1,79,0.22041834013843342],[118,2,64,0.2570179525863091],[118,2,65,0.25519915607410526],[118,2,66,0.25341708797300694],[118,2,67,0.25167351194618204],[118,2,68,0.24997010912821588],[118,2,69,0.24830847362204866],[118,2,70,0.24669010793161983],[118,2,71,0.24511641833026898],[118,2,72,0.24358871016488148],[118,2,73,0.24210818309583138],[118,2,74,0.2406759262725856],[118,2,75,0.23929291344515324],[118,2,76,0.2379599980112337],[118,2,77,0.23667790799913657],[118,2,78,0.23544724098644354],[118,2,79,0.23426845895442272],[118,3,64,0.257015059110015],[118,3,65,0.25519627558959185],[118,3,66,0.25341422096005073],[118,3,67,0.25167065887450424],[118,3,68,0.24996727045721268],[118,3,69,0.24830564980053071],[118,3,70,0.24668729939756162],[118,3,71,0.24511362551056692],[118,3,72,0.24358593347512425],[118,3,73,0.24210542294007842],[118,3,74,0.24067318304315788],[118,3,75,0.23929018752243425],[118,3,76,0.23795728976348207],[118,3,77,0.2366752177823096],[118,3,78,0.23544456914403367],[118,3,79,0.2342658058173045],[118,4,64,0.25700508426265334],[118,4,65,0.25518634552954383],[118,4,66,0.2534043373412772],[118,4,67,0.2516608233163023],[118,4,68,0.24995748454328542],[118,4,69,0.2482959150780889],[118,4,70,0.2466776173764592],[118,4,71,0.2451039976624697],[118,4,72,0.24357636123271398],[118,4,73,0.24209590769629286],[118,4,74,0.24066372615046772],[118,4,75,0.23928079029215732],[118,4,76,0.23794795346513697],[118,4,77,0.23666594364300952],[118,4,78,0.23543535834791862],[118,4,79,0.2342566595050184],[118,5,64,0.2612193758774076],[118,5,65,0.2594351580653592],[118,5,66,0.2576863436994958],[118,5,67,0.2559747015241095],[118,5,68,0.254301919054143],[118,5,69,0.2526695980931081],[118,5,70,0.2510792501867171],[118,5,71,0.24953229201227295],[118,5,72,0.24803004070380796],[118,5,73,0.2465737091130219],[118,5,74,0.24516440100588666],[118,5,75,0.2438031061950966],[118,5,76,0.24249069560822367],[118,5,77,0.24122791629164586],[118,5,78,0.2400153863502209],[118,5,79,0.23885358982271732],[118,6,64,0.2654177054700817],[118,6,65,0.2636680738928265],[118,6,66,0.2619525213909304],[118,6,67,0.2602728217801134],[118,6,68,0.25863066894557646],[118,6,69,0.2570276723809091],[118,6,70,0.25546535266271375],[118,6,71,0.2539451368609895],[118,6,72,0.2524683538852736],[118,6,73,0.2510362297665789],[118,6,74,0.2496498828750071],[118,6,75,0.24831031907320866],[118,6,76,0.24701842680555053],[118,6,77,0.24577497212306187],[118,6,78,0.24458059364412854],[118,6,79,0.243435797450947],[118,7,64,0.2695956881219258],[118,7,65,0.2678807227351188],[118,7,66,0.2661985155721597],[118,7,67,0.26455084545137786],[118,7,68,0.2629394125573156],[118,7,69,0.2613658340006815],[118,7,70,0.25983163931402586],[118,7,71,0.258338265883185],[118,7,72,0.2568870543144835],[118,7,73,0.25547924373774017],[118,7,74,0.2541159670449573],[118,7,75,0.2527982460648569],[118,7,76,0.2515269866731348],[118,7,77,0.250302973838496],[118,7,78,0.2491268666044435],[118,7,79,0.24799919300683382],[118,8,64,0.2737489670699229],[118,8,65,0.2720687610078527],[118,8,66,0.27041999664130784],[118,8,67,0.26880445770832817],[118,8,68,0.2672238506072784],[118,8,69,0.265679799977915],[118,8,70,0.26417384421818574],[118,8,71,0.26270743093680354],[118,8,72,0.2612819123415863],[118,8,73,0.25989854056360917],[118,8,74,0.25855846291704554],[118,8,75,0.2572627170948654],[118,8,76,0.25601222630025666],[118,8,77,0.25480779431383604],[118,8,78,0.25365010049662184],[118,8,79,0.2525396947287807],[118,9,64,0.27787321658530173],[118,9,65,0.2762278747402876],[118,9,66,0.2746126632007458],[118,9,67,0.273029370527766],[118,9,68,0.27147970923371456],[118,9,69,0.2699653113844946],[118,9,70,0.2684877241375471],[118,9,71,0.2670484052156369],[118,9,72,0.26564871831641657],[118,9,73,0.26428992845780946],[118,9,74,0.2629731972590961],[118,9,75,0.26169957815786377],[118,9,76,0.2604700115626919],[118,9,77,0.2592853199416366],[118,9,78,0.2581462028464869],[118,9,79,0.25705323187280493],[118,10,64,0.28196414479822446],[118,10,65,0.2803537824422371],[118,10,66,0.2787722449650565],[118,10,67,0.27722132564071994],[118,10,68,0.2757027429817773],[118,10,69,0.2742181363628276],[118,10,70,0.27276906157981],[118,10,71,0.2713569863450947],[118,10,72,0.2699832857183621],[118,10,73,0.26864923747331626],[118,10,74,0.26735601740011394],[118,10,75,0.26610469454366975],[118,10,76,0.2648962263777116],[118,10,77,0.26373145391464553],[118,10,78,0.26261109675120825],[118,10,79,0.2615357480499162],[118,11,64,0.2860174964684343],[118,11,65,0.2844422379164751],[118,11,66,0.2828945056140475],[118,11,67,0.28137609742491587],[118,11,68,0.2798887377343006],[118,11,69,0.2784340730937826],[118,11,70,0.27701366780198217],[118,11,71,0.27562899942105046],[118,11,72,0.2742814542289688],[118,11,73,0.27297232260769677],[118,11,74,0.27170279436705247],[118,11,75,0.2704739540044862],[118,11,76,0.2692867759006191],[118,11,77,0.2681421194506092],[118,11,78,0.26704072413132074],[118,11,79,0.2659832045043055],[118,12,64,0.29002905570197474],[118,12,65,0.2884890330167477],[118,12,66,0.28697524559092313],[118,12,67,0.28548949574197563],[118,12,68,0.28403351358689394],[118,12,69,0.2826089527085545],[118,12,70,0.28121738575788774],[118,12,71,0.2798602999918782],[118,12,72,0.27853909274739325],[118,12,73,0.2772550668508766],[118,12,74,0.27600942596380024],[118,12,75,0.2748032698640235],[118,12,76,0.2736375896629404],[118,12,77,0.27251326295847406],[118,12,78,0.27143104892389325],[118,12,79,0.27039158333246144],[118,13,64,0.29399464861407837],[118,13,65,0.2924900003514913],[118,13,66,0.2910103048457171],[118,13,67,0.2895573687194488],[118,13,68,0.288132927667462],[118,13,69,0.28673864214455913],[118,13,70,0.28537609298933303],[118,13,71,0.28404677698378844],[118,13,72,0.282752102348813],[118,13,73,0.28149338417554065],[118,13,74,0.2802718397924943],[118,13,75,0.279088584068661],[118,13,76,0.2779446246523789],[118,13,77,0.27684085714609447],[118,13,78,0.27577806021696605],[118,13,79,0.2747568906433249],[118,14,64,0.29791014593800974],[118,14,65,0.29644101593303934],[118,14,66,0.29499556552376444],[118,14,67,0.29357560547745526],[118,14,68,0.29218287689991995],[118,14,69,0.2908190469451309],[118,14,70,0.2894857044606983],[118,14,71,0.2881843555692288],[118,14,72,0.2869164191855634],[118,14,73,0.28568322246993344],[118,14,74,0.2844859962169264],[118,14,75,0.28332587018041],[118,14,76,0.28220386833429734],[118,14,77,0.2811209040692094],[118,14,78,0.28007777532501343],[118,14,79,0.2790751596592444],[118,15,64,0.3017714655800446],[118,15,65,0.3003380017725],[118,15,66,0.2989269545994007],[118,15,67,0.2975401388001241],[118,15,68,0.2961793007122971],[118,15,69,0.29484611400321614],[118,15,70,0.29354217533714777],[118,15,71,0.29226899997854827],[118,15,72,0.2910280173311931],[118,15,73,0.28982056641325754],[118,15,74,0.28864789126824025],[118,15,75,0.2875111363118764],[118,15,76,0.2864113416149258],[118,15,77,0.2853494381218891],[118,15,78,0.2843262428056332],[118,15,79,0.2833424537579333],[118,16,64,0.3055745751204501],[118,16,65,0.3041769284201719],[118,16,66,0.30280044645474885],[118,16,67,0.3014469477516936],[118,16,68,0.3001181836890889],[118,16,69,0.29881583424891894],[118,16,70,0.29754150370631893],[118,16,71,0.2962967162547793],[118,16,72,0.29508291156729893],[118,16,73,0.29390144029352466],[118,16,74,0.2927535594927733],[118,16,75,0.29164042800307893],[118,16,76,0.2905631017461512],[118,16,77,0.2895225289683021],[118,16,78,0.2885195454173168],[118,16,79,0.287554869455278],[118,17,64,0.30931549426064475],[118,17,65,0.30795381745167233],[118,17,66,0.30661206540377584],[118,17,67,0.30529206023745037],[118,17,68,0.3039955581680374],[118,17,69,0.30272424528108594],[118,17,70,0.30147973324367333],[118,17,71,0.30026355495172474],[118,17,72,0.29907716011332347],[118,17,73,0.2979219107680474],[118,17,74,0.29679907674223444],[118,17,75,0.29570983104031084],[118,17,76,0.2946552451720764],[118,17,77,0.2936362844159984],[118,17,78,0.29265380301849175],[118,17,79,0.29170853932919594],[118,18,64,0.3129902972163243],[118,18,65,0.3116647438995692],[118,18,66,0.3103578881614027],[118,18,67,0.30907155550929416],[118,18,68,0.30780750678112734],[118,18,69,0.3065674339427091],[118,18,70,0.3053529558212899],[118,18,71,0.30416561377512885],[118,18,72,0.30300686729909576],[118,18,73,0.3018780895663492],[118,18,74,0.30078056290598926],[118,18,75,0.2997154742168215],[118,18,76,0.29868391031712527],[118,18,77,0.29768685323047667],[118,18,78,0.2967251754076074],[118,18,79,0.2957996348843075],[118,19,64,0.3165951150566609],[118,19,65,0.31530583863061973],[118,19,66,0.3140340462577754],[118,19,67,0.31278156661603407],[118,19,68,0.3115501649398996],[118,19,69,0.31034153884025545],[118,19,70,0.30915731406021013],[118,19,71,0.30799904016703966],[118,19,72,0.3068681861802224],[118,19,73,0.3057661361355996],[118,19,74,0.30469418458556663],[118,19,75,0.30365353203542655],[118,19,76,0.3026452803158008],[118,19,77,0.3016704278911489],[118,19,78,0.30072986510437644],[118,19,79,0.29982436935753826],[118,20,64,0.3201261379896628],[118,20,65,0.31887329066870523],[118,20,66,0.31763672839778756],[118,20,67,0.3164182827985068],[118,20,68,0.3152197232651796],[118,20,69,0.3140427528070177],[118,20,70,0.3128890038264264],[118,20,71,0.3117600338334598],[118,20,72,0.3106573210964258],[118,20,73,0.30958226022867535],[118,20,74,0.3085361577114829],[118,20,75,0.30752022735314555],[118,20,76,0.3065355856841994],[118,20,77,0.3055832472888039],[118,20,78,0.30466412007227106],[118,20,79,0.3037790004647515],[118,21,64,0.3235796175935069],[118,21,65,0.32236334946327483],[118,21,66,0.3211621827656612],[118,21,67,0.3199779518293266],[118,21,68,0.3188124299610233],[118,21,69,0.3176673253102877],[118,21,70,0.3165442766703202],[118,21,71,0.31544484921508564],[118,21,72,0.31437053017262956],[118,21,73,0.3133227244346422],[118,21,74,0.3123027501021787],[118,21,75,0.31131183396766304],[118,21,76,0.31035110693307316],[118,21,77,0.30942159936435826],[118,21,78,0.3085242363820678],[118,21,79,0.3076598330881993],[118,22,64,0.3269518689939439],[118,22,65,0.3257723271033953],[118,22,66,0.3246067192746902],[118,22,67,0.32345688229736536],[118,22,68,0.3223245931329827],[118,22,69,0.321211564802458],[118,22,70,0.32011944220964933],[118,22,71,0.31904979790123794],[118,22,72,0.31800412776289483],[118,22,73,0.316983846651764],[118,22,74,0.3159902839651775],[118,22,75,0.31502467914571947],[118,22,76,0.31408817712254605],[118,22,77,0.3131818236890069],[118,22,78,0.3123065608165478],[118,22,79,0.3114632219049061],[118,23,64,0.33023927298785793],[118,23,65,0.3290966004774932],[118,23,66,0.3279667117622267],[118,23,67,0.32685144583705067],[118,23,68,0.32575258305078],[118,23,69,0.324671841016137],[118,23,70,0.3236108704561761],[118,23,71,0.32257125098707656],[118,23,72,0.32155448683729804],[118,23,73,0.320562002503131],[118,23,74,0.3195951383405551],[118,23,75,0.3186551460935237],[118,23,76,0.31774318435858245],[118,23,77,0.31686031398586445],[118,23,78,0.31600749341644685],[118,23,79,0.3151855739560742],[118,24,64,0.33343827811280585],[118,24,65,0.33233261337860953],[118,24,66,0.33123860012973544],[118,24,67,0.3301580793023],[118,24,68,0.3290928343552042],[118,24,69,0.32804458720309454],[118,24,70,0.32701499408574786],[118,24,71,0.3260056413739064],[118,24,72,0.3250180413115618],[118,24,73,0.3240536276947148],[118,24,74,0.32311375148652915],[118,24,75,0.3221996763689945],[118,24,76,0.32131257423100523],[118,24,77,0.32045352059290244],[118,24,78,0.31962348996745926],[118,24,79,0.3188233511573166],[118,25,64,0.33654540266262845],[118,25,65,0.3354768785552617],[118,25,66,0.33441889242800726],[118,25,67,0.33337328688518564],[118,25,68,0.33234184820932905],[118,25,69,0.33132630231713445],[118,25,70,0.33032831065192886],[118,25,71,0.3293494660126787],[118,25,72,0.3283912883195361],[118,25,73,0.3274552203159507],[118,25,74,0.3265426232072695],[118,25,75,0.3256547722359318],[118,25,76,0.32479285219317355],[118,25,77,0.3239579528672843],[118,25,78,0.32315106442839675],[118,25,79,0.3223730727498193],[118,26,64,0.3395572366492102],[118,26,65,0.33852597970799164],[118,26,66,0.33750416688761237],[118,26,67,0.3364936421794118],[118,26,68,0.3354961943941325],[118,26,69,0.33451355314097486],[118,26,70,0.33354738474326584],[118,26,71,0.33259928809076694],[118,26,72,0.33167079042861597],[118,26,73,0.33076334308293365],[118,26,74,0.32987831712301313],[118,26,75,0.32901699896020387],[118,26,76,0.32818058588340143],[118,26,77,0.3273701815311859],[118,26,78,0.3265867913005926],[118,26,79,0.325831317692522],[118,27,64,0.34247044371022467],[118,27,65,0.3414765734314324],[118,27,66,0.34049107389442457],[118,27,67,0.3395157901884333],[118,27,68,0.3385525133483441],[118,27,69,0.337602976356965],[118,27,70,0.3366688500840126],[118,27,71,0.3357517391618421],[118,27,72,0.33485317779791723],[118,27,73,0.3339746255240455],[118,27,74,0.33311746288230576],[118,27,75,0.3322829870477696],[118,27,76,0.3314724073879356],[118,27,77,0.3306868409589171],[118,27,78,0.3299273079383641],[118,27,79,0.3291947269951305],[118,28,64,0.3452817629629527],[118,28,65,0.3443253911019824],[118,28,66,0.343376337910308],[118,28,67,0.3424364492783057],[118,28,68,0.34150751815261604],[118,28,69,0.3405912805617299],[118,28,70,0.3396894115784058],[118,28,71,0.3388035212189431],[118,28,72,0.3379351502793034],[118,28,73,0.3370857661081126],[118,28,74,0.3362567583164644],[118,28,75,0.3354494344246299],[118,28,76,0.334665015445592],[118,28,77,0.33390463140544324],[118,28,78,0.33316931680063117],[118,28,79,0.33246000599206016],[118,29,64,0.3479880108042414],[118,29,65,0.34706924071115897],[118,29,66,0.3461567593390343],[118,29,67,0.3452524130753411],[118,29,68,0.34435799645808596],[118,29,69,0.3434752482248147],[118,29,70,0.3426058472985685],[118,29,71,0.341751408710814],[118,29,72,0.3409134794613426],[118,29,73,0.3400935343151664],[118,29,74,0.3392929715363376],[118,29,75,0.33851310855879],[118,29,76,0.33775517759412554],[118,29,77,0.3370203211763829],[118,29,78,0.33630958764377344],[118,29,79,0.33562392655738954],[118,30,64,0.35058608265645647],[118,30,65,0.3497050086444765],[118,30,66,0.3488292163372798],[118,30,67,0.3479605523084108],[118,30,68,0.34710081235917756],[118,30,69,0.3462517375911739],[118,30,70,0.3454150104158775],[118,30,71,0.34459225050134906],[118,30,72,0.3437850106560277],[118,30,73,0.342994772649646],[118,30,74,0.34222294297119954],[118,30,75,0.3414708485240612],[118,30,76,0.3407397322581677],[118,30,77,0.3400307487393162],[118,30,78,0.3393449596555512],[118,30,79,0.33868332926065403],[118,31,64,0.3530729546595064],[118,31,65,0.35222966140593437],[118,31,66,0.35139066657078316],[118,31,67,0.35055781659598206],[118,31,68,0.34973290821072284],[118,31,69,0.34891768452758676],[118,31,70,0.34811383107588495],[118,31,71,0.3473229717722322],[118,31,72,0.3465466648283506],[118,31,73,0.34578639859612825],[118,31,74,0.3450435873498644],[118,31,75,0.34431956700579436],[118,31,76,0.34361559077882153],[118,31,77,0.34293282477648995],[118,31,78,0.34227234353018515],[118,31,79,0.3416351254635691],[118,32,64,0.35544568530900145],[118,32,65,0.3546402472881743],[118,32,66,0.35383814891572773],[118,32,67,0.35304123617795086],[118,32,68,0.3522513063894697],[118,32,69,0.3514701043130672],[118,32,70,0.3506993182168576],[118,32,71,0.34994057586883537],[118,32,72,0.3491954404687967],[118,32,73,0.3484654065176558],[118,32,74,0.34775189562409187],[118,32,75,0.3470562522486155],[118,32,76,0.346379739384983],[118,32,77,0.3457235341789951],[118,32,78,0.34508872348466463],[118,32,79,0.3444762993577583],[118,33,64,0.35770141704041236],[118,33,65,0.3569338979881712],[118,33,66,0.35616878510521055],[118,33,67,0.3554079235921298],[118,33,68,0.35465311099983415],[118,33,69,0.35390609337312356],[118,33,70,0.3531685613317892],[118,33,71,0.3524421460892333],[118,33,72,0.3517284154086104],[118,33,73,0.35102886949651196],[118,33,74,0.3503449368341337],[118,33,75,0.349677969946008],[118,33,76,0.34902924110623756],[118,33,77,0.34839993798225943],[118,33,78,0.3477911592161285],[118,33,79,0.34720390994332667],[118,34,64,0.35983737775930175],[118,34,65,0.35910783016853476],[118,34,66,0.3583797813208722],[118,34,67,0.3576550752954717],[118,34,68,0.3569355095239757],[118,34,69,0.35622283095794716],[118,34,70,0.3555187321739667],[118,34,71,0.3548248474164122],[118,34,72,0.3541427485779168],[118,34,73,0.3534739411175267],[118,34,74,0.35281985991650017],[118,34,75,0.3521818650718288],[118,34,76,0.35156123762741476],[118,34,77,0.3509591752429392],[118,34,78,0.35037678780040565],[118,34,79,0.3498150929483653],[118,35,64,0.36185088231768203],[118,35,65,0.3611593469644695],[118,35,66,0.36046842972974397],[118,35,67,0.3597799732300774],[118,35,68,0.35909577441624785],[118,35,69,0.3584175807645853],[118,35,70,0.3577470864061451],[118,35,71,0.35708592819372925],[118,35,72,0.3564356817067521],[118,35,73,0.35579785719396834],[118,35,74,0.3551738954540115],[118,35,75,0.3545651636538153],[118,35,76,0.3539729510848601],[118,35,77,0.35339846485727416],[118,35,78,0.3528428255317736],[118,35,79,0.35230706268945233],[118,36,64,0.3637393339363798],[118,36,65,0.3630858394362797],[118,36,66,0.36243210996618735],[118,36,67,0.3617799863338713],[118,36,68,0.36113126464190376],[118,36,69,0.3604876925029734],[118,36,70,0.359850965193205],[118,36,71,0.359222721743497],[118,36,72,0.35860454096887723],[118,36,73,0.35799793743589464],[118,36,74,0.3574043573679945],[118,36,75,0.3568251744889498],[118,36,76,0.3562616858042916],[118,36,77,0.3557151073207649],[118,36,78,0.35518656970380036],[118,36,79,0.35467711387300654],[118,37,64,0.3655002255734763],[118,37,65,0.36488478796748336],[118,37,66,0.36426829055899856],[118,37,67,0.36365257199601],[118,37,68,0.3630394271601227],[118,37,69,0.3624306034058956],[118,37,70,0.36182779673836374],[118,37,71,0.3612326479287613],[118,37,72,0.36064673856844454],[118,37,73,0.360071587061031],[118,37,74,0.35950864455270454],[118,37,75,0.3589592908007576],[118,37,76,0.3584248299803125],[118,37,77,0.3579064864292518],[118,37,78,0.3574054003313447],[118,37,79,0.35692262333757424],[118,38,64,0.3671311412388622],[118,38,65,0.36655376360857644],[118,38,66,0.3659745303037176],[118,38,67,0.3653952774570665],[118,38,68,0.3648177983514056],[118,38,69,0.36424383968292184],[118,38,70,0.3636750977629859],[118,38,71,0.3631132146583219],[118,38,72,0.362559774269566],[118,38,73,0.362016298348229],[118,38,74,0.36148424245201904],[118,38,75,0.36096499183858555],[118,38,76,0.3604598572976354],[118,38,77,0.35997007092144656],[118,38,78,0.3594967818137662],[118,38,79,0.35904105173710155],[118,39,64,0.36862975725480596],[118,39,65,0.3680904293663461],[118,39,66,0.367548479580037],[118,39,67,0.36700574115388795],[118,39,68,0.3664640053892273],[118,39,69,0.36592501791820614],[118,39,70,0.36539047492988086],[118,39,71,0.3648620193348817],[118,39,72,0.364341236868668],[118,39,73,0.3638296521333858],[118,39,74,0.36332872457828314],[118,39,75,0.36283984441874373],[118,39,76,0.36236432849389183],[118,39,77,0.36190341606279003],[118,39,78,0.36145826453922203],[118,39,79,0.3610299451650639],[118,40,64,0.36999384346262176],[118,40,65,0.3694925414388194],[118,40,66,0.3689878816144],[118,40,67,0.3684816940092115],[118,40,68,0.36797576755603945],[118,40,69,0.3674718464122446],[118,40,70,0.3669716262101828],[118,40,71,0.3664767502464181],[118,40,72,0.36598880560972935],[118,40,73,0.36550931924792224],[118,40,74,0.36503975397340926],[118,40,75,0.3645815044076104],[118,40,76,0.3641358928641316],[118,40,77,0.36370416517074455],[118,40,78,0.36328748643015407],[118,40,79,0.36288693671956224],[118,41,64,0.3712212643753815],[118,41,65,0.3707579503957883],[118,41,66,0.37029057368772994],[118,41,67,0.3698209606659817],[118,41,68,0.3693508975035633],[118,41,69,0.3688821264675279],[118,41,70,0.3684163421937493],[118,41,71,0.3679551879007169],[118,41,72,0.36750025154233734],[118,41,73,0.3670530618997566],[118,41,74,0.3666150846121641],[118,41,75,0.3661877181466314],[118,41,76,0.3657722897069444],[118,41,77,0.3653700510814481],[118,41,78,0.3649821744298965],[118,41,79,0.3646097480093119],[118,42,64,0.372309980276732],[118,42,65,0.37188460230498044],[118,42,66,0.3714544882883558],[118,42,67,0.37102146066643876],[118,42,68,0.37058730245744115],[118,42,69,0.37015375361815994],[118,42,70,0.36972250734315226],[118,42,71,0.36929520630313883],[118,42,72,0.36887343882263934],[118,42,73,0.36845873499684845],[118,42,74,0.3680525627477182],[118,42,75,0.36765632381929675],[118,42,76,0.3672713497122822],[118,42,77,0.36689889755781335],[118,42,78,0.36654014593048756],[118,42,79,0.3661961906006094],[118,43,64,0.3732580482657455],[118,43,65,0.37287053980379253],[118,43,66,0.37247765421005663],[118,43,67,0.37208120957589297],[118,43,68,0.37168298536616384],[118,43,69,0.3712847188033602],[118,43,70,0.370888101191174],[118,43,71,0.37049477417753307],[118,43,72,0.3701063259570969],[118,43,73,0.36972428741322194],[118,43,74,0.3693501281993695],[118,43,75,0.36898525275999505],[118,43,76,0.36863099629088736],[118,43,77,0.36828862063897416],[118,43,78,0.3679593101415851],[118,43,79,0.3676441674051777],[118,44,64,0.3740636232478435],[118,44,65,0.37371390311663644],[118,44,66,0.37335819759526834],[118,44,67,0.37299832005123457],[118,44,68,0.3726360459943226],[118,44,69,0.37227310948489334],[118,44,70,0.37191119948185664],[118,44,71,0.37155195613034636],[118,44,72,0.37119696698909516],[118,44,73,0.3708477631975201],[118,44,74,0.37050581558248785],[118,44,75,0.3701725307048023],[118,44,76,0.36984924684538023],[118,44,77,0.369537229931132],[118,44,78,0.3692376694005407],[118,44,79,0.36895167400894247],[118,45,64,0.374724958871812],[118,45,65,0.3744129310179109],[118,45,66,0.37409434292347266],[118,45,67,0.3737710028541973],[118,45,68,0.3734446819602022],[118,45,69,0.37311711070845205],[118,45,70,0.3727899752551289],[118,45,71,0.37246491375794943],[118,45,72,0.37214351262843065],[118,45,73,0.3718273027241126],[118,45,74,0.37151775548070926],[118,45,75,0.3712162789842294],[118,45,76,0.370924213983031],[118,45,77,0.3706428298398319],[118,45,78,0.3703733204236628],[118,45,79,0.37011679994177116],[118,46,64,0.37524040841285955],[118,46,65,0.37496596174054975],[118,46,66,0.3746844139447145],[118,46,67,0.37439756780931877],[118,46,68,0.37410718971766216],[118,46,69,0.3738150061089306],[118,46,70,0.373522699874946],[118,46,71,0.3732319066971204],[118,46,72,0.3729442113236119],[118,46,73,0.37266114378669407],[118,46,74,0.37238417556031167],[118,46,75,0.3721147156578585],[118,46,76,0.3718541066701483],[118,46,77,0.37160362074359465],[118,46,78,0.37136445549859143],[118,46,79,0.37113772988809945],[118,47,64,0.3756084256017484],[118,47,65,0.3753714338301808],[118,47,66,0.37512683455828155],[118,47,67,0.3748764247066381],[118,47,68,0.37462196548234156],[118,47,69,0.3743651788596285],[118,47,70,0.3741077440009863],[118,47,71,0.3738512936187247],[118,47,72,0.3735974102770167],[118,47,73,0.3733476226344136],[118,47,74,0.37310340162681366],[118,47,75,0.372866156590915],[118,47,76,0.37263723132812615],[118,47,77,0.3724179001089506],[118,47,78,0.3722093636178352],[118,47,79,0.3720127448384891],[118,48,64,0.37582756540000806],[118,48,65,0.37562788694490057],[118,48,66,0.37542012963655635],[118,48,67,0.3752060841491334],[118,48,68,0.37498750610219433],[118,48,69,0.37476611256539505],[118,48,70,0.3745435785039106],[118,48,71,0.37432153316460043],[118,48,72,0.37410155640291476],[118,48,73,0.3738851749505462],[118,48,74,0.3736738586238114],[118,48,75,0.3734690164727849],[118,48,76,0.37327199287116597],[118,48,77,0.37308406354689105],[118,48,78,0.37290643155348213],[118,48,79,0.3727402231821391],[118,49,64,0.3758964847211993],[118,49,65,0.3757339626006357],[118,49,66,0.37556292579400496],[118,49,67,0.3753851583448698],[118,49,68,0.3752024098723239],[118,49,69,0.3750163920996753],[118,49,70,0.37482877532414954],[118,49,71,0.3746411848276128],[118,49,72,0.37445519722831605],[118,49,73,0.3742723367736661],[118,49,74,0.37409407157400715],[118,49,75,0.37392180977743467],[118,49,76,0.37375689568562476],[118,49,77,0.373600605810687],[118,49,78,0.3734541448730371],[118,49,79,0.37331864174029206],[118,50,64,0.3758139430982552],[118,50,65,0.3756884048621162],[118,50,66,0.3755539521013322],[118,50,67,0.3754123618438828],[118,50,68,0.37526537729414045],[118,50,69,0.37511470438548755],[118,50,70,0.3749620082742444],[118,50,71,0.3748089097749032],[118,50,72,0.3746569817366753],[118,50,73,0.37450774536135106],[118,50,74,0.3743626664624623],[118,50,75,0.3742231516657645],[118,50,76,0.3740905445510223],[118,50,77,0.3739661217351098],[118,50,78,0.37385108889641844],[118,50,79,0.3737465767405761],[118,51,64,0.3755788032968902],[118,51,65,0.37549006097945214],[118,51,66,0.3753920407447941],[118,51,67,0.3752865122197918],[118,51,68,0.3751752117788391],[118,51,69,0.37505983912032936],[118,51,70,0.37494205378474177],[118,51,71,0.3748234716143352],[118,51,72,0.3747056611544497],[118,51,73,0.37459013999641766],[118,51,74,0.37447837106207676],[118,51,75,0.3743717588298974],[118,51,76,0.3742716455027124],[118,51,77,0.3741793071170582],[118,51,78,0.3740959495941195],[118,51,79,0.37402270473228516],[118,52,64,0.3751900318750724],[118,52,65,0.3751378819703085],[118,52,66,0.37507612763066056],[118,52,67,0.375006530696134],[118,52,68,0.37493082029518765],[118,52,69,0.3748506894449961],[118,52,70,0.3747677915936252],[118,52,71,0.37468373710411806],[118,52,72,0.37460008968049535],[118,52,73,0.37451836273567024],[118,52,74,0.3744400157012706],[118,52,75,0.37436645027938087],[118,52,76,0.3742990066361911],[118,52,77,0.37423895953756336],[118,52,78,0.37418751442650655],[118,52,79,0.3741458034425681],[118,53,64,0.3746466996885731],[118,53,65,0.374630923147693],[118,53,66,0.3746052529348438],[118,53,67,0.37457144271743503],[118,53,68,0.37453121396163674],[118,53,69,0.37448625255633317],[118,53,70,0.3744382053793035],[118,53,71,0.37438867680562754],[118,53,72,0.37433922515831797],[118,53,73,0.37429135910117933],[118,53,74,0.37424653397389174],[118,53,75,0.3742061480693231],[118,53,76,0.374171538853065],[118,53,77,0.37414397912519726],[118,53,78,0.37412467312427644],[118,53,79,0.3741147525735528],[118,54,64,0.37394798234257176],[118,54,65,0.3739683445933338],[118,54,66,0.3739785615976723],[118,54,67,0.3739803784649971],[118,54,68,0.37397550858274065],[118,54,69,0.37396563026390117],[118,54,70,0.37395238333713776],[118,54,71,0.37393736567941016],[118,54,72,0.37392212969116684],[118,54,73,0.37390817871408166],[118,54,74,0.3738969633913362],[118,54,75,0.3738898779704526],[118,54,76,0.3738882565486701],[118,54,77,0.37389336926087413],[118,54,78,0.37390641841006805],[118,54,79,0.37392853454039626],[118,55,64,0.3730931605893365],[118,55,65,0.37314941157667003],[118,55,66,0.3731953037638275],[118,55,67,0.3732325733174201],[118,55,68,0.3732629251298969],[118,55,69,0.37328802949056994],[118,55,70,0.3733095186995201],[118,55,71,0.37332898362437716],[118,55,72,0.37334797019997834],[118,55,73,0.37336797587090287],[118,55,74,0.37339044597688464],[118,55,75,0.37341677008110186],[118,55,76,0.37344827824134114],[118,55,77,0.3734862372240431],[118,55,78,0.3735318466612205],[118,55,79,0.3735862351502567],[118,56,64,0.3720816206719826],[118,56,65,0.3721734949194514],[118,56,66,0.3722548351674454],[118,56,67,0.3723273682558583],[118,56,68,0.3723927901664118],[118,56,69,0.3724527627170426],[118,56,70,0.37250891019950666],[118,56,71,0.37256281596019647],[118,56,72,0.3726160189241734],[118,56,73,0.37267001006241224],[118,56,74,0.37272622880226347],[118,56,75,0.3727860593811269],[118,56,76,0.3728508271433403],[118,56,77,0.3729217947802831],[118,56,78,0.37300015851369306],[118,56,79,0.37308704422219896],[118,57,64,0.3709128546142726],[118,57,65,0.37104007130591943],[118,57,66,0.37115661746235196],[118,57,67,0.37126421021398365],[118,57,68,0.37136453621686144],[118,57,69,0.3714592483702829],[118,57,70,0.37154996247797933],[118,57,71,0.3716382538528552],[118,57,72,0.3717256538652881],[118,57,73,0.3718136464349858],[118,57,74,0.3719036644664069],[118,57,75,0.371997086227737],[118,57,76,0.37209523167342473],[118,57,77,0.3721993587102794],[118,57,78,0.3723106594071247],[118,57,79,0.3724302561480154],[118,58,64,0.36958646045650617],[118,58,65,0.3697487235386111],[118,58,66,0.36990021849747357],[118,58,67,0.3700426523726942],[118,58,68,0.37017770208078543],[118,58,69,0.37030701115588205],[118,58,70,0.3704321864343699],[118,58,71,0.37055479468342467],[118,58,72,0.370676359173463],[118,58,73,0.370798356194504],[118,58,74,0.37092221151644783],[118,58,75,0.37104929679326115],[118,58,76,0.3711809259110762],[118,58,77,0.3713183512802035],[118,58,78,0.37146276007105483],[118,58,79,0.37161527039398007],[118,59,64,0.3681021424374857],[118,59,65,0.3682991407397726],[118,59,66,0.3684853125374119],[118,59,67,0.36866235439955675],[118,59,68,0.3688319330907056],[118,59,69,0.3689956823343561],[118,59,70,0.3691551995209392],[118,59,71,0.36931204236002263],[118,59,72,0.3694677254767892],[118,59,73,0.3696237169527821],[118,59,74,0.36978143481093234],[118,59,75,0.3699422434448498],[118,59,76,0.37010744999239004],[118,59,77,0.37027830065349493],[118,59,78,0.37045597695230303],[118,59,79,0.3706415919435363],[118,60,64,0.3664597111225134],[118,60,65,0.366691118498343],[118,60,66,0.3669116804281412],[118,60,67,0.3671230826329459],[118,60,68,0.3673269813144286],[118,60,69,0.36752499994133503],[118,60,70,0.36771872598057215],[118,60,71,0.36790970757293484],[118,60,72,0.36809945015347323],[118,60,73,0.3682894130164961],[118,60,74,0.3684810058252242],[118,60,75,0.36867558506607523],[118,60,76,0.36887445044759204],[118,60,77,0.36907884124401275],[118,60,78,0.369289932583479],[118,60,79,0.3695088316808881],[118,61,64,0.3646590834774897],[118,61,65,0.3649245589625708],[118,61,66,0.3651792097078922],[118,61,67,0.365424710210938],[118,61,68,0.3656627057016934],[118,61,69,0.3658948089517023],[118,61,70,0.36612259702814837],[118,61,71,0.36634760799295046],[118,61,72,0.36657133754687465],[118,61,73,0.366795235618656],[118,61,74,0.367020702899149],[118,61,75,0.3672490873204811],[118,61,76,0.36748168048022756],[118,61,77,0.3677197140106025],[118,61,78,0.3679643558926634],[118,61,79,0.3682167067155359],[118,62,64,0.3627002828890859],[118,62,65,0.3629994708782427],[118,62,66,0.36328789466320016],[118,62,67,0.3635672171449421],[118,62,68,0.3638390721751432],[118,62,69,0.36410506138766596],[118,62,70,0.36436675097546656],[118,62,71,0.3646256684128954],[118,62,72,0.3648832991233988],[118,62,73,0.3651410830926118],[118,62,74,0.36540041142686314],[118,62,75,0.36566262285706597],[118,62,76,0.3659290001880121],[118,62,77,0.36620076669306506],[118,62,78,0.3664790824542502],[118,62,79,0.36676504064774706],[118,63,64,0.36058343913093854],[118,63,65,0.3609159695724685],[118,63,66,0.3612378363300642],[118,63,67,0.3615506903380127],[118,63,68,0.36185615366556956],[118,63,69,0.3621558163707089],[118,63,70,0.36245123329967416],[118,63,71,0.36274392083231166],[118,63,72,0.3630353535731974],[118,63,73,0.36332696098854167],[118,63,74,0.36362012398889965],[118,63,75,0.36391617145765476],[118,63,76,0.36421637672529544],[118,63,77,0.36452195398948317],[118,63,78,0.3648340546809046],[118,63,79,0.36515376377491704],[118,64,64,0.35830878827596224],[118,64,65,0.3586742768831182],[118,64,66,0.35902924244031037],[118,64,67,0.3593753235479373],[118,64,68,0.35971413009151965],[118,64,69,0.3600472401175081],[118,64,70,0.36037619665528886],[118,64,71,0.36070250448537056],[118,64,72,0.3610276268537588],[118,64,73,0.3613529821325073],[118,64,74,0.36167994042647267],[118,64,75,0.3620098201262359],[118,64,76,0.3623438844072179],[118,64,77,0.36268333767498073],[118,64,78,0.36302932195671084],[118,64,79,0.3633829132388928],[118,65,64,0.35587667255469746],[118,65,65,0.3562747210338322],[118,65,66,0.3566624273130822],[118,65,67,0.35704141729502237],[118,65,68,0.3574132882831905],[118,65,69,0.3577796058797474],[118,65,70,0.3581419008297393],[118,65,71,0.35850166581194565],[118,65,72,0.3588603521763193],[118,65,73,0.3592193666280056],[118,65,74,0.35958006785797086],[118,65,75,0.35994376312019993],[118,65,76,0.3603117047554931],[118,65,77,0.3606850866618516],[118,65,78,0.36106504071144907],[118,65,79,0.3614526331141992],[118,66,64,0.3532875401597677],[118,66,65,0.3537177364546737],[118,66,66,0.3541378116915249],[118,66,67,0.35454937871464426],[118,66,68,0.35495402185067754],[118,66,69,0.35535329382789205],[118,66,70,0.3557487126424889],[118,66,71,0.3561417583719117],[118,66,72,0.3565338699351577],[118,66,73,0.3569264418000789],[118,66,74,0.3573208206377033],[118,66,75,0.3577183019235375],[118,66,76,0.3581201264858769],[118,66,77,0.3585274770011155],[118,66,78,0.3589414744360561],[118,66,79,0.359363174437223],[118,67,64,0.3505419449963352],[118,67,65,0.3510038635483156],[118,67,66,0.35145592252456],[118,67,67,0.35189972135446174],[118,67,68,0.3523368309964733],[118,67,69,0.3527687908788194],[118,67,70,0.3531971057876441],[118,67,71,0.3536232427025693],[118,67,72,0.35404862757967553],[118,67,73,0.3544746420818875],[118,67,74,0.35490262025680097],[118,67,75,0.3553338451619046],[118,67,76,0.3557695454372283],[118,67,77,0.356210891825411],[118,67,78,0.35665899363918263],[118,67,79,0.357114895176267],[118,68,64,0.3476405463786838],[118,68,65,0.34813374840189004],[118,68,66,0.34861739269387326],[118,68,67,0.34909306491641345],[118,68,68,0.34956232227234046],[118,68,69,0.35002669046743096],[118,68,70,0.350487660620164],[118,68,71,0.350946686119312],[118,68,72,0.3514051794293777],[118,68,73,0.3518645088438602],[118,68,74,0.3523259951863871],[118,68,75,0.35279090845966377],[118,68,76,0.35326046444227577],[118,68,77,0.3537358212333327],[118,68,78,0.3542180757449499],[118,68,79,0.35470826014257884],[118,69,64,0.3445841086728787],[118,69,65,0.3451081424444501],[118,69,66,0.34562296068606924],[118,69,67,0.3461301349434509],[118,69,68,0.34663120828050836],[118,69,69,0.34712769226219353],[118,69,70,0.34762106388562625],[118,69,71,0.3481127624594913],[118,69,72,0.3486041864317109],[118,69,73,0.349096690165375],[118,69,74,0.34959158066297147],[118,69,75,0.35009011423886194],[118,69,76,0.3505934931400413],[118,69,77,0.3511028621151687],[118,69,78,0.35161930493186944],[118,69,79,0.35214384084231254],[118,70,64,0.3413735008854183],[118,70,65,0.3419279020499588],[118,70,66,0.3424734702099059],[118,70,67,0.3430117624509257],[118,70,68,0.34354430731911423],[118,70,69,0.3440726018245325],[118,70,70,0.3445981083934679],[118,70,71,0.3451222517693999],[118,70,72,0.34564641586267825],[118,70,73,0.3461719405488949],[118,70,74,0.34670011841599446],[118,70,75,0.3472321914600651],[118,70,76,0.34776934772985035],[118,70,77,0.34831271791997015],[118,70,78,0.34886337191284844],[118,70,79,0.34942231526935374],[118,71,64,0.33800969619802607],[118,71,65,0.3385939880859523],[118,71,66,0.3391698697587573],[118,71,67,0.3397388835027736],[118,71,68,0.34030254297202855],[118,71,69,0.3408623302122165],[118,71,70,0.3414196926338421],[118,71,71,0.34197603993450965],[118,71,72,0.34253274097036823],[118,71,73,0.3430911205766934],[118,71,74,0.3436524563376512],[118,71,75,0.3442179753051832],[118,71,76,0.3447888506670581],[118,71,77,0.3453661983640738],[118,71,78,0.3459510736564084],[118,71,79,0.3465444676391295],[118,72,64,0.3344937714485179],[118,72,65,0.3351074654078155],[118,72,66,0.33571321211824057],[118,72,67,0.33631253873243505],[118,72,68,0.3369069436430061],[118,72,69,0.3374978935266724],[118,72,70,0.33808682033802895],[118,72,71,0.33867511825290664],[118,72,72,0.33926414056133913],[118,72,73,0.33985519651011076],[118,72,74,0.3404495480949397],[118,72,75,0.34104840680222936],[118,72,76,0.34165293030043464],[118,72,77,0.3422642190810283],[118,72,78,0.34288331304906516],[118,72,79,0.34351118806335346],[118,73,64,0.3308269065576502],[118,73,65,0.33146950229857297],[118,73,66,0.3321046538189132],[118,73,67,0.33273387280841604],[118,73,68,0.3333586420340676],[118,73,69,0.33398041240413995],[118,73,70,0.3346005999823107],[118,73,71,0.3352205829518342],[118,73,72,0.3358416985297706],[118,73,73,0.33646523983125337],[118,73,74,0.3370924526838469],[118,73,75,0.3377245323919258],[118,73,76,0.3383626204511233],[118,73,77,0.33900780121283686],[118,73,78,0.33966109849878395],[118,73,79,0.3403234721656203],[118,74,64,0.3270103839021202],[118,74,65,0.32768136985436613],[118,74,66,0.32834545453420794],[118,74,67,0.3290041338446603],[118,74,68,0.3296588745682799],[118,74,69,0.3303111114508286],[118,74,70,0.33096224423547393],[118,74,71,0.33161363464750016],[118,74,72,0.3322666033295384],[118,74,73,0.33292242672729366],[118,74,74,0.33358233392582637],[118,74,75,0.3342475034363108],[118,74,76,0.33491905993332716],[118,74,77,0.3355980709426686],[118,74,78,0.33628554347965967],[118,74,79,0.33698242063799827],[118,75,64,0.32304558763364155],[118,75,65,0.32374444131554303],[118,75,66,0.3244369764235344],[118,75,67,0.32512467275565554],[118,75,68,0.3258089807568594],[118,75,69,0.3264913186220072],[118,75,70,0.32717306934986656],[118,75,71,0.3278555777480845],[118,75,72,0.3285401473891473],[118,75,73,0.32922803751730256],[118,75,74,0.329920459906501],[118,75,75,0.3306185756692811],[118,75,76,0.3313234920166547],[118,75,77,0.3320362589689705],[118,75,78,0.33275786601775725],[118,75,79,0.3334892387385562],[118,76,64,0.3189340029439884],[118,76,65,0.3196601913432509],[118,76,66,0.32038068342043746],[118,76,67,0.32109694255616983],[118,76,68,0.32181040251049564],[118,76,69,0.3225224645449193],[118,76,70,0.3232344944959069],[118,76,71,0.3239478197998384],[118,76,72,0.32466372646941716],[118,76,73,0.32538345602151164],[118,76,74,0.32610820235648996],[118,76,75,0.32683910858896803],[118,76,76,0.3275772638300274],[118,76,77,0.32832369992088595],[118,76,78,0.3290793881180169],[118,76,79,0.3298452357297283],[118,77,64,0.3146772152762043],[118,77,65,0.3154301952417276],[118,77,66,0.3161781404660059],[118,77,67,0.31692249760581015],[118,77,68,0.3176646833950852],[118,77,69,0.3184060817857136],[118,77,70,0.31914804104023115],[118,77,71,0.31989187077646497],[118,77,72,0.32063883896410605],[118,77,73,0.3213901688731885],[118,77,74,0.32214703597454153],[118,77,75,0.322910564792127],[118,77,76,0.32368182570732573],[118,77,77,0.32446183171515247],[118,77,78,0.3252515351323947],[118,77,79,0.3260518242576893],[118,78,64,0.3102769094818856],[118,78,65,0.3110561281262043],[118,78,66,0.31183101268744684],[118,78,67,0.3126029927983153],[118,78,68,0.3133734678317879],[118,78,69,0.3141438040603061],[118,78,70,0.3149153317673965],[118,78,71,0.3156893423116951],[118,78,72,0.3164670851433889],[118,78,73,0.3172497647730439],[118,78,74,0.3180385376928885],[118,78,75,0.318834509250462],[118,78,76,0.3196387304746958],[118,78,77,0.32045219485440135],[118,78,78,0.3212758350691651],[118,78,79,0.32211051967266274],[118,79,64,0.30573486892442203],[118,79,65,0.30653976403630157],[118,79,66,0.3073410645217064],[118,79,67,0.30814018269546817],[118,79,68,0.3089385002412931],[118,79,69,0.3097373653890577],[118,79,70,0.3105380900450243],[118,79,71,0.3113419468749472],[118,79,72,0.31215016634008036],[118,79,73,0.31296393368605835],[118,79,74,0.3137843858847178],[118,79,75,0.31461260852877304],[118,79,76,0.3154496326794057],[118,79,77,0.3162964316667506],[118,79,78,0.31715391784327407],[118,79,79,0.31802293929005715],[118,80,64,0.3010529745284144],[118,80,65,0.30188297499513417],[118,80,66,0.30271015878435226],[118,80,67,0.30353592060584],[118,80,68,0.3043616241325062],[118,80,69,0.3051885991954779],[118,80,70,0.3060181389325938],[118,80,71,0.3068514968902777],[118,80,72,0.30768988407880504],[118,80,73,0.3085344659809317],[118,80,74,0.3093863595139572],[118,80,75,0.3102466299451287],[118,80,76,0.31111628776045214],[118,80,77,0.3119962854868902],[118,80,78,0.31288751446794283],[118,80,79,0.31379080159262285],[118,81,64,0.29623320377516477],[118,81,65,0.2970877300140267],[118,81,66,0.29794025568362004],[118,81,67,0.2987921576082702],[118,81,68,0.29964478113555837],[118,81,69,0.3004994373488594],[118,81,70,0.30135740023378954],[118,81,71,0.3022199037985269],[118,81,72,0.30308813914802246],[118,81,73,0.30396325151206594],[118,81,74,0.30484633722728394],[118,81,75,0.3057384406729712],[118,81,76,0.30664055116082634],[118,81,77,0.307553599778568],[118,81,78,0.3084784561874292],[118,81,79,0.3094159253735419],[118,82,64,0.291277629644115],[118,82,65,0.2921560940427127],[118,82,66,0.29303341177949715],[118,82,67,0.2939109415199539],[118,82,68,0.2947900099790145],[118,82,69,0.2956719091507178],[118,82,70,0.2965578934922799],[118,82,71,0.2974491770625389],[118,82,72,0.29834693061478645],[118,82,73,0.2992522786439552],[118,82,74,0.30016629638823733],[118,82,75,0.30109000678503617],[118,82,76,0.3020243773813205],[118,82,77,0.30297031719835893],[118,82,78,0.30392867355083225],[118,82,79,0.30490022882033563],[118,83,64,0.286188419500471],[118,83,65,0.28709022686525343],[118,83,66,0.28799177888807803],[118,83,67,0.2888944158093729],[118,83,68,0.2897994454115136],[118,83,69,0.29070814026526837],[118,83,70,0.29162173493115595],[118,83,71,0.29254142311568143],[118,83,72,0.2934683547824619],[118,83,73,0.29440363321821056],[118,83,74,0.295348312053658],[118,83,75,0.296303392239307],[118,83,76,0.29726981897609406],[118,83,77,0.2982484786009359],[118,83,78,0.29924019542715585],[118,83,79,0.3002457285398029],[118,84,64,0.28096783392890257],[118,84,65,0.2818923819415665],[118,84,66,0.28281760293108427],[118,84,67,0.28374481845396193],[118,84,68,0.2846753170677313],[118,84,69,0.2856103515938337],[118,84,70,0.2865511363359249],[118,84,71,0.2874988442535634],[118,84,72,0.28845460409129775],[118,84,73,0.2894194974631177],[118,84,74,0.29039455589235175],[118,84,75,0.2913807578069026],[118,84,76,0.29237902548990025],[118,84,77,0.2933902219857437],[118,84,78,0.29441514796153134],[118,84,79,0.29545453852389236],[118,85,64,0.2756182255131775],[118,85,65,0.2765649051944279],[118,85,66,0.27751322273040996],[118,85,67,0.2784644807423715],[118,85,68,0.2794199482785301],[118,85,69,0.28038085809304525],[118,85,70,0.2813484038809224],[118,85,71,0.28232373746881256],[118,85,72,0.28330796596172103],[118,85,73,0.2843021488455907],[118,85,74,0.285307295045843],[118,85,75,0.2863243599417679],[118,85,76,0.28735424233684137],[118,85,77,0.28839778138494265],[118,85,78,0.28945575347247215],[118,85,79,0.29052886905638026],[118,86,64,0.2701420375619942],[118,86,65,0.27111023374220455],[118,86,66,0.2720810687479507],[118,86,67,0.2730558260215855],[118,86,68,0.27403575482555287],[118,86,69,0.27502206753709335],[118,86,70,0.2760159368993975],[118,86,71,0.27701849322916705],[118,86,72,0.27803082158060166],[118,86,73,0.2790539588657724],[118,86,74,0.28008889093146927],[118,86,75,0.28113654959241074],[118,86,76,0.28219780962089525],[118,86,77,0.28327348569286737],[118,86,78,0.284364329290398],[118,86,79,0.28547102556059134],[118,87,64,0.2645418027808889],[118,87,65,0.26553089457719586],[118,87,66,0.26652366177059617],[118,87,67,0.26752136838877333],[118,87,68,0.26852524364013786],[118,87,69,0.2695364792239071],[118,87,70,0.2705562265971506],[118,87,71,0.2715855941987619],[118,87,72,0.27262564463037164],[118,87,73,0.2736773917941656],[118,87,74,0.2747417979876963],[118,87,75,0.2758197709555714],[118,87,76,0.2769121608981019],[118,87,77,0.27801975743688556],[118,87,78,0.27914328653731857],[118,87,79,0.280283407388052],[118,88,64,0.2588201418900679],[118,88,65,0.2598295031894392],[118,88,66,0.26084361154023866],[118,88,67,0.26186371132772945],[118,88,68,0.2628910114464129],[118,88,69,0.26392668262511865],[118,88,70,0.2649718547095821],[118,88,71,0.26602761390246776],[118,88,72,0.26709499996085573],[118,88,73,0.26817500335115246],[118,88,74,0.2692685623615175],[118,88,75,0.27037656017168465],[118,88,76,0.27149982188026833],[118,88,77,0.27263911148952014],[118,88,78,0.27379512884753776],[118,88,79,0.27496850654794025],[118,89,64,0.2529797621884641],[118,89,65,0.2540087621362721],[118,89,66,0.25504361532909164],[118,89,67,0.2560855462901934],[118,89,68,0.2571357433488567],[118,89,69,0.25819535598010257],[118,89,70,0.25926549210243754],[118,89,71,0.2603472153335678],[118,89,72,0.2614415422040993],[118,89,73,0.2625494393291854],[118,89,74,0.2636718205382142],[118,89,75,0.2648095439624152],[118,89,76,0.26596340908047134],[118,89,77,0.26713415372210747],[118,89,78,0.2683224510296549],[118,89,79,0.2695289063776031],[118,90,64,0.24702345606376752],[118,90,65,0.24807145955740448],[118,90,66,0.24912645646007164],[118,90,67,0.2501896512218048],[118,90,68,0.2512622113640856],[118,90,69,0.25234526483384584],[118,90,70,0.25343989731601],[118,90,71,0.2545471495045334],[118,90,72,0.2556680143319532],[118,90,73,0.2568034341574116],[118,90,74,0.257954297913247],[118,90,75,0.2591214382100286],[118,90,76,0.2603056284001234],[118,90,77,0.2615075795997662],[118,90,78,0.26272793766963054],[118,90,79,0.2639672801539139],[118,91,64,0.2409540994486237],[118,91,65,0.2420204676356934],[118,91,66,0.24309500277243623],[118,91,67,0.24417888903288548],[118,91,68,0.2452732728970546],[118,91,69,0.24637926051883952],[118,91,70,0.24749791505298646],[118,91,71,0.24863025394108526],[118,91,72,0.24977724615660307],[118,91,73,0.25093980940891897],[118,91,74,0.2521188073064564],[118,91,75,0.25331504647878555],[118,91,76,0.2545292736577875],[118,91,77,0.2557621727178513],[118,91,78,0.2570143616750979],[118,91,79,0.2582863896456493],[118,92,64,0.23477465022273047],[118,92,65,0.23585874100335272],[118,92,66,0.23695220503241],[118,92,67,0.23805620601378014],[118,92,68,0.2391718691614081],[118,92,69,0.24030027858072683],[118,92,70,0.24144247460967663],[118,92,71,0.24259945111927878],[118,92,72,0.24377215277378245],[118,92,73,0.24496147225034104],[118,92,74,0.24616824741831936],[118,92,75,0.24739325847809934],[118,92,76,0.24863722505948108],[118,92,77,0.24990080327964398],[118,92,78,0.2511845827606685],[118,92,79,0.25248908360663364],[118,93,64,0.22848814656115474],[118,93,65,0.2295893150939173],[118,93,66,0.2307010952891175],[118,93,67,0.2318246301950761],[118,93,68,0.23296102354429635],[118,93,69,0.23411133714802343],[118,93,70,0.2352765882509362],[118,93,71,0.23645774684592583],[118,93,72,0.2376557329489807],[118,93,73,0.23887141383413205],[118,93,74,0.240105601228566],[118,93,75,0.24135904846776499],[118,93,76,0.24263244761077674],[118,93,77,0.2439264265155784],[118,93,78,0.24524154587453223],[118,93,79,0.2465782962099503],[118,94,64,0.2220977052287222],[118,94,65,0.22321530443981438],[118,94,66,0.22434478517567735],[118,94,67,0.22548726965255408],[118,94,68,0.22664383991551343],[118,94,69,0.22781553524576498],[118,94,70,0.22900334952864299],[118,94,71,0.23020822858221024],[118,94,72,0.23143106744650277],[118,94,73,0.23267270763337064],[118,94,74,0.2339339343370202],[118,94,75,0.23521547360511802],[118,94,76,0.23651798947056007],[118,94,77,0.23784208104386811],[118,94,78,0.23918827956621364],[118,94,79,0.2405570454230851],[118,95,64,0.2156065198203127],[118,95,65,0.21673990091537773],[118,95,66,0.21788646415529284],[118,95,67,0.21904731075670802],[118,95,68,0.220223500880792],[118,95,69,0.22141605105291956],[118,95,70,0.22262593154356186],[118,95,71,0.2238540637103338],[118,95,72,0.22510131730122024],[118,95,73,0.22636850771893174],[118,95,74,0.22765639324649894],[118,95,75,0.22896567223396652],[118,95,76,0.23029698024628603],[118,95,77,0.2316508871723732],[118,95,78,0.2330278942953296],[118,95,79,0.23442843132384322],[118,96,64,0.2090178589473843],[118,96,65,0.2101663719256244],[118,96,66,0.21132939771265644],[118,96,67,0.21250801636714772],[118,96,68,0.21370326597957176],[118,96,69,0.21491614010387963],[118,96,70,0.21614758515091204],[118,96,71,0.21739849774350767],[118,96,72,0.2186697220333252],[118,96,73,0.2199620469793343],[118,96,74,0.2212762035880826],[118,96,75,0.22261286211560005],[118,96,76,0.22397262923103778],[118,96,77,0.22535604514201218],[118,96,78,0.2267635806816486],[118,96,79,0.22819563435734197],[118,97,64,0.20233506437056928],[118,97,65,0.20349805854063868],[118,97,66,0.2046769254905166],[118,97,67,0.20587272397173767],[118,97,68,0.2070864698270898],[118,97,69,0.20831913343388136],[118,97,70,0.20957163710948867],[118,97,71,0.21084485247913715],[118,97,72,0.21213959780593628],[118,97,73,0.2134566352831203],[118,97,74,0.21479666828860777],[118,97,75,0.21616033860173106],[118,97,76,0.21754822358224463],[118,97,77,0.218960833311575],[118,97,78,0.22039860769630792],[118,97,79,0.22186191353393436],[118,98,64,0.19556154907816908],[118,98,65,0.19673837357539126],[118,98,66,0.19793245937123255],[118,98,67,0.19914484377029262],[118,98,68,0.20037652020061952],[118,98,69,0.20162843566818195],[118,98,70,0.2029014881741636],[118,98,71,0.20419652409502953],[118,98,72,0.20551433552538723],[118,98,73,0.20685565758359203],[118,98,74,0.2082211656802112],[118,98,75,0.209611472749199],[118,98,76,0.21102712644188898],[118,98,77,0.21246860628376696],[118,98,78,0.21393632079402264],[118,98,79,0.21543060456789953],[118,99,64,0.18870079531088457],[118,99,65,0.1898907996153279],[118,99,66,0.19109948150365053],[118,99,67,0.19232785670316715],[118,99,68,0.19357689607019107],[118,99,69,0.19484752305532232],[118,99,70,0.19614061113209758],[118,99,71,0.1974569811889541],[118,99,72,0.1987973988845272],[118,99,73,0.20016257196623333],[118,99,74,0.2015531475522524],[118,99,75,0.2029697093767613],[118,99,76,0.20441277499852462],[118,99,77,0.20588279297280676],[118,99,78,0.20738013998660476],[118,99,79,0.208905117957216],[118,100,64,0.18175635253261962],[118,100,65,0.1829588869875668],[118,100,66,0.18418154227514338],[118,100,67,0.18542531242457838],[118,100,68,0.1866911455736341],[118,100,69,0.18797994144431956],[118,100,70,0.189292548782506],[118,100,71,0.19062976276139654],[118,100,72,0.19199232234887254],[118,100,73,0.1933809076386631],[118,100,74,0.19479613714545918],[118,100,75,0.1962385650638157],[118,100,76,0.19770867849095358],[118,100,77,0.1992068946134255],[118,100,78,0.20073355785764052],[118,100,79,0.20228893700426637],[118,101,64,0.17473183534717474],[118,101,65,0.17594625167752165],[118,101,66,0.1771822582286292],[118,101,67,0.17844082722047994],[118,101,68,0.1797228839357607],[118,101,69,0.18102930420560737],[118,101,70,0.1823609118597962],[118,101,71,0.1837184761413284],[118,101,72,0.18510270908543386],[118,101,73,0.18651426286293799],[118,101,74,0.1879537270881167],[118,101,75,0.1894216260908771],[118,101,76,0.19091841615338423],[118,101,77,0.1924444827110876],[118,101,78,0.1940001375181507],[118,101,79,0.1955856157773006],[118,102,64,0.16763092136118424],[118,102,65,0.16885657319130348],[118,102,66,0.17010530992492012],[118,102,67,0.17137808187133746],[118,102,68,0.1726757913320383],[118,102,69,0.17399929009607135],[118,102,70,0.17534937690042468],[118,102,71,0.1767267948553362],[118,102,72,0.17813222883456137],[118,102,73,0.17956630283054875],[118,102,74,0.1810295772746418],[118,102,75,0.18252254632215087],[118,102,76,0.18404563510240968],[118,102,77,0.1855991969337752],[118,102,78,0.18718351050357057],[118,102,79,0.18879877701299003],[118,103,64,0.16045734899312553],[118,103,65,0.16169359236372927],[118,103,66,0.16295443975023277],[118,103,67,0.16424081945963487],[118,103,68,0.16555361069658348],[118,103,69,0.1668936410680122],[118,103,70,0.168261684053306],[118,103,71,0.16965845643994437],[118,103,72,0.17108461572464317],[118,103,73,0.17254075747994557],[118,103,74,0.17402741268638083],[118,103,75,0.17554504503003432],[118,103,76,0.17709404816564206],[118,103,77,0.17867474294517122],[118,103,78,0.1802873746118857],[118,103,79,0.18193210995991244],[118,104,64,0.15321491522821418],[118,104,65,0.1544611091117522],[118,104,66,0.15573344966867336],[118,104,67,0.15703284312192856],[118,104,68,0.158360145474291],[118,104,69,0.15971616002185218],[118,104,70,0.16110163483358875],[118,104,71,0.16251726019694768],[118,104,72,0.16396366602947093],[118,104,73,0.16544141925640882],[118,104,74,0.16695102115444488],[118,104,75,0.16849290466137007],[118,104,76,0.17006743165182348],[118,104,77,0.17167489017906085],[118,104,78,0.17331549168274668],[118,104,79,0.17498936816278976],[118,105,64,0.14590747331954607],[118,105,65,0.14716298013367396],[118,105,66,0.1484461989200574],[118,105,67,0.14975801374580655],[118,105,68,0.15109925731745794],[118,105,69,0.15247070850294098],[118,105,70,0.15387308982015596],[118,105,71,0.1553070648921091],[118,105,72,0.1567732358686308],[118,105,73,0.15827214081461877],[118,105,74,0.15980425106493612],[118,105,75,0.1613699685457975],[118,105,76,0.16296962306276325],[118,105,77,0.16460346955529997],[118,105,78,0.16627168531790598],[118,105,79,0.16797436718782188],[118,106,64,0.13853893043531385],[118,106,65,0.1398031165539662],[118,106,66,0.14109660166289167],[118,106,67,0.1424202476115799],[118,106,68,0.14377486372672843],[118,106,69,0.14516120434229096],[118,106,70,0.14657996629667747],[118,106,71,0.148031786397051],[118,106,72,0.14951723885074641],[118,106,73,0.1510368326637535],[118,106,74,0.152591009006396],[118,106,75,0.1541801385460368],[118,106,76,0.15580451874693024],[118,106,77,0.1574643711371826],[118,106,78,0.15915983854281524],[118,106,79,0.160890982288952],[118,107,64,0.13111324525190127],[118,107,65,0.1323854815135062],[118,107,66,0.13368862456232483],[118,107,67,0.13502351397851586],[118,107,68,0.13639093563616883],[118,107,69,0.13779161924104755],[118,107,70,0.1392262358360244],[118,107,71,0.1406953952741506],[118,107,72,0.14219964365938503],[118,107,73,0.14373946075492783],[118,107,74,0.14531525735928813],[118,107,75,0.14692737264991507],[118,107,76,0.14857607149451657],[118,107,77,0.15026154173002276],[118,107,78,0.1519838914091915],[118,107,79,0.15374314601487848],[118,108,64,0.12363442549323278],[118,108,65,0.1249140877056017],[118,108,66,0.12622628432343908],[118,108,67,0.12757183261598198],[118,108,68,0.12895149494284358],[118,108,69,0.13036597629906815],[118,108,70,0.13181592182841345],[118,108,71,0.13330191430480576],[118,108,72,0.13482447158199246],[118,108,73,0.13638404401133541],[118,108,74,0.1379810118278757],[118,108,75,0.13961568250450035],[118,108,76,0.1412882880743329],[118,108,77,0.14299898242130626],[118,108,78,0.1447478385389147],[118,108,79,0.14653484575716907],[118,109,64,0.11610652541619443],[118,109,65,0.11739299485762306],[118,109,66,0.11871364516970295],[118,109,67,0.1200692712793216],[118,109,68,0.12146061198071045],[118,109,69,0.12288834748742727],[118,109,70,0.12435309695310276],[118,109,71,0.12585541596089594],[118,109,72,0.12739579398168271],[118,109,73,0.1289746518009206],[118,109,74,0.13059233891432187],[118,109,75,0.13224913089216445],[118,109,76,0.13394522671236025],[118,109,77,0.1356807460622454],[118,109,78,0.13745572660908345],[118,109,79,0.13927012123930654],[118,110,64,0.10853364324193088],[118,110,65,0.10982630715804703],[118,110,66,0.11115481626638801],[118,110,67,0.11251994313026664],[118,110,68,0.11392240293864242],[118,110,69,0.11536285106465338],[118,110,70,0.11684188059344436],[118,110,71,0.11836001981923955],[118,110,72,0.11991772971168224],[118,110,73,0.12151540135138378],[118,110,74,0.12315335333481814],[118,110,75,0.12483182914838442],[118,110,76,0.12655099451176505],[118,110,77,0.12831093469053773],[118,110,78,0.13011165177803424],[118,110,79,0.1319530619464745],[118,111,64,0.10091991853339966],[118,111,65,0.10221817062929184],[118,111,66,0.10355394908933274],[118,111,67,0.10492800410226638],[118,111,68,0.10634102722295452],[118,111,69,0.10779364893707871],[118,111,70,0.10928643619567252],[118,111,71,0.1108198899194297],[118,111,72,0.1123944424728121],[118,111,73,0.11401045510789887],[118,111,74,0.11566821537811461],[118,111,75,0.11736793452165756],[118,111,76,0.11910974481475473],[118,111,77,0.12089369689470447],[118,111,78,0.12271975705269933],[118,111,79,0.12458780449645263],[118,112,64,0.09326952951899742],[118,112,65,0.09457277044616069],[118,112,66,0.09591523473886432],[118,112,67,0.09729765021054693],[118,112,68,0.09872068476424978],[118,112,69,0.10018494396311417],[118,112,70,0.1016909685712421],[118,112,71,0.10323923206486096],[118,112,72,0.10483013811381908],[118,112,73,0.10646401803335465],[118,112,74,0.10814112820627075],[118,112,75,0.10986164747534305],[118,112,76,0.11162567450608474],[118,112,77,0.11343322511982862],[118,112,78,0.11528422959711898],[118,112,79,0.11717852995144035],[118,113,64,0.08558669036205918],[118,113,65,0.08689432819969356],[118,113,66,0.08824290119868383],[118,113,67,0.089633114806704],[118,113,68,0.09106561326838775],[118,113,69,0.09254097720125432],[118,113,70,0.09405972114252109],[118,113,71,0.09562229106675235],[118,113,72,0.09722906187436431],[118,113,73,0.09888033485093162],[118,113,74,0.10057633509743052],[118,113,75,0.10231720893124024],[118,113,76,0.1041030212580305],[118,113,77,0.10593375291449386],[118,113,78,0.1078092979819178],[118,113,79,0.10972946107061965],[118,114,64,0.07787564837664063],[118,114,65,0.07918709910683491],[118,114,66,0.08054121054012242],[118,114,67,0.081938665778238],[118,114,68,0.083380085411985],[118,114,69,0.08486602510221858],[118,114,70,0.08639697313224354],[118,114,71,0.08797334793157274],[118,114,72,0.08959549557106905],[118,114,73,0.09126368722941164],[118,114,74,0.0929781166310274],[118,114,75,0.09473889745530473],[118,114,76,0.09654606071721916],[118,114,77,0.09839955211932994],[118,114,78,0.10029922937514069],[118,114,79,0.10224485950385037],[118,115,64,0.07014068118923816],[118,115,65,0.07145536916557887],[118,115,66,0.07281445607142345],[118,115,67,0.07421860269268743],[118,115,68,0.07566840598210112],[118,115,69,0.07716439664488767],[118,115,70,0.07870703669638118],[118,115,71,0.08029671699152602],[118,115,72,0.08193375472628295],[118,115,73,0.08361839091088447],[118,115,74,0.08535078781507571],[118,115,75,0.08713102638516157],[118,115,76,0.08895910363298981],[118,115,77,0.09083492999682602],[118,115,78,0.09275832667411704],[118,115,79,0.09472902292616703],[118,116,64,0.06238609384671201],[118,116,65,0.06370345225584795],[118,116,66,0.06506695943231605],[118,116,67,0.06647725388662268],[118,116,68,0.06793490896037463],[118,116,69,0.06944043041629461],[118,116,70,0.07099425400069531],[118,116,71,0.07259674297835683],[118,116,72,0.07424818563983066],[118,116,73,0.07594879278111033],[118,116,74,0.07769869515581163],[118,116,75,0.07949794089967671],[118,116,76,0.08134649292753271],[118,116,77,0.08324422630266692],[118,116,78,0.08519092557860619],[118,116,79,0.08718628211333068],[118,117,64,0.054616215870052165],[118,117,65,0.055935687185752925],[118,117,66,0.057303067633519944],[118,117,67,0.058718973499143845],[118,117,68,0.06018395455125369],[118,117,69,0.061698491635316766],[118,117,70,0.06326299424061232],[118,117,71,0.06487779804012533],[118,117,72,0.06654316240338487],[118,117,73,0.06825926788218456],[118,117,74,0.07002621366933165],[118,117,75,0.07184401503023452],[118,117,76,0.07371260070746427],[118,117,77,0.0756318102982464],[118,117,78,0.07760139160487745],[118,117,79,0.07962099795808997],[118,118,64,0.046835398254414795],[118,118,65,0.0481564346836571],[118,118,66,0.049527150041610624],[118,118,67,0.050948138450309155],[118,118,68,0.05241992615474328],[118,118,69,0.05394296912049279],[118,118,70,0.05551765060484931],[118,118,71,0.05714427870136918],[118,118,72,0.05882308385788715],[118,118,73,0.06055421636792552],[118,118,74,0.062337743835643444],[118,118,75,0.06417364861414143],[118,118,76,0.06606182521725168],[118,118,77,0.06800207770477201],[118,118,78,0.06999411704113917],[118,118,79,0.07203755842756454],[118,119,64,0.039048010415224765],[118,119,65,0.04037007433584222],[118,119,66,0.041743595309035764],[118,119,67,0.04316914536428623],[118,119,68,0.04464722728346554],[118,119,69,0.04617827220175813],[118,119,70,0.047762637182581835],[118,119,71,0.04940060276645214],[118,119,72,0.05109237049381443],[118,119,73,0.05283806040178324],[118,119,74,0.05463770849493277],[118,119,75,0.05649126418995015],[118,119,76,0.058398587734286134],[118,119,77,0.060359447598761384],[118,119,78,0.06237351784411854],[118,119,79,0.06444037546155057],[118,120,64,0.031258437080148305],[118,120,65,0.032581001469580484],[118,120,66,0.03395680824909364],[118,120,67,0.035386407437036194],[118,120,68,0.036870278423843494],[118,120,69,0.038408827575909354],[118,120,70,0.04000238581396548],[118,120,71,0.04165120616590745],[118,120,72,0.0433554612940974],[118,120,73,0.04511524099707964],[118,120,74,0.04693054968585414],[118,120,75,0.04880130383451858],[118,120,76,0.05072732940541563],[118,120,77,0.052708359248740344],[118,120,78,0.05474403047660098],[118,120,79,0.05683388181156318],[118,121,64,0.023471075127331875],[118,121,65,0.024793623982006574],[118,121,66,0.02617120665626499],[118,121,67,0.027604351248922077],[118,121,68,0.029093513841794094],[118,121,69,0.030639076106188046],[118,121,70,0.032241342884400004],[118,121,71,0.03390053974616475],[118,121,72,0.03561681052008303],[118,121,73,0.03739021479996402],[118,121,74,0.039220725426229786],[118,121,75,0.04110822594218999],[118,121,76,0.04305250802532462],[118,121,77,0.045053268893528675],[118,121,78,0.04711010868631349],[118,121,79,0.04922252782099534],[118,122,64,0.01569033036971018],[118,122,65,0.017012359114594477],[118,122,66,0.018391218071701076],[118,122,67,0.01982741352204498],[118,122,68,0.021321378332742114],[118,122,69,0.022873469565787174],[118,122,70,0.02448396606234121],[118,122,71,0.026153066002467473],[118,122,72,0.027880884440345255],[118,122,73,0.02966745081489558],[118,122,74,0.03151270643596826],[118,122,75,0.03341650194589785],[118,122,76,0.03537859475656535],[118,122,77,0.03739864646192148],[118,122,78,0.039476220225965086],[118,122,79,0.04161077814620473],[118,123,64,0.00792061428518287],[118,123,65,0.009241630173040027],[118,123,66,0.01062127649367045],[118,123,67,0.012060037822109959],[118,123,68,0.013558323915749626],[118,123,69,0.015116467325084482],[118,123,70,0.01673472098046297],[118,123,71,0.0184132557547812],[118,123,72,0.020152158002147258],[118,123,73,0.021951427072453122],[118,123,74,0.02381097280200295],[118,123,75,0.025730612980001677],[118,123,76,0.027710070791045927],[118,123,77,0.02974897223356987],[118,123,78,0.03184684351424061],[118,123,79,0.03400310841833132],[118,124,64,1.663406930563216E-4],[118,124,65,0.0014858631929407506],[118,124,66,0.0028658190333600286],[118,124,67,0.004306671205216328],[118,124,68,0.005808806472160477],[118,124,69,0.007372532982994173],[118,124,70,0.008998077860563225],[118,124,71,0.01068558476708692],[118,124,72,0.01243511144594489],[118,124,73,0.014246627239862586],[118,124,74,0.016120010585642386],[118,124,75,0.018055046485245696],[118,124,76,0.02005142395336601],[118,124,77,0.022108733441447592],[118,124,78,0.024226464238142564],[118,124,79,0.026404001846235925],[118,125,64,-0.007568077623442693],[118,125,65,-0.006250516448914889],[118,125,66,-0.004870717484166398],[118,125,67,-0.003428239190621185],[118,125,68,-0.0019227176714362582],[118,125,69,-3.538690577553627E-4],[118,125,70,0.0012785080820187922],[118,125,71,0.0029745303098669407],[118,125,72,0.004734226862744162],[118,125,73,0.006557537174051609],[118,125,74,0.008444308372138942],[118,125,75,0.01039429275564363],[118,125,76,0.012407145245806883],[118,125,77,0.014482420815718822],[118,125,78,0.016619571896488328],[118,125,79,0.01881794576036533],[118,126,64,-0.01527823234878628],[118,126,65,-0.013963087477856906],[118,126,66,-0.012583899974052182],[118,126,67,-0.011140249609425279],[118,126,68,-0.009631795216128447],[118,126,69,-0.008058277071619768],[118,126,70,-0.006419519306411825],[118,126,71,-0.004715432334422065],[118,126,72,-0.0029460153058962213],[118,126,73,-0.001111358582971289],[118,126,74,7.883537622754844E-4],[118,126,75,0.002752841427092201],[118,126,76,0.004781725334774278],[118,126,77,0.00687452506879882],[118,126,78,0.009030656284361505],[118,126,79,0.011249428097347858],[118,127,64,-0.02295972312049932],[118,127,65,-0.02164743621884163],[118,127,66,-0.02026930260037685],[118,127,67,-0.01882492319628215],[118,127,68,-0.017313979419084857],[118,127,69,-0.01573623554711756],[118,127,70,-0.01409154113103972],[118,127,71,-0.012379833422486608],[118,127,72,-0.010601139824815475],[118,127,73,-0.008755580366016091],[118,127,74,-0.006843370193632015],[118,127,75,-0.004864822091891763],[118,127,76,-0.0028203490209088855],[118,127,77,-7.104666779936819E-4],[118,127,78,0.0014642039189118883],[118,127,79,0.0037029338257107414],[118,128,64,-0.030608161068443107],[118,128,65,-0.029299160148356984],[118,128,66,-0.027922510339730144],[118,128,67,-0.026477833571639464],[118,128,68,-0.024964833677645792],[118,128,69,-0.023383298779784067],[118,128,70,-0.021733103694150935],[118,128,71,-0.020014212358148042],[118,128,72,-0.018226680279353702],[118,128,73,-0.016370657006087752],[118,128,74,-0.014446388619518746],[118,128,75,-0.01245422024750864],[118,128,76,-0.010394598600057314],[118,128,77,-0.008268074526389668],[118,128,78,-0.006075305593693514],[118,128,79,-0.003817058687478836],[118,129,64,-0.03821917240822764],[118,129,65,-0.036913871500916295],[118,129,66,-0.035539122599822615],[118,129,67,-0.03409456846107328],[118,129,68,-0.03257993516929081],[118,129,69,-0.030995034521398623],[118,129,70,-0.029339766431558223],[118,129,71,-0.02761412135729724],[118,129,72,-0.02581818274680081],[118,129,73,-0.02395212950743264],[118,129,74,-0.022016238495331186],[118,129,75,-0.02001088702628151],[118,129,76,-0.017936555407720767],[118,129,77,-0.01579382949192054],[118,129,78,-0.013583403250357007],[118,129,79,-0.011306081369236054],[118,130,64,-0.045788402088362934],[118,130,65,-0.04448720092976005],[118,130,66,-0.043114756892748685],[118,130,67,-0.04167073338013316],[118,130,68,-0.040154878547096984],[118,130,69,-0.03856702768509479],[118,130,70,-0.03690710562641375],[118,130,71,-0.035175129169470076],[118,130,72,-0.033371209524807655],[118,130,73,-0.031495554781868496],[118,130,74,-0.029548472396376924],[118,130,75,-0.027530371698543],[118,130,76,-0.025441766421937517],[118,130,77,-0.023283277253087098],[118,130,78,-0.021055634401796475],[118,130,79,-0.018759680192166228],[118,131,64,-0.053311517491340055],[118,131,65,-0.052014801221950124],[118,131,66,-0.05064505256308949],[118,131,67,-0.049201955374457484],[118,131,68,-0.047685279690879545],[118,131,69,-0.046094884106546385],[118,131,70,-0.04443071817947164],[118,131,71,-0.042692824856230494],[118,131,72,-0.04088134291694501],[118,131,73,-0.03899650944059008],[118,131,74,-0.037038662290459046],[118,131,75,-0.03500824261999347],[118,131,76,-0.03290579739883248],[118,131,77,-0.03073198195912885],[118,131,78,-0.028487562562136803],[118,131,79,-0.026173418985044217],[118,132,64,-0.06078421218883545],[118,132,65,-0.05949235106805473],[118,132,66,-0.058125674571055],[118,132,67,-0.05668388681535763],[118,132,68,-0.055166779514208786],[118,132,69,-0.053574234361422945],[118,132,70,-0.051906225435997766],[118,132,71,-0.05016282162655916],[118,132,72,-0.048344189075609],[118,132,73,-0.0464505936436439],[118,132,74,-0.04448240339298537],[118,132,75,-0.042440091091527354],[118,132,76,-0.04032423673625718],[118,132,77,-0.038135530096590986],[118,132,78,-0.035874773277538075],[118,132,79,-0.033542883302658866],[118,133,64,-0.06820220975066049],[118,133,65,-0.06691555888603706],[118,133,66,-0.06555231733027533],[118,133,67,-0.06411220925047834],[118,133,68,-0.06259504782691894],[118,133,69,-0.06100073763873226],[118,133,70,-0.0593292770689392],[118,133,71,-0.0575807607288602],[118,133,72,-0.05575538190188678],[118,133,73,-0.05385343500668516],[118,133,74,-0.05187531807966772],[118,133,75,-0.04982153527694133],[118,133,76,-0.04769269939558618],[118,133,77,-0.045489534414309696],[118,133,78,-0.04321287805348484],[118,133,79,-0.04086368435454146],[118,134,64,-0.07556126760763748],[118,134,65,-0.0742801666995434],[118,134,66,-0.07292070860043653],[118,134,67,-0.07148263730973348],[118,134,68,-0.0699657872533006],[118,134,69,-0.06837008567023628],[118,134,70,-0.06669555501854785],[118,134,71,-0.06494231539978101],[118,134,72,-0.06311058700257588],[118,134,73,-0.06120069256521532],[118,134,74,-0.059213059857008865],[118,134,75,-0.0571482241787149],[118,134,76,-0.05500683088186076],[118,134,77,-0.0527896379070002],[118,134,78,-0.050497518340920755],[118,134,79,-0.048131462992768714],[118,135,64,-0.08285718096860217],[118,135,65,-0.0815819540707764],[118,135,66,-0.08022661343495274],[118,135,67,-0.07879092266670473],[118,135,68,-0.07727473720616751],[118,135,69,-0.07567800671613967],[118,135,70,-0.07400077748864664],[118,135,71,-0.07224319487003217],[118,135,72,-0.0704055057045444],[118,135,73,-0.0684880607964834],[118,135,74,-0.06649131739075953],[118,135,75,-0.06441584167205783],[118,135,76,-0.06226231128247106],[118,135,77,-0.06003151785764049],[118,135,78,-0.05772436958142069],[118,135,79,-0.05534189375902843],[118,136,64,-0.0900857867911421],[118,136,65,-0.08881674208757195],[118,136,66,-0.0874658381832848],[118,136,67,-0.0860328580551184],[118,136,68,-0.08451767791641407],[118,136,69,-0.08292026960665688],[118,136,70,-0.08124070299915542],[118,136,71,-0.07947914842682668],[118,136,72,-0.07763587912605119],[118,136,73,-0.07571127369867059],[118,136,74,-0.07370581859196856],[118,136,75,-0.07162011059683804],[118,136,76,-0.06945485936399376],[118,136,77,-0.0672108899382704],[118,136,78,-0.06488914531101853],[118,136,79,-0.06249068899056687],[118,137,64,-0.09724296780627883],[118,137,65,-0.0959803974048824],[118,137,66,-0.09463423454811348],[118,137,67,-0.09320428134060377],[118,137,68,-0.09169043451826298],[118,137,69,-0.09009268783966795],[118,137,70,-0.08841113449507809],[118,137,71,-0.0866459695331363],[118,137,72,-0.08479749230522715],[118,137,73,-0.08286610892756097],[118,137,74,-0.08085233476082143],[118,137,75,-0.0787567969075883],[118,137,76,-0.0765802367273859],[118,137,77,-0.07432351236940249],[118,137,78,-0.07198760132289106],[118,137,79,-0.06957360298521975],[118,138,64,-0.10432465659725676],[118,138,65,-0.10306883634083452],[118,138,66,-0.10172770369753381],[118,138,67,-0.10030107964790225],[118,138,68,-0.09878888119037699],[118,138,69,-0.09719112373462913],[118,138,70,-0.09550792351212056],[118,138,71,-0.09373950000394071],[118,138,72,-0.09188617838588753],[118,138,73,-0.08994839199086613],[118,138,74,-0.08792668478844434],[118,138,75,-0.0858217138817694],[118,138,76,-0.0836342520217026],[118,138,77,-0.08136519013821741],[118,138,78,-0.0790155398890674],[118,138,79,-0.07658643622569328],[118,139,64,-0.11132683973206259],[118,139,65,-0.11007802902697894],[118,139,66,-0.10874220043189009],[118,139,67,-0.10731919354314512],[118,139,68,-0.10580894535244989],[118,139,69,-0.10421149264235519],[118,139,70,-0.10252697439855907],[118,139,71,-0.10075563423908251],[118,139,72,-0.09889782286028981],[118,139,73,-0.0969540004998225],[118,139,74,-0.09492473941628676],[118,139,75,-0.09281072638590193],[118,139,76,-0.09061276521596318],[118,139,77,-0.08833177927516256],[118,139,78,-0.0859688140407815],[118,139,79,-0.0835250396627174],[118,140,64,-0.11824556195000124],[118,140,65,-0.11700400361306396],[118,140,66,-0.1156737374055774],[118,140,67,-0.1142546212715293],[118,140,68,-0.11274661191760504],[118,140,69,-0.11114976721100589],[118,140,70,-0.1094642485936842],[118,140,71,-0.10769032351305774],[118,140,72,-0.10582836786917349],[118,140,73,-0.10387886847838879],[118,140,74,-0.10184242555341005],[118,140,75,-0.09971975519989706],[118,140,76,-0.09751169192948694],[118,140,77,-0.09521919118927957],[118,140,78,-0.09284333190779959],[118,140,79,-0.09038531905739633],[118,141,64,-0.12507693040208112],[118,141,65,-0.12384285052608168],[118,141,66,-0.12251838940356574],[118,141,67,-0.12110342305014032],[118,141,68,-0.11959792760035559],[118,141,69,-0.11800198170802478],[118,141,70,-0.11631576896257634],[118,141,71,-0.11453958032149547],[118,141,72,-0.11267381655882569],[118,141,73,-0.1107189907297993],[118,141,74,-0.10867573065143943],[118,141,75,-0.1065447813993361],[118,141,76,-0.10432700782045445],[118,141,77,-0.10202339706201646],[118,141,78,-0.09963506111647125],[118,141,79,-0.09716323938251237],[118,142,64,-0.13181711894552905],[118,142,65,-0.13059072678391004],[118,142,66,-0.129272297672967],[118,142,67,-0.12786172541625263],[118,142,68,-0.1263590052804482],[118,142,69,-0.12476423639835521],[118,142,70,-0.12307762418753343],[118,142,71,-0.12129948278464886],[118,142,72,-0.11943023749549986],[118,142,73,-0.1174704272607916],[118,142,74,-0.11542070713749975],[118,142,75,-0.11328185079602815],[118,142,76,-0.11105475303301715],[118,142,77,-0.1087404322998432],[118,142,78,-0.1063400332468255],[118,142,79,-0.10385482928310119],[118,143,64,-0.13846237249206095],[118,143,65,-0.13724386036317215],[118,143,66,-0.13593167430926534],[118,143,67,-0.13452572563071563],[118,143,68,-0.133026028422209],[118,143,69,-0.13143270197855406],[118,143,70,-0.12974597321577108],[118,143,71,-0.12796617910751618],[118,143,72,-0.12609376913680714],[118,143,73,-0.12412930776312969],[118,143,74,-0.12207347690475046],[118,143,75,-0.119927078436458],[118,143,76,-0.11769103670257575],[118,143,77,-0.11536640104529483],[118,143,78,-0.11295434834833884],[118,143,79,-0.11045618559592252],[118,144,64,-0.14500901141008726],[118,144,65,-0.14379855462150082],[118,144,66,-0.14249280669739572],[118,144,67,-0.14109169613662365],[118,144,68,-0.13959525554957997],[118,144,69,-0.13800362406698652],[118,144,70,-0.13631704976358117],[118,144,71,-0.13453589209677863],[118,144,72,-0.13266062436026638],[118,144,73,-0.1306918361526117],[118,144,74,-0.1286302358607142],[118,144,75,-0.1264766531583139],[118,144,76,-0.12423204151940903],[118,144,77,-0.12189748074662621],[118,144,78,-0.11947417951455441],[118,144,79,-0.11696347792800998],[118,145,64,-0.15145343598101801],[118,145,65,-0.15025119277436072],[118,145,66,-0.14895206200783506],[118,145,67,-0.1475559890734216],[118,145,68,-0.14606302477700572],[118,145,69,-0.14447332775026667],[118,145,70,-0.14278716687711057],[118,145,71,-0.14100492373471873],[118,145,72,-0.13912709504917065],[118,145,73,-0.1371542951657193],[118,145,74,-0.13508725853355374],[118,145,75,-0.1329268422052582],[118,145,76,-0.13067402835082087],[118,145,77,-0.12832992678623611],[118,145,78,-0.125895777516715],[118,145,79,-0.12337295329446196],[118,146,64,-0.15779213090933064],[118,146,65,-0.15659824242610432],[118,146,66,-0.15530589174736753],[118,146,67,-0.15391504084611707],[118,146,68,-0.1524257583958355],[118,146,69,-0.15083822218560528],[118,146,70,-0.14915272154942405],[118,146,71,-0.14736965980977756],[118,146,72,-0.14548955673543995],[118,146,73,-0.14351305101357348],[118,146,74,-0.14144090273596432],[118,146,75,-0.13927399589960276],[118,146,76,-0.1370133409214649],[118,146,77,-0.13466007716753348],[118,146,78,-0.13221547549607582],[118,146,79,-0.12968094081513792],[118,147,64,-0.16402166988657563],[118,147,65,-0.16283626015542518],[118,147,66,-0.16155083636469358],[118,147,67,-0.16016537674976528],[118,147,68,-0.15867996751640878],[118,147,69,-0.1570948052592367],[118,147,70,-0.15541019939402156],[118,147,71,-0.15362657460392848],[118,147,72,-0.1517444732996287],[118,147,73,-0.1497645580933723],[118,147,74,-0.1476876142868495],[118,147,75,-0.14551455237305744],[118,147,76,-0.14324641055202036],[118,147,77,-0.14088435726040804],[118,147,78,-0.13842969371506864],[118,147,79,-0.13588385647043144],[118,148,64,-0.17013872020946974],[118,148,65,-0.1689618961553686],[118,148,66,-0.1676835299110483],[118,148,67,-0.166303615649389],[118,148,68,-0.16482225676599016],[118,148,69,-0.16323966830108505],[118,148,70,-0.16155617937497146],[118,148,71,-0.15977223563702236],[118,148,72,-0.15788840172824592],[118,148,73,-0.15590536375746378],[118,148,74,-0.1538239317909471],[118,148,75,-0.15164504235571863],[118,148,76,-0.1493697609563749],[118,148,77,-0.14699928460546896],[118,148,78,-0.14453494436747383],[118,148,79,-0.14197820791627824],[118,149,64,-0.1761400474517667],[118,149,65,-0.17497189892757847],[118,149,66,-0.17370070475550048],[118,149,67,-0.17232647471501106],[118,149,68,-0.17084932904222416],[118,149,69,-0.16926950085534798],[118,149,70,-0.1675873385933344],[118,149,71,-0.16580330846778446],[118,149,72,-0.16391799692806708],[118,149,73,-0.1619321131397361],[118,149,74,-0.15984649147607322],[118,149,75,-0.15766209402296916],[118,149,76,-0.15538001309699945],[118,149,77,-0.15300147377673035],[118,149,78,-0.15052783644727885],[118,149,79,-0.14796059935807737],[118,150,64,-0.18202252019005427],[118,150,65,-0.1808631200309414],[118,150,66,-0.17959919635509092],[118,150,67,-0.178230774211956],[118,150,68,-0.17675799032227268],[118,150,69,-0.175181095507151],[118,150,70,-0.17350045713003948],[118,150,71,-0.17171656155161863],[118,150,72,-0.1698300165975971],[118,150,73,-0.16784155403948142],[118,150,74,-0.1657520320881496],[118,150,75,-0.16356243790044944],[118,150,76,-0.16127389009866488],[118,150,77,-0.15888764130289856],[118,150,78,-0.15640508067638448],[118,150,79,-0.15382773648368642],[118,151,64,-0.1877831147836464],[118,151,65,-0.18663251888478816],[118,151,66,-0.18537594807998292],[118,151,67,-0.18401344234658745],[118,151,68,-0.18254515452779752],[118,151,69,-0.1809713527654483],[118,151,70,-0.17929242294537373],[118,151,71,-0.17750887115538672],[118,151,72,-0.1756213261558487],[118,151,73,-0.17363054186289795],[118,151,74,-0.17153739984417704],[118,151,75,-0.16934291182726458],[118,151,76,-0.16704822222066973],[118,151,77,-0.16465461064742937],[118,151,78,-0.16216349449132006],[118,151,79,-0.1595764314556508],[118,152,64,-0.1934189202082428],[118,152,65,-0.19227716762632485],[118,152,66,-0.19102801609328401],[118,152,67,-0.18967152016715216],[118,152,68,-0.18820784844546357],[118,152,69,-0.1866372860018276],[118,152,70,-0.18496023683476093],[118,152,71,-0.18317722632883437],[118,152,72,-0.18128890372810513],[118,152,73,-0.17929604462190607],[118,152,74,-0.17719955344282756],[118,152,75,-0.17500046597710328],[118,152,76,-0.17269995188725296],[118,152,77,-0.17029931724702263],[118,152,78,-0.16780000708863962],[118,152,79,-0.16520360796234246],[118,153,64,-0.19892714294353542],[118,153,65,-0.1977942560224789],[118,153,66,-0.1965525742857307],[118,153,67,-0.1952021665199125],[118,153,68,-0.19374321670313688],[118,153,69,-0.1921760264454122],[118,153,70,-0.19050101744100723],[118,153,71,-0.18871873393283967],[118,153,72,-0.18682984518885215],[118,153,73,-0.18483514799044887],[118,153,74,-0.1827355691328314],[118,153,75,-0.18053216793744165],[118,153,76,-0.17822613877636595],[118,153,77,-0.1758188136087414],[118,153,78,-0.17331166452918356],[118,153,79,-0.17070630632818784],[118,154,64,-0.2043051119148801],[118,154,65,-0.20318109643627558],[118,154,66,-0.20194691926535024],[118,154,67,-0.20060266306068353],[118,154,68,-0.1991485268019043],[118,154,69,-0.1975848282339725],[118,154,70,-0.1959120063231341],[118,154,71,-0.19413062372461254],[118,154,72,-0.19224136926199775],[118,154,73,-0.19024506041841227],[118,154,74,-0.18814264583928741],[118,154,75,-0.18593520784695716],[118,154,76,-0.183623964966929],[118,154,77,-0.18121027446586957],[118,154,78,-0.17869563490132023],[118,154,79,-0.17608168868310492],[118,155,64,-0.20955028348876348],[118,155,65,-0.20843512884747106],[118,155,66,-0.2072084754018273],[118,155,67,-0.20587041932150818],[118,155,68,-0.20442117420363604],[118,155,69,-0.20286107352097638],[118,155,70,-0.20119057308152632],[118,155,71,-0.19941025349956154],[118,155,72,-0.19752082267810267],[118,155,73,-0.1955231183028775],[118,155,74,-0.1934181103476147],[118,155,75,-0.19120690359087855],[118,155,76,-0.18889074014429852],[118,155,77,-0.18647100199223499],[118,155,78,-0.1839492135428974],[118,155,79,-0.18132704419087375],[118,156,64,-0.2146602465222004],[118,156,65,-0.21355392592758382],[118,156,66,-0.2123347999257139],[118,156,67,-0.21100297783260036],[118,156,68,-0.20955868747423279],[118,156,69,-0.2080022776387167],[118,156,70,-0.20633422053953143],[118,156,71,-0.20455511428997664],[118,156,72,-0.20266568538876617],[118,156,73,-0.20066679121684916],[118,156,74,-0.1985594225452878],[118,156,75,-0.19634470605440912],[118,156,76,-0.1940239068640791],[118,156,77,-0.19159843107514207],[118,156,78,-0.18906982832204233],[118,156,79,-0.18643979433658397],[118,157,64,-0.219632727466203],[118,157,65,-0.21853519816946176],[118,157,66,-0.21732358808262064],[118,157,67,-0.2159980192997012],[118,157,68,-0.21455873348269394],[118,157,69,-0.21300609431765316],[118,157,70,-0.21134058998165117],[118,157,71,-0.20956283562065692],[118,157,72,-0.2076735758383007],[118,157,73,-0.20567368719560175],[118,157,74,-0.20356418072149474],[118,157,75,-0.2013462044343607],[118,157,76,-0.19902104587442349],[118,157,77,-0.19659013464704522],[118,157,78,-0.19405504497694503],[118,157,79,-0.1914174982732909],[118,158,64,-0.2244655955230379],[118,158,65,-0.22337679907110064],[118,158,66,-0.22217267834211174],[118,158,67,-0.22085336783656573],[118,158,68,-0.21941912265572705],[118,158,69,-0.21787032096168946],[118,158,70,-0.21620746644804334],[118,158,71,-0.21443119082121087],[118,158,72,-0.21254225629241563],[118,158,73,-0.2105415580803579],[118,158,74,-0.2084301269244364],[118,158,75,-0.20620913160872179],[118,158,76,-0.2038798814965368],[118,158,77,-0.20144382907568603],[118,158,78,-0.19890257251435128],[118,158,79,-0.19625785822760722],[118,159,64,-0.22915686785743405],[118,159,65,-0.22807673037388054],[118,159,66,-0.22688005766145736],[118,159,67,-0.22556699625273835],[118,159,68,-0.2241378142880598],[118,159,69,-0.2225929039795458],[118,159,70,-0.22093278408549377],[118,159,71,-0.21915810239518374],[118,159,72,-0.21726963822407408],[118,159,73,-0.21526830491945925],[118,159,74,-0.21315515237642613],[118,159,75,-0.2109313695643158],[118,159,76,-0.20859828706354966],[118,159,77,-0.20615737961285574],[118,159,78,-0.20361026866691467],[118,159,79,-0.20095872496438272],[118,160,64,-0.2337047148618281],[118,160,65,-0.2326331473553005],[118,160,66,-0.2314438668043376],[118,160,67,-0.2301370313967065],[118,160,68,-0.22871292190853898],[118,160,69,-0.22717194417231124],[118,160,70,-0.2255146315549459],[118,160,71,-0.22374164744610026],[118,160,72,-0.22185378775660392],[118,160,73,-0.2198519834271221],[118,160,74,-0.2177373029468762],[118,160,75,-0.21551095488263694],[118,160,76,-0.21317429041783986],[118,160,77,-0.21072880590186693],[118,160,78,-0.20817614540950835],[118,160,79,-0.20551810331056541],[118,161,64,-0.23810746547543216],[118,161,65,-0.23704436417600827],[118,161,66,-0.23586240571428274],[118,161,67,-0.23456175955421976],[118,161,68,-0.2331427187018068],[118,161,69,-0.23160570217696907],[118,161,70,-0.22995125749537715],[118,161,71,-0.22818006316021366],[118,161,72,-0.2262929311638564],[118,161,73,-0.2242908094995597],[118,161,74,-0.2221747846829656],[118,161,75,-0.21994608428365592],[118,161,76,-0.21760607946659716],[118,161,77,-0.2151562875435239],[118,161,78,-0.21259837453427344],[118,161,79,-0.20993415773802915],[118,162,64,-0.24236361255723038],[118,162,65,-0.24130885928121248],[118,162,66,-0.24013413894294766],[118,162,67,-0.23883963190187474],[118,162,68,-0.23742564298565383],[118,162,69,-0.23589260396598877],[118,162,70,-0.23424107604412048],[118,162,71,-0.2324717523460581],[118,162,72,-0.23058546042750716],[118,162,73,-0.2285831647885742],[118,162,74,-0.22646596939807961],[118,162,75,-0.22423512022769088],[118,162,76,-0.22189200779572937],[118,162,77,-0.21943816972069285],[118,162,78,-0.21687529328450672],[118,162,79,-0.2142052180054682],[118,163,64,-0.24647181831302278],[118,163,65,-0.2454252808566163],[118,163,66,-0.2442577011333511],[118,163,67,-0.24296927001608937],[118,163,68,-0.2415603037441728],[118,163,69,-0.24003124640311557],[118,163,70,-0.23838267241375521],[118,163,71,-0.2366152890309282],[118,163,72,-0.23472993885163074],[118,163,73,-0.2327276023327436],[118,163,74,-0.23060940031815125],[118,163,75,-0.22837659657546905],[118,163,76,-0.226030600342234],[118,163,77,-0.22357296888159384],[118,163,78,-0.22100541004751795],[118,163,79,-0.2183297848594814],[118,164,64,-0.2504309197762745],[118,164,65,-0.2493924523386173],[118,164,66,-0.24823190255782945],[118,164,67,-0.2469494714372239],[118,164,68,-0.24554548621647],[118,164,69,-0.24402040285510918],[118,164,70,-0.24237480852532745],[118,164,71,-0.24060942411404673],[118,164,72,-0.23872510673429992],[118,164,73,-0.23672285224595901],[118,164,74,-0.2346037977856622],[118,164,75,-0.23236922430613804],[118,164,76,-0.23002055912478936],[118,164,77,-0.22755937848157537],[118,164,78,-0.22498741010620582],[118,164,79,-0.2223065357946098],[118,165,64,-0.2542399343429692],[118,165,65,-0.253209377978976],[118,165,66,-0.25205573471090514],[118,165,67,-0.25077921528904557],[118,165,68,-0.24938015754113163],[118,165,69,-0.2478590288596303],[118,165,70,-0.24621642869809035],[118,165,71,-0.24445309107661173],[118,165,72,-0.2425698870964048],[118,165,73,-0.24056782746350658],[118,165,74,-0.23844806502149707],[118,165,75,-0.23621189729342007],[118,165,76,-0.2338607690327672],[118,165,77,-0.23139627478355984],[118,165,78,-0.22882016144955242],[118,165,79,-0.22613433087251156],[118,166,64,-0.2578980653603339],[118,166,65,-0.2568752484638217],[118,166,66,-0.25572837595694065],[118,166,67,-0.2544576679534043],[118,166,68,-0.25306347245631156],[118,166,69,-0.2515462678491447],[118,166,70,-0.24990666539564033],[118,166,71,-0.24814541174859517],[118,166,72,-0.24626339146757037],[118,166,73,-0.24426162954556807],[118,166,74,-0.242141293944518],[118,166,75,-0.23990369813978185],[118,166,76,-0.23755030367353192],[118,166,77,-0.235082722717041],[118,166,78,-0.23250272064190614],[118,166,79,-0.22981221860015655],[118,167,64,-0.2614047077695931],[118,167,65,-0.2603894465871518],[118,167,66,-0.2592491972327309],[118,167,67,-0.2579841888002802],[118,167,68,-0.25659477905560324],[118,167,69,-0.2550814569310008],[118,167,70,-0.25344484502860165],[118,167,71,-0.25168570213245134],[118,167,72,-0.24980492572931856],[118,167,73,-0.24780355453829506],[118,167,74,-0.24568277104902492],[118,167,75,-0.24344390406877292],[118,167,76,-0.24108843127818436],[118,167,77,-0.23861798179578164],[118,167,78,-0.23603433875120983],[118,167,79,-0.2333394418671897],[118,168,64,-0.2647594538025668],[118,168,65,-0.2637515529786387],[118,168,66,-0.26261776780485246],[118,168,67,-0.2613583359730126],[118,168,68,-0.2599736245995038],[118,168,69,-0.258464132723497],[118,168,70,-0.25683049381367584],[118,168,71,-0.25507347828354665],[118,168,72,-0.2531939960152959],[118,168,73,-0.25119309889226926],[118,168,74,-0.24907198333990832],[118,168,75,-0.2468319928753525],[118,168,76,-0.24447462066556647],[118,168,77,-0.24200151209402632],[118,168,78,-0.23941446733598593],[118,168,79,-0.23671544394228095],[118,169,64,-0.26796209873219823],[118,169,65,-0.26696135188583614],[118,169,66,-0.2658338610818548],[118,169,67,-0.2645798722288045],[118,169,68,-0.2631997613825634],[118,169,69,-0.26169403724802465],[118,169,70,-0.2600633436891433],[118,169,71,-0.2583084622474009],[118,169,72,-0.25643031466865407],[118,169,73,-0.2544299654384413],[118,169,74,-0.25230862432558343],[118,169,75,-0.25006764893428834],[118,169,76,-0.24770854726461322],[118,169,77,-0.245232980281324],[118,169,78,-0.24264276449117306],[118,169,79,-0.2399398745285476],[118,170,64,-0.27101264667710934],[118,170,65,-0.27001883701087026],[118,170,66,-0.2688974604813883],[118,170,67,-0.26764877083458805],[118,170,68,-0.2662731526563077],[118,170,69,-0.2647711238773789],[118,170,70,-0.2631433382869104],[118,170,71,-0.26139058805383253],[118,170,72,-0.2595138062566731],[118,170,73,-0.2575140694216339],[118,170,74,-0.25539260006880327],[118,170,75,-0.2531507692667213],[118,170,76,-0.2507900991951427],[118,170,77,-0.24831226571604526],[118,170,78,-0.24571910095289817],[118,170,79,-0.24301259587814417],[118,171,64,-0.27391131645998545],[118,171,65,-0.27292421740143025],[118,171,66,-0.2718087653520751],[118,171,67,-0.2705652215180654],[118,171,68,-0.2691939786077485],[118,171,69,-0.26769556334005107],[118,171,70,-0.2660706389609081],[118,171,71,-0.26432000776781206],[118,171,72,-0.26244461364243865],[118,171,73,-0.260445544591427],[118,171,74,-0.258324035295154],[118,171,75,-0.25608146966470446],[118,171,76,-0.25371938340689704],[118,171,77,-0.25123946659740704],[118,171,78,-0.24864356626199824],[118,171,79,-0.2459336889658259],[118,172,64,-0.27665854751991215],[118,172,65,-0.27567792339617525],[118,172,66,-0.27456819695024404],[118,172,67,-0.27332963647403974],[118,172,68,-0.2719626423935927],[118,172,69,-0.2704677497806115],[118,172,70,-0.2688456308719662],[118,172,71,-0.2670970975971527],[118,172,72,-0.2652231041136891],[118,172,73,-0.26322474935053486],[118,172,74,-0.26110327955935264],[118,172,75,-0.2588600908738363],[118,172,76,-0.25649673187694955],[118,172,77,-0.2540149061761211],[118,172,78,-0.25141647498641084],[118,172,79,-0.24870345972160612],[118,173,64,-0.2792550058787102],[118,173,65,-0.27828061262460235],[118,173,66,-0.277176404471573],[118,173,67,-0.2759426564260863],[118,173,68,-0.2745797762302038],[118,173,69,-0.2730883068762402],[118,173,70,-0.27146892912920206],[118,173,71,-0.2697224640570691],[118,173,72,-0.26784987556888407],[118,173,73,-0.2658522729607251],[118,173,74,-0.2637309134693935],[118,173,75,-0.2614872048340322],[118,173,76,-0.2591227078655246],[118,173,77,-0.2566391390237158],[118,173,78,-0.2540383730024749],[118,173,79,-0.2513224453225513],[118,174,64,-0.2817015901611297],[118,174,65,-0.2807331760612388],[118,174,66,-0.2796342711375034],[118,174,67,-0.27840515674341915],[118,174,68,-0.27704624753916984],[118,174,69,-0.275558094009258],[118,174,70,-0.27394138498778964],[118,174,71,-0.2721969501914815],[118,174,72,-0.27032576276034737],[118,174,73,-0.2683289418061431],[118,174,74,-0.26620775496840643],[118,174,75,-0.2639636209782964],[118,174,76,-0.2615981122300921],[118,174,77,-0.25911295736038864],[118,174,78,-0.25651004383500753],[118,174,79,-0.2537914205435796],[118,175,64,-0.2839994376689775],[118,175,65,-0.2830367441342342],[118,175,66,-0.28194292033650215],[118,175,67,-0.2807182536130397],[118,175,68,-0.2793631651485652],[118,175,69,-0.2778782124957394],[118,175,70,-0.2762640921031886],[118,175,71,-0.2745216418511315],[118,175,72,-0.27265184359456873],[118,175,73,-0.2706558257141146],[118,175,74,-0.26853486567430174],[118,175,75,-0.26629039258957365],[118,175,76,-0.2639239897978163],[118,175,77,-0.26143739744146866],[118,175,78,-0.2588325150562323],[118,175,79,-0.2561114041673358],[118,176,64,-0.2861499305092461],[118,176,65,-0.28519269288841764],[118,176,66,-0.28410372182022947],[118,176,67,-0.28288331026721747],[118,176,68,-0.2815318855499551],[118,176,69,-0.28005001187026923],[118,176,70,-0.278438392841887],[118,176,71,-0.2766978740285735],[118,176,72,-0.2748294454897249],[118,176,73,-0.27283424433349046],[118,176,74,-0.27071355727726243],[118,176,75,-0.2684688232157383],[118,176,76,-0.2661016357964149],[118,176,77,-0.2636137460025516],[118,176,78,-0.26100706474362123],[118,176,79,-0.2582836654532056],[118,177,64,-0.28815470177610325],[118,177,65,-0.2872026502026793],[118,177,66,-0.28611829795448795],[118,177,67,-0.28490194326617946],[118,177,68,-0.2835540192110182],[118,177,69,-0.2820750962267061],[118,177,70,-0.28046588464853295],[118,177,71,-0.2787272372499138],[118,177,72,-0.27686015179028145],[118,177,73,-0.2748657735704012],[118,177,74,-0.272745397994955],[118,177,75,-0.27050047314258996],[118,177,76,-0.26813260234329983],[118,177,77,-0.2656435467631715],[118,177,78,-0.26303522799651524],[118,177,79,-0.26030973066533736],[118,178,64,-0.29001564178682093],[118,178,65,-0.28906850206175716],[118,178,66,-0.2879885300250149],[118,178,67,-0.2867760288360749],[118,178,68,-0.28543143694385886],[118,178,69,-0.2839553306150293],[118,178,70,-0.28234842646951974],[118,178,71,-0.28061158402335973],[118,178,72,-0.27874580823875383],[118,178,73,-0.2767522520814911],[118,178,74,-0.27463221908552615],[118,178,75,-0.2723871659249282],[118,178,76,-0.27001870499307024],[118,178,77,-0.2675286069890823],[118,178,78,-0.26491880351159736],[118,178,79,-0.26219138965974065],[118,179,64,-0.29173490437169636],[118,179,65,-0.2907923988824821],[118,179,66,-0.28971656459818385],[118,179,67,-0.28850770926227687],[118,179,68,-0.28716627632906533],[118,179,69,-0.28569284749432544],[118,179,70,-0.284088145233092],[118,179,71,-0.28235303534464906],[118,179,72,-0.2804885295046847],[118,179,73,-0.2784957878246924],[118,179,74,-0.27637612141844636],[118,179,75,-0.27413099497576476],[118,179,76,-0.2717620293434171],[118,179,77,-0.2692710041132105],[118,179,78,-0.2666598602172784],[118,179,79,-0.26393070253052375],[118,180,64,-0.2933149132178331],[118,180,65,-0.29237676189434525],[118,180,66,-0.29130481993647384],[118,180,67,-0.29009939933787887],[118,180,68,-0.28876094819537357],[118,180,69,-0.28729005324177637],[118,180,70,-0.2856874423858249],[118,180,71,-0.28395398725921006],[118,180,72,-0.2820907057706964],[118,180,73,-0.2800987646673999],[118,180,74,-0.2779794821030629],[118,180,75,-0.27573433021353244],[118,180,76,-0.27336493769929915],[118,180,77,-0.2708730924151356],[118,180,78,-0.2682607439668533],[118,180,79,-0.2655300063151287],[118,181,64,-0.2947583682668762],[118,181,65,-0.2938242895744848],[118,181,66,-0.292755992468806],[118,181,67,-0.2915537928674904],[118,181,68,-0.290218143155043],[118,181,69,-0.28874963471774784],[118,181,70,-0.28714900048558],[118,181,71,-0.28541711748116005],[118,181,72,-0.2835550093757191],[118,181,73,-0.2815638490521465],[118,181,74,-0.2794449611749582],[118,181,75,-0.2771998247673927],[118,181,76,-0.27483007579549135],[118,181,77,-0.27233750975920257],[118,181,78,-0.26972408429052774],[118,181,79,-0.2669919217586646],[118,182,64,-0.29606825216671706],[118,182,65,-0.29513796413710847],[118,182,66,-0.2940730633157629],[118,182,67,-0.2928738692263423],[118,182,68,-0.29154083819495125],[118,182,69,-0.2900745658869953],[118,182,70,-0.28847578985095834],[118,182,71,-0.2867453920691534],[118,182,72,-0.28488440151541305],[118,182,73,-0.2828939967197942],[118,182,74,-0.2807755083401329],[118,182,75,-0.27853042174065823],[118,182,76,-0.27616037957752115],[118,182,77,-0.273667184391276],[118,182,78,-0.27105280120633557],[118,182,79,-0.26831936013735336],[118,183,64,-0.2972478367770751],[118,183,65,-0.29632105807725695],[118,183,66,-0.2952593048695923],[118,183,67,-0.294062899974606],[118,183,68,-0.2927323033233151],[118,183,69,-0.29126811449588563],[118,183,70,-0.2896710752671404],[118,183,71,-0.28794207215898093],[118,183,72,-0.28608213899968227],[118,183,73,-0.2840924594901415],[118,183,74,-0.2819743697769108],[118,183,75,-0.27972936103222723],[118,183,76,-0.27735908204089277],[118,183,77,-0.27486534179404587],[118,183,78,-0.27225011208984107],[118,183,79,-0.2695155301409925],[118,184,64,-0.298300689729041],[118,184,65,-0.2973771407689927],[118,184,66,-0.29631828742908806],[118,184,67,-0.2951244555270184],[118,184,68,-0.29379610827212854],[118,184,69,-0.29233384880573143],[118,184,70,-0.2907384227482168],[118,184,71,-0.2890107207530136],[118,184,72,-0.28715178106737316],[118,184,73,-0.28516279210004103],[118,184,74,-0.2830450949956629],[118,184,75,-0.28080018621612546],[118,184,76,-0.2784297201286908],[118,184,77,-0.27593551160096663],[118,184,78,-0.2733195386027234],[118,184,79,-0.2705839448145224],[118,185,64,-0.29923068103854955],[118,185,65,-0.2983100851179843],[118,185,66,-0.29725388588931034],[118,185,67,-0.29606241187777627],[118,185,68,-0.29473612925527903],[118,185,69,-0.2932756443821969],[118,185,70,-0.2916817063559647],[118,185,71,-0.2899552095664556],[118,185,72,-0.28809719625812324],[118,185,73,-0.28610885909898987],[118,185,74,-0.2839915437563103],[118,185,75,-0.28174675147912076],[118,185,76,-0.2793761416875322],[118,185,77,-0.27688153456880193],[118,185,78,-0.27426491368020567],[118,185,79,-0.27152842855866577],[118,186,64,-0.30004198977378627],[118,186,65,-0.2991240742684895],[118,186,66,-0.29807028648615075],[118,186,67,-0.29688095738070364],[118,186,68,-0.29555655578235107],[118,186,69,-0.2940976909407822],[118,186,70,-0.2925051150750829],[118,186,71,-0.290779725930407],[118,186,72,-0.2889225693413626],[118,186,73,-0.28693484180219686],[118,186,74,-0.2848178930436104],[118,186,75,-0.2825732286164111],[118,186,76,-0.28020251248186423],[118,186,77,-0.2777075696087762],[118,186,78,-0.27509038857733203],[118,186,79,-0.27235312418964086],[118,187,64,-0.3007391107765054],[118,187,65,-0.29982360836471345],[118,187,66,-0.29877199359572126],[118,187,67,-0.29758459958466976],[118,187,68,-0.2962618975280893],[118,187,69,-0.29480449924836527],[118,187,70,-0.2932131597448542],[118,187,71,-0.2914887797517203],[118,187,72,-0.28963240830244785],[118,187,73,-0.287645245301106],[118,187,74,-0.2855286441002082],[118,187,75,-0.2832841140853639],[118,187,76,-0.28091332326658947],[118,187,77,-0.2784181008763099],[118,187,78,-0.2758004399740729],[118,187,79,-0.2730625000579303],[118,188,64,-0.3013268614373126],[118,188,65,-0.3004135113665968],[118,188,66,-0.29936383658862],[118,188,67,-0.2981781721243174],[118,188,68,-0.29685699125758425],[118,188,69,-0.29540090808085395],[118,188,70,-0.29381068004729705],[118,188,71,-0.29208721052969944],[118,188,72,-0.29023155138598045],[118,188,73,-0.2882449055314311],[118,188,74,-0.2861286295175045],[118,188,75,-0.28388423611736835],[118,188,76,-0.2815133969180761],[118,188,77,-0.27901794491939513],[118,188,78,-0.2763998771393097],[118,188,79,-0.2736613572261565],[118,189,64,-0.30181038852485476],[118,189,65,-0.30089893791997535],[118,189,66,-0.2998509767390136],[118,189,67,-0.2986668416660341],[118,189,68,-0.29734700780710943],[118,189,69,-0.2958920912368874],[118,189,70,-0.2943028515517436],[118,189,71,-0.29258019442958394],[118,189,72,-0.29072517419625377],[118,189,73,-0.288738996398638],[118,189,74,-0.28662302038427967],[118,189,75,-0.28437876188773015],[118,189,76,-0.28200789562348605],[118,189,77,-0.27951225788555145],[118,189,78,-0.27689384915364446],[118,189,79,-0.27415483670600327],[118,190,64,-0.3021951750689491],[118,190,65,-0.3012853802811454],[118,190,66,-0.30023891418857274],[118,190,67,-0.29905611490920225],[118,190,68,-0.2977374591206535],[118,190,69,-0.2962835646076246],[118,190,70,-0.29469519281587875],[118,190,71,-0.29297325141285446],[118,190,72,-0.2911187968548582],[118,190,73,-0.28913303696091364],[118,190,74,-0.2870173334931102],[118,190,75,-0.2847732047436504],[118,190,76,-0.28240232812845967],[118,190,77,-0.2799065427873936],[118,190,78,-0.27728785219106145],[118,190,79,-0.27454842675422286],[118,191,64,-0.30248704729764775],[118,191,65,-0.30157867529582627],[118,191,66,-0.3005334949652534],[118,191,67,-0.2993518456427312],[118,191,68,-0.29803420534214065],[118,191,69,-0.29658119330261234],[118,191,70,-0.29499357254323255],[118,191,71,-0.2932722524243502],[118,191,72,-0.29141829121544216],[118,191,73,-0.2894328986696134],[118,191,74,-0.2873174386045725],[118,191,75,-0.28507343149028286],[118,191,76,-0.28270255704315495],[118,191,77,-0.28020665682681034],[118,191,78,-0.2775877368594406],[118,191,79,-0.2748479702277179],[118,192,64,-0.3026921816282272],[118,192,65,-0.30178501143251657],[118,192,66,-0.3007409180569145],[118,192,67,-0.29956024185684826],[118,192,68,-0.29824346196332363],[118,192,69,-0.2967911988317232],[118,192,70,-0.29520421679712416],[118,192,71,-0.29348342663619253],[118,192,72,-0.2916298881356204],[118,192,73,-0.28964481266717823],[118,192,74,-0.2875295657692214],[118,192,75,-0.2852856697348558],[118,192,76,-0.28291480620662335],[118,192,77,-0.2804188187777408],[118,192,78,-0.27779971559991556],[118,192,79,-0.27505967199769077],[118,193,64,-0.302817111712117],[118,193,65,-0.30191093587024964],[118,193,66,-0.30086774253978754],[118,193,67,-0.2996878729101733],[118,193,68,-0.2983718070273692],[118,193,69,-0.29692016634317675],[118,193,70,-0.295333716271059],[118,193,71,-0.2936133687485246],[118,193,72,-0.29176018480603894],[118,193,73,-0.28977537714253465],[118,193,74,-0.2876603127073607],[118,193,75,-0.28541651528887557],[118,193,76,-0.283045668109542],[118,193,77,-0.28054961642756393],[118,193,78,-0.27793037014508004],[118,193,79,-0.2751901064228738],[118,194,64,-0.30286873553375404],[118,194,65,-0.3019633616407441],[118,194,66,-0.3009208947617815],[118,194,67,-0.29974167675205676],[118,194,68,-0.29842618838812196],[118,194,69,-0.2969750519176324],[118,194,70,-0.2953890336155772],[118,194,71,-0.29366904634705826],[118,194,72,-0.2918161521365873],[118,194,73,-0.289831564743965],[118,194,74,-0.28771665224659027],[118,194,75,-0.28547293962839815],[118,194,76,-0.2831021113752893],[118,194,77,-0.2806060140770871],[118,194,78,-0.27798665903604014],[118,194,79,-0.27524622488182815],[118,195,64,-0.3028543225633781],[118,195,65,-0.30194957482495655],[118,195,66,-0.30090767558064335],[118,195,67,-0.29972896720020337],[118,195,68,-0.2984139310250612],[118,195,69,-0.2969631899183699],[118,195,70,-0.29537751082156183],[118,195,71,-0.2936578073174404],[118,195,72,-0.29180514219977305],[118,195,73,-0.28982073004946485],[118,195,74,-0.2877059398171464],[118,195,75,-0.28546229741238505],[118,195,76,-0.2830914882993759],[118,195,77,-0.2805953600991504],[118,195,78,-0.27797592519832226],[118,195,79,-0.27523536336432586],[118,196,64,-0.30278152096374233],[118,196,65,-0.30187724180401665],[118,196,66,-0.300835767656941],[118,196,67,-0.2996574412735463],[118,196,68,-0.29834274441391995],[118,196,69,-0.296892300397524],[118,196,70,-0.2953068766599838],[118,196,71,-0.293587387316412],[118,196,72,-0.29173489573122957],[118,196,73,-0.2897506170945552],[118,196,74,-0.2876359210050061],[118,196,75,-0.28539233405911246],[118,196,76,-0.283021542447206],[118,196,77,-0.2805253945558187],[118,196,78,-0.27790590357661094],[118,196,79,-0.2751652501217867],[118,197,64,-0.3026583648507766],[118,197,65,-0.301754416564578],[118,197,66,-0.30071324280191436],[118,197,67,-0.2995351865804169],[118,197,68,-0.2982207299530141],[118,197,69,-0.296770496558425],[118,197,70,-0.2951852541781189],[118,197,71,-0.293465917299802],[118,197,72,-0.29161354968739917],[118,197,73,-0.2896293669575978],[118,197,74,-0.28751473916279946],[118,197,75,-0.2852711933806781],[118,197,76,-0.28290041631020846],[118,197,77,-0.28040425687420045],[118,197,78,-0.2777847288283566],[118,197,79,-0.27504401337681217],[118,198,64,-0.3024932816081659],[118,198,65,-0.301589548058551],[118,198,66,-0.3005485693801534],[118,198,67,-0.29937068876197337],[118,198,68,-0.2980563884452361],[118,198,69,-0.2966062922739954],[118,198,70,-0.29502116825220515],[118,198,71,-0.2933019311073145],[118,198,72,-0.29144964486035063],[118,198,73,-0.28946552540256654],[118,198,74,-0.28735094307848774],[118,198,75,-0.2851074252755662],[118,198,76,-0.28273665902030076],[118,198,77,-0.28024049358085745],[118,198,78,-0.27762094307621343],[118,198,79,-0.2748801890917787],[118,199,64,-0.3022950992558705],[118,199,65,-0.30139148761723933],[118,199,66,-0.30035061976712374],[118,199,67,-0.29917283899090497],[118,199,68,-0.2978586276357392],[118,199,69,-0.29640860966122873],[118,199,70,-0.29482355319655484],[118,199,71,-0.2931043731041334],[118,199,72,-0.29125213354975743],[118,199,73,-0.2892680505793027],[118,199,74,-0.28715349470182994],[118,199,75,-0.284909993479292],[118,199,76,-0.282539234122706],[118,199,77,-0.280043066094826],[118,199,78,-0.27742350371933366],[118,199,79,-0.27468272879650635],[118,200,64,-0.3020730538725743],[118,200,65,-0.3011694964198718],[118,200,66,-0.3001286778615403],[118,200,67,-0.29895094152540946],[118,200,68,-0.2976367698053062],[118,200,69,-0.2961867867117518],[118,200,70,-0.2946017604291242],[118,200,71,-0.29288260587934056],[118,200,72,-0.29103038729202735],[118,200,73,-0.28904632078124837],[118,200,74,-0.2869317769286356],[118,200,75,-0.2846882833731179],[118,200,76,-0.28231752740711724],[118,200,77,-0.2798213585792433],[118,200,78,-0.277201791303507],[118,200,79,-0.274461007475008],[118,201,64,-0.3018367970720627],[118,201,65,-0.30093325301652785],[118,201,66,-0.2998924466525752],[118,201,67,-0.2987147213184407],[118,201,68,-0.2974005594193956],[118,201,69,-0.2959505849784513],[118,201,70,-0.2943655661935263],[118,201,71,-0.29264641800113844],[118,201,72,-0.2907942046465788],[118,201,73,-0.28881014226064927],[118,201,74,-0.2866956014427954],[118,201,75,-0.28445210985084435],[118,201,76,-0.2820813547972072],[118,201,77,-0.279585185851576],[118,201,78,-0.2769656174501448],[118,201,79,-0.27422483151130295],[118,202,64,-0.3011140218550571],[118,202,65,-0.3002104753944247],[118,202,66,-0.2991696666952063],[118,202,67,-0.29799193909601107],[118,202,68,-0.29667777500239956],[118,202,69,-0.29522779843758473],[118,202,70,-0.29364277759959934],[118,202,71,-0.2919236274249829],[118,202,72,-0.2900714121589547],[118,202,73,-0.28808734793214796],[118,202,74,-0.2859728053437409],[118,202,75,-0.2837293120511919],[118,202,76,-0.2813585553664383],[118,202,77,-0.27886238485859227],[118,202,78,-0.27624281496315894],[118,202,79,-0.2735020275977261],[118,203,64,-0.30110963933772694],[118,203,65,-0.3002060437976297],[118,203,66,-0.2991651878002224],[118,203,67,-0.2979874146862552],[118,203,68,-0.2966732068614628],[118,203,69,-0.29522318834722117],[118,203,70,-0.29363812733766603],[118,203,71,-0.29191893876333264],[118,203,72,-0.29006668686128245],[118,203,73,-0.2880825877517881],[118,203,74,-0.285968012021417],[118,203,75,-0.2837244873127174],[118,203,76,-0.2813537009203688],[118,203,77,-0.2788575023938289],[118,203,78,-0.27623790614650146],[118,203,79,-0.2734970940713769],[118,204,64,-0.3010945312334863],[118,204,65,-0.3001907664989254],[118,204,66,-0.299149747447749],[118,204,67,-0.29797181742808776],[118,204,68,-0.2966574588462789],[118,204,69,-0.2952072957173639],[118,204,70,-0.2936220962220435],[118,204,71,-0.29190277527015596],[118,204,72,-0.2900503970706385],[118,204,73,-0.28806617770804754],[118,204,74,-0.28595148772547596],[118,204,75,-0.2837078547140721],[118,204,76,-0.2813369659090219],[118,204,77,-0.2788406707920258],[118,204,78,-0.2762209837002968],[118,204,79,-0.2734800864420299],[118,205,64,-0.3008215966087008],[118,205,65,-0.29991747223416565],[118,205,66,-0.2988761065909641],[118,205,67,-0.2976978430433016],[118,205,68,-0.29638316399918285],[118,205,69,-0.2949326934605636],[118,205,70,-0.29334719957996214],[118,205,71,-0.29162759722359044],[118,205,72,-0.289774950540965],[118,205,73,-0.28779047554107595],[118,205,74,-0.28567554267495077],[118,205,75,-0.28343167942481595],[118,205,76,-0.28106057289972086],[118,205,77,-0.27856407243765424],[118,205,78,-0.27594419221417876],[118,205,79,-0.27320311385753493],[118,206,64,-0.3005257325583085],[118,206,65,-0.2996209903067999],[118,206,66,-0.29857902919683776],[118,206,67,-0.29740019262080175],[118,206,68,-0.29608496299010834],[118,206,69,-0.2946339642847733],[118,206,70,-0.2930479646094295],[118,206,71,-0.29132787875585975],[118,206,72,-0.2894747707720071],[118,206,73,-0.287489856537538],[118,206,74,-0.28537450634579586],[118,206,75,-0.28313024749235083],[118,206,76,-0.28075876687000534],[118,206,77,-0.2782619135702902],[118,206,78,-0.2756417014914745],[118,206,79,-0.27290031195303954],[118,207,64,-0.3002012876329744],[118,207,65,-0.29929560482440076],[118,207,66,-0.2982527372606998],[118,207,67,-0.2970730283779963],[118,207,68,-0.29575696059374845],[118,207,69,-0.2943051578554112],[118,207,70,-0.2927183881955482],[118,207,71,-0.2909975662934531],[118,207,72,-0.28914375604324327],[118,207,73,-0.28715817312849834],[118,207,74,-0.2850421876032865],[118,207,75,-0.28279732647977696],[118,207,76,-0.28042527632230585],[118,207,77,-0.2779278858479245],[118,207,78,-0.27530716853345594],[118,207,79,-0.27256530522901035],[118,208,64,-0.2998429153010611],[118,208,65,-0.2989359079215568],[118,208,66,-0.2978917637992363],[118,208,67,-0.2967108264330547],[118,208,68,-0.2953935782501892],[118,208,69,-0.2939406431534335],[118,208,70,-0.2923527890750336],[118,208,71,-0.29063093053702205],[118,208,72,-0.2887761312180177],[118,208,73,-0.28678960652656293],[118,208,74,-0.28467272618083717],[118,208,75,-0.28242701679495097],[118,208,76,-0.28005416447168396],[118,208,77,-0.27755601740169633],[118,208,78,-0.2749345884692409],[118,208,79,-0.27219205786432543],[118,209,64,-0.2994455673982629],[118,209,65,-0.2985367931488532],[118,209,66,-0.2974909461811094],[118,209,67,-0.29630837007945054],[118,209,68,-0.29498954728565274],[118,209,69,-0.2935351016445483],[118,209,70,-0.29194580095615474],[118,209,71,-0.29022255953429144],[118,209,72,-0.2883664407716494],[118,209,73,-0.2863786597113881],[118,209,74,-0.2842605856250967],[118,209,75,-0.28201374459732587],[118,209,76,-0.2796398221165497],[118,209,77,-0.277140665672592],[118,209,78,-0.2745182873605414],[118,209,79,-0.2717748664911044],[118,210,64,-0.2990044876342277],[118,210,65,-0.2980934489193192],[118,210,66,-0.29704541951550156],[118,210,67,-0.29586074311887],[118,210,68,-0.2945399021920303],[118,210,69,-0.29308352050762154],[118,210,70,-0.2914923656982532],[118,210,71,-0.2897673518129158],[118,210,72,-0.28790954187983175],[118,210,73,-0.28592015047581487],[118,210,74,-0.2838005463019845],[118,210,75,-0.2815522547660312],[118,210,76,-0.2791769605709007],[118,210,77,-0.27667651030992824],[118,210,78,-0.27405291506844376],[118,210,79,-0.2713083530318039],[118,211,64,-0.29851520515618823],[118,211,65,-0.2976013520123634],[118,211,66,-0.2965506100986055],[118,211,67,-0.29536332325250436],[118,211,68,-0.2940399739652194],[118,211,69,-0.2925811859222923],[118,211,70,-0.2909877265508558],[118,211,71,-0.28926050957329796],[118,211,72,-0.28740059756734726],[118,211,73,-0.2854092045326514],[118,211,74,-0.28328769846368773],[118,211,75,-0.2810376039292114],[118,211,76,-0.27866060465810205],[118,211,77,-0.2761585461316406],[118,211,78,-0.27353343818224274],[118,211,79,-0.2707874575985979],[118,212,64,-0.29797352816959766],[118,212,65,-0.29705626113518635],[118,212,66,-0.29600222891805084],[118,212,67,-0.2948117755307209],[118,212,68,-0.2934853835022615],[118,212,69,-0.29202367641579174],[118,212,70,-0.29042742145237865],[118,212,71,-0.2886975319413638],[118,212,72,-0.28683506991708874],[118,212,73,-0.28484124868209115],[118,212,74,-0.2827174353766123],[118,212,75,-0.2804651535546181],[118,212,76,-0.2780860857661974],[118,212,77,-0.275582076146369],[118,212,78,-0.27295513301032126],[118,212,79,-0.27020743145503723],[118,213,64,-0.2973755376157503],[118,213,65,-0.2964542105416582],[118,213,66,-0.29539626521525375],[118,213,67,-0.2942020458610961],[118,213,68,-0.2928720350572638],[118,213,69,-0.29140685626894913],[118,213,70,-0.28980727638840187],[118,213,71,-0.28807420828127983],[118,213,72,-0.28620871333937026],[118,213,73,-0.28421200403975755],[118,213,74,-0.28208544651027334],[118,213,75,-0.27983056310143617],[118,213,76,-0.27744903496473994],[118,213,77,-0.27494270463732584],[118,213,78,-0.2723135786330598],[118,213,79,-0.2695638300399693],[118,214,64,-0.2967175809064182],[118,214,65,-0.29579150370868834],[118,214,66,-0.294728980105716],[118,214,67,-0.2935303545748382],[118,214,68,-0.2921961097561325],[118,214,69,-0.29072686898141376],[118,214,70,-0.2891233988095472],[118,214,71,-0.2873866115681373],[118,214,72,-0.28551756790155813],[118,214,73,-0.28351747932539717],[118,214,74,-0.28138771078714986],[118,214,75,-0.27912978323337545],[118,214,76,-0.2767453761831662],[118,214,77,-0.27423633030797356],[118,214,78,-0.27160465001780487],[118,214,79,-0.2688525060537508],[118,215,64,-0.29599626571547866],[118,215,65,-0.29506470707006116],[118,215,66,-0.2939969002572511],[118,215,67,-0.292793190051577],[118,215,68,-0.2914540591700949],[118,215,69,-0.2899801307960689],[118,215,70,-0.288372171108931],[118,215,71,-0.2866310918205818],[118,215,72,-0.28475795271799553],[118,215,73,-0.28275396421220167],[118,215,74,-0.2806204898934844],[118,215,75,-0.27835904909300313],[118,215,76,-0.27597131945069375],[118,215,77,-0.2734591394894881],[118,215,78,-0.27082451119587014],[118,215,79,-0.26806960260672474],[118,216,64,-0.2952084538275527],[118,216,65,-0.2942706438077628],[118,216,66,-0.2931968116261572],[118,216,67,-0.29198730240254067],[118,216,68,-0.2906425989480298],[118,216,69,-0.2891633242826577],[118,216,70,-0.2875502441592189],[118,216,71,-0.2858042695934119],[118,216,72,-0.2839264594002452],[118,216,73,-0.28191802273677935],[118,216,74,-0.2797803216510446],[118,216,75,-0.2775148736373376],[118,216,76,-0.27512335419776035],[118,216,77,-0.2726075994100311],[118,216,78,-0.269969608501596],[118,216,79,-0.26721154642998723],[118,217,64,-0.29435125504362614],[118,217,65,-0.2934063877007642],[118,217,66,-0.29232575325130516],[118,217,67,-0.2911096972120877],[118,217,68,-0.2897587025075752],[118,217,69,-0.28827339198059043],[118,217,70,-0.28665453090924287],[118,217,71,-0.28490302953010604],[118,217,72,-0.28301994556761323],[118,217,73,-0.2810064867697396],[118,217,74,-0.2788640134498157],[118,217,75,-0.27659404103467133],[118,217,76,-0.27419824261897385],[118,217,77,-0.2716784515257955],[118,217,78,-0.26903666387342895],[118,217,79,-0.2662750411484076],[118,218,64,-0.293422021143686],[118,218,65,-0.2924692570312971],[118,218,66,-0.2913810111061803],[118,218,67,-0.29015762933763245],[118,218,68,-0.288799594785052],[118,218,69,-0.28730753010097054],[118,218,70,-0.2856822000402248],[118,218,71,-0.2839245139753269],[118,218,72,-0.28203552841799717],[118,218,73,-0.2800164495469355],[118,218,74,-0.2778686357416654],[118,218,75,-0.27559360012266043],[118,218,76,-0.2731930130976108],[118,218,77,-0.2706687049138642],[118,218,78,-0.2680226682170649],[118,218,79,-0.26525706061594334],[118,219,64,-0.2924183399063617],[118,219,65,-0.29145680854861444],[118,219,66,-0.290360112008863],[118,219,67,-0.28912859676794966],[118,219,68,-0.28776274604418717],[118,219,69,-0.2862631822878243],[118,219,70,-0.28463066968159056],[118,219,71,-0.28286611664738026],[118,219,72,-0.2809705783590417],[118,219,73,-0.27894525926134417],[118,219,74,-0.2767915155949602],[118,219,75,-0.2745108579276705],[118,219,76,-0.27210495369165],[118,219,77,-0.26957562972686977],[118,219,78,-0.26692487483063887],[118,219,79,-0.26415484231323516],[118,220,64,-0.29133802918554264],[118,220,65,-0.2903668314901994],[118,220,66,-0.2892608175899206],[118,220,67,-0.2880203345398298],[118,220,68,-0.2866458657436102],[118,220,69,-0.28513803343850763],[118,220,70,-0.2834976011863435],[118,220,71,-0.28172547637060463],[118,220,72,-0.2798227126995715],[118,220,73,-0.27779051271556],[118,220,74,-0.2756302303101118],[118,220,75,-0.2733433732453433],[118,220,76,-0.27093160568131014],[118,220,77,-0.26839675070942215],[118,220,78,-0.2657407928919322],[118,220,79,-0.2629658808074504],[118,221,64,-0.29017913104401827],[118,221,65,-0.2891973416604764],[118,221,66,-0.28808111831825634],[118,221,67,-0.2868308087131324],[118,221,68,-0.28544689646317034],[118,221,69,-0.28393000358333664],[118,221,70,-0.2822808929660501],[118,221,71,-0.28050047086773755],[118,221,72,-0.2785897894013539],[118,221,73,-0.27655004903494695],[118,221,74,-0.2743826010960959],[118,221,75,-0.2720889502824392],[118,221,76,-0.26967075717814415],[118,221,77,-0.2671298407763558],[118,221,78,-0.26446818100764813],[118,221,79,-0.2616879212744281],[118,222,64,-0.288939905944122],[118,222,65,-0.2879465755670044],[118,222,66,-0.28681922758489997],[118,222,67,-0.2855582104042218],[118,222,68,-0.28416400788905505],[118,222,69,-0.28263724182442307],[118,222,70,-0.2809786743854157],[118,222,71,-0.27918921061224167],[118,222,72,-0.27726990089117],[118,222,73,-0.2752219434414336],[118,222,74,-0.2730466868079302],[118,222,75,-0.2707456323599339],[118,222,76,-0.26832043679566764],[118,222,77,-0.2657729146527785],[118,222,78,-0.2631050408247363],[118,222,79,-0.2603189530831038],[118,223,64,-0.2876188269953468],[118,223,65,-0.286612984614114],[118,223,66,-0.2854735758447019],[118,223,67,-0.2842009498777429],[118,223,68,-0.28279559085767403],[118,223,69,-0.28125812033368025],[118,223,70,-0.2795892997164139],[118,223,71,-0.2777900327405519],[118,223,72,-0.2758613679331561],[118,223,73,-0.27380450108791],[118,223,74,-0.2716207777450691],[118,223,75,-0.2693116956773305],[118,223,76,-0.2668789073814849],[118,223,77,-0.2643242225758806],[118,223,78,-0.2616496107037254],[118,223,79,-0.25885720344217655],[118,224,64,-0.2862145742589871],[118,224,65,-0.2851952293540523],[118,224,66,-0.2840428048159923],[118,224,67,-0.2827576506968065],[118,224,68,-0.2813402514583714],[118,224,69,-0.27979122841005855],[118,224,70,-0.2781113421520347],[118,224,71,-0.2763014950243077],[118,224,72,-0.2743627335614812],[118,224,73,-0.272296250953295],[118,224,74,-0.2701033895107813],[118,224,75,-0.2677856431382536],[118,224,76,-0.2653446598109789],[118,224,77,-0.26278224405857153],[118,224,78,-0.2601003594541328],[118,224,79,-0.2573011311090837],[118,225,64,-0.28472602910978817],[118,225,65,-0.2836921737956095],[118,225,66,-0.2825257617381792],[118,225,67,-0.2812271439315507],[118,225,68,-0.2797968051949381],[118,225,69,-0.2782353665959867],[118,225,70,-0.2765435878796214],[118,225,71,-0.2747223699025436],[118,225,72,-0.27277275707333404],[118,225,73,-0.2706959397982409],[118,225,74,-0.26849325693248594],[118,225,75,-0.2661661982372979],[118,225,76,-0.2637164068425334],[118,225,77,-0.26114568171491626],[118,225,78,-0.25845598013192184],[118,225,79,-0.2556494201612557],[118,226,64,-0.2831522686545558],[118,226,65,-0.28210287977018356],[118,226,66,-0.2809214936872465],[118,226,67,-0.27960846242604276],[118,226,68,-0.27816427120588516],[118,226,69,-0.27658954085297605],[118,226,70,-0.2748850302137571],[118,226,71,-0.2730516385737959],[118,226,72,-0.2710904080821718],[118,226,73,-0.26900252618143894],[118,226,74,-0.26678932804299715],[118,226,75,-0.2644522990080851],[118,226,76,-0.2619930770342497],[118,226,77,-0.2594134551473274],[118,226,78,-0.25671538389896154],[118,226,79,-0.25390097382960664],[118,227,64,-0.28149256020780444],[118,227,65,-0.28042660135536024],[118,227,66,-0.2792292419492207],[118,227,67,-0.2779008351235914],[118,227,68,-0.2764418665435485],[118,227,69,-0.2748529567964615],[118,227,70,-0.27313486378877305],[118,227,71,-0.2712884851481995],[118,227,72,-0.2693148606313146],[118,227,73,-0.26721517453659627],[118,227,74,-0.2649907581227613],[118,227,75,-0.26264309203261016],[118,227,76,-0.26017380872222895],[118,227,77,-0.25758469489558977],[118,227,78,-0.2548776939445694],[118,227,79,-0.2520549083943382],[118,228,64,-0.27974635582440754],[118,228,65,-0.2786627793559707],[118,228,66,-0.27744843645158],[118,228,67,-0.27610368145043873],[118,228,68,-0.2746290005119977],[118,228,69,-0.2730250139898489],[118,228,70,-0.2712924788108493],[118,228,71,-0.26943229085954346],[118,228,72,-0.26744548736784524],[118,228,73,-0.26533324931005553],[118,228,74,-0.26309690380304873],[118,228,75,-0.2607379265118406],[118,228,76,-0.25825794406039215],[118,228,77,-0.255658736447687],[118,228,78,-0.252942239469102],[118,228,79,-0.25011054714302583],[118,229,64,-0.277913286889206],[118,229,65,-0.2768110358425867],[118,229,66,-0.2755786902525532],[118,229,67,-0.27421660575778395],[118,229,68,-0.2727252690636961],[118,229,69,-0.2711053002977172],[118,229,70,-0.2693574553696556],[118,229,71,-0.2674826283372377],[118,229,72,-0.2654818537767688],[118,229,73,-0.2633563091590049],[118,229,74,-0.26110731723005143],[118,229,75,-0.25873634839752],[118,229,76,-0.2562450231217833],[118,229,77,-0.2536351143123736],[118,229,78,-0.25090854972954135],[118,229,79,-0.24806741439093127],[118,230,64,-0.27599315876365826],[118,230,65,-0.2748711687475318],[118,230,66,-0.27361979408839643],[118,230,67,-0.272239391822225],[118,230,68,-0.2707304492550008],[118,230,69,-0.2690935862982652],[118,230,70,-0.2673295578096233],[118,230,71,-0.26543925593827256],[118,230,72,-0.26342371247552077],[118,230,73,-0.26128410121036716],[118,230,74,-0.2590217402899764],[118,230,75,-0.25663809458526454],[118,230,76,-0.2541347780614477],[118,230,77,-0.2515135561535897],[118,230,78,-0.24877634814717153],[118,230,79,-0.24592522956363705],[118,231,64,-0.27398594548949484],[118,231,65,-0.27284314651837505],[118,231,66,-0.2715717109786112],[118,231,67,-0.2701719974045802],[118,231,68,-0.26864449376046573],[118,231,69,-0.26698981975496483],[118,231,70,-0.2652087291608063],[118,231,71,-0.2633021121391431],[118,231,72,-0.26127099756878236],[118,231,73,-0.2591165553803334],[118,231,74,-0.25684009889509607],[118,231,75,-0.2544430871689154],[118,231,76,-0.2519271273408473],[118,231,77,-0.24929397698667555],[118,231,78,-0.24654554647730198],[118,231,79,-0.24368390134196283],[118,232,64,-0.27189178454932317],[118,232,65,-0.2707271028288524],[118,232,66,-0.269434570889045],[118,232,67,-0.2680145488670346],[118,232,68,-0.2664675254458895],[118,232,69,-0.2647941201473609],[118,232,70,-0.26299508562927953],[118,232,71,-0.2610713099876705],[118,232,72,-0.2590238190635491],[118,232,73,-0.25685377875447635],[118,232,74,-0.2545624973306967],[118,232,75,-0.252151427756086],[118,232,76,-0.24962217001375142],[118,232,77,-0.24697647343632612],[118,232,78,-0.244216239040981],[118,232,79,-0.24134352186910057],[118,233,64,-0.2697109716842818],[118,233,65,-0.2685233313473112],[118,233,66,-0.26720866545297906],[118,233,67,-0.2657673358487097],[118,233,68,-0.26419983200021024],[118,233,69,-0.2625067732611246],[118,233,70,-0.26068891114717063],[118,233,71,-0.2587471316148301],[118,233,72,-0.2566824573445531],[118,233,73,-0.2544960500285547],[118,233,74,-0.25218921266303007],[118,233,75,-0.24976339184501106],[118,233,76,-0.24722018007371038],[118,233,77,-0.24456131805639447],[118,233,78,-0.24178869701880457],[118,233,79,-0.23890436102007984],[118,234,64,-0.26744395576869673],[118,234,65,-0.2662322805626397],[118,234,66,-0.26489444275015295],[118,234,67,-0.263430805999616],[118,234,68,-0.26184186062620374],[118,234,69,-0.2601282258373111],[118,234,70,-0.25829065198228585],[118,234,71,-0.25633002280653916],[118,234,72,-0.2542473577099946],[118,234,73,-0.252043814009957],[118,234,74,-0.249720689208221],[118,234,75,-0.2472794232626505],[118,234,76,-0.24472160086306716],[118,234,77,-0.2420489537114947],[118,234,78,-0.23926336280677496],[118,234,79,-0.23636686073351354],[118,235,64,-0.2650913337416857],[118,235,65,-0.2638545486676136],[118,235,66,-0.26249250214367015],[118,235,67,-0.2610055597729205],[118,235,68,-0.25939421278991814],[118,235,69,-0.2576590802807591],[118,235,70,-0.2558009114072617],[118,235,71,-0.2538205876353373],[118,235,72,-0.25171912496751847],[118,235,73,-0.24949767617972196],[118,235,74,-0.247157533062067],[118,235,75,-0.24470012866398183],[118,235,76,-0.24212703954343506],[118,235,77,-0.2394399880203385],[118,235,78,-0.23664084443413957],[118,235,79,-0.23373162940555603],[118,236,64,-0.2626538455958123],[118,236,65,-0.2613908784997758],[118,236,66,-0.26000358917489275],[118,236,67,-0.25849234527564713],[118,236,68,-0.2568576390289641],[118,236,69,-0.25510008942774887],[118,236,70,-0.25322044442835967],[118,236,71,-0.2512195831520798],[118,236,72,-0.2490985180905514],[118,236,73,-0.2468583973152546],[118,236,74,-0.24450050669084733],[118,236,75,-0.24202627209260053],[118,236,76,-0.23943726162776713],[118,236,77,-0.2367351878609274],[118,236,78,-0.23392191004333274],[118,236,79,-0.23099943634619946],[118,237,64,-0.2601323694227493],[118,237,65,-0.25884215253979936],[118,237,66,-0.25742859051627687],[118,237,67,-0.2558920531777572],[118,237,68,-0.25423303381960705],[118,237,69,-0.25245215137286536],[118,237,70,-0.25055015257385505],[118,237,71,-0.2485279141375908],[118,237,72,-0.24638644493494977],[118,237,73,-0.24412688817368355],[118,237,74,-0.24175052358308968],[118,237,75,-0.23925876960257708],[118,237,76,-0.23665318557396287],[118,237,77,-0.23393547393754477],[118,237,78,-0.23110748243196944],[118,237,79,-0.22817120629784837],[118,238,64,-0.2575279165158767],[118,238,65,-0.25620938796726156],[118,238,66,-0.25476852898208],[118,238,67,-0.2532057116795402],[118,238,68,-0.25152143050259035],[118,238,69,-0.24971630435499748],[118,238,70,-0.24779107874194228],[118,238,71,-0.24574662791420188],[118,238,72,-0.24358395701588298],[118,238,73,-0.24130420423578636],[118,238,74,-0.23890864296221948],[118,238,75,-0.23639868394149233],[118,238,76,-0.2337758774399339],[118,238,77,-0.23104191540947394],[118,238,78,-0.22819863365680826],[118,238,79,-0.22524801401610262],[118,239,64,-0.25484162652994935],[118,239,65,-0.25349373177396517],[118,239,66,-0.25202455859707273],[118,239,67,-0.2504344815374512],[118,239,68,-0.24872399626782815],[118,239,69,-0.24689372170260837],[118,239,70,-0.24494440210830204],[118,239,71,-0.24287690921731953],[118,239,72,-0.24069224434509529],[118,239,73,-0.2383915405106266],[118,239,74,-0.23597606456023568],[118,239,75,-0.2334472192947996],[118,239,76,-0.23080654560027813],[118,239,77,-0.2280557245815874],[118,239,78,-0.22519657969983786],[118,239,79,-0.22223107891288996],[118,240,64,-0.25207476269772333],[118,240,65,-0.25069645593469625],[118,240,66,-0.24919795972314362],[118,240,67,-0.24757965114828118],[118,240,68,-0.2458420271978511],[118,240,69,-0.24398570683816434],[118,240,70,-0.24201143309320983],[118,240,71,-0.2399200751269015],[118,240,72,-0.23771263032842727],[118,240,73,-0.23539022640078178],[118,240,74,-0.23295412345229305],[118,240,75,-0.23040571609139038],[118,240,76,-0.22774653552443758],[118,240,77,-0.2249782516566855],[118,240,78,-0.22210267519635862],[118,240,79,-0.2191217597618298],[118,241,64,-0.249228707103629],[118,241,65,-0.24781895263550346],[118,241,66,-0.24629013424388846],[118,241,67,-0.24464263169174927],[118,241,68,-0.2428769433700988],[118,241,69,-0.24099368834181356],[118,241,70,-0.23899360838827932],[118,241,71,-0.23687757005893728],[118,241,72,-0.23464656672369022],[118,241,73,-0.23230172062825805],[118,241,74,-0.22984428495228681],[118,241,75,-0.22727564587046012],[118,241,76,-0.22459732461643878],[118,241,77,-0.22181097954968165],[118,241,78,-0.21891840822516007],[118,241,79,-0.21592154946592412],[118,242,64,-0.2463049560143652],[118,242,65,-0.24486272955937693],[118,242,66,-0.24330260080705213],[118,242,67,-0.2416249523313917],[118,242,68,-0.23983028401792694],[118,242,69,-0.23791921507418123],[118,242,70,-0.23589248604271085],[118,242,71,-0.23375096081679847],[118,242,72,-0.23149562865876094],[118,242,73,-0.2291276062209574],[118,242,74,-0.22664813956930274],[118,242,75,-0.22405860620953721],[118,242,76,-0.22136051711607696],[118,242,77,-0.21855551876349544],[118,242,78,-0.21564539516065417],[118,242,79,-0.21263206988743555],[118,243,64,-0.24330511526656406],[118,243,65,-0.24182940522947338],[118,243,66,-0.24023699012498],[118,243,67,-0.2385282554738961],[118,243,68,-0.2367037027504847],[118,243,69,-0.23476395135844175],[118,243,70,-0.23270974060919825],[118,243,71,-0.23054193170261839],[118,243,72,-0.22826150971005643],[118,243,73,-0.22586958555985537],[118,243,74,-0.2233673980250953],[118,243,75,-0.2207563157138399],[118,243,76,-0.21803783906170804],[118,243,77,-0.2152136023268192],[118,243,78,-0.21228537558713056],[118,243,79,-0.20925506674011995],[118,244,64,-0.24023089571146028],[118,244,65,-0.23872070440982385],[118,244,66,-0.23709504033300688],[118,244,67,-0.2353542920868168],[118,244,68,-0.23349896283139382],[118,244,69,-0.23152967222159393],[118,244,70,-0.22944715834942797],[118,244,71,-0.22725227968862982],[118,244,72,-0.22494601704131545],[118,244,73,-0.22252947548682167],[118,244,74,-0.220003886332523],[118,244,75,-0.21737060906688543],[118,244,76,-0.21463113331457684],[118,244,77,-0.21178708079368425],[118,244,78,-0.2088402072750588],[118,244,79,-0.20579240454373948],[118,245,64,-0.23708410871648222],[118,245,65,-0.2355384535634394],[118,245,66,-0.23387859240570308],[118,245,67,-0.23210491707458603],[118,245,68,-0.2302179325161442],[118,245,69,-0.22821825869485668],[118,245,70,-0.2261066324990828],[118,245,71,-0.22388390964837446],[118,245,72,-0.22155106660260315],[118,245,73,-0.2191092024729917],[118,245,74,-0.21655954093484886],[118,245,75,-0.21390343214226515],[118,245,76,-0.21114235464458864],[118,245,77,-0.20827791730473544],[118,245,78,-0.20531186121934897],[118,245,79,-0.20224606164076375],[118,246,64,-0.23386666172392034],[118,246,65,-0.23228457636797017],[118,246,66,-0.23058958563113452],[118,246,67,-0.22878208471297734],[118,246,68,-0.2268625804483656],[118,246,69,-0.22483169317334495],[118,246,70,-0.22269015859251073],[118,246,71,-0.22043882964794725],[118,246,72,-0.2180786783896982],[118,246,73,-0.21561079784785786],[118,246,74,-0.21303640390607737],[118,246,75,-0.21035683717675124],[118,246,76,-0.20757356487769762],[118,246,77,-0.20468818271038725],[118,246,78,-0.201702416739739],[118,246,79,-0.19861812527543332],[118,247,64,-0.23058055386659915],[118,247,65,-0.22896108928884695],[118,247,66,-0.22723005314305988],[118,247,67,-0.2253878441419508],[118,247,68,-0.2234349711149013],[118,247,69,-0.22137205483495148],[118,247,70,-0.2191998298469865],[118,247,71,-0.21691914629719977],[118,247,72,-0.21453097176379277],[118,247,73,-0.21203639308900202],[118,247,74,-0.2094366182122459],[118,247,75,-0.20673297800465962],[118,247,76,-0.2039269281048286],[118,247,77,-0.20102005075577767],[118,247,78,-0.19801405664323168],[118,247,79,-0.19491078673510132],[118,248,64,-0.22722787164046643],[118,248,65,-0.2255700972098137],[118,248,66,-0.2238021175109811],[118,248,67,-0.22192433491678554],[118,248,68,-0.21993726035959182],[118,248,69,-0.21784151511834082],[118,248,70,-0.21563783260646996],[118,248,71,-0.21332706016080805],[118,248,72,-0.2109101608314028],[118,248,73,-0.20838821517237316],[118,248,74,-0.20576242303357783],[118,248,75,-0.20303410535336863],[118,248,76,-0.20020470595223894],[118,248,77,-0.19727579332742617],[118,248,78,-0.19424906244848117],[118,248,79,-0.1911263365537591],[118,249,64,-0.22381078463426396],[118,249,65,-0.22211378912102192],[118,249,66,-0.22030798638821047],[118,249,67,-0.21839378261767395],[118,249,68,-0.21637169095594133],[118,249,69,-0.21424233326023123],[118,249,70,-0.2120064418450388],[118,249,71,-0.20966486122938277],[118,249,72,-0.20721854988467303],[118,249,73,-0.20466858198329185],[118,249,74,-0.20201614914767696],[118,249,75,-0.19926256220017868],[118,249,76,-0.1964092529135002],[118,249,77,-0.19345777576177725],[118,249,78,-0.19040980967231402],[118,249,79,-0.18726715977792907],[118,250,64,-0.2203315413162028],[118,250,65,-0.21859443386460387],[118,250,66,-0.2167499482178783],[118,250,67,-0.21479849451769484],[118,250,68,-0.21274058823858488],[118,250,69,-0.21057685189188036],[118,250,70,-0.2083080167299104],[118,250,71,-0.20593492445053685],[118,250,72,-0.20345852890198923],[118,250,73,-0.20087989778809323],[118,250,74,-0.19820021437367552],[118,250,75,-0.1954207791904259],[118,250,76,-0.19254301174301647],[118,250,77,-0.1895684522155433],[118,250,78,-0.18649876317829928],[118,250,79,-0.18333573129483627],[118,251,64,-0.21679246487754977],[118,251,65,-0.21501437593763506],[118,251,66,-0.2131303679967851],[118,251,67,-0.21114085530906956],[118,251,68,-0.20904635579346154],[118,251,69,-0.20684749269468017],[118,251,70,-0.20454499624395717],[118,251,71,-0.20213970531981218],[118,251,72,-0.19963256910879934],[118,251,73,-0.19702464876631243],[118,251,74,-0.19431711907724047],[118,251,75,-0.1915112701167463],[118,251,76,-0.18860850891097347],[118,251,77,-0.18561036109774498],[118,251,78,-0.1825184725872614],[118,251,79,-0.17933461122275818],[118,252,64,-0.21319594913330198],[118,252,65,-0.21137603135266037],[118,252,66,-0.20945168309727902],[118,252,67,-0.2074233228878849],[118,252,68,-0.20529147120687435],[118,252,69,-0.20305675211504276],[118,252,70,-0.20071989486790032],[118,252,71,-0.19828173553165618],[118,252,72,-0.19574321859883226],[118,252,73,-0.19310539860360032],[118,252,74,-0.19036944173662362],[118,252,75,-0.1875366274596877],[118,252,76,-0.18460835011991716],[118,252,77,-0.18158612056364354],[118,252,78,-0.17847156774993522],[118,252,79,-0.17526644036374595],[118,253,64,-0.20954445447986442],[118,253,65,-0.20768188355570205],[118,253,66,-0.20571639914707052],[118,253,67,-0.2036484241971953],[118,253,68,-0.20147848187335227],[118,253,69,-0.19920719713849172],[118,253,70,-0.19683529832209468],[118,253,71,-0.19436361869035257],[118,253,72,-0.19179309801562616],[118,253,73,-0.18912478414527933],[118,253,74,-0.18635983456966865],[118,253,75,-0.18349951798957365],[118,253,76,-0.18054521588286432],[118,253,77,-0.17749842407047145],[118,253,78,-0.17436075428166886],[118,253,79,-0.17113393571862734],[118,254,64,-0.2058405039096345],[118,254,65,-0.20393447940164922],[118,254,66,-0.20192708596688946],[118,254,67,-0.19981875112840208],[118,254,68,-0.1976100008622118],[118,254,69,-0.19530146112285607],[118,254,70,-0.19289385936779913],[118,254,71,-0.1903880260808093],[118,254,72,-0.1877848962942572],[118,254,73,-0.18508551111043492],[118,254,74,-0.18229101922166768],[118,254,75,-0.1794026784295143],[118,254,76,-0.1764218571628433],[118,254,77,-0.1733500359948561],[118,254,78,-0.17018880915906387],[118,254,79,-0.16693988606417898],[118,255,64,-0.20208667908267874],[118,255,65,-0.2001364251872192],[118,255,66,-0.19808637356616965],[118,255,67,-0.19593695648110665],[118,255,68,-0.19368870284301137],[118,255,69,-0.1913422396907617],[118,255,70,-0.18889829366813338],[118,255,71,-0.1863576924993977],[118,255,72,-0.18372136646347526],[118,255,73,-0.18099034986674356],[118,255,74,-0.1781657825142704],[118,255,75,-0.17524891117976937],[118,255,76,-0.17224109107406527],[118,255,77,-0.16914378731213942],[118,255,78,-0.16595857637876343],[118,255,79,-0.16268714759267877],[118,256,64,-0.1982856164554141],[118,256,65,-0.19629038274139643],[118,256,66,-0.19419694819667377],[118,256,67,-0.19200574998133824],[118,256,68,-0.1897173200698064],[118,256,69,-0.18733228668132734],[118,256,70,-0.18485137570862264],[118,256,71,-0.18227541214474952],[118,256,72,-0.17960532150814368],[118,256,73,-0.1768421312659404],[118,256,74,-0.1739869722553472],[118,256,75,-0.17104108010336277],[118,256,76,-0.16800579664463067],[118,256,77,-0.1648825713374984],[118,256,78,-0.16167296267828735],[118,256,79,-0.15837863961373666],[118,257,64,-0.19444000346619017],[118,257,65,-0.19239906557325281],[118,257,66,-0.1902615484639526],[118,257,67,-0.18802789435806044],[118,257,68,-0.18569863842410117],[118,257,69,-0.18327441016095825],[118,257,70,-0.18075593477722673],[118,257,71,-0.17814403456840489],[118,257,72,-0.17543963029188114],[118,257,73,-0.17264374253981796],[118,257,74,-0.16975749310969845],[118,257,75,-0.16678210637284063],[118,257,76,-0.16371891064065935],[118,257,77,-0.16056933952875008],[118,257,78,-0.15733493331880066],[118,257,79,-0.15401734031829262],[118,258,64,-0.19055257477796883],[118,258,65,-0.1884652350773407],[118,258,66,-0.18628296149683943],[118,258,67,-0.18400620147815072],[118,258,68,-0.18163549351669672],[118,258,69,-0.179171468493443],[118,258,70,-0.17661485100405716],[118,258,71,-0.17396646068551502],[118,258,72,-0.1712272135401099],[118,258,73,-0.16839812325696557],[118,258,74,-0.16548030253082036],[118,258,75,-0.16247496437838482],[118,258,76,-0.15938342345205592],[118,258,77,-0.15620709735106075],[118,258,78,-0.1529475079300351],[118,258,79,-0.14960628260499703],[118,259,64,-0.1866261085780076],[118,259,65,-0.18449169679656552],[118,259,66,-0.18226401917488194],[118,259,67,-0.1799435285397576],[118,259,68,-0.1775307668483399],[118,259,69,-0.17502636646925324],[118,259,70,-0.17243105146068327],[118,259,71,-0.1697456388455043],[118,259,72,-0.16697103988341],[118,259,73,-0.164108261340149],[118,259,74,-0.16115840675362558],[118,259,75,-0.15812267769717814],[118,259,76,-0.15500237503981107],[118,259,77,-0.1517989002034536],[118,259,78,-0.14851375641725473],[118,259,79,-0.14514854996887278],[118,260,64,-0.1826634229344406],[118,260,65,-0.1804812967424353],[118,260,66,-0.1782075944136065],[118,260,67,-0.17584277432393153],[118,260,68,-0.17338738202906384],[118,260,69,-0.17084205149393866],[118,260,70,-0.16820750631891912],[118,260,71,-0.1654845609625778],[118,260,72,-0.16267412196107223],[118,260,73,-0.15977718914421613],[118,260,74,-0.15679485684800454],[118,260,75,-0.15372831512391016],[118,260,76,-0.15057885094472068],[118,260,77,-0.14734784940699686],[118,260,78,-0.1440367949301552],[118,260,79,-0.14064727245213537],[118,261,64,-0.17866737220996176],[118,261,65,-0.1764369177728864],[118,261,66,-0.17411659750782116],[118,261,67,-0.17170687550473196],[118,261,68,-0.16920830105643125],[118,261,69,-0.16662150983582802],[118,261,70,-0.16394722506930115],[118,261,71,-0.16118625870628955],[118,261,72,-0.15833951258505952],[118,261,73,-0.155407979594749],[118,261,74,-0.1523927448334496],[118,261,75,-0.14929498676264052],[118,261,76,-0.14611597835774726],[118,261,77,-0.14285708825490284],[118,261,78,-0.13951978189391584],[118,261,79,-0.1361056226574054],[118,262,64,-0.17464084353250842],[118,262,65,-0.17236147602758867],[118,262,66,-0.16999397253285375],[118,262,67,-0.16753880301771368],[118,262,68,-0.1649965206525753],[118,262,69,-0.16236776293293276],[118,262,70,-0.15965325279915576],[118,262,71,-0.15685379975206815],[118,262,72,-0.15397030096427622],[118,262,73,-0.1510037423873537],[118,262,74,-0.14795519985463051],[118,262,75,-0.1448258401799154],[118,262,76,-0.14161692225191352],[118,262,77,-0.13832979812442048],[118,262,78,-0.13496591410229897],[118,262,79,-0.1315268118231968],[118,263,64,-0.17058675332284284],[118,263,65,-0.16825791742062512],[118,263,66,-0.16584269380362326],[118,263,67,-0.16334155848668153],[118,263,68,-0.16075506865993133],[118,263,69,-0.1580838637589438],[118,263,70,-0.15532866653014438],[118,263,71,-0.15249028409158477],[118,263,72,-0.1495696089890312],[118,263,73,-0.14656762024747455],[118,263,74,-0.14348538441781034],[118,263,75,-0.14032405661902053],[118,263,76,-0.13708488157561338],[118,263,77,-0.13376919465041004],[118,263,78,-0.1303784228726768],[118,263,79,-0.12691408596156462],[118,264,64,-0.16650804387924917],[118,264,65,-0.16412921419076187],[118,264,66,-0.16166576239176106],[118,264,67,-0.15911817070893902],[118,264,68,-0.15648700049588554],[118,264,69,-0.1537728932485486],[118,264,70,-0.15097657161551348],[118,264,71,-0.14809884040319865],[118,264,72,-0.14514058757592602],[118,264,73,-0.1421027852509703],[118,264,74,-0.13898649068833863],[118,264,75,-0.1357928472756076],[118,264,76,-0.1325230855075794],[118,264,77,-0.1291785239608415],[118,264,78,-0.12576057026322962],[118,264,79,-0.1222707220581582],[118,265,64,-0.16240768001916028],[118,265,65,-0.15997836150912698],[118,265,66,-0.15746620270059797],[118,265,67,-0.15487169219884084],[118,265,68,-0.15219539566614804],[118,265,69,-0.1494379567818775],[118,265,70,-0.14660009819686198],[118,265,71,-0.1436826224822838],[118,265,72,-0.14068641307297508],[118,265,73,-0.1376124352052513],[118,265,74,-0.13446173684901908],[118,265,75,-0.1312354496344974],[118,265,76,-0.1279347897733062],[118,265,77,-0.12456105897400926],[118,265,78,-0.12111564535211111],[118,265,79,-0.11760002433447259],[118,266,64,-0.15828864577785584],[118,266,65,-0.1558083741444376],[118,266,66,-0.15324705909815978],[118,266,67,-0.15060519578979448],[118,266,68,-0.14788335433699712],[118,266,69,-0.14508218072822526],[118,266,70,-0.14220239772056786],[118,266,71,-0.13924480573158293],[118,266,72,-0.13621028372510569],[118,266,73,-0.13309979009112993],[118,266,74,-0.12991436351950814],[118,266,75,-0.12665512386780858],[118,266,76,-0.12332327302308144],[118,266,77,-0.11992009575762291],[118,266,78,-0.11644696057873644],[118,266,79,-0.11290532057245439],[118,267,64,-0.15415394116404457],[118,267,65,-0.1516222831855858],[118,267,66,-0.14901139260797697],[118,267,67,-0.14632177129451546],[118,267,68,-0.14355399396619928],[118,267,69,-0.1407087090488492],[118,267,70,-0.13778663951367565],[118,267,71,-0.1347885837113934],[118,267,72,-0.1317154161998348],[118,267,73,-0.12856808856517998],[118,267,74,-0.12534763023653545],[118,267,75,-0.1220551492942068],[118,267,76,-0.11869183327141836],[118,267,77,-0.11525894994956154],[118,267,78,-0.1117578481469807],[118,267,79,-0.10818995850125146],[118,268,64,-0.15000657897255043],[118,268,65,-0.1474231328218068],[118,268,66,-0.14476227765793848],[118,268,67,-0.1420245222237681],[118,268,68,-0.13921044599283577],[118,268,69,-0.13632069995907925],[118,268,70,-0.13335600741948594],[118,268,71,-0.13031716474981708],[118,268,72,-0.12720504217336437],[118,268,73,-0.1240205845228482],[118,268,74,-0.12076481199519168],[118,268,75,-0.1174388208995209],[118,268,76,-0.11404378439813556],[118,268,77,-0.11058095324054079],[118,268,78,-0.1070516564905411],[118,268,79,-0.1034573022463578],[118,269,64,-0.1458495816540012],[118,269,65,-0.14321397718032663],[118,269,66,-0.1405027988870824],[118,269,67,-0.1377165625634813],[118,269,68,-0.13485585258592692],[118,269,69,-0.1319213226496322],[118,269,70,-0.12891369649272794],[118,269,71,-0.12583376861296736],[118,269,72,-0.12268240497698213],[118,269,73,-0.11946054372220183],[118,269,74,-0.1161691958511703],[118,269,75,-0.11280944591860848],[118,269,76,-0.10938245271096964],[118,269,77,-0.10588944991857707],[118,269,78,-0.10233174680034329],[118,269,79,-0.09871072884103455],[118,270,64,-0.14168597824141],[118,270,65,-0.13899787722137902],[118,270,66,-0.13623604801021183],[118,270,67,-0.13340101361013085],[118,270,68,-0.1304933634517444],[118,270,69,-0.12751375406701093],[118,270,70,-0.12446290975420898],[118,270,71,-0.1213416232350158],[118,270,72,-0.11815075630365046],[118,270,73,-0.11489124046819876],[118,270,74,-0.11156407758384218],[118,270,75,-0.108170340478354],[118,270,76,-0.10471117356959886],[118,270,77,-0.10118779347512741],[118,270,78,-0.09760148961386977],[118,270,79,-0.09395362479988684],[118,271,64,-0.13751880133386424],[118,271,65,-0.13477789769080634],[118,271,66,-0.13196512074055627],[118,271,67,-0.12908100086460755],[118,271,68,-0.12612613270002965],[118,271,69,-0.1231011757532196],[118,271,70,-0.12000685500516195],[118,271,71,-0.116843961508306],[118,271,72,-0.11361335297501601],[118,271,73,-0.11031595435770808],[118,271,74,-0.10695275842040008],[118,271,75,-0.10352482630203547],[118,271,76,-0.10003328807131662],[118,271,77,-0.09647934327314356],[118,271,78,-0.09286426146665505],[118,271,79,-0.08918938275483607],[118,272,64,-0.13335108413721475],[118,272,65,-0.13055710413013805],[118,272,66,-0.1276931137703689],[118,272,67,-0.12475965098445974],[118,272,68,-0.12175731576901216],[118,272,69,-0.11868677074467954],[118,272,70,-0.11554874170117968],[118,272,71,-0.11234401813342448],[118,272,72,-0.10907345376872218],[118,272,73,-0.10573796708516997],[118,272,74,-0.10233854182095592],[118,272,75,-0.0988762274749389],[118,272,76,-0.09535213979823737],[118,272,77,-0.09176746127692342],[118,272,78,-0.08812344160582086],[118,272,79,-0.08442139815337041],[118,273,64,-0.12918585756165868],[118,273,65,-0.12633855994403964],[118,273,66,-0.12342312180934911],[118,273,67,-0.12044008879440316],[118,273,68,-0.11739006640911198],[118,273,69,-0.1142737205302326],[118,273,70,-0.1110917778856233],[118,273,71,-0.10784502652910855],[118,273,72,-0.10453431630591181],[118,273,73,-0.10116055930877371],[118,273,74,-0.09772473032446999],[118,273,75,-0.09422786727110638],[118,273,76,-0.09067107162591204],[118,273,77,-0.08705550884363572],[118,273,78,-0.08338240876553854],[118,273,79,-0.07965306601894678],[118,274,64,-0.12502614737642986],[118,274,65,-0.12212532352534505],[118,274,66,-0.11915823468111159],[118,274,67,-0.11612543435531497],[118,274,68,-0.11302753372555202],[118,274,69,-0.10986520206845946],[118,274,70,-0.10663916718272948],[118,274,71,-0.1033502158022247],[118,274,72,-0.09999919399914886],[118,274,73,-0.09658700757739008],[118,274,74,-0.09311462245575242],[118,274,75,-0.08958306504145108],[118,274,76,-0.08599342259359549],[118,274,77,-0.08234684357676231],[118,274,78,-0.07864453800465165],[118,274,79,-0.07488777777379318],[118,275,64,-0.12087497142148851],[118,275,65,-0.11792044543756736],[118,275,66,-0.11490153447758955],[118,275,67,-0.11181880009160483],[118,275,68,-0.10867285927976827],[118,275,69,-0.1054643848641984],[118,275,70,-0.10219410585030564],[118,275,71,-0.09886280777770184],[118,275,72,-0.09547133306064481],[118,275,73,-0.09202058131814106],[118,275,74,-0.08851150969341437],[118,275,75,-0.08494513316312291],[118,275,76,-0.0813225248360448],[118,275,77,-0.07764481624133462],[118,275,78,-0.0739131976063459],[118,275,79,-0.07012891812398536],[118,276,64,-0.11673533687610604],[118,276,65,-0.11372696565477897],[118,276,66,-0.11065609277126476],[118,276,67,-0.10752328797685073],[118,276,68,-0.10432917424950433],[118,276,69,-0.10107442810415179],[118,276,70,-0.09775977989189749],[118,276,71,-0.09438601408830238],[118,276,72,-0.09095396957067364],[118,276,73,-0.08746453988448788],[118,276,74,-0.08391867349865417],[118,276,75,-0.08031737405000494],[118,276,76,-0.07666170057672761],[118,276,77,-0.07295276774084569],[118,276,78,-0.06919174603974015],[118,276,79,-0.06537986200667767],[118,277,64,-0.1126102375845559],[118,277,65,-0.10954791085907573],[118,277,66,-0.10642496788544364],[118,277,67,-0.10324198677792035],[118,277,68,-0.0999995966478171],[118,277,69,-0.09669847785180835],[118,277,70,-0.09333936222865646],[118,277,71,-0.08992303332446389],[118,277,72,-0.08645032660640667],[118,277,73,-0.08292212966507395],[118,277,74,-0.07933938240511357],[118,277,75,-0.07570307722457825],[118,277,76,-0.07201425918268284],[118,277,77,-0.06827402615607886],[118,277,78,-0.0644835289836414],[118,277,79,-0.06064397159973256],[118,278,64,-0.108502651438805],[118,278,65,-0.10538629179551945],[118,278,66,-0.10221120222246638],[118,278,67,-0.09897796935746922],[118,278,68,-0.09568722860087753],[118,278,69,-0.09233966430156387],[118,278,70,-0.08893600993079498],[118,278,71,-0.0854770482440943],[118,278,72,-0.0819636114310518],[118,278,73,-0.07839658125320426],[118,278,74,-0.07477688916968422],[118,278,75,-0.07110551645103708],[118,278,76,-0.06738349428091078],[118,278,77,-0.06361190384572996],[118,278,78,-0.05979187641234546],[118,278,79,-0.05592459339362449],[118,279,64,-0.1044155378180997],[118,279,65,-0.10124510068444953],[118,279,66,-0.09801781964974587],[118,279,67,-0.09473429003470335],[118,279,68,-0.09139515368445933],[118,279,69,-0.08800109909193254],[118,279,70,-0.08455286150851354],[118,279,71,-0.08105122304220724],[118,279,72,-0.07749701274318144],[118,279,73,-0.07389110667684429],[118,279,74,-0.07023442798415058],[118,279,75,-0.06652794692953462],[118,279,76,-0.06277268093617572],[118,279,77,-0.05896969460870721],[118,279,78,-0.055120099743358575],[118,279,79,-0.05122505532549998],[118,280,64,-0.10035183508565793],[118,280,65,-0.0971273086913797],[118,280,66,-0.09384782294384858],[118,280,67,-0.09051398200462862],[118,280,68,-0.08712643431933664],[118,280,69,-0.0836858726780712],[118,280,70,-0.08019303426262919],[118,280,71,-0.07664870068062707],[118,280,72,-0.0730536979864807],[118,280,73,-0.06940889668937367],[118,280,74,-0.06571521174790057],[118,280,75,-0.06197360255179807],[118,280,76,-0.0581850728904591],[118,280,77,-0.05435067090834489],[118,280,78,-0.05047148904728499],[118,280,79,-0.046548663975633786],[118,281,64,-0.09631445814236095],[118,281,65,-0.0930358634543707],[118,281,66,-0.08970419129251145],[118,281,67,-0.08632005481567412],[118,281,68,-0.08288410922547579],[118,281,69,-0.07939705176350303],[118,281,70,-0.0758596216947891],[118,281,71,-0.07227260027764476],[118,281,72,-0.06863681071979871],[118,281,73,-0.06495311812097354],[118,281,74,-0.06122242940158745],[118,281,75,-0.05744569321799187],[118,281,76,-0.05362389986394167],[118,281,77,-0.049758081158412626],[118,281,78,-0.0458493103197567],[118,281,79,-0.04189870182616018],[118,282,64,-0.0923062960373417],[118,282,65,-0.08897368666877492],[118,282,66,-0.0855898778544883],[118,282,67,-0.08215549190558369],[118,282,68,-0.07867119093491837],[118,282,69,-0.07513767679093336],[118,282,70,-0.07155569097715903],[118,282,71,-0.06792601455751934],[118,282,72,-0.06424946804739035],[118,282,73,-0.060526911290538776],[118,282,74,-0.056759243321629516],[118,282,75,-0.05294740221471467],[118,282,76,-0.04909236491739999],[118,282,77,-0.04519514707080208],[118,282,78,-0.041256802815287874],[118,282,79,-0.037278424581961955],[118,283,64,-0.08833020963567756],[118,283,65,-0.08494367172956463],[118,283,66,-0.08150780737743679],[118,283,67,-0.07802324819579137],[118,283,68,-0.07449066336356985],[118,283,69,-0.07091075949237624],[118,283,70,-0.06728428048181107],[118,283,71,-0.0636120073600433],[118,283,72,-0.05989475810957706],[118,283,73,-0.056133387478339625],[118,283,74,-0.05232878677577496],[118,283,75,-0.0484818836543629],[118,283,76,-0.04459364187625231],[118,283,77,-0.04066506106512702],[118,283,78,-0.036697176443292845],[118,283,79,-0.03269105855395338],[118,284,64,-0.08438902934308312],[118,284,65,-0.08094868143113532],[118,284,66,-0.07746087387374262],[118,284,67,-0.07392624774417145],[118,284,68,-0.07034547944178388],[118,284,69,-0.0667192804984813],[118,284,70,-0.06304839736969675],[118,284,71,-0.05933361121006331],[118,284,72,-0.05557573763371054],[118,284,73,-0.0517756264593201],[118,284,74,-0.047934161439620204],[118,284,75,-0.0440522599757433],[118,284,76,-0.0401308728161327],[118,284,77,-0.03617098374011812],[118,284,78,-0.032173609226146704],[118,284,79,-0.028139798104639846],[118,285,64,-0.08048555288750012],[118,285,65,-0.07699154572448338],[118,285,66,-0.07345193835417235],[118,285,67,-0.06986738145605828],[118,285,68,-0.06623855880363885],[118,285,69,-0.06256618700695313],[118,285,70,-0.05885101523909661],[118,285,71,-0.055093824946843645],[118,285,72,-0.0512954295453287],[118,285,73,-0.04745667409692056],[118,285,74,-0.04357843497396424],[118,285,75,-0.03966161950582012],[118,285,76,-0.03570716560988221],[118,285,77,-0.03171604140669734],[118,285,78,-0.027689244819171538],[118,285,79,-0.023627803155833765],[118,286,64,-0.07662254315779182],[118,286,65,-0.07307505953196583],[118,286,66,-0.06948382661956878],[118,286,67,-0.0658495048537483],[118,286,68,-0.062172785535117486],[118,286,69,-0.05845439051028126],[118,286,70,-0.05469507183376787],[118,286,71,-0.05089561141349591],[118,286,72,-0.04705682063972877],[118,286,73,-0.04317953999764973],[118,286,74,-0.03926463866323074],[118,286,75,-0.03531301408282858],[118,286,76,-0.03132559153618633],[118,286,77,-0.027303323682964287],[118,286,78,-0.023247190092785752],[118,286,79,-0.019158196758766954],[118,287,64,-0.07280272609943486],[118,287,65,-0.06920198061953348],[118,287,66,-0.06555932711047907],[118,287,67,-0.06187543590437539],[118,287,68,-0.05815100598108369],[118,287,69,-0.05438676458266875],[118,287,70,-0.05058346681067488],[118,287,71,-0.04674189520636007],[118,287,72,-0.04286285931384237],[118,287,73,-0.03894719522629195],[118,287,74,-0.034995765114838845],[118,287,75,-0.03100945674063446],[118,287,76,-0.026989182949741175],[118,287,77,-0.02293588115097603],[118,287,78,-0.018850512776693223],[118,287,79,-0.014734062726475039],[118,288,64,-0.06902878866711346],[118,288,65,-0.06537502752634364],[118,288,66,-0.06168118881461784],[118,288,67,-0.05794795290606061],[118,288,68,-0.05417602661095214],[118,288,69,-0.05036614272605708],[118,288,70,-0.04651905956720251],[118,288,71,-0.04263556048423439],[118,288,72,-0.03871645335830726],[118,288,73,-0.034762570081642075],[118,288,74,-0.03077476601941667],[118,288,75,-0.026753919454234276],[118,288,76,-0.022700931012839876],[118,288,77,-0.0186167230752102],[118,288,78,-0.014502239166004571],[118,288,79,-0.010358443328344819],[118,289,64,-0.06530337683442386],[118,289,65,-0.06159687755195967],[118,289,66,-0.05785211923237879],[118,289,67,-0.054069792432550695],[118,289,68,-0.0502506119432716],[118,289,69,-0.04639531627546947],[118,289,70,-0.0425046671280728],[118,289,71,-0.03857944883767753],[118,289,72,-0.03462046780996378],[118,289,73,-0.030628551932998627],[118,289,74,-0.02660454997208847],[118,289,75,-0.022549330946628088],[118,289,76,-0.01846378348861355],[118,289,77,-0.014348815182948643],[118,289,78,-0.010205351889527425],[118,289,79,-0.006034337047064103],[118,290,64,-0.06162909366051367],[118,290,65,-0.057870164800962604],[118,290,66,-0.05407478240021432],[118,290,67,-0.05024364733616479],[118,290,68,-0.046377482529036895],[118,290,69,-0.0424770323634851],[118,290,70,-0.03854306209177827],[118,290,71,-0.0345763572181951],[118,290,72,-0.030577722864583323],[118,290,73,-0.026547983117221452],[118,290,74,-0.02248798035464203],[118,290,75,-0.01839857455686847],[118,290,76,-0.014280642595729781],[118,290,77,-0.010135077506382706],[118,290,78,-0.0059627877400253715],[118,290,79,-0.0017646963977727415],[118,291,64,-0.05800849741378483],[118,291,65,-0.05419747828510374],[118,291,66,-0.05035179697201625],[118,291,67,-0.04647216480918279],[118,291,68,-0.04255931299386406],[118,291,69,-0.038613991943982046],[118,291,70,-0.03463697063667054],[118,291,71,-0.030629035927448728],[118,291,72,-0.02659099184997163],[118,291,73,-0.02252365889649613],[118,291,74,-0.0184278732787167],[118,291,75,-0.014304486169431307],[118,291,76,-0.01015436292469335],[118,291,77,-0.00597838228658501],[118,291,78,-0.0017774355665937658],[118,291,79,0.002447574190438645],[118,292,64,-0.0544440997524927],[118,292,65,-0.0505813600828281],[118,292,66,-0.04668573435832449],[118,292,67,-0.042757944503499984],[118,292,68,-0.03879873013885346],[118,292,69,-0.03480884787496996],[118,292,70,-0.030789070586521916],[118,292,71,-0.026740186666305205],[118,292,72,-0.022662999259260325],[118,292,73,-0.018558325476618565],[118,292,74,-0.014426995589827907],[118,292,75,-0.010269852204717489],[118,292,76,-0.006087749415559007],[118,292,77,-0.0018815519391582602],[118,292,78,0.002347865771041735],[118,292,79,0.006599620430873865],[118,293,64,-0.05093836396243975],[118,293,65,-0.047024303556371716],[118,293,66,-0.04307911692356864],[118,293,67,-0.03910353670875641],[118,293,68,-0.03509831110035089],[118,293,69,-0.031064203060724493],[118,293,70,-0.027001989535776677],[118,293,71,-0.022912460643944893],[118,293,72,-0.0187964188446077],[118,293,73,-0.014654678086023082],[118,293,74,-0.010488062932448625],[118,293,75,-0.006297407670912081],[118,293,76,-0.002083555397284012],[118,293,77,0.0021526429182127382],[118,293,78,0.006410329386073485],[118,293,79,0.010688640173191558],[118,294,64,-0.047493703251667546],[118,294,65,-0.04352875162633342],[118,294,66,-0.03953441624124274],[118,294,67,-0.03551144058883937],[118,294,68,-0.03146058156850136],[118,294,69,-0.0273826086531202],[118,294,70,-0.023278303034385855],[118,294,71,-0.01914845674691902],[118,294,72,-0.014993871771200859],[118,294,73,-0.01081535911544218],[118,294,74,-0.006613737876039999],[118,294,75,-0.002389834277090358],[118,294,76,0.0018555193113930918],[118,294,77,0.00612148537641638],[118,294,78,0.010407222286119053],[118,294,79,0.01471188533509217],[118,295,64,-0.04411247910205969],[118,295,65,-0.04009709510363284],[118,295,66,-0.03605405140692382],[118,295,67,-0.03198410247666782],[118,295,68,-0.027888014064508762],[118,295,69,-0.023766562312069472],[118,295,70,-0.01962053283213197],[118,295,71,-0.015450719768066834],[118,295,72,-0.01125792483146347],[118,295,73,-0.00704295631810585],[118,295,74,-0.0028066281019344524],[118,295,75,0.0014502413925277513],[118,295,76,0.0057268302396426135],[118,295,77,0.010022314083875702],[118,295,78,0.014335867232788693],[118,295,79,0.018666663771832376],[118,296,64,-0.04079699967803552],[118,296,65,-0.0367316710790383],[118,296,66,-0.03264038740931903],[118,296,67,-0.02852391422744796],[118,296,68,-0.02438302627678607],[118,296,69,-0.020218506525258598],[118,296,70,-0.016031145182638998],[118,296,71,-0.011821738695483294],[118,296,72,-0.00759108871966821],[118,296,73,-0.0033400010706768762],[118,296,74,9.307153487293218E-4],[118,296,75,0.005220249642970451],[118,296,76,0.009527790040601045],[118,296,77,0.013852525033611965],[118,296,78,0.018193644539103743],[118,296,79,0.02255034108335957],[118,297,64,-0.037549518292241596],[118,297,65,-0.033434761370168015],[118,297,66,-0.02929573355924571],[118,297,67,-0.025133211630300134],[118,297,68,-0.02094797945590153],[118,297,69,-0.016740826987082458],[118,297,70,-0.012512549206964818],[118,297,71,-0.008263945061439668],[118,297,72,-0.003995816366849536],[118,297,73,2.910333051796832E-4],[118,297,74,0.004595799766121164],[118,297,75,0.008917679371660436],[118,297,76,0.01325587020590012],[118,297,77,0.0176095732885145],[118,297,78,0.021977993804874828],[118,297,79,0.026360342359172347],[118,298,64,-0.03437223192815882],[118,298,65,-0.030208591025883788],[118,298,66,-0.02602234197645975],[118,298,67,-0.021814272878174654],[118,298,68,-0.017585176868233028],[118,298,69,-0.013335851036689501],[118,298,70,-0.009067095316690081],[118,298,71,-0.0047797113511658385],[118,298,72,-4.7450133592846777E-4],[118,298,73,0.0038477331606840137],[118,298,74,0.008186192401978515],[118,298,75,0.012540079710407187],[118,298,76,0.016908602718761045],[118,298,77,0.021290974644913314],[118,298,78,0.02568641559013434],[118,298,79,0.03009415386100458],[118,299,64,-0.03126727981979628],[118,299,65,-0.02705532688824827],[118,299,66,-0.022822406134508436],[118,299,67,-0.01856931709623179],[118,299,68,-0.014296862308509323],[118,299,69,-0.010005846155319818],[118,299,70,-0.005697073696685588],[118,299,71,-0.0013713494716799113],[118,299,72,0.002970523722764372],[118,299,73,0.007327746077097873],[118,299,74,0.011699522038816447],[118,299,75,0.01608506160605233],[118,299,76,0.02048358164546079],[118,299,77,0.024894307234256896],[118,299,78,0.02931647302642585],[118,299,79,0.03374932464313301],[118,300,64,-0.028236742088381443],[118,300,65,-0.023977076211956702],[118,300,66,-0.019698059463515494],[118,300,67,-0.015400502928594663],[118,300,68,-0.011085218671147062],[118,300,69,-0.006753018522841152],[118,300,70,-0.0024047128474635818],[118,300,71,0.001958890719429878],[118,300,72,0.006336988555664273],[118,300,73,0.010728782362246055],[118,300,74,0.015133480498189317],[118,300,75,0.01955029933986818],[118,300,76,0.023978464665269657],[118,300,77,0.028417213062997815],[118,300,78,0.032865793366052796],[118,300,79,0.037323468110412164],[118,301,64,-0.02528263843597264],[118,301,65,-0.020975885341165436],[118,301,66,-0.01665137401081973],[118,301,67,-0.012309927183395204],[118,301,68,-0.007952366580299956],[118,301,69,-0.0035795116334003813],[118,301,70,8.078218129703336E-4],[118,301,71,0.005208822825357184],[118,301,72,0.009622686729931542],[118,301,73,0.014048616486491264],[118,301,74,0.018485824088090682],[118,301,75,0.022933531985796864],[118,301,76,0.02739097453894976],[118,301,77,0.03185739949077534],[118,301,78,0.036332069469376505],[118,301,79,0.040814263514127175],[118,302,64,-0.022406926896151955],[118,302,65,-0.01805373844387924],[118,302,66,-0.013684359159633421],[118,302,67,-0.009299623536279748],[118,302,68,-0.004900363078792221],[118,302,69,-4.874049703635355E-4],[118,302,70,0.003938429287591235],[118,302,71,0.00837632526138528],[118,302,72,0.01282547699701697],[118,302,73,0.017285088457980456],[118,302,74,0.021754374989309242],[118,302,75,0.026232564807347796],[118,302,76,0.03071890051562921],[118,302,77,0.035212640646708364],[118,302,78,0.03971306122997552],[118,302,79,0.04421945738547522],[118,303,64,-0.019611502641714885],[118,303,65,-0.015212556303812672],[118,303,66,-0.010798960405631618],[118,303,67,-0.006371561292286419],[118,303,68,-0.0019312003758444802],[118,303,69,0.0025212872595479765],[118,303,70,0.006985074279246272],[118,303,71,0.01145934254624552],[118,303,72,0.015943284595927018],[118,303,73,0.02043610513725956],[118,303,74,0.024937022580837902],[118,303,75,0.02944527059324937],[118,303,76,0.03396009967814986],[118,303,77,0.038480778783897066],[118,303,78,0.04300659693776654],[118,303,79,0.04753686490677521],[118,304,64,-0.016898196849287606],[118,304,65,-0.012454195169654689],[118,304,66,-0.00799705819140234],[118,304,67,-0.0035276442060230267],[118,304,68,9.531953464793595E-4],[118,304,69,0.005444617332997257],[118,304,70,0.009945788410037917],[118,304,71,0.0144558865336008],[118,304,72,0.018974102496265053],[118,304,73,0.023499641491332508],[118,304,74,0.028031724704412633],[118,304,75,0.032569590931933595],[118,304,76,0.03711249822696772],[118,304,77,0.04165972557221404],[118,304,78,0.04621057458016565],[118,304,79,0.05076437122048785],[118,305,64,-0.014268775621019632],[118,305,65,-0.009780445661885292],[118,305,66,-0.005280466798909665],[118,305,67,-7.697093602968968E-4],[118,305,68,0.0037509650679492454],[118,305,69,0.008280705157491706],[118,305,70,0.012818671381040751],[118,305,71,0.017364037583493724],[118,305,72,0.021915992580886563],[118,305,73,0.026473741787000828],[118,305,74,0.031036508868015983],[118,305,75,0.035603537424686756],[118,305,76,0.040174092702437346],[118,305,77,0.04474746332921333],[118,305,78,0.04932296308111993],[118,305,79,0.05389993267587194],[118,306,64,-0.011724938963272084],[118,306,65,-0.007193031737066327],[118,306,66,-0.002650933299887581],[118,306,67,0.0019004738968824847],[118,306,68,0.006460318006052644],[118,306,69,0.011027739359645461],[118,306,70,0.015601892072434696],[118,306,71,0.020181945673843397],[118,306,72,0.024767086768253302],[118,306,73,0.029356520723569528],[118,306,74,0.03394947338843246],[118,306,75,0.03854519283755353],[118,306,76,0.04314295114556827],[118,306,77,0.04774204618924816],[118,306,78,0.052341803478098664],[118,306,79,0.05694157801336877],[118,307,64,-0.009268319822240696],[118,307,65,-0.004693609709542176],[118,307,66,-1.1013656410174127E-4],[118,307,67,0.00448120495699459],[118,307,68,0.009079532633150963],[118,307,69,0.01368397831431184],[118,307,70,0.018293689584124362],[118,307,71,0.022907831452061864],[118,307,72,0.027525588074557475],[118,307,73,0.03214616450499182],[118,307,74,0.03676878847292776],[118,307,75,0.04139271219206789],[118,307,76,0.0460172141973285],[118,307,77,0.05064160121087083],[118,307,78,0.05526521003711947],[118,307,79,0.059887409486789986],[118,308,64,-0.006900483176647133],[118,308,65,-0.002283767330686415],[118,308,66,0.0023403136743832126],[118,308,67,0.006970852897252473],[118,308,68,0.011606957634766657],[118,308,69,0.016247751114442266],[118,308,70,0.020892374216697707],[118,308,71,0.025539987226640887],[118,308,72,0.03018977161546596],[118,308,73,0.03484093185130012],[118,308,74,0.039492697239898525],[118,308,75,0.044144323794656465],[118,308,76,0.04879509613633762],[118,308,77,0.05344432942235745],[118,308,78,0.058091371305650966],[118,308,79,0.06273560392314767],[118,309,64,-0.004622925187426838],[118,309,65,3.497707437853659E-5],[118,309,66,0.004698877693004477],[118,309,67,0.00936785736847598],[118,309,68,0.014041012809076214],[118,309,69,0.01871745848174708],[118,309,70,0.02339632839280159],[118,309,71,0.028076777898788763],[118,309,72,0.03275798554756369],[118,309,73,0.03743915494940485],[118,309,74,0.04211951667857476],[118,309,75,0.04679833020479507],[118,309,76,0.051474885855033375],[118,309,77,0.05614850680544166],[118,309,78,0.0608185511034748],[118,309,79,0.06548441372021421],[118,310,64,-0.002437072404357102],[118,310,65,0.002261175412644423],[118,310,66,0.006964086598628558],[118,310,67,0.011670729424651194],[118,310,68,0.01638018990767022],[118,310,69,0.021091573618221185],[118,310,70,0.025804007518997224],[118,310,71,0.0305166418341786],[118,310,72,0.03522865194956101],[118,310,73,0.03993924034332362],[118,310,74,0.04464763854783867],[118,310,75,0.04935310914198621],[118,310,76,0.05405494777437754],[118,310,77,0.05875248521732317],[118,310,78,0.06344508945157674],[118,310,79,0.06813216778187682],[118,311,64,-3.4428102974799757E-4],[118,311,65,0.004393450571540461],[118,311,66,0.009134543087478561],[118,311,67,0.013878052294049661],[118,311,68,0.018623053417450103],[118,311,69,0.023368642998400843],[118,311,70,0.028113940787959743],[118,311,71,0.032858091674674475],[118,311,72,0.03760026764312599],[118,311,73,0.04233966976370454],[118,311,74,0.04707553021402121],[118,311,75,0.05180711433141401],[118,311,76,0.056533722696957556],[118,311,77,0.0612546932508085],[118,311,78,0.06596940343891937],[118,311,79,0.0706772723911431],[118,312,64,0.001654163760871838],[118,312,65,0.00643049710978548],[118,312,66,0.011208922147131414],[118,312,67,0.015988482091978173],[118,312,68,0.020768241283731684],[118,312,69,0.025547287102425084],[118,312,70,0.030324731921098455],[118,312,71,0.03509971509010802],[118,312,72,0.03987140495341887],[118,312,73,0.04463900089671752],[118,312,74,0.049401735427751864],[118,312,75,0.05415887628835542],[118,312,76,0.058909728598564276],[118,312,77,0.06365363703266103],[118,312,78,0.06838998802717708],[118,312,79,0.07311821202087534],[118,313,64,0.0035570484411203696],[118,313,65,0.008371081890813176],[118,313,66,0.013185971700633056],[118,313,67,0.018000748475204942],[118,313,68,0.02281446557460727],[118,313,69,0.02762620108995245],[118,313,70,0.03243505985164499],[118,313,71,0.037240175470158066],[118,313,72,0.04204071240938004],[118,313,73,0.04683586809236767],[118,313,74,0.05162487503991664],[118,313,75,0.056407003041401726],[118,313,76,0.06118156135829819],[118,313,77,0.06594790096021763],[118,313,78,0.0707054167934898],[118,313,79,0.07545355008231211],[118,314,64,0.005363231699067911],[118,314,65,0.010214044658662227],[118,314,66,0.015064513192616022],[118,314,67,0.019913655237950384],[118,314,68,0.02476051308644764],[118,314,69,0.029604155414811678],[118,314,70,0.03444367934809195],[118,314,71,0.03927821255621142],[118,314,72,0.044106915383647416],[118,314,73,0.04892898301210555],[118,314,74,0.05374364765659578],[118,314,75,0.058550180794361445],[118,314,76,0.06334789542707636],[118,314,77,0.06813614837613963],[118,314,78,0.07291434261110138],[118,314,79,0.0776819296112426],[118,315,64,0.007071644945577382],[118,315,65,0.011958298556423663],[118,315,66,0.016843442117518592],[118,315,67,0.021726080849537255],[118,315,68,0.026605245890642282],[118,315,69,0.031479996380489705],[118,315,70,0.036349421578081964],[118,315,71,0.04121264301330624],[118,315,72,0.046068816672208385],[118,315,73,0.05091713521583949],[118,315,74,0.055756830233089666],[118,315,75,0.06058717452695381],[118,315,76,0.06540748443464864],[118,315,77,0.07021712218140899],[118,315,78,0.07501549826799686],[118,315,79,0.07980207389194646],[118,316,64,0.008681292765612886],[118,316,65,0.013602830587179038],[118,316,66,0.018521728489834993],[118,316,67,0.023436978933633168],[118,316,68,0.02834760182151075],[118,316,69,0.03325264663638522],[118,316,70,0.03815119461267602],[118,316,71,0.04304236094208816],[118,316,72,0.04792529701371248],[118,316,73,0.0527991926882759],[118,316,74,0.057663278606957524],[118,316,75,0.06251682853421625],[118,316,76,0.0673591617350463],[118,316,77,0.0721896453864928],[118,316,78,0.07700769702345805],[118,316,79,0.08181278701882078],[118,317,64,0.010191253312599069],[118,317,65,0.01514670201751353],[118,317,66,0.020098417256483758],[118,317,67,0.025045378689170145],[118,317,68,0.029986594905468816],[118,317,69,0.03492110561491554],[118,317,70,0.03984798387109137],[118,317,71,0.044766338330866906],[118,317,72,0.04967531554853713],[118,317,73,0.0545741023046806],[118,317,74,0.05946192797016256],[118,317,75,0.06433806690472113],[118,317,76,0.06920184089055983],[118,317,77,0.07405262160077264],[118,317,78,0.07888983310263653],[118,317,79,0.08371295439579254],[118,318,64,0.011600678645731277],[118,318,65,0.01658904872350292],[118,318,66,0.02157262865118917],[118,318,67,0.026550385252838843],[118,318,68,0.03152131573134817],[118,318,69,0.03648444990937033],[118,318,70,0.041438852505799845],[118,318,71,0.046383625447667276],[118,318,72,0.05131791021749499],[118,318,73,0.05624089023594964],[118,318,74,0.06115179328020959],[118,318,75,0.06604989393748736],[118,318,76,0.07093451609412948],[118,318,77,0.07580503546012043],[118,318,78,0.08066088212902617],[118,318,79,0.0855015431733965],[118,319,64,0.012908795010293739],[118,319,65,0.017929081479230946],[118,319,66,0.022943558490936322],[118,319,67,0.027951180003214587],[118,319,68,0.03295093176192479],[118,319,69,0.037941833592572805],[118,319,70,0.0429229417280475],[118,319,71,0.04789335117233168],[118,319,72,0.05285219810024522],[118,319,73,0.05779866229305006],[118,319,74,0.06273196961033964],[118,319,75,0.06765139449764918],[118,319,76,0.07255626253021222],[118,319,77,0.07744595299268861],[118,319,78,0.08231990149489876],[118,319,79,0.08717760262358654],[119,-64,64,-0.12359822035275914],[119,-64,65,-0.12733935182246958],[119,-64,66,-0.13096518107670108],[119,-64,67,-0.13447426272701168],[119,-64,68,-0.13786531054735396],[119,-64,69,-0.14113720318653766],[119,-64,70,-0.14428898994465533],[119,-64,71,-0.14731989661336864],[119,-64,72,-0.15022933138007577],[119,-64,73,-0.15301689079586722],[119,-64,74,-0.15568236580751926],[119,-64,75,-0.15822574785318433],[119,-64,76,-0.16064723502205003],[119,-64,77,-0.1629472382778301],[119,-64,78,-0.16512638774614885],[119,-64,79,-0.16718553906578637],[119,-63,64,-0.1180829014297271],[119,-63,65,-0.12181267513684146],[119,-63,66,-0.1254277186494942],[119,-63,67,-0.12892658369701082],[119,-63,68,-0.13230798062701588],[119,-63,69,-0.13557078411025614],[119,-63,70,-0.1387140389094068],[119,-63,71,-0.1417369657117592],[119,-63,72,-0.14463896702581358],[119,-63,73,-0.14741963314168138],[119,-63,74,-0.15007874815554456],[119,-63,75,-0.15261629605783944],[119,-63,76,-0.15503246688542183],[119,-63,77,-0.15732766293759615],[119,-63,78,-0.15950250505605257],[119,-63,79,-0.16155783896868847],[119,-62,64,-0.11248580105568928],[119,-62,65,-0.11620345820325195],[119,-62,66,-0.1198069843558468],[119,-62,67,-0.12329492826481758],[119,-62,68,-0.12666599672885548],[119,-62,69,-0.1299190602907333],[119,-62,70,-0.13305315899804304],[119,-62,71,-0.13606750822783886],[119,-62,72,-0.13896150457520484],[119,-62,73,-0.14173473180565266],[119,-62,74,-0.1443869668716029],[119,-62,75,-0.14691818599260253],[119,-62,76,-0.14932857079955753],[119,-62,77,-0.15161851454284103],[119,-62,78,-0.15378862836433416],[119,-62,79,-0.1558397476333755],[119,-61,64,-0.10681118515420274],[119,-61,65,-0.11051597403935887],[119,-61,66,-0.11410725799116184],[119,-61,67,-0.11758358268866731],[119,-61,68,-0.120943651260774],[119,-61,69,-0.12418632997442425],[119,-61,70,-0.12731065398683006],[119,-61,71,-0.1303158331616292],[119,-61,72,-0.13320125794897908],[119,-61,73,-0.13596650532951138],[119,-61,74,-0.13861134482238202],[119,-61,75,-0.14113574455708544],[119,-61,76,-0.14353987740930352],[119,-61,77,-0.14582412720064686],[119,-61,78,-0.14798909496235457],[119,-61,79,-0.15003560526292414],[119,-60,64,-0.10106336620605172],[119,-60,65,-0.10475454271409967],[119,-60,66,-0.108332866878599],[119,-60,67,-0.11179688121351494],[119,-60,68,-0.11514528505891664],[119,-60,69,-0.1183769402602115],[119,-60,70,-0.12149087691142002],[119,-60,71,-0.1244862991624005],[119,-60,72,-0.12736259109003767],[119,-60,73,-0.13011932263330583],[119,-60,74,-0.13275625559245463],[119,-60,75,-0.1352733496919759],[119,-60,76,-0.13767076870762485],[119,-60,77,-0.13994888665735905],[119,-60,78,-0.1421082940562538],[119,-60,79,-0.1441498042353646],[119,-59,64,-0.09524669838335387],[119,-59,65,-0.09892352647232883],[119,-59,66,-0.10248818098465129],[119,-59,67,-0.10593920117795097],[119,-59,68,-0.10927528248633589],[119,-59,69,-0.11249528219021765],[119,-59,70,-0.11559822515020635],[119,-59,71,-0.11858330960496966],[119,-59,72,-0.12144991303307873],[119,-59,73,-0.12419759807874875],[119,-59,74,-0.12682611854172254],[119,-59,75,-0.1293354254309549],[119,-59,76,-0.13172567308237104],[119,-59,77,-0.13399722534056702],[119,-59,78,-0.13615066180449997],[119,-59,79,-0.13818678413715357],[119,-58,64,-0.0893655725586302],[119,-58,65,-0.09302732473395114],[119,-58,66,-0.09657760790876091],[119,-58,67,-0.10001495799473326],[119,-58,68,-0.10333806640485399],[119,-58,69,-0.10654578571341711],[119,-58,70,-0.10963713538010578],[119,-58,71,-0.11261130753805926],[119,-58,72,-0.11546767284594661],[119,-58,73,-0.11820578640395629],[119,-58,74,-0.12082539373394474],[119,-58,75,-0.12332643682341116],[119,-58,76,-0.12570906023356188],[119,-58,77,-0.12797361727133794],[119,-58,78,-0.13012067622545442],[119,-58,79,-0.13215102666643297],[119,-57,64,-0.0834244111891489],[119,-57,65,-0.08707036896785736],[119,-57,66,-0.09060558774729766],[119,-57,67,-0.09402860000524071],[119,-57,68,-0.09733809302043861],[119,-57,69,-0.10053291452236934],[119,-57,70,-0.10361207840507947],[119,-57,71,-0.10657477050503872],[119,-57,72,-0.10942035444301745],[119,-57,73,-0.11214837752989848],[119,-57,74,-0.11475857673667123],[119,-57,75,-0.1172508847282665],[119,-57,76,-0.1196254359615071],[119,-57,77,-0.12188257284703452],[119,-57,78,-0.12402285197527252],[119,-57,79,-0.12604705040639796],[119,-56,64,-0.07742766307639604],[119,-56,65,-0.08105711744052335],[119,-56,66,-0.08457658783174626],[119,-56,67,-0.08798460320771273],[119,-56,68,-0.09127984660194755],[119,-56,69,-0.09446116076292199],[119,-56,70,-0.09752755385724798],[119,-56,71,-0.10047820523689988],[119,-56,72,-0.10331247127047516],[119,-56,73,-0.10602989123841744],[119,-56,74,-0.10863019329243118],[119,-56,75,-0.11111330047876333],[119,-56,76,-0.1134793368256165],[119,-56,77,-0.11572863349455842],[119,-56,78,-0.11786173499598696],[119,-56,79,-0.11987940546862252],[119,-55,64,-0.07137979800052208],[119,-55,65,-0.07499204983911789],[119,-55,66,-0.07849509734095084],[119,-55,67,-0.08188746585911066],[119,-55,68,-0.08516783407308126],[119,-55,69,-0.08833503961673184],[119,-55,70,-0.09138808477044791],[119,-55,71,-0.09432614221730806],[119,-55,72,-0.09714856086332302],[119,-55,73,-0.09985487172165042],[119,-55,74,-0.10244479386102268],[119,-55,75,-0.10491824041806186],[119,-55,76,-0.10727532467374146],[119,-55,77,-0.10951636619386562],[119,-55,78,-0.11164189703362337],[119,-55,79,-0.11365266800618645],[119,-54,64,-0.06528530123006537],[119,-54,65,-0.06887966176941596],[119,-54,66,-0.07236562178772343],[119,-54,67,-0.07574170295091098],[119,-54,68,-0.07900657947785839],[119,-54,69,-0.08215908375690728],[119,-54,70,-0.08519821202652611],[119,-54,71,-0.08812313012003858],[119,-54,72,-0.09093317927443423],[119,-54,73,-0.09362788200316996],[119,-54,74,-0.09620694803320728],[119,-54,75,-0.0986702803059506],[119,-54,76,-0.10101798104235449],[119,-54,77,-0.10325035787206449],[119,-54,78,-0.10536793002665146],[119,-54,79,-0.10737143459691012],[119,-53,64,-0.05914866790680384],[119,-53,65,-0.06272445912837843],[119,-53,66,-0.06619267737966128],[119,-53,67,-0.06955184055868013],[119,-53,68,-0.07280061831945495],[119,-53,69,-0.07593783767662199],[119,-53,70,-0.07896248867423472],[119,-53,71,-0.08187373011864785],[119,-53,72,-0.08467089537549666],[119,-53,73,-0.08735349823069183],[119,-53,74,-0.08992123881566294],[119,-53,75,-0.09237400959652287],[119,-53,76,-0.09471190142742025],[119,-53,77,-0.09693520966794078],[119,-53,78,-0.09904444036462301],[119,-53,79,-0.10104031649655298],[119,-52,64,-0.05297439730557818],[119,-52,65,-0.0565309523512314],[119,-52,66,-0.0599807852540204],[119,-52,67,-0.06332241006526973],[119,-52,68,-0.06655449177225226],[119,-52,69,-0.06967585189054126],[119,-52,70,-0.07268547412055792],[119,-52,71,-0.07558251006821659],[119,-52,72,-0.07836628502968601],[119,-52,73,-0.08103630384018334],[119,-52,74,-0.08359225678702997],[119,-52,75,-0.08603402558665485],[119,-52,76,-0.08836168942579203],[119,-52,77,-0.09057553106675442],[119,-52,78,-0.09267604301683474],[119,-52,79,-0.09466393376180338],[119,-51,64,-0.04676698696939363],[119,-51,65,-0.050303650533359834],[119,-51,66,-0.05373446558695094],[119,-51,67,-0.05705794225794547],[119,-51,68,-0.06027274076740563],[119,-51,69,-0.06337767700937424],[119,-51,70,-0.06637172819478332],[119,-51,71,-0.06925403855947965],[119,-51,72,-0.07202392513638267],[119,-51,73,-0.07468088359169112],[119,-51,74,-0.07722459412537053],[119,-51,75,-0.07965492743560298],[119,-51,76,-0.08197195074745145],[119,-51,77,-0.08417593390561606],[119,-51,78,-0.0862673555313318],[119,-51,79,-0.08824690924338574],[119,-50,64,-0.04053092671965408],[119,-50,65,-0.04404705542686527],[119,-50,66,-0.047458231576948506],[119,-50,67,-0.05076296129930036],[119,-50,68,-0.05395989995178441],[119,-50,69,-0.057047857687399395],[119,-50,70,-0.06002580508517419],[119,-50,71,-0.06289287884519534],[119,-50,72,-0.06564838754778402],[119,-50,73,-0.06829181747674007],[119,-50,74,-0.07082283850688242],[119,-50,75,-0.07324131005556767],[119,-50,76,-0.07554728709844183],[119,-50,77,-0.0777410262492988],[119,-50,78,-0.07982299190410014],[119,-50,79,-0.08179386244912679],[119,-49,64,-0.03427069254135995],[119,-49,65,-0.03776565531161813],[119,-49,66,-0.041156583302351835],[119,-49,67,-0.04444197857178067],[119,-49,68,-0.04762049152010861],[119,-49,69,-0.05069092644279516],[119,-49,70,-0.05365224714806638],[119,-49,71,-0.056503582638576466],[119,-49,72,-0.05924423285723701],[119,-49,73,-0.06187367449712444],[119,-49,74,-0.06439156687570491],[119,-49,75,-0.06679775787305253],[119,-49,76,-0.06909228993431582],[119,-49,77,-0.07127540613630812],[119,-49,78,-0.07334755631827528],[119,-49,79,-0.0753094032768129],[119,-48,64,-0.027990740343592946],[119,-48,65,-0.031463918741132524],[119,-48,66,-0.03483400145321136],[119,-48,67,-0.03809948639615468],[119,-48,68,-0.04125901892061934],[119,-48,69,-0.044311397351104564],[119,-48,70,-0.04725557858972007],[119,-48,71,-0.05009068378412185],[119,-48,72,-0.05281600405962672],[119,-48,73,-0.055431006315428744],[119,-48,74,-0.057935339085141146],[119,-48,75,-0.06032883846135151],[119,-48,76,-0.06261153408444176],[119,-48,77,-0.06478365519554574],[119,-48,78,-0.06684563675370081],[119,-48,79,-0.06879812561716614],[119,-47,64,-0.021695499595125955],[119,-47,65,-0.025146288163098274],[119,-47,66,-0.028494940937367153],[119,-47,67,-0.03173995162375831],[119,-47,68,-0.03487996043410879],[119,-47,69,-0.03791375961166665],[119,-47,70,-0.04084029902076436],[119,-47,71,-0.043658691800672056],[119,-47,72,-0.04636822008364905],[119,-47,73,-0.0489683407771101],[119,-47,74,-0.05145869141013237],[119,-47,75,-0.05383909604399406],[119,-47,76,-0.05610957124698901],[119,-47,77,-0.05827033213339883],[119,-47,78,-0.06032179846667096],[119,-47,79,-0.06226460082677998],[119,-46,64,-0.015389366835002027],[119,-46,65,-0.018817173414412358],[119,-46,66,-0.022143824360578157],[119,-46,67,-0.025367809102359584],[119,-46,68,-0.028487762626157487],[119,-46,69,-0.03150247098685921],[119,-46,70,-0.034410876883069874],[119,-46,71,-0.037212085296541075],[119,-46,72,-0.03990536919581211],[119,-46,73,-0.042490175303979805],[119,-46,74,-0.04496612993082649],[119,-46,75,-0.0473330448689927],[119,-46,76,-0.04959092335444082],[119,-46,77,-0.05173996609109344],[119,-46,78,-0.053780577339690105],[119,-46,79,-0.055713371070844064],[119,-45,64,-0.009076699058396032],[119,-45,65,-0.01248094509102815],[119,-45,66,-0.015785035381017387],[119,-45,67,-0.01898745501595911],[119,-45,68,-0.022086833672895434],[119,-45,69,-0.025081951114468315],[119,-45,70,-0.027971742749375417],[119,-45,71,-0.03075530525703629],[119,-45,72,-0.033431902276485514],[119,-45,73,-0.03600097015941017],[119,-45,74,-0.0384621237875592],[119,-45,75,-0.04081516245421157],[119,-45,76,-0.04306007580995275],[119,-45,77,-0.0451970498726364],[119,-45,78,-0.04722647310158257],[119,-45,79,-0.04914894253598856],[119,-44,64,-0.002761806977606307],[119,-44,65,-0.006141927792467361],[119,-44,66,-0.009422911937982725],[119,-44,67,-0.01260324009837599],[119,-44,68,-0.015681536560131826],[119,-44,69,-0.018656574693032613],[119,-44,70,-0.021527282495508726],[119,-44,71,-0.02429274820421412],[119,-44,72,-0.026952225967843413],[119,-44,73,-0.029505141585107197],[119,-44,74,-0.03195109830709353],[119,-44,75,-0.03428988270370237],[119,-44,76,-0.036521470594402805],[119,-44,77,-0.03864603304318903],[119,-44,78,-0.04066394241778726],[119,-44,79,-0.04257577851309036],[119,-43,64,0.00355105184199056],[119,-43,65,1.9560675917440484E-4],[119,-43,66,-0.0030617393546513716],[119,-43,67,-0.006219462720442159],[119,-43,68,-0.009276182155683821],[119,-43,69,-0.012230664539990777],[119,-43,70,-0.015081830345032965],[119,-43,71,-0.017828759228700863],[119,-43,72,-0.02047069569352644],[119,-43,73,-0.023007054809276672],[119,-43,74,-0.02543742799994486],[119,-43,75,-0.02776158889483127],[119,-43,76,-0.02997949924395793],[119,-43,77,-0.032091314897697676],[119,-43,78,-0.03409739185066751],[119,-43,79,-0.03599829234986229],[119,-42,64,0.009857679970695865],[119,-42,65,0.006527446725396957],[119,-42,66,0.003294256684791552],[119,-42,67,1.596381488551124E-4],[119,-42,68,-0.0028750221552373834],[119,-42,69,-0.005808484522964452],[119,-42,70,-0.008639661786650543],[119,-42,71,-0.011367624893910189],[119,-42,72,-0.013991608550360635],[119,-42,73,-0.01651101692652257],[119,-42,74,-0.01892542942912878],[119,-42,75,-0.021234606536538192],[119,-42,76,-0.023438495698495765],[119,-42,77,-0.02553723730012114],[119,-42,78,-0.027531170690173745],[119,-42,79,-0.029420840273571836],[119,-41,64,0.016153947228122134],[119,-41,65,0.012849447282813897],[119,-41,66,0.00964091728381733],[119,-41,67,0.006529890107459191],[119,-41,68,0.0035177580984327994],[119,-41,69,6.05767635994181E-4],[119,-41,70,-0.002204986364195194],[119,-41,71,-0.004913566012489157],[119,-41,72,-0.007519196071960277],[119,-41,73,-0.010021269649302389],[119,-41,74,-0.012419353950156475],[119,-41,75,-0.014713196098551706],[119,-41,76,-0.016902729020708218],[119,-41,77,-0.018988077393079728],[119,-41,78,-0.020969563654684942],[119,-41,79,-0.022847714083708892],[119,-40,64,0.022435797921854572],[119,-40,65,0.0191575378801615],[119,-40,66,0.015974157608165673],[119,-40,67,0.01288719461170651],[119,-40,68,0.009898046923032977],[119,-40,69,0.007007967683340222],[119,-40,70,0.004218059660941353],[119,-40,71,0.001529269705161873],[119,-40,72,-0.0010576168640604733],[119,-40,73,-0.0035419819307876965],[119,-40,74,-0.005923380322126914],[119,-40,75,-0.008201545611408512],[119,-40,76,-0.010376395985732922],[119,-40,77,-0.012448040177772568],[119,-40,78,-0.014416783461876026],[119,-40,79,-0.01628313371445078],[119,-39,64,0.028699258210833523],[119,-39,65,0.025447729620498682],[119,-39,66,0.022289974286090697],[119,-39,67,0.019227534393855827],[119,-39,68,0.016261813730800267],[119,-39,69,0.013394072283850367],[119,-39,70,0.010625420774635685],[119,-39,71,0.007956815129982808],[119,-39,72,0.005389050888103375],[119,-39,73,0.0029227575405570416],[119,-39,74,5.58392809770103E-4],[119,-39,75,-0.001703763137590908],[119,-39,76,-0.003863613541627009],[119,-39,77,-0.005921250964480929],[119,-39,78,-0.007876963269925263],[119,-39,79,-0.009731239667242098],[119,-38,64,0.03494044359360371],[119,-38,65,0.03171612276874125],[119,-38,66,0.028584452934392157],[119,-38,67,0.025546981005832303],[119,-38,68,0.022605116589181407],[119,-38,69,0.019760126597460514],[119,-38,70,0.017013129802259996],[119,-38,71,0.014365091321108414],[119,-38,72,0.011816817040523286],[119,-38,73,0.009368947974824238],[119,-38,74,0.00702195456049115],[119,-38,75,0.004776130886366636],[119,-38,76,0.002631588859463685],[119,-38,77,5.882523064968392E-4],[119,-38,78,-0.001354148988913506],[119,-38,79,-0.0031960853133380374],[119,-37,64,0.041155566521600906],[119,-37,65,0.03795891438469978],[119,-37,66,0.0348537758104015],[119,-37,67,0.03184170248935936],[119,-37,68,0.028924109908311957],[119,-37,69,0.02610227198329973],[119,-37,70,0.023377315628484996],[119,-37,71,0.0207502152606599],[119,-37,72,0.018221787239425358],[119,-37,73,0.015792684243120858],[119,-37,74,0.013463389580290475],[119,-37,75,0.011234211436978336],[119,-37,76,0.009105277059621053],[119,-37,77,0.007076526873651234],[119,-37,78,0.0051477085377635845],[119,-37,79,0.003318370933867998],[119,-36,64,0.04734094413713441],[119,-36,65,0.04417240608128159],[119,-36,66,0.04109422958957798],[119,-36,67,0.03810797117213116],[119,-36,68,0.03521505225494914],[119,-36,69,0.032416753830574296],[119,-36,70,0.029714211044309713],[119,-36,71,0.02710840771612122],[119,-36,72,0.02460017079820287],[119,-36,73,0.02219016476827873],[119,-36,74,0.019878885958434123],[119,-36,75,0.017666656819761983],[119,-36,76,0.015553620122598533],[119,-36,77,0.013539733092456596],[119,-36,78,0.011624761481613621],[119,-36,79,0.009808273576373705],[119,-35,64,0.053493006136348],[119,-35,65,0.05035301190813657],[119,-35,66,0.04730221326900175],[119,-35,67,0.044342171590312285],[119,-35,68,0.04147431429314652],[119,-35,69,0.038699929516588294],[119,-35,70,0.03602016072160541],[119,-35,71,0.03343600123059309],[119,-35,72,0.030948288702572158],[119,-35,73,0.028557699544111026],[119,-35,74,0.02626474325576833],[119,-35,75,0.02406975671434075],[119,-35,76,0.021972898390687723],[119,-35,77,0.01997414250324736],[119,-35,78,0.018073273107191534],[119,-35,79,0.016269878119249626],[119,-34,64,0.05960830275695217],[119,-34,65,0.05649726636054431],[119,-34,66,0.05347424619655339],[119,-34,67,0.05054080853715659],[119,-34,68,0.047698386851459995],[119,-34,69,0.04494827649169064],[119,-34,70,0.04229162931496444],[119,-34,71,0.0397294482407099],[119,-34,72,0.03726258174373298],[119,-34,73,0.03489171828299986],[119,-34,74,0.032617380665928675],[119,-34,75,0.030439920348476313],[119,-34,76,0.028359511670794202],[119,-34,77,0.02637614602856131],[119,-34,78,0.024489625979952634],[119,-34,79,0.02269955928826073],[119,-33,64,0.06568351289099972],[119,-33,65,0.06260183251381024],[119,-33,66,0.05960697622605471],[119,-33,67,0.05670051523801911],[119,-33,68,0.053883889116960626],[119,-33,69,0.05115840049142506],[119,-33,70,0.04852520969113139],[119,-33,71,0.04598532932249988],[119,-33,72,0.0435396187798156],[119,-33,73,0.04118877869209803],[119,-33,74,0.03893334530547132],[119,-33,75,0.03677368480131937],[119,-33,76,0.03470998755000099],[119,-33,77,0.03274226230023347],[119,-33,78,0.030870330304100912],[119,-33,79,0.02909381937770672],[119,-32,64,0.07171545232238319],[119,-32,65,0.068663510282851],[119,-32,66,0.06569718799804714],[119,-32,67,0.06281806165143367],[119,-32,68,0.06002757695572669],[119,-32,69,0.05732704387555643],[119,-32,70,0.05471763128568441],[119,-32,71,0.052200361564856745],[119,-32,72,0.04977610512528241],[119,-32,73,0.047445574877809094],[119,-32,74,0.045209320632591754],[119,-32,75,0.04306772343553522],[119,-32,76,0.041020989840289346],[119,-32,77,0.03906914611590262],[119,-32,78,0.037212032390091854],[119,-32,79,0.035449296728148005],[119,-31,64,0.07770108208920334],[119,-31,65,0.07467924480711885],[119,-31,66,0.07174181134635782],[119,-31,67,0.06889036289641282],[119,-31,68,0.06612635135997103],[119,-31,69,0.06345109409412408],[119,-31,70,0.06086576858712578],[119,-31,71,0.05837140707077926],[119,-31,72,0.05596889106843961],[119,-31,73,0.053658945878704234],[119,-31,74,0.051442134994589384],[119,-31,75,0.04931885445847117],[119,-31,76,0.04728932715257095],[119,-31,77,0.04535359702508979],[119,-31,78,0.04351152325195162],[119,-31,79,0.04176277433417286],[119,-30,64,0.08363751697117017],[119,-30,65,0.08064613496102468],[119,-30,66,0.07773792983061434],[119,-30,67,0.0749144878061263],[119,-30,68,0.07217726702196092],[119,-30,69,0.06952759228068695],[119,-30,70,0.0669666497485395],[119,-30,71,0.06449548158654062],[119,-30,72,0.062114980517223306],[119,-30,73,0.059825884327038725],[119,-30,74,0.05762877030423963],[119,-30,75,0.05552404961252144],[119,-30,76,0.05351196160019689],[119,-30,77,0.05159256804501433],[119,-30,78,0.04976574733457639],[119,-30,79,0.04803118858237465],[119,-29,64,0.08952203410171489],[119,-29,65,0.08656144198954152],[119,-29,66,0.08368278939438822],[119,-29,67,0.0808876676076401],[119,-29,68,0.07817754103441121],[119,-29,69,0.07555374197243547],[119,-29,70,0.07301746532649522],[119,-29,71,0.07056976325846065],[119,-29,72,0.06821153977292982],[119,-29,73,0.06594354523853962],[119,-29,74,0.06376637084474823],[119,-29,75,0.06168044299436637],[119,-29,76,0.059686017631614297],[119,-29,77,0.05778317450581527],[119,-29,78,0.0559718113706803],[119,-29,79,0.054251638119203416],[119,-28,64,0.09535208170498677],[119,-28,65,0.09242259826915722],[119,-28,66,0.08957380714913854],[119,-28,67,0.08680730472788478],[119,-28,68,0.08412456171751959],[119,-28,69,0.08152691795734268],[119,-28,70,0.07901557714736651],[119,-28,71,0.07659160151745725],[119,-28,72,0.07425590643206892],[119,-28,73,0.07200925493064003],[119,-28,74,0.06985225220345759],[119,-28,75,0.06778534000325676],[119,-28,76,0.06580879099234538],[119,-28,77,0.0639227030253533],[119,-28,78,0.06212699336756755],[119,-28,79,0.060421392848869826],[119,-27,64,0.10112528795786746],[119,-27,65,0.09822721619431463],[119,-27,66,0.09540858028409038],[119,-27,67,0.09267098172599308],[119,-27,68,0.09001589757278672],[119,-27,69,0.08744467524849375],[119,-27,70,0.08495852730120923],[119,-27,71,0.0825585260915147],[119,-27,72,0.08024559841647716],[119,-27,73,0.07802052006930316],[119,-27,74,0.07588391033445396],[119,-27,75,0.07383622641848997],[119,-27,76,0.07187775781643202],[119,-27,77,0.07000862061374102],[119,-27,78,0.06822875172387577],[119,-27,79,0.06653790306144858],[119,-26,64,0.10683946997671057],[119,-26,65,0.1039730971890429],[119,-26,66,0.10118489510175532],[119,-26,67,0.09847647035170848],[119,-26,68,0.09584930636331856],[119,-26,69,0.09330475818529482],[119,-26,70,0.09084404726289408],[119,-26,71,0.08846825614576892],[119,-26,72,0.08617832313139073],[119,-26,73,0.08397503684412577],[119,-26,74,0.08185903074976342],[119,-26,75,0.07983077760576796],[119,-26,76,0.07789058384703929],[119,-26,77,0.07603858390728746],[119,-26,78,0.07427473447597766],[119,-26,79,0.07259880869086643],[119,-25,64,0.11249264292895644],[119,-25,65,0.10965824084393128],[119,-25,66,0.1069007361792419],[119,-25,67,0.10422174073001611],[119,-25,68,0.1016227443207639],[119,-25,69,0.09910510966171171],[119,-25,70,0.09667006714064919],[119,-25,71,0.09431870955036037],[119,-25,72,0.09205198675162862],[119,-25,73,0.08987070027188349],[119,-25,74,0.08777549783929661],[119,-25,75,0.08576686785259424],[119,-25,76,0.08384513378637204],[119,-25,77,0.08201044853201767],[119,-25,78,0.08026278867419911],[119,-25,79,0.07860194870293569],[119,-24,64,0.11808302926976744],[119,-24,65,0.11528085417859202],[119,-24,66,0.11255429565550579],[119,-24,67,0.10990497067214389],[119,-24,68,0.10733437547903824],[119,-24,69,0.10484388048169224],[119,-24,70,0.10243472505216056],[119,-24,71,0.10010801227620902],[119,-24,72,0.09786470363604216],[119,-24,73,0.09570561362866492],[119,-24,74,0.09363140431969219],[119,-24,75,0.09164257983286439],[119,-24,76,0.08973948077506155],[119,-24,77,0.08792227859692103],[119,-24,78,0.08619096988901143],[119,-24,79,0.08454537061358769],[119,-23,64,0.12360906810338901],[119,-23,65,0.12083936102931414],[119,-23,66,0.11814398264424053],[119,-23,67,0.11552455511263626],[119,-23,68,0.11298258113453141],[119,-23,69,0.11051943884146487],[119,-23,70,0.10813637662793185],[119,-23,71,0.10583450791840554],[119,-23,72,0.10361480586992144],[119,-23,73,0.10147809801029017],[119,-23,74,0.09942506081175351],[119,-23,75,0.09745621420033856],[119,-23,76,0.09557191600071024],[119,-23,77,0.09377235631661474],[119,-23,78,0.09205755184688136],[119,-23,79,0.0904273401369936],[119,-22,64,0.1290694246693853],[119,-22,65,0.12633241156206132],[119,-22,66,0.12366843277255912],[119,-22,67,0.12107911567264917],[119,-22,68,0.11856596943294972],[119,-22,69,0.1161303799388701],[119,-22,70,0.11377360464205011],[119,-22,71,0.11149676734737002],[119,-22,72,0.10930085293551517],[119,-22,73,0.10718670202116698],[119,-22,74,0.10515500554663004],[119,-22,75,0.10320629931115477],[119,-22,76,0.10134095843574975],[119,-22,77,0.09955919176358397],[119,-22,78,0.09786103619593933],[119,-22,79,0.09624635096372913],[119,-21,64,0.134462999953898],[119,-21,65,0.13175889191095913],[119,-21,66,0.12912651784561746],[119,-21,67,0.12656751034961933],[119,-21,68,0.12408338508294714],[119,-21,69,0.12167553570987477],[119,-21,70,0.11934522877051601],[119,-21,71,0.11709359848793599],[119,-21,72,0.11492164151081663],[119,-21,73,0.11283021159173956],[119,-21,74,0.11082001420090437],[119,-21,75,0.10889160107553497],[119,-21,76,0.10704536470477166],[119,-21,77,0.10528153275014984],[119,-21,78,0.10360016240162184],[119,-21,79,0.10200113466914273],[119,-20,64,0.13978894042562284],[119,-20,65,0.13711793394196747],[119,-20,66,0.13451735563687006],[119,-20,67,0.13198884333299543],[119,-20,68,0.1295339191962307],[119,-20,69,0.12715398469195804],[119,-20,70,0.1248503154768199],[119,-20,71,0.12262405622604056],[119,-20,72,0.12047621539629905],[119,-20,73,0.11840765992421376],[119,-20,74,0.11641910986025972],[119,-20,75,0.1145111329383679],[119,-20,76,0.11268413908100694],[119,-20,77,0.11093837483984792],[119,-20,78,0.10927391777196527],[119,-20,79,0.10769067075160099],[119,-19,64,0.14504664789667365],[119,-19,65,0.14240892514190706],[119,-19,66,0.1398403198041287],[119,-19,67,0.13734247494620533],[119,-19,68,0.13491691925431515],[119,-19,69,0.13256506201453977],[119,-19,70,0.13028818802494135],[119,-19,71,0.12808745244319708],[119,-19,72,0.1259638755697774],[119,-19,73,0.12391833756673232],[119,-19,74,0.12195157311190863],[119,-19,75,0.12006416598884251],[119,-19,76,0.11825654361213334],[119,-19,77,0.11652897148839236],[119,-19,78,0.11488154761272906],[119,-19,79,0.11331419680079236],[119,-18,64,0.15023578950845462],[119,-18,65,0.1476315186329641],[119,-18,66,0.1450950499315513],[119,-18,67,0.14262803171498262],[119,-18,68,0.1402319992020521],[119,-18,69,0.13790836951657992],[119,-18,70,0.13565843661989663],[119,-18,71,0.13348336617887835],[119,-18,72,0.13138419036952265],[119,-18,73,0.12936180261612984],[119,-18,74,0.12741695226591032],[119,-18,75,0.12555023919926467],[119,-18,76,0.1237621083755398],[119,-18,77,0.12205284431435859],[119,-18,78,0.12042256551248165],[119,-18,79,0.11887121879622065],[119,-17,64,0.15535630784226118],[119,-17,65,0.15278564331238664],[119,-17,66,0.15028146169726864],[119,-17,67,0.14784541656176542],[119,-17,68,0.14547904966764136],[119,-17,69,0.1431837859910574],[119,-17,70,0.14096092867554255],[119,-17,71,0.13881165392051398],[119,-17,72,0.13673700580533443],[119,-17,73,0.1347378910489716],[119,-17,74,0.13281507370508028],[119,-17,75,0.1309691697927542],[119,-17,76,0.12920064186274993],[119,-17,77,0.12750979349928127],[119,-17,78,0.1258967637573435],[119,-17,79,0.12436152153558344],[119,-16,64,0.16040843115477177],[119,-16,65,0.15787151411754385],[119,-16,66,0.15539975716682464],[119,-16,67,0.15299481912633517],[119,-16,68,0.15065824830929908],[119,-16,69,0.1483914775564985],[119,-16,70,0.14619581920980862],[119,-16,71,0.14407246002127816],[119,-16,72,0.14202245599774566],[119,-16,73,0.1400467271810496],[119,-16,74,0.1381460523636655],[119,-16,75,0.13632106374000352],[119,-16,76,0.1345722414931787],[119,-16,77,0.13289990831734722],[119,-16,78,0.13130422387556895],[119,-16,79,0.1297851791932162],[119,-15,64,0.1653926837385259],[119,-15,65,0.16288964241643433],[119,-15,66,0.160450435212515],[119,-15,67,0.15807672621279079],[119,-15,68,0.15577007028867285],[119,-15,69,0.15353190815564932],[119,-15,70,0.15136356136745088],[119,-15,71,0.14926622724576044],[119,-15,72,0.1472409737454533],[119,-15,73,0.1452887342554321],[119,-15,74,0.1434103023348825],[119,-15,75,0.1416063263851891],[119,-15,76,0.13987730425732048],[119,-15,77,0.13822357779477645],[119,-15,78,0.1366453273120617],[119,-15,79,0.13514256600869845],[119,-14,64,0.170309896407162],[119,-14,65,0.16784084652342568],[119,-14,66,0.16543430205840626],[119,-14,67,0.1630919323626301],[119,-14,68,0.1608152988707776],[119,-14,69,0.15860585018106477],[119,-14,70,0.1564649170701009],[119,-14,71,0.15439370744328784],[119,-14,72,0.1523933012207458],[119,-14,73,0.15046464515883307],[119,-14,74,0.1486085476070843],[119,-14,75,0.14682567320080475],[119,-14,76,0.145116537489133],[119,-14,77,0.14348150149866234],[119,-14,78,0.14192076623258687],[119,-14,79,0.14043436710538426],[119,-13,64,0.17516121710551835],[119,-13,65,0.17272626234032107],[119,-13,66,0.1703524819511304],[119,-13,67,0.1680415505540399],[119,-13,68,0.16579503615055313],[119,-13,69,0.1636143952277137],[119,-13,70,0.1615009677937077],[119,-13,71,0.15945597234900466],[119,-13,72,0.15748050079302733],[119,-13,73,0.15557551326640684],[119,-13,74,0.1537418329286605],[119,-13,75,0.15198014067151855],[119,-13,76,0.15029096976771994],[119,-13,77,0.14867470045536468],[119,-13,78,0.14713155445778636],[119,-13,79,0.1456615894389619],[119,-12,64,0.17994812164474017],[119,-12,65,0.17754735412290212],[119,-12,66,0.17520642795660646],[119,-12,67,0.17292702302754348],[119,-12,68,0.17071071390619408],[119,-12,69,0.16855896497275358],[119,-12,70,0.16647312547352655],[119,-12,71,0.16445442451285852],[119,-12,72,0.16250396598059424],[119,-12,73,0.1606227234151194],[119,-12,74,0.15881153480182364],[119,-12,75,0.15707109730721003],[119,-12,76,0.1554019619484721],[119,-12,77,0.15380452819862445],[119,-12,78,0.15227903852715352],[119,-12,79,0.1508255728762028],[119,-11,64,0.18467242456211974],[119,-11,65,0.18230592537266888],[119,-11,66,0.17999793288240673],[119,-11,67,0.17775013223772562],[119,-11,68,0.17556410457896876],[119,-11,69,0.17344132218218766],[119,-11,70,0.17138314353637096],[119,-11,71,0.16939080835620746],[119,-11,72,0.1674654325303746],[119,-11,73,0.16560800300540846],[119,-11,74,0.16381937260499302],[119,-11,75,0.1621002547848963],[119,-11,76,0.1604512183233684],[119,-11,77,0.15887268194709592],[119,-11,78,0.1573649088926723],[119,-11,79,0.15592800140360008],[119,-10,64,0.18933629010588882],[119,-10,65,0.1870041298540034],[119,-10,66,0.1847291403259973],[119,-10,67,0.18251301193126113],[119,-10,68,0.18035733237975582],[119,-10,69,0.17826358184463742],[119,-10,70,0.17623312806035463],[119,-10,71,0.17426722135628048],[119,-10,72,0.17236698962586416],[119,-10,73,0.17053343323136594],[119,-10,74,0.1687674198440099],[119,-10,75,0.1670696792197799],[119,-10,76,0.165440797910679],[119,-10,77,0.16388121391154087],[119,-10,78,0.1623912112423579],[119,-10,79,0.1609709144661392],[119,-9,64,0.19394224334481358],[119,-9,65,0.1916444827365995],[119,-9,66,0.18940255584869248],[119,-9,67,0.18721815835109],[119,-9,68,0.18509288452214068],[119,-9,69,0.18302822243206796],[119,-9,70,0.18102554906196666],[119,-9,71,0.17908612535832924],[119,-9,72,0.17721109122309597],[119,-9,73,0.1754014604392804],[119,-9,74,0.17365811553201993],[119,-9,75,0.1719818025652592],[119,-9,76,0.1703731258739024],[119,-9,77,0.16883254273151482],[119,-9,78,0.167360357953537],[119,-9,79,0.16595671843603188],[119,-8,64,0.19849318140278382],[119,-8,65,0.19622987186335572],[119,-8,66,0.19402105827552418],[119,-8,67,0.19186844156693772],[119,-8,68,0.1897736225822706],[119,-8,69,0.18773809728767155],[119,-8,70,0.18576325191068],[119,-8,71,0.18385035801567629],[119,-8,72,0.1820005675148496],[119,-8,73,0.18021490761474568],[119,-8,74,0.1784942756982325],[119,-8,75,0.1768394341421039],[119,-8,76,0.17525100507014713],[119,-8,77,0.17372946504175835],[119,-8,78,0.1722751396760731],[119,-8,79,0.17088819821162637],[119,-7,64,0.2029923848181654],[119,-7,65,0.2007635691434999],[119,-7,66,0.19858791112078955],[119,-7,67,0.1964671169319453],[119,-7,68,0.19440279398523375],[119,-7,69,0.19239644614066576],[119,-7,70,0.19044946887085645],[119,-7,71,0.18856314435741595],[119,-7,72,0.18673863652285871],[119,-7,73,0.18497698599808943],[119,-7,74,0.18327910502530909],[119,-7,75,0.18164577229655554],[119,-7,76,0.18007762772770897],[119,-7,77,0.17857516716804278],[119,-7,78,0.17713873704529137],[119,-7,79,0.17576852894624262],[119,-6,64,0.20744352902802543],[119,-6,65,0.20524924207105122],[119,-6,66,0.2031067741393856],[119,-6,67,0.20101783666551942],[119,-6,68,0.19898404361806887],[119,-6,69,0.19700690674812138],[119,-6,70,0.19508783077105474],[119,-6,71,0.19322810848388305],[119,-6,72,0.19142891581812393],[119,-6,73,0.18969130682823854],[119,-6,74,0.1880162086154944],[119,-6,75,0.1864044161874593],[119,-6,76,0.18485658725295984],[119,-6,77,0.18337323695258745],[119,-6,78,0.18195473252471595],[119,-6,79,0.18060128790704766],[119,-5,64,0.21185069597734885],[119,-5,65,0.2096909653687432],[119,-5,66,0.20758171500405675],[119,-5,67,0.20552466156252347],[119,-5,68,0.20352142556953223],[119,-5,69,0.20157352666394257],[119,-5,70,0.19968237880087203],[119,-5,71,0.19784928539001245],[119,-5,72,0.19607543436946473],[119,-5,73,0.19436189321514585],[119,-5,74,0.19270960388562142],[119,-5,75,0.1911193777025636],[119,-5,76,0.1895918901666782],[119,-5,77,0.18812767570917532],[119,-5,78,0.1867271223787521],[119,-5,79,0.18539046646410506],[119,-4,64,0.21621838585300357],[119,-4,65,0.2140932327571613],[119,-4,66,0.21201722110830268],[119,-4,67,0.2099920728285628],[119,-4,68,0.20801941499637144],[119,-4,69,0.20610077513474756],[119,-4,70,0.20423757643506335],[119,-4,71,0.20243113291633819],[119,-4,72,0.2006826445200509],[119,-4,73,0.19899319214052325],[119,-4,74,0.19736373259072792],[119,-4,75,0.1957950935037237],[119,-4,76,0.1942879681695573],[119,-4,77,0.19284291030770861],[119,-4,78,0.19146032877504982],[119,-4,79,0.190140482209331],[119,-3,64,0.22055152894259433],[119,-3,65,0.21846096884923727],[119,-3,66,0.21641821149509433],[119,-3,67,0.21442498404150723],[119,-3,68,0.21248292011624859],[119,-3,69,0.21059355512279632],[119,-3,70,0.20875832148508344],[119,-3,71,0.20697854382777492],[119,-3,72,0.20525543409206137],[119,-3,73,0.2035900865870265],[119,-3,74,0.2019834729764367],[119,-3,75,0.20043643720115933],[119,-3,76,0.19894969033704446],[119,-3,77,0.19752380538835368],[119,-3,78,0.1961592120166994],[119,-3,79,0.19485619120551112],[119,-2,64,0.2248554976182925],[119,-2,65,0.22279954117018685],[119,-2,66,0.22079004891148146],[119,-2,67,0.21882875323934026],[119,-2,68,0.21691729432740392],[119,-2,69,0.2150572154560536],[119,-2,70,0.21324995827814608],[119,-2,71,0.21149685802027662],[119,-2,72,0.209799138619561],[119,-2,73,0.2081579077959863],[119,-2,74,0.2065741520601896],[119,-2,75,0.2050487316568591],[119,-2,76,0.20358237544360425],[119,-2,77,0.20217567570536832],[119,-2,78,0.20082908290435342],[119,-2,79,0.1995429003654724],[119,-1,64,0.2291361184454318],[119,-1,65,0.22711477230267874],[119,-1,66,0.22513855198888255],[119,-1,67,0.22320919513411563],[119,-1,68,0.22132834845484206],[119,-1,69,0.2194975631051701],[119,-1,70,0.21771828996357512],[119,-1,71,0.2159918748551496],[119,-1,72,0.2143195537093764],[119,-1,73,0.21270244765346302],[119,-1,74,0.21114155804111212],[119,-1,75,0.20963776141690893],[119,-1,76,0.2081918044161779],[119,-1,77,0.20680429860038463],[119,-1,78,0.20547571522804864],[119,-1,79,0.20420637996118007],[119,0,64,0.23339968441597525],[119,0,65,0.23141295215734559],[119,0,66,0.22947000754916314],[119,0,67,0.22757259345213932],[119,0,68,0.2257223631231542],[119,0,69,0.2239208755874944],[119,0,70,0.22216959094656563],[119,0,71,0.22046986562113402],[119,0,72,0.21882294753008136],[119,0,73,0.2172299712047363],[119,0,74,0.21569195283862586],[119,0,75,0.21420978527285583],[119,0,76,0.21278423291695603],[119,0,77,0.21141592660526654],[119,0,78,0.21010535838884237],[119,0,79,0.2088528762628794],[119,1,64,0.23765296730696883],[119,1,65,0.235700850368746],[119,1,66,0.23379118303661606],[119,1,67,0.23192571340048262],[119,1,68,0.23010610125608644],[119,1,69,0.22833391349822796],[119,1,70,0.22661061944947058],[119,1,71,0.22493758612436843],[119,1,72,0.22331607342921345],[119,1,73,0.22174722929735013],[119,1,74,0.22023208475992107],[119,1,75,0.21877154895223172],[119,1,76,0.21736640405558438],[119,1,77,0.21601730017465592],[119,1,78,0.21472475015038728],[119,1,79,0.21348912430839928],[119,2,64,0.250402599546789],[119,2,65,0.24855433013909806],[119,2,66,0.24674449638152723],[119,2,67,0.24497486204951818],[119,2,68,0.2432471065532077],[119,2,69,0.24156282039361676],[119,2,70,0.239923500554317],[119,2,71,0.23833054582862567],[119,2,72,0.23678525208231882],[119,2,73,0.2352888074519085],[119,2,74,0.23384228747835767],[119,2,75,0.2324466501764081],[119,2,76,0.2311027310393814],[119,2,77,0.2298112379795213],[119,2,78,0.2285727462038486],[119,2,79,0.2273876930255444],[119,3,64,0.2503997674890781],[119,3,65,0.2485515113431359],[119,3,66,0.2467416913210132],[119,3,67,0.2449720711880236],[119,3,68,0.24324433034391335],[119,3,69,0.24156005927906166],[119,3,70,0.23992075496615617],[119,3,71,0.2383278161873985],[119,3,72,0.23678253879722722],[119,3,73,0.23528611092060692],[119,3,74,0.23383960808675275],[119,3,75,0.2324439882984709],[119,3,76,0.2311000870369705],[119,3,77,0.22980861220221738],[119,3,78,0.22857013898880252],[119,3,79,0.22738510469733564],[119,4,64,0.2503900043735339],[119,4,65,0.24854179394558118],[119,4,66,0.2467320212744601],[119,4,67,0.244962450090567],[119,4,68,0.24323475975783038],[119,4,69,0.2415505407299423],[119,4,70,0.23991128994206967],[119,4,71,0.23831840613809396],[119,4,72,0.23677318513337042],[119,4,73,0.2352768150130542],[119,4,74,0.23383037126586315],[119,4,75,0.23243481185345627],[119,4,76,0.23109097221528618],[119,4,77,0.22979956020899384],[119,4,78,0.22856115098631835],[119,4,79,0.22737618180453367],[119,5,64,0.25461881062953945],[119,5,65,0.25280531155793173],[119,5,66,0.251028915815733],[119,5,67,0.24929139228710728],[119,5,68,0.2475944267973742],[119,5,69,0.2459396175902973],[119,5,70,0.24432847074085606],[119,5,71,0.24276239550354728],[119,5,72,0.24124269959620803],[119,5,73,0.2397705844194089],[119,5,74,0.2383471402112839],[119,5,75,0.2369733411379804],[119,5,76,0.23565004031958325],[119,5,77,0.23437796479158346],[119,5,78,0.23315771040186595],[119,5,79,0.23198973664322287],[119,6,64,0.2588319796274308],[119,6,65,0.2570532586470739],[119,6,66,0.25531030926491494],[119,6,67,0.25360490546407377],[119,6,68,0.25193873947489137],[119,6,69,0.25031341727332407],[119,6,70,0.24873045401482696],[119,6,71,0.24719126940376768],[119,6,72,0.24569718299836907],[119,6,73,0.2442494094512203],[119,6,74,0.24284905368523546],[119,6,75,0.24149710600522756],[119,6,76,0.2401944371449667],[119,6,77,0.2389417932497836],[119,6,78,0.2377397907946952],[119,6,79,0.2365889114380617],[119,7,64,0.26302520836622617],[119,7,65,0.26128134720898843],[119,7,66,0.2595719293987329],[119,7,67,0.2578987339482175],[119,7,68,0.256263459421441],[119,7,69,0.254667719453205],[119,7,70,0.25311303820416736],[119,7,71,0.2516008457514366],[119,7,72,0.250132473414696],[119,7,73,0.24870914901790375],[119,7,74,0.24733199208644563],[119,7,75,0.24600200897990887],[119,7,76,0.24472008796034517],[119,7,77,0.24348699419608455],[119,7,78,0.2423033647010756],[119,7,79,0.24116970320976594],[119,8,64,0.26719421844686847],[119,8,65,0.2654853123613368],[119,8,66,0.26380952564820237],[119,8,67,0.26216864226635983],[119,8,68,0.26056436702741015],[119,8,69,0.2589983211364591],[119,8,70,0.25747203766841614],[119,8,71,0.25598695697984164],[119,8,72,0.25454442205633077],[119,8,73,0.2531456737954825],[119,8,74,0.25179184622532746],[119,8,75,0.25048396165838616],[119,8,76,0.24922292578122218],[119,8,77,0.24800952267955434],[119,8,78,0.24684440979890554],[119,8,79,0.24572811284079543],[119,9,64,0.27133475901261],[119,9,65,0.2696609153268602],[119,9,66,0.2680188721238437],[119,9,67,0.26641041821122974],[119,9,68,0.2648372645477754],[119,9,69,0.2633010398054393],[119,9,70,0.26180328586700924],[119,9,71,0.260345453259286],[119,9,72,0.2589288965218166],[119,9,73,0.25755486951122025],[119,9,74,0.2562245206409859],[119,9,75,0.2549388880569091],[119,9,76,0.253698894748034],[119,9,77,0.252505343593165],[119,9,78,0.2513589123429263],[119,9,79,0.2502601485373732],[119,10,64,0.2754426096351528],[119,10,65,0.27380394636206884],[119,10,66,0.27219577058573996],[119,10,67,0.27061987585171177],[119,10,68,0.2690779791513646],[119,10,69,0.2675717165054326],[119,10,70,0.26610263848305005],[119,10,71,0.26467220565636645],[119,10,72,0.26328178399072655],[119,10,73,0.2619326401704519],[119,10,74,0.2606259368601138],[119,10,75,0.25936272790145154],[119,10,76,0.25814395344581387],[119,10,77,0.25697043502218375],[119,10,78,0.25584287054075905],[119,10,79,0.25476182923210466],[119,11,64,0.2795135831463324],[119,11,65,0.27791022763100515],[119,11,66,0.2763360533582196],[119,11,67,0.2747928584872858],[119,11,68,0.27328236591389543],[119,11,69,0.2718062188751417],[119,11,70,0.27036597649008276],[119,11,71,0.26896310923589234],[119,11,72,0.26759899435958934],[119,11,73,0.26627491122538754],[119,11,74,0.264992036597552],[119,11,75,0.2637514398589181],[119,11,76,0.2625540781649502],[119,11,77,0.26140079153339874],[119,11,78,0.26029229786953234],[119,11,79,0.2592291879269557],[119,12,64,0.2835435284154517],[119,12,65,0.28197561602419124],[119,12,66,0.28043558618927267],[119,12,67,0.2789252415467705],[119,12,68,0.27744631075490456],[119,12,69,0.2760004441206614],[119,12,70,0.2745892091619829],[119,12,71,0.27321408610556075],[119,12,72,0.2718764633202297],[119,12,73,0.27057763268600177],[119,12,74,0.26931878489862726],[119,12,75,0.2681010047098387],[119,12,76,0.2669252661031536],[119,12,77,0.2657924274052965],[119,12,78,0.2647032263332176],[119,12,79,0.2636582749767137],[119,13,64,0.2875283330723691],[119,13,65,0.28599600592286356],[119,13,66,0.28449027105480684],[119,13,67,0.2830129354314759],[119,13,68,0.2815657333186722],[119,13,69,0.28015032193305606],[119,13,70,0.2787682770260708],[119,13,71,0.2774210884034966],[119,13,72,0.27611015538062933],[119,13,73,0.2748367821731221],[119,13,74,0.27360217322337965],[119,13,75,0.27240742846265803],[119,13,76,0.27125353850874834],[119,13,77,0.27014137979930397],[119,13,78,0.26907170966078664],[119,13,79,0.2680451613130418],[119,14,64,0.2914639261761203],[119,14,65,0.28996733190827284],[119,14,66,0.2884960489075185],[119,14,67,0.287051888302537],[119,14,68,0.2856365897989158],[119,14,69,0.28425181734931015],[119,14,70,0.2828991547592194],[119,14,71,0.2815801012284246],[119,14,72,0.28029606682807723],[119,14,73,0.2790483679134784],[119,14,74,0.2778382224724415],[119,14,75,0.27666674540938646],[119,14,76,0.2755349437650477],[119,14,77,0.2744437118718526],[119,14,78,0.27339382644494803],[119,14,79,0.2723859416088851],[119,15,64,0.2953462808292594],[119,15,65,0.29388557141623606],[119,15,66,0.2924489023705665],[119,15,67,0.29103808881262233],[119,15,68,0.28965487570744386],[119,15,69,0.28830093355684155],[119,15,70,0.2869778540271491],[119,15,71,0.28568714551266955],[119,15,72,0.2844302286348054],[119,15,73,0.2832084316769122],[119,15,74,0.2820229859547686],[119,15,75,0.2808750211228106],[119,15,76,0.2797655604160123],[119,15,77,0.27869551582746993],[119,15,78,0.27766568322166746],[119,15,79,0.27667673738343224],[119,16,64,0.29917141673778136],[119,16,65,0.2977467473368033],[119,16,66,0.2963448583759118],[119,16,67,0.2949675687818747],[119,16,68,0.29361662858662835],[119,16,69,0.29229371464144077],[119,16,70,0.29100042626676814],[119,16,71,0.28973828083783976],[119,16,72,0.2885087093059648],[119,16,73,0.28731305165560084],[119,16,74,0.28615255229707665],[119,16,75,0.2850283553951163],[119,16,76,0.2839415001330467],[119,16,77,0.2828929159127478],[119,16,78,0.28188341749032086],[119,16,79,0.280913700047484],[119,17,64,0.3029354027168062],[119,17,65,0.30154693055921933],[119,17,66,0.30017999074750257],[119,17,67,0.2988364058182673],[119,17,68,0.29751793066588056],[119,17,69,0.2962262482788166],[119,17,70,0.29496296541174394],[119,17,71,0.293729608193383],[119,17,72,0.29252761767013075],[119,17,73,0.2913583452854853],[119,17,74,0.2902230482951736],[119,17,75,0.28912288511811657],[119,17,76,0.28805891062312555],[119,17,77,0.2870320713513819],[119,17,78,0.2860432006746765],[119,17,79,0.28509301388942143],[119,18,64,0.3066343591418121],[119,18,65,0.3052822424619648],[119,18,66,0.3039504227290905],[119,18,67,0.3026407258821586],[119,18,68,0.3013549114619119],[119,18,69,0.3000946683695311],[119,18,70,0.29886161056108335],[119,18,71,0.297657272677791],[119,18,72,0.2964831056121135],[119,18,73,0.29534047200967783],[119,18,74,0.2942306417069608],[119,18,75,0.2931547871048561],[119,18,76,0.29211397847802056],[119,18,77,0.2911091792200518],[119,18,78,0.2901412410244741],[119,18,79,0.2892108990015446],[119,19,64,0.3102644603455208],[119,19,65,0.30894885734798444],[119,19,66,0.30765232945678245],[119,19,67,0.30637670579515286],[119,19,68,0.30512375032288613],[119,19,69,0.30389515761742986],[119,19,70,0.3026925485908326],[119,19,71,0.3015174661425612],[119,19,72,0.3003713707481839],[119,19,73,0.2992556359839568],[119,19,74,0.2981715439872154],[119,19,75,0.29712028085270403],[119,19,76,0.29610293196473886],[119,19,77,0.2951204772652545],[119,19,78,0.29417378645771436],[119,19,79,0.2932636141468933],[119,20,64,0.3138219369605275],[119,20,65,0.31254300482519154],[119,20,66,0.3112819403764222],[119,20,67,0.3100405756933587],[119,20,68,0.30882067891655707],[119,20,69,0.3076239500516642],[119,20,70,0.30645201670899047],[119,20,71,0.3053064297790136],[119,20,72,0.3041886590438107],[119,20,73,0.3031000887244503],[119,20,74,0.30204201296425054],[119,20,75,0.30101563124803427],[119,20,76,0.3000220437572756],[119,20,77,0.2990622466611924],[119,20,78,0.29813712734375886],[119,20,79,0.29724745956665155],[119,21,64,0.31730307820748405],[119,21,65,0.31606097213205897],[119,21,66,0.3148355416056075],[119,21,67,0.313628621424851],[119,21,68,0.3124419836621964],[119,21,69,0.31127733349210657],[119,21,70,0.3101363049534355],[119,21,71,0.30902045664776057],[119,21,72,0.30793126737370785],[119,21,73,0.306870131697302],[119,21,74,0.30583835545825055],[119,21,75,0.30483715121228633],[119,21,76,0.30386763360947083],[119,21,77,0.30293081470850564],[119,21,78,0.30202759922703165],[119,21,79,0.3011587797279258],[119,22,64,0.32070423412893584],[119,22,65,0.3194991064083954],[119,22,66,0.31830947824044314],[119,22,67,0.317137186891439],[119,22,68,0.31598400810641336],[119,22,69,0.3148516519582612],[119,22,70,0.31374175863297293],[119,22,71,0.3126558941509354],[119,22,72,0.3115955460242969],[119,22,73,0.3105621188504272],[119,22,74,0.3095569298413852],[119,22,75,0.3085812042895157],[119,22,76,0.3076360709690789],[119,22,77,0.3067225574739589],[119,22,78,0.3058415854914322],[119,22,79,0.30499396601200646],[119,23,64,0.3240218177688971],[119,23,65,0.32285381691139386],[119,23,66,0.32170015660711815],[119,23,67,0.32056267633482666],[119,23,68,0.3194431552429552],[119,23,69,0.3183433080217621],[119,23,70,0.31726478071158914],[119,23,71,0.31620914644726955],[119,23,72,0.31517790113867694],[119,23,73,0.3141724590874497],[119,23,74,0.313194148539799],[119,23,75,0.31224420717552576],[119,23,76,0.3113237775331461],[119,23,77,0.31043390237117596],[119,23,78,0.3095755199655532],[119,23,79,0.3087494593432067],[119,24,64,0.3272523072979845],[119,24,65,0.3261215771767713],[119,24,66,0.3250040464581242],[119,24,67,0.3239015565669824],[119,24,68,0.3228158897763009],[119,24,69,0.3217487651022681],[119,24,70,0.3207018341357269],[119,24,71,0.3196766768098279],[119,24,72,0.318674797103908],[119,24,73,0.31769761868362745],[119,24,74,0.31674648047727877],[119,24,75,0.31582263218838585],[119,24,76,0.3149272297444977],[119,24,77,0.3140613306822261],[119,24,78,0.3132258894685052],[119,24,79,0.3124217527580823],[119,25,64,0.3303922480842056],[119,25,65,0.3292989271250944],[119,25,66,0.3282176831132101],[119,25,67,0.3271503591448143],[119,25,68,0.32609874032914987],[119,25,69,0.3250645497068559],[119,25,70,0.3240494441046788],[119,25,71,0.3230550099265045],[119,25,72,0.3220827588807114],[119,25,73,0.32113412364386856],[119,25,74,0.3202104534607022],[119,25,75,0.31931300968043885],[119,25,76,0.318442961229439],[119,25,77,0.3176013800201632],[119,25,78,0.3167892362964525],[119,25,79,0.3160073939151322],[119,26,64,0.3334382547094788],[119,26,65,0.33238247511337077],[119,26,66,0.33133766954515476],[119,26,67,0.3303056824892325],[119,26,68,0.32928830159388256],[119,26,69,0.3282872536129921],[119,26,70,0.3273042002841829],[119,26,71,0.32634073414335896],[119,26,72,0.3253983742756701],[119,26,73,0.3244785620029226],[119,26,74,0.32358265650735396],[119,26,75,0.32271193039188456],[119,26,76,0.3218675651767574],[119,26,77,0.3210506467326079],[119,26,78,0.3202621606499485],[119,26,79,0.31950298754507356],[119,27,64,0.3363870129317182],[119,27,65,0.3353688999317377],[119,27,66,0.3343606784101857],[119,27,67,0.3333641939484258],[119,27,68,0.33238123642782313],[119,27,69,0.331413535994909],[119,27,70,0.3304627589630458],[119,27,71,0.3295305036506188],[119,27,72,0.32861829615575044],[119,27,73,0.32772758606756514],[119,27,74,0.3268597421139266],[119,27,75,0.32601604774575516],[119,27,76,0.3251976966578398],[119,27,77,0.32440578824618616],[119,27,78,0.3236413230018838],[119,27,79,0.3229051978415006],[119,28,64,0.3392352815925736],[119,28,65,0.33825495274533757],[119,28,66,0.3372834540231369],[119,28,67,0.3363226318054461],[119,28,68,0.33537427789239516],[119,28,69,0.33444012549347946],[119,28,70,0.3335218451528829],[119,28,71,0.33262104061144104],[119,28,72,0.3317392446052394],[119,28,73,0.33087791460087485],[119,28,74,0.3300384284673036],[119,28,75,0.3292220800843803],[119,28,76,0.32843007488800563],[119,28,77,0.3276635253519228],[119,28,78,0.3269234464061457],[119,28,79,0.32621075079202727],[119,29,64,0.3419798944708942],[119,29,65,0.3410374589814518],[119,29,66,0.34010281427741534],[119,29,67,0.33917780723017044],[119,29,68,0.3382642312362433],[119,29,69,0.3373638222296623],[119,29,70,0.3364782546310558],[119,29,71,0.3356091372335085],[119,29,72,0.3347580090251758],[119,29,73,0.3339263349486772],[119,29,74,0.33311550159720194],[119,29,75,0.33232681284742127],[119,29,76,0.33156148542913233],[119,29,77,0.3308206444316697],[119,29,78,0.33010531874706966],[119,29,79,0.32941643644999563],[119,30,64,0.3446177620817657],[119,30,65,0.34371332016173856],[119,30,66,0.34281565250962137],[119,30,67,0.34192660617548637],[119,30,68,0.34104797582216384],[119,30,69,0.3401814997613605],[119,30,70,0.3393288559266411],[119,30,71,0.3384916577832989],[119,30,72,0.337671450175109],[119,30,73,0.33686970510799025],[119,30,74,0.3360878174705067],[119,30,75,0.3353271006913041],[119,30,76,0.3345887823334045],[119,30,77,0.33387399962539754],[119,30,78,0.33318379492951206],[119,30,79,0.3325191111465755],[119,31,64,0.34714587342120135],[119,31,65,0.346279515679658],[119,31,66,0.3454189393089091],[119,31,67,0.3445659912177841],[119,31,68,0.34372246699792874],[119,31,69,0.34289010698377625],[119,31,70,0.3420705922495206],[119,31,71,0.34126554054311276],[119,31,72,0.3404765021572753],[119,31,73,0.33970495573756126],[119,31,74,0.33895230402738824],[119,31,75,0.33821986955014277],[119,31,76,0.3375088902282778],[119,31,77,0.3368205149394433],[119,31,78,0.3361557990096323],[119,31,79,0.335515699643349],[119,32,64,0.3495612976565498],[119,32,65,0.3487331045231484],[119,32,66,0.34790972427114614],[119,32,67,0.34709300334181964],[119,32,68,0.34628473791106773],[119,32,69,0.3454866699733312],[119,32,70,0.34470048336265746],[119,32,71,0.34392779971092924],[119,32,72,0.3431701743432583],[119,32,73,0.34242909211056355],[119,32,74,0.34170596315927104],[119,32,75,0.3410021186382232],[119,32,76,0.3403188063427284],[119,32,77,0.33965718629578456],[119,32,78,0.3390183262664619],[119,32,79,0.338403197225452],[119,33,64,0.3518611857624836],[119,33,65,0.35107122694241283],[119,33,66,0.3502851376977376],[119,33,67,0.34950476366980754],[119,33,68,0.34873190126746656],[119,33,69,0.34796829377500565],[119,33,70,0.3472156273974134],[119,33,71,0.3464755272429412],[119,33,72,0.3457495532429855],[119,33,73,0.3450391960093029],[119,33,74,0.34434587262850247],[119,33,75,0.34367092239389463],[119,33,76,0.3430156024746336],[119,33,77,0.3423810835221843],[119,33,78,0.34176844521409944],[119,33,79,0.3411786717351146],[119,34,64,0.35404277210264257],[119,34,65,0.35329110606289593],[119,34,66,0.3525423922391868],[119,34,67,0.35179847513482215],[119,34,68,0.3510611510338597],[119,34,69,0.35033216413317547],[119,34,70,0.3496132026119864],[119,34,71,0.3489058946388514],[119,34,72,0.34821180431614274],[119,34,73,0.34753242756201447],[119,34,74,0.346869187929804],[119,34,75,0.3462234323649506],[119,34,76,0.34559642689936715],[119,34,77,0.3449893522832928],[119,34,78,0.3444032995546184],[119,34,79,0.34383926554568733],[119,35,64,0.35610337595698455],[119,35,65,0.3553900494434995],[119,35,66,0.35467878448345],[119,35,67,0.35397142409856],[119,35,68,0.3532697640842728],[119,35,69,0.35257554916600525],[119,35,70,0.35189046909302757],[119,35,71,0.3512161546699858],[119,35,72,0.3505541737260649],[119,35,73,0.34990602702181245],[119,35,74,0.34927314409356613],[119,35,75,0.34865687903556375],[119,35,76,0.348058506219672],[119,35,77,0.3474792159527668],[119,35,78,0.3469201100717513],[119,35,79,0.34638219747621585],[119,36,64,0.35804040299472595],[119,36,65,0.357365450579921],[119,36,66,0.3566916964889617],[119,36,67,0.3560209819133421],[119,36,68,0.35535510179028856],[119,36,69,0.3546958009832693],[119,36,70,0.3540447704003049],[119,36,71,0.35340364305009625],[119,36,72,0.3527739900359697],[119,36,73,0.35215731648765614],[119,36,74,0.3515550574308515],[119,36,75,0.3509685735946334],[119,36,76,0.35039914715667214],[119,36,77,0.3498479774262694],[119,36,78,0.3493161764652082],[119,36,79,0.3488047646464225],[119,37,64,0.3598513466929373],[119,37,65,0.35921479035317894],[119,37,66,0.35857859726239893],[119,37,67,0.35794460642842263],[119,37,68,0.3573146115552084],[119,37,69,0.3566903572476712],[119,37,70,0.35607353515449086],[119,37,71,0.35546578004892343],[119,37,72,0.3548686658476112],[119,37,73,0.35428370156740907],[119,37,74,0.3537123272201804],[119,37,75,0.35315590964562693],[119,37,76,0.3526157382821007],[119,37,77,0.3520930208754247],[119,37,78,0.35158887912570963],[119,37,79,0.35110434427217413],[119,38,64,0.36153378970083727],[119,38,65,0.36093563842337073],[119,38,66,0.3603370441812284],[119,38,67,0.35973984344065196],[119,38,68,0.3591458282921544],[119,38,69,0.35855674267970883],[119,38,70,0.35797427856811675],[119,38,71,0.35740007204856916],[119,38,72,0.3568356993823985],[119,38,73,0.35628267298303984],[119,38,74,0.35574243733615124],[119,38,75,0.3552163648579624],[119,38,76,0.35470575169179464],[119,38,77,0.3542118134427829],[119,38,78,0.353735680850786],[119,38,79,0.35327839540148936],[119,39,64,0.36308540514968046],[119,39,65,0.36252565456855573],[119,39,66,0.36196468436092966],[119,39,67,0.36140432808938194],[119,39,68,0.360846375845999],[119,39,69,0.3602925705059731],[119,39,70,0.3597446039195819],[119,39,71,0.3592041130425604],[119,39,72,0.35867267600486474],[119,39,73,0.35815180811784375],[119,39,74,0.3576429578197725],[119,39,75,0.3571475025598102],[119,39,76,0.35666674462033315],[119,39,77,0.35620190687766845],[119,39,78,0.35575412850121424],[119,39,79,0.35532446059095646],[119,40,64,0.3645039579083265],[119,40,65,0.3639825899688542],[119,40,66,0.3634592559669848],[119,40,67,0.3629357861957071],[119,40,68,0.362413968359219],[119,40,69,0.3618955438509731],[119,40,70,0.36138220397031223],[119,40,71,0.36087558607770487],[119,40,72,0.36037726968858225],[119,40,73,0.3598887725057895],[119,40,74,0.35941154639060974],[119,40,75,0.3589469732724189],[119,40,76,0.35849636099692506],[119,40,77,0.3580609391130162],[119,40,78,0.3576418545982038],[119,40,79,0.35724016752267057],[119,41,64,0.3657873057844351],[119,41,65,0.36530428843570134],[119,41,66,0.3648185894715739],[119,41,67,0.3643320355459808],[119,41,68,0.3638464115816096],[119,41,69,0.3633634570724269],[119,41,70,0.36288486232500605],[119,41,71,0.3624122646386715],[119,41,72,0.3619472444244612],[119,41,73,0.36149132126291883],[119,41,74,0.36104594990067834],[119,41,75,0.36061251618589385],[119,41,76,0.36019233294247177],[119,41,77,0.35978663578312714],[119,41,78,0.3593965788612543],[119,41,79,0.3590232305616172],[119,42,64,0.3669334006713484],[119,42,65,0.36648868758632547],[119,42,66,0.3660406088550464],[119,42,67,0.3655909871196763],[119,42,68,0.36514160412393104],[119,42,69,0.36469419704008943],[119,42,70,0.3642504547350405],[119,42,71,0.36381201397537305],[119,42,72,0.36338045557150744],[119,42,73,0.36295730046088315],[119,42,74,0.3625440057301637],[119,42,75,0.3621419605765121],[119,42,76,0.3617524822078929],[119,42,77,0.3613768116824254],[119,42,78,0.36101610968677506],[119,42,79,0.3606714522535895],[119,43,64,0.3679402896405868],[119,43,65,0.3675338199633703],[119,43,66,0.36712333275208525],[119,43,67,0.36671064626150846],[119,43,68,0.36629753865540243],[119,43,69,0.3658857443580319],[119,43,70,0.36547695034494954],[119,43,71,0.3650727923730578],[119,43,72,0.36467485114994647],[119,43,73,0.364284648442519],[119,43,74,0.36390364312487156],[119,43,75,0.363533227165474],[119,43,76,0.36317472155361286],[119,43,77,0.3628293721651177],[119,43,78,0.36249834556736055],[119,43,79,0.36218272476353286],[119,44,64,0.3688061159800009],[119,44,65,0.3684378140997048],[119,44,66,0.36806487554261136],[119,44,67,0.3676891137978646],[119,44,68,0.36731230304509055],[119,44,69,0.3669361745304203],[119,44,70,0.3665624128820244],[119,44,71,0.3661926523651648],[119,44,72,0.36582847307676647],[119,44,73,0.36547139707951637],[119,44,74,0.3651228844754616],[119,44,75,0.36478432941914773],[119,44,76,0.364457056070263],[119,44,77,0.36414231448580847],[119,44,78,0.363841276451781],[119,44,79,0.36355503125437855],[119,45,64,0.3695291201775971],[119,45,65,0.369198895528442],[119,45,66,0.3688634483874473],[119,45,67,0.3685245870975641],[119,45,68,0.36818408144721515],[119,45,69,0.36784365907081573],[119,45,70,0.36750500178905776],[119,45,71,0.367169741888963],[119,45,72,0.3668394583437043],[119,45,73,0.3665156729722056],[119,45,74,0.36619984653849247],[119,45,75,0.3658933747908317],[119,45,76,0.3655975844406295],[119,45,77,0.36531372908110227],[119,45,78,0.365042985045715],[119,45,79,0.36478644720639086],[119,46,64,0.3701076408509849],[119,46,65,0.36981538773811085],[119,46,66,0.36951736020868386],[119,46,67,0.36921536107688957],[119,46,68,0.3689111553303118],[119,46,69,0.36860646655493523],[119,46,70,0.36830297330017114],[119,46,71,0.36800230538391154],[119,46,72,0.36770604013760866],[119,46,73,0.36741569859139417],[119,46,74,0.3671327415992064],[119,46,75,0.3668585659039667],[119,46,76,0.36659450014277106],[119,46,77,0.36634180079211637],[119,46,78,0.36610164805315115],[119,46,79,0.36587514167695595],[119,47,64,0.37054011562248224],[119,47,65,0.3702857130730183],[119,47,66,0.3700250186147882],[119,47,67,0.3697598291489268],[119,47,68,0.3694919044502899],[119,47,69,0.36922296361691354],[119,47,70,0.36895468145976407],[119,47,71,0.36868868483278183],[119,47,72,0.3684265489032219],[119,47,73,0.3681697933622968],[119,47,74,0.36791987857609937],[119,47,75,0.3676782016768374],[119,47,76,0.3674460925943548],[119,47,77,0.36722481002795265],[119,47,78,0.36701553735850223],[119,47,79,0.3668193785008557],[119,48,64,0.370825081939882],[119,48,65,0.370608393578807],[119,48,66,0.3703849307704591],[119,48,67,0.37015648411722246],[119,48,68,0.36992480776739634],[119,48,69,0.36969161588907523],[119,48,70,0.3694585790845958],[119,48,71,0.369227320745554],[119,48,72,0.3689994133483938],[119,48,73,0.36877637469057334],[119,48,74,0.3685596640672888],[119,48,75,0.3683506783887843],[119,48,76,0.3681507482382246],[119,48,77,0.3679611338701419],[119,48,78,0.3677830211494527],[119,48,79,0.3676175174310476],[119,49,64,0.3709611778428536],[119,49,65,0.370782051793178],[119,49,66,0.37059570421119686],[119,49,67,0.3704039190137247],[119,49,68,0.3702084443070473],[119,49,69,0.37001098888517747],[119,49,70,0.36981321866896244],[119,49,71,0.3696167530860455],[119,49,72,0.3694231613916838],[119,49,73,0.3692339589304259],[119,49,74,0.36905060333863415],[119,49,75,0.36887449068787403],[119,49,76,0.3687069515691521],[119,49,77,0.36854924711801235],[119,49,78,0.3684025649804852],[119,49,79,0.36826801521989466],[119,50,64,0.3709471426749993],[119,50,65,0.37080541148180374],[119,50,66,0.37065604760261445],[119,50,67,0.37050082788103256],[119,50,68,0.370341493964556],[119,50,69,0.370179748827155],[119,50,70,0.37001725323299395],[119,50,71,0.3698556221413006],[119,50,72,0.3696964210523816],[119,50,73,0.36954116229479195],[119,50,74,0.36939130125364145],[119,50,75,0.36924823254006034],[119,50,76,0.3691132861018047],[119,50,77,0.3689877232750152],[119,50,78,0.3688727327771191],[119,50,79,0.36876942664088275],[119,51,64,0.3707818177415636],[119,51,65,0.3706772983194257],[119,51,66,0.3705647714444843],[119,51,67,0.370446006498952],[119,51,68,0.3703227382537542],[119,51,69,0.3701966634153626],[119,51,70,0.37006943711407536],[119,51,71,0.36994266933374376],[119,51,72,0.3698179212829493],[119,51,73,0.36969670170763136],[119,51,74,0.36958046314515647],[119,51,75,0.36947059811984406],[119,51,76,0.36936843527993535],[119,51,77,0.36927523547601426],[119,51,78,0.3691921877808733],[119,51,79,0.36912040545083097],[119,52,64,0.3704641469127866],[119,52,65,0.3703966405161276],[119,52,66,0.37032078871951235],[119,52,67,0.37023835305534497],[119,52,68,0.37015106099949296],[119,52,69,0.37006060254230244],[119,52,70,0.3699686267013708],[119,52,71,0.3698767379760758],[119,52,72,0.3697864927438619],[119,52,73,0.36969939559828646],[119,52,74,0.36961689562881883],[119,52,75,0.36954038264240163],[119,52,76,0.36947118332676604],[119,52,77,0.3694105573555076],[119,52,78,0.3693596934349156],[119,52,79,0.36931970529256375],[119,53,64,0.36999317717291447],[119,53,65,0.3699624693887996],[119,53,66,0.3699231154868511],[119,53,67,0.36987686876128945],[119,53,68,0.36982544897404046],[119,53,69,0.36977053894984957],[119,53,70,0.3697137811134714],[119,53,71,0.36965677396893215],[119,53,72,0.3696010685208675],[119,53,73,0.3695481646379358],[119,53,74,0.36949950735830317],[119,53,75,0.3694564831372066],[119,53,76,0.36942041603658854],[119,53,77,0.3693925638568091],[119,53,78,0.36937411421042887],[119,53,79,0.3693661805380709],[119,54,64,0.36936805911484905],[119,54,65,0.369373919877775],[119,54,66,0.3693708714203394],[119,54,67,0.3693606584105324],[119,54,68,0.3693449924773608],[119,54,69,0.3693255488299676],[119,54,70,0.3693039628191529],[119,54,71,0.3692818264412925],[119,54,72,0.369260684784657],[119,54,73,0.3692420324181319],[119,54,74,0.36922730972233486],[119,54,75,0.3692178991631363],[119,54,76,0.3692151215075753],[119,54,77,0.36922023198218046],[119,54,78,0.36923441637368554],[119,54,79,0.3692587870721488],[119,55,64,0.3685880473804546],[119,55,65,0.368630231008655],[119,55,66,0.36866328029147855],[119,55,67,0.36868893088324917],[119,55,68,0.3687088858612846],[119,55,69,0.36872481236891697],[119,55,70,0.3687383382012497],[119,55,71,0.36875104833364447],[119,55,72,0.36876448139294327],[119,55,73,0.36878012607142263],[119,55,74,0.3687994174834809],[119,55,75,0.36882373346505964],[119,55,76,0.36885439081579546],[119,55,77,0.3688926414839091],[119,55,78,0.3689396686938229],[119,55,79,0.3689965830165154],[119,56,64,0.36765250104652086],[119,56,65,0.36773074629932345],[119,56,66,0.36779967039714945],[119,56,67,0.36786099959411217],[119,56,68,0.36791642799757585],[119,56,69,0.367967614234965],[119,56,70,0.36801617806365094],[119,56,71,0.3680636969239106],[119,56,72,0.3681117024349612],[119,56,73,0.36816167683406753],[119,56,74,0.36821504935872523],[119,56,75,0.3682731925719183],[119,56,76,0.36833741863044867],[119,56,77,0.36840897549634377],[119,56,78,0.3684890430913346],[119,56,79,0.3685787293944116],[119,57,64,0.36656088395635517],[119,57,65,0.36667491411212305],[119,57,66,0.3667794749320436],[119,57,67,0.36687628288464214],[119,57,68,0.3669670226898688],[119,57,69,0.36705334400957124],[119,57,70,0.36713685808139646],[119,57,71,0.36721913429611436],[119,57,72,0.3673016967183644],[119,57,73,0.3673860205508248],[119,57,74,0.36747352854180865],[119,57,75,0.36756558733628064],[119,57,76,0.36766350377029666],[119,57,77,0.36776852110887026],[119,57,78,0.36788181522725827],[119,57,79,0.3680044907356747],[119,58,64,0.36531276499704024],[119,58,65,0.36546228795123104],[119,58,66,0.36560223230584227],[119,58,67,0.3657343043598774],[119,58,68,0.3658601790295081],[119,58,69,0.3659814965620791],[119,58,70,0.3660998591938994],[119,58,71,0.36621682775181175],[119,58,72,0.36633391819854344],[119,58,73,0.366452598121835],[119,58,74,0.36657428316735485],[119,58,75,0.36670033341538877],[119,58,76,0.36683204970131217],[119,58,77,0.3669706698798436],[119,58,78,0.3671173650330765],[119,58,79,0.3672732356222947],[119,59,64,0.36390781832235186],[119,59,65,0.3640925267052253],[119,59,66,0.3642675864051378],[119,59,67,0.3644346931693512],[119,59,68,0.3645955116952848],[119,59,69,0.3647516723679091],[119,59,70,0.364904767941292],[119,59,71,0.3650563501642864],[119,59,72,0.36520792635036553],[119,59,73,0.365360955891599],[119,59,74,0.36551684671678125],[119,59,75,0.36567695169369907],[119,59,76,0.3658425649755452],[119,59,77,0.3660149182914796],[119,59,78,0.36619517718133304],[119,59,79,0.366384437174459],[119,60,64,0.36234582352129097],[119,60,65,0.36256539483479944],[119,60,66,0.3627752868000551],[119,60,67,0.3629771842323416],[119,60,68,0.36317274119703097],[119,60,69,0.3633635777702148],[119,60,70,0.3635512767438585],[119,60,71,0.363737380275472],[119,60,72,0.36392338648229816],[119,60,73,0.3641107459800148],[119,60,74,0.36430085836596277],[119,60,75,0.3644950686468836],[119,60,76,0.36469466361117586],[119,60,77,0.3649008681456732],[119,60,78,0.36511484149693424],[119,60,79,0.3653376734770559],[119,61,64,0.36062666573229546],[119,61,65,0.3608807625056898],[119,61,66,0.36112518889563516],[119,61,67,0.3613616184074493],[119,61,68,0.36159169406312963],[119,61,69,0.3618170251850572],[119,61,70,0.3620391841246069],[119,61,71,0.3622597029356519],[119,61,72,0.36248006999296706],[119,61,73,0.3627017265555237],[119,61,74,0.36292606327469284],[119,61,75,0.36315441664733616],[119,61,76,0.363388065413796],[119,61,77,0.36362822690078594],[119,61,78,0.36387605330917516],[119,61,79,0.3641326279466739],[119,62,64,0.35875033570311027],[119,62,65,0.35903860566679213],[119,62,66,0.3593172540279585],[119,62,67,0.359587942606486],[119,62,68,0.35985230297192017],[119,62,69,0.36011193325008106],[119,62,70,0.3603683948749645],[119,62,71,0.36062320928592306],[119,62,72,0.3608778545701348],[119,62,73,0.36113376205034897],[119,62,74,0.36139231281793005],[119,62,75,0.36165483421117306],[119,62,76,0.3619225962389082],[119,62,77,0.3621968079493926],[119,62,78,0.3624786137444812],[119,62,79,0.36276908963908905],[119,63,64,0.3567169297962605],[119,63,65,0.35703900607341693],[119,63,66,0.3573515495049592],[119,63,67,0.3576562098526206],[119,63,68,0.3579546068269505],[119,63,69,0.35824832691664177],[119,63,70,0.3585389201635476],[119,63,71,0.3588278968833736],[119,63,72,0.35911672433205144],[119,63,73,0.3594068233177842],[119,63,74,0.3596995647587849],[119,63,75,0.35999626618668035],[119,63,76,0.36029818819559956],[119,63,77,0.36060653083694205],[119,63,78,0.3609224299598224],[119,63,79,0.3612469534971988],[119,64,64,0.3545266499402234],[119,64,65,0.3548821512557726],[119,64,66,0.35522824859201707],[119,64,67,0.35556657928287316],[119,64,68,0.3558987507761623],[119,64,69,0.3562263374854687],[119,64,70,0.3565508775880888],[119,64,71,0.35687386976905733],[119,64,72,0.35719676991125815],[119,64,73,0.3575209877316051],[119,64,74,0.357847883363322],[119,64,75,0.3581787638842865],[119,64,76,0.358514879791461],[119,64,77,0.3588574214214061],[119,64,78,0.3592075153168707],[119,64,79,0.3595662205394687],[119,65,64,0.35217980352621836],[119,65,65,0.3525683344326026],[119,65,66,0.3529476304422543],[119,65,67,0.35331931609488226],[119,65,68,0.3536849861749363],[119,65,69,0.35404620258579433],[119,65,70,0.3544044911704517],[119,65,71,0.3547613384786965],[119,65,72,0.35511818848077603],[119,65,73,0.3554764392275439],[119,65,74,0.35583743945711543],[119,65,75,0.3562024851479937],[119,65,76,0.3565728160186933],[119,65,77,0.3569496119738541],[119,65,78,0.3573339894968406],[119,65,79,0.3577269979888379],[119,66,64,0.3496768032506863],[119,66,65,0.3500979543700426],[119,66,66,0.35051007997160244],[119,66,67,0.35091479143801074],[119,66,68,0.3513136704930625],[119,66,69,0.3517082660980117],[119,66,70,0.3521000912947979],[119,66,71,0.3524906199961737],[119,66,72,0.3528812837227413],[119,66,73,0.35327346828688183],[119,66,74,0.35366851042361264],[119,66,75,0.35406769436832797],[119,66,76,0.3544722483814542],[119,66,77,0.35488334122000964],[119,66,78,0.35530207855606843],[119,66,79,0.3557294993421331],[119,67,64,0.34701816690335086],[119,67,65,0.34747151518559316],[119,67,66,0.34791608767853743],[119,67,67,0.34835348224868823],[119,67,68,0.34878526716553493],[119,67,69,0.3492129780197626],[119,67,70,0.3496381145888044],[119,67,71,0.35006213764971794],[119,67,72,0.35048646573939213],[119,67,73,0.35091247186206953],[119,67,74,0.3513414801442195],[119,67,75,0.35177476243671757],[119,67,76,0.3522135348643587],[119,67,77,0.3526589543227035],[119,67,78,0.35311211492224504],[119,67,79,0.35357404437990947],[119,68,64,0.3442045171009879],[119,68,65,0.3446896260973329],[119,68,66,0.3451662494086035],[119,68,67,0.34563597103011284],[119,68,68,0.3461003453872913],[119,68,69,0.3465608942755726],[119,68,70,0.3470191037480521],[119,68,71,0.34747642095089765],[119,68,72,0.3479342509065192],[119,68,73,0.3483939532444839],[119,68,74,0.34885683888021174],[119,68,75,0.34932416664140375],[119,68,76,0.34979713984223837],[119,68,77,0.35027690280532287],[119,68,78,0.3507645373314001],[119,68,79,0.3512610591168171],[119,69,64,0.34123658096685205],[119,69,65,0.3417530011183214],[119,69,66,0.34226126606367935],[119,69,67,0.34276294557626114],[119,69,68,0.34325957985184674],[119,69,69,0.34375267646998653],[119,69,70,0.34424370730353593],[119,69,71,0.3447341053763768],[119,69,72,0.34522526166933537],[119,69,73,0.34571852187427854],[119,69,74,0.3462151830964292],[119,69,75,0.34671649050484765],[119,69,76,0.34722363393111655],[119,69,77,0.3477377444162187],[119,69,78,0.3482598907056039],[119,69,79,0.34879107569245327],[119,70,64,0.33811518975567967],[119,70,65,0.33866245869611156],[119,70,66,0.3392019432559039],[119,70,67,0.3397351986401293],[119,70,68,0.34026375043374774],[119,70,69,0.3407890915841284],[119,70,70,0.34131267933222076],[119,70,71,0.3418359320923566],[119,70,72,0.3423602262806897],[119,70,73,0.34288689309225384],[119,70,74,0.3434172152266861],[119,70,75,0.34395242356255395],[119,70,76,0.34449369378033035],[119,70,77,0.3450421429340026],[119,70,78,0.34559882597131225],[119,70,79,0.34616473220263516],[119,71,64,0.33484127842441014],[119,71,65,0.3354189212975137],[119,71,66,0.33598919090640456],[119,71,67,0.3365536275463431],[119,71,68,0.33711374181497966],[119,71,69,0.33767101161581803],[119,71,70,0.3382268791107782],[119,71,71,0.33878274762183774],[119,71,72,0.33933997848175734],[119,71,73,0.3398998878338758],[119,71,74,0.3404637433810159],[119,71,75,0.3410327610834433],[119,71,76,0.34160810180592194],[119,71,77,0.34219086791385017],[119,71,78,0.34278209981847707],[119,71,79,0.3433827724712075],[119,72,64,0.3314158851485673],[119,72,65,0.3320234149385493],[119,72,66,0.3326240227887655],[119,72,67,0.3332192337480786],[119,72,68,0.33381054305527136],[119,72,69,0.3343994131631906],[119,72,70,0.33498727071244677],[119,72,71,0.33557550345464315],[119,72,72,0.33616545712514884],[119,72,73,0.33675843226538854],[119,72,74,0.33735568099470337],[119,72,75,0.3379584037317164],[119,72,76,0.33856774586524707],[119,72,77,0.3391847943747646],[119,72,78,0.33981057440037293],[119,72,79,0.3404460457623386],[119,73,64,0.3278401507842016],[119,73,65,0.32847706865950294],[119,73,66,0.3291075560171458],[119,73,67,0.32973312232820007],[119,73,68,0.3303552471062056],[119,73,69,0.33097537695172674],[119,73,70,0.33159492254692413],[119,73,71,0.33221525560011755],[119,73,72,0.33283770574035104],[119,73,73,0.33346355736193367],[119,73,74,0.33409404641901624],[119,73,75,0.3347303571701262],[119,73,76,0.33537361887271744],[119,73,77,0.33602490242771554],[119,73,78,0.3366852169740553],[119,73,79,0.33735550643322293],[119,74,64,0.32411531827556617],[119,74,65,0.32478111394523723],[119,74,66,0.32544101047921015],[119,74,67,0.32609650144478064],[119,74,68,0.3267490502692974],[119,74,69,0.3274000873048526],[119,74,70,0.3280510068434544],[119,74,71,0.32870316408265676],[119,74,72,0.32935787204165623],[119,74,73,0.33001639842783215],[119,74,74,0.3306799624537863],[119,74,75,0.3313497316048093],[119,74,76,0.3320268183568254],[119,74,77,0.332712276844798],[119,74,78,0.33340709948159664],[119,74,79,0.33411221352733156],[119,75,64,0.3202427320084499],[119,75,65,0.32093688409069776],[119,75,66,0.321625708213802],[119,75,67,0.3223106817209313],[119,75,68,0.32299325159796677],[119,75,69,0.3236748315580419],[119,75,70,0.3243567990770363],[119,75,71,0.32504049237999927],[119,75,72,0.3257272073785108],[119,75,73,0.3264181945589569],[119,75,74,0.32711465582177734],[119,75,75,0.3278177412716101],[119,75,76,0.3285285459583846],[119,75,77,0.3292481065693512],[119,75,78,0.3299773980720382],[119,75,79,0.33071733030815087],[119,76,64,0.31622383710906143],[119,76,65,0.3169458135115042],[119,76,66,0.31766307273325145],[119,76,67,0.31837707557883754],[119,76,68,0.3190892522433083],[119,76,69,0.31980099941631684],[119,76,70,0.32051367733765385],[119,76,71,0.3212286068041815],[119,76,72,0.3219470661281835],[119,76,73,0.32267028804710424],[119,76,74,0.3233994565847398],[119,76,75,0.324135703863799],[119,76,76,0.3248801068698942],[119,76,77,0.3256336841669403],[119,76,78,0.3263973925639613],[119,76,79,0.32717212373331583],[119,77,64,0.31206017868865815],[119,77,65,0.3128094369998162],[119,77,66,0.31355462829051045],[119,77,67,0.314297196518189],[119,77,68,0.315038554743837],[119,77,69,0.3157800822553316],[119,77,70,0.3165231216427119],[119,77,71,0.3172689758253358],[119,77,72,0.3180189050309341],[119,77,73,0.31877412372653563],[119,77,74,0.3195357975013272],[119,77,75,0.32030503990136483],[119,77,76,0.3210829092161952],[119,77,77,0.3218704052173702],[119,77,78,0.32266846584884945],[119,77,79,0.3234779638693027],[119,78,64,0.30775340103383175],[119,78,65,0.3085293889253894],[119,78,66,0.3093019990910283],[119,78,67,0.31007265833891806],[119,78,68,0.31084276225913277],[119,78,69,0.3116136723659567],[119,78,70,0.31238671319259376],[119,78,71,0.3131631693382498],[119,78,72,0.3139442824676001],[119,78,73,0.31473124826261345],[119,78,74,0.31552521332680017],[119,78,75,0.3163272720417958],[119,78,76,0.3171384633763443],[119,78,77,0.31795976764766],[119,78,78,0.31879210323516427],[119,78,79,0.31963632324661045],[119,79,64,0.30330524674233406],[119,79,65,0.3041074023817061],[119,79,66,0.30490690844925206],[119,79,67,0.3057051743081346],[119,79,68,0.3065035777472658],[119,79,69,0.30730346214225124],[119,79,70,0.3081061335692298],[119,79,71,0.3089128578715785],[119,79,72,0.309724857679494],[119,79,73,0.3105433093824219],[119,79,74,0.31136934005440353],[119,79,75,0.31220402433224836],[119,79,76,0.31304838124659934],[119,79,77,0.31390337100586685],[119,79,78,0.31476989173303116],[119,79,79,0.31564877615532483],[119,80,64,0.29871755580465936],[119,80,65,0.29954530827739223],[119,80,66,0.30037117788996504],[119,80,67,0.301196556271465],[119,80,68,0.3020228030862137],[119,80,69,0.30285124321302925],[119,80,70,0.3036831638778821],[119,80,71,0.30451981173991005],[119,80,72,0.3053623899308102],[119,80,73,0.3062120550475707],[119,80,74,0.30706991409861994],[119,80,75,0.3079370214032966],[119,80,76,0.3088143754447083],[119,80,77,0.3097029156759566],[119,80,78,0.3106035192797269],[119,80,79,0.3115169978812534],[119,81,64,0.29399226463128136],[119,81,65,0.2948450343728234],[119,81,66,0.295696726194364],[119,81,67,0.29654871370869984],[119,81,68,0.2974023381391734],[119,81,69,0.2982589055169266],[119,81,70,0.2991196838320499],[119,81,71,0.299985900138593],[119,81,72,0.30085873761345105],[119,81,73,0.30173933256909236],[119,81,74,0.30262877142020705],[119,81,75,0.30352808760417327],[119,81,76,0.3044382584554155],[119,81,77,0.305360202033631],[119,81,78,0.3062947739058793],[119,81,79,0.3072427638825499],[119,82,64,0.289131405025422],[119,82,65,0.29000860426179637],[119,82,66,0.2908855683907532],[119,82,67,0.29176365273362725],[119,82,68,0.2926441797636462],[119,82,69,0.2935284363208444],[119,82,70,0.2944176707813777],[119,82,71,0.2953130901812055],[119,82,72,0.29621585729415123],[119,82,73,0.2971270876643137],[119,82,74,0.2980478465929003],[119,82,75,0.29897914607938586],[119,82,76,0.29992194171706854],[119,82,77,0.30087712954299695],[119,82,78,0.30184554284226806],[119,82,79,0.3028279489067083],[119,83,64,0.2841371031015858],[119,83,65,0.28503813629849606],[119,83,66,0.285939814690085],[119,83,67,0.2868434750382809],[119,83,68,0.287750420764523],[119,83,69,0.2886619191819984],[119,83,70,0.2895791986827878],[119,83,71,0.290503445879888],[119,83,72,0.29143580270412484],[119,83,73,0.2923773634559208],[119,83,74,0.29332917181200036],[119,83,75,0.2942922177869257],[119,83,76,0.2952674346495395],[119,83,77,0.29625569579429023],[119,83,78,0.29725781156743625],[119,83,79,0.29827452604814114],[119,84,64,0.27901157814974964],[119,84,65,0.27993584246965275],[119,84,66,0.2808616693662407],[119,84,67,0.281790376781497],[119,84,68,0.2827232487910664],[119,84,69,0.28366153285346823],[119,84,70,0.284606437014735],[119,84,71,0.2855591270684401],[119,84,72,0.28652072367112913],[119,84,73,0.2874922994131185],[119,84,74,0.28847487584474696],[119,84,75,0.28946942045796764],[119,84,76,0.29047684362336423],[119,84,77,0.2914979954825594],[119,84,78,0.292533662796016],[119,84,79,0.29358456574624603],[119,85,64,0.2737571414450737],[119,85,65,0.27470402721175324],[119,85,66,0.27565342958091577],[119,85,67,0.2766066474216462],[119,85,68,0.27756494517765323],[119,85,69,0.27852955013311254],[119,85,70,0.27950164963445245],[119,85,71,0.280482388268045],[119,85,72,0.28147286499381796],[119,85,73,0.28247413023475165],[119,85,74,0.28348718292234365],[119,85,75,0.28451296749793464],[119,85,76,0.28555237086997043],[119,85,77,0.28660621932717656],[119,85,78,0.28767527540764287],[119,85,79,0.2887602347238303],[119,86,64,0.26837619500338794],[119,86,65,0.2693450861735587],[119,86,66,0.27031748415336454],[119,86,67,0.2712946684937905],[119,86,68,0.27227788372852957],[119,86,69,0.27326833665610106],[119,86,70,0.2742671935784332],[119,86,71,0.2752755774958712],[119,86,72,0.27629456525862706],[119,86,73,0.27732518467463213],[119,86,74,0.2783684115738835],[119,86,75,0.2794251668291652],[119,86,76,0.280496313333231],[119,86,77,0.28158265293241835],[119,86,78,0.2826849233166923],[119,86,79,0.2838037948661326],[119,87,64,0.2628712302823344],[119,87,65,0.2638615049238123],[119,87,66,0.2648563122748828],[119,87,67,0.2658569123311497],[119,87,68,0.2668645294464613],[119,87,69,0.26788034963094537],[119,87,70,0.26890551780603394],[119,87,71,0.26994113501643613],[119,87,72,0.2709882555990763],[119,87,73,0.27204788430895965],[119,87,74,0.273120973402054],[119,87,75,0.27420841967507187],[119,87,76,0.2753110614622363],[119,87,77,0.2764296755890019],[119,87,78,0.2775649742827297],[119,87,79,0.27871760204033025],[119,88,64,0.2572448268280214],[119,88,65,0.2582558576039907],[119,88,66,0.2592724821678869],[119,88,67,0.2602959407307318],[119,88,68,0.26132743720513574],[119,88,69,0.2623681365188873],[119,88,70,0.26341916188605896],[119,88,71,0.2644815920355885],[119,88,72,0.2655564583973528],[119,88,73,0.2666447422456936],[119,88,74,0.2677473718004902],[119,88,75,0.26886521928565527],[119,88,76,0.2699990979451435],[119,88,77,0.27114975901644167],[119,88,78,0.27231788866154005],[119,88,79,0.2735041048553968],[119,89,64,0.2514996508674776],[119,89,65,0.25253080552638885],[119,89,66,0.25356864968987614],[119,89,67,0.2546144035634153],[119,89,68,0.2556692503656021],[119,89,69,0.25673433365692855],[119,89,70,0.25781075462660613],[119,89,71,0.2588995693373939],[119,89,72,0.2600017859284489],[119,89,73,0.2611183617761582],[119,89,74,0.26225020061304805],[119,89,75,0.2633981496046446],[119,89,76,0.2645629963843784],[119,89,77,0.26574546604649973],[119,89,78,0.2669462180970037],[119,89,79,0.2681658433625802],[119,90,64,0.2456384538466649],[119,90,65,0.2466890957172964],[119,90,66,0.24774755688203723],[119,90,67,0.24881503732824295],[119,90,68,0.24989269933650898],[119,90,69,0.25098166482426343],[119,90,70,0.2520830126479394],[119,90,71,0.2531977758636848],[119,90,72,0.2543269389466254],[119,90,73,0.25547143496864405],[119,90,74,0.2566321427347673],[119,90,75,0.25780988387803794],[119,90,76,0.2590054199129616],[119,90,77,0.2602194492474983],[119,90,78,0.2614526041535948],[119,90,79,0.2627054476962759],[119,91,64,0.2396640709142399],[119,91,65,0.240733559405453],[119,91,66,0.2418120304626794],[119,91,67,0.24290066365111423],[119,91,68,0.24400060007832788],[119,91,69,0.24511293975230067],[119,91,70,0.246238738898572],[119,91,71,0.24737900723646178],[119,91,72,0.24853470521438104],[119,91,73,0.2497067412041906],[119,91,74,0.25089596865470604],[119,91,75,0.2521031832042201],[119,91,76,0.25332911975213557],[119,91,77,0.2545744494896768],[119,91,78,0.25583977688967907],[119,91,79,0.25712563665546895],[119,92,64,0.23357941935079618],[119,92,65,0.23466711045552113],[119,92,66,0.2357649802652371],[119,92,67,0.23687418772761487],[119,92,68,0.2379958525513009],[119,92,69,0.239131052578015],[119,92,70,0.2402808211143009],[119,92,71,0.2414461442228868],[119,92,72,0.24262795797367143],[119,92,73,0.2438271456542944],[119,92,74,0.24504453494039247],[119,92,75,0.24628089502540768],[119,92,76,0.24753693371004415],[119,92,77,0.2488132944513416],[119,92,78,0.2501105533713614],[119,92,79,0.251429216225503],[119,93,64,0.22738749694390767],[119,93,65,0.22849274374688924],[119,93,66,0.22960939762115304],[119,93,67,0.2307385967102954],[119,93,68,0.23188143910742348],[119,93,69,0.23303898024093744],[119,93,70,0.23421223022050358],[119,93,71,0.23540215114317628],[119,93,72,0.23660965435968528],[119,93,73,0.2378355977008464],[119,93,74,0.23908078266419627],[119,93,75,0.24034595156071958],[119,93,76,0.24163178462176343],[119,93,77,0.2429388970661061],[119,93,78,0.2442678361271805],[119,93,79,0.24561907804046496],[119,94,64,0.2210913803088248],[119,94,65,0.2222135334976619],[119,94,66,0.22334835368750125],[119,94,67,0.22449695804025663],[119,94,68,0.22566042282632023],[119,94,69,0.22683978082364378],[119,94,70,0.22803601867755333],[119,94,71,0.22925007422125326],[119,94,72,0.23048283375703682],[119,94,73,0.23173512929815987],[119,94,74,0.23300773577148226],[119,94,75,0.23430136818073993],[119,94,76,0.23561667873054548],[119,94,77,0.23695425391108665],[119,94,78,0.23831461154351685],[119,94,79,0.239698197786056],[119,95,64,0.214694223154662],[119,95,65,0.21583263153367419],[119,95,66,0.21698499771918228],[119,95,67,0.2181524177228797],[119,95,68,0.21933594579485344],[119,95,69,0.22053659183557944],[119,95,70,0.22175531876919458],[119,95,71,0.22299303987800007],[119,95,72,0.22425061609821445],[119,95,73,0.22552885327693106],[119,95,74,0.22682849939038874],[119,95,75,0.22815024172341108],[119,95,76,0.22949470401012212],[119,95,77,0.23086244353589808],[119,95,78,0.23225394820055506],[119,95,79,0.23366963354279235],[119,96,64,0.20819925449639137],[119,96,65,0.20935326550284405],[119,96,66,0.21052255528600952],[119,96,67,0.21170819854801226],[119,96,68,0.2129112273307731],[119,96,69,0.21413262844053116],[119,96,70,0.2153733408341864],[119,96,71,0.21663425296741778],[119,96,72,0.21791620010459473],[119,96,73,0.21921996159043705],[119,96,74,0.22054625808353173],[119,96,75,0.2218957487515641],[119,96,76,0.22326902842836588],[119,96,77,0.2246666247327465],[119,96,78,0.22608899514910363],[119,96,79,0.22753652406983144],[119,97,64,0.20160977681249176],[119,97,65,0.20277873703471314],[119,97,66,0.2039643264345332],[119,97,67,0.205167598254463],[119,97,68,0.20638956215026227],[119,97,69,0.2076311816275973],[119,97,70,0.20889337144106662],[119,97,71,0.21017699495554604],[119,97,72,0.21148286146987316],[119,97,73,0.21281172350282418],[119,97,74,0.21416427404149468],[119,97,75,0.2155411437519379],[119,97,76,0.21694289815216627],[119,97,77,0.21837003474748112],[119,97,78,0.21982298012812607],[119,97,79,0.22130208702928456],[119,98,64,0.19492916414807912],[119,98,65,0.19611241984500244],[119,98,66,0.1973136837944307],[119,98,67,0.1985339876386315],[119,98,68,0.19977431847920468],[119,98,69,0.2010356163254864],[119,98,70,0.20231877150586686],[119,98,71,0.20362462204197407],[119,98,72,0.20495395098574287],[119,98,73,0.20630748371932173],[119,98,74,0.20768588521793113],[119,98,75,0.20908975727552404],[119,98,76,0.21051963569335685],[119,98,77,0.2119759874314333],[119,98,78,0.21345920772281995],[119,98,79,0.21496961715085072],[119,99,64,0.18816086016385286],[119,99,65,0.1893577577855146],[119,99,66,0.1905740706297943],[119,99,67,0.1918108086076029],[119,99,68,0.19306893610850373],[119,99,69,0.19434936946047],[119,99,70,0.1956529743531037],[119,99,71,0.19698056322426694],[119,99,72,0.19833289261014608],[119,99,73,0.1997106604586994],[119,99,74,0.20111450340660453],[119,99,75,0.20254499401955361],[119,99,76,0.20400263799600699],[119,99,77,0.2054878713343649],[119,99,78,0.20700105746356],[119,99,79,0.20854248433708372],[119,100,64,0.18130837613069495],[119,100,65,0.18251826283922457],[119,100,66,0.18374899883515722],[119,100,67,0.18500157217655044],[119,100,68,0.18627692439329557],[119,100,69,0.187575947957835],[119,100,70,0.18889948371989107],[119,100,71,0.1902483183051526],[119,100,72,0.19162318147794288],[119,100,73,0.19302474346781756],[119,100,74,0.19445361226021068],[119,100,75,0.19591033085097592],[119,100,76,0.19739537446493094],[119,100,77,0.19890914773837237],[119,100,78,0.20045198186555357],[119,100,79,0.20202413170914713],[119,101,64,0.17437528886974651],[119,101,65,0.1755975130603768],[119,101,66,0.17684204687607802],[119,101,67,0.1781098564102659],[119,101,68,0.17940186019587717],[119,101,69,0.1807189266866553],[119,101,70,0.18206187170299487],[119,101,71,0.18343145584229137],[119,101,72,0.18482838185382],[119,101,73,0.18625329197809215],[119,101,74,0.18770676525080804],[119,101,75,0.18918931477125156],[119,101,76,0.19070138493523697],[119,101,77,0.19224334863257259],[119,101,78,0.19381550440903544],[119,101,79,0.19541807359287966],[119,102,64,0.16736523863830327],[119,102,65,0.16859915045993773],[119,102,66,0.16985685767463105],[119,102,67,0.17113930430916263],[119,102,68,0.17244738577269364],[119,102,69,0.1737819463482268],[119,102,70,0.17514377664917274],[119,102,71,0.17653361104096965],[119,102,72,0.17795212502778052],[119,102,73,0.17939993260421366],[119,102,74,0.1808775835721903],[119,102,75,0.18238556082279905],[119,102,76,0.18392427758325203],[119,102,77,0.18549407462890455],[119,102,78,0.18709521746033553],[119,102,79,0.1887278934455056],[119,103,64,0.16028192696136784],[119,103,65,0.16152687883623512],[119,103,66,0.16279713643963262],[119,103,67,0.1640936216395853],[119,103,68,0.16541720660521864],[119,103,69,0.16676871130800008],[119,103,70,0.16814890098863267],[119,103,71,0.16955848358955256],[119,103,72,0.17099810715304914],[119,103,73,0.172468357184957],[119,103,74,0.17396975398404363],[119,103,75,0.17550274993692955],[119,103,76,0.17706772677866012],[119,103,77,0.17866499281888681],[119,103,78,0.18029478013365635],[119,103,79,0.1819572417228284],[119,104,64,0.15312911440866978],[119,104,65,0.1543844615505992],[119,104,66,0.15566664844142253],[119,104,67,0.15697657470824228],[119,104,68,0.1583150891745445],[119,104,69,0.15968298737082715],[119,104,70,0.16108100901143008],[119,104,71,0.1625098354375144],[119,104,72,0.1639700870262133],[119,104,73,0.16546232056590043],[119,104,74,0.16698702659770276],[119,104,75,0.16854462672309256],[119,104,76,0.17013547087767783],[119,104,77,0.17175983457114985],[119,104,78,0.1734179160933867],[119,104,79,0.17510983368673222],[119,105,64,0.14591061831751384],[119,105,65,0.14717571924836376],[119,105,66,0.14846921673155405],[119,105,67,0.1497919880811167],[119,105,68,0.15114485868003685],[119,105,69,0.1525285994998779],[119,105,70,0.1539439245871539],[119,105,71,0.1553914885163979],[119,105,72,0.15687188380994926],[119,105,73,0.15838563832440428],[119,105,74,0.1599332126038594],[119,105,75,0.1615149971997789],[119,105,76,0.16313130995760827],[119,105,77,0.16478239327009175],[119,105,78,0.16646841129729212],[119,105,79,0.1681894471533325],[119,106,64,0.1386303104612806],[119,106,65,0.1399045275250536],[119,106,66,0.1412087198072226],[119,106,67,0.14254374224668237],[119,106,68,0.14391039670188172],[119,106,69,0.1453094294790524],[119,106,70,0.14674152882773278],[119,106,71,0.14820732240353307],[119,106,72,0.14970737469816475],[119,106,73,0.15124218443668014],[119,106,74,0.15281218194205026],[119,106,75,0.15441772646691276],[119,106,76,0.1560591034926116],[119,106,77,0.15773652199548732],[119,106,78,0.15945011168041467],[119,106,79,0.16119992018160867],[119,107,64,0.13129211466339474],[119,107,65,0.13257481453757053],[119,107,66,0.1338890892202419],[119,107,67,0.13523577122323927],[119,107,68,0.13661563880733835],[119,107,69,0.13802941351870374],[119,107,70,0.13947775769317333],[119,107,71,0.14096127192832786],[119,107,72,0.14248049252337136],[119,107,73,0.14403588888676427],[119,107,74,0.14562786091174246],[119,107,75,0.14725673631954894],[119,107,76,0.1489227679705039],[119,107,77,0.1506261311428691],[119,107,78,0.15236692077950537],[119,107,79,0.15414514870234297],[119,108,64,0.12390000435712173],[119,108,65,0.12519055856074224],[119,108,66,0.12651430713093625],[119,108,67,0.1278720601107312],[119,108,68,0.1292645721010609],[119,108,69,0.13069253980503476],[119,108,70,0.1321565995405935],[119,108,71,0.13365732472149416],[119,108,72,0.13519522330664835],[119,108,73,0.13677073521775662],[119,108,74,0.1383842297253744],[119,108,75,0.14003600280323358],[119,108,76,0.1417262744509437],[119,108,77,0.14345518598503498],[119,108,78,0.14522279729833626],[119,108,79,0.14702908408770893],[119,109,64,0.11645800009102153],[119,109,65,0.11775578548905996],[119,109,66,0.11908840380676927],[119,109,67,0.12045664258687033],[119,109,68,0.1218612327193136],[119,109,69,0.12330284599299107],[119,109,70,0.12478209261637618],[119,109,71,0.1262995187070326],[119,109,72,0.12785560375002203],[119,109,73,0.12945075802514888],[119,109,74,0.13108532000317846],[119,109,75,0.13275955371085307],[119,109,76,0.13447364606483153],[119,109,77,0.13622770417451124],[119,109,78,0.13802175261372596],[119,109,79,0.13985573066134693],[119,110,64,0.10897016697986006],[119,110,65,0.1102745662834062],[119,110,66,0.11161545506551734],[119,110,67,0.11299359834737316],[119,110,68,0.1144097032678838],[119,110,69,0.11586441664245983],[119,110,70,0.11735832249124828],[119,110,71,0.11889193953678284],[119,110,72,0.12046571867106975],[119,110,73,0.12208004039205261],[119,110,74,0.12373521220959216],[119,110,75,0.12543146602078287],[119,110,76,0.12716895545473544],[119,110,77,0.12894775318677937],[119,110,78,0.1307678482220867],[119,110,79,0.13262914314873564],[119,111,64,0.10144061210135857],[119,111,65,0.1027510143631552],[119,111,66,0.10409957966336186],[119,111,67,0.10548705049068696],[119,111,68,0.10691411020407365],[119,111,69,0.10838138059814634],[119,111,70,0.1098894194386626],[119,111,71,0.1114387179679171],[119,111,72,0.11302969838012106],[119,111,73,0.11466271126669803],[119,111,74,0.11633803303163454],[119,111,75,0.1180558632767062],[119,111,76,0.11981632215670651],[119,111,77,0.12161944770463878],[119,111,78,0.12346519312686272],[119,111,79,0.12535342406822308],[119,112,64,0.09387348183859695],[119,112,65,0.09518928294345586],[119,112,66,0.09654493662771907],[119,112,67,0.09794116284702009],[119,112,68,0.09937862116257934],[119,112,69,0.10085790831294783],[119,112,70,0.10237955575629604],[119,112,71,0.10394402718318857],[119,112,72,0.10555171599987312],[119,112,73,0.1072029427820207],[119,112,74,0.1088979526990595],[119,112,75,0.1106369129089177],[119,112,76,0.1124199099233103],[119,112,77,0.11424694694352011],[119,112,78,0.11611794116667479],[119,112,79,0.11803272106254059],[119,113,64,0.08627295916787137],[119,113,65,0.08759356231750642],[119,113,66,0.08895572253460948],[119,113,67,0.09036013725148206],[119,113,68,0.09180744222506931],[119,113,69,0.093298209114628],[119,113,70,0.09483294303047307],[119,113,71,0.09641208005374574],[119,113,72,0.09803598472722791],[119,113,73,0.09970494751714587],[119,113,74,0.10141918224609742],[119,113,75,0.10317882349692747],[119,113,76,0.10498392398767653],[119,113,77,0.10683445191756225],[119,113,78,0.10873028828398945],[119,113,79,0.11067122417061076],[119,114,64,0.07864326089241702],[119,114,65,0.07996807708422393],[119,114,66,0.08133616873097427],[119,114,67,0.08274821076173788],[119,114,68,0.08420481513386285],[119,114,69,0.08570652841619625],[119,114,70,0.08725382934391501],[119,114,71,0.08884712634491049],[119,114,72,0.09048675503775166],[119,114,73,0.09217297570116684],[119,114,74,0.09390597071518536],[119,114,75,0.09568584197375563],[119,114,76,0.09751260826896835],[119,114,77,0.09938620264684772],[119,114,78,0.10130646973469859],[119,114,79,0.1032731630400393],[119,115,64,0.07098863482165041],[119,115,65,0.07231708332096698],[119,115,66,0.07369053850159524],[119,115,67,0.07510965281983656],[119,115,68,0.0765750144493686],[119,115,69,0.07808714486965229],[119,115,70,0.07964649642647648],[119,115,71,0.08125344986458588],[119,115,72,0.08290831183241759],[119,115,73,0.08461131235888392],[119,115,74,0.08636260230234527],[119,115,75,0.08816225077158729],[119,115,76,0.09001024251893541],[119,115,77,0.09190647530546192],[119,115,78,0.09385075723828218],[119,115,79,0.09584280407996365],[119,116,64,0.0633133568961945],[119,116,65,0.0646448657015729],[119,116,66,0.0660231241808803],[119,116,67,0.06744876235847219],[119,116,68,0.06892234465154329],[119,116,69,0.07044436746335497],[119,116,70,0.07201525674912851],[119,116,71,0.07363536555454725],[119,116,72,0.07530497152689397],[119,116,73,0.07702427439875958],[119,116,74,0.07879339344446995],[119,116,75,0.08061236490904233],[119,116,76,0.082481139409804],[119,116,77,0.08439957931063219],[119,116,78,0.08636745606880769],[119,116,79,0.08838444755450803],[119,117,64,0.05562172825833134],[119,117,65,0.05695573455935782],[119,117,66,0.05833824420916095],[119,117,67,0.05976986485132724],[119,117,68,0.06125113718501857],[119,117,69,0.06278253256266375],[119,117,70,0.064364450560837],[119,117,71,0.06599721652427026],[119,117,72,0.0676810790830214],[119,117,73,0.06941620764273981],[119,117,74,0.07120268984817058],[119,117,75,0.07304052901971281],[119,117,76,0.07492964156316267],[119,117,77,0.07686985435260157],[119,117,78,0.07886090208641977],[119,117,79,0.08090242461650393],[119,118,64,0.04791807226830491],[119,118,65,0.0492540228954958],[119,118,66,0.050640240133923264],[119,118,67,0.05207730930791643],[119,118,68,0.05356574744831599],[119,118,69,0.05510600089427237],[119,118,70,0.05669844286875486],[119,118,71,0.05834337102771098],[119,118,72,0.060041004982902935],[119,118,73,0.06179148379836069],[119,118,74,0.06359486346059512],[119,118,75,0.06545111432238143],[119,118,76,0.06736011852025181],[119,118,77,0.06932166736564804],[119,118,78,0.07133545870973246],[119,118,79,0.07340109428188346],[119,119,64,0.04020673146626952],[119,119,65,0.041544083332580195],[119,119,66,0.042933473555767376],[119,119,67,0.04437546521272978],[119,119,68,0.045870551726946096],[119,119,69,0.047419154474032],[119,119,70,0.04902162036152574],[119,119,71,0.05067821938283823],[119,119,72,0.052389142145400025],[119,119,73,0.05415449737293643],[119,119,74,0.05597430938202236],[119,119,75,0.057848515532723466],[119,119,76,0.05977696365345986],[119,119,77,0.061759409440049595],[119,119,78,0.06379551382892568],[119,119,79,0.0658848403445505],[119,120,64,0.032492064479696214],[119,120,65,0.033830285013172146],[119,120,66,0.03522232301890765],[119,120,67,0.03666871940848354],[119,120,68,0.038169944070204576],[119,120,69,0.039726393478074884],[119,120,70,0.041338388275509785],[119,120,71,0.04300617083372815],[119,120,72,0.044729902784850784],[119,120,73,0.046509662529642004],[119,120,74,0.04834544272004254],[119,120,75,0.0502371477163005],[119,120,76,0.05218459101883838],[119,120,77,0.05418749267481321],[119,120,78,0.05624547665935803],[119,120,79,0.05835806823154083],[119,121,64,0.024778442876620843],[119,121,65,0.026117010443724886],[119,121,66,0.02751118084660048],[119,121,67,0.02896147292386758],[119,121,68,0.03046833311204966],[119,121,69,0.03203213305762381],[119,121,70,0.03365316720431977],[119,121,71,0.03533165035560604],[119,121,72,0.037067715212390606],[119,121,73,0.03886140988587494],[119,121,74,0.04071269538570538],[119,121,75,0.0426214430832334],[119,121,76,0.04458743215002048],[119,121,77,0.04661034697154032],[119,121,78,0.048689774536079145],[119,121,79,0.05082520179885397],[119,122,64,0.017070247964544205],[119,122,65,0.01840865228369548],[119,122,66,0.0198044499213052],[119,122,67,0.021258137745596373],[119,122,68,0.022770138835869314],[119,122,69,0.02434080009729689],[119,122,70,0.02597038985147143],[119,122,71,0.027659095402644884],[119,122,72,0.029407020579687693],[119,122,73,0.031214183253703343],[119,122,74,0.03308051283144792],[119,122,75,0.03500584772436133],[119,122,76,0.03698993279334517],[119,122,77,0.03903241676924862],[119,122,78,0.04113284964904962],[119,122,79,0.04329068006776271],[119,123,64,0.009371867534785805],[119,123,65,0.010709610079636944],[119,123,66,0.012106540409382416],[119,123,67,0.013563133534563732],[119,123,68,0.015079789282941403],[119,123,69,0.016656829916708138],[119,123,70,0.018294497725953762],[119,123,71,0.019992952598323066],[119,123,72,0.021752269564893012],[119,123,73,0.023572436322205292],[119,123,74,0.025453350730605173],[119,123,75,0.02739481828868906],[119,123,76,0.029396549584003395],[119,123,77,0.03145815771994731],[119,123,78,0.0335791557188726],[119,123,79,0.03575895390141237],[119,124,64,0.0016876925526804198],[119,124,65,0.00302428694467205],[119,124,66,0.004421866430720511],[119,124,67,0.005880884286495913],[119,124,68,0.0074017172049760105],[119,124,69,0.008984662915756225],[119,124,70,0.010629937781109211],[119,124,71,0.0123376743687299],[119,124,72,0.014107919001197566],[119,124,73,0.01594062928208817],[119,124,74,0.017835671598888547],[119,124,75,0.019792818602515805],[119,124,76,0.0218117466635811],[119,124,77,0.02389203330535572],[119,124,78,0.026033154613429144],[119,124,79,0.028234482622089496],[119,125,64,-0.005977886206569916],[119,125,65,-0.004642913816849559],[119,125,66,-0.0032451573269021705],[119,125,67,-0.0017841850630907485],[119,125,68,-2.596433394499442E-4],[119,125,69,0.0013287411634091972],[119,125,70,0.00298115899663165],[119,125,71,0.0046977155186300745],[119,125,72,0.0064784284478034415],[119,125,73,0.008323225392395495],[119,125,74,0.010231941357648155],[119,125,75,0.012204316230049472],[119,125,76,0.014239992238817223],[119,125,77,0.016338511394576427],[119,125,78,0.01849931290521767],[119,125,79,0.020721730568971974],[119,126,64,-0.013620481576595955],[119,126,65,-0.012287592139710313],[119,126,66,-0.010890119048920566],[119,126,67,-0.009427652089830207],[119,126,68,-0.007899860444767981],[119,126,69,-0.0063064950702172995],[119,126,70,-0.004647391096520015],[119,126,71,-0.002922470249916098],[119,126,72,-0.0011317432968911412],[119,126,73,7.246874891037036E-4],[119,126,74,0.0026466258387116692],[119,126,75,0.004633778975310365],[119,126,76,0.006685755081375144],[119,126,77,0.008802060742520434],[119,126,78,0.010982098369209714],[119,126,79,0.0132251635961661],[119,127,64,-0.021235713472713302],[119,127,65,-0.019905354682804743],[119,127,66,-0.018508613290157072],[119,127,67,-0.017045100386946954],[119,127,68,-0.015514507874209715],[119,127,69,-0.013916610838091259],[119,127,70,-0.012251269947894494],[119,127,71,-0.010518433875981281],[119,127,72,-0.008718141739498808],[119,127,73,-0.0068505255639998985],[119,127,74,-0.004915812768802708],[119,127,75,-0.002914328674285649],[119,127,76,-8.464990309835496E-4],[119,127,77,0.0012871474294791074],[119,127,78,0.0034859764216038647],[119,127,79,0.005749245511414314],[119,128,64,-0.028819212419124607],[119,128,65,-0.027491818368936494],[119,128,66,-0.026096244526261136],[119,128,67,-0.024632123127395933],[119,128,68,-0.023099168631708245],[119,128,69,-0.021497180097002744],[119,128,70,-0.019826043576208652],[119,128,71,-0.018085734535445153],[119,128,72,-0.016276320293438618],[119,128,73,-0.01439796248235492],[119,128,74,-0.012450919529895854],[119,128,75,-0.01043554916285827],[119,128,76,-0.008352310932014495],[119,128,77,-0.006201768758355319],[119,128,78,-0.003984593500712452],[119,128,79,-0.001701565544718231],[119,129,64,-0.03636662313066652],[119,129,65,-0.03504261397962749],[119,129,66,-0.03364863076061031],[119,129,67,-0.03218432668189253],[119,129,68,-0.03064943859010527],[119,129,69,-0.02904378934500329],[119,129,70,-0.02736729021508255],[119,129,71,-0.02561994329410644],[119,129,72,-0.023801843938513034],[119,129,73,-0.02191318322576885],[119,129,74,-0.019954250433513954],[119,129,75,-0.01792543553970183],[119,129,76,-0.015827231743586467],[119,129,77,-0.013660238007609293],[119,129,78,-0.011425161620185365],[119,129,79,-0.009122820779363772],[119,130,64,-0.04387360814871544],[119,130,65,-0.04255338980455203],[119,130,66,-0.041161407186286914],[119,130,67,-0.0396973342924507],[119,130,68,-0.038160930175279106],[119,130,69,-0.03655204131516154],[119,130,70,-0.03487060401547282],[119,130,71,-0.03311664681784954],[119,130,72,-0.031290292937881325],[119,130,73,-0.029391762721285297],[119,130,74,-0.027421376120406515],[119,130,75,-0.025379555191247016],[119,130,76,-0.023266826610882974],[119,130,77,-0.02108382421530819],[119,130,78,-0.018831291557719343],[119,130,79,-0.01651008448720992],[119,131,64,-0.051335851531439936],[119,131,65,-0.05001981534578814],[119,131,66,-0.04863022990331878],[119,131,67,-0.04716678980161648],[119,131,68,-0.045629276106380234],[119,131,69,-0.04401755872582136],[119,131,70,-0.04233159880498438],[119,131,71,-0.04057145114005467],[119,131,72,-0.03873726661262056],[119,131,73,-0.03682929464396212],[119,131,74,-0.03484788566920327],[119,131,75,-0.03279349363153916],[119,131,76,-0.030666678496386046],[119,131,77,-0.028468108785502766],[119,131,78,-0.02619856413109678],[119,131,79,-0.02385893784987181],[119,132,64,-0.05874906259859869],[119,132,65,-0.05743758507707741],[119,132,66,-0.05605077969138006],[119,132,67,-0.05458836143759216],[119,132,68,-0.05305013319237273],[119,132,69,-0.05143598808756267],[119,132,70,-0.049745911904262585],[119,132,71,-0.04797998548644444],[119,132,72,-0.0461383871740656],[119,132,73,-0.044221395255754525],[119,132,74,-0.04222939044091034],[119,132,75,-0.04016285835141942],[119,132,76,-0.03802239203284552],[119,132,77,-0.03580869448513968],[119,132,78,-0.0335225812128741],[119,132,79,-0.031164982794975815],[119,133,64,-0.06610897973049623],[119,133,65,-0.06480242225771282],[119,133,66,-0.06341876583756745],[119,133,67,-0.06195774565486767],[119,133,68,-0.06041918618449538],[119,133,69,-0.05880300356647672],[119,133,70,-0.057109208000077794],[119,133,71,-0.05533790615698608],[119,133,72,-0.05348930361354698],[119,133,73,-0.05156370730212523],[119,133,74,-0.04956152798143354],[119,133,75,-0.04748328272603086],[119,133,76,-0.045329597434848656],[119,133,77,-0.043101209358786585],[119,133,78,-0.04079896964738994],[119,133,79,-0.038423845914575705],[119,134,64,-0.0734113742212884],[119,134,65,-0.07211008280124331],[119,134,66,-0.07072993001944339],[119,134,67,-0.06927067103055096],[119,134,68,-0.06773215168483426],[119,134,69,-0.06611431090394793],[119,134,70,-0.06441718307529587],[119,134,71,-0.062640900465039],[119,134,72,-0.06078569564971892],[119,134,73,-0.058851903966565366],[119,134,74,-0.056839965982328766],[119,134,75,-0.054750429980843895],[119,134,76,-0.05258395446917874],[119,134,77,-0.05034131070241321],[119,134,78,-0.048023385227059956],[119,134,79,-0.04563118244308928],[119,135,64,-0.08065205418683008],[119,135,65,-0.07935635919918704],[119,135,66,-0.07798005024353782],[119,135,67,-0.07652290221658498],[119,135,68,-0.07498478211119708],[119,135,69,-0.07336565139313489],[119,135,70,-0.07166556839592308],[119,135,71,-0.06988469073393622],[119,135,72,-0.06802327773366257],[119,135,73,-0.0660816928832203],[119,135,74,-0.06406040629996257],[119,135,75,-0.0619599972163799],[119,135,76,-0.05978115648415361],[119,135,77,-0.05752468909640629],[119,135,78,-0.05519151672815559],[119,135,79,-0.05278268029494282],[119,136,64,-0.08782686852667931],[119,136,65,-0.08653708449936837],[119,136,66,-0.08516494483892134],[119,136,67,-0.08371024394747173],[119,136,68,-0.08217286971790716],[119,136,69,-0.08055280591176339],[119,136,70,-0.07885013455484402],[119,136,71,-0.07706503835062051],[119,136,72,-0.07519780311138757],[119,136,73,-0.07324882020723866],[119,136,74,-0.07121858903270428],[119,136,75,-0.0691077194912616],[119,136,76,-0.06691693449756508],[119,136,77,-0.06464707249744439],[119,136,78,-0.062299090005684565],[119,136,79,-0.05987406416154606],[119,137,64,-0.09493171094046005],[119,137,65,-0.09364813633908298],[119,137,66,-0.0922804765060552],[119,137,67,-0.09082854510370242],[119,137,68,-0.08929225067271507],[119,137,69,-0.08767159901143662],[119,137,70,-0.08596669557245096],[119,137,71,-0.08417774787653276],[119,137,72,-0.08230506794392856],[119,137,73,-0.08034907474304043],[119,137,74,-0.07831029665634914],[119,137,75,-0.07618937396378733],[119,137,76,-0.07398706134341293],[119,137,77,-0.0717042303894313],[119,137,78,-0.06934187214757337],[119,137,79,-0.06690109966779556],[119,138,64,-0.1019625239987545],[119,138,65,-0.10068544103325483],[119,138,66,-0.09932255642108745],[119,138,67,-0.09787370283106256],[119,138,68,-0.0963388091900026],[119,138,69,-0.09471790306362948],[119,138,70,-0.09301111305433929],[119,138,71,-0.09121867121592353],[119,138,72,-0.08934091548520817],[119,138,73,-0.0873782921306806],[119,138,74,-0.08533135821794191],[119,138,75,-0.08320078409219289],[119,138,76,-0.08098735587761074],[119,138,77,-0.07869197799365468],[119,138,78,-0.0763156756883151],[119,138,79,-0.07385959758827454],[119,139,64,-0.10891530326814103],[119,139,65,-0.10764497771721249],[119,139,66,-0.10628714839520981],[119,139,67,-0.10484166671543416],[119,139,68,-0.10330848171989293],[119,139,69,-0.1016876424619878],[119,139,70,-0.09997930040568181],[119,139,71,-0.098183711841208],[119,139,72,-0.09630124031728637],[119,139,73,-0.09433235908992177],[119,139,74,-0.09227765358762019],[119,139,75,-0.09013782389323222],[119,139,76,-0.08791368724227766],[119,139,77,-0.08560618053779268],[119,139,78,-0.08321636288171619],[119,139,79,-0.0807454181227737],[119,140,64,-0.11578610149070767],[119,140,65,-0.11452278254440496],[119,140,66,-0.11317027308940975],[119,140,67,-0.11172844301341944],[119,140,68,-0.11019726119359818],[119,140,69,-0.1085767978812574],[119,140,70,-0.10686722710261409],[119,140,71,-0.10506882907569037],[119,140,72,-0.10318199264332206],[119,140,73,-0.10120721772234564],[119,140,74,-0.09914511776880675],[119,140,75,-0.09699642225939231],[119,140,76,-0.0947619791889438],[119,140,77,-0.0924427575840967],[119,140,78,-0.09003985003305237],[119,140,79,-0.0875544752314531],[119,141,64,-0.12257103281779558],[119,141,65,-0.1213149529388109],[119,141,66,-0.11996801228436227],[119,141,67,-0.1185300989385395],[119,141,68,-0.11700120132475511],[119,141,69,-0.1153814105926001],[119,141,70,-0.11367092302038151],[119,141,71,-0.11187004243340959],[119,141,72,-0.10997918263799811],[119,141,73,-0.10799886987125595],[119,141,74,-0.10592974526650001],[119,141,75,-0.10377256733450224],[119,141,76,-0.10152821446042737],[119,141,77,-0.09919768741649726],[119,141,78,-0.09678211189039965],[119,141,79,-0.09428274102940581],[119,142,64,-0.12926627709828686],[119,142,65,-0.12801765190236936],[119,142,66,-0.1266765132057942],[119,142,67,-0.1252427670033327],[119,142,68,-0.12371642096707214],[119,142,69,-0.12209758683561422],[119,142,70,-0.12038648281857245],[119,142,71,-0.11858343601643162],[119,142,72,-0.11668888485573936],[119,142,73,-0.11470338153969684],[119,142,74,-0.11262759451398718],[119,142,75,-0.11046231094805792],[119,142,76,-0.10820843923169787],[119,142,77,-0.10586701148696198],[119,142,78,-0.10343918609545644],[119,142,79,-0.10092625024093849],[119,143,64,-0.13586808422106933],[119,143,65,-0.13462711237704594],[119,143,66,-0.13329199290492832],[119,143,67,-0.131862649416969],[119,143,68,-0.13033910852790875],[119,143,69,-0.12872150224668388],[119,143,70,-0.12701007038305268],[119,143,71,-0.1252051629692068],[119,143,72,-0.1233072426963332],[119,143,73,-0.12131688736620017],[119,143,74,-0.11923479235760293],[119,143,75,-0.11706177310787946],[119,143,76,-0.11479876760935004],[119,143,77,-0.11244683892072249],[119,143,78,-0.11000717769347734],[119,143,79,-0.1074811047131935],[119,144,64,-0.14237277851185381],[119,144,65,-0.14113964166172044],[119,144,66,-0.13981074269420746],[119,144,67,-0.13838602253857057],[119,144,68,-0.13686552643797056],[119,144,69,-0.1352494063438393],[119,144,70,-0.1335379233247962],[119,144,71,-0.13173144999017816],[119,144,72,-0.12983047292814864],[119,144,73,-0.1278355951584621],[119,144,74,-0.12574753859971355],[119,144,75,-0.12356714655129064],[119,144,76,-0.12129538618987878],[119,144,77,-0.11893335108055758],[119,144,78,-0.11648226370250947],[119,144,79,-0.11394347798930016],[119,145,64,-0.1487767631845075],[119,145,65,-0.1475516258840629],[119,145,66,-0.14622913263844628],[119,145,67,-0.1448092413863954],[119,145,68,-0.14329201567728445],[119,145,69,-0.1416776270682928],[119,145,70,-0.1399663575357618],[119,145,71,-0.1381586019008002],[119,145,72,-0.13625487026910799],[119,145,73,-0.13425579048508973],[119,145,74,-0.13216211060009198],[119,145,75,-0.12997470135498101],[119,145,76,-0.12769455867690482],[119,145,77,-0.1253228061902898],[119,145,78,-0.12286069774208463],[119,145,79,-0.1203096199412077],[119,146,64,-0.15507652484657386],[119,146,65,-0.15385953452705703],[119,146,66,-0.15254361610108536],[119,146,67,-0.1511287442025513],[119,146,68,-0.14961500035711528],[119,146,69,-0.1480025753823132],[119,146,70,-0.14629177180149144],[119,146,71,-0.14448300627163835],[119,146,72,-0.142576812025079],[119,146,73,-0.14057384132509987],[119,146,74,-0.13847486793534902],[119,146,75,-0.13628078960321188],[119,146,76,-0.13399263055702615],[119,146,77,-0.13161154401716912],[119,146,78,-0.12913881472103672],[119,146,79,-0.12657586146187505],[119,147,64,-0.1612686380591405],[119,147,65,-0.1600599250103426],[119,147,66,-0.15875073434571385],[119,147,67,-0.1573410570734115],[119,147,68,-0.15583099235799858],[119,147,69,-0.15422074992360846],[119,147,70,-0.1525106524705917],[119,147,71,-0.15070113810571284],[119,147,72,-0.14879276278585907],[119,147,73,-0.14678620277533583],[119,147,74,-0.14468225711658633],[119,147,75,-0.14248185011454229],[119,147,76,-0.14018603383446326],[119,147,77,-0.13779599061330228],[119,147,78,-0.13531303558461716],[119,147,79,-0.13273861921698304],[119,148,64,-0.1673497699512203],[119,148,65,-0.1661494473265389],[119,148,66,-0.16484712119301792],[119,148,67,-0.16344279860588795],[119,148,68,-0.1619365960240433],[119,148,69,-0.16032874171637712],[119,148,70,-0.1586195781812646],[119,148,71,-0.15680956457924955],[119,148,72,-0.15489927917890656],[119,148,73,-0.15288942181595255],[119,148,74,-0.15078081636543716],[119,148,75,-0.14857441322722975],[119,148,76,-0.14627129182465126],[119,148,77,-0.14387266311629743],[119,148,78,-0.1413798721210615],[119,148,79,-0.1387944004563243],[119,149,64,-0.17331668488832552],[119,149,65,-0.17212484873222456],[119,149,66,-0.17082950773284067],[119,149,67,-0.16943068465924538],[119,149,68,-0.16792851291318844],[119,149,69,-0.16632323893870948],[119,149,70,-0.16461522464456269],[119,149,71,-0.162804949839518],[119,149,72,-0.1608930146805032],[119,149,73,-0.1588801421336632],[119,149,74,-0.1567671804481683],[119,149,75,-0.15455510564298625],[119,149,76,-0.15224502400646978],[119,149,77,-0.14983817460879745],[119,149,78,-0.14733593182729043],[119,149,79,-0.14473980788455987],[119,150,64,-0.17916624919538604],[119,150,65,-0.17798297849373368],[119,150,66,-0.17669472709150236],[119,150,67,-0.17530153313260777],[119,150,68,-0.17380354660356867],[119,150,69,-0.1722010317464885],[119,150,70,-0.1704943694845248],[119,150,71,-0.16868405985991142],[119,150,72,-0.16677072448450003],[119,150,73,-0.1647551090028927],[119,150,74,-0.1626380855680014],[119,150,75,-0.1604206553292481],[119,150,76,-0.15810395093325358],[119,150,77,-0.15568923903705933],[119,150,78,-0.15317792283390164],[119,150,79,-0.15057154459149036],[119,151,64,-0.18489543593418223],[119,151,65,-0.18372079268793073],[119,151,66,-0.18243971925455238],[119,151,67,-0.18105226880832803],[119,151,68,-0.17955860755615205],[119,151,69,-0.17795901715396534],[119,151,70,-0.17625389713536188],[119,151,71,-0.1744437673524334],[119,151,72,-0.17252927042881538],[119,151,73,-0.17051117422501016],[119,151,74,-0.16839037431582338],[119,151,75,-0.16616789648012054],[119,151,76,-0.16384489920276013],[119,151,77,-0.1614226761887474],[119,151,78,-0.15890265888961652],[119,151,79,-0.1562864190420079],[119,152,64,-0.19050132973496348],[119,152,65,-0.18933535905763943],[119,152,66,-0.18806153594462227],[119,152,67,-0.18667992825089064],[119,152,68,-0.1851907180333262],[119,152,69,-0.1835942039706726],[119,152,70,-0.18189080379536127],[119,152,71,-0.18008105673726604],[119,152,72,-0.17816562597935492],[119,152,73,-0.17614530112530968],[119,152,74,-0.1740210006789502],[119,152,75,-0.17179377453567324],[119,152,76,-0.16946480648576367],[119,152,77,-0.16703541672961075],[119,152,78,-0.1645070644048532],[119,152,79,-0.16188135012541038],[119,153,64,-0.19598113168243114],[119,153,65,-0.1948238619219027],[119,153,66,-0.1935573455545605],[119,153,67,-0.19218166476152576],[119,153,68,-0.1906970170736101],[119,153,69,-0.18910371779486346],[119,153,70,-0.18740220243769057],[119,153,71,-0.1855930291695983],[119,153,72,-0.18367688127153803],[119,153,73,-0.18165456960792004],[119,153,74,-0.17952703510813017],[119,153,75,-0.17729535125976825],[119,153,76,-0.17496072661345008],[119,153,77,-0.1725245072992232],[119,153,78,-0.16998817955461187],[119,153,79,-0.1673533722642433],[119,154,64,-0.2013321642562066],[119,154,65,-0.20018360714119632],[119,154,66,-0.1989244381359686],[119,154,67,-0.19755475338865713],[119,154,68,-0.19607476552261105],[119,154,69,-0.1944848060635881],[119,154,70,-0.19278532787822245],[119,154,71,-0.19097690762383357],[119,154,72,-0.18906024820954193],[119,154,73,-0.18703618126876098],[119,154,74,-0.18490566964290733],[119,154,75,-0.18266980987653325],[119,154,76,-0.18032983472373976],[119,154,77,-0.1778871156659111],[119,154,78,-0.17534316544078188],[119,154,79,-0.17269964058280218],[119,155,64,-0.20655187632551075],[119,155,65,-0.20541202713732087],[119,155,66,-0.20416023044286702],[119,155,67,-0.20279659599390976],[119,155,68,-0.20132135111995708],[119,155,69,-0.19973484315914347],[119,155,70,-0.1980375419001036],[119,155,71,-0.19623004203490413],[119,155,72,-0.19431306562299921],[119,155,73,-0.19228746456628087],[119,155,74,-0.19015422309506413],[119,155,75,-0.18791446026521286],[119,155,76,-0.18556943246626445],[119,155,77,-0.18312053594058886],[119,155,78,-0.18056930931360693],[119,155,79,-0.17791743613501476],[119,156,64,-0.2116378481981962],[119,156,65,-0.21050668596811328],[119,156,66,-0.20926227103062633],[119,156,67,-0.20790472637381607],[119,156,68,-0.20643429364233856],[119,156,69,-0.20485133557202617],[119,156,70,-0.20315633843521197],[119,156,71,-0.20134991449683237],[119,156,72,-0.19943280448128453],[119,156,73,-0.1974058800501023],[119,156,74,-0.19527014629029182],[119,156,75,-0.19302674421353805],[119,156,76,-0.19067695326612877],[119,156,77,-0.18822219384964767],[119,156,78,-0.18566402985244512],[119,156,79,-0.18300417119184376],[119,157,64,-0.21658779672426465],[119,157,65,-0.21546528445710844],[119,157,66,-0.2142282454103034],[119,157,67,-0.21287681543735704],[119,157,68,-0.2114112501027996],[119,157,69,-0.20983192712053322],[119,157,70,-0.20813934880263363],[119,157,71,-0.2063341445186727],[119,157,72,-0.2044170731655237],[119,157,73,-0.20238902564772177],[119,157,74,-0.20025102736821876],[119,157,75,-0.19800424072974177],[119,157,76,-0.19564996764660592],[119,157,77,-0.1931896520670281],[119,157,78,-0.1906248825059521],[119,157,79,-0.18795739458834926],[119,158,64,-0.22139958045359331],[119,158,65,-0.22028566537788496],[119,158,66,-0.21905598125810388],[119,158,67,-0.21771067643906017],[119,158,68,-0.2162500200060017],[119,158,69,-0.21467440422672524],[119,158,70,-0.21298434700388447],[119,158,71,-0.21118049433755937],[119,158,72,-0.20926362279805255],[119,158,73,-0.2072346420089839],[119,158,74,-0.20509459714052047],[119,158,75,-0.2028446714129548],[119,158,76,-0.20048618861047918],[119,158,77,-0.19802061560520234],[119,158,78,-0.1954495648914253],[119,158,79,-0.1927747971301279],[119,159,64,-0.22607120484803245],[119,159,65,-0.22496581869323906],[119,159,66,-0.22374345368012838],[119,159,67,-0.2224042702678145],[119,159,68,-0.2209485506596126],[119,159,69,-0.21937670124891784],[119,159,70,-0.21768925507503423],[119,159,71,-0.2158868742890151],[119,159,72,-0.21397035262948005],[119,159,73,-0.2119406179084835],[119,159,74,-0.20979873450727082],[119,159,75,-0.20754590588212907],[119,159,76,-0.20518347708019002],[119,159,77,-0.202712937265226],[119,159,78,-0.20013592225345167],[119,159,79,-0.197454217059292],[119,160,64,-0.2306008275479534],[119,160,65,-0.22950388684928424],[119,160,66,-0.22828879053248985],[119,160,67,-0.22695571079148613],[119,160,68,-0.22550494254191333],[119,160,69,-0.22393690587078097],[119,160,70,-0.22225214849582053],[119,160,71,-0.220451348234612],[119,160,72,-0.21853531548344451],[119,160,73,-0.2165049957059897],[119,160,74,-0.21436147193161992],[119,160,75,-0.212105967263582],[119,160,76,-0.209739847396886],[119,160,77,-0.20726462314593985],[119,160,78,-0.2046819529819538],[119,160,79,-0.2019936455800727],[119,161,64,-0.2349867636930444],[119,161,65,-0.23389817012426173],[119,161,66,-0.23269027779659213],[119,161,67,-0.23136327025712722],[119,161,68,-0.2299174547254117],[119,161,69,-0.22835326454684157],[119,161,70,-0.22667126165553964],[119,161,71,-0.22487213904676917],[119,161,72,-0.22295672325885374],[119,161,73,-0.2209259768646762],[119,161,74,-0.21878100097258868],[119,161,75,-0.21652303773695158],[119,161,76,-0.2141534728781479],[119,161,77,-0.21167383821211705],[119,161,78,-0.2090858141894273],[119,161,79,-0.20639123244383817],[119,162,64,-0.23922749129744725],[119,162,65,-0.23814713203216165],[119,162,66,-0.23694636500966892],[119,162,67,-0.235625384746876],[119,162,68,-0.2341845103565574],[119,162,69,-0.23262418800448625],[119,162,70,-0.23094499337581798],[119,162,71,-0.22914763415078976],[119,162,72,-0.22723295248970243],[119,162,73,-0.22520192752725687],[119,162,74,-0.22305567787608072],[119,162,75,-0.22079546413965578],[119,162,76,-0.21842269143450144],[119,162,77,-0.21593891192165426],[119,162,78,-0.21334582734745777],[119,162,79,-0.21064529159362322],[119,163,64,-0.24332165667936134],[119,163,65,-0.24224940478127688],[119,163,66,-0.24105567075070422],[119,163,67,-0.2397406596896703],[119,163,68,-0.23830470219168776],[119,163,69,-0.2367482568025856],[119,163,70,-0.23507191249038295],[119,163,71,-0.23327639112426013],[119,163,72,-0.23136254996259809],[119,163,73,-0.2293313841501574],[119,163,74,-0.2271840292242311],[119,163,75,-0.22492176362998528],[119,163,76,-0.22254601124483997],[119,163,77,-0.2200583439119278],[119,163,78,-0.21746048398265183],[119,163,79,-0.2147543068683001],[119,164,64,-0.24726807994487576],[119,164,65,-0.24620379478745336],[119,164,66,-0.24501698818149753],[119,164,67,-0.24370787542853733],[119,164,68,-0.24227679818895886],[119,164,69,-0.2407242269465032],[119,164,70,-0.2390507634815956],[119,164,71,-0.23725714335356962],[119,164,72,-0.23534423839174978],[119,164,73,-0.23331305919546996],[119,164,74,-0.23116475764285516],[119,164,75,-0.22890062940858846],[119,164,76,-0.2265221164905069],[119,164,77,-0.22403080974507272],[119,164,78,-0.2214284514317355],[119,164,79,-0.21871693776614065],[119,165,64,-0.25106576052621754],[119,165,65,-0.2500092882422241],[119,165,66,-0.2488292906430648],[119,165,67,-0.24752599284364774],[119,165,68,-0.24609974715645933],[119,165,69,-0.24455103555968039],[119,165,70,-0.2428804721739367],[119,165,71,-0.2410888057477436],[119,165,72,-0.23917692215161346],[119,165,73,-0.2371458468808959],[119,165,74,-0.23499674756719013],[119,165,75,-0.23273093649853627],[119,165,76,-0.2303498731482424],[119,165,77,-0.22785516671238726],[119,165,78,-0.2252485786560131],[119,165,79,-0.22253202526797133],[119,166,64,-0.25471388277429496],[119,166,65,-0.2536650567357036],[119,166,66,-0.25249173730724583],[119,166,67,-0.2511941590310115],[119,166,68,-0.24977268445637346],[119,166,69,-0.24822780661166832],[119,166,70,-0.24656015148431876],[119,166,71,-0.24477048050946593],[119,166,72,-0.24285969306706712],[119,166,73,-0.24082882898754232],[119,166,74,-0.23867907106579922],[119,166,75,-0.2364117475838471],[119,166,76,-0.23402833484186025],[119,166,77,-0.23153045969771946],[119,166,78,-0.22891990211506263],[119,166,79,-0.22619859771978956],[119,167,64,-0.2582118216056841],[119,167,65,-0.2571704629343964],[119,167,66,-0.2560036788836765],[119,167,67,-0.25471171303696716],[119,167,68,-0.2532949377653574],[119,167,69,-0.25175385670276496],[119,167,70,-0.2500891072293815],[119,167,71,-0.24830146296344002],[119,167,72,-0.24639183626127215],[119,167,73,-0.24436128072572838],[119,167,74,-0.2422109937227952],[119,167,75,-0.2399423189066221],[119,167,76,-0.2375567487528112],[119,167,77,-0.23505592710000855],[119,167,78,-0.23244165169981945],[119,167,79,-0.22971587677499494],[119,168,64,-0.26155914820388115],[119,168,65,-0.26052506631373473],[119,168,66,-0.2593646633819402],[119,168,67,-0.2580781916482816],[119,168,68,-0.2566660328909325],[119,168,69,-0.25512870090507067],[119,168,70,-0.2534668439895803],[119,168,71,-0.2516812474419089],[119,168,72,-0.24977283606103295],[119,168,73,-0.24774267665861816],[119,168,74,-0.24559198057820097],[119,168,75,-0.24332210622260475],[119,168,76,-0.2409345615894486],[119,168,77,-0.23843100681478124],[119,168,78,-0.23581325672486353],[119,168,79,-0.23308328339605555],[119,169,64,-0.2647556357749026],[119,169,65,-0.2637286289454348],[119,169,66,-0.2625744419289847],[119,169,67,-0.2612933352379484],[119,169,68,-0.25988569964399766],[119,169,69,-0.25835205866004984],[119,169,70,-0.25669307103016437],[119,169,71,-0.2549095332274205],[119,169,72,-0.25300238195974556],[119,169,73,-0.25097269668376887],[119,169,74,-0.24882170212652976],[119,169,75,-0.24655077081526],[119,169,76,-0.24416142561508725],[119,169,77,-0.24165534227470098],[119,169,78,-0.23903435198000367],[119,169,79,-0.23630044391569482],[119,170,64,-0.2678012653573282],[119,170,65,-0.2667811213397605],[119,170,66,-0.2656329746418987],[119,170,67,-0.26435709366677473],[119,170,68,-0.2629538777675362],[119,170,69,-0.2614238597326931],[119,170,70,-0.25976770827912765],[119,170,71,-0.2579862305529297],[119,170,72,-0.2560803746380276],[119,170,73,-0.2540512320726821],[119,170,74,-0.25190004037368285],[119,170,75,-0.249628185568456],[119,170,76,-0.2472372047349385],[119,170,77,-0.24472878854925906],[119,170,78,-0.24210478384124112],[119,170,79,-0.23936719615768653],[119,171,64,-0.2706962316865956],[119,171,65,-0.26968272834250673],[119,171,66,-0.268540436555856],[119,171,67,-0.26726963224056777],[119,171,68,-0.26587072292134317],[119,171,69,-0.2643442502220855],[119,171,70,-0.2626908923619464],[119,171,71,-0.26091146665904563],[119,171,72,-0.25900693204183334],[119,171,73,-0.2569783915681725],[119,171,74,-0.254827094951968],[119,171,75,-0.25255444109756187],[119,171,76,-0.250161980641743],[119,171,77,-0.24765141850341343],[119,171,78,-0.24502461644093],[119,171,79,-0.24228359561707613],[119,172,64,-0.27344094911366346],[119,172,65,-0.27243385508682116],[119,172,66,-0.2712972236073443],[119,172,67,-0.2700313377230401],[119,172,68,-0.2686366127228774],[119,172,69,-0.26711359862850137],[119,172,70,-0.2654629826932233],[119,172,71,-0.26368559190854424],[119,172,72,-0.26178239551818117],[119,172,73,-0.25975450753966756],[119,172,74,-0.257603189293363],[119,172,75,-0.2553298519390834],[119,172,76,-0.2529360590202081],[119,172,77,-0.2504235290152981],[119,172,78,-0.24779413789725058],[119,172,79,-0.24504992169993878],[119,173,64,-0.27603605757809135],[119,173,65,-0.2750351329999061],[119,173,66,-0.27390395867272976],[119,173,67,-0.2726428244044756],[119,173,68,-0.2712521528442944],[119,173,69,-0.26973250197707366],[119,173,70,-0.2680845676252779],[119,173,71,-0.26630918595819253],[119,173,72,-0.26440733600853183],[119,173,73,-0.26238014219648964],[119,173,74,-0.26022887686106544],[119,173,75,-0.25795496279887453],[119,173,76,-0.255559975810305],[119,173,77,-0.25304564725304923],[119,173,78,-0.2504138666030372],[119,173,79,-0.24766668402272463],[119,174,64,-0.27848242863539663],[119,174,65,-0.27748742586446573],[119,174,66,-0.27636149766201024],[119,174,67,-0.27510494022602316],[119,174,68,-0.27371818316551566],[119,174,69,-0.27220179199789407],[119,174,70,-0.2705564706535525],[119,174,71,-0.26878306398774277],[119,174,72,-0.26688256029968205],[119,174,73,-0.2648560938589761],[119,174,74,-0.26270494743919215],[119,174,75,-0.26043055485879174],[119,174,76,-0.2580345035292796],[119,174,77,-0.25551853701060345],[119,174,78,-0.25288455757383077],[119,174,79,-0.25013462877104997],[119,175,64,-0.28078117153876514],[119,175,65,-0.2797918359349778],[119,175,66,-0.2786709356678455],[119,175,67,-0.27741877295969153],[119,175,68,-0.2760357839834138],[119,175,69,-0.274522541362627],[119,175,70,-0.2728797566789052],[119,175,71,-0.2711082829861786],[119,175,72,-0.26920911733225195],[119,175,73,-0.2671834032875188],[119,175,74,-0.2650324334807085],[119,175,75,-0.2627576521418712],[119,175,76,-0.2603606576524613],[119,175,77,-0.25784320510255554],[119,175,78,-0.2552072088552253],[119,175,79,-0.2524547451180159],[119,176,64,-0.2829336393751787],[119,176,65,-0.28194971010884495],[119,176,66,-0.28083361316991473],[119,176,67,-0.2795856564441078],[119,176,68,-0.2782062822771748],[119,176,69,-0.27669606997769525],[119,176,70,-0.2750557383268545],[119,176,71,-0.27328614809526963],[119,176,72,-0.2713883045668235],[119,176,73,-0.26936336006958406],[119,176,74,-0.26721261651364225],[119,176,75,-0.2649375279360804],[119,176,76,-0.2625397030529255],[119,176,77,-0.2600209078181265],[119,176,78,-0.2573830679895719],[119,176,79,-0.2546282717021092],[119,177,64,-0.28494143525582494],[119,177,65,-0.28396264615229694],[119,177,66,-0.28285112229447695],[119,177,67,-0.28160717687590586],[119,177,68,-0.2802312580297055],[119,177,69,-0.27872395133390393],[119,177,70,-0.2770859823236388],[119,177,71,-0.27531821901030507],[119,177,72,-0.273421674407604],[119,177,73,-0.27139750906457794],[119,177,74,-0.2692470336054542],[119,177,75,-0.266971711276521],[119,177,76,-0.2645731604998791],[119,177,77,-0.26205315743411484],[119,177,78,-0.2594136385419127],[119,177,79,-0.2566567031645596],[119,178,64,-0.28680641856086075],[119,178,65,-0.28583249898111696],[119,178,66,-0.2847253131291989],[119,178,67,-0.2834851791568187],[119,178,68,-0.2821125506051537],[119,178,69,-0.2806080189125768],[119,178,70,-0.2789723159291688],[119,178,71,-0.27720631643807636],[119,178,72,-0.2753110406836772],[119,178,73,-0.2732876569066288],[119,178,74,-0.2711374838856372],[119,178,75,-0.2688619934861508],[119,178,76,-0.266462813215841],[119,178,77,-0.2639417287869045],[119,178,78,-0.261300686685206],[119,178,79,-0.25854179674621847],[119,179,64,-0.2885307112385924],[119,179,65,-0.2875613869962462],[119,179,66,-0.28645830009331763],[119,179,67,-0.285221773296532],[119,179,68,-0.28385226518260764],[119,179,69,-0.2823503726482648],[119,179,70,-0.28071683342692566],[119,179,71,-0.2789525286121699],[119,179,72,-0.2770584851879091],[119,179,73,-0.27503587856535194],[119,179,74,-0.27288603512660015],[119,179,75,-0.27061043477508173],[119,179,76,-0.2682107134926782],[119,179,77,-0.265688665903583],[119,179,78,-0.26304624784491315],[119,179,79,-0.26028557894402515],[119,180,64,-0.29011670415892676],[119,180,65,-0.2891516984741338],[119,180,66,-0.2880524683629925],[119,180,67,-0.28681934087115946],[119,180,68,-0.2854527792458277],[119,180,69,-0.28395338544788273],[119,180,70,-0.2823219026706697],[119,180,71,-0.2805592178654286],[119,180,72,-0.2786663642733682],[119,180,73,-0.27664452396444683],[119,180,74,-0.27449503038269973],[119,180,75,-0.2722193708983208],[119,180,76,-0.26981918936635396],[119,180,77,-0.2672962886920348],[119,180,78,-0.26465263340279943],[119,180,79,-0.26189035222691615],[119,181,64,-0.29156706352120054],[119,181,65,-0.29060609801192416],[119,181,66,-0.28951048035194593],[119,181,67,-0.2882805415374404],[119,181,68,-0.2869167491291148],[119,181,69,-0.28541970976638],[119,181,70,-0.2837901716880574],[119,181,71,-0.28202902725968026],[119,181,72,-0.28013731550735177],[119,181,73,-0.2781162246582358],[119,181,74,-0.2759670946875189],[119,181,75,-0.2736914198720456],[119,181,76,-0.2712908513504917],[119,181,77,-0.268767199690108],[119,181,78,-0.2661224374600534],[119,181,79,-0.2633587018112782],[119,182,64,-0.2928847373163962],[119,182,65,-0.2919275330275052],[119,182,66,-0.29083528224741406],[119,182,67,-0.2896083196026772],[119,182,68,-0.2882471166193319],[119,182,69,-0.28675228423895527],[119,182,70,-0.28512457534118363],[119,182,71,-0.28336488727275666],[119,182,72,-0.2814742643830477],[119,182,73,-0.2794539005661578],[119,182,74,-0.27730514180940813],[119,182,75,-0.27502948874843836],[119,182,76,-0.27262859922877025],[119,182,77,-0.27010429087387056],[119,182,78,-0.2674585436597381],[119,182,79,-0.2646935024959627],[119,183,64,-0.29407296184365006],[119,183,65,-0.29311924031431325],[119,183,66,-0.292030110601304],[119,183,67,-0.29080591065030725],[119,183,68,-0.28944711561397307],[119,183,69,-0.28795434036972134],[119,183,70,-0.2863283420439485],[119,183,71,-0.28457002254269226],[119,183,72,-0.282680431088719],[119,183,73,-0.2806607667651114],[119,183,74,-0.2785123810651894],[119,183,75,-0.27623678044897315],[119,183,76,-0.2738356289060465],[119,183,77,-0.27131075052485754],[119,183,78,-0.26866413206847617],[119,183,79,-0.2658979255567614],[119,184,64,-0.2951352682811461],[119,184,65,-0.2941847526509894],[119,184,66,-0.2930984989766491],[119,184,67,-0.29187684822121185],[119,184,68,-0.2905202788353827],[119,184,69,-0.28902940927690923],[119,184,70,-0.28740500053634366],[119,184,71,-0.2856479586692058],[119,184,72,-0.2837593373345134],[119,184,73,-0.28174034033975137],[119,184,74,-0.27959232419211755],[119,184,75,-0.2773168006562511],[119,184,76,-0.274915439318306],[119,184,77,-0.27239007015639916],[119,184,78,-0.2697426861174601],[119,184,79,-0.26697544570043386],[119,185,64,-0.29607548931135264],[119,185,65,-0.295127905465849],[119,185,66,-0.29404428464933086],[119,185,67,-0.2928249705507132],[119,185,68,-0.2914704446010776],[119,185,69,-0.28998132849457514],[119,185,70,-0.288358386715618],[119,185,71,-0.28660252907242123],[119,185,72,-0.284714813236856],[119,185,73,-0.28269644729069154],[119,185,74,-0.28054879227805907],[119,185,75,-0.27827336476434905],[119,185,76,-0.27587183940139726],[119,185,77,-0.27334605149899605],[119,185,78,-0.2706979996027542],[119,185,79,-0.26792984807825504],[119,186,64,-0.29689776580061256],[119,186,65,-0.295952843556171],[119,186,66,-0.2948716153650651],[119,186,67,-0.2936544273612781],[119,186,68,-0.292301763650187],[119,186,69,-0.2908142488308164],[119,186,70,-0.2891926505243321],[119,186,71,-0.28743788190883657],[119,186,72,-0.285551004260433],[119,186,73,-0.2835332295006249],[119,186,74,-0.2813859227498977],[119,186,75,-0.27911060488768225],[119,186,76,-0.2767089551185593],[119,186,77,-0.2741828135447478],[119,186,78,-0.2715341837448886],[119,186,79,-0.2687652353590819],[119,187,64,-0.29760655353306575],[119,187,65,-0.29666402786228474],[119,187,66,-0.2955849561516395],[119,187,67,-0.2943696867108926],[119,187,68,-0.2930187060259779],[119,187,69,-0.2915326412824746],[119,187,70,-0.28991226289527505],[119,187,71,-0.28815848704451774],[119,187,72,-0.28627237821774065],[119,187,73,-0.2842551517583365],[119,187,74,-0.2821081764201403],[119,187,75,-0.27983297692836173],[119,187,76,-0.27743123654671875],[119,187,77,-0.2749047996508066],[119,187,78,-0.2722556743077251],[119,187,79,-0.26948603486192046],[119,188,64,-0.2982066299989514],[119,188,65,-0.29726624229650767],[119,188,66,-0.2961890961864485],[119,188,67,-0.2949755418971738],[119,188,68,-0.29362606801453206],[119,188,69,-0.2921413040063787],[119,188,70,-0.2905220227533024],[119,188,71,-0.28876914308556967],[119,188,72,-0.2868837323262605],[119,188,73,-0.2848670088406654],[119,188,74,-0.2827203445917793],[119,188,75,-0.28044526770210343],[119,188,76,-0.27804346502161237],[119,188,77,-0.27551678470191654],[119,188,78,-0.2728672387766541],[119,188,79,-0.27009700574804996],[119,189,64,-0.29870310123723764],[119,189,65,-0.2977646006268745],[119,189,66,-0.2966891557192677],[119,189,67,-0.29547711841715074],[119,189,68,-0.29412897913950187],[119,189,69,-0.29264536934706986],[119,189,70,-0.29102706407402934],[119,189,71,-0.28927498446582856],[119,189,72,-0.28739020032319174],[119,189,73,-0.28537393265235267],[119,189,74,-0.283227556221354],[119,189,75,-0.28095260212262174],[119,189,76,-0.27855076034167003],[119,189,77,-0.27602388233197783],[119,189,78,-0.2733739835960528],[119,189,79,-0.27060324627263665],[119,190,64,-0.2991014087326078],[119,190,65,-0.2981645534156916],[119,190,66,-0.29709059305030827],[119,190,67,-0.29587988098275186],[119,190,68,-0.29453290921299224],[119,190,69,-0.29305031092104006],[119,190,70,-0.2914328629994204],[119,190,71,-0.28968148859180665],[119,190,72,-0.28779725963778335],[119,190,73,-0.2857813994238132],[119,190,74,-0.28363528514024117],[119,190,75,-0.28136045044454683],[119,190,76,-0.27895858803070184],[119,190,77,-0.27643155220466553],[119,190,78,-0.2737813614660475],[119,190,79,-0.27101020109588037],[119,191,64,-0.29940733636680106],[119,191,65,-0.29847189501291416],[119,191,66,-0.29739921156353566],[119,191,67,-0.29618964059199526],[119,191,68,-0.29484367544255075],[119,191,69,-0.2933619507574824],[119,191,70,-0.29174524501026566],[119,191,71,-0.2899944830448856],[119,191,72,-0.28811073862125713],[119,191,73,-0.2860952369668237],[119,191,74,-0.2839493573341708],[119,191,75,-0.28167463556486527],[119,191,76,-0.2792727666593743],[119,191,77,-0.2767456073531033],[119,191,78,-0.27409517869857225],[119,191,79,-0.27132366865368307],[119,192,64,-0.2996270174242982],[119,192,65,-0.2986927706043331],[119,192,66,-0.29762116681525375],[119,192,67,-0.29641256165586827],[119,192,68,-0.295067449594269],[119,192,69,-0.2935864664955421],[119,192,70,-0.2919703921555351],[119,192,71,-0.29022015284074865],[119,192,72,-0.2883368238343126],[119,192,73,-0.28632163198812],[119,192,74,-0.28417595828096176],[119,192,75,-0.28190134038286063],[119,192,76,-0.27949947522547236],[119,192,77,-0.2769722215785805],[119,192,78,-0.27432160263271244],[119,192,79,-0.2715498085878306],[119,193,64,-0.2997669416523606],[119,193,65,-0.2988336833145845],[119,193,66,-0.29776297367795856],[119,193,67,-0.2965551691809146],[119,193,68,-0.29521076521199696],[119,193,69,-0.29373039863807826],[119,193,70,-0.29211485033862516],[119,193,71,-0.29036504774606486],[119,193,72,-0.28848206739222404],[119,193,73,-0.286467137460912],[119,193,74,-0.2843216403464819],[119,193,75,-0.28204711521858294],[119,193,76,-0.27964526059295836],[119,193,77,-0.27711793690832287],[119,193,78,-0.2744671691093483],[119,193,79,-0.2716951492357027],[119,194,64,-0.29983396237541726],[119,194,65,-0.2989015013649745],[119,194,66,-0.29783151353945414],[119,194,67,-0.29662435600751114],[119,194,68,-0.2952805248926651],[119,194,69,-0.29380065786193155],[119,194,70,-0.29218553666048463],[119,194,71,-0.29043608965241063],[119,194,72,-0.28855339436752414],[119,194,73,-0.2865386800543085],[119,194,74,-0.2843933302388294],[119,194,75,-0.28211888528982276],[119,194,76,-0.2797170449898142],[119,194,77,-0.27718967111231174],[119,194,78,-0.27453879000508596],[119,194,79,-0.2717665951794973],[119,195,64,-0.2998353036638105],[119,195,65,-0.2989034652861289],[119,195,66,-0.2978340415572476],[119,195,67,-0.2966273901038533],[119,195,68,-0.29528400761772866],[119,195,69,-0.29380453238470405],[119,195,70,-0.29218974681963295],[119,195,71,-0.290440580007451],[119,195,72,-0.28855811025028244],[119,195,73,-0.2865435676206668],[119,195,74,-0.2843983365207451],[119,195,75,-0.2821239582476107],[119,195,76,-0.2797221335646861],[119,195,77,-0.27719472527915734],[119,195,78,-0.2745437608254906],[119,195,79,-0.27177143485498434],[119,196,64,-0.2997785675568726],[119,196,65,-0.2988471951854422],[119,196,66,-0.2977781939681877],[119,196,67,-0.296571921915622],[119,196,68,-0.2952288761407037],[119,196,69,-0.2937496953880301],[119,196,70,-0.2921351625690485],[119,196,71,-0.29038620730334197],[119,196,72,-0.2885039084659553],[119,196,73,-0.2864894967408367],[119,196,74,-0.28434435718022777],[119,196,75,-0.2820700317702155],[119,196,76,-0.2796682220022987],[119,196,77,-0.27714079145100645],[119,196,78,-0.2744897683575943],[119,196,79,-0.27171734821976357],[119,197,64,-0.2996717413403771],[119,197,65,-0.2987406980693683],[119,197,66,-0.2976719954533974],[119,197,67,-0.29646599177136745],[119,197,68,-0.2951231844308354],[119,197,69,-0.2936442124973766],[119,197,70,-0.29202985922996194],[119,197,71,-0.29028105462240505],[119,197,72,-0.28839887795084584],[119,197,73,-0.2863845603273395],[119,197,74,-0.28423948725939774],[119,197,75,-0.2819652012156769],[119,197,76,-0.279563404197683],[119,197,77,-0.2770359603175221],[119,197,78,-0.2743848983817194],[119,197,79,-0.27161241448106166],[119,198,64,-0.2995232048783232],[119,198,65,-0.2985923752205101],[119,198,66,-0.2975238665584542],[119,198,67,-0.2963180373435792],[119,198,68,-0.29497538517286637],[119,198,69,-0.29349654931833336],[119,198,70,-0.29188231326251723],[119,198,71,-0.2901336072400289],[119,198,72,-0.2882515107851348],[119,198,73,-0.28623725528544863],[119,198,74,-0.2840922265415643],[119,198,75,-0.28181796733283737],[119,198,76,-0.2794161799891799],[119,198,77,-0.2768887289688948],[119,198,78,-0.2742376434425773],[119,198,79,-0.27146511988303834],[119,199,64,-0.29934173799907604],[119,199,65,-0.29841102962953503],[119,199,66,-0.2973426311688453],[119,199,67,-0.29613690116545655],[119,199,68,-0.2947943373229178],[119,199,69,-0.2933155790294171],[119,199,70,-0.29170140989332827],[119,199,71,-0.2899527602848221],[119,199,72,-0.28807070988350947],[119,199,73,-0.28605649023218727],[119,199,74,-0.2839114872965238],[119,199,75,-0.28163724403089774],[119,199,76,-0.2792354629502384],[119,199,77,-0.2767080087079117],[119,199,78,-0.2740569106796694],[119,199,79,-0.2712843655536151],[119,200,64,-0.2991365279358592],[119,200,65,-0.2982058734819091],[119,200,66,-0.2971375240406884],[119,200,67,-0.29593183820338054],[119,200,68,-0.2945893137204849],[119,200,69,-0.2931105900313833],[119,200,70,-0.2914964507999144],[119,200,71,-0.28974782645601294],[119,200,72,-0.2878657967433773],[119,200,73,-0.2858515932732403],[119,200,74,-0.28370660208408105],[119,200,75,-0.2814323662074839],[119,200,76,-0.27903058824000426],[119,200,77,-0.2765031329210753],[119,200,78,-0.2738520297169773],[119,200,79,-0.2710794754108258],[119,201,64,-0.2989171768215919],[119,201,65,-0.2979865356994399],[119,201,66,-0.2969181983867153],[119,201,67,-0.29571252348507826],[119,201,68,-0.29437000875654007],[119,201,69,-0.29289129365303923],[119,201,70,-0.29127716185202246],[119,201,71,-0.289528543798089],[119,201,72,-0.2876465192506644],[119,201,73,-0.2856323198377798],[119,201,74,-0.28348733161578765],[119,201,75,-0.2812130976352277],[119,201,76,-0.27881132051269786],[119,201,77,-0.27628386500876556],[119,201,78,-0.27363276061194464],[119,201,79,-0.27086020412868617],[119,202,64,-0.2982451853693956],[119,202,65,-0.29731454183555595],[119,202,66,-0.2962462021811335],[119,202,67,-0.2950405250081638],[119,202,68,-0.2936980080789501],[119,202,69,-0.29221929084563614],[119,202,70,-0.2906051569857836],[119,202,71,-0.2888565369440155],[119,202,72,-0.28697451047968736],[119,202,73,-0.28496030922066307],[119,202,74,-0.28281531922302816],[119,202,75,-0.2805410835369543],[119,202,76,-0.2781393047785661],[119,202,77,-0.27561184770785185],[119,202,78,-0.2729607418126354],[119,202,79,-0.2701881838985659],[119,203,64,-0.2982407917952513],[119,203,65,-0.2973100990919507],[119,203,66,-0.29624171205241],[119,203,67,-0.29503598928082575],[119,203,68,-0.2936934285396928],[119,203,69,-0.29221466927932993],[119,203,70,-0.29060049517341036],[119,203,71,-0.288851836660558],[119,203,72,-0.2869697734919706],[119,203,73,-0.28495553728514667],[119,203,74,-0.2828105140835533],[119,203,75,-0.28053624692243817],[119,203,76,-0.27813443840065066],[119,203,77,-0.27560695325850104],[119,203,78,-0.27295582096168447],[119,203,79,-0.2701832382912195],[119,204,64,-0.29822564557421916],[119,204,65,-0.2972947833662055],[119,204,66,-0.29622623297321904],[119,204,67,-0.2950203530069063],[119,204,68,-0.2936776412304224],[119,204,69,-0.29219873708779476],[119,204,70,-0.2905844242392922],[119,204,71,-0.28883563310285665],[119,204,72,-0.2869534434015628],[119,204,73,-0.28493908671717894],[119,204,74,-0.2827939490496677],[119,204,75,-0.28051957338283173],[119,204,76,-0.2781176622559641],[119,204,77,-0.27559008034153987],[119,204,78,-0.27293885702896736],[119,204,79,-0.27016618901435585],[119,205,64,-0.29796955863812324],[119,205,65,-0.29703833613411834],[119,205,66,-0.29596943851541135],[119,205,67,-0.294763224409876],[119,205,68,-0.2934201915824576],[119,205,69,-0.2919409794641936],[119,205,70,-0.29032637168723585],[119,205,71,-0.2885772986259356],[119,205,72,-0.2866948399439512],[119,205,73,-0.28468022714745744],[119,205,74,-0.2825348461442908],[119,205,75,-0.2802602398092381],[119,205,76,-0.2778581105553274],[119,205,77,-0.27533032291115733],[119,205,78,-0.27267890610428547],[119,205,79,-0.26990605665062883],[119,206,64,-0.2976904849569084],[119,206,65,-0.29675864345377656],[119,206,66,-0.295689149284292],[119,206,67,-0.29448236110476556],[119,206,68,-0.29313877668376964],[119,206,69,-0.2916590354305679],[119,206,70,-0.29004392092954356],[119,206,71,-0.2882943634806827],[119,206,72,-0.28641144264608165],[119,206,73,-0.28439638980254733],[119,206,74,-0.28225059070013314],[119,206,75,-0.2799755880268111],[119,206,76,-0.27757308397914604],[119,206,77,-0.2750449428390008],[119,206,78,-0.2723931935562983],[119,206,79,-0.2696200323377925],[119,207,64,-0.2973827592437671],[119,207,65,-0.29644997548297825],[119,207,66,-0.2953795732168857],[119,207,67,-0.2941719111459492],[119,207,68,-0.2928274870451152],[119,207,69,-0.29134694029134456],[119,207,70,-0.2897310543971331],[119,207,71,-0.2879807595500812],[119,207,72,-0.28609713515848145],[119,207,73,-0.28408141240299434],[119,207,74,-0.28193497679425095],[119,207,75,-0.2796593707365894],[119,207,76,-0.2772562960977838],[119,207,77,-0.2747276167848013],[119,207,78,-0.27207536132560783],[119,207,79,-0.2693017254569777],[119,208,64,-0.29704102201034754],[119,208,65,-0.29610691129455124],[119,208,66,-0.2950352301665804],[119,208,67,-0.29382633739029995],[119,208,68,-0.2924807307508498],[119,208,69,-0.2909990495809003],[119,208,70,-0.2893820772928918],[119,208,71,-0.2876307439173167],[119,208,72,-0.285746128647009],[119,208,73,-0.2837294623875142],[119,208,74,-0.28158213031337753],[119,208,75,-0.279305674430558],[119,208,76,-0.27690179614482646],[119,208,77,-0.27437235883618205],[119,208,78,-0.2717193904393108],[119,208,79,-0.2689450860300374],[119,209,64,-0.2966602129952224],[119,209,65,-0.29572433224399186],[119,209,66,-0.2946509452122368],[119,209,67,-0.29344041075006144],[119,209,68,-0.2920932266578451],[119,209,69,-0.29061003221079973],[119,209,70,-0.2889916106894981],[119,209,71,-0.28723889191643315],[119,209,72,-0.28535295479857414],[119,209,73,-0.28333502987599135],[119,209,74,-0.28118650187638894],[119,209,75,-0.27890891227575],[119,209,76,-0.2765039618649562],[119,209,77,-0.2739735133224137],[119,209,78,-0.27131959379271064],[119,209,79,-0.26854439747125547],[119,210,64,-0.2962355646495515],[119,210,65,-0.2952974153947805],[119,210,66,-0.2942218420254328],[119,210,67,-0.2930092035042926],[119,210,68,-0.2916599976534019],[119,210,69,-0.29017486367643563],[119,210,70,-0.28855458468703277],[119,210,71,-0.28680009024314534],[119,210,72,-0.2849124588873674],[119,210,73,-0.28289292069332084],[119,210,74,-0.2807428598179317],[119,210,75,-0.27846381705980616],[119,210,76,-0.27605749242356603],[119,210,77,-0.27352574769017557],[119,210,78,-0.27087060899328474],[119,210,79,-0.26809426940154035],[119,211,64,-0.29576259567995566],[119,211,65,-0.29482162700138514],[119,211,66,-0.29374333629585514],[119,211,67,-0.2925280826689052],[119,211,68,-0.29117636397218016],[119,211,69,-0.2896888193230882],[119,211,70,-0.28806623163039646],[119,211,71,-0.2863095301258276],[119,211,72,-0.28441979290161734],[119,211,73,-0.2823982494541095],[119,211,74,-0.28024628323322465],[119,211,75,-0.277965434198011],[119,211,76,-0.2755574013781341],[119,211,77,-0.27302404544134085],[119,211,78,-0.270367391266923],[119,211,79,-0.2675896305251274],[119,212,64,-0.2952371046485962],[119,212,65,-0.29429271604994867],[119,212,66,-0.2932111292148367],[119,212,67,-0.29199270342528594],[119,212,68,-0.29063793657213643],[119,212,69,-0.289147467671399],[119,212,70,-0.2875220793865285],[119,212,71,-0.2857627005566742],[119,212,72,-0.28387040873086855],[119,212,73,-0.28184643270823295],[119,212,74,-0.2796921550840342],[119,212,75,-0.27740911480179886],[119,212,76,-0.2749990097113477],[119,212,77,-0.2724636991327799],[119,212,78,-0.269805206426435],[119,212,79,-0.2670257215687799],[119,213,64,-0.2946551636304451],[119,213,65,-0.29370670785664577],[119,213,66,-0.29262120101702294],[119,213,67,-0.2913990026074904],[119,213,68,-0.2900406105694554],[119,213,69,-0.2885466638022435],[119,213,70,-0.2869179446814114],[119,213,71,-0.2851553815830109],[119,213,72,-0.28326005141376465],[119,213,73,-0.28123318214723303],[119,213,74,-0.27907615536580366],[119,213,75,-0.27679050880871403],[119,213,76,-0.27437793892596596],[119,213,77,-0.2718403034381647],[119,213,78,-0.26917962390230754],[119,213,79,-0.26639808828347256],[119,214,64,-0.2940131119277709],[119,214,65,-0.29305989772373464],[119,214,66,-0.2919698045801925],[119,214,67,-0.29074319224803147],[119,214,68,-0.2893805587325017],[119,214,69,-0.287882542801029],[119,214,70,-0.28624992649688774],[119,214,71,-0.28448363765879137],[119,214,72,-0.2825847524463655],[119,214,73,-0.2805544978715786],[119,214,74,-0.2783942543359653],[119,214,75,-0.27610555817385307],[119,214,76,-0.27369010420144546],[119,214,77,-0.2711497482718028],[119,214,78,-0.26848650983573974],[119,214,79,-0.26570257450859025],[119,215,64,-0.29330754984181895],[119,215,65,-0.29234884465328204],[119,215,66,-0.29125345908321054],[119,215,67,-0.2900217531822452],[119,215,68,-0.28865422503476945],[119,215,69,-0.2871515132613949],[119,215,70,-0.2855143995272661],[119,215,71,-0.28374381105625046],[119,215,72,-0.28184082315097314],[119,215,73,-0.27980666171877244],[119,215,74,-0.2776427058034132],[119,215,75,-0.27535049012276547],[119,215,76,-0.2729317076123061],[119,215,77,-0.2703882119744786],[119,215,78,-0.2677220202339351],[119,215,79,-0.2649353152986109],[119,216,64,-0.29253533250170904],[119,216,65,-0.2915703651185809],[119,216,66,-0.2904689437221377],[119,216,67,-0.2892314287112494],[119,216,68,-0.2878583182668508],[119,216,69,-0.2863502508483369],[119,216,70,-0.284708007695738],[119,216,71,-0.2829325153377368],[119,216,72,-0.28102484810548845],[119,216,73,-0.27898623065232164],[119,216,74,-0.2768180404791546],[119,216,75,-0.2745218104658347],[119,216,76,-0.2720992314082603],[119,216,77,-0.26955215456131965],[119,216,78,-0.2668825941876687],[119,216,79,-0.26409273011230094],[119,217,64,-0.2916935637505117],[119,217,65,-0.2907215268932297],[119,217,66,-0.28961329148445747],[119,217,67,-0.28836921832346674],[119,217,68,-0.28698980570738863],[119,217,69,-0.28547569192072186],[119,217,70,-0.2838276577305733],[119,217,71,-0.28204662888769305],[119,217,72,-0.2801336786332663],[119,217,73,-0.27809003021153933],[119,217,74,-0.2759170593881113],[119,217,75,-0.2736162969741045],[119,217,76,-0.27118943135607],[119,217,77,-0.26863831103166047],[119,217,78,-0.2659649471510981],[119,217,79,-0.26317151606438605],[119,218,64,-0.2907795900885479],[119,218,65,-0.2897996429379116],[119,218,66,-0.28868378298146447],[119,218,67,-0.2874323714747469],[119,218,68,-0.28604590685305564],[119,218,69,-0.28452502721323236],[119,218,70,-0.2828705128011303],[119,218,71,-0.2810832885048208],[119,218,72,-0.27916442635350724],[119,218,73,-0.2771151480222164],[119,218,74,-0.27493682734210545],[119,218,75,-0.2726309928165924],[119,218,76,-0.27019933014317044],[119,218,77,-0.2676436847409357],[119,218,78,-0.26496606428385705],[119,218,79,-0.26216864123973627],[119,219,64,-0.2897909946738949],[119,219,65,-0.28880226534485676],[119,219,66,-0.2876779403387978],[119,219,67,-0.2864183814270771],[119,219,68,-0.28502408720754213],[119,219,69,-0.28349569557772647],[119,219,70,-0.2818339862136694],[119,219,71,-0.2800398830544176],[119,219,72,-0.27811445679217106],[119,219,73,-0.2760589273681503],[119,219,74,-0.27387466647401937],[119,219,75,-0.27156320005907364],[119,219,76,-0.26912621084305044],[119,219,77,-0.26656554083459627],[119,219,78,-0.2638831938554166],[119,219,79,-0.26108133807005496],[119,220,64,-0.2887255913800705],[119,220,65,-0.2877271793399645],[119,220,66,-0.2865935211450903],[119,220,67,-0.2853249791458512],[119,220,68,-0.2839220521295265],[119,220,69,-0.28238537778398265],[119,220,70,-0.28071573516694004],[119,220,71,-0.27891404718085555],[119,220,72,-0.2769813830533846],[119,220,73,-0.2749189608235],[119,220,74,-0.2727281498330981],[119,220,75,-0.2704104732243078],[119,220,76,-0.2679676104423533],[119,220,77,-0.2654013997440121],[119,220,78,-0.26271384071168546],[119,220,79,-0.25990709677303625],[119,221,64,-0.28758141891094247],[119,221,65,-0.2865723973426276],[119,221,66,-0.28542851245878453],[119,221,67,-0.2841501272557435],[119,221,68,-0.28273774073967417],[119,221,69,-0.2811919903798824],[119,221,70,-0.2795136545675889],[119,221,71,-0.27770365508025074],[119,221,72,-0.2757630595513918],[119,221,73,-0.27369308394601743],[119,221,74,-0.2714950950414433],[119,221,75,-0.26917061291375566],[119,221,76,-0.26672131342975425],[119,221,77,-0.2641490307444152],[119,221,78,-0.2614557598038981],[119,221,79,-0.2586436588540455],[119,222,64,-0.2863567349728461],[119,222,65,-0.285336153083243],[119,222,66,-0.2841811248730922],[119,222,67,-0.2828920140551713],[119,222,68,-0.28146931988664814],[119,222,69,-0.2799136796110061],[119,222,70,-0.2782258709053712],[119,222,71,-0.27640681433330483],[119,222,72,-0.27445757580302566],[119,222,73,-0.27237936903113513],[119,222,74,-0.27017355801168075],[119,222,75,-0.26784165949077066],[119,222,76,-0.2653853454465902],[119,222,77,-0.26280644557486277],[119,222,78,-0.26010694977977233],[119,222,79,-0.25728901067030274],[119,223,64,-0.285050010503874],[119,223,65,-0.2840168957783743],[119,223,66,-0.2828497866390657],[119,223,67,-0.28154904758930954],[119,223,68,-0.2801151781720951],[119,223,69,-0.27854881539960974],[119,223,70,-0.27685073618812883],[119,223,71,-0.2750218597982832],[119,223,72,-0.27306325028066825],[119,223,73,-0.27097611892687423],[119,223,74,-0.2687618267257649],[119,223,75,-0.26642188682522194],[119,223,76,-0.2639579669992075],[119,223,77,-0.26137189212018175],[119,223,78,-0.25866564663689806],[119,223,79,-0.2558413770575275],[119,224,64,-0.2836599239603974],[119,224,65,-0.28261328436362343],[119,224,66,-0.28143313784683943],[119,224,67,-0.28011984978171756],[119,224,68,-0.27867392003466585],[119,224,69,-0.2770959853830435],[119,224,70,-0.2753868219365979],[119,224,71,-0.27354734756418875],[119,224,72,-0.2715786243257595],[119,224,73,-0.269481860909636],[119,224,74,-0.2672584150749807],[119,224,75,-0.26490979609961895],[119,224,76,-0.26243766723309003],[119,224,77,-0.25984384815496053],[119,224,78,-0.2571303174384201],[119,224,79,-0.2542992150191147],[119,225,64,-0.28218535566079495],[119,225,65,-0.2811241817841884],[119,225,66,-0.2799300246650188],[119,225,67,-0.27860325062455304],[119,225,68,-0.27714435989304875],[119,225,69,-0.2755539890115851],[119,225,70,-0.27383291323901626],[119,225,71,-0.27198204896410894],[119,225,72,-0.27000245612282814],[119,225,73,-0.2678953406208484],[119,225,74,-0.26566205676111987],[119,225,75,-0.26330410967670526],[119,225,76,-0.2608231577687412],[119,225,77,-0.2582210151495594],[119,225,78,-0.25549965409099196],[119,225,79,-0.2526612074778115],[119,226,64,-0.28062538218634736],[119,226,65,-0.27954864934306667],[119,226,66,-0.2783394936381708],[119,226,67,-0.2769982824273324],[119,226,68,-0.27552551634796973],[119,226,69,-0.273921831705648],[119,226,70,-0.27218800286549494],[119,226,71,-0.2703249446486914],[119,226,72,-0.26833371473400314],[119,226,73,-0.2662155160644275],[119,226,74,-0.2639716992587863],[119,226,75,-0.2616037650284838],[119,226,76,-0.25911336659927653],[119,226,77,-0.25650231213809704],[119,226,78,-0.25377256718495333],[119,226,79,-0.25092625708985106],[119,227,64,-0.27897927083937113],[119,227,65,-0.27788594110697384],[119,227,66,-0.27666078604249367],[119,227,67,-0.2753041741243095],[119,227,68,-0.27381660644323635],[119,227,69,-0.27219871907243576],[119,227,70,-0.27045128544222097],[119,227,71,-0.2685752187198238],[119,227,72,-0.2665715741940816],[119,227,73,-0.2644415516651273],[119,227,74,-0.26218649783890646],[119,227,75,-0.2598079087267433],[119,227,76,-0.2573074320498028],[119,227,77,-0.25468686964848997],[119,227,78,-0.2519481798968076],[119,227,79,-0.24909348012162147],[119,228,64,-0.2772464741585581],[119,228,65,-0.27613549836994855],[119,228,66,-0.27489333229963253],[119,228,67,-0.2735203456404428],[119,228,68,-0.2720170399857922],[119,228,69,-0.27038405118201325],[119,228,70,-0.26862215168546644],[119,228,71,-0.2667322529244853],[119,228,72,-0.2647154076661178],[119,228,73,-0.2625728123877473],[119,228,74,-0.26030580965341377],[119,228,75,-0.2579158904950606],[119,228,76,-0.2554046967985534],[119,228,77,-0.25277402369451174],[119,228,78,-0.2500258219539725],[119,228,79,-0.24716220038883896],[119,229,64,-0.2754266244914758],[119,229,65,-0.2742969441745967],[119,229,66,-0.27303674644859144],[119,229,67,-0.27164640231589965],[119,229,68,-0.27012641392473236],[119,229,69,-0.26847741690274507],[119,229,70,-0.2667001826953481],[119,229,71,-0.26479562090872033],[119,229,72,-0.2627647816574876],[119,229,73,-0.26060885791714616],[119,229,74,-0.25832918788105497],[119,229,75,-0.2559272573222211],[119,229,76,-0.2534047019597244],[119,229,77,-0.25076330982982],[119,229,78,-0.2480050236617437],[119,229,79,-0.24513194325816812],[119,230,64,-0.2735195286243125],[119,230,65,-0.2723700778910576],[119,230,66,-0.2710908206758299],[119,230,67,-0.2696821293891888],[119,230,68,-0.26814450678936996],[119,230,69,-0.2664785882961873],[119,230,70,-0.26468514430943046],[119,230,71,-0.2627650825318243],[119,230,72,-0.2607194502965138],[119,230,73,-0.25854943689915066],[119,230,74,-0.2562563759344093],[119,230,75,-0.2538417476371544],[119,230,76,-0.25130718122810636],[119,230,77,-0.24865445726404445],[119,230,78,-0.24588550999257108],[119,230,79,-0.24300242971138608],[119,231,64,-0.2715251624688284],[119,231,65,-0.27035486985365587],[119,231,66,-0.2690555199035056],[119,231,67,-0.26762748653887825],[119,231,68,-0.2660712731863122],[119,231,69,-0.2643875150713966],[119,231,70,-0.2625769815161312],[119,231,71,-0.2606405782406995],[119,231,72,-0.25857934966961527],[119,231,73,-0.25639448124232367],[119,231,74,-0.2540873017280817],[119,231,75,-0.2516592855453391],[119,231,76,-0.24911205508547063],[119,231,77,-0.24644738304089464],[119,231,78,-0.24366719473760245],[119,231,79,-0.24077357047204995],[119,232,64,-0.2694436658064615],[119,232,65,-0.2682514560551864],[119,232,66,-0.2669309764358079],[119,232,67,-0.26548260248384703],[119,232,68,-0.26390683835549167],[119,232,69,-0.2622043190985971],[119,232,70,-0.2603758129278735],[119,232,71,-0.25842222350432786],[119,232,72,-0.25634459221892203],[119,232,73,-0.2541441004805298],[119,232,74,-0.2518220720080091],[119,232,75,-0.24937997512662335],[119,232,76,-0.2468194250686515],[119,232,77,-0.24414218627822815],[119,232,78,-0.2413501747204363],[119,232,79,-0.2384454601946041],[119,233,64,-0.26727533708968376],[119,233,65,-0.2660601328989268],[119,233,66,-0.2647174846634812],[119,233,67,-0.26324776964216734],[119,233,68,-0.261651492785254],[119,233,69,-0.2599292889823116],[119,233,70,-0.25808192531408647],[119,233,71,-0.25611030330845974],[119,233,72,-0.25401546120046004],[119,233,73,-0.2517985761964042],[119,233,74,-0.24946096674198903],[119,233,75,-0.2470040947945643],[119,233,76,-0.24442956809942828],[119,233,77,-0.2417391424701858],[119,233,78,-0.2389347240731936],[119,233,79,-0.23601837171604112],[119,234,64,-0.26502062830056383],[119,234,65,-0.26378135200833885],[119,234,66,-0.2624154958264956],[119,234,67,-0.26092343884857694],[119,234,68,-0.2593056868864563],[119,234,69,-0.25756287469390615],[119,234,70,-0.2556957681940085],[119,234,71,-0.2537052667104779],[119,234,72,-0.2515924052028592],[119,234,73,-0.2493583565056805],[119,234,74,-0.24700443357138002],[119,234,75,-0.24453209171724],[119,234,76,-0.2419429308761647],[119,234,77,-0.23923869785134932],[119,234,78,-0.2364212885748579],[119,234,79,-0.233492750370061],[119,235,64,-0.2626801398664792],[119,235,65,-0.261415715094391],[119,235,66,-0.26002561283479986],[119,235,67,-0.2585102141304746],[119,235,68,-0.25687002572551476],[119,235,69,-0.25510568226348895],[119,235,70,-0.2532179484892314],[119,235,71,-0.2512077214543659],[119,235,72,-0.24907603272651935],[119,235,73,-0.24682405060230794],[119,235,74,-0.24445308232391105],[119,235,75,-0.24196457629946777],[119,235,76,-0.23936012432713483],[119,235,77,-0.23664146382284923],[119,235,78,-0.23381048005181537],[119,235,79,-0.23086920836366887],[119,236,64,-0.2602546156330817],[119,236,65,-0.2589639688806211],[119,236,66,-0.25754858514727375],[119,236,67,-0.25600884754255626],[119,236,68,-0.2543452638165127],[119,236,69,-0.2525584685312766],[119,236,70,-0.250649225236098],[119,236,71,-0.24861842864590378],[119,236,72,-0.2464671068233546],[119,236,73,-0.24419642336448188],[119,236,74,-0.2418076795877162],[119,236,75,-0.2393023167265489],[119,236,76,-0.23668191812565842],[119,236,77,-0.23394821144054945],[119,236,78,-0.23110307084072257],[119,236,79,-0.22814851921632784],[119,237,64,-0.25774493789447483],[119,237,65,-0.2564270000858827],[119,237,66,-0.25498530370882466],[119,237,67,-0.2534202340600382],[119,237,68,-0.2517322999723228],[119,237,69,-0.24992213595837842],[119,237,70,-0.24799050435790537],[119,237,71,-0.24593829748803597],[119,237,72,-0.24376653979706042],[119,237,73,-0.2414763900215292],[119,237,74,-0.23906914334654528],[119,237,75,-0.23654623356948645],[119,237,76,-0.23390923526699114],[119,237,77,-0.2311598659652524],[119,237,78,-0.22829998831364195],[119,237,79,-0.22533161226161535],[119,238,64,-0.25515212248052765],[119,238,65,-0.25380583046471017],[119,238,66,-0.25233679594556246],[119,238,67,-0.25074540653039856],[119,238,68,-0.2490321722146681],[119,238,69,-0.2471977274969238],[119,238,70,-0.2452428334968375],[119,238,71,-0.24316838007633856],[119,238,72,-0.2409753879638309],[119,238,73,-0.23866501088157965],[119,238,74,-0.2362385376760726],[119,238,75,-0.23369739445160154],[119,238,76,-0.23104314670689485],[119,238,77,-0.22827750147484804],[119,238,78,-0.22540230946537132],[119,238,79,-0.2224195672113064],[119,239,64,-0.25247731390146333],[119,239,65,-0.2511016119054347],[119,239,66,-0.24960422081818578],[119,239,67,-0.24798553068377338],[119,239,68,-0.24624605274326195],[119,239,69,-0.2443864215196747],[119,239,70,-0.24240739690577207],[119,239,71,-0.24030986625472806],[119,239,72,-0.23809484647366996],[119,239,73,-0.2357634861201633],[119,239,74,-0.23331706750145065],[119,239,75,-0.23075700877669214],[119,239,76,-0.22808486606203415],[119,239,77,-0.2253023355385565],[119,239,78,-0.22241125556311447],[119,239,79,-0.21941360878203098],[119,240,64,-0.24972178054960614],[119,240,65,-0.24831562158593967],[119,240,66,-0.246788863933468],[119,240,67,-0.2451419002018923],[119,240,68,-0.24337524296391044],[119,240,69,-0.24148952680900637],[119,240,70,-0.23948551039983812],[119,240,71,-0.23736407853129293],[119,240,72,-0.23512624419217587],[119,240,73,-0.23277315062961412],[119,240,74,-0.23030607341598486],[119,240,75,-0.22772642251861397],[119,240,76,-0.22503574437207574],[119,240,77,-0.22223572395313684],[119,240,78,-0.2193281868583694],[119,240,79,-0.2163151013843817],[119,241,64,-0.2468869099583798],[119,241,65,-0.24544925718714472],[119,241,66,-0.2438921327139305],[119,241,67,-0.2422159318456456],[119,241,68,-0.2404211685756703],[119,241,69,-0.23850847760534633],[119,241,70,-0.2364786163678243],[119,241,71,-0.23433246705434196],[119,241,72,-0.2320710386428937],[119,241,73,-0.2296954689293781],[119,241,74,-0.22720702656102898],[119,241,75,-0.22460711307238035],[119,241,76,-0.22189726492358852],[119,241,77,-0.21907915554116453],[119,241,78,-0.21615459736113318],[119,241,79,-0.21312554387457072],[119,242,64,-0.24397420411842996],[119,242,65,-0.24250403216409133],[119,242,66,-0.24091555162557898],[119,242,67,-0.23920916064115316],[119,242,68,-0.2373853747169311],[119,242,69,-0.23544482871494377],[119,242,70,-0.2333882788433006],[119,242,71,-0.23121660464853677],[119,242,72,-0.22893081101010293],[119,242,73,-0.22653203013708634],[119,242,74,-0.2240215235669637],[119,242,75,-0.22140068416664194],[119,242,76,-0.2186710381356074],[119,242,77,-0.2158342470112362],[119,242,78,-0.21289210967628214],[119,242,79,-0.20984656436849625],[119,243,64,-0.24098527485101906],[119,243,65,-0.23948157107478119],[119,243,66,-0.23786075746385182],[119,243,67,-0.2361232351244884],[119,243,68,-0.23426952117057587],[119,243,69,-0.2323002506771239],[119,243,70,-0.23021617863561294],[119,243,71,-0.22801818191126477],[119,243,72,-0.2257072612021982],[119,243,73,-0.22328454300055756],[119,243,74,-0.2207512815554169],[119,243,75,-0.21810886083771175],[119,243,76,-0.2153587965070234],[119,243,77,-0.2125027378802664],[119,243,78,-0.20954246990229497],[119,243,79,-0.20647991511838404],[119,244,64,-0.23792183923862797],[119,244,65,-0.23638360496669897],[119,244,66,-0.2347294946977143],[119,244,67,-0.2329599126449905],[119,244,68,-0.23107537762815356],[119,244,69,-0.2290765249909571],[119,244,70,-0.2269641085206806],[119,244,71,-0.2247390023691862],[119,244,72,-0.22240220297559266],[119,244,73,-0.21995483099065727],[119,244,74,-0.21739813320266133],[119,244,75,-0.21473348446506246],[119,244,76,-0.2119623896257279],[119,244,77,-0.20908648545780528],[119,244,78,-0.20610754259224506],[119,244,79,-0.20302746745193145],[119,245,64,-0.2347857151126843],[119,245,65,-0.23321196682094059],[119,245,66,-0.23152361087181506],[119,245,67,-0.22972105472707838],[119,245,68,-0.22780481901297678],[119,245,69,-0.22577553940125905],[119,245,70,-0.22363396849150996],[119,245,71,-0.22138097769486376],[119,245,72,-0.21901755911905874],[119,245,73,-0.21654482745492376],[119,245,74,-0.21396402186409225],[119,245,75,-0.2112765078682055],[119,245,76,-0.2084837792394214],[119,245,77,-0.205587459892284],[119,245,78,-0.20258930577696965],[119,245,79,-0.19949120677386123],[119,246,64,-0.23157881659856872],[119,246,65,-0.22996858705409773],[119,246,66,-0.22824505206686208],[119,246,67,-0.22640862249072824],[119,246,68,-0.22445982086230454],[119,246,69,-0.22239928324408131],[119,246,70,-0.2202277610685871],[119,246,71,-0.21794612298364202],[119,246,72,-0.21555535669866555],[119,246,73,-0.21305657083213048],[119,246,74,-0.2104509967599587],[119,246,75,-0.2077399904651206],[119,246,76,-0.2049250343882545],[119,246,77,-0.202007739279361],[119,246,78,-0.19898984605058778],[119,246,79,-0.19587322763005754],[119,247,64,-0.2283031497178285],[119,247,65,-0.22665548907782784],[119,247,66,-0.22489585841814397],[119,247,67,-0.22302467213053567],[119,247,68,-0.2210424547685368],[119,247,69,-0.21894984285161856],[119,247,70,-0.2167475866700731],[119,247,71,-0.21443655209069845],[119,247,72,-0.21201772236324323],[119,247,73,-0.2094921999277043],[119,247,74,-0.20686120822226683],[119,247,75,-0.20412609349215882],[119,247,76,-0.20128832659922524],[119,247,77,-0.19834950483228653],[119,247,78,-0.19531135371828856],[119,247,79,-0.19217572883420497],[119,248,64,-0.2249608080475104],[119,248,65,-0.22327478491602337],[119,248,66,-0.2214781596921076],[119,248,67,-0.2195713504532777],[119,248,68,-0.2175548838793273],[119,248,69,-0.21542939701643915],[119,248,70,-0.21319563904170968],[119,248,71,-0.21085447302817195],[119,248,72,-0.20840687771027377],[119,248,73,-0.20585394924990486],[119,248,74,-0.20319690300276094],[119,248,75,-0.20043707528531984],[119,248,76,-0.19757592514223188],[119,248,77,-0.19461503611419018],[119,248,78,-0.19155611800628924],[119,248,79,-0.18840100865683018],[119,249,64,-0.22155396843677921],[119,249,65,-0.21982867087974345],[119,249,66,-0.2179941709211617],[119,249,67,-0.2160508904741405],[119,249,68,-0.21399935845678897],[119,249,69,-0.21184021251521257],[119,249,70,-0.20957420074660904],[119,249,71,-0.20720218342254715],[119,249,72,-0.20472513471238885],[119,249,73,-0.20214414440694628],[119,249,74,-0.199460419642162],[119,249,75,-0.19667528662308809],[119,249,76,-0.19379019234796657],[119,249,77,-0.19080670633247498],[119,249,78,-0.18772652233414822],[119,249,79,-0.18455146007693213],[119,250,64,-0.2180848867807419],[119,250,65,-0.21631942329983067],[119,250,66,-0.21444618809662352],[119,250,67,-0.2124656070715345],[119,250,68,-0.21037821149570868],[119,250,69,-0.2081846396918534],[119,250,70,-0.20588563871484722],[119,250,71,-0.20348206603220986],[119,250,72,-0.20097489120439094],[119,250,73,-0.19836519756497406],[119,250,74,-0.19565418390057876],[119,250,75,-0.19284316613073926],[119,250,76,-0.1899335789875628],[119,250,77,-0.18692697769523015],[119,250,78,-0.1838250396493485],[119,250,79,-0.18062956609611514],[119,251,64,-0.21455589385138762],[119,251,65,-0.21274939431712186],[119,251,66,-0.2108365839197207],[119,251,67,-0.20881789270040269],[119,251,68,-0.20669385440067822],[119,251,69,-0.20446510809998308],[119,251,70,-0.202132399852762],[119,251,71,-0.19969658432507498],[119,251,72,-0.19715862643069737],[119,251,73,-0.19451960296679927],[119,251,74,-0.19178070424899152],[119,251,75,-0.1889432357460179],[119,251,76,-0.18600861971389493],[119,251,77,-0.1829783968295603],[119,251,78,-0.17985422782404437],[119,251,79,-0.1766378951151193],[119,252,64,-0.21096939118581526],[119,252,65,-0.2091210077304262],[119,252,66,-0.20716780361081844],[119,252,67,-0.2051102131641993],[119,252,68,-0.20294877272231893],[119,252,69,-0.20068412220489518],[119,252,70,-0.19831700671214003],[119,252,71,-0.19584827811647565],[119,252,72,-0.19327889665339715],[119,252,73,-0.1906099325115781],[119,252,74,-0.18784256742199812],[119,252,75,-0.18497809624637818],[119,252,76,-0.18201792856472254],[119,252,77,-0.17896359026202746],[119,252,78,-0.17581672511417168],[119,252,79,-0.17257909637294522],[119,253,64,-0.2073278470316714],[119,253,65,-0.2054367549021896],[119,253,66,-0.20344236077679634],[119,253,67,-0.20134510344545709],[119,253,68,-0.199145521952521],[119,253,69,-0.19684425714493414],[119,253,70,-0.19444205321920804],[119,253,71,-0.1919397592672224],[119,253,72,-0.18933833082082951],[119,253,73,-0.18663883139534865],[119,253,74,-0.18384243403173273],[119,253,75,-0.18095042283769536],[119,253,76,-0.17796419452759016],[119,253,77,-0.17488525996111104],[119,253,78,-0.17171524568082341],[119,253,79,-0.1684558954484806],[119,254,64,-0.2036337923496938],[119,254,65,-0.20169919072174602],[119,254,66,-0.19966283333646895],[119,254,67,-0.19752516359484235],[119,254,68,-0.1952867233785872],[119,254,69,-0.1929481545521905],[119,254,70,-0.19051020046332223],[119,254,71,-0.18797370744173159],[119,254,72,-0.18533962629658107],[119,254,73,-0.18260901381231776],[119,254,74,-0.17978303424285236],[119,254,75,-0.17686296080434283],[119,254,76,-0.17385017716637086],[119,254,77,-0.17074617894158073],[119,254,78,-0.1675525751737884],[119,254,79,-0.1642710898245192],[119,255,64,-0.19988981687355278],[119,255,65,-0.1979109296263435],[119,255,66,-0.1958318595042428],[119,255,67,-0.19365305467888505],[119,255,68,-0.19137505999648274],[119,255,69,-0.188998518432701],[119,255,70,-0.18652417254555498],[119,255,71,-0.18395286592641802],[119,255,72,-0.18128554464910102],[119,255,73,-0.1785232587171015],[119,255,74,-0.17566716350879025],[119,255,75,-0.17271852122083786],[119,255,76,-0.16967870230966442],[119,255,77,-0.16654918693098464],[119,255,78,-0.1633315663774546],[119,255,79,-0.16002754451438062],[119,256,64,-0.19609856522689728],[119,256,65,-0.19407464167985367],[119,256,66,-0.19195213383191745],[119,256,67,-0.18973149478629803],[119,256,68,-0.1874132724830922],[119,256,69,-0.18499811110606568],[119,256,70,-0.1824867524870808],[119,256,71,-0.17988003750825898],[119,256,72,-0.17717890750183762],[119,256,73,-0.1743844056478192],[119,256,74,-0.17149767836918273],[119,256,75,-0.16851997672495778],[119,256,76,-0.16545265780094565],[119,256,77,-0.1622971860981577],[119,256,78,-0.15905513491898138],[119,256,79,-0.15572818775103003],[119,257,64,-0.19226273309750685],[119,257,65,-0.19019304870906673],[119,257,66,-0.18802640330852938],[119,257,67,-0.1857632550927779],[119,257,68,-0.18340415522738357],[119,257,69,-0.18094974920437334],[119,257,70,-0.1784007781972604],[119,257,71,-0.17575808041342256],[119,257,72,-0.17302259244378848],[119,257,73,-0.17019535060993518],[119,257,74,-0.16727749230835737],[119,257,75,-0.16427025735221734],[119,257,76,-0.16117498931035623],[119,257,77,-0.15799313684363625],[119,257,78,-0.1547262550386267],[119,257,79,-0.15137600673858642],[119,258,64,-0.18838506346874395],[119,258,65,-0.18626892049776278],[119,258,66,-0.184057463518435],[119,258,67,-0.1817511559844882],[119,258,68,-0.17935055242067655],[119,258,69,-0.17685629973063932],[119,258,70,-0.17426913850162373],[119,258,71,-0.1715899043061641],[119,258,72,-0.16881952900067437],[119,258,73,-0.1659590420210581],[119,258,74,-0.16300957167509544],[119,258,75,-0.15997234643191865],[119,258,76,-0.1568486962083525],[119,258,77,-0.15364005365219557],[119,258,78,-0.15034795542244628],[119,258,79,-0.146974043466436],[119,259,64,-0.18446834290820902],[119,259,65,-0.18230507103846832],[119,259,66,-0.1800481548575391],[119,259,67,-0.17769806324012838],[119,259,68,-0.17525535420592236],[119,259,69,-0.17272067617665787],[119,259,70,-0.1700947692296535],[119,259,71,-0.167378466347895],[119,259,72,-0.1645726946666325],[119,259,73,-0.16167847671659313],[119,259,74,-0.15869693166356502],[119,259,75,-0.1556292765446713],[119,259,76,-0.1524768275011057],[119,259,77,-0.14924100100740356],[119,259,78,-0.14592331509725914],[119,259,79,-0.142525390585846],[119,260,64,-0.18051539791350169],[119,260,65,-0.1783043548417933],[119,260,66,-0.17600135880756035],[119,260,67,-0.17360688427148263],[119,260,68,-0.17112149288588385],[119,260,69,-0.16854583470016082],[119,260,70,-0.16588064936226232],[119,260,71,-0.1631267673163101],[119,260,72,-0.16028511099632214],[119,260,73,-0.15735669601613916],[119,260,74,-0.15434263235531243],[119,260,75,-0.15124412554127165],[119,260,76,-0.14806247782754],[119,260,77,-0.1447990893680794],[119,260,78,-0.1414554593877666],[119,260,79,-0.13803318734896275],[119,261,64,-0.17652909131528183],[119,261,65,-0.1742696633035491],[119,261,66,-0.1719199942685416],[119,261,67,-0.16948056442265513],[119,261,68,-0.1669519391904264],[119,261,69,-0.16433477036149136],[119,261,70,-0.16162979723917248],[119,261,71,-0.15883784778478982],[119,261,72,-0.15595983975765415],[119,261,73,-0.15299678185084564],[119,261,74,-0.14994977482253324],[119,261,75,-0.1468200126231557],[119,261,76,-0.1436087835182316],[119,261,77,-0.14031747120687843],[119,261,78,-0.13694755593604524],[119,261,79,-0.13350061561041776],[119,262,64,-0.17251231873753614],[119,262,65,-0.17020392112955113],[119,262,66,-0.16780701394950337],[119,262,67,-0.16532208332788878],[119,262,68,-0.16274969860281663],[119,262,69,-0.16009051341969177],[119,262,70,-0.15734526682609717],[119,262,71,-0.15451478436197175],[119,262,72,-0.15159997914504358],[119,262,73,-0.1486018529516243],[119,262,74,-0.14552149729251018],[119,262,75,-0.1423600944843248],[119,262,76,-0.13911891871605864],[119,262,77,-0.13579933711089265],[119,262,78,-0.1324028107833069],[119,262,79,-0.12893089589143586],[119,263,64,-0.16846800511494647],[119,263,65,-0.16611008281799766],[119,263,66,-0.16366540081713343],[119,263,67,-0.16113445132786286],[119,263,68,-0.15851780774492147],[119,263,69,-0.15581612568789582],[119,263,70,-0.1530301440416107],[119,263,71,-0.15016068599137866],[119,263,72,-0.14720866005306882],[119,263,73,-0.14417506109810074],[119,263,74,-0.14106097137311108],[119,263,75,-0.1378675615146241],[119,263,76,-0.1345960915584875],[119,263,77,-0.13124791194415303],[119,263,78,-0.12782446451380858],[119,263,79,-0.1243272835063225],[119,264,64,-0.1643991012675728],[119,264,65,-0.1619911291996483],[119,264,66,-0.15949816460273492],[119,264,67,-0.15692070594469004],[119,264,68,-0.15425933082153198],[119,264,69,-0.15151469694825015],[119,264,70,-0.14868754314393728],[119,264,71,-0.1457786903113376],[119,264,72,-0.14278904241077117],[119,264,73,-0.1397195874285428],[119,264,74,-0.13657139833957654],[119,264,75,-0.13334563406461464],[119,264,76,-0.13004354042173533],[119,264,77,-0.1266664510722738],[119,264,78,-0.12321578846115289],[119,264,79,-0.11969306475157782],[119,265,64,-0.16030858053267294],[119,265,65,-0.15785006403561075],[119,265,66,-0.155308338367246],[119,265,67,-0.15268390841542773],[119,265,68,-0.14997735612362117],[119,265,69,-0.147189341426177],[119,265,70,-0.14432060317746792],[119,265,71,-0.1413719600749922],[119,265,72,-0.13834431157640242],[119,265,73,-0.13523863881056647],[119,265,74,-0.13205600548240432],[119,265,75,-0.12879755877183702],[119,265,76,-0.1254645302266046],[119,265,77,-0.1220582366490362],[119,265,78,-0.1185800809767768],[119,265,79,-0.1150315531574298],[119,266,64,-0.15619943545379356],[119,266,65,-0.153689910672883],[119,266,66,-0.15109897512447218],[119,266,67,-0.14842714028424242],[119,266,68,-0.14567499259068406],[119,266,69,-0.14284319432412196],[119,266,70,-0.13993248447914713],[119,266,71,-0.13694367963055726],[119,266,72,-0.13387767479276302],[119,266,73,-0.1307354442727704],[119,266,74,-0.12751804251647614],[119,266,75,-0.12422660494862042],[119,266,76,-0.12086234880614821],[119,266,77,-0.11742657396506356],[119,266,78,-0.1139206637607833],[119,266,79,-0.1103460858019466],[119,267,64,-0.152074674526948],[119,267,65,-0.14951370875745773],[119,267,66,-0.14687314452234174],[119,267,67,-0.14415350005303879],[119,267,68,-0.14135536643195895],[119,267,69,-0.1384794084145894],[119,267,70,-0.13552636524453687],[119,267,71,-0.13249705146161628],[119,267,72,-0.12939235770293606],[119,267,73,-0.12621325149709556],[119,267,74,-0.12296077805122674],[119,267,75,-0.11963606103123048],[119,267,76,-0.11624030333495139],[119,267,77,-0.11277478785838363],[119,267,78,-0.10924087825490597],[119,267,79,-0.10564001968750986],[119,268,64,-0.1479373190041035],[119,268,65,-0.14532451100521537],[119,268,66,-0.1426339295824095],[119,268,67,-0.13986609989077964],[119,268,68,-0.13702161780676803],[119,268,69,-0.13410115069270045],[119,268,70,-0.13110543815378817],[119,268,71,-0.12803529278769854],[119,268,72,-0.12489160092665103],[119,268,73,-0.12167532337215159],[119,268,74,-0.11838749612209654],[119,268,75,-0.11502923109059954],[119,268,76,-0.11160171682028186],[119,268,77,-0.10810621918712116],[119,268,78,-0.10454408209785582],[119,268,79,-0.10091672817990793],[119,269,64,-0.14379039975387004],[119,269,65,-0.14112538003049807],[119,269,66,-0.13838442349750263],[119,269,67,-0.1355680624013902],[119,269,68,-0.13267689756386242],[119,269,69,-0.12971159908816415],[119,269,70,-0.12667290705741413],[119,269,71,-0.12356163222502531],[119,269,72,-0.12037865669716857],[119,269,73,-0.11712493460739648],[119,269,74,-0.1138014927831531],[119,269,75,-0.11040943140452747],[119,269,76,-0.10694992465499059],[119,269,77,-0.10342422136420898],[119,269,78,-0.09983364564293323],[119,269,79,-0.09617959750992494],[119,270,64,-0.13963695417928762],[119,270,65,-0.13691938523225933],[119,270,66,-0.13412772648740107],[119,270,67,-0.1312625174501349],[119,270,68,-0.12832436403966524],[119,270,69,-0.1253139392365471],[119,270,70,-0.12223198372174743],[119,270,71,-0.11907930650730852],[119,270,72,-0.11585678555856826],[119,270,73,-0.11256536840805265],[119,270,74,-0.10920607276076433],[119,270,75,-0.10577998709123004],[119,270,76,-0.10228827123204304],[119,270,77,-0.09873215695399296],[119,270,78,-0.0951129485377849],[119,270,79,-0.09143202333730877],[119,271,64,-0.13548002319292207],[119,271,65,-0.132709599738002],[119,271,66,-0.12986694271276622],[119,271,67,-0.1269525990486885],[119,271,68,-0.12396717991563072],[119,271,69,-0.1209113613100673],[119,271,70,-0.11778588463430878],[119,271,71,-0.11459155726683157],[119,271,72,-0.11132925312367065],[119,271,73,-0.10799991321099106],[119,271,74,-0.10460454616855797],[119,271,75,-0.10114422880447488],[119,271,76,-0.09762010662091908],[119,271,77,-0.09403339433097235],[119,271,78,-0.0903853763665447],[119,271,79,-0.08667740737735435],[119,272,64,-0.1313226482491644],[119,272,65,-0.12849909740539794],[119,272,66,-0.1256051772472127],[119,272,67,-0.12264144229879015],[119,272,68,-0.11960850913461024],[119,272,69,-0.11650705690779956],[119,272,70,-0.1133378278689759],[119,272,71,-0.1101016278756985],[119,272,72,-0.10679932689247823],[119,272,73,-0.10343185948146827],[119,272,74,-0.1000002252835494],[119,272,75,-0.09650548949018362],[119,272,76,-0.09294878330576356],[119,272,77,-0.08933130440055642],[119,272,78,-0.0856543173542389],[119,272,79,-0.08191915408998734],[119,273,64,-0.12716786843362754],[119,273,65,-0.12429094988148187],[119,273,66,-0.12134553310741275],[119,273,67,-0.11833218039437043],[119,273,68,-0.11525151387611399],[119,273,69,-0.11210421600517978],[119,273,70,-0.10889103001083594],[119,273,71,-0.1056127603471348],[119,273,72,-0.10227027313101894],[119,273,73,-0.0988644965705997],[119,273,74,-0.0953964213833206],[119,273,75,-0.0918671012043844],[119,273,76,-0.08827765298516638],[119,273,77,-0.084629257381715],[119,273,78,-0.08092315913333564],[119,273,79,-0.07716066743122207],[119,274,64,-0.12301871760985073],[119,274,65,-0.12008822371963473],[119,274,66,-0.11709110834145109],[119,274,67,-0.11402794168237196],[119,274,68,-0.11089935159069064],[119,274,69,-0.10770602396303469],[119,274,70,-0.10444870314095073],[119,274,71,-0.1011281922970717],[119,274,72,-0.09774535381082533],[119,274,73,-0.09430110963380095],[119,274,74,-0.09079644164448514],[119,274,75,-0.08723239199275018],[119,274,76,-0.08361006343381255],[119,274,77,-0.07993061965176529],[119,274,78,-0.07619528557267935],[119,274,79,-0.07240534766723916],[119,275,64,-0.11887822162320949],[119,275,65,-0.11589397755424874],[119,275,66,-0.11284499317532148],[119,275,67,-0.1097318467821537],[119,275,68,-0.10655517209331283],[119,275,69,-0.10331565859602165],[119,275,70,-0.10001405188092088],[119,275,71,-0.09665115396589763],[119,275,72,-0.09322782360893173],[119,275,73,-0.0897449766100824],[119,275,74,-0.08620358610232226],[119,275,75,-0.08260468283160499],[119,275,76,-0.078949355425882],[119,275,77,-0.07523875065317354],[119,275,78,-0.07147407366868908],[119,275,79,-0.06765658825096021],[119,276,64,-0.11474939556192021],[119,276,65,-0.111711259332966],[119,276,66,-0.10861026721745581],[119,276,67,-0.10544700576336768],[119,276,68,-0.10222211471565928],[119,276,69,-0.09893628730036808],[119,276,70,-0.09559027049713426],[119,276,71,-0.09218486530026226],[119,276,72,-0.08872092696827427],[119,276,73,-0.08519936526207933],[119,276,74,-0.08162114467146192],[119,276,75,-0.0779872846302786],[119,276,76,-0.07429885972007866],[119,276,77,-0.07055699986225228],[119,276,78,-0.0667628904987016],[119,276,79,-0.06291777276099836],[119,277,64,-0.110635241075356],[119,277,65,-0.10754310360670677],[119,277,66,-0.10438999672150473],[119,277,67,-0.10117651538253031],[119,277,68,-0.0979033055175132],[119,277,69,-0.0945710642411357],[119,277,70,-0.0911805400649272],[119,277,71,-0.08773253309516321],[119,277,72,-0.08422789521872631],[119,277,73,-0.08066753027705131],[119,277,74,-0.07705239422785559],[119,277,75,-0.0733834952950484],[119,277,76,-0.06966189410653106],[119,277,77,-0.06588870381999279],[119,277,78,-0.06206509023669804],[119,277,79,-0.05819227190322851],[119,278,64,-0.10653874374956412],[119,278,65,-0.10339252887737932],[119,278,66,-0.10018723190725887],[119,278,67,-0.09692345637817557],[119,278,68,-0.09360185455716802],[119,278,69,-0.09022312759889556],[119,278,70,-0.08678802569254385],[119,278,71,-0.08329734819620027],[119,278,72,-0.07975194375865197],[119,278,73,-0.07615271042873317],[119,278,74,-0.07250059575191603],[119,278,75,-0.06879659685454814],[119,278,76,-0.06504176051543997],[119,278,77,-0.06123718322491217],[119,278,78,-0.05738401123129627],[119,278,79,-0.05348344057485349],[119,279,64,-0.10246287053988146],[119,279,65,-0.0992625350031644],[119,279,66,-0.09600500433960363],[119,279,67,-0.09269089082448256],[119,279,68,-0.08932085322072969],[119,279,69,-0.08589559687570286],[119,279,70,-0.08241587380478105],[119,279,71,-0.07888248276188253],[119,279,72,-0.07529626929686345],[119,279,73,-0.07165812579992298],[119,279,74,-0.06796899153270863],[119,279,75,-0.06422985264652692],[119,279,76,-0.06044174218735926],[119,279,77,-0.056605740087797174],[119,279,78,-0.05272297314588675],[119,279,79,-0.048794614990848195],[119,280,64,-0.09841056726085973],[119,280,65,-0.09515610066158836],[119,280,66,-0.09184632436572487],[119,280,67,-0.08848185954359677],[119,280,68,-0.08506337161053479],[119,280,69,-0.08159157026059582],[119,280,70,-0.07806720948654544],[119,280,71,-0.07449108758621864],[119,280,72,-0.07086404715521233],[119,280,73,-0.06718697506603882],[119,280,74,-0.06346080243342883],[119,280,75,-0.059686504566193455],[119,280,76,-0.055865100905344134],[119,280,77,-0.051997654948582606],[119,280,78,-0.04808527416115288],[119,280,79,-0.04412910987302132],[119,281,64,-0.09438475613339092],[119,281,65,-0.09107618087027702],[119,281,66,-0.08771417861045394],[119,281,67,-0.08429937957653222],[119,281,68,-0.08083245599257538],[119,281,69,-0.07731412205450466],[119,281,70,-0.07374513388620757],[119,281,71,-0.07012628948147176],[119,281,72,-0.06645842863169865],[119,281,73,-0.06274243283952641],[119,281,74,-0.058979225218046105],[119,281,75,-0.05516977037602755],[119,281,76,-0.05131507428884863],[119,281,77,-0.047416184155243235],[119,281,78,-0.04347418823985577],[119,281,79,-0.039490215701573184],[119,282,64,-0.09038833338893426],[119,282,65,-0.0870257045652863],[119,282,66,-0.08361152752965012],[119,282,67,-0.08014644171255059],[119,282,68,-0.07663112630282154],[119,282,69,-0.07306630015446325],[119,282,70,-0.06945272167864402],[119,282,71,-0.06579118872097162],[119,282,72,-0.06208253842398642],[119,282,73,-0.058327647075005595],[119,282,74,-0.054527429939002836],[119,282,75,-0.050682841076942486],[119,282,76,-0.04679487314925673],[119,282,77,-0.04286455720458493],[119,282,78,-0.0388929624537635],[119,282,79,-0.03488119602903367],[119,283,64,-0.08642416693104937],[119,283,65,-0.0830075722372205],[119,283,66,-0.0795413030218291],[119,283,67,-0.07602600807723114],[119,283,68,-0.07246237371266007],[119,283,69,-0.06885112359734169],[119,283,70,-0.06519301858818932],[119,283,71,-0.061488856542206705],[119,283,72,-0.05773947211355046],[119,283,73,-0.05394573653538315],[119,283,74,-0.05010855738619724],[119,283,75,-0.04622887834103351],[119,283,76,-0.04230767890727932],[119,283,77,-0.03834597414516788],[119,283,78,-0.03434481437296588],[119,283,79,-0.030305284856815218],[119,284,64,-0.08249509405413169],[119,284,65,-0.07902465362502986],[119,284,66,-0.07550640609793446],[119,284,67,-0.07194100977912304],[119,284,68,-0.0683291582533373],[119,284,69,-0.06467158016299013],[119,284,70,-0.06096903897138567],[119,284,71,-0.05722233271008126],[119,284,72,-0.053432293710341305],[119,284,73,-0.049599788318817895],[119,284,74,-0.045725716597132815],[119,284,75,-0.04181101200578996],[119,284,76,-0.037856641072101016],[119,284,77,-0.03386360304224506],[119,284,78,-0.029832929517449813],[119,284,79,-0.02576568407426283],[119,285,64,-0.07860391921924911],[119,285,65,-0.07507978546738792],[119,285,66,-0.07150970460914446],[119,285,67,-0.06789434461487523],[119,285,68,-0.06423440649930343],[119,285,69,-0.06053062403668591],[119,285,70,-0.05678376345942204],[119,285,71,-0.052994623140231956],[119,285,72,-0.049164033257858425],[119,285,73,-0.045292855446425334],[119,285,74,-0.04138198242812413],[119,285,75,-0.03743233762966369],[119,285,76,-0.03344487478216168],[119,285,77,-0.029420577504598727],[119,285,78,-0.025360458870824887],[119,285,79,-0.021265560960085167],[119,286,64,-0.07475341188728477],[119,286,65,-0.07117576931185374],[119,286,66,-0.06755403103292737],[119,286,67,-0.06388887483305611],[119,286,68,-0.06018100931066958],[119,286,69,-0.056431173531101636],[119,286,70,-0.052640136660481396],[119,286,71,-0.04880869758262135],[119,286,72,-0.0449376844988533],[119,286,73,-0.04102795451094765],[119,286,74,-0.037080393186784966],[119,286,75,-0.033095914109218555],[119,286,76,-0.029075458407802707],[119,286,77,-0.02501999427351051],[119,286,78,-0.020930516456429016],[119,286,79,-0.016808045746399436],[119,287,64,-0.07094630440927993],[119,287,65,-0.06731536938171431],[119,287,66,-0.06364218031723468],[119,287,67,-0.059927424956554065],[119,287,68,-0.05617181963467066],[119,287,69,-0.05237610886768157],[119,287,70,-0.04854106492188465],[119,287,71,-0.04466748736529777],[119,287,72,-0.040756202601549274],[119,287,73,-0.03680806338627421],[119,287,74,-0.03282394832568303],[119,287,75,-0.028804761357745706],[119,287,76,-0.0247514312156617],[119,287,77,-0.020664910873743336],[119,287,78,-0.016546176975697185],[119,287,79,-0.012396229245272644],[119,288,64,-0.06718528997388346],[119,288,65,-0.06350131050040822],[119,288,66,-0.059776907782737115],[119,288,67,-0.0560127796634603],[119,288,68,-0.05220965036603026],[119,288,69,-0.048368270017326964],[119,288,70,-0.044489414151928114],[119,288,71,-0.040573883198215976],[119,288,72,-0.03662250194627348],[119,288,73,-0.03263611899770627],[119,288,74,-0.028615606197053972],[119,288,75,-0.02456185804523664],[119,288,76,-0.020475791094705875],[119,288,77,-0.016358343326427577],[119,288,78,-0.01221047350868154],[119,288,79,-0.0080331605376468],[119,289,64,-0.06347302061211213],[119,289,65,-0.059736276073742905],[119,289,66,-0.05596092708331332],[119,289,67,-0.05214768172664749],[119,289,68,-0.04829727226644839],[119,289,69,-0.04441045460060816],[119,289,70,-0.0404880077016368],[119,289,71,-0.03653073303734419],[119,289,72,-0.032539453972726506],[119,289,73,-0.028515015153194767],[119,289,74,-0.024458281868805665],[119,289,75,-0.020370139399946696],[119,289,76,-0.016251492344138696],[119,289,77,-0.012103263924086477],[119,289,78,-0.007926395276961679],[119,289,79,-0.0037218447248875686],[119,290,64,-0.05981210525925046],[119,290,65,-0.056022906129727545],[119,290,66,-0.05219690822461431],[119,290,67,-0.0483348300118652],[119,290,68,-0.044437411943027166],[119,290,69,-0.0405054158473199],[119,290,70,-0.03653962430624627],[119,290,71,-0.03254084000886842],[119,290,72,-0.02850988508770072],[119,290,73,-0.024447600435358458],[119,290,74,-0.020354845001619187],[119,290,75,-0.016232495071353437],[119,290,76,-0.012081443522983293],[119,290,77,-0.007902599067603294],[119,290,78,-0.0036968854687449426],[119,290,79,5.347592572442772E-4],[119,291,64,-0.056205107874015975],[119,291,65,-0.05236379541615069],[119,291,66,-0.04848747564083386],[119,291,67,-0.044576877534483667],[119,291,68,-0.040632749885768676],[119,291,69,-0.03665586061551476],[119,291,70,-0.03264699608655125],[119,291,71,-0.028606960393632475],[119,291,72,-0.02453657463338535],[119,291,73,-0.02043667615442482],[119,291,74,-0.01630811778728858],[119,291,75,-0.012151767054652929],[119,291,76,-0.007968505361486689],[119,291,77,-0.0037592271652758524],[119,291,78,4.751608736973667E-4],[119,291,79,0.0047337407620516025],[119,292,64,-0.052654545614823134],[119,292,65,-0.04876149155573445],[119,292,66,-0.044835206329513294],[119,292,67,-0.04087642957471202],[119,292,68,-0.03688591856397025],[119,292,69,-0.03286444746983741],[119,292,70,-0.028812806609940178],[119,292,71,-0.02473180167163186],[119,292,72,-0.02062225291607625],[119,292,73,-0.016484994361907146],[119,292,74,-0.012320872948111905],[119,292,75,-0.008130747676606737],[119,292,76,-0.003915488734155259],[119,292,77,3.2402340623391424E-4],[119,292,78,0.004586898904448661],[119,292,79,0.00887223949298302],[119,293,64,-0.0491628870733459],[119,293,65,-0.04521849325906646],[119,293,66,-0.041242628044586366],[119,293,67,-0.037236041851499285],[119,293,68,-0.033199500581726105],[119,293,69,-0.029133784819371705],[119,293,70,-0.02503968901133055],[119,293,71,-0.020918020626779388],[119,293,72,-0.016769599295509224],[119,293,73,-0.012595255925239399],[119,293,74,-0.008395831797558359],[119,293,75,-0.004172177642963487],[119,293,76,7.484730535151085E-5],[119,293,77,0.004344376278825626],[119,293,78,0.008635535961992763],[119,293,79,0.012947447502107148],[119,294,64,-0.04573255056527942],[119,294,65,-0.041737248595210025],[119,294,66,-0.03771221754756106],[119,294,67,-0.033658218755014596],[119,294,68,-0.02957602689243201],[119,294,69,-0.025466429114895522],[119,294,70,-0.02133022417389957],[119,294,71,-0.01716822151183385],[119,294,72,-0.012981240334707697],[119,294,73,-0.008770108663260154],[119,294,74,-0.004535662362099291],[119,294,75,-2.7874414734450903E-4],[119,294,76,0.003999797427581983],[119,294,77,0.008299109007874894],[119,294,78,0.012618333494997594],[119,294,79,0.016956611126093826],[119,295,64,-0.04236590247821717],[119,295,65,-0.038320153319906555],[119,295,66,-0.03424639891675342],[119,295,67,-0.030145411637618996],[119,295,68,-0.026017975072203534],[119,295,69,-0.02186488310545316],[119,295,70,-0.017686938969517674],[119,295,71,-0.013484954273400657],[119,295,72,-0.009259748010252297],[119,295,73,-0.0050121455424504135],[119,295,74,-7.42977564109501E-4],[119,295,75,0.003546920958503383],[119,295,76,0.007856711869003663],[119,295,77,0.012185554925233821],[119,295,78,0.016532608925938858],[119,295,79,0.020897032859800352],[119,296,64,-0.03906525567682087],[119,296,65,-0.0349695492615507],[119,296,66,-0.030847541914755264],[119,296,67,-0.026700017163514708],[119,296,68,-0.022527767652395655],[119,296,69,-0.018331594154435804],[119,296,70,-0.014112304559078317],[119,296,71,-0.009870712837197773],[119,296,72,-0.005607637983168864],[119,296,73,-0.0013239029341241965],[119,296,74,0.002979666533962408],[119,296,75,0.007302242932884312],[119,296,76,0.011642998211862002],[119,296,77,0.01600110493011299],[119,296,78,0.02037573745235291],[119,296,79,0.02476607316725539],[119,297,64,-0.03583286796519042],[119,297,65,-0.03168772276484412],[119,297,66,-0.027517960414040296],[119,297,67,-0.02332437571697367],[119,297,68,-0.01910777051112575],[119,297,69,-0.014868952615069972],[119,297,70,-0.010608734752622806],[119,297,71,-0.00632793345348627],[119,297,72,-0.002027367930331078],[119,297,73,0.0022921410675317277],[119,297,74,0.006629772424257913],[119,297,75,0.010984705850866694],[119,297,76,0.015356123102293145],[119,297,77,0.01974320921795135],[119,297,78,0.02414515378583021],[119,297,79,0.028561152230149205],[119,298,64,-0.03267094060635341],[119,298,65,-0.028476903192046363],[119,298,66,-0.02425991088062593],[119,298,67,-0.020020769869062635],[119,298,68,-0.015760291323715134],[119,298,69,-0.011479290265227975],[119,298,70,-0.00717858442917272],[119,298,71,-0.0028589931025767637],[119,298,72,0.001478664063709778],[119,298,73,0.005833568266659699],[119,298,74,0.010204902787098367],[119,298,75,0.014591854249623136],[119,298,76,0.01899361390678242],[119,298,77,0.0234093789473677],[119,298,78,0.027838353828840715],[119,298,79,0.03227975163392425],[119,299,64,-0.02958161689904315],[119,299,65,-0.025339261481992788],[119,299,66,-0.021075590915964372],[119,299,67,-0.016791422903040573],[119,299,68,-0.012487578072226134],[119,299,69,-0.008164878801741354],[119,299,70,-0.0038241480164540043],[119,299,71,5.337920394034718E-4],[119,299,72,0.004908121054283052],[119,299,73,0.009298021925984869],[119,299,74,0.01370268206331026],[119,299,75,0.018121294712206665],[119,299,76,0.022553060306775723],[119,299,77,0.026997187844998154],[119,299,78,0.03145289628919723],[119,299,79,0.03591941599126888],[119,300,64,-0.026566980811675973],[119,300,65,-0.022276908766792565],[119,300,66,-0.01796713785697235],[119,300,67,-0.01363849739833567],[119,300,68,-0.009291817614004126],[119,300,69,-0.004927928394122719],[119,300,70,-5.476580304155168E-4],[119,300,71,0.0038481680745789046],[119,300,72,0.008258728723640588],[119,300,73,0.01268320826621988],[119,300,74,0.017120797965384932],[119,300,75,0.021570697389861854],[119,300,76,0.026032115831544234],[119,300,77,0.0305042737483223],[119,300,78,0.03498640423225581],[119,300,79,0.0394777545031168],[119,301,64,-0.023629055673454292],[119,301,65,-0.019291895046127282],[119,301,66,-0.014936627434121809],[119,301,67,-0.01056409387302398],[119,301,68,-0.00617513430914125],[119,301,69,-0.0017705862976151732],[119,301,70,0.0026487163255385325],[119,301,71,0.0070819447973128995],[119,301,72,0.011528276807567097],[119,301,73,0.015986897904705692],[119,301,74,0.020457002927558764],[119,301,75,0.024937797462958388],[119,301,76,0.029428499329389613],[119,301,77,0.03392834008656472],[119,301,78,0.038436566570945734],[119,301,79,0.04295244245724145],[119,302,64,-0.020769802922751733],[119,302,65,-0.016386207919312716],[119,302,66,-0.01198607248775378],[119,302,67,-0.007570249484974699],[119,302,68,-0.0031395887070328806],[119,302,69,0.0013050644742618085],[119,302,70,0.005762870501431115],[119,302,71,0.010232997047939429],[119,302,72,0.014714620461383887],[119,302,73,0.019206927233109926],[119,302,74,0.023709115494634107],[119,302,75,0.02822039654036567],[119,302,76,0.0327399963770083],[119,302,77,0.03726715729948891],[119,302,78,0.041801139493439866],[119,302,79,0.0463412226642599],[119,303,64,-0.017991120912697986],[119,303,65,-0.01356177137503941],[119,303,66,-0.009117421742531832],[119,303,67,-0.004658936791575184],[119,303,68,-1.8717629193587808E-4],[119,303,69,0.004297006417757256],[119,303,70,0.008792765881799884],[119,303,71,0.013299266006331235],[119,303,72,0.01781568156543626],[119,303,73,0.022341199734276708],[119,303,74,0.026875021649635716],[119,303,75,0.03141636399736343],[119,303,76,0.0359644606271083],[119,303,77,0.04051856419417925],[119,303,78,0.04507794782856586],[119,303,79,0.0496419068311415],[119,304,64,-0.015294843773895547],[119,304,65,-0.010820444638720714],[119,304,66,-0.006332558639961353],[119,304,67,-0.0018320625679640132],[119,304,68,0.0026801737125425433],[119,304,69,0.007203288747600581],[119,304,70,0.011736431007064733],[119,304,71,0.016278760425379502],[119,304,72,0.020829449970143542],[119,304,73,0.025387687238305395],[119,304,74,0.029952676080380165],[119,304,75,0.03452363825216765],[119,304,76,0.03909981509436123],[119,304,77,0.043680469239892585],[119,304,78,0.048264886349037174],[119,304,79,0.05285237687230642],[119,305,64,-0.01268274033441234],[119,305,65,-0.008164021077597623],[119,305,66,-0.0036333002291273793],[119,305,67,9.085333160761856E-4],[119,305,68,0.0054605994798711845],[119,305,69,0.01002202854622174],[119,305,70,0.01459196273501636],[119,305,71,0.019169557804225128],[119,305,72,0.0237539846804474],[119,305,73,0.028344431117693768],[119,305,74,0.03294010338479325],[119,305,75,0.03754022798090375],[119,305,76,0.042144053379518154],[119,305,77,0.04675085180080811],[119,305,78,0.05135992101233293],[119,305,79,0.0559705861581381],[119,306,64,-0.010156513096973636],[119,306,65,-0.005594227163522002],[119,306,66,-0.0010213961155701723],[119,306,67,0.0035610789606455723],[119,306,68,0.00815230765801879],[119,306,69,0.01275141185356482],[119,306,70,0.017357527342510733],[119,306,71,0.02196980550132601],[119,306,72,0.026587414979746447],[119,306,73,0.03120954342163327],[119,306,74,0.035835399215062416],[119,306,75,0.04046421327111726],[119,306,76,0.04509524083178058],[119,306,77,0.049727763306766246],[119,306,78,0.054361090139318384],[119,306,79,0.05899456070100355],[119,307,64,-0.007717797273292561],[119,307,65,-0.0031127214933535097],[119,307,66,0.0015014725317654687],[119,307,67,0.006123871441740571],[119,307,68,0.010753574387941459],[119,307,69,0.015389694697559665],[119,307,70,0.020031361567435985],[119,307,71,0.024677721787429968],[119,307,72,0.02932794149338449],[119,307,73,0.03398120794952572],[119,307,74,0.03863673136069619],[119,307,75,0.043293746713891426],[119,307,76,0.04795151564949754],[119,307,77,0.052609328362069205],[119,307,78,0.057266505530678094],[119,307,79,0.061922400278853845],[119,308,64,-0.00536815987567011],[119,308,65,-7.210938671085299E-4],[119,308,66,0.003933693915369872],[119,308,67,0.00859527775861204],[119,308,68,0.013262746262990746],[119,308,69,0.017935204065109872],[119,308,70,0.02261177359080775],[119,308,71,0.02729159683830494],[119,308,72,0.031973837191545146],[119,308,73,0.03665768126357136],[119,308,74,0.041342340770337424],[119,308,75,0.04602705443442026],[119,308,76,0.0507110899190345],[119,308,77,0.05539374579218766],[119,308,78,0.06007435352100489],[119,308,79,0.06475227949624703],[119,309,64,-0.0031090988657943575],[119,309,65,0.0015791355762148213],[119,309,66,0.006273726485869505],[119,309,67,0.01097373572254523],[119,309,68,0.015678241229320836],[119,309,69,0.020386338813672897],[119,309,70,0.0250971439590697],[119,309,71,0.029809793667306253],[119,309,72,0.0345234483316315],[119,309,73,0.03923729364050921],[119,309,74,0.04395054251241254],[119,309,75,0.048662437061117336],[119,309,76,0.0533722505918971],[119,309,77,0.05807928962845586],[119,309,78,0.06278289597062939],[119,309,79,0.0674824487828783],[119,310,64,-9.420423606848333E-4],[119,310,65,0.0037865171651897678],[119,310,66,0.008520099760648533],[119,310,67,0.013257754787118506],[119,310,68,0.017998549427350644],[119,310,69,0.022741570523492932],[119,310,70,0.02748592644666048],[119,310,71,0.03223074899784151],[119,310,72,0.03697519534019425],[119,310,73,0.04171844996257183],[119,310,74,0.04645972667467975],[119,310,75,0.051198270633326645],[119,310,76,0.05593336040017437],[119,310,77,0.060664310030821886],[119,310,78,0.06539047119525507],[119,310,79,0.07011123532968379],[119,311,64,0.0011316521041006555],[119,311,65,0.005899672444769216],[119,311,66,0.010671415084264974],[119,311,67,0.015445916819813763],[119,311,68,0.020222233974155082],[119,311,69,0.024999444290355846],[119,311,70,0.029776648858714894],[119,311,71,0.034552974075600665],[119,311,72,0.03932757363427121],[119,311,73,0.04409963054751831],[119,311,74,0.048868359202539055],[119,311,75,0.05363300744749398],[119,311,76,0.058392858710159784],[119,311,77,0.06314723414851016],[119,311,78,0.06789549483325678],[119,311,79,0.07263704396237305],[119,312,64,0.0031106982540588107],[119,312,65,0.007917294867418434],[119,312,66,0.012726346330729624],[119,312,67,0.017536876815049077],[119,312,68,0.02234793168685499],[119,312,69,0.027158579458937],[119,312,70,0.031967913773972165],[119,312,71,0.03677505542062315],[119,312,72,0.04157915438221421],[119,312,73,0.04637939191782006],[119,312,74,0.051174982676178093],[119,312,75,0.05596517684187635],[119,312,76,0.060749262314229086],[119,312,77,0.06552656691867392],[119,312,78,0.07029646065071976],[119,312,79,0.07505835795247001],[119,313,64,0.004993881698183128],[119,313,65,0.009838150426617787],[119,313,66,0.014683640547697469],[119,313,67,0.019529363548682344],[119,313,68,0.024374353747053837],[119,313,69,0.029217670296794312],[119,313,70,0.03405839922794096],[119,313,71,0.03889565551925464],[119,313,72,0.04372858520405434],[119,313,73,0.048556367509052956],[119,313,74,0.0533782170266095],[119,313,75,0.058193385919843243],[119,313,76,0.06300116616102786],[119,313,77,0.06780089180309423],[119,313,78,0.0725919412842759],[119,313,79,0.07737373976591883],[119,314,64,0.006780060494144688],[119,314,65,0.011661078232623703],[119,314,66,0.016542118542455353],[119,314,67,0.02142218017386882],[119,314,68,0.02630028630620751],[119,314,69,0.031175486608884695],[119,314,70,0.03604685933620247],[119,314,71,0.04091351345587155],[119,314,72,0.04577459081128302],[119,314,73,0.050629268317370024],[119,314,74,0.0554767601904709],[119,314,75,0.060316320211642765],[119,314,76,0.06514724402384062],[119,314,77,0.06996887146279279],[119,314,78,0.07478058892160597],[119,314,79,0.07958183174912098],[119,315,64,0.00846816565630279],[119,315,65,0.013384991030583937],[119,315,66,0.018300675409804984],[119,315,67,0.023214204758373158],[119,315,68,0.028124591032021917],[119,315,69,0.033030874292707485],[119,315,70,0.03793212485795275],[119,315,71,0.0428274454844752],[119,315,72,0.04771597358615287],[119,315,73,0.05259688348616107],[119,315,74,0.057469388703697416],[119,315,75,0.062332744274739144],[119,315,76,0.06718624910725085],[119,315,77,0.07202924837067193],[119,315,78,0.0768611359197181],[119,315,79,0.08168135675251714],[119,316,64,0.010057201606483268],[119,316,65,0.015008875660939641],[119,316,66,0.019958281001771883],[119,316,67,0.024904390763264422],[119,316,68,0.029846205595813163],[119,316,69,0.03478275583400248],[119,316,70,0.03971310369971148],[119,316,71,0.0446363455400855],[119,316,72,0.04955161410042461],[119,316,73,0.054458080831824796],[119,316,74,0.059354958233988675],[119,316,75,0.06424150223264724],[119,316,76,0.0691170145920143],[119,316,77,0.07398084536210126],[119,316,78,0.07883239536092518],[119,316,79,0.08367111869163349],[119,317,64,0.011546246567602558],[119,317,65,0.016531793462195715],[119,317,66,0.021513980339223637],[119,317,67,0.02649176746308121],[119,317,68,0.031464144100913305],[119,317,69,0.0364301307430899],[119,317,70,0.04138878135928889],[119,317,71,0.04633918569002171],[119,317,72,0.05128047157365234],[119,317,73,0.056211807308745976],[119,317,74,0.06113240405216602],[119,317,75,0.06604151825235785],[119,317,76,0.07093845411824273],[119,317,77,0.07582256612354976],[119,317,78,0.08069326154661807],[119,317,79,0.08555000304569274],[119,318,64,0.01293445290004247],[119,318,65,0.01795288061596295],[119,318,66,0.02296689396529894],[119,318,67,0.027975440307363847],[119,318,68,0.032977497452019944],[119,318,69,0.03797207593174867],[119,318,70,0.042958221309900985],[119,318,71,0.0479350165249639],[119,318,72,0.052901584270896584],[119,318,73,0.05785708941336565],[119,318,74,0.06280074144230635],[119,318,75,0.06773179696024048],[119,318,76,0.0726495622067811],[119,318,77,0.0775533956191462],[119,318,78,0.08244271042871829],[119,318,79,0.08731697729366944],[119,319,64,0.014221047380828244],[119,319,65,0.019271348434325042],[119,319,66,0.024316218240701792],[119,319,67,0.029354591223609727],[119,319,68,0.034385433665546056],[119,319,69,0.03940774603069022],[119,319,70,0.04442056532449373],[119,319,71,0.04942296748985367],[119,319,72,0.05441406983992589],[119,319,73,0.05939303352740746],[119,319,74,0.06435906605071423],[119,319,75,0.06931142379648547],[119,319,76,0.07424941461884302],[119,319,77,0.07917240045523169],[119,319,78,0.08407979997887302],[119,319,79,0.08897109128785602],[120,-64,64,-0.1302624055702335],[120,-64,65,-0.13404235960497335],[120,-64,66,-0.13770523470591733],[120,-64,67,-0.1412495846245102],[120,-64,68,-0.14467412420421555],[120,-64,69,-0.1479777351369157],[120,-64,70,-0.15115947178353661],[120,-64,71,-0.154218567058799],[120,-64,72,-0.1571544383801109],[120,-64,73,-0.1599666936805122],[120,-64,74,-0.16265513748592164],[120,-64,75,-0.16521977705634083],[120,-64,76,-0.16766082859128884],[120,-64,77,-0.16997872349933818],[120,-64,78,-0.17217411473179878],[120,-64,79,-0.1742478831805312],[120,-63,64,-0.12476608827738211],[120,-63,65,-0.12853463381357821],[120,-63,66,-0.13218666476556962],[120,-63,67,-0.13572073207939184],[120,-63,68,-0.1391355472553688],[120,-63,69,-0.1424299880968961],[120,-63,70,-0.14560310452347036],[120,-63,71,-0.1486541244478612],[120,-63,72,-0.15158245971744888],[120,-63,73,-0.15438771211963276],[120,-63,74,-0.15706967945156047],[120,-63,75,-0.15962836165383654],[120,-63,76,-0.1620639670084839],[120,-63,77,-0.1643769184010201],[120,-63,78,-0.16656785964670928],[120,-63,79,-0.16863766188095908],[120,-62,64,-0.11918731534643712],[120,-62,65,-0.12294368949167944],[120,-62,66,-0.12658414089487624],[120,-62,67,-0.13010721759892008],[120,-62,68,-0.13351162763611568],[120,-62,69,-0.13679624476889585],[120,-62,70,-0.13996011429479882],[120,-62,71,-0.14300245891561625],[120,-62,72,-0.14592268467071845],[120,-62,73,-0.14872038693447553],[120,-62,74,-0.15139535647801705],[120,-62,75,-0.153947585594993],[120,-62,76,-0.1563772742916033],[120,-62,77,-0.1586848365407676],[120,-62,78,-0.16087090660048498],[120,-62,79,-0.1629363453963646],[120,-61,64,-0.11353034804051709],[120,-61,65,-0.1172737950308026],[120,-61,66,-0.12090193829914142],[120,-61,67,-0.12441332288897033],[120,-61,68,-0.12780665324141838],[120,-61,69,-0.13108079892750668],[120,-61,70,-0.13423480044463443],[120,-61,71,-0.13726787507724514],[120,-61,72,-0.14017942282169926],[120,-61,73,-0.1429690323752577],[120,-61,74,-0.14563648718942346],[120,-61,75,-0.14818177158730417],[120,-61,76,-0.15060507694526581],[120,-61,77,-0.15290680793874156],[120,-61,78,-0.15508758885225293],[120,-61,79,-0.1571482699536202],[120,-60,64,-0.10779949463988181],[120,-60,65,-0.11152926633634297],[120,-60,66,-0.11514438017647777],[120,-60,67,-0.11864337810943615],[120,-60,68,-0.12202496086381776],[120,-60,69,-0.12528799367091625],[120,-60,70,-0.12843151205226444],[120,-60,71,-0.13145472767138622],[120,-60,72,-0.13435703424976686],[120,-60,73,-0.13713801354695743],[120,-60,74,-0.1397974414050548],[120,-60,75,-0.14233529385722443],[120,-60,76,-0.14475175330052836],[120,-60,77,-0.1470472147329337],[120,-60,78,-0.14922229205454873],[120,-60,79,-0.1512778244330677],[120,-59,64,-0.10199910557966652],[120,-59,65,-0.10571446195578227],[120,-59,66,-0.10931583283691149],[120,-59,67,-0.11280175698462913],[120,-59,68,-0.11617093129553369],[120,-59,69,-0.11942221651509666],[120,-59,70,-0.12255464301583496],[120,-59,71,-0.12556741663970516],[120,-59,72,-0.12845992460473687],[120,-59,73,-0.13123174147581906],[120,-59,74,-0.13388263519988153],[120,-59,75,-0.13641257320513556],[120,-59,76,-0.13882172856464237],[120,-59,77,-0.1411104862240764],[120,-59,78,-0.14327944929373926],[120,-59,79,-0.14532944540479908],[120,-58,64,-0.09613356846239363],[120,-58,65,-0.09983377808121319],[120,-58,66,-0.10342070069534359],[120,-58,67,-0.1068928717870995],[120,-58,68,-0.11024898430356234],[120,-58,69,-0.11348789436060691],[120,-58,70,-0.11660862701126473],[120,-58,71,-0.11961038207833208],[120,-58,72,-0.12249254005123333],[120,-58,73,-0.12525466804705643],[120,-58,74,-0.12789652583600097],[120,-58,75,-0.13041807193090627],[120,-58,76,-0.1328194697411238],[120,-58,77,-0.1351010937906031],[120,-58,78,-0.13726353600024788],[120,-58,79,-0.1393076120345158],[120,-57,64,-0.09020730294557922],[120,-57,65,-0.09389164342648826],[120,-57,66,-0.09746342113868489],[120,-57,67,-0.1009211681951967],[120,-57,68,-0.10426357347810478],[120,-57,69,-0.10748948833231697],[120,-57,70,-0.11059793232370252],[120,-57,71,-0.11358809906148215],[120,-57,72,-0.11645936208489704],[120,-57,73,-0.11921128081406607],[120,-57,74,-0.12184360656527415],[120,-57,75,-0.12435628863035753],[120,-57,76,-0.12674948042045353],[120,-57,77,-0.1290235456739809],[120,-57,78,-0.13117906472890883],[120,-57,79,-0.13321684085928642],[120,-56,64,-0.08422475550428254],[120,-56,65,-0.08789251397884423],[120,-56,66,-0.09144845926701461],[120,-56,67,-0.0948911200242234],[120,-56,68,-0.09821918095416682],[120,-56,69,-0.10143148849191408],[120,-56,70,-0.10452705655138606],[120,-56,71,-0.10750507233711226],[120,-56,72,-0.11036490222028283],[120,-56,73,-0.11310609767900592],[120,-56,74,-0.11572840130301465],[120,-56,75,-0.11823175286248966],[120,-56,76,-0.12061629544126218],[120,-56,77,-0.12288238163426646],[120,-56,78,-0.12503057980929833],[120,-56,79,-0.1270616804330542],[120,-55,64,-0.07819039406845218],[120,-55,65,-0.08184086762484921],[120,-55,66,-0.08538030250860995],[120,-55,67,-0.08880722383102102],[120,-55,68,-0.09212031200618265],[120,-55,69,-0.09531840842302941],[120,-55,70,-0.09840052118174325],[120,-55,71,-0.10136583089446138],[120,-55,72,-0.10421369655029666],[120,-55,73,-0.10694366144458112],[120,-55,74,-0.10955545917257581],[120,-55,75,-0.11204901968731362],[120,-55,76,-0.11442447542184075],[120,-55,77,-0.11668216747572535],[120,-55,78,-0.11882265186588947],[120,-55,79,-0.12084670584173574],[120,-54,64,-0.07210870253536361],[120,-54,65,-0.07574119865097584],[120,-54,66,-0.079263455109149],[120,-54,67,-0.0826739933923023],[120,-54,68,-0.08597148951596223],[120,-54,69,-0.08915477968929397],[120,-54,70,-0.09222286604004015],[120,-54,71,-0.09517492240377223],[120,-54,72,-0.09801030017747081],[120,-54,73,-0.10072853423734529],[120,-54,74,-0.10332934892114098],[120,-54,75,-0.10581266407459022],[120,-54,76,-0.10817860116228473],[120,-54,77,-0.11042748944282899],[120,-54,78,-0.11255987220833297],[120,-54,79,-0.11457651308822148],[120,-53,64,-0.06598417515700572],[120,-53,65,-0.06959801211865146],[120,-53,66,-0.07310243249494275],[120,-53,67,-0.07649595405657272],[120,-53,68,-0.07977724831381716],[120,-53,69,-0.08294514616517501],[120,-53,70,-0.08599864361043252],[120,-53,71,-0.08893690752805672],[120,-53,72,-0.0917592815169338],[120,-53,73,-0.09446529180236662],[120,-53,74,-0.09705465320657058],[120,-53,75,-0.0995272751833367],[120,-53,76,-0.1018832679171271],[120,-53,77,-0.10412294848647152],[120,-53,78,-0.10624684709172016],[120,-53,79,-0.10825571334712691],[120,-52,64,-0.059821310802257166],[120,-52,65,-0.0634158181136274],[120,-52,66,-0.0669017555100293],[120,-52,67,-0.07027763696948575],[120,-52,68,-0.07354212939270321],[120,-52,69,-0.07669405823943065],[120,-52,70,-0.07973241322925262],[120,-52,71,-0.08265635410673233],[120,-52,72,-0.08546521647091299],[120,-52,73,-0.08815851766909821],[120,-52,74,-0.09073596275514206],[120,-52,75,-0.09319745051192618],[120,-52,76,-0.09554307953828578],[120,-52,77,-0.09777315440025114],[120,-52,78,-0.09988819184666253],[120,-52,79,-0.10188892708913078],[120,-51,64,-0.05362460709415695],[120,-51,65,-0.057199125869975664],[120,-51,66,-0.060665944527448556],[120,-51,67,-0.06402357317294094],[120,-51,68,-0.06727067399569053],[120,-51,69,-0.07040606689149465],[120,-51,70,-0.0734287351508488],[120,-51,71,-0.07633783121145055],[120,-51,72,-0.0791326824750791],[120,-51,73,-0.08181279718876577],[120,-51,74,-0.08437787039049438],[120,-51,75,-0.08682778991910478],[120,-51,76,-0.08916264248865624],[120,-51,77,-0.09138271982712654],[120,-51,78,-0.09348852487950032],[120,-51,79,-0.09548077807521738],[120,-50,64,-0.047398554422127925],[120,-50,65,-0.050952437768566616],[120,-50,66,-0.054399513434543634],[120,-50,67,-0.05773828757777966],[120,-50,68,-0.060967417576614946],[120,-50,69,-0.06408571764064541],[120,-50,70,-0.06709216448582833],[120,-50,71,-0.06998590307396757],[120,-50,72,-0.07276625241658785],[120,-50,73,-0.07543271144312191],[120,-50,74,-0.07798496493363483],[120,-50,75,-0.08042288951577325],[120,-50,76,-0.0827465597261855],[120,-50,77,-0.08495625413630015],[120,-50,78,-0.0870524615424988],[120,-50,79,-0.08903588722067335],[120,-49,64,-0.04114762982898057],[120,-49,65,-0.04468024320985731],[120,-49,66,-0.04810696349212196],[120,-49,67,-0.05142629280990285],[120,-49,68,-0.054636883633736755],[120,-49,69,-0.05773754436778433],[120,-49,70,-0.060727245011530595],[120,-49,71,-0.0636051228858775],[120,-49,72,-0.06637048842364623],[120,-49,73,-0.0690228310244001],[120,-49,74,-0.07156182497382713],[120,-49,75,-0.0739873354273557],[120,-49,76,-0.07629942445826454],[120,-49,77,-0.07849835717015619],[120,-49,78,-0.08058460787384836],[120,-49,79,-0.08255886632866183],[120,-48,64,-0.03487629077302279],[120,-48,65,-0.03838701236131703],[120,-48,66,-0.0417927770678026],[120,-48,67,-0.04509208293014344],[120,-48,68,-0.048283577416739165],[120,-48,69,-0.05136606301015634],[120,-48,70,-0.05433850285505992],[120,-48,71,-0.05720002647055156],[120,-48,72,-0.059949935526929954],[120,-48,73,-0.06258770968679084],[120,-48,74,-0.06511301251069668],[120,-48,75,-0.06752569742709869],[120,-48,76,-0.06982581376676356],[120,-48,77,-0.07201361286158181],[120,-48,78,-0.0740895542078086],[120,-48,79,-0.07605431169371246],[120,-47,64,-0.02858896876511252],[120,-47,65,-0.03207718977932439],[120,-47,66,-0.035461411243383645],[120,-47,67,-0.03874012702772622],[120,-47,68,-0.04191197950689707],[120,-47,69,-0.044975765128842604],[120,-47,70,-0.04793044004871616],[120,-47,71,-0.05077512582710442],[120,-47,72,-0.053509115192692636],[120,-47,73,-0.056131877869281865],[120,-47,74,-0.058643066467389815],[120,-47,75,-0.061042522440119984],[120,-47,76,-0.06333028210354952],[120,-47,77,-0.06550658272151189],[120,-47,78,-0.06757186865482734],[120,-47,79,-0.06952679757495583],[120,-46,64,-0.02229006288049673],[120,-46,65,-0.025755187905384225],[120,-46,66,-0.02911729129607532],[120,-46,67,-0.03237486268715739],[120,-46,68,-0.03552653927026206],[120,-46,69,-0.038571111348873366],[120,-46,70,-0.04150752795765822],[120,-46,71,-0.044334902546237065],[120,-46,72,-0.04705251872740057],[120,-46,73,-0.049659836089697484],[120,-46,74,-0.052156496074617587],[120,-46,75,-0.05454232791805835],[120,-46,76,-0.05681735465632276],[120,-46,77,-0.058981799196527906],[120,-46,78,-0.06103609045147218],[120,-46,79,-0.062980869538942],[120,-45,64,-0.015983933145753304],[120,-45,65,-0.01942538043697184],[120,-45,66,-0.0227648040539139],[120,-45,67,-0.02600068932886379],[120,-45,68,-0.029131668184179116],[120,-45,69,-0.03215652467227148],[120,-45,70,-0.03507420058012678],[120,-45,71,-0.03788380109827383],[120,-45,72,-0.040584600554218864],[120,-45,73,-0.043176048210260776],[120,-45,74,-0.04565777412591576],[120,-45,75,-0.048029595084639554],[120,-45,76,-0.050291520585095006],[120,-45,77,-0.05244375889684105],[120,-45,78,-0.054486723180500296],[120,-45,79,-0.05642103767237072],[120,-44,64,-0.009674893800678208],[120,-44,65,-0.013092095572861062],[120,-44,66,-0.016408291125201035],[120,-44,67,-0.019621961423423206],[120,-44,68,-0.022731733036981283],[120,-44,69,-0.025736383663882645],[120,-44,70,-0.02863484772006486],[120,-44,71,-0.03142622199323597],[120,-44,72,-0.034109771361190755],[120,-44,73,-0.03668493457452304],[120,-44,74,-0.039151330103960214],[120,-44,75,-0.0415087620520076],[120,-44,76,-0.04375722612915167],[120,-44,77,-0.04589691569450027],[120,-44,78,-0.047928227860908224],[120,-44,79,-0.04985176966456961],[120,-43,64,-0.0033672064349568043],[120,-43,65,-0.006759609132757527],[120,-43,66,-0.01005204200180343],[120,-43,67,-0.013242981579220992],[120,-43,68,-0.01633104900069382],[120,-43,69,-0.019315015509808964],[120,-43,70,-0.02219380803197013],[120,-43,71,-0.024966514812784335],[120,-43,72,-0.027632391120938515],[120,-43,73,-0.030190865015485513],[120,-43,74,-0.0326415431777638],[120,-43,75,-0.03498421680764141],[120,-43,76,-0.03721886758433024],[120,-43,77,-0.03934567369164943],[120,-43,78,-0.041365015907789515],[120,-43,79,-0.04327748375955276],[120,-42,64,0.0029349270000604832],[120,-42,65,-4.3213755157467393E-4],[120,-42,66,-0.0037002870366391605],[120,-42,67,-0.00686799350386047],[120,-42,68,-0.009933872577075786],[120,-42,69,-0.012896688948790369],[120,-42,70,-0.015755361938310064],[120,-42,71,-0.018508971114363004],[120,-42,72,-0.021156761982222494],[120,-42,73,-0.023698151735251916],[120,-42,74,-0.026132735071094704],[120,-42,75,-0.02846029007220241],[120,-42,76,-0.030680784150943663],[120,-42,77,-0.03279438005917712],[120,-42,78,-0.03480144196233459],[120,-42,79,-0.03670254157799491],[120,-41,64,0.009227371304638798],[120,-41,65,0.005886169251823059],[120,-41,66,0.0026428097048183385],[120,-41,67,-5.011748391570148E-4],[120,-41,68,-0.0035443944168338515],[120,-41,69,-0.006485607076355038],[120,-41,70,-0.009323724419327495],[120,-41,71,-0.01205781720737098],[120,-41,72,-0.014687121033183592],[120,-41,73,-0.01721104205603896],[120,-41,74,-0.019629162801941713],[120,-41,75,-0.02194124802813191],[120,-41,76,-0.02414725065218426],[120,-41,77,-0.026247317745580312],[120,-41,78,-0.0282417965918057],[120,-41,79,-0.030131240808947912],[120,-40,64,0.015506065269152325],[120,-40,65,0.012191235131553624],[120,-40,66,0.008973157719165292],[120,-40,67,0.005853370130429192],[120,-40,68,0.0028332679881477585],[120,-40,69,-8.590002159158949E-5],[120,-40,70,-0.0029030376750888154],[120,-40,71,-0.00561720680121458],[120,-40,72,-0.008227632936119722],[120,-40,73,-0.010733711042390959],[120,-40,74,-0.013135011292872312],[120,-40,75,-0.015431284918851373],[120,-40,76,-0.0176224701228479],[120,-40,77,-0.01970869805589004],[120,-40,78,-0.021690298859326163],[120,-40,79,-0.023567807771146754],[120,-39,64,0.02176702903747807],[120,-39,65,0.01847906509702557],[120,-39,66,0.015286747465518946],[120,-39,67,0.012191617895622842],[120,-39,68,0.009195077739247659],[120,-39,69,0.006298382503148514],[120,-39,70,0.003502636339917653],[120,-39,71,8.087864744537043E-4],[120,-39,72,-0.0017823824341064443],[120,-39,73,-0.004270253994911877],[120,-39,74,-0.006654385852600364],[120,-39,75,-0.008934515518875141],[120,-39,76,-0.011110566268697664],[120,-39,77,-0.01318265310097666],[120,-39,78,-0.015151088763804887],[120,-39,79,-0.017016389844218494],[120,-38,64,0.028006371595440283],[120,-38,65,0.024745752820763744],[120,-38,66,0.021579657891937387],[120,-38,67,0.01850963326656152],[120,-38,68,0.01553708609236637],[120,-38,69,0.012663278779763809],[120,-38,70,0.009889323509779446],[120,-38,71,0.007216176677451669],[120,-38,72,0.0046446332706847615],[120,-38,73,0.0021753211846312626],[120,-38,74,-1.9130452861138014E-4],[120,-38,75,-0.0024549674746909833],[120,-38,76,-0.004615575796315996],[120,-38,77,-0.0066732281170805985],[120,-38,78,-0.008628219549844385],[120,-38,79,-0.010481047769648644],[120,-37,64,0.03422029838447316],[120,-37,65,0.030987488271924657],[120,-37,66,0.02784806408798146],[120,-37,67,0.024803577043602032],[120,-37,68,0.021855440146179128],[120,-37,69,0.019004922789307765],[120,-37,70,0.01625314527792776],[120,-37,71,0.013601073288920018],[120,-37,72,0.011049512267147232],[120,-37,73,0.008599101757013283],[120,-37,74,0.006250309669328047],[120,-37,75,0.004003426483773165],[120,-37,76,0.0018585593867325167],[120,-37,77,-1.8437365539547557E-4],[120,-37,78,-0.002125649887452452],[120,-37,79,-0.003965747821321419],[120,-36,64,0.04040511904016175],[120,-36,65,0.03720056547515849],[120,-36,66,0.034088245063074285],[120,-36,67,0.03106971381435819],[120,-36,68,0.028146390657031728],[120,-36,69,0.025319552043933657],[120,-36,70,0.02259032649532766],[120,-36,71,0.019959689076956222],[120,-36,72,0.017428455813527144],[120,-36,73,0.014997278037709671],[120,-36,74,0.012666636674427023],[120,-36,75,0.010436836460737231],[120,-36,76,0.008308000101071578],[120,-36,77,0.006280062357943872],[120,-36,78,0.004352764078081939],[120,-36,79,0.002525646154004524],[120,-35,64,0.04655725525594212],[120,-35,65,0.043381390395101915],[120,-35,66,0.04029659165094357],[120,-35,67,0.03730441987725175],[120,-35,68,0.034406299980770494],[120,-35,69,0.03160351554617147],[120,-35,70,0.028897203396377358],[120,-35,71,0.026288348088321367],[120,-35,72,0.02377777634412892],[120,-35,73,0.02136615141780085],[120,-35,74,0.019053967397181792],[120,-35,75,0.016841543441509788],[120,-35,76,0.014729017954311918],[120,-35,77,0.01271634269176114],[120,-35,78,0.010803276806447437],[120,-35,79,0.008989380826584292],[120,-34,64,0.05267324877175705],[120,-34,65,0.04952648894629286],[120,-34,66,0.04646961453993714],[120,-34,67,0.04350419129137373],[120,-34,68,0.04063165014129311],[120,-34,69,0.03785328187532344],[120,-34,70,0.035170231702308374],[120,-34,71,0.03258349376801006],[120,-34,72,0.03009390560422831],[120,-34,73,0.027702142513408967],[120,-34,74,0.02540871188853111],[120,-34,75,0.023213947468563756],[120,-34,76,0.02111800352926163],[120,-34,77,0.019120849009412133],[120,-34,78,0.01722226157248674],[120,-34,79,0.015421821603720076],[120,-33,64,0.05874976948793453],[120,-33,65,0.055632515128782756],[120,-33,66,0.0526039524294879],[120,-33,67,0.049665652052925835],[120,-33,68,0.046819051026098735],[120,-33,69,0.044065447401257396],[120,-33,70,0.04140599485236107],[120,-33,71,0.038841697206957404],[120,-33,72,0.036373402913467356],[120,-33,73,0.0340017994439491],[120,-33,74,0.03172740763213533],[120,-33,75,0.029550575947029922],[120,-33,76,0.027471474701833865],[120,-33,77,0.02549009019831494],[120,-33,78,0.02360621880657321],[120,-33,79,0.02181946098022447],[120,-32,64,0.06478362370397117],[120,-32,65,0.061696259289118593],[120,-32,66,0.058696380312399654],[120,-32,67,0.055785562397918986],[120,-32,68,0.05296524870850938],[120,-32,69,0.050236744625265395],[120,-32,70,0.047601212362407885],[120,-32,71,0.045059665517557246],[120,-32,72,0.0426129635574054],[120,-32,73,0.04026180623885889],[120,-32,74,0.03800672796544613],[120,-32,75,0.035848092079274974],[120,-32,76,0.03378608508831227],[120,-32,77,0.03182071082909921],[120,-32,78,0.029951784564852924],[120,-32,79,0.028178927018978173],[120,-31,64,0.07077176248236883],[120,-31,65,0.06771465650685093],[120,-31,66,0.06474381788311123],[120,-31,67,0.06186082723127995],[120,-31,68,0.05906713389671314],[120,-31,69,0.05636405064814798],[120,-31,70,0.05375274831117971],[120,-31,71,0.05123425033714213],[120,-31,72,0.04880942730737714],[120,-31,73,0.046478991372966405],[120,-31,74,0.04424349062972244],[120,-31,75,0.042103303428718264],[120,-31,76,0.04005863262213527],[120,-31,77,0.03810949974453415],[120,-31,78,0.03625573912950808],[120,-31,79,0.03449699196173672],[120,-30,64,0.07671129013768452],[120,-30,65,0.0736847951067241],[120,-30,66,0.07074333807209376],[120,-30,67,0.06788850468252872],[120,-30,68,0.06512175050979774],[120,-30,69,0.062444395765679284],[120,-30,70,0.05985761995425454],[120,-30,71,0.05736245645959348],[120,-30,72,0.05495978706882432],[120,-30,73,0.05265033643065664],[120,-30,74,0.05043466644915695],[120,-30,75,0.048313170613055845],[120,-30,76,0.046286068260362634],[120,-30,77,0.04435339877839983],[120,-30,78,0.04251501573921046],[120,-30,79,0.040770580970356574],[120,-29,64,0.08259947285047486],[120,-29,65,0.07960392529623006],[120,-29,66,0.07669217570606368],[120,-29,67,0.0738658147877026],[120,-29,68,0.07112630438044165],[120,-29,69,0.06847497219113385],[120,-29,70,0.06591300646548692],[120,-29,71,0.0634414505947496],[120,-29,72,0.061061197657771626],[120,-29,73,0.05877298489851135],[120,-29,74,0.056577388138787654],[120,-29,75,0.05447481612655736],[120,-29,76,0.05246550481949286],[120,-29,77,0.05054951160397103],[120,-29,78,0.04872670944942914],[120,-29,79,0.046996780998105114],[120,-28,64,0.08843374740630527],[120,-28,65,0.0854694679286978],[120,-28,66,0.08258773629418215],[120,-28,67,0.0797901482976997],[120,-28,68,0.07707817208444456],[120,-28,69,0.07445314290504479],[120,-28,70,0.0719162578060486],[120,-28,71,0.06946857025578979],[120,-28,72,0.06711098470562271],[120,-28,73,0.06484425108659508],[120,-28,74,0.06266895924136195],[120,-28,75,0.060585533291615645],[120,-28,76,0.05859422594080965],[120,-28,77,0.05669511271228744],[120,-28,78,0.05488808612277207],[120,-28,79,0.05317284979123149],[120,-27,64,0.0942117300599602],[120,-27,65,0.09127902339205352],[120,-27,66,0.08842760494037738],[120,-27,67,0.08565907561318231],[120,-27,68,0.08297490989722889],[120,-27,69,0.08037645063233534],[120,-27,70,0.07786490372122268],[120,-27,71,0.0754413327747342],[120,-27,72,0.07310665369241565],[120,-27,73,0.07086162917853012],[120,-27,74,0.0687068631933051],[120,-27,75,0.0666427953396892],[120,-27,76,0.06466969518539833],[120,-27,77,0.062787656520359],[120,-27,78,0.06099659154950465],[120,-27,79,0.05929622502094434],[120,-26,64,0.09993122552456013],[120,-26,65,0.09703038062295621],[120,-26,66,0.09420955538149445],[120,-26,67,0.09147035584573626],[120,-26,68,0.08881426287701677],[120,-26,69,0.0862426269465204],[120,-26,70,0.08375666286464822],[120,-26,71,0.08135744444575421],[120,-26,72,0.0790458991082369],[120,-26,73,0.07682280241005524],[120,-26,74,0.07468877251947825],[120,-26,75,0.07264426462133067],[120,-26,76,0.07068956525852621],[120,-26,77,0.06882478660899138],[120,-26,78,0.06704986069793517],[120,-26,79,0.06536453354548577],[120,-25,64,0.10559023608573537],[120,-25,65,0.10272152624645958],[120,-25,66,0.09993155915142171],[120,-25,67,0.09722194600544509],[120,-25,68,0.09459417407483461],[120,-25,69,0.09204960150113373],[120,-25,70,0.08958945205016822],[120,-25,71,0.08721480979645213],[120,-25,72,0.08492661374294386],[120,-25,73,0.08272565237622242],[120,-25,74,0.08061255815688861],[120,-25,75,0.07858780194545911],[120,-25,76,0.07665168736354155],[120,-25,77,0.07480434509039413],[120,-25,78,0.07304572709482549],[120,-25,79,0.07137560080245753],[120,-24,64,0.1111869708410016],[120,-24,65,0.10835065384134879],[120,-24,66,0.10559179487134485],[120,-24,67,0.10291201031502195],[120,-24,68,0.10031279387149195],[120,-24,69,0.09779551138852927],[120,-24,70,0.09536139563143431],[120,-24,71,0.09301154098725528],[120,-24,72,0.09074689810435421],[120,-24,73,0.08856826846738586],[120,-24,74,0.0864762989075002],[120,-24,75,0.08447147604802818],[120,-24,76,0.08255412068544743],[120,-24,77,0.08072438210572164],[120,-24,78,0.07898223233598123],[120,-24,79,0.07732746033155669],[120,-23,64,0.11671985506404514],[120,-23,65,0.11391617333085158],[120,-23,66,0.11118865766582653],[120,-23,67,0.10853892965020284],[120,-23,68,0.1059684894412376],[120,-23,69,0.10347871062575364],[120,-23,70,0.10107083500896075],[120,-23,71,0.0987459673386264],[120,-23,72,0.0965050699645883],[120,-23,73,0.09434895743367366],[120,-23,74,0.09227829101983787],[120,-23,75,0.09029357318978082],[120,-23,76,0.08839514200383713],[120,-23,77,0.08658316545223887],[120,-23,78,0.08485763572670924],[120,-23,79,0.08321836342740774],[120,-22,64,0.12218753969406204],[120,-22,65,0.11941672049887753],[120,-22,66,0.11672076870486503],[120,-22,67,0.11410131110655086],[120,-22,68,0.11155985434224014],[120,-22,69,0.10909777976764468],[120,-22,70,0.10671633826478444],[120,-22,71,0.1044166449862377],[120,-22,72,0.10219967403472563],[120,-22,73,0.10006625307809958],[120,-22,74,0.09801705789954251],[120,-22,75,0.0960526068832459],[120,-22,76,0.09417325543535215],[120,-22,77,0.09237919034026743],[120,-22,78,0.09067042405230008],[120,-22,79,0.08904678892264695],[120,-21,64,0.1275889109503051],[120,-21,65,0.12485116663193174],[120,-21,66,0.1221869848720799],[120,-21,67,0.11959799769282209],[120,-21,68,0.11708571823405],[120,-21,69,0.11465153564730513],[120,-21,70,0.11229670992488039],[120,-21,71,0.11002236666426646],[120,-21,72,0.10782949176792589],[120,-21,73,0.105718926078467],[120,-21,74,0.10369135994902912],[120,-21,75,0.10174732774913597],[120,-21,76,0.0998872023058125],[120,-21,77,0.09811118928006646],[120,-21,78,0.09641932147869303],[120,-21,79,0.09481145310141936],[120,-20,64,0.13292310007152797],[120,-20,65,0.1302186282863974],[120,-20,66,0.1275864085587184],[120,-20,67,0.12502807815058525],[120,-20,68,0.12254515672172483],[120,-20,69,0.12013904124364061],[120,-20,70,0.11781100084902218],[120,-20,71,0.11556217161649529],[120,-20,72,0.11339355129069806],[120,-20,73,0.11130599393774998],[120,-20,74,0.1093002045359307],[120,-20,75,0.10737673350182109],[120,-20,76,0.10553597115170543],[120,-20,77,0.10377814209833314],[120,-20,78,0.10210329958299891],[120,-20,79,0.10051131974296246],[120,-19,64,0.13818949318049956],[120,-19,65,0.13551847718135734],[120,-19,66,0.13291839758365054],[120,-19,67,0.13039089690026207],[120,-19,68,0.1279375013267965],[120,-19,69,0.1255596156761355],[120,-19,70,0.12325851824825695],[120,-19,71,0.12103535563539047],[120,-19,72,0.11889113746249469],[120,-19,73,0.11682673106312425],[120,-19,74,0.11484285609050371],[120,-19,75,0.11294007906405856],[120,-19,76,0.11111880785120398],[120,-19,77,0.1093792860844901],[120,-19,78,0.10772158751406247],[120,-19,79,0.10614561029545588],[120,-18,64,0.1433877412737098],[120,-18,65,0.14075035021707738],[120,-18,66,0.13818257523948008],[120,-18,67,0.13568606411372086],[120,-18,68,0.13326234958520344],[120,-18,69,0.1309128443269908],[120,-18,70,0.1286388358301268],[120,-18,71,0.1264414812292881],[120,-18,72,0.12432180206375709],[120,-18,73,0.12228067897377948],[120,-18,74,0.12031884633212653],[120,-18,75,0.11843688681110931],[120,-18,76,0.11663522588484987],[120,-18,77,0.114914126266903],[120,-18,78,0.11327368228319146],[120,-18,79,0.11171381418027038],[120,-17,64,0.14851777033598368],[120,-17,65,0.14591415961886745],[120,-17,66,0.14337884046448257],[120,-17,67,0.14091346591312648],[120,-17,68,0.1385195752718964],[120,-17,69,0.13619858909033544],[120,-17,70,0.13395180407133933],[120,-17,71,0.13178038791739244],[120,-17,72,0.12968537411211867],[120,-17,73,0.12766765663721513],[120,-17,74,0.12572798462458856],[120,-17,75,0.12386695694393923],[120,-17,76,0.1220850167255988],[120,-17,77,0.12038244581871627],[120,-17,78,0.11875935918475411],[120,-17,79,0.11721569922631081],[120,-16,64,0.15357979158017054],[120,-16,65,0.15101010320648622],[120,-16,66,0.14850737814054016],[120,-16,67,0.14607327469622333],[120,-16,68,0.1437093387522922],[120,-16,69,0.14141699874867952],[120,-16,70,0.1391975606180632],[120,-16,71,0.13705220265276086],[120,-16,72,0.13498197030693793],[120,-16,73,0.132987770934194],[120,-16,74,0.1310703684603508],[120,-16,75,0.1292303779916838],[120,-16,76,0.12746826035840475],[120,-16,77,0.12578431659349143],[120,-16,78,0.1241786823468215],[120,-16,79,0.12265132223463304],[120,-15,64,0.15857431181199855],[120,-15,65,0.15603867478918376],[120,-15,66,0.15356866951716552],[120,-15,67,0.1511659595881394],[120,-15,68,0.14883209746066417],[120,-15,69,0.14656851947670657],[120,-15,70,0.14437654081394002],[120,-15,71,0.14225735037336762],[120,-15,72,0.14021200560225733],[120,-15,73,0.13824142725244992],[120,-15,74,0.13634639407386917],[120,-15,75,0.13452753744347046],[120,-15,76,0.13278533592944153],[120,-15,77,0.13112010979074173],[120,-15,78,0.12953201541195003],[120,-15,79,0.1280210396734327],[120,-14,64,0.1635021439198746],[120,-14,65,0.16100067468615686],[120,-14,66,0.15856350276138964],[120,-14,67,0.15619229701948845],[120,-14,68,0.153888616505247],[120,-14,69,0.15165390547217372],[120,-14,70,0.14948948835558562],[120,-14,71,0.1473965646810198],[120,-14,72,0.14537620390795725],[120,-14,73,0.14342934020891684],[120,-14,74,0.14155676718374943],[120,-14,75,0.13975913250936733],[120,-14,76,0.13803693252472282],[120,-14,77,0.13639050675112752],[120,-14,78,0.13482003234787165],[120,-14,79,0.13332551850316587],[120,-13,64,0.1683644174897253],[120,-13,65,0.16589722037251653],[120,-13,66,0.16349298363361298],[120,-13,67,0.16115338143086955],[120,-13,68,0.15887997940015153],[120,-13,69,0.156674229714022],[120,-13,70,0.1545374660756803],[120,-13,71,0.15247089864822216],[120,-13,72,0.15047560891920442],[120,-13,73,0.14855254450058142],[120,-13,74,0.1467025138638376],[120,-13,75,0.14492618101055554],[120,-13,76,0.14322406007822963],[120,-13,77,0.14159650988141714],[120,-13,78,0.1400437283881908],[120,-13,79,0.13856574713190883],[120,-12,64,0.1731625895450296],[120,-12,65,0.17072975725091488],[120,-12,66,0.16835854628957003],[120,-12,67,0.1660506361039117],[120,-12,68,0.16380759892424557],[120,-12,69,0.16163089484784787],[120,-12,70,0.15952186685380199],[120,-12,71,0.15748173575315083],[120,-12,72,0.1555115950743542],[120,-12,73,0.15361240588411418],[120,-12,74,0.15178499154339786],[120,-12,75,0.15003003239889134],[120,-12,76,0.14834806040969728],[120,-12,77,0.14673945370937036],[120,-12,78,0.14520443110325143],[120,-12,79,0.1437430465011159],[120,-11,64,0.17789845541176275],[120,-11,65,0.17550006954855624],[120,-11,66,0.17316196420812646],[120,-11,67,0.17088582411858744],[120,-11,68,0.16867322810671248],[120,-11,69,0.16652564419845362],[120,-11,70,0.1644444246547152],[120,-11,71,0.162430800942442],[120,-11,72,0.1604858786410115],[120,-11,73,0.15861063228399064],[120,-11,74,0.15680590013609186],[120,-11,75,0.15507237890555414],[120,-11,76,0.1534106183917705],[120,-11,77,0.15182101606824983],[120,-11,78,0.15030381160087491],[120,-11,79,0.1488590813014754],[120,-10,64,0.18257415970847812],[120,-10,65,0.18021029133981414],[120,-10,66,0.17790536124513523],[120,-10,67,0.1756610594370155],[120,-10,68,0.17347897133952073],[120,-10,69,0.17136057290970297],[120,-10,70,0.16930722569434709],[120,-10,71,0.16732017182203118],[120,-10,72,0.1654005289304885],[120,-10,73,0.16354928502933408],[120,-10,74,0.16176729329798833],[120,-10,75,0.16005526681902527],[120,-10,76,0.15841377324676464],[120,-10,77,0.15684322941119755],[120,-10,78,0.15534389585720776],[120,-10,79,0.1539158713191059],[120,-9,64,0.18719220746137122],[120,-9,65,0.18486291769429808],[120,-9,66,0.1825912228131953],[120,-9,67,0.1803788181136019],[120,-9,68,0.1782272956166422],[120,-9,69,0.17613813921152444],[120,-9,70,0.17411271973329145],[120,-9,71,0.17215228997588194],[120,-9,72,0.17025797964049572],[120,-9,73,0.1684307902193184],[120,-9,74,0.1666715898144463],[120,-9,75,0.16498110789222986],[120,-9,76,0.16335992997286475],[120,-9,77,0.16180849225531257],[120,-9,78,0.16032707617751585],[120,-9,79,0.15891580291192642],[120,-8,64,0.19175547534451898],[120,-8,65,0.1894608159505704],[120,-8,66,0.1872224071875096],[120,-8,67,0.18504194963171372],[120,-8,68,0.1829210419002223],[120,-8,69,0.18086117581426508],[120,-8,70,0.1788637314980407],[120,-8,71,0.17692997241280628],[120,-8,72,0.17506104032626957],[120,-8,73,0.17325795021733903],[120,-8,74,0.17152158511607307],[120,-8,75,0.16985269087904897],[120,-8,76,0.1682518708999764],[120,-8,77,0.16671958075563875],[120,-8,78,0.16525612278713164],[120,-8,79,0.1638616406164105],[120,-7,64,0.19626722304506783],[120,-7,65,0.194007237115277],[120,-7,66,0.19180215693761005],[120,-7,67,0.18965368836665253],[120,-7,68,0.18756343661346364],[120,-7,69,0.18553290143015322],[120,-7,70,0.1835634722297096],[120,-7,71,0.1816564231411376],[120,-7,72,0.17981290799989813],[120,-7,73,0.17803395527370358],[120,-7,74,0.1763204629235161],[120,-7,75,0.174673193199959],[120,-7,76,0.17309276737497536],[120,-7,77,0.1715796604088139],[120,-7,78,0.17013419555230969],[120,-7,79,0.16875653888447384],[120,-6,64,0.20073110475347233],[120,-6,65,0.19850582738780076],[120,-6,66,0.19633411048505633],[120,-6,67,0.1942176651750348],[120,-6,68,0.19215810326033145],[120,-6,69,0.1901569324219824],[120,-6,70,0.18821555136035772],[120,-6,71,0.18633524487136466],[120,-6,72,0.18451717885794994],[120,-6,73,0.1827623952769598],[120,-6,74,0.18107180702119918],[120,-6,75,0.17944619273690687],[120,-6,76,0.17788619157647512],[120,-6,77,0.17639229788649524],[120,-6,78,0.1749648558311],[120,-6,79,0.17360405395061207],[120,-5,64,0.20515118077890981],[120,-5,65,0.2029606398105599],[120,-5,66,0.20082231378723148],[120,-5,67,0.1987379191107047],[120,-5,68,0.19670907417220906],[120,-5,69,0.19473729457914246],[120,-5,70,0.19282398831704017],[120,-5,71,0.19097045084685682],[120,-5,72,0.189177860137544],[120,-5,73,0.18744727163398534],[120,-5,74,0.18577961316013336],[120,-5,75,0.1841756797575579],[120,-5,76,0.18263612845923982],[120,-5,77,0.18116147299869279],[120,-5,78,0.17975207845437657],[120,-5,79,0.17840815582942093],[120,-4,64,0.20953192928962383],[120,-4,65,0.20737614604470556],[120,-4,66,0.20527123214698817],[120,-4,67,0.20321890926692854],[120,-4,68,0.20122080238124918],[120,-4,69,0.19927843502074316],[120,-4,70,0.19739322445333063],[120,-4,71,0.19556647680242367],[120,-4,72,0.19379938210059278],[120,-4,73,0.1920930092785843],[120,-4,74,0.19044830108954391],[120,-4,75,0.18886606896864777],[120,-4,76,0.1873469878279821],[120,-4,77,0.18589159078674677],[120,-4,78,0.18450026383675333],[120,-4,79,0.18317324044323136],[120,-3,64,0.2138782581783396],[120,-3,65,0.21175724827136022],[120,-3,66,0.20968576214828727],[120,-3,67,0.20766552674501593],[120,-3,68,0.20569817362056642],[120,-3,69,0.20378523422597883],[120,-3,70,0.20192813510846275],[120,-3,71,0.20012819305085483],[120,-3,72,0.19838661014637493],[120,-3,73,0.19670446880873638],[120,-3,74,0.19508272671745963],[120,-3,75,0.19352221169859574],[120,-3,76,0.19202361654069466],[120,-3,77,0.1905874937461004],[120,-3,78,0.18921425021753946],[120,-3,79,0.1879041418800158],[120,-2,64,0.21819551705283702],[120,-2,65,0.21610929121848377],[120,-2,66,0.21407124371791553],[120,-2,67,0.21208310674945552],[120,-2,68,0.21014651845136212],[120,-2,69,0.20826301819182003],[120,-2,70,0.20643404179418456],[120,-2,71,0.2046609166975346],[120,-2,72,0.20294485705252563],[120,-2,73,0.20128695875259262],[120,-2,74,0.199688194400362],[120,-2,75,0.1981494082094668],[120,-2,76,0.19667131084161205],[120,-2,77,0.1952544741789637],[120,-2,78,0.1938993260318307],[120,-2,79,0.19260614478165594],[120,-1,64,0.22248950935146927],[120,-1,65,0.22043807431315632],[120,-1,66,0.21843347231307242],[120,-1,67,0.21647744080934916],[120,-1,68,0.21457162451676226],[120,-1,69,0.2127175707178185],[120,-1,70,0.21091672450909815],[120,-1,71,0.2091704239829063],[120,-1,72,0.20747989534422073],[120,-1,73,0.20584624796299478],[120,-1,74,0.20427046936166382],[120,-1,75,0.20275342013806064],[120,-1,76,0.2012958288235741],[120,-1,77,0.19989828667663745],[120,-1,78,0.19856124241150674],[120,-1,79,0.19728499686234757],[120,0,64,0.22676650458373915],[120,0,65,0.2247498639593849],[120,0,66,0.2227787112349311],[120,0,67,0.22085478912625822],[120,0,68,0.21897974892248118],[120,0,69,0.21715514581813355],[120,0,70,0.21538243418060765],[120,0,71,0.21366296275290297],[120,0,72,0.2119979697916744],[120,0,73,0.21038857814063017],[120,0,74,0.20883579023913934],[120,0,75,0.20734048306624164],[120,0,76,0.2059034030199065],[120,0,77,0.20452516073161786],[120,0,78,0.20320622581625047],[120,0,79,0.20194692155725547],[120,1,64,0.2310332506960382],[120,1,65,0.22905140594154794],[120,1,66,0.22711370406828968],[120,1,67,0.22522189304857088],[120,1,68,0.22337763074442574],[120,1,69,0.22158248026089855],[120,1,70,0.21983790523458124],[120,1,71,0.2181452650574599],[120,1,72,0.21650581003606018],[120,1,73,0.21492067648594493],[120,1,74,0.21339088176141718],[120,1,75,0.2119173192206295],[120,1,76,0.2105007531259412],[120,1,77,0.20914181347959904],[120,1,78,0.2078409907947142],[120,1,79,0.20659863080154306],[120,2,64,0.24382330851816708],[120,2,65,0.24194585297326265],[120,2,66,0.24010850541648587],[120,2,67,0.23831302958749567],[120,2,68,0.23656110306502998],[120,2,69,0.234854312683482],[120,2,70,0.23319414988473097],[120,2,71,0.2315820060052839],[120,2,72,0.23001916749871565],[120,2,73,0.22850681109345639],[120,2,74,0.22704599888579424],[120,2,75,0.225637673368275],[120,2,76,0.22428265239335443],[120,2,77,0.22298162407237365],[120,2,78,0.2217351416098281],[120,2,79,0.22054361807294476],[120,3,64,0.24382053756590383],[120,3,65,0.2419430955459252],[120,3,66,0.24010576198177713],[120,3,67,0.2383103006029197],[120,3,68,0.2365583889776398],[120,3,69,0.23485161392963538],[120,3,70,0.23319146688985704],[120,3,71,0.23157933918366147],[120,3,72,0.23001651725325967],[120,3,73,0.2285041778155179],[120,3,74,0.22704338295497017],[120,3,75,0.22563507515223036],[120,3,76,0.22428007224765578],[120,3,77,0.22297906234033493],[120,3,78,0.22173259862236938],[120,3,79,0.2205410941484629],[120,4,64,0.243810985102686],[120,4,65,0.24193358970796341],[120,4,66,0.24009630438140916],[120,4,67,0.23830089281732658],[120,4,68,0.23654903254797244],[120,4,69,0.2348423103601749],[120,4,70,0.23318221764721125],[120,4,71,0.23157014569599566],[120,4,72,0.23000738090956685],[120,4,73,0.22849509996492479],[120,4,74,0.2270343649060833],[120,4,75,0.22562611817252232],[120,4,76,0.2242711775628915],[120,4,77,0.2229702311340408],[120,4,78,0.22172383203534463],[120,4,79,0.22053239327833496],[120,5,64,0.24805371407844773],[120,5,65,0.2462112125238941],[120,5,66,0.24440747958732206],[120,5,67,0.24264428414356098],[120,5,68,0.24092331021990743],[120,5,69,0.23924615243391278],[120,5,70,0.2376143113664314],[120,5,71,0.23602918886998292],[120,5,72,0.23449208331241567],[120,5,73,0.23300418475592055],[120,5,74,0.23156657007126458],[120,5,75,0.23018019798742417],[120,5,76,0.22884590407647376],[120,5,77,0.2275643956738015],[120,5,78,0.22633624673362251],[120,5,79,0.2251618926198019],[120,6,64,0.2522811290428432],[120,6,65,0.25047358944917464],[120,6,66,0.24870347968828144],[120,6,67,0.24697257376033138],[120,6,68,0.24528256213095873],[120,6,69,0.24363504719026952],[120,6,70,0.2420315386471158],[120,6,71,0.24047344885868327],[120,6,72,0.23896208809538577],[120,6,73,0.2374986597411135],[120,6,74,0.23608425542870493],[120,6,75,0.23471985011082053],[120,6,76,0.23340629706607696],[120,6,77,0.232144322840512],[120,6,78,0.2309345221243485],[120,6,79,0.2297773525640746],[120,7,64,0.2564890086050156],[120,7,65,0.25471651443632437],[120,7,66,0.252980114756349],[120,7,67,0.2512815886208033],[120,7,68,0.24962263286187403],[120,7,69,0.24800485756850854],[120,7,70,0.24642978150197553],[120,7,71,0.24489882744674574],[120,7,72,0.24341331749668582],[120,7,73,0.2419744682766085],[120,7,74,0.24058338609905605],[120,7,75,0.2392410620564872],[120,7,76,0.23794836704873334],[120,7,77,0.236706046745787],[120,7,78,0.23551471648589906],[120,7,79,0.23437485610899578],[120,8,64,0.26067315246948536],[120,8,65,0.2589358010365494],[120,8,66,0.2572332129788815],[120,8,67,0.25556717232366943],[120,8,68,0.25393938218308953],[120,8,69,0.25235146025594796],[120,8,70,0.25080493426460354],[120,8,71,0.24930123732722026],[120,8,72,0.2478417032653375],[120,8,73,0.24642756184680625],[120,8,74,0.24505993396396697],[120,8,75,0.2437398267472367],[120,8,76,0.24246812861397404],[120,8,77,0.2412456042526856],[120,8,78,0.2400728895425468],[120,8,79,0.238950486408251],[120,9,64,0.26482938443687876],[120,9,65,0.26312728544379965],[120,9,66,0.26145862374471124],[120,9,67,0.2598251882402483],[120,9,68,0.258228688221538],[120,9,69,0.2566707488932773],[120,9,70,0.25515290683210434],[120,9,71,0.25367660538030695],[120,9,72,0.25224318997486306],[120,9,73,0.25085390341185443],[120,9,74,0.2495098810461338],[120,9,75,0.24821214592641172],[120,9,76,0.2469616038656316],[120,9,77,0.24575903844669544],[120,9,78,0.2446051059635167],[120,9,79,0.24350033029740858],[120,10,64,0.268953555350011],[120,10,65,0.267286829483716],[120,10,66,0.26565222067476485],[120,10,67,0.2640515225855841],[120,10,68,0.26248645057104475],[120,10,69,0.26095863722306745],[120,10,70,0.25946962785053523],[120,10,71,0.2580208758945581],[120,10,72,0.2566137382790805],[120,10,73,0.25524947069687765],[120,10,74,0.2539292228308179],[120,10,75,0.2526540335105588],[120,10,76,0.25142482580454206],[120,10,77,0.25024240204735726],[120,10,78,0.24910743880244146],[120,10,79,0.24802048176013125],[120,11,64,0.2730415459851123],[120,11,65,0.27141032354724604],[120,11,66,0.26980990459689913],[120,11,67,0.2682420874333322],[120,11,68,0.266708593346093],[120,11,69,0.2652110621812476],[120,11,70,0.26375104784293757],[120,11,71,0.26233001373030485],[120,11,72,0.26094932810977806],[120,11,73,0.2596102594227611],[120,11,74,0.2583139715286085],[120,11,75,0.25706151888304696],[120,11,76,0.2558538416519176],[120,11,77,0.25469176076029754],[120,11,78,0.2535759728769795],[120,11,79,0.25250704533431845],[120,12,64,0.27708926988830296],[120,12,65,0.2754936894690414],[120,12,66,0.27392760646506586],[120,12,67,0.27239282367453926],[120,12,68,0.2708910681790683],[120,12,69,0.2694239869316672],[120,12,70,0.267993142280069],[120,12,71,0.26660000742542517],[120,12,72,0.26524596181638543],[120,12,73,0.26393228647860156],[120,12,74,0.2626601592795386],[120,12,75,0.26143065012875216],[120,12,76,0.2602447161135054],[120,12,77,0.2591031965697886],[120,12,78,0.25800680808871534],[120,12,79,0.2569561394583051],[120,13,64,0.28109267615742245],[120,13,65,0.2795328833507389],[120,13,66,0.27800129022291103],[120,13,67,0.2764997039204246],[120,13,68,0.27502985716108874],[120,13,69,0.2735934038438448],[120,13,70,0.27219191459394776],[120,13,71,0.2708268722435596],[120,13,72,0.26949966724774876],[120,13,73,0.2682115930359359],[120,13,74,0.26696384129867384],[120,13,75,0.265757497209915],[120,13,76,0.26459353458464596],[120,13,77,0.2634728109719471],[120,13,78,0.2623960626834527],[120,13,79,0.26136389975722424],[120,14,64,0.2850477521689904],[120,14,65,0.2835238983289041],[120,14,66,0.2820269556115825],[120,14,67,0.28055873534893594],[120,14,68,0.2791209757261943],[120,14,69,0.2777153374136788],[120,14,70,0.27634339913397415],[120,14,71,0.2750066531645434],[120,14,72,0.2737065007757766],[120,14,73,0.2724442476045128],[120,14,74,0.27122109896292795],[120,14,75,0.27003815508293677],[120,14,76,0.2688964062959907],[120,14,77,0.2677967281483298],[120,14,78,0.26673987645166364],[120,14,79,0.265726482269295],[120,15,64,0.2889505262504863],[120,15,65,0.2874627672878227],[120,15,66,0.2860006409219354],[120,15,67,0.28456596249527044],[120,15,68,0.2831604754790863],[120,15,69,0.28178584712730964],[120,15,70,0.28044366406582744],[120,15,71,0.27913542781725154],[120,15,72,0.2778625502611535],[120,15,73,0.2766263490298039],[120,15,74,0.2754280428393123],[120,15,75,0.27426874675631274],[120,15,76,0.2731494674000796],[120,15,77,0.27207109808013064],[120,15,78,0.27103441386929206],[120,15,79,0.2700400666122385],[120,16,64,0.29279707029780994],[120,16,65,0.29134556551700486],[120,16,66,0.28991842569099824],[120,16,67,0.2885174699862213],[120,16,68,0.28714444696627456],[120,16,69,0.2858010302679942],[120,16,70,0.2844888142129922],[120,16,71,0.2832093093547096],[120,16,72,0.28196393796097585],[120,16,73,0.28075402943211103],[120,16,74,0.2795808156544674],[120,16,75,0.2784454262895545],[120,16,76,0.27734888399863267],[120,16,77,0.2762920996028304],[120,16,78,0.2752758671787642],[120,16,79,0.27430085908966984],[120,17,64,0.2965835023381037],[120,17,65,0.2951684133135792],[120,17,66,0.2937764333428774],[120,17,67,0.2924093852185313],[120,17,68,0.29106902239082044],[120,17,69,0.2897570246661755],[120,17,70,0.2884749938411027],[120,17,71,0.28722444927166324],[120,17,72,0.2860068233785008],[120,17,73,0.2848234570874573],[120,17,74,0.2836755952056702],[120,17,75,0.28256438173329634],[120,17,76,0.2814908551107469],[120,17,77,0.2804559434014907],[120,17,78,0.27946045941040293],[120,17,79,0.2785050957376667],[120,18,64,0.3003059890377202],[120,18,65,0.29892747852936485],[120,18,66,0.29757083377388843],[120,18,67,0.2962378809810383],[120,18,68,0.29493037827045127],[120,18,69,0.29365001139252944],[120,18,70,0.29239838938488294],[120,18,71,0.2911770401643777],[120,18,72,0.2899874060547806],[120,18,73,0.28883083925003844],[120,18,74,0.2877085972130906],[120,18,75,0.2866218380103539],[120,18,76,0.2855716155817696],[120,18,77,0.28455887494646503],[120,18,78,0.28358444734401006],[120,18,79,0.28264904531127655],[120,19,64,0.3039607481554443],[120,19,65,0.3026189790627264],[120,19,66,0.301297845882017],[120,19,67,0.29999917802071596],[120,19,68,0.2987247380391587],[120,19,69,0.2974762173940949],[120,19,70,0.2962552321177892],[120,19,71,0.2950633184327811],[120,19,72,0.29390192830229556],[120,19,73,0.29277242491634253],[120,19,74,0.2916760781134044],[120,19,75,0.2906140597378495],[120,19,76,0.2895874389329607],[120,19,77,0.28859717736963564],[120,19,78,0.28764412441073356],[120,19,79,0.28672901221107994],[120,20,64,0.307544050941057],[120,20,65,0.3062391852953014],[120,20,66,0.3049537400408036],[120,20,67,0.3036895475527078],[120,20,68,0.3024483745923722],[120,20,69,0.3012319180735837],[120,20,70,0.3000418007644558],[120,20,71,0.29887956692504525],[120,20,72,0.29774667788068077],[120,20,73,0.2966445075310383],[120,20,74,0.2955743377948678],[120,20,75,0.29453735399050185],[120,20,76,0.2935346401520432],[120,20,77,0.2925671742812818],[120,20,78,0.29163582353531897],[120,20,79,0.2907413393499096],[120,21,64,0.31105222447905234],[120,21,65,0.30978442247341276],[120,21,66,0.3085348405174584],[120,21,67,0.3073053137141544],[120,21,68,0.3060976127755116],[120,21,69,0.3049134398116707],[120,21,70,0.30375442405573766],[120,21,71,0.3026221175244043],[120,21,72,0.3015179906143449],[120,21,73,0.3004434276344274],[120,21,74,0.2993997222736413],[120,21,75,0.29838807300487485],[120,21,76,0.29740957842443533],[120,21,77,0.29646523252736556],[120,21,78,0.29555591991853536],[120,21,79,0.2946824109595152],[120,22,64,0.3144816539776075],[120,22,65,0.31325107303426003],[120,22,66,0.31203752783530614],[120,22,67,0.31084285596191996],[120,22,68,0.30966883181602234],[120,22,69,0.3085171624323683],[120,22,70,0.30738948322646026],[120,22,71,0.30628735367831555],[120,22,72,0.30521225295208676],[120,22,73,0.3041655754515647],[120,22,74,0.30314862631147504],[120,22,75,0.3021626168246917],[120,22,76,0.30120865980527006],[120,22,77,0.30028776488734665],[120,22,78,0.29940083375988596],[120,22,79,0.2985486553372832],[120,23,64,0.3178287850028892],[120,23,65,0.31663557887698396],[120,23,66,0.31545824108065096],[120,23,67,0.314298611414303],[120,23,68,0.3131584676989806],[120,23,69,0.3120395216115763],[120,23,70,0.3109434144559623],[120,23,71,0.30987171287005333],[120,23,72,0.30882590446880015],[120,23,73,0.30780739342314434],[120,23,74,0.30681749597484625],[120,23,75,0.3058574358873092],[120,23,76,0.3049283398323009],[120,23,77,0.3040312327126214],[120,23,78,0.30316703292069663],[120,23,79,0.3023365475331076],[120,24,64,0.3210901256585196],[120,24,65,0.31993444357841444],[120,24,66,0.31879348015387393],[120,24,67,0.317669077136548],[120,24,68,0.3165630154860837],[120,24,69,0.31547701122861516],[120,24,70,0.3144127112512451],[120,24,71,0.31337168903254586],[120,24,72,0.31235544030907736],[120,24,73,0.31136537867795094],[120,24,74,0.3104028311353544],[120,24,75,0.3094690335511554],[120,24,76,0.3085651260794905],[120,24,77,0.30769214850538545],[120,24,78,0.30685103552738624],[120,24,79,0.306042611976212],[120,25,64,0.3242622487102936],[120,25,65,0.3231442345536045],[120,25,66,0.3220398079648641],[120,25,67,0.3209508123702562],[120,25,68,0.31987903157812203],[120,25,69,0.3188261856608464],[120,25,70,0.31779392677282614],[120,25,71,0.31678383490455375],[120,25,72,0.3157974135728082],[120,25,73,0.31483608544698427],[120,25,74,0.3139011879114765],[120,25,75,0.3129939685642335],[120,25,76,0.3121155806513909],[120,25,77,0.311267078438026],[120,25,78,0.31044941251501884],[120,25,79,0.30966342504202554],[120,26,64,0.32734179365622956],[120,26,65,0.3262615851612251],[120,26,66,0.3251938525728601],[120,26,67,0.3241404407067735],[120,26,68,0.32310313592101664],[120,26,69,0.3220836620214595],[120,26,70,0.3210836761033819],[120,26,71,0.3201047643292775],[120,26,72,0.3191484376428652],[120,26,73,0.3182161274193382],[120,26,74,0.3173091810517687],[120,26,75,0.31642885747378047],[120,26,76,0.3155763226184001],[120,26,77,0.31475264481313103],[120,26,78,0.31395879011123184],[120,26,79,0.31319561755920633],[120,27,64,0.3303254687417819],[120,27,65,0.3292831967536544],[120,27,66,0.3282523092705335],[120,27,67,0.3272346522043873],[120,27,68,0.32623201415524566],[120,27,69,0.3252461223402513],[120,27,70,0.3242786384590016],[120,27,71,0.32333115449521105],[120,27,72,0.32240518845468835],[120,27,73,0.3215021800396553],[120,27,74,0.320623486259332],[120,27,75,0.3197703769768929],[120,27,76,0.3189440303927111],[120,27,77,0.31814552846393007],[120,27,78,0.3173758522603476],[120,27,79,0.31663587725661874],[120,28,64,0.33321005292030903],[120,28,65,0.3322058406718502],[120,28,66,0.331211942612404],[120,28,67,0.3302302054494198],[120,28,68,0.3292624197087555],[120,28,69,0.3283103156874904],[120,28,70,0.32737555934314616],[120,28,71,0.32645974811934086],[120,28,72,0.3255644067078712],[120,28,73,0.32469098274725255],[120,28,74,0.32384084245763783],[120,28,75,0.32301526621222254],[120,28,76,0.3222154440450503],[120,28,77,0.32144247109526225],[120,28,78,0.3206973429877712],[120,28,79,0.31998095115036884],[120,29,64,0.33599239775886397],[120,29,65,0.33502636018507786],[120,29,66,0.3340695883876591],[120,29,67,0.33312392956129533],[120,29,68,0.33219117583342794],[120,29,69,0.33127306024094244],[120,29,70,0.3303712526433901],[120,29,71,0.32948735557276326],[120,29,72,0.3286229000198214],[120,29,73,0.3277793411569953],[120,29,74,0.326958053997794],[120,29,75,0.32616032899281616],[120,29,76,0.32538736756228687],[120,29,77,0.3246402775651578],[120,29,78,0.3239200687047539],[120,29,79,0.3232276478709766],[120,30,64,0.3386694292891572],[120,30,65,0.3377416723753392],[120,30,66,0.3368221555372223],[120,30,67,0.33591272614141954],[120,30,68,0.3350151775849453],[120,30,69,0.334131245295894],[120,30,70,0.33326260267077945],[120,30,71,0.33241085694855804],[120,30,72,0.33157754502133124],[120,30,73,0.33076412918175446],[120,30,74,0.3299719928070801],[120,30,75,0.3292024359799331],[120,30,76,0.3284566710457404],[120,30,77,0.3277358181068538],[120,30,78,0.32704090045334966],[120,30,79,0.32637283993051186],[120,31,64,0.3412381498037732],[120,31,65,0.34034876996658403],[120,31,66,0.33946662801515287],[120,31,67,0.33859357116595873],[120,31,68,0.33773139374613925],[120,31,69,0.3368818332182625],[120,31,70,0.33604656614189776],[120,31,71,0.33522720407200585],[120,31,72,0.3344252893941475],[120,31,73,0.3336422910965329],[120,31,74,0.33287960047884496],[120,31,75,0.3321385267979296],[120,31,76,0.33142029285027846],[120,31,77,0.3307260304913422],[120,31,78,0.33005677609165585],[120,31,79,0.3294134659297866],[120,32,64,0.34369563959770244],[120,32,65,0.3428447230987716],[120,32,66,0.342000066594444],[120,32,67,0.34116351682258317],[120,32,68,0.34033686869388813],[120,32,69,0.33952186134085893],[120,32,70,0.3387201741037043],[120,32,71,0.33793342245321684],[120,32,72,0.33716315385060913],[120,32,73,0.33641084354433576],[120,32,74,0.33567789030383505],[120,32,75,0.3349656120902819],[120,32,76,0.3342752416642787],[120,32,77,0.3336079221305194],[120,32,78,0.3329647024194139],[120,32,79,0.3323465327056777],[120,33,64,0.3460390586550535],[120,33,65,0.3452266810466374],[120,33,66,0.34441961061707427],[120,33,67,0.34361969329103076],[120,33,68,0.3428287242094208],[120,33,69,0.3420484438026567],[120,33,70,0.34128053380099915],[120,33,71,0.3405266131820235],[120,33,72,0.33978823405520286],[120,33,73,0.3390668774836277],[120,33,74,0.3383639492428011],[120,33,75,0.3376807755165941],[120,33,76,0.33701859853029414],[120,33,77,0.3363785721207803],[120,33,78,0.3357617572438093],[120,33,79,0.3351691174184208],[120,34,64,0.34826564828101825],[120,34,65,0.3474918738832471],[120,34,66,0.34672247968839487],[120,34,67,0.34595931046757206],[120,34,68,0.345204161232102],[120,34,69,0.3444587733311473],[120,34,70,0.3437248304865941],[120,34,71,0.3430039547652163],[120,34,72,0.34229770248811664],[120,34,73,0.3416075600774635],[120,34,74,0.3409349398404665],[120,34,75,0.3402811756906719],[120,34,76,0.3396475188065125],[120,34,77,0.33903513322714446],[120,34,78,0.33844509138555634],[120,34,79,0.3378783695789594],[120,35,64,0.3503727326791459],[120,35,65,0.3496376140883872],[120,35,66,0.3489059753159025],[120,35,67,0.3481796596334285],[120,35,68,0.3474604615567621],[120,35,69,0.3467501229678397],[120,35,70,0.3460503291742485],[120,35,71,0.3453627049061846],[120,35,72,0.3446888102508558],[120,35,73,0.34403013652435127],[120,35,74,0.3433881020809186],[120,35,75,0.3427640480597293],[120,35,76,0.3421592340690672],[120,35,77,0.3415748338079738],[120,35,78,0.3410119306253355],[120,35,79,0.34047151301641876],[120,36,64,0.3523577204738031],[120,36,65,0.3516612981016738],[120,36,66,0.35096748249227777],[120,36,67,0.3502781150670229],[120,36,68,0.34959498947443624],[120,36,69,0.34891984773677454],[120,36,70,0.3482543763342406],[120,36,71,0.347600202226827],[120,36,72,0.3469588888137811],[120,36,73,0.3463319318307122],[120,36,74,0.3457207551842865],[120,36,75,0.3451267067245852],[120,36,76,0.34455105395506397],[120,36,77,0.3439949796801464],[120,36,78,0.3434595775904362],[120,36,79,0.34294584778555587],[120,37,64,0.35421810617788985],[120,37,65,0.35356040782044573],[120,37,66,0.3529044712227569],[120,37,67,0.35225213560012675],[120,37,68,0.35160519335659146],[120,37,69,0.3509653862561259],[120,37,70,0.3503344015316436],[120,37,71,0.3497138679318078],[120,37,72,0.3491053517056496],[120,37,73,0.34851035252501406],[120,37,74,0.34793029934478037],[120,37,75,0.34736654620092944],[120,37,76,0.346820367946399],[120,37,77,0.3462929559247584],[120,37,78,0.3457854135816878],[120,37,79,0.3452987520142686],[120,38,64,0.3559514716058529],[120,38,65,0.35533251204248684],[120,38,66,0.3547144979968818],[120,38,67,0.3540992661179574],[120,38,68,0.35348860718288244],[120,38,69,0.3528842622929365],[120,38,70,0.35228791900735973],[120,38,71,0.35170120741520694],[120,38,72,0.3511256961452047],[120,38,73,0.35056288831362753],[120,38,74,0.35001421741014566],[120,38,75,0.34948104312170974],[120,38,76,0.34896464709442104],[120,38,77,0.34846622863341287],[120,38,78,0.34798690034073043],[120,38,79,0.34752768369121717],[120,39,64,0.3575554872318918],[120,39,65,0.3569752678534708],[120,39,66,0.356395207204519],[120,39,67,0.3558171390031057],[120,39,68,0.35524285201232697],[120,39,69,0.3546740862608737],[120,39,70,0.35411252920179126],[120,39,71,0.3535598118094457],[120,39,72,0.3530175046146956],[120,39,73,0.3524871136782841],[120,39,74,0.3519700765024061],[120,39,75,0.35146775788051415],[120,39,76,0.35098144568531264],[120,39,77,0.3505123465949641],[120,39,78,0.3500615817574979],[120,39,79,0.3496301823934276],[120,40,64,0.3590279134934463],[120,40,65,0.3584864219592162],[120,40,66,0.3579443324962397],[120,40,67,0.3574034755233951],[120,40,68,0.3568656373979943],[120,40,69,0.35633255666110025],[120,40,70,0.355805920221249],[120,40,71,0.3552873594765875],[120,40,72,0.35477844637542894],[120,40,73,0.3542806894152376],[120,40,74,0.353795529580002],[120,40,75,0.35332433621605536],[120,40,76,0.35286840284629506],[120,40,77,0.352428942922827],[120,40,78,0.35200708551802123],[120,40,79,0.3516038709539872],[120,41,64,0.3603666020399058],[120,41,65,0.35986381196269634],[120,41,66,0.3593596980880007],[120,41,67,0.3588560871636048],[120,41,68,0.35835476274514244],[120,41,69,0.357857461466198],[120,41,70,0.3573658692470325],[120,41,71,0.35688161744194735],[120,41,72,0.356406278925282],[120,41,73,0.3559413641160616],[120,41,74,0.35548831694125255],[120,41,75,0.35504851073768356],[120,41,76,0.35462324409258633],[120,41,77,0.3542137366227782],[120,41,78,0.3538211246924776],[120,41,79,0.3534464570697576],[120,42,64,0.3615694969266102],[120,42,65,0.3611053675858686],[120,42,66,0.3606392200101953],[120,42,67,0.3601728769011323],[120,42,68,0.35970811861288166],[120,42,69,0.35924667944721844],[120,42,70,0.35879024388725833],[120,42,71,0.3583404427700887],[120,42,72,0.3578988493982615],[120,42,73,0.3574669755901637],[120,42,74,0.35704626766922487],[120,42,75,0.35663810239201654],[120,42,76,0.3562437828151982],[120,42,77,0.35586453410133534],[120,42,78,0.3555014992635764],[120,42,79,0.3551557348491952],[120,43,64,0.3626346357540592],[120,43,65,0.3622091118362437],[120,43,66,0.36178090730099144],[120,43,67,0.3613518404255083],[120,43,68,0.360923687959271],[120,43,69,0.3604981814437705],[120,43,70,0.36007700347134497],[120,43,71,0.3596617838831131],[120,43,72,0.35925409590600765],[120,43,73,0.3588554522289182],[120,43,74,0.35846730101791224],[120,43,75,0.35809102187058056],[120,43,76,0.35772792170946827],[120,43,77,0.3573792306146118],[120,43,78,0.35704609759517214],[120,43,79,0.35672958630017054],[120,44,64,0.3635601507523782],[120,44,65,0.3631731621182411],[120,44,66,0.36278286314400365],[120,44,67,0.3623910673018103],[120,44,68,0.3619995473299018],[120,44,69,0.36161003157719585],[120,44,70,0.3612242002872045],[120,44,71,0.36084368182129606],[120,44,72,0.360470048821301],[120,44,73,0.360104814311473],[120,44,74,0.3597494277397732],[120,44,75,0.3594052709585227],[120,44,76,0.3590736541443853],[120,44,77,0.35875581165770215],[120,44,78,0.3584528978411669],[120,44,79,0.3581659827578474],[120,45,64,0.3643442698110576],[120,45,65,0.36399573128934865],[120,45,66,0.3636432859503198],[120,45,67,0.3632887420780019],[120,45,68,0.3629338679899885],[120,45,69,0.3625803884068551],[120,45,70,0.3622299807611683],[120,45,71,0.3618842714460925],[120,45,72,0.36154483200359455],[120,45,73,0.3612131752522561],[120,45,74,0.3608907513546641],[120,45,75,0.3605789438244199],[120,45,76,0.36027906547273514],[120,45,77,0.3599923542946305],[120,45,78,0.35971996929472927],[120,45,79,0.35946298625265055],[120,46,64,0.3649853174539129],[120,46,65,0.3646751286610333],[120,46,66,0.36436047038482544],[120,46,67,0.3640431453361308],[120,46,68,0.3637249169999047],[120,46,69,0.3634075060294617],[120,46,70,0.36309258658057725],[120,46,71,0.3627817825854468],[120,46,72,0.3624766639665046],[120,46,73,0.3621787427901121],[120,46,74,0.3618894693600869],[120,46,75,0.36161022825111244],[120,46,76,0.36134233428199425],[120,46,77,0.36108702842878293],[120,46,78,0.3608454736777533],[120,46,79,0.3606187508182447],[120,47,64,0.36548171575930033],[120,47,65,0.3652097609444359],[120,47,66,0.36493280833686076],[120,47,67,0.36465265468743097],[120,47,68,0.3643710582342059],[120,47,69,0.36408973512150333],[120,47,70,0.36381035575908166],[120,47,71,0.36353454112144856],[120,47,72,0.3632638589873026],[120,47,73,0.362999820119111],[120,47,74,0.3627438743828023],[120,47,75,0.36249740680760645],[120,47,76,0.3622617335860139],[120,47,77,0.362038098013872],[120,47,78,0.36182766637060537],[120,47,79,0.3616315237395714],[120,48,64,0.36583198522559546],[120,48,65,0.3655981331408629],[120,48,66,0.3653587898352244],[120,48,67,0.36511574571133365],[120,48,68,0.36487075334414787],[120,48,69,0.36462552392476416],[120,48,70,0.36438172364466087],[120,48,71,0.3641409700203473],[120,48,72,0.36390482815842234],[120,48,73,0.36367480696104854],[120,48,74,0.3634523552718216],[120,48,75,0.36323885796206384],[120,48,76,0.36303563195751765],[120,48,77,0.36284392220545236],[120,48,78,0.36266489758217724],[120,48,79,0.3624996467409656],[120,49,64,0.3660347455819038],[120,49,65,0.3658388493770358],[120,49,66,0.36563700390748166],[120,49,67,0.3654309928383531],[120,49,68,0.3652225626636627],[120,49,69,0.36501341917490354],[120,49,70,0.3648052238703215],[120,49,71,0.3645995903048824],[120,49,72,0.3643980803809367],[120,49,73,0.3642022005795845],[120,49,74,0.3640133981327275],[120,49,75,0.3638330571358271],[120,49,76,0.363662494601353],[120,49,77,0.36350295645293246],[120,49,78,0.36335561346019085],[120,49,79,0.36322155711429277],[120,50,64,0.36608871654402575],[120,50,65,0.3659306136851288],[120,50,66,0.36576613938361036],[120,50,67,0.3655970701768732],[120,50,68,0.3654251460588196],[120,50,69,0.3652520669731254],[120,50,70,0.36507948924750344],[120,50,71,0.36490902196895847],[120,50,72,0.36474222330003414],[120,50,73,0.3645805967360563],[120,50,74,0.36442558730335894],[120,50,75,0.36427857769851263],[120,50,76,0.36414088436853836],[120,50,77,0.3640137535321172],[120,50,78,0.3638983571417888],[120,50,79,0.3637957887871447],[120,51,64,0.3659927185156755],[120,51,65,0.3658722307275889],[120,51,66,0.3657449856439768],[120,51,67,0.3656127522838337],[120,51,68,0.3654772637207724],[120,51,69,0.36534021360093405],[120,51,70,0.36520325260219555],[120,51,71,0.3650679848346697],[120,51,72,0.3649359641825023],[120,51,73,0.36480869058696974],[120,51,74,0.3646876062708636],[120,51,75,0.3645740919041818],[120,51,76,0.36446946271110775],[120,51,77,0.3643749645182917],[120,51,78,0.36429176974442345],[120,51,79,0.36422097333110426],[120,52,64,0.36574567323494034],[120,52,65,0.365662606466727],[120,52,66,0.36557243331163247],[120,52,67,0.3654769148793018],[120,52,68,0.36537777690217343],[120,52,69,0.3652767062779608],[120,52,70,0.3651753475537406],[120,52,71,0.3650752993516493],[120,52,72,0.3649781107361888],[120,52,73,0.36488527752314187],[120,52,74,0.3647982385300916],[120,52,75,0.36471837176855576],[120,52,76,0.36464699057772465],[120,52,77,0.36458533969981083],[120,52,78,0.3645345912970045],[120,52,79,0.3644958409100405],[120,53,64,0.36534660436599764],[120,53,65,0.3653007487790968],[120,53,66,0.36524747488894493],[120,53,67,0.36518853550494346],[120,53,68,0.36512564859707547],[120,53,69,0.3650604938628784],[120,53,70,0.3649947092363474],[120,53,71,0.3649298873387657],[120,53,72,0.364867571871465],[120,53,73,0.36480925395051744],[120,53,74,0.364756368383351],[120,53,75,0.3647102898873019],[120,53,76,0.36467232925008863],[120,53,77,0.3646437294322215],[120,53,78,0.3646256616113371],[120,53,79,0.36461922116846435],[120,54,64,0.3647946380360714],[120,54,65,0.3647857680146441],[120,54,66,0.3647692053385492],[120,54,67,0.3647466941263853],[120,54,68,0.3647199441643049],[120,54,69,0.3646906274973927],[120,54,70,0.36466037496330317],[120,54,71,0.36463077266815475],[120,54,72,0.36460335840468283],[120,54,73,0.3645796180126518],[120,54,74,0.36456098168152296],[120,54,75,0.36454882019538337],[120,54,76,0.3645444411201295],[120,54,77,0.3645490849329136],[120,54,78,0.3645639210938425],[120,54,79,0.3645900440599401],[120,55,64,0.36408900331764205],[120,55,65,0.3641168775006393],[120,55,66,0.3641368226086307],[120,55,67,0.3641505736794707],[120,55,68,0.36415983189431683],[120,55,69,0.3641662611933152],[120,55,70,0.3641714848338839],[120,55,71,0.3641770818915899],[120,55,72,0.3641845837036219],[120,55,73,0.3641954702548571],[120,55,74,0.3642111665065251],[120,55,75,0.364233038667466],[120,55,76,0.36426239040798203],[120,55,77,0.3643004590162878],[120,55,78,0.36434841149755265],[120,55,79,0.36440734061554],[120,56,64,0.36322903265591444],[120,56,65,0.36329339399039695],[120,56,66,0.3633496281025418],[120,56,67,0.3633994605604183],[120,56,68,0.36344458351953457],[120,56,69,0.3634866523627239],[120,56,70,0.36352728228297493],[120,56,71,0.36356804480919885],[120,56,72,0.3636104642749397],[120,56,73,0.36365601423002203],[120,56,74,0.36370611379514195],[120,56,75,0.36376212395939644],[120,56,76,0.36382534382075205],[120,56,77,0.36389700676945774],[120,56,78,0.3639782766143924],[120,56,79,0.3640702436523585],[120,57,64,0.36221416224151215],[120,57,65,0.36231473805675496],[120,57,66,0.3624070270927295],[120,57,67,0.36249274505985724],[120,57,68,0.3625735746681522],[120,57,69,0.36265116229119054],[120,57,70,0.36272711457337714],[120,57,71,0.3628029949805036],[120,57,72,0.36288032029360184],[120,57,73,0.36296055704608676],[120,57,74,0.3630451179041979],[120,57,75,0.36313535799073104],[120,57,76,0.36323257115206176],[120,57,77,0.363337986168467],[120,57,78,0.36345276290773465],[120,57,79,0.3635779884220718],[120,58,64,0.361043932328439],[120,58,65,0.3611804344303484],[120,58,66,0.36130852907900274],[120,58,67,0.36142992174076893],[120,58,68,0.36154628526142774],[120,58,69,0.3616592565540986],[120,58,70,0.36177043323082525],[120,58,71,0.36188137017781197],[120,58,72,0.36199357607431604],[120,58,73,0.3621085098551921],[120,58,74,0.3622275771170954],[120,58,75,0.36235212646833515],[120,58,76,0.36248344582238273],[120,58,77,0.3626227586350369],[120,58,78,0.36277122008523965],[120,58,79,0.36292991319955076],[120,59,64,0.3597179874972957],[120,59,65,0.35989011228266976],[120,59,66,0.36005374809113727],[120,59,67,0.36021058976033243],[120,59,68,0.36036229985446244],[120,59,69,0.36051050537605167],[120,59,70,0.3606567944217152],[120,59,71,0.3608027127819526],[120,59,72,0.3609497604849673],[120,59,73,0.3610993882845035],[120,59,74,0.36125299409171546],[120,59,75,0.36141191935105166],[120,59,76,0.3615774453601648],[120,59,77,0.36175078953384665],[120,59,78,0.3619331016119828],[120,59,79,0.3621254598115346],[120,60,64,0.3582360768637148],[120,60,65,0.35844350545387793],[120,60,66,0.3586424029357763],[120,60,67,0.3588344531356325],[120,60,68,0.3590213079204312],[120,60,69,0.35920458393333443],[120,60,70,0.35938585927350497],[120,60,71,0.3595666701203264],[120,60,72,0.3597485073020231],[120,60,73,0.3599328128086772],[120,60,74,0.36012097624965256],[120,60,75,0.3603143312554107],[120,60,76,0.3605141518237285],[120,60,77,0.36072164861031825],[120,60,78,0.36093796516384324],[120,60,79,0.3611641741053375],[120,61,64,0.3565980542320706],[120,61,65,0.35684045262541275],[120,61,66,0.35707431738768547],[120,61,67,0.3573013209532888],[120,61,68,0.35752310407831456],[120,61,69,0.35774127259947797],[120,61,70,0.3579573941378409],[120,61,71,0.35817299474731523],[120,61,72,0.358389555507953],[120,61,73,0.3586085090640132],[120,61,74,0.3588312361068242],[120,61,75,0.3590590618024196],[120,61,76,0.3592932521639602],[120,61,77,0.35953501036894275],[120,61,78,0.3597854730211887],[120,61,79,0.36004570635762084],[120,62,64,0.3548038781944485],[120,62,65,0.3550808974373971],[120,62,66,0.35534942032534367],[120,62,67,0.3556111075229855],[120,62,68,0.35586758826411813],[120,62,69,0.3561204571339148],[120,62,70,0.35637127079639064],[120,62,71,0.3566215446670401],[120,62,72,0.3568727495306499],[120,62,73,0.35712630810428203],[120,62,74,0.35738359154544425],[120,62,75,0.35764591590542394],[120,62,76,0.3579145385278011],[120,62,77,0.3581906543921395],[120,62,78,0.35847539240284854],[120,62,79,0.3587698116232259],[120,63,64,0.3528536121748159],[120,63,65,0.35316488855077466],[120,63,66,0.3534677458108179],[120,63,67,0.353763832474855],[120,63,68,0.35405476584552986],[120,63,69,0.35434212881367333],[120,63,70,0.3546274666093405],[120,63,71,0.3549122834984182],[120,63,72,0.3551980394248093],[120,63,73,0.35548614659818356],[120,63,74,0.3557779660273178],[120,63,75,0.35607480399899594],[120,63,76,0.3563779085024884],[120,63,77,0.356688465599608],[120,63,78,0.35700759574033586],[120,63,79,0.3573363500240274],[120,64,64,0.3507474244184915],[120,64,65,0.3510925796542723],[120,64,66,0.3514294331140117],[120,64,67,0.35175962080079753],[120,64,68,0.35208474768009723],[120,64,69,0.35240638450819717],[120,64,70,0.3527260646066334],[120,64,71,0.3530452805826002],[120,64,72,0.3533654809953405],[120,64,73,0.35368806696850813],[120,64,74,0.35401438874852836],[120,64,75,0.3543457422089222],[120,64,76,0.35468336530061667],[120,64,77,0.3550284344482382],[120,64,78,0.3553820608923824],[120,64,79,0.35574528697786983],[120,65,64,0.3484855879268319],[120,65,65,0.3488642294161122],[120,65,66,0.3492347266812109],[120,65,67,0.34959870283966854],[120,65,68,0.3499577501168581],[120,65,69,0.35031342669721643],[120,65,70,0.3506672535218815],[120,65,71,0.351020711032719],[120,65,72,0.3513752358627466],[120,65,73,0.3517322174729406],[120,65,74,0.35209299473545763],[120,65,75,0.3524588524632297],[120,65,76,0.35283101788596194],[120,65,77,0.353210657072524],[120,65,78,0.3535988712997333],[120,65,79,0.3539966933675359],[120,66,64,0.3460684803372045],[120,66,65,0.346480201380541],[120,66,66,0.34688397604799515],[120,66,67,0.34728141420639425],[120,66,68,0.3476740949414817],[120,66,69,0.34806356343173567],[120,66,70,0.3484513277690142],[120,66,71,0.34883885572601186],[120,66,72,0.3492275714705321],[120,66,73,0.3496188522265639],[120,66,74,0.3500140248821927],[120,66,75,0.3504143625443065],[120,66,76,0.3508210810401228],[120,66,77,0.35123533536553175],[120,66,78,0.35165821608025005],[120,66,79,0.3520907456497941],[120,67,64,0.34349658374814607],[120,67,65,0.34394096380907235],[120,67,66,0.34437763569641155],[120,67,67,0.3448081956649204],[120,67,68,0.34523420926483095],[120,67,69,0.34565720823804236],[120,67,70,0.3460786873615686],[120,67,71,0.3465001012382229],[120,67,72,0.3469228610345475],[120,67,73,0.3473483311659715],[120,67,74,0.3477778259292348],[120,67,75,0.34821260608202925],[120,67,76,0.3486538753698922],[120,67,77,0.34910277700034076],[120,67,78,0.3495603900642452],[120,67,79,0.35002772590444825],[120,68,64,0.3407704844898236],[120,68,65,0.3412470894665654],[120,68,66,0.3417162648565325],[120,68,67,0.34217959294510797],[120,68,68,0.3426386253550525],[120,68,69,0.343094879964848],[120,68,70,0.34354983777473036],[120,68,71,0.34400493972039425],[120,68,72,0.3444615834343753],[120,68,73,0.344921119955096],[120,68,74,0.3453848503836104],[120,68,75,0.34585402248800146],[120,68,76,0.34632982725546235],[120,68,77,0.34681339539205475],[120,68,78,0.34730579377013837],[120,68,79,0.347808021823482],[120,69,64,0.3378908728397543],[120,69,65,0.3383992553520893],[120,69,66,0.33890052725234754],[120,69,67,0.3393962565035302],[120,69,68,0.33988798041315504],[120,69,69,0.34037720257351733],[120,69,70,0.3408653897500852],[120,69,71,0.34135396871800366],[120,69,72,0.3418443230467202],[120,69,73,0.3423377898327104],[120,69,74,0.3428356563803476],[120,69,75,0.343339156830861],[120,69,76,0.34384946873942174],[120,69,77,0.34436770960034474],[120,69,78,0.3448949333204028],[120,69,79,0.34543212664026257],[120,70,64,0.33485854268370085],[120,70,65,0.33539824237449634],[120,70,66,0.33593119079191247],[120,70,67,0.33645894122809583],[120,70,68,0.336983016291997],[120,70,69,0.33750490487131213],[120,70,70,0.3380260590430029],[120,70,71,0.33854789093237575],[120,70,72,0.3390717695207267],[120,70,73,0.3395990174015344],[120,70,74,0.34013090748524444],[120,70,75,0.3406686596525881],[120,70,76,0.3412134373564766],[120,70,77,0.34176634417245777],[120,70,78,0.3423284202977319],[120,70,79,0.34290063899873713],[120,71,64,0.3316743911218848],[120,71,65,0.33224493497284063],[120,71,66,0.33280912720189326],[120,71,67,0.3333685060866295],[120,71,68,0.3339245791588179],[120,71,69,0.33447882018777814],[120,71,70,0.33503266611278704],[120,71,71,0.33558751392449315],[120,71,72,0.3361447174953527],[120,71,73,0.33670558435906456],[120,71,74,0.3372713724390529],[120,71,75,0.33784328672593444],[120,71,76,0.33842247590401575],[120,71,77,0.33901002892680604],[120,71,78,0.33960697154154207],[120,71,79,0.34021426276273625],[120,72,64,0.32833941802045485],[120,72,65,0.3289403206815842],[120,72,66,0.3295353116064436],[120,72,67,0.3301259137193565],[120,72,68,0.33071361910125446],[120,72,69,0.33129988599422183],[120,72,70,0.33188613575553194],[120,72,71,0.33247374976115485],[120,72,72,0.33306406625874396],[120,72,73,0.3336583771700806],[120,72,74,0.3342579248430273],[120,72,75,0.3348638987529229],[120,72,76,0.33547743215346915],[120,72,77,0.33609959867708983],[120,72,78,0.3367314088847635],[120,72,79,0.3373738067653372],[120,73,64,0.32485472550812283],[120,73,65,0.32548548964049917],[120,73,66,0.3261108220503305],[120,73,67,0.32673222997519813],[120,73,68,0.32735118967675747],[120,73,69,0.3279691434661879],[120,73,70,0.3285874966796031],[120,73,71,0.32920761460339554],[120,73,72,0.3298308193495274],[120,73,73,0.33045838668074223],[120,73,74,0.3310915427857527],[120,73,75,0.3317314610043347],[120,73,76,0.33237925850237743],[120,73,77,0.33303599289687247],[120,73,78,0.333702658830841],[120,73,79,0.33438018449820706],[120,74,64,0.3212215174181253],[120,74,65,0.32188163404942816],[120,74,66,0.3225368389664623],[120,74,67,0.32318862339204],[120,74,68,0.32383844740556067],[120,74,69,0.3244877369890935],[120,74,70,0.3251378810238924],[120,74,71,0.3257902282373171],[120,74,72,0.32644608410016945],[120,74,73,0.3271067076744233],[120,74,74,0.32777330841140184],[120,74,75,0.32844704290033044],[120,74,76,0.32912901156731844],[120,74,77,0.32982025532474946],[120,74,78,0.3305217521710815],[120,74,79,0.3312344137410657],[120,75,64,0.3174410986754448],[120,75,65,0.31813004756783153],[120,75,66,0.3188146445877549],[120,75,67,0.319496364620901],[120,75,68,0.32017665120713823],[120,75,69,0.320856913606951],[120,75,70,0.321538523818784],[120,75,71,0.3222228135472676],[120,75,72,0.3229110711223378],[120,75,73,0.3236045383692222],[120,75,74,0.3243044074293553],[120,75,75,0.3250118175321414],[120,75,76,0.3257278517176255],[120,75,77,0.3264535335100489],[120,75,78,0.3271898235422914],[120,75,79,0.3279376161312078],[120,76,64,0.3135148746291818],[120,76,65,0.3142321246590185],[120,76,66,0.3149456223032297],[120,76,67,0.31565682579390386],[120,76,68,0.3163671617800473],[120,76,69,0.3170780224140807],[120,76,70,0.31779076238972787],[120,76,71,0.31850669593126874],[120,76,72,0.31922709373416724],[120,76,73,0.3199531798570493],[120,76,74,0.32068612856509066],[120,76,75,0.3214270611247363],[120,76,76,0.3221770425498067],[120,76,77,0.3229370782989751],[120,76,78,0.3237081109246094],[120,76,79,0.3244910166729936],[120,77,64,0.3094443503302694],[120,77,65,0.3101893598792491],[120,77,66,0.31093125595853033],[120,77,67,0.31167147983622867],[120,77,68,0.3124114409253378],[120,77,69,0.313152513889991],[120,77,70,0.3138960357036039],[120,77,71,0.3146433026588676],[120,77,72,0.31539556732960544],[120,77,73,0.3161540354844653],[120,77,74,0.3169198629525116],[120,77,75,0.3176941524406339],[120,77,76,0.31847795030283166],[120,77,77,0.31927224326135495],[120,77,78,0.32007795507970016],[120,77,79,0.3208959431874706],[120,78,64,0.30523112975444233],[120,78,65,0.30600334711162214],[120,78,66,0.3067731291007732],[120,78,67,0.3075418997219679],[120,78,68,0.3083110508134481],[120,78,69,0.3090819391773483],[120,78,70,0.30985588365779265],[120,78,71,0.3106341621713361],[120,78,72,0.31141800868975966],[120,78,73,0.3122086101751945],[120,78,74,0.3130071034676396],[120,78,75,0.3138145721247858],[120,78,76,0.31463204321421023],[120,78,77,0.31546048405791915],[120,78,78,0.3163007989292371],[120,78,79,0.3171538257020545],[120,79,64,0.30087691497034985],[120,79,65,0.3016757787446364],[120,79,66,0.30247292416762167],[120,79,67,0.3032697576737715],[120,79,68,0.30406765319447615],[120,79,69,0.3048679493029236],[120,79,70,0.30567194631184635],[120,79,71,0.30648090332410677],[120,79,72,0.3072960352361376],[120,79,73,0.30811850969420485],[120,79,74,0.30894944400356494],[120,79,75,0.30978990199042333],[120,79,76,0.3106408908167619],[120,79,77,0.31150335774801136],[120,79,78,0.31237818687356844],[120,79,79,0.31326619578016784],[120,80,64,0.2963835052530197],[120,80,65,0.2972084447956339],[120,80,66,0.29803242162078836],[120,80,67,0.2988568243064862],[120,80,68,0.29968300855202823],[120,80,69,0.3005122943417211],[120,80,70,0.3013459630619586],[120,80,71,0.30218525457164586],[120,80,72,0.3030313642259789],[120,80,73,0.30388543985354954],[120,80,74,0.3047485786868469],[120,80,75,0.30562182424606177],[120,80,76,0.3065061631762619],[120,80,77,0.30740252203791485],[120,80,78,0.3083117640507571],[120,80,79,0.30923468579102065],[120,81,64,0.2917527961425775],[120,81,65,0.2926032319790273],[120,81,66,0.2934534990238723],[120,81,67,0.29430496771469555],[120,81,68,0.2951589752005537],[120,81,69,0.29601682252419165],[120,81,70,0.29687977175814206],[120,81,71,0.2977490430946709],[120,81,72,0.2986258118895872],[120,81,73,0.299511205659883],[120,81,74,0.3004063010352782],[120,81,75,0.30131212066357355],[120,81,76,0.3022296300698814],[120,81,77,0.3031597344697111],[120,81,78,0.3041032755359068],[120,81,79,0.3050610281194495],[120,82,64,0.28698677844809867],[120,82,65,0.28786212271919326],[120,82,66,0.28873813006440757],[120,82,67,0.2896161525040405],[120,82,68,0.2904975083260438],[120,82,69,0.2913834792864171],[120,82,70,0.29227530776399513],[120,82,71,0.2931741938695969],[120,82,72,0.29408129250954607],[120,82,73,0.2949977104035333],[120,82,74,0.2959245030568963],[120,82,75,0.2968626716872165],[120,82,76,0.29781316010530556],[120,82,77,0.29877685155055766],[120,82,78,0.29975456548066415],[120,82,79,0.300747054315705],[120,83,64,0.282087537196823],[120,83,65,0.28298719410825435],[120,83,66,0.2838883835203526],[120,83,67,0.28479243876654353],[120,83,68,0.285700658970321],[120,83,69,0.28661430626348294],[120,83,70,0.2875346029592787],[120,83,71,0.2884627286804289],[120,83,72,0.289399817442036],[120,83,73,0.29034695468934746],[120,83,74,0.2913051742904561],[120,83,75,0.2922754554838286],[120,83,76,0.29325871978074064],[120,83,77,0.2942558278225925],[120,83,78,0.29526757619310223],[120,83,79,0.29629469418539],[120,84,64,0.2770572505286234],[120,84,65,0.2779806168086495],[120,84,66,0.2789064221709127],[120,84,67,0.2798359809998353],[120,84,68,0.2807705729588107],[120,84,69,0.2817114402259402],[120,84,70,0.2826597846852],[120,84,71,0.2836167650730001],[120,84,72,0.28458349408015227],[120,84,73,0.28556103540921035],[120,84,74,0.2865504007872661],[120,84,75,0.287552546934093],[120,84,76,0.28856837248571443],[120,84,77,0.2895987148733724],[120,84,78,0.29064434715789245],[120,84,79,0.2917059748194589],[120,85,64,0.27189818853559833],[120,85,65,0.27284465390035517],[120,85,66,0.2737945016515647],[120,85,67,0.2747490269701487],[120,85,68,0.2757094897716703],[120,85,69,0.2766771119592235],[120,85,70,0.27765307463227573],[120,85,71,0.27863851525142647],[120,85,72,0.2796345247590959],[120,85,73,0.28064214465610926],[120,85,74,0.2816623640342609],[120,85,75,0.28269611656474636],[120,85,76,0.2837442774425437],[120,85,77,0.2848076602867172],[120,85,78,0.2858870139966403],[120,85,79,0.28698301956415156],[120,86,64,0.26661271204703485],[120,86,65,0.2675816596730103],[120,86,66,0.2685549692535316],[120,86,67,0.2695339165193297],[120,86,68,0.27051974135851575],[120,86,69,0.27151364508627074],[120,86,70,0.27251678767101484],[120,86,71,0.27353028491701953],[120,86,72,0.2745552056034757],[120,86,73,0.2755925685799827],[120,86,74,0.2766433398185455],[120,86,75,0.27770842942196466],[120,86,76,0.2787886885887018],[120,86,77,0.2798849065341943],[120,86,78,0.2809978073686148],[120,86,79,0.2821280469310913],[120,87,64,0.2612032713596286],[120,87,65,0.2621940783628253],[120,87,66,0.26319026266759116],[120,87,67,0.26419308031574834],[120,87,68,0.26520375089663384],[120,87,69,0.26622345483323023],[120,87,70,0.2672533306253091],[120,87,71,0.26829447204954426],[120,87,72,0.26934792531661206],[120,87,73,0.27041468618524167],[120,87,74,0.2714956970333038],[120,87,75,0.2725918438858198],[120,87,76,0.2737039533999796],[120,87,77,0.2748327898071337],[120,87,78,0.27597905181176396],[120,87,79,0.277143369447442],[120,88,64,0.2556724049128151],[120,88,65,0.25668444283413594],[120,88,66,0.2577029086720767],[120,88,67,0.2587290385489691],[120,88,68,0.25976403149253846],[120,88,69,0.26080904673811556],[120,88,70,0.26186520098839267],[120,88,71,0.26293356563068354],[120,88,72,0.264015163911703],[120,88,73,0.26511096806982815],[120,88,74,0.26622189642493155],[120,88,75,0.26734881042566827],[120,88,76,0.26849251165430216],[120,88,77,0.2696537387890421],[120,88,78,0.2708331645238866],[120,88,79,0.27203139244599117],[120,89,64,0.25002273790950014],[120,89,65,0.2510553732058831],[120,89,66,0.2520955217653534],[120,89,67,0.2531443995684624],[120,89,68,0.2542031848271532],[120,89,69,0.2552730153026866],[120,89,70,0.25635498558164654],[120,89,71,0.257450144309986],[120,89,72,0.2585594913851278],[120,89,73,0.2596839751060812],[120,89,74,0.2608244892816695],[120,89,75,0.2619818702967437],[120,89,76,0.2631568941364729],[120,89,77,0.2643502733686799],[120,89,78,0.26556265408422025],[120,89,79,0.2667946127954209],[120,90,64,0.24425698088194656],[120,90,65,0.24530957542278292],[120,90,66,0.24637080274253217],[120,90,67,0.24744185846612074],[120,90,68,0.24852389974438147],[120,90,69,0.24961804258732298],[120,90,70,0.2507253591560172],[120,90,71,0.25184687501306513],[120,90,72,0.25298356633165686],[120,90,73,0.25413635706318416],[120,90,74,0.2553061160635043],[120,90,75,0.2564936541777272],[120,90,76,0.25769972128361696],[120,90,77,0.2589250032935789],[120,90,78,0.26017011911522686],[120,90,79,0.2614356175705485],[120,91,64,0.23837792820300965],[120,91,65,0.23944983977137171],[120,91,66,0.2405315372166072],[120,91,67,0.2416241956027648],[120,91,68,0.24272895078325227],[120,91,69,0.24384689674907414],[120,91,70,0.24497908293623014],[120,91,71,0.24612651149223091],[120,91,72,0.24729013450175058],[120,91,73,0.2484708511713709],[120,91,74,0.2496695049735197],[120,91,75,0.25088688074947074],[120,91,76,0.252123701771502],[120,91,77,0.2533806267641773],[120,91,78,0.2546582468847501],[120,91,79,0.2559570826627081],[120,92,64,0.23238845654245413],[120,92,65,0.2334790393406668],[120,92,66,0.23458059408375817],[120,92,67,0.23569427507838112],[120,92,68,0.2368211966533816],[120,92,69,0.23796243052262805],[120,92,70,0.23911900310754367],[120,92,71,0.24029189281930055],[120,92,72,0.24148202730069218],[120,92,73,0.24269028062764117],[120,92,74,0.24391747047044565],[120,92,75,0.24516435521462887],[120,92,76,0.24643163104149002],[120,92,77,0.2477199289683224],[120,92,78,0.2490298118482976],[120,92,79,0.25036177133003124],[120,93,64,0.2262915232686689],[120,93,65,0.2274001284277524],[120,93,66,0.22852092393312565],[120,93,67,0.22965504314639837],[120,93,68,0.23080357865405743],[120,93,69,0.2319675796445053],[120,93,70,0.2331480492453483],[120,93,71,0.2343459418208914],[120,93,72,0.23556216022985682],[120,93,73,0.23679755304328243],[120,93,74,0.23805291172270487],[120,93,75,0.23932896775849022],[120,93,76,0.24062638976841166],[120,93,77,0.24194578055643973],[120,93,78,0.24328767413174263],[120,93,79,0.2446525326879156],[120,94,64,0.220090164795634],[120,94,65,0.22121614088814903],[120,94,66,0.22235555740091756],[120,94,67,0.22350952657186282],[120,94,68,0.22467911903680757],[120,94,69,0.22586536122033868],[120,94,70,0.22706923268746984],[120,94,71,0.22829166345605584],[120,94,72,0.22953353126997966],[120,94,73,0.23079565883306424],[120,94,74,0.23207881100381894],[120,94,75,0.23338369195087783],[120,94,76,0.23471094226923328],[120,94,77,0.23606113605722895],[120,94,78,0.23743477795431034],[120,94,79,0.2388323001395501],[120,95,64,0.21378749487498086],[120,95,65,0.2149301884308066],[120,95,66,0.2160876034686899],[120,95,67,0.21726083093335286],[120,95,68,0.21845091931129154],[120,95,69,0.21965887203508017],[120,95,70,0.22088564484902268],[120,95,71,0.22213214313610463],[120,95,72,0.22339921920626582],[120,95,73,0.22468766954594743],[120,95,74,0.22599823202902164],[120,95,75,0.22733158308896245],[120,95,76,0.22868833485235907],[120,95,77,0.23006903223373892],[120,95,78,0.2314741499916967],[120,95,79,0.23290408974634585],[120,96,64,0.2073867028334544],[120,96,65,0.20854545885802966],[120,96,66,0.2097202477061056],[120,96,67,0.2109121388689394],[120,96,68,0.21212215849482324],[120,96,69,0.21335128680643917],[120,96,70,0.21460045548011275],[120,96,71,0.21587054498691627],[120,96,72,0.21716238189564363],[120,96,73,0.21847673613760815],[120,96,74,0.21981431823337533],[120,96,75,0.22117577648128445],[120,96,76,0.22256169410786503],[120,96,77,0.22397258638011142],[120,96,78,0.22540889767961353],[120,96,79,0.22687099853856163],[120,97,64,0.20089105175563018],[120,97,65,0.20206521425018723],[120,97,66,0.203256750458028],[120,97,67,0.2044667082660468],[120,97,68,0.20569609130537742],[120,97,69,0.20694585638140828],[120,97,70,0.20821691086624827],[120,97,71,0.20951011005359393],[120,97,72,0.21082625447601833],[120,97,73,0.2121660871846351],[120,97,74,0.21353029099124882],[120,97,75,0.21491948567284508],[120,97,76,0.21633422513852618],[120,97,77,0.21777499455885735],[120,97,78,0.21924220745761958],[120,97,79,0.22073620276598832],[120,98,64,0.1943038766117155],[120,98,65,0.19549278909503776],[120,98,66,0.19670044497577727],[120,98,67,0.1979278703950434],[120,98,68,0.19917604629791158],[120,98,69,0.20044590587570682],[120,98,70,0.20173833197128965],[120,98,71,0.20305415444729724],[120,98,72,0.20439414751735785],[120,98,73,0.20575902704023197],[120,98,74,0.2071494477769935],[120,98,75,0.2085660006111012],[120,98,76,0.21000920973146914],[120,98,77,0.2114795297784997],[120,98,78,0.21297734295307524],[120,98,79,0.21450295608852832],[120,99,64,0.18762858233076124],[120,99,65,0.18883158836199432],[120,99,66,0.19005473549287483],[120,99,67,0.19129902798688664],[120,99,68,0.19256542394432685],[120,99,69,0.1938548327564651],[120,99,70,0.19516811252325839],[120,99,71,0.19650606743457255],[120,99,72,0.19786944511493154],[120,99,73,0.19925893393174499],[120,99,74,0.20067516026713045],[120,99,75,0.20211868575317798],[120,99,76,0.20359000447076642],[120,99,77,0.20508954011189595],[120,99,78,0.2066176431055317],[120,99,79,0.20817458770697944],[120,100,64,0.18086864181912699],[120,100,65,0.1820850855211738],[120,100,66,0.1833230952451227],[120,100,67,0.18458365325466874],[120,100,68,0.1858676946569116],[120,100,69,0.18717610486799452],[120,100,70,0.18850971704285374],[120,100,71,0.18986930946902753],[120,100,72,0.19125560292454763],[120,100,73,0.19266925799986062],[120,100,74,0.19411087238389974],[120,100,75,0.19558097811415032],[120,100,76,0.19708003879082236],[120,100,77,0.19860844675509154],[120,100,78,0.2001665202314058],[120,100,79,0.201754500433877],[120,101,64,0.1740275939240245],[120,101,65,0.17525682050705466],[120,101,66,0.17650906443483572],[120,101,67,0.1777852858588838],[120,101,68,0.17908639675509508],[120,101,69,0.1804132584004695],[120,101,70,0.18176667881449982],[120,101,71,0.18314741016517483],[120,101,72,0.1845561461396168],[120,101,73,0.1859935192793044],[120,101,74,0.18746009827999915],[120,101,75,0.18895638525621994],[120,101,76,0.19048281297037767],[120,101,77,0.19203974202653257],[120,101,78,0.1936274580287713],[120,101,79,0.19524616870422284],[120,102,64,0.167109041342478],[120,102,65,0.16835039762708137],[120,102,66,0.16961624813957282],[120,102,67,0.17090753081675836],[120,102,68,0.17222513437584513],[120,102,69,0.17356989580185572],[120,102,70,0.17494259780026117],[120,102,71,0.1763439662147812],[120,102,72,0.17777466741037495],[120,102,73,0.17923530562136852],[120,102,74,0.1807264202648423],[120,102,75,0.18224848321911852],[120,102,76,0.18380189606746306],[120,102,77,0.185386987306966],[120,102,78,0.18700400952259227],[120,102,79,0.18865313652642796],[120,103,64,0.1601166484755383],[120,103,65,0.16136948341505358],[120,103,66,0.16264831416519887],[120,103,67,0.16395405635547916],[120,103,68,0.16528757532755],[120,103,69,0.16664968363292643],[120,103,70,0.16804113849646352],[120,103,71,0.1694626392455602],[120,103,72,0.17091482470510505],[120,103,73,0.1723982705581134],[120,103,74,0.17391348667217904],[120,103,75,0.17546091439157824],[120,103,76,0.17704092379514402],[120,103,77,0.17865381091986987],[120,103,78,0.18029979495024034],[120,103,79,0.1819790153733104],[120,104,64,0.1530541392275685],[120,104,65,0.1543178044291164],[120,104,66,0.15560899084309748],[120,104,67,0.1569285917091403],[120,104,68,0.15827744888720302],[120,104,69,0.15965635036518105],[120,104,70,0.1610660277328405],[120,104,71,0.16250715362202856],[120,104,72,0.16398033911317839],[120,104,73,0.16548613110805988],[120,104,74,0.16702500966889705],[120,104,75,0.16859738532369334],[120,104,76,0.1702035963378779],[120,104,77,0.17184390595223692],[120,104,78,0.173518499587125],[120,104,79,0.17522748201297672],[120,105,64,0.14592529475095295],[120,105,65,0.1471991449947046],[120,105,66,0.14850206477188527],[120,105,67,0.14983492485975652],[120,105,68,0.15119854354123813],[120,105,69,0.15259368412202023],[120,105,70,0.15402105241455416],[120,105,71,0.15548129418887363],[120,105,72,0.15697499259026215],[120,105,73,0.15850266552372022],[120,105,74,0.16006476300535194],[120,105,75,0.16166166448051222],[120,105,76,0.163293676108827],[120,105,77,0.164961028016053],[120,105,78,0.16666387151276868],[120,105,79,0.1684022762799206],[120,106,64,0.13873395113605924],[120,106,65,0.14001734489227052],[120,106,66,0.14133137850345856],[120,106,67,0.14267690022217538],[120,106,68,0.1440547046698486],[120,106,69,0.14546553036300414],[120,106,70,0.14691005720692046],[120,106,71,0.1483889039566637],[120,106,72,0.14990262564552398],[120,106,73,0.1514517109807994],[120,106,74,0.15303657970705636],[120,106,75,0.15465757993669782],[120,106,76,0.15631498544796052],[120,106,77,0.15800899295030163],[120,106,78,0.15973971931716885],[120,106,79,0.16150719878617864],[120,107,64,0.13148399704626734],[120,107,65,0.13277629698960808],[120,107,66,0.13410082817318464],[120,107,67,0.1354584162727019],[120,107,68,0.13684983217460345],[120,107,69,0.13827578951101221],[120,107,70,0.13973694216265525],[120,107,71,0.1412338817297178],[120,107,72,0.14276713497065258],[120,107,73,0.14433716120888462],[120,107,74,0.1459443497075471],[120,107,75,0.1475890170120724],[120,107,76,0.14927140426076657],[120,107,77,0.15099167446332173],[120,107,78,0.15274990974726427],[120,107,79,0.15454610857236245],[120,108,64,0.12417937129842577],[120,108,65,0.12547994481913594],[120,108,66,0.1268143610746011],[120,108,67,0.12818342312179637],[120,108,68,0.12958787804972005],[120,108,69,0.13102841452266095],[120,108,70,0.13250566029199945],[120,108,71,0.1340201796764907],[120,108,72,0.13557247101104802],[120,108,73,0.13716296406397677],[120,108,74,0.1387920174227843],[120,108,75,0.14045991584839984],[120,108,76,0.14216686759792213],[120,108,77,0.14391300171585997],[120,108,78,0.14569836529385488],[120,108,79,0.1475229206989146],[120,109,64,0.11682406038856413],[120,109,65,0.11813228009996468],[120,109,66,0.11947597317844544],[120,109,67,0.1208559200306702],[120,109,68,0.12227284389682153],[120,109,69,0.12372740840180768],[120,109,70,0.1252202150755507],[120,109,71,0.12675180084230198],[120,109,72,0.12832263547901235],[120,109,73,0.1299331190426936],[120,109,74,0.13158357926691244],[120,109,75,0.13327426892723543],[120,109,76,0.13500536317575534],[120,109,77,0.13677695684465546],[120,109,78,0.13858906171880664],[120,109,79,0.1404416037774217],[120,110,64,0.10942209596266239],[120,110,65,0.11073734020455422],[120,110,66,0.11208970659582729],[120,110,67,0.11347995287158857],[120,110,68,0.11490877838298275],[120,110,69,0.11637682165594876],[120,110,70,0.11788465791960673],[120,110,71,0.11943279660421796],[120,110,72,0.12102167880874565],[120,110,73,0.1226516747379548],[120,110,74,0.12432308110919049],[120,110,75,0.12603611852865432],[120,110,76,0.1277909288373087],[120,110,77,0.12958757242636565],[120,110,78,0.13142602552235494],[120,110,79,0.13330617744179762],[120,111,64,0.10197755223285809],[120,111,65,0.10329920557033684],[120,111,66,0.10465964698591002],[120,111,67,0.1060596115322528],[120,111,68,0.10749977464244259],[120,111,69,0.10898074969588228],[120,111,70,0.11050308555439792],[120,111,71,0.11206726406845569],[120,111,72,0.11367369755352341],[120,111,73,0.11532272623651535],[120,111,74,0.11701461567246263],[120,111,75,0.11874955413122384],[120,111,76,0.12052764995436988],[120,111,77,0.12234892888219795],[120,111,78,0.12421333135086904],[120,111,79,0.12612070975969675],[120,112,64,0.09449454333890367],[120,112,65,0.09582199705612154],[120,112,66,0.09718992090792555],[120,112,67,0.09859902726407827],[120,112,68,0.10004996762179569],[120,112,69,0.10154333017845496],[120,112,70,0.10307963737502013],[120,112,71,0.10465934341012895],[120,112,72,0.10628283172486713],[120,112,73,0.10795041245816928],[120,112,74,0.10966231987298714],[120,112,75,0.1114187097530413],[120,112,76,0.11321965677029006],[120,112,77,0.11506515182306898],[120,112,78,0.11695509934489823],[120,112,79,0.11888931458398277],[120,113,64,0.08697722065468244],[120,113,65,0.08830987324308714],[120,113,66,0.08968469311732502],[120,113,67,0.0911023699741777],[120,113,68,0.09256353136847345],[120,113,69,0.09406874029220103],[120,113,70,0.09561849272488177],[120,113,71,0.09721321515514386],[120,113,72,0.09885326207352285],[120,113,73,0.10053891343643129],[120,113,74,0.10227037210143364],[120,113,75,0.10404776123364823],[120,113,76,0.10587112168340274],[120,113,77,0.10774040933510393],[120,113,78,0.1096554924273152],[120,113,79,0.1116161488440649],[120,114,64,0.07942977004018381],[120,114,65,0.08076702768076516],[120,114,66,0.0821481638064675],[120,114,67,0.08357384546144725],[120,114,68,0.08504467626291301],[120,114,69,0.08656119398626999],[120,114,70,0.08812386812205986],[120,114,71,0.0897330974046428],[120,114,72,0.09138920731264155],[120,114,73,0.09309244754109319],[120,114,74,0.09484298944544484],[120,114,75,0.09664092345721237],[120,114,76,0.09848625647143244],[120,114,77,0.10037890920586517],[120,114,78,0.10231871353194316],[120,114,79,0.10430540977748898],[120,115,64,0.07185640903860063],[120,115,65,0.07319768607767474],[120,115,66,0.07458456578950906],[120,115,67,0.07601769259642072],[120,115,68,0.07749764619407923],[120,115,69,0.07902493914231029],[120,115,70,0.080600014428231],[120,115,71,0.08222324300165984],[120,115,72,0.08389492128282633],[120,115,73,0.08561526864232105],[120,115,74,0.08738442485342734],[120,115,75,0.08920244751664902],[120,115,76,0.09106930945656688],[120,115,77,0.09298489609098237],[120,115,78,0.09494900277234014],[120,115,79,0.09696133210145719],[120,116,64,0.06426138401880488],[120,116,65,0.06560610343686646],[120,116,66,0.06699816163175082],[120,116,67,0.06843818044514749],[120,116,68,0.06992671567859265],[120,116,69,0.07146425468956258],[120,116,70,0.07305121396043318],[120,116,71,0.07468793664024576],[120,116,72,0.0763746900593048],[120,116,73,0.07811166321654789],[120,116,74,0.079898964239829],[120,116,75,0.08173661781893149],[120,116,76,0.08362456261144052],[120,116,77,0.08556264862143531],[120,116,78,0.08755063455099221],[120,116,79,0.08958818512452693],[120,117,64,0.05664896726285512],[120,117,65,0.05799656113602775],[120,117,66,0.05939324072309354],[120,117,67,0.06083960533674637],[120,117,68,0.06233618692312126],[120,117,69,0.06388344766281695],[120,117,70,0.06548177754531115],[120,117,71,0.06713149191671364],[120,117,72,0.06883282900087823],[120,117,73,0.07058594739381663],[120,117,74,0.07239092353155563],[120,117,75,0.0742477491312507],[120,117,76,0.07615632860569027],[120,117,77,0.07811647645114722],[120,117,78,0.080127914608571],[120,117,79,0.08219026979814797],[120,118,64,0.04902345399894875],[120,118,65,0.05037336395256364],[120,118,66,0.05177411629602019],[120,118,67,0.05322628787505029],[120,118,68,0.05473038683044523],[120,118,69,0.056286850203647265],[120,118,70,0.05789604151625971],[120,118,71,0.059558248323420326],[120,118,72,0.06127367974105952],[120,118,73,0.06304246394698565],[120,118,74,0.06486464565593936],[120,118,75,0.06674018356843076],[120,118,76,0.06866894779349086],[120,118,77,0.07065071724529759],[120,118,78,0.07268517701366839],[120,118,79,0.0747719157084441],[120,119,64,0.041389159379620954],[120,119,65,0.04274083703345499],[120,119,66,0.04414512238790064],[120,119,67,0.04560256989414241],[120,119,68,0.047113663948997686],[120,119,69,0.04867881650472344],[120,119,70,0.050298364653263816],[120,119,71,0.05197256818488272],[120,119,72,0.05370160712120331],[120,119,73,0.055485579222596115],[120,119,74,0.05732449747005958],[120,119,75,0.05921828752140368],[120,119,76,0.06116678514187113],[120,119,77,0.06316973360915529],[120,119,78,0.06522678109280433],[120,119,79,0.06733747800804307],[120,120,64,0.03375041540500073],[120,120,65,0.03510332280970219],[120,120,66,0.03651061074743317],[120,120,67,0.03797281135759467],[120,120,68,0.0394903853656936],[120,120,69,0.04106371969701372],[120,120,70,0.04269312506525047],[120,120,71,0.044378833536043605],[120,120,72,0.04612099606543968],[120,120,73,0.04791968001321828],[120,120,74,0.04977486663123093],[120,120,75,0.051686448526558904],[120,120,76,0.05365422709963069],[120,120,77,0.05567790995725014],[120,120,78,0.057757108300531934],[120,120,79,0.05989133428777216],[120,121,64,0.02611156779150714],[120,121,65,0.02746517785574254],[120,121,66,0.028874947685605667],[120,121,67,0.030341387201792358],[120,121,68,0.031864933542427365],[120,121,69,0.03344594868025941],[120,121,70,0.03508471701533128],[120,121,71,0.0367814429430659],[120,121,72,0.03853624839779246],[120,121,73,0.040349170371653365],[120,121,74,0.04222015840903698],[120,121,75,0.0441490720763445],[120,121,76,0.0461356784072281],[120,121,77,0.048179649323258245],[120,121,78,0.05028055903000811],[120,121,79,0.0524378813885914],[120,122,64,0.018476972785798018],[120,122,65,0.019830769693645833],[120,122,66,0.02124251087098561],[120,122,67,0.022712684123153748],[120,122,68,0.024241703096052947],[120,122,69,0.025829904896531752],[120,122,70,0.027477547688749993],[120,122,71,0.029184808266468576],[120,122,72,0.030951779601293083],[120,122,73,0.03277846836680337],[120,122,74,0.034664792438723224],[120,122,75,0.036610578370931623],[120,122,76,0.03861555884745782],[120,122,77,0.04067937011041178],[120,122,78,0.04280154936384739],[120,122,79,0.04498153215358269],[120,123,64,0.010850993923769037],[120,123,65,0.012204473541896244],[120,123,66,0.013617686069142543],[120,123,67,0.015091097309049395],[120,123,68,0.016625097521644594],[120,123,69,0.018219999046675428],[120,123,70,0.019876033903333035],[120,123,71,0.021593351366406388],[120,123,72,0.023372015518895006],[120,123,73,0.025212002781014653],[120,123,74,0.027113199415749634],[120,123,75,0.02907539901075029],[120,123,76,0.031098299936719975],[120,123,77,0.033181502782246075],[120,123,78,0.03532450776506535],[120,123,79,0.03752671211979686],[120,124,64,0.0032379987349987482],[120,124,65,0.004590669009144788],[120,124,66,0.006004863826592266],[120,124,67,0.007481027112808736],[120,124,68,0.009019525859431443],[120,124,69,0.010620647750025802],[120,124,70,0.012284598762838606],[120,124,71,0.014011500750481187],[120,124,72,0.01580138899657335],[120,124,73,0.01765420974927967],[120,124,74,0.019569817731895478],[120,124,75,0.021547973630277495],[120,124,76,0.023588341557266745],[120,124,77,0.02569048649405581],[120,124,78,0.027853871708491074],[120,124,79,0.030077856150344195],[120,125,64,-0.0043576446075569986],[120,125,65,-0.003006263267255116],[120,125,66,-0.001591563900931403],[120,125,67,-1.1312432737742295E-4],[120,125,68,0.0014293993052126863],[120,125,69,0.003036270147209308],[120,125,70,0.004707668253004282],[120,125,71,0.006443688163894734],[120,125,72,0.008244336468423041],[120,125,73,0.010109529340107892],[120,125,74,0.012039090052718082],[120,125,75,0.014032746472891211],[120,125,76,0.016090128530237502],[120,125,77,0.01821076566488633],[120,125,78,0.02039408425246414],[120,125,79,0.022639405006537272],[120,126,64,-0.011931570692819304],[120,126,65,-0.010581945038130869],[120,126,66,-0.009167207176070113],[120,126,67,-0.007686956525856048],[120,126,68,-0.006140872235945505],[120,126,69,-0.004528715554170781],[120,126,70,-0.0028503322198959458],[120,126,71,-0.0011056548782558684],[120,126,72,7.0529448355372E-4],[120,126,73,0.0025824020778673074],[120,126,74,0.004525459836176804],[120,126,75,0.006534162906592589],[120,126,76,0.008608107129283282],[120,126,77,0.01074678648984917],[120,126,78,0.012949590550617285],[120,126,79,0.015215801859895128],[120,127,64,-0.019479420331394215],[120,127,65,-0.018132003914398953],[120,127,66,-0.016717681562915754],[120,127,67,-0.015236074142823353],[120,127,68,-0.013686883652340498],[120,127,69,-0.012069895590574697],[120,127,70,-0.010384981347602906],[120,127,71,-0.00863210061614994],[120,127,72,-0.006811303824827641],[120,127,73,-0.004922734593012845],[120,127,74,-0.00296663220719684],[120,127,75,-9.433341190180355E-4],[120,127,76,0.001146721535171702],[120,127,77,0.0033029933931590927],[120,127,78,0.005524834304132642],[120,127,79,0.007811488744387085],[120,128,64,-0.02699684407013453],[120,128,65,-0.025652076894194686],[120,128,66,-0.024238611665756027],[120,128,67,-0.02275609053374139],[120,128,68,-0.021204238184783564],[120,128,69,-0.01958286421048372],[120,128,70,-0.017891865495720305],[120,128,71,-0.016131228628074923],[120,128,72,-0.01430103232833857],[120,128,73,-0.012401449902174178],[120,128,74,-0.010432751712770694],[120,128,75,-0.008395307674699981],[120,128,76,-0.006289589768824211],[120,128,77,-0.004116174578305376],[120,128,78,-0.0018757458457234755],[120,128,79,4.3090294873093793E-4],[120,129,64,-0.03447950576164216],[120,129,65,-0.03313781394541515],[120,129,66,-0.031725634723684726],[120,129,67,-0.030242631355052785],[120,129,68,-0.02868855104246537],[120,129,69,-0.027063227299470194],[120,129,70,-0.02536658233705369],[120,129,71,-0.02359862947111324],[120,129,72,-0.021759475550541474],[120,129,73,-0.019849323405983887],[120,129,74,-0.0178684743191192],[120,129,75,-0.0158173305126611],[120,129,76,-0.013696397660939441],[120,129,77,-0.011506287421105932],[120,129,78,-0.009247719984971536],[120,129,79,-0.006921526651446741],[120,130,64,-0.04192308618833451],[120,130,65,-0.04058488164329177],[120,130,66,-0.03917440426069407],[120,130,67,-0.037691338225812165],[120,130,68,-0.03613545307515165],[120,130,69,-0.034506606061996625],[120,130,70,-0.03280474454205884],[120,130,71,-0.03102990837929842],[120,130,72,-0.02918223237187967],[120,130,73,-0.027261948698336202],[120,130,74,-0.025269389383785312],[120,130,75,-0.023204988786394876],[120,130,76,-0.02106928610396064],[120,130,77,-0.018862927900635706],[120,130,78,-0.016586670653825575],[120,130,79,-0.014241383321212053],[120,131,64,-0.04932328674125852],[120,131,65,-0.04798896686318377],[120,131,66,-0.046580593791439195],[120,131,67,-0.04509787244542085],[120,131,68,-0.04354059450190095],[120,131,69,-0.04190864076013079],[120,131,70,-0.04020198352658921],[120,131,71,-0.03842068901943185],[120,131,72,-0.03656491979261922],[120,131,73,-0.03463493717978372],[120,131,74,-0.03263110375768519],[120,131,75,-0.030553885829453176],[120,131,76,-0.028403855927477184],[120,131,77,-0.026181695335983912],[120,131,78,-0.023888196633314762],[120,131,79,-0.02152426625387116],[120,132,64,-0.056675833153845834],[120,132,65,-0.05534578052878203],[120,132,66,-0.05393990058286402],[120,132,67,-0.05245791876765871],[120,132,68,-0.05089964869649022],[120,132,69,-0.04926499450937272],[120,132,70,-0.047553953257128634],[120,132,71,-0.045766617304750845],[120,132,72,-0.04390317675398481],[120,132,73,-0.04196392188519238],[120,132,74,-0.039949245618344786],[120,132,75,-0.037859645993345015],[120,132,76,-0.035695728669540405],[120,132,77,-0.033458209444463205],[120,132,78,-0.031147916791813945],[120,132,79,-0.028765794418654345],[120,133,64,-0.0639764792902322],[120,133,65,-0.06265106141534482],[120,133,66,-0.06124804947131246],[120,133,67,-0.05976718923063329],[120,133,68,-0.0582083160291782],[120,133,69,-0.056571357131209865],[120,133,70,-0.054856334113138505],[120,133,71,-0.05306336526606892],[120,133,72,-0.05119266801711464],[120,133,73,-0.04924456136954258],[120,133,74,-0.04721946836159441],[120,133,75,-0.045117918544186675],[120,133,76,-0.04294055047734646],[120,133,77,-0.0406881142454264],[120,133,78,-0.038361473991107564],[120,133,79,-0.035961610468161376],[120,134,64,-0.0712210109883259],[120,134,65,-0.06990058000815502],[120,134,66,-0.06850079673530907],[120,134,67,-0.06702142704283398],[120,134,68,-0.0654623277649855],[120,134,69,-0.06382344906259185],[120,134,70,-0.06210483680670109],[120,134,71,-0.06030663498057798],[120,134,72,-0.05842908810002034],[120,134,73,-0.05647254365206211],[120,134,74,-0.05443745455190563],[120,134,75,-0.05232438161828745],[120,134,76,-0.05013399606713542],[120,134,77,-0.047867082023556606],[120,134,78,-0.04552453905217102],[120,134,79,-0.04310738470575559],[120,135,64,-0.07840524995781739],[120,135,65,-0.07709014241638634],[120,135,66,-0.07569393402420554],[120,135,67,-0.07421641052548156],[120,135,68,-0.07265745001868851],[120,135,69,-0.07101702532251453],[120,135,70,-0.0692952063596518],[120,135,71,-0.06749216255849888],[120,135,72,-0.06560816527274138],[120,135,73,-0.06364359021888222],[120,135,74,-0.06159891993155986],[120,135,75,-0.059474746236861886],[120,135,76,-0.05727177274349071],[120,135,77,-0.05499081735182032],[120,135,78,-0.052632814780860904],[120,135,79,-0.050198819113091986],[120,136,64,-0.08552505773274865],[120,136,65,-0.08421559434199943],[120,136,66,-0.08282329234230335],[120,136,67,-0.08134795711079235],[120,136,68,-0.07978948776614103],[120,136,69,-0.0781478795353292],[120,136,70,-0.07642322613781805],[120,136,71,-0.07461572218720303],[120,136,72,-0.0727256656103148],[120,136,73,-0.07075346008383554],[120,136,74,-0.06869961748827147],[120,136,75,-0.06656476037948789],[120,136,76,-0.06434962447766379],[120,136,77,-0.062055061173705184],[120,136,78,-0.05968204005313249],[120,136,79,-0.057231651437405384],[120,137,64,-0.09257633967884116],[120,137,65,-0.09127282510386703],[120,137,66,-0.0898847460886607],[120,137,67,-0.08841192739635706],[120,137,68,-0.08685428891212688],[120,137,69,-0.0852118480109817],[120,137,70,-0.08348472194256662],[120,137,71,-0.08167313023300404],[120,137,72,-0.07977739710375908],[120,137,73,-0.07779795390759592],[120,137,74,-0.075735341581462],[120,137,75,-0.07359021311651204],[120,137,76,-0.0713633360451228],[120,137,77,-0.06905559494494273],[120,137,78,-0.06666799395998857],[120,137,79,-0.06420165933875466],[120,138,64,-0.09955504905575252],[120,138,65,-0.09825777171729744],[120,138,66,-0.09687421715274736],[120,138,67,-0.09540422925580105],[120,138,68,-0.09384774841491061],[120,138,69,-0.09220481388234603],[120,138,70,-0.0904755661598261],[120,138,71,-0.08866024940078554],[120,138,72,-0.08675921382924023],[120,138,73,-0.08477291817532784],[120,138,74,-0.08270193212735466],[120,138,75,-0.0805469388005664],[120,138,76,-0.07830873722248755],[120,138,77,-0.07598824483487776],[120,138,78,-0.0735865000123187],[120,138,79,-0.07110466459738962],[120,139,64,-0.10645719113388308],[120,139,65,-0.1051664230285767],[120,139,66,-0.10378767906557151],[120,139,67,-0.10232082200535131],[120,139,68,-0.10076581246710914],[120,139,69,-0.09912271129927608],[120,139,70,-0.09739168196620718],[120,139,71,-0.09557299295109078],[120,139,72,-0.09366702017504347],[120,139,73,-0.09167424943246927],[120,139,74,-0.08959527884251295],[120,139,75,-0.08743082131682489],[120,139,76,-0.08518170704348227],[120,139,77,-0.0828488859871177],[120,139,78,-0.08043343040526207],[120,139,79,-0.07793653738086836],[120,140,64,-0.11327882736605632],[120,140,65,-0.11199482390485505],[120,140,66,-0.11062116120660015],[120,140,67,-0.10915772062663054],[120,140,68,-0.10760448273320611],[120,140,69,-0.10596152967970007],[120,140,70,-0.10422904759254492],[120,140,71,-0.10240732897499527],[120,140,72,-0.10049677512667277],[120,140,73,-0.09849789857897018],[120,140,74,-0.09641132554614462],[120,140,75,-0.09423779839231694],[120,140,76,-0.09197817811422504],[120,140,77,-0.08963344683977559],[120,140,78,-0.08720471034241017],[120,140,79,-0.08469320057124308],[120,141,64,-0.12001607961382954],[120,141,65,-0.1187390794791342],[120,141,66,-0.11737075306623479],[120,141,67,-0.1159110000454383],[120,141,68,-0.11435982064346861],[120,141,69,-0.1127173180175125],[120,141,70,-0.11098370064461893],[120,141,71,-0.10915928472652003],[120,141,72,-0.10724449660983659],[120,141,73,-0.1052398752217435],[120,141,74,-0.10314607452092872],[120,141,75,-0.10096386596406026],[120,141,76,-0.09869414098760798],[120,141,77,-0.09633791350506926],[120,141,78,-0.0938963224196091],[120,141,79,-0.09137063415207558],[120,142,64,-0.12666513442875393],[120,142,65,-0.12539535945067148],[120,142,66,-0.12403260856415266],[120,142,67,-0.12257679946683275],[120,142,68,-0.12102795174458247],[120,142,69,-0.11938618924758337],[120,142,70,-0.11765174248137067],[120,142,71,-0.11582495101290446],[120,142,72,-0.11390626589163677],[120,142,73,-0.11189625208564768],[120,142,74,-0.1097955909326862],[120,142,75,-0.10760508260632662],[120,142,76,-0.10532564859709237],[120,142,77,-0.1029583342085918],[120,142,78,-0.1005043110686783],[120,142,79,-0.0979648796555963],[120,143,64,-0.13322224738820565],[120,143,65,-0.13195990244042777],[120,143,66,-0.13060295042314574],[120,143,67,-0.12915132676614438],[120,143,68,-0.12760507010662991],[120,143,69,-0.12596432466750718],[120,143,70,-0.12422934265024022],[120,143,71,-0.12240048664236003],[120,143,72,-0.12047823203958397],[120,143,73,-0.1184631694826237],[120,143,74,-0.11635600730851259],[120,143,75,-0.11415757401666815],[120,143,76,-0.11186882074953886],[120,143,77,-0.10949082378787978],[120,143,78,-0.10702478706067031],[120,143,79,-0.10447204466963478],[120,144,64,-0.13968374748597734],[120,144,65,-0.1384290204017422],[120,144,66,-0.13707807459863697],[120,144,67,-0.13563086293609772],[120,144,68,-0.13408744278659657],[120,144,69,-0.13244797841627898],[120,144,70,-0.1307127433798102],[120,144,71,-0.1288821229294942],[120,144,72,-0.12695661643862854],[120,144,73,-0.12493683983917292],[120,144,74,-0.12282352807356389],[120,144,75,-0.12061753756088633],[120,144,76,-0.11831984867725731],[120,144,77,-0.11593156825046214],[120,144,78,-0.11345393206885779],[120,144,79,-0.11088830740450528],[120,145,64,-0.14604604157778256],[120,145,65,-0.1447991030863932],[120,145,66,-0.14345435476403345],[120,145,67,-0.1420117665902062],[120,145,68,-0.14047141434856303],[120,145,69,-0.1388334820100524],[120,145,70,-0.137098264129911],[120,145,71,-0.13526616825855742],[120,145,72,-0.1333377173663568],[120,145,73,-0.13131355228233166],[120,145,74,-0.1291944341466501],[120,145,75,-0.12698124687710477],[120,145,76,-0.12467499964943785],[120,145,77,-0.12227682939154871],[120,145,78,-0.11978800329160266],[120,145,79,-0.11720992132000285],[120,146,64,-0.1523056188813462],[120,146,65,-0.1510666225657119],[120,146,66,-0.1497282468515867],[120,146,67,-0.1482904785221063],[120,146,68,-0.14675341144025222],[120,146,69,-0.14511724893465205],[120,146,70,-0.1433823061988606],[120,146,71,-0.14154901270418707],[120,146,72,-0.13961791462603268],[120,146,73,-0.13758967728381377],[120,146,74,-0.1354650875943041],[120,146,75,-0.13324505653860996],[120,146,76,-0.13093062164262748],[120,146,77,-0.1285229494710275],[120,146,78,-0.1260233381347805],[120,146,79,-0.12343321981218403],[120,147,64,-0.15845905553124906],[120,147,65,-0.1572281378069217],[120,147,66,-0.15589629364892676],[120,147,67,-0.15446352632099947],[120,147,68,-0.15292994742610222],[120,147,69,-0.1512957792950066],[120,147,70,-0.14956135738800513],[120,147,71,-0.14772713270981486],[120,147,72,-0.145793674237644],[120,147,73,-0.14376167136248896],[120,147,74,-0.1416319363435019],[120,147,75,-0.13940540677563595],[120,147,76,-0.13708314807042576],[120,147,77,-0.13466635594994014],[120,147,78,-0.13215635895392486],[120,147,79,-0.12955462096009707],[120,148,64,-0.16450301918868193],[120,148,65,-0.16328029930485644],[120,148,66,-0.16195512945142942],[120,148,67,-0.16052752904335954],[120,148,68,-0.15899762707701615],[120,148,69,-0.15736566452166012],[120,148,70,-0.15563199672371675],[120,148,71,-0.15379709582389245],[120,148,72,-0.15186155318711458],[120,148,73,-0.1498260818453543],[120,148,74,-0.14769151895317978],[120,148,75,-0.14545882825624212],[120,148,76,-0.14312910257255285],[120,148,77,-0.14070356628658987],[120,148,78,-0.1381835778562519],[120,148,79,-0.1355706323326189],[120,149,64,-0.17043427370579434],[120,149,65,-0.16921985376874238],[120,149,66,-0.16790148477009748],[120,149,67,-0.16647920194059085],[120,149,68,-0.1649531513164807],[120,149,69,-0.16332359213404601],[120,149,70,-0.16159089923653502],[120,149,71,-0.15975556549362502],[120,149,72,-0.1578182042333669],[120,149,73,-0.15577955168668123],[120,149,74,-0.1536404694442438],[120,149,75,-0.15140194692597375],[120,149,76,-0.14906510386297456],[120,149,77,-0.1466311927919689],[120,149,78,-0.14410160156224727],[120,149,79,-0.14147785585508532],[120,150,64,-0.17624968384479034],[120,150,65,-0.17504364886419754],[120,150,66,-0.17373219109511084],[120,150,67,-0.17231536124278424],[120,150,68,-0.17079332202319986],[120,150,69,-0.1691663505606763],[120,150,70,-0.16743484079760285],[120,150,71,-0.16559930591635819],[120,150,72,-0.1636603807733854],[120,150,73,-0.16161882434549224],[120,150,74,-0.1594755221882156],[120,150,75,-0.1572314889064551],[120,150,76,-0.15488787063724008],[120,150,77,-0.152445947544657],[120,150,78,-0.14990713632696773],[120,150,79,-0.14727299273586436],[120,151,64,-0.18194622005193717],[120,151,65,-0.1807486380106138],[120,151,66,-0.17944418571521326],[120,151,67,-0.17803292899874623],[120,151,68,-0.17651504689041198],[120,151,69,-0.1748908340164107],[120,151,70,-0.17316070301256248],[120,151,71,-0.17132518694879095],[120,151,72,-0.16938494176544683],[120,151,73,-0.16734074872153482],[120,151,74,-0.16519351685468564],[120,151,75,-0.16294428545308193],[120,151,76,-0.16059422653919309],[120,151,77,-0.15814464736535638],[120,151,78,-0.15559699292122475],[120,151,79,-0.15295284845303847],[120,152,64,-0.18752096328616186],[120,152,65,-0.1863318852335969],[120,152,66,-0.18503451659260428],[120,152,67,-0.18362893797196644],[120,152,68,-0.1821153443415664],[120,152,69,-0.18049404743648378],[120,152,70,-0.1787654781725877],[120,152,71,-0.17693018907368563],[120,152,72,-0.1749888567101967],[120,152,73,-0.1729422841494216],[120,152,74,-0.17079140341724686],[120,152,75,-0.1685372779714881],[120,152,76,-0.16618110518673612],[120,152,77,-0.1637242188507365],[120,152,78,-0.1611680916723246],[120,152,79,-0.15851433780087476],[120,153,64,-0.1929711099024135],[120,153,65,-0.19179057007264022],[120,153,66,-0.19050034729352006],[120,153,67,-0.18910053659270765],[120,153,68,-0.18759134850253412],[120,153,69,-0.18597311146746165],[120,153,70,-0.18424627426272955],[120,153,71,-0.18241140842425152],[120,153,72,-0.1804692106897403],[120,153,73,-0.17842050545112254],[120,153,74,-0.1762662472180856],[120,153,75,-0.1740075230929634],[120,153,76,-0.171645555256822],[120,153,77,-0.1691817034667723],[120,153,78,-0.1666174675645421],[120,153,79,-0.16395448999625495],[120,154,64,-0.19829397658990966],[120,154,65,-0.19712199254415474],[120,154,66,-0.19583896197462214],[120,154,67,-0.1944449939663343],[120,154,68,-0.1929403142304743],[120,154,69,-0.1913252675152568],[120,154,70,-0.18960032002769378],[120,154,71,-0.18776606186632627],[120,154,72,-0.18582320946487962],[120,154,73,-0.18377260804692075],[120,154,74,-0.1816152340913505],[120,154,75,-0.17935219780894474],[120,154,76,-0.17698474562979438],[120,154,77,-0.17451426270168646],[120,154,78,-0.17194227539944595],[120,154,79,-0.16927045384518868],[120,155,64,-0.20348700536499797],[120,155,65,-0.20232357815958213],[120,155,66,-0.20104777042491706],[120,155,67,-0.19965970493761165],[120,155,68,-0.19815962219908756],[120,155,69,-0.19654788284991875],[120,155,70,-0.1948249700947815],[120,155,71,-0.19299149213807965],[120,155,72,-0.1910481846302149],[120,155,73,-0.1889959131245671],[120,155,74,-0.18683567554503],[120,155,75,-0.18456860466430314],[120,155,76,-0.1821959705928048],[120,155,77,-0.17971918327823366],[120,155,78,-0.17713979501580923],[120,155,79,-0.17445950296913726],[120,156,64,-0.20854776861876723],[120,156,65,-0.20739288299872927],[120,156,66,-0.2061243131633539],[120,156,67,-0.20474219521110848],[120,156,68,-0.2032467840403852],[120,156,69,-0.2016384557673505],[120,156,70,-0.19991771015412774],[120,156,71,-0.19808517304737894],[120,156,72,-0.1961415988272528],[120,156,73,-0.19408787286676776],[120,156,74,-0.19192501400146977],[120,156,75,-0.18965417700957432],[120,156,76,-0.18727665510244618],[120,156,77,-0.1847938824254567],[120,156,78,-0.18220743656923777],[120,156,79,-0.17951904109128736],[120,157,64,-0.21347397421954828],[120,157,65,-0.21232759883845853],[120,157,66,-0.21106626659222616],[120,157,67,-0.2096901265278447],[120,157,68,-0.2081994475431228],[120,157,69,-0.20659462080807434],[120,157,70,-0.2048761621963755],[120,157,71,-0.20304471472695163],[120,157,72,-0.20110105101565923],[120,157,73,-0.19904607573713995],[120,157,74,-0.19688082809667473],[120,157,75,-0.19460648431225713],[120,157,76,-0.19222436010673372],[120,157,77,-0.18973591321005523],[120,157,78,-0.18714274587165436],[120,157,79,-0.18444660738290697],[120,158,64,-0.21826347067002405],[120,158,65,-0.21712555833646108],[120,158,66,-0.21587144820610804],[120,158,67,-0.21450130189790273],[120,158,68,-0.2130154019076106],[120,158,69,-0.21141415403278163],[120,158,70,-0.2096980898075107],[120,158,71,-0.2078678689470701],[120,158,72,-0.20592428180237554],[120,158,73,-0.2038682518243643],[120,158,74,-0.20170083803811267],[120,158,75,-0.19942323752691393],[120,158,76,-0.19703678792616341],[120,158,77,-0.19454296992709064],[120,158,78,-0.19194340979036373],[120,158,79,-0.18923988186951057],[120,159,64,-0.22291425231910944],[120,159,65,-0.22178474027026696],[120,159,66,-0.22053782185648285],[120,159,67,-0.2191736708891645],[120,159,68,-0.2176925830570653],[120,159,69,-0.21609497835481495],[120,159,70,-0.21438140352100843],[120,159,71,-0.21255253448591382],[120,159,72,-0.21060917882875918],[120,159,73,-0.20855227824468436],[120,159,74,-0.206382911021178],[120,159,75,-0.20410229452422324],[120,159,76,-0.20171178769399967],[120,159,77,-0.19921289355018112],[120,159,78,-0.19660726170685205],[120,159,79,-0.19389669089699235],[120,160,64,-0.22742446462868426],[120,160,65,-0.22630327483158008],[120,160,66,-0.22506350307214074],[120,160,67,-0.2237053349722553],[120,160,68,-0.2222290790055852],[120,160,69,-0.2206351689296765],[120,160,70,-0.21892416622738908],[120,160,71,-0.21709676255769728],[120,160,72,-0.21515378221583348],[120,160,73,-0.21309618460284618],[120,160,74,-0.21092506670440603],[120,160,75,-0.20864166557907415],[120,160,76,-0.20624736085588335],[120,160,77,-0.2037436772412763],[120,160,78,-0.2011322870354122],[120,160,79,-0.19841501265780603],[120,161,64,-0.23179240949497426],[120,161,65,-0.23067944897572956],[120,161,66,-0.22944676443515277],[120,161,67,-0.22809455292149106],[120,161,68,-0.22662313528254296],[120,161,69,-0.2250329586013491],[120,161,70,-0.223324598640961],[120,161,71,-0.22149876229835375],[120,161,72,-0.21955629006743904],[120,161,73,-0.21749815851126486],[120,161,74,-0.21532548274322394],[120,161,75,-0.21303951891749306],[120,161,76,-0.210641666728548],[120,161,77,-0.20813347191980258],[120,161,78,-0.20551662880138244],[120,161,79,-0.20279298277699354],[120,162,64,-0.2360165506246762],[120,162,65,-0.23491171182633308],[120,162,66,-0.2336860410125028],[120,162,67,-0.232339746271923],[120,162,68,-0.23087316041349337],[120,162,69,-0.22928674340552746],[120,162,70,-0.22758108482386064],[120,162,71,-0.2257569063088718],[120,162,72,-0.22381506403138307],[120,162,73,-0.22175655116751702],[120,162,74,-0.21958250038233873],[120,162,75,-0.21729418632250064],[120,162,76,-0.21489302811774103],[120,162,77,-0.21238059189127456],[120,162,78,-0.20975859327909552],[120,162,79,-0.20702889995815055],[120,163,64,-0.24009551896594583],[120,163,65,-0.23899868013529968],[120,163,66,-0.23777993584351187],[120,163,67,-0.23643950483260512],[120,163,68,-0.2349777314577155],[120,163,69,-0.23339508812988763],[120,163,70,-0.23169217776750406],[120,163,71,-0.22986973625641183],[120,163,72,-0.22792863491871185],[120,163,73,-0.225869882990284],[120,163,74,-0.2236946301068845],[120,163,75,-0.22140416879902303],[120,163,76,-0.21899993699548048],[120,163,77,-0.2164835205354988],[120,163,78,-0.21385665568966705],[120,163,79,-0.21112123168945884],[120,164,64,-0.24402811819402037],[120,164,65,-0.24293914379792736],[120,164,66,-0.2417272254828109],[120,164,67,-0.24039259225584297],[120,164,68,-0.2389355996021566],[120,164,69,-0.23735673193114992],[120,164,70,-0.2356566050312151],[120,164,71,-0.23383596853295674],[120,164,72,-0.23189570838086326],[120,164,73,-0.22983684931350434],[120,164,74,-0.22766055735209278],[120,164,75,-0.22536814229761537],[120,164,76,-0.2229610602363976],[120,164,77,-0.22044091605412885],[120,164,78,-0.21780946595837702],[120,164,79,-0.2150686200095424],[120,165,64,-0.24781333025165542],[120,165,65,-0.24673207142329245],[120,165,66,-0.24552686559905268],[120,165,67,-0.24419795166261848],[120,165,68,-0.24274569581196426],[120,165,69,-0.24117059400913055],[120,165,70,-0.23947327443822253],[120,165,71,-0.23765449997169608],[120,165,72,-0.23571517064489755],[120,165,73,-0.23365632613892795],[120,165,74,-0.23147914827167115],[120,165,75,-0.2291849634971922],[120,165,76,-0.22677524541336502],[120,165,77,-0.22425161727776344],[120,165,78,-0.2216158545318393],[120,165,79,-0.21886988733333945],[120,166,64,-0.2514503209442559],[120,166,65,-0.2503766159598002],[120,166,66,-0.24917799662924134],[120,166,67,-0.24785471132406145],[120,166,68,-0.24640713653748092],[120,166,69,-0.24483577933765344],[120,166,70,-0.24314127982889544],[120,166,71,-0.2413244136210102],[120,166,72,-0.23938609430667235],[120,166,73,-0.23732737594694542],[120,166,74,-0.23514945556477151],[120,166,75,-0.23285367564663784],[120,166,76,-0.23044152665228101],[120,166,77,-0.22791464953246154],[120,166,78,-0.22527483825483496],[120,166,79,-0.2225240423378675],[120,167,64,-0.25493844558985657],[120,167,65,-0.2538721203760522],[120,167,66,-0.25267994948882666],[120,167,67,-0.251362190399124],[120,167,68,-0.24991922947785816],[120,167,69,-0.2483515844524773],[120,167,70,-0.24665990687137518],[120,167,71,-0.24484498457621284],[120,167,72,-0.24290774418212124],[120,167,73,-0.2408492535658482],[120,167,74,-0.23867072436169567],[120,167,75,-0.23637351446544952],[120,167,76,-0.23395913054616324],[120,167,77,-0.23142923056582898],[120,167,78,-0.22878562630695887],[120,167,79,-0.22603028590802887],[120,168,64,-0.2582772547237626],[120,168,65,-0.25721812339684824],[120,168,66,-0.25603225133738683],[120,168,67,-0.2547199047282718],[120,168,68,-0.25328147940110324],[120,168,69,-0.2517175032960556],[120,168,70,-0.2500286389294175],[120,168,71,-0.24821568586886755],[120,168,72,-0.2462795832164515],[120,168,73,-0.24422141209933368],[120,168,74,-0.24204239816815798],[120,168,75,-0.23974391410322882],[120,168,76,-0.2373274821283693],[120,168,77,-0.2347947765324907],[120,168,78,-0.23214762619889795],[120,168,79,-0.2293880171422802],[120,169,64,-0.2614664998579441],[120,169,65,-0.26041436529440887],[120,169,66,-0.2592346313999814],[120,169,67,-0.25792757268328403],[120,169,68,-0.2564935940206482],[120,169,69,-0.25493323311921345],[120,169,70,-0.2532471629875366],[120,169,71,-0.25143619441376497],[120,169,72,-0.24950127845134618],[120,169,73,-0.24744350891234312],[120,169,74,-0.2452641248681925],[120,169,75,-0.2429645131581144],[120,169,76,-0.24054621090503336],[120,169,77,-0.238010908039042],[120,169,78,-0.23536044982843207],[120,169,79,-0.23259683941824794],[120,170,64,-0.26450613929527134],[120,170,65,-0.26346079373490816],[120,170,66,-0.26228702684426763],[120,170,67,-0.2609851210732477],[120,170,68,-0.2595554899285294],[120,170,69,-0.257998680439836],[120,170,70,-0.25631537563353446],[120,170,71,-0.2545063970136524],[120,170,72,-0.2525727070502636],[120,170,73,-0.2505154116753251],[120,170,74,-0.24833576278579328],[120,170,75,-0.2460351607542388],[120,170,76,-0.2436151569468058],[120,170,77,-0.24107745624855936],[120,170,78,-0.23842391959624132],[120,170,79,-0.23565656651838474],[120,171,64,-0.2673963439984033],[120,171,65,-0.26635756968013125],[120,171,66,-0.2651895887131924],[120,171,67,-0.2638926911065598],[120,171,68,-0.2624672985849946],[120,171,69,-0.26091396705837766],[120,171,70,-0.2592333890982357],[120,171,71,-0.25742639642152665],[120,171,72,-0.25549396238164646],[120,171,73,-0.2534372044667337],[120,171,74,-0.2512573868051041],[120,171,75,-0.2489559226780288],[120,171,76,-0.24653437703971104],[120,171,77,-0.24399446904449584],[120,171,78,-0.24133807458133716],[120,171,79,-0.23856722881547465],[120,172,64,-0.270137503513446],[120,172,65,-0.26910507334437117],[120,172,66,-0.26794268791337617],[120,172,67,-0.26665064440905806],[120,172,68,-0.2652293723646446],[120,172,69,-0.26367943613030886],[120,172,70,-0.26200153735253584],[120,172,71,-0.26019651746060546],[120,172,72,-0.25826536016015167],[120,172,73,-0.25620919393387964],[120,172,74,-0.2540292945492646],[120,172,75,-0.2517270875734572],[120,172,76,-0.24930415089523716],[120,172,77,-0.2467622172540629],[120,172,78,-0.24410317677623183],[120,172,79,-0.2413290795181059],[120,173,64,-0.27273023194842827],[120,173,65,-0.2717039102066101],[120,173,66,-0.2705469212592305],[120,173,67,-0.26925956909831705],[120,173,68,-0.26784229065916654],[120,173,69,-0.2662956582955477],[120,173,70,-0.2646203822618184],[120,173,71,-0.26281731320202784],[120,173,72,-0.2608874446459567],[120,173,73,-0.25883191551217855],[120,173,74,-0.25665201261797277],[120,173,75,-0.25434917319630124],[120,173,76,-0.2519249874197057],[120,173,77,-0.249381200931158],[120,173,78,-0.24671971738189102],[120,173,79,-0.2439426009761576],[120,174,64,-0.27517537400645387],[120,174,65,-0.2741549170778521],[120,174,66,-0.27300311757268103],[120,174,67,-0.27172028591398256],[120,174,68,-0.2703068660365143],[120,174,69,-0.2687634378647371],[120,174,70,-0.267090719797594],[120,174,71,-0.2652895712001412],[120,174,72,-0.26336099490199405],[120,174,73,-0.26130613970266225],[120,174,74,-0.2591263028836126],[120,174,75,-0.2568229327272653],[120,174,76,-0.2543976310427838],[120,174,77,-0.2518521556986907],[120,174,78,-0.24918842316233536],[120,174,79,-0.24640851104616224],[120,175,64,-0.2774740110736116],[120,175,65,-0.2764591682236779],[120,175,66,-0.2753123438385632],[120,175,67,-0.27403385440421424],[120,175,68,-0.27262415045661337],[120,175,69,-0.27108381906244694],[120,175,70,-0.2694135863064453],[120,175,71,-0.26761431978545425],[120,175,72,-0.2656870311092001],[120,175,73,-0.26363287840782623],[120,175,74,-0.2614531688460343],[120,175,75,-0.25914936114404286],[120,175,76,-0.25672306810521417],[120,175,77,-0.254176059150391],[120,175,78,-0.2515102628589643],[120,175,79,-0.248727769516619],[120,176,64,-0.2796274673616991],[120,176,65,-0.27861798154208617],[120,176,66,-0.27747591141575667],[120,176,67,-0.2762015791682988],[120,176,68,-0.2747954415436541],[120,176,69,-0.2732580923273581],[120,176,70,-0.2715902648363354],[120,176,71,-0.269792834415316],[120,176,72,-0.26786682093983216],[120,176,73,-0.2658133913258748],[120,176,74,-0.26363386204604045],[120,176,75,-0.26132970165238334],[120,176,76,-0.258902533305824],[120,176,77,-0.2563541373121556],[120,176,78,-0.253686453664664],[120,176,79,-0.250901584593322],[120,177,64,-0.28163731610563303],[120,177,65,-0.28063292479649116],[120,177,66,-0.2794953823039259],[120,177,67,-0.27822501615530226],[120,177,68,-0.2768222889148384],[120,177,69,-0.2752878006693006],[120,177,70,-0.27362229152014694],[120,177,71,-0.2718266440821887],[120,177,72,-0.26990188598872566],[120,177,73,-0.2678491924032357],[120,177,74,-0.2656698885374501],[120,177,75,-0.263365452176028],[120,177,76,-0.2609375162076837],[120,177,77,-0.2583878711628024],[120,177,78,-0.255718467757571],[120,177,79,-0.25293141944456965],[120,178,64,-0.28350538581561213],[120,178,65,-0.28250582190394125],[120,178,66,-0.2813725754659352],[120,178,67,-0.28010597901883383],[120,178,68,-0.27870650056565327],[120,178,69,-0.27717474608321413],[120,178,70,-0.27551146201652676],[120,178,71,-0.2737175377795882],[120,178,72,-0.2717940082625616],[120,178,73,-0.2697420563454087],[120,178,74,-0.2675630154178108],[120,178,75,-0.2652583719055883],[120,178,76,-0.262829767803479],[120,178,77,-0.2602790032143051],[120,178,78,-0.2576080388945531],[120,178,79,-0.25481899880632497],[120,179,64,-0.2852337665840974],[120,179,65,-0.2842387592786262],[120,179,66,-0.28310957320600294],[120,179,67,-0.28184654552797817],[120,179,68,-0.2804501493117265],[120,179,69,-0.27892099602009124],[120,179,70,-0.27725983800808995],[120,179,71,-0.27546757102574504],[120,179,72,-0.27354523672720243],[120,179,73,-0.27149402518621435],[120,179,74,-0.2693152774178186],[120,179,75,-0.26701048790642445],[120,179,76,-0.2645813071401686],[120,179,77,-0.2620295441515651],[120,179,78,-0.2593571690644817],[120,179,79,-0.25656631564739063],[120,180,64,-0.2868248164474667],[120,180,65,-0.28583409223052725],[120,180,66,-0.28470872760345123],[120,180,67,-0.2834490640342575],[120,180,68,-0.2820555792871329],[120,180,69,-0.28052888991476443],[120,180,70,-0.27886975375685086],[120,180,71,-0.27707907244485563],[120,180,72,-0.2751578939129602],[120,180,73,-0.27310741491529866],[120,180,74,-0.27092898354930517],[120,180,75,-0.26862410178538676],[120,180,76,-0.26619442800277304],[120,180,77,-0.26364177953158496],[120,180,78,-0.2609681352011407],[120,180,79,-0.25817563789445286],[120,181,64,-0.28828116780244395],[120,181,65,-0.28729445141931087],[120,181,66,-0.2861726670021497],[120,181,67,-0.2849161599947255],[120,181,68,-0.2835254124992411],[120,181,69,-0.2820010457706347],[120,181,70,-0.280343822716974],[120,181,71,-0.27855465040601624],[120,181,72,-0.27663458257789253],[120,181,73,-0.2745848221639945],[120,181,74,-0.27240672381189535],[120,181,75,-0.2701017964165181],[120,181,76,-0.2676717056574077],[120,181,77,-0.26511827654213804],[120,181,78,-0.2624434959558837],[120,181,79,-0.2596495152171018],[120,182,64,-0.2896057338773208],[120,182,65,-0.2886227493634883],[120,182,66,-0.2875043025556775],[120,182,67,-0.2862507425512051],[120,182,68,-0.2848625554401266],[120,182,69,-0.28334036680136365],[120,182,70,-0.28168494420486534],[120,182,71,-0.27989719971985694],[120,182,72,-0.27797819242914656],[120,182,73,-0.27592913094956084],[120,182,74,-0.27375137595834387],[120,182,75,-0.27144644272573315],[120,182,76,-0.26901600365356604],[120,182,77,-0.26646189081995475],[120,182,78,-0.26378609853004764],[120,182,79,-0.2609907858728363],[120,183,64,-0.29080171525786835],[120,183,65,-0.28982218700472984],[120,183,66,-0.28870683482809023],[120,183,67,-0.2874560111655743],[120,183,68,-0.2860702057544412],[120,183,69,-0.28455004812941864],[120,183,70,-0.2828963101265023],[120,183,71,-0.2811099083927796],[120,183,72,-0.27919190690224693],[120,183,73,-0.27714351947768945],[120,183,74,-0.2749661123184609],[120,183,75,-0.27266120653437476],[120,183,76,-0.27023048068556055],[120,183,77,-0.2676757733283234],[120,183,78,-0.264999085567028],[120,183,79,-0.26220258361195936],[120,184,64,-0.2918726064680339],[120,184,65,-0.29089626032743887],[120,184,66,-0.2897837604504008],[120,184,67,-0.28853546231118965],[120,184,68,-0.28715185896384254],[120,184,69,-0.285633583541576],[120,184,70,-0.28398141176209746],[120,184,71,-0.2821962644388899],[120,184,72,-0.28027920999842537],[120,184,73,-0.2782314670033831],[120,184,74,-0.2760544066817129],[120,184,75,-0.2737495554617444],[120,184,76,-0.2713185975132085],[120,184,77,-0.2687633772942004],[120,184,78,-0.26608590210410665],[120,184,79,-0.263288344642455],[120,185,64,-0.2928222026053863],[120,185,65,-0.2918487670335398],[120,185,66,-0.29073887883272376],[120,185,67,-0.28949289622041363],[120,185,68,-0.28811131524793876],[120,185,69,-0.28659477230133534],[120,185,70,-0.28494404660805495],[120,185,71,-0.2831600627495856],[120,185,72,-0.2812438931799506],[120,185,73,-0.2791967607501623],[120,185,74,-0.2770200412384629],[120,185,75,-0.2747152658865626],[120,185,76,-0.27228412394173274],[120,185,77,-0.26972846520479066],[120,185,78,-0.2670503025839953],[120,185,79,-0.2642518146548095],[120,186,64,-0.29365460603131255],[120,186,65,-0.29268381327249016],[120,186,66,-0.291576298932095],[120,186,67,-0.2903324236882502],[120,186,68,-0.2889526862817561],[120,186,69,-0.28743772601825945],[120,186,70,-0.2857883252762313],[120,186,71,-0.2840054120208084],[120,186,72,-0.282090062323468],[120,186,73,-0.28004350288760627],[120,186,74,-0.27786711357985905],[120,186,75,-0.2755624299673708],[120,186,76,-0.2731311458608733],[120,186,77,-0.2705751158636056],[120,186,78,-0.26789635792609945],[120,186,79,-0.26509705590678256],[120,187,64,-0.29437423311594557],[120,187,65,-0.29340582042649244],[120,187,66,-0.29230044607594463],[120,187,67,-0.29105847293206244],[120,187,68,-0.2896804021297086],[120,187,69,-0.28816687557420784],[120,187,70,-0.2865186784504695],[120,187,71,-0.2847367417379373],[120,187,72,-0.2828221447313227],[120,187,73,-0.2807761175672079],[120,187,74,-0.27860004375634195],[120,187,75,-0.276295462721849],[120,187,76,-0.27386407234319743],[120,187,77,-0.2713077315059753],[120,187,78,-0.2686284626574833],[120,187,79,-0.26582845436810665],[120,188,64,-0.2949858210378772],[120,188,65,-0.29401953195096153],[120,188,66,-0.29291606884127575],[120,188,67,-0.29167579650743414],[120,188,68,-0.2902992181961235],[120,188,69,-0.28878697810652654],[120,188,70,-0.2871398639004724],[120,188,71,-0.2853588092183754],[120,188,72,-0.2834448962009237],[120,188,73,-0.28139935801659577],[120,188,74,-0.27922358139483605],[120,188,75,-0.2769191091651054],[120,188,76,-0.27448764280165505],[120,188,77,-0.27193104497406806],[120,188,78,-0.26925134210358503],[120,188,79,-0.26645072692516747],[120,189,64,-0.2954944346385965],[120,189,65,-0.2945300202701846],[120,189,66,-0.2934282459894878],[120,189,67,-0.2921894782801089],[120,189,68,-0.29081422223226006],[120,189,69,-0.28930312404812986],[120,189,70,-0.2876569735529422],[120,189,71,-0.2858767067117737],[120,189,72,-0.28396340815208776],[120,189,73,-0.2819183136920632],[120,189,74,-0.27974281287455216],[120,189,75,-0.27743845150687696],[120,189,76,-0.2750069342063233],[120,189,77,-0.2724501269513617],[120,189,78,-0.2697700596386289],[120,189,79,-0.2669689286456073],[120,190,64,-0.2959054733316858],[120,190,65,-0.29494269372821313],[120,190,66,-0.2938423934568831],[120,190,67,-0.29260494045404306],[120,190,68,-0.29123084139985944],[120,190,69,-0.28972074422450833],[120,190,70,-0.28807544062003154],[120,190,71,-0.28629586855792144],[120,190,72,-0.28438311481239553],[120,190,73,-0.2823384174894389],[120,190,74,-0.28016316856144585],[120,190,75,-0.27785891640767535],[120,190,76,-0.2754273683603733],[120,190,77,-0.27287039325659557],[120,190,78,-0.2701900239957623],[120,190,79,-0.2673884601028854],[120,191,64,-0.2962246780667732],[120,191,65,-0.2952633035949771],[120,191,66,-0.2941642714008478],[120,191,67,-0.29292795065556987],[120,191,68,-0.29155484939121923],[120,191,69,-0.29004561700766185],[120,191,70,-0.2884010467850967],[120,191,71,-0.28662207840230436],[120,191,72,-0.2847098004605606],[120,191,73,-0.2826654530132945],[120,191,74,-0.2804904301013229],[120,191,75,-0.27818628229387476],[120,191,76,-0.27575471923525685],[120,191,77,-0.2731976121972013],[120,191,78,-0.2705169966369162],[120,191,79,-0.2677150747607884],[120,192,64,-0.2964581383482289],[120,192,65,-0.29549795112761457],[120,192,66,-0.29439999130169847],[120,192,67,-0.2931646290736617],[120,192,68,-0.2917923736057835],[120,192,69,-0.290283875526942],[120,192,70,-0.28863992944574024],[120,192,71,-0.28686147646931504],[120,192,72,-0.2849496067277949],[120,192,73,-0.28290556190448013],[120,192,74,-0.28073073777158175],[120,192,75,-0.2784266867317281],[120,192,76,-0.2759951203650961],[120,192,77,-0.2734379119822029],[120,192,78,-0.27075709918238],[120,192,79,-0.26795488641788323],[120,193,64,-0.29661229930861766],[120,193,65,-0.2956530946870267],[120,193,66,-0.2945560231202089],[120,193,67,-0.2933214556563044],[120,193,68,-0.2919499023832588],[120,193,69,-0.290442014936823],[120,193,70,-0.2887985890141621],[120,193,71,-0.28702056689313193],[120,193,72,-0.28510903995718706],[120,193,73,-0.28306525122599746],[120,193,74,-0.2808905978916043],[120,193,75,-0.27858663386033067],[120,193,76,-0.27615507230030045],[120,193,77,-0.27359778819459823],[120,193,78,-0.27091682090010094],[120,193,79,-0.2681143767119253],[120,194,64,-0.2966939688368997],[120,194,65,-0.29573555690965114],[120,194,66,-0.29463920251080244],[120,194,67,-0.29340527736297317],[120,194,68,-0.2920342922932484],[120,194,69,-0.2905268997415832],[120,194,70,-0.28888389627480227],[120,194,71,-0.2871062251062533],[120,194,72,-0.28519497862108256],[120,194,73,-0.28315140090720203],[120,194,74,-0.2809768902917871],[120,194,75,-0.2786730018835125],[120,194,76,-0.2762414501203849],[120,194,77,-0.2736841113232077],[120,194,78,-0.2710030262546971],[120,194,79,-0.2682004026842081],[120,195,64,-0.29671032476139003],[120,195,65,-0.29575253193446294],[120,195,66,-0.29465673809042736],[120,195,67,-0.2934233154732233],[120,195,68,-0.2920527754814165],[120,195,69,-0.2905457711769187],[120,195,70,-0.28890309979929263],[120,195,71,-0.287125705285703],[120,195,72,-0.2852146807964774],[120,195,73,-0.28317127124635],[120,195,74,-0.28099687584122723],[120,195,75,-0.27869305062067884],[120,195,76,-0.27626151100602026],[120,195,77,-0.27370413435401086],[120,195,78,-0.2710229625162006],[120,195,79,-0.2682202044038722],[120,196,64,-0.2966689220874511],[120,196,65,-0.2957115926851812],[120,196,66,-0.2946162187630862],[120,196,67,-0.2933831729513686],[120,196,68,-0.29201296707215496],[120,196,69,-0.29050625464845403],[120,196,70,-0.28886383341869015],[120,196,71,-0.28708664785687876],[120,196,72,-0.28517579169840124],[120,196,73,-0.28313251047145693],[120,196,74,-0.28095820403402927],[120,196,75,-0.27865442911657146],[120,196,76,-0.27622290187027243],[120,196,77,-0.27366550042093707],[120,196,78,-0.2709842674285018],[120,196,79,-0.2681814126521427],[120,197,64,-0.2965777002899598],[120,197,65,-0.29562069820771397],[120,197,66,-0.2945256211000581],[120,197,67,-0.293292841867288],[120,197,68,-0.29192287262779537],[120,197,69,-0.2904163672271969],[120,197,70,-0.28877412375302947],[120,197,71,-0.286997087055083],[120,197,72,-0.2850863512713274],[120,197,73,-0.28304316235951443],[120,197,74,-0.28086892063428326],[120,197,75,-0.2785651833099855],[120,197,76,-0.2761336670490828],[120,197,77,-0.2735762505161542],[120,197,78,-0.2708949769375346],[120,197,79,-0.2680920566665379],[120,198,64,-0.2964449906605081],[120,198,65,-0.29548820106281337],[120,198,66,-0.2943933167757824],[120,198,67,-0.29316071087332296],[120,198,68,-0.2917908956643257],[120,198,69,-0.2902845252018962],[120,198,70,-0.2886423977981609],[120,198,71,-0.2868654585446999],[120,198,72,-0.2849548018385747],[120,198,73,-0.2829116739140247],[120,198,74,-0.28073747537966776],[120,198,75,-0.2784337637614126],[120,198,76,-0.2760022560509454],[120,198,77,-0.27344483125981744],[120,198,78,-0.27076353297916556],[120,198,79,-0.2679605719450109],[120,199,64,-0.29627952370936284],[120,199,65,-0.2953228547739568],[120,199,66,-0.2942280800594147],[120,199,67,-0.29299557273728694],[120,199,68,-0.291625845223634],[120,199,69,-0.2901195516883227],[120,199,70,-0.28847749056989125],[120,199,71,-0.2867006070960403],[120,199,72,-0.2847899958097184],[120,199,73,-0.2827469031008729],[120,199,74,-0.2805727297437032],[120,199,75,-0.27826903343962506],[120,199,76,-0.2758375313658049],[120,199,77,-0.2732801027292976],[120,199,78,-0.27059879132680964],[120,199,79,-0.26779580811004433],[120,200,64,-0.2960904366221754],[120,200,65,-0.29513382133044375],[120,200,66,-0.29403909536205997],[120,200,67,-0.2928066319315791],[120,200,68,-0.29143694350227634],[120,200,69,-0.28993068429547275],[120,200,70,-0.2882886528054255],[120,200,71,-0.28651179431984597],[120,200,72,-0.2846012034460105],[120,200,73,-0.28255812664253444],[120,200,74,-0.28038396475665106],[120,200,75,-0.27808027556719683],[120,200,76,-0.27564877633316953],[120,200,77,-0.27309134634788546],[120,200,78,-0.2704100294987648],[120,200,79,-0.2676070368326954],[120,201,64,-0.2958872807714388],[120,201,65,-0.2949306787457182],[120,201,66,-0.29383596483967356],[120,201,67,-0.2926035122784022],[120,201,68,-0.29123383353675814],[120,201,69,-0.2897275828486826],[120,201,70,-0.2880855587221022],[120,201,71,-0.2863087064594536],[120,201,72,-0.28439812068379977],[120,201,73,-0.2823550478706116],[120,201,74,-0.2801808888850499],[120,201,75,-0.2778772015249604],[120,201,76,-0.2754457030694325],[120,201,77,-0.27288827283296635],[120,201,78,-0.2702069547252608],[120,201,79,-0.2674039598165816],[120,202,64,-0.29526394377265996],[120,202,65,-0.2943073393290905],[120,202,66,-0.2932126230753319],[120,202,67,-0.29198016823686024],[120,202,68,-0.2906104872888233],[120,202,69,-0.2891042344653698],[120,202,70,-0.2874622082745436],[120,202,71,-0.28568535401880746],[120,202,72,-0.28377476632115484],[120,202,73,-0.28173169165689105],[120,202,74,-0.2795575308909115],[120,202,75,-0.27725384182069357],[120,202,76,-0.2748223417248551],[120,202,77,-0.2722649099173159],[120,202,78,-0.2695835903070848],[120,202,79,-0.2667805939636255],[120,203,64,-0.2952595406531514],[120,203,65,-0.2943028869580192],[120,203,66,-0.29320812323981926],[120,203,67,-0.291975622726209],[120,203,68,-0.29060589789254476],[120,203,69,-0.2890996029711629],[120,203,70,-0.2874575364662285],[120,203,71,-0.28568064367421064],[120,203,72,-0.2837700192099468],[120,203,73,-0.2817269095383751],[120,203,74,-0.27955271551176486],[120,203,75,-0.27724899491265964],[120,203,76,-0.2748174650023867],[120,203,77,-0.2722600050751681],[120,203,78,-0.26957865901786016],[120,203,79,-0.2667756378752668],[120,204,64,-0.29524436152583533],[120,204,65,-0.2942875380429556],[120,204,66,-0.2931926106978553],[120,204,67,-0.2919599527257113],[120,204,68,-0.2905900766025974],[120,204,69,-0.28908363655460423],[120,204,70,-0.2874414310725245],[120,204,71,-0.28566440543216487],[120,204,72,-0.28375365422024557],[120,204,73,-0.281710423865966],[120,204,74,-0.2795361151780693],[120,204,75,-0.2772322858876166],[120,204,76,-0.27480065319632707],[120,204,77,-0.2722430963305199],[120,204,78,-0.2695616591006812],[120,204,79,-0.2667585524666062],[120,205,64,-0.2950044235864533],[120,205,65,-0.2940472392094359],[120,205,66,-0.29295196406068114],[120,205,67,-0.29171897139174285],[120,205,68,-0.29034877368060896],[120,205,69,-0.2888420251404782],[120,205,70,-0.2871995242340978],[120,205,71,-0.28542221619372665],[120,205,72,-0.28351119554668347],[120,205,73,-0.2814677086465597],[120,205,74,-0.27929315620992745],[120,205,75,-0.2769890958587564],[120,205,76,-0.2745572446683924],[120,205,77,-0.2719994817211383],[120,205,78,-0.2693178506654552],[120,205,79,-0.26651456228073744],[120,206,64,-0.29474144959069504],[120,206,65,-0.29378364519185474],[120,206,66,-0.2926877725041389],[120,206,67,-0.2914542048077974],[120,206,68,-0.2900834545846618],[120,206,69,-0.2885761760263281],[120,206,70,-0.2869331675479001],[120,206,71,-0.2851553743073497],[120,206,72,-0.2832438907304623],[120,206,73,-0.2811999630414399],[120,206,74,-0.2790249917989984],[120,206,75,-0.27672053443816635],[120,206,76,-0.27428830781764535],[120,206,77,-0.2717301907727654],[120,206,78,-0.2690482266740587],[120,206,79,-0.2662446259914023],[120,207,64,-0.2944497624430088],[120,207,65,-0.29349101423737034],[120,207,66,-0.29239423195610936],[120,207,67,-0.2911597889240244],[120,207,68,-0.28978819762965446],[120,207,69,-0.28828011223255845],[120,207,70,-0.28663633107614805],[120,207,71,-0.28485779920613286],[120,207,72,-0.2829456108945442],[120,207,73,-0.2809010121694101],[120,207,74,-0.278725403349919],[120,207,75,-0.276420341587279],[120,207,76,-0.2739875434111321],[120,207,77,-0.2714288872815581],[120,207,78,-0.2687464161466906],[120,207,79,-0.2659423400058961],[120,208,64,-0.29412399164299474],[120,208,65,-0.2931639143116307],[120,208,66,-0.29206585107081984],[120,208,67,-0.29083017530933375],[120,208,68,-0.2894573995263805],[120,208,69,-0.28794817783760895],[120,208,70,-0.28630330848665786],[120,208,71,-0.2845237363623101],[120,208,72,-0.28261055552121495],[120,208,73,-0.2805650117162557],[120,208,74,-0.2783885049303946],[120,208,75,-0.276082591916207],[120,208,76,-0.27364898874096166],[120,208,77,-0.2710895733372811],[120,208,78,-0.2684063880594063],[120,208,79,-0.26560164224501714],[120,209,64,-0.29375906669409124],[120,209,65,-0.29279721644646706],[120,209,66,-0.2916974445178463],[120,209,67,-0.29046012438400504],[120,209,68,-0.289085768560034],[120,209,69,-0.2875750311046399],[120,209,70,-0.2859287101299799],[120,209,71,-0.2841477503170887],[120,209,72,-0.282233245436864],[120,209,73,-0.280186440876685],[120,209,74,-0.2780087361724961],[120,209,75,-0.27570168754657065],[120,209,76,-0.27326701045080726],[120,209,77,-0.2707065821155952],[120,209,78,-0.26802244410427434],[120,209,79,-0.2652168048731365],[120,210,64,-0.2933502105696505],[120,210,65,-0.29238608814545564],[120,210,66,-0.29128412632944567],[120,210,67,-0.29004469871106886],[120,210,68,-0.28866831782791325],[120,210,69,-0.2871556376678217],[120,210,70,-0.2855074561765244],[120,210,71,-0.28372471777084995],[120,210,72,-0.28180851585747957],[120,210,73,-0.27976009535731994],[120,210,74,-0.27758085523532683],[120,210,75,-0.2752723510359937],[120,210,76,-0.272836297424358],[120,210,77,-0.2702745707325631],[120,210,78,-0.26758921151199866],[120,210,79,-0.26478242709096855],[120,211,64,-0.2928929332364195],[120,211,65,-0.29192598684736404],[120,211,66,-0.29082130330623457],[120,211,67,-0.2895792563464795],[120,211,68,-0.28820035853634096],[120,211,69,-0.2866852637782461],[120,211,70,-0.28503476981369846],[120,211,71,-0.28324982073372984],[120,211,72,-0.2813315094948762],[120,211,73,-0.27928108044075417],[120,211,74,-0.27709993182907167],[120,211,75,-0.2747896183642813],[120,211,76,-0.2723518537357378],[120,211,77,-0.2697885131613885],[120,211,78,-0.26710163593702807],[120,211,79,-0.2642934279910586],[120,212,64,-0.2923830252354189],[120,212,65,-0.29141265344747913],[120,212,66,-0.2903046684812097],[120,212,67,-0.28905944424807106],[120,212,68,-0.28767749335679194],[120,212,69,-0.28615946960945304],[120,212,70,-0.2845061705030463],[120,212,71,-0.2827185397365738],[120,212,72,-0.28079766972364884],[120,212,73,-0.27874480411067304],[120,212,74,-0.27656134030042656],[120,212,75,-0.27424883198128025],[120,212,76,-0.2718089916618863],[120,212,77,-0.26924369321138375],[120,212,78,-0.26655497440514053],[120,212,79,-0.26374503947598427],[120,213,64,-0.29181655132021034],[120,213,65,-0.29084210587679815],[120,213,66,-0.2897301946420955],[120,213,67,-0.2884811917432839],[120,213,68,-0.28709560984121607],[120,213,69,-0.2855741026225579],[120,213,70,-0.28391746729737777],[120,213,71,-0.28212664710225155],[120,213,72,-0.28020273380884],[120,213,73,-0.2781469702380184],[120,213,74,-0.2759607527793905],[120,213,75,-0.27364563391639896],[120,213,76,-0.2712033247568877],[120,213,77,-0.2686356975691505],[120,213,78,-0.2659447883234922],[120,213,79,-0.2631327992392509],[120,214,64,-0.2911898441525699],[120,214,65,-0.2902106327391122],[120,214,66,-0.28909412791204325],[120,214,67,-0.2878407040556863],[120,214,68,-0.2864508738965815],[120,214,69,-0.28492529099100616],[120,214,70,-0.2832647522179139],[120,214,71,-0.2814702002773555],[120,214,72,-0.27954272619434173],[120,214,73,-0.277483571828227],[120,214,74,-0.2752941323874476],[120,214,75,-0.2729759589498211],[120,214,76,-0.2705307609882701],[120,214,77,-0.2679604089019998],[120,214,78,-0.26526693655315625],[120,214,79,-0.2624525438089136],[120,215,64,-0.29049949805555497],[120,215,65,-0.28951478700595745],[120,215,66,-0.2883929813886612],[120,215,67,-0.2871344558902703],[120,215,68,-0.2857397233186153],[120,215,69,-0.28420943708493207],[120,215,70,-0.28254439369142326],[120,215,71,-0.28074553522426404],[120,215,72,-0.2788139518520153],[120,215,73,-0.2767508843295202],[120,215,74,-0.2745577265071174],[120,215,75,-0.27223602784538314],[120,215,76,-0.2697874959352574],[120,215,77,-0.26721399902358933],[120,215,78,-0.264517568544126],[120,215,79,-0.2617004016538965],[120,216,64,-0.2897423628239758],[120,216,65,-0.288751379769456],[120,216,66,-0.28762352884139575],[120,216,67,-0.28635918507754077],[120,216,68,-0.2849588613847647],[120,216,69,-0.28342321101514334],[120,216,70,-0.28175303004737284],[120,216,71,-0.2799492598735882],[120,216,72,-0.278012989691548],[120,216,73,-0.2759454590022621],[120,216,74,-0.273748060112893],[120,216,75,-0.2714223406451445],[120,216,76,-0.26897000604899335],[120,216,77,-0.2663929221217981],[120,216,78,-0.26369311753281044],[120,216,79,-0.26087278635303734],[120,217,64,-0.28891553759224764],[120,217,65,-0.28791747405301416],[120,217,66,-0.2867827984672303],[120,217,67,-0.2855118862763667],[120,217,68,-0.2841052505063423],[120,217,69,-0.2825635442366976],[120,217,70,-0.28088756307506013],[120,217,71,-0.2790782476369682],[120,217,72,-0.2771366860310097],[120,217,73,-0.2750641163493577],[120,217,74,-0.2728619291635338],[120,217,75,-0.2705316700256085],[120,217,76,-0.26807504197470133],[120,217,77,-0.2654939080488071],[120,217,78,-0.26279029380197927],[120,217,79,-0.25996638982681686],[120,218,64,-0.2880163647596551],[120,218,65,-0.2870103786799154],[120,218,66,-0.2858680667047422],[120,218,67,-0.28458980473563167],[120,218,68,-0.28317610593989806],[120,218,69,-0.28162762321210977],[120,218,70,-0.2799451516407635],[120,218,71,-0.2781296309802619],[120,218,72,-0.27618214812815567],[120,218,73,-0.2741039396077283],[120,218,74,-0.27189639405575383],[120,218,75,-0.26956105471564185],[120,218,76,-0.2670996219358246],[120,218,77,-0.26451395567342173],[120,218,78,-0.2618060780032059],[120,218,79,-0.25897817563181935],[120,219,64,-0.28704242397301905],[120,219,65,-0.28602764219979404],[120,219,66,-0.28487685210650127],[120,219,67,-0.2835904301146709],[120,219,68,-0.28216888955779984],[120,219,69,-0.2806128831341784],[120,219,70,-0.2789232053648989],[120,219,71,-0.27710079505710616],[120,219,72,-0.2751467377724547],[120,219,73,-0.2730622683008477],[120,219,74,-0.2708487731392901],[120,219,75,-0.2685077929760711],[120,219,76,-0.2660410251801275],[120,219,77,-0.26345032629562615],[120,219,78,-0.26073771454178796],[120,219,79,-0.2579053723179039],[120,220,64,-0.28599152616673595],[120,220,65,-0.2849670468729628],[120,220,66,-0.2838069092697827],[120,220,67,-0.28251149036246603],[120,220,68,-0.2810813036779979],[120,220,69,-0.27951700170839766],[120,220,70,-0.2778193783591525],[120,220,71,-0.27598937140282775],[120,220,72,-0.27402806493781773],[120,220,73,-0.27193669185231384],[120,220,74,-0.2697166362933201],[120,220,75,-0.26736943614093245],[120,220,76,-0.26489678548773254],[120,220,77,-0.2623005371233368],[120,220,78,-0.25958270502411906],[120,220,79,-0.2567454668480612],[120,221,64,-0.28486170766023633],[120,221,65,-0.28382660271264004],[120,221,66,-0.2826562228256436],[120,221,67,-0.28135094565564334],[120,221,68,-0.27991128495301787],[120,221,69,-0.2783378929950081],[120,221,70,-0.2766315630236391],[120,221,71,-0.2747932316887467],[120,221,72,-0.27282398149607257],[120,221,73,-0.2707250432605025],[120,221,74,-0.2684977985642817],[120,221,75,-0.26614378222041946],[120,221,76,-0.2636646847411386],[120,221,77,-0.2610623548114046],[120,221,78,-0.2583388017675583],[120,221,79,-0.255496198081003],[120,222,64,-0.2836512243128462],[120,222,65,-0.282604541585058],[120,222,66,-0.2814230014863395],[120,222,67,-0.2801069823952602],[120,222,68,-0.2786569983181659],[120,222,69,-0.27707370131066333],[120,222,70,-0.27535788390406446],[120,222,71,-0.2735104815368583],[120,222,72,-0.27153257499116945],[120,222,73,-0.26942539283428435],[120,222,74,-0.2671903138650714],[120,222,75,-0.26482886956551344],[120,222,76,-0.262342746557205],[120,222,77,-0.2597337890628496],[120,222,78,-0.2570040013727821],[120,222,79,-0.2541555503164663],[120,223,64,-0.28235854573601427],[120,223,65,-0.2812993113674197],[120,223,66,-0.2801056721510533],[120,223,67,-0.2787780072623417],[120,223,68,-0.2773168309989086],[120,223,69,-0.2757227951896798],[120,223,70,-0.27399669160886053],[120,223,71,-0.27213945439485276],[120,223,72,-0.2701521624740766],[120,223,73,-0.26803604198976816],[120,223,74,-0.2657924687355886],[120,223,75,-0.26342297059425646],[120,223,76,-0.26092922998106083],[120,223,77,-0.2583130862922869],[120,223,78,-0.25557653835857885],[120,223,79,-0.2527217469031938],[120,224,64,-0.2809823495629653],[120,224,65,-0.27990957016375995],[120,224,66,-0.2787028740699884],[120,224,67,-0.27736264133222877],[120,224,68,-0.27588938657749007],[120,224,69,-0.27428376140492894],[120,224,70,-0.2725465567863483],[120,224,71,-0.27067870547153905],[120,224,72,-0.268681284398432],[120,224,73,-0.26655551710813497],[120,224,74,-0.264302776164685],[120,224,75,-0.26192458557973164],[120,224,76,-0.25942262324200616],[120,224,77,-0.25679872335161014],[120,224,78,-0.2540548788591477],[120,224,79,-0.2511932439096545],[120,225,64,-0.2795215157757548],[120,225,65,-0.27843418057868874],[120,225,66,-0.27721345306680734],[120,225,67,-0.2758597142477133],[120,225,68,-0.27437347911875853],[120,225,69,-0.2727553990483461],[120,225,70,-0.27100626416191065],[120,225,71,-0.2691270057326428],[120,225,72,-0.26711869857692205],[120,225,73,-0.2649825634545332],[120,225,74,-0.2627199694734954],[120,225,75,-0.26033243649972415],[120,225,76,-0.25782163757137444],[120,225,77,-0.25518940131790446],[120,225,78,-0.2524377143838812],[120,225,79,-0.24956872385747975],[120,226,64,-0.2779751210896849],[120,226,65,-0.2768722040489766],[120,226,66,-0.2756364558193718],[120,226,67,-0.2742682584509166],[120,226,68,-0.2727681273551653],[120,226,69,-0.2711367136710171],[120,226,70,-0.2693748066351248],[120,226,71,-0.26748333595693885],[120,226,72,-0.26546337419834776],[120,226,73,-0.26331613915799645],[120,226,74,-0.2610429962601062],[120,226,75,-0.25864546094801977],[120,226,76,-0.25612520108231784],[120,226,77,-0.2534840393435469],[120,226,78,-0.2507239556395807],[120,226,79,-0.24784708951756707],[120,227,64,-0.2763424333951522],[120,227,65,-0.27522289523305055],[120,227,66,-0.2739711241988567],[120,227,67,-0.27258750347398775],[120,227,68,-0.27107254893100274],[120,227,69,-0.2694269114829112],[120,227,70,-0.26765137943693584],[120,227,71,-0.26574688085279197],[120,227,72,-0.26371448590544966],[120,227,73,-0.261555409252455],[120,227,74,-0.259271012405636],[120,227,75,-0.25686280610741696],[120,227,76,-0.2543324527115879],[120,227,77,-0.2516817685685686],[120,227,78,-0.24891272641518813],[120,227,79,-0.24602745776893353],[120,228,64,-0.27462290625689634],[120,228,65,-0.2734856964583726],[120,228,66,-0.27221688966720825],[120,228,67,-0.2708168702885857],[120,228,68,-0.2692861547058555],[120,228,69,-0.2676253936122348],[120,228,70,-0.26583537434683324],[120,228,71,-0.26391702323507304],[120,228,72,-0.26187140793346353],[120,228,73,-0.259699739778813],[120,228,74,-0.25740337614169806],[120,228,75,-0.25498382278441856],[120,228,76,-0.2524427362232804],[120,228,77,-0.2497819260952493],[120,228,78,-0.24700335752899538],[120,228,79,-0.24410915352028162],[120,229,64,-0.27281617347060405],[120,229,65,-0.27166023222665225],[120,229,66,-0.2703733677328968],[120,229,67,-0.2689559657141024],[120,229,68,-0.2674085431172145],[120,229,69,-0.26573175042435093],[120,229,70,-0.2639263739699873],[120,229,71,-0.26199333826240356],[120,229,72,-0.2599337083093537],[120,229,73,-0.2577486919480364],[120,229,74,-0.2554396421791931],[120,229,75,-0.2530080595055558],[120,229,76,-0.25045559427449293],[120,229,77,-0.24778404902488882],[120,229,78,-0.24499538083828498],[120,229,79,-0.2420917036942286],[120,230,64,-0.27092204367695083],[120,230,65,-0.26974630377697906],[120,230,66,-0.2684403524650507],[120,230,67,-0.2670045768847078],[120,230,68,-0.2654394946023392],[120,230,69,-0.263745755900357],[120,230,70,-0.26192414607442627],[120,230,71,-0.2599755877348132],[120,230,72,-0.257901143111814],[120,230,73,-0.25570201636534595],[120,230,74,-0.253379555898521],[120,230,75,-0.2509352566754315],[120,230,76,-0.2483707625429873],[120,230,77,-0.2456878685568512],[120,230,78,-0.24288852331148925],[120,230,79,-0.23997483127428987],[120,231,64,-0.26894049503304496],[120,231,65,-0.26774388370683366],[120,231,66,-0.26641781106593354],[120,231,67,-0.26496266577518357],[120,231,68,-0.26337896607933187],[120,231,69,-0.2616673620752792],[120,231,70,-0.259828637988224],[120,231,71,-0.25786371445177525],[120,231,72,-0.25577365079199854],[120,231,73,-0.253559647315472],[120,231,74,-0.251223047601176],[120,231,75,-0.24876534079644363],[120,231,76,-0.2461881639168152],[120,231,77,-0.24349330414983772],[120,231,78,-0.2406827011628323],[120,231,79,-0.2377584494145779],[120,232,64,-0.2668716699412186],[120,232,65,-0.26565311065093145],[120,232,66,-0.26430587850171117],[120,232,67,-0.2628303637854863],[120,232,68,-0.2612270854873677],[120,232,69,-0.2594966935358295],[120,232,70,-0.25763997105663317],[120,232,71,-0.2556578366305611],[120,232,72,-0.2535513465549232],[120,232,73,-0.2513216971089173],[120,232,74,-0.24897022682266212],[120,232,75,-0.24649841875013423],[120,232,76,-0.24390790274584973],[120,232,77,-0.2412004577453326],[120,232,78,-0.23837801404939107],[120,232,79,-0.23544265561215405],[120,233,64,-0.26471586983526385],[120,233,65,-0.263474284017987],[120,233,66,-0.26210485219160395],[120,233,67,-0.26060796638414274],[120,233,68,-0.25898414638617995],[120,233,69,-0.25723404197782374],[120,233,70,-0.2553584351592729],[120,233,71,-0.2533582423850167],[120,233,72,-0.2512345168016423],[120,233,73,-0.24898845048932738],[120,233,74,-0.24662137670683792],[120,233,75,-0.24413477214026347],[120,233,76,-0.24153025915532889],[120,233,77,-0.23880960805332574],[120,233,78,-0.23597473933068613],[120,233,79,-0.23302772594214471],[120,234,64,-0.2624735500240717],[120,234,65,-0.2612078587853629],[120,234,66,-0.25981518675538473],[120,234,67,-0.2582959278104321],[120,234,68,-0.25665060261475836],[120,234,69,-0.25487986082322067],[120,234,70,-0.25298448328732104],[120,234,71,-0.2509653842647158],[120,234,72,-0.24882361363215422],[120,234,73,-0.24656035910192675],[120,234,74,-0.24417694844164206],[120,234,75,-0.24167485169756608],[120,234,76,-0.23905568342136096],[120,234,77,-0.2363212049002673],[120,234,78,-0.23347332639075202],[120,234,79,-0.2305141093555706],[120,235,64,-0.26014531459261014],[120,235,65,-0.25885444035153904],[120,235,66,-0.25743748881915773],[120,235,67,-0.25589485583529115],[120,235,68,-0.2542270630091945],[120,235,69,-0.25243475989671227],[120,235,70,-0.25051872618064963],[120,235,71,-0.24847987385442594],[120,235,72,-0.24631924940897165],[120,235,73,-0.2440380360229526],[120,235,74,-0.24163755575613366],[120,235,75,-0.2391192717461238],[120,235,76,-0.23648479040833204],[120,235,77,-0.23373586363918497],[120,235,78,-0.2308743910226223],[120,235,79,-0.22790242203982358],[120,236,64,-0.25773191136035556],[120,236,65,-0.2564147794465137],[120,236,66,-0.25497251187953174],[120,236,67,-0.25340550658106],[120,236,68,-0.2517142861797913],[120,236,69,-0.24989950016198692],[120,236,70,-0.24796192702501885],[120,236,71,-0.24590247643400187],[120,236,72,-0.2437221913814731],[120,236,73,-0.2414222503502058],[120,236,74,-0.23900396947896863],[120,236,75,-0.23646880473147114],[120,236,76,-0.23381835406832774],[120,236,77,-0.23105435962208765],[120,236,78,-0.22817870987534983],[120,236,79,-0.22519344184191337],[120,237,64,-0.25523422689712494],[120,237,65,-0.25388976710008637],[120,237,66,-0.25242115122613706],[120,237,67,-0.25082877940001136],[120,237,68,-0.24911317534738342],[120,237,69,-0.2472749885176081],[120,237,70,-0.2453149962092771],[120,237,71,-0.24323410569865866],[120,237,72,-0.24103335637098466],[120,237,73,-0.2387139218546669],[120,237,74,-0.2362771121582562],[120,237,75,-0.2337243758103844],[120,237,76,-0.2310573020025225],[120,237,77,-0.22827762273459984],[120,237,78,-0.22538721496350667],[120,237,79,-0.22238810275442922],[120,238,64,-0.25265328159624345],[120,238,65,-0.25128042966795594],[120,238,66,-0.2497844389224172],[120,238,67,-0.24816571181159996],[120,238,68,-0.24642477323879985],[120,238,69,-0.24456227265244312],[120,238,70,-0.2425789861424964],[120,238,71,-0.24047581853954658],[120,238,72,-0.23825380551651698],[120,238,73,-0.23591411569310095],[120,238,74,-0.2334580527427239],[120,238,75,-0.23088705750227778],[120,238,76,-0.22820271008445792],[120,238,77,-0.22540673199275152],[120,238,78,-0.22250098823909226],[120,238,79,-0.21948748946413976],[120,239,64,-0.24999022480517608],[120,239,65,-0.2485879239157638],[120,239,66,-0.24706353884483045],[120,239,67,-0.24541747449856344],[120,239,68,-0.24365025704160415],[120,239,69,-0.2417625359607748],[120,239,70,-0.23975508613118224],[120,239,71,-0.23762880988477297],[120,239,72,-0.2353847390813023],[120,239,73,-0.23302403718179843],[120,239,74,-0.23054800132433406],[120,239,75,-0.22795806440234956],[120,239,76,-0.22525579714535682],[120,239,77,-0.2224429102020712],[120,239,78,-0.2195212562259915],[120,239,79,-0.21649283196338065],[120,240,64,-0.24724633001351715],[120,240,65,-0.24581353216097301],[120,240,66,-0.24425974178034615],[120,240,67,-0.2425853663617623],[120,240,68,-0.24079093341799873],[120,240,69,-0.23887709251698352],[120,240,70,-0.23684461731643958],[120,240,71,-0.2346944076007509],[120,240,72,-0.2324274913200085],[120,240,73,-0.23004502663132664],[120,240,74,-0.22754830394222914],[120,240,75,-0.22493874795636115],[120,240,76,-0.22221791972134852],[120,240,77,-0.2193875186788563],[120,240,78,-0.2164493847168628],[120,240,79,-0.21340550022410398],[120,241,64,-0.24442299009842128],[120,241,65,-0.24295865747267242],[120,241,66,-0.24137446058232903],[120,241,67,-0.23967080963385035],[120,241,68,-0.2378482335779828],[120,241,69,-0.23590738210989104],[120,241,70,-0.23384902767119142],[120,241,71,-0.2316740674539678],[120,241,72,-0.22938352540672902],[120,241,73,-0.22697855424239344],[120,241,74,-0.2244604374481063],[120,241,75,-0.22183059129714056],[120,241,76,-0.21909056686270756],[120,241,77,-0.21624205203372304],[120,241,78,-0.21328687353255382],[120,241,79,-0.210226998934689],[120,242,64,-0.24152171262735544],[120,242,65,-0.2400248189291776],[120,242,66,-0.2384092253846818],[120,242,67,-0.236675345051646],[120,242,68,-0.23482370841163758],[120,242,69,-0.23285496533663597],[120,242,70,-0.23076988705731316],[120,242,71,-0.22856936813304451],[120,242,72,-0.22625442842361077],[120,242,73,-0.2238262150626822],[120,242,74,-0.22128600443288016],[120,242,75,-0.21863520414267912],[120,242,76,-0.21587535500496302],[120,242,77,-0.2130081330172936],[120,242,78,-0.2100353513439044],[120,242,79,-0.20695896229937527],[120,243,64,-0.2385441152183153],[120,243,65,-0.2370136469335805],[120,243,66,-0.23536567887439686],[120,243,67,-0.23360062708735807],[120,243,68,-0.23171902368068886],[120,243,69,-0.22972151875623426],[120,243,70,-0.2276088823428455],[120,243,71,-0.22538200633123806],[120,243,72,-0.22304190641028343],[120,243,73,-0.2205897240048228],[120,243,74,-0.2180267282148004],[120,243,75,-0.2153543177559778],[120,243,76,-0.21257402290204552],[120,243,77,-0.20968750742818598],[120,243,78,-0.20669657055610446],[120,243,79,-0.2036031489004826],[120,244,64,-0.2354919209574453],[120,244,65,-0.23392687858718042],[120,244,66,-0.23224557162245352],[120,244,67,-0.23044841923859638],[120,244,68,-0.22853595526928205],[120,244,69,-0.22650883010275846],[120,244,70,-0.2243678125792098],[120,244,71,-0.22211379188932234],[120,244,72,-0.21974777947401514],[120,244,73,-0.21727091092542583],[120,244,74,-0.21468444788894714],[120,244,75,-0.21198977996657686],[120,244,76,-0.20918842662139692],[120,244,77,-0.2062820390832355],[120,244,78,-0.20327240225553078],[120,244,79,-0.20016143662334573],[120,245,64,-0.232366953873977],[120,245,65,-0.23076635312071403],[120,245,66,-0.2290507574729732],[120,245,67,-0.227220589377087],[120,245,68,-0.22527638449388276],[120,245,69,-0.22321879355804808],[120,245,70,-0.22104858423834595],[120,245,71,-0.21876664299875703],[120,245,72,-0.21637397696051053],[120,245,73,-0.21387171576509123],[120,245,74,-0.211261113438021],[120,245,75,-0.20854355025367577],[120,245,76,-0.20572053460095463],[120,245,77,-0.20279370484985582],[120,245,78,-0.19976483121897315],[120,245,79,-0.19663581764387117],[120,246,64,-0.22917113447264148],[120,246,65,-0.22753400738354035],[120,246,66,-0.22578318899079197],[120,246,67,-0.22391910515624613],[120,246,68,-0.22194229347246386],[120,246,69,-0.21985340508411388],[120,246,70,-0.2176532065099298],[120,246,71,-0.2153425814653095],[120,246,72,-0.21292253268551375],[120,246,73,-0.21039418374955843],[120,246,74,-0.20775878090458955],[120,246,75,-0.20501769489101185],[120,246,76,-0.20217242276817948],[120,246,77,-0.199224589740708],[120,246,78,-0.1961759509854215],[120,246,79,-0.193028393478889],[120,247,64,-0.22590647532348251],[120,247,65,-0.22423187139070466],[120,247,66,-0.22244491296737512],[120,247,67,-0.22054602947753998],[120,247,68,-0.21853576055290191],[120,247,69,-0.21641475781515784],[120,247,70,-0.21418378665859805],[120,247,71,-0.21184372803305251],[120,247,72,-0.20939558022714067],[120,247,73,-0.2068404606519194],[120,247,74,-0.20417960762471643],[120,247,75,-0.20141438215342156],[120,247,76,-0.19854626972104572],[120,247,77,-0.19557688207060298],[120,247,78,-0.19250795899033346],[120,247,79,-0.18934137009921848],[120,248,64,-0.22257507670898347],[120,248,65,-0.22086206392779928],[120,248,66,-0.21903806598498787],[120,248,67,-0.21710351601554223],[120,248,68,-0.21505895580049583],[120,248,69,-0.21290503750912115],[120,248,70,-0.21064252544108497],[120,248,71,-0.20827229776864475],[120,248,72,-0.20579534827884427],[120,248,73,-0.203212788115801],[120,248,74,-0.20052584752287383],[120,248,75,-0.19773587758498445],[120,248,76,-0.1948443519708999],[120,248,77,-0.19185286867553397],[120,248,78,-0.18876315176228275],[120,248,79,-0.18557705310534922],[120,249,64,-0.21917912232867431],[120,249,65,-0.21742678821378136],[120,249,66,-0.2155648700392857],[120,249,67,-0.21359380480185708],[120,249,68,-0.21151413654477602],[120,249,69,-0.20932651805892932],[120,249,70,-0.20703171258344832],[120,249,71,-0.20463059550607177],[120,249,72,-0.20212415606319445],[120,249,73,-0.1995134990396943],[120,249,74,-0.19679984646832227],[120,249,75,-0.19398453932893467],[120,249,76,-0.19106903924736918],[120,249,77,-0.18805493019402786],[120,249,78,-0.1849439201821772],[120,249,79,-0.1817378429659251],[120,250,64,-0.2157208750611378],[120,250,65,-0.21392832762167313],[120,250,66,-0.21202762822025012],[120,250,67,-0.21001921786782818],[120,250,68,-0.20790364298552433],[120,250,69,-0.20568155706335578],[120,250,70,-0.2033537223183003],[120,250,71,-0.20092101135175966],[120,250,72,-0.1983844088063832],[120,250,73,-0.1957450130223466],[120,250,74,-0.19300403769286945],[120,250,75,-0.19016281351925213],[120,250,76,-0.18722278986523244],[120,250,77,-0.18418553641072477],[120,250,78,-0.1810527448049537],[120,250,79,-0.1778262303189393],[120,251,64,-0.2122026727833261],[120,251,65,-0.21036904145704982],[120,251,66,-0.20842872045137067],[120,251,67,-0.20638215494593837],[120,251,68,-0.20422989385790968],[120,251,69,-0.2019725914574042],[120,251,70,-0.1996110089819454],[120,251,71,-0.19714601624996908],[120,251,72,-0.1945785932733608],[120,251,73,-0.19190983186911714],[120,251,74,-0.18914093726990844],[120,251,75,-0.18627322973383287],[120,251,76,-0.18330814615315338],[120,251,77,-0.1802472416620864],[120,251,78,-0.17709219124365239],[120,251,79,-0.17384479133554231],[120,252,64,-0.20862692424736057],[120,252,65,-0.20675136079449308],[120,252,66,-0.20477059928725733],[120,252,67,-0.202685089230082],[120,252,68,-0.20049538215691953],[120,252,69,-0.19820213320239832],[120,252,70,-0.19580610267161436],[120,252,71,-0.19330815760865205],[120,252,72,-0.1907092733637894],[120,252,73,-0.18801053515948563],[120,252,74,-0.1852131396549288],[120,252,75,-0.18231839650943138],[120,252,76,-0.17932772994446877],[120,252,77,-0.1762426803044257],[120,252,78,-0.17306490561606191],[120,252,79,-0.1697961831466549],[120,253,64,-0.20499610501473298],[120,253,65,-0.20307778437192547],[120,253,66,-0.20105578576959282],[120,253,67,-0.1989305631946212],[120,253,68,-0.19670267092100324],[120,253,69,-0.1943727650356845],[120,253,70,-0.19194160496269996],[120,253,71,-0.1894100549856853],[120,253,72,-0.18677908576872349],[120,253,73,-0.18404977587562354],[120,253,74,-0.18122331328740504],[120,253,75,-0.17830099691828283],[120,253,76,-0.17528423812994132],[120,253,77,-0.17217456224416627],[120,253,78,-0.16897361005384626],[120,253,79,-0.16568313933229606],[120,254,64,-0.2013127534478104],[120,254,65,-0.19935087454272749],[120,254,66,-0.19728686534133089],[120,254,67,-0.1951211844721309],[120,254,68,-0.19285438907482422],[120,254,69,-0.19048713627985403],[120,254,70,-0.18802018468589876],[120,254,71,-0.18545439583537476],[120,254,72,-0.1827907356879157],[120,254,73,-0.18003027609192324],[120,254,74,-0.17717419625396236],[120,254,75,-0.17422378420629947],[120,254,76,-0.17118043827236595],[120,254,77,-0.16804566853022507],[120,254,78,-0.16482109827404035],[120,254,79,-0.16150846547351416],[120,255,64,-0.19757946675882943],[120,255,65,-0.19557325328582598],[120,255,66,-0.19346648381932663],[120,255,67,-0.191259621790018],[120,255,68,-0.18895322733131498],[120,255,69,-0.18654795871167162],[120,255,70,-0.18404457376444916],[120,255,71,-0.18144393131543107],[120,255,72,-0.17874699260794447],[120,255,73,-0.1759548227256854],[120,255,74,-0.17306859201301705],[120,255,75,-0.17008957749304343],[120,255,76,-0.16701916428324115],[120,255,77,-0.16385884700872078],[120,255,78,-0.16061023121312656],[120,255,79,-0.15727503476713234],[120,256,64,-0.19379889711629011],[120,256,65,-0.19174759827366106],[120,256,66,-0.18959734342530743],[120,256,67,-0.1873486009659266],[120,256,68,-0.18500193415294247],[120,256,69,-0.18255800249062237],[120,256,70,-0.18001756311137584],[120,256,71,-0.177381472154319],[120,256,72,-0.17465068614106993],[120,256,73,-0.1718262633488694],[120,256,74,-0.16890936518079636],[120,256,75,-0.1659012575333807],[120,256,76,-0.16280331216139787],[120,256,77,-0.15961700803991363],[120,256,78,-0.15634393272358926],[120,256,79,-0.15298578370320648],[120,257,64,-0.18997374780865062],[120,257,65,-0.18787663899793494],[120,257,66,-0.18568219887508686],[120,257,67,-0.18339090096182697],[120,257,68,-0.18100331177207807],[120,257,69,-0.17852009214696973],[120,257,70,-0.1759419985866324],[120,257,71,-0.17326988457887593],[120,257,72,-0.17050470192470857],[120,257,73,-0.16764750206079626],[120,257,74,-0.16469943737862974],[120,257,75,-0.16166176254070286],[120,257,76,-0.1585358357934859],[120,257,77,-0.15532312027726114],[120,257,78,-0.15202518533283538],[120,257,79,-0.14864370780508196],[120,258,64,-0.18610676946551563],[120,258,65,-0.183963152953333],[120,258,66,-0.181723853526213],[120,258,67,-0.1793893499969822],[120,258,68,-0.17696021227067582],[120,258,69,-0.17443710262952583],[120,258,70,-0.17182077701434634],[120,258,71,-0.16911208630240426],[120,258,72,-0.16631197758173655],[120,258,73,-0.16342149542201523],[120,258,74,-0.16044178314172014],[120,258,75,-0.15737408407193176],[120,258,76,-0.15421974281652073],[120,258,77,-0.1509802065088074],[120,258,78,-0.14765702606470038],[120,258,79,-0.14425185743227043],[120,259,64,-0.1822007563362224],[120,259,65,-0.18000996187912555],[120,259,66,-0.17772515558395885],[120,259,67,-0.17534682171970306],[120,259,68,-0.17287553371915826],[120,259,69,-0.1703119554130409],[120,259,70,-0.16765684226006994],[120,259,71,-0.16491104257313688],[120,259,72,-0.16207549874151844],[120,259,73,-0.159151248449232],[120,259,74,-0.1561394258892952],[120,259,75,-0.1530412629742029],[120,259,76,-0.14985809054239685],[120,259,77,-0.14659133956080073],[120,259,78,-0.14324254232343003],[120,259,79,-0.13981333364603593],[120,260,64,-0.17825854262572727],[120,260,65,-0.17601992805854633],[120,260,66,-0.17368899436555063],[120,260,67,-0.1712662314377787],[120,260,68,-0.16875221637440663],[120,260,69,-0.1661476146650971],[120,260,70,-0.16345318136792392],[120,260,71,-0.1606697622829707],[120,260,72,-0.1577982951215544],[120,260,73,-0.15483981067118724],[120,260,74,-0.15179543395602296],[120,260,75,-0.1486663853931145],[120,260,76,-0.14545398194424614],[120,260,77,-0.14215963826342437],[120,260,78,-0.13878486784002841],[120,260,79,-0.13533128413758166],[120,261,64,-0.17428299888798493],[120,261,65,-0.17199595067614765],[120,261,66,-0.1696182966228349],[120,261,67,-0.1671505324077942],[120,261,68,-0.16459323893706002],[120,261,69,-0.16194708347272235],[120,261,70,-0.15921282075785154],[120,261,71,-0.15639129413667363],[120,261,72,-0.15348343666995523],[120,261,73,-0.15049027224570088],[120,261,74,-0.14741291668491618],[120,261,75,-0.14425257884276288],[120,261,76,-0.14101056170486737],[120,261,77,-0.1376882634788657],[120,261,78,-0.13428717868118967],[120,261,79,-0.1308088992190531],[120,262,64,-0.17027702847673037],[120,262,65,-0.16794096223303578],[120,262,66,-0.16551602292328743],[120,262,67,-0.16300271218323104],[120,262,68,-0.16040161486802446],[120,262,69,-0.15771340012861956],[120,262,70,-0.15493882248287177],[120,262,71,-0.15207872288147006],[120,262,72,-0.1491340297686478],[120,262,73,-0.1461057601377792],[120,262,74,-0.1429950205816108],[120,262,75,-0.1398030083374564],[120,262,76,-0.13653101232711756],[120,262,77,-0.13318041419161164],[120,262,78,-0.12975268932071188],[120,262,79,-0.12624940787725764],[120,263,64,-0.16624356405355245],[120,263,65,-0.16385792501988022],[120,263,66,-0.16138516408925707],[120,263,67,-0.1588257890212439],[120,263,68,-0.1561803887640803],[120,263,69,-0.15344963447689908],[120,263,70,-0.15063428054622968],[120,263,71,-0.14773516559688454],[120,263,72,-0.14475321349719011],[120,263,73,-0.14168943435866788],[120,263,74,-0.13854492552991143],[120,263,75,-0.13532087258499081],[120,263,76,-0.132018550306147],[120,263,77,-0.12863932366085573],[120,263,78,-0.12518464877326635],[120,263,79,-0.12165607388997457],[120,264,64,-0.16218556415348134],[120,264,65,-0.15974982764791418],[120,264,66,-0.1572287376956633],[120,264,67,-0.1546228083483372],[120,264,68,-0.1519326327928167],[120,264,69,-0.14915888431854646],[120,264,70,-0.14630231727866572],[120,264,71,-0.14336376804508089],[120,264,72,-0.1403441559574357],[120,264,73,-0.1372444842660882],[120,264,74,-0.1340658410688359],[120,264,75,-0.1308094002417287],[120,264,76,-0.12747642236372242],[120,264,77,-0.12406825563525853],[120,264,78,-0.1205863367907748],[120,264,79,-0.11703219200510528],[120,265,64,-0.1581060098079029],[120,265,65,-0.15561968163774464],[120,265,66,-0.15304978462596408],[120,265,67,-0.15039683928475323],[120,265,68,-0.14766144318670138],[120,265,69,-0.1448442718764299],[120,265,70,-0.14194607977561546],[120,265,71,-0.13896770108150042],[120,265,72,-0.1359100506588486],[120,265,73,-0.13277412492545743],[120,265,74,-0.12956100273096255],[120,265,75,-0.12627184622927912],[120,265,76,-0.12290790174443134],[120,265,77,-0.11947050062985598],[120,265,78,-0.11596106012118335],[120,265,79,-0.11238108418245396],[120,266,64,-0.1540079012249404],[120,266,65,-0.1514705180661099],[120,266,66,-0.14885136568653334],[120,266,67,-0.14615097122771498],[120,266,68,-0.14336993679642873],[120,266,69,-0.14050894031999578],[120,266,70,-0.13756873639448508],[120,266,71,-0.13455015712594448],[120,266,72,-0.13145411296461557],[120,266,73,-0.12828159353224572],[120,266,74,-0.12503366844222896],[120,266,75,-0.12171148811292887],[120,266,76,-0.1183162845739249],[120,266,77,-0.11484937226527436],[120,266,78,-0.1113121488297904],[120,266,79,-0.10770609589829822],[120,267,64,-0.14989425452711813],[120,267,65,-0.1473053842703973],[120,267,66,-0.14463655827925959],[120,267,67,-0.141888310493329],[120,267,68,-0.1390612477033551],[120,267,69,-0.13615605034945366],[120,267,70,-0.13317347331180385],[120,267,71,-0.13011434669390665],[120,267,72,-0.12697957659835984],[120,267,73,-0.12377014589526197],[120,267,74,-0.12048711498297959],[120,267,75,-0.1171316225416244],[120,267,76,-0.11370488627899034],[120,267,77,-0.11020820366903694],[120,267,78,-0.10664295268292073],[120,267,79,-0.10301059251253658],[120,268,64,-0.14576809854652645],[120,268,65,-0.14312734061114324],[120,268,66,-0.14040845313258932],[120,268,67,-0.13761197701738187],[120,268,68,-0.1347385238912489],[120,268,69,-0.13178877683968576],[120,268,70,-0.12876349114049074],[120,268,71,-0.12566349498838741],[120,268,72,-0.12248969021168898],[120,268,73,-0.11924305298111715],[120,268,74,-0.11592463451050561],[120,268,75,-0.112535561749743],[120,268,76,-0.10907703806969854],[120,268,77,-0.1055503439392173],[120,268,78,-0.10195683759419127],[120,268,79,-0.09829795569866401],[120,269,64,-0.14163247167738402],[120,269,65,-0.13893945729241264],[120,269,66,-0.13617015109091113],[120,269,67,-0.13332510111491575],[120,269,68,-0.13040492397724912],[120,269,69,-0.1274103055437702],[120,269,70,-0.12434200160712183],[120,269,71,-0.12120083855208152],[120,269,72,-0.11798771401247155],[120,269,73,-0.11470359751974302],[120,269,74,-0.1113495311429602],[120,269,75,-0.10792663012054393],[120,269,76,-0.10443608348351319],[120,269,77,-0.10087915467031672],[120,269,78,-0.09725718213325596],[120,269,79,-0.09357157993645948],[120,270,64,-0.1374904187858933],[120,270,65,-0.13474481123994814],[120,270,66,-0.13192475996217062],[120,270,67,-0.12903082029848056],[120,270,68,-0.12606361400191995],[120,270,69,-0.12302382985600585],[120,270,70,-0.11991222428908854],[120,270,71,-0.11672962197982467],[120,270,72,-0.11347691645371982],[120,270,73,-0.11015507067085745],[120,270,74,-0.10676511760453555],[120,270,75,-0.10330816081117572],[120,270,76,-0.09978537499124024],[120,270,77,-0.09619800654125016],[120,270,78,-0.09254737409690411],[120,270,79,-0.08883486906726074],[120,271,64,-0.13334498817759777],[120,271,65,-0.13054648303730393],[120,271,66,-0.12767539142393214],[120,271,67,-0.1247322761552741],[120,271,68,-0.1217177642786228],[120,271,69,-0.11863254763466236],[120,271,70,-0.11547738341186803],[120,271,71,-0.11225309469152395],[120,271,72,-0.10896057098331369],[120,271,73,-0.10560076875160301],[120,271,74,-0.10217471193213057],[120,271,75,-0.09868349243947938],[120,271,76,-0.09512827066505569],[120,271,77,-0.09151027596567579],[120,271,78,-0.08783080714275593],[120,271,79,-0.08409123291206988],[120,272,64,-0.12919922862213712],[120,272,65,-0.12634755391985747],[120,272,66,-0.12342515798777992],[120,272,67,-0.12043261128306776],[120,272,68,-0.11737054630209554],[120,272,69,-0.11423965808434361],[120,272,70,-0.11104070470629757],[120,272,71,-0.1077745077654626],[120,272,72,-0.10444195285444863],[120,272,73,-0.10104399002524472],[120,272,74,-0.09758163424339744],[120,272,75,-0.09405596583246756],[120,272,76,-0.09046813090849232],[120,272,77,-0.08681934180455164],[120,272,78,-0.08311087748543428],[120,272,79,-0.07934408395236969],[120,273,64,-0.12505618643529404],[120,273,65,-0.1221511028265913],[120,273,66,-0.11917717002195066],[120,273,67,-0.11613496628480241],[120,273,68,-0.11302512971612783],[120,273,69,-0.10984835869785275],[120,273,70,-0.10660541232573556],[120,273,71,-0.1032971108318601],[120,273,72,-0.0999243359966917],[120,273,73,-0.09648803155081154],[120,273,74,-0.09298920356604518],[120,273,75,-0.08942892083636167],[120,273,76,-0.08580831524826826],[120,273,77,-0.08212858214079793],[120,273,78,-0.07839098065509037],[120,273,79,-0.07459683407352696],[120,274,64,-0.1209189026185441],[120,274,65,-0.11796020350985964],[120,274,66,-0.11493453283241234],[120,274,67,-0.11184247682207765],[120,274,68,-0.1086846793405542],[120,274,69,-0.10546184225778221],[120,274,70,-0.10217472582333836],[120,274,71,-0.09882414902692055],[120,274,72,-0.09541098994787889],[120,274,73,-0.09193618609391219],[120,274,74,-0.08840073472863841],[120,274,75,-0.08480569318842457],[120,274,76,-0.08115217918819229],[120,274,77,-0.07744137111630478],[120,274,78,-0.07367450831852723],[120,274,79,-0.06985289137102807],[120,275,64,-0.11679041005600294],[120,275,65,-0.11377792170303258],[120,275,66,-0.11070034380228366],[120,275,67,-0.1075582707274228],[120,275,68,-0.1043523522574542],[120,275,69,-0.10108329389771775],[120,275,70,-0.09775185718933938],[120,275,71,-0.09435886000725136],[120,275,72,-0.09090517684673544],[120,275,73,-0.08739173909861081],[120,275,74,-0.08381953531277231],[120,275,75,-0.08018961145046816],[120,275,76,-0.07650307112503102],[120,275,77,-0.07276107583116687],[120,275,78,-0.068964845162798],[120,275,79,-0.06511565701942296],[120,276,64,-0.11267373076866566],[120,276,65,-0.10960731234591076],[120,276,66,-0.10647768958948267],[120,276,67,-0.10328546517524023],[120,276,68,-0.10003129495644875],[120,276,69,-0.09671588822294303],[120,276,70,-0.09334000794821468],[120,276,71,-0.08990447102454058],[120,276,72,-0.08641014848610556],[120,276,73,-0.08285796572024479],[120,276,74,-0.07924890266650514],[120,276,75,-0.07558399400392107],[120,276,76,-0.07186432932621384],[120,276,77,-0.06809105330502258],[120,276,78,-0.06426536584116022],[120,276,79,-0.06038852220385871],[120,277,64,-0.10857187322614847],[120,277,65,-0.10545141686812454],[120,277,66,-0.10226964338282485],[120,277,67,-0.09902716391164179],[120,277,68,-0.09572464053931384],[120,277,69,-0.09236278649087043],[120,277,70,-0.08894236631596586],[120,277,71,-0.08546419606071992],[120,277,72,-0.08192914342702196],[120,277,73,-0.07833812791941858],[120,277,74,-0.07469212097928679],[120,277,75,-0.07099214610668925],[120,277,76,-0.06723927896961873],[120,277,77,-0.06343464750074057],[120,277,78,-0.059579431981626185],[120,277,79,-0.055674865114443084],[120,278,64,-0.1044878297158282],[120,278,65,-0.1013132605304109],[120,278,66,-0.09807926221645796],[120,278,67,-0.09478645454306506],[120,278,68,-0.09143550598380179],[120,278,69,-0.08802713385108507],[120,278,70,-0.08456210441740186],[120,278,71,-0.08104123302349986],[120,278,72,-0.07746538417349952],[120,278,73,-0.07383547161705611],[120,278,74,-0.07015245841826151],[120,278,75,-0.06641735701169421],[120,278,76,-0.06263122924531633],[120,278,77,-0.058795186410330436],[120,278,78,-0.054910389257988856],[120,278,79,-0.050978048003318066],[120,279,64,-0.10042457376927388],[120,279,65,-0.0971958498236607],[120,279,66,-0.09390958434253022],[120,279,67,-0.09056640588356557],[120,279,68,-0.08716698946655843],[120,279,69,-0.08371205664488951],[120,279,70,-0.08020237556331272],[120,279,71,-0.07663876100216221],[120,279,72,-0.07302207440793818],[120,279,73,-0.06935322391039583],[120,279,74,-0.0656331643258311],[120,279,75,-0.0618628971469688],[120,279,76,-0.05804347051915454],[120,279,77,-0.05417597920296152],[120,279,78,-0.05026156452320357],[120,279,79,-0.04630141430432205],[120,280,64,-0.09638505764618133],[120,280,65,-0.09310216992595133],[120,280,66,-0.08976362666230431],[120,280,67,-0.08637006536099828],[120,280,68,-0.08292216774535849],[120,280,69,-0.07942065976457563],[120,280,70,-0.07586631158775481],[120,280,71,-0.07225993758384014],[120,280,72,-0.06860239628736559],[120,280,73,-0.06489459035016282],[120,280,74,-0.06113746647871182],[120,280,75,-0.05733201535754856],[120,280,76,-0.05347927155842325],[120,280,77,-0.04958031343532554],[120,280,78,-0.04563626300536666],[120,280,79,-0.0416482858154833],[120,281,64,-0.09237220987570288],[120,281,65,-0.08903518221745427],[120,281,66,-0.08564438221561022],[120,281,67,-0.08220045648198138],[120,281,68,-0.0787040936005462],[120,281,69,-0.07515602407230648],[120,281,70,-0.07155702024533922],[120,281,71,-0.06790789623016696],[120,281,72,-0.06420950780040274],[120,281,73,-0.060462752278795995],[120,281,74,-0.05666856840836593],[120,281,75,-0.05282793620903742],[120,281,76,-0.04894187681947482],[120,281,77,-0.045011452324225654],[120,281,78,-0.04103776556616712],[120,281,79,-0.03702195994422075],[120,282,64,-0.08838893285507399],[120,282,65,-0.0849978218531176],[120,282,66,-0.08155481772853096],[120,282,67,-0.07806057635553504],[120,282,68,-0.07451579333557479],[120,282,69,-0.07092120387850437],[120,282,70,-0.06727758266840916],[120,282,71,-0.0635857437141864],[120,282,72,-0.059846540184841035],[120,282,73,-0.056060864229623586],[120,282,74,-0.05222964678269448],[120,282,75,-0.04835385735273445],[120,282,76,-0.044434503797190106],[120,282,77,-0.04047263208127261],[120,282,78,-0.036469326021697945],[120,282,79,-0.03242570701513703],[120,283,64,-0.08443810050573747],[120,283,65,-0.08099299539332921],[120,283,66,-0.07749787121953411],[120,283,67,-0.07395339327561046],[120,283,68,-0.07036026433686232],[120,283,69,-0.06671922447996043],[120,283,70,-0.06303105088433197],[120,283,71,-0.05929655761774755],[120,283,72,-0.055516595406057634],[120,283,73,-0.05169205138720956],[120,283,74,-0.04782384884922358],[120,283,75,-0.04391294695255388],[120,283,76,-0.03996034043651975],[120,283,77,-0.035967059309925886],[120,283,78,-0.03193416852586067],[120,283,79,-0.027862767640639774],[120,284,64,-0.08052255598686703],[120,284,65,-0.07702357849245794],[120,284,66,-0.07347644966394129],[120,284,67,-0.06988184436239858],[120,284,68,-0.06624047269285277],[120,284,69,-0.06255307975755786],[120,284,70,-0.05882044539279041],[120,284,71,-0.055043383889268716],[120,284,72,-0.05122274369615304],[120,284,73,-0.047359407108759854],[120,284,74,-0.043454289939663715],[120,284,75,-0.039508341173619344],[120,284,76,-0.03552254260598364],[120,284,77,-0.031497908464758806],[120,284,78,-0.027435485016245043],[120,284,79,-0.023336350154271324],[120,285,64,-0.07664510946618491],[120,285,65,-0.07309241364516889],[120,285,66,-0.06949342671663264],[120,285,67,-0.06584883326231816],[120,285,68,-0.06215935087217736],[120,285,69,-0.05842572983349961],[120,285,70,-0.05464875280296699],[120,285,71,-0.05082923446176524],[120,285,72,-0.046968021153702966],[120,285,73,-0.04306599050647422],[120,285,74,-0.03912405103573352],[120,285,75,-0.03514314173242161],[120,285,76,-0.031124231633016336],[120,285,77,-0.02706831937283405],[120,285,78,-0.02297643272236824],[120,285,79,-0.0188496281066316],[120,286,64,-0.07280853594828018],[120,286,65,-0.06920230799071955],[120,286,66,-0.0655516404931954],[120,286,67,-0.061857227906889634],[120,286,68,-0.05811979546113108],[120,286,69,-0.05434009878825949],[120,286,70,-0.05051892353084042],[120,286,71,-0.046657084931358755],[120,286,72,-0.04275542740434546],[120,286,73,-0.03881482409107109],[120,286,74,-0.03483617639647443],[120,286,75,-0.030820413508766853],[120,286,76,-0.026768491901385916],[120,286,77,-0.02268139481742215],[120,286,78,-0.018560131736506724],[120,286,79,-0.014405737824128045],[120,287,64,-0.06901557316032145],[120,287,65,-0.0653560311751317],[120,287,66,-0.06165389140940919],[120,287,67,-0.05790985833039089],[120,287,68,-0.05412466496035295],[120,287,69,-0.05029907243714274],[120,287,70,-0.04643386955647977],[120,287,71,-0.04252987229615646],[120,287,72,-0.03858792332209077],[120,287,73,-0.03460889147636853],[120,287,74,-0.030593671246937182],[120,287,75,-0.02654318221939922],[120,287,76,-0.02245836851057184],[120,287,77,-0.018340198183942003],[120,287,78,-0.014189662647002083],[120,287,79,-0.010007776030433096],[120,288,64,-0.06526891949507005],[120,288,65,-0.061556313271142166],[120,288,66,-0.057802940078970855],[120,288,67,-0.054009514546193016],[120,288,68,-0.05017677764061135],[120,288,69,-0.04630549616635754],[120,288,70,-0.042396462241237776],[120,288,71,-0.0384504927553965],[120,288,72,-0.03446842881124809],[120,288,73,-0.030451135144816288],[120,288,74,-0.02639949952813858],[120,288,75,-0.02231443215319029],[120,288,76,-0.018196864996990025],[120,288,77,-0.014047751168018069],[120,288,78,-0.00986806423393019],[120,288,79,-0.005658797530538273],[120,289,64,-0.061571232011399385],[120,289,65,-0.057805842756140896],[120,289,66,-0.054001505269669514],[120,289,67,-0.05015894448199154],[120,289,68,-0.046278909457910744],[120,289,69,-0.04236217282881513],[120,289,70,-0.03840953020506038],[120,289,71,-0.034421799569083145],[120,289,72,-0.030399820649196663],[120,289,73,-0.026344454274208146],[120,289,74,-0.02225658170851369],[120,289,75,-0.018137103968126816],[120,289,76,-0.013986941117302254],[120,289,77,-0.009807031545885386],[120,289,78,-0.005598331227371273],[120,289,79,-0.0013618129576439264],[120,290,64,-0.05792512449214629],[120,290,65,-0.05410726454792142],[120,290,66,-0.050252261917834856],[120,290,67,-0.04636085197375339],[120,290,68,-0.04243379202773656],[120,290,69,-0.038471860699474614],[120,290,70,-0.034475857263730536],[120,290,71,-0.030446600977924204],[120,290,72,-0.02638493038980888],[120,290,73,-0.022291702625380688],[120,290,74,-0.018167792656673842],[120,290,75,-0.014014092549903212],[120,290,76,-0.00983151069361074],[120,290,77,-0.0056209710069485275],[120,290,78,-0.0013834121280820733],[120,290,79,0.002880213417315841],[120,291,64,-0.054333165559423774],[120,291,65,-0.050463178098372224],[120,291,66,-0.046557839201188694],[120,291,67,-0.04261789481850986],[120,291,68,-0.038644110658574427],[120,291,69,-0.034637271490367744],[120,291,70,-0.030598180426179122],[120,291,71,-0.02652765818370767],[120,291,72,-0.02242654232766858],[120,291,73,-0.01829568649104138],[120,291,74,-0.014135959575610119],[120,291,75,-0.009948244932259737],[120,291,76,-0.0057334395206838085],[120,291,77,-0.0014924530486369325],[120,291,78,0.002773792909285089],[120,291,79,0.007064365813366724],[120,292,64,-0.050797876847225726],[120,292,65,-0.04687613554494047],[120,292,66,-0.04292081866992886],[120,292,67,-0.038932682885825326],[120,292,68,-0.03491250244452529],[120,292,69,-0.030861068425126648],[120,292,70,-0.026779187951687572],[120,292,71,-0.022667683389937937],[120,292,72,-0.018527391522897174],[120,292,73,-0.014359162705539996],[120,292,74,-0.010163859998157332],[120,292,75,-0.005942358278880816],[120,292,76,-0.0016955433350229754],[120,292,77,0.002575689066632414],[120,292,78,0.006870434130606257],[120,292,79,0.011187779004598108],[120,293,64,-0.04732173123152458],[120,293,65,-0.04334863992006896],[120,293,66,-0.039343732436249806],[120,293,67,-0.03530777628814519],[120,293,68,-0.031241554417228368],[120,293,69,-0.027145864373225553],[120,293,70,-0.023021517467192193],[120,293,71,-0.018869337902946204],[120,293,72,-0.014690161886809827],[120,293,73,-0.010484836715804358],[120,293,74,-0.00625421984394009],[120,293,75,-0.0019991779270760596],[120,293,76,0.0022794141540034424],[120,293,77,0.0065806742921581535],[120,293,78,0.010903714174125612],[120,293,79,0.015247640322447936],[120,294,64,-0.043907151117763124],[120,294,65,-0.0398831434185071],[120,294,66,-0.03582906142219808],[120,294,67,-0.03174568360992369],[120,294,68,-0.027633801756987],[120,294,69,-0.023494220043832156],[120,294,70,-0.01932775414458794],[120,294,71,-0.01513523029336987],[120,294,72,-0.010917484328291538],[120,294,73,-0.0066753607133310106],[120,294,74,-0.0024097115376913586],[120,294,75,0.001878604506865597],[120,294,76,0.006188723171069596],[120,294,77,0.010519775715435858],[120,294,78,0.01487088999982246],[120,294,79,0.019241191595281135],[120,295,64,-0.040556506785654575],[120,295,65,-0.036482045722411025],[120,295,66,-0.032379233665777746],[120,295,67,-0.028248860195441705],[120,295,68,-0.024091726063008717],[120,295,69,-0.01990864223917896],[120,295,70,-0.0157004289379382],[120,295,71,-0.011467914617907332],[120,295,72,-0.007211934960800567],[120,295,73,-0.0029333318271378417],[120,295,74,0.0013670478111506706],[120,295,75,0.00568835296074538],[120,295,76,0.010029729719944258],[120,295,77,0.014390322414513768],[120,295,78,0.0187692747564049],[120,295,79,0.023165731025361555],[120,296,64,-0.037272114791471356],[120,296,65,-0.03314769238441076],[120,296,66,-0.0289966226854856],[120,296,67,-0.024819706495500443],[120,296,68,-0.0206177536829472],[120,296,69,-0.0163915821676434],[120,296,70,-0.01214201688078305],[120,296,71,-0.007869888701542982],[120,296,72,-0.0035760333701955055],[120,296,73,7.387096221252443E-4],[120,296,74,0.005073498167369919],[120,296,75,0.0094274886977459],[120,296,76,0.013799837366479037],[120,296,77,0.018189701252020976],[120,296,78,0.02259623958572353],[120,296,79,0.027018615003009366],[120,297,64,-0.03405623642772641],[120,297,65,-0.02988237326855353],[120,297,66,-0.025683545903184057],[120,297,67,-0.021460566472894113],[120,297,68,-0.01721425410164705],[120,297,69,-0.012945433816438104],[120,297,70,-0.00865493544344649],[120,297,71,-0.004343592480140018],[120,297,72,-1.224094328236558E-5],[120,297,73,0.004338281807009403],[120,297,74,0.008707138267525227],[120,297,75,0.013093492016049493],[120,297,76,0.017496508959642387],[120,297,77,0.021915358606971365],[120,297,78,0.026349215364712762],[120,297,79,0.030797259858052387],[120,298,64,-0.030911076240170365],[120,298,65,-0.02668832104903833],[120,298,66,-0.02244226312522571],[120,298,67,-0.018173726066577967],[120,298,68,-0.01388353838900891],[120,298,69,-0.009572532383825473],[120,298,70,-0.005241542950254065],[120,298,71,-8.914064033152397E-4],[120,298,72,0.0034770407430047487],[120,298,73,0.007862963017134149],[120,298,74,0.012265527256222326],[120,298,75,0.016683903896874512],[120,298,76,0.021117268290687843],[120,298,77,0.025564802044439755],[120,298,78,0.030025694384953366],[120,298,79,0.03449914354866532],[120,299,64,-0.02783878060226915],[120,299,65,-0.023567709766915565],[120,299,66,-0.01927497508200579],[120,299,67,-0.014961411714707086],[120,299,68,-0.010627857707149801],[120,299,69,-0.006275152771036414],[120,299,70,-0.0019041370568451954],[120,299,71,0.0024843501022229417],[120,299,72,0.006889471471606269],[120,299,73,0.011310393221900854],[120,299,74,0.015746286260912283],[120,299,75,0.020196327590739784],[120,299,76,0.024659701690267127],[120,299,77,0.029135601922912716],[120,299,78,0.03362323196966052],[120,299,79,0.03812180728740009],[120,300,64,-0.024841436347077327],[120,300,65,-0.020522653444660116],[120,300,66,-0.016183822025849608],[120,300,67,-0.011825788936454043],[120,300,68,-0.007449401876767944],[120,300,69,-0.0030555081337990536],[120,300,70,0.0013550467125172591],[120,300,71,0.0057814201089664286],[120,300,72,0.010222773874617955],[120,300,73,0.014678275572150554],[120,300,74,0.019147099905318578],[120,300,75,0.02362843014205444],[120,300,76,0.028121459563586155],[120,300,77,0.03262539293941787],[120,300,78,0.037139448028199455],[120,300,79,0.04166285710450994],[120,301,64,-0.021921069456429503],[120,301,65,-0.01755520475854282],[120,301,66,-0.013170882387158776],[120,301,67,-0.00876896097252717],[120,301,68,-0.004350298002631394],[120,301,69,8.425150660312103E-5],[120,301,70,0.004533836367720142],[120,301,71,0.00899761060461465],[120,301,72,0.013474734861934554],[120,301,73,0.017964377840850504],[120,301,74,0.02246571776157493],[120,301,75,0.026977943852122578],[120,301,76,0.031500257863692115],[120,301,77,0.03603187561251793],[120,301,78,0.0405720285482169],[120,301,79,0.04511996534865617],[120,302,64,-0.019079643807609955],[120,302,65,-0.014667353768960731],[120,302,66,-0.010238171488979332],[120,302,67,-0.005792967484554622],[120,302,68,-0.001332609158358181],[120,302,69,0.0031420405925735575],[120,302,70,0.00763012479548479],[120,302,71,0.012130793847621526],[120,302,72,0.0166432069890806],[120,302,73,0.021166533802631695],[120,302,74,0.02569995574089749],[120,302,75,0.030242667680378588],[120,302,76,0.03479387950270885],[120,302,77,0.03935281770298573],[120,302,78,0.043918727025203164],[120,302,79,0.04849087212481098],[120,303,64,-0.0163190599774145],[120,303,65,-0.011861026708640697],[120,303,66,-0.0073876403199039445],[120,303,67,-0.0028997833132464014],[120,303,68,0.0016016668696001114],[120,303,69,0.006115839299836816],[120,303,70,0.010641871042054569],[120,303,71,0.015178908662374369],[120,303,72,0.019726109764320467],[120,303,73,0.024282644552272595],[120,303,74,0.02884769742288431],[120,303,75,0.03342046858395149],[120,303,76,0.038000175701117175],[120,303,77,0.04258605557225878],[120,303,78,0.04717736582958296],[120,303,79,0.05177338666945524],[120,304,64,-0.013641154103539605],[120,304,65,-0.009138084828648108],[120,304,66,-0.004621174365240788],[120,304,67,-9.131729526401858E-5],[120,304,68,0.00445059877884489],[120,304,69,0.00900369474753462],[120,304,70,0.013567101535958415],[120,304,71,0.018139961674080874],[120,304,72,0.022721430895125017],[120,304,73,0.027310679762202777],[120,304,74,0.03190689532352002],[120,304,75,0.03650928279563452],[120,304,76,0.04111706727515874],[120,304,77,0.04572949547874991],[120,304,78,0.050345837511414325],[120,304,79,0.05496538866315136],[120,305,64,-0.01104769680344133],[120,305,65,-0.00650032330234707],[120,305,66,-0.0019405924965958145],[120,305,67,0.0026305888610511745],[120,305,68,0.0072123228886309294],[120,305,69,0.011803722148631696],[120,305,70,0.016403911250693216],[120,305,71,0.021012028483202022],[120,305,72,0.025627227473830907],[120,305,73,0.030248678878866973],[120,305,74,0.03487557210172098],[120,305,75,0.039507117040094145],[120,305,76,0.04414254586219498],[120,305,77,0.04878111481184844],[120,305,78,0.05342210604252598],[120,305,79,0.05806482948031952],[120,306,64,-0.008540392150587509],[120,306,65,-0.003949470187235259],[120,306,66,6.523540802084241E-4],[120,306,67,0.005264161641171175],[120,306,68,0.009885044218265339],[120,306,69,0.014514105900710284],[120,306,70,0.01915046480740837],[120,306,71,0.023793254779518686],[120,306,72,0.02844162710258119],[120,306,73,0.03309475225803219],[120,306,74,0.037751821704508005],[120,306,75,0.04241204968840747],[120,306,76,0.047074675084111305],[120,306,77,0.05173896326369778],[120,306,78,0.05640420799618267],[120,306,79,0.06106973337630925],[120,307,64,-0.006120876708043385],[120,307,65,-0.0014871854445886457],[120,307,66,0.003155982818943588],[120,307,67,0.007807696731160614],[120,307,68,0.012467037506367316],[120,307,69,0.017133100617223382],[120,307,70,0.021804997517659998],[120,307,71,0.026481857395896945],[120,307,72,0.031162828957613013],[120,307,73,0.03584708223911137],[120,307,74,0.040533810450877394],[120,307,75,0.04522223185099743],[120,307,76,0.04991159164883796],[120,307,77,0.054601163938825276],[120,307,78,0.059290253664352255],[120,307,79,0.06397819861183796],[120,308,64,-0.0037907186195203085],[120,308,65,8.849399829465171E-4],[120,308,66,0.005568680768376452],[120,308,67,0.01025955996560389],[120,308,68,0.014956648170851072],[120,308,69,0.019659032099060836],[120,308,70,0.0243658163660906],[120,308,71,0.02907612530160865],[120,308,72,0.03378910479274741],[120,308,73,0.038503924158350814],[120,308,74,0.04321977805421934],[120,308,75,0.04793588840881531],[120,308,76,0.05265150638983253],[120,308,77,0.05736591440146696],[120,308,78,0.06207842811241733],[120,308,79,0.06678839851464116],[120,309,64,-0.0015514167578186827],[120,309,65,0.0031653850358898117],[120,309,66,0.007888905449336348],[120,309,67,0.012618188216753201],[120,309,68,0.017352293209704966],[120,309,69,0.022090298246507406],[120,309,70,0.02683130093311037],[120,309,71,0.03157442053528356],[120,309,72,0.03631879988215814],[120,309,73,0.04106360730096349],[120,309,74,0.04580803858336334],[120,309,75,0.05055131898285052],[120,309,76,0.05529270524360792],[120,309,77,0.060031487660670166],[120,309,78,0.0647669921714161],[120,309,79,0.06949858247841667],[120,310,64,5.956000693908142E-4],[120,310,65,0.0053526993446434],[120,310,66,0.010115185673502627],[120,310,67,0.01488209022495772],[120,310,68,0.01965246204262698],[120,310,69,0.02442536991164998],[120,310,70,0.02919990425764271],[120,310,71,0.033975179077555276],[120,310,72,0.038750333902482836],[120,310,73,0.043524535792270405],[120,310,74,0.04829698136231629],[120,310,75,0.053066898842032625],[120,310,76,0.05783355016536998],[120,310,77,0.0625962330932413],[120,310,78,0.06735428336787665],[120,310,79,0.07210707689913032],[120,311,64,0.0026489738563277576],[120,311,65,0.007445503978270776],[120,311,66,0.01224612230379149],[120,311,67,0.017049847370244814],[120,311,68,0.021855717293388102],[120,311,69,0.026662791691106677],[120,311,70,0.031470153639800255],[120,311,71,0.03627691166326759],[120,311,72,0.04108220175414136],[120,311,73,0.04588518942771276],[120,311,74,0.05068507180855314],[120,311,75,0.05548107974938622],[120,311,76,0.06027247998262343],[120,311,77,0.06505857730439445],[120,311,78,0.06983871679110397],[120,311,79,0.07461228604853887],[120,312,64,0.00460741807846933],[120,312,65,0.009442492135401784],[120,312,66,0.014280388956407666],[120,312,67,0.01912011438512519],[120,312,68,0.023960695512993277],[120,312,69,0.028801182659146718],[120,312,70,0.03364065138356462],[120,312,71,0.038478204533313576],[120,312,72,0.043312974321934344],[120,312,73,0.04814412444181168],[120,312,74,0.0529708522099368],[120,312,75,0.0577923907465141],[120,312,76,0.06260801118682488],[120,312,77,0.06741702492618007],[120,312,78,0.07221878589799516],[120,312,79,0.07701269288500792],[120,313,64,0.006469718314572673],[120,313,65,0.01134242977731259],[120,313,66,0.016216732644610113],[120,313,67,0.02109162000866882],[120,313,68,0.025966107843691355],[120,313,69,0.03083923704125291],[120,313,70,0.03571007547952125],[120,313,71,0.04057772012616112],[120,313,72,0.045441299174976774],[120,313,73,0.05029997421612584],[120,313,74,0.05515294244032129],[120,313,75,0.05999943887646533],[120,313,76,0.06483873866313536],[120,313,77,0.06967015935374893],[120,313,78,0.07449306325544211],[120,313,79,0.07930685980168403],[120,314,64,0.008234732811239848],[120,314,65,0.013144156203068705],[120,314,66,0.01805397436407845],[120,314,67,0.02296316758173811],[120,314,68,0.02787074062371417],[120,314,69,0.03277572482800736],[120,314,70,0.037677180227527474],[120,314,71,0.042574197708939776],[120,314,72,0.04746590120583938],[120,314,73,0.05235144992608484],[120,314,74,0.05723004061371015],[120,314,75,0.06210090984485675],[120,314,76,0.06696333635814591],[120,314,77,0.07181664341932018],[120,314,78,0.07666020122018649],[120,314,79,0.08149342931188416],[120,315,64,0.009901392990120494],[120,315,65,0.014846584566824778],[120,315,66,0.019791009619974903],[120,315,67,0.02473363558347383],[120,315,68,0.0296734559328459],[120,315,69,0.03460949232940039],[120,315,70,0.03954079679941774],[120,315,71,0.04446645394819532],[120,315,72,0.04938558320900602],[120,315,73,0.05429734112680104],[120,315,74,0.059200923677079076],[120,315,75,0.06409556861935947],[120,315,76,0.06898055788568255],[120,315,77,0.07385522000396472],[120,315,78,0.07871893255624104],[120,315,79,0.08357112467181885],[120,316,64,0.011468703897688032],[120,316,65,0.01644870233721696],[120,316,66,0.02142680889563689],[120,316,67,0.02640197810896755],[120,316,68,0.031373192078754136],[120,316,69,0.036339462669494144],[120,316,70,0.041299833741672703],[120,316,71,0.04625338342023774],[120,316,72,0.05119922639857152],[120,316,73,0.05613651627778912],[120,316,74,0.061064447941786365],[120,316,75,0.06598225996747303],[120,316,76,0.07088923707061723],[120,316,77,0.07578471258712627],[120,316,78,0.08066807098979847],[120,316,79,0.08553875044056777],[120,317,64,0.0129357445976645],[120,317,65,0.01794957169892708],[120,317,66,0.022960418062980492],[120,317,67,0.02796722528820364],[120,317,68,0.03296896402416413],[120,317,69,0.037964636221525655],[120,317,70,0.04295327741814203],[120,317,71,0.047933959061172565],[120,317,72,0.052905790865271335],[120,317,73,0.0578679232066823],[120,317,74,0.06281954955366453],[120,317,75,0.06775990893268083],[120,317,76,0.0726882884307769],[120,317,77,0.07760402573397582],[120,317,78,0.08250651170172368],[120,317,79,0.08739519297740639],[120,318,64,0.014301668506005227],[120,318,65,0.01934832989632207],[120,318,66,0.02439095873451705],[120,318,67,0.02942848364616968],[120,318,68,0.034459863754779524],[120,318,69,0.039484090983346015],[120,318,70,0.04450019239271319],[120,318,71,0.04950723255650882],[120,318,72,0.054504315972734446],[120,318,73,0.059490589511836084],[120,318,74,0.06446524490168154],[120,318,75,0.06942752124887486],[120,318,76,0.07437670759683815],[120,318,77,0.07931214552048418],[120,318,78,0.08423323175751463],[120,318,79,0.089139420876366],[120,319,64,0.015565703668490416],[120,319,65,0.02064418951922381],[120,319,66,0.02571762855703827],[120,319,67,0.030784936404192775],[120,319,68,0.03584506058800055],[120,319,69,0.040896982893254386],[120,319,70,0.045939721751987406],[120,319,71,0.05097233467040185],[120,319,72,0.055993920693019145],[120,319,73,0.06100362290388156],[120,319,74,0.0660006309652337],[120,319,75,0.07098418369311152],[120,319,76,0.07595357167027084],[120,319,77,0.08090813989627715],[120,319,78,0.0858472904747945],[120,319,79,0.09077048533809204],[121,-64,64,-0.1368795343088154],[121,-64,65,-0.14069755987565757],[121,-64,66,-0.144396770828761],[121,-64,67,-0.14797572023846794],[121,-64,68,-0.1514331241483048],[121,-64,69,-0.15476786737397996],[121,-64,70,-0.15797900936685294],[121,-64,71,-0.1610657901417849],[121,-64,72,-0.16402763626937866],[121,-64,73,-0.16686416693252615],[121,-64,74,-0.1695752000475057],[121,-64,75,-0.17216075844929024],[121,-64,76,-0.17462107614133904],[121,-64,77,-0.17695660460973617],[121,-64,78,-0.17916801920173486],[121,-64,79,-0.18125622556868037],[121,-63,64,-0.1314015328452217],[121,-63,65,-0.13520810256055227],[121,-63,66,-0.138896414628487],[121,-63,67,-0.14246501938761724],[121,-63,68,-0.14591262961812312],[121,-63,69,-0.14923812633317457],[121,-63,70,-0.15244056463482814],[121,-63,71,-0.15551917963431783],[121,-63,72,-0.1584733924367625],[121,-63,73,-0.1613028161901897],[121,-63,74,-0.16400726219913564],[121,-63,75,-0.16658674610247115],[121,-63,76,-0.16904149411573055],[121,-63,77,-0.17137194933780697],[121,-63,78,-0.17357877812207012],[121,-63,79,-0.17566287651188373],[121,-62,64,-0.1258404286039846],[121,-62,65,-0.12963477563903347],[121,-62,66,-0.13331144978676313],[121,-62,67,-0.13686899855438128],[121,-62,68,-0.14030613133166236],[121,-62,69,-0.14362172517430194],[121,-62,70,-0.1468148306517829],[121,-62,71,-0.14988467775965653],[121,-62,72,-0.15283068189625526],[121,-62,73,-0.15565244990374227],[121,-62,74,-0.15834978617375683],[121,-62,75,-0.16092269881730137],[121,-62,76,-0.16337140589915056],[121,-62,77,-0.16569634173664627],[121,-62,78,-0.16789816326293483],[121,-62,79,-0.16997775645461632],[121,-61,64,-0.1202004783459184],[121,-61,65,-0.1239818430327645],[121,-61,66,-0.1276461470731406],[121,-61,67,-0.13119193504463467],[121,-61,68,-0.1346179128212588],[121,-61,69,-0.13792295334830407],[121,-61,70,-0.14110610248172983],[121,-61,71,-0.14416658489198153],[121,-61,72,-0.14710381003225748],[121,-61,73,-0.14991737817113726],[121,-61,74,-0.15260708648981547],[121,-61,75,-0.15517293524360154],[121,-61,76,-0.15761513398795646],[121,-61,77,-0.15993410786893636],[121,-61,78,-0.16213050397809026],[121,-61,79,-0.16420519777179754],[121,-60,64,-0.114485986290498],[121,-60,65,-0.11825361662136946],[121,-60,66,-0.12190482569643579],[121,-60,67,-0.1254381550668915],[121,-60,68,-0.128852306967411],[121,-60,69,-0.13214615008206154],[121,-60,70,-0.13531872537476342],[121,-60,71,-0.13836925198420347],[121,-60,72,-0.14129713318321113],[121,-60,73,-0.14410196240251505],[121,-60,74,-0.14678352931912153],[121,-60,75,-0.14934182600897938],[121,-60,76,-0.1517770531641971],[121,-60,77,-0.15408962637468526],[121,-60,78,-0.15628018247427278],[121,-60,79,-0.1583495859512768],[121,-59,64,-0.1087012992571037],[121,-59,65,-0.1124544513741168],[121,-59,66,-0.1160918484272564],[121,-59,67,-0.11961202884607713],[121,-59,68,-0.1230136911042039],[121,-59,69,-0.12629569947586106],[121,-59,70,-0.12945708985697013],[121,-59,71,-0.13249707565071067],[121,-59,72,-0.1354150537175698],[121,-59,73,-0.138210610389783],[121,-59,74,-0.14088352755041844],[121,-59,75,-0.14343378877676105],[121,-59,76,-0.145861585548273],[121,-59,77,-0.14816732351898743],[121,-59,78,-0.15035162885440345],[121,-59,79,-0.15241535463284595],[121,-58,64,-0.10285080168087302],[121,-58,65,-0.10658874035573485],[121,-58,66,-0.1102116165942092],[121,-58,67,-0.11371796561054848],[121,-58,68,-0.11710648199755469],[121,-58,69,-0.12037602547329318],[121,-58,70,-0.12352562669238643],[121,-58,71,-0.12655449312179634],[121,-58,72,-0.12946201498110277],[121,-58,73,-0.13224777124719878],[121,-58,74,-0.1349115357236399],[121,-58,75,-0.13745328317431804],[121,-58,76,-0.13987319552171806],[121,-58,77,-0.1421716681096371],[121,-58,78,-0.14434931603041268],[121,-58,79,-0.14640698051663503],[121,-57,64,-0.09693891050346815],[121,-57,65,-0.1006609096066754],[121,-57,66,-0.10426856495409664],[121,-57,67,-0.10776040845266444],[121,-57,68,-0.11113513069660041],[121,-57,69,-0.11439158670388272],[121,-57,70,-0.11752880171731217],[121,-57,71,-0.12054597707007919],[121,-57,72,-0.12344249611584779],[121,-57,73,-0.12621793022327166],[121,-57,74,-0.12887204483518022],[121,-57,75,-0.13140480559210632],[121,-57,76,-0.13381638452041733],[121,-57,77,-0.1361071662849176],[121,-57,78,-0.138277754505985],[121,-57,79,-0.1403289781412037],[121,-56,64,-0.09097006993861778],[121,-56,65,-0.09467541289767611],[121,-56,66,-0.09826715643596351],[121,-56,67,-0.10174382906277357],[121,-56,68,-0.105104117258078],[121,-56,69,-0.1083468711983212],[121,-56,70,-0.1114711105468359],[121,-56,71,-0.1144760303087724],[121,-56,72,-0.11736100675056482],[121,-56,73,-0.12012560338383904],[121,-56,74,-0.1227695770140178],[121,-56,75,-0.12529288385327408],[121,-56,76,-0.1276956856981074],[121,-56,77,-0.12997835617141285],[121,-56,78,-0.13214148702909156],[121,-56,79,-0.1341858945311828],[121,-55,64,-0.0849487461122771],[121,-55,65,-0.08863672635847131],[121,-55,66,-0.09221187675883247],[121,-55,67,-0.09567272233645463],[121,-55,68,-0.09901794534354402],[121,-55,69,-0.10224639097613286],[121,-55,70,-0.10535707315341958],[121,-55,71,-0.10834918036164831],[121,-55,72,-0.11122208156253532],[121,-55,73,-0.11397533216615818],[121,-55,74,-0.11660868006855163],[121,-55,75,-0.11912207175367429],[121,-55,76,-0.12151565846001255],[121,-55,77,-0.12378980241168991],[121,-55,78,-0.12594508311413943],[121,-55,79,-0.12798230371430863],[121,-54,64,-0.07887942157770822],[121,-54,65,-0.08254934298094874],[121,-54,66,-0.08610722892343847],[121,-54,67,-0.08955160085531655],[121,-54,68,-0.09288113668973641],[121,-54,69,-0.09609467650608505],[121,-54,70,-0.09919122831784177],[121,-54,71,-0.10216997390499505],[121,-54,72,-0.10503027471101589],[121,-54,73,-0.10777167780431962],[121,-54,74,-0.11039392190444042],[121,-54,75,-0.11289694347259771],[121,-54,76,-0.11528088286691462],[121,-54,77,-0.11754609056215748],[121,-54,78,-0.1196931334340533],[121,-54,79,-0.1217228011081588],[121,-53,64,-0.07276658970533456],[121,-53,65,-0.07641776699661051],[121,-53,66,-0.07995772757780861],[121,-53,67,-0.08338498924121407],[121,-53,68,-0.08669822545193029],[121,-53,69,-0.08989627103919495],[121,-53,70,-0.0929781279523586],[121,-53,71,-0.09594297108142791],[121,-53,72,-0.09879015414219094],[121,-53,73,-0.10151921562583688],[121,-53,74,-0.1041298848133102],[121,-53,75,-0.1066220878540699],[121,-53,76,-0.10899595390951489],[121,-53,77,-0.11125182136095035],[121,-53,78,-0.11339024408214093],[121,-53,79,-0.11541199777643762],[121,-52,64,-0.06661474894720953],[121,-52,65,-0.07024650812817612],[121,-52,66,-0.07376789325652999],[121,-52,67,-0.0771774183837125],[121,-52,68,-0.08047375242012833],[121,-52,69,-0.08365572481416961],[121,-52,70,-0.08672233129591067],[121,-52,71,-0.08967273968538714],[121,-52,72,-0.0925062957654692],[121,-52,73,-0.09522252921924557],[121,-52,74,-0.09782115963215754],[121,-52,75,-0.10030210255855243],[121,-52,76,-0.10266547565291928],[121,-52,77,-0.10491160486567652],[121,-52,78,-0.1070410307035704],[121,-52,79,-0.10905451455465032],[121,-51,64,-0.060428396976408894],[121,-51,65,-0.06404007571563419],[121,-51,66,-0.06754224649401763],[121,-51,67,-0.07093341954111465],[121,-51,68,-0.0742122591083969],[121,-51,69,-0.07737758913559056],[121,-51,70,-0.08042839898170084],[121,-51,71,-0.08336384922063467],[121,-51,72,-0.08618327750143306],[121,-51,73,-0.08888620447302831],[121,-51,74,-0.09147233977376756],[121,-51,75,-0.09394158808536646],[121,-51,76,-0.09629405525156509],[121,-51,77,-0.09853005446134766],[121,-51,78,-0.10065011249678679],[121,-51,79,-0.10265497604548224],[121,-50,64,-0.054212024701199124],[121,-50,65,-0.057802972716602175],[121,-50,66,-0.061285301811630055],[121,-50,67,-0.06465751831490563],[121,-50,68,-0.06791828171719949],[121,-50,69,-0.07106641032469996],[121,-50,70,-0.07410088697698436],[121,-50,71,-0.07702086482960513],[121,-50,72,-0.07982567320129563],[121,-50,73,-0.08251482348572003],[121,-50,74,-0.08508801512799824],[121,-50,75,-0.08754514166568239],[121,-50,76,-0.08988629683444171],[121,-50,77,-0.09211178073833448],[121,-50,78,-0.09422210608471082],[121,-50,79,-0.09621800448372952],[121,-49,64,-0.047970110153812695],[121,-49,65,-0.05153968958081767],[121,-49,66,-0.055001561578466696],[121,-49,67,-0.058354228497438876],[121,-49,68,-0.06159634496855604],[121,-49,69,-0.06472672354260856],[121,-49,70,-0.06774434039490429],[121,-49,71,-0.07064834109443552],[121,-49,72,-0.07343804643768947],[121,-49,73,-0.07611295834701037],[121,-49,74,-0.07867276583375427],[121,-49,75,-0.08111735102590578],[121,-49,76,-0.08344679526042409],[121,-49,77,-0.08566138524017952],[121,-49,78,-0.08776161925554493],[121,-49,79,-0.08974821347061113],[121,-48,64,-0.041707112254156464],[121,-48,65,-0.04525469799909254],[121,-48,66,-0.04869550974617343],[121,-48,67,-0.05202804579319653],[121,-48,68,-0.05525095581435602],[121,-48,69,-0.05836304648626367],[121,-48,70,-0.061363287178700876],[121,-48,71,-0.06425081571000646],[121,-48,72,-0.06702494416711935],[121,-48,73,-0.06968516479018805],[121,-48,74,-0.0722311559219847],[121,-48,75,-0.07466278802179749],[121,-48,76,-0.07698012974406143],[121,-48,77,-0.07918345408159955],[121,-48,78,-0.08127324457352703],[121,-48,79,-0.08325020157779428],[121,-47,64,-0.03542746444828759],[121,-47,65,-0.0389524445265621],[121,-47,66,-0.04237160545758889],[121,-47,67,-0.04568344141345382],[121,-47,68,-0.04888659701766396],[121,-47,69,-0.05197987295700324],[121,-47,70,-0.05496223165812997],[121,-47,71,-0.05783280302882654],[121,-47,72,-0.06059089026391373],[121,-47,73,-0.06323597571574935],[121,-47,74,-0.06576772682953957],[121,-47,75,-0.06818600214314707],[121,-47,76,-0.0704908573516475],[121,-47,77,-0.07268255143650981],[121,-47,78,-0.07476155285945518],[121,-47,79,-0.07672854582096567],[121,-46,64,-0.02913556822150254],[121,-46,65,-0.03263734408007535],[121,-46,66,-0.03603427652907831],[121,-46,67,-0.0393248555441974],[121,-46,68,-0.04250772060685437],[121,-46,69,-0.045581666301544144],[121,-46,70,-0.04854564797793026],[121,-46,71,-0.05139878747760229],[121,-46,72,-0.05414037892551482],[121,-46,73,-0.05676989458601822],[121,-46,74,-0.05928699078372057],[121,-46,75,-0.06169151388885585],[121,-46,76,-0.06398350636741312],[121,-46,77,-0.06616321289590732],[121,-46,78,-0.06823108654083243],[121,-46,79,-0.07018779500278771],[121,-45,64,-0.022835786486355092],[121,-45,65,-0.026313773310041033],[121,-45,66,-0.029687912806868222],[121,-45,67,-0.03295669068760776],[121,-45,68,-0.036118741202897264],[121,-45,69,-0.03917285272572102],[121,-45,70,-0.04211797339865997],[121,-45,71,-0.044953216845815325],[121,-45,72,-0.04767786794942663],[121,-45,73,-0.05029138869109606],[121,-45,74,-0.052793424057852256],[121,-45,75,-0.055183808012738145],[121,-45,76,-0.05746256953016804],[121,-45,77,-0.05962993869594002],[121,-45,78,-0.06168635287194635],[121,-45,79,-0.06363246292556413],[121,-44,64,-0.01653243684544481],[121,-44,65,-0.01998606384657453],[121,-44,66,-0.02333685939723129],[121,-44,67,-0.02658330487695504],[121,-44,68,-0.02972402921963857],[121,-44,69,-0.032757814480819714],[121,-44,70,-0.03568360146974836],[121,-44,71,-0.038500495446146754],[121,-44,72,-0.04120777188166913],[121,-44,73,-0.04380488228598578],[121,-44,74,-0.046291460097715786],[121,-44,75,-0.04866732663989437],[121,-44,76,-0.05093249714022652],[121,-44,77,-0.05308718681600377],[121,-44,78,-0.05513181702373293],[121,-44,79,-0.05706702147345699],[121,-43,64,-0.010229784728817082],[121,-43,65,-0.01365849541978037],[121,-43,66,-0.016985409770349458],[121,-43,67,-0.020209004764738747],[121,-43,68,-0.02332790393690798],[121,-43,69,-0.026340882922336606],[121,-43,70,-0.029246875074589784],[121,-43,71,-0.032044977146582165],[121,-43,72,-0.03473445503656125],[121,-43,73,-0.03731474959871961],[121,-43,74,-0.039785482518671644],[121,-43,75,-0.04214646225347607],[121,-43,76,-0.04439769003645533],[121,-43,77,-0.046539365946691835],[121,-43,78,-0.04857189504324688],[121,-43,79,-0.05049589356408157],[121,-42,64,-0.00393203640629225],[121,-42,65,-0.00733528885449708],[121,-42,66,-0.010637798738186599],[121,-42,67,-0.013838038584401802],[121,-42,68,-0.0169346264467799],[121,-42,69,-0.019926331441496692],[121,-42,70,-0.02281207934801277],[121,-42,71,-0.02559095827452995],[121,-42,72,-0.028262224388173385],[121,-42,73,-0.030825307709822836],[121,-42,74,-0.03327981797381041],[121,-42,75,-0.035625550552183416],[121,-42,76,-0.03786249244377071],[121,-42,77,-0.03999082832793799],[121,-42,78,-0.04201094668307903],[121,-42,79,-0.04392344596981912],[121,-41,64,0.002356668125436223],[121,-41,65,-0.0010205989393340387],[121,-41,66,-0.004298195306200903],[121,-41,67,-0.007474588985447506],[121,-41,68,-0.010548392472824575],[121,-41,69,-0.013518368269356595],[121,-41,70,-0.016383434465959135],[121,-41,71,-0.01914267039277895],[121,-41,72,-0.021795322333273526],[121,-41,73,-0.024340809302944577],[121,-41,74,-0.026778728892956183],[121,-41,75,-0.029108863178323396],[121,-41,76,-0.031331184690918445],[121,-41,77,-0.03344586245717629],[121,-41,78,-0.03545326810054672],[121,-41,79,-0.03735398200867035],[121,-40,64,0.00863226238108672],[121,-40,65,0.005281492830144785],[121,-40,66,0.0020293046012515026],[121,-40,67,-0.0011227657418118042],[121,-40,68,-0.004173325062194255],[121,-40,69,-0.007121129153346173],[121,-40,70,-0.00996508830720988],[121,-40,71,-0.012704272947147599],[121,-40,72,-0.015337919325614457],[121,-40,73,-0.017865435286501974],[121,-40,74,-0.02028640609237098],[121,-40,75,-0.022600600316269537],[121,-40,76,-0.0248079757983789],[121,-40,77,-0.026908685667367038],[121,-40,78,-0.028903084426502246],[121,-40,79,-0.03079173410450009],[121,-39,64,0.01489076075015372],[121,-39,65,0.011566985633787885],[121,-39,66,0.008340685541517234],[121,-39,67,0.005213401666202544],[121,-39,68,0.002186532849146494],[121,-39,69,-7.386699065535796E-4],[121,-39,70,-0.0035611089874827417],[121,-39,71,-0.0062798457861322765],[121,-39,72,-0.008894106381879596],[121,-39,73,-0.011403287286649522],[121,-39,74,-0.013806961255473316],[121,-39,75,-0.016104883161645045],[121,-39,76,-0.018296995936715188],[121,-39,77,-0.020383436575202918],[121,-39,78,-0.022364542204077686],[121,-39,79,-0.02424085621698502],[121,-38,64,0.021128265985493444],[121,-38,65,0.017831966834916946],[121,-38,66,0.01463202008039266],[121,-38,67,0.011529971596575983],[121,-38,68,0.008527225998191112],[121,-38,69,0.005625041170388423],[121,-38,70,0.002824522734257595],[121,-38,71,1.2661844758943275E-4],[121,-38,72,-0.0024678874591321787],[121,-38,73,-0.004958380011426788],[121,-38,74,-0.007344419284423753],[121,-38,75,-0.009625746261074708],[121,-38,76,-0.011802288755213386],[121,-38,77,-0.013874167399344661],[121,-38,78,-0.01584170169721144],[121,-38,79,-0.017705416141117536],[121,-37,64,0.027340976817301743],[121,-37,65,0.02407261961425511],[121,-37,66,0.020899476445193743],[121,-37,67,0.017823097916978003],[121,-37,68,0.014844894483836524],[121,-37,69,0.011966130994992996],[121,-37,70,0.009187921177444935],[121,-37,71,0.0065112220539780274],[121,-37,72,0.003936828296402961],[121,-37,73,0.0014653665140924588],[121,-37,74,-9.027105223986531E-4],[121,-37,75,-0.0031671297223319073],[121,-37,76,-0.005327803580638224],[121,-37,77,-0.0073848361485109315],[121,-37,78,-0.009338529068785517],[121,-37,79,-0.011189387676085683],[121,-36,64,0.03352519569214685],[121,-36,65,0.030285230729375723],[121,-36,66,0.027139326303799005],[121,-36,67,0.02408903780258631],[121,-36,68,0.02113578158265572],[121,-36,69,0.01828082953583543],[121,-36,70,0.015525303589164707],[121,-36,71,0.012870170140423354],[121,-36,72,0.010316234428874638],[121,-36,73,0.007864134841297221],[121,-36,74,0.005514337153093241],[121,-36,75,0.003267128704767308],[121,-36,76,0.001122612513542065],[121,-36,77,-9.192986797752489E-4],[121,-36,78,-0.002858888428722617],[121,-36,79,-0.0046966426638868075],[121,-35,64,0.03967733663733186],[121,-35,65,0.036466198399959016],[121,-35,66,0.033347952669956604],[121,-35,67,0.030324159660599537],[121,-35,68,0.027396241691786893],[121,-35,69,0.0245654777729849],[121,-35,70,0.02183299812130468],[121,-35,71,0.01919977861479638],[121,-35,72,0.016666635180949685],[121,-35,73,0.014234218120473652],[121,-35,74,0.011903006366144275],[121,-35,75,0.009673301677015078],[121,-35,76,0.00754522276775349],[121,-35,77,0.005518699373220692],[121,-35,78,0.003593466248246302],[121,-35,79,0.0017690571026198754],[121,-34,64,0.045793933250389496],[121,-34,65,0.04261204031864996],[121,-34,66,0.039521857934642024],[121,-34,67,0.03652495118124166],[121,-34,68,0.03362274839872603],[121,-34,69,0.030816535785740617],[121,-34,70,0.028107451935392103],[121,-34,71,0.025496482306551438],[121,-34,72,0.02298445363035262],[121,-34,73,0.020572028251963692],[121,-34,74,0.018259698407417257],[121,-34,75,0.0160477804357938],[121,-34,76,0.013936408926524368],[121,-34,77,0.011925530801927486],[121,-34,78,0.010014899334932048],[121,-34,79,0.008204068102008688],[121,-33,64,0.05187164681397172],[121,-33,65,0.04871940178778489],[121,-33,66,0.045657672023742824],[121,-33,67,0.04268802751552625],[121,-33,68,0.0398119026783027],[121,-33,69,0.03703059096794925],[121,-33,70,0.03434523943539336],[121,-33,71,0.03175684321615546],[121,-33,72,0.029266239955080153],[121,-33,73,0.02687410416632996],[121,-33,74,0.024580941528432265],[121,-33,75,0.02238708311466997],[121,-33,76,0.020292679558583715],[121,-33,77,0.01829769515469981],[121,-33,78,0.016401901894436355],[121,-33,79,0.01460487343721073],[121,-32,64,0.05790727453582056],[121,-32,65,0.05478506398166849],[121,-32,66,0.05175216068174504],[121,-32,67,0.04881013957945879],[121,-32,68,0.045960441216507],[121,-32,69,0.0432043663705749],[121,-32,70,0.04054307062814799],[121,-32,71,0.037977558892516194],[121,-32,72,0.03550867982696004],[121,-32,73,0.0331371202331906],[121,-32,74,0.030863399364836952],[121,-32,75,0.028687863176267814],[121,-32,76,0.02661067850651644],[121,-32,77,0.02463182719842616],[121,-32,78,0.022751100152964665],[121,-32,79,0.02096809131873134],[121,-31,64,0.06389775791396313],[121,-31,65,0.06080595233455033],[121,-31,66,0.05780223388157424],[121,-31,67,0.05488818248482952],[121,-31,68,0.05206524486132558],[121,-31,69,0.049334729171675695],[121,-31,70,0.04669779961159115],[121,-31,71,0.04415547093856109],[121,-31,72,0.041708602933707484],[121,-31,73,0.03935789479888374],[121,-31,74,0.03710387948881766],[121,-31,75,0.034946917978575964],[121,-31,76,0.032887193466131115],[121,-31,77,0.030924705510135264],[121,-31,78,0.029059264102859417],[121,-31,79,0.02729048367831699],[121,-30,64,0.06984019122729657],[121,-30,65,0.06677914505446125],[121,-30,66,0.06380495436074918],[121,-30,67,0.06091920409675444],[121,-30,68,0.05812334720074608],[121,-30,69,0.055418699273949934],[121,-30,70,0.05280643319092704],[121,-30,71,0.05028757364513359],[121,-30,72,0.04786299162964591],[121,-30,73,0.04553339885312424],[121,-30,74,0.04329934209081299],[121,-30,75,0.04116119747085656],[121,-30,76,0.03911916469570842],[121,-30,77,0.0371732611987422],[121,-30,78,0.035323316236020696],[121,-30,79,0.03356896491324146],[121,-29,64,0.07573183015123963],[121,-29,65,0.07270188176259074],[121,-29,66,0.06975754628353115],[121,-29,67,0.06690041371764666],[121,-29,68,0.06413194326760596],[121,-29,69,0.0614534580295254],[121,-29,70,0.058866139622428815],[121,-29,71,0.05637102275287753],[121,-29,72,0.05396898971476172],[121,-29,73,0.05166076482432269],[121,-29,74,0.04944690879020597],[121,-29,75,0.04732781301882216],[121,-29,76,0.045303693854794824],[121,-29,77,0.04337458675660444],[121,-29,78,0.04154034040738208],[121,-29,79,0.039800610760875155],[121,-28,64,0.08157010049862479],[121,-28,65,0.07857157225837297],[121,-28,66,0.07565740402923493],[121,-28,67,0.07282919089778717],[121,-28,68,0.07008839837145919],[121,-28,69,0.06743635709216733],[121,-28,70,0.06487425748503584],[121,-28,71,0.06240314434228422],[121,-28,72,0.06002391134226803],[121,-28,73,0.0577372955037444],[121,-28,74,0.055543871575163384],[121,-28,75,0.053444046359259034],[121,-28,76,0.05143805297272219],[121,-28,77,0.04952594504106278],[121,-28,78,0.04770759082861642],[121,-28,79,0.045982667303714364],[121,-27,64,0.08735260708596382],[121,-27,65,0.08438580541042318],[121,-27,66,0.08150210110684519],[121,-27,67,0.07870309437263412],[121,-27,68,0.07599025705760165],[121,-27,69,0.07336492739704237],[121,-27,70,0.07082830467989176],[121,-27,71,0.06838144385204492],[121,-27,72,0.06602525005482107],[121,-27,73,0.06376047309864918],[121,-27,74,0.06158770187177076],[121,-27,75,0.05950735868423929],[121,-27,76,0.05751969354699327],[121,-27,77,0.05562477838611357],[121,-27,78,0.0538225011922191],[121,-27,79,0.0521125601050203],[121,-26,64,0.09307714272479506],[121,-26,65,0.09014235817302363],[121,-26,66,0.08728939919563539],[121,-26,67,0.084519871126573],[121,-26,68,0.08183525219295118],[121,-26,69,0.07923688826773923],[121,-26,70,0.07672598755751936],[121,-26,71,0.0743036152254023],[121,-26,72,0.07197068794908201],[121,-26,73,0.06972796841410467],[121,-26,74,0.0675760597421522],[121,-26,75,0.06551539985461385],[121,-26,76,0.06354625577122774],[121,-26,77,0.06166871784389982],[121,-26,78,0.05988269392565648],[121,-26,79,0.05818790347474945],[121,-25,64,0.09874169733826021],[121,-25,65,0.09583920472831431],[121,-25,66,0.09301725731194477],[121,-25,67,0.09027746558325744],[121,-25,68,0.0876213141789387],[121,-25,69,0.08505015665069804],[121,-25,70,0.08256521017278595],[121,-25,71,0.08016755018465849],[121,-25,72,0.07785810496877998],[121,-25,73,0.07563765016363211],[121,-25,74,0.07350680321173375],[121,-25,75,0.0714660177429427],[121,-25,76,0.06951557789282214],[121,-25,77,0.06765559255618048],[121,-25,78,0.06588598957573755],[121,-25,79,0.06420650986593923],[121,-24,64,0.10434446720305945],[121,-24,65,0.10147452575433191],[121,-24,66,0.09868384110225903],[121,-24,67,0.09597402892269291],[121,-24,68,0.09334658029155718],[121,-24,69,0.09080285647719966],[121,-24,70,0.08834408366781077],[121,-24,71,0.08597134763398762],[121,-24,72,0.08368558832642947],[121,-24,73,0.08148759440883402],[121,-24,74,0.07937799772580223],[121,-24,75,0.07735726770601636],[121,-24,76,0.07542570570048168],[121,-24,77,0.07358343925593269],[121,-24,78,0.07183041632336418],[121,-24,79,0.07016639940170333],[121,-23,64,0.10988386431648678],[121,-23,65,0.10704671781860242],[121,-23,66,0.10428753226229748],[121,-23,67,0.10160792852475842],[121,-23,68,0.09900940414827042],[121,-23,69,0.09649332815261102],[121,-23,70,0.09406093578251051],[121,-23,71,0.0917133231902515],[121,-23,72,0.08945144205339384],[121,-23,73,0.08727609412769777],[121,-23,74,0.08518792573505019],[121,-23,75,0.08318742218665975],[121,-23,76,0.08127490214131006],[121,-23,77,0.07945051189877395],[121,-23,78,0.07771421962834724],[121,-23,79,0.07606580953252029],[121,-22,64,0.11535852588869644],[121,-22,65,0.11255440289743612],[121,-22,66,0.10982693808225541],[121,-22,67,0.10717775753932401],[121,-22,68,0.10460836530192907],[121,-22,69,0.10212013817303967],[121,-22,70,0.09971432049293505],[121,-22,71,0.09739201884196835],[121,-22,72,0.09515419667845082],[121,-22,73,0.09300166891172934],[121,-22,74,0.09093509641026487],[121,-22,75,0.08895498044497196],[121,-22,76,0.08706165706761526],[121,-22,77,0.08525529142436183],[121,-22,78,0.08353587200444723],[121,-22,79,0.08190320482397728],[121,-21,64,0.12076732396034906],[121,-21,65,0.11799643802107485],[121,-21,66,0.11530090111835456],[121,-21,67,0.11268234458310755],[121,-21,68,0.11014227896184992],[121,-21,69,0.10768208886955066],[121,-21,70,0.1053030277775473],[121,-21,71,0.10300621273659138],[121,-21,72,0.10079261903501335],[121,-21,73,0.09866307479207392],[121,-21,74,0.09661825548631386],[121,-21,75,0.09465867841916065],[121,-21,76,0.09278469711358883],[121,-21,77,0.09099649564792966],[121,-21,78,0.0892940829247939],[121,-21,79,0.08767728687512344],[121,-20,64,0.12610937514532983],[121,-20,65,0.12337192504438266],[121,-20,66,0.12070850899039065],[121,-20,67,0.11812076356296608],[121,-20,68,0.11561020584174253],[121,-20,69,0.11317822827963087],[121,-20,70,0.11082609351113293],[121,-20,71,0.10855492909578035],[121,-20,72,0.10636572219669016],[121,-20,73,0.10425931419430146],[121,-20,74,0.10223639523510919],[121,-20,75,0.10029749871564941],[121,-20,76,0.09844299570153403],[121,-20,77,0.0966730892816332],[121,-20,78,0.09498780885736513],[121,-20,79,0.09338700436711267],[121,-19,64,0.1313840504987105],[121,-19,65,0.1286802205432538],[121,-19,66,0.12604910430544913],[121,-19,67,0.12349234362579187],[121,-19,68,0.1210114621346603],[121,-19,69,0.1186078601460755],[121,-19,70,0.11628280948651315],[121,-19,71,0.1140374482588391],[121,-19,72,0.11187277554135788],[121,-19,73,0.10978964602203678],[121,-19,74,0.10778876456772812],[121,-19,75,0.10587068072863481],[121,-19,76,0.10403578317782458],[121,-19,77,0.10228429408588824],[121,-19,78,0.1006162634307014],[121,-19,79,0.09903156324230955],[121,-18,64,0.13659098551007776],[121,-18,65,0.13392094583685754],[121,-18,66,0.13132229470791612],[121,-18,67,0.1287966792351376],[121,-18,68,0.12634562961509865],[121,-18,69,0.12397055404342328],[121,-18,70,0.12167273356418895],[121,-18,71,0.11945331685445104],[121,-18,72,0.11731331494387887],[121,-18,73,0.11525359586956274],[121,-18,74,0.11327487926581736],[121,-18,75,0.11137773088922442],[121,-18,76,0.1095625570787212],[121,-18,77,0.1078295991508299],[121,-18,78,0.10617892772998738],[121,-18,79,0.10461043701399575],[121,-17,64,0.1417300902219425],[121,-17,65,0.1390939971354367],[121,-17,66,0.1365279630554933],[121,-17,67,0.1340336403742829],[121,-17,68,0.1316125658679499],[121,-17,69,0.12926615563164745],[121,-17,70,0.1269956999496219],[121,-17,71,0.12480235810041318],[121,-17,72,0.12268715309716416],[121,-17,73,0.12065096636309725],[121,-17,74,0.11869453234198446],[121,-17,75,0.11681843304385575],[121,-17,76,0.1150230925257476],[121,-17,77,0.11330877130759187],[121,-17,78,0.11167556072320084],[121,-17,79,0.11012337720637044],[121,-16,64,0.1468015594733988],[121,-16,65,0.14419955581382826],[121,-16,66,0.1416662777213894],[121,-16,67,0.13920338287591139],[121,-16,68,0.136812414644489],[121,-16,69,0.13449479703727618],[121,-16,70,0.1322518295983257],[121,-16,71,0.13008468223154568],[121,-16,72,0.12799438996175694],[121,-16,73,0.1259818476309198],[121,-16,74,0.1240478045293506],[121,-16,75,0.12219285896217158],[121,-16,76,0.12041745275080207],[121,-16,77,0.11872186566958343],[121,-16,78,0.11710620981750186],[121,-16,79,0.11557042392502337],[121,-15,64,0.1518058832691226],[121,-15,65,0.14923809881079542],[121,-15,66,0.14673770302277922],[121,-15,67,0.1443063588784922],[121,-15,68,0.1419456163454793],[121,-15,69,0.1396569073620335],[121,-15,70,0.13744154074886317],[121,-15,71,0.13530069705587044],[121,-15,72,0.1332354233440325],[121,-15,73,0.13124662790244634],[121,-15,74,0.12933507490036256],[121,-15,75,0.12750137897445035],[121,-15,76,0.12574599975110035],[121,-15,77,0.12406923630386069],[121,-15,78,0.12247122154596635],[121,-15,79,0.12095191655797988],[121,-14,64,0.15674385727348927],[121,-14,65,0.15421040915395035],[121,-14,66,0.15174300977530453],[121,-14,67,0.1493433274091387],[121,-14,68,0.14701291863117372],[121,-14,69,0.14475322331877638],[121,-14,70,0.14256555958351547],[121,-14,71,0.14045111863882764],[121,-14,72,0.13841095960278327],[121,-14,73,0.13644600423601394],[121,-14,74,0.13455703161462818],[121,-14,75,0.13274467273835344],[121,-14,76,0.13100940507371728],[121,-14,77,0.12935154703235663],[121,-14,78,0.1277712523844199],[121,-14,79,0.1262685046070786],[121,-13,64,0.16161659342990653],[121,-13,65,0.159117586610365],[121,-13,66,0.15668328597371717],[121,-13,67,0.15431536509304422],[121,-13,68,0.15201538715831087],[121,-13,69,0.14978479999482341],[121,-13,70,0.14762493101673035],[121,-13,71,0.14553698211563215],[121,-13,72,0.1435220244842883],[121,-13,73,0.1415809933754828],[121,-13,74,0.13971468279587906],[121,-13,75,0.1379237401350969],[121,-13,76,0.13620866072982696],[121,-13,77,0.1345697823630725],[121,-13,78,0.1330072796984817],[121,-13,79,0.1315211586497872],[121,-12,64,0.16642553070551247],[121,-12,65,0.16396105846301823],[121,-12,66,0.16155994759881454],[121,-12,67,0.1592238769896479],[121,-12,68,0.15695441644425845],[121,-12,69,0.15475302174283245],[121,-12,70,0.1526210296114977],[121,-12,71,0.15055965263192495],[121,-12,72,0.14856997408602624],[121,-12,73,0.14665294273580887],[121,-12,74,0.14480936753821827],[121,-12,75,0.14303991229520086],[121,-12,76,0.14134509023880215],[121,-12,77,0.1397252585513914],[121,-12,78,0.13818061282097505],[121,-12,79,0.13671118143161543],[121,-11,64,0.17117244596096004],[121,-11,65,0.16874259041280282],[121,-11,66,0.1663747495503859],[121,-11,67,0.1640706075552445],[121,-11,68,0.16183174085801777],[121,-11,69,0.1596596131989394],[121,-11,70,0.157555570623369],[121,-11,71,0.15552083641242942],[121,-11,72,0.1535565059487387],[121,-11,73,0.15166354151729633],[121,-11,74,0.1498427670413579],[121,-11,75,0.14809486275352568],[121,-11,76,0.1464203598018773],[121,-11,77,0.1448196347912155],[121,-11,78,0.14329290425940722],[121,-11,79,0.1418402190888266],[121,-10,64,0.17585946494551197],[121,-10,65,0.17346429760631343],[121,-10,66,0.1711297967063956],[121,-10,67,0.16885765173226852],[121,-10,68,0.16664944573832174],[121,-10,69,0.16450665042838808],[121,-10,70,0.16243062117234952],[121,-10,71,0.16042259195784614],[121,-10,72,0.158483670277079],[121,-10,73,0.15661483194876558],[121,-10,74,0.15481691587508373],[121,-10,75,0.15309061873382968],[121,-10,76,0.15143648960561218],[121,-10,77,0.14985492453616678],[121,-10,78,0.1483461610337593],[121,-10,79,0.14691027250169097],[121,-9,64,0.18048907341729215],[121,-9,65,0.1781286557892644],[121,-9,66,0.17582755510824832],[121,-9,67,0.17358746616509513],[121,-9,68,0.17140997863866436],[121,-9,69,0.16929657219849314],[121,-9,70,0.16724861154250548],[121,-9,71,0.1652673413698259],[121,-9,72,0.16335388128868422],[121,-9,73,0.16150922065947115],[121,-9,74,0.15973421337278482],[121,-9,75,0.15802957256268624],[121,-9,76,0.15639586525499183],[121,-9,77,0.15483350695068565],[121,-9,78,0.15334275614441872],[121,-9,79,0.15192370877810912],[121,-8,64,0.1850641283888882],[121,-8,65,0.18273851258572993],[121,-8,66,0.1804708632723323],[121,-8,67,0.17826288054255535],[121,-8,68,0.17611616069946578],[121,-8,69,0.1740321913791364],[121,-8,70,0.17201234660948606],[121,-8,71,0.17005788180422254],[121,-8,72,0.16816992869187575],[121,-8,73,0.16634949017998135],[121,-8,74,0.16459743515425307],[121,-8,75,0.16291449321296592],[121,-8,76,0.1613012493363719],[121,-8,77,0.15975813849123777],[121,-8,78,0.15828544017046664],[121,-8,79,0.15688327286782144],[121,-7,64,0.18958786949807382],[121,-7,65,0.18729709890297652],[121,-7,66,0.1850629436276071],[121,-7,67,0.1828871090669314],[121,-7,68,0.18077119814713194],[121,-7,69,0.17871670647055937],[121,-7,70,0.17672501739572377],[121,-7,71,0.17479739705238662],[121,-7,72,0.17293498929174622],[121,-7,73,0.17113881057176816],[121,-7,74,0.16940974477750792],[121,-7,75,0.16774853797664002],[121,-7,76,0.1661557931100225],[121,-7,77,0.16463196461737928],[121,-7,78,0.16317735299806901],[121,-7,79,0.1617920993069517],[121,-6,64,0.1940639305037578],[121,-6,65,0.19180804046199407],[121,-6,66,0.18960741407934467],[121,-6,67,0.1874637620495394],[121,-6,68,0.18537869392012052],[121,-6,69,0.18335371325855976],[121,-6,70,0.1813902127534186],[121,-6,71,0.1794894692506087],[121,-6,72,0.17765263872474135],[121,-6,73,0.17588075118562652],[121,-6,74,0.17417470551975955],[121,-6,75,0.17253526426701637],[121,-6,76,0.17096304833238174],[121,-6,77,0.1694585316327959],[121,-6,78,0.16802203567908658],[121,-6,79,0.1666537240929985],[121,-5,64,0.19849635090728202],[121,-5,65,0.1962753694538485],[121,-5,66,0.19410829969914523],[121,-5,67,0.19199685763302599],[121,-5,68,0.18994265942213795],[121,-5,69,0.18794721659721936],[121,-5,70,0.18601193117544035],[121,-5,71,0.1841380907178427],[121,-5,72,0.18232686332187076],[121,-5,73,0.18057929254904692],[121,-5,74,0.1788962922876407],[121,-5,75,0.17727864155053907],[121,-5,76,0.17572697920815405],[121,-5,77,0.17424179865644718],[121,-5,78,0.17282344242003744],[121,-5,79,0.17147209669040908],[121,-4,64,0.20288958769882337],[121,-4,65,0.2007035363216092],[121,-4,66,0.19857004454098326],[121,-4,67,0.19649083364012676],[121,-4,68,0.19446752640221687],[121,-4,69,0.19250164231891287],[121,-4,70,0.19059459273388635],[121,-4,71,0.18874767592145159],[121,-4,72,0.1869620721002846],[121,-4,73,0.18523883838228772],[121,-4,74,0.18357890365644713],[121,-4,75,0.18198306340789172],[121,-4,76,0.18045197447198802],[121,-4,77,0.17898614972355253],[121,-4,78,0.17758595270114652],[121,-4,79,0.17625159216647057],[121,-3,64,0.20724852722903986],[121,-3,65,0.20509742166799427],[121,-3,66,0.20299752358342182],[121,-3,67,0.2009505595490314],[121,-3,68,0.19895815896181623],[121,-3,69,0.19702184927173683],[121,-3,70,0.1951430511464476],[121,-3,71,0.1933230735711221],[121,-3,72,0.19156310888336858],[121,-3,73,0.18986422774328937],[121,-3,74,0.18822737403853396],[121,-3,75,0.18665335972455244],[121,-3,76,0.1851428595998854],[121,-3,77,0.18369640601657033],[121,-3,78,0.18231438352563134],[121,-3,79,0.18099702345766755],[121,-2,64,0.21157849720605004],[121,-2,65,0.20946234828881927],[121,-2,66,0.20739605479808954],[121,-2,67,0.20538134859544588],[121,-2,68,0.20341986568903692],[121,-2,69,0.20151314148445632],[121,-2,70,0.1996626059706702],[121,-2,71,0.19786957884104162],[121,-2,72,0.1961352645494464],[121,-2,73,0.19446074730153073],[121,-2,74,0.19284698598096484],[121,-2,75,0.19129480901089546],[121,-2,76,0.18980490915043458],[121,-2,77,0.18837783822626408],[121,-2,78,0.1870140017993256],[121,-2,79,0.1857136537666063],[121,-1,64,0.21588527881753128],[121,-1,65,0.21380409333203976],[121,-1,66,0.21177141134419897],[121,-1,67,0.20978897000113295],[121,-1,68,0.2078584119197331],[121,-1,69,0.2059812804587452],[121,-1,70,0.20415901492589417],[121,-1,71,0.20239294572011557],[121,-1,72,0.20068428940886784],[121,-1,73,0.19903414374059625],[121,-1,74,0.19744348259218514],[121,-1,75,0.19591315085161332],[121,-1,76,0.1944438592356431],[121,-1,77,0.19303617904262826],[121,-1,78,0.19169053684040305],[121,-1,79,0.19040720908927067],[121,0,64,0.22017511897804887],[121,0,65,0.21812890058249268],[121,0,66,0.21612983388922336],[121,0,67,0.21417966132904365],[121,0,68,0.2122800321256333],[121,0,69,0.2104324975888343],[121,0,70,0.2086385063429822],[121,0,71,0.2068993994903361],[121,0,72,0.2052164057095982],[121,0,73,0.2035906362895753],[121,0,74,0.20202308009783732],[121,0,75,0.20051459848457343],[121,0,76,0.19906592012148405],[121,0,77,0.19767763577579067],[121,0,78,0.1963501930193271],[121,0,79,0.19508389087273204],[121,1,64,0.22445474270172427],[121,1,65,0.22244349287245413],[121,1,66,0.2204780430558385],[121,1,67,0.21856014096515508],[121,1,68,0.21669144242958194],[121,1,69,0.21487350670868455],[121,1,70,0.21310779174195182],[121,1,71,0.2113956493334247],[121,1,72,0.20973832027142347],[121,1,73,0.20813692938340644],[121,1,74,0.2065924805258358],[121,1,75,0.20510585150923377],[121,1,76,0.20367778895827715],[121,1,77,0.202308903107011],[121,1,78,0.2009996625291416],[121,1,79,0.19975038880343066],[121,2,64,0.23728346803671663],[121,2,65,0.23537712553752232],[121,2,66,0.23351252813133927],[121,2,67,0.2316914393770514],[121,2,68,0.22991553491839845],[121,2,69,0.2281863978620684],[121,2,70,0.2265055140908414],[121,2,71,0.22487426751182893],[121,2,72,0.22329393523980612],[121,2,73,0.2217656827156802],[121,2,74,0.22029055875996506],[121,2,75,0.218869490561444],[121,2,76,0.21750327860087482],[121,2,77,0.2161925915098084],[121,2,78,0.21493796086449313],[121,2,79,0.2137397759148757],[121,3,64,0.23728075785233516],[121,3,65,0.23537442913442796],[121,3,66,0.23350984597131952],[121,3,67,0.2316887719116295],[121,3,68,0.229912882588588],[121,3,69,0.22818376109813865],[121,3,70,0.22650289331209172],[121,3,71,0.22487166312637552],[121,3,72,0.22329134764437852],[121,3,73,0.22176311229543],[121,3,74,0.22028800588828568],[121,3,75,0.21886695559980263],[121,3,76,0.21750076189865553],[121,3,77,0.21619009340417006],[121,3,78,0.21493548168023757],[121,3,79,0.21373731596433],[121,4,64,0.23727141487773418],[121,4,65,0.2353651336688517],[121,4,66,0.23350059960671377],[121,4,67,0.23167957620455648],[121,4,68,0.22990373905937977],[121,4,69,0.2281746712300865],[121,4,70,0.2264938585506714],[121,4,71,0.2248626848785089],[121,4,72,0.22328242727773484],[121,4,73,0.22175425113776415],[121,4,74,0.2202792052268181],[121,4,75,0.21885821668063898],[121,4,76,0.21749208592624958],[121,4,77,0.21618148154082772],[121,4,78,0.21492693504566696],[121,4,79,0.21372883563523504],[121,5,64,0.24152747813887554],[121,5,65,0.239656265351481],[121,5,66,0.23782545154199664],[121,5,67,0.23603680542978456],[121,5,68,0.23429200913907655],[121,5,69,0.23259265359838932],[121,5,70,0.23094023387499107],[121,5,71,0.2293361444444716],[121,5,72,0.22778167439540387],[121,5,73,0.22627800256914876],[121,5,74,0.22482619263466797],[121,5,75,0.22342718809852802],[121,5,76,0.2220818072499503],[121,5,77,0.22079073804097893],[121,5,78,0.21955453290173643],[121,5,79,0.21837360349077983],[121,6,64,0.24576854898652467],[121,6,65,0.24393247409163815],[121,6,66,0.2421354526399782],[121,6,67,0.24037925850148956],[121,6,68,0.23866558027061924],[121,6,69,0.2369960166870596],[121,6,70,0.23537207199154742],[121,6,71,0.2337951512167673],[121,6,72,0.23226655541335506],[121,6,73,0.23078747681104284],[121,6,74,0.2293589939148194],[121,6,75,0.2279820665362834],[121,6,76,0.22665753076004758],[121,6,77,0.22538609384526342],[121,6,78,0.22416832906223727],[121,6,79,0.22300467046415107],[121,7,64,0.24999048729775653],[121,7,65,0.24818963544752237],[121,7,66,0.24642649490861418],[121,7,67,0.24470284463131692],[121,7,68,0.24302037960811218],[121,7,69,0.24138070631581066],[121,7,70,0.23978533809274893],[121,7,71,0.2382356904510975],[121,7,72,0.23673307632427154],[121,7,73,0.23527870124948957],[121,7,74,0.23387365848535535],[121,7,75,0.23251892406463492],[121,7,76,0.2312153517820923],[121,7,77,0.22996366811744995],[121,7,78,0.2287644670934469],[121,7,79,0.22761820506900776],[121,8,64,0.2541891705866284],[121,8,65,0.25242364110168447],[121,8,66,0.2506944849813162],[121,8,67,0.24900348617153722],[121,8,68,0.24735234597582084],[121,8,69,0.2457426785186997],[121,8,70,0.24417600614443702],[121,8,71,0.24265375475081696],[121,8,72,0.24117724905804627],[121,8,73,0.23974770781281096],[121,8,74,0.23836623892736442],[121,8,75,0.23703383455381843],[121,8,76,0.23575136609350045],[121,8,77,0.2345195791414434],[121,8,78,0.23333908836598272],[121,8,79,0.23221037232346875],[121,9,64,0.2583604970637223],[121,9,65,0.2566304019642024],[121,9,66,0.2549353472625461],[121,9,67,0.25327712180183914],[121,9,68,0.2516574330949506],[121,9,69,0.2500779028096825],[121,9,70,0.2485400621890051],[121,9,71,0.24704534740641942],[121,9,72,0.24559509485644215],[121,9,73,0.24419053638025612],[121,9,74,0.2428327944264035],[121,9,75,0.24152287714669074],[121,9,76,0.2402616734271723],[121,9,77,0.23904994785427558],[121,9,78,0.23788833561604428],[121,9,79,0.2367773373385088],[121,10,64,0.2625003886406579],[121,10,65,0.2608058512203591],[121,10,66,0.25914502701745706],[121,10,67,0.25751970965973775],[121,10,68,0.2559316127536223],[121,10,69,0.2543823653909629],[121,10,70,0.2528735075909356],[121,10,71,0.25140648567707763],[121,10,72,0.24998264758945798],[121,10,73,0.24860323813202778],[121,10,74,0.24726939415502724],[121,10,75,0.24598213967261828],[121,10,76,0.24474238091560752],[121,10,77,0.2435509013193271],[121,10,78,0.24240835644664405],[121,10,79,0.24131526884611298],[121,11,64,0.26660479387936403],[121,11,65,0.26494594732260535],[121,11,66,0.2633194934053659],[121,11,67,0.2617272304143742],[121,11,68,0.2601708779198243],[121,11,69,0.2586520723039191],[121,11,70,0.2571723622245292],[121,11,71,0.2557332040140109],[121,11,72,0.25433595701317685],[121,11,73,0.25298187884046036],[121,11,74,0.2516721205961578],[121,11,75,0.25040772200190786],[121,11,76,0.2491896064752832],[121,11,77,0.2480185761395527],[121,11,78,0.24689530676859273],[121,11,79,0.2458203426669564],[121,12,64,0.2706696908862182],[121,12,65,0.2690466769269166],[121,12,66,0.26745474245716633],[121,12,67,0.2658956902838232],[121,12,68,0.2643712457974503],[121,12,69,0.26288305252271776],[121,12,70,0.26143266760394035],[121,12,71,0.26002155722579445],[121,12,72,0.258651091969208],[121,12,73,0.25732254210246464],[121,12,74,0.2560370728074073],[121,12,75,0.25479573934089844],[121,12,76,0.2535994821314135],[121,12,77,0.2524491218108257],[121,12,78,0.2513453541813605],[121,12,79,0.25028874511772825],[121,13,64,0.274691090151154],[121,13,65,0.273104057773649],[121,13,66,0.27154679999678716],[121,13,67,0.2700211239960097],[121,13,68,0.26852876082553306],[121,13,69,0.26707136099072265],[121,13,70,0.26565048995562734],[121,13,71,0.26426762358572065],[121,13,72,0.26292414352583704],[121,13,73,0.2616213325133491],[121,13,74,0.26036036962646747],[121,13,75,0.2591423254678225],[121,13,76,0.25796815728320327],[121,13,77,0.25683870401551384],[121,13,78,0.255754681293922],[121,13,79,0.25471667635821194],[121,14,64,0.278665037331519],[121,14,65,0.27711414151267155],[121,14,66,0.2755917245064726],[121,14,67,0.27409959769301023],[121,14,68,0.27263949762044354],[121,14,69,0.27121308159947],[121,14,70,0.26982192323298554],[121,14,71,0.2684675078809774],[121,14,72,0.2671512280606443],[121,14,73,0.26587437878178233],[121,14,74,0.26463815281732656],[121,14,75,0.263443635909201],[121,14,76,0.26229180190935514],[121,14,77,0.2611835078560472],[121,14,78,0.2601194889853487],[121,14,79,0.25910035367788153],[121,15,64,0.2825876159808667],[121,15,65,0.28107301647296073],[121,15,66,0.27958560993607184],[121,15,67,0.2781272117789304],[121,15,68,0.27669956386124733],[121,15,69,0.2753043301104019],[121,15,70,0.2739430920733572],[121,15,71,0.272617344403842],[121,15,72,0.27132849028479267],[121,15,73,0.2700778367860947],[121,15,74,0.2688665901575144],[121,15,75,0.26769585105697125],[121,15,76,0.26656660971403107],[121,15,77,0.26547974102867916],[121,15,78,0.2644359996053486],[121,15,79,0.26343601472221473],[121,16,64,0.2864549502225468],[121,16,65,0.28497681037652156],[121,16,66,0.28352458845619993],[121,16,67,0.2821001037112155],[121,16,68,0.2807051031180786],[121,16,69,0.2793412570192163],[121,16,70,0.27801015469727736],[121,16,71,0.27671329988474347],[121,16,72,0.2754521062088381],[121,16,73,0.2742278925717739],[121,16,74,0.2730418784662287],[121,16,75,0.27189517922620055],[121,16,76,0.2707888012131218],[121,16,77,0.2697236369372922],[121,16,78,0.2687004601146046],[121,16,79,0.2677199206585766],[121,17,64,0.29026320736827244],[121,17,65,0.2888216929968138],[121,17,66,0.28740483315545207],[121,17,67,0.2860144507355805],[121,17,68,0.28465229762371574],[121,17,69,0.2833200503630208],[121,17,70,0.28201930575014045],[121,17,71,0.2807515763673843],[121,17,72,0.279518286050253],[121,17,73,0.27832076529034433],[121,17,74,0.2771602465735344],[121,17,75,0.27603785965357863],[121,17,76,0.2749546267610176],[121,17,77,0.2739114577474441],[121,17,78,0.27290914516510734],[121,17,79,0.27194835928186684],[121,18,64,0.29400860048145167],[121,18,65,0.29260387876146965],[121,18,66,0.29122256068145314],[121,18,67,0.2898664725643401],[121,18,68,0.28853737098813786],[121,18,69,0.28723693847006665],[121,18,70,0.2859667790860657],[121,18,71,0.28472841402569626],[121,18,72,0.2835232770824365],[121,18,73,0.2823527100794046],[121,18,74,0.28121795823040796],[121,18,75,0.28012016543645946],[121,18,76,0.27906036951764823],[121,18,77,0.2780394973804213],[121,18,78,0.2770583601202506],[121,18,79,0.2761176480596992],[121,19,64,0.29768739088538715],[121,19,65,0.29631962929940797],[121,19,66,0.2949740338258517],[121,19,67,0.2936524339982451],[121,19,68,0.29235659085617116],[121,19,69,0.2910881926521726],[121,19,70,0.28984885049407116],[121,19,71,0.2886400939227401],[121,19,72,0.28746336642532255],[121,19,73,0.2863200208839322],[121,19,74,0.2852113149597374],[121,19,75,0.2841384064125631],[121,19,76,0.2831023483559063],[121,19,77,0.28210408444741336],[121,19,78,0.2811444440148003],[121,19,79,0.28022413711722555],[121,20,64,0.3012958906164367],[121,20,65,0.29996525593243706],[121,20,66,0.29865556405334864],[121,20,67,0.2973686474919203],[121,20,68,0.2961062715083202],[121,20,69,0.29487012983993566],[121,20,70,0.29366184036665255],[121,20,71,0.29248294071164677],[121,20,72,0.2913348837776831],[121,20,73,0.2902190332189568],[121,20,74,0.2891366588483788],[121,20,75,0.2880889319804415],[121,20,76,0.28707692070955526],[121,20,77,0.28610158512391065],[121,20,78,0.2851637724548428],[121,20,79,0.2842642121617089],[121,21,64,0.30483046482194187],[121,21,65,0.30353712211115463],[121,21,66,0.3022635139745677],[121,21,67,0.301011475662708],[121,21,68,0.2997827764045847],[121,21,69,0.29857911516052643],[121,21,70,0.29740211631056485],[121,21,71,0.29625332527839715],[121,21,72,0.29513420409092395],[121,21,73,0.2940461268733937],[121,21,74,0.2929903752800624],[121,21,75,0.2919681338604954],[121,21,76,0.29098048536141086],[121,21,77,0.2900284059641132],[121,21,78,0.2891127604574971],[121,21,79,0.2882342973466307],[121,22,64,0.3082875341030269],[121,22,65,0.30703164579524306],[121,22,66,0.30579429976286876],[121,22,67,0.3045773337430171],[121,22,68,0.3033825206713668],[121,22,69,0.3022115644581755],[121,22,70,0.3010660956999129],[121,22,71,0.2999476673265467],[121,22,72,0.29885775018447674],[121,22,73,0.297797728555148],[121,22,74,0.2967688956092541],[121,22,75,0.2957724487966546],[121,22,76,0.2948094851719067],[121,22,77,0.2938809966554619],[121,22,78,0.2929878652305048],[121,22,79,0.2921308580754452],[121,23,64,0.31166357680235074],[121,23,65,0.3104453017782497],[121,23,66,0.30924439351519223],[121,23,67,0.3080626919762699],[121,23,68,0.30690197353155735],[121,23,69,0.3057639467574399],[121,23,70,0.3046502481716417],[121,23,71,0.3035624379039862],[121,23,72,0.30250199530288363],[121,23,73,0.30147031447757916],[121,23,74,0.30046869977606955],[121,23,75,0.2994983611988137],[121,23,76,0.2985604097481381],[121,23,77,0.2976558527133863],[121,23,78,0.29678558889179035],[121,23,79,0.29595040374507575],[121,24,64,0.3149551312366347],[121,24,65,0.3137746239566671],[121,24,66,0.31261032555674945],[121,24,67,0.3114640779562578],[121,24,68,0.3103376606776134],[121,24,69,0.3092327866690609],[121,24,70,0.30815109806323476],[121,24,71,0.307094161871545],[121,24,72,0.3060634656143764],[121,24,73,0.30506041288713304],[121,24,74,0.3040863188620404],[121,24,75,0.30314240572582674],[121,24,76,0.302229798053186],[121,24,77,0.3013495181160704],[121,24,78,0.30050248112879363],[121,24,79,0.2996894904289518],[121,25,64,0.31815879787405876],[121,25,65,0.31701620754341164],[121,25,66,0.3158886866896568],[121,25,67,0.3147780789100053],[121,25,68,0.31368616658772663],[121,25,69,0.3126146667385118],[121,25,70,0.3115652267927209],[121,25,71,0.3105394203135417],[121,25,72,0.30953874265105563],[121,25,73,0.308564606532243],[121,25,74,0.3076183375868396],[121,25,75,0.30670116980916445],[121,25,76,0.3058142409558242],[121,25,77,0.3049585878793399],[121,25,78,0.30413514179767775],[121,25,79,0.30334472349969216],[121,26,64,0.32127124145660646],[121,26,65,0.32016671122577905],[121,26,66,0.31907613038559424],[121,26,67,0.31800134392422336],[121,26,68,0.3169441367851638],[121,26,69,0.31590622973732146],[121,26,70,0.3148892751810765],[121,26,71,0.3138948528903624],[121,26,72,0.312924465690753],[121,26,73,0.3119795350735875],[121,26,74,0.3110613967460504],[121,26,75,0.3101712961173208],[121,26,76,0.3093103837206997],[121,26,77,0.30847971057176043],[121,26,78,0.30768022346250395],[121,26,79,0.3069127601915255],[121,27,64,0.32428919306719034],[121,27,65,0.3232228592677071],[121,27,66,0.3221693749223167],[121,27,67,0.32113058611517853],[121,27,68,0.32010828004060576],[121,27,69,0.3191041808969931],[121,27,70,0.31811994571683944],[121,27,71,0.3171571601328903],[121,27,72,0.3162173340803968],[121,27,73,0.31530189743551923],[121,27,74,0.31441219558979555],[121,27,75,0.31354948496078483],[121,27,76,0.3127149284387982],[121,27,77,0.31190959076976005],[121,27,78,0.3111344338741818],[121,27,79,0.31039031210225654],[121,28,64,0.32720945214164693],[121,28,65,0.3261814435564362],[121,28,66,0.32516520546410804],[121,28,67,0.3241625847420714],[121,28,68,0.3231753705175764],[121,28,69,0.3222052900856154],[121,28,70,0.32125400476303434],[121,28,71,0.32032310567887967],[121,28,72,0.3194141095009762],[121,28,73,0.31852845409876535],[121,28,74,0.3176674941423244],[121,28,75,0.316832496637675],[121,28,76,0.316024636398294],[121,28,77,0.315244991452872],[121,28,78,0.3144945383892977],[121,28,79,0.313774147634879],[121,29,64,0.3300288884256738],[121,29,65,0.3290393255936406],[121,29,66,0.32806047608625516],[121,29,67,0.32709418726399675],[121,29,68,0.32614224986103796],[121,29,69,0.3252063939272405],[121,29,70,0.3242882847064839],[121,29,71,0.32338951845135366],[121,29,72,0.3225116181741828],[121,29,73,0.32165602933447557],[121,29,74,0.32082411546263795],[121,29,75,0.32001715372011635],[121,29,76,0.3192363303958658],[121,29,77,0.3184827363391849],[121,29,78,0.31775736232890167],[121,29,79,0.3170610943789193],[121,30,64,0.33274444387655283],[121,30,65,0.33179343843087294],[121,30,66,0.3308521117433782],[121,30,67,0.3299223113403265],[121,30,68,0.32900582922899074],[121,30,69,0.3281043978638659],[121,30,70,0.32721968604934076],[121,30,71,0.3263532947788581],[121,30,72,0.32550675301056126],[121,30,73,0.3246815133794504],[121,30,74,0.3238789478459795],[121,30,75,0.3231003432811899],[121,30,76,0.3223468969883046],[121,30,77,0.3216197121608196],[121,30,78,0.3209197932770778],[121,30,79,0.3202480414313321],[121,31,64,0.33535313450974436],[121,31,65,0.3344407885494081],[121,31,66,0.33353711018170784],[121,31,67,0.3326439467746021],[121,31,68,0.3317630912671634],[121,31,69,0.3308962781601082],[121,31,70,0.33004517944292994],[121,31,71,0.32921140045766145],[121,31,72,0.32839647569925967],[121,31,73,0.32760186455263895],[121,31,74,0.3268289469662855],[121,31,75,0.3260790190625442],[121,31,76,0.325353288684506],[121,31,77,0.324652870879531],[121,31,78,0.3239787833193915],[121,31,79,0.323331941657044],[121,32,64,0.3378520521904153],[121,32,65,0.336978457684549],[121,32,66,0.33611254379537037],[121,32,67,0.3352561574020011],[121,32,68,0.33441109202686264],[121,32,69,0.33357908385063545],[121,32,70,0.3327618076639698],[121,32,71,0.3319608727559699],[121,32,72,0.3311778187394494],[121,32,73,0.33041411131297915],[121,32,74,0.32967113795966496],[121,32,75,0.3289502035827431],[121,32,76,0.32825252607792155],[121,32,77,0.3275792318425058],[121,32,78,0.3269313512212891],[121,32,79,0.3263098138892187],[121,33,64,0.34023836636976124],[121,33,65,0.3394036045942535],[121,33,66,0.33857556142654094],[121,33,67,0.33775608292023457],[121,33,68,0.3369469628258332],[121,33,69,0.3361499386302125],[121,33,70,0.3353666875330215],[121,33,71,0.33459882236000665],[121,33,72,0.33384788741326155],[121,33,73,0.3331153542584232],[121,33,74,0.3324026174487535],[121,33,75,0.33171099018619166],[121,33,76,0.33104169991930843],[121,33,77,0.3303958838781975],[121,33,78,0.3297745845462875],[121,33,79,0.32917874506908373],[121,34,64,0.34250932576619986],[121,34,65,0.3417134667721613],[121,34,66,0.3409233901095409],[121,34,67,0.34014094066395345],[121,34,68,0.33936791205221095],[121,34,69,0.3386060426864366],[121,34,70,0.3378570117752489],[121,34,71,0.3371224352620371],[121,34,72,0.3364038617003235],[121,34,73,0.3357027680662354],[121,34,74,0.3350205555080258],[121,34,75,0.3343585450327264],[121,34,76,0.3337179731298653],[121,34,77,0.33309998733228474],[121,34,78,0.33250564171404207],[121,34,79,0.33193589232540294],[121,35,64,0.3446622599914893],[121,35,65,0.343905362105074],[121,35,66,0.3431533367589368],[121,35,67,0.34240802732272124],[121,35,68,0.341671226911625],[121,35,69,0.34094467447522536],[121,35,70,0.3402300508235491],[121,35,71,0.3395289745904017],[121,35,72,0.3388429981339563],[121,35,73,0.3381736033746215],[121,35,74,0.3375221975701307],[121,35,75,0.3368901090279323],[121,35,76,0.33627858275481776],[121,35,77,0.3356887760438182],[121,35,78,0.3351217539983573],[121,35,79,0.33457848499366544],[121,36,64,0.3466945811216495],[121,36,65,0.34597669047476504],[121,36,66,0.34526278980151404],[121,36,67,0.34455472060242587],[121,36,68,0.3438542751173196],[121,36,69,0.34316319243892396],[121,36,70,0.34248315456391915],[121,36,71,0.34181578238142035],[121,36,72,0.3411626315988975],[121,36,73,0.3405251886055541],[121,36,74,0.3399048662731073],[121,36,75,0.33930299969404676],[121,36,76,0.33872084185731116],[121,36,77,0.338159559261413],[121,36,78,0.33762022746499687],[121,36,79,0.3371038265748409],[121,37,64,0.34860378521275476],[121,37,65,0.34792493530418944],[121,37,66,0.3472492207521962],[121,37,67,0.3465784808301999],[121,37,68,0.3459145065233693],[121,37,69,0.34525903666710434],[121,37,70,0.3446137540231343],[121,37,71,0.34398028129324365],[121,37,72,0.3433601770706238],[121,37,73,0.3427549317288685],[121,37,74,0.3421659632485613],[121,37,75,0.3415946129815272],[121,37,76,0.34104214135268957],[121,37,77,0.3405097234995635],[121,37,78,0.33999844484937075],[121,37,79,0.3395092966337839],[121,38,64,0.35038745376164276],[121,38,65,0.3497476650481377],[121,38,66,0.3491101857339567],[121,38,67,0.3484768525029001],[121,38,68,0.3478494547010335],[121,38,69,0.34722973050010747],[121,38,70,0.34661936299878676],[121,38,71,0.34601997626170244],[121,38,72,0.345433131296326],[121,38,73,0.34486032196768274],[121,38,74,0.3443029708508538],[121,38,75,0.343762425021338],[121,38,76,0.3432399517832148],[121,38,77,0.34273673433514],[121,38,78,0.3422538673741587],[121,38,79,0.3417923526373435],[121,39,64,0.35204325511143],[121,39,65,0.3514425346282248],[121,39,66,0.3508433269416087],[121,39,67,0.35024746577902766],[121,39,68,0.3496567384581357],[121,39,69,0.34907288207520776],[121,39,70,0.34849757963156563],[121,39,71,0.34793245609803247],[121,39,72,0.3473790744174128],[121,39,73,0.34683893144501593],[121,39,74,0.34631345382717504],[121,39,75,0.34580399381782617],[121,39,76,0.34531182503309726],[121,39,77,0.3448381381439315],[121,39,78,0.344384036506733],[121,39,79,0.3439505317320432],[121,40,64,0.3535689458019271],[121,40,65,0.3530072868123052],[121,40,66,0.35244637404957047],[121,40,67,0.35188803791418843],[121,40,68,0.3513340633015649],[121,40,69,0.35078618581550164],[121,40,70,0.3502460879198788],[121,40,71,0.3497153950285783],[121,40,72,0.3491956715336464],[121,40,73,0.34868841677171114],[121,40,74,0.3481950609286113],[121,40,75,0.34771696088229564],[121,40,76,0.3472553959839461],[121,40,77,0.34681156377734795],[121,40,78,0.34638657565649655],[121,40,79,0.3459814524614461],[121,41,64,0.35496237186489166],[121,41,65,0.35443975353825524],[121,41,66,0.3539171455635413],[121,41,67,0.35339637464002827],[121,41,68,0.35287922284283335],[121,41,69,0.35236742386145226],[121,41,70,0.35186265917674875],[121,41,71,0.35136655417640644],[121,41,72,0.35088067420884117],[121,41,73,0.3504065205755899],[121,41,74,0.34994552646213267],[121,41,75,0.34949905280720683],[121,41,76,0.3490683841105656],[121,41,77,0.3486547241792067],[121,41,78,0.3482591918120575],[121,41,79,0.3478828164231258],[121,42,64,0.35622147006419036],[121,42,65,0.3557378571821917],[121,42,66,0.3552535501161619],[121,42,67,0.3547703714867182],[121,42,68,0.35429010014676876],[121,42,69,0.3538144674451694],[121,42,70,0.35334515342906303],[121,42,71,0.3528837829849095],[121,42,72,0.3524319219182086],[121,42,73,0.35199107297192583],[121,42,74,0.35156267178358636],[121,42,75,0.3511480827810874],[121,42,76,0.3507485950171868],[121,42,77,0.35036541794269144],[121,42,78,0.34999967711833296],[121,42,79,0.34965240986533797],[121,43,64,0.3573442690807849],[121,43,65,0.35689961177104246],[121,43,66,0.356453587706572],[121,43,67,0.35600801504889956],[121,43,68,0.3555646690232468],[121,43,69,0.3551252782073303],[121,43,70,0.354691520759083],[121,43,71,0.3542650205833052],[121,43,72,0.3538473434372473],[121,43,73,0.3534399929751335],[121,43,74,0.353044406731594],[121,43,75,0.3526619520440517],[121,43,76,0.352293921914027],[121,43,77,0.35194153080737867],[121,43,78,0.35160591039347205],[121,43,79,0.35128810522328047],[121,44,64,0.358328890642591],[121,44,65,0.35792312413951743],[121,44,66,0.3575153508839144],[121,44,67,0.35710738419514026],[121,44,68,0.35670099526201815],[121,44,69,0.35629790945679407],[121,44,70,0.35589980258826415],[121,44,71,0.3555082970940805],[121,44,72,0.3551249581722348],[121,44,73,0.3547512898517299],[121,44,74,0.35438873100240886],[121,44,75,0.3540386512839851],[121,44,76,0.35370234703423703],[121,44,77,0.3533810370963878],[121,44,78,0.35307585858565854],[121,44,79,0.35278786259500294],[121,45,64,0.35917355059922873],[121,45,65,0.35880659503150014],[121,45,66,0.35843702587480697],[121,45,67,0.3580666512209244],[121,45,68,0.3576972378106519],[121,45,69,0.35733050737293465],[121,45,70,0.3569681329034148],[121,45,71,0.3566117348824136],[121,45,72,0.35626287743234875],[121,45,73,0.3559230644145958],[121,45,74,0.3555937354657631],[121,45,75,0.3552762619734234],[121,45,76,0.3549719429912656],[121,45,77,0.35468200109368875],[121,45,78,0.35440757816982477],[121,45,79,0.35414973115699827],[121,46,64,0.3598765599416094],[121,46,65,0.3595483201458024],[121,46,66,0.3592168936547223],[121,46,67,0.35888408294511326],[121,46,68,0.3585516498955304],[121,46,69,0.35822131215062536],[121,46,70,0.357894739425123],[121,46,71,0.357573549747497],[121,46,72,0.357259305643344],[121,46,73,0.3569535102584651],[121,46,74,0.3566576034216286],[121,46,75,0.35637295764705046],[121,46,76,0.35610087407656255],[121,46,77,0.3558425783614853],[121,46,78,0.3555992164841954],[121,46,79,0.3553718505193944],[121,47,64,0.3604363257663934],[121,47,65,0.36014669112631803],[121,47,66,0.3598533309633134],[121,47,67,0.35955804174991524],[121,47,68,0.3592625800859395],[121,47,69,0.3589686590879172],[121,47,70,0.35867794471849557],[121,47,71,0.3583920520558105],[121,47,72,0.35811254150283134],[121,47,73,0.3578409149366852],[121,47,74,0.3575786117979374],[121,47,75,0.35732700511986115],[121,47,76,0.3570873974976695],[121,47,77,0.3568610169977237],[121,47,78,0.3566490130067105],[121,47,79,0.3564524520207944],[121,48,64,0.3608513521853305],[121,48,65,0.3606001964965887],[121,48,66,0.36034481126369755],[121,48,67,0.3600869865643812],[121,48,68,0.35982847330126233],[121,48,69,0.35957097961642426],[121,48,70,0.35931616724622395],[121,48,71,0.3590656478163566],[121,48,72,0.3588209790771747],[121,48,73,0.35858366107926787],[121,48,74,0.3583551322892823],[121,48,75,0.35813676564600894],[121,48,76,0.3579298645567175],[121,48,77,0.3577356588337472],[121,48,78,0.35755530057135004],[121,48,79,0.35738985996278894],[121,49,64,0.3611202411794456],[121,49,65,0.3609074225387404],[121,49,66,0.3606899056456577],[121,49,67,0.36046947379137984],[121,49,68,0.3602478717612382],[121,49,69,0.3600268022743721],[121,49,70,0.3598079223639299],[121,49,71,0.35959283969781125],[121,49,72,0.35938310883995506],[121,49,73,0.3591802274521775],[121,49,74,0.358985632436541],[121,49,75,0.358800696018282],[121,49,76,0.3586267217692735],[121,49,77,0.35846494057203776],[121,49,78,0.3583165065242979],[121,49,79,0.3581824927840783],[121,50,64,0.36124169339809714],[121,50,65,0.3610670541168224],[121,50,66,0.36088728367279077],[121,50,67,0.36070415817808343],[121,50,68,0.36051941587931347],[121,50,69,0.3603347536223397],[121,50,70,0.3601518232578229],[121,50,71,0.3599722279876223],[121,50,72,0.35979751865203646],[121,50,73,0.3596291899578912],[121,50,74,0.3594686766474609],[121,50,75,0.3593173496082443],[121,50,76,0.35917651192357536],[121,50,77,0.35904739486408244],[121,50,78,0.3589311538199863],[121,50,79,0.3588288641742444],[121,51,64,0.36121450890290624],[121,51,65,0.3610778754445444],[121,51,66,0.36093571417360215],[121,51,67,0.3607897936299669],[121,51,68,0.3606418450990886],[121,51,69,0.36049355910169767],[121,51,70,0.3603465818246737],[121,51,71,0.3602025114930616],[121,51,72,0.36006289468323915],[121,51,73,0.3599292225772389],[121,51,74,0.35980292715821205],[121,51,75,0.35968537734705186],[121,51,76,0.35957787508016137],[121,51,77,0.3594816513283754],[121,51,78,0.3593978620570296],[121,51,79,0.3593275841271829],[121,52,64,0.3610375878565423],[121,52,65,0.360938770797398],[121,52,66,0.36083406597652956],[121,52,67,0.36072523396829803],[121,52,68,0.3606139986738382],[121,52,69,0.3605020438357205],[121,52,70,0.3603910094940784],[121,52,71,0.3602824883842006],[121,52,72,0.3601780222755899],[121,52,73,0.36007909825249024],[121,52,74,0.3599871449358748],[121,52,75,0.3599035286469069],[121,52,76,0.35982954951186147],[121,52,77,0.3597664375085169],[121,52,78,0.35971534845400943],[121,52,79,0.35967735993415684],[121,53,64,0.3607099311563814],[121,53,65,0.3606487251691787],[121,53,66,0.3605813085889138],[121,53,67,0.36050943363113963],[121,53,68,0.36043481638912556],[121,53,69,0.360359133373392],[121,53,70,0.36028401799303467],[121,53,71,0.36021105697883754],[121,53,72,0.36014178674817643],[121,53,73,0.3600776897117157],[121,53,74,0.36002019052188927],[121,53,75,0.3599706522631785],[121,53,76,0.35993037258417515],[121,53,77,0.35990057977143886],[121,53,78,0.3598824287651402],[121,53,79,0.3598769971164993],[121,54,64,0.36023064101302427],[121,54,65,0.36020682487289535],[121,54,66,0.36017651281990404],[121,54,67,0.36014144831785166],[121,54,68,0.3601033392285],[121,54,69,0.3600638543758965],[121,54,70,0.36002462005282243],[121,54,71,0.3599872164693617],[121,54,72,0.35995317414359473],[121,54,73,0.3599239702344139],[121,54,74,0.35990102481646],[121,54,75,0.3598856970971853],[121,54,76,0.3598792815760345],[121,54,77,0.3598830041457527],[121,54,78,0.35989801813581235],[121,54,79,0.3599254002979665],[121,55,64,0.35959892147368144],[121,55,65,0.3596122580860761],[121,55,66,0.35961885134730387],[121,55,67,0.3596204355770971],[121,55,68,0.35961870998228057],[121,55,69,0.3596153352457946],[121,55,70,0.3596119300581863],[121,55,71,0.359610067591559],[121,55,72,0.35961127191598813],[121,55,73,0.359617014358399],[121,55,74,0.35962870980390826],[121,55,75,0.35964771293962916],[121,55,76,0.35967531444093803],[121,55,77,0.35971273710020746],[121,55,78,0.35976113189799863],[121,55,79,0.3598215740167213],[121,56,64,0.3588140788904326],[121,56,65,0.35886431534047336],[121,56,66,0.35890759922836435],[121,56,67,0.3589456553383599],[121,56,68,0.3589801737994319],[121,56,69,0.3590128066988925],[121,56,70,0.3590451646388313],[121,56,71,0.3590788132353628],[121,56,72,0.3591152695606872],[121,56,73,0.35915599852796143],[121,56,74,0.3592024092189846],[121,56,75,0.3592558511546945],[121,56,76,0.3593176105084738],[121,56,77,0.35938890626227293],[121,56,78,0.35947088630554047],[121,56,79,0.3595646234769688],[121,57,64,0.3578755223333322],[121,57,65,0.3579623899561468],[121,57,66,0.3580421343545006],[121,57,67,0.35811647038695005],[121,57,68,0.35818707868251454],[121,57,69,0.3582556022787859],[121,57,70,0.35832364320321],[121,57,71,0.35839275899753575],[121,57,72,0.35846445918543407],[121,57,73,0.35854020168328327],[121,57,74,0.3586213891541269],[121,57,75,0.3587093653047985],[121,57,76,0.3588054111262138],[121,57,77,0.35891074107683496],[121,57,78,0.3590264992093004],[121,57,79,0.35915375524022786],[121,58,64,0.3567827639483956],[121,58,65,0.35690597841995164],[121,58,66,0.3570219378499597],[121,58,67,0.3571323467825257],[121,58,68,0.35723887592572945],[121,58,69,0.35734315881409895],[121,58,70,0.35744678841462385],[121,58,71,0.35755131367629983],[121,58,72,0.3576582360232081],[121,58,73,0.3577690057911258],[121,58,74,0.3578850186076756],[121,58,75,0.3580076117160036],[121,58,76,0.3581380602419926],[121,58,77,0.35827757340501054],[121,58,78,0.3584272906721905],[121,58,79,0.3585882778562468],[121,59,64,0.3555354192604576],[121,59,65,0.3556946807084288],[121,59,66,0.35584659441443645],[121,59,67,0.3559928542211258],[121,59,68,0.3561351204960582],[121,59,69,0.3562750168184188],[121,59,70,0.3564141266096379],[121,59,71,0.3565539897079153],[121,59,72,0.35669609888665305],[121,59,73,0.3568418963167901],[121,59,74,0.3569927699730512],[121,59,75,0.3571500499840956],[121,59,76,0.3573150049265733],[121,59,77,0.3574888380630906],[121,59,78,0.35767268352407816],[121,59,79,0.35786760243356985],[121,60,64,0.35413320742086746],[121,60,65,0.3543282005550593],[121,60,66,0.3545157926096004],[121,60,67,0.35469766634068],[121,60,68,0.35487547135746295],[121,60,69,0.35505082083289036],[121,60,70,0.3552252881587745],[121,60,71,0.3554004035451771],[121,60,72,0.3555776505640772],[121,60,73,0.35575846263732036],[121,60,74,0.3559442194688639],[121,60,75,0.35613624342130135],[121,60,76,0.35633579583667563],[121,60,77,0.3565440733015811],[121,60,78,0.35676220385655],[121,60,79,0.356991243149729],[121,61,64,0.35257595140007425],[121,61,65,0.352806345661937],[121,61,66,0.3530293250895866],[121,61,67,0.35324656097004503],[121,61,68,0.3534596917381947],[121,61,69,0.3536703197115205],[121,61,70,0.3538800077695341],[121,61,71,0.3540902759778713],[121,61,72,0.3543025981570658],[121,61,73,0.3545183983959915],[121,61,74,0.3547390475099933],[121,61,75,0.3549658594436801],[121,61,76,0.3552000876183974],[121,61,77,0.35544292122437715],[121,61,78,0.3556954814575589],[121,61,79,0.3559588177010908],[121,62,64,0.3508635781250868],[121,62,65,0.35112902785584277],[121,62,66,0.3513870887754337],[121,62,67,0.3516394203215536],[121,62,68,0.3518876493411961],[121,62,69,0.3521333668491753],[121,62,70,0.3523781247317279],[121,62,71,0.35262343239518124],[121,62,72,0.35287075335969553],[121,62,73,0.35312150179806934],[121,62,74,0.3533770390196298],[121,62,75,0.35363866989918064],[121,62,76,0.3539076392510253],[121,62,77,0.35418512814806324],[121,62,78,0.35447225018595363],[121,62,79,0.35477004769235393],[121,63,64,0.3489961185617556],[121,63,65,0.3492962631886701],[121,63,66,0.349589084973421],[121,63,67,0.34987623112702737],[121,63,68,0.3501593164975516],[121,63,69,0.3504399203522284],[121,63,70,0.35071958310507945],[121,63,71,0.3509998029899982],[121,63,72,0.3512820326793107],[121,63,73,0.3515676758478027],[121,63,74,0.3518580836822363],[121,63,75,0.3521545513363261],[121,63,76,0.3524583143311941],[121,63,77,0.3527705449013014],[121,63,78,0.35309234828584934],[121,63,79,0.35342475896566083],[121,64,64,0.3469737077419657],[121,64,65,0.3473081719822887],[121,64,66,0.34763541943738796],[121,64,67,0.3479570847173352],[121,64,68,0.3482747702630652],[121,64,69,0.348590043151933],[121,64,70,0.34890443184916875],[121,64,71,0.34921942290521046],[121,64,72,0.3495364575989274],[121,64,73,0.3498569285267153],[121,64,74,0.35018217613749714],[121,64,75,0.35051348521358894],[121,64,76,0.35085208129745815],[121,64,77,0.35119912706436823],[121,64,78,0.35155571864090274],[121,64,79,0.3519228818693809],[121,65,64,0.34479658473566555],[121,65,65,0.3451649788177725],[121,65,66,0.3455263023749662],[121,65,67,0.3458821770454287],[121,65,68,0.3462341924578971],[121,65,69,0.3465839030604577],[121,65,70,0.34693282489565713],[121,65,71,0.3472824323219095],[121,65,72,0.3476341546812102],[121,65,73,0.34798937291314114],[121,65,74,0.34834941611519854],[121,65,75,0.34871555804940324],[121,65,76,0.34908901359522176],[121,65,77,0.3494709351487902],[121,65,78,0.34986240896843773],[121,65,79,0.35026445146651664],[121,66,64,0.3424650925677989],[121,66,65,0.34286701246905726],[121,66,66,0.3432620483977843],[121,66,67,0.3436518086529158],[121,66,68,0.3440378696493216],[121,66,69,0.34442177276964003],[121,66,70,0.3448050211628503],[121,66,71,0.3451890764895683],[121,66,72,0.3455753556140743],[121,66,73,0.34596522724305456],[121,66,74,0.3463600085110923],[121,66,75,0.34676096151286506],[121,66,76,0.34716928978207795],[121,66,77,0.3475861347171251],[121,66,78,0.3480125719534731],[121,66,79,0.34844960768278005],[121,67,64,0.3399796780800375],[121,67,65,0.34041470578092914],[121,67,66,0.34084307641555406],[121,67,67,0.3412663845800784],[121,67,68,0.3416861930775123],[121,67,69,0.3421040297923706],[121,67,70,0.34252138451250747],[121,67,71,0.34293970569810583],[121,67,72,0.34336039719782796],[121,67,73,0.34378481491211366],[121,67,74,0.34421426340366035],[121,67,75,0.3446499924550387],[121,67,76,0.3450931935734785],[121,67,77,0.34554499644281156],[121,67,78,0.34600646532257284],[121,67,79,0.34647859539426307],[121,68,64,0.33734089173743503],[121,68,65,0.3378085954914607],[121,68,66,0.3382699094741457],[121,68,67,0.3387264142194466],[121,68,68,0.3391796585244635],[121,68,69,0.33963115634671204],[121,68,70,0.340082383649007],[121,68,71,0.3405347751919396],[121,68,72,0.34098972127395477],[121,68,73,0.34144856441901345],[121,68,74,0.34191259601187757],[121,68,75,0.3423830528809665],[121,68,76,0.3428611138288242],[121,68,77,0.3433478961101804],[121,68,78,0.34384445185761],[121,68,79,0.34435176445479176],[121,69,64,0.334549387379953],[121,69,65,0.335049321998847],[121,69,66,0.335543174537613],[121,69,67,0.3360325111128818],[121,69,68,0.33651886612600596],[121,69,69,0.33700373918271376],[121,69,70,0.33748859196082204],[121,69,71,0.33797484502598674],[121,69,72,0.3384638745954994],[121,69,73,0.33895700925011296],[121,69,74,0.33945552659393574],[121,69,75,0.3399606498623441],[121,69,76,0.340473544477946],[121,69,77,0.34099531455459],[121,69,78,0.34152699934941183],[121,69,79,0.3420695696629307],[121,70,64,0.3316059219187833],[121,70,65,0.3321376290725673],[121,70,66,0.3326636022140879],[121,70,67,0.3331853926920997],[121,70,68,0.3337045201268436],[121,70,69,0.3342224693518477],[121,70,70,0.334740687304239],[121,70,71,0.33526057986354363],[121,70,72,0.3357835086389859],[121,70,73,0.33631078770526557],[121,70,74,0.33684368028686096],[121,70,75,0.337383395390794],[121,70,76,0.3379310843879056],[121,70,77,0.33848783754262307],[121,70,78,0.33905468049121945],[121,70,79,0.33963257066857305],[121,71,64,0.32851135497760114],[121,71,65,0.32907436350900376],[121,71,66,0.32963202642568024],[121,71,67,0.33018587996275794],[121,71,68,0.3307374285787371],[121,71,69,0.33128814191919137],[121,71,70,0.33183945172943985],[121,71,71,0.33239274871616464],[121,71,72,0.3329493793579863],[121,71,73,0.33351064266497354],[121,71,74,0.3340777868871392],[121,71,75,0.3346520061718542],[121,71,76,0.3352344371702308],[121,71,77,0.3358261555924559],[121,71,78,0.33642817271207337],[121,71,79,0.3370414318192263],[121,72,64,0.3252666484786922],[121,72,65,0.32586047473146285],[121,72,66,0.32644938402232326],[121,72,67,0.3270348971320569],[121,72,68,0.32761850298178363],[121,72,69,0.3282016556183069],[121,72,70,0.32878577114889806],[121,72,71,0.32937222462549065],[121,72,72,0.3299623468782951],[121,72,73,0.33055742129881405],[121,72,74,0.33115868057230574],[121,72,75,0.33176730335963267],[121,72,76,0.3323844109285403],[121,72,77,0.33301106373435246],[121,72,78,0.333648257950079],[121,72,79,0.3342969219459476],[121,73,64,0.3218728661738626],[121,73,65,0.3224970143345083],[121,73,66,0.32311671433948075],[121,73,67,0.32373347117976475],[121,73,68,0.324348757868703],[121,73,69,0.32496401244872797],[121,73,70,0.3255806349480035],[121,73,71,0.32619998428694263],[121,73,72,0.3268233751346217],[121,73,73,0.327452074715058],[121,73,74,0.3280872995634134],[121,73,75,0.32873021223204807],[121,73,76,0.329381917946476],[121,73,77,0.33004346121120776],[121,73,78,0.33071582236547603],[121,73,79,0.3313999140888544],[121,74,64,0.31833117312029274],[121,74,65,0.3189851355727639],[121,74,66,0.3196351586998677],[121,74,67,0.32028273137282126],[121,74,68,0.3209293103322849],[121,74,69,0.3215763172162084],[121,74,70,0.32222513553806315],[121,74,71,0.32287710761542826],[121,74,72,0.3235335314489469],[121,74,73,0.3241956575516237],[121,74,74,0.32486468572852367],[121,74,75,0.3255417618067973],[121,74,76,0.3262279743160832],[121,74,77,0.326924351119275],[121,74,78,0.32763185599364497],[121,74,79,0.3283513851623404],[121,75,64,0.3146428351012639],[121,75,65,0.31532609279411905],[121,75,66,0.3160059598591195],[121,75,67,0.3166839087234541],[121,75,68,0.31736137949593124],[121,75,69,0.3180397770156638],[121,75,70,0.31872046785161684],[121,75,71,0.3194047772529962],[121,75,72,0.3200939860504848],[121,75,73,0.32078932750830413],[121,75,74,0.3214919841271591],[121,75,75,0.32220308439798895],[121,75,76,0.3229236995065791],[121,75,77,0.323654839989018],[121,75,78,0.324397452337994],[121,75,79,0.32515241555994356],[121,76,64,0.3108092179916576],[121,76,65,0.3115212408172333],[121,76,66,0.31223046139530886],[121,76,67,0.3129383353907067],[121,76,68,0.31364628592719346],[121,76,69,0.3143557006567117],[121,76,70,0.31506792877996825],[121,76,71,0.3157842780183452],[121,76,72,0.3165060115371495],[121,76,73,0.3172343448201731],[121,76,74,0.317970442495624],[121,76,75,0.3187154151133511],[121,76,76,0.31947031587341684],[121,76,77,0.3202361373060021],[121,76,78,0.32101380790263734],[121,76,79,0.3218041886987756],[121,77,64,0.3068317870684088],[121,77,65,0.3075720342535243],[121,77,66,0.3083101070424893],[121,77,67,0.3090474440255595],[121,77,68,0.3097854509944823],[121,77,69,0.3105254980319836],[121,77,70,0.31126891655310485],[121,77,71,0.31201699629835655],[121,77,72,0.31277098227870115],[121,77,73,0.31353207167233893],[121,77,74,0.3143014106733597],[121,77,75,0.3150800912921781],[121,77,76,0.31586914810781075],[121,77,77,0.31666955497197774],[121,77,78,0.31748222166502305],[121,77,79,0.31830799050366954],[121,78,64,0.30271210626583234],[121,78,65,0.3034800267735556],[121,78,66,0.30424643996818634],[121,78,67,0.3050127670595594],[121,78,68,0.3057803961668726],[121,78,69,0.3065506794281302],[121,78,70,0.30732493006193184],[121,78,71,0.30810441938157607],[121,78,72,0.3088903737614924],[121,78,73,0.30968397155597105],[121,78,74,0.31048633997026065],[121,78,75,0.3112985518839423],[121,78,76,0.31212162262664733],[121,78,77,0.3129565067060933],[121,78,78,0.31380409448844127],[121,78,79,0.31466520883097915],[121,79,64,0.29845183737571224],[121,79,65,0.2992468703177149],[121,79,66,0.300041101994726],[121,79,67,0.3008359359368531],[121,79,68,0.30163274225689185],[121,79,69,0.30243285477941506],[121,79,70,0.30323756812271063],[121,79,71,0.30404813473353776],[121,79,72,0.3048657618747126],[121,79,73,0.30569160856549543],[121,79,74,0.306526782474848],[121,79,75,0.30737233676747056],[121,79,76,0.30822926690268304],[121,79,77,0.3090985073861312],[121,79,78,0.30998092847431097],[121,79,79,0.3108773328319281],[121,80,64,0.2940527391923536],[121,80,65,0.29487431425138527],[121,80,66,0.2956958327646002],[121,80,67,0.2965186802898228],[121,80,68,0.29734420860649385],[121,80,69,0.29817373286408955],[121,80,70,0.2990085286838985],[121,80,71,0.2998498292141234],[121,80,72,0.30069882213832055],[121,80,73,0.30155664663714765],[121,80,74,0.3024243903034888],[121,80,75,0.30330308601086814],[121,80,76,0.304193708735213],[121,80,77,0.30509717232995065],[121,80,78,0.3060143262544306],[121,80,79,0.3069459522556893],[121,81,64,0.28951666660250985],[121,81,65,0.29036420446451666],[121,81,66,0.2912124688497799],[121,81,67,0.29206282705823117],[121,81,68,0.2929166122161239],[121,81,69,0.29377512044346243],[121,81,70,0.2946396079752991],[121,81,71,0.29551128823686956],[121,81,72,0.29639132887257774],[121,81,73,0.2972808487287986],[121,81,74,0.2981809147905754],[121,81,75,0.2990925390721108],[121,81,76,0.3000166754611254],[121,81,77,0.3009542165170579],[121,81,78,0.30190599022310516],[121,81,79,0.30287275669211533],[121,82,64,0.28484556962006014],[121,82,65,0.2857184824154766],[121,82,66,0.286592942804855],[121,82,67,0.28747029955175935],[121,82,68,0.28835186681676084],[121,82,69,0.28923892134354556],[121,82,70,0.29013269959940974],[121,82,71,0.2910343948701083],[121,82,72,0.2919451543090685],[121,82,73,0.2928660759409396],[121,82,74,0.29379820561955194],[121,82,75,0.29474253394018746],[121,82,76,0.2956999931062324],[121,82,77,0.2966714537501894],[121,82,78,0.2976577217090448],[121,82,79,0.29865953475400664],[121,83,64,0.280041492365662],[121,83,65,0.2809391841194056],[121,83,66,0.2818392821642218],[121,83,67,0.2827431164561569],[121,83,68,0.2836519818851512],[121,83,69,0.28456713547949297],[121,83,70,0.2854897935651791],[121,83,71,0.28642112888015203],[121,83,72,0.2873622676434199],[121,83,73,0.2883142865790339],[121,83,74,0.2892782098949974],[121,83,75,0.29025500621700445],[121,83,76,0.2912455854770822],[121,83,77,0.2922507957571133],[121,83,78,0.2932714200872344],[121,83,79,0.29430817319912433],[121,84,64,0.2751065719912781],[121,84,65,0.27602843908097174],[121,84,66,0.276953608383219],[121,84,67,0.2778833907829028],[121,84,68,0.2788190616021392],[121,84,69,0.27976185782273433],[121,84,70,0.2807129752640772],[121,84,71,0.2816735657164283],[121,84,72,0.282644734029622],[121,84,73,0.2836275351571434],[121,84,74,0.284622971155669],[121,84,75,0.2856319881399548],[121,84,76,0.28665547319315754],[121,84,77,0.28769425123255754],[121,84,78,0.2887490818306827],[121,84,79,0.2898206559918495],[121,85,64,0.2700430375494422],[121,85,65,0.27098846917139485],[121,85,66,0.27193813572307735],[121,85,67,0.2728933287622476],[121,85,68,0.27385530375395806],[121,85,69,0.2748252773106734],[121,85,70,0.2758044243883485],[121,85,71,0.2767938754384346],[121,85,72,0.2777947135158241],[121,85,73,0.27880797134270097],[121,85,74,0.27983462832838096],[121,85,75,0.2808756075450296],[121,85,76,0.2819317726593396],[121,85,77,0.28300392482013914],[121,85,78,0.284092799501931],[121,85,79,0.28519906330437306],[121,86,64,0.26485320880751284],[121,86,65,0.26582158744998496],[121,86,66,0.26679517007993114],[121,86,67,0.26777522867987774],[121,86,68,0.2687629985767288],[121,86,69,0.2697596756991906],[121,86,70,0.2707664137916898],[121,86,71,0.2717843215847503],[121,86,72,0.27281445992184145],[121,86,73,0.2738578388426628],[121,86,74,0.274915414622952],[121,86,75,0.27598808677070064],[121,86,76,0.2770766949788628],[121,86,77,0.2781820160345255],[121,86,78,0.27930476068454213],[121,86,79,0.2804455704576392],[121,87,64,0.2595394950067982],[121,87,65,0.26053019693008006],[121,87,66,0.26152710775777444],[121,87,67,0.26253147965709267],[121,87,68,0.2635445275440502],[121,87,69,0.2645674263578398],[121,87,70,0.2656013082922369],[121,87,71,0.2666472599839973],[121,87,72,0.2677063196582622],[121,87,73,0.2687794742309339],[121,87,74,0.26986765636811116],[121,87,75,0.27097174150246794],[121,87,76,0.2720925448066578],[121,87,77,0.27323081812371847],[121,87,78,0.2743872468544717],[121,87,79,0.27556244680193503],[121,88,64,0.2541043935664128],[121,88,65,0.2551167892892445],[121,88,66,0.2561364341852236],[121,88,67,0.257164560374351],[121,88,68,0.2582023620975442],[121,88,69,0.25925099300760024],[121,88,70,0.2603115634177277],[121,88,71,0.2613851375076112],[121,88,72,0.2624727304870207],[121,88,73,0.2635753057169292],[121,88,74,0.26469377178823145],[121,88,75,0.2658289795579397],[121,88,76,0.2669817191429483],[121,88,77,0.2681527168713328],[121,88,78,0.26934263219118637],[121,88,79,0.27055205453700293],[121,89,64,0.24855048873214633],[121,89,65,0.24958394352400579],[121,89,66,0.25062572257636584],[121,89,67,0.25167703773846595],[121,89,68,0.2527390623206315],[121,89,69,0.25381292840145864],[121,89,70,0.2548997240931121],[121,89,71,0.25600049076469494],[121,89,72,0.25711622022370517],[121,89,73,0.25824785185554205],[121,89,74,0.2593962697211545],[121,89,75,0.26056229961270877],[121,89,76,0.2617467060673645],[121,89,77,0.2629501893391293],[121,89,78,0.26417338232878856],[121,89,79,0.2654168474719271],[121,90,64,0.2428804501701083],[121,90,65,0.24393432454889674],[121,90,66,0.2449976325354583],[121,90,67,0.2460715654932181],[121,90,68,0.2471572755553053],[121,90,69,0.24825587294759047],[121,90,70,0.24936842327038017],[121,90,71,0.2504959447387278],[121,90,72,0.25163940538137586],[121,90,73,0.25279972019829067],[121,90,74,0.25397774827688474],[121,90,75,0.2551742898668019],[121,90,76,0.256390083413354],[121,90,77,0.2576258025495819],[121,90,78,0.25888205304693407],[121,90,79,0.2601593697245828],[121,91,64,0.23709703150533373],[121,91,65,0.238170681739986],[121,91,66,0.23925490860566118],[121,91,67,0.24035088277356406],[121,91,68,0.24145973496208634],[121,91,69,0.2425825532753221],[121,91,70,0.24372038050078845],[121,91,71,0.2448742113663074],[121,91,72,0.24604498975606776],[121,91,73,0.24723360588582308],[121,91,74,0.24844089343732825],[121,91,75,0.24966762665188047],[121,91,76,0.25091451738306253],[121,91,77,0.2521822121086539],[121,91,78,0.25347128890170845],[121,91,79,0.254782254360815],[121,92,64,0.23120306880509336],[121,92,65,0.23229584742264],[121,92,66,0.23340037876155018],[121,92,67,0.23451781260319093],[121,92,68,0.23564925802290387],[121,92,69,0.2367957807436207],[121,92,70,0.23795840044923347],[121,92,71,0.2391380880576761],[121,92,72,0.24033576295373246],[121,92,73,0.24155229018153174],[121,92,74,0.2427884775968296],[121,92,75,0.244045072978944],[121,92,76,0.2453227611024414],[121,92,77,0.2466221607685396],[121,92,78,0.24794382179622643],[121,92,79,0.24928822197311057],[121,93,64,0.22520147900721202],[121,93,65,0.22631273530382345],[121,93,66,0.22743695284571175],[121,93,67,0.2285752603357166],[121,93,68,0.22972874498720597],[121,93,69,0.230898449892412],[121,93,70,0.2320853713510713],[121,93,71,0.233290456159328],[121,93,72,0.23451459885891496],[121,93,73,0.23575863894657145],[121,93,74,0.23702335804380065],[121,93,75,0.23830947702682964],[121,93,76,0.2396176531168721],[121,93,77,0.24094847693065957],[121,93,78,0.24230246949123757],[121,93,79,0.24368007919904627],[121,94,64,0.21909525829325882],[121,94,65,0.22022433884879639],[121,94,66,0.22136762094928236],[121,94,67,0.22252621203939796],[121,94,68,0.22370117726116004],[121,94,69,0.22489353683659036],[121,94,70,0.226104263411246],[121,94,71,0.22733427935856176],[121,94,72,0.22858445404502703],[121,94,73,0.22985560105614822],[121,94,74,0.23114847538330757],[121,94,75,0.23246377057137485],[121,94,76,0.2338021158271753],[121,94,77,0.23516407308877924],[121,94,78,0.23655013405560898],[121,94,79,0.23796071717938433],[121,95,64,0.2128874804064474],[121,95,65,0.21403372960205225],[121,95,66,0.21519545173627433],[121,95,67,0.2163737328251926],[121,95,68,0.21756961573978834],[121,95,69,0.21878409760256373],[121,95,70,0.22001812714557312],[121,95,71,0.22127260202982496],[121,95,72,0.2225483661260687],[121,95,73,0.22384620675692446],[121,95,74,0.22516685190046287],[121,95,75,0.22651096735509152],[121,95,76,0.22787915386585333],[121,95,77,0.22927194421209962],[121,95,78,0.23068980025653735],[121,95,79,0.23213310995566588],[121,96,64,0.2065812949145539],[121,96,65,0.20774405545279953],[121,96,66,0.20892359071199149],[121,96,67,0.21012096511847106],[121,96,68,0.21133719908233894],[121,96,69,0.2125732664076334],[121,96,70,0.2138300916644763],[121,96,71,0.21510854752314534],[121,96,72,0.2164094520500885],[121,96,73,0.21773356596583532],[121,96,74,0.2190815898649161],[121,96,75,0.22045416139764262],[121,96,76,0.2218518524138567],[121,96,77,0.2232751660686098],[121,96,78,0.22472453388977248],[121,96,79,0.22620031280758968],[121,97,64,0.20017992541770574],[121,97,65,0.20135853884484256],[121,97,66,0.20255525843539085],[121,97,67,0.20377112687424181],[121,97,68,0.20500714193074832],[121,97,69,0.20626425388206754],[121,97,70,0.20754336289903363],[121,97,71,0.20884531639451054],[121,97,72,0.21017090633424568],[121,97,73,0.21152086651017687],[121,97,74,0.21289586977630454],[121,97,75,0.21429652524698334],[121,97,76,0.21572337545773673],[121,97,77,0.21717689348856267],[121,97,78,0.21865748004972257],[121,97,79,0.22016546053003772],[121,98,64,0.19368666770087267],[121,98,65,0.19488047493069383],[121,98,66,0.19609374867522023],[121,98,67,0.1973275097357175],[121,98,68,0.19858273307103025],[121,98,69,0.19986034523370044],[121,98,70,0.20116122176917073],[121,98,71,0.20248618457802847],[121,98,72,0.20383599924130757],[121,98,73,0.20521137230880093],[121,98,74,0.20661294855049955],[121,98,75,0.20804130817100402],[121,98,76,0.20949696398702294],[121,98,77,0.21098035856791458],[121,98,78,0.21249186133927578],[121,98,79,0.21403176564959125],[121,99,64,0.18710488783138446],[121,99,65,0.1883132296702385],[121,99,66,0.18954242651025682],[121,99,67,0.19079347713654204],[121,99,68,0.1920673335379079],[121,99,69,0.19336489835537518],[121,99,70,0.19468702229431434],[121,99,71,0.19603450150018548],[121,99,72,0.19740807489789686],[121,99,73,0.19880842149473144],[121,99,74,0.20023615764696007],[121,99,75,0.20169183428998544],[121,99,76,0.2031759341321312],[121,99,77,0.20468886881203496],[121,99,78,0.20623097601964496],[121,99,79,0.20780251658083881],[121,100,64,0.18043802020131722],[121,100,65,0.18166023787379754],[121,100,66,0.18290472637348765],[121,100,67,0.18417246234652956],[121,100,68,0.18546437466253846],[121,100,69,0.18678134187508016],[121,100,70,0.18812418964635702],[121,100,71,0.18949368813605022],[121,100,72,0.19089054935433936],[121,100,73,0.1923154244790498],[121,100,74,0.19376890113704615],[121,100,75,0.19525150064971675],[121,100,76,0.19676367524266036],[121,100,77,0.19830580521953906],[121,100,78,0.19987819610009222],[121,100,79,0.20148107572233281],[121,101,64,0.17368956551457693],[121,101,65,0.1749250011894155],[121,101,66,0.17618415004006305],[121,101,67,0.17746796646073698],[121,101,68,0.1787773560631553],[121,101,69,0.18011317314860203],[121,101,70,0.18147621814475895],[121,101,71,0.18286723500725222],[121,101,72,0.18428690858593966],[121,101,73,0.18573586195588138],[121,101,74,0.18721465371312013],[121,101,75,0.1887237752351088],[121,101,76,0.1902636479059029],[121,101,77,0.19183462030607684],[121,101,78,0.19343696536736205],[121,101,79,0.19507087749202728],[121,102,64,0.16686308871901478],[121,102,65,0.16811108603470648],[121,102,66,0.16938426455935435],[121,102,67,0.17068355633220533],[121,102,68,0.17200984357896154],[121,102,69,0.17336395619503314],[121,102,70,0.17474666919411969],[121,102,71,0.1761587001220653],[121,102,72,0.17760070643601433],[121,102,73,0.17907328284881008],[121,102,74,0.18057695863876294],[121,102,75,0.1821121949246267],[121,102,76,0.18367938190589783],[121,102,77,0.18527883606839957],[121,102,78,0.18691079735514732],[121,102,79,0.18857542630251634],[121,103,64,0.15996221688341233],[121,103,65,0.1612221214731006],[121,103,66,0.1625087001309563],[121,103,67,0.1638228624482128],[121,103,68,0.16516546714711577],[121,103,69,0.1665373195749677],[121,103,70,0.16793916916405893],[121,103,71,0.16937170685743602],[121,103,72,0.170835562500525],[121,103,73,0.17233130219856152],[121,103,74,0.1738594256399495],[121,103,75,0.1754203633853854],[121,103,76,0.17701447412286753],[121,103,77,0.17864204188854904],[121,103,78,0.18030327325343115],[121,103,79,0.18199829447592003],[121,104,64,0.1529906370191576],[121,104,65,0.1542617970343068],[121,104,66,0.15556114792445402],[121,104,67,0.15688957674985315],[121,104,68,0.1582479186226286],[121,104,69,0.15963695421121255],[121,104,70,0.16105740721123096],[121,104,71,0.16250994178278183],[121,104,72,0.16399515995413333],[121,104,73,0.16551359899178264],[121,104,74,0.1670657287370062],[121,104,75,0.16865194890873358],[121,104,76,0.17027258637286596],[121,104,77,0.17192789237799705],[121,104,78,0.17361803975753504],[121,104,79,0.17534312009824593],[121,105,64,0.14595209384695768],[121,105,65,0.14723386047934178],[121,105,66,0.14854535784330197],[121,105,67,0.1498874503952936],[121,105,68,0.15126094954151786],[121,105,69,0.15266661115235614],[121,105,70,0.1541051330438108],[121,105,71,0.1555771524258982],[121,105,72,0.15708324331802004],[121,105,73,0.1586239139312528],[121,105,74,0.16019960401768985],[121,105,75,0.16181068218666356],[121,105,76,0.1634574431879724],[121,105,77,0.16514010516206784],[121,105,78,0.1668588068572024],[121,105,79,0.16861360481355703],[121,106,64,0.1388503875084235],[121,106,65,0.1401421155099572],[121,106,66,0.14146513623264584],[121,106,67,0.14282029146653757],[121,106,68,0.144208368827054],[121,106,69,0.14563009927902648],[121,106,70,0.14708615462829366],[121,106,71,0.14857714498081248],[121,106,72,0.15010361616930207],[121,106,73,0.15166604714736565],[121,106,74,0.1532648473512236],[121,106,75,0.15490035402888336],[121,106,76,0.15657282953687096],[121,106,77,0.1582824586044842],[121,106,78,0.16002934556556098],[121,106,79,0.1618135115577865],[121,107,64,0.13168937122233665],[121,107,65,0.1329904194222794],[121,107,66,0.13432434353090555],[121,107,67,0.13569196261951366],[121,107,68,0.1370940404389122],[121,107,69,0.1385312829526582],[121,107,70,0.14000433583841881],[121,107,71,0.1415137819574004],[121,107,72,0.14306013879186785],[121,107,73,0.14464385585070016],[121,107,74,0.14626531204311233],[121,107,75,0.14792481302037197],[121,107,76,0.14962258848563464],[121,107,77,0.1513587894718571],[121,107,78,0.15313348558778256],[121,107,79,0.1549466622320233],[121,108,64,0.12447294888596117],[121,108,65,0.12578268070502008],[121,108,66,0.12712689186547288],[121,108,67,0.1285063786778458],[121,108,68,0.12992188096558838],[121,108,69,0.13137407960712338],[121,108,70,0.13286359404657438],[121,108,71,0.13439097977311815],[121,108,72,0.13595672576898143],[121,108,73,0.13756125192603025],[121,108,74,0.1392049064310819],[121,108,75,0.14088796311976615],[121,108,76,0.1426106187990615],[121,108,77,0.14437299053846453],[121,108,78,0.14617511292978774],[121,108,79,0.14801693531560955],[121,109,64,0.11720507262122598],[121,109,65,0.11852285658208561],[121,109,66,0.11987674259235542],[121,109,67,0.12126750417012955],[121,109,68,0.12269585715990505],[121,109,69,0.12416245728305159],[121,109,70,0.12566789765751213],[121,109,71,0.1272127062866813],[121,109,72,0.12879734351748495],[121,109,73,0.13042219946760464],[121,109,74,0.13208759142197918],[121,109,75,0.13379376119840997],[121,109,76,0.13554087248239588],[121,109,77,0.13732900813115428],[121,109,78,0.1391581674468257],[121,109,79,0.14102826341888486],[121,110,64,0.10988974026558501],[121,110,65,0.11121495049939228],[121,110,66,0.11257790377957311],[121,110,67,0.11397935081052912],[121,110,68,0.11541998341741899],[121,110,69,0.11690043210465423],[121,110,70,0.11842126358418259],[121,110,71,0.11998297827349941],[121,110,72,0.12158600776341366],[121,110,73,0.12323071225550963],[121,110,74,0.12491737796944152],[121,110,75,0.12664621451988123],[121,110,76,0.12841735226324874],[121,110,77,0.1302308396141833],[121,110,78,0.13208664033174794],[121,110,79,0.13398463077539507],[121,111,64,0.10253099280792705],[121,111,65,0.10386300955626082],[121,111,66,0.10523442763467783],[121,111,67,0.106645974923061],[121,111,68,0.10809831919809765],[121,111,69,0.10959206569941543],[121,111,70,0.11112775466605734],[121,111,71,0.11270585884323447],[121,111,72,0.11432678095938481],[121,111,73,0.11599085117347718],[121,111,74,0.11769832449270057],[121,111,75,0.11944937816035472],[121,111,76,0.12124410901407617],[121,111,77,0.12308253081435466],[121,111,78,0.12496457154333301],[121,111,79,0.1268900706739196],[121,112,64,0.09513291176935407],[121,112,65,0.09647112188120405],[121,112,66,0.09785040787621518],[121,112,67,0.09927147480938264],[121,112,68,0.10073496639108476],[121,112,69,0.10224146256047484],[121,112,70,0.10379147702975905],[121,112,71,0.10538545479930161],[121,112,72,0.10702376964358479],[121,112,73,0.1087067215679614],[121,112,74,0.11043453423634081],[121,112,75,0.11220735236962781],[121,112,76,0.11402523911504142],[121,112,77,0.11588817338627372],[121,112,78,0.11779604717448278],[121,112,79,0.11974866283014457],[121,113,64,0.08769961652863656],[121,113,65,0.08904341395192211],[121,113,66,0.09042997704893824],[121,113,67,0.09185998805989892],[121,113,68,0.09333406662236515],[121,113,69,0.09485276735150866],[121,113,70,0.09641657739180931],[121,113,71,0.09802591394012561],[121,113,72,0.09968112174016525],[121,113,73,0.1013824705482943],[121,113,74,0.10313015257082886],[121,113,75,0.1049242798726206],[121,113,76,0.10676488175707277],[121,113,77,0.10865190211754111],[121,113,78,0.1105851967601133],[121,113,79,0.11256453069779565],[121,114,64,0.08023526159274252],[121,114,65,0.08158404785989787],[121,114,66,0.08297730378316781],[121,114,67,0.08441568880857925],[121,114,68,0.08589979850572166],[121,114,69,0.08743016215450383],[121,114,70,0.08900724030388873],[121,114,71,0.0906314223025439],[121,114,72,0.0923030238014374],[121,114,73,0.09402228422831388],[121,114,74,0.09578936423419815],[121,114,75,0.0976043431117351],[121,114,76,0.09946721618550503],[121,114,77,0.10137789217426502],[121,114,78,0.10333619052511567],[121,114,79,0.10534183871961622],[121,115,64,0.0727440338121052],[121,115,65,0.07409721851926082],[121,115,66,0.07549658999796766],[121,115,67,0.07694278493115347],[121,115,68,0.07843637483665533],[121,115,69,0.0799778636600958],[121,115,70,0.08156768534027609],[121,115,71,0.08320620134702544],[121,115,72,0.08489369819153858],[121,115,73,0.08663038490913089],[121,115,74,0.08841639051456524],[121,115,75,0.09025176142975394],[121,115,76,0.09213645888397742],[121,115,77,0.09407035628656973],[121,115,78,0.09605323657207027],[121,115,79,0.0980847895178642],[121,116,64,0.06523014954088724],[121,116,65,0.06658715082017169],[121,116,66,0.06799206804838753],[121,116,67,0.06944551518693998],[121,116,68,0.0709480397295183],[121,116,69,0.07250012030071895],[121,116,70,0.07410216422772126],[121,116,71,0.07575450508496001],[121,116,72,0.0774574002118198],[121,116,73,0.07921102820329018],[121,116,74,0.08101548637372546],[121,116,75,0.0828707881935205],[121,116,76,0.08477686069883905],[121,116,77,0.08673354187434856],[121,116,78,0.08874057800895746],[121,116,79,0.09079762102457878],[121,117,64,0.0576978517418919],[121,117,65,0.05905809672638668],[121,117,66,0.06046799781642953],[121,117,67,0.06192814630396176],[121,117,68,0.06343906569751895],[121,117,69,0.06500120932623044],[121,117,70,0.06661495791740907],[121,117,71,0.06828061714767153],[121,117,72,0.06999841516761396],[121,117,73,0.07176850009998315],[121,117,74,0.07359093751148943],[121,117,75,0.07546570785806672],[121,117,76,0.0773927039037215],[121,117,77,0.07937172811292331],[121,117,78,0.08140249001653],[121,117,79,0.08348460355127824],[121,118,64,0.05015140703653659],[121,118,65,0.05151433231740821],[121,118,66,0.05292866374614952],[121,118,67,0.05439497000776289],[121,118,68,0.055913750676007457],[121,118,69,0.05748543382241411],[121,118,70,0.05911037359942051],[121,118,71,0.06078884779756921],[121,118,72,0.06252105537679165],[121,118,73,0.06430711397171895],[121,118,74,0.06614705737116555],[121,118,75,0.0680408329715913],[121,118,76,0.06998829920468341],[121,118,77,0.071989222939012],[121,118,78,0.07404327685574974],[121,118,79,0.07615003679849036],[121,119,64,0.042595102699688026],[121,119,65,0.043960154775026905],[121,119,66,0.04537837182269522],[121,119,67,0.04685029999372331],[121,119,68,0.04837641498884504],[121,119,69,0.049957119672168926],[121,119,70,0.05159274165949712],[121,119,71,0.05328353088123372],[121,119,72,0.055029657119909425],[121,119,73,0.05683120752225762],[121,119,74,0.058688184085992356],[121,119,75,0.06060050112109233],[121,119,76,0.06256798268573227],[121,119,77,0.064590359996814],[121,119,78,0.06666726881509222],[121,119,79,0.06879824680492308],[121,120,64,0.035033243599172925],[121,120,65,0.03639987931406746],[121,120,66,0.037821446495093614],[121,120,67,0.03929846884268956],[121,120,68,0.04083139825766924],[121,120,69,0.042420612459194484],[121,120,70,0.044066412577921044],[121,120,71,0.0457690207242577],[121,120,72,0.04752857753176326],[121,120,73,0.04934513967562082],[121,120,74,0.051218677366337395],[121,120,75,0.05314907181847306],[121,120,76,0.05513611269453933],[121,120,77,0.05717949552402529],[121,120,78,0.05927881909753796],[121,120,79,0.06143358283609185],[121,121,64,0.027470149080346007],[121,121,65,0.02883783605771778],[121,121,66,0.03026222754316865],[121,121,67,0.03174382488030025],[121,121,68,0.033283056254437005],[121,121,69,0.03488027431455265],[121,121,70,0.03653575377089063],[121,121,71,0.038249688968215734],[121,121,72,0.04002219143472574],[121,121,73,0.04185328740655697],[121,121,74,0.04374291532803837],[121,121,75,0.04569092332749147],[121,121,76,0.04769706666872264],[121,121,77,0.049761005178159956],[121,121,78,0.051882300647625446],[121,121,79,0.05406041421277619],[121,122,64,0.019910149795522747],[121,122,65,0.021278366857252595],[121,122,66,0.02270506688839985],[121,122,67,0.024190728979814835],[121,122,68,0.025735757697053996],[121,122,69,0.027340480705918435],[121,122,70,0.029005146374200597],[121,122,71,0.030729921349577083],[121,122,72,0.032514888113679474],[121,122,73,0.03436004251227259],[121,122,74,0.03626529126169631],[121,122,75,0.03823044943137133],[121,122,76,0.04025523790251062],[121,122,77,0.0423392808029901],[121,122,78,0.04448210291837351],[121,122,79,0.04668312707911926],[121,123,64,0.012357584478084882],[121,123,65,0.013725822055957904],[121,123,66,0.015154325348526676],[121,123,67,0.016643551308254068],[121,123,68,0.018193880987898425],[121,123,69,0.019805617169324496],[121,123,70,0.021478981969036026],[121,123,71,0.023214114420366028],[121,123,72,0.025011068032352757],[121,123,73,0.026869808325237],[121,123,74,0.028790210342734657],[121,123,75,0.0307720561408813],[121,123,76,0.03281503225359572],[121,123,77,0.03491872713491495],[121,123,78,0.03708262857789035],[121,123,79,0.039306121110181724],[121,124,64,0.004816796661645251],[121,124,65,0.0061845571976404945],[121,124,66,0.0076143693362847875],[121,124,67,0.009106668016237274],[121,124,68,0.01066181089562157],[121,124,69,0.012280075983781669],[121,124,70,0.013961659250262493],[121,124,71,0.015706672210955896],[121,124,72,0.017515139491440013],[121,124,73,0.019386996367444453],[121,124,74,0.021322086282598907],[121,124,75,0.023320158343258734],[121,124,76,0.025380864790557456],[121,124,77,0.02750375844963615],[121,124,78,0.02968829015604124],[121,124,79,0.031933806159325395],[121,125,64,-0.0027078686559228737],[121,125,65,-0.001341070320467208],[121,125,66,8.956750208455322E-5],[121,125,67,0.0015844578713229973],[121,125,68,0.003143935180038193],[121,125,69,0.0047682527885923864],[121,125,70,0.0064575806370220645],[121,125,71,0.008212002834804055],[121,125,72,0.010031515228319132],[121,125,73,0.011916022945941296],[121,125,74,0.013865337920912602],[121,125,75,0.01587917639179781],[121,125,76,0.017957156380666972],[121,125,77,0.020098795148954074],[121,125,78,0.02230350663099101],[121,125,79,0.024570598845241598],[121,126,64,-0.010212068403783858],[121,126,65,-0.008846704650604775],[121,126,66,-0.007415712679567865],[121,126,67,-0.005918701165338103],[121,126,68,-0.004355358840092749],[121,126,69,-0.0027254568568472193],[121,126,70,-0.0010288511745585316],[121,126,71,7.345150349360452E-4],[121,126,72,0.0025646089581703446],[121,126,73,0.00446130568942682],[121,126,74,0.006424385758394324],[121,126,75,0.008453532635902539],[121,126,76,0.010548330217880153],[121,126,77,0.012708260287489614],[121,126,78,0.014932699955428563],[121,126,79,0.017220919078431374],[121,127,64,-0.01769146488437945],[121,127,65,-0.016327994952791802],[121,127,66,-0.014897108379513413],[121,127,67,-0.013398435418656263],[121,127,68,-0.01183168777600685],[121,127,69,-0.010196660970363869],[121,127,70,-0.00849323671616209],[121,127,71,-0.0067213853274388224],[121,127,72,-0.004881168143120118],[121,127,73,-0.0029727399736887428],[121,127,74,-9.963515690812885E-4],[121,127,75,0.001047647891985637],[121,127,76,0.0031588082914012494],[121,127,77,0.005336576039715268],[121,127,78,0.007580291522852556],[121,127,79,0.009889186527517912],[121,128,64,-0.02514172927480407],[121,128,65,-0.02378059890874684],[121,128,66,-0.02235026493944703],[121,128,67,-0.02085037903574971],[121,128,68,-0.019280675714787865],[121,128,69,-0.017640974701637946],[121,128,70,-0.015931183309772057],[121,128,71,-0.014151298842369653],[121,128,72,-0.012301411014459918],[121,128,73,-0.010381704395962865],[121,128,74,-0.008392460875468966],[121,128,75,-0.0063340621449679],[121,128,76,-0.004206992205373794],[121,128,77,-0.0020118398928965497],[121,128,78,2.5069857372983506E-4],[121,128,79,0.0025798170252002706],[121,129,64,-0.03255854518350276],[121,129,65,-0.031200186291599374],[121,129,66,-0.02977083945367298],[121,129,67,-0.0282701775787787],[121,129,68,-0.026697957822324092],[121,129,69,-0.02505402394433609],[121,129,70,-0.023338308688046205],[121,129,71,-0.02155083617885556],[121,129,72,-0.01969172434364752],[121,129,73,-0.017761187350519236],[121,129,74,-0.015759538068773504],[121,129,75,-0.013687190549374173],[121,129,76,-0.011544662525721838],[121,129,77,-0.00933257793479414],[121,129,78,-0.0070516694586602036],[121,129,79,-0.004702781086335928],[121,130,64,-0.03993761226191894],[121,130,65,-0.03858244259102306],[121,130,66,-0.03715450440673285],[121,130,67,-0.03565349167408938],[121,130,68,-0.03407918400299226],[121,130,69,-0.032431449005371316],[121,130,70,-0.030710244672199183],[121,130,71,-0.028915621770408628],[121,130,72,-0.027047726259684546],[121,130,73,-0.025106801729199102],[121,130,74,-0.02309319185413028],[121,130,75,-0.02100734287217254],[121,130,76,-0.01884980607989084],[121,130,77,-0.016621240348963284],[121,130,78,-0.014322414662325977],[121,130,79,-0.011954210670181209],[121,131,64,-0.047274649871271834],[121,131,65,-0.04592307269397233],[121,131,66,-0.04449695136709353],[121,131,67,-0.04299600071784804],[121,131,68,-0.04142002261625011],[121,131,69,-0.03976890833147306],[121,131,70,-0.03804264090757725],[121,131,71,-0.03624129755867389],[121,131,72,-0.034365052083495495],[121,131,73,-0.032414177299440516],[121,131,74,-0.030389047495930854],[121,131,75,-0.028290140907293426],[121,131,76,-0.026118042205016345],[121,131,77,-0.02387344500942412],[121,131,78,-0.02155715442078643],[121,131,79,-0.019170089569820026],[121,132,64,-0.05456540080465766],[121,132,65,-0.05321780462121484],[121,132,66,-0.051793894737082735],[121,132,67,-0.05029340663836401],[121,132,68,-0.04871616425033498],[121,132,69,-0.04706208229326003],[121,132,70,-0.04533116865711728],[121,132,71,-0.04352352679529625],[121,132,72,-0.04163935813723729],[121,132,73,-0.039678964520083126],[121,132,74,-0.03764275063918221],[121,132,75,-0.035531226517650394],[121,132,76,-0.03334500999484491],[121,132,77,-0.03108482923379674],[121,132,78,-0.02875152524760971],[121,132,79,-0.026346054444792655],[121,133,64,-0.061805635064101416],[121,133,65,-0.0604623933192836],[121,133,66,-0.05904107555869886],[121,133,67,-0.05754143771472098],[121,133,68,-0.05596332555268657],[121,133,69,-0.05430667702643788],[121,133,70,-0.05257152465231385],[121,133,71,-0.05075799790166191],[121,133,72,-0.048866325611830685],[121,133,73,-0.046896838415720454],[121,133,74,-0.044849971189727444],[121,133,75,-0.04272626552029024],[121,133,76,-0.04052637218889199],[121,133,77,-0.03825105367556325],[121,133,78,-0.03590118668089515],[121,133,79,-0.033477764666529186],[121,134,64,-0.06899115369273834],[121,134,65,-0.06765262450803489],[121,134,66,-0.06623426537548127],[121,134,67,-0.06473585245190094],[121,134,68,-0.06315725311728415],[121,134,69,-0.061498428330311716],[121,134,70,-0.059759435001880634],[121,134,71,-0.057940428386695775],[121,134,72,-0.05604166449289605],[121,134,73,-0.05406350250978653],[121,134,74,-0.0520064072535118],[121,134,75,-0.049870951630885285],[121,134,76,-0.047657819121220246],[121,134,77,-0.04536780627621195],[121,134,78,-0.043001825237880764],[121,134,79,-0.04056090627454234],[121,135,64,-0.07611779266231977],[121,135,65,-0.07478431858400114],[121,135,66,-0.073369270150627],[121,135,67,-0.07187244351259625],[121,135,68,-0.07029372742908446],[121,135,69,-0.0686331056237992],[121,135,70,-0.06689065915829384],[121,135,71,-0.06506656882290573],[121,135,72,-0.06316111754528064],[121,135,73,-0.06117469281656318],[121,135,74,-0.059107789135082967],[121,135,75,-0.05696101046775215],[121,135,76,-0.054735072729022116],[121,135,77,-0.05243080627744712],[121,135,78,-0.05004915842986535],[121,135,79,-0.04759119599315964],[121,136,64,-0.0831814268156652],[121,136,65,-0.08185333457915989],[121,136,66,-0.08044193424098012],[121,136,67,-0.07894704170532507],[121,136,68,-0.0773685668651839],[121,136,69,-0.07570651595856415],[121,136,70,-0.07396099394184219],[121,136,71,-0.07213220688029809],[121,136,72,-0.07022046435580342],[121,136,73,-0.0682261818917348],[121,136,74,-0.06614988339494743],[121,136,75,-0.06399220361502223],[121,136,76,-0.061753890620634966],[121,136,77,-0.059435808293096026],[121,136,78,-0.05703893883706834],[121,136,79,-0.05456438530843044],[121,137,64,-0.09017797386425275],[121,137,65,-0.08885557417531753],[121,137,66,-0.08744814442708837],[121,137,67,-0.08595552002905138],[121,137,68,-0.08437763175290192],[121,137,69,-0.08271450808947645],[121,137,70,-0.08096627762237896],[121,137,71,-0.07913317141835863],[121,137,72,-0.07721552543441312],[121,137,73,-0.07521378294168368],[121,137,74,-0.07312849696598323],[121,137,75,-0.07096033274516522],[121,137,76,-0.06871007020318509],[121,137,77,-0.06637860644090199],[121,137,78,-0.06396695824362786],[121,137,79,-0.06147626460539246],[121,138,64,-0.0971033984411247],[121,138,65,-0.09578698577427558],[121,138,66,-0.09438383399949557],[121,138,67,-0.09289379777447793],[121,138,68,-0.09131682848495426],[121,138,69,-0.08965297660255611],[121,138,70,-0.08790239405894418],[121,138,71,-0.08606533663626781],[121,138,72,-0.08414216637392558],[121,138,73,-0.08213335399169563],[121,138,74,-0.08003948132907279],[121,138,75,-0.07786124380102599],[121,138,76,-0.07559945287002379],[121,138,77,-0.07325503853437554],[121,138,78,-0.07082905183289856],[121,138,79,-0.06832266736587522],[121,139,64,-0.10395371620872407],[121,139,65,-0.10264356862340396],[121,139,66,-0.10124498690089645],[121,139,67,-0.09975784468163384],[121,139,68,-0.09818211369134033],[121,139,69,-0.09651786610003443],[121,139,70,-0.0947652768968843],[121,139,71,-0.09292462628097697],[121,139,72,-0.09099630206797105],[121,139,73,-0.08898080211270276],[121,139,74,-0.08687873674758484],[121,139,75,-0.08469083123700671],[121,139,76,-0.08241792824758787],[121,139,77,-0.08006099033432967],[121,139,78,-0.07762110244267806],[121,139,79,-0.07509947442645915],[121,140,64,-0.11072499802198976],[121,140,65,-0.10942137699694277],[121,140,66,-0.10802764192447223],[121,140,67,-0.10654368515408275],[121,140,68,-0.1049694984682652],[121,140,69,-0.10330517544284767],[121,140,70,-0.10155091382278636],[121,140,71,-0.0997070179134647],[121,140,72,-0.09777390098746364],[121,140,73,-0.09575208770687949],[121,140,74,-0.09364221656102267],[121,140,75,-0.09144504231970929],[121,140,76,-0.08916143850199809],[121,140,77,-0.08679239986041631],[121,140,78,-0.084339044880686],[121,140,79,-0.08180261829691515],[121,141,64,-0.1174133741464658],[121,141,65,-0.11611652443278997],[121,141,66,-0.11472789696816754],[121,141,67,-0.11324740252950405],[121,141,68,-0.11167505266385669],[121,141,69,-0.11001096205032623],[121,141,70,-0.10825535087698879],[121,141,71,-0.10640854723293147],[121,141,72,-0.10447098951536149],[121,141,73,-0.10244322885185764],[121,141,74,-0.1003259315376015],[121,141,75,-0.09811988148780204],[121,141,76,-0.0958259827051614],[121,141,77,-0.09344526176242729],[121,141,78,-0.09097887030004703],[121,141,79,-0.0884280875388821],[121,142,64,-0.1240150385317409],[121,142,65,-0.12272518802509391],[121,142,66,-0.1213419133452237],[121,142,67,-0.11986514340696941],[121,142,68,-0.11829490922099173],[121,142,69,-0.11663134625739324],[121,142,70,-0.11487469682398277],[121,142,71,-0.11302531245925107],[121,142,72,-0.11108365634002448],[121,142,73,-0.10905030570386631],[121,142,74,-0.1069259542860661],[121,142,75,-0.1047114147714241],[121,142,76,-0.10240762126068625],[121,142,77,-0.10001563175167016],[121,142,78,-0.09753663063509832],[121,142,79,-0.09497193120509628],[121,143,64,-0.13052625313984645],[121,143,65,-0.12924361277227292],[121,143,66,-0.12786592015059572],[121,143,67,-0.1263931220305362],[121,143,68,-0.1248252685768586],[121,143,69,-0.12316251572889636],[121,143,70,-0.1214051275803315],[121,143,71,-0.11955347877330358],[121,143,72,-0.11760805690680343],[121,143,73,-0.11556946495943665],[121,143,74,-0.11343842372638002],[121,143,75,-0.11121577427075158],[121,143,76,-0.10890248038924222],[121,143,77,-0.1064996310920523],[121,143,78,-0.1040084430971493],[121,143,79,-0.10143026333880245],[121,144,64,-0.13694335232879462],[121,144,65,-0.13566811598064998],[121,144,66,-0.13429621868343633],[121,144,67,-0.13282762472934406],[121,144,68,-0.13126240311944093],[121,144,69,-0.12960072993126348],[121,144,70,-0.12784289070029253],[121,144,71,-0.12598928281537203],[121,144,72,-0.12404041792803921],[121,144,73,-0.12199692437584131],[121,144,74,-0.1198595496194671],[121,144,75,-0.11762916269391577],[121,144,76,-0.11530675667354617],[121,144,77,-0.11289345115105076],[121,144,78,-0.11039049473037421],[121,144,79,-0.10779926753353009],[121,145,64,-0.14326274729141364],[121,145,65,-0.14199509172385572],[121,145,66,-0.1406291869258015],[121,145,67,-0.13916501441437268],[121,145,68,-0.13760266170107682],[121,145,69,-0.1359423246616318],[121,145,70,-0.1341843099192941],[121,145,71,-0.1323290372417646],[121,145,72,-0.13037704195163236],[121,145,73,-0.12832897735043458],[121,145,74,-0.1261856171561614],[121,145,75,-0.12394785795442342],[121,145,76,-0.12161672166313053],[121,145,77,-0.11919335801072717],[121,145,78,-0.11667904702799481],[121,145,79,-0.11407520155338591],[121,146,64,-0.14948093054915546],[121,146,65,-0.1482210153576744],[121,146,66,-0.14686128407725685],[121,146,67,-0.14540173513152643],[121,146,68,-0.1438424742087686],[121,146,69,-0.14218371663412743],[121,146,70,-0.14042578975494724],[121,146,71,-0.1385691353393278],[121,146,72,-0.13661431198785068],[121,146,73,-0.13456199755856368],[121,146,74,-0.13241299160504183],[121,146,75,-0.13016821782775345],[121,146,76,-0.12782872653856814],[121,146,77,-0.1253956971384621],[121,146,78,-0.12287044060842711],[121,146,79,-0.12025440201354509],[121,147,64,-0.15559448050103675],[121,147,65,-0.15434244809049769],[121,147,66,-0.1529890551455395],[121,147,67,-0.15153431667122252],[121,147,68,-0.14997835619140631],[121,147,69,-0.14832140812345773],[121,147,70,-0.1465638201657513],[121,147,71,-0.1447060556980233],[121,147,72,-0.14274869619454855],[121,147,73,-0.14069244365021316],[121,147,74,-0.13853812301931323],[121,147,75,-0.1362866846673002],[121,147,76,-0.13393920683531724],[121,147,77,-0.1314968981175706],[121,147,78,-0.12896109995155702],[121,147,79,-0.12633328912109743],[121,148,64,-0.16160006602787547],[121,148,65,-0.16035604160954486],[121,148,66,-0.1590091355934452],[121,148,67,-0.15755937923463015],[121,148,68,-0.1560069135440657],[121,148,69,-0.15435199166597968],[121,148,70,-0.15259498126765292],[121,148,71,-0.15073636694172032],[121,148,72,-0.14877675262094592],[121,148,73,-0.1467168640055463],[121,148,74,-0.1445575510028928],[121,148,75,-0.14229979017981542],[121,148,76,-0.13994468722734688],[121,148,77,-0.13749347943795898],[121,148,78,-0.13494753819530247],[121,148,79,-0.13230837147641084],[121,149,64,-0.16749445115150408],[121,149,65,-0.16625854276253182],[121,149,66,-0.16491825604161625],[121,149,67,-0.1634736381562505],[121,149,68,-0.16192484724906198],[121,149,69,-0.16027215481792023],[121,149,70,-0.1585159481081463],[121,149,71,-0.15665673251689283],[121,149,72,-0.1546951340096605],[121,149,73,-0.15263190154902184],[121,149,74,-0.1504679095353878],[121,149,75,-0.1482041602600328],[121,149,76,-0.1458417863702255],[121,149,77,-0.14338205334650833],[121,149,78,-0.14082636199214627],[121,149,79,-0.1381762509346962],[121,150,64,-0.1732744997491148],[121,150,65,-0.1720467982949444],[121,150,66,-0.17071324702738755],[121,150,67,-0.16927390868298986],[121,150,68,-0.16772895817391453],[121,150,69,-0.16607868497091116],[121,150,70,-0.16432349549806302],[121,150,71,-0.16246391553937012],[121,150,72,-0.160500592657138],[121,150,73,-0.158434298622244],[121,150,74,-0.15626593185611604],[121,150,75,-0.15399651988463614],[121,150,76,-0.15162722180382437],[121,150,77,-0.14915933075733478],[121,150,78,-0.14659427642579392],[121,150,79,-0.1439336275279276],[121,151,64,-0.1789371803229005],[121,151,65,-0.177717759643078],[121,151,66,-0.17639104381985182],[121,151,67,-0.1749571108098894],[121,151,68,-0.1734161519263846],[121,151,69,-0.17176847422499297],[121,151,70,-0.17001450290121733],[121,151,71,-0.1681547836993088],[121,151,72,-0.1661899853326525],[121,151,73,-0.16412090191570683],[121,151,74,-0.16194845540733194],[121,151,75,-0.1596736980657245],[121,151,76,-0.15729781491480332],[121,151,77,-0.15482212622209257],[121,151,78,-0.152248089988119],[121,151,79,-0.14957730444727757],[121,152,64,-0.18447957082466515],[121,152,65,-0.1832684877825227],[121,152,66,-0.18194869129082736],[121,152,67,-0.1805202741721872],[121,152,68,-0.1789834437662674],[121,152,69,-0.1773385243187755],[121,152,70,-0.17558595938158528],[121,152,71,-0.17372631422406026],[121,152,72,-0.17176027825554663],[121,152,73,-0.16968866745910938],[121,152,74,-0.1675124268363406],[121,152,75,-0.16523263286346024],[121,152,76,-0.1628504959585544],[121,152,77,-0.16036736295999754],[121,152,78,-0.157784719616073],[121,152,79,-0.15510419308574985],[121,153,64,-0.18989886353558616],[121,153,65,-0.18869615813226726],[121,153,66,-0.18738334884189456],[121,153,67,-0.18596054299389286],[121,153,68,-0.1844279635741075],[121,153,69,-0.18278595161692035],[121,153,70,-0.18103496860819268],[121,153,71,-0.17917559889911194],[121,153,72,-0.17720855213089348],[121,153,73,-0.17513466567042324],[121,153,74,-0.17295490705666838],[121,153,75,-0.17067037645807093],[121,153,76,-0.16828230914077746],[121,153,77,-0.1657920779477451],[121,153,78,-0.16320119578873926],[121,153,79,-0.16051131814118313],[121,154,64,-0.19519237000124368],[121,154,65,-0.1939980655145458],[121,154,66,-0.19269229538763122],[121,154,67,-0.19127518109299002],[121,154,68,-0.18974696087696663],[121,154,69,-0.1881079921550719],[121,154,70,-0.18635875391782974],[121,154,71,-0.1844998491472214],[121,154,72,-0.18253200724369678],[121,154,73,-0.18045608646382505],[121,154,74,-0.17827307636841494],[121,154,75,-0.1759841002813255],[121,154,76,-0.1735904177588108],[121,154,77,-0.17109342706944508],[121,154,78,-0.16849466768464505],[121,154,79,-0.16579582277974492],[121,155,64,-0.20035752602164525],[121,155,65,-0.19917162917015108],[121,155,66,-0.19787293439476883],[121,155,67,-0.19646157694299837],[121,155,68,-0.19493780993096232],[121,155,69,-0.19330200674196873],[121,155,70,-0.19155466343532734],[121,155,71,-0.18969640116547148],[121,155,72,-0.18772796861135965],[121,155,73,-0.1856502444162269],[121,155,74,-0.1834642396375178],[121,155,75,-0.18117110020721972],[121,155,76,-0.17877210940244437],[121,155,77,-0.1762686903262991],[121,155,78,-0.173662408399066],[121,155,79,-0.17095497385964675],[121,156,64,-0.20539189669638924],[121,156,65,-0.20421439782935813],[121,156,66,-0.2029227989774095],[121,156,67,-0.2015172487910334],[121,156,68,-0.19999801486072655],[121,156,69,-0.1983654861188613],[121,156,70,-0.19662017525152464],[121,156,71,-0.19476272112038528],[121,156,72,-0.19279389119455936],[121,156,73,-0.1907145839925447],[121,156,74,-0.18852583153405889],[121,156,75,-0.18622880180199675],[121,156,76,-0.18382480121435407],[121,156,77,-0.18131527710616369],[121,156,78,-0.17870182022145864],[121,156,79,-0.17598616721521787],[121,157,64,-0.21029318152509613],[121,157,65,-0.20912405483858698],[121,157,66,-0.20783955704844148],[121,157,67,-0.20643984983249508],[121,157,68,-0.2049252148559093],[121,157,69,-0.20329605617638458],[121,157,70,-0.20155290265907133],[121,157,71,-0.19969641040123742],[121,157,72,-0.19772736516666323],[121,157,73,-0.1956466848298325],[121,157,74,-0.19345542182975772],[121,157,75,-0.19115476563365064],[121,157,76,-0.18874604521029015],[121,157,77,-0.1862307315131284],[121,157,78,-0.18361043997315485],[121,157,79,-0.18088693300147074],[121,158,64,-0.2150592195628348],[121,158,65,-0.2138984233425354],[121,158,66,-0.2126210165268736],[121,158,67,-0.2112271734421176],[121,158,68,-0.20971718942445938],[121,158,69,-0.20809148322860238],[121,158,70,-0.20635059944578238],[121,158,71,-0.20449521093128187],[121,158,72,-0.20252612124141045],[121,158,73,-0.20044426708001595],[121,158,74,-0.19825072075436923],[121,158,75,-0.1959466926406297],[121,158,76,-0.19353353365874704],[121,158,77,-0.19101273775683547],[121,158,78,-0.18838594440504608],[121,158,79,-0.18565494109888458],[121,159,64,-0.21968799463070232],[121,159,65,-0.2185354715219332],[121,159,66,-0.21726513060124752],[121,159,67,-0.21587715846152788],[121,159,68,-0.21437186370283323],[121,159,69,-0.2127496793443815],[121,159,70,-0.21101116524570618],[121,159,71,-0.20915701053705904],[121,159,72,-0.20718803605901748],[121,159,73,-0.2051051968113753],[121,159,74,-0.2029095844111466],[121,159,75,-0.20060242955989915],[121,159,76,-0.19818510452027083],[121,159,77,-0.19565912560170196],[121,159,78,-0.19302615565541137],[121,159,79,-0.1902880065785656],[121,160,64,-0.22417764058163914],[121,160,65,-0.22303331788700842],[121,160,66,-0.2217700030492139],[121,160,67,-0.22038789454340568],[121,160,68,-0.21888731382322413],[121,160,69,-0.2172687077361839],[121,160,70,-0.215532650947992],[121,160,71,-0.21367984837586296],[121,160,72,-0.21171113763079208],[121,160,73,-0.2096274914688676],[121,160,74,-0.20743002025145296],[121,160,75,-0.20511997441444785],[121,160,76,-0.20269874694648937],[121,160,77,-0.2001678758761236],[121,160,78,-0.19752904676797578],[121,160,79,-0.19478409522786555],[121,161,64,-0.22852644662127675],[121,161,65,-0.22739023662645397],[121,161,66,-0.2261338936130658],[121,161,67,-0.22475762755203776],[121,161,68,-0.22326177233759736],[121,161,69,-0.22164678820606643],[121,161,70,-0.21991326416334644],[121,161,71,-0.21806192042116512],[121,161,72,-0.21609361084204592],[121,161,73,-0.21400932539307782],[121,161,74,-0.21181019260831724],[121,161,75,-0.20949748206003382],[121,161,76,-0.20707260683865691],[121,161,77,-0.20453712604145857],[121,161,78,-0.2018927472699943],[121,161,79,-0.19914132913625404],[121,162,64,-0.23273286268391158],[121,162,65,-0.23160466301199478],[121,162,66,-0.2303552234313232],[121,162,67,-0.22898476502035392],[121,162,68,-0.22749363369863362],[121,162,69,-0.22588230264898745],[121,162,70,-0.22415137474817715],[121,162,71,-0.2223015850060871],[121,162,72,-0.22033380301340932],[121,162,73,-0.21824903539789786],[121,162,74,-0.2160484282890257],[121,162,75,-0.2137332697912614],[121,162,76,-0.21130499246581302],[121,162,77,-0.20876517582088305],[121,162,78,-0.2061155488104518],[121,162,79,-0.2033579923415424],[121,163,64,-0.2367955048637268],[121,163,65,-0.23567519885867627],[121,163,66,-0.23443258052649496],[121,163,67,-0.2330678816635834],[121,163,68,-0.23158145979770173],[121,163,69,-0.22997380061354245],[121,163,70,-0.22824552038654955],[121,163,71,-0.22639736842505143],[121,163,72,-0.22443022952066483],[121,163,73,-0.22234512640705584],[121,163,74,-0.22014322222687965],[121,163,75,-0.21782582300711995],[121,163,76,-0.21539438014267676],[121,163,77,-0.2128504928882473],[121,163,78,-0.21019591085851042],[121,163,79,-0.20743253653657778],[121,164,64,-0.2407131609010309],[121,164,65,-0.23960061804063693],[121,164,66,-0.23836472534877784],[121,164,67,-0.23700572494927719],[121,164,68,-0.23552398555962073],[121,164,69,-0.23392000491988696],[121,164,70,-0.23219441222971382],[121,164,71,-0.2303479705933651],[121,164,72,-0.22838157947286286],[121,164,73,-0.22629627714925837],[121,164,74,-0.2240932431918744],[121,164,75,-0.2217738009357355],[121,164,76,-0.21933941996703654],[121,164,77,-0.21679171861668778],[121,164,78,-0.21413246646195883],[121,164,79,-0.21136358683617484],[121,165,64,-0.24448479572369386],[121,165,65,-0.2433798720625565],[121,165,66,-0.24215059637588443],[121,165,67,-0.24079722072389886],[121,165,68,-0.23932012459440566],[121,165,69,-0.2377198173350472],[121,165,70,-0.2359969405933946],[121,165,71,-0.2341522707649336],[121,165,72,-0.2321867214489134],[121,165,73,-0.23010134591213272],[121,165,74,-0.22789733956049274],[121,165,75,-0.22557604241853824],[121,165,76,-0.22313894161682934],[121,165,77,-0.22058767388719125],[121,165,78,-0.2179240280658592],[121,165,79,-0.21514994760447081],[121,166,64,-0.24810955704366255],[121,166,65,-0.24701209568665128],[121,166,66,-0.2457893157688723],[121,166,67,-0.24444147889585255],[121,166,68,-0.24296897490586722],[121,166,69,-0.24137232430547872],[121,166,70,-0.23965218071271965],[121,166,71,-0.2378093333079725],[121,166,72,-0.23584470929252221],[121,166,73,-0.2337593763548479],[121,166,74,-0.23155454514448992],[121,166,75,-0.22923157175370867],[121,166,76,-0.2267919602067815],[121,166,77,-0.2242373649569822],[121,166,78,-0.22156959339126192],[121,166,79,-0.21879060834258135],[121,167,64,-0.251586781008707],[121,167,65,-0.2504966126153727],[121,167,66,-0.24928019508413346],[121,167,67,-0.2479377991751025],[121,167,68,-0.24646982465722278],[121,167,69,-0.2448768027470406],[121,167,70,-0.24315939855493818],[121,167,71,-0.24131841353887762],[121,167,72,-0.2393547879656316],[121,167,73,-0.23726960337956648],[121,167,74,-0.23506408507881726],[121,167,75,-0.23273960459906406],[121,167,76,-0.23029768220476599],[121,167,77,-0.2277399893878882],[121,167,78,-0.2250683513741446],[121,167,79,-0.22228474963670963],[121,168,64,-0.25491599790921093],[121,168,65,-0.2538329412296255],[121,168,66,-0.25262274104134996],[121,168,67,-0.2512856768692008],[121,168,68,-0.24982215799353247],[121,168,69,-0.24823272589219092],[121,168,70,-0.2465180566897467],[121,168,71,-0.24467896361406372],[121,168,72,-0.24271639946017654],[121,168,73,-0.24063145906154215],[121,168,74,-0.23842538176850703],[121,168,75,-0.2360995539341979],[121,168,76,-0.2336555114076907],[121,168,77,-0.23109494203449776],[121,168,78,-0.2284196881643924],[121,168,79,-0.2256317491665234],[121,169,64,-0.2580969379401016],[121,169,65,-0.2570208003825929],[121,169,66,-0.2558166613475177],[121,169,67,-0.25448480873581336],[121,169,68,-0.2530256609210496],[121,169,69,-0.2514397691944982],[121,169,70,-0.24972782021731033],[121,169,71,-0.24789063847986414],[121,169,72,-0.2459291887682481],[121,169,73,-0.24384457863795295],[121,169,74,-0.24163806089460593],[121,169,75,-0.2393110360819627],[121,169,76,-0.23686505497700827],[121,169,77,-0.23430182109220332],[121,169,78,-0.23162319318490354],[121,169,79,-0.22883118777389433],[121,170,64,-0.2611295370179981],[121,170,65,-0.26006011524925665],[121,170,66,-0.2588618705771152],[121,170,67,-0.2575350988918296],[121,170,68,-0.2560802272435748],[121,170,69,-0.25449781629055557],[121,170,70,-0.2527885627540699],[121,170,71,-0.2509533018805796],[121,170,72,-0.24899300991075335],[121,170,73,-0.24690880655555925],[121,170,74,-0.24470195747923984],[121,170,75,-0.2423738767893825],[121,170,76,-0.23992612953393588],[121,170,77,-0.23736043420521524],[121,170,78,-0.23467866525091452],[121,170,79,-0.23188285559207977],[121,171,64,-0.26401394265340494],[121,171,65,-0.2629510232314295],[121,171,66,-0.26175849610823876],[121,171,67,-0.2604366647788747],[121,171,68,-0.2589859645556265],[121,171,69,-0.2574069650191102],[121,171,70,-0.25570037247614563],[121,171,71,-0.2538670324244884],[121,171,72,-0.2519079320243802],[121,171,73,-0.249824202576999],[121,171,74,-0.24761712200963526],[121,171,75,-0.2452881173678112],[121,171,76,-0.24283876731419685],[121,171,77,-0.24027080463435735],[121,171,78,-0.23758611874935676],[121,171,79,-0.23478675823516837],[121,172,64,-0.26675051987805143],[121,172,65,-0.26569387991841],[121,172,66,-0.26450688411481593],[121,172,67,-0.2631898431853318],[121,172,68,-0.26174320029254405],[121,172,69,-0.26016753349752675],[121,172,70,-0.25846355822045586],[121,172,71,-0.2566321297079338],[121,172,72,-0.2546742455069909],[121,172,73,-0.2525910479458372],[121,172,74,-0.25038382662119885],[121,172,75,-0.24805402089245066],[121,172,76,-0.24560322238240206],[121,172,77,-0.24303317748476827],[121,172,78,-0.2403457898783542],[121,172,79,-0.23754312304790026],[121,173,64,-0.2693398572274335],[121,173,65,-0.2682892651033104],[121,173,66,-0.26710760561494307],[121,173,67,-0.2657951963249293],[121,173,68,-0.26435248783757004],[121,173,69,-0.26278006625562733],[121,173,70,-0.26107865564359334],[121,173,71,-0.259249120497536],[121,173,72,-0.25729246822148155],[121,173,73,-0.25520985161041265],[121,173,74,-0.2530025713397137],[121,173,75,-0.2506720784612755],[121,173,76,-0.24821997690611486],[121,173,77,-0.2456480259935454],[121,173,78,-0.24295814294692197],[121,173,79,-0.24015240541590943],[121,174,64,-0.27178277277842],[121,174,65,-0.2707379888549196],[121,174,66,-0.26956146257521274],[121,174,67,-0.2682535179717491],[121,174,68,-0.26681461268577134],[121,174,69,-0.2652453404267715],[121,174,70,-0.26354643343832795],[121,174,71,-0.2617187649703916],[121,174,72,-0.2597633517579785],[121,174,73,-0.2576813565063495],[121,174,74,-0.25547409038250746],[121,174,75,-0.2531430155132265],[121,174,76,-0.25068974748946427],[121,174,77,-0.24811605787719915],[121,174,78,-0.24542387673471022],[121,174,79,-0.24261529513625235],[121,175,64,-0.2740803202419936],[121,175,65,-0.2730410976451747],[121,175,66,-0.2718694940711057],[121,175,67,-0.2705658396517381],[121,175,68,-0.26913059866488187],[121,175,69,-0.26756437199625627],[121,175,70,-0.2658678996078049],[121,175,71,-0.2640420630123349],[121,175,72,-0.2620878877544426],[121,175,73,-0.26000654589780614],[121,175,74,-0.25779935851867164],[121,175,75,-0.25546779820575083],[121,175,76,-0.253013491566383],[121,175,77,-0.2504382217389953],[121,175,78,-0.24774393091188862],[121,175,79,-0.24493272284829726],[121,176,64,-0.2762337951111937],[121,176,65,-0.27519988053230604],[121,176,66,-0.2740329825035065],[121,176,67,-0.27273343689077834],[121,176,68,-0.271301714213121],[121,176,69,-0.2697384221070931],[121,176,70,-0.268044307797505],[121,176,71,-0.2662202605743226],[121,176,72,-0.2642673142757431],[121,176,73,-0.26218664977752426],[121,176,74,-0.25997959748839217],[121,176,75,-0.2576476398517492],[121,176,76,-0.2551924138535294],[121,176,77,-0.252615713536241],[121,176,78,-0.24991949251921874],[121,176,79,-0.2471058665250364],[121,177,64,-0.27824474086412676],[121,177,65,-0.27721587539952053],[121,177,66,-0.2760534598712143],[121,177,67,-0.2747578355191861],[121,177,68,-0.2733294787138596],[121,177,69,-0.2717690034230301],[121,177,70,-0.2700771636848327],[121,177,71,-0.2682548560868141],[121,177,72,-0.2663031222510731],[121,177,73,-0.2642231513255452],[121,177,74,-0.2620162824812605],[121,177,75,-0.259684007415795],[121,177,76,-0.25722797286276244],[121,177,77,-0.2546499831073884],[121,177,78,-0.2519520025081863],[121,177,79,-0.24913615802468825],[121,178,64,-0.28011495522211416],[121,178,65,-0.2790908752492969],[121,178,66,-0.27793271409951836],[121,178,67,-0.27664081803271345],[121,178,68,-0.2752156688872046],[121,178,69,-0.27365788654889356],[121,178,70,-0.2719682314264015],[121,178,71,-0.2701476069322093],[121,178,72,-0.26819706196977044],[121,178,73,-0.26611779342666564],[121,178,74,-0.2639111486736351],[121,178,75,-0.26157862806970233],[121,178,76,-0.2591218874732405],[121,178,77,-0.25654274075902195],[121,178,78,-0.2538431623412686],[121,178,79,-0.2510252897026618],[121,179,64,-0.2818464964630393],[121,179,65,-0.2808269345533506],[121,179,66,-0.27967279542489576],[121,179,67,-0.27838443001010826],[121,179,68,-0.2769623252385598],[121,179,69,-0.27540710650830547],[121,179,70,-0.273719540163082],[121,179,71,-0.27190053597541597],[121,179,72,-0.26995114963561195],[121,179,73,-0.26787258524669066],[121,179,74,-0.2656661978251118],[121,179,75,-0.26333349580749743],[121,179,76,-0.26087614356320565],[121,179,77,-0.25829596391279286],[121,179,78,-0.25559494065239075],[121,179,79,-0.252775221083942],[121,180,64,-0.28344168978975337],[121,180,65,-0.28242637565813067],[121,180,66,-0.2812760228356973],[121,180,67,-0.279990986587094],[121,180,68,-0.2785717585640257],[121,180,69,-0.27701896927863867],[121,180,70,-0.27533339058266504],[121,180,71,-0.2735159381523945],[121,180,72,-0.2715676739794354],[121,180,73,-0.26948980886734764],[121,180,74,-0.26728370493396836],[121,180,75,-0.2649508781196581],[121,180,76,-0.26249300070130965],[121,180,77,-0.25991190381216034],[121,180,78,-0.25720957996743365],[121,180,79,-0.2543881855957565],[121,181,64,-0.2849031337536406],[121,181,65,-0.2838917952459451],[121,181,66,-0.2827449905689139],[121,181,67,-0.2814630789868713],[121,181,68,-0.28004655651273647],[121,181,69,-0.27849605838330926],[121,181,70,-0.276812361540247],[121,181,71,-0.27499638711678875],[121,181,72,-0.2730492029301912],[121,181,73,-0.27097202597995584],[121,181,74,-0.26876622495167524],[121,181,75,-0.2664333227267155],[121,181,76,-0.263974998897586],[121,181,77,-0.26139309228903573],[121,181,78,-0.2586896034848962],[121,181,79,-0.2558666973606252],[121,182,64,-0.286233706733356],[121,182,65,-0.28522607085173535],[121,182,66,-0.2840825746630462],[121,182,67,-0.28280358110715453],[121,182,68,-0.2813895902061505],[121,182,69,-0.27984124154142276],[121,182,70,-0.27815931673634786],[121,182,71,-0.2763447419446561],[121,182,72,-0.27439859034443914],[121,182,73,-0.27232208463787455],[121,182,74,-0.2701165995564979],[121,182,75,-0.2677836643722401],[121,182,76,-0.26532496541408024],[121,182,77,-0.26274234859035095],[121,182,78,-0.2600378219167211],[121,182,79,-0.2572135580498054],[121,183,64,-0.2874365734686385],[121,183,65,-0.28643236743539513],[121,183,66,-0.2852919395669744],[121,183,67,-0.28401565616364455],[121,183,68,-0.28260402091419545],[121,183,69,-0.28105767737467346],[121,183,70,-0.27937741145266537],[121,183,71,-0.2775641538971947],[121,183,72,-0.2756189827941927],[121,183,73,-0.2735431260676221],[121,183,74,-0.271337963986081],[121,183,75,-0.2690050316751097],[121,183,76,-0.26654602163504215],[121,183,77,-0.26396278626444913],[121,183,78,-0.2612573403891921],[121,183,79,-0.25843186379703575],[121,184,64,-0.2885151916492943],[121,184,65,-0.2875141440097333],[121,184,66,-0.28637654480492125],[121,184,67,-0.28510276339003193],[121,184,68,-0.2836933067883598],[121,184,69,-0.2821488221715902],[121,184,70,-0.2804700993455588],[121,184,71,-0.27865807324156533],[121,184,72,-0.2767138264132002],[121,184,73,-0.2746385915387649],[121,184,74,-0.27243375392911695],[121,184,75,-0.27010085404115014],[121,184,76,-0.2676415899967688],[121,184,77,-0.26505782010738876],[121,184,78,-0.26235156540398974],[121,184,79,-0.25952501217267043],[121,185,64,-0.28947331855930847],[121,185,65,-0.28847516032403386],[121,185,66,-0.2873401516974724],[121,185,67,-0.2860686647944922],[121,185,68,-0.28466120965169506],[121,185,69,-0.2831184367090922],[121,185,70,-0.28144113929722303],[121,185,71,-0.27963025612976833],[121,185,72,-0.27768687380162904],[121,185,73,-0.2756122292925396],[121,185,74,-0.273407712476054],[121,185,75,-0.2710748686341167],[121,185,76,-0.26861540097706793],[121,185,77,-0.2660311731691274],[121,185,78,-0.2633242118593727],[121,185,79,-0.2604967092181695],[121,186,64,-0.2903150177760936],[121,186,65,-0.28931948360323034],[121,186,66,-0.28818683013865865],[121,186,67,-0.2869174319726795],[121,186,68,-0.2855118018457331],[121,186,69,-0.2839705931313605],[121,186,70,-0.28229460232455794],[121,186,71,-0.28048477153557994],[121,186,72,-0.2785421909891579],[121,186,73,-0.27646810152920653],[121,186,74,-0.27426389712885624],[121,186,75,-0.2719311274060173],[121,186,76,-0.26947150014433874],[121,186,77,-0.2668868838195886],[121,186,78,-0.2641793101314881],[121,186,79,-0.26135097654094475],[121,187,64,-0.2910446659248531],[121,187,65,-0.2900514953426617],[121,187,66,-0.28892096542907886],[121,187,67,-0.287653452977194],[121,187,68,-0.2862494731342967],[121,187,69,-0.28470968188600065],[121,187,70,-0.28303487854571596],[121,187,71,-0.28122600824952837],[121,187,72,-0.2792841644564509],[121,187,73,-0.27721059145412186],[121,187,74,-0.27500668686978436],[121,187,75,-0.272674004186757],[121,187,76,-0.27021425526625464],[121,187,77,-0.2676293128745907],[121,187,78,-0.26492121321578743],[121,187,79,-0.26209215846954514],[121,188,64,-0.29166695948811305],[121,188,65,-0.29067589815847283],[121,188,66,-0.28954726516511686],[121,188,67,-0.2882814392435811],[121,188,68,-0.28687893766425643],[121,188,69,-0.2853404187175529],[121,188,70,-0.28366668420437435],[121,188,71,-0.28185868193196273],[121,188,72,-0.279917508215076],[121,188,73,-0.2778444103825769],[121,188,74,-0.27564078928926394],[121,188,75,-0.2733082018331582],[121,188,76,-0.2708483634780994],[121,188,77,-0.26826315078168983],[121,188,78,-0.26555460392860586],[121,188,79,-0.2627249292692325],[121,189,64,-0.2921869216703602],[121,189,65,-0.2911977226935897],[121,189,66,-0.2900707661841915],[121,189,67,-0.28880643257280125],[121,189,68,-0.28740524098317866],[121,189,69,-0.28586785171829177],[121,189,70,-0.28419506875168044],[121,189,71,-0.2823878422241545],[121,189,72,-0.28044727094579736],[121,189,73,-0.27837460490334365],[121,189,74,-0.27617124777276736],[121,189,75,-0.27383875943729585],[121,189,76,-0.271378858510696],[121,189,77,-0.2687934248658794],[121,189,78,-0.26608450216884205],[121,189,79,-0.2632543004178899],[121,190,64,-0.29260990931782616],[121,190,65,-0.29162233457931674],[121,190,66,-0.29049684156607625],[121,190,67,-0.2892338121702004],[121,190,68,-0.2878337671138902],[121,190,69,-0.28629736843634346],[121,190,70,-0.2846254219858948],[121,190,71,-0.28281887991746557],[121,190,72,-0.28087884319528544],[121,190,73,-0.2788065641009667],[121,190,74,-0.2766034487467557],[121,190,75,-0.2742710595941834],[121,190,76,-0.2718111179779651],[121,190,77,-0.2692255066351813],[121,190,78,-0.2665162722397728],[121,190,79,-0.26368562794229244],[121,191,64,-0.2929416198934056],[121,191,65,-0.29195544145253727],[121,191,66,-0.29083120769028403],[121,191,67,-0.2895693017409846],[121,191,68,-0.2881702456859644],[121,191,69,-0.2866347030411218],[121,191,70,-0.284963481249739],[121,191,71,-0.28315753418058],[121,191,72,-0.2812179646312345],[121,191,73,-0.2791460268367906],[121,191,74,-0.27694312898366513],[121,191,75,-0.2746108357288032],[121,191,76,-0.27215087072410604],[121,191,77,-0.26956511914611814],[121,191,78,-0.266855630231001],[121,191,79,-0.26402461981474246],[121,192,64,-0.29318809850670813],[121,192,65,-0.292203100028519],[121,192,66,-0.2910799313495033],[121,192,67,-0.28981897664218126],[121,192,68,-0.2884207591241127],[121,192,69,-0.2868859435460718],[121,192,70,-0.2852153386854277],[121,192,71,-0.2834098998447887],[121,192,72,-0.2814707313558784],[121,192,73,-0.2793990890887176],[121,192,74,-0.27719638296594096],[121,192,75,-0.27486417948247055],[121,192,76,-0.2724042042303906],[121,192,77,-0.26981834442906505],[121,192,78,-0.26710865146052265],[121,192,79,-0.26427734341005493],[121,193,64,-0.2933557449992431],[121,193,65,-0.29237172322933014],[121,193,66,-0.291249436919103],[121,193,67,-0.2899892710911032],[121,193,68,-0.2885917498934959],[121,193,69,-0.2870575390887321],[121,193,70,-0.28538744854740206],[121,193,71,-0.283582434747336],[121,193,72,-0.2816436032779204],[121,193,73,-0.27957221134970245],[121,193,74,-0.27736967030911697],[121,193,75,-0.2750375481585493],[121,193,76,-0.27257757208158495],[121,193,77,-0.26999163097348833],[121,193,78,-0.2672817779769283],[121,193,79,-0.26445023302290427],[121,194,64,-0.2934513210847408],[121,194,65,-0.29246808736785657],[121,194,66,-0.2913465135826906],[121,194,67,-0.29008698543030387],[121,194,68,-0.28869002780194364],[121,194,69,-0.28715630726810304],[121,194,70,-0.2854866345727549],[121,194,71,-0.28368196713282423],[121,194,72,-0.2817434115428593],[121,194,73,-0.2796722260849811],[121,194,74,-0.27746982324394065],[121,194,75,-0.27513777222749913],[121,194,76,-0.27267780149198373],[121,194,77,-0.2700918012730579],[121,194,78,-0.2673818261217258],[121,194,79,-0.26455009744552493],[121,195,64,-0.2934819575446145],[121,195,65,-0.2924993393874358],[121,195,66,-0.29137832261374275],[121,195,67,-0.2901192934490383],[121,195,68,-0.2887227773590987],[121,195,69,-0.28718944153934134],[121,195,70,-0.2855200974093597],[121,195,71,-0.2837157031126847],[121,195,72,-0.2817773660217361],[121,195,73,-0.27970634524804117],[121,195,74,-0.27750405415755264],[121,195,75,-0.2751720628912777],[121,195,76,-0.27271210089107567],[121,195,77,-0.2701260594306555],[121,195,78,-0.2674159941518026],[121,195,79,-0.2645841276057812],[121,196,64,-0.29345516147853856],[121,196,65,-0.2924730041570808],[121,196,66,-0.29135240471327684],[121,196,67,-0.2900937497612027],[121,196,68,-0.2886975651924544],[121,196,69,-0.2871645186657471],[121,196,70,-0.28549542210167467],[121,196,71,-0.2836912341826887],[121,196,72,-0.28175306285826185],[121,196,73,-0.27968216785530775],[121,196,74,-0.27747996319369495],[121,196,75,-0.2751480197070646],[121,196,76,-0.27268806756880937],[121,196,77,-0.27010199882324315],[121,196,78,-0.26739186992199515],[121,196,79,-0.2645599042655711],[121,197,64,-0.2933788236101834],[121,197,65,-0.2923969918223289],[121,197,66,-0.29127668740360235],[121,197,67,-0.2900182972397889],[121,197,68,-0.28862234752032967],[121,197,69,-0.2870895062280878],[121,197,70,-0.2854205856342662],[121,197,71,-0.28361654479854215],[121,197,72,-0.28167849207437823],[121,197,73,-0.2796076876195883],[121,197,74,-0.27740554591198796],[121,197,75,-0.2750736382703486],[121,197,76,-0.27261369538050184],[121,197,77,-0.2700276098266364],[121,197,78,-0.2673174386278083],[121,197,79,-0.2644854057796139],[121,198,64,-0.2932612256480711],[121,198,65,-0.2922796052116846],[121,198,66,-0.2911594924781231],[121,198,67,-0.28990127450782377],[121,198,68,-0.28850547768174084],[121,198,69,-0.2869727701912178],[121,198,70,-0.2853039645330103],[121,198,71,-0.28350002000952046],[121,198,72,-0.28156204523420525],[121,198,73,-0.2794913006422355],[121,198,74,-0.27728920100623955],[121,198,75,-0.2749573179573417],[121,198,76,-0.27249738251135247],[121,198,77,-0.26991128760014604],[121,198,78,-0.2672010906082466],[121,198,79,-0.2643690159145785],[121,199,64,-0.2931110477015696],[121,199,65,-0.29212954729867524],[121,199,66,-0.29100954350720076],[121,199,67,-0.2897514234858086],[121,199,68,-0.2883557137231948],[121,199,69,-0.2868230825280207],[121,199,70,-0.28515434252399663],[121,199,71,-0.28335045315017227],[121,199,72,-0.2814125231664004],[121,199,73,-0.2793418131640507],[121,199,74,-0.2771397380818037],[121,199,75,-0.27480786972674054],[121,199,76,-0.27234793930058],[121,199,77,-0.2697618399311026],[121,199,78,-0.26705162920878167],[121,199,79,-0.2642195317285754],[121,200,64,-0.2929373757520217],[121,200,65,-0.29195592871951115],[121,200,66,-0.29083597340008027],[121,200,67,-0.2895778969956535],[121,200,68,-0.2881822260423932],[121,200,69,-0.2866496289006609],[121,200,70,-0.28498091825012484],[121,200,71,-0.28317705359007794],[121,200,72,-0.28123914374492487],[121,200,73,-0.27916844937492136],[121,200,74,-0.2769663854919895],[121,200,75,-0.27463452398082966],[121,200,76,-0.27217459612518224],[121,200,77,-0.26958849513926786],[121,200,78,-0.26687827870444236],[121,200,79,-0.2640461715110042],[121,201,64,-0.29274970917900567],[121,201,65,-0.2917682753463502],[121,201,66,-0.29064833202287366],[121,201,67,-0.2893902664211063],[121,201,68,-0.2879946050888502],[121,201,69,-0.2864620163991475],[121,201,70,-0.2847933130453947],[121,201,71,-0.2829894545416669],[121,201,72,-0.28105154972821145],[121,201,73,-0.27898085928219163],[121,201,74,-0.2767787982335095],[121,201,75,-0.27444693848592294],[121,201,76,-0.27198701134331116],[121,201,77,-0.26940091004112254],[121,201,78,-0.26669069228303277],[121,201,79,-0.2638585827827582],[121,202,64,-0.29217291056556105],[121,202,65,-0.29119147430932124],[121,202,66,-0.29007152863252805],[121,202,67,-0.288813460748093],[121,202,68,-0.28741779720411464],[121,202,69,-0.2858852063738445],[121,202,70,-0.2842165009507991],[121,202,71,-0.2824126404490803],[121,202,72,-0.2804747337088682],[121,202,73,-0.2784040414071616],[121,202,74,-0.27620197857359785],[121,202,75,-0.27387011711156817],[121,202,76,-0.2714101883244794],[121,202,77,-0.2688240854472008],[121,202,78,-0.2661138661827177],[121,202,79,-0.26328175524394326],[121,203,64,-0.2921684993941168],[121,203,65,-0.2911870138120235],[121,203,66,-0.2900670205989927],[121,203,67,-0.2888089069701367],[121,203,68,-0.2874131994737793],[121,203,69,-0.2858805664813737],[121,203,70,-0.284211820682567],[121,203,71,-0.2824079215854748],[121,203,72,-0.2804699780221237],[121,203,73,-0.27839925065914495],[121,203,74,-0.27619715451354554],[121,203,75,-0.27386526147377455],[121,203,76,-0.2714053028259358],[121,203,77,-0.26881917178518466],[121,203,78,-0.26610892603233316],[121,203,79,-0.26327679025561],[121,204,64,-0.29215329250889877],[121,204,65,-0.2911716368829521],[121,204,66,-0.29005147979551316],[121,204,67,-0.28879320846928225],[121,204,68,-0.2873973494533586],[121,204,69,-0.285864571112996],[121,204,70,-0.28419568612450463],[121,204,71,-0.28239165397536004],[121,204,72,-0.28045358346948224],[121,204,73,-0.2783827352377619],[121,204,74,-0.2761805242536648],[121,204,75,-0.2738485223541286],[121,204,76,-0.2713884607656074],[121,204,77,-0.2688022326352969],[121,204,78,-0.26609189556756785],[121,204,79,-0.26325967416555485],[121,205,64,-0.29192880915627706],[121,205,65,-0.2909467920953074],[121,205,66,-0.28982628668145427],[121,205,67,-0.28856768015394296],[121,205,68,-0.2871714990639117],[121,205,69,-0.28563841176382254],[121,205,70,-0.28396923090201676],[121,205,71,-0.2821649159224733],[121,205,72,-0.28022657556973607],[121,205,73,-0.2781554703990853],[121,205,74,-0.2759530152917864],[121,205,75,-0.27362078197562756],[121,205,76,-0.2711605015506031],[121,205,77,-0.26857406701977504],[121,205,78,-0.2658635358253415],[121,205,79,-0.26303113238985676],[121,206,64,-0.29168124834835707],[121,206,65,-0.2906986103412771],[121,206,66,-0.28957750649510217],[121,206,67,-0.2883183240780095],[121,206,68,-0.286921589645198],[121,206,69,-0.2853879715277039],[121,206,70,-0.28371828232635865],[121,206,71,-0.2819134814109454],[121,206,72,-0.2799746774245203],[121,206,73,-0.2779031307929756],[121,206,74,-0.27570025623967276],[121,206,75,-0.27336762530536385],[121,206,76,-0.27090696887325294],[121,206,77,-0.26832017969923305],[121,206,78,-0.26560931494732376],[121,206,79,-0.2627765987302587],[121,207,64,-0.2914049231850361],[121,207,65,-0.2904213399718656],[121,207,66,-0.2892993251795992],[121,207,67,-0.28803926612135766],[121,207,68,-0.28664168935938106],[121,207,69,-0.28510726319294166],[121,207,70,-0.2834368001513875],[121,207,71,-0.2816312594923831],[121,207,72,-0.2796917497053064],[121,207,73,-0.2776195310198811],[121,207,74,-0.275416017919876],[121,207,75,-0.27308278166208344],[121,207,76,-0.27062155280043254],[121,207,77,-0.2680342237152733],[121,207,78,-0.2653228511478539],[121,207,79,-0.26248965873994257],[121,208,64,-0.2910944540749084],[121,208,65,-0.2901095397763934],[121,208,66,-0.2889862421303169],[121,208,67,-0.28772494851433406],[121,208,68,-0.2863261855018311],[121,208,69,-0.2847906213485606],[121,208,70,-0.28311906848439905],[121,208,71,-0.2813124860102927],[121,208,72,-0.279371982200352],[121,208,73,-0.2772988170091718],[121,208,74,-0.2750944045842111],[121,208,75,-0.2727603157834416],[121,208,76,-0.2702982806981252],[121,208,77,-0.26771019118075146],[121,208,78,-0.26499810337816065],[121,208,79,-0.26216424026980323],[121,209,64,-0.29074476212553924],[121,209,65,-0.28975807231162],[121,209,66,-0.2886330634651344],[121,209,67,-0.2873701230514982],[121,209,68,-0.28596977766062504],[121,209,69,-0.2844326954918547],[121,209,70,-0.2827596888439926],[121,209,71,-0.2809517166105253],[121,209,72,-0.2790098867799742],[121,209,73,-0.27693545894146243],[121,209,74,-0.27472984679532975],[121,209,75,-0.27239462066900755],[121,209,76,-0.2699315100380072],[121,209,77,-0.2673424060520597],[121,209,78,-0.2646293640664299],[121,209,79,-0.26179460617835304],[121,210,64,-0.29035106259131216],[121,210,65,-0.28936209728892237],[121,210,66,-0.28823489535323865],[121,210,67,-0.28696984436432693],[121,210,68,-0.2855674709354348],[121,210,69,-0.2840284431957282],[121,210,70,-0.2823535732781237],[121,210,71,-0.28054381981228427],[121,210,72,-0.2786002904227354],[121,210,73,-0.27652424423218314],[121,210,74,-0.27431709436986373],[121,210,75,-0.27198041048513744],[121,210,76,-0.2695159212661834],[121,210,77,-0.2669255169638298],[121,210,78,-0.2642112519205436],[121,210,79,-0.2613753471045287],[121,211,64,-0.28990885837886937],[121,211,65,-0.2889170650195473],[121,211,66,-0.28778713740245887],[121,211,67,-0.28651946325289945],[121,211,68,-0.28511456921582357],[121,211,69,-0.2835731233358525],[121,211,70,-0.28189593754236064],[121,211,71,-0.2800839701397041],[121,211,72,-0.2781383283025548],[121,211,73,-0.27606027057641536],[121,211,74,-0.273851209383148],[121,211,75,-0.2715127135317301],[121,211,76,-0.2690465107340917],[121,211,77,-0.2664544901260698],[121,211,78,-0.26373870479350325],[121,211,79,-0.26090137430342064],[121,212,64,-0.28941393361013457],[121,212,65,-0.2884187099179286],[121,212,66,-0.2872854761051321],[121,212,67,-0.2860146200765582],[121,212,68,-0.2846066685189417],[121,212,69,-0.2830622893776311],[121,212,70,-0.2813822943383376],[121,212,71,-0.27956764131400225],[121,212,72,-0.2776194369367472],[121,212,73,-0.2755389390549857],[121,212,74,-0.2733275592355232],[121,212,75,-0.2709868652708628],[121,212,76,-0.26851858369156945],[121,212,77,-0.26592460228373105],[121,212,78,-0.2632069726115349],[121,212,79,-0.26036791254491587],[121,213,64,-0.28886234724291027],[121,213,65,-0.2878630440630594],[121,213,66,-0.2867258783424844],[121,213,67,-0.2854512382035287],[121,213,68,-0.2840396503866096],[121,213,69,-0.28249178272295883],[121,213,70,-0.2808084466123941],[121,213,71,-0.2789905995061841],[121,213,72,-0.27703934739496716],[121,213,73,-0.2749559473018054],[121,213,74,-0.27274180978020046],[121,213,75,-0.2703985014172884],[121,213,76,-0.26792774734206715],[121,213,77,-0.26533143373869117],[121,213,78,-0.2626116103648589],[121,213,79,-0.2597704930752417],[121,214,64,-0.2882504267490683],[121,214,65,-0.2872463508179405],[121,214,66,-0.28610458494755175],[121,214,67,-0.28482551751952556],[121,214,68,-0.2834096753418123],[121,214,69,-0.28185772611679905],[121,214,70,-0.2801704809144201],[121,214,71,-0.2783488966503278],[121,214,72,-0.27639407856908826],[121,214,73,-0.27430728273247806],[121,214,74,-0.2720899185127129],[121,214,75,-0.26974355109082426],[121,214,76,-0.26726990396003547],[121,214,77,-0.2646708614341752],[121,214,78,-0.2619484711611514],[121,214,79,-0.25910494664143524],[121,215,64,-0.28757476185031683],[121,215,65,-0.2865651785070865],[121,215,66,-0.28541810432662273],[121,215,67,-0.28413392799532244],[121,215,68,-0.2827131764045834],[121,215,69,-0.2811565171135616],[121,215,70,-0.27946476081689087],[121,215,71,-0.2776388638174304],[121,215,72,-0.2756799305039953],[121,215,73,-0.2735892158341571],[121,215,74,-0.2713681278219362],[121,215,75,-0.26901823003060676],[121,215,76,-0.26654124407046476],[121,215,77,-0.2639390521015973],[121,215,78,-0.2612136993416744],[121,215,79,-0.25836739657871677],[121,216,64,-0.28683219831156015],[121,216,65,-0.2858163341521074],[121,216,66,-0.2846632061392186],[121,216,67,-0.28337320331330584],[121,216,68,-0.28194685266730035],[121,216,69,-0.2803848216032956],[121,216,70,-0.27868792039410906],[121,216,71,-0.2768571046498296],[121,216,72,-0.2748934777893072],[121,216,73,-0.2727982935166702],[121,216,74,-0.27057295830269323],[121,216,75,-0.268219033871234],[121,216,76,-0.26573823969059496],[121,216,77,-0.26313245546984043],[121,216,78,-0.260403723660097],[121,216,79,-0.25755425196078774],[121,217,64,-0.2860198317918251],[121,217,65,-0.28499687726533496],[121,217,66,-0.2838369150365828],[121,217,67,-0.28254033455298155],[121,217,68,-0.2811076629293566],[121,217,69,-0.2795395673976704],[121,217,70,-0.27783685776162104],[121,217,71,-0.2760004888561757],[121,217,72,-0.27403156301200293],[121,217,73,-0.2719313325248819],[121,217,74,-0.2697012021299148],[121,217,75,-0.26734273148076504],[121,217,76,-0.264857637633766],[121,217,77,-0.2622477975369438],[121,217,78,-0.2595152505239734],[121,217,79,-0.2566622008130197],[121,218,64,-0.28513500175278317],[121,218,65,-0.2841041137015322],[121,218,66,-0.2829365044587142],[121,218,67,-0.2816325639354714],[121,218,68,-0.28019281939125174],[121,218,69,-0.2786179378757798],[121,218,70,-0.27690872867584737],[121,218,71,-0.27506614576698585],[121,218,72,-0.2730912902699836],[121,218,73,-0.27098541291232703],[121,218,74,-0.26874991649439317],[121,218,75,-0.2663863583606111],[121,218,76,-0.26389645287544505],[121,218,77,-0.2612820739042344],[121,218,78,-0.25854525729891564],[121,218,79,-0.2556882033885758],[121,219,64,-0.28417528542486314],[121,219,65,-0.28313558956766993],[121,219,66,-0.2819594904899332],[121,219,67,-0.2806473786269843],[121,219,68,-0.2791997814080813],[121,219,69,-0.2776173656897549],[121,219,70,-0.27590094019391365],[121,219,71,-0.2740514579507709],[121,219,72,-0.2720700187465599],[121,219,73,-0.2699578715761092],[121,219,74,-0.2677164171001126],[121,219,75,-0.2653472101073082],[121,219,76,-0.26285196198141847],[121,219,77,-0.26023254317288946],[121,219,78,-0.25749098567545037],[121,219,79,-0.25462948550744646],[121,220,64,-0.283138491830921],[121,220,65,-0.2820890851907447],[121,220,66,-0.28090362577295047],[121,220,67,-0.27958250460123746],[121,220,68,-0.27812624930240304],[121,220,69,-0.2765355265301608],[121,220,70,-0.27481114439364984],[121,220,71,-0.27295405489070346],[121,220,72,-0.27096535634583585],[121,220,73,-0.26884629585302666],[121,220,74,-0.266598271723132],[121,220,75,-0.2642228359361394],[121,220,76,-0.26172169659811806],[121,220,77,-0.25909672040290155],[121,220,78,-0.25634993509852577],[121,220,79,-0.25348353195837336],[121,221,64,-0.2820226558675154],[121,221,65,-0.28096260914368465],[121,221,66,-0.27976689348148687],[121,221,67,-0.2784359005608713],[121,221,68,-0.27697015823652305],[121,221,69,-0.2753703329512206],[121,221,70,-0.2736372321538122],[121,221,71,-0.2717718067218775],[121,221,72,-0.269775153389036],[121,221,73,-0.2676485171769807],[121,221,74,-0.265393293832064],[121,221,75,-0.26301103226665723],[121,221,76,-0.2605034370051307],[121,221,77,-0.2578723706344943],[121,221,78,-0.25511985625972233],[121,221,79,-0.25224807996370924],[121,222,64,-0.2808260324437706],[121,222,65,-0.2797543923293223],[121,222,66,-0.27854750135142503],[121,222,67,-0.2772057519178417],[121,222,68,-0.27572967214418465],[121,222,69,-0.2741199282558513],[121,222,70,-0.27237732699450135],[121,222,71,-0.2705028180291381],[121,222,72,-0.26849749637175757],[121,222,73,-0.2663626047976436],[121,222,74,-0.2640995362701348],[121,222,75,-0.26170983637008627],[121,222,76,-0.2591952057298721],[121,222,77,-0.2565575024719692],[121,222,78,-0.25379874465214425],[121,222,79,-0.25092111270719497],[121,223,64,-0.2795470906777927],[121,223,65,-0.27846288212240433],[121,223,66,-0.2772438757704584],[121,223,67,-0.27589046483275403],[121,223,68,-0.2744031777216259],[121,223,69,-0.27278268044047393],[121,223,70,-0.2710297789777478],[121,223,71,-0.269145421705449],[121,223,72,-0.26713070178211296],[121,223,73,-0.26498685956035295],[121,223,74,-0.26271528499878616],[121,223,75,-0.2603175200785697],[121,223,76,-0.2577952612243901],[121,223,77,-0.25515036172994787],[121,223,78,-0.25238483418795776],[121,223,79,-0.249500852924617],[121,224,64,-0.2781845081506964],[121,224,65,-0.2770867365696925],[121,224,66,-0.2758546559262969],[121,224,67,-0.27448866031319785],[121,224,68,-0.27298927847806376],[121,224,69,-0.2713571761996597],[121,224,70,-0.26959315866832123],[121,224,71,-0.2676981728708544],[121,224,72,-0.26567330997982097],[121,224,73,-0.26351980774729056],[121,224,74,-0.2612390529028824],[121,224,75,-0.25883258355632155],[121,224,76,-0.2563020916043558],[121,224,77,-0.2536494251420722],[121,224,78,-0.2508765908786368],[121,224,79,-0.24798575655740684],[121,225,64,-0.2767371652182199],[121,225,65,-0.27562481864813526],[121,225,66,-0.2743786880134049],[121,225,67,-0.27299916837105853],[121,225,68,-0.27148678884558153],[121,225,69,-0.26984221499058647],[121,225,70,-0.26806625115474025],[121,225,71,-0.2661598428520152],[121,225,72,-0.26412407913622493],[121,225,73,-0.2619601949799242],[121,225,74,-0.25966957365749754],[121,225,75,-0.25725374913266064],[121,225,76,-0.25471440845022086],[121,225,77,-0.2520533941321357],[121,225,78,-0.24927270657789224],[121,225,79,-0.24637450646915915],[121,226,64,-0.2752041393798865],[121,226,65,-0.27407619058106625],[121,226,66,-0.27281501949823006],[121,226,67,-0.2714210222387655],[121,226,68,-0.2698947283483777],[121,226,69,-0.2682368031572644],[121,226,70,-0.26644805013044026],[121,226,71,-0.2645294132222722],[121,226,72,-0.2624819792351927],[121,226,73,-0.2603069801826664],[121,226,74,-0.25800579565623794],[121,226,75,-0.25557995519688026],[121,226,76,-0.25303114067049537],[121,226,77,-0.2503611886476026],[121,226,78,-0.24757209278723913],[121,226,79,-0.24466600622502188],[121,227,64,-0.2735846997057827],[121,227,65,-0.27244010821250353],[121,227,66,-0.2711628934429947],[121,227,67,-0.26975345264454575],[121,227,68,-0.268212315831447],[121,227,69,-0.2665401481146026],[121,227,70,-0.2647377520351727],[121,227,71,-0.2628060699023135],[121,227,72,-0.2607461861349728],[121,227,73,-0.2585593296078271],[121,227,74,-0.2562468760011768],[121,227,75,-0.25381035015503095],[121,227,76,-0.2512514284272218],[121,227,77,-0.24857194105559255],[121,227,78,-0.245773874524279],[121,227,79,-0.24285937393403634],[121,228,64,-0.2718783013209254],[121,228,65,-0.2707160154395172],[121,228,66,-0.2694217428880208],[121,228,67,-0.2679958821466567],[121,228,68,-0.26643896374866827],[121,228,69,-0.2647516525922875],[121,228,70,-0.2629347502566055],[121,228,71,-0.2609891973214139],[121,228,72,-0.2589160756909785],[121,228,73,-0.2567166109218265],[121,228,74,-0.2543921745543689],[121,228,75,-0.2519442864485856],[121,228,76,-0.24937461712361586],[121,228,77,-0.24668499010129608],[121,228,78,-0.24387738425366612],[121,228,79,-0.24095393615439575],[121,229,64,-0.2700845799471683],[121,229,65,-0.2689035387026185],[121,229,66,-0.2675911852925372],[121,229,67,-0.26614791952654593],[121,229,68,-0.26457427251024246],[121,229,69,-0.262870908938423],[121,229,70,-0.26103862939207323],[121,229,71,-0.25907837263919686],[121,229,72,-0.25699121793944446],[121,229,73,-0.2547783873526206],[121,229,74,-0.2524412480508932],[121,229,75,-0.2499813146349319],[121,229,76,-0.24740025145381872],[121,229,77,-0.24469987492877154],[121,229,78,-0.2418821558807035],[121,229,79,-0.2389492218615683],[121,230,64,-0.26820334650273225],[121,230,65,-0.2670024815342562],[121,230,66,-0.2656710170340588],[121,230,67,-0.2642093542410259],[121,230,68,-0.262618024889574],[121,230,69,-0.26089769348301883],[121,230,70,-0.25904915957056673],[121,230,71,-0.2570733600280053],[121,230,72,-0.2549713713420493],[121,230,73,-0.25274441189842545],[121,230,74,-0.2503938442735155],[121,230,75,-0.24792117752978693],[121,230,76,-0.24532806951485464],[121,230,77,-0.24261632916421316],[121,230,78,-0.23978791880766237],[121,230,79,-0.23684495647937753],[121,231,64,-0.26623458175932435],[121,231,65,-0.26501281916538055],[121,231,66,-0.263661207966296],[121,231,67,-0.2621801509334255],[121,231,68,-0.2605701804895547],[121,231,69,-0.2588319609612898],[121,231,70,-0.2569662908349233],[121,231,71,-0.25497410501584594],[121,231,72,-0.2528564770914635],[121,231,73,-0.250614621597704],[121,231,74,-0.24824989628893013],[121,231,75,-0.24576380441149126],[121,231,76,-0.24315799698075358],[121,231,77,-0.24043427506165194],[121,231,78,-0.237594592052785],[121,231,79,-0.2346410559740021],[121,232,64,-0.2641784310567884],[121,232,65,-0.2629346931900238],[121,232,66,-0.2615618960355429],[121,232,67,-0.2600604440036641],[121,232,68,-0.2584308702681942],[121,232,69,-0.25667383899671037],[121,232,70,-0.2547901475841604],[121,232,71,-0.2527807288898478],[121,232,72,-0.2506466534777646],[121,232,73,-0.24838913186035505],[121,232,74,-0.24600951674552374],[121,232,75,-0.24350930528712644],[121,232,76,-0.24089014133877917],[121,232,77,-0.23815381771102895],[121,232,78,-0.23530227843190954],[121,232,79,-0.23233762101083044],[121,233,64,-0.26203519907538886],[121,233,65,-0.26076840628799247],[121,233,66,-0.2593733819556421],[121,233,67,-0.2578505322373459],[121,233,68,-0.25620039112369986],[121,233,69,-0.25442362264392515],[121,233,70,-0.25252102307605495],[121,233,71,-0.25049352316033846],[121,233,72,-0.24834219031582516],[121,233,73,-0.24606823086021157],[121,233,74,-0.2436729922327644],[121,233,75,-0.24115796522055943],[121,233,76,-0.23852478618786943],[121,233,77,-0.23577523930874789],[121,233,78,-0.23291125880282704],[121,233,79,-0.22993493117428365],[121,234,64,-0.25980534466568017],[121,234,65,-0.2585144170056288],[121,234,66,-0.2570961239414804],[121,234,67,-0.255550873493831],[121,234,68,-0.25387920053895807],[121,234,69,-0.2520817689914693],[121,234,70,-0.2501593739899236],[121,234,71,-0.24811294408549256],[121,234,72,-0.24594354343362523],[121,234,73,-0.24365237398879946],[121,234,74,-0.2412407777021719],[121,234,75,-0.23871023872236763],[121,234,76,-0.23606238559924186],[121,234,77,-0.23329899349066074],[121,234,78,-0.23042198637231992],[121,234,79,-0.2274334392505536],[121,235,64,-0.2574894757359034],[121,235,65,-0.25617333459458125],[121,235,66,-0.2547307325009568],[121,235,67,-0.25316207945322244],[121,235,68,-0.2514679112853564],[121,235,69,-0.24964889182423722],[121,235,70,-0.24770581504953915],[121,235,71,-0.24563960725648704],[121,235,72,-0.24345132922142576],[121,235,73,-0.24114217837029261],[121,235,74,-0.2387134909498011],[121,235,75,-0.2361667442015799],[121,235,76,-0.23350355853909688],[121,235,77,-0.23072569972741797],[121,235,78,-0.2278350810658174],[121,235,79,-0.22483376557319223],[121,236,64,-0.25508834419702153],[121,236,65,-0.2537459139086943],[121,236,66,-0.25227796528553337],[121,236,67,-0.2506849104223804],[121,236,68,-0.2489672861860619],[121,236,69,-0.24712575634581468],[121,236,70,-0.24516111370630067],[121,236,71,-0.2430742822432823],[121,236,72,-0.24086631924192115],[121,236,73,-0.23853841743778292],[121,236,74,-0.23609190716035933],[121,236,75,-0.233528258479351],[121,236,76,-0.2308490833535406],[121,236,77,-0.2280561377823056],[121,236,78,-0.22515132395978787],[121,236,79,-0.22213669243167355],[121,237,64,-0.2526028409653406],[121,237,65,-0.2512330503589659],[121,237,66,-0.2497387219993169],[121,237,67,-0.24812027019991434],[121,237,68,-0.24637823293869965],[121,237,69,-0.24451327396062095],[121,237,70,-0.2425261848826028],[121,237,71,-0.2404178873009749],[121,237,72,-0.2381894349013175],[121,237,73,-0.2358420155708122],[121,237,74,-0.23337695351290355],[121,237,75,-0.2307957113645186],[121,237,76,-0.2280998923156735],[121,237,77,-0.22529124223151498],[121,237,78,-0.22237165177681517],[121,237,79,-0.21934315854287323],[121,238,64,-0.25003399102265234],[121,238,65,-0.24863577492650957],[121,238,66,-0.24711403936660725],[121,238,67,-0.24546920100008185],[121,238,68,-0.2437017989973681],[121,238,69,-0.241812497115792],[121,238,70,-0.23980208577533624],[121,238,71,-0.2376714841366503],[121,238,72,-0.23542174218126366],[121,238,73,-0.2330540427940927],[121,238,74,-0.23056970384804454],[121,238,75,-0.22797018029096627],[121,238,76,-0.2252570662347687],[121,238,77,-0.22243209704677003],[121,238,78,-0.21949715144328252],[121,238,79,-0.2164542535853905],[121,239,64,-0.2473829485340273],[121,239,65,-0.2459552492336471],[121,239,66,-0.2444050861580409],[121,239,67,-0.24273287843573144],[121,239,68,-0.24093916651412062],[121,239,69,-0.23902461420294108],[121,239,70,-0.2369900107196551],[121,239,71,-0.2348362727368768],[121,239,72,-0.23256444643177698],[121,239,73,-0.2301757095375575],[121,239,74,-0.22767137339679966],[121,239,75,-0.22505288501693843],[121,239,76,-0.2223218291276865],[121,239,77,-0.21947993024045787],[121,239,78,-0.21652905470981054],[121,239,79,-0.21347121279685932],[121,240,64,-0.24465099202315144],[121,240,65,-0.24319276067302675],[121,240,66,-0.24161315827522156],[121,240,67,-0.239912606560174],[121,240,68,-0.23809164733980592],[121,240,69,-0.23615094451968377],[121,240,70,-0.2340912861128961],[121,240,71,-0.231913586255721],[121,240,72,-0.22961888722504553],[121,240,73,-0.2272083614576239],[121,240,74,-0.22468331357097637],[121,240,75,-0.22204518238618443],[121,240,76,-0.2192955429524025],[121,240,77,-0.21643610857313977],[121,240,78,-0.2134687328343272],[121,240,79,-0.21039541163412534],[121,241,64,-0.24183951960528893],[121,241,65,-0.24034971759485046],[121,241,66,-0.2387396738939248],[121,241,67,-0.23700981296807533],[121,241,68,-0.23516067808435104],[121,241,69,-0.23319293329101454],[121,241,70,-0.231107365398743],[121,241,71,-0.22890488596338043],[121,241,72,-0.2265865332701994],[121,241,73,-0.2241534743197623],[121,241,74,-0.22160700681518042],[121,241,75,-0.21894856115103067],[121,241,76,-0.21617970240374718],[121,241,77,-0.213302132323541],[121,241,78,-0.21031769132786693],[121,241,79,-0.20722836049638693],[121,242,64,-0.2389500442777528],[121,242,65,-0.23742764455208876],[121,242,66,-0.23578616866575142],[121,242,67,-0.2340260439552393],[121,242,68,-0.2321478152363654],[121,242,69,-0.2301521467504105],[121,242,70,-0.22803982411150414],[121,242,71,-0.2258117562553007],[121,242,72,-0.22346897738892046],[121,242,73,-0.22101264894223716],[121,242,74,-0.21844406152031293],[121,242,75,-0.2157646368572419],[121,242,76,-0.21297592977121793],[121,242,77,-0.2100796301208815],[121,242,78,-0.20707756476296035],[121,242,79,-0.20397169951116134],[121,243,64,-0.2359841892680259],[121,243,65,-0.23442817760382972],[121,243,66,-0.2327542909783783],[121,243,67,-0.23096295973743586],[121,243,68,-0.2290547303422119],[121,243,69,-0.227030267280813],[121,243,70,-0.22489035498065768],[121,243,71,-0.2226358997219321],[121,243,72,-0.22026793155204616],[121,243,73,-0.21778760620118054],[121,243,74,-0.21519620699871955],[121,243,75,-0.21249514679083448],[121,243,76,-0.20968596985902954],[121,243,77,-0.2067703538397091],[121,243,78,-0.20375011164477985],[121,243,79,-0.20062719338324175],[121,244,64,-0.23294368343947103],[121,244,65,-0.23135305967669706],[121,244,66,-0.22964579727434375],[121,244,67,-0.22782232972820504],[121,244,68,-0.22588320524448424],[121,244,69,-0.22382908861541906],[121,244,70,-0.22166076309559968],[121,244,71,-0.2193791322790598],[121,244,72,-0.21698522197709835],[121,244,73,-0.21448018209692477],[121,244,74,-0.21186528852091824],[121,244,75,-0.2091419449867714],[121,244,76,-0.2063116849683272],[121,244,77,-0.2033761735571673],[121,244,78,-0.2003372093449669],[121,244,79,-0.1971967263065696],[121,245,64,-0.22983035675454444],[121,245,65,-0.22820413598425437],[121,245,66,-0.22646254742827898],[121,245,67,-0.22460602787555461],[121,245,68,-0.22263512737979985],[121,245,69,-0.22055051109819934],[121,245,70,-0.21835296113050284],[121,245,71,-0.2160433783586171],[121,245,72,-0.21362278428665205],[121,245,73,-0.2110923228815108],[121,245,74,-0.208453262413817],[121,245,75,-0.20570699729944653],[121,245,76,-0.20285504994147563],[121,245,77,-0.19989907257260164],[121,245,78,-0.196840849098052],[121,245,79,-0.19368229693893535],[121,246,64,-0.22664613579567117],[121,246,65,-0.22498334950455212],[121,246,66,-0.22320650018274735],[121,246,67,-0.22131602805770767],[121,246,68,-0.21931248513607104],[121,246,69,-0.2171965370043013],[121,246,70,-0.21496896462945425],[121,246,71,-0.21263066616014836],[121,246,72,-0.21018265872770314],[121,246,73,-0.20762608024753315],[121,246,74,-0.20496219122059112],[121,246,75,-0.20219237653513011],[121,246,76,-0.1993181472685911],[121,246,77,-0.19634114248967893],[121,246,78,-0.19326313106063653],[121,246,79,-0.1900860134396748],[121,247,64,-0.22339303934370358],[121,247,65,-0.22169273651574128],[121,247,66,-0.21987970864261286],[121,247,67,-0.2179543995378258],[121,247,68,-0.21591736326917854],[121,247,69,-0.21376926592026202],[121,247,70,-0.21151088735179058],[121,247,71,-0.20914312296284154],[121,247,72,-0.20666698545196327],[121,247,73,-0.2040836065782452],[121,247,74,-0.20139423892213726],[121,247,75,-0.1986002576462922],[121,247,76,-0.19570316225623763],[121,247,77,-0.19270457836093757],[121,247,78,-0.1896062594332567],[121,247,79,-0.18641008857028252],[121,248,64,-0.2200731740138837],[121,248,65,-0.21833442218966992],[121,248,66,-0.2164843158278542],[121,248,67,-0.21452330247762075],[121,248,68,-0.21245193837895726],[121,248,69,-0.21027089018394085],[121,248,70,-0.20798093667754303],[121,248,71,-0.20558297049804064],[121,248,72,-0.20307799985698538],[121,248,73,-0.20046715025883344],[121,248,74,-0.19775166622001294],[121,248,75,-0.19493291298771265],[121,248,76,-0.1920123782581915],[121,248,77,-0.18899167389467253],[121,248,78,-0.18587253764483302],[121,248,79,-0.18265683485784545],[121,249,64,-0.21668872994946808],[121,249,65,-0.21491061624362495],[121,249,66,-0.21302255028498818],[121,249,67,-0.2110249835100212],[121,249,68,-0.20891847444466594],[121,249,69,-0.20670369038434389],[121,249,70,-0.20438140907316305],[121,249,71,-0.20195252038241163],[121,249,72,-0.19941802798829833],[121,249,73,-0.1967790510490346],[121,249,74,-0.19403682588104043],[121,249,75,-0.19119270763455554],[121,249,76,-0.18824817196845578],[121,249,77,-0.18520481672433875],[121,249,78,-0.18206436359988898],[121,249,79,-0.17882865982148],[121,250,64,-0.21324197657293853],[121,250,65,-0.2114236086501441],[121,250,66,-0.20949672175702516],[121,250,67,-0.20746177137081623],[121,250,68,-0.20531931841985673],[121,250,69,-0.20307003092125775],[121,250,70,-0.20071468561744743],[121,250,71,-0.19825416961167985],[121,250,72,-0.19568948200246428],[121,250,73,-0.19302173551701352],[121,250,74,-0.19025215814348828],[121,250,75,-0.18738209476232415],[121,250,76,-0.18441300877643918],[121,250,77,-0.18134648374038465],[121,250,78,-0.17818422498845043],[121,250,79,-0.17492806126168436],[121,251,64,-0.20973525839471052],[121,251,65,-0.20787576540480257],[121,251,66,-0.20590921691186315],[121,251,67,-0.20383607258918035],[121,251,68,-0.201656895886555],[121,251,69,-0.19937235562459765],[121,251,70,-0.19698322758756748],[121,251,71,-0.1944903961148402],[121,251,72,-0.19189485569096487],[121,251,73,-0.1891977125344032],[121,251,74,-0.18640018618473198],[121,251,75,-0.18350361108859448],[121,251,76,-0.18050943818419674],[121,251,77,-0.1774192364844157],[121,251,78,-0.17423469465852648],[121,251,79,-0.1709576226125078],[121,252,64,-0.20617099087950896],[121,252,65,-0.20426952435215162],[121,252,66,-0.20226249512929695],[121,252,67,-0.2001503672372597],[121,252,68,-0.19793370676892508],[121,252,69,-0.1956131834336532],[121,252,70,-0.193189572105384],[121,252,71,-0.19066375436902772],[121,252,72,-0.18803672006509886],[121,252,73,-0.18530956883269434],[121,252,74,-0.18248351165058518],[121,252,75,-0.17955987237671978],[121,252,76,-0.17654008928592613],[121,252,77,-0.17342571660588202],[121,252,78,-0.17021842605136306],[121,252,79,-0.16692000835672582],[121,253,64,-0.2025516563703309],[121,253,65,-0.2006073910697272],[121,253,66,-0.19855908434655922],[121,253,67,-0.19640720473873502],[121,253,68,-0.19415232110633862],[121,253,69,-0.19179510413614176],[121,253,70,-0.18933632784396248],[121,253,71,-0.18677687107495733],[121,253,72,-0.18411771900180574],[121,253,73,-0.1813599646208851],[121,253,74,-0.1785048102462078],[121,253,75,-0.1755535690014166],[121,253,76,-0.172507666309629],[121,253,77,-0.16936864138119467],[121,253,78,-0.16613814869937993],[121,253,79,-0.16281795950393474],[121,254,64,-0.1988798000698992],[121,254,65,-0.1968919348100273],[121,254,66,-0.19480157696229516],[121,254,67,-0.19260919973626078],[121,254,68,-0.19031537488574657],[121,254,69,-0.18792077416697422],[121,254,70,-0.18542617079418544],[121,254,71,-0.18283244089283424],[121,254,72,-0.18014056495030917],[121,254,73,-0.17735162926428782],[121,254,74,-0.1744668273884884],[121,254,75,-0.1714874615761216],[121,254,76,-0.16841494422082803],[121,254,77,-0.16525079929516862],[121,254,78,-0.1619966637866802],[121,254,79,-0.1586542891314523],[121,255,64,-0.19515802607979071],[121,255,65,-0.19312578450064805],[121,255,66,-0.19099262579915788],[121,255,67,-0.18875902801797156],[121,255,68,-0.1864255659335422],[121,255,69,-0.18399291246691962],[121,255,70,-0.18146184009165817],[121,255,71,-0.17883322223892717],[121,255,72,-0.17610803469978087],[121,255,73,-0.17328735702469045],[121,255,74,-0.1703723739201023],[121,255,75,-0.16736437664232773],[121,255,76,-0.1642647643885462],[121,255,77,-0.1610750456849933],[121,255,78,-0.15779683977234182],[121,255,79,-0.1544318779882352],[121,256,64,-0.19138899349714933],[121,256,65,-0.1893116248024871],[121,256,66,-0.18713494012493448],[121,256,67,-0.1848594225029626],[121,256,68,-0.18248564986682764],[121,256,69,-0.18001429640108074],[121,256,70,-0.17744613390381153],[121,256,71,-0.17478203314271257],[121,256,72,-0.17202296520792693],[121,256,73,-0.1691700028617783],[121,256,74,-0.16622432188514663],[121,256,75,-0.1631872024207982],[121,256,76,-0.16006003031344895],[121,256,77,-0.1568442984466335],[121,256,78,-0.15354160807638917],[121,256,79,-0.15015367016171144],[121,257,64,-0.18757541256888705],[121,257,65,-0.18545219222591436],[121,257,66,-0.18323128173210207],[121,257,67,-0.18091316928564494],[121,257,68,-0.1784984361039773],[121,257,69,-0.17598775773707503],[121,257,70,-0.17338190537710058],[121,257,71,-0.17068174716448326],[121,257,72,-0.16788824949039216],[121,257,73,-0.16500247829570747],[121,257,74,-0.1620256003662447],[121,257,75,-0.15895888462455027],[121,257,76,-0.15580370341803867],[121,257,77,-0.1525615338035502],[121,257,78,-0.14923395882833435],[121,257,79,-0.145822668807417],[121,258,64,-0.1837200409035621],[121,258,65,-0.18155027130510326],[121,258,66,-0.17928446107600837],[121,258,67,-0.17692310373917008],[121,258,68,-0.17446678393470005],[121,258,69,-0.17191617868312015],[121,258,70,-0.16927205864449812],[121,258,71,-0.16653528937362527],[121,258,72,-0.16370683257118746],[121,258,73,-0.1607877473310384],[121,258,74,-0.15777919138333085],[121,258,75,-0.15468242233382012],[121,258,76,-0.15149879889911594],[121,258,77,-0.1482297821379548],[121,258,78,-0.14487693667850388],[121,258,79,-0.1414419319416524],[121,259,64,-0.17982567974084396],[121,259,65,-0.17760869083043052],[121,259,66,-0.17529733347158294],[121,259,67,-0.17289210667783028],[121,259,68,-0.170393598649502],[121,259,69,-0.16780248798592962],[121,259,70,-0.1651195448931873],[121,259,71,-0.16234563238746602],[121,259,72,-0.15948170749404],[121,259,73,-0.15652882244192912],[121,259,74,-0.1534881258540114],[121,259,75,-0.15036086393290726],[121,259,76,-0.14714838164240313],[121,259,77,-0.1438521238844933],[121,259,78,-0.1404736366720465],[121,259,79,-0.13701456829705416],[121,260,64,-0.1758951702784604],[121,260,65,-0.1736303201388384],[121,260,66,-0.171272795348475],[121,260,67,-0.16882310057832783],[121,260,68,-0.1662818277284433],[121,260,69,-0.16364965708831125],[121,260,70,-0.1609273584923454],[121,260,71,-0.15811579247058194],[121,260,72,-0.1552159113945586],[121,260,73,-0.15222876061847568],[121,260,74,-0.14915547961539233],[121,260,75,-0.14599730310878256],[121,260,76,-0.14275556219921642],[121,260,77,-0.13943168548624696],[121,260,78,-0.13602720018550524],[121,260,79,-0.13254373324096724],[121,261,64,-0.17193139005682861],[121,261,65,-0.16961806546236358],[121,261,66,-0.16721378056481945],[121,261,67,-0.16471904586011965],[121,261,68,-0.16213445708939744],[121,261,69,-0.15946069634667215],[121,261,70,-0.15669853318122562],[121,261,71,-0.1538488256947788],[121,261,72,-0.1509125216334239],[121,261,73,-0.1478906594744181],[121,261,74,-0.1447843695075901],[121,261,75,-0.14159487491168454],[121,261,76,-0.1383234928254099],[121,261,77,-0.1349716354132695],[121,261,78,-0.13154081092618047],[121,261,79,-0.12803262475684068],[121,262,64,-0.16793724940126759],[121,262,65,-0.16557486633473095],[121,262,66,-0.1631232567795327],[121,262,67,-0.16058293722473493],[121,262,68,-0.1579545073957112],[121,262,69,-0.15523865130833536],[121,262,70,-0.1524361383174399],[121,262,71,-0.14954782415964324],[121,262,72,-0.1465746519905035],[121,262,73,-0.14351765341610423],[121,262,74,-0.14037794951881943],[121,262,75,-0.13715675187759135],[121,262,76,-0.1338553635824779],[121,262,77,-0.13047518024355448],[121,262,78,-0.1270176909941726],[121,262,79,-0.12348447948853802],[121,263,64,-0.16391568792169614],[121,263,65,-0.16150369205590964],[121,263,66,-0.1590042218830327],[121,263,67,-0.15641780005396144],[121,263,68,-0.15374503042315518],[121,263,69,-0.15098659904855372],[121,263,70,-0.148143275185326],[121,263,71,-0.14521591227354946],[121,263,72,-0.14220544891977666],[121,263,73,-0.1391129098725981],[121,263,74,-0.13593940699194318],[121,263,75,-0.13268614021245667],[121,263,76,-0.12935439850070807],[121,263,77,-0.1259455608063148],[121,263,78,-0.1224610970069861],[121,263,79,-0.11890256884744599],[121,264,64,-0.15986967107002348],[121,264,65,-0.15740753821484882],[121,264,66,-0.15485970048660141],[121,264,67,-0.15222668686711954],[121,264,68,-0.14950910548639262],[121,264,69,-0.1467076445674495],[121,264,70,-0.14382307336463296],[121,264,71,-0.14085624309535627],[121,264,72,-0.13780808786530185],[121,264,73,-0.13467962558717067],[121,264,74,-0.13147195889272262],[121,264,75,-0.12818627603844657],[121,264,76,-0.1248238518046168],[121,264,77,-0.12138604838781741],[121,264,78,-0.11787431628694134],[121,264,79,-0.1142901951826214],[121,265,64,-0.1558021867550562],[121,265,65,-0.15328942327020878],[121,265,66,-0.1506927404702073],[121,265,67,-0.1480126738372397],[121,265,68,-0.14524983592477408],[121,265,69,-0.1424049172466884],[121,265,70,-0.13947868715932887],[121,265,71,-0.13647199473659838],[121,265,72,-0.133385769638032],[121,265,73,-0.13022102296997023],[121,265,74,-0.1269788481395675],[121,265,75,-0.12366042170197755],[121,265,76,-0.1202670042004712],[121,265,77,-0.11679994099956753],[121,265,78,-0.11326066311118621],[121,265,79,-0.10965068801377614],[121,266,64,-0.1517162420150584],[121,266,65,-0.14915238518922708],[121,266,66,-0.1465064095889248],[121,266,67,-0.14377885736628276],[121,266,68,-0.14097034564760513],[121,266,69,-0.13808156736603328],[121,266,70,-0.1351132920866781],[121,266,71,-0.13206636682431833],[121,266,72,-0.12894171685362588],[121,266,73,-0.12574034651202737],[121,266,74,-0.12246333999493658],[121,266,75,-0.1191118621437065],[121,266,76,-0.11568715922604722],[121,266,77,-0.11219055970899933],[121,266,78,-0.10862347502446457],[121,266,79,-0.10498740032725196],[121,267,64,-0.1476148597477781],[121,267,65,-0.14499947814453273],[121,267,66,-0.14230379213776462],[121,267,67,-0.13952835071921493],[121,267,68,-0.13667377573868966],[121,267,69,-0.13374076267958207],[121,267,70,-0.13073008142639186],[121,267,71,-0.1276425770243424],[121,267,72,-0.12447917043105433],[121,267,73,-0.12124085926038852],[121,267,74,-0.11792871851818748],[121,267,75,-0.11454390133026954],[121,267,76,-0.11108763966241908],[121,267,77,-0.10756124503246245],[121,267,78,-0.10396610921443172],[121,267,79,-0.1003037049347763],[121,268,64,-0.1435010754981617],[121,268,65,-0.14083376926913127],[121,268,66,-0.13808798567513825],[121,268,67,-0.13526428071716068],[121,268,68,-0.13236328112038176],[121,268,69,-0.12938568505192166],[121,268,70,-0.12633226283008542],[121,268,71,-0.12320385762523522],[121,268,72,-0.12000138615224021],[121,268,73,-0.11672583935462127],[121,268,74,-0.11337828308011377],[121,268,75,-0.10995985874801106],[121,268,76,-0.10647178400802454],[121,268,77,-0.10291535339075347],[121,268,78,-0.09929193894976568],[121,268,79,-0.0956029908952501],[121,269,64,-0.13937793430365125],[121,269,65,-0.13665833546945272],[121,269,66,-0.13386209780485048],[121,269,67,-0.13098978448953047],[121,269,68,-0.12804202727703662],[121,269,69,-0.12501952715408837],[121,269,70,-0.12192305499093059],[121,269,71,-0.11875345218282213],[121,269,72,-0.11551163128262049],[121,269,73,-0.11219857662457589],[121,269,74,-0.10881534493905981],[121,269,75,-0.10536306595859068],[121,269,76,-0.10184294301489172],[121,269,77,-0.09825625362707607],[121,269,78,-0.09460435008095697],[121,269,79,-0.09088865999944717],[121,270,64,-0.1352484875969613],[121,270,65,-0.13247626029636161],[121,270,66,-0.1296292430165129],[121,270,67,-0.12670800628501167],[121,270,68,-0.12371318703774964],[121,270,69,-0.12064548921922535],[121,270,70,-0.11750568437339387],[121,270,71,-0.11429461222516663],[121,270,72,-0.11101318125251414],[121,270,73,-0.10766236924928974],[121,270,74,-0.10424322387849416],[121,270,75,-0.10075686321634852],[121,270,76,-0.09720447628690743],[121,270,77,-0.09358732358730887],[121,270,78,-0.08990673760365792],[121,270,79,-0.08616412331750906],[121,271,64,-0.13111579016654207],[121,271,65,-0.12829063087433512],[121,271,66,-0.12539253958459273],[121,271,67,-0.12242209434164014],[121,271,68,-0.11937993741860464],[121,271,69,-0.1162667758581547],[121,271,70,-0.11308338200328105],[121,271,71,-0.10983059401822698],[121,271,72,-0.1065093163995256],[121,271,73,-0.10312052047726195],[121,271,74,-0.09966524490627293],[121,271,75,-0.09614459614766391],[121,271,76,-0.09255974894036367],[121,271,77,-0.08891194676281922],[121,271,78,-0.08520250228482823],[121,271,79,-0.08143279780946899],[121,272,64,-0.12698289717462768],[121,272,65,-0.12410453488870865],[121,272,66,-0.12115510652598971],[121,272,67,-0.11813519781584575],[121,272,68,-0.11504545652432019],[121,272,69,-0.111886592934759],[121,272,70,-0.10865938031797873],[121,272,71,-0.10536465539208123],[121,272,72,-0.10200331877186986],[121,272,73,-0.0985763354079861],[121,272,74,-0.09508473501547965],[121,272,75,-0.09152961249219033],[121,272,76,-0.08791212832666429],[121,272,77,-0.08423350899570548],[121,272,78,-0.0804950473515596],[121,272,79,-0.07669810299869206],[121,273,64,-0.12285286123276101],[121,273,65,-0.1199210576308774],[121,273,66,-0.11692006061603327],[121,273,67,-0.1138504637703599],[121,273,68,-0.11071292050918519],[121,273,69,-0.10750814450105506],[121,273,70,-0.10423691007677827],[121,273,71,-0.10090005262760599],[121,273,72,-0.09749846899250209],[121,273,73,-0.09403311783462392],[121,273,74,-0.09050502000672295],[121,273,75,-0.08691525890584839],[121,273,76,-0.08326498081707356],[121,273,77,-0.07955539524634592],[121,273,78,-0.07578777524245833],[121,273,79,-0.0719634577081047],[121,274,64,-0.11872872953500774],[121,274,65,-0.11574327910167143],[121,274,66,-0.11269051346311487],[121,274,67,-0.10957103422120584],[121,274,68,-0.1063855005975024],[121,274,69,-0.10313462979218774],[121,274,70,-0.09981919733150924],[121,274,71,-0.09644003740383517],[121,274,72,-0.0929980431842844],[121,274,73,-0.08949416714805059],[121,274,74,-0.08592942137212584],[121,274,75,-0.08230487782581347],[121,274,76,-0.07862166864974335],[121,274,77,-0.07488098642349544],[121,274,78,-0.07108408442182568],[121,274,79,-0.06723227685945915],[121,275,64,-0.1146135410487536],[121,275,65,-0.11157427117279478],[121,275,66,-0.10846956864185009],[121,275,67,-0.1053000432436611],[121,275,68,-0.10206636016343124],[121,275,69,-0.0987692402812288],[121,275,70,-0.09540946045736842],[121,275,71,-0.09198785380588798],[121,275,72,-0.08850530995607381],[121,275,73,-0.08496277530215796],[121,275,74,-0.08136125324089077],[121,275,75,-0.07770180439737823],[121,275,76,-0.07398554683889974],[121,275,77,-0.07021365627680937],[121,275,78,-0.06638736625651676],[121,275,79,-0.06250796833551048],[121,276,64,-0.11051032376297892],[121,276,65,-0.10741709480622275],[121,276,66,-0.10426031888465848],[121,276,67,-0.10104061413708282],[121,276,68,-0.09775865187011867],[121,276,69,-0.09441515679367096],[121,276,70,-0.0910109072438316],[121,276,71,-0.08754673539334829],[121,276,72,-0.08402352744961378],[121,276,73,-0.08044222384029776],[121,276,74,-0.07680381938632214],[121,276,75,-0.07310936346257485],[121,276,76,-0.06935996014607188],[121,276,77,-0.06555676835167468],[121,276,78,-0.06170100195535688],[121,276,79,-0.05779392990498439],[121,277,64,-0.10642209199422265],[121,277,65,-0.10327479733177097],[121,277,66,-0.10006584333198137],[121,277,67,-0.09679585664881613],[121,277,68,-0.09346551486833898],[121,277,69,-0.09007554668184026],[121,277,70,-0.08662673204587434],[121,277,71,-0.08311990232932687],[121,277,72,-0.07955594044746489],[121,277,73,-0.07593578098309767],[121,277,74,-0.07226041029454117],[121,277,75,-0.06853086661079],[121,277,76,-0.06474824011359936],[121,277,77,-0.0609136730065884],[121,277,78,-0.05702835957135677],[121,277,79,-0.05309354621057982],[121,278,64,-0.10235184375012812],[121,278,65,-0.09915040978272943],[121,278,66,-0.09588920484102625],[121,278,67,-0.09256886425707345],[121,278,68,-0.08919007205453239],[121,278,69,-0.08575356105911375],[121,278,70,-0.08226011299538877],[121,278,71,-0.07871055857008996],[121,278,72,-0.07510577754185382],[121,278,73,-0.07144669877753401],[121,278,74,-0.06773430029477528],[121,278,75,-0.063969609291256],[121,278,76,-0.060153702160299194],[121,278,77,-0.05628770449296305],[121,278,78,-0.05237279106660514],[121,278,79,-0.04841018581988299],[121,279,64,-0.09830255815046873],[121,279,65,-0.09504694428945432],[121,279,66,-0.09173344735293226],[121,279,67,-0.08836271151267827],[121,279,68,-0.08493542738813187],[121,279,69,-0.08145233209383351],[121,279,70,-0.07791420927268328],[121,279,71,-0.07432188911514204],[121,279,72,-0.07067624836432951],[121,279,73,-0.06697821030714585],[121,279,74,-0.06322874475110651],[121,279,75,-0.05942886798730146],[121,279,76,-0.05557964273917515],[121,279,77,-0.05168217809724057],[121,279,78,-0.0477376294397196],[121,279,79,-0.04374719833907459],[121,280,64,-0.09427719290586084],[121,280,65,-0.09096739153113281],[121,280,66,-0.08760159331857126],[121,280,67,-0.084180451439891],[121,280,68,-0.08070466326839937],[121,280,69,-0.07717497036313775],[121,280,70,-0.07359215843829114],[121,280,71,-0.06995705731798979],[121,280,72,-0.06627054087645551],[121,280,73,-0.06253352696362152],[121,280,74,-0.058746977315911664],[121,280,75,-0.05491189745259445],[121,280,76,-0.05102933655740527],[121,280,77,-0.04710038734555244],[121,280,78,-0.04312618591609635],[121,280,79,-0.03910791158966942],[121,281,64,-0.09027868185405874],[121,281,65,-0.08691471824561015],[121,281,66,-0.08349664118287548],[121,281,67,-0.08002511299620468],[121,281,68,-0.07650083797065893],[121,281,69,-0.07292456226659721],[121,281,70,-0.06929707382497402],[121,281,71,-0.06561920225747159],[121,281,72,-0.0618918187214208],[121,281,73,-0.05811583577964036],[121,281,74,-0.05429220724487599],[121,281,75,-0.050421928009261374],[121,281,76,-0.04650603385848867],[121,281,77,-0.04254560127080642],[121,281,78,-0.03854174720083575],[121,281,79,-0.03449562884816848],[121,282,64,-0.08630993255373048],[121,282,65,-0.08289186479717808],[121,282,66,-0.07942156292758867],[121,282,67,-0.07589969859100859],[121,282,68,-0.07232698314182073],[121,282,69,-0.06870416749954894],[121,282,70,-0.06503204198981072],[121,282,71,-0.06131143616954415],[121,282,72,-0.05754321863646067],[121,282,73,-0.05372829682285801],[121,282,74,-0.04986761677346785],[121,282,75,-0.045962162907766946],[121,282,76,-0.04201295776643582],[121,282,77,-0.03802106174208347],[121,282,78,-0.03398757279422915],[121,282,79,-0.029913626148504624],[121,283,64,-0.08237382393592052],[121,283,65,-0.07890174280253326],[121,283,66,-0.07537930167265017],[121,283,67,-0.07180718166333],[121,283,68,-0.06818610135541286],[121,283,69,-0.06451681658634628],[121,283,70,-0.06080012022659309],[121,283,71,-0.057036841939747174],[121,283,72,-0.053227847926310246],[121,283,73,-0.04937404065126294],[121,283,74,-0.045476358555103236],[121,283,75,-0.04153577574878492],[121,283,76,-0.037553301692236196],[121,283,77,-0.0335299808565796],[121,283,78,-0.029466892370041797],[121,283,79,-0.025365149647520013],[121,284,64,-0.07847320401309343],[121,284,65,-0.07494723281479848],[121,284,66,-0.07137276933610609],[121,284,67,-0.06775050431854801],[121,284,68,-0.06408116372600947],[121,284,69,-0.060365508473413765],[121,284,70,-0.05660433413841587],[121,284,71,-0.05279847065623511],[121,284,72,-0.048948781997578183],[121,284,73,-0.0450561658297875],[121,284,74,-0.04112155316088434],[121,284,75,-0.037145907966945],[121,284,76,-0.033130226802484564],[121,284,77,-0.02907553839397342],[121,284,78,-0.02498290321647234],[121,284,79,-0.020853413053355196],[121,285,64,-0.07461088764566065],[121,285,65,-0.07103118206550771],[121,285,66,-0.06740484435244565],[121,285,67,-0.06373257502397492],[121,285,68,-0.06001510758295239],[121,285,69,-0.05625320818200136],[121,285,70,-0.052447675270355265],[121,285,71,-0.04859933922326651],[121,285,72,-0.04470906195393107],[121,285,73,-0.040777736508065016],[121,285,74,-0.03680628664080063],[121,285,75,-0.03279566637634174],[121,285,76,-0.02874685955005296],[121,285,77,-0.02466087933310665],[121,285,78,-0.020538767739674973],[121,285,79,-0.01638159511663448],[121,286,64,-0.07078965436619211],[121,286,65,-0.06715640226475797],[121,286,66,-0.06347836944956883],[121,286,67,-0.059756266363516136],[121,286,68,-0.05599083420357781],[121,286,69,-0.05218284452085284],[121,286,70,-0.048333098802451374],[121,286,71,-0.0444424280353706],[121,286,72,-0.04051169225230908],[121,286,73,-0.03654178005955572],[121,286,74,-0.032533608146617876],[121,286,75,-0.02848812077803381],[121,286,76,-0.02440628926703786],[121,286,77,-0.020289111431207457],[121,286,78,-0.01613761103007602],[121,286,79,-0.011952837184680515],[121,287,64,-0.06701224626120802],[121,287,65,-0.06332566745942472],[121,287,66,-0.059596149484280464],[121,287,67,-0.055824412851299715],[121,287,68,-0.052011206605839105],[121,287,69,-0.048157307858678694],[121,287,70,-0.044263521302885134],[121,287,71,-0.04033067871207949],[121,287,72,-0.03635963842006129],[121,287,73,-0.03235128478192642],[121,287,74,-0.028306527616340588],[121,287,75,-0.024226301629417107],[121,287,76,-0.02011156581986534],[121,287,77,-0.015963302865538598],[121,287,78,-0.011782518491366467],[121,287,79,-0.007570240818640245],[121,288,64,-0.06328136591045844],[121,288,65,-0.05954171194934338],[121,288,66,-0.055760949336212645],[121,288,67,-0.051939808804178283],[121,288,68,-0.04807904740022714],[121,288,69,-0.04417944795633169],[121,288,70,-0.04024181854124609],[121,288,71,-0.0362669918931221],[121,288,72,-0.03225582483289513],[121,288,73,-0.02820919765858107],[121,288,74,-0.024128013520140573],[121,288,75,-0.020013197775364838],[121,288,76,-0.015865697326446215],[121,288,77,-0.011686479937362437],[121,288,78,-0.007476533532060875],[121,288,79,-0.003236865473410233],[121,289,64,-0.05959967438389252],[121,289,65,-0.05580722826166534],[121,289,66,-0.05197549186038575],[121,289,67,-0.0481052062733153],[121,289,68,-0.04419713670120187],[121,289,69,-0.04025207185890434],[121,289,70,-0.03627082336211332],[121,289,71,-0.03225422509430284],[121,289,72,-0.028203132553864835],[121,289,73,-0.024118422181565957],[121,289,74,-0.020000990667981527],[121,289,75,-0.01585175424136523],[121,289,76,-0.011671647935613538],[121,289,77,-0.007461624838456304],[121,289,78,-0.003222655319858464],[121,289,79,0.0010442737593992502],[121,290,64,-0.05596978929614829],[121,290,65,-0.05212486518321496],[121,290,66,-0.04824245589823259],[121,290,67,-0.04432331303467818],[121,290,68,-0.04036821009795627],[121,290,69,-0.0363779418475646],[121,290,70,-0.0323533236187622],[121,290,71,-0.02829519062387828],[121,290,72,-0.02420439723321155],[121,290,73,-0.020081816235662298],[121,290,74,-0.01592833807874766],[121,290,75,-0.011744870088463422],[121,290,76,-0.007532335668648138],[121,290,77,-0.003291673479982854],[121,290,78,9.761634013905618E-4],[121,290,79,0.00527020834566258],[121,291,64,-0.05239428291868642],[121,291,65,-0.04849722585097252],[121,291,66,-0.044564474347213],[121,291,67,-0.040596790638567],[121,291,68,-0.03659495668464305],[121,291,69,-0.03255977345126321],[121,291,70,-0.028492060167134847],[121,291,71,-0.02439265355956824],[121,291,72,-0.020262407069191163],[121,291,73,-0.016102190043803033],[121,291,74,-0.011912886911015552],[121,291,75,-0.0076953963301490125],[121,291,76,-0.0034506303230342483],[121,291,77,8.204866161425073E-4],[121,291,78,0.005117018431970544],[121,291,79,0.009438018439951679],[121,292,64,-0.048875680349404704],[121,292,65,-0.044926865900518975],[121,292,66,-0.040944132288851576],[121,292,67,-0.03692825251800991],[121,292,68,-0.03288001714989197],[121,292,69,-0.0288002335181384],[121,292,70,-0.02468972491989463],[121,292,71,-0.02054932978602228],[121,292,72,-0.016379900829710692],[121,292,73,-0.012182304173632363],[121,292,74,-0.007957418455286608],[121,292,75,-0.0037061339110036617],[121,292,76,5.706485617422152E-4],[121,292,77,0.004872018363574038],[121,292,78,0.009197056174025525],[121,292,79,0.013544834953956891],[121,293,64,-0.04541645773992989],[121,293,65,-0.041416291672640326],[121,293,66,-0.03738396517539935],[121,293,67,-0.033320262156228075],[121,293,68,-0.02922598192582493],[121,293,69,-0.025101938346826447],[121,293,70,-0.020948958960778058],[121,293,71,-0.016767884092955737],[121,293,72,-0.01255956593498836],[121,293,73,-0.008324867605426792],[121,293,74,-0.004064662187899068],[121,293,75,2.2016825266943374E-4],[121,293,76,0.004528733676127772],[121,293,77,0.008860137095323586],[121,293,78,0.013213475626498633],[121,293,79,0.01758784156188542],[121,294,64,-0.04201904058048886],[121,294,65,-0.037967958477993544],[121,294,66,-0.03388645707502007],[121,294,67,-0.02977533131306974],[121,294,68,-0.025635389396465938],[121,294,69,-0.021467451877575677],[121,294,70,-0.01727235071913913],[121,294,71,-0.013050928333849257],[121,294,72,-0.00880403660113123],[121,294,73,-0.004532535861268519],[121,294,74,-2.3729388651218264E-4],[121,294,75,0.004080815170343546],[121,294,76,0.008420911850279891],[121,294,77,0.012782112485124744],[121,294,78,0.017163530317396813],[121,294,79,0.0215642766429512],[121,295,64,-0.03868580204227577],[121,295,65,-0.03458426891974885],[121,295,66,-0.030454038975414793],[121,295,67,-0.026295918310325864],[121,295,68,-0.022110724165457202],[121,295,69,-0.017899283943072913],[121,295,70,-0.013662434204594995],[121,295,71,-0.0094010196451208],[121,295,72,-0.00511589204453701],[121,295,73,-8.079091953785422E-4],[121,295,74,0.0035220661929335623],[121,295,75,0.00787316761298934],[121,295,76,0.012244525901784528],[121,295,77,0.016635270406470393],[121,295,78,0.02104453017347914],[121,295,79,0.025471435161053865],[121,296,64,-0.03541906137749183],[121,296,65,-0.03126757127438723],[121,296,66,-0.027089087146066212],[121,296,67,-0.022884426376111253],[121,296,68,-0.018654415383268688],[121,296,69,-0.014399888579171974],[121,296,70,-0.010121687301963958],[121,296,71,-0.005820658725961866],[121,296,72,-0.0014976547473153218],[121,296,73,0.002846469154194009],[121,296,74,0.007210855077580486],[121,296,75,0.011594643886818717],[121,296,76,0.01599697642111228],[121,296,77,0.020416994729120064],[121,296,78,0.02485384332716334],[121,296,79,0.029306670481441283],[121,297,64,-0.03222108237696415],[121,297,65,-0.02802015793055951],[121,297,66,-0.023793921559007197],[121,297,67,-0.019543202048214844],[121,297,68,-0.015268835133801686],[121,297,69,-0.010971662395424617],[121,297,70,-0.006652530126395703],[121,297,71,-0.0023122881787376454],[121,297,72,0.0020482112163737187],[121,297,73,0.006428114652630171],[121,297,74,0.010826568777446505],[121,297,75,0.015242721545156282],[121,297,76,0.01967572349491782],[121,297,77,0.024124729053184024],[121,297,78,0.028588897860758015],[121,297,79,0.03306739612446291],[121,298,64,-0.02909407188526672],[121,298,65,-0.024844263885926726],[121,298,66,-0.020570804368033005],[121,298,67,-0.01627453363633638],[121,298,68,-0.011956296880305466],[121,298,69,-0.007616943005330057],[121,298,70,-0.003257323438608177],[121,298,71,0.001121709090135474],[121,298,72,0.005519301793151125],[121,298,73,0.009934603094233503],[121,298,74,0.014366763923735877],[121,298,75,0.0188149390385283],[121,298,76,0.023278288367273844],[121,298,77,0.02775597838087497],[121,298,78,0.03224718348811296],[121,298,79,0.036751087456507445],[121,299,64,-0.026040178373507007],[121,299,65,-0.021742065302150414],[121,299,66,-0.017421938446527285],[121,299,67,-0.013080649743383077],[121,299,68,-0.00871905397077962],[121,299,69,-0.004338007516480356],[121,299,70,6.163287958859537E-5],[121,299,71,0.004479011408653949],[121,299,72,0.008913274502237403],[121,299,73,0.01336357216697346],[121,299,74,0.01782905934548034],[121,299,75,0.022308897302780642],[121,299,76,0.02680225503864892],[121,299,77,0.03130831072573587],[121,299,78,0.035826253173493826],[121,299,79,0.04035528331792913],[121,300,64,-0.02306149056969372],[121,300,65,-0.018715678117945146],[121,300,66,-0.014349465983813425],[121,300,67,-0.00996371784573611],[121,300,68,-0.005559298202773032],[121,300,69,-0.0011370710805092346],[121,300,70,0.003302101289576337],[121,300,71,0.007757359817125761],[121,300,72,0.01222784992635257],[121,300,73,0.01671272295577419],[121,300,74,0.021211137584608],[121,300,75,0.025722261285323185],[121,300,76,0.030245271802728332],[121,300,77,0.034779358659443455],[121,300,78,0.03932372468778149],[121,300,79,0.043877587588065065],[121,301,64,-0.020160036146610164],[121,301,65,-0.01576715672011708],[121,301,66,-0.01135546713995414],[121,301,67,-0.006925842932408173],[121,301,68,-0.0024791584474989393],[121,301,69,0.00198371449723609],[121,301,70,0.006461908000100072],[121,301,71,0.01095455948558817],[121,301,72,0.015460813141782034],[121,301,73,0.01997982138463401],[121,301,74,0.024510746349525575],[121,301,75,0.029052761409587104],[121,301,76,0.03360505272116393],[121,301,77,0.03816682079627427],[121,301,78,0.04273728210208482],[121,301,79,0.047315670687430804],[121,302,64,-0.017337780467348848],[121,302,65,-0.012898492672746814],[121,302,66,-0.00844195875915975],[121,302,67,-0.003969066203256379],[121,302,68,5.193006665681794E-4],[121,302,69,0.005022262088132072],[121,302,70,0.009538944311158834],[121,302,71,0.014068481070570646],[121,302,72,0.01861001508743352],[121,302,73,0.023162699597400003],[121,302,74,0.027725699907036067],[121,302,75,0.032298194977516195],[121,302,76,0.03687937903607393],[121,302,77,0.041468463215052515],[121,302,78,0.046064677218582525],[121,302,79,0.05066727101691099],[121,303,64,-0.014596625388427178],[121,303,65,-0.010111613504435095],[121,303,66,-0.005610893141721478],[121,303,67,-0.001095363826164186],[121,303,68,0.003434080010699509],[121,303,69,0.007976550510913009],[121,303,70,0.012531167897703525],[121,303,71,0.01709706201129417],[121,303,72,0.021673373872976714],[121,303,73,0.026259257277288506],[121,303,74,0.030853880412684886],[121,303,75,0.03545642751018538],[121,303,76,0.04006610052038492],[121,303,77,0.04468212081867356],[121,303,78,0.04930373093869073],[121,303,79,0.05393019633404051],[121,304,64,-0.01193840812041369],[121,304,65,-0.00740838155353948],[121,304,66,-0.00286415687439915],[121,304,67,0.0016933542468793358],[121,304,68,0.006263247153597409],[121,304,69,0.010844625742575883],[121,304,70,0.015436604033216967],[121,304,71,0.020038307765382665],[121,304,72,0.02464887602614224],[121,304,73,0.029267462905230645],[121,304,74,0.033893239179612455],[121,304,75,0.038525394026625415],[121,304,76,0.0431631367660982],[121,304,77,0.04780569863128397],[121,304,78,0.05245233456863709],[121,304,79,0.05710232506645809],[121,305,64,-0.009364900146211816],[121,305,65,-0.004790592871551445],[121,305,66,-2.0356971941159E-4],[121,305,67,0.004395245404650756],[121,305,68,0.009004937499603623],[121,305,69,0.013624602069400117],[121,305,70,0.018253346753018325],[121,305,71,0.02289029298392542],[121,305,72,0.027534577679017513],[121,305,73,0.032185354956877944],[121,305,74,0.03684179788574848],[121,305,75,0.04150310026068761],[121,305,76,0.04616847841030999],[121,305,77,0.05083717303294907],[121,305,78,0.055508451062270384],[121,305,79,0.060181607562360497],[121,306,64,-0.006877806196921188],[121,306,65,-0.002259976184532754],[121,306,66,0.002369116438048803],[121,306,67,0.007008535442595769],[121,306,68,0.01165735536751418],[121,306,69,0.01631466317816565],[121,306,70,0.020979559957376458],[121,306,71,0.025651162625977685],[121,306,72,0.030328605693427317],[121,306,73,0.03501104303835622],[121,306,74,0.03969764971943606],[121,306,75,0.0443876238160372],[121,306,76,0.049080188299077246],[121,306,77,0.05377459293189748],[121,306,78,0.058470116201197],[121,306,79,0.06316606727804897],[121,307,64,-0.004478763285218762],[121,307,65,1.8180808744759636E-4],[121,307,66,0.0048522185838393295],[121,307,67,0.00953151956982666],[121,307,68,0.014218775010063009],[121,307,69,0.018913063187633472],[121,307,70,0.0236134784544971],[121,307,71,0.028319133012564425],[121,307,72,0.03302915872546394],[121,307,73,0.03774270896083559],[121,307,74,0.04245896046355388],[121,307,75,0.047177115259344565],[121,307,76,0.05189640258919763],[121,307,77,0.05661608087441407],[121,307,78,0.061335439712315185],[121,307,79,0.06605380190263944],[121,308,64,-0.0021693397963898076],[121,308,65,0.00253316875274439],[121,308,66,0.007244123510295346],[121,308,67,0.011962563357079299],[121,308,68,0.016687541573937592],[121,308,69,0.021418127620149274],[121,308,70,0.026153408943242182],[121,308,71,0.030892492820043777],[121,308,72,0.03563450822902378],[121,308,73,0.040378607753768225],[121,308,74,0.04512396951798815],[121,308,75,0.04986979915152431],[121,308,76,0.05461533178775273],[121,308,77,0.05935983409222806],[121,308,78,0.06410260632259336],[121,308,79,0.06884298441978168],[121,309,64,4.8965363063091516E-5],[121,309,65,0.004792584712506501],[121,309,66,0.009543288693133006],[121,309,67,0.014300103625700042],[121,309,68,0.01906207200039922],[121,309,69,0.023828254313443695],[121,309,70,0.028597730935657664],[121,309,71,0.033369604012907395],[121,309,72,0.03814299939842648],[121,309,73,0.042917068616874304],[121,309,74,0.0476909908605333],[121,309,75,0.05246397501710241],[121,309,76,0.057235261729495335],[121,309,77,0.06200412548747766],[121,309,78,0.06676987675117431],[121,309,79,0.0715318641064695],[121,310,64,0.0021747235592851494],[121,310,65,0.006958605767041548],[121,310,66,0.01174824310988562],[121,310,67,0.01654264927772245],[121,310,68,0.02134085586656688],[121,310,69,0.026141914272689804],[121,310,70,0.030944897619368306],[121,310,71,0.03574890271607767],[121,310,72,0.040553052050178784],[121,310,73,0.04535649581093722],[121,310,74,0.050158413946284744],[121,310,75,0.05495801825177482],[121,310,76,0.05975455449214477],[121,310,77,0.06454730455531694],[121,310,78,0.06933558863887089],[121,310,79,0.07411876746900871],[121,311,64,0.0042065771672908925],[121,311,65,0.009029853364053736],[121,311,66,0.013857587999748261],[121,311,67,0.01868878206690748],[121,311,68,0.02352245616723901],[121,311,69,0.028357652462689578],[121,311,70,0.033193436659711834],[121,311,71,0.03802890002657165],[121,311,72,0.04286316144374999],[121,311,73,0.047695369487273584],[121,311,74,0.05252470454538774],[121,311,75,0.057350380968020254],[121,311,76,0.06217164924945194],[121,311,77,0.06698779824402357],[121,311,78,0.07179815741491227],[121,311,79,0.07660209911600027],[121,312,64,0.006143240249608453],[121,312,65,0.011005021288822525],[121,312,66,0.015869997564900762],[121,312,67,0.020737157310816337],[121,312,68,0.025605510037320645],[121,312,69,0.0304740885402581],[121,312,70,0.03534195094168116],[121,312,71,0.04020818276460146],[121,312,72,0.04507189904143165],[121,312,73,0.04993224645595187],[121,312,74,0.05478840551921563],[121,312,75,0.059639592778841816],[121,312,76,0.06448506306210924],[121,312,77,0.06932411175268482],[121,312,78,0.07415607710101665],[121,312,79,0.07898034256841543],[121,313,64,0.007983499177389122],[121,313,65,0.012882876296367127],[121,313,66,0.017784219613353885],[121,313,67,0.022686504543964023],[121,313,68,0.0275887294149062],[121,313,69,0.03248991752685655],[121,313,70,0.037389119251727165],[121,313,71,0.04228541416416473],[121,313,72,0.04717791320733283],[121,313,73,0.05206576089281148],[121,313,74,0.05694813753503267],[121,313,75,0.06182426151969228],[121,313,76,0.06669339160656026],[121,313,77,0.07155482926651663],[121,313,78,0.0764079210528473],[121,313,79,0.08125206100682075],[121,314,64,0.009726213193878286],[121,314,65,0.014662258685487692],[121,314,66,0.01959907614320812],[121,314,67,0.024535628111939267],[121,314,68,0.029470901644902292],[121,314,69,0.03440391042135635],[121,314,70,0.039333696899301746],[121,314,71,0.04425933450300362],[121,314,72,0.04917992984539046],[121,314,73,0.05409462498516024],[121,314,74,0.05900259971901389],[121,314,75,0.0639030739084554],[121,314,76,0.06879530984158122],[121,314,77,0.07367861462968661],[121,314,78,0.07855234263872127],[121,314,79,0.08341589795561913],[121,315,64,0.011370314920334995],[121,315,65,0.016342082814775533],[121,315,66,0.021313463868419785],[121,315,67,0.02628340770658813],[121,315,68,0.03125089002328793],[121,315,69,0.036214914753033844],[121,315,70,0.041174516278241896],[121,315,71,0.04612876167203259],[121,315,72,0.05107675297649622],[121,315,73,0.056017629516253],[121,315,74,0.06095057024772996],[121,315,75,0.06587479614359068],[121,315,76,0.07078957261274274],[121,315,77,0.0756942119557496],[121,315,78,0.08058807585568045],[121,315,79,0.08547057790442042],[121,316,64,0.012914810804340315],[121,316,65,0.017921337560528966],[121,316,66,0.022926354686008343],[121,316,67,0.027928798842193264],[121,316,68,0.03292763428194426],[121,316,69,0.03792185507472587],[121,316,70,0.04291048736792591],[121,316,71,0.04789259168416765],[121,316,72,0.05286726525466878],[121,316,73,0.057833644388479294],[121,316,74,0.06279090687802172],[121,316,75,0.06773827444036706],[121,316,76,0.07267501519467501],[121,316,77,0.07760044617562126],[121,316,78,0.0825139358828485],[121,316,79,0.08741490686646208],[121,317,64,0.014358781510569546],[121,317,65,0.019399086716653247],[121,317,66,0.024436796084784662],[121,317,67,0.029470833272731534],[121,317,68,0.03450015101413703],[121,317,69,0.039523733396231525],[121,317,70,0.04454059817428596],[121,317,71,0.04954979912264071],[121,317,72,0.0545504284223608],[121,317,73,0.05954161908535113],[121,317,74,0.0645225474153567],[121,317,75,0.06949243550527809],[121,317,76,0.07445055377123191],[121,317,77,0.07939622352318113],[121,317,78,0.08432881957216867],[121,317,79,0.08924777287417743],[121,318,64,0.015701382253935886],[121,318,65,0.02077446933644808],[121,318,66,0.025843911495505884],[121,318,67,0.030908619350111605],[121,318,68,0.03596753404055275],[121,318,69,0.041019629557858456],[121,318,70,0.04606391511057564],[121,318,71,0.051099437528696556],[121,318,72,0.056125283704792],[121,318,73,0.061140583072179594],[121,318,74,0.06614451012055722],[121,318,75,0.07113628694852644],[121,318,76,0.0761151858534399],[121,318,77,0.08108053195839482],[121,318,78,0.08603170587640807],[121,318,79,0.09096814641179438],[121,319,64,0.01694184307515864],[121,319,65,0.022046700016339016],[121,319,66,0.027146900582508016],[121,319,67,0.03224134232344525],[121,319,68,0.03732895471594186],[121,319,69,0.04240870154417009],[121,319,70,0.04747958331794844],[121,319,71,0.05254063972872988],[121,319,72,0.057590952143370205],[121,319,73,0.06262964613550409],[121,319,74,0.0676558940549605],[121,319,75,0.07266891763464078],[121,319,76,0.07766799063529478],[121,319,77,0.08265244152801585],[121,319,78,0.08762165621449164],[121,319,79,0.09257508078503057],[122,-64,64,-0.14344674561525073],[122,-64,65,-0.14730208603470518],[122,-64,66,-0.15103691732956714],[122,-64,67,-0.15464979206509888],[122,-64,68,-0.15813942761239197],[122,-64,69,-0.16150471198861616],[122,-64,70,-0.16474470976198696],[122,-64,71,-0.16785866802134974],[122,-64,72,-0.1708460224103978],[122,-64,73,-0.17370640322643283],[122,-64,74,-0.17643964158392067],[122,-64,75,-0.17904577564249458],[122,-64,76,-0.18152505689968246],[122,-64,77,-0.18387795654822137],[122,-64,78,-0.18610517189802056],[122,-64,79,-0.188207632862738],[122,-63,64,-0.13798636719294555],[122,-63,65,-0.1418302076659672],[122,-63,66,-0.14555408888744203],[122,-63,67,-0.14915656076138695],[122,-63,68,-0.1526363374719486],[122,-63,69,-0.15599230331608216],[122,-63,70,-0.15922351860096595],[122,-63,71,-0.16232922560604868],[122,-63,72,-0.16530885460975098],[122,-63,73,-0.16816202998072027],[122,-63,74,-0.17088857633390808],[122,-63,75,-0.17348852475110066],[122,-63,76,-0.17596211906620085],[122,-63,77,-0.17830982221510872],[122,-63,78,-0.18053232265026908],[122,-63,79,-0.1826305408198503],[122,-62,64,-0.13244226589767394],[122,-62,65,-0.13627383581868857],[122,-62,66,-0.13998602444320984],[122,-62,67,-0.1435773789125565],[122,-62,68,-0.14704661009478792],[122,-62,69,-0.15039259840935726],[122,-62,70,-0.15361439971651114],[122,-62,71,-0.15671125127134744],[122,-62,72,-0.15968257774253547],[122,-62,73,-0.1625279972956153],[122,-62,74,-0.16524732774112616],[122,-62,75,-0.16784059274721697],[122,-62,76,-0.17030802811701506],[122,-62,77,-0.1726500881306161],[122,-62,78,-0.17486745195175624],[122,-62,79,-0.176961030099132],[122,-61,64,-0.12681869414872615],[122,-61,65,-0.13063723010363137],[122,-61,66,-0.13433699048774705],[122,-61,67,-0.13791651957961903],[122,-61,68,-0.141374524803758],[122,-61,69,-0.14470988254681005],[122,-61,70,-0.1479216440384945],[122,-61,71,-0.1510090412972106],[122,-61,72,-0.15397149314032954],[122,-61,73,-0.15680861125907786],[122,-61,74,-0.15952020635827036],[122,-61,75,-0.16210629436053725],[122,-61,76,-0.16456710267532948],[122,-61,77,-0.16690307653256342],[122,-61,78,-0.1691148853809582],[122,-61,79,-0.1712034293510456],[122,-60,64,-0.12111995224717231],[122,-60,65,-0.12492469851510712],[122,-60,66,-0.12861130237905638],[122,-60,67,-0.13217830515616347],[122,-60,68,-0.13562441070169173],[122,-60,69,-0.13894849121626351],[122,-60,70,-0.14214959311788733],[122,-60,71,-0.14522694297866656],[122,-60,72,-0.14817995352621227],[122,-60,73,-0.1510082297096642],[122,-60,74,-0.15371157483057352],[122,-60,75,-0.15628999673830168],[122,-60,76,-0.15874371409021082],[122,-60,77,-0.16107316267650995],[122,-60,78,-0.1632790018098117],[122,-60,79,-0.16536212077937584],[122,-59,64,-0.11535038352050409],[122,-59,65,-0.11914059256601184],[122,-59,66,-0.12281331946810181],[122,-59,67,-0.12636710248539473],[122,-59,68,-0.1298006417800498],[122,-59,69,-0.13311280521563562],[122,-59,70,-0.13630263421979816],[122,-59,71,-0.13936934971163184],[122,-59,72,-0.14231235809376686],[122,-59,73,-0.14513125730908327],[122,-59,74,-0.1478258429623014],[122,-59,75,-0.15039611450610468],[122,-59,76,-0.15284228149207335],[122,-59,77,-0.1551647698862828],[122,-59,78,-0.1573642284496365],[122,-59,79,-0.1594415351828986],[122,-58,64,-0.10951436934171388],[122,-58,65,-0.11328930229682843],[122,-58,66,-0.11694744009815683],[122,-58,67,-0.12048731785024402],[122,-58,68,-0.12390763190021437],[122,-58,69,-0.12720724562583197],[122,-58,70,-0.13038519528837678],[122,-58,71,-0.13344069595023622],[122,-58,72,-0.13637314745722962],[122,-58,73,-0.13918214048557598],[122,-58,74,-0.14186746265375372],[122,-58,75,-0.1444291046989108],[122,-58,76,-0.1468672667180937],[122,-58,77,-0.14918236447416788],[122,-58,78,-0.15137503576648104],[122,-58,79,-0.15344614686624292],[122,-57,64,-0.1036163240231266],[122,-57,65,-0.10737525115890512],[122,-57,66,-0.11101809647796912],[122,-57,67,-0.11454339183686413],[122,-57,68,-0.11794982964774658],[122,-57,69,-0.12123626865620363],[122,-57,70,-0.12440173978390012],[122,-57,71,-0.12744545203596325],[122,-57,72,-0.13036679847310784],[122,-57,73,-0.13316536224842823],[122,-57,74,-0.13584092270909043],[122,-57,75,-0.1383934615625947],[122,-57,76,-0.14082316910787318],[122,-57,77,-0.14313045053108941],[122,-57,78,-0.14531593226620199],[122,-57,79,-0.1473804684202562],[122,-56,64,-0.09766068958483598],[122,-56,65,-0.1014028907718666],[122,-56,66,-0.10502974942860466],[122,-56,67,-0.10853979407136072],[122,-56,68,-0.11193171305946514],[122,-56,69,-0.11520436036241799],[122,-56,70,-0.11835676139188833],[122,-56,71,-0.12138811889845602],[122,-56,72,-0.12429781893311942],[122,-56,73,-0.1270854368734764],[122,-56,74,-0.12975074351482907],[122,-56,75,-0.1322937112258662],[122,-56,76,-0.13471452016920038],[122,-56,77,-0.13701356458662395],[122,-56,78,-0.13919145914913744],[122,-56,79,-0.1412490453717299],[122,-55,64,-0.09165193039759678],[122,-55,65,-0.09537669555500361],[122,-55,66,-0.09898688300381431],[122,-55,67,-0.10248101782961183],[122,-55,68,-0.10585778422318559],[122,-55,69,-0.1091160312365973],[122,-55,70,-0.1122547786041026],[122,-55,71,-0.11527322262784045],[122,-55,72,-0.11817074212829337],[122,-55,73,-0.12094690445944545],[122,-55,74,-0.1236014715888697],[122,-55,75,-0.126134406242414],[122,-55,76,-0.12854587811375784],[122,-55,77,-0.1308362701386946],[122,-55,78,-0.13300618483421167],[122,-55,79,-0.13505645070232775],[122,-54,64,-0.08559452770046971],[122,-54,65,-0.08930115723294196],[122,-54,66,-0.09289399898422201],[122,-54,67,-0.09637157452046885],[122,-54,68,-0.09973256375043293],[122,-54,69,-0.1029758106700196],[122,-54,70,-0.10610032917172707],[122,-54,71,-0.10910530891886161],[122,-54,72,-0.11199012128454466],[122,-54,73,-0.11475432535542407],[122,-54,74,-0.11739767400033718],[122,-54,75,-0.11992012000358288],[122,-54,76,-0.12232182226307753],[122,-54,77,-0.12460315205325545],[122,-54,78,-0.12676469935277968],[122,-54,79,-0.12880727923702295],[122,-53,64,-0.07949297399307254],[122,-53,65,-0.08318077921544553],[122,-53,66,-0.08675561124519338],[122,-53,67,-0.09021598804220365],[122,-53,68,-0.09356058512196841],[122,-53,69,-0.0967882412882407],[122,-53,70,-0.09989796443058163],[122,-53,71,-0.10288893738669347],[122,-53,72,-0.10576052386956558],[122,-53,73,-0.10851227445933398],[122,-53,74,-0.11114393266011025],[122,-53,75,-0.113655441021429],[122,-53,76,-0.11604694732459886],[122,-53,77,-0.11831881083381057],[122,-53,78,-0.12047160861206618],[122,-53,79,-0.12250614190189713],[122,-52,64,-0.07335176730228221],[122,-52,65,-0.07702007085119367],[122,-52,66,-0.08057623999822094],[122,-52,67,-0.08401878901202986],[122,-52,68,-0.08734638890597957],[122,-52,69,-0.09055787315847386],[122,-52,70,-0.09365224349821322],[122,-52,71,-0.09662867575425294],[122,-52,72,-0.09948652577088035],[122,-52,73,-0.10222533538722689],[122,-52,74,-0.10484483848185666],[122,-52,75,-0.10734496708199459],[122,-52,76,-0.10972585753766606],[122,-52,77,-0.1119878567606104],[122,-52,78,-0.11413152852802777],[122,-52,79,-0.11615765985113335],[122,-51,64,-0.06717540532369248],[122,-51,65,-0.07082354155584003],[122,-51,66,-0.07436040590613524],[122,-51,67,-0.07778450886901644],[122,-51,68,-0.08109451684924063],[122,-51,69,-0.08428925786953678],[122,-51,70,-0.08736772734317233],[122,-51,71,-0.09032909391133825],[122,-51,72,-0.09317270534537192],[122,-51,73,-0.09589809451372122],[122,-51,74,-0.09850498541390362],[122,-51,75,-0.10099329926911749],[122,-51,76,-0.10336316068977736],[122,-51,77,-0.1056149038998383],[122,-51,78,-0.10774907902796571],[122,-51,79,-0.1097664584635265],[122,-50,64,-0.06096837943768241],[122,-50,65,-0.06459569481420901],[122,-50,66,-0.06811262407199792],[122,-50,67,-0.07151767385024366],[122,-50,68,-0.07480950584109491],[122,-50,69,-0.07798694248422433],[122,-50,70,-0.08104897272632439],[122,-50,71,-0.08399475784543797],[122,-50,72,-0.08682363734013232],[122,-50,73,-0.0895351348834379],[122,-50,74,-0.09212896434178663],[122,-50,75,-0.09460503585862157],[122,-50,76,-0.09696346200293937],[122,-50,77,-0.09920456398263866],[122,-50,78,-0.10132887792272594],[122,-50,79,-0.10333716120835357],[122,-49,64,-0.054735168599924666],[122,-49,65,-0.0583410220564573],[122,-49,66,-0.06183739790150422],[122,-49,67,-0.06522279884003102],[122,-49,68,-0.06849588175008958],[122,-49,69,-0.07165546336392659],[122,-49,70,-0.07470052601403321],[122,-49,71,-0.07763022344403847],[122,-49,72,-0.08044388668446367],[122,-49,73,-0.08314102999325035],[122,-49,74,-0.08572135686130422],[122,-49,75,-0.08818476608271897],[122,-49,76,-0.09053135788995137],[122,-49,77,-0.09276144015381227],[122,-49,78,-0.09487553464832421],[122,-49,79,-0.09687438338043397],[122,-48,64,-0.048480233106662385],[122,-48,65,-0.052063996408528435],[122,-48,66,-0.05553921283922125],[122,-48,67,-0.05890438109256335],[122,-48,68,-0.06215815313359019],[122,-48,69,-0.06529933986582992],[122,-48,70,-0.06832691686353365],[122,-48,71,-0.07124003016876557],[122,-48,72,-0.07403800215336465],[122,-48,73,-0.07672033744569318],[122,-48,74,-0.07928672892241273],[122,-48,75,-0.08173706376495526],[122,-48,76,-0.08407142958095526],[122,-48,77,-0.08629012059050922],[122,-48,78,-0.08839364387732274],[122,-48,79,-0.09038272570471206],[122,-47,64,-0.042208008234586036],[122,-47,65,-0.04576906631673516],[122,-47,66,-0.049222529978499185],[122,-47,67,-0.052566893827751815],[122,-47,68,-0.055800804820211214],[122,-47,69,-0.058923067912528104],[122,-47,70,-0.06193265178033858],[122,-47,71,-0.06482869460118645],[122,-47,72,-0.0676105099023302],[122,-47,73,-0.0702775924733503],[122,-47,74,-0.07282962434379436],[122,-47,75,-0.07526648082553122],[122,-47,76,-0.07758823662007641],[122,-47,77,-0.07979517199076047],[122,-47,78,-0.08188777899979349],[122,-47,79,-0.08386676781019786],[122,-46,64,-0.035922897755158],[122,-46,65,-0.03946064904631352],[122,-46,66,-0.04289177954489842],[122,-46,67,-0.04621477970017418],[122,-46,68,-0.04942829136490268],[122,-46,69,-0.05253111343389194],[122,-46,70,-0.055522207547517355],[122,-46,71,-0.05840070386012053],[122,-46,72,-0.061165906873310694],[122,-46,73,-0.06381730133407393],[122,-46,74,-0.06635455819793501],[122,-46,75,-0.06877754065683683],[122,-46,76,-0.07108631023200696],[122,-46,77,-0.07328113293167615],[122,-46,78,-0.07536248547370583],[122,-46,79,-0.07733106157309644],[122,-45,64,-0.029629267323698194],[122,-45,65,-0.033143124054265116],[122,-45,66,-0.03655135425344813],[122,-45,67,-0.03985244414140632],[122,-45,68,-0.043045030377012905],[122,-45,69,-0.04612790568151226],[122,-45,70,-0.04910002452716322],[122,-45,71,-0.05196050889077375],[122,-45,72,-0.054708654072146534],[122,-45,73,-0.05734393457734843],[122,-45,74,-0.059866010067037845],[122,-45,75,-0.06227473136952766],[122,-45,76,-0.06457014655884286],[122,-45,77,-0.06675250709764324],[122,-45,78,-0.06882227404506613],[122,-45,79,-0.07078012432946168],[122,-44,64,-0.02333143774307822],[122,-44,65,-0.026820826236331863],[122,-44,66,-0.030205602539581045],[122,-44,67,-0.03348424857559629],[122,-44,68,-0.03665539572117171],[122,-44,69,-0.03971783041555943],[122,-44,70,-0.04267049983389726],[122,-44,71,-0.04551251762554298],[122,-44,72,-0.04824316971732745],[122,-44,73,-0.05086192018164648],[122,-44,74,-0.053368417169615934],[122,-44,75,-0.05576249890898066],[122,-44,76,-0.05804419976702557],[122,-44,77,-0.06021375637836124],[122,-44,78,-0.062271613837646234],[122,-44,79,-0.064218431957207],[122,-43,64,-0.017033678101855854],[122,-43,65,-0.020498039047937455],[122,-43,66,-0.023858821663580776],[122,-43,67,-0.027114503508108734],[122,-43,68,-0.030263710590825665],[122,-43,69,-0.033305222963897374],[122,-43,70,-0.0362379803802394],[122,-43,71,-0.03906108801632169],[122,-43,72,-0.041773822259901006],[122,-43,73,-0.04437563656260424],[122,-43,74,-0.04686616735758775],[122,-43,75,-0.04924524004195918],[122,-43,76,-0.05151287502421065],[122,-43,77,-0.053669293836543064],[122,-43,78,-0.05571492531213107],[122,-43,79,-0.05765041182730357],[122,-42,64,-0.010740198787176136],[122,-42,65,-0.014178987499422924],[122,-42,66,-0.017515250688864725],[122,-42,67,-0.020747461487571117],[122,-42,68,-0.02387424045475306],[122,-42,69,-0.026894361153773083],[122,-42,70,-0.02980675579417469],[122,-42,71,-0.03261052093863559],[122,-42,72,-0.035304923274863564],[122,-42,73,-0.0378894054523512],[122,-42,74,-0.040363591984217906],[122,-42,75,-0.042727295213823124],[122,-42,76,-0.04498052134640518],[122,-42,77,-0.047123476545619436],[122,-42,78,-0.04915657309502597],[122,-42,79,-0.051080435624507814],[122,-41,64,-0.004455144372273789],[122,-41,65,-0.007867831025406669],[122,-41,66,-0.0111790633339377],[122,-41,67,-0.014387309941149784],[122,-41,68,-0.01749118587639331],[122,-41,69,-0.020489458115922066],[122,-41,70,-0.023381051208748338],[122,-41,71,-0.02616505296744087],[122,-41,72,-0.028840720223869964],[122,-41,73,-0.03140748464982457],[122,-41,74,-0.0338649586427231],[122,-41,75,-0.03621294127611263],[122,-41,76,-0.03845142431519577],[122,-41,77,-0.04058059829727301],[122,-41,78,-0.04260085867714192],[122,-41,79,-0.044512812037436955],[122,-40,64,0.0018174136215735048],[122,-40,65,-0.0015686562281211902],[122,-40,66,-0.004854360697866156],[122,-40,67,-0.008038163882909899],[122,-40,68,-0.011118675205838535],[122,-40,69,-0.014094654960928432],[122,-40,70,-0.01696501992353583],[122,-40,71,-0.019728849024432393],[122,-40,72,-0.02238538908910004],[122,-40,73,-0.02493406064190884],[122,-40,74,-0.027374463775397984],[122,-40,75,-0.029706384084351445],[122,-40,76,-0.031929798664918074],[122,-40,77,-0.034044882178650204],[122,-40,78,-0.03605201298151328],[122,-40,79,-0.03795177931784455],[122,-39,64,0.008073484088336524],[122,-39,65,0.004714530504966841],[122,-39,66,0.001454836140423299],[122,-39,67,-0.0017040584955648752],[122,-39,68,-0.0047607571447919605],[122,-39,69,-0.007714013328158575],[122,-39,70,-0.010562735938300594],[122,-39,71,-0.013305994897171991],[122,-39,72,-0.015943026878599054],[122,-39,73,-0.0184732410957249],[122,-39,74,-0.020896225153567705],[122,-39,75,-0.023211750966382727],[122,-39,76,-0.025419780740079112],[122,-39,77,-0.027520473019562508],[122,-39,78,-0.029514188801061714],[122,-39,79,-0.03140149770941003],[122,-38,64,0.014309163825913962],[122,-38,65,0.010977810509401165],[122,-38,66,0.007744593649161358],[122,-38,67,0.004611058414533131],[122,-38,68,0.001578606815645256],[122,-38,69,-0.0013515078071153486],[122,-38,70,-0.004178186358688718],[122,-38,71,-0.006900489629891204],[122,-38,72,-0.00951764400294508],[122,-38,73,-0.01202904722190834],[122,-38,74,-0.01443427422822463],[122,-38,75,-0.01673308306109167],[122,-38,76,-0.018925420822886174],[122,-38,77,-0.021011429709531182],[122,-38,78,-0.022991453105850823],[122,-38,79,-0.024866041745892575],[122,-37,64,0.02052064515037222],[122,-37,65,0.017217360478013255],[122,-37,66,0.014011073497245952],[122,-37,67,0.010903334089329308],[122,-37,68,0.007895550084539238],[122,-37,69,0.004988981768958678],[122,-37,70,0.0021847363262094133],[122,-37,71,-5.162377857919065E-4],[122,-37,72,-0.003113156523065319],[122,-37,73,-0.0056054060087089574],[122,-37,74,-0.007992548351168582],[122,-37,75,-0.010274327527334148],[122,-37,76,-0.012450675330703875],[122,-37,77,-0.01452171738449659],[122,-37,78,-0.016487779219762855],[122,-37,79,-0.018349392418470112],[122,-36,64,0.02670422363540026],[122,-36,65,0.02342946022089276],[122,-36,66,0.020250540333898726],[122,-36,67,0.017169018617587017],[122,-36,68,0.014186308787689894],[122,-36,69,0.01130367815688138],[122,-36,70,0.008522242094086252],[122,-36,71,0.005842958418805777],[122,-36,72,0.003266621730448005],[122,-36,73,7.938576727389846E-4],[122,-36,74,-0.0015748828670031356],[122,-36,75,-0.003839329623428478],[122,-36,76,-0.005999398883791862],[122,-36,77,-0.008055199483546494],[122,-36,78,-0.010007038866944984],[122,-36,79,-0.011855429212622726],[122,-35,64,0.03285630597726874],[122,-35,65,0.0296105005513303],[122,-35,66,0.02645936969475271],[122,-35,67,0.023404472860278025],[122,-35,68,0.02044722971148838],[122,-35,69,0.01758891466502266],[122,-35,70,0.014830651367716996],[122,-35,71,0.012173407108754475],[122,-35,72,0.00961798716680995],[122,-35,73,0.00716502909226846],[122,-35,74,0.0048149969242989865],[122,-35,75,0.002568175343083956],[122,-35,76,4.2466375696625924E-4],[122,-35,77,-0.0016156296753708776],[122,-35,78,-0.003552994087737127],[122,-35,79,-0.005387922014261193],[122,-34,64,0.03897341798507992],[122,-34,65,0.035756991297531404],[122,-34,66,0.03263405603416292],[122,-34,67,0.02960617650263364],[122,-34,68,0.02667477837385257],[122,-34,69,0.023841143242276375],[122,-34,70,0.021106403121125772],[122,-34,71,0.018471534872602113],[122,-34,72,0.01593735457309231],[122,-34,73,0.013504511813437925],[122,-34,74,0.011173483934054484],[122,-34,75,0.008944570195196233],[122,-34,76,0.0068178858821313915],[122,-34,77,0.004793356345343058],[122,-34,78,0.002870710975708901],[122,-34,79,0.001049477114679287],[122,-33,64,0.04505221269658344],[122,-33,65,0.04186556944036823],[122,-33,66,0.038771220884014856],[122,-33,67,0.03577073623313087],[122,-33,68,0.03286554722251911],[122,-33,69,0.030056942694790978],[122,-33,70,0.027346063113892094],[122,-33,71,0.024733895013621887],[122,-33,72,0.022221265381131006],[122,-33,73,0.019808835975478],[122,-33,74,0.017497097581028243],[122,-33,75,0.01528636419599061],[122,-33,76,0.013176767155856361],[122,-33,77,0.011168249191857993],[122,-33,78,0.009260558424397214],[122,-33,79,0.007453242291466933],[122,-32,64,0.05108947861923718],[122,-32,65,0.04793300737684836],[122,-32,66,0.04486762113870413],[122,-32,67,0.04189489404908797],[122,-32,68,0.03901626396036362],[122,-32,69,0.03623302703012787],[122,-32,70,0.03354633225327053],[122,-32,71,0.030957175929019032],[122,-32,72,0.028466396062957533],[122,-32,73,0.026074666704092864],[122,-32,74,0.023782492216760764],[122,-32,75,0.021590201487658445],[122,-32,76,0.019497942067776552],[122,-32,77,0.017505674249339243],[122,-32,78,0.0156131650777106],[122,-32,79,0.013819982298285183],[122,-31,64,0.057082148096659346],[122,-31,65,0.053956221309453545],[122,-31,66,0.05092015746644152],[122,-31,67,0.04797553568902213],[122,-31,68,0.04512379999790217],[122,-31,69,0.04236625392900428],[122,-31,70,0.03970405508427499],[122,-31,71,0.03713820961747083],[122,-31,72,0.0346695666549115],[122,-31,73,0.03229881265127388],[122,-31,74,0.030026465680219383],[122,-31,75,0.027852869660140667],[122,-31,76,0.025778188514800182],[122,-31,77,0.0238024002689724],[122,-31,78,0.021925291079042508],[122,-31,79,0.020146449198584993],[122,-30,64,0.06302730580063576],[122,-30,65,0.0599322797615045],[122,-30,66,0.05692588284704203],[122,-30,67,0.054009699191930216],[122,-30,68,0.05118517903313646],[122,-30,69,0.04845363334478059],[122,-30,70,0.04581622840789601],[122,-30,71,0.04327398031516183],[122,-30,72,0.04082774941059708],[122,-30,73,0.03847823466428746],[122,-30,74,0.03622596798194089],[122,-30,75,0.034071308449554305],[122,-30,76,0.03201443651296676],[122,-30,77,0.030055348092409506],[122,-30,78,0.028193848632006357],[122,-30,79,0.026429547084246163],[122,-29,64,0.06892219734836158],[122,-29,65,0.06585841221823685],[122,-29,66,0.06288201123587811],[122,-29,67,0.059994583583170336],[122,-29,68,0.05719758575841838],[122,-29,69,0.054492336230368865],[122,-29,70,0.05188001002711806],[122,-29,71,0.0493616332599881],[122,-29,72,0.0469380775823558],[122,-29,73,0.04461005458350997],[122,-29,74,0.04237811011733117],[122,-29,75,0.04024261856607514],[122,-29,76,0.03820377703903877],[122,-29,77,0.036261599506214104],[122,-29,78,0.03441591086688933],[122,-29,79,0.03266634095321386],[122,-28,64,0.07476423804508736],[122,-28,65,0.07173201789375294],[122,-28,66,0.06878592635416747],[122,-28,67,0.065927557687116],[122,-28,68,0.06315837469450736],[122,-28,69,0.06047970339273412],[122,-28,70,0.05789272762091624],[122,-28,71,0.05539848358410415],[122,-28,72,0.052997854331431005],[122,-28,73,0.05069156416928522],[122,-28,74,0.04848017300930196],[122,-28,75,0.04636407065145187],[122,-28,76,0.044343471002004975],[122,-28,77,0.042418406226478966],[122,-28,78,0.04058872083752718],[122,-28,79,0.038854065717785935],[122,-27,64,0.080551021752307],[122,-27,65,0.07755067462399301],[122,-27,66,0.07463519060573509],[122,-27,67,0.07180616906672299],[122,-27,68,0.06906507915195836],[122,-27,69,0.06641325447513069],[122,-27,70,0.06385188774637007],[122,-27,71,0.06138202533495496],[122,-27,72,0.05900456176696467],[122,-27,73,0.05672023415794436],[122,-27,74,0.0545296165803848],[122,-27,75,0.052433114366294276],[122,-27,76,0.050430958344638954],[122,-27,77,0.04852319901376356],[122,-27,78,0.04670970064874436],[122,-27,79,0.044990135343698556],[122,-26,64,0.08628032988119172],[122,-26,65,0.08331214788542385],[122,-26,66,0.08042755411994862],[122,-26,67,0.07762815308970605],[122,-26,68,0.0749154203195429],[122,-26,69,0.07229069706677005],[122,-26,70,0.06975518496859223],[122,-26,71,0.06730994062448681],[122,-26,72,0.06495587011352244],[122,-26,73,0.06269372344668522],[122,-26,74,0.06052408895401573],[122,-26,75,0.058447387606829215],[122,-26,76,0.05646386727480368],[122,-26,77,0.05457359691803987],[122,-26,78,0.05277646071405029],[122,-26,79,0.05107215211969762],[122,-25,64,0.09195014051142048],[122,-25,65,0.08901439993960114],[122,-25,66,0.08616096392098327],[122,-25,67,0.08339144212148264],[122,-25,68,0.08070731647985163],[122,-25,69,0.07810993594007376],[122,-25,70,0.07560051111862731],[122,-25,71,0.0731801089066938],[122,-25,72,0.07084964700730056],[122,-25,73,0.06860988840746496],[122,-25,74,0.06646143578514707],[122,-25,75,0.06440472585127932],[122,-25,76,0.062440023626658125],[122,-25,77,0.06056741665380461],[122,-25,78,0.058786809143747565],[122,-25,79,0.05709791605775272],[122,-24,64,0.09755863763555539],[122,-24,65,0.09465559910374743],[122,-24,66,0.091833573223559],[122,-24,67,0.08909417484502935],[122,-24,68,0.0864388923522339],[122,-24,69,0.08386908241566349],[122,-24,70,0.08138596467946979],[122,-24,71,0.07899061638365179],[122,-24,72,0.07668396692116985],[122,-24,73,0.07446679233005804],[122,-24,74,0.07233970972034043],[122,-24,75,0.07030317163601985],[122,-24,76,0.06835746035192325],[122,-24,77,0.06650268210551158],[122,-24,78,0.06473876126360922],[122,-24,79,0.06306543442407309],[122,-23,64,0.10310422052866264],[122,-23,65,0.10023412914705376],[122,-23,66,0.09744375085485679],[122,-23,67,0.09473470570735154],[122,-23,68,0.09210848856276665],[122,-23,69,0.08956646385478284],[122,-23,70,0.0871098602998982],[122,-23,71,0.08473976553973117],[122,-23,72,0.08245712071824662],[122,-23,73,0.0802627149939743],[122,-23,74,0.07815717998703031],[122,-23,75,0.07614098416120241],[122,-23,76,0.07421442714089221],[122,-23,77,0.07237763396301444],[122,-23,78,0.07063054926381229],[122,-23,79,0.06897293140060823],[122,-22,64,0.1085855132433311],[122,-22,65,0.10574859881285004],[122,-22,66,0.10299009080275945],[122,-22,67,0.1003116144927172],[122,-22,68,0.09771467124140887],[122,-22,69,0.0952006332793055],[122,-22,70,0.09277073843627781],[122,-22,71,0.09042608480414627],[122,-22,72,0.08816762533414702],[122,-22,73,0.08599616236939023],[122,-22,74,0.08391234211211396],[122,-22,75,0.08191664902600126],[122,-22,76,0.08000940017334568],[122,-22,77,0.07819073948717481],[122,-22,78,0.07646063197828212],[122,-22,79,0.07481885787719322],[122,-21,64,0.11400137423023571],[122,-21,65,0.11119785146679728],[122,-21,66,0.10847142189057146],[122,-21,67,0.10582371602280727],[122,-21,68,0.10325624174649173],[122,-21,69,0.10077037911948117],[122,-21,70,0.09836737512248728],[122,-21,71,0.09604833834199222],[122,-21,72,0.09381423358807883],[122,-21,73,0.09166587644724744],[122,-21,74,0.08960392777002679],[122,-21,75,0.08762888809364111],[122,-21,76,0.08574109199952573],[122,-21,77,0.08394070240579377],[122,-21,78,0.0822277047946105],[122,-21,79,0.08060190137449497],[122,-20,64,0.11935090608394117],[122,-20,65,0.11658097487079189],[122,-20,66,0.11388681757790531],[122,-20,67,0.11127006998347067],[122,-20,68,0.10873224651623214],[122,-20,69,0.10627473508910645],[122,-20,70,0.1038987918676505],[122,-20,71,0.10160553597345556],[122,-20,72,0.09939594412245345],[122,-20,73,0.09727084519820428],[122,-20,74,0.09523091475997714],[122,-20,75,0.09327666948588209],[122,-20,76,0.09140846155084759],[122,-20,77,0.08962647293954484],[122,-20,78,0.08793070969421846],[122,-20,79,0.0863209960974386],[122,-19,64,0.1246334654141138],[122,-19,65,0.12189731108275415],[122,-19,66,0.11923560588790871],[122,-19,67,0.116649990878256],[122,-19,68,0.11414198704744394],[122,-19,69,0.11171299018829317],[122,-19,70,0.10936426568185198],[122,-19,71,0.10709694322137153],[122,-19,72,0.10491201147119311],[122,-19,73,0.10281031266061003],[122,-19,74,0.10079253711252323],[122,-19,75,0.09885921770714201],[122,-19,76,0.09701072428052793],[122,-19,77,0.09524725795808464],[122,-19,78,0.09356884542294586],[122,-19,79,0.09197533311928785],[122,-18,64,0.1298486728422662],[122,-18,65,0.12714646648242423],[122,-18,66,0.12451737946095476],[122,-18,67,0.12196305810884711],[122,-18,68,0.11948503000157107],[122,-18,69,0.11708469883396289],[122,-18,70,0.11476333922996063],[122,-18,71,0.11252209148725745],[122,-18,72,0.11036195625686318],[122,-18,73,0.10828378915763859],[122,-18,74,0.10628829532561979],[122,-18,75,0.1043760238983844],[122,-18,76,0.10254736243426077],[122,-18,77,0.10080253126647487],[122,-18,78,0.0991415777921989],[122,-18,79,0.09756437069651636],[122,-17,64,0.13499642312374982],[122,-17,65,0.13232832192287747],[122,-17,66,0.12973200573450905],[122,-17,67,0.1272091261821101],[122,-17,68,0.12476121743775315],[122,-17,69,0.12238969111777298],[122,-17,70,0.1200958311132696],[122,-17,71,0.11788078835552596],[122,-17,72,0.1157455755163318],[122,-17,73,0.11369106164327725],[122,-17,74,0.11171796672983358],[122,-17,75,0.1098268562204745],[122,-17,76,0.10801813545063577],[122,-17,77,0.10629204402161252],[122,-17,78,0.10464865011035218],[122,-17,79,0.10308784471416466],[122,-16,64,0.140076895395162],[122,-16,65,0.1374430430079323],[122,-16,66,0.13487963724934304],[122,-16,67,0.13238833504392566],[122,-16,68,0.12997067717309385],[122,-16,69,0.1276280831916482],[122,-16,70,0.12536184627912383],[122,-16,71,0.12317312802605362],[122,-16,72,0.12106295315513249],[122,-16,73,0.11903220417734994],[122,-16,74,0.1170816159829079],[122,-16,75,0.11521177036717611],[122,-16,76,0.11342309049148402],[122,-16,77,0.11171583527884588],[122,-16,78,0.11009009374458345],[122,-16,79,0.1085457792618586],[122,-15,64,0.14509056354726024],[122,-15,65,0.14249109049553677],[122,-15,66,0.13996072208218446],[122,-15,67,0.13750112053989683],[122,-15,68,0.1351138332702272],[122,-15,69,0.13280028778101094],[122,-15,70,0.13056178655863115],[122,-15,71,0.12839950187519766],[122,-15,72,0.12631447053062395],[122,-15,73,0.12430758852966939],[122,-15,74,0.1223796056937686],[122,-15,75,0.12053112020789147],[122,-15,76,0.11876257310223937],[122,-15,77,0.11707424266887434],[122,-15,78,0.11546623881323981],[122,-15,79,0.11393849734059347],[122,-14,64,0.15003820672316048],[122,-14,65,0.14747323082691532],[122,-14,66,0.14497601440458097],[122,-14,67,0.14254822500270725],[122,-14,68,0.14019141665195067],[122,-14,69,0.13790702482548067],[122,-14,70,0.13569636133222585],[122,-14,71,0.13356060914503154],[122,-14,72,0.13150081716371564],[122,-14,73,0.12951789491308507],[122,-14,74,0.12761260717573963],[122,-14,75,0.1257855685599023],[122,-14,76,0.12403723800208699],[122,-14,77,0.12236791320469376],[122,-14,78,0.12077772500849626],[122,-14,79,0.11926663170003837],[122,-13,64,0.1549209199419177],[122,-13,65,0.15239054678157038],[122,-13,66,0.14992658516807744],[122,-13,67,0.1475307079662288],[122,-13,68,0.14520447584302998],[122,-13,69,0.142949332247146],[122,-13,70,0.1407665983231864],[122,-13,71,0.1386574677608995],[122,-13,72,0.13662300157926233],[122,-13,73,0.13466412284552942],[122,-13,74,0.13278161132906885],[122,-13,75,0.13097609809022193],[122,-13,76,0.12924806000399747],[122,-13,77,0.1275978142186941],[122,-13,78,0.12602551254941197],[122,-13,79,0.1245311358064718],[122,-12,64,0.159740124847637],[122,-12,65,0.15724444825829031],[122,-12,66,0.1548138329158537],[122,-12,67,0.15244995700653186],[122,-12,68,0.1501543878393239],[122,-12,69,0.14792857684655736],[122,-12,70,0.1457738545192614],[122,-12,71,0.1436914252774465],[122,-12,72,0.14168236227528008],[122,-12,73,0.1397476021412184],[122,-12,74,0.13788793965292545],[122,-12,75,0.13610402234721153],[122,-12,76,0.1343963450648078],[122,-12,77,0.13276524443006565],[122,-12,78,0.13121089326554436],[122,-12,79,0.12973329494150398],[122,-11,64,0.16449758058383712],[122,-11,65,0.16203668318188336],[122,-11,66,0.15963949472054628],[122,-11,67,0.157307698709512],[122,-11,68,0.1550428691039466],[122,-11,69,0.1528464653261612],[122,-11,70,0.1507198272221164],[122,-11,71,0.14866416995283316],[122,-11,72,0.14668057882069663],[122,-11,73,0.14477000403071605],[122,-11,74,0.14293325538656942],[122,-11,75,0.1411709969216678],[122,-11,76,0.1394837414650527],[122,-11,77,0.13787184514221862],[122,-11,78,0.1363355018108212],[122,-11,79,0.13487473743128953],[122,-10,64,0.16919539479329204],[122,-10,65,0.1667693485358649],[122,-10,66,0.16440565724847567],[122,-10,67,0.16210600976536438],[122,-10,68,0.15987198669069658],[122,-10,69,0.15770505544139868],[122,-10,70,0.15560656522483152],[122,-10,71,0.15357774195136875],[122,-10,72,0.15161968308186813],[122,-10,73,0.14973335241009544],[122,-10,74,0.14791957477993578],[122,-10,75,0.14617903073761995],[122,-10,76,0.14451225111878419],[122,-10,77,0.14291961157045419],[122,-10,78,0.14140132700791253],[122,-10,79,0.1399574460064713],[122,-9,64,0.1738360347431933],[122,-9,65,0.17144490152093672],[122,-9,66,0.1691147679501266],[122,-9,67,0.16684732818974568],[122,-9,68,0.16464416949459215],[122,-9,69,0.1625067672793158],[122,-9,70,0.1604364801172925],[122,-9,71,0.15843454467440232],[122,-9,72,0.15650207057769971],[122,-9,73,0.15464003521903547],[122,-9,74,0.15284927849346508],[122,-9,75,0.15113049747267004],[122,-9,76,0.14948424101321478],[122,-9,77,0.1479109042997222],[122,-9,78,0.14641072332293625],[122,-9,79,0.14498376929268575],[122,-8,64,0.17842233857583067],[122,-8,65,0.1760661708394642],[122,-8,66,0.17376964637707792],[122,-8,67,0.17153446467182498],[122,-8,68,0.16936221962971676],[122,-8,69,0.16725439466488268],[122,-8,70,0.16521235771967546],[122,-8,71,0.1632373562196735],[122,-8,72,0.1613305119635785],[122,-8,73,0.1594928159480602],[122,-8,74,0.15772512312738995],[122,-8,75,0.15602814710808677],[122,-8,76,0.1544024547783931],[122,-8,77,0.15284846087267534],[122,-8,78,0.15136642247070564],[122,-8,79,0.1499564334318465],[122,-7,64,0.1829575266845589],[122,-7,65,0.18063636810570838],[122,-7,66,0.17837349562514537],[122,-7,67,0.1761706140489867],[122,-7,68,0.17402932393413373],[122,-7,69,0.17195111669478513],[122,-7,70,0.16993736964378658],[122,-7,71,0.16798934096888485],[122,-7,72,0.16610816464387101],[122,-7,73,0.1642948452746722],[122,-7,74,0.16255025288023284],[122,-7,75,0.16087511760840356],[122,-7,76,0.15927002438666538],[122,-7,77,0.15773540750777115],[122,-7,78,0.1562715451502733],[122,-7,79,0.15487855383394977],[122,-6,64,0.18744521321515673],[122,-6,65,0.18515909938192776],[122,-6,66,0.18292991390385027],[122,-6,67,0.18075936690829109],[122,-6,68,0.17864906560198202],[122,-6,69,0.17660050939879635],[122,-6,70,0.17461508498236666],[122,-6,71,0.17269406130360276],[122,-6,72,0.17083858451310108],[122,-6,73,0.16904967282849925],[122,-6,74,0.16732821133662312],[122,-6,75,0.16567494673063787],[122,-6,76,0.16409048198203458],[122,-6,77,0.1625752709475351],[122,-6,78,0.1611296129108808],[122,-6,79,0.159753647059521],[122,-5,64,0.19188941769270063],[122,-5,65,0.18963837684046936],[122,-5,66,0.18744290623233206],[122,-5,67,0.18530472131482556],[122,-5,68,0.183225435942877],[122,-5,69,0.18120655752885906],[122,-5,70,0.17924948212648784],[122,-5,71,0.17735548944961887],[122,-5,72,0.1755257378259345],[122,-5,73,0.17376125908557682],[122,-5,74,0.172062953384572],[122,-5,75,0.17043158396325864],[122,-5,76,0.16886777183955037],[122,-5,77,0.16737199043711792],[122,-5,78,0.1659445601484536],[122,-5,79,0.16458564283283417],[122,-4,64,0.19629457677370987],[122,-4,65,0.1940786305516038],[122,-4,66,0.19191689626146258],[122,-4,67,0.18981109466668677],[122,-4,68,0.1877628462683656],[122,-4,69,0.18577366647562],[122,-4,70,0.18384496071078837],[122,-4,71,0.1819780194495133],[122,-4,72,0.1801740131957149],[122,-4,73,0.17843398739151262],[122,-4,74,0.1767588572619364],[122,-4,75,0.1751494025946435],[122,-4,76,0.17360626245446686],[122,-4,77,0.17212992983288444],[122,-4,78,0.17072074623236866],[122,-4,79,0.16937889618563773],[122,-3,64,0.2006655561237014],[122,-3,65,0.19848472039724452],[122,-3,66,0.19635673822229804],[122,-3,67,0.19428333567674405],[122,-3,68,0.1922661399055814],[122,-3,69,0.19030667431256587],[122,-3,70,0.1884063536866908],[122,-3,71,0.1865664792635674],[122,-3,72,0.1847882337216954],[122,-3,73,0.18307267611367728],[122,-3,74,0.18142073673222614],[122,-3,75,0.17983321191117452],[122,-3,76,0.17831075876131874],[122,-3,77,0.17685388984118067],[122,-3,78,0.17546296776265258],[122,-3,79,0.1741381997315401],[122,-2,64,0.20500766242024304],[122,-2,65,0.20286194811064118],[122,-2,66,0.20076772900096496],[122,-2,67,0.19872673648127037],[122,-2,68,0.19674060433818596],[122,-2,69,0.1948108639678512],[122,-2,70,0.19293893952369523],[122,-2,71,0.191126142999119],[122,-2,72,0.18937366924506271],[122,-2,73,0.1876825909225206],[122,-2,74,0.18605385338984726],[122,-2,75,0.18448826952506536],[122,-2,76,0.1829865144830083],[122,-2,77,0.18154912038738125],[122,-2,78,0.18017647095770362],[122,-2,79,0.17886879607115003],[122,-1,64,0.20932665548129326],[122,-1,65,0.20721606944183402],[122,-1,66,0.20515562033975776],[122,-1,67,0.2031470448752265],[122,-1,68,0.20119198347438405],[122,-1,69,0.19929197552359523],[122,-1,70,0.1974484545385281],[122,-1,71,0.1956627432681357],[122,-1,72,0.193936048733527],[122,-1,73,0.19226945720178024],[122,-1,74,0.19066392909455443],[122,-1,75,0.18912029383169515],[122,-1,76,0.18763924460968018],[122,-1,77,0.18622133311498068],[122,-1,78,0.1848669641723052],[122,-1,79,0.18357639032774242],[122,0,64,0.21362876051893787],[122,0,65,0.21155330644897508],[122,0,66,0.20952663116456471],[122,0,67,0.20755047667430815],[122,0,68,0.20562649004211886],[122,0,69,0.20375621864276605],[122,0,70,0.2019411053522573],[122,0,71,0.20018248367312375],[122,0,72,0.19848157279459333],[122,0,73,0.1968394725877064],[122,0,74,0.19525715853522996],[122,0,75,0.1937354765965652],[122,0,76,0.19227513800749585],[122,0,77,0.19087671401485184],[122,0,78,0.1895406305460552],[122,0,79,0.1882671628135646],[122,1,64,0.21792068051863034],[122,1,65,0.2158803599156347],[122,1,66,0.21388746003873194],[122,1,67,0.2119437282038691],[122,1,68,0.21005081811156778],[122,1,69,0.2082102851237626],[122,1,70,0.2064235814754931],[122,1,71,0.2046920514214856],[122,1,72,0.20301692631763446],[122,1,73,0.20139931963741586],[122,1,74,0.1998402219231067],[122,1,75,0.19834049567199552],[122,1,76,0.19690087015743074],[122,1,77,0.19552193618478975],[122,1,78,0.19420414078232384],[122,1,79,0.1929477818269102],[122,2,64,0.23078632811187705],[122,2,65,0.22885140957262107],[122,2,66,0.22695983771722872],[122,2,67,0.22511337578197788],[122,2,68,0.22331369737539142],[122,2,69,0.2215623818189849],[122,2,70,0.2198609094228633],[122,2,71,0.2182106566962161],[122,2,72,0.21661289149270146],[122,2,73,0.21506876809077113],[122,2,74,0.21357932220879694],[122,2,75,0.21214546595518902],[122,2,76,0.21076798271335462],[122,2,77,0.20944752196157124],[122,2,78,0.2081845940277447],[122,2,79,0.2069795647790651],[122,3,64,0.23078367833444424],[122,3,65,0.22884877382600388],[122,3,66,0.2269572164573831],[122,3,67,0.22511076945453334],[122,3,68,0.22331110641541363],[122,3,69,0.2215598066507487],[122,3,70,0.21985835045963587],[122,3,71,0.2182081143400516],[122,3,72,0.2166103661342471],[122,3,73,0.21506626010908458],[122,3,74,0.21357683197117572],[122,3,75,0.21214299381701163],[122,3,76,0.21076552901793533],[122,3,77,0.20944508704002585],[122,3,78,0.20818217819887108],[122,3,79,0.20697716834923574],[122,4,64,0.2307745436041948],[122,4,65,0.2288396874649924],[122,4,66,0.22694818003745265],[122,4,67,0.22510178451192897],[122,4,68,0.22330217444996248],[122,4,69,0.22155092912507723],[122,4,70,0.21984952879842368],[122,4,71,0.21819934992932355],[122,4,72,0.21660166032070383],[122,4,73,0.215057614199473],[122,4,74,0.21356824723170154],[122,4,75,0.21213447147279252],[122,4,76,0.21075707025249701],[122,4,77,0.2094366929948437],[122,4,78,0.2081738499729553],[122,4,79,0.20696890699876225],[122,5,64,0.2350433568156488],[122,5,65,0.23314373583386727],[122,5,66,0.23128610897818547],[122,5,67,0.22947224466953164],[122,5,68,0.22770382302742487],[122,5,69,0.22598243123214612],[122,5,70,0.22430955882176284],[122,5,71,0.22268659292405657],[122,5,72,0.22111481342334105],[122,5,73,0.21959538806222534],[122,5,74,0.2181293674781829],[122,5,75,0.21671768017511428],[122,5,76,0.21536112742975388],[122,5,77,0.21406037813299617],[122,5,78,0.21281596356610777],[122,5,79,0.2116282721118431],[122,6,64,0.23929749743647666],[122,6,65,0.23743318239783762],[122,6,66,0.2356095095034677],[122,6,67,0.23382825234899196],[122,6,68,0.23209109755459467],[122,6,69,0.23039964014862346],[122,6,70,0.2287553788860487],[122,6,71,0.22715971150182845],[122,6,72,0.22561392989917084],[122,6,73,0.22411921527274203],[122,6,74,0.22267663316668618],[122,6,75,0.22128712846764065],[122,6,76,0.21995152033260046],[122,6,77,0.2186704970517045],[122,6,78,0.2174446108459137],[122,6,79,0.21627427259959264],[122,7,64,0.2435329062362812],[122,7,65,0.2417039839366843],[122,7,66,0.23991435516444382],[122,7,67,0.2381657986192146],[122,7,68,0.23646000734929307],[122,7,69,0.23479858415671562],[122,7,70,0.23318303693722153],[122,7,71,0.2316147739551263],[122,7,72,0.23009509905309866],[122,7,73,0.22862520679688614],[122,7,74,0.22720617755486217],[122,7,75,0.225838972512571],[122,7,76,0.2245244286221285],[122,7,77,0.22326325348655118],[122,7,78,0.22205602017897985],[122,7,79,0.22090316199681648],[122,8,64,0.24774553821221706],[122,8,65,0.24595210992967503],[122,8,66,0.24419663069783987],[122,8,67,0.24248088423527459],[122,8,68,0.240806569930895],[122,8,69,0.2391752982706431],[122,8,70,0.23758858619903156],[122,8,71,0.236047852415607],[122,8,72,0.23455441260632504],[122,8,73,0.23310947460988163],[122,8,74,0.23171413351887404],[122,8,75,0.23036936671596708],[122,8,76,0.22907602884492428],[122,8,77,0.22783484671657273],[122,8,78,0.2266464141496748],[122,8,79,0.22551118674671577],[122,9,64,0.25193136570581376],[122,9,65,0.2501735457163141],[122,9,66,0.24845233522941673],[122,9,67,0.24676952288334147],[122,9,68,0.24512681430550276],[122,9,69,0.24352582756084423],[122,9,70,0.24196808853505414],[122,9,71,0.2404550262527133],[122,9,72,0.23898796813036216],[122,9,73,0.23756813516453623],[122,9,74,0.23619663705464233],[122,9,75,0.23487446726084937],[122,9,76,0.23360249799685606],[122,9,77,0.23238147515760166],[122,9,78,0.23121201318189466],[122,9,79,0.23009458984996856],[122,10,64,0.2560863814644049],[122,10,65,0.2543642956012273],[122,10,66,0.25267748542109825],[122,10,67,0.25102774436884634],[122,10,68,0.24941678419394447],[122,10,69,0.2478462304206],[122,10,70,0.24631761775274486],[122,10,71,0.24483238541396657],[122,10,72,0.2433918724223776],[122,10,73,0.24199731280046044],[122,10,74,0.24064983071977386],[122,10,75,0.2393504355806817],[122,10,76,0.23810001702697559],[122,10,77,0.2368993398954532],[122,10,78,0.23574903910042821],[122,10,79,0.2346496144531821],[122,11,64,0.26020660164694914],[122,11,65,0.2585203859029609],[122,11,66,0.2568681185615596],[122,11,67,0.2552515977476688],[122,11,68,0.25367254120237015],[122,11,69,0.2521325817748575],[122,11,70,0.25063326284930654],[122,11,71,0.24917603370670505],[122,11,72,0.2477622448216359],[122,11,73,0.24639314309405447],[122,11,74,0.24506986701594435],[122,11,75,0.24379344177301177],[122,11,76,0.2425647742812913],[122,11,77,0.24138464815872474],[122,11,78,0.24025371863168832],[122,11,79,0.2391725073764781],[122,12,64,0.26428806877435185],[122,12,65,0.2626378679468091],[122,12,66,0.26102029560038736],[122,12,67,0.25943715440045634],[122,12,68,0.2578901679355637],[122,12,69,0.256380976231364],[122,12,70,0.25491113119948683],[122,12,71,0.25348209202138466],[122,12,72,0.25209522046715516],[122,12,73,0.2507517761493777],[122,12,74,0.24945291171185047],[122,12,75,0.248199667953386],[122,12,76,0.24699296888653888],[122,12,77,0.24583361673132742],[122,12,78,0.24472228684392516],[122,12,79,0.24365952258033108],[122,13,64,0.2683268546243907],[122,13,65,0.26671282100177024],[122,13,66,0.265130104125913],[122,13,67,0.2635805110501839],[122,13,68,0.2620657710530733],[122,13,69,0.2605875311742223],[122,13,70,0.2591473516854109],[122,13,71,0.25774670149655293],[122,13,72,0.2563869534966879],[122,13,73,0.2550693798300135],[122,13,74,0.25379514710684403],[122,13,75,0.25256531154964984],[122,13,76,0.2513808140740561],[122,13,77,0.25024247530485966],[122,13,78,0.24915099052703982],[122,13,79,0.24810692457177397],[122,14,64,0.27231906307102405],[122,14,65,0.270741355161412],[122,14,66,0.26919366128649874],[122,14,67,0.2676777927227232],[122,14,68,0.2661954842679335],[122,14,69,0.2647483897996327],[122,14,70,0.26333807776821905],[122,14,71,0.26196602662525903],[122,14,72,0.26063362018679],[122,14,73,0.2593421429316912],[122,14,74,0.25809277523500884],[122,14,75,0.2568865885363936],[122,14,76,0.2557245404435253],[122,14,77,0.254607469770585],[122,14,78,0.2535360915117508],[122,14,79,0.25251099174972647],[122,15,64,0.2762608328682679],[122,15,65,0.27471961416883056],[122,15,66,0.2732071166554615],[122,15,67,0.271725155650616],[122,15,68,0.2702754712881705],[122,15,69,0.2688597240940199],[122,15,70,0.26747949050170333],[122,15,71,0.2661362583030986],[122,15,72,0.2648314220341776],[122,15,73,0.2635662782958638],[122,15,74,0.2623420210098816],[122,15,75,0.26115973660974723],[122,15,76,0.26002039916678327],[122,15,77,0.25892486545121424],[122,15,78,0.25787386992831945],[122,15,79,0.2568680196896529],[122,16,64,0.2801483403785051],[122,16,65,0.2786437781855665],[122,16,66,0.2771666550394983],[122,16,67,0.27571879011990935],[122,16,68,0.2743019287009504],[122,16,69,0.27291773775439704],[122,16,70,0.2715678014878012],[122,16,71,0.2702536168177496],[122,16,72,0.2689765887782234],[122,16,73,0.267738025864097],[122,16,74,0.266539135309669],[122,16,75,0.26538101830237293],[122,16,76,0.26426466513155006],[122,16,77,0.2631909502723434],[122,16,78,0.26216062740468565],[122,16,79,0.261174324367396],[122,17,64,0.28397780224540486],[122,17,65,0.28251006650466054],[122,17,66,0.28106849923079397],[122,17,67,0.2796549232602357],[122,17,68,0.2782710887995536],[122,17,69,0.27691866905115997],[122,17,70,0.27559925577413236],[122,17,71,0.27431435478018523],[122,17,72,0.2730653813647871],[122,17,73,0.2718536556734593],[122,17,74,0.2706803980031538],[122,17,75,0.2695467240388525],[122,17,76,0.26845364002527394],[122,17,77,0.26740203787374417],[122,17,78,0.2663926902042073],[122,17,79,0.265426245322387],[122,18,64,0.2877454780112417],[122,18,65,0.2863147402076287],[122,18,66,0.2849089127025949],[122,18,67,0.2835298217779223],[122,18,68,0.2821792223529573],[122,18,69,0.28085879363308336],[122,18,70,0.2795701346933567],[122,18,71,0.27831475999734295],[122,18,72,0.27709409485114905],[122,18,73,0.275909470792686],[122,18,74,0.27476212091606045],[122,18,75,0.2736531751312367],[122,18,76,0.27258365535885687],[122,18,77,0.2715544706602734],[122,18,78,0.2705664123027719],[122,18,79,0.26962014875999446],[122,19,64,0.2914476726787138],[122,19,65,0.2900541047654684],[122,19,66,0.2886842022483546],[122,19,67,0.28733979463223247],[122,19,68,0.28602264131813177],[122,19,69,0.28473442727463155],[122,19,70,0.283476758644461],[122,19,71,0.28225115828635483],[122,19,72,0.2810590612521603],[122,19,73,0.2799018101992285],[122,19,74,0.27878065073799263],[122,19,75,0.2776967267148696],[122,19,76,0.27665107543037654],[122,19,77,0.2756446227925136],[122,19,78,0.274678178405394],[122,19,79,0.273752430593129],[122,20,64,0.2950807392173602],[122,20,65,0.29372451258378424],[122,20,66,0.2923907205645456],[122,20,67,0.2910811956548388],[122,20,68,0.2897977014951478],[122,20,69,0.2885419285656787],[122,20,70,0.28731548981607374],[122,20,71,0.28611991623044336],[122,20,72,0.284956652327708],[122,20,73,0.2838270515972884],[122,20,74,0.28273237187004296],[122,20,75,0.28167377062459026],[122,20,76,0.280652300228906],[122,20,77,0.2796689031172502],[122,20,78,0.2787244069024009],[122,20,79,0.2778195194232048],[122,21,64,0.29864108101437614],[122,21,65,0.29732236549184127],[122,21,66,0.29602486877694184],[122,21,67,0.29475042611232544],[122,21,68,0.29350080512489535],[122,21,69,0.2922777015434384],[122,21,70,0.291082734851605],[122,21,71,0.28991744387627266],[122,21,72,0.2887832823112894],[122,21,73,0.28768161417662924],[122,21,74,0.2866137092128667],[122,21,75,0.28558073821110014],[122,21,76,0.28458376827821946],[122,21,77,0.28362375803757045],[122,21,78,0.2827015527649932],[122,21,79,0.2818178794602463],[122,22,64,0.30212515426993397],[122,22,65,0.30084411717564696],[122,22,66,0.2995830989104724],[122,22,67,0.2983439372118274],[122,22,68,0.2971284034295175],[122,22,69,0.295938198266707],[122,22,70,0.2947749474563141],[122,22,71,0.29364019737286556],[122,22,72,0.29253541057980265],[122,22,73,0.2914619613122749],[122,22,74,0.2904211308953272],[122,22,75,0.28941410309760723],[122,22,76,0.288441959420494],[122,22,77,0.2875056743226948],[122,22,78,0.28660611038029243],[122,22,79,0.2857440133822484],[122,23,64,0.30552947033709216],[122,23,65,0.3042862755551486],[122,23,66,0.3030619163027383],[122,23,67,0.3018582325498925],[122,23,68,0.30067699909564977],[122,23,69,0.2995199213325111],[122,23,70,0.298388630946403],[122,23,71,0.2972846815521774],[122,23,72,0.29620954426464696],[122,23,73,0.2951646032051865],[122,23,74,0.29415115094380845],[122,23,75,0.2931703838768406],[122,23,76,0.2922233975401039],[122,23,77,0.29131118185764054],[122,23,78,0.29043461632597123],[122,23,79,0.28959446513389153],[122,24,64,0.30885059800611225],[122,24,65,0.30764540510536376],[122,24,66,0.3064578819610023],[122,24,67,0.30528987050438056],[122,24,68,0.3041431487002751],[122,24,69,0.3030194263349702],[122,24,70,0.30192034073993584],[122,24,71,0.30084745245113287],[122,24,72,0.299802240803938],[122,24,73,0.29878609946372287],[122,24,74,0.29780033189199717],[122,24,75,0.2968461467482376],[122,24,76,0.29592465322730693],[122,24,77,0.2950368563325095],[122,24,78,0.2941836520842643],[122,24,79,0.29336582266440353],[122,25,64,0.3120851657332789],[122,25,65,0.31091812912153827],[122,25,66,0.30976761486275295],[122,25,67,0.30863546656949775],[122,25,68,0.30752346507929607],[122,25,69,0.30643332426647174],[122,25,70,0.3053666867896916],[122,25,71,0.30432511977522814],[122,25,72,0.3033101104359379],[122,25,73,0.30232306162598716],[122,25,74,0.3013652873312365],[122,25,75,0.3004380080954065],[122,25,76,0.29954234638192573],[122,25,77,0.29867932187151264],[122,25,78,0.29784984669546605],[122,25,79,0.2970547206046788],[122,26,64,0.3152298638143026],[122,26,65,0.3141011319284161],[122,26,66,0.3129877941999234],[122,26,67,0.31189169563404917],[122,26,68,0.3108146196389047],[122,26,69,0.3097582838612474],[122,26,70,0.30872433595803167],[122,26,71,0.30771434930378355],[122,26,72,0.306729818633792],[122,26,73,0.30577215562314686],[122,26,74,0.3048426844015416],[122,26,75,0.3039426370039545],[122,26,76,0.3030731487571175],[122,26,77,0.3022352536018162],[122,26,78,0.3014298793510051],[122,26,79,0.30065784288374336],[122,27,64,0.31828144650213736],[122,27,65,0.31719116103344525],[122,27,66,0.3161151615665909],[122,27,67,0.3150552942027334],[122,27,68,0.3140133446095758],[122,27,69,0.3129910338811665],[122,27,70,0.3119900143336027],[122,27,71,0.3110118652366659],[122,27,72,0.31005808848138294],[122,27,73,0.3091301041835431],[122,27,74,0.308229246223089],[122,27,75,0.30735675771949456],[122,27,76,0.30651378644303884],[122,27,77,0.3057013801620225],[122,27,78,0.30492048192590515],[122,27,79,0.30417192528437503],[122,28,64,0.3212367340692994],[122,28,65,0.3201850292240145],[122,28,66,0.3191465230902504],[122,28,67,0.31812306256057377],[122,28,68,0.3171164352427757],[122,28,69,0.3161283653438466],[122,28,70,0.3151605094899718],[122,28,71,0.314214452482575],[122,28,72,0.31329170299040365],[122,28,73,0.3123936891776858],[122,28,74,0.31152175426828016],[122,28,75,0.31067715204592616],[122,28,76,0.3098610422905095],[122,28,77,0.3090744861503841],[122,28,78,0.3083184414507333],[122,28,79,0.30759375793797916],[122,29,64,0.32409261481476564],[122,29,65,0.3230796166087923],[122,29,66,0.32207875150673515],[122,29,67,0.3210918668805597],[122,29,68,0.3201207519504635],[122,29,69,0.31916713369315364],[122,29,70,0.31823267268626937],[122,29,71,0.3173189588889762],[122,29,72,0.3164275073587268],[122,29,73,0.31555975390421653],[122,29,74,0.31471705067445793],[122,29,75,0.31390066168407793],[122,29,76,0.3131117582747546],[122,29,77,0.3123514145128353],[122,29,78,0.3116206025231182],[122,29,79,0.31092018775880537],[122,30,64,0.32684604701528863],[122,30,65,0.32587187260301104],[122,30,66,0.3249087881786265],[122,30,67,0.3239586412743378],[122,30,68,0.32302322238722164],[122,30,69,0.32210426091193084],[122,30,70,0.3212034210096754],[122,30,71,0.32032229741350665],[122,30,72,0.31946241116990054],[122,30,73,0.31862520531666594],[122,30,74,0.31781204049710576],[122,30,75,0.3170241905105319],[122,30,76,0.31626283779905073],[122,30,77,0.3155290688706637],[122,30,78,0.31482386965866177],[122,30,79,0.31414812081732435],[122,31,64,0.3294940608212188],[122,31,65,0.3285588178577807],[122,31,66,0.3276336450572359],[122,31,67,0.32672038978603957],[122,31,68,0.325820843475103],[122,31,69,0.32493673757704084],[122,31,70,0.324069739459836],[122,31,71,0.32322144823694865],[122,31,72,0.3223933905338628],[122,31,73,0.3215870161910987],[122,31,74,0.3208036939036191],[122,31,75,0.32004470679672575],[122,31,76,0.31931124793836996],[122,31,77,0.31860441578791565],[122,31,78,0.3179252095813375],[122,31,79,0.31727452465286243],[122,32,64,0.3320337600968929],[122,32,65,0.33113754613349805],[122,32,66,0.3302504065882292],[122,32,67,0.3293741883293114],[122,32,68,0.32851068337126205],[122,32,69,0.3276616248567932],[122,32,70,0.32682868297528356],[122,32,71,0.32601346081783933],[122,32,72,0.3252174901689439],[122,32,73,0.32444222723471816],[122,32,74,0.32368904830772416],[122,32,75,0.3229592453684064],[122,32,76,0.32225402162309563],[122,32,77,0.32157448697861235],[122,32,78,0.32092165345345275],[122,32,79,0.3202964305255675],[122,33,64,0.3344623242054517],[122,33,65,0.33360522611720855],[122,33,66,0.33275623156074396],[122,33,67,0.33191718656740277],[122,33,68,0.3310898833782234],[122,33,69,0.330276056450606],[122,33,70,0.32947737840170366],[122,33,71,0.32869545588856297],[122,33,72,0.3279318254250046],[122,33,73,0.32718794913527255],[122,33,74,0.32646521044438487],[122,33,75,0.32576490970527433],[122,33,76,0.32508825976264966],[122,33,77,0.32443638145361176],[122,33,78,0.3238102990450099],[122,33,79,0.32321093560754455],[122,34,64,0.3367770097381613],[122,34,65,0.33595910318399685],[122,34,66,0.33514835490008354],[122,34,67,0.33434660973638985],[122,34,68,0.33355565979686697],[122,34,69,0.3327772404709811],[122,34,70,0.33201302640213687],[122,34,71,0.33126462739301027],[122,34,72,0.3305335842477901],[122,34,73,0.32982136455134975],[122,34,74,0.3291293583852848],[122,34,75,0.3284588739809061],[122,34,76,0.3278111333091163],[122,34,77,0.32718726760720673],[122,34,78,0.326588312842557],[122,34,79,0.3260152051132474],[122,35,64,0.3389751521882951],[122,35,65,0.33819650110246713],[122,35,66,0.33742408940404095],[122,35,67,0.33665976041159473],[122,35,68,0.3359053057221888],[122,35,69,0.33516246126785876],[122,35,70,0.3344329033091714],[122,35,71,0.33371824436586495],[122,35,72,0.3330200290845682],[122,35,73,0.3323397300436228],[122,35,74,0.3316787434949462],[122,35,75,0.3310383850430192],[122,35,76,0.3304198852609325],[122,35,77,0.3298243852435238],[122,35,78,0.3292529320975918],[122,35,79,0.32870647436919515],[122,36,64,0.3410541675694516],[122,36,65,0.34031482368418065],[122,36,66,0.3395808274227277],[122,36,67,0.3388540202170696],[122,36,68,0.3381361927817082],[122,36,69,0.3374290811952106],[122,36,70,0.3367343629189953],[122,36,71,0.33605365275338267],[122,36,72,0.33538849873090615],[122,36,73,0.3347403779469059],[122,36,74,0.33411069232734614],[122,36,75,0.33350076433393666],[122,36,76,0.3329118326064944],[122,36,77,0.33234504754257715],[122,36,78,0.33180146681437467],[122,36,79,0.33128205082286566],[122,37,64,0.34301155397837646],[122,37,65,0.3423115563771264],[122,37,66,0.3416160424819765],[122,37,67,0.34092685147821783],[122,37,68,0.34024577281659046],[122,37,69,0.33957454231995127],[122,37,70,0.33891483822737967],[122,37,71,0.3382682771757356],[122,37,72,0.3376364101186692],[122,37,73,0.3370207181830988],[122,37,74,0.3364226084631077],[122,37,75,0.33584340975132915],[122,37,76,0.3352843682077641],[122,37,77,0.3347466429660585],[122,37,78,0.3342313016772295],[122,37,79,0.3337393159908446],[122,38,64,0.3448448931023371],[122,38,65,0.3441842678032687],[122,38,66,0.3435272908503674],[122,38,67,0.34287579881760133],[122,38,68,0.34223157950553806],[122,38,69,0.3415963680732156],[122,38,70,0.340971843107647],[122,38,71,0.34035962263097735],[122,38,72,0.3397612600452889],[122,38,73,0.3391782400150731],[122,38,74,0.33861197428731976],[122,38,75,0.33806379744929205],[122,38,76,0.3375349626239308],[122,38,77,0.3370266371029191],[122,38,78,0.3365398979173907],[122,38,79,0.3360757273462928],[122,39,64,0.34655185167093583],[122,39,65,0.3459306112400591],[122,39,66,0.3453122130497611],[122,39,67,0.3446984906938156],[122,39,68,0.34409122993132985],[122,39,69,0.34349216484388195],[122,39,70,0.3429029739305006],[122,39,71,0.34232527614050096],[122,39,72,0.34176062684417813],[122,39,73,0.341210513741372],[122,39,74,0.3406763527078572],[122,39,75,0.34015948357962333],[122,39,76,0.3396611658749939],[122,39,77,0.33918257445460903],[122,39,78,0.33872479511926135],[122,39,79,0.3382888201455902],[122,40,64,0.34813018285245734],[122,40,65,0.3475483260460086],[122,40,66,0.3469685353094366],[122,40,67,0.34639264088353405],[122,40,68,0.34582242609010855],[122,40,69,0.34525962351444367],[122,40,70,0.34470591112581805],[122,40,71,0.34416290833609764],[122,40,72,0.34363217199639784],[122,40,73,0.3431151923318333],[122,40,74,0.34261338881430903],[122,40,75,0.34212810597341603],[122,40,76,0.3416606091453799],[122,40,77,0.34121208016008975],[122,40,78,0.340783612966195],[122,40,79,0.3403762091942752],[122,41,64,0.3495777275946873],[122,41,65,0.34903523903025613],[122,41,66,0.3484940709637693],[122,41,67,0.3479560499066524],[122,41,68,0.34742295634334996],[122,41,69,0.3468965209391578],[122,41,70,0.34637842068634067],[122,41,71,0.34587027498854434],[122,41,72,0.34537364168350354],[122,41,73,0.34489001300405897],[122,41,74,0.3444208114774426],[122,41,75,0.3439673857628874],[122,41,76,0.343531006427517],[122,41,77,0.3431128616605384],[122,41,78,0.3427140529257251],[122,41,79,0.3423355905521993],[122,42,64,0.35089241591027487],[122,42,65,0.35038926576620777],[122,42,66,0.3498867217935241],[122,42,67,0.3493866063946128],[122,42,68,0.3488906968125923],[122,42,69,0.34840072136455713],[122,42,70,0.3479183556133399],[122,42,71,0.347445218477803],[122,42,72,0.3469828682816576],[122,42,73,0.3465327987408234],[122,42,74,0.3460964348892902],[122,42,75,0.3456751289435366],[122,42,76,0.3452701561054596],[122,42,77,0.3448827103038406],[122,42,78,0.3445138998743349],[122,42,79,0.3441647431779918],[122,43,64,0.35207226810655257],[122,43,65,0.3516084118491577],[122,43,66,0.35114447931067416],[122,43,67,0.35068228840181326],[122,43,68,0.3502236127168321],[122,43,69,0.3497701777922228],[122,43,70,0.3493236573041631],[122,43,71,0.3488856692047334],[122,43,72,0.34845777179690557],[122,43,73,0.3480414597483109],[122,43,74,0.34763816004375436],[122,43,75,0.34724922787652335],[122,43,76,0.3468759424784513],[122,43,77,0.34651950288875866],[122,43,78,0.3461810236616558],[122,43,79,0.3458615305127218],[122,44,64,0.35311539595986163],[122,44,65,0.3526907740979409],[122,44,66,0.352265425986795],[122,44,67,0.3518411646601573],[122,44,68,0.351419759652637],[122,44,69,0.35100293328387544],[122,44,70,0.35059235688171264],[122,44,71,0.35018964694437316],[122,44,72,0.34979636124167107],[122,44,73,0.3494139948552446],[122,44,74,0.3490439761577874],[122,44,75,0.34868766273132384],[122,44,76,0.34834633722448954],[122,44,77,0.34802120314883667],[122,44,78,0.34771338061415574],[122,44,79,0.3474239020028181],[122,45,64,0.35402000383440624],[122,45,65,0.35363454170064074],[122,45,66,0.353247736425058],[122,45,67,0.3528613957767637],[122,45,68,0.35247728481700547],[122,45,69,0.3520971222088094],[122,45,70,0.3517225764658859],[122,45,71,0.35135526214081364],[122,45,72,0.35099673595250036],[122,45,73,0.350648492852932],[122,45,74,0.3503119620331783],[122,45,75,0.34998850286870026],[122,45,76,0.34967940080391957],[122,45,77,0.3493858631760748],[122,45,78,0.3491090149783498],[122,45,79,0.34884989456228344],[122,46,64,0.3547843897455738],[122,46,65,0.3544379973042879],[122,46,66,0.3540896784757598],[122,46,67,0.3537412353747748],[122,46,68,0.3533944281728994],[122,46,69,0.35305097143360087],[122,46,70,0.35271253038690503],[122,46,71,0.3523807171435993],[122,46,72,0.3520570868489803],[122,46,73,0.3517431337761546],[122,46,74,0.351440287358868],[122,46,75,0.3511499081638981],[122,46,76,0.35087328380298116],[122,46,77,0.3506116247842897],[122,46,78,0.35036606030345113],[122,46,79,0.3501376339741141],[122,47,64,0.3554069463677628],[122,47,65,0.3550995180485924],[122,47,66,0.35478961429542655],[122,47,67,0.354479031177302],[122,47,68,0.354169523557498],[122,47,69,0.3538628014541333],[122,47,70,0.3535605263405794],[122,47,71,0.3532643073856942],[122,47,72,0.3529756976338757],[122,47,73,0.3526961901249458],[122,47,74,0.352427213953838],[122,47,75,0.35217013027012456],[122,47,76,0.3519262282173534],[122,47,77,0.3516967208122123],[122,47,78,0.35148274076350966],[122,47,79,0.3512853362309798],[122,48,64,0.35588616198672685],[122,48,65,0.3556175765437184],[122,48,66,0.3553460013495081],[122,48,67,0.3550732260345238],[122,48,68,0.3548009997331834],[122,48,69,0.35453102746995513],[122,48,70,0.3542649664855195],[122,48,71,0.3540044225030339],[122,48,72,0.35375094593450607],[122,48,73,0.35350602802727704],[122,48,74,0.3532710969505981],[122,48,75,0.3530475138223269],[122,48,76,0.35283656867572144],[122,48,77,0.3526394763663436],[122,48,78,0.35245737241906566],[122,48,79,0.3522913088151847],[122,49,64,0.3562206213963973],[122,49,65,0.35599074179206214],[122,49,66,0.3557573933586175],[122,49,67,0.3555223588938907],[122,49,68,0.3552873813812142],[122,49,69,0.3550541604009233],[122,49,70,0.3548243484822494],[122,49,71,0.35459954739561145],[122,49,72,0.3543813043853047],[122,49,73,0.35417110834259713],[122,49,74,0.3539703859192096],[122,49,75,0.3537804975812115],[122,49,76,0.35360273360330374],[122,49,77,0.3534383100035081],[122,49,78,0.35328836441825073],[122,49,79,0.3531539519178472],[122,50,64,0.3564090067402122],[122,50,65,0.3562176800540623],[122,50,66,0.3560224411883464],[122,50,67,0.35582506571346895],[122,50,68,0.355627290038117],[122,50,69,0.3554308078461612],[122,50,70,0.3552372664742548],[122,50,71,0.3550482632301303],[122,50,72,0.3548653416516],[122,50,73,0.35468998770626003],[122,50,74,0.35452362593188647],[122,50,75,0.3543676155175425],[122,50,76,0.3542232463253793],[122,50,77,0.3540917348531435],[122,50,78,0.35397422013737945],[122,50,79,0.35387175959733774],[122,51,64,0.3564500982969512],[122,51,65,0.35629715565804254],[122,51,66,0.35613989368265875],[122,51,67,0.35598008031842454],[122,51,68,0.3558194449748008],[122,51,69,0.355659674985343],[122,51,70,0.35550241201096816],[122,51,71,0.3553492483842329],[122,51,72,0.3552017233946216],[122,51,73,0.35506131951485176],[122,51,74,0.35492945856818],[122,51,75,0.35480749783673005],[122,51,76,0.3546967261108258],[122,51,77,0.3545983596793386],[122,51,78,0.35451353826104337],[122,51,79,0.3544433208769885],[122,52,64,0.35634277521105917],[122,52,65,0.35622803175406825],[122,52,66,0.35610859844084053],[122,52,67,0.3559862352006261],[122,52,68,0.3558626640183691],[122,52,69,0.35573956542226803],[122,52,70,0.3556185749126667],[122,52,71,0.35550127933227194],[122,52,72,0.355389213177704],[122,52,73,0.3552838548523787],[122,52,74,0.3551866228607132],[122,52,75,0.3550988719436705],[122,52,76,0.3550218891556278],[122,52,77,0.3549568898825791],[122,52,78,0.35490501380166417],[122,52,79,0.3548673207820319],[122,53,64,0.3560860161674778],[122,53,65,0.35600927101183555],[122,53,66,0.3559275025380271],[122,53,67,0.3558424622613865],[122,53,68,0.3557558643166505],[122,53,69,0.3556693819707575],[122,53,70,0.35558464407730295],[122,53,71,0.35550323147265184],[122,53,72,0.35542667331370864],[122,53,73,0.35535644335734695],[122,53,74,0.3552939561814919],[122,53,75,0.3552405633478658],[122,53,76,0.3551975495063872],[122,53,77,0.35516612844122986],[122,53,78,0.3551474390585372],[122,53,79,0.3551425413157969],[122,54,64,0.3556789000109702],[122,54,65,0.3556399362625815],[122,54,66,0.35559565318929576],[122,54,67,0.355547793497333],[122,54,68,0.3554980630454417],[122,54,69,0.35544812738285847],[122,54,70,0.35539960822926453],[122,54,71,0.35535407989673135],[122,54,72,0.3553130656536624],[122,54,73,0.3552780340307275],[122,54,74,0.3552503950687884],[122,54,75,0.35523149650882185],[122,54,76,0.3552226199238309],[122,54,77,0.35522497679275455],[122,54,78,0.3552397045163658],[122,54,79,0.3552678623751677],[122,55,64,0.35512060630994635],[122,55,65,0.3551191910850193],[122,55,66,0.35511219835732655],[122,55,67,0.3551013616294083],[122,55,68,0.35508837805845717],[122,55,69,0.3550749050193558],[122,55,70,0.35506255661005415],[122,55,71,0.3550529000992826],[122,55,72,0.3550474523166028],[122,55,73,0.3550476759847956],[122,55,74,0.35505497599458635],[122,55,75,0.35507069562170845],[122,55,76,0.35509611268630226],[122,55,77,0.35513243565465363],[122,55,78,0.3551807996832671],[122,55,79,0.3552422626052797],[122,56,64,0.35441041586479627],[122,56,65,0.35444630033530655],[122,56,66,0.3544763873036404],[122,56,67,0.3545024006750089],[122,56,68,0.35452602848000075],[122,56,69,0.3545489194626015],[122,56,70,0.3545726796109061],[122,56,71,0.3545988686305189],[122,56,72,0.3546289963606432],[122,56,73,0.3546645191328606],[122,56,74,0.354706836072601],[122,56,75,0.3547572853433014],[122,56,76,0.35481714033325285],[122,56,77,0.35488760578514],[122,56,78,0.3549698138682669],[122,56,79,0.3550648201934764],[122,57,64,0.3535477111607052],[122,57,65,0.353620630621022],[122,57,66,0.3536875710833909],[122,57,67,0.35375024646324293],[122,57,68,0.35381033524033456],[122,57,69,0.3538694770716433],[122,57,70,0.3539292693473176],[122,57,71,0.35399126368967326],[122,57,72,0.3540569623952424],[122,57,73,0.35412781481987],[122,57,74,0.3542052137068632],[122,57,75,0.354290491458189],[122,57,76,0.35438491634872105],[122,57,77,0.35448968868353903],[122,57,78,0.3546059368982754],[122,57,79,0.35473471360251474],[122,58,64,0.352531976764981],[122,58,65,0.35264165071918074],[122,58,66,0.3527452029837368],[122,58,67,0.35284433709332774],[122,58,68,0.35294072155376943],[122,58,69,0.35303598647967105],[122,58,70,0.3531317201755132],[122,58,71,0.3532294656601439],[122,58,72,0.3533307171346923],[122,58,73,0.35343691639389946],[122,58,74,0.3535494491808727],[122,58,75,0.35366964148525387],[122,58,76,0.3537987557848056],[122,58,77,0.3539379872304206],[122,58,78,0.354088459774544],[122,58,79,0.3542512222430204],[122,59,64,0.3513627996688884],[122,59,65,0.35150893193828014],[122,59,66,0.35164883890579],[122,59,67,0.35178421333612697],[122,59,68,0.3519167133394745],[122,59,69,0.3520479590337801],[122,59,70,0.3521795291508456],[122,59,71,0.3523129575862092],[122,59,72,0.35244972989282514],[122,59,73,0.3525912797185331],[122,59,74,0.3527389851873311],[122,59,75,0.35289416522443573],[122,59,76,0.3530580758251395],[122,59,77,0.3532319062674655],[122,59,78,0.35341677526861326],[122,59,79,0.3536137270852041],[122,60,64,0.35003986957395483],[122,60,65,0.35022214842434507],[122,60,66,0.35039813769010775],[122,60,67,0.3505695189787942],[122,60,68,0.35073793958497435],[122,60,69,0.3509050091770244],[122,60,70,0.35107229642809895],[122,60,71,0.35124132559128163],[122,60,72,0.3514135730189151],[122,60,73,0.3515904636261068],[122,60,74,0.3517733672984218],[122,60,75,0.35196359524374726],[122,60,76,0.3521623962883391],[122,60,77,0.35237095311704913],[122,60,78,0.35259037845772834],[122,60,79,0.3528217112098143],[122,61,64,0.34856297912279965],[122,61,65,0.34878107741102093],[122,61,66,0.3489928613857751],[122,61,67,0.3492000011125682],[122,61,68,0.3494041326523787],[122,61,69,0.34960685477279596],[122,61,70,0.3498097256037387],[122,61,71,0.35001425923774004],[122,61,72,0.35022192227480764],[122,61,73,0.3504341303118485],[122,61,74,0.35065224437667575],[122,61,75,0.3508775673065776],[122,61,76,0.35111134007146017],[122,61,77,0.35135473804156403],[122,61,78,0.35160886719974843],[122,61,79,0.35187476029835196],[122,62,64,0.3469320240744701],[122,62,65,0.3471855994136991],[122,62,66,0.347432875463065],[122,62,67,0.3476755103637086],[122,62,68,0.34791512852733036],[122,62,69,0.3481533173715252],[122,62,70,0.34839162400009527],[122,62,71,0.34863155182833183],[122,62,72,0.34887455715327054],[122,62,73,0.3491220456689096],[122,62,74,0.34937536892641363],[122,62,75,0.34963582073927535],[122,62,76,0.34990463353345314],[122,62,77,0.350182974642481],[122,62,78,0.3504719425475466],[122,62,79,0.35077256306254534],[122,63,64,0.3451470034242373],[122,63,65,0.34543569836762905],[122,63,66,0.3457181489696287],[122,63,67,0.3459960010675243],[122,63,68,0.34627086701063137],[122,63,69,0.3465443224196548],[122,63,70,0.3468179028914407],[122,63,71,0.3470931006491017],[122,63,72,0.34737136113752454],[122,63,73,0.3476540795642461],[122,63,74,0.3479425973857248],[122,63,75,0.3482381987389747],[122,63,76,0.3485421068185838],[122,63,77,0.34885548019911233],[122,63,78,0.3491794091028656],[122,63,79,0.3495149116130505],[122,64,64,0.3432080194679328],[122,64,65,0.34353146171009585],[122,64,66,0.34384875463029513],[122,64,67,0.3441615313855738],[122,64,68,0.34447139185261566],[122,64,69,0.3447798994109612],[122,64,70,0.34508857767202716],[122,64,71,0.3453989071539164],[122,64,72,0.34571232190202184],[122,64,73,0.34603020605541557],[122,64,74,0.3463538903590482],[122,64,75,0.34668464862172377],[122,64,76,0.3470236941198749],[122,64,77,0.3473721759471324],[122,64,78,0.3477311753096836],[122,64,79,0.34810170176742966],[122,65,64,0.34111527781075796],[122,65,65,0.3414730804065968],[122,65,66,0.34182486889041475],[122,65,67,0.34217226336596984],[122,65,68,0.34251685083021133],[122,65,69,0.34286018198016216],[122,65,70,0.34320376796603014],[122,65,71,0.3435490770905283],[122,65,72,0.3438975314544145],[122,65,73,0.3442505035482344],[122,65,74,0.3446093127903006],[122,65,75,0.3449752220108663],[122,65,76,0.3453494338825222],[122,65,77,0.34573308729680974],[122,65,78,0.3461272536870451],[122,65,79,0.3465329332973642],[122,66,64,0.33886908732062737],[122,66,65,0.3392608489210767],[122,66,66,0.3396467719028038],[122,66,67,0.34002846294684985],[122,66,68,0.34040749576674567],[122,66,69,0.34078540793886725],[122,66,70,0.3411636976794479],[122,66,71,0.3415438205682303],[122,66,72,0.3419271862187657],[122,66,73,0.34231515489534636],[122,66,74,0.3427090340766024],[122,66,75,0.34311007496572304],[122,66,76,0.3435194689473298],[122,66,77,0.34393834399099493],[122,66,78,0.34436776100139993],[122,66,79,0.34480871011514436],[122,67,64,0.33646986002595114],[122,67,65,0.3368951651301294],[122,67,66,0.3373148474582016],[122,67,67,0.3377304999029194],[122,67,68,0.33814368249440674],[122,67,69,0.3385559192537819],[122,67,70,0.33896869499387483],[122,67,71,0.3393834520670178],[122,67,72,0.3398015870599226],[122,67,73,0.340224447435623],[122,67,74,0.3406533281225221],[122,67,75,0.34108946805049645],[122,67,76,0.3415340466340907],[122,67,77,0.3419881802027913],[122,67,78,0.3424529183783793],[122,67,79,0.3429292403993663],[122,68,64,0.33391811095796814],[122,68,65,0.33437653018127483],[122,68,66,0.3348295828593452],[122,68,67,0.33527884773517713],[122,68,68,0.33572587075946414],[122,68,69,0.3361721619672712],[122,68,70,0.33661919230224746],[122,68,71,0.33706839038835873],[122,68,72,0.33752113924914506],[122,68,73,0.3379787729744891],[122,68,74,0.3384425733349322],[122,68,75,0.33891376634349024],[122,68,76,0.3393935187650007],[122,68,77,0.33988293457299584],[122,68,78,0.3403830513540938],[122,68,79,0.3408948366599184],[122,69,64,0.33121445793758697],[122,69,65,0.33170554829526894],[122,69,66,0.3321915687386219],[122,69,67,0.3326740835037775],[122,69,68,0.33315462407020946],[122,69,69,0.3336346860602383],[122,69,70,0.3341157260865249],[122,69,71,0.3345991585475308],[122,69,72,0.33508635237095696],[122,69,73,0.33557862770513863],[122,69,74,0.33607725255844234],[122,69,75,0.3365834393866076],[122,69,76,0.33709834162807306],[122,69,77,0.33762305018727623],[122,69,78,0.3381585898659215],[122,69,79,0.33870591574222797],[122,70,64,0.32835962130665836],[122,70,65,0.3288829265123725],[122,70,66,0.32940149881922454],[122,70,67,0.32991688760396143],[122,70,68,0.33043060948754543],[122,70,69,0.3309441452572555],[122,70,70,0.33145893673723426],[122,70,71,0.3319763836074596],[122,70,72,0.33249784017114836],[122,70,73,0.33302461207057377],[122,70,74,0.33355795295134183],[122,70,75,0.33409906107506676],[122,70,76,0.3346490758804895],[122,70,77,0.3352090744930229],[122,70,78,0.3357800681827248],[122,70,79,0.33636299877070475],[122,71,64,0.3253544236038104],[122,71,65,0.3259094743827069],[122,71,66,0.32646016961993785],[122,71,67,0.3270080434851781],[122,71,68,0.3275545973583457],[122,71,69,0.32810129677405875],[122,71,70,0.3286495683150011],[122,71,71,0.3292007964541749],[122,71,72,0.32975632034604885],[122,71,73,0.33031743056658114],[122,71,74,0.3308853658021661],[122,71,75,0.3314613094874403],[122,71,76,0.3320463863919958],[122,71,77,0.3326416591559825],[122,71,78,0.3332481247746],[122,71,79,0.33386671103148724],[122,72,64,0.32219978918479064],[122,72,65,0.3227861036006433],[122,72,66,0.32336848010350183],[122,72,67,0.32394843731334655],[122,72,68,0.3245274609915353],[122,72,69,0.3251070010073651],[122,72,70,0.32568846825401376],[122,72,71,0.3262732315138353],[122,72,72,0.3268626142730199],[122,72,73,0.3274578914855987],[122,72,74,0.32806028628684003],[122,72,75,0.3286709666559757],[122,72,76,0.3292910420282996],[122,72,77,0.3299215598566283],[122,72,78,0.33056350212211827],[122,72,79,0.3312177817944485],[122,73,64,0.31889674378722943],[122,73,65,0.31951382758313795],[122,73,66,0.3201274312684664],[122,73,67,0.3207390575761718],[122,73,68,0.3213501762768059],[122,73,69,0.32196222116692264],[122,73,70,0.32257658700734204],[122,73,71,0.3231946264112413],[122,73,72,0.3238176466820889],[122,73,73,0.3244469066013924],[122,73,74,0.32508361316631973],[122,73,75,0.32572891827711903],[122,73,76,0.3263839153743906],[122,73,77,0.3270496360261933],[122,73,78,0.3277270464649816],[122,73,79,0.328417044074387],[122,74,64,0.3154464140399766],[122,74,65,0.31609376099216807],[122,74,66,0.3167381256846885],[122,74,67,0.31738099463166475],[122,74,68,0.3180238212461162],[122,74,69,0.31866802284994333],[122,74,70,0.31931497763425026],[122,74,71,0.3199660215699791],[122,74,72,0.32062244526886446],[122,74,73,0.32128549079468494],[122,74,74,0.32195634842486837],[122,74,75,0.32263615336237594],[122,74,76,0.32332598239792],[122,74,77,0.3240268505224956],[122,74,78,0.32473970749022607],[122,74,79,0.32546543433153174],[122,75,64,0.3118500269169455],[122,75,65,0.3125271192011983],[122,75,66,0.31320176697240687],[122,75,67,0.3138754401998014],[122,75,68,0.31454957557791097],[122,75,69,0.31522557355785286],[122,75,70,0.31590479532944804],[122,75,71,0.3165885597541316],[122,75,72,0.31727814024867185],[122,75,73,0.31797476161967153],[122,75,74,0.31867959684891056],[122,75,75,0.31939376382945395],[122,75,76,0.3201183220525785],[122,75,77,0.32085426924550253],[122,75,78,0.3216025379599138],[122,75,79,0.32236399211130773],[122,76,64,0.30810890913536615],[122,76,65,0.3088152177055849],[122,76,66,0.30951965922479474],[122,76,67,0.3102236867972254],[122,76,68,0.310928720043964],[122,76,69,0.31163614215526514],[122,76,70,0.31234729689417917],[122,76,71,0.31306348555146724],[122,76,72,0.313785963851818],[122,76,73,0.31451593881133694],[122,76,74,0.3152545655463722],[122,76,75,0.3160029440335942],[122,76,76,0.3167621158213889],[122,76,77,0.3175330606925447],[122,76,78,0.3183166932782302],[122,76,79,0.31911385962327454],[122,77,64,0.3042244864986241],[122,77,65,0.30495947147708913],[122,77,66,0.30569320637416997],[122,77,67,0.30642712711516573],[122,77,68,0.30716263589901777],[122,77,69,0.3079010982713495],[122,77,70,0.3086438401493211],[122,77,71,0.30939214479827004],[122,77,72,0.3101472497601486],[122,77,73,0.3109103437337332],[122,77,74,0.3116825634066672],[122,77,75,0.3124649902392549],[122,77,76,0.31325864720006635],[122,77,77,0.3140644954533344],[122,77,78,0.3148834309981382],[122,77,79,0.31571628125938966],[122,78,64,0.30019828318360575],[122,78,65,0.3009613942624235],[122,78,66,0.3017239115017789],[122,78,67,0.30248725334049387],[122,78,68,0.30325280421314116],[122,78,69,0.30402191164351494],[122,78,70,0.30479588329041785],[122,78,71,0.30557598394573837],[122,78,72,0.30636343248482745],[122,78,73,0.30715939876914766],[122,78,74,0.30796500050126185],[122,78,75,0.30878130003207316],[122,78,76,0.3096093011203794],[122,78,77,0.3104499456447214],[122,78,78,0.31130411026752314],[122,78,79,0.31217260305153405],[122,79,64,0.2960319209724428],[122,79,65,0.29682259782572273],[122,79,66,0.2976133760910499],[122,79,67,0.29840565641981176],[122,79,68,0.2992008051467011],[122,79,69,0.3000001514033084],[122,79,70,0.3008049841845427],[122,79,71,0.3016165493678489],[122,79,72,0.3024360466852311],[122,79,73,0.30326462664805776],[122,79,74,0.3041033874247132],[122,79,75,0.3049533716710081],[122,79,76,0.3058155633134123],[122,79,77,0.3066908842850895],[122,79,78,0.3075801912147305],[122,79,79,0.3084842720681973],[122,80,64,0.29172711842885163],[122,80,65,0.29254479113513654],[122,80,66,0.2933632992245133],[122,80,67,0.29418402526676923],[122,80,68,0.2950083171681408],[122,80,69,0.2958374853047163],[122,80,70,0.2966727996091819],[122,80,71,0.2975154866108734],[122,80,72,0.2983667264291504],[122,80,73,0.29922764972006044],[122,80,74,0.3000993345763667],[122,80,75,0.3009828033808438],[122,80,76,0.30187901961290853],[122,80,77,0.30278888460856734],[122,80,78,0.30371323427367214],[122,80,79,0.30465283575050217],[122,81,64,0.28728569001898097],[122,81,65,0.28812977949345403],[122,81,66,0.2889754767242962],[122,81,67,0.2898241459125164],[122,81,68,0.2906771162144758],[122,81,69,0.2915356788947839],[122,81,70,0.2924010844330505],[122,81,71,0.29327453958446426],[122,81,72,0.2941572043942095],[122,81,73,0.29505018916568904],[122,81,74,0.29595455138263016],[122,81,75,0.2968712925849727],[122,81,76,0.2978013551986127],[122,81,77,0.2987456193189766],[122,81,78,0.2997048994484228],[122,81,79,0.300679941187486],[122,82,64,0.2827095451766464],[122,82,65,0.2835794636126425],[122,82,66,0.28445180023607675],[122,82,67,0.2853279005991798],[122,82,68,0.28620907479439506],[122,82,69,0.28709659462643666],[122,82,70,0.2879916907387294],[122,82,71,0.2888955496941944],[122,82,72,0.2898093110103947],[122,82,73,0.2907340641490093],[122,82,74,0.2916708454597107],[122,82,75,0.2926206350783481],[122,82,76,0.29358435377950487],[122,82,77,0.29456285978341],[122,82,78,0.2955569455171989],[122,82,79,0.2965673343305367],[122,83,64,0.27800068731317207],[122,83,65,0.27889583863251877],[122,83,66,0.27979425625671334],[122,83,67,0.2806972668165767],[122,83,68,0.28160616103417657],[122,83,69,0.2825221909137162],[122,83,70,0.28344656688733155],[122,83,71,0.2843804549157604],[122,83,72,0.28532497354389635],[122,83,73,0.2862811909111973],[122,83,74,0.287250121717024],[122,83,75,0.28823272414080875],[122,83,76,0.2892298967171245],[122,83,77,0.2902424751656347],[122,83,78,0.2912712291759166],[122,83,79,0.2923168591471741],[122,84,64,0.2731612127717392],[122,84,65,0.27408099308345235],[122,84,66,0.27500492510545116],[122,84,67,0.2759343162820658],[122,84,68,0.27687043766632446],[122,84,69,0.2778145211293349],[122,84,70,0.27876775652510344],[122,84,71,0.27973128881075515],[122,84,72,0.2807062151221717],[122,84,73,0.28169358180500825],[122,84,74,0.2826943814011767],[122,84,75,0.28370954959068234],[122,84,76,0.28473996208889607],[122,84,77,0.285786431499234],[122,84,78,0.28684970412124017],[122,84,79,0.28793045671409206],[122,85,64,0.26819330972611144],[122,85,65,0.26913710779297245],[122,85,66,0.2700859798385761],[122,85,67,0.2710412138634097],[122,85,68,0.27200406096079566],[122,85,69,0.2729757325444203],[122,85,70,0.27395739753183324],[122,85,71,0.2749501794838833],[122,85,72,0.27595515370010376],[122,85,73,0.27697334427001113],[122,85,74,0.2780057210804039],[122,85,75,0.27905319677854823],[122,85,76,0.2801166236913333],[122,85,77,0.2811967907003651],[122,85,78,0.28229442007300193],[122,85,79,0.28341016424934073],[122,86,64,0.2630992570239785],[122,86,65,0.26406645473651685],[122,86,66,0.26503968510775466],[122,86,67,0.2660202164448864],[122,86,68,0.26700927959905696],[122,86,69,0.26800806521068615],[122,86,70,0.2690177209113027],[122,86,71,0.2700393484818515],[122,86,72,0.2710740009674868],[122,86,73,0.2721226797488172],[122,86,74,0.27318633156968697],[122,86,75,0.274265845521383],[122,86,76,0.2753620499833451],[122,86,77,0.27647570952035705],[122,86,78,0.27760752173621195],[122,86,79,0.2787581140838683],[122,87,64,0.2578814229748053],[122,87,65,0.2588713958322144],[122,87,66,0.2598683959619504],[122,87,67,0.2608736717365373],[122,87,68,0.26188843349085833],[122,87,69,0.26291385078492036],[122,87,70,0.26395104962367094],[122,87,71,0.2650011096338267],[122,87,72,0.2660650611977306],[122,87,73,0.26714388254419846],[122,87,74,0.26823849679644723],[122,87,75,0.269349768976984],[122,87,76,0.27047850296954323],[122,87,77,0.2716254384380433],[122,87,78,0.272791247702558],[122,87,79,0.27397653257232096],[122,88,64,0.2525422640820491],[122,88,65,0.2535543816795596],[122,88,66,0.254574556592779],[122,88,67,0.25560401702641844],[122,88,68,0.2566439525335905],[122,88,69,0.25769551129565466],[122,88,70,0.2587597973596573],[122,88,71,0.25983786783332863],[122,88,72,0.26093073003765144],[122,88,73,0.26203933861696294],[122,88,74,0.2631645926066823],[122,88,75,0.2643073324585432],[122,88,76,0.2654683370234177],[122,88,77,0.26664832049170273],[122,88,78,0.26784792929126716],[122,88,79,0.2690677389429737],[122,89,64,0.24708432372001982],[122,89,65,0.2481179502422566],[122,89,66,0.24916069902357416],[122,89,67,0.2502137778761224],[122,89,68,0.2512783553144946],[122,89,69,0.2523555578522848],[122,89,70,0.25344646725679143],[122,89,71,0.2545521177618215],[122,89,72,0.2556734932386151],[122,89,73,0.2568115243248479],[122,89,74,0.2579670855118089],[122,89,75,0.2591409921896277],[122,89,76,0.2603339976506398],[122,89,77,0.2615467900508634],[122,89,78,0.2627799893295814],[122,89,79,0.2640341440870458],[122,90,64,0.24151023075515202],[122,90,65,0.24256472547500035],[122,90,66,0.2436294417419357],[122,90,67,0.24470556675934824],[122,90,68,0.24579424775549766],[122,90,69,0.24689658929641586],[122,90,70,0.2480136505575043],[122,90,71,0.24914644255378285],[122,90,72,0.25029592532880696],[122,90,73,0.25146300510221353],[122,90,74,0.2526485313759914],[122,90,75,0.25385329399934986],[122,90,76,0.25507802019227666],[122,90,77,0.2563233715277549],[122,90,78,0.2575899408726364],[122,90,79,0.258878249287186],[122,91,64,0.23582269811187018],[122,91,65,0.23689741589437688],[122,91,66,0.23798348827594173],[122,91,67,0.23908208164369327],[122,91,68,0.24019432170085317],[122,91,69,0.2413212907956097],[122,91,70,0.24246402520923818],[122,91,71,0.2436235124034238],[122,91,72,0.24480068822680728],[122,91,73,0.24599643408070793],[122,91,74,0.24721157404412747],[122,91,75,0.2484468719579],[122,91,76,0.24970302846808629],[122,91,77,0.25098067802857815],[122,91,78,0.2522803858629103],[122,91,79,0.2536026448852979],[122,92,64,0.23002452128279446],[122,92,65,0.23111881309362992],[122,92,66,0.23222562571376967],[122,92,67,0.23334610451541973],[122,92,68,0.23448135344733542],[122,92,69,0.23563243237928724],[122,92,70,0.2368003544063276],[122,92,71,0.23798608311281694],[122,92,72,0.23919052979622452],[122,92,73,0.24041455065066197],[122,92,74,0.24165894391025233],[122,92,75,0.24292444695219945],[122,92,76,0.244211733359656],[122,92,77,0.24552140994435517],[122,92,78,0.24685401372900634],[122,92,79,0.24821000888946904],[122,93,64,0.22411857678358715],[122,93,65,0.22523179020159362],[122,93,66,0.22635872316702807],[122,93,67,0.2275004998474932],[122,93,68,0.2286582022172871],[122,93,69,0.22983286741707915],[122,93,70,0.2310254850739461],[122,93,71,0.23223699458172187],[122,93,72,0.2334682823416795],[122,93,73,0.23472017896350206],[122,93,74,0.23599345642664604],[122,93,75,0.2372888252019616],[122,93,76,0.23860693133366645],[122,93,77,0.23994835348164256],[122,93,78,0.24131359992405105],[122,93,79,0.24270310552028318],[122,94,64,0.21810782055230357],[122,94,65,0.21923930028565541],[122,94,66,0.22038573017766275],[122,94,67,0.22154821301075703],[122,94,68,0.22272780857438118],[122,94,69,0.22392553103949253],[122,94,70,0.2251423462939841],[122,94,71,0.22637916923897722],[122,94,72,0.22763686104600672],[122,94,73,0.22891622637505088],[122,94,74,0.23021801055351537],[122,94,75,0.231542896716029],[122,94,76,0.23289150290515448],[122,94,77,0.23426437913297848],[122,94,78,0.23566200440357932],[122,94,79,0.23708478369638886],[122,95,64,0.21199528629309075],[122,95,65,0.21314437469859263],[122,95,66,0.2143096750682807],[122,95,67,0.21549226862808746],[122,95,68,0.21669319278194743],[122,95,69,0.21791343850073924],[122,95,70,0.2191539476727054],[122,95,71,0.22041561041530594],[122,95,72,0.22169926234852155],[122,95,73,0.2230056818295636],[122,95,74,0.2243355871490978],[122,95,75,0.22568963368883932],[122,95,76,0.22706841104062386],[122,95,77,0.22847244008691686],[122,95,78,0.22990217004276103],[122,95,79,0.23135797545917908],[122,96,64,0.20578408376453386],[122,96,65,0.20695012136958235],[122,96,66,0.20813366323619098],[122,96,67,0.20933576887182836],[122,96,68,0.21055745310415597],[122,96,69,0.2117996834840189],[122,96,70,0.21306337765047628],[122,96,71,0.2143494006578266],[122,96,72,0.21565856226464564],[122,96,73,0.2169916141847899],[122,96,74,0.2183492473004784],[122,96,75,0.21973208883730527],[122,96,76,0.22114069950129067],[122,96,77,0.22257557057793087],[122,96,78,0.22403712099324885],[122,96,79,0.22552569433686104],[122,97,64,0.19947739701250833],[122,97,65,0.20065972303924262],[122,97,66,0.2018608753910207],[122,97,67,0.20308189170436242],[122,97,68,0.20432376404991914],[122,97,69,0.20558743634912086],[122,97,70,0.20687380175342662],[122,97,71,0.20818369998613162],[122,97,72,0.20951791464674968],[122,97,73,0.2108771704779242],[122,97,74,0.21226213059498084],[122,97,75,0.21367339367797294],[122,97,76,0.21511149112632705],[122,97,77,0.21657688417605325],[122,97,78,0.2180699609795157],[122,97,79,0.2195910336477836],[122,98,64,0.1930784825473708],[122,98,65,0.19427643543853823],[122,98,66,0.1954945657357411],[122,98,67,0.19673388906165562],[122,98,68,0.19799537455934652],[122,98,69,0.19927994232217638],[122,98,70,0.20058846078688175],[122,98,71,0.2019217440897697],[122,98,72,0.2032805493860541],[122,98,73,0.20466557413228292],[122,98,74,0.20607745333197297],[122,98,75,0.20751675674429815],[122,98,76,0.20898398605594476],[122,98,77,0.21047957201609296],[122,98,78,0.21200387153452283],[122,98,79,0.2135571647428658],[122,99,64,0.18659066746580621],[122,99,65,0.18780358541186848],[122,99,66,0.18903806009141744],[122,99,67,0.19029508498008718],[122,99,68,0.191575606133067],[122,99,69,0.192880519627877],[122,99,70,0.1942106689708737],[122,99,71,0.195566842467443],[122,99,72,0.19694977055589524],[122,99,73,0.19836012310501644],[122,99,74,0.19979850667539173],[122,99,75,0.20126546174434717],[122,99,76,0.20276145989462163],[122,99,77,0.20428690096673074],[122,99,78,0.2058421101750197],[122,99,79,0.20742733518742507],[122,100,64,0.18001734751718051],[122,100,65,0.1812445689841859],[122,100,66,0.18249475396553555],[122,100,67,0.18376887366641842],[122,100,68,0.18506785090426903],[122,100,69,0.18639255756400824],[122,100,70,0.18774381201758616],[122,100,71,0.1891223765077713],[122,100,72,0.19052895449621055],[122,100,73,0.1919641879757082],[122,100,74,0.19342865474684418],[122,100,75,0.19492286565877442],[122,100,76,0.1964472618143261],[122,100,77,0.19800221173935084],[122,100,78,0.19958800851633135],[122,100,79,0.2012048668822627],[122,101,64,0.17336198511422402],[122,101,65,0.17460284937197168],[122,101,66,0.17586811056372847],[122,101,67,0.17715871751072576],[122,101,68,0.1784755696532846],[122,101,69,0.1798195145181286],[122,101,70,0.1811913451505605],[122,101,71,0.1825917975114521],[122,101,72,0.18402154783907182],[122,101,73,0.18548120997569362],[122,101,74,0.1869713326591136],[122,101,75,0.18849239677891144],[122,101,76,0.190044812597574],[122,101,77,0.19162891693644096],[122,101,78,0.1932449703264701],[122,101,79,0.194893154123842],[122,102,64,0.16662810728837962],[122,102,65,0.16788195493840197],[122,102,66,0.1691616587452382],[122,102,67,0.1704681450426268],[122,102,68,0.17180228976505102],[122,102,69,0.17316491592672162],[122,102,70,0.17455679106599076],[122,102,71,0.17597862465514374],[122,102,72,0.17743106547559334],[122,102,73,0.17891469895842133],[122,102,74,0.18043004449039407],[122,102,75,0.1819775526852867],[122,102,76,0.1835576026206358],[122,102,77,0.18517049903988042],[122,102,78,0.18681646951988584],[122,102,79,0.18849566160387504],[122,103,64,0.15981930358965474],[122,103,65,0.16108547709254173],[122,103,66,0.16237899092194902],[122,103,67,0.163700748830646],[122,103,68,0.16505160312928635],[122,103,69,0.1664323521766617],[122,103,70,0.16784373783595052],[122,103,71,0.1692864428969142],[122,103,72,0.17076108846405713],[122,103,73,0.1722682313107014],[122,103,74,0.17380836119909943],[122,103,75,0.17538189816642258],[122,103,76,0.17698918977674183],[122,103,77,0.1786305083389615],[122,103,78,0.18030604809070405],[122,103,79,0.1820159223481645],[122,104,64,0.15293922393079923],[122,104,65,0.15421706813239344],[122,104,66,0.15552376090081865],[122,104,67,0.15686018332453605],[122,104,68,0.15822716398320746],[122,104,69,0.15962547644882036],[122,104,70,0.16105583675337515],[122,104,71,0.16251890082308063],[122,104,72,0.16401526187908205],[122,104,73,0.1655454478046664],[122,104,74,0.16710991847907186],[122,104,75,0.16870906307773825],[122,104,76,0.17034319733911246],[122,104,77,0.17201256079797544],[122,104,78,0.1737173139852814],[122,104,79,0.1754575355945347],[122,105,64,0.14599157637615334],[122,105,65,0.1472804390321386],[122,105,66,0.1485996816700491],[122,105,67,0.14995016264090288],[122,105,68,0.1513326866971263],[122,105,69,0.15274800250415155],[122,105,70,0.15419680011913967],[122,105,71,0.15567970843677764],[122,105,72,0.1571972926021718],[122,105,73,0.15875005139078163],[122,105,74,0.1603384145555256],[122,105,75,0.16196274014088757],[122,105,76,0.16362331176414685],[122,105,77,0.16532033586369066],[122,105,78,0.1670539389144064],[122,105,79,0.16882416461017347],[122,106,64,0.138980124874999],[122,106,65,0.14027935717340967],[122,106,66,0.14161052312882783],[122,106,67,0.14297445829196298],[122,106,68,0.14437194350276417],[122,106,69,0.1458037024120895],[122,106,70,0.14727039897106659],[122,106,71,0.1487726348880904],[122,106,72,0.15031094705348041],[122,106,73,0.1518858049317418],[122,106,74,0.15349760792156308],[122,106,75,0.1551466826833766],[122,106,76,0.15683328043460687],[122,106,77,0.15855757421256533],[122,106,78,0.16031965610498733],[122,106,79,0.16211953444823296],[122,107,64,0.1319086869392322],[122,107,65,0.1332176440204088],[122,107,66,0.1345601097604634],[122,107,67,0.13593689685725868],[122,107,68,0.1373487621641009],[122,107,69,0.13879640422108325],[122,107,70,0.14028046075468603],[122,107,71,0.14180150614557402],[122,107,72,0.14336004886461673],[122,107,73,0.14495652887707516],[122,107,74,0.14659131501508682],[122,107,75,0.14826470231827782],[122,107,76,0.14997690934262342],[122,107,77,0.1517280754375186],[122,107,78,0.15351825799105245],[122,107,79,0.15534742964351095],[122,108,64,0.12478113126571067],[122,108,65,0.1260991727392271],[122,108,66,0.12745231824926384],[122,108,67,0.1288413575986766],[122,108,68,0.13026702359110826],[122,108,69,0.13172998957161286],[122,108,70,0.13323086693609454],[122,108,71,0.13477020260950667],[122,108,72,0.1363484764928336],[122,108,73,0.13796609887880218],[122,108,74,0.1396234078364511],[122,108,75,0.14132066656438924],[122,108,76,0.14305806071286375],[122,108,77,0.1448356956745988],[122,108,78,0.14665359384440063],[122,108,79,0.14851169184755053],[122,109,64,0.11760137530310538],[122,109,65,0.11892786576119319],[122,109,66,0.12029107504098907],[122,109,67,0.12169177001860249],[122,109,68,0.1231306593962021],[122,109,69,0.1246083912515224],[122,109,70,0.1261255505567468],[122,109,71,0.12768265666670753],[122,109,72,0.12928016077643362],[122,109,73,0.13091844334798064],[122,109,74,0.1325978115066868],[122,109,75,0.13431849640666949],[122,109,76,0.13608065056569674],[122,109,77,0.13788434516938808],[122,109,78,0.13972956734473946],[122,109,79,0.1416162174029985],[122,110,64,0.11037338276306641],[122,110,65,0.11170769229006333],[122,110,66,0.1130803538466878],[122,110,67,0.11449211136102516],[122,110,68,0.11594364939322171],[122,110,69,0.11743559069348014],[122,110,70,0.1189684937299898],[122,110,71,0.12054285018673572],[122,110,72,0.12215908243120749],[122,110,73,0.12381754095195374],[122,110,74,0.125518501766116],[122,110,75,0.1272621637967662],[122,110,76,0.12904864622017315],[122,110,77,0.13087798578295745],[122,110,78,0.1327501340891296],[122,110,79,0.13466495485703633],[122,111,64,0.10310116107607159],[122,111,65,0.10444266575341787],[122,111,66,0.10582417309028602],[122,111,67,0.10724640405595232],[122,111,68,0.10871001903930294],[122,111,69,0.11021561541492791],[122,111,70,0.111763725079707],[122,111,71,0.11335481195982827],[122,111,72,0.11498926948826599],[122,111,73,0.11666741805265618],[122,111,74,0.11838950241371177],[122,111,75,0.12015568909399466],[122,111,76,0.1219660637371735],[122,111,77,0.1238206284377274],[122,111,78,0.12571929904108686],[122,111,79,0.12766190241424036],[122,112,64,0.09578875879177506],[122,112,65,0.09713684119808513],[122,112,66,0.0985265932997465],[122,112,67,0.09995871310695936],[122,112,68,0.10143383681946366],[122,112,69,0.10295253640034607],[122,112,70,0.10451531712088813],[122,112,71,0.10612261507640236],[122,112,72,0.10777479467308337],[122,112,73,0.1094721460858078],[122,112,74,0.11121488268703056],[122,112,75,0.11300313844658982],[122,112,76,0.11483696530255294],[122,112,77,0.11671633050306118],[122,112,78,0.1186411139191677],[122,112,79,0.12061110532869257],[122,113,64,0.08844026292367096],[122,113,65,0.08979431262940457],[122,113,66,0.09119171444161239],[122,113,67,0.09263314342168527],[122,113,68,0.09411921157371866],[122,113,69,0.09565046542564254],[122,113,70,0.09722738358194438],[122,113,71,0.09885037424793469],[122,113,72,0.10051977272557416],[122,113,73,0.10223583888080512],[122,113,74,0.1039987545825306],[122,113,75,0.105808621113051],[122,113,76,0.10766545655009613],[122,113,77,0.10956919312040697],[122,113,78,0.11151967452486095],[122,113,79,0.11351665323516813],[122,114,64,0.0810597962384606],[122,114,65,0.08241921029472071],[122,114,66,0.08382367319932288],[122,114,67,0.08527383708566438],[122,114,68,0.08677028976710882],[122,114,69,0.08831355232505506],[122,114,70,0.08990407666915262],[122,114,71,0.09154224306960479],[122,114,72,0.09322835766158327],[122,114,73,0.09496264992169812],[122,114,74,0.0967452701166609],[122,114,75,0.09857628672395824],[122,114,76,0.10045568382466707],[122,114,77,0.10238335846836893],[122,114,78,0.10435911801015846],[122,114,79,0.10638267741976959],[122,115,64,0.07365151448979568],[122,115,65,0.07501569791077778],[122,115,66,0.0764266401949773],[122,115,67,0.07788497057916605],[122,115,68,0.07939125270231878],[122,115,69,0.08094598220024335],[122,115,70,0.08254958427290393],[122,115,71,0.08420241122437722],[122,115,72,0.08590473997546838],[122,115,73,0.08765676954892548],[122,115,74,0.08945861852739656],[122,115,75,0.09131032248394066],[122,115,76,0.09321183138522882],[122,115,77,0.09516300696738855],[122,115,78,0.09716362008448948],[122,115,79,0.09921334802969434],[122,116,64,0.06621960359664819],[122,116,65,0.06758796983526627],[122,116,66,0.06900481715479273],[122,116,67,0.07047075193729191],[122,116,68,0.07198631367513497],[122,116,69,0.07355197257181628],[122,116,70,0.0751681271160044],[122,116,71,0.07683510162877033],[122,116,72,0.0785531437840189],[122,116,73,0.08032242210206014],[122,116,74,0.08214302341646951],[122,116,75,0.08401495031404238],[122,116,76,0.08593811854798222],[122,116,77,0.08791235442427775],[122,116,78,0.08993739216126134],[122,116,79,0.09201287122237761],[122,117,64,0.05876827676596508],[122,117,65,0.06014024818218178],[122,117,66,0.06156243401791878],[122,117,67,0.0630354178529915],[122,117,68,0.06455971507240016],[122,117,69,0.06613577047295699],[122,117,70,0.06776395584369221],[122,117,71,0.06944456751997485],[122,117,72,0.07117782391137834],[122,117,73,0.07296386300322433],[122,117,74,0.07480273983195684],[122,117,75,0.07669442393414921],[122,117,76,0.07863879676928653],[122,117,77,0.08063564911627547],[122,117,78,0.082684678443675],[122,117,79,0.08478548625367993],[122,118,64,0.05130177156001681],[122,118,65,0.05267677988140146],[122,118,66,0.05410374598901302],[122,118,67,0.05558323072340321],[122,118,68,0.05711572541287413],[122,118,69,0.05870164948555118],[122,118,70,0.06034134805577185],[122,118,71,0.062035089484724804],[122,118,72,0.06378306291537061],[122,118,73,0.06558537578157864],[122,118,74,0.06744205129162772],[122,118,75,0.06935302588588016],[122,118,76,0.07131814666876385],[122,118,77,0.0733371688150205],[122,118,78,0.07540975295021157],[122,118,79,0.07753546250551197],[122,119,64,0.043824346908240885],[122,119,65,0.045201833682282366],[122,119,66,0.046633030534384334],[122,119,67,0.04811847563932187],[122,119,68,0.049658636330801975],[122,119,69,0.05125390671862218],[122,119,70,0.0529046052806732],[122,119,71,0.05461097242972601],[122,119,72,0.05637316805503545],[122,119,73,0.05819126903868921],[122,119,74,0.060065266746857804],[122,119,75,0.061995064495746544],[122,119,76,0.06398047499239135],[122,119,77,0.06602121775025227],[122,119,78,0.06811691647959811],[122,119,79,0.07026709645271112],[122,120,64,0.03634028006339807],[122,120,65,0.037719697101097294],[122,120,66,0.03915458432151653],[122,120,67,0.04064545731761071],[122,120,68,0.04219275950200779],[122,120,69,0.04379685972889008],[122,120,70,0.04545804989124952],[122,120,71,0.04717654249346015],[122,120,72,0.04895246819919025],[122,120,73,0.05078587335459289],[122,120,74,0.052676717486925484],[122,120,75,0.054624870778399504],[122,120,76,0.056630111515404535],[122,120,77,0.05869212351305775],[122,120,78,0.06081049351507406],[122,120,79,0.06298470856898558],[122,121,64,0.028853863502415256],[122,121,65,0.030234673312684424],[122,121,66,0.031672720102348395],[122,121,67,0.03316849697693408],[122,121,68,0.03472242351288801],[122,121,69,0.03633484338382709],[122,121,70,0.038006021962691205],[122,121,71,0.03973614389973673],[122,121,72,0.04152531067639448],[122,121,73,0.04337353813493089],[122,121,74,0.04528075398406439],[122,121,75,0.04724679528033526],[122,121,76,0.04927140588537576],[122,121,77,0.05135423389903093],[122,121,78,0.05349482906832337],[122,121,79,0.05569264017229425],[122,122,64,0.021369401771730245],[122,122,65,0.022751077986122525],[122,122,66,0.024191763540126032],[122,122,67,0.025691929156621274],[122,122,68,0.02725197067211721],[122,122,69,0.028872206667027278],[122,122,70,0.03055287607236623],[122,122,71,0.03229413575280676],[122,122,72,0.03409605806612459],[122,122,73,0.03595862839896474],[122,122,74,0.03788174267908495],[122,122,75,0.039865204863874015],[122,122,76,0.04190872440528903],[122,122,77,0.04401191369116508],[122,122,78,0.04617428546289071],[122,122,79,0.048395250209478435],[122,123,64,0.013891208276943567],[122,123,65,0.015273236064240636],[122,123,66,0.01671604997963283],[122,123,67,0.01822009847847078],[122,123,68,0.019785753764875014],[122,123,69,0.02141330942569425],[122,123,70,0.023102978041397937],[122,123,71,0.02485488877384845],[122,123,72,0.026669084930974973],[122,123,73,0.028545521508286043],[122,123,74,0.03048406270737658],[122,123,75,0.032484479431223456],[122,123,76,0.034546446756417715],[122,123,77,0.03666954138228662],[122,123,78,0.038853239056895306],[122,123,79,0.04109691197996068],[122,124,64,0.006423602017159746],[122,124,65,0.007805478487342199],[122,124,66,0.009249921161176344],[122,124,67,0.010757356351876468],[122,124,68,0.012328132749975795],[122,124,69,0.013962519060628065],[122,124,70,0.015660701618358197],[122,124,71,0.01742278197920133],[122,124,72,0.01924877449025819],[122,124,73,0.02113860383659716],[122,124,74,0.023092102565665962],[122,124,75,0.025109008589000337],[122,124,76,0.027188962661383376],[122,124,77,0.029331505837404293],[122,124,78,0.03153607690541005],[122,124,79,0.03380200979887982],[122,125,64,-0.0010290957361692166],[122,125,65,3.5213886095653013E-4],[122,125,66,0.0017977218781479731],[122,125,67,0.0033080576220868574],[122,125,68,0.0048834713997101264],[122,125,69,0.006524207158526418],[122,125,70,0.008230425104889472],[122,125,71,0.01000219930016566],[122,125,72,0.011839515234822406],[122,125,73,0.013742267380375761],[122,125,74,0.015710256719346782],[122,125,75,0.01774318825302912],[122,125,76,0.019840668487208335],[122,125,77,0.022002202895790468],[122,125,78,0.02422719336232837],[122,125,79,0.026514935599479927],[122,126,64,-0.008462564816095308],[122,126,65,-0.007082449932577006],[122,126,66,-0.005636203422039743],[122,126,67,-0.00412344283859678],[122,126,68,-0.0025438661177933364],[122,126,69,-8.972539335981855E-4],[122,126,70,8.165279230630818E-4],[122,126,71,0.002597526144168971],[122,126,72,0.004445697482889477],[122,126,73,0.006360906310229342],[122,126,74,0.008342922150186394],[122,126,75,0.010391417193219787],[122,126,76,0.012505963788172036],[122,126,77,0.014686031912603426],[122,126,78,0.016930986621524258],[122,126,79,0.019240085474561908],[122,127,64,-0.01587248959233345],[122,127,65,-0.014493959178309868],[122,127,66,-0.013047514093259327],[122,127,67,-0.011532793596300883],[122,127,68,-0.009949518713302852],[122,127,69,-0.008297494591498089],[122,127,70,-0.0065766128751486574],[122,127,71,-0.004786854102315052],[122,127,72,-0.002928290122706345],[122,127,73,-0.0010010865366762989],[122,127,74,9.944948447927482E-4],[122,127,75,0.0030580935189097325],[122,127,76,0.005189247788848217],[122,127,77,0.0073873922404259496],[122,127,78,0.009651855197680748],[122,127,79,0.011981856157375792],[122,128,64,-0.023254562458923322],[122,128,65,-0.021878067828858705],[122,128,66,-0.02043187680240166],[122,128,67,-0.018915650177927512],[122,128,68,-0.017329131908507267],[122,128,69,-0.015672151454462324],[122,128,70,-0.013944626156469853],[122,128,71,-0.01214656362928701],[122,128,72,-0.010278064176063362],[122,128,73,-0.00833932322330777],[122,128,74,-0.006330633776352901],[122,128,75,-0.004252388895524595],[122,128,76,-0.0021050841928659247],[122,128,77,1.1067965053490614E-4],[122,128,78,0.0023941943466038174],[122,128,79,0.004744641441762232],[122,129,64,-0.03060448737757815],[122,129,65,-0.029230466060744198],[122,129,66,-0.027784969097732093],[122,129,67,-0.026267678650559123],[122,129,68,-0.02467836142551738],[122,129,69,-0.023016871023963992],[122,129,70,-0.021283150313181065],[122,129,71,-0.01947723381736788],[122,129,72,-0.017599250128732757],[122,129,73,-0.01564942433875871],[122,129,74,-0.0136280804894785],[122,129,75,-0.011535644044967874],[122,129,76,-0.009372644382911854],[122,129,77,-0.007139717306286375],[122,129,78,-0.004837607575167824],[122,129,79,-0.0024671714586359528],[122,130,64,-0.03791798347635045],[122,130,65,-0.03654685888651843],[122,130,66,-0.03510248303348784],[122,130,67,-0.03358455925754822],[122,130,68,-0.031992876833466855],[122,130,69,-0.0303273133198122],[122,130,70,-0.02858783692786815],[122,130,71,-0.02677450891020028],[122,130,72,-0.024887485968842826],[122,130,73,-0.022927022683179032],[122,130,74,-0.020893473957351305],[122,130,75,-0.01878729748741037],[122,130,76,-0.016609056248057197],[122,130,77,-0.014359420999021433],[122,130,78,-0.012039172811086796],[122,130,79,-0.009649205611730882],[122,131,64,-0.04519078870379323],[122,131,65,-0.04382296982286471],[122,131,66,-0.042380128850906806],[122,131,67,-0.04086199011146985],[122,131,68,-0.03926836525240107],[122,131,69,-0.03759915559399174],[122,131,70,-0.03585435449623908],[122,131,71,-0.03403404974528512],[122,131,72,-0.03213842595900562],[122,131,73,-0.030167767011817004],[122,131,74,-0.02812245847853745],[122,131,75,-0.02600299009751783],[122,131,76,-0.02380995825288723],[122,131,77,-0.02154406847596313],[122,131,78,-0.01920613796583559],[122,131,79,-0.01679709812909025],[122,132,64,-0.05241866353881253],[122,132,65,-0.05105454461486003],[122,132,66,-0.049613638715874764],[122,132,67,-0.04809569094413346],[122,132,68,-0.04650053511464125],[122,132,69,-0.044828096102380366],[122,132,70,-0.04307839220820431],[122,132,71,-0.04125153754344468],[122,132,72,-0.039347744433199106],[122,132,73,-0.037367325838367105],[122,132,74,-0.035310697796278046],[122,132,75,-0.03317838188011457],[122,132,76,-0.030971007676988682],[122,132,77,-0.028689315284710748],[122,132,78,-0.026334157827268],[122,132,79,-0.023906503988971983],[122,133,64,-0.05959739475583237],[122,133,65,-0.05823735501602756],[122,133,66,-0.05679877051281512],[122,133,67,-0.05528140691327543],[122,133,68,-0.053685119983251206],[122,133,69,-0.05200985793396806],[122,133,70,-0.05025566378684254],[122,133,71,-0.048422677756539634],[122,133,72,-0.04651113965224907],[122,133,73,-0.04452139129725163],[122,133,74,-0.04245387896661246],[122,133,75,-0.040309155843210154],[122,133,76,-0.03808788449195777],[122,133,77,-0.035790839352254133],[122,133,78,-0.03341890924868374],[122,133,79,-0.03097309991992414],[122,134,64,-0.06672279924546132],[122,134,65,-0.06536720262436257],[122,134,66,-0.06393131169501276],[122,134,67,-0.062414912466122185],[122,134,68,-0.06081788242779129],[122,134,69,-0.059140192897768284],[122,134,70,-0.057381911385441686],[122,134,71,-0.05554320397362389],[122,134,72,-0.05362433771810127],[122,134,73,-0.051625683065018024],[122,134,74,-0.04954771628593213],[122,134,75,-0.04739102193075306],[122,134,76,-0.04515629529841547],[122,134,77,-0.04284434492532907],[122,134,78,-0.04045609509162085],[122,134,79,-0.037992588345132305],[122,135,64,-0.07379072789084618],[122,135,65,-0.07243992277451983],[122,135,66,-0.07100708319155302],[122,135,67,-0.06949201526000592],[122,135,68,-0.06789461795754659],[122,135,69,-0.06621488546760257],[122,135,70,-0.06445290954279592],[122,135,71,-0.06260888188572544],[122,135,72,-0.060683096547063387],[122,135,73,-0.05867595234104017],[122,135,74,-0.05658795527815097],[122,135,75,-0.05441972101529691],[122,135,76,-0.05217197732321299],[122,135,77,-0.04984556657122474],[122,135,78,-0.04744144822934859],[122,135,79,-0.04496070138769792],[122,136,64,-0.08079706949933596],[122,136,65,-0.07945138848578814],[122,136,66,-0.07802194337050261],[122,136,67,-0.07650856013966101],[122,136,68,-0.07491115901185674],[122,136,69,-0.07322975678438792],[122,136,70,-0.07146446919639027],[122,136,71,-0.06961551330887583],[122,136,72,-0.06768320990164611],[122,136,73,-0.06566798588714906],[122,136,74,-0.06357037674111876],[122,136,75,-0.06139102895020665],[122,136,76,-0.05913070247645813],[122,136,77,-0.056790273238676914],[122,136,78,-0.054370735610690835],[122,136,79,-0.05187320493648151],[122,137,64,-0.0877377547896574],[122,137,65,-0.08639751446604726],[122,137,66,-0.08497179205853189],[122,137,67,-0.0834604331713984],[122,137,68,-0.08186337900773932],[122,137,69,-0.08018066871612173],[122,137,70,-0.07841244175366535],[122,137,71,-0.07655894026558985],[122,137,72,-0.07462051148120141],[122,137,73,-0.07259761012639054],[122,137,74,-0.07049080085247494],[122,137,75,-0.06830076068160129],[122,137,76,-0.06602828146855799],[122,137,77,-0.06367427237903911],[122,137,78,-0.06123976238437634],[122,137,79,-0.0587259027726994],[122,138,64,-0.09460876043476252],[122,138,65,-0.09327426117187387],[122,138,66,-0.09185257461713903],[122,138,67,-0.0903435657343219],[122,138,68,-0.08874719644497742],[122,138,69,-0.08706352797572947],[122,138,70,-0.08529272322152948],[122,138,71,-0.08343504912495481],[122,138,72,-0.0814908790715203],[122,138,73,-0.07946069530107336],[122,138,74,-0.07734509133510525],[122,138,75,-0.0751447744201964],[122,138,76,-0.07286056798744045],[122,138,77,-0.070493414127896],[122,138,78,-0.06804437608407643],[122,138,79,-0.06551464075744173],[122,139,64,-0.10140611315998116],[122,139,65,-0.10007763892442534],[122,139,66,-0.09866028607511101],[122,139,67,-0.09715393866821465],[122,139,68,-0.09555857906829635],[122,139,69,-0.09387429029640593],[122,139,70,-0.09210125839374672],[122,139,71,-0.09023977480096346],[122,139,72,-0.08829023875301911],[122,139,73,-0.08625315968973646],[122,139,74,-0.08412915968183432],[122,139,75,-0.08191897587267782],[122,139,76,-0.07962346293558642],[122,139,77,-0.07724359554675098],[122,139,78,-0.07478047087376571],[122,139,79,-0.07223531107974279],[122,140,64,-0.10812589389679372],[122,140,65,-0.10680371208141837],[122,140,66,-0.10539097531753183],[122,140,67,-0.10388758647841567],[122,140,68,-0.10229354808695146],[122,140,69,-0.10060896466476477],[122,140,70,-0.09883404509651716],[122,140,71,-0.09696910500940481],[122,140,72,-0.09501456916783602],[122,140,73,-0.09297097388335818],[122,140,74,-0.0908389694396683],[122,140,75,-0.08861932253292215],[122,140,76,-0.08631291872718994],[122,140,77,-0.08392076492510536],[122,140,78,-0.08144399185371909],[122,140,79,-0.0788838565655201],[122,141,64,-0.11476424199198576],[122,141,65,-0.11344860326496442],[122,141,66,-0.11204074933110741],[122,141,67,-0.11054060159744705],[122,141,68,-0.10894818245148163],[122,141,69,-0.10726361761156111],[122,141,70,-0.1054871384920143],[122,141,71,-0.10361908458307689],[122,141,72,-0.10165990584559315],[122,141,73,-0.0996101651205602],[122,141,74,-0.09747054055335092],[122,141,75,-0.09524182803282932],[122,141,76,-0.09292494364520709],[122,141,77,-0.09052092614268759],[122,141,78,-0.08803093942690765],[122,141,79,-0.08545627504714293],[122,142,64,-0.12131735947249878],[122,142,65,-0.12000849764557442],[122,142,66,-0.11860577750611323],[122,142,67,-0.11710913870370321],[122,142,68,-0.11551862318794925],[122,142,69,-0.11383437756029646],[122,142,70,-0.11205665544018761],[122,142,71,-0.1101858198456318],[122,142,72,-0.10822234558814314],[122,142,73,-0.10616682168212677],[122,142,74,-0.10401995376854445],[122,142,75,-0.10178256655307238],[122,142,76,-0.09945560625860561],[122,142,77,-0.09704014309214815],[122,142,78,-0.09453737372610571],[122,142,79,-0.09194862379394075],[122,143,64,-0.12778151536560423],[122,143,65,-0.12647964728196237],[122,143,66,-0.1250822959945973],[122,143,67,-0.12358941909683174],[122,143,68,-0.12200107778929103],[122,143,69,-0.12031743923333893],[122,143,70,-0.11853877891846432],[122,143,71,-0.11666548304368296],[122,143,72,-0.11469805091292318],[122,143,73,-0.11263709734446425],[122,143,74,-0.11048335509426654],[122,143,75,-0.10823767729340339],[122,143,76,-0.10590103989944644],[122,143,77,-0.10347454416184909],[122,143,78,-0.10095941910133988],[122,143,79,-0.09835702400328938],[122,144,64,-0.13415305007458678],[122,144,65,-0.13285837551683155],[122,144,66,-0.13146661212502098],[122,144,67,-0.12997773512999367],[122,144,68,-0.12839182466396215],[122,144,69,-0.1267090681157389],[122,144,70,-0.12492976249952947],[122,144,71,-0.12305431683736101],[122,144,72,-0.1210832545551066],[122,144,73,-0.11901721589218517],[122,144,74,-0.11685696032476534],[122,144,75,-0.11460336900269108],[122,144,76,-0.11225744719997965],[122,144,77,-0.10982032677892972],[122,144,78,-0.1072932686678626],[122,144,79,-0.10467766535244771],[122,145,64,-0.1404283798100887],[122,145,65,-0.13914108142879578],[122,145,66,-0.13775510887349396],[122,145,67,-0.13627045469915033],[122,145,68,-0.1346872176420335],[122,145,69,-0.1330056049768954],[122,145,70,-0.1312259348873427],[122,145,71,-0.12934863884946735],[122,145,72,-0.12737426402870222],[122,145,73,-0.1253034756899737],[122,145,74,-0.12313705962098531],[122,145,75,-0.12087592456884855],[122,145,76,-0.11852110468990784],[122,145,77,-0.11607376201280628],[122,145,78,-0.11353518891480241],[122,145,79,-0.11090681061130525],[122,146,64,-0.14660400107679072],[122,146,65,-0.1453242443401137],[122,146,66,-0.14394424939127415],[122,146,67,-0.14246402578905548],[122,146,68,-0.14088369053841066],[122,146,69,-0.1392034704497519],[122,146,70,-0.137423704511063],[122,146,71,-0.13554484627290453],[122,146,72,-0.1335674662462739],[122,146,73,-0.1314922543134015],[122,146,74,-0.12932002215130434],[122,146,75,-0.12705170566832524],[122,146,76,-0.12468836745349587],[122,146,77,-0.12223119923877479],[122,146,78,-0.1196815243741709],[122,146,79,-0.1170408003157154],[122,147,64,-0.15267649521559867],[122,147,65,-0.15140442838039958],[122,147,66,-0.15003058158870297],[122,147,67,-0.14855498107612153],[122,147,68,-0.14697776177334532],[122,147,69,-0.14529916966767953],[122,147,70,-0.14351956417705047],[122,147,71,-0.141639420536547],[122,147,72,-0.13965933219745452],[122,147,73,-0.13758001323886726],[122,147,74,-0.1354023007917009],[122,147,75,-0.13312715747532877],[122,147,76,-0.13075567384668663],[122,147,77,-0.12828907086189145],[122,147,78,-0.12572870235038713],[122,147,79,-0.12307605750157913],[122,148,64,-0.15864253300148412],[122,148,65,-0.15737828710646584],[122,148,66,-0.15601074277572546],[122,148,67,-0.15453994258830817],[122,148,68,-0.1529660390503912],[122,148,69,-0.151289296959209],[122,148,70,-0.14951009577909624],[122,148,71,-0.14762893202970984],[122,148,72,-0.1456464216864013],[122,148,73,-0.14356330259281025],[122,148,74,-0.14138043688551083],[122,148,75,-0.13909881343093],[122,148,76,-0.13671955027438387],[122,148,77,-0.13424389710127638],[122,148,78,-0.13167323771047645],[122,148,79,-0.1290090924998324],[122,149,64,-0.16449887929667384],[122,149,65,-0.16324256817798688],[122,149,66,-0.161881464358692],[122,149,67,-0.1604156264217258],[122,149,68,-0.15884522409149238],[122,149,69,-0.15717054060030056],[122,149,70,-0.15539197506657365],[122,149,71,-0.1535100448848994],[122,149,72,-0.15152538812788297],[122,149,73,-0.14943876595988448],[122,149,74,-0.14725106506246122],[122,149,75,-0.14496330007174363],[122,149,76,-0.14257661602758576],[122,149,77,-0.14009229083453345],[122,149,78,-0.137511737734633],[122,149,79,-0.13483650779202883],[122,150,64,-0.17024239775933436],[122,150,65,-0.16899411808913223],[122,150,66,-0.16763957659358186],[122,150,67,-0.16617884751410505],[122,150,68,-0.16461211742935822],[122,150,69,-0.16293968762429278],[122,150,70,-0.16116197647065644],[122,150,71,-0.15927952181899907],[122,150,72,-0.15729298340215203],[122,150,73,-0.15520314525024892],[122,150,74,-0.1530109181171293],[122,150,75,-0.15071734191832997],[122,150,76,-0.14832358818052316],[122,150,77,-0.1458309625024401],[122,150,78,-0.14324090702729408],[122,150,79,-0.14055500292666534],[122,151,64,-0.1758700556079179],[122,151,65,-0.17462988695633663],[122,151,66,-0.1732820133958186],[122,151,67,-0.17182652447529267],[122,151,68,-0.1702636232572845],[122,151,69,-0.16859362868970806],[122,151,70,-0.16681697798877027],[122,151,71,-0.16493422903305688],[122,151,72,-0.1629460627687609],[122,151,73,-0.16085328562613577],[122,151,74,-0.15865683194699554],[122,151,75,-0.15635776642348387],[122,151,76,-0.15395728654796348],[122,151,77,-0.15145672507406138],[122,151,78,-0.14885755248889265],[122,151,79,-0.1461613794964174],[122,152,64,-0.18137892844084658],[122,152,65,-0.1801469333618817],[122,152,66,-0.17880581720635857],[122,152,67,-0.17735568447445638],[122,152,68,-0.17579675433610142],[122,152,69,-0.1741293630055809],[122,152,70,-0.17235396612695808],[122,152,71,-0.17047114117034534],[122,152,72,-0.1684815898390084],[122,152,73,-0.166386140487373],[122,152,74,-0.16418575054976303],[122,152,75,-0.16188150898009357],[122,152,76,-0.15947463870236156],[122,152,77,-0.1569664990719789],[122,152,78,-0.15435858834796523],[122,152,79,-0.15165254617595791],[122,153,64,-0.1867662051117136],[122,153,65,-0.18554242925346764],[122,153,66,-0.18420814391421925],[122,153,67,-0.18276346818417222],[122,153,68,-0.18120863695842415],[122,153,69,-0.17954400331449338],[122,153,70,-0.17777004090032855],[122,153,71,-0.17588734633288006],[122,153,72,-0.17389664160718277],[122,153,73,-0.17179877651603914],[122,153,74,-0.16959473108012502],[122,153,75,-0.16728561798873642],[122,153,76,-0.16487268505103114],[122,153,77,-0.1623573176577996],[122,153,78,-0.15974104125379118],[122,153,79,-0.15702552382054302],[122,154,64,-0.1920291926601132],[122,154,65,-0.1908136648998925],[122,154,66,-0.18948626783557454],[122,154,67,-0.18804713478151025],[122,154,68,-0.18649651597032568],[122,154,69,-0.18483478093343086],[122,154,70,-0.18306242089171598],[122,154,71,-0.18118005115650504],[122,154,72,-0.1791884135407248],[122,154,73,-0.17708837878037043],[122,154,74,-0.17488094896609407],[122,154,75,-0.17256725998513767],[122,154,76,-0.17014858397345534],[122,154,77,-0.16762633177806996],[122,154,78,-0.1650020554296805],[122,154,79,-0.16227745062547472],[122,155,64,-0.19716532129784115],[122,155,65,-0.19595805390257004],[122,155,66,-0.19463758674914355],[122,155,67,-0.19320406700585846],[122,155,68,-0.19165775985015832],[122,155,69,-0.1899990508521927],[122,155,70,-0.18822844836827135],[122,155,71,-0.18634658594428444],[122,155,72,-0.18435422472904683],[122,155,73,-0.18225225589764693],[122,155,74,-0.18004170308462808],[122,155,75,-0.17772372482721932],[122,155,76,-0.17529961701847085],[122,155,77,-0.1727708153703239],[122,155,78,-0.1701388978866457],[122,155,79,-0.16740558734617683],[122,156,64,-0.20217214945059114],[122,156,65,-0.200973138263023],[122,156,66,-0.1996596269880122],[122,156,67,-0.19823177627361077],[122,156,68,-0.19668986584466785],[122,156,69,-0.19503429688949214],[122,156,70,-0.1932655944561319],[122,156,71,-0.1913844098583315],[122,156,72,-0.18939152309113283],[122,156,73,-0.18728784525619924],[122,156,74,-0.18507442099668514],[122,156,75,-0.18275243094187876],[122,156,76,-0.1803231941614567],[122,156,77,-0.17778817062940067],[122,156,78,-0.17514896369758925],[122,156,79,-0.17240732257902136],[122,157,64,-0.2070473688552894],[122,157,65,-0.20585659350648677],[122,157,66,-0.2045500485880185],[122,157,67,-0.20312790784986057],[122,157,68,-0.2015904651625262],[122,157,69,-0.19993813690688078],[122,157,70,-0.1981714643732959],[122,157,71,-0.19629111617021133],[122,157,72,-0.1942978906420637],[122,157,73,-0.19219271829666407],[122,157,74,-0.18997666424184922],[122,157,75,-0.18765093063162763],[122,157,76,-0.1852168591216673],[122,157,77,-0.1826759333341692],[122,157,78,-0.1800297813321422],[122,157,79,-0.17728017810303398],[122,158,64,-0.2117888097127919],[122,158,65,-0.21060623386134836],[122,158,66,-0.20930665049243125],[122,158,67,-0.20789024607682383],[122,158,68,-0.20635732822501962],[122,158,69,-0.20470832808022443],[122,158,70,-0.20294380272043333],[122,158,71,-0.20106443756964654],[122,158,72,-0.19907104881819182],[122,158,73,-0.19696458585222498],[122,158,74,-0.19474613369224258],[122,158,75,-0.19241691544082085],[122,158,76,-0.1899782947394325],[122,158,77,-0.18743177823438373],[122,158,78,-0.18477901805188435],[122,158,79,-0.1820218142822142],[122,159,64,-0.2163944458960957],[122,159,65,-0.21522001749457842],[122,159,66,-0.21392737581307741],[122,159,67,-0.21251671965914887],[122,159,68,-0.21098836997403603],[122,159,69,-0.20934277222888642],[122,159,70,-0.20758049882978558],[122,159,71,-0.2057022515316752],[122,159,72,-0.20370886386111664],[122,159,73,-0.20160130354798156],[122,159,74,-0.19938067496589107],[122,159,75,-0.19704822158163104],[122,159,76,-0.19460532841338407],[122,159,77,-0.1920535244978253],[122,159,78,-0.1893944853660965],[122,159,79,-0.186630035528617],[122,160,64,-0.22086240021415848],[122,160,65,-0.2196960518032407],[122,160,66,-0.21841031714800252],[122,160,67,-0.2170054070061963],[122,160,68,-0.21548165523744667],[122,160,69,-0.21383952120270044],[122,160,70,-0.21207959217224304],[122,160,71,-0.2102025857423533],[122,160,72,-0.2082093522605546],[122,160,73,-0.20610087725954285],[122,160,74,-0.2038782838996206],[122,160,75,-0.20154283541985152],[122,160,76,-0.19909593759778932],[122,160,77,-0.19653914121781957],[122,160,78,-0.1938741445481328],[122,160,79,-0.19110279582628564],[122,161,64,-0.22519094973111176],[122,161,65,-0.22403259876187165],[122,161,66,-0.22275372195545706],[122,161,67,-0.2213545416310847],[122,161,68,-0.2198354041516727],[122,161,69,-0.2181967823265336],[122,161,70,-0.21643927782239014],[122,161,71,-0.21456362358279146],[122,161,72,-0.21257068625588615],[122,161,73,-0.21046146863063442],[122,161,74,-0.20823711208128304],[122,161,75,-0.20589889902032432],[122,161,76,-0.2034482553597904],[122,161,77,-0.20088675298091785],[122,161,78,-0.1982161122122078],[122,161,79,-0.19543820431583137],[122,162,64,-0.2293785311409675],[122,162,65,-0.2282280803258293],[122,162,66,-0.2269559979843092],[122,162,67,-0.22556251760659585],[122,162,68,-0.22404799764152938],[122,162,69,-0.22241292390252776],[122,162,70,-0.22065791198161677],[122,162,71,-0.21878370967162153],[122,162,72,-0.2167911993964885],[122,162,73,-0.21468140064981356],[122,162,74,-0.21245547244140262],[122,162,75,-0.21011471575208696],[122,162,76,-0.20766057599664156],[122,162,77,-0.2050946454948427],[122,162,78,-0.20241866595069158],[122,162,79,-0.19963453093975192],[122,163,64,-0.23342374619794237],[122,163,65,-0.23228108389073132],[122,163,66,-0.23101571876099936],[122,163,67,-0.22962789507806725],[122,163,68,-0.22811798295747643],[122,163,69,-0.226486480770148],[122,163,70,-0.2247340175594189],[122,163,71,-0.22286135546602115],[122,163,72,-0.2208693921609669],[122,163,73,-0.2187591632864192],[122,163,74,-0.21653184490437194],[122,163,75,-0.21418875595336395],[122,163,76,-0.21173136071307075],[122,163,77,-0.20916127127681883],[122,163,78,-0.20648025003203863],[122,163,79,-0.20369021214861238],[122,164,64,-0.23732536720215713],[122,164,65,-0.23619036780774438],[122,164,66,-0.23493162913280874],[122,164,67,-0.2335494058330262],[122,164,68,-0.23204407927003334],[122,164,69,-0.23041615992379672],[122,164,70,-0.22866628981264836],[122,164,71,-0.22679524492104997],[122,164,72,-0.22480393763505135],[122,164,73,-0.22269341918551766],[122,164,74,-0.22046488209895676],[122,164,75,-0.218119662656162],[122,164,76,-0.2156592433585246],[122,164,77,-0.2130852554020518],[122,164,78,-0.21039948115911078],[122,164,79,-0.20760385666785486],[122,165,64,-0.2410823425409092],[122,165,65,-0.2399548669549192],[122,165,66,-0.238702650867621],[122,165,67,-0.2373259589277642],[122,165,68,-0.23582518332155067],[122,165,69,-0.23420084618818748],[122,165,70,-0.232453602042905],[122,165,71,-0.23058424020749702],[122,165,72,-0.2285936872483486],[122,165,73,-0.22648300942203248],[122,165,74,-0.22425341512829544],[122,165,75,-0.22190625737066005],[122,165,76,-0.2194430362244878],[122,165,77,-0.2168654013125444],[122,165,78,-0.21417515428808565],[122,165,79,-0.21137425132542187],[122,166,64,-0.2446938022853825],[122,166,65,-0.24357369836444065],[122,166,66,-0.24232788831006147],[122,166,67,-0.24095664637072078],[122,166,68,-0.2394603751352108],[122,166,69,-0.23783960795134818],[122,166,70,-0.23609501135194488],[122,166,71,-0.23422738748810634],[122,166,72,-0.23223767656982375],[122,166,73,-0.23012695931393412],[122,166,74,-0.2278964593992776],[122,166,75,-0.22554754592927206],[122,166,76,-0.22308173590175495],[122,166,77,-0.22050069668612648],[122,166,78,-0.2178062485078237],[122,166,79,-0.2150003669400714],[122,167,64,-0.24815906384295905],[122,167,65,-0.2470461669059486],[122,167,66,-0.24580663409416192],[122,167,67,-0.2444407488628313],[122,167,68,-0.24294892378141475],[122,167,69,-0.24133170295541184],[122,167,70,-0.23958976445525437],[122,167,71,-0.23772392275233922],[122,167,72,-0.23573513116216405],[122,167,73,-0.233624484294645],[122,167,74,-0.23139322051144529],[122,167,75,-0.22904272439052997],[122,167,76,-0.2265745291978014],[122,167,77,-0.22399031936585134],[122,167,78,-0.22129193297985095],[122,167,79,-0.218481364270534],[122,168,64,-0.25147763766493936],[122,168,65,-0.2503717710257476],[122,168,66,-0.24913837491236623],[122,168,67,-0.2477777415946567],[122,168,68,-0.24629029320136775],[122,168,69,-0.2446765841450078],[122,168,70,-0.2429373035536142],[122,168,71,-0.24107327770948617],[122,168,72,-0.23908547249484158],[122,168,73,-0.23697499584447312],[122,168,74,-0.23474310020524058],[122,168,75,-0.2323911850026068],[122,168,76,-0.2299207991140766],[122,168,77,-0.22733364334957185],[122,168,78,-0.2246315729387668],[122,168,79,-0.2218166000253341],[122,169,64,-0.2546492330097676],[122,169,65,-0.2535502085419912],[122,169,66,-0.2523227973409711],[122,169,67,-0.2509673001003827],[122,169,68,-0.24948414808795516],[122,169,69,-0.24787390557334454],[122,169,70,-0.24613727226273296],[122,169,71,-0.24427508574022005],[122,169,72,-0.24228832391596522],[122,169,73,-0.24017810748116397],[122,169,74,-0.23794570236968304],[122,169,75,-0.23559252222657157],[122,169,76,-0.2331201308833052],[122,169,77,-0.23053024483979256],[122,169,78,-0.22782473575317352],[122,169,79,-0.22500563293335674],[122,170,64,-0.25767376376184425],[122,170,65,-0.2565813824959302],[122,170,66,-0.25535979372208584],[122,170,67,-0.25400930616877626],[122,170,68,-0.2525303598239944],[122,170,69,-0.2509235283660711],[122,170,70,-0.24918952160104813],[122,170,71,-0.24732918790667624],[122,170,72,-0.24534351668300924],[122,170,73,-0.24323364080966225],[122,170,74,-0.24100083910956893],[122,170,75,-0.23864653881945685],[122,170,76,-0.23617231806688233],[122,170,77,-0.23357990835387643],[122,170,78,-0.23087119704721237],[122,170,79,-0.22804822987525286],[122,171,64,-0.2605513543057445],[122,171,65,-0.25946540705904064],[122,171,66,-0.25824946810192617],[122,171,67,-0.2569038538109141],[122,171,68,-0.25542901247767924],[122,171,69,-0.25382552674273196],[122,171,70,-0.2520941160354985],[122,171,71,-0.2502356390208771],[122,171,72,-0.24825109605222995],[122,171,73,-0.24614163163088898],[122,171,74,-0.24390853687200542],[122,171,75,-0.24155325197695998],[122,171,76,-0.23907736871218344],[122,171,77,-0.2364826328944295],[122,171,78,-0.23377094688251765],[122,171,79,-0.23094437207549867],[122,172,64,-0.26328234545595464],[122,172,65,-0.2622026134961447],[122,172,66,-0.2609921422255571],[122,172,67,-0.25965125528479926],[122,172,68,-0.2581804088553319],[122,172,69,-0.2565801940959279],[122,172,70,-0.2548513395853922],[122,172,71,-0.25299471377161076],[122,172,72,-0.2510113274268899],[122,172,73,-0.24890233610966284],[122,172,74,-0.2466690426323922],[122,172,75,-0.24431289953588864],[122,172,76,-0.24183551156989502],[122,172,77,-0.23923863817997137],[122,172,78,-0.2365241960007083],[122,172,79,-0.23369426135521731],[122,173,64,-0.2658673004421749],[122,173,65,-0.26479355618457],[122,173,66,-0.2635883615881326],[122,173,67,-0.26225204717691064],[122,173,68,-0.2607850766115064],[122,173,69,-0.25918804912823534],[122,173,70,-0.25746170198441054],[122,173,71,-0.2556069129098165],[122,173,72,-0.2536247025643342],[122,173,73,-0.2515162370017965],[122,173,74,-0.24928283013990116],[122,173,75,-0.24692594623640118],[122,173,76,-0.24444720237142203],[122,173,77,-0.2418483709359417],[122,173,78,-0.23913138212646234],[122,173,79,-0.23629832644581727],[122,174,64,-0.2683070109500497],[122,174,65,-0.2672390186892133],[122,174,66,-0.26603890154249277],[122,174,67,-0.2647069965405482],[122,174,68,-0.26324377441630775],[122,174,69,-0.261649842046739],[122,174,70,-0.2599259449006144],[122,174,71,-0.2580729694923356],[122,174,72,-0.2560919458417791],[122,174,73,-0.25398404994024215],[122,174,74,-0.2517506062223145],[122,174,75,-0.2493930900438992],[122,174,76,-0.24691313016622674],[122,174,77,-0.24431251124590625],[122,174,78,-0.24159317633103305],[122,174,79,-0.23875722936330457],[122,175,64,-0.27060250321740353],[122,175,65,-0.26954001989358334],[122,175,66,-0.2683447734631985],[122,175,67,-0.26701710709105264],[122,175,68,-0.26555749818000574],[122,175,69,-0.2639665608152614],[122,175,70,-0.2622450482145262],[122,175,71,-0.26039385518410507],[122,175,72,-0.2584140205808956],[122,175,73,-0.2563067297803594],[122,175,74,-0.25407331715029824],[122,175,75,-0.25171526853065385],[122,175,76,-0.24923422371918103],[122,175,77,-0.24663197896303513],[122,175,78,-0.2439104894562909],[122,175,79,-0.24107187184334833],[122,176,64,-0.27275504418604213],[122,176,65,-0.27169782018688227],[122,176,66,-0.27050723096705787],[122,176,67,-0.26918362545795615],[122,176,68,-0.26772748733499874],[122,176,69,-0.26613943746434476],[122,176,70,-0.2644202363553516],[122,176,71,-0.26257078661885624],[122,176,72,-0.26059213543124193],[122,176,73,-0.25848547700436475],[122,176,74,-0.2562521550611707],[122,176,75,-0.253893665317224],[122,176,76,-0.25141165796799003],[122,176,77,-0.24880794018191832],[122,176,78,-0.2460844785993438],[122,176,79,-0.24324340183716042],[122,177,64,-0.27476614770898744],[122,177,65,-0.27371392770699643],[122,177,66,-0.27252777619002055],[122,177,67,-0.2712080474939379],[122,177,68,-0.2697552311750019],[122,177,69,-0.2681699544588577],[122,177,70,-0.2664529846952066],[122,177,71,-0.2646052318181844],[122,177,72,-0.2626277508124174],[122,177,73,-0.26052174418482965],[122,177,74,-0.25828856444203663],[122,177,75,-0.25592971657353636],[122,177,76,-0.2534468605405559],[122,177,77,-0.25084181377058223],[122,177,78,-0.24811655365761043],[122,177,79,-0.24527322006805263],[122,178,64,-0.2766375808132171],[122,178,65,-0.27559010463946443],[122,178,66,-0.2744081661205052],[122,178,67,-0.2730921246406497],[122,178,68,-0.27164247525152463],[122,178,69,-0.2700598511232931],[122,178,70,-0.2683450260014214],[122,178,71,-0.26649891666906134],[122,178,72,-0.26452258541500706],[122,178,73,-0.262417242507306],[122,178,74,-0.26018424867235523],[122,178,75,-0.2578251175796946],[122,178,76,-0.2553415183323525],[122,178,77,-0.25273527796278294],[122,178,78,-0.25000838393441294],[122,178,79,-0.2471629866487507],[122,179,64,-0.2783713700179681],[122,179,65,-0.27732837357248685],[122,179,66,-0.2761504189892223],[122,179,67,-0.27483787035147567],[122,179,68,-0.2733912278277024],[122,179,69,-0.2718111301248225],[122,179,70,-0.2700983569469839],[122,179,71,-0.26825383145985204],[122,179,72,-0.2662786227603774],[122,179,73,-0.2641739483521274],[122,179,74,-0.2619411766260059],[122,179,75,-0.25958182934658136],[122,179,76,-0.25709758414387296],[122,179,77,-0.254490277010634],[122,179,78,-0.2517619048051509],[122,179,79,-0.24891462775951745],[122,180,64,-0.2799698077084668],[122,180,65,-0.27893102390783275],[122,180,66,-0.2777568207153511],[122,180,67,-0.27644756657108416],[122,180,68,-0.27500376638934076],[122,180,69,-0.2734260640139621],[122,180,70,-0.27171524467897656],[122,180,71,-0.2698722374746927],[122,180,72,-0.2678981178191845],[122,180,73,-0.2657941099352559],[122,180,74,-0.2635615893327049],[122,180,75,-0.26120208529611355],[122,180,76,-0.25871728337800726],[122,180,77,-0.2561090278974244],[122,180,78,-0.2533793244439194],[122,180,79,-0.25053034238695104],[122,181,64,-0.28143545856518204],[122,181,65,-0.28040061832774577],[122,181,66,-0.27922993140917374],[122,181,67,-0.27792377027187287],[122,181,68,-0.27648264421326896],[122,181,69,-0.2749072018229527],[122,181,70,-0.27319823344511407],[122,181,71,-0.27135667364633376],[122,181,72,-0.26938360368869074],[122,181,73,-0.26728025400826827],[122,181,74,-0.2650480066988812],[122,181,75,-0.2626883980012469],[122,181,76,-0.2602031207974502],[122,181,77,-0.257594027110737],[122,181,78,-0.2548631306106639],[122,181,79,-0.2520126091235506],[122,182,64,-0.2827711660486203],[122,182,65,-0.28173999931786486],[122,182,66,-0.2805725919311778],[122,182,67,-0.2792693200473211],[122,182,68,-0.27783069699302554],[122,182,69,-0.2762573757218715],[122,182,70,-0.2745501512783928],[122,182,71,-0.27270996326745944],[122,182,72,-0.2707378983289104],[122,182,73,-0.26863519261750346],[122,182,74,-0.2664032342880226],[122,182,75,-0.26404356598574896],[122,182,76,-0.26155788734215846],[122,182,77,-0.25894805747587357],[122,182,78,-0.2562160974988964],[122,182,79,-0.25336419302807556],[122,183,64,-0.283980058939559],[122,183,65,-0.2829522957460624],[122,183,66,-0.28178793050753104],[122,183,67,-0.2804873427621538],[122,183,68,-0.27905104952176973],[122,183,69,-0.2774797077323702],[122,183,70,-0.27577411673975205],[122,183,71,-0.27393522076038934],[122,183,72,-0.271964111357482],[122,183,73,-0.2698620299222634],[122,183,74,-0.26763037016039015],[122,183,75,-0.2652706805836388],[122,183,76,-0.2627846670067536],[122,183,77,-0.2601741950494897],[122,183,78,-0.2574412926438663],[122,183,79,-0.2545881525465903],[122,184,64,-0.28506555793481814],[122,184,65,-0.2840409294972871],[122,184,66,-0.28287936940202163],[122,184,67,-0.28158126025940367],[122,184,68,-0.2801471224325156],[122,184,69,-0.2785776164991387],[122,184,70,-0.27687354571884637],[122,184,71,-0.27503585850524914],[122,184,72,-0.2730656509033621],[122,184,73,-0.2709641690721678],[122,184,74,-0.26873281177220265],[122,184,75,-0.2663731328583907],[122,184,76,-0.26388684377796745],[122,184,77,-0.2612758160735362],[122,184,78,-0.2585420838912832],[122,184,79,-0.2556878464942913],[122,185,64,-0.2860313822985262],[122,185,65,-0.2850096221643812],[122,185,66,-0.2838506316444247],[122,185,67,-0.2825547961243434],[122,185,68,-0.2811226389956498],[122,185,69,-0.2795548241190552],[122,185,70,-0.27785215829288246],[122,185,71,-0.27601559372658035],[122,185,72,-0.2740462305193009],[122,185,73,-0.2719453191436233],[122,185,74,-0.26971426293424405],[122,185,75,-0.26735462058185977],[122,185,76,-0.2648681086320881],[122,185,77,-0.26225660398946693],[122,185,78,-0.25952214642655447],[122,185,79,-0.25666694109807897],[122,186,64,-0.2868815565688877],[122,186,65,-0.285862401794874],[122,186,66,-0.28470574781530056],[122,186,67,-0.2834119825052832],[122,186,68,-0.2819816319737415],[122,186,69,-0.28041536302802605],[122,186,70,-0.278713985643535],[122,186,71,-0.27687845543838685],[122,186,72,-0.27490987615310747],[122,186,73,-0.27280950213541144],[122,186,74,-0.27057874082990563],[122,186,75,-0.2682191552729357],[122,186,76,-0.26573246659241956],[122,186,77,-0.2631205565127155],[122,186,78,-0.26038546986453837],[122,186,79,-0.25752941709987887],[122,187,64,-0.2876204173204333],[122,187,65,-0.28660360969372767],[122,187,66,-0.2854490628872046],[122,187,67,-0.28415716699121896],[122,187,68,-0.2827284505336165],[122,187,69,-0.2811635829454947],[122,187,70,-0.27946337703191104],[122,187,71,-0.27762879144760344],[122,187,72,-0.2756609331776819],[122,187,73,-0.27356106002337255],[122,187,74,-0.271330583092639],[122,187,75,-0.268971069295905],[122,187,76,-0.2664842438467221],[122,187,77,-0.26387199276742546],[122,187,78,-0.2611363653997969],[122,187,79,-0.2582795769206905],[122,188,64,-0.28825261998180385],[122,188,65,-0.28723790728209464],[122,188,66,-0.2860852431223626],[122,188,67,-0.2847950195463842],[122,188,68,-0.2833677672157565],[122,188,69,-0.28180415787667634],[122,188,70,-0.2801050068316263],[122,188,71,-0.27827127541603447],[122,188,72,-0.2763040734798684],[122,188,73,-0.27420466187424364],[122,188,74,-0.2719744549428732],[122,188,75,-0.26961502301857665],[122,188,76,-0.2671280949246999],[122,188,77,-0.26451556048148295],[122,188,78,-0.26177947301740034],[122,188,79,-0.2589220518854205],[122,189,64,-0.28878314570900687],[122,189,65,-0.28777028301202157],[122,189,66,-0.2866192830267499],[122,189,67,-0.28533053950164133],[122,189,68,-0.2839045849609586],[122,189,69,-0.2823420931724542],[122,189,70,-0.28064388161992526],[122,189,71,-0.27881091398070634],[122,189,72,-0.2768443026080667],[122,189,73,-0.27474531101858546],[122,189,74,-0.27251535638433766],[122,189,75,-0.2701560120301041],[122,189,76,-0.26766900993546305],[122,189,77,-0.26505624324179333],[122,189,78,-0.26231976876421736],[122,189,79,-0.25946180950843367],[122,190,64,-0.2892173083141837],[122,190,65,-0.28820605933713817],[122,190,66,-0.2870565123606076],[122,190,67,-0.2857690626027519],[122,190,68,-0.2843442441942917],[122,190,69,-0.2827827326469733],[122,190,70,-0.28108534732688184],[122,190,71,-0.2792530539326674],[122,190,72,-0.27728696697864363],[122,190,73,-0.275188352282838],[122,190,74,-0.27295862945982374],[122,190,75,-0.27059937441854776],[122,190,76,-0.2681123218650119],[122,190,77,-0.26549936780983696],[122,190,78,-0.2627625720807386],[122,190,79,-0.259904160839864],[122,191,64,-0.28956076124988095],[122,191,65,-0.28855089973932324],[122,191,66,-0.2874026032053978],[122,191,67,-0.28611626811551827],[122,191,68,-0.2846924299663449],[122,191,69,-0.283131765752928],[122,191,70,-0.2814350964426795],[122,191,71,-0.27960338945422913],[122,191,72,-0.27763776114113037],[122,191,73,-0.27553947928049416],[122,191,74,-0.2733099655663811],[122,191,75,-0.2709507981081657],[122,191,76,-0.2684637139337265],[122,191,77,-0.2658506114974982],[122,191,78,-0.26311355319341345],[122,191,79,-0.26025476787267565],[122,192,64,-0.28981950464881556],[122,192,65,-0.2888108158113396],[122,192,66,-0.2876635770871796],[122,192,67,-0.2863781859877885],[122,192,68,-0.2849551791517565],[122,192,69,-0.2833952348145343],[122,192,70,-0.28169917528295796],[122,192,71,-0.2798679694146422],[122,192,72,-0.27790273510220276],[122,192,73,-0.2758047417623868],[122,192,74,-0.27357541282994025],[122,192,75,-0.27121632825642783],[122,192,76,-0.2687292270138595],[122,192,77,-0.26611600960315984],[122,192,78,-0.263378740567504],[122,192,79,-0.2605196510104659],[122,193,64,-0.2899998924191457],[122,193,65,-0.28899217439545033],[122,193,66,-0.2878458121564239],[122,193,67,-0.2865612040683331],[122,193,68,-0.28513888770503903],[122,193,69,-0.2835795423181948],[122,193,70,-0.2818839913122353],[122,193,71,-0.28005320472421347],[122,193,72,-0.2780883017084549],[122,193,73,-0.2759905530261004],[122,193,74,-0.2737613835393692],[122,193,75,-0.2714023747107601],[122,193,76,-0.26891526710704194],[122,193,77,-0.26630196290807107],[122,193,78,-0.26356452842045597],[122,193,79,-0.2607051965960231],[122,194,64,-0.29010863939523834],[122,194,65,-0.28910170477800434],[122,194,66,-0.28795605042425065],[122,194,67,-0.2866720753825883],[122,194,68,-0.2852503179736847],[122,194,69,-0.28369145826085096],[122,194,70,-0.28199632052540224],[122,194,71,-0.28016587574686025],[122,194,72,-0.27820124408795266],[122,194,73,-0.27610369738449136],[122,194,74,-0.2738746616399578],[122,194,75,-0.2715157195250145],[122,194,76,-0.2690286128817908],[122,194,77,-0.2664152452329822],[122,194,78,-0.2636776842957861],[122,194,79,-0.260818164500626],[122,195,64,-0.2901528285439475],[122,195,65,-0.2891465059400069],[122,195,66,-0.2880014050551135],[122,195,67,-0.2867179254652771],[122,195,68,-0.2852966060685723],[122,195,69,-0.283738127556031],[122,195,70,-0.28204331488729784],[122,195,71,-0.28021313977111284],[122,195,72,-0.2782487231505867],[122,195,73,-0.27615133769333955],[122,195,74,-0.27392241028634423],[122,195,75,-0.2715635245356758],[122,195,76,-0.26907642327103287],[122,195,77,-0.26646301105506],[122,195,78,-0.26372535669749675],[122,195,79,-0.2608656957741028],[122,196,64,-0.2901399182263734],[122,196,65,-0.2891340538636451],[122,196,66,-0.28798936771588934],[122,196,67,-0.2867062597498782],[122,196,68,-0.2852852692916389],[122,196,69,-0.28372707749757486],[122,196,70,-0.2820325098303399],[122,196,71,-0.2802025385395357],[122,196,72,-0.2782382851471906],[122,196,73,-0.2761410229380987],[122,196,74,-0.2739121794548519],[122,196,75,-0.2715533389977741],[122,196,76,-0.26906624512961774],[122,196,77,-0.2664528031850544],[122,196,78,-0.2637150827849848],[122,196,79,-0.2608553203556184],[122,197,64,-0.29007774951514353],[122,197,65,-0.2890722088948139],[122,197,66,-0.28792781598142536],[122,197,67,-0.28664497101498787],[122,197,68,-0.2852242136208667],[122,197,69,-0.2836662252810642],[122,197,70,-0.2819718318102499],[122,197,71,-0.2801420058366102],[122,197,72,-0.2781778692874718],[122,197,73,-0.27608069587978323],[122,197,74,-0.2738519136152804],[122,197,75,-0.271493107280552],[122,197,76,-0.2690060209518609],[122,197,77,-0.2663925605047558],[122,197,78,-0.2636547961284944],[122,197,79,-0.2607949648452329],[122,198,64,-0.28997455356718305],[122,198,65,-0.28896922316159823],[122,198,66,-0.28782502079650063],[122,198,67,-0.2865423468875353],[122,198,68,-0.28512174125254053],[122,198,69,-0.28356388558293144],[122,198,70,-0.28186960591983634],[122,198,71,-0.28003987513504147],[122,198,72,-0.2780758154167119],[122,198,73,-0.27597870075996245],[122,198,74,-0.2737499594621129],[122,198,75,-0.27139117662283974],[122,198,76,-0.2689040966490782],[122,198,77,-0.26629062576471096],[122,198,78,-0.2635528345250694],[122,198,79,-0.26069296033619305],[122,199,64,-0.2898389590519871],[122,199,65,-0.2888337480487375],[122,199,66,-0.2876896539942243],[122,199,67,-0.28640707740287163],[122,199,68,-0.2849865582007981],[122,199,69,-0.28342877819726287],[122,199,70,-0.28173456356085835],[122,199,71,-0.2799048873005122],[122,199,72,-0.27794087175126014],[122,199,73,-0.2758437910648729],[122,199,74,-0.27361507370515925],[122,199,75,-0.2712563049481669],[122,199,76,-0.268769229387132],[122,199,77,-0.26615575344221176],[122,199,78,-0.2634179478750298],[122,199,79,-0.2605580503079762],[122,200,64,-0.2896799996353965],[122,200,65,-0.28867484172806435],[122,200,66,-0.2875307958708647],[122,200,67,-0.28624826262172554],[122,200,68,-0.2848277819544708],[122,200,69,-0.2832700357302905],[122,200,70,-0.2815758501739608],[122,200,71,-0.27974619835486925],[122,200,72,-0.2777822026728143],[122,200,73,-0.27568513734865385],[122,200,74,-0.2734564309196318],[122,200,75,-0.27109766873959906],[122,200,76,-0.268610595483986],[122,200,77,-0.26599711765955536],[122,200,78,-0.2632593061189642],[122,200,79,-0.26039939858008454],[122,201,64,-0.2895071215188688],[122,201,65,-0.2885019767449165],[122,201,66,-0.28735794281710525],[122,201,67,-0.28607542030402877],[122,201,68,-0.2846549491912084],[122,201,69,-0.28309721135257193],[122,201,70,-0.2814030330266789],[122,201,71,-0.2795733872977526],[122,201,72,-0.27760939658148553],[122,201,73,-0.2755123351156934],[122,201,74,-0.2732836314556467],[122,201,75,-0.2709248709742995],[122,201,76,-0.2684377983672648],[122,201,77,-0.2658243201625722],[122,201,78,-0.26308650723523663],[122,201,79,-0.2602265973265834],[122,202,64,-0.2889747606485561],[122,202,65,-0.2879696134457055],[122,202,66,-0.2868255771593843],[122,202,67,-0.2855430523585696],[122,202,68,-0.2841225790290821],[122,202,69,-0.28256483904506113],[122,202,70,-0.2808706586451877],[122,202,71,-0.27904101091371414],[122,202,72,-0.2770770182662672],[122,202,73,-0.27497995494049854],[122,202,74,-0.27275124949141594],[122,202,75,-0.27039248729160725],[122,202,76,-0.2679054130362134],[122,202,77,-0.26529193325268496],[122,202,78,-0.2625541188153473],[122,202,79,-0.2596942074647217],[122,203,64,-0.28897034289927637],[122,203,65,-0.28796514630400294],[122,203,66,-0.28682106241708727],[122,203,67,-0.2855384918097278],[122,203,68,-0.28411797446798603],[122,203,69,-0.2825601922642177],[122,203,70,-0.2808659714332452],[122,203,71,-0.27903628505334166],[122,203,72,-0.2770722555319852],[122,203,73,-0.27497515709646125],[122,203,74,-0.2727464182891448],[122,203,75,-0.2703876244676755],[122,203,76,-0.26790052030988176],[122,203,77,-0.26528701232348784],[122,203,78,-0.2625491713606276],[122,203,79,-0.2596892351371177],[122,204,64,-0.2889551133379076],[122,204,65,-0.2879497464692925],[122,204,66,-0.28680549848610837],[122,204,67,-0.2855227699672094],[122,204,68,-0.28410210089949084],[122,204,69,-0.2825441731491568],[122,204,70,-0.2808498129377295],[122,204,71,-0.2790199933228691],[122,204,72,-0.2770558366839623],[122,204,73,-0.2749586172125582],[122,204,74,-0.2727297634074818],[122,204,75,-0.27037086057484183],[122,204,76,-0.2678836533327842],[122,204,77,-0.2652700481210277],[122,204,78,-0.26253211571520707],[122,204,79,-0.25967209374597167],[122,205,64,-0.28874539516206865],[122,205,65,-0.2877396663741444],[122,205,66,-0.2865950695963235],[122,205,67,-0.2853120054241307],[122,205,68,-0.28389101384662585],[122,205,69,-0.2823327767173248],[122,205,70,-0.28063812022986256],[122,205,71,-0.27880801739846106],[122,205,72,-0.27684359054316576],[122,205,73,-0.27474611377992586],[122,205,74,-0.27251701551535235],[122,205,75,-0.2701578809463637],[122,205,76,-0.26767045456457983],[122,205,77,-0.265056642665492],[122,205,78,-0.2623185158624407],[122,205,79,-0.2594583116053444],[122,206,64,-0.28851256594151287],[122,206,65,-0.28750621538045973],[122,206,66,-0.28636101937068137],[122,206,67,-0.2850773785369086],[122,206,68,-0.2836558328724792],[122,206,69,-0.2820970642096642],[122,206,70,-0.2804018986947313],[122,206,71,-0.27857130926781093],[122,206,72,-0.27660641814752407],[122,206,73,-0.2745084993204536],[122,206,74,-0.2722789810352855],[122,206,75,-0.26991944830183767],[122,206,76,-0.2674316453948291],[122,206,77,-0.2648174783624251],[122,206,78,-0.2620790175395824],[122,206,79,-0.25921850006614555],[122,207,64,-0.28825093094950016],[122,207,65,-0.28724363393117525],[122,207,66,-0.2860975257654771],[122,207,67,-0.2848130071224685],[122,207,68,-0.2833906180028648],[122,207,69,-0.2818310402074521],[122,207,70,-0.2801350998112375],[122,207,71,-0.2783037696423952],[122,207,72,-0.27633817176596953],[122,207,73,-0.2742395799724142],[122,207,74,-0.2720094222707957],[122,207,75,-0.2696492833868792],[122,207,76,-0.267160907265947],[122,207,77,-0.26454619958038905],[122,207,78,-0.26180723024208585],[122,207,79,-0.2589462359195366],[122,208,64,-0.28795510339936803],[122,208,65,-0.2869464735447259],[122,208,66,-0.285799080832008],[122,208,67,-0.2845133259963656],[122,208,68,-0.28308974905013773],[122,208,69,-0.28152903175099153],[122,208,70,-0.2798320000747817],[122,208,71,-0.2779996266932009],[122,208,72,-0.27603303345617625],[122,208,73,-0.27393349387909494],[122,208,74,-0.27170243563468466],[122,208,75,-0.26934144304976737],[122,208,76,-0.2668522596067394],[122,208,77,-0.26423679044981185],[122,208,78,-0.2614971048960374],[122,208,79,-0.2586354389510731],[122,209,64,-0.28761999781774716],[122,209,65,-0.2866095901269605],[122,209,66,-0.28546048396950574],[122,209,67,-0.2841730801690404],[122,209,68,-0.2827479187550772],[122,209,69,-0.28118568142941236],[122,209,70,-0.27948719403726474],[122,209,71,-0.27765342904319235],[122,209,72,-0.27568550801174374],[122,209,73,-0.27358470409292723],[122,209,74,-0.27135244451232454],[122,209,75,-0.2689903130660647],[122,209,76,-0.26650005262051335],[122,209,77,-0.2638835676167115],[122,209,78,-0.26114292657958904],[122,209,79,-0.25828036463190085],[122,210,64,-0.2872408234755284],[122,210,65,-0.28622813734129327],[122,210,66,-0.28507683523676597],[122,210,67,-0.28378731810121993],[122,210,68,-0.28236012598834004],[122,210,69,-0.2807959405304541],[122,210,70,-0.2790955874074621],[122,210,71,-0.2772600388205254],[122,210,72,-0.2752904159704809],[122,210,73,-0.273187991541053],[122,210,74,-0.2709541921866979],[122,210,75,-0.2685906010252941],[122,210,76,-0.266098960135531],[122,210,77,-0.2634811730590352],[122,210,78,-0.2607393073072538],[122,210,79,-0.25787559687304895],[122,211,64,-0.2868130778765985],[122,211,65,-0.28579756003710677],[122,211,66,-0.2846435287224952],[122,211,67,-0.28335138501847945],[122,211,68,-0.2819216690115056],[122,211,69,-0.28035506225024787],[122,211,70,-0.27865239021178545],[122,211,71,-0.27681462477252183],[122,211,72,-0.2748428866838072],[122,211,73,-0.27273844805234526],[122,211,74,-0.2705027348252099],[122,211,75,-0.26813732927969136],[122,211,76,-0.2656439725178227],[122,211,77,-0.2630245669656226],[122,211,78,-0.2602811788770816],[122,211,79,-0.2574160408428354],[122,212,64,-0.28633254030433875],[122,212,65,-0.28531358773640014],[122,212,66,-0.2841562459743685],[122,212,67,-0.28286091628496224],[122,212,68,-0.2814281387977029],[122,212,69,-0.2798585949630894],[122,212,70,-0.2781531100154314],[122,212,71,-0.27631265544039996],[122,212,72,-0.2743383514472625],[122,212,73,-0.2722314694458752],[122,212,74,-0.2699934345282665],[122,212,75,-0.26762582795502665],[122,212,76,-0.26513038964635294],[122,212,77,-0.26250902067779347],[122,212,78,-0.25976378578070536],[122,212,79,-0.25689691584738505],[122,213,64,-0.28579526542587164],[122,213,65,-0.28477222817867065],[122,213,66,-0.28361094948678234],[122,213,67,-0.2823118308362409],[122,213,68,-0.2808754124118087],[122,213,69,-0.2793023755511932],[122,213,70,-0.27759354520389534],[122,213,71,-0.2757498923947487],[122,213,72,-0.2737725366921152],[122,213,73,-0.27166274868081286],[122,213,74,-0.269421952439607],[122,213,75,-0.2670517280234791],[122,213,76,-0.26455381395052846],[122,213,77,-0.261930109693541],[122,213,78,-0.25918267817625007],[122,213,79,-0.2563137482742377],[122,214,64,-0.2851975769540822],[122,214,65,-0.28416976092404944],[122,214,66,-0.28300387624732914],[122,214,67,-0.281700324671345],[122,214,68,-0.28025964645023815],[122,214,69,-0.27868252279444683],[122,214,70,-0.2769697783248819],[122,214,71,-0.27512238353176544],[122,214,72,-0.2731414572380909],[122,214,73,-0.27102826906778743],[122,214,74,-0.2687842419184123],[122,214,75,-0.26641095443859253],[122,214,76,-0.26391014351006603],[122,214,77,-0.26128370673435863],[122,214,78,-0.2585337049241213],[122,214,79,-0.25566236459907843],[122,215,64,-0.2845360613673892],[122,215,65,-0.28350273101467494],[122,215,66,-0.28233153134197164],[122,215,67,-0.2810228644039352],[122,215,68,-0.2795772705403111],[122,215,69,-0.2779954308201512],[122,215,70,-0.2762781694905888],[122,215,71,-0.27442645643024255],[122,215,72,-0.27244140960720176],[122,215,73,-0.27032429754168175],[122,215,74,-0.2680765417731713],[122,215,75,-0.2656997193322894],[122,215,76,-0.2631955652172093],[122,215,77,-0.2605659748746778],[122,215,78,-0.25781300668566165],[122,215,79,-0.2549388844555649],[122,216,64,-0.2838075616872905],[122,216,65,-0.2827679426943205],[122,216,66,-0.28159068161893774],[122,216,67,-0.28027618087264417],[122,216,68,-0.27882498089920926],[122,216,69,-0.2772377626127591],[122,216,70,-0.2755153498403814],[122,216,71,-0.27365871176931755],[122,216,72,-0.271668965398695],[122,216,73,-0.269547377995887],[122,216,74,-0.2672953695573216],[122,216,75,-0.26491451527396137],[122,216,76,-0.26240654800130336],[122,216,77,-0.2597733607339371],[122,216,78,-0.25701700908468517],[122,216,79,-0.25413971376827327],[122,217,64,-0.2830091713136488],[122,217,65,-0.2819624531862459],[122,217,66,-0.28077834941130164],[122,217,67,-0.2794572628105485],[122,217,68,-0.2779997339524959],[122,217,69,-0.27640644358358746],[122,217,70,-0.27467821506383017],[122,217,71,-0.27281601680695733],[122,217,72,-0.2708209647250913],[122,217,73,-0.26869432467798005],[122,217,74,-0.2664375149266376],[122,217,75,-0.26405210859160877],[122,217,76,-0.26153983611570475],[122,217,77,-0.2589025877312505],[122,217,78,-0.2561424159318657],[122,217,79,-0.2532615379487292],[122,218,64,-0.28213822791775356],[122,218,65,-0.28108356652930944],[122,218,66,-0.27989180631829313],[122,218,67,-0.2785633505738164],[122,218,68,-0.2770987400122349],[122,218,69,-0.2754986552005362],[122,218,70,-0.27376391898414576],[122,218,71,-0.27189549891921416],[122,218,72,-0.26989450970934814],[122,218,73,-0.2677622156468653],[122,218,74,-0.26550003305839676],[122,218,75,-0.26310953275506144],[122,218,76,-0.2605924424870574],[122,218,77,-0.2579506494027124],[122,218,78,-0.2551862025120126],[122,218,79,-0.2523013151545638],[122,219,64,-0.2811923073931488],[122,219,65,-0.28012882747232815],[122,219,66,-0.27892856704531666],[122,219,67,-0.2775919299295089],[122,219,68,-0.27611945701469365],[122,219,69,-0.2745118286777998],[122,219,70,-0.27276986720200047],[122,219,71,-0.270894539200238],[122,219,72,-0.26888695804313456],[122,219,73,-0.26674838629136477],[122,219,74,-0.26448023813231825],[122,219,75,-0.26208408182127285],[122,219,76,-0.25956164212692634],[122,219,77,-0.2569148027813267],[122,219,78,-0.25414560893422156],[122,219,79,-0.2512562696117795],[122,220,64,-0.28016921786419635],[122,220,65,-0.2790960154266564],[122,220,66,-0.2778863833026548],[122,220,67,-0.27654072590251355],[122,220,68,-0.27505958431760436],[122,220,69,-0.2734436387255479],[122,220,70,-0.2716937107997045],[122,220,71,-0.26981076612302],[122,220,72,-0.2677959166061915],[122,220,73,-0.26565042291022867],[122,220,74,-0.26337569687323836],[122,220,75,-0.2609733039416533],[122,220,76,-0.2584449656057558],[122,220,77,-0.25579256183953025],[122,220,78,-0.25301813354487146],[122,220,79,-0.25012388500009664],[122,221,64,-0.2790669937524225],[122,221,65,-0.27798313847703293],[122,221,66,-0.27676323776290357],[122,221,67,-0.2754076966816542],[122,221,68,-0.273917056557029],[122,221,69,-0.27229199735961684],[122,221,70,-0.27053334010578745],[122,221,71,-0.2686420492609105],[122,221,72,-0.26661923514682284],[122,221,73,-0.2644661563536157],[122,221,74,-0.2621842221555756],[122,221,75,-0.2597749949314948],[122,221,76,-0.2572401925892035],[122,221,77,-0.2545816909943587],[122,221,78,-0.2518015264035155],[122,221,79,-0.24890189790143125],[122,222,64,-0.2778838899006282],[122,222,65,-0.2767884274506718],[122,222,66,-0.2755573380771189],[122,222,67,-0.27419102758495884],[122,222,68,-0.27269003756380994],[122,222,69,-0.27105504777119727],[122,222,70,-0.26928687851996536],[122,222,71,-0.2673864930698977],[122,222,72,-0.265355000023498],[122,222,73,-0.26319365572602016],[122,222,74,-0.2609038666695639],[122,222,75,-0.2584871919014662],[122,222,76,-0.25594534543683045],[122,222,77,-0.2532801986752361],[122,222,78,-0.25049378282164847],[122,222,79,-0.2475882913114814],[122,223,64,-0.2766183757547318],[122,223,65,-0.2755103300445716],[122,223,66,-0.27426711094964107],[122,223,67,-0.27288912508405105],[122,223,68,-0.2713769143395717],[122,223,69,-0.2697311582564802],[122,223,70,-0.2679526763984582],[122,223,71,-0.26604243073160594],[122,223,72,-0.26400152800753485],[122,223,73,-0.26183122215061716],[122,223,74,-0.25953291664921996],[122,223,75,-0.257108166951143],[122,223,76,-0.25455868286311045],[122,223,77,-0.2518863309543543],[122,223,78,-0.24909313696431223],[122,223,79,-0.246181288214391],[122,224,64,-0.27526912960339833],[122,224,65,-0.27414750501109264],[122,224,66,-0.2728911962716569],[122,224,67,-0.27150061088772526],[122,224,68,-0.2699762910923329],[122,224,69,-0.26831891620632464],[122,224,70,-0.2665293049997165],[122,224,71,-0.2646084180570809],[122,224,72,-0.26255736014691633],[122,224,73,-0.2603773825950787],[122,224,74,-0.25806988566210287],[122,224,75,-0.25563642092463446],[122,224,76,-0.2530786936608207],[122,224,77,-0.2503985652396985],[122,224,78,-0.2475980555146029],[122,224,79,-0.24467934522054646],[122,225,64,-0.2738350328754344],[122,225,65,-0.2726988164017846],[122,225,66,-0.2714284413134733],[122,225,67,-0.27002431608467825],[122,225,68,-0.26848698333170407],[122,225,69,-0.26681712215591746],[122,225,70,-0.2650155504905344],[122,225,71,-0.2630832274513293],[122,225,72,-0.26102125569122414],[122,225,73,-0.25883088375884233],[122,225,74,-0.2565135084608452],[122,225,75,-0.2540706772282809],[122,225,76,-0.251504090486789],[122,225,77,-0.2488156040306998],[122,225,78,-0.24600723140105385],[122,225,79,-0.243081146267488],[122,226,64,-0.2723151644949081],[122,226,65,-0.27116332786942066],[122,226,66,-0.2698778949754629],[122,226,67,-0.2684592753453605],[122,226,68,-0.2669080120236301],[122,226,69,-0.26522478389438875],[122,226,70,-0.2634104080125079],[122,226,71,-0.26146584193857725],[122,226,72,-0.25939218607764036],[122,226,73,-0.25719068602178585],[122,226,74,-0.2548627348964091],[122,226,75,-0.25240987571038],[122,226,76,-0.24983380370995312],[122,226,77,-0.24713636873646716],[122,226,78,-0.24431957758785006],[122,226,79,-0.24138559638388546],[122,227,64,-0.27070879529406255],[122,227,65,-0.2695402970283094],[122,227,66,-0.2682388020977525],[122,227,67,-0.2668047211830149],[122,227,68,-0.265238597804749],[122,227,69,-0.26354111063445207],[122,227,70,-0.261713075808907],[122,227,71,-0.25975544924831706],[122,227,72,-0.2576693289780939],[122,227,73,-0.2554559574543831],[122,227,74,-0.25311672389314355],[122,227,75,-0.25065316660301473],[122,227,76,-0.2480669753218092],[122,227,77,-0.2453599935566757],[122,227,78,-0.24253422092795174],[122,227,79,-0.23959181551665865],[122,228,64,-0.2690153824839948],[122,228,65,-0.26782916987285554],[122,228,66,-0.2665105978286244],[122,228,67,-0.26506007827387423],[122,228,68,-0.2634781552563372],[122,228,69,-0.2617655072420392],[122,228,70,-0.25992294941193583],[122,228,71,-0.25795143596211334],[122,228,72,-0.255852062407521],[122,228,73,-0.2536260678893113],[122,228,74,-0.2512748374856114],[122,228,75,-0.24879990452595546],[122,228,76,-0.24620295290921557],[122,228,77,-0.24348581942507985],[122,228,78,-0.24065049607909206],[122,228,79,-0.23769913242120966],[122,229,64,-0.2672345641830528],[122,229,65,-0.26602957525432114],[122,229,66,-0.2646929020515827],[122,229,67,-0.2632249578364707],[122,229,68,-0.26162628723779224],[122,229,69,-0.2598975685258832],[122,229,70,-0.2580396158903291],[122,229,71,-0.2560533817211177],[122,229,72,-0.25393995889318843],[122,229,73,-0.25170058305445697],[122,229,74,-0.24933663491713542],[122,229,75,-0.24684964255257935],[122,229,76,-0.2442412836895025],[122,229,77,-0.24151338801559963],[122,229,78,-0.23866793948260212],[122,229,79,-0.2357070786147133],[122,230,64,-0.2653661540030341],[122,230,65,-0.2641413194158715],[122,230,66,-0.26278551387116866],[122,230,67,-0.26129915207013876],[122,230,68,-0.2596827792797388],[122,230,69,-0.2579370735871319],[122,230,70,-0.256062848157372],[122,230,71,-0.25406105349437946],[122,230,72,-0.2519327797051687],[122,230,73,-0.24967925876741182],[122,230,74,-0.24730186680015165],[122,230,75,-0.24480212633790344],[122,230,76,-0.24218170860797728],[122,230,77,-0.23944243581107094],[122,230,78,-0.23658628340514842],[122,230,79,-0.2336153823925602],[122,231,64,-0.2634101356931471],[122,231,65,-0.26216438058586955],[122,231,66,-0.26078840615748955],[122,231,67,-0.25928262865267904],[122,231,68,-0.2576475940367212],[122,231,69,-0.255883980228958],[122,231,70,-0.2539925993393065],[122,231,71,-0.25197439990791626],[122,231,72,-0.24983046914792806],[122,231,73,-0.24756203519141673],[122,231,74,-0.24517046933833408],[122,231,75,-0.24265728830868638],[122,231,76,-0.2400241564977862],[122,231,77,-0.2372728882346189],[122,231,78,-0.23440545004334856],[122,231,79,-0.23142396290791],[122,232,64,-0.26136665784168767],[122,232,65,-0.2600989036293637],[122,232,66,-0.25870172014940507],[122,232,67,-0.2571755252971242],[122,232,68,-0.25552086579942623],[122,232,69,-0.2537384194261084],[122,232,70,-0.2518289972040665],[122,232,71,-0.24979354563448575],[122,232,72,-0.24763314891297084],[122,232,73,-0.24534903115270168],[122,232,74,-0.24294255861042913],[122,232,75,-0.24041524191554609],[122,232,76,-0.23776873830207346],[122,232,77,-0.23500485384359993],[122,232,78,-0.23212554569120325],[122,232,79,-0.22913292431429721],[122,233,64,-0.2592360286355193],[122,233,65,-0.2579451947578676],[122,233,66,-0.2565257601164701],[122,233,67,-0.2549781443677086],[122,233,68,-0.2533028950665369],[122,233,69,-0.25150068985449237],[122,233,70,-0.2495723386504447],[122,233,71,-0.2475187858441611],[122,233,72,-0.24534111249264268],[122,233,73,-0.24304053851931806],[122,233,74,-0.2406184249159068],[122,233,75,-0.23807627594719327],[122,233,76,-0.2354157413585437],[122,233,77,-0.23263861858621115],[122,233,78,-0.22974685497045078],[122,233,79,-0.22674254997139565],[122,234,64,-0.2570187106773213],[122,234,65,-0.255703716297388],[122,234,66,-0.25426098807959097],[122,234,67,-0.25269094755499577],[122,234,68,-0.25099414317617164],[122,234,69,-0.24917125248076621],[122,234,70,-0.24722308425764505],[122,234,71,-0.24515058071566553],[122,234,72,-0.2429548196550475],[122,234,73,-0.24063701664142345],[122,234,74,-0.23819852718238088],[122,234,75,-0.2356408489067373],[122,234,76,-0.23296562374638197],[122,234,77,-0.2301746401207283],[122,234,78,-0.22726983512379906],[122,234,79,-0.22425329671389393],[122,235,64,-0.25471531586053986],[122,235,65,-0.25337508151464017],[122,235,66,-0.25190801859033196],[122,235,67,-0.25031455061010377],[122,235,68,-0.24859522699684755],[122,235,69,-0.24675072521184938],[122,235,70,-0.24478185289515797],[122,235,71,-0.24268955000840087],[122,235,72,-0.24047489098001185],[122,235,73,-0.23813908685295182],[122,235,74,-0.23568348743473388],[122,235,75,-0.23310958344999777],[122,235,76,-0.23041900869546106],[122,235,77,-0.22761354219729835],[122,235,78,-0.22469511037096457],[122,235,79,-0.22166578918341573],[122,236,64,-0.2523266003021549],[122,236,65,-0.2509600495015605],[122,236,66,-0.24946761356898584],[122,236,67,-0.2478497181381385],[122,236,68,-0.24610691367808157],[122,236,69,-0.24423987760448762],[122,236,70,-0.24224941639307296],[122,236,71,-0.24013646769528763],[122,236,72,-0.237902102456217],[122,236,73,-0.2355475270347852],[122,236,74,-0.23307408532606466],[122,236,75,-0.23048326088594195],[122,236,76,-0.22777667905796306],[122,236,77,-0.2249561091024136],[122,236,78,-0.22202346632764536],[122,236,79,-0.21898081422360616],[122,237,64,-0.24985345933321068],[122,237,65,-0.2484595201180686],[122,237,66,-0.24694067720135693],[122,237,67,-0.24529735845078737],[122,237,68,-0.24353011546057712],[122,237,69,-0.24163962563481023],[122,237,70,-0.2396266942727775],[122,237,71,-0.23749225665636353],[122,237,72,-0.23523738013944362],[122,237,73,-0.2328632662393777],[122,237,74,-0.23037125273040526],[122,237,75,-0.22776281573919244],[122,237,76,-0.2250395718423548],[122,237,77,-0.22220328016600865],[122,237,78,-0.21925584448736635],[122,237,79,-0.21619931533832948],[122,238,64,-0.24729692254704505],[122,238,65,-0.24587452899300954],[122,238,66,-0.24432825089418853],[122,238,67,-0.2426585184780018],[122,238,68,-0.24086588454592706],[122,238,69,-0.2389510265278153],[122,238,70,-0.23691474853797234],[122,238,71,-0.23475798343306986],[122,238,72,-0.2324817948718576],[122,238,73,-0.23008737937675583],[122,238,74,-0.22757606839713507],[122,238,75,-0.22494933037453502],[122,238,76,-0.22220877280964724],[122,238,77,-0.21935614433110862],[122,238,78,-0.2163933367661296],[122,238,79,-0.21332238721290353],[122,239,64,-0.24465814890534798],[122,239,65,-0.24320624258340773],[122,239,66,-0.24163150828936786],[122,239,67,-0.23993437873890444],[122,239,68,-0.2381154080259703],[122,239,69,-0.23617527364691426],[122,239,70,-0.23411477852613716],[122,239,71,-0.2319348530433628],[122,239,72,-0.22963655706247843],[122,239,73,-0.22722108196203927],[122,239,74,-0.22468975266723357],[122,239,75,-0.22204402968356596],[122,239,76,-0.21928551113208017],[122,239,77,-0.21641593478617172],[122,239,78,-0.21343718011000912],[122,239,79,-0.21035127029851697],[122,240,64,-0.24193842190193737],[122,240,65,-0.24045595329192437],[122,240,66,-0.23885175033679795],[122,240,67,-0.2371262483718074],[122,240,68,-0.23528000287168638],[122,240,69,-0.2333136914434233],[122,240,70,-0.23122811582033798],[122,240,71,-0.22902420385753686],[122,240,72,-0.22670301152871064],[122,240,73,-0.22426572492436014],[122,240,74,-0.22171366225125233],[122,240,75,-0.21904827583336084],[122,240,76,-0.21627115411411524],[122,240,77,-0.21338402366000697],[122,240,78,-0.21038875116557265],[122,240,79,-0.2072873454597054],[122,241,64,-0.23913914478434284],[122,241,65,-0.23762507464260352],[122,241,66,-0.23599040042602304],[122,241,67,-0.2342355602234325],[122,241,68,-0.2323611109817174],[122,241,69,-0.2303677304660965],[122,241,70,-0.22825621922145967],[122,241,71,-0.22602750253484827],[122,241,72,-0.22368263239903308],[122,241,73,-0.2212227894772799],[122,241,74,-0.21864928506910264],[122,241,75,-0.21596356307726172],[122,241,76,-0.2131672019758276],[122,241,77,-0.21026191677936001],[122,241,78,-0.20724956101322323],[122,241,79,-0.2041321286849872],[122,242,64,-0.23626183583307225],[122,242,65,-0.23471513651478348],[122,242,66,-0.23304899957648417],[122,242,67,-0.23126386599720483],[122,242,68,-0.2293602942903944],[122,242,69,-0.22733896243056395],[122,242,70,-0.22520066978074071],[122,242,71,-0.22294633902081185],[122,242,72,-0.22057701807671426],[122,242,73,-0.21809388205056468],[122,242,74,-0.2154982351515211],[122,242,75,-0.21279151262764384],[122,242,76,-0.20997528269856613],[122,242,77,-0.2070512484890339],[122,242,78,-0.2040212499633267],[122,242,79,-0.20088726586051675],[122,243,64,-0.2333081236987068],[122,243,65,-0.23172778043532283],[122,243,66,-0.23002920168655294],[122,243,67,-0.22821283146077287],[122,243,68,-0.22627922993541305],[122,243,69,-0.22422907534883596],[122,243,70,-0.22206316589276154],[122,243,71,-0.21978242160532324],[122,243,72,-0.21738788626470895],[122,243,73,-0.2148807292834829],[122,243,74,-0.21226224760337764],[122,243,75,-0.20953386759082548],[122,243,76,-0.2066971469330402],[122,243,77,-0.20375377653470572],[122,243,78,-0.20070558241528813],[122,243,79,-0.19755452760692238],[122,244,64,-0.23027974279676122],[122,244,65,-0.22866475492907257],[122,244,66,-0.22693276884127744],[122,244,67,-0.22508423171268443],[122,244,68,-0.22311970548509785],[122,244,69,-0.22103986871880021],[122,244,70,-0.2188455184488174],[122,244,71,-0.2165375720415409],[122,244,72,-0.21411706905166794],[122,244,73,-0.2115851730795515],[122,244,74,-0.20894317362875015],[122,244,75,-0.2061924879640492],[122,244,76,-0.20333466296976177],[122,244,77,-0.20037137700836694],[122,244,78,-0.1973044417795009],[122,244,79,-0.19413580417925502],[122,245,64,-0.22717852876022782],[122,245,65,-0.22552791092751545],[122,245,66,-0.22376156667875802],[122,245,67,-0.22187994650814125],[122,245,68,-0.21988361422516722],[122,245,69,-0.2177732487736298],[122,245,70,-0.2155496460505919],[122,245,71,-0.2132137207254391],[122,245,72,-0.2107665080589748],[122,245,73,-0.20820916572264447],[122,245,74,-0.20554297561768164],[122,245,75,-0.20276934569444494],[122,245,76,-0.19988981177175613],[122,245,77,-0.19690603935629836],[122,245,78,-0.19381982546208443],[122,245,79,-0.19063310042995696],[122,246,64,-0.22400641394995624],[122,246,65,-0.2223191972357249],[122,246,66,-0.22051755981530885],[122,246,67,-0.21860195564398077],[122,246,68,-0.21657295050515724],[122,246,69,-0.21443122379126056],[122,246,70,-0.21217757028429218],[122,246,71,-0.20981290193619562],[122,246,72,-0.2073382496489703],[122,246,73,-0.20475476505462886],[122,246,74,-0.20206372229478398],[122,246,75,-0.19926651980014165],[122,246,76,-0.1963646820697046],[122,246,77,-0.19335986144974737],[122,246,78,-0.19025383991257483],[122,246,79,-0.18704853083502138],[122,247,64,-0.22076542302279645],[122,247,65,-0.21904065605757095],[122,247,66,-0.21720280732933017],[122,247,67,-0.2152523344028202],[122,247,68,-0.21318980514443298],[122,247,69,-0.211015899463862],[122,247,70,-0.2087314110551678],[122,247,71,-0.2063372491373363],[122,247,72,-0.20383444019429087],[122,247,73,-0.20122412971444859],[122,247,74,-0.198507583929609],[122,247,75,-0.19568619155345124],[122,247,76,-0.19276146551944473],[122,247,77,-0.18973504471823033],[122,247,78,-0.18660869573449113],[122,247,79,-0.1833843145832631],[122,248,64,-0.21745766855742188],[122,248,65,-0.215694418579087],[122,248,66,-0.2138194583038061],[122,248,67,-0.21183324905626666],[122,248,68,-0.20973636089769332],[122,248,69,-0.20752947432721336],[122,248,70,-0.20521338198232397],[122,248,71,-0.2027889903385468],[122,248,72,-0.20025732140822583],[122,248,73,-0.1976195144385663],[122,248,74,-0.19487682760869596],[122,248,75,-0.19203063972602796],[122,248,76,-0.18908245192173068],[122,248,77,-0.18603388934536136],[122,248,78,-0.18288670285868103],[122,248,79,-0.1796427707286018],[122,249,64,-0.2140853467379924],[122,249,65,-0.2122827006101623],[122,249,66,-0.21036974742759174],[122,249,67,-0.2083469524273669],[122,249,68,-0.20621488798014376],[122,249,69,-0.20397423525015512],[122,249,70,-0.2016257858540037],[122,249,71,-0.19917044351832347],[122,249,72,-0.1966092257362705],[122,249,73,-0.19394326542293738],[122,249,74,-0.19117381256947152],[122,249,75,-0.18830223589618178],[122,249,76,-0.1853300245044338],[122,249,77,-0.18225878952739216],[122,249,78,-0.1790902657796284],[122,249,79,-0.17582631340554433],[122,250,64,-0.21065073309558102],[122,250,65,-0.2088077982844806],[122,250,66,-0.20685599065541305],[122,250,67,-0.20479577951221284],[122,250,68,-0.20262773965225145],[122,250,69,-0.20035255298403343],[122,250,70,-0.19797101014325091],[122,250,71,-0.1954840121073822],[122,250,72,-0.19289257180879216],[122,250,73,-0.19019781574643224],[122,250,74,-0.1874009855959171],[122,250,75,-0.184503439818265],[122,250,76,-0.1815066552670992],[122,250,77,-0.17841222879437357],[122,250,78,-0.17522187885463447],[122,250,79,-0.17193744710777503],[122,251,64,-0.20715617830727528],[122,251,65,-0.20527208381761575],[122,251,66,-0.20328058092648615],[122,251,67,-0.20118214316061322],[122,251,68,-0.19897734786399446],[122,251,69,-0.19666687777204483],[122,251,70,-0.1942515225838668],[122,251,71,-0.19173218053272834],[122,251,72,-0.18910985995470897],[122,251,73,-0.1863856808556108],[122,251,74,-0.18356087647590724],[122,251,75,-0.1806367948540265],[122,251,76,-0.1776149003877565],[122,251,77,-0.17449677539384056],[122,251,78,-0.17128412166577334],[122,251,79,-0.1679787620297566],[122,252,64,-0.20360410405312346],[122,252,65,-0.20167800132345592],[122,252,66,-0.19964598394193078],[122,252,67,-0.1975085298160062],[122,252,68,-0.1952662189587786],[122,252,69,-0.19291973501866067],[122,252,70,-0.1904698668068343],[122,252,71,-0.18791750982257072],[122,252,72,-0.1852636677763716],[122,252,73,-0.1825094541110336],[122,252,74,-0.17965609352040446],[122,252,75,-0.17670492346612976],[122,252,76,-0.1736573956921783],[122,252,77,-0.17051507773721186],[122,252,78,-0.16727965444481452],[122,252,79,-0.16395292947153184],[122,253,64,-0.19999699893084577],[122,253,65,-0.19802806268887685],[122,253,66,-0.19595473400089758],[122,253,67,-0.19377749531453015],[122,253,68,-0.19149692943694174],[122,253,69,-0.18911372101904622],[122,253,70,-0.18662865803713102],[122,253,71,-0.18404263327199488],[122,253,72,-0.18135664578555521],[122,253,73,-0.17857180239502446],[122,253,74,-0.17568931914442454],[122,253,75,-0.17271052277373922],[122,253,76,-0.16963685218549185],[122,253,77,-0.16646985990881435],[122,253,78,-0.1632112135610202],[122,253,79,-0.1598626973066377],[122,254,64,-0.19633741442821362],[122,254,65,-0.19432484350656454],[122,254,66,-0.19220942989530748],[122,254,67,-0.18999166074315454],[122,254,68,-0.18767212177874193],[122,254,69,-0.18525149874837277],[122,254,70,-0.1827305788508224],[122,254,71,-0.18011025216929077],[122,254,72,-0.17739151310046253],[122,254,73,-0.1745754617807761],[122,254,74,-0.1716633055096638],[122,254,75,-0.16865636017007257],[122,254,76,-0.16555605164604315],[122,254,77,-0.16236391723742138],[122,254,78,-0.15908160707171048],[122,254,79,-0.15571088551301926],[122,255,64,-0.19262796095327972],[122,255,65,-0.19057097906617326],[122,255,66,-0.18841273086339383],[122,255,67,-0.1861537083570569],[122,255,68,-0.1837945003270231],[122,255,69,-0.1813357937112171],[122,255,70,-0.1787783749926356],[122,255,71,-0.17612313158313087],[122,255,72,-0.17337105320393154],[122,255,73,-0.17052323326300056],[122,255,74,-0.16758087022899226],[122,255,75,-0.16454526900211985],[122,255,76,-0.1614178422817094],[122,255,77,-0.15820011193051486],[122,255,78,-0.15489371033580113],[122,255,79,-0.1515003817671552],[122,256,64,-0.18887130392237195],[122,256,65,-0.18676916040373126],[122,256,66,-0.18456735260195484],[122,256,67,-0.18226637755615793],[122,256,68,-0.179866827229464],[122,256,69,-0.17736938985095246],[122,256,70,-0.1747748512539149],[122,256,71,-0.1720840962105067],[122,256,72,-0.16929810976275594],[122,256,73,-0.16641797855002827],[122,256,74,-0.16344489213271196],[122,256,75,-0.16038014431243175],[122,256,76,-0.1572251344485699],[122,256,77,-0.15398136877116808],[122,256,78,-0.15065046169021645],[122,256,79,-0.14723413710129085],[122,257,64,-0.18507015990575193],[122,257,65,-0.18292213040919192],[122,257,66,-0.1806760633372153],[122,257,67,-0.17833246092071176],[122,257,68,-0.1758919184403097],[122,257,69,-0.17335512551903065],[122,257,70,-0.17072286741085785],[122,257,71,-0.16799602628531501],[122,257,72,-0.1651755825080098],[122,257,73,-0.16226261591724866],[122,257,74,-0.15925830709647837],[122,257,75,-0.1561639386428696],[122,257,76,-0.15298089643181928],[122,257,77,-0.14971067087744228],[122,257,78,-0.14635485818906424],[122,257,79,-0.14291516162367046],[122,258,64,-0.1812272928311287],[122,258,65,-0.17903267999232525],[122,258,66,-0.1767416799544954],[122,258,67,-0.17435480030614714],[122,258,68,-0.17187263978178302],[122,258,69,-0.16929588950435448],[122,258,70,-0.16662533422323444],[122,258,71,-0.16386185354779986],[122,258,72,-0.16100642317658354],[122,258,73,-0.15806011612209758],[122,258,74,-0.1550241039310865],[122,258,75,-0.15189965790052545],[122,258,76,-0.1486881502891383],[122,258,77,-0.1453910555245076],[122,258,78,-0.1420099514057891],[122,258,79,-0.13854652030198222],[122,259,64,-0.1773455102449356],[122,259,65,-0.17510364430685554],[122,259,66,-0.1727670641865885],[122,259,67,-0.1703362829970676],[122,259,68,-0.1678119030650796],[122,259,69,-0.165194617122642],[122,259,70,-0.16248520949348677],[122,259,71,-0.15968455727475184],[122,259,72,-0.15679363151383102],[122,259,73,-0.15381349838049435],[122,259,74,-0.15074532033402777],[122,259,75,-0.14759035728571257],[122,259,76,-0.1443499677564194],[122,259,77,-0.1410256100293873],[122,259,78,-0.1376188432982],[122,259,79,-0.13413132880991263],[122,260,64,-0.17342765963126794],[122,260,65,-0.1711378990327419],[122,260,66,-0.16875511886074712],[122,260,67,-0.1662798379203001],[122,260,68,-0.16371266227084202],[122,260,69,-0.1610542863656781],[122,260,70,-0.1583054941861089],[122,260,71,-0.15546716037035346],[122,260,72,-0.15254025133721716],[122,260,73,-0.14952582640461592],[122,260,74,-0.14642503890270026],[122,260,75,-0.14323913728191195],[122,260,76,-0.13996946621573292],[122,260,77,-0.13661746769820965],[122,260,78,-0.13318468213625606],[122,260,79,-0.12967274943669604],[122,261,64,-0.16947662478867986],[122,261,65,-0.1671383567168026],[122,261,66,-0.16470878420447632],[122,261,67,-0.16218843191720267],[122,261,68,-0.15957790978931752],[122,261,69,-0.1568779141106601],[122,261,70,-0.15408922860750862],[122,261,71,-0.15121272551788512],[122,261,72,-0.14824936666118205],[122,261,73,-0.14520020450222193],[122,261,74,-0.14206638320949316],[122,261,75,-0.13884913970789536],[122,261,76,-0.13554980472575473],[122,261,77,-0.13216980383619004],[122,261,78,-0.1287106584928358],[122,261,79,-0.12517398705987953],[122,262,64,-0.16549532226474417],[122,262,65,-0.1631079631715846],[122,262,66,-0.16063103421003833],[122,262,67,-0.15806506607512505],[122,262,68,-0.15541067272009867],[122,262,69,-0.1526685523895348],[122,262,70,-0.14983948864625507],[122,262,71,-0.14692435139218668],[122,262,72,-0.14392409788311356],[122,262,73,-0.14083977373743017],[122,262,74,-0.13767251393863666],[122,262,75,-0.13442354383191574],[122,262,76,-0.1310941801145457],[122,262,77,-0.12768583182023474],[122,262,78,-0.12420000129737774],[122,262,79,-0.12063828518119946],[122,263,64,-0.16148669784826974],[122,263,65,-0.159049693932374],[122,263,66,-0.15652487305756085],[122,263,67,-0.15391277211792154],[122,263,68,-0.15121400923134065],[122,263,69,-0.1484292847182202],[122,263,70,-0.14555938207359814],[122,263,71,-0.14260516893276265],[122,263,72,-0.13956759803031987],[122,263,73,-0.13644770815282353],[122,263,74,-0.1332466250847058],[122,263,75,-0.12996556254785274],[122,263,76,-0.1266058231345728],[122,263,77,-0.12316879923405011],[122,263,78,-0.119655973952279],[122,263,79,-0.11606892202544566],[122,264,64,-0.15745372311939326],[122,264,65,-0.15496655077256416],[122,264,66,-0.15239333159696905],[122,264,67,-0.14973460885573103],[122,264,68,-0.14699100497867645],[122,264,69,-0.14416322248593572],[122,264,70,-0.14125204490448956],[122,264,71,-0.13825833767776402],[122,264,72,-0.13518304906823164],[122,264,73,-0.13202721105312648],[122,264,74,-0.1287919402130125],[122,264,75,-0.12547843861354885],[122,264,76,-0.12208799468020315],[122,264,77,-0.11862198406599689],[122,264,78,-0.11508187051229063],[122,264,79,-0.11146920670256322],[122,265,64,-0.15339939205736325],[122,265,65,-0.1508615582771995],[122,265,66,-0.14823946388855652],[122,265,67,-0.14553365869384438],[122,265,68,-0.14274476958364418],[122,265,69,-0.1398735014044517],[122,265,70,-0.1369206378189125],[122,265,71,-0.1338870421586495],[122,265,72,-0.13077365826963983],[122,265,73,-0.1275815113502538],[122,265,74,-0.12431170878168696],[122,265,75,-0.12096544095113837],[122,265,76,-0.11754398206747724],[122,265,77,-0.11404869096949022],[122,265,78,-0.11048101192670923],[122,265,79,-0.10684247543278058],[122,266,64,-0.14932671770615358],[122,266,65,-0.14673776047483222],[122,266,66,-0.14406634380233474],[122,266,67,-0.1413130242007954],[122,266,68,-0.13847843317176672],[122,266,69,-0.1355632780174027],[122,266,70,-0.13256834264366762],[122,266,71,-0.12949448835567612],[122,266,72,-0.1263426546451169],[122,266,73,-0.12311385996987839],[122,266,74,-0.11980920252560173],[122,266,75,-0.11642986100951774],[122,266,76,-0.11297709537631012],[122,266,77,-0.10945224758609462],[122,266,78,-0.10585674234451653],[122,266,79,-0.102192087834926],[122,267,64,-0.14523872889772255],[122,267,65,-0.14259821752750584],[122,267,66,-0.13987706167597375],[122,267,67,-0.13707582473548746],[122,267,68,-0.13419514297009388],[122,267,69,-0.13123572626946906],[122,267,70,-0.1281983588944154],[122,267,71,-0.12508390021401888],[122,267,72,-0.1218932854344209],[122,267,73,-0.11862752631932028],[122,267,74,-0.1152877119019311],[122,267,75,-0.1118750091887562],[122,267,76,-0.10839066385491358],[122,267,77,-0.10483600093110951],[122,267,78,-0.10121242548225978],[122,267,79,-0.09752142327771546],[122,268,64,-0.14113846703313637],[122,268,65,-0.13844600247908972],[122,268,66,-0.13567472103155603],[122,268,67,-0.13282519313358077],[122,268,68,-0.12989805996443288],[122,268,69,-0.12689403413565925],[122,268,70,-0.1238139003782116],[122,268,71,-0.12065851622075657],[122,268,72,-0.11742881265912125],[122,268,73,-0.11412579481699237],[122,268,74,-0.11075054259759132],[122,268,75,-0.1073042113266876],[122,268,76,-0.10378803238668777],[122,268,77,-0.10020331384189213],[122,268,78,-0.09655144105492092],[122,268,79,-0.09283387729426856],[122,269,64,-0.1370289829214532],[122,269,65,-0.13428419806185382],[122,269,66,-0.1314624353510404],[122,269,67,-0.1285642724530361],[122,269,68,-0.12559035561616289],[122,269,69,-0.1225414003105827],[122,269,70,-0.11941819185642477],[122,269,71,-0.11622158604261157],[122,269,72,-0.11295250973633342],[122,269,73,-0.10961196148329466],[122,269,74,-0.10620101209844501],[122,269,75,-0.10272080524756955],[122,269,76,-0.09917255801946456],[122,269,77,-0.09555756148879924],[122,269,78,-0.09187718126965794],[122,269,79,-0.08813285805972881],[122,270,64,-0.1329133336762635],[122,270,65,-0.1301158935611859],[122,270,66,-0.12724332491032597],[122,270,67,-0.12429621277870245],[122,270,68,-0.1212752086385202],[122,270,69,-0.11818103095760302],[122,270,70,-0.11501446576792285],[122,270,71,-0.11177636722433076],[122,270,72,-0.10846765815344894],[122,270,73,-0.10508933059283737],[122,270,74,-0.10164244632015607],[122,270,75,-0.09812813737269288],[122,270,76,-0.09454760655698458],[122,270,77,-0.090902127948631],[122,270,78,-0.08719304738229777],[122,270,79,-0.0834217829318728],[122,271,64,-0.1287945796700955],[122,271,65,-0.12594418173865457],[122,271,66,-0.12302051367213229],[122,271,67,-0.120024168086169],[122,271,68,-0.11695580183257487],[122,271,69,-0.11381613651809253],[122,271,70,-0.1106059590127525],[122,271,71,-0.1073261219479344],[122,271,72,-0.10397754420408623],[122,271,73,-0.10056121138822427],[122,271,74,-0.09707817630092264],[122,271,75,-0.09352955939317437],[122,271,76,-0.08991654921284359],[122,271,77,-0.08624040284081302],[122,271,78,-0.08250244631681936],[122,271,79,-0.07870407505494398],[122,272,64,-0.12467578154658171],[122,272,65,-0.12177215581331874],[122,272,66,-0.11879712623758781],[122,272,67,-0.11575129316476934],[122,272,68,-0.11263531898278994],[122,272,69,-0.10944992858067704],[122,272,70,-0.10619590979620136],[122,272,71,-0.10287411385271639],[122,272,72,-0.09948545578515239],[122,272,73,-0.09603091485528342],[122,272,74,-0.09251153495597803],[122,272,75,-0.08892842500481618],[122,272,76,-0.08528275932679064],[122,272,77,-0.08157577802619748],[122,272,78,-0.07780878734770885],[122,272,79,-0.07398316002659461],[122,273,64,-0.12055999729028039],[122,273,65,-0.11760290650117333],[122,273,66,-0.11457628485641885],[122,273,67,-0.11148074059963398],[122,273,68,-0.10831694181205115],[122,273,69,-0.1050856168103611],[122,273,70,-0.10178755453312771],[122,273,71,-0.09842360491588875],[122,273,72,-0.0949946792548973],[122,273,73,-0.09150175055962562],[122,273,74,-0.08794585389373738],[122,273,75,-0.08432808670491504],[122,273,76,-0.0806496091432598],[122,273,77,-0.07691164436836562],[122,273,78,-0.07311547884506575],[122,273,79,-0.06926246262781238],[122,274,64,-0.11645027935436342],[122,274,65,-0.11343951911294586],[122,274,66,-0.11036110649595487],[122,274,67,-0.10721565781300274],[122,274,68,-0.10400384699638893],[122,274,69,-0.10072640593775373],[122,274,70,-0.09738412481278486],[122,274,71,-0.09397785239409007],[122,274,72,-0.09050849635219171],[122,274,73,-0.0869770235447655],[122,274,74,-0.08338446029382696],[122,274,75,-0.07973189265125552],[122,274,76,-0.07602046665237144],[122,274,77,-0.07225138855766872],[122,274,78,-0.0684259250826994],[122,274,79,-0.06454540361607464],[122,275,64,-0.1123496718460642],[122,275,65,-0.10928507071013621],[122,275,66,-0.10615469996884169],[122,275,67,-0.10295918416469457],[122,275,68,-0.09969920323928227],[122,275,69,-0.09637549280828633],[122,275,70,-0.09298884442402683],[122,275,71,-0.0895401058256507],[122,275,72,-0.0860301811769143],[122,275,73,-0.08246003129168772],[122,275,74,-0.07883067384687831],[122,275,75,-0.07514318358316957],[122,275,76,-0.0713986924932859],[122,275,77,-0.06759838999788848],[122,275,78,-0.06374352310909853],[122,275,79,-0.05983539658160991],[122,276,64,-0.10826120776978138],[122,276,65,-0.10514262731919433],[122,276,66,-0.10196016311935563],[122,276,67,-0.09871444811161978],[122,276,68,-0.09540616840543381],[122,276,69,-0.09203606349130872],[122,276,70,-0.08860492644078255],[122,276,71,-0.08511360409349605],[122,276,72,-0.0815629972313312],[122,276,73,-0.07795406073974198],[122,276,74,-0.0742878037559696],[122,276,75,-0.07056528980454596],[122,276,76,-0.06678763691978867],[122,276,77,-0.06295601775539827],[122,276,78,-0.0590716596811498],[122,276,79,-0.055135844866643136],[122,277,64,-0.10418790632804836],[122,277,65,-0.10101524120404798],[122,277,66,-0.09778058006853363],[122,277,67,-0.09448456442655762],[122,277,68,-0.09112788671423616],[122,277,69,-0.08771129044928744],[122,277,70,-0.08423557036802398],[122,277,71,-0.08070157254891908],[122,277,72,-0.07711019452270085],[122,277,73,-0.07346238536910094],[122,277,74,-0.06975914579994957],[122,277,75,-0.06600152822902344],[122,277,76,-0.06219063682834797],[122,277,77,-0.058327627571063134],[122,277,78,-0.05441370826084896],[122,277,79,-0.050450138547871004],[122,278,64,-0.1001327702802628],[122,278,65,-0.09690594819687365],[122,278,66,-0.09361901851801135],[122,278,67,-0.09027263147608694],[122,278,68,-0.08686748599282085],[122,278,69,-0.0834043297669953],[122,278,70,-0.07988395934811587],[122,278,71,-0.07630722019610603],[122,278,72,-0.07267500672698535],[122,278,73,-0.06898826234466171],[122,278,74,-0.06524797945852451],[122,278,75,-0.06145519948725087],[122,278,76,-0.05761101284852138],[122,278,77,-0.053716558934759184],[122,278,78,-0.04977302607488299],[122,278,79,-0.04578165148204061],[122,279,64,-0.09609878335907301],[122,279,65,-0.09281776508700651],[122,279,66,-0.08947852711246279],[122,279,67,-0.08608172855756241],[122,279,68,-0.08262807498857838],[122,279,69,-0.07911831844057915],[122,279,70,-0.0755532574274344],[122,279,71,-0.07193373693730254],[122,279,72,-0.0682606484135575],[122,279,73,-0.064534929721279],[122,279,74,-0.060757565098995936],[122,279,75,-0.05692958509609658],[122,279,76,-0.05305206649559829],[122,279,77,-0.049126132222393815],[122,279,78,-0.045152951236962835],[122,279,79,-0.041133738414516785],[122,280,64,-0.0920889077446288],[122,280,65,-0.08875368706819914],[122,280,66,-0.0853621328608552],[122,280,67,-0.081914913295355],[122,280,68,-0.07841274074137039],[122,280,69,-0.0748563717267316],[122,280,70,-0.07124660688347956],[122,280,71,-0.06758429087884826],[122,280,72,-0.0638703123311305],[122,280,73,-0.06010560371055812],[122,280,74,-0.05629114122487766],[122,280,75,-0.052427944690042416],[122,280,76,-0.04851707738571048],[122,280,77,-0.04455964589566519],[122,280,78,-0.04055679993314881],[122,280,79,-0.036509732151075],[122,281,64,-0.08810608159659222],[122,281,65,-0.0847166852441234],[122,281,66,-0.08127283861641144],[122,281,67,-0.07777521909624341],[122,281,68,-0.07422454601532147],[122,281,69,-0.0706215805518493],[122,281,70,-0.06696712561236795],[122,281,71,-0.06326202569796224],[122,281,72,-0.059507166754794505],[122,281,73,-0.05570347600909292],[122,281,74,-0.0518519217862769],[122,281,75,-0.04795351331464259],[122,281,76,-0.04400930051329377],[122,281,77,-0.040020373764439454],[122,281,78,-0.035987863670044085],[122,281,79,-0.03191294079280016],[122,282,64,-0.08415321664380715],[122,282,65,-0.08070970419201268],[122,282,66,-0.07721362061517556],[122,282,67,-0.07366565266385577],[122,282,68,-0.0700665267900864],[122,282,69,-0.06641700898107644],[122,282,70,-0.06271790457659654],[122,282,71,-0.05897005807017408],[122,282,72,-0.055174352894050926],[122,282,73,-0.05133171118803587],[122,282,74,-0.04744309355192705],[122,282,75,-0.04350949878193472],[122,282,76,-0.039531963590785923],[122,282,77,-0.03551156231163116],[122,282,78,-0.031449406585743356],[122,282,79,-0.02734664503397355],[122,283,64,-0.08023319583183114],[122,283,65,-0.07673565958465184],[122,283,66,-0.07318742607339279],[122,283,67,-0.06958919157237048],[122,283,68,-0.0659416898118057],[122,283,69,-0.062245691747445375],[122,283,70,-0.05850200531329919],[122,283,71,-0.054711475157617984],[122,283,72,-0.050874982362067056],[122,283,73,-0.046993444144227514],[122,283,74,-0.04306781354309841],[122,283,75,-0.03909907908803367],[122,283,76,-0.03508826445079177],[122,283,77,-0.03103642808082152],[122,283,78,-0.026944662823770615],[122,283,79,-0.022814095523185307],[122,284,64,-0.07634887102822802],[122,284,65,-0.07279743587060972],[122,284,66,-0.06919717084359539],[122,284,67,-0.06554878189937174],[122,284,68,-0.06185301020364281],[122,284,69,-0.05811063184100845],[122,284,70,-0.054322457502882227],[122,284,71,-0.05048933215808138],[122,284,72,-0.046612134706038144],[122,284,73,-0.04269177761276971],[122,284,74,-0.03872920652927375],[122,284,75,-0.034725399892789555],[122,284,76,-0.030681368510599327],[122,284,77,-0.02659815512649316],[122,284,78,-0.022476833969885812],[122,284,79,-0.018318510287551826],[122,285,64,-0.07250306078551941],[122,285,65,-0.06889788401261407],[122,285,66,-0.06524573712929535],[122,285,67,-0.06154733591775344],[122,285,68,-0.05780342913579664],[122,285,69,-0.05401479815785276],[122,285,70,-0.05018225659793413],[122,285,71,-0.04630664991469707],[122,285,72,-0.0423888549985483],[122,285,73,-0.038429779740933756],[122,285,74,-0.03443036258547563],[122,285,75,-0.03039157206140089],[122,285,76,-0.02631440629893317],[122,285,77,-0.022199892526771958],[122,285,78,-0.018049086551648663],[122,285,79,-0.0138630722199235],[122,286,64,-0.06869854816199938],[122,286,65,-0.06503981928427263],[122,286,66,-0.06133597125848797],[122,286,67,-0.05758772984688368],[122,286,68,-0.053795851555202],[122,286,69,-0.0499611232092137],[122,286,70,-0.04608436151262513],[122,286,71,-0.04216641258650067],[122,286,72,-0.038208151490150805],[122,286,73,-0.03421048172362537],[122,286,74,-0.030174334711471656],[122,286,75,-0.026100669268207283],[122,286,76,-0.021990471045174292],[122,286,77,-0.0178447519589027],[122,286,78,-0.013664549600968717],[122,286,79,-0.009450926629316292],[122,287,64,-0.0649380786003062],[122,287,65,-0.061226019125035475],[122,287,66,-0.0574706815158621],[122,287,67,-0.053672801662920516],[122,287,68,-0.04983314397481023],[122,287,69,-0.045952500890576314],[122,287,70,-0.04203169237248591],[122,287,71,-0.03807156537973802],[122,287,72,-0.0340729933230543],[122,287,73,-0.03003687550029316],[122,287,74,-0.025964136512742653],[122,287,75,-0.021855725662547038],[122,287,76,-0.01771261633092966],[122,287,77,-0.013535805337342277],[122,287,78,-0.009326312279525156],[122,287,79,-0.005085178854447009],[122,288,64,-0.061224357863659484],[122,288,65,-0.05745922105330392],[122,288,66,-0.053652636033619944],[122,288,67,-0.04980534896818167],[122,288,68,-0.04591813232234904],[122,288,69,-0.041991784310664915],[122,288,70,-0.038027128324463755],[122,288,71,-0.034025012339823135],[122,288,72,-0.029986308305812365],[122,288,73,-0.02591191151317565],[122,288,74,-0.021802739943106803],[122,288,75,-0.017659733596572552],[122,288,76,-0.013483853803842788],[122,288,77,-0.009276082514362544],[122,288,78,-0.0050374215669456435],[122,288,79,-7.688919402631667E-4],[122,289,64,-0.05756005002996431],[122,289,65,-0.053742120637892216],[122,289,66,-0.04988456074111472],[122,289,67,-0.04598812691978124],[122,289,68,-0.0420535998487776],[122,289,69,-0.03808178368053816],[122,289,70,-0.03407350540747578],[122,289,71,-0.030029614204166416],[122,289,72,-0.025950980749239183],[122,289,73,-0.021838496527112505],[122,289,74,-0.017693073109229684],[122,289,75,-0.013515641415253438],[122,289,76,-0.009307150953878962],[122,289,77,-0.005068569043395282],[122,289,78,-8.008800119815862E-4],[122,289,79,0.0034949156222953692],[122,290,64,-0.053947775543613824],[122,290,65,-0.050077369527667975],[122,290,66,-0.04616913737313258],[122,290,67,-0.042223846217352895],[122,290,68,-0.03824228509625671],[122,290,69,-0.03422526426260619],[122,290,70,-0.030173614483275435],[122,290,71,-0.02608818631568724],[122,290,72,-0.021969849363364075],[122,290,73,-0.01781949151073181],[122,290,74,-0.013638018136827246],[122,290,75,-0.009426351308375686],[122,290,76,-0.005185428951889365],[122,290,77,-9.162040049250642E-4],[122,290,78,0.00338035645352025],[122,290,79,0.0077032720935024945],[122,291,64,-0.050390109325111704],[122,291,65,-0.04646757353949946],[122,291,66,-0.042509001536944535],[122,291,67,-0.03851517114999278],[122,291,68,-0.03448687992576413],[122,291,69,-0.03042494437970472],[122,291,70,-0.02633019922776586],[122,291,71,-0.022203496597148265],[122,291,72,-0.018045705215562508],[122,291,73,-0.01385770957914903],[122,291,74,-0.009640409098702979],[122,291,75,-0.005394717224674828],[122,291,76,-0.0011215605505969228],[122,291,77,0.0031781221049296815],[122,291,78,0.0075033806377027],[122,291,79,0.011853254618874404],[122,292,64,-0.04688957893835555],[122,292,65,-0.04291529080434231],[122,292,66,-0.038906740837962805],[122,292,67,-0.034864717702249],[122,292,68,-0.030790027604185116],[122,292,69,-0.02668349348404986],[122,292,70,-0.022545954182584982],[122,292,71,-0.01837826358613137],[122,292,72,-0.014181289749682552],[122,292,73,-0.009955913998000165],[122,292,74,-0.005703030004434367],[122,292,75,-0.0014235428479229262],[122,292,76,0.002881631952183189],[122,292,77,0.007211569423330899],[122,292,78,0.011565336149031297],[122,292,79,0.01594199130020993],[122,293,64,-0.043448662815771866],[122,293,65,-0.03942302997166494],[122,293,66,-0.035364893064200514],[122,293,67,-0.03127505171936315],[122,293,68,-0.027154320951081806],[122,293,69,-0.023003530286283824],[122,293,70,-0.018823522867171982],[122,293,71,-0.014615154530869812],[122,293,72,-0.010379292866382728],[122,293,73,-0.006116816249021925],[122,293,74,-0.001828612851929437],[122,293,75,0.002484420364815096],[122,293,76,0.0068213786878646016],[122,293,77,0.011181350706910995],[122,293,78,0.015563419393647485],[122,293,79,0.019966663203416418],[122,294,64,-0.040069788541209655],[122,294,65,-0.03599324847211459],[122,294,66,-0.03188594442943689],[122,294,67,-0.027748687131662342],[122,294,68,-0.02358230054504161],[122,294,69,-0.01938762094450726],[122,294,70,-0.01516549595121193],[122,294,71,-0.010916783546830441],[122,294,72,-0.006642351064575558],[122,294,73,-0.0023430741570749786],[122,294,74,0.00198016425925579],[122,294,75,0.006326475082859495],[122,294,76,0.010694964129063234],[122,294,77,0.015084733255344582],[122,294,78,0.019494881509854983],[122,294,79,0.02392450630323273],[122,295,64,-0.036755331190507654],[122,295,65,-0.03262835083833862],[122,295,66,-0.02847232787500091],[122,295,67,-0.024288084238015276],[122,295,68,-0.020076452989514798],[122,295,69,-0.015838277313209775],[122,295,70,-0.011574409487368154],[122,295,71,-0.0072857098339553505],[122,295,72,-0.0029730456438829544],[122,295,73,0.0013627099214842259],[122,295,74,0.005720678952933211],[122,295,75,0.010099979939627246],[122,295,76,0.01449972893931857],[122,295,77,0.01891904077240221],[122,295,78,0.02335703023983525],[122,295,79,0.027812813364946745],[122,296,64,-0.03350761172990986],[122,296,65,-0.02933068708413973],[122,296,66,-0.02512642143035486],[122,296,67,-0.020895648048534207],[122,296,68,-0.01663920923832779],[122,296,69,-0.012357955252285224],[122,296,70,-0.008052743204490842],[122,296,71,-0.003724435954753441],[122,296,72,6.260990317017573E-4],[122,296,73,0.004997990848888398],[122,296,74,0.009390366339433395],[122,296,75,0.013802351308176114],[122,296,76,0.01823307176036154],[122,296,77,0.02268165516428225],[122,296,78,0.027147231738389427],[122,296,79,0.03162893576290386],[122,297,64,-0.03032889547223999],[122,297,65,-0.026102551141871724],[122,297,66,-0.02185054663238291],[122,297,67,-0.01757372668642848],[122,297,68,-0.013272942980774777],[122,297,69,-0.008949052996034795],[122,297,70,-0.00460291886120455],[122,297,71,-2.354061731438123E-4],[122,297,72,0.004152617209046361],[122,297,73,0.008560282394600771],[122,297,74,0.01298672071699579],[122,297,75,0.017431065014684416],[122,297,76,0.02189245093703529],[122,297,77,0.026370018275325473],[122,297,78,0.030862912318812705],[122,297,79,0.03537028523591168],[122,298,64,-0.027221390590752834],[122,298,65,-0.022946179357996047],[122,298,66,-0.01864696700330294],[122,298,67,-0.01432460984892675],[122,298,68,-0.009979969086203556],[122,298,69,-0.005613909582072932],[122,298,70,-0.0012272986597877678],[122,298,71,0.0031789951460379703],[122,298,72,0.007604103360094726],[122,298,73,0.012047158862604442],[122,298,74,0.016507297211486152],[122,298,75,0.020983657989959152],[122,298,76,0.02547538617995701],[122,298,77,0.029981633561206582],[122,298,78,0.0345015601359922],[122,298,79,0.03903433557963484],[122,299,64,-0.02418724669083118],[122,299,65,-0.019863749046965966],[122,299,66,-0.015517886587373471],[122,299,67,-0.011150527327439402],[122,299,68,-0.0067625421082720336],[122,299,69,-0.0023548033403121976],[122,299,70,0.0020718162794760298],[122,299,71,0.00651644507668786],[122,299,72,0.010978213734881247],[122,299,73,0.015456256657151543],[122,299,74,0.019949713354255896],[122,299,75,0.024457729858780898],[122,299,76,0.028979460165734487],[122,299,77,0.033514067699408345],[122,299,78,0.0380607268065382],[122,299,79,0.04261862427578575],[122,300,64,-0.021228553439438996],[122,300,65,-0.016857377103353048],[122,300,66,-0.012465448546305338],[122,300,67,-0.00805364758687406],[122,300,68,-0.003622854848782886],[122,300,69,8.260495580625221E-4],[122,300,70,0.005292187383568417],[122,300,71,0.00977468361032989],[122,300,72,0.014272667853438673],[122,300,73,0.018785275787071374],[122,300,74,0.023311650598238486],[122,300,75,0.027850944467186427],[122,300,76,0.03240232007483191],[122,300,77,0.03696495213707976],[122,300,78,0.04153802896604528],[122,300,79,0.046120754058211456],[122,301,64,-0.018347339252259613],[122,301,65,-0.013929118672137454],[122,301,66,-0.009491733813302154],[122,301,67,-0.005036076404022743],[122,301,68,-5.630369810180232E-4],[122,301,69,0.003926496491713859],[122,301,70,0.008431640031709316],[122,301,71,0.012951515074344711],[122,301,72,0.017485249936684592],[122,301,73,0.02203198130871818],[122,301,74,0.026590855772370206],[122,301,75,0.031161031347771526],[122,301,76,0.03574167906717521],[122,301,77,0.040331984576364006],[122,301,78,0.04493114976357469],[122,301,79,0.04953839441596581],[122,302,64,-0.015545570038671314],[122,302,65,-0.01108096587732292],[122,302,66,-0.006598759805890532],[122,302,67,-0.002099855565186645],[122,302,68,0.0024148462672616607],[122,302,69,0.0069444497201955925],[122,302,70,0.011488064899862772],[122,302,71,0.01604480948935691],[122,302,72,0.020613810276110922],[122,302,73,0.02519420470738732],[122,302,74,0.02978514247415591],[122,302,75,0.034385787122839025],[122,302,76,0.03899531769531384],[122,302,77,0.04361293039701641],[122,302,78,0.04823784029317223],[122,302,79,0.052869283033181724],[122,303,64,-0.012825148004481542],[122,303,65,-0.008314846608791778],[122,303,66,-0.0037884791974546004],[122,303,67,7.530383770489671E-4],[122,303,68,0.005308795371239188],[122,303,69,0.00987788765500991],[122,303,70,0.014459419244865934],[122,303,71,0.019052503865872573],[122,303,72,0.02365626654236886],[122,303,73,0.02826984521728763],[122,303,74,0.03289239240047417],[122,303,75,0.03752307684548198],[122,303,76,0.04216108525523538],[122,303,77,0.04680562401640494],[122,303,78,0.0514559209625193],[122,303,79,0.056111227165841694],[122,304,64,-0.01018791051235032],[122,304,65,-0.005632623367331495],[122,304,66,-0.0010627787474054243],[122,304,67,0.003520695287959631],[122,304,68,0.008116877706957284],[122,304,69,0.01272485607074994],[122,304,70,0.017343728128253164],[122,304,71,0.02197260344024075],[122,304,72,0.026610605032824825],[122,304,73,0.031256871080149726],[122,304,74,0.03591055661669881],[122,304,75,0.04057083527868301],[122,304,76,0.045236901074910546],[122,304,77,0.049907970186975584],[122,304,78,0.054583282798796304],[122,304,79,0.05926210495552512],[122,305,64,-0.007635629000046128],[122,305,65,-0.0030360921679785484],[122,305,66,0.001576521809865377],[122,305,67,0.006201272575596904],[122,305,68,0.010837228689576425],[122,305,69,0.015483469256174467],[122,305,70,0.020139085579620485],[122,305,71,0.02480318284978182],[122,305,72,0.029474881857926107],[122,305,73,0.034153320742307015],[122,305,74,0.03883765676397248],[122,305,75,0.043527068112263506],[122,305,76,0.048220755740402695],[122,305,77,0.05291794523101246],[122,305,78,0.057617888691589646],[122,305,79,0.06231986667996401],[122,306,64,-0.005170007956459551],[122,306,65,-5.269815016026927E-4],[122,306,66,0.0041276708173289545],[122,306,67,0.008792996256552714],[122,306,68,0.013468052852054525],[122,306,69,0.018151911105295036],[122,306,70,0.02284365569961249],[122,306,71,0.027542387247165005],[122,306,72,0.03224722406646319],[122,306,73,0.03695730399033457],[122,306,74,0.04167178620472056],[122,306,75,0.046389853117769546],[122,306,76,0.051110712259630604],[122,306,77,0.05583359821278277],[122,306,78,0.06055777457293181],[122,306,79,0.06528253594049609],[122,307,64,-0.0027926839553121807],[122,307,65,0.0018930486453304293],[122,307,66,0.006588985689019743],[122,307,67,0.01129416196263755],[122,307,68,0.016007624864314077],[122,307,69,0.020728436148542355],[122,307,70,0.025455673702597957],[122,307,71,0.03018843335410383],[122,307,72,0.034925830709794305],[122,307,73,0.03966700302531656],[122,307,74,0.0444111111064729],[122,307,75,0.049157341241366476],[122,307,76,0.053904907163853016],[122,307,77,0.05865305204813803],[122,307,78,0.06340105053454598],[122,307,79,0.06814821078648803],[122,308,64,-5.052247466937609E-4],[122,308,65,0.004222407712686109],[122,308,66,0.008958853844959883],[122,308,67,0.013703135888334467],[122,308,68,0.018454290492756494],[122,308,69,0.02321137052387119],[122,308,70,0.027973446898892307],[122,308,71,0.03273961045422437],[122,308,72,0.03750897384488856],[122,308,73,0.04228067347559217],[122,308,74,0.04705387146384622],[122,308,75,0.051827757634589286],[122,308,76,0.056601551546726664],[122,308,77,0.06137450455141741],[122,308,78,0.0661459018821424],[122,308,79,0.07091506477657408],[122,309,64,0.0016908715936460317],[122,309,65,0.006459575430347558],[122,309,66,0.011235733587379185],[122,309,67,0.016018355679103327],[122,309,68,0.020806467500200057],[122,309,69,0.025599112887877792],[122,309,70,0.030395355616602823],[122,309,71,0.03519428132518353],[122,309,72,0.03999499947626371],[122,309,73,0.044796645348061936],[122,309,74,0.04959838205876513],[122,309,75,0.05439940262303214],[122,309,76,0.05919893204101523],[122,309,77,0.06399622941973653],[122,309,78,0.06879059012684646],[122,309,79,0.07358134797679168],[122,310,64,0.003794177457301276],[122,310,65,0.00860310262371708],[122,310,66,0.013418154918286046],[122,310,67,0.018238331260591975],[122,310,68,0.023062646486296967],[122,310,69,0.02789013526699026],[122,310,70,0.03271985406315556],[122,310,71,0.03755088311009806],[122,310,72,0.04238232843688132],[122,310,73,0.047213323918112435],[122,310,74,0.052043033358985816],[122,310,75,0.05687065261303645],[122,310,76,0.06169541173301596],[122,310,77,0.06651657715472407],[122,310,78,0.07133345391382614],[122,310,79,0.07614538789568095],[122,311,64,0.005803336438393994],[122,311,65,0.010651611960913562],[122,311,66,0.015504720298269839],[122,311,67,0.02036164560862906],[122,311,68,0.02522139166830553],[122,311,69,0.030082983848602654],[122,311,70,0.034945471126376],[122,311,71,0.039807928128152856],[122,311,72,0.0446694572078655],[122,311,73,0.049529190558029804],[122,311,74,0.054386292354785676],[122,311,75,0.059239960936245006],[122,311,76,0.06408943101456377],[122,311,77,0.0689339759215697],[122,311,78,0.07377290988797584],[122,311,79,0.07860559035620573],[122,312,64,0.007717064011001987],[122,312,65,0.012603798641730335],[122,312,66,0.017494105346597386],[122,312,67,0.02238695546006901],[122,312,68,0.027281341602284903],[122,312,69,0.0321762797122247],[122,312,70,0.03707081111519263],[122,312,71,0.041964004624460316],[122,312,72,0.04685495867711803],[122,312,73,0.051742803503970564],[122,312,74,0.05662670333389312],[122,312,75,0.06150585863209235],[122,312,76,0.06637950837268905],[122,312,77,0.0712469323454552],[122,312,78,0.0761074534967347],[122,312,79,0.08096044030457289],[122,313,64,0.009534148148876598],[122,313,65,0.014458431028401095],[122,313,66,0.019385059482655315],[122,313,67,0.024312991964534375],[122,313,68,0.029241209844763486],[122,313,69,0.034168719500693626],[122,313,70,0.03909455444001507],[122,313,71,0.04401777745922214],[122,313,72,0.048937482836882706],[122,313,73,0.05385279856154648],[122,313,74,0.058762888594711904],[122,313,75,0.06366695516828896],[122,313,76,0.06856424111698373],[122,313,77,0.07345403224542849],[122,313,78,0.07833565973009454],[122,313,79,0.08320850255600676],[122,314,64,0.011253449887342268],[122,314,65,0.016214351218061918],[122,314,66,0.021176406508623],[122,314,67,0.026138561276944722],[122,314,68,0.031099785554762005],[122,314,69,0.03605907603133465],[122,314,70,0.041015458232667334],[122,314,71,0.045967988736072996],[122,314,72,0.050915757420134544],[122,314,73,0.05585788974989728],[122,314,74,0.06079354909771259],[122,314,75,0.06572193909917087],[122,314,76,0.07064230604454719],[122,314,77,0.07555394130558735],[122,314,78,0.080456183797667],[122,314,79,0.08534842247734714],[122,315,64,0.01287390382746903],[122,315,65,0.01787047555700616],[122,315,66,0.02286704513347354],[122,315,67,0.027862545090925256],[122,315,68,0.03285593403627304],[122,315,69,0.03784619884716686],[122,315,70,0.04283235690597684],[122,315,71,0.04781345836970741],[122,315,72,0.05278858847590037],[122,315,73,0.057756869884356354],[122,315,74,0.0627174650551002],[122,315,75,0.06766957866202167],[122,315,76,0.07261246004262153],[122,315,77,0.07754540568368509],[122,315,78,0.0824677617429207],[122,315,79,0.08737892660658203],[122,316,64,0.014394518582455412],[122,316,65,0.0194257950966632],[122,316,66,0.02445594943823476],[122,316,67,0.02948390111303184],[122,316,68,0.03450859722112637],[122,316,69,0.039529014708086174],[122,316,70,0.044544162652949776],[122,316,71,0.04955308459272065],[122,316,72,0.054554860883435724],[122,316,73,0.05954861109763801],[122,316,74,0.06453349645868087],[122,316,75,0.0695087223112939],[122,316,76,0.07447354062883874],[122,316,77,0.07942725255708077],[122,316,78,0.08436921099451064],[122,316,79,0.08929882320923715],[122,317,64,0.015814377166297966],[122,317,65,0.02087937599138387],[122,317,66,0.025942169282591382],[122,317,67,0.031001663477870867],[122,317,68,0.03605679409232421],[122,317,69,0.04110652802210962],[122,317,70,0.04614986588561745],[122,317,71,0.05118584440174834],[122,317,72,0.05621353880534874],[122,317,73,0.06123206529963285],[122,317,74,0.06624058354602108],[122,317,75,0.07123829919081937],[122,317,76,0.07622446642917455],[122,317,77,0.08119839060612694],[122,317,78,0.08615943085479566],[122,317,79,0.0911070027717186],[122,318,64,0.01713263732465492],[122,318,65,0.022230359837934532],[122,318,66,0.027324830652733417],[122,318,67,0.032414943104017546],[122,318,68,0.03749962104774568],[122,318,69,0.04257782121658063],[122,318,70,0.047648535613452225],[122,318,71,0.05271079394280176],[122,318,72,0.057763666079563014],[122,318,73,0.06280626457570784],[122,318,74,0.06783774720478847],[122,318,75,0.07285731954389987],[122,318,76,0.077864237593496],[122,318,77,0.08285781043488397],[122,318,78,0.08783740292542869],[122,318,79,0.09280243843149277],[122,319,64,0.01834853180795759],[122,319,65,0.023477963956756276],[122,319,66,0.02860313595050165],[122,319,67,0.03372292799078827],[122,319,68,0.03883625220427864],[122,319,69,0.04394205504939028],[122,319,70,0.04903931976140852],[122,319,71,0.05412706883585727],[122,319,72,0.05920436655018088],[122,319,73,0.06427032152356624],[122,319,74,0.06932408931533643],[122,319,75,0.07436487506133921],[122,319,76,0.07939193614876613],[122,319,77,0.08440458492922243],[122,319,78,0.08940219147008488],[122,319,79,0.09438418634416826],[123,-64,64,-0.14996132357259984],[123,-64,65,-0.15385321763759308],[123,-64,66,-0.15762294931111132],[123,-64,67,-0.1612690708262413],[123,-64,68,-0.16479030100601189],[123,-64,69,-0.16818553114356594],[123,-64,70,-0.17145383094727562],[123,-64,71,-0.17459445455070477],[123,-64,72,-0.17760684658743553],[123,-64,73,-0.18049064833066353],[123,-64,74,-0.18324570389781836],[123,-64,75,-0.18587206651986132],[123,-64,76,-0.18837000487553424],[123,-64,77,-0.19074000949042724],[123,-64,78,-0.19298279920091876],[123,-64,79,-0.19509932768296312],[123,-63,64,-0.14451786949307244],[123,-63,65,-0.1483982226492777],[123,-63,66,-0.15215695648506666],[123,-63,67,-0.1557926206396405],[123,-63,68,-0.15930393082210603],[123,-63,69,-0.16268977468409862],[123,-63,70,-0.16594921775736504],[123,-63,71,-0.16908150945621248],[123,-63,72,-0.17208608914483237],[123,-63,73,-0.17496259226941147],[123,-63,74,-0.17771085655528707],[123,-63,75,-0.1803309282687885],[123,-63,76,-0.18282306854405284],[123,-63,77,-0.18518775977466917],[123,-63,78,-0.18742571207021608],[123,-63,79,-0.18953786977765863],[123,-62,64,-0.138990099452049],[123,-62,65,-0.1428581374768909],[123,-62,66,-0.14660512760980948],[123,-62,67,-0.1502296167929329],[123,-62,68,-0.15373031749031352],[123,-62,69,-0.15710611355254478],[123,-62,70,-0.16035606614635045],[123,-62,71,-0.16347941974905755],[123,-62,72,-0.16647560820795637],[123,-62,73,-0.1693442608644704],[123,-62,74,-0.17208520874337674],[123,-62,75,-0.17469849080673538],[123,-62,76,-0.17718436027280615],[123,-62,77,-0.17954329099980892],[123,-62,78,-0.1817759839345945],[123,-62,79,-0.18388337362618867],[123,-61,64,-0.13338226169044054],[123,-61,65,-0.1372372175816663],[123,-61,66,-0.1409717250570809],[123,-61,67,-0.14458432825990875],[123,-61,68,-0.14807373627967813],[123,-61,69,-0.1514388290083689],[123,-61,70,-0.15467866306155675],[123,-61,71,-0.1577924777644505],[123,-61,72,-0.16077970120283547],[123,-61,73,-0.1636399563388392],[123,-61,74,-0.16637306719176526],[123,-61,75,-0.16897906508365146],[123,-61,76,-0.17145819494982695],[123,-61,77,-0.17381092171433565],[123,-61,78,-0.17603793673027768],[123,-61,79,-0.17814016428504442],[123,-60,64,-0.12769865273568148],[123,-60,65,-0.1315397672154932],[123,-60,66,-0.13526106047502984],[123,-60,67,-0.13886107375821077],[123,-60,68,-0.1423385126523108],[123,-60,69,-0.14569225293519372],[123,-60,70,-0.14892134648755584],[123,-60,71,-0.1520250272700766],[123,-60,72,-0.1550027173654951],[123,-60,73,-0.15785403308551715],[123,-60,74,-0.16057879114281193],[123,-60,75,-0.16317701488774405],[123,-60,76,-0.16564894061012225],[123,-60,77,-0.16799502390582643],[123,-60,78,-0.17021594610837165],[123,-60,79,-0.17231262078537735],[123,-59,64,-0.1219436125496437],[123,-59,65,-0.12577013455918817],[123,-59,66,-0.12947748991724728],[123,-59,67,-0.13306421686952474],[123,-59,68,-0.13652901737514145],[123,-59,69,-0.13987076294450917],[123,-59,70,-0.14308850054222533],[123,-59,71,-0.1461814585548954],[123,-59,72,-0.14914905282388757],[123,-59,73,-0.15199089274294386],[123,-59,74,-0.15470678742088395],[123,-59,75,-0.15729675190906844],[123,-59,76,-0.15976101349388883],[123,-59,77,-0.16210001805415208],[123,-59,78,-0.1643144364834156],[123,-59,79,-0.16640517117724563],[123,-58,64,-0.1161215195508355],[123,-58,65,-0.11993270673457224],[123,-58,66,-0.12362540884514384],[123,-58,67,-0.12719816103268144],[123,-58,68,-0.1306496615041587],[123,-58,69,-0.1339787773514639],[123,-58,70,-0.13718455044450717],[123,-58,71,-0.1402662033892691],[123,-58,72,-0.14322314555079996],[123,-58,73,-0.14605497914108367],[123,-58,74,-0.14876150537201505],[123,-58,75,-0.15134273067314785],[123,-58,76,-0.15379887297448347],[123,-58,77,-0.1561303680541717],[123,-58,78,-0.15833787595117443],[123,-58,79,-0.16042228744286735],[123,-57,64,-0.11023678551119054],[123,-57,65,-0.11403190469066449],[123,-57,66,-0.11770924700398633],[123,-57,67,-0.12126734440997355],[123,-57,68,-0.12470489124144435],[123,-57,69,-0.12802075002305136],[123,-57,70,-0.13121395735417007],[123,-57,71,-0.13428372985673653],[123,-57,72,-0.13722947018805276],[123,-57,73,-0.14005077311847192],[123,-57,74,-0.14274743167421022],[123,-57,75,-0.14531944334494296],[123,-57,76,-0.14776701635645795],[123,-57,77,-0.15009057600823195],[123,-57,78,-0.15229077107598687],[123,-57,79,-0.15436848027919892],[123,-56,64,-0.1042938503273072],[123,-56,65,-0.10807217796384772],[123,-56,66,-0.11173346317244959],[123,-56,67,-0.11527623462654957],[123,-56,68,-0.11869918266486124],[123,-56,69,-0.12200116509854508],[123,-56,70,-0.12518121308344332],[123,-56,71,-0.1282385370572814],[123,-56,72,-0.13117253274184915],[123,-56,73,-0.1339827872100765],[123,-56,74,-0.13666908501825015],[123,-56,75,-0.13923141440302655],[123,-56,76,-0.14166997354351973],[123,-56,77,-0.14398517688832246],[123,-56,78,-0.1461776615475232],[123,-56,79,-0.14824829374968962],[123,-55,64,-0.09829717666597992],[123,-55,65,-0.10205799931185211],[123,-55,66,-0.10570253978552724],[123,-55,67,-0.10922932338272584],[123,-55,68,-0.11263703633024247],[123,-55,69,-0.11592453158202887],[123,-55,70,-0.11909083468035364],[123,-55,71,-0.1221351496819425],[123,-55,72,-0.12505686514911307],[123,-55,73,-0.12785556020581856],[123,-55,74,-0.13053101065884087],[123,-55,75,-0.13308319518380163],[123,-55,76,-0.1355123015762555],[123,-55,77,-0.1378187330677334],[123,-55,78,-0.14000311470679483],[123,-55,79,-0.14206629980505903],[123,-54,64,-0.09225124448433042],[123,-54,65,-0.09599385922185832],[123,-54,66,-0.09962097743110376],[123,-54,67,-0.10313112093952159],[123,-54,68,-0.10652297174637759],[123,-54,69,-0.1097953778073254],[123,-54,70,-0.11294735888407836],[123,-54,71,-0.11597811245907053],[123,-54,72,-0.11888701971512683],[123,-54,73,-0.12167365158005727],[123,-54,74,-0.12433777483641362],[123,-54,75,-0.12687935829607377],[123,-54,76,-0.1292985790399268],[123,-54,77,-0.13159582872251963],[123,-54,78,-0.133771719941724],[123,-54,79,-0.13582709267339843],[123,-53,64,-0.08616054542438312],[123,-53,65,-0.08988426029257324],[123,-53,66,-0.09349328922004241],[123,-53,67,-0.09698615047727055],[123,-53,68,-0.10036152172265456],[123,-53,69,-0.10361824577517509],[123,-53,70,-0.10675533645216462],[123,-53,71,-0.10977198447208303],[123,-53,72,-0.11266756342231288],[123,-53,73,-0.1154416357918927],[123,-53,74,-0.1180939590694241],[123,-53,75,-0.12062449190582514],[123,-53,76,-0.12303340034218901],[123,-53,77,-0.12532106410262367],[123,-53,78,-0.12748808295212533],[123,-53,79,-0.1295352831194545],[123,-52,64,-0.08002957708193514],[123,-52,65,-0.08373371149011999],[123,-52,66,-0.08732399502962807],[123,-52,67,-0.09079894232714425],[123,-52,68,-0.09415722658919601],[123,-52,69,-0.09739768536250493],[123,-52,70,-0.10051932635945038],[123,-52,71,-0.10352133334855551],[123,-52,72,-0.10640307211000699],[123,-52,73,-0.10916409645611969],[123,-52,74,-0.11180415431699497],[123,-52,75,-0.11432319389103374],[123,-52,76,-0.11672136986056947],[123,-52,77,-0.11899904967249486],[123,-52,78,-0.12115681988393245],[123,-52,79,-0.12319549257292683],[123,-51,64,-0.07386283715002229],[123,-51,65,-0.07754672227804904],[123,-51,66,-0.08111761562067354],[123,-51,67,-0.0845740280759043],[123,-51,68,-0.0879146282897979],[123,-51,69,-0.0911382484040979],[123,-51,70,-0.09424388986900245],[123,-51,71,-0.09723072932096244],[123,-51,72,-0.10009812452552769],[123,-51,73,-0.1028456203851531],[123,-51,74,-0.10547295501220588],[123,-51,75,-0.10798006586684328],[123,-51,76,-0.11036709596002281],[123,-51,77,-0.11263440012151826],[123,-51,78,-0.11478255133299087],[123,-51,79,-0.11681234712609578],[123,-50,64,-0.06766481743683894],[123,-50,65,-0.07132779662132638],[123,-50,66,-0.07487866662814535],[123,-50,67,-0.07831593454373176],[123,-50,68,-0.08163826434752641],[123,-50,69,-0.08484448264651856],[123,-50,70,-0.0879335844749255],[123,-50,71,-0.09090473915891695],[123,-50,72,-0.09375729624639895],[123,-50,73,-0.09649079150177065],[123,-50,74,-0.09910495296589328],[123,-50,75,-0.10159970708094346],[123,-50,76,-0.10397518488040969],[123,-50,77,-0.10623172824410687],[123,-50,78,-0.1083698962182601],[123,-50,79,-0.1103904714006343],[123,-49,64,-0.06143999775793774],[123,-49,65,-0.06508142686412655],[123,-49,66,-0.0686116524251369],[123,-49,67,-0.07202917763496153],[123,-49,68,-0.07533266170279895],[123,-49,69,-0.07852092557411605],[123,-49,70,-0.08159295771686315],[123,-49,71,-0.08454791997274247],[123,-49,72,-0.08738515347355003],[123,-49,73,-0.09010418462250047],[123,-49,74,-0.09270473114077793],[123,-49,75,-0.09518670817898156],[123,-49,76,-0.09755023449372735],[123,-49,77,-0.09979563868927865],[123,-49,78,-0.10192346552425935],[123,-49,79,-0.10393448228342317],[123,-48,64,-0.0551928397030399],[123,-48,65,-0.05881208748175759],[123,-48,66,-0.06232105986051251],[123,-48,67,-0.06571825606205495],[123,-48,68,-0.06900233042427983],[123,-48,69,-0.0721720981074413],[123,-48,70,-0.07522654086652725],[123,-48,71,-0.07816481288870081],[123,-48,72,-0.08098624669582577],[123,-48,73,-0.08369035911198897],[123,-48,74,-0.08627685729625678],[123,-48,75,-0.08874564484034053],[123,-48,76,-0.09109682793142793],[123,-48,77,-0.0933307215800574],[123,-48,78,-0.09544785591308325],[123,-48,79,-0.09744898253171064],[123,-47,64,-0.048927780277288724],[123,-47,65,-0.052524228706554044],[123,-47,66,-0.05601135187006634],[123,-47,67,-0.059387644942639706],[123,-47,68,-0.06265175729242489],[123,-47,69,-0.06580249817390926],[123,-47,70,-0.06883884248608751],[123,-47,71,-0.07175993659571278],[123,-47,72,-0.07456510422563956],[123,-47,73,-0.07725385240817773],[123,-47,74,-0.07982587750369097],[123,-47,75,-0.08228107128411455],[123,-47,76,-0.08461952708165155],[123,-47,77,-0.08684154600252392],[123,-47,78,-0.08894764320582316],[123,-47,79,-0.09093855424744457],[123,-46,64,-0.04264922541679028],[123,-46,65,-0.04622227002758039],[123,-46,66,-0.049686960961029536],[123,-46,67,-0.05304178926946457],[123,-46,68,-0.056285399255516566],[123,-46,69,-0.05941659415054723],[123,-46,70,-0.0624343418582628],[123,-46,71,-0.0653377807634159],[123,-46,72,-0.0681262256056111],[123,-46,73,-0.07079917341813324],[123,-46,74,-0.07335630953202932],[123,-46,75,-0.07579751364512266],[123,-46,76,-0.07812286595621731],[123,-46,77,-0.08033265336436224],[123,-46,78,-0.08242737573323544],[123,-46,79,-0.08440775222061458],[123,-45,64,-0.036361543378758854],[123,-45,65,-0.039910593564464136],[123,-45,66,-0.04335228257024981],[123,-45,67,-0.046685097253583385],[123,-45,68,-0.04990767675850727],[123,-45,69,-0.053018818179149885],[123,-45,70,-0.056017482288432174],[123,-45,71,-0.05890279933187226],[123,-45,72,-0.061674074886508],[123,-45,73,-0.06433079578484824],[123,-45,74,-0.06687263610409167],[123,-45,75,-0.06929946322028746],[123,-45,76,-0.07161134392769541],[123,-45,77,-0.07380855062322145],[123,-45,78,-0.07589156755597559],[123,-45,79,-0.07786109714193534],[123,-44,64,-0.030069058006110372],[123,-44,65,-0.0335935373151971],[123,-44,66,-0.03701166829588498],[123,-44,67,-0.0403219335406142],[123,-44,68,-0.043522966944519514],[123,-44,69,-0.04661355935368672],[123,-44,70,-0.0495926642786132],[123,-44,71,-0.052459403672777793],[123,-44,72,-0.05521307377633655],[123,-44,73,-0.05785315102486144],[123,-44,74,-0.0603792980233534],[123,-44,75,-0.06279136958521003],[123,-44,76,-0.0650894188364024],[123,-44,77,-0.06727370338473504],[123,-44,78,-0.06934469155424361],[123,-44,79,-0.07130306868470448],[123,-43,64,-0.02377604186633897],[123,-43,65,-0.027275388277747448],[123,-43,66,-0.030669419002443465],[123,-43,67,-0.03395661229990565],[123,-43,68,-0.03713559672882738],[123,-43,69,-0.040205156779787976],[123,-43,70,-0.04316423857313689],[123,-43,71,-0.04601195562199811],[123,-43,72,-0.048747594660410676],[123,-43,73,-0.05137062153652072],[123,-43,74,-0.05388068717105987],[123,-43,75,-0.056277633580786635],[123,-43,76,-0.05856149996714666],[123,-43,77,-0.060732528870029445],[123,-43,78,-0.06279117238666909],[123,-43,79,-0.06473809845566758],[123,-42,64,-0.01748670926500373],[123,-42,65,-0.020960375445802204],[123,-42,66,-0.02432977779950063],[123,-42,67,-0.027593390186940514],[123,-42,68,-0.03074983574565726],[123,-42,69,-0.033797892506645666],[123,-42,70,-0.036736499076346796],[123,-42,71,-0.03956476038376522],[123,-42,72,-0.04228195349273134],[123,-42,73,-0.04488753347922769],[123,-42,74,-0.04738113937400634],[123,-42,75,-0.04976260017018341],[123,-42,76,-0.05203194089606089],[123,-42,77,-0.05418938875305379],[123,-42,78,-0.05623537931877087],[123,-42,79,-0.05817056281522959],[123,-41,64,-0.01120520913365397],[123,-41,65,-0.014652662678474648],[123,-41,66,-0.017996922893922407],[123,-41,67,-0.021236459178805567],[123,-41,68,-0.02436988916763161],[123,-41,69,-0.027395984331156087],[123,-41,70,-0.030313675642159366],[123,-41,71,-0.03312205930636403],[123,-41,72,-0.03582040255850838],[123,-41,73,-0.03840814952348959],[123,-41,74,-0.040884927142811334],[123,-41,75,-0.043250551166015505],[123,-41,76,-0.04550503220735147],[123,-41,77,-0.04764858186755938],[123,-41,78,-0.04968161892081757],[123,-41,79,-0.05160477556683274],[123,-40,64,-0.004935617792051095],[123,-40,65,-0.008356341443829018],[123,-40,66,-0.011674960315446348],[123,-40,67,-0.014889939282579201],[123,-40,68,-0.017999890397709994],[123,-40,69,-0.021003578474154794],[123,-40,70,-0.02389992673532859],[123,-40,71,-0.026688022529159472],[123,-40,72,-0.02936712310766787],[123,-40,73,-0.03193666147162655],[123,-40,74,-0.034396252280530226],[123,-40,75,-0.03674569782756221],[123,-40,76,-0.03898499407980571],[123,-40,77,-0.04111433678357812],[123,-40,78,-0.043134127634939845],[123,-40,79,-0.045044980515352995],[123,-39,64,0.0013180684150145838],[123,-39,65,-0.0020754234365261137],[123,-39,66,-0.005367916515926385],[123,-39,67,-0.008557871116944615],[123,-39,68,-0.011643893633933367],[123,-39,69,-0.01462474212905207],[123,-39,70,-0.017499331964726972],[123,-39,71,-0.020266741501268504],[123,-39,72,-0.022926217859661868],[123,-39,73,-0.025477182749448213],[123,-39,74,-0.02791923836192345],[123,-39,75,-0.030252173328342624],[123,-39,76,-0.03247596874337855],[123,-39,77,-0.03459080425371175],[123,-39,78,-0.03659706421180342],[123,-39,79,-0.03849534389482745],[123,-38,64,0.007551940606453367],[123,-38,65,0.0041861669305545135],[123,-38,66,9.202691579035527E-4],[123,-38,67,-0.002244208366880218],[123,-38,68,-0.005305866306825058],[123,-38,69,-0.00826345588272226],[123,-38,70,-0.011115884488495764],[123,-38,71,-0.013862221371738426],[123,-38,72,-0.01650170337942891],[123,-38,73,-0.019033740768749863],[123,-38,74,-0.021457923083228803],[123,-38,75,-0.023774025093895812],[123,-38,76,-0.02598201280570267],[123,-38,77,-0.02808204952908222],[123,-38,78,-0.030074502016698812],[123,-38,79,-0.031959946665365835],[123,-37,64,0.013762184979322467],[123,-37,65,0.010424600160887088],[123,-37,66,0.007185752118318511],[123,-37,67,0.004047189888740865],[123,-37,68,0.0010103186107207618],[123,-37,69,-0.0019236060084762974],[123,-37,70,-0.004753483290891092],[123,-37,71,-0.007478373251049608],[123,-37,72,-0.010097502324332597],[123,-37,73,-0.012610269160452603],[123,-37,74,-0.015016250482263738],[123,-37,75,-0.017315207009594324],[123,-37,76,-0.01950708944835089],[123,-37,77,-0.021592044544769484],[123,-37,78,-0.02357042120486663],[123,-37,79,-0.025442776679065138],[123,-36,64,0.01994509054864957],[123,-36,65,0.01663614943472358],[123,-36,66,0.013424790316801993],[123,-36,67,0.010312566976302229],[123,-36,68,0.007300890420723571],[123,-36,69,0.00439102336854047],[123,-36,70,0.0015840746688281504],[123,-36,71,-0.0011190063442960696],[123,-36,72,-0.003717435562425986],[123,-36,73,-0.006210599878739842],[123,-36,74,-0.008598063029208625],[123,-36,75,-0.010879571498840557],[123,-36,76,-0.013055060493200488],[123,-36,77,-0.015124659975087051],[123,-36,78,-0.017088700766415554],[123,-36,79,-0.018947720715284944],[123,-35,64,0.026097057012914537],[123,-35,65,0.022817198495653335],[123,-35,66,0.01963375215083829],[123,-35,67,0.01654827655362756],[123,-35,68,0.01356218864485359],[123,-35,69,0.010676758233808759],[123,-35,70,0.007893102435755694],[123,-35,71,0.005212180044247838],[123,-35,72,0.00263478583824428],[123,-35,73,1.6154482410168924E-4],[123,-35,74,-0.0022070935877803732],[123,-35,75,-0.004470861471355558],[123,-35,76,-0.0066296783386097236],[123,-35,77,-0.008683657158405023],[123,-35,78,-0.010633110440538163],[123,-35,79,-0.012478556384988182],[123,-34,64,0.032214602744983556],[123,-34,65,0.028964249663091746],[123,-34,66,0.025809124497091274],[123,-34,67,0.02275079066299024],[123,-34,68,0.019790671096416745],[123,-34,69,0.016930042773543263],[123,-34,70,0.014170031166728214],[123,-34,71,0.01151160463495926],[123,-34,72,0.008955568749086429],[123,-34,73,0.006502560551922443],[123,-34,74,0.00415304275299111],[123,-34,75,0.001907297858226742],[123,-34,76,-2.3457776561774946E-4],[123,-34,77,-0.00227267989173352],[123,-34,78,-0.004207302499239285],[123,-34,79,-0.006038943904365102],[123,-33,64,0.03829437290876647],[123,-33,65,0.03507393197096831],[123,-33,66,0.03194752087124264],[123,-33,67,0.02891670791122236],[123,-33,68,0.02598292207986086],[123,-33,69,0.023147447592729797],[123,-33,70,0.020411418366027],[123,-33,71,0.01777581242538151],[123,-33,72,0.01524144624944046],[123,-33,73,0.012808969048313523],[123,-33,74,0.010478856976664508],[123,-33,75,0.008251407281741119],[123,-33,76,0.006126732386110723],[123,-33,77,0.004104753905216141],[123,-33,78,0.0021851965997042866],[123,-33,79,3.6758226254884896E-4],[123,-32,64,0.0443331477012755],[123,-32,65,0.041143009432292654],[123,-32,66,0.038045689714164],[123,-32,67,0.03504276177659771],[123,-32,68,0.03213566071747698],[123,-32,69,0.02932567806075559],[123,-32,70,0.026613956249061044],[123,-32,71,0.024001483071085516],[123,-32,72,0.021489086023753323],[123,-32,73,0.019077426609240278],[123,-32,74,0.016766994566631777],[123,-32,75,0.014558102038514376],[123,-32,76,0.012450877672264937],[123,-32,77,0.010445260656154809],[123,-32,78,0.008540994690219517],[123,-32,79,0.006737621891916179],[123,-31,64,0.050327850720238376],[123,-31,65,0.04716838942975077],[123,-31,66,0.04410052280457688],[123,-31,67,0.04112582904264095],[123,-31,68,0.03824574940344749],[123,-31,69,0.035461582784795054],[123,-31,70,0.03277448023418861],[123,-31,71,0.03018543939503493],[123,-31,72,0.027695298887608355],[123,-31,73,0.025304732624860216],[123,-31,74,0.023014244062864342],[123,-31,75,0.02082416038618584],[123,-31,76,0.01873462662794423],[123,-31,77,0.016745599724683702],[123,-31,78,0.014856842506002832],[123,-31,79,0.013067917618967306],[123,-30,64,0.05627555745742008],[123,-30,65,0.053147131232486156],[123,-30,66,0.05010906379836011],[123,-30,67,0.04716293835902463],[123,-30,68,0.044310202385405284],[123,-30,69,0.04155216221110525],[123,-30,70,0.038889977562834965],[123,-30,71,0.03632465602561985],[123,-30,72,0.03385704744277085],[123,-30,73,0.0314878382506929],[123,-30,74,0.02921754574832436],[123,-30,75,0.02704651230149302],[123,-30,76,0.02497489948196141],[123,-30,77,0.023002682141271324],[123,-30,78,0.021129642419344785],[123,-30,79,0.019355363687859395],[123,-29,64,0.06217350391733967],[123,-29,65,0.059076454638755216],[123,-29,66,0.05606851689418235],[123,-29,67,0.053151278929232215],[123,-29,68,0.050326194473178765],[123,-29,69,0.04759457735391259],[123,-29,70,0.04495759604758631],[123,-29,71,0.04241626816302979],[123,-29,72,0.03997145486092457],[123,-29,73,0.03762385520780909],[123,-29,74,0.035374000464711175],[123,-29,75,0.033222248310689206],[123,-29,76,0.0311687770010578],[123,-29,77,0.02921357946040848],[123,-29,78,0.027356457310378834],[123,-29,79,0.025597014832191678],[123,-28,64,0.0680190953615496],[123,-28,65,0.06495374874461679],[123,-28,66,0.061976255625632914],[123,-28,67,0.05908820932515635],[123,-28,68,0.05629106987489363],[123,-28,69,0.05358615865206062],[123,-28,70,0.05097465294842962],[123,-28,71,0.048457580474141504],[123,-28,72,0.046035813796270864],[123,-28,73,0.04371006471221739],[123,-28,74,0.0414808785577192],[123,-28,75,0.03934862844976861],[123,-28,76,0.03731350946420808],[123,-28,77,0.035375532748115446],[123,-28,78,0.03353451956693165],[123,-28,79,0.03179009528635435],[123,-27,64,0.07380991517861524],[123,-27,65,0.070776580838803],[123,-27,66,0.06782983177998914],[123,-27,67,0.0649712664287756],[123,-27,68,0.06220235116057582],[123,-27,69,0.059524414953559535],[123,-27,70,0.056938643977280434],[123,-27,71,0.054446076116062336],[123,-27,72,0.05204759542713511],[123,-27,73,0.04974392653358928],[123,-27,74,0.04753562895194974],[123,-27,75,0.04542309135464673],[123,-27,76,0.0434065257671602],[123,-27,77,0.04148596169994967],[123,-27,78,0.03966124021512174],[123,-27,79,0.03793200792785789],[123,-26,64,0.07954373387949842],[123,-26,65,0.07654270542346753],[123,-26,66,0.07362698444331917],[123,-26,67,0.07079817450060599],[123,-26,68,0.06805774835294942],[123,-26,69,0.06540704262773656],[123,-26,70,0.0628472524304956],[123,-26,71,0.06037942588802625],[123,-26,72,0.058004458626273125],[123,-26,73,0.05572308818301541],[123,-26,74,0.05353588835516909],[123,-26,75,0.051443263480981716],[123,-26,76,0.04944544265689721],[123,-26,77,0.047542473889199854],[123,-26,78,0.04573421818039236],[123,-26,79,0.04402034355032847],[123,-25,64,0.08521851821849746],[123,-25,65,0.08225007336096746],[123,-25,66,0.07936564917207634],[123,-25,67,0.07656685437508248],[123,-25,68,0.07385516814558601],[123,-25,69,0.07123193480513867],[123,-25,70,0.06869835844952454],[123,-25,71,0.06625549751179349],[123,-25,72,0.06390425926003374],[123,-25,73,0.06164539422995252],[123,-25,74,0.05947949059207036],[123,-25,75,0.05740696845379789],[123,-25,76,0.055428074096182556],[123,-25,77,0.05354287414542713],[123,-25,78,0.05175124967913891],[123,-25,79,0.05005289026732984],[123,-24,64,0.09083244043988692],[123,-24,65,0.08789684114682217],[123,-24,66,0.08504396729133079],[123,-24,67,0.08227543278301863],[123,-24,68,0.07959272324855504],[123,-24,69,0.07699719074534195],[123,-24,70,0.07449004840985152],[123,-24,71,0.07207236504071268],[123,-24,72,0.06974505961652988],[123,-24,73,0.06750889574850916],[123,-24,74,0.06536447606769114],[123,-24,75,0.0633122365470643],[123,-24,76,0.06135244075834145],[123,-24,77,0.05948517406350651],[123,-24,78,0.05771033774108569],[123,-24,79,0.05602764304716712],[123,-23,64,0.09638388764996453],[123,-23,65,0.09348138030855557],[123,-23,66,0.09066029531933917],[123,-23,67,0.08792225180084412],[123,-23,68,0.08526874186127076],[123,-23,69,0.08270112533235896],[123,-23,70,0.08022062443792322],[123,-23,71,0.07782831839713089],[123,-23,72,0.07552513796251126],[123,-23,73,0.0733118598927649],[123,-23,74,0.07118910136017909],[123,-23,75,0.06915731429291638],[123,-23,76,0.0672167796519656],[123,-23,77,0.06536760164285682],[123,-23,78,0.0636097018620988],[123,-23,79,0.06194281337835794],[123,-22,64,0.10187147131465313],[123,-22,65,0.09900228693056834],[123,-22,66,0.09621321451860387],[123,-22,67,0.09350587842677027],[123,-22,68,0.09088177727269131],[123,-22,69,0.08834227869780242],[123,-22,70,0.08588861405621362],[123,-22,71,0.08352187303831227],[123,-22,72,0.08124299822909209],[123,-22,73,0.07905277960127877],[123,-22,74,0.07695184894305929],[123,-22,75,0.07494067422067974],[123,-22,76,0.07301955387570125],[123,-22,77,0.07118861105701813],[123,-22,78,0.06944778778759264],[123,-22,79,0.06779683906593004],[123,-21,64,0.10729403688280548],[123,-21,65,0.10445839130519163],[123,-21,66,0.10170154057357284],[123,-21,67,0.09902511428403693],[123,-21,68,0.09643061758901916],[123,-21,69,0.09391942597195324],[123,-21,70,0.09149277995658422],[123,-21,71,0.08915177975101751],[123,-21,72,0.08689737982649093],[123,-21,73,0.08473038343093964],[123,-21,74,0.08265143703716182],[123,-21,75,0.08066102472584968],[123,-21,76,0.07875946250327437],[123,-21,77,0.07694689255372933],[123,-21,78,0.075223277426689],[123,-21,79,0.07358839415870233],[123,-20,64,0.1126506735349081],[123,-20,65,0.1098487677096146],[123,-20,66,0.10712433339466931],[123,-20,67,0.10447900545092836],[123,-20,68,0.10191429558859233],[123,-20,69,0.09943158716242295],[123,-20,70,0.09703212990161902],[123,-20,71,0.09471703457442548],[123,-20,72,0.09248726758746217],[123,-20,73,0.09034364551984175],[123,-20,74,0.08828682959188727],[123,-20,75,0.08631732006870851],[123,-20,76,0.08443545059843294],[123,-20,77,0.08264138248518893],[123,-20,78,0.08093509889680262],[123,-20,79,0.0793163990072262],[123,-19,64,0.11794072405735057],[123,-19,65,0.11517274430885438],[123,-19,66,0.11248090704882308],[123,-19,67,0.10986685241773042],[123,-19,68,0.10733209870413785],[123,-19,69,0.10487803716058075],[123,-19,70,0.10250592675411174],[123,-19,71,0.10021688885157476],[123,-19,72,0.09801190183959652],[123,-19,73,0.09589179567936146],[123,-19,74,0.09385724639598714],[123,-19,75,0.0919087705027537],[123,-19,76,0.09004671935998332],[123,-19,77,0.0882712734686728],[123,-19,78,0.08658243669883403],[123,-19,79,0.08498003045256386],[123,-18,64,0.12316379484238837],[123,-18,65,0.12042991318489649],[123,-18,66,0.1177708398166295],[123,-18,67,0.1151882201707558],[123,-18,68,0.11268357913251592],[123,-18,69,0.11025831587587553],[123,-18,70,0.1079136986348328],[123,-18,71,0.1056508594094534],[123,-18,72,0.10347078860661985],[123,-18,73,0.1013743296155637],[123,-18,74,0.09936217331799291],[123,-18,75,0.0974348525330726],[123,-18,76,0.09559273639705212],[123,-18,77,0.09383602467764307],[123,-18,78,0.09216474202310176],[123,-18,79,0.09057873214604006],[123,-17,64,0.12831976601350836],[123,-17,65,0.12562014049171344],[123,-17,66,0.12299398437584641],[123,-17,67,0.1204429484031454],[123,-17,68,0.11796856407166001],[123,-17,69,0.11557223849775711],[123,-17,70,0.11325524920828134],[123,-17,71,0.1110187388674383],[123,-17,72,0.10886370993839234],[123,-17,73,0.1067910192796413],[123,-17,74,0.10480137267598821],[123,-17,75,0.10289531930435969],[123,-17,76,0.10107324613427238],[123,-17,77,0.09933537226304356],[123,-17,78,0.09768174318570855],[123,-17,79,0.09611222499965877],[123,-16,64,0.13340880167637137],[123,-16,65,0.13074357673633685],[123,-16,66,0.1281504781113999],[123,-16,67,0.12563116185262002],[123,-16,68,0.12318716608488933],[123,-16,69,0.12081990588537195],[123,-16,70,0.11853066809659507],[123,-16,71,0.1163206060742632],[123,-16,72,0.11419073436978278],[123,-16,73,0.11214192334756168],[123,-16,74,0.11017489373690514],[123,-16,75,0.10829021111875403],[123,-16,76,0.10648828034706992],[123,-16,77,0.10476933990496295],[123,-16,78,0.10313345619552206],[123,-16,79,0.1015805177673671],[123,-15,64,0.13843136029541636],[123,-15,65,0.13580066718606965],[123,-15,66,0.13324075355199017],[123,-15,67,0.13075328076627035],[123,-15,68,0.12833979359268255],[123,-15,69,0.12600171508512414],[123,-15,70,0.1237403414217132],[123,-15,71,0.12155683667360451],[123,-15,72,0.11945222750851425],[123,-15,73,0.11742739782901745],[123,-15,74,0.11548308334544088],[123,-15,75,0.11361986608359476],[123,-15,76,0.1118381688271507],[123,-15,77,0.11013824949475914],[123,-15,78,0.1085201954518682],[123,-15,79,0.10698391775726213],[123,-14,64,0.1433882051959101],[123,-14,65,0.14079216240161663],[123,-14,66,0.13826554893307375],[123,-14,67,0.13581003149216364],[123,-14,68,0.13342716149168654],[123,-14,69,0.1311183699758759],[123,-14,70,0.1288849624755627],[123,-14,71,0.12672811379805926],[123,-14,72,0.12464886275174913],[123,-14,73,0.12264810680544735],[123,-14,74,0.12072659668235652],[123,-14,75,0.11888493088885799],[123,-14,76,0.11712355017794795],[123,-14,77,0.11544273194741139],[123,-14,78,0.11384258457269614],[123,-14,79,0.11232304167450402],[123,-13,64,0.14828041519153468],[123,-13,65,0.1457191288962325],[123,-13,66,0.14322591888631953],[123,-13,67,0.14080245719786344],[123,-13,68,0.13845030190106222],[123,-13,69,0.13617089204188548],[123,-13,70,0.1339655425183668],[123,-13,71,0.13183543889161198],[123,-13,72,0.12978163213151284],[123,-13,73,0.12780503329722914],[123,-13,74,0.12590640815226473],[123,-13,75,0.12408637171437842],[123,-13,76,0.12234538274013618],[123,-13,77,0.12068373814420141],[123,-13,78,0.11910156735332322],[123,-13,79,0.11759882659503917],[123,-12,64,0.15310939533766643],[123,-12,65,0.15058295992103565],[123,-12,66,0.14812324525569076],[123,-12,67,0.1457319287160167],[123,-12,68,0.14341057503631804],[123,-12,69,0.1411606312736391],[123,-12,70,0.1389834217052337],[123,-12,71,0.13688014266074966],[123,-12,72,0.1348518572891172],[123,-12,73,0.13289949026020353],[123,-12,74,0.1310238224010627],[123,-12,75,0.12922548526701538],[123,-12,76,0.12750495564737097],[123,-12,77,0.12586255000588586],[123,-12,78,0.12429841885591753],[123,-12,79,0.12281254107029338],[123,-11,64,0.1578768878100646],[123,-11,65,0.1553853863762099],[123,-11,66,0.15295924803987138],[123,-11,67,0.15060015551672112],[123,-11,68,0.14830968021034519],[123,-11,69,0.14608927719628595],[123,-11,70,0.1439402801407339],[123,-11,71,0.14186389615393236],[123,-11,72,0.13986120057828622],[123,-11,73,0.137933131711234],[123,-11,74,0.13608048546271545],[123,-11,75,0.13430390994746633],[123,-11,76,0.132603900011956],[123,-11,77,0.13098079169605892],[123,-11,78,0.1294347566294204],[123,-11,79,0.12796579636253702],[123,-10,64,0.16258498290919543],[123,-10,65,0.16012848784831624],[123,-10,66,0.15773599646126102],[123,-10,67,0.15540919680690546],[123,-10,68,0.15314966696188792],[123,-10,69,0.15095887002591246],[123,-10,70,0.14883814906170023],[123,-10,71,0.1467887219696541],[123,-10,72,0.1448116762972247],[123,-10,73,0.14290796398303962],[123,-10,74,0.14107839603562722],[123,-10,75,0.1393236371469665],[123,-10,76,0.13764420024067803],[123,-10,77,0.13604044095494827],[123,-10,78,0.134512552060148],[123,-10,79,0.13306055781116266],[123,-9,64,0.16723613019003702],[123,-9,65,0.164814703773563],[123,-9,66,0.162455920161386],[123,-9,67,0.16016147275656145],[123,-9,68,0.1579329463112853],[123,-9,69,0.1557718119534902],[123,-9,70,0.15367942214808905],[123,-9,71,0.15165700559293194],[123,-9,72,0.14970566204946234],[123,-9,73,0.14782635710813663],[123,-9,74,0.1460199168884373],[123,-9,75,0.14428702267371007],[123,-9,76,0.14262820548064292],[123,-9,77,0.14104384056347652],[123,-9,78,0.13953414185290802],[123,-9,79,0.13809915632970682],[123,-8,64,0.17183314971756003],[123,-8,65,0.16944684472722804],[123,-8,66,0.16712182052292146],[123,-8,67,0.1648597758520296],[123,-8,68,0.16266230214369026],[123,-8,69,0.1605308785567061],[123,-8,70,0.15846686696210754],[123,-8,71,0.15647150686042888],[123,-8,72,0.15454591023368336],[123,-8,73,0.15269105633209834],[123,-8,74,0.1509077863954471],[123,-8,75,0.14919679830920118],[123,-8,76,0.1475586411953248],[123,-8,77,0.14599370993779903],[123,-8,78,0.14450223964284092],[123,-8,79,0.14308430003383088],[123,-7,64,0.17637924344765277],[123,-7,65,0.17402810383900114],[123,-7,66,0.17173688211809068],[123,-7,67,0.1695072823760999],[123,-7,68,0.1673409027195235],[123,-7,69,0.1652392303394291],[123,-7,70,0.16320363651536307],[123,-7,71,0.16123537155396694],[123,-7,72,0.15933555966229396],[123,-7,73,0.15750519375588357],[123,-7,74,0.155745130201433],[123,-7,75,0.15405608349428812],[123,-7,76,0.15243862087057625],[123,-7,77,0.15089315685406857],[123,-7,78,0.14941994773773437],[123,-7,79,0.14801908600000702],[123,-6,64,0.180878006733596],[123,-6,65,0.17856206833435417],[123,-6,66,0.1763046842835495],[123,-6,67,0.17410756401503802],[123,-6,68,0.1719723123122744],[123,-6,69,0.16990042439892794],[123,-6,70,0.16789328096414857],[123,-6,71,0.1659521431225417],[123,-6,72,0.16407814730884296],[123,-6,73,0.16227230010735127],[123,-6,74,0.1605354730159576],[123,-6,75,0.158868397144993],[123,-6,76,0.15727165785071817],[123,-6,77,0.15574568930354116],[123,-6,78,0.15429076899092853],[123,-6,79,0.15290701215502522],[123,-5,64,0.18533343995821427],[123,-5,65,0.18305273120206178],[123,-5,66,0.1808292128218819],[123,-5,67,0.17866459959266223],[123,-5,68,0.176560502973775],[123,-5,69,0.1745184262209657],[123,-5,70,0.17253975943299138],[123,-5,71,0.17062577453296912],[123,-5,72,0.16877762018442288],[123,-5,73,0.16699631664208747],[123,-5,74,0.16528275053731056],[123,-5,75,0.1636376695982702],[123,-5,76,0.1620616773048359],[123,-5,77,0.1605552274781571],[123,-5,78,0.15911861880494382],[123,-5,79,0.15775198929645629],[123,-4,64,0.1897499602914524],[123,-4,65,0.1875045029876261],[123,-4,66,0.1853148718294546],[123,-4,67,0.18318278693121948],[123,-4,68,0.18110986642669435],[123,-4,69,0.17909762160251608],[123,-4,70,0.17714745196620707],[123,-4,71,0.1752606402489051],[123,-4,72,0.17343834734279395],[123,-4,73,0.17168160717328818],[123,-4,74,0.16999132150581842],[123,-4,75,0.16836825468742966],[123,-4,76,0.16681302832302425],[123,-4,77,0.1653261158863305],[123,-4,78,0.16390783726556524],[123,-4,79,0.16255835324380363],[123,-3,64,0.19413241357352273],[123,-3,65,0.19192222371274614],[123,-3,66,0.1897664956507764],[123,-3,67,0.18766695483920437],[123,-3,68,0.18562522608439558],[123,-3,69,0.18364282870224846],[123,-3,70,0.18172117160760826],[123,-3,71,0.17986154833838586],[123,-3,72,0.17806513201437846],[123,-3,73,0.1763329702308427],[123,-3,74,0.17466597988667076],[123,-3,75,0.1730649419473762],[123,-3,76,0.1715304961427263],[123,-3,77,0.17006313559909925],[123,-3,78,0.16866320140653523],[123,-3,79,0.1673308771204941],[123,-2,64,0.1984860863237088],[123,-2,65,0.19631117492092354],[123,-2,66,0.19418936095945039],[123,-2,67,0.19212237522621356],[123,-2,68,0.19011184919825186],[123,-2,69,0.1881593102188729],[123,-2,70,0.18626617660845912],[123,-2,71,0.18443375270998275],[123,-2,72,0.18266322386921963],[123,-2,73,0.18095565134971636],[123,-2,74,0.17931196718235998],[123,-2,75,0.17773296894975876],[123,-2,76,0.1762193145052663],[123,-2,77,0.17477151662673374],[123,-2,78,0.17338993760495303],[123,-2,79,0.17207478376680896],[123,-1,64,0.20281671787461408],[123,-1,65,0.2006770918489854],[123,-1,66,0.19858919896550364],[123,-1,67,0.1965547753446134],[123,-1,68,0.19457545913219698],[123,-1,69,0.1926527856971234],[123,-1,70,0.19078818276345288],[123,-1,71,0.18898296547734694],[123,-1,72,0.18723833140868007],[123,-1,73,0.1855553554874022],[123,-1,74,0.18393498487450588],[123,-1,75,0.1823780337678026],[123,-1,76,0.18088517814234395],[123,-1,77,0.17945695042556964],[123,-1,78,0.17809373410714668],[123,-1,79,0.17679575828351823],[123,0,64,0.2071305126319637],[123,0,65,0.20502617572464055],[123,0,66,0.20297220774920477],[123,0,67,0.2009703501581388],[123,0,68,0.19902224776462552],[123,0,69,0.19712944396149545],[123,0,70,0.19529337587482798],[123,0,71,0.1935153694522599],[123,0,72,0.1917966344859945],[123,0,73,0.19013825957056107],[123,0,74,0.18854120699518107],[123,0,75,0.1870063075709404],[123,0,76,0.18553425539260926],[123,0,77,0.18412560253518673],[123,0,78,0.18278075368513835],[123,0,79,0.18149996070634178],[123,1,64,0.21143415246007302],[123,1,65,0.20936510619017612],[123,1,66,0.20734506472148295],[123,1,67,0.2053757748375309],[123,1,68,0.2034588880177579],[123,1,69,0.20159595567784994],[123,1,70,0.19978842434473776],[123,1,71,0.19803763076630543],[123,1,72,0.19634479695579543],[123,1,73,0.19471102517096683],[123,1,74,0.1931372928278594],[123,1,75,0.191624447349364],[123,1,76,0.19017320094843881],[123,1,77,0.1887841253460537],[123,1,78,0.18745764642382412],[123,1,79,0.18619403881135477],[123,2,64,0.22433499171320037],[123,2,65,0.22237181905029102],[123,2,66,0.2204535589201344],[123,2,67,0.21858197409781754],[123,2,68,0.21675873605984153],[123,2,69,0.2149854202886583],[123,2,70,0.2132635015118639],[123,2,71,0.2115943488760993],[123,2,72,0.20997922105565137],[123,2,73,0.20841926129580257],[123,2,74,0.2069154923907921],[123,2,75,0.20546881159657782],[123,2,76,0.2040799854782488],[123,2,77,0.2027496446921614],[123,2,78,0.20147827870276924],[123,2,79,0.2002662304341607],[123,3,64,0.2243324019595414],[123,3,65,0.22236924357013543],[123,3,66,0.2204509981636925],[123,3,67,0.21857942850491452],[123,3,68,0.21675620605968793],[123,3,69,0.21498290629963057],[123,3,70,0.21326100394129588],[123,3,71,0.21159186812008535],[123,3,72,0.2099767574988608],[123,3,73,0.2084168153113063],[123,3,74,0.20691306433990064],[123,3,75,0.2054664018286928],[123,3,76,0.20407759433072659],[123,3,77,0.20274727249018953],[123,3,78,0.20147592575925677],[123,3,79,0.20026389704964176],[123,4,64,0.22432347415270204],[123,4,65,0.222360364969166],[123,4,66,0.2204421703206284],[123,4,67,0.2185706529359911],[123,4,68,0.21674748424454748],[123,4,69,0.21497423968056573],[123,4,70,0.21325239392253215],[123,4,71,0.21158331606710168],[123,4,72,0.2099682647377501],[123,4,73,0.20840838312817678],[123,4,74,0.20690469398031952],[123,4,75,0.20545809449717245],[123,4,76,0.2040693511902545],[123,4,77,0.20273909466180384],[123,4,78,0.20146781432166694],[123,4,79,0.20025585303889626],[123,5,64,0.2286044577007107],[123,5,65,0.22667674263055337],[123,5,66,0.22479258139250435],[123,5,67,0.22295374196934914],[123,5,68,0.22116190237766964],[123,5,69,0.21941864599390204],[123,5,70,0.21772545681505606],[123,5,71,0.21608371465414722],[123,5,72,0.21449469027033052],[123,5,73,0.2129595404337854],[123,5,74,0.21147930292521921],[123,5,75,0.21005489147017187],[123,5,76,0.20868709060797463],[123,5,77,0.20737655049543802],[123,5,78,0.2061237816452346],[123,5,79,0.20492914959899422],[123,6,64,0.23287108658567302],[123,6,65,0.23097883769366667],[123,6,66,0.2291287845046145],[123,6,67,0.22732270019899103],[123,6,68,0.22556226932307888],[123,6,69,0.22384908313655627],[123,6,70,0.22218463489475038],[123,6,71,0.22057031506560643],[123,6,72,0.21900740648136285],[123,6,73,0.21749707942498087],[123,6,74,0.21604038665119685],[123,6,75,0.2146382583423787],[123,6,76,0.21329149699904137],[123,6,77,0.21200077226509273],[123,6,78,0.21076661568778166],[123,6,79,0.20958941541235887],[123,7,64,0.23711938206253125],[123,7,65,0.23526268774396852],[123,7,66,0.23344683432676938],[123,7,67,0.23167360011803273],[123,7,68,0.2299446761208378],[123,7,69,0.22826166140342974],[123,7,70,0.22662605840307493],[123,7,71,0.22503926816463937],[123,7,72,0.22350258551387847],[123,7,73,0.2220171941654855],[123,7,74,0.22058416176577111],[123,7,75,0.21920443487014996],[123,7,76,0.21787883385529305],[123,7,77,0.21660804776601728],[123,7,78,0.21539262909688062],[123,7,79,0.21423298850849748],[123,8,64,0.241345376254038],[123,8,65,0.2395243396917381],[123,8,66,0.23774279332517734],[123,8,67,0.2360025205024754],[123,8,68,0.2343052185955956],[123,8,69,0.2326524943912064],[123,8,70,0.2310458594162217],[123,8,71,0.2294867251980709],[123,8,72,0.22797639845968964],[123,8,73,0.22651607624927694],[123,8,74,0.22510684100469014],[123,8,75,0.2237496555526568],[123,8,76,0.22244535804265975],[123,8,77,0.22119465681556572],[123,8,78,0.21999812520697015],[123,8,79,0.21885619628526853],[123,9,64,0.2455451153233299],[123,9,65,0.2437598529888531],[123,9,66,0.2420127350221989],[123,9,67,0.2403055497126968],[123,9,68,0.23864000069858227],[123,9,69,0.23701770237962183],[123,9,70,0.23544017526443173],[123,9,71,0.23390884125253542],[123,9,72,0.23242501885115252],[123,9,73,0.2309899183267643],[123,9,74,0.2296046367913298],[123,9,75,0.2282701532233271],[123,9,76,0.22698732342348005],[123,9,77,0.22575687490523855],[123,9,78,0.22457940171998636],[123,9,79,0.22345535921698567],[123,10,64,0.24971466259075908],[123,10,65,0.24796530278935575],[123,10,66,0.2462527471994283],[123,10,67,0.24457878893783142],[123,10,68,0.24294513779207144],[123,10,69,0.24135341565479573],[123,10,70,0.23980515189299123],[123,10,71,0.23830177865193558],[123,10,72,0.23684462609389223],[123,10,73,0.23543491757159718],[123,10,74,0.23407376473641084],[123,10,75,0.232762162581306],[123,10,76,0.2315009844185577],[123,10,77,0.2302909767921999],[123,10,78,0.2291327543252223],[123,10,79,0.22802679450151941],[123,11,64,0.2538501015947665],[123,11,65,0.2521367830535823],[123,11,66,0.25045893504387995],[123,11,67,0.24881835538281383],[123,11,68,0.24721675987608466],[123,11,69,0.2456557777744034],[123,11,70,0.24413694716468026],[123,11,71,0.2426617102959837],[123,11,72,0.24123140884026306],[123,11,73,0.23984727908787595],[123,11,74,0.23851044707780167],[123,11,75,0.2372219236627061],[123,11,76,0.2359825995087259],[123,11,77,0.2347932400300372],[123,11,78,0.23365448025818147],[123,11,79,0.23256681964616044],[123,12,64,0.2579475390969078],[123,12,65,0.25627040959596764],[123,12,66,0.2546274242373919],[123,12,67,0.2530203853982005],[123,12,68,0.25145101475745274],[123,12,69,0.2499209487748006],[123,12,70,0.24843173410378872],[123,12,71,0.24698482293994578],[123,12,72,0.24558156830366018],[123,12,73,0.24422321925788026],[123,12,74,0.24291091606052495],[123,12,75,0.2416456852517631],[123,12,76,0.24042843467603559],[123,12,77,0.23925994843888143],[123,12,78,0.2381408817985431],[123,12,79,0.23707175599236174],[123,13,64,0.26200310803113447],[123,13,65,0.2603623230766323],[123,13,66,0.2587543639893535],[123,13,67,0.2571810375528766],[123,13,68,0.2556440711613401],[123,13,69,0.2541451083202084],[123,13,70,0.2526857040818105],[123,13,71,0.2512673204156943],[123,13,72,0.24989132151379062],[123,13,73,0.24855896903042762],[123,13,74,0.24727141725707935],[123,13,75,0.24602970823200976],[123,13,76,0.2448347667846822],[123,13,77,0.24368739551500107],[123,13,78,0.24258826970735503],[123,13,79,0.2415379321794775],[123,14,64,0.2660129703971077],[123,14,65,0.2644086919365218],[123,14,66,0.26283593001252825],[123,14,67,0.26129649564941754],[123,14,68,0.25979212178500327],[123,14,69,0.2583244587937291],[123,14,70,0.25689506994457945],[123,14,71,0.2555054267938357],[123,14,72,0.25415690451267076],[123,14,73,0.2528507771496235],[123,14,74,0.2515882128278383],[123,14,75,0.2503702688772268],[123,14,76,0.2491978869014283],[123,14,77,0.24807188777962808],[123,14,78,0.2469929666032098],[123,14,79,0.24596168754725223],[123,15,64,0.26997332009773267],[123,15,65,0.2684057152762929],[123,15,66,0.26686832744216427],[123,15,67,0.2653629716822991],[123,15,68,0.26389138629397635],[123,15,69,0.26245522833038487],[123,15,70,0.26105606908104545],[123,15,71,0.25969538948711196],[123,15,72,0.2583745754915459],[123,15,73,0.2570949133242037],[123,15,74,0.2558575847217248],[123,15,75,0.2546636620823758],[123,15,76,0.2535141035557265],[123,15,77,0.2524097480672193],[123,15,78,0.25135131027760604],[123,15,79,0.25033937547726437],[123,16,64,0.27388038572077567],[123,16,65,0.2723496256788044],[123,16,66,0.2708477936982523],[123,16,67,0.2693767087388139],[123,16,68,0.26793811426054054],[123,16,69,0.2665336737920384],[123,16,70,0.2651649664335457],[123,16,71,0.2638334822949284],[123,16,72,0.26254061786858784],[123,16,73,0.26128767133731995],[123,16,74,0.2600758378170169],[123,16,75,0.258906204534361],[123,16,76,0.25777974593939124],[123,16,77,0.25669731875300233],[123,16,78,0.25565965694935033],[123,16,79,0.2546673666731769],[123,17,64,0.27773043326474367],[123,17,65,0.2762366919753952],[123,17,66,0.2747706012911127],[123,17,67,0.2733339838428797],[123,17,68,0.27192858804466574],[123,17,69,0.27055608368438183],[123,17,70,0.2692180574497606],[123,17,71,0.26791600838919943],[123,17,72,0.26665134330756035],[123,17,73,0.26542537209696443],[123,17,74,0.26423930300247567],[123,17,75,0.2630942378228189],[123,17,76,0.2619911670460173],[123,17,77,0.26093096492000495],[123,17,78,0.2599143844581914],[123,17,79,0.2589420523799898],[123,18,64,0.28151976880881224],[123,18,65,0.28006322195573363],[123,18,66,0.2786330605700957],[123,18,67,0.2772311107415193],[123,18,68,0.2758591256172009],[123,18,69,0.27451878101577093],[123,18,70,0.273211670976128],[123,18,71,0.2719393032412857],[123,18,72,0.27070309467722703],[123,18,73,0.26950436662680183],[123,18,74,0.2683443401985657],[123,18,75,0.26722413149070157],[123,18,76,0.2661447467499111],[123,18,77,0.26510707746533163],[123,18,78,0.2641118953974549],[123,18,79,0.26315984754205896],[123,19,64,0.28524474112690695],[123,19,65,0.2838255650213438],[123,19,66,0.28243152241549974],[123,19,67,0.28106444263411906],[123,19,68,0.2797260833254218],[123,19,69,0.27841812609801375],[123,19,70,0.27714217209282743],[123,19,71,0.2758997374901326],[123,19,72,0.2746922489516094],[123,19,73,0.2735210389975205],[123,19,74,0.2723873413188812],[123,19,75,0.27129228602476707],[123,19,76,0.2702368948246477],[123,19,77,0.2692220761458021],[123,19,78,0.26824862018579115],[123,19,79,0.26731719389999964],[123,20,64,0.28890174424603116],[123,20,65,0.2875201147829023],[123,20,66,0.2861623808738046],[123,20,67,0.28483037484456364],[123,20,68,0.28352585860103463],[123,20,69,0.28225051928921174],[123,20,70,0.28100596489043206],[123,20,71,0.2797937197517103],[123,20,72,0.2786152200511986],[123,20,73,0.2774718091988055],[123,20,74,0.276364733171878],[123,20,75,0.2752951357860794],[123,20,76,0.27426405390135766],[123,20,77,0.27327241256305584],[123,20,78,0.2723210200781424],[123,20,79,0.2714105630265725],[123,21,64,0.2924872199486464],[123,21,65,0.29114331160111084],[123,21,66,0.2898220757360194],[123,21,67,0.2885253474360453],[123,21,68,0.28725489261043147],[123,21,69,0.2860124036784497],[123,21,70,0.28479949518802333],[123,21,71,0.28361769936954895],[123,21,72,0.2824684616249108],[123,21,73,0.2813531359517229],[123,21,74,0.2802729803027024],[123,21,75,0.27922915188030695],[123,21,76,0.2782227023665301],[123,21,77,0.27725457308790763],[123,21,78,0.27632559011571184],[123,21,79,0.27543645930134425],[123,22,64,0.2959976602192067],[123,22,65,0.29469164507124623],[123,22,66,0.29340709505925183],[123,22,67,0.29214584776865377],[123,22,68,0.2909096728473052],[123,22,69,0.28970026771244095],[123,22,70,0.2885192531928758],[123,22,71,0.28736816910647556],[123,22,72,0.28624846977289625],[123,22,73,0.28516151946162455],[123,22,74,0.2841085877752256],[123,22,75,0.2830908449679281],[123,22,76,0.28210935719944286],[123,22,77,0.28116508172406657],[123,22,78,0.28025886201504796],[123,22,79,0.27939142282422796],[123,23,64,0.29942960963493376],[123,23,65,0.29816165645147513],[123,23,66,0.2969139776315843],[123,23,67,0.2956884129998354],[123,23,68,0.2944867356677132],[123,23,69,0.2933106477642197],[123,23,70,0.2921617761018043],[123,23,71,0.2910416677776476],[123,23,72,0.2899517857102944],[123,23,73,0.28889350411166864],[123,23,74,0.2878681038943792],[123,23,75,0.28687676801444173],[123,23,76,0.285920576749317],[123,23,77,0.2850005029113147],[123,23,78,0.2841174069963419],[123,23,79,0.2832720322680066],[123,24,64,0.3027796677006501],[123,24,65,0.3015499410347507],[123,24,66,0.3003393153800723],[123,24,67,0.2991496325275337],[123,24,68,0.2979826687673999],[123,24,69,0.2968401306436874],[123,24,70,0.29572365064397976],[123,24,71,0.29463478282468647],[123,24,72,0.2935749983717391],[123,24,73,0.29254568109675705],[123,24,74,0.29154812286859266],[123,24,75,0.29058351898038054],[123,24,76,0.28965296345199193],[123,24,77,0.2887574442679423],[123,24,78,0.28789783855073237],[123,24,79,0.28707490766963145],[123,25,64,0.3060444911277667],[123,25,65,0.3048531504643855],[123,25,66,0.3036797557219628],[123,25,67,0.302526150376109],[123,25,68,0.3013941136014778],[123,25,69,0.3002853560501147],[123,25,70,0.2992015155653143],[123,25,71,0.2981441528310133],[123,25,72,0.29711474695671763],[123,25,73,0.2961146909979939],[123,25,74,0.2951452874124364],[123,25,75,0.2942077434512327],[123,25,76,0.2933031664862294],[123,25,77,0.2924325592725477],[123,25,78,0.29159681514672625],[123,25,79,0.29079671316040295],[123,26,64,0.3092207960575053],[123,26,65,0.3080679949933851],[123,26,66,0.3069320038592148],[123,26,67,0.30581466752512376],[123,26,68,0.30471776774655146],[123,26,69,0.30364301896668444],[123,26,70,0.30259206405450423],[123,26,71,0.3015664699784754],[123,26,72,0.3005677234158692],[123,26,73,0.2995972262977529],[123,26,74,0.2986562912895606],[123,26,75,0.29774613720736165],[123,26,76,0.29686788436973405],[123,26,77,0.29602254988528875],[123,26,78,0.2952110428758255],[123,26,79,0.2944341596351286],[123,27,64,0.3123053602281844],[123,27,65,0.3111912456873678],[123,27,66,0.31009282501614704],[123,27,67,0.3090119441808123],[123,27,68,0.3079503872051071],[123,27,69,0.3069098719968945],[123,27,70,0.3058920461105458],[123,27,71,0.30489848244507844],[123,27,72,0.30393067487804015],[123,27,73,0.3029900338351682],[123,27,74,0.30207788179574074],[123,27,75,0.30119544873373527],[123,27,76,0.30034386749470227],[123,27,77,0.29952416910839963],[123,27,78,0.29873727803716876],[123,27,79,0.29798400736006075],[123,28,64,0.3152950250866603],[123,28,65,0.3142197365711617],[123,28,66,0.3131590466203062],[123,28,67,0.31211480199033287],[123,28,68,0.3110887886522596],[123,28,69,0.31008272764291706],[123,28,70,0.30909827085182234],[123,28,71,0.30813699674392125],[123,28,72,0.30720040601819276],[123,28,73,0.3062899172021463],[123,28,74,0.30540686218213026],[123,28,75,0.30455248166956306],[123,28,76,0.30372792060299847],[123,28,77,0.3029342234860689],[123,28,78,0.30217232966128743],[123,28,79,0.30144306851971847],[123,29,64,0.318186697843996],[123,29,65,0.31715036671915603],[123,29,66,0.3161275604266311],[123,29,67,0.31512012619887586],[123,29,68,0.3141298516249377],[123,29,69,0.31315846052599133],[123,29,70,0.31220760876684106],[123,29,71,0.31127888000341486],[123,29,72,0.3103737813662476],[123,29,73,0.30949373907998096],[123,29,74,0.30864009401880155],[123,29,75,0.3078140971979256],[123,29,76,0.3070169052010433],[123,29,77,0.306249575543767],[123,29,78,0.3055130619730632],[123,29,79,0.30480820970267836],[123,30,64,0.32097735347520057],[123,30,65,0.31998010228924406],[123,30,66,0.31899532458475],[123,30,67,0.31802486774946553],[123,30,68,0.3170705206533386],[123,30,69,0.31613400954868387],[123,30,70,0.31521699390645025],[123,30,71,0.31432106218861294],[123,30,72,0.31344772755668826],[123,30,73,0.3125984235163967],[123,30,74,0.3117744994984008],[123,30,75,0.3109772163752191],[123,30,76,0.31020774191423484],[123,30,77,0.3094671461668415],[123,30,78,0.30875639679370487],[123,30,79,0.3080763543261526],[123,31,64,0.3236640366631235],[123,31,65,0.32270597850044525],[123,31,66,0.32175936564949986],[123,31,67,0.32082604532554315],[123,31,68,0.3199078073347438],[123,31,69,0.31900637999910464],[123,31,70,0.3181234260176281],[123,31,71,0.3172605382637471],[123,31,72,0.3164192355190202],[123,31,73,0.31560095814311506],[123,31,74,0.3148070636800096],[123,31,75,0.31403882240050884],[123,31,76,0.31329741278099865],[123,31,77,0.31258391691847665],[123,31,78,0.3118993158818416],[123,31,79,0.31124448499945156],[123,32,64,0.32624386368657],[123,32,65,0.32532510155427313],[123,32,66,0.32441678053473233],[123,32,67,0.3235207473363987],[123,32,68,0.3226387923497625],[123,32,69,0.3217726455971497],[123,32,70,0.3209239726189128],[123,32,71,0.3200943702960366],[123,32,72,0.31928536260915663],[123,32,73,0.3184983963340158],[123,32,74,0.3177348366732883],[123,32,75,0.31699596282486764],[123,32,76,0.3162829634865418],[123,32,77,0.3155969322970934],[123,32,78,0.3149388632138095],[123,32,79,0.31430964582640775],[123,33,64,0.3287140242524938],[123,33,65,0.32783465049970223],[123,33,66,0.3269647384102619],[123,33,67,0.32610613384530396],[123,33,68,0.32526062742085393],[123,33,69,0.3244299504826183],[123,33,70,0.3236157710173219],[123,33,71,0.32281968950061873],[123,33,72,0.322043234681573],[123,33,73,0.3212878593037341],[123,33,74,0.3205549357627394],[123,33,75,0.319845751700536],[123,33,76,0.3191615055361476],[123,33,77,0.31850330193302556],[123,33,78,0.3178721472029646],[123,33,79,0.3172689446465941],[123,34,64,0.3310717832723453],[123,34,65,0.33023187904181517],[123,34,66,0.32940048254203524],[123,34,67,0.3285794384404267],[123,34,68,0.3277705372132097],[123,34,69,0.32697551114528656],[123,34,70,0.3261960302668419],[123,34,71,0.3254336982266831],[123,34,72,0.3246900481023164],[123,34,73,0.32396653814678084],[123,34,74,0.3232645474721795],[123,34,75,0.3225853716699918],[123,34,76,0.32193021836809943],[123,34,77,0.32130020272455995],[123,34,78,0.3206963428581132],[123,34,79,0.3201195552154274],[123,35,64,0.33331448258263263],[123,35,65,0.3325141172941865],[123,35,66,0.3317213320755799],[123,35,67,0.33093797004858666],[123,35,68,0.33016582117805726],[123,35,69,0.3294066182969997],[123,35,70,0.32866203306855285],[123,35,71,0.32793367188487355],[123,35,72,0.32722307170293374],[123,35,73,0.32653169581724983],[123,35,74,0.3258609295694835],[123,35,75,0.3252120759949977],[123,35,76,0.32458635140630004],[123,35,77,0.32398488091340927],[123,35,78,0.3234086938811269],[123,35,79,0.32285871932322463],[123,36,64,0.33543954260956776],[123,36,65,0.33467877347487435],[123,36,66,0.33392468376260287],[123,36,67,0.3331791146917192],[123,36,68,0.3324438553382484],[123,36,69,0.33172063868564605],[123,36,70,0.33101113761224843],[123,36,71,0.330316960815817],[123,36,72,0.3296396486751769],[123,36,73,0.32898066904896894],[123,36,74,0.328341413011458],[123,36,75,0.32772319052547655],[123,36,76,0.32712722605244043],[123,36,77,0.3265546540994686],[123,36,78,0.32600651470359254],[123,36,79,0.3254837488530626],[123,37,64,0.3374444639778695],[123,37,65,0.3367233355460925],[123,37,66,0.33600801363081],[123,37,67,0.33530033718612173],[123,37,68,0.33460209401620966],[123,37,69,0.3339150168510889],[123,37,70,0.3332407793596283],[123,37,71,0.3325809920998583],[123,37,72,0.3319371984065627],[123,37,73,0.3313108702161748],[123,37,74,0.3307034038289225],[123,37,75,0.33011611560829907],[123,37,76,0.3295502376177968],[123,37,77,0.32900691319493686],[123,37,78,0.3284871924625791],[123,37,79,0.327992027777521],[123,38,64,0.339326829063769],[123,38,65,0.3386453727976096],[123,38,66,0.3379688785969977],[123,38,67,0.33729918278453225],[123,38,68,0.33663807150430436],[123,38,69,0.335987276823107],[123,38,70,0.33534847276911506],[123,38,71,0.33472327130805246],[123,38,72,0.3341132182568432],[123,38,73,0.33351978913476493],[123,38,74,0.3329443849520549],[123,38,75,0.33238832793603734],[123,38,76,0.33185285719471597],[123,38,77,0.3313391243178619],[123,38,78,0.33084818891558154],[123,38,79,0.3303810140943728],[123,39,64,0.3410843034921055],[123,39,65,0.34044253737376073],[123,39,66,0.33980491802329593],[123,39,67,0.33917327876091957],[123,39,68,0.3385494036774832],[123,39,69,0.3379350237612211],[123,39,70,0.33733181296217096],[123,39,71,0.33674138419428834],[123,39,72,0.33616528527525524],[123,39,73,0.3356049948039983],[123,39,74,0.33506191797586893],[123,39,75,0.33453738233555225],[123,39,76,0.3340326334676509],[123,39,77,0.3335488306249717],[123,39,78,0.33308704229450076],[123,39,79,0.33264824170107654],[123,40,64,0.34271463757760706],[123,40,65,0.3421125657441695],[123,40,66,0.34151385521666494],[123,40,67,0.34092033593808757],[123,40,68,0.34033378954832855],[123,40,69,0.3397559455365104],[123,40,70,0.33918847733121954],[123,40,71,0.33863299832865046],[123,40,72,0.33809105785866067],[123,40,73,0.3375641370887523],[123,40,74,0.3370536448659338],[123,40,75,0.33656091349652634],[123,40,76,0.3360871944638629],[123,40,77,0.33563365408390744],[123,40,78,0.3352013690987793],[123,40,79,0.33479132220819363],[123,41,64,0.3442156677102936],[123,41,65,0.3436532801181129],[123,41,66,0.3430934988715768],[123,41,67,0.34253815015802436],[123,41,68,0.34198901276442195],[123,41,69,0.3414478142553479],[123,41,70,0.34091622708910096],[123,41,71,0.3403958646719466],[123,41,72,0.33988827735050064],[123,41,73,0.3393949483422635],[123,41,74,0.33891728960426326],[123,41,75,0.3384566376398669],[123,41,76,0.3380142492437114],[123,41,77,0.3375912971847799],[123,41,78,0.33718886582761076],[123,41,79,0.3368079466916464],[123,42,64,0.34558531768507533],[123,42,65,0.3450625898026088],[123,42,66,0.3445417444559619],[123,42,67,0.3440246036950773],[123,42,68,0.3435129430481165],[123,42,69,0.3430084877251396],[123,42,70,0.3425129087601461],[123,42,71,0.34202781909148816],[123,42,72,0.34155476958065434],[123,42,73,0.34109524496943994],[123,42,74,0.3406506597754608],[123,42,75,0.34022235412606894],[123,42,76,0.33981158953062396],[123,42,77,0.3394195445911433],[123,42,78,0.3390473106513201],[123,42,79,0.3386958873839162],[123,43,64,0.3468215999754587],[123,43,65,0.3463384925041322],[123,43,66,0.34585657554032506],[123,43,67,0.3453776666118581],[123,43,68,0.344903537578617],[123,43,69,0.344435910861966],[123,43,70,0.34397645561276785],[123,43,71,0.3435267838180184],[123,43,72,0.343088446346096],[123,43,73,0.3426629289306396],[123,43,74,0.3422516480930161],[123,43,75,0.341855947003431],[123,43,76,0.34147709128063847],[123,43,77,0.3411162647302743],[123,43,78,0.34077456502180004],[123,43,79,0.3404529993040649],[123,44,64,0.3479226169514096],[123,44,65,0.3474790755740121],[123,44,66,0.34703606507008516],[123,44,67,0.34659539805793005],[123,44,68,0.34615884231642113],[123,44,69,0.3457281170401828],[123,44,70,0.34530488903362533],[123,44,71,0.34489076884384745],[123,44,72,0.34448730683240725],[123,44,73,0.3440959891859718],[123,44,74,0.3437182338658102],[123,44,75,0.3433553864961813],[123,44,76,0.34300871619157275],[123,44,77,0.34267941132281626],[123,44,78,0.3423685752220649],[123,44,79,0.3420772218266415],[123,45,64,0.3488865620413961],[123,45,65,0.3484825171975336],[123,45,66,0.34807837658116203],[123,45,67,0.34767594751130526],[123,45,68,0.34727699327015044],[123,45,69,0.3468832293840076],[123,45,70,0.3464963198433898],[123,45,71,0.3461178732622219],[123,45,72,0.3457494389761774],[123,45,73,0.34539250308015496],[123,45,74,0.34504848440486163],[123,45,75,0.3447187304325484],[123,45,76,0.3444045131518609],[123,45,77,0.34410702485182526],[123,45,78,0.3438273738549588],[123,45,79,0.3435665801895119],[123,46,64,0.3497117208385492],[123,46,65,0.3493470875266792],[123,46,66,0.3489817653587441],[123,46,67,0.3486175559626815],[123,46,68,0.34825621770569765],[123,46,69,0.3478994620010194],[123,46,70,0.34754894955403864],[123,46,71,0.3472062865478539],[123,46,72,0.34687302076821064],[123,46,73,0.3465506376678492],[123,46,74,0.3462405563702327],[123,46,75,0.3459441256126938],[123,46,76,0.3456626196289676],[123,46,77,0.34539723397113],[123,46,78,0.3451490812709294],[123,46,79,0.34491918694052137],[123,47,64,0.3503964721509798],[123,47,65,0.3500711497565515],[123,47,66,0.3497445795392793],[123,47,67,0.3494185570424627],[123,47,68,0.34909483529773666],[123,47,69,0.348775121157618],[123,47,70,0.3484610715677221],[123,47,71,0.3481542897786565],[123,47,72,0.3478563214975907],[123,47,73,0.34756865097951284],[123,47,74,0.3472926970581449],[123,47,75,0.3470298091165549],[123,47,76,0.346781262997434],[123,47,77,0.3465482568530577],[123,47,78,0.346331906934919],[123,47,79,0.3461332433230428],[123,48,64,0.3509392889962669],[123,48,65,0.3506531611454893],[123,48,66,0.3503652611557022],[123,48,67,0.3500773780905766],[123,48,68,0.3497912592236101],[123,48,69,0.3495086063964576],[123,48,70,0.34923107231722106],[123,48,71,0.34896025679870235],[123,48,72,0.34869770293662106],[123,48,73,0.34844489322780425],[123,48,74,0.34820324562832505],[123,48,75,0.34797410955162267],[123,48,76,0.3477587618065767],[123,48,77,0.34755840247555136],[123,48,78,0.3473741507324],[123,48,79,0.34720704060043767],[123,49,64,0.3513387395400712],[123,49,65,0.3510916739788352],[123,49,66,0.3508423471258537],[123,49,67,0.35059254116904487],[123,49,68,0.3503439971995451],[123,49,69,0.3500984115958053],[123,49,70,0.349857432347943],[123,49,71,0.3496226553223538],[123,49,72,0.34939562046658396],[123,49,73,0.3491778079544693],[123,49,74,0.34897063427152175],[123,49,75,0.34877544824059104],[123,49,76,0.34859352698777757],[123,49,77,0.34842607184861096],[123,49,78,0.3482742042144857],[123,49,79,0.34813896131935956],[123,50,64,0.3515934879789083],[123,50,65,0.35138533647638237],[123,50,66,0.3511744701841222],[123,50,67,0.350962664017335],[123,50,68,0.35075165245923146],[123,50,69,0.3505431259708579],[123,50,70,0.3503387273414914],[123,50,71,0.3501400479795978],[123,50,72,0.3499486241443561],[123,50,73,0.3497659331177529],[123,50,74,0.3495933893172313],[123,50,75,0.34943234034891724],[123,50,76,0.3492840630014031],[123,50,77,0.3491497591801013],[123,50,78,0.34903055178215975],[123,50,79,0.34892748051194494],[123,51,64,0.3517022953670796],[123,51,65,0.3515328936435068],[123,51,66,0.3513603597563124],[123,51,67,0.35118646095050077],[123,51,68,0.35101292467476625],[123,51,69,0.3508414350170239],[123,51,70,0.3506736290808159],[123,51,71,0.35051109330259533],[123,51,72,0.3503553597098895],[123,51,73,0.35020790212034497],[123,51,74,0.3500701322816435],[123,51,75,0.34994339595230606],[123,51,76,0.34982896892336823],[123,51,77,0.3497280529809399],[123,51,78,0.3496417718096382],[123,51,79,0.3495711668369038],[123,52,64,0.35166402038774114],[123,52,65,0.3515331880659586],[123,52,66,0.3513988427777156],[123,52,67,0.35126274370008337],[123,52,68,0.35112661081993807],[123,52,69,0.3509921213951396],[123,52,70,0.35086090635691003],[123,52,71,0.3507345466534111],[123,52,72,0.350614569534522],[123,52,73,0.35050244477782266],[123,52,74,0.35039958085576867],[123,52,75,0.3503073210440759],[123,52,76,0.35022693947129996],[123,52,77,0.3501596371096196],[123,52,78,0.3501065377068177],[123,52,79,0.35006868365946564],[123,53,64,0.351477620068132],[123,53,65,0.35138516064833625],[123,53,66,0.3512888444544029],[123,53,67,0.3511904221977967],[123,53,68,0.35109160597587286],[123,53,69,0.3509940657586448],[123,53,70,0.35089942581708405],[123,53,71,0.35080926109294885],[123,53,72,0.3507250935101446],[123,53,73,0.35064838822761735],[123,53,74,0.3505805498337736],[123,53,75,0.3505229184824372],[123,53,76,0.35047676597033184],[123,53,77,0.3504432917560989],[123,53,78,0.3504236189208429],[123,53,79,0.35041879007021115],[123,54,64,0.3511421504389476],[123,54,65,0.3510878512962312],[123,54,66,0.3510293889677339],[123,54,67,0.35096850530198886],[123,54,68,0.35090690407903635],[123,54,69,0.35084624752271165],[123,54,70,0.35078815275480546],[123,54,71,0.3507341881910908],[123,54,72,0.350685869879222],[123,54,73,0.3506446577785038],[123,54,74,0.3506119519815276],[123,54,75,0.3505890888776825],[123,54,76,0.350577337258531],[123,54,77,0.3505778943650597],[123,54,78,0.35059188187679513],[123,54,79,0.35062034184279434],[123,55,64,0.35065676713786487],[123,55,65,0.35064039954204607],[123,55,66,0.35061960012207843],[123,55,67,0.3505961014668757],[123,55,68,0.3505715986115855],[123,55,69,0.35054774557531937],[123,55,70,0.35052615184110036],[123,55,71,0.3505083787780271],[123,55,72,0.35049593600565543],[123,55,73,0.35049027770059793],[123,55,74,0.3504927988453389],[123,55,75,0.35050483141926947],[123,55,76,0.3505276405319364],[123,55,77,0.35056242049851216],[123,55,78,0.3506102908574783],[123,55,79,0.35067229233052977],[123,56,64,0.35002072595722394],[123,56,65,0.35004204511449355],[123,56,66,0.3500587019357617],[123,56,67,0.35007241935455846],[123,56,68,0.3500848832340838],[123,56,69,0.3500977389302885],[123,56,70,0.35011258779752863],[123,56,71,0.3501309836367925],[123,56,72,0.35015442908650096],[123,56,73,0.35018437195587904],[123,56,74,0.35022220150090266],[123,56,75,0.3502692446428175],[123,56,76,0.3503267621292287],[123,56,77,0.35039594463776697],[123,56,78,0.3504779088223243],[123,56,79,0.35057369330186583],[123,57,64,0.3492333833358464],[123,57,65,0.34929212845175606],[123,57,66,0.34934601917521296],[123,57,67,0.3493967683898067],[123,57,68,0.34944605236055964],[123,57,69,0.3494955073222566],[123,57,70,0.3495467260107159],[123,57,71,0.34960125413699444],[123,57,72,0.3496605868045305],[123,57,73,0.34972616486922226],[123,57,74,0.34979937124244487],[123,57,75,0.3498815271370032],[123,57,76,0.3499738882560198],[123,57,77,0.35007764092476307],[123,57,78,0.3501938981654079],[123,57,79,0.3503236957147379],[123,58,64,0.34829419679501417],[123,58,65,0.34839009115832914],[123,58,66,0.34848097783233845],[123,58,67,0.3485685592576244],[123,58,68,0.3486545016759265],[123,58,69,0.34874043174361163],[123,58,70,0.3488279330884577],[123,58,71,0.348918542809743],[123,58,72,0.349013747921646],[123,58,73,0.3491149817399518],[123,58,74,0.3492236202120703],[123,58,75,0.34934097819036136],[123,58,76,0.34946830564876663],[123,58,77,0.3496067838427548],[123,58,78,0.3497575214125705],[123,58,79,0.3499215504297968],[123,59,64,0.34720272531860685],[123,59,65,0.34733547640554585],[123,59,66,0.3474631055451187],[123,59,67,0.3475873043436002],[123,59,68,0.34770972859576643],[123,59,69,0.3478319949233848],[123,59,70,0.34795567735739696],[123,59,71,0.3480823038637887],[123,59,72,0.3482133528131495],[123,59,73,0.3483502493939178],[123,59,74,0.3484943619693208],[123,59,75,0.3486469983779982],[123,59,76,0.3488094021783149],[123,59,77,0.3489827488363655],[123,59,78,0.3491681418576634],[123,59,79,0.34936660886252413],[123,60,64,0.3459586296773629],[123,60,65,0.34612792927575065],[123,60,66,0.346292031961397],[123,60,67,0.346452618117011],[123,60,68,0.34661133266844535],[123,60,69,0.34676978174807294],[123,60,70,0.34692952930224785],[123,60,71,0.3470920936428393],[123,60,72,0.3472589439428445],[123,60,73,0.3474314966760733],[123,60,74,0.3476111120009182],[123,60,75,0.34779909008819365],[123,60,76,0.34799666739305307],[123,60,77,0.3482050128709864],[123,60,78,0.3484252241378897],[123,60,79,0.34865832357421583],[123,61,64,0.3445616726973142],[123,61,65,0.34476719705016845],[123,61,66,0.3449674890459039],[123,61,67,0.3451642174567211],[123,61,68,0.3453590159196017],[123,61,69,0.3455534796244308],[123,61,70,0.34574916194660205],[123,61,71,0.3459475710240907],[123,61,72,0.3461501662790012],[123,61,73,0.346358354883582],[123,61,74,0.3465734881707238],[123,61,75,0.34679685798891924],[123,61,76,0.3470296930016997],[123,61,77,0.3472731549315453],[123,61,78,0.3475283347482647],[123,61,79,0.3477962488018522],[123,62,64,0.34301171947237696],[123,62,65,0.34325312944045483],[123,62,66,0.34348931133050614],[123,62,67,0.3437219219198653],[123,62,68,0.3439525831389983],[123,62,69,0.3441828787842225],[123,62,70,0.3444143511753101],[123,62,71,0.34464849775796524],[123,62,72,0.3448867676511784],[123,62,73,0.3451305581394505],[123,62,74,0.34538121110990605],[123,62,75,0.34564000943426965],[123,62,76,0.3459081732957235],[123,62,77,0.3461868564606418],[123,62,78,0.3464771424951987],[123,62,79,0.346780040926856],[123,63,64,0.34130873752105784],[123,63,65,0.3415856787638837],[123,63,66,0.3418574361076353],[123,63,67,0.3421256539532724],[123,63,68,0.3423919421096938],[123,63,69,0.3426578725308902],[123,63,70,0.34292497599839505],[123,63,71,0.3431947387490173],[123,63,72,0.3434685990478653],[123,63,73,0.34374794370664885],[123,63,74,0.34403410454728356],[123,63,75,0.3443283548107694],[123,63,76,0.3446319055113588],[123,63,77,0.344945901736017],[123,63,78,0.345271418889163],[123,63,79,0.3456094588827048],[123,64,64,0.33945279688734725],[123,64,65,0.33976490006224724],[123,64,66,0.3400719035669689],[123,64,67,0.3403754390477033],[123,64,68,0.3406771037796055],[123,64,69,0.34097845742821087],[123,64,70,0.34128101875656747],[123,64,71,0.34158626227807],[123,64,72,0.3418956148550025],[123,64,73,0.3422104522427777],[123,64,74,0.3425320955798994],[123,64,75,0.3428618078236139],[123,64,76,0.34320079013127347],[123,64,77,0.3435501781874075],[123,64,78,0.34391103847649485],[123,64,79,0.34428436450144817],[123,65,64,0.3374440701857397],[123,65,65,0.3377909511644053],[123,65,66,0.33813285687530503],[123,65,67,0.3384714058348399],[123,65,68,0.33880818237540367],[123,65,69,0.33914473343088036],[123,65,70,0.3394825652682846],[123,65,71,0.33982314016553006],[123,65,72,0.34016787303533247],[123,65,73,0.3405181279952336],[123,65,74,0.3408752148837769],[123,65,75,0.3412403857227959],[123,65,76,0.34161483112584157],[123,65,77,0.341999676652743],[123,65,78,0.3423959791102956],[123,65,79,0.3428047227990869],[123,66,64,0.33528283259043634],[123,66,65,0.33566409269254094],[123,66,66,0.33604054219968305],[123,66,67,0.3364137861270826],[123,66,68,0.33678539545879116],[123,66,69,0.33715690395707987],[123,66,70,0.3375298049184043],[123,66,71,0.3379055478759304],[123,66,72,0.33828553524862814],[123,66,73,0.3386711189369186],[123,66,74,0.3390635968649073],[123,66,75,0.33946420946916256],[123,66,76,0.33987413613406536],[123,66,77,0.3402944915737268],[123,66,78,0.3407263221604655],[123,66,79,0.3411706021998561],[123,67,64,0.33296946176864084],[123,67,65,0.33338468801203325],[123,67,66,0.3337953086736659],[123,67,67,0.33420291490006926],[123,67,68,0.3346090639250846],[123,67,69,0.3350152759029419],[123,67,70,0.33542303068835544],[123,67,71,0.33583376456362085],[123,67,72,0.3362488669127198],[123,67,73,0.33666967684241755],[123,67,74,0.33709747975038995],[123,67,75,0.3375335038403308],[123,67,76,0.3379789165840761],[123,67,77,0.3384348211307321],[123,67,78,0.33890225266280555],[123,67,79,0.3393821746993454],[123,68,64,0.33050443775805494],[123,68,65,0.3309532031250528],[123,68,66,0.3313976083068852],[123,68,67,0.33183923021801687],[123,68,68,0.3322796119441961],[123,68,69,0.3327202595990118],[123,68,70,0.33316263912791744],[123,68,71,0.33360817305970136],[123,68,72,0.3340582372054148],[123,68,73,0.3345141573047362],[123,68,74,0.33497720561981614],[123,68,75,0.3354485974765469],[123,68,76,0.33592948775329656],[123,68,77,0.33642096731709503],[123,68,78,0.33692405940726866],[123,68,79,0.3374397159665332],[123,69,64,0.327888342788532],[123,69,65,0.32837020650783877],[123,69,66,0.3288479958378102],[123,69,67,0.3293232731018474],[123,69,68,0.3297975668439773],[123,69,69,0.3302723687086693],[123,69,70,0.3307491302685738],[123,69,71,0.3312292598001615],[123,69,72,0.3317141190072732],[123,69,73,0.3322050196925611],[123,69,74,0.3327032203768632],[123,69,75,0.3332099228664578],[123,69,76,0.3337262687682351],[123,69,77,0.33425333595277507],[123,69,78,0.33479213496532856],[123,69,79,0.33534360538470975],[123,70,64,0.32512186104781643],[123,70,65,0.3256363688915863],[123,70,66,0.32614712852967004],[123,70,67,0.32665568734002814],[123,70,68,0.3271635589358579],[123,70,69,0.3276722200684407],[123,70,70,0.32818310747837326],[123,70,71,0.32869761469516],[123,70,72,0.3292170887851763],[123,70,73,0.3297428270479823],[123,70,74,0.3302760736610344],[123,70,75,0.33081801627273283],[123,70,76,0.33136978254384936],[123,70,77,0.3319324366373214],[123,70,78,0.33250697565640935],[123,70,79,0.3330943260312267],[123,71,64,0.3222057783914937],[123,71,65,0.32275246298706706],[123,71,66,0.32329576590965015],[123,71,67,0.3238372192422456],[123,71,68,0.324378321282895],[123,71,69,0.3249205334703196],[123,71,70,0.32546527725841257],[123,71,71,0.3260139309395595],[123,71,72,0.3265678264167962],[123,71,73,0.32712824592478473],[123,71,74,0.32769641869965327],[123,71,75,0.3282735175976401],[123,71,76,0.32886065566258393],[123,71,77,0.32945888264224776],[123,71,78,0.3300691814534731],[123,71,79,0.330692464596174],[123,72,64,0.3191409819970994],[123,72,65,0.31971936315293203],[123,72,66,0.3202947694513134],[123,72,67,0.32086871733586464],[123,72,68,0.3214426894101864],[123,72,69,0.3220181313860466],[123,72,70,0.3225964489808927],[123,72,71,0.32317900476466555],[123,72,72,0.32376711495592514],[123,72,73,0.3243620461672652],[123,72,74,0.32496501210006856],[123,72,75,0.3255771701885364],[123,72,76,0.3261996181930395],[123,72,77,0.32683339074277507],[123,72,78,0.32747945582772775],[123,72,79,0.32813871123994437],[123,73,64,0.31592845996230146],[123,73,65,0.31653804500761323],[123,73,66,0.3171451022001618],[123,73,67,0.31775113200508864],[123,73,68,0.31835760095756477],[123,73,69,0.3189659386332689],[123,73,70,0.31957753456867094],[123,73,71,0.3201937351310965],[123,73,72,0.3208158403385818],[123,73,73,0.3214451006294974],[123,73,74,0.3220827135819928],[123,73,75,0.32272982058319344],[123,73,76,0.3233875034481989],[123,73,77,0.32405678098886725],[123,73,78,0.3247386055323822],[123,73,79,0.3254338593896132],[123,74,64,0.3125693008473054],[123,74,65,0.31320958498496976],[123,74,66,0.3138478283424849],[123,74,67,0.31448551507296724],[123,74,68,0.3151240952747162],[123,74,69,0.31576498198371894],[123,74,70,0.3164095481164466],[123,74,71,0.3170591233629173],[123,74,72,0.31771499103003453],[123,74,73,0.3183783848351787],[123,74,74,0.31905048565010774],[123,74,75,0.31973241819509246],[123,74,76,0.32042524768334],[123,74,77,0.32112997641568913],[123,74,78,0.32184754032557217],[123,74,79,0.32257880547425766],[123,75,64,0.3090646931614184],[123,75,65,0.3097351598336165],[123,75,66,0.3104041127174324],[123,75,67,0.31107301932618736],[123,75,68,0.31174331295866176],[123,75,69,0.3124163897133533],[123,75,70,0.3130936054535203],[123,75,71,0.313776272722981],[123,75,72,0.31446565761268075],[123,75,73,0.31516297657800285],[123,75,74,0.3158693932068801],[123,75,75,0.3165860149386318],[123,75,76,0.3173138897335803],[123,75,77,0.3180540026934302],[123,75,78,0.3188072726324064],[123,75,79,0.3195745485991627],[123,76,64,0.30541592479367463],[123,76,65,0.30611604605983933],[123,76,66,0.30681522027221575],[123,76,67,0.30751489798255494],[123,76,68,0.30821649533350803],[123,76,69,0.3089213910943588],[123,76,70,0.309630923648037],[123,76,71,0.31034638792938596],[123,76,72,0.3110690323146945],[123,76,73,0.3118000554624679],[123,76,74,0.3125406031054989],[123,76,75,0.31329176479415866],[123,76,76,0.31405457059096525],[123,76,77,0.31482998771641146],[123,76,78,0.3156189171460473],[123,76,79,0.31642219015883133],[123,77,64,0.30162438238769573],[123,77,65,0.3023536193142675],[123,77,66,0.3030825154606087],[123,77,67,0.30381250410133454],[123,77,68,0.30454498387263473],[123,77,69,0.30528131582919005],[123,77,70,0.30602282045287443],[123,77,71,0.3067707746132118],[123,77,72,0.30752640847960067],[123,77,73,0.3082909023852788],[123,77,74,0.30906538364309155],[123,77,75,0.30985092331298136],[123,77,76,0.31064853292125694],[123,77,77,0.3114591611316243],[123,77,78,0.31228369036797515],[123,77,79,0.31312293338894526],[123,78,64,0.2976915506607091],[123,78,65,0.2984493537222274],[123,78,66,0.2992074615846705],[123,78,67,0.2999672899363732],[123,78,68,0.3007302195632433],[123,78,69,0.3014975934265664],[123,78,70,0.3022707136931051],[123,78,71,0.30305083871745997],[123,78,72,0.30383917997670584],[123,78,73,0.30463689895727436],[123,78,74,0.30544510399415026],[123,78,75,0.30626484706229384],[123,78,76,0.3070971205203519],[123,78,77,0.3079428538066368],[123,78,78,0.3088029100873719],[123,78,79,0.3096780828572135],[123,79,64,0.2936190116666177],[123,79,65,0.29440482115767214],[123,79,66,0.29519162007958866],[123,79,67,0.2959808062319038],[123,79,68,0.29677374221316594],[123,79,69,0.2975717525193253],[123,79,70,0.298376120594931],[123,79,71,0.2991880858371019],[123,79,72,0.3000088405522864],[123,79,73,0.30083952686577975],[123,79,74,0.30168123358406884],[123,79,75,0.3025349930099144],[123,79,76,0.3034017777102347],[123,79,77,0.3042824972367707],[123,79,78,0.30517799479952845],[123,79,79,0.3060890438930121],[123,80,64,0.28940844400331495],[123,80,65,0.29022169046087976],[123,80,66,0.2910366497418305],[123,80,67,0.29185470146121684],[123,80,68,0.29267718970012047],[123,80,69,0.293505420124319],[123,80,70,0.2943406570562745],[123,80,71,0.29518412050041376],[123,80,72,0.2960369831217144],[123,80,73,0.2969003671775643],[123,80,74,0.2977753414029698],[123,80,75,0.29866291784901466],[123,80,76,0.29956404867464015],[123,80,77,0.30047962289172275],[123,80,78,0.3014104630634472],[123,80,79,0.3023573219559879],[123,81,64,0.2850616219641573],[123,81,65,0.28590172659983204],[123,81,66,0.28674430590051814],[123,81,67,0.2875907210081168],[123,81,68,0.2884422971633276],[123,81,69,0.2893003208442687],[123,81,70,0.29016603685894315],[123,81,71,0.2910406453915193],[123,81,72,0.29192529900243935],[123,81,73,0.2928210995823226],[123,81,74,0.2937290952597402],[123,81,75,0.29465027726276183],[123,81,76,0.2955855767343464],[123,81,77,0.296535861501552],[123,81,78,0.29750193279856274],[123,81,79,0.29848452194354713],[123,82,64,0.2805804146334782],[123,82,65,0.2814467897751588],[123,82,66,0.2823164395319112],[123,82,67,0.2831907062910464],[123,82,68,0.2840708961373768],[123,82,69,0.2849582760114664],[123,82,70,0.28585407082225556],[123,82,71,0.2867594605140256],[123,82,72,0.2876755770877175],[123,82,73,0.28860350157657194],[123,82,74,0.2895442609761687],[123,82,75,0.2904988251287629],[123,82,76,0.29146810356199165],[123,82,77,0.29245294228192775],[123,82,78,0.29345412052047604],[123,82,79,0.29447234743712725],[123,83,64,0.275966784926358],[123,83,65,0.2768588344688614],[123,83,66,0.2777549963172101],[123,83,67,0.27865659383009184],[123,83,68,0.2795649136285491],[123,83,69,0.2804812027735285],[123,83,70,0.28140666589833535],[123,83,71,0.28234246229595983],[123,83,72,0.2832897029612881],[123,83,73,0.28424944758816395],[123,83,74,0.28522270152138296],[123,83,75,0.28621041266351194],[123,83,76,0.287213468336611],[123,83,77,0.2882326920988327],[123,83,78,0.28926884051589463],[123,83,79,0.29032259988744125],[123,84,64,0.2712227885725508],[123,84,65,0.27213990843671737],[123,84,66,0.27306201564358207],[123,84,67,0.2739904142567702],[123,84,68,0.2749263711335033],[123,84,69,0.2758711131211101],[123,84,70,0.2768258242089781],[123,84,71,0.2777916426359113],[123,84,72,0.27876965795290776],[123,84,73,0.279760908041322],[123,84,74,0.28076637608649596],[123,84,75,0.2817869875067487],[123,84,76,0.28282360683780444],[123,84,77,0.2838770345726316],[123,84,78,0.2849480039566914],[123,84,79,0.28603717773860904],[123,85,64,0.2663505730444422],[123,85,65,0.26729215164423864],[123,85,66,0.2682396295482849],[123,85,67,0.2691942912664764],[123,85,68,0.27015738360019814],[123,85,69,0.2711301128574526],[123,85,70,0.27211364202396937],[123,85,71,0.2731090878902578],[123,85,72,0.27411751813461904],[123,85,73,0.27513994836208144],[123,85,74,0.2761773390993426],[123,85,75,0.2772305927456099],[123,85,76,0.27830055047941704],[123,85,77,0.27938798912139073],[123,85,78,0.28049361795296535],[123,85,79,0.28161807549105916],[123,86,64,0.26135237642927434],[123,86,65,0.26231779514642106],[123,86,66,0.26329006160612134],[123,86,67,0.2642704405138202],[123,86,68,0.2652601583312842],[123,86,69,0.266260400509997],[123,86,70,0.2672723086810807],[123,86,71,0.2682969778017019],[123,86,72,0.2693354532579797],[123,86,73,0.2703887279243573],[123,86,74,0.2714577391795275],[123,86,75,0.27254336587879346],[123,86,76,0.27364642528295086],[123,86,77,0.2747676699436619],[123,86,78,0.2759077845453194],[123,86,79,0.2770673827034152],[123,87,64,0.25623052624552667],[123,87,65,0.25721915991117333],[123,87,66,0.25821562576011614],[123,87,67,0.25922116845074616],[123,87,68,0.26023699382985693],[123,87,69,0.26126426618395504],[123,87,70,0.2623041054476395],[123,87,71,0.263357584369014],[123,87,72,0.26442572563214617],[123,87,73,0.2655094989365354],[123,87,74,0.2666098180336816],[123,87,75,0.26772753772063373],[123,87,76,0.26886345079060625],[123,87,77,0.27001828494063307],[123,87,78,0.27119269963625653],[123,87,79,0.27238728293326775],[123,88,64,0.25098743820331854],[123,88,65,0.25199865558629164],[123,88,66,0.25301872509528117],[123,88,67,0.2540488711073018],[123,88,68,0.25509027858743777],[123,88,69,0.2561440903577058],[123,88,70,0.2572114043235385],[123,88,71,0.25829327065784785],[123,88,72,0.2593906889426852],[123,88,73,0.2605046052684582],[123,88,74,0.26163590929079916],[123,88,75,0.2627854312449605],[123,88,76,0.2639539389178277],[123,88,77,0.2651421345775188],[123,88,78,0.2663506518605678],[123,88,79,0.2675800526167087],[123,89,64,0.24562561490910373],[123,89,65,0.24665877921024837],[123,89,66,0.24770185055573563],[123,89,67,0.24875603281532283],[123,89,68,0.24982248981444793],[123,89,69,0.25090234262028144],[123,89,70,0.25199666678594995],[123,89,71,0.25310648955289294],[123,89,72,0.2542327870113674],[123,89,73,0.2553764812190611],[123,89,74,0.2565384372779098],[123,89,75,0.25771946036899396],[123,89,76,0.258920292745603],[123,89,77,0.26014161068444014],[123,89,78,0.26138402139496236],[123,89,79,0.26264805988687223],[123,90,64,0.24014764451442858],[123,90,65,0.24120211386657006],[123,90,66,0.24226757960495834],[123,90,67,0.2433452248748082],[123,90,68,0.2444361921129543],[123,90,69,0.24554158035072118],[123,90,70,0.24666244247552163],[123,90,71,0.24779978245114165],[123,90,72,0.24895455249672924],[123,90,73,0.2501276502244446],[123,90,74,0.2513199157358726],[123,90,75,0.2525321286770647],[123,90,76,0.2537650052523079],[123,90,77,0.25501919519658534],[123,90,78,0.25629527870672875],[123,90,79,0.25759376333127765],[123,91,64,0.23455619930893343],[123,91,65,0.23563132728198052],[123,91,66,0.23671857482934616],[123,91,67,0.23781910416316362],[123,91,68,0.23893403609185912],[123,91,69,0.24006444733946666],[123,91,70,0.2412113678242297],[123,91,71,0.2423757778964456],[123,91,72,0.2435586055355723],[123,91,73,0.2447607235065526],[123,91,74,0.24598294647545882],[123,91,75,0.2472260280843247],[123,91,76,0.2484906579852596],[123,91,77,0.2497774588338143],[123,91,78,0.251086983241594],[123,91,79,0.25241971068813635],[123,92,64,0.22885403425734793],[123,92,65,0.2299491703680622],[123,92,66,0.2310575824848343],[123,92,67,0.23218041168706663],[123,92,68,0.2333187569242921],[123,92,69,0.2344736723515561],[123,92,70,0.23564616462464522],[123,92,71,0.23683719015511884],[123,92,72,0.23804765232516223],[123,92,73,0.23927839866221645],[123,92,74,0.2405302179734899],[123,92,75,0.241803837440215],[123,92,76,0.2430999196717477],[123,92,77,0.24441905971947814],[123,92,78,0.24576178205054822],[123,92,79,0.2471285374813938],[123,93,64,0.2230439854807759],[123,93,65,0.22415847570673086],[123,93,66,0.2252874309868702],[123,93,67,0.22643197107724541],[123,93,68,0.22759317284749395],[123,93,69,0.22877206763190638],[123,93,70,0.22996963854090308],[123,93,71,0.23118681773287542],[123,93,72,0.23242448364640994],[123,93,73,0.2336834581928512],[123,93,74,0.23496450390930884],[123,93,75,0.23626832107197038],[123,93,76,0.2375955447698197],[123,93,77,0.23894674193872734],[123,93,78,0.2403224083559105],[123,93,79,0.2417229655947794],[123,94,64,0.21712896868213583],[123,94,65,0.21826215597938856],[123,94,66,0.21941102934360826],[123,94,67,0.22057668702603875],[123,94,68,0.2217601836050591],[123,94,69,0.2229625273525513],[123,94,70,0.22418467756124172],[123,94,71,0.2254275418329703],[123,94,72,0.2266919733279078],[123,94,73,0.22797876797467265],[123,94,74,0.22928866164145922],[123,94,75,0.23062232726803267],[123,94,76,0.23198037195869453],[123,94,77,0.23336333403618365],[123,94,78,0.23477168005651028],[123,94,79,0.23620580178474054],[123,95,64,0.2111119775156019],[123,95,65,0.21226320233960172],[123,95,66,0.21343136553217257],[123,95,67,0.21461754366758506],[123,95,68,0.2158227688313874],[123,95,69,0.21704802600168566],[123,95,70,0.21829425039196343],[123,95,71,0.21956232475539483],[123,95,72,0.2208530766506705],[123,95,73,0.2221672756692888],[123,95,74,0.22350563062442413],[123,95,75,0.22486878670122695],[123,95,76,0.22625732256865938],[123,95,77,0.22767174745283264],[123,95,78,0.22911249817184176],[123,95,79,0.23057993613211764],[123,96,64,0.2049960819003423],[123,96,65,0.20616468272959965],[123,96,66,0.2073515048182808],[123,96,67,0.2085576029009319],[123,96,68,0.20978398637863382],[123,96,69,0.21103161671480392],[123,96,70,0.21230140479310478],[123,96,71,0.21359420823741276],[123,96,72,0.2149108286938669],[123,96,73,0.21625200907494857],[123,96,74,0.21761843076570714],[123,96,75,0.2190107107919818],[123,96,76,0.22042939895072816],[123,96,77,0.22187497490241143],[123,96,78,0.2233478452254653],[123,96,79,0.22484834043283392],[123,97,64,0.19878442627841375],[123,97,65,0.1999697401404525],[123,97,66,0.20117458801909],[123,97,67,0.20240000265592828],[123,97,68,0.20364697058601955],[123,97,69,0.20491642954779654],[123,97,70,0.2062092658556779],[123,97,71,0.20752631173530162],[123,97,72,0.20886834262140697],[123,97,73,0.21023607441831443],[123,97,74,0.21163016072312119],[123,97,75,0.21305119001145995],[123,97,76,0.21449968278592962],[123,97,77,0.21597608868716323],[123,97,78,0.21748078356752665],[123,97,79,0.21901406652747102],[123,98,64,0.19248022781664836],[123,98,65,0.1936815908157658],[123,98,66,0.19490382970910136],[123,98,67,0.19614795510173627],[123,98,68,0.19741493049134196],[123,98,69,0.198705669691843],[123,98,70,0.20002103422032486],[123,98,71,0.20136183064713897],[123,98,72,0.20272880790922465],[123,98,73,0.2041226545865985],[123,98,74,0.20554399614212893],[123,98,75,0.20699339212444207],[123,98,76,0.20847133333406925],[123,98,77,0.2099782389528007],[123,98,78,0.21151445363623922],[123,98,79,0.2130802445695763],[123,99,64,0.18608677455284567],[123,99,65,0.1873035223992034],[123,99,66,0.1885425163694346],[123,99,67,0.18980474479827253],[123,99,68,0.191091147984992],[123,99,69,0.19240261563040795],[123,99,70,0.193739984237689],[123,99,71,0.19510403447693825],[123,99,72,0.19649548851356047],[123,99,73,0.19791500730036632],[123,99,74,0.1993631878335328],[123,99,75,0.20084056037226344],[123,99,76,0.20234758562226113],[123,99,77,0.20388465188297566],[123,99,78,0.20545207215862255],[123,99,79,0.20705008123299312],[123,100,64,0.17960742348612052],[123,100,65,0.18083889202568942],[123,100,66,0.18209400448032403],[123,100,67,0.1833737267904315],[123,100,68,0.18467897590633203],[123,100,69,0.18601061723819473],[123,100,70,0.18736946207035826],[123,100,71,0.18875626493998943],[123,100,72,0.19017172098009855],[123,100,73,0.19161646322686243],[123,100,74,0.19309105989137387],[123,100,75,0.1945960115956611],[123,100,76,0.1961317485730904],[123,100,77,0.1976986278331137],[123,100,78,0.19929693029035833],[123,100,79,0.2009268578580778],[123,101,64,0.17304559861123614],[123,101,65,0.1742911243561201],[123,101,66,0.17556171855666608],[123,101,67,0.17685832464492063],[123,101,68,0.17818183608226512],[123,101,69,0.17953309382188803],[123,101,70,0.18091288373621311],[123,101,71,0.18232193400923657],[123,101,72,0.1837609124937924],[123,101,73,0.1852304240336935],[123,101,74,0.1867310077508732],[123,101,75,0.1882631342973657],[123,101,76,0.18982720307223994],[123,101,77,0.19142353940345064],[123,101,78,0.1930523916946011],[123,101,79,0.19471392853663844],[123,102,64,0.16640478889724974],[123,102,65,0.16766370955591048],[123,102,66,0.1689491491269438],[123,102,67,0.17026202843003374],[123,102,68,0.1716032173083203],[123,102,69,0.17297353210300748],[123,102,70,0.17437373309349918],[123,102,71,0.17580452190301382],[123,102,72,0.17726653886969757],[123,102,73,0.17876036038318527],[123,102,74,0.18028649618673215],[123,102,75,0.1818453866447547],[123,102,76,0.1834373999758967],[123,102,77,0.18506282945158276],[123,102,78,0.18672189056005367],[123,102,79,0.18841471813590716],[123,103,64,0.15968854621031348],[123,103,65,0.16096020121722043],[123,103,66,0.16225985065537313],[123,103,67,0.16358839263820452],[123,103,68,0.16494667327209545],[123,103,69,0.16633548414271737],[123,103,70,0.16775555976747203],[123,103,71,0.16920757501398387],[123,103,72,0.1706921424846588],[123,103,73,0.1722098098672621],[123,103,74,0.17376105725163937],[123,103,75,0.17534629441241462],[123,103,76,0.17696585805778664],[123,103,77,0.17862000904438147],[123,103,78,0.18030892955815941],[123,103,79,0.18203272026139622],[123,104,64,0.15290048318045457],[123,104,65,0.1541842142246843],[123,104,66,0.15549743940709343],[123,104,67,0.15684103405116673],[123,104,68,0.15821582041888904],[123,104,69,0.15962256520842055],[123,104,70,0.16106197701843983],[123,104,71,0.1625347037791096],[123,104,72,0.16404133014967937],[123,104,73,0.16558237488267719],[123,104,74,0.16715828815481543],[123,104,75,0.1687694488644434],[123,104,76,0.17041616189566838],[123,104,77,0.17209865534910412],[123,104,78,0.17381707773924243],[123,104,79,0.17557149515847142],[123,105,64,0.1460442710126742],[123,105,65,0.14733942256498173],[123,105,66,0.14866559125674295],[123,105,67,0.15002362954805815],[123,105,68,0.15141433575984975],[123,105,69,0.15283845158246828],[123,105,70,0.15429665955153682],[123,105,71,0.1557895804909873],[123,105,72,0.1573177709233035],[123,105,73,0.15888172044692273],[123,105,74,0.16048184908092167],[123,105,75,0.16211850457681853],[123,105,76,0.16379195969761312],[123,105,77,0.165502409464024],[123,105,78,0.1672499683679195],[123,105,79,0.16903466755296398],[123,106,64,0.1391236372422009],[123,106,65,0.14042955708008653],[123,106,66,0.14176803944025296],[123,106,67,0.14313991385630448],[123,106,68,0.14454595462248748],[123,106,69,0.1459868783128268],[123,106,70,0.14746334126806881],[123,106,71,0.1489759370503851],[123,106,72,0.15052519386585328],[123,106,73,0.15211157195466263],[123,106,74,0.15373546094917623],[123,106,75,0.15539717719967516],[123,106,76,0.157096961067911],[123,106,77,0.15883497418842507],[123,106,78,0.1606112966976282],[123,106,79,0.16242592443066645],[123,107,64,0.13214236343371855],[123,107,65,0.1334584031640148],[123,107,66,0.134808572249684],[123,107,67,0.136193677245105],[123,107,68,0.1376144683433645],[123,107,69,0.139071636905522],[123,107,70,0.14056581295825082],[123,107,71,0.14209756265980666],[123,107,72,0.1436673857343415],[123,107,73,0.14527571287451024],[123,107,74,0.1469229031125011],[123,107,75,0.1486092411593174],[123,107,76,0.1503349347124336],[123,107,77,0.1521001117317866],[123,107,78,0.1539048176840967],[123,107,79,0.15574901275554037],[123,108,64,0.12510428282491753],[123,108,65,0.12642979840341945],[123,108,66,0.1277910306714497],[123,108,67,0.12918876316186662],[123,108,68,0.13062372190331234],[123,108,69,0.13209657295920557],[123,108,70,0.13360791993568205],[123,108,71,0.13515830145842372],[123,108,72,0.13674818861840454],[123,108,73,0.13837798238649163],[123,108,74,0.14004801099704017],[123,108,75,0.14175852730030314],[123,108,76,0.14350970608378483],[123,108,77,0.14530164136249363],[123,108,78,0.1471343436380927],[123,108,79,0.1490077371269684],[123,109,64,0.11801327791420213],[123,109,65,0.11934763016186256],[123,109,66,0.12071930596776115],[123,109,67,0.12212906581141891],[123,109,68,0.12357761150500862],[123,109,69,0.1250655837416788],[123,109,70,0.12659355961339136],[123,109,71,0.12816205009821302],[123,109,72,0.12977149751708827],[123,109,73,0.13142227296003228],[123,109,74,0.13311467368188395],[123,109,75,0.13484892046743718],[123,109,76,0.1366251549660824],[123,109,77,0.13844343699591166],[123,109,78,0.1403037418172864],[123,109,79,0.14220595737588987],[123,110,64,0.11087327799236435],[123,110,65,0.11221583310758187],[123,110,66,0.11359733720110704],[123,110,67,0.11501852767782456],[123,110,68,0.11648008209272931],[123,110,69,0.1179826157081873],[123,110,70,0.11952667902127062],[123,110,71,0.12111275526111276],[123,110,72,0.1227412578563053],[123,110,73,0.12441252787228119],[123,110,74,0.12612683141881953],[123,110,75,0.12788435702749246],[123,110,76,0.1296852129991854],[123,110,77,0.13152942472164492],[123,110,78,0.1334169319570518],[123,110,79,0.1353475860996426],[123,111,64,0.10368825661859016],[123,111,65,0.1050383866851089],[123,111,66,0.1064291087021278],[123,111,67,0.10786113698914412],[123,111,68,0.10933512481463237],[123,111,69,0.11085166196184487],[123,111,70,0.11241127226525094],[123,111,71,0.11401441111755434],[123,111,72,0.11566146294731755],[123,111,73,0.11735273866712881],[123,111,74,0.11908847309245785],[123,111,75,0.1208688223310102],[123,111,76,0.1226938611427199],[123,111,77,0.12456358027032788],[123,111,78,0.12647788374055063],[123,111,79,0.12843658613585507],[123,112,64,0.09646222904061685],[123,112,65,0.09781931253056403],[123,112,66,0.09921864748070769],[123,112,67,0.10066092512498098],[123,112,68,0.10214677442739972],[123,112,69,0.10367675965601247],[123,112,70,0.10525137792804728],[123,112,71,0.10687105672619729],[123,112,72,0.10853615138607076],[123,112,73,0.11024694255474476],[123,112,74,0.11200363362056581],[123,112,75,0.11380634811400825],[123,112,76,0.11565512707973108],[123,112,77,0.1175499264197784],[123,112,78,0.119490614207931],[123,112,79,0.12147696797522128],[123,113,64,0.08919924955885739],[123,113,65,0.0905626718304427],[123,113,66,0.09197002058010112],[123,113,67,0.09342196396661756],[123,113,68,0.09491910664305114],[123,113,69,0.09646198733844485],[123,113,70,0.0980510764112889],[123,113,71,0.09968677337467907],[123,113,72,0.10136940439319747],[123,113,73,0.1030992197514517],[123,113,74,0.10487639129442072],[123,113,75,0.10670100983941283],[123,113,76,0.10857308255977988],[123,113,77,0.11049253034033185],[123,113,78,0.11245918510445951],[123,113,79,0.11447278711297787],[123,114,64,0.08190340883487818],[123,114,65,0.08327256262427662],[123,114,66,0.08468733237447601],[123,114,67,0.08614836319013214],[123,114,68,0.08765623541831535],[123,114,69,0.08921146223759213],[123,114,70,0.09081448721941598],[123,114,71,0.09246568186176712],[123,114,72,0.09416534309506885],[123,114,73,0.0959136907603162],[123,114,74,0.09771086505956639],[123,114,75,0.09955692397859489],[123,114,76,0.10145184068186125],[123,114,77,0.10339550087973198],[123,114,78,0.10538770016796217],[123,114,79,0.107428141339456],[123,115,64,0.07457883114390573],[123,115,65,0.075953117050849],[123,115,66,0.0773747218095514],[123,115,67,0.07884426750216822],[123,115,68,0.0803623101862333],[123,115,69,0.0819293374907295],[123,115,70,0.08354576618502152],[123,115,71,0.08521193972058633],[123,115,72,0.08692812574557524],[123,115,73,0.08869451359213609],[123,115,74,0.09051121173665078],[123,115,75,0.09237824523268978],[123,115,76,0.09429555311682664],[123,115,77,0.09626298578726161],[123,115,78,0.09828030235525581],[123,115,79,0.10034716796939436],[123,116,64,0.0672296715716077],[123,116,65,0.06860849853820727],[123,116,66,0.07003635958657684],[123,116,67,0.07151385381860631],[123,116,68,0.07304151303024209],[123,116,69,0.0746197993141654],[123,116,70,0.0762491026358848],[123,116,71,0.07792973838317246],[123,116,72,0.07966194488888106],[123,116,73,0.08144588092706906],[123,116,74,0.08328162318258991],[123,116,75,0.0851691636939465],[123,116,76,0.0871084072695531],[123,116,77,0.08909916887735686],[123,116,78,0.0911411710078151],[123,116,79,0.09323404101025345],[123,117,64,0.05986011315481449],[123,117,65,0.06124289893713969],[123,117,66,0.06267644528931621],[123,117,67,0.06416132838580191],[123,117,68,0.06569805580040344],[123,117,69,0.06728706411518948],[123,117,70,0.06892871650336113],[123,117,71,0.07062330028601294],[123,117,72,0.07237102446281857],[123,117,73,0.07417201721656991],[123,117,74,0.07602632339172632],[123,117,75,0.07793390194677208],[123,117,76,0.07989462338052916],[123,117,77,0.08190826713237198],[123,117,78,0.08397451895634522],[123,117,79,0.08609296826920532],[123,118,64,0.05247436396658178],[123,118,65,0.0538605355985165],[123,118,66,0.05529920445443892],[123,118,67,0.05679092384478884],[123,118,68,0.058336177172177206],[123,118,69,0.059935375546163516],[123,118,70,0.06158885537252756],[123,118,71,0.06329687591697758],[123,118,72,0.06505961684332134],[123,118,73,0.06687717572603386],[123,118,74,0.06874956553737749],[123,118,75,0.07067671210887028],[123,118,76,0.07265845156725165],[123,118,77,0.07469452774489288],[123,118,78,0.07678458956465034],[123,118,79,0.07892818839918608],[123,119,64,0.04507665414540002],[123,119,65,0.04646564839430256],[123,119,66,0.047908885585123906],[123,119,67,0.049406896238257114],[123,119,68,0.0509601396475467],[123,119,69,0.05256900150055993],[123,119,70,0.05423379147389218],[123,119,71,0.05595474080344437],[123,119,72,0.05773199982970262],[123,119,73,0.059565635517952964],[123,119,74,0.06145562895358436],[123,119,75,0.06340187281228005],[123,119,76,0.0654041688052433],[123,119,77,0.06746222509940464],[123,119,78,0.06957565371261232],[123,119,79,0.07174396788382609],[123,120,64,0.037671232868369486],[123,120,65,0.03906249668205747],[123,120,66,0.040509757107693],[123,120,67,0.0420135219601212],[123,120,68,0.043574226498312996],[123,120,69,0.04519223105076792],[123,120,70,0.0468678186164847],[123,120,71,0.048601192441439955],[123,120,72,0.05039247357060084],[123,120,73,0.0522416983754071],[123,120,74,0.05414881605687788],[123,120,75,0.056113686124137474],[123,120,76,0.05813607584851155],[123,120,77,0.06021565769313875],[123,120,78,0.062352006718099096],[123,120,79,0.0645445979610797],[123,121,64,0.030262365268711344],[123,121,65,0.031655356213296904],[123,121,66,0.03310610427164806],[123,121,67,0.03461509464805085],[123,121,68,0.036182738651931834],[123,121,69,0.03780937132803569],[123,121,70,0.03949524906269958],[123,121,71,0.041240547166165376],[123,121,72,0.04304535743095739],[123,121,73,0.044909685666256915],[123,121,74,0.04683344920843335],[123,121,75,0.04881647440752451],[123,121,76,0.050858494089814466],[123,121,77,0.05295914499646126],[123,121,78,0.05511796519816581],[123,121,79,0.05733439148591368],[123,122,64,0.02285432929743103],[123,122,65,0.02424851598552802],[123,122,66,0.02570222599292432],[123,122,67,0.027215922018779037],[123,122,68,0.028789991519704905],[123,122,69,0.030424744344367094],[123,122,70,0.03212041034470564],[123,122,71,0.03387713696372019],[123,122,72,0.035694986799845896],[123,122,73,0.0375739351478529],[123,122,74,0.039513867516426604],[123,122,75,0.04151457712222384],[123,122,76,0.043575762360551495],[123,122,77,0.0456970242526209],[123,122,78,0.047877863869368875],[123,122,79,0.05011767973187842],[123,123,64,0.015451412528942055],[123,123,65,0.01684627503777092],[123,123,66,0.018302431640171146],[123,123,67,0.019820322645998145],[123,123,68,0.021400311767137914],[123,123,69,0.02304268375617996],[123,123,70,0.024747642022235228],[123,123,71,0.026515306223838797],[123,123,72,0.02834570983896323],[123,123,73,0.030238797712077492],[123,123,74,0.03219442357840718],[123,123,75,0.03421234756519309],[123,123,76,0.03629223367009149],[123,123,77,0.03843364721667297],[123,123,78,0.04063605228700762],[123,123,79,0.04289880913137234],[123,124,64,0.008057908911028366],[123,124,65,0.00945293918994139],[123,124,66,0.01091103776443575],[123,124,67,0.012432622681218919],[123,124,68,0.014018034026841208],[123,124,69,0.015667531570103255],[123,124,70,0.017381292382124713],[123,124,71,0.019159408434011982],[123,124,72,0.021001884172155427],[123,124,73,0.02290863407108723],[123,124,74,0.024879480164057943],[123,124,75,0.026914149551126476],[123,124,76,0.029012271884909624],[123,124,77,0.031173376833944832],[123,124,78,0.033396891523658656],[123,124,79,0.035682137954970106],[123,125,64,6.781154589604599E-4],[123,125,65,0.0020728177259091707],[123,125,66,0.00353236477206631],[123,125,67,0.005057152517408681],[123,125,68,0.006647497553786685],[123,125,69,0.00830363479072993],[123,125,70,0.010025715079425734],[123,125,71,0.011813802814809815],[123,125,72,0.013667873515795681],[123,125,73,0.0155878113835769],[123,125,74,0.017573406838160777],[123,125,75,0.019624354032925728],[123,125,76,0.021740248347349667],[123,125,77,0.023920583857864663],[123,125,78,0.02616475078682623],[123,125,79,0.028472032929631852],[123,126,64,-0.006683671106431643],[123,126,65,-0.005289779979959608],[123,126,66,-0.0038292664593613246],[123,126,67,-0.0023017566047848215],[123,126,68,-7.069571772698735E-4],[123,126,69,9.553420101277021E-4],[123,126,70,0.002685265719890917],[123,126,71,0.004482850896213919],[123,126,72,0.00634804424982216],[123,126,73,0.008280699821369586],[123,126,74,0.010280576523574503],[123,126,75,0.012347335661885062],[123,126,76,0.014480538433823464],[123,126,77,0.01667964340696082],[123,126,78,0.018944003975515433],[123,126,79,0.021272865795605278],[123,127,64,-0.014023157776342776],[123,127,65,-0.01263054789239726],[123,127,66,-0.011169538021710612],[123,127,67,-0.00963977604784505],[123,127,68,-0.008040991931823616],[123,127,69,-0.006373000060505896],[123,127,70,-0.00463570161578486],[123,127,71,-0.002829086964664329],[123,127,72,-9.532380701874343E-4],[123,127,73,9.916690767127756E-4],[123,127,74,0.003005362004602885],[123,127,75,0.005087469287969215],[123,127,76,0.007237518052817804],[123,127,77,0.009454931461407079],[123,127,78,0.011739026176103229],[123,127,79,0.01408900980239236],[123,128,64,-0.021336058727429608],[123,128,65,-0.01994518680115631],[123,128,66,-0.018484138473735978],[123,128,67,-0.016952583285421374],[123,128,68,-0.015350274233300598],[123,128,69,-0.013677050117240741],[123,128,70,-0.011932837906156846],[123,128,71,-0.010117655124665004],[123,128,72,-0.008231612260091725],[123,128,73,-0.0062749151899093025],[123,128,74,-0.004247867629435409],[123,128,75,-0.002150873600005654],[123,128,76,1.5560082527898977E-5],[123,128,77,0.002250821298927508],[123,128,78,0.004554190097319277],[123,128,79,0.006924836143594515],[123,129,64,-0.02861809885128075],[123,129,65,-0.027229407863441746],[123,129,66,-0.02576876639550474],[123,129,67,-0.024235865467773565],[123,129,68,-0.02263048093856812],[123,129,69,-0.020952475848042718],[123,129,70,-0.019201802781842026],[123,129,71,-0.017378506254648207],[123,129,72,-0.015482725113597384],[123,129,73,-0.013514694961630824],[123,129,74,-0.011474750600618422],[123,129,75,-0.009363328494468748],[123,129,76,-0.007180969252071456],[123,129,77,-0.0049283201301231205],[123,129,78,-0.0026061375558424915],[123,129,79,-2.1528966954365014E-4],[123,130,64,-0.03586501733955472],[123,130,65,-0.034478936202487764],[123,130,66,-0.033019133999419026],[123,130,67,-0.03148532304425711],[123,130,68,-0.02987730187090787],[123,130,69,-0.028194957575269686],[123,130,70,-0.026438268176581903],[123,130,71,-0.024607304998180646],[123,130,72,-0.022702235067639243],[123,130,73,-0.020723323536358973],[123,130,74,-0.018670936118448833],[123,130,75,-0.01654554154910659],[123,130,76,-0.014347714062348804],[123,130,77,-0.012078135888139108],[123,130,78,-0.009737599768922411],[123,130,79,-0.007327011495533053],[123,131,64,-0.04307257132496378],[123,131,65,-0.04168951456245551],[123,131,66,-0.04023097079801907],[123,131,67,-0.038696673443028184],[123,131,68,-0.03708644351062973],[123,131,69,-0.035400191956210136],[123,131,70,-0.033637922036735324],[123,131,71,-0.03179973168902073],[123,131,72,-0.029885815926907644],[123,131,73,-0.027896469257410295],[123,131,74,-0.025832088115676388],[123,131,75,-0.023693173318967253],[123,131,76,-0.02148033253951187],[123,131,77,-0.019194282796279105],[123,131,78,-0.016835852965678244],[123,131,79,-0.014405986311154861],[123,132,64,-0.05023653957829388],[123,132,65,-0.0488569070198448],[123,132,66,-0.04740002732875759],[123,132,67,-0.045865654808160294],[123,132,68,-0.0442536327435189],[123,132,69,-0.04256389574185926],[123,132,70,-0.04079647208939108],[123,132,71,-0.038951486127589474],[123,132,72,-0.03702916064771222],[123,132,73,-0.0350298193038141],[123,132,74,-0.0329538890441029],[123,132,75,-0.030801902560843697],[123,132,76,-0.028574500758664856],[123,132,77,-0.026272435241308845],[123,132,78,-0.023896570816840934],[123,132,79,-0.02144788802128028],[123,133,64,-0.057352726261090003],[123,133,65,-0.055976902751047275],[123,133,66,-0.05452207893537209],[123,133,67,-0.05298802979379835],[123,133,68,-0.05137462066674214],[123,133,69,-0.049681809593557724],[123,133,70,-0.047909649668730125],[123,133,71,-0.04605829141605933],[123,133,72,-0.04412798518081351],[123,133,73,-0.04211908353991489],[123,133,74,-0.04003204373000202],[123,133,75,-0.0378674300935713],[123,133,76,-0.03562591654305958],[123,133,77,-0.033308289042900174],[123,133,78,-0.030915448109576915],[123,133,79,-0.02844841132962883],[123,134,64,-0.06441696473419112],[123,134,65,-0.06304531985622452],[123,134,66,-0.061592929606043456],[123,134,67,-0.06005958941553846],[123,134,68,-0.058445186452400155],[123,134,69,-0.05674970195767892],[123,134,70,-0.05497321360082241],[123,134,71,-0.05311589785224402],[123,134,72,-0.05117803237340368],[123,134,73,-0.049159998424459284],[123,134,74,-0.04706228328933648],[123,134,75,-0.04488548271841952],[123,134,76,-0.04263030338872187],[123,134,77,-0.04029756538157214],[123,134,78,-0.03788820467783949],[123,134,79,-0.03540327567064827],[123,135,64,-0.07142512142229818],[123,135,65,-0.0700580092396973],[123,135,66,-0.06860841586852073],[123,135,67,-0.06707615695921376],[123,135,68,-0.06546114126890867],[123,135,69,-0.06376337299854884],[123,135,70,-0.061982954147038694],[123,135,71,-0.060120086882472834],[123,135,72,-0.05817507593042326],[123,135,73,-0.05614833097934668],[123,135,74,-0.05404036910295651],[123,135,75,-0.051851817199762285],[123,135,76,-0.049583414449637986],[123,135,77,-0.04723601478745365],[123,135,78,-0.0448105893937899],[123,135,79,-0.0423082292026945],[123,136,64,-0.07837309973420603],[123,136,65,-0.0770108585464746],[123,136,66,-0.07556441074184417],[123,136,67,-0.07403359194671832],[123,136,68,-0.07241833225983851],[123,136,69,-0.07071865858922799],[123,136,70,-0.06893469700571309],[123,136,71,-0.06706667511307973],[123,136,72,-0.06511492443484079],[123,136,73,-0.06307988281767973],[123,136,74,-0.06096209685140941],[123,136,75,-0.058762224305657806],[123,136,76,-0.05648103658313208],[123,136,77,-0.054119421189502526],[123,136,78,-0.051678384219923656],[123,136,79,-0.04915905286215039],[123,137,64,-0.08525684403889267],[123,137,65,-0.08389979615511511],[123,137,66,-0.0824568277448613],[123,137,67,-0.08092779415906293],[123,137,68,-0.07931264658040837],[123,137,69,-0.07761143436034901],[123,137,70,-0.075824307372244],[123,137,71,-0.07395151838070169],[123,137,72,-0.0719934254270933],[123,137,73,-0.06995049423130306],[123,137,74,-0.06782330060955633],[123,137,75,-0.06561253290853397],[123,137,76,-0.06331899445562705],[123,137,77,-0.060943606025374075],[123,137,78,-0.05848740832209276],[123,137,79,-0.05595156447867233],[123,138,64,-0.0920723436976304],[123,138,65,-0.09072079522708942],[123,138,66,-0.08928162496169745],[123,138,67,-0.08775470771682636],[123,138,68,-0.08614001549179573],[123,138,69,-0.08443761980717657],[123,138,70,-0.0826476940578037],[123,138,71,-0.08077051588155093],[123,138,72,-0.07880646954384718],[123,138,73,-0.0767560483379991],[123,138,74,-0.07461985700115681],[123,138,75,-0.07239861414613713],[123,138,76,-0.07009315470895416],[123,138,77,-0.06770443241209922],[123,138,78,-0.06523352224358692],[123,138,79,-0.06268162295172686],[123,139,64,-0.09881563715175079],[123,139,65,-0.09746987781227001],[123,139,66,-0.09603480916381624],[123,139,67,-0.09451032521763547],[123,139,68,-0.0928964185128962],[123,139,69,-0.09119318245451813],[123,139,70,-0.08940081366628405],[123,139,71,-0.08751961435929057],[123,139,72,-0.085549994715716],[123,139,73,-0.0834924752879691],[123,139,74,-0.08134768941305659],[123,139,75,-0.07911638564238477],[123,139,76,-0.07679943018684277],[123,139,77,-0.07439780937721052],[123,139,78,-0.07191263213991006],[123,139,79,-0.06934513248805563],[123,140,64,-0.10548281606637866],[123,140,65,-0.10414311901086903],[123,140,66,-0.1027124399889826],[123,140,67,-0.10119069193098718],[123,140,68,-0.09957788762984854],[123,140,69,-0.09787414207980394],[123,140,70,-0.09607967482979585],[123,140,71,-0.09419481235183336],[123,140,72,-0.09221999042424789],[123,140,73,-0.09015575652991836],[123,140,74,-0.08800277226929287],[123,140,75,-0.0857618157884309],[123,140,76,-0.08343378422190739],[123,140,77,-0.08101969615062732],[123,140,78,-0.07852069407456364],[123,140,79,-0.07593804690037864],[123,141,64,-0.11207002952989842],[123,141,65,-0.11073665119158238],[123,141,66,-0.1093106341768929],[123,141,67,-0.10779191005017719],[123,141,68,-0.10618051156308617],[123,141,69,-0.10447657499409624],[123,141,70,-0.10268034250248426],[123,141,71,-0.10079216449682049],[123,141,72,-0.09881250201794523],[123,141,73,-0.09674192913650526],[123,141,74,-0.09458113536487889],[123,141,75,-0.09233092808370913],[123,141,76,-0.08999223498289188],[123,141,77,-0.08756610651706354],[123,141,78,-0.08505371837560172],[123,141,79,-0.08245637396710126],[123,142,64,-0.11857348830946213],[123,142,65,-0.11724666826625474],[123,142,66,-0.11582556986178083],[123,142,67,-0.11431014300164644],[123,142,68,-0.11270044009222757],[123,142,69,-0.1109966183813419],[123,142,70,-0.10919894231297145],[123,142,71,-0.10730778589609902],[123,142,72,-0.10532363508762943],[123,142,73,-0.10324709018946698],[123,142,74,-0.10107886825957846],[123,142,75,-0.09881980553726466],[123,142,76,-0.09647085988248327],[123,142,77,-0.094033113229269],[123,142,78,-0.09150777405326616],[123,142,79,-0.08889617985333331],[123,143,64,-0.12498946916217335],[123,143,65,-0.12366943002069408],[123,143,66,-0.12225349092163473],[123,143,67,-0.12074161981137432],[123,143,68,-0.11913388843843586],[123,143,69,-0.11743047469549728],[123,143,70,-0.11563166497505639],[123,143,71,-0.11373785653882029],[123,143,72,-0.11174955990078073],[123,143,73,-0.10966740122405261],[123,143,74,-0.10749212473130576],[123,143,75,-0.10522459512900806],[123,143,76,-0.10286580004532764],[123,143,77,-0.10041685248173726],[123,143,78,-0.0978789932783376],[123,143,79,-0.09525359359285646],[123,144,64,-0.13131431920212766],[123,144,65,-0.13000126650182042],[123,144,66,-0.12859071138420375],[123,144,67,-0.12708263952850496],[123,144,68,-0.12547714170443314],[123,144,69,-0.12377441611570827],[123,144,70,-0.12197477075685759],[123,144,71,-0.12007862578335105],[123,144,72,-0.1180865158950356],[123,144,73,-0.11599909273294706],[123,144,74,-0.11381712728932758],[123,144,75,-0.11154151233106913],[123,144,76,-0.10917326483642886],[123,144,77,-0.1067135284450611],[123,144,78,-0.10416357592138081],[123,144,79,-0.10152481163121752],[123,145,64,-0.13754446032346201],[123,145,65,-0.13623858246130138],[123,145,66,-0.13483361988994969],[123,145,67,-0.13332957570635562],[123,145,68,-0.13172655937231703],[123,145,69,-0.13002478905970094],[123,145,70,-0.12822459400854813],[123,145,71,-0.1263264168981426],[123,145,72,-0.12433081623099618],[123,145,73,-0.12223846872983735],[123,145,74,-0.12005017174742472],[123,145,75,-0.1177668456894082],[123,145,76,-0.1153895364500841],[123,145,77,-0.11291941786108783],[123,145,78,-0.11035779415303937],[123,145,79,-0.10770610243010315],[123,146,64,-0.14367639367909213],[123,146,65,-0.14237786185534962],[123,146,66,-0.14097868421162074],[123,146,67,-0.13947888094048733],[123,146,68,-0.13787857985886187],[123,146,69,-0.13617801875505564],[123,146,70,-0.13437754774836363],[123,146,71,-0.13247763166124105],[123,146,72,-0.13047885240402668],[123,146,73,-0.1283819113722996],[123,146,74,-0.12618763185668824],[123,146,75,-0.12389696146536067],[123,146,76,-0.12151097455903359],[123,146,77,-0.11903087469855356],[123,146,78,-0.11645799710505622],[123,146,79,-0.11379381113267228],[123,147,64,-0.1497067042153023],[123,147,65,-0.14841567240084974],[123,147,66,-0.14702245583061002],[123,147,67,-0.14552709146400244],[123,147,68,-0.14392972512846725],[123,147,69,-0.14223061386853397],[123,147,70,-0.14043012830704316],[123,147,71,-0.13852875501859885],[123,147,72,-0.13652709891520431],[123,147,73,-0.13442588564417146],[123,147,74,-0.13222596399811626],[123,147,75,-0.12992830833727753],[123,147,76,-0.1275340210239886],[123,147,77,-0.12504433486936195],[123,147,78,-0.1224606155921868],[123,147,79,-0.11978436429001382],[123,148,64,-0.15563206526233986],[123,148,65,-0.1543486701879685],[123,148,66,-0.15296157457025616],[123,148,67,-0.15147083180021947],[123,148,68,-0.14987660536390723],[123,148,69,-0.14817917119360902],[123,148,70,-0.1463789200308635],[123,148,71,-0.14447635980134454],[123,148,72,-0.14247211800157555],[123,148,73,-0.14036694409756312],[123,148,74,-0.1381617119351638],[123,148,75,-0.13585742216241925],[123,148,76,-0.13345520466369154],[123,148,77,-0.13095632100565568],[123,148,78,-0.12836216689515334],[123,148,79,-0.12567427464887693],[123,149,64,-0.16144924318070542],[123,149,65,-0.1601736043489339],[123,149,66,-0.15879277328577257],[123,149,67,-0.15730681947242087],[123,149,68,-0.15571592369457188],[123,149,69,-0.1540203803958904],[123,149,70,-0.1522206000429509],[123,149,71,-0.15031711150170057],[123,149,72,-0.14831056442541068],[123,149,73,-0.14620173165419792],[123,149,74,-0.14399151162593704],[123,149,75,-0.14168093079879052],[123,149,76,-0.1392711460851993],[123,149,77,-0.13676344729737966],[123,149,78,-0.1341592596043384],[123,149,79,-0.13146014600037226],[123,150,64,-0.16715510206329054],[123,150,65,-0.16588732178314047],[123,150,66,-0.16451288261095787],[123,150,67,-0.1630318697708183],[123,150,68,-0.16144448098234754],[123,150,69,-0.15975102881659475],[123,150,70,-0.15795194306302363],[123,150,71,-0.15604777310769613],[123,150,72,-0.15403919032260294],[123,150,73,-0.15192699046623115],[123,150,74,-0.14971209609518088],[123,150,75,-0.1473955589870668],[123,150,76,-0.14497856257453912],[123,150,77,-0.14246242439047696],[123,150,78,-0.1398485985243595],[123,150,79,-0.13713867808978764],[123,151,64,-0.17274660849352064],[123,151,65,-0.17148677193873585],[123,151,66,-0.17011883576184894],[123,151,67,-0.16864290057690123],[123,151,68,-0.167059180665305],[123,151,69,-0.16536800633422122],[123,151,70,-0.16356982628572614],[123,151,71,-0.16166520999684075],[123,151,72,-0.1596548501103804],[123,151,73,-0.1575395648367104],[123,151,74,-0.15532030036622357],[123,151,75,-0.15299813329277367],[123,151,76,-0.15057427304789806],[123,151,77,-0.1480500643458853],[123,151,78,-0.1454269896396928],[123,151,79,-0.1427066715876829],[123,152,64,-0.17822083635919095],[123,152,65,-0.17696901165037549],[123,152,66,-0.175607673396997],[123,152,67,-0.17413693724484902],[123,152,68,-0.17255703365886865],[123,152,69,-0.17086831028411797],[123,152,70,-0.16907123431723792],[123,152,71,-0.16716639488844043],[123,152,72,-0.16515450545400578],[123,152,73,-0.16303640619935977],[123,152,74,-0.16081306645255888],[123,152,75,-0.15848558710840388],[123,152,76,-0.1560552030630299],[123,152,77,-0.15352328565901563],[123,152,78,-0.15089134514102542],[123,152,79,-0.14816103312194673],[123,153,64,-0.18357497172216297],[123,153,65,-0.18233121003331643],[123,153,66,-0.1809765485345428],[123,153,67,-0.17951111754018112],[123,153,68,-0.17793516331464676],[123,153,69,-0.17624905043610828],[123,153,70,-0.17445326417032736],[123,153,71,-0.1725484128547251],[123,153,72,-0.17053523029264073],[123,153,73,-0.1684145781578602],[123,153,74,-0.16618744840923838],[123,153,75,-0.16385496571564162],[123,153,76,-0.16141838989105284],[123,153,77,-0.15887911833988344],[123,153,78,-0.1562386885125091],[123,153,79,-0.15349878037098708],[123,154,64,-0.18880631774404377],[123,154,65,-0.18757065343396784],[123,154,66,-0.18622273152620605],[123,154,67,-0.1847626966357615],[123,154,68,-0.18319081043703844],[123,154,69,-0.18150745403029833],[123,154,70,-0.17971313031797487],[123,154,71,-0.1778084663909124],[123,154,72,-0.1757942159244954],[123,154,73,-0.1736712615847429],[123,154,74,-0.17144061744419492],[123,154,75,-0.1691034314078146],[123,154,76,-0.16666098764875237],[123,154,77,-0.16411470905401115],[123,154,78,-0.16146615968003486],[123,154,79,-0.1587170472181736],[123,155,64,-0.1939122996675795],[123,155,65,-0.19268475043663502],[123,155,66,-0.19134361508792586],[123,155,67,-0.18988905216489216],[123,155,68,-0.18832133835734988],[123,155,69,-0.1866408708707984],[123,155,70,-0.1848481698052905],[123,155,71,-0.1829438805439344],[123,155,72,-0.18092877615098923],[123,155,73,-0.1788037597796327],[123,155,74,-0.17656986708922717],[123,155,75,-0.174228268672306],[123,155,76,-0.17178027249112848],[123,155,77,-0.16922732632383963],[123,155,78,-0.1665710202202616],[123,155,79,-0.1638130889672652],[123,156,64,-0.19889046985389858],[123,156,65,-0.19767103692658705],[123,156,66,-0.19633671938728425],[123,156,67,-0.19488768933163192],[123,156,68,-0.1933242380655571],[123,156,69,-0.19164677847749134],[123,156,70,-0.18985584741986883],[123,156,71,-0.18795210809996887],[123,156,72,-0.185936352480067],[123,156,73,-0.18380950368697369],[123,156,74,-0.1815726184307841],[123,156,75,-0.17922688943306464],[123,156,76,-0.17677364786431904],[123,156,77,-0.1742143657907783],[123,156,78,-0.1715506586305331],[123,156,79,-0.16878428761896191],[123,157,64,-0.20373851287573852],[123,157,65,-0.20252718120958635],[123,157,66,-0.20119969718784725],[123,157,67,-0.19975624607847098],[123,157,68,-0.19819713339984646],[123,157,69,-0.1965227872959855],[123,157,70,-0.19473376092070938],[123,157,71,-0.19283073483090218],[123,157,72,-0.1908145193887969],[123,157,73,-0.1886860571733716],[123,157,74,-0.18644642540067957],[123,157,75,-0.1840968383533398],[123,157,76,-0.18163864981903033],[123,157,77,-0.1790733555380286],[123,157,78,-0.17640259565981653],[123,157,79,-0.17362815720870572],[123,158,64,-0.20845425066638557],[123,158,65,-0.20725098918760532],[123,158,66,-0.20593033905015345],[123,158,67,-0.20449249831109273],[123,158,68,-0.2029377862936642],[123,158,69,-0.20126664596547672],[123,158,70,-0.19947964632543347],[123,158,71,-0.19757748479945814],[123,158,72,-0.19556098964498314],[123,158,73,-0.19343112236428184],[123,158,74,-0.191188980126467],[123,158,75,-0.18883579819837903],[123,158,76,-0.18637295238421125],[123,158,77,-0.18380196147391448],[123,158,78,-0.1811244897003953],[123,158,79,-0.17834234920546965],[123,159,64,-0.21303564772448025],[123,159,65,-0.21184040959088768],[123,159,66,-0.21052657858950274],[123,159,67,-0.20909436518037605],[123,159,68,-0.20754410208042706],[123,159,69,-0.2058762466446763],[123,159,70,-0.2040913832559531],[123,159,71,-0.20219022572314393],[123,159,72,-0.20017361968794478],[123,159,73,-0.19804254504019703],[123,159,74,-0.1957981183416294],[123,159,75,-0.19344159525823434],[123,159,76,-0.19097437300111686],[123,159,77,-0.18839799277586633],[123,159,78,-0.18571414224046368],[123,159,79,-0.18292465797168178],[123,160,64,-0.21748081637477334],[123,160,65,-0.2162935392664358],[123,160,66,-0.21498649779063328],[123,160,67,-0.2135599144217235],[123,160,68,-0.2120141348559803],[123,160,69,-0.21034963039588994],[123,160,70,-0.20856700034267317],[123,160,71,-0.2066669743970988],[123,160,72,-0.20465041506854886],[123,160,73,-0.20251832009241832],[123,160,74,-0.2002718248556693],[123,160,75,-0.19791220483076877],[123,160,76,-0.19544087801785148],[123,160,77,-0.19285940739514984],[123,160,78,-0.1901695033777142],[123,160,79,-0.18737302628437158],[123,161,64,-0.22178802208463078],[123,161,65,-0.22060862852272234],[123,161,66,-0.21930833237907477],[123,161,67,-0.2178873677515094],[123,161,68,-0.21634609289859819],[123,161,69,-0.21468499262704077],[123,161,70,-0.21290468068702662],[123,161,71,-0.2110059021756412],[123,161,72,-0.20898953594829062],[123,161,73,-0.2068565970382097],[123,161,74,-0.20460823908389192],[123,161,75,-0.20224575676465328],[123,161,76,-0.19977058824418603],[123,161,77,-0.19718431762213218],[123,161,78,-0.19448867739371056],[123,161,79,-0.19168555091733608],[123,162,64,-0.22595568883637862],[123,162,65,-0.22478408653071957],[123,162,66,-0.22349047724928384],[123,162,67,-0.2220751063207449],[123,162,68,-0.22053834414662055],[123,162,69,-0.21888068859173493],[123,162,70,-0.2171027673824335],[123,162,71,-0.21520534051260953],[123,162,72,-0.21318930265751523],[123,162,73,-0.2110556855954232],[123,162,74,-0.20880566063697903],[123,162,75,-0.20644054106245135],[123,162,76,-0.20396178456674152],[123,162,77,-0.2013709957121793],[123,162,78,-0.19866992838913944],[123,162,79,-0.19586048828441593],[123,163,64,-0.2299824045556138],[123,163,65,-0.22881848678137107],[123,163,66,-0.22753149194967381],[123,163,67,-0.2261216762260806],[123,163,68,-0.224589421733851],[123,163,69,-0.222935238947487],[123,163,70,-0.22115976909380974],[123,163,71,-0.21926378656061718],[123,163,72,-0.21724820131290778],[123,163,73,-0.21511406131672595],[123,163,74,-0.21286255497047757],[123,163,75,-0.2104950135439163],[123,163,76,-0.20801291362466756],[123,163,77,-0.2054178795723124],[123,163,78,-0.2027116859800694],[123,163,79,-0.19989626014400952],[123,164,64,-0.23386692659524033],[123,164,65,-0.23271057259926442],[123,164,66,-0.23143010622430804],[123,164,67,-0.23002579407791257],[123,164,68,-0.22849802958247778],[123,164,69,-0.22684733537187696],[123,164,70,-0.2250743656953874],[123,164,71,-0.22317990882898875],[123,164,72,-0.2211648894940098],[123,164,73,-0.2190303712831847],[123,164,74,-0.21677755909395935],[123,164,75,-0.21440780156925865],[123,164,76,-0.21192259354557041],[123,164,77,-0.20932357850837824],[123,164,78,-0.2066125510549729],[123,164,79,-0.2037914593645852],[123,165,64,-0.23760818727542676],[123,165,65,-0.2364592627127008],[123,165,66,-0.23518522561144728],[123,165,67,-0.2337863526257774],[123,165,68,-0.2322630480537069],[123,165,69,-0.23061584623681852],[123,165,70,-0.22884541396703684],[123,165,71,-0.22695255290056393],[123,165,72,-0.22493820197895564],[123,165,73,-0.22280343985740259],[123,165,74,-0.2205494873400503],[123,165,75,-0.21817770982257956],[123,165,76,-0.21568961974189016],[123,165,77,-0.21308687903293233],[123,165,78,-0.21037130159270656],[123,165,79,-0.20754485575138015],[123,166,64,-0.2412052994793502],[123,166,65,-0.24006365688003217],[123,166,66,-0.2387959370988184],[123,166,67,-0.23740242644091558],[123,166,68,-0.2358835396559832],[123,166,69,-0.2342398223408203],[123,166,70,-0.23247195334896265],[123,166,71,-0.23058074720724409],[123,166,72,-0.22856715653930115],[123,166,73,-0.2264322744960816],[123,166,74,-0.2241773371931981],[123,166,75,-0.22180372615533972],[123,166,76,-0.21931297076759138],[123,166,77,-0.21670675073370171],[123,166,78,-0.2139868985413227],[123,166,79,-0.21115540193416416],[123,167,64,-0.24465756230489133],[123,167,65,-0.24352304157241778],[123,167,66,-0.2422615148357683],[123,167,67,-0.24087327765615285],[123,167,68,-0.23935875481095248],[123,167,69,-0.2377185026993922],[123,167,70,-0.23595321175493222],[123,167,71,-0.23406370886443795],[123,167,72,-0.23205095979409784],[123,167,73,-0.22991607162216232],[123,167,74,-0.22766029517833275],[123,167,75,-0.22528502749002133],[123,167,76,-0.22279181423533023],[123,167,77,-0.22018235220278637],[123,167,78,-0.21745849175786225],[123,167,79,-0.21462223931621927],[123,168,64,-0.24796446677208628],[123,168,65,-0.2468368957128224],[123,168,66,-0.24558142590211007],[123,168,67,-0.24419836176291776],[123,168,68,-0.24268813767697972],[123,168,69,-0.24105132039340882],[123,168,70,-0.23928861144384728],[123,168,71,-0.2374008495642167],[123,168,72,-0.2353890131230323],[123,168,73,-0.2332542225563592],[123,168,74,-0.23099774280923768],[123,168,75,-0.22862098578379653],[123,168,76,-0.22612551279390702],[123,168,77,-0.2235130370264119],[123,168,78,-0.2207854260089528],[123,168,79,-0.21794470408435107],[123,169,64,-0.251125701586433],[123,169,65,-0.2500048964713403],[123,169,66,-0.24875533613375644],[123,169,67,-0.24737733346548518],[123,169,68,-0.24587133203031575],[123,169,69,-0.24423790847552684],[123,169,70,-0.24247777494975253],[123,169,71,-0.24059178152727612],[123,169,72,-0.23858091863871567],[123,169,73,-0.2364463195081805],[123,169,74,-0.23418926259671968],[123,169,75,-0.2318111740522919],[123,169,76,-0.22931363016609918],[123,169,77,-0.2266983598353236],[123,169,78,-0.22396724703229354],[123,169,79,-0.22112233328002484],[123,170,64,-0.25414115895813383],[123,170,65,-0.2530269251169328],[123,170,66,-0.2517831160052262],[123,170,67,-0.2504100525925309],[123,170,68,-0.2489081872039962],[123,170,69,-0.2472781059347371],[123,170,70,-0.24552053107036464],[123,170,71,-0.24363632351378373],[123,170,72,-0.24162648521821362],[123,170,73,-0.23949216162651854],[123,170,74,-0.23723464411666595],[123,170,75,-0.2348553724535397],[123,170,76,-0.23235593724695547],[123,170,77,-0.22973808241591387],[123,170,78,-0.2270037076591187],[123,170,79,-0.22415487093170638],[123,171,64,-0.25701094047709305],[123,171,65,-0.2559030729253985],[123,171,66,-0.2546648465688366],[123,171,67,-0.2532965900658146],[123,171,68,-0.25179876408429],[123,171,69,-0.2501719637188684],[123,171,70,-0.2484169209139413],[123,171,71,-0.24653450689293488],[123,171,72,-0.24452573459362992],[123,171,73,-0.24239176110962912],[123,171,74,-0.24013389013780184],[123,171,75,-0.23775357443192568],[123,171,76,-0.23525241826237464],[123,171,77,-0.23263217988188856],[123,171,78,-0.2298947739974524],[123,171,79,-0.22704227424823276],[123,172,64,-0.25973536304378086],[123,172,65,-0.2586336471436854],[123,172,66,-0.257400825450701],[123,172,67,-0.2560372339261049],[123,172,68,-0.2545433411648117],[123,172,69,-0.2529197508151608],[123,172,70,-0.25116720400459913],[123,172,71,-0.24928658177132612],[123,172,72,-0.24727890750186032],[123,172,73,-0.24514534937460897],[123,172,74,-0.24288722280926422],[123,172,75,-0.24050599292225205],[123,172,76,-0.23800327698807533],[123,172,77,-0.23538084690659544],[123,172,78,-0.2326406316762729],[123,172,79,-0.22978471987331694],[123,173,64,-0.2623149648560128],[123,173,65,-0.2612191770105946],[123,173,66,-0.259991572903572],[123,173,67,-0.2586324954163923],[123,173,68,-0.25714242065834225],[123,173,69,-0.25552196038894825],[123,173,70,-0.2537718644461332],[123,173,71,-0.2518930231801937],[123,173,72,-0.24988646989356056],[123,173,73,-0.24775338328642227],[123,173,74,-0.24549508990803837],[123,173,75,-0.2431130666139596],[123,173,76,-0.24060894302900893],[123,173,77,-0.23798450401605853],[123,173,78,-0.23524169215062596],[123,173,79,-0.2323826102012423],[123,174,64,-0.26475051145150563],[123,174,65,-0.263660419833738],[123,174,66,-0.26243783791639974],[123,174,67,-0.2610831151222539],[123,174,68,-0.2595967346662239],[123,174,69,-0.25797931598032076],[123,174,70,-0.2562316171441955],[123,174,71,-0.2543545373213826],[123,174,72,-0.25234911920119296],[123,174,73,-0.2502165514463399],[123,174,74,-0.24795817114611984],[123,174,75,-0.24557546627537452],[123,174,76,-0.24307007815907522],[123,174,77,-0.2404438039425778],[123,174,78,-0.23769859906755952],[123,174,79,-0.2348365797536014],[123,175,64,-0.26704300180628904],[123,175,65,-0.26595836712282717],[123,175,66,-0.2647406043806757],[123,175,67,-0.26339006916944685],[123,175,68,-0.26190725140540605],[123,175,69,-0.26029277775883763],[123,175,70,-0.2585474140869123],[123,175,71,-0.25667206787212005],[123,175,72,-0.25466779066623035],[123,175,73,-0.25253578053986114],[123,175,74,-0.2502773845374783],[123,175,75,-0.24789410113805388],[123,175,76,-0.2453875827212213],[123,175,77,-0.2427596380389785],[123,175,78,-0.24001223469294874],[123,175,79,-0.23714750161716347],[123,176,64,-0.269193674489029],[123,176,65,-0.2681142507793507],[123,176,66,-0.26690109731362743],[123,176,67,-0.2655545754787889],[123,176,68,-0.2640751814931964],[123,176,69,-0.2624635488363539],[123,176,70,-0.26072045068400074],[123,176,71,-0.25884680234865554],[123,176,72,-0.2568436637255723],[123,176,73,-0.25471224174418816],[123,176,74,-0.25245389282488406],[123,176,75,-0.25007012534129136],[123,176,76,-0.24756260208797698],[123,176,77,-0.24493314275356004],[123,176,78,-0.24218372639927277],[123,176,79,-0.2393164939429241],[123,177,64,-0.2712040138711359],[123,177,65,-0.27012954934251243],[123,177,66,-0.2689207891381289],[123,177,67,-0.2675781000781964],[123,177,68,-0.26610198428959575],[123,177,69,-0.26449308163782914],[123,177,70,-0.26275217216425006],[123,177,71,-0.26088017852863277],[123,177,72,-0.25887816845704625],[123,177,73,-0.25674735719511166],[123,177,74,-0.25448910996646434],[123,177,75,-0.2521049444366521],[123,177,76,-0.2495965331823039],[123,177,77,-0.24696570616562408],[123,177,78,-0.2442144532142171],[123,177,79,-0.24134492650621087],[123,178,64,-0.2730757563927253],[123,178,65,-0.27200599429150074],[123,178,66,-0.27080140601939984],[123,178,67,-0.2694623634719513],[123,178,68,-0.2679893742972774],[123,178,69,-0.2663830843301874],[123,178,70,-0.26464428003144325],[123,178,71,-0.26277389093227],[123,178,72,-0.26077299208406446],[123,178,73,-0.2586428065133878],[123,178,74,-0.2563847076820631],[123,178,75,-0.2540002219526054],[123,178,76,-0.2514910310588234],[123,178,77,-0.24885897458164374],[123,178,78,-0.24610605243016537],[123,178,79,-0.24323442732791256],[123,179,64,-0.2748108968844929],[123,179,65,-0.27374557640414443],[123,179,66,-0.272544934258553],[123,179,67,-0.2712093470672533],[123,179,68,-0.26973932761927977],[123,179,69,-0.26813552730929024],[123,179,70,-0.26639873857877394],[123,179,71,-0.26452989736240284],[123,179,72,-0.2625300855394943],[123,179,73,-0.26040053339065883],[123,179,74,-0.25814262205946104],[123,179,75,-0.2557578860193198],[123,179,76,-0.2532480155454838],[123,179,77,-0.250614859192138],[123,179,78,-0.24786042627464544],[123,179,79,-0.24498688935689328],[123,180,64,-0.27641169494536266],[123,180,65,-0.2753505521718226],[123,180,66,-0.2741536267428494],[123,180,67,-0.2728212996579228],[123,180,68,-0.27135408847426423],[123,180,69,-0.2697526497448838],[123,180,70,-0.2680177814616225],[123,180,71,-0.2661504255032535],[123,180,72,-0.26415167008860474],[123,180,73,-0.26202275223478166],[123,180,74,-0.2597650602203184],[123,180,75,-0.25738013605347465],[123,180,76,-0.25486967794552995],[123,180,77,-0.2522355427891132],[123,180,78,-0.2494797486415884],[123,180,79,-0.2466044772134519],[123,181,64,-0.2778806813760102],[123,181,65,-0.2768234502707222],[123,181,66,-0.27563000945276184],[123,181,67,-0.27430074396534865],[123,181,68,-0.2728361757694454],[123,181,69,-0.2712369661836146],[123,181,70,-0.2695039183287896],[123,181,71,-0.26763797957802427],[123,181,72,-0.26564024401118524],[123,181,73,-0.2635119548746645],[123,181,74,-0.2612545070459382],[123,181,75,-0.25886944950319324],[123,181,76,-0.256358487799871],[123,181,77,-0.25372348654416543],[123,181,78,-0.2509664718834982],[123,181,79,-0.24808963399392447],[123,182,64,-0.279220664668272],[123,182,65,-0.27816707808946206],[123,182,66,-0.2769768880258616],[123,182,67,-0.2756504832367014],[123,182,68,-0.27418838973120463],[123,182,69,-0.272591273210138],[123,182,70,-0.27085994151220283],[123,182,71,-0.2689953470653327],[123,182,72,-0.26699858934285914],[123,182,73,-0.26487091732462464],[123,182,74,-0.2626137319628691],[123,182,75,-0.26022858865311016],[123,182,76,-0.2577171997098672],[123,182,77,-0.2550814368472669],[123,182,78,-0.2523233336645525],[123,182,79,-0.2494450881364496],[123,183,64,-0.2804347375503494],[123,183,65,-0.2793845283129839],[123,183,66,-0.2781973543774314],[123,183,67,-0.2768736079003107],[123,183,68,-0.2754138185932895],[123,183,69,-0.2738186561662115],[123,183,70,-0.27208893277499757],[123,183,71,-0.2702256054743879],[123,183,72,-0.2682297786754836],[123,183,73,-0.2661027066081697],[123,183,74,-0.2638457957882441],[123,183,75,-0.2614606074894741],[123,183,76,-0.2589488602204296],[123,183,77,-0.2563124322061303],[123,183,78,-0.25355336387453065],[123,183,79,-0.2506738603477926],[123,184,64,-0.281526283587891],[123,184,65,-0.28047918556280227],[123,184,66,-0.2792947933778933],[123,184,67,-0.277973502278299],[123,184,68,-0.27651584534269247],[123,184,69,-0.27492249592787277],[123,184,70,-0.2731942701180651],[123,184,71,-0.2713321291790006],[123,184,72,-0.2693371820167366],[123,184,73,-0.26721068764129563],[123,184,74,-0.2649540576349516],[123,184,75,-0.2625688586253817],[123,184,76,-0.26005681476353415],[123,184,77,-0.2574198102062504],[123,184,78,-0.25465989160366376],[123,184,79,-0.25177927059132477],[123,185,64,-0.2824989838409254],[123,185,65,-0.2814547330935766],[123,185,66,-0.2802728895870198],[123,185,67,-0.2789538513564356],[123,185,68,-0.27749815452317006],[123,185,69,-0.27590647574066174],[123,185,70,-0.27417963464503137],[123,185,71,-0.2723185963103928],[123,185,72,-0.27032447370885093],[123,185,73,-0.2681985301752646],[123,185,74,-0.2659421818766009],[123,185,75,-0.2635570002861001],[123,185,76,-0.26104471466210344],[123,185,77,-0.25840721453157955],[123,185,78,-0.25564655217837207],[123,185,79,-0.2527649451361206],[123,186,64,-0.28335682357664205],[123,186,65,-0.2823151595460126],[123,186,66,-0.28113563404492825],[123,186,67,-0.27981864761121666],[123,186,68,-0.27836473909640913],[123,186,69,-0.2767745881128916],[123,186,70,-0.2750490174856699],[123,186,71,-0.2731889957088075],[123,186,72,-0.2711956394064998],[123,186,73,-0.2690702157988669],[123,186,74,-0.2668141451722863],[123,186,75,-0.2644290033544898],[123,186,76,-0.26191652419427147],[123,186,77,-0.25927860204584774],[123,186,78,-0.25651729425788905],[123,186,79,-0.2536348236671754],[123,187,64,-0.28410409903800227],[123,187,65,-0.2830647657560662],[123,187,66,-0.2818873311198399],[123,187,67,-0.28057219789414733],[123,187,68,-0.27911990736081826],[123,187,69,-0.2775311417669484],[123,187,70,-0.275806726777728],[123,187,71,-0.27394763393389954],[123,187,72,-0.2719549831138114],[123,187,73,-0.26983004500014307],[123,187,74,-0.26757424355112824],[123,187,75,-0.2651891584764994],[123,187,76,-0.2626765277179992],[123,187,77,-0.260038249934501],[123,187,78,-0.2572763869917557],[123,187,79,-0.25439316645672283],[123,188,64,-0.2847454242682338],[123,188,65,-0.28370817162051065],[123,188,66,-0.28253260541265757],[123,188,67,-0.2812191303732824],[123,188,68,-0.27976828992799785],[123,188,69,-0.27818076864867436],[123,188,70,-0.2764573947072214],[123,188,71,-0.27459914233396376],[123,188,72,-0.2726071342805719],[123,188,73,-0.2704826442876269],[123,188,74,-0.2682270995566466],[123,188,75,-0.26584208322679204],[123,188,76,-0.26332933685610527],[123,188,77,-0.2606907629073161],[123,188,78,-0.2579284272382384],[123,188,79,-0.2550445615967111],[123,189,64,-0.28528573799114887],[123,189,65,-0.2842503230188018],[123,189,66,-0.2830764087182992],[123,189,67,-0.28176440153196414],[123,189,68,-0.2803148467568293],[123,189,69,-0.27872843099477074],[123,189,70,-0.2770059846071362],[123,189,71,-0.2751484841739349],[123,189,72,-0.27315705495754783],[123,189,73,-0.2710329733710414],[123,189,74,-0.26877766945090464],[123,189,75,-0.26639272933443936],[123,189,76,-0.26387989774164256],[123,189,77,-0.26124108046162875],[123,189,78,-0.2584783468436064],[123,189,79,-0.2555939322923668],[123,190,64,-0.28573031054731957],[123,190,65,-0.2846964987912771],[123,190,66,-0.28352402704382607],[123,190,67,-0.2822133032247922],[123,190,68,-0.28076487424521623],[123,190,69,-0.2791794284582588],[123,190,70,-0.27745779811457094],[123,190,71,-0.2756009618221974],[123,190,72,-0.2736100470109726],[123,190,73,-0.27148633240148823],[123,190,74,-0.2692312504784613],[123,190,75,-0.26684638996872057],[123,190,76,-0.26433349832366193],[123,190,77,-0.26169448420620944],[123,190,78,-0.2589314199823082],[123,190,79,-0.25604654421689466],[123,191,64,-0.28608475088610674],[123,191,65,-0.28505231777368445],[123,191,66,-0.28388108768335574],[123,191,67,-0.28257146979082004],[123,191,68,-0.2811240123794764],[123,191,69,-0.27953940529199284],[123,191,70,-0.2778184823863181],[123,191,71,-0.27596222399620174],[123,191,72,-0.2739717593961817],[123,191,73,-0.2718483692711211],[123,191,74,-0.2695934881901194],[123,191,75,-0.267208707085019],[123,191,76,-0.2646957757333539],[123,191,77,-0.26205660524578533],[123,191,78,-0.25929327055803797],[123,191,79,-0.2564080129272951],[123,192,64,-0.2863550136135318],[123,192,65,-0.28532374588803255],[123,192,66,-0.2841535663497554],[123,192,67,-0.28284488522396967],[123,192,68,-0.281398251941371],[123,192,69,-0.27981435759021467],[123,192,70,-0.27809403737287186],[123,192,71,-0.27623827306687254],[123,192,72,-0.2742481954903979],[123,192,73,-0.272125086972299],[123,192,74,-0.2698703838264723],[123,192,75,-0.267485678830808],[123,192,76,-0.2649727237105628],[123,192,77,-0.2623334316261957],[123,192,78,-0.25956987966568834],[123,192,79,-0.25668431134130043],[123,193,64,-0.2865474060960045],[123,193,65,-0.2855171032897704],[123,193,66,-0.28434779436312363],[123,193,67,-0.28303989040067523],[123,193,68,-0.28159394177278574],[123,193,69,-0.28001064058816283],[123,193,70,-0.2782908231508753],[123,193,71,-0.2764354724218261],[123,193,72,-0.2744457204846681],[123,193,73,-0.2723228510162239],[123,193,74,-0.27006830176124685],[123,193,75,-0.2676836670117394],[123,193,76,-0.2651707000906799],[123,193,77,-0.2625313158401933],[123,193,78,-0.25976759311419195],[123,193,79,-0.2568817772754357],[123,194,64,-0.286668595619894],[123,194,65,-0.2856390715712891],[123,194,66,-0.2844704658960504],[123,194,67,-0.28316319036474547],[123,194,68,-0.2817177960980496],[123,194,69,-0.28013497601972415],[123,194,70,-0.27841556731399497],[123,194,71,-0.2765605538873811],[123,194,72,-0.2745710688349493],[123,194,73,-0.27244839691106026],[123,194,74,-0.2701939770044445],[123,194,75,-0.26780940461782077],[123,194,76,-0.2652964343519101],[123,194,77,-0.2626569823938809],[123,194,78,-0.2598931290102513],[123,194,79,-0.25700712104419576],[123,195,64,-0.28672561660696094],[123,195,65,-0.2856967010217589],[123,195,66,-0.2845286452756728],[123,195,67,-0.28322186166945906],[123,195,68,-0.281776901903913],[123,195,69,-0.28019445953314404],[123,195,70,-0.27847537242224196],[123,195,71,-0.27662062520938346],[123,195,72,-0.27463135177235254],[123,195,73,-0.2725088376995439],[123,195,74,-0.2702545227652866],[123,195,75,-0.2678700034096979],[123,195,76,-0.26535703522292364],[123,195,77,-0.2627175354338004],[123,195,78,-0.259953585402964],[123,195,79,-0.2570674331203512],[123,196,64,-0.28672587788562],[123,196,65,-0.2856974179432751],[123,196,66,-0.28452977434249527],[123,196,67,-0.2832233597768671],[123,196,68,-0.28177872637714807],[123,196,69,-0.28019656816476723],[123,196,70,-0.2784777235097057],[123,196,71,-0.2766231775928111],[123,196,72,-0.27463406487252073],[123,196,73,-0.27251167155605815],[123,196,74,-0.2702574380749412],[123,196,75,-0.2678729615650155],[123,196,76,-0.26535999835086577],[123,196,77,-0.2627204664346414],[123,196,78,-0.25995644798931994],[123,196,79,-0.25707019185635827],[123,197,64,-0.28667717001807214],[123,197,65,-0.28564903202334935],[123,197,66,-0.28448167986601447],[123,197,67,-0.2831755265143371],[123,197,68,-0.28173112439981807],[123,197,69,-0.2801491678708482],[123,197,70,-0.27843049565074207],[123,197,71,-0.27657609330020116],[123,197,72,-0.27458709568417805],[123,197,73,-0.2724647894432114],[123,197,74,-0.2702106154690658],[123,197,75,-0.2678261713848934],[123,197,76,-0.26531321402976493],[123,197,77,-0.2626736619476133],[123,197,78,-0.2599095978806074],[123,197,79,-0.25702327126691016],[123,198,64,-0.28658767268327445],[123,198,65,-0.2855597437637152],[123,198,66,-0.2843925810171164],[123,198,67,-0.28308659758831145],[123,198,68,-0.28164234610217675],[123,198,69,-0.2800605211173943],[123,198,70,-0.2783419615845849],[123,198,71,-0.2764876533088668],[123,198,72,-0.2744987314168156],[123,198,73,-0.2723764828278853],[123,198,74,-0.27012234873013763],[123,198,75,-0.26773792706048505],[123,198,76,-0.26522497498930175],[123,198,77,-0.2625854114094436],[123,198,78,-0.25982131942969444],[123,198,79,-0.2569349488725948],[123,199,64,-0.28646596211576336],[123,199,65,-0.2854381519654624],[123,199,66,-0.2842710968972598],[123,199,67,-0.28296521015528997],[123,199,68,-0.2815210444732187],[123,199,69,-0.2799392945280649],[123,199,70,-0.27822079939839106],[123,199,71,-0.2763665450269175],[123,199,72,-0.2743776666875333],[123,199,73,-0.27225545145677077],[123,199,74,-0.2700013406895837],[123,199,75,-0.2676169324996357],[123,199,76,-0.2651039842439604],[123,199,77,-0.26246441501202133],[123,199,78,-0.2597003081192033],[123,199,79,-0.25681391360467787],[123,200,64,-0.286321018600328],[123,200,65,-0.28529326127049814],[123,200,66,-0.2841262541244458],[123,200,67,-0.2828204104500396],[123,200,68,-0.28137628302887374],[123,200,69,-0.2797945665901165],[123,200,70,-0.27807610026872365],[123,200,71,-0.27622187006807997],[123,200,72,-0.2742330113270317],[123,200,73,-0.2721108111913859],[123,200,74,-0.26985671108970855],[123,200,75,-0.2674723092136364],[123,200,76,-0.2649593630025555],[123,200,77,-0.2623197916326826],[123,200,78,-0.25955567851057315],[123,200,79,-0.2566692737710069],[123,201,64,-0.28616223402252905],[123,201,65,-0.2851344897593324],[123,201,66,-0.2839674944759665],[123,201,67,-0.28266166147102123],[123,201,68,-0.28121754353784423],[123,201,69,-0.2796358354183942],[123,201,70,-0.2779173762614624],[123,201,71,-0.2760631520853193],[123,201,72,-0.2740742982447526],[123,201,73,-0.27195210190257346],[123,201,74,-0.2696980045054189],[123,201,75,-0.2673136042640696],[123,201,76,-0.2648006586381332],[123,201,77,-0.2621610868251306],[123,201,78,-0.2593969722540094],[123,201,79,-0.25651056508303227],[123,202,64,-0.28567222789534685],[123,202,65,-0.2846444811983556],[123,202,66,-0.28347748355169156],[123,202,67,-0.2821716482543314],[123,202,68,-0.2807275280999232],[123,202,69,-0.27914581783063985],[123,202,70,-0.27742735659539586],[123,202,71,-0.27557313041249243],[123,202,72,-0.2735842746366529],[123,202,73,-0.27146207643052633],[123,202,74,-0.2692079772404876],[123,202,75,-0.26682357527695155],[123,202,76,-0.26431062799905536],[123,202,77,-0.26167105460374096],[123,202,78,-0.2589069385192654],[123,202,79,-0.25602052990308877],[123,203,64,-0.28566780502169176],[123,203,65,-0.2846400088733324],[123,203,66,-0.2834729635690636],[123,203,67,-0.28216708241010213],[123,203,68,-0.2807229181903548],[123,203,69,-0.2791411656502245],[123,203,70,-0.277422663934779],[123,203,71,-0.275568399056349],[123,203,72,-0.27357950636151473],[123,203,73,-0.27145727300256206],[123,203,74,-0.26920314041323257],[123,203,75,-0.2668187067889899],[123,203,76,-0.26430572957165155],[123,203,77,-0.2616661279384228],[123,203,78,-0.2589019852953566],[123,203,79,-0.25601555177519075],[123,204,64,-0.28565255779476983],[123,204,65,-0.2846245911698626],[123,204,66,-0.2834573815727892],[123,204,67,-0.28215134231249006],[123,204,68,-0.2807070261837634],[123,204,69,-0.27912512792090927],[123,204,70,-0.2774064866557351],[123,204,71,-0.2755520883799889],[123,204,72,-0.2735630684121796],[123,204,73,-0.2714407138688658],[123,204,74,-0.26918646614023867],[123,204,75,-0.26680192337021913],[123,204,76,-0.2642888429409189],[123,204,77,-0.2616491439615032],[123,204,78,-0.2588849097614788],[123,204,79,-0.2559983903883575],[123,205,64,-0.28545692111487975],[123,205,65,-0.28442859214226146],[123,205,66,-0.28326103333617736],[123,205,67,-0.2819546580223825],[123,205,68,-0.280510018997965],[123,205,69,-0.2789278109846435],[123,205,70,-0.2772088730864244],[123,205,71,-0.27535419125168337],[123,205,72,-0.27336490073963293],[123,205,73,-0.2712422885912552],[123,205,74,-0.2689877961045274],[123,205,75,-0.26660302131415803],[123,205,76,-0.264089721475686],[123,205,77,-0.2614498155539783],[123,205,78,-0.2586853867161514],[123,205,79,-0.25579868482886425],[123,206,64,-0.28523814750058807],[123,206,65,-0.28420919602386074],[123,206,66,-0.2830410372787253],[123,206,67,-0.2817340846203925],[123,206,68,-0.28028889085044684],[123,206,69,-0.2787061506695475],[123,206,70,-0.27698670313448537],[123,206,71,-0.27513153411966074],[123,206,72,-0.2731417787829421],[123,206,73,-0.27101872403598803],[123,206,74,-0.2687638110188557],[123,206,75,-0.2663786375791174],[123,206,76,-0.26386496075533583],[123,206,77,-0.2612246992649341],[123,206,78,-0.25845993599648454],[123,206,79,-0.2555729205063668],[123,207,64,-0.284990536348401],[123,207,65,-0.2839606373094562],[123,207,66,-0.2827915653394838],[123,207,67,-0.28148373383941117],[123,207,68,-0.28003769561853653],[123,207,69,-0.2784541453463206],[123,207,70,-0.27673392200852887],[123,207,71,-0.27487801136778744],[123,207,72,-0.27288754842851526],[123,207,73,-0.2707638199063125],[123,207,74,-0.2685082667016295],[123,207,75,-0.2661224863779381],[123,207,76,-0.2636082356442556],[123,207,77,-0.2609674328420567],[123,207,78,-0.25820216043659905],[123,207,79,-0.2553146675126119],[123,208,64,-0.28470869554517997],[123,208,65,-0.2836774621249457],[123,208,66,-0.28250710411324687],[123,208,67,-0.2811980349766453],[123,208,68,-0.2797508075365428],[123,208,69,-0.27816611641969025],[123,208,70,-0.27644480051303855],[123,208,71,-0.2745878454229951],[123,208,72,-0.2725963859390488],[123,208,73,-0.27047170850184],[123,208,74,-0.2682152536755056],[123,208,75,-0.26582861862451634],[123,208,76,-0.2633135595948578],[123,208,77,-0.2606719943995921],[123,208,78,-0.2579060049088232],[123,208,79,-0.2550178395440177],[123,209,64,-0.28438753482563817],[123,209,65,-0.283354521523387],[123,209,66,-0.2821824480874897],[123,209,67,-0.2808717280737508],[123,209,68,-0.27942291432139266],[123,209,69,-0.2778367014018499],[123,209,70,-0.27611392807189616],[123,209,71,-0.274255579731165],[123,209,72,-0.2722627908840244],[123,209,73,-0.27013684760588996],[123,209,74,-0.2678791900137971],[123,209,75,-0.2654914147414569],[123,209,76,-0.2629752774186426],[123,209,77,-0.2603326951549457],[123,209,78,-0.25756574902792573],[123,209,79,-0.2546766865756004],[123,210,64,-0.28402225918775803],[123,210,65,-0.2829869648394622],[123,210,66,-0.2818126929381811],[123,210,67,-0.28049985715628856],[123,210,68,-0.2790490103580179],[123,210,69,-0.27746084704605645],[123,210,70,-0.2757362058124586],[123,210,71,-0.27387607179393547],[123,210,72,-0.2718815791314868],[123,210,73,-0.2697540134344538],[123,210,74,-0.26749481424881827],[123,210,75,-0.265105577529969],[123,210,76,-0.26258805811978625],[123,210,77,-0.2599441722280781],[123,210,78,-0.2571759999183969],[123,210,79,-0.25428578759818365],[123,211,64,-0.28360836236614684],[123,211,65,-0.28257023310236384],[123,211,66,-0.2813932288844814],[123,211,67,-0.2800777635325111],[123,211,68,-0.278624389944503],[123,211,69,-0.277033802540401],[123,211,70,-0.2753068397101981],[123,211,71,-0.27344448626645035],[123,211,72,-0.27144787590111497],[123,211,73,-0.2693182936467893],[123,211,74,-0.26705717834217946],[123,211,75,-0.26466612510201637],[123,211,76,-0.2621468877912717],[123,211,77,-0.25950138150370816],[123,211,78,-0.2567316850447907],[123,211,79,-0.253840043418906],[123,212,64,-0.28314162036332247],[123,212,65,-0.2821000525070967],[123,212,66,-0.28091973410232285],[123,212,67,-0.27960107915148147],[123,212,68,-0.27814464059699295],[123,212,69,-0.2765511127617464],[123,212,70,-0.2748213337939033],[123,212,71,-0.27295628811603856],[123,212,72,-0.2709571088785834],[123,212,73,-0.2688250804176443],[123,212,74,-0.26656164071703303],[123,212,75,-0.26416838387471786],[123,212,76,-0.26164706257355386],[123,212,77,-0.25899959055632527],[123,212,78,-0.2562280451051254],[123,212,79,-0.2533346695250225],[123,213,64,-0.2826180850389196],[123,213,65,-0.2815724279441828],[123,213,66,-0.2803881681968603],[123,213,67,-0.27906572002050745],[123,213,68,-0.27760563641434477],[123,213,69,-0.2760086115898217],[123,213,70,-0.2742754834114284],[123,213,71,-0.27240723584181714],[123,213,72,-0.2704050013911994],[123,213,73,-0.26827006357109306],[123,213,74,-0.2660038593522507],[123,213,75,-0.26360798162698595],[123,213,76,-0.261084181675749],[123,213,77,-0.2584343716379891],[123,213,78,-0.2556606269873266],[123,213,79,-0.2527651890109849],[123,214,64,-0.2820340777568362],[123,214,65,-0.280983636587794],[123,214,66,-0.27979476573381223],[123,214,67,-0.27846787968191444],[123,214,68,-0.27700353150254675],[123,214,69,-0.2754024152814937],[123,214,70,-0.27366536855601054],[123,214,71,-0.271793374755235],[123,214,72,-0.2697875656448405],[123,214,73,-0.2676492237760103],[123,214,74,-0.2653797849385594],[123,214,75,-0.2629808406184244],[123,214,76,-0.2604541404593692],[123,214,77,-0.2578015947289467],[123,214,78,-0.25502527678873943],[123,214,79,-0.2521274255688266],[123,215,64,-0.2813861830903015],[123,215,65,-0.2803302215422886],[123,215,66,-0.2791360298296748],[123,215,67,-0.27780402274913873],[123,215,68,-0.2763347534588869],[123,215,69,-0.27472891590519666],[123,215,70,-0.2729873472531389],[123,215,71,-0.2711110303215435],[123,215,72,-0.26910109602217014],[123,215,73,-0.266958825803163],[123,215,74,-0.2646856540966158],[123,215,75,-0.2622831707704685],[123,215,76,-0.25975312358458413],[123,215,77,-0.25709742065104446],[123,215,78,-0.2543181328986862],[123,215,79,-0.25141749654182943],[123,216,64,-0.2806712425848854],[123,216,65,-0.27960898554717517],[123,216,66,-0.27840872580082754],[123,216,67,-0.27707087850215895],[123,216,68,-0.2755959969158879],[123,216,69,-0.2739847748355403],[123,216,70,-0.2722380490079912],[123,216,71,-0.27035680156220754],[123,216,72,-0.2683421624421535],[123,216,73,-0.2661954118439389],[123,216,74,-0.26391798265703537],[123,216,75,-0.26151146290978156],[123,216,76,-0.25897759821902744],[123,216,77,-0.2563182942439536],[123,216,78,-0.2535356191440922],[123,216,79,-0.25063180604149415],[123,217,64,-0.2798863485794194],[123,217,65,-0.2788169847404708],[123,217,66,-0.2776098748714997],[123,217,67,-0.2762654345422353],[123,217,68,-0.27478421714497836],[123,217,69,-0.2731669163080639],[123,217,70,-0.2714143683134116],[123,217,71,-0.26952755451823085],[123,217,72,-0.2675076037808396],[123,217,73,-0.26535579489067973],[123,217,74,-0.2630735590023502],[123,217,75,-0.26066248207388454],[123,217,76,-0.2581243073091173],[123,217,77,-0.2554609376041791],[123,217,78,-0.2526744379981448],[123,217,79,-0.24976703812778145],[123,218,64,-0.2790288380848608],[123,218,65,-0.27795152248049004],[123,218,66,-0.2767367479406325],[123,218,67,-0.2753849305059931],[123,218,68,-0.2738966237199377],[123,218,69,-0.272272521034173],[123,218,70,-0.27051345821846007],[123,218,71,-0.26862041577442786],[123,218,72,-0.2665945213534492],[123,218,73,-0.2644370521786569],[123,218,74,-0.2621494374709262],[123,218,75,-0.25973326087904647],[123,218,76,-0.2571902629139289],[123,218,77,-0.2545223433868887],[123,218,78,-0.25173156385202755],[123,218,79,-0.24882015005266134],[123,219,64,-0.27809628672109254],[123,219,65,-0.27701014322605133],[123,219,66,-0.27578685940762604],[123,219,67,-0.27442685183883697],[123,219,68,-0.27293067424009976],[123,219,69,-0.27129901987624716],[123,219,70,-0.26953272395752603],[123,219,71,-0.2676327660446328],[123,219,72,-0.2656002724577522],[123,219,73,-0.26343651868967677],[123,219,74,-0.26114293182283166],[123,219,75,-0.2587210929504299],[123,219,76,-0.25617273960160325],[123,219,77,-0.2534997681705481],[123,219,78,-0.2507042363497103],[123,219,79,-0.24778836556695782],[123,220,64,-0.2770865027116285],[123,220,65,-0.2759906264750752],[123,220,66,-0.2747579610569424],[123,220,67,-0.273388923627669],[123,220,68,-0.2718840681132887],[123,220,69,-0.27024408758288854],[123,220,70,-0.2684698166399754],[123,220,71,-0.26656223381781563],[123,220,72,-0.2645224639787104],[123,220,73,-0.2623517807172866],[123,220,74,-0.26005160876762634],[123,220,75,-0.25762352641445974],[123,220,76,-0.255069267908268],[123,220,77,-0.2523907258843352],[123,220,78,-0.24958995378577187],[123,220,79,-0.24666916829045993],[123,221,64,-0.27599752093627006],[123,221,65,-0.27489098076161744],[123,221,66,-0.2736480360016106],[123,221,67,-0.2722691044929556],[123,221,68,-0.2707547403985334],[123,221,69,-0.2691056365843595],[123,221,70,-0.2673226270003768],[123,221,71,-0.2654066890651513],[123,221,72,-0.26335894605442745],[123,221,73,-0.26118066949362806],[123,221,74,-0.2588732815541185],[123,221,75,-0.2564383574534621],[123,221,76,-0.2538776278595123],[123,221,77,-0.25119298129837986],[123,221,78,-0.24838646656629992],[123,221,79,-0.24546029514534673],[123,222,64,-0.27482759704169635],[123,222,65,-0.27370943771132117],[123,222,66,-0.27245529268561597],[123,222,67,-0.27106558054012675],[123,222,68,-0.269540855708542],[123,222,69,-0.26788181084819085],[123,222,70,-0.26608927920929204],[123,222,71,-0.26416423700802716],[123,222,72,-0.26210780580339343],[123,222,73,-0.2599212548779206],[123,222,74,-0.257606003622072],[123,222,75,-0.2551636239225574],[123,222,76,-0.25259584255440193],[123,222,77,-0.24990454357681036],[123,222,78,-0.24709177073285116],[123,222,79,-0.24415972985290801],[123,223,64,-0.27357520160995474],[123,223,65,-0.27244444615525343],[123,223,66,-0.27117815894513986],[123,223,67,-0.2697767593702718],[123,223,68,-0.26824080217190194],[123,223,69,-0.26657097979492606],[123,223,70,-0.2647681247445923],[123,223,71,-0.262833211946949],[123,223,72,-0.26076736111298326],[123,223,73,-0.2585718391065387],[123,223,74,-0.2562480623158274],[123,223,75,-0.25379759902876886],[123,223,76,-0.25122217181199646],[123,223,77,-0.24852365989357184],[123,223,78,-0.24570410154943378],[123,223,79,-0.24276569649352409],[123,224,64,-0.2722390143849085],[123,224,65,-0.2710946663021836],[123,224,66,-0.2698152761287078],[123,224,67,-0.2684012641501913],[123,224,68,-0.2668531854550643],[123,224,69,-0.2651717322740589],[123,224,70,-0.26335773632336223],[123,224,71,-0.261412171151409],[123,224,72,-0.2593361544892737],[123,224,73,-0.25713095060474445],[123,224,74,-0.2547979726598989],[123,224,75,-0.2523387850724108],[123,224,76,-0.24975510588043015],[123,224,77,-0.24704880911107774],[123,224,78,-0.24422192715257607],[123,224,79,-0.2412766531299676],[123,225,64,-0.2708179185566183],[123,225,65,-0.26965896396928046],[123,225,66,-0.2683654932762204],[123,225,67,-0.26693792774178016],[123,225,68,-0.26537682284408826],[123,225,69,-0.26368287060014295],[123,225,70,-0.2618569018943655],[123,225,71,-0.2598998888106899],[123,225,72,-0.2578129469681505],[123,225,73,-0.25559733786004846],[123,225,74,-0.25325447119651934],[123,225,75,-0.25078590725072714],[123,225,76,-0.2481933592085317],[123,225,77,-0.2454786955216669],[123,225,78,-0.24264394226445407],[123,225,79,-0.23969128549399943],[123,226,64,-0.2693109951036179],[123,226,65,-0.2681364048711876],[123,226,66,-0.26682786135683056],[123,226,67,-0.2653857868907018],[123,226,68,-0.26381073738610616],[123,226,69,-0.26210340464903015],[123,226,70,-0.2602646186910327],[123,226,71,-0.25829535004556303],[123,226,72,-0.2561967120876665],[123,226,73,-0.2539699633571597],[123,226,74,-0.25161650988509465],[123,226,75,-0.24913790752374265],[123,226,76,-0.24653586427993845],[123,226,77,-0.24381224265182733],[123,226,78,-0.2409690619690359],[123,226,79,-0.2380085007362187],[123,227,64,-0.2677175171931532],[123,227,65,-0.2665262489675473],[123,227,66,-0.2652016275657334],[123,227,67,-0.26374407647442366],[123,227,68,-0.26215415209057746],[123,227,69,-0.26043254601430976],[123,227,70,-0.25858008734504045],[123,227,71,-0.2565977449809531],[123,227,72,-0.25448662992172233],[123,227,73,-0.2522479975745948],[123,227,74,-0.24988325006363876],[123,227,75,-0.24739393854239722],[123,227,76,-0.24478176550978292],[123,227,77,-0.2420485871292576],[123,227,78,-0.239196415551318],[123,227,79,-0.2362274212392389],[123,228,64,-0.2660369446393547],[123,228,65,-0.264827944868942],[123,228,66,-0.2634862296798409],[123,228,67,-0.26201222380958544],[123,228,68,-0.2604064841903042],[123,228,69,-0.2586697022239185],[123,228,70,-0.2568027060604552],[123,228,71,-0.25480646287954056],[123,228,72,-0.2526820811750392],[123,228,73,-0.2504308130429189],[123,228,74,-0.2480540564721585],[123,228,75,-0.2455533576389336],[123,228,76,-0.2429304132039164],[123,228,77,-0.24018707261273664],[123,228,78,-0.23732534039962072],[123,228,79,-0.23434737849416232],[123,229,64,-0.2642689184192978],[123,229,65,-0.2630411243012085],[123,229,66,-0.26168129047229516],[123,229,67,-0.2601898430186511],[123,229,68,-0.2585673394621587],[123,229,69,-0.2568144710168734],[123,229,70,-0.25493206484838904],[123,229,71,-0.2529210863362502],[123,229,72,-0.2507826413393742],[123,229,73,-0.24851797846456603],[123,229,74,-0.24612849133794013],[123,229,75,-0.24361572087948746],[123,229,76,-0.24098135758062167],[123,229,77,-0.2382272437847507],[123,229,78,-0.23535537597089407],[123,229,79,-0.2323679070402963],[123,230,64,-0.26241325524703407],[123,230,65,-0.26116559662820793],[123,230,66,-0.25978661218590016],[123,230,67,-0.2582767294559287],[123,230,68,-0.25663650660760906],[123,230,69,-0.254866634680212],[123,230,70,-0.2529679398222575],[123,230,71,-0.25094138553371426],[123,230,72,-0.2487880749110658],[123,230,73,-0.24650925289532666],[123,230,74,-0.2441063085228221],[123,230,75,-0.24158077717897075],[123,230,76,-0.2389343428549039],[123,230,77,-0.23616884040696628],[123,230,78,-0.23328625781912127],[123,230,79,-0.23028873846820808],[123,231,64,-0.260469942205554],[123,231,65,-0.25920134343301104],[123,231,66,-0.2578021710654407],[123,231,67,-0.2562728541929231],[123,231,68,-0.25461395169300505],[123,231,69,-0.2528261544461041],[123,231,70,-0.25091028755359857],[123,231,71,-0.24886731255867223],[123,231,72,-0.24669832966987226],[123,231,73,-0.24440457998746823],[123,231,74,-0.24198744773242153],[123,231,75,-0.23944846247820695],[123,231,76,-0.23678930138531962],[123,231,77,-0.23401179143851225],[123,231,78,-0.2311179116867843],[123,231,79,-0.2281097954860729],[123,232,64,-0.2584391314366328],[123,232,65,-0.25714851315745246],[123,232,66,-0.25572811194883005],[123,232,67,-0.2541783585629658],[123,232,68,-0.2524998126495692],[123,232,69,-0.2506931649490777],[123,232,70,-0.2487592394883995],[123,232,71,-0.24669899577925003],[123,232,72,-0.24451353101904372],[123,232,73,-0.24220408229442492],[123,232,74,-0.2397720287872499],[123,232,75,-0.23721889398326124],[123,232,76,-0.23454634788328677],[123,232,77,-0.23175620921700935],[123,232,78,-0.22885044765932805],[123,232,79,-0.22583118604926167],[123,233,64,-0.2563211348886526],[123,233,65,-0.25500741580014386],[123,233,66,-0.25356474291718667],[123,233,67,-0.2519935487652192],[123,233,68,-0.2502943938331923],[123,233,69,-0.2484679687434611],[123,233,70,-0.2465150964240299],[123,233,71,-0.24443673428322155],[123,233,72,-0.24223397638673339],[123,233,73,-0.23990805563716555],[123,233,74,-0.23746034595582755],[123,233,75,-0.2348923644670715],[123,233,76,-0.23220577368497997],[123,233,77,-0.2294023837024558],[123,233,78,-0.2264841543827345],[123,233,79,-0.22345319755326953],[123,234,64,-0.25411641912235694],[123,234,65,-0.2527785176729064],[123,234,66,-0.2513125300037946],[123,234,67,-0.24971889052801433],[123,234,68,-0.2479981606439906],[123,234,69,-0.24615103088099566],[123,234,70,-0.24417832304673892],[123,234,71,-0.24208099237720537],[123,234,72,-0.23986012968870007],[123,234,73,-0.23751696353219076],[123,234,74,-0.2350528623497471],[123,234,75,-0.23246933663333136],[123,234,76,-0.2297680410857651],[123,234,77,-0.22695077678392028],[123,234,78,-0.2240194933441545],[123,234,79,-0.22097629108994243],[123,235,64,-0.2518256001744815],[123,235,65,-0.2504624362155625],[123,235,66,-0.24897209196188708],[123,235,67,-0.24735500383145737],[123,235,68,-0.24561173420556015],[123,235,69,-0.2437429735485559],[123,235,70,-0.24174954252965086],[123,235,71,-0.23963239414673543],[123,235,72,-0.23739261585223903],[123,235,73,-0.23503143168109564],[123,235,74,-0.2325502043806228],[123,235,75,-0.22995043754256106],[123,235,76,-0.22723377773710618],[123,235,77,-0.2244020166489752],[123,235,78,-0.22145709321553442],[123,235,79,-0.21840109576693123],[123,236,64,-0.24944943847936618],[123,236,65,-0.24805993486919453],[123,236,66,-0.24654419509136727],[123,236,67,-0.24490265768941943],[123,236,68,-0.24313588610404335],[123,236,69,-0.24124457076609218],[123,236,70,-0.23922953119137558],[123,236,71,-0.23709171807732043],[123,236,72,-0.2348322154014567],[123,236,73,-0.23245224252181518],[123,236,74,-0.22995315627904322],[123,236,75,-0.22733645310048678],[123,236,76,-0.22460377110606644],[123,236,77,-0.22175689221599493],[123,236,78,-0.21879774426035647],[123,236,79,-0.21572840309049912],[123,237,64,-0.246988833848503],[123,237,65,-0.2455719180078224],[123,237,66,-0.2440297481244097],[123,237,67,-0.24236276499085851],[123,237,68,-0.24057153318695546],[123,237,69,-0.23865674314474516],[123,237,70,-0.23661921321518153],[123,237,71,-0.234459891736438],[123,237,72,-0.23217985910383931],[123,237,73,-0.2297803298415],[123,237,74,-0.22726265467547446],[123,237,75,-0.22462832260866983],[123,237,76,-0.221878962997347],[123,237,77,-0.21901634762925803],[123,237,78,-0.21604239280344106],[123,237,79,-0.21295916141162163],[123,238,64,-0.24444482050795024],[123,238,65,-0.24299942592843382],[123,238,66,-0.24142979716988255],[123,238,67,-0.23973637740040343],[123,238,68,-0.2379197324217036],[123,238,69,-0.23598055270506024],[123,238,70,-0.23391965542866222],[123,238,71,-0.23173798651639632],[123,238,72,-0.22943662267804055],[123,238,73,-0.2270167734509504],[123,238,74,-0.22447978324304085],[123,238,75,-0.22182713337731985],[123,238,76,-0.2190604441377918],[123,238,77,-0.21618147681678734],[123,238,78,-0.21319213576373242],[123,238,79,-0.21009447043531215],[123,239,64,-0.2418185621937441],[123,239,65,-0.24034362989949554],[123,239,66,-0.2387455207167163],[123,239,67,-0.2370246803183368],[123,239,68,-0.23518167581393146],[123,239,69,-0.23321719775543903],[123,239,70,-0.2311320621440307],[123,239,71,-0.22892721243819913],[123,239,72,-0.22660372156303055],[123,239,73,-0.22416279392074845],[123,239,74,-0.22160576740232585],[123,239,75,-0.21893411540042795],[123,239,76,-0.21614944882350173],[123,239,77,-0.2132535181110654],[123,239,78,-0.21024821525021697],[123,239,79,-0.20713557579331165],[123,240,64,-0.23911134730519956],[123,240,65,-0.23760582726783863],[123,240,66,-0.2359782246961114],[123,240,67,-0.23422898789986113],[123,240,68,-0.2323586853855769],[123,240,69,-0.23036800783071498],[123,240,70,-0.22825777005892955],[123,240,71,-0.22602891301629735],[123,240,72,-0.22368250574848714],[123,240,73,-0.22121974737897132],[123,240,74,-0.2186419690880721],[123,240,75,-0.21595063609310483],[123,240,76,-0.21314734962943593],[123,240,77,-0.21023384893250818],[123,240,78,-0.20721201322085014],[123,240,79,-0.20408386368002462],[123,241,64,-0.2363245841161854],[123,241,65,-0.23478743662400292],[123,241,66,-0.23312933760267274],[123,241,67,-0.23135073813373963],[123,241,68,-0.2294522082127336],[123,241,69,-0.22743443869094127],[123,241,70,-0.2252982432178472],[123,241,71,-0.22304456018432317],[123,241,72,-0.2206744546665237],[123,241,73,-0.21818912037057814],[123,241,74,-0.2155898815778774],[123,241,75,-0.21287819509121497],[123,241,76,-0.21005565218159905],[123,241,77,-0.20712398053579162],[123,241,78,-0.20408504620458878],[123,241,79,-0.20094085555179653],[123,242,64,-0.23345979604425227],[123,242,65,-0.23188999302591862],[123,242,66,-0.2302004056743452],[123,242,67,-0.22839148798018638],[123,242,68,-0.2264638115231875],[123,242,69,-0.22441806738026593],[123,242,70,-0.2222550680340093],[123,242,71,-0.21997574928167163],[123,242,72,-0.2175811721446218],[123,242,73,-0.2150725247783396],[123,242,74,-0.21245112438275293],[123,242,75,-0.2097184191131769],[123,242,76,-0.20687598999167578],[123,242,77,-0.20392555281889635],[123,242,78,-0.200868960086393],[123,242,79,-0.19770820288939694],[123,243,64,-0.23051861697775855],[123,243,65,-0.22891514328107077],[123,243,66,-0.2271930881312989],[123,243,67,-0.2253529085681515],[123,243,68,-0.22339517785378127],[123,243,69,-0.22132058734604265],[123,243,70,-0.21912994837190247],[123,243,71,-0.21682419410108744],[123,243,72,-0.21440438141992446],[123,243,73,-0.21187169280546714],[123,243,74,-0.20922743819969947],[123,243,75,-0.2064730568840859],[123,243,76,-0.20361011935427686],[123,243,77,-0.2006403291950304],[123,243,78,-0.1975655249553604],[123,243,79,-0.1943876820238687],[123,244,64,-0.22750278666093027],[123,244,65,-0.2258646412870814],[123,244,66,-0.22410915247369934],[123,244,67,-0.22223678045194006],[123,244,68,-0.22024810026753883],[123,244,69,-0.21814380361811458],[123,244,70,-0.21592470069035907],[123,244,71,-0.2135917219971889],[123,244,72,-0.21114592021482192],[123,244,73,-0.20858847201986996],[123,244,74,-0.20592067992623597],[123,244,75,-0.2031439741220883],[123,244,76,-0.20025991430672152],[123,244,77,-0.19727019152735947],[123,244,78,-0.19417663001591723],[123,244,79,-0.19098118902567562],[123,245,64,-0.22441414613677424],[123,245,65,-0.22274034343063087],[123,245,66,-0.2209504698382796],[123,245,67,-0.2190449889270797],[123,245,68,-0.21702447763046573],[123,245,69,-0.21488962804818168],[123,245,70,-0.2126412492461195],[123,245,71,-0.21028026905584019],[123,245,72,-0.20780773587374102],[123,245,73,-0.20522482045995694],[123,245,74,-0.20253281773678777],[123,245,75,-0.19973314858692293],[123,245,76,-0.19682736165127157],[123,245,77,-0.19381713512645582],[123,245,78,-0.19070427856198358],[123,245,79,-0.18749073465705257],[123,246,64,-0.2212546332479951],[123,246,65,-0.21954420404486696],[123,246,66,-0.2177190104138682],[123,246,67,-0.2157795194055907],[123,246,68,-0.21372630994818453],[123,246,69,-0.21156007460941473],[123,246,70,-0.20928162135803186],[123,246,71,-0.20689187532453757],[123,246,72,-0.2043918805613043],[123,246,73,-0.20178280180214314],[123,246,74,-0.19906592622110464],[123,246,75,-0.1962426651907906],[123,246,76,-0.19331455603998038],[123,246,77,-0.19028326381063243],[123,246,78,-0.18715058301427345],[123,246,79,-0.18391843938773267],[123,247,64,-0.2180262781958462],[123,247,65,-0.21627827092523244],[123,247,66,-0.21441683891580154],[123,247,67,-0.21244245285058883],[123,247,68,-0.21035569376232843],[123,247,69,-0.20815725475623748],[123,247,70,-0.2058479427318134],[123,247,71,-0.2034286801037286],[123,247,72,-0.20090050652177938],[123,247,73,-0.1982645805899863],[123,247,74,-0.19552218158462586],[123,247,75,-0.19267471117147683],[123,247,76,-0.18972369512208176],[123,247,77,-0.18667078502908407],[123,247,78,-0.18351776002065578],[123,247,79,-0.18026652847396918],[123,248,64,-0.21473119915682737],[123,248,65,-0.21294468090362428],[123,248,66,-0.211046110119133],[123,248,67,-0.20903596127013102],[123,248,68,-0.20691481760660735],[123,248,69,-0.20468337284419114],[123,248,70,-0.20234243284528342],[123,248,71,-0.19989291729897762],[123,248,72,-0.1973358613997278],[123,248,73,-0.19467241752485953],[123,248,74,-0.19190385691070266],[123,248,75,-0.18903157132763349],[123,248,76,-0.1860570747538206],[123,248,77,-0.18298200504774165],[123,248,78,-0.17980812561947956],[123,248,79,-0.1765373271007562],[123,249,64,-0.21137159795739446],[123,249,65,-0.20954565548104886],[123,249,66,-0.20760906445080363],[123,249,67,-0.2055623032704701],[123,249,68,-0.20340595752271196],[123,249,69,-0.2011407216100478],[123,249,70,-0.1987674003942389],[123,249,71,-0.19628691083414807],[123,249,72,-0.19370028362202807],[123,249,73,-0.19100866481833645],[123,249,74,-0.18821331748485426],[123,249,75,-0.18531562331639617],[123,249,76,-0.1823170842709081],[123,249,77,-0.17921932419801656],[123,249,78,-0.17602409046604217],[123,249,79,-0.17273325558743136],[123,250,64,-0.20794975580660002],[123,250,65,-0.20608349651869362],[123,250,66,-0.2041080236406967],[123,250,67,-0.2020238196686419],[123,250,68,-0.19983147263597845],[123,250,69,-0.1975316777120939],[123,250,70,-0.19512523879889265],[123,250,71,-0.1926130701255202],[123,250,72,-0.18999619784118904],[123,250,73,-0.1872757616062054],[123,250,74,-0.18445301618097154],[123,250,75,-0.18152933301325413],[123,250,76,-0.17850620182351273],[123,250,77,-0.17538523218835345],[123,250,78,-0.17216815512211925],[123,250,79,-0.16885682465657315],[123,251,64,-0.20446802908657746],[123,251,65,-0.2025605819873264],[123,251,66,-0.20054538643148367],[123,251,67,-0.1984229291642886],[123,251,68,-0.19619380079071858],[123,251,69,-0.1938586973304891],[123,251,70,-0.19141842177077628],[123,251,71,-0.18887388561674745],[123,251,72,-0.18622611043985815],[123,251,73,-0.18347622942401454],[123,251,74,-0.18062548890937313],[123,251,75,-0.17767524993407313],[123,251,76,-0.17462698977369184],[123,251,77,-0.17148230347848847],[123,251,78,-0.16824290540844977],[123,251,79,-0.16491063076609203],[123,252,64,-0.20092884520104054],[123,252,65,-0.19897936177519449],[123,252,66,-0.19692362434743743],[123,252,67,-0.1947621240708991],[123,252,68,-0.19249545424539427],[123,252,69,-0.1901243118278808],[123,252,70,-0.1876494989402927],[123,252,71,-0.18507192437483633],[123,252,72,-0.18239260509670863],[123,252,73,-0.17961266774433504],[123,252,74,-0.17673335012689917],[123,252,75,-0.17375600271946057],[123,252,76,-0.17068209015544955],[123,252,77,-0.1675131927166058],[123,252,78,-0.16425100782037394],[123,252,79,-0.16089735150470807],[123,253,64,-0.1973346984817157],[123,253,65,-0.19534235355434193],[123,253,66,-0.19324527752212928],[123,253,67,-0.19104396610637808],[123,253,68,-0.1887390154275519],[123,253,69,-0.18633112347018865],[123,253,70,-0.18382109154483028],[123,253,71,-0.1812098257470618],[123,253,72,-0.17849833841361717],[123,253,73,-0.17568774957565303],[123,253,74,-0.17277928840895473],[123,253,75,-0.16977429468138228],[123,253,76,-0.16667422019733336],[123,253,77,-0.16348063023930093],[123,253,78,-0.16019520500652873],[123,253,79,-0.15681974105072483],[123,254,64,-0.1936881461526121],[123,254,65,-0.1916521387052471],[123,254,66,-0.18951295058491224],[123,254,67,-0.18727108224285027],[123,254,68,-0.18492713274841727],[123,254,69,-0.18248180120745777],[123,254,70,-0.1799358881773363],[123,254,71,-0.17729029707871458],[123,254,72,-0.17454603560403148],[123,254,73,-0.17170421712278716],[123,254,74,-0.16876606208339828],[123,254,75,-0.16573289941192637],[123,254,76,-0.16260616790746307],[123,254,77,-0.1593874176342437],[123,254,78,-0.156078311310497],[123,254,79,-0.1526806256939891],[123,255,64,-0.18999180435231144],[123,255,65,-0.1879113582999684],[123,255,66,-0.18572930860637626],[123,255,67,-0.18344616061588326],[123,255,68,-0.18106251647734006],[123,255,69,-0.17857907651497434],[123,255,70,-0.1759966405955467],[123,255,71,-0.17331610949187992],[123,255,72,-0.17053848624272028],[123,255,73,-0.16766487750902948],[123,255,74,-0.16469649492647387],[123,255,75,-0.16163465645441677],[123,255,76,-0.15848078772119412],[123,255,77,-0.15523642336574583],[123,255,78,-0.15190320837561122],[123,255,79,-0.1484828994212457],[123,256,64,-0.18624834421419068],[123,256,65,-0.18412270914370354],[123,256,66,-0.18189707310268716],[123,256,67,-0.1795719464930411],[123,256,68,-0.1771479346759981],[123,256,69,-0.17462573929455044],[123,256,70,-0.17200615959177434],[123,256,71,-0.16929009372514792],[123,256,72,-0.16647854007681728],[123,256,73,-0.16357259855991535],[123,256,74,-0.16057347192069327],[123,256,75,-0.1574824670367757],[123,256,76,-0.15430099621131765],[123,256,77,-0.15103057846313495],[123,256,78,-0.14767284081281784],[123,256,79,-0.14422951956478547],[123,257,64,-0.18246048800447912],[123,257,65,-0.18028893987467004],[123,257,66,-0.17801901809870824],[123,257,67,-0.17565123830166762],[123,257,68,-0.17318620919225725],[123,257,69,-0.170624633835873],[123,257,70,-0.1679673109231563],[123,257,71,-0.1652151360341555],[123,257,72,-0.1623691028980459],[123,257,73,-0.1594303046485137],[123,257,74,-0.1563999350745579],[123,257,75,-0.1532792898670312],[123,257,76,-0.15006976786068904],[123,257,77,-0.14677287227182312],[123,257,78,-0.1433902119314876],[123,257,79,-0.1399235025142762],[123,258,64,-0.17863100531833853],[123,258,65,-0.17641284712249228],[123,258,66,-0.174097966250097],[123,258,67,-0.17168688371609286],[123,258,68,-0.16918021171388575],[123,258,69,-0.1665786548381198],[123,258,70,-0.16388301130255678],[123,258,71,-0.16109417415315958],[123,258,72,-0.15821313247633584],[123,258,73,-0.1552409726024458],[123,258,74,-0.1521788793043296],[123,258,75,-0.14902813699117562],[123,258,76,-0.14579013089749482],[123,258,77,-0.1424663482672856],[123,258,78,-0.13905837953338818],[123,258,79,-0.13556791949199254],[123,259,64,-0.17476270933387628],[123,259,65,-0.172497271725008],[123,259,66,-0.17013678502428642],[123,259,67,-0.16768177580417065],[123,259,68,-0.16513285988202786],[123,259,69,-0.1624907434917437],[123,259,70,-0.15975622445003324],[123,259,71,-0.15693019331754665],[123,259,72,-0.15401363455472794],[123,259,73,-0.151007627672532],[123,259,74,-0.14791334837775116],[123,259,75,-0.144732069713276],[123,259,76,-0.1414651631930568],[123,259,77,-0.13811409993184387],[123,259,78,-0.13468045176971383],[123,259,79,-0.13116589239133936],[123,260,64,-0.1708584531239885],[123,260,65,-0.16854509500338677],[123,260,66,-0.16613838294024363],[123,260,67,-0.16363884923304112],[123,260,68,-0.16104711346432932],[123,260,69,-0.15836388362031917],[123,260,70,-0.15558995720475427],[123,260,71,-0.15272622234716593],[123,260,72,-0.1497736589054608],[123,260,73,-0.14673333956295587],[123,260,74,-0.1436064309196009],[123,260,75,-0.14039419457772417],[123,260,76,-0.13709798822206043],[123,260,77,-0.1337192666941422],[123,260,78,-0.13025958306106056],[123,260,79,-0.12672058967855332],[123,261,64,-0.16692112602623171],[123,261,65,-0.1645592350957631],[123,261,66,-0.1621057058672104],[123,261,67,-0.15956107653432117],[123,261,68,-0.15692597058792207],[123,261,69,-0.154201097882657],[123,261,70,-0.15138725569757916],[123,261,71,-0.14848532979070034],[123,261,72,-0.1454962954474508],[123,261,73,-0.14242121852316048],[123,261,74,-0.13926125647930343],[123,261,75,-0.13601765941384159],[123,261,76,-0.13269177108542557],[123,261,77,-0.12928502993153507],[123,261,78,-0.12579897008056384],[123,261,79,-0.1222352223578082],[123,262,64,-0.162953650070625],[123,262,65,-0.16054264334928559],[123,262,66,-0.15804173338232397],[123,262,67,-0.15545146442862473],[123,262,68,-0.15277246403216566],[123,262,69,-0.15000544403508964],[123,262,70,-0.1471512015841988],[123,262,71,-0.1442106201309719],[123,262,72,-0.14118467042506],[123,262,73,-0.13807441150137173],[123,262,74,-0.13488099166048645],[123,262,75,-0.13160564944273667],[123,262,76,-0.128249714595714],[123,262,77,-0.12481460903528147],[123,262,78,-0.12130184780009762],[123,262,79,-0.11771303999961241],[123,263,64,-0.1589589764652813],[123,263,65,-0.15649830077047738],[123,263,66,-0.15394947518701563],[123,263,67,-0.1513130502093059],[123,263,68,-0.1485896575810398],[123,263,69,-0.1457800112538129],[123,263,70,-0.14288490833872552],[123,263,71,-0.13990523005106847],[123,263,72,-0.136841942648044],[123,263,73,-0.1336960983596367],[123,263,74,-0.13046883631237088],[123,263,75,-0.12716138344629646],[123,263,76,-0.12377505542495754],[123,263,77,-0.12031125753842681],[123,263,78,-0.11677148559941031],[123,263,79,-0.11315732683238283],[123,264,64,-0.1549400821400797],[123,264,65,-0.1524292145341244],[123,264,66,-0.14983196758240397],[123,264,67,-0.14714889818564475],[123,264,68,-0.1443806424354105],[123,264,69,-0.14152791651751429],[123,264,70,-0.1385915176079614],[123,264,71,-0.13557232476152425],[123,264,72,-0.13247129979290656],[123,264,73,-0.12928948815060975],[123,264,74,-0.12602801978323203],[123,264,75,-0.12268810999855256],[123,264,76,-0.11927106031514612],[123,264,77,-0.11577825930661512],[123,264,78,-0.11221118343844494],[123,264,79,-0.10857139789743825],[123,265,64,-0.1508999663482012],[123,265,65,-0.1483384145505099],[123,265,66,-0.14569227000349866],[123,265,67,-0.14296209618529093],[123,265,68,-0.14014853368497943],[123,265,69,-0.13725230105009595],[123,265,70,-0.13427419562615223],[123,265,71,-0.13121509438835793],[123,265,72,-0.1280759547654703],[123,265,73,-0.12485781545588959],[123,265,74,-0.12156179723573013],[123,265,75,-0.11818910375921976],[123,265,76,-0.11474102235117356],[123,265,77,-0.1112189247916271],[123,265,78,-0.10762426809263748],[123,265,79,-0.10395859526720491],[123,266,64,-0.1468416473256613],[123,266,65,-0.14422895009113318],[123,266,66,-0.14153346161235586],[123,266,67,-0.13875575211610625],[123,266,68,-0.13589646684006484],[123,266,69,-0.132956326823636],[123,266,70,-0.12993612969037344],[123,266,71,-0.126836750422119],[123,266,72,-0.12365914212480833],[123,266,73,-0.120404336786058],[123,266,74,-0.117073446024263],[123,266,75,-0.11366766182955951],[123,266,76,-0.11018825729639564],[123,266,77,-0.10663658734779968],[123,266,78,-0.10301408945134849],[123,266,79,-0.09932228432679491],[123,267,64,-0.14276815900865886],[123,267,65,-0.14010388647272526],[123,267,66,-0.13735863794999453],[123,267,67,-0.13453299058721502],[123,267,68,-0.13162759442301486],[123,267,69,-0.12864317312139467],[123,267,70,-0.12558052469635056],[123,267,71,-0.1224405222277396],[123,267,72,-0.11922411456833903],[123,267,73,-0.11593232704221695],[123,267,74,-0.11256626213413762],[123,267,75,-0.10912710017036364],[123,267,76,-0.10561609999059246],[123,267,77,-0.10203459961111755],[123,267,78,-0.09838401687921927],[123,267,79,-0.09466585011874129],[123,268,64,-0.1386825478089566],[123,268,65,-0.1359663017997838],[123,268,66,-0.1331709076473005],[123,268,67,-0.13029694958948917],[123,268,68,-0.12734508261948696],[123,268,69,-0.12431603316109624],[123,268,70,-0.12121059973494891],[123,268,71,-0.11802965361543061],[123,268,72,-0.11477413947832082],[123,268,73,-0.11144507603926507],[123,268,74,-0.10804355668280102],[123,268,75,-0.10457075008230321],[123,268,76,-0.10102790081058144],[123,268,77,-0.09741632994122612],[123,268,78,-0.09373743564070108],[123,268,79,-0.08999269375114538],[123,269,64,-0.13458786944719348],[123,269,65,-0.13181928376552454],[123,269,66,-0.12897338919480972],[123,269,67,-0.1260507772353614],[123,269,68,-0.12305210798948296],[123,269,69,-0.11997811077837783],[123,269,70,-0.1168295847492219],[123,269,71,-0.11360739947251058],[123,269,72,-0.11031249552963401],[123,269,73,-0.10694588509079928],[123,269,74,-0.1035086524830171],[123,269,75,-0.10000195474852319],[123,269,76,-0.09642702219336441],[123,269,77,-0.09278515892624595],[123,269,78,-0.08907774338763952],[123,269,79,-0.08530622886911288],[123,270,64,-0.13048718584402036],[123,270,65,-0.12766592651113806],[123,270,66,-0.12476920777126638],[123,270,67,-0.1217976285578572],[123,270,68,-0.11875185423803225],[123,270,69,-0.11563261717029383],[123,270,70,-0.11244071725190569],[123,270,71,-0.10917702245605293],[123,270,72,-0.10584246935873765],[123,270,73,-0.10243806365552782],[123,270,74,-0.09896488066787462],[123,270,75,-0.09542406583937307],[123,270,76,-0.09181683522169243],[123,270,77,-0.08814447595027414],[123,270,78,-0.08440834670979613],[123,270,79,-0.08060987818936516],[123,271,64,-0.1263835620692717],[123,271,65,-0.12350932754356964],[123,271,66,-0.12056149213116613],[123,271,67,-0.1175406623690628],[123,271,68,-0.11444750904573836],[123,271,69,-0.11128276769909673],[123,271,70,-0.10804723910358305],[123,271,71,-0.10474178974657794],[123,271,72,-0.10136735229402694],[123,271,73,-0.09792492604542302],[123,271,74,-0.09441557737785455],[123,271,75,-0.09084044017949866],[123,271,76,-0.08720071627228121],[123,271,77,-0.08349767582380513],[123,271,78,-0.07973265774854316],[123,271,79,-0.07590707009825837],[123,272,64,-0.12228006334906555],[123,272,65,-0.11935258471171178],[123,272,66,-0.11635337155118158],[123,272,67,-0.1132830381779204],[123,272,68,-0.11014226095908336],[123,272,69,-0.10693177875618493],[123,272,70,-0.10365239335140658],[123,272,71,-0.10030496986267706],[123,272,72,-0.09689043714747836],[123,272,73,-0.09340978819549933],[123,272,74,-0.0898640805098449],[123,272,75,-0.08625443647718495],[123,272,76,-0.08258204372656125],[123,272,77,-0.07884815547695562],[123,272,78,-0.0750540908736147],[123,272,79,-0.07120123531309513],[123,273,64,-0.11817975213072957],[123,273,65,-0.11519879324090576],[123,273,66,-0.11214797283535927],[123,273,67,-0.10902791316724231],[123,273,68,-0.10583929634037798],[123,273,69,-0.10258286468610539],[123,273,70,-0.0992594211282673],[123,273,71,-0.09586982953645529],[123,273,72,-0.09241501506746785],[123,273,73,-0.0888959644951019],[123,273,74,-0.08531372652798402],[123,273,75,-0.08166941211582962],[123,273,76,-0.0779641947438442],[123,273,77,-0.07419931071537328],[123,273,78,-0.0703760594227929],[123,273,79,-0.06649580360660778],[123,274,64,-0.11408568520576079],[123,274,65,-0.11105104282596306],[123,274,66,-0.10794841737930516],[123,274,67,-0.10477843923016117],[123,274,68,-0.10154179637757704],[123,274,69,-0.0982392347708339],[123,274,70,-0.09487155861263319],[123,274,71,-0.09143963065001898],[123,274,72,-0.08794437245299136],[123,274,73,-0.08438676468093542],[123,274,74,-0.08076784733656578],[123,274,75,-0.07708872000778139],[123,274,76,-0.07335054209714148],[123,274,77,-0.06955453303906772],[123,274,78,-0.06570197250476928],[123,274,79,-0.06179420059485219],[123,275,64,-0.11000091089071579],[123,275,65,-0.10691241478260166],[123,275,66,-0.10375781829324943],[123,275,67,-0.10053776006590792],[123,275,68,-0.09725293415385244],[123,275,69,-0.09390409027422147],[123,275,70,-0.09049203404894696],[123,275,71,-0.08701762723289536],[123,275,72,-0.08348178792917249],[123,275,73,-0.07988549079171864],[123,275,74,-0.0762297672148905],[123,275,75,-0.0725157055104283],[123,275,76,-0.06874445107151633],[123,275,77,-0.06491720652404387],[123,275,78,-0.0610352318650611],[123,275,79,-0.05709984458839373],[123,276,64,-0.10592846626592517],[123,276,65,-0.10278597925719013],[123,276,66,-0.09957927758388485],[123,276,67,-0.09630900833480749],[123,276,68,-0.09297587177681044],[123,276,69,-0.0895806215464956],[123,276,70,-0.08612406482846846],[123,276,71,-0.08260706252027045],[123,276,72,-0.0790305293839429],[123,276,73,-0.07539543418434852],[123,276,74,-0.07170279981394534],[123,276,75,-0.06795370340441548],[123,276,76,-0.06414927642485291],[123,276,77,-0.06029070476661963],[123,276,78,-0.05637922881486357],[123,276,79,-0.05241614350666268],[123,277,64,-0.10187137447224287],[123,277,65,-0.09867479249501243],[123,277,66,-0.09541588339519264],[123,277,67,-0.09209530287271195],[123,277,68,-0.08871375756757677],[123,277,69,-0.08527200518903977],[123,277,70,-0.08177085463078831],[123,277,71,-0.07821116607227258],[123,277,72,-0.07459385106612565],[123,277,73,-0.07091987261180549],[123,277,74,-0.06719024521514627],[123,277,75,-0.0634060349342302],[123,277,76,-0.05956835941127725],[123,277,77,-0.05567838789066604],[123,277,78,-0.05173734122307694],[123,277,79,-0.04774649185572338],[123,278,64,-0.097832642065725],[123,278,65,-0.09458189416694673],[123,278,66,-0.09127070730814746],[123,278,67,-0.08789974596475986],[123,278,68,-0.08446972330963609],[123,278,69,-0.08098140127933778],[123,278,70,-0.07743559062589928],[123,278,71,-0.07383315095418658],[123,278,72,-0.07017499074480482],[123,278,73,-0.06646206736268362],[123,278,74,-0.06269538705102573],[123,278,75,-0.05887600491103395],[123,278,76,-0.055005024867111785],[123,278,77,-0.05108359961764919],[123,278,78,-0.04711293057138827],[123,278,79,-0.04309426776933217],[123,279,64,-0.09381525643013383],[123,279,65,-0.09051030475445276],[123,279,66,-0.08714680169919736],[123,279,67,-0.0837254206783552],[123,279,68,-0.08024688155731907],[123,279,69,-0.07671195065597503],[123,279,70,-0.07312144073671384],[123,279,71,-0.06947621097748835],[123,279,72,-0.06577716692986935],[123,279,73,-0.06202526046223139],[123,279,74,-0.05822148968774937],[123,279,75,-0.05436689887762708],[123,279,76,-0.050462578359246835],[123,279,77,-0.04650966439935733],[123,279,78,-0.042509339072289876],[123,279,79,-0.03846283011316859],[123,280,64,-0.08982218324747687],[123,280,65,-0.08646302299308034],[123,280,66,-0.08304719715772951],[123,280,67,-0.07957538825558269],[123,280,68,-0.07604832300415515],[123,280,69,-0.07246677226391612],[123,280,70,-0.06883155096225241],[123,280,71,-0.06514351800192303],[123,280,72,-0.061403576153958195],[123,280,73,-0.05761267193513281],[123,280,74,-0.053771795469696015],[123,280,75,-0.049881980335778286],[123,280,76,-0.045944303396164454],[123,280,77,-0.041959884613550213],[123,280,78,-0.0379298868502721],[123,280,79,-0.03385551565247702],[123,281,64,-0.08585636402647306],[123,281,65,-0.08244302337438891],[123,281,66,-0.0789748999624158],[123,281,67,-0.07545268556494827],[123,281,68,-0.0718771139109795],[123,281,69,-0.06824896055994761],[123,281,70,-0.0645690427613877],[123,281,71,-0.06083821929851485],[123,281,72,-0.0570573903156919],[123,281,73,-0.05322749712991276],[123,281,74,-0.049349522025979864],[123,281,75,-0.04542448803580146],[123,281,76,-0.04145345870149397],[123,281,77,-0.03743753782240844],[123,281,78,-0.03337786918607011],[123,281,79,-0.029275636282998174],[123,282,64,-0.08192071368884823],[123,282,65,-0.07845325370618073],[123,282,66,-0.07493288961633371],[123,282,67,-0.07136032261234193],[123,282,68,-0.0677362935936896],[123,282,69,-0.06406158297817904],[123,282,70,-0.060337010497038435],[123,282,71,-0.05656343497339722],[123,282,72,-0.05274175408408033],[123,282,73,-0.0488729041048554],[123,282,74,-0.04495785963880672],[123,282,75,-0.04099763332826695],[123,282,76,-0.03699327554998805],[123,282,77,-0.03294587409367178],[123,282,78,-0.028856553823849163],[123,282,79,-0.024726476325074853],[123,283,64,-0.07801811821366156],[123,283,65,-0.07449663273125029],[123,283,66,-0.07092411644107277],[123,283,67,-0.0673012801114341],[123,283,68,-0.06362887197086547],[123,283,69,-0.05990767745581882],[123,283,70,-0.05613851894103111],[123,283,71,-0.052322255452686706],[123,283,72,-0.04845978236432957],[123,283,73,-0.04455203107566047],[123,283,74,-0.04059996867388865],[123,283,75,-0.03660459757807577],[123,283,76,-0.03256695516614733],[123,283,77,-0.028488113384695757],[123,283,78,-0.02436917834156266],[123,283,79,-0.020211289881166883],[123,284,64,-0.07415143233956151],[123,284,65,-0.07057604780454785],[123,284,66,-0.06695149922971966],[123,284,67,-0.06327850711339833],[123,284,68,-0.05955782717114433],[123,284,69,-0.055790250019115195],[123,284,70,-0.051976600839518106],[123,284,71,-0.048117739028286866],[123,284,72,-0.044214557824935496],[123,284,73,-0.04026798392472414],[123,284,74,-0.036278977072803587],[123,284,75,-0.03224852964078112],[123,284,76,-0.028177666185378814],[123,284,77,-0.02406744298931046],[123,284,78,-0.01991894758436391],[123,284,79,-0.015733298256655925],[123,285,64,-0.07032347732487065],[123,285,65,-0.06669435262865511],[123,285,66,-0.06301792295862138],[123,285,67,-0.05929491869585746],[123,285,68,-0.05552610320024673],[123,285,69,-0.05171227242935736],[123,285,70,-0.047854254538847285],[123,285,71,-0.04395290946451594],[123,285,72,-0.04000912848595503],[123,285,73,-0.03602383377193458],[123,285,74,-0.031997977907188724],[123,285,75,-0.02793254340104609],[123,285,76,-0.023828542177574713],[123,285,77,-0.01968701504736811],[123,285,78,-0.01550903116095867],[123,285,79,-0.01129568744382592],[123,286,64,-0.06653703876570155],[123,286,65,-0.06285436504777847],[123,286,66,-0.05912623655813162],[123,286,67,-0.055353393711261856],[123,286,68,-0.05153660766786433],[123,286,69,-0.047676679889149726],[123,286,70,-0.04377444167209754],[123,286,71,-0.03983075366577543],[123,286,72,-0.035846505368675174],[123,286,73,-0.031822614607204175],[123,286,74,-0.027760026994991943],[123,286,75,-0.023659715373462786],[123,286,76,-0.01952267923333978],[123,286,77,-0.015349944117208802],[123,286,78,-0.011142561003128132],[123,286,79,-0.006901605669251465],[123,287,64,-0.06279486447199997],[123,287,65,-0.05905886490015316],[123,287,66,-0.05527925074223508],[123,287,67,-0.0514567725945928],[123,287,68,-0.04759220957430174],[123,287,69,-0.043686368808850184],[123,287,70,-0.03974008490617004],[123,287,71,-0.035754219405147974],[123,287,72,-0.03172966020656784],[123,287,73,-0.02766732098462485],[123,287,74,-0.023568140578666574],[123,287,75,-0.019433082365617887],[123,287,76,-0.01526313361275028],[123,287,77,-0.01105930481092654],[123,287,78,-0.006822628988305435],[123,287,79,-0.0025541610044748086],[123,288,64,-0.0590996624014217],[123,288,65,-0.05531059192876542],[123,288,66,-0.05147973589695379],[123,288,67,-0.04760785523029368],[123,288,68,-0.043695737156772885],[123,288,69,-0.03974419463307244],[123,288,70,-0.03575406574933451],[123,288,71,-0.03172621311382298],[123,288,72,-0.027661523217425904],[123,288,73,-0.023560905778142155],[123,288,74,-0.019425293065204158],[123,288,75,-0.015255639203298005],[123,288,76,-0.011052919456538024],[123,288,77,-0.006818129492328406],[123,288,78,-0.0025522846250960463],[123,288,79,0.001743580960137242],[123,289,64,-0.05545409865124634],[123,289,65,-0.051612243750596976],[123,289,66,-0.0477304200277433],[123,289,67,-0.04380939887863963],[123,289,68,-0.039849975795567094],[123,289,69,-0.03585296972746893],[123,289,70,-0.031819222419449095],[123,289,71,-0.027749597731570652],[123,289,72,-0.023644980936905008],[123,289,73,-0.019506277998973698],[123,289,74,-0.015334414828232862],[123,289,75,-0.011130336518064637],[123,289,76,-0.006895006559930472],[123,289,77,-0.002629406037819776],[123,289,78,0.0016654671980225466],[123,289,79,0.005988599378120657],[123,290,64,-0.05186079550815739],[123,290,65,-0.04796647388421951],[123,290,66,-0.04403398676570369],[123,290,67,-0.04006411616136868],[123,290,68,-0.03605766597990315],[123,290,69,-0.03201546132561198],[123,290,70,-0.02793834777266954],[123,290,71,-0.02382719061807828],[123,290,72,-0.019682874113282622],[123,290,73,-0.015506300674582196],[123,290,74,-0.011298390071989989],[123,290,75,-0.0070600785970053315],[123,290,76,-0.0027923182089522602],[123,290,77,0.0015039243399811164],[123,290,78,0.005827668401019587],[123,290,79,0.010177920346424674],[123,291,64,-0.048322329556012955],[123,291,65,-0.04437588983586599],[123,291,66,-0.04039307343273443],[123,291,67,-0.036374673106704364],[123,291,68,-0.03232150133360523],[123,291,69,-0.028234389536106658],[123,291,70,-0.024114187292783],[123,291,71,-0.01996176152528556],[123,291,72,-0.01577799566357274],[123,291,73,-0.01156378878934236],[123,291,74,-0.007320054757309513],[123,291,75,-0.003047721294803546],[123,291,76,0.0012522709206684302],[123,291,77,0.005578969205754181],[123,291,78,0.009931409837503291],[123,291,79,0.014308619041558612],[123,292,64,-0.044841229841444674],[123,292,65,-0.04084305124381227],[123,292,66,-0.036810269165463955],[123,292,67,-0.032743687253599274],[123,292,68,-0.02864412670042671],[123,292,69,-0.024512425409761424],[123,292,70,-0.020349437140989607],[123,292,71,-0.016156030630540358],[123,292,72,-0.011933088690814941],[123,292,73,-0.0076815072867193745],[123,292,74,-0.0034021945894400496],[123,292,75,9.039299920595156E-4],[123,292,76,0.0052359368021765995],[123,292,77,0.009592886952303509],[123,292,78,0.013973833356976134],[123,292,79,0.018377821792567445],[123,293,64,-0.041419976097479105],[123,293,65,-0.03737046808126804],[123,293,66,-0.03328811309815527],[123,293,67,-0.02917372581540298],[123,293,68,-0.02502813628922812],[123,293,69,-0.02085218906702377],[123,293,70,-0.016646742266342912],[123,293,71,-0.012412666630787772],[123,293,72,-0.008150844562753862],[123,293,73,-0.0038621691331762326],[123,293,74,4.5245693208693927E-4],[123,293,75,0.00479212228874866],[123,293,76,0.009155908033826307],[123,293,77,0.01354288878847322],[123,293,78,0.01795213380392728],[123,293,79,0.022382708090606745],[123,294,64,-0.03806099702508539],[123,294,65,-0.03396059891767818],[123,294,66,-0.02982909260448842],[123,294,67,-0.025667303902853794],[123,294,68,-0.021476071878908015],[123,294,69,-0.017256247885579043],[123,294,70,-0.013008694576744417],[123,294,71,-0.008734284897687322],[123,294,72,-0.0044339010518028715],[123,294,73,-1.0843344370321806E-4],[123,294,74,0.004241220401646817],[123,294,75,0.008614156943273957],[123,294,76,0.013009467752386247],[123,294,77,0.01742624066426393],[123,294,78,0.021863560953873207],[123,294,79,0.026320512535231128],[123,295,64,-0.03476666863256639],[123,295,65,-0.03061584923835091],[123,295,66,-0.026435641598134094],[123,295,67,-0.022226882806308093],[123,295,68,-0.017990421082998198],[123,295,69,-0.013727114748022864],[123,295,70,-0.009437831170403296],[123,295,71,-0.0051234456935675965],[123,295,72,-7.848405361985944E-4],[123,295,73,0.0035770963311246434],[123,295,74,0.007961472333863448],[123,295,75,0.01236739146553996],[123,295,76,0.01679395548421042],[123,295,77,0.021240265133246367],[123,295,78,0.02570542138644394],[123,295,79,0.030188526717491684],[123,296,64,-0.03153931263296758],[123,296,65,-0.02733856982258963],[123,296,66,-0.023110138892297988],[123,296,67,-0.01885486833738846],[123,296,68,-0.014573615674108281],[123,296,69,-0.010267246349793882],[123,296,70,-0.0059366326279488985],[123,296,71,-0.0015826524484088],[123,296,72,0.0027938117374584487],[123,296,73,0.007191874156365602],[123,296,74,0.011610646927906282],[123,296,75,0.01604924130404585],[123,296,76,0.020506768933673564],[123,296,77,0.024982343152070027],[123,296,78,0.02947508029531154],[123,296,79,0.03398410103963978],[123,297,64,-0.02838119489941214],[123,297,65,-0.024131055180235852],[123,297,66,-0.019854906618142543],[123,297,67,-0.01555360922995662],[123,297,68,-0.011228029968123207],[123,297,69,-0.006879041567270025],[123,297,70,-0.0025075213650987555],[123,297,71,0.001885649902245795],[123,297,72,0.006299589330380037],[123,297,73,0.010733413102307798],[123,297,74,0.015186237769844929],[123,297,75,0.019657181560341505],[123,297,76,0.024145365709075828],[123,297,77,0.028649915817172494],[123,297,78,0.03316996323506664],[123,297,79,0.03770464647154292],[123,298,64,-0.025294523978285036],[123,298,65,-0.020995542046543955],[123,298,66,-0.016672208702004393],[123,298,67,-0.01232539560032797],[123,298,68,-0.007955979268070151],[123,298,69,-0.0035648398859429373],[123,298,70,8.471399542042957E-4],[123,298,71,0.005279076518536506],[123,298,72,0.009730086226568443],[123,298,73,0.014199286972531297],[123,298,74,0.01868579947315014],[123,298,75,0.02318874864132698],[123,298,76,0.027707264986107268],[123,298,77,0.032240486038780054],[123,298,78,0.036787557805135124],[123,298,79,0.041347636243904834],[123,299,64,-0.022281449660428755],[123,299,65,-0.017934207935553628],[123,299,66,-0.013564249401577418],[123,299,67,-0.009172457466900347],[123,299,68,-0.0047597183678292215],[123,299,69,-3.2691988884771955E-4],[123,299,70,0.00412504994400701],[123,299,71,0.008595304196511215],[123,299,72,0.013082958386416467],[123,299,73,0.017587131870252903],[123,299,74,0.0221069492571564],[123,299,75,0.026641541849210332],[123,299,76,0.0311900491086831],[123,299,77,0.03575162015200995],[123,299,78,0.040325415270543175],[123,299,79,0.04491060747809801],[123,300,64,-0.01934406161026648],[123,300,65,-0.014949169751875026],[123,300,66,-0.010533171900973595],[123,300,67,-0.006096963329107544],[123,300,68,-0.0016414401155978031],[123,300,69,0.0028325021948436765],[123,300,70,0.007323969962004899],[123,300,71,0.011832072847419935],[123,300,72,0.016355925239021855],[123,300,73,0.020894647703047678],[123,300,74,0.02544736846358105],[123,300,75,0.030013224909218986],[123,300,76,0.034591365127247364],[123,300,77,0.03918094946517189],[123,300,78,0.043781152119629435],[123,300,79,0.048391162752706676],[123,301,64,-0.01648438805277799],[123,301,65,-0.012042482460808836],[123,301,66,-0.007581056964584332],[123,301,67,-0.0031010188056195126],[123,301,68,0.0013967259629711175],[123,301,69,0.0059112738811457725],[123,301,70,0.010441725514727367],[123,301,71,0.014987186916162677],[123,301,72,0.01954677111330036],[123,301,73,0.024119599626032117],[123,301,74,0.028704804011185595],[123,301,75,0.03330152743515134],[123,301,76,0.03790892627463167],[123,301,77,0.04252617174535665],[123,301,78,0.04715245155879276],[123,301,79,0.05178697160687069],[123,302,64,-0.013704394518483813],[123,302,65,-0.009216137816961116],[123,302,66,-0.004709921649903024],[123,302,67,-1.866653319521662E-4],[123,302,68,0.004352714981791106],[123,302,69,0.008907307762332183],[123,302,70,0.013476207602079245],[123,302,71,0.018058516738718985],[123,302,72,0.02265334660772393],[123,302,73,0.02725981942333365],[123,302,74,0.03187706978840232],[123,302,75,0.036504246332589974],[123,302,76,0.04114051337928913],[123,302,77,0.04578505264113032],[123,302,78,0.05043706494409246],[123,302,79,0.055095771980244644],[123,303,64,-0.011005982646354488],[123,303,65,-0.006472063151268118],[123,303,66,-0.0019217180792235025],[123,303,67,0.002644121082599802],[123,303,68,0.0072245279516128065],[123,303,69,0.011818582777846687],[123,303,70,0.016425374001328895],[123,303,71,0.021043999838650417],[123,303,72,0.025673569898775922],[123,303,73,0.030313206827939365],[123,303,74,0.03496204798401986],[123,303,75,0.03961924713987097],[123,303,76,0.04428397621599875],[123,303,77,0.04895542704243004],[123,303,78,0.053632813149798064],[123,303,79,0.05831537158967108],[123,304,64,-0.008390989044580698],[123,304,65,-0.0038121202163647833],[123,304,66,7.81667729853058E-4],[123,304,67,0.005389431038775467],[123,304,68,0.010010232977612277],[123,304,69,0.014643145425122198],[123,304,70,0.01928725049061353],[123,304,71,0.023941642162747457],[123,304,72,0.028605427988196427],[123,304,73,0.03327773077999792],[123,304,74,0.03795769035600255],[123,304,75,0.042644465306885],[123,304,76,0.04733723479411645],[123,304,77,0.052035200377738455],[123,304,78,0.056737587873965864],[123,304,79,0.061443649242644525],[123,305,64,-0.0058611842093437075],[123,305,65,-0.0012381040904396803],[123,305,66,0.0033984169749575605],[123,305,67,0.008047422871758185],[123,305,68,0.012707966397147615],[123,305,69,0.017379110910157734],[123,305,70,0.02205993201180912],[123,305,71,0.02674951925566657],[123,305,72,0.03144697788886073],[123,305,73,0.036151430623415685],[123,305,74,0.04086201943828295],[123,305,75,0.045577907411547866],[123,305,76,0.05029828058320933],[123,305,77,0.0550223498483716],[123,305,78,0.059749352880876336],[123,305,79,0.06447855608740029],[123,306,64,-0.003418271501512287],[123,306,65,0.0012482578604990913],[123,306,66,0.005926779120615962],[123,306,67,0.010616323716262636],[123,306,68,0.01531593385776333],[123,306,69,0.02002466423793236],[123,306,70,0.02474158377284616],[123,306,71,0.029465777373638882],[123,306,72,0.034196347749374065],[123,306,73,0.03893241724083159],[123,306,74,0.043673129685612884],[123,306,75,0.04841765231402678],[123,306,76,0.05316517767615975],[123,306,77,0.057914925599968047],[123,306,78,0.06266614518042024],[123,306,79,0.06741811679971553],[123,307,64,-0.001063886181205613],[123,307,65,0.00364530696200846],[123,307,66,0.008365072891097412],[123,307,67,0.013094430512360582],[123,307,68,0.017832411335506032],[123,307,69,0.02257806124272132],[123,307,70,0.027330442289536225],[123,307,71,0.03208863453731768],[123,307,72,0.03685173791744999],[123,307,73,0.041618874127038324],[123,307,74,0.04638918855654134],[123,307,75,0.0511618522487914],[123,307,76,0.05593606388980933],[123,307,77,0.06071105183124954],[123,307,78,0.0654860761445048],[123,307,79,0.07026043070649554],[123,308,64,0.0012004054996487823],[123,308,65,0.00595145415211424],[123,308,66,0.010711687204315277],[123,308,67,0.01548011095191161],[123,308,68,0.020255746093415114],[123,308,69,0.025037629558176178],[123,308,70,0.0298248163667698],[123,308,71,0.03461638152362198],[123,308,72,0.039411421941928745],[123,308,73,0.04420905840070502],[123,308,74,0.049008437534372784],[123,308,75,0.05380873385434162],[123,308,76,0.05860915180299321],[123,308,77,0.06340892783990262],[123,308,78,0.06820733256032782],[123,308,79,0.07300367284599084],[123,309,64,0.003373107146831228],[123,309,65,0.008165180843804506],[123,309,66,0.012965082046851581],[123,309,67,0.017771804365669608],[123,309,68,0.02258435758026095],[123,309,69,0.02740176952724202],[123,309,70,0.03222308801915946],[123,309,71,0.03704738279665193],[123,309,72,0.04187374751351118],[123,309,73,0.04670130175447755],[123,309,74,0.051529193086183006],[123,309,75,0.0563565991406904],[123,309,76,0.06118272973204353],[123,309,77,0.06600682900566043],[123,309,78,0.07082817762059995],[123,309,79,0.07564609496472664],[123,310,64,0.005452793015473523],[123,310,65,0.010285039729166875],[123,310,66,0.015123789290160172],[123,310,67,0.019968022551122372],[123,310,68,0.024816738269588065],[123,310,69,0.02966895505197073],[123,310,70,0.03452371333118788],[123,310,71,0.0393800773777364],[123,310,72,0.04423713734427086],[123,310,73,0.049094011343520066],[123,310,74,0.05394984755995659],[123,310,75,0.05880382639466519],[123,310,76,0.06365516264382699],[123,310,77,0.06850310771065053],[123,310,78,0.07334695185078098],[123,310,79,0.07818602645121106],[123,311,64,0.007438108743713923],[123,311,65,0.012309655525051352],[123,311,66,0.017186413447829382],[123,311,67,0.022067350540941735],[123,311,68,0.026951454438939648],[123,311,69,0.031837734383104],[123,311,70,0.03672522325673326],[123,311,71,0.04161297965448309],[123,311,72,0.046500089985811385],[123,311,73,0.05138567061236289],[123,311,74,0.056268870019709816],[123,311,75,0.06114887102289242],[123,311,76,0.06602489300617811],[123,311,77,0.07089619419686902],[123,311,78,0.07576207397318994],[123,311,79,0.08062187520628022],[123,312,64,0.00932777202842687],[123,312,65,0.014237725660323775],[123,312,66,0.019151632373968122],[123,312,67,0.02406844731211072],[123,312,68,0.028987146889330115],[123,312,69,0.03390673084949475],[123,312,70,0.038826224358040756],[123,312,71,0.04374468012890145],[123,312,72,0.04866118058614155],[123,312,73,0.053574840060130705],[123,312,74,0.058484807018673535],[123,312,75,0.06339026633253828],[123,312,76,0.06829044157580416],[123,312,77,0.07318459736085706],[123,312,78,0.07807204170806503],[123,312,79,0.08295212845015773],[123,313,64,0.011120573243072487],[123,313,65,0.016068020904754468],[123,313,66,0.021018197902764282],[123,313,67,0.025970046435776065],[123,313,68,0.03092253160501557],[123,313,69,0.03587464352741665],[123,313,70,0.04082539948419149],[123,313,71,0.04577384610464953],[123,313,72,0.05071906158531875],[123,313,73,0.05566015794420154],[123,313,74,0.060596283310587584],[123,313,75,0.06552662424985906],[123,313,76,0.07045040812371398],[123,313,77,0.07536690548563371],[123,313,78,0.08027543251162841],[123,313,79,0.08517535346628285],[123,314,64,0.012815375997559858],[123,314,65,0.017799385939436196],[123,314,66,0.02278493642910312],[123,314,67,0.0277709566677129],[123,314,68,0.03275640035344654],[123,314,69,0.03774024784964508],[123,314,70,0.04272150838894989],[123,314,71,0.0476992223132858],[123,314,72,0.05267246334974118],[123,314,73,0.057640340922176375],[123,314,74,0.06260200249898432],[123,314,75,0.0675566359764373],[123,314,76,0.07250347209804611],[123,314,77,0.07744178690975811],[123,314,78,0.08237090425102722],[123,314,79,0.08729019828177906],[123,315,64,0.014411117640213883],[123,315,65,0.019430739868820796],[123,315,66,0.02445074943034084],[123,315,67,0.029470062479497766],[123,315,68,0.03448762122550114],[123,315,69,0.03950239615440876],[123,315,70,0.04451338828809043],[123,315,71,0.049519631479625764],[123,315,72,0.05452019474519043],[123,315,73,0.059514184632260964],[123,315,74,0.0645007476245652],[123,315,75,0.06947907258320807],[123,315,76,0.07444839322440228],[123,315,77,0.07940799063362855],[123,315,78,0.08435719581625989],[123,315,79,0.08929539228467165],[123,316,64,0.015906809701783514],[123,316,65,0.02096107667431238],[123,316,66,0.026014613929167513],[123,316,67,0.031066324530323375],[123,316,68,0.0361151391159307],[123,316,69,0.04116001817414308],[123,316,70,0.04619995435613383],[123,316,71,0.051233974826135065],[123,316,72,0.056261143648552836],[123,316,73,0.06128056421198905],[123,316,74,0.06629138169059756],[123,316,75,0.0712927855422027],[123,316,76,0.07628401204361152],[123,316,77,0.08126434686294334],[123,316,78,0.08623312766901131],[123,316,79,0.09118974677777822],[123,317,64,0.017301538281566803],[123,317,65,0.02238946560949362],[123,317,66,0.027475582897638212],[123,317,67,0.032558780079535055],[123,317,68,0.03763797614409939],[123,317,69,0.0427121214641282],[123,317,70,0.04778020016257692],[123,317,71,0.05284123251644246],[123,317,72,0.05789427739830752],[123,317,73,0.06293843475537453],[123,317,74,0.06797284812642104],[123,317,75,0.07299670719609963],[123,317,76,0.07800925038701717],[123,317,77,0.08300976748941588],[123,317,78,0.08799760232849083],[123,317,79,0.09297215546936619],[123,318,64,0.018594464375561892],[123,318,65,0.023715051536892517],[123,318,66,0.028832785602278588],[123,318,67,0.03394654333979394],[123,318,68,0.039055232014920976],[123,318,69,0.04415779177091325],[123,318,70,0.049253198047515684],[123,318,71,0.05434046403787243],[123,318,72,0.05941864318367587],[123,318,73,0.06448683170838668],[123,318,74,0.06954417118895631],[123,318,75,0.0745898511654742],[123,318,76,0.07962311178917578],[123,318,77,0.08464324650863259],[123,318,78,0.08964960479415995],[123,318,79,0.09464159490046431],[123,319,64,0.019784824146696356],[123,319,65,0.02493705520634304],[123,319,66,0.030085427890316707],[123,319,67,0.03522880577091872],[123,319,68,0.04036608432004582],[123,319,69,0.04549619334058058],[123,319,70,0.05061809943671727],[123,319,71,0.055730808523052205],[123,319,72,0.0608333683724919],[123,319,73,0.06592487120280846],[123,319,74,0.07100445630227634],[123,319,75,0.07607131269380832],[123,319,76,0.0811246818380306],[123,319,77,0.08616386037511634],[123,319,78,0.0911882029054138],[123,319,79,0.09619712480889095],[124,-64,64,-0.1564207053065021],[124,-64,65,-0.16034838843851795],[124,-64,66,-0.16415229717357516],[124,-64,67,-0.1678309835822278],[124,-64,68,-0.17138316806062048],[124,-64,69,-0.1748077452492477],[124,-64,70,-0.17810379001688237],[124,-64,71,-0.1812705635095655],[124,-64,72,-0.18430751926467537],[124,-64,73,-0.18721430938998807],[124,-64,74,-0.1899907908079781],[124,-64,75,-0.19263703156501277],[124,-64,76,-0.19515331720571938],[124,-64,77,-0.19754015721238427],[124,-64,78,-0.19979829150944517],[124,-64,79,-0.20192869703304872],[124,-63,64,-0.1509934720752869],[124,-63,65,-0.1549095763428714],[124,-63,66,-0.15870244277480494],[124,-63,67,-0.1623706209119884],[124,-63,68,-0.1659128281062997],[124,-63,69,-0.16932795543182966],[124,-63,70,-0.17261507366129625],[124,-63,71,-0.17577343930753986],[124,-63,72,-0.17880250073011217],[124,-63,73,-0.18170190430686572],[124,-63,74,-0.1844715006708052],[124,-63,75,-0.18711135101184317],[124,-63,76,-0.189621733443742],[124,-63,77,-0.19200314943610708],[124,-63,78,-0.19425633031148282],[124,-63,79,-0.19638224380753022],[124,-62,64,-0.14548135672841145],[124,-62,65,-0.14938510445181752],[124,-62,66,-0.15316617952095757],[124,-62,67,-0.15682312884223726],[124,-62,68,-0.16035466659024122],[124,-62,69,-0.16375968011098063],[124,-62,70,-0.1670372358903337],[124,-62,71,-0.17018658558758037],[124,-62,72,-0.1732071721340439],[124,-62,73,-0.17609863589675157],[124,-62,74,-0.178860820907367],[124,-62,75,-0.18149378115604342],[124,-62,76,-0.18399778695047853],[124,-62,77,-0.18637333134003065],[124,-62,78,-0.18862113660495827],[124,-62,79,-0.1907421608107509],[124,-61,64,-0.1398886034936314],[124,-61,65,-0.14377922424055822],[124,-61,66,-0.14754776582634488],[124,-61,67,-0.1511927724194002],[124,-61,68,-0.1547129548856302],[124,-61,69,-0.15810719668323459],[124,-61,70,-0.16137455982271776],[124,-61,71,-0.16451429089200076],[124,-61,72,-0.16752582714665964],[124,-61,73,-0.17040880266519332],[124,-61,74,-0.17316305456958037],[124,-61,75,-0.175788629310768],[124,-61,76,-0.17828578901937897],[124,-61,77,-0.18065501792149163],[124,-61,78,-0.18289702881956071],[124,-61,79,-0.18501276963843938],[124,-60,64,-0.13421950527163184],[124,-60,65,-0.13809623636361934],[124,-60,66,-0.14185150977243877],[124,-60,67,-0.1454838668264118],[124,-60,68,-0.14899201495310432],[124,-60,69,-0.15237483356522374],[124,-60,70,-0.1556313800117387],[124,-60,71,-0.1587608955941202],[124,-60,72,-0.16176281164771833],[124,-60,73,-0.16463675568818537],[124,-60,74,-0.16738255762319854],[124,-60,75,-0.1700002560291316],[124,-60,76,-0.17249010449295676],[124,-60,77,-0.1748525780192347],[124,-60,78,-0.17708837950225798],[124,-60,79,-0.17919844626330872],[124,-59,64,-0.12847839878709788],[124,-59,65,-0.13234048579623914],[124,-59,66,-0.13608176423998142],[124,-59,67,-0.1397007725059447],[124,-59,68,-0.1431962144555049],[124,-59,69,-0.14656696530034308],[124,-59,70,-0.14981207754422765],[124,-59,71,-0.15293078698993257],[124,-59,72,-0.15592251881130392],[124,-59,73,-0.15878689369038868],[124,-59,74,-0.1615237340198723],[124,-59,75,-0.16413307017048484],[124,-59,76,-0.1666151468236443],[124,-59,77,-0.1689704293692097],[124,-59,78,-0.17119961036839026],[124,-59,79,-0.17330361608179579],[124,-58,64,-0.12266965961391585],[124,-58,65,-0.12651635684940854],[124,-58,66,-0.13024292191428688],[124,-58,67,-0.13384789015639198],[124,-58,68,-0.13732996174495227],[124,-58,69,-0.14068800753733823],[124,-58,70,-0.14392107501106544],[124,-58,71,-0.14702839426094427],[124,-58,72,-0.15000938406139408],[124,-58,73,-0.15286365799383006],[124,-58,74,-0.15559103063937618],[124,-58,75,-0.15819152383655488],[124,-58,76,-0.16066537300423311],[124,-58,77,-0.16301303352968544],[124,-58,78,-0.1652351872218325],[124,-58,79,-0.16733274882963012],[124,-57,64,-0.11679769707481535],[124,-57,65,-0.12062826805887794],[124,-57,66,-0.12433941016404748],[124,-57,67,-0.12792965560091185],[124,-57,68,-0.13139770072256474],[124,-57,69,-0.1347424118811288],[124,-57,70,-0.13796283134953924],[124,-57,71,-0.14105818330849051],[124,-57,72,-0.14402787989855625],[124,-57,73,-0.14687152733739772],[124,-57,74,-0.1495889321023115],[124,-57,75,-0.15218010717776664],[124,-57,76,-0.15464527836820863],[124,-57,77,-0.15698489067599897],[124,-57,78,-0.15919961474453936],[124,-57,79,-0.16129035336655795],[124,-56,64,-0.11086694901530869],[124,-56,65,-0.1146806669479794],[124,-56,66,-0.11837568579349778],[124,-56,67,-0.12195053452938798],[124,-56,68,-0.12540390557066916],[124,-56,69,-0.12873466061571825],[124,-56,70,-0.13194183655740166],[124,-56,71,-0.13502465145938491],[124,-56,72,-0.13798251059762834],[124,-56,73,-0.1408150125669847],[124,-56,74,-0.14352195545314583],[124,-56,75,-0.1461033430695955],[124,-56,76,-0.14855939125984108],[124,-56,77,-0.15089053426478993],[124,-56,78,-0.15309743115532748],[124,-56,79,-0.15518097233007033],[124,-55,64,-0.10488187645177693],[124,-55,65,-0.10867802466411614],[124,-55,66,-0.11235622966778624],[124,-55,67,-0.1159150171131561],[124,-55,68,-0.11935307535735451],[124,-55,69,-0.12266926129904332],[124,-55,70,-0.12586260627847778],[124,-55,71,-0.12893232204274785],[124,-55,72,-0.13187780677622607],[124,-55,73,-0.13469865119612634],[124,-55,74,-0.13739464471342544],[124,-55,75,-0.13996578165880236],[124,-55,76,-0.1424122675738695],[124,-55,77,-0.1447345255675615],[124,-55,78,-0.14693320273773913],[124,-55,79,-0.14900917665797686],[124,-54,64,-0.09884695809399813],[124,-54,65,-0.10262483048921922],[124,-54,66,-0.1062855412118523],[124,-54,67,-0.10982761249279493],[124,-54,68,-0.11324972851366355],[124,-54,69,-0.11655074123005749],[124,-54,70,-0.11972967626012376],[124,-54,71,-0.12278573883831823],[124,-54,72,-0.12571831983438042],[124,-54,73,-0.12852700183743693],[124,-54,74,-0.13121156530547418],[124,-54,75,-0.13377199477984703],[124,-54,76,-0.13620848516508732],[124,-54,77,-0.1385214480738851],[124,-54,78,-0.14071151823729366],[124,-54,79,-0.14277955998013714],[124,-53,64,-0.09276668474197491],[124,-53,65,-0.09652558622402396],[124,-53,66,-0.10016813278266301],[124,-53,67,-0.10369284313883587],[124,-53,68,-0.10709839718328651],[124,-53,69,-0.11038364178790638],[124,-53,70,-0.11354759668238967],[124,-53,71,-0.11658946039609963],[124,-53,72,-0.11950861626516196],[124,-53,73,-0.12230463850469442],[124,-53,74,-0.12497729834642302],[124,-53,75,-0.12752657024134084],[124,-53,76,-0.1299526381276832],[124,-53,77,-0.13225590176408608],[124,-53,78,-0.13443698312797947],[124,-53,79,-0.1364967328791944],[124,-52,64,-0.08664555355690384],[124,-52,65,-0.09038480044600739],[124,-52,66,-0.09400852391465375],[124,-52,67,-0.09751523908523185],[124,-52,68,-0.10090362144458453],[124,-52,69,-0.10417251264303429],[124,-52,70,-0.10732092635872292],[124,-52,71,-0.11034805422717986],[124,-52,72,-0.11325327183612344],[124,-52,73,-0.11603614478541657],[124,-52,74,-0.1186964348124141],[124,-52,75,-0.12123410598236972],[124,-52,76,-0.12364933094416952],[124,-52,77,-0.12594249725125783],[124,-52,78,-0.1281142137478145],[124,-52,79,-0.13016531702015444],[124,-51,64,-0.08048806220658955],[124,-51,65,-0.084206982641295],[124,-51,66,-0.0878112354386752],[124,-51,67,-0.09129933203589458],[124,-51,68,-0.09466994340526169],[124,-51,69,-0.09792190584053018],[124,-51,70,-0.10105422680853038],[124,-51,71,-0.10406609086603646],[124,-51,72,-0.10695686564188178],[124,-51,73,-0.10972610788423576],[124,-51,74,-0.11237356957328903],[124,-51,75,-0.11489920409900656],[124,-51,76,-0.11730317250421773],[124,-51,77,-0.11958584979291476],[124,-51,78,-0.12174783130380828],[124,-51,79,-0.12378993914912195],[124,-50,64,-0.0742987028851615],[124,-50,65,-0.07799663721039063],[124,-50,66,-0.08158078347430431],[124,-50,67,-0.08504964934415415],[124,-50,68,-0.08840190116953428],[124,-50,69,-0.09163636975556855],[124,-50,70,-0.09475205620144322],[124,-50,71,-0.0977481378041819],[124,-50,72,-0.10062397402768286],[124,-50,73,-0.10337911253692877],[124,-50,74,-0.1060132952976156],[124,-50,75,-0.10852646474085825],[124,-50,76,-0.11091876999325012],[124,-50,77,-0.11319057317213566],[124,-50,78,-0.1153424557461562],[124,-50,79,-0.11737522496104336],[124,-49,64,-0.06808195620692503],[124,-49,65,-0.07175825734756025],[124,-49,66,-0.07532167329535011],[124,-49,67,-0.07877070786496931],[124,-49,68,-0.08210402267762873],[124,-49,69,-0.08532044292077157],[124,-49,70,-0.08841896317311826],[124,-49,71,-0.09139875329496938],[124,-49,72,-0.0942591643837819],[124,-49,73,-0.09699973479492674],[124,-49,74,-0.09962019622787532],[124,-49,75,-0.10212047987748041],[124,-49,76,-0.10450072265061161],[124,-49,77,-0.106761273448024],[124,-49,78,-0.10890269951150622],[124,-49,79,-0.11092579283628767],[124,-48,64,-0.06184228497466426],[124,-48,65,-0.06549631879419371],[124,-48,66,-0.06903839306887727],[124,-48,67,-0.07246700768021441],[124,-48,68,-0.07578081941793502],[124,-48,69,-0.07897864772582253],[124,-48,70,-0.08205948051290335],[124,-48,71,-0.08502248002990043],[124,-48,72,-0.08786698881097044],[124,-48,73,-0.09059253568063474],[124,-48,74,-0.09319884182615157],[124,-48,75,-0.09568582693498673],[124,-48,76,-0.09805361539765822],[124,-48,77,-0.10030254257581717],[124,-48,78,-0.10243316113562406],[124,-48,79,-0.10444624744639097],[124,-47,64,-0.05558412782224398],[124,-47,65,-0.059215273465981544],[124,-47,66,-0.06273540746758322],[124,-47,67,-0.06614302569688335],[124,-47,68,-0.06943678001164744],[124,-47,69,-0.07261548398916329],[124,-47,70,-0.07567811872320218],[124,-47,71,-0.07862383868625789],[124,-47,72,-0.08145197765707701],[124,-47,73,-0.08416205471339944],[124,-47,74,-0.08675378029014003],[124,-47,75,-0.08922706230268918],[124,-47,76,-0.0915820123355926],[124,-47,77,-0.09381895189647926],[124,-47,78,-0.09593841873529363],[124,-47,79,-0.09794117322880624],[124,-46,64,-0.04931189273134595],[124,-46,65,-0.05291954295375212],[124,-46,66,-0.05641715115537893],[124,-46,67,-0.05980320911804615],[124,-46,68,-0.06307636366974279],[124,-46,69,-0.06623542240162139],[124,-46,70,-0.06927935945037711],[124,-46,71,-0.07220732134591012],[124,-46,72,-0.07501863292429423],[124,-46,73,-0.07771280330595998],[124,-46,74,-0.08028953193933464],[124,-46,75,-0.0827487147096082],[124,-46,76,-0.08509045011288863],[124,-46,77,-0.08731504549561508],[124,-46,78,-0.08942302335928887],[124,-46,79,-0.09141512773048666],[124,-45,64,-0.043029950422658114],[124,-45,65,-0.04661351189828156],[124,-45,66,-0.05008802214647745],[124,-45,67,-0.0534519687868823],[124,-45,68,-0.05670399352260591],[124,-45,69,-0.059842897842282694],[124,-45,70,-0.06286764878751405],[124,-45,71,-0.0657773847856099],[124,-45,72,-0.0685714215476384],[124,-45,73,-0.07124925803170545],[124,-45,74,-0.07381058247170058],[124,-45,75,-0.07625527847117552],[124,-45,76,-0.07858343116262367],[124,-45,77,-0.08079533343203027],[124,-45,78,-0.08289149220874237],[124,-45,79,-0.08487263482063878],[124,-44,64,-0.036742627621364154],[124,-44,65,-0.04030152123892439],[124,-44,66,-0.04375237503784912],[124,-44,67,-0.04709367240363127],[124,-44,68,-0.050324049822153105],[124,-44,69,-0.05344230256645299],[124,-44,70,-0.056447390448891355],[124,-44,71,-0.05933844363862428],[124,-44,72,-0.062114768544399346],[124,-44,73,-0.06477585376258621],[124,-44,74,-0.06732137609068345],[124,-44,75,-0.06975120660597067],[124,-44,76,-0.07206541680956835],[124,-44,77,-0.07426428483577785],[124,-44,78,-0.07634830172675233],[124,-44,79,-0.0783181777724764],[124,-43,64,-0.030454200196762038],[124,-43,65,-0.033987861335897596],[124,-43,66,-0.037414514114865294],[124,-43,67,-0.040732637615294],[124,-43,68,-0.04394086301628097],[124,-43,69,-0.04703797926554487],[124,-43,70,-0.0500229388159793],[124,-43,71,-0.05289486342753047],[124,-43,72,-0.0556530500344008],[124,-43,73,-0.05829697667750011],[124,-43,74,-0.06082630850237958],[124,-43,75,-0.06324090382232295],[124,-43,76,-0.0655408202468517],[124,-43,77,-0.06772632087552122],[124,-43,78,-0.06979788055705771],[124,-43,79,-0.07175619221381146],[124,-42,64,-0.024168886176344162],[124,-42,65,-0.027676764966544143],[124,-42,66,-0.03107868633046529],[124,-42,67,-0.03437312497841416],[124,-42,68,-0.03755870669597394],[124,-42,69,-0.040634213999213076],[124,-42,70,-0.04359859185531123],[124,-42,71,-0.046450953468510914],[124,-42,72,-0.049190586131407366],[124,-42,73,-0.05181695714149592],[124,-42,74,-0.05432971978320744],[124,-42,75,-0.05672871937511237],[124,-42,76,-0.059013999382549254],[124,-42,77,-0.06118580759554948],[124,-42,78,-0.06324460237211327],[124,-42,79,-0.06519105894681232],[124,-41,64,-0.017890838634166073],[124,-41,65,-0.021372400195410646],[124,-41,66,-0.024749074157674467],[124,-41,67,-0.028019330794772368],[124,-41,68,-0.031181790414897326],[124,-41,69,-0.03423522899957554],[124,-41,70,-0.03717858390804629],[124,-41,71,-0.040010959646973876],[124,-41,72,-0.04273163370550903],[124,-41,73,-0.045340062455617614],[124,-41,74,-0.04783588711790032],[124,-41,75,-0.05021893979259573],[124,-41,76,-0.05248924955601353],[124,-41,77,-0.05464704862227221],[124,-41,78,-0.05669277857039867],[124,-41,79,-0.05862709663676213],[124,-40,64,-0.011624138453358746],[124,-40,65,-0.015078863117987007],[124,-40,66,-0.01842978831532671],[124,-40,67,-0.021675379819837248],[124,-40,68,-0.02481425238133006],[124,-40,69,-0.02784517534736508],[124,-40,70,-0.030767078351077615],[124,-40,71,-0.03357905706434772],[124,-40,72,-0.03628037901632697],[124,-40,73,-0.0388704894772377],[124,-40,74,-0.04134901740767705],[124,-40,75,-0.04371578147310917],[124,-40,76,-0.04597079612379529],[124,-40,77,-0.048114277740039846],[124,-40,78,-0.05014665084280323],[124,-40,79,-0.052068554369658626],[124,-39,64,-0.005372786963087184],[124,-39,65,-0.00880017047841486],[124,-39,66,-0.012124860367294321],[124,-39,67,-0.015345317844288608],[124,-39,68,-0.018460152022742427],[124,-39,69,-0.021468125520322623],[124,-39,70,-0.02436816012999754],[124,-39,71,-0.027159342556367094],[124,-39,72,-0.029840930217356454],[124,-39,73,-0.03241235711119328],[124,-39,74,-0.03487323974889578],[124,-39,75,-0.037223383151956835],[124,-39,76,-0.03946278691547356],[124,-39,77,-0.041591651336605584],[124,-39,78,-0.04361038360839942],[124,-39,79,-0.0455196040789736],[124,-38,64,8.593015501877632E-4],[124,-38,65,-0.0025402521610219386],[124,-38,66,-0.005838235195083863],[124,-38,67,-0.009033104148461368],[124,-38,68,-0.012123462422871545],[124,-38,69,-0.015108065813684068],[124,-38,70,-0.01798582816376726],[124,-38,71,-0.020755827082689637],[124,-38,72,-0.023417309731297076],[124,-38,73,-0.025969698671578056],[124,-38,74,-0.028412597782047966],[124,-38,75,-0.030745798238338007],[124,-38,76,-0.03296928455923953],[124,-38,77,-0.035083240718076],[124,-38,78,-0.03708805631946366],[124,-38,79,-0.03898433284142366],[124,-37,64,0.007068307457317902],[124,-37,65,0.003697056444493696],[124,-37,66,4.26236656376644E-4],[124,-37,67,-0.002742603829540391],[124,-37,68,-0.005808062631125321],[124,-37,69,-0.008768888632589844],[124,-37,70,-0.011623987620921206],[124,-37,71,-0.014372427987683456],[124,-37,72,-0.017013446496195184],[124,-37,73,-0.019546454114008682],[124,-37,74,-0.021971041910910816],[124,-37,75,-0.024286987022139828],[124,-37,76,-0.026494258677060678],[124,-37,77,-0.028593024293181446],[124,-37,78,-0.03058365563555898],[124,-37,79,-0.032466735041569716],[124,-36,64,0.013250513526600227],[124,-36,65,0.009908022203882094],[124,-36,66,0.006664806759414277],[124,-36,67,0.0035224199981505055],[124,-36,68,4.8227015534141326E-4],[124,-36,69,-0.002454384656759956],[124,-36,70,-0.005286442067654273],[124,-36,71,-0.008012961132724206],[124,-36,72,-0.010633168082748612],[124,-36,73,-0.013146462138724502],[124,-36,74,-0.015552421392218685],[124,-36,75,-0.01785080875094036],[124,-36,76,-0.02004157794978234],[124,-36,77,-0.02212487962720855],[124,-36,78,-0.024101067467038217],[124,-36,79,-0.025970704405604006],[124,-35,64,0.019402312789720932],[124,-35,65,0.016089022125447938],[124,-35,66,0.012873836711036812],[124,-35,67,0.009758314130047907],[124,-35,68,0.006743868537166353],[124,-35,69,0.0038317651228477745],[124,-35,70,0.001023114512499368],[124,-35,71,-0.001681132899718496],[124,-35,72,-0.004280192682484807],[124,-35,73,-0.006773452164225313],[124,-35,74,-0.0091604762955525],[124,-35,75,-0.011441013576939607],[124,-35,76,-0.013615002051864944],[124,-35,77,-0.0156825753653127],[124,-35,78,-0.01764406888767467],[124,-35,79,-0.019500025904034435],[124,-34,64,0.025520216533300943],[124,-34,65,0.022236551373239433],[124,-34,66,0.019049806166897332],[124,-34,67,0.015961543325233363],[124,-34,68,0.01297318298572181],[124,-34,69,0.01008599749518957],[124,-34,70,0.007301105827181353],[124,-34,71,0.004619467933938082],[124,-34,72,0.002041879032975147],[124,-34,73,-4.310361716590716E-4],[124,-34,74,-0.002798829333667263],[124,-34,75,-0.005061234374024837],[124,-34,76,-0.00721817345598097],[124,-34,77,-0.009269763025419375],[124,-34,78,-0.011216319916630857],[124,-34,79,-0.013058367523471004],[124,-33,64,0.03160086241631632],[124,-33,65,0.028347231406588458],[124,-33,66,0.025189321002074716],[124,-33,67,0.02212869848756971],[124,-33,68,0.019166790043737114],[124,-33,69,0.016304875248373984],[124,-33,70,0.013544081512198658],[124,-33,71,0.010885378449244643],[124,-33,72,0.00832957218184982],[124,-33,73,0.005877299580316575],[124,-33,74,0.0035290224370260193],[124,-33,75,0.001285021575306744],[124,-33,76,-8.546091071818251E-4],[124,-33,77,-0.0028899686604320074],[124,-33,78,-0.0048213551694885615],[124,-33,79,-0.006649271907240739],[124,-32,64,0.037641022713071015],[124,-32,65,0.03441781824568302],[124,-32,66,0.03128912159834185],[124,-32,67,0.0282565049737713],[124,-32,68,0.025321400653274817],[124,-32,69,0.022485095516655673],[124,-32,70,0.019748725496655073],[124,-32,71,0.017113269967991895],[124,-32,72,0.014579546070989768],[124,-32,73,0.012148202969869293],[124,-32,74,0.009819716045489701],[124,-32,75,0.007594381022837493],[124,-32,76,0.0054723080330254525],[124,-32,77,0.0034534156099168545],[124,-32,78,0.0015374246213289977],[124,-32,79,-2.7614786516338974E-4],[124,-31,64,0.04363761268187205],[124,-31,65,0.04044521086331965],[124,-31,66,0.03734609125807631],[124,-31,67,0.03434183102855515],[124,-31,68,0.03143386861121222],[124,-31,69,0.028623498255341384],[124,-31,70,0.02591186449638283],[124,-31,71,0.02329995656382533],[124,-31,72,0.020788602723690985],[124,-31,73,0.018378464555679486],[124,-31,74,0.016070031164756804],[124,-31,75,0.013863613327484092],[124,-31,76,0.011759337572850526],[124,-31,77,0.009757140197727998],[124,-31,78,0.00785676121689749],[124,-31,79,0.006057738247669531],[124,-30,64,0.0495876990595675],[124,-30,65,0.04642645970299719],[124,-30,66,0.0433572647449727],[124,-30,67,0.04038169634703703],[124,-30,68,0.03750119915239036],[124,-30,69,0.034717074843769735],[124,-30,70,0.032030476635833915],[124,-30,71,0.02944240370213813],[124,-30,72,0.026953695536687805],[124,-30,73,0.02456502625014234],[124,-30,74,0.022276898800461686],[124,-30,75,0.02008963915828421],[124,-30,76,0.018003390406807207],[124,-30,77,0.01601810677627913],[124,-30,78,0.014133547613061515],[124,-30,79,0.01234927128327834],[124,-29,64,0.055488508681628246],[124,-29,65,0.052358775323033346],[124,-29,66,0.049319836951235985],[124,-29,67,0.046373280764048896],[124,-29,68,0.04352055766010998],[124,-29,69,0.04076297681603991],[124,-29,70,0.038101700198106214],[124,-29,71,0.035537737008469295],[124,-29,72,0.03307193806600295],[124,-29,73,0.030704990121759312],[124,-29,74,0.02843741010887224],[124,-29,75,0.026269539327186786],[124,-29,76,0.0242015375623843],[124,-29,77,0.022233377139716515],[124,-29,78,0.02036483691230262],[124,-29,79,0.018595496184009686],[124,-28,64,0.061337437227942715],[124,-28,65,0.058239537166872246],[124,-28,66,0.05523117169142533],[124,-28,67,0.052313933070550656],[124,-28,68,0.04948927850414031],[124,-28,69,0.046758524719660244],[124,-28,70,0.044122842503279025],[124,-28,71,0.04158325116557715],[124,-28,72,0.039140612941822805],[124,-28,73,0.03679562732688857],[124,-28,74,0.03454882534460213],[124,-28,75,0.03240056375181699],[124,-28,76,0.03035101917697458],[124,-28,77,0.028400182193270784],[124,-28,78,0.02654785132637949],[124,-28,79,0.02479362699675547],[124,-27,64,0.06713205809446343],[124,-27,65,0.06406630245972122],[124,-27,66,0.061088810623091905],[124,-27,67,0.058201179957273474],[124,-27,68,0.05540487400638772],[124,-27,69,0.0527012171022605],[124,-27,70,0.0500913889151976],[124,-27,71,0.04757641893933384],[124,-27,72,0.045157180912546724],[124,-27,73,0.04283438717100374],[124,-27,74,0.04060858293814307],[124,-27,75,0.038480140548363684],[124,-27,76,0.03644925360520879],[124,-27,77,0.03451593107414341],[124,-27,78,0.03267999130988819],[124,-27,79,0.03094105601832642],[124,-26,64,0.07287013139040699],[124,-26,65,0.06983681523122265],[124,-26,66,0.06689048229390526],[124,-26,67,0.06403273508529694],[124,-26,68,0.061265043533917485],[124,-26,69,0.0585887396260647],[124,-26,70,0.056005011976404395],[124,-26,71,0.05351490033313344],[124,-26,72,0.05111929001769899],[124,-26,73,0.04881890629914898],[124,-26,74,0.04661430870291128],[124,-26,75,0.04450588525427923],[124,-26,76,0.04249384665638223],[124,-26,77,0.04057822040275072],[124,-26,78,0.03875884482443004],[124,-26,79,0.03703536307166433],[124,-25,64,0.0785496130611616],[124,-25,65,0.07554901546430814],[124,-25,66,0.0726341113154253],[124,-25,67,0.06980650828371104],[124,-25,68,0.0670676827194866],[124,-25,69,0.06441897431027521],[124,-25,70,0.061861580671370264],[124,-25,71,0.05939655187096937],[124,-25,72,0.057024784889862734],[124,-25,73,0.05474701801574733],[124,-25,74,0.052563825171965894],[124,-25,75,0.05047561018094837],[124,-25,76,0.048482600962134303],[124,-25,77,0.046584843664485676],[124,-25,78,0.04478219673354422],[124,-25,79,0.04307432491305363],[124,-24,64,0.08416866413704693],[124,-24,65,0.08120104837038478],[124,-24,66,0.07831782766366702],[124,-24,67,0.07552061487451456],[124,-24,68,0.07281089280973352],[124,-24,69,0.07019000890152427],[124,-24,70,0.06765916981817799],[124,-24,71,0.065219436009334],[124,-24,72,0.06287171618578746],[124,-24,73,0.06061676173391939],[124,-24,74,0.05845516106454862],[124,-24,75,0.05638733389648021],[124,-24,76,0.05441352547453293],[124,-24,77,0.05253380072215219],[124,-24,78,0.05074803832856334],[124,-24,79,0.0490559247704887],[124,-23,64,0.08972566010762872],[124,-23,65,0.08679127379055585],[124,-23,66,0.08393997610615822],[124,-23,67,0.08117338512444527],[124,-23,68,0.07849299014072453],[124,-23,69,0.07590014637208342],[124,-23,70,0.07339606958835321],[124,-23,71,0.07098183067763308],[124,-23,72,0.06865835014636079],[124,-23,73,0.06642639255399807],[124,-23,74,0.06428656088214024],[124,-23,75,0.062239290838314254],[124,-23,76,0.060284845094253914],[124,-23,77,0.058423307458756124],[124,-23,78,0.056654576985076366],[124,-23,79,0.05497836201287998],[124,-22,64,0.09521920042174004],[124,-22,65,0.0923182757230252],[124,-22,66,0.08949912575564023],[124,-22,67,0.08676337382389654],[124,-22,68,0.0841125157410102],[124,-22,69,0.08154791454598831],[124,-22,70,0.07907079515499404],[124,-22,71,0.07668223894726989],[124,-22,72,0.07438317828560181],[124,-22,73,0.07217439097139833],[124,-22,74,0.07005649463418617],[124,-22,75,0.06802994105579474],[124,-22,76,0.06609501042901134],[124,-22,77,0.06425180555081755],[124,-22,78,0.06250024595015746],[124,-22,79,0.060840061950260926],[124,-21,64,0.10064811811335761],[124,-21,65,0.09778087197683571],[124,-21,66,0.09499407975056451],[124,-21,67,0.09228936999307125],[124,-21,68,0.08966824506234083],[124,-21,69,0.08713207585322968],[124,-21,70,0.08468209646935765],[124,-21,71,0.08231939882955197],[124,-21,72,0.08004492720883072],[124,-21,73,0.07785947271399707],[124,-21,74,0.07576366769364884],[124,-21,75,0.0737579800828706],[124,-21,76,0.07184270768239753],[124,-21,77,0.07001797237235297],[124,-21,78,0.06828371426051749],[124,-21,79,0.06663968576515056],[124,-20,64,0.10601148955302553],[124,-20,65,0.1031781239516325],[124,-20,66,0.100423885062074],[124,-20,67,0.09775040671506163],[124,-20,68,0.09515919783773086],[124,-20,69,0.09265163721169611],[124,-20,70,0.09022896816558257],[124,-20,71,0.08789229320210645],[124,-20,72,0.08564256855969365],[124,-20,73,0.08348059870870284],[124,-20,74,0.08140703078206535],[124,-20,75,0.07942234894060185],[124,-20,76,0.07752686867280767],[124,-20,77,0.07572073102921106],[124,-20,78,0.0740038967912584],[124,-20,79,0.07237614057474906],[124,-19,64,0.11130864432499699],[124,-19,65,0.1085093465436251],[124,-19,66,0.1057878424276395],[124,-19,67,0.10314577109602485],[124,-19,68,0.1005846480670447],[124,-19,69,0.09810586003704402],[124,-19,70,0.09571065959372604],[124,-19,71,0.09340015986397687],[124,-19,72,0.09117532909622283],[124,-19,73,0.089036985177392],[124,-19,74,0.08698579008428942],[124,-19,75,0.08502224426964455],[124,-19,76,0.08314668098262867],[124,-19,77,0.08135926052393738],[124,-19,78,0.07965996443540191],[124,-19,79,0.07804858962414518],[124,-18,64,0.1165391752302184],[124,-18,65,0.11377411817786787],[124,-18,66,0.11108551641148001],[124,-18,67,0.10847501435258611],[124,-18,68,0.10594413413023096],[124,-18,69,0.10349427038062042],[124,-18,70,0.10112668498124222],[124,-18,71,0.09884250171952969],[124,-18,72,0.09664270089605853],[124,-18,73,0.09452811386234306],[124,-18,74,0.09249941749304502],[124,-18,75,0.0905571285928527],[124,-18,76,0.08870159823782453],[124,-18,77,0.08693300605129994],[124,-18,78,0.08525135441433218],[124,-18,79,0.08365646261066706],[124,-17,64,0.12170294841486873],[124,-17,65,0.11897229096657502],[124,-17,66,0.11631674559147431],[124,-17,67,0.11373796202617248],[124,-17,68,0.11123746902791076],[124,-17,69,0.10881666919514654],[124,-17,70,0.10647683372260563],[124,-17,71,0.10421909709087662],[124,-17,72,0.10204445169053566],[124,-17,73,0.09995374238086707],[124,-17,74,0.09794766098299601],[124,-17,75,0.0960267407076889],[124,-17,76,0.09419135051761507],[124,-17,77,0.09244168942417441],[124,-17,78,0.0907777807188449],[124,-17,79,0.08919946613907315],[124,-16,64,0.1268001136246245],[124,-16,65,0.12410400099364016],[124,-16,66,0.1214816528727356],[124,-16,67,0.11893472432445251],[124,-16,68,0.11646475074949669],[124,-16,69,0.11407314272833402],[124,-16,70,0.11176118079725617],[124,-16,71,0.10953001015898611],[124,-16,72,0.10738063532781184],[124,-16,73,0.1053139147093135],[124,-16,74,0.10333055511450318],[124,-16,75,0.10143110620862583],[124,-16,76,0.09961595489442443],[124,-16,77,0.09788531962996472],[124,-16,78,0.09623924468098155],[124,-16,79,0.09467759430776268],[124,-15,64,0.13183111458473906],[124,-15,65,0.1291696787254486],[124,-15,66,0.12658065592794354],[124,-15,67,0.12406570658997396],[124,-15,68,0.12162637276893062],[124,-15,69,0.11926407304452824],[124,-15,70,0.11698009731595793],[124,-15,71,0.11477560153357802],[124,-15,72,0.11265160236512961],[124,-15,73,0.11060897179654572],[124,-15,74,0.10864843166716964],[124,-15,75,0.10677054813963383],[124,-15,76,0.10497572610420025],[124,-15,77,0.10326420351765941],[124,-15,78,0.10163604567674756],[124,-15,79,0.10009113942610248],[124,-14,64,0.13679669950571638],[124,-14,65,0.13417005954776107],[124,-14,66,0.131614477764203],[124,-14,67,0.1291316198957715],[124,-14,68,0.1267230346678173],[124,-14,69,0.1243901486741501],[124,-14,70,0.12213426119534232],[124,-14,71,0.11995653895157099],[124,-14,72,0.11785801078998326],[124,-14,73,0.11583956230665116],[124,-14,74,0.11390193040293728],[124,-14,75,0.11204569777651763],[124,-14,76,0.11027128734686364],[124,-14,77,0.10857895661528338],[124,-14,78,0.10696879195947728],[124,-14,79,0.10544070286263141],[124,-13,64,0.14169793171467393],[124,-13,65,0.13910619442876748],[124,-13,66,0.13658415741653518],[124,-13,67,0.1341334917680449],[124,-13,68,0.1317557528860498],[124,-13,69,0.12945237539103505],[124,-13,70,0.1272246679607355],[124,-13,71,0.12507380810418478],[124,-13,72,0.12300083687028984],[124,-13,73,0.12100665349099193],[124,-13,74,0.11909200995883829],[124,-13,75,0.11725750553920744],[124,-13,76,0.11550358121699456],[124,-13,77,0.11383051407785227],[124,-13,78,0.11223841162394721],[124,-13,79,0.11072720602425024],[124,-12,64,0.14653620041254822],[124,-12,65,0.1439794607084598],[124,-12,66,0.1414910607681471],[124,-12,67,0.13907267703606196],[124,-12,68,0.13672587160008254],[124,-12,69,0.13445208711782652],[124,-12,70,0.13225264167742834],[124,-12,71,0.13012872359285133],[124,-12,72,0.12808138613372244],[124,-12,73,0.1261115421897513],[124,-12,74,0.12421995886955972],[124,-12,75,0.12240725203416347],[124,-12,76,0.12067388076491303],[124,-12,77,0.11902014176598685],[124,-12,78,0.1174461637014016],[124,-12,79,0.1159519014665531],[124,-11,64,0.1513132315568595],[124,-11,65,0.14879157301404278],[124,-11,66,0.14633689149720008],[124,-11,67,0.14395086880899643],[124,-11,68,0.1416350737285661],[124,-11,69,0.13939095695913262],[124,-11,70,0.13721984601009496],[124,-11,71,0.13512294001364622],[124,-11,72,0.1331013044759135],[124,-11,73,0.13115586596268103],[124,-11,74,0.1292874067195251],[124,-11,75,0.12749655922659542],[124,-11,76,0.12578380068785833],[124,-11,77,0.12414944745489065],[124,-11,78,0.1225936493851878],[124,-11,79,0.12111638413500314],[124,-10,64,0.15603109887026312],[124,-10,65,0.15354459430161138],[124,-10,66,0.15112370215030269],[124,-10,67,0.14877010957993753],[124,-10,68,0.1464853920655711],[124,-10,69,0.14427100836268036],[124,-10,70,0.14212829541059724],[124,-10,71,0.14005846317047255],[124,-10,72,0.13806258939776173],[124,-10,73,0.13614161434929017],[124,-10,74,0.13429633542473274],[124,-10,75,0.13252740174273647],[124,-10,76,0.1308353086515045],[124,-10,77,0.12922039217393044],[124,-10,78,0.12768282338724524],[124,-10,79,0.1262226027371952],[124,-9,64,0.16069223497473273],[124,-9,65,0.15824094702393632],[124,-9,66,0.15585390534257326],[124,-9,67,0.15353280245690526],[124,-9,68,0.15127922054124576],[124,-9,69,0.1490946264083064],[124,-9,70,0.14698036643401058],[124,-9,71,0.14493766141683717],[124,-9,72,0.14296760137168285],[124,-9,73,0.14107114025830658],[124,-9,74,0.13924909064418434],[124,-9,75,0.13750211830200887],[124,-9,76,0.13583073674164803],[124,-9,77,0.13423530167665254],[124,-9,78,0.1327160054252784],[124,-9,79,0.13127287124603537],[124,-8,64,0.16529944265156937],[124,-8,65,0.16288342442455483],[124,-8,66,0.1605302850844681],[124,-8,67,0.15824172252107782],[124,-8,68,0.156019325610107],[124,-8,69,0.15386456922498704],[124,-8,70,0.15177880918307884],[124,-8,71,0.14976327712642268],[124,-8,72,0.14781907533700844],[124,-8,73,0.14594717148662317],[124,-8,74,0.1441483933211135],[124,-8,75,0.1424234232792876],[124,-8,76,0.140772793046277],[124,-8,77,0.13919687804144898],[124,-8,78,0.13769589184082875],[124,-8,79,0.1362698805340513],[124,-7,64,0.1698559062270053],[124,-7,65,0.16747520195793575],[124,-7,66,0.1651560082351421],[124,-7,67,0.1629000283119888],[124,-7,68,0.16070885776672494],[124,-7,69,0.15858397953566705],[124,-7,70,0.15652675888085132],[124,-7,71,0.15453843829221348],[124,-7,72,0.15262013232428695],[124,-7,73,0.15077282236748035],[124,-7,74,0.14899735135376713],[124,-7,75,0.1472944183970144],[124,-7,76,0.14566457336777394],[124,-7,77,0.14410821140261865],[124,-7,78,0.14262556734799114],[124,-7,79,0.14121671013858172],[124,-6,64,0.1743652030835099],[124,-6,65,0.17201984883582333],[124,-6,66,0.169734636082449],[124,-6,67,0.16751127343980854],[124,-6,68,0.1653513631889132],[124,-6,69,0.16325639632999756],[124,-6,70,0.1612277475716194],[124,-6,71,0.15926667025428642],[124,-6,72,0.15737429120860413],[124,-6,73,0.15555160554799796],[124,-6,74,0.1537994713958506],[124,-6,75,0.15211860454727777],[124,-6,76,0.1505095730653635],[124,-6,77,0.14897279181194212],[124,-6,78,0.14750851691289246],[124,-6,79,0.14611684015796034],[124,-5,64,0.17883131529691998],[124,-5,65,0.17652133969988382],[124,-5,66,0.17427013604970676],[124,-5,67,0.17207941832482987],[124,-5,68,0.16995079550854975],[124,-5,69,0.16788576666511246],[124,-5,70,0.16588571595027501],[124,-5,71,0.16395190755639688],[124,-5,72,0.1620854805920472],[124,-5,73,0.16028744389618776],[124,-5,74,0.1585586707867741],[124,-5,75,0.1568998937439896],[124,-5,76,0.15531169902794106],[124,-5,77,0.1537945212309021],[124,-5,78,0.15234863776406593],[124,-5,79,0.15097416327882685],[124,-4,64,0.18325864139914794],[124,-4,65,0.18098406642041198],[124,-4,66,0.1787668935289768],[124,-4,67,0.17660884206391203],[124,-4,68,0.17451152770977674],[124,-4,69,0.1724764575941845],[124,-4,70,0.17050502531984002],[124,-4,71,0.16859850593110048],[124,-4,72,0.16675805081505657],[124,-4,73,0.164984682537187],[124,-4,74,0.16327928961143134],[124,-4,75,0.16164262120489492],[124,-4,76,0.16007528177701713],[124,-4,77,0.15857772565328387],[124,-4,78,0.1571502515334522],[124,-4,79,0.15579299693430226],[124,-3,64,0.187652008266611],[124,-3,65,0.18541285002123087],[124,-3,66,0.1832297238410029],[124,-3,67,0.18110435442402262],[124,-3,68,0.17903836415472119],[124,-3,69,0.17703326822291265],[124,-3,70,0.17509046967730824],[124,-3,71,0.17321125441355834],[124,-3,72,0.17139678609681397],[124,-3,73,0.16964810101885897],[124,-3,74,0.1679661028896633],[124,-3,75,0.1663515575635669],[124,-3,76,0.1648050876999264],[124,-3,77,0.16332716735830632],[124,-3,78,0.161918116528183],[124,-3,79,0.1605780955931736],[124,-2,64,0.19201668313446718],[124,-2,65,0.1898129527308825],[124,-2,66,0.18766388432189796],[124,-2,67,0.18557120796297055],[124,-2,68,0.18353655273683345],[124,-2,69,0.1815614418940268],[124,-2,70,0.17964728792789653],[124,-2,71,0.17779538758412128],[124,-2,72,0.176006916804758],[124,-2,73,0.17428292560685754],[124,-2,74,0.17262433289550372],[124,-2,75,0.17103192121148003],[124,-2,76,0.16950633141339988],[124,-2,77,0.1680480572943831],[124,-2,78,0.1666574401332418],[124,-2,79,0.16533466318019419],[124,-1,64,0.1963583857364467],[124,-1,65,0.19419009015988997],[124,-1,66,0.19207508653636107],[124,-1,67,0.19001511027711182],[124,-1,68,0.1880117971616171],[124,-1,69,0.18606667849959257],[124,-1,70,0.18418117622748076],[124,-1,71,0.18235659793946568],[124,-1,72,0.1805941318530041],[124,-1,73,0.1788948417089289],[124,-1,74,0.17725966160597562],[124,-1,75,0.1756893907699344],[124,-1,76,0.17418468825726896],[124,-1,77,0.17274606759327826],[124,-1,78,0.17137389134476944],[124,-1,79,0.17006836562725858],[124,0,64,0.20068330057038775],[124,0,65,0.19855044360420127],[124,0,66,0.19646950861753887],[124,0,67,0.1944422363761389],[124,0,68,0.1924702693548681],[124,0,69,0.19055514692122877],[124,0,70,0.18869830045333147],[124,0,71,0.18690104839239863],[124,0,72,0.18516459122978457],[124,0,73,0.18349000642856605],[124,0,74,0.18187824327955682],[124,0,75,0.18033011769194962],[124,0,76,0.1788463069184204],[124,0,77,0.17742734421478012],[124,0,78,0.1760736134341354],[124,0,79,0.17478534355557673],[124,1,64,0.2049980892895884],[124,1,65,0.20290067247493082],[124,1,66,0.20085380773364336],[124,1,67,0.1988592411850688],[124,1,68,0.19691862199853682],[124,1,69,0.1950334975983531],[124,1,70,0.19320530880326414],[124,1,71,0.19143538490044876],[124,1,72,0.18972493865402607],[124,1,73,0.18807506124813456],[124,1,74,0.186486717164436],[124,1,75,0.1849607389942447],[124,1,76,0.1834978221851209],[124,1,77,0.18209851972201074],[124,1,78,0.18076323674289574],[124,1,79,0.17949222508896856],[124,2,64,0.21793240612990017],[124,2,65,0.2159413114965255],[124,2,66,0.21399665932964895],[124,2,67,0.21210021180791594],[124,2,68,0.21025363818244036],[124,2,69,0.2084585100462597],[124,2,70,0.20671629653826584],[124,2,71,0.20502835948166154],[124,2,72,0.2033959484569361],[124,2,73,0.20182019580940802],[124,2,74,0.20030211159119782],[124,2,75,0.19884257843782138],[124,2,76,0.19744234637925107],[124,2,77,0.19610202758551942],[124,2,78,0.19482209104683657],[124,2,79,0.19360285718823267],[124,3,64,0.21792987599578728],[124,3,65,0.21593879587176512],[124,3,66,0.21399415865879312],[124,3,67,0.2120977265250764],[124,3,68,0.21025116871106664],[124,3,69,0.20845605679892742],[124,3,70,0.20671385991647628],[124,3,71,0.20502593987565243],[124,3,72,0.20339354624550476],[124,3,73,0.20181781135974686],[124,3,74,0.2002997452587415],[124,3,75,0.19884023056610667],[124,3,76,0.19744001729979033],[124,3,77,0.1960997176176873],[124,3,78,0.19481980049776992],[124,3,79,0.19360058635274402],[124,4,64,0.21792115371884035],[124,4,65,0.21593012361374486],[124,4,66,0.21398553795222808],[124,4,67,0.21208915886650603],[124,4,68,0.21024265556027288],[124,4,69,0.2084475995782057],[124,4,70,0.20670546000994428],[124,4,71,0.2050175986285997],[124,4,72,0.20338526496378206],[124,4,73,0.20180959130919685],[124,4,74,0.20029158766467392],[124,4,75,0.1988321366128164],[124,4,76,0.19743198813011908],[124,4,77,0.19609175433263348],[124,4,78,0.1948119041561437],[124,4,79,0.1935927579708704],[124,5,64,0.22221373334277128],[124,5,65,0.22025824860086662],[124,5,66,0.21834784177888322],[124,5,67,0.21648428028510025],[124,5,68,0.2146692399383907],[124,5,69,0.21290430025929274],[124,5,70,0.21119093969556035],[124,5,71,0.20953053078224393],[124,5,72,0.20792433523629217],[124,5,73,0.206373498985725],[124,5,74,0.2048790471332418],[124,5,75,0.20344187885444998],[124,5,76,0.20206276223056818],[124,5,77,0.2007423290156748],[124,5,78,0.19948106933847143],[124,5,79,0.1982793263385777],[124,6,64,0.22649227422186524],[124,6,65,0.22457240815132384],[124,6,66,0.22269625602121734],[124,6,67,0.22086559045939602],[124,6,68,0.219082093842066],[124,6,69,0.2173473536064845],[124,6,70,0.21566285749813707],[124,6,71,0.2140299887524495],[124,6,72,0.21245002121102619],[124,6,73,0.2109241143724595],[124,6,74,0.20945330837758258],[124,6,75,0.2080385189293431],[124,6,76,0.20668053214715643],[124,6,77,0.20537999935580742],[124,6,78,0.20413743180887245],[124,6,79,0.20295319534667455],[124,7,64,0.23075287765894292],[124,7,65,0.2288687202100842],[124,7,66,0.22702691601290703],[124,7,67,0.22522924284339285],[124,7,68,0.22347738956185148],[124,7,69,0.2217729514473078],[124,7,70,0.22011742546637691],[124,7,71,0.21851220547668204],[124,7,72,0.2169585773648014],[124,7,73,0.21545771411879322],[124,7,74,0.21401067083517067],[124,7,75,0.21261837966050223],[124,7,76,0.21128164466749733],[124,7,77,0.21000113666564746],[124,7,78,0.208777387946391],[124,7,79,0.2076107869628191],[124,8,64,0.2349916525152197],[124,8,65,0.23314330872309053],[124,8,66,0.23133596154616132],[124,8,67,0.22957139382249137],[124,8,68,0.2278513008081875],[124,8,69,0.22617728553356564],[124,8,70,0.22455085409380793],[124,8,71,0.2229734108741701],[124,8,72,0.22144625370972593],[124,8,73,0.21997056897969958],[124,8,74,0.21854742663625393],[124,8,75,0.21717777516791303],[124,8,76,0.21586243649747927],[124,8,77,0.21460210081451048],[124,8,78,0.21339732134233402],[124,8,79,0.21224850903960546],[124,9,64,0.23920471843710284],[124,9,65,0.23739230690853624],[124,9,66,0.23561954018623243],[124,9,67,0.23388820606999128],[124,9,68,0.2322000061086471],[124,9,69,0.23055655097809147],[124,9,70,0.22895935579381055],[124,9,71,0.22740983535797743],[124,9,72,0.22590929934109716],[124,9,73,0.2244589473982459],[124,9,74,0.22305986421978108],[124,9,75,0.2217130145166939],[124,9,76,0.2204192379404668],[124,9,77,0.21917924393750565],[124,9,78,0.2179936065381144],[124,9,79,0.21686275908002905],[124,10,64,0.24338820902691377],[124,10,65,0.2416118604715905],[124,10,66,0.23987381052891327],[124,10,67,0.23817585184614076],[124,10,68,0.2365196921473095],[124,10,69,0.23490694963322567],[124,10,70,0.23333914831598146],[124,10,71,0.23181771328804612],[124,10,72,0.230343965925919],[124,10,73,0.22891911902839224],[124,10,74,0.22754427188929938],[124,10,75,0.22622040530491816],[124,10,76,0.22494837651589472],[124,10,77,0.22372891408375395],[124,10,78,0.22256261270196775],[124,10,79,0.2214499279415958],[124,11,64,0.24753827495732122],[124,11,65,0.24579813076235307],[124,11,66,0.24409494540080806],[124,11,67,0.24243051623950973],[124,11,68,0.24080655704603587],[124,11,69,0.23922469341078845],[124,11,70,0.23768645810360833],[124,11,71,0.23619328636497827],[124,11,72,0.23474651113180767],[124,11,73,0.23334735819784402],[124,11,74,0.23199694130858728],[124,11,75,0.23069625719087672],[124,11,76,0.22944618051701493],[124,11,77,0.22824745880349573],[124,11,78,0.22710070724430953],[124,11,79,0.2260064034788366],[124,12,64,0.2516510870295939],[124,12,65,0.24994729787714964],[124,12,66,0.24827913500248167],[124,12,67,0.24664840035080648],[124,12,68,0.24505681358776055],[124,12,69,0.24350600754366658],[124,12,70,0.2419975235923683],[124,12,71,0.24053280696467327],[124,12,72,0.23911320199640074],[124,12,73,0.23773994731107495],[124,12,74,0.2364141709371449],[124,12,75,0.23513688535989508],[124,12,76,0.23390898250791714],[124,12,77,0.23273122867420604],[124,12,78,0.2316042593718527],[124,12,79,0.2305285741243489],[124,13,64,0.25572283917577643],[124,13,65,0.25405556370327625],[124,13,66,0.2524225899945973],[124,13,67,0.25082572441923895],[124,13,68,0.24926669238190968],[124,13,69,0.24774713378911917],[124,13,70,0.2462685984503607],[124,13,71,0.2448325414139323],[124,13,72,0.24344031823738355],[124,13,73,0.2420931801926346],[124,13,74,0.24079226940564868],[124,13,75,0.2395386139308181],[124,13,76,0.2383331227599389],[124,13,77,0.23717658076583348],[124,13,78,0.23606964358059723],[124,13,79,0.23501283240847937],[124,14,64,0.2597497514045676],[124,14,65,0.258119154906962],[124,14,66,0.25652154452681536],[124,14,67,0.2549587308911945],[124,14,68,0.2534324449717109],[124,14,69,0.2519443335735696],[124,14,70,0.25049595475923986],[124,14,71,0.24908877320679218],[124,14,72,0.24772415550289245],[124,14,73,0.24640336537049806],[124,14,74,0.24512755883113546],[124,14,75,0.2438977793019247],[124,14,76,0.24271495262721754],[124,14,77,0.24157988204491732],[124,14,78,0.24049324308745001],[124,14,79,0.23945557841740195],[124,15,64,0.26372807269108517],[124,15,65,0.2621343258647445],[124,15,66,0.2605722592096421],[124,15,67,0.2590436874314297],[124,15,68,0.25755034688359096],[124,15,69,0.25609389107908465],[124,15,70,0.2546758861366456],[124,15,71,0.2532978061617876],[124,15,72,0.25196102856249675],[124,15,73,0.2506668292996602],[124,15,74,0.24941637807211453],[124,15,75,0.24821073343647115],[124,15,76,0.2470508378615932],[124,15,77,0.24593751271778685],[124,15,78,0.24487145320067938],[124,15,79,0.24385322318979763],[124,16,64,0.26765408381038275],[124,16,65,0.26609736153811536],[124,16,66,0.2645710240290894],[124,16,67,0.2630768898766293],[124,16,68,0.26161670061852027],[124,16,69,0.2601921162713889],[124,16,70,0.2588047107997841],[124,16,71,0.2574559675199966],[124,16,72,0.2561472744386107],[124,16,73,0.2548799195258291],[124,16,74,0.2536550859234598],[124,16,75,0.2524738470877154],[124,16,76,0.25133716186670835],[124,16,77,0.25024586951269545],[124,16,78,0.24920068462905254],[124,16,79,0.24820219205198613],[124,17,64,0.27152410011489697],[124,17,65,0.2700045802916207],[124,17,66,0.2685141612043308],[124,17,67,0.26705466513151915],[124,17,68,0.2656278385854866],[124,17,69,0.26423534786960995],[124,17,70,0.26287877457035236],[124,17,71,0.2615596109840593],[124,17,72,0.26027925547852987],[124,17,73,0.25903900778940775],[124,17,74,0.2578400642512772],[124,17,75,0.2566835129636192],[124,17,76,0.2555703288915045],[124,17,77,0.2545013689010848],[124,17,78,0.25347736672985566],[124,17,79,0.25249892789170447],[124,18,64,0.2753344742556107],[124,18,65,0.27385233665419695],[124,18,66,0.2723980279881316],[124,18,67,0.27097337400731214],[124,18,68,0.2695801259768808],[124,18,69,0.2682199562575257],[124,18,70,0.2668944538205776],[124,18,71,0.2656051196979426],[124,18,72,0.2643533623668616],[124,18,73,0.26314049306953635],[124,18,74,0.26196772106751653],[124,18,75,0.2608361488309928],[124,18,76,0.25974676716287876],[124,18,77,0.2587004502577424],[124,18,78,0.25769795069555906],[124,18,79,0.2567398943702996],[124,19,64,0.27908159884703787],[124,19,65,0.2776370240238505],[124,19,66,0.27621901941016214],[124,19,67,0.2748294140025964],[124,19,68,0.2734699635858989],[124,19,69,0.2721423463364252],[124,19,70,0.27084815836048265],[124,19,71,0.26958890916756334],[124,19,72,0.2683660170784607],[124,19,73,0.2671808045683084],[124,19,74,0.26603449354443826],[124,19,75,0.26492820055919764],[124,19,76,0.26386293195761557],[124,19,77,0.26283957895997156],[124,19,78,0.2618589126792436],[124,19,79,0.2609215790734483],[124,20,64,0.28276190907612325],[124,20,65,0.28135507731577475],[124,20,66,0.2799735709632908],[124,20,67,0.2786192220267606],[124,20,68,0.27729379056606],[124,20,69,0.27599896031968096],[124,20,70,0.2747363342664779],[124,20,71,0.2735074301223673],[124,20,72,0.2723136757719734],[124,20,73,0.27115640463525953],[124,20,74,0.27003685096903873],[124,20,75,0.26895614510350924],[124,20,76,0.2679153086136985],[124,20,77,0.266915249425873],[124,20,78,0.2659567568588915],[124,20,79,0.2650404966005099],[124,21,64,0.2863718852548625],[124,21,65,0.28500297555370707],[124,21,66,0.28365816123265536],[124,21,67,0.2823392770657569],[124,21,68,0.28104808713263846],[124,21,69,0.2797862804688291],[124,21,70,0.27855546665107195],[124,21,71,0.2773571713176587],[124,21,72,0.2761928316237787],[124,21,73,0.27506379163192013],[124,21,74,0.27397129763722416],[124,21,75,0.27291649342792745],[124,21,76,0.271900415480785],[124,21,77,0.270923988091527],[124,21,78,0.2699880184403276],[124,21,79,0.26909319159229367],[124,22,64,0.2899080553167434],[124,22,65,0.28857724440463073],[124,22,66,0.2872693144676188],[124,22,67,0.28598610279030606],[124,22,68,0.2847293772061139],[124,22,69,0.2835008317712621],[124,22,70,0.2823020823738093],[124,22,71,0.28113466227778866],[124,22,72,0.2800000176024358],[124,22,73,0.27889950273654246],[124,22,74,0.27783437568783986],[124,22,75,0.276805793367544],[124,22,76,0.2758148068099583],[124,22,77,0.2748623563271847],[124,22,78,0.273949266598921],[124,22,79,0.27307624169735656],[124,23,64,0.2933669972570981],[124,23,65,0.29207445865690757],[124,23,66,0.29080360309669784],[124,23,67,0.28955627010663504],[124,23,68,0.2883342309977316],[124,23,69,0.2871391845596296],[124,23,70,0.2859727526935289],[124,23,71,0.28483647598029405],[124,23,72,0.28373180918373503],[124,23,73,0.2826601166890956],[124,23,74,0.2816226678766537],[124,23,75,0.2806206324305664],[124,23,76,0.2796550755828528],[124,23,77,0.2787269532925682],[124,23,78,0.2778371073601475],[124,23,79,0.2769862604769275],[124,24,64,0.2967453415171793],[124,24,65,0.29549124464165716],[124,24,66,0.2942576501852772],[124,24,67,0.2930463996495567],[124,24,68,0.29185926753698194],[124,24,69,0.29069795707275004],[124,24,70,0.28956409586174675],[124,24,71,0.28845923148079244],[124,24,72,0.2873848270061501],[124,24,73,0.28634225647632855],[124,24,74,0.2853328002900913],[124,24,75,0.2843576405397932],[124,24,76,0.28341785627994814],[124,24,77,0.2825144187310758],[124,24,78,0.281648186418806],[124,24,79,0.28081990024825143],[124,25,64,0.30003977331205933],[124,25,65,0.29882428259748023],[124,25,66,0.29762813183620607],[124,25,67,0.2964531642179927],[124,25,68,0.2953011571410984],[124,25,69,0.2941738179581371],[124,25,70,0.2930727796572661],[124,25,71,0.29199959647873563],[124,25,72,0.29095573946679815],[124,25,73,0.2899425919570092],[124,25,74,0.2889614449988288],[124,25,75,0.2880134927136476],[124,25,76,0.287099827588141],[124,25,77,0.28622143570299646],[124,25,78,0.2853791918969962],[124,25,79,0.2845738548664646],[124,26,64,0.30324703490243354],[124,26,65,0.3020703089786076],[124,26,66,0.30091177953336423],[124,26,67,0.29977329115302254],[124,26,68,0.2986566238266597],[124,26,69,0.29756348871622695],[124,26,70,0.29649552386210193],[124,26,71,0.2954542898241078],[124,26,72,0.2944412652579966],[124,26,73,0.29345784242742423],[124,26,74,0.29250532265133306],[124,26,75,0.29158491168686146],[124,26,76,0.29069771504768366],[124,26,77,0.2898447332578275],[124,26,78,0.28902685704095166],[124,26,79,0.28824486244508946],[124,27,64,0.3063639278101534],[124,27,65,0.3052261187063009],[124,27,66,0.3041053824280166],[124,27,67,0.30300356465828016],[124,27,68,0.30192244766311715],[124,27,69,0.30086374608612304],[124,27,70,0.2998291026785355],[124,27,71,0.2988200839648866],[124,27,72,0.2978381758442269],[124,27,73,0.29688477912695366],[124,27,74,0.29596120500715956],[124,27,75,0.29506867047061563],[124,27,76,0.29420829363829776],[124,27,77,0.29338108904550264],[124,27,78,0.2925879628565322],[124,27,79,0.2918297080149567],[124,28,64,0.3093873149775834],[124,28,65,0.30828856736359816],[124,28,66,0.30720578956805356],[124,28,67,0.30614082806279513],[124,28,68,0.3050954670683407],[124,28,69,0.3040714243729554],[124,28,70,0.30307034708739794],[124,28,71,0.3020938073353614],[124,28,72,0.30114329787960736],[124,28,73,0.3002202276838213],[124,28,74,0.2993259174101083],[124,28,75,0.2984615948522401],[124,28,76,0.29762839030456595],[124,28,77,0.2968273318666303],[124,28,78,0.2960593406834778],[124,28,79,0.2953252261216569],[124,29,64,0.3123141228708547],[124,29,65,0.3112545733334784],[124,29,66,0.31020991207019155],[124,29,67,0.30918198602635244],[124,29,68,0.30817258104626233],[124,29,69,0.30718341771693475],[124,29,70,0.3062161471476597],[124,29,71,0.3052723466853913],[124,29,72,0.30435351556595475],[124,29,73,0.30346107050109933],[124,29,74,0.3025963412013202],[124,29,75,0.30176056583455724],[124,29,76,0.3009548864206838],[124,29,77,0.3001803441618283],[124,29,78,0.2994378747085116],[124,29,79,0.29872830336160683],[124,30,64,0.31514134352685635],[124,30,65,0.314121119880284],[124,30,66,0.31311472523497064],[124,30,67,0.31212400668720663],[124,30,68,0.31115075136645165],[124,30,69,0.31019668230392977],[124,30,70,0.3092634542371579],[124,30,71,0.30835264935043116],[124,30,72,0.3074657729512612],[124,30,73,0.3066042490827948],[124,30,74,0.305769416072138],[124,30,75,0.3049625220146882],[124,30,76,0.30418472019439297],[124,30,77,0.30343706443997515],[124,30,78,0.30272050441710835],[124,30,79,0.3020358808565488],[124,31,64,0.3178660365440491],[124,31,65,0.31688525717448945],[124,31,66,0.31591727060463654],[124,31,67,0.3149639237522411],[124,31,68,0.3140270046857098],[124,31,69,0.31310823851766034],[124,31,70,0.3122092832345522],[124,31,71,0.311331725462416],[124,31,72,0.31047707616867853],[124,31,73,0.3096467663001111],[124,31,74,0.3088421423568254],[124,31,75,0.3080644619024194],[124,31,76,0.30731488901019294],[124,31,77,0.3065944896454721],[124,31,78,0.30590422698402503],[124,31,79,0.30524495666657975],[124,32,64,0.3204853310171703],[124,32,65,0.3195441042608796],[124,32,66,0.31861465796397714],[124,32,67,0.3176988385296379],[124,32,68,0.3167984346117544],[124,32,69,0.31591517303357713],[124,32,70,0.31505071464258033],[124,32,71,0.31420665010157767],[124,32,72,0.3133844956160856],[124,32,73,0.3125856885979577],[124,32,74,0.3118115832652197],[124,32,75,0.3110634461782043],[124,32,76,0.3103424517119058],[124,32,77,0.3096496774645944],[124,32,78,0.3089860996026734],[124,32,79,0.3083525881417876],[124,33,64,0.32299642741568163],[124,33,65,0.32209485096999585],[124,33,66,0.32120406728396167],[124,33,67,0.32032592190391035],[124,33,68,0.3194622037088428],[124,33,69,0.3186146408542727],[124,33,70,0.31778489665245735],[124,33,71,0.3169745653890364],[124,33,72,0.3161851680760771],[124,33,73,0.31541814814154784],[124,33,74,0.3146748670551555],[124,33,75,0.3139565998906363],[124,33,76,0.31326453082442934],[124,33,77,0.3125997485707663],[124,33,78,0.31196324175316464],[124,33,79,0.3113558942123289],[124,34,64,0.32539659940604204],[124,34,65,0.32453475977292623],[124,34,66,0.3236827506082663],[124,34,67,0.32284241625338034],[124,34,68,0.32201554544541505],[124,34,69,0.321203867286508],[124,34,70,0.3204090471495049],[124,34,71,0.31963268252025184],[124,34,72,0.31887629877646084],[124,34,73,0.31814134490317236],[124,34,74,0.3174291891447473],[124,34,75,0.3167411145934818],[124,34,76,0.3160783147147689],[124,34,77,0.31544188880884716],[124,34,78,0.3148328374091169],[124,34,79,0.3142520576170348],[124,35,64,0.3276831956178616],[124,35,65,0.32686116757949907],[124,35,66,0.32604803388274467],[124,35,67,0.3252456373101578],[124,35,68,0.3244557660838189],[124,35,69,0.32368014985991755],[124,35,70,0.32292045566007155],[124,35,71,0.3221782837393972],[124,35,72,0.32145516339132973],[124,35,73,0.32075254868921266],[124,35,74,0.3200718141645982],[124,35,75,0.3194142504223403],[124,35,76,0.31878105969241466],[124,35,77,0.3181733513184986],[124,35,78,0.31759213718329654],[124,35,79,0.3170383270706182],[124,36,64,0.3298536413538073],[124,36,65,0.3290714874797512],[124,36,66,0.3282973187277101],[124,36,67,0.3275329759624921],[124,36,68,0.3267802465119817],[124,36,69,0.3260408601872539],[124,36,70,0.3253164852396047],[124,36,71,0.32460872425451737],[124,36,72,0.32391910998256257],[124,36,73,0.3232491011072517],[124,36,74,0.32260007794978635],[124,36,75,0.3219733381107839],[124,36,76,0.32137009204891454],[124,36,77,0.3207914585964832],[124,36,78,0.32023846041194],[124,36,79,0.3197120193693284],[124,37,64,0.33190544024333446],[124,37,65,0.3311632104287408],[124,37,66,0.33042808415310404],[124,37,67,0.3297018999995665],[124,37,68,0.328986444017102],[124,37,69,0.32828344576624835],[124,37,70,0.32759457430195327],[124,37,71,0.32692143409354574],[124,37,72,0.32626556088183545],[124,37,73,0.32562841747335836],[124,37,74,0.3250113894717115],[124,37,75,0.32441578094605644],[124,37,76,0.32384281003672705],[124,37,77,0.32329360449797523],[124,37,78,0.3227691971778378],[124,37,79,0.32227052143513574],[124,38,64,0.3338361758402898],[124,38,65,0.3331339068747558],[124,38,66,0.3324378882166007],[124,38,67,0.331749955798789],[124,38,68,0.3310718940014147],[124,38,69,0.3304054317231409],[124,38,70,0.3297522383899523],[124,38,71,0.3291139199012368],[124,38,72,0.32849201451319665],[124,38,73,0.32788798865960544],[124,38,74,0.3273032327098588],[124,38,75,0.3267390566643928],[124,38,76,0.32619668578740996],[124,38,77,0.3256772561769432],[124,38,78,0.325181810272245],[124,38,79,0.3247112922985077],[124,39,64,0.3356435131642702],[124,39,65,0.3349812283307988],[124,39,66,0.33432436962452733],[124,39,67,0.333674769955455],[124,39,68,0.33303421163990626],[124,39,69,0.33240442249775315],[124,39,70,0.3317870718871625],[124,39,71,0.3311837666768839],[124,39,72,0.3305960471560753],[124,39,73,0.33002538288168554],[124,39,74,0.32947316846334274],[124,39,75,0.32894071928581786],[124,39,76,0.3284292671690076],[124,39,77,0.32793995596546643],[124,39,78,0.3274738370954724],[124,39,79,0.3270318650196353],[124,40,64,0.33732520018583767],[124,40,65,0.3367029088894492],[124,40,66,0.3360852492757011],[124,40,67,0.335474050854888],[124,40,68,0.33487109348008215],[124,40,69,0.33427810347021025],[124,40,70,0.3336967496708743],[124,40,71,0.3331286394529319],[124,40,72,0.3325753146488341],[124,40,73,0.3320382474267386],[124,40,74,0.3315188361023481],[124,40,75,0.3310184008885437],[124,40,76,0.33053817958275533],[124,40,77,0.33007932319210126],[124,40,78,0.32964289149628073],[124,40,79,0.329229848548228],[124,41,64,0.33887906925552136],[124,41,65,0.33829676668103387],[124,41,66,0.33771833174811655],[124,41,67,0.33714559018698576],[124,41,68,0.33658031898371793],[124,41,69,0.33602424252924107],[124,41,70,0.33547902870630025],[124,41,71,0.3349462849144096],[124,41,72,0.334427554032791],[124,41,73,0.333924310321313],[124,41,74,0.3334379552593876],[124,41,75,0.33296981332288517],[124,41,76,0.3325211276990174],[124,41,77,0.33209305593921673],[124,41,78,0.3316866655499952],[124,41,79,0.3313029295217951],[124,42,64,0.34030303847668575],[124,42,65,0.3397607052751872],[124,42,66,0.3392215067285609],[124,42,67,0.33868726440325664],[124,42,68,0.3381597520106777],[124,42,69,0.33764069158214044],[124,42,70,0.3371317495820452],[124,42,71,0.3366345329592722],[124,42,72,0.3361505851367989],[124,42,73,0.33568138193955455],[124,42,74,0.3352283274604713],[124,42,75,0.3347927498647877],[124,42,76,0.334375897132559],[124,42,77,0.33397893273939866],[124,42,78,0.3336029312754385],[124,42,79,0.33324887400251485],[124,43,64,0.3415951130221733],[124,43,65,0.3410927150257056],[124,43,66,0.3405927503850641],[124,43,67,0.3400970361162462],[124,43,68,0.33960734224469913],[124,43,69,0.33912538800629294],[124,43,70,0.3386528379867503],[124,43,71,0.3381912981995467],[124,43,72,0.3377423121022781],[124,43,73,0.3373073565515112],[124,43,74,0.3368878376960759],[124,43,75,0.33648508680885647],[124,43,76,0.33610035605703353],[124,43,77,0.33573481421080387],[124,43,78,0.335389542290565],[124,43,79,0.335065529152571],[124,44,64,0.34275338639477193],[124,44,65,0.3422908743587473],[124,44,66,0.3418301266822347],[124,44,67,0.34137295544140867],[124,44,68,0.34092112656119955],[124,44,69,0.34047635604231347],[124,44,70,0.3400403061269658],[124,44,71,0.33961458140333767],[124,44,72,0.3392007248487573],[124,44,73,0.33880021381161396],[124,44,74,0.338414455931974],[124,44,75,0.3380447850009454],[124,44,76,0.33769245675874987],[124,44,77,0.3373586446315278],[124,44,78,0.3370444354068604],[124,44,79,0.3367508248480194],[124,45,64,0.3437760416315308],[124,45,65,0.34335335100440595],[124,45,66,0.3429317886395093],[124,45,67,0.3425131612814522],[124,45,68,0.34209923033713385],[124,45,69,0.34169170812883415],[124,45,70,0.3412922540862846],[124,45,71,0.34090247087772696],[124,45,72,0.34052390047995734],[124,45,73,0.34015802018736857],[124,45,74,0.33980623855995745],[124,45,75,0.3394698913103424],[124,45,76,0.3391502371297548],[124,45,77,0.33884845345302356],[124,45,78,0.3385656321625424],[124,45,79,0.33830277523122654],[124,46,64,0.34466135245186247],[124,46,65,0.344278403171588],[124,46,66,0.3438959795322455],[124,46,67,0.34351588255308424],[124,46,68,0.34313986870282853],[124,46,69,0.34276964617886174],[124,46,70,0.34240687112566004],[124,46,71,0.3420531437924851],[124,46,72,0.34171000463033663],[124,46,73,0.3413789303281729],[124,46,74,0.3410613297883704],[124,46,75,0.34075854004146555],[124,46,76,0.34047182210014143],[124,46,77,0.34020235675248034],[124,46,78,0.339951240294472],[124,46,79,0.33971948020178366],[124,47,64,0.3454076843494679],[124,47,65,0.345064380666236],[124,47,66,0.34472103403570187],[124,47,67,0.34437943935620186],[124,47,68,0.34404134773583717],[124,47,69,0.34370846279775324],[124,47,70,0.34338243692495196],[124,47,71,0.3430648674446449],[124,47,72,0.3427572927521455],[124,47,73,0.34246118837431033],[124,47,74,0.3421779629725033],[124,47,75,0.3419089542851198],[124,47,76,0.34165542500963736],[124,47,77,0.3414185586242159],[124,47,78,0.34119945514883104],[124,47,79,0.34099912684595274],[124,48,64,0.3460134956281019],[124,48,65,0.34570972595291544],[124,48,66,0.3454053793119196],[124,48,67,0.34510224408554546],[124,48,68,0.34480206559683746],[124,48,69,0.34450654244282586],[124,48,70,0.3442173227657246],[124,48,71,0.343936000463957],[124,48,72,0.34366411134301317],[124,48,73,0.34340312920614396],[124,48,74,0.3431544618848702],[124,48,75,0.34291944720933853],[124,48,76,0.34269934891849774],[124,48,77,0.34249535251011026],[124,48,78,0.34230856103058993],[124,48,79,0.3421399908046728],[124,49,64,0.3464773383811328],[124,49,65,0.3462129751597146],[124,49,66,0.3459475360394598],[124,49,67,0.3456828024847629],[124,49,68,0.3454205136075136],[124,49,69,0.34516236252454996],[124,49,70,0.3449099926552366],[124,49,71,0.3446649939591683],[124,49,72,0.3444288991140063],[124,49,73,0.34420317963344665],[124,49,74,0.3439892419253054],[124,49,75,0.34378842328974746],[124,49,76,0.34360198785763485],[124,49,77,0.34343112246900864],[124,49,78,0.3432769324916968],[124,49,79,0.34314043758005286],[124,50,64,0.3467978594149269],[124,50,65,0.34657275902649265],[124,50,66,0.34634611938602633],[124,50,67,0.34611971464291924],[124,50,68,0.3458952772704625],[124,50,69,0.34567449444935805],[124,50,70,0.3454590043916618],[124,50,71,0.3452503926051625],[124,50,72,0.34505018809819715],[124,50,73,0.3448598595249076],[124,50,74,0.3446808112709224],[124,50,75,0.3445143794794881],[124,50,76,0.34436182801802706],[124,50,77,0.34422434438513894],[124,50,78,0.34410303555803223],[124,50,79,0.3439989237803963],[124,51,64,0.3469738011160618],[124,51,65,0.3467878037964778],[124,51,66,0.3465998399239811],[124,51,67,0.3464116759334583],[124,51,68,0.3462250372311286],[124,51,69,0.34604160460407907],[124,51,70,0.34586301057055013],[124,51,71,0.3456908356709719],[124,51,72,0.3455266046997534],[124,51,73,0.34537178287782827],[124,51,74,0.3452277719659448],[124,51,75,0.345095906318717],[124,51,76,0.34497744887942305],[124,51,77,0.34487358711555954],[124,51,78,0.3447854288951443],[124,51,79,0.3447139983037759],[124,52,64,0.3470040022623448],[124,52,65,0.3468569320511917],[124,52,66,0.3467075044887242],[124,52,67,0.3465574778955859],[124,52,68,0.34640857018173576],[124,52,69,0.3462624552819654],[124,52,70,0.34612075953249144],[124,52,71,0.34598505798862333],[124,52,72,0.3458568706835098],[124,52,73,0.3457376588279656],[124,52,74,0.345628820951367],[124,52,75,0.3455316889836359],[124,52,76,0.34544752427829156],[124,52,77,0.3453775135765868],[124,52,78,0.34532276491271596],[124,52,79,0.3452843034601045],[124,53,64,0.3468873987776562],[124,53,65,0.34677906348872023],[124,53,66,0.34666801697996097],[124,53,67,0.3465560090580989],[124,53,68,0.34644474970724337],[124,53,69,0.34633590555033694],[124,53,70,0.3462310962520101],[124,53,71,0.346131890862845],[124,53,72,0.34603980410505075],[124,53,73,0.3459562925995511],[124,53,74,0.34588275103447813],[124,53,75,0.34582050827508337],[124,53,76,0.3457708234150526],[124,53,77,0.3457348817692383],[124,53,78,0.34571379080779663],[124,53,79,0.34570857603173943],[124,54,64,0.3466230244306108],[124,54,65,0.34655321564532526],[124,54,66,0.3464803791058498],[124,54,67,0.3464062557056547],[124,54,68,0.346332547073319],[124,54,69,0.34626091205983867],[124,54,70,0.34619296316768855],[124,54,71,0.34613026292163507],[124,54,72,0.3460743201813018],[124,54,73,0.34602658639548955],[124,54,74,0.34598845179824567],[124,54,75,0.34596124154669017],[124,54,76,0.34594621180059076],[124,54,77,0.34594454574369393],[124,54,78,0.34595734954680474],[124,54,79,0.345985648272624],[124,55,64,0.34621001147703506],[124,55,65,0.34617850456039134],[124,55,66,0.3461436910700257],[124,55,67,0.34610730258747346],[124,55,68,0.3460710319563206],[124,55,69,0.3460365297953021],[124,55,70,0.3460054009535055],[124,55,71,0.3459792009076741],[124,55,72,0.34595943210161584],[124,55,73,0.3459475402277141],[124,55,74,0.3459449104505413],[124,55,75,0.34595286357257715],[124,55,76,0.3459726521420274],[124,55,77,0.34600545650274833],[124,55,78,0.34605238078627226],[124,55,79,0.3461144488459383],[124,56,64,0.3456475912462691],[124,56,65,0.3456541453847212],[124,56,66,0.3456571522015117],[124,56,67,0.3456583335684866],[124,56,68,0.3456593731153012],[124,56,69,0.3456619127682239],[124,56,70,0.34566754923140386],[124,56,71,0.3456778304105994],[124,56,72,0.3456942517793682],[124,56,73,0.3457182526877196],[124,56,74,0.34575121261322894],[124,56,75,0.3457944473546143],[124,56,76,0.3458492051677722],[124,56,77,0.34591666284427997],[124,56,78,0.34599792173235533],[124,56,79,0.3460940037002813],[124,57,64,0.34493509467127625],[124,57,65,0.34497945293215904],[124,57,66,0.3450200615274986],[124,57,67,0.3450586322229138],[124,57,68,0.345096839006021],[124,57,69,0.3451363146508473],[124,57,70,0.3451786472250781],[124,57,71,0.3452253765401296],[124,57,72,0.3452779905440522],[124,57,73,0.34533792165726196],[124,57,74,0.3454065430511021],[124,57,75,0.34548516486923236],[124,57,76,0.3455750303918472],[124,57,77,0.345677312142725],[124,57,78,0.345793107939102],[124,57,79,0.3459234368843812],[124,58,64,0.34407195276257907],[124,58,65,0.3441538421745616],[124,58,66,0.3442318182890127],[124,58,67,0.344307582370285],[124,58,68,0.34438279833697805],[124,58,69,0.34445908935185776],[124,58,70,0.344538034354985],[124,58,71,0.34462116454004366],[124,58,72,0.3447099597738777],[124,58,73,0.34480584495922706],[124,58,74,0.34491018634067366],[124,58,75,0.34502428775378813],[124,58,76,0.3451493868174801],[124,58,77,0.34528665106955553],[124,58,78,0.3454371740454758],[124,58,79,0.3456019713003241],[124,59,64,0.34305769702602024],[124,59,65,0.3431768286801168],[124,59,66,0.34329192239947093],[124,59,67,0.3434046685539075],[124,59,68,0.34351672056746346],[124,59,69,0.3436296915336967],[124,59,70,0.3437451507745871],[124,59,71,0.3438646203430238],[124,59,72,0.34398957146888076],[124,59,73,0.3441214209486766],[124,59,74,0.34426152747882915],[124,59,75,0.34441118793249165],[124,59,76,0.34457163357997694],[124,59,77,0.34474402625277334],[124,59,78,0.34492945445114365],[124,59,79,0.3451289293953158],[124,60,64,0.3418919598243201],[124,60,65,0.34204802899497944],[124,60,66,0.3421999748460929],[124,60,67,0.3423494764617513],[124,60,68,0.34249817634761115],[124,60,69,0.3426476770714655],[124,60,70,0.34279953784780154],[124,60,71,0.3429552710663344],[124,60,72,0.34311633876452097],[124,60,73,0.3432841490440497],[124,60,74,0.3434600524313167],[124,60,75,0.3436453381818734],[124,60,76,0.34384123052885646],[124,60,77,0.34404888487539775],[124,60,78,0.3442693839310105],[124,60,79,0.3445037337919593],[124,61,64,0.34057447468247104],[124,61,65,0.34076716096826626],[124,61,66,0.34095567803421245],[124,61,67,0.3411416932897898],[124,61,68,0.3413268379004784],[124,61,69,0.3415127034534565],[124,61,70,0.34170083856768535],[124,61,71,0.3418927454483688],[124,61,72,0.3420898763857941],[124,61,73,0.34229363019854453],[124,61,74,0.34250534862110205],[124,61,75,0.34272631263581776],[124,61,76,0.3429577387492644],[124,61,77,0.3432007752129689],[124,61,78,0.34345649818852075],[124,61,79,0.3437259078570625],[124,62,64,0.3391050765369585],[124,62,65,0.3393340440203979],[124,62,66,0.3395588360744769],[124,62,67,0.33978110804778694],[124,62,68,0.3400024793461509],[124,62,69,0.3402245301233012],[124,62,70,0.3404487979163531],[124,62,71,0.3406767742260597],[124,62,72,0.34090990104185565],[124,62,73,0.34114956731167767],[124,62,74,0.34139710535658596],[124,62,75,0.34165378723015727],[124,62,76,0.3419208210226682],[124,62,77,0.34219934711006655],[124,62,78,0.34249043434772397],[124,62,79,0.3427950762089792],[124,63,64,0.33748370192876476],[124,63,65,0.3377485993547471],[124,63,66,0.33800935501289103],[124,63,67,0.3382676118074894],[124,63,68,0.3385249769678299],[124,63,69,0.33878301876369765],[124,63,70,0.33904326316608757],[124,63,71,0.33930719045311375],[124,63,72,0.3395762317611202],[124,63,73,0.3398517655809867],[124,63,74,0.34013511419964726],[124,63,75,0.34042754008679643],[124,63,76,0.3407302422268006],[124,63,77,0.34104435239581155],[124,63,78,0.34137093138407637],[124,63,79,0.34171096516345373],[124,64,64,0.33571038914022855],[124,64,65,0.33601085011266185],[124,64,66,0.33630724300377823],[124,64,67,0.33660119789329224],[124,64,68,0.33689430941996823],[124,64,69,0.3371881335217805],[124,64,70,0.337484184121705],[124,64,71,0.33778392975912974],[124,64,72,0.33808879016689236],[124,64,73,0.33840013279392966],[124,64,74,0.3387192692735672],[124,64,75,0.33904745183741647],[124,64,76,0.3393858696748995],[124,64,77,0.3397356452383982],[124,64,78,0.34009783049402365],[124,64,79,0.3404734031180116],[124,65,64,0.3337852782756985],[124,65,65,0.33412092147180683],[124,65,66,0.3344526104255975],[124,65,67,0.33478196201531973],[124,65,68,0.33511055787840005],[124,65,69,0.3354399411760808],[124,65,70,0.33577161330412225],[124,65,71,0.3361070305495542],[124,65,72,0.33644760069348234],[124,65,73,0.336794679559936],[124,65,74,0.33714956751078984],[124,65,75,0.33751350588671714],[124,65,76,0.33788767339420434],[124,65,77,0.3382731824386189],[124,65,78,0.33867107540332547],[124,65,79,0.33908232087486095],[124,66,64,0.3317086112860373],[124,66,65,0.332079040687874],[124,66,66,0.33244566993967084],[124,66,67,0.332810102344976],[124,66,68,0.3331739061325153],[124,66,69,0.3335386112451233],[124,66,70,0.33390570607517756],[124,66,71,0.33427663414651665],[124,66,72,0.33465279074285104],[124,66,73,0.3350355194826542],[124,66,74,0.3354261088405608],[124,66,75,0.3358257886152376],[124,66,76,0.3362357263437496],[124,66,77,0.3366570236624178],[124,66,78,0.33709071261416246],[124,66,79,0.33753775190234164],[124,67,64,0.32948073193688876],[124,67,65,0.3298855370795799],[124,67,66,0.3302867364917389],[124,67,67,0.3306859195328806],[124,67,68,0.3310846406193973],[124,67,69,0.33148441603758605],[124,67,70,0.3318867207036238],[124,67,71,0.332292984870471],[124,67,72,0.3327045907817129],[124,67,73,0.3331228692723215],[124,67,74,0.3335490963163752],[124,67,75,0.3339844895216888],[124,67,76,0.33443020457138684],[124,67,77,0.33488733161241124],[124,67,78,0.335356891590959],[124,67,79,0.33583983253485916],[124,68,64,0.3271020857208101],[124,68,65,0.3275408419570498],[124,68,66,0.3279762272564405],[124,68,67,0.3284098166692878],[124,68,68,0.32884315040002093],[124,68,69,0.32927773064411103],[124,68,70,0.3297150183723873],[124,68,71,0.3301564300627349],[124,68,72,0.33060333437917955],[124,68,73,0.3310570487983444],[124,68,74,0.33151883618331723],[124,68,75,0.3319899013048772],[124,68,76,0.33247138731011694],[124,68,77,0.33296437213845],[124,68,78,0.33346986488499936],[124,68,79,0.33398880211137716],[124,69,64,0.32457321971323194],[124,69,65,0.325045488493548],[124,69,66,0.32551466152468067],[124,69,67,0.3259822991869519],[124,69,68,0.3264499270774725],[124,69,69,0.32691903287073387],[124,69,70,0.3273910631270588],[124,69,71,0.32786742004888864],[124,69,72,0.32834945818491734],[124,69,73,0.3288384810820552],[124,69,74,0.32933573788526094],[124,69,75,0.3298424198851906],[124,69,76,0.33035965701370107],[124,69,77,0.33088851428719557],[124,69,78,0.3314299881978092],[124,69,79,0.33198500305244316],[124,70,64,0.32189478237217184],[124,70,65,0.3224001115404882],[124,70,66,0.322902660533818],[124,70,67,0.3234039747063715],[124,70,68,0.3239055646571258],[124,70,69,0.32440890311386594],[124,70,70,0.32491542176554955],[124,70,71,0.32542650804297313],[124,70,72,0.32594350184775095],[124,70,73,0.3264676922295847],[124,70,74,0.3270003140118709],[124,70,75,0.3275425443655864],[124,70,76,0.32809549933149396],[124,70,77,0.3286602302906547],[124,70,78,0.32923772038324584],[124,70,79,0.32982888087569007],[124,71,64,0.31906752328182664],[124,71,65,0.3196054473858402],[124,71,66,0.3201409472407881],[124,71,67,0.3206755528235271],[124,71,68,0.32121075934888976],[124,71,69,0.3217480241769398],[124,71,70,0.3222887636690238],[124,71,71,0.3228343499925953],[124,71,72,0.3233861078748217],[124,71,73,0.3239453113049542],[124,71,74,0.3245131801855067],[124,71,75,0.3250908769321831],[124,71,76,0.32567950302259635],[124,71,77,0.32628009549376613],[124,71,78,0.3268936233883912],[124,71,79,0.3275209841499071],[124,72,64,0.3160922928399905],[124,72,65,0.31666233345588524],[124,72,66,0.31723034603811634],[124,72,67,0.3177978448400671],[124,72,68,0.318366309311478],[124,72,69,0.31893718102867397],[124,72,70,0.31951186057406455],[124,72,71,0.32009170436489515],[124,72,72,0.3206780214312587],[124,72,73,0.32127207014334663],[124,72,74,0.3218750548879882],[124,72,75,0.3224881226944137],[124,72,76,0.32311235980928865],[124,72,77,0.32374878822100284],[124,72,78,0.32439836213321266],[124,72,79,0.32506196438764556],[124,73,64,0.3129700418892172],[124,73,65,0.31357170796023726],[124,73,66,0.31417178241273613],[124,73,67,0.3147717634358578],[124,73,68,0.3153731143386237],[124,73,69,0.3159772605028779],[124,73,70,0.31658558628599126],[124,73,71,0.31719943187329913],[124,73,72,0.3178200900802841],[124,73,73,0.31844880310447987],[124,73,74,0.31908675922714946],[124,73,75,0.3197350894646703],[124,73,76,0.3203948641696727],[124,73,77,0.3210670895819192],[124,73,78,0.32175270432891834],[124,73,79,0.3224525758762868],[124,74,64,0.3097018212918704],[124,74,65,0.3103346094802739],[124,74,66,0.3109662825477576],[124,74,67,0.3115983222840425],[124,74,68,0.31223217548737575],[124,74,69,0.3128692509399322],[124,74,70,0.31351091633346734],[124,74,71,0.3141584951451929],[124,74,72,0.3148132634638866],[124,74,73,0.3154764467662124],[124,74,74,0.3161492166433075],[124,74,75,0.31683268747756244],[124,74,76,0.31752791306964684],[124,74,77,0.31823588321576357],[124,74,78,0.3189575202351296],[124,74,79,0.3196936754476928],[124,75,64,0.30628878144900146],[124,75,65,0.30695217650091594],[124,75,66,0.30761497286712314],[124,75,67,0.30827863560854507],[124,75,68,0.308944594648419],[124,75,69,0.3096142417698884],[124,75,70,0.31028892756433935],[124,75,71,0.3109699583304558],[124,75,72,0.3116585929240048],[124,75,73,0.31235603955832736],[124,75,74,0.3130634525555928],[124,75,75,0.3137819290487399],[124,75,76,0.3145125056341601],[124,75,77,0.31525615497510573],[124,75,78,0.3160137823558181],[124,75,79,0.3167862221863904],[124,76,64,0.30273217176295886],[124,76,65,0.30342564688566004],[124,76,66,0.3041190795230589],[124,76,67,0.30481391768392824],[124,76,68,0.3055115740583263],[124,76,69,0.3062134230370967],[124,76,70,0.3069207976826177],[124,76,71,0.3076349866507695],[124,76,72,0.30835723106413576],[124,76,73,0.30908872133640747],[124,76,74,0.309830593948056],[124,76,75,0.31058392817319125],[124,76,76,0.3113497427576647],[124,76,77,0.312128992548397],[124,76,78,0.31292256507392924],[124,76,79,0.3137312770762072],[124,77,64,0.2990333400438978],[124,77,65,0.2997563572950343],[124,77,66,0.30047992782648664],[124,77,67,0.3012054822777723],[124,77,68,0.30193441575390534],[124,77,69,0.3026680848665214],[124,77,70,0.3034078047267575],[124,77,71,0.3041548458898585],[124,77,72,0.304910431251522],[124,77,73,0.3056757328959542],[124,77,74,0.3064518688957011],[124,77,75,0.30723990006317176],[124,77,76,0.3080408266539113],[124,77,77,0.3088555850216087],[124,77,78,0.3096850442248311],[124,77,79,0.31053000258550123],[124,78,64,0.295193731860117],[124,78,65,0.29594574254839984],[124,78,66,0.2966989416203234],[124,78,67,0.29745474203549693],[124,78,68,0.29821452096856776],[124,78,69,0.29897961687167485],[124,78,70,0.2997513264891727],[124,78,71,0.3005309018245913],[124,78,72,0.3013195470598487],[124,78,73,0.30211841542668405],[124,78,74,0.3029286060303811],[124,78,75,0.30375116062569174],[124,78,76,0.30458706034502586],[124,78,77,0.30543722237888415],[124,78,78,0.30630249660853115],[124,78,79,0.30718366219092347],[124,79,64,0.2912148898321152],[124,79,65,0.291995334928998],[124,79,66,0.29277764259556543],[124,79,67,0.2935632078075292],[124,79,68,0.2943533894706197],[124,79,69,0.2951495075040686],[124,79,70,0.29595283987687826],[124,79,71,0.29676461959684575],[124,79,72,0.29758603165235475],[124,79,73,0.2984182099069063],[124,79,74,0.2992622339464568],[124,79,75,0.3001191258794732],[124,79,76,0.3009898470897711],[124,79,77,0.30187529494211285],[124,79,78,0.30277629944056433],[124,79,79,0.30369361983962173],[124,80,64,0.28709845287056124],[124,80,65,0.28790676343242805],[124,80,66,0.2887176495503443],[124,80,67,0.28953248791899955],[124,80,68,0.2903526188436586],[124,80,69,0.2911793433443641],[124,80,70,0.29201392021344724],[124,80,71,0.29285756302631594],[124,80,72,0.29371143710553316],[124,80,73,0.2945766564381542],[124,80,74,0.29545428054639633],[124,80,75,0.29634531131154473],[124,80,76,0.29725068975116437],[124,80,77,0.29817129274959425],[124,80,78,0.2991079297417219],[124,80,79,0.30006133935004986],[124,81,64,0.28284615535808777],[124,81,65,0.28368175295847287],[124,81,66,0.28452067759186894],[124,81,67,0.28536428738188324],[124,81,68,0.2862139037089909],[124,81,69,0.2870708083351405],[124,81,70,0.28793624048219574],[124,81,71,0.28881139386418075],[124,81,72,0.2896974136733419],[124,81,73,0.290595393519995],[124,81,74,0.29150637232623344],[124,81,75,0.2924313311733969],[124,81,76,0.29337119010337415],[124,81,77,0.2943268048737141],[124,81,78,0.29529896366654396],[124,81,79,0.29628838375130767],[124,82,64,0.2784598262747976],[124,82,65,0.27932212344615803],[124,82,66,0.2801885372811438],[124,82,67,0.28106040704947716],[124,82,68,0.2819390348899622],[124,82,69,0.28282568295516963],[124,82,70,0.2837215705104909],[124,82,71,0.2846278709875254],[124,82,72,0.28554570899181775],[124,82,73,0.2864761572649088],[124,82,74,0.28742023360078145],[124,82,75,0.2883788977165962],[124,82,76,0.2893530480777932],[124,82,77,0.29034351867753294],[124,82,78,0.29135107577047625],[124,82,79,0.29237641456091423],[124,83,64,0.2739413882676905],[124,83,65,0.27482978895225413],[124,83,66,0.2757231337206675],[124,83,67,0.276622742713414],[124,83,68,0.27752989851840243],[124,83,69,0.27844584333540134],[124,83,70,0.27937177609537955],[124,83,71,0.28030884953471524],[124,83,72,0.2812581672242904],[124,83,73,0.2822207805534339],[124,83,74,0.28319768566879566],[124,83,75,0.2841898203680461],[124,83,76,0.28519806094847633],[124,83,77,0.28622321901047465],[124,83,78,0.2872660382158751],[124,83,79,0.28832719100119436],[124,84,64,0.269292856663918],[124,84,65,0.2702067566731251],[124,84,66,0.27112646558501935],[124,84,67,0.272053284143124],[124,84,68,0.2729884750830942],[124,84,69,0.2739332603165656],[124,84,70,0.27488881807044857],[124,84,71,0.2758562799816314],[124,84,72,0.27683672814710714],[124,84,73,0.2778311921294888],[124,84,74,0.2788406459179972],[124,84,75,0.2798660048448112],[124,84,76,0.2809081224568595],[124,84,77,0.28196778734302796],[124,84,78,0.2830457199167792],[124,84,79,0.28414256915419916],[124,85,64,0.2645163384277359],[124,85,65,0.26545512590980047],[124,85,66,0.2664006240942098],[124,85,67,0.2673541140676181],[124,85,68,0.2683168384201403],[124,85,69,0.26928999844827106],[124,85,70,0.2702747513137952],[124,85,71,0.27127220715864875],[124,85,72,0.2722834261757487],[124,85,73,0.27330941563575323],[124,85,74,0.27435112686983976],[124,85,75,0.2754094522083866],[124,85,76,0.27648522187564173],[124,85,77,0.2775792008403493],[124,85,78,0.27869208562233216],[124,85,79,0.27982450105504514],[124,86,64,0.25961403106139164],[124,86,65,0.26057708697650095],[124,86,66,0.26154779193002275],[124,86,67,0.26252740709982286],[124,86,68,0.26351715464545933],[124,86,69,0.2645182149298254],[124,86,70,0.26553172369732986],[124,86,71,0.26655876920857624],[124,86,72,0.2676003893315573],[124,86,73,0.26865756858932677],[124,86,74,0.269731235164237],[124,86,75,0.27082225785862757],[124,86,76,0.2719314430120459],[124,86,77,0.2730595313749756],[124,86,78,0.274207194939066],[124,86,79,0.27537503372388117],[124,87,64,0.2545882214498356],[124,87,65,0.2555749200525097],[124,87,66,0.2565702420952457],[124,87,67,0.25757542860335947],[124,87,68,0.2585916810293022],[124,87,69,0.25962015849267084],[124,87,70,0.2606619749773098],[124,87,71,0.2617181964854599],[124,87,72,0.2627898381489746],[124,87,73,0.2638778612975628],[124,87,74,0.2649831704841503],[124,87,75,0.26610661046723993],[124,87,76,0.26724896315035696],[124,87,77,0.2684109444785507],[124,87,78,0.26959320129194975],[124,87,79,0.2707963081363862],[124,88,64,0.24944128464912416],[124,88,65,0.25045099397725856],[124,88,66,0.25147033671565305],[124,88,67,0.2525005335016375],[124,88,68,0.25354276481266014],[124,88,69,0.2545981682243083],[124,88,70,0.2556678356259731],[124,88,71,0.2567528103941169],[124,88,72,0.25785408452316105],[124,88,73,0.2589725957139533],[124,88,74,0.26010922441990975],[124,88,75,0.2612647908507072],[124,88,76,0.2624400519336162],[124,88,77,0.26363569823244304],[124,88,78,0.2648523508240801],[124,88,79,0.26609055813267846],[124,89,64,0.24417568261877923],[124,89,65,0.2452077649888911],[124,89,66,0.24625052578500767],[124,89,67,0.2473051650295218],[124,89,68,0.24837284196582327],[124,89,69,0.2494546723339649],[124,89,70,0.25055172560452976],[124,89,71,0.2516650221706582],[124,89,72,0.25279553049825176],[124,89,73,0.2539441642343133],[124,89,74,0.2551117792735198],[124,89,75,0.2562991707829009],[124,89,76,0.25750707018471586],[124,89,77,0.25873614209749674],[124,89,78,0.2599869812352558],[124,89,79,0.26126010926487314],[124,90,64,0.2387939628978834],[124,90,65,0.2398477754060821],[124,90,66,0.24091334585285828],[124,90,67,0.24199185342735677],[124,90,68,0.24308443588887224],[124,90,69,0.2441921868597913],[124,90,70,0.24531615307729526],[124,90,71,0.24645733160378394],[124,90,72,0.24761666699603452],[124,90,73,0.24879504843305633],[124,90,74,0.2499933068027393],[124,90,75,0.25121221174716724],[124,90,76,0.2524524686666883],[124,90,77,0.253714715682713],[124,90,78,0.25499952055923447],[124,90,79,0.2563073775830904],[124,91,64,0.2332987572250823],[124,91,65,0.23437365225328782],[124,91,66,0.23546141865530704],[124,91,67,0.23656321457751703],[124,91,68,0.2376801560542739],[124,91,69,0.23881331431775654],[124,91,70,0.23996371306713524],[124,91,71,0.2411323256970217],[124,91,72,0.24232007248521853],[124,91,73,0.24352781773972487],[124,91,74,0.24475636690510044],[124,91,75,0.24600646362805373],[124,91,76,0.2472787867823526],[124,91,77,0.24857394745302225],[124,91,78,0.24989248587982965],[124,91,79,0.25123486836007075],[124,92,64,0.22769278010225288],[124,92,65,0.2287881058291824],[124,92,66,0.22989744968850476],[124,92,67,0.23102194858324604],[124,92,68,0.23216269659134162],[124,92,69,0.23332074229200467],[124,92,70,0.23449708605198438],[124,92,71,0.23569267727166965],[124,92,72,0.23690841159105847],[124,92,73,0.2381451280555456],[124,92,74,0.23940360624163587],[124,92,75,0.2406845633424456],[124,92,76,0.24198865121308932],[124,92,77,0.243316453375921],[124,92,78,0.24466848198562496],[124,92,79,0.2460451747541747],[124,93,64,0.221978827302127],[124,93,65,0.223093928218571],[124,93,66,0.22422422672516204],[124,93,67,0.22537083829006757],[124,93,68,0.22653483481284514],[124,93,69,0.2277172419669536],[124,93,70,0.22891903650272144],[124,93,71,0.23014114351072773],[124,93,72,0.231384433645614],[124,93,73,0.23264972031028297],[124,93,74,0.2339377568005896],[124,93,75,0.23524923341038517],[124,93,76,0.23658477449701631],[124,93,77,0.23794493550724227],[124,93,78,0.23933019996357174],[124,93,79,0.24074097641103215],[124,94,64,0.21615977431973807],[124,94,65,0.21729399174764763],[124,94,66,0.218444618273945],[124,94,67,0.21961274774964118],[124,94,68,0.2207994296836408],[124,94,69,0.2220056666010104],[124,94,70,0.22323241136227356],[124,94,71,0.22448056444368697],[124,94,72,0.22575097117851678],[124,94,73,0.22704441895926974],[124,94,74,0.22836163440098556],[124,94,75,0.22970328046545213],[124,94,76,0.23106995354644205],[124,94,77,0.23246218051593942],[124,94,78,0.23388041573135127],[124,94,79,0.23532503800372379],[124,95,64,0.21023857476753852],[124,95,65,0.21139124738244702],[124,95,66,0.21256157198160558],[124,95,67,0.21375062062591044],[124,95,68,0.21495942023117232],[124,95,69,0.21618894994175258],[124,95,70,0.21744013846579913],[124,95,71,0.2187138613720318],[124,95,72,0.22001093834810015],[124,95,73,0.2213321304204644],[124,95,74,0.22267813713591078],[124,95,75,0.22404959370455718],[124,95,76,0.22544706810445292],[124,95,77,0.22687105814773767],[124,95,78,0.22832198850835667],[124,95,79,0.22980020771134985],[124,96,64,0.20421825871448168],[124,96,65,0.2053887230707797],[124,96,66,0.2065781129781346],[124,96,67,0.20778747854383267],[124,96,68,0.20901782389812879],[124,96,69,0.21027010458286133],[124,96,70,0.21154522490223648],[124,96,71,0.21284403523573625],[124,96,72,0.21416732931316979],[124,96,73,0.21551584145181807],[124,96,74,0.21689024375578853],[124,96,75,0.2182911432774291],[124,96,76,0.21971907914090866],[124,96,77,0.22117451962792967],[124,96,78,0.22265785922556758],[124,96,79,0.22416941563625736],[124,97,64,0.1981019309689258],[124,97,65,0.1992895220275126],[124,97,66,0.20049734216480108],[124,97,67,0.20172641938055202],[124,97,68,0.20297773483712384],[124,97,69,0.20425222026266987],[124,97,70,0.2055507553170805],[124,97,71,0.20687416492062094],[124,97,72,0.2082232165452848],[124,97,73,0.20959861746881592],[124,97,74,0.21100101199151194],[124,97,75,0.2124309786156608],[124,97,76,0.21388902718771707],[124,97,77,0.2153755960031829],[124,97,78,0.21689104887418964],[124,97,79,0.21843567215979964],[124,98,64,0.19189276930520272],[124,98,65,0.1930968209630356],[124,98,66,0.1943224344449167],[124,98,67,0.19557061549885896],[124,98,68,0.19684232214723668],[124,98,69,0.1981384621041708],[124,98,70,0.19945989015623156],[124,98,71,0.20080740550641185],[124,98,72,0.20218174908139103],[124,98,73,0.20358360080203952],[124,98,74,0.20501357681728138],[124,98,75,0.20647222670116233],[124,98,76,0.20796003061323237],[124,98,77,0.2094773964222073],[124,98,78,0.21102465679290455],[124,98,79,0.21260206623647415],[124,99,64,0.1855940226341561],[124,99,65,0.18681386825521873],[124,99,66,0.1880566368976318],[124,99,67,0.18932331192323643],[124,99,68,0.19061482805271868],[124,99,69,0.1919320687967822],[124,99,70,0.19327586385121565],[124,99,71,0.19464698645580353],[124,99,72,0.19604615071710485],[124,99,73,0.1974740088950448],[124,99,74,0.1989311486534417],[124,99,75,0.20041809027431307],[124,99,76,0.20193528383607162],[124,99,77,0.20348310635557415],[124,99,78,0.20506185889402195],[124,99,79,0.20667176362672884],[124,100,64,0.17920900911750426],[124,100,65,0.18044398206471596],[124,100,66,0.18170326689461697],[124,100,67,0.18298782445835293],[124,100,68,0.18429856602372102],[124,100,69,0.18563635071973056],[124,100,70,0.18700198294563475],[124,100,71,0.18839620974438165],[124,100,72,0.1898197181405069],[124,100,73,0.19127313244241628],[124,100,74,0.19275701150917923],[124,100,75,0.19427184598167568],[124,100,76,0.19581805547820896],[124,100,77,0.19739598575454836],[124,100,78,0.19900590582839567],[124,100,79,0.20064800506829839],[124,101,64,0.17274111422585808],[124,101,65,0.17399054839344535],[124,101,66,0.17526571015946268],[124,101,67,0.17656753774983036],[124,101,68,0.1778969188388762],[124,101,69,0.1792546880068822],[124,101,70,0.1806416241626802],[124,101,71,0.18205844793124032],[124,101,72,0.18350581900627944],[124,101,73,0.1849843334678326],[124,101,74,0.18649452106491432],[124,101,75,0.18803684246310592],[124,101,76,0.18961168645718707],[124,101,77,0.1912193671487713],[124,101,78,0.1928601210889424],[124,101,79,0.1945341043859125],[124,102,64,0.16619378874071772],[124,102,65,0.16745701908657018],[124,102,66,0.168747418770118],[124,102,67,0.17006590328761],[124,102,68,0.1714133365900531],[124,102,69,0.1727905285533446],[124,102,70,0.17419823241402638],[124,102,71,0.1756371421706115],[124,102,72,0.1771078899505037],[124,102,73,0.1786110433424573],[124,102,74,0.18014710269470263],[124,102,75,0.18171649837857334],[124,102,76,0.18331958801775333],[124,102,77,0.18495665368310454],[124,102,78,0.18662789905307087],[124,102,79,0.1883334465396796],[124,103,64,0.15957054670029247],[124,103,65,0.16084690977782307],[124,103,66,0.16215190910421373],[124,103,67,0.16348643735176083],[124,103,68,0.16485133462913254],[124,103,69,0.16624738596368055],[124,103,70,0.1676753187499529],[124,103,71,0.1691358001643522],[124,103,72,0.17062943454596485],[124,103,73,0.17215676074350356],[124,103,74,0.17371824942849418],[124,103,75,0.17531430037453882],[124,103,76,0.1769452397027737],[124,103,77,0.17861131709348455],[124,103,78,0.18031270296387375],[124,103,79,0.18204948561200068],[124,104,64,0.15287496328897027],[124,104,65,0.15416379777800376],[124,104,66,0.15548275972709874],[124,104,67,0.15683271890056133],[124,104,68,0.15821449145663052],[124,104,69,0.15962883744156825],[124,104,70,0.16107645825052397],[124,104,71,0.1625579940551225],[124,104,72,0.1640740211977959],[124,104,73,0.16562504955280527],[124,104,74,0.16721151985408356],[124,104,75,0.1688338009897266],[124,104,76,0.17049218726325777],[124,104,77,0.1721868956216237],[124,104,78,0.17391806284991668],[124,104,79,0.17568574273284843],[124,105,64,0.14611067267077116],[124,105,65,0.14741131990698036],[124,105,66,0.14874360922292007],[124,105,67,0.15010838740118065],[124,105,68,0.15150644655250162],[124,105,69,0.15293852162123406],[124,105,70,0.15440528785815533],[124,105,71,0.15590735826057905],[124,105,72,0.15744528097978627],[124,105,73,0.15901953669571933],[124,105,74,0.16063053595907323],[124,105,75,0.16227861650060865],[124,105,76,0.16396404050781482],[124,105,77,0.16568699186887637],[124,105,78,0.16744757338394378],[124,105,79,0.1692458039437285],[124,106,64,0.13928136576662364],[124,106,65,0.1405931702690364],[124,106,66,0.1419381539685884],[124,106,67,0.14331714060280637],[124,106,68,0.14473089814896095],[124,106,69,0.1461801363405002],[124,106,70,0.14766550415140695],[124,106,71,0.14918758724842845],[124,106,72,0.15074690541119923],[124,106,73,0.15234390992020147],[124,106,74,0.15397898091269568],[124,106,75,0.1556524247064494],[124,106,76,0.15736447109138657],[124,106,77,0.15911527058911734],[124,106,78,0.16090489168034489],[124,106,79,0.16273331800016982],[124,107,64,0.13239078797528658],[124,107,65,0.1337130979713838],[124,107,66,0.13507014585045002],[124,107,67,0.13646273225203515],[124,107,68,0.13789160094515118],[124,107,69,0.13935743635527137],[124,107,70,0.14086086105983014],[124,107,71,0.142402433252164],[124,107,72,0.14398264417392181],[124,107,73,0.14560191551588253],[124,107,74,0.14726059678732045],[124,107,75,0.14895896265373648],[124,107,76,0.15069721024308608],[124,107,77,0.15247545642046045],[124,107,78,0.15429373503121596],[124,107,79,0.15615199411257547],[124,108,64,0.1254427368382598],[124,108,65,0.12677490478618714],[124,108,66,0.12814338992400964],[124,108,67,0.12954896975087438],[124,108,68,0.1309923637639916],[124,108,69,0.13247423099580086],[124,108,70,0.1339951675202058],[124,108,71,0.13555570392782573],[124,108,72,0.1371563027702848],[124,108,73,0.13879735597348208],[124,108,74,0.1404791822199799],[124,108,75,0.14220202430033124],[124,108,76,0.14396604643347322],[124,108,77,0.14577133155614752],[124,108,78,0.1476178785813393],[124,108,79,0.1495055996257606],[124,109,64,0.11844105964851681],[124,109,65,0.11978244275593097],[124,109,66,0.12116174201653707],[124,109,67,0.12257971175718413],[124,109,68,0.12403704715104985],[124,109,69,0.1255343817645702],[124,109,70,0.1270722850740098],[124,109,71,0.12865125995161802],[124,109,72,0.13027174012139264],[124,109,73,0.13193408758439534],[124,109,74,0.13363859001375494],[124,109,75,0.1353854581191799],[124,109,76,0.13717482298110795],[124,109,77,0.13900673335445052],[124,109,78,0.14088115294192827],[124,109,79,0.1427979576370204],[124,110,64,0.11138965100287901],[124,110,65,0.11273961174195013],[124,110,66,0.11412910627237599],[124,110,67,0.11555886572738233],[124,110,68,0.11702956091524924],[124,110,69,0.11854179987560387],[124,110,70,0.12009612540592651],[124,110,71,0.12169301255820675],[124,110,72,0.12333286610577898],[124,110,73,0.12501601798027534],[124,110,74,0.12674272467883752],[124,110,75,0.1285131646414034],[124,110,76,0.1303274355982013],[124,110,77,0.13218555188740638],[124,110,78,0.13408744174295667],[124,110,79,0.13603294455255188],[124,111,64,0.10429245029838302],[124,111,65,0.10565035691647551],[124,111,66,0.10704943264130845],[124,111,67,0.10849038540176215],[124,111,68,0.10997386161176753],[124,111,69,0.111500443735568],[124,111,70,0.11307064782375897],[124,111,71,0.11468492102004418],[124,111,72,0.11634363903873945],[124,111,73,0.11804710361295773],[124,111,74,0.1197955399136213],[124,111,75,0.12158909393911488],[124,111,76,0.12342782987571221],[124,111,77,0.12531172742873148],[124,111,78,0.12724067912441667],[124,111,79,0.12921448758256915],[124,112,64,0.09715343917246944],[124,112,65,0.09851866619802208],[124,112,66,0.09992671430980293],[124,112,67,0.10137826823225088],[124,112,68,0.10287394996695359],[124,112,69,0.10441431636648202],[124,112,70,0.1059998566795658],[124,112,71,0.10763099006755172],[124,112,72,0.10930806309217189],[124,112,73,0.11103134717455754],[124,112,74,0.112801036025647],[124,112,75,0.11461724304779408],[124,112,76,0.11647999870771752],[124,112,77,0.11838924788074362],[124,112,78,0.12034484716633731],[124,112,79,0.12234656217494766],[124,113,64,0.08997663888681007],[124,113,65,0.09134856762993654],[124,113,66,0.09276498507496023],[124,113,67,0.09422655275242786],[124,113,68,0.09573386824507962],[124,113,69,0.09728746276986139],[124,113,70,0.09888779873184239],[124,113,71,0.10053526724997736],[124,113,72,0.10223018565473896],[124,113,73,0.10397279495755923],[124,113,74,0.1057632572922253],[124,113,75,0.10760165332803945],[124,113,76,0.10948797965487989],[124,113,77,0.11142214614011847],[124,113,78,0.11340397325738621],[124,113,79,0.11543318938721853],[124,114,64,0.08276610765515263],[124,114,65,0.0841441267024855],[124,114,66,0.08556831666154024],[124,114,67,0.08703931589017949],[124,114,68,0.08855769755730641],[124,114,69,0.09012396723266863],[124,114,70,0.09173856044912287],[124,114,71,0.09340184023730602],[124,114,72,0.09511409463273418],[124,114,73,0.09687553415527084],[124,114,74,0.09868628926110806],[124,114,75,0.10054640776707086],[124,114,76,0.1024558522473823],[124,114,77,0.10441449740284364],[124,114,78,0.1064221274024229],[124,114,79,0.10847843319728007],[124,115,64,0.075525937914863],[124,115,65,0.07690944361816121],[124,115,66,0.07834081598174819],[124,115,67,0.07982067022267164],[124,115,68,0.08134955511254544],[124,115,69,0.08292795057475583],[124,115,70,0.08455626525468701],[124,115,71,0.08623483406290472],[124,115,72,0.08796391569132972],[124,115,73,0.08974369010233157],[124,115,74,0.09157425599089569],[124,115,75,0.09345562821966807],[124,115,76,0.0953877352270171],[124,115,77,0.0973704164080661],[124,115,78,0.09940341946869258],[124,115,79,0.10148639775251961],[124,116,64,0.068260253542411],[124,116,65,0.06964865050045277],[124,116,66,0.07108662233802426],[124,116,67,0.07257476117388667],[124,116,68,0.07411359141045859],[124,116,69,0.07570356733804046],[124,116,70,0.0773450707126127],[124,116,71,0.07903840830714559],[124,116,72,0.08078380943645158],[124,116,73,0.08258142345550973],[124,116,74,0.08443131723142022],[124,116,75,0.08633347258878682],[124,116,76,0.08828778372866974],[124,116,77,0.09029405462106493],[124,116,78,0.09235199637090008],[124,116,79,0.09446122455757844],[124,117,64,0.06097320701246495],[124,117,65,0.06236590854574858],[124,117,66,0.06380990456850516],[124,117,67,0.0653057641543886],[124,117,68,0.06685398737626647],[124,117,69,0.06845500291708262],[124,117,70,0.07010916565484526],[124,117,71,0.07181675422167627],[124,117,72,0.07357796853695142],[124,117,73,0.07539292731446601],[124,117,74,0.07726166554377639],[124,117,75,0.07918413194552282],[124,117,76,0.08116018640087114],[124,117,77,0.08318959735502979],[124,117,78,0.08527203919483711],[124,117,79,0.08740708960044147],[124,118,64,0.05366897650099367],[124,118,65,0.055065405118767174],[124,118,66,0.05651485813555429],[124,118,67,0.05801788164371585],[124,118,68,0.05957495143775865],[124,118,69,0.06118647063146254],[124,118,70,0.06285276724967798],[124,118,71,0.06457409179473128],[124,118,72,0.06635061478746918],[124,118,73,0.0681824242828718],[124,118,74,0.0700695233603918],[124,118,75,0.07201182758881758],[124,118,76,0.07400916246580502],[124,118,77,0.07606126083202946],[124,118,78,0.0781677602599527],[124,118,79,0.08032820041723432],[124,119,64,0.04635176293218474],[124,119,65,0.047751350791324754],[124,119,66,0.04920570215716935],[124,119,67,0.05071534021520974],[124,119,68,0.05228071654431776],[124,119,69,0.05390220873976448],[124,119,70,0.05558011801145174],[124,119,71,0.057314666757296684],[124,119,72,0.0591059961117944],[124,119,73,0.06095416346969512],[124,119,74,0.06285913998494808],[124,119,75,0.06482080804471463],[124,119,76,0.06683895871858853],[124,119,77,0.0689132891829839],[124,119,78,0.07104340012067828],[124,119,79,0.07322879309554153],[124,120,64,0.039025786968996556],[124,120,65,0.04042797632426015],[124,120,66,0.0418866763810854],[124,120,67,0.04340238750309805],[124,120,68,0.04497553712777469],[124,120,69,0.046606477394987245],[124,120,70,0.04829548275129747],[124,120,71,0.05004274752994492],[124,120,72,0.05184838350655052],[124,120,73,0.05371241743047345],[124,120,74,0.05563478853197579],[124,120,75,0.05761534600499074],[124,120,76,0.059653846465642646],[124,120,77,0.06174995138646733],[124,120,78,0.0639032245063314],[124,120,79,0.06611312921607371],[124,121,64,0.031695285947713536],[124,121,65,0.03309952959288304],[124,121,66,0.03456203810194364],[124,121,67,0.036083289112200934],[124,121,68,0.03766368600546344],[124,121,69,0.039303555541750246],[124,121,70,0.04100314546928413],[124,121,71,0.042762622110709414],[124,121,72,0.044582067925565017],[124,121,73,0.04646147904894171],[124,121,74,0.04840076280648248],[124,121,75,0.05039973520552321],[124,121,76,0.052458118402516796],[124,121,77,0.054575538146694025],[124,121,78,0.05675152119995852],[124,121,79,0.05898549273303699],[124,122,64,0.0243645107563214],[124,122,65,0.025770272455763854],[124,122,66,0.02723605902134041],[124,122,67,0.028762325470077066],[124,122,68,0.0303494512252927],[124,122,69,0.03199773775511083],[124,122,70,0.033707406187791056],[124,122,71,0.03547859490381239],[124,122,72,0.03731135710474365],[124,122,73,0.039205658358827056],[124,122,74,0.04116137412343779],[124,122,75,0.0431782872442118],[124,122,76,0.04525608543098747],[124,122,77,0.04739435871051645],[124,122,78,0.049592596855935867],[124,122,79,0.051850186793029884],[124,123,64,0.017037722656512932],[124,123,65,0.018444477566676998],[124,123,66,0.019913022050569607],[124,123,67,0.021443788621421267],[124,123,68,0.023037132852645248],[124,123,69,0.024693331020803844],[124,123,70,0.026412577725919317],[124,123,71,0.02819498348906402],[124,123,72,0.030040572327262205],[124,123,73,0.03194927930563174],[124,123,74,0.03392094806692614],[124,123,75,0.035955328338272086],[124,123,76,0.038052073415245635],[124,123,77,0.0402107376232449],[124,123,78,0.04243077375614701],[124,123,79,0.0447115304922826],[124,124,64,0.009719190049698179],[124,124,65,0.011126425130068618],[124,124,66,0.012597218056430548],[124,124,67,0.014131978965085334],[124,124,68,0.01573103969947931],[124,124,69,0.017394651457278587],[124,124,70,0.019122982415309075],[124,124,71,0.02091611533229809],[124,124,72,0.022774045129447695],[124,124,73,0.024696676448768495],[124,124,74,0.026683821189336876],[124,124,75,0.02873519602126584],[124,124,76,0.03085041987753867],[124,124,77,0.03302901142365733],[124,124,78,0.035270386505097395],[124,124,79,0.03757385557260284],[124,125,64,0.0024131851868368637],[124,125,65,0.0038203995998683515],[124,125,66,0.005292942549918744],[124,125,67,0.006831201933541142],[124,125,68,0.008435485995446412],[124,125,69,0.010106020979347763],[124,125,70,0.011842948757184724],[124,125,71,0.013646324436666801],[124,125,72,0.015516113947162569],[124,125,73,0.017452191603867573],[124,125,74,0.019454337650410602],[124,125,75,0.021522235779689924],[124,125,76,0.023655470633088038],[124,125,77,0.025853525278018208],[124,125,78,0.028115778663793],[124,125,79,0.030441503055847807],[124,126,64,-0.00487601917810232],[124,126,65,-0.003469313678549857],[124,126,66,-0.001995507682392983],[124,126,67,-4.5423538540811936E-4],[124,126,68,0.0011547880008356826],[124,126,69,0.002831763903257456],[124,126,70,0.00457680802043392],[124,126,71,0.006389947934599904],[124,126,72,0.008271120702506463],[124,126,73,0.0102201704250664],[124,126,74,0.012236845795951856],[124,126,75,0.01432079762893046],[124,126,76,0.016471576364092577],[124,126,77,0.018688629552919944],[124,126,78,0.020971299322188885],[124,126,79,0.023318819816738667],[124,127,64,-0.012144153190674523],[124,127,65,-0.01073843188287782],[124,127,66,-0.009263838003905178],[124,127,67,-0.007720027684289588],[124,127,68,-0.006106739438277886],[124,127,69,-0.004423796506444089],[124,127,70,-0.0026711092189029007],[124,127,71,-8.486773791932523E-4],[124,127,72,0.0010434073312068914],[124,127,73,0.003004958927655621],[124,127,74,0.005035694676581048],[124,127,75,0.007135232628959209],[124,127,76,0.009303089133188891],[124,127,77,0.011538676327313313],[124,127,78,0.013841299610581448],[124,127,79,0.016210155094381284],[124,128,64,-0.019386953354674996],[124,128,65,-0.017982678185045065],[124,128,66,-0.016507759410663736],[124,128,67,-0.014961874929184327],[124,128,68,-0.013344786392871955],[124,128,69,-0.01165634154842854],[124,128,70,-0.009896476596919723],[124,128,71,-0.008065218573869215],[124,128,72,-0.006162687749487361],[124,128,73,-0.004189100049106553],[124,128,74,-0.002144769493660492],[124,128,75,-3.0110660416693413E-5],[124,128,76,0.0021543588361858657],[124,128,77,0.004408015843546997],[124,128,78,0.0067301291497561255],[124,128,79,0.00911985694231332],[124,129,64,-0.02660016604721882],[124,129,65,-0.025197785279232998],[124,129,66,-0.02372299207133466],[124,129,67,-0.02217548591069829],[124,129,68,-0.020555051411982994],[124,129,69,-0.01886156065468403],[124,129,70,-0.017094975540091983],[124,129,71,-0.01525535016792312],[124,129,72,-0.013342833232591222],[124,129,73,-0.01135767043919167],[124,129,74,-0.009300206939033995],[124,129,75,-0.0071708897849328546],[124,129,76,-0.0049702704061130865],[124,129,77,-0.0026990071027676033],[124,129,78,-3.5786756028433064E-4],[124,129,79,0.00205226861689467],[124,130,64,-0.033779551089823556],[124,130,65,-0.03237949896636927],[124,130,66,-0.0309052689241186],[124,130,67,-0.029356581852310604],[124,130,68,-0.027733245141515317],[124,130,69,-0.02603515501881759],[124,130,70,-0.024262298902119617],[124,130,71,-0.022414757773627114],[124,130,72,-0.02049270857248664],[124,130,73,-0.01849642660664985],[124,130,74,-0.016426287983792753],[124,130,75,-0.01428277206151074],[124,130,76,-0.012066463916633019],[124,130,77,-0.009778056833706472],[124,130,78,-0.007418354812657624],[124,130,79,-0.004988275095597072],[124,131,64,-0.040920885375667515],[124,131,65,-0.03952358179527837],[124,131,66,-0.038050339330780725],[124,131,67,-0.03650090007628182],[124,131,68,-0.03487509400103328],[124,131,69,-0.033172841282746335],[124,131,70,-0.03139415465954365],[124,131,71,-0.029539141800610347],[124,131,72,-0.02760800769551708],[124,131,73,-0.025601057062283217],[124,131,74,-0.02351869677401608],[124,131,75,-0.02136143830434245],[124,131,76,-0.01912990019147598],[124,131,77,-0.016824810520972067],[124,131,78,-0.014447009427178137],[124,131,79,-0.011997451613345866],[124,132,64,-0.048019966553216165],[124,132,65,-0.04662581676067645],[124,132,66,-0.04515397278798661],[124,132,67,-0.04360419772730795],[124,132,68,-0.04197634391872074],[124,132,69,-0.04027035528196177],[124,132,70,-0.038486269666322404],[124,132,71,-0.03662422121876996],[124,132,72,-0.0346844427702635],[124,132,73,-0.03266726824033561],[124,132,74,-0.03057313505977166],[124,132,75,-0.02840258661160655],[124,132,76,-0.026156274690280257],[124,132,77,-0.02383496197900603],[124,132,78,-0.02143952454535525],[124,132,79,-0.01897095435502938],[124,133,64,-0.055072616765846405],[124,133,65,-0.05368201105764414],[124,133,66,-0.052211962695574377],[124,133,67,-0.050662255553553415],[124,133,68,-0.04903276412414426],[124,133,69,-0.04732345584900166],[124,133,70,-0.04553439346700405],[124,133,71,-0.043665737380143455],[124,133,72,-0.04171774803713579],[124,133,73,-0.03969078833482986],[124,133,74,-0.03758532603724296],[124,133,75,-0.035401936212443696],[124,133,76,-0.0331413036871252],[124,133,77,-0.030804225518918482],[124,133,78,-0.028391613486455913],[124,133,79,-0.02590449659714944],[124,134,64,-0.062074686447652794],[124,134,65,-0.06068799989275897],[124,134,66,-0.05922013018194772],[124,134,67,-0.05767088174524504],[124,134,68,-0.05604015099900017],[124,134,69,-0.05432792867531078],[124,134,70,-0.05253430216867361],[124,134,71,-0.05065945789992832],[124,134,72,-0.04870368369746014],[124,134,73,-0.04666737119573561],[124,134,74,-0.044551018251004826],[124,134,75,-0.04235523137438291],[124,134,76,-0.04008072818216357],[124,134,77,-0.037728339863405624],[124,134,78,-0.03529901366480792],[124,134,79,-0.03279381539283566],[124,135,64,-0.06902205817561868],[124,135,65,-0.06763965035207098],[124,135,66,-0.06617432798677003],[124,135,67,-0.06462591583101074],[124,135,68,-0.06299433198602888],[124,135,69,-0.061279590231675396],[124,135,70,-0.05948180237185974],[124,135,71,-0.05760118059682784],[124,135,72,-0.05563803986224347],[124,135,73,-0.05359280028514768],[124,135,74,-0.05146598955662385],[124,135,75,-0.04925824537139012],[124,135,76,-0.046970317874163725],[124,135,77,-0.044603072122843423],[124,135,78,-0.042157490568524136],[124,135,79,-0.03963467555230349],[124,136,64,-0.07591065057778135],[124,136,65,-0.07453286532555181],[124,136,66,-0.07307044440059551],[124,136,67,-0.07152323263159388],[124,136,68,-0.06989116955572827],[124,136,69,-0.0681742917468604],[124,136,70,-0.06637273516003328],[124,136,71,-0.06448673749235834],[124,136,72,-0.06251664056025352],[124,136,73,-0.06046289269311156],[124,136,74,-0.058326051143223534],[124,136,75,-0.05610678451217965],[124,136,76,-0.05380587519359281],[124,136,77,-0.05142422183219064],[124,136,78,-0.04896284179928867],[124,136,79,-0.04642287368460685],[124,137,64,-0.08273642229758993],[124,137,65,-0.08136358748821382],[124,137,66,-0.07990440726162618],[124,137,67,-0.0783587462711387],[124,137,68,-0.07672656523106247],[124,137,69,-0.07500792324464578],[124,137,70,-0.07320298014789084],[124,137,71,-0.07131199886931094],[124,137,72,-0.06933534780560058],[124,137,73,-0.06727350321328784],[124,137,74,-0.06512705161620291],[124,137,75,-0.06289669222898009],[124,137,76,-0.06058323939643884],[124,137,77,-0.05818762504889197],[124,137,78,-0.055710901173390504],[124,137,79,-0.05315424230087207],[124,138,64,-0.08949537601461355],[124,138,65,-0.08812780333805814],[124,138,66,-0.08667218800976095],[124,138,67,-0.08512841424620576],[124,138,68,-0.08349646367032215],[124,138,69,-0.081776417639423],[124,138,70,-0.07996845958858378],[124,138,71,-0.0780728773895275],[124,138,72,-0.07609006572498711],[124,138,73,-0.07402052847861496],[124,138,74,-0.07186488114027179],[124,138,75,-0.06962385322691456],[124,138,76,-0.06729829071892712],[124,138,77,-0.06488915851194299],[124,138,78,-0.062397542884168766],[124,138,79,-0.05982465397917469],[124,139,64,-0.09618356252123716],[124,139,65,-0.09482154729049086],[124,139,66,-0.09336980579757015],[124,139,67,-0.09182824155215608],[124,139,68,-0.09019685680777834],[124,139,69,-0.08847575488998705],[124,139,70,-0.08666514253953284],[124,139,71,-0.08476533227062955],[124,139,72,-0.08277674474426122],[124,139,73,-0.08069991115661046],[124,139,74,-0.07853547564243823],[124,139,75,-0.07628419769363237],[124,139,76,-0.0739469545927729],[124,139,77,-0.07152474386175844],[124,139,78,-0.0690186857255084],[124,139,79,-0.06643002559070088],[124,140,64,-0.1027970848556592],[124,140,65,-0.10144090582951448],[124,140,66,-0.09999333165850921],[124,140,67,-0.0984542848672163],[124,140,68,-0.09682378805243896],[124,140,69,-0.09510196621183564],[124,140,70,-0.09328904908713465],[124,140,71,-0.09138537352201082],[124,140,72,-0.08939138583458417],[124,140,73,-0.08730764420462078],[124,140,74,-0.08513482107526271],[124,140,75,-0.08287370556950646],[124,140,76,-0.08052520592127799],[124,140,77,-0.07809035192114633],[124,140,78,-0.07557029737669407],[124,140,79,-0.07296632258750102],[124,141,64,-0.10933210249095127],[124,141,65,-0.10798202171546645],[124,141,66,-0.10653889273213324],[124,141,67,-0.10500265679398624],[124,141,68,-0.10337335654467183],[124,141,69,-0.10165113834774309],[124,141,70,-0.0998362546301298],[124,141,71,-0.09792906623985764],[124,141,72,-0.09593004481797762],[124,141,73,-0.09383977518478248],[124,141,74,-0.09165895774013921],[124,141,75,-0.08938841087815719],[124,141,76,-0.08702907341604016],[124,141,77,-0.08458200703716312],[124,141,78,-0.0820483987483912],[124,141,79,-0.0794295633516009],[124,142,64,-0.11578483558049313],[124,142,65,-0.11444109824960613],[124,142,66,-0.11300267654662655],[124,142,67,-0.11146953015870098],[124,142,68,-0.10984172147100602],[124,142,69,-0.1081194178969146],[124,142,70,-0.10630289422193817],[124,142,71,-0.1043925349615078],[124,142,72,-0.10238883673256005],[124,142,73,-0.10029241063900729],[124,142,74,-0.09810398467091519],[124,142,75,-0.09582440611761311],[124,142,76,-0.09345464399457948],[124,142,77,-0.09099579148414949],[124,142,78,-0.08844906839005817],[124,142,79,-0.08581582360577877],[124,143,64,-0.12215156925941462],[124,143,65,-0.12081440359518969],[124,143,66,-0.11938093535827576],[124,143,67,-0.11785114236788163],[124,143,68,-0.11622510643674211],[124,143,69,-0.11450301570235577],[124,143,70,-0.11268516697159914],[124,143,71,-0.11077196807878065],[124,143,72,-0.10876394025710534],[124,143,73,-0.1066617205236231],[124,143,74,-0.10446606407748638],[124,143,75,-0.10217784671174579],[124,143,76,-0.09979806723851903],[124,143,77,-0.09732784992758747],[124,143,78,-0.09476844695842856],[124,143,79,-0.09212124088564666],[124,144,64,-0.12842865800222691],[124,144,65,-0.12709827515521177],[124,144,66,-0.1256699905480717],[124,144,67,-0.12414379982255219],[124,144,68,-0.12251980389655703],[124,144,69,-0.12079821129664148],[124,144,70,-0.11897934050349235],[124,144,71,-0.11706362231045964],[124,144,72,-0.1150516021951058],[124,144,73,-0.11294394270385166],[124,144,74,-0.11074142584954194],[124,144,75,-0.10844495552215505],[124,144,76,-0.1060555599125017],[124,144,77,-0.10357439394895773],[124,144,78,-0.10100274174724289],[124,144,79,-0.09834201907321083],[124,145,64,-0.1346125300367934],[124,145,65,-0.13328912400696702],[124,145,66,-0.13186623707558898],[124,145,67,-0.13034388239017913],[124,145,68,-0.12872217964324917],[124,145,69,-0.12700135740622942],[124,145,70,-0.1251817554759973],[124,145,71,-0.12326382723408003],[124,145,72,-0.12124814201849043],[124,145,73,-0.11913538750827768],[124,145,74,-0.11692637212061674],[124,145,75,-0.11462202742065908],[124,145,76,-0.11222341054399154],[124,145,77,-0.10973170663174692],[124,145,78,-0.10714823127837891],[124,145,79,-0.10447443299206605],[124,146,64,-0.1406996918143224],[124,146,65,-0.1393834393931087],[124,146,66,-0.13796614798982554],[124,146,67,-0.136447847934011],[124,146,68,-0.13482867735431137],[124,146,69,-0.13310888451400638],[124,146,70,-0.13128883015876525],[124,146,71,-0.12936898987669965],[124,146,72,-0.12734995647067882],[124,146,73,-0.12523244234298403],[124,146,74,-0.12301728189212924],[124,146,75,-0.12070543392206934],[124,146,76,-0.11829798406364256],[124,146,77,-0.11579614720828946],[124,146,78,-0.11320126995406543],[124,146,79,-0.11051483306390664],[124,147,64,-0.1466867325355431],[124,147,65,-0.1453777932693715],[124,147,66,-0.14396627899716374],[124,147,67,-0.14245223689998088],[124,147,68,-0.14083582319648502],[124,147,69,-0.13911730548022339],[124,147,70,-0.13729706506877282],[124,147,71,-0.1353755993648197],[124,147,72,-0.13335352422913427],[124,147,73,-0.13123157636552085],[124,147,74,-0.1290106157175669],[124,147,75,-0.12669162787741284],[124,147,76,-0.12427572650639673],[124,147,77,-0.12176415576760158],[124,147,78,-0.11915829277033874],[124,147,79,-0.1164596500265116],[124,148,64,-0.15257032873321652],[124,148,65,-0.15126884490910786],[124,148,66,-0.1498632730866074],[124,148,67,-0.1483536769613264],[124,148,68,-0.1467402304884613],[124,148,69,-0.1450232202219779],[124,148,70,-0.14320304766530523],[124,148,71,-0.1412802316336026],[124,148,72,-0.13925541062756785],[124,148,73,-0.13712934521886155],[124,148,74,-0.13490292044697305],[124,148,75,-0.1325771482277548],[124,148,76,-0.1301531697734648],[124,148,77,-0.12763225802436606],[124,148,78,-0.1250158200918956],[124,148,79,-0.1223053997133614],[124,149,64,-0.15834724891067808],[124,149,65,-0.15705334556433292],[124,149,66,-0.15565386521198332],[124,149,67,-0.15414888772061774],[124,149,68,-0.1525386044214071],[124,149,69,-0.15082332045093094],[124,149,70,-0.14900345710356433],[124,149,71,-0.14707955419508723],[124,149,72,-0.1450522724374873],[124,149,73,-0.14292239582503152],[124,149,74,-0.14069083403142868],[124,149,75,-0.13835862481831174],[124,149,76,-0.13592693645488096],[124,149,77,-0.13339707014875424],[124,149,78,-0.13077046248803725],[124,149,79,-0.12804868789457569],[124,150,64,-0.16401435823655552],[124,150,65,-0.16272814318342355],[124,150,66,-0.16133488703126297],[124,150,67,-0.1598346854693431],[124,150,68,-0.15822774683747576],[124,150,69,-0.15651439446941096],[124,150,70,-0.15469506904704877],[124,150,71,-0.15277033096554038],[124,150,72,-0.1507408627092376],[124,150,73,-0.1486074712385692],[124,150,74,-0.14637109038767482],[124,150,75,-0.14403278327301083],[124,150,76,-0.14159374471278274],[124,150,77,-0.13905530365723895],[124,150,78,-0.13641892562984947],[124,150,79,-0.1336862151793241],[124,151,64,-0.16956862329582734],[124,151,65,-0.16829018718563782],[124,151,66,-0.16690327170315822],[124,151,67,-0.16540798800521417],[124,151,68,-0.16380456106646057],[124,151,69,-0.16209333202506404],[124,151,70,-0.1602747605388678],[124,151,71,-0.15834942715211697],[124,151,72,-0.15631803567269642],[124,151,73,-0.15418141555997056],[124,151,74,-0.1519405243230405],[124,151,75,-0.1495964499296487],[124,151,76,-0.14715041322557332],[124,151,77,-0.14460377036455707],[124,151,78,-0.1419580152487837],[124,151,79,-0.13921478197986614],[124,152,64,-0.17500711689690285],[124,152,65,-0.17373653329213312],[124,152,66,-0.17235605874067983],[124,152,67,-0.17086581950687296],[124,152,68,-0.16926605682027152],[124,152,69,-0.16755712922373722],[124,152,70,-0.16573951493167505],[124,152,71,-0.16381381419850105],[124,152,72,-0.16178075169730832],[124,152,73,-0.15964117890880625],[124,152,74,-0.15739607652035748],[124,152,75,-0.15504655683533597],[124,152,76,-0.15259386619265625],[124,152,77,-0.15003938739650724],[124,152,78,-0.14738464215631908],[124,152,79,-0.14463129353691095],[124,153,64,-0.18032702293489922],[124,153,65,-0.1790643484136586],[124,153,66,-0.17769039892182914],[124,153,67,-0.17620531546617557],[124,153,68,-0.17460935514541098],[124,153,69,-0.1729028935007627],[124,153,70,-0.17108642687638898],[124,153,71,-0.1691605747897107],[124,153,72,-0.16712608231162607],[124,153,73,-0.16498382245668275],[124,153,74,-0.1627347985830342],[124,153,75,-0.16038014680240453],[124,153,76,-0.1579211383999064],[124,153,77,-0.15535918226375223],[124,153,78,-0.1526958273248833],[124,153,79,-0.14993276500646258],[124,154,64,-0.18552564131122795],[124,154,65,-0.18427091559503894],[124,154,66,-0.18290355925754065],[124,154,67,-0.18142372767816584],[124,154,68,-0.1798316934335673],[124,154,69,-0.17812784865076225],[124,154,70,-0.17631270736982274],[124,154,71,-0.1743869079161765],[124,154,72,-0.17235121528248343],[124,154,73,-0.1702065235201642],[124,154,74,-0.16795385814040875],[124,154,75,-0.16559437852488668],[124,154,76,-0.16312938034600322],[124,154,77,-0.16056029799674643],[124,154,78,-0.15788870703014224],[124,154,79,-0.15511632660827313],[124,155,64,-0.19060039290923103],[124,155,65,-0.18935363901618407],[124,155,66,-0.18799292801660972],[124,155,67,-0.18651842928847828],[124,155,68,-0.18493043049005597],[124,155,69,-0.1832293399157101],[124,155,70,-0.18141568886095805],[124,155,71,-0.179490133996833],[124,155,72,-0.17745345975352655],[124,155,73,-0.1753065807133899],[124,155,74,-0.17305054401311182],[124,155,75,-0.17068653175530812],[124,155,76,-0.16821586342935502],[124,155,77,-0.16563999834151988],[124,155,78,-0.16296053805440103],[124,155,79,-0.16017922883563418],[124,156,64,-0.19554882462599854],[124,156,65,-0.19431004904975768],[124,156,66,-0.19295601980774202],[124,156,67,-0.19148691989830147],[124,156,68,-0.18990305166024735],[124,156,69,-0.18820483913138308],[124,156,70,-0.1863928304159922],[124,156,71,-0.1844677000613536],[124,156,72,-0.18243025144324665],[124,156,73,-0.18028141916052431],[124,156,74,-0.17802227143857896],[124,156,75,-0.1756540125419267],[124,156,76,-0.17317798519575267],[124,156,77,-0.17059567301646006],[124,156,78,-0.16790870295124505],[124,156,79,-0.1651188477266471],[124,157,64,-0.20036861446050147],[124,157,65,-0.19913780737564102],[124,157,66,-0.1977904807188544],[124,157,67,-0.19632683072703794],[124,157,68,-0.19474717401411124],[124,157,69,-0.19305194993233388],[124,157,70,-0.19124172294229735],[124,157,71,-0.18931718499166794],[124,157,72,-0.18727915790263805],[124,157,73,-0.1851285957681681],[124,157,74,-0.18286658735683958],[124,157,75,-0.18049435852654871],[124,157,76,-0.17801327464688133],[124,157,77,-0.17542484303021366],[124,157,78,-0.17273071537155638],[124,157,79,-0.16993269019709722],[124,158,64,-0.20505757665776703],[124,158,65,-0.20383471215191862],[124,158,66,-0.20249409351336034],[124,158,67,-0.20103592983238638],[124,158,68,-0.1994605515886112],[124,158,69,-0.19776841301511883],[124,158,70,-0.1959600944710188],[124,158,71,-0.19403630482248346],[124,158,72,-0.1919978838322195],[124,158,73,-0.1898458045574637],[124,158,74,-0.18758117575631794],[124,158,75,-0.1852052443026534],[124,158,76,-0.18271939760942668],[124,158,77,-0.18012516606044982],[124,158,78,-0.17742422545063596],[124,158,79,-0.17461839943466984],[124,159,64,-0.20961366690925598],[124,159,65,-0.20839870324254128],[124,159,66,-0.20706478288359098],[124,159,67,-0.20561212738800405],[124,159,68,-0.20404108068809823],[124,159,69,-0.20235211145993026],[124,159,70,-0.20054581549846784],[124,159,71,-0.19862291810097288],[124,159,72,-0.1965842764585659],[124,159,73,-0.19443088205604653],[124,159,74,-0.1921638630797956],[124,159,75,-0.18978448683398141],[124,159,76,-0.18729416216492156],[124,159,77,-0.18469444189363005],[124,159,78,-0.18198702525658472],[124,159,79,-0.17917376035465515],[124,160,64,-0.2140349876095189],[124,160,65,-0.2128278675017501],[124,160,66,-0.21150062076143894],[124,160,67,-0.2100534810188316],[124,160,68,-0.2084868052427915],[124,160,69,-0.20680107611072174],[124,160,70,-0.2049969043863895],[124,160,71,-0.20307503130570703],[124,160,72,-0.20103633097044193],[124,160,73,-0.19888181274993133],[124,160,74,-0.19661262369062216],[124,160,75,-0.19423005093366874],[124,160,76,-0.1917355241404235],[124,160,77,-0.1891306179258726],[124,160,78,-0.18641705430002753],[124,160,79,-0.18359670511723158],[124,161,64,-0.21831979316893568],[124,161,65,-0.21712044411505815],[124,161,66,-0.2157998316860178],[124,161,67,-0.21435820119387639],[124,161,68,-0.21279592222514243],[124,161,69,-0.21111349101361954],[124,161,70,-0.20931153282090864],[124,161,71,-0.20739080432463075],[124,161,72,-0.20535219601432664],[124,161,73,-0.20319673459512155],[124,161,74,-0.20092558539897154],[124,161,75,-0.19854005480372228],[124,161,76,-0.19604159265981735],[124,161,77,-0.19343179472470828],[124,161,78,-0.19071240510497522],[124,161,79,-0.18788531870612046],[124,162,64,-0.22246649538262397],[124,162,65,-0.2212748299968853],[124,162,66,-0.21996079822843562],[124,162,67,-0.2185246566765492],[124,162,68,-0.21696678712417306],[124,162,69,-0.21528769891371358],[124,162,70,-0.21348803133024108],[124,162,71,-0.21156855599217694],[124,162,72,-0.20953017924942763],[124,162,73,-0.2073739445890449],[124,162,74,-0.20510103504823374],[124,162,75,-0.20271277563493684],[124,162,76,-0.20021063575583697],[124,162,77,-0.19759623165182127],[124,162,78,-0.19487132884092428],[124,162,79,-0.19203784456870776],[124,163,64,-0.22647366885564957],[124,163,65,-0.22528958524496578],[124,163,66,-0.22398206647380248],[124,163,67,-0.2225513800326797],[124,163,68,-0.22099791947791647],[124,163,69,-0.2193222068103594],[124,163,70,-0.21752489486129778],[124,163,71,-0.21560676968564008],[124,163,72,-0.21356875296230804],[124,163,73,-0.21141190440193214],[124,163,74,-0.20913742416166925],[124,163,75,-0.20674665526736768],[124,163,76,-0.20424108604292812],[124,163,77,-0.20162235254689553],[124,163,78,-0.19889224101630865],[124,163,79,-0.19605269031775585],[124,164,64,-0.23034005648429146],[124,164,65,-0.22916343865129563],[124,164,66,-0.22786235156023404],[124,164,67,-0.2264370731959665],[124,164,68,-0.22488800846371815],[124,164,69,-0.2232156915707405],[124,164,70,-0.22142078841494395],[124,164,71,-0.21950409898057366],[124,164,72,-0.21746655974088547],[124,164,73,-0.21530924606790403],[124,164,74,-0.21303337464908956],[124,164,75,-0.21064030591113092],[124,164,76,-0.20813154645071963],[124,164,77,-0.20550875147233572],[124,164,78,-0.20277372723307574],[124,164,79,-0.19992843349446776],[124,165,64,-0.23406457499355926],[124,165,65,-0.23289529326980773],[124,165,66,-0.23160054327504664],[124,165,67,-0.23018061309106286],[124,165,68,-0.2286359185465905],[124,165,69,-0.22696700560189165],[124,165,70,-0.22517455274010068],[124,165,71,-0.22325937336540214],[124,165,72,-0.2212224182079986],[124,165,73,-0.219064777735957],[124,165,74,-0.21678768457374864],[124,165,75,-0.21439251592771258],[124,165,76,-0.21188079601828658],[124,165,77,-0.20925419851904536],[124,165,78,-0.20651454900257016],[124,165,79,-0.20366382739309563],[124,166,64,-0.23764632053083212],[124,166,65,-0.2364842320406475],[124,166,66,-0.23519571170801223],[124,166,67,-0.23378105731416088],[124,166,68,-0.23224069518549462],[124,166,69,-0.23057518258105492],[124,166,70,-0.2287852100865685],[124,166,71,-0.22687160401511774],[124,166,72,-0.22483532881441082],[124,166,73,-0.22267748948072075],[124,166,74,-0.22039933397932554],[124,166,75,-0.21800225567166842],[124,166,76,-0.2154877957490854],[124,166,77,-0.21285764567314236],[124,166,78,-0.2101136496226007],[124,166,79,-0.20725780694696438],[124,167,64,-0.241084574315778],[124,167,65,-0.23992952347120688],[124,167,66,-0.23864711296182806],[124,167,67,-0.23723764987123575],[124,167,68,-0.23570157059770225],[124,167,69,-0.23403944324451997],[124,167,70,-0.23225197001671893],[124,167,71,-0.23033998962422175],[124,167,72,-0.228304479691405],[124,167,73,-0.2261465591731412],[124,167,74,-0.2238674907771474],[124,167,75,-0.22146868339286419],[124,167,76,-0.21895169452671126],[124,167,77,-0.21631823274376083],[124,167,78,-0.2135701601158465],[124,167,79,-0.21070949467606648],[124,168,64,-0.24437880834636283],[124,168,65,-0.2432306273737277],[124,168,66,-0.24195419491962078],[124,168,67,-0.24054982697376048],[124,168,68,-0.23901796958105337],[124,168,69,-0.23735920123476473],[124,168,70,-0.23557423527587928],[124,168,71,-0.23366392229872068],[124,168,72,-0.23162925256279054],[124,168,73,-0.22947135841090816],[124,168,74,-0.22719151669347226],[124,168,75,-0.22479115119907267],[124,168,76,-0.22227183509129522],[124,168,77,-0.21963529335176024],[124,168,78,-0.21688340522941674],[124,168,79,-0.21401820669604477],[124,169,64,-0.24752869116104625],[124,169,65,-0.2463872006595682],[124,169,66,-0.24511660306957128],[124,169,67,-0.24371722289198927],[124,169,68,-0.24218951539420241],[124,169,69,-0.24053406900598895],[124,169,70,-0.2387516077214915],[124,169,71,-0.23684299350727156],[124,169,72,-0.23480922871640597],[124,169,73,-0.2326514585087115],[124,169,74,-0.23037097327691858],[124,169,75,-0.22796921107901835],[124,169,76,-0.22544776007663025],[124,169,77,-0.22280836097942902],[124,169,78,-0.22005290949565393],[124,169,79,-0.2171834587886512],[124,170,64,-0.2505340936572462],[124,170,65,-0.2493991031902194],[124,170,66,-0.2481341863867471],[124,170,67,-0.24673967586588563],[124,170,68,-0.24521603569493644],[124,170,69,-0.24356386378812722],[124,170,70,-0.24178389431113978],[124,170,71,-0.23987700009156],[124,170,72,-0.23784419503520648],[124,170,73,-0.2356866365484186],[124,170,74,-0.23340562796613185],[124,170,75,-0.2310026209859556],[124,170,76,-0.228479218108113],[124,170,77,-0.22583717508126677],[124,170,78,-0.22307840335426754],[124,170,79,-0.22020497253376725],[124,171,64,-0.2533950949658871],[124,171,65,-0.25226640368488096],[124,171,66,-0.2510070032719596],[124,171,67,-0.24961723407351688],[124,171,68,-0.2480975685363801],[124,171,69,-0.2464486136091525],[124,171,70,-0.24467111314925516],[124,171,71,-0.24276595033572812],[124,171,72,-0.2407341500877539],[124,171,73,-0.23857688148898482],[124,171,74,-0.23629546021749726],[124,171,75,-0.23389135098159664],[124,171,76,-0.23136616996131798],[124,171,77,-0.22872168725566622],[124,171,78,-0.22595982933561365],[124,171,79,-0.2230826815028073],[124,172,64,-0.2561119883821509],[124,172,65,-0.2549893856847213],[124,172,66,-0.2537353275477586],[124,172,67,-0.2523501616570323],[124,172,68,-0.2508343684212072],[124,172,69,-0.24918856337578954],[124,172,70,-0.24741349959261782],[124,172,71,-0.24551007009496584],[124,172,72,-0.24347931027822023],[124,172,73,-0.24132240033621155],[124,172,74,-0.23904066769302268],[124,172,75,-0.23663558944050112],[124,172,76,-0.23410879478131552],[124,172,77,-0.2314620674776049],[124,172,78,-0.2286973483052337],[124,172,79,-0.2258167375136113],[124,173,64,-0.25868528735247265],[124,173,65,-0.2575685535738568],[124,173,66,-0.25631965451161387],[124,173,67,-0.2549389448062612],[124,173,68,-0.25342691241389936],[124,173,69,-0.2517841810126831],[124,173,70,-0.25001151241469877],[124,173,71,-0.24810980898331292],[124,173,72,-0.24608011605595304],[124,173,73,-0.24392362437240167],[124,173,74,-0.24164167250842794],[124,173,75,-0.23923574931497982],[124,173,76,-0.23670749636278443],[124,173,77,-0.23405871039239412],[124,173,78,-0.231291345769702],[124,173,79,-0.22840751694687889],[124,174,64,-0.2611157315176452],[124,174,65,-0.26000463865692236],[124,174,66,-0.2587607070461404],[124,174,67,-0.2573842978998059],[124,174,68,-0.2558759063109167],[124,174,69,-0.2542361636598808],[124,174,70,-0.25246584002870676],[124,174,71,-0.2505658466205348],[124,174,72,-0.24853723818446571],[124,174,73,-0.24638121544577096],[124,174,74,-0.24409912754130947],[124,174,75,-0.24169247446036746],[124,174,76,-0.2391629094907779],[124,174,77,-0.23651224167035023],[124,174,78,-0.2337424382436405],[124,174,79,-0.23085562712400443],[124,175,64,-0.2634042928121124],[124,175,65,-0.26229860529330606],[124,175,66,-0.26105944178645213],[124,175,67,-0.2596871697036969],[124,175,68,-0.25818229086886],[124,175,69,-0.2565454439287148],[124,175,70,-0.25477740676941674],[124,175,71,-0.25287909893814653],[124,175,72,-0.25085158406992625],[124,175,73,-0.24869607231969482],[124,175,74,-0.24641392279945862],[124,175,75,-0.24400664602074773],[124,175,76,-0.24147590634222105],[124,175,77,-0.23882352442246146],[124,175,78,-0.2360514796779828],[124,175,79,-0.23316191274639575],[124,176,64,-0.2655521816195039],[124,176,65,-0.2644516570881068],[124,176,66,-0.26321705534469797],[124,176,67,-0.2618487496276769],[124,176,68,-0.2603472480906798],[124,176,69,-0.25871319621613276],[124,176,70,-0.25694737923383726],[124,176,71,-0.2550507245446477],[124,176,72,-0.2530243041492124],[124,176,73,-0.25086933708184955],[124,176,74,-0.24858719184938693],[124,176,75,-0.24617938887518676],[124,176,76,-0.2436476029482032],[124,176,77,-0.24099366567711322],[124,176,78,-0.23821956794954102],[124,176,79,-0.23532746239632651],[124,177,64,-0.2675608529842892],[124,177,65,-0.26646524313968567],[124,177,66,-0.26523499059165156],[124,177,67,-0.2638704740389769],[124,177,68,-0.26237220756980395],[124,177,69,-0.2607408430773557],[124,177,70,-0.2589771726805902],[124,177,71,-0.2570821311498377],[124,177,72,-0.25505679833739037],[124,177,73,-0.25290240161311706],[124,177,74,-0.25062031830493303],[124,177,75,-0.24821207814434665],[124,177,76,-0.24567936571692772],[124,177,77,-0.24302402291773872],[124,177,78,-0.24024805141175143],[124,177,79,-0.2373536150992005],[124,178,64,-0.26943201287961516],[124,178,65,-0.26834106434388305],[124,178,66,-0.2671149429954244],[124,178,67,-0.2657540326336605],[124,178,68,-0.2642588528922556],[124,178,69,-0.2626300616569256],[124,178,70,-0.2608684574880693],[124,178,71,-0.25897498204827807],[124,178,72,-0.25695072253469997],[124,178,73,-0.2547969141163241],[124,178,74,-0.2525149423760198],[124,178,75,-0.25010634575754787],[124,178,76,-0.24757281801739472],[124,178,77,-0.24491621068146618],[124,178,78,-0.24213853550666364],[124,178,79,-0.2392419669472955],[124,179,64,-0.271167624531389],[124,179,65,-0.2700810797549572],[124,179,66,-0.2688588670173646],[124,179,67,-0.26750137486559056],[124,179,68,-0.26600912809681676],[124,179,69,-0.264382790178212],[124,179,70,-0.26262316567144073],[124,179,71,-0.26073120266196514],[124,179,72,-0.25870799519309606],[124,179,73,-0.256554785704876],[124,179,74,-0.2542729674776212],[124,179,75,-0.2518640870803389],[124,179,76,-0.24932984682387493],[124,179,77,-0.2466721072188256],[124,179,78,-0.2438928894382364],[124,179,79,-0.24099437778504185],[124,180,64,-0.2727699147984668],[124,180,65,-0.27168751300310934],[124,180,66,-0.2704689825649973],[124,180,67,-0.26911471643288454],[124,180,68,-0.2676252441931045],[124,180,69,-0.2660012344912258],[124,180,70,-0.26424349745834286],[124,180,71,-0.2623529871420732],[124,180,72,-0.26033080394221353],[124,180,73,-0.25817819705114387],[124,180,74,-0.25589656689880125],[124,180,75,-0.2534874676024399],[124,180,76,-0.2509526094210365],[124,180,77,-0.24829386121436914],[124,180,78,-0.2455132529067996],[124,180,79,-0.2426129779557049],[124,181,64,-0.2742413806090498],[124,181,65,-0.2731628587686902],[124,181,66,-0.2719477815021114],[124,181,67,-0.27059654582195336],[124,181,68,-0.2691096857376515],[124,181,69,-0.2674878746788527],[124,181,70,-0.26573192792338785],[124,181,71,-0.26384280502986557],[124,181,72,-0.2618216122748508],[124,181,73,-0.25966960509470605],[124,181,74,-0.25738819053192086],[124,181,75,-0.2549789296861513],[124,181,76,-0.2524435401698196],[124,181,77,-0.2497838985683093],[124,181,78,-0.24700204290478245],[124,181,79,-0.24410017510956372],[124,182,64,-0.2755847954532985],[124,182,65,-0.2745098893131098],[124,182,66,-0.27329803421600507],[124,182,67,-0.27194963090914304],[124,182,68,-0.2704652174680152],[124,182,69,-0.2688454717215133],[124,182,70,-0.2670912136814775],[124,182,71,-0.2652034079767923],[124,182,72,-0.2631831662919928],[124,182,73,-0.26103174981046096],[124,182,74,-0.25875057166203363],[124,182,75,-0.25634119937525046],[124,182,76,-0.2538053573340837],[124,182,77,-0.2511449292391924],[124,182,78,-0.2483619605737225],[124,182,79,-0.2454586610736038],[124,183,64,-0.2768032159320727],[124,183,65,-0.2757316610663436],[124,183,66,-0.2745227962417909],[124,183,67,-0.273177025619876],[124,183,68,-0.27169489099480926],[124,183,69,-0.2700770742201527],[124,183,70,-0.2683243996398401],[124,183,71,-0.26643783652367414],[124,183,72,-0.26441850150726776],[124,183,73,-0.26226766103650834],[124,183,74,-0.25998673381636594],[124,183,75,-0.25757729326427237],[124,183,76,-0.25504106996791753],[124,183,77,-0.25237995414750036],[124,183,78,-0.24959599812245836],[124,183,79,-0.24669141878262835],[124,184,64,-0.277899988361882],[124,184,65,-0.27683152127113553],[124,184,66,-0.2756254149438555],[124,184,67,-0.2742820766453905],[124,184,68,-0.2728020515517551],[124,184,69,-0.27118602517765544],[124,184,70,-0.26943482580887324],[124,184,71,-0.26754942693906325],[124,184,72,-0.26553094971093516],[124,184,73,-0.2633806653618964],[124,184,74,-0.2610999976739782],[124,184,75,-0.2586905254282702],[124,184,76,-0.2561539848637132],[124,184,77,-0.2534922721402836],[124,184,78,-0.250707445806596],[124,184,79,-0.2478017292718746],[124,185,64,-0.27887875543602003],[124,185,65,-0.27781311468385583],[124,185,66,-0.2766095362544361],[124,185,67,-0.27526843021703573],[124,185,68,-0.273790344803713],[124,185,69,-0.2721759688386446],[124,185,70,-0.27042613417176165],[124,185,71,-0.2685418181167487],[124,185,72,-0.26652414589336904],[124,185,73,-0.2643743930741954],[124,185,74,-0.2620939880355694],[124,185,75,-0.2596845144130173],[124,185,76,-0.2571477135609629],[124,185,77,-0.25448548701678153],[124,185,78,-0.25169989896921596],[124,185,79,-0.24879317873110374],[124,186,64,-0.2797434629418757],[124,186,65,-0.2786803903320215],[124,186,66,-0.2774791114693167],[124,186,67,-0.2761400389381299],[124,186,68,-0.27466372371270087],[124,186,69,-0.2730508575876729],[124,186,70,-0.2713022756128728],[124,186,71,-0.26941895853240716],[124,186,72,-0.2674020352280363],[124,186,73,-0.26525278516689976],[124,186,74,-0.26297264085342886],[124,186,75,-0.260563190285657],[124,186,76,-0.25802617941578554],[124,186,77,-0.2553635146150365],[124,186,78,-0.25257726514282053],[124,186,79,-0.2496696656201659],[124,187,64,-0.2804983665344096],[124,187,65,-0.2794376083284539],[124,187,66,-0.27823840410062495],[124,187,67,-0.27690116867335957],[124,187,68,-0.2754264554618754],[124,187,69,-0.2738149589057829],[124,187,70,-0.2720675169049077],[124,187,71,-0.27018511325937844],[124,187,72,-0.26816888011395124],[124,187,73,-0.2660201004066448],[124,187,74,-0.26374021032151285],[124,187,75,-0.26133080174577494],[124,187,76,-0.2587936247311582],[124,187,77,-0.2561305899594801],[124,187,78,-0.2533437712125062],[124,187,79,-0.2504354078460208],[124,188,64,-0.2811480385658457],[124,188,65,-0.2800893467421336],[124,188,66,-0.27889199678678345],[124,188,67,-0.2775564054957773],[124,188,68,-0.2760831284375337],[124,188,69,-0.27447286238549184],[124,188,70,-0.2727264477548649],[124,188,71,-0.27084487104362165],[124,188,72,-0.2688292672776651],[124,188,73,-0.2666809224602845],[124,188,74,-0.2644012760257036],[124,188,75,-0.26199192329695375],[124,188,76,-0.259454617947912],[124,188,77,-0.2567912744695493],[124,188,78,-0.25400397064040925],[124,188,79,-0.2510949500012649],[124,189,64,-0.2816973749715157],[124,189,65,-0.2806405085256861],[124,189,66,-0.2794447982595537],[124,189,67,-0.2781106626913292],[124,189,68,-0.2766386592690724],[124,189,69,-0.27502948680413697],[124,189,70,-0.2732839879087504],[124,189,71,-0.2714031514377897],[124,189,72,-0.2693881149347199],[124,189,73,-0.26724016708177245],[124,189,74,-0.26496075015418763],[124,189,75,-0.2625514624787444],[124,189,76,-0.2600140608964273],[124,189,77,-0.25735046322926514],[124,189,78,-0.2545627507513679],[124,189,79,-0.25165317066411086],[124,190,64,-0.2821516022118957],[124,190,65,-0.28109632849953836],[124,190,66,-0.27990205036820826],[124,190,67,-0.2785691878209564],[124,190,68,-0.27709829992694035],[124,190,69,-0.2754900872556232],[124,190,70,-0.2737453943150773],[124,190,71,-0.2718652119944588],[124,190,72,-0.2698506800106114],[124,190,73,-0.2677030893588853],[124,190,74,-0.26542388476798684],[124,190,75,-0.26301466715909216],[124,190,76,-0.26047719610906395],[124,190,77,-0.2578133923178141],[124,190,78,-0.255025340079835],[124,190,79,-0.2521152897598472],[124,191,64,-0.2825162842708264],[124,191,65,-0.2814623803927353],[124,191,66,-0.2802693351608262],[124,191,67,-0.27893756984025886],[124,191,68,-0.27746764487857756],[124,191,69,-0.27586026234055827],[124,191,70,-0.2741162683471404],[124,191,71,-0.27223665551850385],[124,191,72,-0.2702225654212502],[124,191,73,-0.2680752910197739],[124,191,74,-0.26579627913164205],[124,191,75,-0.2633871328872113],[124,191,76,-0.26084961419332386],[124,191,77,-0.25818564620112694],[124,191,78,-0.2553973157780336],[124,191,79,-0.25248687598377695],[124,192,64,-0.2827973297099097],[124,192,65,-0.28174458394041413],[124,192,66,-0.2805525820227033],[124,192,67,-0.2792217462767179],[124,192,68,-0.27775263830233554],[124,192,69,-0.276145961414777],[124,192,70,-0.2744025630840653],[124,192,71,-0.2725234373786173],[124,192,72,-0.27050972741291435],[124,192,73,-0.26836272779934467],[124,192,74,-0.26608388710403597],[124,192,75,-0.26367481030689843],[124,192,76,-0.26113726126573444],[124,192,77,-0.2584731651844432],[124,192,78,-0.2556846110853537],[124,192,79,-0.2527738542856254],[124,193,64,-0.2830009987790921],[124,193,65,-0.281949212037941],[124,193,66,-0.2807580748718881],[124,193,67,-0.27942801046448007],[124,193,68,-0.27795958135938537],[124,193,69,-0.2763534918962569],[124,193,70,-0.274610590650638],[124,193,71,-0.2727318728779754],[124,193,72,-0.2707184829617023],[124,193,73,-0.26857171686547254],[124,193,74,-0.26629302458936677],[124,193,75,-0.2638840126302989],[124,193,76,-0.26134644644646443],[124,193,77,-0.2586822529258731],[124,193,78,-0.2558935228589898],[124,193,79,-0.25298251341542877],[124,194,64,-0.2831339105834235],[124,194,65,-0.2820828979517045],[124,194,66,-0.2808924594118296],[124,194,67,-0.279563018836704],[124,194,68,-0.27809513952360543],[124,194,69,-0.2764895266304197],[124,194,70,-0.27474702961590425],[124,194,71,-0.2728686446840466],[124,194,72,-0.2708555172324806],[124,194,73,-0.2687089443050388],[124,194,74,-0.26643037704826444],[124,194,75,-0.2640214231721093],[124,194,76,-0.26148384941466263],[124,194,77,-0.25881958401094873],[124,194,78,-0.25603071916582],[124,194,79,-0.2531195135308908],[124,195,64,-0.28320305030600934],[124,195,65,-0.28215264258657835],[124,195,66,-0.2809627504411589],[124,195,67,-0.27963379827547374],[124,195,68,-0.27816634996946754],[124,195,69,-0.27656111131383354],[124,195,70,-0.2748189324505592],[124,195,71,-0.2729408103175558],[124,195,72,-0.27092789109733517],[124,195,73,-0.2687814726698131],[124,195,74,-0.26650300706906216],[124,195,75,-0.2640941029442392],[124,195,76,-0.2615565280245342],[124,195,77,-0.25889221158817854],[124,195,78,-0.25610324693553554],[124,195,79,-0.25319189386622687],[124,196,64,-0.2832157764871247],[124,196,65,-0.2821658218100258],[124,196,66,-0.2809763392205705],[124,196,67,-0.27964775351925797],[124,196,68,-0.27818062901788376],[124,196,69,-0.2765756719762841],[124,196,70,-0.2748337330430921],[124,196,71,-0.27295580970057465],[124,196,72,-0.2709430487135023],[124,196,73,-0.26879674858214353],[124,196,74,-0.2665183619991983],[124,196,75,-0.2641094983108988],[124,196,76,-0.26157192598212553],[124,196,77,-0.25890757506557316],[124,196,78,-0.25611853967499365],[124,196,79,-0.25320708046246276],[124,197,64,-0.28317982835953015],[124,197,65,-0.2821301938328845],[124,197,66,-0.28094100089684315],[124,197,67,-0.2796126746279497],[124,197,68,-0.2781457796400627],[124,197,69,-0.2765410225212569],[124,197,70,-0.27479925427472907],[124,197,71,-0.2729214727637779],[124,197,72,-0.2709088251608166],[124,197,73,-0.2687626104004983],[124,197,74,-0.26648428163678084],[124,197,75,-0.264075448704151],[124,197,76,-0.26153788058285676],[124,197,77,-0.25887350786818897],[124,197,78,-0.25608442524383146],[124,197,79,-0.2531728939592295],[124,198,64,-0.2831033332399586],[124,198,65,-0.2820539066467993],[124,198,66,-0.2808649019839706],[124,198,67,-0.27953674450545507],[124,198,68,-0.2780699990193357],[124,198,69,-0.2764653723247996],[124,198,70,-0.27472371565314035],[124,198,71,-0.2728460271128341],[124,198,72,-0.2708334541386428],[124,198,73,-0.26868729594482565],[124,198,74,-0.2664090059822909],[124,198,75,-0.26400019439989797],[124,198,76,-0.2614626305097705],[124,198,77,-0.25879824525664896],[124,198,78,-0.25600913369131406],[124,198,79,-0.25309755744802065],[124,199,64,-0.2829948139767844],[124,199,65,-0.2819455055183169],[124,199,66,-0.28075660790141377],[124,199,67,-0.27942854647984905],[124,199,68,-0.2779618861709733],[124,199,69,-0.2763573338927716],[124,199,70,-0.2746157410049266],[124,199,71,-0.27273810575394364],[124,199,72,-0.27072557572230804],[124,199,73,-0.2685794502817479],[124,199,74,-0.26630118305043093],[124,199,75,-0.2638923843543167],[124,199,76,-0.2613548236925104],[124,199,77,-0.25869043220666066],[124,199,78,-0.25590130515442144],[124,199,79,-0.25298970438692725],[124,200,64,-0.28286319645387736],[124,200,65,-0.28181394053964515],[124,200,66,-0.28062509056947416],[124,200,67,-0.2792970719410903],[124,200,68,-0.2778304496199827],[124,200,69,-0.2762259305764897],[124,200,70,-0.27448436622688344],[124,200,71,-0.2726067548785226],[124,200,72,-0.2705942441790311],[124,200,73,-0.26844813356958386],[124,200,74,-0.2661698767421242],[124,200,75,-0.2637610841007383],[124,200,76,-0.26122352522702796],[124,200,77,-0.2585591313495278],[124,200,78,-0.2557699978171838],[124,200,79,-0.2528583865768491],[124,201,64,-0.2827178171506335],[124,201,65,-0.28166857423606306],[124,201,66,-0.2804797360617841],[124,201,67,-0.2791517280362966],[124,201,68,-0.27768511513689453],[124,201,69,-0.2760806043467564],[124,201,70,-0.27433904709603874],[124,201,71,-0.272461441707032],[124,201,72,-0.27044893584334606],[124,201,73,-0.2683028289632021],[124,201,74,-0.2660245747766554],[124,201,75,-0.26361578370697314],[124,201,76,-0.26107822535601444],[124,201,77,-0.2584138309736509],[124,201,78,-0.25562469593125114],[124,201,79,-0.25271308219917865],[124,202,64,-0.2822681026588528],[124,202,65,-0.28121885730600404],[124,202,66,-0.2800300167640398],[124,202,67,-0.27870200644184884],[124,202,68,-0.2772353913170279],[124,202,69,-0.27563087837297207],[124,202,70,-0.27388931903996216],[124,202,71,-0.2720117116403217],[124,202,72,-0.2699992038375978],[124,202,73,-0.26785309508985033],[124,202,74,-0.2655748391068735],[124,202,75,-0.26316604631157003],[124,202,76,-0.26062848630532887],[124,202,77,-0.25796409033744305],[124,202,78,-0.25517495377859134],[124,202,79,-0.2522633385983334],[124,203,64,-0.28226367609232617],[124,203,65,-0.2812143812366832],[124,203,66,-0.2800254929873489],[124,203,67,-0.27869743675547165],[124,203,68,-0.277230777518924],[124,203,69,-0.2756262222593451],[124,203,70,-0.27388462240318157],[124,203,71,-0.27200697626679604],[124,203,72,-0.26999443150559965],[124,203,73,-0.2678482875672936],[124,203,74,-0.2655699981490406],[124,203,75,-0.26316117365879077],[124,203,76,-0.2606235836806099],[124,203,77,-0.25795915944404735],[124,203,78,-0.255169996297567],[124,203,79,-0.2522583561859937],[124,204,64,-0.2822484161347554],[124,204,65,-0.28119895062528033],[124,204,66,-0.2800098979115835],[124,204,67,-0.27868168341260235],[124,204,68,-0.27721487210716],[124,204,69,-0.2756101709708426],[124,204,70,-0.2738684314168792],[124,204,71,-0.27199065174108283],[124,204,72,-0.2699779795708175],[124,204,73,-0.2678317143180733],[124,204,74,-0.26555330963646806],[124,204,75,-0.2631443758824056],[124,204,76,-0.2606066825802318],[124,204,77,-0.25794216089143196],[124,204,78,-0.25515290608788976],[124,204,79,-0.25224118002915763],[124,205,64,-0.2820661837395071],[124,205,65,-0.2810163555090356],[124,205,66,-0.27982695322506357],[124,205,67,-0.27849840232348544],[124,205,68,-0.27703126778553955],[124,205,69,-0.2754262565743403],[124,205,70,-0.2736842200754068],[124,205,71,-0.27180615654125284],[124,205,72,-0.26979321354000074],[124,205,73,-0.2676466904080991],[124,205,74,-0.2653680407069672],[124,205,75,-0.26295887468379076],[124,205,76,-0.26042096173631646],[124,205,77,-0.25775623288168337],[124,205,78,-0.2549667832293132],[124,205,79,-0.2520548744578123],[124,206,64,-0.2818607961031746],[124,206,65,-0.2808103447323316],[124,206,66,-0.2796203418934835],[124,206,67,-0.27829121305222704],[124,206,68,-0.2768235231945161],[124,206,69,-0.2752179792625954],[124,206,70,-0.2734754325949281],[124,206,71,-0.27159688137018156],[124,206,72,-0.26958347305523134],[124,206,73,-0.2674365068572656],[124,206,74,-0.2651574361798136],[124,206,75,-0.2627478710829195],[124,206,76,-0.26020958074731226],[124,206,77,-0.2575444959426072],[124,206,78,-0.25475471149956497],[124,206,79,-0.2518424887863556],[124,207,64,-0.28162654866560854],[124,207,65,-0.28057514877182377],[124,207,66,-0.2793842317781937],[124,207,67,-0.27805422319641127],[124,207,68,-0.2765856880204811],[124,207,69,-0.2749793331617423],[124,207,70,-0.27323600988788044],[124,207,71,-0.27135671626598956],[124,207,72,-0.26934259960964824],[124,207,73,-0.2671949589300885],[124,207,74,-0.26491524739128314],[124,207,75,-0.2625050747691736],[124,207,76,-0.2599662099148855],[124,207,77,-0.257300583221972],[124,207,78,-0.2545102890977071],[124,207,79,-0.251597588438378],[124,208,64,-0.28135804582732704],[124,208,65,-0.2803053102104395],[124,208,66,-0.2791131058761427],[124,208,67,-0.27778185840230374],[124,208,68,-0.27631213279551026],[124,208,69,-0.27470463592481065],[124,208,70,-0.272960218959431],[124,208,71,-0.2710798798105363],[124,208,72,-0.269064765576996],[124,208,73,-0.26691617499523435],[124,208,74,-0.26463556089299023],[124,208,75,-0.262224532647208],[124,208,76,-0.2596848586459093],[124,208,77,-0.2570184687540833],[124,208,78,-0.2542274567836168],[124,208,79,-0.25131408296721747],[124,209,64,-0.2810501942926158],[124,209,65,-0.2799956770189105],[124,209,66,-0.2788017555421647],[124,209,67,-0.2774688555302144],[124,209,68,-0.27599754200811544],[124,209,69,-0.2743885217901666],[124,209,70,-0.27264264591589915],[124,209,71,-0.2707609120900989],[124,209,72,-0.26874446712682043],[124,209,73,-0.2665946093974748],[124,209,74,-0.2643127912828154],[124,209,75,-0.2619006216290444],[124,209,76,-0.25935986820788615],[124,209,77,-0.2566924601806694],[124,209,78,-0.2539004905664376],[124,209,79,-0.2509862187140399],[124,210,64,-0.2806981964707117],[124,210,65,-0.27964139589587345],[124,210,66,-0.27844527377030304],[124,210,67,-0.2771102558793457],[124,210,68,-0.2756369072739081],[124,210,69,-0.27402593470027836],[124,210,70,-0.2722781890338971],[124,210,71,-0.2703946677171465],[124,210,72,-0.26837651720111544],[124,210,73,-0.2662250353914265],[124,210,74,-0.26394167409794156],[124,210,75,-0.2615280414885772],[124,210,76,-0.2589859045470707],[124,210,77,-0.2563171915347393],[124,210,78,-0.2535239944562542],[124,210,79,-0.25060857152937865],[124,211,64,-0.2802975439350829],[124,211,65,-0.2792379056665537],[124,211,66,-0.2780390485341845],[124,211,67,-0.2767013984721379],[124,211,68,-0.2752255205661933],[124,211,69,-0.27361212148082337],[124,211,70,-0.2718620518902034],[124,211,71,-0.2699763089132192],[124,211,72,-0.2679560385524342],[124,211,73,-0.2658025381370973],[124,211,74,-0.26351725877001453],[124,211,75,-0.26110180777850733],[124,211,76,-0.25855795116930724],[124,211,77,-0.2558876160874227],[124,211,78,-0.25309289327900264],[124,211,79,-0.2501760395581466],[124,212,64,-0.2798440109408027],[124,212,65,-0.27878093074002874],[124,212,66,-0.27757875618643957],[124,212,67,-0.2762379133981103],[124,212,68,-0.27475896750648743],[124,212,69,-0.2731426250801303],[124,212,70,-0.2713897365523651],[124,212,71,-0.2695012986529137],[124,212,72,-0.26747845684345906],[124,212,73,-0.2653225077572299],[124,212,74,-0.26303490164242405],[124,212,75,-0.26061724480969994],[124,212,76,-0.2580713020835774],[124,212,77,-0.25539899925779064],[124,212,78,-0.25260242555461554],[124,212,79,-0.24968383608811973],[124,213,64,-0.2793336480000027],[124,213,65,-0.27826647462505594],[124,213,66,-0.2770603549171545],[124,213,67,-0.27571571521718274],[124,213,68,-0.2742331207149469],[124,213,69,-0.2726132778689432],[124,213,70,-0.2708570368300154],[124,213,71,-0.2689653938689558],[124,213,72,-0.2669394938080202],[124,213,73,-0.2647806324564298],[124,213,74,-0.2624902590496915],[124,213,75,-0.2600699786929528],[124,213,76,-0.2575215548082438],[124,213,77,-0.25484691158564166],[124,213,78,-0.2520481364383833],[124,213,79,-0.2491274824618741],[124,214,64,-0.2787627755154266],[124,214,65,-0.277690813504489],[124,214,66,-0.27648007827137977],[124,214,67,-0.27513099642250105],[124,214,68,-0.2736441332207291],[124,214,69,-0.2720201950005302],[124,214,70,-0.270260031586928],[124,214,71,-0.26836463871838767],[124,214,72,-0.2663351604735803],[124,214,73,-0.2641728917021029],[124,214,74,-0.2618792804589847],[124,214,75,-0.2594559304431958],[124,214,76,-0.256904603440014],[124,214,77,-0.25422722176727763],[124,214,78,-0.25142587072556],[124,214,79,-0.2485028010522038],[124,215,64,-0.2781279774720701],[124,215,65,-0.27705048986826375],[124,215,66,-0.275834428725674],[124,215,67,-0.27448022096274605],[124,215,68,-0.27298843193227085],[124,215,69,-0.2713597678311197],[124,215,70,-0.26959507811379235],[124,215,71,-0.26769535790984755],[124,215,72,-0.2656617504451735],[124,215,73,-0.2634955494671819],[124,215,74,-0.2611982016737453],[124,215,75,-0.2587713091461067],[124,215,76,-0.25621663178560383],[124,215,77,-0.2535360897542497],[124,215,78,-0.250731765919191],[124,215,79,-0.2478059083009957],[124,216,64,-0.27742609518691796],[124,216,65,-0.2763423062049696],[124,216,66,-0.27512017132370203],[124,216,67,-0.27376011782394805],[124,216,68,-0.27226271116749645],[124,216,69,-0.2706286574006779],[124,216,70,-0.2688588055617235],[124,216,71,-0.26695415009196044],[124,216,72,-0.26491583325080914],[124,216,73,-0.2627451475346584],[124,216,74,-0.2604435380994441],[124,216,75,-0.2580126051871562],[124,216,76,-0.2554541065561201],[124,216,77,-0.25276995991509055],[124,216,78,-0.2499622453611816],[124,216,79,-0.2470332078215841],[124,217,64,-0.27665422111675675],[124,217,65,-0.2755633187519806],[124,217,66,-0.27433432737085905],[124,217,67,-0.2729676746707723],[124,217,68,-0.2714639262439301],[124,217,69,-0.2698237879740034],[124,217,70,-0.2680481084364804],[124,217,71,-0.26613788130281313],[124,217,72,-0.2640942477483157],[124,217,73,-0.2619184988638943],[124,217,74,-0.2596120780714326],[124,217,75,-0.25717658354305784],[124,217,76,-0.2546137706241314],[124,217,77,-0.2519255542600073],[124,217,78,-0.24911401142657696],[124,217,79,-0.246181383564553],[124,218,64,-0.27580969272409195],[124,218,65,-0.2747108313041783],[124,218,66,-0.27347416818795245],[124,218,67,-0.2721001315473123],[124,218,68,-0.2705892871287464],[124,218,69,-0.26894234064216926],[124,218,70,-0.2671601401534276],[124,218,71,-0.2652436784805444],[124,218,72,-0.2631940955936586],[124,218,73,-0.2610126810187442],[124,218,74,-0.25870087624493154],[124,218,75,-0.2562602771356529],[124,218,76,-0.2536926363434623],[124,218,77,-0.25099986572856603],[124,218,78,-0.24818403878108808],[124,218,79,-0.24524739304701926],[124,219,64,-0.2748900864011594],[124,219,65,-0.2737823890812532],[124,219,66,-0.2725372089239323],[124,219,67,-0.27115497463738125],[124,219,68,-0.269636252148747],[124,219,69,-0.267981746984303],[124,219,70,-0.2661923066532248],[124,219,71,-0.26426892303504024],[124,219,72,-0.26221273477071905],[124,219,73,-0.26002502965747976],[124,219,74,-0.25770724704713843],[124,219,75,-0.25526098024822297],[124,219,76,-0.25268797893170136],[124,219,77,-0.2499901515403592],[124,219,78,-0.24716956770185372],[124,219,79,-0.24422846064539094],[124,220,64,-0.2738932114520042],[124,220,65,-0.2727757726535628],[124,220,66,-0.2715212024276431],[124,220,67,-0.2701299300842699],[124,220,68,-0.2686025217602337],[124,220,69,-0.2669396827896763],[124,220,70,-0.26514226007822006],[124,220,71,-0.2632112444807069],[124,220,72,-0.2611477731825075],[124,220,73,-0.2589531320844848],[124,220,74,-0.2566287581914297],[124,220,75,-0.2541762420041973],[124,220,76,-0.25159732991538997],[124,220,77,-0.2488939266086243],[124,220,78,-0.24606809746140612],[124,220,79,-0.24312207095156368],[124,221,64,-0.27281710413267246],[124,221,65,-0.27168899192658413],[124,221,66,-0.27042413317863845],[124,221,67,-0.26902295787001984],[124,221,68,-0.2674860323788284],[124,221,69,-0.26581406184014933],[124,221,70,-0.264007892509592],[124,221,71,-0.26206851413036614],[124,221,72,-0.2599970623038551],[124,221,73,-0.25779482086377026],[124,221,74,-0.2554632242537026],[124,221,75,-0.25300385990830476],[124,221,76,-0.25041847063794354],[124,221,77,-0.24770895701686446],[124,221,78,-0.2448773797748912],[124,221,79,-0.24192596219260964],[124,222,64,-0.2716600217494958],[124,222,65,-0.2705202801839486],[124,222,66,-0.26924421127704423],[124,222,67,-0.2678322457541912],[124,222,68,-0.2662849502692163],[124,222,69,-0.26460302975295336],[124,222,70,-0.2627873297652209],[124,222,71,-0.2608388388502566],[124,222,72,-0.25875869089556913],[124,222,73,-0.25654816749428877],[124,222,74,-0.25420870031083864],[124,222,75,-0.2517418734501521],[124,222,76,-0.24914942583028343],[124,222,77,-0.24643325355844892],[124,222,78,-0.24359541231052262],[124,222,79,-0.24063811971393667],[124,223,64,-0.2704204368154396],[124,223,65,-0.26926808818902437],[124,223,66,-0.267979866492438],[124,223,67,-0.2665562032720953],[124,223,68,-0.26499766549478243],[124,223,69,-0.2633049578837753],[124,223,70,-0.26147892525825667],[124,223,71,-0.2595205548761056],[124,223,72,-0.2574309787800141],[124,223,73,-0.2552114761470172],[124,223,74,-0.2528634756412542],[124,223,75,-0.2503885577701911],[124,223,76,-0.24778845724414622],[124,223,77,-0.2450650653391605],[124,223,78,-0.24222043226323486],[124,223,79,-0.2392567695258836],[124,224,64,-0.26909703126456674],[124,224,65,-0.2679310783451011],[124,224,66,-0.26662974237179615],[124,224,67,-0.26519345579254416],[124,224,68,-0.26362278592719834],[124,224,69,-0.2619184372902047],[124,224,70,-0.26008125391644143],[124,224,71,-0.2581122216903291],[124,224,72,-0.25601247067817945],[124,224,73,-0.25378327746386065],[124,224,74,-0.25142606748759655],[124,224,75,-0.2489424173881365],[124,224,76,-0.24633405734812908],[124,224,77,-0.24360287344274945],[124,224,78,-0.24075090999159576],[124,224,79,-0.23778037191380985],[124,225,64,-0.26768869072459645],[124,225,65,-0.2665081189141566],[124,225,66,-0.26519269040649174],[124,225,67,-0.26374283863509895],[124,225,68,-0.2621591313159336],[124,225,69,-0.260442272755519],[124,225,70,-0.258593106162162],[124,225,71,-0.2566126159603378],[124,225,72,-0.2545019301082093],[124,225,73,-0.25226232241836044],[124,225,74,-0.24989521488156374],[124,225,75,-0.2474021799938102],[124,225,76,-0.24478494308644883],[124,225,77,-0.24204538465946912],[124,225,78,-0.23918554271795534],[124,225,79,-0.23620761511166044],[124,226,64,-0.2661944988475201],[124,226,65,-0.2649982782941641],[124,226,66,-0.2636677642582984],[124,226,67,-0.26220339124677317],[124,226,68,-0.2606057274176553],[124,226,69,-0.258875476872763],[124,226,70,-0.25701348195319285],[124,226,71,-0.25502072553790867],[124,226,72,-0.2528983333453526],[124,226,73,-0.2506475762381607],[124,226,74,-0.24826987253080113],[124,226,75,-0.24576679030036785],[124,226,76,-0.24314004970036884],[124,226,77,-0.2403915252775508],[124,226,78,-0.23752324829178406],[124,226,79,-0.23453740903895526],[124,227,64,-0.26461373169833946],[124,227,65,-0.26340081935500903],[124,227,66,-0.26205421404447315],[124,227,67,-0.2605743514382619],[124,227,68,-0.25896180018558146],[124,227,69,-0.2572172641891983],[124,227,70,-0.25534158488419856],[124,227,71,-0.2533357435196897],[124,227,72,-0.2512008634434064],[124,227,73,-0.24893821238930425],[124,227,74,-0.2465492047679556],[124,227,75,-0.24403540395998335],[124,227,76,-0.241398524612371],[124,227,77,-0.23864043493769205],[124,227,78,-0.23576315901627898],[124,227,79,-0.2327688791012843],[124,228,64,-0.2629458522018985],[124,228,65,-0.26171519383298725],[124,228,66,-0.2603514806818855],[124,228,67,-0.25885514967966816],[124,228,68,-0.25722677001876193],[124,228,69,-0.25546704541109067],[124,228,70,-0.253576816348969],[124,228,71,-0.2515570623688115],[124,228,72,-0.2494089043176203],[124,228,73,-0.2471336066223332],[124,228,74,-0.24473257956184802],[124,228,75,-0.2422073815419583],[124,228,76,-0.2395597213730396],[124,228,77,-0.2367914605505267],[124,228,78,-0.2339046155382063],[124,228,79,-0.23090136005427364],[124,229,64,-0.2611905046477674],[124,229,65,-0.2599410367838382],[124,229,66,-0.2585591902901503],[124,229,67,-0.25704540345567917],[124,229,68,-0.25540024607123857],[124,229,69,-0.2536244216687856],[124,229,70,-0.25171876976333507],[124,229,71,-0.24968426809755673],[124,229,72,-0.24752203488901559],[124,229,73,-0.24523333108013834],[124,229,74,-0.2428195625907198],[124,229,75,-0.24028228257320905],[124,229,76,-0.2376231936706078],[124,229,77,-0.23484415027702743],[124,229,78,-0.2319471608009257],[124,229,79,-0.22893438993097293],[124,230,64,-0.25934750925325367],[124,230,65,-0.2580781610943923],[124,230,66,-0.2566771486538415],[124,230,67,-0.25514491168027253],[124,230,68,-0.253482020621167],[124,230,69,-0.2516891788421597],[124,230,70,-0.24976722484885383],[124,230,71,-0.24771713451117128],[124,230,72,-0.24554002329020386],[124,230,73,-0.243237148467649],[124,230,74,-0.2408099113776403],[124,230,75,-0.2382598596412161],[124,230,76,-0.2355886894032544],[124,230,77,-0.2327982475719279],[124,230,78,-0.22989053406069038],[124,230,79,-0.22686770403275303],[124,231,64,-0.2574168567845091],[124,231,65,-0.25612655205280244],[124,231,66,-0.2547053357437564],[124,231,67,-0.2531536491709243],[124,231,68,-0.2514720634998663],[124,231,69,-0.24966128194640969],[124,231,70,-0.24772214197722353],[124,231,71,-0.2456556175127803],[124,231,72,-0.24346282113266626],[124,231,73,-0.24114500628332358],[124,231,74,-0.2387035694880364],[124,231,75,-0.23614005255940085],[124,231,76,-0.23345614481411459],[124,231,77,-0.2306536852901282],[124,231,78,-0.22773466496618167],[124,231,79,-0.2247012289836754],[124,232,64,-0.25539870323568037],[124,232,65,-0.25408636197730083],[124,232,66,-0.252643900297174],[124,232,67,-0.25107176118225316],[124,232,68,-0.2493705165807404],[124,232,69,-0.24754086957812493],[124,232,70,-0.24558365657537462],[124,232,71,-0.24349984946935654],[124,232,72,-0.24129055783544195],[124,232,73,-0.23895703111238564],[124,232,74,-0.2365006607892859],[124,232,75,-0.23392298259487143],[124,232,76,-0.23122567868894417],[124,232,77,-0.22841057985602442],[124,232,78,-0.22547966770122152],[124,232,79,-0.22243507684827646],[124,233,64,-0.2532933645661941],[124,233,65,-0.2519579049035796],[124,233,66,-0.2504931544572029],[124,233,67,-0.24889955799920993],[124,233,68,-0.24717768832816833],[124,233,69,-0.24532824842173917],[124,233,70,-0.24335207359133548],[124,233,71,-0.24125013363883652],[124,233,72,-0.23902353501532103],[124,233,73,-0.23667352298190314],[124,233,74,-0.2342014837724803],[124,233,75,-0.23160894675863808],[124,233,76,-0.22889758661654236],[124,233,77,-0.22606922549586517],[124,233,78,-0.223125835190764],[124,233,79,-0.2200695393128672],[124,234,64,-0.25110131149613857],[124,234,65,-0.2497416513307531],[124,234,66,-0.24825356847117852],[124,234,67,-0.24663750958976016],[124,234,68,-0.24489404840632167],[124,234,69,-0.2430238878163239],[124,234,70,-0.2410278620208287],[124,234,71,-0.23890693865834256],[124,234,72,-0.23666222093850042],[124,234,73,-0.23429494977767318],[124,234,74,-0.23180650593630958],[124,234,75,-0.22919841215825654],[124,234,76,-0.22647233531188848],[124,234,77,-0.22363008853309185],[124,234,78,-0.22067363337012547],[124,234,79,-0.21760508193030803],[124,235,64,-0.24882316435968022],[124,235,65,-0.2474382230258403],[124,235,66,-0.245925765448048],[124,235,67,-0.24428624031700352],[124,235,68,-0.24252022234784798],[124,235,69,-0.2406284143826546],[124,235,70,-0.23861164949453695],[124,235,71,-0.23647089309344926],[124,235,72,-0.23420724503363965],[124,235,73,-0.23182194172284065],[124,235,74,-0.22931635823300445],[124,235,75,-0.2266920104128325],[124,235,76,-0.22395055700192434],[124,235,77,-0.22109380174659488],[124,235,78,-0.2181236955173812],[124,235,79,-0.21504233842818676],[124,236,64,-0.2464596880166242],[124,236,65,-0.2450483878868771],[124,236,66,-0.24351051617485187],[124,236,67,-0.24184652371084003],[124,236,68,-0.2400569862825288],[124,236,69,-0.23814260671066623],[124,236,70,-0.2361042169261488],[124,236,71,-0.23394278004860425],[124,236,72,-0.2316593924664293],[124,236,73,-0.22925528591837074],[124,236,74,-0.226731829576453],[124,236,75,-0.2240905321305039],[124,236,76,-0.22133304387410346],[124,236,77,-0.2184611587920059],[124,236,78,-0.21547681664905172],[124,236,79,-0.2123821050805239],[124,237,64,-0.2440117868220686],[124,237,65,-0.24257305486461056],[124,237,66,-0.24100873399225387],[124,237,67,-0.23931927729913227],[124,237,68,-0.23750526172586617],[124,237,69,-0.23556739010724737],[124,237,70,-0.2335064932211377],[124,237,71,-0.2313235318386574],[124,237,72,-0.22901959877562328],[124,237,73,-0.2265959209453252],[124,237,74,-0.22405386141244177],[124,237,75,-0.22139492144835038],[124,237,76,-0.2186207425876533],[124,237,77,-0.21573310868597184],[124,237,78,-0.21273394797902567],[124,237,79,-0.20962533514295],[124,238,64,-0.2414804996540897],[124,238,65,-0.24001326894270636],[124,238,66,-0.23842146972905354],[124,238,67,-0.2367055574982967],[124,238,68,-0.23486611042752636],[124,238,69,-0.23290383140430315],[124,238,70,-0.2308195500462007],[124,238,71,-0.2286142247214239],[124,238,72,-0.22628894457046167],[124,238,73,-0.2238449315288651],[124,238,74,-0.22128354235094527],[124,238,75,-0.21860627063465632],[124,238,76,-0.21581474884747542],[124,238,77,-0.21291075035333817],[124,238,78,-0.2098961914406431],[124,238,79,-0.20677313335127923],[124,239,64,-0.23886699499958275],[124,239,65,-0.23737020617660098],[124,239,66,-0.2357499066958081],[124,239,67,-0.23400655456345631],[124,239,68,-0.23214072927977558],[124,239,69,-0.2301531338272207],[124,239,70,-0.22804459665949417],[124,239,71,-0.22581607369141932],[124,239,72,-0.22346865028962382],[124,239,73,-0.22100354326412397],[124,239,74,-0.2184221028606066],[124,239,75,-0.21572581475366814],[124,239,76,-0.21291630204083045],[124,239,77,-0.209995327237385],[124,239,78,-0.20696479427208359],[124,239,79,-0.20382675048362753],[124,240,64,-0.2361725660981534],[124,240,65,-0.23464516879088904],[124,240,66,-0.23299535573745722],[124,240,67,-0.2312235875980425],[124,240,68,-0.22933044528579416],[124,240,69,-0.22731663192362572],[124,240,70,-0.2251829748015538],[124,240,71,-0.22293042733465396],[124,240,72,-0.22056007102159403],[124,240,73,-0.2180731174038344],[124,240,74,-0.21547091002529206],[124,240,75,-0.21275492639272875],[124,240,76,-0.20992677993668263],[124,240,77,-0.20698822197299294],[124,240,78,-0.20394114366494043],[124,240,79,-0.20078757798595004],[124,241,64,-0.23339862614414475],[124,241,65,-0.23183958033533247],[124,241,66,-0.2301592503450398],[124,241,67,-0.22835809962293652],[124,241,68,-0.2264367105879609],[124,241,69,-0.22439578655252013],[124,241,70,-0.22223615364698768],[124,241,71,-0.2199587627445747],[124,241,72,-0.21756469138653545],[124,241,73,-0.2150551457077976],[124,241,74,-0.2124314623628113],[124,241,75,-0.2096951104518825],[124,241,76,-0.20684769344780363],[124,241,77,-0.20389095112283817],[124,241,78,-0.2008267614760737],[124,241,79,-0.19765714266109724],[124,242,64,-0.23054670354667872],[124,242,65,-0.22895498089936883],[124,242,66,-0.22724314182637195],[124,242,67,-0.22541165270502372],[124,242,68,-0.2234610975559791],[124,242,69,-0.22139217993367122],[124,242,70,-0.21920572481681388],[124,242,71,-0.21690268049902606],[124,242,72,-0.21448412047953735],[124,242,73,-0.21195124535406784],[124,242,74,-0.20930538470567184],[124,242,75,-0.20654799899581577],[124,242,76,-0.20368068145549945],[124,242,77,-0.20070515997647975],[124,242,78,-0.1976232990026099],[124,242,79,-0.19443710142124992],[124,243,64,-0.2276184372478539],[124,243,65,-0.2259930223852653],[124,243,66,-0.22424869453584162],[124,243,67,-0.22238592314530914],[124,243,68,-0.22040529393499475],[124,243,69,-0.21830751075740706],[124,243,70,-0.21609339745159817],[124,243,71,-0.21376389969838538],[124,243,72,-0.2113200868753934],[124,243,73,-0.2087631539120065],[124,243,74,-0.20609442314402582],[124,243,75,-0.2033153461682965],[124,243,76,-0.20042750569711887],[124,243,77,-0.19743261741249718],[124,243,78,-0.1943325318202458],[124,243,79,-0.19112923610390087],[124,244,64,-0.22461557209904126],[124,244,65,-0.22295546383985176],[124,244,66,-0.2211776811632492],[124,244,67,-0.2192826967265309],[124,244,68,-0.21727109805364164],[124,244,69,-0.21514358935474798],[124,244,70,-0.21290099334531987],[124,244,71,-0.21054425306480395],[124,244,72,-0.2080744336948427],[124,244,73,-0.2054927243771374],[124,244,74,-0.20280044003073772],[124,244,75,-0.19999902316903695],[124,244,76,-0.19709004571627575],[124,244,77,-0.19407521082361456],[124,244,78,-0.19095635468478922],[124,244,79,-0.18773544835130485],[124,245,64,-0.2215399542951909],[124,245,65,-0.21984416684475605],[124,245,66,-0.21803197808161467],[124,245,67,-0.216103864020186],[124,245,68,-0.21406041409192977],[124,245,69,-0.21190233292779292],[124,245,70,-0.20963044213988602],[124,245,71,-0.20724568210246552],[124,245,72,-0.20474911373218663],[124,245,73,-0.20214192026771483],[124,245,74,-0.19942540904848705],[124,245,75,-0.19660101329289414],[124,245,76,-0.193670293875694],[124,245,77,-0.19063494110471202],[124,245,78,-0.18749677649684304],[124,245,79,-0.18425775455331161],[124,246,64,-0.2183935268673065],[124,246,65,-0.2166610909652883],[124,246,66,-0.21481356075410418],[124,246,67,-0.21285141575312583],[124,246,68,-0.21077524740913056],[124,246,69,-0.20858576084051583],[124,246,70,-0.2062837765804475],[124,246,71,-0.2038702323190279],[124,246,72,-0.20134618464444132],[124,246,73,-0.1987128107831707],[124,246,74,-0.1959714103390705],[124,246,75,-0.1931234070315747],[124,246,76,-0.1901703504328427],[124,246,77,-0.18711391770390173],[124,246,78,-0.18395591532980426],[124,246,79,-0.1806982808537494],[124,247,64,-0.21517832523301228],[124,247,65,-0.21340828925790611],[124,247,66,-0.21152449920000427],[124,247,67,-0.20952743823364628],[124,247,68,-0.2074176999315912],[124,247,69,-0.2051959899698994],[124,247,70,-0.2028631278314481],[124,247,71,-0.20042004850816786],[124,247,72,-0.19786780420195516],[124,247,73,-0.19520756602435962],[124,247,74,-0.19244062569482423],[124,247,75,-0.18956839723776453],[124,247,76,-0.18659241867828258],[124,247,77,-0.18351435373658254],[124,247,78,-0.18033599352109642],[124,247,79,-0.1770592582202788],[124,248,64,-0.21189647280512958],[124,248,65,-0.21008790383617526],[124,248,66,-0.20816695351965575],[124,248,67,-0.20613410883698768],[124,248,68,-0.20398996560038396],[124,248,69,-0.20173523011731753],[124,248,70,-0.19937072085331198],[124,248,71,-0.19689737009314012],[124,248,72,-0.19431622560039297],[124,248,73,-0.19162845227551417],[124,248,74,-0.1888353338120763],[124,248,75,-0.18593827435158838],[124,248,76,-0.18293880013663155],[124,248,77,-0.17983856116238228],[124,248,78,-0.17663933282654165],[124,248,79,-0.17334301757762227],[124,249,64,-0.20855017665842301],[124,249,65,-0.20670216149538567],[124,249,66,-0.2047431694785138],[124,249,67,-0.2026736915504077],[124,249,68,-0.20049432587896054],[124,249,69,-0.19820577948033424],[124,249,70,-0.19580886983994195],[124,249,71,-0.19330452653152275],[124,249,72,-0.19069379283426546],[124,249,73,-0.18797782734808177],[124,249,74,-0.18515790560680134],[124,249,75,-0.1822354216895814],[124,249,76,-0.17921188983032432],[124,249,77,-0.17608894602516612],[124,249,78,-0.1728683496380523],[124,249,79,-0.16955198500435031],[124,250,64,-0.20514172325444258],[124,250,65,-0.20325336939574878],[124,250,66,-0.2012554741502547],[124,250,67,-0.19914853257775067],[124,250,68,-0.19693314532073347],[124,250,69,-0.19461002018483842],[124,250,70,-0.19217997371694817],[124,250,71,-0.18964393278106795],[124,250,72,-0.18700293613191987],[124,250,73,-0.18425813598636254],[124,250,74,-0.18141079959240014],[124,250,75,-0.178462310796083],[124,250,76,-0.17541417160608486],[124,250,77,-0.17226800375602647],[124,250,78,-0.16902555026455568],[124,250,79,-0.16568867699313983],[124,251,64,-0.20167347422436743],[124,251,65,-0.19974391080408282],[124,251,66,-0.1977062716188378],[124,251,67,-0.19556105600341944],[124,251,68,-0.193308867196488],[124,251,69,-0.19095041387742318],[124,251,70,-0.18848651170051156],[124,251,71,-0.18591808482655958],[124,251,72,-0.1832461674518947],[124,251,73,-0.18047190533484903],[124,251,74,-0.1775965573194992],[124,251,75,-0.17462149685695838],[124,251,76,-0.17154821352401073],[124,251,77,-0.16837831453915264],[124,251,78,-0.16511352627605458],[124,251,79,-0.16175569577439852],[124,252,64,-0.1981478622100265],[124,252,65,-0.19617624089416152],[124,252,66,-0.19409803873969778],[124,252,67,-0.19191375951592715],[124,252,68,-0.18962400918180444],[124,252,69,-0.1872294973781865],[124,252,70,-0.18473103891706188],[124,252,71,-0.18212955526786445],[124,252,72,-0.1794260760408234],[124,252,73,-0.17662174046745538],[124,252,74,-0.17371779887796146],[124,252,75,-0.17071561417583436],[124,252,76,-0.1676166633094589],[124,252,77,-0.16442253874077395],[124,252,78,-0.16113494991101063],[124,252,79,-0.15775572470345622],[124,253,64,-0.19456738676301277],[124,253,65,-0.1925528826056414],[124,253,66,-0.19043332095998494],[124,253,67,-0.1882092101909446],[124,253,68,-0.18588115910440728],[124,253,69,-0.18344987839386762],[124,253,70,-0.18091618208368865],[124,253,71,-0.17828098896908662],[124,253,72,-0.1755453240528002],[124,253,73,-0.17271031997854558],[124,253,74,-0.16977721846101956],[124,253,75,-0.16674737171276033],[124,253,76,-0.16362224386764257],[124,253,77,-0.16040341240108336],[124,253,78,-0.15709256954696327],[124,253,79,-0.15369152371122363],[124,254,64,-0.19093461030179643],[124,254,65,-0.1888764225614748],[124,254,66,-0.1867147281977541],[124,254,67,-0.1844500403337454],[124,254,68,-0.18208297075133878],[124,254,69,-0.17961423129122311],[124,254,70,-0.17704463524917813],[124,254,71,-0.1743750987687257],[124,254,72,-0.1716066422301039],[124,254,73,-0.16874039163565935],[124,254,74,-0.16577757999142473],[124,254,75,-0.16271954868518812],[124,254,76,-0.15956774886083547],[124,254,77,-0.15632374278903505],[124,254,78,-0.15298920523427595],[124,254,79,-0.1495659248182164],[124,255,64,-0.18725215412701868],[124,255,65,-0.18514950704398864],[124,255,66,-0.1829449307802905],[124,255,67,-0.1806389433812357],[124,255,68,-0.17823215973615103],[124,255,69,-0.17572529293082928],[124,255,70,-0.17311915559587365],[124,255,71,-0.17041466125103233],[124,255,72,-0.1676128256454773],[124,255,73,-0.16471476809413332],[124,255,74,-0.16172171280981285],[124,255,75,-0.1586349902314761],[124,255,76,-0.15545603834838362],[124,255,77,-0.1521864040202231],[124,255,78,-0.1488277442932141],[124,255,79,-0.14538182771214803],[124,256,64,-0.183522694494879],[124,256,65,-0.18137483802954357],[124,256,66,-0.17912665544148237],[124,256,67,-0.17677866986347945],[124,256,68,-0.1743314994260204],[124,256,69,-0.17178585856121964],[124,256,70,-0.16914255930226568],[124,256,71,-0.1664025125784674],[124,256,72,-0.16356672950586687],[124,256,73,-0.16063632267351846],[124,256,74,-0.15761250742519106],[124,256,75,-0.15449660313681235],[124,256,76,-0.1512900344894258],[124,256,77,-0.14799433273773688],[124,256,78,-0.1446111369742551],[124,256,79,-0.14114219538899087],[124,257,64,-0.17974895874851748],[124,257,65,-0.1775551692816733],[124,257,66,-0.17526268137813733],[124,257,67,-0.1728720234246175],[124,257,68,-0.1703838169286857],[124,257,69,-0.16779877777325913],[124,257,70,-0.1651177174662054],[124,257,71,-0.1623415443851599],[124,257,72,-0.15947126501751657],[124,257,73,-0.15650798519569464],[124,257,74,-0.153452911327437],[124,257,75,-0.15030735162145903],[124,257,76,-0.1470727173082198],[124,257,77,-0.14375052385588938],[124,257,78,-0.14034239218152367],[124,257,79,-0.13685004985739968],[124,258,64,-0.17593372150758135],[124,258,65,-0.1736933025028946],[124,258,66,-0.17135583636544216],[124,258,67,-0.16892185690337513],[124,258,68,-0.166391989139407],[124,258,69,-0.16376695051494627],[124,258,70,-0.1610475520889455],[124,258,71,-0.15823469973156756],[124,258,72,-0.1553293953126218],[124,258,73,-0.15233273788488022],[124,258,74,-0.14924592486201926],[124,258,75,-0.14607025319151845],[124,258,76,-0.14280712052227662],[124,258,77,-0.1394580263670281],[124,258,78,-0.13602457325956163],[124,258,79,-0.13250846790670467],[124,259,64,-0.17207980091588582],[124,259,65,-0.169792083545097],[124,259,66,-0.16740899293146633],[124,259,67,-0.16493106847306438],[124,259,68,-0.1623589388478478],[124,259,69,-0.15969332316655405],[124,259,70,-0.1569350321199095],[124,259,71,-0.1540849691202396],[124,259,72,-0.15114413143744415],[124,259,73,-0.14811361132944267],[124,259,74,-0.14499459716683766],[124,259,75,-0.14178837455212384],[124,259,76,-0.13849632743320917],[124,259,77,-0.13511993921132476],[124,259,78,-0.13166079384333068],[124,259,79,-0.1281205769383773],[124,260,64,-0.16819005494706485],[124,260,65,-0.16585439867840923],[124,260,66,-0.16342506459060846],[124,260,67,-0.1609025978409785],[124,260,68,-0.158287630904776],[124,260,69,-0.15558088467599945],[124,260,70,-0.15278316956208288],[124,260,71,-0.14989538657257628],[124,260,72,-0.14691852840177472],[124,260,73,-0.14385368050539832],[124,260,74,-0.14070202217107336],[124,260,75,-0.1374648275829437],[124,260,76,-0.13414346688017553],[124,260,77,-0.13073940720943328],[124,260,78,-0.127254213771336],[124,260,79,-0.12368955086084965],[124,261,64,-0.16426737776841183],[124,261,65,-0.16188317091874105],[124,261,66,-0.15940700213618764],[124,261,67,-0.15683942250737604],[124,261,68,-0.15418106844879087],[124,261,69,-0.15143266275464873],[124,261,70,-0.14859501563823285],[124,261,71,-0.14566902576679286],[124,261,72,-0.14265568128996348],[124,261,73,-0.139556060861813],[124,261,74,-0.13637133465626228],[124,261,75,-0.13310276537621335],[124,261,76,-0.12975170925614077],[124,261,77,-0.12631961705823347],[124,261,78,-0.12280803506208804],[124,261,79,-0.11921860604791268],[124,262,64,-0.1603146961628118],[124,262,65,-0.157881356413902],[124,262,66,-0.1553577899920784],[124,262,67,-0.15274455408396137],[124,262,68,-0.15004228919297175],[124,262,69,-0.14725172013345839],[124,262,70,-0.14437365701785898],[124,262,71,-0.14140899623698694],[124,262,72,-0.13835872143340666],[124,262,73,-0.1352239044680037],[124,262,74,-0.13200570637949088],[124,262,75,-0.12870537833719103],[124,262,76,-0.12532426258684798],[124,262,77,-0.121863793389555],[124,262,78,-0.11832549795379832],[124,262,79,-0.11471099736058143],[124,263,64,-0.15633496600866303],[124,263,65,-0.15385194088819693],[124,263,66,-0.15128044262328766],[124,263,67,-0.14862103467175297],[124,263,68,-0.1458743617713429],[124,263,69,-0.1430411508793426],[124,263,70,-0.1401222121047595],[124,263,71,-0.1371184396331987],[124,263,72,-0.1340308126443826],[124,263,73,-0.13086039622242462],[124,263,74,-0.1276083422585952],[124,263,75,-0.12427589034692305],[124,263,76,-0.12086436867238448],[124,263,77,-0.11737519489176357],[124,263,78,-0.1138098770071907],[124,263,79,-0.1101700142323147],[124,264,64,-0.15233116881800163],[124,264,65,-0.1497979361457084],[124,264,66,-0.147178001005689],[124,264,67,-0.144471933298557],[124,264,68,-0.14168038214537976],[124,264,69,-0.13880407677199208],[124,264,70,-0.13584382738544493],[124,264,71,-0.1328005260426916],[124,264,72,-0.12967514751146664],[124,264,73,-0.12646875012347242],[124,264,74,-0.12318247661960219],[124,264,75,-0.11981755498755436],[124,264,76,-0.1163752992915798],[124,264,77,-0.11285711049445285],[124,264,78,-0.10926447727166927],[124,264,79,-0.10559897681782765],[124,265,64,-0.1483063083326488],[124,265,65,-0.14572237663208976],[124,265,66,-0.14305352915473152],[124,265,67,-0.14030034241586742],[124,265,68,-0.13746347007036447],[124,265,69,-0.1345436437409553],[124,265,70,-0.1315416738382058],[124,265,71,-0.12845845037226172],[124,265,72,-0.1252949437563306],[124,265,73,-0.12205220560201363],[124,265,74,-0.11873136950621516],[124,265,75,-0.115333651829985],[124,265,76,-0.11186035246903736],[124,265,77,-0.10831285561603521],[124,265,78,-0.1046926305146404],[124,265,79,-0.1010012322052945],[124,266,64,-0.144263407178517],[124,266,65,-0.14162831605500265],[124,266,66,-0.1389101107132631],[124,266,67,-0.1361093744553249],[124,266,68,-0.13322676562173524],[124,266,69,-0.13026301836312498],[124,266,70,-0.12721894340297935],[124,266,71,-0.1240954287917227],[124,266,72,-0.12089344065207419],[124,266,73,-0.11761402391578529],[124,266,74,-0.11425830305149026],[124,266,75,-0.1108274827840241],[124,266,76,-0.10732284880495035],[124,266,77,-0.10374576847438849],[124,266,78,-0.10009769151414366],[124,266,79,-0.09638015069209727],[124,267,64,-0.14020550357789335],[124,267,65,-0.13751882406301613],[124,267,66,-0.1347508455982791],[124,267,67,-0.13190215844455183],[124,267,68,-0.12897342578123927],[124,267,69,-0.12596538442043764],[124,267,70,-0.12287884551182038],[124,267,71,-0.1197146952383677],[124,267,72,-0.11647389550288978],[124,267,73,-0.11315748460546438],[124,267,74,-0.10976657791150651],[124,267,75,-0.1063023685108393],[124,267,76,-0.10276612786749578],[124,267,77,-0.09915920646035159],[124,267,78,-0.095483034414582],[124,267,79,-0.09173912212390983],[124,268,64,-0.13613564811991485],[124,268,65,-0.13339698298318525],[124,268,66,-0.13057884670682218],[124,268,67,-0.12768183668258593],[124,268,68,-0.12470662108311398],[124,268,69,-0.1216539395180139],[124,268,70,-0.118524603680209],[124,268,71,-0.11531949798264218],[124,268,72,-0.1120395801852968],[124,268,73,-0.1086858820126475],[124,268,74,-0.10525950976126514],[124,268,75,-0.10176164489793915],[124,268,76,-0.09819354464805413],[124,268,77,-0.09455654257431162],[124,268,78,-0.09085204914579903],[124,268,79,-0.08708155229736719],[124,269,64,-0.13205690058913616],[124,269,65,-0.12926588461720784],[124,269,66,-0.12639723668092334],[124,269,67,-0.12345156147480618],[124,269,68,-0.12042953232019132],[124,269,69,-0.11733189176263481],[124,269,70,-0.11415945215908413],[124,269,71,-0.11091309625492157],[124,269,72,-0.10759377775083423],[124,269,73,-0.1042025218596288],[124,269,74,-0.10074042585270787],[124,269,75,-0.0972086595965806],[124,269,76,-0.09360846607913514],[124,269,77,-0.08994116192577067],[124,269,78,-0.08620813790538873],[124,269,79,-0.08241085942620191],[124,270,64,-0.12797232685208293],[124,270,65,-0.1251286270960525],[124,270,66,-0.12220914473148314],[124,270,67,-0.1192144919272422],[124,270,68,-0.11614534730981574],[124,270,69,-0.11300245650143936],[124,270,70,-0.10978663264749294],[124,270,71,-0.10649875693327338],[124,270,72,-0.10313977909009747],[124,270,73,-0.09971071789085756],[124,270,74,-0.09621266163473857],[124,270,75,-0.09264676862147903],[124,270,76,-0.08901426761489528],[124,270,77,-0.08531645829577206],[124,270,78,-0.08155471170411538],[124,270,79,-0.07773047067072925],[124,271,64,-0.1238849958020003],[124,271,65,-0.12098831179326675],[124,271,66,-0.11801770352130098],[124,271,67,-0.11497379080048525],[124,271,68,-0.11185725771979149],[124,271,69,-0.10866885312106622],[124,271,70,-0.10540939106607738],[124,271,71,-0.10207975129243585],[124,271,72,-0.09868087965834665],[124,271,73,-0.09521378857630886],[124,271,74,-0.09167955743547601],[124,271,75,-0.08807933301305715],[124,271,76,-0.08441432987448078],[124,271,77,-0.08068583076242086],[124,271,78,-0.07689518697468345],[124,271,79,-0.07304381873091653],[124,272,64,-0.11979797636169154],[124,272,65,-0.11684804029686441],[124,272,66,-0.11382604610714914],[124,272,67,-0.11073262142309043],[124,272,68,-0.10756845595425385],[124,272,69,-0.10433430190712939],[124,272,70,-0.10103097439128694],[124,272,71,-0.09765935181389679],[124,272,72,-0.09422037626257174],[124,272,73,-0.09071505387664969],[124,272,74,-0.08714445520662517],[124,272,75,-0.08350971556211512],[124,272,76,-0.07981203534807746],[124,272,77,-0.0760526803893824],[124,272,78,-0.07223298224373736],[124,272,79,-0.06835433850292233],[124,273,64,-0.11571433454434366],[124,273,65,-0.11271091143968187],[124,273,66,-0.10963730294078372],[124,273,67,-0.10649414466436297],[124,273,68,-0.10328213209935178],[124,273,69,-0.10000202096391625],[124,273,70,-0.09665462755020676],[124,273,71,-0.09324082905695996],[124,273,72,-0.08976156390990286],[124,273,73,-0.08621783207008715],[124,273,74,-0.08261069532985099],[124,273,75,-0.07894127759680497],[124,273,76,-0.07521076516555081],[124,273,77,-0.07142040697724084],[124,273,78,-0.06757151486697266],[124,273,79,-0.06366546379898075],[124,274,64,-0.11163713057254704],[124,274,65,-0.1085800183884168],[124,274,66,-0.1054545989291053],[124,274,67,-0.10226151596674521],[124,274,68,-0.0990014709289625],[124,274,69,-0.09567522319452848],[124,274,70,-0.09228359037622302],[124,274,71,-0.08882744859102581],[124,274,72,-0.08530773271759085],[124,274,73,-0.08172543664112708],[124,274,74,-0.07808161348538445],[124,274,75,-0.07437737583214288],[124,274,76,-0.0706138959279124],[124,274,77,-0.06679240587795127],[124,274,78,-0.06291419782759688],[124,274,79,-0.05898062413087307],[124,275,64,-0.1075694160554066],[124,275,65,-0.10445844579124458],[124,275,66,-0.10128105055336506],[124,275,67,-0.09803788243769568],[124,275,68,-0.09472964897032798],[124,275,69,-0.09135711334135904],[124,275,70,-0.08792109462541475],[124,275,71,-0.08442246798897396],[124,275,72,-0.08086216488444664],[124,275,73,-0.07724117323113106],[124,275,74,-0.07356053758274672],[124,275,75,-0.06982135928194366],[124,275,76,-0.06602479660149374],[124,275,77,-0.06217206487227145],[124,275,78,-0.05826443659802044],[124,275,79,-0.05430324155686733],[124,276,64,-0.10351423122363834],[124,276,65,-0.1003492669839044],[124,276,66,-0.09711976304730524],[124,276,67,-0.09382638000095161],[124,276,68,-0.09046983162950378],[124,276,69,-0.08705088508678854],[124,276,70,-0.08357036105356058],[124,276,71,-0.08002913388153271],[124,276,72,-0.0764281317236234],[124,276,73,-0.07276833665055282],[124,276,74,-0.06905078475347531],[124,276,75,-0.065276566233059],[124,276,76,-0.0614468254747092],[124,276,77,-0.057562761110050986],[124,276,78,-0.05362562606465904],[124,276,79,-0.04963672759200349],[124,277,64,-0.0994746022228617],[124,277,65,-0.09625554125446784],[124,277,66,-0.09297382763445255],[124,277,67,-0.08963013060739256],[124,277,68,-0.08622517037684002],[124,277,69,-0.0827597182143282],[124,277,70,-0.0792345965539834],[124,277,71,-0.07565067907286266],[124,277,72,-0.07200889075697131],[124,277,73,-0.06831020795308751],[124,277,74,-0.06455565840608335],[124,277,75,-0.060746321282153126],[124,277,76,-0.056883327177646326],[124,277,77,-0.05296785811361726],[124,277,78,-0.049001147516084975],[124,277,79,-0.0449844801819666],[124,278,64,-0.09545353846498095],[124,278,65,-0.09218031116668418],[124,278,66,-0.08884631882445337],[124,278,67,-0.08545223950539571],[124,278,68,-0.08199879999238285],[124,278,69,-0.0784867758300945],[124,278,70,-0.0749169913561204],[124,278,71,-0.07129031971724187],[124,278,72,-0.06760768287084856],[124,278,73,-0.06387005157161663],[124,278,74,-0.06007844534313611],[124,278,75,-0.05623393243490171],[124,278,76,-0.05233762976436174],[124,278,77,-0.04839070284413782],[124,278,78,-0.04439436569440958],[124,278,79,-0.0403498807404265],[124,279,64,-0.09145403003755509],[124,279,65,-0.08812659994179661],[124,279,66,-0.08474029176834791],[124,279,67,-0.08129579257057529],[124,279,68,-0.07779383587109046],[124,279,69,-0.07423520164450781],[124,279,70,-0.0706207162847094],[124,279,71,-0.066951252556739],[124,279,72,-0.06322772953327804],[124,279,73,-0.05945111251583535],[124,279,74,-0.055622412940330435],[124,279,75,-0.05174268826749362],[124,279,76,-0.04781304185776947],[124,279,77,-0.04383462283084294],[124,279,78,-0.03980862590977635],[124,279,79,-0.03573629124972527],[124,280,64,-0.08747904517136135],[124,280,65,-0.08409740889904105],[124,280,66,-0.08065877967299262],[124,280,67,-0.07716385369512302],[124,280,68,-0.07361337138807994],[124,280,69,-0.07000811731443435],[124,280,70,-0.06634892007981247],[124,280,71,-0.06263665222010045],[124,280,72,-0.058872230072674614],[124,280,73,-0.05505661363179065],[124,280,74,-0.05119080638780704],[124,280,75,-0.04727585515067145],[124,280,76,-0.04331284985735351],[124,280,77,-0.039302923363342956],[124,280,78,-0.0352472512182041],[124,280,79,-0.031147051425150563],[124,281,64,-0.08353152776604766],[124,281,65,-0.08009571495471923],[124,281,66,-0.0766047912745273],[124,281,67,-0.07305946223663834],[124,281,68,-0.06946047532379368],[124,281,69,-0.06580861984566022],[124,281,70,-0.062104726777563735],[124,281,71,-0.05834966858273666],[124,281,72,-0.05454435901802851],[124,281,73,-0.05068975292321504],[124,281,74,-0.046786845993578574],[124,281,75,-0.042836674536192165],[124,281,76,-0.03884031520958642],[124,281,77,-0.034798884746922554],[124,281,78,-0.030713539662658773],[124,281,79,-0.026585475942675463],[124,282,64,-0.07961439497377537],[124,282,65,-0.07612446817974644],[124,282,66,-0.07258130837078053],[124,282,67,-0.06898563052634604],[124,282,68,-0.06533818934898306],[124,282,69,-0.06163977905559137],[124,282,70,-0.0578912331515361],[124,282,71,-0.054093424187700745],[124,282,72,-0.05024726350043612],[124,282,73,-0.04635370093454427],[124,282,74,-0.04241372454896358],[124,282,75,-0.03842836030559493],[124,282,76,-0.03439867174094274],[124,282,77,-0.030325759620696613],[124,282,78,-0.026210761577239172],[124,282,79,-0.02205485173004862],[124,283,64,-0.07573053484105385],[124,283,65,-0.07218658941587891],[124,283,66,-0.06859128341282311],[124,283,67,-0.06494534143691272],[124,283,68,-0.061249525569719854],[124,283,69,-0.05750463509639475],[124,283,70,-0.053711506214942584],[124,283,71,-0.049871011727876946],[124,283,72,-0.045984060716199815],[124,283,73,-0.0420515981958447],[124,283,74,-0.03807460475625035],[124,283,75,-0.03405409618150462],[124,283,76,-0.02999112305373358],[124,283,77,-0.025886770338858556],[124,283,78,-0.021742156954710712],[124,283,79,-0.01755843532146767],[124,284,64,-0.07188280400866442],[124,284,65,-0.06828496795051664],[124,284,66,-0.06463763715556559],[124,284,67,-0.06094154600975238],[124,284,68,-0.05719746413232912],[124,284,69,-0.05340619603847241],[124,284,70,-0.04956858078356341],[124,284,71,-0.045685491589270766],[124,284,72,-0.041757835451383896],[124,284,73,-0.03778655272953557],[124,284,74,-0.03377261671847792],[124,284,75,-0.02971703320135588],[124,284,76,-0.025620839984649035],[124,284,77,-0.02148510641490714],[124,284,78,-0.01731093287726765],[124,284,79,-0.013099450275719848],[124,285,64,-0.068074025469576],[124,285,65,-0.06442245924998091],[124,285,66,-0.06072325636729589],[124,285,67,-0.05697716114172269],[124,285,68,-0.05318495088813954],[124,285,69,-0.04934743551416168],[124,285,70,-0.04546545709929192],[124,285,71,-0.04153988945529055],[124,285,72,-0.037571637667719704],[124,285,73,-0.03356163761879741],[124,285,74,-0.029510855491223453],[124,285,75,-0.025420287253425766],[124,285,76,-0.021290958125895043],[124,285,77,-0.017123922028734584],[124,285,78,-0.012920261010410716],[124,285,79,-0.008681084657673727],[124,286,64,-0.06430698638505036],[124,286,65,-0.06060188275147177],[124,286,66,-0.05685099159836379],[124,286,67,-0.05305506733141638],[124,286,68,-0.049214895118260216],[124,286,69,-0.04533129042187714],[124,286,70,-0.041405098514514765],[124,286,71,-0.03743719397223927],[124,286,72,-0.03342848015007771],[124,286,73,-0.029379888637888596],[124,286,74,-0.025292378696618933],[124,286,75,-0.021166936675400927],[124,286,76,-0.01700457540915204],[124,286,77,-0.01280633359680769],[124,286,78,-0.008573275160171812],[124,286,79,-0.00430648858335364],[124,287,64,-0.060584435958837446],[124,287,65,-0.0568260197135983],[124,287,66,-0.05302365500890763],[124,287,67,-0.04917810648494281],[124,287,68,-0.04529016731827892],[124,287,69,-0.041360658690581975],[124,287,70,-0.0373904292372165],[124,287,71,-0.03338035447590626],[124,287,72,-0.029331336215395548],[124,287,73,-0.0252443019442552],[124,287,74,-0.021120204199483378],[124,287,75,-0.016960019915364027],[124,287,76,-0.012764749752238347],[124,287,77,-0.008535417405324264],[124,287,78,-0.00427306889356549],[124,287,79,2.122817152025447E-5],[124,288,64,-0.05690908336936443],[124,288,65,-0.053097611125388994],[124,288,66,-0.04924401825552599],[124,288,67,-0.04534907978110264],[124,288,68,-0.04141359704278019],[124,288,69,-0.03743839710449187],[124,288,70,-0.033424332136706786],[124,288,71,-0.02937227877915391],[124,288,72,-0.025283137482958518],[124,288,73,-0.02115783183233183],[124,288,74,-0.016997307845465437],[124,288,75,-0.012802533255092674],[124,288,76,-0.008574496768373685],[124,288,77,-0.004314207306237022],[124,288,78,-2.269322216064129E-5],[124,288,79,0.004298998499636997],[124,289,64,-0.05328359576012193],[124,289,65,-0.04941935567398717],[124,289,66,-0.045514810437102204],[124,289,67,-0.04157074559616533],[124,289,68,-0.037587970809898064],[124,289,69,-0.033567319188225725],[124,289,70,-0.02950964661018929],[124,289,71,-0.02541583102072345],[124,289,72,-0.021286771706254398],[124,289,73,-0.017123388549257268],[124,289,74,-0.012926621261423105],[124,289,75,-0.008697428595901197],[124,289,76,-0.00443678753827112],[124,289,77,-1.4569247637641336E-4],[124,289,78,0.0041748456509936305],[124,289,79,0.008523800226608147],[124,290,64,-0.049710596288078834],[124,290,65,-0.045793907770858455],[124,290,66,-0.041838716099608764],[124,290,67,-0.03784581748807306],[124,290,68,-0.03381603006572509],[124,290,69,-0.02975019315222216],[124,290,70,-0.025649166509988497],[124,290,71,-0.021513829575071475],[124,290,72,-0.01734508066621762],[124,290,73,-0.013143836172316237],[124,290,74,-0.008911029717850183],[124,290,75,-0.004647611306831334],[124,290,76,-3.545464448644342E-4],[124,290,77,0.003967184760520243],[124,290,78,0.008316588521285723],[124,290,79,0.012692658312088129],[124,291,64,-0.04619266223024754],[124,291,65,-0.04222387563663635],[124,291,66,-0.038218373300017316],[124,291,67,-0.03417696224020003],[124,291,68,-0.030100469208706626],[124,291,69,-0.02598973989855402],[124,291,70,-0.021845638131569062],[124,291,71,-0.017669045023374463],[124,291,72,-0.0134608581259974],[124,291,73,-0.00922199054824513],[124,291,74,-0.004953370053489059],[124,291,75,-6.559381353334615E-4],[124,291,76,0.0036693509291855775],[124,291,77,0.0080215310487331],[124,291,78,0.012399625309158085],[124,291,79,0.016802646987356562],[124,292,64,-0.04273232314823833],[124,292,65,-0.038711819444442325],[124,292,66,-0.03465637172914776],[124,292,67,-0.03056679796449921],[124,292,68,-0.026443933673850395],[124,292,69,-0.022288631086969157],[124,292,70,-0.018101758262171253],[124,292,71,-0.013884198185524305],[124,292,72,-0.0096368478470715],[124,292,73,-0.005360617294222297],[124,292,74,-0.001056428661946579],[124,292,75,0.0032747848197450524],[124,292,76,0.007632079841394773],[124,292,77,0.012014504052623637],[124,292,78,0.016421097123610257],[124,292,79,0.02085089182955116],[124,293,64,-0.039332059110997825],[124,293,65,-0.03526024952187537],[124,293,66,-0.031155250893657227],[124,293,67,-0.02701789226423626],[124,293,68,-0.022849018076956107],[124,293,69,-0.01864948726136184],[124,293,70,-0.014420172290273009],[124,293,71,-0.010161958213324496],[124,293,72,-0.005875741666920842],[124,293,73,-0.0015624298607566645],[124,293,74,0.002777060459468142],[124,293,75,0.007141804072646724],[124,293,76,0.0115308683665446],[124,293,77,0.015943314445613935],[124,293,78,0.02037819826236549],[124,293,79,0.024834571772326744],[124,294,64,-0.03599429897563357],[124,294,65,-0.03187162461157493],[124,294,66,-0.02771749835706809],[124,294,67,-0.02353276045621301],[124,294,68,-0.01931826441876297],[124,294,69,-0.01507487603657473],[124,294,70,-0.010803472375774656],[124,294,71,-0.006504940744784471],[124,294,72,-0.002180177638156977],[124,294,73,0.002169912343630384],[124,294,74,0.006544417598792138],[124,294,75,0.010942420652772303],[124,294,76,0.01536299931106748],[124,294,77,0.01980522783619268],[124,294,78,0.024268178148810257],[124,294,79,0.028750921053050715],[124,295,64,-0.032721418726243665],[124,295,65,-0.02854835019027388],[124,295,66,-0.02434554803975264],[124,295,67,-0.02011386385239365],[124,295,68,-0.015854160348928642],[124,295,69,-0.011567310345442769],[124,295,70,-0.007254195680816949],[124,295,71,-0.002915706119421657],[124,295,72,0.0014472617709872793],[124,295,73,0.005833805766021924],[124,295,74,0.010243019156436037],[124,295,75,0.0146739919444253],[124,295,76,0.019125812064822598],[124,295,77,0.023597566631043426],[124,295,78,0.028088343205802654],[124,295,79,0.03259723109663128],[124,296,64,-0.029515739870924734],[124,296,65,-0.025292776846515624],[124,296,66,-0.021041778578050063],[124,296,67,-0.01676360810111356],[124,296,68,-0.01245913749002274],[124,296,69,-0.008129246746262725],[124,296,70,-0.0037748226614199576],[124,296,71,6.032423452413532E-4],[124,296,72,0.005004051414612645],[124,296,73,0.009426704460829577],[124,296,74,0.013870299409995707],[124,296,75,0.01833393346403686],[124,296,76,0.02281670439006407],[124,296,77,0.027317711835093725],[124,296,78,0.031836058666150274],[124,296,79,0.03637085233577782],[124,297,64,-0.026379527896867455],[124,297,65,-0.02210719871694547],[124,297,66,-0.01780851174242494],[124,297,67,-0.013484341587777962],[124,297,68,-0.00913556982143951],[124,297,69,-0.004763083790593925],[124,297,70,-3.677754198453953E-4],[124,297,71,0.004049460016080586],[124,297,72,0.008487725145653616],[124,297,73,0.012946121779723374],[124,297,74,0.017423752216949015],[124,297,75,0.021919720574971685],[124,297,76,0.026433134147703985],[124,297,77,0.030963104788590545],[124,297,78,0.03550875031985975],[124,297,79,0.04006919596779644],[124,298,64,-0.023314990783460443],[124,298,65,-0.01899385198109614],[124,298,66,-0.014648010914585785],[124,298,67,-0.010278353894967271],[124,298,68,-0.0058857721231453525],[124,298,69,-0.0014711604513051105],[124,298,70,0.0029645838824036708],[124,298,71,0.00742056254576267],[124,298,72,0.011895877431012121],[124,298,73,0.016389631999856193],[124,298,74,0.02090093265532777],[124,298,75,0.025428890140005475],[124,298,76,0.029972620960961843],[124,298,77,0.03453124884129276],[124,298,78,0.039103906198251395],[124,298,79,0.04368973564801423],[124,299,64,-0.02032427757356893],[124,299,65,-0.015954913414833176],[124,299,66,-0.0115624796237319],[124,299,67,-0.007147874322121446],[124,299,68,-0.0027119984794373234],[124,299,69,0.0017442453889572745],[124,299,70,0.00621995455076587],[124,299,71,0.01071422741294581],[124,299,72,0.015226164905140442],[124,299,73,0.01975487189019979],[124,299,74,0.02429945860217724],[124,299,75,0.028859042111287363],[124,299,76,0.03343274781621062],[124,299,77,0.03801971096358998],[124,299,78,0.04261907819474678],[124,299,79,0.047230009119639975],[124,300,64,-0.017409477002899604],[124,300,65,-0.012992499002373946],[124,300,66,-0.008554060141840916],[124,300,67,-0.0040950704647128786],[124,300,68,3.835591573806488E-4],[124,300,69,0.004880918388970382],[124,300,70,0.009396098823082948],[124,300,71,0.013928195401382668],[124,300,72,0.018476307862170745],[124,300,73,0.023039542216087287],[124,300,74,0.027617012249902918],[124,300,75,0.03220784105788411],[124,300,76,0.03681116260111866],[124,300,77,0.04142612329464801],[124,300,78,0.046051883622430054],[124,300,79,0.0506876197801609],[124,301,64,-0.014572616187380816],[124,301,65,-0.010108662606806113],[124,301,66,-0.005624832137922146],[124,301,67,-0.0011220468528320565],[124,301,68,0.003398772343479871],[124,301,69,0.007936707139884574],[124,301,70,0.012490843274417032],[124,301,71,0.017060272018005543],[124,301,72,0.021644091686671366],[124,301,73,0.0262414091820447],[124,301,74,0.030851341560585353],[124,301,75,0.035473017630989756],[124,301,76,0.04010557958017182],[124,301,77,0.04474818462766477],[124,301,78,0.049400006708467295],[124,301,79,0.05406023818436207],[124,302,64,-0.011815659368709881],[124,302,65,-0.007305394699261378],[124,302,66,-0.002776811391392733],[124,302,67,0.0017691563506534707],[124,302,68,0.006331577459984706],[124,302,69,0.010909525495756418],[124,302,70,0.015502080161056992],[124,302,71,0.020108328849826027],[124,302,72,0.024727368222859054],[124,302,73,0.02935830581273873],[124,302,74,0.034000261658089205],[124,302,75,0.03865236996662609],[124,302,76,0.04331378080739797],[124,302,77,0.04798366183205948],[124,302,78,0.05266120002520524],[124,302,79,0.05734560348378795],[124,303,64,-0.009140506717988647],[124,303,65,-0.004584621146661681],[124,303,66,-1.1948564494154452E-5],[124,303,67,0.004576564592451844],[124,303,68,0.009179976969532324],[124,303,69,0.013797353843752759],[124,303,70,0.018427768703802673],[124,303,71,0.023070304859737153],[124,303,72,0.027724057082357454],[124,303,73,0.03238813327213277],[124,303,74,0.037061656158058814],[124,303,75,0.04174376502592525],[124,303,76,0.04643361747638794],[124,303,77,0.05113039121268797],[124,303,78,0.05583328585804339],[124,303,79,0.06054152480274058],[124,304,64,-0.00654899319737922],[124,304,65,-0.0019482020579712697],[124,304,66,0.0026678719663188848],[124,304,67,0.007298270111780301],[124,304,68,0.011942040612984333],[124,304,69,0.016598240314095472],[124,304,70,0.021265936310599216],[124,304,71,0.025944207621290863],[124,304,72,0.030632146890575772],[124,304,73,0.03532886212092396],[124,304,74,0.04003347843587617],[124,304,75,0.04474513987307087],[124,304,76,0.04946301120768942],[124,304,77,0.05418627980616181],[124,304,78,0.05891415751015814],[124,304,79,0.06364588255089315],[124,305,64,-0.004042887479921094],[124,305,65,6.02069310901638E-4],[124,305,66,0.0052608332198736535],[124,305,67,0.009932433063732156],[124,305,68,0.01461590654614095],[124,305,69,0.019310301929596933],[124,305,70,0.02401467973836672],[124,305,71,0.028728114492297133],[124,305,72,0.033449696471550376],[124,305,73,0.038178533512104255],[124,305,74,0.042913752832419355],[124,305,75,0.0476545028907371],[124,305,76,0.052399955273410785],[124,305,77,0.057149306614107866],[124,305,78,0.06190178054391273],[124,305,79,0.06665662967235322],[124,306,64,-0.0016238909274359642],[124,306,65,0.0030644675936315133],[124,306,66,0.007765186660733517],[124,306,67,0.012477282583154989],[124,306,68,0.017199782416537038],[124,306,69,0.02193172569486615],[124,306,70,0.02667216619410793],[124,306,71,0.03142017372732504],[124,306,72,0.03617483597133262],[124,306,73,0.040935260324728974],[124,306,74,0.0457005757977077],[124,306,75,0.05046993493310949],[124,306,76,0.05524251575912062],[124,306,77,0.06001752377345365],[124,306,78,0.06479419395904057],[124,306,79,0.06957179283126196],[124,307,64,7.063633735402974E-4],[124,307,65,0.005437336291489285],[124,307,66,0.010179253190674066],[124,307,67,0.014931117789103512],[124,307,68,0.019691946380382942],[124,307,69,0.024460769625249172],[124,307,70,0.02923663437535888],[124,307,71,0.03401860552917316],[124,307,72,0.03880576791998957],[124,307,73,0.043597228235960114],[124,307,74,0.04839211697250208],[124,307,75,0.0531895904165581],[124,307,76,0.05798883266311389],[124,307,77,0.06278905766380986],[124,307,78,0.06758951130767381],[124,307,79,0.07238947353400253],[124,308,64,0.0029463115176710797],[124,308,65,0.007719088692713538],[124,308,66,0.01250142408104924],[124,308,67,0.017292308729731677],[124,308,68,0.022090748059515206],[124,308,69,0.02689576371536677],[124,308,70,0.031706395449842176],[124,308,71,0.036521703039167006],[124,308,72,0.04134076823207501],[124,308,73,0.04616269673124017],[124,308,74,0.050986620207713065],[124,308,75,0.05581169834781409],[124,308,76,0.06063712093289461],[124,308,77,0.0654621099517998],[124,308,78,0.07028592174606443],[124,308,79,0.07510784918786388],[124,309,64,0.005094459628644327],[124,309,65,0.009908208733309512],[124,309,66,0.014730161846116224],[124,309,67,0.019559297267697326],[124,309,68,0.02439460943842857],[124,309,69,0.029235110847322485],[124,309,70,0.034079833974398],[124,309,71,0.03892783326636021],[124,309,72,0.043778187145646644],[124,309,73,0.04863000005267337],[124,309,74,0.0534824045216956],[124,309,75,0.05833456328972994],[124,309,76,0.06318567143895402],[124,309,77,0.06803495857241523],[124,309,78,0.07288169102307902],[124,309,79,0.07772517409624215],[124,310,64,0.0071493846489647656],[124,310,65,0.012003251799329165],[124,310,66,0.01686400105737658],[124,310,67,0.02173059790613352],[124,310,68,0.026602025701446375],[124,310,69,0.03147728763863897],[124,310,70,0.03635540875325126],[124,310,71,0.0412354379556967],[124,310,72,0.04611645009988884],[124,310,73,0.05099754808567521],[124,310,74,0.05587786499549169],[124,310,75,0.06075656626468344],[124,310,76,0.06563285188590931],[124,310,77,0.07050595864746181],[124,310,78,0.07537516240553149],[124,310,79,0.08023978039044286],[124,311,64,0.009109735071597264],[124,311,65,0.014002845470514391],[124,311,66,0.018901549098812462],[124,311,67,0.02380479855506666],[124,311,68,0.02871156600990772],[124,311,69,0.03362084522979718],[124,311,70,0.03853165363548819],[124,311,71,0.043443034395007504],[124,311,72,0.04835405855121298],[124,311,73,0.05326382718375884],[124,311,74,0.058171473605887994],[124,311,75,0.06307616559549284],[124,311,76,0.06797710766086426],[124,311,77,0.07287354334095875],[124,311,78,0.07776475754021535],[124,311,79,0.08265007889794607],[124,312,64,0.010974231613523608],[124,312,65,0.015905690205369527],[124,312,66,0.02084148686308407],[124,312,67,0.025780561238346808],[124,312,68,0.03072187421943552],[124,312,69,0.03566441001144807],[124,312,70,0.040607178251811246],[124,312,71,0.04554921616091154],[124,312,72,0.05048959072790435],[124,312,73,0.055427400931529855],[124,312,74,0.06036177999636061],[124,312,75,0.065291897683916],[124,312,76,0.07021696261906787],[124,312,77,0.07513622465156528],[124,312,78,0.08004897725271048],[124,312,79,0.08495455994720974],[124,313,64,0.012741667831257644],[124,313,65,0.017710559967706457],[124,313,66,0.022682569388734516],[124,313,67,0.02765662274113806],[124,313,68,0.032631669537336525],[124,313,69,0.03760668429134292],[124,313,70,0.04258066869062205],[124,313,71,0.04755265380366973],[124,313,72,0.052521702323366726],[124,313,73,0.05748691084594107],[124,313,74,0.06244741218595973],[124,313,75,0.06740237772678528],[124,313,76,0.07235101980692357],[124,313,77,0.077292594142089],[124,313,78,0.08222640228301936],[124,313,79,0.08715179410906565],[124,314,64,0.0144109106782149],[124,314,65,0.019416302794556098],[124,314,66,0.024423626438291643],[124,314,67,0.029431795197857352],[124,314,68,0.034439747120018904],[124,314,69,0.03944644690087021],[124,314,70,0.04445088811331677],[124,314,71,0.04945209547087556],[124,314,72,0.0544491271278465],[124,314,73,0.05944107701568646],[124,314,74,0.0644270772160111],[124,314,75,0.06940630036965556],[124,314,76,0.07437796212222375],[124,314,77,0.07934132360594934],[124,314,78,0.0842956939579051],[124,314,79,0.08924043287457989],[124,315,64,0.015980901004022788],[124,315,65,0.02102184130553761],[124,315,66,0.026063563017362207],[124,315,67,0.031104966620655816],[124,315,68,0.036144978610523126],[124,315,69,0.041182553741295286],[124,315,70,0.04621667730889023],[124,315,71,0.051246367470082155],[124,315,72,0.05627067759873611],[124,315,73,0.06128869867883652],[124,315,74,0.06629956173473861],[124,315,75,0.07130244029807037],[124,315,76,0.07629655291171586],[124,315,77,0.08128116567070423],[124,315,78,0.08625559480003872],[124,315,79,0.09121920926948773],[124,316,64,0.01745065399571341],[124,316,65,0.022526173153621182],[124,316,66,0.02760135983465098],[124,316,67,0.03267510136837762],[124,316,68,0.03774631261609973],[124,316,69,0.042813938269634505],[124,316,70,0.04787695518778318],[124,316,71,0.05293437477029528],[124,316,72,0.05798524536938701],[124,316,73,0.06302865473864364],[124,316,74,0.06806373251973541],[124,316,75,0.07308965276637139],[124,316,76,0.07810563650592639],[124,316,77,0.08311095433856283],[124,316,78,0.08810492907388115],[124,316,79,0.09308693840512419],[124,317,64,0.01881925956087066],[124,317,65,0.02392837141736162],[124,317,66,0.029036073702984944],[124,317,67,0.034141240556076036],[124,317,68,0.0392427751259154],[124,317,69,0.0443396119242474],[124,317,70,0.049430719215054236],[124,317,71,0.05451510144241736],[124,317,72,0.05959180169651776],[124,317,73,0.06465990421760562],[124,317,74,0.06971853693837202],[124,317,75,0.07476687406414284],[124,317,76,0.07980413869133265],[124,317,77,0.08482960546397877],[124,317,78,0.08984260326839241],[124,317,79,0.09484251796594648],[124,318,64,0.02008588265264341],[124,318,65,0.025227584934510522],[124,318,66,0.030366837881248193],[124,318,67,0.03550250240499034],[124,318,68,0.04063346986878977],[124,318,69,0.045758664490047035],[124,318,70,0.050877045782776825],[124,318,71,0.055987611038542495],[124,318,72,0.06108939784611497],[124,318,73,0.06618148664968057],[124,318,74,0.07126300334603522],[124,318,75,0.07633312192018246],[124,318,76,0.08139106711977387],[124,318,77,0.08643611716821253],[124,318,78,0.0914676065164553],[124,318,79,0.09648492863353522],[124,319,64,0.021249763536676153],[124,319,65,0.026423038577060187],[124,319,66,0.03159286235728104],[124,319,67,0.03675808253303875],[124,319,68,0.04191757861101725],[124,319,69,0.04707026440338566],[124,319,70,0.05221509052171744],[124,319,71,0.05735104691015647],[124,319,72,0.06247716541788381],[124,319,73,0.0675925224107145],[124,319,74,0.0726962414222575],[124,319,75,0.0777874958440585],[124,319,76,0.08286551165516343],[124,319,77,0.08792957019092376],[124,319,78,0.09297901095107847],[124,319,79,0.09801323444713586],[125,-64,64,-0.1628224891068022],[125,-64,65,-0.16678519454958807],[125,-64,66,-0.17062255480965627],[125,-64,67,-0.1743331219612786],[125,-64,68,-0.1779156180916236],[125,-64,69,-0.1813689412567887],[125,-64,70,-0.18469217150320538],[125,-64,71,-0.1878845769543125],[125,-64,72,-0.19094561996252024],[125,-64,73,-0.19387496332636467],[125,-64,74,-0.19667247657311704],[125,-64,75,-0.199338242306488],[125,-64,76,-0.20187256261971198],[125,-64,77,-0.20427596557387262],[125,-64,78,-0.20654921174152574],[125,-64,79,-0.20869330081559478],[125,-63,64,-0.15741076958657874],[125,-63,65,-0.16136186108995187],[125,-63,66,-0.16518813775488117],[125,-63,67,-0.16888814918710882],[125,-63,68,-0.17246061449584627],[125,-63,69,-0.17590442824230323],[125,-63,70,-0.17921866645359974],[125,-63,71,-0.18240259270196635],[125,-63,72,-0.18545566424924242],[125,-63,73,-0.18837753825657932],[125,-63,74,-0.19116807805961455],[125,-63,75,-0.19382735950874996],[125,-63,76,-0.19635567737482873],[125,-63,77,-0.19875355182006005],[125,-63,78,-0.2010217349342618],[125,-63,79,-0.20316121733638415],[125,-62,64,-0.15191362862260083],[125,-62,65,-0.15585232520926862],[125,-62,66,-0.15966676617178177],[125,-62,67,-0.16335549854093834],[125,-62,68,-0.16691723831316285],[125,-62,69,-0.17035087639106639],[125,-62,70,-0.17365548458940294],[125,-62,71,-0.17683032170632518],[125,-62,72,-0.17987483965995066],[125,-62,73,-0.1827886896901516],[125,-62,74,-0.18557172862582016],[125,-62,75,-0.18822402521726034],[125,-62,76,-0.19074586653398184],[125,-62,77,-0.19313776442776465],[125,-62,78,-0.19540046206104744],[125,-62,79,-0.19753494050061204],[125,-61,64,-0.14633530659646354],[125,-61,65,-0.15026083456202677],[125,-61,66,-0.15406269468081923],[125,-61,67,-0.1577394313036039],[125,-61,68,-0.1612897571808113],[125,-61,69,-0.16471255939466833],[125,-61,70,-0.16800690535673724],[125,-61,71,-0.17117204887076443],[125,-61,72,-0.174207436260854],[125,-61,73,-0.17711271256487993],[125,-61,74,-0.1798877277933817],[125,-61,75,-0.18253254325360346],[125,-61,76,-0.18504743793894796],[125,-61,77,-0.18743291498371184],[125,-61,78,-0.18968970818315856],[125,-61,79,-0.19181878857890122],[125,-60,64,-0.1406800929308354],[125,-60,65,-0.14459168635233943],[125,-60,66,-0.1483802279419032],[125,-60,67,-0.15204425926655651],[125,-60,68,-0.1555824896992396],[125,-60,69,-0.15899380234203897],[125,-60,70,-0.16227726001485498],[125,-60,71,-0.1654321113093844],[125,-60,72,-0.16845779670844874],[125,-60,73,-0.17135395477056425],[125,-60,74,-0.1741204283800163],[125,-60,75,-0.17675727106208527],[125,-60,76,-0.1792647533637015],[125,-60,77,-0.18164336929939384],[125,-60,78,-0.18389384286258914],[125,-60,79,-0.18601713460223435],[125,-59,64,-0.13495232124355638],[125,-59,65,-0.13884922247832632],[125,-59,66,-0.14262371578945787],[125,-59,67,-0.14627433985801408],[125,-59,68,-0.14979980054973863],[125,-59,69,-0.15319897682895722],[125,-59,70,-0.15647092673791385],[125,-59,71,-0.15961489344144275],[125,-59,72,-0.16263031133699135],[125,-59,73,-0.16551681222990133],[125,-59,74,-0.1682742315742074],[125,-59,75,-0.17090261477859736],[125,-59,76,-0.17340222357781432],[125,-59,77,-0.1757735424693656],[125,-59,78,-0.17801728521559634],[125,-59,79,-0.18013440141109416],[125,-58,64,-0.1291563643757293],[125,-58,65,-0.1330378245500059],[125,-58,66,-0.13679754824053902],[125,-58,67,-0.14043407114171358],[125,-58,68,-0.1439460954842522],[125,-58,69,-0.14733249593932984],[125,-58,70,-0.1505923255881395],[125,-58,71,-0.15372482195680037],[125,-58,72,-0.15672941311663324],[125,-58,73,-0.15960572384970573],[125,-58,74,-0.16235358187990556],[125,-58,75,-0.1649730241691878],[125,-58,76,-0.16746430327927886],[125,-58,77,-0.16982789379869734],[125,-58,78,-0.17206449883514985],[125,-58,79,-0.17417505657327592],[125,-57,64,-0.12329662929410223],[125,-57,65,-0.1271619087810032],[125,-57,66,-0.13090615037630182],[125,-57,67,-0.13452788668858207],[125,-57,68,-0.13802581618767717],[125,-57,69,-0.1413988090985563],[125,-57,70,-0.1446459133606759],[125,-57,71,-0.14776636065268844],[125,-57,72,-0.15075957248252558],[125,-57,73,-0.15362516634276735],[125,-57,74,-0.15636296193154797],[125,-57,75,-0.15897298743865018],[125,-57,76,-0.16145548589706715],[125,-57,77,-0.16381092159989352],[125,-57,78,-0.16603998658260233],[125,-57,79,-0.1681436071706851],[125,-56,64,-0.11737755186761012],[125,-56,65,-0.12122592075393512],[125,-56,66,-0.12495397709668421],[125,-56,67,-0.12856025032117147],[125,-56,68,-0.13204343501250682],[125,-56,69,-0.13540239679882515],[125,-56,70,-0.13863617829998853],[125,-56,71,-0.14174400514165741],[125,-56,72,-0.14472529203475104],[125,-56,73,-0.14757964892020004],[125,-56,74,-0.15030688717925522],[125,-56,75,-0.15290702590898908],[125,-56,76,-0.15538029826328037],[125,-56,77,-0.1577271578591397],[125,-56,78,-0.15994828524843263],[125,-56,79,-0.16204459445497632],[125,-55,64,-0.11140359151791945],[125,-55,65,-0.11523433005931416],[125,-55,66,-0.11894550774815049],[125,-55,67,-0.12253565073071182],[125,-55,68,-0.12600344958566478],[125,-55,69,-0.12934776519620095],[125,-55,70,-0.13256763468766286],[125,-55,71,-0.1356622774305507],[125,-55,72,-0.13863110110892585],[125,-55,73,-0.14147370785412805],[125,-55,74,-0.14418990044404445],[125,-55,75,-0.1467796885676006],[125,-55,76,-0.14924329515473223],[125,-55,77,-0.15158116277171652],[125,-55,78,-0.15379396008191115],[125,-55,79,-0.15588258837187519],[125,-54,64,-0.10537922574427039],[125,-54,65,-0.10919162480827371],[125,-54,66,-0.11288524062479155],[125,-54,67,-0.11645859596708175],[125,-54,68,-0.1199103772878315],[125,-54,69,-0.12323944057979119],[125,-54,70,-0.12644481730189883],[125,-54,71,-0.12952572037080023],[125,-54,72,-0.13248155021777963],[125,-54,73,-0.13531190091100864],[125,-54,74,-0.13801656634336523],[125,-54,75,-0.14059554648547856],[125,-54,76,-0.14304905370427545],[125,-54,77,-0.14537751914688735],[125,-54,78,-0.1475815991899827],[125,-54,79,-0.14966218195449188],[125,-53,64,-0.09930894452247607],[125,-53,65,-0.10310230601897141],[125,-53,66,-0.10677768734264048],[125,-53,67,-0.11033360780154611],[125,-53,68,-0.11376874960511707],[125,-53,69,-0.1170819637128564],[125,-53,70,-0.12027227574855537],[125,-53,71,-0.12333889197990955],[125,-53,72,-0.12628120536355847],[125,-53,73,-0.1290988016554544],[125,-53,74,-0.13179146558681165],[125,-53,75,-0.13435918710529549],[125,-53,76,-0.1368021676817175],[125,-53,77,-0.13912082668210968],[125,-53,78,-0.14131580780522968],[125,-53,79,-0.14338798558547405],[125,-52,64,-0.09319724457792133],[125,-52,65,-0.0969708818765046],[125,-52,66,-0.10062736708704278],[125,-52,67,-0.10416521596210893],[125,-52,68,-0.10758310635291579],[125,-52,69,-0.11087988404569482],[125,-52,70,-0.11405456866358687],[125,-52,71,-0.11710635963395044],[125,-52,72,-0.12003464222109783],[125,-52,73,-0.12283899362437833],[125,-52,74,-0.12551918914184923],[125,-52,75,-0.12807520839919428],[125,-52,76,-0.13050724164416594],[125,-52,77,-0.1328156961064122],[125,-52,78,-0.1350012024227476],[125,-52,79,-0.1370646211278389],[125,-51,64,-0.08704862353286213],[125,-51,65,-0.09080186186665473],[125,-51,66,-0.09443880073338962],[125,-51,67,-0.0979579522417815],[125,-51,68,-0.10135798977226051],[125,-51,69,-0.1046377538006189],[125,-51,70,-0.10779625778717938],[125,-51,71,-0.11083269413139274],[125,-51,72,-0.11374644019187297],[125,-51,73,-0.11653706437179112],[125,-51,74,-0.11920433226986482],[125,-51,75,-0.12174821289660898],[125,-51,76,-0.12416888495611911],[125,-51,77,-0.1264667431932487],[125,-51,78,-0.12864240480624378],[125,-51,79,-0.13069671592480214],[125,-50,64,-0.08086757392788624],[125,-50,65,-0.08459975078330528],[125,-50,66,-0.08821650484106469],[125,-50,67,-0.09171634447962718],[125,-50,68,-0.09509793849852377],[125,-50,69,-0.09836012192887367],[125,-50,70,-0.10150190190943897],[125,-50,71,-0.10452246362811601],[125,-50,72,-0.1074211763288786],[125,-50,73,-0.11019759938408591],[125,-50,74,-0.11285148843239767],[125,-50,75,-0.11538280158196335],[125,-50,76,-0.11779170567914976],[125,-50,77,-0.12007858264267735],[125,-50,78,-0.12224403586322086],[125,-50,79,-0.12428889666844467],[125,-49,64,-0.07465857711736079],[125,-49,65,-0.07836904260937261],[125,-49,66,-0.08196498552044085],[125,-49,67,-0.08544491041440638],[125,-49,68,-0.08880748140229378],[125,-49,69,-0.09205152793932281],[125,-49,70,-0.09517605068746238],[125,-49,71,-0.09818022744343313],[125,-49,72,-0.10106341913216854],[125,-49,73,-0.10382517586565188],[125,-49,74,-0.1064652430673747],[125,-49,75,-0.10898356766207229],[125,-49,76,-0.11138030433101131],[125,-49,77,-0.11365582183269851],[125,-49,78,-0.11581070938905724],[125,-49,79,-0.11784578313705629],[125,-48,64,-0.06842609703919766],[125,-48,65,-0.07211421427156706],[125,-48,66,-0.07568873217324878],[125,-48,67,-0.07914815141115339],[125,-48,68,-0.08249113130275909],[125,-48,69,-0.08571649559923533],[125,-48,70,-0.08882323833412065],[125,-48,71,-0.09181052973745407],[125,-48,72,-0.09467772221538029],[125,-48,73,-0.09742435639513902],[125,-48,74,-0.10005016723568183],[125,-48,75,-0.10255509020358045],[125,-48,76,-0.10493926751449634],[125,-48,77,-0.10720305444007594],[125,-48,78,-0.10934702568033172],[125,-48,79,-0.11137198180147789],[125,-47,64,-0.06217457385876335],[125,-47,65,-0.06583971926882615],[125,-47,66,-0.06939221110615013],[125,-47,67,-0.07283054606051464],[125,-47,68,-0.07615337855343052],[125,-47,69,-0.0793595265070075],[125,-47,70,-0.08244797717838415],[125,-47,71,-0.08541789305962277],[125,-47,72,-0.08826861784308648],[125,-47,73,-0.09099968245220968],[125,-47,74,-0.09361081113790504],[125,-47,75,-0.09610192764027348],[125,-47,76,-0.0984731614158828],[125,-47,77,-0.1007248539304827],[125,-47,78,-0.10285756501721433],[125,-47,79,-0.10487207930028364],[125,-46,64,-0.05590841748678865],[125,-46,65,-0.05954998117426169],[125,-46,66,-0.06307985901736823],[125,-46,67,-0.0664965436506999],[125,-46,68,-0.06979868450004856],[125,-46,69,-0.07298509353665583],[125,-46,70,-0.0760547510970363],[125,-46,71,-0.0790068117682734],[125,-46,72,-0.08184061033880596],[125,-46,73,-0.08455566781461998],[125,-46,74,-0.08715169750108298],[125,-46,75,-0.08962861115009357],[125,-46,76,-0.09198652517280559],[125,-46,77,-0.09422576691780116],[125,-46,78,-0.0963468810147654],[125,-46,79,-0.09835063578363534],[125,-45,64,-0.0496320009715876],[125,-45,65,-0.05324938701093562],[125,-45,66,-0.05675607635668256],[125,-45,67,-0.06015055751235521],[125,-45,68,-0.06343147481098899],[125,-45,69,-0.06659763415440978],[125,-45,70,-0.06964800881809519],[125,-45,71,-0.07258174532152017],[125,-45,72,-0.07539816936399979],[125,-45,73,-0.07809679182594931],[125,-45,74,-0.08067731483579188],[125,-45,75,-0.08313963790219281],[125,-45,76,-0.0854838641118788],[125,-45,77,-0.08771030639291155],[125,-45,78,-0.08981949384347376],[125,-45,79,-0.0918121781261384],[125,-44,64,-0.04334965376542688],[125,-44,65,-0.04694228050131144],[125,-44,66,-0.050425220558638406],[125,-44,67,-0.053796958236205894],[125,-44,68,-0.05705613268001497],[125,-44,69,-0.06020154360723928],[125,-44,70,-0.06323215709578289],[125,-44,71,-0.06614711143932872],[125,-44,72,-0.06894572306789626],[125,-44,73,-0.07162749253382339],[125,-44,74,-0.07419211056340291],[125,-44,75,-0.07663946417385836],[125,-44,76,-0.07896964285590902],[125,-44,77,-0.08118294482180244],[125,-44,78,-0.08327988331886371],[125,-44,79,-0.0852611930085394],[125,-43,64,-0.037065654864890774],[125,-43,65,-0.04063295519021337],[125,-43,66,-0.04409159914880201],[125,-43,67,-0.04744006676330437],[125,-43,68,-0.050676991901206225],[125,-43,69,-0.05380116798315482],[125,-43,70,-0.05681155375687674],[125,-43,71,-0.05970727913659646],[125,-43,72,-0.06248765110797094],[125,-43,73,-0.06515215969845778],[125,-43,74,-0.06770048401334805],[125,-43,75,-0.0701324983371423],[125,-43,76,-0.07244827830052891],[125,-43,77,-0.07464810711283587],[125,-43,78,-0.07673248186000836],[125,-43,79,-0.07870211986809006],[125,-42,64,-0.03078422582555762],[125,-42,65,-0.03432564744162325],[125,-42,66,-0.037759462723391035],[125,-42,67,-0.04108414734820698],[125,-42,68,-0.04429832981639448],[125,-42,69,-0.04740079714360601],[125,-42,70,-0.05039050061877448],[125,-42,71,-0.05326656162757659],[125,-42,72,-0.056028277541417815],[125,-42,73,-0.058675127671859895],[125,-42,74,-0.0612067792907216],[125,-42,75,-0.06362309371553088],[125,-42,76,-0.06592413246058626],[125,-42,77,-0.06811016345350185],[125,-42,78,-0.07018166731728392],[125,-42,79,-0.07213934371792097],[125,-41,64,-0.024509523650825038],[125,-41,65,-0.0280245293091409],[125,-41,66,-0.031432997802108176],[125,-41,67,-0.03473340039491346],[125,-41,68,-0.0379243601349365],[125,-41,69,-0.04100465752781224],[125,-41,70,-0.043973236279100214],[125,-41,71,-0.04682920910147437],[125,-41,72,-0.04957186358744181],[125,-41,73,-0.052200668147512785],[125,-41,74,-0.05471527801404996],[125,-41,75,-0.05711554131047969],[125,-41,76,-0.059401505186118975],[125,-41,77,-0.061573422016491186],[125,-41,78,-0.06363175566918833],[125,-41,79,-0.06557718783524669],[125,-40,64,-0.01824563355473463],[125,-40,65,-0.021733701279966988],[125,-40,66,-0.02511631955403404],[125,-40,67,-0.02839195516542059],[125,-40,68,-0.03155922562567548],[125,-40,69,-0.03461690482887436],[125,-40,70,-0.037563928776703004],[125,-40,71,-0.040399401369062726],[125,-40,72,-0.043122600260216415],[125,-40,73,-0.04573298278039295],[125,-40,74,-0.04823019192307576],[125,-40,75,-0.05061406239766453],[125,-40,76,-0.05288462674775685],[125,-40,77,-0.0550421215349306],[125,-40,78,-0.057086993588075785],[125,-40,79,-0.05901990631824927],[125,-39,64,-0.011996561599100786],[125,-39,65,-0.015457184892707754],[125,-39,66,-0.018813464396880364],[125,-39,67,-0.022063862361193953],[125,-39,68,-0.02520699068139498],[125,-39,69,-0.028241616541973102],[125,-39,70,-0.03116666812435409],[125,-39,71,-0.033981240380628],[125,-39,72,-0.03668460087282022],[125,-39,73,-0.03927619567763174],[125,-39,74,-0.04175565535686909],[125,-39,75,-0.04412280099325594],[125,-39,76,-0.046377650291871686],[125,-39,77,-0.04852042374709731],[125,-39,78,-0.05055155087511798],[125,-39,79,-0.0524716765119595],[125,-38,64,-0.005766227204798358],[125,-38,65,-0.009198915228858517],[125,-38,66,-0.012528382469462418],[125,-38,67,-0.015753086577413478],[125,-38,68,-0.018871633755625505],[125,-38,69,-0.021882784384511744],[125,-38,70,-0.024785458713002972],[125,-38,71,-0.027578742615104623],[125,-38,72,-0.030261893412008023],[125,-38,73,-0.03283434575967448],[125,-38,74,-0.03529571760211869],[125,-38,75,-0.03764581619007834],[125,-38,76,-0.03988464416532078],[125,-38,77,-0.042012405710461276],[125,-38,78,-0.044029512764346856],[125,-38,79,-0.04593659130297956],[125,-37,64,4.415444629611853E-4],[125,-37,65,-0.0029627332777968363],[125,-37,66,-0.006264929977214839],[125,-37,67,-0.009463498629822653],[125,-37,68,-0.01255703967162436],[125,-37,69,-0.015544306588028522],[125,-37,70,-0.01842421158740848],[125,-37,71,-0.0211958313402123],[125,-37,72,-0.0238584127836331],[125,-37,73,-0.026411378991758272],[125,-37,74,-0.028854335111424212],[125,-37,75,-0.03118707436346624],[125,-37,76,-0.033409584109609924],[125,-37,77,-0.03552205198488245],[125,-37,78,-0.037524872095596074],[125,-37,79,-0.039418651282877915],[125,-36,64,0.006623030235021643],[125,-36,65,0.0032476218243761013],[125,-36,66,-2.6861411098200172E-5],[125,-36,67,-0.003198867754521384],[125,-36,68,-0.006266991803880129],[125,-36,69,-0.009229980062223309],[125,-36,70,-0.012086736593501013],[125,-36,71,-0.014836328743955685],[125,-36,72,-0.0174779929290807],[125,-36,73,-0.020011140486064116],[125,-36,74,-0.022435363591946866],[125,-36,75,-0.02475044124717951],[125,-36,76,-0.0269563453248286],[125,-36,77,-0.029053246685310397],[125,-36,78,-0.03104152135670113],[125,-36,79,-0.032921756780601386],[125,-35,64,0.012774616804629213],[125,-35,65,0.009428520682425057],[125,-35,66,0.006182178360390145],[125,-35,67,0.0030371463195758563],[125,-35,68,-5.164131850698972E-6],[125,-35,69,-0.002943492430814043],[125,-35,70,-0.00577673439718529],[125,-35,71,-0.008503947937193779],[125,-35,72,-0.011124358812414359],[125,-35,73,-0.013637366474248513],[125,-35,74,-0.01604254996411969],[125,-35,75,-0.018339673879079088],[125,-35,76,-0.02052869440306626],[125,-35,77,-0.02260976540370141],[125,-35,78,-0.024583244594662323],[125,-35,79,-0.026449699763621548],[125,-34,64,0.018892808719522258],[125,-34,65,0.015576451655797796],[125,-34,66,0.012358662125891762],[125,-34,67,0.009241001425417394],[125,-34,68,0.006224886833851917],[125,-34,69,0.0033115860605661407],[125,-34,70,5.022116252073605E-4],[125,-34,71,-0.0022022848274872997],[125,-34,72,-0.00480111827845453],[125,-34,73,-0.007293676150571193],[125,-34,74,-0.009679524190637556],[125,-34,75,-0.011958412416781639],[125,-34,76,-0.014130281131519928],[125,-34,77,-0.016195267000358893],[125,-34,78,-0.018153709195984913],[125,-34,79,-0.020006155608022658],[125,-33,64,0.024974236500040936],[125,-33,65,0.021688028998940068],[125,-33,66,0.01849918849282506],[125,-33,67,0.015409281139892261],[125,-33,68,0.012419730253105943],[125,-33,69,0.009531810764712212],[125,-33,70,0.0067466436250926964],[125,-33,71,0.004065190136048336],[125,-33,72,0.0014882462184971912],[125,-33,73,-9.835633853340076E-4],[125,-33,74,-0.0033497909754427457],[125,-33,75,-0.005610171823009047],[125,-33,76,-0.007764630165017161],[125,-33,77,-0.009813285264422156],[125,-33,78,-0.011756457535913478],[125,-33,79,-0.013594674737248957],[125,-32,64,0.031015664882930616],[125,-32,65,0.02776000112778354],[125,-32,66,0.02460049017565835],[125,-32,67,0.02153870309298722],[125,-32,68,0.01857606928543054],[125,-32,69,0.015713870981097222],[125,-32,70,0.012953237648104299],[125,-32,71,0.010295140346558873],[125,-32,72,0.007740386014950862],[125,-32,73,0.0052896116910309265],[125,-32,74,0.00294327866696098],[125,-32,75,7.016665790327004E-4],[125,-32,76,-0.0014351325682824267],[125,-32,77,-0.003467220443834851],[125,-32,78,-0.005394898496898559],[125,-32,79,-0.007218674129850999],[125,-31,64,0.03701400119099152],[125,-31,65,0.033789259012564354],[125,-31,66,0.030659442410970073],[125,-31,67,0.02762612740417858],[125,-31,68,0.02469074954679029],[125,-31,69,0.021854598432186956],[125,-31,70,0.019118812129014673],[125,-31,71,0.016484371552087707],[125,-31,72,0.013952094767694101],[125,-31,73,0.011522631233382707],[125,-31,74,0.009196455972019124],[125,-31,75,0.006973863680401204],[125,-31,76,0.0048549627722035416],[125,-31,77,0.0028396693553639496],[125,-31,78,9.277011438642013E-4],[125,-31,79,-8.814286960716622E-4],[125,-30,64,0.04296630382873412],[125,-30,65,0.0397728446971235],[125,-30,66,0.03667307149946042],[125,-30,67,0.033668565246212645],[125,-30,68,0.03076076769421876],[125,-30,69,0.027950975867978234],[125,-30,70,0.025240336515273132],[125,-30,71,0.022629840497199294],[125,-30,72,0.020120317112599317],[125,-30,73,0.0177124283569694],[125,-30,74,0.015406663115631103],[125,-30,75,0.013203331291457343],[125,-30,76,0.011102557866922824],[125,-30,77,0.009104276900590236],[125,-30,78,0.007208225457987383],[125,-30,79,0.0054139374768961135],[125,-29,64,0.048869790903721344],[125,-29,65,0.04570795994437604],[125,-29,66,0.04263856347458861],[125,-29,67,0.03966318753595943],[125,-29,68,0.036783280137935304],[125,-29,69,0.034000145798439574],[125,-29,70,0.03131494001882951],[125,-29,71,0.028728663693259215],[125,-29,72,0.02624215745243952],[125,-29,73,0.02385609594186766],[125,-29,74,0.021570982034315178],[125,-29,75,0.019387140976867445],[125,-29,76,0.01730471447228188],[125,-29,77,0.015323654694776478],[125,-29,78,0.013443718240206515],[125,-29,79,0.01166446001064625],[125,-28,64,0.05472184897376564],[125,-28,65,0.05159197500811763],[125,-28,66,0.04855327289800837],[125,-28,67,0.04560733375250581],[125,-28,68,0.04275561188113186],[125,-28,69,0.039999419354024845],[125,-28,70,0.037339920496421763],[125,-28,71,0.03477812631754684],[125,-28,72,0.03231488887388889],[125,-28,73,0.02995089556694286],[125,-28,74,0.027686663375210196],[125,-28,75,0.025522533020741478],[125,-28,76,0.023458663069994445],[125,-28,77,0.021495023969120286],[125,-28,78,0.019631392013630067],[125,-28,79,0.017867343252464196],[125,-27,64,0.06052004192012339],[125,-27,65,0.05742243753130438],[125,-27,66,0.054414731781943115],[125,-27,67,0.051498520882632626],[125,-27,68,0.04867526548756396],[125,-27,69,0.04594628527439926],[125,-27,70,0.04331275345846519],[125,-27,71,0.04077569124134395],[125,-27,72,0.038335962193850937],[125,-27,73,0.035994266573473044],[125,-27,74,0.03375113557605969],[125,-27,75,0.03160692552205291],[125,-27,76,0.02956181197702934],[125,-27,77,0.027615783806664296],[125,-27,78,0.02576863716607325],[125,-27,79,0.02401996942355189],[125,-26,64,0.06626211994638342],[125,-26,65,0.06319708157051152],[125,-26,66,0.06022065863819803],[125,-26,67,0.05733445249337188],[125,-26,68,0.054539930176646934],[125,-26,69,0.05183841902507991],[125,-26,70,0.04923110120624241],[125,-26,71,0.04671900818668928],[125,-26,72,0.04430301513480894],[125,-26,73,0.04198383525812743],[125,-26,74,0.03976201407486657],[125,-26,75,0.037637923620032376],[125,-26,76,0.03561175658581339],[125,-26,77,0.03368352039639755],[125,-26,78,0.031853031217161654],[125,-26,79,0.030119907898254916],[125,-25,64,0.07194602870320677],[125,-25,65,0.06891383674671991],[125,-25,66,0.06596896765396276],[125,-25,67,0.06311302793179685],[125,-25,68,0.060347491046214286],[125,-25,69,0.05767369204213957],[125,-25,70,0.05509282209754629],[125,-25,71,0.05260592301196143],[125,-25,72,0.050213881629351254],[125,-25,73,0.04791742419545686],[125,-25,74,0.045717110649378445],[125,-25,75,0.043613328849687716],[125,-25,76,0.041606288734846064],[125,-25,77,0.03969601641803633],[125,-25,78,0.03788234821636438],[125,-25,79,0.03616492461445253],[125,-24,64,0.07756991853906159],[125,-24,65,0.07457083752258209],[125,-24,66,0.07165777799455575],[125,-24,67,0.06883235165219881],[125,-24,68,0.06609603842308154],[125,-24,69,0.06345018110512868],[125,-24,70,0.060895979940929545],[125,-24,71,0.0584344871264344],[125,-24,72,0.0560666012540284],[125,-24,73,0.05379306169004949],[125,-24,74,0.05161444288655537],[125,-24,75,0.049531148627611765],[125,-24,76,0.04754340620988373],[125,-24,77,0.04565126055763835],[125,-24,78,0.04385456827211265],[125,-24,79,0.042152991615269086],[125,-23,64,0.08313215387665696],[125,-23,65,0.08016643260586354],[125,-23,66,0.07728542323280585],[125,-23,67,0.07449074267034284],[125,-23,68,0.07178387734111968],[125,-23,69,0.06916617783790768],[125,-23,70,0.06663885351825272],[125,-23,71,0.06420296703350625],[125,-23,72,0.061859428792230386],[125,-23,73,0.059608991358043206],[125,-23,74,0.05745224378171143],[125,-23,75,0.055389605867758984],[125,-23,76,0.05342132237537678],[125,-23,77,0.051547457153740206],[125,-23,78,0.04976788721168812],[125,-23,79,0.04808229672178688],[125,-22,64,0.08863132271522522],[125,-22,65,0.08569919447921537],[125,-22,66,0.08285046090522552],[125,-22,67,0.08008674414495953],[125,-22,68,0.07740953714698462],[125,-22,69,0.0748201983375466],[125,-22,70,0.07231994623568794],[125,-22,71,0.06990985400275018],[125,-22,72,0.06759084392624215],[125,-22,73,0.06536368183814911],[125,-22,74,0.0632289714674843],[125,-22,75,0.0611871487273542],[125,-22,76,0.05923847593632148],[125,-22,77,0.057383035974171936],[125,-22,78,0.05562072637204207],[125,-22,79,0.0539512533369253],[125,-21,64,0.094066246258802],[125,-21,65,0.0911679290564249],[125,-21,66,0.08835168219512635],[125,-21,67,0.0856191330866215],[125,-21,68,0.08297178123366045],[125,-21,69,0.08041099293144183],[125,-21,70,0.07793799590332928],[125,-21,71,0.0755538738709447],[125,-21,72,0.07325956105863007],[125,-21,73,0.07105583663234205],[125,-21,74,0.06894331907279094],[125,-21,75,0.06692246048308637],[125,-21,76,0.06499354083067987],[125,-21,77,0.06315666212370952],[125,-21,78,0.061411742521699564],[125,-21,79,0.059758510380639396],[125,-20,64,0.09943598867019776],[125,-20,65,0.09657168546483696],[125,-20,66,0.09378812174236517],[125,-20,67,0.09108693019369452],[125,-20,68,0.08846961690149846],[125,-20,69,0.08593755606233888],[125,-20,70,0.08349198464309471],[125,-20,71,0.08113399697176626],[125,-20,72,0.07886453926264247],[125,-20,73,0.07668440407590116],[125,-20,74,0.07459422471144894],[125,-20,75,0.07259446953726678],[125,-20,76,0.07068543625204882],[125,-20,77,0.0688672460822406],[125,-20,78,0.06713983791342992],[125,-20,79,0.06550296235611497],[125,-19,64,0.10473986695083026],[125,-19,65,0.10190976595411716],[125,-19,66,0.09915906757989323],[125,-19,67,0.09648940981553478],[125,-19,68,0.09390230534693023],[125,-19,69,0.0913991363014307],[125,-19,70,0.0889811489250959],[125,-19,71,0.08664944819431741],[125,-19,72,0.08440499236179932],[125,-19,73,0.08224858743697094],[125,-19,74,0.08018088160063708],[125,-19,75,0.07820235955412935],[125,-19,76,0.07631333680275232],[125,-19,77,0.07451395387362092],[125,-19,78,0.07280417046785492],[125,-19,79,0.07118375954714107],[125,-18,64,0.10997746094654148],[125,-18,65,0.10718173593148006],[125,-18,66,0.10446407119723533],[125,-18,67,0.10182611004305853],[125,-18,68,0.09926937177897721],[125,-18,69,0.09679524648966364],[125,-18,70,0.09440498973260147],[125,-18,71,0.09209971717062215],[125,-18,72,0.08988039913880153],[125,-18,73,0.08774785514578165],[125,-18,74,0.08570274830933133],[125,-18,75,0.08374557972640506],[125,-18,76,0.0818766827774915],[125,-18,77,0.08009621736535633],[125,-18,78,0.07840416408813355],[125,-18,79,0.07680031834678869],[125,-17,64,0.11514862347911348],[125,-17,65,0.11238743412309682],[125,-17,66,0.10970295773060679],[125,-17,67,0.1070968429263951],[125,-17,68,0.1045706156632662],[125,-17,69,0.10212567400695471],[125,-17,70,0.09976328285530012],[125,-17,71,0.09748456859179022],[125,-17,72,0.09529051367346086],[125,-17,73,0.09318195115322081],[125,-17,74,0.09115955913641183],[125,-17,75,0.08922385517186626],[125,-17,76,0.08737519057725074],[125,-17,77,0.08561374469880345],[125,-17,78,0.08393951910541786],[125,-17,79,0.08235233171709533],[125,-16,64,0.12025349060365254],[125,-16,65,0.11752698286185081],[125,-16,66,0.11487583627984099],[125,-16,67,0.11230170481979118],[125,-16,68,0.109806121093725],[125,-16,69,0.1073904911694934],[125,-16,70,0.10505608931103816],[125,-16,71,0.10280405265302417],[125,-16,72,0.10063537580982662],[125,-16,73,0.09855090541893885],[125,-16,74,0.09655133461861831],[125,-16,75,0.09463719746002197],[125,-16,76,0.09280886325363269],[125,-16,77,0.09106653085007077],[125,-16,78,0.0894102228552558],[125,-16,79,0.0878397797799314],[125,-15,64,0.12529249199193182],[125,-15,65,0.12260079850153227],[125,-15,66,0.11998311035222065],[125,-15,67,0.11744108685386279],[125,-15,68,0.1149762672920478],[125,-15,69,0.11259006575522312],[125,-15,70,0.11028376589612354],[125,-15,71,0.10805851562756752],[125,-15,72,0.1059153217526041],[125,-15,73,0.10385504452908201],[125,-15,74,0.10187839216845185],[125,-15,75,0.09998591526905998],[125,-15,76,0.09817800118372755],[125,-15,77,0.09645486832171657],[125,-15,78,0.09481656038504249],[125,-15,79,0.09326294053914863],[125,-14,64,0.13026636144146864],[125,-14,65,0.12760960195724935],[125,-14,66,0.12502548843298222],[125,-14,67,0.12251568553496661],[125,-14,68,0.12008173923470544],[125,-14,69,0.11772507165727153],[125,-14,70,0.11544697586396868],[125,-14,71,0.11324861056935831],[125,-14,72,0.111130994792634],[125,-14,73,0.10909500244341741],[125,-14,74,0.10714135684178738],[125,-14,75,0.10527062517279617],[125,-14,76,0.10348321287527185],[125,-14,77,0.1017793579650047],[125,-14,78,0.1001591252922801],[125,-14,79,0.09862240073377015],[125,-13,64,0.13517614751043805],[125,-13,65,0.13255442937215278],[125,-13,66,0.13000399468259982],[125,-13,67,0.127526513471789],[125,-13,68,0.12512353840759838],[125,-13,69,0.12279649966543149],[125,-13,70,0.12054669973217103],[125,-13,71,0.1183753081444926],[125,-13,72,0.1162833561615303],[125,-13,73,0.11427173137195634],[125,-13,74,0.11234117223529916],[125,-13,75,0.11049226255774125],[125,-13,76,0.1087254259022058],[125,-13,77,0.10704091993282461],[125,-13,78,0.1054388306937506],[125,-13,79,0.10391906682232965],[125,-12,64,0.14002322427856784],[125,-12,65,0.13743664291062585],[125,-12,66,0.134919979760995],[125,-12,67,0.13247491022930835],[125,-12,68,0.1301029936885082],[125,-12,69,0.12780566837584784],[125,-12,70,0.12558424621818798],[125,-12,71,0.12343990759165335],[125,-12,72,0.12137369601563919],[125,-12,73,0.11938651278123025],[125,-12,74,0.11747911151385837],[125,-12,75,0.11565209267043763],[125,-12,76,0.1139058979707872],[125,-12,77,0.11224080476343512],[125,-12,78,0.1106569203257638],[125,-12,79,0.10915417609851585],[125,-11,64,0.14480930223373856],[125,-11,65,0.14225794167765726],[125,-11,66,0.13977513177839052],[125,-11,67,0.1373625533098427],[125,-11,68,0.13502177235705926],[125,-11,69,0.1327542352286183],[125,-11,70,0.1305612633033162],[125,-11,71,0.1284440478112121],[125,-11,72,0.12640364454902275],[125,-11,73,0.1244409685299267],[125,-11,74,0.12255678856760766],[125,-11,75,0.12075172179477378],[125,-11,76,0.11902622811596353],[125,-11,77,0.1173806045947321],[125,-11,78,0.11581497977517774],[125,-11,79,0.11432930793782825],[125,-10,64,0.14953643928451243],[125,-10,65,0.14702037276462443],[125,-10,66,0.14457148737303704],[125,-10,67,0.14219146926141457],[125,-10,68,0.139881891232422],[125,-10,69,0.13764420767354557],[125,-10,70,0.13547974942520769],[125,-10,71,0.13338971858323967],[125,-10,72,0.13137518323570363],[125,-10,73,0.1294370721341227],[125,-10,74,0.1275761692989501],[125,-10,75,0.1257931085595132],[125,-10,76,0.12408836802824286],[125,-10,77,0.12246226450928266],[125,-10,78,0.12091494784143697],[125,-10,79,0.11944639517547961],[125,-9,64,0.15420705189843653],[125,-9,65,0.15172634242133032],[125,-9,66,0.14931144291565512],[125,-9,67,0.14696404491327364],[125,-9,68,0.14468572793859846],[125,-9,69,0.1424779544638759],[125,-9,70,0.1403420647987631],[125,-9,71,0.13827927191426326],[125,-9,72,0.13629065620100855],[125,-9,73,0.13437716016194967],[125,-9,74,0.1325395830392876],[125,-9,75,0.13077857537587334],[125,-9,76,0.12909463351089767],[125,-9,77,0.12748809400995653],[125,-9,78,0.12595912802945786],[125,-9,79,0.12450773561538331],[125,-8,64,0.15882392636631504],[125,-8,65,0.1563786273544917],[125,-8,66,0.15399776584079017],[125,-8,67,0.15168303873877598],[125,-8,68,0.14943603229749136],[125,-8,69,0.14725821707823006],[125,-8,70,0.14515094286560493],[125,-8,71,0.14311543351297495],[125,-8,72,0.1411527817222158],[125,-8,73,0.13926394375790074],[125,-8,74,0.1374497340957186],[125,-8,75,0.13571082000536383],[125,-8,76,0.13404771606771126],[125,-8,77,0.13246077862637018],[125,-8,78,0.13095020017357462],[125,-8,79,0.12951600367043403],[125,-7,64,0.16339023019222043],[125,-7,65,0.16098038615244425],[125,-7,66,0.15863360610484645],[125,-7,67,0.1563515923453861],[125,-7,68,0.15413593784951862],[125,-7,69,0.15198812127048422],[125,-7,70,0.14990950187188956],[125,-7,71,0.14790131439464804],[125,-7,72,0.14596466385826523],[125,-7,73,0.14410052029652987],[125,-7,74,0.14230971342744636],[125,-7,75,0.14059292725763528],[125,-7,76,0.13895069462101883],[125,-7,77,0.13738339165188673],[125,-7,78,0.13589123219229637],[125,-7,79,0.13447426213383173],[125,-6,64,0.16790952360934774],[125,-6,65,0.1655351708361732],[125,-6,66,0.1632225077709072],[125,-6,67,0.16097324209190722],[125,-6,68,0.15878897350188226],[125,-6,69,0.1566711887477128],[125,-6,70,0.1546212565745676],[125,-6,71,0.15264042261437427],[125,-6,72,0.15072980420863757],[125,-6,73,0.14889038516566122],[125,-6,74,0.14712301045201293],[125,-6,75,0.14542838081845344],[125,-6,76,0.14380704736015515],[125,-6,77,0.14225940601129494],[125,-6,78,0.14078569197398572],[125,-6,79,0.1393859740815645],[125,-5,64,0.17238577122183796],[125,-5,65,0.17004693853679165],[125,-5,66,0.16776842072046683],[125,-5,67,0.16555193083306885],[125,-5,68,0.16339907530461828],[125,-5,69,0.16131134897632016],[125,-5,70,0.15929013007622528],[125,-5,71,0.15733667512924998],[125,-5,72,0.15545211380153912],[125,-5,73,0.15363744367923504],[125,-5,74,0.15189352498148778],[125,-5,75,0.15022107520793104],[125,-5,76,0.14862066372044458],[125,-5,77,0.1470927062592925],[125,-5,78,0.14563745939359962],[125,-5,79,0.14425501490618375],[125,-4,64,0.1768233537723216],[125,-4,65,0.17452006329922176],[125,-4,66,0.17227571249182516],[125,-4,67,0.17009201979121658],[125,-4,68,0.16797059835417638],[125,-4,69,0.16591295111610527],[125,-4,70,0.1639204657882446],[125,-4,71,0.16199440978925328],[125,-4,72,0.16013592511112829],[125,-4,73,0.15834602311953072],[125,-4,74,0.1566255792883533],[125,-4,75,0.15497532786875223],[125,-4,76,0.1533958564924669],[125,-4,77,0.15188760070951335],[125,-4,78,0.15045083846021834],[125,-4,79,0.14908568448160553],[125,-3,64,0.18122708003532595],[125,-3,65,0.1789593480122168],[125,-3,66,0.1767491802452843],[125,-3,67,0.17459830055525205],[125,-3,68,0.17250832882467115],[125,-3,69,0.1704807760824082],[125,-3,70,0.16851703952243346],[125,-3,71,0.16661839745696028],[125,-3,72,0.16478600420393363],[125,-3,73,0.16302088490891775],[125,-3,74,0.16132393030123104],[125,-3,75,0.15969589138454132],[125,-3,76,0.15813737406174955],[125,-3,77,0.15664883369424898],[125,-3,78,0.15523056959552128],[125,-3,79,0.1538827194590885],[125,-2,64,0.1856021988366331],[125,-2,65,0.18337003646481742],[125,-2,66,0.1811940628552443],[125,-2,67,0.17907600720691152],[125,-2,68,0.17701749612689854],[125,-2,69,0.17502004873642707],[125,-2,70,0.173085071711216],[125,-2,71,0.1712138542561943],[125,-2,72,0.1694075630145575],[125,-2,73,0.16766723691122587],[125,-2,74,0.16599378193054937],[125,-2,75,0.16438796582847193],[125,-2,76,0.16285041277898582],[125,-2,77,0.16138159795495888],[125,-2,78,0.1599818420433019],[125,-2,79,0.1586513056944877],[125,-1,64,0.18995441119837508],[125,-1,65,0.18775782552902387],[125,-1,66,0.18561605312897445],[125,-1,67,0.18353082857416414],[125,-1,68,0.18150378519489885],[125,-1,69,0.17953645020348608],[125,-1,70,0.17763023975616277],[125,-1,71,0.17578645394938164],[125,-1,72,0.17400627175044026],[125,-1,73,0.17229074586251092],[125,-1,74,0.1706407975239207],[125,-1,75,0.16905721124188655],[125,-1,76,0.16754062946054304],[125,-1,77,0.16609154716334207],[125,-1,78,0.16471030640979234],[125,-1,79,0.16339709080655218],[125,0,64,0.1942898826099777],[125,0,65,0.19212887746879637],[125,0,66,0.19002131015217372],[125,0,67,0.18796892061184378],[125,0,68,0.1859733489001738],[125,0,69,0.18403613031936794],[125,0,70,0.18215869050497224],[125,0,71,0.18034234044373243],[125,0,72,0.17858827142579892],[125,0,73,0.17689754993133033],[125,0,74,0.17527111245134785],[125,0,75,0.17370976024304408],[125,0,76,0.17221415401938533],[125,0,77,0.17078480857308476],[125,0,78,0.16942208733491637],[125,0,79,0.16812619686638186],[125,1,64,0.19861525542506275],[125,1,65,0.196489832375498],[125,1,66,0.19441647176143673],[125,1,67,0.1923969189096294],[125,1,68,0.19043282059368039],[125,1,69,0.18852572020482816],[125,1,70,0.18667705285702263],[125,1,71,0.18488814042636015],[125,1,72,0.18316018652486143],[125,1,73,0.18149427140864882],[125,1,74,0.17989134682037744],[125,1,75,0.17835223076611628],[125,1,76,0.1768776022265266],[125,1,77,0.17546799580240868],[125,1,78,0.17412379629459107],[125,1,79,0.1728452332181708],[125,2,64,0.21158135420302415],[125,2,65,0.20956267918697224],[125,2,66,0.207591940539392],[125,2,67,0.20567089971065466],[125,2,68,0.20380122363658082],[125,2,69,0.20198447997394042],[125,2,70,0.20022213227025676],[125,2,71,0.19851553506796427],[125,2,72,0.19686592894291133],[125,2,73,0.1952744354772612],[125,2,74,0.19374205216664797],[125,2,75,0.19226964726178264],[125,2,76,0.19085795454435395],[125,2,77,0.18950756803730118],[125,2,78,0.18821893664942613],[125,2,79,0.1869923587543596],[125,3,64,0.21157888326443086],[125,3,65,0.20956022298675359],[125,3,66,0.20758949951653016],[125,3,67,0.20566847429364044],[125,3,68,0.20379881424319823],[125,3,69,0.20198208701106335],[125,3,70,0.2002197561336555],[125,3,71,0.1985131761421246],[125,3,72,0.19686358760086609],[125,3,73,0.1952721120804335],[125,3,74,0.19373974706470776],[125,3,75,0.1922673607925155],[125,3,76,0.1908556870335434],[125,3,77,0.18950531979862517],[125,3,78,0.18821670798436596],[125,3,79,0.18699014995212515],[125,4,64,0.2115703650556061],[125,4,65,0.2095517555863765],[125,4,66,0.20758108443792844],[125,4,67,0.20566011301397524],[125,4,68,0.2037905082027215],[125,4,69,0.20197383761241372],[125,4,70,0.2002115647411945],[125,4,71,0.19850504408131286],[125,4,72,0.19685551615768104],[125,4,73,0.19526410250083015],[125,4,74,0.19373180055412298],[125,4,75,0.19225947851541692],[125,4,76,0.19084787011302384],[125,4,77,0.18949756931604378],[125,4,78,0.18820902497903802],[125,4,79,0.18698253542105858],[125,5,64,0.21587397248958995],[125,5,65,0.21389105200959246],[125,5,66,0.21195469779934273],[125,5,67,0.21006667655967814],[125,5,68,0.2082286618204665],[125,5,69,0.2064422291978112],[125,5,70,0.20470885158556384],[125,5,71,0.20302989428119378],[125,5,72,0.2014066100460089],[125,5,73,0.1998401340997732],[125,5,74,0.19833147904958803],[125,5,75,0.19688152975322348],[125,5,76,0.19549103811674884],[125,5,77,0.1941606178265396],[125,5,78,0.19289073901562548],[125,5,79,0.19168172286439822],[125,6,64,0.22016385498003155],[125,6,65,0.21821669800524024],[125,6,66,0.21631473776420695],[125,6,67,0.21445974619812436],[125,6,68,0.2126534034204387],[125,6,69,0.21089729299576787],[125,6,70,0.20919289715312972],[125,6,71,0.20754159193353394],[125,6,72,0.205944642271925],[125,6,73,0.20440319701352883],[125,6,74,0.20291828386446598],[125,6,75,0.20149080427681687],[125,6,76,0.200121528267994],[125,6,77,0.1988110891744893],[125,6,78,0.19755997833997108],[125,6,79,0.19636853973774027],[125,7,64,0.2244361934114949],[125,7,65,0.22252489140294862],[125,7,66,0.22065741984660703],[125,7,67,0.21883555585222714],[125,7,68,0.2170609860433007],[125,7,69,0.21533530185775496],[125,7,70,0.21365999478296993],[125,7,71,0.21203645152516515],[125,7,72,0.2104659491131443],[125,7,73,0.20894964993644694],[125,7,74,0.20748859671777464],[125,7,75,0.20608370741987558],[125,7,76,0.20473577008673705],[125,7,77,0.203445437619166],[125,7,78,0.20221322248471862],[125,7,79,0.2010394913619995],[125,8,64,0.22868717296839447],[125,8,65,0.22681183276085315],[125,8,66,0.22497896073315793],[125,8,67,0.2231903390771539],[125,8,68,0.22144766083770762],[125,8,69,0.21975252523527156],[125,8,70,0.21810643292277865],[125,8,71,0.21651078117690958],[125,8,72,0.21496685902372892],[125,8,73,0.21347584229873628],[125,8,74,0.21203878864119885],[125,8,75,0.21065663242295107],[125,8,76,0.20933017961151168],[125,8,77,0.2080601025675941],[125,8,78,0.2068469347769767],[125,8,79,0.20569106551674954],[125,9,64,0.23291298641449282],[125,9,65,0.23107372868982967],[125,9,66,0.22927558165072215],[125,9,67,0.22752033247027714],[125,9,68,0.22580968051123718],[125,9,69,0.2241452326705078],[125,9,70,0.22252849865802093],[125,9,71,0.22096088620998644],[125,9,72,0.21944369623652182],[125,9,73,0.2179781179037048],[125,9,74,0.21656522364992492],[125,9,75,0.2152059641367059],[125,9,76,0.21390116313386198],[125,9,77,0.21265151233905433],[125,9,78,0.21145756613172106],[125,9,79,0.21031973626139366],[125,10,64,0.23710983731600854],[125,10,65,0.23530679512086133],[125,10,66,0.23354351167680076],[125,10,67,0.23182177902335221],[125,10,68,0.2301433027231259],[125,10,69,0.22850969722840653],[125,10,70,0.22692248118209668],[125,10,71,0.22538307265306246],[125,10,72,0.22389278430586834],[125,10,73,0.22245281850495324],[125,10,74,0.22106426235311627],[125,10,75,0.21972808266448862],[125,10,76,0.2184451208718532],[125,10,77,0.21721608786837854],[125,10,78,0.21604155878374076],[125,10,79,0.21492196769464433],[125,11,64,0.24127394320811918],[125,11,65,0.2395072605153189],[125,11,66,0.23777899099237199],[125,11,67,0.23609093141670312],[125,11,68,0.2344447934185836],[125,11,69,0.2328421988698992],[125,11,70,0.2312846752072908],[125,11,71,0.22977365068971256],[125,11,72,0.22831044959040026],[125,11,73,0.2268962873232947],[125,11,74,0.22553226550379524],[125,11,75,0.22421936694401534],[125,11,76,0.22295845058240427],[125,11,77,0.22175024634779927],[125,11,78,0.22059534995788577],[125,11,79,0.2194942176520711],[125,12,64,0.245401538704968],[125,12,65,0.2436713690182643],[125,12,66,0.24197827407729572],[125,12,67,0.24032405525552603],[125,12,68,0.23871043010480342],[125,12,69,0.2371390277664288],[125,12,70,0.23561138431661977],[125,12,71,0.23412893804641188],[125,12,72,0.2326930246759935],[125,12,73,0.23130487250351373],[125,12,74,0.22996559748824663],[125,12,75,0.22867619826827446],[125,12,76,0.22743755111256014],[125,12,77,0.22625040480747316],[125,12,78,0.22511537547774063],[125,12,79,0.22403294134183904],[125,13,64,0.24948887855328217],[125,13,65,0.24779538355488495],[125,13,66,0.24613763284838452],[125,13,67,0.24451743224842043],[125,13,68,0.24293650506877412],[125,13,69,0.24139648755586918],[125,13,70,0.2398989242566898],[125,13,71,0.238445263321166],[125,13,72,0.23703685173901445],[125,13,73,0.23567493051108035],[125,13,74,0.23436062975506],[125,13,75,0.233094963745768],[125,13,76,0.2318788258898199],[125,13,77,0.2307129836347921],[125,13,78,0.22959807331283577],[125,13,79,0.22853459491875194],[125,14,64,0.2535322406293728],[125,14,65,0.25187558886983125],[125,14,66,0.2502533597399168],[125,14,67,0.2486673633279161],[125,14,68,0.24711932853666396],[125,14,69,0.2456108985396082],[125,14,70,0.2441436261713279],[125,14,71,0.24271896925254316],[125,14,72,0.24133828584961592],[125,14,73,0.24000282946857665],[125,14,74,0.23871374418356595],[125,14,75,0.23747205969984864],[125,14,76,0.23627868635127303],[125,14,77,0.23513441003223978],[125,14,78,0.23403988706415113],[125,14,79,0.23299563899635578],[125,15,64,0.2575279288797115],[125,15,65,0.2559082945096484],[125,15,66,0.2543217707267817],[125,15,67,0.2527701717131908],[125,15,68,0.25125523177496795],[125,15,69,0.24977860082099052],[125,15,70,0.24834183977618368],[125,15,71,0.24694641592930988],[125,15,72,0.24559369821528204],[125,15,73,0.2442849524320393],[125,15,74,0.24302133639187207],[125,15,75,0.2418038950073541],[125,15,76,0.240633555311755],[125,15,77,0.2395111214139959],[125,15,78,0.23843726938812226],[125,15,79,0.23741254209730578],[125,16,64,0.26147227620494023],[125,16,65,0.2598898377481618],[125,16,66,0.25833920829011636],[125,16,67,0.25682220591483507],[125,16,68,0.2553405701332802],[125,16,69,0.25389595738497484],[125,16,70,0.25248993647415985],[125,16,71,0.2511239839405207],[125,16,72,0.24979947936447594],[125,16,73,0.24851770060706824],[125,16,74,0.2472798189843461],[125,16,75,0.24608689437639053],[125,16,76,0.24493987027086372],[125,16,77,0.24383956874113932],[125,16,78,0.24278668535899106],[125,16,79,0.2417817840418497],[125,17,64,0.26536164728749884],[125,17,65,0.2638165864549995],[125,17,66,0.26230204432561965],[125,17,67,0.26081984268185093],[125,17,68,0.25937172602887454],[125,17,69,0.25795935711919615],[125,17,70,0.25658431241185653],[125,17,71,0.25524807746625544],[125,17,72,0.2539520422705826],[125,17,73,0.25269749650489787],[125,17,74,0.25148562473874575],[125,17,75,0.25031750156346133],[125,17,76,0.24919408665904186],[125,17,77,0.24811621979564813],[125,17,78,0.24708461576970553],[125,17,79,0.24609985927462252],[125,18,64,0.26919244136265147],[125,18,65,0.26768494190703496],[125,18,66,0.2662066829943219],[125,18,67,0.26475948989066445],[125,18,68,0.26334511187287213],[125,18,69,0.26196521777620746],[125,18,70,0.2606213914768082],[125,18,71,0.2593151273087752],[125,18,72,0.2580478254159177],[125,18,73,0.2568207870381971],[125,18,74,0.25563520973275927],[125,18,75,0.254492182529706],[125,18,76,0.25339268102248497],[125,18,77,0.25233756239295924],[125,18,78,0.2513275603711288],[125,18,79,0.25036328012951814],[125,19,64,0.27296109493302095],[125,19,65,0.27149134154285404],[125,19,66,0.27004956351591825],[125,19,67,0.2686375893762563],[125,19,68,0.26725717293810514],[125,19,69,0.2659099888770094],[125,19,70,0.2645976282356192],[125,19,71,0.2633215938642092],[125,19,72,0.26208329579591333],[125,19,73,0.2608840465567124],[125,19,74,0.2597250564100709],[125,19,75,0.25860742853636515],[125,19,76,0.2575321541469909],[125,19,77,0.25650010753320424],[125,19,78,0.25551204104967307],[125,19,79,0.2545685800327514],[125,20,64,0.2766640844267227],[125,20,65,0.27523226166034387],[125,20,66,0.2738271629047638],[125,20,67,0.2724506197055131],[125,20,68,0.27110439016877375],[125,20,69,0.2697901545559692],[125,20,70,0.26850951081310104],[125,20,71,0.26726397003487146],[125,20,72,0.26605495186358336],[125,20,73,0.2648837798228564],[125,20,74,0.26375167658605536],[125,20,75,0.2626597591795734],[125,20,76,0.2616090341208563],[125,20,77,0.2606003924912235],[125,20,78,0.2596346049434644],[125,20,79,0.25871231664421707],[125,21,64,0.2802979287989025],[125,21,65,0.27890422005720533],[125,21,66,0.27753599864832723],[125,21,67,0.2761950988925922],[125,21,68,0.27488328293169395],[125,21,69,0.2736022363469217],[125,21,70,0.27235356371220276],[125,21,71,0.2711387840820003],[125,21,72,0.26995932641405784],[125,21,73,0.2688165249270285],[125,21,74,0.26771161439288754],[125,21,75,0.26664572536426734],[125,21,76,0.2656198793366034],[125,21,77,0.2646349838451469],[125,21,78,0.26369182749682085],[125,21,79,0.26279107493692894],[125,22,64,0.2838591920767821],[125,22,65,0.2825037786144903],[125,22,66,0.28117263132820985],[125,22,67,0.2798675870564096],[125,22,68,0.2785904117092413],[125,22,69,0.27734279591056055],[125,22,70,0.27612635057484297],[125,22,71,0.27494260241902935],[125,22,72,0.27379298940929564],[125,22,73,0.2726788561427808],[125,22,74,0.2716014491641777],[125,22,75,0.2705619122173187],[125,22,76,0.2695612814316496],[125,22,77,0.26860048044364765],[125,22,78,0.26768031545315585],[125,22,79,0.2668014702146494],[125,23,64,0.2873444858483001],[125,23,65,0.28602754582325673],[125,23,66,0.28473366718382],[125,23,67,0.28346468902034],[125,23,68,0.2822223807340837],[125,23,69,0.2810084377032125],[125,23,70,0.2798244768837367],[125,23,71,0.27867203234548343],[125,23,72,0.27755255074307067],[125,23,73,0.27646738672192245],[125,23,74,0.27541779825923035],[125,23,75,0.27440494193999104],[125,23,76,0.2734298681680175],[125,23,77,0.27249351631197294],[125,23,78,0.2715967097864084],[125,23,79,0.27074015106781174],[125,24,64,0.29075047169416085],[125,24,65,0.28947217925415014],[125,24,66,0.2882157606185123],[125,24,67,0.2869830568539374],[125,24,68,0.2857758405655095],[125,24,69,0.28459581158679875],[125,24,70,0.28344459260502136],[125,24,71,0.28232372472130207],[125,24,72,0.2812346629460331],[125,24,73,0.2801787716293628],[125,24,74,0.27915731982672254],[125,24,75,0.27817147659951735],[125,24,76,0.27722230625088096],[125,24,77,0.2763107634965428],[125,24,78,0.27543768857078965],[125,24,79,0.27460380226752645],[125,25,64,0.29407386356339205],[125,25,65,0.2928343879700129],[125,25,66,0.29161561664829194],[125,25,67,0.2904193923567781],[125,25,68,0.2892474906074518],[125,25,69,0.2881016153800874],[125,25,70,0.2869833947717842],[125,25,71,0.28589437658169486],[125,25,72,0.2848360238309482],[125,25,73,0.2838097102177985],[125,25,74,0.2828167155079097],[125,25,75,0.2818582208599014],[125,25,76,0.2809353040860538],[125,25,77,0.28004893484822535],[125,25,78,0.2791999697889571],[125,25,79,0.27838914759777894],[125,26,64,0.29731143009249067],[125,26,65,0.29611093488160345],[125,26,66,0.2949299932931681],[125,26,67,0.29377044948451053],[125,26,68,0.29263408156829646],[125,26,69,0.29152259735132263],[125,26,70,0.2904376300085793],[125,26,71,0.2893807336926155],[125,26,72,0.2883533790782042],[125,26,73,0.28735694884233437],[125,26,74,0.28639273307944824],[125,26,75,0.2854619246520386],[125,26,76,0.2845656144765148],[125,26,77,0.28370478674438054],[125,26,78,0.2828803140787083],[125,26,79,0.28209295262591505],[125,27,64,0.3004599968679852],[125,27,65,0.2992986390462484],[125,27,66,0.29815570391097895],[125,27,67,0.2970330367169308],[125,27,68,0.29593241786229035],[125,27,69,0.29485555865204705],[125,27,70,0.29380409699674853],[125,27,71,0.2927795930466707],[125,27,72,0.29178352476139907],[125,27,73,0.2908172834148488],[125,27,74,0.28988216903564307],[125,27,75,0.28897938578296173],[125,27,76,0.28811003725777135],[125,27,77,0.28727512174948],[125,27,78,0.2864755274179978],[125,27,79,0.285712027411214],[125,28,64,0.30351644863250377],[125,28,65,0.3023943779095232],[125,28,66,0.30128961947378113],[125,28,67,0.3002040193681818],[125,28,68,0.2991393599526471],[125,28,69,0.2980973556922151],[125,28,70,0.29707964888064525],[125,28,71,0.2960878052995587],[125,28,72,0.2951233098131071],[125,28,73,0.29418756189820267],[125,28,74,0.2932818711102237],[125,28,75,0.2924074524843121],[125,28,76,0.2915654218721699],[125,28,77,0.29075679121440123],[125,28,78,0.28998246374838077],[125,28,79,0.28924322915165546],[125,29,64,0.3064777314344266],[125,29,65,0.30539508949003535],[125,29,66,0.30432867078688236],[125,29,67,0.30328032183915177],[125,29,68,0.30225182663642935],[125,29,69,0.3012449024566768],[125,29,70,0.3002611956148406],[125,29,71,0.2993022771471223],[125,29,72,0.29836963843090686],[125,29,73,0.29746468674037607],[125,29,74,0.2965887407377301],[125,29,75,0.2957430259001238],[125,29,76,0.2949286698822318],[125,29,77,0.294146697814487],[125,29,78,0.2933980275369706],[125,29,79,0.29268346476896656],[125,30,64,0.30934085472095907],[125,30,65,0.3082977745071471],[125,30,66,0.30726985065035184],[125,30,67,0.3062589298119057],[125,30,68,0.30526679727103745],[125,30,69,0.30429517276286133],[125,30,70,0.30334570625214],[125,30,71,0.30241997364284207],[125,30,72,0.30151947242349475],[125,30,73,0.30064561724835587],[125,30,74,0.29979973545433053],[125,30,75,0.2989830625137374],[125,30,76,0.2981967374228394],[125,30,77,0.2974417980261833],[125,30,78,0.29671917627672634],[125,30,79,0.29602969343176294],[125,31,64,0.31210289337471336],[125,31,65,0.31109949845172835],[125,31,66,0.31011021596309546],[125,31,67,0.3091368923862404],[125,31,68,0.30818131394239706],[125,31,69,0.30724520245975206],[125,31,70,0.30633021117250314],[125,31,71,0.30543792045585966],[125,31,72,0.304569833496979],[125,31,73,0.30372737190186694],[125,31,74,0.30291187123816726],[125,31,75,0.3021245765139422],[125,31,76,0.30136663759236393],[125,31,77,0.30063910454235565],[125,31,78,0.29994292292516606],[125,31,79,0.29927892901688485],[125,32,64,0.3147609896938652],[125,32,65,0.3137973936000019],[125,32,66,0.31284688976956737],[125,32,67,0.31191132415843087],[125,32,68,0.31099248357491516],[125,32,69,0.31009209156822387],[125,32,70,0.309211804252939],[125,32,71,0.3083532060696088],[125,32,72,0.30751780548142715],[125,32,73,0.30670703060702487],[125,32,74,0.3059222247893052],[125,32,75,0.3051646421004215],[125,32,76,0.3044354427828157],[125,32,77,0.30373568862636113],[125,32,78,0.3030663382815881],[125,32,79,0.30242824250900474],[125,33,64,0.31731235531573887],[125,33,65,0.3163886609703399],[125,33,66,0.315477063248965],[125,33,67,0.3145794072420186],[125,33,68,0.3136974799830495],[125,33,69,0.31283300636258865],[125,33,70,0.31198764497821824],[125,33,71,0.31116298392089253],[125,33,72,0.3103605364975072],[125,33,73,0.3095817368897444],[125,33,74,0.3088279357491207],[125,33,75,0.3081003957283368],[125,33,76,0.3074002869488494],[125,33,77,0.3067286824047068],[125,33,78,0.3060865533026282],[125,33,79,0.3054747643383382],[125,34,64,0.31975427308390186],[125,34,65,0.3188705722230853],[125,34,66,0.31799799764699155],[125,34,67,0.31713839323072207],[125,34,68,0.3162935458645781],[125,34,69,0.3154651813934311],[125,34,70,0.31465496049249025],[125,34,71,0.313864474479492],[125,34,72,0.3130952410633084],[125,34,73,0.312348700028995],[125,34,74,0.31162620885921705],[125,34,75,0.3109290382921393],[125,34,76,0.3102583678157123],[125,34,77,0.30961528109838676],[125,34,78,0.30900076135624394],[125,34,79,0.3084156866565469],[125,35,64,0.32208409885882594],[125,35,65,0.32124047150346274],[125,35,66,0.32040702615024497],[125,35,67,0.31958560510353146],[125,35,68,0.3187779947356283],[125,35,69,0.317985921451801],[125,35,70,0.3172110475918651],[125,35,71,0.3164549672683752],[125,35,72,0.3157192021414085],[125,35,73,0.3150051971299675],[125,35,74,0.31431431605993576],[125,35,75,0.3136478372486775],[125,35,76,0.31300694902620696],[125,35,77,0.31239274519296717],[125,35,78,0.3118062204141988],[125,35,79,0.3112482655509088],[125,36,64,0.32429926327198466],[125,36,65,0.323495777227445],[125,36,66,0.32270155570309883],[125,36,67,0.3219184390718533],[125,36,68,0.32114821280732814],[125,36,69,0.32039260347461884],[125,36,70,0.3196532746578239],[125,36,71,0.3189318228243576],[125,36,72,0.3182297731260424],[125,36,73,0.3175485751370053],[125,36,74,0.31688959852831583],[125,36,75,0.31625412867945063],[125,36,76,0.3156433622265164],[125,36,77,0.31505840254726536],[125,36,78,0.3145002551828891],[125,36,79,0.3139698231965969],[125,37,64,0.3263972734234605],[125,37,65,0.3256339838106467],[125,37,66,0.32487906876715134],[125,37,67,0.32413436636877646],[125,37,68,0.32340166080415705],[125,37,69,0.32268267839137454],[125,37,70,0.32197908353153054],[125,37,71,0.3212924745992981],[125,37,72,0.3206243797704502],[125,37,73,0.31997625278638286],[125,37,74,0.3193494686555792],[125,37,75,0.31874531929209077],[125,37,76,0.3181650090909727],[125,37,77,0.31760965044070755],[125,37,78,0.3170802591725998],[125,37,79,0.3165777499471516],[125,38,64,0.3283757145231103],[125,38,65,0.3276526633402982],[125,38,66,0.32693712502329186],[125,38,67,0.3262309349805159],[125,38,68,0.3255358757240475],[125,38,69,0.3248536729121723],[125,38,70,0.3241859913291033],[125,38,71,0.32353443080188315],[125,38,72,0.32290052205446373],[125,38,73,0.3222857224989865],[125,38,74,0.3216914119642057],[125,38,75,0.32111888836113134],[125,38,76,0.3205693632858321],[125,38,77,0.3200439575594264],[125,38,78,0.31954369670525096],[125,38,79,0.31906950636321124],[125,39,64,0.33023225147517005],[125,39,65,0.3295494671901779],[125,39,66,0.3288733630162628],[125,39,67,0.32820577131990647],[125,39,68,0.32754847254011377],[125,39,69,0.3269031912569927],[125,39,70,0.3262715921977149],[125,39,71,0.3256552761798672],[125,39,72,0.3250557759921965],[125,39,73,0.3244745522127632],[125,39,74,0.32391298896445425],[125,39,75,0.323372389607925],[125,39,76,0.32285397237191304],[125,39,77,0.32235886592095475],[125,39,78,0.32188810486048813],[125,39,79,0.3214426251793531],[125,40,64,0.33196463040640073],[125,40,65,0.33132212757860446],[125,40,66,0.33068550174182104],[125,40,67,0.3300565818420542],[125,40,68,0.32943714584411044],[125,40,69,0.3288289168262817],[125,40,70,0.3282335590126299],[125,40,71,0.3276526737428837],[125,40,72,0.3270877953799495],[125,40,73,0.3265403871550513],[125,40,74,0.3260118369504525],[125,40,75,0.3255034530198261],[125,40,76,0.32501645964621845],[125,40,77,0.3245519927376366],[125,40,78,0.32411109536024285],[125,40,79,0.3236947132091681],[125,41,64,0.33357068013770586],[125,41,65,0.3329684590694208],[125,41,66,0.332371342176429],[125,41,67,0.3317811546020721],[125,41,68,0.33119967143155316],[125,41,69,0.33062861381279157],[125,41,70,0.3300696450151066],[125,41,71,0.32952436642574606],[125,41,72,0.32899431348425706],[125,41,73,0.3284809515547155],[125,41,74,0.32798567173576987],[125,41,75,0.32750978660855906],[125,41,76,0.3270545259224578],[125,41,77,0.3266210322186721],[125,41,78,0.32621035639167456],[125,41,79,0.32582345318848555],[125,42,64,0.33504831359930237],[125,42,65,0.33448636001605103],[125,42,66,0.33392876874955724],[125,42,67,0.3333773607549858],[125,42,68,0.33283390782858385],[125,42,69,0.3323001287547627],[125,42,70,0.3317776853912519],[125,42,71,0.33126817869233455],[125,42,72,0.33077314467016433],[125,42,73,0.3302940502941802],[125,42,74,0.32983228932857345],[125,42,75,0.3293891781078691],[125,42,76,0.3289659512505709],[125,42,77,0.3285637573108983],[125,42,78,0.3281836543685992],[125,42,79,0.3278266055568499],[125,43,64,0.336395529189347],[125,43,65,0.3358738139485341],[125,43,66,0.3353557507585002],[125,43,67,0.33484315599770975],[125,43,68,0.3343377977604795],[125,43,69,0.3338413920303413],[125,43,70,0.3333555987917221],[125,43,71,0.33288201807995665],[125,43,72,0.332422185969627],[125,43,73,0.3319775705012476],[125,43,74,0.3315495675462517],[125,43,75,0.33113949661033887],[125,43,76,0.33074859657513334],[125,43,77,0.3303780213781832],[125,43,78,0.3300288356312824],[125,43,79,0.329702010177127],[125,44,64,0.3376104120760747],[125,44,65,0.33712889090358533],[125,44,66,0.3366503437257605],[125,44,67,0.33617658195314515],[125,44,68,0.3357093695618611],[125,44,69,0.3352504192932888],[125,44,70,0.33480138879232796],[125,44,71,0.33436387668424206],[125,44,72,0.33393941859009146],[125,44,73,0.33352948308076347],[125,44,74,0.3331354675695662],[125,44,75,0.3327586941434343],[125,44,76,0.33240040533270715],[125,44,77,0.33206175981950053],[125,44,78,0.33174382808466],[125,44,79,0.3314475879933058],[125,45,64,0.3386911354434713],[125,45,65,0.33824974869771585],[125,45,66,0.3378106906990279],[125,45,67,0.3373757674964341],[125,45,68,0.3369467385286303],[125,45,69,0.3365253128500169],[125,45,70,0.3361131452955766],[125,45,71,0.33571183258460463],[125,45,72,0.3353229093632905],[125,45,73,0.3349478441861637],[125,45,74,0.3345880354363685],[125,45,75,0.3342448071848164],[125,45,76,0.3339194049881758],[125,45,77,0.33361299162572083],[125,45,78,0.33332664277502927],[125,45,79,0.3330613426265342],[125,46,64,0.33963596168041443],[125,46,65,0.3392346341433378],[125,46,66,0.3388350234936825],[125,46,67,0.3384389300232902],[125,46,68,0.3380481082115617],[125,46,69,0.33766426297786645],[125,46,70,0.3372890458730698],[125,46,71,0.33692405121018865],[125,46,72,0.3365708121341712],[125,46,73,0.33623079663081595],[125,46,74,0.335905403474795],[125,46,75,0.3355959581168281],[125,46,76,0.3353037085099695],[125,46,77,0.33502982087502814],[125,46,78,0.334775375405111],[125,46,79,0.3345413619092956],[125,47,64,0.3404432435133239],[125,47,65,0.34008188420789887],[125,47,66,0.33972166387786473],[125,47,67,0.33936437666045555],[125,47,68,0.3390117716515926],[125,47,69,0.33866554918468],[125,47,70,0.33832735704880584],[125,47,71,0.3379987866463496],[125,47,72,0.33768136909000324],[125,47,73,0.3373765712392087],[125,47,74,0.33708579167598934],[125,47,75,0.33681035662021036],[125,47,76,0.3365515157842379],[125,47,77,0.3363104381670153],[125,47,78,0.33608820778754395],[125,47,79,0.3358858193577793],[125,48,64,0.3411114250823384],[125,48,65,0.340789927116063],[125,48,66,0.3404690247001317],[125,48,67,0.3401505054183001],[125,48,68,0.3398361125568323],[125,48,69,0.33952754140968877],[125,48,70,0.3392264355234079],[125,48,71,0.33893438288169164],[125,48,72,0.3386529120296924],[125,48,73,0.338383488138011],[125,48,74,0.33812750900638144],[125,48,75,0.33788630100707445],[125,48,76,0.3376611149679951],[125,48,77,0.33745312199548677],[125,48,78,0.33726340923683495],[125,48,79,0.3370929755824763],[125,49,64,0.34163904296096875],[125,49,65,0.34135728339488747],[125,49,66,0.34107561095964656],[125,49,67,0.34079580628550965],[125,49,68,0.3405196064212367],[125,49,69,0.34024870116565364],[125,49,70,0.33998472933921997],[125,49,71,0.3397292749955998],[125,49,72,0.33948386357323646],[125,49,73,0.3392499579869379],[125,49,74,0.33902895465945176],[125,49,75,0.3388221794930597],[125,49,76,0.3386308837811664],[125,49,77,0.33845624005989683],[125,49,78,0.33829933789969435],[125,49,79,0.3381611796369252],[125,50,64,0.34202472711926235],[125,50,65,0.3417825668620303],[125,50,66,0.34154002081893586],[125,50,67,0.34129886226589995],[125,50,68,0.3410608215849793],[125,50,69,0.34082758262230045],[125,50,70,0.34060077898630503],[125,50,71,0.34038199028630667],[125,50,72,0.34017273831136197],[125,50,73,0.33997448314946255],[125,50,74,0.3397886192470266],[125,50,75,0.33961647140872026],[125,50,76,0.3394592907375816],[125,50,77,0.33931825051546616],[125,50,78,0.3391944420238],[125,50,79,0.33908887030465196],[125,51,64,0.34226720183048154],[125,51,65,0.3420644855569924],[125,51,66,0.3418609465592217],[125,51,67,0.34165835035736203],[125,51,68,0.34145842023653383],[125,51,69,0.3412628336310587],[125,51,70,0.34107321844936167],[125,51,71,0.340891149339505],[125,51,72,0.3407181438953557],[125,51,73,0.3405556588033891],[125,51,74,0.34040508593011676],[125,51,75,0.34026774835015694],[125,51,76,0.3401448963149309],[125,51,77,0.3400377031619962],[125,51,78,0.33994726116500973],[125,51,79,0.3398745773243257],[125,52,64,0.34236528652127185],[125,52,65,0.342201842615367],[125,52,66,0.34203717547829826],[125,52,67,0.34187304247290745],[125,52,68,0.34171115935642926],[125,52,69,0.34155319669106504],[125,52,70,0.3414007761955147],[125,52,71,0.34125546703746623],[125,52,72,0.34111878206704777],[125,52,73,0.34099217399124193],[125,52,74,0.3408770314892535],[125,52,75,0.3407746752688461],[125,52,76,0.340686354063632],[125,52,77,0.3406132405713284],[125,52,78,0.3405564273329674],[125,52,79,0.34051692255307275],[125,53,64,0.3423178965653385],[125,53,65,0.342193537086119],[125,53,66,0.34206759073097615],[125,53,67,0.3419418063038393],[125,53,68,0.3418178916027047],[125,53,69,0.34169750985646163],[125,53,70,0.34158227610301306],[125,53,71,0.3414737535086928],[125,53,72,0.3413734496289778],[125,53,73,0.3412828126105014],[125,53,74,0.34120322733435543],[125,53,75,0.34113601150069706],[125,53,76,0.34108241165464614],[125,53,77,0.34104359915348287],[125,53,78,0.3410206660751389],[125,53,79,0.3410146210679877],[125,54,64,0.342124044020628],[125,54,65,0.342038564691889],[125,54,66,0.34195117211209036],[125,54,67,0.34186360612504374],[125,54,68,0.34177756613806315],[125,54,69,0.34169470758498527],[125,54,70,0.3416166383308311],[125,54,71,0.341544915018106],[125,54,72,0.3414810393547434],[125,54,73,0.34142645434368935],[125,54,74,0.3413825404541268],[125,54,75,0.34135061173434433],[125,54,76,0.341331911866242],[125,54,77,0.34132761016148366],[125,54,78,0.34133879749928475],[125,54,79,0.34136648220584725],[125,55,64,0.34178283831000944],[125,55,65,0.3417360185323146],[125,55,66,0.34168699678206405],[125,55,67,0.3416375035423925],[125,55,68,0.34158922939870784],[125,55,69,0.3415438215278349],[125,55,70,0.3415028801291575],[125,55,71,0.34146795479775083],[125,55,72,0.3414405408395117],[125,55,73,0.34142207552828185],[125,55,74,0.341413934304966],[125,55,75,0.34141742691864607],[125,55,76,0.34143379350968633],[125,55,77,0.34146420063483907],[125,55,78,0.34150973723433825],[125,55,79,0.3415714105409944],[125,56,64,0.34129348684546457],[125,56,65,0.34128508973038346],[125,56,66,0.34127423993503947],[125,56,67,0.34126265818227086],[125,56,68,0.34125202580488123],[125,56,69,0.3412439812608318],[125,56,70,0.3412401165907899],[125,56,71,0.3412419738180339],[125,56,72,0.34125104129071376],[125,56,73,0.34126874996646916],[125,56,74,0.3412964696394032],[125,56,75,0.3413355051094137],[125,56,76,0.3413870922938791],[125,56,77,0.34145239428170304],[125,56,78,0.3415324973297131],[125,56,79,0.34162840680141887],[125,57,64,0.34065529559577257],[125,57,65,0.34068506802179666],[125,57,66,0.3407121754095631],[125,57,67,0.34073832832321505],[125,57,68,0.3407651984130889],[125,57,69,0.34079441495686036],[125,57,70,0.34082756134342285],[125,57,71,0.3408661714994869],[125,57,72,0.34091172625891064],[125,57,73,0.3409656496747535],[125,57,74,0.3410293052740588],[125,57,75,0.34110399225536314],[125,57,76,0.3411909416289292],[125,57,77,0.3412913122997104],[125,57,78,0.34140618709303616],[125,57,79,0.3415365687230304],[125,58,64,0.3398676695977034],[125,58,65,0.3399353422873644],[125,58,66,0.3400001762418345],[125,58,67,0.3400638714696723],[125,58,68,0.34012808951001877],[125,58,69,0.34019444999959847],[125,58,70,0.3402645271828335],[125,58,71,0.3403398463650567],[125,58,72,0.34042188030883347],[125,58,73,0.34051204557338555],[125,58,74,0.340611698797124],[125,58,75,0.34072213292328424],[125,58,76,0.34084457336866547],[125,58,77,0.3409801741354792],[125,58,78,0.3411300138662974],[125,58,79,0.34129509184211215],[125,59,64,0.33893011341072277],[125,59,65,0.3390354010284295],[125,59,66,0.3391377151615261],[125,59,67,0.33923874486788574],[125,59,68,0.3393401411481627],[125,59,69,0.33944351353854],[125,59,70,0.33955042664697466],[125,59,71,0.3396623966329304],[125,59,72,0.33978088763060577],[125,59,73,0.33990730811564834],[125,59,74,0.3400430072153692],[125,59,75,0.34018927096244145],[125,59,76,0.3403473184920933],[125,59,77,0.3405182981827941],[125,59,78,0.3407032837404293],[125,59,79,0.34090327022597167],[125,60,64,0.33784223151517856],[125,60,65,0.3379848327852942],[125,60,66,0.338124365030143],[125,60,67,0.33826250596387764],[125,60,68,0.33840089562311115],[125,60,69,0.33854113298528776],[125,60,70,0.3386847725309474],[125,60,71,0.33883332074987316],[125,60,72,0.338988232591127],[125,60,73,0.3391509078569677],[125,60,74,0.33932268754066375],[125,60,75,0.33950485010818454],[125,60,76,0.33969860772378047],[125,60,77,0.3399051024194517],[125,60,78,0.3401254022083001],[125,60,79,0.3403604971417715],[125,61,64,0.3366037286540079],[125,61,65,0.3367833264986866],[125,61,66,0.33695979922195984],[125,61,67,0.33713481280356694],[125,61,68,0.3373099958925558],[125,61,69,0.33748693645114536],[125,61,70,0.33766717834288584],[125,61,71,0.33785221786510417],[125,61,72,0.3380435002256411],[125,61,73,0.3382424159638721],[125,61,74,0.3384502973160267],[125,61,75,0.33866841452478913],[125,61,76,0.3388979720931891],[125,61,77,0.3391401049827856],[125,61,78,0.33939587475613503],[125,61,79,0.3396662656635543],[125,62,64,0.33521441011795566],[125,62,65,0.3354306718142577],[125,62,66,0.335643791947527],[125,62,67,0.3358554243750111],[125,62,68,0.3360671859369929],[125,62,69,0.3362806531260039],[125,62,70,0.33649735870074604],[125,62,71,0.33671878824470847],[125,62,72,0.3369463766694879],[125,62,73,0.3371815046628007],[125,62,74,0.337425495081208],[125,62,75,0.33767960928752844],[125,62,76,0.3379450434329543],[125,62,77,0.3382229246838705],[125,62,78,0.3385143073933677],[125,62,79,0.33882016921746255],[125,63,64,0.33367418197426324],[125,63,65,0.33392675933006843],[125,63,66,0.33417621851970636],[125,63,67,0.3344242008927356],[125,63,68,0.33467231106208906],[125,63,69,0.33492211359848506],[125,63,70,0.33517512966996577],[125,63,71,0.3354328336265493],[125,63,72,0.3356966495300029],[125,63,73,0.3359679476287263],[125,63,74,0.33624804077776754],[125,63,75,0.3365381808039427],[125,63,76,0.3368395548160794],[125,63,77,0.337153281460379],[125,63,78,0.337480407120894],[125,63,79,0.33782190206512824],[125,64,64,0.33198305123889393],[125,64,65,0.33227158078713437],[125,64,66,0.3325570555623003],[125,64,67,0.3328411040242128],[125,64,68,0.3331253181427715],[125,64,69,0.33341125011740097],[125,64,70,0.33370040904205056],[125,64,71,0.3339942575157345],[125,64,72,0.33429420819861877],[125,64,73,0.3346016203136428],[125,64,74,0.3349177960937014],[125,64,75,0.33524397717435583],[125,64,76,0.3355813409320929],[125,64,77,0.3359309967681315],[125,64,78,0.33629398233776786],[125,64,79,0.33667125972527073],[125,65,64,0.3301411259922408],[125,65,65,0.33046522920297033],[125,65,66,0.33078638116122105],[125,65,67,0.33110619705843797],[125,65,68,0.33142625580899066],[125,65,69,0.3317480967944805],[125,65,70,0.3320732165540383],[125,65,71,0.3324030654205935],[125,65,72,0.3327390441031247],[125,65,73,0.3330825002148772],[125,65,74,0.3334347247475755],[125,65,75,0.3337969484915976],[125,65,76,0.33417033840212995],[125,65,77,0.33455599391130464],[125,65,78,0.33495494318630736],[125,65,79,0.3353681393334697],[125,66,64,0.3281486154383665],[125,66,65,0.328507898948188],[125,66,66,0.32886437495824944],[125,66,67,0.3292196450166516],[125,66,68,0.32957527457320335],[125,66,69,0.3299327897484096],[125,66,70,0.3302936740488892],[125,66,71,0.3306593650292067],[125,66,72,0.3310312509001249],[125,66,73,0.33141066708326483],[125,66,74,0.33179889271220386],[125,66,75,0.33219714707997217],[125,66,76,0.3326065860329753],[125,66,77,0.3330282983113347],[125,66,78,0.333463301835644],[125,66,79,0.33391253994014825],[125,67,64,0.32600582990769456],[125,67,65,0.32639988576606455],[125,67,66,0.32679131818730545],[125,67,67,0.32718171470512947],[125,67,68,0.3275726268995006],[125,67,69,0.32796556719010916],[125,67,70,0.3283620055767259],[125,67,71,0.32876336632641706],[125,67,72,0.32917102460762804],[125,67,73,0.3295863030711225],[125,67,74,0.33001046837780823],[125,67,75,0.33044472767340805],[125,67,76,0.3308902250100048],[125,67,77,0.3313480377144537],[125,67,78,0.33181917270365635],[125,67,79,0.3323045627467062],[125,68,64,0.32371318080324885],[125,68,65,0.32414158673517873],[125,68,66,0.32456759365332155],[125,68,67,0.32499277471013355],[125,68,68,0.32541866721446944],[125,68,69,0.3258467694493411],[125,68,70,0.32627853743701213],[125,68,71,0.3267153816514078],[125,68,72,0.3271586636778495],[125,68,73,0.3276096928200971],[125,68,74,0.32806972265473633],[125,68,75,0.32853994753286375],[125,68,76,0.32902149902910105],[125,68,77,0.32951544233793273],[125,68,78,0.3300227726173587],[125,68,79,0.33054441127987555],[125,69,64,0.3212711804904037],[125,69,65,0.32173350017507696],[125,69,66,0.32219368565368556],[125,69,67,0.32265329533498766],[125,69,68,0.32311385185975566],[125,69,69,0.32357683894260736],[125,69,70,0.32404369816163586],[125,69,71,0.3245158256958155],[125,69,72,0.32499456901019586],[125,69,73,0.32548122348886266],[125,69,74,0.3259770290157097],[125,69,75,0.3264831665029654],[125,69,76,0.32700075436751486],[125,69,77,0.32753084495500356],[125,69,78,0.32807442091172034],[125,69,79,0.3286323915042696],[125,70,64,0.31868044213007746],[125,70,65,0.31917622549490343],[125,70,66,0.3196701798421864],[125,70,67,0.32016384847921375],[125,70,68,0.3206587389862622],[125,70,69,0.3211563200822801],[125,70,70,0.32165801843883657],[125,70,71,0.32216521544231647],[125,70,72,0.32267924390437136],[125,70,73,0.32320138472060567],[125,70,74,0.3237328634775428],[125,70,75,0.3242748470078155],[125,70,76,0.3248284398936171],[125,70,77,0.3253946809184066],[125,70,78,0.3259745394668594],[125,70,79,0.32656891187307646],[125,71,64,0.31594167945548507],[125,71,65,0.3164704629851084],[125,71,66,0.3169977630355748],[125,71,67,0.3175251074598393],[125,71,68,0.3180539883900938],[125,71,69,0.3185858591270695],[125,71,70,0.31912213097808023],[125,71,71,0.3196641700437901],[125,71,72,0.32021329395370846],[125,71,73,0.3207707685503971],[125,71,74,0.32133780452243343],[125,71,75,0.3219155539860703],[125,71,76,0.322505107015635],[125,71,77,0.32310748812265455],[125,71,78,0.32372365268370296],[125,71,79,0.3243544833169829],[125,72,64,0.3130557064924021],[125,72,65,0.31361701355218696],[125,72,66,0.3141772229626938],[125,72,67,0.3147378467748313],[125,72,68,0.3153003612902029],[125,72,69,0.3158662039737862],[125,72,70,0.3164367703158414],[125,72,71,0.3170134106430188],[125,72,72,0.3175974268786812],[125,72,73,0.31819006925241455],[125,72,74,0.3187925329587813],[125,72,75,0.31940595476524825],[125,72,76,0.32003140956933607],[125,72,77,0.3206699069049775],[125,72,78,0.32132238739807845],[125,72,79,0.32198971917129515],[125,73,64,0.31002343722286074],[125,73,65,0.31061677839637014],[125,73,66,0.3112094479560992],[125,73,67,0.31180294180857804],[125,73,68,0.3123987200476578],[125,73,69,0.31299820389032273],[125,73,70,0.3136027725622146],[125,73,71,0.3142137601328485],[125,73,72,0.31483245230052814],[125,73,73,0.3154600831269383],[125,73,74,0.31609783172146855],[125,73,75,0.3167468188751976],[125,73,76,0.3174081036445887],[125,73,77,0.31808267988488004],[125,73,78,0.3187714727331674],[125,73,79,0.31947533504118886],[125,74,64,0.30684588519241535],[125,74,65,0.3074707586324057],[125,74,66,0.3080954265863086],[125,74,67,0.3087213684795529],[125,74,68,0.30935002782667126],[125,74,69,0.30998280918998367],[125,74,70,0.3106210750884886],[125,74,71,0.3112661428569392],[125,74,72,0.3119192814551124],[125,74,73,0.31258170822724896],[125,74,74,0.3132545856117198],[125,74,75,0.31393901780084543],[125,74,76,0.3146360473509205],[125,74,77,0.31534665174242793],[125,74,78,0.316071739890438],[125,74,79,0.3168121486052048],[125,75,64,0.3035241630609212],[125,75,65,0.30418005485336974],[125,75,66,0.304836247238618],[125,75,67,0.30549420283010675],[125,75,68,0.3061553481973278],[125,75,69,0.3068210708471116],[125,75,70,0.30749271615562457],[125,75,71,0.30817158425104985],[125,75,72,0.3088589268469624],[125,75,73,0.3095559440263717],[125,75,74,0.31026378097649454],[125,75,75,0.31098352467417695],[125,75,76,0.3117162005220234],[125,75,77,0.3124627689352142],[125,75,78,0.3132241218790071],[125,75,79,0.31400107935693855],[125,76,64,0.30005948209673106],[125,76,65,0.30074586663741865],[125,76,66,0.30143309763239867],[125,76,67,0.3021226205582944],[125,76,68,0.3028158446799243],[125,76,69,0.30351414005391886],[125,76,70,0.30421883448355447],[125,76,71,0.30493121042477483],[125,76,72,0.3056525018434131],[125,76,73,0.30638389102358615],[125,76,74,0.30712650532732555],[125,76,75,0.3078814139053625],[125,76,76,0.3086496243591244],[125,76,77,0.3094320793539269],[125,76,78,0.31022965318335544],[125,76,79,0.3110431482848496],[125,77,64,0.2964531516144761],[125,77,65,0.2971694919976426],[125,77,66,0.2978872642830328],[125,77,67,0.29860789649189723],[125,77,68,0.29933278023107973],[125,77,69,0.3000632677186814],[125,77,70,0.30080066876145206],[125,77,71,0.30154624768387983],[125,77,72,0.3023012202089933],[125,77,73,0.30306675029084706],[125,77,74,0.3038439468987527],[125,77,75,0.3046338607531776],[125,77,76,0.3054374810133646],[125,77,77,0.3062557319166581],[125,77,78,0.3070894693695312],[125,77,79,0.307939477490326],[125,78,64,0.2927065783563568],[125,78,65,0.2934523267749491],[125,78,66,0.29420013190641764],[125,78,67,0.2949514040045707],[125,78,68,0.2957075166715457],[125,78,69,0.296469803905227],[125,78,70,0.29723955709890876],[125,78,71,0.2980180219931732],[125,78,72,0.29880639557999644],[125,78,73,0.2996058229590527],[125,78,74,0.30041739414628466],[125,78,75,0.30124214083465295],[125,78,76,0.3020810331071262],[125,78,77,0.30293497610189146],[125,78,78,0.30380480662978376],[125,78,79,0.304691289743945],[125,79,64,0.2888212658168424],[125,79,65,0.28959586397387677],[125,79,66,0.29037318276593804],[125,79,67,0.29115461437401846],[125,79,68,0.2919415140556184],[125,79,69,0.29273519721361807],[125,79,70,0.2935369364179182],[125,79,71,0.2943479583798174],[125,79,72,0.2951694408791372],[125,79,73,0.29600250964406694],[125,79,74,0.2968482351837992],[125,79,75,0.29770762957386165],[125,79,76,0.2985816431942129],[125,79,77,0.2994711614200808],[125,79,78,0.30037700126553984],[125,79,79,0.3012999079798407],[125,80,64,0.28479881351096625],[125,80,65,0.2856016930415216],[125,80,66,0.2864079959620894],[125,80,67,0.28721909608237195],[125,80,68,0.288036329982331],[125,80,69,0.2888609941022091],[125,80,70,0.28969434178584497],[125,80,71,0.2905375802772513],[125,80,72,0.2913918676704687],[125,80,73,0.29225830981266454],[125,80,74,0.29313795716054813],[125,80,75,0.29403180159001],[125,80,76,0.29494077315905104],[125,80,77,0.2958657368239804],[125,80,78,0.2968074891088782],[125,80,79,0.2977667547283379],[125,81,64,0.28064091618612824],[125,81,65,0.28147149908949165],[125,81,66,0.28230624666466825],[125,81,67,0.28314651405869373],[125,81,68,0.2839936188483457],[125,81,69,0.28484883815099676],[125,81,70,0.2857134056892969],[125,81,71,0.28658850880964704],[125,81,72,0.2874752854544811],[125,81,73,0.28837482108832224],[125,81,74,0.28928814557768956],[125,81,75,0.2902162300247575],[125,81,76,0.29115998355483663],[125,81,77,0.2921202500576552],[125,81,78,0.29309780488243575],[125,81,79,0.29409335148678317],[125,82,64,0.2763493629772987],[125,82,65,0.27720706205878354],[125,82,66,0.2780697052874212],[125,82,67,0.2789386288634993],[125,82,68,0.2798151310424378],[125,82,69,0.28070046926615483],[125,82,70,0.28159585724879677],[125,82,71,0.2825024620167967],[125,82,72,0.2834214009032757],[125,82,73,0.284353738496754],[125,82,74,0.28530048354424997],[125,82,75,0.2862625858086649],[125,82,76,0.28724093288052677],[125,82,77,0.2882363469440693],[125,82,78,0.2892495814976426],[125,82,79,0.29028131802847085],[125,83,64,0.27192603650582536],[125,83,65,0.27281025582778007],[125,83,66,0.27370023660535503],[125,83,67,0.2745972958154924],[125,83,68,0.2755027120817706],[125,83,69,0.2764177228259539],[125,83,70,0.2773435213744476],[125,83,71,0.27828125401962056],[125,83,72,0.27923201703601064],[125,83,73,0.28019685365138],[125,83,74,0.2811767509726991],[125,83,75,0.2821726368669555],[125,83,76,0.28318537679686157],[125,83,77,0.2842157706114383],[125,83,78,0.2852645492914705],[125,83,79,0.2863323716498472],[125,84,64,0.26737291192175117],[125,84,65,0.26828304726327823],[125,84,66,0.26919979881461387],[125,84,67,0.2701244640604271],[125,84,68,0.2710583016898692],[125,84,69,0.2720025287679737],[125,84,70,0.27295831786250335],[125,84,71,0.2739267941262109],[125,84,72,0.2749090323345272],[125,84,73,0.27590605387864126],[125,84,74,0.2769188237140551],[125,84,75,0.27794824726450584],[125,84,76,0.2789951672813325],[125,84,77,0.28006036065826173],[125,84,78,0.2811445352016089],[125,84,79,0.2822483263559109],[125,85,64,0.26269205588951927],[125,85,65,0.2636274952144263],[125,85,66,0.26457044253480466],[125,85,67,0.26552217558197355],[125,85,68,0.2664839328161772],[125,85,69,0.2674569106174909],[125,85,70,0.2684422604327255],[125,85,71,0.2694410858782921],[125,85,72,0.2704544397990425],[125,85,73,0.2714833212830483],[125,85,74,0.2725286726324058],[125,85,75,0.2735913762899537],[125,85,76,0.2746722517219843],[125,85,77,0.27577205225692125],[125,85,78,0.2768914618799619],[125,85,79,0.27803109198369813],[125,86,64,0.2578856255172941],[125,86,65,0.25884574944979444],[125,86,66,0.25981430975399367],[125,86,67,0.2607925641548128],[125,86,68,0.2617817305974125],[125,86,69,0.26278298445726017],[125,86,70,0.26379745570674706],[125,86,71,0.2648262260383169],[125,86,72,0.26587032594412263],[125,86,73,0.26693073175217236],[125,86,74,0.2680083626190556],[125,86,75,0.26910407747913034],[125,86,76,0.27021867195025795],[125,86,77,0.27135287519605605],[125,86,78,0.2725073467446669],[125,86,79,0.2736826732640563],[125,87,64,0.252955867229792],[125,87,65,0.2539400495374742],[125,87,66,0.2549336327162707],[125,87,67,0.2559378542398534],[125,87,68,0.2569539112606243],[125,87,69,0.25798295783858943],[125,87,70,0.25902610212733895],[125,87,71,0.26008440351709416],[125,87,72,0.26115886973483715],[125,87,73,0.26225045390148527],[125,87,74,0.26336005154620173],[125,87,75,0.26448849757772125],[125,87,76,0.2656365632127795],[125,87,77,0.2668049528616152],[125,87,78,0.26799430097054333],[125,87,79,0.26920516882161416],[125,88,64,0.24790511558448988],[125,88,65,0.2489127236680783],[125,88,66,0.24993073275175118],[125,88,67,0.2509603598214458],[125,88,68,0.25200278096782114],[125,88,69,0.2530591286335796],[125,88,70,0.25413048881845524],[125,88,71,0.2552178982418264],[125,88,72,0.25632234146297034],[125,88,73,0.2574447479589199],[125,88,74,0.2585859891600165],[125,88,75,0.2597468754430353],[125,88,76,0.26092815308197354],[125,88,77,0.262130501156469],[125,88,78,0.2633545284178495],[125,88,79,0.26460077011282646],[125,89,64,0.2427357920314735],[125,89,65,0.24376618742089753],[125,89,66,0.2448080190492743],[125,89,67,0.2458624831868474],[125,89,68,0.24693073460242435],[125,89,69,0.24801388382878303],[125,89,70,0.2491129943863066],[125,89,71,0.25022907996480415],[125,89,72,0.251363101563536],[125,89,73,0.25251596458939995],[125,89,74,0.2536885159133791],[125,89,75,0.2548815408851208],[125,89,76,0.25609576030574027],[125,89,77,0.257331827358818],[125,89,78,0.25859032449958763],[125,89,79,0.2598717603023307],[125,90,64,0.23745040361670752],[125,90,65,0.2385029424729988],[125,90,66,0.23956798737157972],[125,90,67,0.24064671364772316],[125,90,68,0.2417402544973334],[125,90,69,0.2428496982600677],[125,90,70,0.2439760856612526],[125,90,71,0.24512040701254956],[125,90,72,0.246283599371389],[125,90,73,0.24746654365913145],[125,90,74,0.24867006173805317],[125,90,75,0.24989491344702747],[125,90,76,0.2511417935959963],[125,90,77,0.2524113289191986],[125,90,78,0.25370407498715397],[125,90,79,0.25502051307741813],[125,91,64,0.23205154162889577],[125,91,65,0.23312557525143446],[125,91,66,0.23421321871313394],[125,91,67,0.23531562620385318],[125,91,68,0.23643390910477172],[125,91,69,0.23756913328885476],[125,91,70,0.2387223163806783],[125,91,71,0.2398944249755719],[125,91,72,0.24108637181809733],[125,91,73,0.24229901293981926],[125,91,74,0.24353314475646992],[125,91,75,0.2447895011243751],[125,91,76,0.2460687503562375],[125,91,77,0.24737149219624388],[125,91,78,0.2486982547544952],[125,91,79,0.2500494914007749],[125,92,64,0.22654188018969512],[125,92,65,0.22763675552832446],[125,92,66,0.22874637790036872],[125,92,67,0.22987188014880838],[125,92,68,0.23101435160767791],[125,92,69,0.23217483541949513],[125,92,70,0.23335432581262094],[125,92,71,0.23455376533850603],[125,92,72,0.23577404206884306],[125,92,73,0.23701598675257862],[125,92,74,0.2382803699328922],[125,92,75,0.23956789902400183],[125,92,76,0.24087921534789908],[125,92,77,0.2422148911309765],[125,92,78,0.24357542646054708],[125,92,79,0.24496124620127274],[125,93,64,0.22092417478756773],[125,93,65,0.2220392349590957],[125,93,66,0.2231702121346131],[125,93,67,0.22431821761787735],[125,93,68,0.22548431847292083],[125,93,69,0.22666953485806335],[125,93,70,0.22787483732042663],[125,93,71,0.22910114405090765],[125,93,72,0.2303493180996281],[125,93,73,0.23162016455181655],[125,93,74,0.23291442766422776],[125,93,75,0.23423278796196173],[125,93,76,0.235575859295782],[125,93,77,0.23694418585990001],[125,93,78,0.23833823917022107],[125,93,79,0.23975841500307205],[125,94,64,0.2152012607551395],[125,94,65,0.21633584556374785],[125,94,66,0.2174875494775918],[125,94,67,0.21865746207811498],[125,94,68,0.21984662794621307],[125,94,69,0.2210560440124429],[125,94,70,0.22228665686830906],[125,94,71,0.22353936003858071],[125,94,72,0.22481499121466042],[125,94,73,0.22611432944895687],[125,94,74,0.22743809231037004],[125,94,75,0.22878693300074893],[125,94,76,0.23016143743242218],[125,94,77,0.23156212126676734],[125,94,78,0.2329894269138172],[125,94,79,0.23444372049291956],[125,95,64,0.2093760516899194],[125,95,65,0.2105294981510002],[125,95,66,0.21170129727934167],[125,95,67,0.21289251676036713],[125,95,68,0.2141041784885751],[125,95,69,0.21533725593355674],[125,95,70,0.21659267146766525],[125,95,71,0.217871293655293],[125,95,72,0.21917393450377448],[125,95,73,0.2205013466758674],[125,95,74,0.22185422066392424],[125,95,75,0.22323318192560915],[125,95,76,0.2246387879812637],[125,95,77,0.22607152547288656],[125,95,78,0.2275318071847257],[125,95,79,0.22901996902549954],[125,96,64,0.20345153781866232],[125,96,65,0.2046231806856007],[125,96,66,0.20581444054882903],[125,96,67,0.20702636303355237],[125,96,68,0.20825994715463264],[125,96,69,0.20951614269802216],[125,96,70,0.2107958475644276],[125,96,71,0.2120999050751558],[125,96,72,0.2134291012401638],[125,96,73,0.21478416198826267],[125,96,74,0.2161657503595908],[125,96,75,0.21757446366020577],[125,96,76,0.21901083057890414],[125,96,77,0.22047530826623235],[125,96,78,0.22196827937568392],[125,96,79,0.22349004906710584],[125,97,64,0.19743078430524225],[125,97,65,0.19861995659866494],[125,97,66,0.19983004026713547],[125,97,67,0.20106205872106808],[125,97,68,0.20231698791261044],[125,97,69,0.20359575373209865],[125,97,70,0.20489922936731997],[125,97,71,0.20622823262553747],[125,97,72,0.20758352321829476],[125,97,73,0.20896580000895332],[125,97,74,0.21037569822307728],[125,97,75,0.2118137866215149],[125,97,76,0.2132805646362857],[125,97,77,0.2147764594692359],[125,97,78,0.2163018231534603],[125,97,79,0.21785692957750818],[125,98,64,0.19131692950187446],[125,98,65,0.19252296304088512],[125,98,66,0.19375123164305108],[125,98,67,0.1950027363591625],[125,98,68,0.1962784299058714],[125,98,69,0.19757921407677093],[125,98,70,0.19890593711686105],[125,98,71,0.20025939106035523],[125,98,72,0.2016403090318471],[125,98,73,0.20304936251078687],[125,98,74,0.20448715855938632],[125,98,75,0.2059542370137979],[125,98,76,0.20745106763867915],[125,98,77,0.2089780472451036],[125,98,78,0.21053549677181843],[125,98,79,0.21212365832986446],[125,99,64,0.18511318314399156],[125,99,65,0.18633540907891116],[125,99,66,0.18758122231137864],[125,99,67,0.1888516013975725],[125,99,68,0.19014747565629342],[125,99,69,0.19146972259426648],[125,99,70,0.19281916529541282],[125,99,71,0.19419656977403998],[125,99,72,0.195602642291973],[125,99,73,0.19703802663957337],[125,99,74,0.1985033013807696],[125,99,75,0.19999897706193787],[125,99,76,0.20152549338475],[125,99,77,0.20308321634294824],[125,99,78,0.2046724353230438],[125,99,79,0.20629336016896122],[125,100,64,0.1788228244886288],[125,100,65,0.18006057383476065],[125,100,66,0.18132329047380452],[125,100,67,0.1826119303422865],[125,100,68,0.18392739920934664],[125,100,69,0.18527055011586413],[125,100,70,0.18664218077813283],[125,100,71,0.18804303095603553],[125,100,72,0.18947377978573887],[125,100,73,0.19093504307685788],[125,100,74,0.1924273705742105],[125,100,75,0.19395124318400436],[125,100,76,0.1955070701645698],[125,100,77,0.19709518628160083],[125,100,78,0.19871584892790006],[125,100,79,0.20036923520764904],[125,101,64,0.17244920039615097],[125,101,65,0.17370180456809142],[125,101,66,0.17498078298217057],[125,101,67,0.17628706884026335],[125,101,68,0.1776215442207038],[125,101,69,0.17898503753083145],[125,101,70,0.18037832092466644],[125,101,71,0.18180210768566657],[125,101,72,0.18325704957458472],[125,101,73,0.18474373414237527],[125,101,74,0.18626268200827384],[125,101,75,0.18781434410288728],[125,101,76,0.18939909887641215],[125,101,77,0.19101724947194104],[125,101,78,0.1926690208638539],[125,101,79,0.19435455696131565],[125,102,64,0.165995723355641],[125,102,65,0.16726251470165426],[125,102,66,0.1685571133644646],[125,102,67,0.1698804297064278],[125,102,68,0.17123332198470093],[125,102,69,0.1726165938168034],[125,102,70,0.17403099161189106],[125,102,71,0.1754772019676895],[125,102,72,0.17695584903311112],[125,102,73,0.17846749183649963],[125,102,74,0.180012621579631],[125,102,75,0.18159165889730394],[125,102,76,0.18320495108263957],[125,102,77,0.18485276927805006],[125,102,78,0.18653530563187354],[125,102,79,0.1882526704206951],[125,103,64,0.15946586945379687],[125,103,65,0.16074618178977323],[125,103,66,0.16205575979337566],[125,103,67,0.1633954908927872],[125,103,68,0.16476620940449305],[125,103,69,0.16616869401145218],[125,103,70,0.1676036652075643],[125,103,71,0.16907178270837542],[125,103,72,0.1705736428280476],[125,103,73,0.17210977582253728],[125,103,74,0.17368064319911164],[125,103,75,0.17528663499203273],[125,103,76,0.17692806700453323],[125,103,77,0.178605178017042],[125,103,78,0.18031812696165428],[125,103,79,0.18206699006287141],[125,104,64,0.1528631762871645],[125,104,65,0.15415634542968326],[125,104,66,0.15548026299724643],[125,104,67,0.15683579339950166],[125,104,68,0.15822374690374102],[125,104,69,0.1596448771252793],[125,104,70,0.16109987848470592],[125,104,71,0.16258938363195702],[125,104,72,0.16411396083723223],[125,104,73,0.16567411134869942],[125,104,74,0.16727026671711792],[125,104,75,0.16890278608720988],[125,104,76,0.1705719534559042],[125,104,77,0.17227797489740843],[125,104,78,0.17402097575510805],[125,104,79,0.17580099780031383],[125,105,64,0.14619124081803836],[125,105,65,0.1474966051160535],[125,105,66,0.1488342241137482],[125,105,67,0.1502049391282333],[125,105,68,0.1516095362801519],[125,105,69,0.15304874399585577],[125,105,70,0.15452323047703775],[125,105,71,0.15603360113776338],[125,105,72,0.1575803960089267],[125,105,73,0.15916408711007224],[125,105,74,0.16078507578871853],[125,105,75,0.16244369002700604],[125,105,76,0.16414018171579836],[125,105,77,0.16587472389619168],[125,105,78,0.1676474079684312],[125,105,79,0.1694582408682544],[125,106,64,0.139453717173869],[125,106,65,0.14077061803853785],[125,106,66,0.14212130248612131],[125,106,67,0.14350658867761934],[125,106,68,0.1449272385007161],[125,106,69,0.14638395508335167],[125,106,70,0.14787738027532682],[125,106,71,0.14940809209788697],[125,106,72,0.15097660216130915],[125,106,73,0.1525833530504324],[125,106,74,0.15422871567827096],[125,106,75,0.15591298660752867],[125,106,76,0.15763638534014612],[125,106,77,0.1593990515748358],[125,106,78,0.16120104243259997],[125,106,79,0.16304232965025878],[125,107,64,0.1326543143900034],[125,107,65,0.13398209682217793],[125,107,66,0.13534521340180755],[125,107,67,0.13674445908069083],[125,107,68,0.13818057143846846],[125,107,69,0.13965422820718437],[125,107,70,0.14116604476445743],[125,107,71,0.1427165715952099],[125,107,72,0.1443062917219764],[125,107,73,0.1459356181037354],[125,107,74,0.14760489100339846],[125,107,75,0.14931437532378222],[125,107,76,0.15106425791218736],[125,107,77,0.15285464483354494],[125,107,78,0.15468555861212407],[125,107,79,0.1565569354418247],[125,108,64,0.12579679409609623],[125,108,65,0.12713480721099685],[125,108,66,0.12850972577381015],[125,108,67,0.12992232148457833],[125,108,68,0.13137330755110904],[125,108,69,0.13286333622411867],[125,108,70,0.13439299630156704],[125,108,71,0.1359628106021224],[125,108,72,0.13757323340778504],[125,108,73,0.13922464787560807],[125,108,74,0.14091736341865496],[125,108,75,0.14265161305601365],[125,108,76,0.1444275507319956],[125,108,77,0.14624524860447818],[125,108,78,0.14810469430238454],[125,108,79,0.15000578815232674],[125,109,64,0.11888496814602978],[125,109,65,0.12023256569462043],[125,109,66,0.1216186597646195],[125,109,67,0.12304399877233996],[125,109,68,0.1245092715013219],[125,109,69,0.1260151046476583],[125,109,70,0.12756206033508444],[125,109,71,0.12915063359977436],[125,109,72,0.13078124984487088],[125,109,73,0.13245426226468593],[125,109,74,0.13416994923871584],[125,109,75,0.13592851169528442],[125,109,76,0.1377300704449479],[125,109,77,0.1395746634836184],[125,109,78,0.14146224326539886],[125,109,79,0.1433926739451566],[125,110,64,0.11192269619115941],[125,110,65,0.11327923707774529],[125,110,66,0.11467588435252513],[125,110,67,0.11611336312672937],[125,110,68,0.11759233771861066],[125,110,69,0.11911340920854857],[125,110,70,0.1206771129644918],[125,110,71,0.12228391613768008],[125,110,72,0.12393421512867198],[125,110,73,0.1256283330236181],[125,110,74,0.12736651700092022],[125,110,75,0.12914893570809344],[125,110,76,0.13097567660896198],[125,110,77,0.13284674330114699],[125,110,78,0.13476205280383907],[125,110,79,0.13672143281588212],[125,111,64,0.10491388319723827],[125,111,65,0.10627873199280308],[125,111,66,0.1076853148406609],[125,111,67,0.10913433353625773],[125,111,68,0.11062642790299987],[125,111,69,0.11216217335673773],[125,111,70,0.11374207844115686],[125,111,71,0.11536658233402203],[125,111,72,0.11703605232429698],[125,111,73,0.11875078126008126],[125,111,74,0.12051098496750412],[125,111,75,0.12231679964039194],[125,111,76,0.12416827920084195],[125,111,77,0.12606539263065725],[125,111,78,0.12800802127363903],[125,111,79,0.1299959561087619],[125,112,64,0.09786247690484595],[125,112,65,0.09923500435565169],[125,112,66,0.10065091030861562],[125,112,67,0.10211087324337481],[125,112,68,0.1036155084704341],[125,112,69,0.1051653657046282],[125,112,70,0.10676092661006448],[125,112,71,0.10840260231648408],[125,112,72,0.11009073090707006],[125,112,73,0.11182557487763872],[125,112,74,0.11360731856736128],[125,112,75,0.11543606556082414],[125,112,76,0.11731183606156553],[125,112,77,0.11923456423704343],[125,112,78,0.12120409553502903],[125,112,79,0.12322018397145174],[125,113,64,0.09077246523314342],[125,113,65,0.09215204876410904],[125,113,66,0.0935766710064247],[125,113,67,0.09504698713459031],[125,113,68,0.09656358793968894],[125,113,69,0.09812699741143588],[125,113,70,0.09973767029227093],[125,113,71,0.10139598960343782],[125,113,72,0.10310226414307588],[125,113,73,0.104856725956262],[125,113,74,0.1066595277771501],[125,113,75,0.10851074044301429],[125,113,76,0.11041035028033636],[125,113,77,0.11235825646289038],[125,113,78,0.11435426834181855],[125,113,79,0.11639810274772733],[125,114,64,0.08364787362732751],[125,114,65,0.0850338978397085],[125,114,66,0.08646663569132218],[125,114,67,0.08794671907290819],[125,114,68,0.0894747142611737],[125,114,69,0.09105111950903205],[125,114,70,0.09267636260845058],[125,114,71,0.09435079842584909],[125,114,72,0.09607470641007398],[125,114,73,0.0978482880728872],[125,114,74,0.09967166444211584],[125,114,75,0.1015448734872701],[125,114,76,0.10346786751776882],[125,114,77,0.10544051055372616],[125,114,78,0.10746257566929385],[125,114,79,0.10953374230858631],[125,115,64,0.07649276234946994],[125,115,65,0.07788461951235809],[125,115,66,0.0793248789069323],[125,115,67,0.08081414917226282],[125,115,68,0.08235297208730807],[125,115,69,0.08394182016895368],[125,115,70,0.08558109424322241],[125,115,71,0.08727112098959533],[125,115,72,0.08901215045847033],[125,115,73,0.09080435356169453],[125,115,74,0.09264781953632079],[125,115,75,0.09454255338139195],[125,115,76,0.09648847326789423],[125,115,77,0.09848540792183241],[125,115,78,0.10053309398042165],[125,115,79,0.10263117332142446],[125,116,64,0.0693112237129827],[125,116,65,0.07070831424814372],[125,116,66,0.07215550820514721],[125,116,67,0.07365339101419338],[125,116,68,0.07520247998471336],[125,116,69,0.07680322191082123],[125,116,70,0.07845599065049613],[125,116,71,0.08016108467843192],[125,116,72,0.08191872461258459],[125,116,73,0.08372905071434811],[125,116,74,0.08559212036251596],[125,116,75,0.08750790550082471],[125,116,76,0.08947629005922769],[125,116,77,0.09149706734884594],[125,116,78,0.09356993743059572],[125,116,79,0.09569450445751698],[125,117,64,0.06210737926037957],[125,117,65,0.06350911221995109],[125,117,66,0.064962661310358],[125,117,67,0.06646858880643058],[125,117,68,0.06802738758789167],[125,117,69,0.06963947875183896],[125,117,70,0.07130520919951205],[125,117,71,0.07302484919728153],[125,117,72,0.07479858991188892],[125,117,73,0.07662654091987309],[125,117,74,0.07850872769133271],[125,117,75,0.08044508904782943],[125,117,76,0.08243547459457162],[125,117,77,0.08447964212683401],[125,117,78,0.08657725501060531],[125,117,79,0.088727879537493],[125,118,64,0.05488537688472883],[125,118,65,0.05629117042129622],[125,118,66,0.057750503226434435],[125,118,67,0.05926391448378748],[125,118,68,0.06083187269478274],[125,118,69,0.06245477329776522],[125,118,70,0.06413293626196392],[125,118,71,0.06586660365623553],[125,118,72,0.06765593719260676],[125,118,73,0.0695010157445562],[125,118,74,0.07140183284018148],[125,118,75,0.07335829413006023],[125,118,76,0.07537021482994116],[125,118,77,0.077437317138222],[125,118,78,0.07955922762820755],[125,118,79,0.08173547461517516],[125,119,64,0.04764938789460432],[125,119,65,0.04905866972317552],[125,119,66,0.05052322328626224],[125,119,67,0.05204356475116567],[125,119,68,0.053620138304013576],[125,119,69,0.055253313775167956],[125,119,70,0.05694338424001577],[125,119,71,0.058690563595080125],[125,119,72,0.060494984109482175],[125,119,73,0.06235669395168353],[125,119,74,0.06427565469166857],[125,119,75,0.06625173877836193],[125,119,76,0.06828472699242571],[125,119,77,0.07037430587439164],[125,119,78,0.07252006512811887],[125,119,79,0.0747214949996085],[125,120,64,0.040403604022361095],[125,120,65,0.041815811873758046],[125,120,66,0.043285032143660196],[125,120,67,0.0448117580684983],[125,120,68,0.04639640959365693],[125,120,69,0.048039331004785524],[125,120,70,0.04974078853503744],[125,120,71,0.05150096794817116],[125,120,72,0.053319972097545465],[125,120,73,0.05519781846094013],[125,120,74,0.057134436651359144],[125,120,75,0.05912966590361057],[125,120,76,0.06118325253681273],[125,120,77,0.06329484739277613],[125,120,78,0.06546400325025481],[125,120,79,0.06769017221509932],[125,121,64,0.03315223437609388],[125,121,65,0.03456681644128262],[125,121,66,0.036040158708040615],[125,121,67,0.0375727315779909],[125,121,68,0.03916493084186545],[125,121,69,0.04081707531635426],[125,121,70,0.04252940445741954],[125,121,71,0.04430207595001484],[125,121,72,0.046135163274234114],[125,121,73,0.048028653247828235],[125,121,74,0.049982443545239286],[125,121,75,0.051996340192955404],[125,121,76,0.054070055041328],[125,121,77,0.056203203212803476],[125,121,78,0.05839530052656705],[125,121,79,0.060645760899621814],[125,122,64,0.025899502335101077],[125,122,65,0.02731591769997932],[125,122,66,0.028792847021632484],[125,122,67,0.030330737973484068],[125,122,68,0.03192996228920231],[125,122,69,0.03359081340472475],[125,122,70,0.03531350407728567],[125,122,71,0.037098163981378884],[125,122,72,0.038944837281690736],[125,122,73,0.04085348018292767],[125,122,74,0.04282395845670528],[125,122,75,0.04485604494528639],[125,122,76,0.04694941704231759],[125,122,77,0.04910365415051687],[125,122,78,0.051318235116305844],[125,122,79,0.05359253564141442],[125,123,64,0.018649642388668786],[125,123,65,0.020067361458828537],[125,123,66,0.021547353079080622],[125,123,67,0.023090042311747883],[125,123,68,0.024695776942476155],[125,123,69,0.02636482512708005],[125,123,70,0.02809737301592019],[125,123,71,0.029893522355748492],[125,123,72,0.03175328806904976],[125,123,73,0.03367659581081295],[125,123,74,0.03566327950289094],[125,123,75,0.03771307884573949],[125,123,76,0.039825636807687026],[125,123,77,0.04200049709168374],[125,123,78,0.04423710157952543],[125,123,79,0.04653478775358266],[125,124,64,0.011406896918538245],[125,124,65,0.01282540183352665],[125,124,66,0.014307941589788875],[125,124,67,0.015854918766076476],[125,124,68,0.01746665732045527],[125,124,69,0.0191434002416222],[125,124,70,0.020885307178276857],[125,124,71,0.02269245204648862],[125,124,72,0.02456482061508425],[125,124,73,0.026502308068992564],[125,124,74,0.028504716550698084],[125,124,75,0.030571752679606434],[125,124,76,0.03270302504945932],[125,124,77,0.034898041703758875],[125,124,78,0.037156207589189805],[125,124,79,0.039476821987072586],[125,125,64,0.004175512924882052],[125,125,65,0.00559429796147759],[125,125,66,0.0070788826828281914],[125,125,67,0.008629647322005218],[125,125,68,0.010246892141276831],[125,125,69,0.011930835087549108],[125,125,70,0.013681609426385521],[125,125,71,0.015499261354539606],[125,125,72,0.017383747591029453],[125,125,73,0.019334932946689976],[125,125,74,0.021352587872355056],[125,125,75,0.02343638598546982],[125,125,76,0.025585901575275627],[125,125,77,0.0278006070865231],[125,125,78,0.030079870581704027],[125,125,79,0.032422953181833525],[125,126,64,-0.0030402613044049343],[125,126,65,-0.0016216893403803168],[125,126,66,-1.3555144578225597E-4],[125,126,67,0.0014185104149573302],[125,126,68,0.00304077295135996],[125,126,69,0.004731429206129456],[125,126,70,0.006490586193473313],[125,126,71,0.008318262516452846],[125,126,72,0.010214385963393524],[125,126,73,0.01217879108328035],[125,126,74,0.01421121674030934],[125,126,75,0.016311303647375097],[125,126,76,0.018478591878650752],[125,126,77,0.020712518361210464],[125,126,78,0.02301241434568535],[125,126,79,0.02537750285598761],[125,127,64,-0.01023617958072498],[125,127,65,-0.008818300974539395],[125,127,66,-0.007331089943047653],[125,127,67,-0.0057742104898067526],[125,127,68,-0.004147409303799421],[125,127,69,-0.0024505180967491214],[125,127,70,-6.834559608338564E-4],[125,127,71,0.0011537682531393978],[125,127,72,0.0030610535371287106],[125,127,73,0.005038204306749727],[125,127,74,0.007084927961829246],[125,127,75,0.009200832426409011],[125,127,76,0.011385423668349937],[125,127,77,0.013638103198489127],[125,127,78,0.015958165549339598],[125,127,79,0.018344795733369],[125,128,64,-0.017408001258295225],[125,128,65,-0.015991283018863434],[125,128,66,-0.014503466766407125],[125,128,67,-0.012944238375121153],[125,128,68,-0.011313367767144977],[125,128,69,-0.009610711246748282],[125,128,70,-0.007836213854410579],[125,128,71,-0.005989911740856835],[125,128,72,-0.004071934561020618],[125,128,73,-0.00208250788800457],[125,128,74,-2.19556468747939E-5],[125,128,75,0.002109297431498236],[125,128,76,0.0043107233367050135],[125,128,77,0.006581688285117293],[125,128,78,0.008921450206257564],[125,128,79,0.01132915620925068],[125,129,64,-0.024551494734343593],[125,129,65,-0.023136390239690385],[125,129,66,-0.02164842420876789],[125,129,67,-0.020087304207911494],[125,129,68,-0.018452823216061787],[125,129,69,-0.01674486195613989],[125,129,70,-0.014963391245815916],[125,129,71,-0.013108474367736433],[125,129,72,-0.011180269459180603],[125,129,73,-0.009179031921215497],[125,129,74,-0.007105116847184401],[125,129,75,-0.004958981470746471],[125,129,76,-0.0027411876333096608],[125,129,77,-4.5240427090986746E-4],[125,129,78,0.0019065900794572599],[125,129,79,0.004334904754085045],[125,130,64,-0.03166244100562021],[125,130,65,-0.030249389661729853],[125,130,66,-0.028761716480795174],[125,130,67,-0.027199150532893568],[125,130,68,-0.025561507666508332],[125,130,69,-0.02384869283740343],[125,130,70,-0.022060702456399683],[125,130,71,-0.02019762675611736],[125,130,72,-0.018259652176653818],[125,130,73,-0.016247063770268078],[125,130,74,-0.01416024762490753],[125,130,75,-0.01199969330678885],[125,130,76,-0.00976599632188524],[125,130,77,-0.007459860596361723],[125,130,78,-0.005082100975974835],[125,130,79,-0.0026336457443965067],[125,131,64,-0.038736637281405306],[125,131,65,-0.03732606419493567],[125,131,66,-0.03583911335063972],[125,131,67,-0.03427553512415282],[125,131,68,-0.03263516803545152],[125,131,69,-0.030917941075532918],[125,131,70,-0.029123876051508124],[125,131,71,-0.02725308995017628],[125,131,72,-0.025305797320046453],[125,131,73,-0.023282312671879968],[125,131,74,-0.02118305289758815],[125,131,75,-0.0190085397077],[125,131,76,-0.016759402087244024],[125,131,77,-0.0144363787700994],[125,131,78,-0.012040320731817378],[125,131,79,-0.00957219370088569],[125,132,64,-0.04576990065319497],[125,132,65,-0.04436221631853876],[125,132,66,-0.04287640384128655],[125,132,67,-0.041312234694785954],[125,132,68,-0.03966956986179049],[125,132,69,-0.03794836215923991],[125,132,70,-0.036148658580973936],[125,132,71,-0.03427060265844617],[125,132,72,-0.032314436839405936],[125,132,73,-0.030280504884620973],[125,132,74,-0.0281692542824733],[125,132,75,-0.025981238681646257],[125,132,76,-0.023717120341746112],[125,132,77,-0.021377672601909703],[125,132,78,-0.01896378236740559],[125,132,79,-0.016476452614195503],[125,133,64,-0.05275807182070191],[125,133,65,-0.05135367182187567],[125,133,66,-0.04986939998516193],[125,133,67,-0.04830504866424623],[125,133,68,-0.04666050108540831],[125,133,69,-0.04493573367069048],[125,133,70,-0.043130818378527835],[125,133,71,-0.04124592506190372],[125,133,72,-0.039281323844000626],[125,133,73,-0.0372373875114157],[125,133,74,-0.035114593924778115],[125,133,75,-0.032913528446981366],[125,133,76,-0.03063488638887857],[125,133,77,-0.02827947547248799],[125,133,78,-0.025848218311720017],[125,133,79,-0.023342154910588442],[125,134,64,-0.0596970188743553],[125,134,65,-0.058296283602193966],[125,134,66,-0.05681394063617862],[125,134,67,-0.05524980298357107],[125,134,68,-0.05360377588453069],[125,134,69,-0.05187585913395498],[125,134,70,-0.05006614942031162],[125,134,71,-0.04817484268153138],[125,134,72,-0.04620223647792532],[125,134,73,-0.044148732382204514],[125,134,74,-0.04201483838642972],[125,134,75,-0.039801171326111495],[125,134,76,-0.03750845932130509],[125,134,77,-0.03513754423474835],[125,134,78,-0.03268938414705391],[125,134,79,-0.030165055848918598],[125,135,64,-0.0665826411344752],[125,135,65,-0.06518593551961549],[125,135,66,-0.06370589533940152],[125,135,67,-0.06214235401866974],[125,135,68,-0.060495238571570464],[125,135,69,-0.05876457192235207],[125,135,70,-0.056950475242675935],[125,135,71,-0.055053170305530696],[125,135,72,-0.053072981855712076],[125,135,73,-0.051010339996943266],[125,135,74,-0.04886578259546548],[125,135,75,-0.04663995770031881],[125,135,76,-0.044333625980155666],[125,135,77,-0.041947663176640115],[125,135,78,-0.03948306257443679],[125,135,79,-0.03694093748775995],[125,136,64,-0.07341087304676408],[125,136,65,-0.07201854630889426],[125,136,66,-0.07054116825796797],[125,136,67,-0.06897859249131266],[125,136,68,-0.06733076754709755],[125,136,69,-0.06559773922432388],[125,136,70,-0.0637796529188942],[125,136,71,-0.06187675597582709],[125,136,72,-0.05988940005758381],[125,136,73,-0.05781804352858311],[125,136,74,-0.05566325385572923],[125,136,75,-0.05342571002518026],[125,136,76,-0.05110620497519491],[125,136,77,-0.04870564804510935],[125,136,78,-0.04622506744045274],[125,136,79,-0.04366561271416769],[125,137,64,-0.08017768813429782],[125,137,65,-0.07879007354815848],[125,137,66,-0.07731570215745587],[125,137,67,-0.07575444747801086],[125,137,68,-0.07410627931212455],[125,137,69,-0.0723712660680319],[125,137,70,-0.07054957709498766],[125,137,71,-0.06864148503405187],[125,137,72,-0.06664736818454053],[125,137,73,-0.06456771288621654],[125,137,74,-0.062403115917050944],[125,137,75,-0.06015428690677349],[125,137,76,-0.05782205076605951],[125,137,77,-0.05540735013139597],[125,137,78,-0.052911247825644936],[125,137,79,-0.050334929334259204],[125,138,64,-0.0868791030061884],[125,138,65,-0.08549651768479904],[125,138,66,-0.08402548244785923],[125,138,67,-0.08246589046694452],[125,138,68,-0.0808177325388667],[125,138,69,-0.07908109940483687],[125,138,70,-0.0772561840848236],[125,138,71,-0.07534328422717051],[125,138,72,-0.07334280447343877],[125,138,73,-0.07125525883855222],[125,138,74,-0.06908127310607282],[125,138,75,-0.06682158723882659],[125,138,76,-0.06447705780472457],[125,138,77,-0.06204866041782764],[125,138,78,-0.0595374921946652],[125,138,79,-0.05694477422577038],[125,139,64,-0.09351118142254766],[125,139,65,-0.09213392611814297],[125,139,66,-0.09066654128281026],[125,139,67,-0.08910893947258403],[125,139,68,-0.08746113219961793],[125,139,69,-0.08572323225129885],[125,139,70,-0.08389545602412074],[125,139,71,-0.0819781258723864],[125,139,72,-0.07997167247170511],[125,139,73,-0.07787663719735793],[125,139,74,-0.07569367451736186],[125,139,75,-0.07342355440045423],[125,139,76,-0.07106716473883934],[125,139,77,-0.06862551378574644],[125,139,78,-0.06609973260780988],[125,139,79,-0.06349107755223526],[125,140,64,-0.10007003841606421],[125,140,65,-0.09869839733922114],[125,140,66,-0.09723496171635848],[125,140,67,-0.09567966320830779],[125,140,68,-0.09403253375405063],[125,140,69,-0.09229370789000935],[125,140,70,-0.09046342508367466],[125,140,71,-0.08854203208163813],[125,140,72,-0.08652998527199296],[125,140,73,-0.08442785306118172],[125,140,74,-0.08223631826511524],[125,140,75,-0.07995618051478992],[125,140,76,-0.07758835867624081],[125,140,77,-0.07513389328488262],[125,140,78,-0.07259394899424976],[125,140,79,-0.0699698170390941],[125,141,64,-0.10655184446996457],[125,141,65,-0.1051860851273978],[125,141,66,-0.10372688191707158],[125,141,67,-0.10217418531679001],[125,141,68,-0.10052804739470822],[125,141,69,-0.09878862412902023],[125,141,70,-0.09695617774157095],[125,141,71,-0.0950310790454505],[125,141,72,-0.09301380980654539],[125,141,73,-0.0909049651191155],[125,141,74,-0.08870525579522992],[125,141,75,-0.08641551076827936],[125,141,76,-0.0840366795104126],[125,141,77,-0.08156983446393962],[125,141,78,-0.07901617348672085],[125,141,79,-0.07637702231149557],[125,142,64,-0.11295282975265841],[125,142,65,-0.11159320280416563],[125,142,66,-0.11013849943976628],[125,142,67,-0.10858868865845739],[125,142,68,-0.10694384235099164],[125,142,69,-0.10520413762017766],[125,142,70,-0.10336985911468888],[125,142,71,-0.10144140137645119],[125,142,72,-0.09941927120157612],[125,142,73,-0.09730409001491036],[125,142,74,-0.09509659625803635],[125,142,75,-0.09279764779094024],[125,142,76,-0.0904082243071932],[125,142,77,-0.08792942976269424],[125,142,78,-0.08536249481798486],[125,142,79,-0.08270877929409859],[125,143,64,-0.11926928840870976],[125,143,65,-0.11791602754374808],[125,143,66,-0.11646607555450583],[125,143,67,-0.11491941965765629],[125,143,68,-0.11327615125128465],[125,143,69,-0.11153646823599617],[125,143,70,-0.10970067734913591],[125,143,71,-0.10776919651218553],[125,143,72,-0.10574255719130243],[125,143,73,-0.103621406771078],[125,143,74,-0.10140651094134023],[125,143,75,-0.09909875609722807],[125,143,76,-0.09669915175237553],[125,143,77,-0.09420883296525462],[125,143,78,-0.09162906277869198],[125,143,79,-0.08896123467251749],[125,144,64,-0.12549758290631008],[125,144,65,-0.12415090474068435],[125,144,66,-0.12270593963304244],[125,144,67,-0.12116269270671232],[125,144,68,-0.11952127454339045],[125,144,69,-0.11778190350525419],[125,144,70,-0.11594490806979074],[125,144,71,-0.11401072917741095],[125,144,72,-0.11197992259181067],[125,144,73,-0.10985316127316103],[125,144,74,-0.107631237763948],[125,144,75,-0.10531506658768952],[125,144,76,-0.10290568666037203],[125,144,77,-0.1004042637146505],[125,144,78,-0.09781209273682967],[125,144,79,-0.09513060041658394],[125,145,64,-0.13163414844140886],[125,145,65,-0.1302942524345485],[125,145,66,-0.1288544935928576],[125,145,67,-0.12731489462802492],[125,145,68,-0.1256755849734339],[125,145,69,-0.1239368031074618],[125,145,70,-0.12209889888910741],[125,145,71,-0.12016233590602254],[125,145,72,-0.11812769383490207],[125,145,73,-0.11599567081431927],[125,145,74,-0.11376708582982586],[125,145,75,-0.11144288111154599],[125,145,76,-0.10902412454409949],[125,145,77,-0.10651201208891048],[125,145,78,-0.10390787021890657],[125,145,79,-0.10121315836557443],[125,146,64,-0.13767549739817897],[125,146,65,-0.13634256579148762],[125,146,66,-0.13490821639848072],[125,146,67,-0.1333724891938881],[125,146,68,-0.13173553212291156],[125,146,69,-0.12999760342587952],[125,146,70,-0.12815907397486004],[125,146,71,-0.12622042962229252],[125,146,72,-0.12418227356160816],[125,146,73,-0.1220453286999168],[125,146,74,-0.11981044004257912],[125,146,75,-0.11747857708989817],[125,146,76,-0.11505083624576395],[125,146,77,-0.11252844323830491],[125,146,78,-0.10991275555255386],[125,146,79,-0.10720526487509308],[125,147,64,-0.14361822386597944],[125,147,65,-0.14229242164273814],[125,147,66,-0.14086366862024857],[125,147,67,-0.13933202170419412],[125,147,68,-0.13769764700404918],[125,147,69,-0.13596082215925676],[125,147,70,-0.13412193867699185],[125,147,71,-0.13218150428157927],[125,147,72,-0.13014014527552975],[125,147,73,-0.12799860891227288],[125,147,74,-0.1257577657804091],[125,147,75,-0.12341861219971073],[125,147,76,-0.12098227262870964],[125,147,77,-0.11845000208391832],[125,147,78,-0.1158231885707044],[125,147,79,-0.11310335552576911],[125,148,64,-0.14945900821297287],[125,148,65,-0.14814048308027306],[125,148,66,-0.14671749705065829],[125,148,67,-0.14519012362217265],[125,148,68,-0.1435585467136241],[125,148,69,-0.14182306299243508],[125,148,70,-0.139984084213723],[125,148,71,-0.13804213957067024],[125,148,72,-0.13599787805615637],[125,148,73,-0.1338520708357226],[125,148,74,-0.1316056136317011],[125,148,75,-0.1292595291187273],[125,148,76,-0.12681496933048164],[125,148,77,-0.1242732180777053],[125,148,78,-0.12163569337750657],[125,148,79,-0.11890394989391395],[125,149,64,-0.15519462171608522],[125,149,65,-0.15388350410927487],[125,149,66,-0.15246643937800652],[125,149,67,-0.15094351726786148],[125,149,68,-0.14931493914493665],[125,149,69,-0.14758102032551346],[125,149,70,-0.1457421924166047],[125,149,71,-0.14379900566743953],[125,149,72,-0.14175213133185816],[125,149,73,-0.13960236404169013],[125,149,74,-0.13735062419094013],[125,149,75,-0.1349979603310102],[125,149,76,-0.13254555157679826],[125,149,77,-0.12999471002371854],[125,149,78,-0.12734688317566],[125,149,79,-0.12460365638384108],[125,150,64,-0.16082193124745736],[125,150,65,-0.15951833435758156],[125,150,66,-0.15810732891746482],[125,150,67,-0.156589020569455],[125,150,68,-0.15496362775809136],[125,150,69,-0.15323148406172515],[125,150,70,-0.15139304053467462],[125,150,71,-0.14944886805997637],[125,150,72,-0.14739965971270164],[125,150,73,-0.14524623313391583],[125,150,74,-0.1429895329150973],[125,150,75,-0.14063063299325607],[125,150,76,-0.13817073905658028],[125,150,77,-0.13561119096066332],[125,150,78,-0.13295346515532735],[125,150,79,-0.13019917712199702],[125,151,64,-0.16633790401755333],[125,151,65,-0.16504192384226635],[125,151,66,-0.16363709939974913],[125,151,67,-0.16212355187269156],[125,151,68,-0.16050151640873778],[125,151,69,-0.1587713444541834],[125,151,70,-0.1569335060978695],[125,151,71,-0.15498859242534302],[125,151,72,-0.1529373178832435],[125,151,73,-0.15078052265399933],[125,151,74,-0.14851917504065337],[125,151,75,-0.14615437386204566],[125,151,76,-0.14368735085819695],[125,151,77,-0.14111947310593387],[125,151,78,-0.13845224544477852],[125,151,79,-0.13568731291305214],[125,152,64,-0.17173961237460433],[125,152,65,-0.17045132779303662],[125,152,66,-0.1690527898170714],[125,152,67,-0.16754413480796482],[125,152,68,-0.16592561423496166],[125,152,69,-0.16419759701118297],[125,152,70,-0.16236057183938302],[125,152,71,-0.16041514956764757],[125,152,72,-0.15836206555499266],[125,152,73,-0.1562021820469477],[125,152,74,-0.15393649056093928],[125,152,75,-0.15156611428171163],[125,152,76,-0.14909231046661586],[125,152,77,-0.14651647286082015],[125,152,78,-0.14384013412245544],[125,152,79,-0.14106496825765025],[125,153,64,-0.1770242386605636],[125,153,65,-0.17574371153262236],[125,153,66,-0.1743515493265423],[125,153,67,-0.17284790321533028],[125,153,68,-0.17123304060249556],[125,153,69,-0.16950734746022889],[125,153,70,-0.16767133067713758],[125,153,71,-0.16572562041560102],[125,153,72,-0.16367097247871376],[125,153,73,-0.16150827068689222],[125,153,74,-0.1592385292639682],[125,153,75,-0.15686289523299723],[125,153,76,-0.15438265082162572],[125,153,77,-0.15179921587705503],[125,153,78,-0.14911415029062725],[125,153,79,-0.1463291564319842],[125,154,64,-0.18218908012368962],[125,154,65,-0.18091635541427398],[125,154,66,-0.1795306422111439],[125,154,67,-0.17803210612752607],[125,154,68,-0.17642103010836874],[125,154,69,-0.1746978167709098],[125,154,70,-0.1728629907544892],[125,154,71,-0.17091720107967767],[125,154,72,-0.16886122351668076],[125,154,73,-0.1666959629631004],[125,154,74,-0.1644224558308751],[125,154,75,-0.1620418724426258],[125,154,76,-0.15955551943725177],[125,154,77,-0.15696484218481777],[125,154,78,-0.15427142721075116],[125,154,79,-0.15147700462930636],[125,155,64,-0.18723155388749047],[125,155,65,-0.18596665981610128],[125,155,66,-0.18458745289800804],[125,155,67,-0.18309411281074006],[125,155,68,-0.18148693764272938],[125,155,69,-0.1797663462363499],[125,155,70,-0.1779328805399023],[125,155,71,-0.1759872079686161],[125,155,72,-0.17393012377462658],[125,155,73,-0.17176255342601066],[125,155,74,-0.16948555499470164],[125,155,75,-0.16710032155351062],[125,155,76,-0.16460818358209728],[125,155,77,-0.16201061138193418],[125,155,78,-0.15930921750028038],[125,155,79,-0.1565057591631236],[125,156,64,-0.19214920197616703],[125,156,65,-0.19089215019239214],[125,156,66,-0.18951949103413213],[125,156,67,-0.1880314178632605],[125,156,68,-0.18642824350897347],[125,156,69,-0.18471040261337657],[125,156,70,-0.18287845398572522],[125,156,71,-0.18093308296539123],[125,156,72,-0.178875103793516],[125,156,73,-0.17670546199342896],[125,156,74,-0.17442523675965604],[125,156,75,-0.1720356433557445],[125,156,76,-0.16953803552074587],[125,156,77,-0.16693390788440154],[125,156,78,-0.1642248983910487],[125,156,79,-0.16141279073220105],[125,157,64,-0.19693969639668407],[125,157,65,-0.19569048218203822],[125,157,66,-0.19432439661966883],[125,157,67,-0.19284164637214185],[125,157,68,-0.19124255860231487],[125,157,69,-0.18952758332153263],[125,157,70,-0.1876972957461993],[125,157,71,-0.18575239866279125],[125,157,72,-0.18369372480127655],[125,157,73,-0.18152223921701816],[125,157,74,-0.1792390416809856],[125,157,75,-0.17684536907850046],[125,157,76,-0.17434259781635897],[125,157,77,-0.1717322462383748],[125,157,78,-0.16901597704936144],[125,157,79,-0.16619559974750797],[125,158,64,-0.20160084427720193],[125,158,65,-0.20035944677380402],[125,158,66,-0.19899994519851583],[125,158,67,-0.19752255912761618],[125,158,68,-0.19592762964652544],[125,158,69,-0.1942156217006683],[125,158,70,-0.19238712645443867],[125,158,71,-0.19044286365833263],[125,158,72,-0.18838368402421768],[125,158,73,-0.18621057160880983],[125,158,74,-0.18392464620518845],[125,158,75,-0.18152716574257188],[125,158,76,-0.17901952869419568],[125,158,77,-0.17640327649334242],[125,158,78,-0.1736800959575332],[125,158,79,-0.17085182172084346],[125,159,64,-0.2061305930620232],[125,159,65,-0.20489697552858865],[125,159,66,-0.20354405310636314],[125,159,67,-0.20207205789540172],[125,159,68,-0.20048134448899824],[125,159,69,-0.1987723923272604],[125,159,70,-0.19694580805852235],[125,159,71,-0.1950023279086629],[125,159,72,-0.19294282005829344],[125,159,73,-0.1907682870278946],[125,159,74,-0.1884798680707207],[125,159,75,-0.18607884157370702],[125,159,76,-0.18356662746621222],[125,159,77,-0.1809447896366494],[125,159,78,-0.17821503835701624],[125,159,79,-0.17537923271528355],[125,160,64,-0.21052703576313492],[125,160,65,-0.20930114585876514],[125,160,66,-0.20795478277627988],[125,160,67,-0.2064881907469982],[125,160,68,-0.20490173745422025],[125,160,69,-0.2031959163895486],[125,160,70,-0.201371349216795],[125,160,71,-0.19942878814353704],[125,160,72,-0.19736911830028991],[125,160,73,-0.19519336012737143],[125,160,74,-0.1929026717692811],[125,160,75,-0.1904983514768238],[125,160,76,-0.1879818400168206],[125,160,77,-0.18535472308944423],[125,160,78,-0.18261873375320692],[125,160,79,-0.1797757548575475],[125,161,64,-0.21478841626814715],[125,161,65,-0.21357018636439518],[125,161,66,-0.21223034810163655],[125,161,67,-0.21076915744775981],[125,161,68,-0.20918699475545],[125,161,69,-0.20748436712128304],[125,161,70,-0.20566191075216367],[125,161,71,-0.20372039333916447],[125,161,72,-0.2016607164387353],[125,161,73,-0.19948391786135744],[125,161,74,-0.197191174067472],[125,161,75,-0.19478380257090055],[125,161,76,-0.19226326434960928],[125,161,77,-0.18963116626385446],[125,161,78,-0.1868892634817293],[125,161,79,-0.18403946191206877],[125,162,64,-0.21891313470471974],[125,162,65,-0.21770248222641442],[125,162,66,-0.21636911985646057],[125,162,67,-0.2149133149028426],[125,162,68,-0.21333545996469183],[125,162,69,-0.2116360752941766],[125,162,70,-0.2098158111654923],[125,162,71,-0.20787545025102272],[125,162,72,-0.2058159100046273],[125,162,73,-0.20363824505214567],[125,162,74,-0.20134364958892836],[125,162,75,-0.1989334597846315],[125,162,76,-0.19640915619511423],[125,162,77,-0.19377236618148097],[125,162,78,-0.19102486633628746],[125,162,79,-0.18816858491686916],[125,163,64,-0.22289975286159935],[125,163,65,-0.221696580656907],[125,163,66,-0.22036963117334307],[125,163,67,-0.21891918266114774],[125,163,68,-0.21734563954109554],[125,163,69,-0.21564953476918614],[125,163,70,-0.21383153220821016],[125,163,71,-0.21189242900625282],[125,163,72,-0.20983315798210278],[125,163,73,-0.20765479001764198],[125,163,74,-0.20535853645703983],[125,163,75,-0.20294575151298078],[125,163,76,-0.2004179346797661],[125,163,77,-0.19777673315333233],[125,163,78,-0.19502394425820857],[125,163,79,-0.19216151788136293],[125,164,64,-0.22674699966603318],[125,164,65,-0.2255511964062361],[125,164,66,-0.22423058307866384],[125,164,67,-0.22278544847702875],[125,164,68,-0.2212162084175383],[125,164,69,-0.21952340810638604],[125,164,70,-0.2177077245139003],[125,164,71,-0.21576996875541177],[125,164,72,-0.21371108847880604],[125,164,73,-0.2115321702588373],[125,164,74,-0.2092344419980292],[125,164,75,-0.20681927533438926],[125,164,76,-0.20428818805577575],[125,164,77,-0.20164284652096598],[125,164,78,-0.198885068087442],[125,164,79,-0.19601682354584538],[125,165,64,-0.23045377671774625],[125,165,65,-0.22926521732722072],[125,165,66,-0.22795085008532245],[125,165,67,-0.2265109739299448],[125,165,68,-0.22494601564558359],[125,165,69,-0.22325653223362185],[125,165,70,-0.22144321328906114],[125,165,71,-0.21950688338376145],[125,165,72,-0.2174485044561537],[125,165,73,-0.2152691782075078],[125,165,74,-0.21297014850457396],[125,165,75,-0.2105528037888259],[125,165,76,-0.20801867949215058],[125,165,77,-0.20536946045902615],[125,165,78,-0.20260698337520577],[125,165,79,-0.19973323920286357],[125,166,64,-0.2340191638793574],[125,166,65,-0.23283770999623077],[125,166,66,-0.23152948584285138],[125,166,67,-0.23009480010193895],[125,166,68,-0.2285340900986863],[125,166,69,-0.22684792417382116],[125,166,70,-0.22503700406290972],[125,166,71,-0.2231021672819723],[125,166,72,-0.2210443895193649],[125,166,73,-0.2188647870340188],[125,166,74,-0.2165646190598478],[125,166,75,-0.2141452902165597],[125,166,76,-0.21160835292671132],[125,166,77,-0.20895550983904743],[125,166,78,-0.20618861625814955],[125,166,79,-0.20330968258033977],[125,167,64,-0.23744242492338774],[125,167,65,-0.23626792539135344],[125,167,66,-0.23496572884506217],[125,167,67,-0.23353615331309674],[125,167,68,-0.2319796462338054],[125,167,69,-0.23029678683111254],[125,167,70,-0.22848828849638225],[125,167,71,-0.22655500117639693],[125,167,72,-0.22449791376741413],[125,167,73,-0.22231815651538245],[125,167,74,-0.22001700342213726],[125,167,75,-0.2175958746578066],[125,167,76,-0.21505633897926546],[125,167,77,-0.21240011615468435],[125,167,78,-0.20962907939419162],[125,167,79,-0.20674525778660158],[125,168,64,-0.24072301323567846],[125,168,65,-0.23955530462745167],[125,168,66,-0.23825900819504386],[125,168,67,-0.23683445091479693],[125,168,68,-0.23528208991123079],[125,168,69,-0.23360251483557193],[125,168,70,-0.23179645025015017],[125,168,71,-0.2298647580187272],[125,168,72,-0.2278084397027179],[125,168,73,-0.22562863896338758],[125,168,74,-0.22332664396984603],[125,168,75,-0.22090388981306364],[125,168,76,-0.21836196092575644],[125,168,77,-0.21570259350817844],[125,168,78,-0.2129276779598448],[125,168,79,-0.21003926131713546],[125,169,64,-0.24386057757530688],[125,169,65,-0.24269948474819947],[125,169,66,-0.24140894942760116],[125,169,67,-0.23998930714084554],[125,169,68,-0.23844102427272174],[125,169,69,-0.2367647004466824],[125,169,70,-0.23496107091174123],[125,169,71,-0.23303100893512607],[125,169,72,-0.23097552820065215],[125,169,73,-0.22879578521289434],[125,169,74,-0.22649308170697824],[125,169,75,-0.2240688670642228],[125,169,76,-0.22152474073347106],[125,169,77,-0.218862454658157],[125,169,78,-0.21608391570912466],[125,169,79,-0.21319118812315296],[125,170,64,-0.24685496789108663],[125,170,65,-0.2457003045751821],[125,170,66,-0.24441538038922084],[125,170,67,-0.24300053901658236],[125,170,68,-0.2414562556780403],[125,170,69,-0.23978313951559782],[125,170,70,-0.23798193598184736],[125,170,71,-0.23605352923491885],[125,170,72,-0.2339989445389803],[125,170,73,-0.23181935067037185],[125,170,74,-0.22951606232918864],[125,170,75,-0.22709054255655226],[125,170,76,-0.22454440515739982],[125,170,77,-0.22187941712884418],[125,170,78,-0.21909750109411785],[125,170,79,-0.21620073774205795],[125,171,64,-0.24970624119446927],[125,171,65,-0.2485578106138795],[125,171,66,-0.24727833717537906],[125,171,67,-0.24586817232577263],[125,171,68,-0.24432779969969554],[125,171,69,-0.2426578375060221],[125,171,70,-0.2408590409196416],[125,171,71,-0.23893230447866265],[125,171,72,-0.2368786644870119],[125,171,73,-0.2346993014225045],[125,171,74,-0.23239554235021365],[125,171,75,-0.22996886334135835],[125,171,76,-0.22742089189755976],[125,171,77,-0.22475340938050448],[125,171,78,-0.22196835344703625],[125,171,79,-0.21906782048962736],[125,172,64,-0.25241466748896235],[125,172,65,-0.2512722630166434],[125,172,66,-0.2499980701253086],[125,172,67,-0.24859244763539923],[125,172,68,-0.2470558871760128],[125,172,69,-0.24538901557382264],[125,172,70,-0.24359259724721594],[125,172,71,-0.24166753660570783],[125,172,72,-0.2396148804546021],[125,172,73,-0.2374358204049739],[125,172,74,-0.23513169528879685],[125,172,75,-0.23270399357944238],[125,172,76,-0.23015435581739718],[125,172,77,-0.22748457704123415],[125,172,78,-0.22469660922386525],[125,172,79,-0.2217925637140219],[125,173,64,-0.254980735756105],[125,173,65,-0.25384414160271607],[125,173,66,-0.25257504987426616],[125,173,67,-0.2511738263784006],[125,173,68,-0.2496409703225746],[125,173,69,-0.24797711670542055],[125,173,70,-0.2461830387131818],[125,173,71,-0.24425965012129125],[125,173,72,-0.24220800770104578],[125,173,73,-0.24002931363146673],[125,173,74,-0.2377249179161588],[125,173,75,-0.23529632080540175],[125,173,76,-0.2327451752233155],[125,173,77,-0.23007328920014036],[125,173,78,-0.22728262830965384],[125,173,79,-0.22437531811167322],[125,174,64,-0.25740515999787195],[125,174,65,-0.2562741519351551],[125,174,66,-0.25500997346317045],[125,174,67,-0.2536129969942206],[125,174,68,-0.2520837289018989],[125,174,69,-0.2504228119148224],[125,174,70,-0.24863102751530564],[125,174,71,-0.24670929834303568],[125,174,72,-0.24465869060371892],[125,174,73,-0.2424804164827694],[125,174,74,-0.24017583656387098],[125,174,75,-0.2377464622526344],[125,174,76,-0.2351939582051923],[125,174,77,-0.2325201447617785],[125,174,78,-0.2297270003853079],[125,174,79,-0.22681666410491064],[125,175,64,-0.2596888853355773],[125,175,65,-0.2585632314547386],[125,175,66,-0.25730377050567965],[125,175,67,-0.2559108811272449],[125,175,68,-0.2543850764514236],[125,175,69,-0.2527270064993714],[125,175,70,-0.25093746058224675],[125,175,71,-0.2490173697069249],[125,175,72,-0.24696780898655302],[125,175,73,-0.24479000005602702],[125,175,74,-0.24248531349221036],[125,175,75,-0.24005527123912684],[125,175,76,-0.2375015490379614],[125,175,77,-0.23482597886192114],[125,175,78,-0.23203055135597184],[125,175,79,-0.2291174182814012],[125,176,64,-0.2618330941653376],[125,176,65,-0.260712555670913],[125,176,66,-0.25945760941277507],[125,176,67,-0.25806863988318174],[125,176,68,-0.25654616656986806],[125,176,69,-0.2548908463542746],[125,176,70,-0.25310347591446525],[125,176,71,-0.25118499413281226],[125,176,72,-0.24913648450839887],[125,176,73,-0.2469591775742288],[125,176,74,-0.2446544533190591],[125,176,75,-0.2422238436140841],[125,176,76,-0.2396690346443192],[125,176,77,-0.2369918693447164],[125,176,78,-0.23419434984104348],[125,176,79,-0.23127863989546915],[125,177,64,-0.263839212369969],[125,177,65,-0.2627235444096502],[125,177,66,-0.2614729036747151],[125,177,67,-0.2600876801432591],[125,177,68,-0.2585683992618326],[125,177,69,-0.2569157243457795],[125,177,70,-0.25513045898416253],[125,177,71,-0.2532135494493386],[125,177,72,-0.2511660871111463],[125,177,73,-0.2489893108557848],[125,177,74,-0.24668460950920978],[125,177,75,-0.24425352426526936],[125,177,76,-0.24169775111842717],[125,177,77,-0.23901914330110996],[125,177,78,-0.23621971372570483],[125,177,79,-0.2333016374311564],[125,178,64,-0.2657089155873814],[125,178,65,-0.2645978681182858],[125,178,66,-0.2633513182004331],[125,178,67,-0.26196966093631147],[125,178,68,-0.26045342734070787],[125,178,69,-0.25880328674306574],[125,178,70,-0.25702004919432875],[125,178,71,-0.25510466787832675],[125,178,72,-0.2530582415276762],[125,178,73,-0.2508820168442659],[125,178,74,-0.24857739092415776],[125,178,75,-0.24614591368712602],[125,178,76,-0.24358929031067722],[125,178,77,-0.2409093836685957],[125,178,78,-0.23810821677403404],[125,178,79,-0.23518797522709967],[125,179,64,-0.26744413553553414],[125,179,65,-0.2663374542273993],[125,179,66,-0.26509477571443796],[125,179,67,-0.2637164998688064],[125,179,68,-0.2622031628899567],[125,179,69,-0.26055543970891715],[125,179,70,-0.2587741463969577],[125,179,71,-0.2568602425787101],[125,179,72,-0.25481483384969894],[125,179,73,-0.2526391741983699],[125,179,74,-0.25033466843243135],[125,179,75,-0.24790287460974159],[125,179,76,-0.24534550647358233],[125,179,77,-0.24266443589235953],[125,179,78,-0.23986169530375656],[125,179,79,-0.23693948016328403],[125,180,64,-0.26904706639381426],[125,180,65,-0.2679444935695957],[125,180,66,-0.26670546321107713],[125,180,67,-0.26533037961268224],[125,180,68,-0.2638197837826285],[125,180,69,-0.2621743558490285],[125,180,70,-0.2603949174702863],[125,180,71,-0.25848243424985895],[125,180,72,-0.25643801815534417],[125,180,73,-0.2542629299419714],[125,180,74,-0.251958581580324],[125,180,75,-0.24952653868851282],[125,180,76,-0.24696852296865246],[125,180,77,-0.2442864146476733],[125,180,78,-0.2414822549224983],[125,180,79,-0.23855824840953044],[125,181,64,-0.2705201712409332],[125,181,65,-0.269421446855285],[125,181,66,-0.26818583846626376],[125,181,67,-0.26681375445109146],[125,181,68,-0.26530574025920206],[125,181,69,-0.2636624808200534],[125,181,70,-0.2618848029551599],[125,181,71,-0.2599736777944045],[125,181,72,-0.257930223196597],[125,181,73,-0.25575570617435384],[125,181,74,-0.25345154532312864],[125,181,75,-0.25101931325461324],[125,181,76,-0.24846073903435595],[125,181,77,-0.2457777106236405],[125,181,78,-0.2429722773256423],[125,181,79,-0.24004665223581823],[125,182,64,-0.2718661885493624],[125,182,65,-0.2707710512054845],[125,182,66,-0.26953863660667976],[125,182,67,-0.26816935688206345],[125,182,68,-0.26666376156377514],[125,182,69,-0.2650225399964026],[125,182,70,-0.26324652375054236],[125,182,71,-0.2613366890405746],[125,182,72,-0.2592941591466018],[125,182,73,-0.25712020684064185],[125,182,74,-0.2548162568168886],[125,182,75,-0.2523838881262759],[125,182,76,-0.24982483661518018],[125,182,77,-0.2471409973683103],[125,182,78,-0.24433442715580023],[125,182,79,-0.24140734688445953],[125,183,64,-0.2730881387362025],[125,183,65,-0.27199632674153207],[125,183,66,-0.27076687673636235],[125,183,67,-0.2694002042799919],[125,183,68,-0.26789686263850565],[125,183,69,-0.26625754519569766],[125,183,70,-0.2644830878680644],[125,183,71,-0.26257447152393976],[125,183,72,-0.26053282440673153],[125,183,73,-0.25835942456233707],[125,183,74,-0.2560557022705674],[125,183,75,-0.25362324248079704],[125,183,76,-0.2510637872516932],[125,183,77,-0.24837923819505625],[125,183,78,-0.2455716589238015],[125,183,79,-0.2426432775040268],[125,184,64,-0.27418933077058705],[125,184,65,-0.2731005832318144],[125,184,66,-0.2718738686207596],[125,184,67,-0.27050960561503856],[125,184,68,-0.26900835087638786],[125,184,69,-0.26737080146297265],[125,184,70,-0.26559779724571064],[125,184,71,-0.26369032332867026],[125,184,72,-0.26164951247351087],[125,184,73,-0.2594766475280428],[125,184,74,-0.25717316385872735],[125,184,75,-0.2547406517873496],[125,184,76,-0.2521808590317015],[125,184,77,-0.2494956931503186],[125,184,78,-0.24668722399129472],[125,184,79,-0.2437576861451205],[125,185,64,-0.2751733688375768],[125,185,65,-0.2740874267954675],[125,185,66,-0.27286321942822145],[125,185,67,-0.2715011682304136],[125,185,68,-0.27000183293233604],[125,185,69,-0.26836591391358466],[125,185,70,-0.26659425462060526],[125,185,71,-0.2646878439882575],[125,185,72,-0.26264781886536903],[125,185,73,-0.2604754664443475],[125,185,74,-0.2581722266946844],[125,185,75,-0.2557396948005698],[125,185,76,-0.25317962360246404],[125,185,77,-0.2504939260426702],[125,185,78,-0.2476846776149223],[125,185,79,-0.24475411881795017],[125,186,64,-0.2760441590585513],[125,186,65,-0.27496076666305624],[125,186,66,-0.27373884052893416],[125,186,67,-0.2723788046775404],[125,186,68,-0.2708812215925751],[125,186,69,-0.26924679463484],[125,186,70,-0.2674763704608988],[125,186,71,-0.2655709414457128],[125,186,72,-0.2635316481092108],[125,186,73,-0.2613597815468707],[125,186,74,-0.2590567858641407],[125,186,75,-0.2566242606149237],[125,186,76,-0.2540639632439682],[125,186,77,-0.25137781153320826],[125,186,78,-0.24856788605207414],[125,186,79,-0.24563643261172396],[125,187,64,-0.27680591626807893],[125,187,65,-0.2757248219942071],[125,187,66,-0.2745049543512684],[125,187,67,-0.273146739609082],[125,187,68,-0.27165074270231804],[125,187,69,-0.2700176696463118],[125,187,70,-0.2682483699567376],[125,187,71,-0.26634383907321424],[125,187,72,-0.26430522078679786],[125,187,73,-0.2621338096714452],[125,187,74,-0.25983105351927316],[125,187,75,-0.25739855577983106],[125,187,76,-0.2548380780032449],[125,187,77,-0.25215154228725656],[125,187,78,-0.2493410337281966],[125,187,79,-0.24640880287583122],[125,188,64,-0.2774631708473182],[125,188,65,-0.2763841287522584],[125,188,66,-0.2751661012956049],[125,188,67,-0.27380951672988485],[125,188,68,-0.27231494215178453],[125,188,69,-0.27068308591890955],[125,188,70,-0.2689148000703725],[125,188,71,-0.26701108275126506],[125,188,72,-0.26497308064098635],[125,188,73,-0.2628020913854975],[125,188,74,-0.2604995660333349],[125,188,75,-0.2580671114756017],[125,188,76,-0.25550649288978244],[125,188,77,-0.25281963618742664],[125,188,78,-0.2500086304657151],[125,188,79,-0.24707573046286901],[125,189,64,-0.2780207756138846],[125,189,65,-0.2769435466358551],[125,189,66,-0.27572714670556875],[125,189,67,-0.2743720058057766],[125,189,68,-0.27287869292049904],[125,189,69,-0.27124791845263185],[125,189,70,-0.26948053664533744],[125,189,71,-0.2675775480072945],[125,189,72,-0.2655401017417648],[125,189,73,-0.26336949817955635],[125,189,74,-0.26106719121570765],[125,189,75,-0.25863479075011886],[125,189,76,-0.25607406513197106],[125,189,77,-0.25338694360798086],[125,189,78,-0.2505755187745061],[125,189,79,-0.24764204903345488],[125,190,64,-0.2784839127682288],[125,190,65,-0.27740826606753255],[125,190,66,-0.2761932878967136],[125,190,67,-0.2748394097302541],[125,190,68,-0.2733472021799074],[125,190,69,-0.27171737741304247],[125,190,70,-0.2699507915747431],[125,190,71,-0.26804844721373944],[125,190,72,-0.2660114957121241],[125,190,73,-0.263841239718936],[125,190,74,-0.261539135587439],[125,190,75,-0.25910679581631424],[125,190,76,-0.2565459914946169],[125,190,77,-0.25385865475053127],[125,190,78,-0.2510468812039558],[125,190,79,-0.24811293242285815],[125,191,64,-0.2788581008965101],[125,191,65,-0.2777838152392784],[125,191,66,-0.2765700612426466],[125,191,67,-0.27521727164905974],[125,191,68,-0.2737260184543],[125,191,69,-0.2720970153264627],[125,191,70,-0.27033112002867365],[125,191,71,-0.26842933684560477],[125,191,72,-0.2663928190137559],[125,191,73,-0.26422287115557685],[125,191,74,-0.2619209517172594],[125,191,75,-0.25948867541042053],[125,191,76,-0.25692781565752165],[125,191,77,-0.25424030704106615],[125,191,78,-0.2514282477565971],[125,191,79,-0.248493902069445],[125,192,64,-0.2791492020299625],[125,192,65,-0.27807606721506795],[125,192,66,-0.27686334931858547],[125,192,67,-0.2755114821426309],[125,192,68,-0.2740210388400378],[125,192,69,-0.2723927343338741],[125,192,70,-0.2706274277406808],[125,192,71,-0.2687261247974868],[125,192,72,-0.2666899802925712],[125,192,73,-0.2645203005000434],[125,192,74,-0.262218545618074],[125,192,75,-0.2597863322109951],[125,192,76,-0.25722543565511735],[125,192,77,-0.25453779258830334],[125,192,78,-0.2517255033633221],[125,192,79,-0.24879083450493122],[125,193,64,-0.27936342876076325],[125,193,65,-0.27829124709038],[125,193,66,-0.27707938810236277],[125,193,67,-0.27572828646643843],[125,193,68,-0.2742385162830918],[125,193,69,-0.2726107935035369],[125,193,70,-0.27084597835338475],[125,193,71,-0.2689450777600776],[125,193,72,-0.266909247784049],[125,193,73,-0.26473979605368736],[125,193,74,-0.2624381842039335],[125,193,75,-0.2600060303187284],[125,193,76,-0.25744511137716375],[125,193,77,-0.25475736570337093],[125,193,78,-0.25194489542017295],[125,193,79,-0.2490099689064501],[125,194,64,-0.27950735141439165],[125,194,65,-0.27843593920868437],[125,194,66,-0.2772247742328605],[125,194,67,-0.2758742918492002],[125,194,68,-0.27438506691488174],[125,194,69,-0.272757816202317],[125,194,70,-0.2709934008231708],[125,194,71,-0.26909282865613293],[125,194,72,-0.2670572567784024],[125,194,73,-0.26488799390096374],[125,194,74,-0.2625865028074793],[125,194,75,-0.26015440279702406],[125,194,76,-0.2575934721305061],[125,194,77,-0.2549056504808128],[125,194,78,-0.2520930413867073],[125,194,79,-0.24915791471042525],[125,195,64,-0.2795879052784953],[125,195,65,-0.27851709443491957],[125,195,66,-0.2773064723258962],[125,195,67,-0.27595647484899155],[125,195,68,-0.2744676774464354],[125,195,69,-0.27284079752574075],[125,195,70,-0.2710766968840015],[125,195,71,-0.2691763841359278],[125,195,72,-0.2671410171455858],[125,195,73,-0.26497190546191907],[125,195,74,-0.2626705127578758],[125,195,75,-0.2602384592733671],[125,195,76,-0.2576775242619004],[125,195,77,-0.2549896484409312],[125,195,78,-0.2521769364459512],[125,195,79,-0.24924165928826714],[125,196,64,-0.279612397888236],[125,196,65,-0.2785420374859251],[125,196,66,-0.27733182234752707],[125,196,67,-0.2759821887672139],[125,196,68,-0.2744937126208328],[125,196,69,-0.27286711178674095],[125,196,70,-0.2711032485703101],[125,196,71,-0.26920313213216185],[125,196,72,-0.2671679209201011],[125,196,73,-0.2649989251048196],[125,196,74,-0.2626976090192016],[125,196,75,-0.2602655936014495],[125,196,76,-0.25770465884188243],[125,196,77,-0.25501674623343806],[125,196,78,-0.2522039612259094],[125,196,79,-0.2492685756838614],[125,197,64,-0.2795885163681495],[125,197,65,-0.27851847431787435],[125,197,66,-0.2773085470448161],[125,197,67,-0.2759591711204695],[125,197,68,-0.2744709227239811],[125,197,69,-0.2728445200631371],[125,197,70,-0.2710808257990146],[125,197,71,-0.26918084947435983],[125,197,72,-0.26714574994565643],[125,197,73,-0.26497683781896175],[125,197,74,-0.2626755778893377],[125,197,75,-0.26024359158409727],[125,197,76,-0.25768265940971813],[125,197,77,-0.25499472340245366],[125,197,78,-0.2521818895826755],[125,197,79,-0.24924643041288885],[125,198,64,-0.27952433483049244],[125,198,65,-0.2784544995706699],[125,198,66,-0.2772447594340227],[125,198,67,-0.27589555117030495],[125,198,68,-0.2744074511536827],[125,198,69,-0.27278117780381983],[125,198,70,-0.2710175940106271],[125,198,71,-0.26911770956273073],[125,198,72,-0.26708268357963194],[125,198,73,-0.26491382694762733],[125,198,74,-0.2626126047593228],[125,198,75,-0.26018063875695974],[125,198,76,-0.2576197097794014],[125,198,77,-0.25493176021282016],[125,198,78,-0.2521188964451049],[125,198,79,-0.2491833913239434],[125,199,64,-0.27942832183008937],[125,199,65,-0.2783586040693218],[125,199,66,-0.27714897034623587],[125,199,67,-0.2757998575108399],[125,199,68,-0.27431184204701253],[125,199,69,-0.27268564249364957],[125,199,70,-0.27092212186946274],[125,199,71,-0.26902229010150513],[125,199,72,-0.2669873064573782],[125,199,73,-0.26481848198120495],[125,199,74,-0.26251728193318735],[125,199,75,-0.26008532823297936],[125,199,76,-0.25752440190671744],[125,199,77,-0.25483644553774676],[125,199,78,-0.2520235657210703],[125,199,79,-0.24908803552146708],[125,200,64,-0.2793093478756742],[125,200,65,-0.278239682382301],[125,200,66,-0.27703009603044804],[125,200,67,-0.275681025714278],[125,200,68,-0.2741930479660063],[125,200,69,-0.2725668813770703],[125,200,70,-0.2708033890229552],[125,200,71,-0.26890358089174204],[125,200,72,-0.2668686163163382],[125,200,73,-0.26469980641046975],[125,200,74,-0.2623986165082651],[125,200,75,-0.25996666860764317],[125,200,76,-0.2574057438173655],[125,200,77,-0.2547177848077814],[125,200,78,-0.2519048982652936],[125,200,79,-0.24896935735049408],[125,201,64,-0.2791766929977286],[125,201,65,-0.27810704043686796],[125,201,66,-0.27689746581406294],[125,201,67,-0.27554840603430064],[125,201,68,-0.2740604376416499],[125,201,69,-0.2724342792404346],[125,201,70,-0.27067079392006954],[125,201,71,-0.26877099168360985],[125,201,72,-0.2667360318799903],[125,201,73,-0.2645672256400231],[125,201,74,-0.26226603831598283],[125,201,75,-0.2598340919250055],[125,201,76,-0.25727316759614216],[125,201,77,-0.2545852080211074],[125,201,78,-0.2517723199087528],[125,201,79,-0.24883677644320557],[125,202,64,-0.27876522920971025],[125,202,65,-0.27769557420649527],[125,202,66,-0.2764859972120135],[125,202,67,-0.27513693513164306],[125,202,68,-0.2736489645097576],[125,202,69,-0.2720228039508997],[125,202,70,-0.2702593165446101],[125,202,71,-0.26835951229397903],[125,202,72,-0.2663245505478793],[125,202,73,-0.2641557424369634],[125,202,74,-0.2618545533132465],[125,202,75,-0.2594226051935006],[125,202,76,-0.25686167920630654],[125,202,77,-0.25417371804280187],[125,202,78,-0.25136082841114826],[125,202,79,-0.24842528349466908],[125,203,64,-0.2787608003585381],[125,203,65,-0.27769109580851004],[125,203,66,-0.27648147106403076],[125,203,67,-0.2751323630327568],[125,203,68,-0.27364434825935446],[125,203,69,-0.2720181453466255],[125,203,70,-0.2702546173802892],[125,203,71,-0.2683547743574859],[125,203,72,-0.2663197756189606],[125,203,73,-0.26415093228501296],[125,203,74,-0.26184970969503085],[125,203,75,-0.2594177298508348],[125,203,76,-0.2568567738636809],[125,203,77,-0.25416878440495905],[125,203,78,-0.25135586816060995],[125,203,79,-0.24842029828921186],[125,204,64,-0.2787455325249767],[125,204,65,-0.2776756571693684],[125,204,66,-0.2764658678135744],[125,204,67,-0.275116601373106],[125,204,68,-0.2736284343936378],[125,204,69,-0.27200208547197136],[125,204,70,-0.27023841768065215],[125,204,71,-0.2683384409963069],[125,204,72,-0.266303314731664],[125,204,73,-0.2641343499713322],[125,204,74,-0.2618330120111676],[125,204,75,-0.25940092280144833],[125,204,76,-0.25683986339370635],[125,204,77,-0.25415177639125375],[125,204,78,-0.2513387684034276],[125,204,79,-0.24840311250350178],[125,205,64,-0.27857603442419177],[125,205,65,-0.27750579602859715],[125,205,66,-0.27629565679358226],[125,205,67,-0.2749460536517555],[125,205,68,-0.2734575631513336],[125,205,69,-0.271830903876757],[125,205,70,-0.2700669388729575],[125,205,71,-0.2681666780733436],[125,205,72,-0.2661312807314653],[125,205,73,-0.26396205785643734],[125,205,74,-0.26166047465194653],[125,205,75,-0.25922815295906476],[125,205,76,-0.2566668737027178],[125,205,77,-0.253978579341845],[125,205,78,-0.2511653763232756],[125,205,79,-0.24822953753927113],[125,206,64,-0.27838337023492643],[125,206,65,-0.2773125081560027],[125,206,66,-0.2761017678401957],[125,206,67,-0.27475158625006],[125,206,68,-0.27326253993874705],[125,206,69,-0.27163534747002105],[125,206,70,-0.2698708718419268],[125,206,71,-0.2679701229141672],[125,206,72,-0.2659342598391581],[125,206,73,-0.2637645934968387],[125,206,74,-0.2614625889330594],[125,206,75,-0.2590298678017746],[125,206,76,-0.25646821081088356],[125,206,77,-0.2537795601717615],[125,206,78,-0.2509660220525015],[125,206,79,-0.24802986903481894],[125,207,64,-0.2781618333289273],[125,207,65,-0.2770900219084047],[125,207,66,-0.27587836664476895],[125,207,67,-0.27452730454704477],[125,207,68,-0.27303741217677147],[125,207,69,-0.2714094080671081],[125,207,70,-0.2696441551455814],[125,207,71,-0.2677426631605402],[125,207,72,-0.2657060911112803],[125,207,73,-0.26353574968191795],[125,207,74,-0.2612331036788358],[125,207,75,-0.25879977447192637],[125,207,76,-0.2562375424394794],[125,207,77,-0.2535483494167513],[125,207,78,-0.25073430114824113],[125,207,79,-0.24779766974362172],[125,208,64,-0.27790602643016915],[125,208,65,-0.2768328781448519],[125,208,66,-0.2756199344344509],[125,208,67,-0.27426763237469676],[125,208,68,-0.27277654854019306],[125,208,69,-0.27114740142223503],[125,208,70,-0.26938105385026223],[125,208,71,-0.2674785154170102],[125,208,72,-0.26544094490732184],[125,208,73,-0.26326965273070035],[125,208,74,-0.260966103357426],[125,208,75,-0.2585319177584612],[125,208,76,-0.25596887584899075],[125,208,77,-0.2532789189356366],[125,208,78,-0.25046415216736895],[125,208,79,-0.24752684699006477],[125,209,64,-0.2776108549448648],[125,209,65,-0.27653592349494227],[125,209,66,-0.2753212611811445],[125,209,67,-0.27396730516988765],[125,209,68,-0.2724746320548913],[125,209,69,-0.2708439602732796],[125,209,70,-0.2690761525253025],[125,209,71,-0.26717221819774495],[125,209,72,-0.2651333157909864],[125,209,73,-0.2629607553497869],[125,209,74,-0.26065600089762786],[125,209,75,-0.2582206728748284],[125,209,76,-0.255656550580287],[125,209,77,-0.25296557461688285],[125,209,78,-0.25014984934056594],[125,209,79,-0.24721164531308015],[125,210,64,-0.27727152034971014],[125,210,65,-0.2761943036858656],[125,210,66,-0.27497743886965686],[125,210,67,-0.2736213631859358],[125,210,68,-0.27212665325511365],[125,210,69,-0.27049402744705464],[125,210,70,-0.26872434829857605],[125,210,71,-0.26681862493462105],[125,210,72,-0.2647780154930657],[125,210,73,-0.2626038295532396],[125,210,74,-0.2602975305679851],[125,210,75,-0.2578607382994782],[125,210,76,-0.2552952312586576],[125,210,77,-0.25260294914830195],[125,210,78,-0.2497859953097783],[125,210,79,-0.24684663917340954],[125,211,64,-0.27688351363838015],[125,211,65,-0.2758034569281833],[125,211,66,-0.274583854825054],[125,211,67,-0.2732251447638243],[125,211,68,-0.2717279034008344],[125,211,69,-0.27009284902507913],[125,211,70,-0.26832084397294165],[125,211,71,-0.26641289704658133],[125,211,72,-0.264370165935938],[125,211,73,-0.2621939596444305],[125,211,74,-0.2598857409181744],[125,211,75,-0.25744712867894537],[125,211,76,-0.25487990046073006],[125,211,77,-0.25218599484990656],[125,211,78,-0.2493675139290784],[125,211,79,-0.24642672572450897],[125,212,64,-0.27644260882626803],[125,212,65,-0.2753591073603411],[125,212,66,-0.2741361850992188],[125,212,67,-0.2727742796630699],[125,212,68,-0.27127396775519697],[125,212,69,-0.26963596756984465],[125,212,70,-0.26786114120357174],[125,212,71,-0.2659504970702562],[125,212,72,-0.26390519231969056],[125,212,73,-0.26172653525985334],[125,212,74,-0.2594159877826745],[125,212,75,-0.25697516779352325],[125,212,76,-0.25440585164426177],[125,212,77,-0.2517099765699081],[125,212,78,-0.2488896431289247],[125,212,79,-0.24594711764708932],[125,213,64,-0.2759448565134587],[125,213,65,-0.2748572585519008],[125,213,66,-0.2736303879165951],[125,213,67,-0.2722646824522291],[125,213,68,-0.2707607189220236],[125,213,69,-0.2691192154115619],[125,213,70,-0.2673410337361595],[125,213,71,-0.26542718185183445],[125,213,72,-0.26337881626984694],[125,213,73,-0.2611972444748827],[125,213,74,-0.2588839273467062],[125,213,75,-0.25644048158550814],[125,213,76,-0.2538686821407935],[125,213,77,-0.25117046464384796],[125,213,78,-0.2483479278438071],[125,213,79,-0.2454033360472785],[125,214,64,-0.2753865775059575],[125,214,65,-0.27429418706551545],[125,214,66,-0.2730626971791431],[125,214,67,-0.27169254595906467],[125,214,68,-0.2701843102434158],[125,214,69,-0.26853870799541146],[125,214,70,-0.2667566007060197],[125,214,71,-0.2648389958002091],[125,214,72,-0.26278704904672867],[125,214,73,-0.2606020669715028],[125,214,74,-0.2582855092744638],[125,214,75,-0.2558389912500455],[125,214,76,-0.2532642862111868],[125,214,77,-0.25056332791688174],[125,214,78,-0.24773821300330057],[125,214,79,-0.24479120341843086],[125,215,64,-0.27476435649515174],[125,215,65,-0.27366643607762486],[125,215,66,-0.2724296160304852],[125,215,67,-0.27105433478035246],[125,215,68,-0.269541169257429],[125,215,69,-0.267890837289278],[125,215,70,-0.2661041999980721],[125,215,71,-0.26418226420137547],[125,215,72,-0.26212618481642525],[125,215,73,-0.2599372672679887],[125,215,74,-0.2576169698996209],[125,215,75,-0.2551669063885489],[125,215,76,-0.2525888481640265],[125,215,77,-0.24988472682920004],[125,215,78,-0.24705663658650734],[125,215,79,-0.24410683666656074],[125,216,64,-0.2740750357955295],[125,216,65,-0.27297080905789495],[125,216,66,-0.2717279104792629],[125,216,67,-0.2703467788513483],[125,216,68,-0.2688279912158337],[125,216,69,-0.26717226525198845],[125,216,70,-0.265380461667718],[125,216,71,-0.26345358659410334],[125,216,72,-0.26139279398339754],[125,216,73,-0.2591993880105562],[125,216,74,-0.2568748254781267],[125,216,75,-0.254420718224719],[125,216,76,-0.251838835536908],[125,216,77,-0.2491311065646029],[125,216,78,-0.24629962273990758],[125,216,79,-0.2433466401994231],[125,217,64,-0.2733157091406204],[125,217,65,-0.27220436350736765],[125,217,66,-0.2709546030816725],[125,217,67,-0.26956686707488464],[125,217,68,-0.268041732661941],[125,217,69,-0.2663799173620216],[125,217,70,-0.26458228142258533],[125,217,71,-0.2626498302068494],[125,217,72,-0.2605837165846775],[125,217,73,-0.25838524332695334],[125,217,74,-0.25605586550326553],[125,217,75,-0.253597192883127],[125,217,76,-0.2510109923405759],[125,217,77,-0.24829919026219682],[125,217,78,-0.24546387495858557],[125,217,79,-0.24250729907920643],[125,218,64,-0.27248371553719797],[125,218,65,-0.27136440475535717],[125,218,66,-0.2701069666832163],[125,218,67,-0.26871184101013035],[125,218,68,-0.26717960506852123],[125,218,69,-0.26551097620672715],[125,218,70,-0.2637068141651763],[125,218,71,-0.26176812345595113],[125,218,72,-0.2596960557457073],[125,218,73,-0.25749191224202417],[125,218,74,-0.2551571460830119],[125,218,75,-0.2526933647303998],[125,218,76,-0.2501023323659528],[125,218,77,-0.24738597229125292],[125,218,78,-0.24454636933087082],[125,218,79,-0.24158577223887712],[125,219,64,-0.2715766331777262],[125,219,65,-0.27044847981508024],[125,219,66,-0.269182518219656],[125,219,67,-0.26777918862100436],[125,219,68,-0.2662390685358067],[125,219,69,-0.26456287513203924],[125,219,70,-0.26275146759640267],[125,219,71,-0.2608058495050818],[125,219,72,-0.2587271711977984],[125,219,73,-0.2565167321552384],[125,219,74,-0.2541759833796712],[125,219,75,-0.2517065297789949],[125,219,76,-0.24911013255404457],[125,219,77,-0.2463887115892095],[125,219,78,-0.2435443478463778],[125,219,79,-0.24057928576216125],[125,220,64,-0.270592273411028],[125,220,65,-0.2694543712979943],[125,220,66,-0.26817901257714205],[125,220,67,-0.2667666380842143],[125,220,68,-0.26521782554955076],[125,220,69,-0.2635332919526595],[125,220,70,-0.26171389587998584],[125,220,71,-0.25976063988594633],[125,220,72,-0.2576746728571875],[125,220,73,-0.25545729238015324],[125,220,74,-0.2531099471117776],[125,220,75,-0.250634239153536],[125,220,76,-0.24803192642869365],[125,220,77,-0.2453049250627959],[125,220,78,-0.2424553117674194],[125,220,79,-0.23948532622713592],[125,221,64,-0.269528674771219],[125,221,65,-0.2683800913868877],[125,221,66,-0.2670944365115633],[125,221,67,-0.2656721516569637],[125,221,68,-0.26411381479918705],[125,221,69,-0.2624201427227524],[125,221,70,-0.2605919933677625],[125,221,71,-0.2586303681802601],[125,221,72,-0.2565364144657333],[125,221,73,-0.2543114277458587],[125,221,74,-0.25195685411829394],[125,221,75,-0.24947429261975673],[125,221,76,-0.24686549759222753],[125,221,77,-0.2441323810523197],[125,221,78,-0.24127701506383836],[125,221,79,-0.23830163411347716],[125,222,64,-0.26838409706488553],[125,222,65,-0.2672238758677029],[125,222,66,-0.2659270026270989],[125,222,67,-0.264493919604313],[125,222,68,-0.262925205056073],[125,222,69,-0.26122157556713743],[125,222,70,-0.25938388838588133],[125,222,71,-0.25741314376299207],[125,222,72,-0.2553104872932368],[125,222,73,-0.25307721226038404],[125,222,74,-0.25071476198509757],[125,222,75,-0.2482247321760339],[125,222,76,-0.24560887328398406],[125,222,77,-0.24286909285910163],[125,222,78,-0.24000745791123956],[125,222,79,-0.23702619727334506],[125,223,64,-0.26715701551647986],[125,223,65,-0.2659841782200626],[125,223,66,-0.26467514341394116],[125,223,67,-0.26323035418616025],[125,223,68,-0.2616503891117832],[125,223,69,-0.2599359645729441],[125,223,70,-0.25808793708185607],[125,223,71,-0.25610730560684214],[125,223,72,-0.25399521390135005],[125,223,73,-0.25175295283603294],[125,223,74,-0.2493819627337155],[125,223,75,-0.24688383570747463],[125,223,76,-0.24426031800167858],[125,223,77,-0.24151331233602313],[125,223,78,-0.23864488025258934],[125,223,79,-0.23565724446587222],[125,224,64,-0.26584611497198485],[125,224,65,-0.26465966376655337],[125,224,66,-0.26333750534524325],[125,224,67,-0.2618800837038966],[125,224,68,-0.26028797777651036],[125,224,69,-0.258561903741785],[125,224,70,-0.256702717332531],[125,224,71,-0.2547114161480051],[125,224,72,-0.2525891419691333],[125,224,73,-0.25033718307670805],[125,224,74,-0.2479569765723708],[125,224,75,-0.24545011070261902],[125,224,76,-0.24281832718567253],[125,224,77,-0.24006352354124438],[125,224,78,-0.23718775542323767],[125,224,79,-0.23419323895531574],[125,225,64,-0.2644502841608246],[125,225,65,-0.26324920388074236],[125,225,66,-0.2619129430332703],[125,225,67,-0.2604419466067137],[125,225,68,-0.2588367939375481],[125,225,69,-0.257098201002426],[125,225,70,-0.2552270227129382],[125,225,71,-0.25322425521320224],[125,225,72,-0.2510910381802349],[125,225,73,-0.24882865712719537],[125,225,74,-0.24643854570931223],[125,225,75,-0.24392228803273053],[125,225,76,-0.2412816209661185],[125,225,77,-0.23851843645507154],[125,225,78,-0.23563478383934333],[125,225,79,-0.23263287217284556],[125,226,64,-0.2629686100159856],[125,226,65,-0.26175187025389146],[125,226,66,-0.2604005134447147],[125,226,67,-0.2589149856575268],[125,226,68,-0.25729586667781945],[125,226,69,-0.25554387228391184],[125,226,70,-0.2536598565260032],[125,226,71,-0.2516448140079389],[125,226,72,-0.24949988217165409],[125,226,73,-0.24722634358437368],[125,226,74,-0.24482562822838783],[125,226,75,-0.2422993157936365],[125,226,76,-0.23964913797294107],[125,226,77,-0.23687698075992691],[125,226,78,-0.23398488674965767],[125,226,79,-0.23097505744193103],[125,227,64,-0.26140037205241207],[125,227,65,-0.2601669292204336],[125,227,66,-0.25879947017524296],[125,227,67,-0.2572984421585778],[125,227,68,-0.25566442545451795],[125,227,69,-0.25389813564921904],[125,227,70,-0.25200042589317095],[125,227,71,-0.24997228916605552],[125,227,72,-0.2478148605441567],[125,227,73,-0.24552941947041562],[125,227,74,-0.24311739202693672],[125,227,75,-0.24058035321018756],[125,227,76,-0.2379200292087258],[125,227,77,-0.23513829968349942],[125,227,78,-0.23223720005073922],[125,227,79,-0.22921892376739506],[125,228,64,-0.25974503680365035],[125,228,65,-0.25849383614218424],[125,228,66,-0.25710925778324534],[125,228,67,-0.25559175023669134],[125,228,68,-0.25394189433783265],[125,228,69,-0.25216040548940244],[125,228,70,-0.25024813590592365],[125,228,71,-0.24820607686054663],[125,228,72,-0.24603536093431633],[125,228,73,-0.2437372642679536],[125,228,74,-0.2413132088159632],[125,228,75,-0.2387647646033081],[125,228,76,-0.2360936519844844],[125,228,77,-0.2333017439050422],[125,228,78,-0.23039106816557176],[125,228,79,-0.22736380968810788],[125,229,64,-0.25800225231669427],[125,229,65,-0.2567322298512419],[125,229,66,-0.25532950618274397],[125,229,67,-0.25379453118813744],[125,229,68,-0.25212788630970895],[125,229,69,-0.2503302867781937],[125,229,70,-0.2484025838381384],[125,229,71,-0.2463457669755985],[125,229,72,-0.24416096614812988],[125,229,73,-0.24184945401715974],[125,229,74,-0.23941264818254915],[125,229,75,-0.236852113419587],[125,229,76,-0.23416956391824895],[125,229,77,-0.23136686552476704],[125,229,78,-0.22844603798553076],[125,229,79,-0.22540925719326932],[125,230,64,-0.2561718427051135],[125,230,65,-0.2548819271516587],[125,230,66,-0.253460025095538],[125,230,67,-0.2519065878831841],[125,230,68,-0.2502221976227319],[125,230,69,-0.2484075693871306],[125,230,70,-0.2464635534193751],[125,230,71,-0.2443911373399279],[125,230,72,-0.24219144835629336],[125,230,73,-0.23986575547482647],[125,230,74,-0.23741547171458943],[125,230,75,-0.23484215632349648],[125,230,76,-0.23214751699658076],[125,230,77,-0.22933341209642688],[125,230,78,-0.2264018528757925],[125,230,79,-0.22335500570236744],[125,231,64,-0.2542538027604293],[125,231,65,-0.25294291737984576],[125,231,66,-0.25150079856255336],[125,231,67,-0.24992789923030023],[125,231,68,-0.24822480221909127],[125,231,69,-0.24639222246118386],[125,231,70,-0.24443100916905225],[125,231,71,-0.24234214802138843],[125,231,72,-0.2401267633511034],[125,231,73,-0.23778612033541235],[125,231,74,-0.23532162718781258],[125,231,75,-0.23273483735220057],[125,231,76,-0.23002745169895633],[125,231,77,-0.22720132072304322],[125,231,78,-0.22425844674414297],[125,231,79,-0.2212009861087767],[125,232,64,-0.2522482926216859],[125,232,65,-0.2509153570236605],[125,232,66,-0.24945197951434217],[125,232,67,-0.24785861469996096],[125,232,68,-0.24613584620957718],[125,232,69,-0.24428438885482462],[125,232,70,-0.24230509079145957],[125,232,71,-0.24019893568278694],[125,232,72,-0.23796704486492493],[125,232,73,-0.23561067951399295],[125,232,74,-0.23313124281503084],[125,232,75,-0.2305302821328976],[125,232,76,-0.22780949118497484],[125,232,77,-0.22497071221572607],[125,232,78,-0.22201593817312937],[125,232,79,-0.21894731488693542],[125,233,64,-0.25015563250331063],[125,233,65,-0.24879956440027107],[125,233,66,-0.24731388440082724],[125,233,67,-0.24569904890814565],[125,233,68,-0.2439556424127034],[125,233,69,-0.24208437962863338],[125,233,70,-0.2400861076317049],[125,233,71,-0.23796180799901168],[125,233,72,-0.23571259895032848],[125,233,73,-0.23333973749122128],[125,233,74,-0.23084462155771968],[125,233,75,-0.22822879216279657],[125,233,76,-0.22549393554448627],[125,233,77,-0.22264188531568585],[125,233,78,-0.21967462461566145],[125,233,79,-0.2165942882632097],[125,234,64,-0.24797629748122174],[125,234,65,-0.24659601439275558],[125,234,66,-0.24508698788025096],[125,234,67,-0.24344967625949154],[125,234,68,-0.24168466495391383],[125,234,69,-0.23979266860640414],[125,234,70,-0.23777453319255093],[125,234,71,-0.23563123813542475],[125,234,72,-0.23336389842185057],[125,234,73,-0.23097376672025305],[125,234,74,-0.22846223549988498],[125,234,75,-0.225830839151686],[125,234,76,-0.22308125611059948],[125,234,77,-0.22021531097939417],[125,234,78,-0.2172349766540126],[125,234,79,-0.21414237645039513],[125,235,64,-0.24571091233712528],[125,235,65,-0.24430533324537673],[125,235,66,-0.24277191756726701],[125,235,67,-0.24111112565003823],[125,235,68,-0.23932354392481248],[125,235,69,-0.2374098869926844],[125,235,70,-0.2353709997120803],[125,235,71,-0.23320785928745924],[125,235,72,-0.23092157735931518],[125,235,73,-0.22851340209556847],[125,235,74,-0.22598472028414973],[125,235,75,-0.22333705942702653],[125,235,76,-0.22057208983550125],[125,235,77,-0.2176916267268263],[125,235,78,-0.21469763232215655],[125,235,79,-0.21159221794579097],[125,236,64,-0.24336024646110743],[125,236,65,-0.24192829341763977],[125,236,66,-0.24036944884028322],[125,236,67,-0.23868417522967456],[125,236,68,-0.23687306010252707],[125,236,69,-0.23493681805086075],[125,236,70,-0.2328762928023036],[125,236,71,-0.2306924592815338],[125,236,72,-0.22838642567283063],[125,236,73,-0.2259594354838137],[125,236,74,-0.2234128696101798],[125,236,75,-0.22074824840168616],[125,236,76,-0.21796723372920546],[125,236,77,-0.2150716310529046],[125,236,78,-0.21206339149155962],[125,236,79,-0.20894461389296792],[125,237,64,-0.2409252088124748],[125,237,65,-0.23946580849708565],[125,237,66,-0.23788049970801095],[125,237,67,-0.23616974722424044],[125,237,68,-0.2343341397291563],[125,237,69,-0.2323743918417419],[125,237,70,-0.23029134614865454],[125,237,71,-0.22808597523723384],[125,237,72,-0.22575938372941085],[125,237,73,-0.22331281031660288],[125,237,74,-0.22074762979539542],[125,237,75,-0.2180653551042675],[125,237,76,-0.21526763936118176],[125,237,77,-0.21235627790209055],[125,237,78,-0.20933321032037555],[125,237,79,-0.20620052250717347],[125,238,64,-0.2384068429387758],[125,238,65,-0.23691892817075266],[125,238,66,-0.2353061257351471],[125,238,67,-0.23356890281721143],[125,238,68,-0.23170784935123467],[125,238,69,-0.22972368002257004],[125,238,70,-0.22761723627031072],[125,238,71,-0.2253894882906875],[125,238,72,-0.22304153704114893],[125,238,73,-0.22057461624521413],[125,238,74,-0.21799009439789585],[125,238,75,-0.21528947677195198],[125,238,76,-0.21247440742478685],[125,238,77,-0.20954667120605186],[125,238,78,-0.20650819576596569],[125,238,79,-0.203361053564304],[125,239,64,-0.23580632205313323],[125,239,65,-0.23428883325543626],[125,239,66,-0.23264751502732595],[125,239,67,-0.2308828370911029],[125,239,68,-0.22899539071934383],[125,239,69,-0.2269858907065916],[125,239,70,-0.22485517734146665],[125,239,71,-0.22260421837927657],[125,239,72,-0.22023411101508306],[125,239,73,-0.2177460838573172],[125,239,74,-0.21514149890173895],[125,239,75,-0.21242185350600218],[125,239,76,-0.2095887823646433],[125,239,77,-0.20664405948454456],[125,239,78,-0.203589600160893],[125,239,79,-0.20042746295358305],[125,240,64,-0.23312494416977902],[125,240,65,-0.23157683078663716],[125,240,66,-0.2299059832752266],[125,240,67,-0.22811287402847902],[125,240,68,-0.22619809574776284],[125,240,69,-0.2241623633830806],[125,240,70,-0.22200651607345256],[125,240,71,-0.21973151908756394],[125,240,72,-0.21733846576463645],[125,240,73,-0.21482857945561395],[125,240,74,-0.21220321546445597],[125,240,75,-0.2094638629898059],[125,240,76,-0.20661214706684616],[125,240,77,-0.20364983050939534],[125,240,78,-0.20057881585226556],[125,240,79,-0.1974011472938304],[125,241,64,-0.23036412729787636],[125,241,65,-0.22878434916628687],[125,241,66,-0.22708296885792612],[125,241,67,-0.22526046157265778],[125,241,68,-0.2233174215342436],[125,241,69,-0.22125456389789833],[125,241,70,-0.21907272665778488],[125,241,71,-0.21677287255453126],[125,241,72,-0.21435609098272623],[125,241,73,-0.21182359989848853],[125,241,74,-0.2091767477268971],[125,241,75,-0.20641701526955403],[125,241,76,-0.20354601761209112],[125,241,77,-0.2005655060316751],[125,241,78,-0.19747736990452724],[125,241,79,-0.19428363861341325],[125,242,64,-0.2275254046935098],[125,242,65,-0.22591293336912566],[125,242,66,-0.22418002800537384],[125,242,67,-0.22232716674798547],[125,242,68,-0.22035494543978718],[125,242,69,-0.2182640794944657],[125,242,70,-0.2160554057700228],[125,242,71,-0.21372988444199614],[125,242,72,-0.2112886008764081],[125,242,73,-0.2087327675025331],[125,242,74,-0.20606372568527442],[125,242,75,-0.2032829475974206],[125,242,76,-0.20039203809159178],[125,242,77,-0.1973927365719309],[125,242,78,-0.1942869188655596],[125,242,79,-0.19107659909374686],[125,243,64,-0.2246104201699859],[125,243,65,-0.2229642402078792],[125,243,66,-0.22119883002013163],[125,243,67,-0.21931467083982903],[125,243,68,-0.21731236022856903],[125,243,69,-0.2151926139152991],[125,243,70,-0.2129562676345822],[125,243,71,-0.21060427896436495],[125,243,72,-0.2081377291632136],[125,243,73,-0.20555782500710396],[125,243,74,-0.20286590062555887],[125,243,75,-0.20006341933740224],[125,243,76,-0.1971519754859422],[125,243,77,-0.19413329627363607],[125,243,78,-0.19100924359625526],[125,243,79,-0.18778181587650422],[125,244,64,-0.22162092346638051],[125,244,65,-0.21994003365717063],[125,244,66,-0.21814115255832012],[125,244,67,-0.2162247646342218],[125,244,68,-0.2141914692679494],[125,244,69,-0.21204198256404194],[125,244,70,-0.20977713915043872],[125,244,71,-0.2073978939796488],[125,244,72,-0.20490532412911144],[125,244,73,-0.20230063060084447],[125,244,74,-0.19958514012016293],[125,244,75,-0.19676030693374646],[125,244,76,-0.1938277146068602],[125,244,77,-0.19078907781978827],[125,244,78,-0.1876462441634945],[125,244,79,-0.18440119593446425],[125,245,64,-0.2185587656742548],[125,245,65,-0.21684218023608515],[125,245,66,-0.21500887696968474],[125,245,67,-0.21305934371707913],[125,245,68,-0.21099418178848306],[125,245,69,-0.2088141077279082],[125,245,70,-0.20651995507763898],[125,245,71,-0.20411267614166217],[125,245,72,-0.2015933437480052],[125,245,73,-0.19896315301008105],[125,245,74,-0.19622342308682272],[125,245,75,-0.19337559894188483],[125,245,76,-0.1904212531017161],[125,245,77,-0.18736208741256533],[125,245,78,-0.18419993479643015],[125,245,79,-0.18093676100590883],[125,246,64,-0.21542589472268758],[125,246,65,-0.21367264444954193],[125,246,66,-0.21180398369693576],[125,246,67,-0.2098204038331387],[125,246,68,-0.20772250820408533],[125,246,69,-0.2055110138606956],[125,246,70,-0.20318675328477265],[125,246,71,-0.20075067611356245],[125,246,72,-0.19820385086293124],[125,246,73,-0.19554746664926081],[125,246,74,-0.19278283490983905],[125,246,75,-0.18991139112202882],[125,246,76,-0.18693469652101746],[125,246,77,-0.18385443981620608],[125,246,78,-0.18067243890625528],[125,246,79,-0.17739064259273696],[125,247,64,-0.212224350921555],[125,247,65,-0.21043348428839825],[125,247,66,-0.2085285477342924],[125,247,67,-0.20651003630455433],[125,247,68,-0.20437855549228323],[125,247,69,-0.20213482292629592],[125,247,70,-0.19977967005733743],[125,247,71,-0.19731404384265283],[125,247,72,-0.19473900842887926],[125,247,73,-0.1920557468333518],[125,247,74,-0.18926556262360605],[125,247,75,-0.18636988159535905],[125,247,76,-0.1833702534487699],[125,247,77,-0.18026835346304004],[125,247,78,-0.17706598416936892],[125,247,79,-0.17376507702221622],[125,248,64,-0.20895626256297228],[125,248,65,-0.2071268467882028],[125,248,66,-0.20518473414514138],[125,248,67,-0.20313042350905242],[125,248,68,-0.20096452263445985],[125,248,69,-0.19868774980261028],[125,248,70,-0.19630093546690164],[125,248,71,-0.1938050238963629],[125,248,72,-0.1912010748171441],[125,248,73,-0.18849026505211197],[125,248,74,-0.18567389015832947],[125,248,75,-0.18275336606270698],[125,248,76,-0.17973023069562155],[125,248,77,-0.17660614562256738],[125,248,78,-0.17338289767384918],[125,248,79,-0.17006240057227684],[125,249,64,-0.2056238415810574],[125,249,65,-0.2037549636467605],[125,249,66,-0.2017747936389771],[125,249,67,-0.19968383441782123],[125,249,68,-0.19748269611626135],[125,249,69,-0.19517209774604016],[125,249,70,-0.19275286880123854],[125,249,71,-0.19022595085957306],[125,249,72,-0.18759239918138304],[125,249,73,-0.18485338430640608],[125,249,74,-0.18201019364811544],[125,249,75,-0.17906423308591257],[125,249,76,-0.1760170285549676],[125,249,77,-0.1728702276337709],[125,249,78,-0.16962560112941072],[125,249,79,-0.16628504466052962],[125,250,64,-0.2022293792699429],[125,250,65,-0.20032014690042976],[125,250,66,-0.19830105820754318],[125,250,67,-0.1961726201930507],[125,250,68,-0.19393544548808794],[125,250,69,-0.19159025391647477],[125,250,70,-0.18913787405534943],[125,250,71,-0.18657924479320653],[125,250,72,-0.1839154168852961],[125,250,73,-0.18114755450648368],[125,250,74,-0.1782769368013415],[125,250,75,-0.17530495943176894],[125,250,76,-0.17223313612193047],[125,250,77,-0.16906310020057658],[125,250,78,-0.16579660614076364],[125,250,79,-0.16243553109692122],[125,251,64,-0.1987752420599439],[125,251,65,-0.1968247846590655],[125,251,66,-0.19476593682008458],[125,251,67,-0.19259920984503232],[125,251,68,-0.19032521898557297],[125,251,69,-0.1879446849626787],[125,251,70,-0.18545843548328111],[125,251,71,-0.18286740675398938],[125,251,72,-0.18017264499183205],[125,251,73,-0.1773753079321223],[125,251,74,-0.17447666633321535],[125,251,75,-0.1714781054784581],[125,251,76,-0.16838112667511784],[125,251,77,-0.165187348750358],[125,251,78,-0.1618985095442711],[125,251,79,-0.1585164673999262],[125,252,64,-0.1952638673520536],[125,252,65,-0.1932713368997745],[125,252,66,-0.19117191117788668],[125,252,67,-0.188966105948995],[125,252,68,-0.18665453921023167],[125,252,69,-0.18423793266826172],[125,252,70,-0.18171711321091943],[125,252,71,-0.1790930143755629],[125,252,72,-0.17636667781410498],[125,252,73,-0.17353925475482246],[125,252,74,-0.17061200746070715],[125,252,75,-0.16758631068466556],[125,252,76,-0.16446365312134825],[125,252,77,-0.16124563885568],[125,252,78,-0.1579339888080995],[125,252,79,-0.154530542176467],[125,253,64,-0.19169775941068623],[125,253,65,-0.18966233131940846],[125,253,66,-0.1875215315280142],[125,253,67,-0.18527588042159293],[125,253,68,-0.1829259988701908],[125,253,69,-0.18047260965814216],[125,253,70,-0.17791653890967207],[125,253,71,-0.17525871751086175],[125,253,72,-0.17250018252793453],[125,253,73,-0.16964207862196357],[125,253,74,-0.1666856594597652],[125,253,75,-0.16363228912128347],[125,253,76,-0.1604834435032506],[125,253,77,-0.15724071171918852],[125,253,78,-0.15390579749576772],[125,253,79,-0.150480520565474],[125,254,64,-0.1880794853145717],[125,254,65,-0.18600035924569358],[125,254,66,-0.18381741253615846],[125,254,67,-0.18153117035694682],[125,254,68,-0.17914225658090432],[125,254,69,-0.1766513951654083],[125,254,70,-0.1740594115309404],[125,254,71,-0.17136723393565545],[125,254,72,-0.16857589484590563],[125,254,73,-0.16568653230282204],[125,254,74,-0.16270039128471425],[125,254,75,-0.1596188250655992],[125,254,76,-0.15644329656963607],[125,254,77,-0.15317537972154127],[125,254,78,-0.1498167607929921],[125,254,79,-0.1463692397449745],[125,255,64,-0.1844116709659832],[125,255,65,-0.1822880716071804],[125,255,66,-0.1800622292187728],[125,255,67,-0.17773467392242825],[125,255,68,-0.17530603272604128],[125,255,69,-0.1727770308587644],[125,255,70,-0.17014849310157265],[125,255,71,-0.16742134511344797],[125,255,72,-0.16459661475314546],[125,255,73,-0.1616754333966428],[125,255,74,-0.15865903725003216],[125,255,75,-0.15554876865816736],[125,255,76,-0.15234607740884387],[125,255,77,-0.14905252203258235],[125,255,78,-0.14566977109802748],[125,255,79,-0.14219960450291702],[125,256,64,-0.18069699715821103],[125,256,65,-0.17852817496192913],[125,256,66,-0.17625871293441153],[125,256,67,-0.1738891463140939],[125,256,68,-0.17142010537845642],[125,256,69,-0.16885231673047285],[125,256,70,-0.16618660458020562],[125,256,71,-0.16342389202164143],[125,256,72,-0.16056520230472154],[125,256,73,-0.15761166010267558],[125,256,74,-0.15456449277440965],[125,256,75,-0.15142503162227117],[125,256,76,-0.14819471314496002],[125,256,77,-0.1448750802856612],[125,256,78,-0.14146778367540802],[125,256,79,-0.13797458287163344],[125,257,64,-0.17693819570118396],[125,257,65,-0.1747234275848279],[125,257,66,-0.1724096474341698],[125,257,67,-0.16999739577167006],[125,257,68,-0.16748730628114128],[125,257,69,-0.16488010704468703],[125,257,70,-0.1621766217743918],[125,257,71,-0.15937777103886008],[125,257,72,-0.1564845734845578],[125,257,73,-0.15349814705206472],[125,257,74,-0.1504197101869884],[125,257,75,-0.14725058304586358],[125,257,76,-0.1439921886968052],[125,257,77,-0.1406460543149899],[125,257,78,-0.1372138123729778],[125,257,79,-0.13369720182582656],[125,258,64,-0.17313804560542878],[125,258,65,-0.170876635613736],[125,258,66,-0.1685178649714184],[125,258,67,-0.1660622796532839],[125,258,68,-0.16351051688835216],[125,258,69,-0.16086330634637602],[125,258,70,-0.15812147131871174],[125,258,71,-0.15528592989363665],[125,258,72,-0.15235769612606975],[125,258,73,-0.14933788120180091],[125,258,74,-0.14622769459598145],[125,258,75,-0.1430284452261974],[125,258,76,-0.13974154259989768],[125,258,77,-0.13636849795624806],[125,258,78,-0.13291092540242444],[125,258,79,-0.12937054304429885],[125,259,64,-0.16929936932427497],[125,259,65,-0.1669906492543619],[125,259,66,-0.16458624247073977],[125,259,67,-0.1620867005698441],[125,259,68,-0.1594926644668203],[125,259,69,-0.1568048655307429],[125,259,70,-0.15402412671377474],[125,259,71,-0.15115136367436166],[125,259,72,-0.14818758589442171],[125,259,73,-0.14513389779063457],[125,259,74,-0.14199149981957804],[125,259,75,-0.1387616895770441],[125,259,76,-0.13544586289129346],[125,259,77,-0.13204551491033156],[125,259,78,-0.12856224118321036],[125,259,79,-0.12499773873531517],[125,260,64,-0.16542502905420303],[125,260,65,-0.16306835904377015],[125,260,66,-0.16061769775596263],[125,260,67,-0.15807360257896996],[125,260,68,-0.15543671825693905],[125,260,69,-0.15270777797303164],[125,260,70,-0.14988760442600135],[125,260,71,-0.14697711090039023],[125,260,72,-0.14397730233029837],[125,260,73,-0.14088927635683945],[125,260,74,-0.13771422437902092],[125,260,75,-0.13445343259838827],[125,260,76,-0.13110828305718858],[125,260,77,-0.12768025467013688],[125,260,78,-0.12417092424979093],[125,260,79,-0.12058196752549111],[125,261,64,-0.16151792309353652],[125,261,65,-0.15911269217271895],[125,261,66,-0.15661518583749456],[125,261,67,-0.1540259674386681],[125,261,68,-0.15134568569413226],[125,261,69,-0.14857507571892814],[125,261,70,-0.14571496004839501],[125,261,71,-0.14276624965451423],[125,261,72,-0.1397299449553988],[125,261,73,-0.13660713681804393],[125,261,74,-0.13339900755407114],[125,261,75,-0.13010683190881578],[125,261,76,-0.12673197804350145],[125,261,77,-0.12327590851059433],[125,261,78,-0.11974018122233765],[125,261,79,-0.11612645041242342],[125,262,64,-0.15758098225937522],[125,262,65,-0.15512660886672824],[125,262,66,-0.15258169525885606],[125,262,67,-0.14994681092066064],[125,262,68,-0.1472226086903035],[125,262,69,-0.14440982573545574],[125,262,70,-0.14150928452220102],[125,262,71,-0.13852189377669788],[125,262,72,-0.13544864943955343],[125,262,73,-0.1322906356130203],[125,262,74,-0.12904902550075664],[125,262,75,-0.125725082340489],[125,262,76,-0.12232016032933202],[125,262,77,-0.11883570554184941],[125,262,78,-0.11527325684086176],[125,262,79,-0.11163444678095641],[125,263,64,-0.15361716636267442],[125,263,65,-0.15111309882577806],[125,263,66,-0.14852024450230933],[125,263,67,-0.14583917918325756],[125,263,68,-0.14307055997526058],[125,263,69,-0.14021512622225613],[125,263,70,-0.13727370041934522],[125,263,71,-0.13424718911896788],[125,263,72,-0.13113658382934862],[125,263,73,-0.127942961905325],[125,263,74,-0.12466748743128919],[125,263,75,-0.1213114120965958],[125,263,76,-0.11787607606317935],[125,263,77,-0.11436290882547101],[125,263,78,-0.11077343006261925],[125,263,79,-0.1071092504829686],[125,264,64,-0.14962946074167643],[125,264,65,-0.14707517772285023],[125,264,66,-0.14443387845380173],[125,264,67,-0.14170614520399272],[125,264,68,-0.13889263949833403],[125,264,69,-0.1359941029834793],[125,264,70,-0.1330113582858765],[125,264,71,-0.12994530986168235],[125,264,72,-0.12679694483849535],[125,264,73,-0.12356733384901891],[125,264,74,-0.12025763185638783],[125,264,75,-0.11686907897150806],[125,264,76,-0.11340300126215686],[125,264,77,-0.10986081155392952],[125,264,78,-0.10624401022303825],[125,264,79,-0.10255418598091887],[125,265,64,-0.1456208728535192],[125,265,65,-0.14301588376113006],[125,265,66,-0.14032566492703674],[125,265,67,-0.13755080527183816],[125,265,68,-0.13469197089000806],[125,265,69,-0.13174990586009538],[125,265,70,-0.1287254330462237],[125,265,71,-0.12561945489099263],[125,265,72,-0.12243295419973943],[125,265,73,-0.11916699491627242],[125,265,74,-0.11582272288980505],[125,265,75,-0.11240136663344924],[125,265,76,-0.10890423807400551],[125,265,77,-0.10533273329314241],[125,265,78,-0.1016883332599679],[125,265,79,-0.09797260455495138],[125,266,64,-0.14159442892415713],[125,266,65,-0.13893827429001132],[125,266,66,-0.1361986912468171],[125,266,67,-0.13337627553913978],[125,266,68,-0.13047169798369912],[125,266,69,-0.12748570522276986],[125,266,70,-0.12441912046841219],[125,266,71,-0.12127284423763818],[125,266,72,-0.11804785507846993],[125,266,73,-0.1147452102870053],[125,266,74,-0.11136604661521349],[125,266,75,-0.107911580969826],[125,266,76,-0.10438311110205545],[125,266,77,-0.1007820162882383],[125,266,78,-0.0971097580014012],[125,266,79,-0.09336788057371076],[125,267,64,-0.13755317065640948],[125,267,65,-0.1348454224797131],[125,267,66,-0.13205606089146738],[125,267,67,-0.12918568863308133],[125,267,68,-0.1262349813974974],[125,267,69,-0.12320468852511052],[125,267,70,-0.12009563369004311],[125,267,71,-0.11690871557687932],[125,267,72,-0.11364490854781856],[125,267,73,-0.11030526330036028],[125,267,74,-0.10689090751524533],[125,267,75,-0.10340304649501625],[125,267,76,-0.09984296379293323],[125,267,77,-0.09621202183233718],[125,267,78,-0.0925116625164632],[125,267,79,-0.08874340782866136],[125,268,64,-0.1335001519963564],[125,268,65,-0.13074041405473352],[125,268,66,-0.1279008901945614],[125,268,67,-0.12498219032690372],[125,268,68,-0.12198499517609246],[125,268,69,-0.11891005691751455],[125,268,70,-0.11575819980526919],[125,268,71,-0.11253032078980513],[125,268,72,-0.1092273901254926],[125,268,73,-0.10585045196824716],[125,268,74,-0.1024006249629249],[125,268,75,-0.0988791028208566],[125,268,76,-0.09528715488725509],[125,268,77,-0.09162612669858738],[125,268,78,-0.08789744052991466],[125,268,79,-0.08410259593215835],[125,269,64,-0.1294384359579771],[125,269,65,-0.12662634408603213],[125,269,66,-0.12373630510584915],[125,269,67,-0.12076893627077401],[125,269,68,-0.11772492349278219],[125,269,69,-0.11460502192150851],[125,269,70,-0.11141005651265679],[125,269,71,-0.10814092258590047],[125,269,72,-0.10479858637222672],[125,269,73,-0.10138408555084716],[125,269,74,-0.0978985297753851],[125,269,75,-0.09434310118971728],[125,269,76,-0.09071905493319576],[125,269,77,-0.08702771963534761],[125,269,78,-0.08327049790005148],[125,269,79,-0.07944886677915192],[125,270,64,-0.12537109150592868],[125,270,65,-0.12250631384183996],[125,270,66,-0.11956543801127695],[125,270,67,-0.11654908878219544],[125,270,68,-0.1134579574114496],[125,270,69,-0.11029280216447018],[125,270,70,-0.10705444882382331],[125,270,71,-0.10374379118676469],[125,270,72,-0.10036179155174124],[125,270,73,-0.0969094811939622],[125,270,74,-0.09338796082974904],[125,270,75,-0.08979840107004605],[125,270,76,-0.08614204286281174],[125,270,77,-0.08242019792439392],[125,270,78,-0.07863424915988287],[125,270,79,-0.07478565107240726],[125,271,64,-0.12130119049667215],[125,271,65,-0.11838342769730348],[125,271,66,-0.11539142461231122],[125,271,67,-0.11232581369617217],[125,271,68,-0.10918729170872948],[125,271,69,-0.10597662017495169],[125,271,70,-0.10269462583306971],[125,271,71,-0.09934220107120317],[125,271,72,-0.09592030435243248],[125,271,73,-0.09242996062843695],[125,271,74,-0.0888722617414065],[125,271,75,-0.08524836681461212],[125,271,76,-0.08155950263135381],[125,271,77,-0.07780696400238662],[125,271,78,-0.07399211412182394],[125,271,79,-0.0701163849114777],[125,272,64,-0.11723180467784067],[125,272,65,-0.11426079010286],[125,272,66,-0.11121740086446291],[125,272,67,-0.10810227727502486],[125,272,68,-0.10491612175625414],[125,272,69,-0.10165969923849583],[125,272,70,-0.0983338375479017],[125,272,71,-0.09493942778158049],[125,272,72,-0.09147742467068226],[125,272,73,-0.08794884693153993],[125,272,74,-0.08435477760457238],[125,272,75,-0.08069636438133798],[125,272,76,-0.07697481991945321],[125,272,77,-0.0731914221454813],[125,272,78,-0.06934751454578536],[125,272,79,-0.06544450644531047],[125,273,64,-0.11316600274574767],[125,273,65,-0.110141502611238],[125,273,66,-0.1070464999749029],[125,273,67,-0.10388164317774468],[125,273,68,-0.10064764046287011],[125,273,69,-0.09734526031383312],[125,273,70,-0.09397533178032402],[125,273,71,-0.09053874479132368],[125,273,72,-0.08703645045567376],[125,273,73,-0.08346946135018884],[125,273,74,-0.0798388517950106],[125,273,75,-0.07614575811659752],[125,273,76,-0.0723913788980628],[125,273,77,-0.06857697521696404],[125,273,78,-0.06470387087054152],[125,273,79,-0.06077345258836808],[125,274,64,-0.109106847461243],[125,274,65,-0.10602866096329372],[125,274,66,-0.10288184945938433],[125,274,67,-0.09966706948910553],[125,274,68,-0.0963850352770429],[125,274,69,-0.09303651900968124],[125,274,70,-0.08962235109913147],[125,274,71,-0.08614342043379802],[125,274,72,-0.08260067461593973],[125,274,73,-0.07899512018625027],[125,274,74,-0.07532782283515405],[125,274,75,-0.07159990760121843],[125,274,76,-0.06781255905638789],[125,274,77,-0.06396702147814748],[125,274,78,-0.06006459900861211],[125,274,79,-0.05610665580050256],[125,275,64,-0.1050573928238111],[125,275,65,-0.10192535223257732],[125,275,66,-0.09872656825836262],[125,275,67,-0.09546170580842395],[125,275,68,-0.09213148524934134],[125,275,69,-0.08873668262203693],[125,275,70,-0.08527812984308747],[125,275,71,-0.08175671489244624],[125,275,72,-0.07817338198753015],[125,275,73,-0.07452913174379655],[125,275,74,-0.07082502132150542],[125,275,75,-0.06706216455906827],[125,275,76,-0.06324173209269007],[125,275,77,-0.05936495146241072],[125,275,78,-0.05543310720454231],[125,275,79,-0.0514475409304635],[125,276,64,-0.10102068130380965],[125,276,65,-0.09783465202852554],[125,276,66,-0.09458376391220813],[125,276,67,-0.09126869039785984],[125,276,68,-0.08789015815489276],[125,276,69,-0.08444894723184909],[125,276,70,-0.08094589119487611],[125,276,71,-0.07738187725207601],[125,276,72,-0.07375784636368532],[125,276,73,-0.07007479333820948],[125,276,74,-0.06633376691420395],[125,276,75,-0.0625358698281101],[125,276,76,-0.058682258867846115],[125,276,77,-0.054774144912262956],[125,276,78,-0.050812792956459574],[125,276,79,-0.046799522122920656],[125,277,64,-0.0969997411330541],[125,277,65,-0.09375962175848906],[125,277,66,-0.09045652979572522],[125,277,67,-0.08709114739047363],[125,277,68,-0.08366420767602673],[125,277,69,-0.08017649486329426],[125,277,70,-0.07662884431605149],[125,277,71,-0.07302214261152101],[125,277,72,-0.06935732758624208],[125,277,73,-0.06563538836735494],[125,277,74,-0.06185736538898795],[125,277,75,-0.05802435039416043],[125,277,76,-0.05413748642189753],[125,277,77,-0.05019796777966917],[125,277,78,-0.04620704000114639],[125,277,79,-0.04216599978923963],[125,278,64,-0.09299758365364685],[125,278,65,-0.08970330594849074],[125,278,66,-0.08634794241186838],[125,278,67,-0.08293218405793207],[125,278,68,-0.07945677064499762],[125,278,69,-0.07592249070254353],[125,278,70,-0.0723301815428733],[125,278,71,-0.06868072925756474],[125,278,72,-0.06497506869865877],[125,278,73,-0.06121418344471785],[125,278,74,-0.05739910575143814],[125,278,75,-0.05353091648723135],[125,278,76,-0.049610745053471295],[125,278,77,-0.04563976928951741],[125,278,78,-0.04161921536250868],[125,278,79,-0.037550357641891186],[125,279,64,-0.08901720072494546],[125,279,65,-0.08566872962260974],[125,279,66,-0.0822610587445532],[125,279,67,-0.07879488813775481],[125,279,68,-0.07527096434667846],[125,279,69,-0.0716900803769121],[125,279,70,-0.06805307564291735],[125,279,71,-0.06436083590001318],[125,279,72,-0.06061429316054684],[125,279,73,-0.05681442559438221],[125,279,74,-0.05296225741338745],[125,279,75,-0.049058858740342826],[125,279,76,-0.045105345461957436],[125,279,77,-0.04110287906611293],[125,279,78,-0.037052666463323114],[125,279,79,-0.032955959792375866],[125,280,64,-0.08506156218887778],[125,280,65,-0.08165889574120105],[125,280,66,-0.07819891367077064],[125,280,67,-0.07468232522031781],[125,280,68,-0.07110988388144401],[125,280,69,-0.06748238729461131],[125,280,70,-0.06380067713268306],[125,280,71,-0.060065638968141655],[125,280,72,-0.05627820212393464],[125,280,73,-0.05243933950808288],[125,280,74,-0.04855006743172663],[125,280,75,-0.04461144541103684],[125,280,76,-0.04062457595267677],[125,280,77,-0.036590604322932097],[125,280,78,-0.0325107183004999],[125,280,79,-0.02838614791290156],[125,281,64,-0.08113361339349934],[125,281,65,-0.07767678269784356],[125,281,66,-0.07416451743190039],[125,281,67,-0.07059753619550285],[125,281,68,-0.06697659958813013],[125,281,69,-0.06330251004498949],[125,281,70,-0.059576111656085395],[125,281,71,-0.055798289968401305],[125,281,72,-0.05196997177114915],[125,281,73,-0.048092124864216546],[125,281,74,-0.044165757809488726],[125,281,75,-0.04019191966547442],[125,281,76,-0.03617169970491796],[125,281,77,-0.032106227115517694],[125,281,78,-0.027996670683739566],[125,281,79,-0.023844238461692924],[125,282,64,-0.07723627277469314],[125,282,65,-0.07372534187491814],[125,282,66,-0.07016085316411919],[125,282,67,-0.06654353475889241],[125,282,68,-0.06287415452696848],[125,282,69,-0.05915351985915962],[125,282,70,-0.05538247742372454],[125,282,71,-0.05156191290327933],[125,282,72,-0.047692750714206866],[125,282,73,-0.04377595370869952],[125,282,74,-0.03981252285910375],[125,282,75,-0.03580349692500634],[125,282,76,-0.031749952102735624],[125,282,77,-0.027653001657402976],[125,282,78,-0.023513795537471627],[125,282,79,-0.01933351997181909],[125,283,64,-0.07337242949621425],[125,283,65,-0.06980749525801677],[125,283,66,-0.06619087448811134],[125,283,67,-0.06252330497771685],[125,283,68,-0.05880556202270665],[125,283,69,-0.0550384581312256],[125,283,70,-0.05122284271315114],[125,283,71,-0.04735960175152909],[125,283,72,-0.043449657455934654],[125,283,73,-0.03949396789789589],[125,283,74,-0.03549352662804539],[125,283,75,-0.03144936227544137],[125,283,76,-0.02736253812873346],[125,283,77,-0.023234151699294103],[125,283,78,-0.019065334266306133],[125,283,79,-0.014857250403771838],[125,284,64,-0.06954494114797588],[125,284,65,-0.06592613310908335],[125,284,66,-0.06225750315797862],[125,284,67,-0.058539798916450225],[125,284,68,-0.0547738032678064],[125,284,69,-0.05096033399999922],[125,284,70,-0.047100243430014954],[125,284,71,-0.04319441800966206],[125,284,72,-0.039243777912708444],[125,284,73,-0.035249276603505075],[125,284,74,-0.031211900386758584],[125,284,75,-0.027132667938900457],[125,284,76,-0.023012629820720776],[125,284,77,-0.018852867971393517],[125,284,78,-0.01465449518387979],[125,284,79,-0.01041865456167651],[125,285,64,-0.0657566315024806],[125,285,65,-0.06208411169818248],[125,285,66,-0.05836362676924589],[125,285,67,-0.054595934321951145],[125,285,68,-0.050781824985617785],[125,285,69,-0.046922121991104515],[125,285,70,-0.0430176807299939],[125,285,71,-0.039069388294592944],[125,285,72,-0.0350781629987032],[125,285,73,-0.031044953879296372],[125,285,74,-0.02697074017875728],[125,285,75,-0.022856530808143483],[125,285,76,-0.01870336379112822],[125,285,77,-0.01451230568875439],[125,285,78,-0.010284451004985623],[125,285,79,-0.006020921573021698],[125,286,64,-0.06201028832959446],[125,286,65,-0.05828425109410179],[125,286,66,-0.05451209652616881],[125,286,67,-0.05069459236835566],[125,286,68,-0.04683253715373689],[125,286,69,-0.042926759719679214],[125,286,70,-0.03897811870171605],[125,286,71,-0.03498750200765552],[125,286,72,-0.030955826271870962],[125,286,73,-0.026884036289915314],[125,286,74,-0.022773104433114144],[125,286,75,-0.018624030043594336],[125,286,76,-0.014437838809409104],[125,286,77,-0.010215582119890487],[125,286,78,-0.005958336401213321],[125,286,79,-0.0016672024321395529],[125,287,64,-0.05830866126956172],[125,287,65,-0.05452933301368135],[125,287,66,-0.05070572506823853],[125,287,67,-0.0468386154616173],[125,287,68,-0.042928810787442484],[125,287,69,-0.038977145653566664],[125,287,70,-0.03498448211056554],[125,287,71,-0.03095170905987718],[125,287,72,-0.026879741641536448],[125,287,73,-0.02276952060164475],[125,287,74,-0.018622011639228997],[125,287,75,-0.014438204732948934],[125,287,76,-0.010219113447312272],[125,287,77,-0.005965774218528119],[125,287,78,-0.0016792456199843098],[125,287,79,0.0026393923926842644],[125,288,64,-0.05465445976416794],[125,288,65,-0.05082209872977733],[125,288,66,-0.04694728435578638],[125,288,67,-0.04303080510359589],[125,288,68,-0.0390734757831101],[125,288,69,-0.03507613693689818],[125,288,70,-0.031039654203271344],[125,288,71,-0.02696491765841222],[125,288,72,-0.022852841137506408],[125,288,73,-0.01870436153502017],[125,288,74,-0.014520438083771486],[125,288,75,-0.010302051613261254],[125,288,76,-0.0060502037869181735],[125,288,77,-0.001765916318391153],[125,288,78,0.002549769833126936],[125,288,79,0.0068957952885758955],[125,289,64,-0.051050351046253245],[125,289,65,-0.04716524703806485],[125,289,66,-0.04323950361489834],[125,289,67,-0.03927391981590597],[125,289,68,-0.035269318821818774],[125,289,69,-0.031226547274279925],[125,289,70,-0.02714647457349706],[125,289,71,-0.02302999215435167],[125,289,72,-0.018878012740916245],[125,289,73,-0.014691469579522026],[125,289,74,-0.010471315650024432],[125,289,75,-0.006218522855734626],[125,289,76,-0.0019340811916688794],[125,289,77,0.0023810021087494193],[125,289,78,0.006725703448551806],[125,289,79,0.011098983763682041],[125,290,64,-0.0474989581874046],[125,290,65,-0.043561432282505835],[125,290,66,-0.03958506734146208],[125,290,67,-0.035570673123347774],[125,290,68,-0.0315190813329706],[125,290,69,-0.027431144875405655],[125,290,70,-0.023307737088248348],[125,290,71,-0.019149750951727162],[125,290,72,-0.014958098276625198],[125,290,73,-0.010733708870156178],[125,290,74,-0.006477529679436045],[125,290,75,-0.0021905239130271814],[125,290,76,0.0021263298598008518],[125,290,77,0.006472038631954696],[125,290,78,0.010845595903563349],[125,290,79,0.015245982649217615],[125,291,64,-0.04400285820395347],[125,291,65,-0.040013262439610314],[125,291,66,-0.0359866133644762],[125,291,67,-0.03192373159705014],[125,291,68,-0.027825457518053515],[125,291,69,-0.023692650460224868],[125,291,70,-0.01952618787523172],[125,291,71,-0.01532696447784132],[125,291,72,-0.011095891367299021],[125,291,73,-0.0068338951260614456],[125,291,74,-0.0025419168955222726],[125,291,75,0.0017790885707886783],[125,291,76,0.006128153876891029],[125,291,77,0.010504299976784814],[125,291,78,0.014906537189644853],[125,291,79,0.019333866237809666],[125,292,64,-0.0405645802211147],[125,292,65,-0.0365232972613255],[125,292,66,-0.03244673096845477],[125,292,67,-0.02833571295715756],[125,292,68,-0.024191092434377975],[125,292,69,-0.020013735324496573],[125,292,70,-0.015804523370990864],[125,292,71,-0.011564353214750911],[125,292,72,-0.0072941354489994],[125,292,73,-0.0029947936509639728],[125,292,74,0.0013327366100633065],[125,292,75,0.005687508787795004],[125,292,76,0.010068566397505696],[125,292,77,0.014474944077938506],[125,292,78,0.01890566867657864],[125,292,79,0.02335976035832421],[125,293,64,-0.03718660369546159],[125,293,65,-0.0330940464767486],[125,293,66,-0.028967959075124533],[125,293,67,-0.024809184235260212],[125,293,68,-0.02061858013898918],[125,293,69,-0.01639701946593225],[125,293,70,-0.01214538843002777],[125,293,71,-0.007864585792111467],[125,293,72,-0.0035555218484951134],[125,293,73,7.808826043077255E-4],[125,293,74,0.005143697329076102],[125,293,75,0.00953198373110864],[125,293,76,0.013944795965545473],[125,293,77,0.018381182068644683],[125,293,78,0.022840185113031777],[125,293,79,0.027320844386952273],[125,294,64,-0.0338713566956402],[125,294,65,-0.029727968052566417],[125,294,66,-0.02555278448431854],[125,294,67,-0.02134665999647037],[125,294,68,-0.017110461892656206],[125,294,69,-0.012845069770827444],[125,294,70,-0.008551374494806155],[125,294,71,-0.004230277141280006],[125,294,72,1.1731207781187636E-4],[125,294,73,0.004490474917352119],[125,294,74,0.008888286225949268],[125,294,75,0.013309815097178948],[125,294,76,0.017754126045530436],[125,294,77,0.02222028020691394],[125,294,78,0.026707336563749462],[125,294,79,0.031214353194666145],[125,295,64,-0.030621214241241992],[125,295,65,-0.02642746651213955],[125,295,66,-0.022203640173980396],[125,295,67,-0.01795060062105791],[125,295,68,-0.013669224423849949],[125,295,69,-0.009360398261094277],[125,295,70,-0.005025017826548975],[125,295,71,-6.639867105858732E-4],[125,295,72,0.0037217847434352636],[125,295,73,0.008131380607860506],[125,295,74,0.012563880564877727],[125,295,75,0.017018361125597126],[125,295,76,0.02149389687444825],[125,295,77,0.02598956173874628],[125,295,78,0.030504430283450262],[125,295,79,0.03503757903114156],[125,296,64,-0.02743849670000649],[125,296,65,-0.023194891313404867],[125,296,66,-0.018922903659456564],[125,296,67,-0.0146234106458243],[125,296,68,-0.01029729825289262],[125,296,69,-0.005945460401878266],[125,296,70,-0.001568797797015034],[125,296,71,0.0028317832580413427],[125,296,72,0.007255372069637764],[125,296,73,0.011701054789226562],[125,296,74,0.016167915674524094],[125,296,75,0.02065503837622261],[125,296,76,0.025161507250630835],[125,296,77,0.02968640869809555],[125,296,78,0.03422883252722486],[125,296,79,0.03878787334494414],[125,297,64,-0.024325468243264634],[125,297,65,-0.02003253528550583],[125,297,66,-0.015712895411985492],[125,297,67,-0.01136743716512384],[125,297,68,-0.0069970560761836165],[125,297,69,-0.002602653469664956],[125,297,70,0.001814864758840365],[125,297,71,0.006254589391185519],[125,297,72,0.010715609161648362],[125,297,73,0.015197012058200315],[125,297,74,0.019697886650445737],[125,297,75,0.024217323443725125],[125,297,76,0.028754416259760537],[125,297,77,0.03330826364369381],[125,297,78,0.03787797029754008],[125,297,79,0.04246264854008528],[125,298,64,-0.021284335359543938],[125,298,65,-0.016942633124070766],[125,298,66,-0.012575877336301416],[125,298,67,-0.008184968291447034],[125,298,68,-0.0037708112104199304],[125,298,69,6.65685019208842E-4],[125,298,70,0.005123609129407368],[125,298,71,0.009602048784884833],[125,298,72,0.014100091923350377],[125,298,73,0.01861682812267408],[125,298,74,0.023151349995333505],[125,298,75,0.027702754609635845],[125,298,76,0.03227014493809699],[125,298,77,0.03685263133282644],[125,298,78,0.04144933302794169],[125,298,79,0.04605937966903954],[125,299,64,-0.018317245426499797],[125,299,65,-0.013927359945305695],[125,299,66,-0.009514051307522448],[125,299,67,-0.005078231675739876],[125,299,68,-6.208160969819049E-4],[125,299,69,0.0038572788194640648],[125,299,70,0.00835513625198872],[125,299,71,0.012871840544220817],[125,299,72,0.017406478610258673],[125,299,73,0.021958141367416868],[125,299,74,0.02652592519687577],[125,299,75,0.031108933431717868],[125,299,76,0.03570627787273751],[125,299,77,0.040317080331870064],[125,299,78,0.044940474203265086],[125,299,79,0.04957560606203142],[125,300,64,-0.015426285341086789],[125,300,65,-0.010988829898814188],[125,300,66,-0.006529557767234136],[125,300,67,-0.0020493930873678734],[125,300,68,0.0024507391336034343],[125,300,69,0.006969914407298654],[125,300,70,0.011507210177483108],[125,300,71,0.016061707261648822],[125,300,72,0.020632491320880922],[125,300,73,0.025218654357853542],[125,300,74,0.029819296243345273],[125,300,75,0.034433526270755216],[125,300,76,0.03906046473900719],[125,300,77,0.04369924456368916],[125,300,78,0.048349012916451446],[125,300,79,0.05300893289269158],[125,301,64,-0.012613480207897126],[125,301,65,-0.008129094839071059],[125,301,66,-0.0036244743786936033],[125,301,67,8.994449463508337E-4],[125,301,68,0.005441728037200846],[125,301,69,0.010001442370397236],[125,301,70,0.014577659474265987],[125,301,71,0.019169456434150443],[125,301,72,0.02377591742654444],[125,301,73,0.02839613528196995],[125,301,74,0.033029213076991436],[125,301,75,0.03767426575484354],[125,301,76,0.04233042177506481],[125,301,77,0.04699682479197996],[125,301,78,0.051672635362057504],[125,301,79,0.056357032680169],[125,302,64,-0.009880792085820728],[125,302,65,-0.005350143055704897],[125,302,66,-8.008147413134832E-4],[125,302,67,0.003766244440881859],[125,302,68,0.008350089171442629],[125,302,69,0.012949778737364885],[125,302,70,0.017564378571099746],[125,302,71,0.022192961819038876],[125,302,72,0.026834610939517018],[125,302,73,0.03148841933017249],[125,302,74,0.03615349298506265],[125,302,75,0.04082895218100585],[125,302,76,0.045513933193545617],[125,302,77,0.05020759004237937],[125,302,78,0.05490909626627706],[125,302,79,0.0596176467275176],[125,303,64,-0.007230118792942865],[125,303,65,-0.002653898062507186],[125,303,66,0.0019394728356613624],[125,303,67,0.006549033195567965],[125,303,68,0.011173827351030651],[125,303,69,0.0158129062466744],[125,303,70,0.020465329039162636],[125,303,71,0.025130164728507577],[125,303,72,0.029806493819513592],[125,303,73,0.034493410013193115],[125,303,74,0.039190021928554294],[125,303,75,0.043895454854228605],[125,303,76,0.04860885253033747],[125,303,77,0.05332937896043731],[125,303,78,0.05805622025357153],[125,303,79,0.06278858649645415],[125,304,64,-0.004663292769618606],[125,304,65,-4.221744510193425E-5],[125,304,66,0.004594506500347],[125,304,67,0.009245905975144915],[125,304,68,0.013911014843030216],[125,304,69,0.01858887555519438],[125,304,70,0.023278540813266507],[125,304,71,0.027979075262992203],[125,304,72,0.03268955721865953],[125,304,73,0.0374090804181124],[125,304,74,0.04213675580875185],[125,304,75,0.046871713363990666],[125,304,76,0.05161310393056262],[125,304,77,0.056360101106525284],[125,304,78,0.061111903149983944],[125,304,79,0.0658677349185632],[125,305,64,-0.002182079999859126],[125,305,65,0.002483108232582149],[125,305,66,0.007162471966143353],[125,305,67,0.011855025631535211],[125,305,68,0.016559792502010794],[125,305,69,0.021275806386150085],[125,305,70,0.02600211335211184],[125,305,71,0.030737773483194168],[125,305,72,0.035481862664757155],[125,305,73,0.0402334744023453],[125,305,74,0.044991721671414776],[125,305,75,0.049755738798126004],[125,305,76,0.054524683371606306],[125,305,77,0.059297738187519974],[125,305,78,0.06407411322297402],[125,305,79,0.06885304764278538],[125,306,64,2.1182100904192092E-4],[125,306,65,0.0049203564631131805],[125,306,66,0.009641623560461852],[125,306,67,0.014374624165997399],[125,306,68,0.019118370845110616],[125,306,69,0.023871888616596622],[125,306,70,0.028634216737660735],[125,306,71,0.033404410520846015],[125,306,72,0.03818154318293612],[125,306,73,0.04296470772567104],[125,306,74,0.04775301884868233],[125,306,75,0.05254561489410537],[125,306,76,0.05734165982327617],[125,306,77,0.06214034522534847],[125,306,78,0.06694089235786042],[125,306,79,0.07174255421927556],[125,307,64,0.0025167801887007388],[125,307,65,0.00726787377169108],[125,307,66,0.012030285214318093],[125,307,67,0.016803003731692356],[125,307,68,0.021585031067088534],[125,307,69,0.02637538330446737],[125,307,70,0.031173092713693007],[125,307,71,0.03597720962828456],[125,307,72,0.040786804355755255],[125,307,73,0.04560096912037554],[125,307,74,0.05041882003877077],[125,307,75,0.055239499127804736],[125,307,76,0.06006217634516235],[125,307,77,0.06488605166246394],[125,307,78,0.0697103571709416],[125,307,79,0.07453435921970222],[125,308,64,0.004731236813528349],[125,308,65,0.009524076633485333],[125,308,66,0.01432685139265994],[125,308,67,0.019138537576533027],[125,308,68,0.023958125995227376],[125,308,69,0.02878462365506064],[125,308,70,0.03361705566340484],[125,308,71,0.03845446716669104],[125,308,72,0.04329592532161253],[125,308,73,0.04814052129936208],[125,308,74,0.05298737232331595],[125,308,75,0.05783562373961415],[125,308,76,0.06268445112104983],[125,308,77,0.06753306240410226],[125,308,78,0.07238070005914234],[125,308,79,0.0772266432938359],[125,309,64,0.00685370034637723],[125,309,65,0.011687452332247425],[125,309,66,0.016529787965500364],[125,309,67,0.021379670926390593],[125,309,68,0.026236080984162802],[125,309,69,0.031098015927039507],[125,309,70,0.035964493526126906],[125,309,71,0.04083455353307419],[125,309,72,0.045707259711540826],[125,309,73,0.050581701902306556],[125,309,74,0.05545699812243916],[125,309,75,0.060332296697965374],[125,309,76,0.06520677843046246],[125,309,77,0.07007965879740084],[125,309,78,0.07495019018626954],[125,309,79,0.07981766416250842],[125,310,64,0.008882751225999089],[125,310,65,0.013756559760249615],[125,310,66,0.018637633019909505],[125,310,67,0.023524921808710575],[125,310,68,0.028417394750691716],[125,310,69,0.033314040277999654],[125,310,70,0.038213868653217645],[125,310,71,0.04311591402605404],[125,310,72,0.048019236524447284],[125,310,73,0.05292292437991941],[125,310,74,0.05782609608759681],[125,310,75,0.06272790260033968],[125,310,76,0.0676275295574005],[125,310,77,0.07252419954744076],[125,310,78,0.07741717440593783],[125,310,79,0.08230575754700628],[125,311,64,0.010817041596202115],[125,311,65,0.015730030159433722],[125,311,66,0.02064899761274719],[125,311,67,0.0255728818164188],[125,311,68,0.030500640148439367],[125,311,69,0.03543125154948268],[125,311,70,0.040363718603006304],[125,311,71,0.04529706965031868],[125,311,72,0.05023036094066728],[125,311,73,0.05516267881618031],[125,311,74,0.060093141932082345],[125,311,75,0.06502090351162242],[125,311,76,0.06994515363613706],[125,311,77,0.07486512157007691],[125,311,78,0.07978007812102926],[125,311,79,0.08468933803475916],[125,312,64,0.0126552959767703],[125,312,65,0.017606567803834405],[125,312,66,0.02256256646420285],[125,312,67,0.027522216812184752],[125,312,68,0.03248446488245228],[125,312,69,0.03744827999150256],[125,312,70,0.042412656874856514],[125,312,71,0.047376617859826026],[125,312,72,0.052339215073905876],[125,312,73,0.057299532688621105],[125,312,74,0.06225668919925281],[125,312,75,0.06720983973987778],[125,312,76,0.07215817843414715],[125,312,77,0.0771009407816311],[125,312,78,0.0820374060797622],[125,312,79,0.08696689988140147],[125,313,64,0.014396311876186368],[125,313,65,0.019384950623320824],[125,313,66,0.024377098592184773],[125,313,67,0.029371667573086915],[125,313,68,0.03436759216376292],[125,313,69,0.03936383192663255],[125,313,70,0.04435937358239565],[125,313,71,0.049353233239796304],[125,313,72,0.054344458661613304],[125,313,73,0.05933213156670397],[125,313,74,0.06431536996852996],[125,313,75,0.0692933305495948],[125,313,76,0.07426521107222195],[125,313,77,0.07923025282549909],[125,313,78,0.08418774310842131],[125,313,79,0.0891370177492575],[125,314,64,0.016038960346057188],[125,314,65,0.021064030768552386],[125,314,66,0.026091427887454208],[125,314,67,0.031120050375570613],[125,314,68,0.036148821303815595],[125,314,69,0.041176690353540074],[125,314,70,0.04620263606579822],[125,314,71,0.05122566812738258],[125,314,72,0.05624482969367936],[125,314,73,0.061259199748177645],[125,314,74,0.0662678954990567],[125,314,75,0.07127007481228281],[125,314,76,0.07626493868164427],[125,314,77,0.08125173373554997],[125,314,78,0.08622975478062508],[125,314,79,0.09119834738212679],[125,315,64,0.01758218647732783],[125,315,65,0.022642735117235746],[125,315,66,0.02770446362959411],[125,315,67,0.032766257520792624],[125,315,68,0.037827028248848565],[125,315,69,0.04288571549006506],[125,315,70,0.04794128944321965],[125,315,71,0.05299275317111474],[125,315,72,0.05803914497954554],[125,315,73,0.0630795408335125],[125,315,74,0.06811305681111088],[125,315,75,0.0731388515945205],[125,315,76,0.0781561289985303],[125,315,77,0.0831641405364204],[125,315,78,0.08816218802323561],[125,315,79,0.09314962621647405],[125,316,64,0.019025009838225082],[125,316,65,0.024120065721623618],[125,316,66,0.02921519094374972],[125,316,67,0.03430925780028657],[125,316,68,0.03940116605416466],[125,316,69,0.04448984525577576],[125,316,70,0.049574257101311164],[125,316,71,0.05465339782905124],[125,316,72,0.05972630065366488],[125,316,73,0.06479203823834317],[125,316,74,0.06984972520520394],[125,316,75,0.0748985206833849],[125,316,76,0.07993763089526473],[125,316,77,0.08496631178063196],[125,316,78,0.0899838716588372],[125,316,79,0.09498967392895119],[125,317,64,0.020366524854001505],[125,317,65,0.025495100197328785],[125,317,66,0.030622671198216905],[125,317,67,0.03574809690202849],[125,317,68,0.04087026529837268],[125,317,69,0.04598809569408158],[125,317,70,0.051100541124900756],[125,317,71,0.05620659080571927],[125,317,72,0.061305272619395196],[125,317,73,0.06639565564400565],[125,317,74,0.07147685271895304],[125,317,75,0.07654802304935007],[125,317,76,0.08160837484911782],[125,317,77,0.08665716802262116],[125,317,78,0.09169371688487468],[125,317,79,0.09671739292034184],[125,318,64,0.021605901128394334],[125,318,65,0.026766992053364275],[125,318,66,0.03192604234278734],[125,318,67,0.03708189775680781],[125,318,68,0.04223343443750269],[125,318,69,0.047379561333807885],[125,318,70,0.05251922266574047],[125,318,71,0.05765140042774586],[125,318,72,0.06277511693122464],[125,318,73,0.06788943738606537],[125,318,74,0.07299347252162205],[125,318,75,0.0780863812465494],[125,318,76,0.08316737334793892],[125,318,77,0.08823571222957438],[125,318,78,0.093290717689342],[125,318,79,0.09833176873581848],[125,319,64,0.022742383706848668],[125,319,65,0.02793497096345962],[125,319,66,0.03312451918790271],[125,319,67,0.03830986082495741],[125,319,68,0.043489860099048844],[125,319,69,0.048663415490285855],[125,319,70,0.053829462250373966],[125,319,71,0.05898697495823474],[125,319,72,0.06413497011538377],[125,319,73,0.06927250878089455],[125,319,74,0.07439869924638814],[125,319,75,0.0795126997504593],[125,319,76,0.08461372123298427],[125,319,77,0.08970103012912728],[125,319,78,0.09477395120308268],[125,319,79,0.09983187042157401],[126,-64,64,-0.16916444266457864],[126,-64,65,-0.17316140271581792],[126,-64,66,-0.17703148791586953],[126,-64,67,-0.18077325050544557],[126,-64,68,-0.1843854143773177],[126,-64,69,-0.18786688106830984],[126,-64,70,-0.1912167358168575],[126,-64,71,-0.1944342536860374],[126,-64,72,-0.19751890575207454],[126,-64,73,-0.20047036535824514],[126,-64,74,-0.20328851443442175],[126,-64,75,-0.20597344988191457],[126,-64,76,-0.20852549002388643],[126,-64,77,-0.2109451811212042],[126,-64,78,-0.21323330395378637],[126,-64,79,-0.21539088046741428],[126,-63,64,-0.16376752726721866],[126,-63,65,-0.16775284105865795],[126,-63,66,-0.17161180441889134],[126,-63,67,-0.17534296717813946],[126,-63,68,-0.17894505031420094],[126,-63,69,-0.1824169519369634],[126,-63,70,-0.1857577533384922],[126,-63,71,-0.1889667251086008],[126,-63,72,-0.19204333331591417],[126,-63,73,-0.19498724575433368],[126,-63,74,-0.1977983382551648],[126,-63,75,-0.20047670106454474],[126,-63,76,-0.2030226452864632],[126,-63,77,-0.20543670939122605],[126,-63,78,-0.20771966578943069],[126,-63,79,-0.20987252747141638],[126,-62,64,-0.15828467777902755],[126,-62,65,-0.16225756119501922],[126,-62,66,-0.16610464770713096],[126,-62,67,-0.16982448462718436],[126,-62,68,-0.17341578988146567],[126,-62,69,-0.17687745798728427],[126,-62,70,-0.18020856609512448],[126,-62,71,-0.18340838009628635],[126,-62,72,-0.1864763607960349],[126,-62,73,-0.18941217015216127],[126,-62,74,-0.19221567757921798],[126,-62,75,-0.1948869663180688],[126,-62,76,-0.1974263398710403],[126,-62,77,-0.1998343285025317],[126,-62,78,-0.2021116958051452],[126,-62,79,-0.2042594453313057],[126,-61,64,-0.15272013090389747],[126,-61,65,-0.15667980712550733],[126,-61,66,-0.1605142687723371],[126,-61,67,-0.16422206053121147],[126,-61,68,-0.16780189714196936],[126,-61,69,-0.17125266936560712],[126,-61,70,-0.1745734500180276],[126,-61,71,-0.1777635000692882],[126,-61,72,-0.1808222748083701],[126,-61,73,-0.18374943007337163],[126,-61,74,-0.18654482854738674],[126,-61,75,-0.18920854611971039],[126,-61,76,-0.19174087831265607],[126,-61,77,-0.19414234677384645],[126,-61,78,-0.19641370583403184],[126,-61,79,-0.19855594913041386],[126,-60,64,-0.1470781727367676],[126,-60,65,-0.1510238727523776],[126,-60,66,-0.15484496899962463],[126,-60,67,-0.15854000343511676],[126,-60,68,-0.1621076874790034],[126,-60,69,-0.16554690797424654],[126,-60,70,-0.16885673321150363],[126,-60,71,-0.17203641901952693],[126,-60,72,-0.1750854149210921],[126,-60,73,-0.17800337035436276],[126,-60,74,-0.1807901409599525],[126,-60,75,-0.18344579493332525],[126,-60,76,-0.18597061944281867],[126,-60,77,-0.18836512711315345],[126,-60,78,-0.190630062574481],[126,-60,79,-0.1927664090769481],[126,-59,64,-0.14136313392062505],[126,-59,65,-0.14529409702678886],[126,-59,66,-0.14910109530538007],[126,-59,67,-0.15278266787901496],[126,-59,68,-0.15633752271669243],[126,-59,69,-0.15976454258373407],[126,-59,70,-0.16306279105735055],[126,-59,71,-0.16623151860773655],[126,-59,72,-0.1692701687447027],[126,-59,73,-0.17217838422975806],[126,-59,74,-0.17495601335390032],[126,-59,75,-0.17760311628075498],[126,-59,76,-0.18011997145535164],[126,-59,77,-0.1825070820783925],[126,-59,78,-0.1847651826460759],[126,-59,79,-0.1868952455554458],[126,-58,64,-0.13557938467736252],[126,-58,65,-0.1394948589694298],[126,-58,66,-0.14328703514807273],[126,-58,67,-0.14695444939965552],[126,-58,68,-0.15049580611242708],[126,-58,69,-0.15390998381668308],[126,-58,70,-0.1571960411905684],[126,-58,71,-0.16035322313141465],[126,-58,72,-0.16338096689263004],[126,-58,73,-0.16627890828604897],[126,-58,74,-0.1690468879500001],[126,-58,75,-0.17168495768273706],[126,-58,76,-0.17419338684151275],[126,-58,77,-0.17657266880716171],[126,-58,78,-0.17882352751424757],[126,-58,79,-0.1809469240467435],[126,-57,64,-0.12973132971279744],[126,-57,65,-0.13363057256482302],[126,-57,66,-0.13740721141228474],[126,-57,67,-0.1410597794046109],[126,-57,68,-0.14458697722164604],[126,-57,69,-0.14798767900359433],[126,-57,70,-0.1512609383466128],[126,-57,71,-0.1544059943639503],[126,-57,72,-0.15742227781265106],[126,-57,73,-0.16030941728572645],[126,-57,74,-0.1630672454700598],[126,-57,75,-0.1656958054696791],[126,-57,76,-0.16819535719469236],[126,-57,77,-0.17056638381573463],[126,-57,78,-0.17280959828399323],[126,-57,79,-0.17492594991678012],[126,-56,64,-0.12382340299570871],[126,-56,65,-0.12770568152916706],[126,-56,66,-0.1314660771658125],[126,-56,67,-0.13510311991909196],[126,-56,68,-0.1386155066348168],[126,-56,69,-0.1420021069104498],[126,-56,70,-0.1452619690800514],[126,-56,71,-0.1483943262647851],[126,-56,72,-0.15139860248899217],[126,-56,73,-0.1542744188617564],[126,-56,74,-0.1570215998241974],[126,-56,75,-0.1596401794621578],[126,-56,76,-0.16213040788455257],[126,-56,77,-0.16449275766724591],[126,-56,78,-0.16672793036251732],[126,-56,79,-0.16883686307408152],[126,-55,64,-0.1178600624107432],[126,-55,65,-0.12172465395156462],[126,-55,66,-0.1254681102896904],[126,-55,67,-0.1290889582052419],[126,-55,68,-0.1325858905864694],[126,-55,69,-0.13595777233795348],[126,-55,70,-0.13920364635447435],[126,-55,71,-0.14232273956044939],[126,-55,72,-0.14531446901495393],[126,-55,73,-0.1481784480822378],[126,-55,74,-0.1509144926679874],[126,-55,75,-0.15352262752098578],[126,-55,76,-0.1560030926004482],[126,-55,77,-0.1583563495088972],[126,-55,78,-0.16058308799063337],[126,-55,79,-0.16268423249577568],[126,-54,64,-0.11184578428548597],[126,-54,65,-0.11569197680893151],[126,-54,66,-0.11941780798143353],[126,-54,67,-0.12302180125420104],[126,-54,68,-0.12650264543657286],[126,-54,69,-0.12985920059270772],[126,-54,70,-0.13309050400395073],[126,-54,71,-0.13619577619678236],[126,-54,72,-0.13917442703635885],[126,-54,73,-0.1420260618855561],[126,-54,74,-0.1447504878297744],[126,-54,75,-0.14734771996714602],[126,-54,76,-0.14981798776443367],[126,-54,77,-0.1521617414784754],[126,-54,78,-0.15437965864323644],[126,-54,79,-0.15647265062244076],[126,-53,64,-0.10578505779154967],[126,-53,65,-0.10961215035444494],[126,-53,66,-0.11331968113135582],[126,-53,67,-0.11690617015080718],[126,-53,68,-0.12037030202412324],[126,-53,69,-0.123710931830188],[126,-53,70,-0.1269270910658944],[126,-53,71,-0.13001799366218325],[126,-53,72,-0.13298304206568534],[126,-53,73,-0.13582183338587928],[126,-53,74,-0.13853416560801424],[126,-53,75,-0.14112004387145372],[126,-53,76,-0.14357968681371092],[126,-53,77,-0.1459135329800496],[126,-53,78,-0.1481222472986956],[126,-53,79,-0.15020672762164045],[126,-52,64,-0.09968237921952883],[126,-52,65,-0.10348968237937295],[126,-52,66,-0.10717824857180325],[126,-52,67,-0.11074659431076017],[126,-52,68,-0.11419339989276667],[126,-52,69,-0.11751751526935272],[126,-52,70,-0.12071796598517448],[126,-52,71,-0.12379395918173441],[126,-52,72,-0.1267448896667137],[126,-52,73,-0.12957034604883133],[126,-52,74,-0.13227011693847723],[126,-52,75,-0.13484419721377572],[126,-52,76,-0.13729279435235264],[126,-52,77,-0.13961633482867308],[126,-52,78,-0.14181547057700494],[126,-52,79,-0.14389108551998142],[126,-51,64,-0.09354224612812023],[126,-51,65,-0.09732908234858684],[126,-51,66,-0.1009980311996116],[126,-51,67,-0.10454760559056919],[126,-51,68,-0.10797648138878091],[126,-51,69,-0.11128350327919534],[126,-51,70,-0.1144676906897788],[126,-51,71,-0.1175282437825107],[126,-51,72,-0.12046454951000507],[126,-51,73,-0.12327618773766658],[126,-51,74,-0.12596293743162779],[126,-51,75,-0.1285247829121301],[126,-51,76,-0.1309619201726181],[126,-51,77,-0.13327476326440946],[126,-51,78,-0.13546395074700612],[126,-51,79,-0.13753035220400955],[126,-50,64,-0.08736915136726742],[126,-50,65,-0.09113485540961808],[126,-50,66,-0.09478354597163996],[126,-50,67,-0.09831373227013307],[126,-50,68,-0.1017240856312609],[126,-50,69,-0.105013445337097],[126,-50,70,-0.10818082453788613],[126,-50,71,-0.11122541622992332],[126,-50,72,-0.11414659929906512],[126,-50,73,-0.11694394462978674],[126,-50,74,-0.1196172212800305],[126,-50,75,-0.12216640272150514],[126,-50,76,-0.12459167314570785],[126,-50,77,-0.12689343383553497],[126,-50,78,-0.12907230960253746],[126,-50,79,-0.13112915528979452],[126,-49,64,-0.08116757697515853],[126,-49,65,-0.08491149627508388],[126,-49,66,-0.08853929977321306],[126,-49,67,-0.0920494929077782],[126,-49,68,-0.09544074235433908],[126,-49,69,-0.09871188185880408],[126,-49,70,-0.10186191813617662],[126,-49,71,-0.10489003683492759],[126,-49,72,-0.10779560856701054],[126,-49,73,-0.11057819500343036],[126,-49,74,-0.11323755503561339],[126,-49,75,-0.11577365100223747],[126,-49,76,-0.11818665498179193],[126,-49,77,-0.12047695515073942],[126,-49,78,-0.12264516220732724],[126,-49,79,-0.1246921158610288],[126,-48,64,-0.07494198794940377],[126,-48,65,-0.07866348297881254],[126,-48,66,-0.0822697831597955],[126,-48,67,-0.08575939006808975],[126,-48,68,-0.08913096562176903],[126,-48,69,-0.09238333790036268],[126,-48,70,-0.09551550702970579],[126,-48,71,-0.09852665113242676],[126,-48,72,-0.10141613234408475],[126,-48,73,-0.10418350289486988],[126,-48,74,-0.10682851125711412],[126,-48,75,-0.10935110835827078],[126,-48,76,-0.11175145385963314],[126,-48,77,-0.11402992250066235],[126,-48,78,-0.11618711050897601],[126,-48,79,-0.11822384207597458],[126,-47,64,-0.06869682589222503],[126,-47,65,-0.07239527050549655],[126,-47,66,-0.07597946397173727],[126,-47,67,-0.07944790392236545],[126,-47,68,-0.08279924741370692],[126,-47,69,-0.0860323167318392],[126,-47,70,-0.08914610526317746],[126,-47,71,-0.09213978343070062],[126,-47,72,-0.09501270469584044],[126,-47,73,-0.09776441162594374],[126,-47,74,-0.10039464202754733],[126,-47,75,-0.1029033351451365],[126,-47,76,-0.10529063792564874],[126,-47,77,-0.10755691134859469],[126,-47,78,-0.10970273682185061],[126,-47,79,-0.11172892264309342],[126,-46,64,-0.062436502529509275],[126,-46,65,-0.06611128429372881],[126,-46,66,-0.06967278082193129],[126,-46,67,-0.0731194857215367],[126,-46,68,-0.07645005108553204],[126,-46,69,-0.07966329328267785],[126,-46,70,-0.08275819881346203],[126,-46,71,-0.08573393023170617],[126,-46,72,-0.08858983213184268],[126,-46,73,-0.09132543720176967],[126,-46,74,-0.09394047234153191],[126,-46,75,-0.09643486484748964],[126,-46,76,-0.09880874866224432],[126,-46,77,-0.10106247069018803],[126,-46,78,-0.10319659717873231],[126,-46,79,-0.10521192016519099],[126,-45,64,-0.05616539310403146],[126,-45,65,-0.05981591361272509],[126,-45,66,-0.06335413645669752],[126,-45,67,-0.06677855114187381],[126,-45,68,-0.07008780469902953],[126,-45,69,-0.07328070745900406],[126,-45,70,-0.07635623889367049],[126,-45,71,-0.07931355352256753],[126,-45,72,-0.08215198688520375],[126,-45,73,-0.08487106157895641],[126,-45,74,-0.08747049336279877],[126,-45,75,-0.08995019732652587],[126,-45,76,-0.09231029412574276],[126,-45,77,-0.09455111628248902],[126,-45,78,-0.09667321455154698],[126,-45,79,-0.09867736435241281],[126,-44,64,-0.049887829642699555],[126,-44,65,-0.05351350481258821],[126,-44,66,-0.057027890989746366],[126,-44,67,-0.06042947350332262],[126,-44,68,-0.06371689422577065],[126,-44,69,-0.0668889573327246],[126,-44,70,-0.06994463512863969],[126,-44,71,-0.07288307393809756],[126,-44,72,-0.07570360006280008],[126,-44,73,-0.0784057258041595],[126,-44,74,-0.08098915555172626],[126,-44,75,-0.08345379193712366],[126,-44,76,-0.08579974205375529],[126,-44,77,-0.08802732374215216],[126,-44,78,-0.09013707194101239],[126,-44,79,-0.09212974510391791],[126,-43,64,-0.04360809409765365],[126,-43,65,-0.04720835444794169],[126,-43,66,-0.050698355009044405],[126,-43,67,-0.05407657686029932],[126,-43,68,-0.05734165662253177],[126,-43,69,-0.06049239220225644],[126,-43,70,-0.06352774860164678],[126,-43,71,-0.06644686379418463],[126,-43,72,-0.06924905466599796],[126,-43,73,-0.07193382302280937],[126,-43,74,-0.07450086166272396],[126,-43,75,-0.07695006051453701],[126,-43,76,-0.07928151284181828],[126,-43,77,-0.08149552151264472],[126,-43,78,-0.08359260533503732],[126,-43,79,-0.0855735054580734],[126,-42,64,-0.037330411361545246],[126,-42,65,-0.04090470227526244],[126,-42,66,-0.044369782556917925],[126,-42,67,-0.047724128965279],[126,-42,68,-0.05096637277907745],[126,-42,69,-0.054095305525206805],[126,-42,70,-0.05710988477269696],[126,-42,71,-0.06000923999237484],[126,-42,72,-0.06279267848222159],[126,-42,73,-0.06545969135834728],[126,-42,74,-0.068009959611812],[126,-42,75,-0.07044336023097619],[126,-42,76,-0.07275997238963228],[126,-42,77,-0.07496008370079554],[126,-42,78,-0.07704419653620187],[126,-42,79,-0.07901303441149288],[126,-41,64,-0.03105894215682492],[126,-41,65,-0.034606724123742105],[126,-41,66,-0.038046363983222475],[126,-41,67,-0.041376334105004964],[126,-41,68,-0.04459526033813621],[126,-41,69,-0.04770192772284498],[126,-41,70,-0.05069528626820352],[126,-41,71,-0.053574456795478675],[126,-41,72,-0.05633873684719126],[126,-41,73,-0.05898760666179348],[126,-41,74,-0.0615207352142092],[126,-41,75,-0.06393798632190195],[126,-41,76,-0.06623942481673539],[126,-41,77,-0.06842532278250013],[126,-41,78,-0.07049616585815466],[126,-41,79,-0.07245265960675973],[126,-40,64,-0.024797775798900856],[126,-40,65,-0.028318524639532106],[126,-40,66,-0.03173221867142939],[126,-40,67,-0.03503732580916907],[126,-40,68,-0.03823246638742439],[126,-40,69,-0.04131641885620985],[126,-40,70,-0.04428812554191808],[126,-40,71,-0.047146698474054505],[126,-40,72,-0.0498914252776822],[126,-40,73,-0.05252177513150291],[126,-40,74,-0.055037404791792977],[126,-40,75,-0.05743816468188634],[126,-40,76,-0.05972410504745174],[126,-40,77,-0.06189548217744145],[126,-40,78,-0.06395276469076672],[126,-40,79,-0.06589663988866723],[126,-39,64,-0.018550922833459715],[126,-39,65,-0.02204412990367277],[126,-39,66,-0.02543138763793662],[126,-39,67,-0.028711159431871747],[126,-39,68,-0.031882060024020054],[126,-39,69,-0.03494286117415879],[126,-39,70,-0.03789249740741274],[126,-39,71,-0.0407300718240694],[126,-39,72,-0.04345486197511572],[126,-39,73,-0.0460663258034113],[126,-39,74,-0.048564107650728494],[126,-39,75,-0.050948044330344056],[126,-39,76,-0.053218171265430825],[126,-39,77,-0.0553747286931312],[126,-39,78,-0.057418167934357944],[126,-39,79,-0.05934915772930305],[126,-38,64,-0.012322307547813827],[126,-38,65,-0.015787479923565773],[126,-38,66,-0.01914782600445597],[126,-38,67,-0.022401804605714837],[126,-38,68,-0.02554802479094631],[126,-38,69,-0.028585251533221445],[126,-38,70,-0.03151241144197381],[126,-38,71,-0.03432859855560788],[126,-38,72,-0.037033080199830426],[126,-38,73,-0.0396253029116318],[126,-38,74,-0.042104898429132565],[126,-38,75,-0.044471689746994336],[126,-38,76,-0.046725697237634645],[126,-38,77,-0.04886714483812937],[126,-38,78,-0.05089646630285127],[126,-38,79,-0.05281431152182059],[126,-37,64,-0.006115760356102062],[126,-37,65,-0.00955242099781728],[126,-37,66,-0.012885395343309791],[126,-37,67,-0.01611313756835686],[126,-37,68,-0.019234250985787238],[126,-37,69,-0.022247493689073083],[126,-37,70,-0.025151784261729704],[126,-37,71,-0.027946207552431934],[126,-37,72,-0.030630020515864387],[126,-37,73,-0.03320265811922174],[126,-37,74,-0.035663739314586884],[126,-37,75,-0.03801307307687396],[126,-37,76,-0.040250664507584966],[126,-37,77,-0.0423767210042606],[126,-37,78,-0.044391658495670505],[126,-37,79,-0.04629610774272375],[126,-36,64,6.498994131554081E-5],[126,-36,65,-0.003342697954792473],[126,-36,66,-0.006647855895974941],[126,-36,67,-0.009848933361872203],[126,-36,68,-0.012944527841683207],[126,-36,69,-0.01593339045998443],[126,-36,70,-0.01881443166836072],[126,-36,71,-0.02158672700276132],[126,-36,72,-0.024249522906593324],[126,-36,73,-0.02680224261947206],[126,-36,74,-0.029244492131856092],[126,-36,75,-0.03157606620525044],[126,-36,76,-0.03379695445823461],[126,-36,77,-0.03590734751818414],[126,-36,78,-0.03790764323874285],[126,-36,79,-0.03979845298301832],[126,-35,64,0.006216324024550524],[126,-35,65,0.002838053735397139],[126,-35,66,-4.3885866459492107E-4],[126,-35,67,-0.003612857904632061],[126,-35,68,-0.006682535580421312],[126,-35,69,-0.00964663576195357],[126,-35,70,-0.012504060667105632],[126,-35,71,-0.0152538764009722],[126,-35,72,-0.01789531876093997],[126,-35,73,-0.020427799107429312],[126,-35,74,-0.02285091030051889],[126,-35,75,-0.02516443270215163],[126,-35,76,-0.027368340244164124],[126,-35,77,-0.029462806562022492],[126,-35,78,-0.03144821119430796],[126,-35,79,-0.03332514584793689],[126,-34,64,0.01233474004675994],[126,-34,65,0.00898631597527244],[126,-34,66,0.005738062623336537],[126,-34,67,0.0025915400640862396],[126,-34,68,-4.518373378276097E-4],[126,-34,69,-0.003390806515736311],[126,-34,70,-0.006224261356273519],[126,-34,71,-0.00895125842043032],[126,-34,72,-0.011571022730361813],[126,-34,73,-0.014082953621861738],[126,-34,74,-0.016486630662728374],[126,-34,75,-0.018781819636716546],[126,-34,76,-0.020968478593320294],[126,-34,77,-0.02304676396326366],[126,-34,78,-0.025017036739750753],[126,-34,79,-0.026879868725453115],[126,-33,64,0.018416861752872604],[126,-33,65,0.015098696181000681],[126,-33,66,0.011879499677389438],[126,-33,67,0.008760837167034796],[126,-33,68,0.0057441290388126065],[126,-33,69,0.0028306455745080727],[126,-33,70,2.150131201938965E-5],[126,-33,71,-0.00268235065718192],[126,-33,72,-0.005280124456341295],[126,-33,73,-0.007771207257391222],[126,-33,74,-0.010155165180812609],[126,-33,75,-0.012431749261092473],[126,-33,76,-0.014600901478013184],[126,-33,77,-0.01666276085365659],[126,-33,78,-0.018617669615174526],[126,-33,79,-0.020466179423298314],[126,-32,64,0.024459446724148348],[126,-32,65,0.021171935549718857],[126,-32,66,0.017982177933387966],[126,-32,67,0.01489174369915014],[126,-32,68,0.01190205932098043],[126,-32,69,0.00901440237062301],[126,-32,70,0.006229895899549143],[126,-32,71,0.0035495027551705194],[126,-32,72,9.740198312911952E-4],[126,-32,73,-0.0014959277471204846],[126,-32,74,-0.003859892505059137],[126,-32,75,-0.006117610564209119],[126,-32,76,-0.008269007655507754],[126,-32,77,-0.010314205197431425],[126,-32,78,-0.0122535264400494],[126,-32,79,-0.014087502674823726],[126,-31,64,0.030459394748714508],[126,-31,65,0.02720291745332515],[126,-31,66,0.024042964969528513],[126,-31,67,0.020981112065081464],[126,-31,68,0.018018791356947172],[126,-31,69,0.015157287778064799],[126,-31,70,0.012397732978286502],[126,-31,71,0.009741099659561492],[126,-31,72,0.007188195845357459],[126,-31,73,0.004739659084394998],[126,-31,74,0.002395950588478968],[126,-31,75,1.573493047258845E-4],[126,-31,76,-0.0019760540780530134],[126,-31,77,-0.004004363188690685],[126,-31,78,-0.005927882098781034],[126,-31,79,-0.007747121513542954],[126,-30,64,0.036413756318247725],[126,-30,65,0.0331886759588893],[126,-30,66,0.030058879049583598],[126,-30,67,0.027025945344250957],[126,-30,68,0.02409131365775874],[126,-30,69,0.021256276351887538],[126,-30,70,0.018521973755454613],[126,-30,71,0.0158893885186856],[126,-30,72,0.013359339901816258],[126,-30,73,0.01093247799800201],[126,-30,74,0.008609277890322509],[126,-30,75,0.0063900337431743726],[126,-30,76,0.004274852827818143],[126,-30,77,0.0022636494821960396],[126,-30,78,3.5613900497055706E-4],[126,-30,79,-0.0014481685161935598],[126,-29,64,0.04231974125047522],[126,-29,65,0.039126404475370746],[126,-29,66,0.03602709779287472],[126,-29,67,0.033023405983125254],[126,-29,68,0.030116774110858113],[126,-29,69,0.02730850203076718],[126,-29,70,0.0245997388270226],[126,-29,71,0.021991477187028652],[126,-29,72,0.019484547709408995],[126,-29,73,0.01707961314629669],[126,-29,74,0.014777162579712622],[126,-29,75,0.012577505532329614],[126,-29,76,0.010480766012385345],[126,-29,77,0.008486876492862727],[126,-29,78,0.006595571824884461],[126,-29,79,0.004806383085350863],[126,-28,64,0.048174727437667486],[126,-28,65,0.0450134645268091],[126,-28,66,0.04194496697118166],[126,-28,67,0.038970824614871113],[126,-28,68,0.036092488821513724],[126,-28,69,0.033311266999246025],[126,-28,70,0.030628317059806287],[126,-28,71,0.028044641811874937],[126,-28,72,0.025561083288636266],[126,-28,73,0.023178317009639682],[126,-28,74,0.02089684617674814],[126,-28,75,0.01871699580446562],[126,-28,76,0.0166389067844116],[126,-28,77,0.014662529884055586],[126,-28,78,0.012787619679666129],[126,-28,79,0.011013728423495128],[126,-27,64,0.05397626972126457],[126,-27,65,0.050847394652126066],[126,-27,66,0.04781000943272806],[126,-27,67,0.044865709006531196],[126,-27,68,0.04201595108220224],[126,-27,69,0.03926205067833399],[126,-27,70,0.03660517460231605],[126,-27,71,0.03404633586343764],[126,-27,72,0.031586388020210854],[126,-27,73,0.029226019461985775],[126,-27,74,0.026965747624653646],[126,-27,75,0.024805913140721225],[126,-27,76,0.022746673923529692],[126,-27,77,0.020787999185730377],[126,-27,78,0.018929663391970775],[126,-27,79,0.01717124014580995],[126,-26,64,0.05972210889232976],[126,-26,65,0.05662591943124373],[126,-26,66,0.05361993415294519],[126,-26,67,0.05070575313342285],[126,-26,68,0.047884840469633594],[126,-26,69,0.04515851884416555],[126,-26,70,0.04252796402405046],[126,-26,71,0.03999419929380332],[126,-26,72,0.0375580898226785],[126,-26,73,0.03522033696621607],[126,-26,74,0.032981472501870224],[126,-26,75,0.030841852799006086],[126,-26,76,0.028801652923038934],[126,-26,77,0.026860860673823317],[126,-26,78,0.025019270558251483],[126,-26,79,0.0232764776970783],[126,-25,64,0.06541018081799244],[126,-25,65,0.06234695863766937],[126,-25,66,0.059372645412166025],[126,-25,67,0.056488846380911784],[126,-25,68,0.05369703206958143],[126,-25,69,0.05099853287486655],[126,-25,70,0.04839453358339019],[126,-25,71,0.04588606782484905],[126,-25,72,0.043474012459366884],[126,-25,73,0.04115908189913364],[126,-25,74,0.0389418223641258],[126,-25,75,0.03682260607219001],[126,-25,76,0.034801625363265254],[126,-25,77,0.03287888675785311],[126,-25,78,0.031054204949693243],[126,-25,79,0.029327196732659933],[126,-24,64,0.07103862569401942],[126,-24,65,0.06800863651769273],[126,-24,66,0.06506625210039696],[126,-24,67,0.062213082873709524],[126,-24,68,0.059450605829664105],[126,-24,69,0.056780159125780494],[126,-24,70,0.05420293662424025],[126,-24,71,0.05171998236528219],[126,-24,72,0.0493321849748084],[126,-24,73,0.047040272006271144],[126,-24,74,0.04484480421663972],[126,-24,75,0.04274616977672541],[126,-24,76,0.040744578415642496],[126,-24,77,0.03884005549951508],[126,-24,78,0.037032436044383776],[126,-24,79,0.03532135866333319],[126,-23,64,0.0766057974232226],[126,-23,65,0.07360929119590098],[126,-23,66,0.07069907714886858],[126,-23,67,0.06787677093239497],[126,-23,68,0.06514385603977235],[126,-23,69,0.06250167843275156],[126,-23,70,0.05995144110111983],[126,-23,71,0.0574941985564964],[126,-23,72,0.05513085126033568],[126,-23,73,0.05286213998620626],[126,-23,74,0.050688640116150596],[126,-23,75,0.04861075587139618],[126,-23,76,0.04662871447720185],[126,-23,77,0.04474256026194634],[126,-23,78,0.04295214869041286],[126,-23,79,0.04125714033129346],[126,-22,64,0.08211027311984864],[126,-22,65,0.07914748420715867],[126,-22,66,0.07626966708851668],[126,-22,67,0.07347844265730863],[126,-22,68,0.07077530094030104],[126,-22,69,0.06816159574361669],[126,-22,70,0.06563853923285023],[126,-22,71,0.06320719644739947],[126,-22,72,0.06086847974900045],[126,-22,73,0.05862314320453621],[126,-22,74,0.05647177690292304],[126,-22,75,0.05441480120634612],[126,-22,76,0.052452460935626055],[126,-22,77,0.05058481948982607],[126,-22,78,0.04881175290005302],[126,-22,79,0.04713294381747324],[126,-21,64,0.08755086274010404],[126,-21,65,0.0846220101552051],[126,-21,66,0.08177680173554258],[126,-21,67,0.07901686363997507],[126,-21,68,0.0763436924583325],[126,-21,69,0.07375864987806025],[126,-21,70,0.07126295728499621],[126,-21,71,0.06885769029836564],[126,-21,72,0.06654377323997374],[126,-21,73,0.06432197353767066],[126,-21,74,0.062192896062892467],[126,-21,75,0.06015697740254622],[126,-21,76,0.058214480065026164],[126,-21,77,0.056365486620466476],[126,-21,78,0.054609893775184326],[126,-21,79,0.05294740638033768],[126,-20,64,0.09292661883850462],[126,-20,65,0.09003190649755821],[126,-20,66,0.08721950400374567],[126,-20,67,0.08449104280173869],[126,-20,68,0.08184802607146147],[126,-20,69,0.07929182341551644],[126,-20,70,0.07682366548074471],[126,-20,71,0.07444463851399752],[126,-20,72,0.07215567885210628],[126,-20,73,0.06995756734612091],[126,-20,74,0.06785092371962242],[126,-20,75,0.0658362008613772],[126,-20,76,0.06391367905211986],[126,-20,77,0.0620834601255692],[126,-20,78,0.06034546156363485],[126,-20,79,0.05869941052583283],[126,-19,64,0.09823684645022346],[126,-19,65,0.09537646345689799],[126,-19,66,0.09259704984379669],[126,-19,67,0.08990024235978855],[126,-19,68,0.08728755079943262],[126,-19,69,0.08476035271129412],[126,-19,70,0.08231988804039458],[126,-19,71,0.07996725370487012],[126,-19,72,0.07770339810682714],[126,-19,73,0.07552911557746211],[126,-19,74,0.07344504075625613],[126,-19,75,0.07145164290450623],[126,-19,76,0.06954922015298437],[126,-19,77,0.06773789368382843],[126,-19,78,0.06601760184661876],[126,-19,79,0.0643880942086642],[126,-18,64,0.1034811130995581],[126,-18,65,0.10065523405905374],[126,-18,66,0.09790897830958001],[126,-18,67,0.09524398792069477],[126,-18,68,0.09266177932372055],[126,-18,69,0.0901637380410506],[126,-18,70,0.0877511133495873],[126,-18,71,0.0854250128783891],[126,-18,72,0.0831863971405098],[126,-18,73,0.08103607399910173],[126,-18,74,0.07897469306759108],[126,-18,75,0.07700274004418783],[126,-18,76,0.07512053098052252],[126,-18,77,0.07332820648451055],[126,-18,78,0.07162572585740246],[126,-18,79,0.07001286116504102],[126,-17,64,0.10865925893423167],[126,-17,65,0.10586804429730534],[126,-17,66,0.1031551017513126],[126,-17,67,0.10052207870116803],[126,-17,68,0.09797049823475645],[126,-17,69,0.09550175387332072],[126,-17,70,0.09311710425598207],[126,-17,71,0.09081766775846356],[126,-17,72,0.08860441704600697],[126,-17,73,0.08647817356054988],[126,-17,74,0.08443960194197453],[126,-17,75,0.08248920438368978],[126,-17,76,0.0806273149223341],[126,-17,77,0.07885409366170959],[126,-17,78,0.07716952093089746],[126,-17,79,0.07557339137657759],[126,-16,64,0.11377140698569854],[126,-16,65,0.11101500342317172],[126,-16,66,0.10833551613561487],[126,-16,67,0.10573459787621409],[126,-16,68,0.10321377840697532],[126,-16,69,0.10077445927027628],[126,-16,70,0.0984179084945499],[126,-16,71,0.09614525523417028],[126,-16,72,0.09395748434352946],[126,-16,73,0.09185543088537174],[126,-16,74,0.0898397745732018],[126,-16,75,0.08791103414801793],[126,-16,76,0.08606956168917212],[126,-16,77,0.08431553685945359],[126,-16,78,0.08264896108435393],[126,-16,79,0.08106965166553604],[126,-15,64,0.11881797355554313],[126,-15,65,0.116096514363775],[126,-15,66,0.11345061149261892],[126,-15,67,0.11088192305477396],[126,-15,68,0.10839198550177953],[126,-15,69,0.10598220841680694],[126,-15,70,0.10365386924158104],[126,-15,71,0.10140810793750388],[126,-15,72,0.09924592158096668],[126,-15,73,0.09716815889291852],[126,-15,74,0.09517551470250651],[126,-15,75,0.09326852434504107],[126,-15,76,0.09144755799408466],[126,-15,77,0.0897128149277634],[126,-15,78,0.08806431772925927],[126,-15,79,0.0865019064215039],[126,-14,64,0.12379967872775],[126,-14,65,0.12111328426555878],[126,-14,66,0.11850108248989599],[126,-14,67,0.11596473688262476],[126,-14,68,0.11350579059818533],[126,-14,69,0.11112566127769474],[126,-14,70,0.10882563579717497],[126,-14,71,0.10660686494998006],[126,-14,72,0.10447035806341365],[126,-14,73,0.10241697754959778],[126,-14,74,0.10044743339041584],[126,-14,75,0.09856227755677571],[126,-14,76,0.09676189836199778],[126,-14,77,0.0950465147494225],[126,-14,78,0.0934161705141986],[126,-14,79,0.09187072845927047],[126,-13,64,0.1287175570069442],[126,-13,65,0.1260663351644562],[126,-13,66,0.12348793913329714],[126,-13,67,0.12098403777264],[126,-13,68,0.11855618095125708],[126,-13,69,0.11620579438298384],[126,-13,70,0.11393417439631437],[126,-13,71,0.11174248263819564],[126,-13,72,0.10963174071200699],[126,-13,73,0.10760282474979266],[126,-13,74,0.10565645991856698],[126,-13,75,0.10379321486093729],[126,-13,76,0.10201349606985188],[126,-13,77,0.10031754219756517],[126,-13,78,0.09870541829878277],[126,-13,79,0.09717701000800583],[126,-12,64,0.13357296808274932],[126,-12,65,0.1309570147826623],[126,-12,66,0.12841251759485983],[126,-12,67,0.1259411507625633],[126,-12,68,0.12354447087848142],[126,-12,69,0.12122391174169644],[126,-12,70,0.11898077914867877],[126,-12,71,0.11681624561849946],[126,-12,72,0.11473134505222837],[126,-12,73,0.11272696732658272],[126,-12,74,0.11080385282164795],[126,-12,75,0.10896258688291616],[126,-12,76,0.10720359421744607],[126,-12,77,0.10552713322424101],[126,-12,78,0.10393329025880682],[126,-12,79,0.10242197383190377],[126,-11,64,0.1383676077199869],[126,-11,65,0.13578700745172434],[126,-11,66,0.13327649116749996],[126,-11,67,0.13083773850000702],[126,-11,68,0.12847231277379323],[126,-11,69,0.12618165588361263],[126,-11,70,0.1239670831069073],[126,-11,71,0.12182977785048432],[126,-11,72,0.11977078633138083],[126,-11,73,0.11779101219197341],[126,-11,74,0.11589121104916444],[126,-11,75,0.1140719849778804],[126,-11,76,0.11233377692869317],[126,-11,77,0.11067686507965935],[126,-11,78,0.10910135712233504],[126,-11,79,0.10760718448198825],[126,-10,64,0.14310351877493832],[126,-10,65,0.14055834516218246],[126,-10,66,0.13808188134671284],[126,-10,67,0.13567581235491077],[126,-10,68,0.13334170824948688],[126,-10,69,0.13108101902933966],[126,-10,70,0.12889506946354357],[126,-10,71,0.1267850538595342],[126,-10,72,0.12475203076547503],[126,-10,73,0.12279691760687406],[126,-10,74,0.12092048525727239],[126,-10,75,0.11912335254324558],[126,-10,76,0.11740598068352759],[126,-10,77,0.11576866766235039],[126,-10,78,0.1142115425369592],[126,-10,79,0.11273455967932544],[126,-9,64,0.14778310233751712],[126,-9,65,0.14527341873959876],[126,-9,66,0.14283106903913012],[126,-9,67,0.14045774365929664],[126,-9,68,0.13815501940585095],[126,-9,69,0.13592435438851402],[126,-9,70,0.13376708287650474],[126,-9,71,0.1316844100882637],[126,-9,72,0.1296774069153619],[126,-9,73,0.12774700458065458],[126,-9,74,0.12589398923050976],[126,-9,75,0.12411899646134694],[126,-9,76,0.12242250578029756],[126,-9,77,0.12080483500008088],[126,-9,78,0.1192661345680569],[126,-9,79,0.117806381829472],[126,-8,64,0.15240912899954762],[126,-8,65,0.1499349891471764],[126,-8,66,0.14752680589812894],[126,-8,67,0.14518627507452297],[126,-8,68,0.14291498022872906],[126,-8,69,0.14071438758634058],[126,-8,70,0.13858584092327264],[126,-8,71,0.13653055637705658],[126,-8,72,0.1345496171923175],[126,-8,73,0.13264396840049442],[126,-8,74,0.13081441143363948],[126,-8,75,0.1290615986725212],[126,-8,76,0.12738602792885256],[126,-8,77,0.1257880368617338],[126,-8,78,0.12426779732826898],[126,-8,79,0.12282530966837724],[126,-7,64,0.15698475024891478],[126,-7,65,0.1545461989147332],[126,-7,66,0.15217222578625755],[126,-7,67,0.1498645320858013],[126,-7,68,0.1476247081147698],[126,-7,69,0.1454542282182234],[126,-7,70,0.14335444568357159],[126,-7,71,0.14132658757345928],[126,-7,72,0.13937174949283726],[126,-7,73,0.1374908902902754],[126,-7,74,0.13568482669335225],[126,-7,75,0.13395422787835154],[126,-7,76,0.13229960997407997],[126,-7,77,0.13072133049989965],[126,-7,78,0.12921958273793643],[126,-7,79,0.12779439003948023],[126,-6,64,0.1615135099896955],[126,-6,65,0.1591105836941359],[126,-6,66,0.15677085636458798],[126,-6,67,0.15449603462408157],[126,-6,68,0.15228771552446962],[126,-6,69,0.15014738153260365],[126,-6,70,0.1480763954506401],[126,-6,71,0.14607599527053983],[126,-6,72,0.1441472889627501],[126,-6,73,0.1422912491991284],[126,-6,74,0.14050870800994542],[126,-6,75,0.13880035137518987],[126,-6,76,0.137166713749998],[126,-6,77,0.13560817252429713],[126,-6,78,0.13412494241662132],[126,-6,79,0.1327170698021226],[126,-5,64,0.16599935618839212],[126,-5,65,0.16363208394132245],[126,-5,66,0.16132663080911858],[126,-5,67,0.15908470881543602],[126,-5,68,0.15690792176314472],[126,-5,69,0.15479776024212988],[126,-5,70,0.15275559657122606],[126,-5,71,0.150782679674345],[126,-5,72,0.14888012989078303],[126,-5,73,0.1470489337197719],[126,-5,74,0.14528993849910876],[126,-5,75,0.14360384701808582],[126,-5,76,0.14199121206454735],[126,-5,77,0.1404524309061561],[126,-5,78,0.13898773970583644],[126,-5,79,0.13759720787140983],[126,-4,64,0.170446652646024],[126,-4,65,0.1681150567246622],[126,-4,66,0.16584389965397717],[126,-4,67,0.16363489885768667],[126,-4,68,0.1614896648895695],[126,-4,69,0.1594096964629057],[126,-4,70,0.1573963754140495],[126,-4,71,0.1554509616001939],[126,-4,72,0.15357458773131782],[126,-4,73,0.15176825413637351],[126,-4,74,0.15003282346355484],[126,-4,75,0.14836901531486468],[126,-4,76,0.14677740081480772],[126,-4,77,0.14525839711329536],[126,-4,78,0.14381226182272555],[126,-4,79,0.1424390873892536],[126,-3,64,0.17486019089621607],[126,-3,65,0.17256428765979426],[126,-3,66,0.17032744276156875],[126,-3,67,0.16815137902442134],[126,-3,68,0.16603771375243148],[126,-3,69,0.16398795378196185],[126,-3,70,0.16200349046687756],[126,-3,71,0.16008559459795701],[126,-3,72,0.158235411256486],[126,-3,73,0.15645395460208855],[126,-3,74,0.15474210259464372],[126,-3,75,0.15310059165049617],[126,-3,76,0.15153001123279608],[126,-3,77,0.15003079837604882],[126,-3,78,0.1486032321448384],[126,-3,79,0.14724742802674573],[126,-2,64,0.17924520222937457],[126,-2,65,0.17698500297103914],[126,-2,66,0.17478248141975694],[126,-2,67,0.17263936579649164],[126,-2,68,0.17055728015469507],[126,-2,69,0.16853773945304362],[126,-2,70,0.1665821445623078],[126,-2,71,0.16469177720641615],[126,-2,72,0.16286779483769853],[126,-2,73,0.1611112254463699],[126,-2,74,0.1594229623040968],[126,-2,75,0.15780375864185947],[126,-2,76,0.15625422226194263],[126,-2,77,0.15477481008413474],[126,-2,78,0.15336582262610388],[126,-2,79,0.15202739841796564],[126,-1,64,0.18360736984273573],[126,-1,65,0.18138288167916206],[126,-1,66,0.17921469056586237],[126,-1,67,0.17710453012076988],[126,-1,68,0.17505403114565043],[126,-1,69,0.17306471672049306],[126,-1,70,0.1711379972320346],[126,-1,71,0.16927516533647613],[126,-1,72,0.1674773908563829],[126,-1,73,0.1657457156118196],[126,-1,74,0.16408104818557323],[126,-1,75,0.16248415862266763],[126,-1,76,0.16095567306400915],[126,-1,77,0.1594960683142399],[126,-1,78,0.1581056663437671],[126,-1,79,0.1567846287249841],[126,0,64,0.1879528411163981],[126,0,65,0.18576406791560207],[126,0,66,0.18363021113759026],[126,0,67,0.18155300979628075],[126,0,68,0.17953410144076254],[126,0,69,0.17757501727133962],[126,0,70,0.17567717718971232],[126,0,71,0.17384188478334972],[126,0,72,0.17207032224404395],[126,0,73,0.17036354522070185],[126,0,74,0.1687224776062234],[126,0,75,0.16714790625867204],[126,0,76,0.16564047565657547],[126,0,77,0.1642006824884339],[126,0,78,0.16282887017640568],[126,0,79,0.1615252233341844],[126,1,64,0.1922882400154482],[126,1,65,0.19013518336328006],[126,1,66,0.1880356625509998],[126,1,67,0.18599142198782193],[126,1,68,0.18400410596943728],[126,1,69,0.1820752538157141],[126,1,70,0.18020629494253593],[126,1,71,0.17839854386782716],[126,1,72,0.17665319515176692],[126,1,73,0.1749713182712338],[126,1,74,0.17335385242834234],[126,1,75,0.17180160129326927],[126,1,76,0.17031522768120821],[126,1,77,0.16889524816353663],[126,1,78,0.16754202761315584],[126,1,79,0.16625577368402433],[126,2,64,0.20528444543021152],[126,2,65,0.20323854021441234],[126,2,66,0.20124202917902767],[126,2,67,0.1992966729178225],[126,2,68,0.19740413596489426],[126,2,69,0.19556598199734077],[126,2,70,0.19378366897206623],[126,2,71,0.19205854419677804],[126,2,72,0.19039183933516735],[126,2,73,0.188784665346323],[126,2,74,0.18723800735823826],[126,2,75,0.18575271947560368],[126,2,76,0.18432951952173315],[126,2,77,0.18296898371469772],[126,2,78,0.18167154127763585],[126,2,79,0.18043746898325463],[126,3,64,0.2052820332446329],[126,3,65,0.2032361429894246],[126,3,66,0.20123964734813327],[126,3,67,0.19929430690398453],[126,3,68,0.19740178618032855],[126,3,69,0.195563648843319],[126,3,70,0.19378135283873066],[126,3,71,0.1920562454629683],[126,3,72,0.19038955836825955],[126,3,73,0.1887824025020819],[126,3,74,0.18723576298068134],[126,3,75,0.18575049389687948],[126,3,76,0.1843273130620121],[126,3,77,0.1829667966820776],[126,3,78,0.18166937396806115],[126,3,79,0.18043532168045007],[126,4,64,0.20527371757845725],[126,4,65,0.2032278788977554],[126,4,66,0.20123143632540763],[126,4,67,0.1992861504083081],[126,4,68,0.19739368563275672],[126,4,69,0.19555560562717855],[126,4,70,0.19377336829898129],[126,4,71,0.19204832090560575],[126,4,72,0.19038169505976132],[126,4,73,0.1887746016688956],[126,4,74,0.1872280258087583],[126,4,75,0.1857428215312541],[126,4,76,0.18431970660642683],[126,4,77,0.1829592571986559],[126,4,78,0.1816619024770293],[126,4,79,0.1804279191599082],[126,5,64,0.2095877912028561],[126,5,65,0.2075777776047053],[126,5,66,0.20561578282638515],[126,5,67,0.20370357273186968],[126,5,68,0.20184281847421848],[126,5,69,0.2000350917200311],[126,5,70,0.1982818598080469],[126,5,71,0.1965844808419398],[126,5,72,0.19494419871729718],[126,5,73,0.19336213808283897],[126,5,74,0.19183929923573073],[126,5,75,0.19037655295118794],[126,5,76,0.1889746352462165],[126,5,77,0.18763414207756324],[126,5,78,0.18635552397384847],[126,5,79,0.1851390806018932],[126,6,64,0.21388845146743618],[126,6,65,0.211914338640116],[126,6,66,0.20998686983046666],[126,6,67,0.20810781616251584],[126,6,68,0.20627885539777557],[126,6,69,0.20450156718149415],[126,6,70,0.2027774282230579],[126,6,71,0.20110780741058887],[126,6,72,0.1994939608597347],[126,6,73,0.19793702689669812],[126,6,74,0.196438020975368],[126,6,75,0.19499783052874298],[126,6,76,0.19361720975449515],[126,6,77,0.19229677433474968],[126,6,78,0.19103699609004798],[126,6,79,0.18983819756750897],[126,7,64,0.2181719583453844],[126,7,65,0.21623383921647066],[126,7,66,0.21434099252174965],[126,7,67,0.21249519457318555],[126,7,68,0.21069812966692936],[126,7,69,0.20895138535144164],[126,7,70,0.2072564476297667],[126,7,71,0.20561469609601357],[126,7,72,0.20402739900603295],[126,7,73,0.20249570828233632],[126,7,74,0.20102065445312967],[126,7,75,0.19960314152563763],[126,7,76,0.1982439417935794],[126,7,77,0.19694369057886307],[126,7,78,0.19570288090747046],[126,7,79,0.1945218581195468],[126,8,64,0.22243457290251478],[126,8,65,0.22053255605410693],[126,8,66,0.21867444402315972],[126,8,67,0.2168620182227038],[126,8,68,0.2150969693945205],[126,8,69,0.21338089289921702],[126,8,70,0.21171528394046457],[126,8,71,0.2101015327234491],[126,8,72,0.20854091954752685],[126,8,73,0.20703460983313104],[126,8,74,0.20558364908279914],[126,8,75,0.2041889577765036],[126,8,76,0.20285132620113555],[126,8,77,0.20157140921422112],[126,8,78,0.200349720941834],[126,8,79,0.19918662941072074],[126,9,64,0.22667256062795083],[126,9,65,0.22480676875688466],[126,9,66,0.22298351881584255],[126,9,67,0.22120459721763597],[126,9,68,0.21947170104578395],[126,9,69,0.21778643336663872],[126,9,70,0.21615029847568423],[126,9,71,0.21456469707806014],[126,9,72,0.21303092140330004],[126,9,73,0.21155015025433332],[126,9,74,0.2101234439906181],[126,9,75,0.20875173944558667],[126,9,76,0.2074358447782586],[126,9,77,0.20617643425909438],[126,9,78,0.20497404299005728],[126,9,79,0.20382906155889924],[126,10,64,0.23088219470811994],[126,10,65,0.22905276313068457],[126,10,66,0.22726451610092302],[126,10,67,0.22551924491606445],[126,10,68,0.2238186528829066],[126,10,69,0.22216435065209728],[126,10,70,0.220557851486605],[126,10,71,0.21900056646442834],[126,10,72,0.2174937996155346],[126,10,73,0.21603874299307457],[126,10,74,0.2146364716787449],[126,10,75,0.2132879387224741],[126,10,76,0.21199397001629394],[126,10,77,0.21075525910246196],[126,10,78,0.2095723619158092],[126,10,79,0.20844569146032443],[126,11,64,0.23505975924384437],[126,11,65,0.23326683444451907],[126,11,66,0.2315137431034131],[126,11,67,0.22980228127307067],[126,11,68,0.22813415835085826],[126,11,69,0.22651099243551842],[126,11,70,0.2249343056179336],[126,11,71,0.2234055192061436],[126,11,72,0.22192594888461137],[126,11,73,0.22049679980778158],[126,11,74,0.2191191616278063],[126,11,75,0.21779400345661082],[126,11,76,0.21652216876216135],[126,11,77,0.21530437019900395],[126,11,78,0.2141411843730444],[126,11,79,0.2130330465405833],[126,12,64,0.23920155241063734],[126,12,65,0.23744529063436853],[126,12,66,0.23572751831838096],[126,12,67,0.23405003612803066],[126,12,68,0.23241455940461098],[126,12,69,0.23082271354430672],[126,12,70,0.22927602931137647],[126,12,71,0.22777593808561303],[126,12,72,0.22632376704407342],[126,12,73,0.22492073427712123],[126,12,74,0.22356794383865997],[126,12,75,0.22226638073072602],[126,12,76,0.22101690582230749],[126,12,77,0.21982025070245292],[126,12,78,0.21867701246764504],[126,12,79,0.21758764844344947],[126,13,64,0.2433038895623107],[126,13,65,0.24158445544984575],[126,13,66,0.23990217469948605],[126,13,67,0.23825885243383343],[126,13,68,0.2366562097778579],[126,13,69,0.23509587926037978],[126,13,70,0.23357940014981116],[126,13,71,0.23210821372419999],[126,13,72,0.23068365847556804],[126,13,73,0.22930696524858796],[126,13,74,0.22797925231347793],[126,13,75,0.22670152037328062],[126,13,76,0.22547464750539337],[126,13,77,0.22429938403741523],[126,13,78,0.2231763473572832],[126,13,79,0.2221060166577119],[126,14,64,0.24736310627766878],[126,14,65,0.24568067154346523],[126,14,66,0.24403406278965267],[126,14,67,0.2424250894277939],[126,14,68,0.24085547819299474],[126,14,69,0.23932686856805774],[126,14,70,0.23784080814192576],[126,14,71,0.23639874790245663],[126,14,72,0.235002037463525],[126,14,73,0.23365192022649006],[126,14,74,0.2323495284759145],[126,14,75,0.23109587840969592],[126,14,76,0.2298918651034797],[126,14,77,0.2287382574094199],[126,14,78,0.22763569278925977],[126,14,79,0.2265846720817445],[126,15,64,0.25137556135047795],[126,15,65,0.24973030350270403],[126,15,66,0.24811955379407602],[126,15,67,0.24654512574444976],[126,15,68,0.24500875151256346],[126,15,69,0.24351207734300734],[126,15,70,0.24205665894751943],[126,15,71,0.24064395682064776],[126,15,72,0.23927533148977453],[126,15,73,0.2379520386995405],[126,15,74,0.23667522453055723],[126,15,75,0.2354459204525654],[126,15,76,0.23426503831191048],[126,15,77,0.23313336525340156],[126,15,78,0.23205155857652426],[126,15,79,0.23102014052602193],[126,16,64,0.25533763972257123],[126,16,65,0.2537297408247174],[126,16,66,0.2521550425954148],[126,16,67,0.25061536247010385],[126,16,68,0.24911243783201203],[126,16,69,0.24764792148209125],[126,16,70,0.24622337704332126],[126,16,71,0.24484027429942018],[126,16,72,0.24349998446795634],[126,16,73,0.24220377540790194],[126,16,74,0.24095280676151365],[126,16,75,0.23974812503069998],[126,16,76,0.23859065858774597],[126,16,77,0.23748121262046173],[126,16,78,0.23642046401172478],[126,16,79,0.23540895615343083],[126,17,64,0.2592457553602726],[126,17,65,0.2576754008338924],[126,17,66,0.25613695071136183],[126,17,67,0.2546322261392966],[126,17,68,0.25316296951395917],[126,17,69,0.251730839974318],[126,17,70,0.250337408829519],[126,17,71,0.2489841549208101],[126,17,72,0.24767245991791292],[126,17,73,0.24640360354988022],[126,17,74,0.24517875877032946],[126,17,75,0.24399898685720434],[126,17,76,0.2428652324469429],[126,17,77,0.24177831850311304],[126,17,78,0.24073894121948813],[126,17,79,0.23974766485757681],[126,18,64,0.26309635407392273],[126,18,65,0.261563731542018],[126,18,66,0.2600617291943653],[126,18,67,0.2585921716729864],[126,18,68,0.2571568061637404],[126,18,69,0.25575729791266244],[126,18,70,0.2543952256767675],[126,18,71,0.2530720771093594],[126,18,72,0.2517892440798367],[126,18,73,0.2505480179280362],[126,18,74,0.249349584653005],[126,18,75,0.2481950200363498],[126,18,76,0.24708528470004643],[126,18,77,0.2460212190987655],[126,18,78,0.24500353844669154],[126,18,79,0.2440328275788476],[126,19,64,0.26688591628061087],[126,19,65,0.26539121445118236],[126,19,66,0.26392586147361446],[126,19,67,0.2624916852585477],[126,19,68,0.26109043754634415],[126,19,69,0.25972378944686825],[126,19,70,0.25839332691379047],[126,19,71,0.2571005461534519],[126,19,72,0.2558468489682849],[126,19,73,0.25463353803482724],[126,19,74,0.25346181211622254],[126,19,75,0.2523327612093562],[126,19,76,0.25124736162650635],[126,19,77,0.25020647101157006],[126,19,78,0.24921082329084132],[126,19,79,0.24826102355834767],[126,20,64,0.27061095971021126],[126,20,65,0.26915436729949],[126,20,66,0.267725866139383],[126,20,67,0.2663272871716824],[126,20,68,0.2649603864448362],[126,20,69,0.263626840677333],[126,20,70,0.262328242755674],[126,20,71,0.2610660971669708],[126,20,72,0.2598418153661613],[126,20,73,0.2586567110778812],[126,20,74,0.25751199553288984],[126,20,75,0.2564087726391892],[126,20,76,0.2553480340877256],[126,20,77,0.25433065439272895],[126,20,78,0.253357385866665],[126,20,79,0.25242885352981426],[126,21,64,0.2742680420545232],[126,21,65,0.27284974674940193],[126,21,66,0.2714582996695292],[126,21,67,0.2700955345400444],[126,21,68,0.2687632114600704],[126,21,69,0.2674630124898675],[126,21,70,0.2661965371726456],[126,21,71,0.26496529799106977],[126,21,72,0.2637707157584563],[126,21,73,0.262614114944693],[126,21,74,0.26149671893678367],[126,21,75,0.2604196452341565],[126,21,76,0.2593839005786236],[126,21,77,0.2583903760190487],[126,21,78,0.257439841910699],[126,21,79,0.25653294284929096],[126,22,64,0.2778537635596205],[126,22,65,0.2764739510188024],[126,22,66,0.2751197590982611],[126,22,67,0.2737930240486806],[126,22,68,0.2724955097517877],[126,22,69,0.2712289033314395],[126,22,70,0.26999481069944575],[126,22,71,0.2687947520361631],[126,22,72,0.2676301572058546],[126,22,73,0.2665023611068496],[126,22,74,0.26541259895640706],[126,22,75,0.26436200151041556],[126,22,76,0.263351590217824],[126,22,77,0.26238227230985606],[126,22,78,0.2614548358239841],[126,22,79,0.26056994456267574],[126,23,64,0.2813647695614976],[126,23,65,0.28002362245488005],[126,23,66,0.278706884627252],[126,23,67,0.27741639458738204],[126,23,68,0.2761539197212021],[126,23,69,0.2749211519269924],[126,23,70,0.27371970318538713],[126,23,71,0.2725511010642345],[126,23,72,0.2714167841583053],[126,23,73,0.27031809746388547],[126,23,74,0.2692562876881554],[126,23,75,0.26823249849348973],[126,23,76,0.26724776567657116],[126,23,77,0.26630301228237],[126,23,78,0.2653990436529689],[126,23,79,0.2645365424112423],[126,24,64,0.28479775296482585],[126,24,65,0.28349545005063775],[126,24,66,0.28221636217892127],[126,24,67,0.28096232983975183],[126,24,68,0.27973512363487324],[126,24,69,0.2785364399371454],[126,24,70,0.27736789648490345],[126,24,71,0.2762310279112613],[126,24,72,0.2751272812083554],[126,24,73,0.27405801112656136],[126,24,74,0.2730244755085895],[126,24,75,0.2720278305585903],[126,24,76,0.2710691260461637],[126,24,77,0.2701493004453264],[126,24,78,0.26926917600841394],[126,24,79,0.26842945377492666],[126,25,64,0.28814945666491937],[126,25,65,0.2868861719041284],[126,25,66,0.2856449258919767],[126,25,67,0.2844275608140901],[126,25,68,0.283235850189972],[126,25,69,0.28207149455687686],[126,25,70,0.2809361170886915],[126,25,71,0.2798312591498607],[126,25,72,0.2787583757843497],[126,25,73,0.277718831139676],[126,25,74,0.27671389382592143],[126,25,75,0.27574473220984763],[126,25,76,0.2748124096440159],[126,25,77,0.27391787963096215],[126,25,78,0.27306198092240325],[126,25,79,0.27224543255348727],[126,26,64,0.29141667591299114],[126,26,65,0.29019257762050066],[126,26,66,0.28898936055930496],[126,26,67,0.2878088683161837],[126,26,68,0.2866528770210241],[126,26,69,0.28552309105527773],[126,26,70,0.28442113869553515],[126,26,71,0.2833485676922473],[126,26,72,0.2823068407835894],[126,26,73,0.28129733114449984],[126,26,74,0.28032131777080427],[126,26,75,0.2793799807985482],[126,26,76,0.2784743967584399],[126,26,77,0.2776055337654516],[126,26,78,0.2767742466435597],[126,26,79,0.27598127198563294],[126,27,64,0.294596260624526],[126,27,65,0.29341151065667814],[126,27,66,0.2922465040080301],[126,27,67,0.29110308536381835],[126,27,68,0.28998303314794754],[126,27,69,0.28888805525619166],[126,27,70,0.28781978472462477],[126,27,71,0.28677977533331245],[126,27,72,0.28576949714525884],[126,27,73,0.28479033198063897],[126,27,74,0.2838435688262335],[126,27,75,0.28293039918018026],[126,27,76,0.28205191233195126],[126,27,77,0.281209090577601],[126,27,78,0.2804028043702654],[126,27,79,0.27963380740592153],[126,28,64,0.29768511763086236],[126,28,65,0.2965398706087646],[126,28,66,0.29541324942183583],[126,28,67,0.29430709954310746],[126,28,68,0.2932232013654836],[126,28,69,0.2921632659598388],[126,28,70,0.2911289307684697],[126,28,71,0.2901217552339262],[126,28,72,0.2891432163632186],[126,28,73,0.28819470422743204],[126,28,74,0.2872775173966626],[126,28,75,0.286392858310391],[126,28,76,0.28554182858320337],[126,28,77,0.2847254242459022],[126,28,78,0.28394453092198946],[126,28,79,0.2831999189395324],[126,29,64,0.3006802128740584],[126,29,65,0.29957461544225394],[126,29,66,0.29848654760562826],[126,29,67,0.2974178553067205],[126,29,68,0.2963703205740977],[126,29,69,0.2953456573055033],[126,29,70,0.29434550698648687],[126,29,71,0.29337143434454255],[126,29,72,0.292424922938752],[126,29,73,0.2915073706849621],[126,29,74,0.29062008531641487],[126,29,75,0.2897642797799422],[126,29,76,0.2889410675676349],[126,29,77,0.28815145798403297],[126,29,78,0.2873963513488155],[126,29,79,0.28667653413500055],[126,30,64,0.3035785735448818],[126,30,65,0.3025127636648785],[126,30,66,0.3014634091923746],[126,30,67,0.3004323562138379],[126,30,68,0.2994213880521826],[126,30,69,0.29843222107511364],[126,30,70,0.29746650043909034],[126,30,71,0.296525795768935],[126,30,72,0.2956115967730839],[126,30,73,0.294725308794506],[126,30,74,0.29386824829721536],[126,30,75,0.29304163828848057],[126,30,76,0.29224660367664795],[126,30,77,0.2914841665646212],[126,30,78,0.2907552414789769],[126,30,79,0.29006063053472797],[126,31,64,0.30637729016400755],[126,31,65,0.3053513964421847],[126,31,66,0.3043409067922034],[126,31,67,0.30334766711192623],[126,31,68,0.30237346166965384],[126,31,69,0.301420008937807],[126,31,70,0.3004889573623749],[126,31,71,0.2995818810681536],[126,31,72,0.29870027549976924],[126,31,73,0.2978455529985165],[126,31,74,0.29701903831493387],[126,31,75,0.296221964057221],[126,31,76,0.29545546607541534],[126,31,77,0.29472057878136815],[126,31,78,0.29401823040450337],[126,31,79,0.29334923818336806],[126,32,64,0.309073518606494],[126,32,65,0.3080876596559062],[126,32,66,0.30711617708384126],[126,32,67,0.3061609162604029],[126,32,68,0.30522366204300894],[126,32,69,0.3043061346355503],[126,32,70,0.303409985383469],[126,32,71,0.3025367925047788],[126,32,72,0.3016880567570252],[126,32,73,0.3008651970402125],[126,32,74,0.30006954593562096],[126,32,75,0.2993023451806204],[126,32,76,0.2985647410793931],[126,32,77,0.2978577798496128],[126,32,78,0.29718240290505743],[126,32,79,0.2965394420741664],[126,33,64,0.3116644820693889],[126,33,65,0.31071876590498143],[126,33,66,0.30978642284822944],[126,33,67,0.30886929739603575],[126,33,68,0.3079691746316954],[126,33,69,0.3070877761096617],[126,33,70,0.30622675567639435],[126,33,71,0.30538769522731185],[126,33,72,0.3045721003998442],[126,33,73,0.30378139620261346],[126,33,74,0.3030169225806682],[126,33,75,0.30227992991687297],[126,33,76,0.3015715744693717],[126,33,77,0.3008929137451654],[126,33,78,0.3002449018097872],[126,33,79,0.299628384533084],[126,34,64,0.3141474729825441],[126,34,65,0.31324199644930095],[126,34,66,0.31234891494440525],[126,34,67,0.31147007174016333],[126,34,68,0.3106072517758711],[126,34,69,0.30976217756831453],[126,34,70,0.30893650505852155],[126,34,71,0.30813181939478823],[126,34,72,0.30734963065197657],[126,34,73,0.30659136948710736],[126,34,74,0.30585838273118104],[126,34,75,0.30515192891732],[126,34,76,0.30447317374515553],[126,34,77,0.30382318548150095],[126,34,78,0.3032029302972907],[126,34,79,0.3026132675407947],[126,35,64,0.3165198548627015],[126,35,65,0.31565470309624133],[126,35,66,0.31480099422770974],[126,35,67,0.31396056994779603],[126,35,68,0.31313521467562166],[126,35,69,0.31232665149509314],[126,35,70,0.31153653802768544],[126,35,71,0.31076646224167914],[126,35,72,0.3100179381978481],[126,35,73,0.3092924017316183],[126,35,74,0.3085912060716375],[126,35,75,0.3079156173948404],[126,35,76,0.30726681031794106],[126,35,77,0.30664586332538735],[126,35,78,0.30605375413376085],[126,35,79,0.30549135499263186],[126,36,64,0.3187790641107143],[126,36,65,0.3179543100298548],[126,36,66,0.3171400734101839],[126,36,67,0.31633819399846086],[126,36,68,0.3155504553114931],[126,36,69,0.31477858059845315],[126,36,70,0.31402422873981617],[126,36,71,0.31328899008293765],[126,36,72,0.31257438221426803],[126,36,73,0.3118818456682271],[126,36,74,0.31121273957267614],[126,36,75,0.31056833723107286],[126,36,76,0.3099498216412407],[126,36,77,0.3093582809507874],[126,36,78,0.30879470384915675],[126,36,79,0.3082599748963233],[126,37,64,0.3209226117519802],[126,37,65,0.3201383155827856],[126,37,66,0.3193636388632305],[126,37,67,0.31860041902886665],[126,37,68,0.317850438306418],[126,37,69,0.31711541970216844],[126,37,70,0.31639702292716687],[126,37,71,0.31569684025926764],[126,37,72,0.31501639234200535],[126,37,73,0.3143571239203239],[126,37,74,0.313720399513101],[126,37,75,0.3131074990225505],[126,37,76,0.312519613280435],[126,37,77,0.3119578395311246],[126,37,78,0.31142317685148496],[126,37,79,0.3109165215076026],[126,38,64,0.32294808512013523],[126,38,65,0.32220429395096717],[126,38,66,0.3214692523625929],[126,38,67,0.3207447951074414],[126,38,68,0.3200327027290895],[126,38,69,0.31933469757681815],[126,38,70,0.31865243975719076],[126,38,71,0.31798752302267314],[126,38,72,0.3173414705972928],[126,38,73,0.3167157309393542],[126,38,74,0.31611167344116003],[126,38,75,0.3155305840658096],[126,38,76,0.31497366092101575],[126,38,77,0.3144420097699722],[126,38,78,0.3139366394792537],[126,38,79,0.31345845740376055],[126,39,64,0.3248531494838868],[126,39,65,0.3241498968509757],[126,39,66,0.32345455277552587],[126,39,67,0.3227689489506169],[126,39,68,0.32209486383865454],[126,39,69,0.3214340187121832],[126,39,70,0.3207880736319386],[126,39,71,0.3201586233621547],[126,39,72,0.31954719322312203],[126,39,73,0.3189552348810184],[126,39,74,0.3183841220749578],[126,39,75,0.3178351462813306],[126,39,76,0.31730951231537646],[126,39,77,0.31680833387002],[126,39,78,0.31633262899195497],[126,39,79,0.3158833154949862],[126,40,64,0.326635549617091],[126,40,65,0.3259728551201457],[126,40,66,0.3253172576902647],[126,40,67,0.3246705855809668],[126,40,68,0.3240346147708332],[126,40,69,0.32341106503066264],[126,40,70,0.3228015959280868],[126,40,71,0.3222078027696635],[126,40,72,0.3216312124804456],[126,40,73,0.3210732794210415],[126,40,74,0.32053538114212105],[126,40,75,0.32001881407643124],[126,40,76,0.31952478916826965],[126,40,77,0.31905442744044316],[126,40,78,0.31860875549869716],[126,40,79,0.3181887009736253],[126,41,64,0.32829311131200134],[126,41,65,0.32767098025937313],[126,41,66,0.3270551649877206],[126,41,67,0.32644748992712386],[126,41,68,0.32584972816539326],[126,41,69,0.32526359754163575],[126,41,70,0.3246907566775183],[126,41,71,0.32413280094623903],[126,41,72,0.3235912583792049],[126,41,73,0.32306758551043446],[126,41,74,0.322563163158636],[126,41,75,0.32207929214702824],[126,41,76,0.32161718896085045],[126,41,77,0.3211779813425878],[126,41,78,0.3207627038249013],[126,41,79,0.3203722932012686],[126,42,64,0.3298237428357733],[126,42,65,0.32924216591869665],[126,42,66,0.32866615435548685],[126,42,67,0.3280975283655678],[126,42,68,0.3275380577350663],[126,42,69,0.326989457936858],[126,42,70,0.326453386188552],[126,42,71,0.325931437448421],[126,42,72,0.32542514034928255],[126,42,73,0.32493595307034173],[126,42,74,0.32446525914695423],[126,42,75,0.3240143632183696],[126,42,76,0.32358448671340473],[126,42,77,0.3231767634740748],[126,42,78,0.3227922353171686],[126,42,79,0.3224318475337745],[126,43,64,0.3312254363301272],[126,43,65,0.3306843893255496],[126,43,66,0.3301481887440565],[126,43,67,0.3296186502041738],[126,43,68,0.3290975397757994],[126,43,69,0.3285865701267856],[126,43,70,0.3280873966077067],[126,43,71,0.3276016132748261],[126,43,72,0.32713074885126187],[126,43,73,0.32667626262636174],[126,43,74,0.3262395402932528],[126,43,75,0.3258218897246159],[126,43,76,0.32542453668664323],[126,43,77,0.32504862049120214],[126,43,78,0.32469518958619203],[126,43,79,0.3243651970841031],[126,44,64,0.3324962691542203],[126,44,65,0.3319957126557427],[126,44,66,0.3314993157653034],[126,44,67,0.33100888910758347],[126,44,68,0.3305261946184031],[126,44,69,0.3300529417178846],[126,44,70,0.32959078342206183],[126,44,71,0.329141312392948],[126,44,72,0.32870605692705784],[126,44,73,0.3282864768824013],[126,44,74,0.327883959543908],[126,44,75,0.32749981542733664],[126,44,76,0.3271352740216256],[126,44,77,0.326791479469708],[126,44,78,0.32646948618777877],[126,44,79,0.3261702544230239],[126,45,64,0.33363440517076015],[126,45,65,0.33317428434720486],[126,45,66,0.33271766903326017],[126,45,67,0.3322663644644272],[126,45,68,0.33182212802162225],[126,45,69,0.33138666543095957],[126,45,70,0.33096162690224856],[126,45,71,0.3305486032062164],[126,45,72,0.330149121690454],[126,45,73,0.32976464223409974],[126,45,74,0.3293965531412228],[126,45,75,0.32904616697295874],[126,45,76,0.3287147163183528],[126,45,77,0.32840334950393685],[126,45,78,0.3281131262420263],[126,45,79,0.32784501321774406],[126,46,64,0.3346380959752838],[126,46,65,0.3342183403564071],[126,46,66,0.33380146944711514],[126,46,67,0.3333892826963185],[126,46,68,0.3329835325065551],[126,46,69,0.33258592046041946],[126,46,70,0.3321980934859852],[126,46,71,0.3318216399612294],[126,46,72,0.3314580857574564],[126,46,73,0.33110889022173523],[126,46,74,0.3307754420983166],[126,46,75,0.3304590553890741],[126,46,76,0.33016096515293397],[126,46,77,0.3298823232443125],[126,46,78,0.3296241939905508],[126,46,79,0.32938754980835483],[126,47,64,0.33550568206864856],[126,47,65,0.3351262053575161],[126,47,66,0.33474902641647464],[126,47,67,0.3343759385086711],[126,47,68,0.3340086886324659],[126,47,69,0.3336489737745281],[126,47,70,0.3332984371022107],[126,47,71,0.332958664095211],[126,47,72,0.33263117861651986],[126,47,73,0.33231743892266613],[126,47,74,0.3320188336132297],[126,47,75,0.3317366775196628],[126,47,76,0.3314722075333847],[126,47,77,0.3312265783731718],[126,47,78,0.33100085829182946],[126,47,79,0.3307960247221539],[126,48,64,0.33623559397275204],[126,48,65,0.3358962938842956],[126,48,66,0.3355587390289111],[126,48,67,0.33522471608335525],[126,48,68,0.33489596621401263],[126,48,69,0.33457418135666517],[126,48,70,0.3342610004358361],[126,48,71,0.3339580055237157],[126,48,72,0.3336667179386686],[126,48,73,0.33338859428333045],[126,48,74,0.3331250224222714],[126,48,75,0.332877317399257],[126,48,76,0.33264671729408246],[126,48,77,0.3324343790189931],[126,48,78,0.3322413740546826],[126,48,79,0.33206868412587714],[126,49,64,0.3368263532894292],[126,49,65,0.3365271114147016],[126,49,66,0.33622909715974014],[126,49,67,0.3359340902131391],[126,49,68,0.33564382547983196],[126,49,69,0.335359989387532],[126,49,70,0.3350842161330534],[126,49,71,0.334818083868518],[126,49,72,0.334563110827446],[126,49,73,0.33432075139073986],[126,49,74,0.334092392092539],[126,49,75,0.3338793475659759],[126,49,76,0.33368285642880774],[126,49,77,0.33350407710893826],[126,49,78,0.33334408360982215],[126,49,79,0.33320386121575746],[126,50,64,0.3372765737025611],[126,50,65,0.3370172553982077],[126,50,66,0.33675868252406366],[126,50,67,0.3365026273779504],[126,50,68,0.33625081817251756],[126,50,69,0.3360049353683453],[126,50,70,0.3357666079472399],[126,50,71,0.33553740962572554],[126,50,72,0.3353188550087353],[126,50,73,0.3351123956835053],[126,50,74,0.3349194162536542],[126,50,75,0.33474123031347497],[126,50,76,0.33457907636241496],[126,50,77,0.3344341136597598],[126,50,78,0.3343074180195106],[126,50,79,0.3341999775454626],[126,51,64,0.33758496192340204],[126,51,65,0.3373654162258662],[126,51,66,0.33714616967108835],[126,51,67,0.3369289867629686],[126,51,68,0.33671558859000394],[126,51,69,0.33650764918502896],[126,51,70,0.3363067918254722],[126,51,71,0.33611458527413074],[126,51,72,0.3359325399604647],[126,51,73,0.33576210410241475],[126,51,74,0.3356046597687302],[126,51,75,0.33546151888182596],[126,51,76,0.3353339191611521],[126,51,77,0.33522302000708853],[126,51,78,0.3351298983253521],[126,51,79,0.335055544291929],[126,52,64,0.33775031857909393],[126,52,65,0.3375703781430752],[126,52,66,0.33739032692068255],[126,52,67,0.3372119212185116],[126,52,68,0.33703687456831743],[126,52,69,0.33686685411336137],[126,52,70,0.3367034769356061],[126,52,71,0.3365483063237563],[126,52,72,0.3364028479821518],[126,52,73,0.33626854618051205],[126,52,74,0.33614677984452207],[126,52,75,0.3360388585872783],[126,52,76,0.33594601868157525],[126,52,77,0.33586941897304784],[126,52,78,0.33581013673415816],[126,52,79,0.3357691634590355],[126,53,64,0.3377715390443939],[126,53,65,0.33763102010507495],[126,53,66,0.3374900172422013],[126,53,67,0.3373502781617434],[126,53,68,0.3372135084057204],[126,53,69,0.33708136776511166],[126,53,70,0.3369554666339539],[126,53,71,0.33683736230462547],[126,53,72,0.3367285552043199],[126,53,73,0.3366304850727099],[126,53,74,0.3365445270807933],[126,53,75,0.3364719878909356],[126,53,76,0.3364141016580932],[126,53,77,0.3363720259722317],[126,53,78,0.33634683774192603],[126,53,79,0.33633952901915437],[126,54,64,0.33764761421660716],[126,54,65,0.33754631657516976],[126,54,66,0.3374441990755732],[126,54,67,0.3373430004202008],[126,54,68,0.3372444177282516],[126,54,69,0.33715010297516124],[126,54,70,0.33706165937355914],[126,54,71,0.33698063769575926],[126,54,72,0.3369085325377865],[126,54,73,0.33684677852494294],[126,54,74,0.3367967464589028],[126,54,75,0.33675973940635073],[126,54,76,0.3367369887291504],[126,54,77,0.3367296500560528],[126,54,78,0.3367387991959365],[126,54,79,0.3367654279925883],[126,55,64,0.3373776312337205],[126,55,65,0.3373153382656662],[126,55,66,0.33725192709463925],[126,55,67,0.3371891270171265],[126,55,68,0.33712862629664175],[126,55,69,0.33707206862959416],[126,55,70,0.3370210495530492],[126,55,71,0.3369771127943786],[126,55,72,0.3369417465628039],[126,55,73,0.33691637978283306],[126,55,74,0.33690237826958574],[126,55,75,0.3369010408460147],[126,55,76,0.3369135954020148],[126,55,77,0.3369411948954284],[126,55,78,0.3369849132949387],[126,55,79,0.33704574146485833],[126,56,64,0.33696077413574665],[126,56,65,0.33693725282154036],[126,56,66,0.3369123529127578],[126,56,67,0.33688779389862167],[126,56,68,0.3368652547546257],[126,56,69,0.33684637043477494],[126,56,70,0.33683272830608424],[126,56,71,0.3368258645253316],[126,56,72,0.336827260358069],[126,56,73,0.33683833843988964],[126,56,74,0.3368604589799514],[126,56,75,0.3368949159067587],[126,56,76,0.3369429329561969],[126,56,77,0.33700565970182966],[126,56,78,0.3370841675274457],[126,56,79,0.3371794455418687],[126,57,64,0.33639632446926515],[126,57,65,0.3364113254468213],[126,57,66,0.3364247257306616],[126,57,67,0.3364382346026087],[126,57,68,0.33645352131863715],[126,57,69,0.3364722116274008],[126,57,70,0.33649588423139354],[126,57,71,0.33652606719073663],[126,57,72,0.33656423426959753],[126,57,73,0.3366118012252375],[126,57,74,0.3366701220396894],[126,57,75,0.33674048509406596],[126,57,76,0.33682410928549555],[126,57,77,0.33692214008669036],[126,57,78,0.3370356455481413],[126,57,79,0.33716561224294694],[126,58,64,0.3356836618351726],[126,58,65,0.33573691947369944],[126,58,66,0.3357883929265773],[126,58,67,0.33583978086960875],[126,58,68,0.33589274240889055],[126,58,69,0.33594889362553415],[126,58,70,0.33600980406339986],[126,58,71,0.33607699315984063],[126,58,72,0.3361519266194585],[126,58,73,0.33623601273086884],[126,58,74,0.3363305986264813],[126,58,75,0.3364369664852873],[126,58,76,0.3365563296786591],[126,58,77,0.33668982885916365],[126,58,78,0.33683852799238184],[126,58,79,0.3370034103317459],[126,59,64,0.33482226437964613],[126,59,65,0.3349134968743661],[126,59,66,0.3350028005886114],[126,59,67,0.33509186319534157],[126,59,68,0.33518233322186075],[126,59,69,0.33527581662062234],[126,59,70,0.33537387328344137],[126,59,71,0.3354780134991041],[126,59,72,0.3355896943543798],[126,59,73,0.33571031607843094],[126,59,74,0.3358412183306294],[126,59,75,0.33598367643176913],[126,59,76,0.33613889753867965],[126,59,77,0.33630801676224364],[126,59,78,0.3364920932288117],[126,59,79,0.33669210608502204],[126,60,64,0.3338117092282901],[126,60,65,0.33394061871555647],[126,60,66,0.3340674939893763],[126,60,67,0.33419401132512205],[126,60,68,0.3343218082441308],[126,60,69,0.3344524801104803],[126,60,70,0.3345875766715685],[126,60,71,0.3347285985424888],[126,60,72,0.3348769936342064],[126,60,73,0.33503415352552873],[126,60,74,0.33520140977888235],[126,60,75,0.33538003019988216],[126,60,76,0.33557121504069964],[126,60,77,0.33577609314723367],[126,60,78,0.335995718050076],[126,60,79,0.33623106399927916],[126,61,64,0.3326516728635053],[126,61,65,0.33281794555583],[126,61,66,0.3329821180028918],[126,61,67,0.33314585469008373],[126,61,68,0.3333107817076427],[126,61,69,0.333478483373266],[126,61,70,0.3336504987989407],[126,61,71,0.3338283184019738],[126,61,72,0.3340133803602292],[126,61,73,0.3342070670115638],[126,61,74,0.334410701197478],[126,61,75,0.33462554255096194],[126,61,76,0.3348527837285489],[126,61,77,0.33509354658657525],[126,61,78,0.3353488783016416],[126,61,79,0.3356197474352841],[126,62,64,0.3313419314450692],[126,62,65,0.3315452377855813],[126,62,66,0.33174641746375],[126,62,67,0.33194712278522515],[126,62,68,0.3321489679863414],[126,62,69,0.3323535258824408],[126,62,70,0.33256232446082057],[126,62,71,0.33277684341829666],[126,62,72,0.33299851064338726],[126,62,73,0.33322869864310883],[126,62,74,0.33346872091440216],[126,62,75,0.333719828260166],[126,62,76,0.33398320504991197],[126,62,77,0.3342599654250404],[126,62,78,0.33455114944873166],[126,62,79,0.3348577192004589],[126,63,64,0.32988236107389035],[126,63,65,0.33012235590974304],[126,63,66,0.3303602374685134],[126,63,67,0.33059764548924003],[126,63,68,0.3308361819341793],[126,63,69,0.33107740766268423],[126,63,70,0.33132283905013193],[126,63,71,0.3315739445518871],[126,63,72,0.33183214121230786],[126,63,73,0.33209879111878515],[126,63,74,0.3323751978008346],[126,63,75,0.332662602574216],[126,63,76,0.3329621808300973],[126,63,77,0.33327503826926075],[126,63,78,0.3336022070813441],[126,63,79,0.3339446420691283],[126,64,64,0.3282729379989999],[126,64,65,0.32854926077324276],[126,64,66,0.3288235236193992],[126,64,67,0.32909735332619217],[126,64,68,0.32937233916453634],[126,64,69,0.32965002958681433],[126,64,70,0.32993192887163286],[126,64,71,0.3302194937140437],[126,64,72,0.33051412976123656],[126,64,73,0.3308171880936932],[126,64,74,0.33112996165182573],[126,64,75,0.33145368160806976],[126,64,76,0.33178951368445264],[126,64,77,0.332138554415631],[126,64,78,0.33250182735739603],[126,64,79,0.332880279240651],[126,65,64,0.3265137387677263],[126,65,65,0.32682601372916165],[126,65,66,0.3271363222102045],[126,65,67,0.3274462776689848],[126,65,68,0.32775745627100994],[126,65,69,0.32807139361367],[126,65,70,0.3283895813966615],[126,65,71,0.3287134640383119],[126,65,72,0.3290444352378133],[126,65,73,0.3293838344833532],[126,65,74,0.329732943506168],[126,65,75,0.330092982680487],[126,65,76,0.33046510736938717],[126,65,77,0.3308504042165562],[126,65,78,0.33124988738395866],[126,65,79,0.3316644947354117],[126,66,64,0.3246049403191041],[126,66,65,0.3249527767496449],[126,66,66,0.3252987803545179],[126,66,67,0.3256445508846705],[126,66,68,0.32599165098961735],[126,66,69,0.32634160296699843],[126,66,70,0.32669588545849676],[126,66,71,0.32705593009210365],[126,66,72,0.32742311807073693],[126,66,73,0.3277987767071976],[126,66,74,0.32818417590549875],[126,66,75,0.32858052458852327],[126,66,76,0.3289889670720405],[126,66,77,0.32941057938507473],[126,66,78,0.3298463655366183],[126,66,79,0.33029725372870244],[126,67,64,0.32254682002043633],[126,67,65,0.3229298124794834],[126,67,66,0.32331114605614164],[126,67,67,0.32369240642152797],[126,67,68,0.32407514230234047],[126,67,69,0.32446086225527593],[126,67,70,0.32485103138826277],[126,67,71,0.3252470680284919],[126,67,72,0.32565034033725115],[126,67,73,0.32606216287155076],[126,67,74,0.32648379309257136],[126,67,75,0.3269164278208936],[126,67,76,0.3273611996385367],[126,67,77,0.32781917323780063],[126,67,78,0.328291341716905],[126,67,79,0.32877862282243725],[126,68,64,0.32033975564710565],[126,68,65,0.32075748423246264],[126,68,66,0.3211737682218128],[126,68,67,0.32159017883799396],[126,68,68,0.32200825048209697],[126,68,69,0.32242947753254775],[126,68,70,0.3228553110914625],[126,68,71,0.32328715567825883],[126,68,72,0.3237263658705305],[126,68,73,0.3241742428921689],[126,68,74,0.32463203114877004],[126,68,75,0.3251009147102769],[126,68,76,0.32558201374089224],[126,68,77,0.3260763808762528],[126,68,78,0.3265849975478583],[126,68,79,0.3271087702547685],[126,69,64,0.31798422530559733],[126,69,65,0.3184362559304392],[126,69,66,0.318887096616194],[126,69,67,0.31933830377341543],[126,69,68,0.31979139707910653],[126,69,69,0.32024785630025415],[126,69,70,0.32070911806510655],[126,69,71,0.32117657258217025],[126,69,72,0.32165156030693604],[126,69,73,0.3221353685563174],[126,69,74,0.3226292280708406],[126,69,75,0.3231343095245345],[126,69,76,0.3236517199825571],[126,69,77,0.3241824993065481],[126,69,78,0.3247276165077029],[126,69,79,0.3252879660475793],[126,70,64,0.31548080729966843],[126,70,65,0.3159666919850846],[126,70,66,0.31645168175906313],[126,70,67,0.3169373178605619],[126,70,68,0.31742510484859054],[126,70,69,0.3179165074499823],[126,70,70,0.3184129473553802],[126,70,71,0.31891579996341535],[126,70,72,0.31942639107308657],[126,70,73,0.3199459935243249],[126,70,74,0.32047582378678174],[126,70,75,0.32101703849678964],[126,70,76,0.3215707309425304],[126,70,77,0.32213792749740344],[126,70,78,0.3227195840015866],[126,70,79,0.3233165820918025],[126,71,64,0.31283017993977663],[126,71,65,0.31334945712240414],[126,71,66,0.31386817476481793],[126,71,67,0.31438785858000157],[126,71,68,0.3149099976199095],[126,71,69,0.3154360411472479],[126,71,70,0.3159673954559479],[126,71,71,0.31650542064031156],[126,71,72,0.31705142731283825],[126,71,73,0.3176066732707107],[126,71,74,0.31817236011099037],[126,71,75,0.31874962979445776],[126,71,76,0.31933956115814366],[126,71,77,0.3199431663765363],[126,71,78,0.3205613873714621],[126,71,79,0.3211950921706498],[126,72,64,0.31003312129572136],[126,72,65,0.31058531614998564],[126,72,66,0.3111373271242448],[126,72,67,0.31169066405630114],[126,72,68,0.3122468001070966],[126,72,69,0.31280716865626307],[126,72,70,0.313373160146855],[126,72,71,0.3139461188792368],[126,72,72,0.31452733975413705],[126,72,73,0.31511806496484884],[126,72,74,0.31571948063862304],[126,72,75,0.31633271342719305],[126,72,76,0.31695882704647493],[126,72,77,0.31759881876542967],[126,72,78,0.3182536158440839],[126,72,79,0.3189240719207189],[126,73,64,0.30709050889241996],[126,73,65,0.3076751336669036],[126,73,66,0.3082599904284804],[126,73,67,0.30884657279597183],[126,73,68,0.30943633766071105],[126,73,69,0.31003070210561945],[126,73,70,0.31063104027395594],[126,73,71,0.31123868018771306],[126,73,72,0.31185490051567266],[126,73,73,0.312480927291097],[126,73,74,0.31311793057910714],[126,73,75,0.3137670210936823],[126,73,76,0.3144292467643275],[126,73,77,0.31510558925239424],[126,73,78,0.3157969604170509],[126,73,79,0.3165041987309152],[126,74,64,0.3040033193489543],[126,74,65,0.3046198737164086],[126,74,66,0.3052371160352956],[126,74,67,0.3058565233672917],[126,74,68,0.3064795359611431],[126,74,69,0.30710755419501123],[126,74,70,0.3077419354689903],[126,74,71,0.3083839910477699],[126,74,72,0.30903498285345365],[126,74,73,0.30969612020851095],[126,74,74,0.3103685565289161],[126,74,75,0.311053385967403],[126,74,76,0.3117516400068875],[126,74,77,0.3124642840040406],[126,74,78,0.3131922136830088],[126,74,79,0.31393625157929445],[126,75,64,0.3007726279608298],[126,75,65,0.3014205993813488],[126,75,66,0.30206975467764574],[126,75,67,0.3027215540219518],[126,75,68,0.3033774206533135],[126,75,69,0.30403873784294577],[126,75,70,0.3047068458102584],[126,75,71,0.30538303858953236],[126,75,72,0.30606856084725564],[126,75,73,0.30676460465009575],[126,75,74,0.3074723061835634],[126,75,75,0.308192742421296],[126,75,76,0.30892692774501107],[126,75,77,0.30967581051511517],[126,75,78,0.31044026959196425],[126,75,79,0.3112211108077855],[126,76,64,0.2973996082253587],[126,76,65,0.29807847232223283],[126,76,66,0.2987590560144022],[126,76,67,0.29944280225843556],[126,76,68,0.30013111692268224],[126,76,69,0.3008253657753568],[126,76,70,0.30152687142380863],[126,76,71,0.30223691020495075],[126,76,72,0.30295670902685823],[126,76,73,0.30368744216150895],[126,76,74,0.30443022798873126],[126,76,75,0.30518612569127546],[126,76,76,0.30595613190106663],[126,76,77,0.3067411772966234],[126,76,78,0.30754212315163504],[126,76,79,0.30835975783471237],[126,77,64,0.29388553131032413],[126,77,65,0.29459475225809206],[126,77,66,0.2953062681234158],[126,77,67,0.2960215043272886],[126,77,68,0.29674184901271977],[126,77,69,0.29746865005526946],[126,77,70,0.298203212025287],[126,77,71,0.29894679310182104],[126,77,72,0.2997006019382157],[126,77,73,0.30046579447936295],[126,77,74,0.30124347073067825],[126,77,75,0.3020346714787131],[126,77,76,0.30284037496346605],[126,77,77,0.3036614935023729],[126,77,78,0.3044988700659713],[126,77,79,0.305353274805254],[126,78,64,0.2902317654658575],[126,78,65,0.2909707963900726],[126,78,66,0.2917127369368495],[126,78,67,0.2924589946782097],[126,78,68,0.29321093968377254],[126,78,69,0.29396990155345326],[126,78,70,0.2947371664023841],[126,78,71,0.2955139737980284],[126,78,72,0.2963015136495005],[126,78,73,0.297100923049062],[126,78,74,0.29791328306586273],[126,78,75,0.2987396154918382],[126,78,76,0.29958087953982604],[126,78,77,0.3004379684938812],[126,78,78,0.30131170631178766],[126,78,79,0.3022028441797776],[126,79,64,0.2864397753794281],[126,79,65,0.28720805876765865],[126,79,66,0.28797990561867826],[126,79,67,0.2887567053488652],[126,79,68,0.28953980961322767],[126,79,69,0.29033052935996567],[126,79,70,0.29113013183778447],[126,79,71,0.29193983755592456],[126,79,72,0.29276081719692393],[126,79,73,0.2935941884820814],[126,79,74,0.2944410129896922],[126,79,75,0.29530229292596305],[126,79,76,0.2961789678486729],[126,79,77,0.2970719113435587],[126,79,78,0.29798192765342135],[126,79,79,0.2989097482599672],[126,80,64,0.28251112147412627],[126,80,65,0.2833080895977067],[126,80,66,0.28410931388453475],[126,80,67,0.2849161652956054],[126,80,68,0.2857299767371502],[126,80,69,0.2865520401367601],[126,80,70,0.28738360347278846],[126,80,71,0.28822586775700354],[126,80,72,0.2890799839705023],[126,80,73,0.2899470499528567],[126,80,74,0.29082810724456165],[126,80,75,0.29172413788269413],[126,80,76,0.29263606114984797],[126,80,77,0.2935647302763239],[126,80,78,0.2945109290955712],[126,80,79,0.2954753686528943],[126,81,64,0.27844745915015723],[126,81,65,0.2792725344962079],[126,81,66,0.28010259726382114],[126,81,67,0.2809389996659994],[126,81,68,0.28178305553331484],[126,81,69,0.2826360374112792],[126,81,70,0.28349917361153026],[126,81,71,0.2843736452168023],[126,81,72,0.2852605830396951],[126,81,73,0.2861610645352061],[126,81,74,0.2870761106671067],[126,81,75,0.2880066827280582],[126,81,76,0.2889536791135425],[126,81,77,0.2899179320495824],[126,81,78,0.29090020427424856],[126,81,79,0.29190118567296747],[126,82,64,0.27425053796943855],[126,82,65,0.2751031336826731],[126,82,66,0.2759614863039799],[126,82,67,0.2768269290130869],[126,82,68,0.27770075624552604],[126,82,69,0.2785842208109307],[126,82,70,0.2794785309656892],[126,82,71,0.28038484743992464],[126,82,72,0.2813042804188095],[126,82,73,0.282237886478187],[126,82,74,0.2831866654745739],[126,82,75,0.284151557389444],[126,82,76,0.28513343912786593],[126,82,77,0.28613312127147017],[126,82,78,0.2871513447857432],[126,82,79,0.28818877768166257],[126,83,64,0.2699222007835007],[126,83,65,0.270801721117337],[126,83,66,0.2716878057171195],[126,83,67,0.27258176845153814],[126,83,68,0.27348488404942184],[126,83,69,0.27439838523863636],[126,83,70,0.27532345983988393],[126,83,71,0.276261247815372],[126,83,72,0.2772128382723627],[126,83,73,0.2781792664215703],[126,83,74,0.27916151049048854],[126,83,75,0.28016048859153997],[126,83,76,0.28117705554512407],[126,83,77,0.28221199965753996],[126,83,78,0.28326603945378004],[126,83,79,0.28433982036520794],[126,84,64,0.2654643828045993],[126,84,65,0.2663702235810931],[126,84,66,0.26728347346890785],[126,84,67,0.2682054267556364],[126,84,68,0.2691373381596711],[126,84,69,0.2700804199893678],[126,84,70,0.2710358392576624],[126,84,71,0.27200471475210336],[126,84,72,0.27298811406031376],[126,84,73,0.27398705055085026],[126,84,74,0.2750024803095401],[126,84,75,0.27603529903118756],[126,84,76,0.2770863388667295],[126,84,77,0.2781563652258125],[126,84,78,0.279246073534789],[126,84,79,0.2803560859501481],[126,85,64,0.260879110619919],[126,85,65,0.26181065969803824],[126,85,66,0.26275049980961185],[126,85,67,0.2636999053989634],[126,85,68,0.26466011087845],[126,85,69,0.265632307807553],[126,85,70,0.2666176420279747],[126,85,71,0.2676172107547018],[126,85,72,0.2686320596230537],[126,85,73,0.2696631796916765],[126,85,74,0.27071150440157055],[126,85,75,0.27177790649103784],[126,85,76,0.2728631948666315],[126,85,77,0.27396811143007904],[126,85,78,0.27509332786117774],[126,85,79,0.27623944235667613],[126,86,64,0.2561685011490926],[126,86,65,0.2571251389008491],[126,86,66,0.2580909862475046],[126,86,67,0.2590672975360055],[126,86,68,0.26005528658541144],[126,86,69,0.26105612388556765],[126,86,70,0.26207093375233875],[126,86,71,0.26310079143936527],[126,86,72,0.26414672020636176],[126,86,73,0.2652096883439149],[126,86,74,0.26629060615487427],[126,86,75,0.2673903228922165],[126,86,76,0.2685096236534684],[126,86,77,0.2696492262316605],[126,86,78,0.2708097779228079],[126,86,79,0.2719918522899343],[126,87,64,0.2513347605449297],[126,87,65,0.25231586033888653],[126,87,66,0.2533071244645389],[126,87,67,0.25430978692558165],[126,87,68,0.2553250406690486],[126,87,69,0.2563540348032116],[126,87,70,0.25739787177260276],[126,87,71,0.2584576044901201],[126,87,72,0.25953423342623216],[126,87,73,0.2606287036552434],[126,87,74,0.2617419018587126],[126,87,75,0.26287465328590315],[126,87,76,0.2640277186713519],[126,87,77,0.2652017911095285],[126,87,78,0.266397492886582],[126,87,79,0.2676153722691898],[126,88,64,0.24638018303722972],[126,88,65,0.2473851117289035],[126,88,66,0.24840119517415718],[126,88,67,0.24942964679596433],[126,88,68,0.2504716383993276],[126,88,69,0.2515282974080477],[126,88,70,0.25260070405918],[126,88,71,0.25368988855513624],[126,88,72,0.25479682817344934],[126,88,73,0.25592244433416056],[126,88,74,0.25706759962492415],[126,88,75,0.2582330947837051],[126,88,76,0.2594196656391599],[126,88,77,0.26062798000866993],[126,88,78,0.26185863455402486],[126,88,79,0.2631121515947723],[126,89,64,0.24130714971993183],[126,89,65,0.24233526814860493],[126,89,66,0.243375566921494],[126,89,67,0.24442923865194588],[126,89,68,0.2454974337418365],[126,89,69,0.24658125763684846],[126,89,70,0.24768176804],[126,89,71,0.248799972083387],[126,89,72,0.24993682345815277],[126,89,73,0.25109321950264685],[126,89,74,0.25226999824886726],[126,89,75,0.2534679354270615],[126,89,76,0.25468774142857703],[126,89,77,0.25593005822693016],[126,89,78,0.257195456257091],[126,89,79,0.25848443125300036],[126,90,64,0.23611812728138884],[126,90,65,0.23716879077285188],[126,90,66,0.23823269482575715],[126,90,67,0.2393110110236393],[126,90,68,0.24040486811324416],[126,90,69,0.24151534927794346],[126,90,70,0.24264348936997265],[126,90,71,0.24379027210144927],[126,90,72,0.24495662719418881],[126,90,73,0.24614342748827706],[126,90,74,0.24735148600949686],[126,90,75,0.24858155299548096],[126,90,76,0.2498343128806833],[126,90,77,0.25111038124013785],[126,90,78,0.25241030169200274],[126,90,79,0.25373454275890484],[126,91,64,0.23081566667793374],[126,91,65,0.23188822555267483],[126,91,66,0.23297511926495282],[126,91,67,0.2340774981571792],[126,91,68,0.23519646907823105],[126,91,69,0.23633309267463176],[126,91,70,0.2374883806411257],[126,91,71,0.23866329293060584],[126,91,72,0.23985873492340998],[126,91,73,0.24107555455594376],[126,91,74,0.24231453940873288],[126,91,75,0.24357641375376882],[126,91,76,0.24486183556124747],[126,91,77,0.24617139346566552],[126,91,78,0.2475056036912739],[126,91,79,0.24886490693690322],[126,92,64,0.22540240175050189],[126,92,65,0.226496201836861],[126,92,66,0.22760546450272515],[126,92,67,0.2287313186470903],[126,92,68,0.22987484898766308],[126,92,69,0.23103709336942863],[126,92,70,0.23221904003318816],[126,92,71,0.23342162484402185],[126,92,72,0.23464572847969561],[126,92,73,0.23589217357896713],[126,92,74,0.2371617218498961],[126,92,75,0.2384550711380215],[126,92,76,0.23977285245450558],[126,92,77,0.24111562696421007],[126,92,78,0.24248388293370177],[126,92,79,0.2438780326392071],[126,93,64,0.2198810477845909],[126,93,65,0.2209954309363969],[126,93,66,0.22212643725758424],[126,93,67,0.22327517401060126],[126,93,68,0.2244427035582821],[126,93,69,0.22563004068942089],[126,93,70,0.22683814990489087],[126,93,71,0.22806794266426655],[126,93,72,0.22932027459296417],[126,93,73,0.23059594264985822],[126,93,74,0.23189568225547946],[126,93,75,0.23322016438065402],[126,93,76,0.2345699925956864],[126,93,77,0.23594570008005022],[126,93,78,0.23734774659258595],[126,93,79,0.23877651540222133],[126,94,64,0.2142544000134296],[126,94,65,0.21538870463163773],[126,94,66,0.21654082521439816],[126,94,67,0.2177118472037755],[126,94,68,0.21890281039378906],[126,94,69,0.22011470627260665],[126,94,70,0.2213484753258631],[126,94,71,0.22260500430105812],[126,94,72,0.22388512343305217],[126,94,73,0.22518960363061458],[126,94,74,0.22651915362413272],[126,94,75,0.22787441707433975],[126,94,76,0.22925596964216438],[126,94,77,0.2306643160196662],[126,94,78,0.2320998869220562],[126,94,79,0.23356303604081846],[126,95,64,0.20852533206420992],[126,95,65,0.20967889362205794],[126,95,66,0.21085149547800408],[126,95,67,0.21204420107931854],[126,95,68,0.21325802744717492],[126,95,69,0.2144939425350751],[126,95,70,0.2157528625489778],[126,95,71,0.21703564922908808],[126,95,72,0.2183431070933226],[126,95,73,0.219675980642408],[126,95,74,0.2210349515267206],[126,95,75,0.2224206356747231],[126,95,76,0.22383358038310375],[126,95,77,0.22527426136858142],[126,95,78,0.22674307978137442],[126,95,79,0.22824035918035124],[126,96,64,0.20269679434766263],[126,96,65,0.2038689459188634],[126,96,66,0.20506139296921538],[126,96,67,0.20627517678633422],[126,96,68,0.20751129142457636],[126,96,69,0.20877068107930224],[126,96,70,0.21005423742342455],[126,96,71,0.21136279690619836],[126,96,72,0.21269713801426898],[126,96,73,0.21405797849493285],[126,96,74,0.2154459725417231],[126,96,75,0.2168617079421718],[126,96,76,0.21830570318785592],[126,96,77,0.2197784045466909],[126,96,78,0.22128018309746983],[126,96,79,0.22281133172666456],[126,97,64,0.19677181239084424],[126,97,65,0.19796188518033153],[126,97,66,0.19917353876309446],[126,97,67,0.20040779211190257],[126,97,68,0.20166561613052436],[126,97,69,0.20294793104343223],[126,97,70,0.20425560374837637],[126,97,71,0.20558944513178246],[126,97,72,0.2069502073469906],[126,97,73,0.20833858105528796],[126,97,74,0.20975519262985076],[126,97,75,0.21120060132244367],[126,97,76,0.21267529639298655],[126,97,77,0.21417969420195143],[126,97,78,0.21571413526558575],[126,97,79,0.21727888127398348],[126,98,64,0.1907534851129773],[126,98,65,0.19196080898972462],[126,98,66,0.19319102836933472],[126,98,67,0.19444513976432248],[126,98,68,0.1957240907544328],[126,98,69,0.1970287773913897],[126,98,70,0.19836004156709902],[126,98,71,0.1997186683452572],[126,98,72,0.20110538325638566],[126,98,73,0.20252084955624178],[126,98,74,0.20396566544772382],[126,98,75,0.20544036126611576],[126,98,76,0.20694539662778377],[126,98,77,0.2084811575422853],[126,98,78,0.21004795348788996],[126,98,79,0.21164601445052994],[126,99,64,0.18464498304464322],[126,99,65,0.18586888707607124],[126,99,66,0.18711702995504803],[126,99,67,0.18839038559831361],[126,99,68,0.1896898780986187],[126,99,69,0.19101637914411662],[126,99,70,0.19237070540179468],[126,99,71,0.1937536158648958],[126,99,72,0.19516580916435],[126,99,73,0.19660792084416584],[126,99,74,0.19808052060090248],[126,99,75,0.1995841094870635],[126,99,76,0.2011191170785282],[126,99,77,0.2026858986059794],[126,99,78,0.2042847320503276],[126,99,79,0.20591581520214847],[126,100,64,0.17844954649018574],[126,100,65,0.1796893594776781],[126,100,66,0.1809547825098169],[126,100,67,0.18224676678203883],[126,100,68,0.183566212747717],[126,100,69,0.184913967551794],[126,100,70,0.18629082242903988],[126,100,71,0.18769751006688468],[126,100,72,0.18913470193284637],[126,100,73,0.19060300556650306],[126,100,74,0.19210296183613162],[126,100,75,0.1936350421598519],[126,100,76,0.1951996456913937],[126,100,77,0.19679709647044596],[126,100,78,0.1984276405375855],[126,100,79,0.20009144301380638],[126,101,64,0.1721704836331604],[126,101,65,0.17342553464820437],[126,101,66,0.17470759395284846],[126,101,67,0.17601758990578337],[126,101,68,0.17735639917932566],[126,101,69,0.17872484420688783],[126,101,70,0.18012369059565841],[126,101,71,0.18155364450444267],[126,101,72,0.18301534998668317],[126,101,73,0.1845093862986097],[126,101,74,0.18603626517264232],[126,101,75,0.18759642805588367],[126,101,76,0.18919024331381978],[126,101,77,0.1908180033991883],[126,101,78,0.19247992198601177],[126,101,79,0.19417613106881654],[126,102,64,0.16581116858514466],[126,102,65,0.16708078750561534],[126,102,66,0.16837883918254165],[126,102,67,0.16970622903260202],[126,102,68,0.17106380981619213],[126,102,69,0.17245237909832656],[126,102,70,0.17387267667533618],[126,102,71,0.1753253819673108],[126,102,72,0.17681111137630795],[126,102,73,0.17833041561027513],[126,102,74,0.17988377697281144],[126,102,75,0.18147160661860356],[126,102,76,0.18309424177465544],[126,102,77,0.18475194292727082],[126,102,78,0.18644489097478628],[126,102,79,0.18817318434607494],[126,103,64,0.15937503937775682],[126,103,65,0.16065855742386148],[126,103,66,0.1619719580683185],[126,103,67,0.16331612369078574],[126,103,68,0.16469188301979193],[126,103,69,0.16610000860666296],[126,103,70,0.16754121426582902],[126,103,71,0.16901615248146296],[126,103,72,0.17052541178046987],[126,103,73,0.17206951407177468],[126,103,74,0.1736489119520352],[126,103,75,0.1752639859776144],[126,103,76,0.17691504190293106],[126,103,77,0.17860230788514891],[126,103,78,0.18032593165520183],[126,103,79,0.18208597765517415],[126,104,64,0.15286559589771648],[126,104,65,0.15416234616711932],[126,104,66,0.15549045338455114],[126,104,67,0.1568507768079786],[126,104,68,0.15824412102513324],[126,104,69,0.15967123344005468],[126,104,70,0.16113280172660122],[126,104,71,0.1626294512488755],[126,104,72,0.164161742448586],[126,104,73,0.16573016819929065],[126,104,74,0.1673351511276543],[126,104,75,0.16897704090154503],[126,104,76,0.1706561114850978],[126,104,77,0.1723725583606993],[126,104,78,0.17412649571789424],[126,104,79,0.1759179536092318],[126,105,64,0.14628639776527042],[126,105,65,0.14759571576691238],[126,105,66,0.14893788868690833],[126,105,67,0.15031375258726992],[126,105,68,0.15172408781710722],[126,105,69,0.1531696165113814],[126,105,70,0.1546510000572101],[126,105,71,0.15616883652767122],[126,105,72,0.15772365808312755],[126,105,73,0.1593159283400173],[126,105,74,0.16094603970724197],[126,105,75,0.16261431068997884],[126,105,76,0.1643209831610435],[126,105,77,0.1660662195997591],[126,105,78,0.16785010029832997],[126,105,79,0.16967262053574111],[126,106,64,0.13964106215582767],[126,106,65,0.14096228634196117],[126,106,66,0.14231788613096508],[126,106,67,0.1437086743251038],[126,106,68,0.14513540694823174],[126,106,69,0.1465987807563473],[126,106,70,0.14809943071628429],[126,106,71,0.1496379274524849],[126,106,72,0.1512147746618766],[126,106,73,0.15283040649679797],[126,106,74,0.1544851849161069],[126,106,75,0.15617939700429512],[126,106,76,0.15791325225873643],[126,106,77,0.1596868798450255],[126,106,78,0.1615003258204039],[126,106,79,0.16335355032529575],[126,107,64,0.13293326156463064],[126,107,65,0.13426573386058732],[126,107,66,0.13563412423290327],[126,107,67,0.13703922217083514],[126,107,68,0.13848175929761408],[126,107,69,0.13996240689239542],[126,107,70,0.14148177338092743],[126,107,71,0.14304040179488292],[126,107,72,0.14463876719987878],[126,107,73,0.14627727409212526],[126,107,74,0.14795625376384097],[126,107,75,0.14967596163725616],[126,107,76,0.15143657456733145],[126,107,77,0.15323818811314993],[126,107,78,0.15508081377797928],[126,107,79,0.15696437621802495],[126,108,64,0.1261667215147968],[126,108,65,0.12750978784600442],[126,108,66,0.12889033557263752],[126,108,67,0.1303091308282654],[126,108,68,0.13176688077146648],[126,108,69,0.13326423111876595],[126,108,70,0.13480176364687235],[126,108,71,0.13637999366416126],[126,108,72,0.13799936745142433],[126,108,73,0.1396602596718311],[126,108,74,0.14136297075023713],[126,108,75,0.14310772422166068],[126,108,76,0.1448946640490572],[126,108,77,0.14672385191034687],[126,108,78,0.14859526445469368],[126,108,79,0.150508790528057],[126,109,64,0.1193452182085703],[126,109,65,0.1206982290243378],[126,109,66,0.12209030443920316],[126,109,67,0.12352218719899671],[126,109,68,0.12499455994501457],[126,109,69,0.1265080427575377],[126,109,70,0.1280631906692311],[126,109,71,0.1296604911483672],[126,109,72,0.13130036155189673],[126,109,73,0.13298314654830895],[126,109,74,0.13470911551042059],[126,109,75,0.13647845987791074],[126,109,76,0.13829129048973354],[126,109,77,0.14014763488636356],[126,109,78,0.14204743458187225],[126,109,79,0.14399054230585545],[126,110,64,0.11247257612160294],[126,110,65,0.11383488691519206],[126,110,66,0.11523786441823086],[126,110,67,0.116682227967426],[126,110,68,0.11816863564561786],[126,110,69,0.1196976818354778],[126,110,70,0.12126989474366179],[126,110,71,0.12288573389536733],[126,110,72,0.124545587599314],[126,110,73,0.1262497703830926],[126,110,74,0.12799852039902],[126,110,75,0.12979199680031694],[126,110,76,0.1316302770877424],[126,110,77,0.13351335442663764],[126,110,78,0.13544113493437926],[126,110,79,0.13741343493826186],[126,111,64,0.10555266554061338],[126,111,65,0.10692363736511218],[126,111,66,0.10833689592185092],[126,111,67,0.10979313712772526],[126,111,68,0.11129299447745178],[126,111,69,0.11283703660704009],[126,111,70,0.11442576482829514],[126,111,71,0.11605961063430087],[126,111,72,0.11773893317590278],[126,111,73,0.11946401670913204],[126,111,74,0.1212350680137147],[126,111,75,0.12305221378247827],[126,111,76,0.12491549798178875],[126,111,77,0.12682487918297586],[126,111,78,0.1287802278647407],[126,111,79,0.13078132368657008],[126,112,64,0.09858940004425232],[126,112,65,0.09996840002377194],[126,112,66,0.10139132366086001],[126,112,67,0.1028588434526378],[126,112,68,0.1043715682875776],[126,112,69,0.10593004101834541],[126,112,70,0.1075347360062523],[126,112,71,0.10918605663725645],[126,112,72,0.11088433280953947],[126,112,73,0.11262981839259811],[126,112,74,0.11442268865799377],[126,112,75,0.11626303768157215],[126,112,76,0.11815087571728833],[126,112,77,0.12008612654259299],[126,112,78,0.122068624775373],[126,112,79,0.12409811316247549],[126,113,64,0.09158673392699657],[126,113,65,0.09297313576270622],[126,113,66,0.09440511405896973],[126,113,67,0.09588331790391369],[126,113,68,0.0974083315732251],[126,113,69,0.09898067211196776],[126,113,70,0.10060078688857915],[126,113,71,0.10226905112098844],[126,113,72,0.1039857653748803],[126,113,73,0.10575115303404359],[126,113,74,0.10756535774295167],[126,113,75,0.10942844082138059],[126,113,76,0.11134037865120677],[126,113,77,0.1133010600353338],[126,113,78,0.11531028352874767],[126,113,79,0.11736775474172395],[126,114,64,0.0845486595664432],[126,114,65,0.08594184403696192],[126,114,66,0.08738227260950993],[126,114,67,0.08887057098475215],[126,114,68,0.09040729883065712],[126,114,69,0.09199294737289132],[126,114,70,0.09362793695796151],[126,114,71,0.0953126145890476],[126,114,72,0.09704725143454856],[126,114,73,0.09883204030928183],[126,114,74,0.10066709312848354],[126,114,75,0.10255243833441396],[126,114,76,0.10448801829571108],[126,114,77,0.10647368667944151],[126,114,78,0.10850920579584833],[126,114,79,0.11059424391581879],[126,115,64,0.07747920473369024],[126,115,65,0.07887856018935435],[126,115,66,0.08032684117427319],[126,115,67,0.08182465003394179],[126,115,68,0.08337252184530408],[126,115,69,0.08497092201533146],[126,115,70,0.08662024385291456],[126,115,71,0.08832080611401011],[126,115,72,0.09007285052006841],[126,115,73,0.09187653924967731],[126,115,74,0.09373195240357413],[126,115,75,0.09563908544282745],[126,115,76,0.09759784660033177],[126,115,77,0.09960805426556707],[126,115,78,0.10166943434261871],[126,115,79,0.10378161758148363],[126,116,64,0.07038242984704346],[126,116,65,0.07178735269756581],[126,116,66,0.07324289522473904],[126,116,67,0.07474963646193578],[126,116,68,0.07630808692340751],[126,116,69,0.07791868621065573],[126,116,70,0.07958180059268072],[126,116,71,0.0812977205600453],[126,116,72,0.0830666583527831],[126,116,73,0.08488874546208486],[126,116,74,0.08676403010591571],[126,116,75,0.08869247467836372],[126,116,76,0.0906739531728647],[126,116,77,0.09270824857925275],[126,116,78,0.09479505025463486],[126,116,79,0.09693395126811316],[126,117,64,0.06326242516872393],[126,117,65,0.06467232036376491],[126,117,66,0.0661345410253541],[126,117,67,0.06764964292853698],[126,117,68,0.06921811206484624],[126,117,69,0.07084036225608037],[126,117,70,0.07251673274251658],[126,117,71,0.07424748574550016],[126,117,72,0.0760328040044354],[126,117,73,0.07787278828811389],[126,117,74,0.07976745488053288],[126,117,75,0.08171673304100463],[126,117,76,0.08372046243869885],[126,117,77,0.08577839056157294],[126,117,78,0.08789017009968197],[126,117,79,0.0900553563028978],[126,118,64,0.05612330794496573],[126,118,65,0.057537589447130666],[126,118,66,0.05900591275925571],[126,118,67,0.06052881046258257],[126,118,68,0.06210674407753736],[126,118,69,0.06374010168453093],[126,118,70,0.06542919551975035],[126,118,71,0.06717425954588263],[126,118,72,0.06897544699779407],[126,118,73,0.07083282790310319],[126,118,74,0.07274638657780008],[126,118,75,0.07471601909670977],[126,118,76,0.07674153073894702],[126,118,77,0.0788226334083107],[126,118,78,0.08095894302861695],[126,118,79,0.08314997691399473],[126,119,64,0.048969219489313875],[126,119,65,0.05038731073909897],[126,119,66,0.05186116959625037],[126,119,67,0.053391305523437516],[126,119,68,0.05497815563321756],[126,119,69,0.05662208231547872],[126,119,70,0.0583233708404281],[126,119,71,0.060082226937061056],[126,119,72,0.06189877434714064],[126,119,73,0.06377305235461977],[126,119,74,0.06570501329066264],[126,119,75,0.06769452001406157],[126,119,76,0.06974134336719667],[126,119,77,0.07184515960748711],[126,119,78,0.0740055478143325],[126,119,79,0.0762219872715682],[126,120,64,0.04180432220894942],[126,120,65,0.04322565658114952],[126,120,66,0.04470449270287369],[126,120,67,0.04624131700412565],[126,120,68,0.04783654226443679],[126,120,69,0.04949050524657905],[126,120,70,0.05120346430636924],[126,120,71,0.05297559697850268],[126,120,72,0.05480699753844415],[126,120,73,0.056697674540309384],[126,120,74,0.05864754833089286],[126,120,75,0.06065644853964047],[126,120,76,0.06272411154470964],[126,120,77,0.0648501779150723],[126,120,78,0.06703418982865195],[126,120,79,0.06927558846652504],[126,121,64,0.034632796574397495],[126,121,65,0.03605681782549669],[126,121,66,0.037540082194889135],[126,121,67,0.03908305317645361],[126,121,68,0.040686119303117496],[126,121,69,0.0423495917864663],[126,121,70,0.04407370213299172],[126,121,71,0.0458585997369087],[126,121,72,0.047704349449576466],[126,121,73,0.04961092912545095],[126,121,74,0.05157822714473059],[126,121,75,0.05360603991248536],[126,121,76,0.055694069334421226],[126,121,77,0.0578419202692273],[126,121,78,0.060049097957504016],[126,121,79,0.062315005427295955],[126,122,64,0.027458838032443755],[126,122,65,0.028885000738506084],[126,122,66,0.030372154032044962],[126,122,67,0.03192073857794847],[126,122,68,0.033531118760501744],[126,122,69,0.03520358032853249],[126,122,70,0.03693832801772867],[126,122,71,0.03873548315006903],[126,122,72,0.0405950812103929],[126,122,73,0.042517069400042296],[126,122,74,0.04450130416773557],[126,122,75,0.04654754871746436],[126,122,76,0.04865547049356356],[126,122,77,0.050824638642903874],[126,122,78,0.05305452145420375],[126,122,79,0.05534448377448664],[126,123,64,0.020286653862070125],[126,123,65,0.02171442384664618],[126,123,66,0.02320493685491093],[126,123,67,0.024758610840429962],[126,123,68,0.026375786148306823],[126,123,69,0.02805672316550034],[126,123,70,0.029801599948850788],[126,123,71,0.031610509830751754],[126,123,72,0.033483459002496274],[126,123,73,0.035420364075229416],[126,123,74,0.03742104961866688],[126,123,75,0.03948524567737077],[126,123,76,0.04161258526473388],[126,123,77,0.0438026018346207],[126,123,78,0.04605472673066091],[126,123,79,0.048368286613223455],[126,124,64,0.013120459973779086],[126,124,65,0.01454931472534915],[126,124,66,0.01604266876415228],[126,124,67,0.017600917460576015],[126,124,68,0.019224377241445323],[126,124,69,0.0209132832451584],[126,124,70,0.02266778695506022],[126,124,71,0.024487953810992114],[126,124,72,0.026373760799044743],[126,124,73,0.02832509401944705],[126,124,74,0.030341746232751765],[126,124,75,0.032423414384106675],[126,124,76,0.03456969710576341],[126,124,77,0.03678009219777412],[126,124,78,0.03905399408686849],[126,124,79,0.041390691263543555],[126,125,64,0.005964477652123157],[126,125,65,0.00739390673059348],[126,125,66,0.008889594042066573],[126,125,67,0.01045191251230393],[126,125,68,0.012081154782138004],[126,125,69,0.01377753086707767],[126,125,70,0.01554116579567677],[126,125,71,0.01737209722660049],[126,125,72,0.019270273044423636],[126,125,73,0.02123554893408508],[126,125,74,0.02326768593416595],[126,125,75,0.025366347968777903],[126,125,76,0.027531099358213074],[126,125,77,0.02976140230830604],[126,125,78,0.0320566143785016],[126,125,79,0.03441598592865902],[126,126,64,-0.001177069758743543],[126,126,65,2.5243567302524195E-4],[126,126,66,0.0017499598161961893],[126,126,67,0.0033158533007844326],[126,126,68,0.004950385125229051],[126,126,69,0.00665374032012267],[126,126,70,0.008426017591227186],[126,126,71,0.010267226941705121],[126,126,72,0.012177287273601456],[126,126,73,0.014156023968503018],[126,126,74,0.01620316644753894],[126,126,75,0.018318345710512052],[126,126,76,0.020501091854309816],[126,126,77,0.02275083157054758],[126,126,78,0.025066885622436974],[126,126,79,0.027448466300910135],[126,127,64,-0.008299960226128111],[126,127,65,-0.006870863565014651],[126,127,66,-0.005371987334621076],[126,127,67,-0.003803003041551345],[126,127,68,-0.0021636651749290525],[126,127,69,-4.5381353887474774E-4],[126,127,70,0.0013266243948099055],[126,127,71,0.003177631113693513],[126,127,72,0.0050990966715278585],[126,127,73,0.007090816274751277],[126,127,74,0.009152487848851365],[126,127,75,0.011283709584366863],[126,127,76,0.013483977462687147],[126,127,77,0.015752682761597137],[126,127,78,0.018089109540559534],[126,127,79,0.020492432105768343],[126,128,64,-0.015399976456655473],[126,128,65,-0.013971760469741135],[126,128,66,-0.012472004831937444],[126,128,67,-0.010900403017188864],[126,128,68,-0.009256732836201431],[126,128,69,-0.007540858765462177],[126,128,70,-0.0057527342959534655],[126,128,71,-0.0038924043016262955],[126,128,72,-0.001960007427602606],[126,128,73,4.4221501821706255E-5],[126,128,74,0.0021199490555392497],[126,128,75,0.004266740748144482],[126,128,76,0.006484058572749585],[126,128,77,0.008771258514056246],[126,128,78,0.01112758804167202],[126,128,79,0.01355218358370791],[126,129,64,-0.02247290938110047],[126,129,65,-0.02104603239363312],[126,129,66,-0.01954585760730576],[126,129,67,-0.0179721002840717],[126,129,68,-0.01632456137919147],[126,129,69,-0.01460312986711454],[126,129,70,-0.012807785086556445],[126,129,71,-0.010938599104829305],[126,129,72,-0.008995739101401723],[126,129,73,-0.006979469770754698],[126,129,74,-0.004890155744369129],[126,129,75,-0.0027282640320626106],[126,129,76,-4.94366482518549E-4],[126,129,77,0.0018108577369415624],[126,129,78,0.004186619641334488],[126,129,79,0.006632017909772858],[126,130,64,-0.02951456169583877],[126,130,65,-0.028089468110240934],[126,130,66,-0.02658932166945116],[126,130,67,-0.025013859234155555],[126,130,68,-0.0233629047161944],[126,130,69,-0.02163637140162422],[126,130,70,-0.019834264292476922],[126,130,71,-0.017956682467279106],[126,130,72,-0.016003821460300438],[126,130,73,-0.013975975659604178],[126,130,74,-0.0118735407237327],[126,130,75,-0.009697016017243598],[126,130,76,-0.007447007064944056],[126,130,77,-0.005124228024869448],[126,130,78,-0.002729504180019049],[126,130,79,-2.6377444881287015E-4],[126,131,64,-0.03652075146108813],[126,131,65,-0.03509787142626908],[126,131,66,-0.033598187729180884],[126,131,67,-0.03202145863013994],[126,131,68,-0.030367530798760867],[126,131,69,-0.028636341634509233],[126,131,70,-0.026827921605457994],[126,131,71,-0.024942396605315276],[126,131,72,-0.02297999032869158],[126,131,73,-0.02094102666467723],[126,131,74,-0.018825932108564425],[126,131,75,-0.016635238191931023],[126,131,76,-0.014369583930930241],[126,131,77,-0.012029718292836056],[126,131,78,-0.009616502680853789],[126,131,79,-0.007130913437161324],[126,132,64,-0.04348731575612674],[126,132,65,-0.04206706485111611],[126,132,66,-0.040568264882216876],[126,132,67,-0.038990695300570755],[126,132,68,-0.03733422532405417],[126,132,69,-0.03559881625562278],[126,132,70,-0.0337845238193748],[126,132,71,-0.03189150051440148],[126,132,72,-0.02991999798639211],[126,132,73,-0.027870369417066887],[126,132,74,-0.025743071931268457],[126,132,75,-0.023538669021931802],[126,132,76,-0.021257832992777503],[126,132,77,-0.018901347418773473],[126,132,78,-0.016470109624381113],[126,132,79,-0.013965133179545064],[126,133,64,-0.0504101143911283],[126,133,65,-0.048992893323512976],[126,133,66,-0.04749538434958955],[126,133,67,-0.045917387892948414],[126,133,68,-0.04425879549964007],[126,133,69,-0.04251959215460355],[126,133,70,-0.040699858615337314],[126,133,71,-0.03879977376287891],[126,133,72,-0.03681961697006164],[126,133,73,-0.03475977048712242],[126,133,74,-0.032620721844490386],[126,133,75,-0.03040306627297551],[126,133,76,-0.028107509141202525],[126,133,77,-0.025734868410338785],[126,133,78,-0.023286077106124847],[126,133,79,-0.020762185808173794],[126,134,64,-0.0572850336757913],[126,134,65,-0.055871227995441086],[126,134,66,-0.05437540327577217],[126,134,67,-0.05279738068502071],[126,134,68,-0.05113707386689004],[126,134,69,-0.04939449125534856],[126,134,70,-0.04756973840620182],[126,134,71,-0.045663020345500405],[126,134,72,-0.04367464393475562],[126,134,73,-0.04160502025303381],[126,134,74,-0.03945466699576006],[126,134,75,-0.03722421089045391],[126,134,76,-0.034914390129236805],[126,134,77,-0.03252605681816312],[126,134,78,-0.030060179443382795],[126,134,79,-0.02751784535410373],[126,135,64,-0.06410799024494274],[126,135,65,-0.06269797007350264],[126,135,66,-0.061204208584735964],[126,135,67,-0.05962654745444307],[126,135,68,-0.05796492218317528],[126,135,69,-0.05621936440968267],[126,135,70,-0.05439000424067042],[126,135,71,-0.052477072596927354],[126,135,72,-0.050480903575797265],[126,135,73,-0.04840193683006755],[126,135,74,-0.04624071996309975],[126,135,75,-0.043997910940429485],[126,135,76,-0.04167428051767441],[126,135,77,-0.03927071468480048],[126,135,78,-0.03678821712675784],[126,135,79,-0.03422791170044892],[126,136,64,-0.07087493494075603],[126,136,65,-0.0694690547173904],[126,136,66,-0.06797772089356435],[126,136,67,-0.06640079540644006],[126,136,68,-0.06473823536249113],[126,136,69,-0.06299009534986966],[126,136,70,-0.061156529766622336],[126,136,71,-0.05923779516482486],[126,136,72,-0.05723425261059978],[126,136,73,-0.05514637006009482],[126,136,74,-0.05297472475124687],[126,136,75,-0.05072000561155776],[126,136,76,-0.0483830156817201],[126,136,77,-0.0459646745551463],[126,136,78,-0.043466020833407004],[126,136,79,-0.0408882145975481],[126,137,64,-0.07758185675177154],[126,137,65,-0.07618045499564119],[126,137,66,-0.07469189848381552],[126,137,67,-0.07311606915966329],[126,137,68,-0.07145294547470349],[126,137,69,-0.06970260470015066],[126,137,70,-0.06786522525386174],[126,137,71,-0.06594108904275098],[126,137,72,-0.06393058382063599],[126,137,73,-0.06183420556159769],[126,137,74,-0.05965256084867254],[126,137,75,-0.05738636927810847],[126,137,76,-0.055036465879022],[126,137,77,-0.05260380354850458],[126,137,78,-0.05008945550219346],[126,137,79,-0.0474946177402662],[126,138,64,-0.08422478680888001],[126,138,65,-0.082828185898835],[126,138,66,-0.08134274133079478],[126,138,67,-0.0797683547904029],[126,138,68,-0.07810502580357326],[126,138,69,-0.07635285404747005],[126,138,70,-0.07451204167644376],[126,138,71,-0.07258289566299192],[126,138,72,-0.07056583015371087],[126,138,73,-0.0684613688403174],[126,138,74,-0.06627014734555892],[126,138,75,-0.06399291562424636],[126,138,76,-0.06163054037924365],[126,138,77,-0.05918400749246566],[126,138,78,-0.05665442447089686],[126,138,79,-0.054043022907590665],[126,139,64,-0.09079980243791208],[126,139,65,-0.08940830840987979],[126,139,66,-0.08792629519037598],[126,139,67,-0.08635368393479159],[126,139,68,-0.08469049496320435],[126,139,69,-0.08293685007103413],[126,139,70,-0.08109297485422107],[126,139,71,-0.07915920104899077],[126,139,72,-0.07713596888617846],[126,139,73,-0.07502382946018293],[126,139,74,-0.0728234471123792],[126,139,75,-0.07053560182921459],[126,139,76,-0.06816119165482748],[126,139,77,-0.06570123511824],[126,139,78,-0.06315687367513378],[126,139,79,-0.0605293741641737],[126,140,64,-0.09730303126913631],[126,140,65,-0.0959169336316924],[126,140,66,-0.09443865574368149],[126,140,67,-0.09286813794931481],[126,140,68,-0.09120542107321938],[126,140,69,-0.08945064873100306],[126,140,70,-0.08760406965391698],[126,140,71,-0.08566604002767642],[126,140,72,-0.08363702584541277],[126,140,73,-0.08151760527482865],[126,140,74,-0.07930847103938155],[126,140,75,-0.07701043281372588],[126,140,76,-0.0746244196332485],[126,140,77,-0.07215148231775048],[126,140,78,-0.06959279590928491],[126,140,79,-0.06694966212411402],[126,141,64,-0.10373065540344073],[126,141,65,-0.102350226972039],[126,141,66,-0.1008759727993861],[126,141,67,-0.09930785212938864],[126,141,68,-0.09764592599243327],[126,141,69,-0.09589035951609082],[126,141,70,-0.09404142424949391],[126,141,71,-0.09209950050145599],[126,141,72,-0.09006507969230015],[126,141,73,-0.08793876671946999],[126,141,74,-0.08572128233675158],[126,141,75,-0.08341346554733153],[126,141,76,-0.0810162760105293],[126,141,77,-0.07853079646225569],[126,141,78,-0.07595823514920685],[126,141,79,-0.07329992827675813],[126,142,64,-0.11007891563549588],[126,142,65,-0.10870441238584405],[126,142,66,-0.10723445455395397],[126,142,67,-0.10566901998631406],[126,142,68,-0.10400818961132796],[126,142,69,-0.10225214975037356],[126,142,70,-0.10040119444212103],[126,142,71,-0.09845572778018197],[126,142,72,-0.0964162662640542],[126,142,73,-0.09428344116343856],[126,142,74,-0.09205800089575367],[126,142,75,-0.08974081341707174],[126,142,76,-0.08733286862632195],[126,142,77,-0.08483528078280311],[126,142,78,-0.08224929093702182],[126,142,79,-0.07957626937481732],[126,143,64,-0.11634411573354442],[126,143,65,-0.11497577667460435],[126,143,66,-0.11351037190944258],[126,143,67,-0.11194789758224621],[126,143,68,-0.11028845420296929],[126,143,69,-0.10853224895894875],[126,143,70,-0.10667959803938232],[126,143,71,-0.10473092897272829],[126,143,72,-0.10268678297699907],[126,143,73,-0.10054781732302187],[126,143,74,-0.09831480771049217],[126,143,75,-0.0959886506570462],[126,143,76,-0.09357036590019396],[126,143,77,-0.09106109881215863],[126,143,78,-0.08846212282763777],[126,143,79,-0.08577484188444529],[126,144,64,-0.1225226267759908],[126,144,65,-0.1211606738430887],[126,144,66,-0.11970006284905477],[126,144,67,-0.11814080792335557],[126,144,68,-0.11648302883254069],[126,144,69,-0.1147269532926194],[126,144,70,-0.11287291929389998],[126,144,71,-0.11092137743835684],[126,144,72,-0.10887289328949334],[126,144,73,-0.10672814973477751],[126,144,74,-0.10448794936047079],[126,144,75,-0.10215321683908551],[126,144,76,-0.09972500132929896],[126,144,77,-0.09720447888838524],[126,144,78,-0.09459295489716646],[126,144,79,-0.0918918664974524],[126,145,64,-0.12861089154494432],[126,145,65,-0.1272555295134692],[126,145,66,-0.12579993687059143],[126,145,67,-0.12424414541133266],[126,145,68,-0.12258829382565017],[126,145,69,-0.12083263001175837],[126,145,70,-0.1189775134015274],[126,145,71,-0.11702341729802268],[126,145,72,-0.11497093122514879],[126,145,73,-0.11282076328948065],[126,145,74,-0.11057374255410013],[126,145,75,-0.10823082142466989],[126,145,76,-0.10579307804758042],[126,145,77,-0.1032617187202225],[126,145,78,-0.10063808031339405],[126,145,79,-0.09792363270580551],[126,146,64,-0.1346054289763967],[126,146,65,-0.13325684539657512],[126,146,66,-0.13180647947748203],[126,146,67,-0.13025438035291936],[126,146,68,-0.12860070529508716],[126,146,69,-0.12684572202903233],[126,146,70,-0.12498981105879292],[126,146,71,-0.12303346800530279],[126,146,72,-0.1209773059560243],[126,146,73,-0.11882205782638378],[126,146,74,-0.11656857873283533],[126,146,75,-0.11421784837778237],[126,146,76,-0.11177097344619158],[126,146,77,-0.1092291900139517],[126,146,78,-0.10659386596798925],[126,146,79,-0.10386650343809956],[126,147,64,-0.14050283866720104],[126,147,65,-0.13916120382042196],[126,147,66,-0.13771625672756216],[126,147,67,-0.13616806352762856],[126,147,68,-0.13451679972619568],[126,147,69,-0.13276275251114977],[126,147,70,-0.13090632307975436],[126,147,71,-0.12894802897710878],[126,147,72,-0.1268885064459606],[126,147,73,-0.12472851278794916],[126,147,74,-0.1224689287361096],[126,147,75,-0.12011076083885719],[126,147,76,-0.11765514385529718],[126,147,77,-0.11510334316190796],[126,147,78,-0.11245675717060655],[126,147,79,-0.10971691975816178],[126,148,64,-0.14629980543899412],[126,148,65,-0.1449652723161743],[126,148,66,-0.14352591983974194],[126,148,67,-0.14198183081380256],[126,148,68,-0.1403331986210138],[126,148,69,-0.13858032953978172],[126,148,70,-0.13672364507242052],[126,148,71,-0.1347636842843356],[126,148,72,-0.1327011061542014],[126,148,73,-0.13053669193521011],[126,148,74,-0.12827134752721048],[126,148,75,-0.12590610585997075],[126,148,76,-0.1234421292874015],[126,148,77,-0.12088071199278749],[126,148,78,-0.11822328240504065],[126,148,79,-0.11547140562593772],[126,149,64,-0.1519931039587653],[126,149,65,-0.15066580826123388],[126,149,66,-0.14923220985826657],[126,149,67,-0.14769240787270632],[126,149,68,-0.14604661320087042],[126,149,69,-0.14429515083135291],[126,149,70,-0.1424384621744299],[126,149,71,-0.14047710740214037],[126,149,72,-0.13841176779900322],[126,149,73,-0.13624324812344957],[126,149,74,-0.1339724789797947],[126,149,75,-0.1316005192009776],[126,149,76,-0.1291285582419046],[126,149,77,-0.12655791858344945],[126,149,78,-0.12389005814712062],[126,149,79,-0.12112657272035621],[126,150,64,-0.15757960341621913],[126,150,65,-0.15625966357959997],[126,150,66,-0.15483196237471364],[126,150,67,-0.15329661489080404],[126,150,68,-0.15165384916759828],[126,150,69,-0.14990400851584806],[126,150,70,-0.1480475538481354],[126,150,71,-0.14608506602000237],[126,150,72,-0.14401724818137385],[126,150,73,-0.14184492813835026],[126,150,74,-0.13956906072519348],[126,150,75,-0.1371907301867319],[126,150,76,-0.13471115257102917],[126,150,77,-0.13213167813235804],[126,150,78,-0.1294537937444996],[126,150,79,-0.12667912532432168],[126,151,64,-0.16305627225808372],[126,151,65,-0.16174378949966595],[126,151,66,-0.16032211230788507],[126,151,67,-0.1587913713803757],[126,151,68,-0.15715181152350655],[126,151,69,-0.15540379397479753],[126,151,70,-0.15354779873525848],[126,151,71,-0.15158442691171747],[126,151,72,-0.14951440306910557],[126,151,73,-0.14733857759277313],[126,151,74,-0.14505792906066117],[126,151,75,-0.14267356662555863],[126,151,76,-0.14018673240728197],[126,151,77,-0.13759880389482415],[126,151,78,-0.1349112963584932],[126,151,79,-0.13212586527199122],[126,152,64,-0.16842018297906192],[126,152,65,-0.16711524136913325],[126,152,66,-0.16569969874128665],[126,152,67,-0.1641737010381622],[126,152,68,-0.1625375094498145],[126,152,69,-0.16079150273812282],[126,152,70,-0.15893617957079265],[126,152,71,-0.15697216086502042],[126,152,72,-0.1549001921407862],[126,152,73,-0.152721145883847],[126,152,74,-0.1504360239182596],[126,152,75,-0.14804595978865953],[126,152,76,-0.14555222115213284],[126,152,77,-0.14295621217973353],[126,152,78,-0.14025947596765598],[126,152,79,-0.13746369695802285],[126,153,64,-0.17366851696958896],[126,153,65,-0.17237118352721748],[126,153,66,-0.17096186981835892],[126,153,67,-0.16944073666221338],[126,153,68,-0.16780806124371028],[126,153,69,-0.16606423944001858],[126,153,70,-0.16420978815633314],[126,153,71,-0.16224534767100185],[126,153,72,-0.1601716839899603],[126,153,73,-0.15798969121055018],[126,153,74,-0.15570039389454748],[126,153,75,-0.15330494945062312],[126,153,76,-0.15080465052608416],[126,153,77,-0.1482009274079329],[126,153,78,-0.1454953504332659],[126,153,79,-0.14268963240897115],[126,154,64,-0.17879856942051497],[126,154,65,-0.1775088942342613],[126,154,66,-0.17610588769557867],[126,154,67,-0.1745897251270464],[126,154,68,-0.17296069931414781],[126,154,69,-0.1712192228339836],[126,154,70,-0.16936583039294784],[126,154,71,-0.16740118117343683],[126,154,72,-0.16532606118955406],[126,154,73,-0.16314138565188752],[126,154,74,-0.1608482013411865],[126,154,75,-0.1584476889911608],[126,154,76,-0.15594116568024763],[126,154,77,-0.1533300872323885],[126,154,78,-0.15061605062683503],[126,154,79,-0.14780079641693733],[126,155,64,-0.18380775428444995],[126,155,65,-0.18252577065849196],[126,155,66,-0.18112913355317017],[126,155,67,-0.17961803241685992],[126,155,68,-0.17799277523612833],[126,155,69,-0.17625379086673942],[126,155,70,-0.174401631373321],[126,155,71,-0.17243697437776284],[126,155,72,-0.1703606254163066],[126,155,73,-0.16817352030541144],[126,155,74,-0.1658767275162112],[126,155,75,-0.16347145055779633],[126,155,76,-0.16095903036916182],[126,155,77,-0.15834094771985918],[126,155,78,-0.15561882561938034],[126,155,79,-0.15279443173522],[126,156,64,-0.18869360929390522],[126,156,65,-0.18741933392005639],[126,156,66,-0.18602911266355726],[126,156,67,-0.1845231487169362],[126,156,68,-0.18290176486359233],[126,156,69,-0.18116540581117135],[126,156,70,-0.17931464053331447],[126,156,71,-0.17735016461984154],[126,156,72,-0.17527280263533673],[126,156,73,-0.1730835104862145],[126,156,74,-0.17078337779608543],[126,156,75,-0.1683736302896549],[126,156,76,-0.16585563218499078],[126,156,77,-0.1632308885942091],[126,156,78,-0.1605010479325919],[126,156,79,-0.15766790433609512],[126,157,64,-0.19345380103636056],[126,157,65,-0.19218723419246553],[126,157,66,-0.19080345951768618],[126,157,67,-0.18930269356335672],[126,157,68,-0.18768527350105424],[126,157,69,-0.18595165945841952],[126,157,70,-0.18410243686306493],[126,157,71,-0.18213831879463316],[126,157,72,-0.18006014834497552],[126,157,73,-0.1778689009865242],[126,157,74,-0.17556568694868402],[126,157,75,-0.17315175360246893],[126,157,76,-0.17062848785322748],[126,157,77,-0.1679974185415003],[126,157,78,-0.16526021885202669],[126,157,79,-0.1624187087308564],[126,158,64,-0.19808613008599163],[126,158,65,-0.19682725586117988],[126,158,66,-0.19544994300895757],[126,158,67,-0.1939544210507722],[126,158,68,-0.19234104113371764],[126,158,69,-0.1906102783688567],[126,158,70,-0.18876273417735945],[126,158,71,-0.18679913864451825],[126,158,72,-0.18472035288160238],[126,158,73,-0.18252737139563824],[126,158,74,-0.18022132446692862],[126,158,75,-0.17780348053454642],[126,158,76,-0.1752752485896394],[126,158,77,-0.17263818057659153],[126,158,78,-0.16989397380206206],[126,158,79,-0.16704447335185135],[126,159,64,-0.2025885361922103],[126,159,65,-0.20133732273949212],[126,159,66,-0.1999664716749121],[126,159,67,-0.19847622509837304],[126,159,68,-0.19686694771621616],[126,159,69,-0.19513912918210252],[126,159,70,-0.19329338644543959],[126,159,71,-0.19133046610741922],[126,159,72,-0.18925124678463368],[126,159,73,-0.187056741480345],[126,159,74,-0.18474809996323283],[126,159,75,-0.1823266111538473],[126,159,76,-0.17979370551860863],[126,159,77,-0.17715095747139897],[126,159,78,-0.1744000877827615],[126,159,79,-0.17154296599666485],[126,160,64,-0.2069591035250984],[126,160,65,-0.20571550334178224],[126,160,66,-0.20435109899676007],[126,160,67,-0.20286614477414544],[126,160,68,-0.2012610185200694],[126,160,69,-0.19953622398616033],[126,160,70,-0.19769239318031118],[126,160,71,-0.1957302887248028],[126,160,72,-0.19365080622174524],[126,160,73,-0.19145497662591926],[126,160,74,-0.1891439686248363],[126,160,75,-0.18671909102624829],[126,160,76,-0.18418179515294808],[126,160,77,-0.18153367724490166],[126,160,78,-0.17877648086873565],[126,160,79,-0.17591209933453011],[126,161,64,-0.21119606597753815],[126,161,65,-0.20996001621395421],[126,161,66,-0.20860202875655076],[126,161,67,-0.20712236967721576],[126,161,68,-0.2055214295396487],[126,161,69,-0.20379972574546934],[126,161,70,-0.20195790488736842],[126,161,71,-0.19999674510936472],[126,161,72,-0.19791715847413371],[126,161,73,-0.19572019333748836],[126,161,74,-0.19340703672983106],[126,161,75,-0.190979016744805],[126,161,76,-0.18843760493499073],[126,161,77,-0.18578441871468698],[126,161,78,-0.18302122376979624],[126,161,79,-0.18014993647476996],[126,162,64,-0.2152978125241266],[126,162,65,-0.2140692353211392],[126,162,66,-0.212717620452072],[126,162,67,-0.21124324537836803],[126,162,68,-0.2096465129567484],[126,162,69,-0.20792795378797546],[126,162,70,-0.20608822857241882],[126,162,71,-0.20412813047248846],[126,162,72,-0.20204858748190202],[126,162,73,-0.1998506648018622],[126,162,74,-0.19753556722396903],[126,162,75,-0.1951046415200931],[126,162,76,-0.1925593788390525],[126,162,77,-0.1899014171101372],[126,162,78,-0.18713254345349883],[126,162,79,-0.1842546965973615],[126,163,64,-0.2192628926370026],[126,163,65,-0.21804169549278907],[126,163,66,-0.2166963947696081],[126,163,67,-0.21522727891886517],[126,163,68,-0.21363476266388237],[126,163,69,-0.2119193893513298],[126,163,70,-0.21008183330923003],[126,163,71,-0.20812290221160035],[126,163,72,-0.20604353944969833],[126,163,73,-0.20384482650994906],[126,163,74,-0.20152798535837502],[126,163,75,-0.19909438083175857],[126,163,76,-0.19654552303537987],[126,163,77,-0.19388306974736824],[126,163,78,-0.1911088288296925],[126,163,79,-0.188224760645741],[126,164,64,-0.22309002175834503],[126,164,65,-0.2218760979249288],[126,164,66,-0.22053703911431433],[126,164,67,-0.21907314436733194],[126,164,68,-0.21748483984607214],[126,164,69,-0.21577268118799142],[126,164,70,-0.21393735586636953],[126,164,71,-0.2119796855571845],[126,164,72,-0.20990062851236813],[126,164,73,-0.2077012819395242],[126,164,74,-0.20538288438792818],[126,164,75,-0.20294681814103777],[126,164,76,-0.2003946116153572],[126,164,77,-0.19772794176569553],[126,164,78,-0.19494863649684446],[126,164,79,-0.1920586770816196],[126,165,64,-0.2267780868297351],[126,165,65,-0.2255713157397531],[126,165,66,-0.2242384131984032],[126,165,67,-0.22277968843489393],[126,165,68,-0.22119557862131534],[126,165,69,-0.21948665122941657],[126,165,70,-0.21765360639352138],[126,165,71,-0.21569727927964988],[126,165,72,-0.21361864246081008],[126,165,73,-0.21141880829853754],[126,165,74,-0.20909903133050656],[126,165,75,-0.2066607106644387],[126,165,76,-0.20410539237815528],[126,165,77,-0.20143477192581016],[126,165,78,-0.19865069655032763],[126,165,79,-0.19575516770199786],[126,166,64,-0.23032615187825733],[126,166,65,-0.22912639960244197],[126,166,66,-0.22779955468701163],[126,166,67,-0.22634593614844334],[126,166,68,-0.22476599173960898],[126,166,69,-0.22306030030921087],[126,166,70,-0.22122957416715383],[126,166,71,-0.21927466145592023],[126,166,72,-0.2171965485279117],[126,166,73,-0.21499636232883512],[126,166,74,-0.21267537278695725],[126,166,75,-0.21023499520845512],[126,166,76,-0.20767679267870298],[126,166,77,-0.20500247846954134],[126,166,78,-0.20221391845254577],[126,166,79,-0.19931313351824864],[126,167,64,-0.23373346365948744],[126,167,65,-0.232540583395348],[126,167,66,-0.2312196849019036],[126,167,67,-0.2297710965821862],[126,167,68,-0.22819527634067993],[126,167,69,-0.226492813945397],[126,167,70,-0.22466443339569475],[126,167,71,-0.22271099529590144],[126,167,72,-0.22063349923471431],[126,167,73,-0.2184330861704492],[126,167,74,-0.2161110408219612],[126,167,75,-0.21366879406546913],[126,167,76,-0.2111079253371233],[126,167,77,-0.20843016504135703],[126,167,78,-0.20563739696504657],[126,167,79,-0.2027316606974292],[126,168,64,-0.2369994573571922],[126,168,65,-0.235813289949377],[126,168,66,-0.2344982145828305],[126,168,67,-0.23305456864728835],[126,168,68,-0.23148281977024054],[126,168,69,-0.22978356818161616],[126,168,70,-0.22795754908402965],[126,168,71,-0.2260056350286449],[126,168,72,-0.22392883829662924],[126,168,73,-0.22172831328627307],[126,168,74,-0.2194053589055941],[126,168,75,-0.21696142097066018],[126,168,76,-0.2143980946094678],[126,168,77,-0.21171712667142384],[126,168,78,-0.20892041814244489],[126,168,79,-0.20601002656563272],[126,169,64,-0.24012376233982458],[126,169,65,-0.23894413683264482],[126,169,66,-0.23763474970662857],[126,169,67,-0.2361959469397088],[126,169,68,-0.2346282054548583],[126,169,69,-0.23293213548735192],[126,169,70,-0.2311084829574115],[126,169,71,-0.22915813184829392],[126,169,72,-0.22708210658978945],[126,169,73,-0.22488157444721024],[126,169,74,-0.22255784791568634],[126,169,75,-0.22011238712000358],[126,169,76,-0.2175468022198207],[126,169,77,-0.21486285582031062],[126,169,78,-0.21206246538824403],[126,169,79,-0.20914770567347196],[126,170,64,-0.24310620797390015],[126,170,65,-0.2419329421964993],[126,170,66,-0.2406290973641496],[126,170,67,-0.23919502764630673],[126,170,68,-0.23763121883552607],[126,170,69,-0.23593829071726036],[126,170,70,-0.23411699944486897],[126,170,71,-0.23216823991990154],[126,170,72,-0.23009304817762755],[126,170,73,-0.22789260377788223],[126,170,74,-0.22556823220105604],[126,170,75,-0.22312140724945528],[126,170,76,-0.2205537534538743],[126,170,77,-0.21786704848542393],[126,170,78,-0.2150632255726339],[126,170,79,-0.212144375923784],[126,171,64,-0.2459468294940761],[126,171,65,-0.24477973067872671],[126,171,66,-0.24348127169483536],[126,171,67,-0.24205181450903945],[126,171,68,-0.24049185335974954],[126,171,69,-0.2388020171294296],[126,171,70,-0.236983071721929],[126,171,71,-0.23503592244493288],[126,171,72,-0.23296161639749213],[126,171,73,-0.23076134486271527],[126,171,74,-0.22843644570544186],[126,171,75,-0.22598840577512758],[126,171,76,-0.22341886331378047],[126,171,77,-0.2207296103689943],[126,171,78,-0.21792259521209612],[126,171,79,-0.2149999247613631],[126,172,64,-0.2486458739300419],[126,172,65,-0.24748473936405102],[126,172,66,-0.24619149987904954],[126,172,67,-0.24476652484736383],[126,172,68,-0.243210316532264],[126,172,69,-0.24152351246267245],[126,172,70,-0.23970688781277016],[126,172,71,-0.23776135778657015],[126,172,72,-0.2356879800074203],[126,172,73,-0.23348795691251656],[126,172,74,-0.23116263815224336],[126,172,75,-0.22871352299457948],[126,172,76,-0.22614226273439908],[126,172,77,-0.22345066310772066],[126,172,78,-0.22064068671091774],[126,172,79,-0.21771445542484757],[126,173,64,-0.25120380609026993],[126,173,65,-0.250048423801977],[126,173,66,-0.24876022818821952],[126,173,67,-0.2473395956388883],[126,173,68,-0.24578703602442897],[126,173,69,-0.24410319507290923],[126,173,70,-0.24228885675184775],[126,173,71,-0.24034494565486286],[126,173,72,-0.23827252939311028],[126,173,73,-0.236072820991586],[126,173,74,-0.2337471812901154],[126,173,75,-0.23129712134926184],[126,173,76,-0.22872430486098871],[126,173,77,-0.22603055056412813],[126,173,78,-0.2232178346646645],[126,173,79,-0.22028829326079657],[126,174,64,-0.25362131460248993],[126,174,65,-0.25247146408183696],[126,174,66,-0.25118812809264035],[126,174,67,-0.24977168965813945],[126,174,68,-0.24822266584216368],[126,174,69,-0.24654171012849657],[126,174,70,-0.2447296148048601],[126,174,71,-0.24278731335158887],[126,174,72,-0.24071588283495682],[126,174,73,-0.23851654630523145],[126,174,74,-0.23619067519928472],[126,174,75,-0.23373979174798254],[126,174,76,-0.2311655713881985],[126,174,77,-0.22846984517949376],[126,174,78,-0.22565460222548062],[126,174,79,-0.22272199209982835],[126,175,64,-0.2558993180109632],[126,175,65,-0.25475477096512145],[126,175,66,-0.2534761024270322],[126,175,67,-0.25206370167351744],[126,175,68,-0.25051809255249846],[126,175,69,-0.24883993586458075],[126,175,70,-0.24703003174912852],[126,175,71,-0.24508932207490397],[126,175,72,-0.24301889283523004],[126,175,73,-0.24081997654775755],[126,175,74,-0.23849395465865797],[126,175,75,-0.23604235995147038],[126,175,76,-0.23346687896044438],[126,175,77,-0.23076935438842316],[126,175,78,-0.2279517875292837],[126,175,79,-0.22501634069488974],[126,176,64,-0.25803897093061456],[126,176,65,-0.25689949207514895],[126,176,66,-0.2556252916138967],[126,176,67,-0.25421676470250343],[126,176,68,-0.25267444156880303],[126,176,69,-0.25099898989653757],[126,176,70,-0.24919121721345217],[126,176,71,-0.24725207328383347],[126,176,72,-0.24518265250545224],[126,176,73,-0.2429841963109931],[126,176,74,-0.24065809557378914],[126,176,75,-0.23820589301809325],[126,176,76,-0.23562928563372387],[126,176,77,-0.23293012709513505],[126,176,78,-0.23011043018492217],[126,176,79,-0.2271723692217229],[126,177,64,-0.26004167025789493],[126,177,65,-0.2589070181439501],[126,177,66,-0.25763707994454976],[126,177,67,-0.2562322563249856],[126,177,68,-0.2546930834945611],[126,177,69,-0.2530202355923651],[126,177,70,-0.25121452707730707],[126,177,71,-0.2492769151224844],[126,177,72,-0.24720850201384514],[126,177,73,-0.24501053755322288],[126,177,74,-0.24268442146556823],[126,177,75,-0.24023170581060327],[126,177,76,-0.23765409739874244],[126,177,77,-0.23495346021132268],[126,177,78,-0.23213181782516046],[126,177,79,-0.22919135584139094],[126,178,64,-0.2619090614384435],[126,178,65,-0.26077898931642896],[126,178,66,-0.25951310191790045],[126,178,67,-0.2581118050547744],[126,178,68,-0.2565756405257612],[126,178,69,-0.25490528850410166],[126,178,70,-0.25310156992945887],[126,178,71,-0.2511654489040418],[126,178,72,-0.2490980350929186],[126,178,73,-0.2469005861285979],[126,178,74,-0.24457451001970576],[126,178,75,-0.24212136756397828],[126,178,76,-0.23954287476541958],[126,178,77,-0.2368409052556636],[126,178,78,-0.23401749271956118],[126,178,79,-0.23107483332494294],[126,179,64,-0.2636430447916066],[126,179,65,-0.26251730151186936],[126,179,66,-0.261255248637033],[126,179,67,-0.2598572967693683],[126,179,68,-0.25832399291196395],[126,179,69,-0.25665602285832756],[126,179,70,-0.254854213586051],[126,179,71,-0.25291953565461034],[126,179,72,-0.25085310560725593],[126,179,73,-0.24865618837707903],[126,179,74,-0.24633019969707304],[126,179,75,-0.24387670851441856],[126,179,76,-0.24129743940883508],[126,179,77,-0.23859427501503783],[126,179,78,-0.23576925844932983],[126,179,79,-0.2328245957402687],[126,180,64,-0.26524578189167725],[126,180,65,-0.26412411284264115],[126,180,66,-0.26286567426345475],[126,180,67,-0.2614708811978309],[126,180,68,-0.2599402854759053],[126,180,69,-0.25827457810561183],[126,180,70,-0.25647459166802766],[126,180,71,-0.25454130271676434],[126,180,72,-0.2524758341813643],[126,180,73,-0.250279457774779],[126,180,74,-0.24795359640475667],[126,180,75,-0.2454998265893622],[126,180,76,-0.24291988087647687],[126,180,77,-0.24021565026731406],[126,180,78,-0.2373891866439768],[126,180,79,-0.23444270520100807],[126,181,64,-0.2667197020059562],[126,181,65,-0.26560185009020676],[126,181,66,-0.26434680252911014],[126,181,67,-0.26295497846687466],[126,181,68,-0.26142693419173724],[126,181,69,-0.25976336552900425],[126,181,70,-0.25796511023798807],[126,181,71,-0.25603315041290253],[126,181,72,-0.2539686148876813],[126,181,73,-0.25177278164480144],[126,181,74,-0.24944708022792794],[126,181,75,-0.24699309415861292],[126,181,76,-0.24441256335688943],[126,181,77,-0.24170738656580204],[126,181,78,-0.23887962377989647],[126,181,79,-0.23593149867761665],[126,182,64,-0.26806750858964357],[126,182,65,-0.26695321523844817],[126,182,66,-0.2657013333061722],[126,182,67,-0.2643122857051743],[126,182,68,-0.2627866328219194],[126,182,69,-0.2611250749115869],[126,182,70,-0.25932845449649744],[126,182,71,-0.2573977587684255],[126,182,72,-0.25533412199475947],[126,182,73,-0.2531388279285893],[126,182,74,-0.250813312222544],[126,182,75,-0.24835916484660414],[126,182,76,-0.24577813250973768],[126,182,77,-0.24307212108539444],[126,182,78,-0.240243198040886],[126,182,79,-0.2372935948705973],[126,183,64,-0.2692921858374695],[126,183,65,-0.26818119206420865],[126,183,66,-0.2669322492345193],[126,183,67,-0.2655457837058032],[126,183,68,-0.2640223596126654],[126,183,69,-0.26236268126298634],[126,183,70,-0.2605675955377412],[126,183,71,-0.2586380942946366],[126,183,72,-0.2565753167755269],[126,183,73,-0.2543805520176893],[126,183,74,-0.2520552412687792],[126,183,75,-0.2496009804056939],[126,183,76,-0.2470195223571886],[126,183,77,-0.24431277953028518],[126,183,78,-0.24148282624049466],[126,183,79,-0.2385319011458059],[126,184,64,-0.2703970052921528],[126,184,65,-0.26928905278514526],[126,184,66,-0.26804282240698374],[126,184,67,-0.26665874364689135],[126,184,68,-0.2651373840480331],[126,184,69,-0.26347945160494124],[126,184,70,-0.2616857971646288],[126,184,71,-0.2597574168314565],[126,184,72,-0.2576954543757177],[126,184,73,-0.2555012036460189],[126,184,74,-0.25317611098528137],[126,184,75,-0.25072177765058445],[126,184,76,-0.24813996223670276],[126,184,77,-0.24543258310337135],[126,184,78,-0.2426017208063046],[126,184,79,-0.2396496205319173],[126,185,64,-0.2713855325096507],[126,185,65,-0.27028036476486006],[126,185,66,-0.26903662111233906],[126,185,67,-0.267654733870465],[126,185,68,-0.2661352736626249],[126,185,69,-0.2644789518158861],[126,185,70,-0.2626866227633028],[126,185,71,-0.26075928644991975],[126,185,72,-0.2586980907424351],[126,185,73,-0.25650433384260585],[126,185,74,-0.2541794667042162],[126,185,75,-0.2517250954538329],[126,185,76,-0.24914298381519862],[126,185,77,-0.2464350555372944],[126,185,78,-0.24360339682610355],[126,185,79,-0.24065025878001967],[126,186,64,-0.27226163378120527],[126,186,65,-0.27115899727530335],[126,186,66,-0.26991751663602837],[126,186,67,-0.268537626719474],[126,186,68,-0.26701990091290184],[126,186,69,-0.2653650535345563],[126,186,70,-0.26357394223705866],[126,186,71,-0.2616475704144513],[126,186,72,-0.2595870896128517],[126,186,73,-0.25739380194479733],[126,186,74,-0.2550691625071021],[126,186,75,-0.25261478180245434],[126,186,76,-0.2500324281645956],[126,186,77,-0.247324030187125],[126,186,78,-0.24449167915595105],[126,186,79,-0.2415376314853389],[126,187,64,-0.2730294829121648],[126,187,65,-0.27192912831643745],[126,187,66,-0.2706896901186149],[126,187,67,-0.2693116054329824],[126,187,68,-0.2677954501070893],[126,187,69,-0.26614194112259537],[126,187,70,-0.26435193899965537],[126,187,71,-0.2624264502049073],[126,187,72,-0.2603666295630258],[126,187,73,-0.2581737826719239],[126,187,74,-0.2558493683214187],[126,187,75,-0.25339500091559586],[126,187,76,-0.25081245289871146],[126,187,77,-0.24810365718467264],[126,187,78,-0.2452707095901222],[126,187,79,-0.24231587127107257],[126,188,64,-0.2736935680576359],[126,188,65,-0.2725952514932135],[126,188,66,-0.2713576394720061],[126,188,67,-0.2699811710995834],[126,188,68,-0.26846642439372914],[126,188,69,-0.26681411868621463],[126,188,70,-0.26502511702807174],[126,188,71,-0.2631004285984321],[126,188,72,-0.2610412111168885],[126,188,73,-0.25884877325946976],[126,188,74,-0.2565245770780361],[126,188,75,-0.2540702404233389],[126,188,76,-0.2514875393715734],[126,188,77,-0.2487784106544748],[126,188,78,-0.24594495409297856],[126,188,79,-0.2429894350343894],[126,189,64,-0.27425869861490093],[126,189,65,-0.27316218294979533],[126,189,66,-0.27192618635339305],[126,189,67,-0.27055114966896954],[126,189,68,-0.2690376528088182],[126,189,69,-0.2673864171568474],[126,189,70,-0.2655983079746447],[126,189,71,-0.2636743368110698],[126,189,72,-0.2616156639153392],[126,189,73,-0.25942360065368664],[126,189,74,-0.2570996119294138],[126,189,75,-0.2546453186065665],[126,189,76,-0.2520624999370753],[126,189,77,-0.24935309599140054],[126,189,78,-0.2465192100927096],[126,189,79,-0.24356311125452945],[126,190,64,-0.2747300121726428],[126,190,65,-0.27363506836107165],[126,190,66,-0.2724004831969389],[126,190,67,-0.2710266990216996],[126,190,68,-0.2695142973815673],[126,190,69,-0.267864001430834],[126,190,70,-0.26607667833862747],[126,190,71,-0.2641533416991678],[126,190,72,-0.26209515394548655],[126,190,73,-0.2599034287666909],[126,190,74,-0.25757963352859314],[126,190,75,-0.2551253916979306],[126,190,76,-0.25254248527002354],[126,190,77,-0.24983285719990922],[126,190,78,-0.24699861383697563],[126,190,79,-0.2440420273630447],[126,191,64,-0.2751129815169654],[126,191,65,-0.27401938998144815],[126,191,66,-0.2727860203032111],[126,191,67,-0.2714133160971529],[126,191,68,-0.2699018602987754],[126,191,69,-0.2682523775681277],[126,191,70,-0.26646573669716167],[126,191,71,-0.26454295302056474],[126,191,72,-0.2624851908300275],[126,191,73,-0.260293765792034],[126,191,74,-0.25797014736898927],[126,191,75,-0.2555159612439154],[126,191,76,-0.2529329917485603],[126,191,77,-0.2502231842949548],[126,191,78,-0.24738864781044967],[126,191,79,-0.2444316571761711],[126,192,64,-0.275413421694205],[126,192,65,-0.2743209737509119],[126,192,66,-0.27308863298634933],[126,192,67,-0.2717168440796657],[126,192,68,-0.27020619112781175],[126,192,69,-0.26855740005001727],[126,192,70,-0.26677134099565325],[126,192,71,-0.2648490307555553],[126,192,72,-0.2627916351767604],[126,192,73,-0.2606004715807415],[126,192,74,-0.25827701118496427],[126,192,75,-0.2558228815279878],[126,192,76,-0.2532398688979579],[126,192,77,-0.2505299207645304],[126,192,78,-0.2476951482142491],[126,192,79,-0.24473782838932634],[126,193,64,-0.275637497130542],[126,193,65,-0.2745459964583763],[126,193,66,-0.27331450877897934],[126,193,67,-0.27194347964285703],[126,193,68,-0.27043349409821504],[126,193,69,-0.268785279095875],[126,193,70,-0.26699970589756417],[126,193,71,-0.2650777924876434],[126,193,72,-0.2630207059882341],[126,193,73,-0.2608297650778284],[126,193,74,-0.2585064424131993],[126,193,75,-0.2560523670548438],[126,193,76,-0.2534693268957967],[126,193,77,-0.2507592710938592],[126,193,78,-0.2479243125072671],[126,193,79,-0.2449667301337417],[126,194,64,-0.27579172880840086],[126,194,65,-0.27470099296230077],[126,194,66,-0.27347019469486256],[126,194,67,-0.272099780252136],[126,194,68,-0.27059033544189703],[126,194,69,-0.26894258803891924],[126,194,70,-0.26715741019361083],[126,194,71,-0.26523582084407016],[126,194,72,-0.26317898813153207],[126,194,73,-0.26098823181928066],[126,194,74,-0.2586650257148503],[126,194,75,-0.2562110000957436],[126,194,76,-0.25362794413851086],[126,194,77,-0.25091780835122623],[126,194,78,-0.2480827070093935],[126,194,79,-0.24512492059521818],[126,195,64,-0.2758830014996587],[126,195,65,-0.2747928634685969],[126,195,66,-0.27356260454929693],[126,195,67,-0.27219267152540616],[126,195,68,-0.27068365079197443],[126,195,69,-0.26903627076100955],[126,195,70,-0.26725140427038085],[126,195,71,-0.26533007099613715],[126,195,72,-0.2632734398682014],[126,195,73,-0.2610828314895228],[126,195,74,-0.25875972055850616],[126,195,75,-0.2563057382949485],[126,195,76,-0.2537226748693251],[126,195,77,-0.2510124818354652],[126,195,78,-0.24817727456664207],[126,195,79,-0.24521933469502377],[126,196,64,-0.27591857105562856],[126,196,65,-0.2748288808657935],[126,196,66,-0.27359902633724076],[126,196,67,-0.2722294546519345],[126,196,68,-0.2707207526401909],[126,196,69,-0.26907364918644194],[126,196,70,-0.2672890176383441],[126,196,71,-0.2653678782192922],[126,196,72,-0.2633114004443001],[126,196,73,-0.2611209055393354],[126,196,74,-0.25879786886391987],[126,196,75,-0.25634392233723136],[126,196,76,-0.2537608568675471],[126,196,77,-0.25105062478506857],[126,196,78,-0.24821534227815367],[126,196,79,-0.24525729183290113],[126,197,64,-0.2759060717538576],[126,197,65,-0.2748166981174993],[126,197,66,-0.27358712966919607],[126,197,67,-0.2722178138694308],[126,197,68,-0.27070933785297124],[126,197,69,-0.26906243083478576],[126,197,70,-0.26727796651929303],[126,197,71,-0.26535696551301635],[126,197,72,-0.2633005977405998],[126,197,73,-0.26111018486426707],[126,197,74,-0.2587872027065492],[126,197,75,-0.2563332836765002],[126,197,76,-0.2537502191992559],[126,197,77,-0.2510399621489634],[126,197,78,-0.24820462928511433],[126,197,79,-0.24524650369222756],[126,198,64,-0.27585352370171046],[126,198,65,-0.27476435571213165],[126,198,66,-0.27353497326482257],[126,198,67,-0.2721658239992959],[126,198,68,-0.27065749524607896],[126,198,69,-0.2690107164327298],[126,198,70,-0.2672263614931816],[126,198,71,-0.26530545128048477],[126,198,72,-0.26324915598291343],[126,198,73,-0.261058797543507],[126,198,74,-0.25873585208287675],[126,198,75,-0.2562819523255021],[126,198,76,-0.2536988900293582],[126,198,77,-0.2509886184189195],[126,198,78,-0.2481532546215579],[126,198,79,-0.24519508210728835],[126,199,64,-0.2757693402967498],[126,199,65,-0.2746802891699245],[126,199,66,-0.2734510125042966],[126,199,67,-0.2720819580400642],[126,199,68,-0.27057371321788615],[126,199,69,-0.26892700758495136],[126,199,70,-0.26714271520437805],[126,199,71,-0.2652218570680086],[126,199,72,-0.263165603512563],[126,199,73,-0.26097527663923203],[126,199,74,-0.2586523527365272],[126,199,75,-0.2561984647066212],[126,199,76,-0.25361540449502007],[126,199,77,-0.2509051255236038],[126,199,78,-0.2480697451270647],[126,199,79,-0.245111546992689],[126,200,64,-0.2756623357439115],[126,200,65,-0.2745733366072156],[126,200,66,-0.27334410703740675],[126,200,67,-0.27197509481902804],[126,200,68,-0.27046688744125813],[126,200,69,-0.26882021450400495],[126,200,70,-0.26703595012732884],[126,200,71,-0.26511511536426147],[126,200,72,-0.26305888061698124],[126,200,73,-0.26086856805642666],[126,200,74,-0.2585456540451686],[126,200,75,-0.25609177156377116],[126,200,76,-0.2535087126404785],[126,200,77,-0.25079843078427877],[126,200,78,-0.24796304342135667],[126,200,79,-0.24500483433489162],[126,201,64,-0.2755417326294758],[126,201,65,-0.27445274635800776],[126,201,66,-0.2732235284503943],[126,201,67,-0.27185452670204935],[126,201,68,-0.27034632861404906],[126,201,69,-0.2686996637992327],[126,201,70,-0.26691540639163047],[126,201,71,-0.26499457745928856],[126,201,72,-0.2629383474204501],[126,201,73,-0.26074803846317396],[126,201,74,-0.25842512696821285],[126,201,75,-0.2559712459353767],[126,201,76,-0.25338818741322744],[126,201,77,-0.2506779049321456],[126,201,78,-0.24784251594078643],[126,201,79,-0.24488430424588403],[126,202,64,-0.27516650310723867],[126,202,65,-0.2740775143897427],[126,202,66,-0.2728482941068515],[126,202,67,-0.2714792900543721],[126,202,68,-0.26997108973368855],[126,202,69,-0.2683244227578594],[126,202,70,-0.26654016326104346],[126,202,71,-0.26461933231132295],[126,202,72,-0.262563100326881],[126,202,73,-0.2603727894956186],[126,202,74,-0.25804987619802866],[126,202,75,-0.25559599343355877],[126,202,76,-0.2530129332503025],[126,202,77,-0.2503026491780621],[126,202,78,-0.24746725866480457],[126,202,79,-0.24450904551646013],[126,203,64,-0.27516207335504383],[126,203,65,-0.2740730350540045],[126,203,66,-0.27284376698551105],[126,203,67,-0.2714747169476682],[126,203,68,-0.2699664724421694],[126,203,69,-0.26831976308034755],[126,203,70,-0.26653546299255404],[126,203,71,-0.26461459324093206],[126,203,72,-0.2625583242355475],[126,203,73,-0.2603679781539556],[126,203,74,-0.2580450313640277],[126,203,75,-0.2555911168502636],[126,203,76,-0.25300802664343347],[126,203,77,-0.2502977142535906],[126,203,78,-0.24746229710647782],[126,203,79,-0.24450405898327487],[126,204,64,-0.2751468024153353],[126,204,65,-0.27405759318209255],[126,204,66,-0.27282816037954294],[126,204,67,-0.2714589518137096],[126,204,68,-0.26995055498735354],[126,204,69,-0.26830369950585997],[126,204,70,-0.26651925948645283],[126,204,71,-0.2645982559708029],[126,204,72,-0.2625418593409915],[126,204,73,-0.2603513917389101],[126,204,74,-0.2580283294889182],[126,204,75,-0.2555743055239844],[126,204,76,-0.25299111181515976],[126,204,77,-0.2502807018044163],[126,204,78,-0.2474451928408815],[126,204,79,-0.24448686862041102],[126,205,64,-0.2749893766027851],[126,205,65,-0.2738998040639873],[126,205,66,-0.27267002112474736],[126,205,67,-0.2713004756083247],[126,205,68,-0.2697917550201484],[126,205,69,-0.26814458895335713],[126,205,70,-0.2663598514976615],[126,205,71,-0.26443856365160123],[126,205,72,-0.2623818957381532],[126,205,73,-0.26019116982377344],[126,205,74,-0.25786786214069524],[126,205,75,-0.2554136055127102],[126,205,76,-0.25283019178427446],[126,205,77,-0.25011957425298315],[126,205,78,-0.2472838701054345],[126,205,79,-0.24432536285643203],[126,206,64,-0.2748087811829253],[126,206,65,-0.27371858450964026],[126,206,66,-0.2724882000521518],[126,206,67,-0.2711180756639052],[126,206,68,-0.26960879885548417],[126,206,69,-0.26796109919954936],[126,206,70,-0.26617585073910033],[126,206,71,-0.26425407439912385],[126,206,72,-0.26219694040159214],[126,206,73,-0.2600057706838894],[126,206,74,-0.2576820413204919],[126,206,75,-0.2552273849481247],[126,206,76,-0.2526435931942427],[126,206,77,-0.249932619108873],[126,206,78,-0.24709657959984477],[126,206,79,-0.2441377578713526],[126,207,64,-0.2745993093146357],[126,207,65,-0.2735081626208683],[126,207,66,-0.27227686255719286],[126,207,67,-0.27090585702389414],[126,207,68,-0.269395733540282],[126,207,69,-0.2677472216487171],[126,207,70,-0.26596119532195317],[126,207,71,-0.2640386753738605],[126,207,72,-0.26198083187349186],[126,207,73,-0.25978898656257254],[126,207,74,-0.25746461527623576],[126,207,75,-0.2550093503672295],[126,207,76,-0.25242498313344264],[126,207,77,-0.249713466248784],[126,207,78,-0.24687691619744467],[126,207,79,-0.2439176157114874],[126,208,64,-0.27435556382312765],[126,208,65,-0.27326307931976],[126,208,66,-0.27203048989294665],[126,208,67,-0.27065824351020307],[126,208,68,-0.2691469277043843],[126,208,69,-0.26749727197642337],[126,208,70,-0.2657101502013762],[126,208,71,-0.2637865830378401],[126,208,72,-0.2617277403407048],[126,208,73,-0.2595349435773203],[126,208,74,-0.25720966824690095],[126,208,75,-0.254753546303392],[126,208,76,-0.2521683685816468],[126,208,77,-0.24945608722694879],[126,208,78,-0.2466188181279081],[126,208,79,-0.2436588433526754],[126,209,64,-0.2740724505181461],[126,209,65,-0.2729781816050775],[126,209,66,-0.271743872367061],[126,209,67,-0.2703699708630033],[126,209,68,-0.26885706464552495],[126,209,69,-0.2672058831619768],[126,209,70,-0.2654173001587521],[126,209,71,-0.26349233608896083],[126,209,72,-0.261432160523425],[126,209,73,-0.2592380945650783],[126,209,74,-0.25691161326659095],[126,209,75,-0.25445434805144607],[126,209,76,-0.25186808913831327],[126,209,77,-0.249154787968759],[126,209,78,-0.246316559638315],[126,209,79,-0.24335568533085683],[126,210,64,-0.27374517157055633],[126,210,65,-0.27264861586752875],[126,210,66,-0.2714121025980273],[126,210,67,-0.2700360799403081],[126,210,68,-0.2685211354745235],[126,210,69,-0.26686799858152954],[126,210,70,-0.2650775428449734],[126,210,71,-0.263150788456727],[126,210,72,-0.2610889046256286],[126,210,73,-0.25889321198961257],[126,210,74,-0.2565651850310504],[126,210,75,-0.2541064544955267],[126,210,76,-0.25151880981389985],[126,210,77,-0.24880420152768212],[126,210,78,-0.24596474371776433],[126,210,79,-0.2430027164364359],[126,211,64,-0.273369218947322],[126,211,65,-0.27226982126391974],[126,211,66,-0.27103056883080345],[126,211,67,-0.2696519099773548],[126,211,68,-0.2681344323207119],[126,211,69,-0.2664788651618243],[126,211,70,-0.26468608188477083],[126,211,71,-0.2627571023594051],[126,211,72,-0.26069309534728935],[126,211,73,-0.25849538091099866],[126,211,74,-0.2561654328266172],[126,211,75,-0.25370488099965194],[126,211,76,-0.25111551388421116],[126,211,77,-0.24839928090548347],[126,211,78,-0.24555829488554504],[126,211,79,-0.2425948344724409],[126,212,64,-0.2729403679048745],[126,212,65,-0.27183752315018794],[126,212,66,-0.27059494831178565],[126,212,67,-0.26921309190578946],[126,212,68,-0.2676925415975947],[126,212,69,-0.2660340265945841],[126,212,70,-0.2642384200420792],[126,212,71,-0.2623067414225967],[126,212,72,-0.2602401589583715],[126,212,73,-0.25803999201722716],[126,212,74,-0.2557077135216147],[126,212,75,-0.2532449523610478],[126,212,76,-0.2506534958077783],[126,212,77,-0.24793529193575137],[126,212,78,-0.24509245204286456],[126,212,79,-0.2421272530764792],[126,213,64,-0.27245467054086014],[126,213,65,-0.27134772657329975],[126,213,66,-0.2701012007231163],[126,213,67,-0.26871554173263446],[126,213,68,-0.2671913373287249],[126,213,69,-0.26552931661153534],[126,213,70,-0.26373035244643095],[126,213,71,-0.26179546385921404],[126,213,72,-0.2597258184345833],[126,213,73,-0.25752273471791165],[126,213,74,-0.2551876846201673],[126,213,75,-0.2527222958262024],[126,213,76,-0.25012835420625645],[126,213,77,-0.24740780623071057],[126,213,78,-0.2445627613881205],[126,213,79,-0.24159549460647256],[126,214,64,-0.2719084494042846],[126,214,65,-0.2707967098220362],[126,214,66,-0.2695455616763467],[126,214,67,-0.26815545397906615],[126,214,68,-0.26662697453382256],[126,214,69,-0.2649608523200835],[126,214,70,-0.26315795988039736],[126,214,71,-0.261219315710881],[126,214,72,-0.25914608665491345],[126,214,73,-0.2569395903001196],[126,214,74,-0.2546012973784627],[126,214,75,-0.25213283416967347],[126,214,76,-0.24953598490786155],[126,214,77,-0.2468126941913471],[126,214,78,-0.24396506939573737],[126,214,79,-0.2409953830901963],[126,215,64,-0.27129829116404025],[126,215,65,-0.27018101803664807],[126,215,66,-0.2689245362654408],[126,215,67,-0.2675292951789806],[126,215,68,-0.2659958826751111],[126,215,69,-0.26432502759962284],[126,215,70,-0.26251760212806063],[126,215,71,-0.26057462415073973],[126,215,72,-0.25849725966093284],[126,215,73,-0.25628682514630896],[126,215,74,-0.2539447899834435],[126,215,75,-0.25147277883562846],[126,215,76,-0.24887257405382968],[126,215,77,-0.24614611808082498],[126,215,78,-0.2432955158585498],[126,215,79,-0.2403230372386025],[126,216,64,-0.2706210403358298],[126,216,65,-0.26949745687739646],[126,216,66,-0.2682348926791337],[126,216,67,-0.26683379743736657],[126,216,68,-0.26529475916389633],[126,216,69,-0.2636185065585006],[126,216,70,-0.2618059113845317],[126,216,71,-0.25985799084768235],[126,216,72,-0.25777590997788014],[126,216,73,-0.2555609840143891],[126,216,74,-0.25321468079394316],[126,216,75,-0.25073862314213635],[126,216,76,-0.24813459126791526],[126,216,77,-0.24540452516121347],[126,216,78,-0.2425505269937508],[126,216,79,-0.23957486352294544],[126,217,64,-0.2698737930674614],[126,217,65,-0.26874308625195287],[126,217,66,-0.26747365587261895],[126,217,67,-0.26606595204845795],[126,217,68,-0.26452056292735426],[126,217,69,-0.26283821705160326],[126,217,70,-0.26101978572648865],[126,217,71,-0.2590662853919782],[126,217,72,-0.256978879997499],[126,217,73,-0.2547588833798744],[126,217,74,-0.25240776164424183],[126,217,75,-0.24992713554818125],[126,217,76,-0.24731878288889797],[126,217,77,-0.24458464089349652],[126,217,78,-0.24172680861237517],[126,217,79,-0.23874754931568187],[126,218,64,-0.2690538909825454],[126,218,65,-0.26791521410169117],[126,218,66,-0.2666381012985959],[126,218,67,-0.26522300317369685],[126,218,68,-0.26367050803556225],[126,218,69,-0.2619813442586011],[126,218,70,-0.2601563826437673],[126,218,71,-0.2581966387823289],[126,218,72,-0.2561032754226652],[126,218,73,-0.2538776048401673],[126,218,74,-0.25152109121006927],[126,218,75,-0.24903535298343382],[126,218,76,-0.24642216526613725],[126,218,77,-0.24368346220089554],[126,218,78,-0.24082133935235195],[126,218,79,-0.2378380560951754],[126,219,64,-0.26815891508258416],[126,219,65,-0.26701139024685683],[126,219,66,-0.2657257486976681],[126,219,67,-0.26430244157949767],[126,219,68,-0.26274205738876477],[126,219,69,-0.26104532432283933],[126,219,70,-0.2592131126319911],[126,219,71,-0.2572464369743428],[126,219,72,-0.2551464587737884],[126,219,73,-0.25291448858095833],[126,219,74,-0.25055198843705184],[126,219,75,-0.24806057424076478],[126,219,76,-0.24544201811815658],[126,219,77,-0.24269825079549767],[126,219,78,-0.23983136397511662],[126,219,79,-0.23684361271420162],[126,220,64,-0.26718667970742604],[126,220,65,-0.2660294002905951],[126,220,66,-0.2647343559480635],[126,220,67,-0.2633019984347862],[126,220,68,-0.2617329164648433],[126,220,69,-0.2600278380508473],[126,220,70,-0.2581876328462186],[126,220,71,-0.2562133144903992],[126,220,72,-0.25410604295696426],[126,220,73,-0.2518671269047147],[126,220,74,-0.24949802603156757],[126,220,75,-0.24700035343147886],[126,220,76,-0.24437587795423488],[126,220,77,-0.24162652656815897],[126,220,78,-0.23875438672575156],[126,220,79,-0.23576170873221647],[126,221,64,-0.26613522655412947],[126,221,65,-0.2649672595818705],[126,221,66,-0.2636619129747233],[126,221,67,-0.2622196391683542],[126,221,68,-0.26064102712703674],[126,221,69,-0.25892680467251183],[126,221,70,-0.2570778408156451],[126,221,71,-0.25509514809094747],[126,221,72,-0.2529798848939191],[126,221,73,-0.2507333578213031],[126,221,74,-0.24835702401406146],[126,221,75,-0.24585249350330918],[126,221,76,-0.2432215315590469],[126,221,77,-0.24046606104173052],[126,221,78,-0.23758816475670352],[126,221,79,-0.23459008781144142],[126,222,64,-0.26500281875421605],[126,222,65,-0.26382320723727104],[126,222,66,-0.26250663571773813],[126,222,67,-0.2610535573860163],[126,222,68,-0.2594645614918938],[126,222,69,-0.257740375661896],[126,222,70,-0.2558818682193488],[126,222,71,-0.25389005050722446],[126,222,72,-0.2517660792137313],[126,222,73,-0.24951125870073088],[126,222,74,-0.24712704333479774],[126,222,75,-0.24461503982115684],[126,222,76,-0.24197700954033785],[126,222,77,-0.23921487088758664],[126,222,78,-0.2363307016150591],[126,222,79,-0.23332674117674423],[126,223,64,-0.26378793500928754],[126,223,65,-0.2625957002216579],[126,223,66,-0.2612669601601041],[126,223,67,-0.25980216884753426],[126,223,68,-0.2582019158574268],[126,223,69,-0.25646692861867226],[126,223,70,-0.25459807472304297],[126,223,71,-0.2525963642353565],[126,223,72,-0.25046295200629565],[126,223,73,-0.2481991399879684],[126,223,74,-0.24580637955202078],[126,223,75,-0.24328627381054202],[126,223,76,-0.2406405799395962],[126,223,77,-0.237871211505425],[126,223,78,-0.2349802407933439],[126,223,79,-0.2319699011392805],[126,224,64,-0.26248926378505355],[126,224,65,-0.2612834074877194],[126,224,66,-0.2599415364148502],[126,224,67,-0.25846410550336496],[126,224,68,-0.2568517046915193],[126,224,69,-0.25510506121022325],[126,224,70,-0.253225041876893],[126,224,71,-0.2512126553919011],[126,224,72,-0.249069054637587],[126,224,73,-0.24679553897991302],[126,224,74,-0.2443935565725771],[126,224,75,-0.24186470666382331],[126,224,76,-0.23921074190578284],[126,224,77,-0.23643357066639148],[126,224,78,-0.23353525934390373],[126,224,79,-0.23051803468395526],[126,225,64,-0.26110569756375146],[126,225,65,-0.2598852041744042],[126,225,66,-0.2585292228715147],[126,225,67,-0.2570382095912086],[126,225,68,-0.2554127546805677],[126,225,69,-0.2536535851743902],[126,225,70,-0.2517615670743758],[126,225,71,-0.2497377076308096],[126,225,72,-0.2475831576267017],[126,225,73,-0.24529921366447027],[126,225,74,-0.24288732045497796],[126,225,75,-0.2403490731091622],[126,225,76,-0.23768621943209467],[126,225,77,-0.23490066221951222],[126,225,78,-0.23199446155684444],[126,225,79,-0.2289698371206823],[126,226,64,-0.25963632715492335],[126,226,65,-0.258400165864197],[126,226,66,-0.25702908040193573],[126,226,67,-0.2555235277923188],[126,226,68,-0.253884098838316],[126,226,69,-0.25211152038282736],[126,226,70,-0.2502066575721389],[126,226,71,-0.2481705161217641],[126,226,72,-0.2460042445846331],[126,226,73,-0.2437091366217109],[126,226,74,-0.24128663327486144],[126,226,75,-0.2387383252421923],[126,226,76,-0.23606595515571815],[126,226,77,-0.23327141986138733],[126,226,78,-0.23035677270148902],[126,226,79,-0.2273242257993967],[126,227,64,-0.2580804360646082],[126,227,65,-0.2568275628993034],[126,227,66,-0.25544036662541714],[126,227,67,-0.25391930544764374],[126,227,68,-0.252264970674953],[126,227,69,-0.25047808896503276],[126,227,70,-0.24855952457093122],[126,227,71,-0.24651028158996513],[126,227,72,-0.24433150621485522],[126,227,73,-0.24202448898717543],[126,227,74,-0.2395906670529242],[126,227,75,-0.2370316264204626],[126,227,76,-0.23434910422064892],[126,227,77,-0.23154499096921788],[126,227,78,-0.22862133283142283],[126,227,79,-0.22558033388889442],[126,228,64,-0.25643749492293044],[126,228,65,-0.2551668547567153],[126,228,66,-0.2537625302332467],[126,228,67,-0.2522249808337661],[126,228,68,-0.25055479842644124],[126,228,69,-0.24875270949302397],[126,228,70,-0.2468195773575762],[126,228,71,-0.2447564044173356],[126,228,72,-0.24256433437568303],[126,228,73,-0.24024465447729537],[126,228,74,-0.2377987977452931],[126,228,75,-0.23522834522062852],[126,228,76,-0.23253502820354288],[126,228,77,-0.2297207304971396],[126,228,78,-0.22678749065309833],[126,228,79,-0.22373750421947036],[126,229,64,-0.25470715597003346],[126,229,65,-0.2534176844821102],[126,229,66,-0.25199520537251885],[126,229,67,-0.2504401794985992],[126,229,68,-0.24875319934403495],[126,229,69,-0.24693499122661677],[126,229,70,-0.24498641750793793],[126,229,71,-0.24290847880509625],[126,229,72,-0.24070231620436033],[126,229,73,-0.2383692134768849],[126,229,74,-0.23591059929628944],[126,229,75,-0.23332804945833752],[126,229,76,-0.2306232891025517],[126,229,77,-0.22779819493581122],[126,229,78,-0.22485479745794845],[126,229,79,-0.2217952831893002],[126,230,64,-0.2528892476004405],[126,230,65,-0.25157987318266906],[126,230,66,-0.25013820608934134],[126,230,67,-0.24856470865691982],[126,230,68,-0.24685997404406423],[126,230,69,-0.24502472841938172],[126,230,70,-0.2430598331509659],[126,230,71,-0.24096628699779699],[126,230,72,-0.23874522830296252],[126,230,73,-0.236397937188786],[126,230,74,-0.23392583775366937],[126,230,75,-0.2313305002708974],[126,230,76,-0.22861364338923174],[126,230,77,-0.22577713633534235],[126,230,78,-0.2228230011180975],[126,230,79,-0.21975341473465992],[126,231,64,-0.25098376896580743],[126,231,65,-0.24965341457877077],[126,231,66,-0.2481915208313934],[126,231,67,-0.24659855164570132],[126,231,68,-0.24487510091795406],[126,231,69,-0.24302189468525226],[126,231,70,-0.24103979329378145],[126,231,71,-0.23892979356876332],[126,231,72,-0.23669303098607664],[126,231,73,-0.23433078184563094],[126,231,74,-0.23184446544630555],[126,231,75,-0.22923564626269288],[126,231,76,-0.22650603612348286],[126,231,77,-0.22365749639153099],[126,231,78,-0.22069204014563026],[126,231,79,-0.2176118343639405],[126,232,64,-0.24899088463601649],[126,232,65,-0.24763846961451852],[126,232,66,-0.24615530700978128],[126,232,67,-0.24454186243919518],[126,232,68,-0.24279873060242252],[126,232,69,-0.2409266374257224],[126,232,70,-0.23892644220775128],[126,232,71,-0.2367991397669107],[126,232,72,-0.23454586259020027],[126,232,73,-0.2321678829836672],[126,232,74,-0.22966661522425236],[126,232,75,-0.22704361771328774],[126,232,76,-0.22430059513146738],[126,232,77,-0.22143940059534284],[126,232,78,-0.21846203781536178],[126,232,79,-0.21537066325540177],[126,233,64,-0.2469109193187029],[126,233,65,-0.24553536112718766],[126,233,66,-0.24402988562028594],[126,233,67,-0.2423949602238562],[126,233,68,-0.24063118050995458],[126,233,69,-0.23873927231773417],[126,233,70,-0.23672009387564574],[126,233,71,-0.23457463792501643],[126,233,72,-0.23230403384496556],[126,233,73,-0.22990954977874278],[126,233,74,-0.22739259476129625],[126,233,75,-0.22475472084832027],[126,233,76,-0.2219976252466055],[126,233,77,-0.2191231524457452],[126,233,78,-0.2161332963512137],[126,233,79,-0.2130302024187687],[126,234,64,-0.24474435263717464],[126,234,65,-0.2433445685755523],[126,234,66,-0.24181573592396133],[126,234,67,-0.2401583240330678],[126,234,68,-0.2383729294195096],[126,234,69,-0.2364602778622138],[126,234,70,-0.23442122649983888],[126,234,71,-0.2322567659294139],[126,234,72,-0.22996802230613567],[126,234,73,-0.22755625944441082],[126,234,74,-0.2250228809199466],[126,234,75,-0.2223694321731421],[126,234,76,-0.21959760261360484],[126,234,77,-0.21670922772584256],[126,234,78,-0.21370629117614715],[126,234,79,-0.21059092692062586],[126,235,64,-0.24249181396666442],[126,235,65,-0.24106672282703678],[126,235,66,-0.2395134901870225],[126,235,67,-0.23783258744160973],[126,235,68,-0.23602461212740056],[126,235,69,-0.23409028999319115],[126,235,70,-0.23203047707148938],[126,235,71,-0.2298461617510399],[126,235,72,-0.22753846685031898],[126,235,73,-0.2251086516920877],[126,235,74,-0.22255811417880234],[126,235,75,-0.21988839286913997],[126,235,76,-0.2171011690554604],[126,235,77,-0.21419826884225301],[126,235,78,-0.2111816652255908],[126,235,79,-0.20805348017354053],[126,236,64,-0.2401540773290235],[126,236,65,-0.23870260100379304],[126,236,66,-0.23712392848013386],[126,236,67,-0.23541853331997498],[126,236,68,-0.23358701415845684],[126,236,69,-0.23163009674761692],[126,236,70,-0.2295486360008121],[126,236,71,-0.22734361803795278],[126,236,72,-0.22501616223150978],[126,236,73,-0.22256752325337914],[126,236,74,-0.21999909312241162],[126,236,75,-0.21731240325285506],[126,236,76,-0.21450912650353804],[126,236,77,-0.21159107922784193],[126,236,78,-0.20856022332448032],[126,236,79,-0.2054186682890382],[126,237,64,-0.23773205634580585],[126,237,65,-0.23625312138766108],[126,237,66,-0.2346479735370477],[126,237,67,-0.23291708864848815],[126,237,68,-0.2310610665374203],[126,237,69,-0.2290806329958267],[126,237,70,-0.2269766418083924],[126,237,71,-0.2247500767692696],[126,237,72,-0.22240205369940536],[126,237,73,-0.2199338224645262],[126,237,74,-0.21734676899357253],[126,237,75,-0.21464241729784728],[126,237,76,-0.21182243149069457],[126,237,77,-0.2088886178077607],[126,237,78,-0.20584292662785675],[126,237,79,-0.2026874544943743],[126,238,64,-0.23522679924968182],[126,238,65,-0.23371933838394343],[126,238,66,-0.23208668567252566],[126,238,67,-0.23032931939115842],[126,238,68,-0.2284478406205066],[126,238,69,-0.22644297523258328],[126,238,70,-0.22431557587747386],[126,238,71,-0.22206662397044996],[126,238,72,-0.21969723167943267],[126,238,73,-0.21720864391289563],[126,238,74,-0.21460224030800068],[126,238,75,-0.2118795372192348],[126,238,76,-0.20904218970735733],[126,238,77,-0.20609199352871677],[126,238,78,-0.20303088712495188],[126,238,79,-0.19986095361302914],[126,239,64,-0.232639483954304],[126,239,65,-0.23110243754412274],[126,239,66,-0.22944125775967505],[126,239,67,-0.22765642542939646],[126,239,68,-0.22574854298726355],[126,239,69,-0.2237183364288302],[126,239,70,-0.22156665726735092],[126,239,71,-0.21929448449006628],[126,239,72,-0.21690292651461485],[126,239,73,-0.21439322314565645],[126,239,74,-0.2117667475315076],[126,239,75,-0.20902500812104585],[126,239,76,-0.20616965062070636],[126,239,77,-0.20320245995161812],[126,239,78,-0.20012536220690003],[126,239,79,-0.19694042660906919],[126,240,64,-0.22997141318252068],[126,240,65,-0.2284037306474146],[126,240,66,-0.22671301026658808],[126,240,67,-0.22489973555548715],[126,240,68,-0.2229645103926171],[126,240,69,-0.22090806094404558],[126,240,70,-0.21873123758775836],[126,240,71,-0.21643501683794453],[126,240,72,-0.21402050326916877],[126,240,73,-0.21148893144052605],[126,240,74,-0.2088416678195678],[126,240,75,-0.20608021270626753],[126,240,76,-0.20320620215684104],[126,240,77,-0.20022140990747117],[126,240,78,-0.1971277492979595],[126,240,79,-0.19392727519525488],[126,241,64,-0.22722400965302314],[126,241,65,-0.22562465084124328],[126,241,66,-0.2239033863523745],[126,241,67,-0.22206070252590493],[126,241,68,-0.22009720477919248],[126,241,69,-0.21801361949928433],[126,241,70,-0.21581079593434438],[126,241,71,-0.21348970808476497],[126,241,72,-0.21105145659392333],[126,241,73,-0.20849727063867451],[126,241,74,-0.20582850981937195],[126,241,75,-0.20304666604968513],[126,241,76,-0.20015336544602447],[126,241,77,-0.1971503702166295],[126,241,78,-0.19403958055033865],[126,241,79,-0.19082303650499055],[126,242,64,-0.22439881132530404],[126,242,65,-0.22276674784051564],[126,242,66,-0.2210139470224617],[126,242,67,-0.2191408981743468],[126,242,68,-0.21714820834978354],[126,242,69,-0.21503660421078363],[126,242,70,-0.21280693388509908],[126,242,71,-0.21046016882299745],[126,242,72,-0.2079974056534265],[126,242,73,-0.20541986803966283],[126,242,74,-0.20272890853423242],[126,242,75,-0.1999260104333771],[126,242,76,-0.1970127896308721],[126,242,77,-0.19399099647125695],[126,242,78,-0.1908625176024893],[126,242,79,-0.18762937782798084],[126,243,64,-0.22149746670307113],[126,243,65,-0.21983168318584],[126,243,66,-0.2180463663433091],[126,243,67,-0.21614200858463228],[126,243,68,-0.21411921870012363],[126,243,69,-0.21197872368428072],[126,243,70,-0.20972137055789308],[126,243,71,-0.20734812818932036],[126,243,72,-0.20486008911489806],[126,243,73,-0.20225847135856512],[126,243,74,-0.19954462025049724],[126,243,75,-0.19672001024502617],[126,243,76,-0.19378624673764555],[126,243,77,-0.19074506788116552],[126,243,78,-0.187598346401031],[126,243,79,-0.1843480914097544],[126,244,64,-0.2185217301960528],[126,244,65,-0.2168212255606251],[126,244,66,-0.21500242671647363],[126,244,67,-0.2130658293234039],[126,244,68,-0.211012044011886],[126,244,69,-0.2088417981699775],[126,244,70,-0.20655593772905767],[126,244,71,-0.20415542894845984],[126,244,72,-0.20164136019895929],[126,244,73,-0.1990149437452079],[126,244,74,-0.19627751752690425],[126,244,75,-0.1934305469389761],[126,244,76,-0.1904756266105767],[126,244,77,-0.18741448218295798],[126,244,78,-0.18424897208623325],[126,244,79,-0.18098108931498436],[126,245,64,-0.2154734575401166],[126,245,65,-0.21373724616697964],[126,245,66,-0.21188401421194247],[126,245,67,-0.20991426073254638],[126,245,68,-0.20782859830583778],[126,245,69,-0.20562775477806705],[126,245,70,-0.20331257501291955],[126,245,71,-0.2008840226383607],[126,245,72,-0.1983431817920528],[126,245,73,-0.19569125886544125],[126,245,74,-0.19292958424628914],[126,245,75,-0.19005961405994432],[126,245,76,-0.18708293190913972],[126,245,77,-0.1840012506123846],[126,245,78,-0.18081641394096704],[126,245,79,-0.17753039835451545],[126,246,64,-0.21235460127584882],[126,246,65,-0.21058171416056304],[126,246,66,-0.2086931139608892],[126,246,67,-0.20668930328147916],[126,246,68,-0.20457089675529638],[126,246,69,-0.2023386227549807],[126,246,70,-0.19999332510245482],[126,246,71,-0.19753596477684976],[126,246,72,-0.19496762162071468],[126,246,73,-0.19228949604460188],[126,246,74,-0.18950291072980774],[126,246,75,-0.18660931232955857],[126,246,76,-0.18361027316843215],[126,246,77,-0.18050749294008472],[126,246,78,-0.17730280040329294],[126,246,79,-0.17399815507626615],[126,247,64,-0.20916720628552632],[126,247,65,-0.20735669214431474],[126,247,66,-0.20543180560777752],[126,247,67,-0.20339305297924837],[126,247,68,-0.20124105105982082],[126,247,69,-0.1989765288202816],[126,247,70,-0.19660032907098002],[126,247,71,-0.19411341012971806],[126,247,72,-0.19151684748762288],[126,247,73,-0.188811835473093],[126,247,74,-0.18599968891360097],[126,247,75,-0.18308184479563672],[126,247,76,-0.18005986392258877],[126,247,77,-0.1769354325706286],[126,247,78,-0.173710364142608],[126,247,79,-0.1703866008199264],[126,248,64,-0.20591340538839442],[126,248,65,-0.2040643317209797],[126,248,66,-0.2021022588217296],[126,248,67,-0.20002769684633193],[126,248,68,-0.19784126487904596],[126,248,69,-0.19554369256411352],[126,248,70,-0.19313582173479704],[126,248,71,-0.1906186080401292],[126,248,72,-0.18799312256932943],[126,248,73,-0.18526055347399029],[126,248,74,-0.18242220758780336],[126,248,75,-0.17947951204411938],[126,248,76,-0.1764340158911354],[126,248,77,-0.17328739170477192],[126,248,78,-0.17004143719925502],[126,248,79,-0.1666980768353573],[126,249,64,-0.20259541499441291],[126,249,65,-0.20070686910458957],[126,249,66,-0.19870672886732033],[126,249,67,-0.19659550844632556],[126,249,68,-0.194373829326829],[126,249,69,-0.19204242190537646],[126,249,70,-0.1896021270769589],[126,249,71,-0.18705389781952642],[126,249,72,-0.1843988007758527],[126,249,73,-0.18163801783284472],[126,249,74,-0.17877284769807578],[126,249,75,-0.1758047074738306],[126,249,76,-0.1727351342284582],[126,249,77,-0.16956578656509547],[126,249,78,-0.16629844618777467],[126,249,79,-0.16293501946486932],[126,250,64,-0.19921553081639243],[126,250,65,-0.19728662079082337],[126,250,66,-0.195247552234722],[126,250,67,-0.19309884347742512],[126,250,68,-0.19084111852562735],[126,250,69,-0.18847510861054861],[126,250,70,-0.18600165373207433],[126,250,71,-0.18342170419995796],[126,250,72,-0.18073632217204283],[126,250,73,-0.1779466831896036],[126,250,74,-0.1750540777095777],[126,250,75,-0.17205991263398168],[126,250,76,-0.16896571283630635],[126,250,77,-0.16577312268495148],[126,250,78,-0.16248390756371622],[126,250,79,-0.15909995538929944],[126,251,64,-0.19577612364043373],[126,251,65,-0.19380597928615884],[126,251,66,-0.1917271423291066],[126,251,67,-0.1895401354236198],[126,251,68,-0.1872455852210161],[126,251,69,-0.1848442238730582],[126,251,70,-0.1823368905320617],[126,251,71,-0.17972453284772305],[126,251,72,-0.17700820846062904],[126,251,73,-0.1741890864925506],[126,251,74,-0.17126844903327976],[126,251,75,-0.16824769262432349],[126,251,76,-0.1651283297392283],[126,251,77,-0.16191199026061098],[126,251,78,-0.15860042295390586],[126,251,79,-0.1551954969377809],[126,252,64,-0.1922796351548396],[126,252,65,-0.1902674088959837],[126,252,66,-0.18814798521947917],[126,252,67,-0.18592189126576864],[126,252,68,-0.18358975645652253],[126,252,69,-0.18115231395338816],[126,252,70,-0.17861040211302615],[126,252,71,-0.17596496593852196],[126,252,72,-0.1732170585271292],[126,252,73,-0.1703678425144486],[126,252,74,-0.1674185915148052],[126,252,75,-0.16437069155812978],[126,252,76,-0.16122564252312843],[126,252,77,-0.15798505956680664],[126,252,78,-0.1546506745503622],[126,252,79,-0.15122433746140074],[126,253,64,-0.18872857383741537],[126,253,65,-0.18667344157158916],[126,253,66,-0.18451263544686303],[126,253,67,-0.18224668725247573],[126,253,68,-0.1798762293086924],[126,253,69,-0.17740199587982453],[126,253,70,-0.1748248245831795],[126,253,71,-0.17214565779402546],[126,253,72,-0.16936554404653448],[126,253,73,-0.16648563943080275],[126,253,74,-0.16350720898570947],[126,253,75,-0.16043162808792755],[126,253,76,-0.15726038383686025],[126,253,77,-0.15399507643557908],[126,253,78,-0.1506374205677714],[126,253,79,-0.1471892467706536],[126,254,64,-0.18512551090107043],[126,254,65,-0.18302667281594442],[126,254,66,-0.1808237118917353],[126,254,67,-0.1785171647306698],[126,254,68,-0.17610766668228972],[126,254,69,-0.17359595320975418],[126,254,70,-0.17098286125170037],[126,254,71,-0.16826933057975746],[126,254,72,-0.16545640515167015],[126,254,73,-0.1625452344601328],[126,254,74,-0.15953707487709756],[126,254,75,-0.15643329099386627],[126,254,76,-0.15323535695674273],[126,254,77,-0.14994485779832045],[126,254,78,-0.14656349076441288],[126,254,79,-0.14309306663658283],[126,255,64,-0.1814730762978935],[126,255,65,-0.1793297576484411],[126,255,66,-0.17708389370090172],[126,255,67,-0.17473602603607208],[126,255,68,-0.17228679316581974],[126,255,69,-0.16973693185169503],[126,255,70,-0.1670872784187255],[126,255,71,-0.16433877006449005],[126,255,72,-0.16149244616342284],[126,255,73,-0.1585494495664591],[126,255,74,-0.1555110278957731],[126,255,75,-0.15237853483492714],[126,255,76,-0.149153431414208],[126,255,77,-0.14583728729121848],[126,255,78,-0.14243178202674],[126,255,79,-0.13893870635581718],[126,256,64,-0.17777395478162106],[126,256,65,-0.17558540662851574],[126,256,66,-0.173295916273719],[126,256,67,-0.17090603044346397],[126,256,68,-0.16841639094728222],[126,256,69,-0.16582773594797456],[126,256,70,-0.1631409012263832],[126,256,71,-0.16035682144105323],[126,256,72,-0.15747653138274553],[126,256,73,-0.15450116722390306],[126,256,74,-0.1514319677628262],[126,256,75,-0.14827027566287654],[126,256,76,-0.1450175386864796],[126,256,77,-0.14167531092400298],[126,256,78,-0.13824525401751797],[126,256,79,-0.13472913837940004],[126,257,64,-0.17403088202839767],[126,257,65,-0.17179638193805213],[126,257,66,-0.1694625673075672],[126,257,67,-0.16702999017665393],[126,257,68,-0.16449929579005512],[126,257,69,-0.16187122381794988],[126,257,70,-0.15914660957076038],[126,257,71,-0.15632638520845887],[126,257,72,-0.15341158094433016],[126,257,73,-0.15040332624329666],[126,257,74,-0.14730285101455542],[126,257,75,-0.14411148679885488],[126,257,76,-0.1408306679501744],[126,257,77,-0.13746193281188668],[126,257,78,-0.1340069248874095],[126,257,79,-0.13046739400530505],[126,258,64,-0.17024664081601837],[126,258,65,-0.16796549352275525],[126,258,66,-0.16558668290276285],[126,258,67,-0.163110766478336],[126,258,68,-0.16053839306910556],[126,258,69,-0.157870303961967],[126,258,70,-0.15510733407500876],[126,258,71,-0.15225041311553666],[126,258,72,-0.1493005667321552],[126,258,73,-0.1462589176610074],[126,258,74,-0.14312668686592367],[126,258,75,-0.13990519467281037],[126,258,76,-0.13659586189803785],[126,258,77,-0.13320021097090917],[126,258,78,-0.12971986705021787],[126,258,79,-0.12615655913484847],[126,259,64,-0.1664240572615603],[126,259,65,-0.16409559529240447],[126,259,66,-0.16167114372682057],[126,259,67,-0.15915126573974947],[126,259,68,-0.15653661386742979],[126,259,69,-0.15382793112596704],[126,259,70,-0.1510260521234888],[126,259,71,-0.14813190416598743],[126,259,72,-0.14514650835680692],[126,259,73,-0.14207098068987883],[126,259,74,-0.13890653313645607],[126,259,75,-0.13565447472567538],[126,259,76,-0.13231621261870852],[126,259,77,-0.1288932531765849],[126,259,78,-0.1253872030216897],[126,259,79,-0.12179977009289544],[126,260,64,-0.1625659971173063],[126,260,65,-0.16018958137988254],[126,260,66,-0.1577188712379609],[126,260,67,-0.15515443569003284],[126,260,68,-0.15249693113262197],[126,260,69,-0.1497471024266293],[126,260,70,-0.14690578395684806],[126,260,71,-0.1439739006847457],[126,260,72,-0.1409524691944677],[126,260,73,-0.1378425987321764],[126,260,74,-0.13464549223846378],[126,260,75,-0.1313624473741759],[126,260,76,-0.12799485753940587],[126,260,77,-0.12454421288574008],[126,260,78,-0.12101210132175788],[126,260,79,-0.11740020951175012],[126,261,64,-0.1586753621251506],[126,261,65,-0.15625038245918088],[126,261,66,-0.1537328239680627],[126,261,67,-0.15112326164547574],[126,261,68,-0.14842235589377106],[126,261,69,-0.14563085353725957],[126,261,70,-0.14274958882823896],[126,261,71,-0.13977948444585842],[126,261,72,-0.13672155248778106],[126,261,73,-0.13357689545475215],[126,261,74,-0.13034670722781067],[126,261,75,-0.1270322740384891],[126,261,76,-0.12363497543175167],[126,261,77,-0.12015628522175731],[126,261,78,-0.11659777244045139],[126,261,79,-0.11296110227894307],[126,262,64,-0.1547550864293975],[126,262,65,-0.15228096212228132],[126,262,66,-0.14971599386496404],[126,262,67,-0.14706076281856695],[126,262,68,-0.14431593353858913],[126,262,69,-0.1414822549343237],[126,262,70,-0.1385605612205752],[126,262,71,-0.13555177286178088],[126,262,72,-0.13245689750849177],[126,262,73,-0.12927703092632387],[126,262,74,-0.1260133579171166],[126,262,75,-0.12266715323264304],[126,262,76,-0.11923978248062306],[126,262,77,-0.11573270302312488],[126,262,78,-0.11214746486735766],[126,262,79,-0.10848571154881687],[126,263,64,-0.15080813304784402],[126,263,65,-0.14828431331481368],[126,263,66,-0.14567140269400436],[126,263,67,-0.14296998868673833],[126,263,68,-0.14018074015066434],[126,263,69,-0.13730440820451478],[126,263,70,-0.13434182712471943],[126,263,71,-0.1312939152339781],[126,263,72,-0.12816167578174753],[126,263,73,-0.12494619781675798],[126,263,74,-0.1216486570512873],[126,263,75,-0.11827031671754668],[126,263,76,-0.11481252841592393],[126,263,77,-0.11127673295516882],[126,263,78,-0.107664461184528],[126,263,79,-0.10397733481778626],[126,264,64,-0.146837490401365],[126,264,65,-0.1442634548307022],[126,264,66,-0.14160209849902938],[126,264,67,-0.1388540154210185],[126,264,68,-0.13601987890705614],[126,264,69,-0.13310044241258173],[126,264,70,-0.13009654037882623],[126,264,71,-0.12700908906505887],[126,264,72,-0.12383908737229593],[126,264,73,-0.12058761765858617],[126,264,74,-0.11725584654560045],[126,264,75,-0.1138450257168836],[126,264,76,-0.11035649270750664],[126,264,77,-0.10679167168521347],[126,264,78,-0.10315207422306194],[126,264,79,-0.09943930006351853],[126,265,64,-0.14284616890181678],[126,265,65,-0.14022142786561959],[126,265,66,-0.13751115212267084],[126,265,67,-0.1347159423744143],[126,265,68,-0.1318364765360529],[126,265,69,-0.12887351052972962],[126,265,70,-0.12582787906865006],[126,265,71,-0.12270049643225273],[126,265,72,-0.119492357232379],[126,265,73,-0.1162045371705615],[126,265,74,-0.11283819378615562],[126,265,75,-0.10939456719567159],[126,265,76,-0.1058749808230493],[126,265,77,-0.10228084212096428],[126,265,78,-0.09861364328316918],[126,265,79,-0.09487496194782913],[126,266,64,-0.13883719759839774],[126,266,65,-0.1361612926293882],[126,266,66,-0.13340165378604274],[126,266,67,-0.1305588886301603],[126,266,68,-0.12763367983522633],[126,266,69,-0.12462678592273196],[126,266,70,-0.12153904198896409],[126,266,71,-0.11837136042237312],[126,266,72,-0.1151247316114748],[126,266,73,-0.111800224643403],[126,266,74,-0.10839898799283254],[126,266,75,-0.1049222502016407],[126,266,76,-0.10137132054903847],[126,266,77,-0.09774758971226755],[126,266,78,-0.09405253041786399],[126,266,79,-0.09028769808344572],[126,267,64,-0.13481362088228377],[126,267,65,-0.13208612501713973],[126,267,66,-0.12927670972766775],[126,267,67,-0.12638598960964553],[126,267,68,-0.12341465224959697],[126,267,69,-0.12036345890356787],[126,267,70,-0.11723324516589384],[126,267,71,-0.11402492162807143],[126,267,72,-0.11073947452768818],[126,267,73,-0.1073779663875265],[126,267,74,-0.1039415366445613],[126,267,75,-0.10043140226922281],[126,267,76,-0.09684885837465135],[126,267,77,-0.0931952788160425],[126,267,78,-0.08947211678008316],[126,267,79,-0.08568090536443601],[126,268,64,-0.1307784952497522],[126,268,65,-0.1279990133394578],[126,268,66,-0.12513943890185286],[126,268,67,-0.12220039374024422],[126,268,68,-0.11918257051013609],[126,268,69,-0.11608673333980696],[126,268,70,-0.11291371844039738],[126,268,71,-0.10966443470561671],[126,268,72,-0.10633986430102388],[126,268,73,-0.1029410632430019],[126,268,74,-0.09946916196713995],[126,268,75,-0.09592536588639827],[126,268,76,-0.09231095593878308],[126,268,77,-0.08862728912462642],[126,268,78,-0.08487579903347486],[126,268,79,-0.08105799636054295],[126,269,64,-0.12673488612369588],[126,269,65,-0.12390305511139554],[126,269,66,-0.12099296973641249],[126,269,67,-0.11800525918294352],[126,269,68,-0.11494062133249483],[126,269,69,-0.11179982332563804],[126,269,70,-0.1085837021127844],[126,269,71,-0.1052931649940882],[126,269,72,-0.10192919014843338],[126,269,73,-0.09849282715162366],[126,269,74,-0.09498519748348849],[126,269,75,-0.09140749502428253],[126,269,76,-0.08776098654010273],[126,269,77,-0.08404701215742288],[126,269,78,-0.08026698582674258],[126,269,79,-0.07642239577531279],[126,270,64,-0.12268586473342136],[126,270,65,-0.11980135390026553],[126,270,66,-0.11684043694963198],[126,270,67,-0.11380375061966053],[126,270,68,-0.11069199817585651],[126,270,69,-0.10750594991343132],[126,270,70,-0.10424644364815977],[126,270,71,-0.10091438519587032],[126,270,72,-0.09751074884052091],[126,270,73,-0.09403657779098001],[126,270,74,-0.09049298462622535],[126,270,75,-0.08688115172933897],[126,270,76,-0.08320233171002245],[126,270,77,-0.07945784781573095],[126,270,78,-0.07564909433142442],[126,270,79,-0.07177753696789724],[126,271,64,-0.11863450505293716],[126,271,65,-0.11569701623241002],[126,271,66,-0.11268497842668179],[126,271,67,-0.1095990361004629],[126,271,68,-0.10643989806212378],[126,271,69,-0.10320833790605094],[126,271,70,-0.09990519444301649],[126,271,71,-0.09653137211867396],[126,271,72,-0.09308784142013488],[126,271,73,-0.0895756392707488],[126,271,74,-0.08599586941279103],[126,271,75,-0.08234970277844744],[126,271,76,-0.07863837784881045],[126,271,77,-0.07486320100099136],[126,271,78,-0.0710255468433445],[126,271,79,-0.06712685853876466],[126,272,64,-0.11458388079763221],[126,272,65,-0.11159314855884939],[126,272,66,-0.10852973215537848],[126,272,67,-0.10539428395058731],[126,272,68,-0.10218751845533519],[126,272,69,-0.09891021270981032],[126,272,70,-0.09556320665286555],[126,272,71,-0.09214740347897021],[126,272,72,-0.08866376998273129],[126,272,73,-0.08511333689110606],[126,272,74,-0.08149719918301074],[126,272,75,-0.0778165163967145],[126,272,76,-0.07407251292473438],[126,272,77,-0.07026647829633326],[126,272,78,-0.06639976744761883],[126,272,79,-0.062473800979204464],[126,273,64,-0.11053706247923678],[126,273,65,-0.10749285427969985],[126,273,66,-0.10437783322118543],[126,273,67,-0.10119265973714542],[126,273,68,-0.09793805420120272],[126,273,69,-0.09461479724796024],[126,273,70,-0.09122373008079143],[126,273,71,-0.08776575476672777],[126,273,72,-0.08424183451839651],[126,273,73,-0.0806529939631343],[126,273,74,-0.07700031939897489],[126,273,75,-0.0732849590379075],[126,273,76,-0.06950812323611583],[126,273,77,-0.06567108471130273],[126,273,78,-0.06177517874709676],[126,273,79,-0.05782180338450427],[126,274,64,-0.10649711451927585],[126,274,65,-0.10339923082757446],[126,274,66,-0.10023241086166534],[126,274,67,-0.09699732329573635],[126,274,68,-0.09369469452698564],[126,274,69,-0.09032530893492802],[126,274,70,-0.08689000912715633],[126,274,71,-0.08338969617167413],[126,274,72,-0.07982532981575541],[126,274,73,-0.0761979286914562],[126,274,74,-0.07250857050747206],[126,274,75,-0.06875839222774643],[126,274,76,-0.06494859023653077],[126,274,77,-0.061080420490008225],[126,274,78,-0.05715519865447449],[126,274,79,-0.05317430023103692],[126,275,64,-0.10246709242091062],[126,275,65,-0.09931536680985875],[126,275,66,-0.09609658558027939],[126,275,67,-0.09281142581685359],[126,275,68,-0.08946062010159367],[126,275,69,-0.08604495671120044],[126,275,70,-0.0825652798003414],[126,275,71,-0.07902248957097213],[126,275,72,-0.0754175424276522],[126,275,73,-0.07175145111898235],[126,275,74,-0.06802528486485715],[126,275,75,-0.06424016946993616],[126,275,76,-0.06039728742303824],[126,275,77,-0.05649787798256728],[126,275,78,-0.05254323724796295],[126,275,79,-0.048534718217141226],[126,276,64,-0.09845003999906354],[126,276,65,-0.09524433920975978],[126,276,66,-0.09197346631942521],[126,276,67,-0.08863810699198232],[126,276,68,-0.08523900015581043],[126,276,69,-0.08177693813873699],[126,276,70,-0.07825276678841375],[126,276,71,-0.07466738557819785],[126,276,72,-0.0710217476984894],[126,276,73,-0.06731686013365756],[126,276,74,-0.06355378372423892],[126,276,75,-0.059733633214823445],[126,276,76,-0.05585757728732266],[126,276,77,-0.05192683857973357],[126,276,78,-0.04794269369039128],[126,276,79,-0.04390647316767354],[126,277,64,-0.09444898666903573],[126,277,65,-0.09118921064633462],[126,277,66,-0.087866147692928],[126,277,67,-0.08448049221960163],[126,277,68,-0.08103298966285355],[126,277,69,-0.07752443655713709],[126,277,70,-0.07395568059194291],[126,277,71,-0.07032762065384368],[126,277,72,-0.06664120685345387],[126,277,73,-0.06289744053743307],[126,277,74,-0.05909737428522005],[126,277,75,-0.05524211189091144],[126,277,76,-0.05133280832997916],[126,277,77,-0.04737066971094245],[126,277,78,-0.043356953211983074],[126,277,79,-0.03929296700247176],[126,278,64,-0.0904669447935117],[126,278,65,-0.08715302669339586],[126,278,66,-0.08377770727787648],[126,278,67,-0.08034168987098078],[126,278,68,-0.07684572657916405],[126,278,69,-0.07329061830044808],[126,278,70,-0.06967721471785193],[126,278,71,-0.06600641427723636],[126,278,72,-0.0622791641495129],[126,278,73,-0.05849646017735266],[126,278,74,-0.054659346806070985],[126,278,75,-0.050768916999113345],[126,278,76,-0.04682631213783023],[126,278,77,-0.0428327219056559],[126,278,78,-0.03878938415668509],[126,278,79,-0.03469758476861046],[126,279,64,-0.08650690708784925],[126,279,65,-0.08313881325719019],[126,279,66,-0.07971120296569983],[126,279,67,-0.07622478861566884],[126,279,68,-0.07268032914531652],[126,279,69,-0.06907862997450659],[126,279,70,-0.06542054293419808],[126,279,71,-0.06170696617975552],[126,279,72,-0.05793884408807232],[126,279,73,-0.05411716713863757],[126,279,74,-0.05024297177822573],[126,279,75,-0.04631734026963391],[126,279,76,-0.042341400524152806],[126,279,77,-0.038316325917889804],[126,279,78,-0.03424333509193428],[126,279,79,-0.03012369173632934],[126,280,64,-0.08257184408386059],[126,280,65,-0.07914957401305595],[126,280,66,-0.07566967037269684],[126,280,67,-0.07213285480688447],[126,280,68,-0.06853989324726523],[126,280,69,-0.06489159579503184],[126,280,70,-0.061188816586098815],[126,280,71,-0.05743245363958005],[126,280,72,-0.05362344868951763],[126,280,73,-0.049762786999997866],[126,280,74,-0.045851497163328314],[126,280,75,-0.04189065088170463],[126,280,76,-0.03788136273205206],[126,280,77,-0.03382478991415944],[126,280,78,-0.029722131982095168],[126,280,79,-0.025574630558872935],[126,281,64,-0.07866470165197942],[126,281,65,-0.07518828790095711],[126,281,66,-0.07165612030990792],[126,281,67,-0.06806892992670399],[126,281,68,-0.06442748983781937],[126,281,69,-0.0607326149863589],[126,281,70,-0.05698516197269543],[126,281,71,-0.05318602883784468],[126,281,72,-0.049336154829527246],[126,281,73,-0.04543652015105537],[126,281,74,-0.04148814569271192],[126,281,75,-0.03749209274606041],[126,281,76,-0.033449462700862076],[126,281,77,-0.029361396724721267],[126,281,78,-0.025229075425450775],[126,281,79,-0.021053718496119644],[126,282,64,-0.07478839858171704],[126,282,65,-0.07125790667979154],[126,282,66,-0.06767353631223244],[126,282,67,-0.06403602809094039],[126,282,68,-0.06034616241824009],[126,282,69,-0.05660475924070879],[126,282,70,-0.05281267778504489],[126,282,71,-0.04897081627610289],[126,282,72,-0.0450801116370485],[126,282,73,-0.041141539171768604],[126,282,74,-0.03715611222920373],[126,282,75,-0.033124881850044086],[126,282,76,-0.029048936395461467],[126,282,77,-0.02492940115800263],[126,282,78,-0.02076743795463204],[126,282,79,-0.01656424470188833],[126,283,64,-0.07094582422060575],[126,283,65,-0.06736135254067838],[126,283,66,-0.06372487222699369],[126,283,67,-0.060037133613924376],[126,283,68,-0.05629892458017316],[126,283,69,-0.05251107023820728],[126,283,70,-0.04867443260515797],[126,283,71,-0.04478991025531304],[126,283,72,-0.04085843795415478],[126,283,73,-0.036880986274081984],[126,283,74,-0.03285856119147679],[126,283,75,-0.028792203665563953],[126,283,76,-0.024682989198732574],[126,283,77,-0.02053202737844434],[126,283,78,-0.016340461400717377],[126,283,79,-0.012109467575151966],[126,284,64,-0.06713983617153002],[126,284,65,-0.06350151577911983],[126,284,66,-0.05981304986184982],[126,284,67,-0.0560751986330808],[126,284,68,-0.05228875760780899],[126,284,69,-0.04845455722754427],[126,284,70,-0.04457346246607291],[126,284,71,-0.04064637241623609],[126,284,72,-0.03667421985767583],[126,284,73,-0.03265797080568722],[126,284,74,-0.028598624040835963],[126,284,75,-0.024497210619792487],[126,284,76,-0.020354793367048374],[126,284,77,-0.016172466347642522],[126,284,78,-0.01195135432088501],[126,284,79,-0.00769261217504269],[126,285,64,-0.06337325804834704],[126,285,65,-0.059681252525940365],[126,285,66,-0.05594095669194887],[126,285,67,-0.05215314079319927],[126,285,68,-0.048318608140167696],[126,285,69,-0.044438194667171665],[126,285,70,-0.04051276847286048],[126,285,71,-0.03654322934114143],[126,285,72,-0.03253050824249054],[126,285,73,-0.02847556681578689],[126,285,74,-0.024379396830330302],[126,285,75,-0.02024301962849373],[126,285,76,-0.016067485548675098],[126,285,77,-0.011853873328677988],[126,285,78,-0.007603289489505283],[126,285,79,-0.003316867699534931],[126,286,64,-0.05964887728999391],[126,286,65,-0.05590338253720192],[126,286,66,-0.052111443626532195],[126,286,67,-0.048273840990605166],[126,286,68,-0.04439138589371783],[126,286,69,-0.0404649199272481],[126,286,70,-0.03649531448477272],[126,286,71,-0.032483470217033655],[126,286,72,-0.028430316466701994],[126,286,73,-0.024336810683082633],[126,286,74,-0.02020393781641125],[126,286,75,-0.016032709692203856],[126,286,76,-0.01182416436531844],[126,286,77,-0.007579365453858039],[126,286,78,-0.003299401452902251],[126,286,79,0.0010146149719657827],[126,287,64,-0.0559694430329814],[126,287,65,-0.05217068704299463],[126,287,66,-0.04832732283488095],[126,287,67,-0.04444014117712486],[126,287,68,-0.04050996144522054],[126,287,69,-0.03653763105222399],[126,287,70,-0.032524024858427314],[126,287,71,-0.02847004456029037],[126,287,72,-0.02437661805858235],[126,287,73,-0.02024469880587268],[126,287,74,-0.016075265133024152],[126,287,75,-0.011869319555150581],[126,287,76,-0.007627888056694093],[126,287,77,-0.0033520193557561584],[126,287,78,9.572158523334096E-4],[126,287,79,0.005298725672243543],[126,288,64,-0.05233766404218032],[126,288,65,-0.04848590665500668],[126,288,66,-0.044591365631512475],[126,288,67,-0.04065484222374874],[126,288,68,-0.036677164074703866],[126,288,69,-0.03265918458396827],[126,288,70,-0.028601782251926],[126,288,71,-0.024505860002612262],[126,288,72,-0.02037234448518538],[126,288,73,-0.016202185354157267],[126,288,74,-0.011996354528030134],[126,288,75,-0.0077558454268055466],[126,288,76,-0.0034816721880205903],[126,288,77,8.251311385565896E-4],[126,288,78,0.005163511417587391],[126,288,79,0.00953239727621047],[126,289,64,-0.048756206700101806],[126,289,65,-0.04485173933307876],[126,289,66,-0.040906300420829766],[126,289,67,-0.036920701844201625],[126,289,68,-0.032895779668777075],[126,289,69,-0.028832393445649],[126,289,70,-0.024731425490124942],[126,289,71,-0.020593780138500162],[126,289,72,-0.016420382982848036],[126,289,73,-0.012212180083974983],[126,289,74,-0.007970137162180535],[126,289,75,-0.003695238766297737],[126,289,76,6.115125793385856E-4],[126,289,77,0.0049490972498605346],[126,289,78,0.009316479416787649],[126,289,79,0.013712607966931994],[126,290,64,-0.045227693054503554],[126,290,65,-0.041270838410570554],[126,290,66,-0.03727481070105362],[126,290,67,-0.033240432578244467],[126,290,68,-0.029168548684106593],[126,290,69,-0.025060024886190246],[126,290,70,-0.02091574749087452],[126,290,71,-0.016736622434079196],[126,290,72,-0.012523574449395697],[126,290,73,-0.008277546213780934],[126,290,74,-0.003999497470457997],[126,290,75,3.095958705031654E-4],[126,290,76,0.0046487426542767],[126,290,77,0.009016937425907146],[126,290,78,0.01341316139748941],[126,290,79,0.017836383437931702],[126,291,64,-0.04175469892444264],[126,291,65,-0.03774581067866514],[126,291,66,-0.03369953312756238],[126,291,67,-0.02961669983483492],[126,291,68,-0.025498164171185916],[126,291,69,-0.021344798485435496],[126,291,70,-0.017157493252360795],[126,291,71,-0.012937156197402072],[126,291,72,-0.008684711398184913],[126,291,73,-0.004401098363006506],[126,291,74,-8.72710859203818E-5],[126,291,75,0.00425580292109512],[126,291,76,0.00862714361924627],[126,291,77,0.013025759457170188],[126,291,78,0.017450648408336267],[126,291,79,0.021900799031634055],[126,292,64,-0.03833975206461801],[126,292,65,-0.03427921452944854],[126,292,66,-0.0301830556354743],[126,292,67,-0.026052119994981526],[126,292,68,-0.021887269858226893],[126,292,69,-0.017689384219845283],[126,292,70,-0.013459357901376923],[126,292,71,-0.009198100610055882],[126,292,72,-0.004906535973809634],[126,292,73,-5.856005526184982E-4],[126,292,74,0.0037637571741327425],[126,292,75,0.008140577843823465],[126,292,76,0.012543892270648699],[126,292,77,0.016972722529412787],[126,292,78,0.021426083063082774],[126,292,79,0.02590298181413364],[126,293,64,-0.03498533038819096],[126,293,65,-0.03087355815795756],[126,293,66,-0.026727915621670345],[126,293,67,-0.022549258574488473],[126,293,68,-0.01833845829537767],[126,293,69,-0.014096400588935937],[126,293,70,-0.009823984802729446],[126,293,71,-0.00552212282028397],[126,293,72,-0.0011917380296787572],[126,293,73,0.0031662357321053103],[126,293,74,0.007550855259454578],[126,293,75,0.01196116908251739],[126,293,76,0.016396218596089585],[126,293,77,0.020855039212848994],[126,293,78,0.025336661540957983],[126,293,79,0.029840112586063575],[126,294,64,-0.03169386024799073],[126,294,65,-0.027531297823101195],[126,294,66,-0.02333659818615902],[126,294,67,-0.019110628446494277],[126,294,68,-0.014854269059164829],[126,294,69,-0.010568412802355848],[126,294,70,-0.006253963729678916],[126,294,71,-0.0019118360975170917],[126,294,72,0.002457046732636081],[126,294,73,0.006851753416692655],[126,294,74,0.011271345775714259],[126,294,75,0.015714879968388884],[126,294,76,0.020181407688609432],[126,294,77,0.024669977388009634],[126,294,78,0.02917963552347791],[126,294,79,0.03370942782967802],[126,295,64,-0.028467714776023487],[126,295,65,-0.024254836167372104],[126,295,66,-0.020011534432700387],[126,295,67,-0.015738688123719022],[126,295,68,-0.01143718701707537],[126,295,69,-0.007107931027514114],[126,295,70,-0.002751829095325245],[126,295,71,0.0016302019517743932],[126,295,72,0.006037238562375161],[126,295,73,0.01046835165057472],[126,295,74,0.014922607811019575],[126,295,75,0.019399070559286927],[126,295,76,0.023896801597982742],[126,295,77,0.028414862108406158],[126,295,78,0.03295231406780333],[126,295,79,0.0375082215922405],[126,296,64,-0.02530921228145494],[126,296,65,-0.021046520595522297],[126,296,66,-0.016755099828864667],[126,296,67,-0.012435840100597464],[126,296,68,-0.00808964065245786],[126,296,69,-0.0037174086979432364],[126,296,70,6.799417548756792E-4],[126,296,71,0.005101491106719813],[126,296,72,0.009546315396697438],[126,296,73,0.014013487557975213],[126,296,74,0.018502078699906985],[126,296,75,0.023011159416113328],[126,296,76,0.02753980111888961],[126,296,77,0.03208707739979501],[126,296,78,0.03665206541644256],[126,296,79,0.041233847305520294],[126,297,64,-0.022220614706978406],[126,297,65,-0.0179086417121124],[126,297,66,-0.01356961262543338],[126,297,67,-0.009204429255206967],[126,297,68,-0.004814000449650607],[126,297,69,-3.9924088230072763E-4],[126,297,70,0.0040389301895615015],[126,297,71,0.00849959019327666],[126,297,72,0.01298181453601753],[126,297,73,0.01748467792668866],[126,297,74,0.022007255724899547],[126,297,75,0.026548625316500096],[126,297,76,0.031107867516060747],[126,297,77,0.0356840679961459],[126,297,78,0.04027631874340342],[126,297,79,0.044883719541499424],[126,298,64,-0.01920412614349093],[126,298,65,-0.014843431817855218],[126,298,66,-0.010457332335064823],[126,298,67,-0.0060467413109071555],[126,298,68,-0.0016125773392521026],[126,298,69,0.0028442372860722487],[126,298,70,0.007322777876963317],[126,298,71,0.011822118684133805],[126,298,72,0.016341334257660378],[126,298,73,0.0208795008348375],[126,298,74,0.025435697755719147],[126,298,75,0.030009008905838602],[126,298,76,0.03459852418648743],[126,298,77,0.03920334101240248],[126,298,78,0.043822565836885666],[126,298,79,0.04845531570438266],[126,299,64,-0.016261891403238145],[126,299,65,-0.011853063464919114],[126,299,66,-0.007420458270388536],[126,299,67,-0.002965001357862415],[126,299,68,0.0015123787962919924],[126,299,69,0.006010752118863483],[126,299,70,0.010529188309279292],[126,299,71,0.01506675823711058],[126,299,72,0.019622535367652412],[126,299,73,0.024195597215423276],[126,299,74,0.028785026825971782],[126,299,75,0.03338991428547398],[126,299,76,0.038009358258507445],[126,299,77,0.04264246755384956],[126,299,78,0.047288362718323367],[126,299,79,0.051946177658719506],[126,300,64,-0.013395994651344584],[126,300,65,-0.008939648071104651],[126,300,66,-0.004461128141442873],[126,300,67,3.8627565642400385E-5],[126,300,68,0.004558680556877609],[126,300,69,0.009098092821862878],[126,300,70,0.013655928266014472],[126,300,71,0.018231254172146515],[126,300,72,0.02282314269074379],[126,300,73,0.0274306723587697],[126,300,74,0.03205292964740031],[126,300,75,0.03668901053816218],[126,300,76,0.041338022127866796],[126,300,77,0.045999084262183396],[126,300,78,0.050671331197876694],[126,300,79,0.05535391329373787],[126,301,64,-0.010608458095656755],[126,301,65,-0.0061052345928209115],[126,301,66,-0.0015814167123817217],[126,301,67,0.00296204583216823],[126,301,68,0.0075242043987808135],[126,301,69,0.01210411288347421],[126,301,70,0.016700829216365523],[126,301,71,0.021313416886958682],[126,301,72,0.02594094649874228],[126,301,73,0.03058249735293657],[126,301,74,0.03523715906178627],[126,301,75,0.0399040331908727],[126,301,76,0.04458223493083867],[126,301,77,0.04927089479836991],[126,301,78,0.053969160366458435],[126,301,79,0.0586761980239741],[126,302,64,-0.007901240735050417],[126,302,65,-0.0033518082570166002],[126,302,66,0.0012166654823950775],[126,302,67,0.005803218524211059],[126,302,68,0.010406891948387018],[126,302,69,0.015026731402502647],[126,302,70,0.019661788660484396],[126,302,71,0.02431112321120178],[126,302,72,0.02897380387698938],[126,302,73,0.033648910461934564],[126,302,74,0.038335535430330525],[126,302,75,0.0430327856147623],[126,302,76,0.04773978395422493],[126,302,77,0.05245567126211417],[126,302,78,0.05717960802411587],[126,302,79,0.061910776226021716],[126,303,64,-0.005276237166122778],[126,303,65,-6.812893519832089E-4],[126,303,66,0.003931173362767853],[126,303,67,0.008560176673498267],[126,303,68,0.013204751255695316],[126,303,69,0.01786393435530335],[126,303,70,0.022536771409709527],[126,303,71,0.027222317699218214],[126,303,72,0.031919640029068025],[126,303,73,0.0366278184418323],[126,303,74,0.041345947960600794],[126,303,75,0.046073140362412036],[126,303,76,0.05080852598233394],[126,303,77,0.055551255548033474],[126,303,78,0.060300502044863466],[126,303,79,0.06505546261149102],[126,304,64,-0.0027352764482034167],[126,304,65,0.001904467923034829],[126,304,66,0.006560228468148915],[126,304,67,0.01123101844056051],[126,304,68,0.01591585798766621],[126,304,69,0.020613775802362462],[126,304,70,0.0253238108058341],[126,304,71,0.030045013861449546],[126,304,72,0.03477644951981514],[126,304,73,0.03951719779482661],[126,304,74,0.04426635597112301],[126,304,75,0.04902304044240283],[126,304,76,0.05378638858100783],[126,304,77,0.05855556063861187],[126,304,78,0.06332974167804208],[126,304,79,0.06810814353625952],[126,305,64,-2.801210268237597E-4],[126,305,65,0.00440367654928199],[126,305,66,0.009102020063315616],[126,305,67,0.013813910234432365],[126,305,68,0.018538356561267278],[126,305,69,0.02327437903415987],[126,305,70,0.02802100987926037],[126,305,71,0.032777295334357776],[126,305,72,0.03754229745648249],[126,305,73,0.04231509596112215],[126,305,74,0.04709479009345647],[126,305,75,0.05188050053106847],[126,305,76,0.056671371318541004],[126,305,77,0.061466571833772264],[126,305,78,0.06626529878604102],[126,305,79,0.07106677824584653],[126,306,64,0.0020875342844297318],[126,306,65,0.006814617721061705],[126,306,66,0.01155480618490157],[126,306,67,0.016307087772561943],[126,306,68,0.021070461216292954],[126,306,69,0.025843937656394117],[126,306,70,0.030626542446122243],[126,306,71,0.03541731698893589],[126,306,72,0.04021532060813092],[126,306,73,0.04501963244870155],[126,306,74,0.04982935341183786],[126,306,75,0.05464360812151352],[126,306,76,0.0594615469235728],[126,306,77,0.06428234791715315],[126,306,78,0.06910521901847164],[126,306,79,0.07392940005700031],[126,307,64,0.004366063263736064],[126,307,65,0.009135641819492307],[126,307,66,0.013916914628605961],[126,307,67,0.01870885708098681],[126,307,68,0.023510457028022118],[126,307,69,0.02832071661463202],[126,307,70,0.03313865414443665],[126,307,71,0.03796330597787385],[126,307,72,0.04279372846332033],[126,307,73,0.04762899990105291],[126,307,74,0.05246822254046088],[126,307,75,0.057310524609960625],[126,307,76,0.06215506238002459],[126,307,77,0.06700102225915888],[126,307,78,0.0718476229228588],[126,307,79,0.07669411747556769],[126,308,64,0.006553909182408529],[126,308,65,0.011365169327322497],[126,308,66,0.016186743876990747],[126,308,67,0.021017595434648255],[126,308,68,0.025856700859579057],[126,308,69,0.0307030531582468],[126,308,70,0.03555566340914988],[126,308,71,0.040413562721240165],[126,308,72,0.04527580422595685],[126,308,73,0.05014146510271318],[126,308,74,0.05500964863824678],[126,308,75,0.05987948631928436],[126,308,76,0.06475013995893344],[126,308,77,0.0696208038566345],[126,308,78,0.07449070699170453],[126,308,79,0.07935911525049534],[126,309,64,0.008649585647879716],[126,309,65,0.013501691684873515],[126,309,66,0.018362763967936235],[126,309,67,0.02323175223791124],[126,309,68,0.02810762225406968],[126,309,69,0.03298935774371908],[126,309,70,0.03787596238614954],[126,309,71,0.04276646183075339],[126,309,72,0.04765990574937168],[126,309,73,0.05255536992270178],[126,309,74,0.057451958361183955],[126,309,75,0.06234880545980789],[126,309,76,0.06724507818726094],[126,309,77,0.07213997830924587],[126,309,78,0.07703274464600031],[126,309,79,0.08192265536404349],[126,310,64,0.010651677388353778],[126,310,65,0.01554377208716233],[126,310,66,0.02044351730380796],[126,310,67,0.025349849845347328],[126,310,68,0.030261724266548107],[126,310,69,0.03517811487735481],[126,310,70,0.04009801778530098],[126,310,71,0.04502045297270267],[126,310,72,0.04994446640869002],[126,310,73,0.054869132195906056],[126,310,74,0.05979355475229603],[126,310,75,0.0647168710274239],[126,310,76,0.0696382527537396],[126,310,77,0.07455690873262548],[126,310,78,0.07947208715525304],[126,310,79,0.08438307795827521],[126,311,64,0.012558840979013927],[126,311,65,0.017490046222089217],[126,311,66,0.022427619401218693],[126,311,67,0.027370484322659552],[126,311,68,0.03231758423569342],[126,311,69,0.03726788389729996],[126,311,70,0.04222037167238345],[126,311,71,0.047174061669389186],[126,311,72,0.05212799591136334],[126,311,73,0.057081246542286995],[126,311,74,0.0620329180691082],[126,311,75,0.06698214963890768],[126,311,76,0.07192811735162154],[126,311,77,0.07687003660815078],[126,311,78,0.0818071644938878],[126,311,79,0.08673880219768439],[126,312,64,0.014369805509845526],[126,312,65,0.019339222949754015],[126,312,66,0.02431375958144806],[126,312,67,0.029292326147815947],[126,312,68,0.034273854495262795],[126,312,69,0.0392572996949164],[126,312,70,0.04424164219999378],[126,312,71,0.04922589003915975],[126,312,72,0.054209081045934276],[126,312,73,0.059190285123978226],[126,312,74,0.06416860654868266],[126,312,75,0.06914318630449424],[126,312,76,0.07411320445840439],[126,312,77,0.07907788256942738],[126,312,78,0.08403648613410153],[126,312,79,0.08898832706803658],[126,313,64,0.01608337319512014],[126,313,65,0.02109008492294491],[126,313,66,0.026100701601567203],[126,313,67,0.031114120852436727],[126,313,68,0.036129263025365885],[126,313,69,0.04114507337556923],[126,313,70,0.04616052427746639],[126,313,71,0.05117461747508009],[126,313,72,0.056186386369083324],[126,313,73,0.061194898340326986],[126,313,74,0.06619925711027441],[126,313,75,0.07119860513777171],[126,313,76,0.07619212605258546],[126,313,77,0.08117904712553026],[126,313,78,0.08615864177522164],[126,313,79,0.09113023211147722],[126,314,64,0.017698419924436243],[126,314,65,0.022741489148694574],[126,314,66,0.027787284226159684],[126,314,67,0.032834689603326875],[126,314,68,0.03788261404345389],[126,314,69,0.04292999285871127],[126,314,70,0.04797579017969483],[126,314,71,0.0530190012621328],[126,314,72,0.05805865483084163],[126,314,73,0.06309381546075946],[126,314,74,0.06812358599548815],[126,314,75,0.07314711000276855],[126,314,76,0.07816357426732146],[126,314,77,0.08317221132087974],[126,314,78,0.08817230200944318],[126,314,79,0.09316317809778032],[126,315,64,0.019213895755404442],[126,315,65,0.024292367490992728],[126,315,66,0.029372421739730398],[126,315,67,0.03445292972424577],[126,315,68,0.0395327885351123],[126,315,69,0.044610923417360865],[126,315,70,0.049686290094952124],[126,315,71,0.05475787713303762],[126,315,72,0.05982470833806733],[126,315,73,0.06488584519556956],[126,315,74,0.06994038934603666],[126,315,75,0.07498748509833825],[126,315,76,0.08002632198109805],[126,315,77,0.08505613733185624],[126,315,78,0.0900762189240514],[126,315,79,0.0950859076318458],[126,316,64,0.020628825347916907],[126,316,65,0.025741727114594715],[126,316,66,0.030855104399739486],[126,316,67,0.03596781515785147],[126,316,68,0.041078744724596106],[126,316,69,0.04618680815690726],[126,316,70,0.05129095261164321],[126,316,71,0.05639015976262626],[126,316,72,0.06148344825611829],[126,316,73,0.06656987620456378],[126,316,74,0.0716485437190304],[126,316,75,0.07671859547977022],[126,316,76,0.08177922334533694],[126,316,77,0.08682966900008063],[126,316,78,0.09186922664005656],[126,316,79,0.09689724569736857],[126,317,64,0.021942308340073297],[126,317,65,0.027088650869998093],[126,317,66,0.032234398830336325],[126,317,67,0.03737839686789454],[126,317,68,0.042519518485184316],[126,317,69,0.047656668433321725],[126,317,70,0.05278878514407015],[126,317,71,0.05791484320085494],[126,317,72,0.06303385584880417],[126,317,73,0.0681448775436444],[126,317,74,0.07324700653988561],[126,317,75,0.07833938751771355],[126,317,76,0.08342121424902846],[126,317,77,0.08849173230245097],[126,317,78,0.09355024178732965],[126,317,79,0.0985961001367737],[126,318,64,0.02315351966567661],[126,318,65,0.028332297619500818],[126,318,66,0.03350944835670472],[126,318,67,0.03868380318157158],[126,318,68,0.043854223689259786],[126,318,69,0.049019604210681716],[126,318,70,0.0541788742971121],[126,318,71,0.05933100124435406],[126,318,72,0.06447499265651654],[126,318,73,0.0696098990492312],[126,318,74,0.07473481649274571],[126,318,75,0.07984888929430814],[126,318,76,0.0849513127202843],[126,318,77,0.09004133575782663],[126,318,78,0.09511826391613126],[126,318,79,0.10018146206730522],[126,319,64,0.024261709813348603],[126,319,65,0.02947190250438947],[126,319,66,0.034679473280067846],[126,319,67,0.03988324007208821],[126,319,68,0.045082052498168323],[126,319,69,0.05027479435805926],[126,319,70,0.05546038616987714],[126,319,71,0.06063778774657275],[126,319,72,0.06580600081259572],[126,319,73,0.07096407166057783],[126,319,74,0.07611109384847567],[126,319,75,0.08124621093658502],[126,319,76,0.08636861926486902],[126,319,77,0.09147757077042112],[126,319,78,0.09657237584509604],[126,319,79,0.10165240623333227],[127,-64,64,-0.17544451142451467],[127,-64,65,-0.17947495870586194],[127,-64,66,-0.1833770424199722],[127,-64,67,-0.18714931513305966],[127,-64,68,-0.19079050265468211],[127,-64,69,-0.19429951006439627],[127,-64,70,-0.19767542780416292],[127,-64,71,-0.20091753783640687],[127,-64,72,-0.2040253198677433],[127,-64,73,-0.20699845763827673],[127,-64,74,-0.2098368452767374],[127,-64,75,-0.21254059372109113],[127,-64,76,-0.2151100372049115],[127,-64,77,-0.21754573980937364],[127,-64,78,-0.21984850208092532],[127,-64,79,-0.22201936771461228],[127,-63,64,-0.17006168934250465],[127,-63,65,-0.17408046067235894],[127,-63,66,-0.17797138722296002],[127,-63,67,-0.18173301920500906],[127,-63,68,-0.185364079572779],[127,-63,69,-0.18886347004330428],[127,-63,70,-0.19223027718133823],[127,-63,71,-0.19546377854997032],[127,-63,72,-0.19856344892692435],[127,-63,73,-0.20152896658644026],[127,-63,74,-0.2043602196470018],[127,-63,75,-0.20705731248455195],[127,-63,76,-0.20962057221148],[127,-63,77,-0.21205055522124028],[127,-63,78,-0.21434805379866217],[127,-63,79,-0.21651410279592365],[127,-62,64,-0.16459244702090636],[127,-62,65,-0.16859875530378132],[127,-62,66,-0.17247776692756012],[127,-62,67,-0.17622802963811246],[127,-62,68,-0.1798482633962677],[127,-62,69,-0.1833373663890696],[127,-62,70,-0.18669442110681078],[127,-62,71,-0.18991870048574133],[127,-62,72,-0.19300967411646397],[127,-62,73,-0.1959670145179253],[127,-62,74,-0.19879060347726796],[127,-62,75,-0.20148053845517544],[127,-62,76,-0.20403713905700183],[127,-62,77,-0.20646095356954564],[127,-62,78,-0.2087527655635243],[127,-62,79,-0.21091360056172137],[127,-61,64,-0.15904101765550527],[127,-61,65,-0.16303408311486667],[127,-61,66,-0.1669004290631816],[127,-61,67,-0.17063860067346392],[127,-61,68,-0.17424731477652777],[127,-61,69,-0.1777254658638452],[127,-61,70,-0.18107213215619045],[127,-61,71,-0.18428658173796986],[127,-61,72,-0.18736827875724904],[127,-61,73,-0.19031688969138927],[127,-61,74,-0.19313228967855123],[127,-61,75,-0.19581456891470383],[127,-61,76,-0.1983640391164314],[127,-61,77,-0.2007812400493919],[127,-61,78,-0.20306694612248766],[127,-61,79,-0.2052221730477195],[127,-60,64,-0.15341168416505457],[127,-60,65,-0.1573907348558754],[127,-60,66,-0.16124367188827127],[127,-60,67,-0.16496903775573846],[127,-60,68,-0.1685655460241836],[127,-60,69,-0.17203208732592223],[127,-60,70,-0.17536773541947137],[127,-60,71,-0.17857175331503905],[127,-60,72,-0.18164359946572173],[127,-60,73,-0.1845829340243218],[127,-60,74,-0.18738962516604118],[127,-60,75,-0.1900637554766934],[127,-60,76,-0.1926056284067219],[127,-60,77,-0.1950157747908806],[127,-60,78,-0.19729495943363962],[127,-60,79,-0.19944418776028106],[127,-59,64,-0.14770877435105467],[127,-59,65,-0.15167304666259052],[127,-59,66,-0.1555118395309324],[127,-59,67,-0.1592236926648285],[127,-59,68,-0.1628073162321515],[127,-59,69,-0.16626159684457842],[127,-59,70,-0.16958560360807606],[127,-59,71,-0.17277859423909236],[127,-59,72,-0.17584002124646814],[127,-59,73,-0.1787695381789779],[127,-59,74,-0.18156700593875663],[127,-59,75,-0.18423249916025575],[127,-59,76,-0.18676631265501697],[127,-59,77,-0.1891689679221169],[127,-59,78,-0.19144121972434613],[127,-59,79,-0.19358406273009487],[127,-58,64,-0.1419366559312567],[127,-58,65,-0.14588539507955678],[127,-58,66,-0.1497093170023155],[127,-58,67,-0.1534069585198048],[127,-58,68,-0.15697702627058596],[127,-58,69,-0.1604184026864215],[127,-58,70,-0.16373015203300112],[127,-58,71,-0.1669115265163862],[127,-58,72,-0.16996197245518152],[127,-58,73,-0.1728811365183479],[127,-58,74,-0.17566887202891124],[127,-58,75,-0.17832524533321026],[127,-58,76,-0.1808505422359724],[127,-58,77,-0.18324527450107098],[127,-58,78,-0.18551018641802564],[127,-58,79,-0.18764626143422136],[127,-57,64,-0.13609973144720322],[127,-57,65,-0.14003219195687278],[127,-57,66,-0.14384052508310186],[127,-57,67,-0.14752326465552135],[127,-57,68,-0.15107911365403803],[127,-57,69,-0.15450695017353033],[127,-57,70,-0.1578058334543725],[127,-57,71,-0.16097500997868153],[127,-57,72,-0.16401391963230738],[127,-57,73,-0.16692220193247098],[127,-57,74,-0.16969970232130738],[127,-57,75,-0.17234647852496032],[127,-57,76,-0.17486280697851364],[127,-57,77,-0.17724918931661204],[127,-57,78,-0.17950635892983913],[127,-57,79,-0.18163528758682057],[127,-56,64,-0.1302024330456577],[127,-56,65,-0.13411787922038854],[127,-56,66,-0.13790991508292094],[127,-56,67,-0.14157707137171105],[127,-56,68,-0.14511804728068045],[127,-56,69,-0.14853171641325957],[127,-56,70,-0.15181713280226783],[127,-56,71,-0.15497353699552685],[127,-56,72,-0.15800036220722746],[127,-56,73,-0.16089724053495125],[127,-56,74,-0.16366400924261093],[127,-56,75,-0.1663007171089501],[127,-56,76,-0.1688076308418872],[127,-56,77,-0.17118524155856407],[127,-56,78,-0.17343427133115596],[127,-56,79,-0.17555567979841946],[127,-55,64,-0.12424921713377457],[127,-55,65,-0.12814692351515977],[127,-55,66,-0.13192196347256557],[127,-55,67,-0.13557286455442874],[127,-55,68,-0.13909832204344852],[127,-55,69,-0.14249720489954254],[127,-55,70,-0.14576856176865094],[127,-55,71,-0.14891162705728378],[127,-55,72,-0.15192582707282676],[127,-55,73,-0.15481078622951916],[127,-55,74,-0.1575663333203523],[127,-55,75,-0.1601925078545422],[127,-55,76,-0.16268956646085242],[127,-55,77,-0.16505798935663418],[127,-55,78,-0.1672984868826366],[127,-55,79,-0.16941200610356],[127,-54,64,-0.11824455890830465],[127,-54,65,-0.12212381072245337],[127,-54,66,-0.12588116638928792],[127,-54,67,-0.12951515017013282],[127,-54,68,-0.1330244533133942],[127,-54,69,-0.13640793998600453],[127,-54,70,-0.13966465327072353],[127,-54,71,-0.14279382122919115],[127,-54,72,-0.14579486303074884],[127,-54,73,-0.14866739514694327],[127,-54,74,-0.15141123761195696],[127,-54,75,-0.15402642034862501],[127,-54,76,-0.1565131895603128],[127,-54,77,-0.1588720141885147],[127,-54,78,-0.1611035924362373],[127,-54,79,-0.1632088583571354],[127,-53,64,-0.11219294675869496],[127,-53,65,-0.11605304035016295],[127,-53,66,-0.11979203401504446],[127,-53,67,-0.1234084486322653],[127,-53,68,-0.12690097129510902],[127,-53,69,-0.1302684612307321],[127,-53,70,-0.13350995578553948],[127,-53,71,-0.13662467647632548],[127,-53,72,-0.1396120351071899],[127,-53,73,-0.1424716399521443],[127,-53,74,-0.14520330200365938],[127,-53,75,-0.14780704128680233],[127,-53,76,-0.1502830932392456],[127,-53,77,-0.1526319151570089],[127,-53,78,-0.15485419270599066],[127,-53,79,-0.15695084649926305],[127,-52,64,-0.10609887654392092],[127,-52,65,-0.10993911979647464],[127,-52,66,-0.11365908482752285],[127,-52,67,-0.11725728904016886],[127,-52,68,-0.1207324152540572],[127,-52,69,-0.12408331761254265],[127,-52,70,-0.1273090275557317],[127,-52,71,-0.13040875985929568],[127,-52,72,-0.13338191873906913],[127,-52,73,-0.13622810402134866],[127,-52,74,-0.13894711737913767],[127,-52,75,-0.14153896863399507],[127,-52,76,-0.14400388212376114],[127,-52,77,-0.14634230313602592],[127,-52,78,-0.1485549044073966],[127,-52,79,-0.15064259268853686],[127,-51,64,-0.09996684574336023],[127,-51,65,-0.10378655848708829],[127,-51,66,-0.10748683972425999],[127,-51,67,-0.11106620329065042],[127,-51,68,-0.1145233276161256],[127,-51,69,-0.11785706161906373],[127,-51,70,-0.12106643066665468],[127,-51,71,-0.12415064260098108],[127,-51,72,-0.12710909383089442],[127,-51,73,-0.1299413754895965],[127,-51,74,-0.13264727965818057],[127,-51,75,-0.1352268056547813],[127,-51,76,-0.13768016638961078],[127,-51,77,-0.1400077947857501],[127,-51,78,-0.1422103502657417],[127,-51,79,-0.14428872530396886],[127,-50,64,-0.09380134748156066],[127,-50,65,-0.09759986188584935],[127,-50,66,-0.10127981601970848],[127,-50,67,-0.10483972006204323],[127,-50,68,-0.10827824793924634],[127,-50,69,-0.11159424320647204],[127,-50,70,-0.11478672499479692],[127,-50,71,-0.1178548940241696],[127,-50,72,-0.12079813868216516],[127,-50,73,-0.12361604116845548],[127,-50,74,-0.12630838370524278],[127,-50,75,-0.1288751548133138],[127,-50,76,-0.1313165556539907],[127,-50,77,-0.13363300643683929],[127,-50,78,-0.1358251528931934],[127,-50,79,-0.13789387281547083],[127,-49,64,-0.08760686442673438],[127,-49,65,-0.0913835253786266],[127,-49,66,-0.09504252131507718],[127,-49,67,-0.09858235867059739],[127,-49,68,-0.10200170675691811],[127,-49,69,-0.10529940363072554],[127,-49,70,-0.10847446202729483],[127,-49,71,-0.11152607535991843],[127,-49,72,-0.11445362378514923],[127,-49,73,-0.11725668033376502],[127,-49,74,-0.11993501710770804],[127,-49,75,-0.12248861154265189],[127,-49,76,-0.12491765273647193],[127,-49,77,-0.12722254784348241],[127,-49,78,-0.12940392853450056],[127,-49,79,-0.13146265752270714],[127,-48,64,-0.08138786256330355],[127,-48,65,-0.08514202803075033],[127,-48,66,-0.08877944724127473],[127,-48,67,-0.09229862279952994],[127,-48,68,-0.09569821929395828],[127,-48,69,-0.09897706915061244],[127,-48,70,-0.10213417855287177],[127,-48,71,-0.10516873342697342],[127,-48,72,-0.10808010549335656],[127,-48,73,-0.11086785838374458],[127,-48,74,-0.11353175382420178],[127,-48,75,-0.11607175788383117],[127,-48,76,-0.11848804728938367],[127,-48,77,-0.12078101580563994],[127,-48,78,-0.1229512806816283],[127,-48,79,-0.12499968916264614],[127,-47,64,-0.07514878483832932],[127,-47,65,-0.07887982621785872],[127,-47,66,-0.08249506307478982],[127,-47,67,-0.08599299410055883],[127,-47,68,-0.08937227905431666],[127,-47,69,-0.09263174460245449],[127,-47,70,-0.09577039022404155],[127,-47,71,-0.0987873941820735],[127,-47,72,-0.10168211956055129],[127,-47,73,-0.10445412036730017],[127,-47,74,-0.10710314770277418],[127,-47,75,-0.10962915599450895],[127,-47,76,-0.11203230929749075],[127,-47,77,-0.1143129876603114],[127,-47,78,-0.1164717935571632],[127,-47,79,-0.11850955838564503],[127,-46,64,-0.0688940446816777],[127,-46,65,-0.07260134712998845],[127,-46,66,-0.07619380922635488],[127,-46,67,-0.07966992566778175],[127,-46,68,-0.08302835128079444],[127,-46,69,-0.0862679068463088],[127,-46,70,-0.0893875849904161],[127,-46,71,-0.092386556140991],[127,-46,72,-0.09526417455013447],[127,-46,73,-0.09801998438236637],[127,-46,74,-0.1006537258688085],[127,-46,75,-0.10316534152702717],[127,-46,76,-0.10555498244679651],[127,-46,77,-0.10782301464165844],[127,-46,78,-0.10997002546632628],[127,-46,79,-0.11199683009991035],[127,-45,64,-0.06262801940022611],[127,-45,65,-0.06631098214922992],[127,-45,66,-0.06988009060270595],[127,-45,67,-0.07333383538419647],[127,-45,68,-0.0766708662869906],[127,-45,69,-0.07988999808397979],[127,-45,70,-0.08299021640343562],[127,-45,71,-0.08597068367061866],[127,-45,72,-0.08883074511522793],[127,-45,73,-0.09156993484460962],[127,-45,74,-0.09418798198296185],[127,-45,75,-0.09668481687620878],[127,-45,76,-0.09906057736280005],[127,-45,77,-0.10131561511031517],[127,-45,78,-0.10345050201791939],[127,-45,79,-0.10546603668465182],[127,-44,64,-0.05635504344596476],[127,-44,65,-0.06001308010078754],[127,-44,66,-0.06355826984128432],[127,-44,67,-0.06698909914072315],[127,-44,68,-0.07030421266131237],[127,-44,69,-0.07350241904869415],[127,-44,70,-0.07658269679236895],[127,-44,71,-0.07954420015195385],[127,-44,72,-0.0823862651492927],[127,-44,73,-0.08510841562633042],[127,-44,74,-0.0877103693689929],[127,-44,75,-0.09019204429673822],[127,-44,76,-0.09255356471804754],[127,-44,77,-0.09479526765172286],[127,-44,78,-0.09691770921404674],[127,-44,79,-0.09892167107177685],[127,-43,64,-0.050079401557823644],[127,-43,65,-0.05371194037728466],[127,-43,66,-0.05723266041771813],[127,-43,67,-0.060640043927554954],[127,-43,68,-0.06393273034288793],[127,-43,69,-0.06710952206626297],[127,-43,70,-0.07016939031140801],[127,-43,71,-0.07311148101380516],[127,-43,72,-0.07593512080711973],[127,-43,73,-0.07863982306540263],[127,-43,74,-0.08122529401129919],[127,-43,75,-0.08369143888994612],[127,-43,76,-0.0860383682088065],[127,-43,77,-0.0882664040433222],[127,-43,78,-0.09037608640843608],[127,-43,79,-0.09236817969595301],[127,-42,64,-0.0438053217775497],[127,-42,65,-0.047411805936634854],[127,-42,66,-0.05090751962640161],[127,-42,67,-0.05429094079816421],[127,-42,68,-0.057560703569711325],[127,-42,69,-0.06071560398806697],[127,-42,70,-0.06375460585819703],[127,-42,71,-0.06667684663755957],[127,-42,72,-0.06948164339652452],[127,-42,73,-0.07216849884457155],[127,-42,74,-0.07473710742250206],[127,-42,75,-0.07718736146034333],[127,-42,76,-0.07951935740120031],[127,-42,77,-0.08173340209093238],[127,-42,78,-0.0838300191337008],[127,-42,79,-0.08580995531336932],[127,-41,64,-0.0375369683394704],[127,-41,65,-0.041116856173314176],[127,-41,66,-0.044587041434015484],[127,-41,67,-0.04794599770579844],[127,-41,68,-0.051192353698841786],[127,-41,69,-0.05432489899569226],[127,-41,70,-0.05734258986361973],[127,-41,71,-0.06024455513283322],[127,-41,72,-0.06303010214056781],[127,-41,73,-0.06569872274095123],[127,-41,74,-0.0682500993809032],[127,-41,75,-0.07068411124172103],[127,-41,76,-0.0730008404466288],[127,-41,77,-0.07520057833415139],[127,-41,78,-0.07728383179736975],[127,-41,79,-0.07925132968903559],[127,-40,64,-0.0312784344339917],[127,-40,65,-0.034831199662884615],[127,-40,66,-0.038275349205829645],[127,-40,67,-0.041609352212315875],[127,-40,68,-0.044831831898522356],[127,-40,69,-0.04794157127706389],[127,-40,70,-0.05093751895269216],[127,-40,71,-0.05381879498386033],[127,-40,72,-0.05658469681016087],[127,-40,73,-0.05923470524556207],[127,-40,74,-0.06176849053766564],[127,-40,75,-0.06418591849267563],[127,-40,76,-0.06648705666632082],[127,-40,77,-0.0686721806206192],[127,-40,78,-0.07074178024652722],[127,-40,79,-0.07269656615245079],[127,-39,64,-0.02503373484513749],[127,-39,65,-0.028558866780076464],[127,-39,66,-0.03197648830509836],[127,-39,67,-0.035285064069666805],[127,-39,68,-0.038483211712508014],[127,-39,69,-0.04156970757439349],[127,-39,70,-0.04454349247688094],[127,-39,71,-0.04740367756692265],[127,-39,72,-0.05014955022736123],[127,-39,73,-0.05278058005322006],[127,-39,74,-0.055296424894029084],[127,-39,75,-0.05769693696186151],[127,-39,76,-0.059982169005335595],[127,-39,77,-0.06215238054946226],[127,-39,78,-0.06420804420138115],[127,-39,79,-0.06614985202196966],[127,-38,64,-0.01880679846198341],[127,-38,65,-0.02230380219027861],[127,-38,66,-0.025694418565403776],[127,-38,67,-0.028977107673872626],[127,-38,68,-0.03215048149647248],[127,-38,69,-0.035213309603786436],[127,-38,70,-0.03816452491768396],[127,-38,71,-0.041003229538684516],[127,-38,72,-0.04372870063920864],[127,-38,73,-0.046340396422637764],[127,-38,74,-0.048837962148408964],[127,-38,75,-0.05122123622283048],[127,-38,76,-0.053490256355864796],[127,-38,77,-0.05564526578376583],[127,-38,78,-0.05768671955761073],[127,-38,79,-0.059615290897709006],[127,-37,64,-0.01260146066381751],[127,-37,65,-0.016069857214274008],[127,-37,66,-0.019433006635773187],[127,-37,67,-0.022689364391338396],[127,-37,68,-0.025837536726311616],[127,-37,69,-0.028876286346337432],[127,-37,70,-0.0318045381613179],[127,-37,71,-0.03462138509524548],[127,-37,72,-0.03732609396193187],[127,-37,73,-0.039918111406548884],[127,-37,74,-0.042397069913209684],[127,-37,75,-0.04476279387827797],[127,-37,76,-0.047015305749651515],[127,-37,77,-0.04915483223190198],[127,-37,78,-0.05118181055731519],[127,-37,79,-0.0530968948228181],[127,-36,64,-0.006421455579367241],[127,-36,65,-0.009860782066555829],[127,-36,66,-0.01319601819891636],[127,-36,67,-0.016425614757831886],[127,-36,68,-0.019548172178692536],[127,-36,69,-0.022562446211066622],[127,-36,70,-0.025467353644844426],[127,-36,71,-0.028261978102270935],[127,-36,72,-0.030945575895874877],[127,-36,73,-0.03351758195221932],[127,-36,74,-0.03597761580169523],[127,-36,75,-0.03832548763404886],[127,-36,76,-0.04056120441989031],[127,-36,77,-0.04268497609806132],[127,-36,78,-0.044697221828914],[127,-36,79,-0.046598576313474416],[127,-35,64,-2.7040821980928165E-4],[127,-35,65,-0.0036802179669451762],[127,-35,66,-0.006987110062295576],[127,-35,67,-0.010189530549855053],[127,-35,68,-0.01328607398356374],[127,-35,69,-0.016275489069400573],[127,-35,70,-0.0191566843734573],[127,-35,71,-0.021928734095901792],[127,-35,72,-0.024590883910847516],[127,-35,73,-0.027142556872047918],[127,-35,74,-0.029583359384637076],[127,-35,75,-0.03191308724261255],[127,-35,76,-0.03413173173230388],[127,-35,77,-0.036239485801703664],[127,-35,78,-0.03823675029571716],[127,-35,79,-0.04012414025729849],[127,-34,64,0.00584817351422795],[127,-34,65,0.002468310874285673],[127,-34,66,-8.098221222395674E-4],[127,-34,67,-0.003984666728609532],[127,-34,68,-0.00705481154882992],[127,-34,69,-0.010018998161415604],[127,-34,70,-0.012876126809137078],[127,-34,71,-0.015625262154664643],[127,-34,72,-0.01826563910212209],[127,-34,73,-0.020796668684469388],[127,-34,74,-0.02321794401693933],[127,-34,75,-0.025529246316219],[127,-34,76,-0.027730550985623048],[127,-34,77,-0.029822033766133904],[127,-34,78,-0.03180407695336418],[127,-34,79,-0.03367727568041734],[127,-33,64,0.01193090695194332],[127,-33,65,0.008581405398054298],[127,-33,66,0.005332430799174559],[127,-33,67,0.0021855467437170706],[127,-33,68,-8.578293569238005E-4],[127,-33,69,-0.003796431873561601],[127,-33,70,-0.006629152630396651],[127,-33,71,-0.00935504664209641],[127,-33,72,-0.011973337916786786],[127,-33,73,-0.014483425324882782],[127,-33,74,-0.016884888533973075],[127,-33,75,-0.019177494009457563],[127,-33,76,-0.021361201081177783],[127,-33,77,-0.02343616807592297],[127,-33,78,-0.025402758515863266],[127,-33,79,-0.027261547382879225],[127,-32,64,0.01797454289760203],[127,-32,65,0.01465579996455102],[127,-32,66,0.01143636724414554],[127,-32,67,0.008317813215014125],[127,-32,68,0.0053015613664044725],[127,-32,69,0.002388884611801756],[127,-32,70,-4.191003634473889E-4],[127,-32,71,-0.0031214388204158228],[127,-32,72,-0.005717343750795134],[127,-32,73,-0.008206201726935092],[127,-32,74,-0.010587578817943921],[127,-32,75,-0.012861226571546203],[127,-32,76,-0.015027088061936533],[127,-32,77,-0.017085304003515933],[127,-32,78,-0.019036218930555848],[127,-32,79,-0.020880387442768544],[127,-31,64,0.023975974001882006],[127,-31,65,0.02068837074791552],[127,-31,66,0.017498847536231432],[127,-31,67,0.014408977781820598],[127,-31,68,0.011420191111230382],[127,-31,69,0.008533767795211533],[127,-31,70,0.00575083311537028],[127,-31,71,0.0030723516649090454],[127,-31,72,4.991215834474483E-4],[127,-31,73,-0.001968231274005472],[127,-31,74,-0.004329259234141736],[127,-31,75,-0.006583698768204527],[127,-31,76,-0.008731476520844383],[127,-31,77,-0.010772715404857136],[127,-31,78,-0.012707740761856212],[127,-31,79,-0.014537086588855441],[127,-30,64,0.02993224325949051],[127,-30,65,0.026676144257667178],[127,-30,66,0.023516882324650656],[127,-30,67,0.020456035855560217],[127,-30,68,0.017495040670692963],[127,-30,69,0.014635184467414297],[127,-30,70,0.011877601206050081],[127,-30,71,0.0092232654298674],[127,-30,72,0.006672986519125179],[127,-30,73,0.004227402879274256],[127,-30,74,0.0018869760630955135],[127,-30,75,-3.4801517293481243E-4],[127,-30,76,-0.0024774808782818125],[127,-30,77,-0.00450152598388065],[127,-30,78,-0.006420456443598566],[127,-30,79,-0.008234785441614934],[127,-29,64,0.03584055263273067],[127,-29,65,0.032616305986568395],[127,-29,66,0.029487641255483754],[127,-29,67,0.026456141856123105],[127,-29,68,0.023523249856004624],[127,-29,69,0.02069026044485711],[127,-29,70,0.01795831633995848],[127,-29,71,0.015328402125554419],[127,-29,72,0.012801338526348682],[127,-29,73,0.010377776615136725],[127,-29,74,0.00805819195437052],[127,-29,75,0.005842878671951546],[127,-29,76,0.003731943471013577],[127,-29,77,0.0017252995738138432],[127,-29,78,-1.7733940031838813E-4],[127,-29,79,-0.0019764656229500632],[127,-28,64,0.04169827180118757],[127,-28,65,0.038506209185091844],[127,-28,66,0.03540846176994161],[127,-28,67,0.03240661803296074],[127,-28,68,0.02950212633940341],[127,-28,69,0.02669628943353597],[127,-28,70,0.0239902588636135],[127,-28,71,0.02138502934093589],[127,-28,72,0.01888143303296863],[127,-28,73,0.016480133790602425],[127,-28,74,0.014181621309346304],[127,-28,75,0.011986205224738256],[127,-28,76,0.009894009141745319],[127,-28,77,0.00790496459826795],[127,-28,78,0.006018804962698354],[127,-28,79,0.004235059265557117],[127,-27,64,0.047502947037673215],[127,-27,65,0.04434338376262936],[127,-27,66,0.04127685802984271],[127,-27,67,0.03830496341383838],[127,-27,68,0.03542915462519092],[127,-27,69,0.032650742021332224],[127,-27,70,0.02997088605135312],[127,-27,71,0.027390591634877448],[127,-27,72,0.024910702474999713],[127,-27,73,0.02253189530535904],[127,-27,74,0.020254674071139678],[127,-27,75,0.018079364044288226],[127,-27,76,0.01600610587271667],[127,-27,77,0.01403484956360479],[127,-27,78,0.012165348400754006],[127,-27,79,0.010397152796016162],[127,-26,64,0.05325231021012977],[127,-26,65,0.050125545315147346],[127,-26,66,0.047090529970000405],[127,-26,67,0.04414886288094111],[127,-26,68,0.041302005148550314],[127,-26,69,0.03855127479854592],[127,-26,70,0.035897841246582574],[127,-26,71,0.03334271969712155],[127,-26,72,0.030886765476358824],[127,-26,73,0.028530668299286188],[127,-26,74,0.02627494647067885],[127,-26,75,0.02411994102029169],[127,-26,76,0.022065809772042422],[127,-26,77,0.020112521347287138],[127,-26,78,0.018259849102146508],[127,-26,79,0.016507364998902596],[127,-25,64,0.05894428790965023],[127,-25,65,0.055850604279435],[127,-25,66,0.0528473724776688],[127,-25,67,0.049936196374487984],[127,-25,68,0.04711854350230249],[127,-25,69,0.04439573960677068],[127,-25,70,0.04176896313176082],[127,-25,71,0.03923923963838105],[127,-25,72,0.03680743615806403],[127,-25,73,0.034474255479782],[127,-25,74,0.03224023037118395],[127,-25,75,0.030105717733940662],[127,-25,76,0.02807089269307006],[127,-25,77,0.02613574262035523],[127,-25,78,0.024300061091807934],[127,-25,79,0.022563441779200888],[127,-24,64,0.06457701070475208],[127,-24,65,0.0615166752141002],[127,-24,66,0.05854548469920218],[127,-24,67,0.05566504822400309],[127,-24,68,0.05287683979174651],[127,-24,69,0.050182192916267576],[127,-24,70,0.04758229512727363],[127,-24,71,0.045078182409689305],[127,-24,72,0.04267073357705409],[127,-24,73,0.04036066457904541],[127,-24,74,0.03814852274292391],[127,-24,75,0.03603468094918094],[127,-24,76,0.034019331741165004],[127,-24,77,0.03210248136879679],[127,-24,78,0.030283943766328814],[127,-24,79,0.028563334464167922],[127,-23,64,0.07014882252161947],[127,-23,65,0.0671220862070081],[127,-23,66,0.06418317947362051],[127,-23,67,0.06133371660694387],[127,-23,68,0.0585751781172843],[127,-23,69,0.055908905331529146],[127,-23,70,0.05333609491889013],[127,-23,71,0.05085779335070917],[127,-23,72,0.048474891294316036],[127,-23,73,0.046188117941005746],[127,-23,74,0.04399803526793766],[127,-23,75,0.041905032234233364],[127,-23,76,0.03990931891104943],[127,-23,77,0.03801092054573951],[127,-23,78,0.03620967156005417],[127,-23,79,0.03450520948240299],[127,-22,64,0.07565829015045278],[127,-22,65,0.07266538840931691],[127,-22,66,0.06975899289324072],[127,-22,67,0.06694072313483435],[127,-22,68,0.06421206618497932],[127,-22,69,0.06157437122518916],[127,-22,70,0.059028844113954704],[127,-22,71,0.056576541867149],[127,-22,72,0.05421836707247829],[127,-22,73,0.05195506223805313],[127,-22,74,0.049787204074878244],[127,-22,75,0.047715197713536606],[127,-22,76,0.0457392708548493],[127,-22,77,0.043859467854618694],[127,-22,78,0.042075643742408575],[127,-22,79,0.04038745817438516],[127,-21,64,0.08110421287808234],[127,-21,65,0.0781453656962603],[127,-21,66,0.07527169399151434],[127,-21,67,0.07248482256706157],[127,-21,68,0.06978624504520603],[127,-21,69,0.06717731850043107],[127,-21,70,0.06465925802647177],[127,-21,71,0.062233131237445116],[127,-21,72,0.05989985270302389],[127,-21,73,0.057660178317728294],[127,-21,74,0.05551469960413469],[127,-21,75,0.05346383795027476],[127,-21,76,0.05150783878100973],[127,-21,77,0.04964676566348325],[127,-21,78,0.047880494346612346],[127,-21,79,0.04620870673463262],[127,-20,64,0.08648563224653527],[127,-20,65,0.08356104445436496],[127,-20,66,0.08072029455777296],[127,-20,67,0.07796501265201572],[127,-20,68,0.07529669895907176],[127,-20,69,0.07271671848158079],[127,-20,70,0.07022629559076254],[127,-20,71,0.06782650854838945],[127,-20,72,0.06551828396280457],[127,-20,73,0.06330239117904946],[127,-20,74,0.06117943660291214],[127,-20,75,0.05914985795916183],[127,-20,76,0.057213918483753234],[127,-20,77,0.05537170105011324],[127,-20,78,0.0536231022294571],[127,-20,79,0.051967826285163166],[127,-19,64,0.09180184193772778],[127,-19,65,0.08891170349528066],[127,-19,66,0.08610405907904262],[127,-19,67,0.08338054409575313],[127,-19,68,0.0807426653927883],[127,-19,69,0.07819179593305647],[127,-19,70,0.07572916940387142],[127,-19,71,0.07335587475988081],[127,-19,72,0.07107285070003255],[127,-19,73,0.06888088007865378],[127,-19,74,0.06678058425044597],[127,-19,75,0.06477241734966277],[127,-19,76,0.06285666050326133],[127,-19,77,0.06103341597812606],[127,-19,78,0.05930260126232745],[127,-19,79,0.0576639430804311],[127,-18,64,0.097052397784405],[127,-18,65,0.09419688409633897],[127,-18,66,0.09142251480906005],[127,-18,67,0.08873093065830528],[127,-18,68,0.08612364514011883],[127,-18,69,0.08360203920680342],[127,-18,70,0.08116735589685153],[127,-18,71,0.07882069489892585],[127,-18,72,0.07656300704987995],[127,-18,73,0.07439508876688627],[127,-18,74,0.07231757641348002],[127,-18,75,0.0703309405997854],[127,-18,76,0.0684354804167091],[127,-18,77,0.0666313176042096],[127,-18,78,0.06491839065359573],[127,-18,79,0.06329644884387597],[127,-17,64,0.10223712790704353],[127,-17,65,0.0994164001675607],[127,-17,66,0.0966754619641974],[127,-17,67,0.09401595937734242],[127,-17,68,0.0914394125726058],[127,-17,69,0.08894721051792254],[127,-17,70,0.08654060563463006],[127,-17,71,0.08422070838259677],[127,-17,72,0.08198848177938678],[127,-17,73,0.0798447358535308],[127,-17,74,0.07779012203171332],[127,-17,75,0.07582512746013614],[127,-17,76,0.07395006925985248],[127,-17,77,0.072165088716171],[127,-17,78,0.07047014540208962],[127,-17,79,0.06886501123577882],[127,-16,64,0.10735614297688545],[127,-16,65,0.10457034854527614],[127,-16,66,0.10186298404646865],[127,-16,67,0.09923570091936484],[127,-16,68,0.09669002601775656],[127,-16,69,0.09422735634866097],[127,-16,70,0.09184895374463142],[127,-16,71,0.08955593947011597],[127,-16,72,0.08734928876185244],[127,-16,73,0.08522982530336631],[127,-16,74,0.08319821563338403],[127,-16,75,0.08125496348842232],[127,-16,76,0.07940040407934412],[127,-16,77,0.0776346983019851],[127,-16,78,0.07595782688180741],[127,-16,79,0.07436958445260133],[127,-15,64,0.11240984660519393],[127,-15,65,0.10965911941245476],[127,-15,66,0.10698545829370654],[127,-15,67,0.10439052005851446],[127,-15,68,0.10187583826527558],[127,-15,69,0.09944281798086396],[127,-15,70,0.09709273047425027],[127,-15,71,0.09482670784416714],[127,-15,72,0.09264573758081018],[127,-15,73,0.0905506570616389],[127,-15,74,0.08854214798109583],[127,-15,75,0.0866207307144945],[127,-15,76,0.08478675861587714],[127,-15,77,0.08304041224993997],[127,-15,78,0.08138169355798386],[127,-15,79,0.0798104199579126],[127,-14,64,0.11739894585850918],[127,-14,65,0.11468340684551437],[127,-14,66,0.1120435662566891],[127,-14,67,0.10948108628277842],[127,-14,68,0.10699750720111756],[127,-14,69,0.10459424215665436],[127,-14,70,0.1022725718769456],[127,-14,71,0.10003363932119835],[127,-14,72,0.09787844426334547],[127,-14,73,0.09580783780921953],[127,-14,74,0.09382251684764442],[127,-14,75,0.0919230184356935],[127,-14,76,0.0901097141179178],[127,-14,77,0.08838280417963784],[127,-14,78,0.08674231183426384],[127,-14,79,0.0851880773446575],[127,-13,64,0.12232446190000057],[127,-13,65,0.11964421948771398],[127,-13,66,0.11703830450331032],[127,-13,67,0.11450838452768575],[127,-13,68,0.11205600656946157],[127,-13,69,0.10968259186744267],[127,-13,70,0.10738943062705408],[127,-13,71,0.10517767669081801],[127,-13,72,0.10304834214286596],[127,-13,73,0.10100229184754694],[127,-13,74,0.09904023792195238],[127,-13,75,0.09716273414260834],[127,-13,76,0.09537017028613282],[127,-13,77,0.09366276640396065],[127,-13,78,0.09204056703109031],[127,-13,79,0.09050343532887628],[127,-12,64,0.12718774075706663],[127,-12,65,0.12454289134927721],[127,-12,66,0.12197099544995005],[127,-12,67,0.11947372603765072],[127,-12,68,0.11705263686275913],[127,-12,69,0.11470915727142261],[127,-12,70,0.11244458696348247],[127,-12,71,0.11026009068444409],[127,-12,72,0.10815669285147778],[127,-12,73,0.10613527211351603],[127,-12,74,0.10419655584526843],[127,-12,75,0.10234111457539874],[127,-12,76,0.10056935634867092],[127,-12,77,0.09888152102215664],[127,-12,78,0.09727767449546898],[127,-12,79,0.09575770287503627],[127,-11,64,0.13199046421490246],[127,-11,65,0.12938109273396647],[127,-11,66,0.12684329831975882],[127,-11,67,0.1243787593546738],[127,-11,68,0.1219890363395697],[127,-11,69,0.11967556673926116],[127,-11,70,0.11743965976198523],[127,-11,71,0.11528249107290989],[127,-11,72,0.11320509744167306],[127,-11,73,0.11120837132401606],[127,-11,74,0.1092930553773348],[127,-11,75,0.10745973691039246],[127,-11,76,0.10570884226699861],[127,-11,77,0.10404063114375184],[127,-11,78,0.1024551908418051],[127,-11,79,0.10095243045267122],[127,-10,64,0.13673466083625951],[127,-10,65,0.13416084129233452],[127,-10,66,0.1316572202280838],[127,-10,67,0.1292254814346352],[127,-10,68,0.12686719217041464],[127,-10,69,0.12458379802821906],[127,-10,70,0.12237661773626285],[127,-10,71,0.12024683789326551],[127,-10,72,0.1181955076375708],[127,-10,73,0.11622353325035628],[127,-10,74,0.11433167269276401],[127,-10,75,0.11252053007718865],[127,-10,76,0.11079055007253269],[127,-10,77,0.10914201224352504],[127,-10,78,0.1075750253240596],[127,-10,79,0.10608952142457628],[127,-9,64,0.14142271710724286],[127,-9,65,0.13888451320149586],[127,-9,66,0.13641512739488182],[127,-9,67,0.13401624889101815],[127,-9,68,0.13168945171149016],[127,-9,69,0.12943618958453784],[127,-9,70,0.12725779076771848],[127,-9,71,0.12515545280460938],[127,-9,72,0.1231302372155395],[127,-9,73,0.12118306412241364],[127,-9,74,0.11931470680745593],[127,-9,75,0.11752578620610898],[127,-9,76,0.1158167653339025],[127,-9,77,0.11418794364738072],[127,-9,78,0.11263945133905306],[127,-9,79,0.11117124356638397],[127,-8,64,0.14605738870934237],[127,-8,65,0.1435548544716182],[127,-8,66,0.14111975648431618],[127,-8,67,0.13875378936626515],[127,-8,68,0.13645853390644092],[127,-8,69,0.13423545197429865],[127,-8,70,0.13208588136407973],[127,-8,71,0.1300110305731581],[127,-8,72,0.12801197351441707],[127,-8,73,0.12608964416271384],[127,-8,74,0.12424483113526819],[127,-8,75,0.1224781722062026],[127,-8,76,0.12079014875505178],[127,-8,77,0.11918108014933215],[127,-8,78,0.11765111806113182],[127,-8,79,0.11620024071774215],[127,-7,64,0.15064181191746462],[127,-7,65,0.14817499237889553],[127,-7,66,0.14577422607130208],[127,-7,67,0.14344121303052737],[127,-7,68,0.14117754081595546],[127,-7,69,0.1389846794425117],[127,-7,70,0.13686397624663826],[127,-7,71,0.13481665068630944],[127,-7,72,0.1328437890750751],[127,-7,73,0.13094633925019428],[127,-7,74,0.12912510517468978],[127,-7,75,0.12738074147355538],[127,-7,76,0.12571374790393186],[127,-7,77,0.12412446375934127],[127,-7,78,0.1226130622079441],[127,-7,79,0.12117954456483393],[127,-6,64,0.15517951512407158],[127,-6,65,0.15274844702511559],[127,-6,66,0.15038204823510837],[127,-6,67,0.14808202420791816],[127,-6,68,0.14584996927529226],[127,-6,69,0.14368736160054552],[127,-6,70,0.1415955580662246],[127,-6,71,0.13957578909580926],[127,-6,72,0.13762915340944615],[127,-6,73,0.13575661271376693],[127,-6,74,0.13395898632563152],[127,-6,75,0.13223694573002076],[127,-6,76,0.1305910090718988],[127,-6,77,0.12902153558213425],[127,-6,78,0.1275287199374412],[127,-6,79,0.12611258655435975],[127,-5,64,0.1596744304895541],[127,-5,65,0.15727914302394186],[127,-5,66,0.15494714028014311],[127,-5,67,0.15268013313039697],[127,-5,68,0.15047972267986587],[127,-5,69,0.1483473952420279],[127,-5,70,0.14628451724804215],[127,-5,71,0.14429233009015652],[127,-5,72,0.14237194489914085],[127,-5,73,0.14052433725580948],[127,-5,74,0.13875034183646695],[127,-5,75,0.13705064699250147],[127,-5,76,0.13542578926395077],[127,-5,77,0.13387614782712243],[127,-5,78,0.1324019388762383],[127,-5,79,0.13100320993911574],[127,-4,64,0.1641309057185859],[127,-4,65,0.16177142131366395],[127,-4,66,0.15947383658366976],[127,-4,67,0.15723986781902954],[127,-4,68,0.1550711228986369],[127,-4,69,0.15296909628695676],[127,-4,70,0.1509351639651072],[127,-4,71,0.1489705782959816],[127,-4,72,0.1470764628233957],[127,-4,73,0.14525380700532387],[127,-4,74,0.14350346088105947],[127,-4,75,0.14182612967252206],[127,-4,76,0.14022236831953605],[127,-4,77,0.13869257594916506],[127,-4,78,0.1372369902790691],[127,-4,79,0.13585568195489883],[127,-3,64,0.1685537159626065],[127,-3,65,0.16623005109655775],[127,-3,66,0.16396690057059848],[127,-3,67,0.16176598609277126],[127,-3,68,0.15962892231545123],[127,-3,69,0.15755721185417326],[127,-3,70,0.15555224024043712],[127,-3,71,0.1536152708085503],[127,-3,72,0.1517474395165005],[127,-3,73,0.1499497497009109],[127,-3,74,0.14822306676592545],[127,-3,75,0.14656811280623705],[127,-3,76,0.14498546116408728],[127,-3,77,0.14347553092032483],[127,-3,78,0.1420385813194821],[127,-3,79,0.14067470612889243],[127,-2,64,0.1729480758485189],[127,-2,65,0.17066024190494533],[127,-2,66,0.1684315368154452],[127,-2,67,0.16626368770486255],[127,-2,68,0.1641583159984229],[127,-2,69,0.1621169324622872],[127,-2,70,0.16014093217808512],[127,-2,71,0.1582315894514864],[127,-2,72,0.1563900526548001],[127,-2,73,0.1546173390036586],[127,-2,74,0.15291432926763082],[127,-2,75,0.1512817624149766],[127,-2,76,0.14972023019137626],[127,-2,77,0.14823017163271357],[127,-2,78,0.1468118675118828],[127,-2,79,0.14546543471963036],[127,-1,64,0.17731965163338637],[127,-1,65,0.17506765579373973],[127,-1,66,0.17287340327123624],[127,-1,67,0.17073862660661887],[127,-1,68,0.16866495399713688],[127,-1,69,0.16665390435883043],[127,-1,70,0.1647068823227953],[127,-1,71,0.16282517316548517],[127,-1,72,0.1610099376730425],[127,-1,73,0.1592622069397127],[127,-1,74,0.15758287710018903],[127,-1,75,0.15597270399609753],[127,-1,76,0.1544322977764574],[127,-1,77,0.15296211743219512],[127,-1,78,0.15156246526468176],[127,-1,79,0.15023348128830616],[127,0,64,0.18167457348524263],[127,0,65,0.1794584196595821],[127,0,66,0.17729862362547477],[127,0,67,0.1751969233387276],[127,0,68,0.17315495376778722],[127,0,69,0.17117424197775644],[127,0,70,0.16925620214839165],[127,0,71,0.16740213052613784],[127,0,72,0.165613200310192],[127,0,73,0.16389045647264955],[127,0,74,0.16223481051258226],[127,0,75,0.1606470351442557],[127,0,76,0.15912775891932174],[127,0,77,0.15767746078306533],[127,0,78,0.1562964645646745],[127,0,79,0.1549849334015454],[127,1,64,0.18601944789012315],[127,1,65,0.18383913768669013],[127,1,66,0.18171379978328117],[127,1,67,0.17964517755016574],[127,1,68,0.17763491272636478],[127,1,69,0.1756845405253996],[127,1,70,0.17379548467502204],[127,1,71,0.17196905239098137],[127,1,72,0.17020642928482366],[127,1,73,0.16850867420576876],[127,1,74,0.1668767140165217],[127,1,75,0.1653113383032242],[127,1,76,0.16381319401937922],[127,1,77,0.16238278006383178],[127,1,78,0.16102044179276986],[127,1,79,0.1597263654657658],[127,2,64,0.19904410694309715],[127,2,65,0.1969713294283828],[127,2,66,0.19494936781794558],[127,2,67,0.19297998172418895],[127,2,68,0.19106483319654788],[127,2,69,0.1892054818924349],[127,2,70,0.18740338018217162],[127,2,71,0.18565986818795632],[127,2,72,0.18397616875686207],[127,2,73,0.1823533823679122],[127,2,74,0.18079248197309616],[127,2,75,0.17929430777251754],[127,2,76,0.17785956192351937],[127,2,77,0.17648880318386528],[127,2,78,0.17518244148894124],[127,2,79,0.1739407324629958],[127,3,64,0.19904175305093597],[127,3,65,0.1969689907122545],[127,3,66,0.1949470447059638],[127,3,67,0.19297767463388382],[127,3,68,0.1910625425346647],[127,3,69,0.1892032080547441],[127,3,70,0.1874011235532913],[127,3,71,0.18565762914118633],[127,3,72,0.18397394765403075],[127,3,73,0.18235117955923685],[127,3,74,0.18079029779705502],[127,3,75,0.17929214255573656],[127,3,76,0.17785741598067228],[127,3,77,0.17648667681758767],[127,3,78,0.1751803349897586],[127,3,79,0.17393864610926701],[127,4,64,0.19903363834301346],[127,4,65,0.19696092832154366],[127,4,66,0.1949390361083253],[127,4,67,0.1929697212686935],[127,4,68,0.1910546458041189],[127,4,69,0.18919536932320535],[127,4,70,0.18739334414667552],[127,4,71,0.18564991034639133],[127,4,72,0.18396629071840898],[127,4,73,0.18234358569011144],[127,4,74,0.18078276816128203],[127,4,75,0.17928467827931283],[127,4,76,0.1778500181483903],[127,4,77,0.1764793464727401],[127,4,78,0.1751730731338914],[127,4,79,0.17393145370198249],[127,5,64,0.20335762384572498],[127,5,65,0.20132086756725154],[127,5,66,0.19933354685705984],[127,5,67,0.19739742661643256],[127,5,68,0.1955141755373242],[127,5,69,0.1936853612951761],[127,5,70,0.1919124456757202],[127,5,71,0.19019677963582315],[127,5,72,0.18853959829836475],[127,5,73,0.1869420158811964],[127,5,74,0.1854050205600447],[127,5,75,0.18392946926554932],[127,5,76,0.1825160824142832],[127,5,77,0.18116543857383005],[127,5,78,0.17987796906188935],[127,5,79,0.1786539524794193],[127,6,64,0.20766850526135605],[127,6,65,0.20566777955112436],[127,6,66,0.2037151096273413],[127,6,67,0.20181226566997001],[127,6,68,0.1999609230029391],[127,6,69,0.19816265730883442],[127,6,70,0.19641893977758385],[127,6,71,0.19473113218918703],[127,6,72,0.19310048193048102],[127,6,73,0.1915281169459918],[127,6,74,0.19001504062273467],[127,6,75,0.1885621266091514],[127,6,76,0.18717011356803448],[127,6,77,0.18583959986351295],[127,6,78,0.18457103818206733],[127,6,79,0.1833647300875899],[127,7,64,0.2119626211333887],[127,7,65,0.2099980203415185],[127,7,66,0.20808009873774247],[127,7,67,0.2062106317082839],[127,7,68,0.20439130113497395],[127,7,69,0.20262369063189434],[127,7,70,0.2009092807160181],[127,7,71,0.19924944391190202],[127,7,72,0.19764543979042093],[127,7,73,0.19609840994159222],[127,7,74,0.19460937288135738],[127,7,75,0.1931792188925039],[127,7,76,0.1918087047995819],[127,7,77,0.19049844867788646],[127,7,78,0.18924892449647657],[127,7,79,0.18806045669524496],[127,8,64,0.21623630794238025],[127,8,65,0.21430794234615835],[127,8,66,0.21242488326461129],[127,8,67,0.21058891120298695],[127,8,68,0.20880171451169915],[127,8,69,0.20706488464500505],[127,8,70,0.2053799113536927],[127,8,71,0.20374817781182664],[127,8,72,0.2021709556775444],[127,8,73,0.20064940008795107],[127,8,74,0.1991845445879794],[127,8,75,0.1977772959933981],[127,8,76,0.19642842918782444],[127,8,77,0.1951385818538085],[127,8,78,0.1939082491379649],[127,8,79,0.19273777825016136],[127,9,64,0.22048590348632402],[127,9,65,0.21859389773771898],[127,9,66,0.21674583051160512],[127,9,67,0.21494348733054502],[127,9,68,0.21318856290927912],[127,9,69,0.21148265643553843],[127,9,70,0.20982726678487928],[127,9,71,0.2082237876695856],[127,9,72,0.20667350272163476],[127,9,73,0.2051775805097713],[127,9,74,0.20373706949055903],[127,9,75,0.20235289289359049],[127,9,76,0.20102584354071196],[127,9,77,0.1997565785993336],[127,9,78,0.19854561426979433],[127,9,79,0.1973933204067979],[127,10,64,0.22470775020404143],[127,10,65,0.22285224182195562],[127,10,66,0.22103930942130978],[127,10,67,0.21927074342613317],[127,10,68,0.21754824479661905],[127,10,69,0.2158734203321815],[127,10,70,0.21424777790854832],[127,10,71,0.21267272164893747],[127,10,72,0.21114954702930966],[127,10,73,0.20967943591774396],[127,10,74,0.20826345154780612],[127,10,75,0.2069025334260879],[127,10,76,0.20559749217377676],[127,10,77,0.20434900430232417],[127,10,78,0.20315760692318474],[127,10,79,0.20202369239163753],[127,11,64,0.22889819844138526],[127,11,65,0.22707933634816335],[127,11,66,0.2253016939287198],[127,11,67,0.22356706637890678],[127,11,68,0.2218771607711968],[127,11,69,0.22023359138010146],[127,11,70,0.21863787494164721],[127,11,71,0.21709142584695018],[127,11,72,0.21559555126988705],[127,11,73,0.2141514462289037],[127,11,74,0.2127601885828374],[127,11,75,0.21142273396092748],[127,11,76,0.21013991062687098],[127,11,77,0.20891241427699925],[127,11,78,0.2077408027725396],[127,11,79,0.20662549080597914],[127,12,64,0.23305360966036937],[127,12,65,0.23127155276207506],[127,12,66,0.2295293662566944],[127,12,67,0.22782884996880226],[127,12,68,0.22617171693599536],[127,12,69,0.22455958875680437],[127,12,70,0.2229939908726798],[127,12,71,0.22147634778410497],[127,12,72,0.2200079782008213],[127,12,73,0.21859009012621622],[127,12,74,0.2172237758757456],[127,12,75,0.2159100070295651],[127,12,76,0.21464962931923115],[127,12,77,0.21344335744854082],[127,12,78,0.21229176984848086],[127,12,79,0.2111953033663011],[127,13,64,0.23717035959132637],[127,13,65,0.23542527540130742],[127,13,66,0.23371872015349543],[127,13,67,0.23205249814497142],[127,13,68,0.23042832821764492],[127,13,69,0.22884783912879192],[127,13,70,0.2273125648556954],[127,13,71,0.2258239398344356],[127,13,72,0.22438329413282276],[127,13,73,0.22299184855751397],[127,13,74,0.22165070969519485],[127,13,75,0.220360864887992],[127,13,76,0.21912317714298357],[127,13,77,0.21793837997587362],[127,13,78,0.21680707218880335],[127,13,79,0.21572971258230844],[127,14,64,0.24124484132786916],[127,14,65,0.2395369046331245],[127,14,66,0.2378661640721768],[127,14,67,0.2362344282456234],[127,14,68,0.23464342162553936],[127,14,69,0.2330947799487858],[127,14,70,0.23159004554444995],[127,14,71,0.23013066259546855],[127,14,72,0.2287179723344206],[127,14,73,0.22735320817353677],[127,14,74,0.22603749076880408],[127,14,75,0.22477182301833176],[127,14,76,0.2235570849948445],[127,14,77,0.22239402881237214],[127,14,78,0.2212832734271033],[127,14,79,0.2202252993724213],[127,15,64,0.2452734683648461],[127,15,65,0.24360285993471187],[127,15,66,0.24196812429202158],[127,15,67,0.24037107415946518],[127,15,68,0.23881343945212752],[127,15,69,0.23729686269371292],[127,15,70,0.2358228943669417],[127,15,71,0.23439298819816268],[127,15,72,0.23300849637617116],[127,15,73,0.23167066470527875],[127,15,74,0.23038062769251544],[127,15,75,0.2291394035691242],[127,15,76,0.22794788924622422],[127,15,77,0.22680685520469923],[127,15,78,0.22571694031929124],[127,15,79,0.2246786466169074],[127,16,64,0.24925267757914926],[127,16,65,0.24761958291582048],[127,16,66,0.24602104798188024],[127,16,67,0.2444588894285984],[127,16,68,0.2429348424142294],[127,16,69,0.24145055604331017],[127,16,70,0.2400075887401707],[127,16,71,0.2386074035567003],[127,16,72,0.23725136341436215],[127,16,73,0.23594072628049723],[127,16,74,0.23467664027880308],[127,16,75,0.23346013873414606],[127,16,76,0.23229213515157876],[127,16,77,0.23117341812962922],[127,16,78,0.2301046462078311],[127,16,79,0.22908634264850958],[127,17,64,0.2531789321535613],[127,17,65,0.25158354028396324],[127,17,66,0.2500214062056005],[127,17,67,0.24849435029306038],[127,17,68,0.24700411273557232],[127,17,69,0.24555234899953743],[127,17,70,0.24414062522531726],[127,17,71,0.24277041355832507],[127,17,72,0.24144308741440917],[127,17,73,0.24015991667957348],[127,17,74,0.23892206284391915],[127,17,75,0.23773057406996334],[127,17,76,0.23658638019521272],[127,17,77,0.2354902876690501],[127,17,78,0.2344429744239126],[127,17,79,0.23344498468076813],[127,18,64,0.2570487244434188],[127,18,65,0.2554912267519474],[127,18,66,0.25396569686932463],[127,18,67,0.2524739586767862],[127,18,68,0.25101775717031627],[127,18,69,0.2495987539465701],[127,18,70,0.24821852262311028],[127,18,71,0.24687854419299454],[127,18,72,0.24558020231371064],[127,18,73,0.24432477853049694],[127,18,74,0.24311344743393737],[127,18,75,0.24194727175198572],[127,18,76,0.2408271973762941],[127,18,77,0.23975404832290992],[127,18,78,0.23872852162731106],[127,18,79,0.23775118217379676],[127,19,64,0.2608585787862035],[127,19,65,0.25933916788784694],[127,19,66,0.25785044761076203],[127,19,67,0.25639424511509995],[127,19,68,0.2549723099676827],[127,19,69,0.2535863096514865],[127,19,70,0.25223782500949443],[127,19,71,0.2509283456229601],[127,19,72,0.2496592651240761],[127,19,73,0.24843187644308284],[127,19,74,0.24724736698971495],[127,19,75,0.24610681376912863],[127,19,76,0.2450111784321961],[127,19,77,0.2439613022602216],[127,19,78,0.24295790108405768],[127,19,79,0.24200156013763163],[127,20,64,0.26460505425415204],[127,20,65,0.2631239229075137],[127,20,66,0.26167221863053763],[127,20,67,0.26025177162383395],[127,20,68,0.2588643357777832],[127,20,69,0.25751158420574466],[127,20,70,0.2561951047117009],[127,20,71,0.2549163951923777],[127,20,72,0.2536768589738287],[127,20,73,0.25247780008253023],[127,20,74,0.25132041845087205],[127,20,75,0.2502058050571977],[127,20,76,0.24913493700027112],[127,20,77,0.2481086725082336],[127,20,78,0.24712774588202102],[127,20,79,0.24619276237325682],[127,21,64,0.2682847473496903],[127,21,65,0.26684208740942655],[127,21,66,0.2654276054654096],[127,21,67,0.26404313450987327],[127,21,68,0.26269043249844415],[127,21,69,0.26137117790724596],[127,21,70,0.2600869652245109],[127,21,71,0.25883930037673475],[127,21,72,0.25762959608937164],[127,21,73,0.25645916718210227],[127,21,74,0.2553292257985769],[127,21,75,0.25424087657077116],[127,21,76,0.25319511171784276],[127,21,77,0.25219280607954714],[127,21,78,0.25123471208418374],[127,21,79,0.25032145465109035],[127,22,64,0.27189429464379317],[127,22,65,0.2704902960519816],[127,22,66,0.2691132417034661],[127,22,67,0.26776496712322895],[127,22,68,0.26644723406313314],[127,22,69,0.26516172608309124],[127,22,70,0.2639100440668185],[127,22,71,0.2626937016722092],[127,22,72,0.2615141207163263],[127,22,73,0.2603726264950448],[127,22,74,0.25927044303724556],[127,22,75,0.258208688293698],[127,22,76,0.25718836926052346],[127,22,77,0.2562103770372916],[127,22,78,0.2552754818197273],[127,22,79,0.25438432782704024],[127,23,64,0.2754303753573593],[127,23,65,0.274065225173317],[127,23,66,0.2727258016413893],[127,23,67,0.2714139425507359],[127,23,68,0.27013141317008244],[127,23,69,0.2688799018531229],[127,23,70,0.26766101557859323],[127,23,71,0.26647627542504854],[127,23,72,0.26532711198034203],[127,23,73,0.2642148606858371],[127,23,74,0.2631407571152571],[127,23,75,0.2621059321883075],[127,23,76,0.26111140731896115],[127,23,77,0.2601580894984624],[127,23,78,0.25924676631302446],[127,23,79,0.25837810089623475],[127,24,64,0.278889713885415],[127,24,65,0.27756359535347847],[127,24,66,0.2762620028835966],[127,24,67,0.274986776251179],[127,24,68,0.27373968395241066],[127,24,69,0.2725224188340584],[127,24,70,0.2713365936580375],[127,24,71,0.27018373660077666],[127,24,72,0.269065286687373],[127,24,73,0.26798258916057194],[127,24,74,0.26693689078447796],[127,24,75,0.26592933508312544],[127,24,76,0.26496095751380677],[127,24,77,0.26403268057520807],[127,24,78,0.263145308850332],[127,24,79,0.2622995239842167],[127,25,64,0.2822690822642429],[127,25,65,0.28098217391902913],[127,25,66,0.27971860888335903],[127,25,67,0.27848022863194954],[127,25,68,0.27726880458934966],[127,25,69,0.27608603378431534],[127,25,70,0.2749335344390481],[127,25,71,0.2738128414933264],[127,25,72,0.2727254020635276],[127,25,73,0.271672570836573],[127,25,74,0.27065560539870176],[127,25,75,0.2696756614992041],[127,25,76,0.2687337882490088],[127,25,77,0.2678309232541786],[127,25,78,0.26696788768429014],[127,25,79,0.2661453812757079],[127,26,64,0.28556530258152185],[127,26,65,0.28431777739018543],[127,26,66,0.28309243142598245],[127,26,67,0.2818911075673206],[127,26,68,0.2807155798586589],[127,26,69,0.2795675491896194],[127,26,70,0.2784486389090673],[127,26,71,0.277360390374192],[127,26,72,0.2763042584345841],[127,26,73,0.27528160685133873],[127,26,74,0.27429370365109906],[127,26,75,0.27334171641515925],[127,26,76,0.2724267075035321],[127,26,77,0.27154962921402853],[127,26,78,0.27071131887632666],[127,26,79,0.26991249388104416],[127,27,64,0.2887752493292999],[127,27,65,0.2875672738703016],[127,27,66,0.2863803330538713],[127,27,67,0.2852162708581551],[127,27,68,0.2840768636300484],[127,27,69,0.2829638157892063],[127,27,70,0.28187875546713725],[127,27,71,0.2808232300814114],[127,27,72,0.2797987018449779],[127,27,73,0.27880654321062276],[127,27,74,0.2778480322504805],[127,27,75,0.2769243479707188],[127,27,76,0.2760365655613013],[127,27,77,0.27518565158087516],[127,27,78,0.27437245907676433],[127,27,79,0.27359772264007626],[127,28,64,0.2918958516998932],[127,28,65,0.2907275853777975],[127,28,66,0.2895792294335694],[127,28,67,0.288452628633146],[127,28,68,0.2873495612997021],[127,28,69,0.2862717350427183],[127,28,70,0.28522078242225773],[127,28,71,0.28419825654847586],[127,28,72,0.2832056266163636],[127,28,73,0.28224427337574903],[127,28,74,0.28131548453647776],[127,28,75,0.28042045010888605],[127,28,76,0.27956025767947257],[127,28,77,0.2787358876218195],[127,28,78,0.27794820824273675],[127,28,79,0.27719797086364517],[127,29,64,0.29492409582478973],[127,29,65,0.2937956901206061],[127,29,66,0.29268609166485776],[127,29,67,0.2915971456916683],[127,29,68,0.2905306321659871],[127,29,69,0.28948826153787544],[127,29,70,0.28847167043212674],[127,29,71,0.2874824172732539],[127,29,72,0.28652197784583505],[127,29,73,0.2855917407902504],[127,29,74,0.28469300303372697],[127,29,75,0.2838269651568028],[127,29,76,0.28299472669512366],[127,29,77,0.2821972813766135],[127,29,78,0.2814355122940024],[127,29,79,0.28071018701271927],[127,30,64,0.2978570269563912],[127,30,65,0.2967686247129768],[127,30,66,0.29569794853174136],[127,30,67,0.29464684378806943],[127,30,68,0.29361709174617384],[127,30,69,0.29261040533874755],[127,30,70,0.29162842488209245],[127,30,71,0.2906727137267489],[127,30,72,0.2897447538436241],[127,30,73,0.2888459413456474],[127,30,74,0.28797758194487144],[127,30,75,0.28714088634513163],[127,30,76,0.2863369655701731],[127,30,77,0.28556682622729146],[127,30,78,0.2848313657064676],[127,30,79,0.28413136731500427],[127,31,64,0.30069175159268363],[127,31,65,0.2996434863347214],[127,31,66,0.2986118886954119],[127,31,67,0.2975988038574942],[127,31,68,0.2966060140342597],[127,31,69,0.2956352342747218],[127,31,70,0.29468810820440583],[127,31,71,0.29376620370178724],[127,31,72,0.2928710085103748],[127,31,73,0.29200392578646334],[127,31,74,0.2911662695824837],[127,31,75,0.29035926026605113],[127,31,76,0.2895840198746307],[127,31,77,0.28884156740586153],[127,31,78,0.288132814043519],[127,31,79,0.2874585583191283],[127,32,64,0.30342543954490286],[127,32,65,0.30241743483297295],[127,32,66,0.3014250628292631],[127,32,67,0.30045016818331105],[127,32,68,0.2994945336999703],[127,32,69,0.2985598761702366],[127,32,70,0.2976478421378522],[127,32,71,0.29676000360171195],[127,32,72,0.2958978536540673],[127,32,73,0.2950628020545559],[127,32,74,0.29425617073998134],[127,32,75,0.2934791892699464],[127,32,76,0.2927329902082571],[127,32,77,0.2920186044401387],[127,32,78,0.2913369564252469],[127,32,79,0.2906888593864804],[127,33,64,0.30605532594804763],[127,33,65,0.3050876947663084],[127,33,66,0.3041346856957984],[127,33,67,0.3031981425059877],[127,33,68,0.30227984822877824],[127,33,69,0.3013815210151247],[127,33,70,0.30050480992759915],[127,33,71,0.2996512906689173],[127,33,72,0.29882246124642947],[127,33,73,0.2980197375725943],[127,33,74,0.29724444900137087],[127,33,75,0.2964978338006235],[127,33,76,0.2957810345604601],[127,33,77,0.29509509353754815],[127,33,78,0.294440947935384],[127,33,79,0.29381942512053133],[127,34,64,0.3085787132143202],[127,34,65,0.307651557391312],[127,34,66,0.3067380381655186],[127,34,67,0.3058399980734979],[127,34,68,0.30495922000302694],[127,34,69,0.3040974230756511],[127,34,70,0.3032562584653456],[127,34,71,0.3024373051533149],[127,34,72,0.3016420656189218],[127,34,73,0.30087196146677603],[127,34,74,0.3001283289899101],[127,34,75,0.29941241466913837],[127,34,76,0.29872537060852344],[127,34,77,0.2980682499069881],[127,34,78,0.2974420019660554],[127,34,79,0.2968474677337263],[127,35,64,0.31099297292955436],[127,35,65,0.3101063825916468],[127,35,66,0.30923246917785174],[127,35,67,0.30837307363332445],[127,35,68,0.30752997832422313],[127,35,69,0.3067049029463094],[127,35,70,0.3058995003698439],[127,35,71,0.3051153524207957],[127,35,72,0.3043539655983665],[127,35,73,0.30361676672884896],[127,35,74,0.3029050985557563],[127,35,75,0.3022202152663135],[127,35,76,0.3015632779542347],[127,35,77,0.3009353500188286],[127,35,78,0.30033739250040936],[127,35,79,0.299770259352027],[127,36,64,0.3132955476924996],[127,36,65,0.312449600749494],[127,36,66,0.3116153976439842],[127,36,67,0.31079477736591826],[127,36,68,0.30998952137635527],[127,36,69,0.3092013495422372],[127,36,70,0.30843191600764225],[127,36,71,0.3076828050015438],[127,36,72,0.3069555265820706],[127,36,73,0.3062515123172896],[127,36,74,0.305572110902452],[127,36,75,0.30491858371378466],[127,36,76,0.30429210029876114],[127,36,77,0.3036937338028856],[127,36,78,0.30312445633297386],[127,36,79,0.30258513425694106],[127,37,64,0.3154839528970312],[127,37,65,0.31467871455943713],[127,37,66,0.31388431429167224],[127,37,67,0.3131025887596882],[127,37,68,0.31233531813031706],[127,37,69,0.31158422203232244],[127,37,70,0.31085095545413305],[127,37,71,0.3101371045782785],[127,37,72,0.3094441825525226],[127,37,73,0.3087736251977191],[127,37,74,0.30812678665232596],[127,37,75,0.30750493495366454],[127,37,76,0.306909247555854],[127,37,77,0.30634080678445724],[127,37,78,0.30580059522782216],[127,37,79,0.30528949106512476],[127,38,64,0.3175557784573419],[127,38,65,0.31679130078484335],[127,38,66,0.31603678345208563],[127,38,67,0.3152940604275808],[127,38,68,0.31456491018949106],[127,38,69,0.3138510517130649],[127,38,70,0.3131541403949621],[127,38,71,0.31247576391448667],[127,38,72,0.31181743803172673],[127,38,73,0.31118060232261746],[127,38,74,0.31056661585087647],[127,38,75,0.3099767527768838],[127,38,76,0.30941219790344754],[127,38,77,0.3088740421584865],[127,38,78,0.3083632780146129],[127,38,79,0.30788079484562697],[127,39,64,0.3195086904759901],[127,39,65,0.31878501195661624],[127,39,66,0.3180704447885577],[127,39,67,0.3173668198651152],[127,39,68,0.3166759135763609],[127,39,69,0.31599944382305406],[127,39,70,0.3153390659676624],[127,39,71,0.31469636872250756],[127,39,72,0.3140728699750298],[127,39,73,0.31347001255019563],[127,39,74,0.31288915990998895],[127,39,75,0.31233159179006514],[127,39,76,0.31179849977350504],[127,39,77,0.3112909828017002],[127,39,78,0.3108100426223561],[127,39,79,0.31035657917462023],[127,40,64,0.32134043285490843],[127,40,65,0.32065757801442685],[127,40,66,0.3199830149673478],[127,40,67,0.3193185711499877],[127,40,68,0.318666020460264],[127,40,69,0.31802707929817825],[127,40,70,0.31740340254363086],[127,40,71,0.31679657947158296],[127,40,72,0.31620812960456396],[127,40,73,0.3156394985025429],[127,40,74,0.3150920534901118],[127,40,75,0.3145670793210537],[127,40,76,0.3140657737802343],[127,40,77,0.31358924322285253],[127,40,78,0.3131384980510292],[127,40,79,0.312714448127749],[127,41,64,0.3230488288493036],[127,41,65,0.3224068078903499],[127,41,66,0.3217722892703442],[127,41,67,0.32114709658316765],[127,41,68,0.32053300082620767],[127,41,69,0.3199317164674879],[127,41,70,0.31934489745036354],[127,41,71,0.3187741331357983],[127,41,72,0.3182209441822195],[127,41,73,0.31768677836296977],[127,41,74,0.3171730063213068],[127,41,75,0.3166809172630169],[127,41,76,0.3162117145865901],[127,41,77,0.31576651145098317],[127,41,78,0.31534632628095854],[127,41,79,0.31495207821000565],[127,42,64,0.3246317825645293],[127,42,65,0.32403059103499215],[127,42,66,0.3234361431497941],[127,42,67,0.3228502582715754],[127,42,68,0.3222747040848407],[127,42,69,0.3217111926898047],[127,42,70,0.32116137663405003],[127,42,71,0.3206268448820058],[127,42,72,0.32010911872224923],[127,42,73,0.31960964761264443],[127,42,74,0.31912980496327276],[127,42,75,0.3186708838572197],[127,42,76,0.3182340927091637],[127,42,77,0.31782055086179833],[127,42,78,0.3174312841200696],[127,42,79,0.3170672202232409],[127,43,64,0.3260872803958349],[127,43,65,0.3255268988860096],[127,43,66,0.32497253372495666],[127,43,67,0.3244259996522369],[127,43,68,0.3238890606234712],[127,43,69,0.323363425930968],[127,43,70,0.32285074626241034],[127,43,71,0.3223526096976186],[127,43,72,0.3218705376433864],[127,43,73,0.3214059807064035],[127,43,74,0.3209603145042261],[127,43,75,0.3205348354143497],[127,43,76,0.32013075626134024],[127,43,77,0.3197492019420466],[127,43,78,0.31939120498888196],[127,43,79,0.3190577010711832],[127,44,64,0.32741339241104167],[127,44,65,0.3268937862790698],[127,44,66,0.3263795012207373],[127,44,67,0.32587234695796985],[127,44,68,0.32537408329819034],[127,44,69,0.3248864162817751],[127,44,70,0.32441099426783593],[127,44,71,0.3239494039583357],[127,44,72,0.3235031663605377],[127,44,73,0.3230737326878036],[127,44,74,0.3226624801986984],[127,44,75,0.32227070797445984],[127,44,76,0.3218996326347849],[127,44,77,0.32155038399195895],[127,44,78,0.32122400064331535],[127,44,79,0.32092142550203173],[127,45,64,0.328608273676178],[127,45,65,0.3281293928012904],[127,45,66,0.32765517034833025],[127,45,67,0.3271874106246376],[127,45,68,0.3267278688671336],[127,45,69,0.32627824741665323],[127,45,70,0.32584019183087165],[127,45,71,0.3254152869358341],[127,45,72,0.32500505281609093],[127,45,73,0.32461094074344704],[127,45,74,0.32423432904429333],[127,45,75,0.3238765189055673],[127,45,76,0.3235387301193028],[127,45,77,0.32322209676579233],[127,45,78,0.3229276628353476],[127,45,79,0.32265637778866896],[127,46,64,0.32967016552399864],[127,46,65,0.3292319440870747],[127,46,66,0.32879775162779734],[127,46,67,0.32836938663988596],[127,46,68,0.3279485993647994],[127,46,69,0.32753708799297643],[127,46,70,0.3271364948039493],[127,46,71,0.32674840224534096],[127,46,72,0.3263743289507442],[127,46,73,0.32601572569649495],[127,46,74,0.325673971297307],[127,46,75,0.3253503684408126],[127,46,76,0.32504613946097305],[127,46,77,0.32476242205037853],[127,46,78,0.324500264911427],[127,46,79,0.324260623346389],[127,47,64,0.33059739676543193],[127,47,65,0.33019975305639493],[127,47,66,0.3298055426526241],[127,47,67,0.3294165578334154],[127,47,68,0.3290345434174727],[127,47,69,0.32866119299107793],[127,47,70,0.3282981450754276],[127,47,71,0.3279469792331362],[127,47,72,0.32760921211391325],[127,47,73,0.32728629343941823],[127,47,74,0.326979601927268],[127,47,75,0.3266904411542372],[127,47,76,0.32642003535861414],[127,47,77,0.32616952518173725],[127,47,78,0.3259399633486949],[127,47,79,0.3257323102882014],[127,48,64,0.33138838484397715],[127,48,65,0.3310312210955385],[127,48,66,0.330676929296278],[127,48,67,0.3303272951088081],[127,48,68,0.32998405749977644],[127,48,69,0.32964890499498334],[127,48,70,0.32932347187396],[127,48,71,0.32900933430401386],[127,48,72,0.3287080064137408],[127,48,73,0.3284209363060143],[127,48,74,0.3281495020104249],[127,48,75,0.3278950073752051],[127,48,76,0.32765867789861186],[127,48,77,0.32744165649978213],[127,48,78,0.32724499922905126],[127,48,79,0.3270696709177441],[127,49,64,0.3320416369329935],[127,49,65,0.3317248391802647],[127,49,66,0.33141038686071034],[127,49,67,0.33110005861684944],[127,49,68,0.3307955871322906],[127,49,69,0.3304986554137984],[127,49,70,0.3302108930131276],[127,49,71,0.32993387218863096],[127,49,72,0.32966910400663874],[127,49,73,0.32941803438262146],[127,49,74,0.3291820400621083],[127,49,75,0.32896242454139796],[127,49,76,0.3287604139280311],[127,49,77,0.32857715274104304],[127,49,78,0.32841369965098477],[127,49,79,0.3282710231597217],[127,50,64,0.33255575097592],[127,50,65,0.3322791889414065],[127,50,66,0.33200448116683623],[127,50,67,0.3317333988703845],[127,50,68,0.3314676680202757],[127,50,69,0.33120896564379365],[127,50,70,0.3309589160763751],[127,50,71,0.33071908715078946],[127,50,72,0.3304909863264084],[127,50,73,0.33027605675856886],[127,50,74,0.3300756733080119],[127,50,75,0.32989113849042484],[127,50,76,0.3297236783660603],[127,50,77,0.329574438369452],[127,50,78,0.3294444790792117],[127,50,79,0.3293347719279204],[127,51,64,0.3329294166694329],[127,51,65,0.3326929436729267],[127,51,66,0.33245786958700796],[127,51,67,0.33222595780071895],[127,51,68,0.33199892713351453],[127,51,69,0.33177844817119856],[127,51,70,0.3315661395422673],[127,51,71,0.3313635641346652],[127,51,72,0.33117222525295165],[127,51,73,0.3309935627158857],[127,51,74,0.3308289488944119],[127,51,75,0.3306796846900696],[127,51,76,0.3305469954538071],[127,51,77,0.33043202684521195],[127,51,78,0.33033584063215027],[127,51,79,0.33025941043082013],[127,52,64,0.333161416389506],[127,52,65,0.33296486928239405],[127,52,66,0.33276930201943833],[127,52,67,0.3325764697555251],[127,52,68,0.33238808372723144],[127,52,69,0.33220580761566054],[127,52,70,0.33203125385001864],[127,52,71,0.3318659798519349],[127,52,72,0.331711484220527],[127,52,73,0.3315692028582147],[127,52,74,0.3314405050372693],[127,52,75,0.33132668940711885],[127,52,76,0.33122897994238837],[127,52,77,0.33114852183169236],[127,52,78,0.3310863773071658],[127,52,79,0.331043521414744],[127,53,64,0.333250626060403],[127,53,65,0.33309382518390435],[127,53,66,0.3329376218046074],[127,53,67,0.3327837624382831],[127,53,68,0.3326339503041161],[127,53,69,0.332489841714402],[127,53,70,0.3323530424053277],[127,53,71,0.3322251038088369],[127,53,72,0.33210751926558185],[127,53,73,0.3320017201789639],[127,53,74,0.3319090721102542],[127,53,75,0.331830870814807],[127,53,76,0.3317683382193537],[127,53,77,0.3317226183403875],[127,53,78,0.3316947731436291],[127,53,79,0.33168577834458374],[127,54,64,0.333196015966594],[127,54,65,0.3330787651334465],[127,54,66,0.33296176658364757],[127,54,67,0.332846757789255],[127,54,68,0.3327354335174556],[127,54,69,0.33262944224707436],[127,54,70,0.3325303825265206],[127,54,71,0.33243979927316714],[127,54,72,0.3323591800141664],[127,54,73,0.33228995106870624],[127,54,74,0.33223347367169426],[127,54,75,0.332191040038887],[127,54,76,0.33216386937344816],[127,54,77,0.33215310381394847],[127,54,78,0.33215980432379666],[127,54,79,0.33218494652211095],[127,55,64,0.33299665150758867],[127,55,65,0.3329187380066974],[127,55,66,0.332840769098692],[127,55,67,0.33276447280797616],[127,55,68,0.332691535015353],[127,55,69,0.33262359590128987],[127,55,70,0.3325622463309781],[127,55,71,0.3325090241811849],[127,55,72,0.33246541060890267],[127,55,73,0.33243282626179227],[127,55,74,0.33241262743041994],[127,55,75,0.3324061021422922],[127,55,76,0.3324144661976815],[127,55,77,0.33243885914725174],[127,55,78,0.3324803402114733],[127,55,79,0.3325398841418382],[127,56,64,0.33265169389569893],[127,56,65,0.33261288851926374],[127,56,66,0.3325737579352056],[127,56,67,0.33253602031728],[127,56,68,0.33250135222605287],[127,56,69,0.3324713850788495],[127,56,70,0.33244770156186804],[127,56,71,0.3324318319844525],[127,56,72,0.332425250575529],[127,56,73,0.3324293717222052],[127,56,74,0.3324455461505297],[127,56,75,0.3324750570484166],[127,56,76,0.33251911613072954],[127,56,77,0.33257885964653067],[127,56,78,0.33265534432848887],[127,56,79,0.3327495432844539],[127,57,64,0.3321604007967168],[127,57,65,0.33216045788935644],[127,57,66,0.3321599582062826],[127,57,67,0.3321606096688467],[127,57,68,0.33216407908436213],[127,57,69,0.3321719886426583],[127,57,70,0.33218591235517597],[127,57,71,0.3322073724365975],[127,57,72,0.3322378356290172],[127,57,73,0.33227870946864835],[127,57,74,0.33233133849506924],[127,57,75,0.33239700040300857],[127,57,76,0.33247690213666503],[127,57,77,0.33257217592657007],[127,57,78,0.3326838752689838],[127,57,79,0.3328129708478346],[127,58,64,0.3315221269135191],[127,58,65,0.33156078444290504],[127,58,66,0.33159869217892],[127,58,67,0.3316375473902782],[127,58,68,0.3316790066991694],[127,58,69,0.33172468260432875],[127,58,70,0.3317761399470296],[127,58,71,0.33183489231999863],[127,58,72,0.3319023984192533],[127,58,73,0.33198005833886013],[127,58,74,0.3320692098086191],[127,58,75,0.33217112437466745],[127,58,76,0.33228700352300533],[127,58,77,0.33241797474594703],[127,58,78,0.33256508755149083],[127,58,79,0.3327293094156154],[127,59,64,0.33073632451260104],[127,59,65,0.3308133041611206],[127,59,66,0.33088937984227285],[127,59,67,0.33096623777370826],[127,59,68,0.3310455239620711],[127,59,69,0.3311288407524803],[127,59,70,0.33121774332133],[127,59,71,0.33131373611240234],[127,59,72,0.33141826921629625],[127,59,73,0.3315327346931698],[127,59,74,0.3316584628388004],[127,59,75,0.33179671839395825],[127,59,76,0.33194869669709237],[127,59,77,0.3321155197803372],[127,59,78,0.33229823240882783],[127,59,79,0.3324977980633364],[127,60,64,0.32980254389351504],[127,60,65,0.3299175511704771],[127,60,66,0.33003153941786423],[127,60,67,0.3301461834059246],[127,60,68,0.3302631180970816],[127,60,69,0.33038393522171594],[127,60,70,0.3305101797976681],[127,60,71,0.3306433465934535],[127,60,72,0.3307848765351965],[127,60,73,0.3309361530572744],[127,60,74,0.331098498396686],[127,60,75,0.3312731698311283],[127,60,76,0.3314613558607913],[127,60,77,0.3316641723338704],[127,60,78,0.331882658515791],[127,60,79,0.33211777310215446],[127,61,64,0.3287204338012466],[127,61,65,0.32887315817514745],[127,61,66,0.32902478781178446],[127,61,67,0.3291769856400283],[127,61,68,0.3293313751514535],[127,61,69,0.3294895370022968],[127,61,70,0.3296530055595474],[127,61,71,0.32982326539115947],[127,61,72,0.3300017477003896],[127,61,73,0.3301898267042558],[127,61,74,0.33038881595612835],[127,61,75,0.33059996461243923],[127,61,76,0.3308244536435162],[127,61,77,0.3310633919885453],[127,61,78,0.3313178126546541],[127,61,79,0.3315886687601239],[127,62,64,0.3274897417815199],[127,62,65,0.32767985683188505],[127,62,66,0.3278688410088685],[127,62,67,0.32805834500862896],[127,62,68,0.328249980427604],[127,62,69,0.3284453163905138],[127,62,70,0.32864587612291374],[127,62,71,0.32885313346828504],[127,62,72,0.3290685093496688],[127,62,73,0.32929336817583565],[127,62,74,0.3295290141920082],[127,62,75,0.3297766877751154],[127,62,76,0.33003756167358933],[127,62,77,0.330312737191709],[127,62,78,0.3306032403184782],[127,62,79,0.3309100178010538],[127,63,64,0.32611031447899685],[127,63,65,0.3263374780673143],[127,63,66,0.3265635144088218],[127,63,67,0.3267900615785394],[127,63,68,0.32701871885611433],[127,63,69,0.32725104337972455],[127,63,70,0.3274885467449574],[127,63,71,0.3277326915486513],[127,63,72,0.3279848878777043],[127,63,73,0.328246489742844],[127,63,74,0.32851879145737567],[127,63,75,0.32880302396088423],[127,63,76,0.3291003510879069],[127,63,77,0.3294118657815741],[127,63,78,0.3297385862522126],[127,63,79,0.3300814520809197],[127,64,64,0.32458209787842857],[127,64,65,0.3248459523376914],[127,64,66,0.3251087231043455],[127,64,67,0.3253720352470247],[127,64,68,0.3256374753098551],[127,64,69,0.32590658799210404],[127,64,70,0.32618087277323926],[127,64,71,0.3264617804833805],[127,64,72,0.32675070981915466],[127,64,73,0.32704900380493973],[127,64,74,0.3273579461995233],[127,64,75,0.327678757848146],[127,64,76,0.32801259297994695],[127,64,77,0.32836053545081156],[127,64,78,0.3287235949316127],[127,64,79,0.32910270304185746],[127,65,64,0.32290513748871086],[127,65,65,0.32320530983108275],[127,65,66,0.3235044821012185],[127,65,67,0.32380426597956075],[127,65,68,0.32410623485919227],[127,65,69,0.32441192055106843],[127,65,70,0.3247228099350967],[127,65,71,0.3250403415570522],[127,65,72,0.32536590217133365],[127,65,73,0.3257008232295494],[127,65,74,0.32604637731495967],[127,65,75,0.32640377452273994],[127,65,76,0.3267741587860906],[127,65,77,0.3271586041481853],[127,65,78,0.32755811097995496],[127,65,79,0.32797360214371696],[127,66,64,0.32107957846988805],[127,66,65,0.3214156806120093],[127,66,66,0.32175090648037885],[127,66,67,0.3220868539891446],[127,66,68,0.32242508296831823],[127,66,69,0.3227671118944121],[127,66,70,0.3231144145673744],[127,66,71,0.32346841673380644],[127,66,72,0.3238304926564683],[127,66,73,0.3242019616300612],[127,66,74,0.32458408444331477],[127,66,75,0.3249780597873422],[127,66,76,0.3253850206102884],[127,66,77,0.3258060304182656],[127,66,78,0.3262420795225723],[127,66,79,0.3266940812332022],[127,67,64,0.31910566570303267],[127,67,65,0.31947729470848385],[127,67,66,0.3198482115019311],[127,67,67,0.32021999985708727],[127,67,68,0.3205942056326361],[127,67,69,0.3209723335280913],[127,67,70,0.3213558437864078],[127,67,71,0.32174614884333075],[127,67,72,0.322144609923488],[127,67,73,0.3225525335832115],[127,67,74,0.3229711682001228],[127,67,75,0.3234017004094365],[127,67,76,0.3238452514870147],[127,67,77,0.3243028736791629],[127,67,78,0.3247755464791618],[127,67,79,0.32526417285054854],[127,68,64,0.31698374380308825],[127,68,65,0.3173904821415247],[127,68,66,0.3177967126511688],[127,68,67,0.31820400459537146],[127,68,68,0.3186138894572822],[127,68,69,0.31902785772073383],[127,68,70,0.3194473555983426],[127,68,71,0.31987378170680775],[127,68,72,0.320308483689416],[127,68,73,0.32075275478573717],[127,68,74,0.3212078303485466],[127,68,75,0.3216748843079261],[127,68,76,0.322155025582579],[127,68,77,0.32264929443834667],[127,68,78,0.32315865879392597],[127,68,79,0.3236840104737948],[127,69,64,0.3147142570746421],[127,69,65,0.3151556728971184],[127,69,66,0.3155968256265762],[127,69,67,0.3160392696505439],[127,69,68,0.31648452167675345],[127,69,69,0.31693405753884507],[127,69,70,0.31738930894975914],[127,69,71,0.3178516602027938],[127,69,72,0.3183224448203389],[127,69,73,0.3188029421502674],[127,69,74,0.3192943739100246],[127,69,75,0.3197979006783645],[127,69,76,0.32031461833476715],[127,69,77,0.3208455544465296],[127,69,78,0.3213916646035236],[127,69,79,0.3219538287006327],[127,70,64,0.3122977494105652],[127,70,65,0.31277339684056316],[127,70,66,0.3132490662697498],[127,70,67,0.3137262968490818],[127,70,68,0.31420659011558255],[127,70,69,0.3146914068226528],[127,70,70,0.3151821637185438],[127,70,71,0.31568023027297426],[127,70,72,0.31618692535189724],[127,70,73,0.31670351384040046],[127,70,74,0.3172312032137826],[127,70,75,0.31777114005674867],[127,70,76,0.3183244065307652],[127,70,77,0.31889201678956336],[127,70,78,0.3194749133427851],[127,70,79,0.32007396336778393],[127,71,64,0.309734864133626],[127,71,65,0.31024428357330536],[127,71,66,0.31075405043734433],[127,71,67,0.31126568828433443],[127,71,68,0.3117806830901599],[127,71,69,0.3123004801026873],[127,71,70,0.3128264806451059],[127,71,71,0.31336003886788855],[127,71,72,0.31390245844939],[127,71,73,0.3144549892450573],[127,71,74,0.31501882388530095],[127,71,75,0.31559509432196614],[127,71,76,0.31618486832344717],[127,71,77,0.31678914591843144],[127,71,78,0.3174088557882694],[127,71,79,0.31804485160798196],[127,72,64,0.3070263437810359],[127,72,65,0.3075690622322196],[127,72,66,0.30811249381499894],[127,72,67,0.3086581461450016],[127,72,68,0.3092074892516623],[127,72,69,0.3097619524570613],[127,72,70,0.3103229212038998],[127,72,71,0.3108917338325881],[127,72,72,0.31146967830745775],[127,72,73,0.3120579888920742],[127,72,74,0.31265784277370284],[127,72,75,0.31327035663685976],[127,72,76,0.3138965831859972],[127,72,77,0.3145375076173061],[127,72,78,0.31519404403963497],[127,72,79,0.31586703184453413],[127,73,64,0.30417302983184813],[127,73,65,0.3047485612312625],[127,73,66,0.3053252116731725],[127,73,67,0.30590447248507147],[127,73,68,0.30648779737001713],[127,73,69,0.3070765993093729],[127,73,70,0.30767224741518373],[127,73,71,0.3082760637321589],[127,73,72,0.30888931998927394],[127,73,73,0.30951323430096933],[127,73,74,0.31014896781799633],[127,73,75,0.3107976213278449],[127,73,76,0.31146023180479887],[127,73,77,0.31213776890960654],[127,73,78,0.3128311314387596],[127,73,79,0.3135411437233955],[127,74,64,0.30117586237734445],[127,74,65,0.30178370794562803],[127,74,66,0.3023931185650129],[127,74,67,0.303005568935349],[127,74,68,0.30362249605902486],[127,74,69,0.30424529616735996],[127,74,70,0.3048753215971342],[127,74,71,0.30551387761722437],[127,74,72,0.306162219205364],[127,74,73,0.3068215477749968],[127,74,74,0.30749300785228373],[127,74,75,0.3081776837031903],[127,74,76,0.30887659591070343],[127,74,77,0.30959069790216487],[127,74,78,0.3103208724267158],[127,74,79,0.3110679279828642],[127,75,64,0.2980358797343515],[127,75,65,0.2986755283383484],[127,75,66,0.2993172279662086],[127,75,67,0.2999624363565172],[127,75,68,0.30061257344258874],[127,75,69,0.30126901830225006],[127,75,70,0.3019331060582663],[127,75,71,0.30260612472938364],[127,75,72,0.3032893120320006],[127,75,73,0.3039838521324415],[127,75,74,0.3046908723498916],[127,75,75,0.3054114398099179],[127,75,76,0.30614655804862895],[127,75,77,0.306897163567457],[127,75,78,0.3076641223385596],[127,75,79,0.3084482262608523],[127,76,64,0.2947542180014002],[127,76,65,0.2954251465292562],[127,76,66,0.29609865185673623],[127,76,67,0.2967761744336497],[127,76,68,0.2974591167619679],[127,76,69,0.29814884036872513],[127,76,70,0.29884666273007887],[127,76,71,0.2995538541464987],[127,76,72,0.300271634569097],[127,76,73,0.30100117037707463],[127,76,74,0.30174357110634287],[127,76,75,0.3024998861292431],[127,76,76,0.30327110128541834],[127,76,77,0.3040581354638217],[127,76,78,0.3048618371358564],[127,76,79,0.30568298083966006],[127,77,64,0.2913321105578841],[127,77,65,0.2920337843064593],[127,77,66,0.2927386002446547],[127,77,67,0.2934479812123234],[127,77,68,0.29416331192420075],[127,77,69,0.2948859359656471],[127,77,70,0.2956171527400674],[127,77,71,0.2963582143679789],[127,77,72,0.29711032253773956],[127,77,73,0.29787462530790937],[127,77,74,0.29865221386130864],[127,77,75,0.29944411921069036],[127,77,76,0.3002513088560853],[127,77,77,0.30107468339380156],[127,77,78,0.3019150730770746],[127,77,79,0.30277323432838177],[127,78,64,0.2877708875061466],[127,78,65,0.2885027605802615],[127,78,66,0.2892383806318809],[127,78,67,0.28997915257626383],[127,78,68,0.2907264429916351],[127,78,69,0.2914815771374797],[127,78,70,0.2922458359250419],[127,78,71,0.2930204528399946],[127,78,72,0.2938066108172952],[127,78,73,0.2946054390681957],[127,78,74,0.29541800985947875],[127,78,75,0.29624533524482727],[127,78,76,0.2970883637483932],[127,78,77,0.2979479770005454],[127,78,78,0.2988249863257912],[127,78,79,0.2997201292828868],[127,79,64,0.2840719750564018],[127,79,65,0.2848334907794343],[127,79,66,0.28559939742185014],[127,79,67,0.28637108166643244],[127,79,68,0.2871498916124706],[127,79,69,0.28793713381631414],[127,79,70,0.2887340702846589],[127,79,71,0.2895419154205349],[127,79,72,0.290361832922008],[127,79,73,0.29119493263356716],[127,79,74,0.29204226735026617],[127,79,75,0.29290482957452824],[127,79,76,0.29378354822567954],[127,79,77,0.29467928530219134],[127,79,78,0.2955928324966249],[127,79,79,0.2965249077632945],[127,80,64,0.2802368948546644],[127,80,65,0.281027486190011],[127,80,66,0.28182315126923585],[127,80,67,0.28262525824172274],[127,80,68,0.28343513639248347],[127,80,69,0.28425407320466656],[127,80,70,0.2850833113753329],[127,80,71,0.2859240457844682],[127,80,72,0.28677742041724397],[127,80,73,0.28764452523949674],[127,80,74,0.28852639302649896],[127,80,75,0.289423996144925],[127,80,76,0.29033824328808144],[127,80,77,0.29126997616437966],[127,80,78,0.29221996613904705],[127,80,79,0.2931889108290901],[127,81,64,0.2762672632536073],[127,81,65,0.2770863532365275],[127,81,66,0.27791123837164755],[127,81,67,0.27874326798119053],[127,81,68,0.2795837522078558],[127,81,69,0.2804339590989707],[127,81,70,0.28129511164445087],[127,81,71,0.28216838476853556],[127,81,72,0.2830549022753113],[127,81,73,0.28395573374799254],[127,81,74,0.2848718914020336],[127,81,75,0.28580432689197477],[127,81,76,0.2867539280720921],[127,81,77,0.287721515710829],[127,81,78,0.2887078401590049],[127,81,79,0.28971357797181635],[127,82,64,0.2721647905262444],[127,82,65,0.2730117927056024],[127,82,66,0.2738653497032063],[127,82,67,0.2747267917277153],[127,82,68,0.275597409459009],[127,82,69,0.2764784511536657],[127,82,70,0.27737111970479256],[127,82,71,0.27827656965617525],[127,82,72,0.2791959041707601],[127,82,73,0.28013017195343504],[127,82,74,0.28108036412818915],[127,82,75,0.2820474110695472],[127,82,76,0.2830321791883539],[127,82,77,0.2840354676718816],[127,82,78,0.28505800517826124],[127,82,79,0.2861004464852484],[127,83,64,0.2679312800226305],[127,83,65,0.26880559891205136],[127,83,66,0.26968727019018757],[127,83,67,0.2705776046732802],[127,83,68,0.27147787326562767],[127,83,69,0.2723893040860639],[127,83,70,0.2733130795493383],[127,83,71,0.2742503334023625],[127,83,72,0.27520214771533835],[127,83,73,0.27616954982773306],[127,83,74,0.27715350924918125],[127,83,75,0.27815493451521],[127,83,76,0.2791746699978616],[127,83,77,0.28021349267118933],[127,83,78,0.28127210883162324],[127,83,79,0.28235115077321987],[127,84,64,0.2635686272694919],[127,84,65,0.2644696588074477],[127,84,66,0.2653788778286442],[127,84,67,0.2662975754857877],[127,84,68,0.2672270026027906],[127,84,69,0.2681683668219168],[127,84,70,0.26912282970638335],[127,84,71,0.27009150379838076],[127,84,72,0.2710754496325275],[127,84,73,0.272075672704722],[127,84,74,0.2730931203964776],[127,84,75,0.27412867885463066],[127,84,76,0.27518316982649843],[127,84,77,0.2762573474504641],[127,84,78,0.2773518950019827],[127,84,79,0.2784674215950258],[127,85,64,0.25907881901266827],[127,85,65,0.26000595103101126],[127,85,66,0.2609421427438947],[127,85,67,0.2618886653772936],[127,85,68,0.2628467493780929],[127,85,69,0.26381758158156204],[127,85,70,0.26480230233484325],[127,85,71,0.26580200257641423],[127,85,72,0.2668177208715419],[127,85,73,0.26785044040368866],[127,85,74,0.2689010859219619],[127,85,75,0.26997052064448784],[127,85,76,0.2710595431177958],[127,85,77,0.2721688840321838],[127,85,78,0.27329920299306315],[127,85,79,0.27445108524829626],[127,86,64,0.25446393220258584],[127,86,65,0.2554165449030429],[127,86,66,0.2563791261920906],[127,86,67,0.2573529271138727],[127,86,68,0.25833915744997116],[127,86,69,0.2593389829068645],[127,86,70,0.26035352225996095],[127,86,71,0.2613838444541656],[127,86,72,0.26243096566099955],[127,86,73,0.26349584629223116],[127,86,74,0.2645793879701107],[127,86,75,0.2656824304540908],[127,86,76,0.26680574852411554],[127,86,77,0.2679500488204529],[127,86,78,0.26911596664006526],[127,86,79,0.2703040626895342],[127,87,64,0.2497261329226572],[127,87,65,0.25070359936080366],[127,87,66,0.25169197950376276],[127,87,67,0.2526925039670175],[127,87,68,0.2537063615871338],[127,87,69,0.2547346966288521],[127,87,70,0.2557786059493172],[127,87,71,0.2568391361194058],[127,87,72,0.25791728050216967],[127,87,73,0.2590139762883548],[127,87,74,0.26013010148908877],[127,87,75,0.2612664718856154],[127,87,76,0.2624238379361641],[127,87,77,0.2636028816399248],[127,87,78,0.26480421335812554],[127,87,79,0.26602836859222795],[127,88,64,0.24486767526048603],[127,88,65,0.24586936183671426],[127,88,66,0.24688294296922506],[127,88,67,0.24790962860644766],[127,88,68,0.24895058636897424],[127,88,69,0.25000693877592584],[127,88,70,0.2510797604290252],[127,88,71,0.2521700751543343],[127,88,72,0.2532788531016747],[127,88,73,0.25440700780169007],[127,88,74,0.25555539318064563],[127,88,75,0.2567248005328399],[127,88,76,0.25791595545072077],[127,88,77,0.2591295147126718],[127,88,78,0.2603660631284694],[127,88,79,0.2616261103424256],[127,89,64,0.23989090012212438],[127,89,65,0.24091616707912292],[127,89,66,0.24195434466607788],[127,89,67,0.2430066219345731],[127,89,68,0.24407414502720975],[127,89,69,0.24515801442288498],[127,89,70,0.2462592821403476],[127,89,71,0.24737894889998918],[127,89,72,0.24851796124388803],[127,89,73,0.2496772086140649],[127,89,74,0.25085752038904624],[127,89,75,0.2520596628786116],[127,89,76,0.2532843362768117],[127,89,77,0.2545321715732309],[127,89,78,0.2558037274224882],[127,89,79,0.2570994869719957],[127,90,64,0.23479823398917338],[127,90,65,0.23584643591543264],[127,90,66,0.2369085992286092],[127,90,67,0.23798589186240707],[127,90,68,0.239079438228542],[127,90,69,0.2401903164805651],[127,90,70,0.24131955573653624],[127,90,71,0.2424681332605062],[127,90,72,0.24363697160282494],[127,90,73,0.24482693569923392],[127,90,74,0.24603882992884107],[127,90,75,0.24727339513084984],[127,90,76,0.2485313055801347],[127,90,77,0.2498131659216331],[127,90,78,0.2511195080635486],[127,90,79,0.2524507880293852],[127,91,64,0.22959218761889127],[127,91,65,0.23066267395775253],[127,91,66,0.23174820655925246],[127,91,67,0.2328499320270901],[127,91,68,0.2339689527985006],[127,91,69,0.235106324426249],[127,91,70,0.23626305282005228],[127,91,71,0.23744009144738448],[127,91,72,0.23863833849368493],[127,91,73,0.23985863398192347],[127,91,74,0.24110175685162832],[127,91,75,0.2423684219972403],[127,91,76,0.24365927726589037],[127,91,77,0.2449749004145692],[127,91,78,0.24631579602668457],[127,91,79,0.2476823923880247],[127,92,64,0.2242753546870803],[127,92,65,0.22536747025084392],[127,92,66,0.22647575048187452],[127,92,67,0.2276013204507984],[127,92,68,0.228745260386243],[127,92,69,0.22990860297462473],[127,92,70,0.2310923306199435],[127,92,71,0.23229737266353867],[127,92,72,0.23352460256382568],[127,92,73,0.2347748350359684],[127,92,74,0.23604882315159265],[127,92,75,0.23734725539840257],[127,92,76,0.23867075269980076],[127,92,77,0.24001986539447656],[127,92,78,0.2413950701759618],[127,92,79,0.2427967669921695],[127,93,64,0.2188504103740247],[127,93,65,0.21996349586263325],[127,93,66,0.22109389733716572],[127,93,67,0.2222427181413057],[127,93,68,0.22341101607058023],[127,93,69,0.22459980068955987],[127,93,70,0.22581003060964572],[127,93,71,0.22704261072739884],[127,93,72,0.22829838942343028],[127,93,73,0.22957815572180645],[127,93,74,0.23088263641007772],[127,93,75,0.2322124931197893],[127,93,76,0.23356831936757516],[127,93,77,0.23495063755680284],[127,93,78,0.23635989593976375],[127,93,79,0.2377964655404286],[127,94,64,0.21332010989335598],[127,94,65,0.21445350241716882],[127,94,66,0.21560539452000776],[127,94,67,0.21677686763407805],[127,94,68,0.21796895690710683],[127,94,69,0.21918264853656966],[127,94,70,0.22041887706508656],[127,94,71,0.22167852263694215],[127,94,72,0.22296240821574914],[127,94,73,0.2242712967632085],[127,94,74,0.2256058883790779],[127,94,75,0.22696681740220104],[127,94,76,0.22835464947270528],[127,94,77,0.22976987855533104],[127,94,78,0.23121292392388926],[127,94,79,0.23268412710686703],[127,95,64,0.20768728696370226],[127,95,65,0.2088403205698774],[127,95,66,0.21001306895867738],[127,95,67,0.21120659147575727],[127,95,68,0.21242190041629183],[127,95,69,0.21365995837583818],[127,95,70,0.2149216755629521],[127,95,71,0.21620790707351317],[127,95,72,0.2175194501267771],[127,95,73,0.21885704126310918],[127,95,74,0.22022135350350847],[127,95,75,0.22161299347077956],[127,95,76,0.2230324984724545],[127,95,77,0.22448033354543123],[127,95,78,0.22595688846232453],[127,95,79,0.2274624746995486],[127,96,64,0.2019548522233962],[127,96,65,0.20312685842539635],[127,96,66,0.20431982553615846],[127,96,67,0.20553479064930646],[127,96,68,0.20677274301280457],[127,96,69,0.2080346213960631],[127,96,70,0.20932131141938426],[127,96,71,0.21063364284570163],[127,96,72,0.21197238683463326],[127,96,73,0.21333825315879906],[127,96,74,0.2147318873825192],[127,96,75,0.21615386800274017],[127,96,76,0.21760470355230016],[127,96,77,0.2190848296654957],[127,96,78,0.2205946061059459],[127,96,79,0.22213431375677428],[127,97,64,0.196125791588112],[127,97,65,0.19731609989784876],[127,97,66,0.19852864545343463],[127,97,67,0.19976444294068907],[127,97,68,0.2010244583759438],[127,97,69,0.20230960648899482],[127,97,70,0.20362074806898262],[127,97,71,0.20495868727315225],[127,97,72,0.20632416889851446],[127,97,73,0.20771787561635757],[127,97,74,0.20914042516972708],[127,97,75,0.2105923675337204],[127,97,76,0.2120741820387072],[127,97,77,0.21358627445643752],[127,97,78,0.21512897404903492],[127,97,79,0.21670253058089456],[127,98,64,0.19020316455127623],[127,98,65,0.1914111030134118],[127,98,66,0.19264258453460703],[127,98,67,0.19389860124692693],[127,98,68,0.19518009576102063],[127,98,69,0.19648795856452056],[127,98,70,0.19782302538395924],[127,98,71,0.19918607451015347],[127,98,72,0.20057782408707736],[127,98,73,0.20199892936417307],[127,98,74,0.2034499799122187],[127,98,75,0.20493149680259876],[127,98,76,0.20644392975008669],[127,98,77,0.20798765421910514],[127,98,78,0.20956296849345757],[127,98,79,0.21117009070955395],[127,99,64,0.18419010242754702],[127,99,65,0.18541499815546603],[127,99,66,0.18666477147413058],[127,99,67,0.18794039182583056],[127,99,68,0.18924277825198332],[127,99,69,0.19057279680657907],[127,99,70,0.19193125793373306],[127,99,71,0.19331891380929378],[127,99,72,0.19473645564652886],[127,99,73,0.19618451096583667],[127,99,74,0.19766364082860516],[127,99,75,0.19917433703506],[127,99,76,0.2007170192862156],[127,99,77,0.2022920323098908],[127,99,78,0.20389964295078516],[127,99,79,0.20554003722463843],[127,100,64,0.1780898065392203],[127,100,65,0.17933098625219157],[127,100,66,0.1805984060260294],[127,100,67,0.1818930124872603],[127,100,68,0.1832157009551461],[127,100,69,0.1845673128697714],[127,100,70,0.18594863318482868],[127,100,71,0.18736038772504782],[127,100,72,0.18880324050829317],[127,100,73,0.190277791032274],[127,100,74,0.1917845715259942],[127,100,75,0.19332404416577803],[127,100,76,0.19489659825598854],[127,100,77,0.19650254737440082],[127,100,78,0.19814212648222446],[127,100,79,0.19981548899879836],[127,101,64,0.1719055463454049],[127,101,65,0.173162336906445],[127,101,66,0.17444675713492963],[127,101,67,0.1757597307257615],[127,101,68,0.17710212913386397],[127,101,69,0.17847476901650727],[127,101,70,0.17987840964091995],[127,101,71,0.1813137502571358],[127,101,72,0.1827814274360965],[127,101,73,0.18428201237295805],[127,101,74,0.1858160081557269],[127,101,75,0.1873838469990592],[127,101,76,0.188985887443345],[127,101,77,0.19062241151903486],[127,101,78,0.1922936218762067],[127,101,79,0.19399963887939337],[127,102,64,0.16564065751427076],[127,102,65,0.16691238646822948],[127,102,66,0.16821316100922],[127,102,67,0.16954388179487717],[127,102,68,0.17090539628445667],[127,102,69,0.17229849619499105],[127,102,70,0.17372391492332195],[127,102,71,0.17518232493395652],[127,102,72,0.17667433511277064],[127,102,73,0.17820048808650307],[127,102,74,0.17976125750817185],[127,102,75,0.1813570453082421],[127,102,76,0.18298817891166774],[127,102,77,0.1846549084207666],[127,102,78,0.18635740376392457],[127,102,79,0.18809575181015098],[127,103,64,0.1592985399382264],[127,103,65,0.16058453604960754],[127,103,66,0.1619010191361882],[127,103,67,0.16324886672299294],[127,103,68,0.16462890215323656],[127,103,69,0.16604189205790204],[127,103,70,0.16748854379178474],[127,103,71,0.1689695028359508],[127,103,72,0.17048535016663058],[127,103,73,0.1720365995904944],[127,103,74,0.1736236950464385],[127,103,75,0.17524700787371256],[127,103,76,0.1769068340465107],[127,103,77,0.17860339137498504],[127,103,78,0.18033681667267842],[127,103,79,0.1821071628903973],[127,104,64,0.15288265569185644],[127,104,65,0.15418224948189152],[127,104,66,0.15551379623897205],[127,104,67,0.1568781502705487],[127,104,68,0.15827611069447634],[127,104,69,0.15970841892160537],[127,104,70,0.1611757561054286],[127,104,71,0.16267874055873122],[127,104,72,0.16421792513726546],[127,104,73,0.16579379459039634],[127,104,74,0.16740676287884687],[127,104,75,0.16905717045937413],[127,104,76,0.17074528153649782],[127,104,77,0.17247128128124034],[127,104,78,0.1742352730168753],[127,104,79,0.17603727537170583],[127,105,64,0.1463965269329408],[127,105,65,0.14770905121543126],[127,105,66,0.14905501817564143],[127,105,67,0.15043525882893433],[127,105,68,0.15185054796963177],[127,105,69,0.153301601666208],[127,105,70,0.15478907472413111],[127,105,71,0.15631355811629244],[127,105,72,0.1578755763810527],[127,105,73,0.1594755849878437],[127,105,74,0.16111396767046227],[127,105,75,0.16279103372788034],[127,105,76,0.1645070152926979],[127,105,77,0.166262064567195],[127,105,78,0.1680562510269814],[127,105,79,0.1698895585922643],[127,106,64,0.13984373374640108],[127,106,65,0.141168524161844],[127,106,66,0.1425282697802574],[127,106,67,0.14392377826091746],[127,106,68,0.14535579998766812],[127,106,69,0.14682502557630872],[127,106,70,0.14833208335021747],[127,106,71,0.14987753678415094],[127,106,72,0.15146188191624715],[127,106,73,0.15308554472817243],[127,106,74,0.15474887849354835],[127,106,75,0.15645216109448262],[127,106,76,0.15819559230632935],[127,106,77,0.1599792910506378],[127,106,78,0.1618032926162848],[127,106,79,0.16366754584881454],[127,107,64,0.13322791193100236],[127,107,65,0.13456430747851866],[127,107,66,0.13593719264574067],[127,107,67,0.13734735168243212],[127,107,68,0.1387955104863211],[127,107,69,0.14028233412227342],[127,107,70,0.14180842431028612],[127,107,71,0.14337431688224594],[127,107,72,0.1449804792074773],[127,107,73,0.14662730758701897],[127,107,74,0.14831512461677054],[127,107,75,0.15004417651932722],[127,107,76,0.15181463044463012],[127,107,77,0.15362657173939415],[127,107,78,0.1554800011853038],[127,107,79,0.15737483220600462],[127,108,64,0.12655275072914307],[127,108,65,0.12790009429572052],[127,108,66,0.1292854828488751],[127,108,67,0.13070967718605697],[127,108,68,0.1321733786546183],[127,108,69,0.13367722668236093],[127,108,70,0.1352217962774916],[127,108,71,0.1368075954979266],[127,108,72,0.13843506288997098],[127,108,73,0.14010456489631296],[127,108,74,0.14181639323347195],[127,108,75,0.14357076223852078],[127,108,76,0.14536780618520928],[127,108,77,0.1472075765694496],[127,108,78,0.14909003936415594],[127,108,79,0.1510150722434639],[127,109,64,0.11982199049956888],[127,109,65,0.12117962938614013],[127,109,66,0.1225768886172901],[127,109,67,0.12401450550602666],[127,109,68,0.12549315679650486],[127,109,69,0.12701345620554372],[127,109,70,0.1285759519341319],[127,109,71,0.13018112414886762],[127,109,72,0.13182938243335596],[127,109,73,0.13352106320950585],[127,109,74,0.1352564271288651],[127,109,75,0.1370356564338111],[127,109,76,0.1388588522887294],[127,109,77,0.14072603208113565],[127,109,78,0.14263712669273604],[127,109,79,0.14459197774045274],[127,110,64,0.11303942033284126],[127,110,65,0.114406706776709],[127,110,66,0.11581520793824596],[127,110,67,0.11726563762459663],[127,110,68,0.11875864793539648],[127,110,69,0.1202948268148466],[127,110,70,0.12187469557436359],[127,110,71,0.1234987063857424],[127,110,72,0.12516723974486116],[127,110,73,0.12688060190586442],[127,110,74,0.1286390222859698],[127,110,75,0.13044265084071038],[127,110,76,0.13229155540974646],[127,110,77,0.13418571903320453],[127,110,78,0.1361250372385348],[127,110,79,0.13810931529791726],[127,111,64,0.10620887560989511],[127,111,65,0.10758516730302337],[127,111,66,0.10900428610955926],[127,111,67,0.11046692232010619],[127,111,68,0.11197370336000084],[127,111,69,0.1135251913515436],[127,111,70,0.11512188064738138],[127,111,71,0.1167641953349865],[127,111,72,0.11845248671225456],[127,111,73,0.12018703073416226],[127,111,74,0.12196802543062962],[127,111,75,0.12379558829539433],[127,111,76,0.12566975364603955],[127,111,77,0.12759046995512596],[127,111,78,0.1295575971524242],[127,111,79,0.1315709038982737],[127,112,64,0.09933423550352322],[127,112,65,0.10071889610620954],[127,112,66,0.10214801323250788],[127,112,67,0.10362225365656907],[127,112,68,0.10514222011124041],[127,112,69,0.10670844886004655],[127,112,70,0.10832140724090084],[127,112,71,0.10998149118148925],[127,112,72,0.11168902268635311],[127,112,73,0.11344424729560743],[127,112,74,0.11524733151544209],[127,112,75,0.11709836022021375],[127,112,76,0.11899733402626794],[127,112,77,0.12094416663744245],[127,112,78,0.12293868216225029],[127,112,79,0.12498061240276603],[127,113,64,0.09241942042260837],[127,113,65,0.09381182007205385],[127,113,66,0.09525032164653319],[127,113,67,0.09673556841461889],[127,113,68,0.09826813841010024],[127,113,69,0.09984854201331078],[127,113,70,0.10147721950476457],[127,113,71,0.1031545385910389],[127,113,72,0.10488079190293209],[127,113,73,0.10665619446582975],[127,113,74,0.10848088114243248],[127,113,75,0.11035490404764753],[127,113,76,0.11227822993578462],[127,113,77,0.11425073756001175],[127,113,78,0.11627221500406265],[127,113,79,0.11834235698622497],[127,114,64,0.08546838939947143],[127,114,65,0.08686790521276344],[127,114,66,0.08831518330610827],[127,114,67,0.08981084346417317],[127,114,68,0.09135543902676735],[127,114,69,0.09294945447912006],[127,114,70,0.09459330301503799],[127,114,71,0.0962873240728821],[127,114,72,0.0980317808443919],[127,114,73,0.09982685775629158],[127,114,74,0.1016726579248291],[127,114,75,0.10356920058305208],[127,114,76,0.10551641848096094],[127,114,77,0.1075141552584935],[127,114,78,0.1095621627913349],[127,114,79,0.11166009850958014],[127,115,64,0.07848513742002516],[127,115,65,0.07989115399105007],[127,115,66,0.08134660709946556],[127,115,67,0.08285209307850766],[127,115,68,0.08440814059075236],[127,115,69,0.08601520822694692],[127,115,70,0.08767368207828857],[127,115,71,0.0893838732820934],[127,115,72,0.09114601554088214],[127,115,73,0.09296026261481538],[127,115,74,0.09482668578763492],[127,115,75,0.09674527130590865],[127,115,76,0.0987159177917235],[127,115,77,0.10073843362877921],[127,115,78,0.10281253432187692],[127,115,79,0.10493783982983029],[127,116,64,0.07147369269697051],[127,116,65,0.07288560258677157],[127,116,66,0.074348636109415],[127,116,67,0.07586336618997813],[127,116,68,0.07743029684223018],[127,116,69,0.07904986077562004],[127,116,70,0.08072241697628063],[127,116,71,0.08244824826198976],[127,116,72,0.08422755881111244],[127,116,73,0.08606047166546227],[127,116,74,0.08794702620723238],[127,116,75,0.08988717560979803],[127,116,76,0.09188078426253321],[127,116,77,0.09392762516959474],[127,116,78,0.09602737732266714],[127,116,79,0.0981796230476979],[127,117,64,0.06443811388571463],[127,117,65,0.06585531810581258],[127,117,66,0.06732534481593594],[127,117,67,0.06884874358706783],[127,117,68,0.07042599382427883],[127,117,69,0.07205750238148201],[127,117,70,0.07374360115076983],[127,117,71,0.07548454462626752],[127,117,72,0.0772805074425344],[127,117,73,0.07913158188744457],[127,117,74,0.08103777538970164],[127,117,75,0.08299900798078852],[127,117,76,0.0850151097314929],[127,117,77,0.08708581816296446],[127,117,78,0.08921077563229635],[127,117,79,0.09138952669265793],[127,118,64,0.05738248724339262],[127,118,65,0.058804395731583414],[127,118,66,0.06028083624092484],[127,118,67,0.061812335053143486],[127,118,68,0.06339934701639799],[127,118,69,0.06504225316741696],[127,118,70,0.06674135832877526],[127,118,71,0.06849688868124876],[127,118,72,0.07030898931127433],[127,118,73,0.07217772173345022],[127,118,74,0.0741030613882307],[127,118,75,0.0760848951146117],[127,118,76,0.07812301859795634],[127,118,77,0.08021713379290829],[127,118,78,0.08236684632138996],[127,118,79,0.08457166284571238],[127,119,64,0.05031092373081092],[127,119,65,0.05173695581895721],[127,119,66,0.053219239034913546],[127,119,67,0.0547582764467357],[127,119,68,0.05635449840912521],[127,119,69,0.05800826019256444],[127,119,70,0.05971983958814808],[127,119,71,0.061489434488045946],[127,119,72,0.06331716044163044],[127,119,73,0.06520304818719685],[127,119,74,0.06714704115943448],[127,119,75,0.06914899297244648],[127,119,76,0.07120866487846172],[127,119,77,0.07332572320219327],[127,119,78,0.07549973675083566],[127,119,79,0.07773017419973016],[127,120,64,0.04322755605713369],[127,120,65,0.04465714093046713],[127,120,66,0.0461447045055825],[127,120,67,0.047690726723169374],[127,120,68,0.04929561351957301],[127,120,69,0.05095969446254789],[127,120,70,0.052683220363261174],[127,120,71,0.054466360864479035],[127,120,72,0.05630920200496875],[127,120,73,0.058211743760043844],[127,120,74,0.06017389755841518],[127,120,75,0.06219548377514017],[127,120,76,0.06427622920081522],[127,120,77,0.06641576448696807],[127,120,78,0.0686136215676395],[127,120,79,0.07086923105718512],[127,121,64,0.03613653566767189],[127,121,65,0.037569112815121375],[127,121,66,0.039061403588428245],[127,121,67,0.0406138648978997],[127,121,68,0.042226878348243235],[127,121,69,0.04390074788056669],[127,121,70,0.04563569739117396],[127,121,71,0.04743186832709195],[127,121,72,0.04928931725835983],[127,121,73,0.05120801342701098],[127,121,74,0.05318783627290624],[127,121,75,0.05522857293621253],[127,121,76,0.05732991573667401],[127,121,77,0.05949145962962876],[127,121,78,0.06171269963876347],[127,121,79,0.06399302826563524],[127,122,64,0.029042029674595626],[127,122,65,0.030477049329657446],[127,122,66,0.03197352375940271],[127,122,67,0.033531886951373546],[127,122,68,0.035152496276941],[127,122,69,0.036835630139182896],[127,122,70,0.03858148559809771],[127,122,71,0.040390175973095355],[127,122,72,0.04226172842279108],[127,122,73,0.044196081502034135],[127,122,74,0.046193082696334375],[127,122,75,0.048252485933473976],[127,122,76,0.05037394907245585],[127,122,77,0.052557031369741325],[127,122,78,0.054801190922766585],[127,122,79,0.057105782090771995],[127,123,64,0.02194821773038741],[127,123,65,0.023385141302053658],[127,123,66,0.024885265889348085],[127,123,67,0.02644900267524164],[127,123,68,0.028076684907608174],[127,123,69,0.029768565552612647],[127,123,70,0.031524814925976696],[127,123,71,0.03334551830205701],[127,123,72,0.03523067350076681],[127,123,73,0.03718018845227056],[127,123,74,0.039193878739612886],[127,123,75,0.04127146511907387],[127,123,76,0.043412571018396684],[127,123,77,0.04561672001284478],[127,123,78,0.04788333327907557],[127,123,79,0.05021172702686416],[127,124,64,0.0148592888443988],[127,124,65,0.016297589337661678],[127,124,66,0.017800841040581994],[127,124,67,0.019369432460273117],[127,124,68,0.021003672842433874],[127,124,69,0.02270378982989041],[127,124,70,0.02446992709954865],[127,124,71,0.026302141977691873],[127,124,72,0.028200403033657562],[127,124,73,0.030164587651816954],[127,124,74,0.0321944795820267],[127,124,75,0.034289766468337035],[127,124,76,0.03645003735610808],[127,124,77,0.03867478017748638],[127,124,78,0.040963379215234186],[127,124,79,0.04331511254494269],[127,125,64,0.007779438142331174],[127,125,65,0.009218600567776236],[127,125,66,0.01072446720546083],[127,125,67,0.012297404025801262],[127,125,68,0.013937696405066924],[127,125,69,0.015645546788721654],[127,125,70,0.017421072333704157],[127,125,71,0.019264302529583777],[127,125,72,0.0211751767986208],[127,125,73,0.023153542074661693],[127,125,74,0.025199150361031597],[127,125,75,0.02731165626721377],[127,125,76,0.029490614524463332],[127,125,77,0.031735477480314134],[127,125,78,0.0340455925719616],[127,125,79,0.03642019977856048],[127,126,64,7.128635684573448E-4],[127,126,65,0.0021523853404639137],[127,126,66,0.003660365986732139],[127,126,67,0.005237149090513538],[127,126,68,0.006882996302744915],[127,126,69,0.008598085009843381],[127,126,70,0.010382505980962464],[127,126,71,0.012236260994645476],[127,126,72,0.014159260444910227],[127,126,73,0.01615132092668803],[127,126,74,0.018212162800785747],[127,126,75,0.020341407738156403],[127,126,76,0.02253857624362876],[127,126,77,0.024803085159050497],[127,126,78,0.02713424514583407],[127,126,79,0.029531258146938688],[127,127,64,-0.006336237469055317],[127,127,65,-0.0048968461459895085],[127,127,66,-0.0033872407799566684],[127,127,67,-0.001807100015051466],[127,127,68,-1.5618577029807845E-4],[127,127,69,0.0015656544322560917],[127,127,70,0.0033584851194251586],[127,127,71,0.005222280498688225],[127,127,72,0.007156922069934901],[127,127,73,0.009162196217089691],[127,127,74,0.01123779177977291],[127,127,75,0.013383297604790068],[127,127,76,0.015598200077596602],[127,127,77,0.01788188063369478],[127,127,78,0.02023361324995021],[127,127,79,0.022652561915863068],[127,128,64,-0.01336367150989537],[127,128,65,-0.011924887267193207],[127,128,66,-0.010414134461577351],[127,128,67,-0.00883111379447754],[127,128,68,-0.00717561058832239],[127,128,69,-0.005447497110857347],[127,128,70,-0.0036467349189697185],[127,128,71,-0.0017733772220864807],[127,128,72,1.72428734887764E-4],[127,128,73,0.002190439269017852],[127,128,74,0.004280311837337902],[127,128,75,0.006441602595188667],[127,128,76,0.008673763935045375],[127,128,77,0.010976142005787448],[127,128,78,0.013347974212400748],[127,128,79,0.01578838669614635],[127,129,64,-0.020365252510617715],[127,129,65,-0.0189275384545039],[127,129,66,-0.017416103121445148],[127,129,67,-0.01583066909009978],[127,129,68,-0.01417104490865595],[127,129,69,-0.012437127415698024],[127,129,70,-0.010628904080077217],[127,129,71,-0.008746455359846528],[127,129,72,-0.006789957080232334],[127,129,73,-0.004759682830713707],[127,129,74,-0.0026560063810410206],[127,129,75,-4.794041164121188E-4],[127,129,76,0.001769542508347266],[127,129,77,0.004090144495552561],[127,129,78,0.006481602812367759],[127,129,79,0.008943005879486488],[127,130,64,-0.027336805370551942],[127,130,65,-0.025900610734266416],[127,130,66,-0.02438894507079048],[127,130,67,-0.022801552645926093],[127,130,68,-0.02113826504499028],[127,130,69,-0.01939900349055712],[127,130,70,-0.017583781178697855],[127,130,71,-0.01569270563378966],[127,130,72,-0.013725981081856409],[127,130,73,-0.011683910842520961],[127,130,74,-0.009566899739393175],[127,130,75,-0.007375456529117641],[127,130,76,-0.005110196348924512],[127,130,77,-0.0027718431827300494],[127,130,78,-3.6123234579898966E-4],[127,130,79,0.0021206870120656918],[127,131,64,-0.03427416951478823],[127,131,65,-0.03283992932460755],[127,131,66,-0.03132847247835935],[127,131,67,-0.029739564729032497],[127,131,68,-0.028073060499575808],[127,131,69,-0.026328905197823826],[127,131,70,-0.024507137549430458],[127,131,71,-0.022607891948874137],[127,131,72,-0.02063140082850401],[127,131,73,-0.018577997045700623],[127,131,74,-0.01644811628798082],[127,131,75,-0.014242299496265987],[127,131,76,-0.011961195306161687],[127,131,77,-0.009605562507290832],[127,131,78,-0.007176272520697191],[127,131,79,-0.004674311894278471],[127,132,64,-0.04117320253441603],[127,132,65,-0.0397413372899762],[127,132,66,-0.038230515038213175],[127,132,67,-0.036640522809608056],[127,132,68,-0.03497123765449617],[127,132,69,-0.033222628955488],[127,132,70,-0.03139476075740544],[127,132,71,-0.0294877941148054],[127,132,72,-0.02750198945705462],[127,132,73,-0.02543770897103237],[127,132,74,-0.023295419001289508],[127,132,75,-0.021075692467883655],[127,132,76,-0.018779211301736765],[127,132,77,-0.016406768897559987],[127,132,78,-0.013959272584359916],[127,132,79,-0.011437746113488023],[127,133,64,-0.04802978388366608],[127,133,65,-0.04660069925306343],[127,133,66,-0.04509092369538381],[127,133,67,-0.04350026529929618],[127,133,68,-0.04182862352166761],[127,133,69,-0.04007599149777308],[127,133,70,-0.038242458368543786],[127,133,71,-0.03632821162491917],[127,133,72,-0.0343335394692702],[127,133,73,-0.03225883319396805],[127,133,74,-0.030104589576929963],[127,133,75,-0.027871413294358383],[127,133,76,-0.025560019350521435],[127,133,77,-0.023171235524621747],[127,133,78,-0.02070600483476248],[127,133,79,-0.018165388018977713],[127,134,64,-0.054839818634128346],[127,134,65,-0.053413905164285125],[127,134,66,-0.051905574429549683],[127,134,67,-0.05031465534801027],[127,134,68,-0.048641069551738414],[127,134,69,-0.046884833695080785],[127,134,70,-0.04504606177951609],[127,134,71,-0.0431249674951405],[127,134,72,-0.041121866578749056],[127,134,73,-0.039037179188592064],[127,134,74,-0.03687143229562739],[127,134,75,-0.034625262091499076],[127,134,76,-0.03229941641307765],[127,134,77,-0.029894757183615783],[127,134,78,-0.027412262870528004],[127,134,79,-0.024853030959758105],[127,135,64,-0.06159924128622474],[127,135,65,-0.06017687412900308],[127,135,66,-0.05867037209691928],[127,135,67,-0.05707958469939689],[127,135,68,-0.05540445550206663],[127,135,69,-0.05364502443342367],[127,135,70,-0.051801430107582425],[127,135,71,-0.049873912163193035],[127,135,72,-0.04786281361848532],[127,135,73,-0.045768583242520755],[127,135,74,-0.043591777942472265],[127,135,75,-0.04133306516716284],[127,135,76,-0.038993225326699577],[127,135,77,-0.0365731542282538],[127,135,78,-0.03407386552799785],[127,135,79,-0.031496493199164255],[127,136,64,-0.06830401963757893],[127,136,65,-0.06688555829212728],[127,136,66,-0.06538125432995978],[127,136,67,-0.06379097760459529],[127,136,68,-0.062114693363420015],[127,136,69,-0.060352464552987706],[127,136,70,-0.05850445413995298],[127,136,71,-0.056570927447706976],[127,136,72,-0.0545522545086814],[127,136,73,-0.05244891243239691],[127,136,74,-0.05026148778908324],[127,136,75,-0.04799067900909304],[127,136,76,-0.04563729879795386],[127,136,77,-0.04320227656710385],[127,136,78,-0.040686660880325465],[127,136,79,-0.038091621915838036],[127,137,64,-0.0749501587084721],[127,137,65,-0.07353594678028796],[127,137,66,-0.07203419549516055],[127,137,67,-0.07044479479447452],[127,137,68,-0.06876773134558312],[127,137,69,-0.06700309084601475],[127,137,70,-0.06515106034285989],[127,137,71,-0.06321193056740759],[127,137,72,-0.06118609828499544],[127,137,73,-0.05907406866015352],[127,137,74,-0.05687645763686211],[127,137,75,-0.05459399433415424],[127,137,76,-0.05222752345690085],[127,137,77,-0.04977800772182628],[127,137,78,-0.047246530298769684],[127,137,79,-0.04463429726715029],[127,138,64,-0.08153370472454258],[127,138,65,-0.0801240697017338],[127,138,66,-0.07862521070898776],[127,138,67,-0.07703703751051294],[127,138,68,-0.07535955792203353],[127,138,69,-0.07359288011416021],[127,138,70,-0.07173721493049567],[127,138,71,-0.06979287822054425],[127,138,72,-0.06776029318738874],[127,138,73,-0.06563999275021437],[127,138,74,-0.0634326219215029],[127,138,75,-0.06113894019912269],[127,138,76,-0.05875982397315649],[127,138,77,-0.05629626894751538],[127,138,78,-0.05374939257634881],[127,138,79,-0.05112043651521658],[127,139,64,-0.08805074915637157],[127,139,65,-0.08664600220360452],[127,139,66,-0.08515035991167896],[127,139,67,-0.08356375159395923],[127,139,68,-0.08188620593332852],[127,139,69,-0.08011785328497345],[127,139,70,-0.0782589279934659],[127,139,71,-0.0763097707242083],[127,139,72,-0.0742708308092106],[127,139,73,-0.07214266860727259],[127,139,74,-0.06992595787840006],[127,139,75,-0.06762148817267788],[127,139,76,-0.0652301672334421],[127,139,77,-0.06275302341479905],[127,139,78,-0.060191208113503425],[127,139,79,-0.05754599821515782],[127,140,64,-0.09449743281626566],[127,140,65,-0.0930978685868773],[127,140,66,-0.09160575199917742],[127,140,67,-0.09002103163358333],[127,140,68,-0.08834375674950912],[127,140,69,-0.08657407958780405],[127,140,70,-0.08471225768705781],[127,140,71,-0.08275865621383871],[127,140,72,-0.08071375030683137],[127,140,73,-0.07857812743495085],[127,140,74,-0.07635248976925757],[127,140,75,-0.07403765656889982],[127,140,76,-0.07163456658092293],[127,140,77,-0.06914428045399656],[127,140,78,-0.0665679831660676],[127,140,79,-0.06390698646590653],[127,141,64,-0.10086995001199794],[127,141,65,-0.09947584647876317],[127,141,66,-0.09798754901297979],[127,141,67,-0.09640502517178584],[127,141,68,-0.09472834449129108],[127,141,69,-0.09295768078890398],[127,141,70,-0.09109331447909841],[127,141,71,-0.08913563490269016],[127,141,72,-0.08708514266959166],[127,141,73,-0.08494245201511863],[127,141,74,-0.08270829316967498],[127,141,75,-0.08038351474204142],[127,141,76,-0.07796908611610887],[127,141,77,-0.07546609986110497],[127,141,78,-0.07287577415532487],[127,141,79,-0.07019945522333026],[127,142,64,-0.10716455275781855],[127,142,65,-0.1057761710628502],[127,142,66,-0.10429197038819815],[127,142,67,-0.10271193696936665],[127,142,68,-0.1010361603103429],[127,142,69,-0.09926483548602849],[127,142,70,-0.09739826545769992],[127,142,71,-0.09543686340156277],[127,142,72,-0.09338115505036604],[127,142,73,-0.09123178104815877],[127,142,74,-0.08898949931800215],[127,142,75,-0.08665518744287681],[127,142,76,-0.08422984505961595],[127,142,77,-0.0817145962659166],[127,142,78,-0.07911069204044152],[127,142,79,-0.07641951267597202],[127,143,64,-0.11337755504236802],[127,143,65,-0.11199513936663907],[127,143,66,-0.11051529725947618],[127,143,67,-0.10893803332859986],[127,143,68,-0.10726345672829785],[127,143,69,-0.10549178346217758],[127,143,70,-0.10362333869853946],[127,143,71,-0.10165855909843724],[127,143,72,-0.09959799515639234],[127,143,73,-0.09744231355383759],[127,143,74,-0.0951922995251182],[127,143,75,-0.09284885923627206],[127,143,76,-0.09041302217643443],[127,143,77,-0.08788594356191004],[127,143,78,-0.0852689067529302],[127,143,79,-0.08256332568305336],[127,144,64,-0.11950533715367961],[127,144,65,-0.11812911460664588],[127,144,66,-0.11665387682494255],[127,144,67,-0.11507964647478519],[127,144,68,-0.11340655203467065],[127,144,69,-0.11163483009865416],[127,144,70,-0.10976482769184492],[127,144,71,-0.10779700459819397],[127,144,72,-0.10573193570053241],[127,144,73,-0.10357031333294597],[127,144,74,-0.10131294964530002],[127,144,75,-0.09896077898015099],[127,144,76,-0.09651486026187939],[127,144,77,-0.09397637939809311],[127,144,78,-0.09134665169331502],[127,144,79,-0.0886271242749157],[127,145,64,-0.12554435006141096],[127,145,65,-0.12417453059122352],[127,145,66,-0.12270412676834264],[127,145,67,-0.12113317899642928],[127,145,68,-0.1194618347438341],[127,145,69,-0.11769035084759105],[127,145,70,-0.1158190958292421],[127,145,71,-0.11384855222255796],[127,145,72,-0.11177931891312343],[127,145,73,-0.109612113489864],[127,145,74,-0.10734777460833533],[127,145,75,-0.10498726436600547],[127,145,76,-0.10253167068936919],[127,145,77,-0.09998220973294147],[127,145,78,-0.09734022829014422],[127,145,79,-0.09460720621604635],[127,146,64,-0.13149111985599649],[127,146,65,-0.13012789618078446],[127,146,66,-0.12866253973904218],[127,146,67,-0.12709510834374393],[127,146,68,-0.12542576811073525],[127,146,69,-0.1236547957636277],[127,146,70,-0.12178258095014216],[127,146,71,-0.11980962856996724],[127,146,72,-0.11773656111409858],[127,146,73,-0.11556412101573699],[127,146,74,-0.11329317301256592],[127,146,75,-0.11092470652064013],[127,146,76,-0.10845983801972436],[127,146,77,-0.10589981345012689],[127,146,78,-0.10324601062104466],[127,146,79,-0.10049994163037923],[127,147,64,-0.13734225224488195],[127,147,65,-0.13598579980558922],[127,147,66,-0.1345256878900566],[127,147,67,-0.13296199138561693],[127,147,68,-0.13129489470551914],[127,147,69,-0.1295246940949012],[127,147,70,-0.12765179994783482],[127,147,71,-0.12567673913551292],[127,147,72,-0.12360015734554197],[127,147,73,-0.12142282143241945],[127,147,74,-0.11914562177901855],[127,147,75,-0.11676957466930704],[127,147,76,-0.11429582467214228],[127,147,77,-0.11172564703618904],[127,147,78,-0.10906045009597243],[127,147,79,-0.10630177768902893],[127,148,64,-0.1430944371059828],[127,148,65,-0.14174491404124512],[127,148,66,-0.14029022747426112],[127,148,67,-0.13873046902520925],[127,148,68,-0.13706584104720132],[127,148,69,-0.13529665893350007],[127,148,70,-0.13342335343543665],[127,148,71,-0.13144647299111045],[127,148,72,-0.1293666860648237],[127,148,73,-0.12718478349733964],[127,148,74,-0.12490168086677789],[127,148,75,-0.12251842086038245],[127,148,76,-0.12003617565699731],[127,148,77,-0.11745624932030096],[127,148,78,-0.11478008020280839],[127,148,79,-0.11200924336060691],[127,149,64,-0.14874445309807627],[127,149,65,-0.14740200024161998],[127,149,66,-0.14595290349847678],[127,149,67,-0.14439727087387488],[127,149,68,-0.14273532229609476],[127,149,69,-0.14096739192507812],[127,149,70,-0.13909393047138885],[127,149,71,-0.13711550752559254],[127,149,72,-0.13503281389801736],[127,149,73,-0.13284666396898048],[127,149,74,-0.1305579980492928],[127,149,75,-0.12816788475128316],[127,149,76,-0.1256775233701698],[127,149,77,-0.12308824627583304],[127,149,78,-0.12040152131500326],[127,149,79,-0.11761895422381863],[127,150,64,-0.15428917232826123],[127,150,65,-0.1529539132293103],[127,150,66,-0.1515105544355766],[127,150,67,-0.14995921998355088],[127,150,68,-0.1483001470051315],[127,150,69,-0.1465336880377761],[127,150,70,-0.14466031334465546],[127,150,71,-0.14268061324487724],[127,150,72,-0.1405953004537439],[127,150,73,-0.13840521243312676],[127,150,74,-0.13611131375177143],[127,150,75,-0.1337146984557709],[127,150,76,-0.13121659244904216],[127,150,77,-0.12861835588385195],[127,150,78,-0.1259214855614107],[127,150,79,-0.12312761734248934],[127,151,64,-0.15972556507665492],[127,151,65,-0.15839760604382702],[127,151,66,-0.15696011699477852],[127,151,67,-0.1554132376377736],[127,151,68,-0.15375722193024222],[127,151,69,-0.15199244039060733],[127,151,70,-0.15011938241977585],[127,151,71,-0.14813865863236086],[127,151,72,-0.14605100319759656],[127,151,73,-0.14385727619003186],[127,151,74,-0.14155846594981303],[127,151,75,-0.13915569145279716],[127,151,76,-0.13665020469032751],[127,151,77,-0.13404339305871893],[127,151,78,-0.13133678175847274],[127,151,79,-0.12853203620317344],[127,152,64,-0.16505070457800752],[127,152,65,-0.163730134747186],[127,152,66,-0.1622986309498019],[127,152,67,-0.16075634820101214],[127,152,68,-0.15910355689947908],[127,152,69,-0.15734064514099877],[127,152,70,-0.15546812104146612],[127,152,71,-0.15348661506923522],[127,152,72,-0.15139688238684657],[127,152,73,-0.14919980520219756],[127,152,74,-0.146896395128975],[127,152,75,-0.14448779555658497],[127,152,76,-0.1419752840294154],[127,152,77,-0.1393602746354774],[127,152,78,-0.1366443204044434],[127,152,79,-0.1338291157150403],[127,153,64,-0.1702617718604107],[127,153,65,-0.16894866328707248],[127,153,66,-0.16752324402506968],[127,153,67,-0.1659856840264905],[127,153,68,-0.16433626974105353],[127,153,69,-0.16257540643165602],[127,153,70,-0.16070362049893183],[127,153,71,-0.15872156181488895],[127,153,72,-0.15663000606558575],[127,153,73,-0.15442985710293378],[127,153,74,-0.15212214930543844],[127,153,75,-0.14970804994811326],[127,153,76,-0.14718886158140876],[127,153,77,-0.14456602441919486],[127,153,78,-0.14184111873582084],[127,153,79,-0.13901586727220505],[127,154,64,-0.17535606064120723],[127,154,65,-0.17405046841769656],[127,154,66,-0.17263121684006144],[127,154,67,-0.17109849042260628],[127,154,68,-0.1694525912704038],[127,154,69,-0.16769394139686644],[127,154,70,-0.16582308505001542],[127,154,71,-0.1638406910475141],[127,154,72,-0.16174755512043193],[127,154,73,-0.15954460226581557],[127,154,74,-0.15723288910788957],[127,154,75,-0.15481360626811724],[127,154,76,-0.15228808074395928],[127,154,77,-0.14965777829637839],[127,154,78,-0.1469243058461036],[127,154,79,-0.14408941387861485],[127,155,64,-0.180330982279851],[127,155,65,-0.17903294467807718],[127,155,66,-0.17761992791156334],[127,155,67,-0.17609213067769647],[127,155,68,-0.17444987033603188],[127,155,69,-0.17269358522798361],[127,155,70,-0.17082383700490977],[127,155,71,-0.1688413129646571],[127,155,72,-0.16674682839653188],[127,155,73,-0.16454132893477413],[127,155,74,-0.16222589292035894],[127,155,75,-0.15980173377134965],[127,155,76,-0.15727020236165168],[127,155,77,-0.15463278940820002],[127,155,78,-0.15189112786661074],[127,155,79,-0.14904699533524068],[127,156,64,-0.1851840707878437],[127,156,65,-0.1838936094278879],[127,156,66,-0.1824868787139441],[127,156,67,-0.1809640911432726],[127,156,68,-0.1793255789242405],[127,156,69,-0.17757179629821895],[127,156,70,-0.17570332186957704],[127,156,71,-0.17372086094384254],[127,156,72,-0.1716252478739938],[127,156,73,-0.16941744841495798],[127,156,74,-0.16709856208614393],[127,156,75,-0.16466982454223011],[127,156,76,-0.16213260995205914],[127,156,77,-0.15948843338566965],[127,156,78,-0.15673895320949816],[127,156,79,-0.1538859734896948],[127,157,64,-0.18991298789587574],[127,157,65,-0.18863010794099533],[127,157,66,-0.18722969879758822],[127,157,67,-0.18571198637585995],[127,157,68,-0.1840773173229039],[127,157,69,-0.1823261613468783],[127,157,70,-0.18045911354899824],[127,157,71,-0.17847689676340484],[127,157,72,-0.1763803639048811],[127,157,73,-0.17417050032448955],[127,157,74,-0.17184842617295393],[127,157,75,-0.16941539877201606],[127,157,76,-0.16687281499360707],[127,157,77,-0.16422221364687617],[127,157,78,-0.1614652778730986],[127,157,79,-0.15860383754841323],[127,158,64,-0.19451552817791706],[127,158,65,-0.19324021855642337],[127,158,66,-0.19184615096522128],[127,158,67,-0.19033356433717874],[127,158,68,-0.1887028193440039],[127,158,69,-0.1869544007227727],[127,158,70,-0.18508891960999085],[127,158,71,-0.183107115883259],[127,158,72,-0.18100986051050394],[127,158,73,-0.17879815790685838],[127,158,74,-0.1764731482990064],[127,158,75,-0.17403611009722741],[127,158,76,-0.17148846227497572],[127,158,77,-0.16883176675604394],[127,158,78,-0.16606773080932546],[127,158,79,-0.16319820945113273],[127,159,64,-0.19898962423239386],[127,159,65,-0.19772185788689567],[127,159,66,-0.1963341365062785],[127,159,67,-0.19482671165280907],[127,159,68,-0.1931999576050829],[127,159,69,-0.1914543736869566],[127,159,70,-0.18959058660374684],[127,159,71,-0.18760935278576552],[127,159,72,-0.18551156073915376],[127,159,73,-0.1832982334040949],[127,159,74,-0.18097053052022605],[127,159,75,-0.17852975099947965],[127,159,76,-0.17597733530619553],[127,159,77,-0.17331486784454453],[127,159,78,-0.17054407935328708],[127,159,79,-0.16766684930781806],[127,160,64,-0.2033333519205497],[127,160,65,-0.20207308608503982],[127,160,66,-0.20069170048939833],[127,160,67,-0.19918945892943452],[127,160,68,-0.1975667488697006],[127,160,69,-0.19582408377487748],[127,160,70,-0.19396210544816772],[127,160,71,-0.19198158637676666],[127,160,72,-0.18988343208437164],[127,160,73,-0.18766868349081456],[127,160,74,-0.18533851927863165],[127,160,75,-0.18289425826680505],[127,160,76,-0.1803373617915165],[127,160,77,-0.17766943609395447],[127,160,78,-0.174892234715196],[127,160,79,-0.17200766089811625],[127,161,64,-0.20754493566177812],[127,161,65,-0.20629211216705023],[127,161,66,-0.2049170371128437],[127,161,67,-0.20341998613045376],[127,161,68,-0.2018013594466863],[127,161,69,-0.20006168421773307],[127,161,70,-0.19820161686980564],[127,161,71,-0.1962219454465992],[127,161,72,-0.194123591963543],[127,161,73,-0.1919076147689267],[127,161,74,-0.18957521091171092],[127,161,75,-0.18712771851626264],[127,161,76,-0.1845666191638523],[127,161,77,-0.1818935402809545],[127,161,78,-0.17911025753437293],[127,161,79,-0.1762186972331442],[127,162,64,-0.21162275378602724],[127,162,65,-0.2103772993939076],[127,162,66,-0.20900849511293962],[127,162,67,-0.20751662801005943],[127,162,68,-0.20590211064828934],[127,162,69,-0.20416548342313423],[127,162,70,-0.20230741690549547],[127,162,71,-0.2003287141911736],[127,162,72,-0.19823031325691687],[127,162,73,-0.19601328932310336],[127,162,74,-0.19367885722287126],[127,162,75,-0.19122837377793],[127,162,76,-0.1886633401808907],[127,162,77,-0.1859854043841639],[127,162,78,-0.18319636349543822],[127,162,79,-0.18029816617969874],[127,163,64,-0.21556534394339433],[127,163,65,-0.21432717071026752],[127,163,66,-0.21296458323065293],[127,163,67,-0.21147787960590314],[127,163,68,-0.2098674843073398],[127,163,69,-0.20813395051518857],[127,163,70,-0.20627796246380337],[127,163,71,-0.20430033779324241],[127,163,72,-0.20220202990716607],[127,163,73,-0.19998413033712936],[127,163,74,-0.19764787111309623],[127,163,75,-0.19519462714039992],[127,163,76,-0.19262591858299305],[127,163,77,-0.18994341325303243],[127,163,78,-0.1871489290068129],[127,163,79,-0.18424443614700847],[127,164,64,-0.21937140857067638],[127,164,65,-0.21814041424079644],[127,164,66,-0.2167839757360751],[127,164,67,-0.21530240179011118],[127,164,68,-0.21369612835319196],[127,164,69,-0.21196572093377786],[127,164,70,-0.21011187694605582],[127,164,71,-0.2081354280636215],[127,164,72,-0.20603734257925976],[127,164,73,-0.2038187277708995],[127,164,74,-0.20148083227356273],[127,164,75,-0.1990250484575431],[127,164,76,-0.19645291481264882],[127,164,77,-0.19376611833855584],[127,164,78,-0.19096649694129142],[127,164,79,-0.18805604183580016],[127,165,64,-0.2230398204150681],[127,165,65,-0.2218158888441305],[127,165,66,-0.22046551801100078],[127,165,67,-0.21898902687884347],[127,165,68,-0.21738686244663574],[127,165,69,-0.21565960209320856],[127,165,70,-0.21380795592713808],[127,165,71,-0.21183276914255433],[127,165,72,-0.20973502438083302],[127,165,73,-0.2075158440982504],[127,165,74,-0.20517649293941742],[127,165,75,-0.20271838011673027],[127,165,76,-0.20014306179566943],[127,165,77,-0.1974522434859992],[127,165,78,-0.19464778243888192],[127,165,79,-0.19173169004985924],[127,166,64,-0.2265696281148757],[127,166,65,-0.22535262972434178],[127,166,66,-0.2240082321894763],[127,166,67,-0.2225367643002647],[127,166,68,-0.22093868367365044],[127,166,69,-0.21921457910012088],[127,166,70,-0.21736517289593948],[127,166,71,-0.21539132326109545],[127,166,72,-0.2132940266429264],[127,166,73,-0.21107442010550215],[127,166,74,-0.2087337837045825],[127,166,75,-0.20627354286838595],[127,166,76,-0.20369527078400418],[127,166,77,-0.20100069078951088],[127,166,78,-0.19819167877178],[127,166,79,-0.19527026556996863],[127,167,64,-0.22996006183740592],[127,167,65,-0.228749854100059],[127,167,66,-0.2274113228564647],[127,167,67,-0.22594480632108616],[127,167,68,-0.2243507722981568],[127,167,69,-0.22262982053079783],[127,167,70,-0.22078268505558996],[127,167,71,-0.21881023656266052],[127,167,72,-0.21671348476125396],[127,167,73,-0.2144935807508629],[127,167,74,-0.21215181939774042],[127,167,75,-0.20968964171702575],[127,167,76,-0.20710863726032214],[127,167,77,-0.20441054650876922],[127,167,78,-0.20159726327163408],[127,167,79,-0.19867083709036715],[127,168,64,-0.23321053897384458],[127,168,65,-0.2320069669310616],[127,168,66,-0.2306741828044564],[127,168,67,-0.22921253383149232],[127,168,68,-0.22762249757357933],[127,168,69,-0.22590468426770294],[127,168,70,-0.22405983918331718],[127,168,71,-0.22208884498456827],[127,168,72,-0.219992724097813],[127,168,73,-0.2177726410845131],[127,168,74,-0.21542990501932224],[127,168,75,-0.21296597187359834],[127,168,76,-0.2103824469041834],[127,168,77,-0.20768108704749055],[127,168,78,-0.20486380331891996],[127,168,79,-0.20193266321755687],[127,169,64,-0.2363206698912138],[127,169,65,-0.2351235667024406],[127,169,66,-0.23379639884810455],[127,169,67,-0.2323395221885417],[127,169,68,-0.23075342361331597],[127,169,69,-0.22903872339532716],[127,169,70,-0.22719617755000465],[127,169,71,-0.22522668019965497],[127,169,72,-0.22313126594292454],[127,169,73,-0.22091111222945992],[127,169,74,-0.21856754173958326],[127,169,75,-0.21610202476921592],[127,169,76,-0.21351618161988783],[127,169,77,-0.21081178499387931],[127,169,78,-0.20799076239451164],[127,169,79,-0.2050551985315433],[127,170,64,-0.23929026374149454],[127,170,65,-0.23809945126640242],[127,170,66,-0.23677775769697262],[127,170,67,-0.2353255471181287],[127,170,68,-0.23374331532019188],[127,170,69,-0.2320316921554333],[127,170,70,-0.23019144389953816],[127,170,71,-0.22822347561805534],[127,170,72,-0.226128833537794],[127,170,73,-0.22390870742324565],[127,170,74,-0.22156443295785555],[127,170,75,-0.21909749413036617],[127,170,76,-0.21650952562608528],[127,170,77,-0.21380231522311033],[127,170,78,-0.2109778061935348],[127,170,79,-0.20803809970958898],[127,171,64,-0.24211933432773125],[127,171,65,-0.24093462374154417],[127,171,66,-0.23961825188621888],[127,171,67,-0.23817059067532365],[127,171,68,-0.23659214437472254],[127,171,69,-0.23488355196151955],[127,171,70,-0.23304558948776133],[127,171,71,-0.2310791724489607],[127,171,72,-0.2289853581574044],[127,171,73,-0.22676534812033078],[127,171,74,-0.2244204904227879],[127,171,75,-0.2219522821154133],[127,171,76,-0.21936237160696548],[127,171,77,-0.21665256106165964],[127,171,78,-0.21382480880132038],[127,171,79,-0.21088123171230877],[127,172,64,-0.24480810602723158],[127,172,65,-0.24362929846970538],[127,172,66,-0.24231808576531855],[127,172,67,-0.24087484726320418],[127,172,68,-0.23930009528229323],[127,172,69,-0.23759447747260753],[127,172,70,-0.23575877918115062],[127,172,71,-0.2337939258224715],[127,172,72,-0.23170098525386063],[127,172,73,-0.22948117015525826],[127,172,74,-0.22713584041369805],[127,172,75,-0.2246665055125121],[127,172,76,-0.2220748269251419],[127,172,77,-0.21936262051359523],[127,172,78,-0.21653185893157234],[127,172,79,-0.21358467403221026],[127,173,64,-0.2473570197719085],[127,173,65,-0.24618390703044501],[127,173,66,-0.24487768154488299],[127,173,67,-0.24343872971022096],[127,173,68,-0.24186757147930615],[127,173,69,-0.24016486272640825],[127,173,70,-0.23833139761525424],[127,173,71,-0.23636811097158905],[127,173,72,-0.23427608066022387],[127,173,73,-0.23205652996665505],[127,173,74,-0.22971082998306958],[127,173,75,-0.2272405019989725],[127,173,76,-0.22464721989627412],[127,173,77,-0.22193281254887787],[127,173,78,-0.21909926622679476],[127,173,79,-0.21614872700473187],[127,174,64,-0.24976673908562674],[127,174,65,-0.24859910431301058],[127,174,66,-0.24729768540142805],[127,174,67,-0.24586287540596996],[127,174,68,-0.24429520149815487],[127,174,69,-0.24259532733172484],[127,174,70,-0.24076405541276402],[127,174,71,-0.2388023294742091],[127,174,72,-0.23671123685470996],[127,174,73,-0.23449201088192506],[127,174,74,-0.2321460332600691],[127,174,75,-0.22967483646194353],[127,174,76,-0.22708010612529417],[127,174,77,-0.2243636834535312],[127,174,78,-0.22152756762084203],[127,174,79,-0.21857391818163807],[127,175,64,-0.2520381561786327],[127,175,65,-0.25087577464586974],[127,175,66,-0.2495789736401789],[127,175,67,-0.2481481524954372],[127,175,68,-0.24658384519110554],[127,175,69,-0.24488672272017176],[127,175,70,-0.24305759546129246],[127,175,71,-0.2410974155551978],[127,175,72,-0.23900727928531773],[127,175,73,-0.23678842946271716],[127,175,74,-0.23444225781515382],[127,175,75,-0.2319703073804913],[127,175,76,-0.22937427490431117],[127,175,77,-0.226656013241762],[127,175,78,-0.2238175337636682],[127,175,79,-0.22086100876685189],[127,176,64,-0.2541723980991244],[127,176,65,-0.2530150379838698],[127,176,66,-0.25172265891595913],[127,176,67,-0.2502956661317832],[127,176,68,-0.24873460001314307],[127,176,69,-0.2470401384572689],[127,176,70,-0.24521309925091628],[127,176,71,-0.24325444244860384],[127,176,72,-0.24116527275495403],[127,176,73,-0.2389468419112225],[127,176,74,-0.23660055108582978],[127,176,75,-0.23412795326913016],[127,176,76,-0.2315307556722569],[127,176,77,-0.22881082213008563],[127,176,78,-0.22597017550833876],[127,176,79,-0.22301100011478125],[127,177,64,-0.25617083294183274],[127,177,65,-0.25501825615289],[127,177,66,-0.2537300965120467],[127,177,67,-0.25230676478753344],[127,177,68,-0.25074880736365],[127,177,69,-0.24905690861277763],[127,177,70,-0.2472318932713541],[127,177,71,-0.24527472881988122],[127,177,72,-0.24318652786692208],[127,177,73,-0.2409685505371737],[127,177,74,-0.23862220686343194],[127,177,75,-0.23614905918267892],[127,177,76,-0.23355082453613774],[127,177,77,-0.2308293770733303],[127,177,78,-0.22798675046016692],[127,177,79,-0.22502514029101117],[127,178,64,-0.25803507611368615],[127,178,65,-0.2568870391520611],[127,178,66,-0.25560289067705355],[127,178,67,-0.2541830466242455],[127,178,68,-0.2526280589869947],[127,178,69,-0.25093861819035446],[127,178,70,-0.24911555546885134],[127,178,71,-0.24715984524818968],[127,178,72,-0.24507260753084337],[127,178,73,-0.24285511028561702],[127,178,74,-0.24050877184099417],[127,178,75,-0.23803516328250796],[127,178,76,-0.23543601085396748],[127,178,77,-0.23271319836258986],[127,178,78,-0.22986876958805358],[127,178,79,-0.22690493069542916],[127,179,64,-0.2597669966566112],[127,179,65,-0.25862325151360843],[127,179,66,-0.2573429010199013],[127,179,67,-0.25592636592071394],[127,179,68,-0.2543742034320794],[127,179,69,-0.25268710961657703],[127,179,70,-0.2508659217628304],[127,179,71,-0.248911620768835],[127,179,72,-0.246825333529075],[127,179,73,-0.24460833532551307],[127,179,74,-0.24226205222227326],[127,179,75,-0.2397880634642423],[127,179,76,-0.2371881038794379],[127,179,77,-0.23446406628517857],[127,179,78,-0.23161800389808296],[127,179,79,-0.2286521327478459],[127,180,64,-0.26136872362734187],[127,180,65,-0.2602290187201811],[127,180,66,-0.2589522489627438],[127,180,67,-0.25753883955957135],[127,180,68,-0.25598935257071675],[127,180,69,-0.2543044892892058],[127,180,70,-0.2524850926221681],[127,180,71,-0.25053214947570857],[127,180,72,-0.24844679314347884],[127,180,73,-0.24623030569903281],[127,180,74,-0.2438841203917802],[127,180,75,-0.2414098240467779],[127,180,76,-0.2388091594681886],[127,180,77,-0.23608402784646088],[127,180,78,-0.23323649116924028],[127,180,79,-0.23026877463597384],[127,181,64,-0.26284265253432415],[127,181,65,-0.2617067336797664],[127,181,66,-0.26043332425194166],[127,181,67,-0.25902285357238686],[127,181,68,-0.25747588817493083],[127,181,69,-0.2557931341847802],[127,181,70,-0.25397543970119574],[127,181,71,-0.2520237971838244],[127,181,72,-0.24993934584264943],[127,181,73,-0.24772337403164146],[127,181,74,-0.24537732164592774],[127,181,75,-0.24290278252271025],[127,181,76,-0.24030150684577678],[127,181,77,-0.23757540355364248],[127,181,78,-0.23472654275134675],[127,181,79,-0.23175715812585584],[127,182,64,-0.26419145183174064],[127,182,65,-0.2630590632582053],[127,182,66,-0.26178879152710255],[127,182,67,-0.26038106974327746],[127,182,68,-0.2588364685531973],[127,182,69,-0.2571556985255652],[127,182,70,-0.25533961253544546],[127,182,71,-0.2533892081519735],[127,182,72,-0.2513056300296057],[127,182,73,-0.2490901723029929],[127,182,74,-0.24674428098530032],[127,182,75,-0.2442695563701962],[127,182,76,-0.24166775543736085],[127,182,77,-0.2389407942615488],[127,182,78,-0.23609075042523153],[127,182,79,-0.2331198654347696],[127,183,64,-0.26541806947055313],[127,183,65,-0.2642889548692099],[127,183,66,-0.26302159694808946],[127,183,67,-0.2616164322709331],[127,183,68,-0.26007403524552863],[127,183,69,-0.2583951205057491],[127,183,70,-0.2565805452970349],[127,183,71,-0.25463131186539234],[127,183,72,-0.25254856984985896],[127,183,73,-0.2503336186785302],[127,183,74,-0.2479879099679556],[127,183,75,-0.24551304992614098],[127,183,76,-0.24291080175899948],[127,183,77,-0.24018308808028455],[127,183,78,-0.23733199332503907],[127,183,79,-0.23435976616649945],[127,184,64,-0.2665257395066547],[127,184,65,-0.2653996431219746],[127,184,66,-0.2641349748800872],[127,184,67,-0.2627321744891472],[127,184,68,-0.2611918197774883],[127,184,69,-0.25951462907698386],[127,184,70,-0.2577014636097896],[127,184,71,-0.25575332987853827],[127,184,72,-0.25367138205994144],[127,184,73,-0.2514569244018864],[127,184,74,-0.24911141362384293],[127,184,75,-0.24663646132081196],[127,184,76,-0.24403383637065956],[127,184,77,-0.2413054673448719],[127,184,78,-0.2384534449227632],[127,184,79,-0.2354800243090749],[127,185,64,-0.26751798876609656],[127,185,65,-0.2663946565263462],[127,185,66,-0.26513245463669266],[127,185,67,-0.2637318256458181],[127,185,68,-0.2621933504731091],[127,185,69,-0.2605177507932367],[127,185,70,-0.2587058914240632],[127,185,71,-0.2567587827179406],[127,185,72,-0.25467758295636245],[127,185,73,-0.25246360074805296],[127,185,74,-0.2501182974303111],[127,185,75,-0.24764328947383862],[127,185,76,-0.24504035089089593],[127,185,77,-0.24231141564682757],[127,185,78,-0.23945858007497556],[127,185,79,-0.23648410529493724],[127,186,64,-0.2683986435673942],[127,186,65,-0.2672778242555559],[127,186,66,-0.26601786728103427],[127,186,67,-0.2646192177404241],[127,186,68,-0.2630824593267078],[127,186,69,-0.26140831671494835],[127,186,70,-0.2595976579512609],[127,186,71,-0.2576514968451241],[127,186,72,-0.2555709953649955],[127,186,73,-0.2533574660373127],[127,186,74,-0.2510123743486984],[127,186,75,-0.24853734115159998],[127,186,76,-0.245934145073207],[127,186,77,-0.2432047249276852],[127,186,78,-0.2403511821317511],[127,186,79,-0.23737578312353602],[127,187,64,-0.2691718365008874],[127,187,65,-0.268053282966492],[127,187,66,-0.2667953524848935],[127,187,67,-0.2653984924199503],[127,187,68,-0.26386328893358424],[127,187,69,-0.26219046937248425],[127,187,70,-0.26038090465804276],[127,187,71,-0.25843561167958784],[127,187,72,-0.2563557556908763],[127,187,73,-0.25414265270992265],[127,187,74,-0.25179777192199326],[127,187,75,-0.24932273808598615],[127,187,76,-0.246719333944044],[127,187,77,-0.24398950263444164],[127,187,78,-0.2411353501077642],[127,187,79,-0.23815914754633716],[127,188,64,-0.26984201326521673],[127,188,65,-0.2687254836775699],[127,188,66,-0.2674693654458923],[127,188,67,-0.26607410793332475],[127,188,68,-0.2645402994796552],[127,188,69,-0.2628686697889321],[127,188,70,-0.26106009232026683],[127,188,71,-0.2591155866818967],[127,188,72,-0.25703632102846374],[127,188,73,-0.25482361446159774],[127,188,74,-0.2524789394336172],[127,188,75,-0.2500039241545806],[127,188,76,-0.247400355002532],[127,188,77,-0.24467017893697807],[127,188,78,-0.24181550591562084],[127,188,79,-0.23883861131429784],[127,189,64,-0.2704139395608468],[127,189,65,-0.2692991987041331],[127,189,66,-0.26804468386267577],[127,189,67,-0.26665084614429757],[127,189,68,-0.2651182757899594],[127,189,69,-0.2634477045621786],[127,189,70,-0.2616400081366037],[127,189,71,-0.25969620849681463],[127,189,72,-0.2576174763323055],[127,189,73,-0.2554051334397355],[127,189,74,-0.25306065512726494],[127,189,75,-0.25058567262220643],[127,189,76,-0.24798197548183631],[127,189,77,-0.24525151400740175],[127,189,78,-0.24239640166135312],[127,189,79,-0.2394189174877437],[127,190,64,-0.2708927080406752],[127,190,65,-0.2697795286514272],[127,190,66,-0.2685264149681319],[127,190,67,-0.26713381960280613],[127,190,68,-0.2656023344360776],[127,190,69,-0.26393269300631195],[127,190,70,-0.26212577290186423],[127,190,71,-0.26018259815652967],[127,190,72,-0.25810434164814233],[127,190,73,-0.2558923275004169],[127,190,74,-0.25354803348784405],[127,190,75,-0.25107309344387074],[127,190,76,-0.24846929967221387],[127,190,77,-0.2457386053613363],[127,190,78,-0.2428831270021211],[127,190,79,-0.23990514680868513],[127,191,64,-0.27128374531772637],[127,191,65,-0.27017190946513625],[127,191,66,-0.268920002620641],[127,191,67,-0.26752847867481155],[127,191,68,-0.2659979309024506],[127,191,69,-0.26432909435232954],[127,191,70,-0.26252284824002914],[127,191,71,-0.26058021834394884],[127,191,72,-0.25850237940444365],[127,191,73,-0.2562906575261765],[127,191,74,-0.253946532583501],[127,191,75,-0.2514716406291012],[127,191,76,-0.24886777630574286],[127,191,77,-0.24613689526115934],[127,191,78,-0.24328111656611384],[127,191,79,-0.2403027251355695],[127,192,64,-0.27159281902991095],[127,192,65,-0.27048211953947654],[127,192,66,-0.26923123445334485],[127,192,67,-0.26784061873060594],[127,192,68,-0.26631086681159744],[127,192,69,-0.26464271500815995],[127,192,70,-0.26283704389697904],[127,192,71,-0.2608948807160688],[127,192,72,-0.2588174017643706],[127,192,73,-0.25660593480453764],[127,192,74,-0.25426196146873337],[127,192,75,-0.25178711966766854],[127,192,76,-0.24918320600272148],[127,192,77,-0.24645217818118081],[127,192,78,-0.24359615743463536],[127,192,79,-0.24061743094045873],[127,193,64,-0.2718260449618729],[127,193,65,-0.27071628688285454],[127,193,66,-0.26946624908144834],[127,193,67,-0.2680763873915968],[127,193,68,-0.2665472972082378],[127,193,69,-0.2648797158779934],[127,193,70,-0.2630745250929265],[127,193,71,-0.2611327532874238],[127,193,72,-0.25905557803817336],[127,193,73,-0.2568443284673162],[127,193,74,-0.25450048764859146],[127,193,75,-0.25202569501670136],[127,193,76,-0.24942174877974665],[127,193,77,-0.24669060833476508],[127,193,78,-0.24383439668639817],[127,193,79,-0.24085540286864004],[127,194,64,-0.27198989422390485],[127,194,65,-0.27088089634108237],[127,194,66,-0.26963154336754114],[127,194,67,-0.2682422918355568],[127,194,68,-0.266713737902309],[127,194,69,-0.26504661974092036],[127,194,70,-0.2632418199345504],[127,194,71,-0.261300367873602],[127,194,72,-0.2592234421560108],[127,194,73,-0.25701237299069024],[127,194,74,-0.2546686446039611],[127,194,75,-0.25219389764918687],[127,194,76,-0.24958993161946186],[127,194,77,-0.24685870726339387],[127,194,78,-0.2440023490039993],[127,194,79,-0.24102314736066532],[127,195,64,-0.2720912004879552],[127,195,65,-0.2709827968781654],[127,195,66,-0.2697339797449586],[127,195,67,-0.26834520616036317],[127,195,68,-0.2668170728708986],[127,195,69,-0.2651503186888928],[127,195,70,-0.2633458268868375],[127,195,71,-0.2614046275948525],[127,195,72,-0.25932790020121577],[127,195,73,-0.2571169757560454],[127,195,74,-0.2547733393779489],[127,195,75,-0.2522986326638723],[127,195,76,-0.24969465610199182],[127,195,77,-0.246963371487685],[127,195,78,-0.24410690434260873],[127,195,79,-0.24112754633683253],[127,196,64,-0.2721371672806895],[127,196,65,-0.27102920891463034],[127,196,66,-0.2697807935991474],[127,196,67,-0.26839237880618283],[127,196,68,-0.2668645617190536],[127,196,69,-0.2651980816239732],[127,196,70,-0.26339382230460995],[127,196,71,-0.2614528144397412],[127,196,72,-0.2593762380039676],[127,196,73,-0.2571654246715699],[127,196,74,-0.25482186022332987],[127,196,75,-0.25234718695653635],[127,196,76,-0.24974320609803247],[127,196,77,-0.24701188022033127],[127,196,78,-0.24415533566083025],[127,196,79,-0.24117586494407484],[127,197,64,-0.27213537533365295],[127,197,65,-0.27102773172343675],[127,197,66,-0.26977960070707996],[127,197,67,-0.2683914400361598],[127,197,68,-0.26686384719951495],[127,197,69,-0.26519756181491927],[127,197,70,-0.2633934680237756],[127,197,71,-0.2614525968889104],[127,197,72,-0.2593761287954168],[127,197,73,-0.25716539585463827],[127,197,74,-0.25482188431110764],[127,197,75,-0.25234723695267014],[127,197,76,-0.2497432555236372],[127,197,77,-0.24701190314100707],[127,197,78,-0.24415530671377905],[127,197,79,-0.24117575936530744],[127,198,64,-0.27209378999049605],[127,198,65,-0.27098635088343814],[127,198,66,-0.2697384047346839],[127,198,67,-0.2683504094755551],[127,198,68,-0.26682296279134143],[127,198,69,-0.26515680451306356],[127,198,70,-0.26335281901226526],[127,198,71,-0.26141203759889375],[127,198,72,-0.2593356409222287],[127,198,73,-0.2571249613749488],[127,198,74,-0.254781485500149],[127,198,75,-0.2523068564015377],[127,198,76,-0.24970287615666387],[127,198,77,-0.24697150823320435],[127,198,78,-0.24411487990834368],[127,198,79,-0.24113528469118783],[127,199,64,-0.2720207686712832],[127,199,65,-0.2709134457904051],[127,199,66,-0.26966560479229706],[127,199,67,-0.2682777037093709],[127,199,68,-0.2667503403374337],[127,199,69,-0.26508425462750906],[127,199,70,-0.2632803310806787],[127,199,71,-0.2613396011460144],[127,199,72,-0.2592632456215582],[127,199,73,-0.2570525970584331],[127,199,74,-0.2547091421679055],[127,199,75,-0.25223452423162773],[127,199,76,-0.2496305455149035],[127,199,77,-0.24689916968301617],[127,199,78,-0.24404252422064443],[127,199,79,-0.24106290285431342],[127,200,64,-0.271925068393876],[127,200,65,-0.27081779722561183],[127,200,66,-0.2695700030481549],[127,200,67,-0.26818214393844],[127,200,68,-0.26665481774096467],[127,200,69,-0.26498876445963393],[127,200,70,-0.2631848686526286],[127,200,71,-0.2612441618303569],[127,200,72,-0.2591678248564576],[127,200,73,-0.25695719035193265],[127,200,74,-0.25461374510222745],[127,200,75,-0.25213913246749575],[127,200,76,-0.24953515479588084],[127,200,77,-0.24680377583986313],[127,200,78,-0.24394712317569067],[127,200,79,-0.24096749062584844],[127,201,64,-0.27181585335239355],[127,201,65,-0.27070859498198174],[127,201,66,-0.26946081239989905],[127,201,67,-0.26807296369399414],[127,201,68,-0.2665456467207046],[127,201,69,-0.2648796014969067],[127,201,70,-0.26307571259478923],[127,201,71,-0.2611350115398111],[127,201,72,-0.25905867921171055],[127,201,73,-0.25684804824864094],[127,201,74,-0.2545046054542597],[127,201,75,-0.25202999420799455],[127,201,76,-0.24942601687832988],[127,201,77,-0.24669463723916085],[127,201,78,-0.24383798288922642],[127,201,79,-0.24085834767458247],[127,202,64,-0.2714748685029318],[127,202,65,-0.27036760768321433],[127,202,66,-0.26911982272263746],[127,202,67,-0.2677319717094455],[127,202,68,-0.26620465250038483],[127,202,69,-0.2645386051125538],[127,202,70,-0.2627347141182712],[127,202,71,-0.2607940110430337],[127,202,72,-0.2587176767665206],[127,202,73,-0.25650704392672885],[127,202,74,-0.25416359932705757],[127,202,75,-0.25168898634657255],[127,202,76,-0.2490850073532912],[127,202,77,-0.2463536261205309],[127,202,78,-0.24349697024634265],[127,202,79,-0.2405173335759785],[127,203,64,-0.27147043920740566],[127,203,65,-0.2703631287745759],[127,203,66,-0.2691152959996934],[127,203,67,-0.2677273989733179],[127,203,68,-0.2662000355525229],[127,203,69,-0.2645339457526963],[127,203,70,-0.26273001414236374],[127,203,71,-0.26078927224109527],[127,203,72,-0.2587129009204642],[127,203,73,-0.2565022328081309],[127,203,74,-0.2541587546948806],[127,203,75,-0.2516841099448367],[127,203,76,-0.24908010090869714],[127,203,77,-0.24634869134003246],[127,203,78,-0.24349200881466926],[127,203,79,-0.2405123471531072],[127,204,64,-0.2714551698419976],[127,204,65,-0.2703476883750303],[127,204,66,-0.26909969076714013],[127,204,67,-0.2677116351168689],[127,204,68,-0.26618411928241636],[127,204,69,-0.26451788327327697],[127,204,70,-0.26271381164489715],[127,204,71,-0.26077293589641826],[127,204,72,-0.2586964368714665],[127,204,73,-0.256485647162071],[127,204,74,-0.25414205351553043],[127,204,75,-0.2516672992444574],[127,204,76,-0.2490631866398435],[127,204,77,-0.24633167938718514],[127,204,78,-0.2434749049856928],[127,204,79,-0.24049515717053493],[127,205,64,-0.27130916306944897],[127,205,65,-0.2702013180838495],[127,205,66,-0.2689529701323813],[127,205,67,-0.2675645773309596],[127,205,68,-0.26603673754057877],[127,205,69,-0.2643701907586026],[127,205,70,-0.26256582151307006],[127,205,71,-0.26062466126008554],[127,205,72,-0.2585478907842528],[127,205,73,-0.256336842602236],[127,205,74,-0.25399300336926545],[127,205,75,-0.25151801628882076],[127,205,76,-0.24891368352532994],[127,205,77,-0.24618196861992891],[127,205,78,-0.24332499890930182],[127,205,79,-0.24034506794755206],[127,206,64,-0.2711399903615831],[127,206,65,-0.2700315208805406],[127,206,66,-0.268782571060288],[127,206,67,-0.26739359904716353],[127,206,68,-0.26586520270753566],[127,206,69,-0.264198122018493],[127,206,70,-0.26239324146154697],[127,206,71,-0.2604515924194135],[127,206,72,-0.2583743555758363],[127,206,73,-0.25616286331853155],[127,206,74,-0.2538186021450748],[127,206,75,-0.2513432150719591],[127,206,76,-0.2487385040466682],[127,206,77,-0.24600643236280273],[127,206,78,-0.24314912707828606],[127,206,79,-0.24016888143659476],[127,207,64,-0.27094194648456993],[127,207,65,-0.269832526441499],[127,207,66,-0.26858266048904467],[127,207,67,-0.267192806820748],[127,207,68,-0.2656635633120422],[127,207,69,-0.2639956699100272],[127,207,70,-0.2621900110262524],[127,207,71,-0.26024761793257245],[127,207,72,-0.2581696711600362],[127,207,73,-0.25595750290089414],[127,207,74,-0.25361259941353964],[127,207,75,-0.2511366034306164],[127,207,76,-0.24853131657013372],[127,207,77,-0.2457987017496307],[127,207,78,-0.24294088560341143],[127,207,79,-0.23996016090280037],[127,208,64,-0.2707096361089216],[127,208,65,-0.2695988775048971],[127,208,66,-0.26834772145935093],[127,208,67,-0.2669566262335723],[127,208,68,-0.2654261897170209],[127,208,69,-0.2637571518158135],[127,208,70,-0.2619503968442072],[127,208,71,-0.26000695591914835],[127,208,72,-0.25792800935784654],[127,208,73,-0.2557148890784562],[127,208,74,-0.2533690810036858],[127,208,75,-0.250892227467563],[127,208,76,-0.24828612962520025],[127,208,77,-0.24555274986559894],[127,208,78,-0.24269421422751736],[127,208,79,-0.23971281481834983],[127,209,64,-0.2704379671171565],[127,209,65,-0.2693254231164406],[127,209,66,-0.2680725463006085],[127,209,67,-0.26667979502303674],[127,209,68,-0.26514776719359934],[127,209,69,-0.2634772026654312],[127,209,70,-0.26166898562467555],[127,209,71,-0.25972414698328705],[127,209,72,-0.2576438667748471],[127,209,73,-0.25542947655347614],[127,209,74,-0.25308246179566063],[127,209,75,-0.2506044643052262],[127,209,76,-0.24799728462129766],[127,209,77,-0.24526288442928712],[127,209,78,-0.24240338897493474],[127,209,79,-0.23942108948134755],[127,210,64,-0.2701221439699809],[127,210,65,-0.26900731193413563],[127,210,66,-0.2677522298765884],[127,210,67,-0.26635735627096524],[127,210,68,-0.26482328905551344],[127,210,69,-0.2631507680176507],[127,210,70,-0.2613406771814881],[127,210,71,-0.2593940471983879],[127,210,72,-0.25731205774052335],[127,210,73,-0.25509603989751795],[127,210,74,-0.2527474785759851],[127,210,75,-0.2502680149021991],[127,210,76,-0.24765944862773848],[127,210,77,-0.24492374053814103],[127,210,78,-0.24206301486459858],[127,210,79,-0.2390795616986331],[127,211,64,-0.26975766113100086],[127,211,65,-0.26863998559207225],[127,211,66,-0.2673821628905878],[127,211,67,-0.2659846516524287],[127,211,68,-0.2644480498538829],[127,211,69,-0.2627730972034419],[127,211,70,-0.26096067752654795],[127,211,71,-0.25901182115336163],[127,211,72,-0.25692770730950976],[127,211,73,-0.2547096665098958],[127,211,74,-0.2523591829553925],[127,211,75,-0.2498778969326445],[127,211,76,-0.24726760721682728],[127,211,77,-0.24453027347739897],[127,211,78,-0.24166801868687027],[127,211,79,-0.2386831315325415],[127,212,64,-0.26934029654996094],[127,212,65,-0.2682191721232269],[127,212,66,-0.2669580252500744],[127,212,67,-0.2655573147445057],[127,212,68,-0.26401763863236205],[127,212,69,-0.26233973652977005],[127,212,70,-0.26052449202452177],[127,212,71,-0.258572935060448],[127,212,72,-0.25648624432475176],[127,212,73,-0.25426574963837945],[127,212,74,-0.2519129343492529],[127,212,75,-0.2494294377285885],[127,212,76,-0.2468170573701497],[127,212,77,-0.24407775159246847],[127,212,78,-0.2412136418440648],[127,212,79,-0.23822701511160793],[127,213,64,-0.26886610520449905],[127,213,65,-0.26774087944126834],[127,213,66,-0.2664757794908055],[127,213,67,-0.26507126439497486],[127,213,68,-0.26352793224264826],[127,213,69,-0.2618465225441656],[127,213,70,-0.2600279186086981],[127,213,71,-0.25807314992458086],[127,213,72,-0.25598339454257557],[127,213,73,-0.2537599814621465],[127,213,74,-0.2514043930205677],[127,213,75,-0.24891826728509214],[127,213,76,-0.246303400448025],[127,213,77,-0.24356174922474105],[127,213,78,-0.24069543325467035],[127,213,79,-0.23770673750520088],[127,214,64,-0.2683314127004336],[127,214,65,-0.2672013888813872],[127,214,66,-0.26593166426044224],[127,214,67,-0.2645226981509471],[127,214,68,-0.2629750887203707],[127,214,69,-0.261289575360088],[127,214,70,-0.25946704105803886],[127,214,71,-0.2575085147743208],[127,214,72,-0.25541517381968415],[127,214,73,-0.2531883462370046],[127,214,74,-0.25082951318555724],[127,214,75,-0.2483403113283198],[127,214,76,-0.24572253522214826],[127,214,77,-0.2429781397108649],[127,214,78,-0.2401092423212815],[127,214,79,-0.23711812566210932],[127,215,64,-0.26773280893057105],[127,215,65,-0.2665972488001348],[127,215,66,-0.2653221878616423],[127,215,67,-0.2639080857474352],[127,215,68,-0.26235554072134337],[127,215,69,-0.26066529204306854],[127,215,70,-0.25883822233540155],[127,215,71,-0.2568753599543394],[127,215,72,-0.2547778813620638],[127,215,73,-0.2525471135028645],[127,215,74,-0.2501845361818227],[127,215,75,-0.24769178444648998],[127,215,76,-0.24507065097140035],[127,215,77,-0.2423230884454588],[127,215,78,-0.23945121196222807],[127,215,79,-0.23645730141306365],[127,216,64,-0.2670671417920457],[127,216,65,-0.2659252682342843],[127,216,66,-0.26464412185464725],[127,216,67,-0.26322416265586446],[127,216,68,-0.26166598901819604],[127,216,69,-0.2599703400576443],[127,216,70,-0.25813809798695375],[127,216,71,-0.25617029047947015],[127,216,72,-0.25406809303581834],[127,216,73,-0.25183283135348167],[127,216,74,-0.2494659836991009],[127,216,75,-0.24696918328372341],[127,216,76,-0.24434422064084493],[127,216,77,-0.24159304600728493],[127,216,78,-0.23871777170691755],[127,216,79,-0.23572067453720735],[127,217,64,-0.26633151096217],[127,217,65,-0.26518251061869036],[127,217,66,-0.2638944947193371],[127,217,67,-0.26246792369250505],[127,217,68,-0.2609033960573591],[127,217,69,-0.25920165077506274],[127,217,70,-0.257363569602749],[127,217,71,-0.2553901794503004],[127,217,72,-0.2532826547399003],[127,217,73,-0.2510423197684377],[127,217,74,-0.2486706510725818],[127,217,75,-0.24616927979676084],[127,217,76,-0.2435399940638845],[127,217,77,-0.24078474134885075],[127,217,78,-0.23790563085486105],[127,217,79,-0.23490493589249284],[127,218,64,-0.2655232617328199],[127,218,65,-0.26436628756317604],[127,218,66,-0.26307058557678464],[127,218,67,-0.26163661668685634],[127,218,68,-0.26006497957643115],[127,218,69,-0.2583564130417807],[127,218,70,-0.25651179833849613],[127,218,71,-0.2545321615303341],[127,218,72,-0.2524186758407774],[127,218,73,-0.2501726640073957],[127,218,74,-0.247795600638823],[127,218,75,-0.24528911457458336],[127,218,76,-0.24265499124760626],[127,218,77,-0.23989517504947355],[127,218,78,-0.23701177169841936],[127,218,79,-0.2340070506100328],[127,219,64,-0.2646399789033518],[127,219,65,-0.26347415268843943],[127,219,66,-0.26216991797029876],[127,219,67,-0.26072773620996903],[127,219,68,-0.25914820628192214],[127,219,69,-0.2574320668087554],[127,219,70,-0.2555801984985163],[127,219,71,-0.2535936264847183],[127,219,72,-0.25147352266901635],[127,219,73,-0.24922120806661774],[127,219,74,-0.24683815515425167],[127,219,75,-0.24432599022092538],[127,219,76,-0.2416864957213105],[127,219,77,-0.238921612631799],[127,219,78,-0.2360334428092533],[127,219,79,-0.23302425135239746],[127,220,64,-0.26367948073202174],[127,220,65,-0.2625038955209503],[127,220,66,-0.2611902537059293],[127,220,67,-0.2597390173626858],[127,220,68,-0.2581507855873426],[127,220,69,-0.25642629682149565],[127,220,70,-0.2545664311798532],[127,220,71,-0.25257221278050246],[127,220,72,-0.25044481207776303],[127,220,73,-0.2481855481977171],[127,220,74,-0.24579589127622237],[127,220,75,-0.24327746479965118],[127,220,76,-0.24063204794819015],[127,220,77,-0.23786157794174223],[127,220,78,-0.23496815238845614],[127,220,79,-0.23195403163583006],[127,221,64,-0.26263981294594796],[127,221,65,-0.26145353544688343],[127,221,66,-0.26012958675247944],[127,221,67,-0.2586684296238344],[127,221,68,-0.25707066341168283],[127,221,69,-0.2553370263709157],[127,221,70,-0.2534683979775876],[127,221,71,-0.2514658012484766],[127,221,72,-0.2493304050631603],[127,221,73,-0.24706352648869034],[127,221,74,-0.2446666331066797],[127,221,75,-0.242141345343041],[127,221,76,-0.23948943880020968],[127,221,77,-0.2367128465918994],[127,221,78,-0.23381366168040763],[127,221,79,-0.2307941392164241],[127,222,64,-0.2615192428096027],[127,222,65,-0.26032131572506834],[127,222,66,-0.25898613720100405],[127,222,67,-0.257514170758365],[127,222,68,-0.25590601603826735],[127,222,69,-0.25416241110498183],[127,222,70,-0.2522842347513333],[127,222,71,-0.25027250880657315],[127,222,72,-0.24812840044668527],[127,222,73,-0.24585322450721148],[127,222,74,-0.2434484457984074],[127,222,75,-0.24091568142296882],[127,222,76,-0.23825670309616342],[127,222,77,-0.23547343946841148],[127,222,78,-0.23256797845033805],[127,222,79,-0.229542569540246],[127,223,64,-0.26031625325180174],[127,223,65,-0.25910569755892676],[127,223,66,-0.2577583452837672],[127,223,67,-0.25627466078539507],[127,223,68,-0.2546552440339498],[127,223,69,-0.2529008329011101],[127,223,70,-0.25101230545288633],[127,223,71,-0.24899068224479393],[127,223,72,-0.24683712861937634],[127,223,73,-0.24455295700615542],[127,223,74,-0.24213962922382737],[127,223,75,-0.23959875878493853],[127,223,76,-0.23693211320288066],[127,223,77,-0.2341416163012452],[127,223,78,-0.23122935052556215],[127,223,79,-0.2281975592573705],[127,224,64,-0.2590295370512433],[127,224,65,-0.2578053542274489],[127,224,66,-0.25644486545270906],[127,224,67,-0.25494853600621603],[127,224,68,-0.2533169662287028],[127,224,69,-0.25155089379937756],[127,224,70,-0.24965119601507935],[127,224,71,-0.24761889207172472],[127,224,72,-0.24545514534800272],[127,224,73,-0.24316126569140617],[127,224,74,-0.2407387117064098],[127,224,75,-0.23818909304503466],[127,224,76,-0.23551417269963548],[127,224,77,-0.23271586929795118],[127,224,78,-0.2297962594004458],[127,224,79,-0.22675757979988387],[127,225,64,-0.25765799108057585],[127,225,65,-0.2564191652751895],[127,225,66,-0.2550445605174031],[127,225,67,-0.25353464309224216],[127,225,68,-0.25189001375558506],[127,225,69,-0.2501114099965206],[127,225,70,-0.24819970830182247],[127,225,71,-0.2461559264226102],[127,225,72,-0.24398122564315683],[127,225,73,-0.24167691305192884],[127,225,74,-0.2392444438146697],[127,225,75,-0.23668542344976673],[127,225,76,-0.2340016101057366],[127,225,77,-0.23119491684087323],[127,225,78,-0.22826741390507965],[127,225,79,-0.22522133102383268],[127,226,64,-0.2562007106089572],[127,226,65,-0.2549462107612426],[127,226,66,-0.25355649584246365],[127,226,67,-0.2520320332328616],[127,226,68,-0.2503734241510396],[127,226,69,-0.24858140590068334],[127,226,70,-0.2466568541192864],[127,226,71,-0.2446007850289511],[127,226,72,-0.2424143576892258],[127,226,73,-0.2400988762520625],[127,226,74,-0.23765579221870736],[127,226,75,-0.23508670669876275],[127,226,76,-0.23239337267125804],[127,226,77,-0.2295776972477701],[127,226,78,-0.22664174393761782],[127,226,79,-0.22358773491507833],[127,227,64,-0.25465698366317],[127,227,65,-0.25338576556726344],[127,227,66,-0.2519799336044686],[127,227,67,-0.2504399563432549],[127,227,68,-0.24876643551559718],[127,227,69,-0.24696010824698256],[127,227,70,-0.24502184928830073],[127,227,71,-0.24295267324969283],[127,227,72,-0.24075373683631507],[127,227,73,-0.23842634108610627],[127,227,74,-0.23597193360936575],[127,227,75,-0.23339211083038702],[127,227,76,-0.2306886202309789],[127,227,77,-0.22786336259591788],[127,227,78,-0.22491839426035498],[127,227,79,-0.2218559293591259],[127,228,64,-0.25302628544726535],[127,228,65,-0.2517372937645094],[127,228,66,-0.25031432710837553],[127,228,67,-0.24875785533215777],[127,228,68,-0.24706848073495324],[127,228,69,-0.24524694027386074],[127,228,70,-0.24329410777793592],[127,228,71,-0.2412109961639758],[127,228,72,-0.23899875965409378],[127,228,73,-0.23665869599516787],[127,228,74,-0.23419224867997446],[127,228,75,-0.23160100917024862],[127,228,76,-0.22888671912150604],[127,228,77,-0.22605127260966762],[127,228,78,-0.22309671835951106],[127,228,79,-0.22002526197490035],[127,229,64,-0.2513082728206921],[127,229,65,-0.25000044303985347],[127,229,66,-0.24855931516337726],[127,229,67,-0.2469853604295158],[127,229,68,-0.2452791817613723],[127,229,69,-0.24344151596018349],[127,229,70,-0.2414732359002234],[127,229,71,-0.23937535272540145],[127,229,72,-0.2371490180475122],[127,229,73,-0.234795526146227],[127,229,74,-0.2323163161706311],[127,229,75,-0.22971297434255478],[127,229,76,-0.22698723616152827],[127,229,77,-0.22414098861140452],[127,229,78,-0.2211762723686741],[127,229,79,-0.21809528401241896],[127,230,64,-0.2495027788349875],[127,230,65,-0.24817503918085038],[127,230,66,-0.24671471651828414],[127,230,67,-0.2451222835741178],[127,230,68,-0.2433983439555023],[127,230,69,-0.2415436343231574],[127,230,70,-0.23955902656609562],[127,230,71,-0.23744552997789448],[127,230,72,-0.2352042934344789],[127,230,73,-0.23283660757349833],[127,230,74,-0.23034390697510687],[127,230,75,-0.227727772344393],[127,230,76,-0.224989932695288],[127,230,77,-0.22213226753599857],[127,230,78,-0.2191568090559871],[127,230,79,-0.21606574431444658],[127,231,64,-0.2476098073289984],[127,231,65,-0.2462610806198231],[127,231,66,-0.24478052435639486],[127,231,67,-0.24316861286116842],[127,231,68,-0.24142595048856297],[127,231,69,-0.23955327377704083],[127,231,70,-0.23755145360251118],[127,231,71,-0.23542149733313067],[127,231,72,-0.23316455098545885],[127,231,73,-0.23078190138205734],[127,231,74,-0.2282749783103376],[127,231,75,-0.22564535668290642],[127,231,76,-0.22289475869923603],[127,231,77,-0.22002505600870725],[127,231,78,-0.21703827187504532],[127,231,79,-0.21393658334209853],[127,232,64,-0.24562952758257928],[127,232,65,-0.24425873303691448],[127,232,66,-0.2427569008498034],[127,232,67,-0.24112450704975108],[127,232,68,-0.2393621568048564],[127,232,69,-0.23747058655258624],[127,232,70,-0.23545066613070997],[127,232,71,-0.23330340090946833],[127,232,72,-0.2310299339249372],[127,232,73,-0.2286315480136737],[127,232,74,-0.22610966794844634],[127,232,75,-0.22346586257530465],[127,232,76,-0.22070184695180917],[127,232,77,-0.21781948448647437],[127,232,78,-0.2148207890794409],[127,232,79,-0.2117079272643314],[127,233,64,-0.24356226902885936],[127,233,65,-0.24216832402219868],[127,233,66,-0.24064417177323882],[127,233,67,-0.23899029013027118],[127,233,68,-0.2372072851446908],[127,233,69,-0.23529589317731558],[127,233,70,-0.23325698300569608],[127,233,71,-0.23109155793248803],[127,233,72,-0.22880075789485],[127,233,73,-0.22638586157495144],[127,233,74,-0.22384828851139604],[127,233,75,-0.2211896012118122],[127,233,76,-0.21841150726643455],[127,233,77,-0.2155158614627266],[127,233,78,-0.21250466790106326],[127,233,79,-0.209380082111425],[127,234,64,-0.24140851602504032],[127,234,65,-0.23999033779681223],[127,234,66,-0.2384428211773918],[127,234,67,-0.23676644595184404],[127,234,68,-0.2349618191276831],[127,234,69,-0.23302967701658428],[127,234,70,-0.23097088731690585],[127,234,71,-0.2287864511970943],[127,234,72,-0.22647750537993439],[127,234,73,-0.22404532422773182],[127,234,74,-0.22149132182822873],[127,234,75,-0.2188170540815092],[127,234,76,-0.21602422078771522],[127,234,77,-0.2131146677356236],[127,234,78,-0.21009038879210462],[127,234,79,-0.20695352799241107],[127,235,64,-0.23916890268166302],[127,235,65,-0.23772540999304403],[127,235,66,-0.23615348612167353],[127,235,67,-0.23445361290956102],[127,235,68,-0.23262639839637145],[127,235,69,-0.23067257887537207],[127,235,70,-0.2285930209499979],[127,235,71,-0.22638872359111573],[127,235,72,-0.22406082019494034],[127,235,73,-0.22161058064169736],[127,235,74,-0.21903941335482902],[127,235,75,-0.216348867361001],[127,235,76,-0.2135406343507319],[127,235,77,-0.21061655073969476],[127,235,78,-0.20757859973071024],[127,235,79,-0.20442891337638358],[127,236,64,-0.23684420775045245],[127,236,65,-0.23537432249349255],[127,236,66,-0.23377695146651012],[127,236,67,-0.23205257869174656],[127,236,68,-0.2302018133202537],[127,236,69,-0.22822539166091327],[127,236,70,-0.22612417920987948],[127,236,71,-0.2238991726805203],[127,236,72,-0.22155150203381258],[127,236,73,-0.21908243250928827],[127,236,74,-0.21649336665632346],[127,236,75,-0.2137858463660316],[127,236,76,-0.21096155490358004],[127,236,77,-0.20802231894098344],[127,236,78,-0.20497011059038894],[127,236,79,-0.20180704943780603],[127,237,64,-0.2344353495706898],[127,237,65,-0.23293799832924056],[127,237,66,-0.23131414472512857],[127,237,67,-0.2295642750871586],[127,237,68,-0.2276889997601993],[127,237,69,-0.2256890551061157],[127,237,70,-0.2235653055049165],[127,237,71,-0.22131874535619045],[127,237,72,-0.21895050108079495],[127,237,73,-0.21646183312288336],[127,237,74,-0.21385413795206953],[127,237,75,-0.21112895006599053],[127,237,76,-0.2082879439930856],[127,237,77,-0.2053329362956423],[127,237,78,-0.20226588757312947],[127,237,79,-0.19908890446576832],[127,238,64,-0.23194338107405033],[127,238,65,-0.23041749663698496],[127,238,66,-0.22876613097476473],[127,238,67,-0.22698977285205935],[127,238,68,-0.22508903389316748],[127,238,69,-0.22306465055369984],[127,238,70,-0.22091748609225903],[127,238,71,-0.21864853254219407],[127,238,72,-0.2162589126833886],[127,238,73,-0.21374988201417322],[127,238,74,-0.21112283072315685],[127,238,75,-0.20837928566124098],[127,238,76,-0.20552091231363268],[127,238,77,-0.20254951677191002],[127,238,78,-0.19946704770615553],[127,238,79,-0.1962755983371126],[127,239,64,-0.22936948484803155],[127,239,65,-0.2278140076752453],[127,239,66,-0.22613410782742238],[127,239,67,-0.22433027663729388],[127,239,68,-0.22240312709736532],[127,239,69,-0.22035339580119118],[127,239,70,-0.21818194488441867],[127,239,71,-0.21588976396568038],[127,239,72,-0.21347797208729402],[127,239,73,-0.21094781965586273],[127,239,74,-0.20830069038256538],[127,239,75,-0.2055381032234067],[127,239,76,-0.20266171431923907],[127,239,77,-0.1996733189356099],[127,239,78,-0.19657485340245384],[127,239,79,-0.19336839705357933],[127,240,64,-0.22671496825786375],[127,240,65,-0.2251288478995469],[127,240,66,-0.22341940046007902],[127,240,67,-0.22158711997526304],[127,240,68,-0.21963262089773183],[127,240,69,-0.2175566400066552],[127,240,70,-0.21536003831698147],[127,240,71,-0.21304380298829262],[127,240,72,-0.21060904923323043],[127,240,73,-0.20805702222558853],[127,240,74,-0.20538909900785907],[127,240,75,-0.20260679039850416],[127,240,76,-0.19971174289876292],[127,240,77,-0.19670574059905],[127,240,78,-0.19359070708496184],[127,240,79,-0.1903687073428444],[127,241,64,-0.22398125862699292],[127,241,65,-0.22236345509666322],[127,241,66,-0.22062345670441819],[127,241,67,-0.21876176032687833],[127,241,68,-0.21677898197183942],[127,241,69,-0.2146758586552624],[127,241,70,-0.21245325027754847],[127,241,71,-0.2101121414991851],[127,241,72,-0.20765364361571736],[127,241,73,-0.20507899643214256],[127,241,74,-0.20238957013651093],[127,241,75,-0.1995868671730101],[127,241,76,-0.19667252411433778],[127,241,77,-0.1936483135334226],[127,241,78,-0.19051614587450794],[127,241,79,-0.18727807132355134],[127,242,64,-0.2211698984760101],[127,242,65,-0.21951938357779555],[127,242,66,-0.21774784219597332],[127,242,67,-0.21585577418837587],[127,242,68,-0.21384379721608615],[127,242,69,-0.21171264858655914],[127,242,70,-0.2094631870957765],[127,242,71,-0.2070963948695158],[127,242,72,-0.20461337920369316],[127,242,73,-0.2020153744038723],[127,242,74,-0.19930374362372738],[127,242,75,-0.1964799807027341],[127,242,76,-0.1935457120028964],[127,242,77,-0.19050269824456578],[127,242,78,-0.1873528363413688],[127,242,79,-0.18409816123419787],[127,243,64,-0.2182825408201733],[127,243,65,-0.2165982994308352],[127,243,66,-0.2147942355828214],[127,243,67,-0.21287085225813673],[127,243,68,-0.2108287688723266],[127,243,69,-0.20866872308259143],[127,243,70,-0.20639157259466956],[127,243,71,-0.2039982969685712],[127,243,72,-0.2014899994231224],[127,243,73,-0.19886790863941184],[127,243,74,-0.19613338056292617],[127,243,75,-0.19328790020465225],[127,243,76,-0.190333083440949],[127,243,77,-0.18727067881224913],[127,243,78,-0.1841025693206062],[127,243,79,-0.18083077422603877],[127,244,64,-0.21532094452545847],[127,244,65,-0.21360197583164375],[127,244,66,-0.21176442379376825],[127,244,67,-0.20980879466344704],[127,244,68,-0.2077357097148782],[127,244,69,-0.20554590701681918],[127,244,70,-0.20324024320305556],[127,244,71,-0.20081969524144982],[127,244,72,-0.19828536220152382],[127,244,73,-0.195638467020675],[127,244,74,-0.1928803582688029],[127,244,75,-0.19001251191163393],[127,244,76,-0.1870365330725391],[127,244,77,-0.1839541577929108],[127,244,78,-0.18076725479110956],[127,244,79,-0.17747782721993643],[127,245,64,-0.21228696972305972],[127,245,65,-0.21053228841427074],[127,245,66,-0.20866029736594094],[127,245,67,-0.20667150624711816],[127,245,68,-0.2045665382978178],[127,245,69,-0.2023461320637331],[127,245,70,-0.2000111431291619],[127,245,71,-0.1975625458482242],[127,245,72,-0.19500143507433487],[127,245,73,-0.19232902788802564],[127,245,74,-0.18954666532289466],[127,245,75,-0.1866558140899719],[127,245,76,-0.18365806830029463],[127,245,77,-0.1805551511857586],[127,245,78,-0.17734891681825782],[127,245,79,-0.17404135182706515],[127,246,64,-0.2091825732824869],[127,246,65,-0.20739121070026223],[127,246,66,-0.20548384583193924],[127,246,67,-0.20346099191411937],[127,246,68,-0.20132327426272456],[127,246,69,-0.19907143196933597],[127,246,70,-0.19670631959545049],[127,246,71,-0.1942289088647402],[127,246,72,-0.19164029035327212],[127,246,73,-0.18894167517778604],[127,246,74,-0.18613439668180742],[127,246,75,-0.18321991211988298],[127,246,76,-0.1801998043397357],[127,246,77,-0.17707578346240238],[127,246,78,-0.17384968856036687],[127,246,79,-0.17052348933364248],[127,247,64,-0.20600980434319238],[127,247,65,-0.2041808095869837],[127,247,66,-0.20223715316647817],[127,247,67,-0.20017935203814974],[127,247,68,-0.19800803370679798],[127,247,69,-0.19572393788240883],[127,247,70,-0.19332791813463523],[127,247,71,-0.19082094354497559],[127,247,72,-0.1882041003566125],[127,247,73,-0.18547859362200736],[127,247,74,-0.1826457488480282],[127,247,75,-0.17970701363889863],[127,247,76,-0.17666395933676338],[127,247,77,-0.17351828265993685],[127,247,78,-0.17027180733884284],[127,247,79,-0.16692648574960356],[127,248,64,-0.2027707999046413],[127,248,65,-0.2009032408948792],[127,248,66,-0.1989223932924291],[127,248,67,-0.19682877792806508],[127,248,68,-0.19462302461125858],[127,248,69,-0.1923058737464789],[127,248,70,-0.1898781779467955],[127,248,71,-0.18734090364487166],[127,248,72,-0.184695132701304],[127,248,73,-0.1819420640104097],[127,248,74,-0.1790830151032311],[127,248,75,-0.1761194237480549],[127,248,76,-0.17305284954823452],[127,248,77,-0.16988497553738313],[127,248,78,-0.16661760977194873],[127,248,79,-0.16325268692112638],[127,249,64,-0.19946778047498626],[127,249,65,-0.19756074497382192],[127,249,66,-0.1955418256464313],[127,249,67,-0.1934115473543223],[127,249,68,-0.1911705423302047],[127,249,69,-0.1888195517526533],[127,249,70,-0.186359427317752],[127,249,71,-0.18379113280780568],[127,249,72,-0.18111574565708],[127,249,73,-0.1783344585146679],[127,249,74,-0.17544858080425163],[127,249,75,-0.1724595402810588],[127,249,76,-0.16936888458580157],[127,249,77,-0.16617828279566593],[127,249,78,-0.16288952697236148],[127,249,79,-0.15950453370718842],[127,250,64,-0.1961030457782681],[127,250,65,-0.19415564236848382],[127,250,66,-0.19209779080398748],[127,250,67,-0.18993002013536375],[127,250,68,-0.18765296513983776],[127,250,69,-0.18526736785324127],[127,250,70,-0.1827740790986273],[127,250,71,-0.18017406001162506],[127,250,72,-0.1774683835624914],[127,250,73,-0.17465823607495845],[127,250,74,-0.17174491874164655],[127,250,75,-0.16872984913634292],[127,250,76,-0.16561456272293162],[127,250,77,-0.16240071436104342],[127,250,78,-0.15909007980843703],[127,250,79,-0.15568455722006636],[127,251,64,-0.1926789705200589],[127,251,65,-0.19069032954263265],[127,251,66,-0.18859270616395896],[127,251,67,-0.18638663378385056],[127,251,68,-0.18407274984797328],[127,251,69,-0.18165179733607006],[127,251,70,-0.1791246262464954],[127,251,71,-0.17649219507714886],[127,251,72,-0.17375557230276673],[127,251,73,-0.17091593784867076],[127,251,74,-0.1679745845607411],[127,251,75,-0.1649329196719167],[127,251,76,-0.16179246626500798],[127,251,77,-0.1585548647318885],[127,251,78,-0.15522187422908007],[127,251,79,-0.1517953741296827],[127,252,64,-0.18919800021170952],[127,252,65,-0.18716727466252814],[127,252,66,-0.18502906169263156],[127,252,67,-0.18278389921291893],[127,252,68,-0.18043242746400445],[127,252,69,-0.17797539045967337],[127,252,70,-0.1754136374262999],[127,252,71,-0.17274812423831365],[127,252,72,-0.16997991484967678],[127,252,73,-0.16711018272146994],[127,252,74,-0.1641402122453508],[127,252,75,-0.16107140016319543],[127,252,76,-0.15790525698269942],[127,252,77,-0.15464340838901225],[127,252,78,-0.1512875966524131],[127,252,79,-0.14783968203198627],[127,253,64,-0.18566264705312951],[127,253,65,-0.1835890134393351],[127,253,66,-0.18140941572726887],[127,253,67,-0.17912439650237655],[127,253,68,-0.17673459892924204],[127,253,69,-0.17424076814926814],[127,253,70,-0.17164375267395682],[127,253,71,-0.16894450577388365],[127,253,72,-0.16614408686332183],[127,253,73,-0.1632436628806191],[127,253,74,-0.1602445096640881],[127,253,75,-0.15714801332372197],[127,253,76,-0.15395567160851176],[127,253,77,-0.15066909526943872],[127,253,78,-0.14729000941815074],[127,253,79,-0.14382025488127925],[127,254,64,-0.18207548587399736],[127,254,65,-0.17995814503046048],[127,254,66,-0.1777363908390594],[127,254,67,-0.17541077072474276],[127,254,68,-0.172981930907529],[127,254,69,-0.17045061775341885],[127,254,70,-0.16781767912054024],[127,254,71,-0.1650840657006195],[127,254,72,-0.16225083235573656],[127,254,73,-0.15931913945046372],[127,254,74,-0.15629025417915232],[127,254,75,-0.15316555188867664],[127,254,76,-0.1499465173964134],[127,254,77,-0.14663474630352735],[127,254,78,-0.14323194630357539],[127,254,79,-0.13973993848638278],[127,255,64,-0.17843915013358685],[127,255,65,-0.17627732799999385],[127,255,66,-0.17401266975563728],[127,255,67,-0.17164572783131649],[127,255,68,-0.16917715163631664],[127,255,69,-0.1666076888615814],[127,255,70,-0.16393818677774297],[127,255,71,-0.16116959352810123],[127,255,72,-0.15830295941650885],[127,255,73,-0.15533943819026885],[127,255,74,-0.15228028831779727],[127,255,75,-0.14912687426137183],[127,255,76,-0.1458806677447373],[127,255,77,-0.14254324901564208],[127,255,78,-0.13911630810331566],[127,255,79,-0.13560164607084357],[127,256,64,-0.17475632797912],[127,256,65,-0.17254927633816508],[127,256,66,-0.17024099134309267],[127,256,67,-0.16783203059818452],[127,256,68,-0.16532304683811427],[127,256,69,-0.16271478918243282],[127,256,70,-0.16000810438452145],[127,256,71,-0.1572039380751108],[127,256,72,-0.1543033360003192],[127,256,73,-0.15130744525431994],[127,256,74,-0.1482175155063864],[127,256,75,-0.14503490022263865],[127,256,76,-0.14176105788226212],[127,256,77,-0.13839755318827174],[127,256,78,-0.13494605827283157],[127,256,79,-0.13140835389708638],[127,257,64,-0.17102975836255002],[127,257,65,-0.16877675553972038],[127,257,66,-0.16642414664737082],[127,257,67,-0.1639724946320688],[127,257,68,-0.16142245569221048],[127,257,69,-0.15877478048288574],[127,257,70,-0.1560303153148176],[127,257,71,-0.15319000334747146],[127,257,72,-0.15025488577629276],[127,257,73,-0.14722610301417738],[127,257,74,-0.14410489586692332],[127,257,75,-0.14089260670299575],[127,257,76,-0.13759068061736401],[127,257,77,-0.13420066658949292],[127,257,78,-0.130724218635495],[127,257,79,-0.12716309695439987],[127,258,64,-0.16726222721596284],[127,258,65,-0.1649625787414084],[127,258,66,-0.16256497499524847],[127,258,67,-0.16006998443620624],[127,258,68,-0.15747826686686084],[127,258,69,-0.154790574587987],[127,258,70,-0.15200775354656254],[127,258,71,-0.14913074447754515],[127,258,72,-0.14616058403937193],[127,258,73,-0.14309840594329037],[127,258,74,-0.13994544207626802],[127,258,75,-0.13670302361781028],[127,258,76,-0.13337258215044978],[127,258,77,-0.1299556507639853],[127,258,78,-0.12645386515347934],[127,258,79,-0.12286896471096909],[127,259,64,-0.16345656368550443],[127,259,65,-0.16110960291848025],[127,259,66,-0.1586663601548018],[127,259,67,-0.1561274095361686],[127,259,68,-0.15349341461184773],[127,259,69,-0.15076512944159937],[127,259,70,-0.14794339969186165],[127,259,71,-0.14502916372528918],[127,259,72,-0.14202345368360536],[127,259,73,-0.13892739656387432],[127,259,74,-0.13574221528793717],[127,259,75,-0.13246922976534814],[127,259,76,-0.12910985794956764],[127,259,77,-0.12566561688749633],[127,259,78,-0.12213812376235234],[127,259,79,-0.11852909692985303],[127,260,64,-0.159615636423736],[127,260,65,-0.15722072514010754],[127,260,66,-0.15473122655525479],[127,260,67,-0.15214772066551696],[127,260,68,-0.1494708749113079],[127,260,69,-0.1467014452277684],[127,260,70,-0.14384027708825536],[127,260,71,-0.14088830654076556],[127,260,72,-0.13784656123725114],[127,260,73,-0.13471616145593684],[127,260,74,-0.1314983211163786],[127,260,75,-0.12819434878760383],[127,260,76,-0.12480564868908722],[127,260,77,-0.12133372168464696],[127,260,78,-0.1177801662692653],[127,260,79,-0.1141466795487911],[127,261,64,-0.15574234994061165],[127,261,65,-0.15329887888391125],[127,261,66,-0.15076253556641545],[127,261,67,-0.14813390601149368],[127,261,68,-0.14541366169703174],[127,261,69,-0.1426025605529727],[127,261,70,-0.1397014479512645],[127,261,71,-0.13671125768831316],[127,261,72,-0.13363301295989938],[127,261,73,-0.13046782732866924],[127,261,74,-0.12721690568393385],[127,261,75,-0.12388154519412609],[127,261,76,-0.12046313625166122],[127,261,77,-0.11696316341029073],[127,261,78,-0.11338320631495002],[127,261,79,-0.10972494062406202],[127,262,64,-0.15183964101297853],[127,262,65,-0.1493470304095061],[127,262,66,-0.1467632818375959],[127,262,67,-0.14408898752065252],[127,262,68,-0.14132482312213285],[127,262,69,-0.13847154868916123],[127,262,70,-0.13553000958811484],[127,262,71,-0.1325011374322767],[127,262,72,-0.1293859510015144],[127,262,73,-0.12618555715409735],[127,262,74,-0.12290115173038435],[127,262,75,-0.11953402044873174],[127,262,76,-0.116085539793368],[127,262,77,-0.11255717789432468],[127,262,78,-0.10895049539942392],[127,262,79,-0.10526714633828399],[127,263,64,-0.14791047515250683],[127,263,65,-0.14536817519095957],[127,263,66,-0.142736489695916],[127,263,67,-0.1400160172643221],[127,263,68,-0.13720743789498324],[127,263,69,-0.13431151387746904],[127,263,70,-0.13132909067253862],[127,263,71,-0.12826109778418915],[127,263,72,-0.1251085496232855],[127,263,73,-0.12187254636288225],[127,263,74,-0.11855427478496977],[127,263,75,-0.11515500911899762],[127,263,76,-0.11167611187191723],[127,263,77,-0.10811903464983585],[127,263,78,-0.10448531897128244],[127,263,79,-0.100776597072045],[127,264,64,-0.1439578431322508],[127,264,65,-0.141365334408375],[127,264,66,-0.13868520960420633],[127,264,67,-0.13591807386412075],[127,264,68,-0.13306461167363465],[127,264,69,-0.13012558769283417],[127,264,70,-0.1271018475808705],[127,264,71,-0.1239943188116277],[127,264,72,-0.12080401148051467],[127,264,73,-0.117532019102499],[127,264,74,-0.11417951940110943],[127,264,75,-0.11074777508876249],[127,264,76,-0.1072381346381559],[127,264,77,-0.10365203304481907],[127,264,78,-0.09999099258082111],[127,264,79,-0.09625662353959846],[127,265,64,-0.13998475757167017],[127,265,65,-0.13734155149842425],[127,265,66,-0.1346125146783249],[127,265,67,-0.13179825897733866],[127,265,68,-0.12889947352053926],[127,265,69,-0.12591692546932798],[127,265,70,-0.1228514607892559],[127,265,71,-0.11970400500855782],[127,265,72,-0.11647556396734848],[127,265,73,-0.11316722455760181],[127,265,74,-0.10978015545363184],[127,265,75,-0.10631560783344202],[127,265,76,-0.1027749160906768],[127,265,77,-0.09915949853726896],[127,265,78,-0.09547085809678457],[127,265,79,-0.09171058298842416],[127,266,64,-0.1359942495802431],[127,266,65,-0.13329988876395993],[127,266,66,-0.13052149726403134],[127,266,67,-0.12765969384232734],[127,266,68,-0.1247151724177113],[127,266,69,-0.12168870278634197],[127,266,70,-0.11858113133210901],[127,266,71,-0.11539338172730595],[127,266,72,-0.11212645562350154],[127,266,73,-0.10878143333272122],[127,266,74,-0.10535947449866234],[127,266,75,-0.10186181875830874],[127,266,76,-0.09828978639367808],[127,266,77,-0.09464477897379525],[127,266,78,-0.09092827998689468],[127,266,79,-0.08714185546280895],[127,267,64,-0.13198936545949064],[127,267,65,-0.12924342404252964],[127,267,66,-0.12641526557322846],[127,267,67,-0.12350551588370856],[127,267,68,-0.12051487384213894],[127,267,69,-0.11744411201543825],[127,267,70,-0.11429407732163138],[127,267,71,-0.11106569167197033],[127,267,72,-0.10775995260277227],[127,267,73,-0.10437793389709493],[127,267,74,-0.100920786195965],[127,267,75,-0.09738973759953157],[127,267,76,-0.09378609425787388],[127,267,77,-0.0901112409515597],[127,267,78,-0.08636664166195401],[127,267,79,-0.08255384013123818],[127,268,64,-0.12797316346362836],[127,268,65,-0.12517524743400754],[127,268,66,-0.12229694037979222],[127,268,67,-0.11933887537762489],[127,268,68,-0.1163017564016755],[127,268,69,-0.1131863589280922],[127,268,70,-0.10999353052861932],[127,268,71,-0.10672419145349604],[127,268,72,-0.10337933520358739],[127,268,73,-0.09996002909186974],[127,268,74,-0.09646741479398141],[127,268,75,-0.09290270888821767],[127,268,76,-0.08926720338469368],[127,268,77,-0.0855622662437735],[127,268,78,-0.08178934188376602],[127,268,79,-0.07794995167784585],[127,269,64,-0.12394871061874158],[127,269,65,-0.12109845808723863],[127,269,66,-0.11816965177488947],[127,269,67,-0.11516293217692802],[127,269,68,-0.11207900853129693],[127,269,69,-0.10891865936421985],[127,269,70,-0.10568273302445103],[127,269,71,-0.10237214820631069],[127,269,72,-0.098987894461464],[127,269,73,-0.09553103269956087],[127,269,74,-0.09200269567744929],[127,269,75,-0.08840408847734232],[127,269,76,-0.08473648897365987],[127,269,77,-0.08100124828864635],[127,269,78,-0.07719979123676124],[127,269,79,-0.07333361675780509],[127,270,64,-0.11991907960038428],[127,270,65,-0.11701616104559542],[127,270,66,-0.11403653598167252],[127,270,67,-0.11098085249619732],[127,270,68,-0.10784982524962422],[127,270,69,-0.10464423596138117],[127,270,70,-0.10136493388414497],[127,270,71,-0.09801283626640611],[127,270,72,-0.09458892880327574],[127,270,73,-0.09109426607565757],[127,270,74,-0.08752997197749124],[127,270,75,-0.08389724013145194],[127,270,76,-0.08019733429282655],[127,270,77,-0.07643158874166484],[127,270,78,-0.07260140866320663],[127,270,79,-0.06870827051654399],[127,271,64,-0.11588734566980397],[127,271,65,-0.11293146415165145],[127,271,66,-0.10990073222956637],[127,271,67,-0.10679580575680081],[127,271,68,-0.10361740497592237],[127,271,69,-0.10036631494487475],[127,271,70,-0.09704338595070733],[127,271,71,-0.09364953391108727],[127,271,72,-0.09018574076354857],[127,271,73,-0.08665305484260005],[127,271,74,-0.08305259124439762],[127,271,75,-0.07938553217936928],[127,271,76,-0.07565312731250784],[127,271,77,-0.07185669409143558],[127,271,78,-0.06799761806223648],[127,271,79,-0.06407735317301871],[127,272,64,-0.111856583668692],[127,272,65,-0.10884747501087011],[127,272,66,-0.10576537968803901],[127,272,67,-0.1026109614918943],[127,272,68,-0.09938494640746898],[127,272,69,-0.09608812297861868],[127,272,70,-0.09272134266066012],[127,272,71,-0.08928552016028118],[127,272,72,-0.08578163376267345],[127,272,73,-0.0822107256460135],[127,272,74,-0.07857390218299204],[127,272,75,-0.07487233422978645],[127,272,76,-0.07110725740218615],[127,272,77,-0.06727997233897787],[127,272,78,-0.06339184495258604],[127,272,79,-0.05944430666692935],[127,273,64,-0.10782986507235603],[127,273,65,-0.10476729801420237],[127,273,66,-0.10163361445975222],[127,273,67,-0.09842948631124893],[127,273,68,-0.09515564545718541],[127,273,69,-0.0918128840767054],[127,273,70,-0.08840205493063918],[127,273,71,-0.08492407163928994],[127,273,72,-0.08137990894692332],[127,273,73,-0.07777060297308863],[127,273,74,-0.07409725145046436],[127,273,75,-0.07036101394963146],[127,273,76,-0.066563112090478],[127,273,77,-0.06270482974034552],[127,273,78,-0.05878751319890929],[127,273,79,-0.05481257136975787],[127,274,64,-0.10381025510151864],[127,274,65,-0.10069403141980426],[127,274,66,-0.0975085666333026],[127,274,67,-0.09425454092612373],[127,274,68,-0.09093269225174433],[127,274,69,-0.0875438165758497],[127,274,70,-0.0840887681052821],[127,274,71,-0.08056845950321395],[127,274,72,-0.07698386209049984],[127,274,73,-0.07333600603333273],[127,274,74,-0.06962598051689906],[127,274,75,-0.06585493390543573],[127,274,76,-0.06202407388839365],[127,274,77,-0.05813466761281477],[127,274,78,-0.054188041801919606],[127,274,79,-0.05018558285986613],[127,275,64,-0.09980080989264245],[127,275,65,-0.09663076449376795],[127,275,66,-0.09339335739544741],[127,275,67,-0.09008927723407362],[127,275,68,-0.08671926819004899],[127,275,69,-0.08328413016862218],[127,275,70,-0.07978471896629674],[127,275,71,-0.07622194642293317],[127,275,72,-0.07259678055949681],[127,275,73,-0.06891024570157978],[127,275,74,-0.06516342258838648],[127,275,75,-0.061357448467592224],[127,275,76,-0.05749351717577306],[127,275,77,-0.053572879204520196],[127,275,78,-0.04959684175223006],[127,275,79,-0.04556676876153487],[127,276,64,-0.0958045737266755],[127,276,65,-0.09258057470976216],[127,276,66,-0.0892910962027097],[127,276,67,-0.08593683546358832],[127,276,68,-0.0825185430619726],[127,276,69,-0.0790370229973561],[127,276,70,-0.07549313280259917],[127,276,71,-0.07188778363253268],[127,276,72,-0.06822194033766793],[127,276,73,-0.0644966215231445],[127,276,74,-0.06071289959260118],[127,276,75,-0.056871900777382856],[127,276,76,-0.052974805150781346],[127,276,77,-0.0490228466274209],[127,276,78,-0.04501731294778166],[127,276,79,-0.04095954564782611],[127,277,64,-0.09182457631642538],[127,277,65,-0.08854652500779331],[127,277,66,-0.0852048780125742],[127,277,67,-0.08180034137877423],[127,277,68,-0.07833367222757626],[127,277,69,-0.07480567880894862],[127,277,70,-0.07121722054174245],[127,277,71,-0.06756920803839955],[127,277,72,-0.06386260311422448],[127,277,73,-0.06009841878134925],[127,277,74,-0.05627771922707536],[127,277,75,-0.05240161977701169],[127,277,76,-0.04847128684269819],[127,277,77,-0.044487937853832704],[127,277,78,-0.0404528411750909],[127,277,79,-0.036367316007504424],[127,278,64,-0.0878638301524563],[127,278,65,-0.08453166111197763],[127,278,66,-0.0811377805741677],[127,278,67,-0.07768290354397328],[127,278,68,-0.07416779385669658],[127,278,69,-0.07059326417044615],[127,278,70,-0.06696017594252418],[127,278,71,-0.06326943938987539],[127,278,72,-0.05952201343354929],[127,278,73,-0.055718905627307524],[127,278,74,-0.05186117207005575],[127,278,75,-0.04794991730252379],[127,278,76,-0.043986294187881525],[127,278,77,-0.039971503776407125],[127,278,78,-0.03590679515419981],[127,278,79,-0.031793465275900046],[127,279,64,-0.0839253279074107],[127,279,65,-0.08053900890722654],[127,279,66,-0.07709286177831959],[127,279,67,-0.07358761064821157],[127,279,68,-0.07002402622879494],[127,279,69,-0.06640292574530438],[127,279,70,-0.06272517284866624],[127,279,71,-0.05899167751135659],[127,279,72,-0.05520339590671591],[127,279,73,-0.05136133027185452],[127,279,74,-0.04746652875382684],[127,279,75,-0.04352008523949835],[127,279,76,-0.03952313916879385],[127,279,77,-0.035476875331442725],[127,279,78,-0.03138252364721228],[127,279,79,-0.027241358929594672],[127,280,64,-0.08001203989895639],[127,280,65,-0.07657157187504893],[127,280,66,-0.07307315706721224],[127,280,67,-0.06951752888969204],[127,280,68,-0.06590546509328565],[127,280,69,-0.06223778763054266],[127,280,70,-0.05851536250378331],[127,280,71,-0.05473909959606349],[127,280,72,-0.050909952485036825],[127,280,73,-0.04702891823984823],[127,280,74,-0.043097037200731214],[127,280,75,-0.03911539274174375],[127,280,76,-0.03508511101632006],[127,280,77,-0.031007360685760654],[127,280,78,-0.026883352630650226],[127,280,79,-0.02271433964516778],[127,281,64,-0.07612691161125729],[127,281,65,-0.07263232858836638],[127,281,66,-0.0690816769035153],[127,281,67,-0.06547569942022236],[127,281,68,-0.06181518109023071],[127,281,69,-0.05810094875467986],[127,281,70,-0.054333870927529726],[127,281,71,-0.050514857561364424],[127,281,72,-0.04664485979552779],[127,281,73,-0.04272486968672651],[127,281,74,-0.038755919921769244],[127,281,75,-0.034739083512879465],[127,281,76,-0.030675473475259785],[127,281,77,-0.026566242487027103],[127,281,78,-0.02241258253151157],[127,281,79,-0.018215724521881305],[127,282,64,-0.07227286127486987],[127,282,65,-0.06872423026524233],[127,282,66,-0.06512140429890223],[127,282,67,-0.06146513584947516],[127,282,68,-0.0577562172313007],[127,282,69,-0.053995480336349544],[127,282,70,-0.050183796352821164],[127,282,71,-0.046322075465550894],[127,282,72,-0.04241126653817845],[127,282,73,-0.038452356777214425],[127,282,74,-0.03444637137767004],[127,282,75,-0.030394373150693488],[127,282,76,-0.026297462132884086],[127,282,77,-0.022156775177409938],[127,282,78,-0.017973485526916355],[127,282,79,-0.013748802368191315],[127,283,64,-0.0684527775052638],[127,283,65,-0.06485019838172607],[127,283,66,-0.06119529240215543],[127,283,67,-0.05748882180929077],[127,283,68,-0.05373158644121134],[127,283,69,-0.04992442340380532],[127,283,70,-0.04606820672434192],[127,283,71,-0.04216384698627795],[127,283,72,-0.03821229094525158],[127,283,73,-0.03421452112639861],[127,283,74,-0.030171555402656314],[127,283,75,-0.02608444655449993],[127,283,76,-0.021954281810781517],[127,283,77,-0.01778218237079726],[127,283,78,-0.013569302907570746],[127,283,79,-0.009316831052317454],[127,284,64,-0.0646695169998664],[127,284,65,-0.06101312234371048],[127,284,66,-0.05730626214675383],[127,284,67,-0.05354970857791341],[127,284,68,-0.049744269159526955],[127,284,69,-0.04589078637520927],[127,284,70,-0.041990137258232585],[127,284,71,-0.03804323296056189],[127,284,72,-0.034051018302496905],[127,284,73,-0.03001447130306001],[127,284,74,-0.025934602690788622],[127,284,75,-0.02181245539538368],[127,284,76,-0.017649104019879458],[127,284,77,-0.013445654293463893],[127,284,78,-0.009203242504933151],[127,284,79,-0.004923034916750557],[127,285,64,-0.06092590229353423],[127,285,65,-0.05721585721770539],[127,285,66,-0.05345719995784601],[127,285,67,-0.04965071276406452],[127,285,68,-0.04579721100273246],[127,285,69,-0.04189754269960075],[127,285,70,-0.03795258806285243],[127,285,71,-0.03396325898622804],[127,285,72,-0.029930498532174415],[127,285,73,-0.02585528039515561],[127,285,74,-0.0217386083447835],[127,285,75,-0.01758151564922239],[127,285,76,-0.013385064478531383],[127,285,77,-0.009150345288072237],[127,285,78,-0.0048784761819694045],[127,285,79,-5.706022565900026E-4],[127,286,64,-0.05722471957264735],[127,286,65,-0.05346122152072327],[127,286,66,-0.04965095551880941],[127,286,67,-0.04579471405105359],[127,286,68,-0.04189332048677796],[127,286,69,-0.03794762855875383],[127,286,70,-0.03395852182082662],[127,286,71,-0.02992691308502457],[127,286,72,-0.025853743838103627],[127,286,73,-0.02173998363766838],[127,286,74,-0.01758662948752221],[127,286,75,-0.013394705192706968],[127,286,76,-0.009165260693891009],[127,286,77,-0.004899371381235529],[127,286,78,-5.981373877260443E-4],[127,286,79,0.003737317138064633],[127,287,64,-0.05356871654772641],[127,287,65,-0.049751995069179655],[127,287,66,-0.045890339597291246],[127,287,67,-0.04198455300082474],[127,287,68,-0.038035466809990925],[127,287,69,-0.034043940629817276],[127,287,70,-0.03001086153227342],[127,287,71,-0.02593714342729095],[127,287,72,-0.02182372641262667],[127,287,73,-0.01767157610271239],[127,287,74,-0.01348168293614005],[127,287,75,-0.009255061462248054],[127,287,76,-0.004992749606462288],[127,287,77,-6.958079145259755E-4],[127,287,78,0.00363468122439764],[127,287,79,0.007997614375782475],[127,288,64,-0.04996060038448044],[127,288,65,-0.04609091688670988],[127,288,66,-0.042178121930639356],[127,288,67,-0.03822302891784152],[127,288,68,-0.03422647769625986],[127,288,69,-0.03018933390863779],[127,288,70,-0.02611248831910798],[127,288,71,-0.021996856118081637],[127,288,72,-0.017843376205385536],[127,288,73,-0.013653010451792819],[127,288,74,-0.009426742938591831],[127,288,75,-0.0051655791756633485],[127,288,76,-8.705452977171013E-4],[127,288,77,0.003457312761177278],[127,288,78,0.007816930114782322],[127,288,79,0.012207223793638144],[127,289,64,-0.04640303569348406],[127,289,65,-0.042480683171108535],[127,289,66,-0.038517029170924366],[127,289,67,-0.034512897773017776],[127,289,68,-0.030469137298697102],[127,289,69,-0.02638661959397995],[127,289,70,-0.02226623929064106],[127,289,71,-0.018108913044962094],[127,289,72,-0.01391557875413127],[127,289,73,-0.009687194750439831],[127,289,74,-0.005424738972915927],[127,289,75,-0.001129208116871755],[127,289,76,0.0031983832389896605],[127,289,77,0.007557003527770834],[127,289,78,0.01194560511189724],[127,289,79,0.016363125222985997],[127,290,64,-0.04289864257831785],[127,290,65,-0.038923945320218756],[127,290,66,-0.0349097428893837],[127,290,67,-0.030856870187520785],[127,290,68,-0.026766184163607126],[127,290,69,-0.022638563032463865],[127,290,70,-0.018474905470289543],[127,290,71,-0.014276129787294062],[127,290,72,-0.010043173077381895],[127,290,73,-0.005776990345032068],[127,290,74,-0.0014785536090117235],[127,290,75,0.002851149016594917],[127,290,76,0.007211114264400853],[127,290,77,0.011600324678634338],[127,290,78,0.016017749602978693],[127,290,79,0.02046234619136461],[127,291,64,-0.03944999474229183],[127,291,65,-0.03542330801689708],[127,291,66,-0.03135889764041169],[127,291,67,-0.027257609476573103],[127,291,68,-0.02312030925488681],[127,291,69,-0.018947881724350635],[127,291,70,-0.014741229783532261],[127,291,71,-0.010501273587144089],[127,291,72,-0.006228949629063174],[127,291,73,-0.001925209801944966],[127,291,74,0.0024089795669348935],[127,291,75,0.0067726387031251944],[127,291,76,0.011164775396092258],[127,291,77,0.015584386033819897],[127,291,78,0.02003045666093506],[127,291,79,0.02450196406039068],[127,292,64,-0.03605961765359583],[127,292,65,-0.031981327372891916],[127,292,66,-0.0278670790849323],[127,292,67,-0.02371772975308764],[127,292,68,-0.019534154038691215],[127,292,69,-0.015317243390006147],[127,292,70,-0.011067905106938641],[127,292,71,-0.006787061381641424],[127,292,72,-0.0024756483149565023],[127,292,73,0.0018653850911536096],[127,292,74,0.006235077965555724],[127,292,75,0.010632458623785812],[127,292,76,0.015056545648144987],[127,292,77,0.01950634899190823],[127,292,78,0.023980871107665863],[127,292,79,0.028479108099827705],[127,293,64,-0.03272998676906397],[127,293,65,-0.028600509131827434],[127,293,66,-0.024436822173350553],[127,293,67,-0.02023979409133425],[127,293,68,-0.016010308628564174],[127,293,69,-0.011749264097245637],[127,293,70,-0.007457572378474664],[127,293,71,-0.0031361578969915926],[127,293,72,0.0012140434288357704],[127,293,73,0.005592085261647978],[127,293,74,0.009997011944720774],[127,293,75,0.014427859626089376],[127,293,76,0.018883657407538557],[127,293,77,0.023363428518313245],[127,293,78,0.02786619151357135],[127,293,79,0.03239096149760744],[127,294,64,-0.029463525816461084],[127,294,65,-0.025283306931199304],[127,294,66,-0.0210706093879844],[127,294,67,-0.016826312750538835],[127,294,68,-0.012551309990935844],[127,294,69,-0.008246506449458929],[127,294,70,-0.0039128187689862065],[127,294,71,4.488261959548906E-4],[127,294,72,0.004837492495512671],[127,294,73,0.009252236226065552],[127,294,74,0.013692106697380593],[127,294,75,0.018156147624877564],[127,294,76,0.02264339834737046],[127,294,77,0.027152895070140945],[127,294,78,0.031683672133363705],[127,294,79,0.036234763305914144],[127,295,64,-0.026262605135209435],[127,295,65,-0.022032120623298346],[127,295,66,-0.01777086904489633],[127,295,67,-0.01347974145833257],[127,295,68,-0.009159640210900655],[127,295,69,-0.00481147783443045],[127,295,70,-4.3617591477072837E-4],[127,295,71,0.003965336064669284],[127,295,72,0.008392121905371613],[127,295,73,0.012843239902002257],[127,295,74,0.017317744076921715],[127,295,75,0.021814685440412276],[127,295,76,0.026333113276996514],[127,295,77,0.030872076457698988],[127,295,78,0.035430624778273606],[127,295,79,0.040007810323425416],[127,296,64,-0.023129540075725985],[127,296,65,-0.018849294655236506],[127,296,66,-0.014539973655296828],[127,296,67,-0.010202479754226099],[127,296,68,-0.005837724818455917],[127,296,69,-0.0014466287340338946],[127,296,70,0.0029698817885778356],[127,296,71,0.007410874436258999],[127,296,72,0.011875412541595104],[127,296,73,0.01636255635769507],[127,296,74,0.020871364359843686],[127,296,75,0.025400894573482338],[127,296,76,0.02995020592889605],[127,296,77,0.034518359642457946],[127,296,78,0.03910442062445335],[127,296,79,0.043707458913512395],[127,297,64,-0.020066589457281236],[127,297,65,-0.015737116507982832],[127,297,66,-0.011380238346430371],[127,297,67,-0.006996869393018149],[127,297,68,-0.0025879311751070694],[127,297,69,0.001845648905290459],[127,297,70,0.006302938831147242],[127,297,71,0.010783003257228627],[127,297,72,0.01528490482412273],[127,297,73,0.01980770549933855],[127,297,74,0.024350467945857338],[127,297,75,0.02891225691762428],[127,297,76,0.03349214068236417],[127,297,77,0.03808919247156908],[127,297,78,0.04270249195768147],[127,297,79,0.04733112675850095],[127,298,64,-0.01707595408430325],[127,298,65,-0.012697815194334147],[127,298,66,-0.008293919341864547],[127,298,67,-0.003865192808057652],[127,298,68,5.874330792417504E-4],[127,298,69,0.005063023241360917],[127,298,70,0.009560640172591464],[127,298,71,0.014079345291769525],[127,298,72,0.018618200321694714],[127,298,73,0.023176268696233168],[127,298,74,0.0277526169954918],[127,298,75,0.032346316408547675],[127,298,76,0.03695644422411924],[127,298,77,0.0415820853490253],[127,298,78,0.04622233385445632],[127,298,79,0.05087629455008616],[127,299,64,-0.014159775321287371],[127,299,65,-0.009733559815981424],[127,299,66,-0.005283212501346779],[127,299,67,-8.096716345267416E-4],[127,299,68,0.003686121518941529],[127,299,69,0.00820322404420775],[127,299,70,0.012740692764747263],[127,299,71,0.01729758565840376],[127,299,72,0.021872963301889266],[127,299,73,0.026465890343584084],[127,299,74,0.0310754370050276],[127,299,75,0.0357006806105794],[127,299,76,0.04034070714564078],[127,299,77,0.04499461284328101],[127,299,78,0.04966150579929353],[127,299,79,0.05434050761570988],[127,300,64,-0.011320133726227234],[127,300,65,-0.006846458179587331],[127,300,66,-0.0023502519201435285],[127,300,67,0.002167534707342142],[127,300,68,0.006705950364885131],[127,300,69,0.011264044143246006],[127,300,70,0.015840867013073995],[127,300,71,0.020435473305073594],[127,300,72,0.025046922219245413],[127,300,73,0.02967427936304502],[127,300,74,0.03431661831885162],[127,300,75,0.03897302224022389],[127,300,76,0.04364258547733442],[127,300,77,0.04832441523142716],[127,300,78,0.053017633238322946],[127,300,79,0.0577213774810002],[127,301,64,-0.0085590477424963],[127,301,65,-0.004038555471802853],[127,301,66,5.028914122128317E-4],[127,301,67,0.005064330369190812],[127,301,68,0.009644799856504526],[127,301,69,0.014243340813744006],[127,301,70,0.01885899817699438],[127,301,71,0.023490822422755006],[127,301,72,0.028137871141552577],[127,301,73,0.03279921064108807],[127,301,74,0.037473917579315126],[127,301,75,0.04216108062692106],[127,301,76,0.04685980215960642],[127,301,77,0.05156919998000497],[127,301,78,0.05628840906927076],[127,301,79,0.06101658336835849],[127,302,64,-0.005878472449329663],[127,302,65,-0.0013118329933747078],[127,302,66,0.0032742108936136965],[127,302,67,0.00787868437144321],[127,302,68,0.012500615563316013],[127,302,69,0.017139037102426053],[127,302,70,0.021792987708972218],[127,302,71,0.026461513797430503],[127,302,72,0.031143671114138106],[127,302,73,0.03583852640502923],[127,302,74,0.04054515911392288],[127,302,75,0.045262663110829236],[127,302,76,0.04999014845067434],[127,302,77,0.054726743162283494],[127,302,78,0.05947159506764976],[127,302,79,0.06422387363151455],[127,303,64,-0.003280298370827781],[127,303,65,0.0013317930477363803],[127,303,66,0.005961765531582558],[127,303,67,0.010608631840280838],[127,303,68,0.015271409636100925],[127,303,69,0.019949123092294768],[127,303,70,0.024640804532414656],[127,303,71,0.029345496100507913],[127,303,72,0.034062251462242246],[127,303,73,0.03879013753680018],[127,303,74,0.043528236259945494],[127,303,75,0.0482756463777244],[127,303,76,0.053031485271205075],[127,303,77,0.057794890812092964],[127,303,78,0.06256502324925017],[127,303,79,0.06734106712614515],[127,304,64,-7.663503434152208E-4],[127,304,65,0.00389047268429182],[127,304,66,0.008563681106069256],[127,304,67,0.013252275184752436],[127,304,68,0.01795526199778782],[127,304,69,0.022671657106742474],[127,304,70,0.02740048625846752],[127,304,71,0.03214078711775646],[127,304,72,0.03689161103155195],[127,304,73,0.041652024824538406],[127,304,74,0.04642111262652682],[127,304,75,0.051197977731090104],[127,304,76,0.055981744485855287],[127,304,77,0.060771560214289665],[127,304,78,0.0655665971690087],[127,304,79,0.07036605451663225],[127,305,64,0.00166161355810447],[127,305,65,0.006362423278627134],[127,305,66,0.0110781512726866],[127,305,67,0.01580778521387384],[127,305,68,0.020550321473891697],[127,305,69,0.025304766852803792],[127,305,70,0.03007014034155586],[127,305,71,0.03484547491660923],[127,305,72,0.03962981936673991],[127,305,73,0.04442224015184024],[127,305,74,0.04922182329413093],[127,305,75,0.054027676301239794],[127,305,76,0.05883893012155562],[127,305,77,0.0636547411316922],[127,305,78,0.06847429315609235],[127,305,79,0.0732967995187967],[127,306,64,0.004001903035974707],[127,306,65,0.008745930552493376],[127,306,66,0.013503438606466939],[127,306,67,0.01827340219379598],[127,306,68,0.023054806862587193],[127,306,69,0.02784665050362762],[127,306,70,0.03264794517374741],[127,306,71,0.03745771895191111],[127,306,72,0.04227501782809147],[127,306,73,0.047098907624760655],[127,306,74,0.051928475951410785],[127,306,75,0.056762834191555124],[127,306,76,0.06160111952262149],[127,306,77,0.06644249696857285],[127,306,78,0.0712861614852833],[127,306,79,0.07613134007869585],[127,307,64,0.006252896526447081],[127,307,65,0.01103934955794588],[127,307,66,0.015837875586196565],[127,307,67,0.02064743684509908],[127,307,68,0.025467007944476712],[127,307,69,0.03029557772023144],[127,307,70,0.03513215111800394],[127,307,71,0.03997575111017815],[127,307,72,0.044825420646282206],[127,307,73,0.04968022463662314],[127,307,74,0.05453925196956594],[127,307,75,0.05940161756190772],[127,307,76,0.06426646444276038],[127,307,77,0.06913296587077447],[127,307,78,0.07400032748473476],[127,307,79,0.07886778948755244],[127,308,64,0.00841304209815602],[127,308,65,0.01324110558915604],[127,308,66,0.01807986551920001],[127,308,67,0.022928271280085247],[127,308,68,0.027785286431922886],[127,308,69,0.03264989061240345],[127,308,70,0.03752108148018332],[127,308,71,0.04239787669222844],[127,308,72,0.04727931591516936],[127,308,73,0.052164462870501235],[127,308,74,0.0570524074140462],[127,308,75,0.06194226764912093],[127,308,76,0.06683319207382836],[127,308,77,0.07172436176230405],[127,308,78,0.07661499257994815],[127,308,79,0.08150433743266772],[127,309,64,0.010480858291972033],[127,309,65,0.015349695035211372],[127,309,66,0.0202278834066439],[127,309,67,0.025114359880137882],[127,309,68,0.030008076858014043],[127,309,69,0.03490800463882417],[127,309,70,0.039813133419865004],[127,309,71,0.04472247533426067],[127,309,72,0.04963506652266912],[127,309,73,0.05454996923944472],[127,309,74,0.05946627399367728],[127,309,75,0.06438310172454668],[127,309,76,0.06929960601141472],[127,309,77,0.07421497531848366],[127,309,78,0.07912843527405267],[127,309,79,0.08403925098439671],[127,310,64,0.012454934902384696],[127,310,65,0.01736368617395788],[127,310,66,0.022280476749412248],[127,310,67,0.027204230113201944],[127,310,68,0.03213388740521937],[127,310,69,0.03706840944646386],[127,310,70,0.04200677880005667],[127,310,71,0.04694800186743493],[127,310,72,0.05189111101977989],[127,310,73,0.056835166764511114],[127,310,74,0.061779259947268655],[127,310,75,0.06672251398881997],[127,310,76,0.0716640871573148],[127,310,77,0.07660317487571747],[127,310,78,0.0815390120644468],[127,310,79,0.08647087551924935],[127,311,64,0.014333933700305612],[127,311,65,0.01928171990677026],[127,311,66,0.02423626629443812],[127,311,67,0.02919648329126763],[127,311,68,0.03416130067361313],[127,311,69,0.039129669649133766],[127,311,70,0.044100564975657786],[127,311,71,0.04907298711583363],[127,311,72,0.05404596442762413],[127,311,73,0.05901855539047378],[127,311,74,0.0639898508675738],[127,311,75,0.0689589764036587],[127,311,76,0.07392509455875983],[127,311,77,0.0788874072777443],[127,311,78,0.0838451582956699],[127,311,79,0.08879763557898152],[127,312,64,0.016116589097349948],[127,312,65,0.02110251043431277],[127,312,66,0.02609394672155564],[127,312,67,0.031089795267923007],[127,312,68,0.03608897438873457],[127,312,69,0.04109042554525867],[127,312,70,0.046093115520748434],[127,312,71,0.051096038632869656],[127,312,72,0.05609821898257837],[127,312,73,0.06109871273927675],[127,312,74,0.06609661046267362],[127,312,75,0.0710910394607811],[127,312,76,0.07608116618447533],[127,312,77,0.08106619865844711],[127,312,78,0.08604538894857575],[127,312,79,0.0910180356657497],[127,313,64,0.01780170875164072],[127,313,65,0.022824845873333166],[127,313,66,0.02785228727091478],[127,313,67,0.03288291707601834],[127,313,68,0.03791564204912749],[127,313,69,0.04294939377491584],[127,313,70,0.047983130894749704],[127,313,71,0.053015841376189296],[127,313,72,0.058046544819539844],[127,313,73,0.06307429480128585],[127,313,74,0.06809818125483341],[127,313,75,0.07311733288799124],[127,313,76,0.07813091963761928],[127,313,77,0.08313815516127077],[127,313,78,0.08813829936586037],[127,313,79,0.09313066097338282],[127,314,64,0.019388174115035503],[127,314,65,0.02444758881438841],[127,314,66,0.0295101323108571],[127,314,67,0.03457467550533801],[127,314,68,0.03964011351345394],[127,314,69,0.044705367916031635],[127,314,70,0.04976938904734521],[127,314,71,0.05483115832095792],[127,314,72,0.05988969059321528],[127,314,73,0.06494403656421921],[127,314,74,0.06999328521671488],[127,314,75,0.07503656629231259],[127,314,76,0.08007305280548008],[127,314,77,0.085101963595128],[127,314,78,0.09012256591382223],[127,314,79,0.09513417805464633],[127,315,64,0.020874940921858112],[127,315,65,0.02596967682058754],[127,315,66,0.031066401846337188],[127,315,67,0.03616397362036822],[127,315,68,0.041261275527269936],[127,315,69,0.046357219019828116],[127,315,70,0.051450745962256184],[127,315,71,0.056540831011622855],[127,315,72,0.06162648403752785],[127,315,73,0.06670675257985628],[127,315,74,0.0717807243450436],[127,315,75,0.0768475297402719],[127,315,76,0.08190634444603526],[127,315,77,0.08695639202689448],[127,315,78,0.09199694658045696],[127,315,79,0.0970273354246039],[127,316,64,0.022261039619080908],[127,316,65,0.027390122867292838],[127,316,66,0.032520091967833176],[127,316,67,0.03764979121809958],[127,316,68,0.04277809218940398],[127,316,69,0.04790389608545578],[127,316,70,0.05302613613980764],[127,316,71,0.05814378005208776],[127,316,72,0.06325583246307706],[127,316,73,0.06836133746845652],[127,316,74,0.07345938117166192],[127,316,75,0.07854909427526216],[127,316,76,0.08362965471130096],[127,316,77,0.08870029031042267],[127,316,78,0.09376028150981675],[127,316,79,0.09880896410000409],[127,317,64,0.023545575738023794],[127,317,65,0.028708015722851365],[127,317,66,0.033870275240815595],[127,317,67,0.039031185225939846],[127,317,68,0.0441896053580117],[127,317,69,0.049344426473890174],[127,317,70,0.0544945730183623],[127,317,71,0.05963900553437998],[127,317,72,0.0647767231927312],[127,317,73,0.06990676636097123],[127,317,74,0.07502821921205308],[127,317,75,0.08014021237207117],[127,317,76,0.08524192560755914],[127,317,77,0.09033259055216256],[127,317,78,0.09541149347272063],[127,317,79,0.10047797807478034],[127,318,64,0.02472773020748864],[127,318,65,0.02992252027027001],[127,318,66,0.03511610103569057],[127,318,67,0.04030729003964412],[127,318,68,0.04549493499621729],[127,318,69,0.05067791626099871],[127,318,70,0.055855149334528786],[127,318,71,0.06102558740571254],[127,318,72,0.06618822393525603],[127,318,73,0.07134209527894908],[127,318,74,0.0764862833512335],[127,318,75,0.08161991832847179],[127,318,76,0.08674218139235679],[127,318,77,0.0918523075132823],[127,318,78,0.09694958827371061],[127,318,79,0.10203337473155857],[127,319,64,0.025806759608375723],[127,319,65,0.03103287776988342],[127,319,66,0.036256795798262964],[127,319,67,0.041477317801318414],[127,319,68,0.04669327945739063],[127,319,69,0.05190355052983098],[127,319,70,0.05710703742219689],[127,319,71,0.06230268577399575],[127,319,72,0.06748948309703315],[127,319,73,0.07266646145219016],[127,319,74,0.0778327001670713],[127,319,75,0.0829873285939331],[127,319,76,0.08812952890833756],[127,319,77,0.0932585389483496],[127,319,78,0.09837365509431323],[127,319,79,0.1034742351892304]] diff --git a/pumpkin-world/assets/perlin_map.json b/pumpkin-world/assets/perlin_map.json new file mode 100644 index 000000000..f38bf5aad --- /dev/null +++ b/pumpkin-world/assets/perlin_map.json @@ -0,0 +1 @@ +[ 59, 36, 80, 191, 153, 3, 40, 131, 10, 190, 253, 199, 237, 105, 247, 28, 246, 120, 11, 255, 72, 73, 61, 240, 118, 99, 121, 244, 12, 137, 189, 125, 135, 83, 145, 119, 203, 15, 92, 115, 165, 64, 97, 49, 154, 85, 32, 127, 7, 124, 20, 218, 146, 26, 116, 4, 65, 229, 144, 202, 235, 222, 231, 75, 161, 74, 217, 168, 197, 230, 214, 193, 134, 248, 200, 187, 164, 228, 185, 159, 122, 180, 23, 66, 43, 224, 25, 38, 98, 157, 95, 136, 198, 17, 148, 234, 249, 173, 57, 207, 48, 16, 141, 212, 51, 195, 37, 241, 47, 31, 52, 100, 179, 172, 79, 21, 151, 171, 176, 252, 103, 110, 67, 138, 70, 33, 109, 243, 117, 175, 216, 107, 192, 39, 194, 113, 2, 132, 245, 123, 24, 45, 82, 96, 93, 169, 181, 0, 250, 126, 88, 87, 104, 94, 108, 41, 201, 84, 1, 130, 129, 239, 156, 205, 208, 163, 166, 210, 112, 8, 42, 174, 106, 78, 152, 188, 251, 158, 162, 206, 14, 238, 76, 114, 69, 226, 5, 150, 182, 89, 86, 77, 54, 184, 160, 209, 155, 22, 213, 149, 6, 233, 225, 50, 242, 219, 167, 35, 58, 63, 227, 44, 56, 60, 111, 62, 236, 178, 102, 55, 211, 232, 90, 204, 142, 68, 186, 101, 254, 81, 13, 215, 34, 53, 140, 18, 9, 91, 170, 133, 220, 128, 29, 46, 221, 177, 223, 30, 196, 147, 71, 19, 183, 139, 27, 143, 59, 36, 80, 191, 153, 3, 40, 131, 10, 190, 253, 199, 237, 105, 247, 28, 246, 120, 11, 255, 72, 73, 61, 240, 118, 99, 121, 244, 12, 137, 189, 125, 135, 83, 145, 119, 203, 15, 92, 115, 165, 64, 97, 49, 154, 85, 32, 127, 7, 124, 20, 218, 146, 26, 116, 4, 65, 229, 144, 202, 235, 222, 231, 75, 161, 74, 217, 168, 197, 230, 214, 193, 134, 248, 200, 187, 164, 228, 185, 159, 122, 180, 23, 66, 43, 224, 25, 38, 98, 157, 95, 136, 198, 17, 148, 234, 249, 173, 57, 207, 48, 16, 141, 212, 51, 195, 37, 241, 47, 31, 52, 100, 179, 172, 79, 21, 151, 171, 176, 252, 103, 110, 67, 138, 70, 33, 109, 243, 117, 175, 216, 107, 192, 39, 194, 113, 2, 132, 245, 123, 24, 45, 82, 96, 93, 169, 181, 0, 250, 126, 88, 87, 104, 94, 108, 41, 201, 84, 1, 130, 129, 239, 156, 205, 208, 163, 166, 210, 112, 8, 42, 174, 106, 78, 152, 188, 251, 158, 162, 206, 14, 238, 76, 114, 69, 226, 5, 150, 182, 89, 86, 77, 54, 184, 160, 209, 155, 22, 213, 149, 6, 233, 225, 50, 242, 219, 167, 35, 58, 63, 227, 44, 56, 60, 111, 62, 236, 178, 102, 55, 211, 232, 90, 204, 142, 68, 186, 101, 254, 81, 13, 215, 34, 53, 140, 18, 9, 91, 170, 133, 220, 128, 29, 46, 221, 177, 223, 30, 196, 147, 71, 19, 183, 139, 27, 143, 59, 36, 80, 191, 153, 3, 40, 131, 10, 190, 253, 199, 237, 105, 247, 28, 246, 120, 11, 255, 72, 73, 61, 240, 118, 99, 121, 244, 12, 137, 189, 125, 135, 83, 145, 119, 203, 15, 92, 115, 165, 64, 97, 49, 154, 85, 32, 127, 7, 124, 20, 218, 146, 26, 116, 4, 65, 229, 144, 202, 235, 222, 231, 75, 161, 74, 217, 168, 197, 230, 214, 193, 134, 248, 200, 187, 164, 228, 185, 159, 122, 180, 23, 66, 43, 224, 25, 38, 98, 157, 95, 136, 198, 17, 148, 234, 249, 173, 57, 207, 48, 16, 141, 212, 51, 195, 37, 241, 47, 31, 52, 100, 179, 172, 79, 21, 151, 171, 176, 252, 103, 110, 67, 138, 70, 33, 109, 243, 117, 175, 216, 107, 192, 39, 194, 113, 2, 132, 245, 123, 24, 45, 82, 96, 93, 169, 181, 0, 250, 126, 88, 87, 104, 94, 108, 41, 201, 84, 1, 130, 129, 239, 156, 205, 208, 163, 166, 210, 112, 8, 42, 174, 106, 78, 152, 188, 251, 158, 162, 206, 14, 238, 76, 114, 69, 226, 5, 150, 182, 89, 86, 77, 54, 184, 160, 209, 155, 22, 213, 149, 6, 233, 225, 50, 242, 219, 167, 35, 58, 63, 227, 44, 56, 60, 111, 62, 236, 178, 102, 55, 211, 232, 90, 204, 142, 68, 186, 101, 254, 81, 13, 215, 34, 53, 140, 18, 9, 91, 170, 133, 220, 128, 29, 46, 221, 177, 223, 30, 196, 147, 71, 19, 183, 139, 27, 143, 59, 36, 80, 191, 153, 3, 40, 131, 10, 190, 253, 199, 237, 105, 247, 28, 246, 120, 11, 255, 72, 73, 61, 240, 118, 99, 121, 244, 12, 137, 189, 125, 135, 83, 145, 119, 203, 15, 92, 115, 165, 64, 97, 49, 154, 85, 32, 127, 7, 124, 20, 218, 146, 26, 116, 4, 65, 229, 144, 202, 235, 222, 231, 75, 161, 74, 217, 168, 197, 230, 214, 193, 134, 248, 200, 187, 164, 228, 185, 159, 122, 180, 23, 66, 43, 224, 25, 38, 98, 157, 95, 136, 198, 17, 148, 234, 249, 173, 57, 207, 48, 16, 141, 212, 51, 195, 37, 241, 47, 31, 52, 100, 179, 172, 79, 21, 151, 171, 176, 252, 103, 110, 67, 138, 70, 33, 109, 243, 117, 175, 216, 107, 192, 39, 194, 113, 2, 132, 245, 123, 24, 45, 82, 96, 93, 169, 181, 0, 250, 126, 88, 87, 104, 94, 108, 41, 201, 84, 1, 130, 129, 239, 156, 205, 208, 163, 166, 210, 112, 8, 42, 174, 106, 78, 152, 188, 251, 158, 162, 206, 14, 238, 76, 114, 69, 226, 5, 150, 182, 89, 86, 77, 54, 184, 160, 209, 155, 22, 213, 149, 6, 233, 225, 50, 242, 219, 167, 35, 58, 63, 227, 44, 56, 60, 111, 62, 236, 178, 102, 55, 211, 232, 90, 204, 142, 68, 186, 101, 254, 81, 13, 215, 34, 53, 140, 18, 9, 91, 170, 133, 220, 128, 29, 46, 221, 177, 223, 30, 196, 147, 71, 19, 183, 139, 27, 143] diff --git a/pumpkin-world/assets/y_clamp.json b/pumpkin-world/assets/y_clamp.json new file mode 100644 index 000000000..9d5935610 --- /dev/null +++ b/pumpkin-world/assets/y_clamp.json @@ -0,0 +1 @@ +[ 1.5, 1.4921875, 1.484375, 1.4765625, 1.46875, 1.4609375, 1.453125, 1.4453125, 1.4375, 1.4296875, 1.421875, 1.4140625, 1.40625, 1.3984375, 1.390625, 1.3828125, 1.375, 1.3671875, 1.359375, 1.3515625, 1.34375, 1.3359375, 1.328125, 1.3203125, 1.3125, 1.3046875, 1.296875, 1.2890625, 1.28125, 1.2734375, 1.265625, 1.2578125, 1.25, 1.2421875, 1.234375, 1.2265625, 1.21875, 1.2109375, 1.203125, 1.1953125, 1.1875, 1.1796875, 1.171875, 1.1640625, 1.15625, 1.1484375, 1.140625, 1.1328125, 1.125, 1.1171875, 1.109375, 1.1015625, 1.09375, 1.0859375, 1.078125, 1.0703125, 1.0625, 1.0546875, 1.046875, 1.0390625, 1.03125, 1.0234375, 1.015625, 1.0078125, 1.0, 0.9921875, 0.984375, 0.9765625, 0.96875, 0.9609375, 0.953125, 0.9453125, 0.9375, 0.9296875, 0.921875, 0.9140625, 0.90625, 0.8984375, 0.890625, 0.8828125, 0.875, 0.8671875, 0.859375, 0.8515625, 0.84375, 0.8359375, 0.828125, 0.8203125, 0.8125, 0.8046875, 0.796875, 0.7890625, 0.78125, 0.7734375, 0.765625, 0.7578125, 0.75, 0.7421875, 0.734375, 0.7265625, 0.71875, 0.7109375, 0.703125, 0.6953125, 0.6875, 0.6796875, 0.671875, 0.6640625, 0.65625, 0.6484375, 0.640625, 0.6328125, 0.625, 0.6171875, 0.609375, 0.6015625, 0.59375, 0.5859375, 0.578125, 0.5703125, 0.5625, 0.5546875, 0.546875, 0.5390625, 0.53125, 0.5234375, 0.515625, 0.5078125, 0.5, 0.4921875, 0.484375, 0.4765625, 0.46875, 0.4609375, 0.453125, 0.4453125, 0.4375, 0.4296875, 0.421875, 0.4140625, 0.40625, 0.3984375, 0.390625, 0.3828125, 0.375, 0.3671875, 0.359375, 0.3515625, 0.34375, 0.3359375, 0.328125, 0.3203125, 0.3125, 0.3046875, 0.296875, 0.2890625, 0.28125, 0.2734375, 0.265625, 0.2578125, 0.25, 0.2421875, 0.234375, 0.2265625, 0.21875, 0.2109375, 0.203125, 0.1953125, 0.1875, 0.1796875, 0.171875, 0.1640625, 0.15625, 0.1484375, 0.140625, 0.1328125, 0.125, 0.1171875, 0.109375, 0.1015625, 0.09375, 0.0859375, 0.078125, 0.0703125, 0.0625, 0.0546875, 0.046875, 0.0390625, 0.03125, 0.0234375, 0.015625, 0.0078125, 0.0, -0.0078125, -0.015625, -0.0234375, -0.03125, -0.0390625, -0.046875, -0.0546875, -0.0625, -0.0703125, -0.078125, -0.0859375, -0.09375, -0.1015625, -0.109375, -0.1171875, -0.125, -0.1328125, -0.140625, -0.1484375, -0.15625, -0.1640625, -0.171875, -0.1796875, -0.1875, -0.1953125, -0.203125, -0.2109375, -0.21875, -0.2265625, -0.234375, -0.2421875, -0.25, -0.2578125, -0.265625, -0.2734375, -0.28125, -0.2890625, -0.296875, -0.3046875, -0.3125, -0.3203125, -0.328125, -0.3359375, -0.34375, -0.3515625, -0.359375, -0.3671875, -0.375, -0.3828125, -0.390625, -0.3984375, -0.40625, -0.4140625, -0.421875, -0.4296875, -0.4375, -0.4453125, -0.453125, -0.4609375, -0.46875, -0.4765625, -0.484375, -0.4921875, -0.5, -0.5078125, -0.515625, -0.5234375, -0.53125, -0.5390625, -0.546875, -0.5546875, -0.5625, -0.5703125, -0.578125, -0.5859375, -0.59375, -0.6015625, -0.609375, -0.6171875, -0.625, -0.6328125, -0.640625, -0.6484375, -0.65625, -0.6640625, -0.671875, -0.6796875, -0.6875, -0.6953125, -0.703125, -0.7109375, -0.71875, -0.7265625, -0.734375, -0.7421875, -0.75, -0.7578125, -0.765625, -0.7734375, -0.78125, -0.7890625, -0.796875, -0.8046875, -0.8125, -0.8203125, -0.828125, -0.8359375, -0.84375, -0.8515625, -0.859375, -0.8671875, -0.875, -0.8828125, -0.890625, -0.8984375, -0.90625, -0.9140625, -0.921875, -0.9296875, -0.9375, -0.9453125, -0.953125, -0.9609375, -0.96875, -0.9765625, -0.984375, -0.9921875, -1.0, -1.0078125, -1.015625, -1.0234375, -1.03125, -1.0390625, -1.046875, -1.0546875, -1.0625, -1.0703125, -1.078125, -1.0859375, -1.09375, -1.1015625, -1.109375, -1.1171875, -1.125, -1.1328125, -1.140625, -1.1484375, -1.15625, -1.1640625, -1.171875, -1.1796875, -1.1875, -1.1953125, -1.203125, -1.2109375, -1.21875, -1.2265625, -1.234375, -1.2421875, -1.25, -1.2578125, -1.265625, -1.2734375, -1.28125, -1.2890625, -1.296875, -1.3046875, -1.3125, -1.3203125, -1.328125, -1.3359375, -1.34375, -1.3515625, -1.359375, -1.3671875, -1.375, -1.3828125, -1.390625, -1.3984375, -1.40625, -1.4140625, -1.421875, -1.4296875, -1.4375, -1.4453125, -1.453125, -1.4609375, -1.46875, -1.4765625, -1.484375, -1.4921875, -1.5] diff --git a/pumpkin-world/benches/chunk_noise.rs b/pumpkin-world/benches/chunk_noise.rs new file mode 100644 index 000000000..d726257a8 --- /dev/null +++ b/pumpkin-world/benches/chunk_noise.rs @@ -0,0 +1,11 @@ +use criterion::{criterion_group, criterion_main, Criterion}; +use pumpkin_world::bench_create_chunk_noise_overworld; + +fn criterion_benchmark(c: &mut Criterion) { + c.bench_function("overworld convert", |b| { + b.iter(bench_create_chunk_noise_overworld) + }); +} + +criterion_group!(benches, criterion_benchmark); +criterion_main!(benches); diff --git a/pumpkin-world/benches/chunk_noise_populate.rs b/pumpkin-world/benches/chunk_noise_populate.rs new file mode 100644 index 000000000..88c3d484f --- /dev/null +++ b/pumpkin-world/benches/chunk_noise_populate.rs @@ -0,0 +1,11 @@ +use criterion::{criterion_group, criterion_main, Criterion}; +use pumpkin_world::bench_create_and_populate_noise; + +fn criterion_benchmark(c: &mut Criterion) { + c.bench_function("overworld convert + noise", |b| { + b.iter(bench_create_and_populate_noise) + }); +} + +criterion_group!(benches, criterion_benchmark); +criterion_main!(benches); diff --git a/pumpkin-world/src/block/block_state.rs b/pumpkin-world/src/block/block_state.rs index 6ce231405..fe2fe1461 100644 --- a/pumpkin-world/src/block/block_state.rs +++ b/pumpkin-world/src/block/block_state.rs @@ -1,24 +1,45 @@ -use super::block_registry::get_block; +use super::block_registry::{get_block, get_state_by_state_id}; -#[derive(Clone)] +#[derive(Clone, Copy, Debug, Eq)] pub struct BlockState { pub state_id: u16, + pub block_id: u16, +} + +impl PartialEq for BlockState { + fn eq(&self, other: &Self) -> bool { + self.state_id == other.state_id + } } impl BlockState { - pub const AIR: BlockState = BlockState { state_id: 0 }; + pub const AIR: BlockState = BlockState { + state_id: 0, + block_id: 0, + }; /// Get a Block from the Vanilla Block registry at Runtime pub fn new(registry_id: &str) -> Option { let block = get_block(registry_id); block.map(|block| Self { state_id: block.default_state_id, + block_id: block.id, }) } pub fn get_id(&self) -> u16 { self.state_id } + + #[inline] + pub fn is_air(&self) -> bool { + get_state_by_state_id(self.state_id).unwrap().air + } + + #[inline] + pub fn of_block(&self, block_id: u16) -> bool { + self.block_id == block_id + } } #[cfg(test)] diff --git a/pumpkin-world/src/lib.rs b/pumpkin-world/src/lib.rs index 6e30ee9ab..bc3e9dee1 100644 --- a/pumpkin-world/src/lib.rs +++ b/pumpkin-world/src/lib.rs @@ -1,3 +1,12 @@ +use pumpkin_core::math::vector2::Vector2; +use world_gen::{ + aquifer_sampler::{FluidLevel, FluidLevelSampler}, + chunk_noise::{ChunkNoiseGenerator, LAVA_BLOCK, WATER_BLOCK}, + generation_shapes::GenerationShape, + noise::{config::NoiseConfig, router::OVERWORLD_NOISE_ROUTER}, + proto_chunk::{ProtoChunk, StandardChunkFluidLevelSampler}, +}; + pub mod biome; pub mod block; pub mod chunk; @@ -12,3 +21,48 @@ pub const WORLD_HEIGHT: usize = 384; pub const WORLD_LOWEST_Y: i16 = -64; pub const WORLD_MAX_Y: i16 = WORLD_HEIGHT as i16 - WORLD_LOWEST_Y.abs(); pub const DIRECT_PALETTE_BITS: u32 = 15; + +#[macro_export] +macro_rules! read_data_from_file { + ($path:expr) => { + serde_json::from_str( + &fs::read_to_string( + Path::new(env!("CARGO_MANIFEST_DIR")) + .parent() + .unwrap() + .join(file!()) + .parent() + .unwrap() + .join($path), + ) + .expect("no data file"), + ) + .expect("failed to decode array") + }; +} + +// TODO: is there a way to do in-file benches? +pub fn bench_create_chunk_noise_overworld() { + let config = NoiseConfig::new(0, &OVERWORLD_NOISE_ROUTER); + let generation_shape = GenerationShape::SURFACE; + let sampler = FluidLevelSampler::Chunk(StandardChunkFluidLevelSampler::new( + FluidLevel::new(63, *WATER_BLOCK), + FluidLevel::new(-54, *LAVA_BLOCK), + )); + + ChunkNoiseGenerator::new( + 16 / generation_shape.horizontal_cell_block_count(), + 0, + 0, + generation_shape, + &config, + sampler, + true, + true, + ); +} + +pub fn bench_create_and_populate_noise() { + let mut chunk = ProtoChunk::new(Vector2::new(0, 0), 0); + chunk.populate_noise(); +} diff --git a/pumpkin-world/src/world_gen/aquifer_sampler.rs b/pumpkin-world/src/world_gen/aquifer_sampler.rs new file mode 100644 index 000000000..83f210085 --- /dev/null +++ b/pumpkin-world/src/world_gen/aquifer_sampler.rs @@ -0,0 +1,2100 @@ +use enum_dispatch::enum_dispatch; +use num_traits::PrimInt; +use pumpkin_core::{ + math::{floor_div, vector2::Vector2, vector3::Vector3}, + random::RandomDeriver, +}; + +use crate::block::BlockState; + +use super::{ + chunk_noise::{ChunkNoiseDensityFunctions, ChunkNoiseState, LAVA_BLOCK, WATER_BLOCK}, + noise::{ + clamped_map, + density::{ + component_functions::ComponentReference, NoisePos, NoisePosImpl, UnblendedNoisePos, + }, + map, + }, + positions::{block_pos, chunk_pos, MIN_HEIGHT_CELL}, + proto_chunk::StandardChunkFluidLevelSampler, + section_coords, +}; + +#[derive(Clone)] +pub struct FluidLevel { + max_y: i32, + state: BlockState, +} + +impl FluidLevel { + pub fn new(max_y: i32, state: BlockState) -> Self { + Self { max_y, state } + } + + pub fn max_y_exclusive(&self) -> i32 { + self.max_y + } + + fn get_block_state(&self, y: i32) -> BlockState { + if y < self.max_y { + self.state + } else { + BlockState::AIR + } + } +} + +#[enum_dispatch(FluidLevelSamplerImpl)] +pub enum FluidLevelSampler { + Static(StaticFluidLevelSampler), + Chunk(StandardChunkFluidLevelSampler), +} + +pub struct StaticFluidLevelSampler { + y: i32, + state: BlockState, +} + +impl StaticFluidLevelSampler { + pub fn new(y: i32, state: BlockState) -> Self { + Self { y, state } + } +} + +impl FluidLevelSamplerImpl for StaticFluidLevelSampler { + fn get_fluid_level(&self, _x: i32, _y: i32, _z: i32) -> FluidLevel { + FluidLevel::new(self.y, self.state) + } +} + +#[enum_dispatch] +pub trait FluidLevelSamplerImpl { + fn get_fluid_level(&self, x: i32, y: i32, z: i32) -> FluidLevel; +} + +#[enum_dispatch(AquiferSamplerImpl)] +pub enum AquiferSampler { + SeaLevel(SeaLevelAquiferSampler), + Aquifier(WorldAquiferSampler), +} + +pub struct WorldAquiferSampler { + barrier_noise: Box>, + fluid_level_floodedness: Box>, + fluid_level_spread: Box>, + fluid_type: Box>, + erosion: Box>, + depth: Box>, + function: Box>, + random_deriver: RandomDeriver, + fluid_level: FluidLevelSampler, + start_x: i32, + size_x: usize, + start_y: i8, + start_z: i32, + size_z: usize, + levels: Box<[Option]>, + packed_positions: Box<[i64]>, +} + +impl WorldAquiferSampler { + const CHUNK_POS_OFFSETS: [Vector2; 13] = [ + Vector2::new(0, 0), + Vector2::new(-2, -1), + Vector2::new(-1, -1), + Vector2::new(0, -1), + Vector2::new(1, -1), + Vector2::new(-3, 0), + Vector2::new(-2, 0), + Vector2::new(-1, 0), + Vector2::new(1, 0), + Vector2::new(-2, 1), + Vector2::new(-1, 1), + Vector2::new(0, 1), + Vector2::new(1, 1), + ]; + + #[allow(clippy::too_many_arguments)] + pub fn new( + chunk_pos: Vector2, + barrier_noise: Box>, + fluid_level_floodedness: Box>, + fluid_level_spread: Box>, + fluid_type: Box>, + erosion: Box>, + depth: Box>, + function: Box>, + random_deriver: RandomDeriver, + minimum_y: i8, + height: u16, + fluid_level: FluidLevelSampler, + ) -> Self { + let start_x = Self::get_local_x(chunk_pos::start_block_x(&chunk_pos)) - 1; + let end_x = Self::get_local_x(chunk_pos::end_block_x(&chunk_pos)) + 1; + let size_x = (end_x - start_x) as usize + 1; + + let start_y = Self::get_local_y(minimum_y) - 1; + let end_y = Self::get_local_y(minimum_y as i32 + height as i32) + 1; + let size_y = (end_y - start_y as i32) as usize + 1; + + let start_z = Self::get_local_z(chunk_pos::start_block_z(&chunk_pos)) - 1; + let end_z = Self::get_local_z(chunk_pos::end_block_z(&chunk_pos)) + 1; + let size_z = (end_z - start_z) as usize + 1; + + let cache_size = size_x * size_y * size_z; + + let mut packed_positions = vec![0; cache_size]; + + for offset_x in 0..size_x { + for offset_y in 0..size_y { + for offset_z in 0..size_z { + let x = start_x + offset_x as i32; + let y = start_y as i32 + offset_y as i32; + let z = start_z + offset_z as i32; + + let mut random = random_deriver.split_pos(x, y, z); + let rand_x = x * 16 + random.next_bounded_i32(10); + let rand_y = y * 12 + random.next_bounded_i32(9); + let rand_z = z * 16 + random.next_bounded_i32(10); + + let index = (offset_y * size_z + offset_z) * size_x + offset_x; + packed_positions[index] = + block_pos::packed(&Vector3::new(rand_x, rand_y, rand_z)); + } + } + } + + Self { + barrier_noise, + fluid_level_floodedness, + fluid_level_spread, + fluid_type, + erosion, + depth, + function, + random_deriver, + fluid_level, + start_x, + size_x, + start_y, + start_z, + size_z, + levels: vec![None; cache_size].into(), + packed_positions: packed_positions.into(), + } + } + + #[inline] + fn index(&self, x: i32, y: i32, z: i32) -> usize { + let i = (x - self.start_x) as usize; + let j = (y - self.start_y as i32) as usize; + let k = (z - self.start_z) as usize; + + (j * self.size_z + k) * self.size_x + i + } + + #[inline] + fn max_distance(i: i32, a: i32) -> f64 { + 1f64 - ((a - i).abs() as f64) / 25f64 + } + + fn calculate_density( + &mut self, + pos: &NoisePos, + barrier_sample: f64, + level_1: FluidLevel, + level_2: FluidLevel, + ) -> f64 { + let y = pos.y(); + let block_state1 = level_1.get_block_state(y); + let block_state2 = level_2.get_block_state(y); + + if (!block_state1.of_block(LAVA_BLOCK.block_id) + || !block_state2.of_block(WATER_BLOCK.block_id)) + && (!block_state1.of_block(WATER_BLOCK.block_id) + || !block_state2.of_block(LAVA_BLOCK.block_id)) + { + let level_diff = (level_1.max_y - level_2.max_y).abs(); + if level_diff == 0 { + 0f64 + } else { + let avg_level = 0.5f64 * (level_1.max_y + level_2.max_y) as f64; + let scaled_level = y as f64 + 0.5f64 - avg_level; + let halved_diff = level_diff as f64 / 2f64; + + let o = halved_diff - scaled_level.abs(); + let q = if scaled_level > 0f64 { + if o > 0f64 { + o / 1.5f64 + } else { + o / 2.5f64 + } + } else { + let p = 3f64 + o; + if p > 0f64 { + p / 3f64 + } else { + p / 10f64 + } + }; + + let r = if (-2f64..=2f64).contains(&q) { + barrier_sample + } else { + 0f64 + }; + + 2f64 * (r + q) + } + } else { + 2f64 + } + } + + fn get_water_level( + &mut self, + packed: i64, + height_estimator: &mut ChunkNoiseDensityFunctions, + env: &ChunkNoiseState, + ) -> FluidLevel { + let x = block_pos::unpack_x(packed); + let y = block_pos::unpack_y(packed); + let z = block_pos::unpack_z(packed); + + let local_x = Self::get_local_x(x); + let local_y = Self::get_local_y(y); + let local_z = Self::get_local_z(z); + + let index = self.index(local_x, local_y, local_z); + if let Some(level) = &self.levels[index] { + level.clone() + } else { + let fluid_level = self.get_fluid_level(x, y, z, height_estimator, env); + self.levels[index] = Some(fluid_level.clone()); + fluid_level + } + } + + fn get_fluid_level( + &mut self, + block_x: i32, + block_y: i32, + block_z: i32, + height_estimator: &mut ChunkNoiseDensityFunctions, + env: &ChunkNoiseState, + ) -> FluidLevel { + let fluid_level = self.fluid_level.get_fluid_level(block_x, block_y, block_z); + let j = block_y + 12; + let k = block_y - 12; + let mut bl = false; + let mut min_surface_estimate = i32::MAX; + + for offset in Self::CHUNK_POS_OFFSETS { + let x = block_x + section_coords::section_to_block(offset.x as i32); + let z = block_z + section_coords::section_to_block(offset.z as i32); + + let n = height_estimator.estimate_surface_height(env, x, z); + let o = n + 8; + let bl2 = offset.x == 0 && offset.z == 0; + + if bl2 && k > o { + return fluid_level; + } + + let bl3 = j > o; + if bl3 || bl2 { + let fluid_level = self.fluid_level.get_fluid_level(x, o, z); + if !fluid_level.get_block_state(o).is_air() { + if bl2 { + bl = true; + } + + if bl3 { + return fluid_level; + } + } + } + + min_surface_estimate = min_surface_estimate.min(n); + } + + let p = self.get_fluid_block_y( + block_x, + block_y, + block_z, + fluid_level.clone(), + min_surface_estimate, + bl, + env, + ); + FluidLevel::new( + p, + self.get_fluid_block_state(block_x, block_y, block_z, fluid_level, p, env), + ) + } + + #[allow(clippy::too_many_arguments)] + fn get_fluid_block_y( + &mut self, + block_x: i32, + block_y: i32, + block_z: i32, + default_level: FluidLevel, + surface_height_estimate: i32, + map_y: bool, + env: &ChunkNoiseState, + ) -> i32 { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(block_x, block_y, block_z)); + + let is_deep_dark = self.erosion.sample_mut(&pos, env) < -0.225f32 as f64 + && self.depth.sample_mut(&pos, env) > 0.9f32 as f64; + + let (d, e) = if is_deep_dark { + (-1f64, -1f64) + } else { + let top_y = surface_height_estimate + 8 - block_y; + let f = if map_y { + clamped_map(top_y as f64, 0f64, 64f64, 1f64, 0f64) + } else { + 0f64 + }; + + let g = self + .fluid_level_floodedness + .sample_mut(&pos, env) + .clamp(-1f64, 1f64); + let h = map(f, 1f64, 0f64, -0.3f64, 0.8f64); + let k = map(f, 1f64, 0f64, -0.8f64, 0.4f64); + + (g - k, g - h) + }; + + if e > 0f64 { + default_level.max_y + } else if d > 0f64 { + self.get_noise_based_fluid_level( + block_x, + block_y, + block_z, + surface_height_estimate, + env, + ) + } else { + MIN_HEIGHT_CELL + } + } + + fn get_noise_based_fluid_level( + &mut self, + block_x: i32, + block_y: i32, + block_z: i32, + surface_height_estimate: i32, + env: &ChunkNoiseState, + ) -> i32 { + let x = floor_div(block_x, 16); + let y = floor_div(block_y, 40); + let z = floor_div(block_z, 16); + + let local_y = y * 40 + 20; + let sample = self + .fluid_level_spread + .sample_mut(&NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)), env) + * 10f64; + let to_nearest_multiple_of_three = (sample / 3f64).floor() as i32 * 3; + let local_height = to_nearest_multiple_of_three + local_y; + + surface_height_estimate.min(local_height) + } + + fn get_fluid_block_state( + &mut self, + block_x: i32, + block_y: i32, + block_z: i32, + default_level: FluidLevel, + level: i32, + env: &ChunkNoiseState, + ) -> BlockState { + if level <= -10 + && level != MIN_HEIGHT_CELL + && !default_level.state.of_block(LAVA_BLOCK.block_id) + { + let x = floor_div(block_x, 64); + let y = floor_div(block_y, 40); + let z = floor_div(block_z, 64); + + let sample = self + .fluid_type + .sample_mut(&NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)), env); + + if sample.abs() > 0.3f64 { + return *LAVA_BLOCK; + } + } + + default_level.state + } + + #[inline] + fn get_local_x(x: T) -> T + where + T: PrimInt + From, + { + floor_div(x, 16.into()) + } + + #[inline] + fn get_local_y(y: T) -> T + where + T: PrimInt + From, + { + floor_div(y, 12.into()) + } + + #[inline] + fn get_local_z(z: T) -> T + where + T: PrimInt + From, + { + floor_div(z, 16.into()) + } + + fn apply_internal( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + height_estimator: &mut ChunkNoiseDensityFunctions, + density: f64, + ) -> Option { + if density > 0f64 { + None + } else { + let i = pos.x(); + let j = pos.y(); + let k = pos.z(); + + let fluid_level = self.fluid_level.get_fluid_level(i, j, k); + if fluid_level.get_block_state(j).of_block(LAVA_BLOCK.block_id) { + Some(*LAVA_BLOCK) + } else { + let scaled_x = floor_div(i - 5, 16); + let scaled_y = floor_div(j + 1, 12); + let scaled_z = floor_div(k - 5, 16); + + // The 3 closest positions, closest to furthest + let mut hypot_packed_block = [(0, i32::MAX); 3]; + for offset_y in -1..=1 { + for offset_x in 0..=1 { + for offset_z in 0..=1 { + let x_pos = scaled_x + offset_x; + let y_pos = scaled_y + offset_y; + let z_pos = scaled_z + offset_z; + let index = self.index(x_pos, y_pos, z_pos); + + let packed_random = self.packed_positions[index]; + + let local_x = block_pos::unpack_x(packed_random) - i; + let local_y = block_pos::unpack_y(packed_random) - j; + let local_z = block_pos::unpack_z(packed_random) - k; + + let hypot_squared = + local_x * local_x + local_y * local_y + local_z * local_z; + + if hypot_packed_block[2].1 >= hypot_squared { + hypot_packed_block[2] = (packed_random, hypot_squared); + } + + if hypot_packed_block[1].1 >= hypot_squared { + hypot_packed_block[2] = hypot_packed_block[1]; + hypot_packed_block[1] = (packed_random, hypot_squared); + } + + if hypot_packed_block[0].1 >= hypot_squared { + hypot_packed_block[1] = hypot_packed_block[0]; + hypot_packed_block[0] = (packed_random, hypot_squared); + } + } + } + } + + let fluid_level2 = + self.get_water_level(hypot_packed_block[0].0, height_estimator, state); + let d = Self::max_distance(hypot_packed_block[0].1, hypot_packed_block[1].1); + let block_state = fluid_level2.get_block_state(j); + + if d <= 0f64 { + // TODO: Handle fluid tick + + Some(block_state) + } else if block_state.of_block(WATER_BLOCK.block_id) + && self + .fluid_level + .get_fluid_level(i, j - 1, k) + .get_block_state(j - 1) + .of_block(LAVA_BLOCK.block_id) + { + Some(block_state) + } else { + let barrier_sample = self.barrier_noise.sample_mut(pos, state); + let fluid_level3 = + self.get_water_level(hypot_packed_block[1].0, height_estimator, state); + let e = d * self.calculate_density( + pos, + barrier_sample, + fluid_level2.clone(), + fluid_level3.clone(), + ); + + if density + e > 0f64 { + None + } else { + let fluid_level4 = + self.get_water_level(hypot_packed_block[2].0, height_estimator, state); + let f = + Self::max_distance(hypot_packed_block[0].1, hypot_packed_block[2].1); + if f > 0f64 { + let g = d + * f + * self.calculate_density( + pos, + barrier_sample, + fluid_level2, + fluid_level4.clone(), + ); + if density + g > 0f64 { + return None; + } + } + + let g = + Self::max_distance(hypot_packed_block[1].1, hypot_packed_block[2].1); + if g > 0f64 { + let h = d + * g + * self.calculate_density( + pos, + barrier_sample, + fluid_level3, + fluid_level4, + ); + if density + h > 0f64 { + return None; + } + } + + //TODO Handle fluid tick + + Some(block_state) + } + } + } + } + } +} + +impl AquiferSamplerImpl for WorldAquiferSampler { + #[inline] + fn apply( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + height_estimator: &mut ChunkNoiseDensityFunctions, + ) -> Option { + let density = self.function.sample_mut(pos, state); + self.apply_internal(pos, state, height_estimator, density) + } +} + +pub struct SeaLevelAquiferSampler { + level_sampler: FluidLevelSampler, + function: Box>, +} + +impl SeaLevelAquiferSampler { + pub fn new( + level_sampler: FluidLevelSampler, + function: Box>, + ) -> Self { + Self { + level_sampler, + function, + } + } +} + +impl AquiferSamplerImpl for SeaLevelAquiferSampler { + fn apply( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + _height_estimator: &mut ChunkNoiseDensityFunctions, + ) -> Option { + let sample = self.function.sample_mut(pos, state); + //log::debug!("Aquifer sample {:?}: {}", &pos, sample); + if sample > 0f64 { + None + } else { + Some( + self.level_sampler + .get_fluid_level(pos.x(), pos.y(), pos.z()) + .get_block_state(pos.y()), + ) + } + } +} + +#[enum_dispatch] +pub trait AquiferSamplerImpl { + fn apply( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + height_estimator: &mut ChunkNoiseDensityFunctions, + ) -> Option; +} + +#[cfg(test)] +mod test { + use pumpkin_core::math::vector2::Vector2; + + use crate::{ + block::BlockState, + world_gen::{ + chunk_noise::{ + BlockStateSampler, ChunkNoiseDensityFunctions, ChunkNoiseGenerator, + ChunkNoiseState, LAVA_BLOCK, WATER_BLOCK, + }, + generation_shapes::GenerationShape, + noise::{ + config::NoiseConfig, + density::{NoisePos, UnblendedNoisePos}, + router::OVERWORLD_NOISE_ROUTER, + }, + positions::chunk_pos, + proto_chunk::StandardChunkFluidLevelSampler, + }, + }; + + use super::{AquiferSampler, FluidLevel, FluidLevelSampler, WorldAquiferSampler}; + + fn create_aquifer() -> ( + WorldAquiferSampler, + ChunkNoiseDensityFunctions, + ChunkNoiseState, + ) { + let shape = GenerationShape::SURFACE; + let chunk_pos = Vector2::new(7, 4); + let config = NoiseConfig::new(0, &OVERWORLD_NOISE_ROUTER); + let sampler = FluidLevelSampler::Chunk(StandardChunkFluidLevelSampler::new( + FluidLevel::new(63, *WATER_BLOCK), + FluidLevel::new(-54, *LAVA_BLOCK), + )); + let noise = ChunkNoiseGenerator::new( + 16 / shape.horizontal_cell_block_count(), + chunk_pos::start_block_x(&chunk_pos), + chunk_pos::start_block_z(&chunk_pos), + shape, + &config, + sampler, + true, + true, + ); + let sampler = match noise.state_sampler { + BlockStateSampler::Chained(chained) => chained, + _ => unreachable!(), + }; + let mut samplers = sampler.samplers; + samplers.truncate(1); + let sampler = match samplers.pop().unwrap() { + BlockStateSampler::Aquifer(aquifer) => aquifer, + _ => unreachable!(), + }; + let aquifer = match sampler { + AquiferSampler::Aquifier(aquifer) => aquifer, + _ => unreachable!(), + }; + (aquifer, noise.density_functions, noise.shared) + } + + #[test] + fn test_get_fluid_block_state() { + let (mut aquifer, _, env) = create_aquifer(); + let level = FluidLevel::new(0, *WATER_BLOCK); + + let values = [ + ((-100, -100, -100), *WATER_BLOCK), + ((-100, -100, -50), *LAVA_BLOCK), + ((-100, -100, 0), *WATER_BLOCK), + ((-100, -100, 50), *WATER_BLOCK), + ((-100, -100, 100), *WATER_BLOCK), + ((-100, -50, -100), *WATER_BLOCK), + ((-100, -50, -50), *LAVA_BLOCK), + ((-100, -50, 0), *LAVA_BLOCK), + ((-100, -50, 50), *LAVA_BLOCK), + ((-100, -50, 100), *WATER_BLOCK), + ((-100, 0, -100), *WATER_BLOCK), + ((-100, 0, -50), *WATER_BLOCK), + ((-100, 0, 0), *WATER_BLOCK), + ((-100, 0, 50), *WATER_BLOCK), + ((-100, 0, 100), *WATER_BLOCK), + ((-100, 50, -100), *WATER_BLOCK), + ((-100, 50, -50), *WATER_BLOCK), + ((-100, 50, 0), *WATER_BLOCK), + ((-100, 50, 50), *WATER_BLOCK), + ((-100, 50, 100), *WATER_BLOCK), + ((-100, 100, -100), *WATER_BLOCK), + ((-100, 100, -50), *WATER_BLOCK), + ((-100, 100, 0), *WATER_BLOCK), + ((-100, 100, 50), *WATER_BLOCK), + ((-100, 100, 100), *WATER_BLOCK), + ((-50, -100, -100), *WATER_BLOCK), + ((-50, -100, -50), *WATER_BLOCK), + ((-50, -100, 0), *LAVA_BLOCK), + ((-50, -100, 50), *LAVA_BLOCK), + ((-50, -100, 100), *WATER_BLOCK), + ((-50, -50, -100), *WATER_BLOCK), + ((-50, -50, -50), *WATER_BLOCK), + ((-50, -50, 0), *WATER_BLOCK), + ((-50, -50, 50), *WATER_BLOCK), + ((-50, -50, 100), *WATER_BLOCK), + ((-50, 0, -100), *LAVA_BLOCK), + ((-50, 0, -50), *WATER_BLOCK), + ((-50, 0, 0), *WATER_BLOCK), + ((-50, 0, 50), *WATER_BLOCK), + ((-50, 0, 100), *WATER_BLOCK), + ((-50, 50, -100), *WATER_BLOCK), + ((-50, 50, -50), *WATER_BLOCK), + ((-50, 50, 0), *LAVA_BLOCK), + ((-50, 50, 50), *LAVA_BLOCK), + ((-50, 50, 100), *WATER_BLOCK), + ((-50, 100, -100), *WATER_BLOCK), + ((-50, 100, -50), *WATER_BLOCK), + ((-50, 100, 0), *LAVA_BLOCK), + ((-50, 100, 50), *LAVA_BLOCK), + ((-50, 100, 100), *LAVA_BLOCK), + ((0, -100, -100), *WATER_BLOCK), + ((0, -100, -50), *LAVA_BLOCK), + ((0, -100, 0), *LAVA_BLOCK), + ((0, -100, 50), *LAVA_BLOCK), + ((0, -100, 100), *WATER_BLOCK), + ((0, -50, -100), *WATER_BLOCK), + ((0, -50, -50), *WATER_BLOCK), + ((0, -50, 0), *WATER_BLOCK), + ((0, -50, 50), *WATER_BLOCK), + ((0, -50, 100), *WATER_BLOCK), + ((0, 0, -100), *LAVA_BLOCK), + ((0, 0, -50), *LAVA_BLOCK), + ((0, 0, 0), *WATER_BLOCK), + ((0, 0, 50), *WATER_BLOCK), + ((0, 0, 100), *WATER_BLOCK), + ((0, 50, -100), *WATER_BLOCK), + ((0, 50, -50), *WATER_BLOCK), + ((0, 50, 0), *WATER_BLOCK), + ((0, 50, 50), *WATER_BLOCK), + ((0, 50, 100), *WATER_BLOCK), + ((0, 100, -100), *WATER_BLOCK), + ((0, 100, -50), *LAVA_BLOCK), + ((0, 100, 0), *WATER_BLOCK), + ((0, 100, 50), *WATER_BLOCK), + ((0, 100, 100), *WATER_BLOCK), + ((50, -100, -100), *WATER_BLOCK), + ((50, -100, -50), *LAVA_BLOCK), + ((50, -100, 0), *LAVA_BLOCK), + ((50, -100, 50), *LAVA_BLOCK), + ((50, -100, 100), *WATER_BLOCK), + ((50, -50, -100), *WATER_BLOCK), + ((50, -50, -50), *WATER_BLOCK), + ((50, -50, 0), *WATER_BLOCK), + ((50, -50, 50), *WATER_BLOCK), + ((50, -50, 100), *WATER_BLOCK), + ((50, 0, -100), *LAVA_BLOCK), + ((50, 0, -50), *LAVA_BLOCK), + ((50, 0, 0), *WATER_BLOCK), + ((50, 0, 50), *WATER_BLOCK), + ((50, 0, 100), *WATER_BLOCK), + ((50, 50, -100), *WATER_BLOCK), + ((50, 50, -50), *WATER_BLOCK), + ((50, 50, 0), *WATER_BLOCK), + ((50, 50, 50), *WATER_BLOCK), + ((50, 50, 100), *WATER_BLOCK), + ((50, 100, -100), *WATER_BLOCK), + ((50, 100, -50), *LAVA_BLOCK), + ((50, 100, 0), *WATER_BLOCK), + ((50, 100, 50), *WATER_BLOCK), + ((50, 100, 100), *WATER_BLOCK), + ((100, -100, -100), *WATER_BLOCK), + ((100, -100, -50), *LAVA_BLOCK), + ((100, -100, 0), *WATER_BLOCK), + ((100, -100, 50), *WATER_BLOCK), + ((100, -100, 100), *WATER_BLOCK), + ((100, -50, -100), *LAVA_BLOCK), + ((100, -50, -50), *LAVA_BLOCK), + ((100, -50, 0), *LAVA_BLOCK), + ((100, -50, 50), *LAVA_BLOCK), + ((100, -50, 100), *LAVA_BLOCK), + ((100, 0, -100), *WATER_BLOCK), + ((100, 0, -50), *LAVA_BLOCK), + ((100, 0, 0), *WATER_BLOCK), + ((100, 0, 50), *WATER_BLOCK), + ((100, 0, 100), *LAVA_BLOCK), + ((100, 50, -100), *WATER_BLOCK), + ((100, 50, -50), *WATER_BLOCK), + ((100, 50, 0), *WATER_BLOCK), + ((100, 50, 50), *WATER_BLOCK), + ((100, 50, 100), *WATER_BLOCK), + ((100, 100, -100), *LAVA_BLOCK), + ((100, 100, -50), *LAVA_BLOCK), + ((100, 100, 0), *WATER_BLOCK), + ((100, 100, 50), *WATER_BLOCK), + ((100, 100, 100), *WATER_BLOCK), + ]; + + for ((x, y, z), result) in values { + assert_eq!( + aquifer.get_fluid_block_state(x, y, z, level.clone(), -10, &env), + result + ); + } + } + + #[test] + fn test_get_noise_based_fluid_level() { + let (mut aquifer, _, env) = create_aquifer(); + let values = [ + ((-100, -100, -100), -103), + ((-100, -100, -50), -103), + ((-100, -100, 0), -103), + ((-100, -100, 50), -103), + ((-100, -100, 100), -103), + ((-100, -50, -100), -63), + ((-100, -50, -50), -63), + ((-100, -50, 0), -63), + ((-100, -50, 50), -63), + ((-100, -50, 100), -63), + ((-100, 0, -100), 17), + ((-100, 0, -50), 17), + ((-100, 0, 0), 17), + ((-100, 0, 50), 17), + ((-100, 0, 100), 17), + ((-100, 50, -100), 57), + ((-100, 50, -50), 57), + ((-100, 50, 0), 57), + ((-100, 50, 50), 57), + ((-100, 50, 100), 57), + ((-100, 100, -100), 97), + ((-100, 100, -50), 97), + ((-100, 100, 0), 97), + ((-100, 100, 50), 97), + ((-100, 100, 100), 97), + ((-50, -100, -100), -103), + ((-50, -100, -50), -103), + ((-50, -100, 0), -103), + ((-50, -100, 50), -103), + ((-50, -100, 100), -100), + ((-50, -50, -100), -63), + ((-50, -50, -50), -63), + ((-50, -50, 0), -63), + ((-50, -50, 50), -63), + ((-50, -50, 100), -60), + ((-50, 0, -100), 17), + ((-50, 0, -50), 17), + ((-50, 0, 0), 17), + ((-50, 0, 50), 17), + ((-50, 0, 100), 20), + ((-50, 50, -100), 57), + ((-50, 50, -50), 57), + ((-50, 50, 0), 57), + ((-50, 50, 50), 57), + ((-50, 50, 100), 60), + ((-50, 100, -100), 97), + ((-50, 100, -50), 97), + ((-50, 100, 0), 97), + ((-50, 100, 50), 97), + ((-50, 100, 100), 100), + ((0, -100, -100), -103), + ((0, -100, -50), -103), + ((0, -100, 0), -103), + ((0, -100, 50), -100), + ((0, -100, 100), -100), + ((0, -50, -100), -63), + ((0, -50, -50), -63), + ((0, -50, 0), -63), + ((0, -50, 50), -60), + ((0, -50, 100), -60), + ((0, 0, -100), 17), + ((0, 0, -50), 17), + ((0, 0, 0), 17), + ((0, 0, 50), 20), + ((0, 0, 100), 20), + ((0, 50, -100), 57), + ((0, 50, -50), 57), + ((0, 50, 0), 57), + ((0, 50, 50), 60), + ((0, 50, 100), 60), + ((0, 100, -100), 97), + ((0, 100, -50), 97), + ((0, 100, 0), 97), + ((0, 100, 50), 100), + ((0, 100, 100), 100), + ((50, -100, -100), -103), + ((50, -100, -50), -103), + ((50, -100, 0), -103), + ((50, -100, 50), -100), + ((50, -100, 100), -100), + ((50, -50, -100), -63), + ((50, -50, -50), -63), + ((50, -50, 0), -63), + ((50, -50, 50), -60), + ((50, -50, 100), -60), + ((50, 0, -100), 17), + ((50, 0, -50), 17), + ((50, 0, 0), 17), + ((50, 0, 50), 20), + ((50, 0, 100), 20), + ((50, 50, -100), 57), + ((50, 50, -50), 57), + ((50, 50, 0), 57), + ((50, 50, 50), 60), + ((50, 50, 100), 60), + ((50, 100, -100), 97), + ((50, 100, -50), 97), + ((50, 100, 0), 97), + ((50, 100, 50), 100), + ((50, 100, 100), 100), + ((100, -100, -100), -103), + ((100, -100, -50), -103), + ((100, -100, 0), -103), + ((100, -100, 50), -103), + ((100, -100, 100), -100), + ((100, -50, -100), -63), + ((100, -50, -50), -63), + ((100, -50, 0), -63), + ((100, -50, 50), -63), + ((100, -50, 100), -60), + ((100, 0, -100), 17), + ((100, 0, -50), 17), + ((100, 0, 0), 17), + ((100, 0, 50), 17), + ((100, 0, 100), 20), + ((100, 50, -100), 57), + ((100, 50, -50), 57), + ((100, 50, 0), 57), + ((100, 50, 50), 57), + ((100, 50, 100), 60), + ((100, 100, -100), 97), + ((100, 100, -50), 97), + ((100, 100, 0), 97), + ((100, 100, 50), 97), + ((100, 100, 100), 100), + ]; + + for ((x, y, z), result) in values { + assert_eq!( + aquifer.get_noise_based_fluid_level(x, y, z, 200, &env), + result + ); + } + } + + #[test] + fn test_get_fluid_block_y() { + let (mut aquifer, _, env) = create_aquifer(); + let level = FluidLevel::new(0, *WATER_BLOCK); + let values = [ + ((-100, -100, -100), -32512), + ((-100, -100, -50), -32512), + ((-100, -100, 0), -32512), + ((-100, -100, 50), -32512), + ((-100, -100, 100), -32512), + ((-100, -50, -100), -32512), + ((-100, -50, -50), -63), + ((-100, -50, 0), -63), + ((-100, -50, 50), -63), + ((-100, -50, 100), -32512), + ((-100, 0, -100), -32512), + ((-100, 0, -50), -32512), + ((-100, 0, 0), -32512), + ((-100, 0, 50), -32512), + ((-100, 0, 100), -32512), + ((-100, 50, -100), 57), + ((-100, 50, -50), 57), + ((-100, 50, 0), 57), + ((-100, 50, 50), 57), + ((-100, 50, 100), 57), + ((-100, 100, -100), 80), + ((-100, 100, -50), 0), + ((-100, 100, 0), 0), + ((-100, 100, 50), 0), + ((-100, 100, 100), 0), + ((-50, -100, -100), -32512), + ((-50, -100, -50), -32512), + ((-50, -100, 0), -32512), + ((-50, -100, 50), -32512), + ((-50, -100, 100), -32512), + ((-50, -50, -100), -32512), + ((-50, -50, -50), -32512), + ((-50, -50, 0), -32512), + ((-50, -50, 50), -32512), + ((-50, -50, 100), -32512), + ((-50, 0, -100), -32512), + ((-50, 0, -50), -32512), + ((-50, 0, 0), -32512), + ((-50, 0, 50), -32512), + ((-50, 0, 100), -32512), + ((-50, 50, -100), -32512), + ((-50, 50, -50), -32512), + ((-50, 50, 0), 57), + ((-50, 50, 50), 57), + ((-50, 50, 100), 60), + ((-50, 100, -100), 80), + ((-50, 100, -50), 0), + ((-50, 100, 0), 0), + ((-50, 100, 50), 0), + ((-50, 100, 100), 0), + ((0, -100, -100), -32512), + ((0, -100, -50), -32512), + ((0, -100, 0), -32512), + ((0, -100, 50), -32512), + ((0, -100, 100), -32512), + ((0, -50, -100), -32512), + ((0, -50, -50), -32512), + ((0, -50, 0), -32512), + ((0, -50, 50), -32512), + ((0, -50, 100), -32512), + ((0, 0, -100), -32512), + ((0, 0, -50), -32512), + ((0, 0, 0), -32512), + ((0, 0, 50), -32512), + ((0, 0, 100), -32512), + ((0, 50, -100), -32512), + ((0, 50, -50), -32512), + ((0, 50, 0), 57), + ((0, 50, 50), 60), + ((0, 50, 100), 60), + ((0, 100, -100), 0), + ((0, 100, -50), 0), + ((0, 100, 0), 0), + ((0, 100, 50), 0), + ((0, 100, 100), 0), + ((50, -100, -100), -32512), + ((50, -100, -50), -32512), + ((50, -100, 0), -32512), + ((50, -100, 50), -32512), + ((50, -100, 100), -100), + ((50, -50, -100), -32512), + ((50, -50, -50), -32512), + ((50, -50, 0), -32512), + ((50, -50, 50), -32512), + ((50, -50, 100), -60), + ((50, 0, -100), -32512), + ((50, 0, -50), -32512), + ((50, 0, 0), -32512), + ((50, 0, 50), -32512), + ((50, 0, 100), -32512), + ((50, 50, -100), -32512), + ((50, 50, -50), -32512), + ((50, 50, 0), 57), + ((50, 50, 50), 60), + ((50, 50, 100), 60), + ((50, 100, -100), 0), + ((50, 100, -50), 0), + ((50, 100, 0), 0), + ((50, 100, 50), 0), + ((50, 100, 100), 0), + ((100, -100, -100), -32512), + ((100, -100, -50), -32512), + ((100, -100, 0), -32512), + ((100, -100, 50), -103), + ((100, -100, 100), -100), + ((100, -50, -100), -32512), + ((100, -50, -50), -32512), + ((100, -50, 0), -32512), + ((100, -50, 50), -32512), + ((100, -50, 100), -60), + ((100, 0, -100), -32512), + ((100, 0, -50), -32512), + ((100, 0, 0), -32512), + ((100, 0, 50), -32512), + ((100, 0, 100), -32512), + ((100, 50, -100), -32512), + ((100, 50, -50), -32512), + ((100, 50, 0), 57), + ((100, 50, 50), 57), + ((100, 50, 100), 60), + ((100, 100, -100), 0), + ((100, 100, -50), 0), + ((100, 100, 0), 0), + ((100, 100, 50), 0), + ((100, 100, 100), 0), + ]; + + for ((x, y, z), result) in values { + assert_eq!( + aquifer.get_fluid_block_y(x, y, z, level.clone(), 80, true, &env), + result + ); + } + + let values = [ + ((-100, -100, -100), -32512), + ((-100, -100, -50), -32512), + ((-100, -100, 0), -32512), + ((-100, -100, 50), -32512), + ((-100, -100, 100), -32512), + ((-100, -50, -100), -32512), + ((-100, -50, -50), -63), + ((-100, -50, 0), -63), + ((-100, -50, 50), -63), + ((-100, -50, 100), -32512), + ((-100, 0, -100), -32512), + ((-100, 0, -50), -32512), + ((-100, 0, 0), -32512), + ((-100, 0, 50), -32512), + ((-100, 0, 100), -32512), + ((-100, 50, -100), -32512), + ((-100, 50, -50), -32512), + ((-100, 50, 0), -32512), + ((-100, 50, 50), -32512), + ((-100, 50, 100), -32512), + ((-100, 100, -100), -32512), + ((-100, 100, -50), -32512), + ((-100, 100, 0), -32512), + ((-100, 100, 50), -32512), + ((-100, 100, 100), -32512), + ((-50, -100, -100), -32512), + ((-50, -100, -50), -32512), + ((-50, -100, 0), -32512), + ((-50, -100, 50), -32512), + ((-50, -100, 100), -32512), + ((-50, -50, -100), -32512), + ((-50, -50, -50), -32512), + ((-50, -50, 0), -32512), + ((-50, -50, 50), -32512), + ((-50, -50, 100), -32512), + ((-50, 0, -100), -32512), + ((-50, 0, -50), -32512), + ((-50, 0, 0), -32512), + ((-50, 0, 50), -32512), + ((-50, 0, 100), -32512), + ((-50, 50, -100), -32512), + ((-50, 50, -50), -32512), + ((-50, 50, 0), -32512), + ((-50, 50, 50), -32512), + ((-50, 50, 100), -32512), + ((-50, 100, -100), -32512), + ((-50, 100, -50), -32512), + ((-50, 100, 0), 80), + ((-50, 100, 50), -32512), + ((-50, 100, 100), -32512), + ((0, -100, -100), -32512), + ((0, -100, -50), -32512), + ((0, -100, 0), -32512), + ((0, -100, 50), -32512), + ((0, -100, 100), -32512), + ((0, -50, -100), -32512), + ((0, -50, -50), -32512), + ((0, -50, 0), -32512), + ((0, -50, 50), -32512), + ((0, -50, 100), -32512), + ((0, 0, -100), -32512), + ((0, 0, -50), -32512), + ((0, 0, 0), -32512), + ((0, 0, 50), -32512), + ((0, 0, 100), -32512), + ((0, 50, -100), -32512), + ((0, 50, -50), -32512), + ((0, 50, 0), -32512), + ((0, 50, 50), -32512), + ((0, 50, 100), -32512), + ((0, 100, -100), -32512), + ((0, 100, -50), -32512), + ((0, 100, 0), 80), + ((0, 100, 50), -32512), + ((0, 100, 100), -32512), + ((50, -100, -100), -32512), + ((50, -100, -50), -32512), + ((50, -100, 0), -32512), + ((50, -100, 50), -32512), + ((50, -100, 100), -100), + ((50, -50, -100), -32512), + ((50, -50, -50), -32512), + ((50, -50, 0), -32512), + ((50, -50, 50), -32512), + ((50, -50, 100), -60), + ((50, 0, -100), -32512), + ((50, 0, -50), -32512), + ((50, 0, 0), -32512), + ((50, 0, 50), -32512), + ((50, 0, 100), -32512), + ((50, 50, -100), -32512), + ((50, 50, -50), -32512), + ((50, 50, 0), -32512), + ((50, 50, 50), -32512), + ((50, 50, 100), -32512), + ((50, 100, -100), -32512), + ((50, 100, -50), -32512), + ((50, 100, 0), 80), + ((50, 100, 50), -32512), + ((50, 100, 100), -32512), + ((100, -100, -100), -32512), + ((100, -100, -50), -32512), + ((100, -100, 0), -32512), + ((100, -100, 50), -103), + ((100, -100, 100), -100), + ((100, -50, -100), -32512), + ((100, -50, -50), -32512), + ((100, -50, 0), -32512), + ((100, -50, 50), -32512), + ((100, -50, 100), -60), + ((100, 0, -100), -32512), + ((100, 0, -50), -32512), + ((100, 0, 0), -32512), + ((100, 0, 50), -32512), + ((100, 0, 100), -32512), + ((100, 50, -100), -32512), + ((100, 50, -50), -32512), + ((100, 50, 0), -32512), + ((100, 50, 50), -32512), + ((100, 50, 100), -32512), + ((100, 100, -100), -32512), + ((100, 100, -50), -32512), + ((100, 100, 0), 80), + ((100, 100, 50), -32512), + ((100, 100, 100), -32512), + ]; + + for ((x, y, z), result) in values { + assert_eq!( + aquifer.get_fluid_block_y(x, y, z, level.clone(), 80, false, &env), + result + ); + } + } + + #[test] + fn test_get_fluid_level() { + let (mut aquifer, mut funcs, env) = create_aquifer(); + let values = [ + ((-100, -100, -100), (-32512, *LAVA_BLOCK)), + ((-100, -100, -50), (-32512, *LAVA_BLOCK)), + ((-100, -100, 0), (-32512, *LAVA_BLOCK)), + ((-100, -100, 50), (-32512, *LAVA_BLOCK)), + ((-100, -100, 100), (-32512, *LAVA_BLOCK)), + ((-100, -50, -100), (-32512, *WATER_BLOCK)), + ((-100, -50, -50), (-63, *LAVA_BLOCK)), + ((-100, -50, 0), (-63, *LAVA_BLOCK)), + ((-100, -50, 50), (-63, *LAVA_BLOCK)), + ((-100, -50, 100), (-32512, *WATER_BLOCK)), + ((-100, 0, -100), (-32512, *WATER_BLOCK)), + ((-100, 0, -50), (-32512, *WATER_BLOCK)), + ((-100, 0, 0), (-32512, *WATER_BLOCK)), + ((-100, 0, 50), (-32512, *WATER_BLOCK)), + ((-100, 0, 100), (-32512, *WATER_BLOCK)), + ((-100, 50, -100), (-32512, *WATER_BLOCK)), + ((-100, 50, -50), (63, *WATER_BLOCK)), + ((-100, 50, 0), (63, *WATER_BLOCK)), + ((-100, 50, 50), (-32512, *WATER_BLOCK)), + ((-100, 50, 100), (63, *WATER_BLOCK)), + ((-100, 100, -100), (63, *WATER_BLOCK)), + ((-100, 100, -50), (63, *WATER_BLOCK)), + ((-100, 100, 0), (63, *WATER_BLOCK)), + ((-100, 100, 50), (63, *WATER_BLOCK)), + ((-100, 100, 100), (63, *WATER_BLOCK)), + ((-50, -100, -100), (-32512, *LAVA_BLOCK)), + ((-50, -100, -50), (-32512, *LAVA_BLOCK)), + ((-50, -100, 0), (-32512, *LAVA_BLOCK)), + ((-50, -100, 50), (-32512, *LAVA_BLOCK)), + ((-50, -100, 100), (-32512, *LAVA_BLOCK)), + ((-50, -50, -100), (-32512, *WATER_BLOCK)), + ((-50, -50, -50), (-32512, *WATER_BLOCK)), + ((-50, -50, 0), (-32512, *WATER_BLOCK)), + ((-50, -50, 50), (-32512, *WATER_BLOCK)), + ((-50, -50, 100), (-32512, *WATER_BLOCK)), + ((-50, 0, -100), (-32512, *WATER_BLOCK)), + ((-50, 0, -50), (-32512, *WATER_BLOCK)), + ((-50, 0, 0), (-32512, *WATER_BLOCK)), + ((-50, 0, 50), (-32512, *WATER_BLOCK)), + ((-50, 0, 100), (-32512, *WATER_BLOCK)), + ((-50, 50, -100), (-32512, *WATER_BLOCK)), + ((-50, 50, -50), (63, *WATER_BLOCK)), + ((-50, 50, 0), (63, *WATER_BLOCK)), + ((-50, 50, 50), (-32512, *WATER_BLOCK)), + ((-50, 50, 100), (63, *WATER_BLOCK)), + ((-50, 100, -100), (63, *WATER_BLOCK)), + ((-50, 100, -50), (63, *WATER_BLOCK)), + ((-50, 100, 0), (63, *WATER_BLOCK)), + ((-50, 100, 50), (63, *WATER_BLOCK)), + ((-50, 100, 100), (63, *WATER_BLOCK)), + ((0, -100, -100), (-32512, *LAVA_BLOCK)), + ((0, -100, -50), (-32512, *LAVA_BLOCK)), + ((0, -100, 0), (-32512, *LAVA_BLOCK)), + ((0, -100, 50), (-32512, *LAVA_BLOCK)), + ((0, -100, 100), (-32512, *LAVA_BLOCK)), + ((0, -50, -100), (-32512, *WATER_BLOCK)), + ((0, -50, -50), (-32512, *WATER_BLOCK)), + ((0, -50, 0), (-32512, *WATER_BLOCK)), + ((0, -50, 50), (-32512, *WATER_BLOCK)), + ((0, -50, 100), (-32512, *WATER_BLOCK)), + ((0, 0, -100), (-32512, *WATER_BLOCK)), + ((0, 0, -50), (-32512, *WATER_BLOCK)), + ((0, 0, 0), (-32512, *WATER_BLOCK)), + ((0, 0, 50), (-32512, *WATER_BLOCK)), + ((0, 0, 100), (-32512, *WATER_BLOCK)), + ((0, 50, -100), (-32512, *WATER_BLOCK)), + ((0, 50, -50), (63, *WATER_BLOCK)), + ((0, 50, 0), (63, *WATER_BLOCK)), + ((0, 50, 50), (-32512, *WATER_BLOCK)), + ((0, 50, 100), (-32512, *WATER_BLOCK)), + ((0, 100, -100), (63, *WATER_BLOCK)), + ((0, 100, -50), (63, *WATER_BLOCK)), + ((0, 100, 0), (63, *WATER_BLOCK)), + ((0, 100, 50), (63, *WATER_BLOCK)), + ((0, 100, 100), (63, *WATER_BLOCK)), + ((50, -100, -100), (-32512, *LAVA_BLOCK)), + ((50, -100, -50), (-32512, *LAVA_BLOCK)), + ((50, -100, 0), (-32512, *LAVA_BLOCK)), + ((50, -100, 50), (-32512, *LAVA_BLOCK)), + ((50, -100, 100), (-100, *LAVA_BLOCK)), + ((50, -50, -100), (-32512, *WATER_BLOCK)), + ((50, -50, -50), (-32512, *WATER_BLOCK)), + ((50, -50, 0), (-32512, *WATER_BLOCK)), + ((50, -50, 50), (-32512, *WATER_BLOCK)), + ((50, -50, 100), (-60, *WATER_BLOCK)), + ((50, 0, -100), (-32512, *WATER_BLOCK)), + ((50, 0, -50), (-32512, *WATER_BLOCK)), + ((50, 0, 0), (-32512, *WATER_BLOCK)), + ((50, 0, 50), (-32512, *WATER_BLOCK)), + ((50, 0, 100), (-32512, *WATER_BLOCK)), + ((50, 50, -100), (-32512, *WATER_BLOCK)), + ((50, 50, -50), (63, *WATER_BLOCK)), + ((50, 50, 0), (63, *WATER_BLOCK)), + ((50, 50, 50), (63, *WATER_BLOCK)), + ((50, 50, 100), (-32512, *WATER_BLOCK)), + ((50, 100, -100), (-32512, *WATER_BLOCK)), + ((50, 100, -50), (63, *WATER_BLOCK)), + ((50, 100, 0), (63, *WATER_BLOCK)), + ((50, 100, 50), (63, *WATER_BLOCK)), + ((50, 100, 100), (63, *WATER_BLOCK)), + ((100, -100, -100), (-32512, *LAVA_BLOCK)), + ((100, -100, -50), (-32512, *LAVA_BLOCK)), + ((100, -100, 0), (-32512, *LAVA_BLOCK)), + ((100, -100, 50), (-103, *LAVA_BLOCK)), + ((100, -100, 100), (-100, *LAVA_BLOCK)), + ((100, -50, -100), (-32512, *WATER_BLOCK)), + ((100, -50, -50), (-32512, *WATER_BLOCK)), + ((100, -50, 0), (-32512, *WATER_BLOCK)), + ((100, -50, 50), (-32512, *WATER_BLOCK)), + ((100, -50, 100), (-60, *LAVA_BLOCK)), + ((100, 0, -100), (-32512, *WATER_BLOCK)), + ((100, 0, -50), (-32512, *WATER_BLOCK)), + ((100, 0, 0), (-32512, *WATER_BLOCK)), + ((100, 0, 50), (-32512, *WATER_BLOCK)), + ((100, 0, 100), (-32512, *WATER_BLOCK)), + ((100, 50, -100), (63, *WATER_BLOCK)), + ((100, 50, -50), (63, *WATER_BLOCK)), + ((100, 50, 0), (63, *WATER_BLOCK)), + ((100, 50, 50), (63, *WATER_BLOCK)), + ((100, 50, 100), (-32512, *WATER_BLOCK)), + ((100, 100, -100), (63, *WATER_BLOCK)), + ((100, 100, -50), (63, *WATER_BLOCK)), + ((100, 100, 0), (63, *WATER_BLOCK)), + ((100, 100, 50), (63, *WATER_BLOCK)), + ((100, 100, 100), (63, *WATER_BLOCK)), + ]; + + for ((x, y, z), (y1, state)) in values { + let level = aquifer.get_fluid_level(x, y, z, &mut funcs, &env); + assert_eq!(level.max_y, y1); + assert_eq!(level.state, state); + } + } + + #[test] + fn test_calculate_density() { + let (mut aquifer, _, env) = create_aquifer(); + + let values = [ + ((-100, -100, -100, 0, 0), 0.0), + ((-100, -100, -50, 50, 0), -19.3), + ((-100, -100, 0, 0, 0), 0.0), + ((-100, -100, 50, 50, 0), -19.3), + ((-100, -100, 100, 0, 0), 0.0), + ((-100, -50, -100, 0, 0), 0.0), + ((-100, -50, -50, 50, 0), -9.3), + ((-100, -50, 0, 0, 0), 0.0), + ((-100, -50, 50, 50, 0), -9.3), + ((-100, -50, 100, 0, 0), 0.0), + ((-100, 0, -100, 0, 0), 0.0), + ((-100, 0, -50, -50, 0), 0.2083850667904572), + ((-100, 0, 0, 0, 0), 0.0), + ((-100, 0, 50, 50, 0), 2.069189235272414), + ((-100, 0, 100, 0, 0), 0.0), + ((-100, 50, -100, 0, 0), 0.0), + ((-100, 50, -50, -50, 0), -40.4), + ((-100, 50, 0, 0, 0), 0.0), + ((-100, 50, 50, -50, 0), -40.4), + ((-100, 50, 100, 0, 0), 0.0), + ((-100, 100, -100, 0, 0), 0.0), + ((-100, 100, -50, -50, 0), -80.4), + ((-100, 100, 0, 0, 0), 0.0), + ((-100, 100, 50, -50, 0), -80.4), + ((-100, 100, 100, 0, 0), 0.0), + ((-50, -100, -100, 0, 50), -19.3), + ((-50, -100, -50, 50, 50), 0.0), + ((-50, -100, 0, 0, -50), -9.3), + ((-50, -100, 50, 50, -50), -9.3), + ((-50, -100, 100, 0, -50), -9.3), + ((-50, -50, -100, 0, 50), -9.3), + ((-50, -50, -50, 50, 50), 0.0), + ((-50, -50, 0, 0, -50), 2.2042949518442185), + ((-50, -50, 50, 50, -50), 1.8767275908406176), + ((-50, -50, 100, 0, -50), 2.3399656359995133), + ((-50, 0, -100, 0, -50), -0.08405949841069171), + ((-50, 0, -50, -50, -50), 0.0), + ((-50, 0, 0, 0, -50), 0.3902410585192353), + ((-50, 0, 50, 50, -50), 66.0), + ((-50, 0, 100, 0, -50), -0.7930165090675787), + ((-50, 50, -100, 0, -50), -40.4), + ((-50, 50, -50, -50, -50), 0.0), + ((-50, 50, 0, 0, -50), -40.4), + ((-50, 50, 50, -50, 50), -0.35570822400215646), + ((-50, 50, 100, 0, 50), -0.16770224497207317), + ((-50, 100, -100, 0, -50), -80.4), + ((-50, 100, -50, -50, -50), 0.0), + ((-50, 100, 0, 0, -50), -80.4), + ((-50, 100, 50, -50, 50), -40.4), + ((-50, 100, 100, 0, 50), -40.4), + ((0, -100, -100, 0, 0), 0.0), + ((0, -100, -50, -50, 0), -9.3), + ((0, -100, 0, 0, 0), 0.0), + ((0, -100, 50, 50, 0), -19.3), + ((0, -100, 100, 0, 0), 0.0), + ((0, -50, -100, 0, 0), 0.0), + ((0, -50, -50, -50, 0), 2.857141340264507), + ((0, -50, 0, 0, 0), 0.0), + ((0, -50, 50, 50, 0), -9.3), + ((0, -50, 100, 0, 0), 0.0), + ((0, 0, -100, 0, 0), 0.0), + ((0, 0, -50, -50, 0), -0.1361016501707068), + ((0, 0, 0, 0, 0), 0.0), + ((0, 0, 50, 50, 0), 1.9841279541408636), + ((0, 0, 100, 0, 0), 0.0), + ((0, 50, -100, 0, 0), 0.0), + ((0, 50, -50, -50, 0), -40.4), + ((0, 50, 0, 0, 0), 0.0), + ((0, 50, 50, 50, 0), -0.36331007530382964), + ((0, 50, 100, 0, 0), 0.0), + ((0, 100, -100, 0, 0), 0.0), + ((0, 100, -50, -50, 0), -80.4), + ((0, 100, 0, 0, 0), 0.0), + ((0, 100, 50, 50, 0), -40.4), + ((0, 100, 100, 0, 0), 0.0), + ((50, -100, -100, 0, 50), -19.3), + ((50, -100, -50, -50, 50), -9.3), + ((50, -100, 0, 0, 50), -19.3), + ((50, -100, 50, -50, -50), 0.0), + ((50, -100, 100, 0, -50), -9.3), + ((50, -50, -100, 0, 50), -9.3), + ((50, -50, -50, -50, 50), 1.619242225388449), + ((50, -50, 0, 0, 50), -9.3), + ((50, -50, 50, -50, -50), 0.0), + ((50, -50, 100, 0, -50), 2.1561171703198188), + ((50, 0, -100, 0, 50), 2.6298865590685954), + ((50, 0, -50, -50, 50), 66.0), + ((50, 0, 0, 0, 50), 2.572198917833846), + ((50, 0, 50, 50, 50), 0.0), + ((50, 0, 100, 0, 50), 2.082884998883258), + ((50, 50, -100, 0, -50), -40.4), + ((50, 50, -50, 50, -50), -0.1894344852785401), + ((50, 50, 0, 0, 50), -0.7155260733519367), + ((50, 50, 50, 50, 50), 0.0), + ((50, 50, 100, 0, 50), -0.4132183490530098), + ((50, 100, -100, 0, -50), -80.4), + ((50, 100, -50, 50, -50), -40.4), + ((50, 100, 0, 0, 50), -40.4), + ((50, 100, 50, 50, 50), 0.0), + ((50, 100, 100, 0, 50), -40.4), + ((100, -100, -100, 0, 0), 0.0), + ((100, -100, -50, -50, 0), -9.3), + ((100, -100, 0, 0, 0), 0.0), + ((100, -100, 50, -50, 0), -9.3), + ((100, -100, 100, 0, 0), 0.0), + ((100, -50, -100, 0, 0), 0.0), + ((100, -50, -50, -50, 0), 1.6711026207576742), + ((100, -50, 0, 0, 0), 0.0), + ((100, -50, 50, -50, 0), 2.042353012197518), + ((100, -50, 100, 0, 0), 0.0), + ((100, 0, -100, 0, 0), 0.0), + ((100, 0, -50, -50, 0), 0.3145492757856567), + ((100, 0, 0, 0, 0), 0.0), + ((100, 0, 50, 50, 0), 2.27260703684609), + ((100, 0, 100, 0, 0), 0.0), + ((100, 50, -100, 0, 0), 0.0), + ((100, 50, -50, 50, 0), -0.16949328993376553), + ((100, 50, 0, 0, 0), 0.0), + ((100, 50, 50, 50, 0), 0.5196380801381327), + ((100, 50, 100, 0, 0), 0.0), + ((100, 100, -100, 0, 0), 0.0), + ((100, 100, -50, 50, 0), -40.4), + ((100, 100, 0, 0, 0), 0.0), + ((100, 100, 50, 50, 0), -40.4), + ((100, 100, 100, 0, 0), 0.0), + ]; + + for ((x, y, z, h1, h2), result) in values { + let level1 = FluidLevel::new(h1, *WATER_BLOCK); + let level2 = FluidLevel::new(h2, *WATER_BLOCK); + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + let sample = aquifer.barrier_noise.sample_mut(pos, &env); + assert_eq!( + aquifer.calculate_density(pos, sample, level1, level2), + result + ); + } + } + + #[test] + fn test_apply() { + let (mut aquifer, mut funcs, env) = create_aquifer(); + let values = [ + ((112, -100, 64, 0.037482421875), None), + ((112, -100, 66, 0.037482421875), None), + ((112, -100, 68, 0.037482421875), None), + ((112, -100, 70, 0.037482421875), None), + ((112, -100, 72, 0.037482421875), None), + ((112, -100, 74, 0.037482421875), None), + ((112, -80, 64, 0.037482421875), None), + ((112, -80, 66, 0.037482421875), None), + ((112, -80, 68, 0.037482421875), None), + ((112, -80, 70, 0.037482421875), None), + ((112, -80, 72, 0.037482421875), None), + ((112, -80, 74, 0.037482421875), None), + ((112, -60, 64, 0.04861063447117113), None), + ((112, -60, 66, 0.04924175767418443), None), + ((112, -60, 68, 0.04989611436947345), None), + ((112, -60, 70, 0.0505756649980066), None), + ((112, -60, 72, 0.051280297037227154), None), + ((112, -60, 74, 0.05200473277817172), None), + ((112, -40, 64, 0.10768778489063564), None), + ((112, -40, 66, 0.11167582884587932), None), + ((112, -40, 68, 0.1150242394949102), None), + ((112, -40, 70, 0.11846243756482717), None), + ((112, -40, 72, 0.12198087391634192), None), + ((112, -40, 74, 0.12558796524209848), None), + ((112, -20, 64, 0.10797485850904144), None), + ((112, -20, 66, 0.10725848123542484), None), + ((112, -20, 68, 0.1061187765379769), None), + ((112, -20, 70, 0.10630527141203541), None), + ((112, -20, 72, 0.10955530075188523), None), + ((112, -20, 74, 0.11296050502041746), None), + ((112, 0, 64, -0.0016242211141160837), None), + ((112, 0, 66, -1.8270827225992477E-4), None), + ((112, 0, 68, 0.0013878562706830444), None), + ((112, 0, 70, 0.0030297756784707407), None), + ((112, 0, 72, 0.004722310162617811), None), + ((112, 0, 74, 0.0064699315064971315), None), + ((112, 20, 64, 0.042774410930765096), None), + ((112, 20, 66, 0.040191327400772414), None), + ((112, 20, 68, 0.0375637494138927), None), + ((112, 20, 70, 0.03485919313914573), None), + ((112, 20, 72, 0.032058901444915404), None), + ((112, 20, 74, 0.029170651813548235), None), + ((112, 40, 64, 0.011596925999172775), None), + ((112, 40, 66, 0.014957019593043965), None), + ((112, 40, 68, 0.01827627643898028), None), + ((112, 40, 70, 0.021477214738188897), None), + ((112, 40, 72, 0.02448508577325224), None), + ((112, 40, 74, 0.027262647782191486), None), + ((112, 60, 64, 0.14338446306313316), None), + ((112, 60, 66, 0.16772904485726645), None), + ((112, 60, 68, 0.1756309873589998), None), + ((112, 60, 70, 0.1782686032102433), None), + ((112, 60, 72, 0.18822148746793055), None), + ((112, 60, 74, 0.20387997189913717), None), + ((112, 80, 64, -0.28931054817132484), Some(BlockState::AIR)), + ((112, 80, 66, -0.2808098154769529), Some(BlockState::AIR)), + ((112, 80, 68, -0.2806908647477032), Some(BlockState::AIR)), + ((112, 80, 70, -0.28068300576359284), Some(BlockState::AIR)), + ((112, 80, 72, -0.2805878392398348), Some(BlockState::AIR)), + ((112, 80, 74, -0.27824504138444317), Some(BlockState::AIR)), + ((112, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((112, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((112, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((112, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((112, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((112, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((114, -100, 64, 0.037482421875), None), + ((114, -100, 66, 0.037482421875), None), + ((114, -100, 68, 0.037482421875), None), + ((114, -100, 70, 0.037482421875), None), + ((114, -100, 72, 0.037482421875), None), + ((114, -100, 74, 0.037482421875), None), + ((114, -80, 64, 0.037482421875), None), + ((114, -80, 66, 0.037482421875), None), + ((114, -80, 68, 0.037482421875), None), + ((114, -80, 70, 0.037482421875), None), + ((114, -80, 72, 0.037482421875), None), + ((114, -80, 74, 0.037482421875), None), + ((114, -60, 64, 0.0491033911468506), None), + ((114, -60, 66, 0.04974948234981454), None), + ((114, -60, 68, 0.05041864489941496), None), + ((114, -60, 70, 0.051112999802414315), None), + ((114, -60, 72, 0.051832684146704056), None), + ((114, -60, 74, 0.05257231446254198), None), + ((114, -40, 64, 0.1122919611041932), None), + ((114, -40, 66, 0.11636247433302638), None), + ((114, -40, 68, 0.11979640774332366), None), + ((114, -40, 70, 0.12330055500715384), None), + ((114, -40, 72, 0.1268619579414046), None), + ((114, -40, 74, 0.13048474950215), None), + ((114, -20, 64, 0.10435296791344484), None), + ((114, -20, 66, 0.10558672714675042), None), + ((114, -20, 68, 0.10831868013423275), None), + ((114, -20, 70, 0.11121282163190734), None), + ((114, -20, 72, 0.11433776346079558), None), + ((114, -20, 74, 0.11770444723497474), None), + ((114, 0, 64, -0.0026209759846139574), Some(*WATER_BLOCK)), + ((114, 0, 66, -0.0011869543056835608), Some(*WATER_BLOCK)), + ((114, 0, 68, 3.9347454816496854E-4), None), + ((114, 0, 70, 0.002068623223791626), None), + ((114, 0, 72, 0.0038193250297024243), None), + ((114, 0, 74, 0.005646396361630968), None), + ((114, 20, 64, 0.04183884597405475), None), + ((114, 20, 66, 0.039334239558802865), None), + ((114, 20, 68, 0.0367933735261107), None), + ((114, 20, 70, 0.03417828296442246), None), + ((114, 20, 72, 0.03146119496538579), None), + ((114, 20, 74, 0.028640178813057193), None), + ((114, 40, 64, 0.0011727557986376189), None), + ((114, 40, 66, 0.004478197250912497), None), + ((114, 40, 68, 0.007807656734373648), None), + ((114, 40, 70, 0.0110982528501824), None), + ((114, 40, 72, 0.014287968294347897), None), + ((114, 40, 74, 0.017340060385442255), None), + ((114, 60, 64, 0.057307692379898946), None), + ((114, 60, 66, 0.07909878599088975), None), + ((114, 60, 68, 0.09103769264897049), None), + ((114, 60, 70, 0.10529675531043547), None), + ((114, 60, 72, 0.1261191394093652), None), + ((114, 60, 74, 0.15323465023530602), None), + ((114, 80, 64, -0.3135251519473628), Some(BlockState::AIR)), + ((114, 80, 66, -0.3092766951165722), Some(BlockState::AIR)), + ((114, 80, 68, -0.3063751991759311), Some(BlockState::AIR)), + ((114, 80, 70, -0.3004342091280733), Some(BlockState::AIR)), + ((114, 80, 72, -0.29703745590700253), Some(BlockState::AIR)), + ((114, 80, 74, -0.2920638815250855), Some(BlockState::AIR)), + ((114, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((114, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((114, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((114, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((114, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((114, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((116, -100, 64, 0.037482421875), None), + ((116, -100, 66, 0.037482421875), None), + ((116, -100, 68, 0.037482421875), None), + ((116, -100, 70, 0.037482421875), None), + ((116, -100, 72, 0.037482421875), None), + ((116, -100, 74, 0.037482421875), None), + ((116, -80, 64, 0.037482421875), None), + ((116, -80, 66, 0.037482421875), None), + ((116, -80, 68, 0.037482421875), None), + ((116, -80, 70, 0.037482421875), None), + ((116, -80, 72, 0.037482421875), None), + ((116, -80, 74, 0.037482421875), None), + ((116, -60, 64, 0.049510031628008565), None), + ((116, -60, 66, 0.0501688864114582), None), + ((116, -60, 68, 0.05085081029508635), None), + ((116, -60, 70, 0.051557962654552196), None), + ((116, -60, 72, 0.05229073376331405), None), + ((116, -60, 74, 0.05304386684600273), None), + ((116, -40, 64, 0.11647696380354154), None), + ((116, -40, 66, 0.12065670598690036), None), + ((116, -40, 68, 0.124186198423662), None), + ((116, -40, 70, 0.12776934001653206), None), + ((116, -40, 72, 0.1313900411197126), None), + ((116, -40, 74, 0.13504793394752057), None), + ((116, -20, 64, 0.10797310440989095), None), + ((116, -20, 66, 0.11052803071968675), None), + ((116, -20, 68, 0.11313075983384659), None), + ((116, -20, 70, 0.11589560860382501), None), + ((116, -20, 72, 0.11889599517563405), None), + ((116, -20, 74, 0.12214992807094607), None), + ((116, 0, 64, -0.003764380972543319), Some(*WATER_BLOCK)), + ((116, 0, 66, -0.002339168705169207), Some(*WATER_BLOCK)), + ((116, 0, 68, -7.530784033722614E-4), Some(*WATER_BLOCK)), + ((116, 0, 70, 9.517226455286942E-4), None), + ((116, 0, 72, 0.0027605740566328273), None), + ((116, 0, 74, 0.0046712919320928475), None), + ((116, 20, 64, 0.04027812111674997), None), + ((116, 20, 66, 0.03846080745866824), None), + ((116, 20, 68, 0.03602535830962611), None), + ((116, 20, 70, 0.033477031827460015), None), + ((116, 20, 72, 0.03082854239914883), None), + ((116, 20, 74, 0.028967404819271153), None), + ((116, 40, 64, -0.009355588931802767), None), + ((116, 40, 66, -0.006094366713842806), Some(BlockState::AIR)), + ((116, 40, 68, -0.0027537988904787606), Some(BlockState::AIR)), + ((116, 40, 70, 6.165942717199293E-4), None), + ((116, 40, 72, 0.00396682662711753), None), + ((116, 40, 74, 0.007260950530417173), None), + ((116, 60, 64, 0.022624582978071506), None), + ((116, 60, 66, 0.023942871216082746), None), + ((116, 60, 68, 0.037192323513527165), None), + ((116, 60, 70, 0.053305618429865455), None), + ((116, 60, 72, 0.06694547220363958), None), + ((116, 60, 74, 0.08711813973093903), None), + ((116, 80, 64, -0.3326652310213258), Some(BlockState::AIR)), + ((116, 80, 66, -0.32962834810938174), Some(BlockState::AIR)), + ((116, 80, 68, -0.32236370014057947), Some(BlockState::AIR)), + ((116, 80, 70, -0.31670491006554574), Some(BlockState::AIR)), + ((116, 80, 72, -0.3130639601887072), Some(BlockState::AIR)), + ((116, 80, 74, -0.3124769234268471), Some(BlockState::AIR)), + ((116, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((116, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((116, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((116, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((116, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((116, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((118, -100, 64, 0.037482421875), None), + ((118, -100, 66, 0.037482421875), None), + ((118, -100, 68, 0.037482421875), None), + ((118, -100, 70, 0.037482421875), None), + ((118, -100, 72, 0.037482421875), None), + ((118, -100, 74, 0.037482421875), None), + ((118, -80, 64, 0.037482421875), None), + ((118, -80, 66, 0.037482421875), None), + ((118, -80, 68, 0.037482421875), None), + ((118, -80, 70, 0.037482421875), None), + ((118, -80, 72, 0.037482421875), None), + ((118, -80, 74, 0.037482421875), None), + ((118, -60, 64, 0.04983026397203373), None), + ((118, -60, 66, 0.05049926028532013), None), + ((118, -60, 68, 0.05119129093033625), None), + ((118, -60, 70, 0.05190836104462707), None), + ((118, -60, 72, 0.0526510917415344), None), + ((118, -60, 74, 0.05341462434689053), None), + ((118, -40, 64, 0.12023506214440967), None), + ((118, -40, 66, 0.12453642919562771), None), + ((118, -40, 68, 0.1281709824736104), None), + ((118, -40, 70, 0.13184553502467083), None), + ((118, -40, 72, 0.13554113610267055), None), + ((118, -40, 74, 0.13925273367632113), None), + ((118, -20, 64, 0.11282016461369758), None), + ((118, -20, 66, 0.11526093589883914), None), + ((118, -20, 68, 0.11774539644635261), None), + ((118, -20, 70, 0.12038440430256446), None), + ((118, -20, 72, 0.12325317705242089), None), + ((118, -20, 74, 0.12637678353248477), None), + ((118, 0, 64, -0.00501589634392619), Some(*WATER_BLOCK)), + ((118, 0, 66, -0.003601631485605401), Some(*WATER_BLOCK)), + ((118, 0, 68, -0.0020166185756455924), Some(*WATER_BLOCK)), + ((118, 0, 70, -2.901294172670075E-4), Some(*WATER_BLOCK)), + ((118, 0, 72, 0.0015704124446037308), None), + ((118, 0, 74, 0.0035605198020311826), None), + ((118, 20, 64, 0.040232966220497414), None), + ((118, 20, 66, 0.039486572716430204), None), + ((118, 20, 68, 0.03885242305023035), None), + ((118, 20, 70, 0.03837601204655802), None), + ((118, 20, 72, 0.03770430407795084), None), + ((118, 20, 74, 0.03707763999605109), None), + ((118, 40, 64, -0.016298811685686653), None), + ((118, 40, 66, -0.016656636719901533), Some(BlockState::AIR)), + ((118, 40, 68, -0.01330299024830442), Some(BlockState::AIR)), + ((118, 40, 70, -0.009864486324034218), Some(BlockState::AIR)), + ((118, 40, 72, -0.006380723268648157), Some(BlockState::AIR)), + ((118, 40, 74, -0.002886835272463701), Some(BlockState::AIR)), + ((118, 60, 64, 0.006086790713922152), None), + ((118, 60, 66, 0.006014479808113486), None), + ((118, 60, 68, 0.008953321476532182), None), + ((118, 60, 70, 0.011915636473415587), None), + ((118, 60, 72, 0.01001192490238903), None), + ((118, 60, 74, 0.0075500927486281426), None), + ((118, 80, 64, -0.3462118919745469), Some(BlockState::AIR)), + ((118, 80, 66, -0.34419241078645835), Some(BlockState::AIR)), + ((118, 80, 68, -0.33580861045450133), Some(BlockState::AIR)), + ((118, 80, 70, -0.33008534054566163), Some(BlockState::AIR)), + ((118, 80, 72, -0.333649815109498), Some(BlockState::AIR)), + ((118, 80, 74, -0.33771329428807284), Some(BlockState::AIR)), + ((118, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((118, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((118, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((118, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((118, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((118, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((120, -100, 64, 0.037482421875), None), + ((120, -100, 66, 0.037482421875), None), + ((120, -100, 68, 0.037482421875), None), + ((120, -100, 70, 0.037482421875), None), + ((120, -100, 72, 0.037482421875), None), + ((120, -100, 74, 0.037482421875), None), + ((120, -80, 64, 0.037482421875), None), + ((120, -80, 66, 0.037482421875), None), + ((120, -80, 68, 0.037482421875), None), + ((120, -80, 70, 0.037482421875), None), + ((120, -80, 72, 0.037482421875), None), + ((120, -80, 74, 0.037482421875), None), + ((120, -60, 64, 0.05006400032487905), None), + ((120, -60, 66, 0.05074065517392799), None), + ((120, -60, 68, 0.05144011744518559), None), + ((120, -60, 70, 0.05216399757431933), None), + ((120, -60, 72, 0.052913091382129525), None), + ((120, -60, 74, 0.053683198493088384), None), + ((120, -40, 64, 0.1235607292468892), None), + ((120, -40, 66, 0.12798336289135304), None), + ((120, -40, 68, 0.13173164094126777), None), + ((120, -40, 70, 0.13550880522456066), None), + ((120, -40, 72, 0.1392932761010718), None), + ((120, -40, 74, 0.14307520910884483), None), + ((120, -20, 64, 0.11746888767713162), None), + ((120, -20, 66, 0.1198086187834423), None), + ((120, -20, 68, 0.12218509691580316), None), + ((120, -20, 70, 0.12469970986670785), None), + ((120, -20, 72, 0.1274266324562779), None), + ((120, -20, 74, 0.13039812171785095), None), + ((120, 0, 64, -0.006329576321547214), Some(*WATER_BLOCK)), + ((120, 0, 66, -0.004930192503238298), Some(*WATER_BLOCK)), + ((120, 0, 68, -0.003355964670343278), Some(*WATER_BLOCK)), + ((120, 0, 70, -0.0016206542469077872), Some(*WATER_BLOCK)), + ((120, 0, 72, 2.77535008128212E-4), None), + ((120, 0, 74, 0.002332419553726638), None), + ((120, 20, 64, 0.04783863627983937), None), + ((120, 20, 66, 0.04699098011102891), None), + ((120, 20, 68, 0.046231913852781324), None), + ((120, 20, 70, 0.04560004002476374), None), + ((120, 20, 72, 0.04512419653798615), None), + ((120, 20, 74, 0.04482086018104904), None), + ((120, 40, 64, -0.017456523705167773), None), + ((120, 40, 66, -0.020044623482270124), Some(BlockState::AIR)), + ((120, 40, 68, -0.022372181411266172), Some(BlockState::AIR)), + ((120, 40, 70, -0.020228945291907708), Some(BlockState::AIR)), + ((120, 40, 72, -0.01664436674077766), Some(BlockState::AIR)), + ((120, 40, 74, -0.013001583733654043), Some(BlockState::AIR)), + ((120, 60, 64, -0.010805185122555435), Some(*WATER_BLOCK)), + ((120, 60, 66, -0.011684313707812422), Some(*WATER_BLOCK)), + ((120, 60, 68, -0.007705484690135335), Some(*WATER_BLOCK)), + ((120, 60, 70, -0.012326309226980426), Some(*WATER_BLOCK)), + ((120, 60, 72, -0.019043795741958334), Some(*WATER_BLOCK)), + ((120, 60, 74, -0.023185441889689514), Some(*WATER_BLOCK)), + ((120, 80, 64, -0.3611328625547435), Some(BlockState::AIR)), + ((120, 80, 66, -0.3586517592327399), Some(BlockState::AIR)), + ((120, 80, 68, -0.3524534485283812), Some(BlockState::AIR)), + ((120, 80, 70, -0.35323218454039057), Some(BlockState::AIR)), + ((120, 80, 72, -0.36213549677301105), Some(BlockState::AIR)), + ((120, 80, 74, -0.3684474143996314), Some(BlockState::AIR)), + ((120, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((120, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((120, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((120, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((120, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((120, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((122, -100, 64, 0.037482421875), None), + ((122, -100, 66, 0.037482421875), None), + ((122, -100, 68, 0.037482421875), None), + ((122, -100, 70, 0.037482421875), None), + ((122, -100, 72, 0.037482421875), None), + ((122, -100, 74, 0.037482421875), None), + ((122, -80, 64, 0.037482421875), None), + ((122, -80, 66, 0.037482421875), None), + ((122, -80, 68, 0.037482421875), None), + ((122, -80, 70, 0.037482421875), None), + ((122, -80, 72, 0.037482421875), None), + ((122, -80, 74, 0.037482421875), None), + ((122, -60, 64, 0.050211152183993704), None), + ((122, -60, 66, 0.05089355899866971), None), + ((122, -60, 68, 0.05159826596516877), None), + ((122, -60, 70, 0.05232622949491639), None), + ((122, -60, 72, 0.053078329171471185), None), + ((122, -60, 74, 0.05385122904837061), None), + ((122, -40, 64, 0.12644943947294945), None), + ((122, -40, 66, 0.13095960991588632), None), + ((122, -40, 68, 0.13485451601704876), None), + ((122, -40, 70, 0.13874405974643175), None), + ((122, -40, 72, 0.1426292409194739), None), + ((122, -40, 74, 0.14649538659711875), None), + ((122, -20, 64, 0.12191638116406471), None), + ((122, -20, 66, 0.12416901766463509), None), + ((122, -20, 68, 0.1264480340172126), None), + ((122, -20, 70, 0.12884021810202248), None), + ((122, -20, 72, 0.13141636494496137), None), + ((122, -20, 74, 0.13421609155559988), None), + ((122, 0, 64, -0.007667256303541582), Some(*WATER_BLOCK)), + ((122, 0, 66, -0.006288822820341533), Some(*WATER_BLOCK)), + ((122, 0, 68, -0.004737470102527975), Some(*WATER_BLOCK)), + ((122, 0, 70, -0.0030099389619020873), Some(*WATER_BLOCK)), + ((122, 0, 72, -0.0010942861750551764), Some(*WATER_BLOCK)), + ((122, 0, 74, 0.001001992078975999), None), + ((122, 20, 64, 0.05535892661135848), None), + ((122, 20, 66, 0.05444413322973901), None), + ((122, 20, 68, 0.05359719969130291), None), + ((122, 20, 70, 0.05284624631887433), None), + ((122, 20, 72, 0.052209127741325245), None), + ((122, 20, 74, 0.05170112238940831), None), + ((122, 40, 64, -0.013498316953033454), None), + ((122, 40, 66, -0.016896390550754353), Some(BlockState::AIR)), + ((122, 40, 68, -0.01994683889106233), Some(BlockState::AIR)), + ((122, 40, 70, -0.022658183924480487), Some(BlockState::AIR)), + ((122, 40, 72, -0.02460705550987633), Some(BlockState::AIR)), + ((122, 40, 74, -0.02133677750482264), None), + ((122, 60, 64, -0.02580014098083049), Some(*WATER_BLOCK)), + ((122, 60, 66, -0.027410062228040422), Some(*WATER_BLOCK)), + ((122, 60, 68, -0.02425659570836858), Some(*WATER_BLOCK)), + ((122, 60, 70, -0.03261718168256943), Some(*WATER_BLOCK)), + ((122, 60, 72, -0.04369665936638442), Some(*WATER_BLOCK)), + ((122, 60, 74, -0.04490159197647781), Some(*WATER_BLOCK)), + ((122, 80, 64, -0.37247525946547166), Some(BlockState::AIR)), + ((122, 80, 66, -0.3727266378002749), Some(BlockState::AIR)), + ((122, 80, 68, -0.36804742745663505), Some(BlockState::AIR)), + ((122, 80, 70, -0.3736723706537362), Some(BlockState::AIR)), + ((122, 80, 72, -0.3860951288334311), Some(BlockState::AIR)), + ((122, 80, 74, -0.3923721309133264), Some(BlockState::AIR)), + ((122, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((122, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((122, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((122, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((122, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((122, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((124, -100, 64, 0.037482421875), None), + ((124, -100, 66, 0.037482421875), None), + ((124, -100, 68, 0.037482421875), None), + ((124, -100, 70, 0.037482421875), None), + ((124, -100, 72, 0.037482421875), None), + ((124, -100, 74, 0.037482421875), None), + ((124, -80, 64, 0.037482421875), None), + ((124, -80, 66, 0.037482421875), None), + ((124, -80, 68, 0.037482421875), None), + ((124, -80, 70, 0.037482421875), None), + ((124, -80, 72, 0.037482421875), None), + ((124, -80, 74, 0.037482421875), None), + ((124, -60, 64, 0.05027131800090962), None), + ((124, -60, 66, 0.0509584844305151), None), + ((124, -60, 68, 0.05166719216129481), None), + ((124, -60, 70, 0.05239749814810798), None), + ((124, -60, 72, 0.053150241639753654), None), + ((124, -60, 74, 0.053923063702221205), None), + ((124, -40, 64, 0.1288961855391929), None), + ((124, -40, 66, 0.13348604127036617), None), + ((124, -40, 68, 0.13753360917037172), None), + ((124, -40, 70, 0.1415440368478666), None), + ((124, -40, 72, 0.1455395599824845), None), + ((124, -40, 74, 0.1495006614184435), None), + ((124, -20, 64, 0.12612367959767024), None), + ((124, -20, 66, 0.12830319402402945), None), + ((124, -20, 68, 0.1304960062341348), None), + ((124, -20, 70, 0.1327707947453995), None), + ((124, -20, 72, 0.13519345838131658), None), + ((124, -20, 74, 0.13781110986582973), None), + ((124, 0, 64, -0.009009809178163559), Some(*WATER_BLOCK)), + ((124, 0, 66, -0.007660237459532607), Some(*WATER_BLOCK)), + ((124, 0, 68, -0.0061446463166489424), Some(*WATER_BLOCK)), + ((124, 0, 70, -0.004442459854201204), Some(*WATER_BLOCK)), + ((124, 0, 72, -0.0025318494505197223), Some(*WATER_BLOCK)), + ((124, 0, 74, -4.216225767843497E-4), None), + ((124, 20, 64, 0.06277697412858188), None), + ((124, 20, 66, 0.06182400117210263), None), + ((124, 20, 68, 0.060920470163534336), None), + ((124, 20, 70, 0.06008166953195572), None), + ((124, 20, 72, 0.05931163578048011), None), + ((124, 20, 74, 0.05862261977236657), None), + ((124, 40, 64, -0.004596793013348681), None), + ((124, 40, 66, -0.007881293688553023), None), + ((124, 40, 68, -0.010851313478373932), None), + ((124, 40, 70, -0.013513605008223933), Some(*WATER_BLOCK)), + ((124, 40, 72, -0.015880866729427373), Some(*WATER_BLOCK)), + ((124, 40, 74, -0.017978317799117856), Some(*WATER_BLOCK)), + ((124, 60, 64, -0.033729060298063454), Some(*WATER_BLOCK)), + ((124, 60, 66, -0.04062740064249005), Some(*WATER_BLOCK)), + ((124, 60, 68, -0.03660634922712756), Some(*WATER_BLOCK)), + ((124, 60, 70, -0.04106936165998065), Some(*WATER_BLOCK)), + ((124, 60, 72, -0.048715160337165046), Some(*WATER_BLOCK)), + ((124, 60, 74, -0.053817378732386144), Some(*WATER_BLOCK)), + ((124, 80, 64, -0.378513110274629), Some(BlockState::AIR)), + ((124, 80, 66, -0.37887533037235366), Some(BlockState::AIR)), + ((124, 80, 68, -0.3755672366866089), Some(BlockState::AIR)), + ((124, 80, 70, -0.3806264904596738), Some(BlockState::AIR)), + ((124, 80, 72, -0.39139114552312176), Some(BlockState::AIR)), + ((124, 80, 74, -0.39905004304932734), Some(BlockState::AIR)), + ((124, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((124, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((124, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((124, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((124, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((124, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ((126, -100, 64, 0.037482421875), None), + ((126, -100, 66, 0.037482421875), None), + ((126, -100, 68, 0.037482421875), None), + ((126, -100, 70, 0.037482421875), None), + ((126, -100, 72, 0.037482421875), None), + ((126, -100, 74, 0.037482421875), None), + ((126, -80, 64, 0.037482421875), None), + ((126, -80, 66, 0.037482421875), None), + ((126, -80, 68, 0.037482421875), None), + ((126, -80, 70, 0.037482421875), None), + ((126, -80, 72, 0.037482421875), None), + ((126, -80, 74, 0.037482421875), None), + ((126, -60, 64, 0.05024330978368198), None), + ((126, -60, 66, 0.05093542123713047), None), + ((126, -60, 68, 0.05164825745773993), None), + ((126, -60, 70, 0.052380776473173525), None), + ((126, -60, 72, 0.053133618951577574), None), + ((126, -60, 74, 0.05390538149459787), None), + ((126, -40, 64, 0.1308942633558083), None), + ((126, -40, 66, 0.1355722846035891), None), + ((126, -40, 68, 0.13977234300629068), None), + ((126, -40, 70, 0.14391148475400958), None), + ((126, -40, 72, 0.1480252139578508), None), + ((126, -40, 74, 0.15208907413316627), None), + ((126, -20, 64, 0.13001056656809973), None), + ((126, -20, 66, 0.13213006749070327), None), + ((126, -20, 68, 0.1342494739710899), None), + ((126, -20, 70, 0.13641807828631622), None), + ((126, -20, 72, 0.13869641277763253), None), + ((126, -20, 74, 0.1411390651002113), None), + ((126, 0, 64, -0.010355206926252296), Some(*WATER_BLOCK)), + ((126, 0, 66, -0.009043874021560911), Some(*WATER_BLOCK)), + ((126, 0, 68, -0.007576245457331987), Some(*WATER_BLOCK)), + ((126, 0, 70, -0.005915269354878528), Some(*WATER_BLOCK)), + ((126, 0, 72, -0.0040306175772153365), Some(*WATER_BLOCK)), + ((126, 0, 74, -0.0019328609472880898), Some(*WATER_BLOCK)), + ((126, 20, 64, 0.0700499260773044), None), + ((126, 20, 66, 0.06908003164862005), None), + ((126, 20, 68, 0.0681425614589177), None), + ((126, 20, 70, 0.06723915989832648), None), + ((126, 20, 72, 0.066359174495176), None), + ((126, 20, 74, 0.06551116407146489), None), + ((126, 40, 64, 0.004497597038868666), None), + ((126, 40, 66, 0.0013502912778844962), None), + ((126, 40, 68, -0.0015191728313191184), Some(*WATER_BLOCK)), + ((126, 40, 70, -0.0041188588354404134), Some(*WATER_BLOCK)), + ((126, 40, 72, -0.006463772144671846), Some(*WATER_BLOCK)), + ((126, 40, 74, -0.008581034519921562), Some(*WATER_BLOCK)), + ((126, 60, 64, -0.03471424652823008), Some(*WATER_BLOCK)), + ((126, 60, 66, -0.04732045558891548), Some(*WATER_BLOCK)), + ((126, 60, 68, -0.04568337003176991), Some(*WATER_BLOCK)), + ((126, 60, 70, -0.0428377824231183), Some(*WATER_BLOCK)), + ((126, 60, 72, -0.04738820166968918), Some(*WATER_BLOCK)), + ((126, 60, 74, -0.05663750895047857), Some(*WATER_BLOCK)), + ((126, 80, 64, -0.37931742687180287), Some(BlockState::AIR)), + ((126, 80, 66, -0.38265481838544235), Some(BlockState::AIR)), + ((126, 80, 68, -0.3808041835281554), Some(BlockState::AIR)), + ((126, 80, 70, -0.38160238129796925), Some(BlockState::AIR)), + ((126, 80, 72, -0.387746448733821), Some(BlockState::AIR)), + ((126, 80, 74, -0.3990668807989283), Some(BlockState::AIR)), + ((126, 100, 64, -0.4583333333333333), Some(BlockState::AIR)), + ((126, 100, 66, -0.4583333333333333), Some(BlockState::AIR)), + ((126, 100, 68, -0.4583333333333333), Some(BlockState::AIR)), + ((126, 100, 70, -0.4583333333333333), Some(BlockState::AIR)), + ((126, 100, 72, -0.4583333333333333), Some(BlockState::AIR)), + ((126, 100, 74, -0.4583333333333333), Some(BlockState::AIR)), + ]; + + for ((x, y, z, sample), result) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq!( + aquifer.apply_internal(pos, &env, &mut funcs, sample), + result + ); + } + } +} diff --git a/pumpkin-world/src/world_gen/blender/mod.rs b/pumpkin-world/src/world_gen/blender/mod.rs index eb1e0ec43..881e8968d 100644 --- a/pumpkin-world/src/world_gen/blender/mod.rs +++ b/pumpkin-world/src/world_gen/blender/mod.rs @@ -1,11 +1,46 @@ +use enum_dispatch::enum_dispatch; + use super::noise::density::NoisePos; -pub struct Blender { - // TODO +pub struct BlendResult { + alpha: f64, + offset: f64, +} + +impl BlendResult { + pub fn new(alpha: f64, offset: f64) -> Self { + Self { alpha, offset } + } +} + +#[enum_dispatch(BlenderImpl)] +pub enum Blender { + NoBlend(NoBlendBlender), } impl Blender { - pub fn apply_blend_density(&self, _pos: &NoisePos, _density: f64) -> f64 { + pub const NO_BLEND: Self = Self::NoBlend(NoBlendBlender {}); +} + +#[enum_dispatch] +pub trait BlenderImpl { + fn calculate(&self, block_x: i32, block_z: i32) -> BlendResult; + + fn apply_blend_density(&self, pos: &NoisePos, density: f64) -> f64; + + fn get_biome_supplier(&self) { todo!() } } + +pub struct NoBlendBlender {} + +impl BlenderImpl for NoBlendBlender { + fn calculate(&self, _block_x: i32, _block_z: i32) -> BlendResult { + BlendResult::new(1f64, 1f64) + } + + fn apply_blend_density(&self, _pos: &NoisePos, density: f64) -> f64 { + density + } +} diff --git a/pumpkin-world/src/world_gen/chunk_noise.rs b/pumpkin-world/src/world_gen/chunk_noise.rs new file mode 100644 index 000000000..7e64e7393 --- /dev/null +++ b/pumpkin-world/src/world_gen/chunk_noise.rs @@ -0,0 +1,1864 @@ +use std::{collections::HashMap, hash::Hash, mem, num::Wrapping, ops::AddAssign, sync::Arc}; + +use lazy_static::lazy_static; +use num_traits::Zero; +use pumpkin_core::math::{floor_div, vector2::Vector2, vector3::Vector3}; + +use crate::{ + block::BlockState, + match_ref_implementations, + world_gen::{ + noise::{density::basic::WrapperType, lerp3}, + section_coords, + }, +}; + +use super::{ + aquifer_sampler::{ + AquiferSampler, AquiferSamplerImpl, FluidLevelSampler, SeaLevelAquiferSampler, + WorldAquiferSampler, + }, + biome_coords, + blender::Blender, + generation_shapes::GenerationShape, + noise::{ + config::NoiseConfig, + density::{ + basic::{BeardifierFunction, WrapperFunction}, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, + ComponentReferenceImplementation, ConversionResultPre, ConverterEnvironment, + ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, + MutableComponentReference, OwnedConverterEnvironment, SharedComponentReference, + }, + noise::InternalNoise, + NoisePos, NoisePosImpl, UnblendedNoisePos, + }, + lerp, + }, + ore_sampler::OreVeinSampler, + positions::chunk_pos, +}; + +lazy_static! { + pub static ref STONE_BLOCK: BlockState = BlockState::new("stone").unwrap(); + pub static ref LAVA_BLOCK: BlockState = BlockState::new("lava").unwrap(); + pub static ref WATER_BLOCK: BlockState = BlockState::new("water").unwrap(); +} + +pub struct ChunkCacheOnceFunction> { + delegate: R, + sample_unique_index: u64, + cache_once_unique_index: u64, + last_sample_result: f64, + cache: Option>, +} + +impl> ChunkCacheOnceFunction { + fn new(delegate: R) -> Self { + Self { + delegate, + sample_unique_index: 0, + cache_once_unique_index: 0, + last_sample_result: 0f64, + cache: None, + } + } +} + +impl> ComponentFunctionImpl for ChunkCacheOnceFunction {} + +impl> MutableComponentFunctionImpl + for ChunkCacheOnceFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &ChunkNoiseState) -> f64 { + if let NoisePos::Chunk(_chunk_pos) = pos { + if let Some(cache) = &mut self.cache { + if self.cache_once_unique_index == env.cache_once_unique_index.0 { + return cache[env.index]; + } + } + + if self.sample_unique_index == env.sample_unique_index.0 { + return self.last_sample_result; + } + + self.sample_unique_index = env.sample_unique_index.0; + self.last_sample_result = self.delegate.sample_mut(pos, env); + return self.last_sample_result; + } + self.delegate.sample_mut(pos, env) + } + + fn fill_mut( + &mut self, + densities: &mut [f64], + applier: &mut dyn EnvironmentApplierImpl, + ) { + if let Some(cache) = &mut self.cache { + let env = applier.env(); + if self.cache_once_unique_index == env.cache_once_unique_index.0 { + densities.iter_mut().enumerate().for_each(|(index, val)| { + *val = cache[index]; + }); + return; + } + } + + self.delegate.fill_mut(densities, applier); + + let env = applier.env(); + self.cache_once_unique_index = env.cache_once_unique_index.0; + + if let Some(cache) = &mut self.cache { + if densities.len() == cache.len() { + cache.iter_mut().enumerate().for_each(|(index, val)| { + *val = densities[index]; + }); + return; + } + } + + self.cache = Some(densities.to_vec().into()); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ChunkNoise + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } + + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + unreachable!() + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + // WARNING: Implementing this might invalidate the unsafe variants for `ChunkNoiseGenerator` + // Make sure you fulling understand these before making an implementation for this! + unreachable!() + } +} + +pub struct ChunkFlatCacheFunction> { + delegate: R, + cache: Box<[f64]>, +} + +impl> ChunkFlatCacheFunction { + fn new(delegate: R, sample: bool, state: &ChunkNoiseState) -> Self { + let mut cache = vec![ + 0f64; + (state.horizontal_biome_end as usize + 1) + * (state.horizontal_biome_end as usize + 1) + ]; + let mut delegate = delegate; + + if sample { + for biome_x in 0..=state.horizontal_biome_end { + let true_biome_x = state.start_biome_pos.x + biome_x as i32; + let block_x = biome_coords::to_block(true_biome_x); + + for biome_z in 0..=state.horizontal_biome_end { + let true_biome_z = state.start_biome_pos.z + biome_z as i32; + let block_z = biome_coords::to_block(true_biome_z); + + let index = + Self::xz_to_index_const(state.horizontal_biome_end, biome_x, biome_z); + + cache[index] = delegate.sample_mut( + &NoisePos::Unblended(UnblendedNoisePos::new(block_x, 0, block_z)), + state, + ); + } + } + } + + Self { + delegate, + cache: cache.into(), + } + } + + const fn xz_to_index_const(horizontal_biome_end: u8, x: u8, z: u8) -> usize { + x as usize * (horizontal_biome_end as usize + 1) + z as usize + } +} + +impl> ComponentFunctionImpl for ChunkFlatCacheFunction {} + +impl> MutableComponentFunctionImpl + for ChunkFlatCacheFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &ChunkNoiseState) -> f64 { + let biome_x = biome_coords::from_block(pos.x()); + let biome_z = biome_coords::from_block(pos.z()); + + let rel_biome_x = biome_x - env.start_biome_pos.x; + let rel_biome_z = biome_z - env.start_biome_pos.z; + + if rel_biome_x >= 0 + && rel_biome_z >= 0 + && rel_biome_x <= env.horizontal_biome_end as i32 + && rel_biome_z <= env.horizontal_biome_end as i32 + { + let index = Self::xz_to_index_const( + env.horizontal_biome_end, + rel_biome_x as u8, + rel_biome_z as u8, + ); + self.cache[index] + } else { + self.delegate.sample_mut(pos, env) + } + } + + fn fill_mut( + &mut self, + arr: &mut [f64], + applier: &mut dyn EnvironmentApplierImpl, + ) { + applier.fill_mut(arr, self); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ChunkNoise + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } + + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + unreachable!() + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + // WARNING: Implementing this might invalidate the unsafe variants for `ChunkNoiseGenerator` + // Make sure you fulling understand these before making an implementation for this! + unreachable!() + } +} + +pub struct ChunkCellCacheFunction { + delegate: Box>, + cache: Box<[f64]>, +} + +impl ChunkCellCacheFunction { + fn new( + delegate: Box>, + state: &ChunkNoiseState, + ) -> Self { + Self { + delegate, + cache: Self::create_cache(state).into(), + } + } + + fn create_cache(state: &ChunkNoiseState) -> Vec { + vec![ + 0f64; + state.horizontal_cell_block_count as usize + * state.horizontal_cell_block_count as usize + * state.vertical_cell_block_count as usize + ] + } +} + +impl ComponentFunctionImpl for ChunkCellCacheFunction {} + +impl MutableComponentFunctionImpl for ChunkCellCacheFunction { + fn sample_mut(&mut self, pos: &NoisePos, env: &ChunkNoiseState) -> f64 { + if let NoisePos::Chunk(_chunk_pos) = pos { + #[cfg(debug_assertions)] + assert!(env.is_interpolating); + + let cell_block_x = env.cell_block_pos.x; + let cell_block_y = env.cell_block_pos.y; + let cell_block_z = env.cell_block_pos.z; + + if cell_block_x < env.horizontal_cell_block_count + && cell_block_y < env.vertical_cell_block_count + && cell_block_z < env.horizontal_cell_block_count + { + return self.cache[((env.vertical_cell_block_count as usize + - 1 + - cell_block_y as usize) + * env.horizontal_cell_block_count as usize + + cell_block_x as usize) + * env.horizontal_cell_block_count as usize + + cell_block_z as usize]; + } + } + self.delegate.sample_mut(pos, env) + } + + fn fill_mut( + &mut self, + arr: &mut [f64], + applier: &mut dyn EnvironmentApplierImpl, + ) { + applier.fill_mut(arr, self); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ChunkNoise + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } + + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + unreachable!() + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + // WARNING: Implementing this might invalidate the unsafe variants for `ChunkNoiseGenerator` + // Make sure you fulling understand these before making an implementation for this! + unreachable!() + } +} + +pub struct Chunk2DCacheFunction> { + delegate: R, + last_sampled_column: u64, + last_result: f64, +} + +impl> Chunk2DCacheFunction { + fn new(delegate: R) -> Self { + Self { + delegate, + last_sampled_column: chunk_pos::MARKER, + last_result: 0f64, + } + } +} + +impl> ComponentFunctionImpl for Chunk2DCacheFunction {} + +impl> MutableComponentFunctionImpl + for Chunk2DCacheFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &ChunkNoiseState) -> f64 { + let block_x = pos.x(); + let block_z = pos.z(); + + // This is the chunk packing function, but we use it for block positions here + let hash = chunk_pos::packed(&Vector2::new(block_x, block_z)); + + if hash == self.last_sampled_column { + self.last_result + } else { + self.last_sampled_column = hash; + self.last_result = self.delegate.sample_mut(pos, env); + self.last_result + } + } + + fn fill_mut( + &mut self, + arr: &mut [f64], + applier: &mut dyn EnvironmentApplierImpl, + ) { + self.delegate.fill_mut(arr, applier); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ChunkNoise + } + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } + + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + unreachable!() + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + // WARNING: Implementing this might invalidate the unsafe variants for `ChunkNoiseGenerator` + // Make sure you fulling understand these before making an implementation for this! + unreachable!() + } +} + +pub struct ChunkInterpolatorFunction { + delegate: Box>, + + start_buf: Box<[f64]>, + end_buf: Box<[f64]>, + + first_pass: [f64; 8], + second_pass: [f64; 4], + third_pass: [f64; 2], + result: f64, +} + +impl ChunkInterpolatorFunction { + fn new( + delegate: Box>, + state: &ChunkNoiseState, + ) -> Self { + Self { + delegate, + start_buf: vec![ + 0f64; + (state.vertical_cell_count as usize + 1) + * (state.horizontal_cell_count as usize + 1) + ] + .into(), + + end_buf: vec![ + 0f64; + (state.vertical_cell_count as usize + 1) + * (state.horizontal_cell_count as usize + 1) + ] + .into(), + + first_pass: [0f64; 8], + second_pass: [0f64; 4], + third_pass: [0f64; 2], + result: 0f64, + } + } + + fn yz_to_buf_index(cell_y: u16, cell_z: u8, state: &ChunkNoiseState) -> usize { + cell_z as usize * (state.vertical_cell_count as usize + 1) + cell_y as usize + } + + fn on_sampled_cell_corners(&mut self, cell_y: u16, cell_z: u8, state: &ChunkNoiseState) { + self.first_pass[0] = self.start_buf[Self::yz_to_buf_index(cell_y, cell_z, state)]; + self.first_pass[1] = self.start_buf[Self::yz_to_buf_index(cell_y, cell_z + 1, state)]; + self.first_pass[4] = self.end_buf[Self::yz_to_buf_index(cell_y, cell_z, state)]; + self.first_pass[5] = self.end_buf[Self::yz_to_buf_index(cell_y, cell_z + 1, state)]; + self.first_pass[2] = self.start_buf[Self::yz_to_buf_index(cell_y + 1, cell_z, state)]; + self.first_pass[3] = self.start_buf[Self::yz_to_buf_index(cell_y + 1, cell_z + 1, state)]; + self.first_pass[6] = self.end_buf[Self::yz_to_buf_index(cell_y + 1, cell_z, state)]; + self.first_pass[7] = self.end_buf[Self::yz_to_buf_index(cell_y + 1, cell_z + 1, state)]; + + //log::debug!("{} First pass: {:?}", self.shared.unique_id, first_pass); + } + + fn interpolate_y(&mut self, delta: f64) { + self.second_pass[0] = lerp(delta, self.first_pass[0], self.first_pass[2]); + self.second_pass[2] = lerp(delta, self.first_pass[4], self.first_pass[6]); + self.second_pass[1] = lerp(delta, self.first_pass[1], self.first_pass[3]); + self.second_pass[3] = lerp(delta, self.first_pass[5], self.first_pass[7]); + + //log::debug!("{} Second pass: {:?}", self.shared.unique_id, second_pass); + } + + fn interpolate_x(&mut self, delta: f64) { + self.third_pass[0] = lerp(delta, self.second_pass[0], self.second_pass[2]); + self.third_pass[1] = lerp(delta, self.second_pass[1], self.second_pass[3]); + + //log::debug!("{} Third pass: {:?}", self.shared.unique_id, third_pass); + } + + fn interpolate_z(&mut self, delta: f64) { + self.result = lerp(delta, self.third_pass[0], self.third_pass[1]); + + //log::debug!("{} Result: {:?}", self.shared.unique_id, *result); + } + + fn swap_buffers(&mut self) { + #[cfg(debug_assertions)] + let temp1 = self.start_buf.clone(); + #[cfg(debug_assertions)] + let temp2 = self.end_buf.clone(); + + mem::swap(&mut self.start_buf, &mut self.end_buf); + + #[cfg(debug_assertions)] + assert!(temp1.iter().eq(self.end_buf.iter())); + #[cfg(debug_assertions)] + assert!(temp2.iter().eq(self.start_buf.iter())); + } +} + +impl ComponentFunctionImpl for ChunkInterpolatorFunction {} + +impl MutableComponentFunctionImpl for ChunkInterpolatorFunction { + fn sample_mut(&mut self, pos: &NoisePos, env: &ChunkNoiseState) -> f64 { + if let NoisePos::Chunk(_chunk_pos) = pos { + #[cfg(debug_assertions)] + assert!(env.is_interpolating); + + if env.is_sampling_for_caches { + lerp3( + env.cell_block_pos.x as f64 / env.horizontal_cell_block_count as f64, + env.cell_block_pos.y as f64 / env.vertical_cell_block_count as f64, + env.cell_block_pos.z as f64 / env.horizontal_cell_block_count as f64, + self.first_pass[0], + self.first_pass[4], + self.first_pass[2], + self.first_pass[6], + self.first_pass[1], + self.first_pass[5], + self.first_pass[3], + self.first_pass[7], + ) + } else { + self.result + } + } else { + self.delegate.sample_mut(pos, env) + } + } + + fn fill_mut( + &mut self, + arr: &mut [f64], + applier: &mut dyn EnvironmentApplierImpl, + ) { + let env = applier.env(); + if env.is_sampling_for_caches { + applier.fill_mut(arr, self); + } else { + self.delegate.fill_mut(arr, applier); + } + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ChunkNoise + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } + + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + unreachable!() + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + // WARNING: Implementing this might invalidate the unsafe variants for `ChunkNoiseGenerator` + // Make sure you fulling understand these before making an implementation for this! + unreachable!() + } +} + +struct CachedFunctions { + interpolators: Vec<*const ChunkInterpolatorFunction>, + caches: Vec<*const ChunkCellCacheFunction>, + cached_results: + HashMap>, +} + +pub struct ChunkNoiseWrappedFunctionConverter<'a> { + shared_data: &'a ChunkNoiseState, + functions: CachedFunctions, +} + +impl<'a> ChunkNoiseWrappedFunctionConverter<'a> { + fn new(shared_data: &'a ChunkNoiseState, functions: CachedFunctions) -> Self { + Self { + shared_data, + functions, + } + } + + fn consume(self) -> CachedFunctions { + self.functions + } +} + +impl ConverterImpl for ChunkNoiseWrappedFunctionConverter<'_> { + fn convert_noise(&mut self, _noise: &Arc) -> Option> { + None + } + + fn convert_env_pre_internal( + &mut self, + component: ConverterEnvironment, + ) -> ConversionResultPre { + match component { + ConverterEnvironment::ChunkNoise => ConversionResultPre::NoChange, + _ => ConversionResultPre::Default, + } + } + + fn converts_post_internal(&mut self, component: ConverterEnvironment) -> bool { + matches!(component, ConverterEnvironment::Wrapper(_, _)) + } + + fn convert_env_post_internal( + &mut self, + component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation { + match component { + OwnedConverterEnvironment::Wrapper(wrapped, action) => match action { + WrapperType::Cache2D => { + let new_ref = match_ref_implementations!( + (wrapped, wrapped); + { + MutableComponentReference(Box::new(Chunk2DCacheFunction::new( + wrapped + ))) + } + ); + new_ref.into() + } + WrapperType::FlatCache => { + let new_ref = match_ref_implementations!( + (wrapped, wrapped); + { + MutableComponentReference(Box::new(ChunkFlatCacheFunction::new( + wrapped, + true, + self.shared_data, + ))) + } + ); + new_ref.into() + } + WrapperType::OnceCache => { + let new_ref = match_ref_implementations!( + (wrapped, wrapped); + { + MutableComponentReference(Box::new(ChunkCacheOnceFunction::new( + wrapped + ))) + } + ); + new_ref.into() + } + WrapperType::CellCache => { + let function = Box::new(ChunkCellCacheFunction::new( + wrapped.boxed(), + self.shared_data, + )); + // Take the pointer of the function wrapped by the box. This function is now on + // the heap, so this ptr will not change even when the box is moved. + // + // Just reading a pointer is not unsafe. + let ptr: *const ChunkCellCacheFunction = &*function; + self.functions.caches.push(ptr); + MutableComponentReference(function).into() + } + WrapperType::Interpolated => { + let function = Box::new(ChunkInterpolatorFunction::new( + wrapped.boxed(), + self.shared_data, + )); + // Take the pointer of the function wrapped by the box. This function is now on + // the heap, so this ptr will not change even when the box is moved. + // + // Just reading a pointer is not unsafe. + let ptr: *const ChunkInterpolatorFunction = &*function; + self.functions.interpolators.push(ptr); + MutableComponentReference(function).into() + } + }, + _ => unreachable!(), + } + } +} + +#[derive(Debug)] +pub struct ChunkNoisePos { + x: i32, + y: i32, + z: i32, + //unique_id: UniqueChunkNoiseId, +} + +impl NoisePosImpl for ChunkNoisePos { + fn x(&self) -> i32 { + self.x + } + + fn y(&self) -> i32 { + self.y + } + + fn z(&self) -> i32 { + self.z + } + + // TODO: implement blender + fn get_blender(&self) -> Blender { + Blender::NO_BLEND + } +} + +pub struct ChunkNoiseInterpolationApplier<'a> { + shared: &'a mut ChunkNoiseState, +} + +impl<'a> ChunkNoiseInterpolationApplier<'a> { + fn new(shared: &'a mut ChunkNoiseState) -> Self { + Self { shared } + } +} + +impl EnvironmentApplierImpl for ChunkNoiseInterpolationApplier<'_> { + type Env = ChunkNoiseState; + + fn fill_mut( + &mut self, + densities: &mut [f64], + function: &mut dyn MutableComponentFunctionImpl, + ) { + for cell_y in 0..=self.shared.vertical_cell_count { + self.shared.start_block_pos.y = (cell_y as i32 + self.shared.minimum_cell_y as i32) + * self.shared.vertical_cell_block_count as i32; + self.shared.sample_unique_index.add_assign(1); + self.shared.cell_block_pos.y = 0; + self.shared.index = cell_y as usize; + let pos = self.shared.create_noise_pos(); + let sample = function.sample_mut(&pos, self.env()); + + //log::debug!("{} for {:?}", sample, pos); + densities[cell_y as usize] = sample; + } + } + + fn env(&mut self) -> &Self::Env { + self.shared + } + + fn cast_up(&mut self) -> &mut dyn ApplierImpl { + self + } +} + +impl ApplierImpl for ChunkNoiseInterpolationApplier<'_> { + fn at(&mut self, index: usize) -> NoisePos { + self.shared.start_block_pos.y = (index as i32 + self.shared.minimum_cell_y as i32) + * self.shared.vertical_cell_block_count as i32; + self.shared.sample_unique_index.add_assign(1); + self.shared.cell_block_pos.y = 0; + self.shared.index = index; + self.shared.create_noise_pos() + } + + fn fill(&mut self, densities: &mut [f64], function: &dyn ImmutableComponentFunctionImpl) { + for cell_y in 0..=self.shared.vertical_cell_count { + self.shared.start_block_pos.y = (cell_y as i32 + self.shared.minimum_cell_y as i32) + * self.shared.vertical_cell_block_count as i32; + self.shared.sample_unique_index.add_assign(1); + self.shared.cell_block_pos.y = 0; + self.shared.index = cell_y as usize; + let pos = self.shared.create_noise_pos(); + let sample = function.sample(&pos); + + //log::debug!("{} for {:?}", sample, pos); + densities[cell_y as usize] = sample; + } + } +} + +pub struct ChunkNoiseApplier<'a> { + shared: &'a mut ChunkNoiseState, +} + +impl<'a> ChunkNoiseApplier<'a> { + fn new(shared: &'a mut ChunkNoiseState) -> Self { + Self { shared } + } +} + +impl EnvironmentApplierImpl for ChunkNoiseApplier<'_> { + type Env = ChunkNoiseState; + + fn fill_mut( + &mut self, + densities: &mut [f64], + function: &mut dyn MutableComponentFunctionImpl, + ) { + self.shared.index = 0; + for cell_y in (0..self.shared.vertical_cell_block_count).rev() { + self.shared.cell_block_pos.y = cell_y; + + for cell_x in 0..self.shared.horizontal_cell_block_count { + self.shared.cell_block_pos.x = cell_x; + + for cell_z in 0..self.shared.horizontal_cell_block_count { + self.shared.cell_block_pos.z = cell_z; + + densities[self.shared.index] = + function.sample_mut(&self.shared.create_noise_pos(), self.env()); + self.shared.index.add_assign(1); + } + } + } + } + + fn env(&mut self) -> &Self::Env { + self.shared + } + + fn cast_up(&mut self) -> &mut dyn ApplierImpl { + self + } +} + +impl ApplierImpl for ChunkNoiseApplier<'_> { + fn at(&mut self, index: usize) -> NoisePos { + let cell_block_z = index % self.shared.horizontal_cell_block_count as usize; + let xy_chunk = index / self.shared.horizontal_cell_block_count as usize; + let cell_block_x = xy_chunk % self.shared.horizontal_cell_block_count as usize; + let cell_block_y = self.shared.vertical_cell_block_count as usize + - 1 + - (xy_chunk / self.shared.horizontal_cell_block_count as usize); + + self.shared.cell_block_pos.x = cell_block_x as u8; + self.shared.cell_block_pos.y = cell_block_y as u8; + self.shared.cell_block_pos.z = cell_block_z as u8; + self.shared.index = index; + self.shared.create_noise_pos() + } + + fn fill(&mut self, densities: &mut [f64], function: &dyn ImmutableComponentFunctionImpl) { + self.shared.index = 0; + for cell_y in (0..self.shared.vertical_cell_block_count).rev() { + self.shared.cell_block_pos.y = cell_y; + + for cell_x in 0..self.shared.horizontal_cell_block_count { + self.shared.cell_block_pos.x = cell_x; + + for cell_z in 0..self.shared.horizontal_cell_block_count { + self.shared.cell_block_pos.z = cell_z; + + densities[self.shared.index] = function.sample(&self.shared.create_noise_pos()); + self.shared.index.add_assign(1); + } + } + } + } +} + +pub const CHUNK_DIM: u8 = 16; + +#[derive(PartialEq, Eq, Clone, Hash, Default)] +pub struct ChunkNoiseState { + cell_block_pos: Vector3, + start_cell_pos: Vector2, + start_block_pos: Vector3, + start_biome_pos: Vector2, + + height: u16, + vertical_cell_count: u16, + horizontal_cell_count: u8, + horizontal_cell_block_count: u8, + vertical_cell_block_count: u8, + horizontal_biome_end: u8, + minimum_cell_y: i8, + minimum_y: i8, + + is_interpolating: bool, + is_sampling_for_caches: bool, + + index: usize, + cache_once_unique_index: Wrapping, + sample_unique_index: Wrapping, +} + +impl DensityFunctionEnvironment for ChunkNoiseState {} + +impl ChunkNoiseState { + pub fn create_noise_pos(&self) -> NoisePos { + let cell_block_x = self.cell_block_pos.x; + let cell_block_y = self.cell_block_pos.y; + let cell_block_z = self.cell_block_pos.z; + + let start_block_x = self.start_block_pos.x; + let start_block_y = self.start_block_pos.y; + let start_block_z = self.start_block_pos.z; + + let x = start_block_x + cell_block_x as i32; + let y = start_block_y + cell_block_y as i32; + let z = start_block_z + cell_block_z as i32; + + //log::debug!("Sampling pos {} {} {}", x, y, z); + // TODO: Add blender + NoisePos::Chunk(ChunkNoisePos { + x, + y, + z, + //unique_id: self.unique_id, + }) + } +} + +pub struct ChunkNoiseDensityFunctions { + initial_density: Box>, + surface_height_estimate: HashMap, +} + +impl ChunkNoiseDensityFunctions { + pub fn estimate_surface_height( + &mut self, + shared: &ChunkNoiseState, + block_x: i32, + block_z: i32, + ) -> i32 { + let biome_aligned_x = biome_coords::to_block(biome_coords::from_block(block_x)); + let biome_aligned_z = biome_coords::to_block(biome_coords::from_block(block_z)); + let packed = chunk_pos::packed(&Vector2::new(biome_aligned_x, biome_aligned_z)); + + if let Some(estimate) = self.surface_height_estimate.get(&packed) { + *estimate + } else { + let estimate = self.calculate_height_estimate(shared, packed); + self.surface_height_estimate.insert(packed, estimate); + estimate + } + } + + fn calculate_height_estimate(&mut self, shared: &ChunkNoiseState, packed_pos: u64) -> i32 { + let x = chunk_pos::unpack_x(packed_pos); + let z = chunk_pos::unpack_z(packed_pos); + + for y in ((shared.minimum_y as i32)..=(shared.minimum_y as i32 + shared.height as i32)) + .rev() + .step_by(shared.vertical_cell_block_count as usize) + { + if self.initial_density.sample_mut( + &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)), + shared, + ) > 0.390625f64 + { + return y; + } + } + + i32::MAX + } +} + +pub enum BlockStateSampler { + Aquifer(AquiferSampler), + Ore(OreVeinSampler), + Chained(ChainedBlockStateSampler), +} + +impl BlockStateSampler { + pub fn sample( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + height_estimator: &mut ChunkNoiseDensityFunctions, + ) -> Option { + match self { + Self::Aquifer(aquifer) => aquifer.apply(pos, state, height_estimator), + Self::Ore(ore) => ore.sample(pos, state), + Self::Chained(chained) => chained.sample(pos, state, height_estimator), + } + } +} + +pub struct ChainedBlockStateSampler { + pub(crate) samplers: Vec, +} + +impl ChainedBlockStateSampler { + pub fn new(samplers: Vec) -> Self { + Self { samplers } + } + + fn sample( + &mut self, + pos: &NoisePos, + state: &ChunkNoiseState, + height_estimator: &mut ChunkNoiseDensityFunctions, + ) -> Option { + self.samplers + .iter_mut() + .map(|sampler| sampler.sample(pos, state, height_estimator)) + .find(|state| state.is_some()) + .unwrap_or(None) + } +} + +pub struct ChunkNoiseGenerator { + pub(crate) state_sampler: BlockStateSampler, + generation_shape: GenerationShape, + + pub(crate) shared: ChunkNoiseState, + /// # Safety + /// + /// Only populate with CellCellCacheFunctions that we own + cell_caches: Box<[*const ChunkCellCacheFunction]>, + /// # Safety + /// + /// Only populate with ChunkInterpolatorFunctions that we own + interpolators: Box<[*const ChunkInterpolatorFunction]>, + pub(crate) density_functions: ChunkNoiseDensityFunctions, +} + +/// # Safety +/// +/// The caller must ensure that this will not be ran while the +/// associated function is sampling, and that this is and function +/// samples are ran from the same thread unsafe functions are run from. +unsafe impl Sync for ChunkNoiseGenerator {} +/// # Safety +/// +/// The caller must ensure that this will not be ran while the +/// associated function is sampling, and that this is and function +/// samples are ran from the same thread unsafe functions are run from. +unsafe impl Send for ChunkNoiseGenerator {} + +impl ChunkNoiseGenerator { + #[allow(clippy::too_many_arguments)] + pub fn new( + horizontal_cell_count: u8, + start_block_x: i32, + start_block_z: i32, + generation_shape: GenerationShape, + config: &NoiseConfig, + level_sampler: FluidLevelSampler, + aquifers: bool, + ore_veins: bool, + ) -> Self { + let start_cell_pos = Vector2::new( + floor_div( + start_block_x, + generation_shape.horizontal_cell_block_count() as i32, + ), + floor_div( + start_block_z, + generation_shape.horizontal_cell_block_count() as i32, + ), + ); + + let start_block_pos = Vector3::new(0, 0, 0); + let cell_block_pos = Vector3::new(0, 0, 0); + let biome_pos = Vector2::new( + biome_coords::from_block(start_block_x), + biome_coords::from_block(start_block_z), + ); + let is_interpolating = false; + let is_sampling = false; + let cache_once_unique_index = Wrapping(0); + let sample_unique_index = Wrapping(0); + let index = 0; + let horizontal_biome_end = biome_coords::from_block( + horizontal_cell_count * generation_shape.horizontal_cell_block_count(), + ); + + let vertical_cell_count = + generation_shape.height() / generation_shape.vertical_cell_block_count() as u16; + let minimum_cell_y = floor_div( + generation_shape.min_y(), + generation_shape.vertical_cell_block_count() as i8, + ); + let vertical_cell_block_count = generation_shape.vertical_cell_block_count(); + let horizontal_cell_block_count = generation_shape.horizontal_cell_block_count(); + + let shared = ChunkNoiseState { + cell_block_pos, + start_cell_pos, + start_block_pos, + start_biome_pos: biome_pos, + height: generation_shape.height(), + vertical_cell_block_count, + horizontal_cell_block_count, + vertical_cell_count, + horizontal_cell_count, + horizontal_biome_end, + minimum_cell_y, + minimum_y: generation_shape.min_y(), + is_interpolating, + is_sampling_for_caches: is_sampling, + index, + cache_once_unique_index, + sample_unique_index, + }; + + let functions = CachedFunctions { + caches: Vec::new(), + interpolators: Vec::new(), + cached_results: HashMap::new(), + }; + + // Convert router for this chunk + let original_router = config.router(); + + let mut converter = ChunkNoiseWrappedFunctionConverter::new(&shared, functions); + let router = original_router.convert(&mut converter); + + let final_density = router.final_density; + let vein_toggle = router.vein_toggle; + let vein_ridged = router.vein_ridged; + let vein_gap = router.vein_gap; + + // Create and convert aquifer density function + let converted_aquifer_density = + WrapperFunction::::create_new_ref( + final_density + .wrapped_ref_from_box() + .add(BeardifierFunction::INSTANCE.into()), + WrapperType::CellCache, + ) + .convert(&mut converter); + + let functions = converter.consume(); + + let aquifer_sampler = if aquifers { + let section_x = section_coords::block_to_section(start_block_x); + let section_z = section_coords::block_to_section(start_block_z); + AquiferSampler::Aquifier(WorldAquiferSampler::new( + Vector2::new(section_x, section_z), + router.barrier, + router.fluid_level_floodedness, + router.fluid_level_spread, + router.lava, + router.erosion, + router.depth, + converted_aquifer_density.boxed(), + config.aquifer_deriver(), + generation_shape.min_y(), + generation_shape.height(), + level_sampler, + )) + } else { + AquiferSampler::SeaLevel(SeaLevelAquiferSampler::new( + level_sampler, + converted_aquifer_density.boxed(), + )) + }; + + let mut samplers = vec![BlockStateSampler::Aquifer(aquifer_sampler)]; + + if ore_veins { + let ore_sampler = + OreVeinSampler::new(vein_toggle, vein_ridged, vein_gap, config.ore_deriver()); + samplers.push(BlockStateSampler::Ore(ore_sampler)); + }; + + let state_sampler = BlockStateSampler::Chained(ChainedBlockStateSampler::new(samplers)); + + let density_functions = ChunkNoiseDensityFunctions { + initial_density: router.internal_density, + surface_height_estimate: HashMap::new(), + }; + + Self { + state_sampler, + generation_shape, + shared, + cell_caches: functions.caches.into(), + interpolators: functions.interpolators.into(), + density_functions, + } + } + + pub fn stop_interpolation(&mut self) { + assert!(self.shared.is_interpolating); + self.shared.is_interpolating = false; + } + + /// Fills all pointed to interpolator functions' start caches + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn sample_start_density(&mut self) { + assert!(!self.shared.is_interpolating); + self.shared.is_interpolating = true; + self.shared.sample_unique_index.set_zero(); + self.sample_density(true, self.shared.start_cell_pos.x); + } + + /// Fills all pointed to interpolator functions' end caches + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn sample_end_density(&mut self, cell_x: u8) { + self.sample_density(false, self.shared.start_cell_pos.x + cell_x as i32 + 1); + self.shared.start_block_pos.x = (self.shared.start_cell_pos.x + cell_x as i32) + * self.horizontal_cell_block_count() as i32; + } + + /// Fills all pointed to interpolator functions' caches + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + unsafe fn sample_density(&mut self, start: bool, current_x: i32) { + self.shared.start_block_pos.x = current_x * self.horizontal_cell_block_count() as i32; + self.shared.cell_block_pos.x = 0; + + for cell_z in 0..=self.horizontal_cell_block_count() { + let current_z = self.shared.start_cell_pos.z + cell_z as i32; + self.shared.start_block_pos.z = current_z * self.horizontal_cell_block_count() as i32; + self.shared.cell_block_pos.z = 0; + + self.shared.cache_once_unique_index.add_assign(1); + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + + let interp_buf = if start { + let start_index = + ChunkInterpolatorFunction::yz_to_buf_index(0, cell_z, &self.shared); + &mut interpolator.start_buf + [start_index..=start_index + self.shared.vertical_cell_count as usize] + } else { + let start_index = + ChunkInterpolatorFunction::yz_to_buf_index(0, cell_z, &self.shared); + &mut interpolator.end_buf + [start_index..=start_index + self.shared.vertical_cell_count as usize] + }; + + let mut applier = ChunkNoiseInterpolationApplier::new(&mut self.shared); + + interpolator.delegate.fill_mut(interp_buf, &mut applier); + } + } + self.shared.cache_once_unique_index.add_assign(1); + } + + /// Interpolates based on the y block for all pointed density functions + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn interpolate_y(&mut self, block_y: i32, delta: f64) { + self.shared.cell_block_pos.y = (block_y - self.shared.start_block_pos.y) as u8; + + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + interpolator.interpolate_y(delta); + } + } + + /// Interpolates based on the x block for all pointed density functions + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn interpolate_x(&mut self, block_x: i32, delta: f64) { + self.shared.cell_block_pos.x = (block_x - self.shared.start_block_pos.x) as u8; + + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + interpolator.interpolate_x(delta); + } + } + + /// Interpolates based on the z block for all pointed density functions + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn interpolate_z(&mut self, block_z: i32, delta: f64) { + self.shared.cell_block_pos.z = (block_z - self.shared.start_block_pos.z) as u8; + self.shared.sample_unique_index.add_assign(1); + + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + interpolator.interpolate_z(delta); + } + } + + /// Swaps start and end buffers for all pointed density functions + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn swap_buffers(&self) { + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + interpolator.swap_buffers(); + } + } + + /// Populates interpolation caches for all pointed density functions, also fills the cell cache + /// for all pointed to cell cache functions + /// + /// # Safety + /// + /// The pointers will be valid as the associated functions are owned by us + /// + /// The caller must ensure that this will not be ran while the + /// associated interpolator function is sampling, and that this is and all interpolator function + /// samples are ran from the same thread. + pub unsafe fn on_sampled_cell_corners(&mut self, cell_y: u16, cell_z: u8) { + for interpolator in &self.interpolators { + let interpolator = interpolator.cast_mut().as_mut().unwrap(); + interpolator.on_sampled_cell_corners(cell_y, cell_z, &self.shared); + } + + self.shared.is_sampling_for_caches = true; + self.shared.start_block_pos.y = (cell_y as i32 + self.minimum_cell_y() as i32) + * self.vertical_cell_block_count() as i32; + self.shared.start_block_pos.z = (cell_z as i32 + self.shared.start_cell_pos.z) + * self.horizontal_cell_block_count() as i32; + self.shared.cache_once_unique_index.add_assign(1); + + for cell_cache in &self.cell_caches { + let cell_cache = cell_cache.cast_mut().as_mut().unwrap(); + let mut applier = ChunkNoiseApplier::new(&mut self.shared); + let cache = &mut cell_cache.cache; + cell_cache.delegate.fill_mut(cache, &mut applier); + } + + self.shared.cache_once_unique_index.add_assign(1); + self.shared.is_sampling_for_caches = false; + } + + pub fn sample_block_state(&mut self) -> Option { + self.state_sampler.sample( + &self.shared.create_noise_pos(), + &self.shared, + &mut self.density_functions, + ) + } + + pub fn horizontal_cell_block_count(&self) -> u8 { + self.generation_shape.horizontal_cell_block_count() + } + + pub fn vertical_cell_block_count(&self) -> u8 { + self.generation_shape.vertical_cell_block_count() + } + + pub fn min_y(&self) -> i8 { + self.generation_shape.min_y() + } + + pub fn minimum_cell_y(&self) -> i8 { + self.generation_shape.min_y() / self.generation_shape.vertical_cell_block_count() as i8 + } + + pub fn height(&self) -> u16 { + self.generation_shape.height() + } +} + +#[cfg(test)] +mod test { + use pumpkin_core::math::vector2::Vector2; + + use crate::world_gen::{ + aquifer_sampler::{FluidLevel, FluidLevelSampler}, + generation_shapes::GenerationShape, + noise::{config::NoiseConfig, router::OVERWORLD_NOISE_ROUTER}, + positions::chunk_pos, + proto_chunk::StandardChunkFluidLevelSampler, + }; + + use super::{ChunkNoiseGenerator, LAVA_BLOCK, WATER_BLOCK}; + + #[test] + fn test_estimate_height() { + let shape = GenerationShape::SURFACE; + let chunk_pos = Vector2::new(7, 4); + let config = NoiseConfig::new(0, &OVERWORLD_NOISE_ROUTER); + let sampler = FluidLevelSampler::Chunk(StandardChunkFluidLevelSampler::new( + FluidLevel::new(63, *WATER_BLOCK), + FluidLevel::new(-54, *LAVA_BLOCK), + )); + let mut noise = ChunkNoiseGenerator::new( + 16 / shape.horizontal_cell_block_count(), + chunk_pos::start_block_x(&chunk_pos), + chunk_pos::start_block_z(&chunk_pos), + shape, + &config, + sampler, + true, + true, + ); + + let values = [ + ((-10, -10), 48), + ((-10, -9), 48), + ((-10, -8), 48), + ((-10, -7), 48), + ((-10, -6), 48), + ((-10, -5), 48), + ((-10, -4), 48), + ((-10, -3), 48), + ((-10, -2), 48), + ((-10, -1), 48), + ((-10, 0), 56), + ((-10, 1), 56), + ((-10, 2), 56), + ((-10, 3), 56), + ((-10, 4), 56), + ((-10, 5), 56), + ((-10, 6), 56), + ((-10, 7), 56), + ((-10, 8), 56), + ((-10, 9), 56), + ((-10, 10), 56), + ((-9, -10), 48), + ((-9, -9), 48), + ((-9, -8), 48), + ((-9, -7), 48), + ((-9, -6), 48), + ((-9, -5), 48), + ((-9, -4), 48), + ((-9, -3), 48), + ((-9, -2), 48), + ((-9, -1), 48), + ((-9, 0), 56), + ((-9, 1), 56), + ((-9, 2), 56), + ((-9, 3), 56), + ((-9, 4), 56), + ((-9, 5), 56), + ((-9, 6), 56), + ((-9, 7), 56), + ((-9, 8), 56), + ((-9, 9), 56), + ((-9, 10), 56), + ((-8, -10), 40), + ((-8, -9), 40), + ((-8, -8), 48), + ((-8, -7), 48), + ((-8, -6), 48), + ((-8, -5), 48), + ((-8, -4), 48), + ((-8, -3), 48), + ((-8, -2), 48), + ((-8, -1), 48), + ((-8, 0), 56), + ((-8, 1), 56), + ((-8, 2), 56), + ((-8, 3), 56), + ((-8, 4), 56), + ((-8, 5), 56), + ((-8, 6), 56), + ((-8, 7), 56), + ((-8, 8), 56), + ((-8, 9), 56), + ((-8, 10), 56), + ((-7, -10), 40), + ((-7, -9), 40), + ((-7, -8), 48), + ((-7, -7), 48), + ((-7, -6), 48), + ((-7, -5), 48), + ((-7, -4), 48), + ((-7, -3), 48), + ((-7, -2), 48), + ((-7, -1), 48), + ((-7, 0), 56), + ((-7, 1), 56), + ((-7, 2), 56), + ((-7, 3), 56), + ((-7, 4), 56), + ((-7, 5), 56), + ((-7, 6), 56), + ((-7, 7), 56), + ((-7, 8), 56), + ((-7, 9), 56), + ((-7, 10), 56), + ((-6, -10), 40), + ((-6, -9), 40), + ((-6, -8), 48), + ((-6, -7), 48), + ((-6, -6), 48), + ((-6, -5), 48), + ((-6, -4), 48), + ((-6, -3), 48), + ((-6, -2), 48), + ((-6, -1), 48), + ((-6, 0), 56), + ((-6, 1), 56), + ((-6, 2), 56), + ((-6, 3), 56), + ((-6, 4), 56), + ((-6, 5), 56), + ((-6, 6), 56), + ((-6, 7), 56), + ((-6, 8), 56), + ((-6, 9), 56), + ((-6, 10), 56), + ((-5, -10), 40), + ((-5, -9), 40), + ((-5, -8), 48), + ((-5, -7), 48), + ((-5, -6), 48), + ((-5, -5), 48), + ((-5, -4), 48), + ((-5, -3), 48), + ((-5, -2), 48), + ((-5, -1), 48), + ((-5, 0), 56), + ((-5, 1), 56), + ((-5, 2), 56), + ((-5, 3), 56), + ((-5, 4), 56), + ((-5, 5), 56), + ((-5, 6), 56), + ((-5, 7), 56), + ((-5, 8), 56), + ((-5, 9), 56), + ((-5, 10), 56), + ((-4, -10), 40), + ((-4, -9), 40), + ((-4, -8), 40), + ((-4, -7), 40), + ((-4, -6), 40), + ((-4, -5), 40), + ((-4, -4), 48), + ((-4, -3), 48), + ((-4, -2), 48), + ((-4, -1), 48), + ((-4, 0), 48), + ((-4, 1), 48), + ((-4, 2), 48), + ((-4, 3), 48), + ((-4, 4), 48), + ((-4, 5), 48), + ((-4, 6), 48), + ((-4, 7), 48), + ((-4, 8), 48), + ((-4, 9), 48), + ((-4, 10), 48), + ((-3, -10), 40), + ((-3, -9), 40), + ((-3, -8), 40), + ((-3, -7), 40), + ((-3, -6), 40), + ((-3, -5), 40), + ((-3, -4), 48), + ((-3, -3), 48), + ((-3, -2), 48), + ((-3, -1), 48), + ((-3, 0), 48), + ((-3, 1), 48), + ((-3, 2), 48), + ((-3, 3), 48), + ((-3, 4), 48), + ((-3, 5), 48), + ((-3, 6), 48), + ((-3, 7), 48), + ((-3, 8), 48), + ((-3, 9), 48), + ((-3, 10), 48), + ((-2, -10), 40), + ((-2, -9), 40), + ((-2, -8), 40), + ((-2, -7), 40), + ((-2, -6), 40), + ((-2, -5), 40), + ((-2, -4), 48), + ((-2, -3), 48), + ((-2, -2), 48), + ((-2, -1), 48), + ((-2, 0), 48), + ((-2, 1), 48), + ((-2, 2), 48), + ((-2, 3), 48), + ((-2, 4), 48), + ((-2, 5), 48), + ((-2, 6), 48), + ((-2, 7), 48), + ((-2, 8), 48), + ((-2, 9), 48), + ((-2, 10), 48), + ((-1, -10), 40), + ((-1, -9), 40), + ((-1, -8), 40), + ((-1, -7), 40), + ((-1, -6), 40), + ((-1, -5), 40), + ((-1, -4), 48), + ((-1, -3), 48), + ((-1, -2), 48), + ((-1, -1), 48), + ((-1, 0), 48), + ((-1, 1), 48), + ((-1, 2), 48), + ((-1, 3), 48), + ((-1, 4), 48), + ((-1, 5), 48), + ((-1, 6), 48), + ((-1, 7), 48), + ((-1, 8), 48), + ((-1, 9), 48), + ((-1, 10), 48), + ((0, -10), 48), + ((0, -9), 48), + ((0, -8), 40), + ((0, -7), 40), + ((0, -6), 40), + ((0, -5), 40), + ((0, -4), 40), + ((0, -3), 40), + ((0, -2), 40), + ((0, -1), 40), + ((0, 0), 40), + ((0, 1), 40), + ((0, 2), 40), + ((0, 3), 40), + ((0, 4), 48), + ((0, 5), 48), + ((0, 6), 48), + ((0, 7), 48), + ((0, 8), 48), + ((0, 9), 48), + ((0, 10), 48), + ((1, -10), 48), + ((1, -9), 48), + ((1, -8), 40), + ((1, -7), 40), + ((1, -6), 40), + ((1, -5), 40), + ((1, -4), 40), + ((1, -3), 40), + ((1, -2), 40), + ((1, -1), 40), + ((1, 0), 40), + ((1, 1), 40), + ((1, 2), 40), + ((1, 3), 40), + ((1, 4), 48), + ((1, 5), 48), + ((1, 6), 48), + ((1, 7), 48), + ((1, 8), 48), + ((1, 9), 48), + ((1, 10), 48), + ((2, -10), 48), + ((2, -9), 48), + ((2, -8), 40), + ((2, -7), 40), + ((2, -6), 40), + ((2, -5), 40), + ((2, -4), 40), + ((2, -3), 40), + ((2, -2), 40), + ((2, -1), 40), + ((2, 0), 40), + ((2, 1), 40), + ((2, 2), 40), + ((2, 3), 40), + ((2, 4), 48), + ((2, 5), 48), + ((2, 6), 48), + ((2, 7), 48), + ((2, 8), 48), + ((2, 9), 48), + ((2, 10), 48), + ((3, -10), 48), + ((3, -9), 48), + ((3, -8), 40), + ((3, -7), 40), + ((3, -6), 40), + ((3, -5), 40), + ((3, -4), 40), + ((3, -3), 40), + ((3, -2), 40), + ((3, -1), 40), + ((3, 0), 40), + ((3, 1), 40), + ((3, 2), 40), + ((3, 3), 40), + ((3, 4), 48), + ((3, 5), 48), + ((3, 6), 48), + ((3, 7), 48), + ((3, 8), 48), + ((3, 9), 48), + ((3, 10), 48), + ((4, -10), 48), + ((4, -9), 48), + ((4, -8), 48), + ((4, -7), 48), + ((4, -6), 48), + ((4, -5), 48), + ((4, -4), 40), + ((4, -3), 40), + ((4, -2), 40), + ((4, -1), 40), + ((4, 0), 40), + ((4, 1), 40), + ((4, 2), 40), + ((4, 3), 40), + ((4, 4), 48), + ((4, 5), 48), + ((4, 6), 48), + ((4, 7), 48), + ((4, 8), 48), + ((4, 9), 48), + ((4, 10), 48), + ((5, -10), 48), + ((5, -9), 48), + ((5, -8), 48), + ((5, -7), 48), + ((5, -6), 48), + ((5, -5), 48), + ((5, -4), 40), + ((5, -3), 40), + ((5, -2), 40), + ((5, -1), 40), + ((5, 0), 40), + ((5, 1), 40), + ((5, 2), 40), + ((5, 3), 40), + ((5, 4), 48), + ((5, 5), 48), + ((5, 6), 48), + ((5, 7), 48), + ((5, 8), 48), + ((5, 9), 48), + ((5, 10), 48), + ((6, -10), 48), + ((6, -9), 48), + ((6, -8), 48), + ((6, -7), 48), + ((6, -6), 48), + ((6, -5), 48), + ((6, -4), 40), + ((6, -3), 40), + ((6, -2), 40), + ((6, -1), 40), + ((6, 0), 40), + ((6, 1), 40), + ((6, 2), 40), + ((6, 3), 40), + ((6, 4), 48), + ((6, 5), 48), + ((6, 6), 48), + ((6, 7), 48), + ((6, 8), 48), + ((6, 9), 48), + ((6, 10), 48), + ((7, -10), 48), + ((7, -9), 48), + ((7, -8), 48), + ((7, -7), 48), + ((7, -6), 48), + ((7, -5), 48), + ((7, -4), 40), + ((7, -3), 40), + ((7, -2), 40), + ((7, -1), 40), + ((7, 0), 40), + ((7, 1), 40), + ((7, 2), 40), + ((7, 3), 40), + ((7, 4), 48), + ((7, 5), 48), + ((7, 6), 48), + ((7, 7), 48), + ((7, 8), 48), + ((7, 9), 48), + ((7, 10), 48), + ((8, -10), 48), + ((8, -9), 48), + ((8, -8), 48), + ((8, -7), 48), + ((8, -6), 48), + ((8, -5), 48), + ((8, -4), 40), + ((8, -3), 40), + ((8, -2), 40), + ((8, -1), 40), + ((8, 0), 40), + ((8, 1), 40), + ((8, 2), 40), + ((8, 3), 40), + ((8, 4), 48), + ((8, 5), 48), + ((8, 6), 48), + ((8, 7), 48), + ((8, 8), 48), + ((8, 9), 48), + ((8, 10), 48), + ((9, -10), 48), + ((9, -9), 48), + ((9, -8), 48), + ((9, -7), 48), + ((9, -6), 48), + ((9, -5), 48), + ((9, -4), 40), + ((9, -3), 40), + ((9, -2), 40), + ((9, -1), 40), + ((9, 0), 40), + ((9, 1), 40), + ((9, 2), 40), + ((9, 3), 40), + ((9, 4), 48), + ((9, 5), 48), + ((9, 6), 48), + ((9, 7), 48), + ((9, 8), 48), + ((9, 9), 48), + ((9, 10), 48), + ((10, -10), 48), + ((10, -9), 48), + ((10, -8), 48), + ((10, -7), 48), + ((10, -6), 48), + ((10, -5), 48), + ((10, -4), 40), + ((10, -3), 40), + ((10, -2), 40), + ((10, -1), 40), + ((10, 0), 40), + ((10, 1), 40), + ((10, 2), 40), + ((10, 3), 40), + ((10, 4), 48), + ((10, 5), 48), + ((10, 6), 48), + ((10, 7), 48), + ((10, 8), 48), + ((10, 9), 48), + ((10, 10), 48), + ]; + + for ((x, z), result) in values { + let functions = &mut noise.density_functions; + let state = &noise.shared; + assert_eq!(functions.estimate_surface_height(state, x, z), result); + } + } +} diff --git a/pumpkin-world/src/world_gen/generation_shapes.rs b/pumpkin-world/src/world_gen/generation_shapes.rs new file mode 100644 index 000000000..fa0ab2a2d --- /dev/null +++ b/pumpkin-world/src/world_gen/generation_shapes.rs @@ -0,0 +1,92 @@ +use super::{biome_coords::to_block, height_limit::HeightLimitViewImpl}; + +pub struct GenerationShape { + min_y: i8, + height: u16, + /// Max: 4 + horizontal_size: u8, + /// Max: 4 + vertical_size: u8, +} + +impl GenerationShape { + pub const SURFACE: Self = Self { + min_y: -64, + height: 384, + horizontal_size: 1, + vertical_size: 2, + }; + pub const NETHER: Self = Self { + min_y: 0, + height: 128, + horizontal_size: 1, + vertical_size: 2, + }; + pub const END: Self = Self { + min_y: 0, + height: 128, + horizontal_size: 2, + vertical_size: 1, + }; + pub const CAVES: Self = Self { + min_y: -64, + height: 192, + horizontal_size: 1, + vertical_size: 2, + }; + pub const FLOATING_ISLANDS: Self = Self { + min_y: 0, + height: 256, + horizontal_size: 2, + vertical_size: 1, + }; + + pub fn vertical_cell_block_count(&self) -> u8 { + to_block(self.vertical_size) + } + + pub fn horizontal_cell_block_count(&self) -> u8 { + to_block(self.horizontal_size) + } + + pub fn min_y(&self) -> i8 { + self.min_y + } + + pub fn height(&self) -> u16 { + self.height + } + + pub fn max_y(&self) -> u16 { + if self.min_y >= 0 { + self.height + self.min_y as u16 + } else { + (self.height as i32 + self.min_y as i32) as u16 + } + } + + pub fn trim_height(&self, limit: &dyn HeightLimitViewImpl) -> Self { + let new_min = self.min_y.max(limit.bottom_y()); + + let this_top = if self.min_y >= 0 { + self.height + self.min_y as u16 + } else { + self.height - self.min_y.unsigned_abs() as u16 + }; + + let new_top = this_top.min(limit.top_y()); + + let new_height = if new_min >= 0 { + new_top - new_min as u16 + } else { + new_top + new_min.unsigned_abs() as u16 + }; + + Self { + min_y: new_min, + height: new_height, + horizontal_size: self.horizontal_size, + vertical_size: self.vertical_size, + } + } +} diff --git a/pumpkin-world/src/world_gen/generator.rs b/pumpkin-world/src/world_gen/generator.rs index d035842aa..8a0120c78 100644 --- a/pumpkin-world/src/world_gen/generator.rs +++ b/pumpkin-world/src/world_gen/generator.rs @@ -1,5 +1,6 @@ use noise::Perlin; use pumpkin_core::math::vector2::Vector2; +use pumpkin_core::math::vector3::Vector3; use crate::biome::Biome; use crate::block::block_state::BlockState; @@ -19,12 +20,18 @@ pub(crate) trait BiomeGenerator: Sync + Send { fn generate_biome(&self, at: XZBlockCoordinates) -> Biome; } -#[expect(dead_code)] pub(crate) trait TerrainGenerator: Sync + Send { fn prepare_chunk(&self, at: &Vector2); + fn clean_chunk(&self, at: &Vector2); + /// Is static - fn generate_block(&self, at: BlockCoordinates, biome: Biome) -> BlockState; + fn generate_block( + &self, + chunk_pos: &Vector2, + at: Vector3, + biome: Biome, + ) -> BlockState; } pub(crate) trait PerlinTerrainGenerator: Sync + Send { diff --git a/pumpkin-world/src/world_gen/height_limit.rs b/pumpkin-world/src/world_gen/height_limit.rs index beb4dd043..7b223101f 100644 --- a/pumpkin-world/src/world_gen/height_limit.rs +++ b/pumpkin-world/src/world_gen/height_limit.rs @@ -1,5 +1,7 @@ use enum_dispatch::enum_dispatch; +use super::section_coords; + #[enum_dispatch] pub enum HeightLimitView { Standard(StandardHeightLimitView), @@ -7,60 +9,69 @@ pub enum HeightLimitView { #[enum_dispatch(HeightLimitView)] pub trait HeightLimitViewImpl { - fn height(&self) -> i32; + fn height(&self) -> u16; - fn bottom_y(&self) -> i32; + fn bottom_y(&self) -> i8; - fn top_y(&self) -> i32 { - self.bottom_y() + self.height() + fn top_y(&self) -> u16 { + if self.bottom_y() >= 0 { + self.height() + self.bottom_y() as u16 + } else { + self.height() - self.bottom_y().unsigned_abs() as u16 + } } - fn vertical_section_count(&self) -> i32 { - self.top_section_coord() - self.bottom_section_coord() + fn vertical_section_count(&self) -> u16 { + let bottom_section = self.bottom_section_coord(); + if bottom_section >= 0 { + self.top_section_coord() - self.bottom_section_coord() as u16 + } else { + self.top_section_coord() + self.bottom_section_coord().unsigned_abs() as u16 + } } - fn bottom_section_coord(&self) -> i32 { - self.bottom_y() >> 4 + fn bottom_section_coord(&self) -> i8 { + section_coords::block_to_section(self.bottom_y()) } - fn top_section_coord(&self) -> i32 { - ((self.top_y() - 1) >> 4) + 1 + fn top_section_coord(&self) -> u16 { + section_coords::block_to_section(self.top_y() - 1) + 1 } - fn out_of_height(&self, height: i32) -> bool { - height < self.bottom_y() || height >= self.top_y() + fn out_of_height(&self, height: i16) -> bool { + height < self.bottom_y() as i16 || height as i32 >= self.top_y() as i32 } - fn section_index(&self, y: i32) -> i32 { - self.section_coord_to_index(y >> 4) + fn section_index(&self, y: i32) -> usize { + self.section_coord_to_index(section_coords::block_to_section(y)) } - fn section_coord_to_index(&self, coord: i32) -> i32 { - coord - self.bottom_section_coord() + fn section_coord_to_index(&self, coord: i32) -> usize { + (coord - self.bottom_section_coord() as i32) as usize } - fn section_index_to_coord(&self, index: i32) -> i32 { - index + self.bottom_section_coord() + fn section_index_to_coord(&self, index: usize) -> i32 { + index as i32 + self.bottom_section_coord() as i32 } } pub struct StandardHeightLimitView { - height: i32, - bottom_y: i32, + height: u16, + bottom_y: i8, } impl StandardHeightLimitView { - pub fn new(height: i32, bottom_y: i32) -> Self { + pub fn new(height: u16, bottom_y: i8) -> Self { Self { height, bottom_y } } } impl HeightLimitViewImpl for StandardHeightLimitView { - fn height(&self) -> i32 { + fn height(&self) -> u16 { self.height } - fn bottom_y(&self) -> i32 { + fn bottom_y(&self) -> i8 { self.bottom_y } } diff --git a/pumpkin-world/src/world_gen/implementation/mod.rs b/pumpkin-world/src/world_gen/implementation/mod.rs index 7aa11a83b..840f531b6 100644 --- a/pumpkin-world/src/world_gen/implementation/mod.rs +++ b/pumpkin-world/src/world_gen/implementation/mod.rs @@ -1,2 +1,3 @@ pub mod overworld; pub mod superflat; +pub mod test; diff --git a/pumpkin-world/src/world_gen/implementation/superflat.rs b/pumpkin-world/src/world_gen/implementation/superflat.rs index e6e6a70cb..07fdc422a 100644 --- a/pumpkin-world/src/world_gen/implementation/superflat.rs +++ b/pumpkin-world/src/world_gen/implementation/superflat.rs @@ -3,7 +3,7 @@ use pumpkin_core::math::vector2::Vector2; use crate::{ biome::Biome, block::block_state::BlockState, - coordinates::{BlockCoordinates, XZBlockCoordinates}, + coordinates::XZBlockCoordinates, world_gen::{ generator::{BiomeGenerator, GeneratorInit, TerrainGenerator}, generic_generator::GenericGenerator, @@ -39,7 +39,19 @@ impl GeneratorInit for SuperflatTerrainGenerator { impl TerrainGenerator for SuperflatTerrainGenerator { fn prepare_chunk(&self, _at: &Vector2) {} + fn clean_chunk(&self, _at: &Vector2) {} + // TODO allow specifying which blocks should be at which height in the config. + fn generate_block( + &self, + _chunk_pos: &Vector2, + _at: pumpkin_core::math::vector3::Vector3, + _biome: Biome, + ) -> BlockState { + todo!() + } + + /* fn generate_block(&self, at: BlockCoordinates, _: Biome) -> BlockState { match *at.y { -64 => BlockState::new("bedrock").unwrap(), @@ -48,4 +60,5 @@ impl TerrainGenerator for SuperflatTerrainGenerator { _ => BlockState::AIR, } } + */ } diff --git a/pumpkin-world/src/world_gen/implementation/test.rs b/pumpkin-world/src/world_gen/implementation/test.rs new file mode 100644 index 000000000..6b360c45a --- /dev/null +++ b/pumpkin-world/src/world_gen/implementation/test.rs @@ -0,0 +1,156 @@ +use std::{ + num::Wrapping, + ops::{AddAssign, SubAssign}, +}; + +use dashmap::{DashMap, Entry}; +use num_traits::Zero; +use pumpkin_core::math::{vector2::Vector2, vector3::Vector3}; + +use crate::{ + biome::Biome, + block::block_state::BlockState, + chunk::{ChunkBlocks, ChunkData}, + coordinates::{ + ChunkRelativeBlockCoordinates, ChunkRelativeXZBlockCoordinates, XZBlockCoordinates, + }, + world_gen::{ + generator::{BiomeGenerator, GeneratorInit, TerrainGenerator}, + proto_chunk::ProtoChunk, + Seed, WorldGenerator, + }, + WORLD_LOWEST_Y, WORLD_MAX_Y, +}; + +pub struct TestGenerator { + biome_generator: B, + terrain_generator: T, +} + +impl GeneratorInit + for TestGenerator +{ + fn new(seed: Seed) -> Self { + Self { + biome_generator: B::new(seed), + terrain_generator: T::new(seed), + } + } +} + +impl WorldGenerator for TestGenerator { + fn generate_chunk(&self, at: Vector2) -> ChunkData { + let mut blocks = ChunkBlocks::default(); + self.terrain_generator.prepare_chunk(&at); + + for x in 0..16u8 { + for z in 0..16u8 { + let biome = self.biome_generator.generate_biome( + ChunkRelativeXZBlockCoordinates { + x: x.into(), + z: z.into(), + } + .with_chunk_coordinates(at), + ); + + // TODO: This can be chunk specific + for y in (WORLD_LOWEST_Y..WORLD_MAX_Y).rev() { + let coordinates = ChunkRelativeBlockCoordinates { + x: x.into(), + y: y.into(), + z: z.into(), + }; + + let block = self.terrain_generator.generate_block( + &at, + Vector3::new(x.into(), y.into(), z.into()), + biome, + ); + + //println!("{:?}: {:?}", coordinates, block); + blocks.set_block(coordinates, block.state_id); + } + } + } + + self.terrain_generator.clean_chunk(&at); + ChunkData { + blocks, + position: at, + } + } +} + +pub(crate) struct TestBiomeGenerator {} + +impl GeneratorInit for TestBiomeGenerator { + fn new(_: Seed) -> Self { + Self {} + } +} + +impl BiomeGenerator for TestBiomeGenerator { + // TODO make generic over Biome and allow changing the Biome in the config. + fn generate_biome(&self, _: XZBlockCoordinates) -> Biome { + Biome::Plains + } +} + +pub(crate) struct TestTerrainGenerator { + chunks: DashMap, (ProtoChunk, Wrapping)>, + seed: Seed, +} + +impl GeneratorInit for TestTerrainGenerator { + fn new(seed: Seed) -> Self { + Self { + chunks: DashMap::new(), + seed, + } + } +} + +impl TerrainGenerator for TestTerrainGenerator { + fn prepare_chunk(&self, at: &Vector2) { + let entry = self.chunks.entry(*at); + match entry { + Entry::Vacant(entry) => { + let mut proto_chunk = ProtoChunk::new(*at, self.seed.0 as u64); + //let inst = std::time::Instant::now(); + //println!("Populating chunk: {:?}", at); + proto_chunk.populate_noise(); + //println!("Done populating chunk: {:?} ({:?})", at, inst.elapsed()); + entry.insert((proto_chunk, Wrapping(1))); + } + Entry::Occupied(mut entry) => { + let (_, count) = entry.get_mut(); + count.add_assign(1); + } + } + } + + fn clean_chunk(&self, at: &Vector2) { + let entry = self.chunks.entry(*at); + if let Entry::Occupied(mut entry) = entry { + let (_, count) = entry.get_mut(); + count.sub_assign(1); + if count.is_zero() { + entry.remove(); + } + } + } + + // TODO allow specifying which blocks should be at which height in the config. + fn generate_block( + &self, + chunk_pos: &Vector2, + local_pos: Vector3, + _: Biome, + ) -> BlockState { + if let Some(entry) = self.chunks.get(chunk_pos) { + entry.0.get_block_state(&local_pos) + } else { + panic!("Chunk needs to exist") + } + } +} diff --git a/pumpkin-world/src/world_gen/mod.rs b/pumpkin-world/src/world_gen/mod.rs index fbf0490ac..3a9019653 100644 --- a/pumpkin-world/src/world_gen/mod.rs +++ b/pumpkin-world/src/world_gen/mod.rs @@ -1,25 +1,52 @@ #![allow(dead_code)] +pub mod aquifer_sampler; mod blender; +pub mod chunk_noise; +pub mod generation_shapes; mod generator; mod generic_generator; pub mod height_limit; mod implementation; -mod noise; +pub mod noise; +pub mod ore_sampler; mod positions; -mod proto_chunk; -mod sampler; +pub mod proto_chunk; mod seed; pub use generator::WorldGenerator; -use implementation::overworld::biome::plains::PlainsGenerator; +use implementation::{ + //overworld::biome::plains::PlainsGenerator, + test::{TestBiomeGenerator, TestGenerator, TestTerrainGenerator}, +}; pub use seed::Seed; use generator::GeneratorInit; pub fn get_world_gen(seed: Seed) -> Box { // TODO decide which WorldGenerator to pick based on config. - Box::new(PlainsGenerator::new(seed)) + //Box::new(PlainsGenerator::new(seed)) + Box::new(TestGenerator::::new(seed)) +} + +pub mod section_coords { + use num_traits::PrimInt; + + #[inline] + pub fn block_to_section(coord: T) -> T + where + T: PrimInt, + { + coord >> 4 + } + + #[inline] + pub fn section_to_block(coord: T) -> T + where + T: PrimInt, + { + coord << 4 + } } pub mod biome_coords { diff --git a/pumpkin-world/src/world_gen/noise/config.rs b/pumpkin-world/src/world_gen/noise/config.rs new file mode 100644 index 000000000..4ce194ee1 --- /dev/null +++ b/pumpkin-world/src/world_gen/noise/config.rs @@ -0,0 +1,808 @@ +use std::{collections::HashMap, sync::Arc}; + +use pumpkin_core::random::{ + legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomDeriver, RandomGenerator, RandomImpl, +}; + +use super::{ + density::{ + component_functions::{ + ComponentReferenceImplementation, ConversionResultPre, ConverterEnvironment, + ConverterImpl, NoEnvironment, OwnedConverterEnvironment, + }, + end::EndIslandFunction, + noise::InternalNoise, + }, + perlin::{DoublePerlinNoiseParameters, DoublePerlinNoiseSampler}, + router::BaseRouter, +}; + +pub(crate) struct LegacyChunkNoiseVisitor { + random_deriver: RandomDeriver, + seed: u64, + + noise_map: HashMap>, +} + +impl LegacyChunkNoiseVisitor { + pub(crate) fn new(random_deriver: RandomDeriver, seed: u64) -> Self { + Self { + random_deriver, + seed, + noise_map: HashMap::new(), + } + } + + fn consume(self) -> HashMap> { + self.noise_map + } + + fn create_random(seed: u64) -> RandomGenerator { + RandomGenerator::Legacy(LegacyRand::from_seed(seed.wrapping_add(seed))) + } + + fn create_or_get_noise_sampler( + &mut self, + params: &'static DoublePerlinNoiseParameters, + ) -> Arc { + //TODO: Handle legacy noise case + + let id = params.id(); + if let Some(cached) = self.noise_map.get(id) { + cached.clone() + } else { + let mut rand = self.random_deriver.split_string(id); + let sampler = DoublePerlinNoiseSampler::new(&mut rand, params, false); + let key = id.to_string(); + let internal_noise = Arc::new(InternalNoise::new(params, Some(sampler))); + self.noise_map.insert(key, internal_noise.clone()); + internal_noise + } + } +} + +impl ConverterImpl for LegacyChunkNoiseVisitor { + fn convert_noise(&mut self, noise: &Arc) -> Option> { + Some(self.create_or_get_noise_sampler(noise.parameters)) + } + + fn convert_env_pre_internal( + &mut self, + component: ConverterEnvironment, + ) -> ConversionResultPre { + match component { + ConverterEnvironment::End => { + ConversionResultPre::New(EndIslandFunction::new(self.seed).into()) + } + ConverterEnvironment::InterpolatedNoise(func) => { + let mut random = self.random_deriver.split_string("minecraft:terrain"); + ConversionResultPre::New(func.copy_with_random(&mut random).into()) + } + _ => ConversionResultPre::Default, + } + } + + fn converts_post_internal(&mut self, _component: ConverterEnvironment) -> bool { + false + } + + fn convert_env_post_internal( + &mut self, + _component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation { + unreachable!() + } +} + +pub struct NoiseConfig { + random_deriver: RandomDeriver, + aquifer_deriver: RandomDeriver, + ore_deriver: RandomDeriver, + router: BaseRouter, + noise_map: HashMap>, +} + +impl NoiseConfig { + pub fn new(seed: u64, base_router: &BaseRouter) -> Self { + // TODO: Use other random providers? + let random_deriver = RandomDeriver::Xoroshiro(Xoroshiro::from_seed(seed).next_splitter()); + let aquifer_deriver = random_deriver + .split_string("minecraft:aquifer") + .next_splitter(); + let ore_deriver = random_deriver.split_string("minecraft:ore").next_splitter(); + + // TODO: Yuck + let (router, noise_map) = { + let deriver = random_deriver.clone(); + let mut visitor = LegacyChunkNoiseVisitor::new(deriver, seed); + let router = base_router.convert_assert_shared(&mut visitor); + (router, visitor.consume()) + }; + + Self { + random_deriver, + aquifer_deriver, + ore_deriver, + router, + noise_map, + } + } + + pub fn router(&self) -> &BaseRouter { + &self.router + } + + pub fn ore_deriver(&self) -> RandomDeriver { + self.ore_deriver.clone() + } + + pub fn aquifer_deriver(&self) -> RandomDeriver { + self.aquifer_deriver.clone() + } +} + +#[cfg(test)] +mod test { + use std::{fs, path::Path}; + + use pumpkin_core::{ + assert_eq_delta, + random::{xoroshiro128::Xoroshiro, RandomDeriver, RandomImpl}, + }; + + use crate::{ + read_data_from_file, + world_gen::noise::{ + config::NoiseConfig, + density::{ + built_in_density_function::{ + BASE_3D_NOISE_OVERWORLD, CAVES_ENTRANCES_OVERWORLD, CAVES_NOODLE_OVERWORLD, + CAVES_PILLARS_OVERWORLD, CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD, + CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD, DEPTH_OVERWORLD, + FACTOR_OVERWORLD, OFFSET_OVERWORLD, SLOPED_CHEESE_OVERWORLD, + }, + NoisePos, UnblendedNoisePos, + }, + router::OVERWORLD_NOISE_ROUTER, + }, + }; + + use super::LegacyChunkNoiseVisitor; + + #[test] + fn test_normal_surface_noisified() { + let config = NoiseConfig::new(0, &OVERWORLD_NOISE_ROUTER); + let router = config.router; + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 0, 0)); + assert_eq!(router.barrier.sample(pos), -0.5400227274000677f64); + assert_eq!( + router.fluid_level_floodedness.sample(pos), + -0.4709571987777473f64 + ); + assert_eq!( + router.fluid_level_spread.sample(pos), + -0.057269139961514365f64 + ); + assert_eq!(router.lava.sample(pos), -0.16423603877333556f64); + assert_eq!(router.temperature.sample(pos), 0.1182379898645608f64); + assert_eq!(router.vegetation.sample(pos), -0.0013601677416915584f64); + assert_eq!(router.continents.sample(pos), -0.008171952121206487f64); + assert_eq!(router.erosion.sample(pos), -0.10391073889243099f64); + assert_eq!(router.depth.sample(pos), 0.411882147192955f64); + assert_eq!(router.ridges.sample(pos), 0.011110323612534296f64); + assert_eq!(router.internal_density.sample(pos), 7.668311608489972f64); + assert_eq!(router.final_density.sample(pos), 0.15719144891255343f64); + + let values = [ + ((-100, -200, -100), 0.0f64), + ((-100, -200, -50), 0.0f64), + ((-100, -200, 0), 0.0f64), + ((-100, -200, 50), 0.0f64), + ((-100, -200, 100), 0.0f64), + ((-100, -100, -100), 0.0f64), + ((-100, -100, -50), 0.0f64), + ((-100, -100, 0), 0.0f64), + ((-100, -100, 50), 0.0f64), + ((-100, -100, 100), 0.0f64), + ((-100, 0, -100), 0.3462291472930333f64), + ((-100, 0, -50), 0.2340445906392791f64), + ((-100, 0, 0), -0.028825983399710407f64), + ((-100, 0, 50), -0.16684760357850822f64), + ((-100, 0, 100), -0.1843465939249143f64), + ((-100, 100, -100), 0.0f64), + ((-100, 100, -50), 0.0f64), + ((-100, 100, 0), 0.0f64), + ((-100, 100, 50), 0.0f64), + ((-100, 100, 100), 0.0f64), + ((-100, 200, -100), 0.0f64), + ((-100, 200, -50), 0.0f64), + ((-100, 200, 0), 0.0f64), + ((-100, 200, 50), 0.0f64), + ((-100, 200, 100), 0.0f64), + ((-50, -200, -100), 0.0f64), + ((-50, -200, -50), 0.0f64), + ((-50, -200, 0), 0.0f64), + ((-50, -200, 50), 0.0f64), + ((-50, -200, 100), 0.0f64), + ((-50, -100, -100), 0.0f64), + ((-50, -100, -50), 0.0f64), + ((-50, -100, 0), 0.0f64), + ((-50, -100, 50), 0.0f64), + ((-50, -100, 100), 0.0f64), + ((-50, 0, -100), 0.05757810206373369f64), + ((-50, 0, -50), 0.0014520730707135465f64), + ((-50, 0, 0), -0.024149735708339466f64), + ((-50, 0, 50), 0.1287619466526521f64), + ((-50, 0, 100), 0.25507593901831094f64), + ((-50, 100, -100), 0.0f64), + ((-50, 100, -50), 0.0f64), + ((-50, 100, 0), 0.0f64), + ((-50, 100, 50), 0.0f64), + ((-50, 100, 100), 0.0f64), + ((-50, 200, -100), 0.0f64), + ((-50, 200, -50), 0.0f64), + ((-50, 200, 0), 0.0f64), + ((-50, 200, 50), 0.0f64), + ((-50, 200, 100), 0.0f64), + ((0, -200, -100), 0.0f64), + ((0, -200, -50), 0.0f64), + ((0, -200, 0), 0.0f64), + ((0, -200, 50), 0.0f64), + ((0, -200, 100), 0.0f64), + ((0, -100, -100), 0.0f64), + ((0, -100, -50), 0.0f64), + ((0, -100, 0), 0.0f64), + ((0, -100, 50), 0.0f64), + ((0, -100, 100), 0.0f64), + ((0, 0, -100), -0.24030906682975775f64), + ((0, 0, -50), -0.24705110006127165f64), + ((0, 0, 0), -0.06643453056181631f64), + ((0, 0, 50), 0.25318680526509063f64), + ((0, 0, 100), 0.48257536249146743f64), + ((0, 100, -100), 0.0f64), + ((0, 100, -50), 0.0f64), + ((0, 100, 0), 0.0f64), + ((0, 100, 50), 0.0f64), + ((0, 100, 100), 0.0f64), + ((0, 200, -100), 0.0f64), + ((0, 200, -50), 0.0f64), + ((0, 200, 0), 0.0f64), + ((0, 200, 50), 0.0f64), + ((0, 200, 100), 0.0f64), + ((50, -200, -100), 0.0f64), + ((50, -200, -50), 0.0f64), + ((50, -200, 0), 0.0f64), + ((50, -200, 50), 0.0f64), + ((50, -200, 100), 0.0f64), + ((50, -100, -100), 0.0f64), + ((50, -100, -50), 0.0f64), + ((50, -100, 0), 0.0f64), + ((50, -100, 50), 0.0f64), + ((50, -100, 100), 0.0f64), + ((50, 0, -100), 0.035583298926324954f64), + ((50, 0, -50), -0.07225351839505538f64), + ((50, 0, 0), -0.03474107481998612f64), + ((50, 0, 50), 0.12616421777330467f64), + ((50, 0, 100), 0.35414843965758613f64), + ((50, 100, -100), 0.0f64), + ((50, 100, -50), 0.0f64), + ((50, 100, 0), 0.0f64), + ((50, 100, 50), 0.0f64), + ((50, 100, 100), 0.0f64), + ((50, 200, -100), 0.0f64), + ((50, 200, -50), 0.0f64), + ((50, 200, 0), 0.0f64), + ((50, 200, 50), 0.0f64), + ((50, 200, 100), 0.0f64), + ((100, -200, -100), 0.0f64), + ((100, -200, -50), 0.0f64), + ((100, -200, 0), 0.0f64), + ((100, -200, 50), 0.0f64), + ((100, -200, 100), 0.0f64), + ((100, -100, -100), 0.0f64), + ((100, -100, -50), 0.0f64), + ((100, -100, 0), 0.0f64), + ((100, -100, 50), 0.0f64), + ((100, -100, 100), 0.0f64), + ((100, 0, -100), 0.4151489417623382f64), + ((100, 0, -50), 0.2092632456905039f64), + ((100, 0, 0), -0.009920164828456044f64), + ((100, 0, 50), -0.14997295538707048f64), + ((100, 0, 100), -0.05777616780034325f64), + ((100, 100, -100), 0.0f64), + ((100, 100, -50), 0.0f64), + ((100, 100, 0), 0.0f64), + ((100, 100, 50), 0.0f64), + ((100, 100, 100), 0.0f64), + ((100, 200, -100), 0.0f64), + ((100, 200, -50), 0.0f64), + ((100, 200, 0), 0.0f64), + ((100, 200, 50), 0.0f64), + ((100, 200, 100), 0.0f64), + ]; + for ((x, y, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq!(router.vein_toggle.sample(pos), value); + } + + let values = [ + ((-100, -200, -100), -0.07999999821186066f64), + ((-100, -200, -50), -0.07999999821186066f64), + ((-100, -200, 0), -0.07999999821186066f64), + ((-100, -200, 50), -0.07999999821186066f64), + ((-100, -200, 100), -0.07999999821186066f64), + ((-100, -100, -100), -0.07999999821186066f64), + ((-100, -100, -50), -0.07999999821186066f64), + ((-100, -100, 0), -0.07999999821186066f64), + ((-100, -100, 50), -0.07999999821186066f64), + ((-100, -100, 100), -0.07999999821186066f64), + ((-100, 0, -100), 0.20661121715107683f64), + ((-100, 0, -50), 0.13701288573667827f64), + ((-100, 0, 0), 0.7331011623931737f64), + ((-100, 0, 50), 0.5887875159446838f64), + ((-100, 0, 100), 0.022846022407350147f64), + ((-100, 100, -100), -0.07999999821186066f64), + ((-100, 100, -50), -0.07999999821186066f64), + ((-100, 100, 0), -0.07999999821186066f64), + ((-100, 100, 50), -0.07999999821186066f64), + ((-100, 100, 100), -0.07999999821186066f64), + ((-100, 200, -100), -0.07999999821186066f64), + ((-100, 200, -50), -0.07999999821186066f64), + ((-100, 200, 0), -0.07999999821186066f64), + ((-100, 200, 50), -0.07999999821186066f64), + ((-100, 200, 100), -0.07999999821186066f64), + ((-50, -200, -100), -0.07999999821186066f64), + ((-50, -200, -50), -0.07999999821186066f64), + ((-50, -200, 0), -0.07999999821186066f64), + ((-50, -200, 50), -0.07999999821186066f64), + ((-50, -200, 100), -0.07999999821186066f64), + ((-50, -100, -100), -0.07999999821186066f64), + ((-50, -100, -50), -0.07999999821186066f64), + ((-50, -100, 0), -0.07999999821186066f64), + ((-50, -100, 50), -0.07999999821186066f64), + ((-50, -100, 100), -0.07999999821186066f64), + ((-50, 0, -100), 0.35588447391786027f64), + ((-50, 0, -50), 0.1829719810187267f64), + ((-50, 0, 0), 0.08704696157012648f64), + ((-50, 0, 50), 0.1044941912836557f64), + ((-50, 0, 100), 0.5929743688753312f64), + ((-50, 100, -100), -0.07999999821186066f64), + ((-50, 100, -50), -0.07999999821186066f64), + ((-50, 100, 0), -0.07999999821186066f64), + ((-50, 100, 50), -0.07999999821186066f64), + ((-50, 100, 100), -0.07999999821186066f64), + ((-50, 200, -100), -0.07999999821186066f64), + ((-50, 200, -50), -0.07999999821186066f64), + ((-50, 200, 0), -0.07999999821186066f64), + ((-50, 200, 50), -0.07999999821186066f64), + ((-50, 200, 100), -0.07999999821186066f64), + ((0, -200, -100), -0.07999999821186066f64), + ((0, -200, -50), -0.07999999821186066f64), + ((0, -200, 0), -0.07999999821186066f64), + ((0, -200, 50), -0.07999999821186066f64), + ((0, -200, 100), -0.07999999821186066f64), + ((0, -100, -100), -0.07999999821186066f64), + ((0, -100, -50), -0.07999999821186066f64), + ((0, -100, 0), -0.07999999821186066f64), + ((0, -100, 50), -0.07999999821186066f64), + ((0, -100, 100), -0.07999999821186066f64), + ((0, 0, -100), 0.3531476519454157f64), + ((0, 0, -50), 0.15649178293218172f64), + ((0, 0, 0), 0.5716365265208109f64), + ((0, 0, 50), 0.28359279788952346f64), + ((0, 0, 100), 0.37225938767638495f64), + ((0, 100, -100), -0.07999999821186066f64), + ((0, 100, -50), -0.07999999821186066f64), + ((0, 100, 0), -0.07999999821186066f64), + ((0, 100, 50), -0.07999999821186066f64), + ((0, 100, 100), -0.07999999821186066f64), + ((0, 200, -100), -0.07999999821186066f64), + ((0, 200, -50), -0.07999999821186066f64), + ((0, 200, 0), -0.07999999821186066f64), + ((0, 200, 50), -0.07999999821186066f64), + ((0, 200, 100), -0.07999999821186066f64), + ((50, -200, -100), -0.07999999821186066f64), + ((50, -200, -50), -0.07999999821186066f64), + ((50, -200, 0), -0.07999999821186066f64), + ((50, -200, 50), -0.07999999821186066f64), + ((50, -200, 100), -0.07999999821186066f64), + ((50, -100, -100), -0.07999999821186066f64), + ((50, -100, -50), -0.07999999821186066f64), + ((50, -100, 0), -0.07999999821186066f64), + ((50, -100, 50), -0.07999999821186066f64), + ((50, -100, 100), -0.07999999821186066f64), + ((50, 0, -100), 0.1733462217252416f64), + ((50, 0, -50), 0.33464400306517067f64), + ((50, 0, 0), 0.2621039147343691f64), + ((50, 0, 50), 0.15279071012957127f64), + ((50, 0, 100), 0.4107100561510984f64), + ((50, 100, -100), -0.07999999821186066f64), + ((50, 100, -50), -0.07999999821186066f64), + ((50, 100, 0), -0.07999999821186066f64), + ((50, 100, 50), -0.07999999821186066f64), + ((50, 100, 100), -0.07999999821186066f64), + ((50, 200, -100), -0.07999999821186066f64), + ((50, 200, -50), -0.07999999821186066f64), + ((50, 200, 0), -0.07999999821186066f64), + ((50, 200, 50), -0.07999999821186066f64), + ((50, 200, 100), -0.07999999821186066f64), + ((100, -200, -100), -0.07999999821186066f64), + ((100, -200, -50), -0.07999999821186066f64), + ((100, -200, 0), -0.07999999821186066f64), + ((100, -200, 50), -0.07999999821186066f64), + ((100, -200, 100), -0.07999999821186066f64), + ((100, -100, -100), -0.07999999821186066f64), + ((100, -100, -50), -0.07999999821186066f64), + ((100, -100, 0), -0.07999999821186066f64), + ((100, -100, 50), -0.07999999821186066f64), + ((100, -100, 100), -0.07999999821186066f64), + ((100, 0, -100), 0.5633547588776332f64), + ((100, 0, -50), 0.09284281739909031f64), + ((100, 0, 0), 0.36438508670444847f64), + ((100, 0, 50), 0.20350630763687888f64), + ((100, 0, 100), 0.342069979071766f64), + ((100, 100, -100), -0.07999999821186066f64), + ((100, 100, -50), -0.07999999821186066f64), + ((100, 100, 0), -0.07999999821186066f64), + ((100, 100, 50), -0.07999999821186066f64), + ((100, 100, 100), -0.07999999821186066f64), + ((100, 200, -100), -0.07999999821186066f64), + ((100, 200, -50), -0.07999999821186066f64), + ((100, 200, 0), -0.07999999821186066f64), + ((100, 200, 50), -0.07999999821186066f64), + ((100, 200, 100), -0.07999999821186066f64), + ]; + for ((x, y, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq!(router.vein_ridged.sample(pos), value); + } + + let values = [ + ((-100, -200, -100), 0.3211141881942152f64), + ((-100, -200, -50), 0.09648864932704422f64), + ((-100, -200, 0), -0.4361477376844327f64), + ((-100, -200, 50), -0.13040066209600742f64), + ((-100, -200, 100), 0.023388060633724863f64), + ((-100, -100, -100), -0.4936024322458776f64), + ((-100, -100, -50), 0.2524223066605673f64), + ((-100, -100, 0), 0.2798189678966397f64), + ((-100, -100, 50), -0.3791120273954761f64), + ((-100, -100, 100), 0.39137760850669906f64), + ((-100, 0, -100), 0.05179888245498191f64), + ((-100, 0, -50), -0.06839110450348797f64), + ((-100, 0, 0), 0.4146206374440951f64), + ((-100, 0, 50), -0.1880820750707125f64), + ((-100, 0, 100), 0.2018368254585623f64), + ((-100, 100, -100), -0.32001039415713683f64), + ((-100, 100, -50), -0.13817558469021005f64), + ((-100, 100, 0), -0.48101070627664044f64), + ((-100, 100, 50), -0.2402297366726863f64), + ((-100, 100, 100), 0.08239761934306493f64), + ((-100, 200, -100), 0.018224734015781025f64), + ((-100, 200, -50), 0.08691443377020788f64), + ((-100, 200, 0), 0.16208094523788294f64), + ((-100, 200, 50), -0.15691048604152458f64), + ((-100, 200, 100), 0.06628267159017102f64), + ((-50, -200, -100), 0.2944496267342102f64), + ((-50, -200, -50), -0.2782278816662622f64), + ((-50, -200, 0), 0.15536071363878953f64), + ((-50, -200, 50), 0.43610007125172995f64), + ((-50, -200, 100), 0.010906558300465366f64), + ((-50, -100, -100), -0.08205269591250534f64), + ((-50, -100, -50), -0.28370450958612364f64), + ((-50, -100, 0), 0.0885151647444476f64), + ((-50, -100, 50), 0.21999190041491667f64), + ((-50, -100, 100), -0.41613490183445756f64), + ((-50, 0, -100), 0.21384346251180444f64), + ((-50, 0, -50), -0.2824765568109107f64), + ((-50, 0, 0), -0.4954177161809242f64), + ((-50, 0, 50), -0.10463968465592202f64), + ((-50, 0, 100), 0.04434135773500206f64), + ((-50, 100, -100), 0.37770507600173986f64), + ((-50, 100, -50), 0.1371189219046899f64), + ((-50, 100, 0), -0.22638449889692794f64), + ((-50, 100, 50), -0.10557246185638242f64), + ((-50, 100, 100), -0.18984119304391683f64), + ((-50, 200, -100), 0.20939108846156035f64), + ((-50, 200, -50), -0.08776116132181612f64), + ((-50, 200, 0), 0.20843954771862513f64), + ((-50, 200, 50), -0.5814807800404631f64), + ((-50, 200, 100), -0.3797565621876845f64), + ((0, -200, -100), 0.27179855614165527f64), + ((0, -200, -50), 0.16521252240290915f64), + ((0, -200, 0), 0.18324386151568745f64), + ((0, -200, 50), -0.28715960497818555f64), + ((0, -200, 100), -0.18100038230278442f64), + ((0, -100, -100), -0.09765150029624575f64), + ((0, -100, -50), -0.17785462076301697f64), + ((0, -100, 0), 0.10598123320261281f64), + ((0, -100, 50), 0.40507433937683573f64), + ((0, -100, 100), -0.5101670875276502f64), + ((0, 0, -100), -0.12690301253734718f64), + ((0, 0, -50), -0.2843473512745877f64), + ((0, 0, 0), 0.4566468364551488f64), + ((0, 0, 50), -0.1868822216899071f64), + ((0, 0, 100), -0.06167756316828358f64), + ((0, 100, -100), 0.03280421216425878f64), + ((0, 100, -50), 0.1828693088708832f64), + ((0, 100, 0), -0.10761184293214024f64), + ((0, 100, 50), -0.2056948693640283f64), + ((0, 100, 100), -0.6641494135898256f64), + ((0, 200, -100), -0.2916257499829836f64), + ((0, 200, -50), 0.3089200762221871f64), + ((0, 200, 0), -0.10862123905585815f64), + ((0, 200, 50), -0.5314274903477223f64), + ((0, 200, 100), -0.18423922562669878f64), + ((50, -200, -100), -0.19441584981913765f64), + ((50, -200, -50), -0.23224532903196352f64), + ((50, -200, 0), -0.06741680955178693f64), + ((50, -200, 50), -0.11174106180027958f64), + ((50, -200, 100), -0.19402793406584085f64), + ((50, -100, -100), -0.3729509731834053f64), + ((50, -100, -50), -0.5992505452241598f64), + ((50, -100, 0), -0.3641193668713385f64), + ((50, -100, 50), -0.0780880308385808f64), + ((50, -100, 100), 0.20539004653798706f64), + ((50, 0, -100), 0.5068819044426225f64), + ((50, 0, -50), 0.2012696212123102f64), + ((50, 0, 0), 0.578511778875036f64), + ((50, 0, 50), 0.9255794468686466f64), + ((50, 0, 100), -0.30412588794463624f64), + ((50, 100, -100), 0.4128697472440939f64), + ((50, 100, -50), -0.2169521808135427f64), + ((50, 100, 0), 0.22551879656869442f64), + ((50, 100, 50), -0.15185632978888303f64), + ((50, 100, 100), -0.33800073097192557f64), + ((50, 200, -100), -0.1262053025774186f64), + ((50, 200, -50), -0.18678102576752423f64), + ((50, 200, 0), -0.04298915312937759f64), + ((50, 200, 50), -0.35937135281916827f64), + ((50, 200, 100), -0.09675303361528802f64), + ((100, -200, -100), 0.016944564179341898f64), + ((100, -200, -50), -0.21449082979744338f64), + ((100, -200, 0), -0.4864973070953402f64), + ((100, -200, 50), -0.12082732785556784f64), + ((100, -200, 100), 0.15105512670391716f64), + ((100, -100, -100), -0.42014790810555663f64), + ((100, -100, -50), 0.25043337086794476f64), + ((100, -100, 0), 0.4836407742236192f64), + ((100, -100, 50), -0.09839641176754102f64), + ((100, -100, 100), -0.7118185993515945f64), + ((100, 0, -100), -0.452981644351176f64), + ((100, 0, -50), 0.3195442816621561f64), + ((100, 0, 0), -0.316964588789998f64), + ((100, 0, 50), -0.09085595379884051f64), + ((100, 0, 100), -0.18535799255754892f64), + ((100, 100, -100), 0.21432773343101275f64), + ((100, 100, -50), -0.31712332334064697f64), + ((100, 100, 0), -0.2560240287841878f64), + ((100, 100, 50), -0.09580536400123087f64), + ((100, 100, 100), -0.0992129190886302f64), + ((100, 200, -100), 0.41460868389055017f64), + ((100, 200, -50), 0.4415181826498342f64), + ((100, 200, 0), 0.1205037616719153f64), + ((100, 200, 50), -0.7214410961887224f64), + ((100, 200, 100), 0.3867496985743827f64), + ]; + for ((x, y, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq!(router.vein_gap.sample(pos), value); + } + } + + #[test] + fn test_final_density_samples() { + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/final_density_dump_7_4.json"); + + let config = NoiseConfig::new(0, &OVERWORLD_NOISE_ROUTER); + let function = config.router().final_density.clone(); + + for (x, y, z, sample) in expected_data { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_sloped_cheese() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_sloped_cheese_7_4.json"); + + let function = SLOPED_CHEESE_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_factor() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_factor_7_4.json"); + + let function = FACTOR_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_depth() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_depth_7_4.json"); + + let function = DEPTH_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_offset() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_offset_7_4.json"); + + let function = OFFSET_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_3d_overworld() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_3d_overworld_7_4.json"); + + let function = BASE_3D_NOISE_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_cave_entrances_overworld() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_cave_entrances_overworld_7_4.json"); + + let function = CAVES_ENTRANCES_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_cave_spaghetti_rough_overworld() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = read_data_from_file!( + "../../../assets/converted_cave_spaghetti_rough_overworld_7_4.json" + ); + + let function = CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_cave_noodle() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_cave_noodle_7_4.json"); + + let function = CAVES_NOODLE_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_cave_pillar() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_cave_pillar_7_4.json"); + + let function = CAVES_PILLARS_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } + + #[test] + fn test_converted_cave_spaghetti_2d_thickness() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_cave_spaghetti_2d_thicc_7_4.json"); + + let function = CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } +} diff --git a/pumpkin-world/src/world_gen/noise/density/basic.rs b/pumpkin-world/src/world_gen/noise/density/basic.rs new file mode 100644 index 000000000..cb118a4a0 --- /dev/null +++ b/pumpkin-world/src/world_gen/noise/density/basic.rs @@ -0,0 +1,441 @@ +use std::{hash::Hash, marker::PhantomData}; + +use crate::{match_ref_implementations, world_gen::noise::clamped_map}; + +use super::{ + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + NoEnvironment, OwnedConverterEnvironment, SharedComponentReference, + SharedConverterEnvironment, + }, + NoisePos, NoisePosImpl, +}; + +/// A density function that always returns the same value +pub struct ConstantFunction { + value: f64, +} + +impl ConstantFunction { + pub fn new(value: f64) -> Self { + Self { value } + } +} + +impl ComponentFunctionImpl for ConstantFunction {} + +impl ImmutableComponentFunctionImpl for ConstantFunction { + #[inline] + fn sample(&self, _pos: &NoisePos) -> f64 { + self.value + } + + #[inline] + fn fill(&self, arr: &mut [f64], _applier: &mut dyn ApplierImpl) { + arr.fill(self.value); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Constant(self.value) + } +} + +/// A density function that wraps another density function. +/// Primarily used to mark functions that should be modified by a converter +#[derive(Copy, Clone, PartialEq, Eq, Hash)] +pub(crate) enum WrapperType { + Cache2D, + FlatCache, + OnceCache, + Interpolated, + CellCache, +} + +pub struct WrapperFunction> { + pub(crate) wrapped: R, + pub(crate) wrapper_type: WrapperType, + _dummy: PhantomData, +} + +impl> From> + for MutableComponentReference +{ + fn from(value: WrapperFunction) -> Self { + Self(Box::new(value)) + } +} + +impl> WrapperFunction { + pub fn new(wrapped: R, wrapper_type: WrapperType) -> Self { + Self { + wrapped, + wrapper_type, + _dummy: PhantomData:: {}, + } + } + + pub fn create_new_ref( + wrapped: ComponentReferenceImplementation, + wrapper_type: WrapperType, + ) -> ComponentReferenceImplementation { + match wrapped { + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + WrapperFunction::::new( + shared, + wrapper_type, + ) + .into(), + ) + } + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable( + WrapperFunction::new(owned, wrapper_type).into(), + ) + } + } + } +} + +impl> ComponentFunctionImpl + for WrapperFunction +{ +} + +impl ImmutableComponentFunctionImpl + for WrapperFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + self.wrapped.sample(pos) + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.wrapped.fill(arr, applier); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Wrapper(&self.wrapped, self.wrapper_type) + } +} + +impl> MutableComponentFunctionImpl + for WrapperFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + self.wrapped.sample_mut(pos, env) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.wrapped.fill_mut(arr, applier); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Wrapper(&self.wrapped, self.wrapper_type) + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Wrapper(self.wrapped.wrapped_ref(), self.wrapper_type) + } + + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.wrapped.convert(converter), self.wrapper_type) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.wrapped.clone_to_new_ref(), self.wrapper_type) + } +} + +pub struct YClampedFunction { + from: i32, + to: i32, + from_val: f64, + to_val: f64, +} + +impl YClampedFunction { + pub fn new(from: i32, to: i32, from_val: f64, to_val: f64) -> Self { + Self { + from, + to, + from_val, + to_val, + } + } +} + +impl ComponentFunctionImpl for YClampedFunction {} + +impl ImmutableComponentFunctionImpl for YClampedFunction { + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + clamped_map( + pos.y() as f64, + self.from as f64, + self.to as f64, + self.from_val, + self.to_val, + ) + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::YClamped(self) + } +} + +// TODO: Implement structures (this is a place holder for that) +pub struct BeardifierFunction {} + +impl BeardifierFunction { + pub const INSTANCE: Self = Self {}; +} + +impl ComponentFunctionImpl for BeardifierFunction {} + +impl ImmutableComponentFunctionImpl for BeardifierFunction { + fn sample(&self, _pos: &NoisePos) -> f64 { + 0f64 + } + + fn fill(&self, arr: &mut [f64], _applier: &mut dyn ApplierImpl) { + arr.fill(0f64); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Beardifier + } +} + +#[derive(Clone)] +pub(crate) struct RangeUntypedData { + pub(crate) min: f64, + pub(crate) max: f64, +} + +pub struct RangeFunction< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, +> { + pub(crate) input: R1, + pub(crate) in_range: R2, + pub(crate) out_range: R3, + pub(crate) data: RangeUntypedData, + _dummy: PhantomData, +} + +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > RangeFunction +{ + pub fn new(input: R1, min: f64, max: f64, in_range: R2, out_range: R3) -> Self { + Self { + input, + in_range, + out_range, + data: RangeUntypedData { min, max }, + _dummy: PhantomData:: {}, + } + } + + pub fn create_new_ref( + input: ComponentReferenceImplementation, + in_sampler: ComponentReferenceImplementation, + out_sampler: ComponentReferenceImplementation, + data: &RangeUntypedData, + ) -> ComponentReferenceImplementation { + match (input, in_sampler, out_sampler) { + ( + ComponentReferenceImplementation::Shared(shared_input), + ComponentReferenceImplementation::Shared(shared_in), + ComponentReferenceImplementation::Shared(shared_out), + ) => RangeFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new(shared_input, data.min, data.max, shared_in, shared_out) + .into(), + (input, in_sampler, out_sampler) => { + match_ref_implementations!( + (input_ref, input), + (in_ref, in_sampler), + (out_ref, out_sampler); + { + ComponentReferenceImplementation::Mutable( + MutableComponentReference(Box::new( + RangeFunction::new( + input_ref, + data.min, + data.max, + in_ref, + out_ref + ) + )) + ) + } + ) + } + } + } +} + +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > From> for MutableComponentReference +{ + fn from(value: RangeFunction) -> Self { + Self(Box::new(value)) + } +} + +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > ComponentFunctionImpl for RangeFunction +{ +} + +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > MutableComponentFunctionImpl for RangeFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let sampled_density = self.input.sample_mut(pos, env); + if sampled_density >= self.data.min && sampled_density < self.data.max { + self.in_range.sample_mut(pos, env) + } else { + self.out_range.sample_mut(pos, env) + } + } + + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.input.fill_mut(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, val)| { + if *val >= self.data.min && *val < self.data.max { + *val = self.in_range.sample_mut(&applier.at(i), applier.env()); + } else { + *val = self.out_range.sample_mut(&applier.at(i), applier.env()); + } + }); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Range(&self.input, &self.in_range, &self.out_range, &self.data) + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Range( + self.input.wrapped_ref(), + self.in_range.wrapped_ref(), + self.out_range.wrapped_ref(), + self.data, + ) + } + + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.input.convert(converter), + self.in_range.convert(converter), + self.out_range.convert(converter), + &self.data, + ) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.input.clone_to_new_ref(), + self.in_range.clone_to_new_ref(), + self.out_range.clone_to_new_ref(), + &self.data, + ) + } +} + +impl ImmutableComponentFunctionImpl + for RangeFunction< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + > +{ + fn sample(&self, pos: &NoisePos) -> f64 { + let sampled_density = self.input.sample(pos); + if sampled_density >= self.data.min && sampled_density < self.data.max { + self.in_range.sample(pos) + } else { + self.out_range.sample(pos) + } + } + + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.input.fill(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, val)| { + if *val >= self.data.min && *val < self.data.max { + *val = self.in_range.sample(&applier.at(i)); + } else { + *val = self.out_range.sample(&applier.at(i)); + } + }); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Range(&self.input, &self.in_range, &self.out_range, &self.data) + } +} + +#[cfg(test)] +mod test { + use std::{fs, path::Path}; + + use crate::{ + read_data_from_file, + world_gen::noise::density::{ + component_functions::ImmutableComponentFunctionImpl, NoisePos, UnblendedNoisePos, + }, + }; + + use super::YClampedFunction; + + #[test] + fn test_y_clamped() { + let expected_data: Vec = read_data_from_file!("../../../../assets/y_clamp.json"); + let mut expected_iter = expected_data.iter(); + + let function = YClampedFunction::new(-64, 320, 1.5, -1.5); + for y in -64..=320 { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(0, y, 0)); + assert_eq!(function.sample(&pos), *expected_iter.next().unwrap()); + } + } +} diff --git a/pumpkin-world/src/world_gen/noise/density/blend.rs b/pumpkin-world/src/world_gen/noise/density/blend.rs index 493cb035a..309fa345e 100644 --- a/pumpkin-world/src/world_gen/noise/density/blend.rs +++ b/pumpkin-world/src/world_gen/noise/density/blend.rs @@ -1,101 +1,168 @@ -use std::sync::Arc; +use std::marker::PhantomData; + +use crate::world_gen::blender::BlenderImpl; use super::{ - Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, NoisePosImpl, Visitor, - VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + NoEnvironment, OwnedConverterEnvironment, SharedComponentReference, + SharedConverterEnvironment, + }, + NoisePos, NoisePosImpl, }; -#[derive(Clone)] pub struct BlendOffsetFunction {} -impl<'a> DensityFunctionImpl<'a> for BlendOffsetFunction { - fn sample(&self, _pos: &NoisePos) -> f64 { - 0f64 - } +impl BlendOffsetFunction { + pub const INSTANCE: Self = Self {}; +} - fn fill(&self, densities: &mut [f64], _applier: &Applier) { - densities.fill(0f64) - } +impl ComponentFunctionImpl for BlendOffsetFunction {} - fn min(&self) -> f64 { +impl ImmutableComponentFunctionImpl for BlendOffsetFunction { + #[inline] + fn sample(&self, _pos: &NoisePos) -> f64 { 0f64 } - fn max(&self) -> f64 { - 0f64 + #[inline] + fn fill(&self, arr: &mut [f64], _applier: &mut dyn ApplierImpl) { + arr.fill(0f64); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::BlendOffset(self.clone()))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::BlendOffset } } -#[derive(Clone)] pub struct BlendAlphaFunction {} -impl<'a> DensityFunctionImpl<'a> for BlendAlphaFunction { - fn sample(&self, _pos: &NoisePos) -> f64 { - 1f64 - } +impl BlendAlphaFunction { + pub const INSTANCE: Self = Self {}; +} - fn fill(&self, densities: &mut [f64], _applier: &Applier) { - densities.fill(1f64); - } +impl ComponentFunctionImpl for BlendAlphaFunction {} - fn max(&self) -> f64 { +impl ImmutableComponentFunctionImpl for BlendAlphaFunction { + #[inline] + fn sample(&self, _pos: &NoisePos) -> f64 { 1f64 } - fn min(&self) -> f64 { - 1f64 + #[inline] + fn fill(&self, arr: &mut [f64], _applier: &mut dyn ApplierImpl) { + arr.fill(1f64); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::BlendAlpha(self.clone()))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::BlendAlpha } } -#[derive(Clone)] -pub struct BlendDensityFunction<'a> { - function: Arc>, +pub struct BlendDensityFunction> { + pub(crate) function: R, + _dummy: PhantomData, } -impl<'a> BlendDensityFunction<'a> { - pub fn new(density: Arc>) -> Self { - Self { function: density } +impl> From> + for MutableComponentReference +{ + fn from(value: BlendDensityFunction) -> Self { + Self(Box::new(value)) } } -impl BlendDensityFunction<'_> { +impl> BlendDensityFunction { + pub fn new(function: R) -> Self { + Self { + function, + _dummy: PhantomData:: {}, + } + } + + #[inline] fn apply_density(&self, pos: &NoisePos, density: f64) -> f64 { pos.get_blender().apply_blend_density(pos, density) } + + pub fn create_new_ref( + function: ComponentReferenceImplementation, + ) -> ComponentReferenceImplementation { + match function { + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + BlendDensityFunction::::new(shared) + .into(), + ) + } + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable(BlendDensityFunction::new(owned).into()) + } + } + } +} +impl> ComponentFunctionImpl + for BlendDensityFunction +{ } -impl<'a> DensityFunctionImpl<'a> for BlendDensityFunction<'a> { +impl ImmutableComponentFunctionImpl + for BlendDensityFunction +{ + #[inline] fn sample(&self, pos: &NoisePos) -> f64 { - self.apply_density(pos, self.function.sample(pos)) + let density = self.function.sample(pos); + self.apply_density(pos, density) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.function.fill(densities, applier); - densities.iter_mut().enumerate().for_each(|(i, x)| { + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.function.fill(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, x)| { *x = self.apply_density(&applier.at(i), *x); }); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - let new_function = BlendDensityFunction { - function: self.function.apply(visitor), - }; - visitor.apply(Arc::new(DensityFunction::BlendDensity(new_function))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::BlendDensity(&self.function) + } +} + +impl> MutableComponentFunctionImpl + for BlendDensityFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density = self.function.sample_mut(pos, env); + self.apply_density(pos, density) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.function.fill_mut(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, x)| { + *x = self.apply_density(&applier.at(i), *x); + }); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::BlendDensity(&self.function) + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::BlendDensity(self.function.wrapped_ref()) } - fn min(&self) -> f64 { - f64::NEG_INFINITY + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.function.convert(converter)) } - fn max(&self) -> f64 { - f64::INFINITY + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.function.clone_to_new_ref()) } } diff --git a/pumpkin-world/src/world_gen/noise/density/component_functions.rs b/pumpkin-world/src/world_gen/noise/density/component_functions.rs new file mode 100644 index 000000000..6c47665ec --- /dev/null +++ b/pumpkin-world/src/world_gen/noise/density/component_functions.rs @@ -0,0 +1,1082 @@ +use std::{ + hash::{Hash, Hasher}, + sync::Arc, +}; + +use super::{ + basic::{RangeFunction, RangeUntypedData, WrapperFunction, WrapperType, YClampedFunction}, + blend::BlendDensityFunction, + math::{BinaryFunction, BinaryType, LinearFunction, LinearType, LinearUntypedData}, + noise::{ + InternalNoise, InterpolatedNoiseFunction, NoiseFunction, ShiftedNoiseFunction, + ShiftedNoiseUntypedData, + }, + offset::{ShiftAFunction, ShiftBFunction}, + spline::{ImmutableSplineRef, SplineFunction, SplineRef, SplineRefImpl}, + unary::{ClampFunction, ClampUntypedData, UnaryFunction, UnaryType}, + weird::{RarityMapper, WierdScaledFunction}, + NoisePos, +}; + +/// An environment for a mutable density function to reference. Supplied by the `EnvironmentApplierImpl` +pub trait DensityFunctionEnvironment: Send + Sync + 'static {} + +/// A placeholder struct to mark a density function as having no environment. +pub struct NoEnvironment {} +impl DensityFunctionEnvironment for NoEnvironment {} + +pub(crate) enum MutableComponentWrapper { + Wrapper(ComponentReferenceImplementation, WrapperType), + BlendDensity(ComponentReferenceImplementation), + Linear(ComponentReferenceImplementation), + Binary( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ), + ShiftedNoise( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ), + Spline(SplineRef), + Clamp(ComponentReferenceImplementation), + Unary(ComponentReferenceImplementation), + Range( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ), + Wierd(ComponentReferenceImplementation), +} + +#[macro_export] +macro_rules! match_ref_implementations { + (($name:ident, $value:expr); $builder:expr) => { + match $value { + ComponentReferenceImplementation::Shared($name) => {$builder}, + ComponentReferenceImplementation::Mutable($name) => {$builder}, + } + }; + (($name:ident, $value:expr), $(($name2:ident, $value2:expr)),+; $builder:expr) => { + match $value { + ComponentReferenceImplementation::Shared($name) => { + match_ref_implementations!($(($name2, $value2)),+;$builder) + } + ComponentReferenceImplementation::Mutable($name) => { + match_ref_implementations!($(($name2, $value2)),+;$builder) + } + } + }; +} + +pub(crate) enum SharedConverterEnvironment<'a> { + Constant(f64), + Wrapper(&'a SharedComponentReference, WrapperType), + YClamped(&'a YClampedFunction), + Beardifier, + Range( + &'a SharedComponentReference, + &'a SharedComponentReference, + &'a SharedComponentReference, + &'a RangeUntypedData, + ), + BlendOffset, + BlendAlpha, + BlendDensity(&'a SharedComponentReference), + End, + Linear(&'a SharedComponentReference, &'a LinearUntypedData), + Binary( + &'a SharedComponentReference, + &'a SharedComponentReference, + BinaryType, + ), + Noise(&'a NoiseFunction), + ShiftedNoise( + &'a SharedComponentReference, + &'a SharedComponentReference, + &'a SharedComponentReference, + &'a Arc, + &'a ShiftedNoiseUntypedData, + ), + InterpolatedNoise(&'a InterpolatedNoiseFunction), + ShiftA(&'a Arc), + ShiftB(&'a Arc), + Spline(&'a ImmutableSplineRef), + Clamp(&'a SharedComponentReference, &'a ClampUntypedData), + Unary(&'a SharedComponentReference, UnaryType), + Wierd( + &'a SharedComponentReference, + &'a Arc, + RarityMapper, + ), +} + +impl<'a> SharedConverterEnvironment<'a> { + fn as_env(&self) -> ConverterEnvironment<'a, E> { + match self { + Self::Constant(val) => ConverterEnvironment::Constant(*val), + Self::Wrapper(reference, action) => ConverterEnvironment::Wrapper(*reference, *action), + Self::YClamped(func) => ConverterEnvironment::YClamped(func), + Self::Beardifier => ConverterEnvironment::Beardifier, + Self::Range(f1, f2, f3, data) => ConverterEnvironment::Range(*f1, *f2, *f3, data), + Self::BlendOffset => ConverterEnvironment::BlendOffset, + Self::BlendAlpha => ConverterEnvironment::BlendAlpha, + Self::BlendDensity(f) => ConverterEnvironment::BlendDensity(*f), + Self::End => ConverterEnvironment::End, + Self::Linear(f, data) => ConverterEnvironment::Linear(*f, data), + Self::Binary(f1, f2, data) => ConverterEnvironment::Binary(*f1, *f2, *data), + Self::Noise(n) => ConverterEnvironment::Noise(n), + Self::ShiftedNoise(x, y, z, noise, data) => { + ConverterEnvironment::ShiftedNoise(*x, *y, *z, noise, data) + } + Self::InterpolatedNoise(func) => ConverterEnvironment::InterpolatedNoise(func), + Self::ShiftA(noise) => ConverterEnvironment::ShiftA(noise), + Self::ShiftB(noise) => ConverterEnvironment::ShiftB(noise), + Self::Spline(spline) => ConverterEnvironment::Spline(*spline), + Self::Clamp(f, data) => ConverterEnvironment::Clamp(*f, data), + Self::Unary(f, action) => ConverterEnvironment::Unary(*f, *action), + Self::Wierd(f, noise, rarity) => ConverterEnvironment::Wierd(*f, noise, *rarity), + } + } + + fn maybe_into_env(self) -> Option> { + Some(match self { + Self::Wrapper(reference, action) => { + OwnedConverterEnvironment::Wrapper(reference.clone_to_new_ref(), action) + } + Self::Range(f1, f2, f3, data) => OwnedConverterEnvironment::Range( + f1.clone_to_new_ref(), + f2.clone_to_new_ref(), + f3.clone_to_new_ref(), + data.clone(), + ), + Self::BlendDensity(f) => OwnedConverterEnvironment::BlendDensity(f.clone_to_new_ref()), + Self::Linear(f, data) => { + OwnedConverterEnvironment::Linear(f.clone_to_new_ref(), data.clone()) + } + Self::Binary(f1, f2, data) => OwnedConverterEnvironment::Binary( + f1.clone_to_new_ref(), + f2.clone_to_new_ref(), + data, + ), + Self::ShiftedNoise(x, y, z, noise, data) => OwnedConverterEnvironment::ShiftedNoise( + x.clone_to_new_ref(), + y.clone_to_new_ref(), + z.clone_to_new_ref(), + noise.clone(), + data.clone(), + ), + Self::Spline(spline) => { + OwnedConverterEnvironment::Spline(SplineRef::Immutable(spline.clone())) + } + Self::Clamp(f, data) => { + OwnedConverterEnvironment::Clamp(f.clone_to_new_ref(), data.clone()) + } + Self::Unary(f, action) => { + OwnedConverterEnvironment::Unary(f.clone_to_new_ref(), action) + } + Self::Wierd(f, noise, rarity) => { + OwnedConverterEnvironment::Wierd(f.clone_to_new_ref(), noise.clone(), rarity) + } + _ => { + return None; + } + }) + } + + fn internal_conversion( + &self, + converter: &mut dyn ConverterImpl, + ) -> Option> { + match self { + Self::Wrapper(reference, action) => reference.maybe_convert(converter).map(|new_ref| { + WrapperFunction::::create_new_ref(new_ref, *action) + }), + Self::Range(input, in_range, out_range, data) => { + let conv_input = input.maybe_convert(converter); + let conv_in = in_range.maybe_convert(converter); + let conv_out = out_range.maybe_convert(converter); + match (conv_input, conv_in, conv_out) { + (None, None, None) => None, + (f1, f2, f3) => { + let input = f1.unwrap_or_else(|| (*input).clone().into()); + let in_sampler = f2.unwrap_or_else(|| (*in_range).clone().into()); + let out_sampler = f3.unwrap_or_else(|| (*out_range).clone().into()); + Some(RangeFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref( + input, in_sampler, out_sampler, data + )) + } + } + } + Self::BlendDensity(reference) => reference.maybe_convert(converter).map(|new_ref| { + BlendDensityFunction::::create_new_ref(new_ref) + }), + Self::Linear(reference, data) => reference.maybe_convert(converter).map(|new_ref| { + LinearFunction::::create_new_ref(new_ref, data) + }), + Self::Binary(arg1, arg2, action) => { + let conv_arg1 = arg1.maybe_convert(converter); + let conv_arg2 = arg2.maybe_convert(converter); + match (conv_arg1, conv_arg2) { + (None, None) => None, + (f1, f2) => { + let arg1 = f1.unwrap_or_else(|| (*arg1).clone().into()); + let arg2 = f2.unwrap_or_else(|| (*arg2).clone().into()); + + Some(BinaryFunction::< + E, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref( + arg1, arg2, *action + )) + } + } + } + Self::Noise(noise) => converter.convert_noise(&noise.noise).map(|new_noise| { + NoiseFunction::new(new_noise, noise.xz_scale, noise.y_scale).into() + }), + Self::ShiftedNoise(x, y, z, noise, data) => { + let conv_x = x.maybe_convert(converter); + let conv_y = y.maybe_convert(converter); + let conv_z = z.maybe_convert(converter); + let conv_noise = converter.convert_noise(noise); + + match (conv_x, conv_y, conv_z, conv_noise) { + (None, None, None, None) => None, + (f1, f2, f3, maybe_noise) => { + let x = f1.unwrap_or_else(|| (*x).clone().into()); + let y = f2.unwrap_or_else(|| (*y).clone().into()); + let z = f3.unwrap_or_else(|| (*z).clone().into()); + let noise = maybe_noise.unwrap_or_else(|| (*noise).clone()); + + Some(ShiftedNoiseFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref( + x, y, z, noise, data + )) + } + } + } + Self::ShiftA(noise) => converter + .convert_noise(noise) + .map(|new_noise| ShiftAFunction::new(new_noise).into()), + Self::ShiftB(noise) => converter + .convert_noise(noise) + .map(|new_noise| ShiftBFunction::new(new_noise).into()), + Self::Spline(spline) => spline.maybe_convert(converter).map(|new_spline| { + SplineFunction::::create_new_ref(new_spline) + }), + Self::Clamp(f, data) => f.maybe_convert(converter).map(|new_ref| { + ClampFunction::::create_new_ref(new_ref, data) + }), + Self::Unary(f, action) => f.maybe_convert(converter).map(|new_ref| { + UnaryFunction::::create_new_ref(new_ref, *action) + }), + Self::Wierd(f, noise, rarity) => { + let conv_f = f.maybe_convert(converter); + let conv_noise = converter.convert_noise(noise); + match (conv_f, conv_noise) { + (None, None) => None, + (maybe_f, maybe_noise) => { + let f = maybe_f.unwrap_or_else(|| (*f).clone().into()); + let noise = maybe_noise.unwrap_or_else(|| (*noise).clone()); + Some( + WierdScaledFunction::::create_new_ref( + f, noise, *rarity, + ), + ) + } + } + } + _ => None, + } + } +} + +pub(crate) enum ConverterEnvironment<'a, E: DensityFunctionEnvironment> { + Constant(f64), + Wrapper(&'a dyn ComponentReference, WrapperType), + YClamped(&'a YClampedFunction), + Beardifier, + Range( + &'a dyn ComponentReference, + &'a dyn ComponentReference, + &'a dyn ComponentReference, + &'a RangeUntypedData, + ), + BlendOffset, + BlendAlpha, + BlendDensity(&'a dyn ComponentReference), + End, + Linear(&'a dyn ComponentReference, &'a LinearUntypedData), + Binary( + &'a dyn ComponentReference, + &'a dyn ComponentReference, + BinaryType, + ), + Noise(&'a NoiseFunction), + ShiftedNoise( + &'a dyn ComponentReference, + &'a dyn ComponentReference, + &'a dyn ComponentReference, + &'a Arc, + &'a ShiftedNoiseUntypedData, + ), + InterpolatedNoise(&'a InterpolatedNoiseFunction), + ShiftA(&'a Arc), + ShiftB(&'a Arc), + Spline(&'a dyn SplineRefImpl), + Clamp(&'a dyn ComponentReference, &'a ClampUntypedData), + Unary(&'a dyn ComponentReference, UnaryType), + Wierd( + &'a dyn ComponentReference, + &'a Arc, + RarityMapper, + ), + ChunkNoise, +} + +pub(crate) enum ConversionResultPre { + New(ComponentReferenceImplementation), + NoChange, + Default, +} + +/// Only for components that reference other components +pub(crate) enum OwnedConverterEnvironment { + Wrapper(ComponentReferenceImplementation, WrapperType), + Range( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ComponentReferenceImplementation, + RangeUntypedData, + ), + BlendDensity(ComponentReferenceImplementation), + Linear(ComponentReferenceImplementation, LinearUntypedData), + Binary( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + BinaryType, + ), + ShiftedNoise( + ComponentReferenceImplementation, + ComponentReferenceImplementation, + ComponentReferenceImplementation, + Arc, + ShiftedNoiseUntypedData, + ), + Spline(SplineRef), + Clamp(ComponentReferenceImplementation, ClampUntypedData), + Unary(ComponentReferenceImplementation, UnaryType), + Wierd( + ComponentReferenceImplementation, + Arc, + RarityMapper, + ), +} + +impl OwnedConverterEnvironment { + pub fn rebuild_reference(self) -> ComponentReferenceImplementation { + match self { + Self::Wrapper(f, t) => { + WrapperFunction::::create_new_ref(f, t) + } + Self::Wierd(f, n, r) => { + WierdScaledFunction::::create_new_ref(f, n, r) + } + Self::Unary(f, t) => UnaryFunction::::create_new_ref(f, t), + Self::Clamp(f, t) => { + ClampFunction::::create_new_ref(f, &t) + } + Self::Spline(s) => SplineFunction::::create_new_ref(s), + Self::ShiftedNoise(x, y, z, n, d) => ShiftedNoiseFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref(x, y, z, n, &d), + Self::Binary(x, y, t) => BinaryFunction::< + E, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref(x, y, t), + Self::Linear(x, t) => { + LinearFunction::::create_new_ref(x, &t) + } + Self::BlendDensity(f) => { + BlendDensityFunction::::create_new_ref(f) + } + Self::Range(x, y, z, d) => RangeFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::create_new_ref(x, y, z, &d), + } + } +} + +// TODO: Also just generically make this better +pub trait ConverterImpl { + /// Takes action before internal density functions are converted + fn convert_env_pre_internal( + &mut self, + component: ConverterEnvironment, + ) -> ConversionResultPre; + + fn converts_post_internal(&mut self, component: ConverterEnvironment) -> bool; + + /// Takes action after internal density functions are converted + fn convert_env_post_internal( + &mut self, + component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation; + + fn convert_noise(&mut self, noise: &Arc) -> Option>; +} + +/// Fills the `arr` given a mutable density function and environment +pub trait EnvironmentApplierImpl: ApplierImpl { + type Env: DensityFunctionEnvironment; + + fn env(&mut self) -> &Self::Env; + + fn fill_mut( + &mut self, + arr: &mut [f64], + function: &mut dyn MutableComponentFunctionImpl, + ); + + fn cast_up(&mut self) -> &mut dyn ApplierImpl; +} + +/// Fills the `arr` given a immutable density function +pub trait ApplierImpl { + fn at(&mut self, index: usize) -> NoisePos; + + fn fill(&mut self, arr: &mut [f64], function: &dyn ImmutableComponentFunctionImpl); +} + +/// Methods shared across immutable and mutable density functions +pub trait ComponentFunctionImpl: Send + Sync {} + +/// A density function that needs no environment or mutable state. Only has `ComponentReference`s. +pub trait ImmutableComponentFunctionImpl: ComponentFunctionImpl { + fn sample(&self, pos: &NoisePos) -> f64; + + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl); + + fn shared_environment(&self) -> SharedConverterEnvironment; +} + +/// A density function that needs a mutable state (and possibly an environment). May have +/// `ComponentReference`s or `MutableComponentReference`s. +pub trait MutableComponentFunctionImpl: + ComponentFunctionImpl +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64; + + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl); + + fn environment(&self) -> ConverterEnvironment; + + fn into_environment(self: Box) -> OwnedConverterEnvironment; + + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation; + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation; +} + +/// Basic functions for simple modifications to a current component +pub trait ComponentReferenceMap { + type Result: ComponentReference; + + fn clamp(self, min: f64, max: f64) -> Self::Result; + + fn abs(self) -> Self::Result; + + fn square(self) -> Self::Result; + + fn cube(self) -> Self::Result; + + fn half_negative(self) -> Self::Result; + + fn quarter_negative(self) -> Self::Result; + + fn squeeze(self) -> Self::Result; + + fn add_const(self, other: f64) -> Self::Result; + + fn mul_const(self, other: f64) -> Self::Result; +} + +pub trait ComponentReferenceMath> { + type Result: ComponentReference; + + fn add(self, other: R) -> Self::Result; + + fn mul(self, other: R) -> Self::Result; + + fn min(self, other: R) -> Self::Result; + + fn max(self, other: R) -> Self::Result; +} + +pub(crate) enum ComponentReferenceImplementation { + Shared(SharedComponentReference), + Mutable(MutableComponentReference), +} + +impl ComponentReferenceImplementation { + pub fn add( + self, + other: ComponentReferenceImplementation, + ) -> ComponentReferenceImplementation { + match (self, other) { + ( + ComponentReferenceImplementation::Shared(shared1), + ComponentReferenceImplementation::Shared(shared2), + ) => BinaryFunction::::new( + BinaryType::Add, + shared1, + shared2, + ) + .into(), + (ref1, ref2) => + BinaryFunction::::create_new_ref(ref1, ref2, BinaryType::Add), + } + } +} + +impl ComponentReferenceImplementation { + #[inline] + pub fn environment(&self) -> ConverterEnvironment { + match self { + Self::Shared(shared) => shared.environment(), + Self::Mutable(owned) => owned.environment(), + } + } + + #[inline] + pub fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + match self { + Self::Shared(shared) => shared.clone_to_new_ref(), + Self::Mutable(owned) => owned.clone_to_new_ref(), + } + } + + #[inline] + pub fn into_environment( + self, + ) -> Result, ComponentReferenceImplementation> { + match self { + Self::Shared(shared) => shared.into_environment(), + Self::Mutable(owned) => owned.into_environment(), + } + } + + #[inline] + pub fn convert(self, converter: &mut dyn ConverterImpl) -> Self { + match self { + Self::Shared(shared) => shared.convert(converter), + Self::Mutable(owned) => owned.convert(converter), + } + } + + #[inline] + pub fn assert_shared(self) -> SharedComponentReference { + match self { + Self::Shared(shared) => shared, + Self::Mutable(_) => unreachable!(), + } + } + + #[inline] + pub fn boxed(self) -> Box> { + match self { + Self::Shared(shared) => Box::new(shared), + Self::Mutable(owned) => Box::new(owned), + } + } +} + +impl From> + for ComponentReferenceImplementation +{ + fn from(value: MutableComponentReference) -> Self { + Self::Mutable(value) + } +} + +impl From + for ComponentReferenceImplementation +{ + fn from(value: SharedComponentReference) -> Self { + Self::Shared(value) + } +} + +impl From + for ComponentReferenceImplementation +{ + fn from(value: F) -> Self { + Self::Shared(value.into()) + } +} + +/// A reference to some other density function whether it be immutable or mutable +pub trait ComponentReference: 'static + Send + Sync { + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64; + + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl); + + fn convert(self, converter: &mut dyn ConverterImpl) -> ComponentReferenceImplementation; + + fn matches_ref(&self, reference: &ComponentReferenceImplementation) -> bool; + + fn environment(&self) -> ConverterEnvironment; + + /// Returns an environment if able to be converted, otherwise itself as a reference wrapper + fn into_environment( + self, + ) -> Result, ComponentReferenceImplementation>; + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation; + + fn wrapped_ref(self) -> ComponentReferenceImplementation; + + fn wrapped_ref_from_box(self: Box) -> ComponentReferenceImplementation; +} + +/// A shared reference to an immutable density function +#[derive(Clone)] +pub struct SharedComponentReference(pub(crate) Arc); + +impl PartialEq for SharedComponentReference { + fn eq(&self, other: &Self) -> bool { + Arc::ptr_eq(&self.0, &other.0) + } +} + +impl Eq for SharedComponentReference {} + +impl Hash for SharedComponentReference { + fn hash(&self, state: &mut H) { + let ptr = Arc::as_ptr(&self.0); + let addr = ptr.cast::<()>() as usize; + addr.hash(state); + } +} + +impl From for SharedComponentReference { + fn from(value: F) -> Self { + Self(Arc::new(value)) + } +} + +impl SharedComponentReference { + #[inline] + pub fn sample(&self, pos: &NoisePos) -> f64 { + self.0.sample(pos) + } + + #[inline] + pub fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.0.fill(arr, applier); + } + + /// Returns None if no changes have been made + pub(crate) fn maybe_convert( + &self, + converter: &mut dyn ConverterImpl, + ) -> Option> { + let shared_env = self.0.shared_environment(); + match converter.convert_env_pre_internal(shared_env.as_env()) { + ConversionResultPre::New(reference) => Some(reference), + ConversionResultPre::NoChange => None, + ConversionResultPre::Default => { + let internal_conversion = shared_env + .internal_conversion(converter) + .unwrap_or_else(|| self.clone().into()); + + Some( + if converter.converts_post_internal(internal_conversion.environment()) { + let env = internal_conversion + .into_environment() + .unwrap_or_else(|_| panic!()); + converter.convert_env_post_internal(env) + } else { + internal_conversion + }, + ) + } + } + } +} + +impl ComponentReference for SharedComponentReference { + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, _env: &E) -> f64 { + self.sample(pos) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.fill(arr, applier.cast_up()); + } + + fn convert(self, converter: &mut dyn ConverterImpl) -> ComponentReferenceImplementation { + self.maybe_convert(converter).unwrap_or_else(|| self.into()) + } + + fn environment(&self) -> ConverterEnvironment { + self.0.shared_environment().as_env() + } + + fn into_environment( + self, + ) -> Result, ComponentReferenceImplementation> { + self.0 + .shared_environment() + .maybe_into_env() + .ok_or_else(|| self.into()) + } + + fn matches_ref(&self, reference: &ComponentReferenceImplementation) -> bool { + match reference { + ComponentReferenceImplementation::Shared(shared) => Arc::ptr_eq(&self.0, &shared.0), + ComponentReferenceImplementation::Mutable(_) => false, + } + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + self.clone().into() + } + + fn wrapped_ref(self) -> ComponentReferenceImplementation { + self.into() + } + + fn wrapped_ref_from_box(self: Box) -> ComponentReferenceImplementation { + (*self).into() + } +} + +impl> ComponentReferenceMap for I { + type Result = SharedComponentReference; + + fn abs(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::Abs, self.into()))) + } + + fn cube(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::Cube, self.into()))) + } + + fn clamp(self, min: f64, max: f64) -> Self::Result { + #[cfg(debug_assertions)] + assert!(min <= max); + SharedComponentReference(Arc::new(ClampFunction::< + NoEnvironment, + SharedComponentReference, + >::new(self.into(), min, max))) + } + + fn square(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::Square, self.into()))) + } + + fn squeeze(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::Squeeze, self.into()))) + } + + fn half_negative(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::HalfNeg, self.into()))) + } + + fn quarter_negative(self) -> Self::Result { + SharedComponentReference(Arc::new(UnaryFunction::< + NoEnvironment, + SharedComponentReference, + >::new(UnaryType::QuartNeg, self.into()))) + } + + fn add_const(self, other: f64) -> Self::Result { + SharedComponentReference(Arc::new(LinearFunction::< + NoEnvironment, + SharedComponentReference, + >::new(LinearType::Add, self.into(), other))) + } + + fn mul_const(self, other: f64) -> Self::Result { + SharedComponentReference(Arc::new(LinearFunction::< + NoEnvironment, + SharedComponentReference, + >::new(LinearType::Mul, self.into(), other))) + } +} + +impl> + ComponentReferenceMath for I +{ + type Result = SharedComponentReference; + + fn add(self, other: SharedComponentReference) -> Self::Result { + SharedComponentReference(Arc::new(BinaryFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + >::new(BinaryType::Add, self.into(), other))) + } + + fn mul(self, other: SharedComponentReference) -> Self::Result { + SharedComponentReference(Arc::new(BinaryFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + >::new(BinaryType::Mul, self.into(), other))) + } + + fn min(self, other: SharedComponentReference) -> Self::Result { + SharedComponentReference(Arc::new(BinaryFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + >::new(BinaryType::Min, self.into(), other))) + } + + fn max(self, other: SharedComponentReference) -> Self::Result { + SharedComponentReference(Arc::new(BinaryFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + >::new(BinaryType::Max, self.into(), other))) + } +} +/// A owned reference to a mutable density function +pub struct MutableComponentReference( + pub(crate) Box>, +); + +impl ComponentReference for MutableComponentReference { + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + self.0.sample_mut(pos, env) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.0.fill_mut(arr, applier); + } + + fn environment(&self) -> ConverterEnvironment { + self.0.environment() + } + + fn into_environment( + self, + ) -> Result, ComponentReferenceImplementation> { + Ok(self.0.into_environment()) + } + + fn convert(self, converter: &mut dyn ConverterImpl) -> ComponentReferenceImplementation { + let env = self.0.environment(); + match converter.convert_env_pre_internal(env) { + ConversionResultPre::New(function) => function, + ConversionResultPre::NoChange => self.into(), + ConversionResultPre::Default => { + let internal = self.0.convert(converter); + + if converter.converts_post_internal(internal.environment()) { + let env = internal.into_environment().unwrap_or_else(|_| panic!()); + converter.convert_env_post_internal(env) + } else { + internal + } + } + } + } + + fn matches_ref(&self, reference: &ComponentReferenceImplementation) -> bool { + match reference { + ComponentReferenceImplementation::Shared(_) => false, + ComponentReferenceImplementation::Mutable(_owned) => { + //TODO: A way to compare owned components (do we even need this?) + false + } + } + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + self.0.clone_to_new_ref() + } + + fn wrapped_ref(self) -> ComponentReferenceImplementation { + ComponentReferenceImplementation::Mutable(self) + } + + fn wrapped_ref_from_box(self: Box) -> ComponentReferenceImplementation { + ComponentReferenceImplementation::Mutable(*self) + } +} + +#[cfg(test)] +mod test { + use std::sync::Arc; + + use pumpkin_core::random::{legacy_rand::LegacyRand, RandomDeriver, RandomImpl}; + + use crate::world_gen::noise::{ + built_in_noise_params, + density::{ + noise::{InternalNoise, NoiseFunction}, + spline::{FloatAmplifier, ImmutableSplineRef, SplineBuilder, SplineFunction}, + test::{FakeEnvironment, OwnedConverter, TestConverter}, + NoisePos, UnblendedNoisePos, + }, + }; + + use super::{ComponentReference, NoEnvironment, SharedComponentReference}; + + #[test] + fn test_owned_minimal_conversion_spline() { + let minimal_spline = SplineBuilder::new( + NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::NETHER_WART, + None, + )), + 0.2f64, + 1.1f64, + ) + .into(), + FloatAmplifier::Identity, + ) + .add_fixed_value(0f32, 1f32) + .build(); + + let test_func: SharedComponentReference = + SplineFunction::::new(minimal_spline.into()).into(); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let standard_convert = test_func.clone().convert(&mut converter).assert_shared(); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let mut owned_convert = test_func.convert_to_dyn(&mut converter); + + for i in -10..=10 { + for j in -10..=10 { + for k in -10..=10 { + let pos = + NoisePos::Unblended(UnblendedNoisePos::new(i * 100, j * 100, k * 100)); + assert_eq!( + standard_convert.sample(&pos), + owned_convert.sample_mut(&pos, &FakeEnvironment {}) + ); + } + } + } + } + + #[test] + fn test_nested_minimal_conversion_spline() { + let minimal_spline = SplineBuilder::new( + NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::NETHER_WART, + None, + )), + 0.2f64, + 1.1f64, + ) + .into(), + FloatAmplifier::Identity, + ) + .add_spline_value( + 0f32, + SplineBuilder::new( + NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::NETHER_WART, + None, + )), + 0.2f64, + 1.1f64, + ) + .into(), + FloatAmplifier::Identity, + ) + .add_fixed_value(-1f32, -1f32) + .add_fixed_value(1f32, 1f32) + .build() + .into(), + ) + .add_fixed_value(1f32, 1f32) + .build(); + + let test_func: SharedComponentReference = + SplineFunction::::new(minimal_spline.into()).into(); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let standard_convert = test_func.clone().convert(&mut converter).assert_shared(); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let mut owned_convert = test_func.convert_to_dyn(&mut converter); + + for i in -10..=10 { + for j in -10..=10 { + for k in -10..=10 { + let pos = + NoisePos::Unblended(UnblendedNoisePos::new(i * 100, j * 100, k * 100)); + assert_eq!( + standard_convert.sample(&pos), + owned_convert.sample_mut(&pos, &FakeEnvironment {}) + ); + } + } + } + } +} diff --git a/pumpkin-world/src/world_gen/noise/density/end.rs b/pumpkin-world/src/world_gen/noise/density/end.rs index f546701a4..39ee37bc2 100644 --- a/pumpkin-world/src/world_gen/noise/density/end.rs +++ b/pumpkin-world/src/world_gen/noise/density/end.rs @@ -1,15 +1,15 @@ -use std::sync::Arc; - use pumpkin_core::random::{legacy_rand::LegacyRand, RandomImpl}; use crate::world_gen::noise::simplex::SimplexNoiseSampler; use super::{ - Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, NoisePosImpl, Visitor, - VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ImmutableComponentFunctionImpl, + SharedConverterEnvironment, + }, + NoisePosImpl, }; -#[derive(Clone)] pub struct EndIslandFunction { sampler: SimplexNoiseSampler, } @@ -56,24 +56,18 @@ impl EndIslandFunction { } } -impl<'a> DensityFunctionImpl<'a> for EndIslandFunction { - fn fill(&self, densities: &mut [f64], applier: &Applier) { - applier.fill(densities, &DensityFunction::EndIsland(self.clone())) - } +impl ComponentFunctionImpl for EndIslandFunction {} - fn sample(&self, pos: &NoisePos) -> f64 { +impl ImmutableComponentFunctionImpl for EndIslandFunction { + fn sample(&self, pos: &super::NoisePos) -> f64 { (Self::sample_2d(&self.sampler, pos.x() / 8, pos.z() / 8) as f64 - 8f64) / 128f64 } - fn min(&self) -> f64 { - -0.84375f64 - } - - fn max(&self) -> f64 { - 0.5625f64 + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::EndIsland(self.clone()))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::End } } diff --git a/pumpkin-world/src/world_gen/noise/density/math.rs b/pumpkin-world/src/world_gen/noise/density/math.rs index d20cae5f3..4efdd65f4 100644 --- a/pumpkin-world/src/world_gen/noise/density/math.rs +++ b/pumpkin-world/src/world_gen/noise/density/math.rs @@ -1,268 +1,347 @@ -use std::sync::Arc; +use std::marker::PhantomData; -use log::warn; +use crate::match_ref_implementations; use super::{ - Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, UnaryDensityFunction, - Visitor, VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + NoEnvironment, OwnedConverterEnvironment, SharedComponentReference, + SharedConverterEnvironment, + }, + NoisePos, }; -#[derive(Clone)] -pub enum LinearType { +#[derive(Copy, Clone, PartialEq, Eq, Hash)] +pub(crate) enum LinearType { Mul, Add, } #[derive(Clone)] -pub struct LinearFunction<'a> { - action: LinearType, - input: Arc>, - min: f64, - max: f64, - arg: f64, +pub(crate) struct LinearUntypedData { + pub(crate) arg: f64, + pub(crate) action: LinearType, +} + +pub struct LinearFunction> { + pub(crate) input: R, + pub(crate) data: LinearUntypedData, + _dummy: PhantomData, +} + +impl> From> + for MutableComponentReference +{ + fn from(value: LinearFunction) -> Self { + Self(Box::new(value)) + } } -impl<'a> DensityFunctionImpl<'a> for LinearFunction<'a> { - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - let new_function = self.input.apply(visitor); - let d = new_function.min(); - let e = new_function.max(); - - let (f, g) = match self.action { - LinearType::Add => (d + self.arg, e + self.arg), - LinearType::Mul => { - if self.arg >= 0f64 { - (d * self.arg, e * self.arg) - } else { - (e * self.arg, d * self.arg) - } +impl> LinearFunction { + pub fn new(action: LinearType, input: R, arg: f64) -> Self { + Self { + input, + data: LinearUntypedData { action, arg }, + _dummy: PhantomData:: {}, + } + } + #[inline] + fn apply_density(&self, density: f64) -> f64 { + match self.data.action { + LinearType::Mul => density * self.data.arg, + LinearType::Add => density + self.data.arg, + } + } + + #[inline] + fn apply_fill(&self, arr: &mut [f64]) { + arr.iter_mut() + .for_each(|density| *density = self.apply_density(*density)); + } + + pub fn create_new_ref( + arg: ComponentReferenceImplementation, + data: &LinearUntypedData, + ) -> ComponentReferenceImplementation { + match arg { + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + LinearFunction::::new( + data.action, + shared, + data.arg, + ) + .into(), + ) } - }; - - Arc::new(DensityFunction::Linear(LinearFunction { - action: self.action.clone(), - input: new_function, - min: f, - max: g, - arg: self.arg, - })) + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable( + LinearFunction::new(data.action, owned, data.arg).into(), + ) + } + } } +} - fn sample(&self, pos: &NoisePos) -> f64 { - self.apply_density(self.input.sample(pos)) +impl> ComponentFunctionImpl + for LinearFunction +{ +} + +impl> MutableComponentFunctionImpl + for LinearFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density = self.input.sample_mut(pos, env); + self.apply_density(density) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.input.fill_mut(arr, applier); + self.apply_fill(arr); } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier); - densities - .iter_mut() - .for_each(|val| *val = self.apply_density(*val)) + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Linear(&self.input, &self.data) } - fn min(&self) -> f64 { - self.min + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Linear(self.input.wrapped_ref(), self.data) } - fn max(&self) -> f64 { - self.max + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.convert(converter), &self.data) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.clone_to_new_ref(), &self.data) } } -impl<'a> UnaryDensityFunction<'a> for LinearFunction<'a> { - fn apply_density(&self, density: f64) -> f64 { - match self.action { - LinearType::Mul => density * self.arg, - LinearType::Add => density + self.arg, - } +impl ImmutableComponentFunctionImpl + for LinearFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + let density = self.input.sample(pos); + self.apply_density(density) + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.input.fill(arr, applier); + self.apply_fill(arr); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Linear(&self.input, &self.data) } } -#[derive(Clone)] -pub enum BinaryType { +#[derive(Copy, Clone, PartialEq, Eq, Hash)] +pub(crate) enum BinaryType { Mul, Add, Min, Max, } -#[derive(Clone)] -pub struct BinaryFunction<'a> { - action: BinaryType, - arg1: Arc>, - arg2: Arc>, - min: f64, - max: f64, +pub struct BinaryFunction< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, +> { + pub(crate) binary_type: BinaryType, + pub(crate) arg1: R1, + pub(crate) arg2: R2, + _dummy: PhantomData, } -impl<'a> BinaryFunction<'a> { - pub fn create( - action: BinaryType, - arg1: Arc>, - arg2: Arc>, - ) -> DensityFunction<'a> { - let d = arg1.min(); - let e = arg2.min(); - let f = arg1.max(); - let g = arg2.max(); - - match action { - BinaryType::Min | BinaryType::Max => { - if d >= e || e >= f { - warn!("Density function does not overlap"); - } - } - _ => {} +impl, R2: ComponentReference> + From> for MutableComponentReference +{ + fn from(value: BinaryFunction) -> Self { + Self(Box::new(value)) + } +} + +impl, R2: ComponentReference> + BinaryFunction +{ + pub fn new(binary_type: BinaryType, arg1: R1, arg2: R2) -> Self { + Self { + binary_type, + arg1, + arg2, + _dummy: PhantomData:: {}, } + } - let h = match action { - BinaryType::Add => d + e, - BinaryType::Mul => { - if d > 0f64 && e > 0f64 { - d * e - } else if f < 0f64 && g < 0f64 { - f * g - } else { - (d * g).min(f * e) - } - } - BinaryType::Min => d.min(e), - BinaryType::Max => d.max(e), - }; + #[inline] + fn apply_densities(&self, density1: f64, density2: f64) -> f64 { + match self.binary_type { + BinaryType::Add => density1 + density2, + BinaryType::Mul => density1 * density2, + BinaryType::Min => density1.min(density2), + BinaryType::Max => density1.max(density2), + } + } - let i = match action { - BinaryType::Add => f + g, - BinaryType::Mul => { - if d > 0f64 && e > 0f64 { - f * g - } else if f < 0f64 && g < 0f64 { - d * e - } else { - (d * e).max(f * g) - } - } - BinaryType::Min => f.min(g), - BinaryType::Max => f.max(g), - }; - - match action { - BinaryType::Mul | BinaryType::Add => { - let action = match action { - BinaryType::Add => LinearType::Add, - BinaryType::Mul => LinearType::Mul, - _ => unreachable!(), - }; - - if let DensityFunction::Constant(func) = arg1.as_ref() { - return DensityFunction::Linear(LinearFunction { - action, - input: arg2, - min: h, - max: i, - arg: func.value, - }); - } - - if let DensityFunction::Constant(func) = arg2.as_ref() { - return DensityFunction::Linear(LinearFunction { - action, - input: arg1, - min: h, - max: i, - arg: func.value, - }); - } + pub fn create_new_ref( + arg1: ComponentReferenceImplementation, + arg2: ComponentReferenceImplementation, + action: BinaryType, + ) -> ComponentReferenceImplementation { + match (arg1, arg2) { + ( + ComponentReferenceImplementation::Shared(shared1), + ComponentReferenceImplementation::Shared(shared2), + ) => BinaryFunction::::new( + action, shared1, shared2, + ) + .into(), + (ref1, ref2) => { + match_ref_implementations!( + (unwrapped1, ref1), + (unwrapped2, ref2); + { + ComponentReferenceImplementation::Mutable( + MutableComponentReference(Box::new( + BinaryFunction::new(action, unwrapped1, unwrapped2) + )) + ) + } + ) } - _ => {} } - - DensityFunction::Binary(BinaryFunction { - action, - arg1, - arg2, - min: h, - max: i, - }) } } -impl<'a> DensityFunctionImpl<'a> for BinaryFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - let d = self.arg1.sample(pos); - let e = self.arg2.sample(pos); +impl, R2: ComponentReference> + ComponentFunctionImpl for BinaryFunction +{ +} - match self.action { - BinaryType::Add => d + e, - BinaryType::Mul => d * e, +impl, R2: ComponentReference> + MutableComponentFunctionImpl for BinaryFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density1 = self.arg1.sample_mut(pos, env); + let density2 = self.arg2.sample_mut(pos, env); + self.apply_densities(density1, density2) + } + + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.arg1.fill_mut(arr, applier); + match self.binary_type { + BinaryType::Add => { + let mut densities2 = vec![0f64; arr.len()]; + self.arg2.fill_mut(&mut densities2, applier); + arr.iter_mut() + .zip(densities2) + .for_each(|(returned, temp)| *returned += temp); + } + BinaryType::Mul => { + arr.iter_mut().enumerate().for_each(|(i, val)| { + if *val != 0f64 { + *val *= self.arg2.sample_mut(&applier.at(i), applier.env()); + } + }); + } BinaryType::Min => { - if d < self.arg2.min() { - d - } else { - d.min(e) - } + arr.iter_mut().enumerate().for_each(|(i, val)| { + *val = val.min(self.arg2.sample_mut(&applier.at(i), applier.env())); + }); } BinaryType::Max => { - if d > self.arg2.max() { - d - } else { - d.max(e) - } + arr.iter_mut().enumerate().for_each(|(i, val)| { + *val = val.max(self.arg2.sample_mut(&applier.at(i), applier.env())); + }); } } } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.arg1.fill(densities, applier); - match self.action { + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Binary(&self.arg1, &self.arg2, self.binary_type) + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Binary( + self.arg1.wrapped_ref(), + self.arg2.wrapped_ref(), + self.binary_type, + ) + } + + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.arg1.convert(converter), + self.arg2.convert(converter), + self.binary_type, + ) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.arg1.clone_to_new_ref(), + self.arg2.clone_to_new_ref(), + self.binary_type, + ) + } +} + +impl ImmutableComponentFunctionImpl + for BinaryFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + let density1 = self.arg1.sample(pos); + let density2 = self.arg2.sample(pos); + self.apply_densities(density1, density2) + } + + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.arg1.fill(arr, applier); + match self.binary_type { BinaryType::Add => { - let mut ds = Vec::with_capacity(densities.len()); - densities.iter().for_each(|_| ds.push(0f64)); - self.arg2.fill(&mut ds, applier); - densities - .iter_mut() - .zip(ds) - .for_each(|(real, temp)| *real += temp); + let mut densities2 = vec![0f64; arr.len()]; + self.arg2.fill(&mut densities2, applier); + arr.iter_mut() + .zip(densities2) + .for_each(|(returned, temp)| *returned += temp); } BinaryType::Mul => { - densities.iter_mut().enumerate().for_each(|(i, val)| { + arr.iter_mut().enumerate().for_each(|(i, val)| { if *val != 0f64 { *val *= self.arg2.sample(&applier.at(i)); - }; + } }); } BinaryType::Min => { - let e = self.arg2.min(); - - densities.iter_mut().enumerate().for_each(|(i, val)| { - if *val >= e { - *val = val.min(self.arg2.sample(&applier.at(i))); - } + arr.iter_mut().enumerate().for_each(|(i, val)| { + *val = val.min(self.arg2.sample(&applier.at(i))); }); } BinaryType::Max => { - let e = self.arg2.max(); - - densities.iter_mut().enumerate().for_each(|(i, val)| { - if *val <= e { - *val = val.max(self.arg2.sample(&applier.at(i))) - } + arr.iter_mut().enumerate().for_each(|(i, val)| { + *val = val.max(self.arg2.sample(&applier.at(i))); }); } } } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(BinaryFunction::create( - self.action.clone(), - self.arg1.apply(visitor), - self.arg2.apply(visitor), - ))) - } - - fn max(&self) -> f64 { - self.max - } - - fn min(&self) -> f64 { - self.min + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Binary(&self.arg1, &self.arg2, self.binary_type) } } diff --git a/pumpkin-world/src/world_gen/noise/density/mod.rs b/pumpkin-world/src/world_gen/noise/density/mod.rs index c2ed0f462..f78c980d8 100644 --- a/pumpkin-world/src/world_gen/noise/density/mod.rs +++ b/pumpkin-world/src/world_gen/noise/density/mod.rs @@ -1,564 +1,700 @@ -use std::{ops::Deref, sync::Arc}; - -use blend::{BlendAlphaFunction, BlendDensityFunction, BlendOffsetFunction}; -use derive_getters::Getters; -use end::EndIslandFunction; +use std::sync::Arc; + +use basic::{ConstantFunction, RangeFunction, WrapperFunction, WrapperType}; +use blend::BlendDensityFunction; +use built_in_density_function::BLEND_ALPHA; +use component_functions::{ + ComponentReference, ComponentReferenceMap, ComponentReferenceMath, ConverterEnvironment, + NoEnvironment, SharedComponentReference, +}; use enum_dispatch::enum_dispatch; -use math::{BinaryFunction, BinaryType, LinearFunction}; -use noise::{InternalNoise, InterpolatedNoiseSampler, NoiseFunction, ShiftedNoiseFunction}; -use offset::{ShiftAFunction, ShiftBFunction}; -use spline::SplineFunction; -use terrain_helpers::{create_factor_spline, create_jaggedness_spline, create_offset_spline}; -use unary::{ClampFunction, UnaryFunction, UnaryType}; -use weird::{RarityMapper, WierdScaledFunction}; +use noise::{InternalNoise, NoiseFunction}; -use crate::world_gen::blender::Blender; +use crate::world_gen::{blender::Blender, chunk_noise::ChunkNoisePos}; -use super::{clamped_map, perlin::DoublePerlinNoiseParameters, BuiltInNoiseParams}; +use super::perlin::DoublePerlinNoiseParameters; -pub mod blend; -mod end; -mod math; +pub mod basic; +mod blend; +pub mod component_functions; +pub mod end; +pub mod math; pub mod noise; mod offset; -pub mod spline; +mod spline; mod terrain_helpers; mod unary; mod weird; -struct SlopedCheeseResult<'a> { - offset: Arc>, - factor: Arc>, - depth: Arc>, - jaggedness: Arc>, - sloped_cheese: Arc>, +#[derive(Debug)] +#[enum_dispatch(NoisePosImpl)] +pub enum NoisePos { + Unblended(UnblendedNoisePos), + Chunk(ChunkNoisePos), } -#[derive(Getters)] -pub struct BuiltInNoiseFunctions<'a> { - zero: Arc>, - ten: Arc>, - blend_alpha: Arc>, - blend_offset: Arc>, - y: Arc>, - shift_x: Arc>, - shift_z: Arc>, - base_3d_noise_overworld: Arc>, - base_3d_noise_nether: Arc>, - base_3d_noise_end: Arc>, - continents_overworld: Arc>, - erosion_overworld: Arc>, - ridges_overworld: Arc>, - ridges_folded_overworld: Arc>, - offset_overworld: Arc>, - factor_overworld: Arc>, - jaggedness_overworld: Arc>, - depth_overworld: Arc>, - sloped_cheese_overworld: Arc>, - continents_overworld_large_biome: Arc>, - erosion_overworld_large_biome: Arc>, - offset_overworld_large_biome: Arc>, - factor_overworld_large_biome: Arc>, - jaggedness_overworld_large_biome: Arc>, - depth_overworld_large_biome: Arc>, - sloped_cheese_overworld_large_biome: Arc>, - offset_overworld_amplified: Arc>, - factor_overworld_amplified: Arc>, - jaggedness_overworld_amplified: Arc>, - depth_overworld_amplified: Arc>, - sloped_cheese_overworld_amplified: Arc>, - sloped_cheese_end: Arc>, - caves_spaghetti_roughness_function_overworld: Arc>, - caves_spaghetti_2d_thickness_modular_overworld: Arc>, - caves_spaghetti_2d_overworld: Arc>, - caves_entrances_overworld: Arc>, - caves_noodle_overworld: Arc>, - caves_pillars_overworld: Arc>, +#[derive(Debug)] +pub struct UnblendedNoisePos { + x: i32, + y: i32, + z: i32, } -//Bits avaliable to encode y-pos -pub const SIZE_BITS_Y: i32 = 12; -pub const MAX_HEIGHT: i32 = (1 << SIZE_BITS_Y) - 32; -pub const MAX_COLUMN_HEIGHT: i32 = (MAX_HEIGHT >> 1) - 1; -pub const MIN_HEIGHT: i32 = MAX_COLUMN_HEIGHT - MAX_HEIGHT + 1; - -impl<'a> BuiltInNoiseFunctions<'a> { - pub fn new(built_in_noise_params: &BuiltInNoiseParams<'a>) -> Self { - let blend_alpha = Arc::new(DensityFunction::BlendAlpha(BlendAlphaFunction {})); - let blend_offset = Arc::new(DensityFunction::BlendOffset(BlendOffsetFunction {})); - let zero = Arc::new(DensityFunction::Constant(ConstantFunction::new(0f64))); - let ten = Arc::new(DensityFunction::Constant(ConstantFunction::new(10f64))); - - let y = Arc::new({ - DensityFunction::ClampedY(YClampedFunction { - from: MIN_HEIGHT * 2, - to: MAX_COLUMN_HEIGHT * 2, - from_val: (MIN_HEIGHT * 2) as f64, - to_val: (MAX_COLUMN_HEIGHT * 2) as f64, - }) - }); - - let shift_x = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftA(ShiftAFunction::new(Arc::new( - InternalNoise::new(built_in_noise_params.offset().clone(), None), - )))), - WrapperType::Cache2D, - ))), - WrapperType::CacheFlat, - )) - }); - - let shift_z = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftB(ShiftBFunction::new(Arc::new( - InternalNoise::new(built_in_noise_params.offset().clone(), None), - )))), - WrapperType::Cache2D, - ))), - WrapperType::CacheFlat, - )) - }); - - let base_3d_noise_overworld = Arc::new({ - DensityFunction::InterpolatedNoise( - InterpolatedNoiseSampler::create_base_3d_noise_function( - 0.25f64, 0.125f64, 80f64, 160f64, 8f64, - ), - ) - }); +impl UnblendedNoisePos { + pub fn new(x: i32, y: i32, z: i32) -> Self { + Self { x, y, z } + } +} - let base_3d_noise_nether = Arc::new({ - DensityFunction::InterpolatedNoise( - InterpolatedNoiseSampler::create_base_3d_noise_function( - 0.25f64, 0.375f64, 80f64, 60f64, 8f64, - ), - ) - }); +impl NoisePosImpl for UnblendedNoisePos { + fn x(&self) -> i32 { + self.x + } - let base_3d_noise_end = Arc::new({ - DensityFunction::InterpolatedNoise( - InterpolatedNoiseSampler::create_base_3d_noise_function( - 0.25f64, 0.25f64, 80f64, 160f64, 4f64, - ), + fn y(&self) -> i32 { + self.y + } + + fn z(&self) -> i32 { + self.z + } + + fn get_blender(&self) -> Blender { + Blender::NO_BLEND + } +} + +#[enum_dispatch] +pub trait NoisePosImpl { + fn x(&self) -> i32; + fn y(&self) -> i32; + fn z(&self) -> i32; + + fn get_blender(&self) -> Blender; +} + +pub mod built_in_density_function { + use std::sync::Arc; + + use lazy_static::lazy_static; + + use crate::world_gen::noise::built_in_noise_params::{self}; + use crate::world_gen::positions::{MAX_COLUMN_HEIGHT, MIN_HEIGHT}; + + use pumpkin_core::math::floor_div; + + use super::{apply_blending, noise_in_range, vertical_range_choice}; + + use super::basic::{ + ConstantFunction, RangeFunction, WrapperFunction, WrapperType, YClampedFunction, + }; + use super::blend::{BlendAlphaFunction, BlendOffsetFunction}; + use super::component_functions::{ + ComponentReferenceMap, ComponentReferenceMath, NoEnvironment, SharedComponentReference, + }; + use super::end::EndIslandFunction; + use super::noise::{ + InternalNoise, InterpolatedNoiseFunction, NoiseFunction, ShiftedNoiseFunction, + }; + use super::offset::{ShiftAFunction, ShiftBFunction}; + + use super::spline::{ImmutableSplineRef, SplineFunction}; + + use super::terrain_helpers::{ + create_factor_spline, create_jaggedness_spline, create_offset_spline, + }; + + use super::weird::{RarityMapper, WierdScaledFunction}; + + lazy_static! { + pub static ref ZERO: SharedComponentReference = ConstantFunction::new(0f64).into(); + pub static ref TEN: SharedComponentReference = ConstantFunction::new(10f64).into(); + pub static ref BLEND_ALPHA: SharedComponentReference = BlendAlphaFunction::INSTANCE.into(); + pub static ref BLEND_OFFSET: SharedComponentReference = + BlendOffsetFunction::INSTANCE.into(); + pub static ref Y: SharedComponentReference = YClampedFunction::new( + MIN_HEIGHT * 2, + MAX_COLUMN_HEIGHT as i32 * 2, + (MIN_HEIGHT * 2) as f64, + ((MAX_COLUMN_HEIGHT as i32) * 2) as f64 + ) + .into(); + pub static ref SHIFT_X: SharedComponentReference = + WrapperFunction::::new( + WrapperFunction::::new( + ShiftAFunction::new(Arc::new(InternalNoise::new( + &built_in_noise_params::OFFSET, + None + ))) + .into(), + WrapperType::Cache2D + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref SHIFT_Z: SharedComponentReference = + WrapperFunction::::new( + WrapperFunction::::new( + ShiftBFunction::new(Arc::new(InternalNoise::new( + &built_in_noise_params::OFFSET, + None + ))) + .into(), + WrapperType::Cache2D + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref BASE_3D_NOISE_OVERWORLD: SharedComponentReference = + InterpolatedNoiseFunction::create_base_3d_noise_function( + 0.25f64, 0.125f64, 80f64, 160f64, 8f64 ) - }); - - let continents_overworld = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - zero.clone(), - shift_z.clone(), + .into(); + pub static ref BASE_3D_NOISE_NETHER: SharedComponentReference = + InterpolatedNoiseFunction::create_base_3d_noise_function( + 0.25f64, 0.375f64, 80f64, 60f64, 8f64 + ) + .into(); + pub static ref BASE_3D_NOISE_END: SharedComponentReference = + InterpolatedNoiseFunction::create_base_3d_noise_function( + 0.25f64, 0.25f64, 80f64, 160f64, 4f64 + ) + .into(); + pub static ref CONTINENTS_OVERWORLD: SharedComponentReference = + WrapperFunction::::new( + ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, Arc::new(InternalNoise::new( - built_in_noise_params.continentalness().clone(), - None, - )), - ))), - WrapperType::CacheFlat, - )) - }); - - let erosion_overworld = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - zero.clone(), - shift_z.clone(), + &built_in_noise_params::CONTINENTALNESS, + None + )) + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref EROSION_OVERWORLD: SharedComponentReference = + WrapperFunction::::new( + ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, - Arc::new(InternalNoise::new( - built_in_noise_params.erosion().clone(), - None, - )), - ))), - WrapperType::CacheFlat, - )) - }); - - let ridges_overworld = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - zero.clone(), - shift_z.clone(), + Arc::new(InternalNoise::new(&built_in_noise_params::EROSION, None)) + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref RIDGES_OVERWORLD: SharedComponentReference = + WrapperFunction::::new( + ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, - Arc::new(InternalNoise::new( - built_in_noise_params.ridge().clone(), - None, - )), - ))), - WrapperType::CacheFlat, - )) - }); - - let ridges_folded_overworld = Arc::new({ - ridges_overworld - .abs() - .add_const(-0.6666666666666666f64) - .abs() - .add_const(-0.3333333333333333f64) - .mul_const(-3f64) - }); - - let overworld_sloped_cheese_result = sloped_cheese_function( - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.jagged().clone(), - None, - )), - 1500f64, - 0f64, - ))), - continents_overworld.clone(), - erosion_overworld.clone(), - ridges_overworld.clone(), - ridges_folded_overworld.clone(), - blend_offset.clone(), - ten.clone(), - zero.clone(), - base_3d_noise_overworld.clone(), - false, - ); + Arc::new(InternalNoise::new(&built_in_noise_params::RIDGE, None)) + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref RIDGES_FOLDED_OVERWORLD: SharedComponentReference = RIDGES_OVERWORLD + .clone() + .abs() + .add_const(-0.6666666666666666f64) + .abs() + .add_const(-0.3333333333333333f64) + .mul_const(-3f64); + static ref JAGGED_NOISE: SharedComponentReference = NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::JAGGED, None)), + 1500f64, + 0f64 + ) + .into(); + pub static ref OFFSET_OVERWORLD: SharedComponentReference = apply_blending( + ConstantFunction::new(-0.50375f32 as f64).add( + SplineFunction::::new( + create_offset_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into() + ), + BLEND_OFFSET.clone(), + ); + pub static ref FACTOR_OVERWORLD: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_factor_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into(), + TEN.clone(), + ); + pub static ref JAGGEDNESS_OVERWORLD: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_jaggedness_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into(), + ZERO.clone(), + ); + pub static ref DEPTH_OVERWORLD: SharedComponentReference = + YClampedFunction::new(-64, 320, 1.5f64, -1.5f64).add(OFFSET_OVERWORLD.clone()); + pub static ref SLOPED_CHEESE_OVERWORLD: SharedComponentReference = { + let density1 = JAGGEDNESS_OVERWORLD + .clone() + .mul(JAGGED_NOISE.clone().half_negative()); + let density2 = ConstantFunction::new(4f64).mul( + DEPTH_OVERWORLD + .clone() + .add(density1) + .mul(FACTOR_OVERWORLD.clone()) + .quarter_negative(), + ); - let continents_overworld_large_biome = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - zero.clone(), - shift_z.clone(), + density2.add(BASE_3D_NOISE_OVERWORLD.clone()) + }; + pub static ref CONTINENTS_OVERWORLD_LARGE_BIOME: SharedComponentReference = + WrapperFunction::::new( + ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, Arc::new(InternalNoise::new( - built_in_noise_params.continentalness_large().clone(), - None, - )), - ))), - WrapperType::CacheFlat, - )) - }); - - let erosion_overworld_large_biome = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - zero.clone(), - shift_z.clone(), + &built_in_noise_params::CONTINENTALNESS_LARGE, + None + )) + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref EROSION_OVERWORLD_LARGE_BIOME: SharedComponentReference = + WrapperFunction::::new( + ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, Arc::new(InternalNoise::new( - built_in_noise_params.erosion_large().clone(), - None, - )), - ))), - WrapperType::CacheFlat, - )) - }); + &built_in_noise_params::EROSION_LARGE, + None + )) + ) + .into(), + WrapperType::FlatCache + ) + .into(); + pub static ref OFFSET_OVERWORLD_LARGE_BIOME: SharedComponentReference = apply_blending( + ConstantFunction::new(-0.50375f32 as f64).add( + SplineFunction::::new( + create_offset_spline( + CONTINENTS_OVERWORLD_LARGE_BIOME.clone(), + EROSION_OVERWORLD_LARGE_BIOME.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into() + ), + BLEND_OFFSET.clone() + ); + pub static ref FACTOR_OVERWORLD_LARGE_BIOME: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_factor_spline( + CONTINENTS_OVERWORLD_LARGE_BIOME.clone(), + EROSION_OVERWORLD_LARGE_BIOME.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into(), + TEN.clone() + ); + pub static ref JAGGEDNESS_OVERWORLD_LARGE_BIOME: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_jaggedness_spline( + CONTINENTS_OVERWORLD_LARGE_BIOME.clone(), + EROSION_OVERWORLD_LARGE_BIOME.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ) + .into() + ) + .into(), + ZERO.clone() + ); + pub static ref DEPTH_OVERWORLD_LARGE_BIOME: SharedComponentReference = + YClampedFunction::new(-64, 320, 1.5f64, -1.5f64) + .add(OFFSET_OVERWORLD_LARGE_BIOME.clone()); + pub static ref SLOPED_CHEESE_OVERWORLD_LARGE_BIOME: SharedComponentReference = { + let density1 = JAGGEDNESS_OVERWORLD_LARGE_BIOME + .clone() + .mul(JAGGED_NOISE.clone().half_negative()); + let density2 = ConstantFunction::new(4f64).mul( + DEPTH_OVERWORLD_LARGE_BIOME + .clone() + .add(density1) + .mul(FACTOR_OVERWORLD_LARGE_BIOME.clone()) + .quarter_negative(), + ); - let overworld_large_biome_sloped_cheese_result = sloped_cheese_function( - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.jagged().clone(), - None, - )), - 1500f64, - 0f64, - ))), - continents_overworld_large_biome.clone(), - erosion_overworld_large_biome.clone(), - ridges_overworld.clone(), - ridges_folded_overworld.clone(), - blend_offset.clone(), - ten.clone(), - zero.clone(), - base_3d_noise_overworld.clone(), - false, - ); + density2.add(BASE_3D_NOISE_OVERWORLD.clone()) + }; + pub static ref OFFSET_OVERWORLD_AMPLIFIED: SharedComponentReference = apply_blending( + ConstantFunction::new(-0.50375f32 as f64).add( + SplineFunction::::new( + create_offset_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + true + ) + .into() + ) + .into() + ), + BLEND_OFFSET.clone() + ); + pub static ref FACTOR_OVERWORLD_AMPLIFIED: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_factor_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + true + ) + .into() + ) + .into(), + TEN.clone() + ); + pub static ref JAGGEDNESS_OVERWORLD_AMPLIFIED: SharedComponentReference = apply_blending( + SplineFunction::::new( + create_jaggedness_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + true + ) + .into() + ) + .into(), + ZERO.clone() + ); + pub static ref DEPTH_OVERWORLD_AMPLIFIED: SharedComponentReference = + YClampedFunction::new(-64, 320, 1.5f64, -1.5f64) + .add(OFFSET_OVERWORLD_AMPLIFIED.clone()); + pub static ref SLOPED_CHEESE_OVERWORLD_AMPLIFIED: SharedComponentReference = { + let density1 = JAGGEDNESS_OVERWORLD_AMPLIFIED + .clone() + .mul(JAGGED_NOISE.clone().half_negative()); + let density2 = ConstantFunction::new(4f64).mul( + DEPTH_OVERWORLD_AMPLIFIED + .clone() + .add(density1) + .mul(FACTOR_OVERWORLD_AMPLIFIED.clone()) + .quarter_negative(), + ); - let overworld_amplified_sloped_cheese_result = sloped_cheese_function( - Arc::new(DensityFunction::Noise(NoiseFunction::new( + density2.add(BASE_3D_NOISE_OVERWORLD.clone()) + }; + pub static ref SLOPED_CHEESE_END: SharedComponentReference = + EndIslandFunction::new(0).add(BASE_3D_NOISE_END.clone()); + pub static ref CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD: SharedComponentReference = { + let function = NoiseFunction::new( Arc::new(InternalNoise::new( - built_in_noise_params.jagged().clone(), + &built_in_noise_params::SPAGHETTI_ROUGHNESS, None, )), - 1500f64, + 1f64, + 1f64, + ); + + let function2 = noise_in_range( + &built_in_noise_params::SPAGHETTI_ROUGHNESS_MODULATOR, + 1f64, + 1f64, 0f64, - ))), - continents_overworld.clone(), - erosion_overworld.clone(), - ridges_overworld.clone(), - ridges_folded_overworld.clone(), - blend_offset.clone(), - ten.clone(), - zero.clone(), - base_3d_noise_overworld.clone(), - true, - ); + -0.1f64, + ); - let sloped_cheese_end = Arc::new({ - DensityFunction::EndIsland(EndIslandFunction::new(0)).add(base_3d_noise_end.clone()) - }); - - let caves_spaghetti_roughness_function_overworld = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new( - noise_in_range( - built_in_noise_params - .spaghetti_roughness_modulator() - .clone(), - 1f64, - 1f64, - 0f64, - -0.1f64, - ) - .mul(Arc::new( - DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_roughness().clone(), - None, - )), - 1f64, - 1f64, - )) - .abs() - .add_const(-0.4f64), - )), - ), - WrapperType::CacheOnce, - )) - }); - - let caves_spaghetti_2d_thickness_modular_overworld = Arc::new({ - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(noise_in_range( - built_in_noise_params.spaghetti_2d_thickness().clone(), + WrapperFunction::::new( + function2.mul(function.abs().add_const(-0.4f64)), + WrapperType::OnceCache, + ) + .into() + }; + pub static ref CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD: SharedComponentReference = + WrapperFunction::::new( + noise_in_range( + &built_in_noise_params::SPAGHETTI_2D_THICKNESS, 2f64, 1f64, -0.6f64, - -1.3f64, - )), - WrapperType::CacheOnce, - )) - }); - - let caves_spaghetti_2d_overworld = Arc::new({ - let function1 = DensityFunction::Noise(NoiseFunction::new( + -1.3f64 + ), + WrapperType::OnceCache, + ) + .into(); + pub static ref CAVES_SPAGHETTI_2D_OVERWORLD: SharedComponentReference = { + let function1 = NoiseFunction::new( Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_2d_modulator().clone(), + &built_in_noise_params::SPAGHETTI_2D_MODULATOR, None, )), 2f64, 1f64, - )); + ); - let function2 = DensityFunction::Wierd(WierdScaledFunction::new( - Arc::new(function1), + let function2 = WierdScaledFunction::::new( + function1.into(), Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_2d().clone(), + &built_in_noise_params::SPAGHETTI_2D, None, )), RarityMapper::Caves, - )); + ); let function3 = noise_in_range( - built_in_noise_params.spaghetti_2d_elevation().clone(), + &built_in_noise_params::SPAGHETTI_2D_ELEVATION, 1f64, 0f64, - ((-64i32) / 8i32) as f64, + floor_div(-64, 8) as f64, 8f64, ); - let function4 = caves_spaghetti_2d_thickness_modular_overworld.clone(); + let function4 = CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD.clone(); - let function5 = function3.add(Arc::new( - DensityFunction::ClampedY(YClampedFunction { - from: -64, - to: 320, - from_val: 8f64, - to_val: -40f64, - }) - .abs(), - )); + let function5 = function3 + .add(YClampedFunction::new(-64, 320, 8f64, -40f64).into()) + .abs(); - let function6 = Arc::new(function5.add(function4.clone()).cube()); + let function6 = function5.add(function4.clone()).cube(); - let function7 = function2.add(Arc::new(function4.mul_const(0.083f64))); + let function7 = function2.add(function4.mul_const(0.083f64)); - function7.binary_max(function6).clamp(-1f64, 1f64) - }); - - let caves_entrances_overworld = Arc::new({ - let function = DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_3d_rarity().clone(), - None, - )), - 2f64, - 1f64, - )); + function7.max(function6).clamp(-1f64, 1f64) + }; + pub static ref CAVES_ENTRANCES_OVERWORLD: SharedComponentReference = { + let function_ref: SharedComponentReference = + WrapperFunction::::new( + NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::SPAGHETTI_3D_RARITY, + None, + )), + 2f64, + 1f64, + ) + .into(), + WrapperType::OnceCache, + ) + .into(); - let function2 = Arc::new(noise_in_range( - built_in_noise_params.spaghetti_3d_thickness().clone(), + let function2 = noise_in_range( + &built_in_noise_params::SPAGHETTI_3D_THICKNESS, 1f64, 1f64, -0.065f64, -0.088f64, - )); + ); - let function3 = DensityFunction::Wierd(WierdScaledFunction::new( - Arc::new(function.clone()), + let function3 = WierdScaledFunction::::new( + function_ref.clone(), Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_3d_1().clone(), + &built_in_noise_params::SPAGHETTI_3D_1, None, )), RarityMapper::Tunnels, - )); + ); - let function4 = Arc::new(DensityFunction::Wierd(WierdScaledFunction::new( - Arc::new(function), + let function4 = WierdScaledFunction::::new( + function_ref, Arc::new(InternalNoise::new( - built_in_noise_params.spaghetti_3d_2().clone(), + &built_in_noise_params::SPAGHETTI_3D_2, None, )), RarityMapper::Tunnels, - ))); - - let function5 = Arc::new( - function3 - .binary_max(function4) - .add(function2) - .clamp(-1f64, 1f64), ); + let function5 = function3 + .max(function4.into()) + .add(function2) + .clamp(-1f64, 1f64); - let function6 = caves_spaghetti_roughness_function_overworld.clone(); + let function6 = CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD.clone(); - let function7 = DensityFunction::Noise(NoiseFunction::new( + let function7 = NoiseFunction::new( Arc::new(InternalNoise::new( - built_in_noise_params.cave_entrance().clone(), + &built_in_noise_params::CAVE_ENTRANCE, None, )), 0.75f64, 0.5f64, - )); + ); let function8 = function7 .add_const(0.37f64) - .add(Arc::new(DensityFunction::ClampedY(YClampedFunction { - from: -10, - to: 30, - from_val: 0.3f64, - to_val: 0f64, - }))); - - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(function8.binary_min(Arc::new(function6.add(function5)))), - WrapperType::CacheOnce, - )) - }); - - let caves_noodle_overworld = Arc::new({ - let function = y.clone(); - - let function2 = veritcal_range_choice( - function.clone(), - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.noodle().clone(), - None, - )), + .add(YClampedFunction::new(-10, 30, 0.3f64, 0f64).into()); + + WrapperFunction::::new( + function8.min(function6.add(function5)), + WrapperType::OnceCache, + ) + .into() + }; + pub static ref CAVES_NOODLE_OVERWORLD: SharedComponentReference = { + let function2 = vertical_range_choice( + Y.clone(), + NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::NOODLE, None)), 1f64, 1f64, - ))), + ) + .into(), -60, 320, -1, ); - let function3 = veritcal_range_choice( - function.clone(), - Arc::new(noise_in_range( - built_in_noise_params.noodle_thickness().clone(), + let function3 = vertical_range_choice( + Y.clone(), + noise_in_range( + &built_in_noise_params::NOODLE_THICKNESS, 1f64, 1f64, -0.05f64, -0.1f64, - )), + ), -60, 320, 0, ); - let function4 = veritcal_range_choice( - function.clone(), - Arc::new(DensityFunction::Noise(NoiseFunction::new( + let function4 = vertical_range_choice( + Y.clone(), + NoiseFunction::new( Arc::new(InternalNoise::new( - built_in_noise_params.noodle_ridge_a().clone(), + &built_in_noise_params::NOODLE_RIDGE_A, None, )), 2.6666666666666665f64, 2.6666666666666665f64, - ))), + ) + .into(), -60, 320, 0, ); - let function5 = veritcal_range_choice( - function.clone(), - Arc::new(DensityFunction::Noise(NoiseFunction::new( + let function5 = vertical_range_choice( + Y.clone(), + NoiseFunction::new( Arc::new(InternalNoise::new( - built_in_noise_params.noodle_ridge_b().clone(), + &built_in_noise_params::NOODLE_RIDGE_B, None, )), 2.6666666666666665f64, 2.6666666666666665f64, - ))), + ) + .into(), -60, 320, 0, ); - let function6 = Arc::new( - function4 - .abs() - .binary_max(Arc::new(function5.abs())) - .mul_const(1.5f64), - ); + let function6 = function4.abs().max(function5.abs()).mul_const(1.5f64); - DensityFunction::Range(RangeFunction { - input: Arc::new(function2), - min: -1000000f64, - max: 0f64, - in_range: Arc::new(DensityFunction::Constant(ConstantFunction::new(64f64))), - out_range: Arc::new(function3.add(function6)), - }) - }); - - let caves_pillars_overworld = Arc::new({ - let function = DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - built_in_noise_params.pillar().clone(), - None, - )), + RangeFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + function2, + -1000000f64, + 0f64, + ConstantFunction::new(64f64).into(), + function3.add(function6), + ) + .into() + }; + pub static ref CAVES_PILLARS_OVERWORLD: SharedComponentReference = { + let function = NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::PILLAR, None)), 25f64, 0.3f64, - )); + ); - let function2 = Arc::new(noise_in_range( - built_in_noise_params.pillar_rareness().clone(), + let function2 = noise_in_range( + &built_in_noise_params::PILLAR_RARENESS, 1f64, 1f64, 0f64, -2f64, - )); + ); let function3 = noise_in_range( - built_in_noise_params.pillar_thickness().clone(), + &built_in_noise_params::PILLAR_THICKNESS, 1f64, 1f64, 0f64, @@ -567,127 +703,12 @@ impl<'a> BuiltInNoiseFunctions<'a> { let function4 = function.mul_const(2f64).add(function2); - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(function4.mul(Arc::new(function3.cube()))), - WrapperType::CacheOnce, - )) - }); - - Self { - zero, - ten, - blend_offset, - blend_alpha, - y, - shift_x, - shift_z, - base_3d_noise_overworld, - base_3d_noise_nether, - base_3d_noise_end, - continents_overworld, - erosion_overworld, - ridges_overworld, - ridges_folded_overworld, - offset_overworld: overworld_sloped_cheese_result.offset, - factor_overworld: overworld_sloped_cheese_result.factor, - jaggedness_overworld: overworld_sloped_cheese_result.jaggedness, - depth_overworld: overworld_sloped_cheese_result.depth, - sloped_cheese_overworld: overworld_sloped_cheese_result.sloped_cheese, - continents_overworld_large_biome, - erosion_overworld_large_biome, - offset_overworld_large_biome: overworld_large_biome_sloped_cheese_result.offset, - factor_overworld_large_biome: overworld_large_biome_sloped_cheese_result.factor, - jaggedness_overworld_large_biome: overworld_large_biome_sloped_cheese_result.jaggedness, - depth_overworld_large_biome: overworld_large_biome_sloped_cheese_result.depth, - sloped_cheese_overworld_large_biome: overworld_large_biome_sloped_cheese_result - .sloped_cheese, - offset_overworld_amplified: overworld_amplified_sloped_cheese_result.offset, - factor_overworld_amplified: overworld_amplified_sloped_cheese_result.factor, - jaggedness_overworld_amplified: overworld_amplified_sloped_cheese_result.jaggedness, - depth_overworld_amplified: overworld_amplified_sloped_cheese_result.depth, - sloped_cheese_overworld_amplified: overworld_amplified_sloped_cheese_result - .sloped_cheese, - sloped_cheese_end, - caves_spaghetti_roughness_function_overworld, - caves_spaghetti_2d_thickness_modular_overworld, - caves_spaghetti_2d_overworld, - caves_entrances_overworld, - caves_noodle_overworld, - caves_pillars_overworld, - } - } -} - -#[allow(clippy::too_many_arguments)] -fn sloped_cheese_function<'a>( - jagged_noise: Arc>, - continents: Arc>, - erosion: Arc>, - ridges: Arc>, - ridges_folded: Arc>, - blend_offset: Arc>, - ten: Arc>, - zero: Arc>, - base_3d_noise_overworld: Arc>, - amplified: bool, -) -> SlopedCheeseResult<'a> { - let offset = Arc::new(apply_blending( - Arc::new( - DensityFunction::Constant(ConstantFunction::new(-0.50375f32 as f64)).add(Arc::new( - DensityFunction::Spline(SplineFunction::new(Arc::new(create_offset_spline( - continents.clone(), - erosion.clone(), - ridges_folded.clone(), - amplified, - )))), - )), - ), - blend_offset, - )); - - let factor = Arc::new(apply_blending( - Arc::new(DensityFunction::Spline(SplineFunction::new(Arc::new( - create_factor_spline( - continents.clone(), - erosion.clone(), - ridges.clone(), - ridges_folded.clone(), - amplified, - ), - )))), - ten, - )); - - let depth = Arc::new( - DensityFunction::ClampedY(YClampedFunction { - from: -64, - to: 320, - from_val: 1.5f64, - to_val: -1.5f64, - }) - .add(offset.clone()), - ); - - let jaggedness = Arc::new(apply_blending( - Arc::new(DensityFunction::Spline(SplineFunction::new(Arc::new( - create_jaggedness_spline(continents, erosion, ridges, ridges_folded, amplified), - )))), - zero, - )); - - let density1 = Arc::new(jaggedness.mul(Arc::new(jagged_noise.half_negative()))); - let density2 = DensityFunction::Constant(ConstantFunction::new(4f64)).mul(Arc::new( - depth.add(density1).mul(factor.clone()).quarter_negative(), - )); - - let sloped_cheese = Arc::new(density2.add(base_3d_noise_overworld)); - - SlopedCheeseResult { - offset, - factor, - depth, - jaggedness, - sloped_cheese, + WrapperFunction::::new( + function4.mul(function3.cube()), + WrapperType::OnceCache, + ) + .into() + }; } } @@ -695,925 +716,805 @@ pub fn peaks_valleys_noise(variance: f32) -> f32 { -((variance.abs() - 0.6666667f32).abs() - 0.33333334f32) * 3f32 } -pub fn veritcal_range_choice<'a>( - input: Arc>, - in_range: Arc>, +pub fn vertical_range_choice( + input: SharedComponentReference, + in_range: SharedComponentReference, min: i32, max: i32, out: i32, -) -> DensityFunction<'a> { - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::Range(RangeFunction { +) -> SharedComponentReference { + WrapperFunction::::new( + RangeFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( input, - min: min as f64, - max: (max + 1) as f64, + min as f64, + (max + 1) as f64, in_range, - out_range: Arc::new(DensityFunction::Constant(ConstantFunction::new(out as f64))), - })), + ConstantFunction::new(out as f64).into(), + ) + .into(), WrapperType::Interpolated, - )) + ) + .into() } -pub fn apply_blend_density(density: DensityFunction) -> DensityFunction { - let function = DensityFunction::BlendDensity(BlendDensityFunction::new(Arc::new(density))); - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(function), - WrapperType::Interpolated, - )) +pub fn apply_blend_density(density: SharedComponentReference) -> SharedComponentReference { + let function = BlendDensityFunction::::new(density); + Into::::into( + WrapperFunction::::new( + function.into(), + WrapperType::Interpolated, + ), + ) .mul_const(0.64f64) .squeeze() } -fn apply_blending<'a>( - function: Arc>, - blend: Arc>, -) -> DensityFunction<'a> { - let function = lerp_density( - Arc::new(DensityFunction::BlendAlpha(BlendAlphaFunction {})), - blend, - function, - ); - - DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(DensityFunction::Wrapper(WrapperFunction::new( - Arc::new(function), +fn apply_blending( + function: SharedComponentReference, + blend: SharedComponentReference, +) -> SharedComponentReference { + let function = lerp_density(BLEND_ALPHA.clone(), blend, function); + + WrapperFunction::::new( + WrapperFunction::::new( + function, WrapperType::Cache2D, - ))), - WrapperType::CacheFlat, - )) + ) + .into(), + WrapperType::FlatCache, + ) + .into() } fn noise_in_range( - noise: DoublePerlinNoiseParameters, + noise: &'static DoublePerlinNoiseParameters, xz_scale: f64, y_scale: f64, min: f64, max: f64, -) -> DensityFunction { +) -> SharedComponentReference { map_range( - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise, None)), - xz_scale, - y_scale, - ))), + NoiseFunction::new(Arc::new(InternalNoise::new(noise, None)), xz_scale, y_scale).into(), min, max, ) } -fn map_range(function: Arc, min: f64, max: f64) -> DensityFunction { +fn map_range(function: SharedComponentReference, min: f64, max: f64) -> SharedComponentReference { let d = (min + max) * 0.5f64; let e = (max - min) * 0.5f64; - DensityFunction::Constant(ConstantFunction::new(d)).add(Arc::new( - DensityFunction::Constant(ConstantFunction::new(e)).mul(function), - )) + function.mul_const(e).add_const(d) } -#[derive(Clone)] -#[enum_dispatch(DensityFunctionImpl)] -pub enum DensityFunction<'a> { - Clamp(ClampFunction<'a>), - Unary(UnaryFunction<'a>), - Noise(NoiseFunction<'a>), - ShiftA(ShiftAFunction<'a>), - ShiftB(ShiftBFunction<'a>), - ShiftedNoise(ShiftedNoiseFunction<'a>), - Spline(SplineFunction<'a>), - Constant(ConstantFunction), - Linear(LinearFunction<'a>), - Binary(BinaryFunction<'a>), - BlendOffset(BlendOffsetFunction), - BlendAlpha(BlendAlphaFunction), - BlendDensity(BlendDensityFunction<'a>), - ClampedY(YClampedFunction), - InterpolatedNoise(InterpolatedNoiseSampler), - EndIsland(EndIslandFunction), - Wierd(WierdScaledFunction<'a>), - Range(RangeFunction<'a>), - Wrapper(WrapperFunction<'a>), +pub fn lerp_density( + delta: SharedComponentReference, + start: SharedComponentReference, + end: SharedComponentReference, +) -> SharedComponentReference { + if let ConverterEnvironment::::Constant(constant) = start.environment() { + lerp_density_static_start(delta, constant, end) + } else { + let function_ref: SharedComponentReference = WrapperFunction::< + NoEnvironment, + SharedComponentReference, + >::new(delta, WrapperType::OnceCache) + .into(); + + let function2 = function_ref.clone().mul_const(-1f64).add_const(1f64); + start.mul(function2).add(end.mul(function_ref)) + } } -impl<'a> DensityFunction<'a> { - pub fn clamp(&self, min: f64, max: f64) -> Self { - assert!(min <= max); - Self::Clamp(ClampFunction { - input: Arc::new(self.clone()), - min, - max, - }) - } +pub fn lerp_density_static_start( + delta: SharedComponentReference, + start: f64, + end: SharedComponentReference, +) -> SharedComponentReference { + delta.mul(end.add_const(-start)).add_const(start) +} - pub fn abs(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::Abs, - Arc::new(self.clone()), - )) +#[cfg(test)] +mod test { + use std::sync::Arc; + + use pumpkin_core::random::{ + legacy_rand::LegacyRand, RandomDeriver, RandomDeriverImpl, RandomImpl, + }; + + use crate::world_gen::noise::{ + built_in_noise_params, + density::{built_in_density_function::*, NoisePos, UnblendedNoisePos}, + perlin::DoublePerlinNoiseSampler, + }; + + use super::{ + component_functions::{ + ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ComponentReferenceMath, ConversionResultPre, ConverterEnvironment, ConverterImpl, + DensityFunctionEnvironment, EnvironmentApplierImpl, MutableComponentFunctionImpl, + MutableComponentReference, NoEnvironment, OwnedConverterEnvironment, + SharedComponentReference, + }, + noise::{InternalNoise, NoiseFunction}, + }; + + pub struct TestConverter { + pub splitter: RandomDeriver, } - pub fn square(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::Square, - Arc::new(self.clone()), - )) - } + impl ConverterImpl for TestConverter { + fn convert_noise(&mut self, noise: &Arc) -> Option> { + let id = noise.parameters.id(); + let mut rand = self.splitter.split_string(id); + let sampler = DoublePerlinNoiseSampler::new(&mut rand, noise.parameters, false); - pub fn cube(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::Cube, - Arc::new(self.clone()), - )) - } + Some(Arc::new(InternalNoise::new( + noise.parameters, + Some(sampler), + ))) + } - pub fn half_negative(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::HalfNeg, - Arc::new(self.clone()), - )) - } + fn convert_env_pre_internal( + &mut self, + _component: ConverterEnvironment, + ) -> ConversionResultPre { + ConversionResultPre::Default + } - pub fn quarter_negative(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::QuartNeg, - Arc::new(self.clone()), - )) - } + fn converts_post_internal( + &mut self, + _component: ConverterEnvironment, + ) -> bool { + false + } - pub fn squeeze(&self) -> Self { - Self::Unary(UnaryFunction::create( - UnaryType::Squeeze, - Arc::new(self.clone()), - )) + fn convert_env_post_internal( + &mut self, + _component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation { + unreachable!() + } } - pub fn add_const(&self, val: f64) -> Self { - self.add(Arc::new(Self::Constant(ConstantFunction::new(val)))) - } + #[test] + fn test_density_function_correctness() { + let pos = NoisePos::Unblended(UnblendedNoisePos { x: 0, y: 0, z: 0 }); - pub fn add(&self, other: Arc>) -> Self { - BinaryFunction::create(BinaryType::Add, Arc::new(self.clone()), other) - } + assert_eq!(BLEND_ALPHA.sample(&pos), 1f64); - pub fn mul_const(&self, val: f64) -> Self { - self.mul(Arc::new(Self::Constant(ConstantFunction::new(val)))) - } + assert_eq!(BLEND_OFFSET.sample(&pos), 0f64); - pub fn mul(&self, other: Arc>) -> Self { - BinaryFunction::create(BinaryType::Mul, Arc::new(self.clone()), other) - } + assert_eq!(ZERO.sample(&pos), 0f64); - pub fn binary_min(&self, other: Arc>) -> Self { - BinaryFunction::create(BinaryType::Min, Arc::new(self.clone()), other) - } + assert_eq!(Y.sample(&pos), 0f64); - pub fn binary_max(&self, other: Arc>) -> Self { - BinaryFunction::create(BinaryType::Max, Arc::new(self.clone()), other) - } -} + assert_eq!(SHIFT_X.sample(&pos), 0f64); -pub struct Unused<'a> { - _x: &'a str, -} + assert_eq!(SHIFT_Z.sample(&pos), 0f64); -impl NoisePosImpl for Unused<'_> { - fn x(&self) -> i32 { - todo!() - } + assert_eq!(BASE_3D_NOISE_OVERWORLD.sample(&pos), 0.05283727086562935f64); - fn y(&self) -> i32 { - todo!() - } + assert_eq!(BASE_3D_NOISE_NETHER.sample(&pos), 0.05283727086562935f64); - fn z(&self) -> i32 { - todo!() - } -} + assert_eq!(BASE_3D_NOISE_END.sample(&pos), 0.05283727086562935f64); -impl<'a> ApplierImpl<'a> for Unused<'a> { - fn at(&self, _index: usize) -> NoisePos<'a> { - todo!() - } + assert_eq!(CONTINENTS_OVERWORLD.sample(&pos), 0f64); - fn fill(&self, _densities: &mut [f64], _function: &DensityFunction<'a>) { - todo!() - } -} + assert_eq!(EROSION_OVERWORLD.sample(&pos), 0f64); -impl<'a> VisitorImpl<'a> for Unused<'a> { - fn apply(&self, _function: Arc>) -> Arc> { - todo!() - } -} + assert_eq!(RIDGES_OVERWORLD.sample(&pos), 0f64); -#[enum_dispatch(NoisePosImpl)] -pub enum NoisePos<'a> { - Unblended(UnblendedNoisePos), - Todo(Unused<'a>), -} + assert_eq!(RIDGES_FOLDED_OVERWORLD.sample(&pos), -1f64); -pub struct UnblendedNoisePos { - x: i32, - y: i32, - z: i32, -} + assert_eq!(OFFSET_OVERWORLD.sample(&pos), -0.6037500277161598f64); -impl UnblendedNoisePos { - pub fn new(x: i32, y: i32, z: i32) -> Self { - Self { x, y, z } - } -} + assert_eq!(FACTOR_OVERWORLD.sample(&pos), 5.549900531768799f64); -impl NoisePosImpl for UnblendedNoisePos { - fn x(&self) -> i32 { - self.x - } + assert_eq!(JAGGEDNESS_OVERWORLD.sample(&pos), 0f64); - fn y(&self) -> i32 { - self.y - } + assert_eq!(DEPTH_OVERWORLD.sample(&pos), 0.3962499722838402f64); - fn z(&self) -> i32 { - self.z - } -} + assert_eq!(SLOPED_CHEESE_OVERWORLD.sample(&pos), 8.849428998431454f64); -#[enum_dispatch] -pub trait NoisePosImpl { - fn x(&self) -> i32; - fn y(&self) -> i32; - fn z(&self) -> i32; + assert_eq!(CONTINENTS_OVERWORLD_LARGE_BIOME.sample(&pos), 0f64); - fn get_blender(&self) -> Blender { - unimplemented!() - } -} + assert_eq!(EROSION_OVERWORLD_LARGE_BIOME.sample(&pos), 0f64); -#[enum_dispatch(ApplierImpl)] -pub enum Applier<'a> { - Todo(Unused<'a>), -} + assert_eq!( + OFFSET_OVERWORLD_LARGE_BIOME.sample(&pos), + -0.6037500277161598f64 + ); -#[enum_dispatch] -pub trait ApplierImpl<'a> { - fn at(&self, index: usize) -> NoisePos<'a>; + assert_eq!( + FACTOR_OVERWORLD_LARGE_BIOME.sample(&pos), + 5.549900531768799f64 + ); - fn fill(&self, densities: &mut [f64], function: &DensityFunction<'a>); -} + assert_eq!(JAGGEDNESS_OVERWORLD_LARGE_BIOME.sample(&pos), 0f64); -#[enum_dispatch(VisitorImpl)] -pub enum Visitor<'a> { - Unwrap(UnwrapVisitor), - Todo(Unused<'a>), -} + assert_eq!( + DEPTH_OVERWORLD_LARGE_BIOME.sample(&pos), + 0.3962499722838402f64 + ); -pub struct UnwrapVisitor {} + assert_eq!( + SLOPED_CHEESE_OVERWORLD_LARGE_BIOME.sample(&pos), + 8.849428998431454f64 + ); -impl<'a> VisitorImpl<'a> for UnwrapVisitor { - fn apply(&self, function: Arc>) -> Arc> { - match function.deref() { - DensityFunction::Wrapper(wrapper) => wrapper.wrapped(), - _ => function.clone(), - } - } -} + assert_eq!( + OFFSET_OVERWORLD_AMPLIFIED.sample(&pos), + -0.6037500277161598f64 + ); -#[enum_dispatch] -pub trait VisitorImpl<'a> { - fn apply(&self, function: Arc>) -> Arc>; + assert_eq!( + FACTOR_OVERWORLD_AMPLIFIED.sample(&pos), + 0.6516130566596985f64 + ); - fn apply_internal_noise<'b>(&self, function: Arc>) -> Arc> { - function.clone() - } -} + assert_eq!(JAGGEDNESS_OVERWORLD_AMPLIFIED.sample(&pos), 0f64); -#[enum_dispatch] -pub trait DensityFunctionImpl<'a> { - fn sample(&self, pos: &NoisePos) -> f64; + assert_eq!( + DEPTH_OVERWORLD_AMPLIFIED.sample(&pos), + 0.3962499722838402f64 + ); - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>); + assert_eq!( + SLOPED_CHEESE_OVERWORLD_AMPLIFIED.sample(&pos), + 1.085643893430405f64 + ); - fn apply(&self, visitor: &Visitor<'a>) -> Arc>; + assert_eq!(SLOPED_CHEESE_END.sample(&pos), 0.6153372708656294f64); - fn min(&self) -> f64; + assert_eq!( + CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD.sample(&pos), + 0.020000000000000004f64 + ); - fn max(&self) -> f64; -} + assert_eq!( + CAVES_ENTRANCES_OVERWORLD.sample(&pos), + -0.056499999999999995f64 + ); -#[derive(Clone)] -pub struct ConstantFunction { - value: f64, -} + assert_eq!(CAVES_NOODLE_OVERWORLD.sample(&pos), -0.07500000000000001f64); -impl ConstantFunction { - pub fn new(value: f64) -> Self { - ConstantFunction { value } - } -} + assert_eq!( + CAVES_PILLARS_OVERWORLD.sample(&pos), + -0.16637500000000005f64 + ); -impl<'a> DensityFunctionImpl<'a> for ConstantFunction { - fn sample(&self, _pos: &NoisePos) -> f64 { - self.value - } + assert_eq!( + CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD.sample(&pos), + -0.95f64 + ); - fn fill(&self, densities: &mut [f64], _applier: &Applier) { - densities.fill(self.value) + assert_eq!(CAVES_SPAGHETTI_2D_OVERWORLD.sample(&pos), -0.07885f64); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::Constant(self.clone()))) + #[test] + fn test_conversion() { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 0, 0)); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut rand2 = splitter.split_string("test"); + assert_eq!(rand2.next_i32(), 457448999); + + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + + let shift_x = SHIFT_X.clone(); + assert_eq!(shift_x.sample(pos), 0f64); + + let converted_shift_x = shift_x.clone().convert(&mut converter).assert_shared(); + assert_eq!(converted_shift_x.sample(pos), -1.0434329952492611f64); + + let converted = ZERO.clone().convert(&mut converter).assert_shared(); + assert_eq!(converted.sample(pos), 0f64); + + let converted = Y.clone().convert(&mut converter).assert_shared(); + assert_eq!(converted.sample(pos), 0f64); + + let converted = SHIFT_Z.clone().convert(&mut converter).assert_shared(); + assert_eq!(converted.sample(pos), -1.0434329952492611f64); + + let converted = BASE_3D_NOISE_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.05283727086562935f64); + + let converted = BASE_3D_NOISE_NETHER + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.05283727086562935f64); + + let converted = BASE_3D_NOISE_END + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.05283727086562935f64); + + let converted = CONTINENTS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.07789864655134425f64); + + let converted = EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.1909838546072366f64); + + let converted = RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.18402646504201148f64); + + let converted = RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.4479206048739655f64); + + let converted = OFFSET_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.4883981039747596f64); + + let converted = FACTOR_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 5.053797245025635f64); + + let converted = JAGGEDNESS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0f64); + + let converted = DEPTH_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.5116018960252404f64); + + let converted = SLOPED_CHEESE_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 10.394966281594634f64); + + let converted = CONTINENTS_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.5413000828801735f64); + + let converted = EROSION_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.22584626355586912f64); + + let converted = OFFSET_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.3040638118982315f64); + + let converted = FACTOR_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 6.040968418121338f64); + + let converted = JAGGEDNESS_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0f64); + + let converted = DEPTH_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.6959361881017685f64); + + let converted = SLOPED_CHEESE_OVERWORLD_LARGE_BIOME + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 16.869351404267768f64); + + let converted = OFFSET_OVERWORLD_AMPLIFIED + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.47187428921461105f64); + + let converted = FACTOR_OVERWORLD_AMPLIFIED + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.6070870161056519f64); + + let converted = JAGGEDNESS_OVERWORLD_AMPLIFIED + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0f64); + + let converted = DEPTH_OVERWORLD_AMPLIFIED + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.528125710785389f64); + + let converted = SLOPED_CHEESE_OVERWORLD_AMPLIFIED + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 1.3353103184231423f64); + + let converted = SLOPED_CHEESE_END + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.6153372708656294f64); + + let converted = CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.0022723587537428667f64); + + let converted = CAVES_ENTRANCES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 0.20826666534765442f64); + + let converted = CAVES_NOODLE_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 64f64); + + let converted = CAVES_PILLARS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.0863817754261902f64); + + let converted = CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), -0.9871490512034798f64); + + let converted = CAVES_SPAGHETTI_2D_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + assert_eq!(converted.sample(pos), 1f64); } - fn min(&self) -> f64 { - self.value + pub struct OwnedConverter { + pub splitter: RandomDeriver, } - fn max(&self) -> f64 { - self.value + struct MutableWrapper { + wrapped: SharedComponentReference, } -} -#[derive(Clone)] -pub enum WrapperType { - Cache2D, - CacheFlat, - CacheOnce, - Interpolated, - CacheCell, -} - -#[derive(Clone)] -pub struct WrapperFunction<'a> { - input: Arc>, - wrapper: WrapperType, -} + impl ComponentFunctionImpl for MutableWrapper {} -impl<'a> WrapperFunction<'a> { - pub fn new(input: Arc>, wrapper: WrapperType) -> Self { - Self { input, wrapper } - } + impl MutableComponentFunctionImpl for MutableWrapper { + fn sample_mut(&mut self, pos: &NoisePos, _env: &E) -> f64 { + self.wrapped.sample(pos) + } - pub fn wrapped(&self) -> Arc> { - self.input.clone() - } + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.wrapped.fill(arr, applier.cast_up()); + } - pub fn wrapper(&self) -> WrapperType { - self.wrapper.clone() - } -} + fn environment(&self) -> ConverterEnvironment { + // TODO: actually test owned conversion? + unreachable!() + } -impl<'a> DensityFunctionImpl<'a> for WrapperFunction<'a> { - fn max(&self) -> f64 { - self.input.max() - } + fn into_environment(self: Box) -> OwnedConverterEnvironment { + unreachable!() + } - fn min(&self) -> f64 { - self.input.min() - } + fn convert( + self: Box, + _converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + ComponentReferenceImplementation::Mutable(MutableComponentReference(self)) + } - fn sample(&self, pos: &NoisePos) -> f64 { - self.input.sample(pos) + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + unimplemented!() + } } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::Wrapper(WrapperFunction { - input: self.input.apply(visitor), - wrapper: self.wrapper.clone(), - }))) - } + pub struct FakeEnvironment {} - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier) - } -} + impl DensityFunctionEnvironment for FakeEnvironment {} -#[derive(Clone)] -pub struct RangeFunction<'a> { - input: Arc>, - min: f64, - max: f64, - in_range: Arc>, - out_range: Arc>, -} + impl ConverterImpl for OwnedConverter { + fn convert_noise(&mut self, noise: &Arc) -> Option> { + let id = noise.parameters.id(); + let mut rand = self.splitter.split_string(id); + let sampler = DoublePerlinNoiseSampler::new(&mut rand, noise.parameters, false); -impl<'a> RangeFunction<'a> { - pub fn new( - input: Arc>, - min: f64, - max: f64, - in_range: Arc>, - out_range: Arc>, - ) -> Self { - Self { - input, - min, - max, - in_range, - out_range, + Some(Arc::new(InternalNoise::new( + noise.parameters, + Some(sampler), + ))) } - } -} -impl<'a> DensityFunctionImpl<'a> for RangeFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - let d = self.input.sample(pos); - if d >= self.min && d < self.max { - self.in_range.sample(pos) - } else { - self.out_range.sample(pos) + fn converts_post_internal( + &mut self, + _component: ConverterEnvironment, + ) -> bool { + false } - } - - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier); - densities.iter_mut().enumerate().for_each(|(i, val)| { - if *val >= self.min && *val < self.max { - *val = self.in_range.sample(&applier.at(i)); - } else { - *val = self.out_range.sample(&applier.at(i)); - } - }); - } - - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::Range(RangeFunction { - input: self.input.apply(visitor), - min: self.min, - max: self.max, - in_range: self.in_range.apply(visitor), - out_range: self.out_range.apply(visitor), - }))) - } - fn min(&self) -> f64 { - self.in_range.min().min(self.out_range.min()) - } + fn convert_env_post_internal( + &mut self, + _component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation { + unreachable!() + } - fn max(&self) -> f64 { - self.in_range.max().max(self.out_range.max()) + fn convert_env_pre_internal( + &mut self, + _component: ConverterEnvironment, + ) -> ConversionResultPre { + ConversionResultPre::Default + } } -} - -#[derive(Clone)] -pub struct YClampedFunction { - from: i32, - to: i32, - from_val: f64, - to_val: f64, -} -impl YClampedFunction { - pub fn new(from: i32, to: i32, from_val: f64, to_val: f64) -> Self { - Self { - from, - to, - from_val, - to_val, + impl SharedComponentReference { + pub fn convert_to_dyn( + self, + converter: &mut dyn ConverterImpl, + ) -> Box> { + match self.convert(converter) { + ComponentReferenceImplementation::Shared(shared) => Box::new(shared), + ComponentReferenceImplementation::Mutable(owned) => Box::new(owned), + } } } -} -impl<'a> DensityFunctionImpl<'a> for YClampedFunction { - fn sample(&self, pos: &NoisePos) -> f64 { - clamped_map( - pos.y() as f64, - self.from as f64, - self.to as f64, - self.from_val, - self.to_val, + #[test] + fn test_owned_converter() { + let test_func = NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::NETHER_WART, + None, + )), + 10f64, + 1.2f64, ) + .add( + NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::NOODLE, None)), + 0.1f64, + -1f64, + ) + .into(), + ); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let standard_convert = test_func.clone().convert(&mut converter).assert_shared(); + + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let mut owned_convert = test_func.convert_to_dyn(&mut converter); + + for i in -10..=10 { + for j in -10..=10 { + for k in -10..=10 { + let pos = + NoisePos::Unblended(UnblendedNoisePos::new(i * 100, j * 100, k * 100)); + assert_eq!( + standard_convert.sample(&pos), + owned_convert.sample_mut(&pos, &FakeEnvironment {}) + ); + } + } + } } - fn min(&self) -> f64 { - self.from_val.min(self.to_val) - } - - fn max(&self) -> f64 { - self.from_val.max(self.to_val) - } - - fn fill(&self, densities: &mut [f64], applier: &Applier) { - applier.fill(densities, &DensityFunction::ClampedY(self.clone())) - } - - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::ClampedY(self.clone()))) - } -} - -pub trait UnaryDensityFunction<'a>: DensityFunctionImpl<'a> { - fn apply_density(&self, density: f64) -> f64; -} - -pub trait OffsetDensityFunction<'a>: DensityFunctionImpl<'a> { - fn offset_noise(&self) -> &InternalNoise<'a>; - - fn sample_3d(&self, x: f64, y: f64, z: f64) -> f64 { - self.offset_noise() - .sample(x * 0.25f64, y * 0.25f64, z * 0.25f64) - * 4f64 - } -} - -pub fn lerp_density<'a>( - delta: Arc>, - start: Arc>, - end: Arc>, -) -> DensityFunction<'a> { - if let DensityFunction::Constant(function) = start.as_ref() { - lerp_density_static_start(delta, function.value, end) - } else { - let function = Arc::new(DensityFunction::Wrapper(WrapperFunction::new( - delta, - WrapperType::CacheOnce, - ))); - let function2 = Arc::new(function.mul_const(-1f64).add_const(1f64)); - start.mul(function2).add(Arc::new(end.mul(function))) - } -} - -pub fn lerp_density_static_start<'a>( - delta: Arc>, - start: f64, - end: Arc>, -) -> DensityFunction<'a> { - delta.mul(Arc::new(end.add_const(-start))).add_const(start) -} - -#[cfg(test)] -mod test { - use crate::world_gen::noise::{density::DensityFunctionImpl, BuiltInNoiseParams}; - - use super::{BuiltInNoiseFunctions, NoisePos, UnblendedNoisePos}; - #[test] - fn test_density_function_correctness() { - let noise_params = BuiltInNoiseParams::new(); - let noise_functions = BuiltInNoiseFunctions::new(&noise_params); + fn test_owned_conversion() { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 0, 0)); - let pos = NoisePos::Unblended(UnblendedNoisePos { x: 0, y: 0, z: 0 }); + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut rand2 = splitter.split_string("test"); + assert_eq!(rand2.next_i32(), 457448999); - assert_eq!(noise_functions.blend_alpha.sample(&pos), 1f64); - assert_eq!(noise_functions.blend_alpha.min(), 1f64); - assert_eq!(noise_functions.blend_alpha.max(), 1f64); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(splitter), + }; - assert_eq!(noise_functions.blend_offset.sample(&pos), 0f64); - assert_eq!(noise_functions.blend_offset.min(), 0f64); - assert_eq!(noise_functions.blend_offset.max(), 0f64); + let env = &FakeEnvironment {}; - assert_eq!(noise_functions.zero.sample(&pos), 0f64); - assert_eq!(noise_functions.zero.min(), 0f64); - assert_eq!(noise_functions.zero.max(), 0f64); + let shift_x = SHIFT_X.clone(); + assert_eq!(shift_x.sample(pos), 0f64); - assert_eq!(noise_functions.y.sample(&pos), 0f64); - assert_eq!(noise_functions.y.min(), -4064f64); - assert_eq!(noise_functions.y.max(), 4062f64); - - assert_eq!(noise_functions.shift_x.sample(&pos), 0f64); - assert_eq!(noise_functions.shift_x.min(), -8f64); - assert_eq!(noise_functions.shift_x.max(), 8f64); - - assert_eq!(noise_functions.shift_z.sample(&pos), 0f64); - assert_eq!(noise_functions.shift_z.min(), -8f64); - assert_eq!(noise_functions.shift_z.max(), 8f64); - - assert_eq!( - noise_functions.base_3d_noise_overworld.sample(&pos), - 0.05283727086562935f64 - ); - assert_eq!( - noise_functions.base_3d_noise_overworld.min(), - -87.55150000000002f64 - ); + let mut converted_shift_x = shift_x.clone().convert_to_dyn(&mut converter); assert_eq!( - noise_functions.base_3d_noise_overworld.max(), - 87.55150000000002f64 + converted_shift_x.sample_mut(pos, env), + -1.0434329952492611f64 ); - assert_eq!( - noise_functions.base_3d_noise_nether.sample(&pos), - 0.05283727086562935f64 - ); - assert_eq!( - noise_functions.base_3d_noise_nether.min(), - -258.65450000000004f64 - ); - assert_eq!( - noise_functions.base_3d_noise_nether.max(), - 258.65450000000004f64 - ); + let mut converted = ZERO.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0f64); - assert_eq!( - noise_functions.base_3d_noise_end.sample(&pos), - 0.05283727086562935f64 - ); - assert_eq!( - noise_functions.base_3d_noise_end.min(), - -173.10299999999998f64 - ); - assert_eq!( - noise_functions.base_3d_noise_end.max(), - 173.10299999999998f64 - ); + let mut converted = Y.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0f64); - assert_eq!(noise_functions.continents_overworld.sample(&pos), 0f64); - assert_eq!(noise_functions.continents_overworld.min(), -2f64); - assert_eq!(noise_functions.continents_overworld.max(), 2f64); + let mut converted = SHIFT_Z.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -1.0434329952492611f64); - assert_eq!(noise_functions.erosion_overworld.sample(&pos), 0f64); - assert_eq!(noise_functions.erosion_overworld.min(), -2f64); - assert_eq!(noise_functions.erosion_overworld.max(), 2f64); + let mut converted = BASE_3D_NOISE_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.05283727086562935f64); - assert_eq!(noise_functions.ridges_overworld.sample(&pos), 0f64); - assert_eq!(noise_functions.ridges_overworld.min(), -2f64); - assert_eq!(noise_functions.ridges_overworld.max(), 2f64); + let mut converted = BASE_3D_NOISE_NETHER.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.05283727086562935f64); - assert_eq!(noise_functions.ridges_folded_overworld.sample(&pos), -1f64); - assert_eq!( - noise_functions.ridges_folded_overworld.min(), - -3.000000000000001f64 - ); - assert_eq!(noise_functions.ridges_folded_overworld.max(), 1f64); + let mut converted = BASE_3D_NOISE_END.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.05283727086562935f64); - assert_eq!( - noise_functions.offset_overworld.sample(&pos), - -0.6037500277161598f64 - ); - assert_eq!( - noise_functions.offset_overworld.min(), - -1.3752707839012146f64 - ); - assert_eq!( - noise_functions.offset_overworld.max(), - 0.9962499737739563f64 - ); + let mut converted = CONTINENTS_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.07789864655134425f64); - assert_eq!( - noise_functions.factor_overworld.sample(&pos), - 5.549900531768799f64 - ); - assert_eq!(noise_functions.factor_overworld.min(), 0.625f64); - assert_eq!(noise_functions.factor_overworld.max(), 6.300000190734863f64); + let mut converted = EROSION_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.1909838546072366f64); - assert_eq!(noise_functions.jaggedness_overworld.sample(&pos), 0f64); - assert_eq!(noise_functions.jaggedness_overworld.min(), 0f64); - assert_eq!( - noise_functions.jaggedness_overworld.max(), - 0.6299999952316284f64 - ); - - assert_eq!( - noise_functions.depth_overworld.sample(&pos), - 0.3962499722838402f64 - ); - assert_eq!( - noise_functions.depth_overworld.min(), - -2.8752707839012146f64 - ); - assert_eq!(noise_functions.depth_overworld.max(), 2.4962499737739563f64); - - assert_eq!( - noise_functions.sloped_cheese_overworld.sample(&pos), - 8.849428998431454f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld.min(), - -109.63470657711427f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld.max(), - 182.2090019645691f64 - ); + let mut converted = RIDGES_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.18402646504201148f64); - assert_eq!( - noise_functions - .continents_overworld_large_biome - .sample(&pos), - 0f64 - ); - assert_eq!( - noise_functions.continents_overworld_large_biome.min(), - -2f64 - ); - assert_eq!(noise_functions.continents_overworld_large_biome.max(), 2f64); + let mut converted = RIDGES_FOLDED_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.4479206048739655f64); - assert_eq!( - noise_functions.erosion_overworld_large_biome.sample(&pos), - 0f64 - ); - assert_eq!(noise_functions.erosion_overworld_large_biome.min(), -2f64); - assert_eq!(noise_functions.erosion_overworld_large_biome.max(), 2f64); + let mut converted = OFFSET_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.4883981039747596f64); - assert_eq!( - noise_functions.offset_overworld_large_biome.sample(&pos), - -0.6037500277161598f64 - ); - assert_eq!( - noise_functions.offset_overworld_large_biome.min(), - -1.3752707839012146f64 - ); - assert_eq!( - noise_functions.offset_overworld_large_biome.max(), - 0.9962499737739563f64 - ); + let mut converted = FACTOR_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 5.053797245025635f64); - assert_eq!( - noise_functions.factor_overworld_large_biome.sample(&pos), - 5.549900531768799f64 - ); - assert_eq!(noise_functions.factor_overworld_large_biome.min(), 0.625f64); - assert_eq!( - noise_functions.factor_overworld_large_biome.max(), - 6.300000190734863f64 - ); - - assert_eq!( - noise_functions - .jaggedness_overworld_large_biome - .sample(&pos), - 0f64 - ); - assert_eq!(noise_functions.jaggedness_overworld_large_biome.min(), 0f64); - assert_eq!( - noise_functions.jaggedness_overworld_large_biome.max(), - 0.6299999952316284f64 - ); - - assert_eq!( - noise_functions.depth_overworld_large_biome.sample(&pos), - 0.3962499722838402f64 - ); - assert_eq!( - noise_functions.depth_overworld_large_biome.min(), - -2.8752707839012146f64 - ); - assert_eq!( - noise_functions.depth_overworld_large_biome.max(), - 2.4962499737739563f64 - ); - - assert_eq!( - noise_functions - .sloped_cheese_overworld_large_biome - .sample(&pos), - 8.849428998431454f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld_large_biome.min(), - -109.63470657711427f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld_large_biome.max(), - 182.2090019645691f64 - ); - - assert_eq!( - noise_functions.offset_overworld_amplified.sample(&pos), - -0.6037500277161598f64 - ); - assert_eq!( - noise_functions.offset_overworld_amplified.min(), - -1.3752707839012146f64 - ); - assert_eq!( - noise_functions.offset_overworld_amplified.max(), - 2.640259087085724f64 - ); + let mut converted = JAGGEDNESS_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0f64); - assert_eq!( - noise_functions.factor_overworld_amplified.sample(&pos), - 0.6516130566596985f64 - ); - assert_eq!( - noise_functions.factor_overworld_amplified.min(), - 0.13888883590698242f64 - ); - assert_eq!( - noise_functions.factor_overworld_amplified.max(), - 6.300000190734863f64 - ); + let mut converted = DEPTH_OVERWORLD.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.5116018960252404f64); - assert_eq!( - noise_functions.jaggedness_overworld_amplified.sample(&pos), - 0f64 - ); - assert_eq!(noise_functions.jaggedness_overworld_amplified.min(), 0f64); - assert_eq!( - noise_functions.jaggedness_overworld_amplified.max(), - 1.2599999904632568f64 - ); + let mut converted = SLOPED_CHEESE_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 10.394966281594634f64); - assert_eq!( - noise_functions.depth_overworld_amplified.sample(&pos), - 0.3962499722838402f64 - ); - assert_eq!( - noise_functions.depth_overworld_amplified.min(), - -2.8752707839012146f64 - ); - assert_eq!( - noise_functions.depth_overworld_amplified.max(), - 4.140259087085724f64 - ); + let mut converted = CONTINENTS_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.5413000828801735f64); - assert_eq!( - noise_functions - .sloped_cheese_overworld_amplified - .sample(&pos), - 1.085643893430405f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld_amplified.min(), - -113.6037066672365f64 - ); - assert_eq!( - noise_functions.sloped_cheese_overworld_amplified.max(), - 255.39003359528283f64 - ); + let mut converted = EROSION_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.22584626355586912f64); - assert_eq!( - noise_functions.sloped_cheese_end.sample(&pos), - 0.6153372708656294f64 - ); - assert_eq!( - noise_functions.sloped_cheese_end.min(), - -173.94674999999998f64 - ); - assert_eq!( - noise_functions.sloped_cheese_end.max(), - 173.66549999999998f64 - ); + let mut converted = OFFSET_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.3040638118982315f64); - assert_eq!( - noise_functions - .caves_spaghetti_roughness_function_overworld - .sample(&pos), - 0.020000000000000004f64 - ); - assert_eq!( - noise_functions - .caves_spaghetti_roughness_function_overworld - .min(), - -0.24000000000000005f64 - ); - assert_eq!( - noise_functions - .caves_spaghetti_roughness_function_overworld - .max(), - 0.08000000000000002f64 - ); + let mut converted = FACTOR_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 6.040968418121338f64); - assert_eq!( - noise_functions.caves_entrances_overworld.sample(&pos), - -0.056499999999999995f64 - ); - assert_eq!(noise_functions.caves_entrances_overworld.min(), -1.63f64); - // NOTE: this doesn't match java but max/min is never used anywhere so - assert_eq!(noise_functions.caves_entrances_overworld.max(), 1.08f64); + let mut converted = JAGGEDNESS_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0f64); - assert_eq!( - noise_functions.caves_noodle_overworld.sample(&pos), - -0.07500000000000001f64 - ); - assert_eq!(noise_functions.caves_noodle_overworld.min(), -0.125f64); - assert_eq!(noise_functions.caves_noodle_overworld.max(), 64f64); + let mut converted = DEPTH_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.6959361881017685f64); - assert_eq!( - noise_functions.caves_pillars_overworld.sample(&pos), - -0.16637500000000005f64 - ); - assert_eq!( - noise_functions.caves_pillars_overworld.min(), - -31.44487500000001f64 - ); - assert_eq!( - noise_functions.caves_pillars_overworld.max(), - 22.460625000000007f64 - ); + let mut converted = SLOPED_CHEESE_OVERWORLD_LARGE_BIOME + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 16.869351404267768f64); - assert_eq!( - noise_functions - .caves_spaghetti_2d_thickness_modular_overworld - .sample(&pos), - -0.95f64 - ); - assert_eq!( - noise_functions - .caves_spaghetti_2d_thickness_modular_overworld - .min(), - -1.65f64 - ); - assert_eq!( - noise_functions - .caves_spaghetti_2d_thickness_modular_overworld - .max(), - -0.2499999999999999f64 - ); + let mut converted = OFFSET_OVERWORLD_AMPLIFIED + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.47187428921461105f64); - assert_eq!( - noise_functions.caves_spaghetti_2d_overworld.sample(&pos), - -0.07885f64 - ); - assert_eq!(noise_functions.caves_spaghetti_2d_overworld.min(), -1f64); - assert_eq!(noise_functions.caves_spaghetti_2d_overworld.max(), 1f64); + let mut converted = FACTOR_OVERWORLD_AMPLIFIED + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.6070870161056519f64); + + let mut converted = JAGGEDNESS_OVERWORLD_AMPLIFIED + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0f64); + + let mut converted = DEPTH_OVERWORLD_AMPLIFIED + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.528125710785389f64); + + let mut converted = SLOPED_CHEESE_OVERWORLD_AMPLIFIED + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 1.3353103184231423f64); + + let mut converted = SLOPED_CHEESE_END.clone().convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.6153372708656294f64); + + let mut converted = CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.0022723587537428667f64); + + let mut converted = CAVES_ENTRANCES_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 0.20826666534765442f64); + + let mut converted = CAVES_NOODLE_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 64f64); + + let mut converted = CAVES_PILLARS_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.0863817754261902f64); + + let mut converted = CAVES_SPAGHETTI_2D_THICKNESS_MODULAR_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), -0.9871490512034798f64); + + let mut converted = CAVES_SPAGHETTI_2D_OVERWORLD + .clone() + .convert_to_dyn(&mut converter); + assert_eq!(converted.sample_mut(pos, env), 1f64); } } diff --git a/pumpkin-world/src/world_gen/noise/density/noise.rs b/pumpkin-world/src/world_gen/noise/density/noise.rs index 71843e58c..353273b42 100644 --- a/pumpkin-world/src/world_gen/noise/density/noise.rs +++ b/pumpkin-world/src/world_gen/noise/density/noise.rs @@ -1,30 +1,38 @@ -use std::sync::Arc; +use std::{marker::PhantomData, sync::Arc}; use pumpkin_core::random::{xoroshiro128::Xoroshiro, RandomGenerator, RandomImpl}; -use crate::world_gen::noise::{ - clamped_lerp, - perlin::{DoublePerlinNoiseParameters, DoublePerlinNoiseSampler, OctavePerlinNoiseSampler}, +use crate::{ + match_ref_implementations, + world_gen::noise::{ + clamped_lerp, + perlin::{DoublePerlinNoiseParameters, DoublePerlinNoiseSampler, OctavePerlinNoiseSampler}, + }, }; use super::{ - Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, NoisePosImpl, Visitor, - VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + OwnedConverterEnvironment, SharedComponentReference, SharedConverterEnvironment, + }, + NoisePos, NoisePosImpl, }; -pub(crate) struct InternalNoise<'a> { - data: DoublePerlinNoiseParameters<'a>, - sampler: Option, +pub(crate) struct InternalNoise { + pub(crate) parameters: &'static DoublePerlinNoiseParameters, + pub(crate) sampler: Option, } -impl<'a> InternalNoise<'a> { +impl InternalNoise { pub(crate) fn new( - data: DoublePerlinNoiseParameters<'a>, - function: Option, + parameters: &'static DoublePerlinNoiseParameters, + sampler: Option, ) -> Self { Self { - data, - sampler: function, + parameters, + sampler, } } @@ -34,24 +42,16 @@ impl<'a> InternalNoise<'a> { None => 0f64, } } - - pub(crate) fn max_value(&self) -> f64 { - match &self.sampler { - Some(sampler) => sampler.max_value(), - None => 2f64, - } - } } -#[derive(Clone)] -pub struct NoiseFunction<'a> { - pub(crate) noise: Arc>, - xz_scale: f64, - y_scale: f64, +pub struct NoiseFunction { + pub(crate) noise: Arc, + pub(crate) xz_scale: f64, + pub(crate) y_scale: f64, } -impl<'a> NoiseFunction<'a> { - pub fn new(noise: Arc>, xz_scale: f64, y_scale: f64) -> Self { +impl NoiseFunction { + pub fn new(noise: Arc, xz_scale: f64, y_scale: f64) -> Self { Self { noise, xz_scale, @@ -60,7 +60,10 @@ impl<'a> NoiseFunction<'a> { } } -impl<'a> DensityFunctionImpl<'a> for NoiseFunction<'a> { +impl ComponentFunctionImpl for NoiseFunction {} + +impl ImmutableComponentFunctionImpl for NoiseFunction { + #[inline] fn sample(&self, pos: &NoisePos) -> f64 { self.noise.sample( pos.x() as f64 * self.xz_scale, @@ -69,107 +72,245 @@ impl<'a> DensityFunctionImpl<'a> for NoiseFunction<'a> { ) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - applier.fill(densities, &DensityFunction::Noise(self.clone())) + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::Noise(self.clone()))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Noise(self) } +} - fn max(&self) -> f64 { - self.noise.max_value() - } +#[derive(Clone)] +pub(crate) struct ShiftedNoiseUntypedData { + pub(crate) xz_scale: f64, + pub(crate) y_scale: f64, +} - fn min(&self) -> f64 { - -self.max() - } +pub struct ShiftedNoiseFunction< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, +> { + pub(crate) shift_x: R1, + pub(crate) shift_y: R2, + pub(crate) shift_z: R3, + pub(crate) noise: Arc, + pub(crate) data: ShiftedNoiseUntypedData, + _dummy: PhantomData, } -#[derive(Clone)] -pub struct ShiftedNoiseFunction<'a> { - shift_x: Arc>, - shift_y: Arc>, - shift_z: Arc>, - noise: Arc>, - xz_scale: f64, - y_scale: f64, +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > From> for MutableComponentReference +{ + fn from(value: ShiftedNoiseFunction) -> Self { + Self(Box::new(value)) + } } -impl<'a> ShiftedNoiseFunction<'a> { +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > ShiftedNoiseFunction +{ pub fn new( - shift_x: Arc>, - shift_y: Arc>, - shift_z: Arc>, + shift_x: R1, + shift_y: R2, + shift_z: R3, xz_scale: f64, y_scale: f64, - noise: Arc>, + noise: Arc, ) -> Self { Self { shift_x, shift_y, shift_z, noise, - xz_scale, - y_scale, + data: ShiftedNoiseUntypedData { xz_scale, y_scale }, + _dummy: PhantomData:: {}, + } + } + + pub fn create_new_ref( + x: ComponentReferenceImplementation, + y: ComponentReferenceImplementation, + z: ComponentReferenceImplementation, + noise: Arc, + data: &ShiftedNoiseUntypedData, + ) -> ComponentReferenceImplementation { + match (x, y, z) { + ( + ComponentReferenceImplementation::Shared(shared_x), + ComponentReferenceImplementation::Shared(shared_y), + ComponentReferenceImplementation::Shared(shared_z), + ) => ShiftedNoiseFunction::< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + shared_x, + shared_y, + shared_z, + data.xz_scale, + data.y_scale, + noise, + ) + .into(), + (x, y, z) => { + match_ref_implementations!( + (ref_x, x), + (ref_y, y), + (ref_z, z); + { + ComponentReferenceImplementation::Mutable( + MutableComponentReference(Box::new( + ShiftedNoiseFunction::new( + ref_x, + ref_y, + ref_z, + data.xz_scale, + data.y_scale, + noise + ) + )) + ) + } + ) + } } } } -impl<'a> DensityFunctionImpl<'a> for ShiftedNoiseFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - let d = (pos.x() as f64).mul_add(self.xz_scale, self.shift_x.sample(pos)); - let e = (pos.y() as f64).mul_add(self.y_scale, self.shift_y.sample(pos)); - let f = (pos.z() as f64).mul_add(self.xz_scale, self.shift_z.sample(pos)); +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > ComponentFunctionImpl for ShiftedNoiseFunction +{ +} - self.noise.sample(d, e, f) +impl< + E: DensityFunctionEnvironment, + R1: ComponentReference, + R2: ComponentReference, + R3: ComponentReference, + > MutableComponentFunctionImpl for ShiftedNoiseFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let x_pos = (pos.x() as f64) * self.data.xz_scale + self.shift_x.sample_mut(pos, env); + let y_pos = (pos.y() as f64) * self.data.y_scale + self.shift_y.sample_mut(pos, env); + let z_pos = (pos.z() as f64) * self.data.xz_scale + self.shift_z.sample_mut(pos, env); + + self.noise.sample(x_pos, y_pos, z_pos) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - applier.fill(densities, &DensityFunction::ShiftedNoise(self.clone())) + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + applier.fill_mut(arr, self); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - let new_x = self.shift_x.apply(visitor); - let new_y = self.shift_y.apply(visitor); - let new_z = self.shift_z.apply(visitor); - let new_noise = visitor.apply_internal_noise(self.noise.clone()); - - Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction { - shift_x: new_x, - shift_y: new_y, - shift_z: new_z, - xz_scale: self.xz_scale, - y_scale: self.y_scale, - noise: new_noise, - })) + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::ShiftedNoise( + &self.shift_x, + &self.shift_y, + &self.shift_z, + &self.noise, + &self.data, + ) } - fn max(&self) -> f64 { - self.noise.max_value() + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::ShiftedNoise( + self.shift_x.wrapped_ref(), + self.shift_y.wrapped_ref(), + self.shift_z.wrapped_ref(), + self.noise, + self.data, + ) + } + + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.shift_x.convert(converter), + self.shift_y.convert(converter), + self.shift_z.convert(converter), + converter + .convert_noise(&self.noise) + .unwrap_or_else(|| self.noise.clone()), + &self.data, + ) } - fn min(&self) -> f64 { - -self.max() + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.shift_x.clone_to_new_ref(), + self.shift_y.clone_to_new_ref(), + self.shift_z.clone_to_new_ref(), + self.noise.clone(), + &self.data, + ) } } -#[derive(Clone)] -pub struct InterpolatedNoiseSampler { - lower: Arc, - upper: Arc, - interpolation: Arc, - xz_scale_scaled: f64, - y_scale_scaled: f64, - xz_factor: f64, - y_factor: f64, - smear_scale: f64, - max_value: f64, - xz_scale: f64, - y_scale: f64, +impl ImmutableComponentFunctionImpl + for ShiftedNoiseFunction< + E, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + > +{ + fn sample(&self, pos: &NoisePos) -> f64 { + let x_pos = (pos.x() as f64) * self.data.xz_scale + self.shift_x.sample(pos); + let y_pos = (pos.y() as f64) * self.data.y_scale + self.shift_y.sample(pos); + let z_pos = (pos.z() as f64) * self.data.xz_scale + self.shift_z.sample(pos); + + self.noise.sample(x_pos, y_pos, z_pos) + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::ShiftedNoise( + &self.shift_x, + &self.shift_y, + &self.shift_z, + &self.noise, + &self.data, + ) + } +} + +pub struct InterpolatedNoiseFunction { + pub(crate) lower: Arc, + pub(crate) upper: Arc, + pub(crate) interpolation: Arc, + pub(crate) xz_scale_scaled: f64, + pub(crate) y_scale_scaled: f64, + pub(crate) xz_factor: f64, + pub(crate) y_factor: f64, + pub(crate) smear_scale: f64, + pub(crate) xz_scale: f64, + pub(crate) y_scale: f64, } -impl InterpolatedNoiseSampler { +impl InterpolatedNoiseFunction { fn create_from_random( rand: &mut RandomGenerator, xz_scale: f64, @@ -178,6 +319,7 @@ impl InterpolatedNoiseSampler { y_factor: f64, smear_scale: f64, ) -> Self { + // TODO: This can be const let (start_1, amplitudes_1) = OctavePerlinNoiseSampler::calculate_amplitudes(&(-15..=0).collect::>()); @@ -185,9 +327,9 @@ impl InterpolatedNoiseSampler { OctavePerlinNoiseSampler::calculate_amplitudes(&(-7..=0).collect::>()); Self::new( - OctavePerlinNoiseSampler::new(rand, start_1, &litudes_1), - OctavePerlinNoiseSampler::new(rand, start_1, &litudes_1), - OctavePerlinNoiseSampler::new(rand, start_2, &litudes_2), + OctavePerlinNoiseSampler::new(rand, start_1, &litudes_1, true), + OctavePerlinNoiseSampler::new(rand, start_1, &litudes_1, true), + OctavePerlinNoiseSampler::new(rand, start_2, &litudes_2, true), xz_scale, y_scale, xz_factor, @@ -214,7 +356,7 @@ impl InterpolatedNoiseSampler { y_factor: f64, smear_scale: f64, ) -> Self { - let mut rand = RandomGenerator::LegacyXoroshiro(Xoroshiro::from_seed(0)); + let mut rand = RandomGenerator::Xoroshiro(Xoroshiro::from_seed(0)); Self::create_from_random( &mut rand, xz_scale, @@ -237,11 +379,6 @@ impl InterpolatedNoiseSampler { smear_scale: f64, ) -> Self { let y_scale_scaled = 684.412f64 * y_scale; - let max_value = OctavePerlinNoiseSampler::get_total_amplitude( - y_scale_scaled + 2f64, - lower.persistence, - &lower.amplitudes, - ); Self { lower: Arc::new(lower), upper: Arc::new(upper), @@ -253,12 +390,13 @@ impl InterpolatedNoiseSampler { smear_scale, y_scale_scaled, xz_scale_scaled: 684.412f64 * xz_scale, - max_value, } } } -impl<'a> DensityFunctionImpl<'a> for InterpolatedNoiseSampler { +impl ComponentFunctionImpl for InterpolatedNoiseFunction {} + +impl ImmutableComponentFunctionImpl for InterpolatedNoiseFunction { fn sample(&self, pos: &NoisePos) -> f64 { let d = pos.x() as f64 * self.xz_scale_scaled; let e = pos.y() as f64 * self.y_scale_scaled; @@ -322,19 +460,12 @@ impl<'a> DensityFunctionImpl<'a> for InterpolatedNoiseSampler { clamped_lerp(l / 512f64, m / 512f64, q) / 128f64 } - fn max(&self) -> f64 { - self.max_value - } - - fn min(&self) -> f64 { - -self.max() - } - - fn fill(&self, densities: &mut [f64], applier: &Applier) { - applier.fill(densities, &DensityFunction::InterpolatedNoise(self.clone())) + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::InterpolatedNoise(self.clone()))) + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::InterpolatedNoise(self) } } diff --git a/pumpkin-world/src/world_gen/noise/density/offset.rs b/pumpkin-world/src/world_gen/noise/density/offset.rs index 49be5872f..e9b8cd42a 100644 --- a/pumpkin-world/src/world_gen/noise/density/offset.rs +++ b/pumpkin-world/src/world_gen/noise/density/offset.rs @@ -1,88 +1,71 @@ use std::sync::Arc; use super::{ - noise::InternalNoise, Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, - NoisePosImpl, OffsetDensityFunction, Visitor, VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ImmutableComponentFunctionImpl, + SharedConverterEnvironment, + }, + noise::InternalNoise, + NoisePos, NoisePosImpl, }; -#[derive(Clone)] -pub struct ShiftAFunction<'a> { - offset: Arc>, +#[inline] +fn sample_3d(noise: &InternalNoise, x: f64, y: f64, z: f64) -> f64 { + noise.sample(x * 0.25f64, y * 0.25f64, z * 0.25f64) * 4f64 } -impl<'a> ShiftAFunction<'a> { - pub fn new(offset: Arc>) -> Self { - Self { offset } - } +pub struct ShiftAFunction { + pub(crate) offset: Arc, } -impl<'a> OffsetDensityFunction<'a> for ShiftAFunction<'a> { - fn offset_noise(&self) -> &InternalNoise<'a> { - &self.offset +impl ShiftAFunction { + pub fn new(offset: Arc) -> Self { + Self { offset } } } -impl<'a> DensityFunctionImpl<'a> for ShiftAFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - self.sample_3d(pos.x() as f64, 0f64, pos.z() as f64) - } - - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::ShiftA(ShiftAFunction { - offset: visitor.apply_internal_noise(self.offset.clone()), - }))) - } +impl ComponentFunctionImpl for ShiftAFunction {} - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - applier.fill(densities, &DensityFunction::ShiftA(self.clone())) +impl ImmutableComponentFunctionImpl for ShiftAFunction { + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + sample_3d(&self.offset, pos.x() as f64, 0f64, pos.z() as f64) } - fn max(&self) -> f64 { - self.offset_noise().max_value() * 4f64 + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); } - fn min(&self) -> f64 { - -self.max() + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::ShiftA(&self.offset) } } -#[derive(Clone)] -pub struct ShiftBFunction<'a> { - offset: Arc>, +pub struct ShiftBFunction { + pub(crate) offset: Arc, } -impl<'a> ShiftBFunction<'a> { - pub fn new(offset: Arc>) -> Self { +impl ShiftBFunction { + pub fn new(offset: Arc) -> Self { Self { offset } } } -impl<'a> OffsetDensityFunction<'a> for ShiftBFunction<'a> { - fn offset_noise(&self) -> &InternalNoise<'a> { - &self.offset - } -} +impl ComponentFunctionImpl for ShiftBFunction {} -impl<'a> DensityFunctionImpl<'a> for ShiftBFunction<'a> { +impl ImmutableComponentFunctionImpl for ShiftBFunction { + #[inline] fn sample(&self, pos: &NoisePos) -> f64 { - self.sample_3d(pos.z() as f64, pos.x() as f64, 0f64) - } - - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::ShiftB(ShiftBFunction { - offset: visitor.apply_internal_noise(self.offset.clone()), - }))) - } - - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - applier.fill(densities, &DensityFunction::ShiftB(self.clone())) + sample_3d(&self.offset, pos.z() as f64, pos.x() as f64, 0f64) } - fn max(&self) -> f64 { - self.offset_noise().max_value() * 4f64 + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); } - fn min(&self) -> f64 { - -self.max() + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::ShiftB(&self.offset) } } diff --git a/pumpkin-world/src/world_gen/noise/density/spline.rs b/pumpkin-world/src/world_gen/noise/density/spline.rs index aebffcfae..9f4698188 100644 --- a/pumpkin-world/src/world_gen/noise/density/spline.rs +++ b/pumpkin-world/src/world_gen/noise/density/spline.rs @@ -1,59 +1,220 @@ -use std::sync::Arc; +use std::{marker::PhantomData, sync::Arc}; + +use enum_dispatch::enum_dispatch; +use itertools::Itertools; use crate::world_gen::noise::lerp; use super::{ - Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, Visitor, VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + OwnedConverterEnvironment, SharedComponentReference, SharedConverterEnvironment, + }, + NoisePos, }; -pub enum SplineValue<'a> { - Spline(Spline<'a>), +//TODO : De-duplicate code with traits and generics + +#[derive(Clone)] +pub enum ImmutableValue { + Spline(ImmutableSplineRef), Fixed(f32), } -impl<'a> SplineValue<'a> { - fn max(&self) -> f32 { +impl ImmutableValue { + fn sample(&self, pos: &NoisePos) -> f32 { match self { - Self::Fixed(value) => *value, - Self::Spline(spline) => spline.max, + Self::Fixed(val) => *val, + Self::Spline(spline) => spline.0.sample(pos), } } +} - fn min(&self) -> f32 { - match self { - Self::Fixed(value) => *value, - Self::Spline(spline) => spline.min, +#[enum_dispatch(SplinePointImpl)] +pub(crate) enum SplinePoint { + Mutable(MutablePoint), + Immutable(ImmutablePoint), +} + +#[enum_dispatch] +trait SplinePointImpl { + fn sample_outside_range_mut(&mut self, oob_loc: f32, pos: &NoisePos, env: &E) -> f32; + + fn sampled_value_mut(&mut self, pos: &NoisePos, env: &E) -> f32; + + fn location(&self) -> f32; + + fn derivative(&self) -> f32; + + fn convert(self, converter: &mut dyn ConverterImpl) -> SplinePoint; + + fn clone_to_new_point(&self) -> SplinePoint; +} + +#[derive(Clone)] +pub struct ImmutablePoint { + pub(crate) location: f32, + pub(crate) value: ImmutableValue, + pub(crate) derivative: f32, +} + +impl ImmutablePoint { + fn sample_outside_range(&self, oob_loc: f32, pos: &NoisePos) -> f32 { + let oob_value = self.value.sample(pos); + if self.derivative == 0f32 { + oob_value + } else { + self.derivative * (oob_loc - self.location) + oob_value } } - fn apply(&self, pos: &NoisePos) -> f32 { - match self { - Self::Fixed(value) => *value, - Self::Spline(spline) => spline.apply(pos), + fn maybe_convert( + &self, + converter: &mut dyn ConverterImpl, + ) -> Option> { + match &self.value { + ImmutableValue::Fixed(_value) => None, + ImmutableValue::Spline(spline_ref) => { + spline_ref + .maybe_convert(converter) + .map(|converted_ref| match converted_ref { + SplineRef::Immutable(spline) => SplinePoint::Immutable(ImmutablePoint { + location: self.location, + value: ImmutableValue::Spline(spline), + derivative: self.derivative, + }), + SplineRef::Mutable(spline) => SplinePoint::Mutable(MutablePoint { + location: self.location, + value: spline, + derivative: self.derivative, + }), + }) + } } } +} - fn visit(&self, visitor: &Visitor<'a>) -> SplineValue<'a> { - match self { - Self::Fixed(val) => Self::Fixed(*val), - Self::Spline(spline) => Self::Spline(spline.visit(visitor)), - } +impl SplinePointImpl for ImmutablePoint { + #[inline] + fn sample_outside_range_mut(&mut self, oob_loc: f32, pos: &NoisePos, _env: &E) -> f32 { + self.sample_outside_range(oob_loc, pos) + } + + #[inline] + fn sampled_value_mut(&mut self, pos: &NoisePos, _env: &E) -> f32 { + self.value.sample(pos) + } + + #[inline] + fn location(&self) -> f32 { + self.location + } + + #[inline] + fn derivative(&self) -> f32 { + self.derivative + } + + fn convert(self, converter: &mut dyn ConverterImpl) -> SplinePoint { + self.maybe_convert(converter) + .unwrap_or_else(|| match self.value { + ImmutableValue::Fixed(value) => SplinePoint::Immutable(ImmutablePoint { + location: self.location, + value: ImmutableValue::Fixed(value), + derivative: self.derivative, + }), + ImmutableValue::Spline(spline) => SplinePoint::Immutable(ImmutablePoint { + location: self.location, + value: ImmutableValue::Spline(spline), + derivative: self.derivative, + }), + }) + } + + fn clone_to_new_point(&self) -> SplinePoint { + SplinePoint::Immutable(self.clone()) } } -#[derive(Clone)] -pub(crate) struct SplinePoint<'a> { - location: f32, - value: Arc>, - derivative: f32, +pub struct MutablePoint { + pub(crate) location: f32, + pub(crate) value: MutableSplineRef, + pub(crate) derivative: f32, } -#[derive(Clone)] -pub struct Spline<'a> { - function: Arc>, - points: Vec>, - min: f32, - max: f32, +impl SplinePointImpl for MutablePoint { + fn sample_outside_range_mut(&mut self, oob_loc: f32, pos: &NoisePos, env: &E) -> f32 { + let oob_value = self.value.sample_mut(pos, env); + if self.derivative == 0f32 { + oob_value + } else { + self.derivative * (oob_loc - self.location) + oob_value + } + } + + #[inline] + fn sampled_value_mut(&mut self, pos: &NoisePos, env: &E) -> f32 { + self.value.sample_mut(pos, env) + } + + #[inline] + fn derivative(&self) -> f32 { + self.derivative + } + + #[inline] + fn location(&self) -> f32 { + self.location + } + + fn convert(self, converter: &mut dyn ConverterImpl) -> SplinePoint { + match self.value.convert(converter) { + SplineRef::Immutable(spline) => SplinePoint::Immutable(ImmutablePoint { + location: self.location, + value: ImmutableValue::Spline(spline), + derivative: self.derivative, + }), + SplineRef::Mutable(spline) => SplinePoint::Mutable(MutablePoint { + location: self.location, + value: spline, + derivative: self.derivative, + }), + } + } + + fn clone_to_new_point(&self) -> SplinePoint { + match self.value.clone_to_new_ref() { + SplineRef::Immutable(spline) => SplinePoint::Immutable(ImmutablePoint { + location: self.location, + value: ImmutableValue::Spline(spline), + derivative: self.derivative, + }), + SplineRef::Mutable(spline) => SplinePoint::Mutable(MutablePoint { + location: self.location, + value: spline, + derivative: self.derivative, + }), + } + } +} + +/// Returns the smallest usize between min..max that does not match the predicate +fn binary_walk(min: usize, max: usize, pred: impl Fn(usize) -> bool) -> usize { + let mut i = max - min; + let mut min = min; + while i > 0 { + let j = i / 2; + let k = min + j; + if pred(k) { + i = j; + } else { + min = k + 1; + i -= j + 1; + } + } + min } enum Range { @@ -61,34 +222,22 @@ enum Range { Below, } -impl<'a> Spline<'a> { - fn sample_outside_range(point: f32, value: f32, points: &[SplinePoint], i: usize) -> f32 { - let f = points[i].derivative; - if f == 0f32 { - value - } else { - f.mul_add(point - points[i].location, value) - } - } +pub struct ImmutableSpline { + pub(crate) function: SharedComponentReference, + pub(crate) points: Box<[ImmutablePoint]>, +} - fn binary_walk(min: usize, max: usize, pred: impl Fn(usize) -> bool) -> usize { - let mut i = max - min; - let mut min = min; - while i > 0 { - let j = i / 2; - let k = min + j; - if pred(k) { - i = j; - } else { - min = k + 1; - i -= j + 1; - } - } - min +impl From for ImmutableSplineRef { + fn from(value: ImmutableSpline) -> Self { + Self(Arc::new(value)) } +} - fn find_range_for_location(points: &[SplinePoint], x: f32) -> Range { - let index_greater_than_x = Self::binary_walk(0, points.len(), |i| x < points[i].location); +impl ImmutableSpline { + // TODO: Is there a way to do this on the slice itself? + fn find_index_for_location(&self, loc: f32) -> Range { + let index_greater_than_x = + binary_walk(0, self.points.len(), |i| loc < self.points[i].location); if index_greater_than_x == 0 { Range::Below } else { @@ -96,165 +245,409 @@ impl<'a> Spline<'a> { } } - pub fn new(function: Arc>, points: &[SplinePoint<'a>]) -> Self { - let i = points.len() - 1; - let mut f = f32::INFINITY; - let mut g = f32::NEG_INFINITY; + pub fn sample(&self, pos: &NoisePos) -> f32 { + let location = self.function.sample(pos) as f32; + match self.find_index_for_location(location) { + Range::In(index) => { + if index == self.points.len() - 1 { + self.points[index].sample_outside_range(location, pos) + } else { + let lower_point = &self.points[index]; + let upper_point = &self.points[index + 1]; - let h = function.min() as f32; - let j = function.max() as f32; + let lower_value = lower_point.value.sample(pos); + let upper_value = upper_point.value.sample(pos); - if h < points[0].location { - let k = Self::sample_outside_range(h, points[0].value.min(), points, 0); - let l = Self::sample_outside_range(h, points[0].value.max(), points, 0); + let x_scale = (location - lower_point.location) + / (upper_point.location - lower_point.location); + let extrapolated_lower_value = lower_point.derivative + * (upper_point.location - lower_point.location) + - (upper_value - lower_value); + let extrapolated_upper_value = -upper_point.derivative + * (upper_point.location - lower_point.location) + + (upper_value - lower_value); - f = f.min(k.min(l)); - g = f.max(k.max(l)); + (x_scale * (1f32 - x_scale)) + * lerp(x_scale, extrapolated_lower_value, extrapolated_upper_value) + + lerp(x_scale, lower_value, upper_value) + } + } + Range::Below => self.points[0].sample_outside_range(location, pos), } + } +} - if j > points[i].location { - let k = Self::sample_outside_range(j, points[i].value.min(), points, i); - let l = Self::sample_outside_range(j, points[i].value.max(), points, i); +pub trait MutableSplineImpl: Send + Sync { + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f32; - f = f.min(k.min(l)); - g = g.max(k.max(l)); - } + fn convert(self: Box, converter: &mut dyn ConverterImpl) -> SplineRef; - for point in points { - f = f.min(point.value.min()); - g = g.max(point.value.max()); - } + fn clone_to_new_ref(&self) -> SplineRef; +} - for m in 0..i { - let l = points[m].location; - let n = points[m + 1].location; - let o = n - l; - - let spline2 = &points[m].value; - let spline3 = &points[m + 1].value; - - let p = spline2.min(); - let q = spline2.max(); - let r = spline3.min(); - let s = spline3.max(); - let t = points[m].derivative; - let u = points[m + 1].derivative; - - if t != 0f32 || u != 0f32 { - let v = t * o; - let w = u * o; - - let x = p.min(r); - let y = q.max(s); - - let z = v - s + p; - let aa = v - r + q; - let ab = -w + r - q; - let ac = -w + s - p; - let ad = z.min(ab); - let ae = aa.max(ac); - - f = f.min(0.25f32.mul_add(ad, x)); - g = g.max(0.25f32.mul_add(ae, y)); - } - } +pub struct MutableSpline> { + pub(crate) function: R, + pub(crate) points: Box<[SplinePoint]>, + _dummy: PhantomData, +} - Self { - function, - points: points.to_vec(), - min: f, - max: g, +impl> MutableSpline { + fn create_new_spline( + converted_base: ComponentReferenceImplementation, + converted_points: Vec>, + ) -> SplineRef { + match converted_base { + ComponentReferenceImplementation::Shared(shared) => { + if converted_points + .iter() + .all(|point| matches!(point, SplinePoint::Immutable(_))) + { + let immutable_points = converted_points + .into_iter() + .map(|point| match point { + SplinePoint::Immutable(point) => point, + _ => unreachable!(), + }) + .collect_vec(); + SplineRef::Immutable( + ImmutableSpline { + function: shared, + points: immutable_points.into_boxed_slice(), + } + .into(), + ) + } else { + SplineRef::Mutable( + MutableSpline { + function: shared, + points: converted_points.into_boxed_slice(), + _dummy: PhantomData:: {}, + } + .into(), + ) + } + } + ComponentReferenceImplementation::Mutable(owned) => SplineRef::Mutable( + MutableSpline { + function: owned, + points: converted_points.into_boxed_slice(), + _dummy: PhantomData:: {}, + } + .into(), + ), } } +} - pub fn apply(&self, pos: &NoisePos) -> f32 { - let f = self.function.sample(pos) as f32; - let i = Self::find_range_for_location(&self.points, f); +impl> From> + for MutableSplineRef +{ + fn from(value: MutableSpline) -> Self { + Self(Box::new(value)) + } +} - match i { +impl> MutableSplineImpl + for MutableSpline +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f32 { + let location = self.function.sample_mut(pos, env) as f32; + match self.find_index_for_location(location) { Range::In(index) => { - let last_index = self.points.len() - 1; - if index == last_index { - Self::sample_outside_range( - f, - self.points[last_index].value.apply(pos), - &self.points, - last_index, - ) + if index == self.points.len() - 1 { + self.points[index].sample_outside_range_mut(location, pos, env) } else { - let point_1 = &self.points[index]; - let point_2 = &self.points[index + 1]; - let k = (f - point_1.location) / (point_2.location - point_1.location); - - let n = point_1.value.apply(pos); - let o = point_2.value.apply(pos); - - let p = point_1 - .derivative - .mul_add(point_2.location - point_1.location, -(o - n)); - let q = - (-point_2.derivative).mul_add(point_2.location - point_1.location, o - n); - (k * (1f32 - k)).mul_add(lerp(k, p, q), lerp(k, n, o)) + let lower_value = self.points[index].sampled_value_mut(pos, env); + let upper_value = self.points[index + 1].sampled_value_mut(pos, env); + + let lower_point = &self.points[index]; + let upper_point = &self.points[index + 1]; + + let x_scale = (location - lower_point.location()) + / (upper_point.location() - lower_point.location()); + let extrapolated_lower_value = lower_point.derivative() + * (upper_point.location() - lower_point.location()) + - (upper_value - lower_value); + let extrapolated_upper_value = -upper_point.derivative() + * (upper_point.location() - lower_point.location()) + + (upper_value - lower_value); + + (x_scale * (1f32 - x_scale)) + * lerp(x_scale, extrapolated_lower_value, extrapolated_upper_value) + + lerp(x_scale, lower_value, upper_value) } } - Range::Below => { - Self::sample_outside_range(f, self.points[0].value.apply(pos), &self.points, 0) - } + Range::Below => self.points[0].sample_outside_range_mut(location, pos, env), } } - pub fn visit(&self, visitor: &Visitor<'a>) -> Spline<'a> { - let new_function = visitor.apply(self.function.clone()); - let new_points = self + fn convert(self: Box, converter: &mut dyn ConverterImpl) -> SplineRef { + let converted_base = self.function.convert(converter); + let points = self.points.into_vec(); + let converted_points = points + .into_iter() + .map(|point| point.convert(converter)) + .collect_vec(); + + Self::create_new_spline(converted_base, converted_points) + } + + fn clone_to_new_ref(&self) -> SplineRef { + let cloned_function = self.function.clone_to_new_ref(); + let cloned_points = self .points .iter() - .map(|point| SplinePoint { - location: point.location, - derivative: point.derivative, - value: Arc::new(point.value.visit(visitor)), + .map(|point| point.clone_to_new_point()) + .collect_vec(); + + Self::create_new_spline(cloned_function, cloned_points) + } +} + +impl> MutableSpline { + fn find_index_for_location(&self, loc: f32) -> Range { + let index_greater_than_x = + binary_walk(0, self.points.len(), |i| loc < self.points[i].location()); + if index_greater_than_x == 0 { + Range::Below + } else { + Range::In(index_greater_than_x - 1) + } + } +} + +pub(crate) enum SplineRef { + Immutable(ImmutableSplineRef), + Mutable(MutableSplineRef), +} + +pub(crate) trait SplineRefImpl: Send + Sync { + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f32; + + fn convert(self, converter: &mut dyn ConverterImpl) -> SplineRef; + + fn clone_to_new_ref(&self) -> SplineRef; + + fn into_ref(self) -> SplineRef; +} + +pub(crate) struct MutableSplineRef(Box>); + +impl SplineRefImpl for MutableSplineRef { + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f32 { + self.0.sample_mut(pos, env) + } + + #[inline] + fn convert(self, converter: &mut dyn ConverterImpl) -> SplineRef { + self.0.convert(converter) + } + + fn clone_to_new_ref(&self) -> SplineRef { + self.0.clone_to_new_ref() + } + + fn into_ref(self) -> SplineRef { + SplineRef::Mutable(self) + } +} + +#[derive(Clone)] +pub(crate) struct ImmutableSplineRef(Arc); + +impl ImmutableSplineRef { + pub fn maybe_convert( + &self, + converter: &mut dyn ConverterImpl, + ) -> Option> { + let converted_base = self.0.function.maybe_convert(converter); + let maybe_converted_points = self + .0 + .points + .iter() + .map(|point| point.maybe_convert(converter)) + .collect_vec(); + + if converted_base.is_none() && maybe_converted_points.iter().all(|point| point.is_none()) { + None + } else { + let converted_base = converted_base.unwrap_or_else(|| self.0.function.clone().into()); + let converted_points = maybe_converted_points + .into_iter() + .enumerate() + .map(|(index, point)| { + if let Some(point) = point { + point + } else { + self.0.points[index].clone().into() + } + }) + .collect_vec(); + + Some(match converted_base { + ComponentReferenceImplementation::Shared(shared) => { + if converted_points + .iter() + .all(|point| matches!(point, SplinePoint::Immutable(_))) + { + let immutable_points = converted_points + .into_iter() + .map(|point| match point { + SplinePoint::Immutable(point) => point, + _ => unreachable!(), + }) + .collect_vec(); + SplineRef::Immutable( + ImmutableSpline { + function: shared, + points: immutable_points.into_boxed_slice(), + } + .into(), + ) + } else { + SplineRef::Mutable( + MutableSpline { + function: shared, + points: converted_points.into_boxed_slice(), + _dummy: PhantomData:: {}, + } + .into(), + ) + } + } + ComponentReferenceImplementation::Mutable(owned) => SplineRef::Mutable( + MutableSpline { + function: owned, + points: converted_points.into_boxed_slice(), + _dummy: PhantomData:: {}, + } + .into(), + ), }) - .collect::>(); - Self::new(new_function, &new_points) + } + } +} + +impl SplineRefImpl for ImmutableSplineRef { + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, _env: &E) -> f32 { + self.0.sample(pos) + } + + fn convert(self, converter: &mut dyn ConverterImpl) -> SplineRef { + self.maybe_convert(converter) + .unwrap_or_else(|| SplineRef::Immutable(self.clone())) + } + + fn clone_to_new_ref(&self) -> SplineRef { + SplineRef::Immutable(self.clone()) + } + + fn into_ref(self) -> SplineRef { + SplineRef::Immutable(self) } } #[derive(Clone)] -pub struct SplineFunction<'a> { - spline: Arc>, +pub struct SplineFunction> { + pub(crate) spline: S, + _dummy: PhantomData, } -impl<'a> SplineFunction<'a> { - pub fn new(spline: Arc>) -> Self { - Self { spline } +impl> SplineFunction { + pub fn new(spline: S) -> Self { + Self { + spline, + _dummy: PhantomData:: {}, + } + } + + pub fn create_new_ref(spline: SplineRef) -> ComponentReferenceImplementation { + match spline { + SplineRef::Mutable(mutable_spline) => ComponentReferenceImplementation::Mutable( + SplineFunction { + spline: mutable_spline, + _dummy: PhantomData:: {}, + } + .into(), + ), + SplineRef::Immutable(immutable_spline) => ComponentReferenceImplementation::Shared( + SplineFunction:: { + spline: immutable_spline, + _dummy: PhantomData:: {}, + } + .into(), + ), + } } } -impl<'a> DensityFunctionImpl<'a> for SplineFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - self.spline.apply(pos) as f64 +impl + 'static> From> + for MutableComponentReference +{ + fn from(value: SplineFunction) -> Self { + Self(Box::new(value)) } +} - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - applier.fill(densities, &DensityFunction::Spline(self.clone())) +impl> ComponentFunctionImpl + for SplineFunction +{ +} + +impl> MutableComponentFunctionImpl + for SplineFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + self.spline.sample_mut(pos, env) as f64 } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - let new_spline = self.spline.visit(visitor); - Arc::new(DensityFunction::Spline(SplineFunction { - spline: Arc::new(new_spline), - })) + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + applier.fill_mut(arr, self); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Spline(&self.spline) } - fn max(&self) -> f64 { - self.spline.max as f64 + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Spline(self.spline.into_ref()) } - fn min(&self) -> f64 { - self.spline.min as f64 + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.spline.convert(converter)) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.spline.clone_to_new_ref()) } } -#[derive(Clone)] +impl ImmutableComponentFunctionImpl + for SplineFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + self.spline.0.sample(pos) as f64 + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + applier.fill(arr, self); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Spline(&self.spline) + } +} + +#[derive(Clone, Copy)] pub enum FloatAmplifier { Identity, OffsetAmplifier, @@ -279,14 +672,15 @@ impl FloatAmplifier { } } } -pub struct SplineBuilder<'a> { - function: Arc>, + +pub struct SplineBuilder { + function: SharedComponentReference, amplifier: FloatAmplifier, - points: Vec>, + points: Vec, } -impl<'a> SplineBuilder<'a> { - pub fn new(function: Arc>, amplifier: FloatAmplifier) -> Self { +impl SplineBuilder { + pub fn new(function: SharedComponentReference, amplifier: FloatAmplifier) -> Self { Self { function, amplifier, @@ -295,68 +689,1010 @@ impl<'a> SplineBuilder<'a> { } #[must_use] - pub fn add_value(&mut self, location: f32, value: f32, derivative: f32) -> &mut Self { - self.add_spline( - location, - SplineValue::Fixed(self.amplifier.apply(value)), - derivative, - ) + #[inline] + pub fn add_fixed_value(self, location: f32, value: f32) -> Self { + self.add_fixed_value_derivative(location, value, 0f32) } #[must_use] - pub fn add_spline( - &mut self, + pub fn add_fixed_value_derivative(self, location: f32, value: f32, derivative: f32) -> Self { + let amplified = self.amplifier.apply(value); + self.add_value(location, ImmutableValue::Fixed(amplified), derivative) + } + + #[must_use] + #[inline] + pub fn add_spline_value(self, location: f32, value: ImmutableSplineRef) -> Self { + self.add_spline_value_derivative(location, value, 0f32) + } + + #[must_use] + pub fn add_spline_value_derivative( + self, location: f32, - value: SplineValue<'a>, + value: ImmutableSplineRef, derivative: f32, - ) -> &mut Self { + ) -> Self { + self.add_value(location, ImmutableValue::Spline(value), derivative) + } + + #[must_use] + pub fn add_value(mut self, location: f32, value: ImmutableValue, derivative: f32) -> Self { + #[cfg(debug_assertions)] if let Some(last) = self.points.last() { - if location <= last.location { - panic!("Points must be in asscending order"); - } + assert!(location > last.location); } - self.points.push(SplinePoint { + self.points.push(ImmutablePoint { location, - value: Arc::new(value), + value, derivative, }); self } - pub fn build(&self) -> Spline<'a> { - Spline::new(self.function.clone(), &self.points) + pub fn build(self) -> ImmutableSpline { + ImmutableSpline { + function: self.function, + points: self.points.into_boxed_slice(), + } } } #[cfg(test)] mod test { - use crate::world_gen::noise::{ - density::{BuiltInNoiseFunctions, NoisePos, UnblendedNoisePos}, - BuiltInNoiseParams, + use pumpkin_core::random::{legacy_rand::LegacyRand, RandomDeriver, RandomImpl}; + + use crate::world_gen::noise::density::{ + built_in_density_function::CONTINENTS_OVERWORLD, + component_functions::{ComponentReference, NoEnvironment, SharedComponentReference}, + test::{FakeEnvironment, OwnedConverter, TestConverter}, + NoisePos, UnblendedNoisePos, }; - use super::{FloatAmplifier, SplineBuilder}; + use super::{FloatAmplifier, ImmutableSplineRef, SplineBuilder, SplineFunction}; #[test] fn test_correctness() { - let noise_params = BuiltInNoiseParams::new(); - let noise_functions = BuiltInNoiseFunctions::new(&noise_params); - let pos = NoisePos::Unblended(UnblendedNoisePos { x: 0, y: 0, z: 0 }); + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; let spline = SplineBuilder::new( - noise_functions.continents_overworld, + CONTINENTS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), FloatAmplifier::Identity, ) - .add_value(-1.1f32, 0.044f32, 0f32) - .add_value(-1.02f32, -0.2222f32, 0f32) - .add_value(-0.51f32, -0.2222f32, 0f32) - .add_value(-0.44f32, -0.12f32, 0f32) - .add_value(-0.18f32, -0.12f32, 0f32) + .add_fixed_value_derivative(-1.1f32, 0.044f32, -0.1f32) + .add_fixed_value(-1.02f32, -0.2222f32) + .add_fixed_value_derivative(-0.51f32, -0.2222f32, 0.1f32) + .add_fixed_value(-0.44f32, -0.12f32) + .add_fixed_value_derivative(-0.18f32, -0.12f32, 0.1f32) .build(); - assert_eq!(spline.apply(&pos), -0.12f32); + let values = [ + ((-100, -100), -0.07604788f32), + ((-100, -90), -0.07773465f32), + ((-100, -80), -0.07928875f32), + ((-100, -70), -0.08118123f32), + ((-100, -60), -0.08313452f32), + ((-100, -50), -0.083534524f32), + ((-100, -40), -0.086245626f32), + ((-100, -30), -0.08444518f32), + ((-100, -20), -0.08520311f32), + ((-100, -10), -0.08629203f32), + ((-100, 0), -0.08723046f32), + ((-100, 10), -0.0888218f32), + ((-100, 20), -0.09126012f32), + ((-100, 30), -0.092776805f32), + ((-100, 40), -0.09374735f32), + ((-100, 50), -0.09605039f32), + ((-100, 60), -0.09593062f32), + ((-100, 70), -0.09638955f32), + ((-100, 80), -0.09660137f32), + ((-100, 90), -0.09732263f32), + ((-100, 100), -0.09875606f32), + ((-90, -100), -0.07605396f32), + ((-90, -90), -0.07945493f32), + ((-90, -80), -0.08126007f32), + ((-90, -70), -0.0827491f32), + ((-90, -60), -0.084900096f32), + ((-90, -50), -0.087383136f32), + ((-90, -40), -0.08763948f32), + ((-90, -30), -0.08750856f32), + ((-90, -20), -0.08923715f32), + ((-90, -10), -0.08950907f32), + ((-90, 0), -0.08966042f32), + ((-90, 10), -0.091661744f32), + ((-90, 20), -0.09423652f32), + ((-90, 30), -0.09460543f32), + ((-90, 40), -0.09597071f32), + ((-90, 50), -0.09838261f32), + ((-90, 60), -0.09757312f32), + ((-90, 70), -0.09852694f32), + ((-90, 80), -0.09875368f32), + ((-90, 90), -0.10035795f32), + ((-90, 100), -0.099384755f32), + ((-80, -100), -0.07845141f32), + ((-80, -90), -0.0802805f32), + ((-80, -80), -0.08364986f32), + ((-80, -70), -0.085202575f32), + ((-80, -60), -0.0893721f32), + ((-80, -50), -0.09021371f32), + ((-80, -40), -0.088948175f32), + ((-80, -30), -0.09102255f32), + ((-80, -20), -0.09252357f32), + ((-80, -10), -0.092946626f32), + ((-80, 0), -0.0917982f32), + ((-80, 10), -0.09275723f32), + ((-80, 20), -0.09508084f32), + ((-80, 30), -0.09741648f32), + ((-80, 40), -0.09864242f32), + ((-80, 50), -0.1010126f32), + ((-80, 60), -0.10251929f32), + ((-80, 70), -0.10301858f32), + ((-80, 80), -0.10152783f32), + ((-80, 90), -0.1018514f32), + ((-80, 100), -0.101050965f32), + ((-70, -100), -0.08047484f32), + ((-70, -90), -0.0827865f32), + ((-70, -80), -0.08533125f32), + ((-70, -70), -0.087316774f32), + ((-70, -60), -0.08924434f32), + ((-70, -50), -0.09139694f32), + ((-70, -40), -0.092277184f32), + ((-70, -30), -0.09338808f32), + ((-70, -20), -0.095891915f32), + ((-70, -10), -0.095507845f32), + ((-70, 0), -0.09539513f32), + ((-70, 10), -0.0951063f32), + ((-70, 20), -0.09744669f32), + ((-70, 30), -0.101334676f32), + ((-70, 40), -0.10026048f32), + ((-70, 50), -0.102552444f32), + ((-70, 60), -0.104417525f32), + ((-70, 70), -0.10407996f32), + ((-70, 80), -0.10480991f32), + ((-70, 90), -0.10390431f32), + ((-70, 100), -0.102846265f32), + ((-60, -100), -0.08198626f32), + ((-60, -90), -0.08353661f32), + ((-60, -80), -0.08603583f32), + ((-60, -70), -0.08766833f32), + ((-60, -60), -0.089199014f32), + ((-60, -50), -0.091917805f32), + ((-60, -40), -0.09299549f32), + ((-60, -30), -0.0956157f32), + ((-60, -20), -0.09864686f32), + ((-60, -10), -0.09914974f32), + ((-60, 0), -0.10039974f32), + ((-60, 10), -0.10030475f32), + ((-60, 20), -0.10159342f32), + ((-60, 30), -0.10401981f32), + ((-60, 40), -0.10531161f32), + ((-60, 50), -0.10649038f32), + ((-60, 60), -0.10697486f32), + ((-60, 70), -0.10814563f32), + ((-60, 80), -0.10756317f32), + ((-60, 90), -0.10590332f32), + ((-60, 100), -0.10525697f32), + ((-50, -100), -0.08205913f32), + ((-50, -90), -0.08393769f32), + ((-50, -80), -0.086751714f32), + ((-50, -70), -0.089658506f32), + ((-50, -60), -0.092683166f32), + ((-50, -50), -0.09480399f32), + ((-50, -40), -0.09606384f32), + ((-50, -30), -0.09774114f32), + ((-50, -20), -0.100446284f32), + ((-50, -10), -0.10084822f32), + ((-50, 0), -0.10314222f32), + ((-50, 10), -0.10293749f32), + ((-50, 20), -0.10586517f32), + ((-50, 30), -0.10697569f32), + ((-50, 40), -0.10719836f32), + ((-50, 50), -0.10689005f32), + ((-50, 60), -0.10781257f32), + ((-50, 70), -0.10913751f32), + ((-50, 80), -0.111755826f32), + ((-50, 90), -0.10983417f32), + ((-50, 100), -0.10947363f32), + ((-40, -100), -0.0824882f32), + ((-40, -90), -0.08360703f32), + ((-40, -80), -0.086381115f32), + ((-40, -70), -0.09064654f32), + ((-40, -60), -0.093374886f32), + ((-40, -50), -0.09642702f32), + ((-40, -40), -0.09817896f32), + ((-40, -30), -0.100624494f32), + ((-40, -20), -0.10402103f32), + ((-40, -10), -0.103324674f32), + ((-40, 0), -0.10734479f32), + ((-40, 10), -0.10787663f32), + ((-40, 20), -0.11011673f32), + ((-40, 30), -0.10879173f32), + ((-40, 40), -0.10899488f32), + ((-40, 50), -0.1093022f32), + ((-40, 60), -0.11100974f32), + ((-40, 70), -0.11430037f32), + ((-40, 80), -0.11370994f32), + ((-40, 90), -0.1117007f32), + ((-40, 100), -0.111225165f32), + ((-30, -100), -0.08073887f32), + ((-30, -90), -0.08562371f32), + ((-30, -80), -0.08811793f32), + ((-30, -70), -0.092022136f32), + ((-30, -60), -0.09238706f32), + ((-30, -50), -0.09777247f32), + ((-30, -40), -0.10047619f32), + ((-30, -30), -0.1017582f32), + ((-30, -20), -0.10325858f32), + ((-30, -10), -0.10587716f32), + ((-30, 0), -0.10807945f32), + ((-30, 10), -0.11133594f32), + ((-30, 20), -0.11149085f32), + ((-30, 30), -0.11169845f32), + ((-30, 40), -0.11191458f32), + ((-30, 50), -0.11245423f32), + ((-30, 60), -0.11395778f32), + ((-30, 70), -0.116144754f32), + ((-30, 80), -0.115703195f32), + ((-30, 90), -0.11417798f32), + ((-30, 100), -0.113027185f32), + ((-20, -100), -0.081831336f32), + ((-20, -90), -0.08537665f32), + ((-20, -80), -0.08823441f32), + ((-20, -70), -0.09004638f32), + ((-20, -60), -0.091682106f32), + ((-20, -50), -0.09560484f32), + ((-20, -40), -0.100073636f32), + ((-20, -30), -0.102195345f32), + ((-20, -20), -0.103985146f32), + ((-20, -10), -0.105535336f32), + ((-20, 0), -0.11013269f32), + ((-20, 10), -0.1115511f32), + ((-20, 20), -0.113062836f32), + ((-20, 30), -0.112847894f32), + ((-20, 40), -0.11428483f32), + ((-20, 50), -0.11667834f32), + ((-20, 60), -0.117276795f32), + ((-20, 70), -0.11689238f32), + ((-20, 80), -0.1160782f32), + ((-20, 90), -0.11455002f32), + ((-20, 100), -0.11329481f32), + ((-10, -100), -0.08257191f32), + ((-10, -90), -0.085004464f32), + ((-10, -80), -0.08695547f32), + ((-10, -70), -0.08808699f32), + ((-10, -60), -0.091026604f32), + ((-10, -50), -0.09544293f32), + ((-10, -40), -0.09790615f32), + ((-10, -30), -0.10184401f32), + ((-10, -20), -0.10396968f32), + ((-10, -10), -0.1076317f32), + ((-10, 0), -0.11115202f32), + ((-10, 10), -0.11212789f32), + ((-10, 20), -0.11348673f32), + ((-10, 30), -0.11471321f32), + ((-10, 40), -0.114718616f32), + ((-10, 50), -0.11725365f32), + ((-10, 60), -0.11695717f32), + ((-10, 70), -0.116616994f32), + ((-10, 80), -0.11536371f32), + ((-10, 90), -0.11446484f32), + ((-10, 100), -0.11369774f32), + ((0, -100), -0.08459158f32), + ((0, -90), -0.08656791f32), + ((0, -80), -0.08754034f32), + ((0, -70), -0.08878641f32), + ((0, -60), -0.09282567f32), + ((0, -50), -0.09490024f32), + ((0, -40), -0.09933582f32), + ((0, -30), -0.10083613f32), + ((0, -20), -0.104990706f32), + ((0, -10), -0.10789699f32), + ((0, 0), -0.10978986f32), + ((0, 10), -0.11214093f32), + ((0, 20), -0.11311828f32), + ((0, 30), -0.11421281f32), + ((0, 40), -0.11489451f32), + ((0, 50), -0.11654575f32), + ((0, 60), -0.116693474f32), + ((0, 70), -0.11676903f32), + ((0, 80), -0.11486762f32), + ((0, 90), -0.11349271f32), + ((0, 100), -0.11301751f32), + ((10, -100), -0.08532186f32), + ((10, -90), -0.087390676f32), + ((10, -80), -0.08947607f32), + ((10, -70), -0.091350235f32), + ((10, -60), -0.092257306f32), + ((10, -50), -0.094102554f32), + ((10, -40), -0.09877145f32), + ((10, -30), -0.101968475f32), + ((10, -20), -0.10476847f32), + ((10, -10), -0.10820749f32), + ((10, 0), -0.1099116f32), + ((10, 10), -0.1106353f32), + ((10, 20), -0.11173092f32), + ((10, 30), -0.11349803f32), + ((10, 40), -0.11299823f32), + ((10, 50), -0.11539698f32), + ((10, 60), -0.11715141f32), + ((10, 70), -0.11558097f32), + ((10, 80), -0.114774175f32), + ((10, 90), -0.11429333f32), + ((10, 100), -0.112418234f32), + ((20, -100), -0.08536324f32), + ((20, -90), -0.08702316f32), + ((20, -80), -0.09097032f32), + ((20, -70), -0.09171111f32), + ((20, -60), -0.092209786f32), + ((20, -50), -0.09390856f32), + ((20, -40), -0.09674665f32), + ((20, -30), -0.0995738f32), + ((20, -20), -0.10170178f32), + ((20, -10), -0.107144f32), + ((20, 0), -0.10934077f32), + ((20, 10), -0.11114335f32), + ((20, 20), -0.11120629f32), + ((20, 30), -0.11104426f32), + ((20, 40), -0.109872885f32), + ((20, 50), -0.11435944f32), + ((20, 60), -0.11630697f32), + ((20, 70), -0.11403515f32), + ((20, 80), -0.11370773f32), + ((20, 90), -0.11165723f32), + ((20, 100), -0.11122058f32), + ((30, -100), -0.083562575f32), + ((30, -90), -0.08608784f32), + ((30, -80), -0.08794823f32), + ((30, -70), -0.091189116f32), + ((30, -60), -0.093153656f32), + ((30, -50), -0.0951614f32), + ((30, -40), -0.0953993f32), + ((30, -30), -0.096983574f32), + ((30, -20), -0.10012217f32), + ((30, -10), -0.10612148f32), + ((30, 0), -0.10943102f32), + ((30, 10), -0.10920269f32), + ((30, 20), -0.10791202f32), + ((30, 30), -0.10835938f32), + ((30, 40), -0.10786465f32), + ((30, 50), -0.11130254f32), + ((30, 60), -0.1126149f32), + ((30, 70), -0.110773936f32), + ((30, 80), -0.109979525f32), + ((30, 90), -0.10987309f32), + ((30, 100), -0.108747214f32), + ((40, -100), -0.08093807f32), + ((40, -90), -0.08576739f32), + ((40, -80), -0.085233085f32), + ((40, -70), -0.09012596f32), + ((40, -60), -0.09217769f32), + ((40, -50), -0.09351354f32), + ((40, -40), -0.09589194f32), + ((40, -30), -0.09674299f32), + ((40, -20), -0.09954912f32), + ((40, -10), -0.10170849f32), + ((40, 0), -0.10476398f32), + ((40, 10), -0.10546719f32), + ((40, 20), -0.10537742f32), + ((40, 30), -0.105657674f32), + ((40, 40), -0.10615531f32), + ((40, 50), -0.10808634f32), + ((40, 60), -0.10634413f32), + ((40, 70), -0.107364416f32), + ((40, 80), -0.10856771f32), + ((40, 90), -0.10862812f32), + ((40, 100), -0.10680454f32), + ((50, -100), -0.082533084f32), + ((50, -90), -0.086810954f32), + ((50, -80), -0.085271746f32), + ((50, -70), -0.08944471f32), + ((50, -60), -0.09193231f32), + ((50, -50), -0.09362271f32), + ((50, -40), -0.09453575f32), + ((50, -30), -0.095691115f32), + ((50, -20), -0.098154165f32), + ((50, -10), -0.097271696f32), + ((50, 0), -0.09942495f32), + ((50, 10), -0.10164021f32), + ((50, 20), -0.10168414f32), + ((50, 30), -0.104937024f32), + ((50, 40), -0.10539722f32), + ((50, 50), -0.10424481f32), + ((50, 60), -0.10219841f32), + ((50, 70), -0.10340266f32), + ((50, 80), -0.106310576f32), + ((50, 90), -0.10595322f32), + ((50, 100), -0.10645929f32), + ((60, -100), -0.08115639f32), + ((60, -90), -0.08455347f32), + ((60, -80), -0.08534711f32), + ((60, -70), -0.08780121f32), + ((60, -60), -0.090132974f32), + ((60, -50), -0.091330595f32), + ((60, -40), -0.091192245f32), + ((60, -30), -0.0924395f32), + ((60, -20), -0.09527585f32), + ((60, -10), -0.09565725f32), + ((60, 0), -0.09630064f32), + ((60, 10), -0.09673829f32), + ((60, 20), -0.09658762f32), + ((60, 30), -0.09961178f32), + ((60, 40), -0.100632355f32), + ((60, 50), -0.10012698f32), + ((60, 60), -0.09957688f32), + ((60, 70), -0.10111454f32), + ((60, 80), -0.10357678f32), + ((60, 90), -0.104492605f32), + ((60, 100), -0.10421045f32), + ((70, -100), -0.074997574f32), + ((70, -90), -0.07923891f32), + ((70, -80), -0.08061024f32), + ((70, -70), -0.08389824f32), + ((70, -60), -0.08752339f32), + ((70, -50), -0.090026386f32), + ((70, -40), -0.09045799f32), + ((70, -30), -0.091568656f32), + ((70, -20), -0.09186759f32), + ((70, -10), -0.09279721f32), + ((70, 0), -0.093260504f32), + ((70, 10), -0.092824616f32), + ((70, 20), -0.093960315f32), + ((70, 30), -0.09660603f32), + ((70, 40), -0.09790762f32), + ((70, 50), -0.09831002f32), + ((70, 60), -0.09862129f32), + ((70, 70), -0.1009444f32), + ((70, 80), -0.101910815f32), + ((70, 90), -0.10201355f32), + ((70, 100), -0.1022472f32), + ((80, -100), -0.07063179f32), + ((80, -90), -0.073081866f32), + ((80, -80), -0.0773198f32), + ((80, -70), -0.079035714f32), + ((80, -60), -0.08466645f32), + ((80, -50), -0.08781248f32), + ((80, -40), -0.087890774f32), + ((80, -30), -0.09016053f32), + ((80, -20), -0.09094465f32), + ((80, -10), -0.09138842f32), + ((80, 0), -0.090936236f32), + ((80, 10), -0.09181613f32), + ((80, 20), -0.09273602f32), + ((80, 30), -0.09400447f32), + ((80, 40), -0.094502196f32), + ((80, 50), -0.09436651f32), + ((80, 60), -0.09598513f32), + ((80, 70), -0.098289296f32), + ((80, 80), -0.10086883f32), + ((80, 90), -0.101560704f32), + ((80, 100), -0.10193728f32), + ((90, -100), -0.07009827f32), + ((90, -90), -0.071226865f32), + ((90, -80), -0.07469955f32), + ((90, -70), -0.07523824f32), + ((90, -60), -0.07865613f32), + ((90, -50), -0.084405504f32), + ((90, -40), -0.085147366f32), + ((90, -30), -0.08834492f32), + ((90, -20), -0.08923916f32), + ((90, -10), -0.08832547f32), + ((90, 0), -0.087817885f32), + ((90, 10), -0.09013721f32), + ((90, 20), -0.091518745f32), + ((90, 30), -0.091617286f32), + ((90, 40), -0.0920376f32), + ((90, 50), -0.09236775f32), + ((90, 60), -0.094668776f32), + ((90, 70), -0.096736684f32), + ((90, 80), -0.099345334f32), + ((90, 90), -0.10124628f32), + ((90, 100), -0.10255872f32), + ((100, -100), -0.06807774f32), + ((100, -90), -0.07107438f32), + ((100, -80), -0.072487816f32), + ((100, -70), -0.075734794f32), + ((100, -60), -0.07796392f32), + ((100, -50), -0.08121155f32), + ((100, -40), -0.08184202f32), + ((100, -30), -0.08378057f32), + ((100, -20), -0.0849825f32), + ((100, -10), -0.08561178f32), + ((100, 0), -0.08618045f32), + ((100, 10), -0.08772436f32), + ((100, 20), -0.08878901f32), + ((100, 30), -0.08852096f32), + ((100, 40), -0.0906315f32), + ((100, 50), -0.091744505f32), + ((100, 60), -0.093411185f32), + ((100, 70), -0.09586958f32), + ((100, 80), -0.098537765f32), + ((100, 90), -0.10159851f32), + ((100, 100), -0.10332601f32), + ]; + + for ((x, z), result) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_owned_correctness() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let spline = SplineBuilder::new(CONTINENTS_OVERWORLD.clone(), FloatAmplifier::Identity) + .add_fixed_value_derivative(-1.1f32, 0.044f32, -0.1f32) + .add_fixed_value(-1.02f32, -0.2222f32) + .add_fixed_value_derivative(-0.51f32, -0.2222f32, 0.1f32) + .add_fixed_value(-0.44f32, -0.12f32) + .add_fixed_value_derivative(-0.18f32, -0.12f32, 0.1f32) + .build(); + + let spline_function: SharedComponentReference = + SplineFunction::::new(spline.into()).into(); + let mut func = spline_function.convert_to_dyn(&mut converter); + + let values = [ + ((-100, -100), -0.07604788f32), + ((-100, -90), -0.07773465f32), + ((-100, -80), -0.07928875f32), + ((-100, -70), -0.08118123f32), + ((-100, -60), -0.08313452f32), + ((-100, -50), -0.083534524f32), + ((-100, -40), -0.086245626f32), + ((-100, -30), -0.08444518f32), + ((-100, -20), -0.08520311f32), + ((-100, -10), -0.08629203f32), + ((-100, 0), -0.08723046f32), + ((-100, 10), -0.0888218f32), + ((-100, 20), -0.09126012f32), + ((-100, 30), -0.092776805f32), + ((-100, 40), -0.09374735f32), + ((-100, 50), -0.09605039f32), + ((-100, 60), -0.09593062f32), + ((-100, 70), -0.09638955f32), + ((-100, 80), -0.09660137f32), + ((-100, 90), -0.09732263f32), + ((-100, 100), -0.09875606f32), + ((-90, -100), -0.07605396f32), + ((-90, -90), -0.07945493f32), + ((-90, -80), -0.08126007f32), + ((-90, -70), -0.0827491f32), + ((-90, -60), -0.084900096f32), + ((-90, -50), -0.087383136f32), + ((-90, -40), -0.08763948f32), + ((-90, -30), -0.08750856f32), + ((-90, -20), -0.08923715f32), + ((-90, -10), -0.08950907f32), + ((-90, 0), -0.08966042f32), + ((-90, 10), -0.091661744f32), + ((-90, 20), -0.09423652f32), + ((-90, 30), -0.09460543f32), + ((-90, 40), -0.09597071f32), + ((-90, 50), -0.09838261f32), + ((-90, 60), -0.09757312f32), + ((-90, 70), -0.09852694f32), + ((-90, 80), -0.09875368f32), + ((-90, 90), -0.10035795f32), + ((-90, 100), -0.099384755f32), + ((-80, -100), -0.07845141f32), + ((-80, -90), -0.0802805f32), + ((-80, -80), -0.08364986f32), + ((-80, -70), -0.085202575f32), + ((-80, -60), -0.0893721f32), + ((-80, -50), -0.09021371f32), + ((-80, -40), -0.088948175f32), + ((-80, -30), -0.09102255f32), + ((-80, -20), -0.09252357f32), + ((-80, -10), -0.092946626f32), + ((-80, 0), -0.0917982f32), + ((-80, 10), -0.09275723f32), + ((-80, 20), -0.09508084f32), + ((-80, 30), -0.09741648f32), + ((-80, 40), -0.09864242f32), + ((-80, 50), -0.1010126f32), + ((-80, 60), -0.10251929f32), + ((-80, 70), -0.10301858f32), + ((-80, 80), -0.10152783f32), + ((-80, 90), -0.1018514f32), + ((-80, 100), -0.101050965f32), + ((-70, -100), -0.08047484f32), + ((-70, -90), -0.0827865f32), + ((-70, -80), -0.08533125f32), + ((-70, -70), -0.087316774f32), + ((-70, -60), -0.08924434f32), + ((-70, -50), -0.09139694f32), + ((-70, -40), -0.092277184f32), + ((-70, -30), -0.09338808f32), + ((-70, -20), -0.095891915f32), + ((-70, -10), -0.095507845f32), + ((-70, 0), -0.09539513f32), + ((-70, 10), -0.0951063f32), + ((-70, 20), -0.09744669f32), + ((-70, 30), -0.101334676f32), + ((-70, 40), -0.10026048f32), + ((-70, 50), -0.102552444f32), + ((-70, 60), -0.104417525f32), + ((-70, 70), -0.10407996f32), + ((-70, 80), -0.10480991f32), + ((-70, 90), -0.10390431f32), + ((-70, 100), -0.102846265f32), + ((-60, -100), -0.08198626f32), + ((-60, -90), -0.08353661f32), + ((-60, -80), -0.08603583f32), + ((-60, -70), -0.08766833f32), + ((-60, -60), -0.089199014f32), + ((-60, -50), -0.091917805f32), + ((-60, -40), -0.09299549f32), + ((-60, -30), -0.0956157f32), + ((-60, -20), -0.09864686f32), + ((-60, -10), -0.09914974f32), + ((-60, 0), -0.10039974f32), + ((-60, 10), -0.10030475f32), + ((-60, 20), -0.10159342f32), + ((-60, 30), -0.10401981f32), + ((-60, 40), -0.10531161f32), + ((-60, 50), -0.10649038f32), + ((-60, 60), -0.10697486f32), + ((-60, 70), -0.10814563f32), + ((-60, 80), -0.10756317f32), + ((-60, 90), -0.10590332f32), + ((-60, 100), -0.10525697f32), + ((-50, -100), -0.08205913f32), + ((-50, -90), -0.08393769f32), + ((-50, -80), -0.086751714f32), + ((-50, -70), -0.089658506f32), + ((-50, -60), -0.092683166f32), + ((-50, -50), -0.09480399f32), + ((-50, -40), -0.09606384f32), + ((-50, -30), -0.09774114f32), + ((-50, -20), -0.100446284f32), + ((-50, -10), -0.10084822f32), + ((-50, 0), -0.10314222f32), + ((-50, 10), -0.10293749f32), + ((-50, 20), -0.10586517f32), + ((-50, 30), -0.10697569f32), + ((-50, 40), -0.10719836f32), + ((-50, 50), -0.10689005f32), + ((-50, 60), -0.10781257f32), + ((-50, 70), -0.10913751f32), + ((-50, 80), -0.111755826f32), + ((-50, 90), -0.10983417f32), + ((-50, 100), -0.10947363f32), + ((-40, -100), -0.0824882f32), + ((-40, -90), -0.08360703f32), + ((-40, -80), -0.086381115f32), + ((-40, -70), -0.09064654f32), + ((-40, -60), -0.093374886f32), + ((-40, -50), -0.09642702f32), + ((-40, -40), -0.09817896f32), + ((-40, -30), -0.100624494f32), + ((-40, -20), -0.10402103f32), + ((-40, -10), -0.103324674f32), + ((-40, 0), -0.10734479f32), + ((-40, 10), -0.10787663f32), + ((-40, 20), -0.11011673f32), + ((-40, 30), -0.10879173f32), + ((-40, 40), -0.10899488f32), + ((-40, 50), -0.1093022f32), + ((-40, 60), -0.11100974f32), + ((-40, 70), -0.11430037f32), + ((-40, 80), -0.11370994f32), + ((-40, 90), -0.1117007f32), + ((-40, 100), -0.111225165f32), + ((-30, -100), -0.08073887f32), + ((-30, -90), -0.08562371f32), + ((-30, -80), -0.08811793f32), + ((-30, -70), -0.092022136f32), + ((-30, -60), -0.09238706f32), + ((-30, -50), -0.09777247f32), + ((-30, -40), -0.10047619f32), + ((-30, -30), -0.1017582f32), + ((-30, -20), -0.10325858f32), + ((-30, -10), -0.10587716f32), + ((-30, 0), -0.10807945f32), + ((-30, 10), -0.11133594f32), + ((-30, 20), -0.11149085f32), + ((-30, 30), -0.11169845f32), + ((-30, 40), -0.11191458f32), + ((-30, 50), -0.11245423f32), + ((-30, 60), -0.11395778f32), + ((-30, 70), -0.116144754f32), + ((-30, 80), -0.115703195f32), + ((-30, 90), -0.11417798f32), + ((-30, 100), -0.113027185f32), + ((-20, -100), -0.081831336f32), + ((-20, -90), -0.08537665f32), + ((-20, -80), -0.08823441f32), + ((-20, -70), -0.09004638f32), + ((-20, -60), -0.091682106f32), + ((-20, -50), -0.09560484f32), + ((-20, -40), -0.100073636f32), + ((-20, -30), -0.102195345f32), + ((-20, -20), -0.103985146f32), + ((-20, -10), -0.105535336f32), + ((-20, 0), -0.11013269f32), + ((-20, 10), -0.1115511f32), + ((-20, 20), -0.113062836f32), + ((-20, 30), -0.112847894f32), + ((-20, 40), -0.11428483f32), + ((-20, 50), -0.11667834f32), + ((-20, 60), -0.117276795f32), + ((-20, 70), -0.11689238f32), + ((-20, 80), -0.1160782f32), + ((-20, 90), -0.11455002f32), + ((-20, 100), -0.11329481f32), + ((-10, -100), -0.08257191f32), + ((-10, -90), -0.085004464f32), + ((-10, -80), -0.08695547f32), + ((-10, -70), -0.08808699f32), + ((-10, -60), -0.091026604f32), + ((-10, -50), -0.09544293f32), + ((-10, -40), -0.09790615f32), + ((-10, -30), -0.10184401f32), + ((-10, -20), -0.10396968f32), + ((-10, -10), -0.1076317f32), + ((-10, 0), -0.11115202f32), + ((-10, 10), -0.11212789f32), + ((-10, 20), -0.11348673f32), + ((-10, 30), -0.11471321f32), + ((-10, 40), -0.114718616f32), + ((-10, 50), -0.11725365f32), + ((-10, 60), -0.11695717f32), + ((-10, 70), -0.116616994f32), + ((-10, 80), -0.11536371f32), + ((-10, 90), -0.11446484f32), + ((-10, 100), -0.11369774f32), + ((0, -100), -0.08459158f32), + ((0, -90), -0.08656791f32), + ((0, -80), -0.08754034f32), + ((0, -70), -0.08878641f32), + ((0, -60), -0.09282567f32), + ((0, -50), -0.09490024f32), + ((0, -40), -0.09933582f32), + ((0, -30), -0.10083613f32), + ((0, -20), -0.104990706f32), + ((0, -10), -0.10789699f32), + ((0, 0), -0.10978986f32), + ((0, 10), -0.11214093f32), + ((0, 20), -0.11311828f32), + ((0, 30), -0.11421281f32), + ((0, 40), -0.11489451f32), + ((0, 50), -0.11654575f32), + ((0, 60), -0.116693474f32), + ((0, 70), -0.11676903f32), + ((0, 80), -0.11486762f32), + ((0, 90), -0.11349271f32), + ((0, 100), -0.11301751f32), + ((10, -100), -0.08532186f32), + ((10, -90), -0.087390676f32), + ((10, -80), -0.08947607f32), + ((10, -70), -0.091350235f32), + ((10, -60), -0.092257306f32), + ((10, -50), -0.094102554f32), + ((10, -40), -0.09877145f32), + ((10, -30), -0.101968475f32), + ((10, -20), -0.10476847f32), + ((10, -10), -0.10820749f32), + ((10, 0), -0.1099116f32), + ((10, 10), -0.1106353f32), + ((10, 20), -0.11173092f32), + ((10, 30), -0.11349803f32), + ((10, 40), -0.11299823f32), + ((10, 50), -0.11539698f32), + ((10, 60), -0.11715141f32), + ((10, 70), -0.11558097f32), + ((10, 80), -0.114774175f32), + ((10, 90), -0.11429333f32), + ((10, 100), -0.112418234f32), + ((20, -100), -0.08536324f32), + ((20, -90), -0.08702316f32), + ((20, -80), -0.09097032f32), + ((20, -70), -0.09171111f32), + ((20, -60), -0.092209786f32), + ((20, -50), -0.09390856f32), + ((20, -40), -0.09674665f32), + ((20, -30), -0.0995738f32), + ((20, -20), -0.10170178f32), + ((20, -10), -0.107144f32), + ((20, 0), -0.10934077f32), + ((20, 10), -0.11114335f32), + ((20, 20), -0.11120629f32), + ((20, 30), -0.11104426f32), + ((20, 40), -0.109872885f32), + ((20, 50), -0.11435944f32), + ((20, 60), -0.11630697f32), + ((20, 70), -0.11403515f32), + ((20, 80), -0.11370773f32), + ((20, 90), -0.11165723f32), + ((20, 100), -0.11122058f32), + ((30, -100), -0.083562575f32), + ((30, -90), -0.08608784f32), + ((30, -80), -0.08794823f32), + ((30, -70), -0.091189116f32), + ((30, -60), -0.093153656f32), + ((30, -50), -0.0951614f32), + ((30, -40), -0.0953993f32), + ((30, -30), -0.096983574f32), + ((30, -20), -0.10012217f32), + ((30, -10), -0.10612148f32), + ((30, 0), -0.10943102f32), + ((30, 10), -0.10920269f32), + ((30, 20), -0.10791202f32), + ((30, 30), -0.10835938f32), + ((30, 40), -0.10786465f32), + ((30, 50), -0.11130254f32), + ((30, 60), -0.1126149f32), + ((30, 70), -0.110773936f32), + ((30, 80), -0.109979525f32), + ((30, 90), -0.10987309f32), + ((30, 100), -0.108747214f32), + ((40, -100), -0.08093807f32), + ((40, -90), -0.08576739f32), + ((40, -80), -0.085233085f32), + ((40, -70), -0.09012596f32), + ((40, -60), -0.09217769f32), + ((40, -50), -0.09351354f32), + ((40, -40), -0.09589194f32), + ((40, -30), -0.09674299f32), + ((40, -20), -0.09954912f32), + ((40, -10), -0.10170849f32), + ((40, 0), -0.10476398f32), + ((40, 10), -0.10546719f32), + ((40, 20), -0.10537742f32), + ((40, 30), -0.105657674f32), + ((40, 40), -0.10615531f32), + ((40, 50), -0.10808634f32), + ((40, 60), -0.10634413f32), + ((40, 70), -0.107364416f32), + ((40, 80), -0.10856771f32), + ((40, 90), -0.10862812f32), + ((40, 100), -0.10680454f32), + ((50, -100), -0.082533084f32), + ((50, -90), -0.086810954f32), + ((50, -80), -0.085271746f32), + ((50, -70), -0.08944471f32), + ((50, -60), -0.09193231f32), + ((50, -50), -0.09362271f32), + ((50, -40), -0.09453575f32), + ((50, -30), -0.095691115f32), + ((50, -20), -0.098154165f32), + ((50, -10), -0.097271696f32), + ((50, 0), -0.09942495f32), + ((50, 10), -0.10164021f32), + ((50, 20), -0.10168414f32), + ((50, 30), -0.104937024f32), + ((50, 40), -0.10539722f32), + ((50, 50), -0.10424481f32), + ((50, 60), -0.10219841f32), + ((50, 70), -0.10340266f32), + ((50, 80), -0.106310576f32), + ((50, 90), -0.10595322f32), + ((50, 100), -0.10645929f32), + ((60, -100), -0.08115639f32), + ((60, -90), -0.08455347f32), + ((60, -80), -0.08534711f32), + ((60, -70), -0.08780121f32), + ((60, -60), -0.090132974f32), + ((60, -50), -0.091330595f32), + ((60, -40), -0.091192245f32), + ((60, -30), -0.0924395f32), + ((60, -20), -0.09527585f32), + ((60, -10), -0.09565725f32), + ((60, 0), -0.09630064f32), + ((60, 10), -0.09673829f32), + ((60, 20), -0.09658762f32), + ((60, 30), -0.09961178f32), + ((60, 40), -0.100632355f32), + ((60, 50), -0.10012698f32), + ((60, 60), -0.09957688f32), + ((60, 70), -0.10111454f32), + ((60, 80), -0.10357678f32), + ((60, 90), -0.104492605f32), + ((60, 100), -0.10421045f32), + ((70, -100), -0.074997574f32), + ((70, -90), -0.07923891f32), + ((70, -80), -0.08061024f32), + ((70, -70), -0.08389824f32), + ((70, -60), -0.08752339f32), + ((70, -50), -0.090026386f32), + ((70, -40), -0.09045799f32), + ((70, -30), -0.091568656f32), + ((70, -20), -0.09186759f32), + ((70, -10), -0.09279721f32), + ((70, 0), -0.093260504f32), + ((70, 10), -0.092824616f32), + ((70, 20), -0.093960315f32), + ((70, 30), -0.09660603f32), + ((70, 40), -0.09790762f32), + ((70, 50), -0.09831002f32), + ((70, 60), -0.09862129f32), + ((70, 70), -0.1009444f32), + ((70, 80), -0.101910815f32), + ((70, 90), -0.10201355f32), + ((70, 100), -0.1022472f32), + ((80, -100), -0.07063179f32), + ((80, -90), -0.073081866f32), + ((80, -80), -0.0773198f32), + ((80, -70), -0.079035714f32), + ((80, -60), -0.08466645f32), + ((80, -50), -0.08781248f32), + ((80, -40), -0.087890774f32), + ((80, -30), -0.09016053f32), + ((80, -20), -0.09094465f32), + ((80, -10), -0.09138842f32), + ((80, 0), -0.090936236f32), + ((80, 10), -0.09181613f32), + ((80, 20), -0.09273602f32), + ((80, 30), -0.09400447f32), + ((80, 40), -0.094502196f32), + ((80, 50), -0.09436651f32), + ((80, 60), -0.09598513f32), + ((80, 70), -0.098289296f32), + ((80, 80), -0.10086883f32), + ((80, 90), -0.101560704f32), + ((80, 100), -0.10193728f32), + ((90, -100), -0.07009827f32), + ((90, -90), -0.071226865f32), + ((90, -80), -0.07469955f32), + ((90, -70), -0.07523824f32), + ((90, -60), -0.07865613f32), + ((90, -50), -0.084405504f32), + ((90, -40), -0.085147366f32), + ((90, -30), -0.08834492f32), + ((90, -20), -0.08923916f32), + ((90, -10), -0.08832547f32), + ((90, 0), -0.087817885f32), + ((90, 10), -0.09013721f32), + ((90, 20), -0.091518745f32), + ((90, 30), -0.091617286f32), + ((90, 40), -0.0920376f32), + ((90, 50), -0.09236775f32), + ((90, 60), -0.094668776f32), + ((90, 70), -0.096736684f32), + ((90, 80), -0.099345334f32), + ((90, 90), -0.10124628f32), + ((90, 100), -0.10255872f32), + ((100, -100), -0.06807774f32), + ((100, -90), -0.07107438f32), + ((100, -80), -0.072487816f32), + ((100, -70), -0.075734794f32), + ((100, -60), -0.07796392f32), + ((100, -50), -0.08121155f32), + ((100, -40), -0.08184202f32), + ((100, -30), -0.08378057f32), + ((100, -20), -0.0849825f32), + ((100, -10), -0.08561178f32), + ((100, 0), -0.08618045f32), + ((100, 10), -0.08772436f32), + ((100, 20), -0.08878901f32), + ((100, 30), -0.08852096f32), + ((100, 40), -0.0906315f32), + ((100, 50), -0.091744505f32), + ((100, 60), -0.093411185f32), + ((100, 70), -0.09586958f32), + ((100, 80), -0.098537765f32), + ((100, 90), -0.10159851f32), + ((100, 100), -0.10332601f32), + ]; + + for ((x, z), result) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(func.sample_mut(pos, &FakeEnvironment {}), result as f64); + } } } diff --git a/pumpkin-world/src/world_gen/noise/density/terrain_helpers.rs b/pumpkin-world/src/world_gen/noise/density/terrain_helpers.rs index 2d478fb94..b19df8c63 100644 --- a/pumpkin-world/src/world_gen/noise/density/terrain_helpers.rs +++ b/pumpkin-world/src/world_gen/noise/density/terrain_helpers.rs @@ -1,20 +1,18 @@ // From da java -use std::sync::Arc; - -use crate::world_gen::noise::density::spline::{ - FloatAmplifier, Spline, SplineBuilder, SplineValue, -}; -use crate::world_gen::noise::density::{peaks_valleys_noise, DensityFunction}; +use crate::world_gen::noise::density::peaks_valleys_noise; use crate::world_gen::noise::lerp; +use super::component_functions::SharedComponentReference; +use super::spline::{FloatAmplifier, ImmutableSpline, ImmutableSplineRef, SplineBuilder}; + #[inline] fn get_offset_value(f: f32, g: f32, h: f32) -> f32 { - let k = (1f32 - g).mul_add(-0.5f32, 1f32); + let k = (1f32 - g) * -0.5f32 + 1f32; let l = 0.5f32 * (1f32 - g); let m = (f + 1.17f32) * 0.46082947f32; - let n = m.mul_add(k, -l); + let n = m * k - l; if f < h { n.max(-0.2222f32) @@ -25,10 +23,10 @@ fn get_offset_value(f: f32, g: f32, h: f32) -> f32 { #[inline] fn skew_map(f: f32) -> f32 { - let k = (1f32 - f).mul_add(-0.5f32, 1f32); - let l = 0.5f32 * (1f32 - f); + let i = 1f32 - (1f32 - f) * 0.5f32; + let j = 0.5f32 * (1f32 - f); - l / (0.46082947f32 * k) - 1.17f32 + j / (0.46082947f32 * i) - 1.17f32 } #[inline] @@ -37,12 +35,12 @@ fn diff_quot(f: f32, g: f32, h: f32, i: f32) -> f32 { } fn create_ridges_spline( - function: Arc, + function: SharedComponentReference, f: f32, bl: bool, amplifier: FloatAmplifier, -) -> Spline { - let mut builder = SplineBuilder::new(function, amplifier); +) -> ImmutableSpline { + let builder = SplineBuilder::new(function, amplifier); let i = get_offset_value(-1f32, f, -0.7f32); let k = get_offset_value(1f32, f, -0.7f32); @@ -54,27 +52,27 @@ fn create_ridges_spline( let p = get_offset_value(-0.75f32, f, -0.7f32); let q = diff_quot(i, p, -1f32, -0.75f32); let builder = builder - .add_value(-1f32, i, q) - .add_value(-0.75f32, p, 0f32) - .add_value(-0.65f32, n, 0f32); + .add_fixed_value_derivative(-1f32, i, q) + .add_fixed_value(-0.75f32, p) + .add_fixed_value(-0.65f32, n); let r = get_offset_value(l, f, -0.7f32); let s = diff_quot(r, k, l, 1f32); builder - .add_value(l - 0.01f32, r, 0f32) - .add_value(l, r, s) - .add_value(1f32, k, s) + .add_fixed_value(l - 0.01f32, r) + .add_fixed_value_derivative(l, r, s) + .add_fixed_value_derivative(1f32, k, s) } else { let n = diff_quot(i, k, -1f32, 1f32); let builder = if bl { builder - .add_value(-1f32, 0.2f32.max(i), 0f32) - .add_value(0f32, lerp(0.5f32, i, k), n) + .add_fixed_value(-1f32, 0.2f32.max(i)) + .add_fixed_value_derivative(0f32, lerp(0.5f32, i, k), n) } else { - builder.add_value(-1f32, i, n) + builder.add_fixed_value_derivative(-1f32, i, n) }; - builder.add_value(1f32, k, n) + builder.add_fixed_value_derivative(1f32, k, n) }; builder.build() @@ -82,7 +80,7 @@ fn create_ridges_spline( #[allow(clippy::too_many_arguments)] fn create_standard_spline( - ridges: Arc, + ridges: SharedComponentReference, continental: f32, f: f32, g: f32, @@ -90,135 +88,125 @@ fn create_standard_spline( i: f32, j: f32, amplifier: FloatAmplifier, -) -> Spline { +) -> ImmutableSpline { let k = j.max(0.5f32 * (f - continental)); let l = 5f32 * (g - f); SplineBuilder::new(ridges, amplifier) - .add_value(-1f32, continental, 0f32) - .add_value(-0.4f32, f, k.min(l)) - .add_value(0f32, g, l) - .add_value(0.4f32, h, 2f32 * (h - g)) - .add_value(1f32, i, 0.7f32 * (i - h)) + .add_fixed_value_derivative(-1f32, continental, k) + .add_fixed_value_derivative(-0.4f32, f, k.min(l)) + .add_fixed_value_derivative(0f32, g, l) + .add_fixed_value_derivative(0.4f32, h, 2f32 * (h - g)) + .add_fixed_value_derivative(1f32, i, 0.7f32 * (i - h)) .build() } -fn create_total_spline<'a>( - erosion: Arc>, - ridges: Arc>, - ridges_folded: Arc>, +fn create_total_spline( + erosion: SharedComponentReference, + ridges: SharedComponentReference, + ridges_folded: SharedComponentReference, f: f32, bl: bool, amplifier: FloatAmplifier, -) -> Spline<'a> { - let spline = SplineBuilder::new(ridges.clone(), amplifier.clone()) - .add_value(-0.2f32, 6.3f32, 0f32) - .add_value(0.2f32, f, 0f32) - .build(); +) -> ImmutableSpline { + let spline_ref: ImmutableSplineRef = SplineBuilder::new(ridges.clone(), amplifier) + .add_fixed_value(-0.2f32, 6.3f32) + .add_fixed_value(0.2f32, f) + .build() + .into(); - let mut builder = SplineBuilder::new(erosion, amplifier.clone()); + let builder = SplineBuilder::new(erosion, amplifier); let builder = builder - .add_spline(-0.6f32, SplineValue::Spline(spline.clone()), 0f32) - .add_spline( + .add_spline_value(-0.6f32, spline_ref.clone()) + .add_spline_value( -0.5f32, - SplineValue::Spline( - SplineBuilder::new(ridges.clone(), amplifier.clone()) - .add_value(-0.05f32, 6.3f32, 0f32) - .add_value(0.05f32, 2.67f32, 0f32) - .build(), - ), - 0f32, + SplineBuilder::new(ridges.clone(), amplifier) + .add_fixed_value(-0.05f32, 6.3f32) + .add_fixed_value(0.05f32, 2.67f32) + .build() + .into(), ) - .add_spline(-0.35f32, SplineValue::Spline(spline.clone()), 0f32) - .add_spline(-0.25f32, SplineValue::Spline(spline.clone()), 0f32) - .add_spline( + .add_spline_value(-0.35f32, spline_ref.clone()) + .add_spline_value(-0.25f32, spline_ref.clone()) + .add_spline_value( -0.1f32, - SplineValue::Spline( - SplineBuilder::new(ridges.clone(), amplifier.clone()) - .add_value(-0.05f32, 2.67, 0f32) - .add_value(0.05f32, 6.3f32, 0f32) - .build(), - ), - 0f32, + SplineBuilder::new(ridges.clone(), amplifier) + .add_fixed_value(-0.05f32, 2.67f32) + .add_fixed_value(0.05f32, 6.3f32) + .build() + .into(), ) - .add_spline(0.03f32, SplineValue::Spline(spline.clone()), 0f32); + .add_spline_value(0.03f32, spline_ref.clone()); let builder = if bl { - let spline2 = SplineBuilder::new(ridges.clone(), amplifier.clone()) - .add_value(0f32, f, 0f32) - .add_value(0.1f32, 0.625f32, 0f32) - .build(); - let spline3 = SplineBuilder::new(ridges_folded.clone(), amplifier.clone()) - .add_value(-0.9f32, f, 0f32) - .add_spline(-0.69f32, SplineValue::Spline(spline2), 0f32) + let spline2 = SplineBuilder::new(ridges.clone(), amplifier) + .add_fixed_value(0f32, f) + .add_fixed_value(0.1f32, 0.625f32) .build(); + let spline3_ref: ImmutableSplineRef = SplineBuilder::new(ridges_folded.clone(), amplifier) + .add_fixed_value(-0.9f32, f) + .add_spline_value(-0.69f32, spline2.into()) + .build() + .into(); builder - .add_value(0.35f32, f, 0f32) - .add_spline(0.45f32, SplineValue::Spline(spline3.clone()), 0f32) - .add_spline(0.55f32, SplineValue::Spline(spline3.clone()), 0f32) - .add_value(0.62f32, f, 0f32) + .add_fixed_value(0.35f32, f) + .add_spline_value(0.45f32, spline3_ref.clone()) + .add_spline_value(0.55f32, spline3_ref.clone()) + .add_fixed_value(0.62f32, f) } else { - let spline2 = SplineBuilder::new(ridges_folded.clone(), amplifier.clone()) - .add_spline(-0.7f32, SplineValue::Spline(spline.clone()), 0f32) - .add_value(-0.15f32, 1.37f32, 0f32) - .build(); + let spline2_ref: ImmutableSplineRef = SplineBuilder::new(ridges_folded.clone(), amplifier) + .add_spline_value(-0.7f32, spline_ref.clone()) + .add_fixed_value(-0.15f32, 1.37f32) + .build() + .into(); - let spline3 = SplineBuilder::new(ridges_folded.clone(), amplifier.clone()) - .add_spline(0.45f32, SplineValue::Spline(spline.clone()), 0f32) - .add_value(0.7f32, 1.56f32, 0f32) - .build(); + let spline3_ref: ImmutableSplineRef = SplineBuilder::new(ridges_folded.clone(), amplifier) + .add_spline_value(0.45f32, spline_ref.clone()) + .add_fixed_value(0.7f32, 1.56f32) + .build() + .into(); builder - .add_spline(0.05f32, SplineValue::Spline(spline3.clone()), 0f32) - .add_spline(0.4f32, SplineValue::Spline(spline3.clone()), 0f32) - .add_spline(0.45f32, SplineValue::Spline(spline2.clone()), 0f32) - .add_spline(0.55f32, SplineValue::Spline(spline2.clone()), 0f32) - .add_value(0.56f32, f, 0f32) + .add_spline_value(0.05f32, spline3_ref.clone()) + .add_spline_value(0.4f32, spline3_ref.clone()) + .add_spline_value(0.45f32, spline2_ref.clone()) + .add_spline_value(0.55f32, spline2_ref.clone()) + .add_fixed_value(0.58f32, f) }; builder.build() } -fn create_folded_ridges_spline<'a>( - ridges: Arc>, - ridges_folded: Arc>, +fn create_folded_ridges_spline( + ridges: SharedComponentReference, + ridges_folded: SharedComponentReference, f: f32, g: f32, amplifier: FloatAmplifier, -) -> Spline<'a> { +) -> ImmutableSpline { let h = peaks_valleys_noise(0.4f32); let i = peaks_valleys_noise(0.56666666f32); let j = (h + i) / 2f32; - let mut builder = SplineBuilder::new(ridges_folded, amplifier.clone()); + let builder = SplineBuilder::new(ridges_folded, amplifier); - let builder = builder.add_value(h, 0f32, 0f32); + let builder = builder.add_fixed_value(h, 0f32); let builder = if g > 0f32 { - builder.add_spline( + builder.add_spline_value( j, - SplineValue::Spline(create_ridges_part_spline( - ridges.clone(), - f, - amplifier.clone(), - )), - 0f32, + create_ridges_part_spline(ridges.clone(), g, amplifier).into(), ) } else { - builder.add_value(j, 0f32, 0f32) + builder.add_fixed_value(j, 0f32) }; let builder = if f > 0f32 { - builder.add_spline( + builder.add_spline_value( 1f32, - SplineValue::Spline(create_ridges_part_spline( - ridges.clone(), - f, - amplifier.clone(), - )), - 0f32, + create_ridges_part_spline(ridges.clone(), f, amplifier).into(), ) } else { - builder.add_value(1f32, 0f32, 0f32) + builder.add_fixed_value(1f32, 0f32) }; builder.build() @@ -226,57 +214,47 @@ fn create_folded_ridges_spline<'a>( #[inline] fn create_ridges_part_spline( - ridges: Arc, + ridges: SharedComponentReference, f: f32, amplifier: FloatAmplifier, -) -> Spline { +) -> ImmutableSpline { let g = 0.63f32 * f; let h = 0.3f32 * f; SplineBuilder::new(ridges, amplifier) - .add_value(-0.01, g, 0f32) - .add_value(0.01f32, h, 0f32) + .add_fixed_value(-0.01f32, g) + .add_fixed_value(0.01f32, h) .build() } #[allow(clippy::too_many_arguments)] #[inline] -fn create_eroded_ridges_spline<'a>( - erosion: Arc>, - ridges: Arc>, - ridges_folded: Arc>, +fn create_eroded_ridges_spline( + erosion: SharedComponentReference, + ridges: SharedComponentReference, + ridges_folded: SharedComponentReference, f: f32, g: f32, h: f32, i: f32, amplifier: FloatAmplifier, -) -> Spline<'a> { - let spline = create_folded_ridges_spline( - ridges.clone(), - ridges_folded.clone(), - f, - h, - amplifier.clone(), - ); - let spline2 = create_folded_ridges_spline( - ridges.clone(), - ridges_folded.clone(), - g, - i, - amplifier.clone(), - ); +) -> ImmutableSpline { + let spline = + create_folded_ridges_spline(ridges.clone(), ridges_folded.clone(), f, h, amplifier); + let spline2_ref: ImmutableSplineRef = + create_folded_ridges_spline(ridges.clone(), ridges_folded.clone(), g, i, amplifier).into(); SplineBuilder::new(erosion, amplifier) - .add_spline(-1f32, SplineValue::Spline(spline), 0f32) - .add_spline(-0.78, SplineValue::Spline(spline2.clone()), 0f32) - .add_spline(-0.5775f32, SplineValue::Spline(spline2), 0f32) - .add_value(-0.375f32, 0f32, 0f32) + .add_spline_value(-1f32, spline.into()) + .add_spline_value(-0.78f32, spline2_ref.clone()) + .add_spline_value(-0.5775f32, spline2_ref) + .add_fixed_value(-0.375f32, 0f32) .build() } #[allow(clippy::too_many_arguments)] -fn create_continental_offset_spline<'a>( - erosion: Arc>, - ridges: Arc>, +fn create_continental_offset_spline( + erosion: SharedComponentReference, + ridges: SharedComponentReference, continental: f32, f: f32, g: f32, @@ -286,20 +264,10 @@ fn create_continental_offset_spline<'a>( bl: bool, bl2: bool, amplifier: FloatAmplifier, -) -> Spline<'a> { - let spline = create_ridges_spline( - ridges.clone(), - lerp(h, 0.6f32, 1.5f32), - bl2, - amplifier.clone(), - ); - let spline2 = create_ridges_spline( - ridges.clone(), - lerp(h, 0.6f32, 1f32), - bl2, - amplifier.clone(), - ); - let spline3 = create_ridges_spline(ridges.clone(), h, bl2, amplifier.clone()); +) -> ImmutableSpline { + let spline = create_ridges_spline(ridges.clone(), lerp(h, 0.6f32, 1.5f32), bl2, amplifier); + let spline2 = create_ridges_spline(ridges.clone(), lerp(h, 0.6f32, 1f32), bl2, amplifier); + let spline3 = create_ridges_spline(ridges.clone(), h, bl2, amplifier); let spline4 = create_standard_spline( ridges.clone(), continental - 0.15f32, @@ -308,7 +276,7 @@ fn create_continental_offset_spline<'a>( 0.5f32 * h, 0.6f32 * h, 0.5f32, - amplifier.clone(), + amplifier, ); let spline5 = create_standard_spline( @@ -319,97 +287,75 @@ fn create_continental_offset_spline<'a>( 0.5f32 * h, 0.6f32 * h, 0.5f32, - amplifier.clone(), - ); - let spline6 = create_standard_spline( - ridges.clone(), - continental, - i, - i, - f, - g, - 0.5f32, - amplifier.clone(), - ); - let spline7 = create_standard_spline( - ridges.clone(), - continental, - i, - i, - f, - g, - 0.5f32, - amplifier.clone(), + amplifier, ); - let spline8 = SplineBuilder::new(ridges.clone(), amplifier.clone()) - .add_value(-1f32, continental, 0f32) - .add_spline(-0.4f32, SplineValue::Spline(spline6.clone()), 0f32) - .add_value(0f32, g + 0.07f32, 0f32) - .build(); - let spline9 = create_standard_spline( - ridges.clone(), - -0.02f32, - j, - j, - f, - g, - 0f32, - amplifier.clone(), - ); + let spline6_ref: ImmutableSplineRef = + create_standard_spline(ridges.clone(), continental, i, i, f, g, 0.5f32, amplifier).into(); + + let spline7_ref: ImmutableSplineRef = + create_standard_spline(ridges.clone(), continental, i, i, f, g, 0.5f32, amplifier).into(); - let mut builder = SplineBuilder::new(erosion, amplifier); + let spline8_ref: ImmutableSplineRef = SplineBuilder::new(ridges.clone(), amplifier) + .add_fixed_value(-1f32, continental) + .add_spline_value(-0.4f32, spline6_ref.clone()) + .add_fixed_value(0f32, g + 0.07f32) + .build() + .into(); + + let spline9 = create_standard_spline(ridges.clone(), -0.02f32, j, j, f, g, 0f32, amplifier); + + let builder = SplineBuilder::new(erosion, amplifier); let builder = builder - .add_spline(-0.85f32, SplineValue::Spline(spline), 0f32) - .add_spline(-0.7f32, SplineValue::Spline(spline2), 0f32) - .add_spline(-0.4f32, SplineValue::Spline(spline3), 0f32) - .add_spline(-0.35f32, SplineValue::Spline(spline4), 0f32) - .add_spline(-0.1f32, SplineValue::Spline(spline5), 0f32) - .add_spline(0.2f32, SplineValue::Spline(spline6), 0f32); + .add_spline_value(-0.85f32, spline.into()) + .add_spline_value(-0.7f32, spline2.into()) + .add_spline_value(-0.4f32, spline3.into()) + .add_spline_value(-0.35f32, spline4.into()) + .add_spline_value(-0.1f32, spline5.into()) + .add_spline_value(0.2f32, spline6_ref); let builder = if bl { builder - .add_spline(0.4f32, SplineValue::Spline(spline7.clone()), 0f32) - .add_spline(0.45f32, SplineValue::Spline(spline8.clone()), 0f32) - .add_spline(0.55f32, SplineValue::Spline(spline8), 0f32) - .add_spline(0.58f32, SplineValue::Spline(spline7), 0f32) + .add_spline_value(0.4f32, spline7_ref.clone()) + .add_spline_value(0.45f32, spline8_ref.clone()) + .add_spline_value(0.55f32, spline8_ref) + .add_spline_value(0.58f32, spline7_ref) } else { builder }; - builder - .add_spline(0.7f32, SplineValue::Spline(spline9), 0f32) - .build() + builder.add_spline_value(0.7f32, spline9.into()).build() } -pub fn create_offset_spline<'a>( - contentents: Arc>, - erosion: Arc>, - ridges: Arc>, +pub fn create_offset_spline( + contentents: SharedComponentReference, + erosion: SharedComponentReference, + ridges_folded: SharedComponentReference, amplified: bool, -) -> Spline<'a> { +) -> ImmutableSpline { let amplification = if amplified { FloatAmplifier::OffsetAmplifier } else { FloatAmplifier::Identity }; - let spline = create_continental_offset_spline( + let spline1_ref: ImmutableSplineRef = create_continental_offset_spline( erosion.clone(), - ridges.clone(), + ridges_folded.clone(), -0.15f32, 0f32, 0f32, - 0.132, + 0.1f32, 0f32, -0.03f32, false, false, - amplification.clone(), - ); + amplification, + ) + .into(); let spline2 = create_continental_offset_spline( erosion.clone(), - ridges.clone(), + ridges_folded.clone(), -0.1f32, 0.03f32, 0.1f32, @@ -418,11 +364,11 @@ pub fn create_offset_spline<'a>( -0.03f32, false, false, - amplification.clone(), + amplification, ); let spline3 = create_continental_offset_spline( erosion.clone(), - ridges.clone(), + ridges_folded.clone(), -0.1f32, 0.03f32, 0.1f32, @@ -431,11 +377,11 @@ pub fn create_offset_spline<'a>( -0.03f32, true, true, - amplification.clone(), + amplification, ); let spline4 = create_continental_offset_spline( erosion.clone(), - ridges.clone(), + ridges_folded.clone(), -0.05f32, 0.03f32, 0.1f32, @@ -444,30 +390,30 @@ pub fn create_offset_spline<'a>( 0.01f32, true, true, - amplification.clone(), + amplification, ); - SplineBuilder::new(contentents.clone(), amplification.clone()) - .add_value(-1.1f32, 0.044f32, 0f32) - .add_value(-1.02f32, -0.2222f32, 0f32) - .add_value(-0.51f32, -0.2222f32, 0f32) - .add_value(-0.44f32, -0.12f32, 0f32) - .add_value(-0.18f32, -0.12f32, 0f32) - .add_spline(-0.16f32, SplineValue::Spline(spline.clone()), 0f32) - .add_spline(-0.15f32, SplineValue::Spline(spline), 0f32) - .add_spline(-0.1f32, SplineValue::Spline(spline2), 0f32) - .add_spline(0.25f32, SplineValue::Spline(spline3), 0f32) - .add_spline(1f32, SplineValue::Spline(spline4), 0f32) + SplineBuilder::new(contentents.clone(), amplification) + .add_fixed_value(-1.1f32, 0.044f32) + .add_fixed_value(-1.02f32, -0.2222f32) + .add_fixed_value(-0.51f32, -0.2222f32) + .add_fixed_value(-0.44f32, -0.12f32) + .add_fixed_value(-0.18f32, -0.12f32) + .add_spline_value(-0.16f32, spline1_ref.clone()) + .add_spline_value(-0.15f32, spline1_ref) + .add_spline_value(-0.1f32, spline2.into()) + .add_spline_value(0.25f32, spline3.into()) + .add_spline_value(1f32, spline4.into()) .build() } -pub fn create_factor_spline<'a>( - continents: Arc>, - erosion: Arc>, - ridges: Arc>, - ridges_folded: Arc>, +pub fn create_factor_spline( + continents: SharedComponentReference, + erosion: SharedComponentReference, + ridges: SharedComponentReference, + ridges_folded: SharedComponentReference, amplified: bool, -) -> Spline<'a> { +) -> ImmutableSpline { let amplification = if amplified { FloatAmplifier::FactorAmplifier } else { @@ -475,76 +421,76 @@ pub fn create_factor_spline<'a>( }; SplineBuilder::new(continents, FloatAmplifier::Identity) - .add_value(-0.19f32, 3.95f32, 0f32) - .add_spline( + .add_fixed_value(-0.19f32, 3.95f32) + .add_spline_value( -0.15f32, - SplineValue::Spline(create_total_spline( + create_total_spline( erosion.clone(), ridges.clone(), ridges_folded.clone(), 6.25f32, true, FloatAmplifier::Identity, - )), - 0f32, + ) + .into(), ) - .add_spline( + .add_spline_value( -0.1f32, - SplineValue::Spline(create_total_spline( + create_total_spline( erosion.clone(), ridges.clone(), ridges_folded.clone(), 5.47f32, true, - amplification.clone(), - )), - 0f32, + amplification, + ) + .into(), ) - .add_spline( + .add_spline_value( 0.03f32, - SplineValue::Spline(create_total_spline( + create_total_spline( erosion.clone(), ridges.clone(), ridges_folded.clone(), 5.08f32, true, - amplification.clone(), - )), - 0f32, + amplification, + ) + .into(), ) - .add_spline( + .add_spline_value( 0.06f32, - SplineValue::Spline(create_total_spline( + create_total_spline( erosion, ridges, ridges_folded, 4.69f32, false, amplification, - )), - 0f32, + ) + .into(), ) .build() } -pub fn create_jaggedness_spline<'a>( - continents: Arc>, - erosion: Arc>, - ridges: Arc>, - ridges_folded: Arc>, +pub fn create_jaggedness_spline( + continents: SharedComponentReference, + erosion: SharedComponentReference, + ridges: SharedComponentReference, + ridges_folded: SharedComponentReference, amplified: bool, -) -> Spline<'a> { +) -> ImmutableSpline { let amplification = if amplified { FloatAmplifier::JaggednessAmplifier } else { FloatAmplifier::Identity }; - SplineBuilder::new(continents.clone(), amplification.clone()) - .add_value(-0.11f32, 0f32, 0f32) - .add_spline( + SplineBuilder::new(continents.clone(), amplification) + .add_fixed_value(-0.11f32, 0f32) + .add_spline_value( 0.03f32, - SplineValue::Spline(create_eroded_ridges_spline( + create_eroded_ridges_spline( erosion.clone(), ridges.clone(), ridges_folded.clone(), @@ -552,13 +498,13 @@ pub fn create_jaggedness_spline<'a>( 0.5f32, 0f32, 0f32, - amplification.clone(), - )), - 0f32, + amplification, + ) + .into(), ) - .add_spline( + .add_spline_value( 0.65f32, - SplineValue::Spline(create_eroded_ridges_spline( + create_eroded_ridges_spline( erosion, ridges, ridges_folded, @@ -567,87 +513,16917 @@ pub fn create_jaggedness_spline<'a>( 1f32, 0f32, amplification, - )), - 0f32, + ) + .into(), ) .build() } #[cfg(test)] mod test { - use crate::world_gen::noise::{ - density::{ - spline::FloatAmplifier, terrain_helpers::create_offset_spline, BuiltInNoiseFunctions, - NoisePos, UnblendedNoisePos, + use pumpkin_core::random::{legacy_rand::LegacyRand, RandomDeriver, RandomImpl}; + + use crate::world_gen::noise::density::{ + built_in_density_function::{ + CONTINENTS_OVERWORLD, EROSION_OVERWORLD, RIDGES_FOLDED_OVERWORLD, RIDGES_OVERWORLD, }, - BuiltInNoiseParams, + component_functions::{ComponentReference, NoEnvironment, SharedComponentReference}, + spline::{FloatAmplifier, ImmutableSplineRef, SplineFunction}, + terrain_helpers::{ + create_continental_offset_spline, create_eroded_ridges_spline, + create_folded_ridges_spline, create_standard_spline, get_offset_value, skew_map, + }, + test::{FakeEnvironment, OwnedConverter, TestConverter}, + NoisePos, UnblendedNoisePos, }; - use super::create_continental_offset_spline; + use super::{ + create_offset_spline, create_ridges_part_spline, create_ridges_spline, create_total_spline, + }; #[test] - fn test_offset_correctness() { - let noise_params = BuiltInNoiseParams::new(); - let noise_functions = BuiltInNoiseFunctions::new(&noise_params); - - let pos = NoisePos::Unblended(UnblendedNoisePos { x: 0, y: 0, z: 0 }); + fn test_offset_value() { + let values = [ + ((-0.5f32, -1.0f32, -0.5f32), 0.0f32), + ((-0.5f32, -1.0f32, -0.4f32), -0.2222f32), + ((-0.5f32, -1.0f32, -0.3f32), -0.2222f32), + ((-0.5f32, -1.0f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -1.0f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -1.0f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.9f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.9f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.9f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.9f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.9f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.9f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.79999995f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.79999995f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.79999995f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.79999995f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.79999995f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.6999999f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.6999999f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.6999999f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.6999999f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.6999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.5999999f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.5999999f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.5999999f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.5999999f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.5999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.4999999f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.4999999f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.4999999f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.4999999f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.4999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.39999992f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.39999992f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.39999992f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.39999992f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.39999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.29999992f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.29999992f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.29999992f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.29999992f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.29999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.19999993f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.19999993f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.19999993f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.19999993f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.19999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-0.5f32, -0.09999993f32, -0.4f32), -0.2222f32), + ((-0.5f32, -0.09999993f32, -0.3f32), -0.2222f32), + ((-0.5f32, -0.09999993f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, -0.09999993f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, -0.09999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-0.5f32, 7.4505806E-8f32, -0.4f32), -0.2222f32), + ((-0.5f32, 7.4505806E-8f32, -0.3f32), -0.2222f32), + ((-0.5f32, 7.4505806E-8f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, 7.4505806E-8f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, 7.4505806E-8f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-0.5f32, 0.100000076f32, -0.4f32), -0.2222f32), + ((-0.5f32, 0.100000076f32, -0.3f32), -0.2222f32), + ((-0.5f32, 0.100000076f32, -0.20000002f32), -0.2222f32), + ((-0.5f32, 0.100000076f32, -0.10000002f32), -0.2222f32), + ((-0.5f32, 0.100000076f32, -1.4901161E-8f32), -0.2222f32), + ((-0.5f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-0.5f32, 0.20000008f32, -0.4f32), -0.21474653f32), + ((-0.5f32, 0.20000008f32, -0.3f32), -0.21474653f32), + ((-0.5f32, 0.20000008f32, -0.20000002f32), -0.21474653f32), + ((-0.5f32, 0.20000008f32, -0.10000002f32), -0.21474653f32), + ((-0.5f32, 0.20000008f32, -1.4901161E-8f32), -0.21474653f32), + ((-0.5f32, 0.30000007f32, -0.5f32), 0.0f32), + ((-0.5f32, 0.30000007f32, -0.4f32), -0.14930873f32), + ((-0.5f32, 0.30000007f32, -0.3f32), -0.14930873f32), + ((-0.5f32, 0.30000007f32, -0.20000002f32), -0.14930873f32), + ((-0.5f32, 0.30000007f32, -0.10000002f32), -0.14930873f32), + ((-0.5f32, 0.30000007f32, -1.4901161E-8f32), -0.14930873f32), + ((-0.5f32, 0.40000007f32, -0.5f32), 0.0f32), + ((-0.5f32, 0.40000007f32, -0.4f32), -0.08387093f32), + ((-0.5f32, 0.40000007f32, -0.3f32), -0.08387093f32), + ((-0.5f32, 0.40000007f32, -0.20000002f32), -0.08387093f32), + ((-0.5f32, 0.40000007f32, -0.10000002f32), -0.08387093f32), + ((-0.5f32, 0.40000007f32, -1.4901161E-8f32), -0.08387093f32), + ((-0.5f32, 0.50000006f32, -0.5f32), 0.0f32), + ((-0.5f32, 0.50000006f32, -0.4f32), -0.018433183f32), + ((-0.5f32, 0.50000006f32, -0.3f32), -0.018433183f32), + ((-0.5f32, 0.50000006f32, -0.20000002f32), -0.018433183f32), + ((-0.5f32, 0.50000006f32, -0.10000002f32), -0.018433183f32), + ((-0.5f32, 0.50000006f32, -1.4901161E-8f32), -0.018433183f32), + ((-0.5f32, 0.6000001f32, -0.5f32), 0.04700464f32), + ((-0.5f32, 0.6000001f32, -0.4f32), 0.04700464f32), + ((-0.5f32, 0.6000001f32, -0.3f32), 0.04700464f32), + ((-0.5f32, 0.6000001f32, -0.20000002f32), 0.04700464f32), + ((-0.5f32, 0.6000001f32, -0.10000002f32), 0.04700464f32), + ((-0.5f32, 0.6000001f32, -1.4901161E-8f32), 0.04700464f32), + ((-0.5f32, 0.7000001f32, -0.5f32), 0.112442434f32), + ((-0.5f32, 0.7000001f32, -0.4f32), 0.112442434f32), + ((-0.5f32, 0.7000001f32, -0.3f32), 0.112442434f32), + ((-0.5f32, 0.7000001f32, -0.20000002f32), 0.112442434f32), + ((-0.5f32, 0.7000001f32, -0.10000002f32), 0.112442434f32), + ((-0.5f32, 0.7000001f32, -1.4901161E-8f32), 0.112442434f32), + ((-0.5f32, 0.80000013f32, -0.5f32), 0.17788026f32), + ((-0.5f32, 0.80000013f32, -0.4f32), 0.17788026f32), + ((-0.5f32, 0.80000013f32, -0.3f32), 0.17788026f32), + ((-0.5f32, 0.80000013f32, -0.20000002f32), 0.17788026f32), + ((-0.5f32, 0.80000013f32, -0.10000002f32), 0.17788026f32), + ((-0.5f32, 0.80000013f32, -1.4901161E-8f32), 0.17788026f32), + ((-0.5f32, 0.90000015f32, -0.5f32), 0.24331802f32), + ((-0.5f32, 0.90000015f32, -0.4f32), 0.24331802f32), + ((-0.5f32, 0.90000015f32, -0.3f32), 0.24331802f32), + ((-0.5f32, 0.90000015f32, -0.20000002f32), 0.24331802f32), + ((-0.5f32, 0.90000015f32, -0.10000002f32), 0.24331802f32), + ((-0.5f32, 0.90000015f32, -1.4901161E-8f32), 0.24331802f32), + ((-0.5f32, 1.0000001f32, -0.5f32), 0.3087558f32), + ((-0.5f32, 1.0000001f32, -0.4f32), 0.3087558f32), + ((-0.5f32, 1.0000001f32, -0.3f32), 0.3087558f32), + ((-0.5f32, 1.0000001f32, -0.20000002f32), 0.3087558f32), + ((-0.5f32, 1.0000001f32, -0.10000002f32), 0.3087558f32), + ((-0.5f32, 1.0000001f32, -1.4901161E-8f32), 0.3087558f32), + ((-0.4f32, -1.0f32, -0.5f32), 0.0f32), + ((-0.4f32, -1.0f32, -0.4f32), 0.0f32), + ((-0.4f32, -1.0f32, -0.3f32), -0.2222f32), + ((-0.4f32, -1.0f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -1.0f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -1.0f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.9f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.9f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.9f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.9f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.9f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.9f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.79999995f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.79999995f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.79999995f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.79999995f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.79999995f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.6999999f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.6999999f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.6999999f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.6999999f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.6999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.5999999f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.5999999f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.5999999f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.5999999f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.5999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.4999999f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.4999999f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.4999999f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.4999999f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.4999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.39999992f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.39999992f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.39999992f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.39999992f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.39999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.29999992f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.29999992f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.29999992f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.29999992f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.29999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.19999993f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.19999993f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.19999993f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.19999993f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.19999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-0.4f32, -0.09999993f32, -0.4f32), 0.0f32), + ((-0.4f32, -0.09999993f32, -0.3f32), -0.2222f32), + ((-0.4f32, -0.09999993f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, -0.09999993f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, -0.09999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-0.4f32, 7.4505806E-8f32, -0.4f32), 0.0f32), + ((-0.4f32, 7.4505806E-8f32, -0.3f32), -0.2222f32), + ((-0.4f32, 7.4505806E-8f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, 7.4505806E-8f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, 7.4505806E-8f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-0.4f32, 0.100000076f32, -0.4f32), 0.0f32), + ((-0.4f32, 0.100000076f32, -0.3f32), -0.2222f32), + ((-0.4f32, 0.100000076f32, -0.20000002f32), -0.2222f32), + ((-0.4f32, 0.100000076f32, -0.10000002f32), -0.2222f32), + ((-0.4f32, 0.100000076f32, -1.4901161E-8f32), -0.2222f32), + ((-0.4f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-0.4f32, 0.20000008f32, -0.4f32), 0.0f32), + ((-0.4f32, 0.20000008f32, -0.3f32), -0.18709676f32), + ((-0.4f32, 0.20000008f32, -0.20000002f32), -0.18709676f32), + ((-0.4f32, 0.20000008f32, -0.10000002f32), -0.18709676f32), + ((-0.4f32, 0.20000008f32, -1.4901161E-8f32), -0.18709676f32), + ((-0.4f32, 0.30000007f32, -0.5f32), 0.0f32), + ((-0.4f32, 0.30000007f32, -0.4f32), 0.0f32), + ((-0.4f32, 0.30000007f32, -0.3f32), -0.119354814f32), + ((-0.4f32, 0.30000007f32, -0.20000002f32), -0.119354814f32), + ((-0.4f32, 0.30000007f32, -0.10000002f32), -0.119354814f32), + ((-0.4f32, 0.30000007f32, -1.4901161E-8f32), -0.119354814f32), + ((-0.4f32, 0.40000007f32, -0.5f32), 0.0f32), + ((-0.4f32, 0.40000007f32, -0.4f32), 0.0f32), + ((-0.4f32, 0.40000007f32, -0.3f32), -0.05161287f32), + ((-0.4f32, 0.40000007f32, -0.20000002f32), -0.05161287f32), + ((-0.4f32, 0.40000007f32, -0.10000002f32), -0.05161287f32), + ((-0.4f32, 0.40000007f32, -1.4901161E-8f32), -0.05161287f32), + ((-0.4f32, 0.50000006f32, -0.5f32), 0.016129047f32), + ((-0.4f32, 0.50000006f32, -0.4f32), 0.016129047f32), + ((-0.4f32, 0.50000006f32, -0.3f32), 0.016129047f32), + ((-0.4f32, 0.50000006f32, -0.20000002f32), 0.016129047f32), + ((-0.4f32, 0.50000006f32, -0.10000002f32), 0.016129047f32), + ((-0.4f32, 0.50000006f32, -1.4901161E-8f32), 0.016129047f32), + ((-0.4f32, 0.6000001f32, -0.5f32), 0.08387101f32), + ((-0.4f32, 0.6000001f32, -0.4f32), 0.08387101f32), + ((-0.4f32, 0.6000001f32, -0.3f32), 0.08387101f32), + ((-0.4f32, 0.6000001f32, -0.20000002f32), 0.08387101f32), + ((-0.4f32, 0.6000001f32, -0.10000002f32), 0.08387101f32), + ((-0.4f32, 0.6000001f32, -1.4901161E-8f32), 0.08387101f32), + ((-0.4f32, 0.7000001f32, -0.5f32), 0.15161294f32), + ((-0.4f32, 0.7000001f32, -0.4f32), 0.15161294f32), + ((-0.4f32, 0.7000001f32, -0.3f32), 0.15161294f32), + ((-0.4f32, 0.7000001f32, -0.20000002f32), 0.15161294f32), + ((-0.4f32, 0.7000001f32, -0.10000002f32), 0.15161294f32), + ((-0.4f32, 0.7000001f32, -1.4901161E-8f32), 0.15161294f32), + ((-0.4f32, 0.80000013f32, -0.5f32), 0.2193549f32), + ((-0.4f32, 0.80000013f32, -0.4f32), 0.2193549f32), + ((-0.4f32, 0.80000013f32, -0.3f32), 0.2193549f32), + ((-0.4f32, 0.80000013f32, -0.20000002f32), 0.2193549f32), + ((-0.4f32, 0.80000013f32, -0.10000002f32), 0.2193549f32), + ((-0.4f32, 0.80000013f32, -1.4901161E-8f32), 0.2193549f32), + ((-0.4f32, 0.90000015f32, -0.5f32), 0.28709683f32), + ((-0.4f32, 0.90000015f32, -0.4f32), 0.28709683f32), + ((-0.4f32, 0.90000015f32, -0.3f32), 0.28709683f32), + ((-0.4f32, 0.90000015f32, -0.20000002f32), 0.28709683f32), + ((-0.4f32, 0.90000015f32, -0.10000002f32), 0.28709683f32), + ((-0.4f32, 0.90000015f32, -1.4901161E-8f32), 0.28709683f32), + ((-0.4f32, 1.0000001f32, -0.5f32), 0.35483873f32), + ((-0.4f32, 1.0000001f32, -0.4f32), 0.35483873f32), + ((-0.4f32, 1.0000001f32, -0.3f32), 0.35483873f32), + ((-0.4f32, 1.0000001f32, -0.20000002f32), 0.35483873f32), + ((-0.4f32, 1.0000001f32, -0.10000002f32), 0.35483873f32), + ((-0.4f32, 1.0000001f32, -1.4901161E-8f32), 0.35483873f32), + ((-0.3f32, -1.0f32, -0.5f32), 0.0f32), + ((-0.3f32, -1.0f32, -0.4f32), 0.0f32), + ((-0.3f32, -1.0f32, -0.3f32), 0.0f32), + ((-0.3f32, -1.0f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -1.0f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -1.0f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.9f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.9f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.9f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.9f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.9f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.9f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.79999995f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.79999995f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.79999995f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.79999995f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.79999995f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.6999999f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.6999999f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.6999999f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.6999999f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.6999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.5999999f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.5999999f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.5999999f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.5999999f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.5999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.4999999f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.4999999f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.4999999f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.4999999f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.4999999f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.39999992f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.39999992f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.39999992f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.39999992f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.39999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.29999992f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.29999992f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.29999992f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.29999992f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.29999992f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.19999993f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.19999993f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.19999993f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.19999993f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.19999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-0.3f32, -0.09999993f32, -0.4f32), 0.0f32), + ((-0.3f32, -0.09999993f32, -0.3f32), 0.0f32), + ((-0.3f32, -0.09999993f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, -0.09999993f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, -0.09999993f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-0.3f32, 7.4505806E-8f32, -0.4f32), 0.0f32), + ((-0.3f32, 7.4505806E-8f32, -0.3f32), 0.0f32), + ((-0.3f32, 7.4505806E-8f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, 7.4505806E-8f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, 7.4505806E-8f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-0.3f32, 0.100000076f32, -0.4f32), 0.0f32), + ((-0.3f32, 0.100000076f32, -0.3f32), 0.0f32), + ((-0.3f32, 0.100000076f32, -0.20000002f32), -0.2222f32), + ((-0.3f32, 0.100000076f32, -0.10000002f32), -0.2222f32), + ((-0.3f32, 0.100000076f32, -1.4901161E-8f32), -0.2222f32), + ((-0.3f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-0.3f32, 0.20000008f32, -0.4f32), 0.0f32), + ((-0.3f32, 0.20000008f32, -0.3f32), 0.0f32), + ((-0.3f32, 0.20000008f32, -0.20000002f32), -0.159447f32), + ((-0.3f32, 0.20000008f32, -0.10000002f32), -0.159447f32), + ((-0.3f32, 0.20000008f32, -1.4901161E-8f32), -0.159447f32), + ((-0.3f32, 0.30000007f32, -0.5f32), 0.0f32), + ((-0.3f32, 0.30000007f32, -0.4f32), 0.0f32), + ((-0.3f32, 0.30000007f32, -0.3f32), 0.0f32), + ((-0.3f32, 0.30000007f32, -0.20000002f32), -0.08940089f32), + ((-0.3f32, 0.30000007f32, -0.10000002f32), -0.08940089f32), + ((-0.3f32, 0.30000007f32, -1.4901161E-8f32), -0.08940089f32), + ((-0.3f32, 0.40000007f32, -0.5f32), 0.0f32), + ((-0.3f32, 0.40000007f32, -0.4f32), 0.0f32), + ((-0.3f32, 0.40000007f32, -0.3f32), 0.0f32), + ((-0.3f32, 0.40000007f32, -0.20000002f32), -0.01935479f32), + ((-0.3f32, 0.40000007f32, -0.10000002f32), -0.01935479f32), + ((-0.3f32, 0.40000007f32, -1.4901161E-8f32), -0.01935479f32), + ((-0.3f32, 0.50000006f32, -0.5f32), 0.050691247f32), + ((-0.3f32, 0.50000006f32, -0.4f32), 0.050691247f32), + ((-0.3f32, 0.50000006f32, -0.3f32), 0.050691247f32), + ((-0.3f32, 0.50000006f32, -0.20000002f32), 0.050691247f32), + ((-0.3f32, 0.50000006f32, -0.10000002f32), 0.050691247f32), + ((-0.3f32, 0.50000006f32, -1.4901161E-8f32), 0.050691247f32), + ((-0.3f32, 0.6000001f32, -0.5f32), 0.120737374f32), + ((-0.3f32, 0.6000001f32, -0.4f32), 0.120737374f32), + ((-0.3f32, 0.6000001f32, -0.3f32), 0.120737374f32), + ((-0.3f32, 0.6000001f32, -0.20000002f32), 0.120737374f32), + ((-0.3f32, 0.6000001f32, -0.10000002f32), 0.120737374f32), + ((-0.3f32, 0.6000001f32, -1.4901161E-8f32), 0.120737374f32), + ((-0.3f32, 0.7000001f32, -0.5f32), 0.19078344f32), + ((-0.3f32, 0.7000001f32, -0.4f32), 0.19078344f32), + ((-0.3f32, 0.7000001f32, -0.3f32), 0.19078344f32), + ((-0.3f32, 0.7000001f32, -0.20000002f32), 0.19078344f32), + ((-0.3f32, 0.7000001f32, -0.10000002f32), 0.19078344f32), + ((-0.3f32, 0.7000001f32, -1.4901161E-8f32), 0.19078344f32), + ((-0.3f32, 0.80000013f32, -0.5f32), 0.26082957f32), + ((-0.3f32, 0.80000013f32, -0.4f32), 0.26082957f32), + ((-0.3f32, 0.80000013f32, -0.3f32), 0.26082957f32), + ((-0.3f32, 0.80000013f32, -0.20000002f32), 0.26082957f32), + ((-0.3f32, 0.80000013f32, -0.10000002f32), 0.26082957f32), + ((-0.3f32, 0.80000013f32, -1.4901161E-8f32), 0.26082957f32), + ((-0.3f32, 0.90000015f32, -0.5f32), 0.33087564f32), + ((-0.3f32, 0.90000015f32, -0.4f32), 0.33087564f32), + ((-0.3f32, 0.90000015f32, -0.3f32), 0.33087564f32), + ((-0.3f32, 0.90000015f32, -0.20000002f32), 0.33087564f32), + ((-0.3f32, 0.90000015f32, -0.10000002f32), 0.33087564f32), + ((-0.3f32, 0.90000015f32, -1.4901161E-8f32), 0.33087564f32), + ((-0.3f32, 1.0000001f32, -0.5f32), 0.40092167f32), + ((-0.3f32, 1.0000001f32, -0.4f32), 0.40092167f32), + ((-0.3f32, 1.0000001f32, -0.3f32), 0.40092167f32), + ((-0.3f32, 1.0000001f32, -0.20000002f32), 0.40092167f32), + ((-0.3f32, 1.0000001f32, -0.10000002f32), 0.40092167f32), + ((-0.3f32, 1.0000001f32, -1.4901161E-8f32), 0.40092167f32), + ((-0.20000002f32, -1.0f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -1.0f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -1.0f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -1.0f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -1.0f32, -0.10000002f32), -0.2222f32), + ((-0.20000002f32, -1.0f32, -1.4901161E-8f32), -0.2222f32), + ((-0.20000002f32, -0.9f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.9f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.9f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.9f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.9f32, -0.10000002f32), -0.2222f32), + ((-0.20000002f32, -0.9f32, -1.4901161E-8f32), -0.2222f32), + ((-0.20000002f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.79999995f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.79999995f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.79999995f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.79999995f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.79999995f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.6999999f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.6999999f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.6999999f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.6999999f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.6999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.5999999f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.5999999f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.5999999f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.5999999f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.5999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.4999999f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.4999999f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.4999999f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.4999999f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.4999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.39999992f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.39999992f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.39999992f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.39999992f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.39999992f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.29999992f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.29999992f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.29999992f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.29999992f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.29999992f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.19999993f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.19999993f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.19999993f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.19999993f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.19999993f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-0.20000002f32, -0.09999993f32, -0.4f32), 0.0f32), + ((-0.20000002f32, -0.09999993f32, -0.3f32), 0.0f32), + ((-0.20000002f32, -0.09999993f32, -0.20000002f32), 0.0f32), + ((-0.20000002f32, -0.09999993f32, -0.10000002f32), -0.2222f32), + ( + (-0.20000002f32, -0.09999993f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-0.20000002f32, 7.4505806E-8f32, -0.4f32), 0.0f32), + ((-0.20000002f32, 7.4505806E-8f32, -0.3f32), 0.0f32), + ((-0.20000002f32, 7.4505806E-8f32, -0.20000002f32), 0.0f32), + ( + (-0.20000002f32, 7.4505806E-8f32, -0.10000002f32), + -0.2222f32, + ), + ( + (-0.20000002f32, 7.4505806E-8f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.20000002f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-0.20000002f32, 0.100000076f32, -0.4f32), 0.0f32), + ((-0.20000002f32, 0.100000076f32, -0.3f32), 0.0f32), + ((-0.20000002f32, 0.100000076f32, -0.20000002f32), 0.0f32), + ( + (-0.20000002f32, 0.100000076f32, -0.10000002f32), + -0.20414744f32, + ), + ( + (-0.20000002f32, 0.100000076f32, -1.4901161E-8f32), + -0.20414744f32, + ), + ((-0.20000002f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-0.20000002f32, 0.20000008f32, -0.4f32), 0.0f32), + ((-0.20000002f32, 0.20000008f32, -0.3f32), 0.0f32), + ((-0.20000002f32, 0.20000008f32, -0.20000002f32), 0.0f32), + ( + (-0.20000002f32, 0.20000008f32, -0.10000002f32), + -0.13179725f32, + ), + ( + (-0.20000002f32, 0.20000008f32, -1.4901161E-8f32), + -0.13179725f32, + ), + ((-0.20000002f32, 0.30000007f32, -0.5f32), 0.0f32), + ((-0.20000002f32, 0.30000007f32, -0.4f32), 0.0f32), + ((-0.20000002f32, 0.30000007f32, -0.3f32), 0.0f32), + ((-0.20000002f32, 0.30000007f32, -0.20000002f32), 0.0f32), + ( + (-0.20000002f32, 0.30000007f32, -0.10000002f32), + -0.05944702f32, + ), + ( + (-0.20000002f32, 0.30000007f32, -1.4901161E-8f32), + -0.05944702f32, + ), + ((-0.20000002f32, 0.40000007f32, -0.5f32), 0.012903243f32), + ((-0.20000002f32, 0.40000007f32, -0.4f32), 0.012903243f32), + ((-0.20000002f32, 0.40000007f32, -0.3f32), 0.012903243f32), + ( + (-0.20000002f32, 0.40000007f32, -0.20000002f32), + 0.012903243f32, + ), + ( + (-0.20000002f32, 0.40000007f32, -0.10000002f32), + 0.012903243f32, + ), + ( + (-0.20000002f32, 0.40000007f32, -1.4901161E-8f32), + 0.012903243f32, + ), + ((-0.20000002f32, 0.50000006f32, -0.5f32), 0.08525342f32), + ((-0.20000002f32, 0.50000006f32, -0.4f32), 0.08525342f32), + ((-0.20000002f32, 0.50000006f32, -0.3f32), 0.08525342f32), + ( + (-0.20000002f32, 0.50000006f32, -0.20000002f32), + 0.08525342f32, + ), + ( + (-0.20000002f32, 0.50000006f32, -0.10000002f32), + 0.08525342f32, + ), + ( + (-0.20000002f32, 0.50000006f32, -1.4901161E-8f32), + 0.08525342f32, + ), + ((-0.20000002f32, 0.6000001f32, -0.5f32), 0.15760368f32), + ((-0.20000002f32, 0.6000001f32, -0.4f32), 0.15760368f32), + ((-0.20000002f32, 0.6000001f32, -0.3f32), 0.15760368f32), + ( + (-0.20000002f32, 0.6000001f32, -0.20000002f32), + 0.15760368f32, + ), + ( + (-0.20000002f32, 0.6000001f32, -0.10000002f32), + 0.15760368f32, + ), + ( + (-0.20000002f32, 0.6000001f32, -1.4901161E-8f32), + 0.15760368f32, + ), + ((-0.20000002f32, 0.7000001f32, -0.5f32), 0.22995391f32), + ((-0.20000002f32, 0.7000001f32, -0.4f32), 0.22995391f32), + ((-0.20000002f32, 0.7000001f32, -0.3f32), 0.22995391f32), + ( + (-0.20000002f32, 0.7000001f32, -0.20000002f32), + 0.22995391f32, + ), + ( + (-0.20000002f32, 0.7000001f32, -0.10000002f32), + 0.22995391f32, + ), + ( + (-0.20000002f32, 0.7000001f32, -1.4901161E-8f32), + 0.22995391f32, + ), + ((-0.20000002f32, 0.80000013f32, -0.5f32), 0.30230418f32), + ((-0.20000002f32, 0.80000013f32, -0.4f32), 0.30230418f32), + ((-0.20000002f32, 0.80000013f32, -0.3f32), 0.30230418f32), + ( + (-0.20000002f32, 0.80000013f32, -0.20000002f32), + 0.30230418f32, + ), + ( + (-0.20000002f32, 0.80000013f32, -0.10000002f32), + 0.30230418f32, + ), + ( + (-0.20000002f32, 0.80000013f32, -1.4901161E-8f32), + 0.30230418f32, + ), + ((-0.20000002f32, 0.90000015f32, -0.5f32), 0.3746544f32), + ((-0.20000002f32, 0.90000015f32, -0.4f32), 0.3746544f32), + ((-0.20000002f32, 0.90000015f32, -0.3f32), 0.3746544f32), + ( + (-0.20000002f32, 0.90000015f32, -0.20000002f32), + 0.3746544f32, + ), + ( + (-0.20000002f32, 0.90000015f32, -0.10000002f32), + 0.3746544f32, + ), + ( + (-0.20000002f32, 0.90000015f32, -1.4901161E-8f32), + 0.3746544f32, + ), + ((-0.20000002f32, 1.0000001f32, -0.5f32), 0.4470046f32), + ((-0.20000002f32, 1.0000001f32, -0.4f32), 0.4470046f32), + ((-0.20000002f32, 1.0000001f32, -0.3f32), 0.4470046f32), + ((-0.20000002f32, 1.0000001f32, -0.20000002f32), 0.4470046f32), + ((-0.20000002f32, 1.0000001f32, -0.10000002f32), 0.4470046f32), + ( + (-0.20000002f32, 1.0000001f32, -1.4901161E-8f32), + 0.4470046f32, + ), + ((-0.10000002f32, -1.0f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -1.0f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -1.0f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -1.0f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -1.0f32, -0.10000002f32), 0.0f32), + ((-0.10000002f32, -1.0f32, -1.4901161E-8f32), -0.2222f32), + ((-0.10000002f32, -0.9f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.9f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.9f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.9f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.9f32, -0.10000002f32), 0.0f32), + ((-0.10000002f32, -0.9f32, -1.4901161E-8f32), -0.2222f32), + ((-0.10000002f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.79999995f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.79999995f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.79999995f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.79999995f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.79999995f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.6999999f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.6999999f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.6999999f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.6999999f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.6999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.5999999f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.5999999f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.5999999f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.5999999f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.5999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.4999999f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.4999999f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.4999999f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.4999999f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.4999999f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.39999992f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.39999992f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.39999992f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.39999992f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.39999992f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.29999992f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.29999992f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.29999992f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.29999992f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.29999992f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.19999993f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.19999993f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.19999993f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.19999993f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.19999993f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-0.10000002f32, -0.09999993f32, -0.4f32), 0.0f32), + ((-0.10000002f32, -0.09999993f32, -0.3f32), 0.0f32), + ((-0.10000002f32, -0.09999993f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, -0.09999993f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, -0.09999993f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-0.10000002f32, 7.4505806E-8f32, -0.4f32), 0.0f32), + ((-0.10000002f32, 7.4505806E-8f32, -0.3f32), 0.0f32), + ((-0.10000002f32, 7.4505806E-8f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, 7.4505806E-8f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, 7.4505806E-8f32, -1.4901161E-8f32), + -0.2222f32, + ), + ((-0.10000002f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-0.10000002f32, 0.100000076f32, -0.4f32), 0.0f32), + ((-0.10000002f32, 0.100000076f32, -0.3f32), 0.0f32), + ((-0.10000002f32, 0.100000076f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, 0.100000076f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, 0.100000076f32, -1.4901161E-8f32), + -0.1788018f32, + ), + ((-0.10000002f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-0.10000002f32, 0.20000008f32, -0.4f32), 0.0f32), + ((-0.10000002f32, 0.20000008f32, -0.3f32), 0.0f32), + ((-0.10000002f32, 0.20000008f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, 0.20000008f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, 0.20000008f32, -1.4901161E-8f32), + -0.104147464f32, + ), + ((-0.10000002f32, 0.30000007f32, -0.5f32), 0.0f32), + ((-0.10000002f32, 0.30000007f32, -0.4f32), 0.0f32), + ((-0.10000002f32, 0.30000007f32, -0.3f32), 0.0f32), + ((-0.10000002f32, 0.30000007f32, -0.20000002f32), 0.0f32), + ((-0.10000002f32, 0.30000007f32, -0.10000002f32), 0.0f32), + ( + (-0.10000002f32, 0.30000007f32, -1.4901161E-8f32), + -0.029493064f32, + ), + ((-0.10000002f32, 0.40000007f32, -0.5f32), 0.045161307f32), + ((-0.10000002f32, 0.40000007f32, -0.4f32), 0.045161307f32), + ((-0.10000002f32, 0.40000007f32, -0.3f32), 0.045161307f32), + ( + (-0.10000002f32, 0.40000007f32, -0.20000002f32), + 0.045161307f32, + ), + ( + (-0.10000002f32, 0.40000007f32, -0.10000002f32), + 0.045161307f32, + ), + ( + (-0.10000002f32, 0.40000007f32, -1.4901161E-8f32), + 0.045161307f32, + ), + ((-0.10000002f32, 0.50000006f32, -0.5f32), 0.11981565f32), + ((-0.10000002f32, 0.50000006f32, -0.4f32), 0.11981565f32), + ((-0.10000002f32, 0.50000006f32, -0.3f32), 0.11981565f32), + ( + (-0.10000002f32, 0.50000006f32, -0.20000002f32), + 0.11981565f32, + ), + ( + (-0.10000002f32, 0.50000006f32, -0.10000002f32), + 0.11981565f32, + ), + ( + (-0.10000002f32, 0.50000006f32, -1.4901161E-8f32), + 0.11981565f32, + ), + ((-0.10000002f32, 0.6000001f32, -0.5f32), 0.19447008f32), + ((-0.10000002f32, 0.6000001f32, -0.4f32), 0.19447008f32), + ((-0.10000002f32, 0.6000001f32, -0.3f32), 0.19447008f32), + ( + (-0.10000002f32, 0.6000001f32, -0.20000002f32), + 0.19447008f32, + ), + ( + (-0.10000002f32, 0.6000001f32, -0.10000002f32), + 0.19447008f32, + ), + ( + (-0.10000002f32, 0.6000001f32, -1.4901161E-8f32), + 0.19447008f32, + ), + ((-0.10000002f32, 0.7000001f32, -0.5f32), 0.26912445f32), + ((-0.10000002f32, 0.7000001f32, -0.4f32), 0.26912445f32), + ((-0.10000002f32, 0.7000001f32, -0.3f32), 0.26912445f32), + ( + (-0.10000002f32, 0.7000001f32, -0.20000002f32), + 0.26912445f32, + ), + ( + (-0.10000002f32, 0.7000001f32, -0.10000002f32), + 0.26912445f32, + ), + ( + (-0.10000002f32, 0.7000001f32, -1.4901161E-8f32), + 0.26912445f32, + ), + ((-0.10000002f32, 0.80000013f32, -0.5f32), 0.34377885f32), + ((-0.10000002f32, 0.80000013f32, -0.4f32), 0.34377885f32), + ((-0.10000002f32, 0.80000013f32, -0.3f32), 0.34377885f32), + ( + (-0.10000002f32, 0.80000013f32, -0.20000002f32), + 0.34377885f32, + ), + ( + (-0.10000002f32, 0.80000013f32, -0.10000002f32), + 0.34377885f32, + ), + ( + (-0.10000002f32, 0.80000013f32, -1.4901161E-8f32), + 0.34377885f32, + ), + ((-0.10000002f32, 0.90000015f32, -0.5f32), 0.41843322f32), + ((-0.10000002f32, 0.90000015f32, -0.4f32), 0.41843322f32), + ((-0.10000002f32, 0.90000015f32, -0.3f32), 0.41843322f32), + ( + (-0.10000002f32, 0.90000015f32, -0.20000002f32), + 0.41843322f32, + ), + ( + (-0.10000002f32, 0.90000015f32, -0.10000002f32), + 0.41843322f32, + ), + ( + (-0.10000002f32, 0.90000015f32, -1.4901161E-8f32), + 0.41843322f32, + ), + ((-0.10000002f32, 1.0000001f32, -0.5f32), 0.49308756f32), + ((-0.10000002f32, 1.0000001f32, -0.4f32), 0.49308756f32), + ((-0.10000002f32, 1.0000001f32, -0.3f32), 0.49308756f32), + ( + (-0.10000002f32, 1.0000001f32, -0.20000002f32), + 0.49308756f32, + ), + ( + (-0.10000002f32, 1.0000001f32, -0.10000002f32), + 0.49308756f32, + ), + ( + (-0.10000002f32, 1.0000001f32, -1.4901161E-8f32), + 0.49308756f32, + ), + ((-1.4901161E-8f32, -1.0f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -1.0f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -1.0f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -1.0f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -1.0f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -1.0f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.9f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.79999995f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.6999999f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.5999999f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.4999999f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.39999992f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.29999992f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.19999993f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, -0.09999993f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, 7.4505806E-8f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, 7.4505806E-8f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, 7.4505806E-8f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, 7.4505806E-8f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, 7.4505806E-8f32, -0.10000002f32), 0.0f32), + ( + (-1.4901161E-8f32, 7.4505806E-8f32, -1.4901161E-8f32), + 0.0f32, + ), + ((-1.4901161E-8f32, 0.100000076f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, 0.100000076f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, 0.100000076f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, 0.100000076f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, 0.100000076f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, 0.100000076f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -0.5f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -0.4f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -0.3f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -0.20000002f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -0.10000002f32), 0.0f32), + ((-1.4901161E-8f32, 0.20000008f32, -1.4901161E-8f32), 0.0f32), + ((-1.4901161E-8f32, 0.30000007f32, -0.5f32), 4.608333E-4f32), + ((-1.4901161E-8f32, 0.30000007f32, -0.4f32), 4.608333E-4f32), + ((-1.4901161E-8f32, 0.30000007f32, -0.3f32), 4.608333E-4f32), + ( + (-1.4901161E-8f32, 0.30000007f32, -0.20000002f32), + 4.608333E-4f32, + ), + ( + (-1.4901161E-8f32, 0.30000007f32, -0.10000002f32), + 4.608333E-4f32, + ), + ( + (-1.4901161E-8f32, 0.30000007f32, -1.4901161E-8f32), + 4.608333E-4f32, + ), + ((-1.4901161E-8f32, 0.40000007f32, -0.5f32), 0.07741937f32), + ((-1.4901161E-8f32, 0.40000007f32, -0.4f32), 0.07741937f32), + ((-1.4901161E-8f32, 0.40000007f32, -0.3f32), 0.07741937f32), + ( + (-1.4901161E-8f32, 0.40000007f32, -0.20000002f32), + 0.07741937f32, + ), + ( + (-1.4901161E-8f32, 0.40000007f32, -0.10000002f32), + 0.07741937f32, + ), + ( + (-1.4901161E-8f32, 0.40000007f32, -1.4901161E-8f32), + 0.07741937f32, + ), + ((-1.4901161E-8f32, 0.50000006f32, -0.5f32), 0.15437785f32), + ((-1.4901161E-8f32, 0.50000006f32, -0.4f32), 0.15437785f32), + ((-1.4901161E-8f32, 0.50000006f32, -0.3f32), 0.15437785f32), + ( + (-1.4901161E-8f32, 0.50000006f32, -0.20000002f32), + 0.15437785f32, + ), + ( + (-1.4901161E-8f32, 0.50000006f32, -0.10000002f32), + 0.15437785f32, + ), + ( + (-1.4901161E-8f32, 0.50000006f32, -1.4901161E-8f32), + 0.15437785f32, + ), + ((-1.4901161E-8f32, 0.6000001f32, -0.5f32), 0.23133644f32), + ((-1.4901161E-8f32, 0.6000001f32, -0.4f32), 0.23133644f32), + ((-1.4901161E-8f32, 0.6000001f32, -0.3f32), 0.23133644f32), + ( + (-1.4901161E-8f32, 0.6000001f32, -0.20000002f32), + 0.23133644f32, + ), + ( + (-1.4901161E-8f32, 0.6000001f32, -0.10000002f32), + 0.23133644f32, + ), + ( + (-1.4901161E-8f32, 0.6000001f32, -1.4901161E-8f32), + 0.23133644f32, + ), + ((-1.4901161E-8f32, 0.7000001f32, -0.5f32), 0.30829495f32), + ((-1.4901161E-8f32, 0.7000001f32, -0.4f32), 0.30829495f32), + ((-1.4901161E-8f32, 0.7000001f32, -0.3f32), 0.30829495f32), + ( + (-1.4901161E-8f32, 0.7000001f32, -0.20000002f32), + 0.30829495f32, + ), + ( + (-1.4901161E-8f32, 0.7000001f32, -0.10000002f32), + 0.30829495f32, + ), + ( + (-1.4901161E-8f32, 0.7000001f32, -1.4901161E-8f32), + 0.30829495f32, + ), + ((-1.4901161E-8f32, 0.80000013f32, -0.5f32), 0.38525352f32), + ((-1.4901161E-8f32, 0.80000013f32, -0.4f32), 0.38525352f32), + ((-1.4901161E-8f32, 0.80000013f32, -0.3f32), 0.38525352f32), + ( + (-1.4901161E-8f32, 0.80000013f32, -0.20000002f32), + 0.38525352f32, + ), + ( + (-1.4901161E-8f32, 0.80000013f32, -0.10000002f32), + 0.38525352f32, + ), + ( + (-1.4901161E-8f32, 0.80000013f32, -1.4901161E-8f32), + 0.38525352f32, + ), + ((-1.4901161E-8f32, 0.90000015f32, -0.5f32), 0.462212f32), + ((-1.4901161E-8f32, 0.90000015f32, -0.4f32), 0.462212f32), + ((-1.4901161E-8f32, 0.90000015f32, -0.3f32), 0.462212f32), + ( + (-1.4901161E-8f32, 0.90000015f32, -0.20000002f32), + 0.462212f32, + ), + ( + (-1.4901161E-8f32, 0.90000015f32, -0.10000002f32), + 0.462212f32, + ), + ( + (-1.4901161E-8f32, 0.90000015f32, -1.4901161E-8f32), + 0.462212f32, + ), + ((-1.4901161E-8f32, 1.0000001f32, -0.5f32), 0.5391705f32), + ((-1.4901161E-8f32, 1.0000001f32, -0.4f32), 0.5391705f32), + ((-1.4901161E-8f32, 1.0000001f32, -0.3f32), 0.5391705f32), + ( + (-1.4901161E-8f32, 1.0000001f32, -0.20000002f32), + 0.5391705f32, + ), + ( + (-1.4901161E-8f32, 1.0000001f32, -0.10000002f32), + 0.5391705f32, + ), + ( + (-1.4901161E-8f32, 1.0000001f32, -1.4901161E-8f32), + 0.5391705f32, + ), + ]; - let spline = create_continental_offset_spline( - noise_functions.erosion_overworld.clone(), - noise_functions.ridges_folded_overworld.clone(), - 1f32, - 1f32, - 1f32, - 1f32, - 1f32, - 1f32, - true, - true, - FloatAmplifier::Identity, - ); + for ((x, y, z), result) in values { + assert_eq!(get_offset_value(x, y, z), result); + } + } - assert_eq!(spline.apply(&pos), 1f32); - - let pos = NoisePos::Unblended(UnblendedNoisePos { - x: 10, - y: 10, - z: 10, - }); - - let spline = create_continental_offset_spline( - noise_functions.erosion_overworld.clone(), - noise_functions.ridges_folded_overworld.clone(), - 2f32, - 2f32, - 2f32, - 2f32, - 2f32, - 2f32, - true, - true, - FloatAmplifier::Identity, - ); + #[test] + fn test_skew_map() { + let values = [ + (-1.0f32, f32::INFINITY), + (-0.9f32, 40.059994f32), + (-0.79999995f32, 18.359995f32), + (-0.6999999f32, 11.126663f32), + (-0.5999999f32, 7.5099974f32), + (-0.4999999f32, 5.3399982f32), + (-0.39999992f32, 3.8933315f32), + (-0.29999992f32, 2.8600001f32), + (-0.19999993f32, 2.0849996f32), + (-0.09999993f32, 1.482222f32), + (7.4505806E-8f32, 1.0000001f32), + (0.100000076f32, 0.6054543f32), + (0.20000008f32, 0.27666664f32), + (0.30000007f32, -0.0015385151f32), + (0.40000007f32, -0.24000007f32), + (0.50000006f32, -0.44666666f32), + (0.6000001f32, -0.6275001f32), + (0.7000001f32, -0.78705895f32), + (0.80000013f32, -0.92888904f32), + (0.90000015f32, -1.0557896f32), + (1.0000001f32, -1.1700001f32), + ]; - assert_eq!(spline.apply(&pos), 2f32); + for (value, result) in values { + assert_eq!(skew_map(value), result); + } + } - let pos = NoisePos::Unblended(UnblendedNoisePos { x: 0, y: 0, z: 0 }); + #[test] + fn test_create_ridges_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; - let spline = create_offset_spline( - noise_functions.continents_overworld.clone(), - noise_functions.erosion_overworld.clone(), - noise_functions.ridges_folded_overworld.clone(), + let values = [ + ((-100, -100), 2.8477935E-8), + ((-100, -90), 2.9421175E-8), + ((-100, -80), 2.953465E-8), + ((-100, -70), 2.9572217E-8), + ((-100, -60), 2.9592139E-8), + ((-100, -50), 2.9759779E-8), + ((-100, -40), 2.9594814E-8), + ((-100, -30), 4.1828697E-4), + ((-100, -20), 2.441617E-4), + ((-100, -10), 2.9801354E-8), + ((-100, 0), 2.9799308E-8), + ((-100, 10), 2.9755787E-8), + ((-100, 20), 2.9588357E-8), + ((-100, 30), 2.907906E-8), + ((-100, 40), 2.8314574E-8), + ((-100, 50), 2.6729724E-8), + ((-100, 60), 2.7000734E-8), + ((-100, 70), 2.660159E-8), + ((-100, 80), 2.4869763E-8), + ((-100, 90), 2.2899068E-8), + ((-100, 100), 2.014161E-8), + ((-90, -100), 2.5623542E-8), + ((-90, -90), 2.6155236E-8), + ((-90, -80), 2.7647168E-8), + ((-90, -70), 2.7973673E-8), + ((-90, -60), 2.8644253E-8), + ((-90, -50), 2.869978E-8), + ((-90, -40), 2.9231881E-8), + ((-90, -30), 2.9375043E-8), + ((-90, -20), 2.8943603E-8), + ((-90, -10), 2.9426687E-8), + ((-90, 0), 2.9260104E-8), + ((-90, 10), 2.904137E-8), + ((-90, 20), 2.7603893E-8), + ((-90, 30), 2.764989E-8), + ((-90, 40), 2.6193437E-8), + ((-90, 50), 2.4490602E-8), + ((-90, 60), 2.5621688E-8), + ((-90, 70), 2.4620386E-8), + ((-90, 80), 2.2685676E-8), + ((-90, 90), 1.9192312E-8), + ((-90, 100), 1.8943878E-8), + ((-80, -100), 2.0955286E-8), + ((-80, -90), 2.0643254E-8), + ((-80, -80), 2.3475874E-8), + ((-80, -70), 2.6119807E-8), + ((-80, -60), 2.6292632E-8), + ((-80, -50), 2.688907E-8), + ((-80, -40), 2.8145903E-8), + ((-80, -30), 2.7218043E-8), + ((-80, -20), 2.7008975E-8), + ((-80, -10), 2.7962752E-8), + ((-80, 0), 2.8498809E-8), + ((-80, 10), 2.853816E-8), + ((-80, 20), 2.7134293E-8), + ((-80, 30), 2.4145672E-8), + ((-80, 40), 2.313179E-8), + ((-80, 50), 2.0786214E-8), + ((-80, 60), 1.883024E-8), + ((-80, 70), 1.7269919E-8), + ((-80, 80), 2.0617332E-8), + ((-80, 90), 1.8206858E-8), + ((-80, 100), 1.6814932E-8), + ((-70, -100), 1.5697411E-8), + ((-70, -90), 1.881628E-8), + ((-70, -80), 2.0452672E-8), + ((-70, -70), 2.3734193E-8), + ((-70, -60), 2.4436767E-8), + ((-70, -50), 2.3752877E-8), + ((-70, -40), 2.5358732E-8), + ((-70, -30), 2.566211E-8), + ((-70, -20), 2.3430925E-8), + ((-70, -10), 2.4686809E-8), + ((-70, 0), 2.5551257E-8), + ((-70, 10), 2.5841018E-8), + ((-70, 20), 2.39439E-8), + ((-70, 30), 1.8338397E-8), + ((-70, 40), 1.9379236E-8), + ((-70, 50), 1.725146E-8), + ((-70, 60), 1.2672998E-8), + ((-70, 70), 1.441972E-8), + ((-70, 80), 1.2832E-8), + ((-70, 90), 1.4738533E-8), + ((-70, 100), 1.4453501E-8), + ((-60, -100), 1.326884E-8), + ((-60, -90), 1.4473903E-8), + ((-60, -80), 1.6339591E-8), + ((-60, -70), 1.8043991E-8), + ((-60, -60), 2.1850791E-8), + ((-60, -50), 1.952893E-8), + ((-60, -40), 2.0770532E-8), + ((-60, -30), 2.1941322E-8), + ((-60, -20), 1.8191166E-8), + ((-60, -10), 1.899582E-8), + ((-60, 0), 1.6704568E-8), + ((-60, 10), 1.703442E-8), + ((-60, 20), 1.531812E-8), + ((-60, 30), 9.570761E-9), + ((-60, 40), 1.0039969E-8), + ((-60, 50), 8.110198E-9), + ((-60, 60), 7.454145E-9), + ((-60, 70), 5.27241E-9), + ((-60, 80), 6.8627255E-9), + ((-60, 90), 9.639968E-9), + ((-60, 100), 1.0100898E-8), + ((-50, -100), 7.740988E-9), + ((-50, -90), 9.695534E-9), + ((-50, -80), 1.4176498E-8), + ((-50, -70), 1.3164881E-8), + ((-50, -60), 1.3867257E-8), + ((-50, -50), 1.3216399E-8), + ((-50, -40), 1.19279E-8), + ((-50, -30), 1.06547375E-8), + ((-50, -20), 1.26689725E-8), + ((-50, -10), 1.4371157E-8), + ((-50, 0), 8.357909E-9), + ((-50, 10), 9.041843E-9), + ((-50, 20), 2.8660507E-9), + ((-50, 30), 3.5975143E-9), + ((-50, 40), 6.1586345E-9), + ((-50, 50), 6.9691537E-9), + ((-50, 60), 4.881403E-9), + ((-50, 70), 3.2929866E-9), + ((-50, 80), -2.0132167E-4), + ((-50, 90), 2.4167723E-10), + ((-50, 100), 9.5578934E-11), + ((-40, -100), 3.96348E-9), + ((-40, -90), 4.7890127E-9), + ((-40, -80), 1.0002485E-8), + ((-40, -70), 1.09926415E-8), + ((-40, -60), 9.654244E-9), + ((-40, -50), 8.474768E-9), + ((-40, -40), 4.632465E-9), + ((-40, -30), 2.950939E-9), + ((-40, -20), 1.0483288E-9), + ((-40, -10), 5.394538E-9), + ((-40, 0), 1.8524393E-10), + ((-40, 10), 7.566242E-11), + ((-40, 20), -0.05434511), + ((-40, 30), 6.359355E-10), + ((-40, 40), 1.7443635E-9), + ((-40, 50), 1.1218677E-9), + ((-40, 60), -0.05718465), + ((-40, 70), -0.2222), + ((-40, 80), -0.2222), + ((-40, 90), -0.2222), + ((-40, 100), -0.2222), + ((-30, -100), 5.2898386E-10), + ((-30, -90), 3.0276166E-9), + ((-30, -80), 4.8754467E-9), + ((-30, -70), 5.305538E-9), + ((-30, -60), 6.3437686E-9), + ((-30, -50), 3.4709022E-9), + ((-30, -40), -0.0013300264), + ((-30, -30), -0.2222), + ((-30, -20), -0.2222), + ((-30, -10), 2.487388E-11), + ((-30, 0), -0.1278581), + ((-30, 10), -0.2222), + ((-30, 20), -0.2222), + ((-30, 30), -0.2222), + ((-30, 40), -0.2222), + ((-30, 50), -0.2222), + ((-30, 60), -0.2222), + ((-30, 70), -0.2222), + ((-30, 80), -0.13529345), + ((-30, 90), -0.21922092), + ((-30, 100), -0.2222), + ((-20, -100), -0.05537056), + ((-20, -90), 4.362144E-11), + ((-20, -80), 5.9424754E-10), + ((-20, -70), 9.598848E-10), + ((-20, -60), 1.4902506E-9), + ((-20, -50), 1.3627571E-11), + ((-20, -40), -0.2222), + ((-20, -30), -0.2222), + ((-20, -20), -0.2222), + ((-20, -10), -0.2222), + ((-20, 0), -0.2222), + ((-20, 10), -0.2222), + ((-20, 20), 1.0100046E-12), + ((-20, 30), -0.221999), + ((-20, 40), 1.2945522E-9), + ((-20, 50), 5.3399196E-9), + ((-20, 60), 5.9649015E-9), + ((-20, 70), 3.0647274E-10), + ((-20, 80), 7.8995144E-10), + ((-20, 90), 1.694016E-9), + ((-20, 100), 4.1338766E-11), + ((-10, -100), -0.2222), + ((-10, -90), -0.2222), + ((-10, -80), -0.2222), + ((-10, -70), -0.006202223), + ((-10, -60), -0.2222), + ((-10, -50), -0.2222), + ((-10, -40), -0.2222), + ((-10, -30), -0.2222), + ((-10, -20), -0.2222), + ((-10, -10), 2.724796E-10), + ((-10, 0), 1.628972E-11), + ((-10, 10), 1.215722E-9), + ((-10, 20), 1.3321679E-9), + ((-10, 30), 5.7749086E-9), + ((-10, 40), 5.468249E-9), + ((-10, 50), 1.4257979E-8), + ((-10, 60), 2.3868212E-8), + ((-10, 70), 1.6978554E-8), + ((-10, 80), 9.911973E-9), + ((-10, 90), 1.06328795E-8), + ((-10, 100), 3.8184833E-9), + ((0, -100), -0.2222), + ((0, -90), -0.2222), + ((0, -80), -0.2222), + ((0, -70), -0.2222), + ((0, -60), -0.2222), + ((0, -50), -0.2222), + ((0, -40), -2.7082162E-5), + ((0, -30), -0.21585968), + ((0, -20), -0.2222), + ((0, -10), 5.88328E-13), + ((0, 0), 2.099143E-9), + ((0, 10), 5.015324E-9), + ((0, 20), 9.049539E-9), + ((0, 30), 1.6418609E-8), + ((0, 40), 1.8904561E-8), + ((0, 50), 2.3320354E-8), + ((0, 60), 2.620363E-8), + ((0, 70), 2.0293689E-8), + ((0, 80), 2.5067742E-8), + ((0, 90), 2.0545425E-8), + ((0, 100), 1.6975857E-8), + ((10, -100), -0.2222), + ((10, -90), -0.2099127), + ((10, -80), -0.2222), + ((10, -70), -0.2222), + ((10, -60), -0.22206965), + ((10, -50), 1.2756785E-10), + ((10, -40), 2.1985875E-9), + ((10, -30), 3.7900465E-9), + ((10, -20), 4.57191E-9), + ((10, -10), 7.1460473E-9), + ((10, 0), 9.860966E-9), + ((10, 10), 1.7195873E-8), + ((10, 20), 2.149125E-8), + ((10, 30), 2.5583146E-8), + ((10, 40), 2.9350172E-8), + ((10, 50), 2.7192652E-8), + ((10, 60), 2.337591E-8), + ((10, 70), 1.7757051E-8), + ((10, 80), 2.4523862E-8), + ((10, 90), 2.421915E-8), + ((10, 100), 2.5471177E-8), + ((20, -100), -0.026743041), + ((20, -90), 3.701109E-12), + ((20, -80), 6.015668E-10), + ((20, -70), 1.757392E-10), + ((20, -60), 3.1415082E-10), + ((20, -50), 2.2531796E-9), + ((20, -40), 6.227851E-9), + ((20, -30), 1.0961541E-8), + ((20, -20), 1.344854E-8), + ((20, -10), 1.6549272E-8), + ((20, 0), 1.9368597E-8), + ((20, 10), 2.7064296E-8), + ((20, 20), 2.8985074E-8), + ((20, 30), 0.0036852886), + ((20, 40), 0.0539809), + ((20, 50), 0.0021372417), + ((20, 60), 2.6740215E-8), + ((20, 70), 2.916563E-8), + ((20, 80), 2.9167515E-8), + ((20, 90), 2.952707E-8), + ((20, 100), 2.9662866E-8), + ((30, -100), 9.415155E-10), + ((30, -90), 1.1704835E-9), + ((30, -80), 2.3105915E-9), + ((30, -70), 2.2496456E-9), + ((30, -60), 4.6038107E-9), + ((30, -50), 9.231984E-9), + ((30, -40), 1.5865178E-8), + ((30, -30), 2.090136E-8), + ((30, -20), 2.4485336E-8), + ((30, -10), 2.5506537E-8), + ((30, 0), 2.7404838E-8), + ((30, 10), 0.015096264), + ((30, 20), 0.07279182), + ((30, 30), 0.078368366), + ((30, 40), 0.09613082), + ((30, 50), 0.06028792), + ((30, 60), 0.02723657), + ((30, 70), 0.056825884), + ((30, 80), 0.048749786), + ((30, 90), 0.049322363), + ((30, 100), 0.068311006), + ((40, -100), 5.113369E-9), + ((40, -90), 5.611211E-9), + ((40, -80), 5.793919E-9), + ((40, -70), 6.3468795E-9), + ((40, -60), 1.2419873E-8), + ((40, -50), 1.8519973E-8), + ((40, -40), 2.1883215E-8), + ((40, -30), 2.7525791E-8), + ((40, -20), 2.849611E-8), + ((40, -10), 2.9346142E-8), + ((40, 0), 2.979914E-8), + ((40, 10), 0.05700566), + ((40, 20), 0.09781591), + ((40, 30), 0.07276361), + ((40, 40), 0.05831618), + ((40, 50), 0.08932926), + ((40, 60), 0.06354418), + ((40, 70), 0.08133913), + ((40, 80), 0.092552625), + ((40, 90), 0.08024895), + ((40, 100), 0.09823503), + ((50, -100), 9.931215E-9), + ((50, -90), 1.5000806E-8), + ((50, -80), 1.38834775E-8), + ((50, -70), 1.319409E-8), + ((50, -60), 1.4360927E-8), + ((50, -50), 2.262236E-8), + ((50, -40), 2.615886E-8), + ((50, -30), 2.8377613E-8), + ((50, -20), 0.0060256915), + ((50, -10), 0.02681369), + ((50, 0), 0.0625092), + ((50, 10), 0.08518137), + ((50, 20), 0.08074804), + ((50, 30), 0.056999013), + ((50, 40), 0.050000902), + ((50, 50), 0.039098933), + ((50, 60), 0.024522444), + ((50, 70), 0.039843414), + ((50, 80), 0.06813977), + ((50, 90), 0.08117486), + ((50, 100), 0.09765588), + ((60, -100), 1.2560949E-8), + ((60, -90), 1.8038051E-8), + ((60, -80), 1.7835823E-8), + ((60, -70), 1.6850986E-8), + ((60, -60), 2.0095776E-8), + ((60, -50), 2.2213623E-8), + ((60, -40), 2.4400702E-8), + ((60, -30), 2.8550161E-8), + ((60, -20), 0.0122648785), + ((60, -10), 0.057307955), + ((60, 0), 0.063739665), + ((60, 10), 0.09191626), + ((60, 20), 0.06397862), + ((60, 30), 0.029510833), + ((60, 40), 0.022276945), + ((60, 50), 0.008596192), + ((60, 60), 9.073515E-4), + ((60, 70), 0.01206646), + ((60, 80), 0.036487218), + ((60, 90), 0.060221568), + ((60, 100), 0.07330302), + ((70, -100), 1.2279612E-8), + ((70, -90), 1.5604508E-8), + ((70, -80), 1.7923854E-8), + ((70, -70), 1.9603634E-8), + ((70, -60), 2.3482578E-8), + ((70, -50), 2.5044821E-8), + ((70, -40), 2.8634219E-8), + ((70, -30), 2.9438601E-8), + ((70, -20), 0.026957614), + ((70, -10), 0.053010616), + ((70, 0), 0.08705943), + ((70, 10), 0.07123009), + ((70, 20), 0.05596709), + ((70, 30), 0.02099134), + ((70, 40), 8.0636E-4), + ((70, 50), -2.8625852E-4), + ((70, 60), -1.8850603E-4), + ((70, 70), 0.010176085), + ((70, 80), 0.021705516), + ((70, 90), 0.042132284), + ((70, 100), 0.066540554), + ((80, -100), 1.0967985E-8), + ((80, -90), 1.3114312E-8), + ((80, -80), 1.6625528E-8), + ((80, -70), 1.8970738E-8), + ((80, -60), 2.3452605E-8), + ((80, -50), 2.719583E-8), + ((80, -40), 2.8690268E-8), + ((80, -30), -3.257227E-4), + ((80, -20), 0.04783322), + ((80, -10), 0.06973693), + ((80, 0), 0.084938176), + ((80, 10), 0.051958688), + ((80, 20), 0.038630944), + ((80, 30), 0.021653533), + ((80, 40), 0.015261582), + ((80, 50), 0.016427841), + ((80, 60), 0.010141701), + ((80, 70), 0.012156198), + ((80, 80), 0.029815394), + ((80, 90), 0.058820862), + ((80, 100), 0.08758333), + ((90, -100), 1.0518976E-8), + ((90, -90), 1.1329515E-8), + ((90, -80), 1.4873088E-8), + ((90, -70), 1.5370892E-8), + ((90, -60), 1.8482575E-8), + ((90, -50), 2.4565391E-8), + ((90, -40), 2.7285648E-8), + ((90, -30), 2.9660525E-8), + ((90, -20), 0.030253895), + ((90, -10), 0.06902423), + ((90, 0), 0.07849499), + ((90, 10), 0.08036745), + ((90, 20), 0.046044968), + ((90, 30), 0.044540975), + ((90, 40), 0.040963612), + ((90, 50), 0.04599631), + ((90, 60), 0.041517425), + ((90, 70), 0.04300323), + ((90, 80), 0.04129118), + ((90, 90), 0.06918509), + ((90, 100), 0.09034656), + ((100, -100), 8.271921E-9), + ((100, -90), 1.0203889E-8), + ((100, -80), 1.1338757E-8), + ((100, -70), 1.39994265E-8), + ((100, -60), 1.6544481E-8), + ((100, -50), 1.9844514E-8), + ((100, -40), 2.1032369E-8), + ((100, -30), 2.530143E-8), + ((100, -20), 2.9269913E-8), + ((100, -10), 2.9794156E-8), + ((100, 0), 0.047164306), + ((100, 10), 0.07856759), + ((100, 20), 0.09781857), + ((100, 30), 0.09724875), + ((100, 40), 0.08650395), + ((100, 50), 0.0819612), + ((100, 60), 0.09101133), + ((100, 70), 0.082009576), + ((100, 80), 0.067832805), + ((100, 90), 0.09361232), + ((100, 100), 0.044551715), + ]; + let spline = create_ridges_spline( + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + 0.1f32, true, + FloatAmplifier::Identity, ); + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), value); + } - assert_eq!(spline.apply(&pos), -0.1f32); + let values = [ + ((-100, -100), 5.695587E-8f32), + ((-100, -90), 5.884235E-8f32), + ((-100, -80), 5.90693E-8f32), + ((-100, -70), 5.9144433E-8f32), + ((-100, -60), 5.9184277E-8f32), + ((-100, -50), 5.9519557E-8f32), + ((-100, -40), 5.9189627E-8f32), + ((-100, -30), 4.2355031E-4f32), + ((-100, -20), 2.459766E-4f32), + ((-100, -10), 5.960271E-8f32), + ((-100, 0), 5.9598616E-8f32), + ((-100, 10), 5.9511574E-8f32), + ((-100, 20), 5.9176713E-8f32), + ((-100, 30), 5.815812E-8f32), + ((-100, 40), 5.6629148E-8f32), + ((-100, 50), 5.345945E-8f32), + ((-100, 60), 5.4001468E-8f32), + ((-100, 70), 5.320318E-8f32), + ((-100, 80), 4.9739526E-8f32), + ((-100, 90), 4.5798135E-8f32), + ((-100, 100), 4.028322E-8f32), + ((-90, -100), 5.1247085E-8f32), + ((-90, -90), 5.2310472E-8f32), + ((-90, -80), 5.5294336E-8f32), + ((-90, -70), 5.5947346E-8f32), + ((-90, -60), 5.7288506E-8f32), + ((-90, -50), 5.739956E-8f32), + ((-90, -40), 5.8463762E-8f32), + ((-90, -30), 5.8750086E-8f32), + ((-90, -20), 5.7887206E-8f32), + ((-90, -10), 5.8853374E-8f32), + ((-90, 0), 5.8520207E-8f32), + ((-90, 10), 5.808274E-8f32), + ((-90, 20), 5.5207785E-8f32), + ((-90, 30), 5.529978E-8f32), + ((-90, 40), 5.2386874E-8f32), + ((-90, 50), 4.8981203E-8f32), + ((-90, 60), 5.1243376E-8f32), + ((-90, 70), 4.924077E-8f32), + ((-90, 80), 4.537135E-8f32), + ((-90, 90), 3.8384623E-8f32), + ((-90, 100), 3.7887755E-8f32), + ((-80, -100), 4.191057E-8f32), + ((-80, -90), 4.128651E-8f32), + ((-80, -80), 4.6951747E-8f32), + ((-80, -70), 5.2239614E-8f32), + ((-80, -60), 5.2585264E-8f32), + ((-80, -50), 5.377814E-8f32), + ((-80, -40), 5.6291807E-8f32), + ((-80, -30), 5.4436086E-8f32), + ((-80, -20), 5.401795E-8f32), + ((-80, -10), 5.5925504E-8f32), + ((-80, 0), 5.6997617E-8f32), + ((-80, 10), 5.707632E-8f32), + ((-80, 20), 5.4268586E-8f32), + ((-80, 30), 4.8291344E-8f32), + ((-80, 40), 4.626358E-8f32), + ((-80, 50), 4.1572427E-8f32), + ((-80, 60), 3.766048E-8f32), + ((-80, 70), 3.4539838E-8f32), + ((-80, 80), 4.1234664E-8f32), + ((-80, 90), 3.6413716E-8f32), + ((-80, 100), 3.3629863E-8f32), + ((-70, -100), 3.1394823E-8f32), + ((-70, -90), 3.763256E-8f32), + ((-70, -80), 4.0905345E-8f32), + ((-70, -70), 4.7468387E-8f32), + ((-70, -60), 4.8873535E-8f32), + ((-70, -50), 4.7505754E-8f32), + ((-70, -40), 5.0717464E-8f32), + ((-70, -30), 5.132422E-8f32), + ((-70, -20), 4.686185E-8f32), + ((-70, -10), 4.9373618E-8f32), + ((-70, 0), 5.1102514E-8f32), + ((-70, 10), 5.1682036E-8f32), + ((-70, 20), 4.78878E-8f32), + ((-70, 30), 3.6676795E-8f32), + ((-70, 40), 3.8758472E-8f32), + ((-70, 50), 3.450292E-8f32), + ((-70, 60), 2.5345996E-8f32), + ((-70, 70), 2.883944E-8f32), + ((-70, 80), 2.5664E-8f32), + ((-70, 90), 2.9477066E-8f32), + ((-70, 100), 2.8907001E-8f32), + ((-60, -100), 2.653768E-8f32), + ((-60, -90), 2.8947806E-8f32), + ((-60, -80), 3.2679182E-8f32), + ((-60, -70), 3.6087982E-8f32), + ((-60, -60), 4.3701583E-8f32), + ((-60, -50), 3.905786E-8f32), + ((-60, -40), 4.1541064E-8f32), + ((-60, -30), 4.3882643E-8f32), + ((-60, -20), 3.6382332E-8f32), + ((-60, -10), 3.799164E-8f32), + ((-60, 0), 3.3409137E-8f32), + ((-60, 10), 3.406884E-8f32), + ((-60, 20), 3.063624E-8f32), + ((-60, 30), 1.9141522E-8f32), + ((-60, 40), 2.0079938E-8f32), + ((-60, 50), 1.6220396E-8f32), + ((-60, 60), 1.490829E-8f32), + ((-60, 70), 1.054482E-8f32), + ((-60, 80), 1.3725451E-8f32), + ((-60, 90), 1.9279936E-8f32), + ((-60, 100), 2.0201796E-8f32), + ((-50, -100), 1.5481977E-8f32), + ((-50, -90), 1.9391068E-8f32), + ((-50, -80), 2.8352996E-8f32), + ((-50, -70), 2.6329761E-8f32), + ((-50, -60), 2.7734513E-8f32), + ((-50, -50), 2.6432797E-8f32), + ((-50, -40), 2.38558E-8f32), + ((-50, -30), 2.1309475E-8f32), + ((-50, -20), 2.5337945E-8f32), + ((-50, -10), 2.8742313E-8f32), + ((-50, 0), 1.6715818E-8f32), + ((-50, 10), 1.8083686E-8f32), + ((-50, 20), 5.7321015E-9f32), + ((-50, 30), 7.1950286E-9f32), + ((-50, 40), 1.2317269E-8f32), + ((-50, 50), 1.3938307E-8f32), + ((-50, 60), 9.762806E-9f32), + ((-50, 70), 6.585973E-9f32), + ((-50, 80), -2.0132167E-4f32), + ((-50, 90), 4.8335447E-10f32), + ((-50, 100), 1.9115787E-10f32), + ((-40, -100), 7.92696E-9f32), + ((-40, -90), 9.5780255E-9f32), + ((-40, -80), 2.000497E-8f32), + ((-40, -70), 2.1985283E-8f32), + ((-40, -60), 1.9308487E-8f32), + ((-40, -50), 1.6949537E-8f32), + ((-40, -40), 9.26493E-9f32), + ((-40, -30), 5.901878E-9f32), + ((-40, -20), 2.0966575E-9f32), + ((-40, -10), 1.0789076E-8f32), + ((-40, 0), 3.7048786E-10f32), + ((-40, 10), 1.5132484E-10f32), + ((-40, 20), -0.05434511f32), + ((-40, 30), 1.271871E-9f32), + ((-40, 40), 3.488727E-9f32), + ((-40, 50), 2.2437354E-9f32), + ((-40, 60), -0.05718465f32), + ((-40, 70), -0.2222f32), + ((-40, 80), -0.2222f32), + ((-40, 90), -0.2222f32), + ((-40, 100), -0.2222f32), + ((-30, -100), 1.0579677E-9f32), + ((-30, -90), 6.055233E-9f32), + ((-30, -80), 9.750893E-9f32), + ((-30, -70), 1.0611076E-8f32), + ((-30, -60), 1.2687537E-8f32), + ((-30, -50), 6.9418045E-9f32), + ((-30, -40), -0.0013300264f32), + ((-30, -30), -0.2222f32), + ((-30, -20), -0.2222f32), + ((-30, -10), 4.974776E-11f32), + ((-30, 0), -0.1278581f32), + ((-30, 10), -0.2222f32), + ((-30, 20), -0.2222f32), + ((-30, 30), -0.2222f32), + ((-30, 40), -0.2222f32), + ((-30, 50), -0.2222f32), + ((-30, 60), -0.2222f32), + ((-30, 70), -0.2222f32), + ((-30, 80), -0.13529345f32), + ((-30, 90), -0.21922092f32), + ((-30, 100), -0.2222f32), + ((-20, -100), -0.05537056f32), + ((-20, -90), 8.724288E-11f32), + ((-20, -80), 1.1884951E-9f32), + ((-20, -70), 1.9197697E-9f32), + ((-20, -60), 2.9805012E-9f32), + ((-20, -50), 2.7255143E-11f32), + ((-20, -40), -0.2222f32), + ((-20, -30), -0.2222f32), + ((-20, -20), -0.2222f32), + ((-20, -10), -0.2222f32), + ((-20, 0), -0.2222f32), + ((-20, 10), -0.2222f32), + ((-20, 20), 2.0200092E-12f32), + ((-20, 30), -0.221999f32), + ((-20, 40), 2.5891045E-9f32), + ((-20, 50), 1.0679839E-8f32), + ((-20, 60), 1.1929803E-8f32), + ((-20, 70), 6.1294547E-10f32), + ((-20, 80), 1.5799029E-9f32), + ((-20, 90), 3.388032E-9f32), + ((-20, 100), 8.267753E-11f32), + ((-10, -100), -0.2222f32), + ((-10, -90), -0.2222f32), + ((-10, -80), -0.2222f32), + ((-10, -70), -0.006202223f32), + ((-10, -60), -0.2222f32), + ((-10, -50), -0.2222f32), + ((-10, -40), -0.2222f32), + ((-10, -30), -0.2222f32), + ((-10, -20), -0.2222f32), + ((-10, -10), 5.449592E-10f32), + ((-10, 0), 3.257944E-11f32), + ((-10, 10), 2.431444E-9f32), + ((-10, 20), 2.6643359E-9f32), + ((-10, 30), 1.1549817E-8f32), + ((-10, 40), 1.0936498E-8f32), + ((-10, 50), 2.8515958E-8f32), + ((-10, 60), 4.7736425E-8f32), + ((-10, 70), 3.3957107E-8f32), + ((-10, 80), 1.9823945E-8f32), + ((-10, 90), 2.1265759E-8f32), + ((-10, 100), 7.636967E-9f32), + ((0, -100), -0.2222f32), + ((0, -90), -0.2222f32), + ((0, -80), -0.2222f32), + ((0, -70), -0.2222f32), + ((0, -60), -0.2222f32), + ((0, -50), -0.2222f32), + ((0, -40), -2.7082162E-5f32), + ((0, -30), -0.21585968f32), + ((0, -20), -0.2222f32), + ((0, -10), 1.176656E-12f32), + ((0, 0), 4.198286E-9f32), + ((0, 10), 1.0030648E-8f32), + ((0, 20), 1.8099078E-8f32), + ((0, 30), 3.2837217E-8f32), + ((0, 40), 3.7809123E-8f32), + ((0, 50), 4.6640707E-8f32), + ((0, 60), 5.240726E-8f32), + ((0, 70), 4.0587377E-8f32), + ((0, 80), 5.0135483E-8f32), + ((0, 90), 4.109085E-8f32), + ((0, 100), 3.3951714E-8f32), + ((10, -100), -0.2222f32), + ((10, -90), -0.2099127f32), + ((10, -80), -0.2222f32), + ((10, -70), -0.2222f32), + ((10, -60), -0.22206965f32), + ((10, -50), 2.551357E-10f32), + ((10, -40), 4.397175E-9f32), + ((10, -30), 7.580093E-9f32), + ((10, -20), 9.14382E-9f32), + ((10, -10), 1.4292095E-8f32), + ((10, 0), 1.9721933E-8f32), + ((10, 10), 3.4391746E-8f32), + ((10, 20), 4.29825E-8f32), + ((10, 30), 5.1166293E-8f32), + ((10, 40), 5.8700344E-8f32), + ((10, 50), 5.4385303E-8f32), + ((10, 60), 4.675182E-8f32), + ((10, 70), 3.5514102E-8f32), + ((10, 80), 4.9047724E-8f32), + ((10, 90), 4.84383E-8f32), + ((10, 100), 5.0942354E-8f32), + ((20, -100), -0.026743041f32), + ((20, -90), 7.402218E-12f32), + ((20, -80), 1.2031336E-9f32), + ((20, -70), 3.514784E-10f32), + ((20, -60), 6.2830163E-10f32), + ((20, -50), 4.5063593E-9f32), + ((20, -40), 1.2455702E-8f32), + ((20, -30), 2.1923082E-8f32), + ((20, -20), 2.689708E-8f32), + ((20, -10), 3.3098544E-8f32), + ((20, 0), 3.8737195E-8f32), + ((20, 10), 5.412859E-8f32), + ((20, 20), 5.7970148E-8f32), + ((20, 30), 0.004082742f32), + ((20, 40), 0.10993963f32), + ((20, 50), 0.0022723493f32), + ((20, 60), 5.348043E-8f32), + ((20, 70), 5.833126E-8f32), + ((20, 80), 5.833503E-8f32), + ((20, 90), 5.905414E-8f32), + ((20, 100), 5.9325732E-8f32), + ((30, -100), 1.883031E-9f32), + ((30, -90), 2.340967E-9f32), + ((30, -80), 4.621183E-9f32), + ((30, -70), 4.499291E-9f32), + ((30, -60), 9.207621E-9f32), + ((30, -50), 1.8463968E-8f32), + ((30, -40), 3.1730355E-8f32), + ((30, -30), 4.180272E-8f32), + ((30, -20), 4.8970673E-8f32), + ((30, -10), 5.1013075E-8f32), + ((30, 0), 5.4809675E-8f32), + ((30, 10), 0.021245107f32), + ((30, 20), 0.15461163f32), + ((30, 30), 0.16635494f32), + ((30, 40), 0.1956933f32), + ((30, 50), 0.125502f32), + ((30, 60), 0.0454505f32), + ((30, 70), 0.11700109f32), + ((30, 80), 0.09687484f32), + ((30, 90), 0.098305956f32), + ((30, 100), 0.1445496f32), + ((40, -100), 1.0226738E-8f32), + ((40, -90), 1.1222422E-8f32), + ((40, -80), 1.1587838E-8f32), + ((40, -70), 1.2693759E-8f32), + ((40, -60), 2.4839746E-8f32), + ((40, -50), 3.7039946E-8f32), + ((40, -40), 4.376643E-8f32), + ((40, -30), 5.5051583E-8f32), + ((40, -20), 5.699222E-8f32), + ((40, -10), 5.8692283E-8f32), + ((40, 0), 5.959828E-8f32), + ((40, 10), 0.117445365f32), + ((40, 20), 0.1976749f32), + ((40, 30), 0.15454988f32), + ((40, 40), 0.12067541f32), + ((40, 50), 0.18615633f32), + ((40, 60), 0.13336352f32), + ((40, 70), 0.17219193f32), + ((40, 80), 0.19097134f32), + ((40, 90), 0.17008683f32), + ((40, 100), 0.19814269f32), + ((50, -100), 1.986243E-8f32), + ((50, -90), 3.0001612E-8f32), + ((50, -80), 2.7766955E-8f32), + ((50, -70), 2.638818E-8f32), + ((50, -60), 2.8721853E-8f32), + ((50, -50), 4.524472E-8f32), + ((50, -40), 5.231772E-8f32), + ((50, -30), 5.6755226E-8f32), + ((50, -20), 0.007071222f32), + ((50, -10), 0.044527233f32), + ((50, 0), 0.1308815f32), + ((50, 10), 0.17924443f32), + ((50, 20), 0.171056f32), + ((50, 30), 0.11742895f32), + ((50, 40), 0.100002244f32), + ((50, 50), 0.07300641f32), + ((50, 60), 0.039613634f32), + ((50, 70), 0.07481807f32), + ((50, 80), 0.14415564f32), + ((50, 90), 0.17187755f32), + ((50, 100), 0.19749363f32), + ((60, -100), 2.5121897E-8f32), + ((60, -90), 3.6076102E-8f32), + ((60, -80), 3.5671647E-8f32), + ((60, -70), 3.3701973E-8f32), + ((60, -60), 4.019155E-8f32), + ((60, -50), 4.4427246E-8f32), + ((60, -40), 4.8801404E-8f32), + ((60, -30), 5.7100323E-8f32), + ((60, -20), 0.016408712f32), + ((60, -10), 0.118191816f32), + ((60, 0), 0.1338304f32), + ((60, 10), 0.19006152f32), + ((60, 20), 0.13440025f32), + ((60, 30), 0.05049737f32), + ((60, 40), 0.034953773f32), + ((60, 50), 0.010686001f32), + ((60, 60), 9.3192887E-4f32), + ((60, 70), 0.01608308f32), + ((60, 80), 0.06671151f32), + ((60, 90), 0.12534031f32), + ((60, 100), 0.1557267f32), + ((70, -100), 2.4559224E-8f32), + ((70, -90), 3.1209016E-8f32), + ((70, -80), 3.584771E-8f32), + ((70, -70), 3.920727E-8f32), + ((70, -60), 4.6965155E-8f32), + ((70, -50), 5.0089643E-8f32), + ((70, -40), 5.7268437E-8f32), + ((70, -30), 5.8877202E-8f32), + ((70, -20), 0.04484091f32), + ((70, -10), 0.10752107f32), + ((70, 0), 0.18246908f32), + ((70, 10), 0.15116146f32), + ((70, 20), 0.11487521f32), + ((70, 30), 0.032360524f32), + ((70, 40), 8.2579E-4f32), + ((70, 50), -2.8622872E-4f32), + ((70, 60), -1.8847623E-4f32), + ((70, 70), 0.013071927f32), + ((70, 80), 0.033794176f32), + ((70, 90), 0.0804281f32), + ((70, 100), 0.1404463f32), + ((80, -100), 2.193597E-8f32), + ((80, -90), 2.6228625E-8f32), + ((80, -80), 3.3251055E-8f32), + ((80, -70), 3.7941476E-8f32), + ((80, -60), 4.690521E-8f32), + ((80, -50), 5.439166E-8f32), + ((80, -40), 5.7380536E-8f32), + ((80, -30), -3.256929E-4f32), + ((80, -20), 0.09458507f32), + ((80, -10), 0.14780462f32), + ((80, 0), 0.17881581f32), + ((80, 10), 0.104895204f32), + ((80, 20), 0.07187125f32), + ((80, 30), 0.033689234f32), + ((80, 40), 0.021538133f32), + ((80, 50), 0.023637377f32), + ((80, 60), 0.013018714f32), + ((80, 70), 0.01623013f32), + ((80, 80), 0.051183194f32), + ((80, 90), 0.12191488f32), + ((80, 100), 0.183341f32), + ((90, -100), 2.1037952E-8f32), + ((90, -90), 2.265903E-8f32), + ((90, -80), 2.9746175E-8f32), + ((90, -70), 3.0741784E-8f32), + ((90, -60), 3.696515E-8f32), + ((90, -50), 4.9130783E-8f32), + ((90, -40), 5.4571295E-8f32), + ((90, -30), 5.932105E-8f32), + ((90, -20), 0.052174564f32), + ((90, -10), 0.1461835f32), + ((90, 0), 0.16661009f32), + ((90, 10), 0.17031777f32), + ((90, 20), 0.09012478f32), + ((90, 30), 0.08638496f32), + ((90, 40), 0.077556595f32), + ((90, 50), 0.090003595f32), + ((90, 60), 0.078915626f32), + ((90, 70), 0.08257657f32), + ((90, 80), 0.07836004f32), + ((90, 90), 0.14655045f32), + ((90, 100), 0.18773082f32), + ((100, -100), 1.6543842E-8f32), + ((100, -90), 2.0407779E-8f32), + ((100, -80), 2.2677513E-8f32), + ((100, -70), 2.7998853E-8f32), + ((100, -60), 3.3088963E-8f32), + ((100, -50), 3.9689027E-8f32), + ((100, -40), 4.2064737E-8f32), + ((100, -30), 5.060286E-8f32), + ((100, -20), 5.8539825E-8f32), + ((100, -10), 5.9588313E-8f32), + ((100, 0), 0.09291531f32), + ((100, 10), 0.16675612f32), + ((100, 20), 0.19767791f32), + ((100, 30), 0.19702585f32), + ((100, 40), 0.18153131f32), + ((100, 50), 0.1733732f32), + ((100, 60), 0.1887327f32), + ((100, 70), 0.17346446f32), + ((100, 80), 0.1434478f32), + ((100, 90), 0.19244039f32), + ((100, 100), 0.08641162f32), + ]; - let spline = create_offset_spline( - noise_functions.continents_overworld, - noise_functions.erosion_overworld.clone(), - noise_functions.ridges_folded_overworld.clone(), + let spline = create_ridges_spline( + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + 0.1f32, false, + FloatAmplifier::OffsetAmplifier, ); + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), value); + } + } + + #[test] + fn test_create_standard_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let values = [ + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + -0.5855955f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + -0.5855955f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + -0.5855955f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + -0.5855955f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + -1.054043f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + -1.054043f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + -1.054043f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + -1.054043f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -0.6609869f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + -0.6396386f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + -0.6396386f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.2500136f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + -0.6396386f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + -0.6396386f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.5890267f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + -0.53155243f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -0.9811153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.5890267f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.2725821f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 1.1114353f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.06985277f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.1303201f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + -1.2500136f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + 0.045165043f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.2027293f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, -100), + -1.1303201f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (100, 100), + -1.2027293f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, -100), + -1.1114353f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 0.6609869f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (100, 100), + 0.06985277f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, -100), + 0.9811153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (100, 100), + -0.2725821f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-100, 100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, -100), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (100, 100), + 1.0f32, + ), + ]; + + for ((i, j, k, l, m, n), (x, z), result) in values { + let spline = create_standard_spline( + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + k, + l, + m, + n, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_total_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let spline = create_total_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + 0.1f32, + false, + FloatAmplifier::Identity, + ); + + let results = [ + ((-100, -100), 3.9559398f32), + ((-100, -80), 4.807647f32), + ((-100, -60), 5.374414f32), + ((-100, -40), 6.039576f32), + ((-100, -20), 6.2145243f32), + ((-100, 0), 6.2519383f32), + ((-100, 20), 5.668728f32), + ((-100, 40), 5.430271f32), + ((-100, 60), 5.3465686f32), + ((-100, 80), 5.7992992f32), + ((-100, 100), 6.184176f32), + ((-80, -100), 4.2855577f32), + ((-80, -80), 5.410581f32), + ((-80, -60), 6.0751333f32), + ((-80, -40), 6.064536f32), + ((-80, -20), 6.294022f32), + ((-80, 0), 5.9999614f32), + ((-80, 20), 5.593004f32), + ((-80, 40), 5.134943f32), + ((-80, 60), 4.980488f32), + ((-80, 80), 5.261717f32), + ((-80, 100), 5.8683443f32), + ((-60, -100), 5.3242173f32), + ((-60, -80), 6.1496606f32), + ((-60, -60), 6.2368507f32), + ((-60, -40), 6.2986646f32), + ((-60, -20), 5.810248f32), + ((-60, 0), 5.273079f32), + ((-60, 20), 5.040388f32), + ((-60, 40), 4.3643947f32), + ((-60, 60), 4.333951f32), + ((-60, 80), 4.4810057f32), + ((-60, 100), 5.1953006f32), + ((-40, -100), 5.7455482f32), + ((-40, -80), 6.260874f32), + ((-40, -60), 6.145445f32), + ((-40, -40), 5.577779f32), + ((-40, -20), 4.6068044f32), + ((-40, 0), 3.8860993f32), + ((-40, 20), 3.6332812f32), + ((-40, 40), 3.6844056f32), + ((-40, 60), 3.6776288f32), + ((-40, 80), 4.0753975f32), + ((-40, 100), 4.052621f32), + ((-20, -100), 5.9622307f32), + ((-20, -80), 6.1761384f32), + ((-20, -60), 5.989888f32), + ((-20, -40), 5.1478043f32), + ((-20, -20), 3.3569198f32), + ((-20, 0), 3.5856972f32), + ((-20, 20), 4.7114053f32), + ((-20, 40), 5.187414f32), + ((-20, 60), 5.3671384f32), + ((-20, 80), 5.118062f32), + ((-20, 100), 5.00394f32), + ((0, -100), 5.6509624f32), + ((0, -80), 3.9915285f32), + ((0, -60), 3.0518057f32), + ((0, -40), 3.6596267f32), + ((0, -20), 3.7325847f32), + ((0, 0), 5.0374494f32), + ((0, 20), 5.4231296f32), + ((0, 40), 5.573647f32), + ((0, 60), 5.7088904f32), + ((0, 80), 5.8659945f32), + ((0, 100), 6.062538f32), + ((20, -100), 2.6716564f32), + ((20, -80), 3.0382447f32), + ((20, -60), 3.2207258f32), + ((20, -40), 3.914099f32), + ((20, -20), 4.7410517f32), + ((20, 0), 5.3999853f32), + ((20, 20), 5.6645765f32), + ((20, 40), 5.8144393f32), + ((20, 60), 5.7998343f32), + ((20, 80), 6.048253f32), + ((20, 100), 6.258326f32), + ((40, -100), 2.7401226f32), + ((40, -80), 2.915509f32), + ((40, -60), 3.5286994f32), + ((40, -40), 4.3014565f32), + ((40, -20), 5.0878124f32), + ((40, 0), 5.541592f32), + ((40, 20), 5.8015866f32), + ((40, 40), 5.959838f32), + ((40, 60), 6.0048213f32), + ((40, 80), 6.170586f32), + ((40, 100), 6.3f32), + ((60, -100), 3.086289f32), + ((60, -80), 3.4860597f32), + ((60, -60), 3.699067f32), + ((60, -40), 4.0114455f32), + ((60, -20), 5.0421495f32), + ((60, 0), 5.3703775f32), + ((60, 20), 5.722691f32), + ((60, 40), 5.930701f32), + ((60, 60), 6.1620193f32), + ((60, 80), 6.3f32), + ((60, 100), 6.3f32), + ((80, -100), 3.215626f32), + ((80, -80), 3.7482586f32), + ((80, -60), 4.0281653f32), + ((80, -40), 4.536797f32), + ((80, -20), 5.225231f32), + ((80, 0), 5.6602106f32), + ((80, 20), 5.8967495f32), + ((80, 40), 6.143576f32), + ((80, 60), 6.280398f32), + ((80, 80), 6.3f32), + ((80, 100), 6.3f32), + ((100, -100), 3.8355258f32), + ((100, -80), 4.377617f32), + ((100, -60), 4.545309f32), + ((100, -40), 4.9803877f32), + ((100, -20), 5.34028f32), + ((100, 0), 5.9103274f32), + ((100, 20), 6.028236f32), + ((100, 40), 6.257579f32), + ((100, 60), 6.3f32), + ((100, 80), 6.3f32), + ((100, 100), 6.3f32), + ]; + + for ((x, z), result) in results { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + + let spline = create_total_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + 0.1f32, + true, + FloatAmplifier::Identity, + ); + + let results = [ + ((-100, -100), 3.9559398f32), + ((-100, -80), 4.807647f32), + ((-100, -60), 5.374414f32), + ((-100, -40), 6.039576f32), + ((-100, -20), 6.2145243f32), + ((-100, 0), 6.2519383f32), + ((-100, 20), 5.668728f32), + ((-100, 40), 5.430271f32), + ((-100, 60), 5.3465686f32), + ((-100, 80), 5.7992992f32), + ((-100, 100), 6.184176f32), + ((-80, -100), 4.2855577f32), + ((-80, -80), 5.410581f32), + ((-80, -60), 6.0751333f32), + ((-80, -40), 6.064536f32), + ((-80, -20), 6.294022f32), + ((-80, 0), 5.9999614f32), + ((-80, 20), 5.593004f32), + ((-80, 40), 5.134943f32), + ((-80, 60), 4.980488f32), + ((-80, 80), 5.261717f32), + ((-80, 100), 5.8683443f32), + ((-60, -100), 5.3242173f32), + ((-60, -80), 6.1496606f32), + ((-60, -60), 6.2368507f32), + ((-60, -40), 6.2986646f32), + ((-60, -20), 5.810248f32), + ((-60, 0), 5.273079f32), + ((-60, 20), 5.040388f32), + ((-60, 40), 4.3643947f32), + ((-60, 60), 4.333951f32), + ((-60, 80), 4.4810057f32), + ((-60, 100), 5.1953006f32), + ((-40, -100), 5.7455482f32), + ((-40, -80), 6.260874f32), + ((-40, -60), 6.145445f32), + ((-40, -40), 5.577779f32), + ((-40, -20), 4.6068044f32), + ((-40, 0), 3.8860993f32), + ((-40, 20), 3.6332812f32), + ((-40, 40), 3.6844056f32), + ((-40, 60), 3.6776288f32), + ((-40, 80), 4.0753975f32), + ((-40, 100), 4.052621f32), + ((-20, -100), 5.9622307f32), + ((-20, -80), 6.1761384f32), + ((-20, -60), 5.989888f32), + ((-20, -40), 5.1478043f32), + ((-20, -20), 3.3569198f32), + ((-20, 0), 3.5856972f32), + ((-20, 20), 4.7114053f32), + ((-20, 40), 5.187414f32), + ((-20, 60), 5.3671384f32), + ((-20, 80), 5.118062f32), + ((-20, 100), 5.00394f32), + ((0, -100), 5.6509624f32), + ((0, -80), 3.9915285f32), + ((0, -60), 3.0518057f32), + ((0, -40), 3.6596267f32), + ((0, -20), 3.7325847f32), + ((0, 0), 5.0374494f32), + ((0, 20), 5.4231296f32), + ((0, 40), 5.573647f32), + ((0, 60), 5.7088904f32), + ((0, 80), 5.8659945f32), + ((0, 100), 6.062538f32), + ((20, -100), 2.6716564f32), + ((20, -80), 3.0382447f32), + ((20, -60), 3.2207258f32), + ((20, -40), 3.914099f32), + ((20, -20), 4.7410517f32), + ((20, 0), 5.3999853f32), + ((20, 20), 5.6645765f32), + ((20, 40), 5.8144393f32), + ((20, 60), 5.7998343f32), + ((20, 80), 6.048253f32), + ((20, 100), 6.258326f32), + ((40, -100), 2.7401226f32), + ((40, -80), 2.915509f32), + ((40, -60), 3.5286994f32), + ((40, -40), 4.3014565f32), + ((40, -20), 5.0878124f32), + ((40, 0), 5.541592f32), + ((40, 20), 5.8015866f32), + ((40, 40), 5.959838f32), + ((40, 60), 6.0048213f32), + ((40, 80), 6.170586f32), + ((40, 100), 6.3f32), + ((60, -100), 3.086289f32), + ((60, -80), 3.4860597f32), + ((60, -60), 3.699067f32), + ((60, -40), 4.0114455f32), + ((60, -20), 5.0421495f32), + ((60, 0), 5.3703775f32), + ((60, 20), 5.722691f32), + ((60, 40), 5.930701f32), + ((60, 60), 6.1620193f32), + ((60, 80), 6.3f32), + ((60, 100), 6.3f32), + ((80, -100), 3.215626f32), + ((80, -80), 3.7482586f32), + ((80, -60), 4.0281653f32), + ((80, -40), 4.536797f32), + ((80, -20), 5.225231f32), + ((80, 0), 5.6602106f32), + ((80, 20), 5.8967495f32), + ((80, 40), 6.143576f32), + ((80, 60), 6.280398f32), + ((80, 80), 6.3f32), + ((80, 100), 6.3f32), + ((100, -100), 3.8355258f32), + ((100, -80), 4.377617f32), + ((100, -60), 4.545309f32), + ((100, -40), 4.9803877f32), + ((100, -20), 5.34028f32), + ((100, 0), 5.9103274f32), + ((100, 20), 6.028236f32), + ((100, 40), 6.257579f32), + ((100, 60), 6.3f32), + ((100, 80), 6.3f32), + ((100, 100), 6.3f32), + ]; + + for ((x, z), result) in results { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_folded_ridges_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let results = [ + ((-1.0f32, -1.0f32), (-100, -100), 0.0f32), + ((-1.0f32, -1.0f32), (-100, -80), 0.0f32), + ((-1.0f32, -1.0f32), (-100, -60), 0.0f32), + ((-1.0f32, -1.0f32), (-100, -40), 0.0f32), + ((-1.0f32, -1.0f32), (-100, -20), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 20), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 40), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 60), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 80), 0.0f32), + ((-1.0f32, -1.0f32), (-100, 100), 0.0f32), + ((-1.0f32, -1.0f32), (-80, -100), 0.0f32), + ((-1.0f32, -1.0f32), (-80, -80), 0.0f32), + ((-1.0f32, -1.0f32), (-80, -60), 0.0f32), + ((-1.0f32, -1.0f32), (-80, -40), 0.0f32), + ((-1.0f32, -1.0f32), (-80, -20), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 20), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 40), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 60), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 80), 0.0f32), + ((-1.0f32, -1.0f32), (-80, 100), 0.0f32), + ((-1.0f32, -1.0f32), (-60, -100), 0.0f32), + ((-1.0f32, -1.0f32), (-60, -80), 0.0f32), + ((-1.0f32, -1.0f32), (-60, -60), 0.0f32), + ((-1.0f32, -1.0f32), (-60, -40), 0.0f32), + ((-1.0f32, -1.0f32), (-60, -20), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 20), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 40), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 60), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 80), 0.0f32), + ((-1.0f32, -1.0f32), (-60, 100), 0.0f32), + ((-1.0f32, -1.0f32), (-40, -100), 0.0f32), + ((-1.0f32, -1.0f32), (-40, -80), 0.0f32), + ((-1.0f32, -1.0f32), (-40, -60), 0.0f32), + ((-1.0f32, -1.0f32), (-40, -40), 0.0f32), + ((-1.0f32, -1.0f32), (-40, -20), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 20), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 40), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 60), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 80), 0.0f32), + ((-1.0f32, -1.0f32), (-40, 100), 0.0f32), + ((-1.0f32, -1.0f32), (-20, -100), 0.0f32), + ((-1.0f32, -1.0f32), (-20, -80), 0.0f32), + ((-1.0f32, -1.0f32), (-20, -60), 0.0f32), + ((-1.0f32, -1.0f32), (-20, -40), 0.0f32), + ((-1.0f32, -1.0f32), (-20, -20), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 20), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 40), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 60), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 80), 0.0f32), + ((-1.0f32, -1.0f32), (-20, 100), 0.0f32), + ((-1.0f32, -1.0f32), (0, -100), 0.0f32), + ((-1.0f32, -1.0f32), (0, -80), 0.0f32), + ((-1.0f32, -1.0f32), (0, -60), 0.0f32), + ((-1.0f32, -1.0f32), (0, -40), 0.0f32), + ((-1.0f32, -1.0f32), (0, -20), 0.0f32), + ((-1.0f32, -1.0f32), (0, 0), 0.0f32), + ((-1.0f32, -1.0f32), (0, 20), 0.0f32), + ((-1.0f32, -1.0f32), (0, 40), 0.0f32), + ((-1.0f32, -1.0f32), (0, 60), 0.0f32), + ((-1.0f32, -1.0f32), (0, 80), 0.0f32), + ((-1.0f32, -1.0f32), (0, 100), 0.0f32), + ((-1.0f32, -1.0f32), (20, -100), 0.0f32), + ((-1.0f32, -1.0f32), (20, -80), 0.0f32), + ((-1.0f32, -1.0f32), (20, -60), 0.0f32), + ((-1.0f32, -1.0f32), (20, -40), 0.0f32), + ((-1.0f32, -1.0f32), (20, -20), 0.0f32), + ((-1.0f32, -1.0f32), (20, 0), 0.0f32), + ((-1.0f32, -1.0f32), (20, 20), 0.0f32), + ((-1.0f32, -1.0f32), (20, 40), 0.0f32), + ((-1.0f32, -1.0f32), (20, 60), 0.0f32), + ((-1.0f32, -1.0f32), (20, 80), 0.0f32), + ((-1.0f32, -1.0f32), (20, 100), 0.0f32), + ((-1.0f32, -1.0f32), (40, -100), 0.0f32), + ((-1.0f32, -1.0f32), (40, -80), 0.0f32), + ((-1.0f32, -1.0f32), (40, -60), 0.0f32), + ((-1.0f32, -1.0f32), (40, -40), 0.0f32), + ((-1.0f32, -1.0f32), (40, -20), 0.0f32), + ((-1.0f32, -1.0f32), (40, 0), 0.0f32), + ((-1.0f32, -1.0f32), (40, 20), 0.0f32), + ((-1.0f32, -1.0f32), (40, 40), 0.0f32), + ((-1.0f32, -1.0f32), (40, 60), 0.0f32), + ((-1.0f32, -1.0f32), (40, 80), 0.0f32), + ((-1.0f32, -1.0f32), (40, 100), 0.0f32), + ((-1.0f32, -1.0f32), (60, -100), 0.0f32), + ((-1.0f32, -1.0f32), (60, -80), 0.0f32), + ((-1.0f32, -1.0f32), (60, -60), 0.0f32), + ((-1.0f32, -1.0f32), (60, -40), 0.0f32), + ((-1.0f32, -1.0f32), (60, -20), 0.0f32), + ((-1.0f32, -1.0f32), (60, 0), 0.0f32), + ((-1.0f32, -1.0f32), (60, 20), 0.0f32), + ((-1.0f32, -1.0f32), (60, 40), 0.0f32), + ((-1.0f32, -1.0f32), (60, 60), 0.0f32), + ((-1.0f32, -1.0f32), (60, 80), 0.0f32), + ((-1.0f32, -1.0f32), (60, 100), 0.0f32), + ((-1.0f32, -1.0f32), (80, -100), 0.0f32), + ((-1.0f32, -1.0f32), (80, -80), 0.0f32), + ((-1.0f32, -1.0f32), (80, -60), 0.0f32), + ((-1.0f32, -1.0f32), (80, -40), 0.0f32), + ((-1.0f32, -1.0f32), (80, -20), 0.0f32), + ((-1.0f32, -1.0f32), (80, 0), 0.0f32), + ((-1.0f32, -1.0f32), (80, 20), 0.0f32), + ((-1.0f32, -1.0f32), (80, 40), 0.0f32), + ((-1.0f32, -1.0f32), (80, 60), 0.0f32), + ((-1.0f32, -1.0f32), (80, 80), 0.0f32), + ((-1.0f32, -1.0f32), (80, 100), 0.0f32), + ((-1.0f32, -1.0f32), (100, -100), 0.0f32), + ((-1.0f32, -1.0f32), (100, -80), 0.0f32), + ((-1.0f32, -1.0f32), (100, -60), 0.0f32), + ((-1.0f32, -1.0f32), (100, -40), 0.0f32), + ((-1.0f32, -1.0f32), (100, -20), 0.0f32), + ((-1.0f32, -1.0f32), (100, 0), 0.0f32), + ((-1.0f32, -1.0f32), (100, 20), 0.0f32), + ((-1.0f32, -1.0f32), (100, 40), 0.0f32), + ((-1.0f32, -1.0f32), (100, 60), 0.0f32), + ((-1.0f32, -1.0f32), (100, 80), 0.0f32), + ((-1.0f32, -1.0f32), (100, 100), 0.0f32), + ((-1.0f32, 1.0f32), (-100, -100), 0.297652f32), + ((-1.0f32, 1.0f32), (-100, -80), 0.28439626f32), + ((-1.0f32, 1.0f32), (-100, -60), 0.28112307f32), + ((-1.0f32, 1.0f32), (-100, -40), 0.28095382f32), + ((-1.0f32, 1.0f32), (-100, -20), 0.24100831f32), + ((-1.0f32, 1.0f32), (-100, 0), 0.2526898f32), + ((-1.0f32, 1.0f32), (-100, 20), 0.2813595f32), + ((-1.0f32, 1.0f32), (-100, 40), 0.29286346f32), + ((-1.0f32, 1.0f32), (-100, 60), 0.21068382f32), + ((-1.0f32, 1.0f32), (-100, 80), 0.063217856f32), + ((-1.0f32, 1.0f32), (-100, 100), 0.0f32), + ((-1.0f32, 1.0f32), (-80, -100), 0.0f32), + ((-1.0f32, 1.0f32), (-80, -80), 0.008730456f32), + ((-1.0f32, 1.0f32), (-80, -60), 0.15711506f32), + ((-1.0f32, 1.0f32), (-80, -40), 0.28587654f32), + ((-1.0f32, 1.0f32), (-80, -20), 0.21130508f32), + ((-1.0f32, 1.0f32), (-80, 0), 0.29809594f32), + ((-1.0f32, 1.0f32), (-80, 20), 0.2206994f32), + ((-1.0f32, 1.0f32), (-80, 40), 0.0027657598f32), + ((-1.0f32, 1.0f32), (-80, 60), 0.0f32), + ((-1.0f32, 1.0f32), (-80, 80), 0.0f32), + ((-1.0f32, 1.0f32), (-80, 100), 0.0f32), + ((-1.0f32, 1.0f32), (-60, -100), 0.0f32), + ((-1.0f32, 1.0f32), (-60, -80), 0.0f32), + ((-1.0f32, 1.0f32), (-60, -60), 0.0f32), + ((-1.0f32, 1.0f32), (-60, -40), 0.0f32), + ((-1.0f32, 1.0f32), (-60, -20), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 20), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 40), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 60), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 80), 0.0f32), + ((-1.0f32, 1.0f32), (-60, 100), 0.0f32), + ((-1.0f32, 1.0f32), (-40, -100), 0.0f32), + ((-1.0f32, 1.0f32), (-40, -80), 0.0f32), + ((-1.0f32, 1.0f32), (-40, -60), 0.0f32), + ((-1.0f32, 1.0f32), (-40, -40), 0.0f32), + ((-1.0f32, 1.0f32), (-40, -20), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 20), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 40), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 60), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 80), 0.0f32), + ((-1.0f32, 1.0f32), (-40, 100), 0.0f32), + ((-1.0f32, 1.0f32), (-20, -100), 0.0f32), + ((-1.0f32, 1.0f32), (-20, -80), 0.0f32), + ((-1.0f32, 1.0f32), (-20, -60), 0.0f32), + ((-1.0f32, 1.0f32), (-20, -40), 0.0f32), + ((-1.0f32, 1.0f32), (-20, -20), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 20), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 40), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 60), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 80), 0.0f32), + ((-1.0f32, 1.0f32), (-20, 100), 0.0f32), + ((-1.0f32, 1.0f32), (0, -100), 0.0f32), + ((-1.0f32, 1.0f32), (0, -80), 0.0f32), + ((-1.0f32, 1.0f32), (0, -60), 0.0f32), + ((-1.0f32, 1.0f32), (0, -40), 0.0f32), + ((-1.0f32, 1.0f32), (0, -20), 0.0f32), + ((-1.0f32, 1.0f32), (0, 0), 0.0f32), + ((-1.0f32, 1.0f32), (0, 20), 0.0f32), + ((-1.0f32, 1.0f32), (0, 40), 0.0f32), + ((-1.0f32, 1.0f32), (0, 60), 0.31608355f32), + ((-1.0f32, 1.0f32), (0, 80), 0.15622428f32), + ((-1.0f32, 1.0f32), (0, 100), 0.0f32), + ((-1.0f32, 1.0f32), (20, -100), 0.0f32), + ((-1.0f32, 1.0f32), (20, -80), 0.0f32), + ((-1.0f32, 1.0f32), (20, -60), 0.0f32), + ((-1.0f32, 1.0f32), (20, -40), 0.0f32), + ((-1.0f32, 1.0f32), (20, -20), 0.0f32), + ((-1.0f32, 1.0f32), (20, 0), 0.0f32), + ((-1.0f32, 1.0f32), (20, 20), 0.6269908f32), + ((-1.0f32, 1.0f32), (20, 40), 0.16064115f32), + ((-1.0f32, 1.0f32), (20, 60), 0.40093344f32), + ((-1.0f32, 1.0f32), (20, 80), 0.62168556f32), + ((-1.0f32, 1.0f32), (20, 100), 0.579518f32), + ((-1.0f32, 1.0f32), (40, -100), 0.0f32), + ((-1.0f32, 1.0f32), (40, -80), 0.0f32), + ((-1.0f32, 1.0f32), (40, -60), 0.0f32), + ((-1.0f32, 1.0f32), (40, -40), 0.0f32), + ((-1.0f32, 1.0f32), (40, -20), 0.62588596f32), + ((-1.0f32, 1.0f32), (40, 0), 0.5309059f32), + ((-1.0f32, 1.0f32), (40, 20), 4.5912433E-4f32), + ((-1.0f32, 1.0f32), (40, 40), 0.13530377f32), + ((-1.0f32, 1.0f32), (40, 60), 0.10672425f32), + ((-1.0f32, 1.0f32), (40, 80), 0.0052022375f32), + ((-1.0f32, 1.0f32), (40, 100), 3.0043628E-4f32), + ((-1.0f32, 1.0f32), (60, -100), 0.0f32), + ((-1.0f32, 1.0f32), (60, -80), 0.0f32), + ((-1.0f32, 1.0f32), (60, -60), 0.0f32), + ((-1.0f32, 1.0f32), (60, -40), 0.08376785f32), + ((-1.0f32, 1.0f32), (60, -20), 0.43452874f32), + ((-1.0f32, 1.0f32), (60, 0), 0.1057023f32), + ((-1.0f32, 1.0f32), (60, 20), 0.10445799f32), + ((-1.0f32, 1.0f32), (60, 40), 0.36914507f32), + ((-1.0f32, 1.0f32), (60, 60), 0.5024393f32), + ((-1.0f32, 1.0f32), (60, 80), 0.27316388f32), + ((-1.0f32, 1.0f32), (60, 100), 0.06046915f32), + ((-1.0f32, 1.0f32), (80, -100), 0.0f32), + ((-1.0f32, 1.0f32), (80, -80), 0.0f32), + ((-1.0f32, 1.0f32), (80, -60), 0.01727397f32), + ((-1.0f32, 1.0f32), (80, -40), 0.6299955f32), + ((-1.0f32, 1.0f32), (80, -20), 0.19864634f32), + ((-1.0f32, 1.0f32), (80, 0), 0.02047487f32), + ((-1.0f32, 1.0f32), (80, 20), 0.25879034f32), + ((-1.0f32, 1.0f32), (80, 40), 0.41536066f32), + ((-1.0f32, 1.0f32), (80, 60), 0.44784027f32), + ((-1.0f32, 1.0f32), (80, 80), 0.31828198f32), + ((-1.0f32, 1.0f32), (80, 100), 0.014104452f32), + ((-1.0f32, 1.0f32), (100, -100), 0.0f32), + ((-1.0f32, 1.0f32), (100, -80), 0.0f32), + ((-1.0f32, 1.0f32), (100, -60), 0.0f32), + ((-1.0f32, 1.0f32), (100, -40), 0.0f32), + ((-1.0f32, 1.0f32), (100, -20), 0.6171453f32), + ((-1.0f32, 1.0f32), (100, 0), 0.20290473f32), + ((-1.0f32, 1.0f32), (100, 20), 4.5798905E-4f32), + ((-1.0f32, 1.0f32), (100, 40), 0.01657176f32), + ((-1.0f32, 1.0f32), (100, 60), 0.00752043f32), + ((-1.0f32, 1.0f32), (100, 80), 0.0851554f32), + ((-1.0f32, 1.0f32), (100, 100), 0.21973094f32), + ((1.0f32, -1.0f32), (-100, -100), 0.0f32), + ((1.0f32, -1.0f32), (-100, -80), 0.015603749f32), + ((1.0f32, -1.0f32), (-100, -60), 0.018876947f32), + ((1.0f32, -1.0f32), (-100, -40), 0.019046182f32), + ((1.0f32, -1.0f32), (-100, -20), 0.058991697f32), + ((1.0f32, -1.0f32), (-100, 0), 0.047310222f32), + ((1.0f32, -1.0f32), (-100, 20), 0.01864053f32), + ((1.0f32, -1.0f32), (-100, 40), 0.0f32), + ((1.0f32, -1.0f32), (-100, 60), 0.0f32), + ((1.0f32, -1.0f32), (-100, 80), 0.0f32), + ((1.0f32, -1.0f32), (-100, 100), 0.0f32), + ((1.0f32, -1.0f32), (-80, -100), 0.0f32), + ((1.0f32, -1.0f32), (-80, -80), 0.0f32), + ((1.0f32, -1.0f32), (-80, -60), 0.0f32), + ((1.0f32, -1.0f32), (-80, -40), 0.0f32), + ((1.0f32, -1.0f32), (-80, -20), 0.0f32), + ((1.0f32, -1.0f32), (-80, 0), 0.0f32), + ((1.0f32, -1.0f32), (-80, 20), 0.0f32), + ((1.0f32, -1.0f32), (-80, 40), 0.0f32), + ((1.0f32, -1.0f32), (-80, 60), 0.0f32), + ((1.0f32, -1.0f32), (-80, 80), 0.0f32), + ((1.0f32, -1.0f32), (-80, 100), 0.0f32), + ((1.0f32, -1.0f32), (-60, -100), 0.0f32), + ((1.0f32, -1.0f32), (-60, -80), 0.0f32), + ((1.0f32, -1.0f32), (-60, -60), 0.0f32), + ((1.0f32, -1.0f32), (-60, -40), 0.0f32), + ((1.0f32, -1.0f32), (-60, -20), 0.0f32), + ((1.0f32, -1.0f32), (-60, 0), 0.0f32), + ((1.0f32, -1.0f32), (-60, 20), 0.0f32), + ((1.0f32, -1.0f32), (-60, 40), 0.0f32), + ((1.0f32, -1.0f32), (-60, 60), 0.0f32), + ((1.0f32, -1.0f32), (-60, 80), 0.0f32), + ((1.0f32, -1.0f32), (-60, 100), 0.0f32), + ((1.0f32, -1.0f32), (-40, -100), 0.0f32), + ((1.0f32, -1.0f32), (-40, -80), 0.0f32), + ((1.0f32, -1.0f32), (-40, -60), 0.0f32), + ((1.0f32, -1.0f32), (-40, -40), 0.0f32), + ((1.0f32, -1.0f32), (-40, -20), 0.0f32), + ((1.0f32, -1.0f32), (-40, 0), 0.0f32), + ((1.0f32, -1.0f32), (-40, 20), 0.0f32), + ((1.0f32, -1.0f32), (-40, 40), 0.0f32), + ((1.0f32, -1.0f32), (-40, 60), 0.0f32), + ((1.0f32, -1.0f32), (-40, 80), 0.0f32), + ((1.0f32, -1.0f32), (-40, 100), 0.0f32), + ((1.0f32, -1.0f32), (-20, -100), 0.0f32), + ((1.0f32, -1.0f32), (-20, -80), 0.0f32), + ((1.0f32, -1.0f32), (-20, -60), 0.0f32), + ((1.0f32, -1.0f32), (-20, -40), 0.0f32), + ((1.0f32, -1.0f32), (-20, -20), 0.0f32), + ((1.0f32, -1.0f32), (-20, 0), 0.0f32), + ((1.0f32, -1.0f32), (-20, 20), 0.0f32), + ((1.0f32, -1.0f32), (-20, 40), 0.0f32), + ((1.0f32, -1.0f32), (-20, 60), 0.0f32), + ((1.0f32, -1.0f32), (-20, 80), 0.0f32), + ((1.0f32, -1.0f32), (-20, 100), 0.0f32), + ((1.0f32, -1.0f32), (0, -100), 0.0f32), + ((1.0f32, -1.0f32), (0, -80), 0.0f32), + ((1.0f32, -1.0f32), (0, -60), 0.0f32), + ((1.0f32, -1.0f32), (0, -40), 0.0f32), + ((1.0f32, -1.0f32), (0, -20), 0.0f32), + ((1.0f32, -1.0f32), (0, 0), 0.0f32), + ((1.0f32, -1.0f32), (0, 20), 0.0f32), + ((1.0f32, -1.0f32), (0, 40), 0.0f32), + ((1.0f32, -1.0f32), (0, 60), 0.0f32), + ((1.0f32, -1.0f32), (0, 80), 0.0f32), + ((1.0f32, -1.0f32), (0, 100), 0.0f32), + ((1.0f32, -1.0f32), (20, -100), 0.0f32), + ((1.0f32, -1.0f32), (20, -80), 0.0f32), + ((1.0f32, -1.0f32), (20, -60), 0.0f32), + ((1.0f32, -1.0f32), (20, -40), 0.0f32), + ((1.0f32, -1.0f32), (20, -20), 0.0f32), + ((1.0f32, -1.0f32), (20, 0), 0.0f32), + ((1.0f32, -1.0f32), (20, 20), 0.003009146f32), + ((1.0f32, -1.0f32), (20, 40), 0.46935886f32), + ((1.0f32, -1.0f32), (20, 60), 0.0f32), + ((1.0f32, -1.0f32), (20, 80), 0.008314434f32), + ((1.0f32, -1.0f32), (20, 100), 0.05048198f32), + ((1.0f32, -1.0f32), (40, -100), 0.0f32), + ((1.0f32, -1.0f32), (40, -80), 0.0f32), + ((1.0f32, -1.0f32), (40, -60), 0.0f32), + ((1.0f32, -1.0f32), (40, -40), 0.0f32), + ((1.0f32, -1.0f32), (40, -20), 0.0f32), + ((1.0f32, -1.0f32), (40, 0), 0.09909409f32), + ((1.0f32, -1.0f32), (40, 20), 0.62954086f32), + ((1.0f32, -1.0f32), (40, 40), 0.49469623f32), + ((1.0f32, -1.0f32), (40, 60), 0.52327573f32), + ((1.0f32, -1.0f32), (40, 80), 0.62479776f32), + ((1.0f32, -1.0f32), (40, 100), 0.6296996f32), + ((1.0f32, -1.0f32), (60, -100), 0.0f32), + ((1.0f32, -1.0f32), (60, -80), 0.0f32), + ((1.0f32, -1.0f32), (60, -60), 0.0f32), + ((1.0f32, -1.0f32), (60, -40), 0.0f32), + ((1.0f32, -1.0f32), (60, -20), 0.19547126f32), + ((1.0f32, -1.0f32), (60, 0), 0.5242977f32), + ((1.0f32, -1.0f32), (60, 20), 0.525542f32), + ((1.0f32, -1.0f32), (60, 40), 0.26085493f32), + ((1.0f32, -1.0f32), (60, 60), 0.12756069f32), + ((1.0f32, -1.0f32), (60, 80), 0.3568361f32), + ((1.0f32, -1.0f32), (60, 100), 0.56953084f32), + ((1.0f32, -1.0f32), (80, -100), 0.0f32), + ((1.0f32, -1.0f32), (80, -80), 0.0f32), + ((1.0f32, -1.0f32), (80, -60), 0.0f32), + ((1.0f32, -1.0f32), (80, -40), 4.4467743E-6f32), + ((1.0f32, -1.0f32), (80, -20), 0.43135366f32), + ((1.0f32, -1.0f32), (80, 0), 0.60952514f32), + ((1.0f32, -1.0f32), (80, 20), 0.37120965f32), + ((1.0f32, -1.0f32), (80, 40), 0.21463935f32), + ((1.0f32, -1.0f32), (80, 60), 0.18215972f32), + ((1.0f32, -1.0f32), (80, 80), 0.31171802f32), + ((1.0f32, -1.0f32), (80, 100), 0.61589557f32), + ((1.0f32, -1.0f32), (100, -100), 0.0f32), + ((1.0f32, -1.0f32), (100, -80), 0.0f32), + ((1.0f32, -1.0f32), (100, -60), 0.0f32), + ((1.0f32, -1.0f32), (100, -40), 0.0f32), + ((1.0f32, -1.0f32), (100, -20), 0.012854669f32), + ((1.0f32, -1.0f32), (100, 0), 0.42709526f32), + ((1.0f32, -1.0f32), (100, 20), 0.629542f32), + ((1.0f32, -1.0f32), (100, 40), 0.61342824f32), + ((1.0f32, -1.0f32), (100, 60), 0.62247956f32), + ((1.0f32, -1.0f32), (100, 80), 0.54484457f32), + ((1.0f32, -1.0f32), (100, 100), 0.41026905f32), + ((1.0f32, 1.0f32), (-100, -100), 0.297652f32), + ((1.0f32, 1.0f32), (-100, -80), 0.3f32), + ((1.0f32, 1.0f32), (-100, -60), 0.3f32), + ((1.0f32, 1.0f32), (-100, -40), 0.3f32), + ((1.0f32, 1.0f32), (-100, -20), 0.3f32), + ((1.0f32, 1.0f32), (-100, 0), 0.3f32), + ((1.0f32, 1.0f32), (-100, 20), 0.3f32), + ((1.0f32, 1.0f32), (-100, 40), 0.29286346f32), + ((1.0f32, 1.0f32), (-100, 60), 0.21068382f32), + ((1.0f32, 1.0f32), (-100, 80), 0.063217856f32), + ((1.0f32, 1.0f32), (-100, 100), 0.0f32), + ((1.0f32, 1.0f32), (-80, -100), 0.0f32), + ((1.0f32, 1.0f32), (-80, -80), 0.008730456f32), + ((1.0f32, 1.0f32), (-80, -60), 0.15711506f32), + ((1.0f32, 1.0f32), (-80, -40), 0.28587654f32), + ((1.0f32, 1.0f32), (-80, -20), 0.21130508f32), + ((1.0f32, 1.0f32), (-80, 0), 0.29809594f32), + ((1.0f32, 1.0f32), (-80, 20), 0.2206994f32), + ((1.0f32, 1.0f32), (-80, 40), 0.0027657598f32), + ((1.0f32, 1.0f32), (-80, 60), 0.0f32), + ((1.0f32, 1.0f32), (-80, 80), 0.0f32), + ((1.0f32, 1.0f32), (-80, 100), 0.0f32), + ((1.0f32, 1.0f32), (-60, -100), 0.0f32), + ((1.0f32, 1.0f32), (-60, -80), 0.0f32), + ((1.0f32, 1.0f32), (-60, -60), 0.0f32), + ((1.0f32, 1.0f32), (-60, -40), 0.0f32), + ((1.0f32, 1.0f32), (-60, -20), 0.0f32), + ((1.0f32, 1.0f32), (-60, 0), 0.0f32), + ((1.0f32, 1.0f32), (-60, 20), 0.0f32), + ((1.0f32, 1.0f32), (-60, 40), 0.0f32), + ((1.0f32, 1.0f32), (-60, 60), 0.0f32), + ((1.0f32, 1.0f32), (-60, 80), 0.0f32), + ((1.0f32, 1.0f32), (-60, 100), 0.0f32), + ((1.0f32, 1.0f32), (-40, -100), 0.0f32), + ((1.0f32, 1.0f32), (-40, -80), 0.0f32), + ((1.0f32, 1.0f32), (-40, -60), 0.0f32), + ((1.0f32, 1.0f32), (-40, -40), 0.0f32), + ((1.0f32, 1.0f32), (-40, -20), 0.0f32), + ((1.0f32, 1.0f32), (-40, 0), 0.0f32), + ((1.0f32, 1.0f32), (-40, 20), 0.0f32), + ((1.0f32, 1.0f32), (-40, 40), 0.0f32), + ((1.0f32, 1.0f32), (-40, 60), 0.0f32), + ((1.0f32, 1.0f32), (-40, 80), 0.0f32), + ((1.0f32, 1.0f32), (-40, 100), 0.0f32), + ((1.0f32, 1.0f32), (-20, -100), 0.0f32), + ((1.0f32, 1.0f32), (-20, -80), 0.0f32), + ((1.0f32, 1.0f32), (-20, -60), 0.0f32), + ((1.0f32, 1.0f32), (-20, -40), 0.0f32), + ((1.0f32, 1.0f32), (-20, -20), 0.0f32), + ((1.0f32, 1.0f32), (-20, 0), 0.0f32), + ((1.0f32, 1.0f32), (-20, 20), 0.0f32), + ((1.0f32, 1.0f32), (-20, 40), 0.0f32), + ((1.0f32, 1.0f32), (-20, 60), 0.0f32), + ((1.0f32, 1.0f32), (-20, 80), 0.0f32), + ((1.0f32, 1.0f32), (-20, 100), 0.0f32), + ((1.0f32, 1.0f32), (0, -100), 0.0f32), + ((1.0f32, 1.0f32), (0, -80), 0.0f32), + ((1.0f32, 1.0f32), (0, -60), 0.0f32), + ((1.0f32, 1.0f32), (0, -40), 0.0f32), + ((1.0f32, 1.0f32), (0, -20), 0.0f32), + ((1.0f32, 1.0f32), (0, 0), 0.0f32), + ((1.0f32, 1.0f32), (0, 20), 0.0f32), + ((1.0f32, 1.0f32), (0, 40), 0.0f32), + ((1.0f32, 1.0f32), (0, 60), 0.31608355f32), + ((1.0f32, 1.0f32), (0, 80), 0.15622428f32), + ((1.0f32, 1.0f32), (0, 100), 0.0f32), + ((1.0f32, 1.0f32), (20, -100), 0.0f32), + ((1.0f32, 1.0f32), (20, -80), 0.0f32), + ((1.0f32, 1.0f32), (20, -60), 0.0f32), + ((1.0f32, 1.0f32), (20, -40), 0.0f32), + ((1.0f32, 1.0f32), (20, -20), 0.0f32), + ((1.0f32, 1.0f32), (20, 0), 0.0f32), + ((1.0f32, 1.0f32), (20, 20), 0.63f32), + ((1.0f32, 1.0f32), (20, 40), 0.63f32), + ((1.0f32, 1.0f32), (20, 60), 0.40093344f32), + ((1.0f32, 1.0f32), (20, 80), 0.63f32), + ((1.0f32, 1.0f32), (20, 100), 0.63f32), + ((1.0f32, 1.0f32), (40, -100), 0.0f32), + ((1.0f32, 1.0f32), (40, -80), 0.0f32), + ((1.0f32, 1.0f32), (40, -60), 0.0f32), + ((1.0f32, 1.0f32), (40, -40), 0.0f32), + ((1.0f32, 1.0f32), (40, -20), 0.62588596f32), + ((1.0f32, 1.0f32), (40, 0), 0.63f32), + ((1.0f32, 1.0f32), (40, 20), 0.63f32), + ((1.0f32, 1.0f32), (40, 40), 0.63f32), + ((1.0f32, 1.0f32), (40, 60), 0.63f32), + ((1.0f32, 1.0f32), (40, 80), 0.63f32), + ((1.0f32, 1.0f32), (40, 100), 0.63f32), + ((1.0f32, 1.0f32), (60, -100), 0.0f32), + ((1.0f32, 1.0f32), (60, -80), 0.0f32), + ((1.0f32, 1.0f32), (60, -60), 0.0f32), + ((1.0f32, 1.0f32), (60, -40), 0.08376785f32), + ((1.0f32, 1.0f32), (60, -20), 0.63f32), + ((1.0f32, 1.0f32), (60, 0), 0.63f32), + ((1.0f32, 1.0f32), (60, 20), 0.63f32), + ((1.0f32, 1.0f32), (60, 40), 0.63f32), + ((1.0f32, 1.0f32), (60, 60), 0.63f32), + ((1.0f32, 1.0f32), (60, 80), 0.63f32), + ((1.0f32, 1.0f32), (60, 100), 0.63f32), + ((1.0f32, 1.0f32), (80, -100), 0.0f32), + ((1.0f32, 1.0f32), (80, -80), 0.0f32), + ((1.0f32, 1.0f32), (80, -60), 0.01727397f32), + ((1.0f32, 1.0f32), (80, -40), 0.63f32), + ((1.0f32, 1.0f32), (80, -20), 0.63f32), + ((1.0f32, 1.0f32), (80, 0), 0.63f32), + ((1.0f32, 1.0f32), (80, 20), 0.63f32), + ((1.0f32, 1.0f32), (80, 40), 0.63f32), + ((1.0f32, 1.0f32), (80, 60), 0.63f32), + ((1.0f32, 1.0f32), (80, 80), 0.63f32), + ((1.0f32, 1.0f32), (80, 100), 0.63f32), + ((1.0f32, 1.0f32), (100, -100), 0.0f32), + ((1.0f32, 1.0f32), (100, -80), 0.0f32), + ((1.0f32, 1.0f32), (100, -60), 0.0f32), + ((1.0f32, 1.0f32), (100, -40), 0.0f32), + ((1.0f32, 1.0f32), (100, -20), 0.63f32), + ((1.0f32, 1.0f32), (100, 0), 0.63f32), + ((1.0f32, 1.0f32), (100, 20), 0.63f32), + ((1.0f32, 1.0f32), (100, 40), 0.63f32), + ((1.0f32, 1.0f32), (100, 60), 0.63f32), + ((1.0f32, 1.0f32), (100, 80), 0.63f32), + ((1.0f32, 1.0f32), (100, 100), 0.63f32), + ]; + + for ((i, j), (x, z), result) in results { + let spline = create_folded_ridges_spline( + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_ridges_part_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let spline = create_ridges_part_spline( + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + 0.1f32, + FloatAmplifier::Identity, + ); + + let results = [ + ((-100, -100), 0.030000001f32), + ((-100, -80), 0.030000001f32), + ((-100, -60), 0.030000001f32), + ((-100, -40), 0.030000001f32), + ((-100, -20), 0.030000001f32), + ((-100, 0), 0.030000001f32), + ((-100, 20), 0.030000001f32), + ((-100, 40), 0.030000001f32), + ((-100, 60), 0.030000001f32), + ((-100, 80), 0.030000001f32), + ((-100, 100), 0.030000001f32), + ((-80, -100), 0.030000001f32), + ((-80, -80), 0.030000001f32), + ((-80, -60), 0.030000001f32), + ((-80, -40), 0.030000001f32), + ((-80, -20), 0.030000001f32), + ((-80, 0), 0.030000001f32), + ((-80, 20), 0.030000001f32), + ((-80, 40), 0.030000001f32), + ((-80, 60), 0.030000001f32), + ((-80, 80), 0.030000001f32), + ((-80, 100), 0.030000001f32), + ((-60, -100), 0.030000001f32), + ((-60, -80), 0.030000001f32), + ((-60, -60), 0.030000001f32), + ((-60, -40), 0.030000001f32), + ((-60, -20), 0.030000001f32), + ((-60, 0), 0.030000001f32), + ((-60, 20), 0.030000001f32), + ((-60, 40), 0.030000001f32), + ((-60, 60), 0.030000001f32), + ((-60, 80), 0.030000001f32), + ((-60, 100), 0.030000001f32), + ((-40, -100), 0.030000001f32), + ((-40, -80), 0.030000001f32), + ((-40, -60), 0.030000001f32), + ((-40, -40), 0.030000001f32), + ((-40, -20), 0.030000001f32), + ((-40, 0), 0.030000001f32), + ((-40, 20), 0.030000001f32), + ((-40, 40), 0.030000001f32), + ((-40, 60), 0.030000001f32), + ((-40, 80), 0.030000001f32), + ((-40, 100), 0.030000001f32), + ((-20, -100), 0.030000001f32), + ((-20, -80), 0.030000001f32), + ((-20, -60), 0.030000001f32), + ((-20, -40), 0.030000001f32), + ((-20, -20), 0.063f32), + ((-20, 0), 0.063f32), + ((-20, 20), 0.063f32), + ((-20, 40), 0.063f32), + ((-20, 60), 0.063f32), + ((-20, 80), 0.063f32), + ((-20, 100), 0.063f32), + ((0, -100), 0.030000001f32), + ((0, -80), 0.062803626f32), + ((0, -60), 0.063f32), + ((0, -40), 0.063f32), + ((0, -20), 0.063f32), + ((0, 0), 0.063f32), + ((0, 20), 0.063f32), + ((0, 40), 0.063f32), + ((0, 60), 0.063f32), + ((0, 80), 0.063f32), + ((0, 100), 0.063f32), + ((20, -100), 0.063f32), + ((20, -80), 0.063f32), + ((20, -60), 0.063f32), + ((20, -40), 0.063f32), + ((20, -20), 0.063f32), + ((20, 0), 0.063f32), + ((20, 20), 0.063f32), + ((20, 40), 0.063f32), + ((20, 60), 0.063f32), + ((20, 80), 0.063f32), + ((20, 100), 0.063f32), + ((40, -100), 0.063f32), + ((40, -80), 0.063f32), + ((40, -60), 0.063f32), + ((40, -40), 0.063f32), + ((40, -20), 0.063f32), + ((40, 0), 0.063f32), + ((40, 20), 0.063f32), + ((40, 40), 0.063f32), + ((40, 60), 0.063f32), + ((40, 80), 0.063f32), + ((40, 100), 0.063f32), + ((60, -100), 0.063f32), + ((60, -80), 0.063f32), + ((60, -60), 0.063f32), + ((60, -40), 0.063f32), + ((60, -20), 0.063f32), + ((60, 0), 0.063f32), + ((60, 20), 0.063f32), + ((60, 40), 0.063f32), + ((60, 60), 0.063f32), + ((60, 80), 0.063f32), + ((60, 100), 0.063f32), + ((80, -100), 0.063f32), + ((80, -80), 0.063f32), + ((80, -60), 0.063f32), + ((80, -40), 0.063f32), + ((80, -20), 0.063f32), + ((80, 0), 0.063f32), + ((80, 20), 0.063f32), + ((80, 40), 0.063f32), + ((80, 60), 0.063f32), + ((80, 80), 0.063f32), + ((80, 100), 0.063f32), + ((100, -100), 0.063f32), + ((100, -80), 0.063f32), + ((100, -60), 0.063f32), + ((100, -40), 0.063f32), + ((100, -20), 0.063f32), + ((100, 0), 0.063f32), + ((100, 20), 0.063f32), + ((100, 40), 0.063f32), + ((100, 60), 0.063f32), + ((100, 80), 0.063f32), + ((100, 100), 0.063f32), + ]; + + for ((x, z), result) in results { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_eroded_ridges_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let results = [ + ((-1.0f32, -1.0f32), (-1000, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, -800), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, -600), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, -400), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, -200), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 200), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 400), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 600), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 800), 0.0f32), + ((-1.0f32, -1.0f32), (-1000, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (-800, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (-800, -800), 0.0f32), + ((-1.0f32, -1.0f32), (-800, -600), 0.0f32), + ((-1.0f32, -1.0f32), (-800, -400), 0.0f32), + ((-1.0f32, -1.0f32), (-800, -200), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 200), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 400), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 600), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 800), 0.0f32), + ((-1.0f32, -1.0f32), (-800, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (-600, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (-600, -800), 0.0f32), + ((-1.0f32, -1.0f32), (-600, -600), 0.0f32), + ((-1.0f32, -1.0f32), (-600, -400), 0.0f32), + ((-1.0f32, -1.0f32), (-600, -200), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 200), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 400), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 600), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 800), 0.0f32), + ((-1.0f32, -1.0f32), (-600, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (-400, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (-400, -800), 0.0f32), + ((-1.0f32, -1.0f32), (-400, -600), 0.0f32), + ((-1.0f32, -1.0f32), (-400, -400), 0.0f32), + ((-1.0f32, -1.0f32), (-400, -200), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 200), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 400), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 600), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 800), 0.0f32), + ((-1.0f32, -1.0f32), (-400, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (-200, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (-200, -800), 0.0f32), + ((-1.0f32, -1.0f32), (-200, -600), 0.0f32), + ((-1.0f32, -1.0f32), (-200, -400), 0.0f32), + ((-1.0f32, -1.0f32), (-200, -200), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 0), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 200), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 400), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 600), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 800), 0.0f32), + ((-1.0f32, -1.0f32), (-200, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (0, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (0, -800), 0.0f32), + ((-1.0f32, -1.0f32), (0, -600), 0.0f32), + ((-1.0f32, -1.0f32), (0, -400), 0.0f32), + ((-1.0f32, -1.0f32), (0, -200), 0.0f32), + ((-1.0f32, -1.0f32), (0, 0), 0.0f32), + ((-1.0f32, -1.0f32), (0, 200), 0.0f32), + ((-1.0f32, -1.0f32), (0, 400), 0.0f32), + ((-1.0f32, -1.0f32), (0, 600), 0.0f32), + ((-1.0f32, -1.0f32), (0, 800), 0.0f32), + ((-1.0f32, -1.0f32), (0, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (200, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (200, -800), 0.0f32), + ((-1.0f32, -1.0f32), (200, -600), 0.0f32), + ((-1.0f32, -1.0f32), (200, -400), 0.0f32), + ((-1.0f32, -1.0f32), (200, -200), 0.0f32), + ((-1.0f32, -1.0f32), (200, 0), 0.0f32), + ((-1.0f32, -1.0f32), (200, 200), 0.0f32), + ((-1.0f32, -1.0f32), (200, 400), 0.0f32), + ((-1.0f32, -1.0f32), (200, 600), 0.0f32), + ((-1.0f32, -1.0f32), (200, 800), 0.0f32), + ((-1.0f32, -1.0f32), (200, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (400, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (400, -800), 0.0f32), + ((-1.0f32, -1.0f32), (400, -600), 0.0f32), + ((-1.0f32, -1.0f32), (400, -400), 0.0f32), + ((-1.0f32, -1.0f32), (400, -200), 0.0f32), + ((-1.0f32, -1.0f32), (400, 0), 0.0f32), + ((-1.0f32, -1.0f32), (400, 200), 0.0f32), + ((-1.0f32, -1.0f32), (400, 400), 0.0f32), + ((-1.0f32, -1.0f32), (400, 600), 0.0f32), + ((-1.0f32, -1.0f32), (400, 800), 0.0f32), + ((-1.0f32, -1.0f32), (400, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (600, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (600, -800), 0.0f32), + ((-1.0f32, -1.0f32), (600, -600), 0.0f32), + ((-1.0f32, -1.0f32), (600, -400), 0.0f32), + ((-1.0f32, -1.0f32), (600, -200), 0.0f32), + ((-1.0f32, -1.0f32), (600, 0), 0.0f32), + ((-1.0f32, -1.0f32), (600, 200), 0.0f32), + ((-1.0f32, -1.0f32), (600, 400), 0.0f32), + ((-1.0f32, -1.0f32), (600, 600), 0.0f32), + ((-1.0f32, -1.0f32), (600, 800), 0.0f32), + ((-1.0f32, -1.0f32), (600, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (800, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (800, -800), 0.0f32), + ((-1.0f32, -1.0f32), (800, -600), 0.0f32), + ((-1.0f32, -1.0f32), (800, -400), 0.0f32), + ((-1.0f32, -1.0f32), (800, -200), 0.0f32), + ((-1.0f32, -1.0f32), (800, 0), 0.0f32), + ((-1.0f32, -1.0f32), (800, 200), 0.0f32), + ((-1.0f32, -1.0f32), (800, 400), 0.0f32), + ((-1.0f32, -1.0f32), (800, 600), 0.0f32), + ((-1.0f32, -1.0f32), (800, 800), 0.0f32), + ((-1.0f32, -1.0f32), (800, 1000), 0.0f32), + ((-1.0f32, -1.0f32), (1000, -1000), 0.0f32), + ((-1.0f32, -1.0f32), (1000, -800), 0.0f32), + ((-1.0f32, -1.0f32), (1000, -600), 0.0f32), + ((-1.0f32, -1.0f32), (1000, -400), 0.0f32), + ((-1.0f32, -1.0f32), (1000, -200), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 0), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 200), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 400), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 600), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 800), 0.0f32), + ((-1.0f32, -1.0f32), (1000, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, -800), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, -600), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, -400), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, -200), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 200), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 400), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 600), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 800), 0.0f32), + ((-1.0f32, 1.0f32), (-1000, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (-800, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (-800, -800), 0.0f32), + ((-1.0f32, 1.0f32), (-800, -600), 0.0f32), + ((-1.0f32, 1.0f32), (-800, -400), 0.0f32), + ((-1.0f32, 1.0f32), (-800, -200), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 200), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 400), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 600), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 800), 0.0f32), + ((-1.0f32, 1.0f32), (-800, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (-600, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (-600, -800), 0.0f32), + ((-1.0f32, 1.0f32), (-600, -600), 0.0f32), + ((-1.0f32, 1.0f32), (-600, -400), 0.0f32), + ((-1.0f32, 1.0f32), (-600, -200), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 200), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 400), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 600), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 800), 0.0f32), + ((-1.0f32, 1.0f32), (-600, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (-400, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (-400, -800), 0.0f32), + ((-1.0f32, 1.0f32), (-400, -600), 0.0f32), + ((-1.0f32, 1.0f32), (-400, -400), 0.0f32), + ((-1.0f32, 1.0f32), (-400, -200), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 200), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 400), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 600), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 800), 0.0f32), + ((-1.0f32, 1.0f32), (-400, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (-200, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (-200, -800), 0.0f32), + ((-1.0f32, 1.0f32), (-200, -600), 0.0f32), + ((-1.0f32, 1.0f32), (-200, -400), 0.0f32), + ((-1.0f32, 1.0f32), (-200, -200), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 0), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 200), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 400), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 600), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 800), 0.0f32), + ((-1.0f32, 1.0f32), (-200, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (0, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (0, -800), 0.0f32), + ((-1.0f32, 1.0f32), (0, -600), 0.0f32), + ((-1.0f32, 1.0f32), (0, -400), 0.0f32), + ((-1.0f32, 1.0f32), (0, -200), 0.0f32), + ((-1.0f32, 1.0f32), (0, 0), 0.0f32), + ((-1.0f32, 1.0f32), (0, 200), 0.0f32), + ((-1.0f32, 1.0f32), (0, 400), 0.0f32), + ((-1.0f32, 1.0f32), (0, 600), 0.0f32), + ((-1.0f32, 1.0f32), (0, 800), 0.0f32), + ((-1.0f32, 1.0f32), (0, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (200, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (200, -800), 0.0f32), + ((-1.0f32, 1.0f32), (200, -600), 0.0f32), + ((-1.0f32, 1.0f32), (200, -400), 0.0f32), + ((-1.0f32, 1.0f32), (200, -200), 0.0f32), + ((-1.0f32, 1.0f32), (200, 0), 0.0f32), + ((-1.0f32, 1.0f32), (200, 200), 0.0f32), + ((-1.0f32, 1.0f32), (200, 400), 0.0f32), + ((-1.0f32, 1.0f32), (200, 600), 0.0f32), + ((-1.0f32, 1.0f32), (200, 800), 0.0f32), + ((-1.0f32, 1.0f32), (200, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (400, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (400, -800), 0.0f32), + ((-1.0f32, 1.0f32), (400, -600), 0.0f32), + ((-1.0f32, 1.0f32), (400, -400), 0.0f32), + ((-1.0f32, 1.0f32), (400, -200), 0.0f32), + ((-1.0f32, 1.0f32), (400, 0), 0.0f32), + ((-1.0f32, 1.0f32), (400, 200), 0.0f32), + ((-1.0f32, 1.0f32), (400, 400), 0.012229209f32), + ((-1.0f32, 1.0f32), (400, 600), 1.3459583E-5f32), + ((-1.0f32, 1.0f32), (400, 800), 0.0f32), + ((-1.0f32, 1.0f32), (400, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (600, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (600, -800), 0.0f32), + ((-1.0f32, 1.0f32), (600, -600), 0.0f32), + ((-1.0f32, 1.0f32), (600, -400), 0.0f32), + ((-1.0f32, 1.0f32), (600, -200), 0.0f32), + ((-1.0f32, 1.0f32), (600, 0), 0.0f32), + ((-1.0f32, 1.0f32), (600, 200), 0.20826949f32), + ((-1.0f32, 1.0f32), (600, 400), 0.0f32), + ((-1.0f32, 1.0f32), (600, 600), 0.02679144f32), + ((-1.0f32, 1.0f32), (600, 800), 0.0f32), + ((-1.0f32, 1.0f32), (600, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (800, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (800, -800), 0.0f32), + ((-1.0f32, 1.0f32), (800, -600), 0.0f32), + ((-1.0f32, 1.0f32), (800, -400), 0.0f32), + ((-1.0f32, 1.0f32), (800, -200), 0.0f32), + ((-1.0f32, 1.0f32), (800, 0), 0.16502488f32), + ((-1.0f32, 1.0f32), (800, 200), 0.0f32), + ((-1.0f32, 1.0f32), (800, 400), 0.0f32), + ((-1.0f32, 1.0f32), (800, 600), 0.0f32), + ((-1.0f32, 1.0f32), (800, 800), 0.0f32), + ((-1.0f32, 1.0f32), (800, 1000), 0.0f32), + ((-1.0f32, 1.0f32), (1000, -1000), 0.0f32), + ((-1.0f32, 1.0f32), (1000, -800), 0.0f32), + ((-1.0f32, 1.0f32), (1000, -600), 0.0f32), + ((-1.0f32, 1.0f32), (1000, -400), 0.0f32), + ((-1.0f32, 1.0f32), (1000, -200), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 0), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 200), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 400), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 600), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 800), 0.0f32), + ((-1.0f32, 1.0f32), (1000, 1000), 0.0f32), + ((1.0f32, -1.0f32), (-1000, -1000), 0.0f32), + ((1.0f32, -1.0f32), (-1000, -800), 0.0f32), + ((1.0f32, -1.0f32), (-1000, -600), 0.0f32), + ((1.0f32, -1.0f32), (-1000, -400), 0.0f32), + ((1.0f32, -1.0f32), (-1000, -200), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 0), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 200), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 400), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 600), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 800), 0.0f32), + ((1.0f32, -1.0f32), (-1000, 1000), 0.0f32), + ((1.0f32, -1.0f32), (-800, -1000), 0.0f32), + ((1.0f32, -1.0f32), (-800, -800), 0.0f32), + ((1.0f32, -1.0f32), (-800, -600), 0.0f32), + ((1.0f32, -1.0f32), (-800, -400), 0.0f32), + ((1.0f32, -1.0f32), (-800, -200), 0.0f32), + ((1.0f32, -1.0f32), (-800, 0), 0.0f32), + ((1.0f32, -1.0f32), (-800, 200), 0.0f32), + ((1.0f32, -1.0f32), (-800, 400), 0.0f32), + ((1.0f32, -1.0f32), (-800, 600), 0.0f32), + ((1.0f32, -1.0f32), (-800, 800), 0.0f32), + ((1.0f32, -1.0f32), (-800, 1000), 0.0f32), + ((1.0f32, -1.0f32), (-600, -1000), 0.0f32), + ((1.0f32, -1.0f32), (-600, -800), 0.0f32), + ((1.0f32, -1.0f32), (-600, -600), 0.0f32), + ((1.0f32, -1.0f32), (-600, -400), 0.0f32), + ((1.0f32, -1.0f32), (-600, -200), 0.0f32), + ((1.0f32, -1.0f32), (-600, 0), 0.0f32), + ((1.0f32, -1.0f32), (-600, 200), 0.0f32), + ((1.0f32, -1.0f32), (-600, 400), 0.0f32), + ((1.0f32, -1.0f32), (-600, 600), 0.0f32), + ((1.0f32, -1.0f32), (-600, 800), 0.0f32), + ((1.0f32, -1.0f32), (-600, 1000), 0.0f32), + ((1.0f32, -1.0f32), (-400, -1000), 0.0f32), + ((1.0f32, -1.0f32), (-400, -800), 0.0f32), + ((1.0f32, -1.0f32), (-400, -600), 0.0f32), + ((1.0f32, -1.0f32), (-400, -400), 0.0f32), + ((1.0f32, -1.0f32), (-400, -200), 0.0f32), + ((1.0f32, -1.0f32), (-400, 0), 0.0f32), + ((1.0f32, -1.0f32), (-400, 200), 0.0f32), + ((1.0f32, -1.0f32), (-400, 400), 0.0f32), + ((1.0f32, -1.0f32), (-400, 600), 0.0f32), + ((1.0f32, -1.0f32), (-400, 800), 0.0f32), + ((1.0f32, -1.0f32), (-400, 1000), 0.0f32), + ((1.0f32, -1.0f32), (-200, -1000), 0.0f32), + ((1.0f32, -1.0f32), (-200, -800), 0.0f32), + ((1.0f32, -1.0f32), (-200, -600), 0.0f32), + ((1.0f32, -1.0f32), (-200, -400), 0.0f32), + ((1.0f32, -1.0f32), (-200, -200), 0.0f32), + ((1.0f32, -1.0f32), (-200, 0), 0.0f32), + ((1.0f32, -1.0f32), (-200, 200), 0.0f32), + ((1.0f32, -1.0f32), (-200, 400), 0.0f32), + ((1.0f32, -1.0f32), (-200, 600), 0.0f32), + ((1.0f32, -1.0f32), (-200, 800), 0.0f32), + ((1.0f32, -1.0f32), (-200, 1000), 0.0f32), + ((1.0f32, -1.0f32), (0, -1000), 0.0f32), + ((1.0f32, -1.0f32), (0, -800), 0.0f32), + ((1.0f32, -1.0f32), (0, -600), 0.0f32), + ((1.0f32, -1.0f32), (0, -400), 0.0f32), + ((1.0f32, -1.0f32), (0, -200), 0.0f32), + ((1.0f32, -1.0f32), (0, 0), 0.0f32), + ((1.0f32, -1.0f32), (0, 200), 0.0f32), + ((1.0f32, -1.0f32), (0, 400), 0.0f32), + ((1.0f32, -1.0f32), (0, 600), 0.0f32), + ((1.0f32, -1.0f32), (0, 800), 0.0f32), + ((1.0f32, -1.0f32), (0, 1000), 0.0f32), + ((1.0f32, -1.0f32), (200, -1000), 0.0f32), + ((1.0f32, -1.0f32), (200, -800), 0.0f32), + ((1.0f32, -1.0f32), (200, -600), 0.0f32), + ((1.0f32, -1.0f32), (200, -400), 0.0f32), + ((1.0f32, -1.0f32), (200, -200), 0.0f32), + ((1.0f32, -1.0f32), (200, 0), 0.0f32), + ((1.0f32, -1.0f32), (200, 200), 0.0f32), + ((1.0f32, -1.0f32), (200, 400), 0.0f32), + ((1.0f32, -1.0f32), (200, 600), 0.0f32), + ((1.0f32, -1.0f32), (200, 800), 0.0f32), + ((1.0f32, -1.0f32), (200, 1000), 0.0038900226f32), + ((1.0f32, -1.0f32), (400, -1000), 0.0f32), + ((1.0f32, -1.0f32), (400, -800), 0.0f32), + ((1.0f32, -1.0f32), (400, -600), 0.0f32), + ((1.0f32, -1.0f32), (400, -400), 0.0f32), + ((1.0f32, -1.0f32), (400, -200), 0.0f32), + ((1.0f32, -1.0f32), (400, 0), 0.0f32), + ((1.0f32, -1.0f32), (400, 200), 0.0f32), + ((1.0f32, -1.0f32), (400, 400), 0.1930701f32), + ((1.0f32, -1.0f32), (400, 600), 0.11269083f32), + ((1.0f32, -1.0f32), (400, 800), 0.0f32), + ((1.0f32, -1.0f32), (400, 1000), 0.0f32), + ((1.0f32, -1.0f32), (600, -1000), 0.0f32), + ((1.0f32, -1.0f32), (600, -800), 0.0f32), + ((1.0f32, -1.0f32), (600, -600), 0.0f32), + ((1.0f32, -1.0f32), (600, -400), 0.0f32), + ((1.0f32, -1.0f32), (600, -200), 0.0f32), + ((1.0f32, -1.0f32), (600, 0), 0.0f32), + ((1.0f32, -1.0f32), (600, 200), 4.689248E-5f32), + ((1.0f32, -1.0f32), (600, 400), 0.0f32), + ((1.0f32, -1.0f32), (600, 600), 0.008269365f32), + ((1.0f32, -1.0f32), (600, 800), 0.0f32), + ((1.0f32, -1.0f32), (600, 1000), 0.0f32), + ((1.0f32, -1.0f32), (800, -1000), 0.0f32), + ((1.0f32, -1.0f32), (800, -800), 0.0f32), + ((1.0f32, -1.0f32), (800, -600), 0.0f32), + ((1.0f32, -1.0f32), (800, -400), 0.0f32), + ((1.0f32, -1.0f32), (800, -200), 0.0f32), + ((1.0f32, -1.0f32), (800, 0), 0.34966952f32), + ((1.0f32, -1.0f32), (800, 200), 0.0f32), + ((1.0f32, -1.0f32), (800, 400), 0.0f32), + ((1.0f32, -1.0f32), (800, 600), 0.0f32), + ((1.0f32, -1.0f32), (800, 800), 0.0f32), + ((1.0f32, -1.0f32), (800, 1000), 0.0f32), + ((1.0f32, -1.0f32), (1000, -1000), 0.0f32), + ((1.0f32, -1.0f32), (1000, -800), 0.0f32), + ((1.0f32, -1.0f32), (1000, -600), 0.0f32), + ((1.0f32, -1.0f32), (1000, -400), 0.0f32), + ((1.0f32, -1.0f32), (1000, -200), 0.0f32), + ((1.0f32, -1.0f32), (1000, 0), 0.0f32), + ((1.0f32, -1.0f32), (1000, 200), 0.0f32), + ((1.0f32, -1.0f32), (1000, 400), 0.0f32), + ((1.0f32, -1.0f32), (1000, 600), 0.0f32), + ((1.0f32, -1.0f32), (1000, 800), 0.18537328f32), + ((1.0f32, -1.0f32), (1000, 1000), 0.0f32), + ((1.0f32, 1.0f32), (-1000, -1000), 0.0f32), + ((1.0f32, 1.0f32), (-1000, -800), 0.0f32), + ((1.0f32, 1.0f32), (-1000, -600), 0.0f32), + ((1.0f32, 1.0f32), (-1000, -400), 0.0f32), + ((1.0f32, 1.0f32), (-1000, -200), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 0), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 200), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 400), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 600), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 800), 0.0f32), + ((1.0f32, 1.0f32), (-1000, 1000), 0.0f32), + ((1.0f32, 1.0f32), (-800, -1000), 0.0f32), + ((1.0f32, 1.0f32), (-800, -800), 0.0f32), + ((1.0f32, 1.0f32), (-800, -600), 0.0f32), + ((1.0f32, 1.0f32), (-800, -400), 0.0f32), + ((1.0f32, 1.0f32), (-800, -200), 0.0f32), + ((1.0f32, 1.0f32), (-800, 0), 0.0f32), + ((1.0f32, 1.0f32), (-800, 200), 0.0f32), + ((1.0f32, 1.0f32), (-800, 400), 0.0f32), + ((1.0f32, 1.0f32), (-800, 600), 0.0f32), + ((1.0f32, 1.0f32), (-800, 800), 0.0f32), + ((1.0f32, 1.0f32), (-800, 1000), 0.0f32), + ((1.0f32, 1.0f32), (-600, -1000), 0.0f32), + ((1.0f32, 1.0f32), (-600, -800), 0.0f32), + ((1.0f32, 1.0f32), (-600, -600), 0.0f32), + ((1.0f32, 1.0f32), (-600, -400), 0.0f32), + ((1.0f32, 1.0f32), (-600, -200), 0.0f32), + ((1.0f32, 1.0f32), (-600, 0), 0.0f32), + ((1.0f32, 1.0f32), (-600, 200), 0.0f32), + ((1.0f32, 1.0f32), (-600, 400), 0.0f32), + ((1.0f32, 1.0f32), (-600, 600), 0.0f32), + ((1.0f32, 1.0f32), (-600, 800), 0.0f32), + ((1.0f32, 1.0f32), (-600, 1000), 0.0f32), + ((1.0f32, 1.0f32), (-400, -1000), 0.0f32), + ((1.0f32, 1.0f32), (-400, -800), 0.0f32), + ((1.0f32, 1.0f32), (-400, -600), 0.0f32), + ((1.0f32, 1.0f32), (-400, -400), 0.0f32), + ((1.0f32, 1.0f32), (-400, -200), 0.0f32), + ((1.0f32, 1.0f32), (-400, 0), 0.0f32), + ((1.0f32, 1.0f32), (-400, 200), 0.0f32), + ((1.0f32, 1.0f32), (-400, 400), 0.0f32), + ((1.0f32, 1.0f32), (-400, 600), 0.0f32), + ((1.0f32, 1.0f32), (-400, 800), 0.0f32), + ((1.0f32, 1.0f32), (-400, 1000), 0.0f32), + ((1.0f32, 1.0f32), (-200, -1000), 0.0f32), + ((1.0f32, 1.0f32), (-200, -800), 0.0f32), + ((1.0f32, 1.0f32), (-200, -600), 0.0f32), + ((1.0f32, 1.0f32), (-200, -400), 0.0f32), + ((1.0f32, 1.0f32), (-200, -200), 0.0f32), + ((1.0f32, 1.0f32), (-200, 0), 0.0f32), + ((1.0f32, 1.0f32), (-200, 200), 0.0f32), + ((1.0f32, 1.0f32), (-200, 400), 0.0f32), + ((1.0f32, 1.0f32), (-200, 600), 0.0f32), + ((1.0f32, 1.0f32), (-200, 800), 0.0f32), + ((1.0f32, 1.0f32), (-200, 1000), 0.0f32), + ((1.0f32, 1.0f32), (0, -1000), 0.0f32), + ((1.0f32, 1.0f32), (0, -800), 0.0f32), + ((1.0f32, 1.0f32), (0, -600), 0.0f32), + ((1.0f32, 1.0f32), (0, -400), 0.0f32), + ((1.0f32, 1.0f32), (0, -200), 0.0f32), + ((1.0f32, 1.0f32), (0, 0), 0.0f32), + ((1.0f32, 1.0f32), (0, 200), 0.0f32), + ((1.0f32, 1.0f32), (0, 400), 0.0f32), + ((1.0f32, 1.0f32), (0, 600), 0.0f32), + ((1.0f32, 1.0f32), (0, 800), 0.0f32), + ((1.0f32, 1.0f32), (0, 1000), 0.0f32), + ((1.0f32, 1.0f32), (200, -1000), 0.0f32), + ((1.0f32, 1.0f32), (200, -800), 0.0f32), + ((1.0f32, 1.0f32), (200, -600), 0.0f32), + ((1.0f32, 1.0f32), (200, -400), 0.0f32), + ((1.0f32, 1.0f32), (200, -200), 0.0f32), + ((1.0f32, 1.0f32), (200, 0), 0.0f32), + ((1.0f32, 1.0f32), (200, 200), 0.0f32), + ((1.0f32, 1.0f32), (200, 400), 0.0f32), + ((1.0f32, 1.0f32), (200, 600), 0.0f32), + ((1.0f32, 1.0f32), (200, 800), 0.0f32), + ((1.0f32, 1.0f32), (200, 1000), 0.0038900226f32), + ((1.0f32, 1.0f32), (400, -1000), 0.0f32), + ((1.0f32, 1.0f32), (400, -800), 0.0f32), + ((1.0f32, 1.0f32), (400, -600), 0.0f32), + ((1.0f32, 1.0f32), (400, -400), 0.0f32), + ((1.0f32, 1.0f32), (400, -200), 0.0f32), + ((1.0f32, 1.0f32), (400, 0), 0.0f32), + ((1.0f32, 1.0f32), (400, 200), 0.0f32), + ((1.0f32, 1.0f32), (400, 400), 0.20529935f32), + ((1.0f32, 1.0f32), (400, 600), 0.11270429f32), + ((1.0f32, 1.0f32), (400, 800), 0.0f32), + ((1.0f32, 1.0f32), (400, 1000), 0.0f32), + ((1.0f32, 1.0f32), (600, -1000), 0.0f32), + ((1.0f32, 1.0f32), (600, -800), 0.0f32), + ((1.0f32, 1.0f32), (600, -600), 0.0f32), + ((1.0f32, 1.0f32), (600, -400), 0.0f32), + ((1.0f32, 1.0f32), (600, -200), 0.0f32), + ((1.0f32, 1.0f32), (600, 0), 0.0f32), + ((1.0f32, 1.0f32), (600, 200), 0.20831639f32), + ((1.0f32, 1.0f32), (600, 400), 0.0f32), + ((1.0f32, 1.0f32), (600, 600), 0.035060797f32), + ((1.0f32, 1.0f32), (600, 800), 0.0f32), + ((1.0f32, 1.0f32), (600, 1000), 0.0f32), + ((1.0f32, 1.0f32), (800, -1000), 0.0f32), + ((1.0f32, 1.0f32), (800, -800), 0.0f32), + ((1.0f32, 1.0f32), (800, -600), 0.0f32), + ((1.0f32, 1.0f32), (800, -400), 0.0f32), + ((1.0f32, 1.0f32), (800, -200), 0.0f32), + ((1.0f32, 1.0f32), (800, 0), 0.5146944f32), + ((1.0f32, 1.0f32), (800, 200), 0.0f32), + ((1.0f32, 1.0f32), (800, 400), 0.0f32), + ((1.0f32, 1.0f32), (800, 600), 0.0f32), + ((1.0f32, 1.0f32), (800, 800), 0.0f32), + ((1.0f32, 1.0f32), (800, 1000), 0.0f32), + ((1.0f32, 1.0f32), (1000, -1000), 0.0f32), + ((1.0f32, 1.0f32), (1000, -800), 0.0f32), + ((1.0f32, 1.0f32), (1000, -600), 0.0f32), + ((1.0f32, 1.0f32), (1000, -400), 0.0f32), + ((1.0f32, 1.0f32), (1000, -200), 0.0f32), + ((1.0f32, 1.0f32), (1000, 0), 0.0f32), + ((1.0f32, 1.0f32), (1000, 200), 0.0f32), + ((1.0f32, 1.0f32), (1000, 400), 0.0f32), + ((1.0f32, 1.0f32), (1000, 600), 0.0f32), + ((1.0f32, 1.0f32), (1000, 800), 0.18537328f32), + ((1.0f32, 1.0f32), (1000, 1000), 0.0f32), + ]; + + for ((i, j), (x, z), result) in results { + let spline = create_eroded_ridges_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + j, + i, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_continental_offset_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let results = [ + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ]; + + for ((i, j, k, l, m, n), (x, z), result) in results { + let spline = create_continental_offset_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + k, + l, + m, + n, + true, + true, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + + let results = [ + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.043868598f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199959f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.47096622f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ]; + + for ((i, j, k, l, m, n), (x, z), result) in results { + let spline = create_continental_offset_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + k, + l, + m, + n, + false, + true, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + + let results = [ + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ]; + + for ((i, j, k, l, m, n), (x, z), result) in results { + let spline = create_continental_offset_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + k, + l, + m, + n, + true, + false, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + + let results = [ + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (-1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -1.0040534f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1310996f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1351529f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.6898031f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + 0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.51958543f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.78766453f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.42596012f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.8736998f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + -0.9794922f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.35584128f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + -0.9767942f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -1.0f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + -0.98354554f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.5485881f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.93069726f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + -0.58472735f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + -1.1105918f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.465841f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + -0.56152153f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.83679414f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + -1.1146451f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.122376435f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.87450993f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1146451f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1105918f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 0.98354554f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 0.9794922f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + -0.4380532f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.853009f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.17856482f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + -0.9207117f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + -0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 0.6898031f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 0), + -0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (0, 1000), + -0.08574474f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + -0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 0), + -0.05308062f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + -0.17199956f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 0), + 0.56152153f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, -1000), + 1.1351529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, -1000), + 0.38430876f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 0), + 0.58472735f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (-1000, 1000), + -0.9021386f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, -1000), + 1.1310996f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 0), + -0.12501879f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, -1000), + 0.91990167f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 0), + 0.9767942f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, -1000), + 1.0040534f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, -1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, -1000), + 0.5480529f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 0), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (-1000, 1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, -1000), + 1.0f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 0), + 0.8495294f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (0, 1000), + 0.59859234f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, -1000), + 0.97689915f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 0), + 0.4723193f32, + ), + ( + (1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32, 1.0f32), + (1000, 1000), + 0.65087116f32, + ), + ]; + + for ((i, j, k, l, m, n), (x, z), result) in results { + let spline = create_continental_offset_spline( + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + i, + j, + k, + l, + m, + n, + false, + false, + FloatAmplifier::Identity, + ); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), result); + } + } + + #[test] + fn test_create_offset_spline_owned() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = OwnedConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let spline = create_offset_spline( + CONTINENTS_OVERWORLD.clone(), + EROSION_OVERWORLD.clone(), + RIDGES_FOLDED_OVERWORLD.clone(), + false, + ); + + let func_ref: SharedComponentReference = + SplineFunction::::new(spline.into()).into(); + let mut converted = func_ref.convert_to_dyn(&mut converter); + + let values = [ + ((-1000, -1000), -0.12f32), + ((-1000, -800), -0.12f32), + ((-1000, -600), 0.21642008f32), + ((-1000, -400), 0.01f32), + ((-1000, -200), 0.004557855f32), + ((-1000, 0), 0.01f32), + ((-1000, 200), 0.009997683f32), + ((-1000, 400), 0.026355354f32), + ((-1000, 600), 0.007802739f32), + ((-1000, 800), -0.12f32), + ((-1000, 1000), -0.001604938f32), + ((-800, -1000), -0.12f32), + ((-800, -800), -0.012429481f32), + ((-800, -600), 0.0015399398f32), + ((-800, -400), 0.010565798f32), + ((-800, -200), 0.0085737575f32), + ((-800, 0), 2.0498858E-4f32), + ((-800, 200), 0.059694663f32), + ((-800, 400), 0.005873039f32), + ((-800, 600), -0.0037780532f32), + ((-800, 800), 0.1453951f32), + ((-800, 1000), -0.12f32), + ((-600, -1000), 0.06484584f32), + ((-600, -800), 0.0044598696f32), + ((-600, -600), 0.010014304f32), + ((-600, -400), -0.044046972f32), + ((-600, -200), 0.003978624f32), + ((-600, 0), -0.0364713f32), + ((-600, 200), 0.14794901f32), + ((-600, 400), 0.018754544f32), + ((-600, 600), 0.045433506f32), + ((-600, 800), 0.0047304784f32), + ((-600, 1000), -0.08921682f32), + ((-400, -1000), 0.35670424f32), + ((-400, -800), 0.010680163f32), + ((-400, -600), 0.024394374f32), + ((-400, -400), -0.07180046f32), + ((-400, -200), -0.0046629338f32), + ((-400, 0), 0.041712783f32), + ((-400, 200), 0.42516303f32), + ((-400, 400), -0.016010465f32), + ((-400, 600), -0.054500334f32), + ((-400, 800), 0.03915234f32), + ((-400, 1000), 0.11074094f32), + ((-200, -1000), 0.010157828f32), + ((-200, -800), -0.045935497f32), + ((-200, -600), -0.06370152f32), + ((-200, -400), -0.010669484f32), + ((-200, -200), 0.007693166f32), + ((-200, 0), 0.2740575f32), + ((-200, 200), 0.25065988f32), + ((-200, 400), 0.23743957f32), + ((-200, 600), 0.038222533f32), + ((-200, 800), 0.23740187f32), + ((-200, 1000), 0.045121815f32), + ((0, -1000), 0.025613945f32), + ((0, -800), 0.010543518f32), + ((0, -600), -0.009503379f32), + ((0, -400), -0.05679583f32), + ((0, -200), 0.014229352f32), + ((0, 0), 0.015351922f32), + ((0, 200), 0.052398924f32), + ((0, 400), 0.3348988f32), + ((0, 600), 0.037273783f32), + ((0, 800), 0.15397507f32), + ((0, 1000), -0.12f32), + ((200, -1000), 0.011213763f32), + ((200, -800), 0.010004221f32), + ((200, -600), 0.014950525f32), + ((200, -400), 0.0060791634f32), + ((200, -200), 0.0051073986f32), + ((200, 0), 0.21087551f32), + ((200, 200), 0.18799084f32), + ((200, 400), 0.10954257f32), + ((200, 600), 0.15038633f32), + ((200, 800), -0.20215355f32), + ((200, 1000), 0.006606252f32), + ((400, -1000), -0.060982484f32), + ((400, -800), -0.036393903f32), + ((400, -600), 0.0014582938f32), + ((400, -400), -0.04869196f32), + ((400, -200), 0.30029622f32), + ((400, 0), 0.20263676f32), + ((400, 200), 0.22583991f32), + ((400, 400), 0.5766444f32), + ((400, 600), 0.064524874f32), + ((400, 800), 0.001492043f32), + ((400, 1000), 0.0666899f32), + ((600, -1000), 0.042593893f32), + ((600, -800), 0.011076624f32), + ((600, -600), -0.07617872f32), + ((600, -400), 0.33489174f32), + ((600, -200), 0.19499643f32), + ((600, 0), 0.12718138f32), + ((600, 200), 0.42322046f32), + ((600, 400), 0.15204243f32), + ((600, 600), 0.62875843f32), + ((600, 800), 0.28533196f32), + ((600, 1000), 0.112939574f32), + ((800, -1000), -0.005106967f32), + ((800, -800), 0.004147144f32), + ((800, -600), 0.033886474f32), + ((800, -400), 0.3707387f32), + ((800, -200), 0.23363632f32), + ((800, 0), 0.6662116f32), + ((800, 200), 0.1378678f32), + ((800, 400), -0.040576354f32), + ((800, 600), 0.117314756f32), + ((800, 800), 0.08826091f32), + ((800, 1000), 0.16682401f32), + ((1000, -1000), -0.09812155f32), + ((1000, -800), 0.12626381f32), + ((1000, -600), 0.13974974f32), + ((1000, -400), 0.19341275f32), + ((1000, -200), 0.26667717f32), + ((1000, 0), 0.2554746f32), + ((1000, 200), 0.19757578f32), + ((1000, 400), 0.18204813f32), + ((1000, 600), -0.12f32), + ((1000, 800), 0.09942525f32), + ((1000, 1000), -0.20376506f32), + ]; + + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(converted.sample_mut(pos, &FakeEnvironment {}), value as f64); + } + } + + #[test] + fn test_create_offset_spline() { + let mut rand = LegacyRand::from_seed(0); + let deriver = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(deriver), + }; + + let spline = create_offset_spline( + CONTINENTS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + false, + ); + + let values = [ + ((-1000, -1000), -0.12f32), + ((-1000, -800), -0.12f32), + ((-1000, -600), 0.21642008f32), + ((-1000, -400), 0.01f32), + ((-1000, -200), 0.004557855f32), + ((-1000, 0), 0.01f32), + ((-1000, 200), 0.009997683f32), + ((-1000, 400), 0.026355354f32), + ((-1000, 600), 0.007802739f32), + ((-1000, 800), -0.12f32), + ((-1000, 1000), -0.001604938f32), + ((-800, -1000), -0.12f32), + ((-800, -800), -0.012429481f32), + ((-800, -600), 0.0015399398f32), + ((-800, -400), 0.010565798f32), + ((-800, -200), 0.0085737575f32), + ((-800, 0), 2.0498858E-4f32), + ((-800, 200), 0.059694663f32), + ((-800, 400), 0.005873039f32), + ((-800, 600), -0.0037780532f32), + ((-800, 800), 0.1453951f32), + ((-800, 1000), -0.12f32), + ((-600, -1000), 0.06484584f32), + ((-600, -800), 0.0044598696f32), + ((-600, -600), 0.010014304f32), + ((-600, -400), -0.044046972f32), + ((-600, -200), 0.003978624f32), + ((-600, 0), -0.0364713f32), + ((-600, 200), 0.14794901f32), + ((-600, 400), 0.018754544f32), + ((-600, 600), 0.045433506f32), + ((-600, 800), 0.0047304784f32), + ((-600, 1000), -0.08921682f32), + ((-400, -1000), 0.35670424f32), + ((-400, -800), 0.010680163f32), + ((-400, -600), 0.024394374f32), + ((-400, -400), -0.07180046f32), + ((-400, -200), -0.0046629338f32), + ((-400, 0), 0.041712783f32), + ((-400, 200), 0.42516303f32), + ((-400, 400), -0.016010465f32), + ((-400, 600), -0.054500334f32), + ((-400, 800), 0.03915234f32), + ((-400, 1000), 0.11074094f32), + ((-200, -1000), 0.010157828f32), + ((-200, -800), -0.045935497f32), + ((-200, -600), -0.06370152f32), + ((-200, -400), -0.010669484f32), + ((-200, -200), 0.007693166f32), + ((-200, 0), 0.2740575f32), + ((-200, 200), 0.25065988f32), + ((-200, 400), 0.23743957f32), + ((-200, 600), 0.038222533f32), + ((-200, 800), 0.23740187f32), + ((-200, 1000), 0.045121815f32), + ((0, -1000), 0.025613945f32), + ((0, -800), 0.010543518f32), + ((0, -600), -0.009503379f32), + ((0, -400), -0.05679583f32), + ((0, -200), 0.014229352f32), + ((0, 0), 0.015351922f32), + ((0, 200), 0.052398924f32), + ((0, 400), 0.3348988f32), + ((0, 600), 0.037273783f32), + ((0, 800), 0.15397507f32), + ((0, 1000), -0.12f32), + ((200, -1000), 0.011213763f32), + ((200, -800), 0.010004221f32), + ((200, -600), 0.014950525f32), + ((200, -400), 0.0060791634f32), + ((200, -200), 0.0051073986f32), + ((200, 0), 0.21087551f32), + ((200, 200), 0.18799084f32), + ((200, 400), 0.10954257f32), + ((200, 600), 0.15038633f32), + ((200, 800), -0.20215355f32), + ((200, 1000), 0.006606252f32), + ((400, -1000), -0.060982484f32), + ((400, -800), -0.036393903f32), + ((400, -600), 0.0014582938f32), + ((400, -400), -0.04869196f32), + ((400, -200), 0.30029622f32), + ((400, 0), 0.20263676f32), + ((400, 200), 0.22583991f32), + ((400, 400), 0.5766444f32), + ((400, 600), 0.064524874f32), + ((400, 800), 0.001492043f32), + ((400, 1000), 0.0666899f32), + ((600, -1000), 0.042593893f32), + ((600, -800), 0.011076624f32), + ((600, -600), -0.07617872f32), + ((600, -400), 0.33489174f32), + ((600, -200), 0.19499643f32), + ((600, 0), 0.12718138f32), + ((600, 200), 0.42322046f32), + ((600, 400), 0.15204243f32), + ((600, 600), 0.62875843f32), + ((600, 800), 0.28533196f32), + ((600, 1000), 0.112939574f32), + ((800, -1000), -0.005106967f32), + ((800, -800), 0.004147144f32), + ((800, -600), 0.033886474f32), + ((800, -400), 0.3707387f32), + ((800, -200), 0.23363632f32), + ((800, 0), 0.6662116f32), + ((800, 200), 0.1378678f32), + ((800, 400), -0.040576354f32), + ((800, 600), 0.117314756f32), + ((800, 800), 0.08826091f32), + ((800, 1000), 0.16682401f32), + ((1000, -1000), -0.09812155f32), + ((1000, -800), 0.12626381f32), + ((1000, -600), 0.13974974f32), + ((1000, -400), 0.19341275f32), + ((1000, -200), 0.26667717f32), + ((1000, 0), 0.2554746f32), + ((1000, 200), 0.19757578f32), + ((1000, 400), 0.18204813f32), + ((1000, 600), -0.12f32), + ((1000, 800), 0.09942525f32), + ((1000, 1000), -0.20376506f32), + ]; + + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), value); + } + + let spline = create_offset_spline( + CONTINENTS_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + RIDGES_FOLDED_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(), + true, + ); + + let values = [ + ((-1000, -1000), -0.12f32), + ((-1000, -800), -0.12f32), + ((-1000, -600), 0.40646723f32), + ((-1000, -400), 0.02f32), + ((-1000, -200), 0.011649819f32), + ((-1000, 0), 0.02f32), + ((-1000, 200), 0.019997103f32), + ((-1000, 400), 0.054926828f32), + ((-1000, 600), 0.0161799f32), + ((-1000, 800), -0.12f32), + ((-1000, 1000), -0.001604938f32), + ((-800, -1000), -0.12f32), + ((-800, -800), -0.009731578f32), + ((-800, -600), 0.008272511f32), + ((-800, -400), 0.02010726f32), + ((-800, -200), 0.017626597f32), + ((-800, 0), 0.0039240704f32), + ((-800, 200), 0.12954348f32), + ((-800, 400), 0.013576008f32), + ((-800, 600), 5.68838E-4f32), + ((-800, 800), 0.31590718f32), + ((-800, 1000), -0.12f32), + ((-600, -1000), 0.12946187f32), + ((-600, -800), 0.0120871635f32), + ((-600, -600), 0.019976187f32), + ((-600, -400), -0.043153357f32), + ((-600, -200), 0.01147486f32), + ((-600, 0), -0.03608053f32), + ((-600, 200), 0.32358822f32), + ((-600, 400), 0.038205504f32), + ((-600, 600), 0.09575883f32), + ((-600, 800), 0.0087937f32), + ((-600, 1000), -0.08919823f32), + ((-400, -1000), 0.68852895f32), + ((-400, -800), 0.02136095f32), + ((-400, -600), 0.05210319f32), + ((-400, -400), -0.07174147f32), + ((-400, -200), -1.782187E-4f32), + ((-400, 0), 0.08275533f32), + ((-400, 200), 0.8391089f32), + ((-400, 400), 0.015925307f32), + ((-400, 600), -0.05179032f32), + ((-400, 800), 0.080548115f32), + ((-400, 1000), 0.2183966f32), + ((-200, -1000), 0.019721974f32), + ((-200, -800), -0.044857025f32), + ((-200, -600), -0.0632717f32), + ((-200, -400), -0.0071803415f32), + ((-200, -200), 0.016522845f32), + ((-200, 0), 0.5790978f32), + ((-200, 200), 0.48663375f32), + ((-200, 400), 0.4579222f32), + ((-200, 600), 0.07735475f32), + ((-200, 800), 0.46947122f32), + ((-200, 1000), 0.09024363f32), + ((0, -1000), 0.05332743f32), + ((0, -800), 0.021054735f32), + ((0, -600), -0.0060041896f32), + ((0, -400), -0.056453f32), + ((0, -200), 0.028670382f32), + ((0, 0), 0.031875737f32), + ((0, 200), 0.1057405f32), + ((0, 400), 0.6566899f32), + ((0, 600), 0.078629725f32), + ((0, 800), 0.30936983f32), + ((0, 1000), -0.12f32), + ((200, -1000), 0.01984784f32), + ((200, -800), 0.020003142f32), + ((200, -600), 0.030099068f32), + ((200, -400), 0.014725439f32), + ((200, -200), 0.04267062f32), + ((200, 0), 0.4335333f32), + ((200, 200), 0.41353047f32), + ((200, 400), 0.28182158f32), + ((200, 600), 0.3194872f32), + ((200, 800), -0.19964206f32), + ((200, 1000), 0.013215651f32), + ((400, -1000), -0.06075418f32), + ((400, -800), -0.035268508f32), + ((400, -600), 0.008122481f32), + ((400, -400), -0.04745455f32), + ((400, -200), 0.6001307f32), + ((400, 0), 0.44305244f32), + ((400, 200), 0.4961017f32), + ((400, 400), 1.1597066f32), + ((400, 600), 0.13732544f32), + ((400, 800), 0.0033238232f32), + ((400, 1000), 0.13391209f32), + ((600, -1000), 0.08317007f32), + ((600, -800), 0.02169337f32), + ((600, -600), -0.07605565f32), + ((600, -400), 0.6699571f32), + ((600, -200), 0.43031088f32), + ((600, 0), 0.2863704f32), + ((600, 200), 0.8479774f32), + ((600, 400), 0.33766848f32), + ((600, 600), 1.2939436f32), + ((600, 800), 0.5734297f32), + ((600, 1000), 0.23295875f32), + ((800, -1000), -0.0016568054f32), + ((800, -800), 0.0118271075f32), + ((800, -600), 0.116723984f32), + ((800, -400), 0.748354f32), + ((800, -200), 0.5145798f32), + ((800, 0), 1.3620454f32), + ((800, 200), 0.3075331f32), + ((800, 400), -0.0031769574f32), + ((800, 600), 0.25992817f32), + ((800, 800), 0.19284995f32), + ((800, 1000), 0.33883432f32), + ((1000, -1000), -0.09807106f32), + ((1000, -800), 0.265128f32), + ((1000, -600), 0.31908166f32), + ((1000, -400), 0.3983419f32), + ((1000, -200), 0.5943536f32), + ((1000, 0), 0.5574826f32), + ((1000, 200), 0.39628267f32), + ((1000, 400), 0.40190077f32), + ((1000, 600), -0.12f32), + ((1000, 800), 0.21975446f32), + ((1000, 1000), -0.20376506f32), + ]; - assert_eq!(spline.apply(&pos), -0.1f32); + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(spline.sample(pos), value); + } } } diff --git a/pumpkin-world/src/world_gen/noise/density/unary.rs b/pumpkin-world/src/world_gen/noise/density/unary.rs index 578e1b61a..8baa9bd8d 100644 --- a/pumpkin-world/src/world_gen/noise/density/unary.rs +++ b/pumpkin-world/src/world_gen/noise/density/unary.rs @@ -1,52 +1,134 @@ -use std::sync::Arc; +use std::marker::PhantomData; use super::{ - Applier, DensityFunction, DensityFunctionImpl, NoisePos, UnaryDensityFunction, Visitor, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + NoEnvironment, OwnedConverterEnvironment, SharedComponentReference, + SharedConverterEnvironment, + }, + NoisePos, }; #[derive(Clone)] -pub struct ClampFunction<'a> { - pub(crate) input: Arc>, +pub(crate) struct ClampUntypedData { pub(crate) min: f64, pub(crate) max: f64, } -impl<'a> UnaryDensityFunction<'a> for ClampFunction<'a> { +impl> From> + for MutableComponentReference +{ + fn from(value: ClampFunction) -> Self { + Self(Box::new(value)) + } +} + +pub struct ClampFunction> { + pub(crate) input: R, + pub(crate) data: ClampUntypedData, + _dummy: PhantomData, +} + +impl> ClampFunction { + pub fn new(input: R, min: f64, max: f64) -> Self { + Self { + input, + data: ClampUntypedData { min, max }, + _dummy: PhantomData:: {}, + } + } + #[inline] fn apply_density(&self, density: f64) -> f64 { - density.clamp(self.min, self.max) + density.clamp(self.data.min, self.data.max) + } + + pub fn create_new_ref( + input: ComponentReferenceImplementation, + data: &ClampUntypedData, + ) -> ComponentReferenceImplementation { + match input { + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + ClampFunction::::new( + shared, data.min, data.max, + ) + .into(), + ) + } + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable( + ClampFunction::new(owned, data.min, data.max).into(), + ) + } + } } } -impl<'a> DensityFunctionImpl<'a> for ClampFunction<'a> { - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - Arc::new(DensityFunction::Clamp(ClampFunction { - input: self.input.apply(visitor), - min: self.min, - max: self.max, - })) +impl> ComponentFunctionImpl + for ClampFunction +{ +} + +impl> MutableComponentFunctionImpl + for ClampFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density = self.input.sample_mut(pos, env); + self.apply_density(density) } - fn sample(&self, pos: &NoisePos) -> f64 { - self.apply_density(self.input.sample(pos)) + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.input.fill_mut(arr, applier); + arr.iter_mut() + .for_each(|density| *density = self.apply_density(*density)); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Clamp(&self.input, &self.data) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier); - densities.iter_mut().for_each(|val| { - *val = self.apply_density(*val); - }); + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Clamp(self.input.wrapped_ref(), self.data) } - fn min(&self) -> f64 { - self.min + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.convert(converter), &self.data) } - fn max(&self) -> f64 { - self.max + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.clone_to_new_ref(), &self.data) } } -#[derive(Clone)] +impl ImmutableComponentFunctionImpl + for ClampFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + let density = self.input.sample(pos); + self.apply_density(density) + } + + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.input.fill(arr, applier); + arr.iter_mut() + .for_each(|density| *density = self.apply_density(*density)); + } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Clamp(&self.input, &self.data) + } +} + +#[derive(Copy, Clone, PartialEq, Eq, Hash)] pub(crate) enum UnaryType { Abs, Square, @@ -56,37 +138,32 @@ pub(crate) enum UnaryType { Squeeze, } -#[derive(Clone)] -pub struct UnaryFunction<'a> { - action: UnaryType, - input: Arc>, - min: f64, - max: f64, +pub struct UnaryFunction> { + pub(crate) unary_type: UnaryType, + pub(crate) input: R, + _dummy: PhantomData, +} + +impl> From> + for MutableComponentReference +{ + fn from(value: UnaryFunction) -> Self { + Self(Box::new(value)) + } } -impl<'a> UnaryFunction<'a> { - pub(crate) fn create(action: UnaryType, input: Arc>) -> UnaryFunction<'a> { - let base_min = input.min(); - let new_min = Self::internal_apply(&action, base_min); - let new_max = Self::internal_apply(&action, input.max()); - match action { - UnaryType::Abs | UnaryType::Square => Self { - action, - input, - min: f64::max(0f64, base_min), - max: f64::max(new_min, new_max), - }, - _ => Self { - action, - input, - min: new_min, - max: new_max, - }, +impl> UnaryFunction { + pub fn new(unary_type: UnaryType, input: R) -> Self { + Self { + unary_type, + input, + _dummy: PhantomData:: {}, } } - fn internal_apply(action: &UnaryType, density: f64) -> f64 { - match action { + #[inline] + fn apply_density(&self, density: f64) -> f64 { + match self.unary_type { UnaryType::Abs => density.abs(), UnaryType::Square => density * density, UnaryType::Cube => density * density * density, @@ -110,36 +187,83 @@ impl<'a> UnaryFunction<'a> { } } } -} -impl<'a> UnaryDensityFunction<'a> for UnaryFunction<'a> { - fn apply_density(&self, density: f64) -> f64 { - Self::internal_apply(&self.action, density) + pub fn create_new_ref( + input: ComponentReferenceImplementation, + action: UnaryType, + ) -> ComponentReferenceImplementation { + match input { + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + UnaryFunction::::new(action, shared) + .into(), + ) + } + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable(UnaryFunction::new(action, owned).into()) + } + } } } -impl<'a> DensityFunctionImpl<'a> for UnaryFunction<'a> { - fn sample(&self, pos: &NoisePos) -> f64 { - self.apply_density(self.input.sample(pos)) +impl> ComponentFunctionImpl + for UnaryFunction +{ +} + +impl> MutableComponentFunctionImpl + for UnaryFunction +{ + #[inline] + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density = self.input.sample_mut(pos, env); + self.apply_density(density) + } + + #[inline] + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.input.fill_mut(arr, applier); + arr.iter_mut() + .for_each(|density| *density = self.apply_density(*density)); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Unary(&self.input, self.unary_type) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier); - densities.iter_mut().for_each(|val| { - *val = self.apply_density(*val); - }); + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Unary(self.input.wrapped_ref(), self.unary_type) } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - let raw = Self::create(self.action.clone(), self.input.apply(visitor)); - Arc::new(DensityFunction::Unary(raw)) + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.convert(converter), self.unary_type) + } + + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref(self.input.clone_to_new_ref(), self.unary_type) + } +} + +impl ImmutableComponentFunctionImpl + for UnaryFunction +{ + #[inline] + fn sample(&self, pos: &NoisePos) -> f64 { + let density = self.input.sample(pos); + self.apply_density(density) } - fn max(&self) -> f64 { - self.max + #[inline] + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.input.fill(arr, applier); + arr.iter_mut() + .for_each(|density| *density = self.apply_density(*density)); } - fn min(&self) -> f64 { - self.min + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Unary(&self.input, self.unary_type) } } diff --git a/pumpkin-world/src/world_gen/noise/density/weird.rs b/pumpkin-world/src/world_gen/noise/density/weird.rs index 84664474f..44a3255aa 100644 --- a/pumpkin-world/src/world_gen/noise/density/weird.rs +++ b/pumpkin-world/src/world_gen/noise/density/weird.rs @@ -1,11 +1,18 @@ -use std::sync::Arc; +use std::{hash::Hash, marker::PhantomData, sync::Arc}; use super::{ - noise::InternalNoise, Applier, ApplierImpl, DensityFunction, DensityFunctionImpl, NoisePos, - NoisePosImpl, Visitor, VisitorImpl, + component_functions::{ + ApplierImpl, ComponentFunctionImpl, ComponentReference, ComponentReferenceImplementation, + ConverterEnvironment, ConverterImpl, DensityFunctionEnvironment, EnvironmentApplierImpl, + ImmutableComponentFunctionImpl, MutableComponentFunctionImpl, MutableComponentReference, + NoEnvironment, OwnedConverterEnvironment, SharedComponentReference, + SharedConverterEnvironment, + }, + noise::InternalNoise, + NoisePos, NoisePosImpl, }; -#[derive(Clone)] +#[derive(Copy, Clone, PartialEq, Eq, Hash)] pub enum RarityMapper { Tunnels, Caves, @@ -41,7 +48,7 @@ impl RarityMapper { 0.75f64 } else if value < 0.5f64 { 1f64 - } else if value < 0.75 { + } else if value < 0.75f64 { 2f64 } else { 3f64 @@ -51,23 +58,28 @@ impl RarityMapper { } } -#[derive(Clone)] -pub struct WierdScaledFunction<'a> { - input: Arc>, - noise: Arc>, - rarity: RarityMapper, +pub struct WierdScaledFunction> { + pub(crate) input: R, + pub(crate) noise: Arc, + pub(crate) rarity: RarityMapper, + _dummy: PhantomData, } -impl<'a> WierdScaledFunction<'a> { - pub fn new( - input: Arc>, - noise: Arc>, - rarity: RarityMapper, - ) -> Self { +impl> From> + for MutableComponentReference +{ + fn from(value: WierdScaledFunction) -> Self { + Self(Box::new(value)) + } +} + +impl> WierdScaledFunction { + pub fn new(input: R, noise: Arc, rarity: RarityMapper) -> Self { Self { input, noise, rarity, + _dummy: PhantomData:: {}, } } @@ -78,33 +90,96 @@ impl<'a> WierdScaledFunction<'a> { .sample(pos.x() as f64 / d, pos.y() as f64 / d, pos.z() as f64 / d) .abs() } + + pub fn create_new_ref( + input: ComponentReferenceImplementation, + noise: Arc, + rarity: RarityMapper, + ) -> ComponentReferenceImplementation { + match input { + ComponentReferenceImplementation::Mutable(owned) => { + ComponentReferenceImplementation::Mutable( + WierdScaledFunction::new(owned, noise, rarity).into(), + ) + } + ComponentReferenceImplementation::Shared(shared) => { + ComponentReferenceImplementation::Shared( + WierdScaledFunction::::new( + shared, noise, rarity, + ) + .into(), + ) + } + } + } +} + +impl> ComponentFunctionImpl + for WierdScaledFunction +{ } -impl<'a> DensityFunctionImpl<'a> for WierdScaledFunction<'a> { - fn max(&self) -> f64 { - self.rarity.max_multiplier() * self.noise.max_value() +impl> MutableComponentFunctionImpl + for WierdScaledFunction +{ + fn sample_mut(&mut self, pos: &NoisePos, env: &E) -> f64 { + let density = self.input.sample_mut(pos, env); + self.apply_loc(pos, density) } - fn min(&self) -> f64 { - 0f64 + fn fill_mut(&mut self, arr: &mut [f64], applier: &mut dyn EnvironmentApplierImpl) { + self.input.fill_mut(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, val)| { + *val = self.apply_loc(&applier.at(i), *val); + }); + } + + fn environment(&self) -> ConverterEnvironment { + ConverterEnvironment::Wierd(&self.input, &self.noise, self.rarity) + } + + fn into_environment(self: Box) -> OwnedConverterEnvironment { + OwnedConverterEnvironment::Wierd(self.input.wrapped_ref(), self.noise, self.rarity) } - fn apply(&self, visitor: &Visitor<'a>) -> Arc> { - visitor.apply(Arc::new(DensityFunction::Wierd(WierdScaledFunction { - input: self.input.apply(visitor), - noise: visitor.apply_internal_noise(self.noise.clone()), - rarity: self.rarity.clone(), - }))) + fn convert( + self: Box, + converter: &mut dyn ConverterImpl, + ) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.input.convert(converter), + converter + .convert_noise(&self.noise) + .unwrap_or_else(|| self.noise.clone()), + self.rarity, + ) } + fn clone_to_new_ref(&self) -> ComponentReferenceImplementation { + Self::create_new_ref( + self.input.clone_to_new_ref(), + self.noise.clone(), + self.rarity, + ) + } +} + +impl ImmutableComponentFunctionImpl + for WierdScaledFunction +{ fn sample(&self, pos: &NoisePos) -> f64 { - self.apply_loc(pos, self.input.sample(pos)) + let density = self.input.sample(pos); + self.apply_loc(pos, density) } - fn fill(&self, densities: &mut [f64], applier: &Applier<'a>) { - self.input.fill(densities, applier); - densities.iter_mut().enumerate().for_each(|(i, val)| { + fn fill(&self, arr: &mut [f64], applier: &mut dyn ApplierImpl) { + self.input.fill(arr, applier); + arr.iter_mut().enumerate().for_each(|(i, val)| { *val = self.apply_loc(&applier.at(i), *val); }); } + + fn shared_environment(&self) -> SharedConverterEnvironment { + SharedConverterEnvironment::Wierd(&self.input, &self.noise, self.rarity) + } } diff --git a/pumpkin-world/src/world_gen/noise/mod.rs b/pumpkin-world/src/world_gen/noise/mod.rs index 8b72fcdff..19beee618 100644 --- a/pumpkin-world/src/world_gen/noise/mod.rs +++ b/pumpkin-world/src/world_gen/noise/mod.rs @@ -1,190 +1,196 @@ -use derive_getters::Getters; use num_traits::Float; -use perlin::DoublePerlinNoiseParameters; +pub mod config; pub mod density; pub mod perlin; -mod router; +pub mod router; mod simplex; -#[derive(Getters)] -pub struct BuiltInNoiseParams<'a> { - temperature: DoublePerlinNoiseParameters<'a>, - vegetation: DoublePerlinNoiseParameters<'a>, - continentalness: DoublePerlinNoiseParameters<'a>, - erosion: DoublePerlinNoiseParameters<'a>, - temperature_large: DoublePerlinNoiseParameters<'a>, - vegetation_large: DoublePerlinNoiseParameters<'a>, - continentalness_large: DoublePerlinNoiseParameters<'a>, - erosion_large: DoublePerlinNoiseParameters<'a>, - ridge: DoublePerlinNoiseParameters<'a>, - offset: DoublePerlinNoiseParameters<'a>, - aquifer_barrier: DoublePerlinNoiseParameters<'a>, - aquifer_fluid_level_floodedness: DoublePerlinNoiseParameters<'a>, - aquifer_lava: DoublePerlinNoiseParameters<'a>, - aquifer_fluid_level_spread: DoublePerlinNoiseParameters<'a>, - pillar: DoublePerlinNoiseParameters<'a>, - pillar_rareness: DoublePerlinNoiseParameters<'a>, - pillar_thickness: DoublePerlinNoiseParameters<'a>, - spaghetti_2d: DoublePerlinNoiseParameters<'a>, - spaghetti_2d_elevation: DoublePerlinNoiseParameters<'a>, - spaghetti_2d_modulator: DoublePerlinNoiseParameters<'a>, - spaghetti_2d_thickness: DoublePerlinNoiseParameters<'a>, - spaghetti_3d_1: DoublePerlinNoiseParameters<'a>, - spaghetti_3d_2: DoublePerlinNoiseParameters<'a>, - spaghetti_3d_rarity: DoublePerlinNoiseParameters<'a>, - spaghetti_3d_thickness: DoublePerlinNoiseParameters<'a>, - spaghetti_roughness: DoublePerlinNoiseParameters<'a>, - spaghetti_roughness_modulator: DoublePerlinNoiseParameters<'a>, - cave_entrance: DoublePerlinNoiseParameters<'a>, - cave_layer: DoublePerlinNoiseParameters<'a>, - cave_cheese: DoublePerlinNoiseParameters<'a>, - ore_veininess: DoublePerlinNoiseParameters<'a>, - ore_vein_a: DoublePerlinNoiseParameters<'a>, - ore_vein_b: DoublePerlinNoiseParameters<'a>, - ore_gap: DoublePerlinNoiseParameters<'a>, - noodle: DoublePerlinNoiseParameters<'a>, - noodle_thickness: DoublePerlinNoiseParameters<'a>, - noodle_ridge_a: DoublePerlinNoiseParameters<'a>, - noodle_ridge_b: DoublePerlinNoiseParameters<'a>, - jagged: DoublePerlinNoiseParameters<'a>, - surface: DoublePerlinNoiseParameters<'a>, - surface_secondary: DoublePerlinNoiseParameters<'a>, - clay_bands_offset: DoublePerlinNoiseParameters<'a>, - badlands_pillar: DoublePerlinNoiseParameters<'a>, - badlands_pillar_roof: DoublePerlinNoiseParameters<'a>, - badlands_surface: DoublePerlinNoiseParameters<'a>, - iceberg_pillar: DoublePerlinNoiseParameters<'a>, - iceberg_pillar_roof: DoublePerlinNoiseParameters<'a>, - iceberg_surface: DoublePerlinNoiseParameters<'a>, - surface_swamp: DoublePerlinNoiseParameters<'a>, - calcite: DoublePerlinNoiseParameters<'a>, - gravel: DoublePerlinNoiseParameters<'a>, - powder_snow: DoublePerlinNoiseParameters<'a>, - packed_ice: DoublePerlinNoiseParameters<'a>, - ice: DoublePerlinNoiseParameters<'a>, - soul_sand_layer: DoublePerlinNoiseParameters<'a>, - gravel_layer: DoublePerlinNoiseParameters<'a>, - patch: DoublePerlinNoiseParameters<'a>, - netherrack: DoublePerlinNoiseParameters<'a>, - nether_wart: DoublePerlinNoiseParameters<'a>, - nether_state_selector: DoublePerlinNoiseParameters<'a>, -} +pub mod built_in_noise_params { + use super::perlin::DoublePerlinNoiseParameters; -impl BuiltInNoiseParams<'_> { - pub fn new() -> Self { - Self { - temperature: DoublePerlinNoiseParameters::new( - -10, - &[1.5f64, 0f64, 1f64, 0f64, 0f64, 0f64], - ), - vegetation: DoublePerlinNoiseParameters::new(-8, &[1f64, 1f64, 0f64, 0f64, 0f64, 0f64]), - continentalness: DoublePerlinNoiseParameters::new( - -9, - &[1f64, 1f64, 2f64, 2f64, 2f64, 1f64, 1f64, 1f64, 1f64], - ), + pub const TEMPERATURE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -10, + &[1.5f64, 0f64, 1f64, 0f64, 0f64, 0f64], + "minecraft:temperature", + ); + pub const VEGETATION: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -8, + &[1f64, 1f64, 0f64, 0f64, 0f64, 0f64], + "minecraft:vegetation", + ); + pub const CONTINENTALNESS: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -9, + &[1f64, 1f64, 2f64, 2f64, 2f64, 1f64, 1f64, 1f64, 1f64], + "minecraft:continentalness", + ); + pub const EROSION: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-9, &[1f64, 1f64, 0f64, 1f64, 1f64], "minecraft:erosion"); + pub const TEMPERATURE_LARGE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -12, + &[1.5f64, 0f64, 1f64, 0f64, 0f64, 0f64], + "minecraft:temperature_large", + ); + pub const VEGETATION_LARGE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -10, + &[1f64, 1f64, 0f64, 0f64, 0f64, 0f64], + "minecraft:vegetation_large", + ); + pub const CONTINENTALNESS_LARGE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -11, + &[1f64, 1f64, 2f64, 2f64, 2f64, 1f64, 1f64, 1f64, 1f64], + "minecraft:continentalness_large", + ); + pub const EROSION_LARGE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -11, + &[1f64, 1f64, 0f64, 1f64, 1f64], + "minecraft:erosion_large", + ); + pub const RIDGE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -7, + &[1f64, 2f64, 1f64, 0f64, 0f64, 0f64], + "minecraft:ridge", + ); + pub const OFFSET: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-3, &[1f64, 1f64, 1f64, 0f64], "minecraft:offset"); + pub const AQUIFER_BARRIER: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-3, &[1f64], "minecraft:aquifer_barrier"); + pub const AQUIFER_FLUID_LEVEL_FLOODEDNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:aquifer_fluid_level_floodedness"); + pub const AQUIFER_LAVA: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-1, &[1f64], "minecraft:aquifer_lava"); + pub const AQUIFER_FLUID_LEVEL_SPREAD: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-5, &[1f64], "minecraft:aquifer_fluid_level_spread"); + pub const PILLAR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64; 2], "minecraft:pillar"); + pub const PILLAR_RARENESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:pillar_rareness"); + pub const PILLAR_THICKNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:pillar_thickness"); + pub const SPAGHETTI_2D: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:spaghetti_2d"); + pub const SPAGHETTI_2D_ELEVATION: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:spaghetti_2d_elevation"); + pub const SPAGHETTI_2D_MODULATOR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-11, &[1f64], "minecraft:spaghetti_2d_modulator"); + pub const SPAGHETTI_2D_THICKNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-11, &[1f64], "minecraft:spaghetti_2d_thickness"); + pub const SPAGHETTI_3D_1: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:spaghetti_3d_1"); + pub const SPAGHETTI_3D_2: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:spaghetti_3d_2"); + pub const SPAGHETTI_3D_RARITY: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-11, &[1f64], "minecraft:spaghetti_3d_rarity"); + pub const SPAGHETTI_3D_THICKNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:spaghetti_3d_thickness"); + pub const SPAGHETTI_ROUGHNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-5, &[1f64], "minecraft:spaghetti_roughness"); + pub const SPAGHETTI_ROUGHNESS_MODULATOR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:spaghetti_roughness_modulator"); + pub const CAVE_ENTRANCE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[0.4f64, 0.5f64, 1f64], "minecraft:cave_entrance"); + pub const CAVE_LAYER: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:cave_layer"); + pub const CAVE_CHEESE: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -8, + &[0.5f64, 1f64, 2f64, 1f64, 2f64, 1f64, 0f64, 2f64, 0f64], + "minecraft:cave_cheese", + ); + pub const ORE_VEININESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:ore_veininess"); + pub const ORE_VEIN_A: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:ore_vein_a"); + pub const ORE_VEIN_B: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:ore_vein_b"); + pub const ORE_GAP: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-5, &[1f64], "minecraft:ore_gap"); + pub const NOODLE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:noodle"); + pub const NOODLE_THICKNESS: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:noodle_thickness"); + pub const NOODLE_RIDGE_A: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:noodle_ridge_a"); + pub const NOODLE_RIDGE_B: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64], "minecraft:noodle_ridge_b"); - erosion: DoublePerlinNoiseParameters::new(-9, &[1f64, 1f64, 0f64, 1f64, 1f64]), - temperature_large: DoublePerlinNoiseParameters::new( - -12, - &[1.5f64, 0f64, 1f64, 0f64, 0f64, 0f64], - ), - vegetation_large: DoublePerlinNoiseParameters::new( - -10, - &[1f64, 1f64, 0f64, 0f64, 0f64, 0f64], - ), - continentalness_large: DoublePerlinNoiseParameters::new( - -11, - &[1f64, 1f64, 2f64, 2f64, 2f64, 1f64, 1f64, 1f64, 1f64], - ), - erosion_large: DoublePerlinNoiseParameters::new(-11, &[1f64, 1f64, 0f64, 1f64, 1f64]), - ridge: DoublePerlinNoiseParameters::new(-7, &[1f64, 2f64, 1f64, 0f64, 0f64, 0f64]), - offset: DoublePerlinNoiseParameters::new(-3, &[1f64; 4]), - aquifer_barrier: DoublePerlinNoiseParameters::new(-3, &[1f64]), - aquifer_fluid_level_floodedness: DoublePerlinNoiseParameters::new(-7, &[1f64]), - aquifer_lava: DoublePerlinNoiseParameters::new(-1, &[1f64]), - aquifer_fluid_level_spread: DoublePerlinNoiseParameters::new(-5, &[1f64]), - pillar: DoublePerlinNoiseParameters::new(-7, &[1f64; 2]), - pillar_rareness: DoublePerlinNoiseParameters::new(-8, &[1f64]), - pillar_thickness: DoublePerlinNoiseParameters::new(-8, &[1f64]), - spaghetti_2d: DoublePerlinNoiseParameters::new(-7, &[1f64]), - spaghetti_2d_elevation: DoublePerlinNoiseParameters::new(-8, &[1f64]), - spaghetti_2d_modulator: DoublePerlinNoiseParameters::new(-11, &[1f64]), - spaghetti_2d_thickness: DoublePerlinNoiseParameters::new(-11, &[1f64]), - spaghetti_3d_1: DoublePerlinNoiseParameters::new(-7, &[1f64]), - spaghetti_3d_2: DoublePerlinNoiseParameters::new(-7, &[1f64]), - spaghetti_3d_rarity: DoublePerlinNoiseParameters::new(-11, &[1f64]), - spaghetti_3d_thickness: DoublePerlinNoiseParameters::new(-8, &[1f64]), - spaghetti_roughness: DoublePerlinNoiseParameters::new(-5, &[1f64]), - spaghetti_roughness_modulator: DoublePerlinNoiseParameters::new(-8, &[1f64]), - cave_entrance: DoublePerlinNoiseParameters::new(-7, &[0.4f64, 0.5f64, 1f64]), - cave_layer: DoublePerlinNoiseParameters::new(-8, &[1f64]), - cave_cheese: DoublePerlinNoiseParameters::new( - -8, - &[0.5f64, 1f64, 2f64, 1f64, 2f64, 1f64, 0f64, 2f64, 0f64], - ), - ore_veininess: DoublePerlinNoiseParameters::new(-8, &[1f64]), - ore_vein_a: DoublePerlinNoiseParameters::new(-7, &[1f64]), - ore_vein_b: DoublePerlinNoiseParameters::new(-7, &[1f64]), - ore_gap: DoublePerlinNoiseParameters::new(-5, &[1f64]), - noodle: DoublePerlinNoiseParameters::new(-8, &[1f64]), - noodle_thickness: DoublePerlinNoiseParameters::new(-8, &[1f64]), - noodle_ridge_a: DoublePerlinNoiseParameters::new(-7, &[1f64]), - noodle_ridge_b: DoublePerlinNoiseParameters::new(-7, &[1f64]), - jagged: DoublePerlinNoiseParameters::new(-16, &[1f64; 16]), - surface: DoublePerlinNoiseParameters::new(-6, &[1f64; 3]), - surface_secondary: DoublePerlinNoiseParameters::new(-6, &[1f64, 1f64, 0f64, 1f64]), - clay_bands_offset: DoublePerlinNoiseParameters::new(-8, &[1f64]), - badlands_pillar: DoublePerlinNoiseParameters::new(-2, &[1f64; 4]), - badlands_pillar_roof: DoublePerlinNoiseParameters::new(-8, &[1f64]), - badlands_surface: DoublePerlinNoiseParameters::new(-6, &[1f64; 3]), - iceberg_pillar: DoublePerlinNoiseParameters::new(-6, &[1f64; 4]), - iceberg_pillar_roof: DoublePerlinNoiseParameters::new(-3, &[1f64]), - iceberg_surface: DoublePerlinNoiseParameters::new(-6, &[1f64; 3]), - surface_swamp: DoublePerlinNoiseParameters::new(-2, &[1f64]), - calcite: DoublePerlinNoiseParameters::new(-9, &[1f64; 4]), - gravel: DoublePerlinNoiseParameters::new(-8, &[1f64; 4]), - powder_snow: DoublePerlinNoiseParameters::new(-6, &[1f64; 4]), - packed_ice: DoublePerlinNoiseParameters::new(-7, &[1f64; 4]), - ice: DoublePerlinNoiseParameters::new(-4, &[1f64; 4]), - soul_sand_layer: DoublePerlinNoiseParameters::new( - -8, - &[ - 1f64, - 1f64, - 1f64, - 1f64, - 0f64, - 0f64, - 0f64, - 0f64, - 0.013333333333333334f64, - ], - ), - gravel_layer: DoublePerlinNoiseParameters::new( - -8, - &[ - 1f64, - 1f64, - 1f64, - 1f64, - 0f64, - 0f64, - 0f64, - 0f64, - 0.013333333333333334f64, - ], - ), - patch: DoublePerlinNoiseParameters::new( - -5, - &[1f64, 0f64, 0f64, 0f64, 0f64, 0.013333333333333334f64], - ), - netherrack: DoublePerlinNoiseParameters::new(-3, &[1f64, 0f64, 0f64, 0.35f64]), - nether_wart: DoublePerlinNoiseParameters::new(-3, &[1f64, 0f64, 0f64, 0.9f64]), - nether_state_selector: DoublePerlinNoiseParameters::new(-4, &[1f64]), - } - } + pub const JAGGED: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-16, &[1f64; 16], "minecraft:jagged"); + pub const SURFACE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-6, &[1f64; 3], "minecraft:surface"); + pub const SURFACE_SECONDARY: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -6, + &[1f64, 1f64, 0f64, 1f64], + "minecraft:surface_secondary", + ); + pub const CLAY_BANDS_OFFSET: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:clay_bands_offset"); + pub const BADLANDS_PILLAR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-2, &[1f64; 4], "minecraft:badlands_pillar"); + pub const BADLANDS_PILLAR_ROOF: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64], "minecraft:badlands_pillar_roof"); + pub const BADLANDS_SURFACE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-6, &[1f64; 3], "minecraft:badlands_surface"); + pub const ICEBERG_PILLAR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-6, &[1f64; 4], "minecraft:iceberg_pillar"); + pub const ICEBERG_PILLAR_ROOF: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-3, &[1f64], "minecraft:iceberg_pillar_roof"); + pub const ICEBERG_SURFACE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-6, &[1f64; 3], "minecraft:iceberg_surface"); + pub const SURFACE_SWAMP: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-2, &[1f64], "minecraft:surface_swamp"); + pub const CALCITE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-9, &[1f64; 4], "minecraft:calcite"); + pub const GRAVEL: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-8, &[1f64; 4], "minecraft:gravel"); + pub const POWDER_SNOW: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-6, &[1f64; 4], "minecraft:powder_snow"); + pub const PACKED_ICE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-7, &[1f64; 4], "minecraft:packed_ice"); + pub const ICE: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-4, &[1f64; 4], "minecraft:ice"); + pub const SOUL_SAND_LAYER: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -8, + &[ + 1f64, + 1f64, + 1f64, + 1f64, + 0f64, + 0f64, + 0f64, + 0f64, + 0.013333333333333334f64, + ], + "minecraft:soul_sand_layer", + ); + pub const GRAVEL_LAYER: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -8, + &[ + 1f64, + 1f64, + 1f64, + 1f64, + 0f64, + 0f64, + 0f64, + 0f64, + 0.013333333333333334f64, + ], + "minecraft:gravel_layer", + ); + pub const PATCH: DoublePerlinNoiseParameters = DoublePerlinNoiseParameters::new( + -5, + &[1f64, 0f64, 0f64, 0f64, 0f64, 0.013333333333333334f64], + "minecraft:patch", + ); + pub const NETHERRACK: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-3, &[1f64, 0f64, 0f64, 0.35f64], "minecraft:netherrack"); + pub const NETHER_WART: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-3, &[1f64, 0f64, 0f64, 0.9f64], "minecraft:nether_wart"); + pub const NETHER_STATE_SELECTOR: DoublePerlinNoiseParameters = + DoublePerlinNoiseParameters::new(-4, &[1f64], "minecraft:nether_state_selector"); } +#[inline] pub fn lerp(delta: T, start: T, end: T) -> T where T: Float, @@ -192,7 +198,11 @@ where start + delta * (end - start) } -pub fn lerp_progress(value: f64, start: f64, end: f64) -> f64 { +#[inline] +pub fn lerp_progress(value: T, start: T, end: T) -> T +where + T: Float, +{ (value - start) / (end - start) } @@ -206,10 +216,19 @@ pub fn clamped_lerp(start: f64, end: f64, delta: f64) -> f64 { } } +#[inline] pub fn clamped_map(value: f64, old_start: f64, old_end: f64, new_start: f64, new_end: f64) -> f64 { clamped_lerp(new_start, new_end, lerp_progress(value, old_start, old_end)) } +#[inline] +pub fn map(value: T, old_start: T, old_end: T, new_start: T, new_end: T) -> T +where + T: Float, +{ + lerp(lerp_progress(value, old_start, old_end), new_start, new_end) +} + pub fn lerp2(delta_x: f64, delta_y: f64, x0y0: f64, x1y0: f64, x0y1: f64, x1y1: f64) -> f64 { lerp( delta_y, @@ -240,30 +259,97 @@ pub fn lerp3( } struct Gradient { - x: i32, - y: i32, - z: i32, + x: f64, + y: f64, + z: f64, } const GRADIENTS: [Gradient; 16] = [ - Gradient { x: 1, y: 1, z: 0 }, - Gradient { x: -1, y: 1, z: 0 }, - Gradient { x: 1, y: -1, z: 0 }, - Gradient { x: -1, y: -1, z: 0 }, - Gradient { x: 1, y: 0, z: 1 }, - Gradient { x: -1, y: 0, z: 1 }, - Gradient { x: 1, y: 0, z: -1 }, - Gradient { x: -1, y: 0, z: -1 }, - Gradient { x: 0, y: 1, z: 1 }, - Gradient { x: 0, y: -1, z: 1 }, - Gradient { x: 0, y: 1, z: -1 }, - Gradient { x: 0, y: -1, z: -1 }, - Gradient { x: 1, y: 1, z: 0 }, - Gradient { x: 0, y: -1, z: 1 }, - Gradient { x: -1, y: 1, z: 0 }, - Gradient { x: 0, y: -1, z: -1 }, + Gradient { + x: 1f64, + y: 1f64, + z: 0f64, + }, + Gradient { + x: -1f64, + y: 1f64, + z: 0f64, + }, + Gradient { + x: 1f64, + y: -1f64, + z: 0f64, + }, + Gradient { + x: -1f64, + y: -1f64, + z: 0f64, + }, + Gradient { + x: 1f64, + y: 0f64, + z: 1f64, + }, + Gradient { + x: -1f64, + y: 0f64, + z: 1f64, + }, + Gradient { + x: 1f64, + y: 0f64, + z: -1f64, + }, + Gradient { + x: -1f64, + y: 0f64, + z: -1f64, + }, + Gradient { + x: 0f64, + y: 1f64, + z: 1f64, + }, + Gradient { + x: 0f64, + y: -1f64, + z: 1f64, + }, + Gradient { + x: 0f64, + y: 1f64, + z: -1f64, + }, + Gradient { + x: 0f64, + y: -1f64, + z: -1f64, + }, + Gradient { + x: 1f64, + y: 1f64, + z: 0f64, + }, + Gradient { + x: 0f64, + y: -1f64, + z: 1f64, + }, + Gradient { + x: -1f64, + y: 1f64, + z: 0f64, + }, + Gradient { + x: 0f64, + y: -1f64, + z: -1f64, + }, ]; -fn dot(gradient: &Gradient, x: f64, y: f64, z: f64) -> f64 { - (gradient.z as f64).mul_add(z, (gradient.x as f64).mul_add(x, gradient.y as f64 * y)) +impl Gradient { + #[inline] + fn dot(&self, x: f64, y: f64, z: f64) -> f64 { + self.x * x + self.y * y + self.z * z + } } diff --git a/pumpkin-world/src/world_gen/noise/perlin.rs b/pumpkin-world/src/world_gen/noise/perlin.rs index 7d9527831..4faf760f4 100644 --- a/pumpkin-world/src/world_gen/noise/perlin.rs +++ b/pumpkin-world/src/world_gen/noise/perlin.rs @@ -1,18 +1,20 @@ -use itertools::Itertools; -use num_traits::{Pow, Zero}; -use pumpkin_core::random::{RandomDeriverImpl, RandomGenerator, RandomImpl}; +use std::sync::Arc; -use super::{dot, lerp3, GRADIENTS}; +use itertools::{izip, Itertools}; +use num_traits::Pow; +use pumpkin_core::random::RandomGenerator; + +use super::{lerp3, GRADIENTS}; pub struct PerlinNoiseSampler { - permutation: Box<[u8]>, + permutation: [u8; 256], x_origin: f64, y_origin: f64, z_origin: f64, } impl PerlinNoiseSampler { - pub fn new(random: &mut impl RandomImpl) -> Self { + pub fn new(random: &mut RandomGenerator) -> Self { let x_origin = random.next_f64() * 256f64; let y_origin = random.next_f64() * 256f64; let z_origin = random.next_f64() * 256f64; @@ -30,29 +32,30 @@ impl PerlinNoiseSampler { } Self { - permutation: Box::new(permutation), + permutation, x_origin, y_origin, z_origin, } } + #[inline] pub fn sample_flat_y(&self, x: f64, y: f64, z: f64) -> f64 { self.sample_no_fade(x, y, z, 0f64, 0f64) } pub fn sample_no_fade(&self, x: f64, y: f64, z: f64, y_scale: f64, y_max: f64) -> f64 { - let trans_x = x + self.x_origin; - let trans_y = y + self.y_origin; - let trans_z = z + self.z_origin; + let true_x = x + self.x_origin; + let true_y = y + self.y_origin; + let true_z = z + self.z_origin; - let x_int = trans_x.floor() as i32; - let y_int = trans_y.floor() as i32; - let z_int = trans_z.floor() as i32; + let x_floor = true_x.floor(); + let y_floor = true_y.floor(); + let z_floor = true_z.floor(); - let x_dec = trans_x - x_int as f64; - let y_dec = trans_y - y_int as f64; - let z_dec = trans_z - z_int as f64; + let x_dec = true_x - x_floor; + let y_dec = true_y - y_floor; + let z_dec = true_z - z_floor; let y_noise = if y_scale != 0f64 { let raw_y_dec = if y_max >= 0f64 && y_max < y_dec { @@ -60,22 +63,33 @@ impl PerlinNoiseSampler { } else { y_dec }; - (raw_y_dec / y_scale + 1.0E-7f32 as f64).floor() * y_scale + (raw_y_dec / y_scale + 1E-7f32 as f64).floor() * y_scale } else { 0f64 }; - self.sample(x_int, y_int, z_int, x_dec, y_dec - y_noise, z_dec, y_dec) + self.sample( + x_floor as i32, + y_floor as i32, + z_floor as i32, + x_dec, + y_dec - y_noise, + z_dec, + y_dec, + ) } + #[inline] fn grad(hash: i32, x: f64, y: f64, z: f64) -> f64 { - dot(&GRADIENTS[(hash & 15) as usize], x, y, z) + GRADIENTS[(hash & 15) as usize].dot(x, y, z) } + #[inline] fn perlin_fade(value: f64) -> f64 { value * value * value * (value * (value * 6f64 - 15f64) + 10f64) } + #[inline] fn map(&self, input: i32) -> i32 { self.permutation[(input & 0xFF) as usize] as i32 } @@ -92,52 +106,22 @@ impl PerlinNoiseSampler { fade_local_y: f64, ) -> f64 { let i = self.map(x); - let j = self.map(x.wrapping_add(1)); - let k = self.map(i.wrapping_add(y)); - - let l = self.map(i.wrapping_add(y).wrapping_add(1)); - let m = self.map(j.wrapping_add(y)); - let n = self.map(j.wrapping_add(y).wrapping_add(1)); - - let d = Self::grad(self.map(k.wrapping_add(z)), local_x, local_y, local_z); - let e = Self::grad( - self.map(m.wrapping_add(z)), - local_x - 1f64, - local_y, - local_z, - ); - let f = Self::grad( - self.map(l.wrapping_add(z)), - local_x, - local_y - 1f64, - local_z, - ); - let g = Self::grad( - self.map(n.wrapping_add(z)), - local_x - 1f64, - local_y - 1f64, - local_z, - ); - let h = Self::grad( - self.map(k.wrapping_add(z).wrapping_add(1)), - local_x, - local_y, - local_z - 1f64, - ); - let o = Self::grad( - self.map(m.wrapping_add(z).wrapping_add(1)), - local_x - 1f64, - local_y, - local_z - 1f64, - ); - let p = Self::grad( - self.map(l.wrapping_add(z).wrapping_add(1)), - local_x, - local_y - 1f64, - local_z - 1f64, - ); + let j = self.map(x + 1); + let k = self.map(i + y); + let l = self.map(i + y + 1); + + let m = self.map(j + y); + let n = self.map(j + y + 1); + + let d = Self::grad(self.map(k + z), local_x, local_y, local_z); + let e = Self::grad(self.map(m + z), local_x - 1f64, local_y, local_z); + let f = Self::grad(self.map(l + z), local_x, local_y - 1f64, local_z); + let g = Self::grad(self.map(n + z), local_x - 1f64, local_y - 1f64, local_z); + let h = Self::grad(self.map(k + z + 1), local_x, local_y, local_z - 1f64); + let o = Self::grad(self.map(m + z + 1), local_x - 1f64, local_y, local_z - 1f64); + let p = Self::grad(self.map(l + z + 1), local_x, local_y - 1f64, local_z - 1f64); let q = Self::grad( - self.map(n.wrapping_add(z).wrapping_add(1)), + self.map(n + z + 1), local_x - 1f64, local_y - 1f64, local_z - 1f64, @@ -151,11 +135,11 @@ impl PerlinNoiseSampler { } pub struct OctavePerlinNoiseSampler { - octave_samplers: Vec>, - pub(crate) amplitudes: Vec, + octave_samplers: Box<[Option]>, + amplitudes: Box<[f64]>, first_octave: i32, - pub(crate) persistence: f64, - lacunarity: f64, + persistences: Box<[f64]>, + lacunarities: Box<[f64]>, max_value: f64, } @@ -182,10 +166,9 @@ impl OctavePerlinNoiseSampler { d } + #[inline] pub fn maintain_precision(value: f64) -> f64 { - (value / 3.3554432E7f64 + 0.5f64) - .floor() - .mul_add(-3.3554432E7f64, value) + value - (value / 3.3554432E7f64 + 0.5f64).floor() * 3.3554432E7f64 } pub fn calculate_amplitudes(octaves: &[i32]) -> (i32, Vec) { @@ -208,7 +191,12 @@ impl OctavePerlinNoiseSampler { (-i, double_list) } - pub fn new(random: &mut RandomGenerator, first_octave: i32, amplitudes: &[f64]) -> Self { + pub fn new( + random: &mut RandomGenerator, + first_octave: i32, + amplitudes: &[f64], + legacy: bool, + ) -> Self { let i = amplitudes.len(); let j = -first_octave; @@ -217,70 +205,32 @@ impl OctavePerlinNoiseSampler { samplers.push(None); } - match random { - RandomGenerator::Xoroshiro(random) => { - let splitter = random.next_splitter(); - for k in 0..i { - if amplitudes[k] != 0f64 { - let l = first_octave + k as i32; - samplers[k] = Some(PerlinNoiseSampler::new( - &mut splitter.split_string(&format!("octave_{}", l)), - )); - } + if legacy { + let sampler = PerlinNoiseSampler::new(random); + if j >= 0 && j < i as i32 { + let d = amplitudes[j as usize]; + if d != 0f64 { + samplers[j as usize] = Some(sampler); } } - RandomGenerator::LegacyXoroshiro(random) => { - let sampler = PerlinNoiseSampler::new(random); - if j >= 0 && j < i as i32 { - let d = amplitudes[j as usize]; - if d != 0f64 { - samplers[j as usize] = Some(sampler); - } - } - for kx in (0..j as usize).rev() { - if kx < i { - let e = amplitudes[kx]; - if e != 0f64 { - samplers[kx] = Some(PerlinNoiseSampler::new(random)); - } else { - random.skip(262); - } + for kx in (0..j as usize).rev() { + if kx < i { + let e = amplitudes[kx]; + if e != 0f64 { + samplers[kx] = Some(PerlinNoiseSampler::new(random)); } else { random.skip(262); } + } else { + random.skip(262); } - - if let Ok(length1) = samplers.iter().filter(|x| x.is_some()).try_len() { - if let Ok(length2) = amplitudes.iter().filter(|x| !x.is_zero()).try_len() { - assert_eq!(length1, length2); - } - } - assert!(j >= i as i32 - 1); } - // TODO: This is exactly the same code as LegacyXoroshiro path - // Is there a way to combine somehow? - RandomGenerator::Legacy(random) => { - let sampler = PerlinNoiseSampler::new(random); - if j >= 0 && j < i as i32 { - let d = amplitudes[j as usize]; - if d != 0f64 { - samplers[j as usize] = Some(sampler); - } - } - for kx in (0..j as usize).rev() { - if kx < i { - let e = amplitudes[kx]; - if e != 0f64 { - samplers[kx] = Some(PerlinNoiseSampler::new(random)); - } else { - random.skip(262); - } - } else { - random.skip(262); - } - } + #[cfg(debug_assertions)] + { + use itertools::Itertools; + use num_traits::Zero; if let Ok(length1) = samplers.iter().filter(|x| x.is_some()).try_len() { if let Ok(length2) = amplitudes.iter().filter(|x| !x.is_zero()).try_len() { @@ -289,64 +239,102 @@ impl OctavePerlinNoiseSampler { } assert!(j >= i as i32 - 1); } + } else { + let splitter = random.next_splitter(); + for k in 0..i { + if amplitudes[k] != 0f64 { + let l = first_octave + k as i32; + samplers[k] = Some(PerlinNoiseSampler::new( + &mut splitter.split_string(&format!("octave_{}", l)), + )); + } + } } - let persistence = 2f64.pow((i as i32).wrapping_sub(1) as f64) / (2f64.pow(i as f64) - 1f64); + let mut persistence = + 2f64.pow((i as i32).wrapping_sub(1) as f64) / (2f64.pow(i as f64) - 1f64); + let mut lacunarity = 2f64.pow((-j) as f64); let max_value = Self::get_total_amplitude(2f64, persistence, amplitudes); + + let persistences = (0..amplitudes.len()) + .map(|_| { + let result = persistence; + persistence /= 2f64; + result + }) + .collect_vec(); + let lacunarities = (0..amplitudes.len()) + .map(|_| { + let result = lacunarity; + lacunarity *= 2f64; + result + }) + .collect_vec(); + Self { - octave_samplers: samplers, - amplitudes: amplitudes.to_vec(), + octave_samplers: samplers.into(), + amplitudes: amplitudes.into(), first_octave, - persistence, - lacunarity: 2f64.pow((-j) as f64), + persistences: persistences.into(), + lacunarities: lacunarities.into(), max_value, } } pub fn sample(&self, x: f64, y: f64, z: f64) -> f64 { let mut d = 0f64; - let mut e = self.lacunarity; - let mut f = self.persistence; - for (sampler, amplitude) in self.octave_samplers.iter().zip(self.amplitudes.iter()) { + for (sampler, amplitude, persistence, lacunarity) in izip!( + &self.octave_samplers, + &self.amplitudes, + &self.persistences, + &self.lacunarities + ) { if let Some(sampler) = sampler { let g = sampler.sample_no_fade( - Self::maintain_precision(x * e), - Self::maintain_precision(y * e), - Self::maintain_precision(z * e), + Self::maintain_precision(x * lacunarity), + Self::maintain_precision(y * lacunarity), + Self::maintain_precision(z * lacunarity), 0f64, 0f64, ); - d += amplitude * g * f; + d += amplitude * g * persistence; } - - e *= 2f64; - f /= 2f64; } d } } -#[derive(Clone)] -pub struct DoublePerlinNoiseParameters<'a> { +pub struct DoublePerlinNoiseParameters { first_octave: i32, - amplitudes: &'a [f64], + amplitudes: &'static [f64], + id: &'static str, } -impl<'a> DoublePerlinNoiseParameters<'a> { - pub fn new(first_octave: i32, amplitudes: &'a [f64]) -> Self { +impl DoublePerlinNoiseParameters { + pub(crate) const fn new( + first_octave: i32, + amplitudes: &'static [f64], + id: &'static str, + ) -> Self { Self { first_octave, amplitudes, + id, } } + + pub fn id(&self) -> &'static str { + self.id + } } +#[derive(Clone)] pub struct DoublePerlinNoiseSampler { - first_sampler: OctavePerlinNoiseSampler, - second_sampler: OctavePerlinNoiseSampler, + first_sampler: Arc, + second_sampler: Arc, amplitude: f64, max_value: f64, } @@ -360,12 +348,16 @@ impl DoublePerlinNoiseSampler { self.max_value } - pub fn new(rand: &mut RandomGenerator, parameters: &DoublePerlinNoiseParameters) -> Self { + pub fn new( + rand: &mut RandomGenerator, + parameters: &DoublePerlinNoiseParameters, + legacy: bool, + ) -> Self { let first_octave = parameters.first_octave; let amplitudes = parameters.amplitudes; - let first_sampler = OctavePerlinNoiseSampler::new(rand, first_octave, amplitudes); - let second_sampler = OctavePerlinNoiseSampler::new(rand, first_octave, amplitudes); + let first_sampler = OctavePerlinNoiseSampler::new(rand, first_octave, amplitudes, legacy); + let second_sampler = OctavePerlinNoiseSampler::new(rand, first_octave, amplitudes, legacy); let mut j = i32::MAX; let mut k = i32::MIN; @@ -381,8 +373,8 @@ impl DoublePerlinNoiseSampler { let max_value = (first_sampler.max_value + second_sampler.max_value) * amplitude; Self { - first_sampler, - second_sampler, + first_sampler: first_sampler.into(), + second_sampler: second_sampler.into(), amplitude, max_value, } @@ -399,23 +391,20 @@ impl DoublePerlinNoiseSampler { #[cfg(test)] mod double_perlin_noise_sampler_test { - use pumpkin_core::random::{legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomImpl}; - - use crate::world_gen::noise::perlin::{ - DoublePerlinNoiseParameters, DoublePerlinNoiseSampler, RandomGenerator, + use pumpkin_core::random::{ + legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomGenerator, RandomImpl, }; + use crate::world_gen::noise::perlin::{DoublePerlinNoiseParameters, DoublePerlinNoiseSampler}; + #[test] fn sample_legacy() { let mut rand = LegacyRand::from_seed(513513513); assert_eq!(rand.next_i32(), -1302745855); let mut rand_gen = RandomGenerator::Legacy(rand); - let params = DoublePerlinNoiseParameters { - first_octave: 0, - amplitudes: &[4f64], - }; - let sampler = DoublePerlinNoiseSampler::new(&mut rand_gen, ¶ms); + let params = DoublePerlinNoiseParameters::new(0, &[4f64], ""); + let sampler = DoublePerlinNoiseSampler::new(&mut rand_gen, ¶ms, true); let values = [ ( @@ -512,12 +501,9 @@ mod double_perlin_noise_sampler_test { let mut rand_gen = RandomGenerator::Xoroshiro(rand); - let params = DoublePerlinNoiseParameters { - first_octave: 1, - amplitudes: &[2f64, 4f64], - }; + let params = DoublePerlinNoiseParameters::new(1, &[2f64, 4f64], ""); - let sampler = DoublePerlinNoiseSampler::new(&mut rand_gen, ¶ms); + let sampler = DoublePerlinNoiseSampler::new(&mut rand_gen, ¶ms, false); let values = [ ( @@ -610,9 +596,9 @@ mod double_perlin_noise_sampler_test { #[cfg(test)] mod octave_perline_noise_sampler_test { - use pumpkin_core::random::{legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomImpl}; - - use crate::world_gen::noise::perlin::RandomGenerator; + use pumpkin_core::random::{ + legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomGenerator, RandomImpl, + }; use super::OctavePerlinNoiseSampler; @@ -626,11 +612,11 @@ mod octave_perline_noise_sampler_test { assert_eq!(amplitudes, [1f64, 1f64, 1f64]); let mut rand_gen = RandomGenerator::Xoroshiro(rand); - let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes); + let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes, false); assert_eq!(sampler.first_octave, 1); - assert_eq!(sampler.persistence, 0.5714285714285714f64); - assert_eq!(sampler.lacunarity, 2f64); + assert_eq!(sampler.persistences[0], 0.5714285714285714f64); + assert_eq!(sampler.lacunarities[0], 2f64); assert_eq!(sampler.max_value, 2f64); let coords = [ @@ -661,10 +647,10 @@ mod octave_perline_noise_sampler_test { assert_eq!(amplitudes, [1f64]); let mut rand_gen = RandomGenerator::Legacy(rand); - let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes); + let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes, true); assert_eq!(sampler.first_octave, 0); - assert_eq!(sampler.persistence, 1f64); - assert_eq!(sampler.lacunarity, 1f64); + assert_eq!(sampler.persistences[0], 1f64); + assert_eq!(sampler.lacunarities[0], 1f64); assert_eq!(sampler.max_value, 2f64); let coords = [(226.220117499588, 32.67924779023767, 202.84067325597647)]; @@ -688,7 +674,7 @@ mod octave_perline_noise_sampler_test { let (start, amplitudes) = OctavePerlinNoiseSampler::calculate_amplitudes(&[1, 2, 3]); let mut rand_gen = RandomGenerator::Xoroshiro(rand); - let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes); + let sampler = OctavePerlinNoiseSampler::new(&mut rand_gen, start, &litudes, false); let values = [ ( @@ -781,15 +767,20 @@ mod octave_perline_noise_sampler_test { #[cfg(test)] mod perlin_noise_sampler_test { - use std::ops::Deref; + use std::{fs, path::Path}; - use pumpkin_core::random::{xoroshiro128::Xoroshiro, RandomImpl}; + use pumpkin_core::{ + assert_eq_delta, + random::{xoroshiro128::Xoroshiro, RandomDeriverImpl, RandomGenerator, RandomImpl}, + }; + + use crate::{read_data_from_file, world_gen::noise::perlin::PerlinNoiseSampler}; - use crate::world_gen::noise::perlin::PerlinNoiseSampler; + use super::OctavePerlinNoiseSampler; #[test] fn test_create() { - let mut rand = Xoroshiro::from_seed(111); + let mut rand = RandomGenerator::Xoroshiro(Xoroshiro::from_seed(111)); assert_eq!(rand.next_i32(), -1467508761); let sampler = PerlinNoiseSampler::new(&mut rand); @@ -813,12 +804,12 @@ mod perlin_noise_sampler_test { 151, 157, 247, 223, 198, 55, 188, 96, 0, 182, 49, 190, 156, 10, 215, 252, 131, 137, 184, 176, 136, 81, 44, 213, 253, 144, 225, 5, ]; - assert_eq!(sampler.permutation.deref(), permutation); + assert_eq!(sampler.permutation, permutation); } #[test] fn test_no_y() { - let mut rand = Xoroshiro::from_seed(111); + let mut rand = RandomGenerator::Xoroshiro(Xoroshiro::from_seed(111)); assert_eq!(rand.next_i32(), -1467508761); let sampler = PerlinNoiseSampler::new(&mut rand); @@ -986,9 +977,37 @@ mod perlin_noise_sampler_test { } } + #[test] + fn test_no_y_chunk() { + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/perlin2_7_4.json"); + + let mut rand = Xoroshiro::from_seed(0); + let splitter = rand.next_splitter(); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + assert_eq!(rand.next_i32(), 1374487555); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + + let (first, amplitudes) = + OctavePerlinNoiseSampler::calculate_amplitudes(&(-15..=0).collect::>()); + let sampler = OctavePerlinNoiseSampler::new(&mut rand, first, &litudes, true); + let sampler = sampler.get_octave(0).unwrap(); + + assert_eq!(sampler.x_origin, 18.223354299069797); + assert_eq!(sampler.y_origin, 93.99298907803595); + assert_eq!(sampler.z_origin, 184.48198875745823); + + for (x, y, z, sample) in expected_data { + let scale = 0.005; + let result = + sampler.sample_flat_y(x as f64 * scale, y as f64 * scale, z as f64 * scale); + assert_eq_delta!(result, sample, f64::EPSILON); + } + } + #[test] fn test_no_fade() { - let mut rand = Xoroshiro::from_seed(111); + let mut rand = RandomGenerator::Xoroshiro(Xoroshiro::from_seed(111)); assert_eq!(rand.next_i32(), -1467508761); let sampler = PerlinNoiseSampler::new(&mut rand); @@ -1199,4 +1218,117 @@ mod perlin_noise_sampler_test { assert_eq!(sampler.sample_no_fade(x, y, z, y_scale, y_max), sample); } } + + #[test] + fn test_no_fade_chunk() { + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/perlin_7_4.json"); + + let mut rand = Xoroshiro::from_seed(0); + let splitter = rand.next_splitter(); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + assert_eq!(rand.next_i32(), 1374487555); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + + let (first, amplitudes) = + OctavePerlinNoiseSampler::calculate_amplitudes(&(-15..=0).collect::>()); + let sampler = OctavePerlinNoiseSampler::new(&mut rand, first, &litudes, true); + let sampler = sampler.get_octave(0).unwrap(); + + assert_eq!(sampler.x_origin, 18.223354299069797); + assert_eq!(sampler.y_origin, 93.99298907803595); + assert_eq!(sampler.z_origin, 184.48198875745823); + + for (x, y, z, sample) in expected_data { + let scale = 0.005; + let max_y = scale * 2f64; + let result = sampler.sample_no_fade( + x as f64 * scale, + y as f64 * scale, + z as f64 * scale, + scale, + max_y, + ); + assert_eq_delta!(result, sample, f64::EPSILON); + } + } + + #[test] + fn test_precision() { + let values = [ + 2.5E-4, + 1.25E-4, + 6.25E-5, + 3.125E-5, + 1.5625E-5, + 7.8125E-6, + 3.90625E-6, + 1.953125E-6, + 9.765625E-7, + 4.8828125E-7, + 2.44140625E-7, + 1.220703125E-7, + 6.103515625E-8, + 3.0517578125E-8, + 1.52587890625E-8, + 7.62939453125E-9, + 3.814697265625E-9, + 1.9073486328125E-9, + 9.5367431640625E-10, + 4.76837158203125E-10, + 2.384185791015625E-10, + 1.1920928955078125E-10, + 5.960464477539063E-11, + 2.980232238769531E-11, + 1.4901161193847657E-11, + 7.450580596923828E-12, + 3.725290298461914E-12, + 1.862645149230957E-12, + 9.313225746154785E-13, + ]; + let mut value_iter = values.iter(); + + for x in 1..20 { + let mut f = 0.0005f64; + for _ in 0..x { + f /= 2f64; + } + let value = OctavePerlinNoiseSampler::maintain_precision(f); + assert_eq!(value, *value_iter.next().unwrap()); + } + } + + #[test] + fn test_calculate_amplitudes() { + let (first, amplitudes) = + OctavePerlinNoiseSampler::calculate_amplitudes(&(-15..=0).collect::>()); + + assert_eq!(first, -15); + assert_eq!( + amplitudes, + [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + ); + } + + #[test] + fn test_map() { + let expected_data: Vec = read_data_from_file!("../../../assets/perlin_map.json"); + let mut expected_iter = expected_data.iter(); + + let mut rand = Xoroshiro::from_seed(0); + let splitter = rand.next_splitter(); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + assert_eq!(rand.next_i32(), 1374487555); + let mut rand = RandomGenerator::Xoroshiro(splitter.split_string("minecraft:terrain")); + + let (first, amplitudes) = + OctavePerlinNoiseSampler::calculate_amplitudes(&(-15..=0).collect::>()); + let sampler = OctavePerlinNoiseSampler::new(&mut rand, first, &litudes, true); + let sampler = sampler.get_octave(0).unwrap(); + + for x in -512..512 { + let y = sampler.map(x); + assert_eq!(y, *expected_iter.next().unwrap()); + } + } } diff --git a/pumpkin-world/src/world_gen/noise/router.rs b/pumpkin-world/src/world_gen/noise/router.rs index 92be5d555..189556943 100644 --- a/pumpkin-world/src/world_gen/noise/router.rs +++ b/pumpkin-world/src/world_gen/noise/router.rs @@ -1,293 +1,390 @@ use std::sync::Arc; -use crate::world_gen::sampler::VeinType; +use lazy_static::lazy_static; + +use crate::world_gen::{ + noise::density::{ + apply_blend_density, + basic::RangeFunction, + built_in_density_function::{ + CAVES_ENTRANCES_OVERWORLD, CAVES_NOODLE_OVERWORLD, CONTINENTS_OVERWORLD, + CONTINENTS_OVERWORLD_LARGE_BIOME, EROSION_OVERWORLD, EROSION_OVERWORLD_LARGE_BIOME, + RIDGES_OVERWORLD, Y, + }, + vertical_range_choice, + }, + ore_sampler::vein_type, +}; use super::{ + built_in_noise_params, density::{ - apply_blend_density, lerp_density_static_start, + basic::{ConstantFunction, WrapperFunction, WrapperType, YClampedFunction}, + built_in_density_function::{ + CAVES_PILLARS_OVERWORLD, CAVES_SPAGHETTI_2D_OVERWORLD, + CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD, DEPTH_OVERWORLD, + DEPTH_OVERWORLD_AMPLIFIED, DEPTH_OVERWORLD_LARGE_BIOME, FACTOR_OVERWORLD, + FACTOR_OVERWORLD_AMPLIFIED, FACTOR_OVERWORLD_LARGE_BIOME, SHIFT_X, SHIFT_Z, + SLOPED_CHEESE_OVERWORLD, SLOPED_CHEESE_OVERWORLD_AMPLIFIED, + SLOPED_CHEESE_OVERWORLD_LARGE_BIOME, ZERO, + }, + component_functions::{ + ComponentReference, ComponentReferenceMap, ComponentReferenceMath, ConverterImpl, + DensityFunctionEnvironment, NoEnvironment, SharedComponentReference, + }, + lerp_density_static_start, noise::{InternalNoise, NoiseFunction, ShiftedNoiseFunction}, - veritcal_range_choice, BuiltInNoiseFunctions, ConstantFunction, DensityFunction, - DensityFunctionImpl, RangeFunction, Visitor, WrapperFunction, WrapperType, - YClampedFunction, }, - BuiltInNoiseParams, }; -#[derive(Clone)] -pub struct NoiseRouter<'a> { - barrier: Arc>, - fluid_level_floodedness: Arc>, - fluid_level_spread: Arc>, - lava: Arc>, - temperature: Arc>, - vegetation: Arc>, - continents: Arc>, - erosion: Arc>, - depth: Arc>, - ridges: Arc>, - pub(crate) internal_density: Arc>, - pub(crate) final_densitiy: Arc>, - vein_toggle: Arc>, - vein_ridged: Arc>, - vein_gap: Arc>, +lazy_static! { + pub static ref OVERWORLD_NOISE_ROUTER: BaseRouter = + BaseRouter::create_surface_noise_router(false, false); + pub static ref OVERWORLD_NOISE_ROUTER_LARGE: BaseRouter = + BaseRouter::create_surface_noise_router(true, false); + pub static ref OVERWORLD_NOISE_ROUTER_AMPLIFIED: BaseRouter = + BaseRouter::create_surface_noise_router(false, true); } -impl<'a> NoiseRouter<'a> { - pub fn apply(&self, visitor: &Visitor<'a>) -> Self { - Self { - barrier: self.barrier.apply(visitor), - fluid_level_floodedness: self.fluid_level_floodedness.apply(visitor), - fluid_level_spread: self.fluid_level_spread.apply(visitor), - lava: self.lava.apply(visitor), - temperature: self.temperature.apply(visitor), - vegetation: self.vegetation.apply(visitor), - continents: self.continents.apply(visitor), - erosion: self.erosion.apply(visitor), - depth: self.depth.apply(visitor), - ridges: self.ridges.apply(visitor), - internal_density: self.internal_density.apply(visitor), - final_densitiy: self.final_densitiy.apply(visitor), - vein_toggle: self.vein_toggle.apply(visitor), - vein_ridged: self.vein_ridged.apply(visitor), - vein_gap: self.vein_gap.apply(visitor), +pub struct BaseRouter { + pub(crate) barrier: SharedComponentReference, + pub(crate) fluid_level_floodedness: SharedComponentReference, + pub(crate) fluid_level_spread: SharedComponentReference, + pub(crate) lava: SharedComponentReference, + pub(crate) temperature: SharedComponentReference, + pub(crate) vegetation: SharedComponentReference, + pub(crate) continents: SharedComponentReference, + pub(crate) erosion: SharedComponentReference, + pub(crate) depth: SharedComponentReference, + pub(crate) ridges: SharedComponentReference, + pub(crate) internal_density: SharedComponentReference, + pub(crate) final_density: SharedComponentReference, + pub(crate) vein_toggle: SharedComponentReference, + pub(crate) vein_ridged: SharedComponentReference, + pub(crate) vein_gap: SharedComponentReference, +} + +// TODO: This is double indirection... can we do something about that? +pub struct NoiseRouter { + pub(crate) barrier: Box>, + pub(crate) fluid_level_floodedness: Box>, + pub(crate) fluid_level_spread: Box>, + pub(crate) lava: Box>, + pub(crate) temperature: Box>, + pub(crate) vegetation: Box>, + pub(crate) continents: Box>, + pub(crate) erosion: Box>, + pub(crate) depth: Box>, + pub(crate) ridges: Box>, + pub(crate) internal_density: Box>, + pub(crate) final_density: Box>, + pub(crate) vein_toggle: Box>, + pub(crate) vein_ridged: Box>, + pub(crate) vein_gap: Box>, +} + +impl BaseRouter { + pub fn convert_assert_shared( + &self, + converter: &mut dyn ConverterImpl, + ) -> BaseRouter { + BaseRouter { + barrier: self.barrier.clone().convert(converter).assert_shared(), + fluid_level_floodedness: self + .fluid_level_floodedness + .clone() + .convert(converter) + .assert_shared(), + fluid_level_spread: self + .fluid_level_spread + .clone() + .convert(converter) + .assert_shared(), + lava: self.lava.clone().convert(converter).assert_shared(), + temperature: self.temperature.clone().convert(converter).assert_shared(), + vegetation: self.vegetation.clone().convert(converter).assert_shared(), + continents: self.continents.clone().convert(converter).assert_shared(), + erosion: self.erosion.clone().convert(converter).assert_shared(), + depth: self.depth.clone().convert(converter).assert_shared(), + ridges: self.ridges.clone().convert(converter).assert_shared(), + internal_density: self + .internal_density + .clone() + .convert(converter) + .assert_shared(), + final_density: self + .final_density + .clone() + .convert(converter) + .assert_shared(), + vein_toggle: self.vein_toggle.clone().convert(converter).assert_shared(), + vein_ridged: self.vein_ridged.clone().convert(converter).assert_shared(), + vein_gap: self.vein_gap.clone().convert(converter).assert_shared(), + } + } + + pub fn convert( + &self, + converter: &mut dyn ConverterImpl, + ) -> NoiseRouter { + NoiseRouter { + barrier: self.barrier.clone().convert(converter).boxed(), + fluid_level_floodedness: self + .fluid_level_floodedness + .clone() + .convert(converter) + .boxed(), + fluid_level_spread: self.fluid_level_spread.clone().convert(converter).boxed(), + lava: self.lava.clone().convert(converter).boxed(), + temperature: self.temperature.clone().convert(converter).boxed(), + vegetation: self.vegetation.clone().convert(converter).boxed(), + continents: self.continents.clone().convert(converter).boxed(), + erosion: self.erosion.clone().convert(converter).boxed(), + depth: self.depth.clone().convert(converter).boxed(), + ridges: self.ridges.clone().convert(converter).boxed(), + internal_density: self.internal_density.clone().convert(converter).boxed(), + final_density: self.final_density.clone().convert(converter).boxed(), + vein_toggle: self.vein_toggle.clone().convert(converter).boxed(), + vein_ridged: self.vein_ridged.clone().convert(converter).boxed(), + vein_gap: self.vein_gap.clone().convert(converter).boxed(), } } +} + +impl BaseRouter { + pub fn create_surface_noise_router(large_biomes: bool, amplified: bool) -> Self { + #[cfg(debug_assertions)] + assert!(!(large_biomes && amplified)); - pub fn create_surface_noise_router( - noise_params: &'a BuiltInNoiseParams<'a>, - noise_funcs: &'a BuiltInNoiseFunctions<'a>, - large_biomes: bool, - amplified: bool, - ) -> Self { - let aquifier_barrier = Arc::new(DensityFunction::Noise(NoiseFunction::new( + let aquifier_barrier = NoiseFunction::new( Arc::new(InternalNoise::new( - noise_params.aquifer_barrier().clone(), + &built_in_noise_params::AQUIFER_BARRIER, None, )), 1f64, 0.5f64, - ))); + ); - let aquifier_fluid_level_floodedness = - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new( - noise_params.aquifer_fluid_level_floodedness().clone(), - None, - )), - 1f64, - 0.67f64, - ))); + let aquifier_fluid_level_floodedness = NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::AQUIFER_FLUID_LEVEL_FLOODEDNESS, + None, + )), + 1f64, + 0.67f64, + ); - let aquifer_fluid_level_spread = Arc::new(DensityFunction::Noise(NoiseFunction::new( + let aquifer_fluid_level_spread = NoiseFunction::new( Arc::new(InternalNoise::new( - noise_params.aquifer_fluid_level_spread().clone(), + &built_in_noise_params::AQUIFER_FLUID_LEVEL_SPREAD, None, )), 1f64, 0.7142857142857143f64, - ))); + ); - let aquifer_lava = Arc::new(DensityFunction::Noise(NoiseFunction::new( + let aquifer_lava = NoiseFunction::new( Arc::new(InternalNoise::new( - noise_params.aquifer_lava().clone(), + &built_in_noise_params::AQUIFER_LAVA, None, )), 1f64, 1f64, - ))); - - let shift_x = noise_funcs.shift_x().clone(); - let shift_z = noise_funcs.shift_z().clone(); + ); - let temperature = Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - noise_funcs.zero().clone(), - shift_z.clone(), + let temperature = ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, Arc::new(InternalNoise::new( if large_biomes { - noise_params.temperature_large().clone() + &built_in_noise_params::TEMPERATURE_LARGE } else { - noise_params.temperature().clone() + &built_in_noise_params::TEMPERATURE }, None, )), - ))); + ); - let vegetation = Arc::new(DensityFunction::ShiftedNoise(ShiftedNoiseFunction::new( - shift_x.clone(), - noise_funcs.zero().clone(), - shift_z.clone(), + let vegetation = ShiftedNoiseFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + SHIFT_X.clone(), + ZERO.clone(), + SHIFT_Z.clone(), 0.25f64, 0f64, Arc::new(InternalNoise::new( if large_biomes { - noise_params.vegetation_large().clone() + &built_in_noise_params::VEGETATION_LARGE } else { - noise_params.vegetation().clone() + &built_in_noise_params::VEGETATION }, None, )), - ))); + ); let factor_overworld = if large_biomes { - noise_funcs.factor_overworld_large_biome().clone() + FACTOR_OVERWORLD_LARGE_BIOME.clone() } else if amplified { - noise_funcs.factor_overworld_amplified().clone() + FACTOR_OVERWORLD_AMPLIFIED.clone() } else { - noise_funcs.factor_overworld().clone() + FACTOR_OVERWORLD.clone() }; let depth_overworld = if large_biomes { - noise_funcs.depth_overworld_large_biome().clone() + DEPTH_OVERWORLD_LARGE_BIOME.clone() } else if amplified { - noise_funcs.depth_overworld_amplified().clone() + DEPTH_OVERWORLD_AMPLIFIED.clone() } else { - noise_funcs.depth_overworld().clone() + DEPTH_OVERWORLD.clone() }; - let mapped_depth_overworld = Arc::new( - DensityFunction::Constant(ConstantFunction::new(4f64)).mul(Arc::new( - depth_overworld - .mul(Arc::new(DensityFunction::Wrapper(WrapperFunction::new( + let mapped_depth_overworld = ConstantFunction::new(4f64).mul( + depth_overworld + .clone() + .mul( + WrapperFunction::::new( factor_overworld, WrapperType::Cache2D, - )))) - .quarter_negative(), - )), + ) + .into(), + ) + .quarter_negative(), ); let sloped_cheese_overworld = if large_biomes { - noise_funcs.sloped_cheese_overworld_large_biome().clone() + SLOPED_CHEESE_OVERWORLD_LARGE_BIOME.clone() } else if amplified { - noise_funcs.sloped_cheese_overworld_amplified().clone() + SLOPED_CHEESE_OVERWORLD_AMPLIFIED.clone() } else { - noise_funcs.sloped_cheese_overworld().clone() + SLOPED_CHEESE_OVERWORLD.clone() }; - let cave_entrances_overworld = Arc::new( - sloped_cheese_overworld.binary_min(Arc::new( - DensityFunction::Constant(ConstantFunction::new(5f64)) - .mul(noise_funcs.caves_entrances_overworld().clone()), - )), - ); + let cave_entrances_overworld = sloped_cheese_overworld + .clone() + .min(ConstantFunction::new(5f64).mul(CAVES_ENTRANCES_OVERWORLD.clone())); - let mapped_cave_entraces_overworld = Arc::new(DensityFunction::Range(RangeFunction::new( + let mapped_cave_entraces_overworld = RangeFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( sloped_cheese_overworld.clone(), -1000000f64, 1.5625f64, cave_entrances_overworld, - Arc::new(create_caves( - noise_funcs, - noise_params, - sloped_cheese_overworld, - )), - ))); - - let blended_cave_entrances_overworld = Arc::new( - apply_blend_density(apply_surface_slides( - amplified, - mapped_cave_entraces_overworld, - )) - .binary_min(noise_funcs.caves_noodle_overworld().clone()), + create_caves(sloped_cheese_overworld), ); - let y = noise_funcs.y().clone(); - let i = VeinType::overall_min_y(); - let j = VeinType::overall_max_y(); - let ore_veininess = Arc::new(veritcal_range_choice( - y.clone(), - Arc::new(DensityFunction::Noise(NoiseFunction::new( + let blended_cave_entrances_overworld = apply_blend_density(apply_surface_slides( + amplified, + mapped_cave_entraces_overworld.into(), + )) + .min(CAVES_NOODLE_OVERWORLD.clone()); + + let i = *vein_type::MIN_Y; + let j = *vein_type::MAX_Y; + let ore_veininess = vertical_range_choice( + Y.clone(), + NoiseFunction::new( Arc::new(InternalNoise::new( - noise_params.ore_veininess().clone(), + &built_in_noise_params::ORE_VEININESS, None, )), 1.5f64, 1.5f64, - ))), + ) + .into(), i, j, 0, - )); - - let ore_vein_a = Arc::new( - veritcal_range_choice( - y.clone(), - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise_params.ore_vein_a().clone(), None)), - 4f64, - 4f64, - ))), - i, - j, - 0, - ) - .abs(), ); - let ore_vein_b = Arc::new( - veritcal_range_choice( - y, - Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise_params.ore_vein_b().clone(), None)), - 4f64, - 4f64, - ))), - i, - j, - 0, + let ore_vein_a = vertical_range_choice( + Y.clone(), + NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::ORE_VEIN_A, None)), + 4f64, + 4f64, ) - .abs(), - ); + .into(), + i, + j, + 0, + ) + .abs(); - let ore_vein = Arc::new( - DensityFunction::Constant(ConstantFunction::new(-0.08f64)) - .add(Arc::new(ore_vein_a.binary_max(ore_vein_b))), - ); + let ore_vein_b = vertical_range_choice( + Y.clone(), + NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::ORE_VEIN_B, None)), + 4f64, + 4f64, + ) + .into(), + i, + j, + 0, + ) + .abs(); + + let ore_vein = ConstantFunction::new(-0.08f32 as f64).add(ore_vein_a.max(ore_vein_b)); - let ore_gap = Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise_params.ore_gap().clone(), None)), + let ore_gap = NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::ORE_GAP, None)), 1f64, 1f64, - ))); + ); Self { - barrier: aquifier_barrier, - fluid_level_floodedness: aquifier_fluid_level_floodedness, - fluid_level_spread: aquifer_fluid_level_spread, - lava: aquifer_lava, - temperature, - vegetation, + barrier: aquifier_barrier.into(), + fluid_level_floodedness: aquifier_fluid_level_floodedness.into(), + fluid_level_spread: aquifer_fluid_level_spread.into(), + lava: aquifer_lava.into(), + temperature: temperature.into(), + vegetation: vegetation.into(), continents: if large_biomes { - noise_funcs.continents_overworld_large_biome().clone() + CONTINENTS_OVERWORLD_LARGE_BIOME.clone() } else { - noise_funcs.continents_overworld().clone() + CONTINENTS_OVERWORLD.clone() }, erosion: if large_biomes { - noise_funcs.erosion_overworld_large_biome().clone() + EROSION_OVERWORLD_LARGE_BIOME.clone() } else { - noise_funcs.erosion_overworld().clone() + EROSION_OVERWORLD.clone() }, depth: depth_overworld, - ridges: noise_funcs.ridges_overworld().clone(), - internal_density: Arc::new(apply_surface_slides( + ridges: RIDGES_OVERWORLD.clone(), + internal_density: apply_surface_slides( amplified, - Arc::new( - mapped_depth_overworld - .add_const(-0.703125) - .clamp(-64f64, 64f64), - ), - )), - final_densitiy: blended_cave_entrances_overworld, + mapped_depth_overworld + .add_const(-0.703125f64) + .clamp(-64f64, 64f64), + ), + final_density: blended_cave_entrances_overworld, vein_toggle: ore_veininess, vein_ridged: ore_vein, - vein_gap: ore_gap, + vein_gap: ore_gap.into(), } } } -fn apply_surface_slides(amplified: bool, density: Arc) -> DensityFunction { +fn apply_surface_slides( + amplified: bool, + density: SharedComponentReference, +) -> SharedComponentReference { apply_slides( density, -64, @@ -303,7 +400,7 @@ fn apply_surface_slides(amplified: bool, density: Arc) -> Densi #[allow(clippy::too_many_arguments)] fn apply_slides( - density: Arc, + density: SharedComponentReference, y_min: i32, y_max: i32, top_rel_y_min: i32, @@ -312,71 +409,392 @@ fn apply_slides( bottom_rel_y_min: i32, bottom_rel_y_max: i32, bottom_density: f64, -) -> DensityFunction { - let function2 = Arc::new(DensityFunction::ClampedY(YClampedFunction::new( +) -> SharedComponentReference { + let function2 = YClampedFunction::new( y_min + y_max - top_rel_y_min, - y_min + y_max + -top_rel_y_max, + y_min + y_max - top_rel_y_max, 1f64, 0f64, - ))); - let function = Arc::new(lerp_density_static_start(function2, top_density, density)); - let function3 = Arc::new(DensityFunction::ClampedY(YClampedFunction::new( + ); + let function = lerp_density_static_start(function2.into(), top_density, density); + let function3 = YClampedFunction::new( y_min + bottom_rel_y_min, y_min + bottom_rel_y_max, 0f64, 1f64, - ))); - lerp_density_static_start(function3, bottom_density, function) + ); + lerp_density_static_start(function3.into(), bottom_density, function) } -fn create_caves<'a>( - noise_funcs: &BuiltInNoiseFunctions<'a>, - noise_params: &BuiltInNoiseParams<'a>, - sloped_cheese: Arc>, -) -> DensityFunction<'a> { - let caves_spaghetti_2d = noise_funcs.caves_spaghetti_2d_overworld().clone(); - let caves_spaghetti_roughness = noise_funcs - .caves_spaghetti_roughness_function_overworld() - .clone(); - let cave_layer = Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise_params.cave_layer().clone(), None)), +fn create_caves(sloped_cheese: SharedComponentReference) -> SharedComponentReference { + let cave_layer = NoiseFunction::new( + Arc::new(InternalNoise::new(&built_in_noise_params::CAVE_LAYER, None)), 1f64, 8f64, - ))); - let scaled_cave_layer = Arc::new( - DensityFunction::Constant(ConstantFunction::new(4f64)).mul(Arc::new(cave_layer.square())), ); - let cave_cheese = Arc::new(DensityFunction::Noise(NoiseFunction::new( - Arc::new(InternalNoise::new(noise_params.cave_cheese().clone(), None)), + let scaled_cave_layer = ConstantFunction::new(4f64).mul(cave_layer.square()); + let cave_cheese = NoiseFunction::new( + Arc::new(InternalNoise::new( + &built_in_noise_params::CAVE_CHEESE, + None, + )), 1f64, 0.6666666666666666f64, - ))); - let scaled_cave_cheese = Arc::new( - DensityFunction::Constant(ConstantFunction::new(0.27f64)) - .add(cave_cheese) - .clamp(-1f64, 1f64) - .add(Arc::new( - DensityFunction::Constant(ConstantFunction::new(1.5f64)) - .add(Arc::new( - DensityFunction::Constant(ConstantFunction::new(-0.64f64)) - .mul(sloped_cheese), - )) - .clamp(0f64, 0.5f64), - )), ); - let final_cave_layer = Arc::new(scaled_cave_layer.add(scaled_cave_cheese)); - let cave_entrances = final_cave_layer - .binary_min(noise_funcs.caves_entrances_overworld().clone()) - .binary_min(Arc::new(caves_spaghetti_2d.add(caves_spaghetti_roughness))); - let pillars = noise_funcs.caves_pillars_overworld().clone(); - let scaled_pillars = Arc::new(DensityFunction::Range(RangeFunction::new( - pillars.clone(), + let scaled_cave_cheese = ConstantFunction::new(0.27f64) + .add(cave_cheese.into()) + .clamp(-1f64, 1f64) + .add( + ConstantFunction::new(1.5f64) + .add(ConstantFunction::new(-0.64f64).mul(sloped_cheese)) + .clamp(0f64, 0.5f64), + ); + let final_cave_layer = scaled_cave_layer.add(scaled_cave_cheese); + let cave_entrances = final_cave_layer.min(CAVES_ENTRANCES_OVERWORLD.clone()).min( + CAVES_SPAGHETTI_2D_OVERWORLD + .clone() + .add(CAVES_SPAGHETTI_ROUGHNESS_FUNCTION_OVERWORLD.clone()), + ); + let scaled_pillars = RangeFunction::< + NoEnvironment, + SharedComponentReference, + SharedComponentReference, + SharedComponentReference, + >::new( + CAVES_PILLARS_OVERWORLD.clone(), -1000000f64, 0.03f64, - Arc::new(DensityFunction::Constant(ConstantFunction::new( - -1000000f64, - ))), - pillars, - ))); - cave_entrances.binary_max(scaled_pillars) + ConstantFunction::new(-1000000f64).into(), + CAVES_PILLARS_OVERWORLD.clone(), + ); + cave_entrances.max(scaled_pillars.into()) +} + +#[cfg(test)] +mod test { + use std::{fs, path::Path, sync::Arc}; + + use pumpkin_core::{ + assert_eq_delta, + random::{legacy_rand::LegacyRand, xoroshiro128::Xoroshiro, RandomDeriver, RandomImpl}, + }; + + use crate::{ + read_data_from_file, + world_gen::noise::{ + config::LegacyChunkNoiseVisitor, + density::{ + built_in_density_function::{EROSION_OVERWORLD, SLOPED_CHEESE_OVERWORLD}, + component_functions::{ + ComponentReference, ComponentReferenceImplementation, ConversionResultPre, + ConverterEnvironment, ConverterImpl, NoEnvironment, OwnedConverterEnvironment, + }, + noise::InternalNoise, + NoisePos, UnblendedNoisePos, + }, + perlin::DoublePerlinNoiseSampler, + router::OVERWORLD_NOISE_ROUTER, + }, + }; + + use super::{apply_surface_slides, create_caves}; + + pub struct TestConverter { + pub splitter: RandomDeriver, + } + + impl ConverterImpl for TestConverter { + fn convert_noise(&mut self, noise: &Arc) -> Option> { + let id = noise.parameters.id(); + let mut rand = self.splitter.split_string(id); + let sampler = DoublePerlinNoiseSampler::new(&mut rand, noise.parameters, false); + + Some(Arc::new(InternalNoise::new( + noise.parameters, + Some(sampler), + ))) + } + + fn convert_env_pre_internal( + &mut self, + _component: ConverterEnvironment, + ) -> ConversionResultPre { + ConversionResultPre::Default + } + + fn converts_post_internal( + &mut self, + _component: ConverterEnvironment, + ) -> bool { + false + } + + fn convert_env_post_internal( + &mut self, + _component: OwnedConverterEnvironment, + ) -> ComponentReferenceImplementation { + unreachable!() + } + } + + #[test] + fn test_apply_surface_slides() { + let mut rand = LegacyRand::from_seed(0); + let splitter = rand.next_splitter(); + let mut converter = TestConverter { + splitter: RandomDeriver::Legacy(splitter), + }; + let converted_func = EROSION_OVERWORLD + .clone() + .convert(&mut converter) + .assert_shared(); + + let values = [ + ((-1000, -1000), -0.30208879996359317f64), + ((-1000, -800), -0.1076130122697041f64), + ((-1000, -600), 0.05906607850421469f64), + ((-1000, -400), 0.24726986724384714f64), + ((-1000, -200), 0.2706794457383526f64), + ((-1000, 0), 0.2697306747800193f64), + ((-1000, 200), 0.21391910117663293f64), + ((-1000, 400), 0.18535143299569468f64), + ((-1000, 600), 0.1294413488921486f64), + ((-1000, 800), 0.061580256900142794f64), + ((-1000, 1000), 0.12530753721310528f64), + ((-800, -1000), -0.26334816753858103f64), + ((-800, -800), -0.020687744964915544f64), + ((-800, -600), 0.023225727811309105f64), + ((-800, -400), 0.07746776104719977f64), + ((-800, -200), 0.09992470719841956f64), + ((-800, 0), 0.1146551050894824f64), + ((-800, 200), 0.06564485641223794f64), + ((-800, 400), 0.08848851954273917f64), + ((-800, 600), 0.056160953033021266f64), + ((-800, 800), 0.011045253253628817f64), + ((-800, 1000), 0.015198372445202502f64), + ((-600, -1000), -0.16525687371490894f64), + ((-600, -800), 0.05293810125583154f64), + ((-600, -600), 0.17475689197213684f64), + ((-600, -400), 0.16103184321844596f64), + ((-600, -200), 0.04702586800266029f64), + ((-600, 0), 0.008498755101605193f64), + ((-600, 200), -0.05632912234656379f64), + ((-600, 400), -0.03331984537443711f64), + ((-600, 600), -0.15304483622814935f64), + ((-600, 800), -0.10634904956802882f64), + ((-600, 1000), -0.10145702807865031f64), + ((-400, -1000), 0.014509904002985907f64), + ((-400, -800), 0.1617721780377955f64), + ((-400, -600), 0.1538795562844772f64), + ((-400, -400), 0.09291099527948621f64), + ((-400, -200), 0.016032945505656093f64), + ((-400, 0), -0.12944528371858455f64), + ((-400, 200), -0.22407726246974746f64), + ((-400, 400), -0.18164279264712324f64), + ((-400, 600), -0.15374226930846258f64), + ((-400, 800), -0.14225372340399312f64), + ((-400, 1000), -0.1707662008691604f64), + ((-200, -1000), 0.1737449324031909f64), + ((-200, -800), 0.15588767399915038f64), + ((-200, -600), 0.09807388580637255f64), + ((-200, -400), 0.04134584798831298f64), + ((-200, -200), 0.07633793620513718f64), + ((-200, 0), -0.16636855652213256f64), + ((-200, 200), -0.13472373172620833f64), + ((-200, 400), -0.22022531422260827f64), + ((-200, 600), -0.1733817125721101f64), + ((-200, 800), -0.25850640558184435f64), + ((-200, 1000), -0.3016979165025152f64), + ((0, -1000), 0.251814304135237f64), + ((0, -800), 0.13332966941629143f64), + ((0, -600), 0.10348476729023426f64), + ((0, -400), 0.05536479756994106f64), + ((0, -200), -0.01381233701693424f64), + ((0, 0), -0.19098385460723655f64), + ((0, 200), -0.2404237434218891f64), + ((0, 400), -0.2610517555168873f64), + ((0, 600), -0.2903199404423026f64), + ((0, 800), -0.3374524245257239f64), + ((0, 1000), -0.46305810978001316f64), + ((200, -1000), 0.28709965377682267f64), + ((200, -800), 0.19268673409560028f64), + ((200, -600), 0.0041189472733734744f64), + ((200, -400), -0.047481063682935865f64), + ((200, -200), -0.17715255198738433f64), + ((200, 0), -0.2656740328018877f64), + ((200, 200), -0.38846940763264115f64), + ((200, 400), -0.3771208707257109f64), + ((200, 600), -0.42164320098305474f64), + ((200, 800), -0.45957304404559196f64), + ((200, 1000), -0.3886247688972352f64), + ((400, -1000), 0.2946831456942509f64), + ((400, -800), 0.15366391689596104f64), + ((400, -600), -0.03683895527138398f64), + ((400, -400), -0.12286969762482891f64), + ((400, -200), -0.279692934897965f64), + ((400, 0), -0.3299116026613176f64), + ((400, 200), -0.4397636078519035f64), + ((400, 400), -0.5016687095505773f64), + ((400, 600), -0.4593088249355858f64), + ((400, 800), -0.4120918663615397f64), + ((400, 1000), -0.33349227727910835f64), + ((600, -1000), 0.22507430288840974f64), + ((600, -800), 0.11690723489828847f64), + ((600, -600), -0.07736959302795038f64), + ((600, -400), -0.3103436858126015f64), + ((600, -200), -0.4646135074970098f64), + ((600, 0), -0.42802179309528376f64), + ((600, 200), -0.5031234101517712f64), + ((600, 400), -0.43980110641169434f64), + ((600, 600), -0.418150522213239f64), + ((600, 800), -0.2858012217898377f64), + ((600, 1000), -0.2078009597778817f64), + ((800, -1000), 0.02646235055281687f64), + ((800, -800), -0.0025711457048024355f64), + ((800, -600), -0.22091967015314884f64), + ((800, -400), -0.36062363978247114f64), + ((800, -200), -0.5267644629903612f64), + ((800, 0), -0.5221952728781099f64), + ((800, 200), -0.5583524962468077f64), + ((800, 400), -0.6064703416700034f64), + ((800, 600), -0.42124877767264723f64), + ((800, 800), -0.41023710661537083f64), + ((800, 1000), -0.31011231029109043f64), + ((1000, -1000), -0.13246158771459038f64), + ((1000, -800), -0.21539115619228733f64), + ((1000, -600), -0.2583347168279443f64), + ((1000, -400), -0.3998592325985889f64), + ((1000, -200), -0.5387601014248653f64), + ((1000, 0), -0.5666190345839045f64), + ((1000, 200), -0.6213722075094567f64), + ((1000, 400), -0.671739773000314f64), + ((1000, 600), -0.6238217558734026f64), + ((1000, 800), -0.49441693548204757f64), + ((1000, 1000), -0.3843933568068797f64), + ]; + let amplified = apply_surface_slides(true, converted_func); + for ((x, z), value) in values { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(x, 60, z)); + assert_eq!(amplified.sample(pos), value); + } + } + + #[test] + fn test_normal_surface_functions() { + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 0, 0)); + assert_eq!(OVERWORLD_NOISE_ROUTER.barrier.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.fluid_level_floodedness.sample(pos), + 0f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.fluid_level_spread.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.lava.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.temperature.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.vegetation.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.continents.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.erosion.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.depth.sample(pos), + 0.3962499722838402f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.ridges.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.internal_density.sample(pos), + 8.093466727565826f64 + ); + assert_eq!( + OVERWORLD_NOISE_ROUTER.final_density.sample(pos), + -0.07500000000000001f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_toggle.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.vein_ridged.sample(pos), + -0.07999999821186066f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_gap.sample(pos), 0f64); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 60, 0)); + assert_eq!(OVERWORLD_NOISE_ROUTER.barrier.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.fluid_level_floodedness.sample(pos), + 0f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.fluid_level_spread.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.lava.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.temperature.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.vegetation.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.continents.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.erosion.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.depth.sample(pos), + -0.07250002771615982f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.ridges.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.internal_density.sample(pos), + -1.105492942375168f64 + ); + assert_eq!( + OVERWORLD_NOISE_ROUTER.final_density.sample(pos), + -0.15607060320915436f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_toggle.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.vein_ridged.sample(pos), + -0.07999999821186066f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_gap.sample(pos), 0f64); + + let pos = &NoisePos::Unblended(UnblendedNoisePos::new(0, 120, 0)); + assert_eq!(OVERWORLD_NOISE_ROUTER.barrier.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.fluid_level_floodedness.sample(pos), + 0f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.fluid_level_spread.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.lava.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.temperature.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.vegetation.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.continents.sample(pos), 0f64); + assert_eq!(OVERWORLD_NOISE_ROUTER.erosion.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.depth.sample(pos), + -0.5412500277161598f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.ridges.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.internal_density.sample(pos), + -3.7070088166417925f64 + ); + assert_eq!( + OVERWORLD_NOISE_ROUTER.final_density.sample(pos), + -0.4583333333333333f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_toggle.sample(pos), 0f64); + assert_eq!( + OVERWORLD_NOISE_ROUTER.vein_ridged.sample(pos), + -0.07999999821186066f64 + ); + assert_eq!(OVERWORLD_NOISE_ROUTER.vein_gap.sample(pos), 0f64); + } + + #[test] + fn test_converted_cave() { + let mut rand = Xoroshiro::from_seed(0); + let mut converter = + LegacyChunkNoiseVisitor::new(RandomDeriver::Xoroshiro(rand.next_splitter()), 0); + + let expected_data: Vec<(i32, i32, i32, f64)> = + read_data_from_file!("../../../assets/converted_cave_7_4.json"); + + let function = create_caves(SLOPED_CHEESE_OVERWORLD.clone()) + .maybe_convert(&mut converter) + .unwrap() + .assert_shared(); + + for (x, y, z, sample) in expected_data { + let pos = NoisePos::Unblended(UnblendedNoisePos::new(x, y, z)); + assert_eq_delta!(function.sample(&pos), sample, f64::EPSILON); + } + } } diff --git a/pumpkin-world/src/world_gen/noise/simplex.rs b/pumpkin-world/src/world_gen/noise/simplex.rs index 8310bc65f..ff9afd6ef 100644 --- a/pumpkin-world/src/world_gen/noise/simplex.rs +++ b/pumpkin-world/src/world_gen/noise/simplex.rs @@ -1,7 +1,9 @@ +use std::hash::Hash; + use num_traits::Pow; use pumpkin_core::random::{legacy_rand::LegacyRand, RandomImpl}; -use super::{dot, GRADIENTS}; +use super::GRADIENTS; #[derive(Clone)] pub struct SimplexNoiseSampler { @@ -11,6 +13,26 @@ pub struct SimplexNoiseSampler { z_origin: f64, } +impl PartialEq for SimplexNoiseSampler { + fn eq(&self, other: &Self) -> bool { + self.permutation == other.permutation + && self.x_origin.to_le_bytes() == other.x_origin.to_le_bytes() + && self.y_origin.to_le_bytes() == other.y_origin.to_le_bytes() + && self.z_origin.to_le_bytes() == other.z_origin.to_le_bytes() + } +} + +impl Eq for SimplexNoiseSampler {} + +impl Hash for SimplexNoiseSampler { + fn hash(&self, state: &mut H) { + self.permutation.hash(state); + self.x_origin.to_le_bytes().hash(state); + self.y_origin.to_le_bytes().hash(state); + self.z_origin.to_le_bytes().hash(state); + } +} + impl SimplexNoiseSampler { const SQRT_3: f64 = 1.7320508075688772f64; const SKEW_FACTOR_2D: f64 = 0.5f64 * (Self::SQRT_3 - 1f64); @@ -41,6 +63,7 @@ impl SimplexNoiseSampler { } } + #[inline] fn map(&self, input: i32) -> i32 { self.permutation[(input & 0xFF) as usize] as i32 } @@ -51,7 +74,7 @@ impl SimplexNoiseSampler { 0f64 } else { let d = d * d; - d * d * dot(&GRADIENTS[gradient_index], x, y, z) + d * d * GRADIENTS[gradient_index].dot(x, y, z) } } @@ -71,8 +94,8 @@ impl SimplexNoiseSampler { let n = h - l as f64 + Self::UNSKEW_FACTOR_2D; let o = k - m as f64 + Self::UNSKEW_FACTOR_2D; - let p = 2f64.mul_add(Self::UNSKEW_FACTOR_2D, h - 1f64); - let q = 2f64.mul_add(Self::UNSKEW_FACTOR_2D, k - 1f64); + let p = 2f64 * Self::UNSKEW_FACTOR_2D + (h - 1f64); + let q = 2f64 * Self::UNSKEW_FACTOR_2D + (k - 1f64); let r = i & 0xFF; let s = j & 0xFF; @@ -236,8 +259,8 @@ impl OctaveSimplexNoiseSampler { for sampler in self.octave_samplers.iter() { if let Some(sampler) = sampler { d += sampler.sample_2d( - x.mul_add(e, if use_origin { sampler.x_origin } else { 0f64 }), - y.mul_add(e, if use_origin { sampler.y_origin } else { 0f64 }), + x * e + if use_origin { sampler.x_origin } else { 0f64 }, + y * e + if use_origin { sampler.y_origin } else { 0f64 }, ) * f; } diff --git a/pumpkin-world/src/world_gen/ore_sampler.rs b/pumpkin-world/src/world_gen/ore_sampler.rs new file mode 100644 index 000000000..b381c4f64 --- /dev/null +++ b/pumpkin-world/src/world_gen/ore_sampler.rs @@ -0,0 +1,113 @@ +use pumpkin_core::random::RandomDeriver; + +use crate::block::BlockState; + +use super::{ + chunk_noise::ChunkNoiseState, + noise::{ + clamped_map, + density::{component_functions::ComponentReference, NoisePos, NoisePosImpl}, + }, +}; + +pub struct OreVeinSampler { + vein_toggle: Box>, + vein_ridged: Box>, + vein_gap: Box>, + random_deriver: RandomDeriver, +} + +impl OreVeinSampler { + pub fn new( + vein_toggle: Box>, + vein_ridged: Box>, + vein_gap: Box>, + random_deriver: RandomDeriver, + ) -> Self { + Self { + vein_toggle, + vein_ridged, + vein_gap, + random_deriver, + } + } +} + +impl OreVeinSampler { + pub fn sample(&mut self, pos: &NoisePos, state: &ChunkNoiseState) -> Option { + let vein_sample = self.vein_toggle.sample_mut(pos, state); + let vein_type: &VeinType = if vein_sample > 0f64 { + &vein_type::COPPER + } else { + &vein_type::IRON + }; + + let block_y = pos.y(); + let max_to_y = vein_type.max_y - block_y; + let y_to_min = block_y - vein_type.min_y; + if (max_to_y >= 0) && (y_to_min >= 0) { + let closest_to_bound = max_to_y.min(y_to_min); + let mapped_diff = clamped_map(closest_to_bound as f64, 0f64, 20f64, -0.2f64, 0f64); + let abs_sample = vein_sample.abs(); + if abs_sample + mapped_diff >= 0.4f32 as f64 { + let mut random = self.random_deriver.split_pos(pos.x(), block_y, pos.z()); + if random.next_f32() <= 0.7f32 && self.vein_ridged.sample_mut(pos, state) < 0f64 { + let clamped_sample = clamped_map( + abs_sample, + 0.4f32 as f64, + 0.6f32 as f64, + 0.1f32 as f64, + 0.3f32 as f64, + ); + + return if (random.next_f32() as f64) < clamped_sample + && self.vein_gap.sample_mut(pos, state) > (-0.3f32 as f64) + { + Some(if random.next_f32() < 0.02f32 { + vein_type.raw_ore + } else { + vein_type.ore + }) + } else { + Some(vein_type.stone) + }; + } + } + } + None + } +} + +pub struct VeinType { + ore: BlockState, + raw_ore: BlockState, + stone: BlockState, + min_y: i32, + max_y: i32, +} + +// One of the victims of removing compile time blocks +pub mod vein_type { + use lazy_static::lazy_static; + + use super::*; + + lazy_static! { + pub static ref COPPER: VeinType = VeinType { + ore: BlockState::new("copper_ore").unwrap(), + raw_ore: BlockState::new("raw_copper_block").unwrap(), + stone: BlockState::new("granite").unwrap(), + min_y: 0, + max_y: 50, + }; + pub static ref IRON: VeinType = VeinType { + ore: BlockState::new("deepslate_iron_ore").unwrap(), + raw_ore: BlockState::new("raw_iron_block").unwrap(), + stone: BlockState::new("tuff").unwrap(), + min_y: -60, + max_y: -8, + }; + pub static ref MIN_Y: i32 = IRON.min_y; + pub static ref MAX_Y: i32 = COPPER.max_y; + } +} diff --git a/pumpkin-world/src/world_gen/positions.rs b/pumpkin-world/src/world_gen/positions.rs index 4420c96d0..27d30467c 100644 --- a/pumpkin-world/src/world_gen/positions.rs +++ b/pumpkin-world/src/world_gen/positions.rs @@ -1,13 +1,46 @@ +use pumpkin_core::math::{floor_log2, smallest_encompassing_power_of_two}; + +pub mod block_pos { + use pumpkin_core::math::vector3::Vector3; + + use super::{ + BITS_X, BITS_Y, BITS_Z, BIT_SHIFT_X, BIT_SHIFT_Z, SIZE_BITS_X, SIZE_BITS_Y, SIZE_BITS_Z, + }; + + #[inline] + pub const fn unpack_x(packed: i64) -> i32 { + ((packed << (64 - BIT_SHIFT_X - SIZE_BITS_X)) >> (64 - SIZE_BITS_X)) as i32 + } + + #[inline] + pub const fn unpack_y(packed: i64) -> i32 { + ((packed << (64 - SIZE_BITS_Y)) >> (64 - SIZE_BITS_Y)) as i32 + } + + #[inline] + pub const fn unpack_z(packed: i64) -> i32 { + ((packed << (64 - BIT_SHIFT_Z - SIZE_BITS_Z)) >> (64 - SIZE_BITS_Z)) as i32 + } + + #[inline] + pub const fn packed(vec: &Vector3) -> i64 { + let mut result = 0i64; + // Need to go to i64 first to conserve sign + result |= (vec.x as i64 & BITS_X as i64) << BIT_SHIFT_X; + result |= (vec.z as i64 & BITS_Z as i64) << BIT_SHIFT_Z; + result |= vec.y as i64 & BITS_Y as i64; + result + } +} + pub mod chunk_pos { - use noise::Vector2; + use pumpkin_core::math::vector2::Vector2; - const MARKER: u64 = packed(Vector2 { - x: 1875066, - y: 1875066, - }); + // A chunk outside of normal bounds + pub const MARKER: u64 = packed(&Vector2::new(1875066, 1875066)); - pub const fn packed(vec: Vector2) -> u64 { - (vec.x as u64 & 4294967295u64) | ((vec.y as u64 & 4294967295u64) << 32) + pub const fn packed(vec: &Vector2) -> u64 { + (vec.x as u64 & 4294967295u64) | ((vec.z as u64 & 4294967295u64) << 32) } pub const fn unpack_x(packed: u64) -> i32 { @@ -18,11 +51,76 @@ pub mod chunk_pos { ((packed >> 32) & 4294967295u64) as i32 } - pub const fn start_x(vec: Vector2) -> i32 { + pub const fn start_block_x(vec: &Vector2) -> i32 { vec.x << 4 } - pub const fn start_y(vec: Vector2) -> i32 { - vec.y << 4 + pub const fn end_block_x(vec: &Vector2) -> i32 { + start_block_x(vec) + 15 + } + + pub const fn start_block_z(vec: &Vector2) -> i32 { + vec.z << 4 + } + + pub const fn end_block_z(vec: &Vector2) -> i32 { + start_block_z(vec) + 15 + } + + pub const fn to_chunk_pos(vec: &Vector2) -> Vector2 { + Vector2::new(vec.x >> 4, vec.z >> 4) + } +} + +const MAX_BLOCK_AXIS: u32 = 30000000; +const SIZE_BITS_X: u8 = 1 + floor_log2(smallest_encompassing_power_of_two(MAX_BLOCK_AXIS)); +const BITS_X: u64 = (1 << SIZE_BITS_X) - 1; +const SIZE_BITS_Z: u8 = SIZE_BITS_X; +const BITS_Z: u64 = (1 << SIZE_BITS_Z) - 1; +pub const SIZE_BITS_Y: u8 = 64 - SIZE_BITS_X - SIZE_BITS_Z; +const BITS_Y: u64 = (1 << SIZE_BITS_Y) - 1; +const BIT_SHIFT_Z: u8 = SIZE_BITS_Y; +const BIT_SHIFT_X: u8 = SIZE_BITS_Y + SIZE_BITS_Z; + +pub const MAX_HEIGHT: u32 = (1 << SIZE_BITS_Y) - 32; +pub const MAX_COLUMN_HEIGHT: u32 = (MAX_HEIGHT >> 1) - 1; +pub const MIN_HEIGHT: i32 = MAX_COLUMN_HEIGHT as i32 - MAX_HEIGHT as i32 + 1; +pub const MIN_HEIGHT_CELL: i32 = MIN_HEIGHT << 4; + +#[cfg(test)] +mod test { + use pumpkin_core::math::{vector2::Vector2, vector3::Vector3}; + + use super::{block_pos, chunk_pos}; + + #[test] + fn test_chunk_packing() { + let pos = Vector2::new(305135135, -1351513511); + let packed = chunk_pos::packed(&pos); + assert_eq!(packed as i64, -5804706329542001121i64); + assert_eq!(pos.x, chunk_pos::unpack_x(packed)); + assert_eq!(pos.z, chunk_pos::unpack_z(packed)); + } + + #[test] + fn test_block_packing() { + let pos = Vector3::new(-30000000, 120, 30000000); + let packed = block_pos::packed(&pos); + assert_eq!(packed, -8246337085439999880i64); + assert_eq!(pos.x, block_pos::unpack_x(packed)); + assert_eq!(pos.y, block_pos::unpack_y(packed)); + assert_eq!(pos.z, block_pos::unpack_z(packed)); + + for x in -10..=10 { + for y in -10..=10 { + for z in -10..=10 { + let pos = Vector3::new(x * 1000000, y * 10, z * 1000000); + let packed = block_pos::packed(&pos); + assert_eq!(pos.x, block_pos::unpack_x(packed)); + assert_eq!(pos.y, block_pos::unpack_y(packed)); + assert_eq!(pos.z, block_pos::unpack_z(packed)); + } + } + } } } diff --git a/pumpkin-world/src/world_gen/proto_chunk.rs b/pumpkin-world/src/world_gen/proto_chunk.rs index f4d5df67c..ba0918afa 100644 --- a/pumpkin-world/src/world_gen/proto_chunk.rs +++ b/pumpkin-world/src/world_gen/proto_chunk.rs @@ -1,13 +1,258 @@ -use pumpkin_core::math::vector3::Vector3; +use pumpkin_core::math::{vector2::Vector2, vector3::Vector3}; -use crate::block::block_state::BlockState; +use crate::{ + block::BlockState, + world_gen::{ + chunk_noise::CHUNK_DIM, + generation_shapes::GenerationShape, + noise::{config::NoiseConfig, router::OVERWORLD_NOISE_ROUTER}, + positions::chunk_pos, + }, +}; + +use super::{ + aquifer_sampler::{FluidLevel, FluidLevelSampler, FluidLevelSamplerImpl}, + chunk_noise::{ChunkNoiseGenerator, LAVA_BLOCK, STONE_BLOCK, WATER_BLOCK}, + positions::chunk_pos::{start_block_x, start_block_z}, +}; + +pub struct StandardChunkFluidLevelSampler { + top_fluid: FluidLevel, + bottom_fluid: FluidLevel, + bottom_y: i32, +} + +impl StandardChunkFluidLevelSampler { + pub fn new(top_fluid: FluidLevel, bottom_fluid: FluidLevel) -> Self { + let bottom_y = top_fluid + .max_y_exclusive() + .min(bottom_fluid.max_y_exclusive()); + Self { + top_fluid, + bottom_fluid, + bottom_y, + } + } +} + +impl FluidLevelSamplerImpl for StandardChunkFluidLevelSampler { + fn get_fluid_level(&self, _x: i32, y: i32, _z: i32) -> FluidLevel { + if y < self.bottom_y { + self.bottom_fluid.clone() + } else { + self.top_fluid.clone() + } + } +} pub struct ProtoChunk { + chunk_pos: Vector2, + sampler: ChunkNoiseGenerator, + // These are local positions + flat_block_map: Vec, // may want to use chunk status } impl ProtoChunk { - pub fn get_block_state(&self, _pos: &Vector3) -> BlockState { - unimplemented!() + pub fn new(chunk_pos: Vector2, seed: u64) -> Self { + // TODO: Don't hardcode these + + let base_router = &OVERWORLD_NOISE_ROUTER; + + let generation_shape = GenerationShape::SURFACE; + let config = NoiseConfig::new(seed, base_router); + + let horizontal_cell_count = CHUNK_DIM / generation_shape.horizontal_cell_block_count(); + + // TODO: Customize these + let sampler = FluidLevelSampler::Chunk(StandardChunkFluidLevelSampler::new( + FluidLevel::new(63, *WATER_BLOCK), + FluidLevel::new(-54, *LAVA_BLOCK), + )); + + let height = generation_shape.height() as usize; + let sampler = ChunkNoiseGenerator::new( + horizontal_cell_count, + chunk_pos::start_block_x(&chunk_pos), + chunk_pos::start_block_z(&chunk_pos), + generation_shape, + &config, + sampler, + true, + true, + ); + + Self { + chunk_pos, + sampler, + flat_block_map: vec![BlockState::AIR; CHUNK_DIM as usize * CHUNK_DIM as usize * height], + } + } + + #[inline] + fn local_pos_to_index(&self, local_pos: &Vector3) -> usize { + #[cfg(debug_assertions)] + { + assert!(local_pos.x >= 0 && local_pos.x <= 15); + assert!(local_pos.y < self.sampler.height() as i32 && local_pos.y >= 0); + assert!(local_pos.z >= 0 && local_pos.z <= 15); + } + self.sampler.height() as usize * CHUNK_DIM as usize * local_pos.x as usize + + CHUNK_DIM as usize * local_pos.y as usize + + local_pos.z as usize + } + + #[inline] + pub fn get_block_state(&self, local_pos: &Vector3) -> BlockState { + let local_pos = Vector3::new( + local_pos.x & 15, + local_pos.y - self.sampler.min_y() as i32, + local_pos.z & 15, + ); + if local_pos.y < 0 || local_pos.y >= self.sampler.height() as i32 { + BlockState::AIR + } else { + self.flat_block_map[self.local_pos_to_index(&local_pos)] + } + } + + pub fn populate_noise(&mut self) { + let horizontal_cell_block_count = self.sampler.horizontal_cell_block_count(); + let vertical_cell_block_count = self.sampler.vertical_cell_block_count(); + + let horizonal_cells = CHUNK_DIM / horizontal_cell_block_count; + + let min_y = self.sampler.min_y(); + let minimum_cell_y = min_y / vertical_cell_block_count as i8; + let cell_height = self.sampler.height() / vertical_cell_block_count as u16; + + // Safety + // + // Owned density functions are only invoked in `sampler.sample_block_state`: + // - Everything in this block is ran from the same thread + // - All unsafe functions are encapsulated and no mutable references are leaked + unsafe { + self.sampler.sample_start_density(); + for cell_x in 0..horizonal_cells { + self.sampler.sample_end_density(cell_x); + + for cell_z in 0..horizonal_cells { + for cell_y in (0..cell_height).rev() { + self.sampler.on_sampled_cell_corners(cell_y, cell_z); + for local_y in (0..vertical_cell_block_count).rev() { + let block_y = (minimum_cell_y as i32 + cell_y as i32) + * vertical_cell_block_count as i32 + + local_y as i32; + let delta_y = local_y as f64 / vertical_cell_block_count as f64; + self.sampler.interpolate_y(block_y, delta_y); + + for local_x in 0..horizontal_cell_block_count { + let block_x = self.start_block_x() + + cell_x as i32 * horizontal_cell_block_count as i32 + + local_x as i32; + let delta_x = local_x as f64 / horizontal_cell_block_count as f64; + self.sampler.interpolate_x(block_x, delta_x); + + for local_z in 0..horizontal_cell_block_count { + let block_z = self.start_block_z() + + cell_z as i32 * horizontal_cell_block_count as i32 + + local_z as i32; + let delta_z = + local_z as f64 / horizontal_cell_block_count as f64; + self.sampler.interpolate_z(block_z, delta_z); + + // TODO: Change default block + let block_state = + self.sampler.sample_block_state().unwrap_or(*STONE_BLOCK); + //log::debug!("Sampled block state in {:?}", inst.elapsed()); + + let local_pos = Vector3 { + x: block_x & 15, + y: block_y - min_y as i32, + z: block_z & 15, + }; + + #[cfg(debug_assertions)] + { + assert!(local_pos.x < 16 && local_pos.x >= 0); + assert!( + local_pos.y < self.sampler.height() as i32 + && local_pos.y >= 0 + ); + assert!(local_pos.z < 16 && local_pos.z >= 0); + } + let index = self.local_pos_to_index(&local_pos); + self.flat_block_map[index] = block_state; + } + } + } + } + } + + self.sampler.swap_buffers(); + } + } + self.sampler.stop_interpolation(); + } + + fn start_cell_x(&self) -> i32 { + self.start_block_x() / self.sampler.horizontal_cell_block_count() as i32 + } + + fn start_cell_z(&self) -> i32 { + self.start_block_z() / self.sampler.horizontal_cell_block_count() as i32 + } + + fn start_block_x(&self) -> i32 { + start_block_x(&self.chunk_pos) + } + + fn start_block_z(&self) -> i32 { + start_block_z(&self.chunk_pos) + } +} + +#[cfg(test)] +mod test { + use std::{fs, path::Path}; + + use itertools::Itertools; + use pumpkin_core::math::vector2::Vector2; + + use crate::read_data_from_file; + + use super::ProtoChunk; + + #[test] + fn test_no_blend_no_beard() { + let expected_data: Vec = + read_data_from_file!("../../assets/no_blend_no_beard_0_0.chunk"); + let mut chunk = ProtoChunk::new(Vector2::new(0, 0), 0); + chunk.populate_noise(); + assert_eq!( + expected_data, + chunk + .flat_block_map + .into_iter() + .map(|state| state.state_id) + .collect_vec() + ); + } + + #[test] + fn test_no_blend_no_beard_aquifer() { + let expected_data: Vec = + read_data_from_file!("../../assets/no_blend_no_beard_7_4.chunk"); + let mut chunk = ProtoChunk::new(Vector2::new(7, 4), 0); + chunk.populate_noise(); + + assert_eq!( + expected_data, + chunk + .flat_block_map + .into_iter() + .map(|state| state.state_id) + .collect_vec() + ); } } diff --git a/pumpkin-world/src/world_gen/sampler.rs b/pumpkin-world/src/world_gen/sampler.rs deleted file mode 100644 index 93d155a21..000000000 --- a/pumpkin-world/src/world_gen/sampler.rs +++ /dev/null @@ -1,28 +0,0 @@ -pub enum VeinType { - Copper, - Iron, -} - -impl VeinType { - pub fn min_y(&self) -> i32 { - match self { - Self::Copper => 0, - Self::Iron => -60, - } - } - - pub fn max_y(&self) -> i32 { - match self { - Self::Copper => 50, - Self::Iron => -8, - } - } - - pub fn overall_min_y() -> i32 { - -60 - } - - pub fn overall_max_y() -> i32 { - 60 - } -} diff --git a/pumpkin/src/command/commands/cmd_transfer.rs b/pumpkin/src/command/commands/cmd_transfer.rs index b73f2418b..1af9ae3c2 100644 --- a/pumpkin/src/command/commands/cmd_transfer.rs +++ b/pumpkin/src/command/commands/cmd_transfer.rs @@ -116,6 +116,7 @@ impl CommandExecutor for TransferTargetPlayer { } } +#[allow(clippy::redundant_closure_for_method_calls)] pub fn init_command_tree<'a>() -> CommandTree<'a> { CommandTree::new(NAMES, DESCRIPTION).with_child( require(&|sender| sender.has_permission_lvl(PermissionLvl::Three)).with_child( diff --git a/pumpkin/src/entity/player.rs b/pumpkin/src/entity/player.rs index 101deb24f..9b9c52a86 100644 --- a/pumpkin/src/entity/player.rs +++ b/pumpkin/src/entity/player.rs @@ -679,16 +679,12 @@ impl Player { pub async fn process_packets(self: &Arc, server: &Arc) { let mut packets = self.client.client_packets_queue.lock().await; while let Some(mut packet) = packets.pop_back() { - #[cfg(debug_assertions)] - let inst = std::time::Instant::now(); tokio::select! { () = self.await_cancel() => { log::debug!("Canceling player packet processing"); return; }, packet_result = self.handle_play_packet(server, &mut packet) => { - #[cfg(debug_assertions)] - log::trace!("Handled play packet in {:?}", inst.elapsed()); match packet_result { Ok(()) => {} Err(e) => {